diff --git a/.codeclimate.yml b/.codeclimate.yml deleted file mode 100644 index e0af7bb..0000000 --- a/.codeclimate.yml +++ /dev/null @@ -1,16 +0,0 @@ -engines: - duplication: - enabled: true - config: - languages: - - python - - go - fixme: - enabled: true - radon: - enabled: true -ratings: - paths: - - "**.py" - - "**.go" -exclude_paths: [] diff --git a/.gitignore b/.gitignore index 2348f07..4c0539d 100644 --- a/.gitignore +++ b/.gitignore @@ -26,3 +26,5 @@ _testmain.go *.exe *.test *.prof + +testdata/temp diff --git a/.travis.yml b/.travis.yml index f0accc4..83a18e3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,39 +1,11 @@ dist: bionic language: go go: - - "1.13.x" -env: - - GO111MODULE=on - + - "1.11.x" + - "1.12.x" install: - - make build - -stages: - - name: Build & test - if: type != cron - - - name: Fuzzit-Regression - if: type != cron AND type != pull_request AND branch = master - - - name: Fuzzit-Fuzzing - if: type != cron AND type != pull_request AND branch = master - -jobs: - include: - - stage: Build & test - script: - - make test - # Coveralls is down for maintenance currently - - go get github.com/mattn/goveralls - - bash scripts/cover.sh - - # TODO: Fix this - # - stage: Fuzzit-Regression - # go: 1.12.x - # script: - # - bash scripts/fuzzit.sh regression - # - # - stage: Fuzzit-Fuzzing - # go: 1.12.x - # script: - # - bash scripts/fuzzit.sh fuzzing + - curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | bash + - make setup +script: + - make ci + # - bash scripts/cover.sh diff --git a/AUTHORS.md b/AUTHORS.md deleted file mode 100644 index 03e68b2..0000000 --- a/AUTHORS.md +++ /dev/null @@ -1,2 +0,0 @@ -- Elliott Stoneham () -- Joseph Kato () diff --git a/Makefile b/Makefile index 1dfa098..e69e22a 100644 --- a/Makefile +++ b/Makefile @@ -14,53 +14,27 @@ build-win: go build ${LDFLAGS} -o bin/prose.exe ./cmd/prose bench: - go test -bench=. ./tokenize ./transform ./summarize ./tag ./chunk + go test -bench=. -run=^$$ -benchmem -test-tokenize: - go test -v ./tokenize +test: + go test -v -test-transform: - go test -v ./transform - -test-summarize: - go test -v ./summarize - -test-chunk: - go test -v ./chunk - -test-tag: - go test -v ./tag - -test: test-tokenize test-transform test-summarize test-chunk test-tag - -ci: test lint +ci: lint test lint: - gometalinter --vendor --disable-all \ - --enable=deadcode \ - --enable=ineffassign \ - --enable=gosimple \ - --enable=staticcheck \ - --enable=gofmt \ - --enable=goimports \ - --enable=misspell \ - --enable=errcheck \ - --enable=vet \ - --enable=vetshadow \ - --deadline=1m \ - ./tokenize ./tag ./transform ./summarize ./chunk + ./bin/golangci-lint run setup: - go get github.com/shogo82148/go-shuffle - go get github.com/jdkato/syllables - go get github.com/montanaflynn/stats - go get gopkg.in/neurosnap/sentences.v1/english - go get github.com/stretchr/testify/assert - go get github.com/urfave/cli - go get github.com/alecthomas/gometalinter - go get github.com/jteeuwen/go-bindata/... - go-bindata -ignore=\\.DS_Store -pkg="model" -o internal/model/model.go internal/model/ - gometalinter --install + go get -u github.com/shogo82148/go-shuffle + go get -u github.com/willf/pad + go get -u github.com/montanaflynn/stats + go get -u gopkg.in/neurosnap/sentences.v1/english + go get -u github.com/stretchr/testify/assert + go get -u github.com/urfave/cli + go get -u github.com/jteeuwen/go-bindata/... + go get -u github.com/deckarep/golang-set + go get -u github.com/mingrammer/commonregex + go get -u gonum.org/v1/gonum/mat model: - go-bindata -ignore=\\.DS_Store -pkg="model" -o internal/model/model.go internal/model/*.gob + go-bindata -ignore=\\.DS_Store -pkg="prose" -o data.go model/**/*.gob diff --git a/README.md b/README.md index dab6886..0e9fe2e 100644 --- a/README.md +++ b/README.md @@ -1,92 +1,154 @@ +<<<<<<< HEAD # prose [![Build Status](https://travis-ci.org/jdkato/prose.svg?branch=master)](https://travis-ci.org/jdkato/prose) [![Build status](https://ci.appveyor.com/api/projects/status/24bepq85nnnk4scr/branch/master?svg=true)](https://ci.appveyor.com/project/jdkato/prose/branch/master) [![GoDoc](https://godoc.org/github.com/golang/gddo?status.svg)](https://godoc.org/github.com/jdkato/prose) [![Coverage Status](https://coveralls.io/repos/github/jdkato/prose/badge.svg?branch=master)](https://coveralls.io/github/jdkato/prose?branch=master) [![Go Report Card](https://goreportcard.com/badge/github.com/jdkato/prose)](https://goreportcard.com/report/github.com/jdkato/prose) [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/avelino/awesome-go#natural-language-processing) `prose` is Go library for text (primarily English at the moment) processing that supports tokenization, part-of-speech tagging, named-entity extraction, and more. The library's functionality is split into subpackages designed for modular use. +======= +# prose [![Build Status](https://travis-ci.org/jdkato/prose.svg?branch=master)](https://travis-ci.org/jdkato/prose) [![Build status](https://ci.appveyor.com/api/projects/status/24bepq85nnnk4scr?svg=true)](https://ci.appveyor.com/project/jdkato/prose) [![GoDoc](https://godoc.org/github.com/golang/gddo?status.svg)](https://godoc.org/gopkg.in/jdkato/prose.v2) [![Coverage Status](https://coveralls.io/repos/github/jdkato/prose/badge.svg?branch=v2)](https://coveralls.io/github/jdkato/prose?branch=v2) [![Go Report Card](https://goreportcard.com/badge/github.com/jdkato/prose)](https://goreportcard.com/report/github.com/jdkato/prose) [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/avelino/awesome-go#natural-language-processing) -See the [GoDoc documentation](https://godoc.org/github.com/jdkato/prose) for more information. +`prose` is a natural language processing library (English only, at the moment) in *pure Go*. It supports tokenization, segmentation, part-of-speech tagging, and named-entity extraction. +>>>>>>> v2 -## Install +You can can find a more detailed summary on the library's performance here: [Introducing `prose` v2.0.0: Bringing NLP *to Go*](https://medium.com/@errata.ai/introducing-prose-v2-0-0-bringing-nlp-to-go-a1f0c121e4a5). + +## Installation ```console -$ go get github.com/jdkato/prose/... +$ go get gopkg.in/jdkato/prose.v2 ``` -> **NOTE**: When using some vendoring tools, such as `govendor`, you may need to include the `github.com/jdkato/prose/internal/` package in addition to the core package(s). See [#14](https://github.com/jdkato/prose/issues/14) for more information. - ## Usage ### Contents -* [Tokenizing](#tokenizing-godoc) -* [Tagging](#tagging-godoc) -* [Transforming](#transforming-godoc) -* [Summarizing](#summarizing-godoc) -* [Chunking](#chunking-godoc) -* [License](#license) - +* [Overview](#overview) +* [Tokenizing](#tokenizing) +* [Segmenting](#segmenting) +* [Tagging](#tagging) +* [NER](#ner) -### Tokenizing ([GoDoc](https://godoc.org/github.com/jdkato/prose/tokenize)) +### Overview -Word, sentence, and regexp tokenizers are available. Every tokenizer implements the [same interface](https://godoc.org/github.com/jdkato/prose/tokenize#ProseTokenizer), which makes it easy to customize tokenization in other parts of the library. ```go package main import ( "fmt" + "log" - "github.com/jdkato/prose/tokenize" + "gopkg.in/jdkato/prose.v2" ) func main() { - text := "They'll save and invest more." - tokenizer := tokenize.NewTreebankWordTokenizer() - for _, word := range tokenizer.Tokenize(text) { - // [They 'll save and invest more .] - fmt.Println(word) + // Create a new document with the default configuration: + doc, err := prose.NewDocument("Go is an open-source programming language created at Google.") + if err != nil { + log.Fatal(err) + } + + // Iterate over the doc's tokens: + for _, tok := range doc.Tokens() { + fmt.Println(tok.Text, tok.Tag, tok.Label) + // Go NNP B-GPE + // is VBZ O + // an DT O + // ... + } + + // Iterate over the doc's named-entities: + for _, ent := range doc.Entities() { + fmt.Println(ent.Text, ent.Label) + // Go GPE + // Google GPE + } + + // Iterate over the doc's sentences: + for _, sent := range doc.Sentences() { + fmt.Println(sent.Text) + // Go is an open-source programming language created at Google. } } ``` -### Tagging ([GoDoc](https://godoc.org/github.com/jdkato/prose/tag)) +The document-creation process adheres to the following sequence of steps: -The `tag` package includes a port of Textblob's ["fast and accurate" POS tagger](https://github.com/sloria/textblob-aptagger). Below is a comparison of its performance against [NLTK](http://www.nltk.org/)'s implementation of the same tagger on the Treebank corpus: +```text +tokenization -> POS tagging -> NE extraction + \ + segmenatation +``` -| Library | Accuracy | 5-Run Average (sec) | -|:--------|---------:|--------------------:| -| NLTK | 0.893 | 7.224 | -| `prose` | 0.961 | 2.538 | +Each step may be disabled (assuming later steps aren't required) by passing the appropriate [*functional option*](https://dave.cheney.net/2014/10/17/functional-options-for-friendly-apis). To disable named-entity extraction, for example, you'd do the following: + +```go +doc, err := prose.NewDocument( + "Go is an open-source programming language created at Google.", + prose.WithExtraction(false)) +``` + +### Tokenizing + +`prose` includes a tokenizer capable of hanlding modern text, including the non-word character spans shown below. + +| Type | Example | +|-----------------|-----------------------------------| +| Email addresses | `Jane.Doe@example.com` | +| Hashtags | `#trending` | +| Mentions | `@jdkato` | +| URLs | `https://github.com/jdkato/prose` | +| Emoticons | `:-)`, `>:(`, `o_0`, etc. | -(See [`scripts/test_model.py`](https://github.com/jdkato/aptag/blob/master/scripts/test_model.py) for more information.) ```go package main import ( "fmt" + "log" - "github.com/jdkato/prose/tag" - "github.com/jdkato/prose/tokenize" + "gopkg.in/jdkato/prose.v2" ) func main() { - text := "A fast and accurate part-of-speech tagger for Golang." - words := tokenize.NewTreebankWordTokenizer().Tokenize(text) + // Create a new document with the default configuration: + doc, err := prose.NewDocument("@jdkato, go to http://example.com thanks :).") + if err != nil { + log.Fatal(err) + } - tagger := tag.NewPerceptronTagger() - for _, tok := range tagger.Tag(words) { + // Iterate over the doc's tokens: + for _, tok := range doc.Tokens() { fmt.Println(tok.Text, tok.Tag) + // @jdkato NN + // , , + // go VB + // to TO + // http://example.com NN + // thanks NNS + // :) SYM + // . . } } ``` -### Transforming ([GoDoc](https://godoc.org/github.com/jdkato/prose/transform)) +### Segmenting -The `tranform` package implements a number of functions for changing the case of strings, including `Title`, `Snake`, `Pascal`, and `Camel`. +`prose` includes one of the most accurate sentence segmenters available, according to the [Golden Rules](https://github.com/diasks2/pragmatic_segmenter#comparison-of-segmentation-tools-libraries-and-algorithms) created by the developers of the `pragmatic_segmenter`. -Additionally, unlike `strings.Title`, `tranform.Title` adheres to common guidelines—including styles for both the [AP Stylebook](https://www.apstylebook.com/) and [The Chicago Manual of Style](http://www.chicagomanualofstyle.org/home.html). You can also add your own custom style by defining an [`IgnoreFunc`](https://godoc.org/github.com/jdkato/prose/transform#IgnoreFunc) callback. +| Name | Language | License | GRS (English) | GRS (Other) | Speed† | +|---------------------|----------|-----------|----------------|-------------|----------| +| Pragmatic Segmenter | Ruby | MIT | 98.08% (51/52) | 100.00% | 3.84 s | +| prose | Go | MIT | 75.00% (39/52) | N/A | 0.96 s | +| TactfulTokenizer | Ruby | GNU GPLv3 | 65.38% (34/52) | 48.57% | 46.32 s | +| OpenNLP | Java | APLv2 | 59.62% (31/52) | 45.71% | 1.27 s | +| Standford CoreNLP | Java | GNU GPLv3 | 59.62% (31/52) | 31.43% | 0.92 s | +| Splitta | Python | APLv2 | 55.77% (29/52) | 37.14% | N/A | +| Punkt | Python | APLv2 | 46.15% (24/52) | 48.57% | 1.79 s | +| SRX English | Ruby | GNU GPLv3 | 30.77% (16/52) | 28.57% | 6.19 s | +| Scapel | Ruby | GNU GPLv3 | 28.85% (15/52) | 20.00% | 0.13 s | -Inspiration and test data taken from [python-titlecase](https://github.com/ppannuto/python-titlecase) and [to-title-case](https://github.com/gouch/to-title-case). +> † The original tests were performed using a *MacBook Pro 3.7 GHz Quad-Core Intel Xeon E5 running 10.9.5*, while `prose` was timed using a *MacBook Pro 2.9 GHz Intel Core i7 running 10.13.3*. ```go package main @@ -95,70 +157,106 @@ import ( "fmt" "strings" - "github.com/jdkato/prose/transform" + "github.com/jdkato/prose" ) func main() { - text := "the last of the mohicans" - tc := transform.NewTitleConverter(transform.APStyle) - fmt.Println(strings.Title(text)) // The Last Of The Mohicans - fmt.Println(tc.Title(text)) // The Last of the Mohicans + // Create a new document with the default configuration: + doc, _ := prose.NewDocument(strings.Join([]string{ + "I can see Mt. Fuji from here.", + "St. Michael's Church is on 5th st. near the light."}, " ")) + + // Iterate over the doc's sentences: + sents := doc.Sentences() + fmt.Println(len(sents)) // 2 + for _, sent := range sents { + fmt.Println(sent.Text) + // I can see Mt. Fuji from here. + // St. Michael's Church is on 5th st. near the light. + } } ``` -### Summarizing ([GoDoc](https://godoc.org/github.com/jdkato/prose/summarize)) +### Tagging -The `summarize` package includes functions for computing standard readability and usage statistics. It's among the most accurate implementations available due to its reliance on legitimate tokenizers (whereas others, like [readability-score](https://github.com/DaveChild/Text-Statistics/blob/master/src/DaveChild/TextStatistics/Text.php#L308), rely on naive regular expressions). +`prose` includes a tagger based on Textblob's ["fast and accurate" POS tagger](https://github.com/sloria/textblob-aptagger). Below is a comparison of its performance against [NLTK](http://www.nltk.org/)'s implementation of the same tagger on the Treebank corpus: -It also includes a TL;DR algorithm for condensing text into a user-indicated number of paragraphs. - -```go -package main - -import ( - "fmt" - - "github.com/jdkato/prose/summarize" -) - -func main() { - doc := summarize.NewDocument("This is some interesting text.") - fmt.Println(doc.SMOG(), doc.FleschKincaid()) -} -``` +| Library | Accuracy | 5-Run Average (sec) | +|:--------|---------:|--------------------:| +| NLTK | 0.893 | 7.224 | +| `prose` | 0.961 | 2.538 | -### Chunking ([GoDoc](https://godoc.org/github.com/jdkato/prose/chunk)) +(See [`scripts/test_model.py`](https://github.com/jdkato/aptag/blob/master/scripts/test_model.py) for more information.) -The `chunk` package implements named-entity extraction using a regular expression indicating what chunks you're looking for and pre-tagged input. +The full list of supported POS tags is given below. + +| TAG | DESCRIPTION | +|------------|-------------------------------------------| +| `(` | left round bracket | +| `)` | right round bracket | +| `,` | comma | +| `:` | colon | +| `.` | period | +| `''` | closing quotation mark | +| ``` `` ``` | opening quotation mark | +| `#` | number sign | +| `$` | currency | +| `CC` | conjunction, coordinating | +| `CD` | cardinal number | +| `DT` | determiner | +| `EX` | existential there | +| `FW` | foreign word | +| `IN` | conjunction, subordinating or preposition | +| `JJ` | adjective | +| `JJR` | adjective, comparative | +| `JJS` | adjective, superlative | +| `LS` | list item marker | +| `MD` | verb, modal auxiliary | +| `NN` | noun, singular or mass | +| `NNP` | noun, proper singular | +| `NNPS` | noun, proper plural | +| `NNS` | noun, plural | +| `PDT` | predeterminer | +| `POS` | possessive ending | +| `PRP` | pronoun, personal | +| `PRP$` | pronoun, possessive | +| `RB` | adverb | +| `RBR` | adverb, comparative | +| `RBS` | adverb, superlative | +| `RP` | adverb, particle | +| `SYM` | symbol | +| `TO` | infinitival to | +| `UH` | interjection | +| `VB` | verb, base form | +| `VBD` | verb, past tense | +| `VBG` | verb, gerund or present participle | +| `VBN` | verb, past participle | +| `VBP` | verb, non-3rd person singular present | +| `VBZ` | verb, 3rd person singular present | +| `WDT` | wh-determiner | +| `WP` | wh-pronoun, personal | +| `WP$` | wh-pronoun, possessive | +| `WRB` | wh-adverb | + +### NER + +`prose` v2.0.0 includes a much improved version of v1.0.0's chunk package, which can identify people (`PERSON`) and geographical/political Entities (`GPE`) by default. ```go package main import ( - "fmt" - - "github.com/jdkato/prose/chunk" - "github.com/jdkato/prose/tag" - "github.com/jdkato/prose/tokenize" + "gopkg.in/jdkato/prose.v2" ) func main() { - words := tokenize.TextToWords("Go is an open source programming language created at Google.") - regex := chunk.TreebankNamedEntities - - tagger := tag.NewPerceptronTagger() - for _, entity := range chunk.Chunk(tagger.Tag(words), regex) { - fmt.Println(entity) // [Go Google] + doc, _ := prose.NewDocument("Lebron James plays basketbal in Los Angeles.") + for _, ent := range doc.Entities() { + fmt.Println(ent.Text, ent.Label) + // Lebron James PERSON + // Los Angeles GPE } } ``` -## License - -If not otherwise specified (see below), the source files are distributed under MIT License found in the [LICENSE](https://github.com/jdkato/prose/blob/master/LICENSE) file. - -Additionally, the following files contain their own license information: - -- [`tag/aptag.go`](https://github.com/jdkato/prose/blob/master/tag/aptag.go): MIT © Matthew Honnibal. -- [`tokenize/punkt.go`](https://github.com/jdkato/prose/blob/master/tokenize/punkt.go): MIT © Eric Bower. -- [`tokenize/pragmatic.go`](https://github.com/jdkato/prose/blob/master/tokenize/pragmatic.go): MIT © Kevin S. Dias. +However, in an attempt to make this feature more useful, we've made it straightforward to train your own models for specific use cases. See [Prodigy + `prose`: Radically efficient machine teaching *in Go*](https://medium.com/@errata.ai/prodigy-prose-radically-efficient-machine-teaching-in-go-93389bf2d772) for a tutorial. diff --git a/appveyor.yml b/appveyor.yml index e729ce3..7a51022 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -9,6 +9,6 @@ init: install: - set PATH=%GOPATH%\bin;c:\go\bin;C:\Ruby22\bin;%cd%\bin;%PATH% build_script: - - cmd: make build-win + - cmd: make setup test_script: - cmd: make test diff --git a/chunk/chunk.go b/chunk/chunk.go deleted file mode 100644 index 8480efe..0000000 --- a/chunk/chunk.go +++ /dev/null @@ -1,74 +0,0 @@ -// Package chunk implements functions for finding useful chunks in text previously tagged from parts of speech. -// -package chunk - -import ( - "regexp" - - "github.com/jdkato/prose/tag" -) - -// quadString creates a string containing all of the tags, each padded to 4 -// characters wide. -func quadsString(tagged []tag.Token) string { - tagQuads := "" - for _, tok := range tagged { - padding := "" - pos := tok.Tag - switch len(pos) { - case 0: - padding = "____" // should not exist - case 1: - padding = "___" - case 2: - padding = "__" - case 3: - padding = "_" - case 4: // no padding required - default: - pos = pos[:4] // longer than 4 ... truncate! - } - tagQuads += pos + padding - } - return tagQuads -} - -// TreebankNamedEntities matches proper names, excluding prior adjectives, -// possibly including numbers and a linkage by preposition or subordinating -// conjunctions (for example "Bank of England"). -var TreebankNamedEntities = regexp.MustCompile( - `((CD__)*(NNP.)+(CD__|NNP.)*)+` + - `((IN__)*(CD__)*(NNP.)+(CD__|NNP.)*)*`) - -// Chunk returns a slice containing the chunks of interest according to the -// regexp. -// -// This is a convenience wrapper around Locate, which should be used if you -// need access the to the in-text locations of each chunk. -func Chunk(tagged []tag.Token, rx *regexp.Regexp) []string { - chunks := []string{} - for _, loc := range Locate(tagged, rx) { - res := "" - for t, tt := range tagged[loc[0]:loc[1]] { - if t != 0 { - res += " " - } - res += tt.Text - } - chunks = append(chunks, res) - } - return chunks -} - -// Locate finds the chunks of interest according to the regexp. -func Locate(tagged []tag.Token, rx *regexp.Regexp) [][]int { - rx.Longest() // make sure we find the longest possible sequences - rs := rx.FindAllStringIndex(quadsString(tagged), -1) - for i, ii := range rs { - for j := range ii { - // quadsString makes every offset 4x what it should be - rs[i][j] /= 4 - } - } - return rs -} diff --git a/chunk/chunk_fuzz.go b/chunk/chunk_fuzz.go deleted file mode 100644 index 0271554..0000000 --- a/chunk/chunk_fuzz.go +++ /dev/null @@ -1,28 +0,0 @@ -// +build gofuzz - -package chunk - -import ( - "github.com/jdkato/prose/tag" - "github.com/jdkato/prose/tokenize" -) - -func Fuzz(data []byte) int { - words := tokenize.TextToWords(string(data)) - if len(words) == 0 { - return 0 - } - - tagger := tag.NewPerceptronTagger() - tagged := tagger.Tag(words) - if len(tagged) == 0 { - return 0 - } - - chunks := Chunk(tagged, TreebankNamedEntities) - if len(chunks) == 0 { - return 0 - } - - return 1 -} diff --git a/chunk/chunk_test.go b/chunk/chunk_test.go deleted file mode 100644 index 0d444d4..0000000 --- a/chunk/chunk_test.go +++ /dev/null @@ -1,81 +0,0 @@ -package chunk - -import ( - "fmt" - "testing" - - "github.com/jdkato/prose/tag" - "github.com/jdkato/prose/tokenize" -) - -func Example() { - txt := "Go is a open source programming language created at Google." - - words := tokenize.TextToWords(txt) - tagger := tag.NewPerceptronTagger() - - fmt.Println(Chunk(tagger.Tag(words), TreebankNamedEntities)) - // Output: [Go Google] -} - -func TestChunk(t *testing.T) { - text := ` -Property surveyors are getting gloomier about the state of the housing market, according to the Royal Institution of Chartered Surveyors (Rics). -Its latest monthly survey shows that stock levels are at a new record low. -The number of people interested in buying a property - and the number of sales - were also "stagnant" in March, it said. -However, because of the shortage of housing, it said prices in many parts of the UK are continuing to accelerate. -While prices carry on falling in central London, Rics said that price rises in the North West were "particularly strong". -Most surveyors across the country still expect prices to rise over the next 12 months, but by a smaller majority than in February. -But on average, each estate agent has just 43 properties for sale on its books, the lowest number recorded since the methodology began in 1994. -"High-end sale properties in central London remain under pressure, while the wider residential market continues to be underpinned by a lack of stock," said Simon Rubinsohn, Rics chief economist. -"For the time being, it is hard to see any major impetus for change in the market, something also being reflected in the flat trend in transaction levels." -Earlier this week, the Office for National Statistics said house prices grew at 5.8% in the year to February, a small rise on the previous month. -However, both Nationwide and the Halifax have said that house price inflation is moderating. -Separate figures from the Bank of England suggested that lenders are offering fewer loans. -Banks reported a tightening of lending criteria, and a drop in loan approval rates. -A significant majority also reported falling demand. -Hansen Lu, property economist with Capital Economics, said that pointed to an "even more gloomy picture than the Rics survey". - -The above articile was retrieved from the B.B.C. News website on 13 April 2017. -It was also reported on BBC Radio 4 and BBC Radio 5 Live. -` - expected := []string{ - "Royal Institution of Chartered Surveyors", - "Rics", - "March", - "UK", - "London", - "Rics", - "North West", - "February", - "London", - "Simon Rubinsohn", - "Rics", - "Office for National Statistics", - "February", - "Nationwide", - "Halifax", - "Bank of England", - "Hansen Lu", - "Capital Economics", - "Rics", - "B.B.C. News", - "13 April 2017", - "BBC Radio 4", - "BBC Radio 5 Live", - } - - words := tokenize.TextToWords(text) - tagger := tag.NewPerceptronTagger() - tagged := tagger.Tag(words) - - for i, chunk := range Chunk(tagged, TreebankNamedEntities) { - if i >= len(expected) { - t.Error("ERROR unexpected result: " + chunk) - } else { - if chunk != expected[i] { - t.Error("ERROR", chunk, "!=", expected[i]) - } - } - } -} diff --git a/cmd/prose/main.go b/cmd/prose/main.go deleted file mode 100644 index 582fa5d..0000000 --- a/cmd/prose/main.go +++ /dev/null @@ -1,70 +0,0 @@ -package main - -import ( - "bufio" - "encoding/json" - "fmt" - "io/ioutil" - "os" - "strings" - - "github.com/jdkato/prose/tag" - "github.com/urfave/cli" -) - -// Version is the semantic version number -var Version string - -func main() { - var file string - var text []byte - var err error - - app := cli.NewApp() - app.Name = "aptag" - app.Usage = "A command-line POS tagger (for testing purposes only!)" - app.Version = Version - app.Flags = []cli.Flag{ - &cli.StringFlag{ - Name: "path", - Usage: "read `path` as source input instead of stdin", - Destination: &file, - }, - } - - app.Action = func(c *cli.Context) error { - if file != "" { - text, err = ioutil.ReadFile(file) - if err != nil { - panic(err) - } - } else { - stat, serr := os.Stdin.Stat() - if serr != nil { - panic(err) - } else if (stat.Mode() & os.ModeCharDevice) == 0 { - reader := bufio.NewReader(os.Stdin) - text, err = ioutil.ReadAll(reader) - if err != nil { - panic(err) - } - } - } - if len(text) > 0 { - tagger := tag.NewPerceptronTagger() - tags := tagger.Tag(strings.Split(string(text), " ")) - b, jerr := json.Marshal(tags) - if jerr != nil { - return jerr - } - fmt.Println(string(b)) - } - return err - } - - if app.Run(os.Args) != nil { - os.Exit(1) - } else { - os.Exit(0) - } -} diff --git a/data.go b/data.go new file mode 100644 index 0000000..3c1285b --- /dev/null +++ b/data.go @@ -0,0 +1,379 @@ +// Code generated by go-bindata. +// sources: +// model/AveragedPerceptron/classes.gob +// model/AveragedPerceptron/tags.gob +// model/AveragedPerceptron/weights.gob +// model/Maxent/labels.gob +// model/Maxent/mapping.gob +// model/Maxent/weights.gob +// model/Maxent/words.gob +// DO NOT EDIT! + +package prose + +import ( + "bytes" + "compress/gzip" + "fmt" + "io" + "io/ioutil" + "os" + "path/filepath" + "strings" + "time" +) + +func bindataRead(data []byte, name string) ([]byte, error) { + gz, err := gzip.NewReader(bytes.NewBuffer(data)) + if err != nil { + return nil, fmt.Errorf("Read %q: %v", name, err) + } + + var buf bytes.Buffer + _, err = io.Copy(&buf, gz) + clErr := gz.Close() + + if err != nil { + return nil, fmt.Errorf("Read %q: %v", name, err) + } + if clErr != nil { + return nil, err + } + + return buf.Bytes(), nil +} + +type asset struct { + bytes []byte + info os.FileInfo +} + +type bindataFileInfo struct { + name string + size int64 + mode os.FileMode + modTime time.Time +} + +func (fi bindataFileInfo) Name() string { + return fi.name +} +func (fi bindataFileInfo) Size() int64 { + return fi.size +} +func (fi bindataFileInfo) Mode() os.FileMode { + return fi.mode +} +func (fi bindataFileInfo) ModTime() time.Time { + return fi.modTime +} +func (fi bindataFileInfo) IsDir() bool { + return false +} +func (fi bindataFileInfo) Sys() interface{} { + return nil +} + +var _modelAveragedperceptronClassesGob = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x04\xc0\xcd\x4d\xc4\x30\x10\x05\x60\xcf\x7b\x7b\xdc\x2e\x88\xb4\x20\x01\x05\x70\x9c\x98\x3f\x8b\x9d\x8c\xc6\xc6\x06\x4e\x69\x85\x94\x41\xb3\xe6\x3b\xcf\x5f\x08\xe6\x91\xe4\x9c\xd2\xfc\x9b\x47\x7a\xc0\xf3\xd7\xc9\xcc\x2b\x87\x2f\x68\x9b\x3c\xe1\x65\xb0\x94\x90\x85\x5d\x0d\xeb\x2a\x37\x34\x73\x76\xfd\x61\xd7\x4c\xdf\x2a\x42\xb1\x66\x98\xa1\x14\x86\x56\x5c\x33\xba\x62\xdf\xe5\x11\xe1\x72\x27\xf7\x72\xcb\x11\xca\xd0\xc0\xbb\x9d\x3c\x7c\x61\xfd\xbe\x22\x37\x76\x75\x7a\x6e\xf8\xa8\x2c\xa5\x72\xe4\x86\xcf\x37\x76\x7d\xc5\xe5\x42\xb3\x8a\xe1\xf4\xf0\xff\x00\x00\x00\xff\xff\x14\x43\xb9\x44\xa9\x00\x00\x00") + +func modelAveragedperceptronClassesGobBytes() ([]byte, error) { + return bindataRead( + _modelAveragedperceptronClassesGob, + "model/AveragedPerceptron/classes.gob", + ) +} + +func modelAveragedperceptronClassesGob() (*asset, error) { + bytes, err := modelAveragedperceptronClassesGobBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "model/AveragedPerceptron/classes.gob", size: 169, mode: os.FileMode(420), modTime: time.Unix(1531158553, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _modelAveragedperceptronTagsGob = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x7b\x5b\x77\x1b\xc9\x91\xa6\x51\x57\x00\xa4\xec\xfd\x0b\x7b\xa6\x77\xda\x3e\xc7\x92\x4d\xa9\xdb\x7d\xd9\x87\x5d\x02\x50\x4b\x84\x45\x08\x43\x52\xd2\x78\x8e\x1f\x3a\x51\x15\xa8\x4a\x31\x2b\xb3\x3a\x2f\x00\xd9\x7b\xf6\x69\xe7\x77\x8f\xf7\x44\x44\x26\xc4\x99\xa7\xa6\xd8\x04\x2a\x2f\x11\x5f\x7c\xdf\x17\x51\xbf\xfd\xc7\xff\x2b\x26\xd9\x3f\xfe\xfd\x37\x93\xf3\xc9\xf9\x6f\x7e\xf3\x1f\xff\x5b\xfd\xe3\xdf\x7f\xf3\x1f\xd5\xb3\x72\xec\x8d\x86\x6c\xb3\x29\x83\x96\x46\x67\x9b\x4d\x7d\xb4\xd2\x7b\xd0\xf9\xc7\xc5\x66\x26\x9a\x5f\x82\xb4\x52\x77\xf9\xc7\xc5\x9b\xe9\x42\x58\xaf\xc0\xfb\x7c\xb3\xd9\x9e\x89\xf6\x00\xd6\x4b\x07\xd6\xe5\x9b\xcd\x6d\xbe\x31\x3e\xbb\x59\x94\xb7\xa3\x90\x1a\xff\xa0\x74\xbd\x50\x2a\xbb\x5e\x65\xdf\x7e\x9b\x2d\x57\x85\x13\x0a\x9f\x93\xbd\xbc\xc8\x96\xab\xd2\x04\xdd\xe0\x3f\xa7\xef\xc4\xd1\x82\x6e\x00\x3f\x92\x6f\xdf\x2d\xf1\xbf\xc5\xe6\xc5\xfa\x05\xfe\x50\x75\xd6\x84\x91\xbf\x7f\x10\x8f\xd9\xf5\xaa\x3c\x9a\x41\xd0\x32\x1b\x33\x8c\x42\x3f\x66\x9b\x4d\xee\xc5\x03\xee\xc0\x1c\x35\x58\x7c\xc4\xcf\x3f\x67\x3f\xff\x5c\x0c\x42\xea\x6c\xbd\x9e\x09\xdc\x8d\xe7\xcd\xcd\x44\x67\x01\x06\xd0\x1e\xbf\xa2\x03\x0d\x5e\x36\xd9\x7a\x5d\x77\xe0\x7d\xdc\x66\x19\xb4\x97\x2a\xbb\xda\xd4\xa3\x35\x6d\x68\xf0\x4f\x8b\x6f\xff\xfe\xa7\xef\xb3\xe5\x2a\xbf\xb6\xb4\xb0\xac\x11\xd9\xf5\xaa\x1a\x4c\xfa\xaa\x6b\xf1\x70\x04\xa5\xf0\xff\x4d\x07\x73\x38\x3d\xe2\x20\x1b\x2f\x07\xda\xc1\x1c\x0e\x60\x1f\x7d\x2f\x75\x97\x6d\x36\xd5\x6b\xe7\x85\xa7\x6d\x17\x4e\x0c\x90\xad\xd7\xd5\x0e\x1e\x8d\x6e\xb3\xab\x4d\xf5\x4e\x1c\x9d\xa1\x63\x3c\xf3\x56\x68\x27\x9a\xb8\x81\xec\xe5\xcb\x6c\xb9\xaa\x1b\x13\xb4\xb7\xb8\xf9\x8a\xbe\x90\x1e\x50\xc3\x7e\x6f\xac\xa7\x9f\xa7\xa3\x71\xd2\xcb\x03\x7d\x6f\x23\x74\x43\x27\x93\x1b\xa9\xf0\x33\x4a\x1c\x1f\xf9\x17\xbd\x74\xc5\xf6\x66\xfb\x55\xd9\x09\xa9\xe9\x93\xd5\x6b\x0d\xb6\x7b\xa4\x85\x89\x9d\xc2\x2f\xa8\xef\x8c\x35\xda\x1b\xfc\xdd\x4c\x6a\x0f\xf6\x20\xe1\x88\xc7\xf2\xe1\xc5\x2d\x9f\xc7\xcb\x6f\xb2\xe5\x6a\x3a\x18\x0d\x5e\xd8\x47\xfc\x8c\xd9\xef\x65\x03\xbc\xb0\xd1\x9a\xce\x8a\x81\x1e\x6d\x9c\xe3\xdf\x56\x0e\x1a\x6f\x70\x15\xb3\x83\xb4\x3e\x08\xa5\x1e\xb3\x9b\x45\x2e\x3a\x0a\x8c\x26\x38\x6f\x06\x5a\x65\xdd\x82\x17\x52\xd1\xa7\xce\x5a\xe9\x9a\xe0\x9c\x34\xbc\xdc\x19\x3c\x34\x2a\x38\xde\xe9\x1c\x84\xf5\xfd\x2f\x41\xdc\xe3\x57\x54\xa3\x4d\x2b\xc8\x82\xcb\xb7\x37\xdb\xb9\xd4\x6d\x70\xde\xca\xb8\x82\x25\xe0\x66\x68\xab\xad\x0d\x78\x2d\xe5\x87\x78\xf9\x85\x92\x7b\xfc\x92\xfc\x28\xf0\x98\x67\xa3\x35\xa3\x71\x82\x17\x51\x8a\x1e\x44\x9b\xdd\x2c\xaa\x1d\x34\x62\x80\xfc\xe3\x62\x55\x0e\xe2\x9e\x56\x3b\x1d\xc5\x23\x5e\x3f\x3f\xe2\xda\xe8\x56\xd0\x69\xd6\xcb\x5e\x58\x45\x4f\xde\x96\x78\x52\x74\x7d\xce\x5b\xa3\xbb\x6c\xbd\x3e\x77\xbd\xb0\xd0\x1b\xd5\xc6\x8c\x3a\x83\x87\x51\x19\x2b\xe2\xcd\xe7\x17\x2f\xfe\x82\x57\x2f\xb4\xf1\x3d\xd8\x6c\x75\x47\x51\xe0\x00\x6f\xb4\x1c\xc4\x67\x63\xb3\xf5\xfa\x4c\xea\x03\x38\x7f\x7a\x7e\xae\x29\x2d\x2b\x67\x1a\x29\x14\x06\x03\xfc\x12\xa4\xe7\x47\x83\x96\xf4\xa1\x69\x2b\x6d\xba\x8b\x39\x86\xda\x41\xfa\x78\x44\x53\x0a\xda\x08\x11\x3b\xe1\xa0\x45\x5c\x38\xf3\x30\x8c\xc6\x0a\x2b\xe9\xca\xa6\x47\x61\xad\x88\x4f\x7c\xc6\x2b\x90\x5d\x5a\xf8\x04\x43\xa3\x3e\x08\x2b\x4d\x70\xf8\x34\x8b\x4b\xb0\xe0\xf2\x8f\x8b\x7f\xab\xa1\x31\xda\x0c\x94\xc6\x98\xcd\xab\xbb\xe9\x0e\x34\xec\x25\x7f\x59\x2d\xf6\x7b\x21\x23\xc2\x08\x8b\x07\xbd\xad\x1a\x0b\xad\xc4\xec\xca\x95\xc0\x28\xac\x95\x31\xf7\x31\x79\xe7\x1e\x14\x1c\xa4\xe3\x47\x9f\x35\x46\x3b\xd9\x42\x42\xb0\x99\x86\xa3\x1b\xc5\xc8\x30\xc1\xa1\x8b\x88\x02\x9a\x0e\x7c\x14\xd6\x6b\xb0\xae\x97\x23\x9e\xc4\xc1\x28\xe1\xa5\xe2\xd3\xca\xa4\xce\xae\x36\xcf\x06\xa1\xc3\x5e\x34\x3e\xd8\x74\x4b\x6e\x84\x26\xa8\xb4\xd9\x42\x0c\x12\x33\xb8\xf4\xe2\x9e\x31\x74\xba\x82\x06\x86\x1d\x87\x59\x75\x71\xf1\xf7\x3f\x5d\xe0\x3d\xce\x79\xe3\xd2\xf1\x46\x8b\xa3\x6c\x31\x82\x8b\x45\x70\x3d\xfe\xe5\x04\x61\x32\xbb\xc2\x87\x9e\x0b\xad\x09\x2f\x23\xa8\xcc\x5a\x68\xe4\x29\x01\x4a\xe7\x1f\x09\x59\xcb\xa5\x11\x8e\xb0\xb9\x6c\x40\x71\xa0\x16\xbe\x87\x47\x8c\xfc\xe9\x5d\x2f\x7c\xd3\xf3\x2a\xca\xad\xb0\x9e\x62\xb2\x92\xde\x81\xda\xe3\x5f\xd4\x0a\x44\x0a\xbd\x62\x69\x39\x66\xab\xbd\x09\xd6\xf7\xd9\x7a\x9d\xaf\xcc\x91\x7e\x73\x67\x1e\x8d\x17\x04\xd7\x6f\x3f\xac\x28\xb0\x5d\x68\x1a\x80\x36\xfb\xb8\x98\x9d\x76\x85\x07\xd8\x08\xdd\xca\x56\x78\x0e\xa5\x79\x7c\x00\x9f\xee\x74\x90\x5a\x3a\xcf\x19\xd3\xca\xd3\x95\x15\x8d\x70\xb8\x9b\xa2\x07\x0b\xd9\xcd\xa2\x76\x90\x02\xa7\xdc\x07\x86\x88\x69\x4c\x63\xbc\x97\xa9\xe8\x40\x37\x31\x5a\xcb\x9d\x11\xb6\xc5\x4f\x7b\x4b\x4f\x99\x71\x30\x1a\xde\x56\xf9\x57\x63\x81\x96\x5e\x7a\xf1\xc0\x1f\xf9\xdd\x1b\x30\xb6\x93\xe2\xf9\x56\x34\x72\x2f\x1b\xda\x23\x68\x17\x2c\x64\x1f\x17\xf9\x51\x60\x98\xae\xa6\xaf\x75\x07\xea\x9e\xe2\x64\x3b\xbd\x16\xfa\x20\x95\x62\xf0\xde\x03\x7f\x51\x31\x0a\x2a\x15\x15\xa3\x30\xdd\x93\x44\xac\x69\x62\x26\xb6\x04\x24\x53\xe7\x2d\xe8\xce\xf7\xb8\x4a\x6b\x0c\x82\x62\x89\xbf\xc2\x65\x57\x3a\xc5\x51\xe9\x42\x4c\x81\xac\x07\xba\x1e\x0b\xa3\x12\x0d\x2e\xaa\x1e\x84\x16\x1d\x9d\xdc\xf9\xb6\x97\x4a\xb4\xa0\xc6\x5e\xd2\xc6\x32\xe1\xb3\xab\x4d\xf6\x8a\xa2\xe7\x15\x96\xac\xe2\x6f\xc6\xde\xd3\xb2\xf7\xa2\x49\xd1\x3c\xdf\x09\x7d\x6f\xc3\xe8\x9b\x47\x7a\x98\x37\xcd\x3d\xfe\x70\x2d\x6c\x43\xe1\x57\x0a\xe7\x00\x37\x71\x26\xf5\xde\xd8\xe1\x14\xdf\xdf\x71\x21\xac\x1b\xb0\x3e\x16\x58\x0b\x58\x25\x23\x7b\x60\xc6\x80\xcb\x9c\x9f\x6a\x2d\x03\x75\xc2\x0c\xac\x0e\xd9\x2b\xe4\x04\xd5\x60\x9c\xa7\x1b\xfd\x9d\x85\xd1\x82\x03\xed\x05\x16\x2d\xbe\xad\xe0\x52\x52\xb7\x80\xa9\x19\xc3\xbf\x14\xe3\x48\x01\x5f\x5c\xfc\xfd\x4f\x88\x2d\xb3\x6b\x10\xfa\xd8\x4b\x85\xf1\x52\xb4\xb0\xa3\xbf\xda\x8b\x86\x21\x66\xde\x18\xbd\x07\x22\x19\x98\xc7\xcb\xaf\x26\x5f\x55\x2e\x0c\xb1\xb4\x34\xa0\xbd\x25\x64\x2c\xbc\x39\xd2\x16\xdf\xc9\x7b\xc8\xae\x30\x76\x5c\xb0\x82\x3f\x36\x37\x23\x30\x14\x73\x2c\x7f\x12\x0e\xeb\xae\xe7\x22\x3d\xa7\x5a\xfe\x65\xab\xf1\x70\x38\x58\x5b\x73\xd4\x3e\x58\xfc\xea\xf9\x17\x74\x46\xf8\xba\x5a\x5c\xd3\x59\xbf\x41\x96\x43\xb7\xf7\x8e\x20\x29\xdf\x49\xac\x08\xd3\xc6\x1c\xc0\x72\x39\xac\x1a\x33\x0c\x86\x8e\xbb\x85\x46\x49\x9d\xc8\xca\x3e\xe8\x36\x56\xff\x87\x31\x55\xff\x39\x20\x2a\xc9\x58\x51\x2b\xba\x5e\xfe\xa3\x81\xa0\x88\xcf\xb7\x49\xeb\x3d\xbb\x3d\x4a\xff\x2b\x58\x25\x74\x4b\x31\x8d\x45\x1a\x4f\xc2\xc9\x5f\x69\xf3\x1f\xb4\x3c\x80\x75\x92\x41\x63\x0e\x0a\x1a\x2c\x5b\x44\x9d\xf2\x9f\x80\x3e\x54\x7b\xa1\x12\x0a\x57\xbd\x38\xa4\x05\x2e\xb0\x2c\x32\x4c\xf8\xd0\xa6\xca\xbb\x16\x5d\x10\x0c\x89\x14\x3e\x18\x30\x33\xe7\x6d\x20\x68\xe5\xa3\xe2\x52\x4d\x77\x73\x2e\x75\x63\x41\x60\x40\xd0\x96\x66\x18\x2d\xb2\x8d\x24\xeb\x08\x70\xcf\x09\x54\xfa\xde\x38\xc8\x56\x77\x33\x27\x1f\x9e\x0f\x46\x13\x76\x4d\x77\x18\x4a\xc0\x7b\xda\x5b\x33\x20\x92\x13\x8f\xe1\x7c\xa3\x47\xd4\xd7\xb2\xe9\x05\x10\x85\x3b\xb3\xf0\xf4\xf2\x4b\xcc\x53\x5e\xf7\x5d\x6f\x06\x41\x25\x7c\x8e\x8c\x00\x19\x70\x4c\x7f\x6b\x1c\xf1\x80\xe2\x73\x60\x60\x62\xf6\x48\x51\x56\x05\xad\x38\xa8\x8a\xcd\x8b\xbf\x31\xb5\x5d\x83\x75\x40\xe7\x39\x45\x4a\xa3\x70\xdd\x1f\x17\xb3\xc6\x4a\x2f\x1b\xe9\x10\x17\xea\x65\x2f\x1b\xd1\x11\xef\x2a\xd6\xa6\xa7\x58\xcb\xb5\x39\xe2\xa5\x5a\xe8\x38\xe5\x2a\x27\xf6\x40\x59\x3d\x83\x07\x6f\x61\x00\x8e\xbb\x51\x78\x99\x6e\x78\x3e\x82\xc5\xeb\xe6\x60\xca\x2e\x5e\x21\x07\xef\xe4\x81\x4b\xd4\x99\xd4\x78\xf4\xa7\xf8\x9d\x9b\x91\xe9\x23\x7f\xff\x08\xd6\xd1\x4f\xcf\xae\x85\x73\xa2\xe9\x83\x03\xef\xf9\x10\x5a\xd8\x83\x6e\x53\xed\x2f\x1b\x62\x8c\x9b\xcd\x6c\x29\xec\x78\x22\x57\xd9\x4f\x04\x95\xb3\x05\x28\x75\x6b\x82\x27\x84\x29\x7e\x32\x96\xa3\xad\x11\x1c\x90\xd3\xc6\x60\x2e\x12\x8a\x96\x77\x60\x87\x54\xc2\x82\xc3\x42\x30\x82\xed\xc5\x48\x3f\x52\xc1\xa1\xeb\xac\x90\xda\x5b\x62\xb9\xae\xe9\x8d\x51\x91\xab\x9d\xea\xc9\xe4\x2a\x96\xbf\x60\x5d\x22\x62\x83\xb0\xf7\x10\x09\xc6\xce\x9a\xfb\x98\x10\xf5\x68\xc6\xa0\x04\x32\xa2\xfc\xe2\x05\x11\xda\xc4\xfa\xf0\xd0\x16\x8f\x78\x7f\xde\x98\x7b\xbc\xe6\xec\xdb\x3f\x23\x0c\xb6\x46\xa9\xb8\xfc\xec\x9a\x2e\xf6\xb7\x44\xd8\x31\x15\x4f\xcc\xed\xd1\x04\x5a\x04\x4a\x96\xc0\x25\xaf\x3c\x62\xa0\xe6\x9f\xb6\x5f\x55\x94\x16\x06\x43\x73\x94\x0a\x9f\x34\x5f\x0a\x25\xf7\xc6\x6a\x86\xf4\xfc\xd5\x9f\xf1\x51\x58\x5f\xe8\x68\xdf\x06\x6b\x65\x23\x34\x9d\x29\x7e\xe7\xe9\xde\xa6\xf8\x55\xe9\x1f\xf5\xde\x04\xdd\x72\x7d\xfd\x97\x00\x3b\x68\x0c\xa7\x21\x42\x7f\xaa\xf3\x47\xd0\x1e\x77\x13\xd9\x3a\x49\x82\x2b\xdd\x44\x19\x63\x7d\xc7\x01\x73\x26\x07\x3c\xd3\x44\x40\xf2\xbb\x1e\x73\xac\xfc\xf6\x8f\x7f\xa6\xa5\x4d\x47\x73\x04\xbb\x0f\x98\x46\x33\x66\x67\xb1\xe2\xce\x5a\xd3\x7c\x89\xab\x62\x67\x28\x4b\xeb\x7d\xc0\x2c\x8f\xcb\x14\x76\x48\x88\x84\x89\x1c\x0b\xb9\x70\xd2\x11\x87\x30\xc3\x20\x5d\x22\x07\x9f\xa4\xef\xb3\xab\xcd\x54\xe8\x93\x90\x9a\x3e\xc9\xe1\x6a\x27\xbc\xa7\x00\x9c\x8e\x72\x04\x25\xf5\x17\x1d\x40\xc4\x15\x43\xcc\x05\x86\xfe\x52\x23\xb7\xc5\x54\x6a\x7a\x23\x39\xd1\xd3\x97\x66\x62\x40\xaa\x59\x36\x48\x7f\x48\x76\x61\xc6\x64\x3b\x4c\xd1\x62\x11\x85\x1e\xaa\xd3\x23\x17\xf2\x8b\x1f\xbe\x47\x5d\x36\x73\xa3\xb9\x07\xc7\x0a\xf5\x8c\xff\x91\x04\xeb\x39\x96\x30\x89\x54\xd1\x52\x7e\x96\x3b\x63\x78\xb3\xd9\x9b\xd7\x54\x06\x46\x25\xe8\x78\xe7\x16\x3a\x64\x94\x86\x4a\xe5\xe4\xf7\x93\xdf\xd7\xa8\xba\xe3\x21\x4d\x8f\x20\xee\x23\x98\xd5\x7b\x2c\x43\x4c\x18\x2e\x07\xd4\x11\x57\x9b\x72\xa7\x44\x73\x8f\x80\xf6\xc6\xa8\x76\x10\x3a\xb2\x14\xa5\x48\xa5\xec\xa0\x13\x9a\xae\xfc\xb3\x91\x9a\xab\x6f\xd5\xf4\x09\xe9\x38\x64\xae\x36\x53\xc2\xf8\x18\xbf\xef\xee\x3e\x52\xfe\xa2\x5e\xb6\xb1\xa8\x9c\x47\x16\x7f\xba\xdc\xfa\x89\x74\xa9\x38\x2d\x30\x5a\xb7\x09\xa8\x69\x8b\xb7\x1e\x43\xfc\x66\x91\xaf\x58\x47\xd7\x66\x94\xd1\x77\xa8\x3e\x68\xe9\x1e\x1d\x87\xa8\xec\x3a\x70\x3e\x5f\xaf\x6f\x4b\x6f\x42\x47\x20\x2e\xbc\x37\x96\x55\x53\xdd\xc2\x21\x49\xbb\x92\x3c\x02\xfc\x02\x91\x40\xa1\x5e\xc9\x4e\x7a\x41\x97\x54\x7c\x0e\x0e\x15\x50\xf6\x96\x85\xea\xc5\x77\x08\x7d\x4b\xbc\x57\x8a\xf2\xd1\x28\x99\xe8\x63\xed\x06\xa1\x14\xd8\x7c\xbd\xbe\xc9\x56\xf4\xf7\xc5\xb5\x75\xf4\xc3\x4c\xd8\x9d\xf4\xb1\x1a\xcf\x7d\x0f\x83\x03\x85\x4c\x65\x7b\xb3\xad\x48\x33\x21\x08\x9d\x6d\x85\xd4\xf0\x09\x76\x91\xef\x97\x62\xef\xe9\x3c\x8b\x8d\x39\xd0\xf7\xcc\x29\x02\x95\xe7\xab\x2e\x8e\x1c\xd0\x95\x0e\x58\x97\x31\x6a\x40\x77\x52\x03\x49\x16\x3c\x7b\xc7\xf4\xaf\xb8\x05\xcd\xeb\x68\x25\xa6\x6a\x50\x1e\xe3\xfd\x27\x2b\x23\xa8\x55\x03\x58\xe6\x84\xf5\xe5\x49\x21\xce\xa3\x83\xc1\x27\x3c\x5f\xd2\x35\x2b\xc5\x40\x50\xb6\xe6\x57\xa0\xfb\xbd\xf2\x6c\x02\x14\x16\x38\x8d\xbc\x39\x22\x8f\xbe\xda\x54\xd7\x92\x0e\x04\x61\xe8\x9a\x0f\xa2\xf0\xbd\x74\xd9\xea\xae\xba\x15\xda\x05\xc9\x06\x86\xf4\xcc\xad\x0c\x2f\xc5\xb4\xc0\xfa\x23\xbf\x78\x41\x79\x91\xc4\x3c\x47\x30\x32\x3d\x1b\x59\x1e\xea\xf7\x5e\xe8\x2e\xca\xcd\xd1\xc2\x21\xd2\xfd\xfc\xe5\x8b\x6f\x23\x06\x7f\x86\x48\xa2\x4b\xa9\x5b\x20\xb3\xa7\x35\x91\x60\x14\x6f\x59\x28\x4c\x07\xd1\x89\x5f\x39\xe3\xa7\x70\xc0\x98\xe3\x90\x66\x16\xb0\xd9\x9c\x63\x95\x93\x3e\x9c\x48\xdc\x34\x89\x03\x3c\x9b\x1b\xe3\x7b\xd7\xf4\x52\xb5\x1c\x16\xee\x51\x29\x19\xb0\x0a\x9f\x07\x0d\xc3\xa8\xcc\x63\xf2\x74\xf6\xd0\x02\x53\xc6\x33\xa9\x51\xba\xb4\x21\xfa\x02\xc5\x2b\x66\xa4\x95\xd0\x51\x33\xd7\x0b\x68\x44\x70\x58\xfa\xa7\x91\x30\x10\xe3\x96\x43\xe4\x75\xb7\xde\x02\x50\x28\xd6\x3d\x88\x03\x0b\xea\xf2\x43\x4c\xc3\xfc\x82\x00\x76\xe6\x1f\x47\xd9\xc4\xcc\xcb\xee\x4c\x76\xf7\xbe\x18\x0d\x69\xf7\xc9\xff\x20\xde\x6e\x7c\x44\xf7\xd1\xca\x83\xf0\x18\x8b\xb3\x5b\x18\xfd\x49\x79\xce\x10\x0c\x9f\x4b\x0f\x03\xe6\xd2\xb2\xb7\x8f\x2e\x5e\x6c\x45\xc6\x03\x1f\xef\x20\xbb\xde\x67\xd7\xab\xb3\x01\x2c\x5e\x4b\x2b\x49\x8c\xd5\x37\xc8\x8d\xb8\x5c\xcf\x63\xf1\x65\xb8\xcf\x2e\xc8\xdc\x53\xe2\xc8\xb7\x39\x08\x0f\xc8\xd9\x22\xfa\x93\xaf\x10\xb1\xfb\xd1\x04\x4b\x61\x36\x8d\xd4\x0b\x3f\x5f\x12\x73\x26\x13\xcf\x18\xa4\xef\x9d\x38\x10\x8d\xaa\xdc\x89\xcd\x96\x66\xef\x41\x23\x6a\xac\x6d\x0c\x41\x1b\xc8\x97\x52\xc2\x76\xcc\x76\x28\x2d\x90\xe4\x63\x5a\x9c\x45\x00\x3d\x79\x44\xde\x82\x48\xac\xbb\xf8\x24\x18\xbe\x6b\x67\x82\x4d\x0e\x55\x2b\xf0\x42\x38\x2c\x76\xc2\xc1\x4e\x50\x29\x2e\xf6\x52\x0d\x84\xff\xa4\x57\xa4\x73\x21\x7e\xa0\x51\x27\x72\xc5\x96\x18\x24\x25\x7f\x03\x23\xb3\x78\x27\x1f\x10\x6b\xb0\xe8\xa5\xf2\x6c\x85\x87\x0e\x03\xa0\x58\x8b\x86\x54\x59\x26\x3d\xe6\xf7\x99\xb7\xa2\x95\xa7\x42\xf6\x0c\xf4\x41\x5a\xa3\x71\xcd\xcc\x4e\xc3\xc9\x89\xc8\xdf\x46\xcf\xae\xfe\x25\x08\x1b\x15\xf4\x12\x69\x80\x8d\x36\x6a\x27\x08\x05\x99\x4a\xf2\xa2\x1c\xea\xf3\xcd\xa6\x96\x5a\x7a\xa6\xd4\xd3\x1d\x28\x09\x07\xd6\x48\x25\x62\xf4\xc9\x31\x18\x70\x45\xe7\x28\x62\x50\x11\x27\xfd\x5e\xde\x0a\xcd\xc2\xbf\x6c\x7a\x94\x7e\x9b\x4d\xb9\x16\x03\x1b\x5a\x67\x26\x78\xe7\x31\x60\xc8\xcc\xfa\x6f\xa8\x5c\x9e\xfb\x1e\x9e\x93\x53\x09\x18\xa9\xb3\x6b\xa1\x7b\xe1\x3d\x57\xa4\x33\x39\x0c\xd0\x4a\xe1\x23\x5b\x15\xca\xf7\x84\xf4\x57\x9b\xfa\x00\x3a\xaa\x80\x9a\x6a\x26\x55\xf4\xea\x6d\xf0\x49\x6e\x25\x94\xe0\xab\x7f\x63\xec\x4e\x34\x3d\x1c\x38\x73\x91\xfc\xb5\xbc\xad\x6c\xc1\x55\x66\x0b\x62\x67\x5a\x26\xdb\x77\xa0\x50\xc9\xb1\x78\xf7\x72\xa0\xef\xde\x42\x2c\xaf\xdb\xda\xe2\x2a\x38\x0b\x29\x31\x58\x7c\x05\x4b\x89\x90\x5f\xea\x36\x5b\x2e\x6b\x94\x82\xc9\x75\x15\xe3\x08\x29\xe0\x99\x4d\x72\x6a\xcf\xe8\x3c\x84\x6d\x13\xcf\x51\x2a\x19\xe9\x51\xc0\x73\x54\x78\x2b\x95\xc2\x1c\x59\xae\x6a\x52\x59\x94\x2e\xbf\x15\x2d\x3b\x24\x27\x03\xb0\x3e\xf6\x40\xb8\x7e\xb5\x29\x91\x4b\x10\x8e\x34\xf2\x20\x29\x8f\x88\x82\x61\x24\xa0\x42\x19\xa3\x79\x5c\x22\xd7\xe3\x6b\x8d\x5c\x68\x66\x01\x93\x37\x16\xf6\xcb\x05\xfb\xed\x17\x3f\xfc\x70\x41\xf4\x25\xec\x9c\x4c\x1a\xad\xb8\xd2\x0d\x1d\xdf\xb3\x27\xc0\x49\xa1\x93\x1d\xa9\x26\x65\x4b\xce\x46\x6b\x44\x4b\xce\x06\xd8\x53\x55\xae\xc5\x2e\xc5\xeb\x4c\xea\x83\x51\x49\x0f\xd6\x98\x2c\x98\x10\x18\x75\x44\xcc\x30\xbd\x9e\x3f\x9f\xfc\x58\x29\x38\xc4\xb2\x71\xfe\x09\x1c\x1e\x70\x6f\x82\xa3\x8b\xaa\xb6\xbd\x54\x72\x8c\x69\x3b\x00\x83\xeb\x19\x12\x6a\xf0\x27\xb6\x59\x2a\xe8\x18\x55\x44\x87\x01\x7a\xb3\x28\x64\x0b\x82\x25\x81\x1c\x92\x5d\x39\xf9\x5f\x93\x17\xa5\x23\x7a\xb5\xd9\x94\x9d\x15\xba\xc5\xf0\x8c\xd9\x49\xa2\x76\x96\x8a\x09\x5f\xab\x12\x47\x72\x77\xa3\xba\x47\x4a\xea\x3d\x50\x40\x7c\xcd\xa6\x64\x79\x99\x0a\xfd\x51\x52\xd7\xa3\xe2\x10\xc1\x7b\x1b\xc3\xa9\xb7\x30\x15\x23\xc6\x27\x09\x8a\x6a\x54\x82\x5d\xf8\xd9\x1b\x0b\xa0\xdd\xc8\x99\x51\x5d\x1b\xd7\xb0\xd9\x36\x3d\x40\x8f\xe1\xcf\x47\xba\x02\x37\x62\xa1\xbd\x42\xd5\xd3\xc6\x6f\xcc\xfe\x82\x05\xe2\x77\x6f\xe1\x88\x1c\xf1\xf9\x56\x34\xf7\x11\xa8\x8b\x65\xd4\xeb\xb5\x6b\x30\x10\x15\xc5\x90\xa4\x28\xc4\x2d\x06\xed\xa0\x09\x16\x70\xf3\x85\x13\x8f\x74\x25\xd3\x81\x83\x91\xab\xf7\xd7\x84\xc5\xdb\xec\x0d\xf9\x14\xd5\x27\x61\x75\xd4\xf2\x28\xc6\xe3\x5f\xa1\xb8\x45\xde\x75\xb5\x29\x87\xe0\x64\xc3\xa6\x51\x0b\x23\xe8\x96\xf1\x98\x94\x66\xfc\x7a\xf1\xd9\xd8\xe8\xa8\x72\x8f\xa7\x46\x2e\xc3\xd9\x5e\xec\x58\x00\x65\xdf\xe3\x9e\xce\x50\x85\x5a\x1f\x74\x0c\xa3\xc6\xd8\xd1\x58\xae\x6d\xb9\x36\x36\x5b\x2e\xcb\xe4\xe5\x56\x66\x8c\x59\x72\x6e\x21\x22\x3f\xfb\x8c\xf9\x2d\x9f\xea\xfc\x3f\xd5\xf0\xd2\xc1\x01\x30\xe3\x4a\x17\x19\x69\xe5\x68\x47\xe4\x8d\x45\xb7\x20\xc2\xde\xa3\x09\x74\x60\x95\x0b\xf6\x40\xf4\xb3\x30\x47\x4d\xdb\xa9\x98\xac\x51\xf9\x3a\x1a\x02\x7b\x8a\x26\x14\xe5\x54\x5c\xf0\xc8\xd7\x42\x07\x61\xe9\x26\xce\xd3\x1e\x4e\x27\xfc\x2d\xd5\xf7\xdf\x22\x29\xfc\x4f\x29\x96\xbf\x63\x97\xa1\xd8\x1a\x2e\xec\x73\xdf\x13\x32\x99\x40\x06\xdf\xfb\x3d\x9e\x77\x63\x82\x6a\xb3\xeb\x55\x31\x06\x35\xb2\x0e\xf9\x81\xa4\x7d\x6b\x03\xa3\x53\xf6\xf5\xd7\xd9\xd7\x5f\x97\x8f\x10\x45\xea\xd9\x68\x9c\x93\xa7\xdc\x2c\x45\x52\x0d\x6f\x42\x22\x0a\x63\xc0\xd2\x1f\x77\x3f\x13\x07\x21\x55\xec\x03\x15\xc7\xde\x0c\xd9\xa7\x6d\x25\x76\x94\xf3\x37\x8b\xec\x9b\x1f\xb0\x2e\xb2\x3c\x21\x01\x95\x64\x7b\x26\x71\x85\xf9\x86\x11\xa6\x26\x9f\x80\x20\xb4\x7c\x4f\x20\xb6\x5e\x97\xbb\xc0\xe1\x9f\x7d\x43\xfa\xf6\xe2\x87\xef\xbf\x65\x67\x11\xd1\x9f\x68\x3e\xa5\xb1\xf3\x44\x44\x8d\xb5\x92\x7b\x27\x4d\x5a\x5c\xd5\x9c\xfa\x14\xe7\x4f\x8d\x79\x8e\x16\x16\x7a\x0c\x65\x5b\x11\x58\xb2\x39\xb0\x12\x1c\xad\xd4\xb0\x21\x5b\x12\xe9\xc7\x12\xeb\x4e\xc0\x58\x62\xd0\x31\x3a\xb7\x66\x40\x2c\x42\x50\x98\xc2\xc3\x88\x9b\xe0\xfd\x7d\x8b\x88\x59\x91\x52\x21\xc1\x50\xec\xd9\xb9\x38\x47\x26\x60\x65\x73\xba\x63\xdc\x18\x92\xc2\xf2\xce\x06\xf6\xe7\xb1\x9e\x8c\x4c\x8a\x2e\x95\x43\xda\x93\x1f\x49\x2d\x65\x17\xe4\xd8\x7e\x36\x3b\xfa\xe4\x04\xcf\x23\x97\x91\x9d\xd7\xee\xd1\x79\x18\x22\x25\x4a\x87\xf8\xc6\x46\xd3\xae\x74\x80\xff\xf3\xe3\xe2\xdf\x66\xa9\x9d\x13\x4b\xbf\x31\x08\x85\xf5\xca\x84\x4e\x71\x54\x55\x58\x05\x28\x35\xe7\x27\xaf\x84\x31\xe6\xb5\xee\x92\x0b\x38\x4d\xb4\x06\xc3\xf9\x32\x74\x71\xf1\x73\xd7\x20\xf3\x41\x66\x80\x49\x71\x94\x2d\x57\xf0\x7a\x0c\x64\x89\x22\x28\x4d\xfe\x39\x5b\x2e\x8b\x26\x3a\xfd\x9c\x79\x10\x2b\x29\x39\xbe\xeb\x75\x3d\x88\xa6\x8f\x35\x89\xbb\x99\xc9\x1a\x64\x66\x45\x37\x13\x2d\x8f\xb9\x85\x3d\xc9\x51\xfe\xf6\xb3\x15\x16\x0a\x33\x0e\x51\x55\x16\x17\x7f\xff\x13\xaa\x8c\x29\x2a\xd0\x54\x96\x67\x5b\xa9\xef\xc1\x26\xc6\x00\xc4\x29\x52\x8b\xf1\x9d\xe7\x23\x63\x7b\x71\xb3\x99\x5d\x36\x8d\xb1\x09\x52\x67\x6f\xc5\x30\xba\x5e\x5a\x66\x53\x17\x2f\x30\xa5\xe6\x89\x60\x72\x52\x1f\x8d\x4d\xf5\xa0\x5c\x89\x83\xa4\xef\x9b\xfc\xcf\xc9\x8f\x75\x03\x52\x45\xe0\x6f\x61\x2f\x1b\xea\x54\x45\x33\x30\xda\x6b\x4d\xb0\xf6\x4b\xd3\xa2\xb8\x54\x51\xa4\xdf\x9a\x01\x50\x59\x75\xa8\xa4\x35\xde\xee\xb5\x70\xac\xba\xaa\x55\x20\x45\x78\xb5\xa9\x6f\x58\x3d\x71\xd7\x92\xc9\xf3\xec\xad\x51\xea\xf1\x68\x0c\x2d\xa3\x5a\x0a\x2d\x5a\x62\x6a\x45\x6f\x02\x69\x42\x94\x84\xbc\xaa\xc9\xff\x9d\xfc\x01\xb3\xa9\x8b\xd5\xc6\x22\xe5\xe7\x8d\xd8\x44\xf5\x6a\x2d\x7c\xb0\x51\x0b\xda\xc7\x74\x2e\xa8\x95\x3d\xea\x90\x6c\xbd\x3e\x7f\xd2\x97\xe6\x7b\x13\x6a\x30\x24\xb5\xeb\xed\xc9\xa9\x9b\x91\xfe\xd5\x26\xf6\x34\x7a\x73\x24\xc3\xf1\x1c\xb3\x13\xec\x41\xa4\x0e\x35\xb5\xee\x23\x51\x31\x64\x97\x50\x95\x4d\xd8\x3f\xf9\x71\xf2\x63\x75\x0b\x3a\xd1\xb6\xcb\xd0\xbd\x88\xf6\xe3\x8e\xb9\x22\x27\xeb\xe1\xc9\x3f\x8a\x23\x58\x36\x64\x2f\xef\x7f\x25\x5d\x9a\x0b\x22\x6f\x95\x50\x47\xf1\x48\x3e\xe2\x0e\xfc\x11\x40\x23\x50\xed\x05\x59\x41\xb0\xdf\x03\xa5\xf1\x0c\x1e\x46\xa1\x13\x1e\xc8\x94\x78\x35\xd2\xab\xc4\xae\x8e\xbd\xa4\x6a\x54\x74\x86\xc2\xa8\xc4\x88\x67\x74\x78\x8f\x5f\x3a\xbb\x0c\x48\x2a\x14\xfb\x78\x15\x4a\x9d\x80\xd8\x33\x5b\x80\xef\x15\x20\xd1\x66\x6c\x14\x2a\xee\x7e\xde\x18\xa5\x40\x74\x51\x65\x4c\x11\xfd\x92\x35\x73\x39\x5a\xa9\x22\xc5\x05\x17\x03\xb1\x78\x6b\x74\x17\x17\x83\xfb\xfd\x74\xb3\x98\x5f\x4b\xef\xc2\x4e\xba\x5e\x3e\xcd\xd7\x28\x4f\xb2\x97\x08\xb6\xf9\x6d\xd0\x0c\xf6\xd1\xe7\xe5\x9c\xb9\x85\xc6\x52\x03\x9f\x18\xba\x08\xbe\xc7\x62\x9d\x9a\x6b\xa8\x27\x59\xd9\xb4\xb2\x25\x0b\xe9\x08\x62\x4c\x62\x5a\x84\x56\x26\xc9\x7d\x67\x45\x4b\x37\x55\x5f\x69\xe7\xb9\x55\x5e\x2e\x8d\x66\x0b\xa3\xba\x16\xb6\x31\x8c\xe5\x94\x97\xe4\x7d\x0a\x32\xda\xaa\xf6\x14\xe7\x6f\x4d\x70\x31\x7d\xcb\x75\x68\x3b\xfa\xc2\x72\xaf\x0c\x09\xf6\xa9\xd8\x19\x9b\x9a\x65\xc4\x13\xa9\x79\x3d\x8e\x02\x45\x20\xdb\x5a\x2b\x50\x03\xb4\x49\x15\x74\x56\xf0\x1d\xe6\x9e\xec\xcb\x19\x38\x2f\x76\x4a\xba\x3e\xfb\xb8\x28\xaf\xbc\x50\x2c\x10\x06\xa9\x13\x45\xa9\xfe\x05\x31\xf0\x81\xf6\xdc\x08\x9d\x5d\xaf\x66\xe2\x29\x52\x4c\x59\x62\x31\x29\xfe\x8e\x24\xe2\x4f\xd4\x34\xa0\xb3\xa5\x96\x4d\x1b\x45\xdb\x3b\x2c\x86\x9b\xed\x5c\x74\x9d\xc5\x3a\x43\x71\x3f\xd3\xc4\xc6\xe3\xc4\x84\x06\x8f\xb0\x42\xcd\x66\xe6\xc7\xde\x06\xea\xcb\x65\x17\x84\x6f\x20\xac\x4e\xf8\x36\x67\x9e\x73\x60\xf0\xcd\x2f\xa5\x8d\xfb\xc4\x94\xe4\x5b\x18\x85\xe6\xe1\x00\x27\x22\x85\xac\x7c\x6f\xe5\x9e\xce\xfb\x6d\xe0\xbe\x42\x76\x49\xe5\xf5\x06\x44\x04\x84\xa9\x53\xe6\xd8\x72\x2b\xec\xec\xc9\x4c\x02\x75\xc6\x7c\xcb\x79\x47\xcc\xf1\x14\x19\xd9\x05\x99\x1e\x40\x83\x23\xa4\x3c\x95\x71\xbc\xb0\x39\x3c\x40\x13\x4e\x3d\xbd\x42\xc4\x7a\xf7\xe1\xf6\xab\xc9\x57\xe5\xd1\x1a\x4f\x39\x3a\x4b\x76\x63\x14\xca\x66\xef\x8f\x51\x7b\x71\xd5\x23\x1e\x6d\xcd\x4e\xd1\x8f\x25\x82\x44\x34\x8c\x9e\x34\x2a\x36\xc2\xb5\xe2\x17\xce\xb5\x63\x3a\xa8\xd2\x58\x5e\xfd\x59\xec\x89\xa5\x4c\xc8\x7b\xc1\x9c\x14\x59\x43\xac\x0c\x25\x09\x41\x76\xee\x90\xe2\xb2\x94\xd1\x42\x3d\x72\x19\xdc\xe3\xed\x46\x4d\x60\x74\xf7\x1c\xe9\x4e\xb6\x5e\x4f\xbe\x9a\x7c\x35\x8d\xad\x6f\xaa\x8a\xd4\xa8\x22\x64\xdb\x48\xe7\xf8\x60\xf3\xcb\x86\xab\xff\x3b\xe8\xa3\x2d\x5b\x5b\x8c\xff\x90\xb4\xcc\x20\xbf\x0c\x6e\x4c\x90\x58\x9d\x23\x6f\x7b\x0e\xc2\x2a\xc9\x12\xba\x31\x6e\x80\x24\xea\x67\x62\x00\xdd\x26\x57\x8a\x91\x2b\x5e\x33\xe6\x1f\xdd\x98\x8d\x05\xe2\x6f\xe0\x3c\x58\x66\x3c\xc5\xb5\xe1\xb4\xaa\xae\x74\x0b\x40\x73\x2c\x98\x7e\x5c\xc6\x7b\x39\xa4\x91\x80\xec\xf2\x0d\x67\x04\xc0\x49\xee\x66\x37\x3c\x35\xe1\x64\x17\xe7\x0f\x96\xc6\x32\x60\xe4\x6c\x74\x57\xef\x3b\xa9\x0e\x8f\x0c\x2f\xb1\x07\x96\xfa\x2b\x29\x63\x6b\x6f\xbc\x50\xe4\xc9\xaf\xa6\x5b\x6a\x4c\xf1\x92\xf2\x1b\x88\xa3\x47\x2d\x6b\xc4\xfc\x72\x43\x0c\xf2\xcc\x02\x3e\x32\x89\xe1\xb3\x11\x2c\xf5\xa5\x19\x71\x9e\xc1\x83\xb7\x82\x12\x93\x93\xa9\x30\x51\xbb\xd5\x8b\x60\x75\x2f\x08\x69\x8b\xf7\x0d\x03\x58\x81\x85\x05\xf3\x6a\x20\x21\x3b\xb5\x40\xad\x56\x56\xd4\x48\xf8\x28\xfb\x3e\x51\x4b\xf9\x6a\x53\x74\x82\x5c\x82\xe9\x80\x55\x31\xaa\x11\x20\xbf\x55\x53\xff\x3c\x1b\x1e\x89\xa1\x9d\x51\xf3\xfb\x14\x8f\x75\x6f\x8e\xb1\xc5\x30\x7d\x4d\x2d\x53\x1e\x2f\x98\x0a\xad\x53\xc0\x55\x04\x5d\x4c\xcd\x93\x9a\x65\x6c\x28\x3e\x07\x7d\xff\x54\xe4\xc6\x20\xa7\xc6\x7c\x32\x57\x2f\x88\x30\x0b\x6b\x65\x64\xd2\xc4\x18\x8f\xfd\x23\x16\x82\x4a\xe3\x01\x51\x6b\x5b\x09\x87\x6c\x6f\xba\x17\x83\x54\x92\x5b\x5c\x2f\x49\x7a\x64\x2f\xff\x42\x82\x01\x04\x99\xa4\xf9\x06\x48\x79\x66\x2f\xc9\x27\x47\xd5\xcb\x49\x72\x87\xe9\x10\xf8\xa2\xcb\xdb\x04\x28\x75\x7b\xd2\xa4\xcf\xf0\x7a\xc8\x2f\x8a\xf0\x5b\x0c\x42\x13\xae\x5d\x2a\x25\x85\xfe\x95\x02\xe2\x97\x80\x6c\x3a\xb1\xcd\xbd\x51\xca\x1c\xf9\x01\x8d\x18\x46\x21\x3b\xda\xe3\xc5\x9f\x63\x67\xa9\xd0\x70\x74\xec\x6f\xa9\x30\xec\xb8\x90\x9e\x75\x78\x59\xfa\xcb\x8c\x15\x65\x38\x07\xa3\xf3\x40\x98\x37\x5d\x1a\x4d\x40\x4b\xd7\x7d\x17\xa7\x60\xce\x9e\xd8\x6a\x34\x83\x17\xac\x19\xe3\x18\x87\x31\xa8\xdb\xb2\xef\xa2\x16\xf9\xe1\x1b\x1e\x50\x38\xa4\xde\xc0\x70\x72\x69\xaa\x51\x24\x4a\x54\x71\x3f\x9d\xb4\x2b\xf0\x7f\xf7\x81\xd4\x44\x71\x2f\x49\x08\xe6\x2f\x5e\xbc\x98\xfc\x58\xb9\x3e\x4a\xb5\x38\x6b\xc5\x97\x3f\x98\x16\xe8\x62\xea\xc1\x10\xb4\xe3\x07\xde\xdf\x51\xc0\x97\x3d\x70\x49\xcc\x6f\x5f\xf3\x2f\xee\xe0\x81\xe9\x7b\x49\xcb\xa2\x06\x3d\xc4\x21\xa3\x9f\x60\x67\x93\xca\x9c\xc7\x41\x8f\xb8\xf2\x99\x07\x05\x69\xcc\x73\xde\x18\xdd\x7e\xa9\xf8\xf9\x86\x9a\xc9\xb8\x5f\xf6\x99\x31\x1c\x45\x9a\x28\x40\xf4\x1f\xb9\xbe\x7c\xe2\x90\xca\x2e\xa8\xeb\xd9\x83\x1a\xe3\x09\xe4\xaf\xa8\x11\x5a\xfd\x55\xb6\x6d\x44\xce\x6b\xb3\x63\xa2\x52\xa4\xd9\xb8\xfc\x1d\xb0\x8d\xc3\x50\x8b\x91\xb8\x31\x87\x2f\x53\x51\x52\x63\xd6\x11\x73\x30\xf7\x8f\xa9\x89\xa0\x7d\x1f\x1d\x32\x33\x18\x6b\xcd\x31\xf6\x76\xdb\xd0\xa4\xfa\xbb\xec\x85\xb4\x09\x4c\xf7\xc6\x02\x06\xd0\x7a\x9d\x2f\x0d\x33\x8d\xdb\x90\xa6\xef\x66\xb7\x52\x77\x62\x34\x4c\xea\x51\x93\xd1\x34\xdd\xda\xf4\x3a\xd2\xb9\xe2\x6d\x60\x3d\x51\x75\xca\xec\x98\xfc\x52\x77\x88\x55\x22\x8d\x54\x21\x2c\x20\xa5\xe6\xc3\xdb\xfe\x33\xe1\x63\x3d\x40\x1b\x49\x40\x79\x47\x63\x4b\xaf\xff\xb5\xfa\xa0\xa5\x67\xee\x51\xad\x8d\x83\xb1\x8f\xa8\x89\x78\x75\xb5\x29\xef\xe2\x9c\xc2\xb3\xab\xa7\x63\x08\x9c\x5c\x83\xe4\x0e\x79\x8d\x6a\x33\x3a\x75\xd7\x71\x17\x8c\xf2\x11\x21\x76\xf1\xf6\xeb\xe0\x12\x9e\xd4\x6c\x84\x24\x06\x0c\xf7\x64\x34\x49\x65\x62\xaa\x1c\x4c\xea\x23\x22\xa0\x22\x79\x93\xac\xed\x2b\x62\x62\xb1\xfc\x72\x75\xa7\x41\xa1\xe5\xa9\xff\x4a\xf0\x7c\xcb\x3c\xa3\xf6\x56\xec\xf7\xe4\xf5\xcc\x1e\x9f\x94\x96\xf2\x68\xa2\xdf\x99\x19\xd4\xff\xd9\x37\x28\x68\x67\x16\x9e\x7a\xed\x97\xba\x83\x34\x07\xb9\xb3\xec\x24\x17\x54\x49\x37\x9b\x1c\x1e\xb9\x11\x9b\x80\xa7\xfe\x25\xc8\xe6\x9e\xd3\xc5\x04\x3f\x06\xea\x90\xb2\x81\x9a\xcc\x9c\xd1\x04\xca\xb5\x99\xd4\x8d\x0a\x27\x67\xec\x0a\x57\x50\x0b\x69\xa3\xf7\x59\x53\x07\x36\x32\x6b\x6a\xf5\x58\x1e\xfc\x9b\x46\x7d\xc9\x9e\x8e\x48\xb0\x3e\x53\xf2\x89\x8b\x69\x69\x06\x35\x1e\x5e\xe6\x4d\x76\xf7\x3e\xbf\x31\x6c\xb0\x45\x9b\x8e\x9a\x6f\x03\x58\xd9\x10\x4e\x4d\x37\xc6\xa2\x4c\xe7\xe8\x1c\x84\xed\xe2\x88\x6d\x8d\x59\x16\xbb\xd7\x3c\xc6\xc1\x28\xbd\x10\xfa\x3e\x3a\xaa\x3c\xe0\x34\x04\xe7\xb3\xeb\x15\x8a\xf4\xbd\xf4\xc9\x85\x69\xac\x21\xb3\xa7\x35\xb1\x50\x2d\x8d\xe5\x96\x43\xf5\xde\x7a\xe8\xe8\xe1\xf5\x1b\xc0\xc4\xe0\xc2\x2c\xf8\x4e\xf2\x3b\x32\xa9\x32\x83\xe2\xa4\xfe\x49\x19\x2b\x59\x26\xce\xbf\x20\x6a\x74\x91\x5e\xf2\xc8\x36\xf3\xfc\x4a\x43\x6c\x5a\xd3\xa4\x5e\xcb\xb3\x36\xc5\x3a\xf0\x0c\x42\x7d\x94\x3e\xfa\x52\xb3\xc6\x68\x2f\x75\xe0\x85\xcd\x9a\x1e\x06\xcc\x8c\x54\xae\xb0\x3a\xcd\xf6\x52\x0b\x1d\xa7\x51\xf3\x0f\xb7\xff\x1a\x89\x02\xb5\xad\xf8\x21\xaf\x63\x4b\x90\x22\x44\x21\xd1\xe7\xc7\x31\x41\x9f\x8b\x80\x80\x10\x93\x60\xaa\xc4\xf1\x34\x2b\x57\x35\x56\xf2\xdc\x40\xfd\xbe\xf1\x26\xc2\x4b\x76\x81\x5c\x6a\x7a\xc9\x34\x8e\x6f\xc0\x04\xaf\x8c\xb9\xa7\x7e\x50\x2f\x7c\xf6\x69\x5b\x11\xd9\xe6\xc4\xe9\xe2\xc9\x56\x2e\xd8\x8e\x59\xca\x04\xeb\xe1\x34\x0e\xc7\x62\x40\x9c\xb5\x5f\x5c\x08\x9a\x57\x36\x03\x6a\x0f\x1a\x33\xa8\x7b\xd9\xf5\xa9\x81\xfd\x41\xa7\xe4\xd9\x89\x16\x31\xc2\xf7\x40\xb9\x5f\xbd\x33\xba\xe5\xff\x35\x8d\xb3\xa6\xd4\xd5\x92\x27\xcd\x94\xa7\x96\x59\xd9\x99\x2f\x03\xae\x4d\xaf\x8d\x32\xc4\xb4\x4b\x1b\x62\x25\xce\x0f\x52\x20\x57\x39\x30\xf9\x27\x85\x4d\xe3\x54\x91\x8b\x0c\x52\x87\xa8\xee\x2b\x5c\x1d\x97\xe8\xc6\xd0\x5c\xda\xb9\x50\x11\x85\x22\x4f\x47\x70\x00\x61\x9b\xfe\xe4\x79\x93\x65\x11\x29\x62\xa3\x4e\xf1\xb0\x8c\x37\xcc\x51\x14\x64\x4b\x43\x17\xfc\x99\xab\xe8\x69\x32\xe2\xf6\x6c\x8c\x16\x7b\x6e\x77\xde\xd6\xb7\x61\xb4\x30\x70\x04\x2d\x2c\x40\xcb\xd3\x95\x75\x0f\x42\xf9\x1e\x99\xc3\x34\x32\x7e\xde\xe0\x67\xb3\xcb\x36\x9b\xdf\x5a\x20\xef\x42\xfe\x7a\xea\x8b\xf4\x32\x99\xf9\xf9\x2d\x77\xcb\x4b\x6a\x0c\x22\xaa\x59\x41\x46\xd9\xcd\xe2\xfc\x09\x37\x8b\x82\xb5\x6d\x13\xa9\xca\xf7\x70\xc4\xe7\x19\x0d\xcf\x91\x72\x63\x64\x7e\x43\x04\xa4\xda\xa1\xf2\xa4\x32\xfc\x92\x0b\x1d\xcd\x8b\x42\x54\x41\xde\xab\xd3\x50\x4c\x2f\xa9\x6f\x56\x39\x39\x70\xd1\x9c\x12\x7b\x17\x9d\xc1\x4b\x65\xb3\x9f\xbd\x4a\x0d\x9d\xf1\xf2\x49\x7f\x32\x8d\x36\x9c\x3a\x70\x1a\xb5\x08\x96\x86\xd8\xa9\x84\x2e\x85\x19\x02\x23\x26\x2b\x3d\xd1\x1c\x89\xe7\x91\x91\xca\xfc\xe7\x2e\xc6\x56\x41\xdb\xd8\x6c\xca\x85\x35\x47\x1d\x49\x10\xf5\xed\xf3\xeb\xe5\x25\x79\xd1\x3c\x9d\xba\x0b\x69\x3a\x20\x9d\x07\xf7\x1b\x6f\xbd\xd0\x8a\xb9\xf8\x04\xc1\xe0\x6c\xb4\x06\xeb\x42\xb2\x15\xf3\xe5\xe2\x96\x32\x37\x68\x4e\x56\x0a\xed\xde\x0c\x11\x5f\x6f\x91\xbe\x24\xa3\xa4\x51\x82\x07\x33\x9a\x2f\x4d\xb0\x9a\xe7\xb5\x78\xcb\xad\xe0\xbd\x67\x6f\xf9\xfe\xae\x4d\x6c\xd7\x55\x36\xd9\xf2\xd5\xe5\x3e\x01\xeb\x0c\x85\xc4\xde\x28\x9a\x9a\x42\x70\xf4\x5f\xba\xcc\xbe\x17\x88\x6e\x53\x2e\x05\x9c\xc6\x45\x6b\x34\xf2\x90\xcd\x84\xaa\x51\xc2\x30\x4e\x86\xd7\xed\x31\x36\x4c\x6a\x78\x18\x53\x15\xc8\x76\x8f\xd4\xb2\x27\xb7\x9c\xd2\xb2\x74\x3e\xbe\x56\xc0\x73\xcc\x71\xec\x07\xbf\xb1\xfa\x88\xec\x94\xda\x00\x9a\x02\xa9\x86\x07\x31\xf0\x90\xea\x8c\xad\x2d\xb6\x42\x6b\x06\x72\xbe\xaa\x1d\x74\x81\xcb\xb7\x0e\x94\x51\xd9\x7a\x3d\xbf\x3a\x4d\x3d\xd2\x46\xd3\xf0\x4c\xac\xe7\xdc\x58\x2c\x1b\xcb\x6d\xcb\xfc\x82\x42\xb2\xe8\xd2\xf6\x88\xd2\x38\x80\x34\x87\x99\xff\x64\x68\x98\xe7\x16\x85\x4b\x24\x42\xd3\x34\xe5\x4e\x8b\x38\x26\x5a\x7a\x1d\xc7\xb1\xa3\xd7\x41\xdb\xeb\x03\x25\xd1\xe4\x9f\x26\xff\x94\xbd\xfa\x8e\x95\x85\xc9\x3e\x6d\xf3\x38\x30\x5f\xaf\x4d\xb0\x91\xb6\x14\x4d\xec\x28\xbc\x7b\xd4\x3c\x42\x9c\xeb\xaf\x7d\x76\xb3\x98\xfc\x61\xf2\x87\x8a\x46\x9b\x38\xd6\x93\x1b\xcc\xa7\xdf\xc9\x53\x63\xb0\xb3\x20\x3c\x7b\xe9\x15\x8f\xa3\x45\xe3\x74\x27\x76\x9c\x4f\xd7\xc6\x72\xec\xdf\x2c\xaa\x43\x3a\xf2\x02\xab\x1f\x4b\x16\xea\x45\xdc\x20\xec\xf3\xb4\xd1\x41\x28\xd2\xd6\xf9\x2d\xcb\xbe\x29\x4f\x32\x52\x80\xcf\xc8\xa8\x91\xae\x31\xcc\x1d\xa5\x4e\x8a\xec\xca\xd9\x38\x06\x5a\x3f\xb1\x37\xb3\x57\xaf\xf0\x00\x16\xc1\x67\xcb\x65\x46\x0d\xcf\xf9\x46\x1c\xe2\x6b\x0e\xf4\xd7\x9f\x50\x21\xb0\xd2\xcc\xbe\xe6\xf9\xb1\xa5\xe1\x74\xd9\x16\x6f\x82\xda\xd3\xa2\x16\x56\x70\x68\xe7\x3b\xfa\xae\xb3\xa0\xe3\xb8\xb0\xe7\x9e\x47\x7b\x90\x2e\xda\x2d\xac\xda\x2a\x32\xfb\xf9\xbe\xd6\x22\x76\x09\xb3\x6f\x30\x2b\xf3\x9b\xf5\x0d\x05\x8a\x1c\x68\xe2\x90\x3c\xfd\x7a\x2b\xac\xdc\xb1\x54\xa8\x57\x52\xdf\x33\xed\xd8\xe6\xd7\x02\x92\x1c\x42\x80\x99\xfc\x9c\xfd\xfc\x73\xe5\x7b\x3c\x77\x2c\x68\xf8\x13\x9c\x86\x66\x8b\x5d\xac\x8f\x17\x3f\x7c\x4f\x77\x7f\x75\x43\x09\x3f\xdd\x1b\xe3\xd3\x78\xc4\x8d\x61\x85\x35\x4b\xa3\x8d\xbc\xca\xbd\x8c\x5d\xa0\xf2\x22\x0a\xb9\xf2\x48\x01\x80\x6c\x65\x61\x98\x76\x6d\x9f\xb9\xb0\x73\xb8\xe6\x34\xa8\x5c\xf3\x7b\x49\x29\xd8\x19\x12\x9e\x35\x51\xc9\x9d\x86\xfc\x68\x3c\x92\x87\xa1\x4e\x53\xd9\x3c\xa7\xd3\x82\x3d\x5a\x99\x96\x31\x8f\xed\x6c\x11\x5f\x14\x40\xad\x99\x86\x86\x8e\x3d\x68\xc4\xce\x5a\x28\x0b\xa2\xa5\x62\xb8\x13\x24\xb8\xcb\x0e\x92\x77\x70\xcb\x1d\x6d\x8e\x2e\xcc\x74\xac\xdd\x92\x4b\x72\xb5\x95\x2a\x29\x87\xbd\x09\x36\x5b\xae\xce\x4f\x53\xec\x49\x9f\x38\x25\xbb\x3e\x56\xcd\xa0\x89\xa6\x93\x5f\x6c\xe1\x48\xd6\x47\x83\x67\x9f\xd6\x74\xf1\xc3\xf7\x18\xc1\xcf\x68\x0c\xd6\xd0\x28\x00\x8b\x8a\xe6\x31\x92\x4b\x1a\x35\xb0\x7c\x8c\xf4\x62\x4e\xb6\xba\x9b\x2e\xe3\xd1\xe7\xfc\xbe\x86\x1d\xc8\x2a\x2a\x84\xa5\xce\xf7\x59\x34\xed\xa5\x38\xbd\x2e\x22\xf6\x7b\x56\x52\x6c\x15\x72\x22\x6e\x4d\xea\xfb\xd4\xbb\x93\xd2\x2d\xdf\x9e\x1a\xf0\x2b\x0b\x0f\x9c\x15\x53\x6e\x1e\x9d\x46\xcb\x93\xf9\xce\x08\xc2\x12\x34\x3b\x9a\xec\x7a\x55\x8d\x60\x46\x7a\x4d\xe2\xb6\x04\x9a\x2c\x5a\xae\x66\x4e\xfa\x70\x7a\x9b\x60\x01\x3c\x04\x8e\x7b\xc7\x30\x39\x67\x08\xfe\x52\x1a\xeb\x27\xaf\x65\x4c\xd3\xfb\x14\x64\xf8\xa0\x6e\xc2\xac\x49\x85\x31\xbe\x84\xc2\x87\x73\xec\x65\xd3\xe7\x9f\x56\x77\x33\x67\x06\x48\xad\x8f\xf2\x28\x62\x9b\x72\x90\x91\x36\xcd\xa4\xde\x9f\x5e\xde\x99\xf3\x80\x63\xfa\x57\x63\xb4\x3e\x15\x96\x12\xf1\xe2\x9e\x95\xe9\x69\x14\xa0\xbc\x6a\x04\x4f\x65\x4f\xfe\x38\xf9\x63\x49\x20\x82\xdc\x61\x4f\xb0\x8b\x1c\xec\xc0\xaf\x1e\xd2\xaf\x27\x22\x5b\xdd\xd5\xec\xcd\x45\x43\x4c\xa4\x86\x74\xfe\x35\x4d\x0d\xd4\x11\x9c\x29\x5e\x9f\xf0\xd5\x39\x52\xb6\xe7\x8f\x12\x54\x64\x90\x16\x80\x66\xe3\xc2\x4e\xc9\x86\xe3\xcb\x61\x44\xb0\xb8\xbe\xfc\x32\x4c\x33\x4d\x4c\x0e\x2b\xd7\x10\xa2\xfc\xae\x40\x38\x1e\x86\x78\xd6\x48\xdb\x84\x81\xdb\x0c\xc9\x59\x8e\x51\xcc\xc5\xd3\x27\x04\xbc\xa0\x8e\xe7\x08\x56\x92\x55\x52\xde\x8a\x86\x04\xfa\x76\xf2\xdf\x27\x2f\x6a\x0b\x2e\x28\xff\xa5\x2f\x1b\x2b\xd0\x86\xcd\x8b\xea\x2d\xb1\x3a\xba\x6b\xd4\x88\xd4\x17\xd4\xc6\x0e\x3c\xeb\x57\x53\xdf\x83\xaa\x5b\x7d\x0f\x30\x9e\x24\x1c\x0f\x47\x3d\xb1\x96\x10\xba\x97\xa9\x35\x44\x80\x8a\x47\xc6\x8f\x55\xc2\x47\xd2\x5d\xed\x29\xf1\xb2\xcd\x26\x23\x63\xa3\xec\xe2\xa0\xd2\x6d\xa9\xe3\xff\x98\x36\xd1\x3b\xc0\x67\x3a\x39\x48\x9e\xfc\x9e\xb9\xd4\x03\xc1\x1c\x49\x33\xd0\xd1\xbc\x0e\xde\x70\xbb\x41\x71\x9c\x4d\x37\x4f\x84\xfb\xb4\x11\xa3\x48\x55\x70\x07\xa9\x69\x76\x7a\x35\x04\x7f\xbd\xc5\xca\x4d\x87\xf0\x2a\xbe\x50\xfa\xe1\xf2\x1d\x9d\x4f\x0b\x8d\x68\xb9\xa8\x53\x87\x26\xfb\xc4\x4c\x88\x3c\x18\x0c\x9e\xff\x33\xf9\x7d\x21\xb5\x37\xa8\xaa\x7f\x62\x0f\x16\x13\x95\xc9\xd8\x3b\x6e\xa7\x14\xd1\x6e\xac\xbd\x35\x81\x27\xf1\x8b\xad\x89\x5d\xd2\x3d\x0a\x26\x1a\x51\x30\xa4\x43\xa2\x19\x18\xf7\xf6\xd7\xd8\x47\x2a\x34\x8a\xe5\xe5\x8a\x0e\x99\xa6\x5c\x08\x13\x78\x3e\x35\x6a\x81\x38\xa6\xcf\x87\x3e\x00\xe6\x64\xb6\x5e\x67\xdf\x20\xfd\x98\xa6\x97\xd3\xf8\x3d\x53\x1b\xbb\xe3\x33\xaa\xe8\x69\x30\xb0\xbc\x4d\x3e\x48\x67\x8d\xc3\x00\xa8\x98\xf5\xb3\xcb\x4a\x8d\x61\xfe\x76\x9e\x25\xa7\xd8\xa5\xa1\x7d\xfc\x03\x25\x74\x17\xe2\x9b\x0c\x97\x3a\x5b\xdd\x9d\x5d\x3a\x7a\xbf\x31\x55\xe2\x19\xfc\x12\x64\x12\x66\xd5\xe9\xdd\xd9\x8a\x36\x4c\xf7\xea\xcc\x73\xa4\xa2\x44\x5a\xab\xcf\x48\xf1\x93\x55\xd6\xf4\x3a\x7a\x39\xb3\x4f\xd0\x6a\x48\x2f\x0d\x94\xeb\xe8\x28\x6f\x33\x81\xcf\xcc\x38\xae\xcf\x9e\xd4\x30\x9a\xa3\x89\x2d\xdc\x85\x8d\xd3\xdd\xc8\xe1\x9e\x8c\x22\x16\x47\x10\xf7\x98\xc2\x9f\x7a\xe9\x63\x47\x8b\xb2\x7a\xb3\x29\x97\xbd\xd4\xac\xdd\xdf\x9e\x8c\xe3\xda\x02\x6e\x9c\xe1\xa2\x31\x48\x15\x34\x77\xc4\x7d\x1c\xbe\xc6\x7f\xad\x4e\xef\x47\x51\x20\x5e\x4b\xdf\xf4\x69\x48\x1d\x69\x7d\xac\x46\x3b\x68\xcc\x90\xaa\x4d\x23\x5c\x4f\xd5\xce\x18\x66\xc2\xa5\x32\xbc\xf1\x29\x8a\xb8\x68\x87\x17\x47\x7e\x0d\x76\xc6\xaf\x5b\x27\x33\x14\x61\x3a\x66\xdd\xe4\xc5\xe4\xc5\x34\x76\xb4\xa9\x67\x26\x53\x53\xe1\x7c\xa1\x0c\x3d\xaf\x15\x2a\x16\x11\xfc\x06\xa6\x56\x3f\x85\xcf\xd2\xbb\xc0\x76\x07\xb7\xf9\x73\x43\xe8\x76\xa6\xa0\x93\xee\x04\xca\xd9\x8a\xff\xe8\xf6\xc5\x25\x4f\x70\xf3\xe4\xcf\xde\x8a\x40\x7a\xf2\xd6\x44\x93\xe3\x6f\xfc\x96\x45\xb4\xc3\x99\xc5\x7f\xc3\x8d\xa9\x34\x64\x5a\x80\x68\xfa\x6c\x75\x37\x79\x3e\xf9\x71\x1e\x5f\x85\x62\x66\x9e\xd1\x4b\x99\xd9\x2b\xb2\x37\xa3\xd8\x45\x24\x7f\x1f\x05\x78\xf6\x9a\x0d\x96\xa3\xc4\x62\x42\x4d\x01\x60\x7c\xac\xf7\xe2\xcb\xac\x05\x16\x10\xca\x73\x11\x87\x55\x8a\x8b\xf8\xbe\x1c\xa5\x02\x83\x53\xbd\xb0\xd2\xc7\xb7\xe4\xab\xbd\x90\xf1\x7d\x80\x6b\xf9\xc0\x11\x51\xdf\x85\x53\xd8\x15\x9f\x22\x51\xc9\xbf\xe1\x69\xe8\xe8\xda\x91\x10\x31\x3b\x7a\x05\xef\xe3\xa2\x5c\x98\xa8\x61\x4a\x1a\xaa\xe4\x7e\x3c\x75\x19\xb2\xf5\xfa\xfc\xbf\x08\xe6\xf2\x24\xd1\x2b\xe4\x0e\xdc\x31\x9b\xbb\xde\x58\x9f\x1a\x5a\xd5\xd2\x04\x1d\x5f\x11\xed\x82\x54\x9e\x7a\x2a\xaf\xf9\xf4\xaa\x6b\x78\x90\xcc\x9b\x51\x9e\x45\xda\xbc\x30\xa7\x6e\xed\xd1\x58\x8e\x68\xa2\xf4\xd9\x7a\xfd\xff\x03\x00\x00\xff\xff\x36\x74\x93\xb3\x7e\x40\x00\x00") + +func modelAveragedperceptronTagsGobBytes() ([]byte, error) { + return bindataRead( + _modelAveragedperceptronTagsGob, + "model/AveragedPerceptron/tags.gob", + ) +} + +func modelAveragedperceptronTagsGob() (*asset, error) { + bytes, err := modelAveragedperceptronTagsGobBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "model/AveragedPerceptron/tags.gob", size: 16510, mode: os.FileMode(420), modTime: time.Unix(1531158553, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _modelAveragedperceptronWeightsGob = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\xfd\x79\x94\x1c\xd9\x75\x1e\x88\x03\x99\x55\x58\xba\xd1\xdd\xe8\x8d\xa4\x44\x5a\x4e\x49\xfc\xa9\xfd\xb3\x9a\xd4\xd0\x33\x1a\x8f\xed\xe3\x89\x54\xa1\x9a\x4d\x94\xd5\xd5\x35\x05\x10\xa0\xfb\x68\x74\xfa\x65\xe4\xab\xcc\x40\x45\x46\x24\x23\x22\xab\x50\x3d\x1a\xcd\xc8\x1e\x49\x5e\xe4\x63\xeb\xe8\xc8\xda\xac\x91\x65\x6a\xb1\x6c\xd9\xa6\x24\x4a\xa2\x96\x61\x14\x9b\xfb\xaa\xde\x17\xf4\x8a\x7d\x2b\xa0\x0a\x7b\x55\x01\x28\xcc\x79\xf7\xbb\xef\xbd\x9b\x95\x49\x0d\xff\x61\x44\xa3\x32\x33\xe2\xbd\xfb\xee\xfa\xdd\xef\xde\x77\xe7\x67\x47\xb6\x56\xee\xfc\xb3\x2d\x5b\x77\x6d\xbd\xf3\x33\x5b\xb6\xdc\x7b\xe7\xa7\xcd\xfd\xcf\x98\xfb\x1d\x5b\xb6\xdc\xfe\x47\x5f\x3d\x7e\xe7\x9f\x6d\xb9\xbd\xf5\x07\xfe\xf4\xbb\xa3\x0f\x7d\xa4\x56\xa8\xd6\x0f\x46\xb5\xf9\x34\x6b\xd6\x0e\x8c\x4d\xd6\x3a\x69\x52\xb4\xe3\x85\x4a\x65\x7a\x6c\xf5\x0b\xd7\xfe\xd6\x8f\xfd\xeb\x67\x8f\x06\x95\x89\x09\x7b\x5d\xde\xcf\x7f\x9b\xe9\xbc\x97\xcd\xa8\x50\x37\x2b\xd5\x03\x63\x93\xab\x97\x5f\x78\xa2\xb1\xfb\x13\x47\xcb\xea\x81\xb1\x71\x7b\x13\xdc\xc7\x7f\x9c\xa8\x5e\x11\xc5\xbd\xbc\x6a\xbe\x29\x6f\xff\xfc\x85\x9f\x08\x2e\x05\xd5\x89\x89\xe9\xd5\x7f\xfe\x23\x4f\x9f\x7c\xee\xfb\x4e\x97\x95\xc9\xc9\xd5\xcf\x7e\xcf\x4f\x9f\xff\x5f\x3e\xfb\x4a\xf9\x9e\x4d\x8f\x35\x39\x59\x6b\x6b\xd5\xad\x98\xbf\xf9\xf3\xbd\xbb\x2a\x3f\xf8\xb3\xbf\x13\x98\xc7\xe3\xeb\xf2\xc1\xe8\x07\x3f\x82\xbf\xd4\x73\x3a\x29\x7a\x2a\x8e\x17\x2a\xd5\xc9\xc9\xa9\xd5\xf4\x81\x7f\xba\xf8\xf5\xdf\x3c\x49\x2f\xc0\xd7\x43\xbe\x7d\xaa\x16\x25\xb3\xe6\x2d\xa6\x56\xb7\xfd\xd4\x2f\xee\xf9\x97\xf1\x71\x7a\x1c\xbe\x0e\x06\x57\x69\xbc\xd6\xd6\x59\x43\x67\x45\xc5\x7c\xf1\x75\xb3\x30\xd7\x96\x4a\xfa\x45\xbe\x09\xfc\x32\xb5\x7a\xb1\x2a\xa2\xa4\x55\xad\x1e\x18\x7b\x7c\xf5\xfb\xdf\x58\xfb\xc9\x43\x7f\x79\x95\x7e\xe0\x67\xdf\xf3\xfa\xb7\x6f\xec\xdb\x5a\x37\x5f\xf2\xea\xa7\xba\xff\xf0\xae\x57\xcf\x97\x76\xc5\x54\x51\xe8\xa4\xa9\x35\xbd\xf4\x27\xff\xe1\x5d\xaf\x7e\xaa\xfb\x56\x50\x39\x30\x66\xaf\xcb\xf7\x0d\xd9\xbb\xbc\xd0\xba\x4b\xcf\xf4\x99\xaf\xce\x7d\xee\x37\xbe\x7b\x39\x30\x9f\xe6\xeb\xf2\x7e\xf3\x09\xfa\xdb\xae\x2a\x22\x9d\x14\xf9\x4e\xf3\xa7\x66\x33\x7e\xf8\xc7\x37\x82\xea\x81\xb1\xa7\x56\x7f\x9c\xd6\x74\x19\xef\x12\xfc\xb0\xb9\x3d\x86\x2d\xfd\xe5\xc4\xac\xdf\xe7\x4b\xda\xec\xef\xfd\x74\xd6\xfe\xf9\x0b\x27\xe8\x2d\x5e\x34\x5b\xfd\xf7\xce\x94\xb4\x7e\x67\x7f\xe0\x23\x3b\x7e\xff\x03\xe7\x82\x91\xc9\xc9\xa9\x7d\xab\x66\x7b\xde\xf3\xfa\xb7\x4b\x7a\x73\xb3\xfa\x8f\xfd\xc9\xf1\xe0\x1e\x7e\xe0\xb9\xb4\xd0\x59\x5e\xc5\x5f\xee\xf8\xfd\x0f\x3c\xd5\xfc\x07\xd7\x82\xea\xe4\xe4\xbe\xd5\x5b\xbf\x77\xe9\x85\x27\x1a\xbc\xa0\xff\x7f\xb3\x9e\x7f\xeb\x4d\xb7\x30\x99\xfe\x64\x2f\xca\x74\x73\x9b\x79\x76\xac\xe6\x86\x78\xcd\x6b\x78\xda\xf5\x9f\x3c\xf4\x97\xc5\x2f\xec\x58\xa4\xa7\xfd\xcb\xe2\x17\xde\x37\xf2\xca\xfd\xf5\xca\xf4\xd8\xc6\x4a\x49\x3f\x61\x16\xfe\xf8\x6f\x9b\x35\xf9\xc1\xbf\x83\xef\x0d\xd3\x64\x26\xca\x3a\x39\x09\xfe\xe7\x7e\xe3\xbb\x7f\xe8\xad\x0f\x1e\x0b\xe8\xbb\xf8\xa6\x7c\x20\xfa\x10\xff\x6d\x57\x17\x59\x1a\xeb\x5e\x87\x9f\xfe\xc0\xbd\x1f\xfa\xc3\x5f\x5f\xe6\xa7\x37\xab\xf1\x99\xaf\x9e\xc3\xd3\x4f\xd0\x12\x1c\x1d\xd8\xad\xe9\xb1\x5a\x23\xcd\xa2\xa4\x45\xbb\x85\x43\x70\x9e\x5e\x83\xaf\xcb\x87\xf9\x2f\xa3\x64\x4e\xe7\x45\xd4\x52\x45\x94\x26\x39\x89\x03\x1e\xe8\x6d\xbc\x09\xdf\xb8\x65\x9d\x57\xb4\xac\xf4\xeb\x58\xf2\x65\x3c\xd7\x7f\x32\x8b\xba\xfb\xab\xb4\x67\xdf\x35\x62\x1e\xf9\x6c\xf9\x37\x86\x9e\x85\x42\x67\x73\x3a\xb1\x07\xfb\x87\xde\xfa\xe0\xb6\x9f\xfa\xc5\xe3\x58\x57\xbe\x09\x1e\xf4\x6b\x91\xa5\x85\xce\xcd\x6f\x8e\x18\xf1\xfc\x93\x2b\xb7\x5f\x3a\x7c\xf6\x54\x50\x99\xb6\xc2\xf0\xf5\xd2\xac\x28\x7e\xf1\xbf\x94\x95\xbd\x93\xab\xdf\xf8\xcd\xc7\xfe\xe4\xca\xed\x37\xcd\x82\x7e\xc4\x2e\x7e\xa7\xd3\x4b\xa2\x62\xe1\x2e\x2c\xe8\xfe\xe3\xbf\xfd\x6b\x5f\xac\x2d\x42\xd8\xf0\xe0\x27\x02\x12\x30\xdc\x5c\xa5\xf3\xff\xf7\x68\xcb\xcf\x05\xe6\x3b\xff\xeb\xe3\x47\x9f\x79\xe8\xbf\x2e\x97\x24\xc5\x58\xf5\xaf\xe1\xbd\xe9\xbc\xfc\xc3\xaf\xd3\x7b\xff\xf7\xf4\xbf\xdb\x78\x17\xfe\x5e\x6c\x14\x3e\x7f\x3e\x18\xb6\x22\xbd\xa4\xa9\xb3\xbc\x50\x49\xb3\x62\x5e\x11\x42\xc7\x02\xcf\x37\xc1\xbd\xee\x5d\xf2\x42\x65\xf9\x08\xfd\xe3\xbf\x37\x5b\xb3\xed\x42\x50\x9d\x1e\x9b\xe6\x73\x76\x8c\x9e\x83\xff\x01\x3f\xcd\xff\x10\xbc\x77\xd3\x4f\x8f\xef\xaf\xe5\x45\x2f\x29\x68\xcf\xff\xf0\xd7\x97\x7f\xf7\xcb\xff\xe8\x1d\xd2\x64\x7c\x6d\x84\xd7\xfe\x66\x57\xeb\x26\x49\xd3\x81\xb1\xd5\xd5\x7d\x66\xf5\xde\x25\x69\xe2\xeb\x72\xb3\x0e\x9b\x7a\x72\x5f\x2d\xeb\x75\xd2\xcc\xee\x32\xe9\xe4\x1f\xbe\x4e\xdf\xcf\xd7\xe5\x5d\xfc\xc7\x8d\x4c\xd1\x33\x4c\x93\x82\x3e\x81\x65\xe5\x9b\xf2\xfd\x9b\xbe\x79\x62\xa2\x96\xa4\x59\xd1\xd6\x2a\xc7\x93\xff\xc7\x2f\xff\xa3\xbf\xfb\xcf\x7f\xe4\x5d\xbc\x2b\xdf\x60\xb9\xf2\xde\xcc\x4c\x74\xb8\xd6\xd4\xe9\x28\xfd\xe3\x43\xb4\x09\x57\x59\x79\x8c\xff\xcb\xf8\xf4\xcd\xdf\x7b\xbd\x34\x4f\xf4\x31\xb3\x39\x8f\x7f\x9e\x5e\x89\xaf\xcb\xca\x9e\x71\x5e\x89\xf3\xe5\x6e\xfe\xf1\x8e\xca\x66\x9b\xe9\x7c\x92\x57\xe8\x19\xe9\x58\xfe\xee\x39\xfa\x18\x5f\x97\xf6\x9c\x34\x54\x38\xab\xb3\x4a\x65\x7c\xff\x2a\x69\x98\x1f\x63\xa5\xc7\x37\xc1\x7b\xdc\xf9\x2b\x74\xd6\xcd\xd2\xb9\x28\x09\x23\x15\xd3\x79\x85\x60\x5f\xc4\x07\xf8\x26\xd8\x7c\xc4\xf7\x4e\xd6\xf2\x74\xa6\xd0\x59\x85\x0c\x1d\xbd\xcd\x25\x3c\x0b\x5f\x97\x72\x15\x92\x34\x1f\x25\xb1\x84\x55\x58\x2e\xcd\x56\xc2\x22\xae\x40\xd4\x36\x5e\x3a\x7c\xf6\x07\x3e\xb2\xa5\x5e\x3d\x38\xbe\x7f\x95\xf4\xe5\x3b\xe7\xe9\x3c\xf1\xf5\x10\x43\xf5\x78\xad\x95\xf5\x3a\x1d\x95\x54\xfc\xbe\x9e\xc2\x63\xf3\xcd\xd0\x0f\x35\xa3\x96\x39\x8c\x24\x4d\x1f\x21\xd5\xbc\x4c\x62\xcb\xd7\xc1\x66\x13\xfa\x68\x4d\x75\xa2\x24\x25\xeb\x3e\xf5\xaf\x7e\x29\x79\xe0\x9f\xae\xd2\x7b\xe2\x18\x9f\xc0\x71\xfb\xd1\xbf\x6b\x54\xdb\xd2\x80\xc0\x4c\x4e\xd6\x9a\x3a\x0f\xb3\xa8\xa1\x9b\x24\x30\xf0\x34\xce\xe2\x53\x7c\x13\xdc\x6b\x64\x9d\x97\x6a\x41\x37\xef\x36\x7f\x48\x3b\xfa\xe5\x9b\x25\xad\x2f\x6e\x96\xa1\x25\x3e\x6f\xf4\xde\x95\x6f\x41\x43\xfe\xff\xc8\x90\xbf\x14\xd0\x6b\xaf\xfc\xae\x91\xc0\x0b\x65\xe5\x89\xf1\x55\xb2\xef\xa7\x97\xc9\xac\xf2\x1f\x95\x90\x3d\xb8\x28\x47\x49\xcb\x40\x21\x2f\xd3\xc9\x80\x84\x9e\x82\x96\xc1\xd1\xff\x8c\x59\x0d\xd6\x85\xda\xc8\x4a\xa1\xa2\xa4\xa3\x93\x62\x87\xd9\x1a\xa7\xae\x0e\x8c\xad\xfe\x4d\xb3\x97\xdf\x73\x14\xd6\x10\x07\xf3\x39\x5a\xd6\xdf\x32\xa6\xff\x53\xbc\x4c\xff\xc1\xe8\xc6\x97\x96\x02\x3a\x95\x7c\x83\xfd\x7f\xe7\x49\xb3\xb4\x37\xe8\xa1\xf8\x7b\x07\x16\xf3\x43\xfb\xf6\xff\xc8\xf4\xfe\x0f\xd5\x54\xa3\xb1\x30\x62\x9e\x98\x0e\xcb\xd1\x8b\xa4\x83\xb1\xe5\xdf\xc6\xfe\x7f\xeb\x9b\xe6\x7f\x5b\xea\x95\x3d\x7b\xf8\x61\x96\x06\xac\xd4\xd4\xf4\xd4\x07\x6b\xb1\x56\xd8\x17\xfc\xe6\x19\x5a\x08\xbe\x2e\x77\x45\x76\x53\x3e\xd9\xd3\x77\x7b\xd3\x79\x1d\x2f\x03\x3d\xc7\x4e\x03\x0c\xf4\xab\x25\xc9\x2f\x4c\x26\xeb\xeb\x97\x8d\x60\xef\x38\x83\x07\xfb\x9a\xf9\xab\x1f\xba\x42\x4b\x06\xaf\x68\xeb\x22\x76\x05\x77\x2f\x96\xc6\xb6\xfc\x03\x5a\x8d\x73\xc2\x6f\xbc\xbb\xee\xbd\xbc\x4a\x7d\x88\x94\xa5\xbd\x2c\xd7\xf1\x9c\xce\x2b\xd5\xa9\xe9\xa9\xd5\xde\x2f\xbc\x6f\xe4\xc0\xbd\x6b\xf0\x7b\xf8\xa6\x7c\x8f\x53\xa9\x9d\x28\x57\x4d\x72\x27\x33\x9d\xd3\xf1\xa1\xed\x2e\x4e\x93\x64\xf3\xb5\x53\x3c\x61\xac\xa2\x8e\x4a\x0a\x52\xfc\x4f\xad\xfe\xbb\x2f\xd6\x3e\x9d\xb5\xaf\xb0\x34\xfd\x5b\x23\x66\x37\x8f\x42\x6f\xf2\x3f\x41\x1a\xf9\x5f\x06\xd4\xb3\xb1\x3a\x99\x71\x66\x7b\x70\x00\xaf\x1a\xa3\xfa\x03\xcf\x63\x81\xf8\x26\xf8\xae\x21\x1f\xea\xf4\xb2\xa6\xd1\x6a\x93\x93\xbc\x42\x2f\x04\x95\x8f\x1e\xb4\xd7\xc6\x53\x66\x51\xcd\x55\xdc\x6b\x64\x51\xda\xcb\xab\xf4\xc4\xff\x1b\x89\xf6\x12\x69\x1d\x6c\xee\x2a\x8e\x12\x3c\xa5\xe3\xe5\x07\x36\xfd\xda\xc1\xf1\xfd\x35\xd5\xd1\x59\x14\xaa\x24\xaf\xe0\x45\x1f\x21\x05\x71\x02\xef\xc6\x37\xe5\xe0\x63\xee\xab\x45\x79\xde\xd3\xcd\x2a\xfd\x00\x76\xf5\x36\x64\x84\x6c\xf5\x5d\x23\x75\x92\x1e\x3c\xd3\x89\xb2\x36\x68\x18\x9b\x91\xd1\x18\x9d\x28\x51\x45\x9a\x2d\xd0\xfb\x92\x4b\xfa\x13\xcb\x64\x2f\xf8\x7a\x40\x27\xef\x7f\xb2\x16\xb5\x92\x34\xd3\xa4\xda\xd8\xcf\x24\x81\xb6\x3e\xa7\xf5\xdb\xbb\x69\x56\xcc\xa4\x71\x94\xb2\x29\xa1\xb3\xfb\xd3\x5b\xeb\xe6\x97\xf8\x7a\xf1\x3e\x77\xf0\xc3\x76\xa4\x67\xe0\x9c\x2d\x90\x3d\x60\xe7\x95\x6f\x02\xef\xe9\x74\x33\x63\x47\xba\x2a\x1e\x35\x7f\xfc\x7e\xf2\xa7\x7e\x9b\x6c\x99\xd5\xe8\xb4\x1d\x38\x9d\x27\xa0\xc0\xf8\x86\x9e\xf3\xff\x36\x06\xef\xef\x5e\x08\x76\xf1\x73\x1e\x4a\xc3\x59\xfc\xb0\xf0\x9a\x9d\x0b\xed\x02\xb0\xae\x09\xd7\x3a\xba\x39\x4a\xab\xfc\x09\xf2\x9c\xae\xd0\x17\x22\x88\xda\x8e\x15\x87\x47\x55\x59\xa4\x67\x80\xbe\x59\xc6\x17\xe2\x88\x2e\x0d\x91\xd4\x5a\x91\xf5\xc2\x59\xe3\x7c\x08\x37\xff\x3c\x1d\x4c\xbe\x0e\xbc\x97\xad\xe2\x6e\x5b\x35\x34\x02\x27\x48\xe5\x45\x88\x0b\xdf\x0c\x68\xb4\xe9\xb1\xda\x4c\x1a\xc7\xe9\xbc\xfb\x05\x63\x3b\x5f\x78\xe2\x22\x3d\x3d\x5f\x97\x0f\xba\x05\x8e\x55\x38\x1b\xf7\x8c\x43\x5a\x35\x8f\x80\x13\x76\x93\xfe\x18\x6e\xe1\xbd\x8b\xf4\x7b\xd0\x46\x5b\xea\x43\x44\xa4\x13\x65\x59\x9a\x51\x20\x00\x87\xf1\x0b\x74\x2c\xf8\x3a\xb8\xc7\xbd\x8d\x39\xa1\xf7\xd3\xb7\xfd\xea\xaf\x98\xff\xfd\x5e\xe9\x5f\x6b\x5d\x86\x4d\x27\x69\x57\x37\x2e\x93\xab\x0a\x0d\xb9\x41\x2e\x32\xe2\xad\xad\x8b\xe6\x51\xf1\x78\xb7\x49\xbf\x53\x0c\x31\x57\x5d\xa4\xb5\x87\x97\xf3\x95\xb2\x3a\xf5\xa4\x33\x4d\xa5\x71\x5c\x60\x1c\x5f\x86\x79\xa0\x60\xed\x9f\x3c\x58\xa7\x1d\xc6\xf3\xdc\x0c\x68\xc1\x26\x29\x24\xb9\x4e\x2f\x81\x90\xec\x22\x94\x30\x0c\xcf\xd5\x92\xfc\x53\xfc\xfc\xf3\x81\x0f\x13\x3b\x2a\x53\x45\x3b\x4d\x8c\x78\x6d\xbc\x46\x12\xbd\xf1\xda\x80\xf1\x3f\x30\x56\x0b\x7b\x85\x1e\xf1\x1e\xc6\x68\x9d\x1e\x1b\xc1\xdf\x69\x1c\x6c\x9c\xe5\xd5\xd2\xbb\x05\xaf\x0d\x98\x9b\xbd\x93\xb5\xf9\x34\x75\xfb\xfc\xfc\xf7\x19\x2d\x8b\xe3\xc9\xd7\xe5\x43\x3e\xd4\x4f\x5a\xaa\xa5\x8d\xa1\xcd\xf1\xe7\xb0\xf9\x37\xe9\x17\xf8\x3a\xd8\xac\xb4\x4c\x90\xfc\xc9\x9e\xca\x0a\x9d\xc5\x0b\x55\x6f\xdd\x2b\x75\x6f\x2b\xd7\xe9\x1b\x10\xc5\x1d\x73\x0a\x3e\x4a\x8a\x2c\x4a\xf2\x28\x34\x4e\xce\xc6\xd5\xc0\x1b\xc4\xe7\xb0\xd1\xf4\xb2\x37\x96\x07\xd4\xdd\xf4\x58\x2d\x4a\xf2\x74\x46\x65\xf4\x7b\x70\xe2\x2e\xd3\x4b\x41\x10\x2e\x62\x81\x90\x38\xf8\x6a\xb9\x39\x0a\x30\x7a\xb6\x97\x43\x59\x4e\x72\x5c\x7b\x86\x64\x44\x98\xd0\x71\x4e\x0b\x7c\x6b\x60\x77\x8c\xb6\x4d\x67\x66\x60\x96\xa0\x62\x96\xc9\x80\xe2\xd3\xc7\xc9\x31\x98\xa7\x27\x59\x22\x67\x12\xf1\xf6\x48\xdd\x2a\xc2\x66\x14\x16\xaa\xdb\x4e\x13\xcd\x4a\x1e\x9e\x12\xfb\xf3\x7c\xe3\xa2\x4f\x95\xe7\x51\x2b\xa9\xd0\xaf\xe1\x55\x61\x52\xf8\x3a\xf0\x2a\xb3\x1d\xb5\xda\xf1\xc2\x36\xf3\xf3\xd6\x33\xa4\x4f\xe1\x94\x9d\x86\xd6\x81\x72\x3a\x06\x31\xa6\x30\xfe\xc0\x55\x5a\x3a\xbc\xc9\x5a\xe9\xc3\x92\xeb\x4e\xd7\x75\x54\x2b\x0a\x23\x95\xd0\xf9\xc7\x71\x59\xa3\x0f\x41\x20\x8f\xe3\xab\x49\x06\x3f\x7d\xb1\xbc\x97\x3f\x95\xeb\x6c\x2e\x4a\x5a\xf4\x21\x84\x8c\x47\xe0\xa9\x91\x67\xf0\x21\xec\x18\xd2\x14\xa7\x5d\x10\x11\xe5\x99\xd2\x31\x5e\xd7\xda\x1f\x5a\x17\x6b\x80\x76\xbb\xc3\xd4\x56\x49\x33\x8a\x17\x2a\xc2\xaf\x7b\x8e\xd4\x05\x5f\x0b\x25\x99\xe9\x99\x58\x87\x05\xb2\x65\xd0\x26\x97\x11\x43\xe2\xc0\x9e\xa1\x4d\xfb\x1d\xf3\xfc\xd9\x6b\xe5\x7d\xee\x27\xa2\x64\x46\x75\x16\x48\xb5\x3a\xaf\x7d\xaf\xf7\xda\xef\xf3\xc6\x7f\x36\xa2\x60\xd1\xa9\xe8\xd3\x81\xd0\xdd\xa7\x07\x74\xb0\x89\x16\xf3\x8e\x8a\x63\x9d\x17\x26\x9a\xd9\xc7\xfa\xe5\x2c\x2d\x0a\x5f\x0f\x24\x13\xcc\xa7\x1a\x2a\x9f\xd5\x45\x43\xc5\x71\xa5\x2f\xb5\x23\x0c\x96\x58\xa3\x8e\xce\x73\xd5\xd2\x23\xa4\x9c\x60\x3b\xdf\x84\x23\x8c\x60\xf0\x02\x1d\x3b\xbe\xa6\x77\xe3\x3f\x2a\xef\x77\x72\xa5\x5a\x99\xd6\xb4\x91\x07\xc6\xac\xc0\xd3\xc7\x28\x2e\x59\x3c\x16\x18\x5b\x8b\x18\x6b\xad\xdc\xed\x3e\x96\x51\x8e\x8e\xe3\x76\xca\x55\xfc\xfa\x3b\xa5\xcf\x7b\x9e\xa4\x27\xe6\xff\x0e\x83\xc5\xff\x20\xcc\xc1\x4c\xef\x50\x54\xa1\xd3\xf8\x57\xc6\x67\xfa\xb5\x13\x78\x76\xbe\x11\x69\x4a\x8a\x29\x75\x5e\xe8\xe6\x76\xf3\x12\x24\xfe\xcf\x5d\x24\x95\x8e\xfc\xc9\xf5\xa0\x3a\x35\xbe\xdf\x66\xd3\xa0\x9f\x11\x3a\x5f\x46\xda\xf4\xe2\x4f\x04\x3f\xfc\xe3\x7f\xbe\x65\x91\x1e\x17\x09\x84\x8b\x81\xf7\xf1\x5f\x09\xbc\x63\x9e\x45\x6a\x07\x09\xe8\x98\xd1\x74\x6f\x5c\x80\xf8\x43\x7a\xde\x53\xa7\x57\x81\x51\x58\x21\x97\x1b\xce\xcd\x6d\xc8\xbe\x4d\x93\x99\x97\xe7\x64\x1e\xde\xc9\x9e\x1e\xb3\x42\x50\x3d\x5b\x17\xfd\x4f\x7e\xf8\xb1\x0f\xb3\xb2\x80\x9f\xfc\x22\x0e\x05\xdf\x0c\x84\x9c\x93\x93\xb5\x79\x55\x84\x6d\x2b\x93\x38\x71\x7f\x48\xc2\xc5\xd7\xa5\xf5\x77\xda\xbd\x2c\x5b\x80\x2c\xe1\xeb\xf0\x70\x7c\x3d\x90\x43\x31\x32\x38\xaf\xe2\x59\x91\x89\x80\x41\xe1\xeb\xa1\xd9\xe0\xac\x97\x54\xbc\x1f\xfc\x59\x99\x78\xfa\xac\x38\x6e\x7a\x66\x46\x87\xc5\x4e\x7a\x16\xe4\x8a\xe1\x7c\x72\x5c\x08\x13\x6b\x53\x05\x66\x6f\x90\xb9\x38\x6b\x9c\x80\x8d\xe7\x10\x77\x40\x3d\x7d\x09\xc7\x0f\x39\xa8\x4b\x24\xad\xc8\xbd\x3e\x0b\xd3\xce\x7f\x35\xe0\x83\x9b\xb7\xe3\xd4\x59\x5e\x90\xb6\x80\x9e\xad\xd4\xfd\x57\x9c\x93\x69\x8d\x1b\x22\x09\x9c\xf6\x8a\x99\x38\x9d\xcf\xe9\x55\x91\xc4\x3d\x81\x9f\xe3\x9b\xc0\xe7\x97\xa2\x5c\x35\x74\x1c\xab\x0a\xbd\x13\x3c\xfb\x33\x74\x00\xf9\x7a\xc0\xd3\x9e\x98\xa8\xe5\xe9\x5c\xa4\x8b\xaa\xf0\x05\xb0\x3e\xc8\x10\x8c\x42\xf4\x60\x7f\x6f\x96\xf7\xb8\xdf\x9a\x89\x39\xd5\x0f\x65\xf7\x69\xda\x2e\xbe\x16\xe7\xbc\x50\xb3\x3a\x9d\xd3\xd9\x4e\xf3\xf8\x14\xf4\x3d\x76\x8a\xbe\x1e\xea\xe1\x79\x12\x0b\x3c\xdd\x2a\xad\x3e\xff\x77\x44\x61\x36\x75\x48\xa7\x15\xc7\xfa\x12\x24\x1b\x9b\x74\x14\xdb\xc3\x7f\x86\x25\x84\x4f\x76\x2c\xd8\x1c\x8e\xd8\x98\x5b\x77\xba\x71\xba\xe0\x92\xaf\x30\xd5\x36\x9b\xc5\xe9\x09\x1c\x3e\xa8\xa2\x17\xca\x7b\xdd\xdb\xe4\xed\x5e\x17\xa1\x1e\x92\x12\x77\xe8\xad\xf9\x7a\xc0\x27\x30\x46\x3d\x49\x0b\x8d\x9a\x05\xf4\x2f\x74\x23\x5f\x0f\x88\xf5\x81\xb1\xda\x1c\x25\xe4\x26\x26\xdc\x96\xf9\x05\x3a\x23\xd6\x95\xec\x32\xa5\x3a\x27\x27\x57\x3f\x0a\x75\x84\x65\xe2\x1b\x5f\xa2\xc8\xb2\xb4\xa5\x12\x7c\x29\xb4\xe1\xb6\xba\x4f\xe0\x6c\x5b\x1c\x72\xce\x29\x8b\xaa\x32\x7c\x3b\x72\x31\x97\xe8\x55\xf9\xba\xf4\x0e\x42\xae\x55\x16\xb6\xc9\x41\x40\x00\x74\x1d\xaa\x0f\xe2\xf3\x5c\x20\xd2\x96\xd0\x43\x7f\xc3\xe8\xfa\x27\x61\x17\xa0\xb8\xd8\x8b\xe0\x7f\x40\x0e\x09\xc2\xa3\xe3\x18\x51\x13\xb6\x1b\x15\x22\xbe\x2e\x7d\x72\x3b\x4c\x93\xbc\x1b\x65\x2a\x44\x2e\x0c\xd1\xe9\xef\x92\x68\xf1\xb5\xf4\x3a\x12\x5d\x44\x21\x65\xc1\xe1\xb1\x2f\x97\x23\x53\xd3\x53\x1f\x74\x77\xbe\xe6\x83\x83\x00\x9f\x78\x7b\x7d\xb3\xcb\x38\x31\x51\x53\x61\x98\xf6\x92\x02\x11\xf2\x92\xd1\xc8\xe7\x2f\xd0\xe7\xa1\x4f\xd6\x61\x82\xe0\x11\x9d\x12\x8b\x66\x1c\x76\x9d\xed\x24\xe1\xfd\x52\xcd\x78\x21\xb7\x45\xec\xf2\x3e\x72\x73\x21\x8a\xa7\x4b\x51\x7f\xbb\x5d\x56\x1e\xfb\x04\x1b\xaa\x77\xc9\x8e\xc0\xc0\xdc\x10\xcf\x7c\x0d\xca\xe1\x2b\x46\x6f\x3e\x7d\x16\xc7\x08\xa9\x88\xcf\x0b\xa5\xd8\xd4\x49\xa4\x73\x4a\xab\xba\x94\xfc\x94\xbf\xe9\x4b\xfc\xf6\x74\xbe\x9b\x1e\x02\xe5\x24\xce\xff\xe0\x07\x6e\x40\xeb\x22\x33\x85\xb0\x1b\x7b\x4d\xc1\xe9\x38\xff\xd5\xb5\x52\xa4\xd6\xd7\x03\xd2\x4e\xd0\x5e\x9f\x21\x31\xb0\x75\x48\x9c\x41\x9c\xf3\xe3\x64\x67\xe1\xdf\x5f\x2d\x2b\x1f\x3d\xc8\x6b\xfa\x02\x69\x09\x28\xef\x6d\x28\x1c\xc1\x7d\xb8\x11\xf8\x8a\xda\x0d\x48\x14\xd4\xd1\x92\xc8\x1c\x8e\xd6\x77\x3b\xe9\x6a\x66\xaa\xd5\xe2\x2c\x0c\xe7\xdf\x02\x99\x8b\xdb\x69\x45\x46\x23\x13\x85\x40\x7b\x0d\x7b\xca\x37\xe5\xdd\xfc\x47\xc5\x02\x2b\x06\xeb\xc6\x49\xf7\xee\x7b\xbe\x83\x2a\x6a\xe8\x44\xab\xa2\x5d\x31\x6b\x80\xf5\x78\x13\xdf\xce\x37\xe5\x83\x2e\xac\x51\x4d\xfd\xc9\x9e\x2a\x34\x97\x7c\x71\xc6\xf1\xbc\x7c\x3d\x10\xd2\xec\x19\x97\xb5\x83\x71\x44\x9e\x15\xc8\x34\x5f\x0f\xb1\xf1\x53\xb5\x8e\x4a\xda\x69\x8a\xb3\xcf\xe7\x80\x64\xcd\x9e\x89\x21\x36\xa4\x69\x5e\x83\x53\x30\x08\x63\x97\x48\x6f\xf1\xf5\x80\x66\x7c\xb4\xd6\x88\xd3\xb4\x89\x8c\x10\x9e\xff\x6a\xe9\xdf\xe5\x6a\xf0\xa0\xab\x69\xa4\xaa\x19\xaa\xdc\x78\x7d\xa3\xbe\x24\x33\x4a\x27\x04\xe6\x64\x64\x51\x24\x4a\xbf\x09\x7d\x03\x9b\x7a\x11\xde\x11\xc7\x13\x03\x89\xb8\xe9\xb1\x5a\xa3\x17\xc7\x51\xde\x26\x27\x14\x7e\xd7\xf3\xa5\xf8\x82\x63\x62\xad\xce\x0f\x44\xa9\xe3\xfb\x11\x6e\xb6\x7a\x2e\x16\x46\x40\x7b\x83\x3e\xc6\xd7\x03\x3f\x6b\xbc\x81\x56\x9c\xa6\x1c\x02\x40\x90\x90\xae\xe4\xeb\x81\x15\x36\xbb\x52\x68\x8d\x7a\x89\x95\x0e\x4e\x21\xf1\x4d\xe0\x43\xee\x30\xed\x74\x63\x15\x25\xfc\x54\x4f\xf1\xf1\x5a\xc3\xdf\xf3\x4d\x30\x10\x3c\x4c\x4f\x7d\xd0\x28\xd2\x50\x77\x0b\x6c\x24\xb2\xe8\x17\x49\xb7\xf0\x75\x70\xaf\x2b\x5f\x66\x1d\x57\x2c\xc7\x81\x85\x37\x83\x0c\xed\xa5\xd2\x7b\x39\x57\x87\x01\x05\x8a\x5e\x03\xc7\x85\x3d\x54\x12\x64\xeb\xad\xfa\x08\x48\x35\xe7\xa2\x5c\x23\x18\x83\xc7\x0b\xf5\xcc\xd7\x81\x3f\xcc\x79\x1a\x46\xba\x58\x40\x00\x0d\x0b\x71\x41\xe6\x2a\xcf\xd3\x2f\xe0\xe5\x2f\x05\xa2\xb4\xb2\x32\x20\x9c\x07\xc6\xa6\x6a\x79\x9c\xce\x8f\x78\x83\x57\xad\x7b\xa5\x7e\x8e\x14\x10\x1c\xde\x53\xf8\x09\xeb\xb2\x5b\xef\x37\x8f\x55\x01\xbb\x65\x1f\x5a\x24\x27\x97\x87\xa4\x3b\x8c\x93\x1a\x85\x91\x4e\xc2\x05\x91\x14\x46\xa8\x60\x33\x6e\xf7\xf8\xd8\x29\x2b\xe0\x0e\x52\x95\x77\xcf\x68\x9d\x74\x30\xdf\x2c\xfa\x60\x29\xef\x85\xa1\xd6\x4d\x52\x18\x48\x70\x5d\xa0\xcc\x16\x5f\x8b\x4a\x79\x43\xc5\x45\x64\x54\x45\x45\x04\xf7\xcb\xa2\x16\xbb\x1c\x3c\x14\xe1\x91\x3f\xf4\x77\xcc\xff\x9b\xc3\x33\x35\x3d\x75\x2f\xbd\x17\x0c\xe4\x65\x28\x79\xdc\x70\x6a\x98\x8e\xd1\xcf\x7d\xa0\x4e\xdf\xea\xd2\x99\x07\xc6\xd8\x2e\xbc\x8c\xe5\x43\xcd\xef\x7b\x10\x25\xa1\x32\xf0\x60\xdd\x3c\x28\xfe\x61\x05\x6e\x37\x07\x56\x94\x15\x41\x28\xb6\x42\x87\xe6\xff\x30\xfe\xdb\xfb\x90\x76\xc5\x0e\x3d\xb8\x48\xe6\x0a\x99\xb2\x3b\xb4\x5d\x10\xad\xd5\xf2\xe1\x4d\x4b\xff\xf7\x6b\x87\xd2\xbc\x4d\x6b\x8e\xd4\x29\xd7\x99\xf9\xa6\xdf\x0e\x76\x12\x48\x22\xf4\xce\x2b\x70\xb7\xf8\xa6\xdc\x2d\xf2\x02\x73\x3a\xcb\x35\x2d\xbb\xb5\x19\xfe\xa4\xaf\x89\x65\x57\x5d\x95\x15\x1d\x9d\x14\xf8\x5e\xd4\x1b\xff\x03\xbe\x97\x6f\x84\xcd\xce\x8b\x2c\x9a\xd5\xa3\xe6\xab\x50\xa6\x3f\x2a\xf1\x1f\xe7\x90\x97\x81\x5c\x5e\x2c\x45\x66\xbe\x52\x17\x31\xfd\xd4\x50\x33\xa1\x3b\x2a\x4a\xb8\xc4\x80\x0c\xd9\x79\x88\x2c\xd2\x4f\x37\x68\xa1\x6d\x2a\x6a\xd0\x69\x9d\xaa\x75\x7b\x05\x74\x81\x75\xa2\xe8\x85\xa0\xfe\x57\xf1\x42\xd8\x9b\x63\xa5\x2c\x11\x86\xaa\x3b\x42\xef\x60\x4b\x5b\xbe\x80\x73\x33\xf0\xce\xc4\xe7\xf0\x3a\xf0\x1f\x4e\xf5\xd5\x63\xe3\xde\xe1\xaa\x2f\x32\x42\xf3\xc2\xbb\xfe\x33\x72\x1a\x60\x82\xd7\x02\x1f\xb8\xc4\x69\xa2\xc9\xf1\x41\x42\x0a\xf1\x11\x5f\xf7\xed\xf7\xdf\xfe\xb1\xbf\x5d\x91\xe1\x05\xb4\x86\x8d\x35\x36\x1f\xe2\xbd\x93\xb5\x28\xcb\x54\x33\x52\x85\x39\x72\xc2\x6e\x08\xe3\x7b\x7e\x20\x31\x7f\x60\xec\xf1\x5a\xda\x38\xa4\xc3\x82\xcd\xa7\xd1\x24\x6b\x3f\x79\x8c\x8e\x3e\x5f\x8b\xf2\xdd\x7f\xb7\xef\x13\x95\xca\x9e\x71\xde\xe6\x75\x08\x00\xdf\x04\xbb\x1d\xf6\x26\x34\x21\x97\xc5\x0c\x20\x55\xf8\xfb\x58\x43\xbe\x19\x08\x04\xf7\x8c\xd7\xba\x69\x5e\x70\xe5\x1c\xab\xf9\x46\xe0\x57\xf6\x0d\x51\x94\xea\x66\x69\xb3\x17\x16\x51\x9a\xec\x30\x7f\x80\xb3\xbc\x55\x66\xb4\x7f\x05\x79\x30\x04\x50\x50\x98\x38\xa6\x5b\x17\xcd\x6a\x23\x5f\x48\x99\x94\x8d\x33\x58\x56\x24\x17\xd7\x4b\x0f\x9c\x30\xae\x9a\x15\xfd\x46\xd4\x6c\x1a\x0f\x80\xb6\x03\x21\xfe\x7a\x40\x19\x2e\xd8\x1b\x38\xdd\x1d\x2a\x33\xdc\xa4\xa5\x6b\x92\xda\x3c\x57\x0a\x4c\xcd\x7a\x9f\xe0\xa8\x3c\xdf\x45\x6a\x02\x1e\xc5\xf3\x78\x62\xbe\xa1\x27\x86\x01\x3f\x4a\xf2\x01\xe5\xfa\x0d\xb8\xd3\x88\xc6\xb8\x76\x84\xd2\xc0\x35\x2a\x13\x58\xc5\x60\x5e\x02\x9e\xf9\x05\xb8\x20\x78\xbb\xe7\xc8\xa5\x45\x7c\xfa\x4a\x29\xd3\x9e\x02\xc0\xf4\xf6\x80\x88\x3c\x5a\x9b\x51\x61\x1e\x75\xa2\x58\xd3\xe6\x70\x9c\x41\x9b\x63\x63\x0e\x6b\x97\x7b\xdd\x7c\xde\xd9\x65\x00\x78\x2e\x0b\x4c\xc0\x6d\x7a\x34\x5b\xb5\x1a\xe6\xfc\xe5\x61\x3b\x8d\x15\x8a\x32\x88\x24\x6f\xf6\x55\x92\xe9\x49\x6d\x75\x42\x64\x03\x54\x92\x6f\xa3\xf5\x80\xb7\x75\x83\x6b\xaa\x38\x2d\xc0\xd1\xc1\x4a\xde\xa0\xcc\x1e\xce\x1b\x72\x3c\xa8\xae\xfd\xb1\x5c\xdb\x97\x06\x1c\xd3\xf1\xfd\xb5\x7c\x5e\xc7\xb1\x7b\x39\xfc\x4e\xb5\x2e\x1d\x07\xf3\x2b\xd8\x83\x55\x21\xae\x49\x5a\x44\xa1\x56\x8d\x98\x1d\x09\xf8\xb1\x37\x03\x01\xe3\xb8\x39\x04\xee\x30\x55\x0b\xa3\x22\x7a\x46\xbb\xb2\x29\xbe\x79\x2b\x12\x22\x7c\xb3\x28\x32\x9a\x59\xae\x13\x15\xe7\x23\xf4\x1e\x16\xe7\xe0\x4f\x13\xcc\x29\xd2\x1b\xd7\x10\x23\xf3\x4d\xe9\x05\xbd\x95\xa9\x66\x4f\xc5\x15\x91\xd6\xfb\x0b\xda\x68\xbe\x16\x48\xb8\x22\xd3\x2a\xef\x65\x0b\x3b\xe9\x6f\x91\xdd\x3b\x4a\xd6\x11\xfa\xe0\x18\x7d\x0e\xb6\x9e\xa1\x54\x90\xe2\xf3\x50\xce\xa8\xd5\x5c\x45\x00\x67\xe1\x8a\x5e\x72\xef\x90\xab\x80\x95\xbd\x4e\xe7\x01\xa5\x8f\xab\x81\x7f\x65\x80\xde\xd2\x6c\xbb\xf9\x67\x4e\xdc\xd2\x71\x81\xbb\x78\x2e\x30\xf2\x0e\x43\x76\x84\x0e\x88\x95\x3c\xaf\x1e\xbf\x21\xf1\x23\x7f\x5c\x0a\x3b\xf8\x82\x48\xd9\x36\x58\x99\x3d\x6e\x0d\x79\xe0\x7d\xc7\xd5\x01\x77\xf9\x89\xf1\x9a\xea\xa4\x04\xc9\x3a\x30\xb6\x4a\x59\x85\x7f\xb5\x8c\xc0\x80\x6f\x44\x92\x97\x50\x63\x9d\x28\x61\x54\x0b\xd7\x87\xe8\xe5\x6d\xad\x68\xb3\xc1\x9b\x1e\xab\xcd\x1a\x2f\xd9\xe7\x61\xd9\xde\x59\x07\x6f\xb3\xf0\x4e\x8f\x99\x60\x13\x1e\xb9\x79\x75\xc4\xe3\x27\xa1\x1b\xf8\x26\x78\xb8\xdf\xc1\x32\x22\x57\xdb\xff\x24\xcb\x1e\xd4\x36\x83\x63\xf8\x46\xe4\xa5\x54\x3e\xab\x9b\xdb\x2a\x1f\xff\x18\xe3\x16\x2e\xd0\x86\xf1\x35\x3e\x04\xfd\xbb\xc1\x31\x36\x36\x8b\x03\x24\xe8\x6c\xa4\xe2\x90\xa9\x3f\x31\x60\xde\x8c\x91\xf7\x38\x02\x12\x71\x5b\x35\xc7\x37\xda\x82\xfa\x66\x0f\xeb\x91\x47\x6a\xaa\xd9\xac\x8a\x20\x9b\x32\x1d\x70\xed\xd6\x71\xe8\x67\xe8\x7f\xa7\x06\x5c\x93\xf1\xfd\xb5\x4c\xab\xa6\x0b\xaf\xe0\xd1\x41\xd9\xf3\x75\x60\x03\xf0\x58\x33\x7c\x0a\x2f\x7a\x55\xf8\x86\x57\x07\x24\x64\xcf\x9e\x5a\xae\x33\x9d\x68\x8a\xfc\x2c\x46\xce\x7c\x1a\x47\x64\x0b\xf9\xfb\xf0\x37\xae\xf7\x99\x8d\x1e\x27\xa9\x0f\x01\xad\x4a\xe7\x9b\xaf\x85\x99\xfe\xd8\xd8\x93\xf4\x57\x38\x63\x5c\x84\xe3\x9b\x61\xaa\xad\xa9\xc3\x38\x4a\x34\x2f\x2c\x1c\x65\x96\x58\xbe\x11\x80\xb8\x46\xa4\xad\x4a\x42\xb6\x83\x4b\x65\x7c\xe3\x62\xb4\x28\xc9\x7b\x99\x6e\x8e\xfa\xb4\xc8\xce\xba\xc8\xaa\x72\x41\x13\xf6\xeb\x1d\x5a\x53\x1c\xcf\x25\x1c\x49\x48\xcf\xd9\xa1\x56\x22\x4c\x55\xd8\xb6\x8f\x8b\x9d\x38\x19\xf8\x5d\x39\x59\xfa\xc0\xac\xc8\x54\xb7\xab\x9b\xb4\xd0\x30\x83\xd7\xa1\x72\xf0\x14\x08\xb1\x11\x64\x9c\x17\x50\xc9\x19\x15\x46\x71\x54\x2c\x8c\x9a\xcf\xc1\x90\x2d\x41\x5a\x61\xc9\xde\xc0\xea\xc0\xf7\xc0\x76\x41\x95\xbf\x51\xfa\xd4\xc0\xe5\x01\x31\x9e\x98\xa8\x11\xf0\x30\x7a\xc6\x56\x31\x28\xe1\xfe\xaf\x8f\xe0\x90\xf0\xcd\xd0\xca\x5a\x3a\x33\xa3\x33\x27\x8a\x88\xca\x00\x13\xe5\x6b\x81\xb6\x9d\x8f\x8a\x76\x33\x53\xf3\xec\x4e\x01\xfe\x70\x0a\xbf\xc1\x37\xa5\xd7\x6e\xf3\x94\x6d\x39\x30\xc6\xaa\xe0\x68\xe0\xb1\x44\x47\x8d\xbb\x6c\x61\x0c\x51\xab\x5d\x6c\xaf\x3c\x61\x61\xd3\xcf\x05\x5e\xc4\x96\x60\xcd\x90\x3e\x81\xf3\x68\x13\xb0\x46\x93\xf1\xb5\x2c\xdd\xb2\x83\xef\x2b\xf6\xa2\xe0\x40\xe9\xdf\x28\x69\x8d\x40\xca\x70\x8a\x38\xdf\x80\xda\x2a\x8c\x19\xff\x03\x7e\x9b\xff\x41\x94\x23\xc2\x4c\xab\x22\x9a\xa3\x40\x7f\xe3\x16\xed\xde\xc6\xad\xc0\x97\xea\x67\x54\x52\x58\xa7\x06\x95\x99\xf3\x58\x22\xbe\x19\xd0\x25\x4f\x3f\x5d\x6b\xa5\x52\x4f\x9f\xc7\xc9\xe2\x9b\xc0\xc7\x60\x5d\x9d\x85\x14\x57\xed\xfb\xc7\x4f\xf0\x11\xba\x11\x54\x7e\xd4\x9e\xad\x1b\x7d\x67\x3a\x6a\xea\xf7\x56\x1e\xfb\x84\xb7\xd3\x7b\xad\xb3\x32\x0a\xa7\xd6\xa5\x48\x0f\x8e\xef\xe7\xe4\xc2\x25\x5a\x63\xc4\xa4\xb7\x28\xa4\x45\xe9\xe6\x3c\x3b\x3e\xd8\x3e\x06\x3d\xc2\xa0\x6d\x04\x95\x83\x16\x3d\xfb\x36\xb6\xc2\x46\x2a\xd5\x83\xd3\xfe\x0b\x28\x11\x8b\x5c\xeb\x2d\x72\x96\x90\xba\xdc\xc0\x32\x23\xa9\xb2\x4e\xe6\x14\x8f\xb2\x73\x91\xd2\x93\xf0\xd6\x8e\xc2\x8f\xe5\x5f\x94\xd8\xf3\x2a\xf2\x64\xd6\x49\x16\x1e\xe2\x6f\x05\xde\x28\x9d\x25\x1f\xd5\xf6\x4a\x78\xa4\xfb\x7f\x2e\x3d\x74\x7a\x46\xc7\xd1\x61\xd6\x40\xc8\xa8\x9c\xc4\x3e\xf0\x8d\xc0\xa6\x44\x49\x18\xf7\x9a\xc6\x36\x39\x00\xc1\xaa\xa8\x04\xfe\x82\x80\x0d\x5f\x21\x49\x85\x6b\xf9\xb6\x84\xff\x1f\x97\x65\xc9\x1b\x4e\xe1\xe7\xdd\xb4\xd8\x66\x16\x1e\xd8\x21\xe8\x1f\xf2\x25\xb7\xee\x46\x46\x04\x12\xf9\x57\xa5\x7f\xbb\x51\x20\x75\xb0\x3a\x0c\x0c\x86\x17\x71\xae\xfc\x9b\x43\xf5\x5c\xa7\x93\x26\xf3\x5a\xc5\x45\x9b\x5f\xd8\xf5\x51\xf8\x4c\xdc\x99\x81\x64\xda\xe4\xe4\xbe\x5a\xa6\x63\xad\x72\x9b\x7c\x45\x00\xc0\xf9\x22\xbe\x19\x48\x04\xd9\xbc\x70\x12\xcd\xa6\x09\xe5\x0f\xb0\x02\xdf\xc0\xaf\xf1\x4d\xe0\xb3\xc2\xfa\x70\x57\x67\x91\x4e\x42\x24\xd3\xb0\x6d\x48\x85\xf0\xb5\xf0\x83\xf5\xe1\x30\xcd\x42\x13\x9f\x92\xb2\x81\x50\xbf\x4a\xcb\xc6\xd7\x03\x7a\xcf\x44\xa7\x33\x51\x1c\x75\xa3\x24\xad\x90\x60\x39\xf8\x9b\x79\x20\x8b\x68\x76\xf0\xca\x34\xc9\x0b\x72\xb4\xcd\x13\x0c\x7d\x76\x9f\x9d\x3a\x94\x46\x49\x11\x2f\x8c\xf8\x7c\xce\xb3\x24\x19\xc0\xdf\xc2\x15\xe5\xff\x0e\x61\xe5\x7f\x08\x2c\xde\xfd\x50\xd8\x15\x98\x7b\x46\x74\xf0\xcd\x90\x1d\xa1\xe4\xa6\x11\xc6\x1c\x51\x3d\x4c\xc4\x55\x78\x20\x7c\x33\xe0\x81\x1c\x18\x1b\xaf\xcd\xa4\x99\x6b\x9f\x02\x86\x15\xe9\x4a\xbe\x96\x65\x1d\x3d\x97\xce\xea\x0a\x9d\x66\xd8\xd5\xf3\x24\xd4\x7c\x2d\x1c\x84\xf1\x1f\xd9\x5f\xf5\xe5\xa9\x57\x45\x9d\xe9\xa5\xb2\x0f\xb6\xf0\x5d\xfd\x5e\xe1\xc1\xf1\xfd\x56\x4a\x76\x08\x97\xfe\x1b\x02\x2e\x71\xbc\x14\x79\xb4\x0b\x25\xe9\x06\xfe\x17\x54\x4b\xf9\x23\x84\xad\xb6\xc9\x51\xc8\x36\xdf\xd1\x36\xf0\xe7\x03\x9f\xad\x8a\xa3\xbc\xd0\xc8\x2a\x7b\xd0\xe4\x9b\xa4\xfb\x2c\xbe\xc3\xff\x71\xde\x4d\x67\x75\xde\xd1\x49\xa5\xb2\x67\x0f\xbf\xda\x0a\xe9\x16\xbe\x76\xd0\xc8\xb6\x56\x19\xa7\x9e\x10\xfc\x5d\xc6\x96\x00\x60\x7c\x12\xce\x08\x9e\xec\x9d\x01\x7b\x6e\x0e\x5a\x43\x65\x69\x47\x17\x5c\xc9\x01\x62\x02\xd5\x31\xbe\x16\xb0\xc3\x39\x9d\xc7\x7a\x26\x8b\x66\x67\x47\xcc\xeb\x63\x63\xb0\xfc\x08\xa5\x91\x3d\x40\x89\x0d\xfa\x0f\x5a\xe4\x1d\x91\x88\xeb\x25\x3d\x3a\xd7\xde\x75\x05\xc0\x99\xaf\x07\xc0\x5d\x7b\xf6\x50\x17\x15\xb9\x40\xc8\x57\xdc\x11\xb1\xe0\x4e\x19\x50\x0e\x4a\xe0\xa3\xb5\x99\x28\x89\xf2\xb6\x55\x24\xfc\xc8\x81\x70\xde\x5e\x15\xb9\xe1\xbc\xd7\xc9\xab\xa2\xeb\x06\x76\x06\xd9\x90\xb7\x29\x3a\xb4\x61\xdc\x20\xe0\xb7\xa6\xe6\x55\xd6\xb4\x18\x36\x78\xbf\x7f\x2e\xb4\xe7\xe7\xb1\x17\x28\x67\x7e\x3b\xd8\xe5\x16\x64\x5e\xe5\xef\x31\x02\x68\xd1\xde\x02\xea\x76\x3f\x4a\x74\x80\x2c\xbd\xaf\x6e\x1e\xe0\x7f\xa7\x84\xe5\xbd\x8b\x22\x7f\xc3\x76\xd2\x42\xf5\x51\x8f\xb5\x39\x58\x7a\x03\x88\xe3\x9d\xb2\x3a\x3d\xb6\x8f\xdd\xb4\xab\x30\x75\xd8\xb7\x6b\x81\x47\xc8\xdd\x82\x00\x21\xdf\x7a\x07\x56\xdb\xc6\x72\xe6\x6d\x90\x96\xdc\x5a\x37\xd2\x68\x4d\x96\xdf\xbf\x63\xd2\xa7\xe0\xb2\x28\x4c\xcc\x15\x38\xa0\xd8\xb6\x87\x61\x63\x90\x14\x45\x83\x07\x74\xcf\x71\x3e\x4c\x16\x2e\x64\x95\x63\x91\x16\x85\x70\x20\x91\x5d\x02\x34\x8b\xaf\xc5\x36\x86\x2a\xd3\x23\xe6\x8d\xe0\x9f\x8d\xe0\xc7\x10\xf8\x9d\x21\xe1\x41\x24\xfb\xa7\xc2\x80\xde\x1c\xda\x27\xa6\x3b\xdd\xb6\xca\xa3\x67\x34\x9f\xb1\xf7\x92\x26\xb8\x8d\x25\x72\x88\xc2\xe9\x31\x17\x9d\xf9\xea\x4b\xda\x2b\xba\xbd\x82\x72\xa5\x16\x29\x65\x5e\xd3\x03\xa5\x9c\x43\x90\x66\x33\x3a\x2a\x7a\x99\x46\x86\x0e\xcf\x76\x9c\x5d\x21\x57\x36\x71\xe8\xae\x2d\x94\xb5\xe1\x30\x9f\x7e\x1c\x6e\xd9\xab\x22\x00\x98\x6f\xeb\x44\xcf\xe9\x8c\x02\x00\xc8\xec\x3a\x02\x07\x24\xb2\xd1\x93\xe1\xba\xb5\xdc\xb6\xae\xc2\xc4\x22\x26\x3b\x15\x3c\xe0\xde\xa6\x99\x45\x33\x05\x5c\xed\xe9\x29\xc6\x0e\x9e\x23\xa9\xe1\x6b\x01\xba\x51\x89\x8a\x17\xf2\x22\xdf\x45\x92\x0c\xef\xf9\x35\x1c\x39\x14\x84\x6e\x07\x95\x47\x1e\x61\x09\xfd\x26\x14\x2e\x9c\xf2\x77\x51\xdd\x86\xc0\x7c\x8d\x42\x5d\xb8\x5f\x2b\xa2\xb6\x7c\xab\xf4\x10\x92\xdb\xa5\xaf\x13\xc0\x5a\xc0\x29\xfc\x1a\x70\xc4\xfc\x13\x81\x80\x9b\xbf\x0b\x67\xbd\x4f\x47\xc4\x8a\x4b\x5f\xf8\x30\x70\x70\x40\x37\xde\xa0\x1f\xc0\xb6\x73\xb7\x0e\x0a\x76\xdb\xeb\x56\x34\x19\x12\xa3\x73\x24\xe3\x21\xd3\x5b\x16\x65\xd7\xe4\x96\xba\x68\xd5\x42\x61\x8a\xaf\x07\x9e\xc6\x48\xdd\x23\x23\x66\x7d\x20\xd7\x6f\xc9\x3e\x9c\x25\xbc\x16\x94\x7b\x15\xaa\x0f\xeb\xbb\xe2\x4e\x4a\xdc\x6b\x46\x61\x46\x3d\x0f\xe6\x80\x5b\xef\xdb\xac\x1f\x9c\xdc\x2b\xd8\x0a\xe8\x8e\x6f\x89\x48\x6a\x41\xc5\x5c\xc2\x72\xa8\x66\x01\x71\x1e\xd6\xba\x97\x45\x73\x0c\x41\x47\x4d\x05\x28\x02\x87\xb3\x32\x9f\xb6\xf1\xd2\x07\xbf\x13\xa0\x48\xcd\xe9\xbc\x99\xa5\xdd\x2e\x25\x27\xcd\x1b\x89\x86\x9a\xc7\x79\x01\xaf\x94\x1e\x8b\x7c\x5d\xb8\x41\x33\x2a\x6f\x47\x69\xb2\x43\xa4\xa7\x6e\x43\xa0\xf8\x84\xd3\x5a\xa3\xc6\xb3\x8e\x95\xb4\xf0\x52\x81\x71\x40\xbb\x0f\xff\x55\xe0\xeb\x76\x7f\x84\x0d\x87\x66\xba\x1d\x3c\xe4\x1d\xb5\x22\x8b\x1a\x3d\x34\xab\xd2\xf7\x70\xb2\x98\x3e\x6b\x13\xc7\x0f\xb8\xd3\xa8\xb2\x4e\x5e\x64\x29\x94\xd7\x94\xcb\x50\x98\x1f\xb5\x09\x0a\x87\xb0\xe9\xe5\x61\x6c\xa3\x6b\x9c\x03\xce\x82\xf3\xcd\x80\xe5\xd9\xb3\xa7\x96\xe9\x19\x8f\x9e\x86\xdc\x5e\xa3\x0d\x17\x89\xaa\x71\x8e\x0b\x2b\x75\x5f\xeb\x56\xcd\x39\x9d\x15\x51\xae\xb3\x7c\xd4\xa7\xb6\x57\x11\x46\xba\x9c\xb5\xb1\x2d\x9c\x63\x0a\x3c\xa2\xe9\x2c\x0a\x96\x36\xf9\x24\x23\xc2\x6e\xc4\xe5\x2c\xac\x22\xea\x5f\xf0\xf7\x6e\x51\x17\x08\xa2\xb8\x57\x06\x5e\x65\x7c\x7f\xed\x93\x3d\xe3\x92\xb3\xbf\x08\xa1\x02\x6e\x89\xaf\x4d\x54\xeb\xca\xae\x45\x11\xeb\x56\x96\xf6\xba\x79\xd5\xfb\x51\xdc\x48\x86\xdf\xfb\x76\xe9\xb1\x96\x97\x45\xff\x6a\xb3\x97\x34\x75\x55\xe8\x11\xfa\x0d\xf8\x49\xec\x0b\xdb\xa2\xda\xe6\xc8\x66\x62\xa2\xd6\x4d\xf3\x3c\x6a\x44\x71\x54\x10\x0c\xc8\xf7\x21\x41\xa8\x6c\x53\xd2\xd0\x0a\x41\xd1\x6b\xba\x7e\x1b\x36\x72\xb4\x3e\xd6\xe0\x6d\x5e\x93\xbd\x93\xb5\x96\xca\x1a\xaa\xa5\x85\x83\xf6\x1c\x1e\x91\x6f\x5c\xce\x6a\x2e\x4a\x63\xcd\x58\x35\x87\xf9\x77\x41\x68\x65\x71\xb3\x5b\xff\xf4\xd3\x35\x55\x14\x51\x01\xb7\xde\x7c\x23\xdc\x0e\x86\xcf\xf2\xcd\x10\xb8\xfd\x54\xad\xd9\xd3\xb2\x4b\x34\x90\x5d\xa2\xc2\x53\xff\x1f\x8a\x36\xfd\x19\xd4\xfb\xdd\x75\xb3\xfb\x7c\xbd\xe8\xfb\x85\xd2\xae\xce\xa8\xf5\x7b\x9b\x87\x3b\xff\x7e\xd0\x97\xcd\x33\xfb\xcb\x6d\x41\xb4\xa5\x70\x2b\xef\x60\xaf\x6d\xbf\x10\x19\x0f\x46\xcb\x0d\x69\xe1\x98\xac\x1d\x4a\xf1\xd4\xdc\x33\x5e\xf6\x35\x90\xfb\xac\x9b\xee\x74\xd3\x79\x9d\x01\x08\x0a\x57\x70\x9d\x8c\x0b\x5f\x97\x77\xfb\x7a\xe8\x87\xa1\x66\xf1\x9c\x70\xfe\xfb\x02\x64\xb8\x48\xb7\x85\xce\xca\x74\x11\x71\x46\xfe\x29\x9f\xc7\x37\x2f\xcb\x37\x03\xe1\xd7\xa3\xb5\x28\x09\x33\xad\x72\xe7\xff\x30\x37\x01\x49\xad\xe5\x29\xf8\x6e\xd1\x36\x32\x17\x65\x29\x35\x68\x2a\x13\x77\xa0\xb5\xcf\xa1\xb4\x44\x32\xd9\xbb\x2b\x38\x47\x3b\x8c\xbb\x82\x34\xe4\x59\x59\x1f\xbf\x4e\xce\x2f\x6a\x4d\x17\x64\x39\x84\x3b\x5f\x90\x5e\x58\x0b\x04\x96\xe2\x34\x3d\x1c\xcc\xdc\x29\x5a\x3d\xfe\x5e\x81\xd1\x0f\x55\xaf\xd5\x2e\x68\xd7\x11\x9f\x5e\xa3\xa2\x07\x5f\x93\xfd\x77\x40\xf8\xc9\x49\xb6\x44\x5c\x81\xc1\xc1\x3d\x4d\x7a\x0e\x4e\xf5\x48\xfd\x6e\x91\x15\xbc\xdf\xa3\xa3\xde\x46\xb5\x13\xa6\xe4\x2b\x01\x79\xc1\x7c\x03\xff\x16\x22\xb9\xce\x2e\x97\xc5\x80\xd2\x06\xa1\x9e\x73\x77\x5d\x50\x6d\x5c\x20\x69\x84\x79\xbe\x22\xba\xa1\xfe\x10\x0b\x03\xc5\xc1\xad\xfc\x80\xe0\x7d\x99\xbc\x08\x3c\x7e\x65\xd1\x67\x6a\x18\x9c\x01\x9f\xf0\xcd\xfe\x94\xb5\x59\x08\xf8\x2f\xd7\x03\x91\xcf\xb9\x24\x72\x12\x16\xab\xa4\x51\x21\x80\x2f\xff\x9b\x64\xf2\x04\x14\x77\xca\xc1\x84\xbc\xfe\x9b\x6f\x47\xdd\x9c\x5c\x39\xdb\x99\x61\x1e\xca\x76\x6c\x6c\xce\x1c\x12\x82\x6a\x8e\x7e\x03\x78\xcb\x6b\xb2\x31\xe6\x16\xbb\xec\xd8\x90\x37\x86\x64\x01\x6a\x5d\x9d\xe5\x11\x57\x18\xf0\xa1\x25\xf9\x0d\xbe\x85\x4f\x27\xb9\xee\x50\x0a\xc4\xf5\xbc\xc0\xdd\xe5\xeb\xc5\x21\x4e\x88\x3e\x5c\x64\x8a\xdc\x7d\xdb\xb9\x42\x26\x8b\x9d\x42\xda\x1f\x38\x4c\x23\xa4\x0c\x51\x41\xbe\xe8\xd0\x81\x89\xee\x65\x69\xde\xcb\x5a\x3a\x4d\x46\x3d\x74\xf8\x8b\x04\x80\x80\xd5\x79\x0b\x0f\x6b\x21\x7c\xb4\x1b\x70\x52\xe0\x2a\xe2\xa7\x2a\xf5\x87\x05\x44\x35\x9c\xd5\x85\xa6\x88\x65\xc4\x7b\x93\xcc\x52\xe1\xba\x38\xa7\x2d\x70\x0e\x91\x0c\x5f\x97\x1e\xc3\xab\xa2\xb0\x1d\x51\x0c\x01\xaf\x62\x55\x70\x4b\xac\xba\x64\xde\x7c\x14\x37\x47\x7d\xe3\xdb\x39\x68\x45\x98\xe6\x2f\x97\xbe\xa7\xe7\xbe\xba\x2f\x9b\xdf\xbd\x28\xbc\xc7\x77\x83\x87\x85\xf2\x68\xa6\x59\xce\x4d\x67\x3e\x17\x06\xaa\x05\xbe\x1e\x28\x6b\x4c\x4c\x4c\xd7\xe6\x55\x96\x38\x05\x65\x8b\x79\x12\xc6\x65\xcd\x54\x2b\xd3\x89\x6a\xaa\x8a\xd0\xdd\x5f\xc3\x0a\xf3\xcd\x80\xe5\xdc\xff\x64\x6d\x26\x4e\xa9\xd8\x48\xd9\xb7\x61\xaa\x6c\x97\xc3\x28\x87\xed\x94\xd0\x67\x38\x3d\x55\xf8\xde\x70\x9f\x5e\x97\x98\xa9\xab\x02\xf7\x70\x52\x64\x68\xdb\x51\x23\xcd\x04\x3a\x9f\x4b\x3a\x16\x0f\x6b\x1d\x6d\x26\x48\x49\x81\x26\xb3\xf8\x5a\x61\x08\x5f\x18\x20\xda\x98\x98\xa8\x35\xa3\x4c\x87\x45\x9a\x51\x22\xd1\xc9\xce\xb2\xc4\xc5\x2e\x8b\x96\x9d\xdc\x44\x71\x2a\xbe\xc7\xe3\xd8\xb7\x2e\x92\xc1\x01\xde\xfb\xa4\xc0\x31\x7f\x8d\xce\x30\x7c\xae\x35\x59\x9f\xc0\x09\x82\x52\x65\x98\x3b\xc2\x89\x15\x68\x1c\x88\xf2\x1d\x28\x2c\xab\x6f\x49\x2f\x8a\x5a\x9a\x8d\x4b\x47\x01\x0f\xb3\x75\x57\x7a\x6c\x28\xfc\x65\x51\xb7\x0a\xd3\x5e\x97\x98\x5c\x5c\xb7\xfa\x5b\x81\xcf\x8b\xbd\x35\xac\x56\xa9\x8a\x76\xac\x0b\x2d\xaa\x90\x2b\xa2\x4c\xe2\x33\x5e\xe9\x9c\x2a\x54\x55\xe4\xe2\xde\x28\x7d\xa9\xfe\x1a\xa5\xf2\xa0\x9a\x2f\x94\xf7\x88\x2e\xcf\xa6\x7e\x80\x92\x11\x20\x77\x39\x0d\xef\xd5\x16\x61\x3d\xe6\x65\xcb\xa2\x39\x6c\x70\x71\x6f\xe2\xbd\x2d\xa9\x46\xc5\xf1\x00\xad\xe0\xb5\x01\xc4\x79\xbb\x2f\x50\xe7\x8c\x28\x02\xe8\x15\x2c\x29\xe4\xff\x34\x92\x89\xc8\x42\x2c\x41\x47\x59\x8f\x15\x29\x1b\xb8\x73\x27\xc8\xd4\x62\x1b\x6e\x0b\x88\xc7\x51\x6c\x96\x5d\x6b\xb3\xd7\xc8\xe4\xbc\x00\x23\x82\x63\xfd\xb2\xef\xd6\x4f\x3b\x9d\xa8\x28\x6c\x58\x60\x61\x37\xe6\x0b\xd1\x9b\x5a\x01\xca\x10\xce\xf8\x75\xd7\x14\x3e\x9f\xa5\x49\xb3\xe5\x3b\x54\x91\xe5\x78\x93\x5e\x9f\xaf\x1d\xf1\x93\x0a\x43\xdd\xa5\x9c\x75\xd5\xd7\x0d\xb7\xd7\xfd\x4e\x73\xf3\x16\x1e\xf4\x9c\xd3\x00\x59\xcf\xc4\x38\x9c\x4a\x46\xa0\xb1\x24\xc1\x46\x4b\x03\x2e\xd0\x81\xb1\xa7\x6a\x69\xaf\xc8\xa2\x56\xbb\xa0\xdc\xbe\xcd\x62\x99\xdf\xe5\xeb\x61\xbe\xf3\x7c\x9a\xcd\x3a\xd4\x0b\x67\x00\x48\x12\x5d\x23\xc5\xc4\x04\x1f\x80\xd7\x8d\x63\xe2\xe4\xa5\x28\x98\x11\xc1\x92\x58\x88\xa0\xe0\xb9\x81\xda\x83\xf1\xd2\x7b\x2a\x53\x49\xa1\xed\x82\x63\xd7\xcf\x0b\x0d\x08\x5c\x2f\xd6\xfb\xdb\x02\x72\xac\xc2\xd9\x24\x9d\x8f\x75\xb3\xa5\x91\x86\x80\xbf\xfe\x06\x0b\x96\x45\xa8\xd3\xfa\x20\xb3\x5d\xa9\x8b\x82\xeb\x60\xcc\x30\x35\x3d\x55\x9b\x37\xcf\xc2\x71\x94\xcd\x90\xd1\x7e\xdb\xd4\xd9\x66\x23\x4f\x2d\xb8\x78\x65\xd8\xa7\xd3\xb2\xcb\xf3\xb4\xdb\xf3\x6e\x96\x86\x4c\xc4\x43\x8b\x8a\x2c\x2a\xc8\xcd\xf8\xda\x15\x19\x1e\x49\x1e\xa9\x52\xc6\xc2\x66\xfb\xcd\xe9\x74\x86\x79\xcf\x1e\x2e\x6a\xdd\x12\x79\x72\x52\xf2\x45\x9a\xce\x8a\x36\x9e\x13\xa2\x8d\xe7\x44\xf9\x90\xf0\x7f\xb2\x6e\x8a\xc8\x81\xec\xbf\x25\xa2\xa2\xe7\x46\xa9\xef\x5d\x78\x71\x70\x10\x57\x49\x5a\xe0\x92\xbd\x2d\xc0\x40\x87\xd2\x44\x15\x6d\x45\x3d\xe0\xac\x48\xce\xe2\x88\xf3\xcd\x40\x69\x67\x7c\x7f\x2d\x49\x93\x6e\x96\xce\x44\x08\xb7\xb0\xab\x48\x00\xf0\xb5\xc8\x79\x87\x31\x31\x18\xd0\x66\xc0\xff\xb8\x0a\x3d\xcc\x37\x42\xe1\xcf\xab\x08\x70\xfd\xf1\xfd\x6c\x0e\x5f\x47\x9f\x24\xaa\xa5\x84\xf1\xdb\x40\xf1\x1a\x99\xb7\xeb\xa4\xbd\xf8\x4f\x45\xd2\xa1\x9b\xe9\x3c\xef\x65\x3a\x47\x73\x9a\x25\x3d\xf3\xce\xc8\x76\x08\x11\x10\x01\x77\x44\xfe\xae\xa9\x63\xb5\x60\x73\x10\x76\xfb\xa5\x5c\x6c\x16\x9d\x3d\xe3\xb5\x47\x74\xa7\x42\x3b\x6d\xe1\x1c\xf4\xdd\x16\xe7\x21\xf2\x88\x3a\x53\x51\xcc\xc2\x33\xe9\x14\x83\x3f\xc5\xe7\x04\x8f\x44\x1e\x35\x35\x90\x1d\xe6\x15\xe1\x7a\xde\x21\xcd\xc7\xd7\xa2\xad\xb6\xa1\xb2\x44\x17\x05\xd7\x19\x1d\x9f\x97\x79\x0a\xcb\xe7\xe5\xc1\x00\x9d\x28\x49\xb3\x51\xef\xcf\x9e\x95\xa0\x8d\x2b\x50\xfb\x70\xb2\x3e\x53\x7a\x8a\x16\xc6\x29\x41\xd1\x9e\x14\xda\x22\xd3\x2d\x12\x41\xd7\x7e\x09\x34\x0c\x1c\xe2\x11\x2c\xb3\x80\x3a\x4d\xb9\x4e\xc1\x21\x0a\xab\xd7\x6d\x2a\x77\x70\x61\x1f\xd6\x69\xf1\xf9\xda\xe9\x77\x95\xe7\x29\xd5\x23\x47\x3d\x87\xc3\x1f\xd1\xd3\x62\xd5\x2f\xe2\xa7\xe0\x61\x9f\xa1\x07\x42\x2e\x70\x57\xdd\xbb\x4d\xb7\x86\x78\x72\xb5\xae\xd6\x59\xac\x59\x17\x58\xe3\xe3\xea\xc3\x3f\x75\x74\x28\xdb\x49\xaf\x5b\xf4\x32\x9c\x20\xb8\x23\xcf\xc3\xf8\xf1\xcd\x90\xda\xd3\x54\x4d\x37\x7b\xa1\x2a\x52\xdb\x4c\x48\x4a\x6f\xcd\x82\xac\x44\x61\xd2\x37\xb2\x6f\xfe\xe5\xa7\x9f\xae\xcd\xb7\x53\x4d\x59\xc8\xf1\xfd\x2e\xa9\x6a\x56\xc4\x82\xe4\x2b\x07\xa7\xac\xbf\xe7\x74\x58\x98\x45\x45\x14\x46\x79\x87\x13\x31\x88\xf8\xd6\x02\x8f\xdb\x5c\x2b\xfd\xf6\x46\x1d\xd5\xd2\xf9\x36\x63\x96\x61\x7d\x8f\x07\xde\x39\x44\x0c\xce\x98\xce\xc0\xa3\x5d\x8f\x43\xf1\x38\x2a\x0a\xf3\x82\x96\x03\x69\x10\xc6\xfc\x54\xbf\xa1\x82\xbc\xa1\x3f\x12\xa5\x94\x2b\x82\x6b\xe4\xb4\xe8\x64\x44\x5e\x31\x5e\xd8\x66\xb4\x29\x34\xeb\x8b\x32\xfe\x41\xf3\x11\x36\xfe\x38\x1d\x1d\xfe\x23\x59\xe5\x81\x56\xe0\x3f\x1a\x96\x95\xa3\x8c\x67\x1a\x33\xa2\xc5\x66\x4f\x7c\x26\x05\x1d\x1e\x08\x32\x18\x29\x61\x5b\x26\x36\x07\x6c\x4f\x3f\x5d\x9b\x89\xb2\xbc\x18\xf1\xcf\x75\x89\xe8\x7b\x98\x9c\x4e\x52\xa8\x6d\x5d\xf4\x82\xbf\x31\xe0\x4c\xef\xd9\x53\x53\xd4\xb8\x28\xf2\xb0\x8e\x44\xd2\x13\x4a\x0e\x89\x66\x8d\x0d\x23\xe1\x66\xd0\x08\xfd\xbe\x05\x90\x3c\x24\xe0\x17\x2d\x9d\x44\x69\x2f\x8f\x17\x60\xd2\xe1\xe2\x81\x3f\x8e\xcb\x1a\xa5\x80\x3d\x0e\x01\x00\x4c\xd5\x3e\xd9\xd3\xb9\x79\xc0\x8a\x4f\xf2\x1d\x09\x7c\x75\xfe\x88\xc0\x21\xb6\xd3\xae\x71\x1e\xcc\xfb\x5b\xec\x37\x69\x7e\x94\x6c\x20\x68\x90\xce\xaf\x89\x1c\x4a\xd4\xe9\xf6\x5a\x49\x7f\x33\xe2\x41\xd1\x8c\xe8\xd5\x69\x91\xc6\x3a\x53\x49\xa8\xff\xbf\xe8\x3d\xac\xab\xdd\x8a\xd3\x06\xb2\xa4\x48\x7c\x7d\x5d\xd4\xdb\x98\xd7\xcf\xe6\x7a\x3c\x7a\x0b\xa8\x0a\xdb\x97\x31\xce\xa9\xa1\x2b\x32\x4f\x74\x45\x74\xee\x37\x55\x3e\x22\x31\x90\xa8\x5f\x6f\xdc\x65\x24\x6a\xe3\xae\x45\x51\x2c\xbf\x2c\xfc\xf9\xf6\x87\xdb\x1f\x16\x2b\xca\xcd\xcb\x7c\x33\xc4\x79\x7c\xbc\xd6\x49\x8d\xe9\xe1\xf8\x82\xb9\xb8\x02\xdf\xb9\x72\x46\xec\x43\x98\xa6\x99\xc5\x08\x0e\x85\x61\xf8\x38\xbf\xd0\x61\x3b\x49\xe3\xb4\x15\xd9\x0a\x21\x6c\xc8\xcf\x93\x22\x86\x23\x80\xda\x15\xaa\x46\xcb\x92\x9d\xaa\x30\xcf\xd3\x8a\xb8\x63\xd9\x52\x75\xf9\x3e\xb0\x35\xf1\xc2\xb1\x4a\x50\x9b\xd9\x58\x29\x89\xe2\x73\xa0\x07\xe1\xe0\x54\xad\x9b\x26\x91\xad\x74\x5b\xde\x37\x52\xc2\x7c\x23\xf4\x46\x87\xe0\xcf\x9a\x61\xe7\x70\x6b\x41\x10\xc3\xd7\x8b\x1e\x23\x7c\x2a\x10\xd6\xf1\x02\xbe\x51\x22\x65\xf9\xaf\x06\x5a\xc1\xf6\xec\xa9\x75\x63\x15\x72\x07\xb7\x75\xa5\xa4\x8f\x65\x61\x99\xba\x19\xe5\x7c\x44\x98\x59\x14\xee\x97\xa5\x19\xf5\x32\xac\x7a\x45\xda\x31\x06\x72\x94\x14\x25\xc4\x77\x03\xca\xcc\x66\x76\x3c\x00\xf0\xa4\x20\xca\xba\x22\x1b\xdc\x2f\x0a\x09\x3c\xa4\x3a\x55\x61\x64\x9e\x15\x7c\x2b\x97\x85\x06\x5e\x2e\x85\x07\x5c\xe8\xd0\x1d\x6a\xb8\xe4\x37\x25\xf2\xe4\xe6\xc0\xee\x18\x13\xd9\x8d\x09\xfd\x6b\xa4\x84\x19\x2c\x60\xdc\x2c\x9d\x85\xf7\x4f\xe6\xdb\x5a\x15\x7c\x2c\x04\xc3\xc1\x3e\xf6\x63\xd1\xfe\x80\xbc\x2f\x82\x7b\xf4\xba\x5c\x1c\xa8\x61\x53\xb1\x62\x5e\x67\xed\xb4\x97\x5b\xe8\x8e\x85\xaa\x89\xe6\xe6\xb3\xc2\x99\x49\xb3\x42\xb7\x98\x04\x01\x6a\x18\x4d\x3e\x7c\x2d\xfe\xd2\x18\x7c\xdd\xdc\x89\xc7\x44\xfd\x78\x3d\xf0\x2c\x04\x47\x61\x87\x6c\xc8\x2f\xe0\x7f\x68\xa4\x73\x7d\x86\xe6\x39\xf0\x57\xdc\x1e\x0c\xcd\x0d\xe2\x1b\xf8\x2f\xdf\x2c\x7d\x34\xf0\xe6\x90\x3e\xb4\x99\xb4\x97\x51\x6b\x0f\x83\x70\x03\xd1\xd5\xba\x24\x8e\xd1\x8c\xd6\xcc\x40\x69\x99\x7a\xcd\xf7\xba\x76\x17\x5f\x38\xfc\x5d\xe8\x2b\x38\x21\x97\x84\xbb\x7d\x4e\xf4\x6d\x98\x0d\xbd\x87\x3e\x84\x68\xf2\x5b\xa5\xcf\xe2\xad\x41\x26\x2d\x3d\xac\xe0\xa7\x38\xdd\x07\x72\x3c\x2a\x5a\x59\x6e\x06\xa2\xe7\x72\x0b\xe5\x89\x11\x38\xad\x96\x22\x2e\xfc\x0b\x4a\x0d\x43\x17\xdd\x5d\xa7\x63\x00\x50\xc8\x7a\x29\x7a\x15\x4b\x11\x5f\x5c\x16\x94\x44\x45\x54\xc4\xba\x59\x35\xdf\x6d\x3b\xca\x45\x5b\x8c\xd4\xa3\xa7\xca\x87\xa5\xae\xd2\xaa\x13\xbb\xb6\x58\xbb\x1a\x17\xa1\x1a\xf8\x66\x00\xeb\x3f\xbe\xbf\xd6\xcc\xd4\x7c\xc5\xa7\x4e\xd6\x45\x85\x78\x7d\x08\x3a\x7a\x5f\xed\x7b\xc7\xf7\x3e\xbe\x77\xff\x3e\x28\x0d\xee\x74\x29\x65\xd7\x8b\xc8\x62\x1b\xbf\x8c\x12\x9f\xb0\x4f\x55\x02\x7a\x6c\x30\x88\xc1\xe2\xeb\xcc\x8f\xdb\xf3\x41\x4f\x6b\x51\x78\x22\xcb\x56\xe8\xb9\x2c\x0a\x2b\x22\x05\xf1\x9a\x30\x8f\xaf\x0d\xa5\x96\x2d\x98\x2b\xc8\xfc\x1d\x42\x8c\xe5\x92\xea\x0c\x7c\x13\x3c\x38\x50\xc6\x51\xf9\x88\x54\x28\xbe\x4f\x0a\x8c\x5e\xc0\x99\x03\x0e\x83\xd4\xdb\xae\xba\x4d\x99\xa8\x66\x9a\x39\xba\x62\x88\xe5\x69\x59\x9e\x3e\x2d\x98\x1f\x5a\xaa\xd7\x82\xa1\x73\xe5\xb3\x49\x5f\x58\xb0\xd6\x3d\x56\x59\x4b\x8f\x08\x76\xde\x9d\x8b\x66\x29\x51\x0b\xb9\x2e\x1a\xca\xdf\x5f\xf7\xb1\x7d\x75\xd1\x26\x9d\x75\xde\xcd\x47\x21\xc9\x88\x0b\xb6\xd5\x05\x15\x31\xb0\x21\xae\x46\x33\x39\xc9\x87\x8c\xf1\x41\x38\xe1\x15\xd9\x00\xd4\xed\x66\xe9\x9c\x8a\x47\x2b\x8f\x7d\xc2\xf6\xa5\x89\xb2\xfc\x46\x20\xea\x05\x1b\xd8\x60\xf8\x45\xff\x9e\x7e\xc9\x76\xb2\x0d\x6c\xd4\xf4\x54\x2d\xd1\x51\xd1\xd6\x19\xb4\x9f\x83\xb5\xba\x7a\xc1\x5f\x05\x0f\x38\xc5\xae\x9b\x51\x08\x77\x52\xb2\x5a\x3e\x5f\x8a\x14\xf2\xf3\x92\x6f\x70\x4e\x27\x45\x1f\xb9\xe4\x6a\x20\xfa\xca\x57\xb1\x41\x78\xce\x7f\x23\x20\x3f\x79\xaf\xdb\x8d\xb5\xf5\x91\x9e\xb2\xbd\x99\xf8\xac\x6d\xd4\x14\x54\x56\x05\xda\x22\xc7\xf7\xfb\x8a\xfe\x41\x7f\x23\x49\xaf\xb4\xee\x58\x1f\xb2\xaf\x7b\x1a\x5a\x61\x2b\x15\x60\x91\xf1\xbe\x32\xac\xb2\x9d\xf7\xba\x3a\x0b\xd3\x4e\xb7\x47\x88\x40\x47\x9d\x88\xec\x27\x5f\x8b\xa8\x3b\x2f\x90\x29\x20\x4d\x6f\x15\xba\xa7\x01\xba\x30\x2c\x93\x1f\x9a\xd8\x2b\xcd\xba\x15\x7f\x70\x7f\xb5\x14\xdd\xa1\xbf\x2a\x24\x79\x5e\xc5\x31\xb0\x09\xa8\xe1\xaf\x90\x5f\x65\x81\xe3\xa4\xfb\xb8\x71\x01\x3d\x61\x8e\x8e\xcd\x61\x38\x5e\x1c\x12\x6d\x4d\xd5\x66\x52\xea\x33\xa6\x47\x80\xf4\xbe\x45\x8f\xcd\xd7\x03\xe6\xfb\x51\xf2\x1f\x63\x7b\xfe\xf0\x30\x9c\xc3\xe1\x9b\x61\x3d\xad\x2e\x27\xc8\xa6\x17\xc1\xf0\x49\xec\x33\xdf\x0c\x7c\xce\x22\x63\x8a\x76\x94\xcc\x56\x65\x0d\x54\x70\x34\x31\x48\x83\xe9\x7a\x86\x11\x4a\x36\x75\x07\x7d\x08\x48\xd3\xa1\x1a\xf4\x36\x1d\x29\xbe\x1e\xca\x94\x30\x93\xf6\x12\xca\x60\x8e\xf3\x62\x00\xbe\xc1\xb4\x29\xd8\x27\x7c\xfe\xa2\x73\x88\xc2\xb4\xbb\x40\x99\xd9\x3e\x1e\x51\x99\xfa\x3c\x2f\xb4\x4e\x43\xc7\x40\x43\xbb\x38\xd2\x45\xb6\xfd\xd4\x29\x1d\x95\x8f\x8a\x68\xe8\x08\x27\x06\x98\x3c\x20\x10\xfd\x5f\xaf\xd3\x77\xd8\xc6\x0e\xd9\x50\x31\x2c\x63\xd0\xe5\xf4\x16\x7d\x01\xab\x25\x2c\xa7\xd5\x51\xd6\x2f\x4d\xa2\xd9\x59\x1d\x55\x25\x33\x2f\x1e\x17\xc9\x85\x93\x52\x6c\xd7\x87\x85\xba\x0b\x69\x2f\x69\x8d\xf8\x0e\xde\x13\x65\xe5\xe3\x1f\xe3\x34\xfa\x17\x4b\x1f\x17\xfc\x15\xbe\x09\xab\xbc\x32\x94\xaf\x3a\x2f\x54\x56\xf4\x1b\x80\x65\x69\x00\x96\x85\x61\xd4\x87\x0f\xb3\x73\x6a\x61\x82\xf4\xf5\xb6\x35\x70\x38\x50\x5d\xc7\x5e\x5a\x5c\x1a\xcb\xa7\xb4\x86\x53\xb7\x47\x33\x33\xf4\x3b\x0e\x9b\x21\xe8\x5b\x65\xaf\x7a\xa4\xe2\xf7\x88\x7e\xea\x5b\xc0\x6a\xb8\x3e\x20\x97\xd2\xbb\xd2\xd7\x10\xf7\x12\xa0\x4f\x08\xd1\xde\x25\x6c\x00\xce\xc2\xa5\xfe\x86\x48\x07\x43\x3c\x15\x78\x66\x87\x37\x20\x08\x70\xcd\x8e\x96\xde\x96\xac\x04\x92\xd8\x23\xf0\xce\xc9\xbd\x8b\x04\x0d\x80\xfd\x3e\x0f\x80\x2c\x1c\xd3\x6a\x9d\x2c\x3b\x84\x99\x31\xe2\xb0\xa7\x95\x7a\xe5\xa3\x07\xf9\x95\xb7\x2e\x52\x0a\x14\x8e\xca\x4a\x20\xf0\x6f\xa3\x08\x64\x2d\xec\x94\x74\x15\xaa\xed\xbb\x16\xed\x29\xca\x7b\x9d\x8e\xce\x66\xd2\x78\x76\xc4\x4b\x33\x33\x2a\x20\x8d\xb4\x4a\x6f\x27\xa1\xc5\x50\xe5\x67\x87\x64\xe4\xd0\x3f\x64\xe5\x05\x29\xc1\x2d\xa0\x15\xe2\x9b\xfa\x83\x92\xf4\x04\xfc\x6a\xa0\x63\xc4\xdb\xdc\xa0\xb4\x08\x4a\x88\x27\x44\x62\xf1\x9c\x28\x95\xaa\xde\x5c\xc4\xd4\x90\x38\x96\xe7\xf0\xd6\x7c\x33\x8c\x07\x5d\xe7\x45\xd4\xf1\x4f\x66\xeb\x30\x62\xaf\x06\x31\x6e\xd3\x53\xb5\xef\xfd\xd8\x3f\x9e\xfa\xd8\x63\x93\x94\x8d\x80\x70\xa0\xf6\x03\x4f\xe2\x86\xec\xd5\xf9\xb2\x4c\x0b\x6b\x95\x45\x79\x7b\x1b\xfd\x33\x22\xa6\x37\x49\x5e\xac\x93\xe6\x2d\xc5\x69\xc8\xa4\x6d\xf3\xf5\xcb\x7b\x85\xe4\x93\x83\x04\x07\xb6\x0a\xd3\x24\xd7\x09\x53\xbf\xb9\x3c\xb6\x03\xa6\x63\xe2\x89\x45\xcf\x88\xb1\x1a\x99\x0e\x7b\x59\x9e\xc2\xba\x3a\x1c\xf3\xa4\xaf\xd2\xd8\x1f\xe8\xf6\x9e\x79\x26\xb6\xd5\x24\x20\x50\xd1\xd7\x61\x2b\xde\xb4\x64\x78\xa7\xeb\xc3\x00\xe9\x1d\x45\xa0\x4a\x9c\x68\x88\xd3\x6b\x42\x51\xbe\x36\x8c\xa3\x50\x1f\xee\x9a\x00\x30\x93\xb4\xd5\xf0\xdf\x98\x63\x80\x42\x37\x9b\x02\x1a\x88\xf8\xc7\x6b\x79\x3b\xe5\x91\x31\x90\x6f\xf8\xd1\x7c\xed\xac\x00\x91\xc8\x8f\x78\x69\xfe\x7a\x20\xf0\xe0\x5b\xea\x66\x83\x1c\xa1\xaf\x2b\x13\x2d\xb9\xa5\xe9\xa4\x42\x57\xb9\xa5\x99\x74\xcb\x24\xa2\xfb\x27\xf6\xee\xef\xeb\x3d\x7a\x49\xf6\x1e\xbd\xe4\x7c\xb9\x66\x4a\x3c\xdb\x9a\x8e\x1e\x44\x60\x0d\x41\x97\x9d\x63\xe0\x7d\xe3\x5f\x2e\x45\x51\xb3\x2a\x38\xb1\xb2\x34\x8e\x75\x06\x44\x20\x6c\xe4\x2b\xa5\xb7\xb7\xaf\x0c\xcb\x60\x36\xa3\x1c\x58\x52\x76\x11\x36\xa0\x36\x36\x56\x44\x3e\xaa\x91\xa5\xc9\xe1\x8a\x1c\x3d\x23\x51\x06\xe7\x06\xd9\x28\xf6\xd4\x72\x23\x64\x08\x01\x20\xb7\x18\x1f\xc3\xd7\x22\x20\x9e\x8f\x66\x80\x43\x40\x08\xc9\x50\x07\xbe\x09\x76\x49\xd6\x1c\x5a\x1a\x84\x9d\xd7\x24\x35\xdb\xc5\x40\xf4\xdb\x5f\x13\x78\xac\x8b\x02\x10\x30\x17\x85\x8e\xc4\x5c\x7a\xf7\xd6\x6f\xbf\x57\x2c\x62\x83\x41\x95\x88\x38\x8e\x07\xa2\x7e\x75\xdc\x01\x65\x9b\x51\x4e\x2c\xa8\x14\xfe\x21\xa0\x3a\x0d\x21\x82\xdb\x72\x07\x1f\xe3\xc1\x06\x02\x32\x8e\xbc\x35\x7f\x42\x64\x7b\xf3\x5e\x23\x2f\x54\x52\x44\x2a\xde\x26\x5a\xe6\x48\x67\x3e\x6e\x79\xd9\x04\x93\xd1\x2a\x7d\x0f\x53\x34\x48\x26\xc5\x23\xa5\xe8\x13\x3e\x22\xb2\x3a\x79\x5b\xcd\x62\x05\x90\x3d\xfb\x3c\xad\x00\x5f\x97\x7d\x7d\x69\x71\x14\xaa\x46\xbc\x30\x62\xbc\x05\x9b\x77\x30\x87\x02\x00\xf5\x4a\xdd\x8f\xfc\x39\x70\x51\x64\xd4\x8e\x8a\xd6\xfc\x5c\x25\xcd\xf9\x08\x8d\xc6\x9e\xb8\x01\x7a\x8d\xaf\x45\x6e\x38\x34\xbe\x62\x53\x15\x0c\x00\xb7\xf4\x5b\x64\xcf\x2c\x2f\xd7\x30\x86\x46\x6a\xe5\xa7\x65\xef\x0b\xb1\xf9\x66\x73\x5b\xfe\xf4\xd8\x74\xed\xc0\xd8\x53\xa3\xde\xe4\xbe\x09\xe1\x81\xf1\x7f\x99\x16\x04\x46\xf2\x55\xc1\x67\x79\x43\xce\x56\xb8\x14\xf8\x38\x2a\x6c\xab\x2c\xe2\x9e\x39\x97\x45\x79\x0b\xeb\xcf\x37\x82\x72\xb8\xab\xc2\x59\xd5\xe2\x6e\x6a\xe8\x7c\x36\xe5\x70\x71\x5e\x93\xe4\x85\x03\xf8\xd1\xfd\x4f\xd6\x66\xb4\xca\xe8\xc3\x00\x50\x6c\x04\x32\xf5\xe6\x53\x81\x83\x51\xe8\xde\xc9\x5a\xa6\x67\xa2\x44\xf3\x09\xe0\x44\x50\xe0\x6b\x10\x24\x89\xbe\xac\x9d\xe8\x2c\x2f\x88\x6a\xc7\xf1\x82\x3e\x17\x88\x1a\xd2\x73\x43\x2c\xfe\x54\x0d\xaa\xbb\xaf\x0d\x1e\x9a\xc2\xa6\x01\x7c\xd3\xd1\xec\x2c\xde\x44\x36\xad\x31\xec\x40\x32\x28\x1d\x11\xdd\xa8\x99\x2a\x8a\x98\x1b\xd8\xf6\xb9\xae\xe1\x8a\x68\x27\x96\xec\x80\x11\x88\xa6\x27\x26\x3c\xc7\x8b\x4b\xcb\x5e\x28\x45\xd4\x7b\x64\x40\xae\xf6\x3f\x59\x8b\x7b\x49\xd8\x16\x83\x88\x40\x1e\xcf\xd7\xf5\xfb\x1c\x14\x48\x67\x45\xd4\xc1\xe6\xa3\x20\x73\x55\x74\x6f\x5f\x35\x67\x4a\x8a\xdf\xde\xc9\xda\x9e\xf1\x87\x08\x86\x63\x71\x26\xde\x75\x3c\x22\x12\x71\x2f\x07\x82\x8e\xe7\x0a\x44\x14\x8e\xeb\x3a\x4e\x3a\x6e\x4e\xb0\xb3\x8a\x3d\xb9\x8e\xb5\x46\xfa\x8f\x7b\xb2\x2c\xd1\xb7\x09\xbb\xd9\xd2\xc9\x46\xf0\x2d\x75\xdf\x1e\xf4\x45\x6e\xdc\x82\x1e\xfd\x35\x9c\x23\x66\xf6\x47\x1d\x88\x07\xbe\x04\xde\xb8\x82\x6b\x1f\xf9\xed\x3b\x84\x1b\xb2\x65\x06\xf2\x5d\xb9\xd7\xac\x14\x54\xd3\x97\x07\xac\xc5\xf4\x58\x2d\x0f\xd3\xb4\xcb\x21\x2a\x13\xae\x43\x08\x2c\xfb\xfa\x7d\xb2\xde\xa8\xa2\x64\x44\xe4\xcb\xd1\x14\x80\x75\xbb\x20\x4e\xc4\xa9\xb2\x0f\x51\x2e\x9a\xec\xa2\x02\x3c\x5c\x08\x5e\xd1\xff\x0d\xfd\xca\x2c\xd0\x7c\x13\xf4\x05\x16\x7b\xdd\xa8\x85\x61\x6e\x47\x23\x56\xc9\x6c\x55\x10\xaa\x01\xe9\x04\xc7\x01\x6a\x1b\x7a\xe5\xc6\x30\x2c\x87\x3e\xfc\xc9\x5e\x64\x9e\xab\xe2\x61\xc6\xb0\x13\x7c\xed\xbc\x3e\xd5\x49\x74\x5e\x2c\x54\xc5\xdf\xd1\x3b\xf7\xd1\x44\x59\x02\xc5\x21\x01\xe1\x7c\x54\x84\x60\x4c\x1b\x06\xe1\xde\xfc\x01\xcc\x99\xb2\x55\x6a\x6e\x10\x0c\x7c\xc3\xc1\x39\xe1\x25\xcc\xa8\x8c\x1b\x99\x61\x51\xfe\x00\xeb\xcf\x37\xb2\x67\x26\xcd\x74\xae\x35\xf6\xd0\x4e\xaf\x30\x9f\x43\xf2\xe4\x8c\x44\xbd\x5d\x94\xdc\xcc\x27\x87\xf1\xfe\x53\x43\x83\x75\xe6\xf1\x77\x7f\x8c\x55\xe0\x9b\xbe\x30\xb0\xd0\xd9\x77\x91\x34\x5a\x06\xa0\xad\x1f\xe4\x3d\x3a\x23\xfb\xd4\x31\x18\xca\x99\x53\x13\x94\xd9\xd9\x1c\x38\x71\x90\xec\xb7\x03\x51\xb6\x64\x55\x8e\x98\x70\x47\x9d\x4e\x39\x4e\xc6\x79\x09\xfa\x7c\x45\xd2\x72\xe1\x55\xe1\xd5\xfd\x47\x02\xfc\x42\xf4\x8e\x89\xb6\xb2\x91\x3a\xce\x25\x7f\x97\xa0\x26\x95\xb4\x55\x5c\x82\x82\xef\x71\x05\xa1\xa3\x1d\x89\x63\x0e\x3f\x0c\x1c\xe8\xb0\x50\x99\x7d\x07\xa0\x74\x41\x27\x62\x9d\xf4\x5b\x94\xe0\xb7\x03\xca\x48\x8f\x20\x65\x7d\x65\xa0\xf2\x61\x62\xf0\x2e\x53\x85\x23\x3a\x7b\x9b\xd4\x18\x5f\x0f\xc4\xec\xb4\x61\x2a\x2b\xaa\xbe\xb5\x6e\x0b\xba\x23\x61\xd2\x2e\x8b\xe2\xd7\x92\x38\xf6\x2d\x52\xe7\x15\x51\x05\x65\x0d\x61\xc9\xd3\x37\x93\xb4\x12\x24\x24\x69\xea\xac\x95\xa5\x3d\x26\x5a\xb6\xc3\x29\xcd\xda\xda\xa1\x95\x22\x94\xcc\x74\x82\x11\x6c\x88\x02\x5f\x26\xdd\xcc\xd7\x02\x4b\x75\x48\xb5\x7a\x2a\xdb\x26\x48\x61\x96\x44\x02\x80\x33\xa3\x16\x38\xef\x3b\x87\x6e\x04\x9e\x32\xf9\x0d\xd9\x6e\x71\x7c\x18\x0a\x47\x27\x4d\x87\x80\x71\x93\x69\x1c\xc7\xcb\x09\x61\xac\x9b\xba\x93\x26\x28\xe5\x8e\x98\x6d\xb3\x98\x3c\x8f\xcf\x44\xbf\xbb\x9d\x82\x24\x47\x22\x0d\x0f\xda\x1c\x3c\x4a\x30\x9f\xb9\xf8\xeb\xb9\x81\xcf\xec\x7f\xd2\xb8\x41\x49\xa2\x63\xb2\x97\x28\x99\x42\x29\xf3\x75\x69\xf3\xdb\x79\x57\x87\x91\x8a\xa3\x67\x74\x93\x12\x6b\x1b\xd5\xba\x9c\x61\xc9\x9c\x36\x00\x0a\xdf\x21\xf5\x07\x15\xcf\x89\x4e\x4b\xf9\xe7\x0b\x60\x87\xd2\x70\x56\x02\xb9\xae\x0a\x20\xd7\xd5\x61\x54\x3d\xf3\xed\x28\xf3\x5d\xbc\x8c\xa1\xa7\x67\xb5\x78\x7a\x9b\x7a\xeb\x68\xd5\x32\x21\xa2\x9b\x03\xb6\x2a\xd8\x62\xfe\x09\xec\x04\xb2\x70\x48\xed\x00\x3c\xbb\xa5\x0f\x83\x5f\x44\x33\x51\x48\xf0\x10\x9c\x10\x04\x00\x2f\x8a\x60\xe0\xc5\xc0\xf2\x14\x3f\x92\xef\x26\x95\xc1\x70\x70\x01\xbc\x3d\x4b\x7b\x69\xb3\xbc\xa2\xc7\x73\x94\xea\x25\x76\x8e\x42\x3f\xf0\x4c\x52\xfe\x56\x1e\x79\xc4\x72\x7a\x95\x1c\xdc\x19\xc5\x61\x35\x5a\xc5\x0d\x5d\xb8\x03\xc5\x09\x0f\xe2\x0e\xde\xd1\x22\x9f\x04\x9a\xe8\xfd\x75\x72\xcb\xe1\x02\x7c\x80\x52\xfa\xc8\xcc\xbf\x22\x4e\x6c\xa7\x57\xf4\x54\x3c\x42\x9b\x83\x82\xe4\xdb\xf8\x76\xbe\x81\xea\xb3\x12\x22\x86\x7a\x9e\x1a\xf0\x10\xa6\xa6\xa7\x6a\xc6\x64\x14\x28\x74\x38\x2a\xd9\x03\x63\x6c\xf6\x2e\x43\x3e\xec\x1c\x21\xa9\xf0\xf3\xe8\xf0\x0e\xdf\x39\xc5\x65\x7d\x57\xe7\x9a\xf6\x8c\x90\xbe\x69\x05\xd5\x56\x41\xc7\x30\xee\x73\xfc\xe6\x6d\x90\xfe\x38\x22\x0a\x89\xef\x0a\xb0\x56\x53\xe7\x51\x0b\x8d\x64\xb6\x9d\xc2\x1c\x4b\xd7\x66\x31\xe9\x41\x28\xa4\x59\x61\xa5\xce\x42\xf4\xe1\x60\x5e\xef\xb3\xfc\xb6\xde\x35\x9b\xe8\x79\x34\x68\x4b\x26\x2e\x4b\x73\x28\x74\x28\x7c\x55\x54\xaa\x78\x40\x12\x58\x8b\x1e\x1e\x20\x41\x27\xb2\x5c\x2a\xd9\x48\xfb\x79\x41\xda\xcf\x0b\x0e\xb4\x96\xcf\x6b\x5d\xb4\xb5\xd1\xde\x7d\x1e\xbe\xcf\x58\xdc\x14\xc0\xa2\x53\x82\x53\x35\x2f\xd2\x6e\x57\x37\x77\xc0\x90\x31\xc9\x29\xfb\xae\xb0\x2c\xc7\x83\xca\x63\x9f\xe0\xd7\xe7\x01\x09\x0e\xf3\x38\xe5\x48\xf1\x2e\x0a\xf6\x70\x9e\x90\xc9\x7f\x15\x08\x46\x93\xe3\x92\xca\xeb\xb1\x69\x91\x84\x60\x97\x90\x6f\x06\x22\xac\xf1\xfd\xb5\xb6\x4a\x5a\x9c\xae\x71\xc8\x4c\xf3\x11\xbe\x19\xa6\x52\xd2\xd9\x58\xb5\xd3\x8e\x12\x41\x00\x37\x17\xf1\xcd\x80\x11\x3c\x30\x66\xfe\xbf\x68\x8f\x7a\x23\x8f\x55\xc4\xc6\xbe\x50\x7a\x97\xec\x5d\xc8\x85\x54\x04\x78\xfd\x91\xfa\x2e\x4f\x91\xd8\x08\x47\xfa\x60\x04\x7e\x2d\x6c\xad\x9f\xef\xb0\x66\x36\x93\xe8\x23\xd3\x86\x8a\x55\x12\x6a\xb4\xb1\x22\x0c\x43\xd9\xc5\xd2\x67\x78\x3e\xdf\x8b\x42\xd6\x43\x45\xa8\x0e\x87\xe6\xda\xb8\x2a\x19\x0e\x75\xaf\x48\x93\x28\x14\x04\x51\x57\xe8\x3b\xf9\x5a\xf6\x91\xa9\x5e\x61\x71\x6e\x7d\x83\x3e\xa6\x6d\x53\xed\xbf\x93\x1d\x0f\x17\xfb\xaa\x34\xdd\x5e\x71\x8f\x3f\xc8\xf7\x51\xee\x8e\xc7\xdd\xd1\xcf\xc1\xcb\xd8\xb9\x48\x21\x0c\x4f\x80\x26\x5b\x0c\x1f\xee\x18\x1d\x4f\xcb\x0c\x43\xe7\x0b\x4b\xbf\x0a\xa5\xc4\x13\x52\x83\xfe\xb2\x87\x39\xb9\x90\xff\xff\x06\x83\xef\x00\xe6\x0e\xe6\xba\x06\x97\xca\xa2\x8a\x87\xa0\x1a\x1b\x99\xf6\x74\x9f\x6e\x36\xec\x64\x3f\x2a\x19\x8a\xe3\xa8\x88\x5f\xb4\xca\xf5\x76\xaf\xc0\x01\xc0\xb1\xbd\x20\xfe\x30\x72\x0c\x86\x94\xc0\x25\xc8\x91\x6b\x85\x99\x1e\xe3\x63\xba\x85\xa8\x9a\xf9\x9b\x16\x3d\x7a\x3b\x51\x59\x98\x16\x51\x98\xcb\x69\xbc\x74\xbc\xed\x64\x5e\x1f\xcb\xb7\x7b\xf0\xaf\x2c\xd9\xb4\x6f\x03\x5a\xee\xd3\xc5\x3a\x6b\x8d\xfa\x36\x8d\x2f\xb3\x02\xb0\xf4\xdb\xe6\x99\x2c\xc1\x63\xc5\xf5\xc9\xf1\x20\x4d\xcb\x6a\x39\x38\x90\x7b\x5c\xc2\x9a\x6c\x13\x73\x5f\x77\xb3\x97\xd7\xae\x5a\xd0\x19\x77\x1a\x5b\x82\x3c\x9f\x02\x3b\x2b\xea\xbe\x79\x57\x85\x7a\x3b\x2d\xa0\xdd\x59\x31\x61\xed\x5d\x51\x39\x63\x35\xee\x04\xc8\x7c\x37\x4f\xcc\x2e\xfd\x5e\xbe\x40\x2a\x75\x63\xd5\x35\x6f\xc5\xa9\x2a\xda\x79\xda\x41\x86\x05\x5f\xfb\x45\xda\x7c\xbe\xf6\x05\xcb\x34\xcd\xf5\x5d\x82\x74\x6f\xa3\x14\xf5\xfe\x33\x94\x9f\xc6\x89\x16\x93\x82\x56\x76\xd7\xc5\x20\xcc\xbe\x56\xda\x23\x64\xf6\x2c\x9f\x83\x47\x49\xa0\x39\x0f\x46\x7d\x5d\x46\xff\x83\xd5\x9d\x47\x6b\xaa\xa1\x8b\xc2\xf9\x51\x76\x1e\x7b\xc5\x75\xe8\x2d\x09\x0f\x55\x85\x61\xda\xe9\x2a\x40\x03\x7d\xea\x06\xc8\x60\x0b\x45\xf1\x92\x77\x48\x85\x69\x23\xcd\x67\x23\x91\xc6\x3e\x27\xeb\xbe\x83\x67\xe9\xd1\x1a\x8d\x18\x70\x67\x09\xce\xce\xba\x20\xf2\x47\x04\x6e\x07\x96\x6c\x56\xfc\x13\x13\xb5\xbc\x9d\xce\x57\x05\x41\x09\xb7\x03\xd9\xe4\x68\xc5\xb1\x95\xac\x0c\x98\x8d\xe9\x31\xe3\x2c\x26\x55\x3f\xed\x72\xb4\x2e\x47\xc7\x79\x1f\x7e\x5d\xe8\xce\x76\xaf\xd3\x2d\x30\x0e\xc2\xcd\x57\xd9\xeb\x66\xad\x08\xdd\x1c\xb6\xb3\x85\x3c\xd6\x19\x6a\xd6\x28\xdd\x5e\x16\x7c\x39\x97\x87\x13\xc7\xc4\x3a\x2c\xb2\x28\x64\x0e\x43\xc6\x87\x89\xce\xa3\x6f\x89\x25\xd7\x61\x9a\xa4\x1d\x3a\xec\x13\x13\x1b\xc4\x40\xb1\xb1\x3e\x34\xdd\x6a\x82\x92\x11\x12\x78\x3b\xd6\xd0\x88\x9f\xa3\xb8\xf3\xe7\x05\xdc\x9a\xb6\xe9\x63\x28\xf1\x93\x6e\x45\x89\x6f\xd8\x84\x0a\xda\x10\x90\xd8\x8d\xf2\xa1\x21\xa4\xaa\x76\xe8\xd5\xb0\x49\xa4\x2e\x49\x92\xe4\xf3\x74\xd0\xcd\x39\x41\x02\xe8\xe5\x40\xe0\xb3\x5f\x1e\x90\x80\xa9\x27\xf7\xd5\x54\x94\x55\x36\xa7\x55\x6c\x2a\x66\xc8\xd4\x8c\x6e\x8a\xe1\x13\xee\xaf\x6e\x07\x12\x8b\x4d\x02\x6b\x31\xe5\xae\xbd\xf8\x30\xcd\xb0\xe5\x27\xb3\x75\x73\x31\x7f\xd2\xa3\xa3\x12\xa5\xc2\x6e\xc5\x9b\x93\xd3\xf2\x1b\x4f\x07\x9b\x32\x8b\x7b\xf6\xd4\x26\x26\xde\x23\x62\xd2\xeb\xd0\xfe\x48\xee\x5e\xa2\x14\x00\xd0\x8b\x28\xa0\xc1\xaa\xed\x40\x3d\x16\xda\x63\x15\xe5\x47\x58\x79\x34\x8c\xa3\x0c\x53\x85\xe9\x84\xd7\x7a\x1e\x10\x33\xd4\xae\x2f\x04\x62\xcc\xf2\x09\x68\x48\x3b\x0d\x86\xde\xd0\xf2\xb7\x57\x1c\x87\xd3\xf1\xc0\x08\x8c\xf5\x8c\x28\xb3\xc2\xdf\x85\x03\x07\x6b\xf0\x3a\xe5\xe4\x70\x5c\xed\x60\x62\x3c\xfe\xbb\xb0\xbd\x38\x5b\xb7\xc5\x50\xce\x0a\x2a\x3f\x24\x96\xdf\xff\x50\xdd\x83\xe7\x2e\x8b\x14\x72\x5e\xf4\x9a\x3a\x29\xf2\x6d\x9e\xfc\xf7\xb4\x28\x5f\x9c\xc4\x2b\x58\x74\xa0\xe8\x47\xdd\x5e\x17\xb0\xc1\x40\x80\xc2\x57\xcb\xf7\xf5\xef\xc4\xc4\x84\x05\xd0\x3c\x0c\x77\xd7\xcf\x83\x1c\x73\x83\x00\x2b\x1f\x3d\xe8\x59\xca\xdc\xf1\xbc\x41\x1e\x3d\x12\xdf\x57\x03\xf2\x7b\x5d\x16\xcc\x57\xef\xb7\xd6\x05\xf9\xe3\xbb\x48\xe2\xd8\xf1\xd9\xb4\x9e\xb6\xe4\x54\xf5\x33\xfd\x8e\x52\x02\x18\x7a\xfe\x2f\x02\xb1\xd0\x37\xc5\x90\xc0\x2a\x3a\x6b\x6d\x0d\x9c\xde\x1e\x51\xed\x57\xc5\x04\xf4\x65\x36\xdb\x8c\x89\x28\x05\xfe\x72\x6b\xbd\x72\x70\xca\xc3\x7b\x3d\xe7\xd1\xea\x77\xe4\x4a\xcc\xd2\xa6\x4e\x29\x99\x89\xb0\x90\xd7\x16\x80\x9b\x53\x92\xc1\x67\x59\x8c\x25\x75\x45\xcb\x34\x1b\x11\x94\x90\xc8\x4c\xa2\xd7\xfe\x65\x5a\x57\x47\x22\x66\xbe\xd4\x4e\xfd\xb3\x27\xac\xc8\x7a\xc9\x2c\x2c\x92\xc5\x38\x57\xfc\x44\xb7\x01\x23\x43\xbd\x51\x94\xbc\x12\xd3\xa2\x2f\x09\xf2\xcd\x4b\x2e\x77\xd0\x56\x8d\xc8\x62\x91\xa0\x1b\x91\xbd\xe1\x6b\x51\xa7\xc8\x0b\x15\xce\xf6\x70\xce\x1d\xb4\xce\xaf\xc0\xc5\x01\xa8\x8c\x71\x1b\x75\xd1\x9e\x49\x33\x26\x64\x81\x1b\xf0\x5b\xf8\x14\xdf\x88\x64\x6b\x37\x4b\x3b\x29\x73\x46\xe2\x34\x9e\x87\x5c\xf3\x8d\x0b\x2f\x67\xe2\x74\x7e\x87\xef\x1a\x5b\xf6\xfd\xb6\xff\xeb\xee\xba\xe0\x9d\xe2\x0e\x32\x68\x76\xf0\xa8\x5a\xb6\x54\x3f\x77\xf7\x62\x1f\x81\x4b\xe9\x69\x9a\x5f\xf3\xe0\x45\x55\x14\x3a\x4b\x36\x91\x26\x4b\x9c\xa8\x7f\x89\x46\x1a\xe7\x8c\x09\x70\x13\xd2\xc5\xfe\xde\x14\xc3\xfc\x2e\x0e\xd4\xbe\xc6\xf7\xd7\xe6\x54\xdc\x73\xc4\x96\x4c\xaf\x20\x5a\x3a\xbf\x28\x36\x24\x8b\x5a\x3d\xdd\xcb\xaa\xe6\x84\xe2\x1d\x6f\x08\x52\xa5\x37\x4b\xc1\x92\xef\x75\x75\x43\x67\xba\x10\xcd\x9b\xcf\x93\x54\xf0\x75\xff\xdc\x82\xa8\xf9\x7e\xa8\x05\xd8\xcf\x0a\x71\xea\x59\xc2\x13\xa3\x1a\x11\x75\x5f\x11\x8b\x79\x0c\xaa\xc0\xe1\x88\xa6\xc7\x2c\xd7\x1d\x1a\x33\xa1\xb0\x5f\xc4\xe1\x77\xfc\x18\x66\xa9\x20\x44\xdc\x2d\x0e\x84\xf5\x15\xd8\x05\x4b\x77\x26\xf9\xc9\xaf\x42\x97\xf0\x37\x40\xb5\xc3\xff\xd9\x4a\x4d\xe9\x28\x3b\x9f\x12\xd3\xf4\xb7\x51\xee\x07\x41\xc5\x97\x68\xba\x19\x54\x76\xa5\x5e\xf9\xf8\xc7\x38\x9a\xe5\xdc\x1d\x80\x11\xdb\xd1\x8e\x8d\xc8\xeb\x1c\x0c\x0e\x6e\x36\x44\x23\xf4\xf3\xb2\x02\xf0\x65\xa8\x2b\xb8\x71\x97\x44\xd2\x67\x05\x96\xc0\x4e\xca\xbd\xcf\x95\xaf\x9b\x51\xe8\xba\xce\xe1\xce\x5e\x17\xe3\x6c\x6f\xcb\x49\x1a\x6f\x0e\x9c\x72\x13\x50\x00\xb9\x44\xfb\x69\x13\x93\x62\xaa\xb3\xa0\xaa\xc8\xbb\x2a\x0b\xf3\x82\x33\x7c\xe6\xf7\x70\x46\xce\xcb\x91\x87\xe7\x1d\x4c\xb1\x47\x8c\xaf\xa1\x83\x1e\xc1\x02\xa0\x8e\xcf\xd7\xc3\xb4\x4e\xda\xc8\xc3\x5e\x86\x0e\x77\xd8\x73\x9c\x13\x4b\x1f\x6e\x04\xc2\xa2\x6b\x86\xf8\xa6\x6d\x1d\x83\x45\x1c\x52\xfb\x6a\x20\xe6\x19\x72\xda\x89\x1b\x54\xe8\x5b\x61\x8d\xaf\x49\x16\xc8\xa3\x81\x57\x6c\x49\x33\x26\xc8\xc3\x06\xb0\xee\xb6\xa0\x0a\x11\xc5\x13\x2d\x8b\x7c\x28\xbb\x21\xb6\xec\x2a\x79\x25\x34\x8d\x33\x37\x0b\x0b\xb6\x83\xd7\xc5\x88\xc2\xd7\x45\x0a\x67\x2e\x4a\x30\xc1\x0d\x66\x9e\xfd\x20\xbe\x19\x70\xc6\x9f\x7e\xba\x16\x2b\x8e\xaa\x90\x78\xc7\xa8\x0d\xbe\x1e\x06\x54\x63\xfa\xf6\xbe\xd9\xcf\x82\x6c\x01\x2c\xce\xd6\x8a\x0f\x99\x86\xd5\x56\x71\x5c\xf1\x26\xec\x22\xf9\x2e\x7c\x2d\x92\x1c\x59\xaa\x9a\x0d\xea\xc3\xae\x8a\x51\xc6\xc7\x85\xfb\x71\x41\xf2\x7c\xac\x0a\x10\x59\x37\x56\x79\x11\x85\x55\x8f\x86\x7c\xad\x14\xc5\x52\x66\x90\xb7\x9c\x0f\x82\x05\x43\x75\xc1\x8d\x70\x60\xac\x6f\xd4\x0a\xb2\x3a\xb7\x05\x7e\xed\x82\x00\xa2\xcc\x68\x9a\x6f\x88\xfa\x83\xc3\x34\x9d\x95\xe7\xd8\xcf\xa7\x6c\xc4\x51\x32\x1b\x31\xc6\x94\x1d\x36\x38\x28\xf0\x56\x4e\x0b\x8a\xcb\x0b\x7d\x48\x91\x61\x14\x2e\x54\xab\xe1\x01\x3c\x9c\x18\x0d\x44\x2e\x72\x18\x9d\x3d\xa1\x69\xd3\x99\x19\x3c\xab\x6d\xc1\x92\xfd\x58\x03\x49\xbb\x47\x8d\x03\xd1\xea\xe5\xac\x25\x2c\x23\xd8\x52\x29\x48\x82\x5f\x11\x28\x9d\x2b\xc1\x66\x92\xc4\x3d\x7b\x6a\xc5\x87\x2b\x5e\x17\x71\xc2\x8f\x6f\x04\x93\x79\x92\x66\x44\x5a\x29\x2a\xf8\xef\xd2\x2a\xf0\x75\x20\x91\x50\xdc\x61\xc7\xd9\xbe\x5f\x2c\x45\x45\xef\x17\x87\x34\x74\xd5\x12\x87\xae\x79\x8a\xad\x36\xd3\xc2\xf3\xcd\x30\xbc\x57\x57\xc5\xda\x04\xcb\x96\x0d\x09\x9e\xd3\xb3\x81\xc0\xe7\x3e\x3b\xb4\xbf\x3a\x56\xad\x96\x55\x5c\xb6\x2d\x8b\x16\xcf\xf6\x65\x0d\x4b\x70\x61\x40\x5f\xc5\xb3\x1e\x9c\x13\x75\xa1\x73\xc3\x76\x13\xe9\x73\x13\xed\x1a\xe5\x0e\x03\x08\x93\xc3\xd7\x9e\x6c\x4e\x15\x51\xc8\x6f\xe1\xd8\x29\x7d\xf6\x65\x49\x74\x25\xa4\xdd\x6e\xca\x23\xbd\x5c\x03\x98\x90\x4a\xdf\x04\xd2\x88\xe2\x38\xb2\xbc\x31\xc8\x15\xc2\xfc\xf3\xf5\xe0\xf8\xed\xe9\xa9\x0f\xd6\x3a\x3a\xc9\x8b\xac\xc7\xa1\x36\x83\xd3\x05\x27\xed\x45\xd1\x79\xd1\xd4\x73\x3a\x4e\xbb\x1a\xa4\xc9\x53\x8c\x7f\x01\x6f\xb1\xc5\xc2\xd0\x5b\xd8\x1b\xab\x7a\x73\x4a\x70\x8c\xf8\x5f\xc0\xf4\x02\x5b\x9f\x14\x30\x9b\x9b\x48\x3c\x22\x0c\x18\x1d\xc8\xf9\x13\x75\x04\xc1\x7c\x2b\x3e\xe1\xc3\x30\x5f\xbe\x11\x02\xac\xf3\x50\x75\xcd\x89\xfc\xf8\xc7\xfc\x98\xaf\xc9\x49\x7b\x2d\xd0\x65\x45\xa6\x5c\xdb\x0a\x9c\x3d\x76\xe6\xf9\x46\x64\x30\x1b\xbd\xbc\x7d\x9f\x18\x2b\xb6\x4a\x01\x11\x27\xb1\x02\xa1\x87\x3f\x2b\xa9\x27\x6f\xf6\x55\x0c\x4e\x8b\xec\xf0\x75\xf2\x96\xe0\x2e\xac\xc1\x79\x40\xc5\xe3\x72\xe0\x07\x57\x70\xc1\x80\x89\xf6\x45\x87\xc6\x35\xc9\x89\x70\x8d\xd2\xc1\xb6\x90\x20\x8a\xa5\xe8\x05\xe7\xb1\xae\xa2\x9f\x6d\x3e\x4d\x9a\x3a\x03\xbe\x17\x92\xf7\x2e\x03\x69\xe0\x99\xbc\x09\x0c\x1b\xb6\xa6\x44\x35\x83\xff\x45\x0c\xb2\x66\x9a\x10\xfe\x2b\x67\x6f\x33\x1d\xa6\xbd\x6e\x55\xcc\x4f\x03\x0e\x14\xc6\x15\xdd\xa1\x28\x97\xbe\x3c\x8c\x48\x21\x8b\x5a\x51\x33\x2a\xfe\x9a\x51\xde\xf7\x7a\x6f\x9c\xf8\xb6\xe8\x0f\x99\x86\x92\x24\xd8\x52\x52\x7a\x09\x6e\xa8\x64\x36\xeb\x75\x0b\x1e\x76\x38\x74\x22\xbf\x97\x0a\x15\x75\x74\x73\x1b\x2d\x30\x52\xd4\x3f\x23\xe0\x43\xb7\x02\x3f\x4f\xec\x67\x24\x77\xe5\x11\x7c\x9d\x64\x3e\xb2\x66\xa3\x6f\x7c\x5c\xa4\x77\x7a\xd8\xdb\x49\x92\x22\x08\xe6\x19\xfa\x66\x78\xa6\x57\xb0\xb6\x28\x64\x1e\xeb\xef\xc2\x35\x32\xe4\xaa\xc0\x1e\x38\x1a\x88\xf1\x79\xc0\x35\xd9\x3e\xca\x61\x1d\x83\x6d\xd5\xed\x46\xf1\x42\x45\xce\x89\x27\xe9\xb4\x33\xe3\x3d\xc5\xed\x5c\x14\xea\x1d\x02\xa1\x78\x0e\x5e\x3b\x8f\xbd\x82\x03\x6e\x67\x60\x89\x8c\xfd\x97\xc8\x07\xb1\xce\x9f\x98\x34\xb7\x21\x33\x03\xaf\x8a\xa9\x39\x6f\x3a\xac\xb2\x36\x2a\xad\x28\xd0\x93\x05\xe3\x76\x8a\x4f\x92\x65\x0d\xf5\xa1\xd4\x1b\x82\x86\xa5\xd3\x8b\x8b\xa8\x0b\x4a\x5e\x4b\xef\x24\xbb\x45\x8f\x8a\xa6\x7b\x9a\xd8\xd1\x45\x4b\xf2\x63\x9f\x60\x24\xcf\xc8\xa2\x59\x04\xbe\xae\xfb\x66\x4e\xd5\x2b\xda\x3a\x29\xa2\xd0\x88\x66\x5f\x71\xda\x9c\x14\x3b\x7d\xea\x1e\x81\x0d\xcd\xf5\x2e\xf3\x55\x3c\x3c\x86\x4e\x3b\x43\xa1\x71\xda\xd9\xf1\xa4\x3c\x13\xb3\xa5\x23\x7e\x81\xf5\x7c\x39\x10\x4c\x00\xc7\x03\x11\x46\xae\x50\xdd\xd1\x0d\xa5\x31\x0b\x8b\xb5\x5c\xa3\x73\xe6\x7a\x09\x1d\x3a\x71\xeb\x22\x05\x2d\xf8\xf4\x20\x0f\xdd\xf8\x7e\x34\x30\x19\x8f\x48\x94\x75\x56\xc5\x14\xb6\x75\xd1\xd8\xc9\x23\x00\xf9\x8f\xbe\x43\xfb\x6a\xab\xea\x15\xfd\x25\xc9\x1c\x0f\x47\xdb\xce\x16\x93\x23\x64\x93\x99\xa8\xa9\x93\x22\x5e\x90\xd4\x70\x81\xc7\x0e\xbf\x30\x0c\x21\x1a\x47\x85\xce\x54\x08\x6c\x19\x42\x52\xd4\x96\xb8\xdd\x41\x82\x56\x4e\x8b\xee\xc0\x2c\x4d\x54\xdc\x1c\x91\xa9\xfd\xd2\x47\x12\x6b\x62\x74\xeb\x1a\xa5\xa1\x6c\xfa\x7f\x73\x6a\x63\xef\x24\xe1\x69\xe3\xb4\xe0\xe0\xcb\xd2\xb9\x4a\x6e\xd7\x81\x62\xea\x9e\xf1\x5a\x2b\x4b\xe7\x13\xb8\xef\x10\x36\xd0\xdf\x40\x4a\x31\xd6\x1a\x26\x73\x55\x78\xb9\x9e\x46\x0a\xec\x3e\xd6\x8d\x31\x9f\xb4\xfe\x8d\x8d\xef\xbb\xb1\x56\xcd\x11\xef\xd6\x23\x4b\xed\x6a\xd2\xae\xcf\xe2\x54\x29\xe4\xec\x45\xb1\x44\x61\x5b\x67\xd9\x82\xa0\xfc\x40\xac\xc5\xd7\x03\x99\x76\x23\x45\x91\x6b\xf6\x83\xc5\xba\x20\xc8\x61\xfc\xac\xda\x22\x53\x11\x97\xe3\x5d\xb9\xc1\x51\xa9\x5c\x12\x58\xb1\xbf\x10\x11\x55\x37\x67\xa6\x77\x60\x1b\xaf\x89\x9e\xc6\x33\x32\x0b\x7b\x56\x00\x55\xee\xad\x7b\x25\xb1\x3c\x84\xc2\xbc\xa1\x16\xd8\xf6\x5b\xe7\x4e\x12\x28\xb8\x0e\xd7\xc4\x58\xcb\x3c\xcc\xa2\x2e\x7a\x34\xdc\x3c\x1c\x07\xff\x5b\x97\x8d\x07\x69\x3a\x9b\x6f\xab\x38\xe6\x9f\x6b\xfd\xfa\x7a\xaf\x47\xed\xd0\xeb\xc0\x43\xe4\xa9\x64\x7c\x53\x7a\x1c\xcd\xb5\x3e\xdb\x91\xc6\xe9\x28\xfd\xa1\x6b\xf1\x16\xf3\xe3\x84\x07\x76\x8d\xd4\xbf\x95\x6b\xbc\x22\x54\xcc\xd6\xba\xf7\x02\x42\xa6\x62\x16\xc5\x44\x8f\x84\x3c\x2b\x5e\xa9\xc8\xa2\x6e\x8e\x52\x0e\xbe\xf3\x0b\xa8\x1f\xf2\xcd\x00\x38\x74\xcf\x9e\x9a\x4a\xa2\x8e\x72\x6c\x0f\xf0\x46\x2e\x09\x4c\xd7\x25\x01\xba\x6f\xa8\x38\x4e\x53\x8c\xaa\x73\x69\x81\x13\x42\x61\x9e\x10\xe1\xe1\x7c\x5b\x9b\x40\x6f\xb7\xc7\x8f\x2e\x05\x7e\xa0\xfb\x1a\xa1\x0b\x51\x78\xbd\x22\xb9\x84\x99\x79\x9b\x9d\x27\x28\x24\x54\x0a\x40\xda\xe1\x10\x85\xc6\xd5\x71\x03\xd5\x0f\x8c\x71\xca\x18\x2c\x01\xc8\x46\x1d\x95\x6d\x37\xef\x90\xfa\x16\x54\x57\x4f\x39\xc8\x24\xa9\x52\xfe\xde\x40\xd4\x2c\xb6\xd4\x05\xca\xf9\x9a\x68\xe2\xe8\xf4\xf2\x28\xdc\xee\xb3\x3e\x37\x02\x31\x1d\x77\x19\x5e\x25\xb2\xde\x9f\x16\x1b\xf5\x9b\xf8\x6e\x74\xfe\x30\xf4\x82\xeb\xef\x81\xe8\x7d\x3d\x21\x38\xeb\x55\x98\x41\x59\xf1\x50\x5f\x81\xf8\x3b\x3a\x2c\x1b\x93\xa4\x89\x26\x27\x9e\x5b\xc5\x44\xfd\x0c\xdd\x8e\x58\x0b\x04\x04\xc0\x82\x0d\x26\x2d\x0e\x8c\x3d\x5e\xcb\x74\x27\x0a\x73\x6e\x0d\x45\x36\xe7\xf7\x4a\x01\xa9\x5d\xee\xa7\xc4\x7e\x40\x8c\x7d\x2c\x74\x36\x17\xe9\x79\xb4\xde\x5b\x50\x2f\xbd\xb9\x9d\xe5\x24\x86\xa4\x9d\xc3\x32\xf0\xbf\x08\x9d\xd6\x51\x59\x2b\xe2\xb4\x17\x7e\x7f\x4d\xcc\xef\x5d\xf3\x3e\x6c\xaf\x61\xfb\x23\x50\x71\x81\x45\xe0\x6b\x31\x33\xa2\xa5\x13\x4d\x88\x83\x3e\x75\x26\xf0\x6e\xcb\x62\x0e\x70\x23\x6d\xc2\x50\xd9\x01\x57\xc2\x14\x4a\xbc\xfc\xef\xf7\x1d\xfa\x59\x1d\x8f\xc8\x41\xcb\xb2\x59\xf0\xa2\x1c\x5f\xc9\x53\x50\x6c\x5d\xc1\x55\xed\xf5\x4c\x91\xce\x69\x4b\x18\xc6\x5d\xf6\xec\x4d\xc1\x0b\x3d\xda\x4f\x18\x36\x24\x7f\xdf\x8c\xf2\x30\x4e\x73\xab\xde\xb1\x10\x2f\xe2\x07\xf9\x26\x90\x3d\x5d\xaa\x39\xaf\x98\x00\xca\x72\x99\x98\x97\x45\x65\xe7\x24\x36\x0e\xc7\xec\x1b\x2e\x5a\xec\xaa\x70\xb6\x1f\xd4\xf5\xb2\x04\x75\xbd\x2c\x93\x4b\x44\x15\xcc\x4d\x3a\x3c\xfa\x00\x5f\x6a\xe7\x20\x0c\x8a\xdf\x64\xad\x93\x36\xec\xf0\x37\x80\xe3\xbe\x20\x50\x73\x5f\x10\x96\x93\x70\x14\x9e\x2c\x12\xf1\x0b\xc3\x60\x03\x3f\xea\x66\x43\x4c\x8f\xda\x55\x17\xa4\x41\x7f\x11\x78\x3b\xf1\x1a\xd6\x16\x39\x28\x31\xb0\xbd\x88\xec\x0c\x22\xf8\xef\x96\x11\xda\xc2\x49\xe8\xf7\x99\x7f\x56\x70\xf9\x74\x33\x3d\xa3\xb3\x4c\x37\x99\xe9\xc6\xc2\xcf\x8c\xde\x43\xb2\x77\xbd\xf4\x5c\xd9\xeb\x12\xdb\x71\x62\x18\x0c\x76\x56\xc7\x71\xda\x6a\x89\xe1\xee\x2f\x4a\x92\xaa\x17\x07\x3c\x9e\x3d\xe3\x35\xd5\x3c\x94\x46\xbe\x0a\xee\x7a\xad\x26\x26\x9c\xf3\x29\xb0\x85\xaa\xa3\x5a\xfa\x2e\xef\x0a\x2f\x23\x62\x80\x58\xf4\x0d\x8f\x03\x51\x33\xde\xf9\xa6\x38\x97\x47\x05\xc1\xf9\xcd\xc0\xa3\xdc\xff\x45\xe0\xd3\x67\xaf\x00\xf1\x6e\xb9\x0c\x48\xc5\x22\x28\x19\xc4\x66\x52\x67\x78\x5b\x75\xb5\x40\x58\x9f\x0d\x3c\xc2\xfa\xac\x40\x84\x75\x54\xa2\x5a\x3a\xcb\xb7\x89\xb6\x49\xb8\x35\x38\x3a\xb7\xfb\x66\x5f\xd1\xbe\xc3\xdf\xfa\x36\x99\x25\xdb\x3d\x2e\x98\x9a\x8f\x3a\x81\xd7\x87\x89\x67\x5e\x50\x60\x71\x03\x1e\xdf\x94\x96\x12\x54\x1d\x56\xa4\x37\x60\xd8\xce\x92\x31\x02\xe0\xeb\x2f\xa5\x91\xbb\x00\x7e\xd2\xfe\x88\xd7\x98\x78\x72\xff\x5d\x07\xe1\xde\x49\xd1\x41\x28\x9c\x8b\x08\x79\x29\x3b\xa0\xcb\x47\xd2\xe7\x45\x80\xa5\x93\x96\x6a\xfd\xb5\x0d\x4d\x3e\x8e\xee\xc6\x76\xf2\x1b\xd6\xea\x06\x0c\x24\xdf\x08\x82\xcb\x34\x6b\xa9\x24\x7a\x86\xd9\x33\x20\x43\x98\xb0\xc9\xd7\x03\x14\xe6\x13\x13\xb5\x46\x34\xbb\x69\x2a\x29\xcf\x5e\xe1\x1b\x89\x8c\x2a\xd2\x58\x4b\xbe\xaa\x73\x92\x33\xe9\x5b\x78\x2c\x0b\x9e\xf5\x8e\x89\x9c\xa9\xe9\x7c\xbd\x15\x71\xb6\x57\x5c\xc0\xda\xd4\x33\x3a\x31\x2e\xaa\x27\x5c\xb1\x8d\x4e\x38\x89\x57\x45\x78\x71\x03\xee\x13\x90\xaf\x9f\x2e\xbd\x65\x39\x2d\x52\xef\x0b\xbd\x56\x9a\xc7\x6a\x2e\x52\x23\x02\x68\x7c\xbd\xf4\x99\x3d\x54\x51\x2c\xd7\x13\xfd\xb2\x1d\x60\xe1\xfb\xad\x15\x26\xac\xfb\xec\x17\xfd\x9c\xcd\x84\x09\x12\x94\x38\x9d\x47\xb5\xd2\x32\x29\x82\xe6\xc9\x52\xa2\x55\xdc\x38\xed\xb5\x01\xd7\x9f\xa8\xe2\x14\x6b\x56\x64\x46\x30\x0a\x9a\xaf\x85\xeb\xd1\x55\x19\x48\x6a\x99\x43\xbd\xec\x23\x54\xf7\x06\x1f\xad\xaf\x91\x4a\x20\xbb\x8e\xa2\x64\xaf\xdd\x86\xa5\x81\xfc\xf6\xe4\x64\x2d\x24\x4c\x1f\x71\x87\xde\x19\x10\x99\xc9\xc9\x5a\xa6\xe2\x18\x19\x20\xe4\xc4\xb6\xd5\x3d\x82\x7a\xdb\xe2\xe6\x7a\xff\xf4\x58\x4d\x85\x61\x2f\x2f\x52\x87\x35\x76\x1a\xd6\xd1\x57\xae\xbb\x74\x54\xa6\xc3\xa8\x6b\x27\xd4\xf6\xf9\x33\x96\xb3\x43\x26\xe0\xb2\x59\x9d\x8d\x92\xea\x70\x43\x1c\xa6\xed\x18\xd2\x77\x4a\x4f\xd6\x0c\xb5\xca\x6c\x38\x81\x07\x3e\xfc\x9b\xd2\x71\x0a\xc5\x39\x32\x4a\xa4\xe4\xaf\x3e\xb0\xe8\x87\x8c\x31\x5f\x99\x8d\xbc\xe9\x61\x24\x8f\x12\x44\xaa\x86\xce\x58\x1b\x53\xc8\x71\x14\xa2\x13\xfb\x3a\xbc\x51\x4b\x8d\xea\x23\xb3\xb1\xbd\x53\x15\x81\x50\x7f\x47\xd4\xf9\xde\x19\x44\x43\xed\xab\xed\x7f\xf2\x6e\xfa\x3d\x06\xbc\xf5\x8d\xb5\x32\x0f\x85\x8f\x5e\x23\x41\x77\xd8\x48\x23\x96\x16\x1b\x29\x48\xba\x56\x36\x8d\xac\x3a\x38\xbe\x7f\x03\x60\x21\xfc\xf1\x56\x2a\x55\xdb\xe8\xce\x83\xdd\x2a\x8b\x3e\x5b\x1c\xeb\x86\xca\x50\x0b\x7d\xca\x81\x75\xcd\x83\xf0\xf5\xd0\x41\xed\x69\xbc\xd0\xe9\x7a\x5f\xd6\xf6\x7a\xf5\xcd\xab\xa5\x45\x81\x02\x5b\x17\xe9\xb4\x99\x34\x6d\xde\x6d\x1e\x45\x00\xd7\x6d\xaa\x0a\x0d\x9f\xd6\x5c\x9b\xf7\x40\x1e\x18\x7c\x4d\xcc\x3b\x89\x05\x70\x20\x72\xb3\x00\x76\x0c\x27\xed\x9d\x55\xc4\x32\xed\x4e\x2f\x67\x07\x74\x0a\x8c\xc7\x92\x13\xa3\x38\xcd\x8b\xfb\xcc\x63\x31\xb1\x37\x30\x53\x38\x99\x3b\x17\x85\xf9\x26\x97\xf3\xf6\xe2\x0f\x10\x87\x87\x03\xc2\xda\x39\xf8\x5f\xba\x1f\x7c\x20\xc8\x4c\x73\xed\x1c\xea\x86\x90\x5b\x4f\x71\x1a\x75\xdb\xa2\xd9\x19\x9b\xde\xf5\xd9\xc5\xff\xf9\xfb\xeb\x04\x10\xb0\x03\xdd\x44\xcd\x03\xae\x02\x72\x39\x0c\x67\xb6\xa3\xa4\xbd\xce\x56\x9d\x46\x34\xa7\x62\x9d\x14\x55\x9f\x4f\xb9\x20\xa6\xc9\x9f\x10\xac\x61\x6b\x43\x5c\x83\xa9\x5a\xde\xd5\xb6\xc8\x06\xff\xe3\x42\x29\xe6\xb0\x61\x7a\x05\x0a\x5c\x6b\x7d\xa0\xee\x19\x9d\xdd\x47\x4f\xc5\x21\x90\x08\x0d\xb9\x69\x0e\x37\xa0\x8c\x44\x8c\x07\x18\x08\x8f\xa0\x15\x8d\xa9\x37\x02\x31\x84\x64\xa3\x94\xae\xe1\x2f\x05\x02\xbf\xfa\x2e\x39\x7e\xee\xe8\x9a\x05\xb2\x01\x98\x3b\xe0\x73\xaf\x20\xde\x85\xb5\xbb\x82\xc5\xc6\x32\x32\x05\x08\x23\xcc\xfb\xf2\x63\x71\xcc\x35\x4d\x37\xe0\xc9\xfc\xaa\x4d\xb3\x6f\x3e\x13\xfb\x9f\xac\xb5\xa3\xa4\xa9\x3b\x51\x81\x16\xe4\x3e\x48\xa1\x4d\x51\x78\x26\x8b\xa6\x6e\x6e\xf7\x20\x32\xf0\x53\xf7\x01\xa1\x65\xf3\x84\x24\x11\xb2\x35\x6d\x7a\x09\x94\x1e\xb6\x43\x7f\x21\xfb\xb7\xbd\xbe\x59\x8d\xef\x19\xaf\x75\x54\x94\xcc\x64\xaa\x63\xb5\xb3\xa5\x19\x10\x4c\x44\x47\xc4\x7c\xa2\x96\x1e\x21\xab\xe3\xbc\x0a\x0f\xa3\x3f\x2e\xd9\x83\x8e\xd3\x86\x59\x77\x63\xd8\xe4\x2a\x63\x70\x1c\xbb\x28\x83\x7d\x02\x81\x6b\xbe\x28\x3c\xcd\xb9\x28\x27\x16\x73\xd1\x93\xb1\x2a\x58\x73\x57\x07\x47\x84\x53\x8b\xd1\x21\x01\xce\x80\x4f\xb8\x24\x49\x4e\x8c\x8d\x77\x39\xe9\x54\x15\xce\x65\x82\x30\x7d\x25\x10\xb9\xf8\xaf\x08\x00\xb4\x4e\x8a\x76\x2f\x8f\x94\x73\x50\x45\xa1\xcf\x8d\x6d\x75\xb6\xaf\x2f\x1e\x00\x7e\xee\xb2\xe8\xfd\xbb\xdc\x07\xa9\x6f\xa6\x05\xb6\x01\xba\xf8\x8c\xb0\x6a\x67\x04\xcb\x46\x37\x56\x0b\xdb\x3c\x86\x19\x90\x13\xdb\xe0\xe2\x17\xfe\x3c\x0f\x82\xf0\x00\xed\x29\x37\xb4\xc8\xc3\x17\xef\x04\x3b\x23\x8a\x9d\x3e\x52\xfb\x1f\xb7\x8b\x3a\xcd\x06\x19\x05\x26\x2f\x12\xa3\x4d\xb6\x63\x88\xa8\x85\xf1\x55\xf6\x8c\xc3\x7b\xff\xd3\xfb\xeb\xde\xc5\xdf\x2e\xc9\xfb\x4e\x0d\x9d\xe4\x4b\x9e\x67\x42\xaa\xc8\x16\x59\xe8\x8b\x99\x24\x47\x04\x93\x2f\x0c\xf4\xa9\x4e\x4c\xd4\xe6\x53\x26\x82\x75\xdd\x25\xae\x17\x65\x59\x4c\xdd\x6f\xeb\x2c\x62\x46\x09\x47\x31\x69\x54\x81\x6d\xef\x1c\xc6\x59\x36\x97\x16\x56\x30\x2d\x06\x44\xf4\xbd\x0d\x42\xd2\xa8\x6a\xac\x0f\x87\xb6\xc3\x13\xeb\xfd\x29\xe1\xfa\x7f\xca\x05\xb7\x69\xd6\xe4\xd9\xb8\xf8\xb6\x5b\x81\xe0\x2a\xbf\x35\xf0\xa2\x7b\x27\x6b\x0b\xba\xa8\x52\xee\x0d\x5e\xcf\xa9\xd2\x4f\xef\xe6\xdc\xe8\x77\xe2\x26\x9b\x7a\x72\x5f\x2d\xca\xf3\x9e\x3d\x03\xc3\x9a\x2a\x37\xe7\xb4\x9e\x18\xaf\x65\x36\x34\x71\x16\x42\x34\xe4\xef\x16\xd3\x12\x7a\x49\x91\x2d\xdc\x6b\xa4\x0a\x8f\x7f\xb9\x14\x93\x28\x03\x61\xeb\xce\x43\xc7\xbb\xd6\x0b\x3f\x9b\xe6\x52\x5f\xd7\xc8\x51\x31\xa1\x65\x43\x74\xcd\x5d\x42\x5c\x8c\x3d\xfb\x7a\x20\x28\xa8\x78\x24\x0a\xf3\xd8\x92\xd2\x81\xc4\xee\xa8\x9b\x37\x80\xaa\xdc\xb6\xb8\x69\x38\x82\xf3\x37\xe2\xa8\xdb\xb5\x6d\x0c\x16\xb6\x4f\xdf\x6e\x71\xfb\xde\x97\x7b\x72\x72\xbc\xea\x0b\xa4\x57\x48\xfd\x20\xb3\xd8\x37\x7b\xea\x25\xf1\xf5\x61\x5b\x75\x3b\x3c\x06\x02\xab\xf2\x76\x20\x0e\xd8\xdb\x7d\x13\x1d\x54\xd4\xc9\x77\xf8\xca\xd0\x51\xb8\x32\x78\x8e\xcb\x78\x28\xe4\x18\xaf\xe2\x95\x71\xfe\x2e\x01\x74\xe7\x46\xc4\x3b\x9c\x22\xe0\x9b\xb0\x6b\x97\x02\xcf\xe6\xfd\x95\x01\xf0\xbe\x91\x92\x74\xc6\xc4\x68\xd1\x9c\x16\x13\x76\x2e\x88\x09\x3b\x17\x86\xb1\x11\x36\x32\x55\x44\x26\x0e\x53\x15\xe1\xcf\x1d\x11\xe4\xb6\x47\xca\x87\x65\x81\x66\x46\xe7\x79\x94\x26\x2a\x26\xc2\x16\xc7\xa5\x20\xd1\x65\xe6\x7b\x90\xde\xdf\x52\x97\x64\xa0\x5b\x16\xfb\xd2\x70\xbe\x59\xae\x9d\x02\x49\x87\x88\x71\x49\x74\x76\xf4\x91\xe4\x5e\x1a\x86\xc4\x9b\x8b\xf2\x9e\x8a\xf3\xef\xdc\xc5\x22\x5d\x98\x22\x8a\x47\x44\x27\x1e\x4a\x69\x80\x25\x9c\x12\x38\xd7\xca\xa2\x9f\x2d\xf1\xd6\x40\xc6\xf8\xc0\x18\xe5\x1c\xab\x22\x07\x8b\xd4\xbf\x20\xf9\x1f\x77\x03\xa2\x37\xaf\xb9\xd1\x9a\x44\x87\x5e\x44\x39\x12\x34\xc0\x64\x7e\x3d\xf0\x23\x83\xbf\x5e\x7a\x3c\xa3\xea\x12\xf1\x0f\x11\x90\xf6\x0f\xe7\x9f\xee\xaf\x31\x23\x79\x02\xf8\xa7\x6b\x23\x76\x2d\x51\x3b\x40\x36\x07\x20\xf6\x7f\x09\xee\x17\x4d\x65\x05\x6d\xe7\x4e\x3a\xdd\x7d\x43\x10\x21\x90\xd7\x03\x4f\x8d\x63\x8b\x2d\xf8\xce\x6a\x5d\x4c\xf4\x44\xe1\x13\xa1\xc8\x65\xb1\x96\x5b\xe1\x22\xdb\x80\x51\xce\x02\xdf\x1c\xc1\x3e\x5a\x53\x79\xde\xeb\x80\x6f\xcb\xc6\xd6\xe6\xc7\x85\xa3\x62\xa7\x02\x6f\x15\x55\xd0\x25\x11\xad\x15\x51\x78\x9f\x8b\x28\xbf\xef\x87\xea\x02\x03\xb2\x7d\x11\x96\xd4\x35\x0c\x1a\x13\x02\x63\x73\x0d\x85\x11\x1b\x55\x9a\x87\x44\xa6\xfd\xd9\xd2\x17\x5f\x6e\xf6\x13\xe2\x9b\x07\x83\x21\xe6\x57\xb4\xbe\x1e\xad\x1d\xa2\x8c\x9b\x81\x48\x38\x2c\x8b\x74\x2a\xb3\x17\xd9\x46\x67\xac\xaa\xed\xe6\xd8\xcc\xc1\x7a\x60\xec\xa9\x5a\x23\x4b\x55\x33\x54\xd4\x53\x45\xb5\x0a\x84\x97\x80\x61\xe1\x9a\x31\x7e\x62\xc6\x8d\x07\x60\xdf\x27\x48\xb7\x54\x98\x76\x2a\x7e\xa6\xe3\x35\x2a\x77\xf0\xb5\xec\x3f\xcd\xd2\x74\x36\x5e\x48\xaa\x62\xde\xc0\x65\xfa\x5b\xfc\xdc\x55\x42\xe5\x20\xdd\x5e\x95\x9d\xaf\x8f\x14\xef\x15\xcc\xd4\xc7\x11\xc2\x8a\xa0\x71\x1f\x4b\xf9\x7d\x75\x91\x5a\xbc\x0b\x35\x7c\x8b\x23\x12\x8d\x16\x5b\xeb\x9e\xc9\xe1\x7a\x20\x72\xfc\xf7\x22\x92\x72\x63\xf9\xcd\x76\x62\x6f\x6f\x10\x34\x83\x3f\x0e\xae\x2e\x88\xd3\xe8\xa2\x70\x08\x56\x68\x6f\x01\x37\xdf\xcd\x0d\x2d\x00\xeb\x5f\x27\x04\x02\xf4\xd4\x0b\x08\x14\x5d\x42\xdd\x39\xac\x57\x49\x02\x2c\x67\x9c\x47\xbb\x8f\xd4\xc9\x68\xda\xac\x3b\x6d\x03\x96\x02\x38\x26\xb8\x8c\xd5\xba\x9c\xf1\xd0\xcb\xf5\x2e\xdf\x02\x74\x4d\xf2\x86\x6c\x5b\x14\xb8\x90\x8b\x0f\xd6\x7d\xc0\xf8\x7c\xe9\x83\xe9\x15\x74\xbc\xf2\x84\x47\x3a\x65\xd0\x99\x3c\x95\xd1\x8d\x89\x33\x6b\x61\x47\x3f\xd2\x5a\x20\xea\x5b\xa3\x8d\xb5\x9e\x97\xe8\x6f\xfe\xed\x61\xe8\xdc\x99\x5e\x96\x28\x26\x96\x81\x6c\x63\x61\xf8\xda\x8f\xf4\x52\x45\xa2\x33\x9b\x44\xc0\xda\xbe\x04\x11\x80\x1b\xc1\x73\x41\xf0\x3e\xdb\x06\x60\x71\xd3\x63\xd3\xb5\xb6\x8e\xbb\x1c\xa9\x41\x51\x3f\x8b\x25\xe5\x1b\xd7\x2b\xd1\x88\x7b\x1a\x04\x20\xd6\xf2\xe1\x57\xad\x78\xf8\xd6\x82\x15\x7c\x01\x22\x44\xa4\x11\xe0\xad\xec\xaa\x8b\xe2\xf3\x7a\xe9\xcb\x31\x99\x36\x6a\x89\x11\xa3\x0e\x43\xeb\xe8\x83\x4e\x0f\x84\x8b\x93\x93\xb5\xb4\x68\xeb\x6c\x3e\x62\x88\x23\xb3\xf5\x92\x98\x58\xe6\xde\x61\xc3\x68\xd3\x5e\x31\x2a\xc6\x41\x22\x05\x8a\xeb\x6d\x8b\x1e\x8b\x5d\xa9\xfb\xa1\x32\xb7\x4b\x9f\x69\xd8\x5e\x1f\x36\x26\xb6\x49\xf6\xc3\x86\x2f\x08\x43\x5f\x10\x03\x86\x5f\x18\xc6\x76\x32\xa3\x3c\x39\x1f\x94\x03\xb2\xff\x7c\x2d\xea\xba\x33\x99\xea\x35\xab\xe2\x60\x5f\x14\x03\xa5\xd0\xb2\x87\xa7\xfb\x85\xa1\x55\xab\xa6\x4e\x1c\x57\x90\x1d\xa5\x56\x11\x33\xd6\xfc\x39\x69\xc5\x2a\xcf\xab\xbe\x9f\xe8\x5b\x62\xa2\x12\x5b\x5d\x9e\x2c\x2e\x72\xe3\x61\xa6\xf2\xb6\xf9\xd0\xc6\xbb\xf4\xb5\x62\x72\x9a\x25\xf6\x78\x6b\xc0\xaf\xf8\xe8\x41\xcb\x2d\x5a\xf1\xe9\xc9\x25\x11\xc8\x2d\x0d\xb1\xeb\x4f\xd5\x62\xdd\xd2\x49\x53\x65\x0b\x7d\x8c\xa9\x55\x3f\x99\x16\x26\x00\xd5\x89\xb7\xe4\xe4\x0d\x15\xab\x85\x3c\x52\xf4\x39\xb8\xb8\x5b\xea\xa2\xde\xc7\xad\xe2\xb6\xc7\xc5\xbb\x9c\x79\xd4\xe9\xc6\x0b\xbb\x68\xf1\x61\x7f\xae\x90\x5a\xc2\x5f\xde\x03\x8b\x00\x07\xfa\x2e\xc1\x53\xb8\x81\xd5\xb2\xa0\x02\xfa\x72\x38\x5c\x57\x4b\xcf\x95\xb6\x2e\xa6\xf9\xbc\x41\x40\x3e\x01\x04\xb0\x70\x7f\x8c\x24\xb0\x89\x18\xa3\xe0\x6c\xc1\xca\x31\x41\xb7\x55\xa7\x1b\xa5\x89\xed\xff\xb0\xc3\x35\x05\xc4\x41\xe6\x6c\xd6\x06\x1a\xd3\x26\x27\x89\x1c\x3d\xcd\xbc\x10\xf3\x38\x79\xc1\xd3\x7b\x42\x9c\xd7\xf9\xb6\xce\x74\x63\x41\xb0\xf0\x6f\x9a\xfa\x65\x95\x86\xea\xe8\xc3\x62\x56\x37\x03\x11\xf9\x66\x73\x3f\xe7\x63\x9f\xa8\x4d\x8f\x49\xc2\x78\x4e\x4e\x5a\xd3\xb6\x5b\x80\xe3\x92\x50\xc7\x79\x55\x0c\x45\x38\x45\xc6\x06\xaf\xce\x65\x5f\x38\x32\x2b\x9b\x7f\xe6\x6f\x19\x17\x91\xc4\x0e\xd5\x38\x8c\xd9\xe2\x6b\x61\xc8\xd3\xbc\x9b\xe9\x05\xd1\xaa\xbe\x2a\xfb\xcd\x56\x5d\x53\x57\x18\x47\x9d\x86\x5b\x38\x78\x2f\x77\x44\x58\x7b\x47\x88\x53\x53\xeb\xae\xce\x46\x64\x9b\xb0\xcc\xb0\x8b\x72\xf2\xe9\xc0\xb3\xd9\x9c\x1e\xd2\x96\x4c\xac\x1d\x9c\x5a\xe1\x26\xa5\x40\xa0\x8b\x87\x65\x13\x26\x6b\x51\xa7\xd3\x4b\x60\x56\x6c\xe3\x9d\x68\xc2\x1b\x08\x73\xf7\x4e\xd6\x62\xad\x30\xe7\xd8\x46\xa2\xe6\xa9\x60\xde\x51\x59\x80\x87\xf8\x4d\xf1\x8e\x3a\x0f\xb3\x74\xbe\x22\xe6\xb9\x7d\x11\x2f\xc9\x37\x2e\x8b\x47\x53\x9a\x2a\x64\xfd\xe1\x56\x30\x0a\x9c\x6f\x86\x74\xbc\x77\x63\x95\x14\xaa\x95\x56\x44\x33\x2a\xf0\x37\x7c\x5d\xf7\xe8\xcc\xf9\xa8\x48\x4c\x28\x65\x4b\x8d\xae\xe1\x7c\xd2\x07\xae\x5e\x8b\x15\x2a\x9e\xcd\xef\x32\x8a\x1e\x11\x20\x10\xf0\xb6\x00\x2c\xf8\x59\xd7\x71\x98\x19\x7d\x5b\xfa\x91\x1e\x60\xd3\xc1\x3b\x9e\x10\x31\xe6\xf3\x81\x68\x5d\xfd\x2d\x78\x1e\xce\x85\xf4\x34\x2b\x37\xfa\x52\x5c\x8d\x5e\x71\xbf\x97\x67\xa6\x6e\xe4\x36\x61\x72\x72\x50\xef\x7b\x23\x10\x74\x1b\x47\x44\x37\xd9\x35\x90\x17\xda\x06\x20\x5a\x63\x4b\x61\x4d\xae\x1f\xa0\x48\x5c\xdf\xb1\xc9\x00\xc1\xf6\xf0\x45\x89\xa4\xa9\xb0\x63\xcf\x1f\x12\x83\xbe\x6e\xa3\x12\xc9\x43\x21\x24\xd7\xd1\x55\xf8\x8b\x16\xd8\xea\x41\xb1\xd7\x03\x8f\x89\x37\xfb\xb9\xcb\xa8\x53\xe4\x08\x46\xa1\x4e\x19\x25\x2c\x78\x6f\x96\xb0\xe8\x38\x4f\x95\x45\x39\xc6\x35\x10\x10\xdf\xea\xa2\x4f\xc2\xdc\x28\x25\x99\x22\xd2\x59\xb0\x98\x12\xb1\x33\x52\xa7\x95\xb5\x98\x16\x5a\x0d\x4b\xca\x2b\xd0\x22\xbd\x2c\x2a\x14\xf3\x59\xc1\x0a\x9c\x95\xfd\x89\x67\x07\x12\x64\xc6\xbe\xa7\xb9\x1d\xe7\x80\xc4\x0b\x40\x99\x7c\xed\x08\xc8\xbb\x3a\x8b\x8a\x34\xd1\xdc\x48\x81\x77\x5f\x15\xf3\x53\x56\x87\xf7\x5f\xe8\xc3\x3a\xec\x01\x20\x37\x31\xc1\xcf\xfc\x4d\x12\x6e\xbe\x96\x5d\x0a\xed\x28\x99\xa5\x75\xb6\x9b\x0b\xd7\x0d\x9a\x13\x33\xc9\x00\x34\xe0\xd6\x35\x8b\xe9\x27\x33\x84\xc5\xd9\x4e\x1e\x11\x3e\xff\x99\xc0\x6f\xcd\x4b\x38\x1c\x10\xd4\x91\xba\x30\x40\x23\xe4\x4f\x41\x66\x9e\x87\x9c\x38\xdc\xbf\x27\x55\xdd\xb5\xb8\x39\x1a\xa3\xd7\x6b\xe8\x58\xab\x56\x4f\x67\xd6\x73\x91\x1d\xb0\x7c\xed\x48\x9a\x68\x8c\x3e\x26\x7b\x98\x97\xe4\x32\x87\x44\x89\xff\x92\x43\x66\x99\x83\xae\x9b\xa0\xe8\xc2\x3f\x21\xd5\xe7\x5a\x42\xcc\xdb\xa0\xea\x35\x4a\x44\xa1\x76\x76\xb1\xfd\x82\xa8\xd3\xd5\x4d\xa4\xfe\x98\x7f\x26\xa8\x08\x2e\x9a\xcd\x69\xcf\x3d\x7b\x6a\x99\x9e\xe9\xe5\xce\x40\xf0\x4c\x0d\x81\xa6\x5d\x11\xe1\xf5\x33\x51\x5c\xad\xc8\xd9\x39\xe6\x1d\x60\xc8\x36\xb0\x86\xb6\x3b\xde\xc6\x00\x0b\x51\xb7\x1b\xb9\xac\x3c\x7c\xdf\xcf\xe3\x54\xf0\xcd\x30\xef\x13\xdd\x41\xbc\xb6\xd0\x4d\x00\x26\xf0\xb5\x9b\x78\xd9\x88\xc2\x85\xd0\x93\xe3\xd9\x61\x88\x15\x3f\x18\x71\xe8\xd8\x2d\xd5\x68\x44\xba\x22\x52\x7e\x2c\x4c\xb6\x73\xf5\x5e\x51\xa9\x6f\xea\x94\x3a\xe9\x10\x71\x8c\x08\xdc\xc6\xb1\xc0\xe3\x39\x30\xb0\x80\xff\x66\x71\xd8\xb0\x06\xad\xcc\x89\xc3\x81\x18\x8a\xa4\xdb\x2c\x69\xb6\x21\xbf\xa9\x67\x54\x2f\xb6\x9d\x20\x82\x53\x7f\xca\x71\xea\x0f\x9b\xa4\x99\xeb\xa4\x10\x33\xf7\x64\xb3\xa1\xc5\xca\x0c\x81\x9d\xa8\x38\x4e\xff\x1a\xf2\xc8\xfb\x04\xcf\x5f\x94\xe8\xa6\x20\xe5\xe6\x9a\x1e\xdf\x0c\x94\x73\x1e\xad\x15\x6d\x6a\xe2\x75\x13\x8b\x2c\x57\x35\x3d\x9e\xed\xf2\xf0\x6a\xed\x93\x3d\x95\x15\x3a\xdb\xe1\x0f\xb6\x9c\x58\x7a\x53\xa4\x28\xd9\x9d\x85\x8c\x5f\x86\x32\x06\x0f\xe0\x97\xe0\xaa\x22\x6a\xe2\x01\xe6\x30\x68\x17\x02\x9f\x82\xff\xf4\xd0\x59\x09\xe0\xf2\x17\x54\x2d\x6f\x89\xee\xae\xb7\xdc\xe9\x6e\x47\xad\x76\x37\x8b\x42\xfb\x56\x96\xba\xb4\xe2\xa8\x66\xcf\x0c\xd4\xce\xf6\x4e\xd6\x9a\x91\x8a\x17\xf2\x08\x2d\x92\xce\x72\x39\x8d\x74\xd6\x15\xae\x67\xa2\xa4\x89\xf6\x14\x84\xe7\xdb\x16\x85\x85\x67\x92\x39\x32\x3c\x2f\x3e\x58\xf7\x53\x8f\x8e\x96\x7d\x39\x18\xa3\x0e\xc8\xbe\xfd\x01\x0a\x3c\x88\x93\x6e\x8b\x09\x3e\x3b\x16\x07\x6b\xc5\x4f\xd5\xf2\xae\x4e\x0a\xf2\x07\xad\xf8\xd0\x8f\xc3\x70\xdf\xe9\x23\x50\x20\xcd\x0c\x6d\xf4\x86\x80\x82\x44\xc9\x9c\x6a\x62\x60\x24\xa2\xc3\x2a\x3d\x00\x2c\xf7\x36\x4a\xb4\xc2\x71\x78\x3e\xf0\xf1\x50\xa6\x73\x9d\xcd\xe9\xfc\x2e\xf3\xdc\x48\x43\xae\x07\x62\x8f\xff\x24\xf0\x29\x3a\xae\x05\x59\xb8\x05\xad\x07\xec\xf5\x56\x0a\x4d\xf8\xaf\x50\x50\x97\x2c\x44\x16\x61\xe0\x41\x76\x8c\xab\x05\x3c\xed\xf9\x61\xed\x9d\x33\x99\xca\x2d\x9b\x76\xdf\x78\x34\xbe\x11\xef\x80\xd3\xfb\x77\x3e\xf4\x7d\x95\x1f\xb5\x15\xe8\x17\xe1\xe9\xd8\x49\x93\x92\x7a\xef\x05\xd4\x00\x6c\xa1\xd2\x67\x79\x98\xb4\x03\x8a\xe5\x08\x31\xb5\xf0\x4c\x42\xe9\xe9\x41\x34\x81\x60\x78\x31\xf0\x94\x25\xe7\x4a\x3f\xdc\xe9\x5b\x7d\x2c\x21\x97\xb1\x20\x88\xcc\x4f\x4b\xca\xf3\x13\x34\x1e\x97\xc7\x74\x05\xa2\xb3\xfb\x52\x59\x3d\xe8\xfa\xfb\x4e\x60\xd9\x61\x25\x5f\x2b\x3d\x7b\xca\x65\xe2\xb6\xb4\x1a\x86\x22\x24\x4b\xbb\x4e\x89\x31\x4b\xd9\x54\x79\xc2\x72\x94\xac\x04\x95\x8f\x7f\xcc\x81\xaf\x49\x8f\x63\x03\xcf\xc8\x5a\x94\xec\x6c\x3d\x01\x96\x05\xec\xda\x29\xca\xd6\x41\xb8\xce\x09\x8c\xc1\x6d\xf2\x44\x79\x4c\x04\xa5\xcb\x1d\x69\xba\xf1\x8d\x58\x27\xc0\xa9\x42\xed\x62\x90\x48\xf5\xd1\x5a\xda\x80\x28\x22\x60\x40\x18\xc6\x09\x3a\xbe\x71\xa6\x6e\x46\x35\xb4\xa5\x00\x81\xbe\xbc\x0c\xe1\xe0\x1b\xc9\x52\x90\x76\x54\x91\x12\x4d\x01\xc3\xb5\x05\x45\xcb\xb8\x9b\xc0\xb8\x29\x34\x3c\x38\x55\x7b\xfa\xe9\xbb\x7c\x4d\x15\x4d\x50\xc8\x68\xac\x62\x3f\x6c\x46\x59\x38\x10\xcc\x13\x8a\x36\x95\xb3\x81\x40\xdb\xad\x92\x5e\x40\xda\xf2\x58\x29\xe6\x3b\xfd\xa2\x3c\x46\x60\x6a\xb0\xac\xe5\xf7\x88\x98\xa4\xab\x47\xcd\x72\x0b\x14\xc9\xb8\x1f\x49\xee\x38\x83\xf1\x79\x1c\xf8\xab\x90\x27\x08\xed\x1f\x0f\x55\xbb\x6d\x73\xc2\xd8\xd6\x21\xd9\xf4\xb5\xc0\x27\xa1\xbe\x36\x10\x6b\x82\xbe\xb8\x83\xd1\x61\x38\x26\xc0\x37\xf1\xb5\xdb\x9e\x5c\x75\xbb\x69\x96\x56\x7c\x0e\xee\xf3\xa5\xf4\x43\x24\x43\x4b\x54\x84\x6d\x5b\x53\x64\x24\x91\x50\x76\x92\x05\xb9\xc8\x16\x68\x34\xfb\x5e\x9b\xe3\x39\x2e\x9c\x82\x15\x31\x21\x04\x8e\x83\xe5\x31\xf4\x1c\x6f\xc7\x4b\x81\xb0\x8b\x55\xd4\x19\xf1\xd4\x00\x27\x71\x2e\x11\x0f\x6e\xad\x8b\x46\x72\xa6\x12\x42\x8d\xe5\x9d\x61\x8d\xa6\x79\x57\x25\xa0\x73\xf0\x04\x81\x02\x7e\x75\x66\x68\x06\x4b\xc5\xfa\xb0\x4a\x9a\x18\x8c\x27\xd0\x28\xbe\x66\xe6\x51\x2e\x79\x91\x86\xb3\xa3\x9e\xee\xf6\x78\x29\xcb\xc0\x77\x04\x0e\x09\x1c\xa4\x08\x82\x3e\x27\x21\x91\x83\x53\xad\xc6\xf7\x13\xf8\x9d\x1a\xf4\x2b\x8e\x04\x97\x09\x26\xf8\x46\x0c\x7b\x88\x55\xd2\xcc\xe3\xa8\x69\x07\x5a\x88\x09\x0e\x36\x19\x78\x5c\x36\x9d\x67\x2d\x95\x70\x97\x37\x8e\xfc\x6b\xa5\x2f\xa6\x80\xe8\xd1\xba\x66\x9b\xfd\x17\xeb\x8d\x75\xa2\x1c\x13\x91\x98\x8a\x02\x8f\x86\x10\xf3\x56\x20\xd8\xe6\xff\xaf\xbe\xf1\x0d\x9d\x6e\x96\x76\x22\xe3\xd3\xfa\x04\xdb\x92\x28\x27\x0c\x96\xc3\xcc\x1e\x16\x3d\x4b\xa6\xec\x18\xd0\x04\x19\xfd\x90\x44\x59\x94\xe4\x45\x54\xb8\xd1\x31\x2c\x87\x88\x3c\xf9\xba\xbe\x39\x8f\xb2\x67\x9c\x7c\x53\x7a\x30\x3b\x8e\x5c\x84\x40\x27\x44\xdb\x67\xb7\x17\xc7\x15\xa3\x4a\x51\x85\x7c\x9d\xd4\x2d\x5f\x8b\x7e\x16\xe3\x77\xf2\x08\x0e\x47\x33\xb4\x24\x69\xc4\x1d\xb8\xa3\x91\xa5\x51\xac\xb3\x2a\x19\x23\x89\x40\x83\x98\x6f\xad\x8b\x6a\xda\xda\xd0\x21\xe9\x61\x9a\x84\x26\xe2\xa1\xd7\x75\x15\x64\x37\x90\x63\x49\x40\x13\x5b\x69\xda\xdc\x4d\xf6\x85\xfb\xd2\x05\xcd\xcb\x3a\xac\x93\x83\x1b\x1b\x11\xc1\x49\xe1\x39\x5d\x96\x97\x88\x44\x0b\x37\x48\x96\xe2\xa9\x6f\x93\xd5\x65\xd8\xa6\x68\x4e\x3d\x0f\xd8\x03\x7f\x2f\x6c\x36\x7f\x9a\x6c\x12\xcf\x7d\xa3\xcc\x29\xfe\xe8\x01\xe0\x08\x1d\xce\xcd\xcd\x99\xe2\xfa\x84\x85\xdf\x6d\x16\xd0\xa7\x9f\xae\xc5\xbd\x66\x14\x66\x69\x2f\x17\x24\x75\x9c\x5c\xb0\x73\xc0\x77\x3b\x6d\x98\x84\x45\x4f\x71\x86\xdf\x4d\xea\x75\x80\x88\xf5\x72\x97\x48\xf8\x7c\xf0\x21\xf3\xa6\x90\xf8\x4a\x5d\xa0\x1a\x36\xe8\x25\xf0\xaa\xdc\xf9\xc5\x70\x11\x18\x72\x1c\xfa\x15\xf8\x01\x72\x56\xba\x1d\x32\x20\xd6\x96\x7d\x48\xc7\x61\xfc\xd1\x83\x2e\x81\xe1\x99\xd3\xaf\x7b\xae\xfe\x8f\xee\x5e\x34\xee\x50\x5f\xa6\x12\x56\x62\x74\x51\xa4\xed\x5e\x95\xcd\xc5\xd7\xb1\xb3\x38\x73\x27\xa8\x4e\x28\x5a\x8d\x2c\xf9\xf5\x2b\xb4\x99\x70\x74\x56\x86\xf0\x11\x4d\x1a\x03\xde\xe0\xf4\x89\x85\xdc\x57\xdc\x70\xec\x73\x7d\xa0\x83\x5e\x66\xe9\x8b\x51\xb6\x38\x19\x88\x52\xfc\x49\xb7\x21\x5d\x55\x64\x69\xa2\xd8\x7f\x70\x73\x02\x04\x4d\xfc\x30\x00\x56\x37\xed\x25\x4d\x3e\xeb\x8e\x16\x5c\xa0\x2c\x02\x59\xc5\x52\x4d\x9d\xe5\x64\xaa\x10\x4a\xa0\xeb\x4b\x60\x66\x2c\x6c\x81\x13\x25\x7c\xb3\x28\x15\xc3\x60\xd5\x6a\xbc\x16\xf6\x0a\x28\x29\xf0\x1c\xa2\xd0\xc2\xd7\x92\x72\x3a\x6c\xcf\xab\xec\x99\x8a\x37\xce\x98\xab\x6d\x4b\x79\xf7\xc8\x91\xa5\xec\x01\xd8\x8e\x15\xd9\xc9\x72\xbf\x00\x8e\xd0\xcc\xaf\x7c\x87\x71\x07\x37\x56\x03\x91\xde\x01\x40\xd4\xa1\x9f\x04\x57\x96\x48\xe2\x02\x00\xc2\x0d\xf8\xa2\xa2\xc7\x20\x52\x7b\xd2\x86\xb8\x29\x4a\x67\x69\x23\x0a\x69\xaf\xec\x84\xc8\x8a\xe3\x7b\x3e\xe6\xf2\x39\x61\xa6\x1a\x8d\x05\x21\x27\x2b\x42\x4e\x56\x44\xe3\x53\x43\xe5\x51\xa8\xe2\x78\x61\x54\x54\xc2\x5e\xc3\x73\xd8\x84\x92\x48\xb3\x9e\x24\x15\x67\xb3\x4e\xb4\x54\x40\x16\x5c\x1a\x52\x8c\x9c\xaa\x1d\x4a\xdb\x2a\xc9\xc1\x79\xef\x13\x0e\x7d\x4d\x7d\xbb\x5d\x4f\x45\x92\xa7\x59\x11\xa9\x8a\x90\x23\x0c\xc2\xe1\xeb\x60\x33\xc0\xed\xc0\xd8\xe3\xb5\xae\x12\x14\x7c\x4c\x6e\x6b\xdd\xd8\xcd\x6a\xfb\xe0\x94\x25\x78\x62\xc9\xb5\xc0\x34\xc9\x71\x0e\x4f\x93\xcf\x50\xeb\xc3\x62\x10\xfc\x45\xd9\xc7\x4c\xc4\xd3\x2c\x0e\xb3\x69\x53\xcd\x8e\x78\x3d\xbc\x0e\x1d\x64\xf9\x74\x7c\x71\x6d\x5d\xe4\x14\x9f\x95\x34\xce\x71\xae\x77\x79\x60\xc7\xf1\xc0\xe3\xaa\x41\x3f\xe5\x86\xb5\xca\x39\x17\xb4\x61\x8e\xf6\xc9\xa8\x17\x37\x0e\x63\xca\x91\x60\x9f\xa2\x9f\x87\xdd\xb1\x9e\x12\x93\xa0\x30\xc2\x93\xff\x4e\x42\x96\xdf\x80\xaa\xe0\xd1\x7a\x81\x24\xe0\x3a\x5c\xf5\x1d\xf2\xaf\xc9\xe9\x62\xff\xa2\xf4\xde\xf2\xeb\x62\x96\xc6\x4c\x9a\x36\xf3\x6d\x1e\x35\xbd\x12\xf8\xc2\xdd\x0a\x56\xd4\x12\x49\x55\x1c\x2f\xef\x8b\xf2\x4d\x5f\x04\x94\xc3\x72\x4f\xf9\x68\x46\x1f\x6e\x47\xb1\xca\x50\x64\x36\xbf\x60\xff\xc4\x57\xb1\xce\x0a\x6e\xea\x58\x17\x77\x1b\xc5\x6b\x0b\xe1\x15\xc7\x79\x74\x2e\x10\x14\x5a\x6b\x78\x28\xf8\x66\x3b\xeb\x5e\x23\xef\xae\xfb\xea\x15\x40\x39\x1b\x1b\x78\x34\x7c\xe3\x16\xe0\x71\x60\xd7\xaf\xa2\xa0\x00\x1d\xb3\x93\x32\x24\x28\x9b\xdc\x12\x70\x70\x55\x14\x3a\x61\xb4\x28\x8a\xa2\x27\x25\x73\xea\xc9\xe0\x81\xfe\x40\xec\xd1\xda\xc4\xc4\x7b\xc5\xe0\x81\x17\x10\x2f\x41\x91\x6c\x20\xcd\x84\xe7\xfb\xa3\xd2\x67\xd5\xaf\xf7\x0d\x21\x2b\x05\x77\xf0\x2a\x75\x89\xe0\xed\x7e\x8e\x56\x0d\xff\xfd\x01\x7a\x5e\x18\xc4\x4b\x90\x05\xfc\x43\xb5\x2e\xe0\x5a\x37\xc9\x54\x32\x13\x09\xe9\x05\xe4\x67\xb6\x02\x20\x63\x9b\x27\xcc\x76\x23\x08\x7c\x1d\xb1\x3f\x77\xab\xb2\xf8\x21\x2d\xf0\x52\x20\x86\xce\xec\x04\x5c\x86\xb3\xea\xa4\x44\x6d\x8d\x82\x16\xd5\xd1\xa5\xee\xb1\xb4\x74\x37\x59\xb2\xed\x34\x66\xab\x06\x0f\xf5\x92\x28\xcd\xd0\xa1\xcb\x0c\x8a\x7d\xd0\xd0\x8a\xe3\x51\x38\xea\xc2\xa1\x38\x15\xf4\xd1\x38\x78\x6b\x42\x0d\x21\x8f\x64\x2b\x73\x3e\x2c\x9d\x49\xb3\xce\x36\xbf\x6c\xff\xad\xf4\xad\x5d\x37\x91\x7f\x61\x36\x96\x40\xb4\x05\x7d\x56\x8c\xdd\xdb\x5a\x97\xdc\x6c\x0f\x8b\x22\x7d\xd2\x9b\x51\x61\xd1\xa3\xa4\xbf\xd9\x3c\xd7\xa7\x6d\x56\xd3\xb6\x66\x7b\x0a\xe7\x38\x52\x8d\x28\x8e\x8a\x05\x0c\x56\x79\x4d\xce\x7d\xb8\x28\x51\x2c\x1b\x62\x9c\x32\x26\x98\xda\xe6\xcb\xc1\x11\x3a\xb5\x86\x2a\x8a\x58\x53\x4d\x81\x6d\xa4\x2d\x35\xf9\x42\xe3\xd2\x80\xa7\xfc\x28\xa0\xbe\xbe\x60\x01\x11\xe1\x7c\x03\xdf\xb8\x9c\xa6\xea\xe5\x45\xa6\xe2\x48\x25\x8c\xdd\x41\x36\x15\x04\xae\xc8\xfd\x33\x14\xcb\xd2\xac\x0e\x9b\x37\x99\xce\x45\xba\x10\x8c\x66\xc7\x24\xa3\xd9\xb1\x72\xd3\x1c\x40\xaa\xab\x1c\x9c\xc2\x2b\x41\xfe\x0e\xd3\x2b\xf1\xb5\x9b\x58\x43\x53\xa5\xdb\x88\x52\x7d\xa4\xb0\x2c\x86\xcb\x2f\x6f\xee\xcb\x3a\x38\xbe\xbf\xb6\x67\xcf\x36\xaf\x36\xb8\xb5\x1b\xe2\x77\x3a\x10\x11\xd6\x69\xc1\x87\xf2\x62\x20\x08\x73\xb9\x94\xc7\x37\xa2\x26\x12\xa6\xf3\x14\x0f\x02\x4c\xf3\x6c\x29\x54\xf6\x49\x31\xae\x4c\xce\x61\x9c\xd7\x6a\x36\xd1\x79\xae\xf3\xaa\xa0\x3d\x80\xfb\x8d\xb8\xf4\x84\x60\xa4\x93\x05\x98\x99\x1e\x0f\x5a\x83\x3f\x7f\x5c\x8c\x01\x02\x24\xd2\x21\x38\x25\xf5\x8a\xb7\x02\xd1\x5c\x9a\x2d\xf4\x89\x4d\x29\xc4\x66\x18\xc0\x96\x27\x22\xa0\xbe\x62\x41\xcf\x12\x0d\xed\x1f\x6e\xcf\x8f\x3e\x36\x22\x70\xe1\xe7\xfb\x5a\x89\xcc\xf6\xd8\xc0\xd8\x53\x83\x0d\x62\x07\x26\x26\x6a\xad\x4c\x6b\xb4\x51\x5a\xb6\x26\xfa\x56\xdb\x61\x30\xac\xb8\xd2\xd6\x59\xae\xe3\x99\x8a\xb0\xb8\xf0\xc8\x6d\x42\xcc\xc2\x21\x3a\x69\x91\x66\x69\xac\x2a\x12\xc9\x7a\x5c\xe6\x17\x8e\x0f\x70\xf4\x3d\xf2\x48\xad\x97\xcc\xab\x8c\xe6\xb6\x33\x8a\x05\xa0\x84\x63\x7d\x69\x7e\x92\x29\x4b\xcf\x3c\x64\x62\xce\x07\x6b\x7a\x41\xe7\x55\xd1\x41\xb9\x26\x32\x32\x4b\x62\xba\xd2\xa9\xbe\x72\x7b\xa6\x8b\x6d\x1e\xa6\x76\xa6\x14\xa3\xaa\x39\x7f\x69\xf9\xba\x3d\xf6\x07\x50\x23\x3c\xe5\xd6\xba\x80\x9e\xbf\x2d\x78\xc3\x3a\x69\x12\x15\x69\x16\x25\x2d\x90\xcf\x30\x84\x08\xdf\x89\xf8\xf9\x35\x31\x31\x01\x35\x6f\x66\xf3\xa2\x4d\xb4\xcc\x5e\x7d\x0d\x6a\x2a\xcf\x55\x93\x87\x19\x23\x38\x3b\x2d\x4b\x43\xa7\x07\x52\x2b\x26\x86\x50\x73\x69\xe4\xe7\xf7\x42\xfb\xbe\x2c\xc6\xc1\x0e\x92\xa9\x51\x11\x25\x2f\xa2\x24\x04\xcf\x2f\x22\x94\x25\x4f\x39\xfe\xa9\xc1\x31\x2f\x13\x13\xc6\x0f\x62\x2e\x23\x86\x4f\x60\xef\x2d\x96\xc2\x7b\xe4\x79\x2f\xef\x52\x27\x57\xb5\x72\x60\x6c\xe3\x8c\x00\xb5\xdd\x14\x7d\xf0\x83\xdd\x27\x26\x3c\x9c\x53\xad\x1e\xb1\x97\x3e\xbe\x71\x06\x47\xd1\x31\xd7\xb8\x6e\xe8\x2d\xf5\xfb\x65\x09\x3f\xef\x45\x49\x8b\x66\x88\x38\x64\xa2\xab\xd4\x71\x47\xb5\x33\xeb\xc6\xf8\xc8\xa8\x03\xb1\xd6\x56\x89\xaf\x3f\x26\x89\xfe\x4e\x88\x84\xa5\x4e\xf2\x1e\xf3\xa3\x40\xed\x3c\x27\x5a\x70\x9f\x1b\x28\x7a\xec\x7f\xb2\x66\xc7\xb5\x1d\x18\x73\x6c\x86\x1e\xdf\x7d\xd3\x81\xa9\x32\xad\xba\x55\xdf\x1b\x77\x5b\xd2\xb3\x2c\xf5\x35\xb7\xdd\xe3\xf1\xa1\x51\xca\x46\x8c\xa1\x83\x81\x2f\x14\x0d\xce\x4a\x9c\x98\xa8\x15\x99\x6a\xea\xaa\x64\x34\xe4\xa9\x10\xb2\x83\x88\x59\x85\x05\x92\xa3\xad\xe3\xee\x6e\x7c\x4a\xe0\x64\xec\x08\xbe\x3b\x72\x54\x13\x7f\x9f\x83\x15\x9b\x73\x81\xc5\x79\x5a\x54\x42\xd1\xc1\x63\x9b\xe6\x3c\x15\xfb\x69\x42\x63\xb2\xfe\x83\x2f\x85\x3a\xce\xe7\x91\x07\x72\x30\x1f\xc7\x18\xf8\x5e\x52\xdb\x96\xaa\x46\x64\x50\x8e\x93\xc3\x85\xe4\xfa\x9f\xc9\x61\xfd\xab\xc3\xd2\xbd\x33\xba\x13\x25\x51\x8e\xa3\xc0\xbc\xfc\x24\xa6\x96\xa3\xbf\x8f\xa4\x4f\x2d\xdc\xeb\x4d\x16\x06\xa1\xb0\x65\xfb\x26\x21\x81\xb1\x14\x67\xe0\xe6\xe1\x6d\xd6\x02\x3f\x6e\xf3\x26\x96\xc5\xf2\x73\x6d\xee\x50\x1b\xf3\x45\x9e\x69\x5b\x55\xda\x82\x4c\x9e\xc5\x97\xd0\xca\xe0\xd1\xe0\xb8\x58\x1c\x83\x18\x13\xb3\x2e\xe7\xbb\xbc\xb4\xb9\x18\xf2\xc4\x78\xed\xe9\xa7\x2b\x3e\x2a\xf8\x39\x41\x3e\xf9\x73\x43\x8b\xfe\xb1\x56\x36\x55\x62\x67\x11\xf7\x4d\x29\xf6\x4d\x11\x61\x5b\x77\x4c\x34\xbe\x43\x20\x7e\xa1\xaa\xa1\x00\x5e\x85\xf4\xc0\x17\x3f\x03\xe9\x81\x5c\x80\xa3\x16\x5e\x11\xd3\x5e\x5a\x82\x2e\x7a\x7f\x84\x65\xdf\x66\x37\x19\xd0\xc1\x2b\xb2\xdd\xa8\x17\x77\xb3\x08\x40\x11\x61\xca\x7d\x03\xc5\x3d\xa2\x77\x2b\x2f\xee\xeb\xcb\xd3\x9a\xd5\xb6\x5d\xe4\xbe\xe6\x72\x1d\xdb\x2b\xf0\x30\xb6\x23\xf7\x72\x20\x26\x79\xfe\x31\xa4\x15\x8f\x04\xe5\x83\xd7\x60\xf6\x1c\xc4\x17\x7f\x65\xc4\x63\x03\x09\x56\x94\x1b\x31\x99\xdd\x8d\xcc\x72\xed\x12\x34\x63\x6d\x63\x29\x10\x9c\x18\x6f\x39\xdf\xfe\x99\xb4\xd3\x88\x6c\x8e\x87\x87\xb3\x0a\x0f\x61\xa9\x4f\x5a\x0f\xa9\xbf\x2e\x6f\xb1\x19\x35\x31\x31\x51\xcb\x74\x57\x67\x61\x8f\x1a\x95\xf8\x37\x50\x37\xfe\x1d\x41\xdb\xf0\x3b\xc2\xab\x9a\x8d\x92\xbb\x68\x5d\xb0\x62\x47\x48\x94\x24\x19\x02\x54\x0d\xa0\x48\x76\x04\x06\xad\x9d\xd5\xc2\xf4\x96\xd0\x41\xe7\x65\x34\x7e\x4b\x82\x32\x47\xb8\x1d\x0a\x6a\xe3\x74\xe9\x08\xed\xff\xf3\xfd\x75\xff\x30\x89\x9e\xdf\x69\x7e\x13\x09\xc2\xff\x47\xce\xe1\x3b\x27\x66\xa0\xfe\x27\x31\x0b\xf3\x8e\x60\x6c\xd9\x82\xa0\x8d\xa2\x89\xf7\x3f\x58\xef\x1b\x42\x47\xc7\x19\x0a\xf0\x44\xd9\x37\xb7\xce\x47\x2d\x51\x1c\xeb\x96\x8a\xe3\x05\x94\x49\x5c\xef\xa8\x7b\xa2\xb7\x68\x93\x45\xc3\x88\xb5\x97\xed\x28\x43\xc1\x69\x7c\xbf\x63\x06\x36\xcf\x68\x19\x83\xa5\x4b\xd3\x2b\xf2\x7b\x3d\x56\x6a\xcb\xa2\x89\x7f\xf1\x77\xab\x81\x1f\x6a\xfe\x2b\x78\x79\x37\xcc\x64\xd2\xcd\x52\xe6\x31\x27\xd0\x59\x5b\x17\xfb\x4a\x24\xf4\x62\x50\x04\x2f\x21\x2f\xc0\xdf\x8c\xb0\x97\x45\x15\x05\x77\xe4\x59\x40\xfd\xe7\xe8\xff\xf7\xda\xb6\x86\x3b\x24\xc3\x67\x06\x52\x6a\x0e\x99\xa3\xb2\xd9\xaa\x68\x3a\x00\x0b\x94\x2b\x9b\x4e\xfa\x12\xec\xfd\x72\xfa\x43\xde\xd5\x61\x31\x2a\x02\x40\x1c\x57\x4b\xda\x4f\xcf\xef\x6a\xb7\x53\xae\x88\x0d\x17\xc4\x52\xf2\xda\x7c\x9d\x89\x25\x74\x42\x83\xb5\x27\x1d\x27\x18\x7d\x1f\x03\x8c\x91\x04\xb3\x5f\x2e\x92\xa7\xaa\xdb\xd5\x89\x6e\xa2\x6b\xc2\xf5\x28\x1d\x18\x63\x0f\x02\xf3\x99\xfa\xe0\xf5\x62\xed\xa7\xfa\x70\xdc\xb6\x89\x7e\x70\xec\xd1\xbe\x5a\x98\x76\x3a\x51\x51\x68\xeb\xf9\xc2\xd3\x7a\x05\xdb\xc4\xc2\x18\x88\xf9\x17\xfd\x2d\x7b\x8d\xa8\xb8\xcb\xbf\x18\x0b\xb7\xa3\xcd\x75\x14\x10\xef\xa9\x8b\xec\x08\x66\x23\xa0\x28\xf1\x22\xf2\x2c\x0e\x8f\x60\x24\x00\x87\xe9\x4f\xa0\x0a\xfb\x1a\x68\x9c\x0d\xdb\xeb\xa7\x06\x0d\xa1\x0b\xcb\x74\xdc\x0b\x0b\x95\x14\xc2\x8d\xea\x0a\x37\xaa\x2b\x92\x92\xcd\x4c\xe7\x5c\x9d\x14\x5c\x68\xe3\x8e\x23\x74\x73\x8d\x7f\x7a\xac\xf6\xe8\x3d\x02\xda\xf1\x72\x20\x74\xcb\xb2\x1c\x9b\xb2\x6d\xd1\xcf\x81\xb3\x43\x90\x85\x49\xb2\x74\x6b\xab\xa2\x20\xfd\x75\xd1\x2f\xc6\xfc\x72\xfc\x2b\x10\x34\x3b\x86\x50\xcc\x11\xf8\x83\xc0\xa7\xff\x57\x24\x7f\xd3\x0d\x41\xfd\x56\xa4\x89\x1e\xad\x4c\x4e\x6e\xbc\x56\xca\xa5\x23\x97\xc7\xcd\x50\xf1\xe6\xe5\x1a\x3d\x12\x4e\xe5\xca\x80\x93\xfe\xf7\x6b\x4d\x9d\xcc\x71\x74\x3f\x94\x46\x5c\xcc\xef\x4f\xf3\xa2\x9b\x32\x68\xdc\x06\x38\x22\xcd\xf4\xf6\xc0\xd9\xa5\x60\xa3\xa3\x33\x47\x54\x8e\x04\xd0\x39\x89\xd4\xf5\xe1\x22\xf5\xdd\xe9\xbc\x18\xa1\x57\x41\xcc\x5a\xa9\xf7\xcd\xf4\xf1\xc8\x1b\xf0\xc9\x58\x82\x47\x7b\x40\x75\x1e\xaa\xd8\x44\x8e\xb0\x44\xec\xf4\xc8\xbe\xac\xa5\x61\x2d\x0f\x44\xf5\x1b\xeb\x39\x0d\xe4\x2d\xd0\xda\x00\x37\xf3\xb5\x1c\x91\xa2\x3b\xe9\x1c\xd7\x96\x05\xae\x7b\xdc\x0d\x3c\x19\xec\xb5\xec\x66\xe9\x4c\x04\x01\x76\x84\x90\x7b\xdd\xf5\x40\x6d\xd9\xaa\x3c\xad\xb2\x78\x81\x72\xcf\xc8\xf8\xc1\xf4\xb8\xf6\x16\x11\x17\xf9\xa7\x3b\x64\x8e\x7f\x96\x0b\x76\xd1\x33\x38\x88\x7c\xd3\x77\xe0\xa3\x46\x67\xa7\x6f\xeb\x78\x17\x95\x43\x3b\x1a\x9a\xce\x45\xdf\x2c\x79\x84\x3e\x6f\xe2\x6d\x61\x94\xfe\x0c\x1e\x93\x43\x40\x79\xa8\x58\x29\x38\x7e\x96\x02\x31\xc9\xe8\x8f\x86\x4e\xc5\x56\x33\x96\xf4\x1e\xae\xfa\x92\x48\xd0\x2c\x0d\x9b\xbb\xdd\x52\xdd\xca\x40\x34\x62\xbb\xea\x6c\xfe\x6a\x26\xa3\xec\x5a\xe1\x72\x9b\x6c\x2f\x68\xf1\x90\x85\x85\xea\xb5\xc5\xc4\xcd\xbe\xac\x51\x40\xaa\x6b\x7d\x7d\xab\x93\x2b\x6e\x30\xa5\x9c\xe9\xd1\x2b\x38\x03\x69\x96\x07\x9a\x77\x85\x71\x60\xa8\x17\xf1\x8c\x2f\x47\xcb\xe7\x51\x25\xbf\x21\x39\xfa\x2e\xb8\x54\xae\xca\x73\x5d\xe4\x4c\xcf\x87\xc2\xfc\x48\x5d\x50\x18\x70\x49\x97\xff\x85\x34\xb1\xf5\x29\x5d\xa9\xb3\x97\x01\xe6\x53\xe1\xbe\xac\x8f\x1e\xdc\x78\x77\xa0\xb2\x78\x70\xaa\x36\x1b\xc5\x31\x78\x1f\xec\xd8\x6c\x7a\x0f\x3b\x4f\x7b\x30\xc9\xc9\xb0\xf3\x39\x3d\xe2\x5b\xa5\x9f\xa7\x85\x85\x7b\x0e\x0f\x0e\x41\xd8\xe7\xf0\xa0\xd8\x9e\x4b\x03\x6a\x7e\xef\xa4\x27\x23\xac\x0a\x1a\xca\xab\x62\xc8\xf0\x4b\x58\x22\x6e\xbb\x1c\x28\xd0\x8e\xef\xaf\x75\x54\xf2\x4c\x9a\x44\x12\xe5\x29\x01\x83\x67\x07\x6a\x69\x8f\xd6\xa2\x4c\xe5\x23\x82\xee\x8c\x87\x43\x59\xc6\x20\x19\xc5\xbe\x89\xcd\xc3\x19\xd8\x18\xa2\x45\xf6\xd5\xf2\x34\x26\x1c\x7e\x2e\x99\x2d\xd9\x45\xe5\x9b\xa1\xd4\x2e\x26\xd0\x76\x12\x8a\x12\xf9\x2d\x12\x67\x38\xaf\xa3\x75\x31\x9c\x60\x69\xd8\xe2\xb9\x01\x86\xd4\xce\x0d\x07\xe1\xae\xba\xd7\xfb\xa7\x24\x2d\xdd\x8b\xb2\x7a\x5f\x59\xdc\xec\x46\x58\xe5\x53\xe8\xc3\x2a\xb1\xfd\xa4\x3c\x54\x2f\x10\x4d\x9b\xef\x4a\x6f\x7b\xc9\x29\x71\x55\x14\xca\x8f\xe5\x40\xed\x9f\xb3\x75\x7c\x33\x8c\x42\x64\x1f\xf5\x7f\x40\xfc\xec\x78\xfe\x8a\x23\x72\x7e\xc7\x67\x14\x75\x42\x0b\x0c\xb6\x4b\x3c\xd5\x2a\x01\x08\x60\x40\x4f\xf2\x96\xd9\xc1\x83\x3e\x19\xdb\xc8\xa2\x90\xa7\x9d\xd9\x3c\xa4\xc7\x3c\x1d\x77\x18\x99\xf0\x19\x9d\xc7\x6a\x5e\xe0\x0a\xcf\x49\x5c\xe1\x39\x01\x5c\x8b\x92\x30\xee\x35\xf5\x5d\x46\x93\x5b\xca\x6b\xfa\x53\xe0\xce\x5e\xe2\xa3\x6f\xe7\x50\x54\x1c\x17\xf5\x68\x5d\x24\x8c\xd7\x45\xfc\xf3\x0a\xbd\x33\x30\x2e\x3b\xc0\x7d\x25\x00\xa4\xee\x26\x10\xe3\x77\x97\x45\x73\x68\xd4\x54\xed\x54\xf2\x2c\x6d\x9a\x60\x60\x91\x01\x59\xd4\x2d\xe6\xb3\xa8\xe8\xe3\x55\x39\x25\xf2\x6c\xa7\x86\xe5\xff\x66\xd2\x4c\xe7\x45\xc6\x23\x8a\xa1\xa9\xc0\x3f\x82\xf8\xe1\x46\xe0\xd1\x5d\x17\xdd\x86\x35\xd3\xb0\xc8\xa2\x04\xa0\x64\x3b\x88\xc2\xe7\xe5\xb8\xcd\x0b\x56\xe6\xeb\xc3\xb0\xdb\xe9\xcc\x4c\x14\x46\xdc\x12\x03\x8f\x61\x3b\x69\x6c\xbe\x5e\xf4\xe9\xd0\x5c\x77\x22\x95\x24\x3d\x15\x57\xc4\x1c\x63\x16\x5a\xbe\x71\xbc\x32\xcd\x34\x49\x33\x29\x0f\xe7\x85\x3c\x9c\x17\xa9\x49\xcc\xac\x72\xbd\x63\xb6\xa5\x46\xb6\xda\x0c\x4e\xc7\xdc\x57\xcb\x55\x3c\x07\xfc\x23\xa7\x18\x03\x41\x1f\x7f\x7e\x08\x1a\x73\x6a\x1f\x86\x96\xe2\x10\xb0\x6f\xd9\x9f\xfb\xd8\xed\xb2\x7f\x0d\x1e\x14\x44\x82\x04\x95\xbf\x1d\xee\x3a\xdf\x0c\x34\x27\x1f\x1c\xdf\x5f\x8b\x28\x1d\x89\xc1\xa0\x53\x8e\x03\x85\x9e\xcb\x8e\xb0\xf5\xe2\x3d\x93\x66\x45\x2f\x01\x0d\xe5\x86\x75\x79\x6d\xb3\x2a\x7d\x06\xc9\xa6\x91\xba\x67\x3b\xfd\x52\xe9\xc7\x4e\x7c\x49\x14\x2b\x66\x74\xf3\x6e\xf3\x57\x8e\x99\xc0\x61\x0f\xca\x87\xeb\x95\x3d\x7b\xdc\x38\xae\xca\xc7\x3f\xe6\x61\xb5\xe6\x37\x10\x06\xf7\x27\xdb\x45\x75\x04\xb3\x31\x10\x72\xdf\x85\xc8\x94\x82\xd1\x47\xbf\xbb\xee\x23\x84\x5b\x12\x94\xbb\x36\xac\x05\x66\x3e\xca\x8b\x99\x1e\x64\x8c\x2b\x48\x7d\xd5\xa4\xbe\x11\x76\x87\x61\x61\x10\x0e\x43\x98\xf9\x5a\x56\x46\xb5\xce\x77\x7a\xff\xff\xee\xba\xe0\xd1\xe2\xc9\x6d\xc8\x1e\x5d\xc7\xeb\x40\x33\xdc\xa6\x84\x20\x7a\xcd\x77\xd6\x05\x2c\xf4\x38\x22\x2b\xcb\x66\xed\x41\xc2\x2f\x06\xa2\xc5\xff\x62\x5f\xd8\x1f\x36\xf2\x9d\xc6\x23\xc0\x12\xae\x49\x53\xb8\xa5\xee\x43\xcf\x67\x85\x37\xf3\x7a\xe0\xcf\xf3\xd1\xd2\xf7\xbd\x5f\x22\x2c\x3c\x8f\x8c\x40\xf4\x86\x2f\x5a\x2b\x3d\x99\xe0\xca\x60\xe5\x7e\x7a\xec\xfd\x94\x06\xc1\x61\x07\x45\x95\x05\xbe\xd3\xb7\xe0\xa7\xae\x10\x0a\x1e\xa9\xa2\x7f\x1b\x88\xe0\x68\x05\x89\x5c\x3c\xc4\x0d\xbc\x2a\x94\xe0\x2d\x02\xa2\xa3\x8c\xfb\x6e\xe0\x07\x07\xde\xa0\x9c\x30\xdc\xc6\x5b\x62\x20\x33\x17\x84\xed\xf8\x58\xbf\x69\x4b\x10\x8e\x3e\x2c\x26\xf2\x7f\x5f\x00\x98\x0f\xd5\xc5\x35\x29\x75\xaf\xd0\xd2\xf0\xd0\x52\xc2\xb5\xe1\x09\xbf\xc1\xa7\xc4\xcd\xbc\x36\xdb\x0c\x03\x79\x99\x70\xf7\x76\x88\x88\xa0\xb3\xe1\xe9\x3b\xd8\xe6\xf3\x94\x86\xc6\x27\x50\x1a\x87\x61\x58\x05\x23\x31\xaf\x83\xab\xce\x36\xa3\xbc\x50\x79\xa1\x8d\xe8\xd2\x5b\xc0\x11\xbc\x20\xba\x3f\x2f\x08\x54\x4a\x27\x4a\x34\x37\x4a\xc3\x72\xbe\xd4\x07\xb0\x0c\xc4\x94\x1a\x99\xa0\x6d\xea\x90\xaa\x45\x55\x0f\x6a\x38\x4a\xab\x6c\x01\x0e\x62\x86\xb3\xc0\x62\x45\x1d\x9d\xc3\x15\xb6\x16\xa8\xe2\x47\x15\x97\xa2\x2a\xba\xab\x2e\xc8\xb6\xd0\x94\x8b\x52\xc1\x49\x39\x3d\x4e\x77\x75\x56\xa4\x51\xa6\xfb\x28\x01\x45\x00\x2c\xda\xa5\x3a\x3a\x6b\x71\x6b\xb5\xa5\x9e\x16\x4c\xe0\x17\x44\xa5\xfb\x84\xc4\x09\x1c\xf3\x33\x63\x92\x56\x1c\xe5\x6d\xa2\x5d\x42\x42\x8c\x1b\xbe\x91\x48\xd8\x45\xdd\x80\x0c\xf2\xc7\xab\xb8\xfd\x73\xef\xf8\xea\xb0\xe1\x28\xb9\x56\xc4\xf5\x52\x11\x2d\xb5\x2b\x62\x30\xc9\x8a\x00\x48\xa9\xd9\x67\xd2\x51\x31\xc3\x1e\xed\x64\x38\x77\x9f\x87\x08\xb9\xe1\xaa\x2e\xbb\xc7\xf3\x81\xf9\x13\xa2\x45\x46\x75\x1a\x91\x9d\xd3\xf8\xb8\x4f\x03\xbb\x09\xaa\xb2\xca\xde\xee\xa1\x06\x8a\xa3\x76\x1d\x27\x04\x67\xb8\x4a\x79\x10\x44\xba\x18\x0b\x8e\xd0\xf4\x64\x29\x06\x26\xae\xc9\xa1\x08\x3b\x06\xa8\x46\x68\xcc\x59\x57\x3b\x2c\xa5\x1b\x7c\x65\x16\xd2\xe6\xe2\x06\xb8\xd9\xa6\xa7\x6a\xaa\x95\x31\x9d\xa6\xc8\xd1\x18\xa1\x75\x14\xb5\xbe\x63\xf3\xd6\x30\x24\x61\xac\x55\xe6\x5a\xe2\x70\xfe\x6e\x4b\xe6\xff\xdb\xa5\x27\x92\xee\xf4\x92\x28\x8c\xba\x2a\xae\xfa\x2a\xd3\x0d\xd2\x60\x16\x19\x67\x84\x0f\x8a\xf7\xed\x3e\x64\x69\x94\x16\x51\x58\xf1\x70\x4f\xb4\x3c\xf3\xb5\xf3\x8c\xba\x59\xda\xf4\x45\x58\x6e\x40\x0a\x7c\xfa\xed\xec\xb0\x71\x38\xb9\x71\x62\xbd\xbe\xbe\x22\xb8\x94\xaf\x0c\x83\xa8\x67\x3a\xd7\x2a\x0b\xdb\x3a\xab\x1a\x1d\xe9\x88\x27\x27\xc5\xc4\x6d\x1f\x68\xac\x09\xf8\x7e\x37\x8e\x5a\xed\x02\x72\xea\x7a\x95\xdc\x6c\x98\x13\xc1\x43\x5e\x07\xa9\x6e\x37\x8d\x12\x1f\x63\xd3\x9a\xfc\x4f\xef\xa1\x9e\x5f\x9c\xac\xef\x27\x8f\x8d\xd0\x69\xe1\xee\x45\x47\xed\xd7\xc9\xb8\x67\xd9\xa5\x0c\x3c\x25\xc4\x45\xc1\x9c\x97\xb7\x41\x09\x69\x4e\x1d\x4a\x11\x0c\xd0\xe2\x1b\x39\xdb\x45\x67\xbb\xcd\xbe\xc0\x3b\xfe\x00\x79\x01\xc8\xbb\x1f\x11\x08\x89\xf3\x30\xa7\x88\xa8\x98\x1b\x09\xbe\xc2\x56\x74\x94\x93\x40\xfd\xf2\xf7\x92\x6f\x62\x39\xb7\xc8\x60\xb9\x7a\xb1\xeb\xf9\xbd\x25\x21\x02\x47\x25\x23\xdb\xb5\x40\x00\x7e\x6e\x53\x05\xc2\xce\x50\x15\x6c\x15\x77\x11\xe4\x97\x7e\xfd\xd8\x6e\x54\x95\xe9\xf4\x8e\x3d\xbc\xb8\xd9\x87\x9b\x1e\xab\xa9\x26\xe5\x38\x6d\x98\x0c\xdb\xbe\x85\x96\x1a\xba\xe9\xd7\xe4\x21\xd8\x52\xf7\x6d\x11\x79\xaf\x11\xa6\x49\x91\x29\xeb\x62\xda\x59\x91\xbe\x27\xcf\xab\xef\x74\x66\x26\xd7\xc5\x76\x8f\x7b\x1d\x25\xf6\x63\x4b\x71\x55\x71\x23\xd4\x98\x74\x09\xd1\xff\xb5\x40\x90\x73\x61\xa0\x18\x1e\x70\x94\xba\x03\x6d\x13\xdf\xe6\x88\x73\x7c\xbf\x05\x4c\x75\xd2\x39\xce\xdc\x21\x6e\x7d\x45\x4c\x3e\x7c\x65\x20\xbb\x38\xf5\xe4\xbe\x5a\xdc\x6b\x2c\xa8\x64\x56\x91\x18\x39\xee\x30\xcf\x63\x7f\x73\x20\x50\x37\x8b\x98\xe7\x69\x18\x29\xc7\x75\x6a\x29\x48\x85\xb5\x3a\x2f\x29\x4e\x16\xd2\x8e\x9d\xd5\x6a\x1b\xe4\x3c\x28\x67\x70\x46\xb5\xd3\x6f\xb6\xa5\x95\x67\x1a\xd3\x61\xb5\xf3\x8d\x87\x0c\x52\x8d\x53\x9e\x23\xea\x98\xb5\x5c\xf4\x00\x2c\x83\xf5\x32\x84\x27\xf7\x07\xe2\x98\x34\xcc\x7b\xa5\x49\x65\x60\x12\x95\xb5\x90\x43\x92\x5b\x1d\x9d\xb9\x51\xdd\x78\x1f\x78\x4d\x7c\x2d\x6a\x29\xb9\x4e\x0a\x9d\x30\x13\x15\xfc\x36\xc0\x02\xf9\x7a\x71\x13\xc6\xec\xc0\xd8\xa4\xd9\xa1\xfe\xb9\x58\x82\xf8\xf7\x4a\xe9\x71\xc1\x3b\x90\xe1\xb0\x1c\x15\xd2\x8b\xd5\x59\xfe\x3d\x74\xf2\x10\x16\x5c\x27\x0f\xd9\xa1\x24\xf7\x5a\x64\xc9\x76\x9a\xbd\x8e\x9f\x79\x83\xbc\x13\xa6\x27\x2a\x7d\x37\x0e\xf7\x74\xc0\x68\x56\x16\x05\x5f\xc6\x3d\x70\xcf\x21\xac\xb7\x71\x3a\xa1\x29\xae\x94\x92\x1f\xe1\x18\xcc\x0d\x7c\xfa\x6f\x07\x95\xfd\x4f\xfa\x64\x9e\x67\xef\xbc\x01\xed\x02\xd3\xf0\x10\xda\x23\xa0\xa9\xee\xae\xa3\x7c\x8f\x38\x88\x6b\xd6\xd0\x09\x77\xd5\xbd\x7e\xb8\x05\x1f\x18\x38\xcc\x4b\x04\x92\xc3\x22\x23\xbd\x06\x23\x0b\x94\x2e\xd6\x8f\x47\xd7\x23\x73\xb0\xbd\x5e\x79\xe4\x11\x56\x00\xa7\xc8\xa1\x74\x40\x7b\x4f\xa1\x33\x5a\x27\xc7\x1c\x12\xb5\x75\xd1\x9b\xb5\xf7\x2d\x0a\x7e\xd5\xea\x40\x73\xfd\xde\xc9\x5a\x33\x8b\x66\x3c\x3b\x90\x25\x33\xa9\xb8\x21\xe1\xbf\x35\x24\xc1\x53\x4b\xb4\x26\x74\xcf\xc4\x04\xab\xe6\x1b\x7d\xb3\xc2\x02\x01\xf0\xbd\xec\xba\xde\x0e\xa9\x84\x41\x8d\x70\xa9\xce\xcb\x29\x8b\xe7\xfb\x08\xb3\xd3\x34\x26\x56\x37\x3b\xc1\x93\xfe\xd0\xf9\x7b\x8e\xd9\xf4\x9c\xa8\xb5\xff\x01\x7e\xd4\xfe\x83\xd9\xd9\x8d\x13\x81\x98\x11\xb0\x2e\xd2\xd9\x5b\xea\x62\x6e\xce\x2a\x0c\x28\x32\x3b\xa7\x03\xef\x1f\x5c\xc2\x4b\x59\xda\x00\x31\xc9\x4b\xeb\x0c\xc9\x39\xa8\xd0\x23\x92\x91\xe2\x78\xdf\xb8\x96\xe3\x62\xa0\xda\x91\x61\xc5\x8a\x6e\xaf\x61\x9c\x53\x13\xc7\x4b\x64\xc3\x3b\x78\x67\xbe\x11\x45\xe6\x43\xbd\xc3\x85\xa2\x01\xb0\xf4\x6e\x40\x22\x5f\x0a\x3c\x07\xde\xa5\x81\xba\xbe\xcd\x01\xce\xeb\x38\x0e\xd3\x0e\xce\x3c\x62\x86\x33\xb2\x14\x30\xd8\x6d\x4f\xe9\xcc\x76\x96\xf6\x5a\xed\xaa\x2f\x41\x60\x02\x97\x84\xe1\xd9\x4c\x80\x7f\xcc\x6e\x1a\xc7\x51\x62\xa9\x74\x11\x1c\x03\xf9\xc3\xd7\x81\x54\x0b\xdd\xb4\xd8\x41\xdb\xc7\x11\x1d\x2d\x1a\x90\xb3\x68\xe3\x02\x84\x82\xc1\x70\x38\xcb\x18\xd1\x03\xc9\xfe\x5c\xd0\x1f\x0f\x7e\xf4\x20\x97\x06\x4e\x20\xd5\x66\xe7\x73\x0d\xd1\xed\xaa\x39\x97\x86\xca\x75\xfd\xd9\x2e\xbb\xbe\x61\x6a\x0f\x89\xee\xe3\x39\x9d\xe9\xa8\x95\x14\xe8\x4c\x41\xf5\xe6\x45\x3c\x17\xdf\x88\x60\x6b\x56\x27\x45\x2f\x9c\x5d\xc0\x77\x23\xf6\xbc\x29\x3b\x13\x6e\x0e\xab\x91\xe6\xdd\xb4\x80\xbf\xe6\x7b\x77\x2e\x88\x3a\xf7\x85\x21\xe9\xfb\x6e\x7b\x21\x8f\xc2\x88\xe9\x76\xe1\x9d\xbe\x22\x9a\x94\x5e\xf1\x9e\x6a\x9a\xd1\x9c\xbd\xbe\x39\x2d\xc2\xb0\x9c\x77\x6e\x43\x23\xd5\xce\x0b\x44\xe1\xf2\x9a\x70\x2f\x89\x93\x76\x6a\xe3\xee\xfa\x66\x07\xe0\xc0\xd8\x54\x2d\x4a\x8a\x2c\x6d\xf6\xc2\x7e\xee\xe5\x73\xf4\x40\x16\x11\xe9\x97\xa9\x13\x86\x2a\xa3\x7e\x6e\x9f\xc0\x5b\x96\xc0\xd2\x65\xf7\x4c\xf9\x42\x5e\xe8\x0e\xd7\x50\x1c\x8a\xde\x25\x77\x90\xb6\xec\xe3\x58\x81\xff\xfd\x7a\xe0\x21\x83\x61\x9a\x84\x99\x66\x28\x23\x84\x09\x64\x7b\x7c\xdd\x47\xeb\x95\x14\xd6\x06\x0f\xad\xa7\x3e\x20\x7a\x7f\x7a\x71\xa1\x92\x22\x1f\x15\xc0\xb7\xcb\x7d\x04\xa5\xb7\x03\x61\x99\x51\x50\x41\x1c\xd6\x4f\x67\xe2\xb2\x9a\x33\x69\xd6\xeb\x88\xac\x23\x32\x1d\x76\x66\xa5\x18\x62\x1b\xa5\x71\xda\x8a\x42\x15\x57\xe5\x50\xe1\xe3\x22\x9d\xc6\x3a\x14\x4f\xf5\x7f\xca\xd1\xf5\x69\x47\x37\xd5\x42\xc5\xf3\x38\x3d\x27\x86\xa9\x3c\x27\x50\x2a\x1d\x9d\xe7\x91\xd2\x89\x20\xf9\xee\x0f\xd9\x7d\xd9\xb2\xdd\x4b\x9a\x99\xc6\xa0\x7e\xa8\xe7\x2d\x64\x10\x5d\xce\xcf\x58\x2b\x64\x6c\x30\xfe\x06\xcf\xb5\x42\xc6\x91\xff\xbb\x88\x76\x2d\xde\x42\xb6\xca\xbd\x29\xe0\x9b\x6f\x8a\x04\x6f\x64\xfc\x9a\x3c\x9a\xd3\xdb\xb0\x14\x40\x67\x9c\x86\xaf\xc2\xd9\x1f\x5a\x79\xc9\x65\x64\x3b\x40\x68\x7b\x60\x77\xef\x60\xc1\x78\xfc\x8e\xc3\xf7\x77\x74\x33\x4a\x1b\x2a\x09\xd1\xb4\x05\x1b\xc9\xc5\x2c\xbe\x09\xee\x76\x3e\x5c\xaf\x4d\x51\x0e\x2a\x35\x80\x01\xf2\xb5\x9f\x29\x96\x45\xaa\x03\x01\x83\x08\x9f\xc4\x97\xf1\x8d\x58\x54\xc9\x1d\xca\x44\x6d\x22\xcb\x2f\x42\x51\x3b\x42\x9e\xbe\xd4\xcd\x06\x16\xf3\xe4\xc5\xfc\xa3\x8e\xca\x8a\xaa\x4f\xe6\xc2\x07\x84\x13\xb6\x4e\x31\x8e\xa5\xdf\x1f\x52\xe5\x8d\x53\x6a\xd0\x3b\x30\x66\x0b\x34\x81\xd0\xe1\xe7\x87\xa0\x7b\xa7\x6a\x85\xca\x9a\xe0\x78\x04\xc2\x62\x3d\xf0\xdc\x6a\x3c\xb1\xde\x32\xe3\x0d\x41\x6a\xd2\x28\xd8\xac\xd3\x87\x44\x3c\x27\x07\x08\x9f\x1b\x98\xe5\x39\x31\x51\xeb\x1c\x46\xdc\x6b\x19\x2e\x21\x17\xd6\xa1\x7c\x50\x1c\x60\xfd\xc9\x1e\xcf\x99\x9d\x1e\xe3\xa8\x6f\x2d\x10\x21\xe0\xda\x40\x57\x09\xa5\xe1\x4d\xa8\xa3\x9b\x11\x19\x3b\xd7\x28\x57\xad\xfb\x15\x1f\x74\xbc\x28\x98\x6f\x88\x0e\x54\x97\xd9\x32\x2f\x63\xc7\xad\xed\xf6\x55\x38\x13\xe8\xd9\x30\xd1\x52\xf7\xf8\xe0\x62\x59\x0e\xf8\xdb\x56\xff\x4e\x0e\x80\x71\xdb\x62\x9d\xe7\x94\x3d\x40\x90\x77\x96\x8e\x11\x74\x04\x06\x6b\xe1\xc7\xaf\x0c\x0e\x95\x78\x72\x5f\x4d\x45\x59\x98\xa9\x19\x18\x26\xcb\xa0\x40\x0b\xc4\x37\x22\xe5\x50\xb4\x31\x1c\xd4\x53\xf4\x9d\x13\x14\x7d\xe7\x06\x60\x03\x7b\x27\x6b\xad\x5e\x5e\xa4\x82\x17\xe9\x52\x20\x38\x14\x2f\xf9\xac\x4c\x1a\x47\x85\xd0\x76\xb0\xee\xbf\x29\x82\xaa\x35\x09\x49\x59\x15\xda\xce\x52\x5e\x79\x90\xe8\x16\x6a\xf0\xe7\xeb\x81\x95\xdb\x4b\x33\xfc\x0b\xea\x46\x7a\xc6\x79\xc9\x30\x86\xb7\x4b\xdf\xf9\x74\xbb\xcf\x9d\x89\x5a\xc9\x83\xe4\x9d\xc1\xb7\x67\x28\x34\x1e\x0d\x2a\x13\xad\x7d\x6f\x09\x9e\x95\x15\x41\x84\x7c\x1d\x5e\x0b\xe2\xa2\x37\x65\xa9\x89\xb9\xb7\xed\x24\x56\xd1\x3e\xf5\x2c\x62\x16\xfe\x0c\x22\x1b\x7c\xdb\xba\xe0\x47\x7f\x81\x52\x1d\x08\xd9\x8e\x53\xf0\x85\xb3\x7e\x37\x35\xbc\x6d\xf0\x11\x44\x36\xee\x2b\xb2\x4f\x09\xb8\x38\xa4\x78\xff\x12\xde\x16\x6a\xa8\x5f\x36\xde\x91\xe7\x6a\xe8\xf4\x12\x1a\x1e\x5b\xf5\xee\xca\x35\x31\xf7\x89\x61\x12\x50\x2a\xaf\x09\xc7\x2a\xd3\x89\x8a\xf2\x5c\x25\xa1\x1e\x21\xae\x1c\xac\x16\x52\xe8\x88\x65\xae\xc2\x9b\x77\xe0\xb9\xbd\x93\x2e\x74\xbb\x4f\xe0\x8f\x7b\x59\xd8\x1e\x85\x60\x40\xac\x17\xcb\x3e\x43\x6b\x7e\x5f\x36\x8c\xe1\xd0\x9c\xc2\xcb\x5a\x8f\x62\x87\x75\x81\x46\xab\xfb\xfe\xf1\x13\x9e\xa8\x60\xd2\x37\x6e\xf8\x7e\x48\x54\x70\x5c\x01\xc2\x7c\x8f\xed\xf4\x18\xc2\x80\x6f\xbc\xf0\x11\xdf\x11\x70\x9b\x8e\x31\x82\x85\x1d\x75\x6f\xb0\xcf\x50\xf5\xcc\xe2\x46\xbd\xf3\x92\x6b\x95\xa7\x89\x8a\x29\xa5\x8b\x45\x65\x7a\x13\x2e\x21\xe3\x45\x98\x88\x52\xb0\x95\xde\x90\x54\x5f\xc7\xb0\x0e\xa8\xa6\xac\x0e\xc1\x38\xe5\xb3\x91\x9d\x38\x63\xd9\xe0\xfa\x68\xe2\x76\x0b\x3a\xce\xa6\xb5\xcd\xff\x2f\x63\xef\xfe\x23\x49\x96\x9d\x87\x75\x67\x55\xf5\x63\xba\xe7\x3d\xbb\x5a\x49\x90\x91\x2b\x11\x5e\xc9\x5e\x0c\x40\xd8\x90\x05\x02\x46\x24\xab\x6b\x77\x76\x1a\x9c\x9a\x72\x77\xb3\x87\x1a\xc0\xc0\xdc\x8c\xbc\x95\x19\x5b\x91\x11\x39\xf1\xa8\x9a\x9a\x3f\xc0\x30\x04\x83\xb0\x01\xc2\x06\x2c\xd9\x02\x68\x89\x26\x69\x9a\xe6\x4b\xa4\xac\xe5\x6e\xd6\x2c\xc9\xd5\x92\xdc\x5d\xce\xcc\xce\xfb\xb5\x3d\xfd\x7e\x57\xbf\xdf\x5d\x6d\xc4\xf9\xce\xb9\xf7\x44\x47\x8c\xac\x9f\x26\x62\xba\x32\x33\x1e\xf7\x71\xce\x77\xbe\xf3\x7d\xcf\x31\x40\xf8\xb6\x6a\x4e\x7f\x3b\x68\x59\x33\xc3\x34\x19\xc6\xe9\xd8\xc2\x6b\xc3\xc1\xce\x08\x72\x65\xd2\x38\x0e\x42\x52\xd8\x38\x9d\x10\x4b\x8e\x9f\x38\xa8\x49\xce\x1b\xcc\x55\xb6\xb8\x89\x18\xdb\x3c\xf3\x7f\x81\x37\xdd\x6b\x5d\x6f\x62\xd1\x69\x46\xfd\xe0\xbc\x22\x7f\x9e\x6f\xb6\x21\xbd\x78\xb0\x6b\x5f\x2d\x4d\x0c\x7a\x2f\xa2\x38\x18\xc5\x69\x21\x7f\x3c\xa1\xfb\x3a\xc4\x8a\xc6\x51\x6c\xb2\x47\xab\x97\x2e\x49\x31\xbd\x0b\x5c\xe7\x36\x54\x4c\xf8\x64\x83\x26\xb8\x48\x07\xd3\x2f\x61\xe8\xde\x05\x64\xe9\x8c\xb1\x1d\xa2\x7f\x25\x50\xee\xc2\x4c\x16\x44\xc9\x0c\xe2\x25\x20\xdc\xec\xea\x79\xbc\x75\x93\xaa\x5c\x58\x83\x6e\x4f\x55\x4c\x7a\xb1\x96\x85\x27\x76\xed\x51\xdf\x0e\xfa\x33\x0e\x65\x95\x9c\xd9\x73\x4c\xa7\xbc\xa7\xe2\x7a\x38\x18\xa0\x08\xc5\xdc\x32\x86\xf0\xf1\x6e\xc0\x69\xbc\x87\xf1\xc7\x0a\xa9\xa0\x40\x48\x17\x05\xdd\x0d\x72\xa9\xb9\x8d\xea\x42\xa5\x5d\x5d\x79\x38\x5e\xad\xb5\x14\xaa\x76\x95\xd8\x24\x76\x96\x92\xff\x4b\xd5\x23\xda\xa2\x65\x75\xeb\x12\x7a\x9d\x2f\x05\xcf\x28\xd5\x00\x78\x4b\xe7\x45\x3e\xe3\x6f\xf2\x26\x9e\x38\xe2\xc1\x9f\xe1\xd1\x48\xd0\xda\x94\xea\x3d\xd8\x5d\x36\xa1\xc5\x70\xe0\x7a\xb4\x32\x94\xe0\x02\x06\x02\xb9\x33\x5a\xd8\xed\xd9\xf0\xd9\xd1\xb3\xe8\x99\x56\xd6\x75\xde\xe7\x4a\x92\x0a\x92\xa4\x49\xc2\x42\x9c\x49\xb8\x99\x46\xa9\x69\xbf\xe2\x66\x49\x66\xab\xfc\x43\xec\xc9\x50\x77\xf9\x12\x46\x16\x06\xf4\x9e\x0d\x5f\x0f\x7f\xe0\x1a\x89\xf2\x2a\x1d\xcc\x61\x23\x2c\xb0\x0c\xde\xb3\x73\xa4\xf4\x4f\xfd\xfd\xa9\xda\x56\x7f\xa2\xe8\x38\x93\x2c\x5d\xb5\x73\x75\x27\x08\x47\x57\x7a\x84\xa6\x88\xac\xbf\x3e\x04\xb8\xa8\xd1\x75\xdd\xe3\x39\x88\x72\x6e\x41\x98\xf1\x45\x07\xa4\x4b\xc0\x04\xae\x62\xe3\xc3\xd7\xfc\xae\x2a\xb2\x2d\xdb\xb8\x20\xf7\x30\x6c\x83\x50\xd8\xc6\x67\x3a\x34\xfe\x5d\x37\xae\x13\xac\xf8\x5f\x5a\x7a\x8b\x81\x34\x6d\xeb\xd1\x84\x63\x90\x5f\xa5\xab\x5e\x8f\xc8\xe9\x61\xbd\xa5\xf5\xb0\xde\xd2\x41\x3b\x89\xc1\xe7\xb3\xfe\xa2\x4e\x07\x5a\xf0\x63\xea\x6b\x76\xa7\x71\x25\xa2\x04\xd2\xa6\x59\x32\x5e\x47\xab\x66\xf5\x4a\x9c\x86\x42\xf5\xd4\x45\x36\xe1\xe1\xf0\x97\x28\xbb\x33\xd5\x9d\x03\xc6\xbf\xad\x18\xcd\x58\x44\x25\xbe\x7f\x42\x49\x08\xae\xda\xa4\xb4\x7b\x94\x74\xd5\x39\xd5\xb5\x72\x8e\x10\x32\x47\x8a\x76\xbb\xd0\x55\x14\xd8\x59\xe7\x61\xea\x8d\x64\xae\x06\xbe\xeb\xe1\x01\x16\x31\x00\x2b\x1f\xe0\x35\x2a\x65\x08\xd9\x5d\x8f\x50\xf7\xc0\x71\xd7\x20\x57\x58\xb6\xca\x42\xcc\x71\x91\xd6\x2f\xd7\xfb\xe9\xe4\x6f\xff\x95\x17\x94\x4b\xb3\x65\x0b\xe7\xab\x97\x39\x41\x7a\x8f\xfe\x90\x8f\x95\xa1\x68\x58\x66\x19\x45\xfd\x8f\xf8\x06\xba\xb3\x08\xc0\x38\xd4\xc0\x95\xb1\x49\x0f\xdd\x3d\xc2\xfa\x5b\x58\x84\x44\x30\x82\x16\x44\x89\x3f\x7d\x2c\x3a\x4b\x83\x10\x31\xec\x55\x04\x69\x2e\x84\x39\x30\xcf\x3b\xfc\xbb\x2e\x1f\x0c\x47\x76\x99\x09\x71\xf8\xc5\x23\x58\x85\x50\xb8\xb9\xa5\x78\x74\x9b\xad\xa2\x4e\xf9\xab\xa5\x71\xad\xea\xcc\xf6\x57\x4e\x02\x9b\x8d\x6d\xed\x85\x85\xae\x7d\xcd\x8e\x27\xd4\x39\xe5\xd6\x4b\x35\xa7\xa2\x6c\xfc\x18\xbd\x28\xa1\x7b\x57\xf7\x03\x84\x14\x0e\x0a\x58\xec\x99\x39\x8f\x7b\x03\xb7\x19\x3b\xc2\xde\x0d\x65\x97\xc1\x70\x3c\x56\xcb\xb7\x28\x88\x42\x10\xd7\x21\x00\x9c\xa3\x5c\xba\x60\xec\x14\x3b\x89\x07\x8b\x9f\x78\x07\x8b\x91\x52\x45\x7f\xb9\xae\x4d\x83\x36\xdf\xe3\x2d\xcc\xf5\xe7\xaa\x7c\xab\x2c\x5c\x91\x08\xb8\xd2\x5d\x6c\x50\x7c\x32\xdd\xcd\x7f\x9e\xa4\x8f\x56\x17\x80\x30\xf8\xef\xd2\xfb\xc3\x1e\xc6\x34\xe8\x9a\xc3\x12\xcd\x84\xef\x3e\xb1\xa1\xe5\x4b\x28\x76\xc3\xeb\xff\x0a\xad\x3b\x34\x13\xfe\xe4\x3f\xa3\x7b\xc4\x53\xd9\xa5\x50\x7a\x8a\xfb\xb6\xb8\x69\x0f\xbf\xb4\x45\x50\x88\x12\xbb\x15\xf5\x90\xbb\x4a\x61\xd7\xdb\x28\x83\x53\x76\x5e\x09\x60\xd4\x1b\xc1\xf2\x32\xdf\xa5\x63\x62\xb4\xd8\x88\xeb\x88\xaf\x8b\x7e\x3c\x55\x7c\xb5\x77\xa6\xfe\x12\x3f\x0b\x14\xb1\xe6\x0a\xde\x03\xf7\xea\x4d\x55\x1b\xcf\xe7\x0a\x5b\xa0\x9d\x05\x4f\x1b\x2b\x35\x76\x61\x39\x51\xfa\x4a\x45\x16\x25\x51\xb1\x3e\x43\x0b\x08\xb8\x88\x27\x68\x68\x00\x24\xf8\x53\x3c\x75\x21\x32\xb5\xb8\xe1\x65\x65\xb2\x93\x86\xa8\x32\x81\x94\x6a\xfe\x7b\xd8\xd2\x9d\xca\xa5\xeb\x3a\xbf\x82\xc7\x8a\x91\x7c\x6a\xea\x99\x10\x37\x55\xc2\xb0\x5b\x09\xcf\x47\x49\x68\x93\x6a\x33\xce\xe7\x14\x5c\x87\x14\x05\xd1\xdb\xa7\x4a\x07\xef\x9c\x52\xc2\x3a\xae\x4c\x5e\x2e\x37\x92\x82\x03\x4b\xdd\x65\x51\x91\xc3\xeb\x79\x33\xf0\x89\xc0\x9b\xaa\xf1\xc8\xc4\x71\x44\x29\x52\xf5\xd5\xaa\xc3\xff\xa0\x6b\x7e\xf7\xb2\xf5\x3c\x56\xf9\x1f\x02\x4f\xbe\x19\x44\x79\x51\x66\x7d\x16\x38\xdc\xa2\x1c\x61\xeb\x88\x7a\x71\xab\x69\x61\xf3\x9d\x33\xde\xea\x85\xab\xe5\x08\x24\xd1\x6d\x88\xd5\xe4\x63\x5a\x0b\xf8\xff\x4f\x15\xaf\xf9\x03\x0e\x22\xb0\x65\x7c\xac\x02\xe3\xeb\x6d\xe2\xb0\xd0\x37\x56\x5d\x2b\x9f\x68\x7b\xfa\x4f\xda\xe8\xe1\x96\xba\xe5\xd7\x89\x89\x8a\x1b\xbe\x83\x30\xd2\x55\xb5\x95\x3e\x55\x4b\xec\x9f\x17\xd6\x8c\x15\xf5\x8f\x21\x7f\xc9\xe2\xfc\xfe\x60\xb2\x71\x5e\x64\x54\xcc\x75\x49\x9b\xb8\x79\x01\x75\x3a\x1a\x34\xf3\x2f\xec\x10\x47\xd5\xb6\x1a\x47\x5e\x54\xb2\x4d\x18\x53\x2c\xdd\xf3\x95\x65\xd5\x1b\x75\x5e\x8b\x24\x9e\x0f\x6a\xee\x66\x69\x94\x14\x63\x9b\x14\x2c\x85\x81\x81\x8c\x6c\x9b\xb7\x6a\x7a\x08\x08\xb0\x3e\x6d\xec\x16\x82\x0a\xa5\xf1\x00\x00\x19\x46\x3f\x7c\xe0\xf9\xd8\x69\x29\xaf\x45\x31\x70\x3b\xac\x5e\xc0\x14\x44\x88\x4d\x55\x3f\x36\x6b\xe5\x5e\x93\x4d\x76\x50\x99\xd2\xad\x8b\x8e\x44\xc0\xea\xbc\x58\xd4\xfe\x22\xf0\x80\xcc\x4f\xe9\xab\x19\x2c\x51\x4f\xe8\x1d\x55\x80\x2b\x93\xa8\xc8\xd1\x77\x2a\xa6\x42\xaa\x93\x18\xba\xed\x98\x3d\xd0\x6a\x42\x54\xc1\x5a\x4d\x08\xfb\xee\xa8\xbd\x07\x7a\x17\xae\xd8\x58\x6d\xd1\x22\xf2\xe2\xbd\xb7\xaf\x6b\xc1\x97\x13\x2a\x23\x2f\x32\x6b\xf2\x32\x5b\xdf\xa3\x9a\x3e\xb6\xb3\xf7\x14\x76\xa7\xa3\x81\xf7\x9f\xe0\x7e\x40\x41\xe5\xfd\x2a\xff\x33\x9a\xbb\xfc\x47\x81\x6a\x1c\xde\x41\xa8\x00\xf6\xff\xdf\x44\x53\x0f\x66\xdf\x1f\x06\x5e\xb0\x61\x43\xd3\xba\xae\xd7\x5b\xd6\xad\x41\x1c\x84\xdd\x91\xe3\x09\x3e\x51\x0a\x95\xab\x24\x69\x78\x60\xde\xcd\x81\xea\x7a\x64\x72\x38\xd5\x78\xbb\x1c\x15\x9e\x1c\x84\x08\xff\xac\xd2\xf2\xb8\x57\x8b\x50\x3c\x01\x2b\xcc\xec\x20\xaa\x42\xe1\xdd\x78\x32\x02\x3d\x78\x0c\xed\xba\x16\x16\x78\x17\x4b\x0e\x98\x6f\x6c\xc5\x85\xb5\xf4\x77\x68\x75\xc6\xa0\xbe\x1a\x28\xc8\x18\x96\x4f\x78\x02\x10\x16\xc0\xf1\x83\x40\xa6\x56\x91\xad\x13\x09\x06\xc4\xdd\xaf\x50\x5e\xe2\xf4\x3f\x64\x1d\xf9\xec\xa9\x0d\xe5\x30\xf9\xa0\x16\x30\xab\xde\x7d\x9e\x98\xc2\x2f\xf1\x63\x93\xe8\x8a\x73\xde\x60\x96\x77\x6f\x67\xe3\xe7\x58\x7f\xa0\xd4\x48\x69\x54\xdd\xe1\xbf\xf0\x1a\x9f\x66\x30\xb0\x7d\x14\xcd\x31\x18\x40\x23\xe1\x63\xe5\x89\xbb\x1c\xc5\xe3\x59\x05\x33\x72\x9f\x0a\x9f\x28\xfb\x99\x9f\x22\x4c\xe3\x93\x96\x2c\xe3\xb9\xee\x20\x4a\x12\x9b\x91\x58\x29\xd2\xc5\x0b\xaa\xc2\x76\x41\x81\x6d\xa6\x9f\x9a\x0c\x0e\x63\x4e\x16\xd9\xe5\xeb\xb7\x1a\x0b\xfd\xf3\x8b\x5d\x9b\xa0\x96\xec\x1e\x3c\xa8\x30\x4e\x1e\x53\xfb\xb9\xb4\xf0\x5b\xe2\x68\x1c\x15\x30\xb2\x72\xf2\x6b\xd5\x3d\x4b\xe5\x52\x09\xc0\xfd\x99\x8a\x2f\xfa\x26\x59\xb1\x59\xbe\x57\x59\x8e\x6f\x4c\xbd\x59\xea\x31\x7c\x89\xdc\x5f\x35\x42\xb8\xec\x03\xb4\x55\x3f\x04\x41\xcd\x6b\x0e\x70\x33\xde\x04\xfc\xb6\xbe\x06\xd6\x60\xe5\x66\x52\xde\x33\x9c\xae\x8b\x27\xcf\x9c\x53\xbb\xf3\xab\xa5\x89\xa3\xe5\x75\xd7\xa1\x80\xbc\xed\x82\x12\xd0\xbf\xa0\x68\xfd\x79\x91\x99\x28\x11\xea\x40\xab\xc1\x81\x67\xd3\xfd\x57\xff\xe4\xbf\xec\x54\xef\x87\x9f\x40\x50\x7b\x1c\x3e\xe0\xcf\x47\x11\x24\xa1\xa5\x95\x84\xfe\x4e\x7a\x49\x1c\xdd\x6f\xb9\xb0\xc9\x9c\xda\xf2\x21\x6b\x83\x05\x0f\xa9\x25\x3e\xf2\x68\xaf\xf3\x4b\x07\xdd\x2a\x55\xdd\x06\xb0\xc9\x6d\x1b\xaa\x5e\x68\xb2\x22\xb6\x58\x7d\x44\xf6\x84\xbe\x9a\x4f\x54\xf3\xc1\x38\xe1\x02\xab\xb8\x35\xa9\xd2\xd9\x05\x65\xcd\x86\x00\x40\xd1\x41\x16\xdc\x76\xe5\x0b\x8b\x85\xcd\xb2\xe8\xf5\xd7\x23\xfa\x61\x91\xca\xad\x6e\x83\x8f\x1b\x3d\x66\x0b\x87\xba\xe9\x00\xbe\x49\x68\x5d\x3b\x87\xfc\x5b\xd4\x93\x3d\xbb\xe5\x66\x0d\x94\x4e\xa3\xd0\x92\x34\x01\xe2\xc4\xcf\x03\xa5\xd7\x7a\x6e\xea\x37\x3c\xfc\x3a\xc2\x8a\xb7\x95\x68\xca\x1d\xdd\x25\x74\x8e\xd8\xe7\x80\xde\x40\x09\xc2\x36\x76\x09\x2f\x1e\x9b\xc3\xb1\x46\x01\x67\xdf\x3e\xee\x69\x8c\x84\xec\xa0\xba\x15\x25\x7c\xf9\x97\x6d\x5e\x51\xf6\xb5\xa8\x98\xab\x46\x0e\xd0\xd7\x3f\xd6\xe6\x25\x70\x69\x42\x04\xf6\x58\x6f\xfb\xcf\x39\x97\x9d\x8e\x93\x5d\x3a\xe2\x00\xad\xdc\x16\x45\x4c\x7e\x2e\xd2\x06\x59\x53\x8e\x61\x8c\xa8\x59\x18\x17\x41\x62\x55\xc3\x37\x85\x1d\x92\x20\xd7\x4b\x5a\xaa\xfe\x79\x69\x4b\x6a\xc2\xb7\x87\xe7\xbb\xab\x36\x89\x42\xa6\x24\x62\x03\xb9\xa0\x31\xa8\x0b\xce\xf9\x6b\x92\xaf\x87\xa3\x28\xcc\x3b\x35\x41\x58\x9a\xe6\x22\x15\xeb\x39\x02\x66\x68\x93\x70\x7d\x6f\xc7\x69\x34\x6f\xdb\x50\x4a\x21\x27\x35\xa7\xf9\x44\xbd\x57\x9e\xbe\x1d\x90\x14\xf7\x36\xba\x2e\xfa\xc3\xf3\xae\x42\x4a\x63\x17\x09\xf3\x09\x6c\xff\x5a\x2f\x46\x14\x4e\x6b\xcd\xe3\xd5\xcb\x95\x26\x5e\x1f\xc9\x66\x65\xdf\x26\x03\x83\xc6\xd0\xe7\xf8\x93\x70\x82\xe3\xe3\x06\x99\xf3\xf0\x7c\x4d\x80\x5b\x79\xeb\xd7\x1a\x5e\x37\x5b\xe8\xd9\x07\x99\x25\xd6\x51\x1d\xa0\xdc\x85\xca\x27\x2d\x65\x87\x38\x5a\xb1\xdc\x24\xcd\xa5\x30\xa5\xe3\xcb\xda\xb2\x88\x85\x37\x1a\x34\xa7\x03\xf3\xdd\x89\xc9\x0a\xa2\x79\xc3\x3f\x69\x71\x71\x8b\xbc\x6f\xb6\x2e\xb9\x65\xab\x9f\x95\x09\xba\xea\x04\xa8\xa2\xe7\x2e\x18\xd4\xc3\x57\xb4\x70\xa8\x3b\x48\xcb\x7e\x01\xde\x23\xfe\x0a\x6b\x31\x7a\xa7\xb6\x29\x09\xa2\xdb\x94\x42\x4a\xf3\xfc\xc3\x55\x0f\x89\xb6\x89\xb5\x9b\xc6\x14\xe2\x23\x0e\xf9\x44\xf7\x19\x7e\x12\xd4\x71\xd0\x68\x12\x47\x89\x25\x67\x6c\xcc\xcf\x8e\xee\x3d\x62\x5d\x0e\xe6\x38\x60\x51\x11\xc2\x43\xf5\x0c\x45\x51\xcd\xf7\x9e\xb0\xa6\x05\x48\xe6\xff\xef\xd4\xd3\xb5\x8f\xd6\x09\x59\x36\x7f\xc4\xa7\xa0\xbf\x17\xa8\x0e\x58\x26\xe9\x03\x33\xa9\x15\x5a\xbf\x47\xbb\x3f\x88\x57\x1c\x65\x3a\xce\x4c\xf5\xa3\x00\x74\x3e\xc2\x35\xbb\x7d\xcd\xf9\x75\x5c\x25\x25\x6f\x41\x32\x95\x27\xe0\x88\xdc\x6c\xe8\xa5\x69\xd5\x4b\x3e\x6e\x33\x66\xb2\xaf\x4d\x8c\xef\xa8\x13\xdc\x92\x1e\x9c\x64\x46\xad\xea\x94\x99\x56\xd4\x02\x56\x20\x80\xa0\x2a\x55\xa6\xe1\x8a\x5d\xb6\x71\x6c\xb3\x19\xcf\x41\xb9\xa1\xb4\x98\xb8\x1c\x8f\x65\xfc\xa3\xc6\x30\x5f\x3a\xb0\xd4\x4d\x27\xd5\xee\xe9\xf7\x31\xc0\x98\x4e\x7a\xa5\x7a\xc2\x6c\x76\x49\x57\x01\x54\xed\x4c\xa0\x44\x8d\x7f\xb3\xcd\x3b\x90\x68\x63\xb3\xd5\xc0\xdf\xc0\xea\x82\xc8\xea\xb4\xee\x51\xba\xa0\xac\x01\x6f\x05\x8f\xab\x10\x32\x19\x56\xb7\x74\x78\xde\xe9\xdd\xfb\x7d\x4e\x17\xbb\x3f\x9f\xee\x11\x5a\xf0\xe2\xe2\xd2\x57\x55\x03\xc7\x03\x24\x4f\x78\x66\xac\x38\x42\xaf\x69\xf1\x49\x62\x9c\xb3\x69\x10\x11\xf4\x10\x04\x7f\xa8\xb9\xfb\x6f\x4e\x3b\xdf\xf8\x15\x6f\x8c\xf2\xc2\x82\xb3\xb1\xa0\x21\xc3\xb5\xb3\xa9\x52\x47\xbb\x85\x05\x11\xfb\xcc\x2d\x9d\xc2\x5f\x51\xcd\x77\x6c\x9a\x87\x4d\x6a\x06\x14\x5e\xed\x2b\x2b\xee\x08\xd5\xb6\xca\xf9\xed\x74\xfb\xcf\xf1\x4c\x02\xbe\x83\xcd\x6e\x0e\x34\x63\x00\x5f\x6f\xe8\x5a\xf2\x69\xac\xec\x02\x5e\x51\x50\xc0\xd8\x0f\xab\xc4\x02\x9a\x82\x27\x33\x92\x9f\x2b\x41\xe7\x95\x57\xb6\x2e\x29\xa3\x99\x77\x55\x55\xfb\x22\xc7\x8b\xa2\x3e\xd5\xf9\xda\xd7\x98\xa4\xc3\x34\x48\x2c\x8a\x8f\x11\xa6\xc8\xdb\x83\x72\x79\xba\xaa\x85\x89\x92\x30\x1a\x10\x50\xe0\xeb\xab\x97\x95\xc6\x23\xbb\x40\xb1\xdd\x61\x83\x05\x7a\x78\x7e\xa9\x9b\x17\xe9\x64\x22\x13\x0a\x29\xda\xf6\x0d\x95\xaf\x6d\xef\xb9\x5e\xb1\x6a\xb6\x0e\x3a\xca\x29\x82\xdb\xb2\xf8\xa4\x65\xab\x58\xea\xc6\x5f\x4b\x6d\x84\x45\x51\x4c\x49\xab\x31\x22\x66\xa5\xb5\xaa\x64\x54\xec\xa1\x31\x23\x97\x4b\x97\x04\x1e\xcc\x65\x6c\x7d\x82\x86\xd2\xa8\x11\x13\x47\x7a\x73\x00\x57\xaf\xa8\x2e\x89\xb3\x6a\x60\xcf\x92\x80\x91\x4b\x40\xab\xc1\x24\x60\x2a\xdd\x81\x14\xd5\x95\x19\xd6\xbb\x2e\x66\x28\xca\x6c\x9c\x46\xe2\xa7\x8f\x2b\xbf\xa4\x6c\x56\x2f\xa9\x52\x5d\x98\x66\x03\x9b\xe9\xb6\xf7\x3f\xc5\xa8\x16\xc1\xfa\x8e\xeb\x1c\x3f\x51\x5b\x97\xcb\xc4\xee\xac\x06\x90\xd4\xa8\x3d\x50\xf4\x3f\x06\xaa\x65\xeb\x53\x0c\x4d\x2c\xc5\xd7\x54\x31\xe2\x9c\xf2\x5a\xdb\x0a\x74\xef\x5d\x0b\xc4\xd6\x4f\xd7\x62\x21\x01\xb4\x9b\x55\x2b\xa1\xcd\x08\x59\x6a\x9b\x47\x72\x9b\xcc\x63\x18\xa7\xb9\x9d\xf1\x3e\xe0\xc7\xa7\xde\x79\x1b\x72\xac\x98\x57\xb7\xbc\xed\x42\x98\x99\x71\x3f\x16\xe9\x33\x31\xa4\xa5\x67\x28\x79\x5c\x53\x12\x62\x14\x0d\xec\x8c\xbe\x68\xe7\xe7\xf5\xf3\xa7\x91\xd8\x08\x73\xe0\x8b\xe0\xb1\x81\x49\x66\x3c\x3a\x05\xa6\x2c\x3e\xf3\x31\x36\x6e\xa1\x73\x3e\xa3\x80\xe2\x24\x5d\x35\xac\x1d\x51\x2d\x36\x08\xe5\x7e\x07\xab\x23\x9f\x34\x1a\xbc\x16\x0e\x75\x8b\x2c\x1a\x0e\x6d\xe6\x88\x46\x2c\xca\x44\xeb\xb0\x08\x34\xf9\x05\x7b\x62\x32\xf2\x18\x7b\x61\x81\x17\x40\xde\x67\xb9\xc8\xa9\x0a\xa6\xef\xea\xf2\x88\xce\xa6\xcc\xeb\xeb\x73\x7e\xcd\x78\xb4\xa7\x63\x41\x55\xd6\xbe\xa0\xdb\x22\xaf\x63\x70\x09\x07\x49\x22\xab\xc2\xc4\xcc\x9c\x43\x66\xb2\x8b\x12\x03\x3e\xee\x35\xd9\x7c\x07\xba\xc5\x28\x2d\x89\xe5\x7c\x60\x5e\x07\x95\x2e\xc2\x74\xa4\xcb\x2a\x04\xb5\x49\x2e\xc5\x0e\xee\x51\x54\x64\x91\x13\x53\x6f\xad\x63\x0a\x3b\xe7\x37\xb8\xce\x86\xd2\x03\xb9\x09\xee\x5f\xb5\xe4\x2e\x2e\xf2\xd3\xd8\x49\x0b\xb2\xe0\x93\x32\xd8\xc6\x69\x42\x9e\x83\x60\x87\x70\xb9\x92\xe2\x6d\x29\x5d\xb6\xa4\x17\x63\x13\x47\x21\xb4\x11\xb8\x56\x11\xf8\x0a\xeb\x2b\xf5\x6a\x77\x4b\xa0\xb9\x36\xb2\x16\x4b\xa0\x04\xfb\xd5\x6d\xc8\xca\xde\xd2\xe7\x3e\x31\xb9\x77\x9f\x64\x6d\xf0\xc0\xb7\x58\x1d\x55\x0c\xe1\x49\x96\xae\x46\x24\xea\xb7\xb3\x5a\x00\xb0\xe6\xfc\x88\x26\x83\xa4\x8b\xf4\x2d\xdc\x5e\x8d\xb5\x04\x03\x95\xfd\x1d\xf9\x84\xb6\xb9\x2d\xd4\x00\x58\x69\x5f\x6d\x34\xe9\xaa\xcd\xaa\x38\x8a\xcb\x3e\x62\x1e\xd8\x71\xf6\xeb\x17\xb4\xea\x5d\x99\x0c\x4c\x52\x3d\xb0\xe7\x85\xd3\x08\x50\xd6\x89\xf5\x2a\xe4\x5b\xfb\x3d\xc4\x26\x5c\x19\x99\xb5\x95\x8e\x17\x6c\x87\x8b\x1b\x1f\xbb\x71\x93\x97\xfd\x71\x94\x44\xe3\x72\x3c\xa3\xc7\x98\xef\xca\x9c\x51\x9c\x88\x3d\x3d\x85\xf9\x17\xa3\xd8\x16\x51\x98\xef\xf0\xdd\x1b\x97\x68\xb9\x44\x70\x72\x44\x91\xf5\xb8\xaa\x85\xa5\x8b\x29\xb0\x7c\x82\x29\xc4\x1f\x51\x72\x02\x71\xba\x46\xee\x85\x5b\x57\x28\x3b\xb9\xa2\x10\x09\xd6\x4a\x86\xdd\x00\x22\xf3\x5f\x0f\xbc\x19\xdf\xaf\x4f\x3d\xa5\x9f\x93\x29\x67\xcb\xee\xcb\x9a\xa7\xf0\xca\x04\x21\xf0\xa1\xf4\x98\xba\x47\x07\x33\x1e\x8e\xde\x9c\x7a\x18\x1c\x46\x9c\x88\xb2\x6e\x29\x0e\x43\x3f\x1a\x90\xfd\x89\x5a\x6a\x39\x77\x95\x70\xd7\xaf\xd7\xf0\xea\x42\x31\x10\x60\x86\x98\xcc\xe8\x3d\xbc\x30\x19\xfa\x3d\x58\x12\x16\x51\x1c\x90\x83\x6b\xba\x6e\xf5\xb6\x36\x98\xfe\x23\x8c\x08\x60\xc2\x3b\x7b\x5a\x1b\x66\x53\x35\x9a\xb3\x49\xb8\xa8\xcd\xee\xf5\x8f\xdd\xf4\x95\x33\x16\xdf\x82\x74\x1b\x34\xf5\xe2\x97\xba\x65\x52\xdd\x77\x98\x66\x02\x98\x60\x30\x42\x2e\x94\x8f\x1b\xcb\xf8\x4b\x4b\xdd\xe5\xcc\x31\x89\x95\x06\x0e\x1e\xb5\x58\x0b\xf9\xc1\x56\xad\x6b\x71\x1c\x31\x13\x0e\x21\xf2\x11\x55\xa7\x3c\xd2\xaa\xfa\x3c\xc9\x6c\x5e\x44\xec\x79\xc3\xa6\xd5\x4a\x00\xff\x84\x12\x11\x63\x0b\xf8\x3d\xde\x42\xf7\x36\xdd\x81\x88\xf0\xfb\x4c\xf1\x86\x9a\x46\x77\x91\xa7\x01\xd0\x63\x83\x18\x8c\x93\x6d\x88\x82\xf1\x62\xdf\x47\x30\x8a\x90\xa2\x83\x90\x90\xd3\x75\xa5\xcb\x30\xd3\xd3\x02\xcb\x8e\x74\xdd\x8f\x52\x9b\x0c\xa3\xc4\x3a\xdf\x3a\xec\x72\xc7\xb5\x63\xc3\x71\xed\x06\x66\x26\x51\x61\xe2\x28\x2f\x72\xc2\xa7\xc5\x51\xbc\x1a\x68\x62\x68\xb0\xd7\x85\x59\x26\x1c\x41\xb3\x80\xc5\xa7\x69\xbd\xc3\xea\xc2\x76\x97\xb8\xd2\x9b\xba\x86\xfa\xb6\x32\xd1\xba\xec\x05\x66\xa2\x7c\x85\x69\x19\xca\xbd\xf2\xe0\x16\x0c\x08\x24\x62\x7f\xca\x2f\x3c\x79\x34\x50\x8c\x61\x41\x66\x3b\x8b\xbe\x45\xcd\x97\x0c\xc2\x38\x2d\x8b\x19\xaf\x7b\xf4\xfb\x81\xda\xc7\x2f\xd4\xe0\x30\xdf\x1f\x5a\x98\x64\x18\x8b\xd3\x9e\x00\xe0\x9e\x75\x73\x4e\x0d\x80\xc2\xc6\x36\x4c\xc7\x14\xa0\x61\x2a\xdd\xd0\x1d\x0b\x37\x54\x40\xf0\xe2\x37\xbf\xd9\xd1\xdd\x76\x53\xdf\xe5\x7a\xe1\x0b\x31\x8d\xa1\x4d\x6c\x66\xe2\x19\x25\x21\x05\x1d\x36\x61\x55\xf9\xd4\xfd\xba\x5a\x8d\xd6\x4b\x18\x1c\x6b\xda\x3f\xd6\x34\xe9\x01\xf0\x78\x9f\x1d\xae\x4f\x0a\x69\x6f\x92\x3b\x54\x90\xd9\xb9\x60\x8f\x7b\x9c\x49\x4a\x9e\x5b\x88\xf5\x9f\xe9\x29\xeb\x90\x7f\x83\xbe\xc0\xd3\x18\xda\x4e\xf7\xc0\x69\x9a\xdc\x9e\x2a\xeb\xb7\xdd\x68\xaa\x64\x2e\x20\xbd\x05\x20\xc8\x37\xa7\x0a\x0e\xf9\x78\xea\xf8\x17\xff\xed\x93\xc0\x66\x10\x79\xdc\x51\x74\xe5\x03\x4f\x6e\x54\x99\xad\x1b\xad\xfb\x16\x78\x8f\xbe\x82\x6d\x17\xe3\xf3\x2a\xe5\xc5\x52\x32\xa7\xee\xaa\xed\xa0\x83\x3a\xe3\x74\xe7\x0a\xb3\x73\xc3\x77\xfc\x11\xe9\xc2\x75\x0d\x97\x2c\x04\xc5\x52\xb9\x34\x09\x45\x36\x57\x32\x10\xbb\x5a\xe5\x83\xdc\x4b\x22\xa6\xaa\xf4\x34\xf9\xc4\xf1\x03\x41\x5f\x83\x4a\x14\x40\xf1\xfb\x81\x07\xcb\xa1\xe4\x23\xc7\x4f\xfa\x48\xdd\xda\x70\x44\x22\x23\x8e\xb3\x75\x14\x63\x1a\x57\x8f\xe4\x13\xcb\xdb\x9d\x16\xc1\x25\xa6\x71\x77\x34\x2a\xac\x59\xdc\xad\x70\xe3\x6a\xea\xfb\x58\x9d\x9c\x8f\x97\xf6\x69\x84\x5c\x87\xe7\xbb\xa1\x89\xe3\x9c\xc2\x08\x45\x70\x74\x6c\x47\xbd\x05\x66\xe9\x8a\xcd\x10\x0e\x20\x56\xfc\xbf\x68\xcd\x41\x34\xf8\x43\x42\xae\x54\xad\xc1\x4b\x9d\x55\xaf\x9a\x15\xe7\x30\x1e\x84\xa2\xd4\x46\xef\xcb\x6c\x1c\x59\x54\xff\xb9\xe2\x58\xab\x3e\xfa\xc8\x7f\x2d\x2a\x46\x51\x32\xeb\xd9\x91\x47\x59\x49\x1c\x9b\x37\x3b\xf7\xf0\x49\xe0\x67\x22\x59\x87\xb8\x1c\x34\xc9\x8b\xac\x0c\x7d\x31\x17\xd0\x07\x72\x56\xad\x3d\x23\x80\xeb\xc3\x97\xfc\xc2\x42\xb7\x18\xd9\xcc\x72\x13\x10\xb8\x22\x77\x69\x97\xe3\x63\x55\x03\x89\x6d\x1e\x47\x88\xdf\x05\x42\xaf\x1e\xa0\x60\xeb\x2d\x58\x56\x5a\xc5\xfc\x33\xaa\xbe\xc7\xe6\xb1\xa2\xed\xe7\xc9\xf8\x47\x5a\x98\x70\x8b\x55\x28\x95\x48\xfa\x2a\x3d\x87\xea\x3e\xcf\x2a\x33\xcc\x71\x34\x58\xb3\xf0\x18\xa7\x6d\x81\x21\x51\xfa\x09\x81\x47\x9f\x52\xca\xa9\x85\x4d\x8a\xc8\xc4\x64\x08\xe7\xdc\xc1\x0f\x2c\x79\xad\x5c\xdf\x3d\x7a\x7c\xaa\x18\x50\x17\x95\x95\xd5\x4f\xb5\xbf\x5b\x11\x65\x19\x13\x4a\x1d\x45\xfb\xc0\xbc\xe3\x7f\xb5\xa4\x8a\x26\xeb\x47\x45\x66\x0a\x91\x3d\x03\xaf\xff\xa4\xf2\xa5\x3e\xe9\xca\xc8\x79\x91\x99\x32\xcf\x3b\x7e\x77\xd8\xac\x97\x1b\x54\x83\x4c\x6c\x4d\xc6\x28\x20\x30\xa9\x4f\xb1\x58\xe2\x3b\xaf\xa9\xfc\xe2\xac\x6e\x02\x30\x19\x89\x2a\xd0\x9f\x22\xc6\xf8\x19\xe0\x68\x3e\x51\xf5\xc5\x7e\x99\x25\xd4\x81\xe4\x2c\xe7\x17\x0e\xb9\x32\x57\x75\x89\xa2\xf3\x2a\x6b\xd0\xa0\xec\xf7\xed\x60\x87\x2f\x7c\x33\x87\xa2\xa6\xbc\x09\x18\xe1\x31\x25\x11\xf2\x57\xb5\x7b\xac\x75\x4b\x3d\x3c\x92\xf7\x2d\x74\xc7\x26\x31\x43\x01\xb8\x50\xa5\x63\xc6\x07\x9f\x28\xee\x38\xe9\x5b\x64\xeb\x79\x34\xc0\x0a\x0a\x14\xed\xa3\xc0\xfb\x0b\x7f\xe4\x16\xc3\xff\x98\x94\x5e\x2d\xdf\x36\x4e\xd7\x76\xa9\x06\x61\xf6\x06\x16\xbf\x66\xc5\x91\xdd\x00\xe2\x88\x20\x01\x84\x53\x94\xe7\x8e\xea\x8e\x69\x7a\xb8\x2e\x1d\xa9\x06\x8a\x58\xa2\xb5\xe8\x36\x76\x93\xb4\x90\x2a\x0f\x8a\xb7\xf7\xf0\x8b\x7c\xe2\xe8\xb5\x83\xa8\x8a\x8a\x07\xaa\x75\xe2\x4d\xd5\x3a\xf1\x66\xab\x26\xc8\xc8\x64\xb1\x29\x4c\xc2\x39\xb5\xb3\xf9\x71\x45\xd1\x13\x8a\x2d\x62\xc7\x11\x6b\xd0\xfb\x59\x0e\x76\x23\x1f\xeb\xf6\x8a\xc2\x14\x65\x61\x77\xd0\xcc\xe5\x4e\xef\xa9\x17\xea\x60\xec\xc2\xc9\x85\x1f\x9e\xaf\x29\x47\x49\x6b\xb8\xd6\x14\x6f\x2b\x29\x2c\xc7\x66\x32\x71\x6f\x91\x2d\x78\xd4\x74\x3e\xa5\x0a\xed\x69\x6c\xe6\x14\x7f\x6d\x6f\xaf\xe1\x98\x73\xd0\x29\x9f\xfa\xaa\xc1\x9f\xd1\x45\x23\xf4\xb9\xaf\xf2\xdd\x91\xcd\xfa\x51\x48\x63\xcd\xfd\xda\xfd\x40\x43\xf3\x9e\xa2\x48\x2f\x66\xd5\x66\x2c\xce\x80\xa5\xf2\xb6\x2a\x97\xbc\xaf\x39\xcb\x0f\xda\x84\x0b\xbb\x63\x53\x14\x56\x28\x05\x48\xfb\xb9\x1a\xcf\x27\x2a\x5c\x7c\xe9\x5b\x2f\x76\x3a\x2f\x2d\x39\x43\x03\xfa\x33\x3e\xd9\x78\xf8\xcb\x0f\xcc\x77\xcb\x24\x31\x63\xe9\x63\xc4\xd3\x81\x10\x91\xb4\x4f\x28\xc5\x05\x2d\xfd\x9e\xd9\xe5\xd8\x86\x05\x44\x17\x50\x3e\x44\xe7\x2e\xf6\x8f\x3f\x08\x94\xf0\xe4\x49\x44\x1a\xf8\xc6\xfb\x4a\xf1\x7a\x1c\xc5\x11\x49\x8f\xd7\xc4\xd4\x7d\x57\xd1\x7b\x53\x6f\x11\x31\x4e\x57\xed\x5e\xaa\x1a\x00\x35\x60\xa7\x2b\xd4\xf9\x2f\x07\x4a\x59\xf7\xa4\x56\x4c\xa3\xa9\xe7\x68\x71\x5e\xb6\x12\x2e\xea\x20\xb2\xc1\xac\x0a\xf5\xaf\x4f\xf1\x60\x91\x7d\xb1\x10\x23\x8a\x69\xbf\x4a\x23\x03\x4b\x30\x3f\x16\xc4\x4b\xb7\x1a\xbb\xc1\x81\xf9\x83\xd4\x1a\x5b\xe6\xc2\x2f\x64\x51\x6d\x45\x05\x6c\xba\x45\x55\x73\xd2\x24\x2c\xc5\xa9\x9d\x8f\xc4\x0c\xc0\x13\x42\x97\x21\x46\xe0\x64\xc9\x2e\xa9\x9a\xb1\xb6\xd8\x5a\x78\x71\x71\x46\x0f\x2f\x9a\x6c\xd2\x23\xa7\x10\xc4\xcd\x1a\x5d\xaa\x30\xe8\x87\x13\xad\x3a\x8f\xb8\xed\xe9\x79\x0e\xc7\x3d\x14\x8a\x44\x08\x45\x22\xd9\x65\x13\xc5\x65\x66\x39\x4e\x10\x19\x49\x95\x13\xdd\x55\x22\x5c\x17\xda\x50\xee\x49\x66\xc3\x28\xc7\xe4\xc2\x98\xc1\xe2\xcc\xc7\x1b\x02\x09\x0e\x6c\x98\x59\x93\x0b\x14\x20\x36\x0d\xaa\xc7\xec\xa4\xa6\x66\x9b\x89\xcd\x40\x38\x12\x9a\xb0\xaa\x0b\x5c\x0b\x34\x97\x94\x6e\x4c\x68\x13\xaa\x11\xe8\x0a\xcd\x0c\x2c\x50\xd7\x29\xdc\x64\x77\x17\x0a\x37\xa5\x55\x91\x1e\x38\x52\x8e\xb7\x69\x28\xf2\xbd\xaa\xfa\xce\xb5\xa9\xea\x35\xba\xa2\x34\x86\x46\xd6\x78\x2d\x54\x44\xbd\xa7\xb8\x3f\x9a\xcf\xd4\xdb\x8d\x0c\x88\x2f\x4e\xbf\xce\x39\x45\xbf\xa9\xf8\x7f\x57\x1a\x91\xed\xc2\xa1\x6e\x61\xa2\xa4\xa8\x97\x63\xbf\x33\xf5\x03\xf5\x3b\x2a\x4e\x5c\x4b\x93\x81\xcd\x76\xf8\x46\x6a\x68\x2d\x3a\xd1\x32\x17\x15\xbd\x4f\x4f\x41\xac\xab\xe8\x0e\x50\xd5\xbe\x1e\x28\xb7\x8b\xeb\x0a\xff\x59\x4f\xcb\xc7\x14\xb5\xef\x32\xed\xd7\xb0\xd5\x81\x6d\x31\xd0\x80\xcb\xd0\xeb\xc1\xa5\x5d\xc6\x0b\xc1\x73\xfc\x5f\x15\xce\xf0\x98\xea\xa7\xdb\xb9\xa1\x75\x6f\xa7\xbe\xd7\x67\xcf\x06\xfa\xce\xa8\x16\x29\x1c\x83\xea\x19\x8a\xcb\x23\x0d\x25\xec\x9a\xbf\xa9\x49\xf5\x6f\xe8\x7e\x9c\x74\x64\x8a\xf5\x84\x9e\x3d\xa8\x75\x58\x41\x00\x25\x5f\xa6\x47\x82\xa5\xe8\x68\x9b\x0e\x55\x62\xd7\x44\xf7\x59\x5a\x99\x3a\xf5\x0e\x6b\xe1\xee\x7e\xa7\x4d\xe3\x30\x34\xc9\x60\xbd\x6f\x32\xa4\x80\xe2\x69\xd1\x71\x52\x9c\xa7\x95\xa8\xf7\x9f\xbb\x69\x99\xd7\x76\x4b\xe7\x81\xe6\x23\xf1\xc0\x9b\x9a\x2e\x9b\xec\xa9\xce\xbe\x85\x2d\xe6\xf2\x49\xe5\x4c\xc9\x7e\x6d\x23\x99\x42\x80\xd6\xe7\x29\xd0\xc6\x8e\xf9\x53\xbc\x1c\xe4\x94\x27\xa6\x0a\x95\x62\x04\x54\x97\x95\x5d\x08\xe5\x14\xe1\x7e\x05\x05\x6e\xce\xe1\x30\x47\xa4\xc4\xe1\xc3\x12\x68\xeb\x80\x34\x2c\x72\x1e\x02\x01\xd5\x0c\xe9\xf7\xed\x93\x2b\x41\xe4\x8b\xd5\xfe\x9a\xda\x80\xd2\x95\xd8\x8c\xd2\xb1\xd1\x72\x0f\x17\xb4\xdc\x43\xd3\x30\xf9\xf0\xfc\xcb\x5d\x33\x58\x95\xba\x02\x86\x18\x8c\x83\x90\x62\x5e\x57\xe6\xc9\x7a\x01\x2a\xd2\x89\x79\xbd\xa6\x58\xec\x73\xb4\x73\x53\x3f\xdf\x00\x6f\xce\x2a\xc6\x39\x9e\x90\xa3\x9f\x57\xcf\xd1\xc5\xd0\x5e\xf9\xa3\x4d\xdd\xd9\x44\x19\x37\x7d\xf8\xfc\x07\xe3\x83\x8f\x1b\x81\xe1\x4b\x55\x26\x93\xe7\xe5\x78\x22\x6a\x96\x2f\x3b\xf7\x1e\x0f\xb8\x7c\xd7\xc9\xbf\xd8\x57\xcb\xa8\x40\x00\x09\xea\x24\xeb\x24\xf1\x89\xee\xf4\x8f\x4d\x34\xe6\x94\x4a\xe8\x5d\x7e\xd6\x5c\x50\x4f\xa0\x1f\x9b\x81\xcd\x55\x9a\x78\x47\x6b\xe5\xdf\xd1\xe8\x63\x4a\x1d\x20\x99\x28\x3d\x20\x80\xb9\xa6\x9c\x08\xaf\xa9\xa6\x48\x9b\x65\x29\xd7\x78\x31\x6d\x59\xbb\xda\x75\xdf\x3d\xef\x99\xcb\x8f\x2a\x76\xc9\xc0\xce\x50\xfa\xae\x19\x46\x6c\xbc\x0a\x50\xe8\x4e\x0b\x20\xdc\x5d\x36\xab\x69\x66\xfa\x80\x9c\x3d\x11\xa5\x1a\x28\x02\xd9\x3f\xa1\x9d\x74\xbe\x6d\xc3\x62\xae\x1a\x12\x5c\x27\xeb\xa9\x56\xe3\x8f\xa7\xfe\x01\xdf\x57\xbe\x7b\x6c\xaa\x8c\x90\xe6\x88\xc2\x23\xc2\x34\x4e\x13\xa0\x00\x6e\x41\xf6\xa5\x8f\xf3\x8d\x7e\xac\x03\xf3\xdd\x30\x4b\xf3\x3c\x36\xc9\x40\x55\xd8\x58\x84\x9e\x4f\x1a\x70\xe3\xe1\xf9\xae\x19\x0e\x33\x9b\xe7\xd1\xaa\xe5\x5a\x23\x30\x3c\xa4\x11\x7c\xac\x3b\x49\xed\xa0\x0c\xa9\x0e\x3b\xeb\x99\x3a\xb7\x54\x51\x1e\x6d\x56\x08\x1b\x58\x56\x1f\x31\xf3\xe5\x46\x7e\xb4\x6f\x5f\x77\x10\x65\x36\x84\xc3\x18\x82\x92\xa3\x8a\x64\x7a\xd4\x75\x2b\x4e\x4c\xc6\x84\x31\xe9\x8c\xe9\x38\x99\xb2\x27\xe8\x75\x8a\xf8\x3f\xdd\x2e\xca\x48\x1d\x27\xa4\x99\xaf\x45\xcb\x05\x45\x44\xda\xe6\x19\xf1\xe2\x23\xb4\x62\x89\xbf\x56\x6d\xf5\xf3\x1b\xf5\xfa\xeb\x56\xc3\x18\x5c\x27\x12\x55\x4e\x5f\x54\x2d\xb3\xc2\x94\xf1\x40\xa8\x98\xa2\x59\xa0\x5a\x0f\xa0\xf7\x54\xf3\x0e\xc7\x66\xb5\xab\x27\x57\x3b\x32\x59\x3e\xda\xe1\x2b\x7c\x90\x73\x47\x2c\xf7\xde\xb4\x49\x18\x44\x00\xc7\xd2\x7b\x4e\x17\xe4\x80\x6c\xbe\x7f\xd9\x66\x5d\x48\x59\x31\x8d\x13\x61\x63\xf9\x42\xd5\xd9\xc0\x37\x56\x87\x23\xbb\x26\xd4\x13\xb1\xe7\xf2\xda\x17\x17\x35\x6f\x3a\x5d\xef\x5b\x46\x93\xc5\xd1\xae\xa3\x94\xa3\x7c\xf6\x15\xc6\x26\x27\x7f\x79\x85\x3c\xa3\x3f\x51\x16\xc5\x16\x9e\xfa\x6a\x9a\x0f\xad\xec\xba\x20\x0b\x30\xb9\x9d\x0b\x74\xd3\x9a\x3e\xc9\xe3\x4a\xe9\x28\xeb\xa7\x19\x8d\x30\x59\xb4\xe8\x11\xca\xaa\x55\x93\x2e\x7f\x1d\xdd\x4f\x9c\x46\x29\xa0\x17\x2c\x0f\x6e\xd1\x6d\x40\x6b\xd5\x96\x32\x89\x86\xbc\x4a\x3b\x07\x1b\xef\x66\xa3\x1a\xce\x96\xad\xc9\x72\x92\x8c\xd3\x32\xcd\x1e\x46\x6a\xec\x57\xfb\xf7\x33\xb8\x8c\x7c\xa1\xcd\x9b\xf2\x69\x37\x4d\x28\xc5\x37\x85\xcc\x65\x2c\x86\x78\xb8\x7c\xdc\x08\x68\xaa\xd1\x90\x02\xa6\x5b\x74\x46\xae\xd5\xb7\x4b\x1f\xc7\xc3\x6f\xe3\x17\xba\x93\x98\x4a\xf9\x1d\xdf\x7b\x79\x51\x45\x22\x17\x95\x76\x94\x5f\x93\x54\x16\x73\x93\xf7\x7c\x3e\x73\x9d\x30\x51\xf2\x6a\x19\x79\x5c\x87\x35\xdb\xe9\x5a\x44\xbf\x5d\xfe\x74\x39\xb6\x83\x61\xec\x70\x56\x69\x59\xea\xb8\x26\xf4\x63\x54\x07\xde\x68\x85\xb5\x07\xb6\x2f\x2a\x19\xc8\xb8\xfe\x6d\xe0\x85\x5c\xff\x6d\x6d\xb1\xab\x16\x9e\xb1\x4d\x0a\x12\x8a\x67\xf6\x9a\x1a\xd6\xdb\xb8\x29\x09\x91\xf1\xe7\x88\x97\x50\x33\xdd\x4d\x64\x0d\x4c\xd4\xeb\x81\x2a\xcd\x72\x7b\x21\x32\xff\x1b\xda\xd7\xe6\x19\x22\x9e\x49\xd7\x97\xaf\xea\xc0\xf3\x34\x07\x31\x9b\xa5\x73\x69\x3c\x8a\x8c\x6e\x4b\x22\xda\xcf\x4c\x3e\xa2\x01\xc3\x5e\xa0\xf4\x18\xc5\x17\xf4\x71\x05\x03\x14\x26\x8a\xf1\xd5\xce\xbc\xfa\x79\x6f\xa2\xd4\x32\x5a\xd6\xa2\x8c\x19\xdf\x62\x00\xe2\x59\xf5\x7a\xed\x00\x29\x6b\xb7\x2a\x04\xfe\x41\xe0\x47\xcc\x59\xca\xdf\x91\x8d\xff\x58\x69\x69\x6d\x61\x51\x43\x49\xe0\x26\x71\xf4\x64\x58\x55\xd7\xc5\x1f\xd0\xca\x2b\x9f\x41\xb7\x53\x06\xa2\xca\x18\xab\xc7\xb6\x9b\x1e\x30\x52\xe6\xed\x1b\x1e\x27\xbb\x3c\xf5\xb3\x7b\xb6\x47\x01\x1a\x6a\x8e\x3b\xc0\x35\x67\x12\x00\xfd\x28\xf2\x0c\xf4\x56\xb3\xb9\x1e\x16\x11\xd5\x83\x7e\x80\xa3\xf7\x9d\x3d\x25\x91\x9d\xc6\x36\x2c\x63\x93\x61\x72\x09\xa7\x5e\x41\x0f\x35\xd4\x6d\x14\x11\x21\xd0\x57\xda\x4e\xd2\x73\xf1\x09\xba\x22\x1d\x90\xb6\x5f\xf5\xd2\x64\x66\x78\xb1\x6d\xad\x0c\x1d\x8e\xcc\xa4\xa8\x92\xbf\x03\xf3\xce\x1c\x41\xe5\x72\x68\xcd\x41\x39\xe7\x96\xf2\x14\x65\x38\x18\x2f\x81\xc5\x47\xd9\x9d\xb0\xcd\xe3\xd2\xf3\x7d\xdd\x8c\xc4\xf8\x41\xa8\x85\x51\xa7\x8d\x7a\xdf\x6f\x95\x82\xe1\x26\x29\xd7\x27\x8e\x26\x2b\x31\xb2\x7c\x4c\xc3\x93\xe3\xc9\x17\xdb\x8b\xf9\x6d\xbb\x78\x1d\x1d\x96\xe2\x7a\xa5\x12\xa0\x0b\x8a\xe8\xf7\x7b\x6e\x07\x5f\xb1\xeb\x89\xcd\x23\x93\xe4\x33\x4a\x17\xf3\xa7\xbc\x5e\x21\xc6\xd8\xd2\x96\x9f\xb7\x1b\x13\xe4\xeb\xdd\xbe\xc9\xa3\x10\x6f\x1c\xc3\xee\x07\x53\x0f\x25\xff\x40\xd5\x48\x4c\xf8\x6a\x19\xe5\x20\xd6\x3b\xdb\xd2\x8f\xa7\x5e\x0c\xe0\x63\x35\x9b\x06\xe9\xeb\xd6\xd9\x0d\x71\x57\xdb\x54\xf3\xf6\xb4\xdd\xd0\xf1\x46\xcf\xc9\x3f\xec\x86\xd1\x2a\xab\xae\xb7\x1a\xae\xf8\xc2\x70\x94\x2c\x47\x49\x54\x44\xc8\x1d\x44\xe4\x40\x35\xc2\x6c\x36\xa2\xcf\x85\x43\xdd\x51\x5a\xe6\x76\x94\xc6\x88\x3e\xc5\xbb\xcf\x67\x52\x67\x1b\x20\x5b\xb5\x6b\x66\x76\x58\xc6\x5e\x68\x5a\xe0\xd0\x8e\x93\xb3\x6b\x5a\x9b\x7d\xed\x6b\xdd\x41\x62\x54\x9c\x71\x47\x43\x95\x77\x1a\x2f\xe4\x05\xaa\x02\x22\x94\xc6\x48\x87\xd2\x14\x1f\x2b\x1a\xfa\xc0\xae\x9a\xb8\x34\xde\x05\x80\x0d\x82\x69\x10\x8b\x59\xf0\xc3\x03\xf7\xc0\x7c\x37\x9f\x44\x19\x47\x33\x22\x6e\xe8\x23\xfc\x53\x8d\xa1\xfe\xf5\xee\xc4\x66\x63\xa7\x2a\x2d\xc4\x53\x05\x5c\x68\x9b\x99\xbe\xc5\xf3\xf1\xc8\xfa\x99\x40\x9b\x76\xb5\x0c\xc0\xdc\xda\x15\xc6\xd4\x80\xb2\xfc\x33\x4c\x10\x3e\x51\x09\x95\xc9\xb2\x74\x8d\x71\x69\x30\x17\xf8\x61\xf2\x49\xe3\xda\xf7\xed\xeb\xe6\x69\x9a\xd8\x6c\xc6\xd3\x7e\x6e\xa3\x9c\x85\x28\xff\x3b\x58\x0b\x11\x5b\xdf\x55\x5d\x78\x60\xfe\x14\x26\x19\xcc\x55\x0b\xbf\x2e\x18\xb0\x1c\x0d\x0d\x7c\x47\x92\x38\x3c\xcf\xd3\xf6\xaa\x66\xcb\xfd\x4e\x63\xe8\x91\x97\x50\x99\xad\x46\xab\x76\x00\x44\x45\x24\x75\x69\x44\xe1\xaa\xae\x2a\xef\xa5\xa3\x1a\x80\x1b\xd8\xa7\x94\xa8\xf9\x6e\xa2\x00\x50\x32\x36\xfe\x7b\x10\x34\xc6\xb5\xed\x80\xee\x3c\x70\xc0\xbf\xbd\xa1\x00\x6e\x2d\xbe\x31\x43\xda\x4a\x58\x34\x99\xa9\x86\xdd\xe2\x32\x0a\xd5\xac\xef\x5b\x97\x27\xaf\x1e\x06\xe8\x41\x37\x89\xac\x80\xa9\x7d\x65\xda\xf9\xa5\x83\xde\xde\x5b\xab\x54\x1d\x98\xc7\x4d\xfd\xfa\xdf\xe9\x69\x59\xa1\x07\x53\x9f\x06\x81\x87\x8c\x0c\x77\x57\xaf\x25\xfc\xcf\xe3\xb4\x40\x7e\x2e\xfb\xbc\xc2\xa2\x36\x1b\xf1\xc4\xd7\xbb\x99\xe9\xf7\xd9\xa0\x91\x75\x3b\xe8\x89\x8a\x86\x47\x4d\xaa\x2f\x09\x89\x2d\x0a\x96\xf8\x95\xa9\x22\x33\x5d\x09\x7c\x2b\xc4\xd1\xa9\xee\xb0\xbc\x85\x0a\x03\x32\x16\x2f\x54\xb6\x36\xb2\x99\x5d\xb5\x59\x87\x04\xec\x58\x39\x87\xbe\x44\x54\x74\x1e\x5e\x1d\x16\x17\xbb\xa3\xa8\x98\x53\x8a\x57\x50\xda\x41\xa2\x7a\x09\xaf\xcb\xa1\x17\x4e\x6f\x94\x3b\x2b\x90\x97\x5d\x72\x79\xe7\x98\x1a\xb8\x5d\x8f\x3e\x04\x7a\xe5\xa4\xe7\xe7\xd1\xda\x28\x0a\x47\x4f\x55\xaf\x12\x75\xbd\xcf\x94\xc3\xcc\x03\x4c\x0f\x76\xfe\xa0\x41\x8e\x24\xfe\x06\x1e\x3a\xfe\xe1\xc9\x8d\xce\xbe\x7d\x7c\x61\xff\xa6\x5e\x22\xec\x7c\xe3\x57\x7c\x46\x75\x60\xbe\x0e\xd3\x38\x97\x23\x37\x8a\xff\xd9\x93\xbd\x6a\x18\x8a\xc4\x99\x2f\x05\x03\x91\x05\xc9\xf8\xad\x87\x9c\x78\x3a\xca\x4b\x4e\xc9\xae\x3c\xd2\xf3\x0d\x35\x77\x9e\xec\xed\xf5\x79\xa1\x4d\x69\xcf\x72\x8d\xbc\xcf\xfb\x6e\x66\x25\x62\x15\x85\x2b\xa8\x91\xb3\x2f\x10\x8d\x76\xf1\x08\x6a\xf1\xe9\x7b\x68\x3b\xd0\xd9\xba\x74\x97\x38\x3c\x94\xda\x65\xb9\x2a\x27\xfc\x20\x5f\xc2\xe3\xdc\x58\xa8\x7b\xbe\x9e\xa7\xba\x81\xfd\x3b\xe2\x5e\x41\x3e\x69\x6c\x9e\x0b\x87\x88\x90\xa5\xf4\xa9\x37\x6b\x0a\x0d\x8a\xc9\x90\x8f\xd2\xac\x30\x43\x9b\x77\x94\x76\xd3\xd5\x40\xc9\x32\x5d\x55\x40\x59\x99\xc4\x36\xcf\x77\x57\x4f\x05\xeb\xc9\xec\x86\x9f\x62\xf7\x00\x7a\x8a\xbc\x2d\x7d\x85\xe8\xde\x2a\x44\xea\xba\x72\x4f\xf9\x1e\xbd\x08\x17\xba\x3a\xc1\xb0\xcf\x68\x18\x08\xaf\xd5\x6f\x2e\x69\x3f\xb7\x19\x4b\xa1\xb1\xca\x87\xe2\xe1\x5e\x6c\x80\x8b\x54\x17\xb3\xb1\xed\x67\xfe\x25\x21\x62\x9c\xaa\x46\xdd\xa9\x9f\x3f\x51\x32\xd8\xe1\x7b\xf8\x28\x9e\xdd\x7a\xb4\xa7\x0a\x7f\x9b\x4a\x74\xf8\x9a\x5e\x85\x78\x99\x04\xe4\xfb\x89\xda\xb3\x5e\x2d\xc9\xe3\xc5\xd1\xac\xa8\x1f\x51\x8e\xa7\x5e\x2d\x75\x60\x09\xe3\xa5\xca\x83\xce\x83\xb1\x35\x9d\x99\xfa\xf4\xef\x87\x8e\x93\x18\x47\x7d\x1b\xcf\xf8\x75\xf1\xbe\xfa\xc4\x65\x6d\xb8\x76\xa6\xf1\x68\x0e\xbd\xd8\x8d\xed\x30\xca\x63\x53\xa4\x19\x18\x50\xc2\x4a\x51\xd5\xe9\xa6\x3c\xc0\xf3\x8b\xf5\x5a\x0e\xea\x3f\x1f\x28\x11\xd9\x0f\x54\x75\xf8\xf9\x03\xbf\xc8\xd8\x92\x33\x6a\xf1\x23\xe1\x9c\x8a\xb0\xcf\x69\x51\xed\xd9\xde\x1e\xf7\x0d\xe5\xe4\x31\x95\x3b\x5d\xd2\xbb\xe4\x7d\x1a\x3d\x20\xde\x7d\x05\x33\x1f\x13\xeb\x06\x61\x7a\xa2\x67\x54\x0d\x37\xc0\x70\x5f\xee\x39\xf6\xff\x61\x01\x1b\x76\x6c\x78\x94\xe2\x4b\x1b\x8e\xba\xfc\xd5\x27\x60\xc1\x20\x16\x16\xbe\x31\xec\xa4\xae\x34\x3d\xa0\x5a\x04\xed\xe0\x97\xff\x41\xaf\x45\xee\x20\x34\x59\x3f\x45\xe5\x06\xbf\x71\xa3\xc6\x61\x50\xdc\xe6\x26\xc9\x57\xc8\x95\x71\x6a\x92\xd9\x6a\xb9\x95\x7e\x62\x8f\xaf\x41\xad\x19\x4b\xf2\x8f\xa7\x8a\x35\x72\xb3\x56\x89\x24\x7b\x63\x25\x1c\x5e\x3d\x37\x11\x14\xd7\x0a\xac\x45\x16\xf5\x4b\xc4\x93\xd5\xcd\x23\x86\x79\x67\xea\xc3\xdb\x77\x1c\xf8\x31\x88\xf2\x61\x99\x3b\x45\x62\xdc\xdc\xbf\x0b\x3c\x9b\x9e\x5b\x15\x25\x5c\xf4\x39\xde\x24\x43\x23\x59\xc7\x29\x57\xbf\xa7\x84\xfc\x9b\xeb\xec\xe1\xf9\xc5\xae\x29\x0a\x3b\x9e\x70\x0c\x20\xca\x34\xf4\xf0\x44\xb2\x46\xd6\xd9\xd8\xbc\x66\x20\x97\xe8\x1e\xf9\x76\x45\x09\xda\xbe\xe1\xa1\xad\x3c\x1c\xd9\x41\x19\xa3\x59\xc4\x11\x30\x75\x43\x92\xdb\x6f\x8f\xab\x51\x74\x1c\xab\xa3\x34\x6a\xa9\x42\xca\xc4\x1a\x09\x64\x45\x22\xc4\x3b\xe4\x9d\x57\x64\xc2\x62\x94\x95\x44\x60\x76\x71\x07\x52\x67\x3e\x6e\x73\x7e\x9a\x64\x69\x61\x43\xe9\x6a\xe6\x3e\xc0\xe9\x54\x79\x44\x4c\x1b\x05\x99\xfd\xfb\xbb\xa1\xcd\xcc\xd8\xf5\xb1\x3b\xf1\x3c\x07\x80\x5c\x74\x8c\x9e\x70\x64\x92\xc4\xc6\xb4\xfc\x21\xae\x38\x19\x68\xb3\x58\x3c\x0e\xde\x8e\x03\xd5\x8a\x8b\x4c\x00\x9d\x66\xdc\xb2\xc1\x9d\x5b\x8d\x0b\x22\xfb\xf7\x3c\x1a\x26\x75\x11\x36\xa8\x14\x89\x55\xa7\x03\xd1\xd3\x32\x23\x10\x5c\x32\x60\x62\xee\xa2\x62\x87\xec\xe6\x2c\xcd\x73\x61\xd9\xb5\x38\x1a\xbf\x5a\x46\x85\xe9\xc7\xd8\x30\x84\x5d\x40\x57\xc8\x27\x0d\x8c\xff\xeb\xdd\x3c\x2d\x8b\x91\x19\x53\x18\xe0\x4a\xf2\xd5\x47\xf8\xc4\x55\xa2\xe0\xa8\x85\x18\x5e\x7b\x56\x73\x01\x51\x49\xf3\x7c\xe0\x1e\x72\x66\x29\xf0\xa7\x5a\x04\x22\x67\xc6\xf0\x91\x07\x43\xfe\x17\x6b\xf9\xc7\x53\xa5\xe3\xd9\xd4\x42\x79\xe5\x95\x6e\x18\x97\x45\x38\x9a\xf1\x20\x1c\x07\xf1\x58\x51\x6f\x2b\x43\x83\x53\x8d\x49\x55\xa5\x21\x22\x5b\xd4\xf1\xb0\x05\x32\x41\x3e\x56\x90\x5e\x98\x82\x49\xa9\x35\xbd\xb8\x72\x2c\x55\xf2\xa6\xb3\xc6\x12\x4d\xf5\x34\xe7\x5c\xb3\x55\xd7\xab\x8d\x93\x32\x32\x4c\xc6\x90\x11\xe1\x73\xb7\x73\x6d\x05\xea\x41\x1a\x96\x63\xc2\x9b\x5d\x9b\xe2\x39\xd5\xa6\x78\xae\xb5\x7b\x22\x4c\xc7\x93\x28\x96\x71\xc8\xa2\x25\xf4\x29\x11\x30\xf1\xb4\x81\x24\x7d\x76\x67\xc7\x59\x64\x5d\xd7\x60\xde\x6f\xe0\xf5\x39\xc1\x24\xe7\x22\xdb\xc1\x86\x84\x55\xf6\xaf\xa7\x35\x69\x31\x7a\x02\xd8\x60\x2f\xb7\x28\x15\x76\x07\x76\xd9\x26\x03\x61\xae\x3a\x2b\xcb\x2a\xe3\xe0\x93\xe0\x99\xba\x39\xd3\xe2\x62\xf7\xf0\xfc\xd2\xe3\xf4\xc5\xf8\x49\x56\xf9\xc1\xdb\x41\x89\x58\xc0\x4b\x4a\xee\x50\x8c\xba\x8c\x98\x4d\x36\x71\x5a\xd8\x64\x17\xaf\x36\x09\x4c\xe4\x1b\x14\x8e\x09\xd3\x83\x6e\x05\x5b\x11\xda\x19\x70\xc3\xdb\x41\x7d\xc7\x02\x01\x0e\x30\x18\x24\xdc\x2d\x88\x6c\x72\xb6\xa7\xf8\xf5\xd7\x68\xfe\xa2\x2c\x75\x52\xc9\x1e\x78\x58\xab\xe3\x8b\x5d\xc0\xe6\xf8\xd8\x71\x72\x56\xa2\x2c\x0f\x47\x09\x33\xde\x6b\x66\x3c\x62\xb9\xa3\x80\x69\x53\x0e\xcb\x28\x99\x51\x55\x33\xc8\x54\x62\x39\xe1\x32\x19\x57\xb1\x36\x7c\xf6\xb0\x62\xd7\x77\xa9\x9b\xfb\x70\xaa\x5a\xbc\x7e\x86\x74\x5f\x0a\x27\xbe\x97\xea\x1e\xed\xb2\xbc\x2c\x06\xaa\x79\xe8\xbc\x6e\x3b\xba\xab\x72\x80\x53\x7e\x2d\x8e\xa3\xb1\x29\x20\x63\x2c\x29\x93\x62\x66\xdd\xa5\x71\x2a\x76\x52\x0a\x91\x7f\x57\x81\xae\xc3\x0c\x45\x6d\x87\x01\x43\xd6\x4d\x0c\x64\x9e\x56\xb8\x77\x4c\x95\x0c\xc6\xdf\xf1\x2c\xe6\x90\x3a\xf2\x49\xcf\xe3\x7a\xfd\x74\x40\xe2\xee\x4e\xe2\x99\x5b\x4e\xc5\x5e\xcb\x6f\xb5\xdb\x7a\x4d\x2e\xca\x52\x37\x1c\x84\x4a\x53\x7c\x53\x1b\xb4\x6e\x3a\xba\xb2\xc9\x72\x9b\xf0\xb2\xc1\x75\x48\xba\x65\xa9\x49\x3e\xe9\xba\x18\x6c\x36\x44\xf1\x9e\x9e\x29\x86\xd2\x47\x58\x62\xf8\x44\xd5\xb2\x58\xd7\x36\x9f\xa5\x19\x20\xa2\x6e\x1e\x58\x45\xcf\x15\x1f\xd3\xeb\xe3\xbf\x51\xbd\x5a\x6c\xcd\x9e\x17\xc4\x46\x16\x45\x7f\x1a\x1d\x78\x07\x37\x91\xec\xf0\x09\x3d\x0f\x57\xfe\x5c\x74\x96\xa3\xdb\x19\x0c\xc1\x03\xfe\x49\x0b\x0d\xf3\x60\x77\x10\x2d\x2f\xdb\x0c\xc5\x4c\x26\xf6\x2a\xae\xe2\xd1\x36\x43\x8e\x28\xb1\x93\x82\x52\x4c\x31\xfa\x55\x0e\x7e\x3f\x9e\xaa\x44\xa6\xc6\x00\x29\xa3\x3c\x47\x93\xb4\x36\x91\xac\xf1\xcb\x10\x56\xde\x6f\x29\xc9\x2f\x74\x6d\x12\xa6\x65\x66\x86\xd2\xef\x81\x30\x06\x46\xd2\x12\x4b\xd1\x20\x11\xb1\x81\x5a\x27\xe0\xeb\xeb\x5f\xc8\x58\xf4\x6c\xcc\xe5\x32\x8e\x1f\xc3\x23\xc3\xcd\xbc\x8b\xbd\x0e\xe0\xc2\xbf\x57\x09\x3d\x4b\xc5\xb1\xa6\x2c\x1a\xd5\x58\x45\x34\x50\xad\x60\x7f\x33\xf5\x7e\x37\x1f\x28\xfb\x3f\x6e\xda\x01\xae\x77\x37\xf0\x66\x09\xfc\x5e\x85\xfa\x50\xad\x5c\x7c\x25\x41\xdd\xc0\x54\xc5\x03\x2d\x76\x5a\x07\xbb\x5f\xfd\xd6\x3f\x5d\xfa\xd6\x37\x16\x77\xd2\xf5\xb3\xf5\x03\x98\xdc\x32\xa1\xfc\x22\xc2\x16\x77\xca\xda\x54\xb4\x27\xde\x52\x63\x15\xf4\x02\x44\x81\x3b\x36\x9a\x2d\xf0\xfd\x32\x86\xcb\xa8\x00\x2b\x4a\x2a\xf1\xbd\x46\x66\xb8\xf4\xe2\x41\x6a\x5f\x43\x07\x23\x7d\x0e\x75\x23\x74\x40\xf1\xb1\xca\x2f\xcc\x9a\x68\xc0\xb1\xb5\x40\xe0\x13\x94\xa3\x2d\xe6\x71\x4b\xdd\xe5\xd8\x0c\x99\xb0\x29\x98\x89\x4a\xaa\xee\xd7\x72\xfa\x86\x56\xea\x7c\x37\x33\x99\xd5\xae\x52\x68\x2f\x93\xb2\x9b\x9e\xef\x05\xd7\x67\x95\x97\x57\xe0\xd9\x26\xe7\x75\x84\x13\x65\x61\x29\x9e\x58\x78\xc9\xbc\x6a\xf3\x49\xe3\x42\x9e\x5f\xec\xf6\x53\x66\xaf\xa0\x86\xca\xb0\x0c\x9f\x04\x9e\xd4\x9f\xaf\x99\x09\xda\x15\xb1\x80\x1f\x23\x0c\x84\x8f\xd5\x52\x9c\x97\x13\x9b\xad\x46\x39\x13\x00\x30\x3a\x6b\xd2\x13\xe7\x6b\x4a\x18\x2b\x2b\xe8\xd3\x10\x0d\xc2\xea\x52\x90\x1b\x7f\xac\x75\x96\x3e\x6a\x84\xb9\xaf\xbc\x22\x0e\x7e\xf4\x18\xf1\xac\xdf\x56\x8b\xf7\x45\xdd\xf9\x70\xb5\xcd\x7b\x37\x1d\x47\x49\x5a\x72\xba\x83\x6d\x0e\x28\x00\x1f\x37\x02\x9b\x43\x2f\x76\x97\x6d\x46\xfa\x63\x08\x39\xb1\x10\x21\xe4\xe4\x63\x4d\x64\xb7\xe3\x34\xcc\x4c\x11\x85\x33\x1e\xed\x03\x63\x13\x6f\xe4\x47\x5a\x47\xf3\x7c\x23\x67\x92\xec\xd9\x44\xe1\x28\xc2\x6b\x65\xb3\x10\xbd\x40\xfc\xa4\x8d\xbf\xb0\x6a\xb2\xc8\xf2\x45\x4a\x33\x8e\x2a\xa2\x6d\xba\x7d\x7a\x62\x4d\x38\x92\xcd\xc7\x95\x28\x9d\x85\xaf\x17\x4f\xed\xa7\x49\x4a\xee\x15\xd8\x16\x2e\x28\x39\x5c\x46\x3e\xf0\xa6\xe0\xb8\x84\xb8\xf5\x71\xcc\x7d\x69\x1e\x6f\x33\x1f\x20\xc1\x4e\xe5\x37\x0e\xfc\x87\x8f\x5b\x66\xde\xc1\x6e\xbf\x8c\xe2\x02\x0e\x01\x8e\xed\x53\x8d\x00\x6c\x96\xb7\x08\xd2\x67\x41\xb1\xc6\x9e\x74\x78\xbe\x3b\x89\xad\x47\xd2\x00\x2d\x5d\x55\x92\xae\x57\x5b\xa8\x26\x5d\x6b\xb2\x84\x87\x89\xf4\xb4\xd5\x58\x70\xf2\x8c\xb2\x28\x4c\xd9\xb6\x45\x14\x00\x3b\xce\x36\xe6\xb2\x72\x51\xbc\x35\xf5\xfd\x87\x67\x74\x75\xe2\x89\x9e\xbc\x98\xe1\x28\xcd\x8b\x78\x7d\x46\xab\xb7\x4d\x7d\x4a\x70\x57\x75\xb8\x9d\x99\x7a\x49\x5d\x27\x33\x11\xa5\xa4\xcd\x24\xe4\x88\xfb\xb4\x0f\x60\xbe\x32\x8d\xdb\x29\xb8\xbb\x10\x65\x53\x05\xd9\x27\x6a\xd3\xb4\xb0\xac\x43\xef\x64\xdf\xaa\xe7\xff\x1f\x60\x0f\x4d\xd2\x2c\x1c\x61\x43\x96\x7a\xa6\xff\x1d\xa6\x0e\x71\xa0\xdd\xa6\xb1\xb9\x96\x56\xf1\x13\xad\x0c\x92\x42\xd1\x20\x01\x98\xf5\xbf\x21\xcc\xc7\x53\x39\xdb\x18\x57\x87\x5e\xec\xf6\x33\x71\x48\xc2\x2f\xf2\xc6\xc3\x27\x8d\x14\x8c\xc2\xba\x91\x49\x86\xc2\x8c\x77\x12\x99\xd5\x83\xe2\x93\xc6\x3c\x3b\x30\xdf\xcd\x0b\x2b\x92\x42\x4e\x35\x0c\x57\x2a\x12\x62\x7b\x55\xb1\x33\xee\xd4\x3a\xc8\xe9\x21\xf0\x49\xf0\xb4\x12\x74\x0c\x47\x49\x1a\xa7\xc3\xf5\xc7\xe9\x5a\x18\x75\x83\x9c\x3f\xe0\xc1\x8b\xf8\x0d\x17\x07\xb8\x36\xda\x37\xa6\x5a\x20\x4c\x49\xa6\xb2\xbf\xb4\xa8\x4c\x57\xc3\xaf\xb6\x6f\x89\xa3\xa5\x97\x83\xff\xaf\x4f\xd2\x90\x01\xcc\x7b\x44\x65\xa3\x9b\xba\xa9\xfe\xb7\x11\x6c\x88\x33\x52\xb5\x41\xf0\x95\x28\x3e\x7c\x91\x95\xe1\x0a\x22\x6e\xed\x04\xc9\x54\x1d\x1d\x40\x7f\xdc\x50\xab\xfc\x47\xdd\xb0\x94\xc2\xad\xc8\x30\xd0\x63\xe1\x13\x45\xc2\xce\x27\x58\xf0\xb0\x10\xfd\x01\x05\x38\x7c\xdc\x08\xfa\xf6\xed\xab\x52\xfb\x65\x0b\xfa\x56\x8c\x25\x88\x69\xd0\x34\x0b\x84\x12\xfd\x98\x62\xd1\xa5\xb9\x7d\x84\x6e\x17\x89\xcb\x87\xf4\xe0\x1d\x85\xdc\x59\x58\x7c\x27\x50\xc3\x86\xc8\x6f\xcf\x6d\xdd\x9b\x7a\x22\x0c\x93\x93\x58\xba\x60\x5a\xe7\x85\xcf\x4b\x7b\xf1\xd4\x37\xa3\xdd\x6b\x98\xae\x56\x11\xce\xb2\x1d\x58\x54\x05\x34\x52\x40\x0f\x53\x20\x84\x36\xbf\xff\x34\x2d\x46\x42\x1a\xd9\xc2\xbd\xe2\x55\xde\x53\x9c\xd2\xf3\xaa\xd7\x71\x6d\x3d\x49\x10\xe9\x80\x23\x71\x4e\x2d\x64\x77\x54\x45\xef\xb4\x16\x25\x1d\x99\x22\x1c\x59\x52\xc8\x90\xc7\x72\x0e\x8a\x62\x22\x08\xd1\x71\x92\x55\x17\x58\x5d\xcc\xc9\x46\x1c\x9e\x77\x35\x5d\xdf\x8e\x78\x56\xa1\x77\x17\x90\xf4\xf3\x3f\xd4\xd4\xa5\x56\x0d\x78\xb2\x0e\xe9\xf4\x02\xdb\x9b\xea\x06\x8f\xd7\xdb\x2f\x15\x7f\x27\x36\xeb\x05\x43\x94\xb8\xc7\x93\x3a\x19\x3f\xd9\xca\xc4\x88\xb2\x34\x1f\x45\x63\x70\x24\xa4\xa4\xaa\x04\xce\x9a\x9d\x8a\x4b\x07\x96\xba\x66\x30\x00\xf9\xc8\x7b\xfb\xc8\xea\x3f\x2e\xf3\xc2\x70\x73\xa2\x34\x3b\x7a\x3a\x7f\xb3\x07\x68\xff\xfe\x6e\x3f\x4b\xcd\xa0\x4a\xb6\xaa\xc9\x29\xae\xee\x1e\x7c\x68\x2a\x55\xee\xdf\xdf\x5d\x2e\x93\x84\xc9\xd6\x7a\x8b\x91\x86\x66\xe5\x16\x5c\xe6\x23\x76\x80\xc5\xd7\xfd\x44\x83\x28\xcd\x10\xa4\xda\x03\xbb\x26\x8e\x56\xd8\x59\x08\xc9\xc8\xbb\xf4\x3a\x01\xcd\xc1\x7b\x5c\xaa\x99\x2d\xa4\xb7\x49\x99\xa0\xe8\x04\xd2\xe2\x19\xba\x7f\x3e\x56\x20\xc1\x8a\x49\x72\x93\xe3\x57\xf0\xaf\x50\x84\x44\x1b\x33\x04\xa4\xb0\x05\xfe\x58\x31\xd4\xfb\xd1\x8a\x05\xbd\x59\xdc\x44\x3b\xde\x75\xa2\xf6\xd4\x94\x27\xce\xef\x2b\x26\x51\xb5\xcf\xc6\x26\x4a\xec\x60\xb6\x5a\x97\xb7\x3e\xa0\x5b\xc3\x0f\x5d\x9e\x7a\x09\x36\x82\xa7\x0e\x6e\x7d\xd0\xb6\x79\x14\x59\x99\x17\x16\x38\x3f\xf2\xbb\xd3\x8a\x87\x73\xda\x77\xaa\xa6\x24\x60\xc0\xd0\x25\xbb\x05\xe3\xf9\x8b\x75\x70\x13\x6e\x5f\xea\x8e\x6d\x52\x18\x17\xaa\x3a\xc3\x91\xea\x7e\xc4\x70\xc4\xb7\x03\x57\xe9\x52\x98\x45\x7d\x9b\x01\x70\xc1\x10\xb8\xa5\xfa\xdb\x6f\x35\x6e\xe1\x25\xd2\x57\x4b\xc7\x42\x57\x76\x1b\x4a\x35\xb3\xa4\x7a\xdc\xd2\x86\x3a\xc9\xa2\x22\x5a\x81\x55\xee\x92\xd3\x78\xc0\xdd\x89\xca\xc3\x17\x3e\x2e\x8e\xf7\x91\x2a\x22\x72\xe3\xae\x18\xdd\x65\xbc\xa5\x4c\x1c\xfb\x51\x32\x60\x96\x9b\x16\x30\x17\xf8\x46\xb7\x91\x8c\xec\x18\x31\x8b\x5a\xbb\xa5\x59\x0a\x0d\x43\xa2\x45\xe6\x25\xa0\xec\xab\x25\xb1\x08\x49\x5c\x98\x61\x38\xbc\x1c\x20\xe2\x97\x68\xb3\x65\x73\x9f\xc0\xf7\x55\xfd\x2b\x2d\x5f\xf2\x47\x8a\x20\x1a\x47\x45\x11\xdb\xc7\x15\x38\x80\x65\x10\xcb\x23\x50\x4d\x6c\x9d\x77\x69\xd3\x91\xf2\x4b\x4d\x6a\x4a\x41\xa7\xe7\x54\xb7\xd6\x15\x84\x01\xd8\x56\xfe\x7b\x4d\x93\xdf\xa4\x7d\x08\x1b\xdb\x7d\x6c\xea\xae\x37\x74\xdf\x82\x67\x76\xec\xdf\xcf\xc9\xcb\x15\x84\x01\xa8\x33\x5f\xa2\x46\x36\x36\xc1\x57\xf9\xeb\x24\x9a\xd8\x38\x4a\x74\xbd\xfb\x9a\xca\x8d\xaf\xb9\x3a\xf0\x38\x4d\x0a\x0b\xf3\x94\x9a\x77\x32\x00\x85\x6b\x81\xa6\xae\xbc\xdd\x06\xa1\x8f\x4d\x62\xcb\x55\x46\x51\x59\x5e\x21\x50\xba\x69\xe7\x5a\x01\xaa\xb4\x2c\x06\xd1\x60\x46\x09\x3d\x5e\x01\xb7\x95\x55\x3e\xa7\x8a\xb9\x7e\x55\xa7\xc3\x61\x3a\xb1\xb4\xcf\xe0\x53\xb7\x50\x51\xc3\x73\x7d\x8d\xee\x90\x8f\xb5\x6e\xe4\xad\x96\x12\xc3\x41\xc8\x15\x3c\xa4\xfa\x71\x8b\x06\x9b\xd0\x44\xbf\xc8\x0b\x75\x6c\x5e\x8b\x42\x93\x59\x05\xb2\x33\xbd\x99\x4f\xda\x78\x15\x93\xd8\xa0\x9a\xcb\x9a\x26\x53\x0f\x4a\xc3\x72\x9e\x03\x93\x1b\x6a\xb5\xcb\xcb\x7c\x02\x3c\x7f\xc6\x67\x94\xe7\x94\xf4\xda\x29\xa5\xda\x79\xbb\x96\x39\xe4\xc5\xfa\xac\x72\xe6\xb8\x89\x31\x87\xe8\xea\x8e\x82\xae\xd1\x0f\x88\x55\xfb\xbe\x9a\x0d\xe3\xb4\x1f\xc5\x8c\x95\x08\x80\xa0\xd1\x04\x55\x98\xca\xa9\x6f\x0b\x23\x05\xcb\xc0\x3d\x6d\x64\x72\xcf\xe5\x69\x51\x12\x8e\xe6\xfc\x28\xbc\x57\x4f\x8d\x55\x8b\x07\xb6\x43\x94\xb9\x4e\xd3\xed\x8a\x06\xf4\x13\xee\x57\x43\x13\xc7\xee\xed\x49\xaf\x97\x4f\x28\xbf\xeb\xc5\x1f\xcb\x6c\x92\x45\xb9\xac\x60\x78\xfc\x70\xb4\x63\x32\x5c\x4f\x39\x39\xfd\x8d\x62\xa2\xc6\x69\x1e\x25\xc3\xd9\x6a\xe2\x8b\x15\x32\x7d\x85\x08\x3c\xf9\x45\x90\x41\x0f\xfe\x07\xe4\xb2\x98\x88\xa3\x28\x36\x49\x31\xca\xd2\x49\x94\x17\x9d\xea\xab\x04\x25\xa6\xb9\x2e\xf0\xb1\xa6\xe2\xc7\xd1\xaa\xcd\x22\x6e\x2b\x13\x3d\x43\x8d\x06\x3f\x23\x1b\x94\x4d\x4a\x8c\xe2\xd7\x25\xb3\x46\xda\x70\x5c\x31\x45\x9a\xe5\x4d\x32\xcd\x49\xcb\x9c\x1a\xa8\xf6\x2d\xb8\x2a\xb3\x5f\xae\xce\x37\xa0\xbd\x2a\xd0\x29\xf3\x28\xb1\x79\x3e\xb6\x6c\x6a\x8e\x45\x4b\xdb\x16\x36\x49\xc2\xd5\xb6\x33\x8a\x62\x1e\x1d\xce\x58\xbf\x1a\x1d\x7c\xa2\xa2\x1d\x2a\x83\x77\xfc\xeb\x86\x2e\x32\x1f\x2b\xc4\xcd\x8e\x27\x71\xba\x4e\x36\x43\x42\x68\x3c\xa5\x4b\x45\x28\xa6\x38\x9b\x14\xa7\x80\xf7\x7d\xca\x93\xa4\xdf\xcf\xc7\x75\x30\x2f\xc6\xe6\xfc\x91\xa3\xe4\x55\xa1\x46\x9a\x73\x98\x2f\x68\x31\xfd\x0a\x9f\xd4\xe6\x9b\xc9\x26\xd4\x08\x89\xd8\xf8\xa8\xd6\xd7\xbb\x35\x55\x3a\x5e\xf7\x14\x54\x36\xd7\x6b\x53\xf2\x99\x8c\xd2\x22\xe5\xcc\x4b\x7c\x9a\x7c\x89\xff\xe2\x74\x8f\xea\x7f\xdf\xe5\x37\xcd\x13\xca\x3c\xe5\x7d\x5c\x27\xff\x03\xf1\xea\xb4\x35\x16\x1f\x53\x90\x81\x80\xff\xaf\xa7\x5e\x3f\xfb\xaf\x31\x79\xf9\x9b\x54\x2b\x7f\x3f\x23\x0b\xf1\xc3\xf3\xbe\x85\x56\x51\xc7\x1b\xa1\xf6\xa1\x17\x59\x01\xaa\xa3\x85\x9e\x94\x1a\xd4\x05\x1f\x76\x1b\xea\xcb\x53\x88\xf1\x03\x85\x18\x3f\xa8\x1b\x83\x85\xa8\x36\xc9\x3a\xd4\x59\xf4\x0b\x94\x62\xa7\xd9\x30\xb3\x85\xc9\xd6\xf7\x62\xe4\x21\x6e\x39\x36\x55\x7c\xc3\xcf\x88\x9a\x83\x4c\x04\x42\xcd\xd8\xb7\xef\x4f\x7d\x2f\xe2\x9b\x81\x12\x34\xf9\x0c\xcd\xdd\x4c\x41\x02\x14\x20\x2e\x51\x7e\x29\xd8\x4e\x42\xc0\xcc\xf9\x0a\x14\xe0\xf2\x3f\x4d\xfd\x04\x7b\xb3\x45\x75\xa8\x9b\x86\xe4\x27\xc8\x33\x19\x60\x3d\xc2\x6f\x3e\x76\x0b\xe9\xb2\x89\xe3\xdd\xaa\x0b\x6e\x8e\x0a\x26\x52\x40\xa5\xdf\x14\x83\x4b\xdc\x3e\xf6\x41\x0e\x4f\x9c\x93\xbe\x77\x8b\x85\x85\x19\x96\x2f\x30\x83\xf0\x48\x9f\xf6\x0e\xd7\xff\xf8\x89\x9e\x0f\xbe\xfa\x65\x06\xe7\xde\xea\x5e\xd9\x39\x09\x0b\x9a\xd8\x28\x29\x09\xc1\xf5\x71\x3f\x8d\x73\xe5\x42\x7a\x5c\xb9\x90\x1e\x57\x19\x6f\xb5\xf0\xd1\x46\x27\xa0\x30\x5d\x2e\x06\xcb\x09\x95\x21\x5d\x0a\x7c\x79\xa7\x5a\xc5\x68\xe2\x69\x53\x20\x4c\x6b\x2a\xa4\x3f\xc7\x70\x2d\xb3\x25\x04\x47\xd4\x68\xf1\x24\xcd\xa3\x22\x15\x3c\x54\x99\x4d\x2f\xc8\x89\x8a\x6a\x13\x6b\xb2\x78\xfd\xf1\xea\x71\xb9\x04\xf1\x80\x98\x00\x7c\xae\xac\x0b\x4f\xe2\x07\x6b\x7a\x73\x6c\x19\x35\x55\x28\x9e\x78\xca\xa3\x34\x77\x2d\x50\x02\xe3\x6f\x4c\x95\x75\xe2\xef\x4e\x15\x39\x9c\x4b\x4d\x8e\xb1\xf0\xbc\x34\x5a\x32\xd3\xd6\xb5\xce\xed\xdf\xcf\x03\xfc\x3e\xc0\x1b\x04\x03\x57\x6b\x65\xb4\x74\x85\xfd\x3a\x59\x6d\x23\x50\x5e\x72\x53\x45\xa7\x3f\x4a\xbf\xc3\xac\xed\x40\x99\x19\x7e\xa4\x94\xbe\x8e\x4f\x95\x31\xc5\xa7\x41\xe7\x85\x05\xaf\x56\xe3\x40\x08\xbc\x7f\xd1\x82\x50\x22\x09\x47\xa7\x5e\x76\x2a\x9d\x0c\xcd\x84\xb6\x40\x76\xfb\xa1\xbb\x11\xe7\x1f\x3f\xbc\x42\x1b\x86\x69\x12\x75\x6a\x66\x1c\xb5\xc6\x47\xa1\xdd\x2c\x23\xcd\xa2\x0b\xe4\x1f\xaf\x5d\x88\x6a\x06\x35\x49\x68\xb3\x9d\xca\xb5\xfa\x98\x5a\x5d\x67\x40\xa1\x66\xdf\x96\x9a\xfa\x0f\x16\x05\x0c\x32\x3c\x7e\x60\x85\x2c\x0e\x28\x4a\x5e\xcd\xf2\xf6\xc1\x6e\x3f\x02\x81\x54\x2c\xd7\x3c\x86\xc8\x15\x19\xac\x3b\x77\x75\x08\x72\x13\x83\x42\x5c\xb6\x7d\x2b\x2c\xd5\x0f\xf8\xfd\x7e\x23\x9e\xf1\xd8\xfe\xa6\x62\x4e\xfe\x8d\xa6\xf6\x5e\x0d\xf6\x3a\x62\x44\x28\x5c\x34\xb1\x80\xd2\x7e\x50\xaa\x2a\x1e\x9a\xf1\xa4\xcc\x6d\x4d\x4e\x73\xaa\xe4\x34\x55\x73\xc7\x30\xb3\xb6\x10\xc5\x49\xdc\xc9\xc7\x4a\xbf\xe8\xe3\x60\xaf\xfb\xd6\x38\x2d\x88\x27\x0c\x3c\xee\x5d\xb5\x56\x9c\xd7\x28\xeb\x1c\xac\xb6\x10\xed\xdd\x0d\x6a\x7e\xbb\xf4\x88\x9c\xda\xd1\xf3\xb5\x6d\x51\x3a\x1d\xee\x04\x5a\x34\xb4\x55\x05\xce\x84\x61\x9a\x0d\xb8\x43\x4a\x5a\xf0\x30\x5d\xb1\x10\x5d\xd3\xa6\xa2\x67\x15\x75\x37\x8f\x92\xd0\x3e\xa2\x88\x10\x77\xb0\x96\x29\xda\xbb\xf8\x70\xb0\x6c\x0b\xee\xf0\x16\xe9\x3b\xe2\x1f\x66\xd0\xab\x87\x61\x06\x81\x27\x04\xfd\x3b\x69\x51\x06\x72\xbc\x8b\x56\x7e\x29\x29\xd0\xd5\x08\xa6\xf9\x25\x45\x10\xa6\x68\x1e\x9a\xa2\xd5\x18\xc3\x05\xff\x3b\x5c\x13\x9f\xb4\x21\x25\x6b\x26\x5a\x75\x31\xb6\x43\xa7\x9d\xac\xe0\xc9\xa9\xef\x7a\x19\xdb\x41\x54\xb0\x77\x8a\xcb\x39\x3f\x9a\x2a\x6e\x8d\x1b\x60\xf9\x28\x9d\x90\x0d\xa6\xa4\xea\x70\xa9\x43\xe5\x7b\xbb\xee\x3c\x98\xdb\xf0\xc5\xcc\xe3\x35\x22\xff\x5c\xcf\xe3\xcf\x36\xe1\x0e\x2e\xae\x82\xe3\xa5\x48\x49\xdc\x0f\xac\x30\x59\xeb\x28\x11\x34\xfe\x3b\x21\xd4\xfa\x18\x63\xcd\x46\xc3\x11\x7a\x0e\x45\x15\xba\x1a\x43\xa2\x16\xdd\xe2\xcb\x9f\x95\x03\xa2\xdc\x38\x41\xcc\xa9\x27\x83\x7e\x32\xf5\xfc\x13\x04\x9a\x52\x19\x50\x91\x55\x34\xe1\xc6\x27\x01\x32\x3c\x9f\x46\x37\x19\x13\xd6\x18\x9a\x1c\x44\x0d\xc0\x6e\x57\xa7\x1e\xc7\x62\x11\x04\x84\x4d\x77\x5d\x78\x55\x64\x66\x68\x07\xeb\xdc\x52\x27\xed\xd1\x8a\xe4\xfd\x7f\x4f\x7d\xe6\x7c\x09\xa5\x00\xf9\x60\x92\x1b\xa8\x20\x50\x9f\x3e\x62\xd8\x99\x9e\x1a\x38\xd0\x00\xe6\xfa\xc8\xd4\x07\xd2\x67\xf5\x0e\xca\xe1\xb9\xd0\x90\x9b\x9d\x5c\x61\x9a\x17\xb5\x8a\x30\x0b\x5a\xf1\x49\x8b\xe2\x1c\x89\x76\x4a\xb0\x24\xdd\x1d\x4a\x7c\xe3\x6d\x25\xaa\x6f\xc2\xb0\xcc\x59\x54\xbf\x5a\x5a\x04\x7e\xee\x2c\x7a\x8c\xba\x25\x4b\x32\x45\x61\xc2\x91\xfc\x86\x28\xf5\xa9\x2d\xf1\x23\xbf\x5f\x4d\xd2\x15\x93\xd8\x8e\x02\x83\x96\xd4\xca\xb5\xd4\x26\x54\xba\x16\xe5\x23\x29\x7c\x49\xfc\xa0\x12\xab\xcf\x5b\xc8\xbc\x4b\xdd\x72\xdc\xcf\x6c\x1c\x1b\xd6\x55\x45\xa4\xa0\x55\xda\x36\x95\xe8\xc6\x31\x97\xcc\x88\x8d\x87\x22\x73\x1c\x55\xdd\xcc\x47\x55\x02\x4a\xa5\xcc\x22\x22\x75\xc8\x2a\x18\x91\x5e\x5b\x25\x3b\xa0\x7b\x8f\xd7\xac\x5d\xc9\x77\xf9\x52\xc8\x4f\xd5\x82\xfb\x33\x82\xa7\x5c\xbb\x4d\x75\xc1\xec\x9c\x41\xc5\x06\xe7\xa2\xe1\x84\x46\x80\x99\x21\x58\x67\x4e\x2a\x3b\x78\x6a\x25\x72\xfb\x5a\x14\x9a\x84\x14\x48\x14\x8d\xea\x39\xa7\xf0\x58\x7d\x07\x06\xe4\x15\xc5\xcb\x84\xb6\xa1\x98\x83\xea\xda\x45\xdf\xd2\x84\xda\x7a\x73\xaa\x5c\x60\xcf\x2a\xbc\xec\xe8\x74\xaf\x0a\x98\xa2\x47\x54\x79\x5f\x19\xe2\x5c\x99\xfa\xf4\x7e\x0b\x5b\x0d\x3e\xbe\xa5\xd1\x6c\x28\xff\xb0\xeb\x91\xd2\x85\xe7\xc6\x2c\xa7\xf8\xe0\x8d\x92\x9e\xee\x55\x61\x94\xc0\x35\x3e\xf2\x19\x66\x36\x31\x03\xa3\xbc\x7f\xcf\x2b\xf7\xd2\xf3\x53\x6d\x81\x60\x32\xd3\x8f\xad\xf2\x70\x79\xa0\x10\xfa\xeb\x53\x2f\x71\x7f\x4c\x35\x96\xac\xa6\x51\x68\xf3\x39\x5f\x0d\x3e\x06\x33\x1c\xec\x99\x37\xe8\xe5\x3a\xd3\x3e\x25\x65\x4d\xd7\xce\x27\xad\x2d\x46\x69\x3c\x50\x25\x6a\xac\x8a\x28\x55\x5c\xd6\x0c\xc9\x4d\xa5\x9f\x33\xc9\xd2\xdc\x86\x25\x19\xe2\x2b\x32\x13\x43\xc5\xe2\xaa\xed\x93\xa5\xfb\x5a\x93\xa9\xa9\xc8\x02\x8e\x71\xf4\x3a\x30\x3c\x3c\x92\x33\x34\x72\xf9\xb8\xb1\x46\xfd\xa3\x6e\x6c\xfa\x29\xda\x41\x85\xe3\x45\x3f\x21\xa6\x59\xca\xd0\xe3\xa2\xda\x75\x8a\x04\xf2\xdc\xc2\x6c\xf7\x68\xc9\xe7\xf8\x08\x22\xc4\xcd\x46\x9d\xe8\xa5\x85\x43\x44\xb5\xe9\x28\xba\xd7\x71\xa5\xed\x7e\xbc\x81\xac\x7e\xed\x6b\x22\x72\xde\xf1\x74\x9a\x2b\x81\xcf\xa8\xae\xb4\xb8\x9c\x8c\xd3\x55\xa6\x8b\x02\xd6\xc0\xdb\x40\x44\x71\x73\xaa\xda\x0b\x81\x54\x8b\xa5\x77\x8b\xac\xec\x72\x9a\x0e\xf2\xa2\x5c\x5e\xce\xb5\xfd\x24\x7c\xad\x45\xb2\xb0\xa5\x80\x16\x47\xfd\x4c\xba\x0f\xc5\xb6\xbe\xfa\x08\x1f\x2b\xf4\x37\x4b\x49\x72\xd9\x11\x48\xff\x9c\x9e\x06\x1f\x4f\x1f\xe1\xaf\xee\xee\xdf\xff\xf7\xa9\x8b\x52\xf5\xe9\x8a\xec\xd6\x5b\x28\x60\x82\xe8\xcc\xfd\x07\x5c\x69\x47\xfa\x2a\xa5\xee\xce\x4b\xb2\xd6\xfd\x2a\xcd\x51\x3c\xf2\xed\x1b\x4a\xde\xe0\x03\xba\x31\x5a\x73\xd7\x9e\xe8\xf9\xa1\xf3\x79\xa0\x44\x6f\xff\xbb\x60\xfb\xcf\x79\x3a\xe4\xd2\x81\x25\x4e\x8d\x18\x8f\xc5\xe6\x33\x0b\xed\x4b\x9c\xec\xe8\xd1\x1c\x03\x16\xf3\xcf\x49\xc0\x4e\xf8\xa8\xf4\x96\xa4\xa2\xa1\x64\xde\x77\x6c\x78\xf4\xe2\x2a\xe9\xc5\xb1\x4c\x07\x45\x93\x78\x8e\xa7\x03\x6d\x25\x85\x6c\x0c\x4e\x23\xd7\x89\x39\xe4\xba\x58\xbe\xf1\x2b\x6e\xb0\xd0\xf0\xe6\xc5\x38\xe8\x1c\x7a\xd1\x5b\x65\x1e\x98\xf7\xb5\x78\xd7\x7b\xf7\x1e\x20\x7c\xbc\x8f\x2b\x9c\xd7\x62\x76\x6c\xeb\xd1\x56\x82\x48\x6e\xd7\x46\xe7\x6b\x5f\x13\x31\x9f\xe0\x29\xd7\x45\x92\x45\x79\x61\x93\xdc\x26\x8c\x16\xe2\x52\xdf\xc7\x2c\xe1\x93\xc6\x44\x26\x05\x10\x6a\xa7\xf0\x73\x1f\x02\xf2\xc8\x75\x39\x9e\x14\xce\xbd\x20\x28\xb9\x4d\x06\xd4\x22\xc2\xf9\x59\xa0\x92\x89\x1f\x63\x5e\x4b\xfd\x82\x06\x89\xa0\x02\x9e\x72\xd4\xe7\x51\x8e\x2f\xb8\xac\x34\x25\x2e\xab\xbd\x8a\xcc\x9a\x20\xac\xf5\x1c\x3f\xef\xbf\xa4\xd1\xcd\xc7\x6d\x9d\x37\x93\x34\x8e\x8a\x28\xcc\x15\x3f\x90\x43\x7b\x3e\x69\xd4\xc2\xab\x68\xc8\xc4\xb1\xcd\x86\xd0\x63\x58\x72\x80\x8f\x9f\x54\xda\x01\x73\x12\x9b\xf5\xb4\x9a\xa7\xaa\x65\x07\xa3\x4b\xfa\x77\x5a\xf0\xdf\x49\x66\xb3\x74\xc8\x2d\x52\xee\xa5\xc3\x0f\x47\xaa\x51\x2d\x39\xc4\xb7\x6d\xb2\x12\x09\x8d\x4b\x58\x97\x2a\xc6\xd7\x22\x1e\x63\x93\x2c\x67\x76\xc0\xef\xdf\xb5\xb7\x57\x7f\xcc\x27\x2a\x4e\x89\x92\x41\x99\x17\x59\x64\xf3\x1d\xda\xed\xec\x4a\xa0\xdc\x68\x4e\xab\x4a\x07\xbc\xac\x44\x37\xa9\x9a\xaf\x4c\xa4\xc7\x0f\xe0\x85\xfc\x96\x6a\x53\x63\xd7\x1b\x7a\xcd\x5b\xa4\x5b\xba\x75\xc9\x55\x15\xfa\xa6\x28\xac\x57\x01\xc1\xd4\x47\xb2\x8a\x8c\xe2\x4d\x05\x58\xfd\x41\xad\x6f\xbc\x8c\xd7\x77\x78\xaf\x9a\x4f\x94\x5e\x0d\xa3\x4e\x58\x9e\x1e\x60\x2b\x44\x90\xb4\x93\x40\x39\xdc\xe1\x8d\x29\x2d\x6f\xc2\x14\xf6\x85\xd4\x28\x4b\x93\x28\x9c\xf1\xb7\xf9\xbd\xa9\xaf\x81\xe2\x51\x60\x29\x3a\x8e\x0a\x74\xfd\xfd\x96\x93\x59\xaf\x4b\x70\x59\x37\x30\x07\x0a\xc9\x02\xb6\xce\xac\xa1\x96\x08\xf5\x60\x37\x1a\x26\x69\x66\xc4\x21\xc0\x35\xd1\x7f\xf3\x25\x57\xdc\x91\x44\xb0\x9c\xe4\xb6\xa0\xfe\x18\x5c\xe2\x96\x6a\x65\x9e\x7f\x9a\x32\x5b\x2c\xce\x3f\x9a\xd6\xa4\x26\x3b\x87\xe7\x1f\x6c\x54\xd7\x07\x34\xe8\x8c\x82\xd4\xff\x4a\x99\x04\x99\x81\x7d\xb5\x24\xfd\x23\x77\x5b\x67\x68\xe9\xe2\xe3\x86\x6f\x4b\xb5\x40\x2a\xf6\x68\xc7\x17\xa1\x8e\x20\xfa\xe5\x13\x25\x9c\x64\x0a\x74\x3e\x5a\x80\x90\xa2\x69\xa0\xa8\x55\x97\x03\xc5\x20\x25\x4d\xb1\xad\x4b\xea\x22\xc7\xe6\xdb\x69\x16\xa1\x58\x27\xc8\xc8\x4d\x1a\xa9\xb8\xdb\xbf\xa6\xd7\x86\xd0\x91\x29\x5b\xe0\x72\xbd\xdb\x96\x88\x16\x64\xc8\x5f\x3d\x44\x84\x56\x1f\xd3\xfd\xf2\xb1\x76\x54\x8f\xa3\x09\x1b\x70\xbb\xce\xa7\x4d\x6d\x3f\xed\x99\xaa\xfd\x2c\x2d\x46\x36\xdb\x41\x1b\xa7\x18\x17\x6b\xaf\x90\x6a\xef\x71\x86\xc6\x0f\x9b\x2e\x60\xdd\x7c\xaa\x57\x6d\x4a\xd2\x7d\xd9\x84\x5a\x16\xa8\x71\x29\x2c\x6a\xde\xc2\x2c\x76\xcd\x27\x0a\x82\x5d\x36\x51\x56\x4d\x21\xa7\x72\xf7\x86\xde\x71\x3b\x3d\xba\x52\x3e\xd9\x50\x0c\x89\x37\x54\x3b\x2a\xe3\x94\x7c\xe2\x5c\xde\xfb\x66\x4c\x01\x1e\x20\xa2\xef\xe3\x79\xbb\x16\xad\x5f\xfe\x16\xbf\xe0\x4b\xce\x26\x6a\x32\x5a\xcf\x23\x22\x0d\x76\xbc\x31\x39\x1b\xc3\xf2\x89\xba\xf2\xb4\x2c\x0c\xdb\xee\xa0\xa4\x80\xbe\x31\x3e\x9e\x3e\xfd\x70\x6b\xd6\xc1\xee\x2f\xec\xf6\x08\x28\x77\x0f\x61\xa1\xfa\x90\xf6\x76\x84\xfa\xa7\x81\x7e\xb5\xc9\xea\x78\x6e\xfd\x6f\x68\x21\xdf\x6d\x78\x2e\x48\xe7\x6f\x68\xab\xb1\x5a\x62\xb4\xf2\x7a\x4a\x2b\x95\x43\x4b\x9f\x77\x68\xa9\x96\x9f\xfd\x61\xa0\xf4\x5d\x7e\xa8\x9d\x96\x2e\x68\x2b\xfe\x0b\x9e\x75\x60\x72\xa6\x7a\x49\x37\xbf\xaa\x59\x7c\x4f\x3d\xb0\x9c\x7c\x45\x3b\x0a\xd7\xc2\x72\xc9\xc7\x6d\x2d\x02\x07\xbb\x85\x59\x41\x99\x4a\x12\x39\xba\x57\x3e\x51\xc8\x71\x66\x8b\x32\x4b\x72\x32\x45\xc4\x40\xf8\x91\xf2\x30\xba\x8a\x64\x50\xe8\xc9\x34\xa8\x34\x6f\xd9\x39\xe5\x3d\x2f\xe8\xcb\x8f\xb0\xf3\x20\x7a\x3a\xef\xe0\xae\xbe\x2d\xf2\xf5\x8e\x8a\xf0\x4e\xd1\x67\x44\xc9\xad\x25\xa0\x19\x9a\x6c\x20\x45\x56\x40\xa9\x00\x79\xf8\xb8\x91\x52\xed\xdf\xdf\xcd\x4b\xc0\x74\x8b\x4e\xb9\xa8\xe3\xda\x0e\x35\xd7\xa6\x5f\xc6\x71\x95\xed\x3a\xb2\xc6\x4d\x3c\x7a\xc8\xa9\x40\x4f\x1d\x93\x79\x5b\x43\x4e\xe5\xc0\x7c\x37\x8f\xc4\xa8\x4f\x88\xab\x1d\x67\xdc\x78\xb2\xc1\xb2\xa0\xa6\xdd\xc2\x44\xbe\x4e\xef\xba\x6f\x7d\x27\xae\x62\x7a\x2e\x1b\x4a\x37\x1d\x90\x7b\x0d\x69\xbd\x6b\xc7\x77\xc2\x89\xc7\x94\x6c\xdf\x5f\x4e\x7d\x83\xfb\x35\x85\x95\x4d\xb2\x74\x9c\x16\x04\xf8\x57\xaf\xdf\x49\xbe\x29\x29\x18\x6f\x3e\x97\x17\x99\x2d\x40\xc8\xaf\xe2\x54\x8d\xa4\x88\xa4\xb9\x14\xdd\x43\x9b\x14\x36\x5b\x8e\x6c\x3c\xb0\x19\x4b\x14\xd4\xb4\x65\x9c\x4a\x55\x35\x7c\xa4\x69\xae\xe3\xba\x1d\x67\x7b\xb2\x76\x2c\x67\x55\xfc\x62\x0a\x96\xf6\x10\xe1\xf3\x5a\xf3\xbb\xea\x11\xbd\xd4\xaa\xb8\x9f\x99\x28\x71\x8a\xfb\xa8\x48\x7d\xaa\xfb\xae\x3e\x55\x9a\x0a\x93\x32\x9b\xf3\x7c\xbb\xe3\xfa\xcf\xa0\x8f\x86\x24\x09\xe1\x33\x56\xba\x7b\x53\xa5\xbb\xad\x3b\xbf\x96\x4d\x3f\x43\xb0\xf9\x9c\x5b\xcb\x94\xd9\xff\xd9\x76\x0f\xf5\x22\x15\xc0\x4b\x58\xb8\xaa\xfb\xae\xe9\x1e\xeb\x3a\x31\xc6\xda\x97\x88\x33\x02\x3e\x51\x11\x21\x39\xca\x98\xe5\xa2\x5a\x31\xaa\xe9\x2a\x65\x30\xe5\x00\x7c\xb1\xb1\xe9\x1f\x9e\x7f\xb9\x5b\x26\x51\x31\x4a\xab\x17\x9a\x2b\xbe\x1a\xeb\x59\xf0\x49\x5b\xc6\x3b\x2e\xe3\x22\x8a\xcd\x3a\xd3\xdc\xb0\x24\x5c\x57\xe6\x99\xd7\x1b\x3f\xb7\x70\xa8\x3b\x31\xb1\xcd\x8b\x28\xa1\x36\x55\xbc\x38\x2e\x0c\xea\x50\xe1\xac\x02\xf0\xfb\x99\x35\x2b\xc5\x28\x4b\xcb\xe1\x08\x8f\x1c\xfb\xea\x39\xb5\xc7\x9e\x0b\xfc\xdf\x9b\x70\x25\x49\xd7\x62\x3b\x18\x32\xac\x0c\xde\x0f\xd0\x03\x3e\x6e\x7b\x41\x93\xd8\x26\xc5\xfa\xac\xcf\x0a\xfe\x78\x5a\xa3\xe8\x54\x13\x1f\x19\xf2\x5c\xcf\x53\x33\xb4\x08\x69\x38\xb2\x96\x73\x79\xe0\xcc\x1a\xf2\xde\xb6\xe1\x99\xa0\xd5\x22\xbd\x83\x46\x82\x68\x2b\xaa\xdd\xfe\x91\x9e\x0e\xc9\x19\xf8\x97\x05\x9c\x66\x28\xfa\xda\x48\xb7\xbb\x8a\xca\x55\x0d\xb9\x18\x3c\xbb\x9b\xc6\x2c\xf7\x31\x22\x7f\x43\x16\xcb\xe4\x36\xe4\x06\x77\xa6\xbe\x92\xb1\x45\x4b\xb2\x63\x5b\x1c\x98\x77\x6c\x0b\x0f\x9e\x9c\xd7\xf9\xf0\x66\xe0\x05\x04\xee\xd5\x88\x20\x36\x2b\xf6\xd4\x3a\x4b\x70\xf5\x58\xee\x1f\x4c\xd5\x84\xf9\x1e\x5d\x00\x63\x11\x35\xcf\x9e\xea\x62\x5c\xe7\xa5\x67\xe0\xdf\xa6\xab\x61\x6b\x70\x8a\xa8\x51\x23\xfb\x0b\x24\xde\xa8\xdf\x9e\xc5\xce\x8c\x19\x7b\x53\x31\xac\xd7\xac\x59\xb1\xdc\x18\xcd\xfc\x46\x2d\x80\x7d\x6e\x2a\x41\x50\x1a\xa2\x21\x5e\xa0\xeb\x1a\xa6\xad\x7b\xe4\x4c\x9e\x97\x19\xb6\xda\x36\x9a\x52\x5b\xdf\xd1\xd8\x0c\x2c\x8d\x2f\xc5\xfa\x12\x0a\xc9\xdd\xa9\x6a\x29\x63\x52\x16\x22\x94\x8f\xaa\x17\xec\x0d\xe6\x59\x04\x5d\x34\x49\xe8\x2b\x44\x94\xe4\xe1\xc4\x75\xdf\x3e\xb1\xcd\xf7\xbb\x10\x92\x2d\x30\x80\xf8\x38\xd8\xab\x55\xb4\xe9\xf6\xa5\x0f\x56\xf5\xc4\xea\xb6\xd2\x28\x46\x81\x6f\xeb\x92\xd2\x58\x86\x85\x25\x10\x90\x77\xb4\xfc\x25\x1b\x3f\xb3\xa8\x02\x8d\x36\x21\x83\x76\x0e\x57\x19\xc1\x8c\x37\xc7\xe6\xaa\x2e\x72\xea\x8b\x5e\x07\xed\xef\xdf\x75\x90\xee\xc4\x64\x66\x6c\x8b\x8c\x93\x14\x41\x7c\xe9\x4d\x09\x14\xec\x41\x88\x81\x0d\x63\xa2\x2b\x3a\xd3\x83\x37\x95\x3a\xd7\x9b\x0d\x4c\xe5\xf0\x7c\x77\x2d\x0a\x57\xa4\xf0\x81\xed\x67\x8b\x6e\x93\x8f\x1b\x08\xc4\xd2\x8b\x07\xbb\x99\x8d\x86\x89\xc8\x4d\x61\x43\x3e\x8a\xf1\xce\x27\xf5\x79\x62\x57\x9e\xac\x2e\x48\x3c\xb0\x30\x4d\x10\x61\x5d\x50\x44\xad\xeb\x4a\x9f\xfb\x0d\x0d\x52\x30\x19\x0f\x8b\xc4\x19\x8c\x7a\x24\xc8\xf7\x54\xb4\xd4\xc1\x38\xc2\xf0\x3d\x0d\xce\x8b\x2c\xb0\xd5\x93\x05\x64\x73\x1f\x2e\xa2\xd8\x82\x4f\xe0\x5d\x31\x9a\xa7\xb1\xfb\xbb\x7a\x36\x82\x77\x21\x94\x6e\xba\x4f\x04\x42\x1f\xb5\x75\x9e\xae\xd9\x38\x26\xee\x23\xa2\x99\x87\xda\xbb\xfd\x1e\xfb\x60\xea\x7a\x84\xfe\xd1\x33\xbd\x2a\xe5\x10\x11\x15\xa5\xcf\x5f\xed\x73\x4f\x28\x53\xf2\x93\x53\xa5\xbb\xcf\x6a\xd1\x88\x94\x6e\x6b\x6b\xbe\x1f\x21\x8a\x75\xc2\xba\xce\x6f\x79\x1b\xe9\xf9\xe1\x02\x8e\x11\xcc\x2b\xfd\xf0\x1d\xa7\x00\x7c\x47\xd9\x39\xde\x24\xc7\x02\x76\xaf\x0f\xd4\x20\x99\xd1\x26\x9e\x37\xc1\x97\x02\xdb\xec\x53\xac\xc3\x18\x9c\xbf\x47\xa5\x03\x40\x3a\x9a\xcc\x13\xa6\xd9\x64\xa7\xa6\x1c\x7f\x9f\x7e\x54\xe1\x21\x8a\xea\xed\xad\xd1\xb0\x92\x4b\xdb\x70\xf5\x56\x9c\x2c\x43\x75\xf3\x18\x53\x4f\x36\x44\x96\x16\x17\xbb\x79\xba\xe6\x56\x05\xe9\xf1\xd0\xbd\x1f\xcd\xa6\xc4\xa5\x6e\x9e\x96\xec\x68\x81\xe0\x0e\xcc\x24\x66\xd6\x04\xbe\x13\xe5\xf3\x2f\xb4\x05\xb7\x42\x57\x91\x82\xb5\x87\xb1\xcf\xeb\xbd\x34\xca\xc2\xd8\xce\xd5\xf0\xc7\xea\xdd\x88\xcb\xae\x97\x9b\xd3\x6e\x73\xdf\xa7\x6f\x13\xc2\x63\x0b\x1f\x93\x14\x11\xe9\xfa\x25\xb4\xa5\xe7\x2a\x31\xaf\xa7\x17\x0e\xc7\x7b\xe9\x2a\x5d\xe2\x75\x60\x9e\x47\xef\x75\x4d\x8b\x7b\x4f\xb5\x63\x71\xbe\x8d\x9a\x1d\xe7\xd8\x98\x21\x7f\x85\x28\x0c\x64\xae\xb7\x18\x1c\x06\x02\x76\x6d\xea\x73\x95\x9b\x18\xa2\xfc\x67\x53\xd5\x38\xff\xa7\xaa\xdb\xf7\xb2\x0a\x6a\xc7\xe9\xda\x4c\xcd\x29\x97\x2e\x4d\xae\xc0\xb3\x1d\xee\xb4\x75\x10\xf5\x4d\xe6\x51\x3c\xd1\xef\x3f\x35\x55\xd8\x3a\x54\x1e\x20\x7b\xb9\xad\xf7\xa8\x2f\xc5\xa7\xc5\xe8\x31\x27\xe1\xf5\xf3\x47\xb4\xb4\xcb\x0f\x68\x65\x60\xe2\x35\x8d\x08\xac\x58\xbb\x36\x54\x33\xe5\x5d\x04\x7b\xd0\x0c\x79\x83\x2e\x14\x37\x2a\x44\x07\xfc\x26\xc0\x2d\x57\xdf\xfa\xe6\x4b\x0e\x84\x57\x1d\x25\x33\x10\x9a\x63\xf9\x2c\x6a\x1c\x10\x18\xa7\x7a\x69\x58\x7e\x3f\x6b\x6b\x58\x1e\x46\xe3\xb1\xa8\xcc\x39\x74\xdf\x4b\x1c\x3a\x14\x68\x39\x25\x79\x4a\x02\x5d\x90\x19\x5c\xa3\x35\x1a\xd7\xb8\x7d\xc3\x37\x4a\x7c\xb9\xe7\x69\x3d\xcc\x31\xe4\xc0\x84\xee\x44\x74\x8d\x9a\xcc\xd7\xc5\xae\x21\xf9\xef\xb9\xea\xbb\x90\xa2\xfc\x39\xfd\x06\x56\xb2\x3f\x9b\xaa\x7b\xbc\xa0\xca\xae\x90\x4b\x41\x58\xb6\xab\xa1\x1c\xf2\xf5\xee\x30\x5a\x2e\xf2\x5a\x29\x5b\x7b\x65\x5d\xac\x75\x1a\x5a\x93\xed\xd0\x0a\xe1\x44\x9d\x75\xe6\x3b\xce\x56\x1b\x95\x5e\x0c\x52\x68\x84\x89\x2c\x80\xaf\x75\xfd\xb8\x86\xa4\x14\x51\xfc\x04\xbd\x7c\xe7\x4d\x5d\xfd\x8a\x23\x9f\x3a\xdb\xcb\x6d\x3d\x95\x02\x7c\x86\x77\x8c\xf1\xf2\xae\x92\x1b\xb9\x45\xeb\x27\x66\x0f\x8a\x60\x88\x87\xef\x6a\x3f\x43\x10\x51\xb1\x12\x1e\xa5\xf4\x0e\x63\x82\x25\xaf\xb1\x55\xfe\x11\xd6\x68\x71\x65\xac\x76\x41\x31\xd3\x41\x0d\xf6\xfd\xa9\x07\x82\x2f\x4e\xbf\xda\x18\x41\x07\x1d\x0e\x6f\x62\x4f\x43\xc7\x5c\x84\x96\x12\x1f\xb7\xf9\x67\x71\xbb\xfc\x8c\xaf\x9d\xfc\x4d\xe0\x2b\x16\xa7\xb5\x6b\xc4\x91\x46\x94\xb2\x7f\xff\x81\xee\xb7\xd3\x88\x39\x0d\x2c\x3f\x12\xf8\x9d\x7f\xb3\xa5\xeb\xa3\x3b\x8e\x06\x83\xd8\x3a\x0a\x3b\x2b\x80\x29\x65\x87\xe3\x6d\x6a\x9d\xc3\xcc\x0c\x4a\x23\xd0\x07\x84\xb5\x7e\x42\x1f\xe2\xe3\x16\x20\xaa\x9b\xa7\xab\x91\x2d\x94\xf1\xde\x66\x4d\xb5\x53\x07\xd2\x93\x34\x2b\xec\x60\x8f\x57\x36\xff\xdd\x40\x67\x0d\x7f\x32\xf5\xac\x8d\x3f\x9e\x2a\xf2\xe1\xdc\x86\xd2\x65\x99\xeb\xe9\x5c\x7a\xaa\xb6\xbe\xdb\x58\xd0\x44\xd7\xdc\x67\x6e\x3b\x7b\xd5\x82\xa2\xbd\xbc\x85\x6c\xfa\x8c\x6a\x22\x76\x1c\xa0\x19\x4f\x68\x7c\xac\xe7\x99\x93\x75\x1d\x79\x65\x14\x6c\xb3\xf5\x81\x59\xa7\xea\xb7\xd3\xa2\xdc\xbf\x9f\x7f\x1b\x76\x24\x28\xc1\xcc\x6e\xf8\xf0\x7b\x68\xf2\x47\xab\xe8\x02\xb3\x9e\x51\x38\x79\xe4\x34\x85\x78\x3e\x36\x96\x00\x3c\xd9\xbb\x34\x37\x44\x52\x01\x8f\x51\xfa\x5d\xe9\x31\xc8\xf4\xec\x38\x1b\xe1\x4b\x94\x4b\x61\xbd\x3f\x83\x25\x4b\xde\xab\xb2\x68\xbb\xa8\x13\xa1\x99\xde\x1e\x0f\x5b\x3d\x3b\xa3\xda\xb7\xef\x29\x4b\x9f\xd3\x75\x13\x93\xa7\x94\x2f\x57\x3a\x1e\x9b\x82\x7b\x3c\xb0\xa6\x3d\x08\x94\x9b\xd3\x03\xc5\xde\x48\xb3\x41\x94\x50\x1d\xc3\x19\x69\x7c\x1c\x28\x6f\xa5\x8f\x95\x87\xf3\xb0\xfa\xd2\x59\x3f\x4a\x2f\x2a\x61\x72\x48\xe7\xcb\xff\xa7\x05\x48\xfe\xc1\x23\xae\x10\x7f\x9a\xa9\x1e\x88\x23\x5d\x56\x6f\x00\xd9\x2c\xa4\xe1\xa4\xf7\xe8\x8b\x3c\xbd\x19\xa9\xc0\x9e\xea\x74\xae\x9f\x97\x92\xfe\x35\xdc\xa8\xac\x2f\x4f\xd5\x51\xef\x5f\xe8\xee\xdf\xff\x68\xf5\x54\x00\x61\x73\x7a\xe7\xcc\x5b\xab\xab\x76\xc4\x02\x97\x26\x7f\x8a\xf0\x9f\x39\x21\xdc\xd7\x2c\x3d\xef\xaa\x40\xf7\xe3\xc0\x67\x53\x9b\x34\x50\x84\x98\xe0\x03\xdd\xa3\x08\x68\x51\x5e\x3b\x46\x9b\xa9\x43\xf1\x9c\xb0\xc1\xb1\xe0\x51\x65\xed\x14\x3f\xdb\xf1\x0d\xd3\xbf\x8d\x71\xc2\x27\xb5\xf6\x96\x38\x2a\xe6\x94\x94\xd3\x4f\xd5\xaf\x5e\x21\x40\x01\xbb\xe3\x69\xa5\x52\x8c\x1d\x5c\xc8\x2e\x2d\xf5\xd5\x01\x44\x31\x67\xb4\xcb\x8a\xe2\xbf\x5e\xd7\xfe\x0d\xef\xbb\xc9\xb9\x6a\x92\xa8\x88\x9c\xcf\x0c\xd6\x89\xeb\x5a\x4b\x87\x0d\x39\x91\x9e\x9d\x71\x75\xcf\xd0\x64\x51\xbf\x6f\x4d\x32\xa3\x1b\xbe\xae\xd0\x15\x63\x43\xe2\x34\x14\x8d\x0e\xdb\x1a\x2d\x2e\x50\x00\x28\x6c\x58\x60\x7c\x38\xcc\xe3\xb0\x48\x17\xbd\x87\x57\x8e\xf8\xe7\x7a\x6b\x8f\x6d\x98\x86\x2b\x85\x89\x62\x0e\x64\xb1\xf9\xbf\x1f\x28\xa8\xe7\x7d\xb5\xc0\x16\x99\x78\x15\x7a\xff\xd5\x73\x6a\x31\x3e\xe7\x2d\xcb\xe3\xd8\x0e\x2d\x45\x20\xae\x57\xa9\xfa\x4e\xf1\xf6\xa9\x2e\x52\xfa\x96\xe8\x22\x81\xe9\xde\x51\x4e\xfe\x27\x95\xea\x70\xbf\xcc\x5c\x42\xec\x8c\x68\xbd\x29\x6d\x1b\xf6\x9f\x95\xe4\x0d\x41\x8b\x90\x23\x8c\xb9\x0a\xe0\x05\x55\xed\x0d\xd3\x32\xcb\xd1\x0c\x89\xed\xf9\x33\x84\xd8\x5c\x24\xa6\x1f\xe2\x7f\xc0\x9a\x26\xd5\x63\x5f\x01\x31\x09\xd5\xf6\x1e\xad\x26\x92\xe0\xb6\xd5\xa4\xc0\xaa\x7a\x16\xf7\x8e\x74\xf1\x81\xb6\x9d\xc4\x94\x42\x2e\x77\x44\xdd\xfb\x25\xca\x0b\xc5\xfb\xa6\x0a\x1c\xb0\xc0\xbc\xa7\x6c\xeb\x6f\x4d\x95\x00\x39\x22\x0e\x47\xf7\xa2\x71\xcb\xff\x42\x33\x95\x35\x88\xbd\x16\x76\x98\x16\x85\xe8\xcd\x21\x27\x62\x79\x70\x3e\x71\x01\xeb\xb7\xd3\x7e\x6c\xf3\x7c\x56\x4d\x05\x54\x24\x11\x8c\xfe\xed\x8d\x1a\xf7\xca\x2f\x92\xdd\x9e\x86\x9a\xc6\xaf\x29\xbd\xa1\x73\x2a\x03\xa9\xb9\x74\x58\xf2\xac\xf1\x2a\xdc\x10\x4d\xe4\x63\xd5\xce\x29\x1b\x7d\x0c\x88\x55\x14\x51\x95\x24\xce\x09\x25\xcf\xf0\x16\x1e\x14\xff\x43\xe0\x45\x05\xb3\x68\x30\xab\xfc\x1e\x1f\x28\x51\xd6\x93\x0a\xd3\x7a\x5f\x67\x08\xad\x06\x07\x23\xa7\xc6\xbc\xe0\xb1\x72\xaf\xc9\xdb\x94\x2e\xf8\x3a\x4f\x90\x19\x3d\xdc\x6b\x13\xa4\x36\x29\x3c\x32\x3f\x31\x99\x4d\x8a\x51\x9a\x72\x7c\xc8\xc3\x45\x77\xc5\x5c\x52\x39\xdd\xc2\xe2\x2f\xce\x68\x0f\x61\x28\xc8\x62\xa5\xd8\x83\x75\x09\x3b\xf7\x8e\x8d\xa7\x35\x78\x90\x59\xb2\xa4\xef\x78\x4a\xc1\x79\xd5\x05\x7e\x5e\xd7\xed\x97\x97\xa3\x81\x59\x8d\x0a\xe6\xd1\xba\x2d\xde\xf3\xbb\xa0\xbd\x02\x92\xca\x47\x4a\xec\xb8\x9f\x26\x03\x57\x2c\x70\x6a\xd0\xc7\x94\xe8\xcb\xb1\xba\xd7\x56\x92\x3f\xe9\x15\xe3\x2e\x4d\xfd\xd6\xca\x0a\x4a\x08\x3c\xb7\xe3\xbe\x90\xf8\xcc\x01\x47\x41\xa6\xf5\x23\x3c\x55\xfa\xcc\xd1\x27\x7a\x35\xfc\x9f\x66\xbc\xdb\x4d\x0e\xcf\x73\xb4\xfc\x01\x4d\x3e\xc0\x51\x5c\x55\x40\x86\xf0\xb9\x62\xe7\x32\xb5\x09\x01\xc7\x5f\xd2\xf5\x63\xff\x99\xd9\xa8\xd9\xaf\xfb\xfe\xc7\x47\x7b\x3e\xef\xb8\xd5\xaa\xe6\xc3\x12\x75\x7b\x3c\xba\xb5\xbd\xa7\xc5\xf8\xab\x75\x00\xb3\x7d\x47\x4f\x3b\x2b\x61\xac\xe2\x6d\xef\xde\xc0\xfe\x2d\xda\x96\x5a\x3a\xf6\xdc\x54\x39\xa1\x9f\x57\x90\xd4\x09\xec\x73\x52\x22\xad\x1e\x38\xa2\x8d\x7b\x4a\x33\x80\xed\xbe\xd9\x60\xaa\xcd\x5a\x54\x91\x0d\x6d\x6e\x8b\x59\x25\xa1\x78\x51\x2f\x68\x4a\xaf\x6c\x2b\xf0\x1c\x8a\x63\x4a\xda\xa1\x8c\x8b\xcc\xac\x46\x69\x6c\x59\xea\x17\x69\x19\x36\x77\x47\xb7\x73\xb6\x92\x9f\x7a\x0d\xcf\x34\x59\x8e\xb2\xf1\xac\x77\x40\xfe\x63\x8c\x00\xda\x02\x5e\x7d\xa2\xe7\x09\xff\x73\xd4\xc6\x0c\xd1\xab\x1b\x6d\xf5\xd7\xd0\x64\xd6\x26\xd2\x40\xce\xc6\xad\x74\xf1\x4c\xe4\xd4\xcf\xf3\x56\xe0\x65\x01\x5e\x8b\x6c\x4d\x9c\x8c\xae\x5a\xa2\xea\xc7\x95\xf1\x53\x5e\xc4\xeb\x73\x4a\xee\x8e\x51\x1f\x3e\x51\xe4\xd3\xe3\xca\x67\xfe\xbd\x40\xe9\xe5\x6c\xaa\xf8\xb5\x1f\x65\xc5\xa8\x46\x1c\xa2\x3f\x6c\xb3\xdf\x28\xd2\xe4\x09\x8f\xbc\xa3\xfd\x15\xaf\xfc\xb1\x0d\xba\x1e\x87\x1f\x2f\x1c\x72\xad\xe8\x18\x4b\x80\x43\xef\xe1\xde\xa5\xa0\x43\x8f\x98\x81\x76\x44\xc7\x6e\x1b\xac\x6e\x88\xbf\x8d\xaa\xcd\x5c\x2d\x0f\xbc\x33\x13\xf3\x96\x91\x3e\xa1\x53\x8e\x9e\xf5\xce\xa7\x7a\x8a\xba\x74\x99\x36\x51\x5c\xe4\x0f\x31\x60\x59\x9d\x4e\xf5\x0e\x2d\x47\xb1\x05\x08\xd2\x22\x93\xba\xa9\x3a\x4d\xef\x04\x1e\x7f\x3a\xad\x84\x1c\x9b\xae\x45\x4b\x2f\x1e\xec\x8e\x6c\x3c\xa9\x76\xc4\x8e\x47\x2b\xcf\x04\x9e\x27\x79\xa6\xad\x43\xc1\x26\x55\x1c\x3f\xeb\xd5\x38\xff\x1e\x8d\x3d\xc4\x84\x4f\x93\x87\x0c\x36\x7b\x68\xe1\x0b\x0d\xe2\x8b\x04\xf5\xf2\x22\x95\x16\x09\x44\xaa\xff\x07\xc5\x05\x7c\xdc\xe8\x39\x27\x56\x63\x18\xda\x09\x94\xb8\x95\x6f\xfa\x59\x25\xdb\x78\xb6\x05\xa4\x7d\xae\x3b\x74\x85\x66\xc6\x58\x02\x45\xc0\x38\x37\xad\xd1\x04\xc4\x73\x50\x91\xfa\xe9\x8f\x45\xc0\xef\xe1\x07\xf3\x0f\xbb\x59\x5a\xe6\xb9\x05\xcb\x1a\x28\xf8\x11\x2d\x5f\x7e\xc4\x29\x91\x0f\xa2\x21\x85\x20\xa2\x56\x79\x3d\x50\x5d\x2d\xf7\x02\x1f\xbb\xa1\xd0\x08\xe6\xd4\xf6\x8d\x36\x61\x4d\x53\x8c\xd3\x7c\x32\xb2\x62\x49\x87\x84\x0c\x32\x72\x7c\xac\x18\x9e\xcb\xb1\x7d\x2d\xea\xc7\x16\x1a\x10\xae\x5a\xea\x4b\xac\xa7\x14\x0c\xb0\xbd\xe7\x53\xff\xb3\x2e\xf1\xec\x9b\x24\xcc\x47\x26\x73\xec\x02\x97\xd3\x7a\x19\xee\xd3\x81\x57\x04\x4a\xec\xaa\x19\x18\x2d\x13\x73\x4e\x45\x33\x1f\x4e\x55\x65\xe0\x6a\x63\x88\xec\xdf\xdf\x0d\xd3\xf1\xd8\x26\x3e\x4e\x6f\xa3\xaf\x2b\x43\x23\xbb\xf6\x88\xf2\x40\xb8\x43\x9b\x1f\x72\x8e\x5b\x81\xc7\x5c\xd0\x2b\x87\x54\xe2\xd1\x5e\xe7\x95\x57\x80\x6e\x49\x8c\x82\xc6\x69\xa4\x7a\xdc\x22\x5b\x83\x91\x25\xd8\x53\x49\xdb\x4d\xd5\xd5\x38\xb0\xcb\x51\x18\xc1\x70\x15\x40\xdb\x67\xca\xc9\xed\x58\xa0\x6c\xe7\x51\xc7\x43\xe0\xbf\xd1\x86\x85\xe5\x45\x39\x88\xa4\xef\x1f\xd0\xe2\x87\x4a\x6c\xf0\xc3\x16\xc4\x74\xa9\x8a\x28\x4d\x04\x22\xb3\x14\xac\x9b\x9a\x1a\x4e\x88\xb2\xba\x23\xa9\x71\xef\x8e\xba\x93\xcc\x2e\xff\x7c\x77\xe9\xcb\xf4\xb4\x01\x02\x6d\x05\x8a\x73\x7a\x43\x01\xb6\x3b\x36\x3a\xbf\x74\xd0\xf5\x6f\xd1\x6f\x20\xd6\xb9\xa9\xcc\xac\x3a\x70\xbe\xc0\x4d\xce\x6e\x54\x81\x0e\x9e\x04\x37\x5e\xe2\x99\x5f\x53\x51\xdf\xaf\xfd\xe7\x14\x1d\x60\x93\xbb\x4a\xab\x01\xd6\xd6\x59\xa2\xb4\x2b\xa1\xfb\x05\x47\x4c\x25\xf2\xab\xc0\xe6\x84\x5e\xba\x02\xe5\x0b\x0b\x0e\x6e\xc0\x90\xa5\xda\xd3\xff\xde\x45\x37\x0d\x46\x0a\x8c\x67\xd0\xdf\x70\x95\x5e\x0a\x30\xa8\xdd\xe4\x4b\x04\x10\xe8\x42\x1b\xff\xb9\xb0\x79\x11\x8d\xd3\x24\xe2\xf6\x0a\xc7\xd0\x5f\x14\x15\x85\x7f\xde\x1a\x12\x2d\x93\xda\xff\x43\x25\x17\xdd\xaf\xf5\xf0\x6a\xfd\x52\xb5\x6f\x47\x45\x14\xa6\xd9\xa4\xe3\x6d\x96\x67\xb0\x93\xf0\xc9\xc6\xc3\x9f\xda\xb7\xaf\x9b\x4e\x6c\xa6\x12\x5d\x64\x0e\xef\x2a\x33\xec\x77\x5b\x34\xe3\x97\x48\xd9\xd3\x69\xcc\xb0\x7b\x53\xe0\x83\xbe\x73\x1a\x3d\x6c\xfa\x01\x3c\xbf\xd8\xb5\xaf\x85\xd6\x0b\x38\x88\x40\x61\xc7\xb5\x02\xfe\x76\x6b\xa2\x6b\xc7\x69\x81\x4c\x02\x7f\xf5\x08\xac\xc7\xf0\xfe\x4f\x2b\xae\xe6\x13\xbd\x87\xdf\x46\x75\xd5\x55\xee\x92\xd9\xdc\xb5\x00\x22\xe0\xb8\xa1\x94\x92\x6e\xb8\x06\xc8\xb5\x91\x25\x0e\x6b\xf5\x86\x01\x53\x9e\x44\x4a\x2c\x9d\x34\xd5\x18\xc6\xf1\x2c\x85\xb8\xec\xf6\xac\x1b\x74\xae\x62\xe0\x7d\x91\x12\x1c\x71\x87\x4d\x9c\x2e\x17\x04\x05\x71\xec\xaa\x56\xa2\xa6\xb6\x96\xdb\x16\xcd\x8c\xdf\x55\x51\xd9\x90\x4a\x8e\x12\x52\x6a\xea\x75\x56\xfb\x1c\x95\x2c\x66\xaa\x5f\xc4\x1a\x77\x5f\x49\xe0\x5c\x55\x5d\x9d\xc7\x6b\x0c\x8a\x6f\x3f\xcb\x4b\x3a\x6b\xa4\x68\xe2\xc0\xf1\x06\x0b\xeb\xc0\x7c\x77\x60\xc6\x10\xe9\xa6\xa1\x80\x05\x05\x25\x6c\x14\xda\x10\x03\x4b\x9f\x8a\xd3\x52\xcd\xcc\xba\xfb\x10\xc2\x8c\x07\xca\x26\xe2\xae\x2a\xad\xbd\xd5\xd6\x19\x04\xc5\xf4\x75\x45\x46\x39\xa2\x31\xd8\x23\xee\xfd\x26\x29\x85\x08\x33\x14\xb5\x69\xc3\x79\x0c\xa6\x7b\x8a\x43\xed\x45\x34\xfa\x26\x8e\xa1\xda\x27\x0e\x24\x7e\xa7\x39\xdd\x66\xe1\x6d\x5f\x9b\x44\x99\x25\xa0\x0d\x75\xe7\x6b\x14\x00\x3a\x01\xff\x45\x2f\x87\xec\xeb\x84\x2b\x49\x54\x74\x54\xa9\xfe\x0a\x5d\x17\x1f\x37\x54\x37\x29\xe6\x1a\xd0\x70\x40\x8c\x0a\x6e\xae\xb3\x7f\xd5\x74\x64\xc1\x44\x86\x71\x54\x14\x96\xcd\x38\xf0\xb6\xa1\x67\xc7\xc7\x2a\xff\x29\xd2\xc2\xc4\x51\x32\x44\x48\x82\xa8\xe0\x43\x2d\xc9\x02\xed\x8f\x9a\xea\xbc\x9c\xb4\xb8\x4d\x7c\xbb\xcc\x8b\x68\x39\x92\x19\x88\x92\x3d\x5a\x2e\xf9\x58\xe9\x39\xa8\x85\x09\x51\xd2\x35\xd5\x90\xa0\xbd\xef\x8b\xcc\x26\x83\x9d\x35\x2e\xba\xcf\xd0\xee\x01\x01\x46\xa0\x84\x34\x8f\xff\x21\x50\xe0\x36\xb6\x1b\xa1\xb5\x57\x13\x1a\x93\xfb\x4d\xc5\x6a\xb7\xa6\x18\xb1\x06\x23\xcb\x2c\x4c\x3d\x6b\xed\x63\x85\xb3\x2d\x47\xc3\x32\xb3\x3b\x95\xd9\x2b\x0a\x76\xd2\x47\xed\x47\xcd\x0f\xa7\xca\x1f\x02\xc2\x91\x00\x81\x2e\xd3\xc5\x61\xe9\xf8\x2e\x21\x6c\x7c\xdc\x94\xe9\x5b\xe8\x8e\xed\xd0\xf4\xd7\x0b\x8b\xa4\x11\xc9\xf6\x25\xb5\x88\xdf\x55\x0f\xf8\xa4\xe2\xb0\x8e\xd2\x38\x5e\x5f\x4b\x53\x84\x03\x48\xf5\xfe\xfd\x54\x89\x93\xd0\xfd\xf1\xff\x57\x6e\xbf\x9f\xb7\x2e\x2c\x24\x96\x41\x43\x0a\xe0\xf7\xe7\xf4\xab\x7c\xac\x2a\x19\x63\x1b\x8e\x4c\x12\xe5\xe3\x8e\x27\x90\x42\x56\x83\x8f\x95\x66\x64\x5a\x16\x93\xb2\x98\x55\xc9\xe2\x2d\x9d\x2c\xde\x52\xfe\x6e\x80\x2f\xf9\xd8\x0d\xf5\x81\x0d\xe3\x28\xa9\xb2\x23\xc7\xf7\xd8\xbe\xe1\x59\x21\x5f\xfe\xfb\xda\xcb\x8b\x43\x21\xa6\xc8\x2b\x6e\xd9\xff\xf0\xcc\x86\xbf\xa6\x49\x19\x23\xdd\x12\xcf\x57\x04\xc3\xc0\x64\x8e\xd4\x84\x97\x7c\xba\xb3\x9d\xa2\x13\xc0\x6f\x1f\x6a\x63\x2b\x33\xcc\xac\x08\x8d\x49\x3d\xc9\x27\xde\xcc\x8e\x01\x01\x73\xb7\x32\x19\x2c\xd2\xf4\x11\xc5\x8a\xfd\x48\x75\x79\x6e\xa7\x8c\x0b\xec\x8a\x1b\x53\x0f\xaf\x72\x33\x00\x86\xc7\x0d\x1a\x90\xfc\x0f\x81\x0f\x19\x8e\x6a\x56\xc2\x51\x64\xb8\xfc\x2f\x81\xb6\xbd\x50\x42\xd6\x65\x62\x5f\x9b\xd8\x90\x50\x4a\xc6\xe0\x94\xbf\xa5\x34\xe5\x6d\xd3\xb1\xc8\x45\x65\xa9\x9b\x97\xd9\xb2\x09\x2d\xc6\x20\xe8\x6c\x9f\x23\xe0\xe6\x13\xdd\x80\xb9\x09\xc0\x9a\x4f\x54\x70\xff\x5a\x31\x9a\x53\x56\x59\x17\x14\xf5\x0c\x0c\x3b\x04\x8c\xbb\x89\x76\x80\x50\xf0\x04\x12\x3c\xd6\xff\x0e\xbe\xec\x9e\x6d\x94\xac\x56\x81\xdb\xd0\xb9\xdd\x2e\x6a\x99\x90\x05\x27\xd9\xfa\x85\x1e\x6a\xd6\x40\x02\x0c\xe1\xe3\x79\x6d\x1b\x7b\xbe\x65\x55\x5c\xaa\xf6\x09\x82\x79\xf1\x63\xa2\x97\xec\x27\x9f\x26\x9e\x93\xe8\x74\xf4\x6a\x69\x77\x56\xb1\xaf\x44\xea\x9e\x17\x0a\x5b\x4b\xac\x22\x7f\x11\xa8\x8e\x00\x6e\x79\xc7\xbb\xc1\xf2\x00\x04\x7f\x07\xf5\xda\x20\x82\x7f\xaf\x2d\xd1\x18\x47\x89\xcd\x38\x86\x05\x6c\x7b\x4b\xf1\x4a\x6f\x35\xf6\xa4\x17\x16\xba\xb9\x81\xab\xb0\x92\xb4\x77\xe9\xb1\x9b\x9c\x89\x5d\x23\x6b\xe4\x8e\x6f\xa0\xe1\x92\xa9\x88\xe3\xf8\x35\x75\x35\x8d\xcb\xb1\xdd\x5b\xcd\x28\x47\x3d\xf0\xb9\xe9\x14\xf7\xe6\xb8\x69\xae\x59\x61\x16\x64\x3e\x10\x22\xbe\x0b\xad\x24\xd1\x7b\xf5\xbc\xed\x39\xa6\xdc\x22\x28\x3f\x35\xf5\xda\x58\x2c\x36\x24\x3e\x45\x34\xe5\x6a\x5c\x03\xec\x2b\xd7\x5b\x4c\xaf\xba\x83\x68\xd5\x66\x43\x91\x50\x40\x64\x8a\x66\x14\x3e\xf6\x5c\x19\x13\x96\x71\xb1\xde\x51\xce\x4d\xa7\x95\xae\x64\x6b\x6c\x31\x8e\x1c\x48\x87\xf1\xfc\x40\x71\x27\x36\xb5\xac\x68\xd3\xa9\xfe\xd0\x8b\xdd\x58\x78\xb8\x6d\x76\xd4\x0d\xfd\x58\x12\x50\xcf\xd2\x15\xab\x64\xbb\xd1\xc9\xc1\xc7\x8d\xbe\x3e\x72\x2c\x9d\x94\xfd\x38\x0a\x0d\xeb\xc7\x62\xf3\xc0\xd4\xe4\xe3\x1a\xbf\x33\x2c\x9e\x25\x75\x41\x24\x64\x9f\x63\xcc\xf0\xc9\xf4\x19\xa5\xa7\x35\x4c\x8b\x88\x83\x03\x25\x8b\x4a\x4f\x56\xea\x42\x52\x9e\x1b\x47\x99\x19\xda\x19\x0d\x47\x1c\x51\xca\x03\x9d\x0d\xa5\x63\xb5\xa3\xe7\x09\xb0\x23\x28\x7d\xce\xf9\x6d\xe9\xf7\x15\x98\xcb\xa8\x3f\x37\x13\xd2\x26\x04\xfc\x62\x3b\x21\x5c\x58\x62\x67\x7a\x82\x8d\xae\x99\xd8\x32\xa8\x83\x57\x25\xc9\x26\x90\x9c\x93\x7a\x9d\xe4\x18\x0a\x73\x79\xae\xd1\x51\x03\xb9\xe0\xdc\x74\x54\x9c\x8f\x3b\xe7\xe3\xa9\x57\xb9\x19\x45\xc5\x2e\xba\x4e\x24\xe4\xd0\x2c\xd7\xe1\x05\x72\x96\x2d\x5a\x30\x24\x8d\x55\xfd\x78\xcc\x04\x15\x24\xc5\x43\x4f\x57\xd4\x26\x77\xb6\x31\xf2\x0f\xcc\x77\xed\xb8\x6f\x5f\x7f\x3d\x66\xc3\x7e\x29\x99\x29\x47\x9c\xcd\xe0\x61\x5e\x10\xc9\x2b\x8c\x4c\x36\x36\xa1\x2d\x8b\x28\x34\xd0\xa0\xc2\x2c\xbc\xa9\x5a\xb8\x8e\x20\x54\x53\x9d\xa1\x3c\x7c\x62\xb3\xfe\x88\x57\x65\x9f\x01\x73\x0e\x80\x68\xa7\xe7\x97\xae\x27\x37\x94\x58\x21\x94\x51\x01\xc4\xec\xee\x79\x40\x6d\x47\x4f\xe9\xc2\xec\x44\x7f\xa0\x2a\x58\x89\x79\x38\x8b\xa7\x61\x2c\x5d\x69\x71\x33\x37\xab\xb6\x1a\x7f\x1d\xa5\xbc\xf7\x13\x7a\x90\x7c\x1c\xe8\x62\x54\x92\x53\x3b\x3b\xc0\x21\x80\xb7\x0f\x02\xc5\x76\x07\xd1\x57\x24\xdc\xab\x17\xc8\xc7\xaa\x6c\x36\x4e\x33\x53\xa4\x59\x54\x8e\x69\xd1\x41\xd0\x08\xa4\x9b\x8f\x55\x70\xbf\x9c\xc6\x71\xba\x66\x07\xbb\xa9\xa4\x2a\x8a\x57\x1d\xa7\xee\x0a\xbd\x47\x8c\x72\xd6\x23\xc3\x72\xfb\xff\xd0\x14\x92\xa8\x55\xb5\x8f\xb3\xcc\x1c\x7f\x04\x83\x09\x1b\xec\x91\xa9\xb7\xb5\xa8\xa9\x74\x50\x4a\x9e\xa5\xd1\x8a\xe9\x74\xbe\xf9\x12\x3f\x58\x88\x5e\xf0\x71\xa3\xa8\x78\x78\xfe\xe5\x2e\xd4\x74\xbd\xfa\x19\x7d\x40\xea\x22\xaa\x8c\x98\xa5\x79\x15\x9c\x94\x39\x71\xd9\x91\x52\xbe\xa5\x50\xec\xb7\x54\xf1\x3d\x2f\x27\xd5\x3e\xbc\xb7\x9a\xe8\x4e\xa5\x75\xc9\x69\xae\x5e\x51\xb2\x33\x7f\x46\x13\x48\x98\xe4\xd5\x57\x03\xee\x9e\xe9\x29\x7a\xc1\xd5\x40\xf9\xa5\xa1\x07\xd0\x39\xfb\x2a\x0d\xca\x6a\xf7\xc5\x10\xba\x86\x75\x45\x52\x32\x25\xc0\x77\xa2\xd6\x96\x61\x27\x52\x4a\x74\x41\xbb\x0a\xd4\x95\xc4\x56\x94\x44\x10\x0b\xaf\x85\x31\x35\xd9\x74\x1f\x89\xad\x8d\xd2\x74\x22\xc5\x50\x66\xec\xd4\xd8\x3b\x2e\x35\x2b\xb3\x55\xbb\x9e\x53\xc5\x41\xd0\x0d\xaf\x22\x68\x9e\xea\xf9\x92\xf2\x39\x55\x70\x63\x61\x05\x91\xf5\x6f\xa8\x97\x2c\x75\x97\xd3\x32\x61\xf5\x92\x9a\x35\x90\x94\x9a\x15\xb7\xb4\x28\x13\xfb\x85\xa2\xfb\xde\xde\x40\x42\xd3\xbd\xf4\x3d\x58\xbe\x6e\x05\x8a\x72\xcc\x9a\x5e\x28\x2a\xde\x50\x98\xf0\x1e\x94\x4d\x81\x68\x5d\xa6\x57\x8f\xa8\xe4\x86\x22\x1f\xdf\xc7\x0b\x73\x8a\x6d\x55\x04\x8a\x41\xf1\xb9\x12\xd4\xbd\xa6\xe7\xce\x75\x5d\x9f\x6a\x36\xb0\x1d\x98\x3f\xd0\x0d\xb3\x74\x6d\x20\x96\xfd\xc8\x19\x3e\xd7\x23\x83\x12\xe6\xad\xa6\x02\xdd\x2b\xaf\x74\x8b\xcc\x44\x89\xbc\x43\x91\x40\xf6\xfb\xb4\xb2\x60\x4d\xcb\xa4\xb0\xd9\x9e\xea\x86\xb1\x48\xd6\xe5\xd2\x58\x8c\x0b\x11\x11\x1b\x89\x30\x14\xaf\xe4\xa2\x3e\x0e\x94\x2e\x03\x08\x18\x98\xee\x8f\xf6\x3c\x41\x72\x3b\x8a\xc3\xdc\x88\x89\xd8\x1e\xdb\x10\x3b\x34\x4a\xd2\xfe\xf0\x88\xd8\xb7\xaf\x5b\x44\xc3\x51\x41\x51\x81\x6b\x24\x77\xf8\xd8\x39\x55\x55\xb4\x79\x68\x26\x56\xd9\xd5\x62\xe4\xf2\x71\x93\xd4\xbe\xd0\x4d\xcc\x2a\xba\xce\x9c\x28\xbd\x17\xa0\x3e\xd9\x2e\xd3\x5f\xe6\xa3\x2c\x4d\xc7\x0c\xcc\x82\x22\xc0\x7d\xfe\x7c\xd2\x16\x06\x99\xb2\x48\x59\x1b\xdb\x83\xf3\x40\xdd\xf8\xb8\x11\x6f\xbd\xf2\x4a\xf5\xdf\x95\xb4\x2c\x6a\x8e\x00\x1e\x2b\x3d\xa9\xa4\xe0\xe2\x68\x95\x59\x81\xdc\x46\x1f\xf8\xf7\xe3\x63\xed\x30\x2a\xa2\xd7\x6d\x92\xef\xf0\xfa\x78\xd7\xf8\x85\xe3\xc5\x3c\x50\xb4\x73\xe6\xf3\x4a\xd9\x5e\x35\x35\x32\xe7\x40\xda\xcb\xfd\x42\x6b\x93\x62\x54\xe6\x91\xc9\xc7\x58\x6a\x1c\x69\x50\x1b\xcb\xfa\xcd\x3a\x2b\x52\x06\x14\x85\x9e\xad\xa8\x8c\x17\x54\x8d\x68\x90\x55\x51\xf4\xac\xaa\x06\x60\x27\x41\xbc\x32\x03\x9c\xde\x75\xdf\xba\x36\xca\xa6\x66\x00\x39\xaa\xf4\x6d\xf6\x10\xd8\x7d\x59\x59\x4a\xe9\x26\x81\xff\xe2\x9f\xfc\xe3\x8e\x9f\xc1\xe7\x89\x86\xc0\xc7\x4a\x79\x32\x35\x85\x7e\xf2\x98\xa4\xf2\x1a\x7c\x8d\x3a\x8e\xd3\x75\xc8\x3d\x20\x7d\x3e\xca\x2c\x53\x11\xc8\xa4\x7b\x77\xd2\x99\x5e\xd9\xdd\xab\x9b\xda\x84\x74\x4b\x1a\x9a\x28\x07\x9d\x26\xca\xd3\x7a\x4b\x9d\xd8\x02\x3a\x16\x5e\xf6\x38\x50\x5b\x4e\x9b\xa8\x53\x95\xb4\xd2\x75\x20\x69\x40\xe7\x20\x1f\x2b\x4a\x22\x75\x5c\x53\xd6\xc1\xfe\x33\x81\xa2\xc8\x5e\x50\x86\xe3\xf7\xda\xfc\x76\x87\x91\x49\x0a\x50\x91\x34\x78\x8d\x3c\x14\x01\x98\x54\xe1\x14\x25\xf0\x78\x9b\x6b\x49\x77\x92\x46\xa2\x09\x80\xf5\xf7\x56\xa0\xe4\x33\x6f\x39\xfe\x61\x11\x85\x2b\xd6\x91\x7c\x9c\xbb\x42\x75\xd5\x7c\xd2\xac\x7e\x1f\x58\xea\x66\x96\xe8\xe9\xfc\xc8\x1d\x64\x50\xbd\x1c\x3e\x69\x63\x8b\x9b\xa2\xb0\xc9\xc0\x70\x71\x58\x40\x0b\x9f\x9d\x6f\x4e\x5d\x19\xed\xc5\xbf\xe3\xeb\x40\x28\x96\x21\xb1\xbd\x33\xf5\x24\x81\x33\x50\x80\xc2\xac\xbc\x83\x7a\x02\x70\xbc\x8b\x53\x2f\xc4\x7e\x5a\x79\x01\xfe\x37\xff\x10\xfb\x16\x2f\xb0\x88\x82\x45\x37\xb4\x8a\x53\x30\xd4\x1f\xa8\x7e\xb9\x9b\x81\x32\x9c\xdd\xbd\xe1\xb7\xc0\xb9\x0d\x8a\x7e\x44\xfb\x90\xf6\x00\xe1\xe9\xd3\x48\x97\x58\x74\xe6\xe0\x3f\x7d\xc1\x75\xe5\x56\x51\x1c\xf6\xd6\x2b\x6a\x25\xda\x83\x5a\x0d\x80\xa5\x67\xa8\x72\x86\xc4\x62\x17\x35\x1d\xe0\x07\x1f\xe3\x3c\x1c\x91\xe5\x97\x7a\x0f\x09\x50\xfd\xf2\xb7\x78\x09\x78\x04\xfb\x06\x46\xf3\xec\x86\xe4\x59\x24\xce\x00\x66\x09\x6e\xe6\x69\x2c\x0f\x82\xd6\xd2\x15\xa0\x7a\xf0\x40\x45\xb0\x67\xa6\xaa\xe1\xef\x4e\x83\x54\xf0\xca\x2b\x5d\x33\x1c\x66\x66\x55\xe1\xd1\xa8\x12\x6c\xdf\xf0\x15\x83\xed\xbd\xc7\x55\xa7\x8f\x21\x11\xd8\x2a\x14\x06\xe6\xf1\x7e\x50\x5b\x4b\x9e\x5f\x94\xa8\x38\x50\xa1\xca\xaa\xcd\xd6\xd3\xc4\xce\xd1\x6e\x89\x57\x73\x97\xb6\x54\xb7\x44\x7a\x28\x02\x29\x98\xae\x7c\xf1\xff\xd7\xc8\x5a\x34\x4c\x0c\x41\x95\x0b\x87\x18\xf4\xb8\x5b\xd7\x64\x54\xc1\xfa\x09\xdf\x45\xf8\x5b\x67\xe8\x0a\x11\x7d\x9f\x0c\x34\x19\xaa\x1c\xac\x93\xbf\xc1\xc2\x21\x91\x2c\xe6\x3d\x84\xc5\x18\xb5\x9e\x01\xba\x1d\x45\xd9\xb8\xc5\xd5\x71\x6c\xf3\x9c\x93\x23\x11\x0f\x00\x3f\x8b\x8f\x5b\xfc\x5f\x5f\xee\x8e\x4d\x3c\xc9\x4c\x58\x44\x21\xb4\x09\x25\x0f\xa4\xc6\xda\x0f\x14\xe8\x7d\xdd\x99\xa7\x67\x76\x6c\x06\x48\x16\x10\x0f\x74\x7a\x8a\x72\xd0\xd9\x70\x08\xbf\x8d\x8b\x35\xb3\xce\xfb\x12\xe2\x2e\x16\x66\xe1\x13\x6f\x1a\x5c\x16\xa3\x34\xcb\xb5\xd3\x1e\x8b\xcf\x88\xdc\x84\xea\x5b\x4f\xd3\x95\xdd\xbe\x9c\x04\x06\x17\xfe\xec\x2e\x3d\x68\x80\x3c\x47\xf0\x79\x25\x35\xbc\xa4\xe5\x48\xdc\xc7\xa7\x4a\xb7\xf8\x06\x52\x04\x27\x29\xef\x94\x16\xcf\x37\x42\x8a\x7d\xfb\xba\x99\x1d\x96\xb1\xc9\x14\x1a\x75\x44\xa1\x51\x47\x14\xa5\x3f\x4a\x56\x85\xdf\xd2\xd6\xa6\xed\x2b\x2f\x63\x3b\x88\xcc\x2e\xba\x70\xc6\x9a\x02\xaf\xfd\x78\x53\x01\x0e\x7f\x31\xf5\x15\xaa\xed\x3d\x2d\xed\x44\x33\xd4\x35\x6f\x39\xd4\xf4\x48\xe0\x97\x85\x26\xed\x79\xff\xfe\xee\xb0\x8c\x12\x6b\x3a\x7a\x0c\x68\x12\x98\xa2\x54\xc7\x26\x59\x11\x57\x44\x41\x49\xe8\x92\x05\x3e\x69\x89\x3b\xfb\xd5\x52\x82\xa8\x43\xc4\x77\xab\x1b\x93\x6a\x06\x7d\x1c\x3f\xc5\x5e\xe4\xc2\xc3\x57\xd2\x64\xe5\xeb\xaf\xc7\xd5\xfe\x51\x4d\x67\x84\x52\xa7\x01\x5f\xf3\x49\x8d\x9b\x16\x25\x83\x27\xe9\x35\xe3\x27\xae\x07\x0a\x32\xf8\x5d\x7a\x2e\x78\xc0\xdf\x21\xa1\x41\x71\xb8\xf0\xc3\xe7\x47\x18\x31\x22\x50\x56\x3d\x61\x05\x05\xbe\xec\x4b\x12\x8e\xdc\x7a\x1c\xcb\xbe\xe0\x92\x4a\x2e\x8e\x6d\xdb\x9d\xa5\xc6\x81\x25\xe7\x05\xdf\x71\xe4\x89\x1f\x4d\xd5\x4a\x08\xba\x2d\xe2\x78\x50\xd6\xf8\xca\xd5\x3c\x48\xac\x1d\x10\x40\xc3\x85\x28\x8c\x5d\x4e\xc9\xb0\xb6\xb9\x1e\x40\x0f\x42\x9d\xd3\x9b\xfa\x51\x7a\x09\x52\xff\xc5\x3c\x75\x59\x55\x75\x35\x58\x55\x01\xf7\x88\x4f\xae\x66\x69\xb5\x48\xf6\x72\xab\x3b\xcf\x65\xee\x78\xd2\xc2\x56\x57\x5d\x0c\x9d\x17\x59\x24\x26\x92\x8b\x7e\xc0\xab\x8a\x6e\x13\xae\xeb\xc6\x76\xd5\xc6\x33\x9a\xca\x31\x55\xca\x40\x17\x14\x90\xbe\x15\x28\x79\x99\xb0\x8c\x27\x45\x99\xe9\x94\xe6\xb2\x4a\x69\x2e\xb7\x49\xfd\x1e\xec\x8e\x4d\x94\x14\x26\x4a\x3a\x6a\x56\x1d\x0f\x14\x4d\xf8\xb8\x6e\x29\xb2\x21\x5c\x15\x3b\xbe\xee\xf8\x69\xe0\xe7\xec\xa7\x6d\x8f\x4b\x18\xe9\x1a\x50\x38\x19\xa8\xba\xc8\xc9\x1a\x6f\x20\x8a\x3a\x3e\x28\x87\x35\x85\x54\xb9\x1e\xfe\xf2\xe7\x17\xbb\x7d\x93\xac\x64\xe5\xa4\x50\x79\x19\x44\x75\x45\xf7\xf7\x99\x7a\xe7\xcf\xbe\x7d\xdd\xc3\xf3\x0b\x7b\x95\x13\xc5\x86\xe7\x74\x72\x9d\x0f\x33\xe2\x6f\xf5\x54\x68\xfe\x08\x35\xaf\x73\xc3\x2f\x26\x1a\xe2\x92\x7b\x74\xf7\x28\x9d\x7d\xa0\x9a\x94\x3f\xa0\x71\x0f\xf8\xf8\x9d\xa9\x2f\x6b\xfe\x05\xe0\x21\xfe\x87\x40\xad\x0a\x3f\x68\x2c\xc0\x5f\xef\xda\xd7\x26\x26\x71\x3e\xc8\xdc\x87\x16\x78\x34\x90\xe5\x33\xc5\x6b\xc5\xaf\xb2\x03\x93\x84\x5c\xdc\x65\xc5\x42\xa5\x3a\x75\x9b\xae\x19\x43\xf5\xe3\x56\x46\x64\x6e\x27\x26\x33\x85\x8d\xd9\xaf\x82\xc5\x10\x68\x29\x10\x61\x04\xb5\xc9\x03\x04\x63\xc6\x33\xb6\xe2\x4f\x94\x91\xc3\x27\xaa\x8f\x81\xb8\x24\x7b\x55\xef\x33\xde\x30\xe0\x9a\x93\x2a\x1d\x3b\x03\x0d\x16\x27\xa9\xa4\x3a\xa4\xb4\xd6\x12\x5d\x12\x7f\x3a\x78\xa8\x25\xcb\x77\xbf\xe3\x6a\xd0\xec\xb5\x49\x9b\x1e\x1f\x73\x56\xc5\x7f\xe5\xb4\xc3\xfa\x59\x9a\xbc\xc6\xbb\xba\x53\x1a\xf7\x8d\x0e\x6d\x74\xd0\xae\x19\x4f\x62\xa4\x4f\xd2\x58\x5b\x2d\xbb\x7c\xdc\x6a\x50\x16\x25\xab\x66\x00\xae\x07\x76\xb0\xe3\xb8\x35\x69\x83\xab\xd5\x11\x9b\x83\x83\x6c\x0a\x2d\xa7\x6c\x80\x90\x50\x14\xe7\x63\x25\xc5\x37\x4e\xb3\x62\x68\x86\x36\x9f\xa5\xdd\x44\x14\xdd\x3c\xe8\xb6\x89\x92\xa9\xd4\xb1\x3b\x4a\x2d\xd2\x7f\x4b\xdf\xc6\x69\x32\x94\x5e\x23\xa5\x04\xf3\x9c\xeb\xbe\x16\x79\x97\x7c\x5c\xd6\x1e\xdf\x6f\xeb\xc7\xf7\xdb\xc1\xd3\x91\xa3\x61\x8c\x6d\x32\x48\xcb\x9c\xdb\x5e\x9d\x89\x9f\x37\xf4\x9b\xfe\x2d\x15\x64\x2c\x67\x26\x2f\xb2\x32\xac\xd6\xb9\x19\x85\xb6\xdd\x56\x62\xf6\xa8\xde\x4a\x05\xb3\x25\x0e\x78\x2d\x4a\x46\x25\xfc\x3c\xb1\x31\x7c\x88\xab\xe3\x13\xd5\x05\x33\x31\x29\xad\x5a\x5b\x14\x30\x6f\x9d\x6e\x50\xf6\x9e\x5f\xec\xe6\x13\x1b\xd6\xfa\x92\x31\x41\xae\x28\x02\xfc\x15\x57\xbe\x67\x0c\x4d\xfe\x14\xf3\x91\xb3\x09\x3e\x09\x7c\xdd\xca\x64\xfd\xa8\xc8\x4c\x16\xc5\x28\x8d\x32\x45\x47\x09\xee\x7d\xa6\x50\x9d\xa1\x89\x92\x9c\x64\xc3\x31\x9a\xfe\x7c\xaa\xbc\xab\x58\x7c\xd6\xc9\x3a\xb8\x82\xda\x5b\xd8\x54\x91\x54\x5e\xd6\xae\x59\xe7\x95\x29\xda\xf7\x31\x1b\x39\x2b\xc4\xc8\xc4\xc2\xb2\x6b\x83\x4a\x01\xfc\x79\x17\x41\x97\xc9\xa0\x8c\xd7\x67\x3c\x8b\xe4\x16\xa5\x8f\xae\x85\xdd\x89\x3c\xcd\x28\xbd\x83\x28\x4b\x13\xaa\x9f\x71\x4b\x72\xa0\x24\x2e\xff\x90\xa6\x30\x2e\xe0\x08\x6f\xe4\xb2\xa4\x56\xdf\xcc\xff\xa2\x04\xaa\x12\x5b\x66\x69\x5e\x66\x43\x9b\x26\x1d\x4a\x8a\x1d\x9b\xc6\x71\x70\x36\x1b\x6f\xf4\xc0\x7c\xd7\xc4\x85\xcd\x12\x16\xa1\xf5\x6e\x92\x74\x01\x32\x28\xdb\x4c\xb5\xcc\x60\x35\x62\x45\x52\xf6\xf9\xa2\x85\x56\x3c\xbf\xbc\x99\x9d\x19\x44\xf1\x3a\xf1\x4b\x9c\x37\xf0\xe2\xa2\x96\x9b\x7a\xd9\xd5\xb6\xab\x57\x80\xbd\x15\xe9\x16\x50\x9e\xdd\x3d\x9f\x04\x8e\xa3\x3c\x8f\xaa\xa8\xb1\xe3\x4d\x9c\x68\x19\x10\x43\x27\xf9\xdd\x28\x59\x8e\xd3\xb5\x7c\x46\x75\xb1\xb2\x09\x36\x70\x99\x7b\xb5\xbe\x76\xa5\x76\x95\x26\x52\x0e\x45\x24\xb1\x63\x43\xc3\x48\x53\x15\x2b\x3c\xda\x5a\x7d\x0c\xd3\x35\x8e\x95\xb0\xb3\x9e\xc2\xaf\xf2\x89\x1a\xef\x99\x8d\x92\xbc\x84\xae\x2b\x0d\x31\xec\xa5\x2c\x8a\xc5\x27\xaa\xd7\xcd\x8b\xdb\x01\x87\xd2\x18\x02\x1f\xab\x0e\xcd\x28\x09\x33\x6b\x72\xbb\xd7\x83\x28\xc7\xb4\x89\xcf\xa7\x84\x8f\x70\xab\x03\xbd\x39\xb4\xa2\x9c\x01\x8c\x01\xe6\xcb\xe7\xb4\x7b\x20\x2c\x3b\x16\x78\x02\xca\xbb\xf4\xa3\x40\x07\x3e\xc5\x1e\x2f\x5d\x5d\x33\xde\x82\x97\xf6\xeb\xa5\x2d\xf8\xc5\x61\x5e\xfc\x41\xa0\xc5\x22\x97\xcb\x5c\x50\x7c\x29\x67\x74\x9c\x94\x56\x4d\x59\x6c\xab\xad\x4f\x37\xcc\xd2\x74\x85\xdd\xe4\x9c\x3c\x8d\x16\xb4\xf1\xc2\x2f\x43\x93\x0c\x46\x11\xb0\x09\x06\xd6\x94\x4b\xe3\x05\x45\x1f\x19\xa4\x61\x39\xb6\x49\x91\xcf\x69\xc4\xb8\xa6\xc2\x4a\xb7\xe8\xb8\xf4\x0e\xc1\x39\x17\x28\x35\xb3\x6d\x1b\x1e\x2a\x4d\xcd\x18\x5d\x4f\x40\x30\x8f\x29\xd3\xd6\x63\x6a\xed\x67\x15\x09\xfe\xa3\x56\x83\xcd\x65\x82\xcf\x64\x3d\x55\xba\x3d\xee\x9e\x5d\x5f\x67\xda\xcf\x6d\xb6\x2a\x61\x3b\x5e\x15\xf7\x4a\xf0\x49\xcb\x2e\x5d\x85\xbc\xf0\xe7\xf1\x32\x72\x27\x75\xde\xbe\xe9\x15\xda\x6f\xfe\xb4\xd1\xad\x8e\xe1\x9f\xe4\x65\x5c\x98\xa4\x90\x4e\x68\xae\x04\x05\xca\xe6\xf7\x6c\xad\x1d\x44\x85\xdc\xc3\xac\xec\xdb\x2c\x5d\x35\x3b\xbc\x1d\xd8\x19\x5a\xf1\x9c\x4b\xf7\x81\x79\x47\x70\xe9\x38\xb9\x03\x7e\x76\xe2\x21\xd2\x71\xde\xb4\x4d\x01\xed\xfd\xfb\xbb\xe9\xf2\x72\x14\x46\x29\xad\x5d\x62\xb5\x56\x25\x84\xe2\xb4\xf6\x90\x6a\xec\xd7\xbb\x87\xe7\x5f\x7e\xd2\xc3\x23\xa7\x80\x33\x62\xd1\xe2\xd8\x5e\x9a\x89\xbd\x0e\xe9\xcc\xc6\x8c\x76\xa3\x56\x0e\x3a\xe8\x72\x42\xdc\xf3\x21\x52\x49\xf1\xf2\xab\x82\x28\xb1\xf2\xa3\x47\x84\x93\x07\xbc\x05\x48\x55\xdc\x93\x5a\x3e\xa4\x69\x8c\xde\xc5\xdb\x00\x43\x51\x4c\xb8\xa5\x0a\x7e\xd7\x11\x69\xb1\xfe\x64\xa0\x16\xa7\xbb\x8d\xc7\x73\x78\xfe\xe5\xee\x28\xf2\x55\x00\x31\xaa\xad\x7e\x92\x8f\x1b\xf1\xe0\xc2\xa1\x6e\x3f\xea\x73\x3c\xe8\x8a\x6a\xbe\xc0\x36\xfd\x22\xdb\xd7\x41\x66\xf3\x41\xc2\xac\x48\xec\x1c\x17\x75\xec\xd4\x84\xc5\xaa\x0d\xab\xcc\xab\xa0\x42\x69\xa2\xbd\x17\x78\x4d\x9e\xf7\x1a\x79\xd3\x2f\x74\x4d\x92\xa4\x65\x12\xca\xbc\x71\x0a\x5f\xd5\x8b\xe3\x93\xc6\xce\xb8\xf4\xe2\xc1\xee\x24\x8b\x92\x30\x9a\x18\x69\x8a\x47\xf6\x0c\x97\x02\x3e\x6e\xa4\x99\x0b\x87\xba\x03\x6b\x62\x9b\xe5\xa3\x08\x66\x6b\x08\x8a\xf1\x3e\xf8\x58\xb1\x99\x4d\xf1\x9f\x16\x9d\xda\x0c\xa6\x9f\x92\xb9\xed\xd1\xca\xcc\x44\x71\x96\x1a\x36\xfc\x6a\xd3\x3f\x69\xe9\x23\x18\x44\xa6\x6f\x49\xf9\x5e\xc1\x17\x9f\x2a\xa3\x92\x4f\x1b\x9f\x3a\xf4\x62\x77\x92\xa5\x55\xec\xcb\x12\x08\x6e\x04\x57\xcf\x0e\xb0\xfb\x75\x15\x52\x7d\xa8\xa6\xaf\x7d\xcd\x80\x76\xd5\x51\xee\x31\x28\x3b\x09\x09\xc9\xf3\x22\x4d\xf8\x6a\x19\xe5\x11\x79\x08\xcd\x79\x7a\xe6\x9b\x18\xac\x60\x31\x5f\xc1\x7e\x22\xa3\xa1\xe3\x74\x90\xf6\x6c\xf8\xf8\xe4\x76\xa3\x48\xcc\x9c\xc1\xb8\xca\xf4\xbd\xf6\xda\x45\x45\xa9\xbf\xd8\x06\x63\x93\x0e\x2d\x39\xdb\xf2\xb2\xe9\x28\x2d\xd5\xc3\xe3\x93\x36\xd1\xab\x65\x13\x41\xbf\xb6\xe6\x6c\xce\x43\x99\x4f\x94\x28\xdb\xd0\x26\xcf\x92\x84\x3a\xb2\x52\xf4\xf5\xf3\xb1\xd2\xdb\x1d\xa7\xb1\x0d\x81\x48\x2e\x2e\xd6\x2c\xf0\x04\x5b\x96\xf8\xb3\x9f\x66\x03\x9b\xcc\x78\x6e\x15\xb3\xfa\xd9\x73\x44\xb9\x16\x6e\xaa\xa1\x97\x45\xe1\x68\xd6\xa7\xd7\xec\x87\x28\x62\xa6\x1d\x2d\x72\x7a\xc0\x03\x56\xfe\x6d\x9b\x24\x1c\xa5\xd9\xd8\x88\xbb\x04\x96\x65\xe6\xd4\xf3\x49\x6b\x65\x6a\x68\xab\x4f\xcd\x2a\xda\xe7\x8e\x0d\x7c\x85\x88\x6a\xf8\xe1\x85\xde\x5c\xe9\x17\x96\xdd\x6d\x6c\x8a\x70\xe4\x1a\x21\x50\x5c\x03\x1b\x1b\x0b\xf1\xae\x9e\x2f\x7b\xcd\x2a\x8d\xd4\x49\x5c\xb2\xc3\x3e\x86\x3f\xca\x6b\x92\x1e\xfb\x79\xfd\x9b\xca\x61\x7f\x54\x0e\xed\x8e\xea\x0d\x81\x9a\x75\x4c\xe9\x8a\x32\x0a\x89\xf0\xea\x3b\x4a\x3e\xe7\x24\x81\x23\xd2\x9d\x55\x0d\x41\xfe\x9b\xc6\xda\x79\x60\xbe\xbb\x5c\x7e\x3b\x02\x5b\x05\x0b\xec\xd9\xa9\x16\xec\x6b\xa6\xdf\xd5\x23\x8c\xd3\x9c\xd5\x3e\x30\x07\x98\x68\x51\x33\xae\x17\xd6\x5e\x8b\x31\x6a\x3e\x4a\x27\x13\x99\xa7\x5b\x64\x64\xb0\x75\x7a\xda\xfd\x82\x65\x9a\x04\x8b\x26\x69\xf6\x1f\x69\xbb\xd3\x56\x2d\xcc\x0b\x03\xd7\x6d\x7a\x61\x2c\x71\xa2\xc4\x73\x91\x14\x00\x2c\x7d\x53\x85\xe3\x13\x6b\x56\x66\x3a\x4e\x57\xe7\x4e\x4d\xf4\x93\x1e\xb2\xe0\x24\x2d\xab\x1f\xe5\x9f\xe8\xd0\x75\x48\xbd\x96\x89\xac\x26\x5b\x6d\xa7\xff\xe6\x4b\xdd\xaf\x7f\x31\x67\xd2\x07\xd7\x49\x14\x8e\xd2\xd8\xb0\x10\xb6\xb4\x63\x56\x7f\xcb\xc7\x2e\x33\x0c\xd3\x71\x6e\x0a\x9e\x20\x88\x36\x7f\x3c\x55\x32\x30\x3f\xd6\x5e\x1d\x51\x38\x32\x36\xde\xa5\x8c\x53\x3e\x0f\x7c\x23\xd2\x09\xec\x0c\xb5\x46\x26\xe4\xc5\x97\x54\x8b\xd2\xe7\x4a\x30\xed\x82\x96\x7a\xba\x18\x28\x19\xa6\xa6\x10\x45\x15\x5e\x56\x8b\x3e\x22\x55\xc1\x61\x7c\xcf\x34\x6a\x0f\xc8\x11\xee\x06\x5e\x1c\xea\x98\xf6\x40\x48\x93\x55\x4b\xe0\xa7\x2f\xe1\x70\x18\x2f\xe1\x63\x0b\x19\x32\x4a\x96\xab\x70\xa3\x5e\xbc\x67\x89\x05\xe1\xda\xec\x55\x86\x26\xeb\x5f\xea\xec\xdb\xe7\x25\xcc\x0f\x8b\x72\xfa\x15\xfd\x4b\xc7\x18\xeb\x42\x81\x84\x65\xcf\x31\x3b\x3e\xc7\x53\x61\x77\x5b\xb2\xe7\xc1\xad\xdc\x56\x02\x29\xf0\xef\xc3\xd6\x37\xb3\xa1\xa4\xe5\x76\x53\x4d\x13\x29\xd1\x9f\xe8\x50\xea\x98\xca\x95\x58\x73\x0e\xf3\xbf\xc3\x65\x5a\x69\x4b\xa6\x74\xc9\x99\xcb\xee\xdf\x7f\xd0\xf3\xe0\x7d\xa7\xe8\x45\xa5\x2a\xb1\xa7\xa7\x70\xcf\xcf\x81\x8e\x33\xb7\xb0\x7a\x8d\x8a\x1f\x59\x44\x45\x59\xed\xa7\x26\xee\x28\x02\xee\x05\xa5\xed\x7e\xa1\x56\x54\x31\x39\xe0\x67\xa4\x84\x3c\xa6\xf8\x24\xf8\x8a\xa3\x56\xac\x46\x59\x9a\x54\x49\x91\x89\xa3\xbc\xe0\xec\x40\xfa\xff\xe9\x4e\xb9\x67\x5d\xb9\x4e\x36\xb1\xa8\x6a\x53\x4e\xaa\x9c\xa4\xe3\x27\x0a\x58\x60\x7c\x5c\xbb\xb4\x95\x74\x95\xfe\x0e\x99\xed\x27\x53\x95\xf2\x7e\xe2\x00\xa6\x3c\x24\xcf\x18\x96\x7b\x47\x96\x7f\x1b\x01\x39\xa6\xd7\x75\x2c\x8b\x28\x5d\xbf\xa9\x1a\x67\xe0\x70\x04\xdf\x33\xf1\x2b\xf4\x58\x0c\x40\x13\xec\x9e\xec\x87\xc6\x27\xad\x2a\x8b\x99\xf1\x21\x83\x34\xc7\xfb\x2d\xf7\x5c\x23\xd4\xa0\x5e\xcd\xb0\x30\x89\xaf\x37\xe2\x01\x42\x32\x84\x8f\x1b\x1f\x93\xe5\xf8\xdb\xe5\x60\xe8\x74\xa6\x64\x91\x57\xfe\x60\xb7\xf1\xb0\x98\x63\xd9\xb8\xe2\xe7\x17\xbb\x79\x38\x5a\x8b\x92\x44\x85\xd0\x1c\xab\x08\x01\xb2\x79\x97\xdd\xc2\x8e\x27\xae\xae\x81\x37\x76\x46\xbd\xbd\x33\x4d\x76\xda\x42\xd7\x3e\x0c\xe7\xc3\x86\x53\x74\xed\x54\x55\x64\x4b\x91\x86\x06\xe9\xda\x2e\xd5\x26\x85\x3f\x73\x0e\xa3\xca\x6e\x74\xaa\xe4\xf1\x2f\x2a\x51\x95\x3f\x99\xd6\x4d\xb4\x1d\x2b\xf8\x06\xf0\x5b\xa9\x6c\x3c\xea\xea\x56\x76\xd5\x26\x1d\x2f\xca\xc0\x82\x5b\xc2\xe0\x91\xa8\xe3\xdb\x66\x6c\x88\xae\xef\xd9\xd2\x27\x91\xa6\xf1\xc9\x54\xac\xb7\xa2\xf1\x84\x34\x11\xdd\x03\x43\xdc\x7c\x5b\x29\x2f\xdf\xd6\x6e\xa5\x69\xc2\x90\x96\xe8\x25\xfb\x71\x70\x42\xd5\x9d\xf3\x71\x9a\x16\xa3\x8e\x67\x1f\x40\x41\x85\x8f\x1b\x61\xf0\xc2\xa1\x2e\x75\x4a\xdb\xbc\x80\x5a\x67\x9b\xe1\xec\x97\xdd\x9c\xb0\xaf\x15\x99\x81\x34\x5e\xb6\xae\xbd\x32\xce\x29\xf5\xe7\x73\xce\xa8\x25\xb3\x43\x93\x0d\x48\x12\xaa\x7a\x72\x58\x36\xfe\x01\x2c\x76\x85\x8a\xee\xd6\x83\xf3\x5d\xaa\x29\x21\xc4\x3f\xad\x4a\x24\x23\x13\xc7\x96\xf7\xc7\x9a\x3e\xb4\x58\xbf\x79\x1c\xa5\x88\x62\xcc\x31\xac\x84\xb7\xe9\x2d\xf3\xb1\xd3\x87\x58\x35\x89\x4c\x0d\x24\xbf\x5c\x8c\x76\xda\xb1\x07\xe6\xff\x43\x21\xc3\xb2\x1d\x58\xc6\xd8\x6a\xf1\x94\x57\xac\xf6\x1e\xfb\x99\x5d\x8d\x72\x3b\x98\x55\xa5\xd9\x1d\x3d\xbf\x10\xc1\x96\x52\xd9\x69\x2e\xb8\x06\xbe\x27\x95\xc9\x6f\x16\x8e\x0c\xb7\xc0\xe0\x73\x6f\x29\x3c\xf3\xad\xc6\x2a\x4a\xd7\x38\x36\x9c\x6c\x4b\xb7\x40\xc7\x09\xe0\x34\xc3\xaf\x6a\x1e\xbe\x16\x9a\x38\xea\x97\x99\xaa\x96\x4e\xf5\x2a\x31\x6d\x74\xd0\x1c\x7a\xb1\x3b\x36\x2b\x62\x6f\xec\x78\x54\x9e\x15\x76\x5a\x45\x2e\xe4\xa2\x1b\xa3\x5f\x96\xd5\x7b\x03\x4f\xad\x3b\xd2\x48\xc9\x0f\xbd\xd8\x35\xe5\x20\x82\xb7\xb1\xe3\x7c\x42\x0d\x50\xe0\x0f\xed\x4e\x9a\x0d\x23\x31\x63\x69\x6b\xfe\x7a\xf8\xda\x0f\xcc\x77\x57\x92\xd4\x79\x6e\xd7\x78\xf8\xb2\x71\x7a\xfe\x03\xa1\x41\x96\x79\x51\xce\xad\xf0\xb0\x50\xcc\xde\xc0\xe7\xb0\xb4\x32\x82\x86\xf0\xf1\x5f\x2a\xc1\xcb\x23\x53\xa9\xf2\x28\x53\x37\xce\xba\x91\x5e\x40\x1e\x8f\x8f\x5b\x1c\x9b\xba\x85\x99\x34\xd8\x97\xdf\x55\x91\xdd\x77\x5b\xf1\xb6\xbc\xec\x93\x1b\x69\x28\x7a\x08\x42\x4c\xa7\xdb\x11\x66\xfa\x93\xae\x04\x65\x92\x3c\xf6\xe3\x1b\xf1\x3b\x13\xdc\xf8\xa4\x4d\x5a\x60\xd9\x64\x63\x0b\xa7\x4e\x84\x9c\x37\xc0\xd4\x60\xda\xc3\xd4\xa3\xfb\xa7\xdb\x7d\xbf\x97\x33\xdf\xe7\x04\x28\x0f\x99\x2c\x1f\xab\x88\x7f\x94\x4e\xf2\x8e\x6f\x30\xbb\x4a\xb3\x9c\x8f\x95\x44\x64\x91\x0e\x18\x0a\x01\xe7\xfb\x4d\x2d\x6d\xfb\x66\xc3\xd0\x87\x64\xc6\x59\x39\x15\x41\xec\x65\xcd\x55\x7c\x43\x57\x49\x1a\x3b\xd9\xfe\xfd\x70\x2a\xed\x78\xfc\x81\xcd\x49\xc5\x7d\xc0\xd7\xa2\x4d\x1c\xad\xd8\x19\x55\x7e\xba\xa3\x7c\x83\x40\x92\x01\x70\x78\x56\x51\x61\xcc\x60\x00\xae\xe6\xbe\x7d\xbc\xa0\x5d\xa0\x8a\x3a\x1f\xab\xc1\x4a\x3e\x4f\x19\xee\x03\xb1\xe6\xfb\x98\x94\xc8\xb7\x4f\x2a\x75\xf7\xcb\x2e\x4c\xca\xec\x24\xb3\xb9\x4d\x8a\x1d\xfe\xe7\x6f\x28\x35\x89\x3b\xba\x24\xb7\x67\xc3\x57\x9c\x87\x5f\xe9\xf9\x40\x88\xad\x4b\x85\x97\xa1\x1a\x7e\xb3\x28\xb4\x83\x9d\xd5\x4e\x84\x5d\xfe\x16\x3d\x4d\x14\x49\x50\x5e\xe5\x63\x0c\x1a\x2c\x54\x53\x04\xb2\x58\x1f\xe1\xb4\x8f\x44\xeb\xaa\x52\x9f\xde\xde\x7b\x4a\xf9\x43\x24\x26\x09\x23\x13\x3f\xa5\x1a\x3b\x95\xca\xf7\x9f\xd2\x7a\x8b\x9d\xf8\xed\xa0\xf3\x4b\x02\x92\xfd\x94\xbe\x0f\x2f\xe0\x0f\x03\x0d\xd0\xc0\x2e\x04\x51\x3a\x8b\x6c\x21\xfd\xbf\x12\x90\xc3\xa9\x6b\x1e\xf5\xfd\x5f\xd3\x86\xe9\x92\x62\x9a\x89\xe4\xfb\xa9\xa9\x16\x3e\xa1\x89\x86\xe5\xfc\x2a\xc4\x19\x95\x7c\xcc\xcb\x32\x1a\xb5\x5f\xd7\x95\xc0\x87\x06\xb9\x8d\xe3\x7c\x67\x75\x07\x18\xa9\xec\xad\x88\x91\x21\x7d\x99\x78\x70\xa7\xe8\x76\xf0\x16\xc1\x9b\x71\xd9\x4f\x95\xbf\xf0\xe7\x03\x4f\x31\x7a\xbb\x85\xc6\xdf\x4d\x27\x45\x34\x8e\x72\x71\xeb\x93\x2e\x10\x1f\x8b\x9f\xd7\xae\xfc\xa3\x34\x2b\x76\x29\x0e\xed\x8f\x94\x47\xe3\xf7\xf5\x23\x3d\x5f\xb3\x18\x62\x84\x43\x72\x12\xdf\x28\xf3\x63\xa5\x8a\xf6\x68\x4f\x69\xe2\xeb\x6a\x4e\xbe\x9e\x17\x76\xfc\x98\xd2\xda\xe3\x75\x19\xe1\xdf\xfb\x74\x8b\xc8\x4f\x76\x91\xe1\x03\x66\xe2\x35\xbc\x23\xe0\x17\x73\x1b\x2a\x77\x87\x58\x3c\x48\x4a\x97\x03\xa5\x3b\xf6\x1e\x1e\x1d\x70\x89\x4b\x6a\xb8\x7c\x32\xf5\x0a\x9f\x2c\xba\x88\x9d\x85\x95\xa1\x45\x0a\xdd\x93\xc4\x4f\xb5\x30\x92\xaa\x38\x31\x4b\x27\x36\x8b\xd7\x49\x71\x04\x31\xcf\x4d\x65\xb1\x89\xb0\x96\x05\xbb\xbd\x21\xef\x81\xa5\xbf\x45\x58\x3f\x32\xdf\x7b\x53\x1f\x80\x9d\x50\x66\x13\x27\x49\x6c\x1d\x41\xc7\x1b\x2c\xe1\xcb\x9f\xc0\xa3\x40\x11\xeb\x08\xfd\x86\xc8\x15\x55\x83\x1d\xc5\xd9\xdb\x00\x5b\x70\x5f\xdb\x36\x6a\xda\xb2\xea\x8e\x2f\x13\x5d\x05\xd1\xf6\x0f\xa6\x0a\xaf\x7d\x1b\x3e\xc1\x62\x82\xa1\x84\x41\xb6\x83\x38\xed\xe4\xed\xaa\x85\x00\x69\x23\x24\xd6\xf1\x1e\x4f\x21\x3b\xe6\xcf\x23\x74\xf7\x65\x20\x11\x9c\x7a\x47\xe9\x43\xbd\x3f\x55\x24\xea\xb3\xc1\x23\x6e\x9c\xae\xcc\xfa\x1a\x3c\xb7\x13\x20\x03\xdf\x0d\x06\xb4\x68\x0d\x7a\xbc\xfe\x5e\xcb\x3e\xf6\x5c\x77\x60\x8b\x2c\x8d\xc0\xfc\x94\x08\x5c\x69\x13\x5f\x54\x51\x0b\x04\x3a\x45\xe9\x0b\xb3\x92\xd9\xb2\x7c\xd2\xe6\xbc\x3b\x8c\xd3\x74\x0c\x26\x01\x26\xd1\x1c\x02\x6a\xe1\x0f\x7b\xc6\xcb\x7d\x85\xe4\x2e\x97\xb9\xed\x28\x11\x08\xa6\x5a\xf1\x89\x42\x68\xca\xa4\x8a\x36\xc5\xc3\x4a\x72\x5a\x85\x15\x5f\x50\xf1\xf6\x60\x68\xf7\xf8\x56\x92\xeb\x34\xab\x10\x06\x3d\xa0\x72\x99\xc8\xbb\x57\x17\x8b\x54\x69\x37\x6a\xe5\x28\xfb\xcc\x32\xa6\xeb\x74\x69\xab\x3c\x0c\xf3\x1f\x0f\x1a\xcf\xec\x09\xdd\x4a\xca\x74\x57\x34\x52\xb1\x67\x15\x7e\x66\xab\xd1\x45\xbf\x6f\xa1\x9b\x97\x63\xa5\x4c\xfa\x6b\x81\xaf\xfb\xfd\x9a\xda\x5d\xc3\x74\xd5\x66\x76\x80\x00\x0f\x6f\x17\x44\x49\x27\x74\xe6\xca\x69\xc0\x23\xf8\x18\xbb\x22\x06\x76\xa7\x57\xc3\x4d\x26\xa0\xa8\x08\x7d\xa0\xa3\xe4\xf2\x25\x59\x34\x19\xb4\x94\x90\xfe\x62\x12\x6a\x31\x98\x73\xf8\x7a\x2c\x7b\xb7\x95\x0f\xd2\xa4\x2c\x72\xa5\x78\x74\x95\xfa\x1f\xf9\xb8\x11\x9b\x7d\xed\x6b\xdd\x62\x44\x26\x66\xbe\x29\x02\x6d\xa9\x7c\xdc\xe2\x6c\xbc\xd4\x5d\x4e\xab\x70\x0e\x7c\xb7\x97\x9d\x96\xab\xd2\x75\x75\xde\x7c\x13\x93\xc5\x91\x21\xec\x87\x4d\xc8\x9c\xfe\xb0\xd3\xea\x7f\x4f\x57\xa9\x6c\x3e\x49\x93\x6a\x34\xbe\xe4\xe3\x97\xc0\x27\x6a\x17\xda\x0a\x66\xe6\xd5\xd2\x8c\x4d\x16\x71\xc7\x22\x4b\xfe\xa8\xf8\xf0\xed\xb6\x5a\x75\x3e\xb6\xb1\x33\xa6\x13\x30\xd2\xd7\xc3\x8e\xb9\xf4\xde\x66\x99\x29\xc0\x80\x42\x1c\xc2\x54\x72\x3e\x51\xcd\x54\x65\x12\x15\x76\xb0\xcb\xe3\x53\xdb\x7a\xca\xd9\x01\x10\x28\x0b\xce\x05\x8a\xda\xce\x84\x5c\x8c\x5a\xee\xe2\xc4\xd6\xf0\x13\x8e\x37\xb0\x6c\xde\xc6\x1a\x26\xed\x84\x2e\x28\xb7\xe1\x28\x21\xc7\xd3\x59\xd5\x63\xf7\xbd\x40\xf3\xec\x01\xeb\x22\x67\xbf\x41\x4f\x46\xfc\x6b\xda\x84\xef\x26\xe9\x8a\x11\x5d\x48\xb1\x19\xeb\x28\xff\xb1\xa7\xb5\x53\x42\x66\xf3\xdc\x69\x05\x88\x1e\xa9\xdf\x85\x9b\x9d\x62\x82\x43\x4d\xd6\xcc\x4c\x5d\x49\xd6\xe7\x43\xd7\xf4\x76\xbf\xbd\xe7\x17\x95\x17\xcd\x0a\x4d\x1d\x57\x84\xf5\xcd\x9e\x27\x5b\x1a\x1a\x16\xba\x65\x32\xb1\x19\x0d\x58\xce\x59\x9c\x8c\xbc\x93\xbd\x3a\xa6\x88\xc1\xf2\xc7\x08\xd6\x31\xc3\xaf\x29\xde\xfc\x35\xd5\xab\x85\x02\xa1\x82\xf7\xce\x60\x5b\xe4\x93\xb6\x3c\x60\x2d\xcd\x62\x2c\x9e\x0c\x71\x04\xca\xd0\xe7\x48\xdb\x27\x8a\x68\xc0\xd2\x20\xd2\x8d\xee\x2f\xec\xb4\xea\xc4\x2d\x46\x51\x52\xe5\xdb\x73\x2a\x9c\x3f\x4a\x6b\xae\x23\x7f\x3a\x17\xea\x9f\x4c\x55\x5f\x03\xe8\x00\xd2\x6f\xfa\x70\xa9\x9d\x68\xcf\xac\xf9\x99\x84\x4e\x79\x52\xc6\x60\x8d\x96\xf0\x70\xd2\xf4\xfc\x62\xb7\x18\x99\x02\xfe\x2d\x18\x87\x7b\x36\xbc\x40\xd4\x59\x5a\x67\xd0\x24\xf0\x18\xe9\xf7\x20\xb8\xf8\x6a\x4f\xb9\xc1\xfc\xaa\x52\x0d\x3b\xaf\xb6\xac\xdc\x26\x83\x1d\x8a\x8e\x82\xa0\xc7\x19\xe6\x7c\xf3\x25\x4f\x80\x5d\xf2\xe5\x1f\xe5\x58\xca\x19\x2e\x3f\xa8\x36\xb6\x74\xb5\xec\xe7\xd6\x08\x1c\xe4\x24\xcb\x5d\x6e\x02\xad\x4a\xec\xfd\x77\x35\x6d\x37\xcd\x26\xf2\xa0\xb0\x70\x73\x53\x32\x9f\x38\xe6\x2c\xc9\xe0\xef\xf0\x5a\xd2\xd5\x34\x73\xa8\x0c\xca\x53\x08\xe9\xd8\xab\x0b\xf3\xf7\xac\xf2\x50\xba\xa7\xe6\xe5\x9b\x8a\x1c\x16\xdb\x61\x54\x25\xea\x22\x01\x88\x27\xfb\x7d\xfa\x6b\x3e\xae\x73\x55\x5f\xef\xdb\x6c\x98\x53\x5e\x88\x6f\xbb\xa1\x4d\x7a\x3f\xc2\x53\xfc\x22\x1f\xc1\x2a\x45\x1f\x97\xe1\x48\xa9\x30\x7e\x87\xb6\x83\x2f\xaa\x5a\xee\xdf\xdf\xcd\x47\x36\x5e\x56\x8e\xc3\x67\x15\x53\xfb\x6c\xcb\x2f\x3c\x57\xcd\x04\xab\x2a\x71\x53\xad\x86\x36\x75\xab\xf5\x28\x4d\x06\x26\xc7\xda\x25\xe6\xdf\x78\x15\x7c\xa6\x34\x59\x45\x1f\x8a\xb4\x0b\xa4\x59\xb4\x7a\xea\xd2\x2b\xfa\x8c\x7a\xa7\xe3\x71\xc9\x0e\x0d\xd5\x43\xaa\xe9\xc0\x60\x08\x9c\x53\x22\xf3\xf7\x6b\xe8\x96\xb5\x03\x36\x24\x65\x89\xf6\x9a\x3b\x81\x36\x10\x48\x87\x86\x57\x14\xe1\x71\x69\x52\xd7\x17\xea\xf8\x9a\x3e\xf5\x32\x3b\x75\x0e\x54\xd8\xf8\x58\xa5\xff\x5f\x5d\x78\xfe\xb9\xe7\x0f\x1d\xfc\xbb\x55\x52\x83\x09\xf9\x86\x32\x74\xfa\x29\xf2\x6b\x21\x06\xd3\xec\x62\x35\xe4\xc0\x03\xea\xf7\x61\x50\xe4\x5a\x59\xaa\xed\x93\xeb\x59\x18\xa5\x80\xe7\xa1\x17\x8a\xdd\xee\x83\xe9\xf6\x9f\x63\xba\xf4\x9b\x34\x78\xa5\x9b\x47\xc9\xca\x5e\x22\x26\x92\x03\x94\xaa\xd7\x87\xc0\xf1\xd3\xc0\x63\x9b\x37\xe1\x0a\x88\x68\xf1\x08\x45\x91\xc8\x51\x37\xe8\xb5\x61\xf4\x9c\xe4\xf7\x8d\x2c\xe0\xff\x44\x48\xe8\xa4\x60\xaa\xb5\x08\xdb\xca\xf5\xa9\x92\x2b\xe2\x02\xb8\x28\x3b\xfa\xc2\x25\x67\xe6\xc8\x42\x2f\x05\x3e\x23\xba\x40\x59\x3a\xbe\x6a\xdb\xc6\x97\xea\x95\xe0\xa5\x03\x4b\xd5\xac\xd8\xeb\x93\x29\xe8\x06\x02\x22\xba\xaa\x32\xb4\x9f\x28\xab\xbc\xff\x79\xea\x95\x2e\x3e\xa1\x17\xc3\x5a\x4a\x7a\x14\xb0\xc4\x3c\x9b\x45\xe3\xf9\x3b\xe7\x68\x1f\xfd\x42\x57\x1e\x30\xc8\x75\xac\x75\x12\xf8\xb7\x54\x74\x86\x99\x49\xa4\xf0\x2a\x30\x96\x52\xe2\xdb\x6c\x6c\xad\xcf\x2f\x76\x27\x36\x49\xf2\xf5\x78\xd5\x24\x91\xe1\xd5\xce\xcd\x0a\x2f\x01\xb3\xd9\x28\x2b\xec\xdf\xdf\x35\x61\x11\xad\x46\x79\xa1\x98\x29\x57\x54\x55\xe1\x8a\xb7\xd5\x2c\x93\x28\x1f\x55\xf1\xe3\x8c\xff\x53\x84\xc1\x08\xff\x99\x0a\x28\x76\xac\x2d\xae\x4f\xc5\x5a\x54\x54\x4b\xd3\x61\x57\x9d\x09\x54\x7b\xb5\xaa\xa2\xac\xa5\x59\xc6\xc2\xe9\xb5\x46\x29\x2e\x0f\xab\xfa\x5e\xbd\x3c\x47\x17\x00\xa8\xfa\x87\x6d\xa2\x99\x61\x9c\xe6\xd2\x1e\xed\x3a\x34\xf6\xef\x77\xfb\xb2\x47\xf3\x97\xe3\x94\x9a\x60\x77\xea\xd0\x0d\x1d\x56\x22\xee\xa4\x60\x57\x46\xa4\xb9\x0f\x0b\xaf\x58\x9a\xb2\xe8\xc2\x9d\x1c\x87\x57\xf2\xaf\x37\xc5\x15\x76\xa5\xa3\x58\xe3\xf5\x4e\x82\x5a\xc2\xb2\x9e\x3f\xd5\x79\x49\x66\xd1\x35\xca\xd8\xb1\x33\x5c\x0a\x3c\x5f\x60\x3b\x84\x7c\x80\x68\xc1\xcc\x13\xd4\x83\x39\xdd\x9c\xfc\x83\xa9\x6a\x4c\x03\x3e\x81\x95\xf9\x4f\x69\xc4\x52\x6c\xf0\xf8\x93\x1b\xb4\x34\x20\x87\xdd\x09\x15\x63\x69\x08\xa3\x29\x8c\xab\x84\x94\xbc\x7c\x5c\xed\xb1\xbb\x7b\x1a\xe1\x54\xd2\xc3\xff\x09\x9c\x4c\x85\x54\x45\x4f\x50\x38\xc2\x4f\x2b\x89\xba\x41\x14\x16\xd5\xb0\xdb\x41\x38\x89\xb8\xfd\x74\x9c\x42\x04\x82\x17\x0c\xf1\xdb\x34\x6d\xf9\x98\xfb\x6a\xa4\x86\xa3\xf0\x8c\xb3\x0d\x92\x60\xb5\x6f\xc6\x76\x68\xe2\xe8\x75\x07\xdc\xb3\x87\x3a\xfd\x94\xf8\xa9\xb7\xb5\xb3\x24\x05\x4c\x4e\x3c\x66\xcf\x9d\x88\x62\x37\xff\xb8\x96\xa9\x29\x0b\xb2\xad\x5c\xf4\xc0\x92\x0b\x06\x21\xa3\x88\xe1\x71\x0b\x5f\x51\x23\x9d\x8a\xd6\xb1\x4f\x73\x4c\xbe\x22\xe3\x19\xbb\xef\x55\xd5\xbe\x7a\x55\x21\xbb\x23\x6b\x06\x24\x52\x25\xe2\x64\xf7\x69\x50\xf0\x71\xe0\xd9\x58\x89\x2d\x49\x85\xc2\x0b\xb2\x9c\x50\xdd\xa6\x33\x3d\x0f\x1d\x5c\xd0\x0a\xbc\xe7\xda\x30\xb1\x81\x1d\xa7\x61\x66\x04\x80\xc4\x5f\xb2\x95\x17\x9f\x28\xa1\x8c\x32\xb7\x4f\x78\x3f\xa7\x27\xa9\x75\x16\xb8\xc7\x27\x58\x74\xb1\x68\xce\x62\x08\xea\x18\x10\x2d\x3f\x5f\xd9\x50\x9a\x75\x68\x8f\x43\xd0\xb3\x13\xfb\x27\xd6\x6c\x16\xc5\x72\xf4\xb4\xc3\x82\x2f\xee\x04\x7e\x84\xfb\xdc\xdd\xab\x9e\x94\xf4\x3a\xd2\xe6\xe4\xc2\x2f\x2f\xe7\x7a\x4f\x6d\x75\x5d\xd2\x46\x96\xf7\xf8\x85\x2a\xff\x63\x13\xc7\xc4\x82\x02\xb2\x8f\x40\x05\x49\xe9\x56\xa0\xca\x78\x97\x95\xc7\x59\x92\x4f\xa2\xcc\x84\x30\xc6\x11\x17\x5f\xba\x25\x67\xd1\xe3\x14\xb3\x1f\xa5\x05\x59\xba\x30\x9e\xf1\x24\xbb\x91\x1d\x57\x2f\x22\x32\x89\x12\x2e\x3d\xa1\x84\x4b\x4f\xb4\x12\x89\xd6\xd2\x6c\x65\x4e\x55\xca\x00\xd3\xa3\xc5\x96\x25\x49\xa4\xbf\x81\x16\x03\x44\xac\x93\xa9\x7f\xfa\x9d\x8d\xe6\x42\x7c\xb0\x1b\xa6\x45\xc1\x25\x43\x2d\xec\x28\xa0\xe4\x97\x7d\x41\x3d\x4a\x55\x56\xed\x7b\xee\xee\x20\x03\x67\x23\x34\x6d\xcd\x03\x14\x48\x1c\xd2\x5a\x94\x2b\xc2\xcc\x84\x2b\x83\x74\x0d\x3f\x2f\x36\x4a\xca\x50\xe8\x4c\xf5\xfb\x9e\x8c\x33\xcc\x4c\x51\xa2\xd4\x56\x7d\xc0\x55\x19\xaa\x0f\xf0\x49\x9b\x2e\xb4\x19\xd8\x57\x9d\x34\x09\x74\xa1\x20\xa0\xc7\xc7\xb5\x65\x3d\x8c\xed\x9e\xea\xdf\xd0\x71\x7c\x49\xf1\x48\xaf\x53\x34\x06\x66\xd2\x66\x40\x6b\x20\x9f\x60\x85\x10\xb1\x33\xb5\xfc\xb0\x9c\x9d\x14\xc4\xb4\x45\x3c\x7c\x3d\xb6\xde\x9c\xfa\xee\xd1\x1f\x06\x7e\xe1\xdf\xd3\x68\x84\xd9\xb7\xaf\x5b\x3a\x3c\x07\x2b\x3a\xc8\x22\x7c\x3c\xf5\x38\xe9\x1a\x94\x04\x67\xfc\x68\x44\xcb\x30\xb6\xf0\x8f\x03\xdf\xc2\x7d\xc3\x35\xf7\x4c\x62\x93\x24\x36\x03\x11\xc9\xf5\x6f\xa9\x0e\x6b\xe5\x10\xf2\xd7\xda\xe2\x60\xb0\x4e\x2a\x33\x22\x40\x48\x77\x8f\x6d\xe5\xcc\x54\xb5\x79\x9d\x57\x31\xdd\x49\x6d\x13\x6d\xfa\xb1\x45\xd6\x8a\x35\x10\x72\xf7\x88\x21\x99\x78\xc4\x1e\x39\x94\xc2\x3a\xb5\x65\x77\xe7\x1d\x2c\x37\xfc\x69\x55\xe7\x49\xa2\x70\x84\x3c\x06\xaf\xe9\x18\xdd\x38\x1f\x4f\x95\x04\x43\xba\xca\x74\x27\x60\x0e\x37\x14\x29\x9a\x59\x06\x6c\x67\xaf\x28\xac\x43\x33\xb6\xe0\x3a\x21\x51\xb8\xee\x5d\x23\x5f\x7d\x92\x48\x5b\x78\xc2\xdb\x36\x14\x7b\xe3\xfc\x17\xd2\xf6\xc7\x76\x10\x91\xbe\x9c\x2a\xb9\xc2\x97\x46\xa4\xd1\x95\xe9\x8f\x99\x44\x03\xaa\x5f\x61\x1f\x62\xe5\x06\x36\xc1\x0b\x3a\x2f\x2c\xf8\x42\xa1\x23\x9b\x7f\x84\xc4\x02\x43\xfe\x5d\x55\x41\xfc\x64\xaa\xc5\xbb\xfd\x20\xca\xc3\xb2\x28\x62\xf6\xf1\x68\xd5\x54\x7d\x52\x99\x8b\xa1\xdd\x77\x87\x12\x36\xfb\x0d\xec\x4a\x7c\x12\x28\x4d\xf6\xf7\x55\x7f\xfc\xfb\x81\xd2\xfc\xea\xa0\xbf\x83\x4f\x7a\xaa\x98\x3b\xa1\xef\xef\xe8\xa4\xf5\x1a\x00\x79\xf1\xf9\x6d\x68\x54\xef\xeb\xa6\xf1\xfa\x78\x12\x85\x02\x3b\x20\x07\x60\xd8\x81\x4f\xb4\xc4\x5d\x9a\x55\x5b\xf8\xae\xea\x91\x61\xfc\xc2\x7c\x1c\xe0\xdb\xf9\x40\xa1\x96\xd7\xf4\xc0\xbe\x86\x80\x09\x3a\x13\x9f\x28\x51\xe4\xf3\x58\x09\x58\x07\x76\xaa\xe6\x4f\xb3\x69\xb0\xca\xe5\xd7\xa2\x81\xcd\x27\x99\x28\xf9\x8a\x4b\x4b\xc7\xe9\x8f\x1f\x71\x63\x76\x6c\xa2\x58\xc2\x0d\xa6\xf8\xe3\x01\x0b\xdf\xbf\x05\xc1\x5c\x8e\x8a\xc2\xb1\x85\x9d\xa7\xaf\xab\x52\xdd\x52\x41\xeb\x89\xc6\x30\xad\xa2\xb2\x6a\xff\x4b\xe3\x68\x60\x1c\x02\x2f\x43\xb3\xe3\x54\x06\xff\x6c\xaa\xb2\xd4\x33\x6d\x5d\x2d\xcb\x26\xce\xb1\x12\x0b\x42\xa3\xd0\x1a\x85\xa2\x4e\xca\x2c\x1c\x99\xdc\x66\xcc\x08\x06\x73\x0b\xb8\x37\x1f\x37\xd8\x7c\xfb\xf7\x77\xc7\xf6\xf5\xd7\xd3\x61\x94\x66\x49\xaa\x9a\xd8\x38\x23\xe2\x13\x5d\x51\x8a\xa8\x13\x78\xae\x7a\xe9\xa8\xd0\x71\x53\x95\xd4\x71\x3c\x65\xf5\x86\x72\x12\x38\x82\xcc\x82\xf7\xd8\xe0\x2b\xf5\x44\x77\x71\x51\xa6\x35\x5c\x4b\x30\xd6\xde\x0a\x74\x05\x9f\x3e\x2f\x80\x76\x35\xcc\x70\xcc\xfa\xd5\xbc\x1f\x50\x36\x8d\x60\xeb\x2a\x92\x5a\x64\x08\x3f\x50\xb6\x89\xdb\xd0\x3e\xeb\xcc\xff\xf6\x2d\xf0\x52\xfc\x0e\x90\x0b\xfe\xc4\x54\x09\x6f\x5c\x43\x4e\x8c\xa5\xe0\x53\x0a\xd4\xf1\xf1\xbb\x54\x03\xc4\x53\xba\x82\x1d\x4e\x18\xb2\xd5\x63\x67\x1a\x2f\x40\xf4\xad\x2d\x6d\xa9\x7f\x03\x20\x82\x53\xb0\xac\x9e\x36\xde\xd2\x6f\x51\x8f\x23\x1e\xc1\xe5\xb6\xf2\x5c\x38\x32\x51\x56\x0f\xda\x15\xbd\x63\xd3\xab\x07\x9a\xc2\xc4\xe9\x50\x11\x46\xd0\x84\xc1\xc7\x0f\xeb\x34\xec\xdf\x7f\xa0\xbb\x6f\x81\xea\x0e\x58\xbc\x77\xf6\x3c\xc7\x59\x47\xab\xdb\x55\xdb\x0b\xdb\x9d\x0b\xd8\xa8\x7a\x99\x99\xe6\x88\x31\xf2\x86\x52\x32\xdf\xb6\x21\x04\x45\x47\xa6\xe0\x56\x74\xae\x70\x07\x1e\xac\xbd\xe4\x9a\x2d\xd2\xb2\xa0\xe6\x16\xda\xa2\x39\xcf\x08\xbc\xa4\xfb\x79\x2c\x30\x58\x53\x8e\xbb\xa6\xf8\x22\x42\xa4\x04\x3c\x0d\x92\x23\x7c\xbc\xb1\xc7\x37\x01\xf1\x1c\x77\x65\x39\x25\x89\x4f\x77\x24\x64\x1d\xb9\xf0\x7e\x99\x47\x89\xcd\xf3\x31\x87\xa4\xe2\x76\xd7\x71\x7e\xce\x67\x3d\x0b\x33\x29\x6c\xb6\x1a\xd9\xb5\x5a\x35\x00\xdd\xae\x02\xc0\xcb\x1b\x8b\xab\x29\xcc\x00\x8a\xa8\xc0\xd1\x30\x14\x79\x38\xed\x51\x44\x9a\xf9\xb5\xb0\xb2\xfa\x4a\x50\x71\x3f\xa3\x59\xcf\xc7\xb4\xa7\x49\x80\xe9\x07\x87\xcd\x4d\x26\xb0\x34\x50\xaa\x77\xa6\x4a\x3d\xfe\xa8\xb6\xbe\x3a\xdf\x20\xe3\xbe\xf2\x4a\x37\x34\xe3\x89\x35\x25\xdd\x15\xc2\x6a\xae\xa4\xf0\x89\xd2\x38\x65\x6b\x58\xf2\xa8\xd0\x72\xb3\xf4\xd2\x40\xb6\xbb\xaa\x3a\x5f\x8e\x60\xef\xe0\x7f\xa8\xd9\x2e\xa6\x51\xfc\x88\x6a\xb2\xbf\xae\xdf\xfb\x2d\xb5\x60\xbc\x43\x13\x10\x10\x21\x9e\x0c\xd2\x96\x3d\x4a\x7c\xe4\xbc\x16\x6f\xbd\xa0\x65\x82\xdf\xa3\x39\x88\x74\xee\xf7\xb1\x5d\x21\x33\xbf\xd9\x28\x65\xbe\xb0\xd0\xcd\x0b\x9b\x45\x71\xf4\xba\xad\xa9\xa9\xfb\x0e\x9d\x4d\x87\xd5\x1b\x5b\x24\x66\xce\x33\x14\x8f\x63\xfa\x00\xec\x38\x3a\xf5\x7e\x92\xe7\x55\xb5\x88\x79\xe7\x02\x9b\x78\x81\x57\xd2\x00\xd9\x5d\xfd\x26\x96\x2c\xd6\x51\xc7\x96\x79\x0a\x4f\x06\xd1\xec\x39\x2c\x60\x8e\xea\xe2\x24\x6a\x20\xb1\x86\xa8\xe8\x09\xca\x90\x45\xe3\x8b\x1e\x0d\xea\x7b\xa7\x34\x7b\xf5\x84\x6b\xf8\x1a\xd8\x38\xcd\x24\x56\x70\x2d\xb0\x5e\xe0\xe8\x98\x6a\x23\x9b\x98\xac\xc0\x44\x57\xfb\xe0\x6b\xca\xcf\xe4\xb5\x56\xd0\xcb\x26\x85\x68\xda\xb3\x91\xbc\xee\xf2\xf9\x9b\x56\xf3\x78\xfb\x5a\x94\x17\x1d\xa5\x29\x77\x4a\x79\x78\x9e\x6a\x53\xff\xc9\xcb\xa1\xe1\x38\x5e\xf1\x29\x0e\xd6\xba\xd0\x80\x89\xdd\x6e\x23\xa5\xf7\xb3\x88\xcc\x6b\xe9\xca\x10\x4e\x00\x1a\xe1\x63\xe5\xcc\x9b\x5b\x72\x5c\xdf\xe1\x87\xfa\x2d\x6c\x0a\x58\xbb\x8f\x4d\xfd\x32\x78\x0f\x77\xea\xb8\x14\xd5\x02\x05\x20\x0c\xef\x0f\x1b\xc4\x4d\xb5\x35\xaf\x56\x59\xb2\xd1\xa9\xe1\xa7\xf8\x0e\x3e\x69\x69\x83\x3b\xa8\x15\xea\xd9\x0a\x2a\xf0\xa1\xc6\x12\x42\x60\x21\x94\x79\x21\xd1\x28\x19\x94\x79\x91\x45\x26\xa6\xcc\xde\xa1\xf2\x6e\x79\xbd\xa0\xe4\x8b\x7f\x82\x91\x88\x61\xf9\x71\x2d\x77\x4c\xb2\xa8\xa3\x46\x26\xf0\x1a\x3e\x0e\x7c\x9d\x2e\x2e\x73\xb8\x47\x82\x63\xf6\x33\xba\x44\x3e\x56\x99\xd5\xb8\x64\x36\x26\x83\xd7\xf4\x6d\x02\x64\x3f\xcc\xdc\xa0\x7e\xe1\x01\x7c\xbb\xa5\xf4\x42\x1f\x76\xa4\x76\x37\x31\xf6\xd6\x08\xd5\x34\xc7\xa4\xd8\xdc\xc2\x76\x1f\x45\x79\x91\x66\x0c\x1c\x71\x1f\x4a\xa0\x7b\x52\x5a\x4c\xf2\xc6\x65\x12\xe9\x26\x5f\x26\x21\x6a\x47\xf5\xab\x6e\xde\x0d\xb3\x68\xcc\x5c\x2d\x30\x25\x4e\xab\x90\xf7\xb8\xaa\xd0\x7e\xaf\xf6\xac\x27\xc5\xfa\x0e\xc0\x8a\xa8\x76\xbc\xa9\x3a\x2a\x2f\x2a\xdb\xc0\x93\x88\x63\xf8\x8f\x94\xb5\xff\x49\x85\x19\x5d\x0c\xfc\x2a\xd0\xaf\xf2\x98\x6a\x18\xb0\xf4\xab\x17\x83\xba\xf1\x95\x9e\x72\xe5\x03\x23\x13\x41\xc0\x03\x0a\xa2\x9c\x68\x65\x75\x9b\x78\x3c\x9d\x8d\xa7\x6a\xdd\x44\x36\xc9\x4b\xa6\x50\xf3\xc2\x1e\x28\xde\x84\xa6\x15\x51\x2b\x6f\xe6\x81\x6f\xa6\x9f\x05\xca\x9c\xe5\xb4\x46\x52\x6f\x80\xf2\x25\x13\xdb\x73\x9c\xb7\x83\xed\xc4\xff\x80\x8b\x13\x2e\x9b\xca\x7e\xa2\x38\x5e\x2e\xe3\x6a\x58\x6e\x41\x5f\x75\xab\x29\xe8\xb7\xb8\xd8\x25\x7d\x0d\x81\x25\xb5\xce\x1e\x26\xc7\x35\x5d\x41\x3e\x8b\x65\x1a\x55\x85\x77\x54\xba\x38\x49\xf3\x62\x92\x26\xb6\xd6\x2b\x34\x55\xbd\x42\x35\x21\x09\x95\xdc\x36\xbd\xe5\x29\xa3\xc8\x0b\x9b\x17\x33\x04\x0e\x82\x19\xb5\x87\x12\x70\xe0\x8c\xb3\x1b\xbe\xc8\xd8\xd6\xa3\xd7\x1d\x64\xe9\x2a\xd1\x8b\xa5\xa2\xb5\x15\x28\x29\xb3\xf3\xaa\xf8\xa9\x65\x08\xa3\xc2\x8e\xf3\x39\x8a\x7a\xf1\xaa\x59\x9f\x54\xfc\xbe\xab\x4f\x21\xd8\xfc\x43\x9d\xe2\x7e\x8c\xef\x96\xb2\x93\x72\xbd\xb2\xe3\x49\x2a\xbb\x03\x1e\xd9\x6c\x4f\xb5\xcc\xcc\x6e\xec\x71\x2d\x33\x2b\x76\xd6\x67\xa9\xc8\x51\xb0\x1c\xdd\x56\xd8\xdd\xfb\xba\xe7\xe3\x5d\xf5\xf4\xd7\xaa\x29\x1d\x5b\x5e\x5c\x9c\xdb\xae\x77\xde\xd5\x1b\x9d\x4d\x4c\x5c\xb0\x0a\xb0\x2c\x58\xac\xca\xc1\x27\xf5\x66\xc5\xbc\x1c\xdb\x2c\xdf\xe1\x43\xc7\x1f\x60\x44\x20\xf8\xb9\x1c\x28\x1b\x2f\xfc\xa6\x34\xea\x75\xbe\xf9\x92\xf3\xab\xa1\xdf\x12\xf6\xa3\x87\xce\xf3\x35\x3b\xb0\x49\xa7\x46\xac\xaf\x9e\x83\x14\x48\x5b\xb6\xdc\x32\x89\x96\xd3\x6c\x8c\x5b\x75\xa4\x0f\x55\x74\x6a\xf3\x42\xfc\xff\x57\xda\xdc\xeb\x9a\xe5\x32\x03\xf7\x43\x1e\xf1\xb4\x58\xc8\xe8\x7f\x52\xcb\x67\xd9\x74\x95\x43\x66\xa7\xb4\xe5\x55\xb7\x1a\x0b\xef\xfe\xfd\xdd\x81\x9d\xa4\x79\x24\x2d\x08\x08\xe0\x3f\x55\x35\xe7\x4f\xd5\x2b\xc5\x62\x61\x33\x02\xb4\xb1\xe1\x42\x3e\x8a\x3b\x99\x03\x9f\x35\x9c\x68\x08\x93\x7f\xbd\x9b\x5b\x23\xb7\x8b\x19\xc0\xea\xbe\x7c\xa2\x8a\x40\x66\xdc\x8f\x56\x4d\x6c\x6b\x62\xc3\xa7\x94\xd8\xf0\x29\x17\x1c\x4e\xb2\xb4\xcf\xe8\x91\xf0\xaa\xaa\x8f\xf0\xb1\x6a\xdd\xcf\x9e\x8d\x9e\xa5\x6f\x43\x61\x9c\xa9\xbf\x7c\xa2\xda\x00\x62\x1b\x8e\xac\xee\x08\xe4\x95\x56\xd6\x0c\x85\xd3\x0f\x6d\xee\xc4\x97\xc4\x1d\xd5\x83\x14\xe7\x1a\x9c\x81\x97\x16\x0e\x75\x07\x51\x1e\x96\x79\x6e\xd9\x0c\x40\x46\xb7\x1e\xea\x2d\x6d\xe3\x55\xb8\xc4\xdd\x6b\x82\xc3\xaa\x92\xdb\x99\x2f\x64\x27\x8c\xd2\xc2\xd2\x6a\xcb\x9b\xdb\x2d\xad\x92\xeb\x85\xa4\x97\xa3\x41\x19\x46\xc2\x13\x44\xc2\x7a\x9b\xde\x26\x1f\x2b\x22\x43\x96\xc6\x71\x94\x0c\xa9\xaf\x1e\x7c\x03\x14\x22\xb1\x02\xfc\x18\x93\x16\x83\xe0\x2a\xa6\x18\x9f\xd0\xeb\xe3\xbf\xa2\xd5\x8e\x3f\x3d\xf5\xfe\x54\x98\x12\x51\x61\xe8\x6e\xe9\xc3\x00\xb5\x59\x7a\x8c\x4f\x5a\x4c\xda\x5e\x46\x0d\xb9\xa3\x4c\x45\x36\x6b\xf8\xaa\xf2\xc2\x30\xab\x51\x32\xcc\x67\xb1\xe1\x61\xe8\x72\x14\xe3\x5a\x94\xdc\x2a\xc5\x2f\x9f\xff\x4a\x51\x6c\x5f\xf8\xc6\x2f\x76\x7c\xe2\x74\x47\xab\x4b\xdd\x51\xbc\xc4\x49\x1a\x47\x21\x36\x7a\x11\xef\x53\x48\x3c\xee\x0a\x9b\xfb\x6e\xe8\x38\x62\x5a\xdd\x98\x2a\x7f\xb2\x4b\x53\x9f\x62\xfc\x8b\xc6\xd6\xf2\x2c\x4b\xff\xa8\x0e\xff\xf3\x0a\xe1\xff\x91\x5e\x9f\x4f\xb4\xb4\xf6\x3e\xd7\x1d\x64\x66\x0c\x92\x25\x0b\xc2\x06\xca\xd3\xb6\x59\xe8\x93\xb1\x95\xd8\xd5\x6a\x29\xf8\xe5\x6f\xf9\x26\x30\x27\xfc\x75\x4b\x7b\x9a\x1f\x6b\x5c\x33\xe9\x0a\xa4\x31\xcf\x01\xd0\xdf\xff\xf5\x54\x69\x5c\xfd\xeb\x06\xa3\xed\xd0\x8b\x5d\x2c\x6d\x4e\xab\xf6\x8c\x12\x11\x38\x13\xf8\x55\xd0\x44\x59\x3f\xcd\x12\xdb\xa9\x2e\x0d\x21\xe7\x5d\x25\x65\x7a\xb7\xa6\xe2\x39\xb0\xbb\x15\x8a\x34\xcb\x5d\x19\x9a\xb7\xc7\xbd\x05\x4a\x55\xe3\x4d\xa4\x79\xe2\xc0\xa0\xda\xa8\x79\x98\xba\x8c\xe3\x9b\x2f\xf1\x54\x43\x96\xc8\x1e\xf9\x6d\xf2\xf1\xe3\x54\xac\x0e\x04\x3a\xa2\xaf\xe5\x13\x97\xbe\xbe\x5a\x9a\x38\x5a\x06\x85\xd9\x11\x3e\x9d\x02\xd8\x05\xd5\x69\xd1\x2f\xb3\xa1\xd4\x59\x44\x00\x84\xbe\x52\xe4\x09\xe8\x4a\x51\x35\x3b\xd6\x3a\x2c\x8a\xcc\x30\xeb\x0b\xa0\xe1\xc9\xc0\x97\xef\x4f\xaa\x49\x9b\x59\xa7\x06\x63\x45\x46\xa5\xe6\x15\x2d\xcb\xa1\x8f\x42\xfa\x59\x5a\x8c\x6c\x06\xf1\x18\xd6\xfa\xc3\xdf\x02\xa0\x78\x86\xdf\x83\x93\xd8\xf4\x4e\x99\xa8\x16\x21\x36\xbe\xe7\x5a\xf7\xaa\xc5\x38\x4e\xc7\xd4\x00\xaa\x76\xbf\xb9\x9e\xdf\xfd\xe6\x36\x9e\x70\xe0\x12\xdb\x11\x61\x85\x41\xae\x73\x46\xe5\x87\x67\x1a\xfb\x35\x99\x8e\x27\xc3\x32\xe2\x94\x8a\x2b\x57\x34\xcf\xa4\x8a\xf5\xb8\xef\xd4\x0b\x57\x1c\x04\x8e\xb9\x81\xce\x50\x27\xca\x5e\xdd\xa9\xb4\xd1\xfb\x1d\xaa\x28\xfb\x96\x2a\xf6\x40\xea\xee\x28\x76\xc0\x9d\x96\x25\xaf\xca\x8b\xd3\x04\xb8\x17\xe0\x51\xc8\xbd\xf0\x71\x03\xb6\x86\x51\xf0\x20\x5a\x8d\x06\xa5\x89\x3b\xaa\x3e\xf1\x61\xe0\xef\xbd\xe9\xad\xbd\xb8\xd8\x4d\xcb\x22\xb6\x45\xfe\xc5\x02\x1b\x1a\x6c\x5a\x2b\x46\x64\x66\xf7\xff\x71\xf6\xa7\x31\x92\x65\xd7\x9d\x18\x5e\x15\x99\xb5\xf4\xca\xee\xea\x6e\x0e\x67\x34\x7f\x4c\xe8\x3f\x84\x5b\x83\x29\x11\xb2\x20\x18\x23\xc2\xc0\x0b\x65\x25\xc9\xae\x82\x99\x9d\xce\x2a\x56\x8f\xda\x5f\xea\x46\xc4\xcd\x88\xdb\xf9\xe2\xbd\xe0\x5b\x32\x2b\xcb\xb0\x21\xcc\x87\x81\x31\xb0\x8d\x91\xed\x0f\x1a\x7b\x30\x63\x4b\xb2\x46\x02\x66\x24\x4a\x14\x29\x52\xb2\x14\x49\x8a\x22\x29\xae\xbd\xb3\xf7\xae\x7d\xdf\xf7\xa5\x3b\xcb\x78\xe7\x77\xce\xbd\x27\x32\x5e\x8d\x0d\x7f\x21\xde\x63\x57\x64\xbc\xb8\xef\x2e\x67\xf9\x2d\x38\x82\xa7\x20\x68\x8f\x82\xe3\x37\xe8\x8b\x70\xde\x7f\x43\x31\x6c\x6e\x60\xdd\x60\xef\x78\x15\x11\x2e\x52\xa9\x9b\xa3\xe0\x9b\xf6\x06\x36\x45\x94\x3e\x36\xb5\xc2\x1a\x38\x31\x1a\x37\x65\xaf\x46\x01\x5b\xe7\xab\xba\x54\x74\xb2\xd6\x6e\x29\x73\x9d\x3e\xfa\x0c\xd2\x95\x68\x78\x6e\xfd\x6d\xd5\x35\x38\xef\x3b\xf4\x79\xd9\xce\x5d\x37\x38\x28\x88\x30\x77\x43\x09\x76\x87\x34\xbc\x93\x76\xed\x54\xf5\x56\xd1\x37\xc7\xd3\xf9\xf6\xe2\x6e\x41\x5a\x7c\xa4\xf4\x02\xcd\xb2\xc9\x5c\xc7\xa5\x25\x76\x04\x84\x83\xe7\xe8\xe5\xf2\x75\x2d\x4a\x73\xd9\x30\xac\x8b\x0b\x75\xf4\x43\xa4\x68\x57\x67\x55\xdd\xb6\x49\x5e\xed\x13\x54\xc8\x60\x64\x1e\xfd\x0a\xd4\x22\x8f\x6a\x2e\xfd\xe9\xba\x66\xcf\xb2\x39\xf8\xab\xbf\xf4\x4b\xbf\x34\x45\xff\x0e\x99\xc7\x0d\x6c\x5c\x9e\x61\xe2\x7b\xc3\xf7\x6b\xf8\x0c\xa4\x2d\x9b\xc6\xcb\x96\x95\x29\xf0\x02\xef\x8e\x7b\x51\x68\xdf\x76\x85\x19\xeb\x64\x6e\x30\x04\x85\x00\xff\xf1\x9c\x2a\x1e\xd6\xd6\x18\xa4\xd7\x33\xa5\xa4\xfc\x11\x2d\xa2\x2d\xb9\x8d\x76\x0b\xe4\x60\xf7\x55\xbe\x41\x62\x62\xb6\x48\x93\x69\xa5\x5c\x7e\x11\x89\x30\x4e\x8a\x4d\xb4\xbd\x63\x62\xbe\xa5\xc8\xed\x67\x26\x88\xbf\xd5\xc9\x47\x7a\x1f\x99\x71\x89\x24\x47\x42\xcc\xa4\x5f\xca\x37\x1e\xa2\x93\xc7\xd6\x7a\xc1\x1f\x2f\x44\xd3\xf0\x26\xd9\x3f\x56\xc2\x8c\xc3\xa0\x0d\xf4\xa2\x14\x31\x95\xbd\x7a\x2d\x68\x27\x77\x45\x49\x7e\xa0\xbc\xbc\x99\x92\x89\x45\x28\xfc\xcc\x8d\x3f\x63\xcf\x9e\xe6\xb0\x9f\x16\x69\x2f\x33\xc3\x3e\x57\x6d\x84\xbb\x15\x06\x74\xd2\x6e\x91\xf0\x8e\xe9\x8a\xdf\x1d\xc5\x3a\x24\xd4\x4b\x00\xab\xc6\x99\x70\x76\x14\xf4\x68\x4d\x51\x18\x27\x95\x1e\xd1\x57\x6a\x78\x69\xbb\xb3\xaa\xa2\x95\x88\xaf\xae\x9f\x84\x9e\xf0\xf3\x21\x0d\x1c\x9b\x69\xa2\xf0\x2b\xc0\xc9\x1a\xbd\xba\xae\xcb\x07\x2e\x87\xc0\x93\xc8\xe0\xd0\xb0\x08\x79\x44\x83\x94\xd9\x70\x3e\x65\x75\x2c\xe0\x9d\x00\x82\x90\x1a\x16\x3d\xbb\x2f\x6e\x79\x84\xd4\xbb\x93\xae\x94\xa4\x33\x12\x3b\xc9\x12\xe4\x98\xd6\x67\x76\xf4\x74\x4d\x45\x0c\xca\x88\x28\xe0\xaf\xd1\x57\xf0\xb5\x16\x50\xb1\x1d\x33\xb0\x8f\x28\x37\xdc\x37\x47\xca\xd8\xe8\x36\x76\x59\xd1\xed\x52\x8a\x3b\xc7\x01\x8c\x42\x04\xf0\x11\x3a\x85\x42\xf6\x0d\x07\xe1\x34\x6d\xcc\xe2\x31\x1a\x9c\x25\xdf\x1c\x05\xc7\xc4\x91\x32\xc1\x5b\xaf\x09\x3e\x5e\x84\xb6\xfc\xb4\x46\x59\x8e\xc2\xbc\x78\x55\x29\x42\x33\xe9\x53\x2a\xe9\x4f\xa8\x1c\xd2\x1c\x92\xe6\xb5\x7f\x19\x6a\xcc\xf5\xfa\x4e\xab\xf4\x87\x72\x9a\x19\x7e\x3f\xf7\xb5\x19\xe2\x51\x9d\x96\x9f\x53\xb2\xad\x60\x88\xb3\x9c\xe4\x48\xa9\xa5\x9c\x8c\xb4\x67\x4a\x5e\xb8\xa5\x46\x58\xb1\xf7\x95\x11\xe1\xfd\x28\xd4\x5b\x0e\x1d\x02\xf2\x8a\xf5\x25\x15\x63\x02\xf2\xe1\xa2\xfb\xa1\xa6\x23\x0d\x0a\x8a\x51\xdb\x27\xa0\x3c\xbb\xe7\x9a\x9d\xac\xec\xf2\x7e\x87\xed\x19\x09\x2a\xc6\xe0\x35\x45\x24\x3f\xaa\x88\x38\xca\xc6\xda\x9b\x09\x42\x1e\x83\xaf\xd7\x02\xc0\xf1\x90\xc9\x6c\xc1\x0e\x14\x2a\x72\x9d\x9f\x88\x5c\xab\x50\xa5\xec\x14\x00\xf9\x4a\x0e\x1b\x66\x0a\x73\xfa\x91\xfd\x60\x3b\xf5\x14\x3d\x7f\xa2\xdd\xac\xb3\x7b\x6d\x9b\x0e\x78\x49\xe8\x06\x40\x27\x84\xaf\xc7\xe8\xf7\x89\x21\xa5\xaa\x50\xa5\xbc\x30\x52\xc0\xdd\x0b\xb5\x4d\xe3\x38\xcd\xab\x20\xba\xfa\x8c\x10\x13\x42\x39\xf6\x82\xb6\x3b\xf8\x0f\xaa\xf2\xde\xb6\x36\xdb\x3a\x66\x98\xa5\xb6\xa3\xd3\xfa\x80\x3c\x1d\x8d\x19\x53\x69\x4e\xd6\x1d\x45\x0e\xe2\xf4\xb5\x30\x3d\xce\xbe\x7e\xf9\x17\xff\xff\xd5\xca\x42\xc0\x74\x76\x5c\xa7\x58\x89\x50\xbc\x1f\xa9\x7c\xe4\x0c\x69\x94\x62\x64\x5e\x43\x23\x1d\x1d\xb0\x77\xf1\x78\xd8\x8b\xdf\xa5\x1a\x33\x63\xf6\x09\xe4\xe3\x1b\xec\x5f\x7a\x8e\x03\xb1\xaf\x51\xff\x1f\x65\xb4\xdf\xd5\x82\xdd\x57\x47\x9b\x3f\xcd\x6b\xe6\x5f\x44\x8d\x7d\xcf\xf3\x4e\xfb\x5d\x14\xc7\x3d\x67\x79\xb7\x04\xd0\x2f\x63\xf1\x4e\x62\x50\x8e\x13\x75\x12\x27\xed\x5f\x81\xf5\x80\xb0\xf6\xbd\x31\x86\x01\xf3\x08\xc4\xbe\x40\x99\x35\xbd\x49\x95\x3e\x2f\x16\xb0\x30\xb3\x7e\x3a\x0a\xfe\x70\x2f\x63\xf3\xc2\x4e\xfa\xd7\x40\x30\x78\x30\x84\xef\xa3\x7f\x5f\x73\x21\x2e\x80\x05\x8b\xb5\xf6\x75\x86\x1a\x73\x5c\x4a\x92\x05\x82\xb0\x24\xe6\x34\xd0\x38\x6f\x44\x63\x90\xef\x82\xbd\x6d\xbd\x17\xff\x9e\x3d\x3e\x10\x9c\x44\xcf\xcf\x37\xcb\x44\x54\x56\x84\x5c\xa5\x9d\xe4\x6a\xd5\x3a\x86\x99\xed\xba\x0e\xaf\x47\x25\x60\x23\x0a\xc6\x93\x8e\x30\xb3\xfb\x9a\x6d\x93\xbb\xce\xb4\xe2\x6a\x7c\x77\x14\x0a\xab\x77\x55\x08\xbc\x49\x63\x69\x8f\x4d\xfc\xa9\x03\x07\x9a\xa9\x2d\x17\xc7\x59\x3a\xc1\xae\xe5\x16\x9d\x85\x72\x0e\x4b\xfd\x6e\x31\x36\x03\x78\x0b\xe0\xcf\x9e\x1a\x85\x69\x3f\x4d\x9b\x8e\xf8\x51\x7a\x61\xbe\x38\xd4\x11\x01\x94\xb8\x85\x28\x9f\x6f\x82\x31\xa0\x49\x4c\xd7\x89\x5c\x25\xf6\xb9\x1f\xd0\xa8\x23\xac\xb9\x8b\xd9\xa7\x41\xb5\x02\xa9\xda\x18\xef\x48\xcd\x63\xa5\x6f\xab\xc4\x75\x4b\xf5\x4b\x50\xcf\x59\x87\xa4\xb0\x37\x0b\xad\xe6\x15\xfe\xca\x71\xdd\x75\xbd\x46\x70\x79\xc0\xf3\x6e\x07\x34\xa4\x4d\x87\xb1\xcd\xb7\x2a\xf2\xe8\xa6\x35\x2d\xc9\x09\xbe\x85\xdf\xec\x3f\xff\x02\xe7\x83\xc7\x47\x41\xf0\x8e\x65\x92\x30\xb0\x1f\x7b\xb8\x45\x35\x0f\xc8\x30\x97\x8b\xfd\x32\x25\x1b\xde\x5f\xe3\x0d\xff\x12\x7a\xd6\x2e\xe5\xdb\x54\x23\xef\xd1\x96\x12\xc7\x9a\x5a\x0b\xe5\xab\xf3\xbc\xfe\x10\xac\xad\xd3\x5f\x93\xff\x52\x7d\x8b\x58\x7c\xd0\xdb\x11\xe0\x56\x8d\xee\x6a\x61\xb2\x9e\x0d\xae\x63\x68\xc9\xe1\xcf\xf1\xf5\x03\xeb\x4e\x59\x40\x86\xe1\x9d\xae\x47\x81\xf0\x76\x69\x0c\x80\xe1\xeb\x03\x79\x49\xea\xb0\x2e\xe9\xb1\xd6\x91\xac\x0d\x25\xf4\x34\xe6\xd8\xed\x3a\xc5\x43\xf4\x2e\x7d\x8f\x79\xcf\x1e\x7e\x27\xf0\x26\xc2\x9e\x7a\x05\x63\xef\x75\x71\xbc\x98\x13\xf3\x7e\xf0\x80\x7f\x4e\x2f\x9f\x3f\x81\x45\x8c\x29\xf2\x56\x14\xc8\xec\xa7\xd5\x61\xd5\xe9\x9b\xe1\x80\xeb\xbd\xe2\x13\xad\x9c\xec\x6e\x8d\x59\xdd\xf4\x4c\xd6\x25\xeb\x32\xbf\x7b\x9e\x8e\x54\xc1\x84\xdb\x77\x48\xba\xbf\xaf\x12\xf0\xef\xab\xce\x01\xcc\xfd\x6c\x77\x5a\xeb\x97\x9e\xd4\x18\xe3\x77\x95\x6b\xe2\x5f\xe0\x37\x20\x1e\xb9\xac\xfa\x38\x45\xdf\xa6\x99\xcb\x0b\x26\x01\x0a\x53\xb8\x1a\x64\x21\x0a\x3f\xed\xe3\x01\x72\x98\xe8\xc4\xc6\x89\xed\x28\x00\x70\x47\xa3\x00\x86\x3b\xaa\xc2\xd6\xcc\x05\x15\x52\x9f\x05\x79\x30\x3d\x4a\x1f\x98\x95\xef\xd4\xd9\xad\x76\x83\x74\x92\x97\xb4\xa9\x46\x54\x90\x72\x0f\xc9\x01\xfb\x0b\xcf\x54\x87\x9b\x27\x85\x2e\xcc\x70\x8f\x60\x33\x01\xfe\x11\x30\xdf\x8e\x94\xd4\x3e\xc2\x18\xf6\xc3\xa5\x73\xcb\xdb\xc1\xef\x96\x54\xe1\xab\x7c\x60\xb0\x9c\x09\x2f\x22\x91\x3c\x52\x31\xfe\x35\xe5\x07\xfe\xa3\x28\xd8\x46\xbf\x8a\x93\x4e\x54\xdd\xe8\x77\xe0\xeb\xa7\x5a\x74\xb8\x22\x10\xff\x23\x2d\xbe\xc9\x58\x5c\xcc\x99\x13\x01\xca\xbc\xc4\x9c\x08\x99\x06\x34\x0e\xd8\x71\xaf\x60\xe1\x0a\x36\xaa\x46\xc2\xac\x93\x0e\x87\x55\x48\x14\xe0\xba\xa7\x90\x23\x60\x64\xd0\x13\xc7\x11\x75\x2f\x0a\x45\xc2\x32\xe9\xda\x4c\xa4\x64\xa9\xec\x87\xfa\x4e\x83\xb2\x05\x89\xc9\x31\x2c\x62\x89\xa4\x05\xdf\x42\x14\xff\x17\x35\x9c\x9c\xc5\x38\x4d\x33\x3f\x3b\x44\x56\x2a\x44\xaf\x40\xb0\xa3\xb4\x7c\xc4\x27\x95\x43\x93\x99\x78\xf5\x10\x83\xb2\x11\x06\xc2\x94\x65\x8c\x87\x87\x75\x7b\xa7\xae\xfe\x31\xcc\xd2\x97\x6c\x87\x6d\x3f\x31\xf9\xce\xaa\xf6\x13\xc8\x19\x10\x9f\xfb\x98\x66\x03\x76\x90\x8b\xda\x01\x29\x2b\x7b\x39\x9a\x8d\xa2\x85\x41\xdf\x2a\x62\x18\x1b\xa7\xf2\xbe\xe7\x9b\x83\x6a\xe9\xa8\x90\x97\xf7\x3c\x41\x35\x2a\x05\xa2\x15\x33\x44\x09\x49\x30\xc4\x61\xc1\x5c\xaf\x69\xd0\xad\x12\x56\x50\x15\x39\x3e\x50\xae\x0e\x37\x14\x7e\xf4\xac\x82\x89\x77\xd3\x34\xcb\x49\x42\x0a\x29\xe3\x26\xc2\x8a\x21\xbc\xbd\x8e\xb9\xa5\x30\xee\x73\xa1\x39\xe3\xdd\xb8\xa6\xe1\xeb\x29\x86\x4d\x34\x98\x02\xa4\x18\xf3\xf4\x22\x85\x43\xb8\xfa\xf8\x14\x77\x61\xc6\xa7\xb8\x82\x5f\xec\x58\xa4\xc1\xe8\xd8\x31\xa3\x95\x6f\x6a\xa2\xa6\xd9\x66\x96\x96\x85\x4b\x10\x85\x08\x2b\x3d\xe0\x79\x40\x1f\x15\xce\xe3\x06\xfc\xe7\x17\x67\x9b\xf3\x0b\xf3\x4f\x56\x71\x32\x7e\xf2\x5b\x90\xce\x61\x1f\x62\x84\xae\x98\x78\x17\x94\xd3\xce\x4d\x25\x5b\xc4\x1d\x7d\x44\x5e\x0d\x52\xd1\xc1\x7f\xf8\x21\x36\x06\xcc\xab\x06\xd1\xf7\x05\x5c\x1e\xf0\x93\x17\xb1\x31\xa0\x20\x7e\x7e\xd4\x78\xf6\x59\xf1\x14\x88\xb4\xfb\x03\x5e\x04\xbe\xfc\x28\x6d\x52\xf8\xb3\xbf\x8d\x88\x05\x5b\xdc\x69\x3a\xa7\x70\xe8\x5f\xd6\x1d\xd6\x6a\x6c\x16\x66\x02\xde\x28\x48\x61\xe2\xd9\x45\xd5\x7c\x87\x52\xa7\xc8\x8b\xcc\x75\xc4\x6c\x8b\x9d\x5d\x95\x9f\xc8\x45\xe5\x97\x54\xbd\xda\xc1\xc0\x26\x5d\x03\x5d\xc1\xfd\x33\x5c\xb3\xff\xa6\x52\xcd\xf9\xe6\x84\x40\xc2\xae\xd9\x2a\xab\x2b\x17\x4d\xa7\x28\x83\xfc\x9e\x40\x30\x1a\x9e\xe7\x7d\x51\x59\x91\xc2\xe0\xdd\x76\xb7\x86\x2a\xfe\xcb\x18\x1b\x44\x8f\xaf\xe0\x07\xf1\x0d\xb2\x24\xaf\x73\xbd\x5b\x3a\x40\xe7\x23\x85\xd9\x7d\x59\x09\xab\xdb\xc4\x52\x5c\xd3\x69\x04\x6c\x18\xc3\xfb\xf8\x66\xa2\x0a\xba\x67\x8f\x30\xdc\xf3\x62\x2a\xd4\xf2\xb7\xb4\x42\x69\xe1\xae\x96\xe4\xb8\xf2\x40\x55\x8f\xb6\x4d\x1a\x8d\xdd\x73\xeb\x08\x3c\xd7\x83\x4a\x6a\x91\x26\xbd\xd2\x4e\x87\x56\xfa\x7d\x9a\xd2\x4a\x18\xed\x45\x6f\x6a\xaf\xce\xa2\xbf\x0e\x87\xe2\x3f\xfa\x24\x8d\x04\xd6\xeb\xd7\x28\x45\xc4\x81\x73\x4c\xb9\xfc\xdd\x44\xbc\xe0\x59\x3d\x5f\x7a\x8e\x43\x2b\x9e\x25\x58\x82\xff\xae\xca\x11\x11\xeb\x6f\x69\x05\xe7\xa6\xdb\x23\x85\x29\xe7\x83\x40\x88\x53\xf4\x5e\x25\xae\xaa\x86\xc8\x63\xe8\x83\x57\xee\xcb\x54\x6a\xf2\xd8\xcf\xf9\xe7\x25\x8f\x7e\x8d\xce\x11\x0f\xcd\xab\x06\x52\x94\xf6\x71\x26\x8b\xe5\xba\x2a\x7b\x1d\x45\xc2\xea\x8d\xd9\x77\x07\x19\x40\xd5\xb1\xfd\xe6\x44\x06\x44\x15\x97\x74\x98\xeb\xe3\x11\xee\xe3\x5e\xf4\x4e\x91\xde\x94\x56\x7a\x6c\x4d\x23\x08\x40\xfc\x06\x06\x92\x6f\x22\xad\xd1\x33\xb4\x55\x1c\x43\x36\xb5\x78\x19\x4c\x38\xc6\x88\x00\x40\xc8\xd7\xf4\xd8\xfc\x8f\x54\xe3\xda\xc5\x8e\x76\x50\xa4\xe6\x5c\xe3\xe7\x1b\x55\x04\x42\x61\xde\x63\x8f\xf5\xe1\x86\x86\xc0\x76\x85\xef\xbb\x36\x52\x1d\x80\x4b\xa3\x20\x86\xd1\x75\x8b\x8b\x36\xb3\x49\x21\x8a\x45\x78\xb6\xb1\x87\x9e\x6c\xe7\xcf\xcd\xed\x6d\x26\x69\x56\xf4\xa7\x42\x50\x87\x83\x19\x7c\x89\x1b\xca\x67\xf8\xba\xda\x74\xf2\xd5\x41\x3b\x8d\x5d\x3e\xc0\x19\x36\x56\x97\x93\xc6\x49\x28\x7f\x4d\xc2\x52\xc9\x49\x76\xd9\x59\xb1\x81\x62\xce\x26\x36\x52\x21\x70\xd6\x30\xff\x86\x59\x3a\x70\x0c\xe9\x98\xe5\x69\x3e\x36\xe7\xef\x4c\x34\xe3\x76\x06\x3f\xb6\x0d\x86\x2d\x17\x55\x55\xfb\xa2\x12\x97\x5a\xe9\x9b\xe2\x99\xf0\x9f\x8e\x22\x7c\x45\x93\xff\xdf\x63\xc2\xa3\xc9\x7f\x86\x56\x12\xae\xef\xe9\x1c\xf4\xd6\x48\xf9\xbe\x7d\x57\xfb\xbe\x21\x82\xe3\x0a\x21\xe5\x24\xd8\x84\x1a\x44\x8b\x15\x7d\xac\xea\x65\x48\x3b\x52\xa9\xa4\x5f\xc6\x9e\x81\x98\xfc\xc4\x48\xc9\xfc\x43\xbf\x11\xe9\xe1\xdd\x91\xf2\xf3\xba\x42\x9e\x83\x58\x5e\xa7\x70\x02\x21\x4a\xfd\x3f\xb4\x11\xce\x51\x2c\x7c\xac\x6f\x18\x55\x22\xb0\x9c\x6e\xd5\xc4\x62\x36\xee\x42\x8d\xcf\x53\x1d\x8e\x2b\x07\x76\x94\x14\xd1\x2e\xbc\x35\x7a\x34\xe0\xeb\x96\xc5\x15\xb9\x56\x52\x2d\xc4\x52\x8b\xa6\x53\xad\xbb\x00\x70\xc7\xaf\x16\xb4\x7b\x88\x1a\xdf\xc5\x8b\x11\x67\x6e\x9d\x54\x7e\xb9\x14\xb5\x06\x56\x56\x8c\x54\x1c\x7e\x5e\x75\x30\xbe\x94\x23\x18\xd1\x7d\x0e\x24\x15\xf7\xf1\x7c\x08\x79\xae\x46\x41\xc0\xa4\x57\xba\xb8\x58\x9d\x56\xa8\xb5\xb7\xe9\x45\xe2\xe7\xaf\x8f\x4d\xaa\xc0\x58\xba\xa9\xbe\xb4\x30\xf1\x93\x34\x0f\x54\xf4\x2b\xec\xf1\x29\x62\xb5\x78\xde\x4d\x30\xbd\xf9\x09\x15\x15\x3d\x00\xbc\x7a\x93\xf8\x04\xb3\x32\x71\x02\xdf\xe4\x0d\x9d\xbd\x48\x95\x0e\x00\xfc\x3e\xd1\x24\xdf\xd2\x0a\x0d\x6f\x16\x9d\x04\x46\xfa\x32\xfd\x12\xfc\x29\x28\x42\xa1\xef\xfc\x2c\x7a\xcb\x98\xc4\x9c\xad\x62\xc3\xdb\xb1\x16\x44\x19\xef\xeb\xc4\x3a\x2d\x3d\x57\x84\xdb\x75\x8a\xfd\xf8\xd6\xe8\x69\x85\xbd\x8f\x6d\x5e\xb8\xc4\x03\x91\xd0\x13\x3d\x8b\xb7\xcb\x37\xca\xd5\xe4\xa0\x1b\xb8\x43\x78\x6b\x58\x16\x77\x91\x23\x7a\x6d\xc7\xb9\x60\xec\xb9\xb1\xb2\x71\xe0\x40\xb3\x6b\x97\x6d\x9c\x0e\xad\x50\x94\x10\x4c\x4e\xad\x29\x1d\x3d\xed\x40\xd8\x2e\xe3\xa5\x46\x28\xd2\xbd\x39\x0a\x01\xe1\x9b\x35\x9e\x3a\x2f\x36\x3b\x59\xd9\x91\x4a\x10\xe2\x79\x98\x99\xf1\xb5\x1a\xa2\x22\x4d\x5c\xaf\x5f\x34\x74\xfc\x44\x4f\x21\x81\x95\xb4\xc1\x13\x8a\xd6\x56\x5c\x17\x91\x05\x76\xba\xe9\xb5\x60\x74\xda\x20\x48\x2c\x3d\xfc\x2b\x7f\x0f\x98\x66\x24\xb6\x1f\x8d\x34\x14\xc4\x24\x9d\x3e\x5a\xe9\x92\xba\x9d\x56\xef\xe4\xf4\x48\x8b\x76\x2f\x9b\x98\x16\xb8\xd4\x52\xaa\x2f\xc0\x69\xfe\x9d\x91\xea\x9d\x5c\x50\xca\xeb\x49\xda\x4e\xbb\xab\xd3\x55\x34\xe2\x29\xc2\x73\x73\x1e\x7d\xaf\x65\x58\x79\xa7\x97\x26\x93\x42\x12\x97\x59\x5e\x7a\xa5\x35\xc1\x16\x2a\x9c\xa1\x4a\xe8\x56\x4c\x1c\x93\x24\xf5\x6c\x90\x5f\xdc\x3f\xc3\xf9\xf5\x6b\x58\x54\x2c\x2d\x15\x85\x20\xf4\x34\x6d\x95\x02\x6e\xac\xe3\x1c\xbc\x64\x06\x5e\x48\xcd\x3b\x90\x05\x69\xf2\xb7\x27\x66\x15\x91\x2c\xca\xbc\xdf\x36\xa4\xa7\xad\xa0\xa9\x63\x1a\x28\x75\x36\x62\xb9\xed\x9a\x44\x48\x2a\x2a\xc9\xdc\xab\x92\xcc\x20\x9b\x9c\x56\x19\xbd\x17\xe9\x84\x1c\x98\xe4\x89\x0d\xef\x36\xf8\x37\x1a\x4d\x70\x99\x32\x01\xfe\x40\x1d\xa9\x96\x78\xe2\x3e\xa3\xc7\x4f\x04\x88\x86\xc1\x55\xca\x31\xfa\x9a\x52\x31\xb4\x49\x41\x4a\x51\x5b\xf4\x38\x8d\xf9\x01\xeb\x31\x43\x00\x89\x6d\xf1\xdb\x9a\xb1\x74\x45\xfb\x0a\x5a\x62\x61\x2d\x8f\x71\x94\x4f\x29\x72\xf1\xa9\x3a\x31\x5e\x97\xb8\xc2\x91\x0a\xd8\x18\xd9\x83\xbe\x43\xfc\x1a\x1b\x9e\x1d\xbd\x4e\x3f\x47\xe2\xcd\x8d\xf1\xd0\x81\x03\x4d\x88\xcd\x2a\x83\x7b\xe6\x5d\xf2\x8d\x5f\x24\x69\x46\xa7\x20\xfd\x43\x1c\x96\xdb\xe8\xe4\xe3\xeb\x35\xef\x1c\x1c\x97\x49\x81\x22\xaa\x84\x49\x0d\x6f\x96\xbb\xb9\x15\x6a\x7d\xb7\xd4\x09\x91\x77\xcc\x7f\x04\x18\xbb\x91\x2b\x52\x4d\x5a\x9b\x20\x14\x46\xbb\x14\x93\x1c\xc9\x22\xf3\x99\x31\x82\x1f\xaa\x37\xb8\xec\x72\x57\xa4\x59\x4e\x24\x3d\x88\x50\x30\x3f\x1f\x41\xc5\x31\x8c\xa1\x88\x0e\x2b\x97\x90\xd3\x0a\x75\x33\x74\x43\xf1\x26\x10\x4f\x7a\x15\xfa\x9f\xae\xeb\x5d\xc4\xa6\x70\xc9\x94\x9a\x04\x08\x16\xc1\x47\xba\xcc\x1b\x05\x1a\x24\xeb\x63\x66\x98\xcb\x88\xfd\x82\x72\xde\x54\x4b\xa1\x6c\xa7\xd6\x74\x08\x90\x99\x95\x2d\x55\x20\x83\x58\xeb\x87\xd8\x70\xbc\x73\xac\xaf\x7e\xc3\xf3\xd8\x07\xdd\xbb\x85\xad\xfe\xc3\xd1\x33\x21\x74\x49\x0a\x1b\xc7\xae\x67\x93\x8e\x9d\x0e\xb2\x7b\x27\x74\x35\xe8\x54\xa4\x60\xdd\x27\x14\xe1\xf5\xd4\xb8\x45\xbf\xc1\x70\x6b\x85\x50\x14\x34\x3f\x8a\x94\x9c\xdb\x34\x35\x02\xf0\x8f\x3e\xa8\x95\x27\x1d\xba\xd8\x2e\xe7\x4b\xab\xca\x16\x70\x83\xa5\x72\x0d\xa3\x28\xb7\x90\x98\xc2\x52\x00\x1f\x11\xeb\xe5\xb0\x8e\x58\x2f\xab\x99\xf8\xdc\x73\x7b\x1b\x13\x20\x5d\x41\xef\x3e\xe6\xd7\xc2\xb0\xcf\x45\x74\x96\x27\xa3\x1f\x26\x52\x65\x35\xaa\xb4\xab\x36\xd9\x56\xad\x16\x4c\x69\x08\x08\x78\xb1\xb6\xcf\xbf\x10\x0a\x59\xd5\xd2\x43\x8c\x08\x47\x67\x94\xda\xd1\x19\xf0\x6a\x1d\x41\xa4\xe0\x93\x4a\xc2\xa7\x6f\xda\x04\xb7\xaf\xe6\x19\x7a\x8e\x70\x5c\xe0\xeb\xd1\x53\x8a\xad\xba\x98\x99\xb2\x2b\x20\x06\x2f\x66\xe6\xc9\xf4\x37\x75\x20\xdb\x1e\x3c\x14\x92\x33\xe6\x82\x72\x9e\x8a\xec\xc0\x37\x28\xab\x21\x15\xdb\x13\x5a\xce\xa2\x14\xae\xca\x4d\x67\x15\x98\xf7\xa2\xc6\xa2\x7e\x55\xcb\x66\xbe\xa7\x60\x0e\x45\x3f\x1d\x98\x1c\xbd\x36\x80\x20\xde\x89\xc6\xba\x09\x2a\x37\xfd\xd6\x48\x19\xae\x5e\xf2\x85\xbb\xb8\x3c\xd8\x50\x13\x19\xdf\x24\xb3\x3a\x14\x59\x16\xd3\x32\x29\x8c\x4b\x18\x34\x86\x23\x18\x02\xfd\xe8\x32\xbc\xa9\xca\xc5\xd7\x6a\x44\xd0\x16\x9a\x2e\xf9\x72\xe9\xb2\xb1\x56\x50\x14\xc0\x5f\x97\x46\x8f\xf8\x18\xa7\xc7\x47\x27\x4f\x83\x48\xeb\xf7\x85\x33\xc2\xc4\x71\xba\x62\xda\xb1\x9d\xf2\x21\xcf\x7f\x89\x98\x9b\x19\x87\xa8\x0a\xe2\xd7\xbf\xed\x5b\x99\xf4\xb1\x7c\x5a\xb9\x67\x4d\x51\x97\xc1\x8f\xfb\xbc\xd7\xdb\x42\xe9\x40\x2a\x17\x4f\x29\xe1\x42\x1a\x0b\x3a\x2a\xc3\x0e\xf4\xa6\x0a\xee\xc0\x9b\xc0\xdb\xbb\x52\xe7\x4a\x82\xca\xea\x16\x25\x3a\xc8\xe2\x8a\x1e\x47\x28\xfc\x81\x7f\xf2\x04\x25\xfd\x88\x65\x38\xe9\x17\x5b\x32\xe5\x7e\x68\x1c\xde\x0f\x6a\x7f\x62\x1e\x5e\xad\x0d\xf1\x0e\x0f\xd6\xe5\xd9\x4b\xd9\xf6\xc6\x9e\x3d\xec\x35\x8c\x0c\xe3\xf2\x48\xd9\x36\xfe\x40\xbb\x12\x5e\x8d\xb4\x28\x37\xe0\x45\x2c\xeb\x3b\x0a\x10\x3c\x78\x4f\xae\x1f\xaf\x13\x75\xed\xc4\x69\x59\x8c\xa9\x8d\xa8\x93\x7c\xf2\x10\xdb\x3d\xd7\x8c\xbb\x1d\x65\xbe\xf2\xa1\x36\x5f\xf9\x50\x79\x1f\x99\x67\xf3\xa9\xd0\xff\xbb\xa7\xb8\x65\x37\x30\x9a\x62\xba\x59\xe3\xf2\xc2\xb5\x80\x62\x55\xe1\x3d\x7f\x27\x0a\xad\xdf\xdf\xd1\xb6\x3b\x69\xdc\xe5\x65\x86\xd9\x7e\x19\x7f\x1e\xef\x01\xf2\x11\x38\xed\x3f\x56\xba\x79\xc7\x54\xc4\x96\x77\x48\xb2\x72\xb7\xcf\x69\x68\x18\x25\xbf\xa9\x19\xb3\x5e\x66\xd8\x2f\x5c\x14\x6e\x94\x40\xcb\xa4\xdf\xf1\xfe\x99\x2f\x10\x56\xbf\x2f\x1a\x23\xe2\x8d\x10\x76\xdf\xab\x7e\x09\x2c\x9b\x4e\x59\x0e\x28\x46\x12\xb7\x15\xd5\x0c\xbc\xa8\xb4\x81\xee\x28\x59\xe9\xdb\x0f\xec\x0e\xb7\x63\xc2\x03\x79\x6b\xb4\xf7\xb5\x35\xda\xfb\x1e\x6d\xb5\x64\x87\xec\x7e\x00\xac\xc7\x3a\x4d\x1f\x56\x31\xa2\xa9\x8a\x45\xce\x90\x07\x8f\x66\xf0\x91\x3c\xa6\x8d\xff\x8e\x6a\x3b\xa3\x47\xfb\xef\x9f\x01\x8f\x03\xcf\x7c\xdf\x1f\x46\x8b\xa6\x53\xa4\x8c\xc7\xf7\x5c\x21\x8f\x38\x00\x50\x1d\x1b\xe5\xba\xda\xea\xf2\xbe\x23\xb6\x0d\x6f\x42\x02\x5c\x54\x20\xc6\xb5\x3a\x6a\x59\x66\x5f\x4a\x69\xfd\x05\xf9\x90\xeb\x91\xd2\x94\x9e\x6c\xfe\x54\xc7\x70\xda\x35\x53\x4a\x77\xee\xa4\x52\x25\x81\x44\xa4\x48\x79\xd4\xec\x21\x2b\x69\x2a\x82\x14\x1a\x0e\xc0\xd7\x51\x10\x34\x7a\xa9\x4c\x96\x1e\xa1\xe7\x62\x21\x39\xe5\x3d\x7f\x53\x79\xef\x5f\x55\x38\xd0\xed\x6b\x0a\x5a\xf7\x03\x9c\xbe\x88\x48\x1a\x2d\x45\x59\xbf\x4f\x0f\x89\xa4\x0b\x52\x22\x5c\xa3\xa0\x04\x8c\x55\xa9\xb0\xb5\x88\x88\x5d\x0d\xe6\x6b\xc5\x25\xdd\x74\xa5\xa1\xb8\xec\xa7\x15\xf7\xe3\xb4\xaa\xa4\xae\xd8\xec\x13\xd5\x5f\xc6\x24\x98\x02\x01\x16\x11\xf4\x3f\x6e\x29\x60\xf2\x0e\xcc\x08\x9c\xb2\xeb\x1c\x48\x62\x9f\x5e\x1f\x29\xf3\x91\x73\xa3\x00\xdf\xdf\xb6\x56\x1d\x84\xa2\xcc\xa1\x84\x54\x2e\x84\x1e\xde\x7f\xfe\xff\x83\xb8\x23\xd0\x99\x3b\xd6\x14\x64\xe3\x55\x85\x96\x7c\x07\x4d\x28\x81\x0d\xd1\xd8\xe3\x90\x3f\x3a\x16\x04\x12\x65\xc6\x83\xbf\x01\x7d\xe7\x6b\x1d\x9e\x9b\xf2\x60\xdf\xc4\x31\x07\xd7\x18\xd5\x6b\xda\x53\xe7\x5a\x1d\x7b\xd6\x74\x49\xd2\x99\x76\x48\xa0\x6f\xce\xeb\xd0\x1d\xb3\x05\xc1\xf5\x47\x13\x8a\xa7\xb2\xb6\x09\xf9\x13\xaf\x02\x6e\xce\x50\xb4\x51\xd0\xd9\x3e\xa7\x26\xe9\x99\x89\xf0\xae\xca\x6b\x8b\x36\x95\x2a\xb0\x55\x6e\xc2\x6b\x09\x56\xe5\x62\xb0\xf3\x0e\x7e\x8d\x68\xbe\x86\xd2\x48\xec\xda\x36\x2b\x90\x5c\x49\xfa\xac\xc4\x23\x2e\x29\x5b\xba\x34\xb6\x09\xd1\x53\x91\xae\x5e\x53\xe6\x28\xe4\xc7\x31\x1b\x44\xb2\xab\x87\xa0\xa8\xed\x9b\xcf\x60\x36\x6b\x55\x7f\xe9\xfe\x6f\x5c\xaf\xbb\x76\x11\x65\x88\x36\x3a\x04\x9c\x20\xa9\xf2\x75\xa0\x8e\xae\xa4\x59\x32\x1d\x30\x8b\xf7\x30\xff\xa5\x0f\xad\x8c\xb9\x76\xb4\xc2\x2c\x9f\xa4\x28\xed\xda\xd5\xec\x97\x55\x60\x4f\xf5\xd9\x5a\xb1\xd9\x49\x59\x89\x66\xcf\x1d\x1a\xa4\xbc\x77\x89\x3b\x68\xf5\x2d\xa2\x42\x3e\x59\xb2\x78\xb1\x39\xb4\xd9\xb2\xc9\xdd\x32\x5a\x8e\x38\xd0\x7f\x4b\x39\x55\x5c\x46\xe2\x2b\x8f\xb0\x41\xfd\x77\xff\xcc\x7c\xb5\x03\x3e\xad\xe4\xfa\x39\x85\xc1\xe9\x72\x2f\x0a\xa2\x8a\x7f\x4a\xcf\x82\x5d\x85\xcb\xe9\x38\x5d\x58\xab\x18\xc9\xe7\x1f\x8d\x42\x29\xf1\xe3\x91\xc2\x04\x5d\x22\x14\x24\xa2\x8f\xc3\xc4\x8d\x92\x0f\xd0\x7a\x43\xd5\xe3\x04\x76\x2b\x4c\xac\xab\xda\x20\xfb\x3b\x14\xf0\x78\xca\x8a\x0f\x94\x58\xf8\x88\xeb\x42\xa8\x61\x4b\xf2\x44\x41\x24\xd3\x54\x22\xea\xfb\x0a\x67\x45\x0b\x84\x8c\x74\x50\x9e\x99\xbc\x4f\xa4\x22\x44\x2c\xf7\xe8\xd7\xf0\xf5\x44\xdd\x62\xdf\xf3\x4d\x97\xbc\x54\xe6\x85\xeb\x88\x05\x9a\x30\xa2\x82\xbc\xd2\x99\xba\x16\x48\x27\x4d\x16\x5d\x36\xe0\x23\x47\x34\xf0\xd5\x5c\x3b\xea\x4f\xfc\x2a\x34\xe0\xa3\x02\x45\xff\x8f\x95\x19\xe5\xc7\x35\xd1\xc4\x8b\xa8\xea\xc4\x82\xfa\x02\xc6\xec\x96\x52\x3e\xfd\x70\xa4\xaa\xb2\x5a\x3a\xe4\x25\xbb\x62\xe3\x6c\x75\x4a\x95\x0c\xd0\xbe\xc6\xf5\x7d\x55\xab\x9a\x3c\x13\x77\xcf\x35\xfb\xab\x43\xab\x0c\x57\x7e\x4c\xdf\xc9\xd7\x0a\x03\x51\x58\x33\x60\x77\x6a\x5e\xd6\xca\xe8\x1f\xbe\x3e\xd2\xa5\x0c\x15\xfb\xc5\xcc\x24\x55\x58\xf5\xf9\x17\x82\x87\x41\xe8\x3d\x9c\xf1\x30\x15\x3b\x48\xe1\x0c\x4b\x9b\x27\x96\xf1\x0d\x85\x4f\x68\xb4\xc6\xaa\xf6\x4a\xa8\x7f\x58\x26\xc4\x3c\xc2\x01\x85\xa6\x2f\xa2\x97\x1f\xaa\x0e\xda\x47\x23\xed\xec\xde\x49\x07\xc3\xd8\xe5\x54\x24\xd7\xb4\x87\xb9\x60\x05\xac\x8a\x9d\xe4\xc5\xfa\x09\x4c\x58\xfc\xda\x57\x54\x29\x7a\x5b\x4b\x25\x30\xc7\x48\xc0\x5b\xb2\x85\x46\xf8\xff\xe9\xd0\xc7\x9e\x77\x7d\xa4\x22\x96\xdf\x88\x54\xcc\x73\x91\x06\x51\xef\xd5\x5e\x5b\xee\xf3\x2f\xf0\xf5\x87\x58\xb6\x42\x22\x0a\x8d\x62\xe4\x1e\x82\x2c\x56\x84\xde\x6b\x1e\x2d\x59\xa5\x51\x99\x59\xb6\x09\x26\xd9\xac\x6c\x0b\x58\x58\x2c\xcd\x46\x7f\x52\x80\x20\x35\xbd\xdf\x95\x74\x60\x13\x25\x3a\xc7\x4d\x0c\xbe\xa9\xa1\x75\xef\x6d\x52\xb4\x4a\x13\x87\x1d\x06\x80\x4c\x16\xbb\x81\x8d\x53\x72\x61\xa6\x99\x9b\x64\x89\x16\x8f\x94\x9e\xe9\x71\xa5\x26\x5d\x53\x4a\xcd\x4d\x5c\x06\xa4\xa5\x17\xea\x0c\xa2\x9d\xa3\x90\x8d\x0d\xcd\xea\x27\x54\xf8\x7a\x4f\xeb\x29\x7e\x6f\xa4\xa8\xfb\xe7\x23\x05\xfa\x42\xa6\x2b\x86\x80\x8d\x5d\xbb\x3c\xa6\x3e\xf0\xdb\x8e\xe2\x87\x79\x61\xb4\x85\xf9\xa0\x43\xed\x45\x80\xbf\xa5\x9d\x1e\xdf\xc7\x51\xa5\xbc\xf2\xa4\xe9\xb4\x75\x2d\xc4\x96\xef\xd1\x54\x92\xd2\x4f\xe0\xd0\x75\x62\x93\xe7\x6e\xd1\xb1\x88\xab\x38\xcb\x84\x32\xeb\xb1\x40\x1e\xed\x9b\xc1\xd0\xa5\x49\xde\x77\x43\xfa\xc7\xe2\xff\x16\xc2\xc9\x49\xb4\xf5\xfc\x42\x15\x66\x0f\x85\xa3\x33\x17\xb0\xf8\x81\xc9\x38\x99\x4c\x11\xdd\x3a\x5d\x49\xb6\x87\xb3\x1a\x63\x81\x4c\xf1\x61\xc5\x57\xbd\xa7\x88\x0f\xd0\xdb\xf7\xd9\x89\x97\x3b\xfa\x3e\x4d\x6c\x1c\x41\xec\x5c\x2d\x6f\x61\xe3\xf3\xee\x6c\x56\xe3\x91\x17\x26\x29\xa6\x15\x62\xff\xa2\x52\x55\xb9\xad\x74\xe0\xdf\xc1\xef\x10\x3c\xb8\x07\x2c\x67\x4e\x9c\x71\x45\xb5\xe9\x55\xfc\x4b\xbe\x19\x03\xd1\x66\x83\xfc\xf1\x86\x37\x87\xff\x3e\x0e\x4f\x11\x93\x0e\x70\xb8\x93\x74\xb8\x88\x77\x10\xcd\x38\x44\xb1\x17\x51\xab\x42\x42\x70\x78\xa4\x3a\x48\x8c\x4f\x16\xde\x04\x3d\x01\x16\xe6\xff\x1a\xa9\xd3\xf7\x82\xb2\x8c\x3f\x46\x0d\x64\x61\x36\x06\x59\xeb\x47\xe1\x11\x8e\xaf\xdf\x3c\x61\xb9\xbf\x7b\xae\xd9\x4b\xd3\xee\x8a\x8b\x63\xad\x64\x72\x49\x29\x99\x4c\xae\x3a\x2a\xaa\xe4\xd6\x64\x1d\x16\xb8\xc2\x53\xbf\xae\xc0\x9d\xaf\x6b\x91\x57\x97\xc5\x7a\xe2\x69\x75\xcb\x0b\x63\x23\xba\xec\xec\x36\xfa\xb1\xd8\x15\x59\x21\x94\x6f\xa0\xc8\x8c\xb0\xf5\x5d\xa5\x27\xc3\xfc\x0e\x89\x54\x68\x80\x7d\x85\xdb\x9f\x6d\x6f\x8c\x7d\xd1\x62\xd7\x4c\x6b\x76\x0c\xd6\xa2\x5f\xd6\x1e\xa6\x04\x11\x5b\x51\x67\xd4\x68\x3d\x9e\x6c\x53\x63\x6e\x5b\x1b\xe4\x9f\x1f\x04\x72\x24\x7b\xd4\x7e\xba\x32\x1d\xc4\xa7\x99\x96\xa6\x93\x13\x16\xcd\xc2\x68\x89\x82\xd6\x53\x1b\xfe\xd4\x67\x9b\x06\x9e\x5c\x22\x65\x56\x8d\x8b\x48\x9c\x85\x40\xa1\x63\xb2\xcc\x59\x50\xfd\x70\x36\x00\xc7\xc8\xd7\xca\x06\x29\x39\x84\x2a\x0d\x4e\xb2\xb3\x74\xa8\xf2\x75\xdd\x76\x9d\x0e\x6d\x82\x66\x14\x42\xc8\x0b\xca\x99\x1f\xfc\x71\xc1\x0d\x06\xd8\x05\xf7\x46\x24\x91\x0e\x7d\xc8\xae\xcb\x87\xb1\x59\x65\x7c\x11\xe0\xff\x27\x54\x3b\xff\xac\xa2\xd0\x7c\x27\x28\x8a\xbb\xac\x53\x2a\xeb\x58\x4c\xc0\xff\x0b\x11\x2f\xdf\x8c\xe1\x14\x0e\xc5\xec\x02\x26\x6e\x07\xd5\x98\x09\xa8\x39\x6c\xb1\x79\x91\xd9\xa4\x57\xf4\x2d\x20\x7b\x58\xe5\xdc\x67\xe1\x1b\x05\xa0\x68\x5b\xd3\x01\x79\x1e\x65\xc9\x73\x9a\xf0\x7f\x6e\x42\xaa\xd6\xe7\x7c\x99\xed\xba\x62\x9a\x22\x5f\x34\x05\x4e\xab\xa5\xb7\xa5\xa5\xb4\xda\x18\x8c\x2f\x84\xd0\x8d\xf9\xc8\x0b\xf3\xcd\x81\x5b\x5c\xe4\x03\x01\xa7\x12\x6f\xd7\x7c\x33\xb1\x8e\x77\x36\x0b\x9b\x65\x69\xe6\x72\xd6\xf6\x11\x26\x67\x23\x28\x93\x4d\xf4\x41\xf6\xcf\x34\x5d\x92\x17\x26\x8e\x65\xc0\x75\x4f\x87\xaf\x1f\x58\xbf\x2a\x4c\x5e\x70\x86\x2b\x72\x01\xd5\xc7\xb0\x5e\x6f\xa8\x0e\xe8\x91\xb1\x57\x56\x2e\xb7\x1b\x4a\x6f\xe0\x6d\x05\xab\x78\xbb\x46\xac\x7c\xa1\xd9\x31\x43\x57\x98\x58\x29\xe2\x9c\x56\x26\x69\xa7\xbd\x03\x6d\xc7\x26\x45\x99\x09\x11\x09\x58\x66\xb6\x3c\xe5\x9b\x2a\x86\xd2\x29\xd8\xe7\xfe\x69\x73\xe7\x74\x35\x63\x24\x2b\xa6\x7d\xc4\x8b\xd0\x2d\xcc\x87\xdc\x79\xfe\xf9\xbd\x5e\x91\xae\xa6\x22\x15\xa7\x5c\x92\x40\x91\x6c\x6d\xa4\xa8\x13\x6b\x4a\x2e\xa8\x93\x96\x59\x61\xca\xb8\x0b\xb0\xb3\x74\x7a\x55\xd7\x57\xf1\xc6\x0b\x97\xf3\x3c\x44\xcc\xf4\x53\x04\x84\x7c\x33\x31\x6b\xf6\x3d\xdf\xec\x97\x03\x93\xe4\x5a\xa6\x72\x34\xa6\x56\xfd\xa0\x72\x85\x4b\x72\xd7\xb5\xd9\x54\x75\x76\xa3\x70\xff\x9e\x2a\x03\x70\xb4\x8f\x20\xe0\x67\x41\xcd\xd4\xa4\x85\x33\xc9\x54\x50\xc6\xb8\xae\xa2\xab\xb3\x5a\xf5\xed\x43\xad\x6f\x9e\x59\x53\xd0\x76\x29\x12\xe0\xb4\x85\x00\x27\xf4\x15\x25\xba\x8c\x58\x98\x7b\x57\x4a\x1a\xd5\xc4\x9d\xb4\x9f\xc6\x53\x8a\x3d\x78\x66\xa4\x1c\x6e\xc0\xff\xc0\x99\x74\x4d\x7d\x2e\x5f\xb1\x5d\xd2\x71\xac\x26\x3a\xca\xf7\x27\xb1\xa8\xf8\xc6\x0b\x26\xf5\xad\x89\x8b\xfe\xb2\xcd\xf1\x9c\x63\x4e\xa1\x38\xa2\x6f\x8d\x42\xc5\x04\x6d\xcc\xf5\x6d\x13\x07\xf2\xfc\xf3\x7b\x89\x1f\x53\xb0\xce\x15\xce\x16\x6e\xb9\xf2\xcd\x5a\xd8\xd8\x57\x6c\x3b\x2f\xd8\x00\x1b\x3d\x54\x90\x95\x05\xb2\x4c\x1f\xc3\x96\x71\x7d\xcc\xdd\x9d\xd8\x49\xf9\x76\x65\xc5\x03\x12\x90\x47\xe9\x57\x53\x40\xac\x6c\xe8\xaf\xa0\x5a\x77\x59\x65\x2a\xef\x2b\x25\xa1\x4d\xad\xc6\xe7\x5f\x58\x67\x1b\x01\xfe\x83\x63\xfc\xc0\x7e\xc9\xcd\x72\xf6\xfe\x55\x46\x21\x8c\xd2\x14\x2d\xd1\x3a\xbc\x64\xec\x96\x65\xbb\xf1\xc2\x3f\x01\x20\xf8\xa3\x50\x10\xea\xbb\xc5\x62\x6b\x68\x2d\x70\x41\xc8\x77\xfd\x3c\x23\x17\x80\x4b\x2c\xd5\x6b\x38\x2b\x30\x71\x5f\x19\xe9\x44\xb7\x46\x66\xe4\x0b\x3a\xf8\x56\xe3\x07\x05\x28\xbe\x56\xe7\x48\x48\x3a\xa7\x83\x7d\xc0\x39\xa5\xba\x0c\x04\xae\xb7\x4a\x9e\xdd\x27\xd7\xaa\x18\x5b\xf6\xfa\x3b\x1a\xde\xa7\xe8\x24\xf6\x16\x4c\x5d\x5e\xae\x48\x12\x39\xdc\x1b\x63\x78\x20\x41\xfb\x88\xfe\xb2\xdf\xe1\xf7\x4b\xf1\xe9\xe9\xb5\x86\x28\x54\xff\x9b\x27\x50\xd7\xf5\x32\xc3\x73\xde\xf9\xf9\x32\x86\x08\x91\xf4\xf4\x1a\xa0\xc5\x88\x56\x7e\x40\x80\x4c\xd4\x70\x60\xf9\x42\x51\xd4\x47\xff\xa8\xa5\x4c\xbb\x90\xd3\xe0\x75\x73\x55\x1b\x73\x08\x88\x2a\xfc\xdd\xc7\x5a\x1b\x77\xc9\x67\x9f\x6d\x2e\xa6\xf1\xd2\x54\xf5\x0d\xc2\x41\x0c\x11\x19\x5b\x8c\x08\x2e\x77\x63\x98\xb5\xb3\x69\xb2\xb4\x4c\xba\x8d\x80\x8d\xbc\x42\xcf\x27\xd2\xcd\x35\x2d\xfe\xbd\xcd\xbc\x28\x07\xd4\xe9\xdc\x2f\xa4\xbb\x53\x88\x57\x58\xd7\x65\x14\xf8\x19\x0f\x12\xa1\xe9\x94\x83\x36\x59\xec\xd2\x00\xa8\x78\x60\xaf\x8f\x07\x36\x6e\xaa\xfb\x9e\x6f\x9a\x5e\xe6\x3a\x65\x5c\x94\xa4\x5f\xa8\x68\x43\x8a\xd6\x3f\xce\xb8\xcd\x4b\x3a\x88\x30\xaa\x9b\x5a\xf4\xe6\xb1\x4a\x11\x44\xa0\x57\xc7\x00\x7d\x99\x5f\x35\x06\xff\x69\x3b\xb7\x99\x5f\x5f\x38\xf7\xbe\x15\x05\x72\xcf\xb7\x26\x3e\x54\x1d\x1b\x2e\x1f\x9a\x84\xc5\x31\x50\x41\x38\x8b\xf7\xc1\x37\x0a\x00\xde\x36\xc9\xd2\x63\x34\x81\x78\x36\x61\x62\x8a\xff\x95\x52\x35\x3b\x37\x52\x62\x90\xc7\xe8\x38\x45\x8e\x78\x57\x9d\x77\xdb\xd6\x42\x11\x66\xf3\x5a\x00\x3b\x4e\x13\xc2\x12\xb3\xf7\xb0\x06\x9f\xde\xa6\x14\x4c\x22\x51\x2d\x6f\x7d\x9e\x26\x2f\x7a\x17\x3f\xaa\x41\x6a\xcf\x93\x19\x19\x42\x62\x09\xfa\xe8\x45\x4a\x38\xb8\xf1\x23\xbb\x66\x9b\xed\xcc\x75\x7b\x0c\xa7\x42\x1f\x15\x34\x02\xbe\x9e\x28\x4b\xee\x6c\x2e\xa6\x99\xed\x98\x3c\x94\x31\x58\x63\x59\xf9\xa9\x9e\x9a\x98\x6b\xde\x84\xa7\x6f\xa5\x37\x85\xd1\xbd\xab\x17\xee\x5d\x1f\xea\xe4\x85\x29\xca\x22\x65\x15\x3c\x6c\xed\x8f\xb7\x02\xa8\xe2\xf1\xb5\xc7\x3c\xdc\x33\x76\x1d\x14\xa8\xb1\x77\x1c\xd0\x5d\xc6\x23\x8a\xb5\x72\x44\xb9\x11\x52\xb7\xdf\x76\xb7\xaa\x72\xf4\x26\x98\x6d\xa1\xea\x8e\xac\x86\x09\x42\x48\x7d\x45\x85\xa3\xfa\x26\x16\xd9\xa6\x05\x2a\x82\xdb\x3a\x04\xfc\xcc\xe0\x33\xdb\x1a\x5e\x1b\xeb\x75\x6c\xff\x38\xf4\xdf\xd7\x89\xf4\xcb\xf4\xd7\x58\x2e\x35\x52\xd1\xfa\x75\x6d\xb1\x73\x4b\xa5\xce\x7f\x34\xf1\x12\x77\x36\xf3\xb2\xd7\xb3\x22\x19\xcd\x3e\xe9\x91\x72\xfd\x3e\x35\xf9\xe2\x77\x35\x3b\x76\xd1\x65\x69\x43\x81\x5a\xbf\xa1\x52\xa0\x6f\xd4\x99\xf7\x74\xed\xa2\x29\x63\x9f\xbb\x88\xe8\x65\xa0\xe3\x9e\x7d\x60\xfc\x95\xa7\x45\xdf\xb6\x57\x15\x78\xe6\x1d\xad\x4b\xfb\x4e\xf4\xe9\xc9\xb4\xbd\xb0\xb1\x65\x3a\x4e\x07\xaa\x38\x14\x39\xa0\xe4\x7c\x6d\x14\x82\xd1\xaf\xe8\x64\xe3\xfa\x84\x18\xcb\xc2\x4c\xb3\x9b\x36\x02\x31\x74\x7d\xa4\xec\x3b\xd6\x27\x66\xf8\x81\x03\xcd\x61\x9a\x2d\x99\x61\x1a\x3b\x1d\x69\xb2\x39\x80\xe0\x0c\x6b\xf4\x3b\xc5\x13\xa5\x11\x8e\xcb\x4b\x78\x8f\x02\x56\x7a\x4a\x69\x60\x74\xfa\x2e\x71\x79\x01\xb4\xd7\x98\xf6\x16\xa6\xeb\xbf\xc2\xaf\x12\xbd\x50\x1a\x72\xc4\x54\x0d\x85\x3e\xee\x96\x9d\x25\x28\x2f\x09\xf6\xb6\xe1\xad\x79\xbe\x13\x7d\x52\x61\x53\x06\x43\x53\xb8\xb6\x8b\x5d\xc1\xfc\x0f\x96\xa2\xc0\x16\x21\xba\x14\x12\x9b\x64\x50\xe2\xde\xb3\x87\x63\x47\x56\xa6\xe5\x9b\xb5\xb0\x92\xf2\xb2\x9d\xa5\x45\xaa\xd3\x24\x04\x17\xf8\xa7\x58\x23\x8c\x6a\x1a\x4b\x93\x96\x9c\xc1\x3c\xc2\x79\x7a\x73\xa4\x0e\xed\x9b\xd1\x33\xfe\x0b\x5c\x52\xc5\xa9\xae\x67\x0a\x56\xe5\x13\x2a\x48\xc3\x4b\x90\x9e\x1b\x57\xd8\x4f\x0c\x96\x02\x8e\xf9\x77\x34\xe8\xed\x9d\x28\x74\x0a\x72\x13\xdb\xfc\x29\x55\x31\x1b\x3b\xeb\xcf\x44\xba\x01\x4e\x03\xa6\xd0\x64\x02\x1c\xbd\xa3\x5c\x68\x41\x0b\xf4\x41\xcb\xae\x59\x4f\x57\xa5\xfa\x2c\xaa\x22\x6f\xa0\xf6\xca\x37\x80\x8b\xe0\x86\x95\x72\xd9\x6e\x04\x41\x13\x58\x7e\x77\x94\xf5\xf7\x19\x6e\x49\x49\x3e\xd9\xf0\x8a\x10\x87\x23\xa5\x97\xff\xf0\x5a\xa0\x25\xbd\x3f\x0a\xa7\xe3\xf6\x96\x96\xb4\x77\x09\x05\xd6\xca\x27\xfd\x3e\xbd\x2e\xbe\x56\x35\x99\x76\xd9\xed\xd9\x22\xdf\x12\x2a\x48\xc7\x46\xba\x78\xa5\x2a\xfc\x47\x14\x76\xf2\x26\x7e\x3a\x7f\xa2\x4e\xae\xb7\x3a\x4d\x44\x26\xd7\xcb\x80\xf9\xc8\xf3\x92\xce\x6e\x78\x0b\xc1\xef\xc7\x1b\xe3\x43\x9c\x6f\x46\x8f\x8f\xb1\xb8\xba\x64\x04\xe5\x89\x63\xbe\xf2\x7c\x2e\x92\x6a\xf3\xc0\x25\xce\x54\x29\xf5\x21\xd9\xd3\x10\x78\xdc\xd1\x72\xc7\x77\x82\x5f\x80\x89\x63\x81\xd5\xe1\x78\x61\xeb\x18\x9c\x5e\xf0\x30\xf5\x10\xde\xcf\xbf\xe0\xe5\x9a\x7d\xc0\x1f\x97\x83\xe1\x16\xa5\x54\xc3\xe2\x0c\xca\xb2\x20\x90\x13\x43\x8e\x8f\xa6\x9c\x14\x6b\xbd\x50\x84\xcb\x62\xbc\x10\x61\x4c\x28\xbe\x20\x47\x70\x58\x83\x4f\xb5\x42\xd6\xba\x6d\x2d\xe0\x96\x4f\xfb\x5f\xb6\x64\x07\x43\x48\x7c\x4b\x8b\xe4\x2e\x2a\x98\xde\x2a\xcf\x47\x68\xa8\xda\x61\xdb\xfe\x93\x89\x53\xa2\x0a\xb5\x9b\x31\xe4\xb9\x75\x69\x0e\xa9\xa5\xd4\xe9\x42\x15\x6d\x60\xbb\xce\x2e\x9b\xb8\xa1\x5c\x30\xae\x62\x27\xe0\x1b\x05\x96\x6a\x5b\x97\xf4\x1e\x0b\xb3\xfc\xf1\x9f\x0f\x4c\xa2\xff\xea\x09\x16\xeb\xf0\x0c\xd1\x05\x11\xe5\x3f\xa3\x8a\x29\xdb\x5b\x1e\x4a\xf1\xc1\x0e\x34\xff\xd1\x49\x65\x8a\x2e\xf2\xad\x1b\xaa\x4d\xb8\xb9\x55\xad\x64\xbc\xa1\xd3\x18\x62\x2f\x49\xfa\xa5\xe7\x42\x1b\x6c\xf7\x9c\xb7\xe9\x0b\x8c\x8a\xdc\x75\xed\x8a\x59\xcd\x1b\x41\xea\xe1\x2d\xac\x1b\xbe\x51\x59\x93\xc9\x57\x1f\xf2\xfd\xaa\xa3\x80\x00\x00\x9e\x71\x73\x34\x46\x1f\x6e\xec\x9f\x59\x67\x25\x09\x7c\x3b\xfc\xd3\xb0\xe2\xfe\x14\x33\x4a\x15\x47\xe6\xb9\x33\x74\x97\x14\x84\x44\x93\x6f\xac\xc0\xdc\x37\x1b\x54\xa3\xaa\x71\x11\xd5\x28\x81\x69\xad\xd8\x38\x7e\x54\xa9\x80\x31\x21\x46\x68\x24\xf4\x19\xc0\x5f\xb8\x14\x8e\x33\xed\x3e\xed\x84\x22\x4e\x59\x0d\x19\x1e\x07\x84\x7c\x19\x32\xda\x26\x84\x2c\xa9\x90\x34\x1f\xd1\x9b\xa0\xf5\x3d\xff\x24\xed\xaf\x40\x26\x7f\xa6\x15\x82\xdc\xe9\xb5\x9a\x7a\x55\xbb\xcc\x11\x3b\x32\x1f\x4a\xa9\x9c\x5d\xd4\xba\xf4\x99\x4d\x0a\xd7\x61\x91\x69\x5e\x87\xda\x66\xec\xbc\xea\x60\xdb\xa4\x67\x7a\x56\x43\x0b\x2f\x29\x3b\x2d\xf6\x8e\xc1\x73\xdf\x55\x1b\x57\x66\xdb\xa5\x83\xdf\xfd\xfa\xf1\x88\x00\x96\x4a\x1c\x36\x4e\xc9\x1d\x54\x35\x8c\xc0\xec\xe4\xeb\xf1\x26\x8e\x6b\xe3\x41\x45\x63\x96\x3e\x25\xe2\xb3\x4f\x69\x0f\xdf\x25\xd3\x4f\x63\xd7\x41\x84\x2e\x92\xc9\x0d\xaf\x0f\x7e\x4e\x01\x13\xcc\x62\x66\x1c\x36\x4b\xb1\xb5\x09\x1d\xe9\xc3\x51\xc8\x8c\x20\x6a\xe9\xc1\xf0\x88\x91\x85\x32\xac\xd4\x41\x8c\xcb\x6d\x4e\x85\x25\xc1\xc8\x2a\x2e\x0f\x4a\x68\xd8\xe4\xfe\x9a\x0e\x36\x79\x2b\x61\x29\x64\xc6\xd1\x20\x7b\x47\x5c\x6f\xd4\x77\x7b\x14\x74\x38\x6e\x2a\x36\xae\x29\x0a\x57\x94\xdd\xb1\xf7\x78\x5c\xbf\xc7\xe3\x13\x55\xde\xd9\x7d\xcd\x4e\x96\xe6\x79\x96\x1a\x71\x90\x65\x51\x19\x25\xe9\x7e\x73\xe2\x63\xd8\xe1\xca\x25\xbb\x62\xb2\x81\x32\x1c\xbb\xac\xdc\xac\x2f\xd7\xe1\x17\x16\x6d\xfb\x33\xaa\xe6\x7e\x49\xd7\xdc\x27\x2b\xd7\xc4\x7f\x85\x98\x2f\x38\x5d\xa2\xb8\x51\x7d\x23\xce\xd3\x5b\xd1\x58\xe2\xad\x14\x3a\x82\xa5\x4a\x3b\x73\x85\x71\x68\x0a\x48\x10\xd6\xf0\x9a\x79\xe7\x27\x92\xc8\x9d\xcd\x45\xa7\x40\x8e\x5c\xf6\x8e\x82\xa7\xfa\x99\x91\x36\x8e\xcf\x6c\xa7\xf0\x42\xc3\x38\x54\x6e\x6a\xa3\xe5\x9b\x13\x99\x87\x24\x04\x76\x9a\x14\xc2\xb0\x2b\xbf\xac\xba\x58\x80\x38\xa3\x6f\xf2\xfa\xa8\xf1\x5f\xec\xf5\x66\xbd\x61\x7e\x2c\x2f\xaf\x6e\x0d\xf3\x10\x2d\x6f\xb6\xd1\x42\x78\x25\x1c\x17\xa5\xe6\x00\xee\x39\x1b\x37\x68\xdd\xb7\xf3\xe3\x86\x2e\xb6\x43\x2b\x41\x8a\xd5\xd5\x04\x95\x22\xb6\xe8\xe5\x24\xd6\xf5\xfa\xed\x34\xeb\xa7\x69\x97\xfb\x3f\x0c\xdf\x18\xf3\xd4\xae\xbe\x4f\xa8\xfc\x7a\x75\x74\x5d\x8a\xbc\x42\x68\xfb\xf4\x94\x7c\xa3\x56\x71\xde\xe9\xaf\x58\x57\x1c\xb2\x59\x43\x89\x63\x9d\xd3\x34\xe2\x73\xd0\xe6\xf6\x11\x7e\x66\xfb\x36\xc9\xdd\xb2\x9d\xd6\x87\xe1\x61\x05\xd9\x82\x0c\x2c\x22\x86\x6f\xe8\x8c\xf3\xb2\xc7\x5f\x78\xf5\x4c\x13\x13\x64\x45\x7a\xf4\xd5\x1f\x41\x42\x7b\x5d\x75\x1a\x8f\x2b\xe5\x4d\x12\x8f\x68\xbb\xc4\xb0\x59\x00\x5a\xc7\x6c\x56\xc9\x37\x75\x3a\xa4\x6d\x93\x2c\x59\xef\xc4\x84\x00\x64\x73\x4b\x45\x23\x9b\xd7\xd4\x39\x59\xa2\x6b\xe4\x41\x64\x7b\xf6\xc8\xb5\xf6\x47\x88\x63\xdb\x33\x89\x84\x8b\x22\x42\xa5\x15\xa9\x6a\xec\x84\xe6\x9b\xfd\x34\xcb\x45\x4c\x18\xa7\x2f\xef\x5e\x7c\xa3\xba\x68\x4b\x49\xba\x92\x13\x76\x5b\x50\x82\x14\x32\xf1\x8d\xaf\xb5\x0f\x5d\x9a\x58\x1b\x24\x71\x70\xe4\x01\x35\x84\xad\x1b\x1c\x2f\x39\x99\x03\xcd\xbc\x9d\x26\xdd\x87\xc7\x8d\x49\xf6\xec\xf1\xae\xa7\x2a\x55\xfc\x83\x91\x52\x38\x04\x1d\x0e\xdf\x32\x02\xd7\xc1\x93\x85\xab\xb5\x81\x95\xf9\x23\x2d\x13\x00\x6e\x39\xb2\x18\xd4\xae\x70\x4a\x6c\x5e\xab\x01\x12\xe6\x43\x58\x6e\x57\x23\xc4\x00\x5f\x6c\xb4\x82\xf6\xad\xd9\x68\x87\x7d\x17\xa7\x79\x3a\xec\xa3\x02\xc0\x80\xf2\x28\x54\xe3\x2e\x8e\xab\x4b\xc5\x96\x7d\xb6\xb0\x7e\x38\x22\xe1\x1b\x0f\xed\xcc\xac\x6d\xa7\xec\xdd\x8e\xc0\x0d\xf9\x10\x5f\x6f\xc4\x23\x56\xaf\x77\xcf\x9e\x05\x5e\x1a\x82\xe0\x50\x49\xd7\x4d\x25\xa1\x76\x9d\xc2\x16\x51\x85\xd9\xb8\x9d\x7f\x71\xb6\xb9\x68\xe2\x58\xb5\xa8\x4f\x61\xe3\xe1\x1b\x45\x0d\x2b\x13\x3b\x18\xc6\xe9\xea\xc0\xb2\x50\x90\xe8\xda\x05\xc4\xf9\xf9\xb1\x43\x3e\xb1\xdd\x4f\xd1\x43\x21\x4e\xfa\x3a\xbd\x0f\x9c\x46\x6f\x46\x63\x05\xf3\x6a\x9f\xf2\x87\xc9\xfc\x82\x97\x10\x27\xd8\x0f\xca\x52\x3f\x01\x04\x43\x5c\x3b\xe8\x19\x91\x95\xde\x23\xfa\x0c\x26\xdd\x8d\x48\x89\x1e\x5c\xd7\x44\xa4\xbb\x14\x47\x73\x4e\xd9\x6a\x68\xa9\x9b\x6a\x62\x89\xea\x5d\xb5\x08\xd0\x11\xb9\x81\xc2\x93\x28\xdb\x37\xbc\xc2\xdf\x98\xf6\xd9\xe6\x35\x9a\xd6\x63\x09\x35\x56\xfa\xbf\xa4\x80\x4f\x1c\xed\xaa\x77\x00\xdc\xcb\x4d\x80\x9c\x30\xc7\x4e\xb0\x84\x17\xce\xbe\x1f\xd6\xe9\x05\x0f\x5d\x41\xec\x72\x25\x6a\x79\x1c\x4b\x46\x6c\xa6\xea\x0a\x38\x7d\x37\x0c\xfa\xce\xc0\x80\xa2\x82\xc8\xd7\x6a\x77\x66\xef\x47\x9b\xd9\x31\x25\xb3\x91\x56\x32\x9b\x38\x5e\x17\x66\x9a\xb1\x23\x8f\xdd\xc6\xc2\xcc\xc7\xbf\xf1\x44\x95\x8c\x7d\xfc\x1b\x4f\xb4\x94\xc1\x5a\x91\x0e\x7b\x66\x88\x27\x40\x31\xe4\xac\xb2\x22\x3b\xeb\xe9\x50\xcb\x36\x5b\x7d\x44\xd1\x33\xde\x19\x05\xe4\xe6\x96\x35\x55\x64\x78\x7f\xa4\x20\x0f\xf7\x03\x5e\xef\x8b\xbf\x4c\xfc\x26\xf1\x46\xf3\x71\xf6\xcb\x1f\xd1\x2f\xa6\xf4\xeb\xb9\x9f\x27\xec\x3b\x7e\x3d\xeb\x49\xa8\x28\x7d\xde\x6b\xb9\x84\x68\x77\xb1\xcc\xbc\x5a\xba\x68\xc3\xd1\x3f\x15\x89\xec\xb0\x93\xff\x62\xd9\x9f\x0a\xa1\xcd\xbb\xf8\x67\xde\x3e\xf0\x4b\xcf\xf9\x88\x31\x24\x54\xcb\x06\xa5\x40\xea\x78\x08\x58\x66\x1c\x3b\xee\xad\x9f\x3e\x50\xf5\x8b\xbc\x1c\x0c\x0c\x93\xcc\xd0\x09\xba\xac\xd4\xd5\x2f\xab\x4d\x97\x80\x42\xa1\xb4\x04\xef\x3d\x21\x83\x87\xe2\x11\x49\x93\x6c\xa3\x22\x0d\x1f\xac\x91\x12\xeb\x82\x93\x26\xab\x33\x63\x3d\xc9\xf1\xab\xca\xdd\x20\xf6\x49\x0b\x83\x7e\x05\xe2\xa1\xbb\x75\xb0\xfd\xc2\x25\x8e\xaa\xbc\xd5\xfa\xc2\x5b\xfb\x1e\x7d\x0d\x5f\x2b\xb4\xa9\x5d\x76\x8c\x90\x92\x44\x21\xf4\xba\x2f\xf8\xea\x87\xe9\xf5\x32\x9b\x57\xd1\x42\xbc\x3a\x15\x2c\x36\xcf\x2a\xfa\xcd\xa6\x56\xa8\x16\x5c\xaf\x55\x9d\x4f\xe3\x8e\x49\x52\x45\x00\x45\x1f\x40\x04\x44\x1f\xf5\x0d\xe7\xac\x38\x84\x1a\x21\xf6\xd7\xdb\x91\xd2\x59\x3b\x4f\x51\xbd\x8c\x90\x92\x88\xc8\x2c\xac\xdf\xbd\x5b\xcd\xfb\xca\xdf\x46\xdb\x21\x0d\x4d\x56\x24\x36\xa3\x1e\xb1\x80\xcd\x01\xf1\x42\x1a\xfb\xee\x48\x79\x6e\xfe\x19\x56\x04\xdf\x28\xf5\xb3\x33\x4a\x24\xe5\xf5\x91\x12\xf6\x89\x94\x8e\xf2\xbb\x13\xf8\x18\x6a\x83\xa7\xc9\xa2\xeb\xda\xa4\xc3\xbd\x14\xaf\xa6\xee\x67\xcf\x25\xed\x8b\x52\xf4\x63\x92\xa6\xa2\x07\x11\x85\x93\x00\x00\xbb\x50\x5f\x58\x61\x71\xb4\x46\x38\xa6\xae\x2a\x6a\xcf\x55\xb5\x4e\x56\xfa\xae\x58\x4c\xb3\x6e\x43\x01\x3e\x50\xc5\x11\x79\x85\x1a\x16\x43\x3f\x1d\xc2\x01\x54\x4c\x46\x68\x46\x8b\xcb\x48\x98\xfb\x9d\xd8\x2d\x2e\x4e\x8f\xc9\xe5\xe3\x4c\x15\xbd\xfc\xea\xcc\x90\xde\x72\xc0\x78\x4d\x92\x51\xbc\x94\xeb\x67\x1a\x1a\xd4\x4c\x60\x7e\xa9\x76\x6c\x8c\x26\x16\x66\x9a\x2e\xa9\x26\x46\xee\x37\x6a\xf4\x99\x7f\x10\x85\x9e\xf3\x0f\x14\x1f\x34\x33\x1d\x4b\x51\x9d\x3e\x0b\xde\x53\x54\xe1\xf7\x14\x73\xd0\x25\x9d\x6d\x81\x47\x24\xbf\xcb\xbb\x26\xcd\xcd\x71\x7e\xff\x7d\x3e\x81\xc6\x22\x2b\x29\x66\x34\xbc\x83\xc7\xf4\x9a\x52\xe7\x7c\xa2\xa5\x13\x8d\xb8\x6b\x1a\x61\x86\x9d\x50\x0a\x51\x27\x94\x25\x66\xd7\x2e\xc6\xb6\x53\x28\x63\x91\xbb\x38\xab\xf9\x46\x6d\x5c\x03\xd3\xb5\x8f\xd3\xd7\x01\xc0\x0b\xdc\x11\x76\x9a\x2d\x54\x28\xc3\x0e\x8c\x57\x22\x4a\x3e\xea\xac\xbf\x3c\x0a\xdd\xc9\xdb\xf8\x45\xf8\xf4\x4d\x44\x17\x5e\x57\xb7\x3a\x88\xf9\xbf\x44\x8a\x45\xb1\x75\x4d\x8b\x32\x44\x5a\x3b\x97\x00\x17\x9c\x8d\xdc\xa4\xd7\x8b\x76\xc3\x49\x25\x58\xda\xb5\xcb\x8e\x45\xe7\x76\xed\x0a\x53\xd6\x23\x0c\xce\x8d\xf5\x93\xdb\xae\x43\x8d\x13\x24\x74\xa7\x28\x52\x10\xd1\x8b\x09\xd2\xa2\xa0\x8b\x6a\xb4\x21\x32\xdb\xb1\x6e\xd9\xb4\x63\xab\x32\x96\x77\x68\x0f\xe3\x6b\x8f\xdd\x2b\xfa\x99\xb5\x83\x34\x29\x70\x3e\xa8\xad\x61\xaf\xdf\x3f\xc2\xe1\xd6\x8b\x61\x47\x2e\x31\x8a\x72\x22\xf8\x61\xa4\x29\xe8\x59\x37\x5e\x9d\x0e\x39\xf9\x71\xe5\xe0\x7f\x51\xb7\x04\x8e\x2b\x31\xd6\x8b\xa3\x9f\x7f\xc0\x52\x82\xb6\xfa\x40\xec\xda\x30\x3a\xac\xbb\xc8\x37\x0f\x54\x54\xce\xcc\xea\x20\x4d\x20\xc1\xa9\x09\xb9\x92\x45\x2a\xd1\x90\xdb\x75\xdc\xd4\x97\x52\xc7\x5f\x0b\xd8\x0c\x40\xcc\x7c\xad\x02\xfc\x34\xb3\x3d\x06\xb1\xf1\x6c\x8b\xf4\xcc\xd3\xaf\xd9\x9a\xee\x13\x0a\x98\xf0\x67\x88\x02\x25\x23\xa5\x95\x80\x30\xf9\xba\x12\x83\x3f\x81\x38\x57\x70\xe6\xb4\xec\x11\x69\x3f\xd6\x0a\x22\xb2\xe7\x79\x09\x8b\xed\x5c\x58\x2d\xd7\x15\x6c\xe8\x1e\xe6\xbe\x18\xd5\x55\x4b\x07\x55\xec\x9f\xe0\x44\xc1\x3a\xdc\xba\x46\xa7\x32\x73\xdf\x46\x8a\xb9\xc9\x8c\x27\x14\x4f\x6e\x79\x7a\xbd\xc9\x0a\xce\x43\xd8\x3d\x72\x14\xf6\x96\xc7\x5b\x61\xf6\xdd\xd5\x69\xda\xbd\x1a\xb4\x51\xb3\x6d\x4d\x89\x8e\xde\x6c\xb0\x47\xf6\x26\xb4\x17\x26\xf6\xf9\x03\x07\x9a\x99\xeb\xa4\xd3\x01\xd1\xfe\x32\xbe\x83\x0d\x2a\x95\xff\x10\xc8\x1d\xe8\x34\x9d\x51\x45\x25\x32\xc3\x76\xac\xc5\x84\xcd\x86\xdd\xb6\xf8\x66\x6c\xa5\xae\xf4\x57\xc9\x73\x8d\x89\xf4\x74\x38\x60\xa5\x7e\x4f\x39\x66\xbf\x35\x52\xe8\x24\xe8\x9b\x21\x1a\xfd\x36\xd5\x08\x59\x5d\xba\xce\xc3\xe5\xd3\x0a\xcd\xd6\xd8\x08\x5a\x93\x9b\x89\xa3\x67\xdf\xf3\xcd\x9e\x4b\x72\x9b\xf4\xe8\xc4\x43\x73\x05\x38\x63\xbe\x6e\xd5\x48\x65\x03\x4c\xd5\x61\xf1\x26\x7f\x5c\xcd\x05\x1b\x92\xc0\x29\x22\x77\x61\x36\x39\xc0\x40\x43\xdf\x8a\xaf\x95\x2c\x52\xe1\x7a\x36\xcb\x95\xc2\xf4\x19\x95\xc6\x9e\x79\x20\x3c\xf5\x90\x71\x85\xd1\x66\x3d\x50\x32\x95\x4e\x2e\xfd\x7c\xfc\x87\xcd\x2a\xc1\x20\x91\x02\xc8\xd2\xcf\x7a\x15\x26\x1a\x7b\xbe\x99\x28\x45\xce\xee\x6b\xb6\x33\x6b\x96\x16\xc5\xd3\x08\xff\xf0\xb6\x52\xb0\x0d\xf6\x85\x65\xd2\x37\xc3\xa1\x63\x8c\x07\xde\xf3\xb9\x48\x69\x82\x9c\x1b\x13\x9c\xb2\x66\xc9\x66\xf9\x54\x08\x19\xb9\xbc\xe5\x6b\x76\xde\xc0\xe6\x6a\x9d\x6d\x12\x55\x79\x6c\x97\xbf\x0d\x40\xa7\x97\x95\xd7\xca\xcb\x1e\xcb\xd9\xb5\x31\xa4\xb4\xf6\x4b\x0b\xe1\x3d\x65\xb6\xfe\x5e\x9d\x47\x51\xd7\x2d\xbb\x5c\xd0\xb6\xde\x54\x6e\xce\x3b\xd4\xd5\x8b\x25\x9a\x01\x9d\x25\xde\x1a\xef\x48\xa4\x20\x7a\x47\x26\x0a\xc3\xb4\x82\xf3\x62\x8a\xd2\x69\xa1\xaa\xd0\x66\x82\xed\xb0\x3f\x46\xd2\x94\xca\xc7\x30\x8d\x1d\xe3\x0c\xf0\xb6\x61\x0d\xc0\xd7\x3e\x47\x1c\x18\x17\x6f\xa5\xaf\x07\xaa\x1a\xd4\x71\xd4\xfb\x1e\xc7\x69\x2d\xb2\x4d\x0d\xb1\x08\x7f\xf2\xef\xb4\x94\x74\xe2\x39\x3a\xed\xd7\x2f\xfb\x6f\x3e\xe8\x92\x7e\x09\x87\x42\x4c\xb4\xb7\xf5\x3a\x9b\xc4\x37\x57\x43\x32\xcc\xd2\x65\x87\xda\xbc\xb0\xcb\x8a\x28\xd4\xcd\x8a\x51\x68\xf6\x77\xcc\xd0\x10\x46\xc1\x59\xcc\x0a\xb1\x5b\x08\x49\xf8\x5f\xa2\xf4\x80\x08\xed\xcc\xc4\x80\x1e\x38\xd0\x1c\xd8\x9e\x99\x0e\x01\xcf\x05\xad\xc2\x73\x8c\x22\x0a\x1c\x62\x7f\x4a\x01\x0f\xb8\x72\x77\xea\xc4\x60\x87\x36\x5b\x4c\xb3\x01\xb7\xa7\xf1\x12\x4e\xd2\x18\xf2\xb5\x0a\x8a\xf3\x32\x37\x09\x57\x1b\xb1\x5b\x9d\xd5\xc0\x83\xb3\xd1\xd3\x4a\x63\x77\x18\x9b\x0e\x1d\xd2\x64\xdd\xa9\x8d\x65\xf4\x9e\x22\xb4\x20\x4a\xbb\x59\xd3\x31\x0a\x60\x64\x48\xf8\x8a\xd6\xa3\x86\x7a\xc4\xb1\x69\xa7\x59\x50\xf0\xc5\x6a\x42\x60\xca\xd7\x13\x3f\x77\x67\x73\xc9\x66\x9d\xbe\xb3\x8b\xb6\x3b\x55\x45\x60\x38\x0f\x58\x3b\x10\x33\xf3\x7f\x1a\x05\x69\x84\xb3\x2a\x91\xdf\xfd\xb9\xbd\x5b\xf0\xcb\x21\xe6\x75\x23\x52\x08\x7d\x22\x87\xae\x5f\xa6\x19\x26\x7a\xb4\x34\x30\x38\x64\x2e\xa8\x2d\xb3\x93\x96\x79\x75\xae\x54\x5b\x26\xe6\xc6\x77\x14\x98\xe0\x3b\x75\x70\x40\x5b\x85\xc7\x62\x56\xee\xc7\x45\x0d\x9e\x2a\x1c\x2f\x2e\xd2\x94\x42\x19\xf1\x43\x6d\xfd\xf7\x2d\x05\x0e\xfe\x59\x14\xdc\x2d\xdc\xa0\xcd\x92\x30\xc8\xd2\xef\x28\x58\xd8\x58\xf6\x8e\xe3\x0f\xa4\x88\xe3\x5e\x8a\xd0\x1e\xec\xb8\x82\xfc\x00\xf6\xec\xe1\x05\xb5\x03\x02\xdb\xd8\x41\xb6\xd2\x79\x23\xc2\xc2\xd5\x9f\xc3\x14\xff\xf1\xe8\x29\x3f\x59\xec\xc1\x22\x2b\x73\x78\x82\xe9\x1e\x79\xf5\x27\xa5\x45\x5e\x53\xa5\x6d\xdb\x4e\x3a\xb0\xba\x8e\x7d\x9a\x4e\x07\xbe\x0e\x7a\xc4\xc6\xad\x98\x04\x2e\xf2\xc8\x53\x9f\x64\xc3\x47\xc4\x6d\xe7\x11\xcc\x88\x60\x4a\x78\x89\x53\x6b\x55\xc8\x2d\xda\x50\x35\xfd\xae\xae\xc9\x96\xa6\x02\x3d\x1f\x43\x87\x6b\x86\x52\x49\xb8\x24\x67\x47\xdf\x64\x6c\x48\x16\xea\xe1\x3f\x43\x90\x27\x7d\x9b\xd0\xc1\xbc\x36\x91\x86\x93\xc8\xd9\xb2\xcd\x56\x57\xfa\x36\xb3\x60\xd6\x21\x8a\xfa\x48\xf5\x7e\xc0\xeb\x53\x07\xdf\xac\x37\x7c\x7e\x4a\x09\x89\xc5\xa4\x17\x57\x45\xe6\x2a\x1b\xa4\xa1\xe0\x1b\xad\xdd\xc4\x32\x9c\xc2\x94\x9b\x94\x3b\x98\x6f\x76\xba\x6a\xcf\x3c\x12\xa9\x3d\xf3\x88\x3f\xa3\xf2\xf2\x90\x49\x98\x66\x21\x54\x0c\x05\x87\xfd\x30\x0a\xf2\xba\xb1\x59\x19\xd0\xd1\x49\xec\x45\x4c\xc8\x0f\x30\x54\x4c\x3a\x50\x4d\x53\xfe\x99\xcc\xf7\x8d\x94\xc1\xd8\x45\xca\x9b\x10\x81\xfd\xbe\x32\xb6\xba\x18\x8d\x55\x16\x95\x66\x77\x9c\x2e\x9b\x25\x67\x88\xc6\xae\xb1\x0f\x02\x9a\x1a\x33\xee\x40\x95\x60\xde\xd7\x05\xe8\x9b\xb1\xe2\x5e\xa1\x57\xa9\xdc\xf6\xc4\x50\xe3\x95\x3a\x3d\xb8\x65\xd3\x2b\x31\x2e\xa8\x06\xa3\x24\xca\xd7\x35\x58\xea\x6e\xd9\x6e\xdb\xee\x96\x31\xa6\x74\x28\x7e\x70\xc7\x0d\x67\x22\xdc\xb4\xb0\x5b\xfc\x60\xa4\x8e\xbe\x4b\xaa\x49\x0f\xbf\x92\x87\x68\x63\xc2\x2a\xd9\x8c\x12\x2b\x76\x5f\x00\xb4\x10\xd8\x9d\x8e\xd4\x5c\x5b\x0b\xfd\xc0\xdb\xd8\xc6\xf1\xcc\xd7\x95\xc6\xc6\x8e\x96\xea\xc2\x1d\x8e\x42\x1d\xf6\xa4\x37\xec\xca\xcd\x20\x2f\x21\x79\x39\xef\x45\x17\x15\x6c\x6f\x92\x12\xeb\x8d\x81\xdb\x6e\x4a\xe1\x9c\x6f\x73\x56\x8e\x79\x71\x5c\x25\x1d\xe7\x15\x93\xbc\xc8\x5c\xde\xe7\xa3\x8c\xeb\x04\xba\x36\xfb\x96\xa2\xf6\xba\xa4\x5b\xe6\x45\xe6\x6c\x3e\xdd\x78\xf6\x59\x5f\xf5\xa2\x61\x44\x8f\xff\x54\x44\x45\x52\xa9\x81\x29\x46\xf3\x29\xa5\xbd\xd5\xae\x8e\x2a\xfa\x0e\x76\x60\xa1\x17\x2c\x6e\x2c\x8f\xab\xea\x6c\x66\x18\xbe\x28\x42\x23\x4a\xf5\x63\x1c\xd6\x52\xf6\xfa\x4f\x51\x24\xc5\x86\xf8\xc8\x1d\xc5\xeb\x95\x1e\x04\x69\xd9\x11\x48\x8c\x7b\xe3\xd6\xdd\xa1\x0e\xa0\x2a\x96\xe7\x23\xdd\x53\x65\xa5\x7a\x9c\x4c\x87\x51\x2d\x91\x32\x79\xf5\x0a\xa5\x2e\x41\x4b\x12\x5d\x8b\x47\xd6\xe8\xb9\xf1\x26\xa6\xd7\x02\x80\xe5\x21\x6a\xbf\x21\x0e\xd9\xb4\x16\xd4\xfd\x3f\x26\x9a\x2c\x2a\x82\xdc\x63\x13\x7d\xcc\xd0\xf4\xbc\x05\x25\x0a\x31\xfd\xdf\xb8\x16\x16\x66\x9a\x2b\x2e\xb7\x19\x0e\x55\x94\xeb\xdf\x52\xa8\xc1\xb7\x82\x6e\x6e\x75\xfc\x9b\xa4\x40\x43\xdb\x53\x24\x3c\x16\xfc\x53\x2d\x5f\x32\xfb\xb9\x67\x54\x3f\xb6\x9d\xae\x4c\x8f\x73\x20\x3d\x7a\xe2\x03\xe5\xcf\xf7\x9e\x6e\x18\x1c\x0f\x96\x9a\xfd\x34\x2b\x3a\x25\x54\x07\xc5\xab\x84\x9e\x55\x14\xe9\x1a\x5e\x31\xed\x94\xc2\x1e\x24\x69\x61\xdb\x29\xba\x7f\x02\x11\xb8\x8c\x4a\x3b\xdf\x28\x37\xdf\x9c\x22\xad\x3d\x7b\x38\x8f\xbe\x42\xaf\x18\x87\xe7\x79\x1a\x63\xec\x11\xa4\xd0\x38\xbf\x7e\x17\x2f\x4d\x54\xda\x02\x10\xe5\x5f\xab\x1d\xa1\xef\xc4\xe6\x60\xce\xb7\xda\x42\xeb\xe1\x27\xa3\xb1\x8e\x4e\x2a\xa8\x21\x56\x04\xc4\x50\xa0\x93\x06\xfc\x34\xaa\x00\x37\x14\x6a\xa8\x4a\x6a\xe5\x28\x44\x1b\xf2\xd2\x48\x43\x1f\xd9\x08\x51\x0c\x26\x9e\xd0\x16\x8a\xcb\xe9\x12\x10\xf1\x08\x53\xbf\x1d\x85\xdf\x70\x5e\x05\x0e\xa7\x6b\xa2\xf5\xf9\xe6\x62\x6c\x07\xa2\x73\x28\x56\x16\xf4\xbc\x7c\x33\x71\xee\xee\xd9\xd3\xec\xa6\x9d\xb2\x0a\x67\xa5\xc5\x82\x3a\xc0\x2b\x34\x22\x7c\xed\x4f\x39\x3a\x5a\x39\x30\xf5\xf2\xf8\x41\x2a\x3f\x92\x12\xc9\x4a\xfe\x12\x76\x04\x2f\x44\xbc\x3b\x08\x11\xd7\x68\x2b\x50\x2e\x28\x8c\x01\xef\xcf\x18\x68\x48\xba\xf1\xf4\x9f\xfe\xca\x74\x75\xf0\xb1\x29\x96\x2a\x53\x35\xd6\x7c\xcf\xe0\xab\xcf\x68\x1e\xdb\xe3\x6b\x3b\xc6\xb0\xd4\x65\x61\xb3\xfc\x51\xda\x5e\x84\xff\x40\xb3\xd6\x63\xf9\xab\x99\x88\xbd\xe6\x8f\x79\xe3\x10\x20\x92\x2f\x34\x7d\xed\x89\x35\xda\x1b\x7d\x25\xb1\xda\x44\xd4\x49\x14\x80\x05\xa1\x22\xf7\xbd\x91\x12\x01\x3d\x4e\xa7\x05\x3a\x83\x17\x51\x17\xc6\xe4\x9f\x6e\xd5\x54\x8a\xf2\x8e\xc9\xa4\x23\xaa\xa0\x27\xb3\x1e\x7a\x52\xc7\x28\xe9\x64\xe9\x4a\x77\x2a\xc0\xf6\x2f\x8e\x54\x47\xe1\xa7\xc0\x43\x8a\xba\xe3\x33\x8a\x05\x3a\x18\xb8\xbc\x8a\x5a\x6d\x36\x85\x5f\x2f\x3a\xf2\xa1\xa0\xc8\x87\x8a\x3c\xfe\x23\xfc\xed\xcd\xf9\xe7\xf7\x7e\x8a\x36\x64\x9f\x3f\x2c\xcc\xf0\xe1\xfa\xf8\x9a\x22\x6a\x1e\xc3\xce\x87\x4e\xd5\xb1\x48\xab\xb9\x8f\x77\x8b\x47\x01\x7d\xf9\xfd\xc8\x27\xba\xbf\xf9\x58\xb5\xed\xb2\x17\x21\xb6\xee\x8f\xa9\x73\x8e\xaf\xfd\x99\x32\xc1\x78\x8f\xe0\xab\xeb\x9b\x5b\xa8\x18\xca\xde\x48\x03\x0e\x2c\xda\xd5\x91\x7a\x79\x67\x69\xaa\x0a\x9b\x9b\x86\x08\x45\xb4\x6b\x94\x7c\x32\x4d\x05\x53\x04\x31\xc0\x65\x6a\x80\x09\xcb\x87\x16\x36\xce\xda\x87\x90\x8c\xfb\x4c\xb0\x7a\x77\x58\x87\x37\x35\x10\x2b\x1d\xd8\xbc\x70\x1d\x7a\x4f\xac\xc1\x18\x79\x2c\x69\xfb\x74\x14\x26\xfb\xf9\x89\x1a\xe2\x67\x9b\xb1\x25\x2b\xa8\x29\xbd\x5a\x1b\xa2\x33\xf9\x0d\x9e\x58\xac\x0f\x51\xd7\x6b\x97\x36\x9d\xaa\x22\xdd\x55\xc5\xa1\xbb\x2a\x7e\x6c\x9b\xd8\x24\x5e\xd0\xc8\x9b\x73\x79\x4d\xfd\x0b\x51\x40\x4e\xf4\x57\x87\x69\xd1\xb7\x05\xd5\xdb\xc6\xe1\x68\xca\xc0\xfd\x41\x4c\xa3\x9e\xcd\x4c\x8c\x5a\xf6\x98\x38\x01\xa6\xcb\xc7\x91\xb2\xed\x57\xb8\xf1\xb6\x3b\xd8\x5e\xa5\xbe\x0c\xb6\xff\xbf\xa6\xe0\x96\xaf\x27\xd8\x2d\x44\x2f\xef\xa4\xe3\x1e\xf6\x1e\x80\xbc\x67\x8f\xb7\xa8\x79\x44\x30\x28\xf3\xb3\xfb\x1e\x0e\x20\x9e\x0b\xea\x20\x9e\xc7\x01\x8f\x6e\xdb\x6d\xbc\x69\x3c\xdf\x37\x69\x01\xb0\xe4\x2b\x7e\x04\x57\x42\x78\xce\x7b\x7e\x4a\xb0\x6e\x3a\x89\x1a\x92\xe0\x4b\x68\x35\x60\x87\x7b\xab\x2e\x57\xb3\x3d\x41\xfc\x89\x82\x58\xf5\x60\xa2\xeb\x15\x7a\x34\x36\xe9\xb9\xc4\xda\x8c\x73\x51\x14\xb5\xfe\x86\xde\x35\x5f\xd7\x68\x98\xcf\x35\x73\x37\x18\xc6\xec\x7d\xab\x8f\x75\xa6\xbd\xaa\xe3\x29\x48\xcc\xb7\x4d\x96\xd9\x38\xa7\x3a\x0e\x4e\xca\x93\xf4\x2e\x30\x5a\x6b\x63\x6a\xb9\x58\x31\xa8\x1d\xdf\x7b\xa0\x7c\x41\x3f\x5d\x31\x19\xf6\x32\x0d\x69\xc3\xfe\xf3\x81\x2e\x82\x5f\x89\xd4\x41\x6f\x5c\xcc\xb6\x64\x0c\x75\x8e\x02\xbe\xea\x92\x76\x7f\x3b\x33\xf1\xdb\xbf\x38\xdb\x34\xc3\xea\x3c\xb6\x64\x06\x44\x74\xe4\xf5\xcb\x0f\x26\x49\x0d\xaa\x33\x8c\x43\x35\xec\x71\x77\x34\x33\xfd\xce\x68\xa3\xa2\xc6\xce\x66\x39\xdc\xd6\x50\x42\xca\xd5\x42\x97\x8e\x77\xe3\x4b\xcf\xf9\x3a\x55\xc3\x9b\x77\x42\x51\x93\x39\xac\x44\xa7\x45\x78\xf7\x53\xa5\xfd\xf3\x73\xad\x8d\xfe\x4e\xc4\x24\xe6\x63\xcf\x1d\x12\xf5\x2f\xad\x7a\x01\x30\x25\x53\x6f\x51\x88\x7c\xb3\xce\x6d\xb2\x97\x99\x65\xbb\x6a\x32\xe4\xc3\x9c\x0e\x45\x21\x1d\xba\x3e\xf1\xa1\xdd\x73\xcd\x41\x9a\xb8\x22\xf5\xa7\x97\xd4\xbc\x1a\x5e\xd7\xf5\x84\x27\x55\xb7\x33\x53\xf0\x5c\xc6\x84\x38\xa7\xa8\xce\xe7\xd4\xa6\xd9\xb3\x49\xb5\x45\x58\xd2\x04\xc0\x7f\x66\x12\x80\xb2\xf2\x95\x9c\xe7\xf4\x68\x23\xab\x6c\x76\x5f\x93\xdb\x00\xa2\x18\xa9\xb6\x97\x73\x13\x67\xe9\x2f\x50\xe1\xfd\xd9\xee\x67\x1a\x8a\xc8\x85\x9a\x08\x5f\xab\x06\x4b\xc7\x25\x87\x4c\x92\x62\xc1\xe8\xca\x93\x97\x1d\xf2\xca\xbf\xc7\x94\xe7\x4e\xcf\xc4\x71\x3a\x14\x5b\x36\xf6\xfe\x50\x86\x25\x93\xc5\x52\xa8\x85\xe2\x55\x00\xba\x0c\x50\x1e\x5f\x8f\x42\x54\xb9\x9c\xc6\xe5\x40\xac\x21\x24\x5c\x0e\x8d\x8f\x53\x1b\xc1\x76\x2f\x2c\xcc\x54\x93\x66\x4a\xe5\x7b\xef\x2a\xb5\xb7\x1f\x47\x8a\xdc\xf6\xb7\xbe\x1a\xd5\xb5\xb1\x59\xe5\xb7\x87\xed\x0a\x98\x3c\xbe\xf6\x9b\x03\xc0\x57\xa4\xbf\x33\xae\x25\x87\x73\x76\xeb\x9a\x52\xa7\x58\xa7\xad\x1e\x8b\xe2\x1e\xef\x98\xd2\x8e\x0b\xfe\xd4\xa8\x0f\x80\xe3\xa9\xf9\x75\x9d\xb4\x9a\xa9\x0b\xf3\xa1\x9f\xbc\x3b\xe0\x17\x6b\x38\x92\xf6\xe0\x30\xcd\xcb\x4c\x20\xa4\x78\x79\x27\x46\xea\x4d\x4e\xf6\xa2\xe6\xe6\x9a\x54\xb2\x6a\xaf\x36\xc8\xc0\x96\xcb\xd6\xd8\xb5\xa5\x86\xad\xce\xc5\x72\x60\x12\x57\x98\xcc\x19\x56\x29\x18\x53\xf1\x14\xe1\xa2\x10\x87\x7f\xac\x00\x05\xa6\x9b\x0e\x0b\xdb\x45\xc6\xe6\x37\x31\x85\x5e\x88\x02\x56\xf8\x6a\xa4\x3a\xbe\x57\xd5\xd2\x01\x1b\xcc\x82\xac\x8e\xe9\x7b\x6f\x14\x1c\x85\xef\x29\x2f\x1c\x68\x9b\x68\x40\x95\x76\xd7\x98\x18\x8a\xdd\x73\xcd\x2f\x97\x86\x38\x8a\xa1\xfa\x0f\x46\x19\x5f\x8f\x9e\x1a\x9f\x68\xbb\x76\x35\x77\xcf\x3d\x52\xbd\x62\xd4\x25\xb7\xb4\x82\x10\x35\x9c\x48\xbd\xf0\x9c\x9f\xe4\x53\x60\xfe\x20\x24\xdc\xde\x0a\xb2\x9f\xbf\x7a\x9b\x73\xac\x31\xdf\x1d\x4c\x2a\xb0\x70\x71\xcc\xdd\x1a\x85\xf6\xc5\x43\xad\xb1\x84\xb9\xe6\x17\xf5\x6c\x52\x3a\xae\xeb\x61\x0e\xb0\x7d\x34\xdf\xf8\x3a\x48\x95\xf0\xd9\x8c\x32\x23\xc8\x45\xbd\x16\x29\xf9\xd3\xd7\xea\xb6\x53\x53\x14\x76\x30\xf4\xd1\x17\x6a\xc9\x67\x15\x13\xed\xac\x3a\xcb\x3a\xfd\x70\x76\xeb\x7e\x82\xec\xa7\x52\x88\xed\xa6\x03\x97\x90\xb5\x6f\xa8\x8d\xb1\x3c\x0f\x22\x8f\x6b\x91\x3a\xf7\xde\x9e\xe8\xca\xee\x54\xa4\xcd\x54\xfc\xa1\x05\xf7\x4a\xa3\x25\x81\x89\x74\xaa\x7a\x69\x62\x29\x25\x93\xa6\x80\xd2\x30\x99\x22\xdc\x29\xc6\xea\x15\xec\xb2\xa8\x95\x5c\x1b\x2b\xf7\xc4\x43\x70\x4e\xa0\xdf\xfa\x54\x4b\x35\xe1\x51\xc6\xc0\x87\xb6\xaf\x05\xe2\xf0\x79\x65\x32\xd4\x8e\xd3\xce\x52\xbb\x24\x81\x12\xfa\xa5\xe2\xb5\xab\x40\x50\x77\xe9\xef\xa0\xc7\xb1\xa9\xf5\x48\xb0\x40\xf8\xdc\x14\x25\x2c\x08\xf7\x00\x9a\xf3\x99\x03\x4a\x0a\x35\xd8\xb9\x45\x57\x14\x1e\xd0\x87\x18\xf5\x8e\x12\xd3\x0a\xbc\xc3\xa2\x6f\x17\xe5\x4c\xc3\x34\xbb\x1d\xa9\xd6\xd2\x6d\x25\x1a\x68\x3a\xc5\x56\xda\xa2\x11\x7a\x1f\x1e\x85\x00\xf3\x3a\x96\xb9\x77\x68\xaa\x36\x17\x09\x16\x1b\x4a\x86\x53\x6f\xcc\xba\xe9\x6f\x12\x97\xb3\x6a\x30\xb6\x63\x88\xb7\x20\x6e\x63\xce\x9e\xe8\xe3\x4f\x86\x0f\x73\x84\x66\xef\xa7\x71\x37\xb0\x4b\xbc\x84\xd9\xfe\x19\xaf\x6d\x16\x64\xcb\x96\x5d\x4a\x36\x20\xbd\x29\x85\xa1\x02\xe7\x08\x25\x78\xa8\x29\xe0\x83\x27\x26\xaa\xc6\x2f\xcc\xee\x6b\xc6\x4e\x58\xf1\xda\xbb\x56\x64\x41\x27\x2c\xe7\x66\x45\x6a\x46\x61\x58\x8e\x23\xfb\xe1\x1b\xa5\x5d\xd4\xcb\xac\x85\xef\x13\xea\xc8\x1f\x44\x4a\xbe\xea\x83\x1a\xfa\xfc\x7c\x15\x01\x74\x4b\x27\x6f\x12\x35\x18\x26\x47\xf0\x4d\x9d\xb6\xf0\x8a\x8d\xe3\x46\x50\x8a\x05\x31\x54\xf2\xf7\x27\x95\xab\xaf\x8b\x89\x49\x4b\x2b\xc7\x23\x41\xf6\xec\xf1\x48\x90\x8d\x11\xcc\xce\x66\x6e\x56\x94\xda\x3b\x1a\x90\xd2\xbb\x0c\x1d\x4f\x8e\xe9\xa4\x66\x14\xa6\xfd\xaf\xcd\x4d\x35\x14\x07\x9b\x7e\x08\x36\xdb\x1b\x94\xe8\xa2\x6c\xb5\xb9\xf5\xa0\x78\x77\x68\x7b\x26\x67\xa8\xb0\xa4\x73\x5a\x6d\x4b\x51\xcf\xda\xe9\x6a\x57\x29\xc9\x7f\x4d\x99\x08\x7f\x4d\x01\x46\x4d\xb7\x9b\xd9\x9c\x39\x39\x42\xef\x09\x01\x0d\x73\x4a\xb0\x4c\xaf\xab\xe8\xa6\x57\x65\xb0\xe2\x8b\xc8\x5e\x78\x58\x08\x62\x8c\x17\xd0\x4b\x8b\x65\xd2\xad\x76\xc6\x85\x79\x1f\x26\x05\x4e\xd6\x39\x4a\xfd\x45\x4f\x21\xec\xbc\xb9\x59\xb4\xc5\xea\x16\xfa\xfb\xc0\x1c\xbf\x33\xd2\x96\x4e\x5f\x1d\x05\x08\x04\x94\xc5\x70\x74\x8f\xf5\xae\xbf\x3a\x31\x65\x3f\x4b\x0a\xbe\xb9\x35\x40\x8f\x08\x82\xa3\x7a\x8f\xd2\xe1\xaa\x33\x7c\xcf\xac\xa9\x62\x14\xb4\xb5\x99\xbc\x1c\x29\x60\xf2\x4f\x3c\x82\xa0\x63\xb2\x21\x41\x85\xc4\x06\x9b\x7e\x81\x27\xf5\x06\xc1\x77\x46\xdd\x89\x9c\xfe\x98\xf4\x8b\x1b\x4e\xd3\xa4\x14\x4c\x46\x80\x27\xdd\xc1\xcf\x13\x6a\x3b\xed\x84\x08\x66\xb4\x95\xb9\xe9\x0e\x5c\x01\xbd\x91\x79\xaf\x05\xfd\x53\xa5\x39\xfc\xd3\xf1\xba\xff\x30\xdf\x16\x62\x8c\x77\x69\x2a\xa2\xb4\x82\x16\x28\x3e\xc3\x2a\xa6\xfe\x3c\x0e\xf9\xcc\x0d\xfc\x2e\x29\x3b\x52\xdb\x06\x09\x8d\x36\xf9\x1b\xa6\x2e\xaf\xa6\xc1\xee\x39\x7f\x8c\x07\x58\xee\xdd\x48\xc1\x8d\x4f\x29\x51\x5f\x97\xf4\xd3\xbc\x8a\x88\xda\xb1\x6d\x50\xf9\x0a\x21\x27\x63\x3e\xf8\x46\x35\xad\x77\x7d\xee\xf9\x07\x1b\x28\x3f\xea\x4b\xf7\x22\x1f\x87\x90\xe4\x19\xda\x99\xf9\x7a\x6d\xb2\xd3\x4f\xec\x78\x36\xe0\xf7\x72\x43\x17\xc8\xe2\x5c\x95\x44\xc2\x80\x2e\xba\x86\x62\x20\x9f\x53\x71\xff\x39\xf5\xa8\x65\x06\x56\x1e\x6a\x83\x8f\xad\x85\x4a\xdf\xcf\x11\x87\x1a\x81\xe9\x1d\xda\x65\x64\x6d\x2a\xef\x4a\x0e\xda\xb1\x69\x6c\x9a\xd0\x1a\xab\x32\xd0\x76\xd9\x8b\xab\xe5\x5d\xfd\x05\x2e\xdf\xab\x41\x7f\x5d\x55\xd2\x27\xb1\xc6\xa4\xcf\xd1\xc9\xac\x28\x1d\x29\x36\xdd\x5e\xcf\xa6\xab\xf1\x20\xe8\xa4\x8b\x8b\x56\xf8\x74\x5c\x30\x56\xb2\x4e\x97\x15\x75\xf1\xf2\x48\xd5\xab\x8f\xd7\x39\xd2\x2e\xa6\x99\x38\xec\x63\xcf\x3d\xa5\x3a\x39\x75\x72\x47\xb3\xac\x86\xc9\xe1\x1d\xda\xed\xe7\x95\x2d\xd3\x79\x05\xa7\x1a\x98\xcc\xd9\x82\xa3\x6d\xe4\x5c\xcc\xad\xe1\x1b\x9f\x24\x0f\xe1\x43\x57\x8d\x83\x54\xc7\xe9\xa1\xa4\x6c\x3e\x66\x48\x95\x18\x72\x33\xc2\x64\xfe\x18\x91\x19\x0a\x12\x48\xad\x51\x3f\xe0\x0d\x00\x1d\x96\x63\xe3\x6a\xcb\x41\x0d\x09\x06\x5a\x68\x56\x35\xa0\xb9\xe5\xb1\x86\xb3\xfb\xbc\x39\xaa\xfe\xfe\x25\x9b\x91\x72\x2d\x0a\xad\x1f\x01\x4e\x85\xc0\xf3\x2a\x4a\x5e\x98\xe8\x4c\xf7\x95\x4a\x2e\xc5\x37\x52\xec\x43\xdd\xd6\xcf\xf3\x85\xf9\x70\x68\x85\x3a\xdb\x05\x2a\x93\xea\xf6\x39\xb6\x5d\xb8\xad\x8f\x79\x4e\x22\x59\x58\xa7\x1f\x83\xf7\xf0\x11\x7e\xb1\xc4\x89\x35\xfd\x89\x7e\x3a\xb4\x98\xbd\x9e\x52\x01\x5d\x37\x1c\x16\x77\x47\x63\x20\xb9\x3a\x81\xea\x3c\x35\x99\xee\x77\x41\x22\x8e\xaf\x6b\xf4\x8d\x9b\xc5\x8a\x13\x3e\x02\x82\x9e\x33\x8a\x26\x7c\x46\x35\xc8\x3a\x65\x0c\xec\x24\xde\xe5\xcf\xf0\x2c\x7c\xa3\xf8\x76\x83\xb4\xe0\x32\x9e\x48\x4a\x85\x1f\xf3\x04\xfd\x18\x84\x0f\x0f\xab\xfe\xe0\xe7\xf6\xce\x6c\x0d\xfd\x0b\xb0\x13\x11\x25\xdd\x1c\x29\x72\xe3\xf1\x51\x50\xa1\x7f\x5b\x37\x39\x1e\x62\x3c\x0a\xde\xff\xbf\xd0\xb8\xc9\x34\x59\x82\x4d\xdc\xac\x87\x2a\xd0\x5f\x14\x87\xbf\x30\xd7\x4e\xa8\xee\x4f\xbf\xc8\x1f\x0d\x01\xde\xcf\xad\x29\xf0\xc1\x2d\x2a\x9a\x79\xbb\x80\x40\xd0\xfe\x3b\x6b\x41\x74\x5f\x58\x01\xd4\x9d\xfe\x6f\xd8\x4d\x13\xc7\xf5\x09\x65\x5d\xc1\xbc\x1f\xfe\xc3\x0a\x11\xb5\xf3\x17\x69\x7b\x86\x45\xcd\x13\x6b\x8d\x5d\xbb\x3c\x29\xe1\x19\x25\x4e\x53\xb8\x7c\xd1\x74\x0a\x97\x26\x5b\x54\xbf\xfb\x52\x34\x56\x4a\x50\x92\xe8\x08\xd9\x7c\xc1\x21\xd0\xd0\xbe\xa3\x86\xac\x6f\x4d\xb7\xca\xfe\xab\xff\xea\x85\x6f\xfd\x0b\xb9\xac\x52\x5c\xfe\xf9\xe8\x67\x9e\xf5\xa4\x21\x68\xc0\xae\xa4\x59\xc1\x5c\x4e\x3c\xd6\x0d\xe5\x63\x79\xa3\x0e\x93\xb7\x68\x0d\xc2\x0d\xe8\x1a\xdc\xa5\x38\x89\xaf\x55\x54\x9d\x5b\x3b\xc8\x1f\xc3\xf8\x22\xbb\x44\xf2\x8f\x1d\xf2\x31\x48\xfe\xe1\xbc\xf8\x88\x1e\x56\x44\x19\xab\xa5\x8b\xa6\xfd\x55\x8d\xd1\x3c\xa2\x40\x75\x5b\xd0\x4b\x41\x14\xf2\x96\xb6\xa2\xbe\x04\x6c\x86\xd0\xff\x29\x97\xc3\x97\x1c\x56\xda\xd8\x63\x62\x36\x97\x26\x02\x2b\xdf\x78\xf8\xff\x96\xca\x6e\x3c\x7a\xa0\xad\xe9\xec\x22\xad\x4b\x04\x06\xdb\x5a\xa1\x48\xb5\xad\xc6\x6d\xa8\x69\x92\x82\xac\x6b\xb1\xe6\x25\xb4\x08\x1f\x9a\xc4\xca\x54\xfb\xca\x52\x92\xae\x50\xd1\x01\x75\xf6\xdf\xc3\x16\xcb\x37\xaa\xec\x93\x1e\x74\x5d\x77\xa8\x0a\x1b\x67\xf7\xf1\x91\x77\x18\x23\xc7\x37\x13\x04\x8b\xfd\x33\x4d\x97\x65\x36\xb6\xcb\x44\x09\xf7\xc7\xf3\x4f\x29\xe7\x13\x9d\xd7\x80\x8c\xac\x42\xeb\xac\x30\x4b\x92\x83\x61\x8a\x1e\xa7\x8d\x99\xaf\x27\x98\x0f\xd5\x40\x55\x11\x62\xe2\xf2\x22\x23\xd4\x56\x23\xa0\xc4\x10\xab\x88\xe6\x45\xd8\xf0\xb2\xb4\x6d\x41\xc7\x46\x75\x03\x60\x66\x6f\x2d\xe5\xfd\x76\x8f\xaa\xe4\x62\x05\xfe\x4f\x4a\x03\xe9\x8a\x6a\x5c\x6f\x6e\xa9\xf6\x17\x42\x11\x4c\x5a\xe6\x35\x22\xb6\x7c\x43\x97\x6b\xd3\xb8\x9b\x13\x90\xbe\xe1\xbd\x72\x38\xde\x17\x7f\xa1\x9a\x78\xa4\x9f\x16\x36\xe6\x18\xc2\x93\x0d\x7d\x18\x7f\x76\x2c\x70\x4b\x5e\x72\xd3\xf4\x23\xb1\xbc\x51\x06\xf1\x88\x5a\x9f\xba\xb2\xf2\x2a\xb3\x71\x27\x5e\xe2\xec\x3e\xe0\x8d\x5d\xc7\x99\x44\x01\xc0\x1f\x51\x48\xba\x47\xd6\x9e\x54\x32\x21\x71\xe9\x09\x35\x38\xf6\x8f\xaa\x10\xe0\xa8\x4f\x2e\x72\x82\x46\x7a\x5d\x36\x96\xdf\x42\xf5\x83\x1c\x81\xbe\xb0\xfe\xf8\x5a\x00\x66\x1e\xab\x33\xbb\xca\xe3\x32\xe3\x9e\xbf\xb0\x02\x1b\x81\x21\x38\xc1\x7e\x98\x9b\x6b\x0e\x4b\x09\x01\xc5\x4f\x45\x9b\xab\x28\xe0\x46\x3f\x8d\x5d\xd7\xac\x62\x9a\x88\x4b\x55\xa0\x66\x40\x76\x82\xb3\x15\x55\x82\x49\x56\xcb\x29\xd5\x19\xe6\xa6\xad\x54\x2f\x35\x29\x47\xcb\x74\xd8\x15\x5b\xfd\x8c\xdd\x01\xd5\xa6\xe0\x62\x67\x3d\x5c\xa6\xed\xb2\xa2\x5f\x3d\x54\xc3\x6b\x2b\xdd\x55\xb9\xf0\x11\x1d\xee\x5d\xf1\x05\xa4\x76\xe6\xda\x12\x42\x2a\xb7\x49\xd9\x31\x4f\x6a\x95\xad\xc2\x74\x5d\x39\xa0\x77\xc7\xee\x6a\xca\xab\x44\x2b\xd8\xd9\x83\x36\xeb\x10\x2e\xae\x11\x50\xfa\x5f\xa7\x87\xe1\xeb\x91\x52\x73\x8c\xab\xf5\x39\x00\xa0\x83\xd5\x39\x68\xfc\x44\xa9\x43\xb5\x60\xcd\x92\xcd\xb6\xab\x3c\x93\x3d\x2f\x71\x90\xfe\xe6\xb8\xd1\x11\x02\x3b\xcd\xf5\xc2\xf4\x39\x12\x8d\x43\x1e\xe7\x43\x05\x5f\x39\x7c\xde\x56\x80\x9e\x22\xab\x62\x62\x38\x2f\x4a\xb8\xac\xaa\xbf\x27\x34\xd9\xe8\xeb\xaa\x20\xfd\xb6\x72\x6a\xd0\x89\x5b\xe6\xd8\xdc\x01\x41\xe4\xff\x8c\x1f\xe1\x49\x45\xc1\x59\xe4\xa2\xf2\x76\xdb\xd2\xda\xb8\xf8\x3e\xdb\x2c\x93\x4e\xb5\x27\xba\x44\xb4\xc8\x91\x21\x1d\x1b\x29\xe1\x91\xf3\xaa\x85\x7e\x2b\x0a\x82\x1c\x2e\xe9\x8a\x76\x22\xbd\x24\xc0\xc7\xb0\xd9\xf1\xf5\xc6\x7a\xfa\xc2\xcc\xde\xe6\x4e\x8a\x51\xbd\xc8\xa9\x0e\x25\x94\x48\xef\x65\xc5\x37\x5d\x8c\xd3\x14\x18\x02\x6f\x54\x83\x92\x86\xd8\x8f\x86\x57\xf3\x86\x2e\x57\xb6\x3b\xf4\x55\x9e\xa6\x1c\xec\x9d\xe8\x13\x18\xfb\x0b\x1b\x9f\x71\x67\x73\xff\xcc\x3c\x34\x5a\xb1\x53\xde\xd7\x0e\xc6\x5b\x49\x59\xd5\x67\x9b\xb3\xfb\x82\x69\xe1\xfe\x19\x0e\x56\x1f\x5a\x0b\xc7\xcb\x26\xc8\x10\x7b\xd9\x96\x2f\x3d\xc7\x35\x0d\x04\x35\x38\x07\x3f\x8a\x54\x4d\xe9\xb0\x0e\x31\x2e\x8c\x14\x57\xff\x83\x48\xeb\xf0\x6c\x04\x02\xcf\x2f\xcc\x37\x9f\xcd\x11\xce\xe1\xa7\x7d\xb2\xa5\x4c\xe7\x60\x3f\x22\x89\x2d\x4d\x11\x99\xd9\x84\x13\x02\x30\x65\xcb\x84\x28\x47\xb5\xa9\x99\xbc\x6f\xf2\x07\x67\xe9\x4f\x28\x27\xdb\xc2\xb8\x18\xd3\x41\x8b\xf7\x89\x0b\x45\x38\xee\xcb\xa4\x4b\x56\x05\x8d\xd0\xef\x86\x2d\x1e\x5f\xd7\x98\xe8\xcc\x37\x87\xb6\x10\xb3\x67\x9c\xac\xac\x97\xcd\x37\x8a\x92\x4f\x3c\xa1\x2a\x98\xf0\x2d\x9a\x2b\x4a\x45\xf0\x8a\xc7\x25\x8a\x9d\x15\x98\x4e\x78\x95\xdb\x50\xdd\x47\xdf\x82\x4d\xdc\x44\x60\x5a\x09\xb1\x9b\xbc\x40\xc1\x1a\xb3\xf0\xac\x9a\xf7\x67\x35\xe6\xf8\x37\x15\x07\x21\x4e\xcb\xa4\x87\x10\x82\x8b\x59\x8a\x46\xae\x43\x88\x97\xca\x2e\x22\x60\xac\xe9\x37\x54\x11\xfd\x8d\x31\x8f\xd0\x32\xcb\xb7\x52\xe4\x88\xc6\xc1\x09\x54\x94\x01\xeb\x84\x0f\x34\x8a\x8c\x37\xb0\xb8\x00\x7a\xe5\xf7\x2f\x10\x9c\x86\x77\x58\xff\x23\x55\x8a\xcc\x8b\x32\xe3\x87\x60\xd9\x04\xfa\x87\x22\xa1\xb0\xf1\xf0\xdb\x3f\xd3\x5c\x1a\x87\x14\xde\xc7\xb3\x20\x0e\x67\xd9\x36\x7c\xe5\x49\x85\x4a\x6f\x97\x59\x9b\x6b\xaa\x78\xea\xfb\x91\x3a\xd3\x80\x15\xc2\xf9\x70\xcf\x1f\x39\xb9\x89\x07\x4c\x9d\xe2\xfe\xac\x1a\x9f\x13\x4a\xdd\xbd\xc8\x5c\xbb\x4c\xb8\x95\xee\x7d\x51\xaa\x29\xc3\x37\x5a\x9b\xe1\x33\x1d\x48\x68\x21\x98\xda\x4c\x6c\x4e\xbe\xf6\x82\xc0\x3d\x93\x75\x6d\x42\x94\x43\x86\xea\xd2\x18\xd3\x51\xb7\xce\xfe\x8f\xa2\x9a\x12\x1a\x08\xdb\x41\x87\x42\x5c\xc7\x1e\x8a\x18\x89\x9f\x28\x99\xb1\xa2\xef\x12\x1a\x42\xda\x31\xe4\xbf\x57\x4f\xe1\xd1\x95\xbb\xe5\x0d\x1e\x57\x73\xbd\xc8\xdc\xb2\x13\x95\x43\x44\x33\xa8\x83\xf1\x75\x0d\xf4\x0e\x4e\x0a\x1c\xa9\x88\xc0\x25\x3d\xa3\x48\x5f\x6e\x5c\x7e\x9f\x6d\x0e\x33\xd7\xb1\xfc\xa6\x34\xda\x90\x7d\xd3\x23\x45\xbb\x79\xbb\xae\x23\xd5\x29\xe3\x61\xe6\xd8\x92\xd7\x7b\x1d\xfb\x00\xfa\x52\xa4\x4d\x65\xd8\xea\x58\x09\x34\x9f\x56\xf2\x57\xa7\x7d\x71\x72\xa5\xef\x3a\x7d\x0a\xf3\xc6\x24\x77\x7c\x74\x14\x30\xed\xbc\x11\xe3\xe5\x8c\xb3\xe5\x6d\x9e\x7f\x0a\x67\xbd\x10\x0d\x54\x03\x72\xeb\x9a\x92\x65\xbc\x47\x9b\x28\x42\xcd\xef\x6a\xa8\x4e\xa4\x48\xec\x67\xa8\x72\x82\x9d\xe0\xd5\x48\xbb\x80\xfe\x04\x49\x1e\xa2\xda\xed\x2d\x25\x04\x73\x22\x0a\x9a\xf4\xc7\x34\x36\x64\x53\x8b\x0a\xb9\xd8\x99\x6e\x40\xe9\x12\x09\xfd\x69\x2a\xa9\x4a\xe8\x48\x6f\xd2\xdb\xcb\x55\xbb\x0f\x3e\xff\x7d\x1c\x2d\xe2\x50\x47\xeb\x1e\x61\xe5\x26\xe2\xd8\x78\x2a\xf6\x6e\xe1\xde\xbc\x8c\xa2\xb4\x98\xb0\x86\x90\xeb\x2a\xcd\x45\xb4\x1e\xaf\x7a\x05\x2a\xbb\x6c\x93\xbe\xa1\xae\x05\xc6\x50\xd4\x18\x95\x84\xfa\x09\x85\x57\xbb\x5b\x67\x5d\x36\xcc\x6c\x0f\xc2\x5e\xfb\x67\x3c\xed\x25\x44\xc3\x5a\x9e\xed\x73\x9c\xea\x7b\x02\x76\x60\x74\x1e\xab\xf3\x81\x1e\x78\x69\x76\xc1\x28\xaa\x3a\xea\xf9\xe8\x13\x8a\x38\x57\x2d\xee\xe9\x50\x71\x5d\x57\x42\x64\xa8\xc6\xa1\xb1\x7b\x9c\xde\x15\x5f\xd7\x40\xd2\x9a\xe9\xe2\xa2\xf5\x70\x22\xcc\xee\x2b\x4a\x1e\xf1\x8a\x37\x24\xcb\xcb\xa1\xcd\xdc\x60\x98\xe6\xf2\xaf\x51\xe1\xba\x8e\x37\xc8\x37\xe3\x26\xe0\xcb\xb6\x1a\x28\x14\xfa\x50\x64\xba\x8b\x59\x85\x84\x17\x4e\x87\x08\x31\x5e\x53\xf9\x46\x3b\x2d\x8a\x98\x69\x8f\x98\xbf\x5f\x57\xc6\xc6\x1c\xda\x4b\x46\xfc\xb4\xff\x58\xd7\xe5\x9d\xb4\x24\x25\x5f\x8a\xbe\x30\x8f\x8e\x28\xb2\x1f\x10\xb4\x52\x8e\x78\x42\x35\x0d\x06\x65\xc7\xc5\x0c\xd0\xd5\x96\x05\xf8\x59\x6c\xf7\x8d\x30\xf5\xaa\x42\x66\x76\xed\xb2\x8d\xd3\xe1\xc0\x26\x45\x3e\xad\xa4\x72\x2f\xa9\x82\xe4\x45\x94\xe2\xd0\x42\x7c\x35\x52\x6e\x47\xf5\xea\x36\x65\x96\x78\x41\x0f\xac\x98\xd7\x94\x75\xfc\x6b\x13\x99\xdc\xce\x66\xd7\xb8\x78\x95\x46\x4b\xba\x33\x1a\xb4\x18\x1c\x4b\xbf\x5f\xd3\x8e\x06\x87\x9d\xaa\x6b\x2e\x1f\x4c\x85\x0e\xd7\x6d\x3c\xa9\x98\xcf\x57\x7f\x05\x07\xc4\xb8\xc7\x4f\xa7\x6f\x11\x8f\x08\x57\x48\xcd\xd8\x3e\x95\x2b\xc4\x98\x74\x32\x48\x6a\x0e\x4d\x4f\xf0\x41\x58\xaa\xa7\xb1\x25\xf2\x8d\x12\x99\x8a\xcb\x36\x09\x71\xf3\x64\x02\x30\xed\xb7\xc3\x79\xf6\xdf\xb2\x00\xb2\x04\x6f\x1b\xf1\x81\x7b\xf6\x34\xdb\xca\x0e\xe0\xbc\x36\x84\x3a\xef\xbb\x01\xb1\xed\xf1\xf9\xeb\x25\x7c\x82\x9c\xcf\x58\x2d\x7e\x60\x93\x27\x54\xc4\x00\x04\x00\x9e\x6a\x9a\x0e\x63\x3c\xc8\x3d\x8a\xba\x81\x21\x00\x1d\x06\x47\xe2\xef\xaa\xbc\x69\x7a\x4d\x79\x5e\x1d\xd6\x0c\xf4\xab\x63\xbd\xb0\x48\x77\xc9\xa8\xcc\x87\x21\x67\x37\x70\x94\xe9\x36\xe3\xe4\xf0\x7a\xbf\x5e\x73\x86\xeb\xae\x48\xf7\xae\x47\xca\x9d\xf3\xe3\x3a\xd6\x64\x27\x5d\xb6\x19\x0a\x55\x6c\x83\x1d\x85\xe5\x70\x73\xa4\x49\x16\xae\x43\xd5\x8b\x85\x19\x56\xa1\xc4\x66\x88\x64\x01\x96\xff\x7c\x4d\x4f\xc3\xff\x26\x7a\x5c\x09\xc0\x2f\xd9\xec\xd1\x50\x35\xbd\xa2\xac\xb4\xae\x60\x73\xc1\xda\xb9\x1a\x05\x20\xe7\xab\x38\x44\x44\x01\x5d\x95\x82\x79\x7b\xf0\xce\xda\xd5\x4b\xc2\x8b\xf9\x67\x91\x42\x8d\xdf\xa6\xb9\xe9\x09\xa1\x0b\xa2\x1f\x0a\x40\x13\xe6\xef\x7f\x37\xa9\x0d\x34\xdb\x1c\xa4\x99\xdd\xa2\x64\x35\x1a\x78\x7d\xe2\xed\x17\x34\x61\xbe\xb6\x83\x26\x02\x1a\x21\x67\x47\x41\x3e\xec\x88\x4a\x8e\x67\x7e\xf1\x97\xa9\xab\x8c\x64\xec\x71\x25\xb1\xcc\x53\x54\xbb\xfc\xa0\xb4\xde\x58\x53\x42\xd0\xa9\xc9\xba\x8f\xd2\x2b\x47\x18\x71\x3d\x52\x32\x08\x9c\xaa\xe1\x66\x9a\x65\xa1\xb1\x41\xdd\x1b\x53\xf8\x53\x92\x15\x9b\x5b\x94\x61\xe1\x0c\xbf\xa5\xbb\xc1\x7f\x19\x29\xe1\xfb\x87\xd7\x42\xc9\xeb\x4f\x47\x21\xee\x3b\x3c\xd2\xe4\x14\x39\x3b\x7a\xfd\x34\x2f\xda\x65\x5e\x78\xed\x47\x34\x91\xd6\x95\x2a\xd4\x14\x2d\x21\xd4\x29\x3e\x50\x23\x34\x97\x7e\x66\xbb\x32\xfa\x41\xb4\x88\x69\x7c\x95\x56\x01\x1e\xe2\x3b\xca\x7c\x76\x4d\x9d\x10\xef\xec\xa0\x86\x05\x22\x84\x57\xa3\xcd\x9f\xe6\x59\x06\xeb\x28\x1a\xf6\xdf\xff\x07\xad\x70\xb2\x76\xfa\x26\xe9\x59\xa4\xd4\x2c\x44\x89\x21\x45\x3f\xef\x63\x4c\x28\x84\x69\xc0\xdd\xe0\x59\xa0\x09\x88\xc1\xb9\x8c\xa8\x84\xa5\xc1\xe9\xcc\xf1\xae\xbb\xbb\xc5\xda\x77\x1d\x2f\x47\x44\x45\xe8\x89\x71\xf2\x5c\xa1\xf4\x3c\xf8\x91\x79\xea\x1b\xcf\x2e\x81\xb4\xec\x50\x62\x4d\x5f\x2e\x41\xc3\x6a\x78\xc2\xf7\x49\xfa\x5e\xbe\xf6\x39\x4c\x91\x19\x97\x30\xde\x81\xc1\x2e\x91\xea\xc2\x5e\x52\x38\xa7\x15\x43\x07\x11\x82\x68\xe6\xab\x47\xa1\x4d\xf7\x6f\xa2\xc0\xfa\xbe\x30\x71\xb0\x1c\x38\xd0\x5c\x2e\xe3\xc4\x66\x86\x8d\x16\x1a\xde\x9c\x8e\x45\x30\x84\xc8\x2c\x7b\x6f\x92\x2e\xdb\x78\xba\x5a\x25\x18\x44\x10\x64\x30\xab\xdf\x51\x8d\x47\x40\xb8\xa5\x4f\x1d\xe6\xc9\xaf\xfe\xea\xaf\x36\x42\x0f\xee\x36\x4d\x0d\xbe\x56\xe7\x48\x9a\xf5\x4c\xe2\x0e\x55\x43\x85\xe5\x80\x6a\xf1\x1f\x6a\xd0\xc7\x1f\xd6\x61\x96\xf6\x56\x57\x24\xd1\x81\xcf\x21\x0d\x7e\x4d\x63\x63\xae\xe9\x97\x78\xc1\x07\x9d\x5d\x3b\x4c\x73\x57\x98\x6c\x75\x4a\xe5\xea\x08\x2f\x44\x94\x25\x20\x73\x7e\xa2\x38\xa5\x7d\x3b\x70\xf9\xb0\xef\x95\x15\x11\xda\x72\xe7\x95\x6f\xc6\xcb\xdc\x87\x56\xe1\x91\x28\xb8\x94\xa0\xd2\xa3\x65\x17\x5c\xb2\x98\x66\x83\xd0\x21\xc0\x96\xb0\x89\x66\x30\x5f\xaf\x3d\xa3\x28\xe0\x79\x99\x65\x08\x11\xf0\x1c\xd8\x82\x99\xeb\xcd\x37\xbe\x2f\x36\x46\x56\x09\xc5\xff\x4b\xaa\x7b\x75\xc9\xbf\xf4\x65\xdb\x33\xa8\xc0\x8c\xad\x03\xbe\x99\xe0\x07\xcc\xcd\xed\x45\x67\x24\xef\x04\x0c\x3c\x36\x9b\xc3\x78\x1a\xbe\xa9\x53\x91\x1e\x9a\xce\x92\xe9\xc9\x22\x41\xab\xfc\x77\x95\xfd\xe1\xef\x86\x44\xbf\x30\x85\x8d\x51\x4b\xf7\x3a\xbf\x0b\x33\x72\x5d\x97\x30\xfe\x3f\x7d\xa4\x46\x70\xab\x6d\xf2\x25\x5b\xb4\x49\x3d\x55\xbf\x32\x65\xe3\x39\xc6\x65\x6c\xc7\x76\xf0\xb0\x8e\x49\xab\x19\xce\xf2\x30\x48\xe9\xb4\xbe\x33\xe7\x5a\xd4\x5d\x44\xb9\xe5\x02\x8e\x4c\x0e\xa2\xa3\x20\x84\xbd\x89\xb6\x31\x31\xc7\xa2\xed\xdf\x47\xda\xa1\xee\xbb\xbd\x15\x8e\x9d\x45\x4b\x9d\x97\x30\xfa\xac\x28\x2a\xa8\x90\x9a\x6e\xcd\x62\xe6\x6c\x02\xe4\x5a\x5d\x96\xf1\xb4\x02\x6e\x76\xec\xb0\x20\x6e\xd4\x54\x10\x24\x82\x30\x2f\xc2\xdb\xa3\x1a\x20\x70\x4f\xe5\x0d\x69\xbc\x3a\x18\x3a\x83\xda\xba\x26\x7c\x88\x60\x49\x18\xcf\xcc\x75\xfa\x26\xeb\x6e\xab\xc6\x50\x68\x0b\x0d\xef\xac\x7c\x06\x5b\xbe\x44\xd0\xb4\x6c\x7d\x4b\xb0\xfa\xe3\x48\x66\xb6\xd2\x01\x2f\x46\x66\xd5\x4f\xc3\x20\x9e\x9e\xa8\x77\xce\xee\x6b\x66\x2e\xe5\x2d\x47\x44\x3c\xe8\x2f\x89\xba\x47\x18\xdc\xd8\x14\x36\xdb\x12\x04\x8c\x4e\x8c\xc9\x21\x2a\xc2\x3e\xaa\x78\x5e\xe4\xa9\x7a\x01\x28\x66\xfd\x85\xf2\x95\x58\xb1\xae\xd7\x2f\xc0\x53\x11\x4e\x14\xaa\xf6\xde\xe9\xd9\x97\x9b\x26\xdd\xc0\x67\xf7\x11\xbf\x38\x1f\x83\x4e\x60\x70\x04\x47\xf1\x89\xb1\x56\x62\x56\x6c\x0f\x3d\xc3\xb3\x5a\xad\x98\xb5\x06\x44\x63\x3b\x14\xbb\xff\x16\x7b\x28\x76\xf7\x57\x23\x25\x91\x7a\x3f\xd2\xf5\x53\xc6\xb8\x48\x0b\xb3\xa6\xb5\x5e\x98\x78\x69\x0b\x12\x7b\xcd\x3d\x43\x88\x0e\x03\x05\x6c\xb2\x1f\xe8\x94\x0c\x07\x0d\xe2\xc5\xc7\x5a\x1b\xdf\xdc\xce\x66\x3f\x1d\x72\x25\xc9\x4f\x29\xef\x7d\xc7\x24\x50\x9c\x8e\x77\xa3\x50\xa9\x1d\x0c\xca\x42\x52\x1b\x26\x04\x69\xa9\xf5\xcb\x2a\x97\x2f\x87\x2b\x44\x02\xda\xb3\x87\x5f\xc9\x15\xda\x39\xf8\x7a\x02\x40\x43\x2a\xe1\x79\x10\xb6\xc3\x24\x3d\xa5\x4a\xd7\xa7\x7c\x5f\xb1\x48\xed\x7f\x84\xcd\x26\xff\xea\xcb\xa5\x3b\x34\xa5\x0a\x47\xc7\x10\x66\x68\x15\x7a\x91\x2a\xfd\xa4\x22\xb6\x26\x10\x4d\x4d\x13\x13\x3f\xdc\x50\xdc\xec\x86\x72\xb3\x50\x66\x20\x54\x88\x50\xe9\xf4\x5e\xff\x01\x9a\x24\x8c\xb5\x88\x94\xb4\xcb\x7b\xe8\x65\x60\x49\xde\x47\x4c\xc5\x7f\x00\xb3\x04\x6b\xe2\x8a\x76\xff\x2d\xdb\xb9\xfd\x72\x69\x93\x02\xbc\x0e\x0e\x76\x55\x46\xb1\x9d\xc2\x4c\xc6\x30\x29\xb1\xc4\x0f\x6b\xc4\x33\x56\x5c\x52\x30\x0b\x01\x2b\xee\xa4\xc2\xec\x9c\x54\x06\x4a\x2b\x7d\x6b\x63\xcc\x11\x44\xa0\xbf\x31\xda\x78\xf2\xc9\x7c\x99\x44\xb6\xcd\x37\x17\xcb\xac\xe8\x0b\xdd\x4d\x68\x56\xa1\x7e\x7d\x5a\x81\x2d\x07\xa6\x90\x52\x23\xa6\xf5\x4d\x65\xc4\x7a\x73\x14\xde\x0f\xd1\xed\x86\x19\x0b\x49\xd2\xd8\x31\xb1\x90\x8e\x04\x21\x19\xd6\x68\x3d\x99\x4e\xe1\x96\x03\x8d\x15\x45\x8f\x57\x55\x73\xef\x55\xdd\x2c\xb4\xd5\x71\x0c\x2f\x69\xcf\xb3\xf2\x41\xf1\xe1\x48\x05\xc5\x1a\x66\xfa\xc7\x58\x37\xa2\xc0\xae\xec\xe8\x7a\x69\xe2\x0e\x49\xe3\x04\x4d\x9b\xdf\x89\x54\x37\xe7\x77\x54\xd5\x9f\x8a\xd0\xf9\x96\xea\xf7\x88\x18\x69\x35\xc9\x70\x0a\xfd\xd6\x08\x3b\x81\x07\x58\xce\x7b\x17\xab\xf3\xca\xc6\xe1\x6f\x6a\xa4\x04\xe7\x9b\x43\x33\xe4\x20\x19\x3f\x99\xc5\x0b\xf9\x46\x15\xb9\x7a\x69\xda\x95\xa3\x6d\xcf\x1e\x2f\x21\x32\x15\x0c\x50\xce\x4f\x24\x91\xfb\x67\x9a\xb1\xcd\xf3\x2d\xa1\x83\xc4\xb6\x2f\x42\xd9\x0e\xa4\x36\x66\x24\x79\xb5\x86\x5d\xbb\x78\xcc\x0e\x2b\xc0\x7b\x27\xed\x2c\x15\xc6\x71\x51\x1d\x05\x86\x9b\x4a\x36\xe4\xe6\x58\xe5\xe2\xa0\x8d\x35\xa3\x08\x6f\x45\xe8\x45\x81\x05\x92\xd8\xb2\xc8\x4c\xec\x0e\xc9\x0e\x22\x96\x30\xba\xc6\x1f\x36\xb1\xb6\xe9\x2c\x59\xc6\xe4\xf9\x12\x98\x0f\x27\x27\x8b\x3f\xd5\xb4\x2f\x09\x36\xec\x0d\x7b\x98\xb5\xc5\x99\x92\x82\x51\xfd\x50\x15\x0b\x72\x77\xb0\xe8\xab\x4e\xd9\xb7\x14\xf0\xe4\x5b\xd1\x86\xee\xe8\x81\x03\xcd\x2f\xce\x52\xc1\x1d\x29\xd3\x0d\x85\x81\xb9\xa4\xd2\x08\x2e\x5a\xe1\xcc\x38\x3e\x11\x75\x2e\xcc\x54\x31\x70\x91\x95\x9d\xa2\xf4\x51\x27\x3e\xf9\x31\xe2\x1e\xbe\x51\xf3\x38\x2b\xf3\xdc\x99\x04\x70\x6f\xb4\x66\xbf\x36\x26\xee\x10\x30\x86\x3f\xc5\x2b\x00\xc0\xe1\xe8\x86\x78\x1e\x76\x7d\x52\x42\x53\x6d\xf4\x4b\x75\x42\x7d\x79\x91\xb9\xce\x92\x45\xb7\x09\xdf\x0a\x1d\x70\xbe\xf6\x3a\x3a\xbd\xcc\x1c\xf2\x45\x46\x36\x5a\x1c\x85\xf2\xd8\x75\x05\xd8\x6f\xbb\x6a\x85\x6b\xfb\x9c\x4b\x63\xc3\xf8\xb4\x2e\xf8\xe6\xb6\x53\x56\x69\xc5\x96\x86\x57\x00\xb9\x4a\x85\x16\x71\x11\x51\x06\x7d\xa8\xba\x60\x77\xff\x1b\x2c\x00\xa9\xfb\xd5\x9c\x79\x9d\x34\x71\x79\x31\xe6\xf8\xcd\x95\x1e\xbe\x09\xf9\x56\x39\x8c\x5d\x27\x6c\x60\x0c\xed\xd1\xac\x94\x8b\x13\x8b\x7e\xff\xcc\x8b\xcd\x74\x25\x91\xcf\x08\xc4\x30\x4c\xc2\xda\xf1\x06\x3d\x8c\x0f\x62\x60\x2d\x61\x99\xcb\xd7\xad\x90\x9e\x1e\x14\xb6\x0b\xe3\x23\x15\xb5\xe1\x84\x42\x2e\x77\x62\x6b\x12\xd2\xc0\xf4\x39\x11\x96\x82\x80\x2f\x36\x26\x12\xbb\x76\xe1\x1b\x3a\xce\x32\xb0\x0c\x91\xff\x95\x28\xd4\x8c\xaf\x28\x5c\x61\x46\x25\x4e\xe5\x3d\xcc\x93\x9f\x6f\xa2\x1d\xba\x55\xd7\xeb\xd9\xcc\x76\x21\x9c\xe8\x2b\x00\x9e\x43\xfc\xf1\x48\xc9\x4a\x1d\x8b\x02\xf3\x10\x8e\x2f\x62\x9b\x14\x12\x9a\x93\xea\xaf\x33\x90\xca\xc4\x8f\xd1\xb3\x78\x91\xd7\xea\x25\x79\xbb\x91\xc0\xaa\x40\x01\x9a\x41\xc5\xe8\xd5\x32\x2d\x8d\x36\xc5\x31\x45\x2f\x51\xfe\x08\xda\x13\xec\xff\x8f\xda\x23\x02\x41\x2c\xd9\xad\x94\x56\xa0\xc8\x00\xae\x20\xea\xdd\x18\x3d\xc4\xa7\xdb\xd6\x94\xe0\xb7\x69\xc7\x76\x4b\xf5\x8d\x6a\xcf\xfa\x02\xf7\x57\x5e\xd6\x96\xce\x2c\xad\xce\x8a\x0b\xf4\xe7\x30\xbb\x5f\xaf\xc1\x06\xce\x8a\x73\xa9\xcc\x3f\x9c\x4d\xef\xd3\x60\xf3\xf5\xe8\xb1\xf0\x66\xd2\x95\x64\x5a\xd9\xef\x9e\xa2\x27\x47\x1a\xb3\xb5\x15\xa2\x59\xc8\xf8\xc8\x7f\x58\xab\x81\xe1\x0f\xcd\xc1\x52\x23\x20\x1a\x2d\x55\x45\x6f\xac\xd5\x68\xc5\x56\x69\x13\xd5\x73\xf6\xcf\xac\x53\x4f\x75\xfd\x78\xad\x7d\x0c\x75\x62\x38\x00\xc6\x9b\xba\x87\x63\x9c\x6f\x26\xc2\xad\x6a\x22\xc3\xf7\x59\x1b\x20\x2a\xff\xd0\x1a\xfd\x73\x33\x1c\xc6\xa6\xec\xfa\x9d\x0c\xdb\xdc\x11\x3a\xa3\xf8\x5a\x0d\x5b\xec\x16\x0b\xc5\xbf\xbd\xa4\x0c\x0d\x2e\x8d\xb4\x28\x65\xee\x7a\x09\xc5\x4d\x94\x85\x89\x1c\x30\x0d\xb8\x58\xb6\x56\x7b\x5a\x9d\x68\x47\xe8\x7a\xdf\x54\x89\x69\x99\x2c\xba\x83\xd5\xbb\x0d\xcd\x72\xf0\xa7\x05\xd5\x30\x29\x94\x37\xdb\xec\xa5\xca\x4a\x1e\x0d\x25\xbe\xae\x93\x9c\xce\xd3\x92\xe5\xb8\xa5\xe4\xa7\xd0\x26\x27\x6b\xd5\x48\x33\x9b\x0f\x49\x52\xdd\x2b\xc1\xbe\x4e\xbf\x85\xaf\xa3\x30\x72\x89\x4b\x2c\x4c\xe7\x91\x3f\xbd\x89\xc1\xf0\x32\x5f\xbe\xed\xfa\x01\x0d\x80\x17\xb6\xf3\x7a\x32\x27\x88\x6a\x80\xf5\xf7\xea\x28\x08\x32\xdd\x56\x52\xde\x1f\xd5\x95\x0d\xf2\xc2\x0c\x86\xbc\x73\x72\x3f\x8f\x3e\x22\xbd\xbd\x00\x9f\xe8\xa4\xd4\x9b\xcc\x1a\x4a\xc9\xf0\x12\x3d\x8e\x40\x9b\x27\xbb\x9f\xb3\xc4\x77\xcb\x51\x05\xf3\xef\x45\x09\xbe\x84\x59\x91\xaf\x90\x01\x55\x6c\x12\xda\x0f\x67\x7d\xbb\x80\x86\x05\xa7\xfa\x35\x94\x61\xfc\x71\xbf\x30\x23\x71\x29\x0d\x11\xa2\xb8\x6b\x4a\xb1\xef\x64\xad\x15\x79\x95\xc4\x10\xbe\x98\x37\x03\x71\x5b\x08\x48\x9c\x77\x15\x4c\x27\xef\xd8\x84\x45\xb5\xb8\x70\xaa\xdc\x8b\x2f\x2b\x1f\x87\xf7\xc6\xc4\xa8\x97\xca\xe1\x94\xe2\xa2\x41\x25\x07\xdb\x37\x37\x94\xb0\xf1\xde\xf7\x66\x5f\x79\xd9\x26\x35\xa3\xa2\xb0\x92\xd9\x8a\x5e\xa4\x8a\xcf\x8f\x45\xcd\x07\xc0\xc1\x17\x33\x93\x2c\x55\xa9\xce\x14\x9d\xf5\x58\x31\x10\x49\x43\x8d\xe7\x86\x06\x93\x6d\x6a\x4d\xc0\xf1\x9a\xbb\xe7\x9e\xa9\xa6\x91\x77\x9d\xf4\xa6\x2d\xd7\xd0\x28\xf3\x4e\xc3\x0b\x33\xfe\x66\x8c\xc0\x81\xac\x43\x62\x9c\x80\xc4\xf8\x90\x0e\x11\x55\x62\x99\xe5\x04\x86\xc5\x0d\xc7\x38\x15\x38\x21\x88\x39\x2f\x34\x73\xd6\x32\xc5\xe2\xb8\x1e\x05\x29\xc9\xb7\x54\x8c\xf3\xe8\x5a\xa8\x10\xbd\x15\x29\x9b\xc3\xab\x0a\x8d\xf5\x6d\x55\xb2\x7d\x13\xb5\x7f\x9c\x86\xaf\xa3\x65\x87\x2a\xd4\x65\xb5\x36\xbb\x66\x90\x34\x34\x2f\x47\xe7\xb7\x21\xb0\x30\x49\x52\x9a\x38\x5e\xd5\xa9\x5a\xa3\xa5\x33\x53\xd5\xf2\x80\x27\x97\x74\xec\x03\x58\xf0\x6e\x9d\xe4\x59\xbb\xcc\xac\x29\x3b\x99\xe9\xe0\x54\x20\x81\xdb\x75\x4d\x5b\xcc\x6c\xaf\x8c\x4d\x16\xd3\x7f\x0f\x2a\x21\xd5\x60\x8a\x4a\xc8\x0e\xd5\xc5\x37\x6d\x5b\xb8\x0e\x88\x9c\x80\x7a\x8d\xb8\x10\xc4\x77\x5a\x20\xc4\x66\x66\xe0\x3a\xd3\x2a\x88\x38\x89\x91\xf2\x25\x88\x39\xe9\xb8\x1c\xa5\xdd\x00\xe7\xcf\x6b\xa3\xc0\xde\xdd\xfb\x6b\xb4\x7a\x7c\x5d\xde\x27\x47\x67\xb4\x57\xc1\xbd\x3a\x89\x06\x76\x4f\xa7\xcf\x2b\xe2\xee\x5e\x8e\x33\x8f\x62\x77\x10\x3a\x85\x08\xba\xb9\x65\x71\x63\xf3\x53\x2e\x94\x33\x2e\xf8\x6e\x34\x29\x02\x6e\x57\xbf\xec\xa2\x96\x32\x3f\x1f\x05\x6d\xfe\x1f\x07\xd9\x98\x53\xcf\xd2\x4b\xa5\x95\xfc\x2b\xff\x78\x8d\x86\x02\x6f\xf8\xcd\x91\xda\xc1\xd7\x69\x62\xc2\x5d\xea\xb1\xd6\x93\x0a\xa4\x37\x00\x37\x4b\x4b\x14\x61\x40\xb1\xf5\x50\x27\x72\xfd\x2d\x0f\x9e\xf8\x7f\x51\x2d\xf0\x14\xda\xbe\x5d\xd9\x12\x04\xf0\xff\x04\x33\x40\x2c\x96\x35\x8e\x7f\x14\x80\x7c\xc7\xe9\x7d\x88\x81\xd3\xa4\xd2\xed\x7c\x73\xb1\x8a\x1a\xd8\x0b\x69\x4e\x00\x0b\xf7\x30\x54\x18\xf9\xcd\x4c\x9c\x12\x25\x82\x8d\xc2\x19\xb3\xcd\x03\x07\x58\xb6\xd9\x47\x98\x63\x01\xf2\xfc\xf3\x7b\x43\x13\xdb\x1b\x27\x9d\xd4\xea\x85\x6f\xaa\x0a\x2e\x75\xb4\xb1\xd0\xc4\x77\x3e\x78\xe5\x5f\xd4\x95\xda\x53\xa8\xa5\xe2\xa7\xde\xc4\xb7\x0a\x05\x2a\xe4\x0e\xab\x36\x7b\x98\x36\x38\xec\xcf\x6c\xbe\xab\xeb\x6d\x40\x66\xf0\xdc\xc3\xcd\xfd\x91\x36\x11\x84\xb1\x10\xba\x11\x3f\xc2\x36\x08\xae\xf1\x11\x4d\xee\x42\x13\x13\xb8\xb5\xc7\xa8\x17\x2d\x15\xc5\x1d\x2a\x04\xce\xec\x62\x19\xb3\x53\x12\xce\xba\x3b\xa3\x09\x6d\x01\x94\xf0\xa6\xc7\x9d\x5e\xec\xc1\x47\xf4\x9b\x78\x1d\x10\x31\x2f\xca\xbd\x7b\x4e\xdb\xf5\x8a\x94\xe7\x5f\xe2\x09\x11\x8c\x33\xfa\x5c\x6c\x1b\x43\xed\x6b\x1d\xbb\xbe\x88\x7a\x2b\x6b\x69\x56\xd1\x14\x6f\x5a\x0d\xe8\x56\xea\x36\x26\xb3\x5b\xab\x97\x84\x93\xff\x4d\x15\x9d\xbd\x19\x29\x67\xf4\xb3\x7a\x2d\xdc\x40\x3a\xcb\x37\x48\x3e\x04\xa0\x58\x93\xa7\x51\x35\x71\xd1\x66\x96\x11\xbc\x48\x5c\x61\x5e\x3a\xf6\xbb\x45\xc5\x78\xa2\x89\x35\xdb\x4c\xec\x4a\x27\x1d\x58\x91\x12\x01\x8e\xea\x9c\x56\xc0\x3c\xa7\xaa\x25\x9d\x7e\x9a\x5b\x42\x89\x21\x5e\xfa\x56\x68\x7a\xff\xc2\x79\x0c\x3e\xdf\xa8\x26\xf5\xb7\x22\xcf\x56\x70\xbd\x7e\x11\x54\x2a\x70\x1e\x1c\x56\x3a\x44\x87\xbd\x25\x4c\x66\xbb\x76\x30\x2c\xc4\x24\x80\xe5\x85\xa3\xd0\x5d\x3c\xa6\xf0\xd4\x45\x56\xe6\x12\x44\x08\x01\xfe\x95\x48\x19\x77\xbc\xa2\xbb\x0a\x54\x49\xa1\x2a\x0e\xe2\x9b\x4d\x2d\x9d\x59\x8d\x42\xa2\x7c\x8d\xa2\x72\x06\x07\xd7\x39\xce\x75\x4c\x1c\x8b\x62\x17\x26\xfc\xf4\x9a\xdf\x38\xff\x1d\x17\x28\xb1\xb6\x1f\x6d\x4d\x12\x66\xf6\x36\xe3\x14\x32\x11\x08\x76\x8f\x62\xd6\x33\x54\x50\xe9\x16\x4c\x03\xcb\xce\xa8\xca\x1a\x9d\xc1\x9f\x7f\xee\xd7\xe7\x9f\xfb\xdc\x1c\x19\x2c\x21\x82\xf8\xb6\x32\xd7\xe3\x98\x12\xf3\xba\x41\xcb\x50\x94\x12\x42\x93\x60\xba\xa5\xa4\x66\x6f\x61\x89\x60\xe1\xdf\x98\x08\x74\xe7\x9f\xdf\xdb\x1c\x66\xb6\x30\x07\xe9\xe5\x20\x18\x02\xde\x82\xaf\x27\x28\x74\xbb\xe7\x9a\x5d\x3b\x74\x1d\xbf\xb1\x63\xf9\xbd\xad\xfa\x36\x6f\x7b\x60\xfa\x97\x4b\x97\xc7\x1e\xda\x81\xa7\x00\xfb\x48\x94\x79\xc3\x3c\xb8\xe4\x4f\x0e\xaa\xb1\xae\xa4\xd9\x52\x23\x74\x8c\xde\xd4\x5c\xcb\x37\x27\x85\x49\x76\x11\xc8\xaf\xcc\x61\x1b\x0b\x08\xc1\x25\xcc\x1c\xbe\x51\x00\xff\xa4\x1c\xb4\x6d\x96\xa3\xb5\x81\x11\xbc\x49\xf3\x5c\xa4\x49\x02\x48\x30\x28\x0f\xad\xb8\x58\x5c\x34\x10\x42\x9f\x56\xe1\xf4\x69\x35\x2f\x87\x26\xcf\x2d\x72\x67\x9f\x6c\x04\x2b\x14\xed\xdd\x96\x26\xb9\x4d\x8a\xe9\xe0\x51\x7c\x4a\xab\x85\x9e\xa2\xc6\xc6\x3a\x95\xe5\xd7\x4f\x4f\x00\x29\xc6\xa2\xe7\xd8\xb1\x36\x34\x0e\x6e\x88\xf5\xf3\xf5\x44\xcf\xf1\x85\xf9\x66\x6e\x56\xa0\xfa\xe2\x39\x75\x81\x29\x32\xc9\xa9\xab\x62\x39\xd3\x59\x2a\x87\xf4\xa3\xa4\x21\xa3\x89\xb0\x75\x3c\x87\xbc\x5f\x26\xf8\x12\x3c\xc8\x09\xf5\x50\x27\xea\x5a\xe5\x69\x52\x98\xcc\xa5\x0a\xbe\x7e\x46\x13\x03\xcf\x28\x4c\x47\xee\x0c\x9d\xe9\x48\x28\x3f\x46\x39\x03\x67\xc7\x65\xa2\xa7\x48\xe5\x66\xe3\xd7\xbc\x30\xbb\xaf\xd9\x31\x25\xf9\x9c\xf8\x59\xbe\xc1\x3c\x75\xe3\x8f\xd9\xf7\x3c\xe9\x81\x20\x1f\x66\x1c\x52\xa4\x31\x49\xe1\x80\x1f\xc2\xde\xae\xfa\xd1\x28\x30\xbd\x37\x0a\xc0\xc9\xf7\x22\x5d\x9a\x4f\x0a\x97\x94\x16\xe4\x43\x96\x1e\xd7\xca\xaf\xe3\x26\x43\xfb\xd9\x91\xf2\x7f\xb8\xaf\xc4\x65\x76\xcd\x6e\xf1\xd0\xf5\xf9\xbf\xd7\x0a\x24\xd8\x75\x6d\xdc\xb0\x9d\xe1\x5d\x72\x60\x6b\xd4\x4e\xf0\x7e\x71\x79\x95\x23\x37\x02\x85\x1b\xd9\x34\x5f\xab\x49\x3b\x30\x45\xd0\x6e\xf3\x7e\x6b\xd5\xdf\x14\xbf\xb5\x8d\xfb\x23\xb9\x86\xa6\xc5\x94\x02\x77\x63\x73\x46\x39\xe4\x72\x14\x8c\x69\xd6\x46\x3e\xa7\xb4\x03\x47\x62\x40\x9d\x22\xcd\xb6\x84\xdd\x8d\x1b\x22\xd8\x0f\xdf\x40\xbc\x82\x80\x1e\xb4\x79\x04\x32\xdb\x5a\x01\x75\x78\x56\xbd\x9e\x6e\xba\x1a\x5b\xd4\x01\x14\x04\xf7\x45\xed\x9f\xcd\xfd\x23\x9b\xd9\xc7\xaa\xc0\x08\xa3\xfe\x21\xd6\xa5\x14\x50\x1a\x5a\xc2\x63\xf7\x9c\x8f\x53\x68\x18\x7c\x12\xba\x20\x56\x12\x9f\x6a\x85\x4e\xe9\x27\xd7\xf4\x54\xc3\x7e\xee\xab\x25\x9f\xfb\xa7\xcc\x98\xff\x4f\xa0\xfb\xa0\xce\xfe\xf9\x80\x71\xf7\xbe\x39\x37\x94\xec\xe8\x30\xcd\x8a\xc5\x34\x76\xe9\xb4\x06\x28\xa0\x1a\x83\xc0\x9e\xa9\x11\x9a\xc0\xcb\xff\x41\xb1\xe1\xec\x41\x43\xba\x66\x74\x5c\x7b\x74\xf4\x35\x8d\x4f\xbf\x56\xe3\x37\xb8\xd0\x6c\xdb\x9e\x4b\x3c\xd9\x01\x15\x02\x96\x5b\xe5\x1b\xc5\xa0\x5c\xca\xec\x20\x76\xdc\x03\xc1\x69\xc6\x55\x78\xbe\x51\x92\xb2\x20\x2b\x88\x36\xa1\x36\x69\x1a\xae\x7a\x79\x71\x1c\xed\x1f\x8e\x42\x62\xf8\xe1\x44\x42\xba\x7f\x66\xb6\xe9\xb2\xcc\x74\x9d\x37\xcc\x54\xe9\xc6\x9c\x07\xe5\x3d\xa1\x95\x00\x00\x9d\x5b\x98\xe1\xda\xc3\x1f\x28\x0b\xb5\x3f\x18\x3d\xa8\x9e\x31\xcc\xdc\xc0\x66\xae\x63\x38\x97\x13\x62\x18\x0d\xa2\x30\xc3\x24\xf7\xc9\xdc\xc0\x60\xc3\x60\x79\xa4\x91\x92\xd4\x3e\x17\x3d\x1a\xb8\x66\x39\xce\x14\xd4\xa7\xd9\x1f\x84\x6f\x54\xc7\x79\xb1\x4c\xba\xf9\x13\xd5\x24\x61\xe3\x11\x44\xbc\x7e\x27\xf1\xa5\x22\x5e\x49\xc2\xf0\x6d\x78\xee\xe3\x75\xdd\x5d\xbf\x46\xbb\x29\x33\xb1\x34\xcf\xf1\x26\x55\x46\x98\x11\x48\xf9\x33\x22\xbf\xab\xa3\xa0\xc8\xcf\x3c\x2e\x46\xaa\x2a\xa5\x41\x66\x82\x33\x1f\x84\xca\x22\x22\xf5\x4e\x3f\x8b\x42\xb8\x99\x27\xd6\x1e\x0f\x41\x64\xea\x6b\xb9\x58\xe2\xf0\xfa\xe3\x6b\x0f\x1b\xcb\x6d\x5a\xc6\x53\x13\x0d\x3c\xbc\xb1\x5b\x5c\x2c\x40\x51\xe9\xfd\x8d\xd9\xde\x67\xaa\x48\x0e\x31\x81\x70\x02\xab\xdf\xce\x0d\x6b\x65\x15\x79\x53\xb5\xdd\x4d\x3c\x48\xf3\xe2\xd1\x50\xb8\x5c\xa7\xb1\xf0\x3b\xc5\xc2\x7c\x70\x89\x09\x46\x9c\x17\x15\xd3\xeb\x8c\x12\x7b\xfa\x5b\x8c\xb0\x97\xd7\xaa\xd2\x4b\x11\x9c\xa1\x75\x8d\xe6\x02\x6f\xb8\xfc\x19\xa4\x17\x12\xe9\xd2\xf3\xcb\xe6\x26\x7e\xf5\x2e\xe9\xd9\xc4\xa5\x65\xce\x01\x4c\x9d\x2d\x9b\x72\x90\xe8\x64\x96\x29\x98\xfc\x56\x22\xc5\xe5\x39\xac\x4c\x7d\xae\xd1\x8f\x15\x18\x3c\x3d\xbb\xbc\xc7\x30\x44\xed\x32\x73\x8c\xf8\x03\xac\x8c\xa5\xf9\xf8\xe6\x81\x81\xcd\xc0\x9a\xa4\x70\x03\xc8\xf4\xa3\x1c\x04\x75\x07\x9c\xf3\xdc\x4b\x47\x4a\xb4\x69\x2d\xe4\x36\x5d\x53\x70\xd9\x53\x75\x47\x5f\xf4\x0a\x91\xca\xf4\xb7\x3e\x0a\xc9\x5c\x1a\x73\xfc\x56\xb7\x01\xd7\x99\xac\x75\xed\x20\xed\x64\xa6\x10\x0c\xa8\x28\x63\x28\xad\x5c\x16\x56\x13\x25\x1b\x6f\x29\x61\x5c\x9c\xa5\x29\xd8\xe4\x7e\x2d\xaa\xa3\x3f\xc4\x3c\x5f\xda\xfb\xeb\x53\xb4\x96\xa5\x50\x55\xfd\x33\x4f\x52\xac\xfe\x38\xb2\x8f\xbb\xaa\xb3\x91\x17\x16\xe2\x64\x78\x77\x8f\x91\x75\x06\x12\xff\xff\x9d\x92\x22\xd4\xa6\xde\x50\x90\xbb\x87\x5b\xa1\xc5\x4b\xc8\xd6\xee\x56\x65\x5a\x7a\x8e\xce\x1f\xff\x29\x4f\x9a\xb9\x46\x7f\xc1\xd7\x36\xbd\xeb\xd6\x11\x02\x5e\x08\x61\xd7\xb3\xed\xad\x29\x2c\x1c\xaa\x51\x70\x3c\xa2\xab\xe5\xb7\x94\xed\xdc\x79\x05\x59\x4a\x38\xdd\xc4\x21\xc1\x93\x92\x6f\x54\x12\x09\x10\xab\xed\x4e\x87\x86\x30\xfe\x22\x5f\x8f\x42\x46\xfb\x0a\x3d\x29\x5f\x4f\xc4\x7d\x55\x76\xb4\x28\x8d\x27\x2f\x6e\x54\x7d\xa9\x54\x51\x75\x0d\x23\x2f\x07\x4a\x02\xfb\xbc\x12\xc0\x7a\x8f\x46\x1a\xd1\xd8\x0d\xd5\x39\x30\x9d\x4e\x99\x0b\xf5\xdc\xa7\xfa\xbc\x84\xf9\x46\x6b\x09\x0e\xa6\x94\x64\x14\x2b\x03\x21\xe0\xdb\xca\x75\x2c\xe4\xec\x37\xc3\x38\xa7\x79\xe1\x96\x54\x6e\x77\x4e\x57\xbd\x27\xe9\xc9\xbb\xe7\x9a\xb1\x35\x79\xf1\x50\xc0\x0f\x6e\x5b\x0b\xc3\x78\x06\x75\x67\x6c\x42\xff\xcb\x28\x48\xdb\xfe\x0c\x86\x73\x62\xcd\x48\xf5\x03\xaa\x94\xfe\xd9\xa7\xb0\xd3\x7b\xa2\xfc\x58\x01\x96\x04\xbf\xc3\xc2\x4d\xe3\x5c\x80\xc4\xd8\x68\xb9\x22\xc6\x37\x4a\x0c\x82\xcc\x8e\x62\x40\x9a\xd7\x2f\xe3\x0f\x45\xc1\x10\x8c\xf4\x5e\x11\xc4\x00\xea\x83\x49\xf6\xb7\x80\xfa\xf0\x4d\x14\x94\x84\x86\xfd\xb4\x48\x7b\x99\x19\xf6\x99\x64\x87\xbc\xff\x4d\xbc\x6c\xbe\xf1\x4b\xb6\x6f\xb2\xee\x8a\xc9\x40\x9b\x66\x0e\x3d\xcd\x2f\x81\x4e\xd1\x43\x0b\xd0\xd1\x8b\xb5\xdb\xd8\xd9\x45\x6c\x2b\x80\xdd\xbe\x8d\xed\x81\x6f\x74\x95\xd0\x75\x32\x81\x84\x0a\x28\x97\x9e\x44\xc0\xb7\x13\x42\x38\x0b\xf3\xcd\x7c\x68\x13\x8e\xb1\x15\x77\x51\x84\x2e\x5e\x1b\x29\x61\x9f\xeb\xd1\x53\x8a\xeb\x3e\x34\x59\x31\xb0\x49\xf1\x38\x3d\x8d\xc0\xa5\xa8\x21\x29\x4d\x64\x7a\x6b\x40\x82\x02\x24\x26\x52\x3d\x2a\xfc\x86\x6b\x20\x57\xc4\xb5\x38\xd5\x76\x65\x90\xfe\x11\x97\x1e\xf1\xcf\x6e\xd0\x1a\xc1\xf6\xc8\x25\x13\x64\xd3\xd0\xa3\xf6\x7d\xa0\x05\xb1\x17\xfb\x3f\xa9\x59\x88\x32\xe8\xe5\x07\xda\x1a\x98\x0e\x14\xa9\x95\x9e\xbb\x52\x88\xbc\xa4\xa6\x51\x67\xb5\x13\xbb\xa4\x37\xad\x60\xf3\xfc\xce\xb9\x26\x18\x85\x07\x3c\xa9\x9a\x99\x6f\x8e\xab\xbf\x95\x83\xc7\x48\x94\xda\xbb\x3f\x07\xf9\x5e\x56\x5a\x42\x09\xe2\x43\x84\x43\xe2\x55\x4c\x13\x1d\xa5\xb9\x47\x49\x65\x1e\xfb\xef\xbd\x28\xb0\x1b\xa1\x01\xe5\xc1\x9f\x5e\x30\x94\x81\x98\x28\xa8\xfc\x58\xd5\xfb\xff\x92\x07\x18\x45\xac\x1b\xaa\x89\x1a\x9c\x31\xf3\x38\x5d\xb1\x19\x98\x4a\x4c\x67\x52\x34\x42\xb6\xa8\xf6\x24\x93\xea\x7b\x98\x2f\xd3\x0a\xf4\xad\x8b\x7e\x5e\xf7\xd3\xe1\x92\x4b\x38\x1f\x14\x8b\x25\xfa\xd1\xe2\x29\x55\x87\xa8\xc9\x5c\xbe\x44\x98\xf8\x75\x72\x15\x5e\xbf\x3c\x7a\x24\x4c\xff\xd5\xed\xd5\x7e\x29\xfc\x60\x85\x3f\xbd\xa4\xde\xc1\x49\x5d\x89\xff\x1e\xde\x1a\xca\x37\xb7\xe9\x88\xf2\x40\x81\x39\x61\xbc\x4e\x91\xc3\x36\x66\xd8\x71\xd5\x00\x73\x5d\x9b\x14\xc2\x44\x41\x69\x0d\xeb\x99\xaf\xc7\x0c\xc4\x57\x53\x9c\x41\x88\x21\xef\x51\xe8\xca\xd7\x13\xcb\x72\xdf\xf3\xcd\xae\xed\xb8\x2e\xd2\x6a\xc6\x2a\x2b\xe7\xc5\xab\x2a\xad\x66\x77\xfe\x29\x9f\xd0\xbf\x0c\xc5\x7f\xc0\x5a\x19\xd8\x0e\xe8\xdf\x29\xa5\x00\xcc\xfc\x1e\x8b\x9e\x98\x80\x5d\x02\xb0\x66\x12\x56\x5a\x1d\x6a\xed\xcc\x15\x2e\xef\x37\xb4\x1c\xbf\x42\x8a\x9c\xf3\x70\xe5\xae\xcd\x0b\xe7\xb1\x4f\x38\x9d\xdf\x56\x12\x14\x6f\x4f\x2c\xc2\x5d\xbb\x9a\x66\xe0\x8a\xd5\x65\x17\x57\x41\x14\x66\xa3\xb2\xea\x0e\x2a\xf1\x61\x0f\x1a\xa4\x49\x31\xac\xb6\xc7\x0c\x89\x90\x42\xd7\x07\x19\x9b\x9a\xaa\x42\x2f\x95\x3a\x04\x72\x3e\xd6\xa3\xe5\x1b\xe5\x6f\x2f\x26\xa5\xdd\x86\xa2\x3a\x1e\x57\x56\xc3\xc7\x55\xf8\x30\xb4\xb1\xe9\x5a\x53\xe2\x2f\x23\x25\xe2\x83\x88\x6f\xa2\xc7\x14\x12\xcf\x25\x7f\x9f\xfe\xa8\x08\xfa\x28\xa2\xfb\xb6\xb5\xc0\xb7\x78\x0d\xe1\x3f\x02\xa7\x2b\xda\xed\xf7\x5e\x54\xe5\xfd\x5e\xc5\xa4\x5a\x95\x98\xa3\x4c\xf2\x44\x80\xf3\x2a\x56\x22\x36\xde\x0f\xa0\x7c\x24\x65\x35\x3a\x94\x7d\x11\x61\xb7\xe4\xf5\x5b\xb8\xf0\xc3\xcd\x12\x25\x62\xb7\x4e\xa4\x7b\xc1\x13\xd3\xa1\xe8\xa3\xb5\x5d\xc2\xb9\x47\x19\x18\x1b\xc4\x5d\x84\xd0\xf8\x8e\x0b\xb4\xd3\x63\x02\xdc\xa3\x1d\x19\x3b\xf5\x95\xa8\xf1\xc2\x7c\x30\xeb\xdf\x3f\xe3\xd1\x60\x01\x16\xd5\x60\x7f\x20\xf1\x43\x52\x05\xda\xfb\x08\x01\xb1\xbf\xdc\xc6\x71\x20\x11\xdb\x06\xe7\x84\xfd\x33\xf3\xcd\xfd\x33\x5f\xa0\x54\xc6\xef\x0c\xbb\x03\x38\x6f\x63\x84\x5e\xed\x38\x9d\xcc\x0d\x87\xb1\x4c\x65\xad\xf0\xc5\xd7\xa3\x87\xfd\x7c\xf9\x87\xdb\xc2\xf9\x73\x06\x2f\x4e\x74\x6a\x03\x75\xee\x61\x44\x36\x5e\xb3\xd1\xe7\x9c\xb7\xa2\xc0\xe5\x9b\xa6\x8d\x1d\xfb\xcf\x57\x26\xaa\xd6\xfb\x67\x9a\xf9\x20\xf5\x52\x6e\x38\x0b\x50\x2d\xe6\x6b\xd5\xd0\xce\xad\xad\xfe\x25\xf5\xa2\x24\xb9\x0d\xe8\xfa\x47\xc6\x7b\x1f\x34\x59\x84\xd1\x4c\x7d\xd9\x48\xa9\xb8\x5e\xaa\x29\xe1\x90\xf0\x2a\x89\xd9\xf0\x10\xe1\x17\x43\xf9\x86\xaf\xd5\xd3\x90\xfd\xa7\xed\x4e\xe9\xf6\xfb\xb5\x48\xe9\x2d\x5d\xd7\xc1\xd3\xd4\xda\x3f\x7c\xc0\x61\x0d\x2d\x80\x82\xc8\x02\xaa\x74\xc4\x2a\xbe\x7c\xa3\x92\x20\xeb\x0a\x52\x2e\xc6\x04\x7a\x02\x11\x08\x96\x08\xf3\x28\xc4\x22\xaa\x7a\x85\x78\x09\xe0\x1a\xfb\xa0\x2b\x88\xd5\x83\x90\xcc\x5a\x10\x35\x5a\x30\xb3\xcd\x34\xb1\xd0\xad\x67\x6a\xa6\xaa\x5b\x02\xbe\x2a\x3e\x1f\x3b\x36\x7c\xf8\x33\xcd\x67\x1b\x8d\x67\x9f\xe5\x5a\xcb\x7d\xa4\xf2\x7c\xa3\x38\x97\x2e\x49\x97\x61\x15\x8d\xd7\xc8\x6a\xcf\x7c\xa3\xc0\xb6\x84\x27\xe0\xfc\x07\x9b\xc0\x59\xac\x49\xbe\x51\x61\xb4\x29\x97\x5d\x8c\xf4\x5d\xba\xe6\x9a\x5e\x74\x5a\x19\x45\xe3\x9c\x1b\xab\xb5\xf3\x3f\x1a\x3d\x24\xcf\xb8\x32\x1d\x82\x88\xbb\xda\x5b\x69\x5b\xab\x1a\x62\xfc\x87\x93\xb4\x27\x88\xd2\x64\x78\x16\x6a\x4e\x6c\xa5\x67\x41\x4e\xcc\x86\x19\x7c\x33\xd2\x18\xe6\x86\x27\x84\xff\xde\x38\x9e\x39\x84\x1d\xbf\xa7\xfe\xf4\x60\x55\x1c\xe1\x59\xae\x45\x15\xac\x27\xcf\xa5\x9d\xcd\xc4\x2e\xdb\xac\xe8\x13\x88\x81\x76\x0e\x41\x75\x87\xa2\xfb\xf1\xfa\x8d\x66\x1e\xb1\x92\x58\xcc\x06\x50\xe4\x31\xf4\x7c\xc5\x88\x36\x64\xc0\xbf\xaf\xd5\x7f\x4e\xd4\x2b\xdd\x9b\xa2\x9f\xc6\xae\xc3\x47\x24\x8a\x75\xcc\x4f\xe6\x9b\x89\xfd\xe2\xc0\x81\x66\x3b\x26\x9a\x23\x45\x14\xc8\xfd\xd8\x88\x96\x6f\xd4\xa9\x67\x5c\x16\xbb\x44\x06\x09\x80\x07\xc4\x06\x7c\x3d\xb1\x0b\x1c\x38\xd0\x7c\x29\x2d\xb3\xc4\xc4\x2e\x1f\xa8\x2d\x89\xe1\xa2\x7c\x33\x0a\x35\x49\x93\xd9\x4f\xd1\x2f\x45\x4c\xfb\x14\x96\x23\xc0\xcb\xdf\xa2\xe2\x17\x52\xc2\xad\x6b\x74\x46\xe1\x77\x7d\x05\x87\x1c\x28\x7b\xdf\x45\x4c\x4c\x05\xed\x9f\x7f\x1a\xed\x51\x7c\xcf\xc3\x90\xac\xc1\x14\xde\xba\xa6\xd5\xf2\x15\xe7\xec\x02\x1d\x2e\x2c\x37\x88\xc3\x17\xa7\xe7\xcb\x51\x38\x11\x8e\xf1\x02\x10\x55\x07\x05\x99\x78\x2b\x90\xfb\x0e\x3f\xd9\x52\x68\x9b\xe9\x56\x98\x9b\x5b\x81\x96\xc1\x10\x7f\x77\xa4\xe4\xce\x01\x48\xc1\xfe\xf3\x89\xb5\xea\x54\x15\x7a\x46\x35\xc3\x50\xf9\x9b\x6e\x55\x07\x3c\x32\x98\x5b\x63\x28\xfe\x6c\x09\x2a\x85\x62\x3f\xa0\x82\x8c\x6f\xe3\x34\x44\x01\xe1\x74\x5d\x4f\x65\xd9\x16\x1c\x8b\x22\x41\xb9\xa9\xb2\xa9\x9b\x13\xe1\xd2\xec\xbe\xe6\x52\x92\xb2\xff\x9a\x6e\xc2\x08\xb6\x28\x84\xa2\x71\x6a\x16\x19\x47\xf0\x05\x11\x24\x1a\xb3\x56\x0a\xa5\xbd\x97\xca\x6e\xcf\xe6\xdb\x43\xd0\xfa\xed\x09\x0c\x8b\x7c\x03\x20\xcb\xd8\x84\xcf\xd0\xbb\x61\x9d\xa0\x31\xcd\xa0\x6a\xcc\x7d\xf8\x57\x7d\x3f\x22\xa9\x73\x0a\x32\x0b\xf1\x2a\xa8\x7d\xa0\x46\x74\x9a\x7e\x08\x40\x94\xff\x1b\x56\x90\x30\x8e\x94\x21\x8f\xe9\xb8\x38\x2e\x73\x15\x61\x5f\xd5\x3c\xe5\x8f\x46\xca\xcf\x79\x5b\x2b\xc0\x47\xdb\x59\x99\xe7\x64\xb3\x16\xf8\x24\x23\x85\xe8\x60\xed\x45\x61\x9a\xd0\x4c\xe1\xff\x12\x3d\xec\xff\xca\x7f\xfd\x89\x30\x21\x1e\x69\x05\x9d\xa2\x1d\x80\x54\xa2\x8c\x20\xde\x4b\x5e\xf2\xa4\x1a\x01\x84\x6f\x9b\x29\x90\xc0\x3c\x7f\x15\x11\x1f\xfe\xc0\xfa\x28\x84\x69\xec\xb8\x8b\x84\xfc\x16\x0d\x2c\xd6\x1f\x0c\x44\x10\x4d\xdd\x57\x06\xed\x5f\xd7\x0c\x4b\xc6\xa4\x31\xf0\x11\xe7\xa4\xb0\x74\xe4\xc4\x1a\xa4\x45\x9f\xe6\x46\xa8\x3f\xbf\x82\xcd\x41\xf0\x19\x4f\x2a\xb8\x74\x95\x87\xdb\xee\x36\xda\x14\x10\xac\x1e\xc1\x60\xf1\x0d\x3e\x89\xf4\x89\xf1\x3b\x2c\x6d\xba\x16\xde\x28\x37\xb1\x44\xf3\x34\x14\x5a\x5e\x57\xd6\x34\xb1\xed\xb9\x1c\xae\xa9\x0f\xd1\x37\x00\x3c\xc1\xcc\x50\xd5\x62\x9a\xf3\xca\x95\x0a\xef\x4d\xc1\x23\xa6\xcc\xc7\x18\x42\x40\xbb\xff\x15\x96\x3a\x96\xee\xa6\x96\x12\x83\xff\xc1\x18\x69\x71\xe3\x61\x33\xbb\x0f\x90\x1e\xca\x9e\xd0\x11\x13\x47\x95\xd0\x40\x9f\x74\xa4\xa6\xde\x74\x3a\x18\xda\xc2\xa2\x8b\xa7\x46\x46\x38\xa9\xe0\xe2\x33\x0d\x72\xa4\x9c\xe4\x26\x6d\x95\xf6\xec\x69\x16\xfd\x2c\x2d\x7b\xfd\x0d\x6a\x65\xbb\x83\x5a\x59\x0d\x72\xb1\x9d\xa5\xa6\x2b\x9c\x43\x24\xe1\x9b\xe9\x4b\xf9\x7a\xed\x49\x5f\x5c\x34\x59\x37\x4b\x53\x91\xeb\x17\x71\xdc\x86\xa2\x10\x4b\xcd\x61\x60\xb3\x1e\x57\x64\x7d\x63\x26\x38\x9d\x9f\x51\xed\x90\x2b\xf8\x51\x88\xb7\xae\x2b\x39\x35\xb3\xb8\xe8\xba\x66\xd9\xa1\x0d\xaf\x23\x60\xbe\x56\xde\xef\x26\xeb\x91\xd9\x2e\x77\x31\xfc\x9e\xec\xf1\xaa\x57\x31\x17\xd0\x21\xfe\xed\x28\x74\x8b\x7f\x1b\x5f\x2f\xd6\x96\xa1\x28\x97\xb9\x65\xd8\x1e\x05\xa1\x68\x75\x94\x46\xea\xa1\xff\x4a\x11\x11\x7b\x36\xb1\x1c\xe0\xe1\x21\x58\xe3\x82\x6f\xea\x2a\x79\x9f\x6e\xc6\x69\x5e\x4c\x29\x7c\xe8\x6d\x85\xdc\x3d\xaa\xfc\x95\x26\xc5\x35\x76\xb2\x08\x02\xb9\x38\x88\xd3\xb0\xaf\x0a\x84\x0a\x81\x6a\xf6\x2c\xc6\xd6\x16\x64\xd5\xa2\x43\x42\xef\x08\x1f\xf6\x69\x0f\xcf\x49\xdb\xb1\xeb\x99\xa2\x48\x95\xd0\xf1\xeb\x51\x10\x5c\x79\x7d\x62\x62\xef\x54\xed\x61\x85\x77\x78\x55\x95\xa7\x5e\xad\xa3\x33\xe7\xfd\x74\x05\x1d\xa0\x3d\x7b\xc4\x01\x45\x89\x7f\x1c\xd5\xc5\xec\x1b\x7a\xaa\xb4\xd3\xd8\xe5\x7d\x0b\x1d\x34\xd5\x05\x9a\xf3\xc6\x85\xda\xd6\x8e\xde\x1d\xff\x87\x89\xdc\xd1\x77\xa3\x5c\xe1\x1a\x1e\x40\xfb\xa7\x2f\xe3\xbb\x45\x6c\x4e\xa9\x8d\xfc\xe2\xaf\xa1\x4c\x8f\xa4\x0f\xfa\x4f\x10\x99\xb9\x4e\x7d\x00\x71\x41\x53\x3a\xb8\x83\x74\x9a\x3e\x82\xd3\x1e\x50\x24\xef\x6b\xec\x49\x07\x1f\x28\x27\x81\x7f\xff\xc0\xea\x67\xc7\xe4\x2e\x49\x95\x8c\x0b\xcf\x38\xbe\xa9\xe1\x15\x7c\xa1\x99\xd9\x3c\x8d\x4b\x8f\xd1\x13\x5e\x11\x7d\x4e\x08\x47\x3b\x14\x46\xa0\x13\x97\xb9\x5b\xb6\x5b\x54\xb5\xf9\xde\x48\xd3\xaa\x31\xd6\xc8\xfd\x6e\xd3\xcf\x11\x7d\x0f\x1a\x6b\xec\xa1\x47\x55\x09\xa8\x63\x63\xdb\xce\x4c\xc1\x85\x2c\x51\x6f\xaa\xc6\x4b\x6c\x28\xc2\x78\xa5\x6d\x16\x21\xc6\x32\x40\xc1\x14\xb3\x74\xf3\x9a\x02\x96\xd0\x70\xa3\xa0\xcd\x3c\x2f\x2c\xeb\x46\x2b\x44\x30\xcb\x26\x8e\xed\x2a\x88\x1b\xa8\xc7\xfc\x0c\x0f\xcf\x06\x45\xa3\x90\x20\x71\xd5\x86\xcb\xdd\x91\xee\xed\x1f\x53\x8a\xda\x37\x6a\x79\xc3\x9d\xcc\xe4\x7d\xd0\x7c\x34\x3e\x51\x58\x60\x52\x70\x33\x6d\x7a\x13\x10\x94\xf5\xc2\x49\xfe\xc8\x3b\x5c\x67\x8c\x68\x4d\x16\x3b\x9b\x6d\x51\x34\x00\x58\xe7\xe3\xf8\xd8\x06\xa6\x02\x76\xfc\x47\x09\x18\x83\xda\xe8\x56\xdd\x84\xbf\xa4\xc5\x64\x3b\xb6\x2b\x55\x00\xec\x3a\x7f\xae\x11\x90\x7f\xee\xa3\x81\x2c\xa5\xd0\x88\x5e\x19\x4e\x07\x96\xfd\xe5\x9b\x09\x72\x11\x11\x66\x63\x6b\x58\x29\xf0\xc5\x50\x66\xd6\xdc\xca\x31\x64\x70\x7b\x15\x5b\x86\x58\x80\x2a\x74\x44\xad\x26\xe8\xa2\x8b\xe3\x71\xd5\xc2\x3b\x91\x32\x5e\xbb\xa3\x8a\xa7\xb6\x93\x26\xe9\xc0\x71\xaf\xd7\x6b\x60\x86\x97\x7c\x49\xa1\xfa\x6c\xd7\xe5\x0c\x8a\x41\x74\x7b\x4d\xa7\xea\xd7\x54\xfb\x26\x2f\xd2\x6c\x00\x1f\x26\x21\xf9\xd0\x03\x48\x6b\xc5\x5b\x12\x99\xc4\x75\xb8\x80\x82\x03\xfd\x75\xa5\x49\xc2\x6e\x29\x88\x94\x36\xb5\x74\xda\xe0\x3a\x4b\xdb\x55\x18\xf5\x76\xa4\xa0\x91\x77\x79\x5e\xe2\x60\xdd\x44\x51\x23\xb3\x15\x5b\x61\x5b\x21\x26\x06\xef\xa8\xf7\x54\x24\x74\x5f\x75\x6e\xef\x8d\x35\x39\xec\x52\xbe\x2d\x34\x05\xb7\x50\x04\x2b\x2a\x0b\xf4\x2c\xa8\x39\x9e\x44\xc0\xc5\xd0\x7d\xa5\x9f\xc1\x58\x4c\xcf\xbd\x79\xc1\x83\x44\xae\x4c\xf0\xf7\x76\x52\xd9\xa0\xd3\x87\x72\x3a\xfd\x41\xa4\xd5\x28\x9e\xf3\x75\x9d\x72\x0e\x89\xed\xe4\x2b\x36\x2f\x38\xad\x16\x74\x26\x8d\x90\xc0\x36\x37\x7e\x70\x7e\x61\xbe\x39\xcc\xec\x62\xec\x7a\x7d\x36\xc3\xf3\x11\x43\x20\xdc\xfb\x35\x9a\x17\x99\x5b\xf2\xa0\x56\x21\xfd\x04\x6d\x83\x27\x5b\x81\x6d\x70\x7f\x22\xf7\x3f\x70\xa0\xe9\x06\x03\x4b\x28\xa4\x86\x62\x97\xbf\x4c\xaf\x81\xaf\x27\xab\xf6\x0b\xf3\x55\x60\x56\x05\xdf\x53\x61\xdf\xb8\x47\x51\x28\x06\xfb\xdc\x48\x49\xcf\xe9\xdd\xd2\xf5\x52\xb6\x66\x1a\xd3\xd8\x40\xe3\x04\x1b\x17\xd2\x92\xd3\x5a\x3d\xe7\x8e\x72\x96\x5b\xc9\xcc\x70\x8a\x72\x66\xb1\x08\x0e\xac\x18\x08\x80\x0b\xb2\xb7\x8e\xc0\xba\x42\xa5\x2b\xff\x26\xf1\x31\xe0\x8d\xf8\x7a\x02\x3d\xba\x30\x5f\x25\x1a\x29\x74\x16\x30\x93\x8f\xd0\xf7\xf0\x75\x30\xb9\x8d\xad\x1d\xaf\x9e\x32\xe6\x4c\xea\x16\x61\x18\x7e\xe5\x9f\xfc\x67\x5b\xe9\xf7\x21\x67\x9c\xe6\x8e\x39\x62\xf1\xf7\xd5\x4c\x3d\x46\xc7\x06\x06\x18\xa7\x37\xce\xb1\x87\xd0\x18\xc3\x02\x38\xe2\xb7\xcb\xea\x7f\x86\xb1\x01\xe9\x01\x69\xc3\x2b\xca\x28\x97\x45\x50\x27\xf7\x93\xcc\x2e\xbb\x65\x76\x21\x61\xfe\x47\x14\xe0\xce\x17\x6b\xa8\x28\x0b\x33\x8f\x29\xa4\xcf\x7d\x95\xf7\x5d\x8e\x14\xa8\xa5\x41\xeb\x1c\x47\xe3\xfd\xd1\x86\xa4\x75\x96\x23\x96\x87\x5a\xc1\x47\xe1\xbb\x40\x88\x79\x02\xeb\xfe\x19\x7f\x26\x60\x8c\x50\x62\xfc\x2b\xe4\x61\x5e\x26\x33\x50\x27\xde\x89\xb4\xbc\xd9\x44\xad\xe2\xd9\x67\x89\xf7\x82\x85\xc5\xc5\x00\xfa\x16\x29\x0c\x4c\x96\xc5\xbf\xd0\x1c\x66\xe9\xa2\xc8\x2c\x6b\xc2\x96\xec\xd2\x41\x85\x6c\x98\xa5\xdd\xb2\x53\xb8\x65\x26\x1f\x7b\x4d\xdd\x86\x72\x31\xaf\x73\x75\xb6\x79\xc1\xbb\xaf\x16\x7e\x40\xa9\x9b\xcf\x7a\xe4\x04\x7f\x32\xde\xee\x6d\xe7\x8d\x71\xb3\x2c\x2a\x10\x8b\x3e\xbf\xec\xee\x3d\x93\x4b\x77\x4a\x40\x8d\x0a\xbc\x72\x71\xcc\xb8\x31\xe9\x3e\x4e\xaf\x80\xab\x00\x14\x9c\x0a\x03\x90\xc6\x59\xca\x03\xf4\xe7\xf0\xce\xaf\x47\x41\x40\x14\x72\x9e\x88\xbd\x98\x2b\x89\xb5\x0e\x00\x1a\x22\x99\xff\x51\x75\x0b\x6e\x60\x56\x02\x16\xb7\x5d\x37\x32\x50\xc5\xc4\xef\xbe\x8a\x27\xe6\xef\x43\x16\x8a\xb9\x70\x51\xd5\x63\x56\x5c\xdc\xed\x18\xc0\xa9\xd9\x9a\x3f\x0a\xd4\xba\xdb\x0a\x8c\xb4\x22\x19\x09\x60\x08\xe7\xf1\x17\xf9\x26\x7a\x5c\xb3\xd8\xab\x54\x4b\xc7\xd7\x61\xdf\x87\xce\x00\xaa\x82\x57\x55\x1e\x93\x17\xd6\xc6\x0f\x2b\xe2\xea\x23\xc4\xe0\x17\xa4\x0e\xfd\x12\xaf\x69\xbe\x7f\xc6\xdb\xb3\xd1\x40\x68\x97\x4a\x51\x8a\xac\x86\x54\x50\xc9\x2a\xa0\x5f\x43\xc1\x12\x1b\xf5\x47\x34\xa6\x80\xcd\xbf\xe1\x0f\x76\x53\x64\x25\xdb\x4e\xeb\x99\x85\x57\x72\x97\x7e\x0b\xfb\xb1\x3d\x10\x42\xea\xc8\xa5\xa8\xe7\x3a\xa4\x00\xe7\x83\xe7\x10\xc8\x4f\xa2\xd4\xab\x23\x22\x5d\x91\xc0\x4a\x15\xd1\x66\x7d\x0f\x75\x92\x24\xc7\xf9\x62\x61\x92\x2e\x4f\x56\x81\x06\x05\x74\xbc\x36\x3c\x48\x52\x12\x24\xe2\x5f\x27\x35\x67\x9d\xf1\xab\x75\xb3\x1e\xed\x70\x1b\x51\x26\x5c\x2b\x40\x16\x83\xda\x3b\x5f\xfb\x1d\x75\xd1\xc4\x45\x50\x9e\x96\x20\x98\x7e\xc8\x83\xa2\xe0\x03\x07\x98\x06\xb1\x3a\xdd\xf0\xf2\xe8\xa8\xc1\x02\x8e\x05\xd5\x1b\xb1\x3a\x56\x22\x3c\x87\x95\x66\xb3\x3d\x38\x34\x09\xe9\x56\xb1\x5d\x0e\x36\xd1\x57\x54\xca\xfd\x4a\xf4\x09\x45\xe6\x2b\xca\xcc\x6e\xa1\xd5\x2f\x3e\x17\xa1\x3d\xc8\xd5\x34\x66\xb0\x2b\xaf\xbc\x73\x9a\xc9\x72\x74\x22\x44\x9e\xdd\x47\x3b\x9a\x13\xbd\x61\xac\xbe\xb7\xe8\xf9\xf9\x7a\xc2\x4c\x5a\xaa\x36\x1d\x93\x17\x41\x88\x12\x93\x9a\xa5\x5e\xf1\xf8\xdf\x1a\x29\xa2\xc4\x5d\x55\xc8\x5d\x4a\xd2\x95\x24\xd7\x0d\x55\x6c\x80\x12\x9f\xeb\x0d\xb0\xed\x7a\x4f\xab\xc2\xe9\x3b\x38\x3e\x10\xf2\xa3\xa3\x83\xea\x01\xe4\x06\x31\x15\x98\x9a\xe5\xb5\x8b\x82\x62\xc2\xd1\x48\x15\x9a\xae\x46\x61\xba\xbf\x4b\xd9\x1f\xf6\xae\xeb\x91\x22\xf7\x1d\x04\xa1\x0f\x39\xc0\xb1\xd1\xb8\xc0\xa1\x07\x27\xad\x03\x30\x8b\x4a\xc1\x49\xed\xbc\x88\xf0\x85\x99\x5a\xe8\x05\xf0\xdf\x52\x1c\xa6\x2b\xe0\x76\x62\xa4\xbe\x83\xc1\x40\x5f\xe3\x8c\x2a\x71\xf6\xd3\xa4\x5b\x66\x26\xd7\x67\xdb\x09\x55\x56\x3f\xa1\xd0\xe4\x2e\x21\x43\xd9\xe9\xc0\x2d\x3a\x83\x71\xe0\x1b\xfa\x72\xc6\x3c\x45\xaa\x88\x7d\x42\xc3\x39\x6d\x1c\x3f\x14\x0a\x80\xbc\x83\x0a\xcf\x47\x69\xcb\xc2\xaf\x1a\x5b\xd9\x57\xa8\xda\x2e\x28\x26\x65\xac\x7c\x3e\x6a\x7c\x71\x56\x00\x31\x94\xa5\x23\x3f\xfe\x2a\x36\x45\x41\xca\xd4\x18\x2e\xbf\x64\x92\xcf\x4c\x05\x8c\x39\x63\x5b\x11\x3f\xdd\x18\x29\xbe\xde\x99\xb1\x7e\x87\x4d\xba\x4f\xd3\x43\xb2\xe1\x4f\xa4\xec\xc5\xde\x89\xd4\xc6\xf0\xde\x28\xe0\x54\xff\xe5\x28\xd4\x24\xee\xa0\xf2\x8d\xe2\xee\x4d\x85\x06\xfa\xe7\xf4\xe6\x31\x10\xf7\x46\x8d\x17\xe6\xc5\xf0\x1f\x23\x89\xa5\x70\x79\x14\x38\xc6\x90\x5d\x96\x4a\xac\xea\xef\xb1\xc5\x08\x80\xed\xc7\x31\xbb\xa4\x10\x5d\x4d\x4e\xc4\xf8\x6f\xe1\x28\xc6\xb2\xdf\x4c\x27\x0d\x02\xa3\x6f\x8c\x54\x4b\xf0\x86\xb6\xc2\x3c\xae\xb6\x8e\x36\x09\xe8\x4c\xab\x67\x3b\xab\x6c\xaf\x98\x97\x8a\x5f\xf0\xa3\x51\xe0\xf5\x9c\x54\xad\xb7\xb4\x84\xe7\x27\x1a\x9e\x1f\xd3\xb3\xf9\x1c\xac\x1a\x49\xac\x35\xa0\xee\x45\x89\x92\x16\x0e\x86\xf8\x34\x06\x1f\x8b\xe5\x66\xa4\x28\x9f\xa7\xf1\x13\x50\x7b\x3c\x8a\x1f\xea\x05\x0e\xb5\x47\x45\xd0\x50\xfa\xae\xa2\x75\xb3\x04\x9f\x08\x2b\x54\xc3\x8c\x3e\x68\x30\xdb\x5a\xb4\xd9\x32\x47\xf7\xac\x31\x40\x9f\x17\xbd\x81\x9a\x42\xf6\x8a\x71\xde\x75\x5c\xe4\x70\x95\xb2\xc2\x4f\x54\xbe\x63\x18\xc3\x89\xa3\xf7\x9a\x92\xa4\xba\x36\x86\x5f\x20\xa3\xd9\x2d\xaa\x5d\xc5\xc0\x5b\xc1\xe9\xd2\x9f\x17\xe7\x06\x45\xd9\xbe\xa6\xbc\x09\x1a\x6b\xa1\xe6\x9c\x97\x49\xb2\xba\x6c\x62\x56\xbd\x47\x51\xfa\x43\x0e\xa1\x59\x4e\x5c\xa3\x87\x5f\xad\x13\xba\x59\x8c\x9d\x68\x4a\x8a\x7c\xe7\x18\xf9\x59\x6b\x4a\x3e\xae\x41\xbe\x06\xa5\x09\xf1\x88\x57\xac\xcf\x0b\x8a\xf6\x9b\xb8\x25\x70\x8c\x67\xbd\xb7\x15\xfd\x32\xed\xf0\x87\x05\xf5\x7b\x63\x8d\x9c\x2a\x5f\xb5\x79\x23\xf4\x3c\x20\x20\xcc\xd7\x51\x80\x1b\x9b\xbc\xc8\x75\xe4\xd3\x58\x53\x5d\x7d\x3c\x3e\xc2\xb8\xa9\xd6\x0e\xe5\xf8\x5c\x64\x54\x50\x6c\x68\xaa\xca\x18\x0a\x5e\x40\xe0\x89\xb5\xdd\x47\xe9\x91\xe9\x2c\x6f\x3d\xb1\x56\x6d\x61\xa8\xfd\x6d\x6f\x85\xad\x75\x07\xe5\xe0\x88\x8e\x1f\x6b\x85\x55\xf8\xcd\x1d\x6b\xb4\x06\x04\xa4\x4d\xe3\x24\x4c\xcf\x6a\xa5\xb0\x0f\x16\xa6\x02\x62\x9a\xbf\x4b\x49\x20\x36\x20\x12\xf7\x78\xd1\xdb\x92\xa9\x85\xb6\x59\x31\x10\x56\x6c\x1c\x73\xff\xd4\x4b\x6e\x2b\xfd\x9d\x00\xe9\x9e\x9d\x9d\x0a\xda\xa3\x6f\xd2\x4a\xf7\x3d\xf2\x30\x53\xde\xf1\x03\x3c\x28\x33\x53\x18\x0c\x30\x32\xd4\x33\x23\x5d\x43\x57\x82\x5d\x57\x14\x78\xa4\xa3\x6c\xef\x05\x58\xa4\x40\x46\x13\x05\x11\xb2\xd6\x49\x16\x5d\xd7\x26\x1d\x98\xd9\x42\xbb\x43\xa0\xe7\x8a\x13\xfe\xf6\xd8\xe9\xc4\x92\xcd\x8c\xae\x89\x42\x4a\x70\x51\xa9\x12\xba\xc1\xa0\x4c\x5c\x81\x8c\x59\x15\x00\xbf\xe0\xbb\xf5\x21\xf6\xba\x13\x05\x26\x7e\xdf\xc6\xc3\x87\xab\x6f\xc6\xd4\x7a\x0d\x2b\x54\xf1\x5e\x66\x39\xd3\x3d\xa2\xfc\x6d\xe0\xd7\x8a\x71\xc4\x64\x44\x31\xf7\xc7\xa3\x71\x5c\xa9\x17\x43\x3e\xa3\x9b\x0a\x1f\x52\xdf\x14\xdb\xd7\xdf\x9d\xf0\xdb\x5e\x98\xe1\xe4\x93\xd5\x0a\xd5\x2a\x9d\xf5\xe6\xaa\x34\xe8\xc8\x16\x6e\xab\x1c\xa7\x5d\x66\xb9\x76\x51\xb8\xab\x5c\x14\xee\x4e\xee\x0c\xb3\xcd\xbc\x48\x53\x30\x11\xb0\x9a\x3e\xd0\x74\x9b\x0f\x54\x9c\xd1\x49\x93\x82\x43\x92\x39\x2f\x65\xa9\x9c\x08\xfe\x46\xe9\x88\xbb\xa4\x5b\xe6\x45\xe6\x4c\x3c\xad\xd1\xdf\xa3\xb0\x33\xa3\xe9\x80\x03\x97\xcd\xbb\xa5\x6c\xa8\x72\xaf\xbe\x89\xe3\x6d\x0d\xaf\x5b\xb7\x1d\x2b\x4e\x44\x25\xaa\xc1\xc5\x1b\xb8\x8d\xd3\xc4\xb3\xa3\x66\xf7\x71\xd5\xa0\xb1\xa6\x20\xc3\x0d\x12\xe6\x47\x14\x78\xa5\xce\x9f\x12\xac\x69\x5f\xf4\xe7\xa3\x08\xf9\xd9\xf6\x56\xe8\x4a\x7d\x84\xdf\x8d\xec\xf9\x0d\x7f\xfc\x0c\x63\x9b\x14\xab\x0f\x29\xe9\x28\xd4\x49\x80\x62\x3b\x16\x29\xa9\xb9\xe3\x54\x0c\xc2\x3e\xf2\x07\xb4\x41\xe0\x58\x9c\x6e\x29\xfd\x32\x24\x94\x38\x22\x2f\x2b\x20\xe0\xa3\x08\x7a\x11\x95\xdc\x9f\x38\xd6\x76\x36\xdb\xb1\x35\x9d\xbe\x64\x3a\x42\x78\x51\xe4\x17\x05\xd4\x1f\x96\x6d\xea\x69\x65\x39\xc2\x06\xb1\xd1\xae\xc6\x10\x85\xfe\x33\xa3\x71\xa5\x92\x6a\xd8\xf9\xbf\x44\x81\x6e\x94\x74\x4d\x21\x52\x07\x7c\x60\xd3\x37\xaa\x88\x72\x56\xbc\x5b\x35\x5f\xd9\x64\x89\x5b\x36\x31\xd7\x55\x01\x11\xbd\xaa\x79\x61\x57\xeb\x1c\xbd\xf3\x2f\x97\x55\x2a\xcb\xbf\x10\xb0\x08\x36\xd6\xe4\x1b\xb5\xc0\x7b\xa9\xcd\x1f\xaa\x86\xd2\x83\x2d\x3f\xff\x42\x70\x80\xf4\x86\xf6\x8f\x40\x53\x09\x68\x86\x1b\xb4\xd6\x11\xd3\x7d\x5b\xa1\xd9\xee\x44\x01\x41\x70\x5f\x6b\xa5\x9e\xa3\xe9\x88\x28\xee\xf4\x58\xab\xa1\x6c\x63\xf7\x42\xe8\x7e\x4b\x2b\x09\xdf\xd2\xb2\x5a\xb6\x28\xd8\xb9\x95\x99\x7d\xf4\xb5\xc2\xf2\x0b\x9b\x7b\x7a\x10\xb9\xae\x77\x4d\xf4\x0a\x2a\xc1\x57\x26\x1f\x66\x16\x44\x12\x4c\xf7\x46\x2b\x34\x18\x6e\x61\x9c\x80\x3e\x38\x53\x03\x22\x6b\xb6\x4d\xd2\x5d\x31\xbd\x14\x4c\x2a\x4c\xba\x63\xaa\x63\x78\x9b\xe6\x80\xd4\xe5\x36\xca\x00\xec\x9e\x6b\xf6\x12\x50\xfa\x11\xac\xdf\xd7\x48\x8e\xfb\xa3\xc0\xa7\x01\x21\x78\xc5\x75\x2d\xb4\x6b\x3c\x01\xc8\x3b\x7d\x40\xd8\xd1\x07\x48\xbb\xc5\x92\x09\x85\x55\x96\xf2\xac\xb3\xcd\x1d\xb8\x3c\xb6\x26\x08\xf5\xa1\xb0\x03\xb2\x05\x5f\xd7\x94\x2d\xe6\x9b\x43\x93\xc5\xce\x78\xad\x6b\x59\x01\x0a\x50\x72\xc6\xab\x95\x78\x8b\xa0\x46\x48\xa2\xf1\xd2\xc4\x4c\x4b\x4f\x83\xb4\x9b\x3f\xaa\xc2\x82\x2b\x63\x6c\x02\x65\xa4\x7e\x16\x32\x29\xd8\xe7\x59\xc2\xd0\xe7\x13\x21\x07\x78\x08\x9b\x00\x0e\x97\x5b\xca\xa5\xf0\xa7\xbc\x5c\x45\x0c\x44\xc5\x9b\xef\x28\x2a\x3b\xbb\x1c\xa2\x1c\x78\xb2\x8e\xb0\x98\xd9\x2f\x97\x36\x2f\x68\x0e\x60\xa4\x91\x82\xfa\xa0\xce\x57\x41\xce\x6b\x23\x83\x8c\x14\xac\x3d\x64\x11\x18\x0f\xbe\x9e\x50\x84\x9c\x7f\x7e\x6f\x73\xe0\x98\x0a\x07\xb0\xdf\x7b\x9a\xc5\xf9\x9e\xd7\x7b\x69\x97\xb9\x4b\x2c\x29\x60\xd0\x90\x60\xfd\x5e\xd6\x32\xc9\xda\x0a\x38\x36\x8c\xd1\x90\x52\x5b\xf5\x2b\x70\xf4\x1c\xc5\x98\x02\xde\x82\x19\x81\x2f\x23\xca\x88\xb7\xd7\x0f\x85\xd4\x45\x6b\xb2\xad\xaa\x50\xf0\x5b\x34\xda\xc2\xb8\x0c\xbd\x7b\xe4\xba\xde\xed\xc5\xc3\x04\xdf\x8d\x14\xd1\x51\x3b\xf9\xb9\xc1\x30\x2d\x93\xae\xf0\x07\xea\xe4\x3f\x36\x4e\xed\x3d\x7b\x16\x9a\x89\x5d\xc9\x87\x99\x63\xf5\x55\xd4\xae\x10\x47\xf1\xb5\x3a\x42\x8b\x74\xe8\x60\xf4\xea\xd5\xb4\x3c\x14\xee\x86\xaa\xe2\xdf\x8f\x94\xb0\x61\xdf\x42\xf4\x9b\x06\x50\x70\xcf\x1a\x04\x5d\x53\x5a\x7f\xb1\xd9\x77\x3d\xaf\x29\x3e\xa6\x8a\x24\x32\x06\x75\x2f\x3f\x5d\xe6\xce\x13\x4e\xff\x3b\xa3\x20\xe7\x88\x70\x0b\xaf\x69\x53\x6b\x12\x7b\xdf\xec\xda\xc2\x66\x03\x97\x80\x07\x83\xe3\xe9\xa4\x0a\x0e\x6b\x67\xb5\x4b\xfa\xe5\x80\xb3\x1a\xbc\xea\xef\xab\xd7\xfe\xfd\x3a\xcc\x15\xd9\xbc\x15\xfd\x6a\x39\x34\x02\xc6\xf9\x3f\xd0\x37\xf1\xf5\xc4\x37\xfd\xa3\x66\x66\x87\x69\xe6\x8f\x28\x29\x7a\xe8\x0a\x88\x22\xe1\xf7\xd2\x64\xba\xb1\xef\x79\xde\xe9\x20\x12\xeb\xad\x95\x03\xcc\x4b\xbb\x88\x7b\xdc\xcc\x4a\xc6\xaa\x49\x68\x1c\xe2\xdd\x7e\xa8\xf4\x41\x36\xa1\x8c\x82\x91\xbc\xad\x50\x44\xf6\xe0\xd0\x76\x8a\x47\xb4\x09\xe3\x5f\x29\xd6\xf8\x89\x48\x89\xb9\xfd\x44\xc9\x69\x7c\x44\xd1\x01\xd2\xc0\x37\x68\x42\x49\x91\xa2\xe1\x85\x83\x5f\x19\xef\xbd\x57\xaf\x95\x3f\x80\xd5\x80\x3e\xe6\xb1\xf1\xda\xf3\xc6\x97\x4c\x7d\xfd\xc5\xd8\x76\x7c\x68\x81\x08\xe2\x94\x6a\x52\x9d\xd6\x3a\x82\xb7\x54\x28\xdc\x49\x13\x86\x7d\x88\x83\x6c\x23\xb8\xc9\xaa\xe9\x9e\x97\x43\xf2\x18\xdc\x16\xf8\xe7\xaf\xd0\x0f\x44\x1b\xf1\xc7\xba\x7d\xa3\x5c\x01\x2f\x60\x72\xf3\x07\x40\x6c\xe4\x4f\xa0\x73\xc3\x80\x5b\xa5\x9c\x68\x06\xae\xbb\xb5\xe1\x75\xfa\x3f\xa6\x09\xee\x63\x3d\x8f\x66\x81\x01\x33\xab\xad\xa1\x82\xa2\x9c\x0b\x02\xfd\x3c\x40\x03\x0a\x73\xd0\xe6\xdb\x94\x1a\xfb\x71\xa4\x21\x98\x42\x47\x51\xc1\x43\x50\x7b\x45\x55\xe0\x8f\x29\xbc\x2c\xce\xa3\x31\xb0\x9a\x98\xa9\xd6\xd9\x95\xa6\x49\xc7\x0e\x0b\xe5\x6c\x7d\x59\x69\x4a\x5e\xf6\x21\x71\xd7\x2e\xbb\xdc\xd2\x11\xc2\xee\x0e\x2a\x1f\x81\xfe\x31\x46\xf3\x6b\x4a\x31\x3a\xef\x9b\x04\x2b\x0d\x6c\x8c\x63\x5a\x15\xf1\xd8\x84\x74\xed\x67\x9b\x6d\x17\xc7\x5a\x17\x49\xcb\x44\x4f\x4e\x2a\x72\xd4\x4c\x07\xc3\xc2\x07\x07\x42\xd1\x0c\xf5\xdb\x37\x55\xfa\xb9\xe8\x8a\x7c\x2a\x18\x64\x7c\xa8\xa3\x3e\x26\x32\x8a\xfd\x77\xa8\xf9\xb3\xa4\xaa\xc9\x9c\xcd\xb7\xd2\x8b\x41\x87\xf1\xdf\xe2\xc5\xb0\x8a\x16\xad\x29\x41\x88\x8d\x29\x00\x86\x69\xcb\x76\x6f\xa8\xd4\x5d\xae\xa3\x56\xb3\x1b\xa3\x17\xf7\xff\xb7\x51\xe8\x5b\x9f\x53\x2d\xa2\xb3\x3e\x3c\x5c\x34\x85\xe9\x4f\x2b\xb0\xed\xdb\x23\x25\xe8\x49\x93\x1c\xf5\x02\xb6\x21\x10\xe9\x7e\x39\xe6\xed\xc1\xbe\xf1\x68\x18\x7c\xe9\x35\x8d\x11\xbe\x36\x11\x5b\xed\x9e\xab\x36\xc4\x2a\xd7\xe8\x98\x44\xf8\x7b\x08\xd5\x6f\x47\xca\x5b\xf7\xb6\x76\xfa\x8b\xcb\xa4\x67\xbb\x5b\x68\xc4\xc4\xea\x4f\x81\xa2\x4f\x28\x6e\x21\xf4\xb3\x45\xba\x58\xf5\x8d\x6f\x45\x1b\xc1\x8c\x84\x85\xb4\xc9\x62\x9a\x75\x82\xa9\x89\xb8\x72\x85\xf8\xf0\x0f\x55\xed\x6f\x61\x76\x2f\x63\x1d\x50\x3d\xbb\x13\x29\x7d\xba\xf3\x4a\xe3\xe4\xb2\xa6\xa8\xde\x42\x89\x5b\xaa\xf4\x43\x97\x19\x21\x24\xf9\xd0\x12\xb0\x48\xbe\x9e\x38\x21\x0f\x1c\x68\xe6\x26\x16\x5f\x61\xcf\xeb\x9b\x9b\x1b\x37\xc3\xc5\x86\x70\x45\x77\x2d\xfb\xe9\x4a\x4e\x1b\x1a\xfe\xe1\xf7\x46\x01\x68\xcf\xf8\x2c\x6f\x10\xe7\xc9\x51\xd7\x14\x2c\xf3\x7b\xf8\x85\x58\x9c\xf7\xc7\x85\x2a\x54\x64\x94\xa6\xe8\x26\x61\xe3\x7b\x43\x01\x38\xde\x88\x1e\xf6\xff\xec\xd3\x8f\xd3\x06\x84\x29\x05\xb5\x5a\x0c\xd7\x5d\x9a\x76\x82\xc0\xa4\x09\x84\x01\xbe\x46\xf4\x0b\xac\x8c\xdb\x51\xd0\xdd\xfd\x10\x4f\x82\xa8\x77\x4b\x4b\xa1\xb1\xa6\x55\x35\x8d\xf5\x9b\x14\x4b\x5b\xa2\x2f\xf2\x2b\xfe\x82\x07\x94\x86\xda\xf8\x6b\xca\xa4\xe4\x47\x75\x52\x1c\x85\x39\x38\x34\xa0\x06\x79\xc6\xc8\xa5\x31\x5b\x19\x9f\x0c\xaf\x9a\xac\xeb\x65\xe6\x50\x69\x7c\x45\x1b\x40\xbf\x32\xd1\xfa\xa8\x12\x16\x9b\x09\x68\x0b\x05\x07\x24\x76\xa8\x90\xb0\xf0\x27\x36\xa0\x3b\x0a\x7d\xf2\x6b\xbb\x67\x21\x3b\xc5\xad\xb7\x68\xac\x0f\x27\xbb\x70\xdf\x66\x6d\x6e\xfb\xd5\x19\xab\xef\xf0\x08\x3d\xaa\xa0\x55\x51\x7f\x43\x95\x02\xbf\x46\xc5\x2a\xbe\x56\xd9\x1b\xc9\xcc\x91\xf5\x0d\xc5\x97\x18\xe0\x9f\x29\x4b\x72\x86\xc6\x0a\x22\x48\x6a\xad\x79\x9a\x15\xdb\x42\x51\x19\xb3\xce\x3b\xbc\x85\x77\x75\x8a\x4e\x24\x44\x1c\x5f\xa1\x89\x82\xa6\xc2\x6d\xa5\xf7\x46\x82\x3f\x62\xcd\x7b\xba\xc6\x64\x61\x1e\x2d\xc8\x86\x42\xb8\x8c\xdb\x1b\xd4\x40\xfd\xda\x36\x27\x72\xf5\x6e\x89\x4a\xdf\x47\xe9\x86\x6f\x6a\xbe\x65\x0e\xd2\xb9\x08\x51\x70\x82\xa0\xb2\x80\xc4\xe4\x1d\xb5\x51\xdd\x98\x70\xfb\x90\xde\x7c\xd7\xe6\x43\x57\xd8\x69\xed\xa2\xa8\xe0\xbb\x3f\x62\x7b\x19\x0f\x21\xdb\x2d\x85\x8f\x75\x25\x5f\x95\xf6\xd2\x64\x35\x5d\x52\xa4\x92\x0b\xa3\xc6\x17\x67\xbd\x0b\x08\x09\x0a\xf8\xff\xe0\x09\xd7\x17\xea\xce\x15\xc2\xf8\x4f\x29\x84\x03\xc2\x2e\x4f\x23\x5f\x10\xd5\xba\xa3\x13\x43\xb2\x30\xd3\xcc\xcd\xaa\x3f\x60\x3d\x3d\x67\x2e\x94\x43\xd5\x79\x6f\x92\xee\xea\xb4\x92\x88\xbd\xa3\xf0\x67\x37\x30\x25\x74\x7a\xc0\xff\x61\x1c\xcf\xe9\xb8\x7e\x85\x79\x71\x83\x93\x60\x51\x05\x6c\x78\x33\xfc\x6d\xca\x38\xf7\xa2\x32\x72\x32\x45\x61\x93\xae\x61\x6c\xbf\x20\x35\x11\x46\xa3\x89\xbc\x1e\x05\xc5\x88\x3b\x9a\x44\x7e\x63\x14\x8c\xb9\x6f\xd7\x0a\xdf\x1b\x9b\xa5\x6d\xee\x1f\x09\x69\xbd\xfa\x25\x12\xe2\xd7\x11\xf9\x86\xa6\x70\x04\x6c\xd0\xd2\x16\x0c\xba\x16\x5f\x73\x8f\xad\xed\x5b\x33\xb4\x50\x4b\x98\xd5\xf8\x73\xbf\x09\x46\x41\x97\x60\x68\x56\xb3\x34\x8e\x73\x20\x61\x90\x99\xbf\xac\x50\xc3\xd7\xc6\xec\x80\x36\xfe\x9c\x7d\xcf\x4b\x61\x00\xe2\x32\x22\x9a\x4c\x6f\x89\x6f\x26\x6a\xab\xbb\xe7\x9a\x79\x6a\x86\x98\x4b\xa8\x41\xc2\x1e\x1f\xef\x07\xd5\x29\xd4\x78\xef\x29\x67\x3e\x22\xbb\xc4\xe9\x90\x3a\x74\xfb\x67\xf8\x58\x7d\x5f\x81\xa2\xdf\x57\x45\xe7\xa2\x6f\x07\xb9\x8d\x97\x6d\xfe\xb0\x56\xbe\x0c\x0d\x09\xd4\xee\xf0\xc3\xc6\x84\x4b\xce\x23\x40\xf6\x0f\xb6\x30\x13\x92\xaf\xdd\x12\x0a\xdd\x8d\xc6\xf4\xa6\x95\x16\xe3\x65\x54\x9f\x25\xf8\xd0\x9d\xe9\xf2\xd0\xa1\x2d\x0d\x4f\x83\xe7\xb9\x8c\x6a\xf8\x5b\x0a\x8e\x05\x18\x09\xff\xff\x51\xf0\x30\xfb\xa3\xb1\x3f\xd6\x77\xf9\xdf\xd1\x8e\x74\x51\x90\xc4\x5f\x79\xa2\x45\x39\x87\xdf\x6f\x3c\x23\x65\x9d\x2a\xcd\xba\xe9\x87\xe3\xa5\x41\x1d\x2e\x99\x1d\x98\x63\xa8\x5e\xbe\x3c\x52\xdb\xd8\x3f\xdf\xe0\x89\x32\xbb\x2f\x18\x74\xef\xda\xc5\xef\x8f\x0b\x53\xbe\xf9\x15\x72\xdc\xeb\xca\xee\x92\x99\xdb\x08\xcb\xaf\x8d\x94\x66\xfe\x31\xa4\x52\xe2\x65\x48\x19\x0f\x06\x83\xed\xf6\xf9\x2b\x69\x94\x90\x70\x01\x70\x8e\xb8\x96\x09\xda\xa8\xac\xdf\xd6\x51\xd0\x30\x5d\xb2\x53\xd5\x33\x23\xb2\xbd\x48\x2b\x58\x14\x4d\x02\xe1\xe3\xac\x97\x87\x44\x93\xa3\x4a\x6d\xdc\x32\xe8\x21\x98\x67\xf7\x30\x0c\x5a\x3a\x97\x79\x5d\xaa\xfb\x8e\xac\x42\xb9\xf4\xa3\xde\xc6\xd7\x13\x41\x45\xb5\x31\x0c\xca\xb8\x70\xc3\x98\xf1\x9a\xe2\x59\xd4\xf0\x44\xba\x8b\x4a\xd4\x3e\xef\x94\x59\xb6\x0a\xe1\xc0\x79\x0f\xfa\x09\x0a\xf3\xe7\xc6\x54\x0c\x07\x03\xf2\xa4\xab\xc6\x15\x51\xcd\xd5\x51\x48\xd0\xd0\xc6\x44\x21\x70\xeb\x9a\xaa\x0e\x1c\x9d\xd8\x8a\x76\x56\xa9\x4c\xec\x06\xae\x8a\x5b\x1f\xd8\xe9\x0b\xab\xb0\x6b\x61\x0d\xd4\x01\xd4\x49\xcc\xb3\xab\xef\x13\x43\x7a\x1f\x08\x94\xae\xd8\x3a\x6e\xe0\xe5\xab\x98\xf7\x83\xec\xf9\x07\x4c\xdf\x55\xb5\xd2\x79\xce\x4d\x5f\xa7\x35\x24\xb0\xac\xba\x01\x4e\x97\x6d\x96\x5b\x43\xc9\xb1\x9c\xa4\x8c\xbe\xc0\x17\x9d\x53\x5d\x0a\x88\x10\xa1\x13\xb3\x8e\x49\x85\x44\x19\xfa\x0c\xb4\x54\xff\x19\x60\xd8\xd2\x93\x13\x85\x7d\xe3\x32\xca\x72\x31\xbe\xe0\x49\xe0\x10\xff\x07\xb4\xb9\x61\xa1\x3c\xb3\xb6\x43\x2b\xb5\x2e\x93\xdc\xf1\xb4\x42\xa2\xb3\x7a\x0f\xf6\x28\xa4\xea\xe2\xb4\x47\x63\x80\xb9\xfb\xc6\xc4\xae\xbc\x67\x4f\xd3\x24\x26\x5e\xcd\x1d\xe7\x0a\x72\xc0\x35\x3c\x77\x77\x5d\xfb\xc9\xe8\xbe\x69\x6c\xda\x99\xe9\xa6\x99\xe2\x20\x1c\x53\x15\x88\x63\x35\x80\xf8\x79\x98\xf8\x07\xfb\x20\xe1\x13\xd3\x43\xf2\x8d\x2a\xb1\x0c\x33\x97\xa7\x89\xe8\xb0\x70\xec\x1f\x85\xf1\xba\x3b\xf1\xee\x28\x22\xce\x73\x9b\xf4\xd8\x16\x4f\x70\x55\x8d\xcf\xbf\xe0\xd5\xb0\x6b\xea\xfe\xf0\x0c\x19\x9a\x0e\xa5\x75\xeb\x87\xab\x21\x5c\x3f\x3c\x26\x77\x51\x14\xb1\xed\x4e\x55\x6f\x1a\x65\xdf\xbb\x54\x86\x41\x95\xeb\x3a\xbd\x68\xd1\x21\x08\x2d\xa4\x15\x93\x0d\x28\xa6\x12\xd7\xaa\xea\x23\x68\xba\x00\xdd\xe0\xf3\xf6\x85\x19\xf9\xff\x55\xfe\x58\x76\xfa\x4f\x36\xbc\x4a\xf9\x76\xb0\xd6\xa9\x66\xb6\xaf\xd9\x9a\xda\xfb\xeb\x5f\x64\x74\xd8\x11\xad\x56\xb5\x65\x4d\x51\xe0\xcf\xd3\xd6\xeb\x11\xcb\x22\x14\xfb\xaf\x7f\xa1\x35\x2e\x7d\xe6\x45\x18\xff\x1e\x3a\x89\x48\x05\xb6\xac\x29\x05\x0d\x96\x8a\x45\xde\xb3\x79\x2d\x4c\xf9\x8b\x1a\xb6\xf0\x09\x6a\x96\x0a\xfa\x58\xc3\x95\xe8\x40\xc1\xa7\xcf\xa9\x42\xcf\xa2\xc3\x64\x98\xd5\xfc\xda\x17\xfd\x87\x64\xa1\xe4\x66\xf5\x71\x9c\x36\x02\xcb\x09\xe9\xec\xf4\x5a\xe3\x4b\xcf\xf1\xe4\xe7\x4e\xa8\xf6\x2e\xf2\x25\x97\xe0\x49\x71\x9a\x26\x11\xc5\x64\x9b\x9f\x68\xa9\x6e\xf4\xd4\x5a\x75\x3c\xf9\xf5\x5e\x0d\xa4\x88\xd8\xd1\x10\x03\x71\xf0\xf7\xe9\x14\xf1\xa2\x70\x01\x47\x4d\xec\xe7\xf5\xbb\x13\x71\xed\xae\x5d\xcd\x25\x45\x04\x12\x93\x12\xfa\x62\xbe\x99\x48\xe2\x77\xcf\x35\x07\x21\x89\xc7\x29\xc5\xc1\x84\x66\x9b\x8a\xc5\x43\x8d\x79\xe3\x4a\xdf\x14\x53\x8d\x17\x04\xdc\x79\x1b\x87\x22\xce\xe4\xbf\xa6\x3d\x4b\xdc\xcc\x3e\x19\x82\xea\x74\xd8\x77\x79\x01\x5f\xba\xed\xf4\x01\xcc\x05\xe8\x6c\x32\xb6\x98\xc6\xd5\x87\x7d\x1e\xf8\xfd\x36\x4e\x67\x24\x88\xa7\x50\x82\xe4\x9b\x91\x92\x8a\x64\x9f\x0e\x89\x37\xc7\x24\x08\x06\xab\x5b\x02\x0e\xe3\x1c\x02\x2c\xdf\x84\xf3\x4b\xe1\x9a\x52\xfb\xc6\xc3\x48\x73\xee\x41\x59\x52\x5e\xd8\x61\xdf\x32\x50\xd8\x83\x83\xc3\xa6\x79\x4a\x63\x94\xee\xa9\x1a\xe9\x30\x8d\x63\x71\x41\x41\xb9\x9a\x49\x65\x7c\x13\x69\xd1\xac\x55\x3a\x3d\xab\xd9\xe8\x61\x74\xbe\xe5\xf3\x01\xf5\x8f\x45\xe3\x38\x74\x45\x3f\x98\xc8\xa1\xaa\x8d\xb2\x6b\x56\x25\x84\xc7\x94\x3d\x1e\xa9\xf9\x7b\x1c\xb3\xc5\x57\xe3\x33\x57\x7d\xb1\xa9\x9e\x54\x55\x73\x4f\xeb\x7a\xec\x69\xdf\x7f\xec\x97\x49\x37\xb3\x5d\x76\xe1\x42\x50\x88\x76\x1b\x5f\xaf\xd5\x58\x16\x77\x4c\x1c\x4f\x87\xd4\x0d\xc5\x3e\x1c\xe3\x5c\x5c\x41\xf3\xe4\x27\xaa\x1e\x7c\x7b\x82\x10\x47\x01\x7d\x47\xe4\x57\x11\x51\xde\xd6\x70\xf6\xc9\x8f\xbc\x30\xbb\xaf\x19\xa7\xe9\xd2\x98\xa4\x1b\x6b\x53\xf0\xcd\x78\xe8\x9c\x30\x20\x49\x29\x6a\x7f\x21\x54\xad\xe6\x42\x5c\xfe\xf4\xe4\x22\xed\xb2\x5e\xb5\xf8\x86\x86\xa3\xe6\xdb\x38\x06\x71\xe0\x7f\x14\xa9\xad\xf0\xd2\x04\x6a\x7e\xcf\x1e\x48\x38\x2e\xba\xc4\xe5\x7d\x9f\xcd\xb2\xeb\x8f\x0a\xee\x4e\xd6\x04\x77\xcd\x41\x9a\xb8\x22\xb8\xc6\x7b\x94\x76\x48\xd1\xce\x4d\xd4\x26\x67\xf7\x35\x4d\x59\xf4\xd3\xcc\x1d\x32\x9e\x37\x8b\xc4\xe8\x8f\xa3\x90\x24\xfd\xb1\xcf\xfc\xc8\x75\x77\xd9\x76\x49\xca\x1c\x20\x33\xb4\x1e\xb1\xbb\xae\xe3\xeb\xa0\xb1\x38\x35\x6e\x69\x5e\x3d\x14\x6e\x3e\x50\x60\x89\xb6\xc9\x73\xd5\xbe\xe5\x97\xca\x37\x13\xb5\xf7\xb9\xb9\xa6\x49\xba\x8d\x6a\xaf\xc5\xce\xc1\x92\xde\x7c\xa3\x7c\x7b\xdb\x65\x51\xd8\x6c\xaa\xfa\x97\xa8\x63\x1e\x1b\x05\xb1\x9c\xdb\x63\x8e\xe3\x21\x34\xc9\x13\x6b\x96\x44\xea\x40\x44\xe4\x42\x25\xf3\x9c\x2a\x16\xb3\xc5\x07\x9f\xfa\xd5\x43\xac\x1f\xae\xc3\x36\x88\x66\x1b\x5b\xc7\x7a\x82\xa4\x07\x3f\xbf\x1e\x3d\xea\x37\xd1\xbe\xcd\x1e\xa6\x7f\x86\xd4\x06\xaa\x5b\x08\xe5\xd0\x72\xf7\x22\x1a\x3e\xcc\xda\x46\x07\x2a\xf2\x8a\xcd\x38\xc3\x40\x0f\xf8\xbf\x69\x7b\xb3\x18\x49\xce\x3c\x3f\xac\x3b\xab\xaa\x9b\x64\xf3\x1c\x72\x66\x77\x25\x08\xca\x95\x07\x1e\x19\xa6\x46\xd2\xfa\x45\x5e\x3f\x64\xba\xba\x76\x28\x36\x34\xc5\x42\x75\xab\xb9\x26\xf6\x81\x91\x99\x5f\x55\x06\x2b\x32\x22\x37\x22\xb2\x8a\x35\xf0\x83\x6d\xf8\xc1\x80\x05\xd8\x92\x05\x5b\x16\x0c\x41\x90\x0c\x59\x16\x74\xed\xce\x4a\xda\xb5\xa4\xcd\x9a\x59\xcd\xa1\xe5\xcc\x2c\xc9\xe1\x7d\xf6\xc1\xbe\xef\xfb\xae\x36\xe2\xff\xfb\xff\xbf\xef\x97\x95\xc1\xb5\x5e\xfc\x16\xd1\x9d\x95\x19\xc7\x77\xfc\x8f\xdf\xb1\xab\x1d\x14\x6e\x55\xa0\x4c\x46\xe7\xf3\x5f\x41\x19\x13\x0b\x42\x63\x2b\xf4\x81\xee\x90\x5d\x4c\x11\x97\x80\xd1\x6b\xfc\xd6\xe2\x2a\x46\x5d\xe0\x2b\x03\x23\xea\xf6\x67\x27\xbd\x34\xd9\x3c\x62\x99\xec\x33\xc9\xb5\xae\x06\x6e\x93\xc4\x5d\x97\x8a\x79\xae\x6f\x96\x6b\x9a\x87\x4d\xe8\xe3\x16\xa9\x84\x7d\x4a\xa0\xb1\x24\x83\x2f\x2a\xb3\x26\x15\x3b\x6d\x36\xc9\x35\xcc\xe3\x6e\x12\xa7\x71\xf7\x8f\x31\xe1\xab\x21\x37\x6c\xc4\x3d\x97\xfa\x26\x28\x52\xf9\xcb\xd4\xeb\x82\x8c\xbf\x42\xfc\x08\x84\xda\x8b\x8b\x68\x35\x77\x8e\x9c\x4c\x2f\x91\x93\xe9\x25\xe2\xf5\x0e\xb3\xa2\x1c\x66\x5e\xb6\x10\x3b\xf9\x27\xf2\x1b\x7a\x5c\x77\x33\x9d\x28\x4e\xb2\x51\x39\x59\xf3\xf7\x10\xaa\x3b\x53\x41\xac\xd8\xad\x27\x49\x96\x05\x59\x03\x84\x09\xef\x93\x28\xc5\xfb\x53\x98\x17\xaf\x52\x5a\xc4\x3d\xe4\xbc\x5e\xd8\x7f\x79\x5e\x77\xdb\xb9\x76\x60\xab\xdc\x0d\x1e\x0d\x79\x54\xc5\x09\x18\x28\x58\x10\x00\x19\xc5\x83\xbb\x23\x3f\x6b\x0e\xa9\x01\x2e\x35\xdb\x0e\xf4\x9d\x6e\x1e\x6d\xac\x64\xb9\x72\x84\x4c\x04\x4f\x5e\x9f\x75\xab\x9f\xa0\x62\xdd\xe0\x9b\x55\x2c\xbd\x2d\x82\x49\xcb\xdb\xe7\xa9\x0e\xa9\xe4\x67\x73\x37\xfc\x85\x89\x62\x73\xdc\x73\xb9\xc9\x1a\x2f\x1c\xf2\x25\x63\x2a\x1f\x7f\xe9\x53\xa1\x2e\x8a\x67\x84\xf8\x5c\xf3\xdc\x38\x28\xae\xfd\xdc\x57\xc3\xf3\x51\x0f\x9b\xb1\x92\x76\xea\x2a\xe7\xd3\xb5\xbe\xa5\xa6\x4b\x92\x38\x2b\xcb\x06\xe9\xbd\xbe\xad\xf5\x15\x3d\xf3\x41\x73\x1e\xad\x1b\x7a\xc1\x3a\x03\xdc\x26\xa0\x9a\x9d\xcc\x23\x0f\xc9\x40\x09\xf5\x04\x33\x70\xa6\xc5\xc0\x5e\x5c\x6c\xba\x75\x40\x6d\x75\xc0\x7a\xba\x81\xb7\x86\xbc\x44\x0b\x28\x4c\xc5\x8b\x19\x52\x4b\x3c\x2b\x6b\x84\xea\xf2\x93\xbe\xcb\x71\xca\xf7\x57\x46\xe5\x28\x97\x40\x13\x8f\x17\x91\xfc\x39\x92\xed\xbe\xde\x0a\x44\x8b\x5d\x5b\x4f\x52\x5f\xd5\x25\x3d\x61\x9d\x98\xf1\x01\xf1\x13\xc7\x3c\x45\x02\x16\xf1\x8e\x50\x4b\x54\x50\x41\x6b\xbc\x78\xa1\x18\x45\x46\x6b\xa7\xaa\xf3\x51\x96\x0e\x38\xef\xd1\xed\xdd\x2c\x17\x0d\x33\x7c\x87\x26\x0a\x2d\xaa\xb7\x7f\x31\x35\x33\x6d\x30\x75\x24\x3e\x0b\xae\x03\x37\x78\xd0\xde\x20\x58\x7c\xdf\x45\xbd\x82\x94\xb8\xd0\x6c\x43\x80\x34\x61\xf0\x7e\xb5\xee\xed\xad\xc4\x69\x94\x76\x63\xcd\x7f\x4d\x8a\x34\x0c\x5b\x56\x22\x75\xaf\x8b\x0f\x76\x96\xce\x06\x56\xc7\x36\xe2\x76\xf5\x1c\x00\xb9\xc9\x0c\x08\x48\x6f\x66\xbb\x56\x57\xa2\x93\x65\xa9\x99\xe2\x63\xbe\xff\x04\x77\xa9\x27\x53\x0d\x5e\xaf\x67\x12\xe5\xab\x31\xeb\x7d\x5c\x20\x4f\xe1\x0b\x7e\xd1\x49\x47\x49\x12\xaf\x6c\xce\x90\x2f\xd1\x2d\x8c\x67\xa3\x30\x86\xf2\xf0\x19\x3f\x61\xba\xd1\xc0\xe5\x70\xe8\xc1\x8a\xb6\xa7\x1d\x30\x92\xea\x4e\xa3\x04\x9d\x5a\xaa\x7b\xee\x0a\x97\xaf\x2b\x65\xd8\xf3\x3e\x0f\x9b\x75\xf4\xf9\xf1\xb3\x16\x5a\x67\xa3\xc2\xad\x39\x37\xf4\x6b\xb0\xe9\xc1\x37\xbc\x2e\xdb\xd9\x9a\x52\xff\x52\xb3\xe8\xf6\xa3\x15\x97\xff\x71\x89\x46\xd0\xfd\x2d\x47\xd5\x43\x96\xb6\x0e\xef\xca\xc1\xd2\x29\xd8\x41\x24\x6e\x55\x05\x25\xb4\x40\xd6\xe2\x62\xd9\xce\xcc\x63\xe1\x10\x8c\xbd\x65\xe5\x42\x78\x7b\xaa\x15\xba\x9d\xa7\xea\x92\xd4\xa4\x1a\xad\x6c\x19\x7e\x66\x4c\xb2\x7b\x67\x48\x06\x69\x3d\xce\xa0\x89\x35\x1b\x2c\xb8\xaf\x8e\x43\x3c\x81\xc5\xd5\x44\xea\x69\x4e\x7d\x32\x01\xbb\xe9\xbc\xe6\xba\x93\x5d\x04\xb9\x44\xeb\x28\x4c\xc7\x9a\x4b\x4d\x57\xce\x56\x11\x24\xc2\xae\x3b\xd4\x78\x07\x4c\x4a\x15\xca\x24\x41\x43\x01\xf5\x6c\x8b\x2b\x6e\x83\x61\x94\xc6\xae\xf8\x2a\x29\xf3\xfc\x0d\x94\x9b\xad\xb7\x1d\xf2\xe1\x27\xd1\x2a\xd6\xba\x50\x8b\xf5\x4d\xaa\xf5\x08\xbd\xc8\xeb\x2d\x72\xa2\xbd\x46\xd8\x96\xab\x28\x89\x63\xa5\x52\x5d\x0a\xb5\xdf\x90\xdd\xc6\x5a\xb4\x24\x1e\x64\x22\xe6\x26\x28\x5a\xc5\x9a\x5e\x1c\xfd\x5b\x2f\x7b\xc9\x3a\x99\xc8\xc4\x09\x30\xac\xe4\x5d\xc0\x8e\x80\x8a\x82\x8b\x25\xfe\x1c\xb2\xe7\x4a\x82\x68\x51\x03\xfd\x43\x4f\xa4\x1d\x66\xc9\x66\x51\x6e\xe6\x2e\x75\x94\x4c\x1e\xa7\x98\xe9\x38\x97\xf3\xa2\xee\x5a\xb4\x6a\x76\x7a\x75\xbc\x9a\xb0\xad\xfc\xe6\x48\x10\xa1\x7b\x42\x83\xe3\xa6\x8c\x14\x54\x96\x76\x89\x5e\x80\x07\x75\x2d\x1c\x0a\xcc\x66\x4f\x7d\x83\x94\xa2\xfe\xed\x54\x6b\x69\xff\x7e\x21\x70\x48\xf1\x15\x49\xff\x2d\x64\x78\xdc\xe3\x07\x9b\x6c\x1a\x49\x5e\xa5\xb1\xe5\x28\x0d\x71\xa3\x49\x73\x87\x67\x70\x8f\xa4\xd5\x7e\x30\xc5\x90\x3d\x3c\xbf\x54\x85\x26\xbd\x58\x81\x1d\x54\xd5\x39\x4e\x88\xfd\xe3\xb4\x29\x14\xa5\xeb\xa9\x5e\xa2\x91\xd4\x64\x38\x5a\x39\x2c\x4c\xfa\x3c\xea\xae\xb9\x52\x9f\x72\x9d\x59\x74\x40\xf1\x67\xc3\x32\x1e\xc4\x16\xc6\x2d\x04\x05\x86\xe0\x8d\xa5\xac\x50\x3d\x61\x25\xa5\x1f\x4e\x4d\xb5\x5f\x6d\x76\x5c\xae\xce\x6f\xa8\x14\xe1\xf5\xea\x71\x0d\x93\xee\x20\x3c\x48\x6d\x3f\x25\xa7\x7f\x7f\x42\x79\x55\xb4\x9a\xcd\x05\xe3\x72\x6c\xdd\x26\x03\x47\x13\x0a\x81\x38\x72\x65\x60\xa5\x4c\x5b\x35\x2c\xa1\x2b\x2e\xd5\xb0\x13\x4f\x45\x71\x54\x7a\x42\x60\xc7\x61\x5f\xe4\x81\x42\x73\x6d\x46\xb2\x39\x3d\x9e\x10\xc2\x71\x09\x68\x20\xfe\xfd\x54\x53\x59\x39\x99\x92\x9f\x79\x07\xe3\xe5\x79\xff\x1f\x13\xc6\xa3\x71\x0e\x90\x0f\x70\xd3\xca\x9b\xd3\x13\x1f\x82\x0c\x93\x28\x4e\x93\x4d\x49\xaa\xac\xf7\x55\x7d\x3b\x03\xa7\x15\x34\x50\xeb\x43\x2b\xed\xd1\xd4\x43\x98\xf0\xf5\x78\x51\x7a\xec\x31\xa2\x03\xd7\x8b\xbb\x71\x0a\x60\x87\x35\x8f\xbe\xab\x61\xa9\x9e\x4d\xed\x09\x07\x0e\x34\xd3\x68\x30\xe9\xc7\xa8\x05\x1b\xab\x0b\x4f\x4b\xec\xe4\x6e\x10\xa7\x71\xd1\x75\x0a\x4f\xc6\x9b\xc4\xcd\xe8\xf1\x54\x59\x6a\x79\x5e\xcc\x03\xd8\x37\xf1\xa3\xc9\x9a\x5e\x20\x5b\x5d\x25\x3f\x8e\x60\xc4\x8b\xde\xbf\x8f\x91\x3c\x75\xe3\xd8\x98\xe3\xa5\xc0\x57\x3e\x36\xb5\x8e\x3c\xdf\x2c\xca\x2a\xe4\xf1\x8d\x9e\x86\x16\x9a\xcd\xbb\x3f\xb4\x15\x93\x48\x9a\xdf\x7e\x2b\xd6\x9a\x87\x9e\x54\x93\xc9\xa6\x7a\x54\xc6\xc5\x4a\xd4\xf5\xb6\x67\x86\xa3\xab\x2e\x44\x8f\xa7\x8a\x86\x0b\x87\x9a\xa3\xe1\x50\x31\xf4\xea\x94\x21\xf3\xc0\x5c\x33\x42\x49\x73\x2d\xcb\x5d\x84\x9a\xbb\x69\x15\xca\x95\x58\x59\xb9\x46\xdd\x75\x90\xe5\x6e\x86\xc4\xe0\xa1\xee\x8a\x3d\x6b\x1b\x7b\x16\x2a\xb0\x8f\xb5\x6b\x2e\xac\xdc\x1c\x1a\x36\x08\x1b\x18\x76\x6c\x3d\xf6\x58\xfd\x6e\x26\x56\x39\x16\x3b\x79\x2f\x86\x1a\x62\x6a\x96\xf4\x14\x00\x8e\xbe\xee\x3d\x5c\x03\xe0\x1e\x73\x52\x9e\x47\xfc\x71\x81\xf3\xd5\x15\x6d\x9b\x2d\x78\x5d\x66\x19\x3a\x74\x62\x7c\x0c\x08\x7b\xa2\xbf\x71\x7d\xaa\xc0\x27\x50\xc0\xc8\xe5\x59\x1a\x8d\xca\xb8\x1b\x25\xbb\x82\x75\x74\x36\x94\xc8\x04\xbf\x8e\xf2\x83\x1e\x53\xf5\xa0\x1b\xe5\xbd\xd8\x10\x7d\xca\x08\xc0\x3b\x30\x7a\x80\x5d\x75\x52\x2d\xe6\x9b\xfa\xf0\xd0\x79\xbd\x2b\x53\x55\x8f\x49\xb4\xae\x17\xaf\xac\xb8\xdc\x73\x24\x35\x27\xbf\x4e\xfa\xed\xba\x8b\x9b\x22\xc1\xb4\x3c\xd2\x52\x73\x94\x6e\xc4\x49\xe2\xc3\x57\x74\xd0\x6f\xc9\x74\xd0\x63\x2a\x78\xf7\x5c\x12\xaf\xbb\x1c\xc6\x79\x78\xf6\x0f\xe4\xe7\xf4\x98\x99\xdb\x17\xd1\xac\xb7\x96\x11\x11\x98\xca\xac\xb7\x8a\xbc\x08\x5b\xa7\xe2\xce\xf5\x64\x8b\x57\xd8\x22\x85\x78\x25\x5e\xfa\x15\xcc\x34\x3d\x99\x4a\xe2\x0f\xcf\x2f\x36\x4b\x97\xe7\x59\x95\x67\x36\x42\x82\x73\x4c\x5e\x8a\x1e\xb3\xa4\xa6\x2b\xe2\x74\xa2\x14\x31\xe6\x52\x04\xcd\xe4\x28\x57\x67\xa0\x17\x3c\x87\xac\xe1\x65\x7c\x4f\xfa\x46\xf5\x37\xfe\xd2\x5f\x28\xe6\x82\xc7\xfe\x6d\x56\xb7\xbd\xd9\x22\xf3\x1f\x00\xf4\x2d\x02\x93\x9b\xc2\xc3\xbe\x31\x15\x7a\x88\x77\x40\x94\xe7\xb1\xad\xaf\x3e\x02\xa5\xee\x72\x4d\x57\xb4\x9b\xa5\xdd\x64\xe4\x75\xf4\xd4\x43\xbe\x15\x40\x98\x81\x18\x90\x8d\x72\xe0\x61\x50\x0b\x47\x0e\x3a\xb3\x45\x63\xea\x91\x2d\xb9\x78\x09\x0d\x57\xff\xa4\x94\x87\xb1\x9b\x4d\x8b\x0d\xee\xdf\xdf\x5c\x4d\xa2\xdc\xa6\x3f\x61\xef\x4d\x39\xe8\x34\x3d\x58\xb7\xee\xf2\xcd\x27\x08\x1b\x8d\xe1\x44\x32\xec\x66\xf2\x79\x7d\x1c\xda\xaa\x6a\x64\x83\x25\x1a\xd8\x50\x6f\xdc\xf3\xe2\x62\x60\x47\x57\x37\x8e\x50\xe4\x07\x2d\x76\x9b\x15\xa3\x08\x83\x5e\x90\x77\xe8\xf5\x56\x70\x0e\xd7\xbd\x18\xf3\xe8\x56\xad\x38\x7f\x1e\xad\xce\x04\x70\xc8\xe5\x16\xb1\x2d\x61\x74\x88\xfe\xf0\x4f\xeb\x04\x05\xba\x59\x32\x1a\x98\xa1\x98\xc9\x35\x87\x31\x75\x91\x86\x69\x37\x89\x8a\x42\xe2\x62\x60\x11\x55\xd5\x01\x13\x0b\xfc\x58\x35\xf5\x6f\x85\x84\xe3\xbd\x49\x33\x02\x52\x56\xfb\x11\x31\x96\xca\x2a\x28\x0a\xa2\x14\x17\xc9\x6f\xe8\xe2\x04\x29\x6d\x18\x7d\x87\xec\x69\x80\x85\x30\x91\xcc\xa7\x48\x1a\x3b\x4e\x5d\x6f\x8e\x45\xad\xbe\x8b\xeb\xf0\x42\xc7\x8b\xd6\x4b\x78\xb4\x1d\x04\x3f\x74\x07\x05\x64\xee\x5a\x0d\x6e\x52\x34\xef\xba\xe5\x4c\xd8\x83\xfe\x90\xa4\x20\x4e\x11\x47\xf8\xe2\x54\x87\x65\xe9\xa5\x83\x3b\x38\x36\x18\x1f\x77\x59\x0b\xf4\xee\xd4\xf6\x2a\xf3\x2e\x2b\x80\x59\x45\x8e\x70\x64\x4c\xc6\x14\xff\x8a\x84\x1d\x3e\xa6\xb0\xbd\xcc\xca\x28\xd9\x57\xbd\x08\x96\xe5\x47\xbe\x7b\x99\x48\x60\x97\x5b\xd4\x71\xb9\x8d\xb1\x83\x54\x54\x69\x18\x0a\xa5\x6a\x05\xba\xe8\xae\xb6\xe0\x01\x90\x05\x7d\x2e\xc3\x5e\xff\x63\x8b\x64\x86\xd5\x61\xd0\x70\xab\x01\x17\x24\xea\x7d\x1b\x71\xe1\x66\xc8\x78\xf3\x28\x3d\xbb\xbb\x84\x8d\xbf\x32\x0e\x3e\x71\xa3\xb4\x18\x15\x43\x67\x96\xdb\xaf\xf8\xbb\x26\xa1\x85\x8f\x29\x95\x53\x41\xd0\x7d\x81\xe5\x76\x43\x22\x19\xdc\xde\x0f\x25\xec\x42\xe3\xe7\x1e\x8b\x80\x5c\xa4\xfa\xee\x6e\x60\x1a\x48\x52\xec\x60\xa8\xd9\x05\x8e\xe5\x13\x5b\xac\x82\x7a\x89\xa4\xad\x1a\x68\xf2\x63\x62\xec\x6e\x3f\x41\xea\xf2\x23\x78\x73\x99\xf0\x3c\x77\x94\x42\xd1\x51\xb8\x52\x8f\x13\xdf\x5c\xd5\x39\x80\x75\xd9\xb5\x45\xa6\x1c\x2a\xee\xc3\xb6\xc5\x28\x4d\x7c\x80\xb7\x0a\x08\xc1\x07\x54\xff\xbf\x3f\x0e\x16\x22\xe7\x24\x9b\xc5\xdb\x9a\x13\x2c\x05\x76\x82\x86\x0a\x04\x7a\xe5\x13\xe3\x7e\xff\x9f\xcf\xb6\x77\x66\x97\x8b\x8b\xd5\x10\x97\x57\x14\x75\x12\x47\x5d\xb0\xcf\xb1\xee\x19\x28\xde\x36\xaa\xef\xc4\x69\x97\xb4\x4c\x4e\x0a\xd4\xde\xd4\x5b\xc8\x9f\x2c\xcf\x86\xc3\x2a\x17\x5a\x36\x92\x35\x90\x4f\xe6\xdc\xb3\x73\x5d\x3b\xf4\x12\xf0\x3e\x5d\x21\x83\x6e\xa3\xad\xc2\xd8\x05\x53\xd4\x99\x12\x5c\x9c\x6f\xae\x44\x71\x52\xb0\xb7\xd5\xa7\x63\xd2\x20\xff\x34\x28\xc0\xbb\x44\x38\x6c\xe1\xab\x3f\x1f\x93\x22\x1a\x24\x3a\x8d\xf7\x31\x81\x34\x88\x8b\x47\x44\x53\x09\x25\xc6\x33\x54\x6e\xbc\x86\x8d\x46\xff\x03\xa3\xcd\x67\xc6\xd5\x10\xf0\xdc\x7a\xaa\xc0\xe3\xf5\xa0\xe1\xf7\x8e\xfc\xaa\xea\x46\x91\xb5\x57\x2f\xeb\x96\x79\x9c\x02\x21\x88\x9b\x7f\x15\xdf\x68\x3d\xfa\x06\xc9\x50\x92\x80\xf4\x70\x98\x29\x6f\xbd\xba\x16\x93\x9a\x0a\xd3\xf3\x78\x9d\x1f\xd5\x46\x9c\x4a\x59\xfe\x95\xed\x2f\xd8\x65\xf4\x0e\xad\x54\x97\x68\xf1\xef\x67\xa3\x7c\x2f\x49\x52\xde\xd4\x5b\xc2\xfe\x7f\x07\x53\x13\x25\x53\x60\x5d\x91\x79\x7f\x42\x1e\x34\xf7\xc9\x77\xf0\x1f\xe3\x37\xf1\xa8\xce\x92\x36\x7e\x27\x4b\x7b\x7d\x89\xdf\x51\xc3\xc3\x63\x52\xab\x79\x3d\xa1\xa2\xe1\x46\x5c\x48\x13\x27\x9d\x61\xb0\xe9\x79\xd6\x72\xc5\x76\x81\x20\x61\x7b\x0a\x01\xb2\x7f\x7f\x33\x5a\xcd\xb3\x6e\xdf\x0d\xaa\x50\x5d\xc6\x39\x06\x07\xe4\x34\xf5\x78\x2b\x44\x21\xab\x79\x36\x1a\x3e\x35\xe3\xfd\x82\xbe\xf1\x74\x5b\x96\x60\x25\xd2\x60\x20\xfa\x39\x1d\xda\xc1\x3f\x21\x08\xae\x79\x27\xa0\x6b\xf6\xe8\x56\x20\xac\x3c\x9c\x70\x0a\x6e\xec\xdf\xaf\x83\xe6\x08\xc3\x8d\x1a\x5b\x84\xcf\x3a\x4e\x98\xc9\x5b\x12\x93\x58\xc8\x56\xcd\x53\x80\x7b\xde\xc3\xfe\x61\x5c\x6e\x9b\xd9\x9d\xd1\x77\xbe\x43\x44\xa5\xeb\x44\x54\xba\x4e\xb4\xe7\x61\x24\xad\x35\x6d\x94\xce\xa2\xb3\x8c\x88\x08\xa9\xb0\xfe\x07\x20\x60\xfa\x1f\xad\xd0\x47\xe8\xc5\x05\x0c\x25\xe5\x5b\x00\x11\x39\x49\x3b\xd2\x11\x59\xe1\x48\x04\xd0\x30\xf0\xbb\xdb\xc1\xc6\x72\x30\x08\x32\x7b\x2a\xa3\x82\x9b\x32\x4d\x95\x2f\xd3\x42\x2f\xca\x48\xc5\xab\x10\x7a\xfd\xa3\x1d\x6c\xaf\x45\xab\x42\x5c\x23\xd6\xd2\x43\x8f\x87\x11\x52\x62\x5e\x66\x05\x5a\x99\x78\x9e\xaa\x5a\xe5\xe5\xac\x7c\xb0\xf9\x23\x92\x94\x9b\x8e\xb4\x97\xe7\x97\x9b\xae\x9b\xb8\x6e\xa9\xb0\x7d\xa5\x4f\x53\xfb\xef\xf8\x44\x4f\xb3\x5c\x7f\x44\x6e\x18\x91\x19\xeb\x7b\x20\x66\x44\xf2\xb1\x5b\xea\x9d\xd8\x09\xee\x10\x9a\xfa\x0e\x93\xde\x77\xb5\x43\x29\xfd\x34\xe1\x73\x76\x6d\x05\x44\xe1\x5f\x79\x71\x51\x2e\x0b\xcb\x86\xfa\x14\xea\xc9\xa4\xc0\x72\xe9\x9e\x20\x22\xbc\xe6\x2e\x7a\x82\x09\x07\x32\x62\xa3\x4d\x41\xf2\x44\xc1\x39\x48\xf0\x7f\x82\x10\x46\x0d\xf0\x5b\xa1\xc4\x7c\xa4\x15\xca\x79\xef\x48\xb8\x6a\x26\xf9\x21\x32\x54\xd5\x14\x2c\x97\x7b\x31\x34\x11\x49\x3f\xb9\xf5\x94\xaf\x43\x97\x7d\x71\x49\x96\x4b\xf6\xde\x77\x64\x84\xd7\x7a\xcc\x2f\x40\xff\xc5\xb3\xd5\x8f\x9a\xf5\x00\xa6\xa9\x3a\xfd\x62\xeb\x00\x3c\xec\x14\x06\x1f\xde\xf4\x77\x31\x39\x71\xcb\xf7\xb0\x8b\xa2\xb4\x3c\xbb\x25\xf7\xa6\x64\x9b\x56\xd0\x9d\x40\x35\x18\x69\x0c\x78\x69\x58\x3c\x67\xe0\x17\xa4\x70\x72\x99\xce\xaa\x13\x84\x94\x50\xe1\xf0\xf2\x34\x26\x29\x3c\x6a\xd0\x8d\x97\x86\x89\xb5\x4d\xf6\x4f\x8d\xad\xea\x89\xa3\xc7\x71\xb4\x45\xb2\x9b\xc7\x5b\x61\xf5\x2d\xf3\x28\x2d\x56\x5c\x2e\x33\x2d\x88\xac\x9d\x6f\x91\x16\xdb\x34\xb8\x62\xe1\x50\xb3\x70\xa8\x47\xc9\x8f\x9b\xf5\x7e\xc3\x6b\xda\x5e\xf3\x3d\x81\x6e\x5c\xc6\xae\xf8\x8d\x3f\x1f\x75\xcc\x4c\x0a\x8b\xfa\x04\x67\xfb\x38\x69\xb9\x14\x1b\xda\x30\x0b\xa9\xcb\x4d\x36\xd0\xbc\x59\x97\xcf\x0e\x73\xd7\x8d\x0b\x83\x3a\x69\xc5\xbf\x15\xd8\xf9\x1f\xf8\x74\x36\x77\x3d\xb7\x12\x5c\x23\x75\x42\x61\x25\xb3\xd9\x55\x37\x8d\x07\xd9\xc0\xa5\xe5\x68\xd0\x08\x68\xea\x93\xd4\xc6\x3b\xe9\x55\xb0\xa2\x6e\xd7\x0d\xcb\x3d\x13\x88\x34\x19\x20\xc8\x0c\x20\x80\xec\x7b\x12\x3e\x5e\x7a\x4c\xa2\x3b\x8c\x89\x47\x24\x87\x56\x27\x51\x32\x15\x2b\xf3\x51\xb2\x89\x65\xc9\x8b\xe1\x05\x85\xe6\xf7\x48\x1c\x17\x50\x28\xd4\x6f\x3f\xad\x82\x75\x8b\xf2\xe1\x8e\x01\xf4\x43\xe0\x29\x93\xb4\xda\x7b\xbe\x7b\x99\xbb\x6e\xb6\x9a\xc6\xdf\xf1\x41\xa3\x39\x3a\x86\x9e\xea\x89\x3a\xe9\xe2\x5e\x94\xa3\x94\xac\x2b\x2e\x39\x72\x9e\xe0\x66\xe4\x46\x14\x2b\x21\xff\x15\x4d\xee\x34\x94\x47\xee\xba\xbb\x4d\x5e\x37\xdc\x0b\xda\x70\x09\x14\x59\x96\xe7\x97\x75\xa5\x51\x4d\x42\x3d\xa1\x77\xbd\x9e\x25\xeb\x71\xba\x3a\x1b\xa8\xe3\x3f\xc1\xa4\x46\xa8\x7d\x99\x0a\xbb\x4f\x51\x71\x79\x96\xd6\xc8\x6e\x9c\xec\xc5\xc0\x35\xa9\x9a\x80\x64\xd1\xad\xd1\xfa\x73\xd5\x97\x59\x33\x82\xf6\x8b\x0f\x31\xd4\xb1\xf7\xdf\x14\xec\x81\x51\xd7\x9f\x21\x58\x50\x9c\x96\x46\x51\xc2\xd6\x70\x87\xf8\xdb\x77\xa6\x40\x73\x07\x0e\x34\x8b\x6e\xdc\x20\xa0\xdc\x99\x16\x6f\x17\x35\xe6\x39\xab\x2e\x75\x79\x94\x48\x57\xc2\x5b\x2f\x2d\xd2\xf5\x2f\xcf\x7b\xad\x52\xda\x0a\xde\x67\x66\xe0\xca\x4a\xdc\x75\xf9\xa3\x8d\xfd\x0b\xdb\x97\x5b\xa4\x10\xaa\x15\x11\x0c\xe6\x1f\xcb\x95\x63\xe1\xdc\xd7\x9e\x58\x93\x96\xe7\x61\x89\xad\xcf\xe6\xc2\x78\x4a\x67\x4d\x31\x87\xc4\x59\xe9\x8c\x7a\xab\xe2\x18\x33\x13\x4a\xde\x17\x10\x77\x19\x18\xa6\xe1\x25\x2d\xae\xd5\x29\x0d\x74\xe2\xa4\x93\xbb\x4d\x8a\xf6\xb4\xea\xa1\x27\x35\x36\xc0\xcd\x28\xcf\x46\x69\x6f\x4f\x68\xa0\xee\x6b\x07\xdc\x12\x22\x4e\x55\xa3\x1f\x93\x88\xce\x8d\x49\x8c\xaf\x57\x7c\x3d\x4b\x75\xad\x3c\xcb\x8a\x52\x4a\x9c\x6a\x3c\x4d\x4a\xc3\xf7\x77\x6a\xab\x1f\x9e\x5f\x6a\x3e\xff\x74\xc3\xcb\xdf\xfc\xc3\x31\x61\x7a\x3f\x69\x91\x14\x20\x06\x20\x1e\xdf\x49\xc9\xa3\xbd\xdf\x5f\xb5\xb4\x13\xa0\xfe\x05\x0d\x30\xfe\x9d\x6c\x50\x48\xa2\xae\xb4\x48\x6d\x52\x45\xa9\x8c\x93\x1c\x24\x93\x74\x8a\x22\x68\xfa\x39\x2a\xba\xd8\x06\xdf\x6d\x05\x9d\xb1\xb7\xb1\xc3\x23\x44\x7a\x5f\x22\x14\xe4\x0d\x47\xc9\xdf\x3a\x89\x3b\x32\x1a\xe5\x3d\x60\xe1\x3b\xa2\xfb\x2f\x06\xa1\xf2\xe3\xcd\x62\x36\x94\x6c\xcf\x8e\x1f\x0f\xe5\x87\xe2\xeb\xa8\x6f\x63\x9e\x7c\x2c\x8f\x12\x73\x00\xaa\xfc\x56\x44\xaa\x35\x4f\x5c\x98\x99\x10\xd5\x91\x27\x8b\xfe\xef\x83\x09\x9d\x0f\x4a\xbe\xca\x32\x2e\x47\xbd\x2a\xb8\xa8\xb6\x48\x0f\x40\xae\x9e\xb0\x2d\xf7\xb6\xf7\xb9\x74\x35\x4e\x9d\xcb\xab\x69\x8d\x1b\xab\x35\x0f\x7e\x8e\x90\xa2\x49\xdc\xcd\x86\xa5\xcb\x8b\xb9\x00\x48\xbb\xdf\x22\xba\xf9\x69\x12\x9f\xba\xca\xb2\x41\x93\x84\x86\x69\x39\x37\x11\x55\xf2\x95\x7c\x34\x21\x6e\x50\x43\xe2\x06\xad\xcd\xd0\xb7\x2f\x1e\x95\xe7\x81\x8b\x50\xde\x1d\x46\xd7\x7b\xb8\x22\xc3\x95\x57\x83\xc8\xf4\xa0\x02\x39\xf2\x16\xb6\x3d\xe0\xab\xdf\x1c\x07\x64\xe4\xc3\x16\xd1\xcd\xc6\x21\x81\x39\x31\xc1\xc5\xcd\x36\x50\x89\xc1\x8a\x82\x02\xaf\x1e\xd7\x94\xe3\x96\x9a\x65\x96\x4c\xd0\x88\x8e\xb4\x88\x46\x74\x84\x33\xdb\x78\xb5\xff\x04\x57\xba\x03\x6c\xf5\x0a\x46\x9c\xc7\x08\x1f\x9e\xd7\x4a\xb6\xfa\xbf\x19\xa6\xab\xba\x16\x94\x06\xaf\xb3\xba\xdf\x3f\x97\x20\x17\x65\xa9\x73\xf2\x54\x94\x84\x8f\x4b\xc1\x9c\xd3\x55\x13\x35\xcf\x59\xa4\x92\x1e\xb6\x18\x70\x79\x67\x6a\x9b\xb5\xd1\xa8\x28\xf3\x28\x89\x23\xcb\x7f\x4d\x3d\xb0\xba\x1f\x4c\xb1\xd9\x2d\xca\x7f\xf7\x4e\xc9\x42\x2e\x1c\x6a\xae\x66\xeb\x2e\x4f\xb3\x7c\x66\xc2\x1a\xba\xe1\xad\xc8\xef\x52\x65\xe6\x0e\x11\x21\xfb\xd9\xb0\xda\xaf\x43\xb5\xed\x16\x41\x55\x94\xf6\x63\x06\x14\x44\x95\x2a\xf3\x68\x54\x14\xb3\x9c\x27\xfd\x87\x65\x56\x35\xb1\x45\x39\xca\xd3\x19\x66\xa3\x35\xbc\x72\x29\xa8\xf2\xb6\xab\x10\x25\xbb\xdb\x1d\xe5\x51\xe9\x92\xcd\x59\xee\xc4\xc9\x25\x58\x2b\x4e\xde\x21\x1e\xe5\x35\x56\x65\xbc\xd6\x7a\x36\x80\xe3\xd6\xa3\x64\x24\xa1\xd3\x4c\x30\x4c\xbf\x38\xa6\xa8\xf9\x93\x71\xa0\xa9\xde\x6c\x85\x74\x7a\xd3\xa5\x8f\x54\xab\xb1\xb5\xa9\x08\x9c\x45\xc5\x97\x89\x04\xe3\x0a\x96\x22\x3d\xc1\xf3\xf2\x2c\x04\x2f\xf5\xf1\xa9\x0c\x5d\x7c\xeb\x49\xd2\x73\x88\xbf\xb9\x32\x13\x2c\x15\x81\x17\xb4\xb8\x3c\x40\xea\x8e\x12\xae\xbe\x9f\xf5\x0c\x18\x66\xf0\xea\xd0\x37\x39\x4f\xed\xb9\xdc\x0d\xa2\x7c\x6d\x86\xec\xc2\x7f\x30\x0e\x90\x1d\x14\x93\x10\x86\xdd\xaa\xc3\x24\x0f\x47\x79\xb7\x1f\x05\xe7\x1c\x75\xb2\xa3\x7c\xf8\x0f\x08\x8f\xb8\x9a\x44\x83\x2c\xcf\x46\x05\x62\x3d\xed\x8e\x91\x14\xf9\x05\x0a\x8e\x57\xf3\x28\x2d\x51\xb1\x32\x17\x32\x4c\x11\x3d\x93\x1b\x02\x02\x67\x8f\x84\x24\xc6\xe0\x25\xf2\xc6\x71\x8c\x04\x6c\xa7\xef\x53\xa9\xe3\x9e\xa7\x4a\xf4\x36\xd3\x68\x10\x77\x55\x27\x00\x5b\xdf\xbe\x36\x63\x48\xb5\x37\x86\x0c\xf5\x3c\xe9\x31\x3f\x08\x02\x77\x6b\x9b\x1b\x51\x0e\xbd\x3a\xec\x02\x18\x15\x7a\x4c\xd0\xf7\x5e\xbc\x1a\x97\x06\x09\x62\xb1\x39\x3d\xf6\x69\xc7\xba\x4b\xd6\x9d\x5a\x92\x78\x7f\x3c\xc2\xe9\xd7\x90\x18\x7a\x59\x9a\xba\x24\xd1\xb0\x48\x49\x1c\x63\xe2\xf1\x7e\x46\x35\x9d\x61\xee\x0a\x97\x4a\xc7\xbc\x5a\xb1\xb0\x12\xdf\xa5\x82\xef\xdd\x31\x71\x1c\xce\x23\xe1\x34\x2e\xb7\x5d\x64\x91\x64\xa3\x6e\x7f\x26\x14\x7b\xef\x4e\x0c\xb3\x30\x7d\x4e\xfb\x3f\x29\xfb\x79\xb6\x51\xec\x54\xe3\x5d\x30\x8d\x4c\xae\xbe\xdd\x27\x43\xd5\x6a\x89\xeb\xbb\xa8\xc7\x0e\xfc\x0a\x24\xd2\x93\x29\xec\xe9\xf2\x7c\xd3\x0d\x3a\x51\x9e\x47\x45\x61\xe9\x21\x86\xd9\x87\x94\xbb\x7f\x58\x67\x1b\xd6\xcb\x36\xd2\x32\xdb\x48\x67\x02\x62\x51\x39\xb8\x98\x76\x1f\x8f\x83\xce\xf9\x1b\x53\x4d\x5c\x2b\x5c\xa5\xae\x9c\x0d\xf8\xfe\x19\xd2\x5b\x8b\x9f\x16\x87\x61\xc3\xcb\x34\xbc\x38\xdd\x6c\x3b\xe4\xf2\xa3\x34\x5e\x77\x79\x11\x25\xc9\x26\xa9\x2d\x2a\x19\x54\xe5\x45\x5b\x81\x7a\xf1\x8e\x37\x83\x19\xc6\xae\xeb\x66\xc3\xaa\xaa\x25\x09\x65\xbb\x13\x6a\x06\xc6\x84\xa6\x0d\x46\x32\x89\x31\xe0\xe7\x86\x9c\xa1\xda\xe3\x29\x32\x15\x1a\xa5\x49\xbc\xe6\x04\x75\x8f\x38\xee\xaa\x0c\x1f\x3d\xae\xd3\x50\xe9\xf6\xa3\x38\xd5\x32\x8e\xb7\xf6\xa9\xae\xcd\xbc\x92\xbf\x46\xcc\x9d\xc8\xf0\x73\x09\x06\xf4\x1f\xef\xa2\xff\xab\x5f\x93\x05\x08\xc1\xde\x9e\x2d\x7a\x59\x8a\xfc\xc3\x2e\x74\x8e\x10\xa1\x20\x7f\xa0\xf4\xff\x4c\x3b\x2c\x27\xef\x8e\x43\xac\xbd\x2d\xa8\x51\x03\x9b\x90\x54\xc1\x13\x5b\xa4\x94\xf9\xf6\x98\x4b\x21\x4a\x8d\x44\x4c\xf7\xd9\x38\xe8\xf8\x5f\x95\x08\x04\xa9\xe6\x3b\x40\x6c\xea\x87\xe4\xc1\xa1\x2f\x77\x16\x8f\x1b\xf9\xdc\x6f\x8d\xa9\x57\xa1\x50\x68\x59\x54\xbe\xf9\x4c\xbb\x8a\x4d\x7c\x4b\xf4\xd7\x7e\xdd\xf3\x28\x25\x86\xb7\x16\x6c\xe8\x71\x0d\xaa\x69\x30\xc3\x30\xb0\xea\xce\x30\xb8\xc1\xba\x36\xe9\xd8\xc0\xde\x4d\x63\xad\xa8\xa3\xb6\x7d\x94\xd0\x1f\x47\x89\xc8\xbc\x12\x47\x7b\xaa\x2f\xb3\x08\x20\x68\x02\x6a\x41\x03\x4b\xf3\x4f\x39\xa5\x84\x24\xaa\x1e\x8f\x03\xde\xff\xde\x54\xea\xb6\xf4\xd2\xc1\x66\x27\x8f\xdd\x0a\x49\xf8\x7f\x46\x12\xfe\x9f\x91\xfa\x50\x2f\x2e\xba\xf1\x30\x89\x53\xd5\xc5\x47\x2c\x73\x93\x1d\xab\x20\x6a\x66\xb2\x1c\x35\x96\xa8\x12\x94\xa0\xb5\xa2\x17\x7e\xa3\x45\x72\x17\x1f\x73\x27\xf9\x62\x1d\x2f\xaa\x3b\x4a\xca\x51\xae\x2c\x48\xed\xe8\xc9\xb6\x61\xdd\x3d\xef\x4c\x90\xe5\xae\x28\x61\x76\x66\x4a\x66\x3b\xb1\x8d\x66\x94\x14\xc2\xb6\x8d\x2c\x4f\x7a\x4f\x85\x16\xcd\xdd\x56\x20\x8e\xbf\x73\x95\xe9\x1f\x6f\x49\xd2\x88\x41\x0d\xc2\x0e\xde\xca\x9b\x18\x7b\x56\xe6\x93\x9b\xf3\xfa\x1d\x2f\xda\x7e\xd9\x68\x13\xed\x44\x11\x7e\x1e\x86\x57\x5d\xb2\x85\x20\xf2\xa4\xb0\xdb\xdf\x93\xd1\xae\x97\x32\x0e\xab\xe7\xec\x56\x90\xd1\xdf\x6a\xd4\x81\xc8\x44\xac\x86\x6c\x9d\x3e\x23\x5b\xa7\xcf\xc6\xcc\xcf\xf0\xc1\x06\x3a\xcc\xef\x61\x54\xe9\xc9\xd4\x6a\xfe\xea\xab\xcd\xdc\x75\xd7\x12\x57\xc0\xc4\x1b\x79\x0d\x0a\xab\xde\xd9\xe3\x5b\x2f\x9b\x04\xfb\x54\x90\xba\x3c\x2f\x70\xc7\xd9\xc0\x28\x78\x53\x52\x1c\x73\x7b\x0c\x78\x25\x0d\x3b\xad\x5e\xf3\x1c\x79\xb1\xac\x64\xf9\x40\x42\xcd\x7d\xf4\xac\x51\x59\xb0\x79\xce\x44\x7e\xc2\xd2\xc0\x9b\x1a\x4b\xce\x3d\x8c\x3c\xcd\x47\x5a\xd4\x33\x57\x97\x1f\xa0\x49\xee\x53\x0f\xe9\x5e\x2b\x58\xcf\x9e\xc2\x8b\xc2\x8f\x3c\xac\x71\xb3\x3c\xd8\x2c\x86\x2e\x2d\x01\xb8\x44\x99\xff\xde\x98\x50\x48\xc7\xf1\xfb\xaa\x14\x43\x3a\x08\x79\x94\xae\xcd\x92\x2f\xe3\xc5\x56\xe3\xaf\xfe\x65\x5f\x97\xa1\x1a\x0d\xae\xc0\xfc\xaf\x42\xb1\xac\xec\xbb\x2c\x8f\xcd\x2c\xc2\x24\x49\xab\xc7\xa3\xc0\xa3\x56\x68\x3c\xfd\xcc\x97\xa2\xd7\x5d\x5a\x8e\x72\x57\x64\x03\x47\x8c\x86\x73\xa4\xb7\x3b\x6d\x79\xfc\x7c\xb5\x07\xa5\xab\x26\x1c\x8a\xa4\x08\x6f\xc2\x8a\xc0\x72\x0d\x78\xd5\xbb\xda\x75\x0e\xa8\x29\x19\x46\xe1\x9a\x54\x1e\x5f\x4f\x6a\x44\xe4\x0f\x36\x0b\x57\xce\x52\xd8\xff\x6f\x5a\x64\xfc\x02\xa6\x28\xf6\x85\x7f\xc3\xb8\xef\x6d\xdf\xc5\x2a\x5d\x51\xc6\x2b\xb1\xf5\x40\xcc\x29\x7d\x42\x27\xe5\x09\xb2\x0f\x5d\xc5\x0e\xae\xab\x0a\x59\x4e\x5f\xa4\x10\x3b\xaf\x56\x29\x98\xdb\x22\xab\x3f\x8f\xd7\x8d\x55\x79\x46\xa2\x6a\xfa\x0f\x03\x0d\xdc\xc6\xa6\xa4\xff\x33\x4d\xe9\x5e\x6a\xae\x64\x23\x6f\x6e\x59\xab\x71\x5b\x97\xf0\x67\xa9\xf2\xa7\x90\x8a\x5d\xa6\x5c\xf0\x32\xa5\x36\x83\x51\xde\x53\x1c\xac\x6f\x4b\x11\x8e\x2b\xb4\xe3\xb3\x64\x73\x30\xac\x22\xfb\xb0\xb9\xbc\x35\x9e\x30\xda\xc3\xa6\xad\xf5\x4e\x94\x9c\xcd\xeb\xd9\x03\x34\x5d\x5c\x8c\x72\x88\xa6\xe3\xcf\x9e\x96\xb6\x32\x72\xff\x5d\xc8\xcd\x91\x72\xef\xde\x7a\x9a\x4c\x4c\x64\x13\xd9\xd7\xf0\x3a\x61\x5f\x48\x31\x17\x97\xa1\xa1\x20\x16\x63\xed\xba\x2a\xc1\x89\xbd\x5f\x2e\x4d\x9a\xe0\x05\xe8\x8e\xc2\xd8\xb0\xb9\x61\xba\x43\x99\xea\xba\xb6\xa5\xb1\xd3\x9d\x19\x07\x7d\xd2\x4b\xe3\x80\xb3\xef\x64\x9d\xb9\xc0\xf5\x57\xbb\x19\x4b\xf4\x1b\xe4\xdb\x4d\x2e\x68\xea\xa5\x80\x55\xf2\x12\x29\x7b\x67\x40\x25\xb3\xdc\xb5\x47\x40\x7d\x51\x4f\x22\x4b\xb2\xee\x1a\x75\x2b\xce\x8e\xe9\x21\x4e\x5b\x62\x3f\xdf\xcc\xdd\x6a\x94\xf7\xaa\x15\xbc\xe1\xb5\x2b\xcf\x43\xac\x48\x8f\xb7\x6a\x62\xff\x51\x5a\x0c\x5d\x37\x5e\xf1\x50\x4a\x43\x4a\x33\x82\xda\x77\x16\xb2\x22\xca\xe3\xc8\x62\x53\xef\x61\x19\x1a\xcd\xdf\xa3\xa2\x79\xcf\xa5\x9b\x9e\x76\x89\x2d\xea\x18\x3e\xab\x27\xec\x56\x11\xa5\x65\x24\x10\xda\x6d\x79\x34\xdb\x5a\xd8\x33\xac\x5e\x75\x17\xa6\x9f\x1d\xc6\x4f\x95\x94\xeb\x2f\xf8\x82\x1d\xd9\xf5\x5e\xa7\x44\x4e\x44\x08\x06\xa3\x3c\x6a\x84\x74\x4b\xa9\x65\x7a\x52\xbb\xd4\x0b\x72\x0d\x4b\xbd\x6f\xe8\xfb\x07\xf3\x73\xaa\xce\x5d\x66\xa7\xfb\x24\x89\xa3\xb4\xeb\xf0\x22\x54\xbb\x57\x42\x06\xd3\xf1\xf5\xae\x17\x99\x2b\xd5\x7f\x71\xa2\x9e\x69\x83\x84\xf8\xd3\x2e\x1f\x44\xa9\xee\x3b\x8b\xa1\xbc\xe8\x1b\xdc\x6a\xe6\x6b\x62\x83\xa1\x8d\xb0\xe2\x84\xfa\xeb\x7a\x7b\xab\x2b\x40\xed\xfe\xd4\x98\xc8\xf5\x97\xd9\xab\xf8\x98\x4e\x77\xb3\xc2\xab\x7e\xc0\x93\xa7\xaa\x1f\xd0\x13\xc4\x7a\x98\xb4\x21\xa7\xea\xb9\x61\x56\x92\x73\xb3\x0a\x8a\xe8\x09\x09\x8a\x88\x80\xec\xde\xc6\xf2\xd2\x36\x5c\x0a\x4c\x0a\x22\xa0\x3d\xcf\x42\xa8\x05\x79\xc7\x45\x52\x73\xfa\x48\xb2\x00\x94\x20\xce\xb0\xb8\xea\x35\x7f\x19\x9d\x68\x0d\x18\xf7\xc5\x60\x19\x42\x98\x87\x89\x76\x48\x60\xb3\x7d\x44\xcb\x67\x2f\x4e\x53\x97\x8b\x71\xa1\xf9\xae\xd2\xdd\x83\x69\xe8\x8d\x35\x5f\x0c\xc6\x9a\x64\x26\x93\xa5\x23\x88\x41\xd8\xae\xce\x3f\x5b\xa3\x5d\x51\xf4\xa3\x35\x57\x0c\x5d\x94\x1b\xf7\x10\xcb\xa0\x9a\x5e\xe8\x09\xe1\xe7\x8b\x0d\x95\x9a\x0f\xc3\xe7\x3c\x2d\x2b\xe7\xeb\x78\xb1\xc3\xac\x74\x69\x69\xda\x23\x08\xc2\x2e\x50\xf3\xe0\x82\xe7\x21\x44\x85\x88\x94\x78\xb2\x80\x0c\xf9\xaf\x3e\x83\x08\x15\xa3\x83\x09\xa4\x3a\x97\x50\x75\xda\x35\x55\x7f\x85\x6e\xf4\x30\xf3\x16\x04\x58\x7b\x6f\x60\x1c\xea\x89\xc7\x8c\xbf\x16\x75\xd7\x66\x42\x5f\xe5\x2c\xc9\x1c\x5d\x93\x47\x6f\xa6\x8b\x5f\x21\xd4\x6e\x9e\xc7\x65\x96\x6f\xce\x86\xde\xe6\x78\x4c\xf4\x8e\xe3\xe4\x18\x79\x01\x8b\xb9\xa1\x66\xa7\x05\xf9\x17\x9a\xbd\x51\xa7\x63\x4b\xa2\x66\x41\x2d\xce\x88\xc2\x06\x3a\xc8\xd2\x32\x77\xd6\xd1\x41\xd8\x07\xe4\x89\x67\x57\x7e\xeb\x65\xdd\x1f\xfe\x6b\xd2\x62\xba\x37\x15\x00\x2d\x1c\x6a\xae\x47\x8a\xae\x45\x79\xe0\xd1\x76\xe8\x28\xef\xde\x62\x21\xe1\x3a\x12\x6a\x3e\x2a\xca\x4d\x54\xaa\xbd\x03\xc8\x81\x03\x5e\x68\x69\x92\x07\x13\x5a\x0e\x51\x51\x3c\x21\x99\x02\x47\x91\x1e\x31\x5d\x3d\x41\x1f\xb9\x57\x7b\xbf\x05\x02\x61\x1d\x7d\x14\x1b\xb5\xa2\x59\x24\xee\x37\xd4\x2e\x16\x13\xf3\x1d\xa1\xb0\x09\xeb\x21\x5a\x47\x67\x04\xe6\xe1\x55\xc0\xbe\xbd\xa0\xf1\x85\x72\xc4\xac\xd3\xfa\x55\x96\x7f\x2b\x5c\xbe\x1e\x95\x71\x01\x64\x82\x09\xb1\x36\x48\xb9\xd5\xdb\x93\x45\x03\xf7\x48\x63\x71\x71\xfb\x4f\xb4\x27\x32\x0f\xb9\x19\xb4\x66\x7e\x1e\x5a\xce\xdf\x45\xcd\xc9\x6a\xc5\x44\x09\xba\x31\x91\xd0\xe0\xc6\xc0\x76\x9d\xa6\x72\x1d\x9e\x7f\xa5\x7a\xac\xa3\xbc\xda\x06\x66\xc2\x22\x8d\xd1\xeb\xaf\x20\x40\x31\x3e\x9c\x9a\xac\x55\xac\xb7\xe1\xa2\x35\xe7\x41\x1b\x1a\x55\xb0\x95\x1f\x47\xb3\xab\xd1\xba\x83\xd3\x86\x19\xe9\x84\xdf\xba\x45\xb2\x51\xe7\x88\xdd\x7a\x5d\x16\x2f\xfd\x4c\x8b\x70\x95\xd7\xa6\xfa\x30\xaf\xbe\xda\xcc\x86\x2e\xa8\x70\x53\xc9\xaf\xfa\x6e\xeb\x11\xd5\x38\x43\xad\x46\x71\xda\x20\x41\x40\x54\x68\xed\x6e\xbc\xac\x7a\x96\xac\x15\x32\x79\x31\xda\x14\x72\x8a\x11\xa6\x88\x27\x5c\x1b\xbc\x08\x54\x17\x93\xd6\x43\xc8\x84\x3b\xd4\x97\xd5\xf4\x81\x24\xb2\x2e\x40\x11\x46\x07\xfd\xea\x40\xbc\xb1\x00\x5f\x3a\x8d\x10\x12\x69\xc6\xef\x90\xcf\xe5\xf9\x31\x61\xbb\x4f\x8d\x09\xdb\x7d\xaa\x45\x64\x40\xf4\xcc\xac\xf4\x5d\x43\x05\x1c\xe5\x1d\x5d\xd3\x31\x7d\xcf\x11\x53\xe5\x5c\x9d\x6a\x59\xea\xd4\xbd\x19\x2b\xed\x36\xd9\x90\x6f\x4f\x4d\xfd\xc5\x6a\xea\x77\xe2\xb4\xc1\x32\xeb\x6f\x71\x67\xea\xad\x5a\xa6\x9c\xbf\x28\xdc\xb8\xb2\xcd\xf5\xa4\xf5\xcb\x5f\x52\xaf\xed\xbb\x28\x29\xfb\xdd\x28\x57\xab\x7c\x94\x0a\xde\x21\x40\xe7\x3b\x35\x42\x98\x41\xc0\x5e\x7e\x11\x13\x5c\x6d\x29\xf5\x84\xba\x67\x2b\x71\x9a\x44\xe0\xa6\x2e\xf9\xc4\x8d\xd2\x7a\xd6\x51\xef\xb9\xe4\x9b\x98\x20\xe8\x23\x9c\x1a\x93\xbf\xf2\xa9\x89\xe6\xaa\x8b\xd2\xa7\x25\xaa\xb0\xee\x78\x20\x35\xde\x45\x6f\x17\x20\x9c\xbb\x02\xe1\x43\xb8\x71\x8c\xf9\x5b\x67\x39\x33\x32\xa0\x3d\x90\x99\xca\x9c\xc3\x7f\xed\x96\x3a\x29\xc2\xab\xab\x52\xb4\xe0\xa6\x14\xb2\xee\xaf\xb4\x89\xb2\x72\xb6\x45\x15\x7d\x48\x6e\x79\x6f\x8b\xc5\xc5\xed\xfb\x2c\x11\x7c\xbe\xb5\x8f\xd8\xe4\x44\x41\xf9\x98\x49\x97\x1f\xd7\x64\x8f\xcd\x22\x96\x32\xb1\x9f\x64\x27\x5a\xc1\xb7\x63\x5a\xce\xbb\xfa\x83\x2c\x71\x9a\x6f\x2a\x0e\x48\x66\xd4\x97\xd9\x57\x2d\x1c\x6a\x76\xb2\xd7\x1b\xd5\xd3\xc3\xe6\x77\x96\x36\xc2\xb3\xb5\x35\xcb\xdf\x1c\xc5\x25\x98\xa3\xd8\x25\x00\x9c\xd2\xe3\xf1\x9f\xf9\x32\xa5\x9e\xee\x6f\x8e\xe2\x42\x2a\xdf\x33\xd4\x80\xb9\x4d\x89\xc2\x69\x3c\x0d\xe4\x82\x8d\x36\x71\xed\x92\x6c\xc3\xe5\x7b\x43\x3a\x8c\xa7\xe0\x75\xbe\x16\x83\xf3\x8a\x60\xe3\xa9\x01\x63\x6c\xa9\x13\x04\x7a\xda\xb5\xd5\x78\x79\x49\xf7\xeb\xf7\x38\x2e\x88\x8a\x22\xea\xe6\x6e\x96\x0c\x29\x2f\x91\x9d\x24\xc0\x6a\x06\x69\x20\xb6\xdf\xf1\xa9\xe4\xce\xee\x3a\x4b\xdc\x6a\x23\xc0\x95\x14\x50\x61\x7e\x41\x0c\xec\xdf\xc8\xd2\x59\x6a\xac\x6a\xb1\x8c\x75\x32\xea\xe4\x94\x2c\x5f\xdd\xcc\xf2\xb5\xe0\x59\x8d\x75\x6d\x16\xed\x11\xec\xd8\x4a\x3a\x44\x40\x7d\x8b\x6e\xba\xdb\x17\x3d\x1b\x5d\x1a\x3c\xab\x3a\x30\xac\x7d\x55\x37\x4e\x8b\xb8\x80\x96\x3d\x66\xe3\xad\xf1\x64\x17\xcf\x7b\xce\x9d\x23\x06\xd6\x59\xf6\xa9\xbb\xc8\xdc\xa3\x73\x78\x3f\x18\x99\x4f\x4f\x90\x5b\xa2\x94\xd6\xfa\xeb\xac\xb3\x7a\x13\x81\xa0\xb7\x9d\xf2\x86\xb9\x67\x5b\x84\x55\xc1\xf2\x6e\xaa\x3f\x78\x28\xe8\x7b\x7c\x50\x93\xba\x1f\x6c\x0e\x4d\xdf\xc1\x2a\x01\xb7\x58\x0f\xf7\xd6\x84\xaa\x46\xba\x92\xc4\x22\xe4\x71\xe0\x80\xae\xd5\xf7\x5a\xb4\x70\xdf\x9b\xa0\x1c\x55\x61\xa6\x08\x15\xa0\x33\xec\x85\xe5\xbd\x8e\xef\x29\x12\x17\x1a\xe6\x22\xc5\x9f\xaa\x4a\x88\x3a\x3a\xe3\x29\x99\xbd\x73\x48\xc0\x87\x71\xa2\x3b\xa7\xd9\x5d\x87\xe6\xdf\x89\x31\xb1\x5d\x47\x49\x12\x17\xfd\x99\xc6\xb2\x3d\x6b\xd4\x4f\xb0\x08\x7e\x8f\x64\x28\x2f\xd6\x6d\x84\x45\x19\xad\xea\xe0\x40\xed\x0e\x20\x30\x3d\x66\x9c\xe4\xca\x4a\x14\xe7\xc5\x1c\xfb\xb1\x9d\x1d\x53\x11\xee\x08\xf5\xf7\x3f\x26\x6d\xb6\xe3\xdc\x3e\xb9\x1d\x4c\xfd\xba\x59\xee\xf6\xc8\x7f\x69\xb7\x63\xcc\x45\xa0\x0b\xd4\x35\x7e\xa4\x2d\x4f\xd7\x48\x8b\xf2\xc0\x70\x7b\x17\x5a\xe1\x56\xa7\x83\xbe\x17\x17\x9b\xa3\xa4\x8c\x07\x51\x39\x1a\xa0\x8a\x6e\x76\x68\x72\xd9\xe8\x7a\x41\x12\x03\x13\x8e\xcb\x70\xc5\x68\x75\xd5\x15\x25\x00\x50\xf6\x38\x64\xaf\xd2\x18\xb3\x15\x64\xc9\xce\x21\x52\x53\x64\x84\x7c\xa1\xa1\x24\xa6\xd1\x33\x22\xd2\x36\x94\xb4\x52\xe3\x48\x53\xe3\x91\x79\x60\x72\x3c\x8f\x93\x73\x4c\x77\x96\x56\xce\xbd\x6d\x86\xdc\x68\x54\x86\x6a\xd9\xb5\x49\x1d\xf8\x1a\x2f\xc3\xee\x7a\xca\xda\x70\xec\x45\x74\x69\x6a\x37\x78\x5e\x40\x2b\x85\xea\x0b\xfb\x2a\x7f\x75\xc9\x68\xe0\xdd\x63\xc5\xc9\x53\xfc\xf0\x36\xd3\x5e\x9e\x0d\xe0\x95\x84\x5d\xf7\x22\xa9\x5c\x6e\xc9\x50\x41\xb5\x70\xda\xbb\x74\x79\xbe\x39\xc8\x8a\x12\x40\x70\x05\xc8\x02\x08\x6e\x68\xd9\x9d\x37\xb6\x3c\xdf\x94\xf0\xec\xf0\xbc\x69\xa0\x63\x19\x31\x41\x74\x4b\xa1\x57\x22\xf1\x38\xf4\xfe\x5b\xde\xfd\xda\xe3\x8c\xb4\xa6\x62\xbe\xdc\x3b\x13\xd1\x97\x97\x9a\xdd\x24\x8a\x55\x46\xc2\x46\xa1\x9a\xbd\xe8\xc9\x14\xe3\xfb\xdb\x0b\x9e\xda\xa9\x3b\x37\x9a\x27\x6f\xc9\x2a\xa6\xc7\x93\x09\x60\x92\xfc\x92\xbc\x56\x14\x0e\x00\xa1\x47\x06\x79\x5b\x22\x21\xb4\xce\x95\x9b\x83\x05\x72\x1b\x5e\xfc\xa8\x54\xff\xae\xcc\x0b\xdf\xdd\x3e\x3c\x1f\xb8\x45\xdf\x5e\xd0\x3e\xce\x39\x9d\x6f\x68\x5b\xa8\x22\x29\xb2\x65\xd4\x11\xb0\x0b\x3c\xbe\x15\x68\xa2\x73\x5b\x8d\x43\x2f\x05\xcf\x87\xfd\xfb\xcd\xfa\x9f\x90\xb4\x73\x6d\x6a\x3a\x3e\x40\x14\x85\x45\xe1\x0d\xe9\x4f\x23\x8f\xfd\x8c\x83\xc7\x3f\xc2\x30\x44\x0d\xe1\x1f\xa2\xc9\x67\x92\xbe\x32\x08\x8c\xa2\x00\xc2\x81\x8f\x05\x82\x0d\xcf\x17\xd4\x12\xdf\x26\xcf\x85\x61\x9e\x0d\xf3\x58\x30\xbb\x0d\xf9\xb8\xd5\xd4\xaa\xeb\xb5\x8a\xda\xf4\x14\x95\x8e\x52\x77\x94\x44\x9e\x8d\x6b\x48\x68\xb9\x6a\x83\x42\x4f\x89\x72\xbd\x74\xb0\xd9\x71\x49\xb6\xae\xda\x92\x08\x81\x6e\xb6\x26\x48\x61\x81\xaa\xc4\xe5\xad\x41\x96\x27\x0e\xb6\x57\x18\xe4\x37\x25\x0e\xf0\x1a\xa8\xcb\xc1\x85\xf9\x69\x2a\xb1\xbc\x5e\xc6\xb0\x52\x7f\x41\xb7\x27\x2c\x9b\xc6\xec\xaf\x2e\x02\x0f\x65\x5a\x0a\x7f\xff\x42\x53\x24\xc9\x7d\xed\xc9\xe2\xde\xea\x0b\x2c\xb8\xe6\x08\xa6\x9b\xad\x68\x3e\x83\x4c\x4f\xab\x94\x7a\x42\xe0\xfe\x51\xea\x5e\x17\x35\x18\xd7\x9b\x63\xe6\x60\x35\x0c\x7d\xdf\x2f\xe4\x11\xba\x78\x22\xa8\x39\x42\xb0\xe5\xeb\x13\xa9\x42\xea\xdc\x97\xea\x7f\x7d\x99\x7c\x5b\x37\x8f\x0b\x53\x4a\x04\x7d\x10\xd2\x57\x1e\x34\x57\xdd\x80\x81\x27\x42\x7f\x29\x5b\x29\x5d\xfa\x8c\xd0\x5e\xbc\xd9\xde\xfe\x05\xbf\x8e\x11\xe0\xfb\xb6\x96\x1d\x30\xf4\x4f\x8c\x27\xa2\xe6\x17\x83\x24\xb6\xdc\x2e\x36\x11\x5d\x9a\x3c\x97\x9f\xb5\x60\x97\x0d\x2f\x79\x97\x2c\x34\x9e\xd9\x22\x31\xa7\x2b\x68\xf7\x78\x0c\xee\x61\xc3\x76\xfe\x5d\x36\x0e\xd4\x47\x8a\x69\xf7\x10\x41\x33\x6a\x0a\x0f\xa9\x42\x97\x44\x1b\x90\x39\xda\x1b\x06\x2b\x62\x60\xf5\x04\x14\x7a\x90\x8a\x19\x8c\x89\x61\xf0\xc4\x56\x80\x0e\xee\x6a\x87\x52\xd1\xe7\x41\xbf\xfc\xbf\xbd\x50\x8b\x6b\x4a\x5c\xb7\xcc\xe3\x6e\x5c\x6e\x62\xfd\xb4\xe2\x5d\xe0\x8c\x5e\x6a\x3d\x45\x40\xcf\x51\xe1\x8a\x47\x83\x46\xd1\x7b\xe3\x50\x31\x57\x8c\x2c\xc0\xa6\x17\xb0\x7a\x81\x21\xfd\x6e\x2b\x10\x59\xff\xf9\x44\x69\x83\xa6\xf2\xf1\x31\x91\x27\xaf\xf0\xbc\x3e\x3e\x05\x5a\x3e\x70\x40\x10\x59\x45\xb1\x49\xc8\xc4\x0f\xc6\x24\xfc\xfa\x01\xf9\xc8\xe7\xae\x18\x25\xe5\xe3\xa1\xae\xf8\xf3\x16\xe5\x8a\x97\x5b\x41\xc1\x74\x66\xab\x5a\xcb\xd5\x9e\x1b\xf5\x7b\xb6\xb7\xc6\x8b\xbd\x8a\xf1\x86\xa0\xe3\x04\x7e\x14\xef\xea\x8b\x31\x41\x87\x2e\x10\x06\xbb\xd1\x26\x1a\xca\x9d\x16\x95\xdd\x8f\x4c\x65\x32\x07\x0e\x54\x17\x9c\x8d\xf2\xae\xb3\xf4\x02\x31\xe6\x5b\x8c\x7a\xff\x3e\x7e\x17\x7b\xd5\xf7\x98\x3b\x1c\x15\xfd\xd8\xa9\x61\x21\x6a\xb9\xf7\x58\x94\xed\x9e\xdf\x7b\x85\xe2\xb5\xea\xd2\xb8\x2b\xfb\xb4\x17\x3b\x0f\x56\x60\x97\xa8\x91\xf4\x5a\x24\x72\xd3\x33\xc1\x96\x77\x5b\xde\xbd\x42\x1b\xdb\x81\x9d\x7f\x94\x20\x26\x2b\x51\x3e\x28\xb0\xd0\x63\x33\xb9\x2b\x7f\xa4\xc7\xd4\xed\xe8\x67\x79\xe1\x80\xc6\x40\xf0\xf3\xaf\xe5\xf1\xe9\xf1\xd4\xc2\xfe\x67\x9b\x5e\x5b\x60\x66\x42\x6a\xac\x61\xd6\x05\xbf\xa1\xdd\x1e\x50\x00\xcf\x4c\x55\x84\x0e\xcf\xbf\x20\x41\xcd\x8c\x6c\x6e\xa8\x88\x9e\x91\xdf\xc4\xbd\x1f\xc7\x46\x87\x42\xe1\x4d\xc2\xd0\xbe\xb4\x7c\xb0\x41\xc1\xa5\xea\xf1\xe8\xc9\xb4\x09\xed\xf2\x52\xb3\x3f\xca\x93\x06\xfb\xf6\x4f\xca\x82\xef\x24\x22\x3f\x3f\x29\xae\x4f\x56\xb2\xa7\xf1\x87\x16\x33\x53\x4e\x19\x99\x75\xcb\x37\xbe\xe1\x57\x48\x59\x64\x8c\xa7\xf0\xe4\x44\xc0\xa5\x1d\x86\x3a\x2d\x83\xa7\xa9\x3d\x33\x32\x71\xd7\x17\x0c\xbf\x44\x4e\x57\x37\x68\x5d\x88\xd2\x74\x14\x25\x8f\x86\xdc\xe8\x28\x62\x06\x2d\xef\x03\xc6\xe6\x6b\xfd\xcb\xf3\xf6\x29\x26\xd0\x5f\x68\x91\xa0\x8d\xe5\x90\x1e\x4d\xba\xdf\x44\xcd\x55\x3e\x02\xcd\xad\x5d\x5b\x21\x99\x5b\x1d\xb9\x3c\x8f\x93\x24\x52\x45\x3b\xaf\x8d\x16\x50\xdb\x17\x98\xcb\xbb\x22\x99\x1f\x5c\x9c\x91\x78\xe8\x26\xa8\xf5\xeb\xe0\x67\xf3\x4f\xfe\x74\x3b\xd4\x86\x9f\xd8\x22\x39\xed\xfb\xb5\xba\x3b\xd1\x20\xfa\xce\x0e\x71\xe5\x07\xa4\xd6\xf7\x80\xa4\x4f\x7a\xa3\x32\x76\xc5\x2c\xc2\x28\xd2\xeb\x7b\x41\xeb\x84\x20\x75\x20\xda\x82\xbc\xb2\xc6\x83\x5b\x4f\xfb\x17\x3a\x4a\x4a\xb4\xb4\x43\x4d\x97\x4d\x7d\xc9\x35\x34\x4e\x7b\xae\x53\xba\x5e\x5a\x7d\x9c\x4c\x5b\xd9\xa8\xf5\xf8\xb4\x34\xcf\x42\x73\xc5\x25\x59\xaa\x7d\x13\xf3\xa1\x20\x52\x9c\x04\xa7\xd6\x9c\xf0\x8a\x0b\x9b\x45\xe9\xf2\x4d\x80\xd2\x7c\x6d\xc7\x6f\xa2\x30\xf8\x56\x05\x1a\x22\x61\x44\x9d\xc4\x09\x1e\x1f\xf1\xea\x5e\xb9\x69\xa0\xc5\x6e\x13\xd3\x19\xd4\xb9\xed\xcb\x53\x57\xfb\xf2\xc2\xa1\x66\x51\x66\xb9\xaa\xb0\x1a\xed\x65\x62\x93\xae\x31\x61\xee\xc6\xb9\x84\x97\xc6\x14\xd5\x4c\x59\x36\x2e\xcb\x9a\xbf\x2c\xa8\x29\x63\xb1\x7c\x91\xe1\x6b\x45\xf1\xc6\x5f\x39\x38\x29\x85\x8f\xb7\x71\xab\x65\x56\x50\x83\x38\x8d\xbb\xd9\x60\x38\x2a\x83\xac\xa1\x35\x18\xe5\x39\x5b\xe7\xb1\xa6\x8b\xd5\x49\xa2\x74\x6d\x26\x74\xd6\x95\xb2\x66\x7f\x1e\x50\xe0\xf7\x77\x04\x6c\x9b\xcf\xb1\x95\x1c\x59\x05\x28\xd2\x54\x9b\x89\x2d\x4a\xa5\x4e\x48\x6d\x56\x81\x29\xe8\x62\xe1\x05\x36\xda\x81\xe8\x76\x85\x94\x49\x74\x53\xf7\x3a\xbb\xbe\x16\x7a\x14\x2f\x01\x71\xda\x4d\x99\xd2\xe6\xdd\x48\xde\x0b\xf7\x78\x6f\xbe\x8b\xad\x16\xdf\xf5\xdf\x4b\x38\xe6\x7d\x67\xbd\x8b\xda\x93\x5b\xb2\xd2\xa1\xac\x7c\x0c\xf2\x61\x78\x14\x7b\xc1\xb9\xc6\x88\x39\x41\x38\xd3\x3c\x29\x24\x10\xc6\x5e\xba\x77\x2b\xf4\x00\x11\xc1\x59\xf3\x94\xb4\x26\xce\xe1\xad\x20\x59\x7a\xb6\x6d\xa3\xbc\xef\xa2\xdc\xcf\x75\x0c\x59\x80\xb0\xf4\xb8\xfd\xec\x44\x25\x4b\x65\xeb\x44\xe6\x44\x5a\x77\xdb\x97\xeb\x7a\x9c\x79\xa6\x1b\x38\xb6\x95\x23\xa4\x97\x71\xa4\x6e\xf4\x0e\xe2\x22\x4a\xcb\x7e\x9e\x0d\x61\x6c\x8c\x00\x5f\x85\x03\xf5\x84\x65\x1c\x62\x90\xa8\x51\xcf\xd5\xa8\x45\x4f\xea\x51\xb3\x89\x37\xed\xf4\xb2\xc6\x3e\xab\x39\x3f\x91\x29\xc7\x83\x08\xb5\x11\xcd\xaf\xf0\x3a\x11\x77\xa1\x7c\xa8\xf0\x34\x59\x0b\xac\xad\xc2\xdf\x90\x47\xaf\xe3\x1b\xa8\x0a\xb3\xa8\x71\xd8\x11\x02\xd8\x29\xbe\x59\xff\x83\xf8\x83\x83\x51\xe1\x15\x3c\x4c\x3f\x60\xa2\xfd\x1a\x0a\x86\x51\xb7\x9b\x8d\xd2\x32\x4a\xcb\x62\x46\xc6\x8a\xf7\x63\x79\xd1\xd4\x03\x6e\xb4\x82\x59\xf7\xd1\xa9\xe5\xe6\xd0\x4b\x4d\x97\xa7\xce\x8a\x23\x5e\xb7\x2c\xa4\xcf\x6c\x54\x25\x55\x26\xb1\x87\xf2\xa0\x51\xc0\xb1\x0c\x79\x2f\x7f\x87\x2a\xc1\x75\xd2\x5f\x2d\x46\x83\x81\xcb\xa5\xdf\x13\x0a\xb0\x5a\x11\xd7\x93\xa9\x18\x79\x71\xb1\x59\xf4\x47\x65\xa9\x1c\x6d\x4c\xda\x2f\x68\x05\xfe\xa2\xc5\x85\x53\xe9\x3d\x15\x7d\x91\xed\x31\x99\x74\x00\x37\xf4\xb8\x4e\x8e\xac\xe8\xbb\xbc\x63\xe4\x12\xa3\x30\x06\xee\xca\xa5\x1a\xcb\x9a\x66\xe2\xa2\x75\x27\x96\x1e\x94\xbe\x19\x09\xfa\x62\x0d\xc4\x68\xa9\xb9\x9e\x95\x56\x2d\xb6\x72\x33\xfd\xe2\x39\xc2\x7f\x46\x49\x92\x6d\xc4\xe9\xaa\xf8\x95\x20\x46\xf8\x69\x8b\xb5\xb2\xef\xa2\x57\x65\x38\xf8\x80\x9a\x38\xc7\xda\xf8\x67\x26\xd6\xcd\x7e\x34\x68\x48\xee\x69\xde\xf7\x54\xf8\xfe\xbc\xa6\x87\xb4\xd0\x94\xfd\x58\x7e\x08\xdb\xf8\x11\xac\x4a\x7a\x42\xaa\xb1\x9d\x6c\xdd\x74\x7e\xb0\x7a\xce\xca\xaa\x6a\x6c\x56\x8a\x87\xef\x05\xa8\x5c\x3f\xeb\xae\xb9\x9e\xa0\x11\xe9\x11\xda\x43\x7f\x5f\x16\x0b\x1b\xbb\x32\x45\x50\x6a\x3a\x4d\x85\x8a\xd4\x6d\xac\x46\xa5\x29\xb0\xa3\x66\xf4\x09\xbb\xfb\x7e\x52\xc7\xba\x58\xcf\x02\x4f\x14\x65\x9e\xd3\x54\x43\x3c\x1d\x2a\xc9\x43\x97\xf6\x66\x83\x28\xd5\xf1\x16\x35\x1e\x1e\x4e\x24\xb4\x14\xd0\xde\x25\x2a\x7f\xd1\x1f\x25\x83\x48\x75\x57\x51\x1c\xf8\x43\xec\x05\x28\xc0\x40\xe8\x04\x55\xf4\xb3\x2c\xbf\x78\x6d\x4c\x20\xb3\x4e\x86\x21\x3d\x13\x96\xd2\xfb\x32\xdd\x3c\x42\x2b\xe8\xc7\x5d\x98\x68\x0e\x25\xce\x44\x29\x10\xf5\x29\x4a\x4b\x4f\xea\x0a\xa4\x65\x94\x00\x8b\xa8\x34\x70\xec\x82\xc6\x09\xdf\xf9\x30\xab\x20\x25\x4e\x4c\xc4\xd6\xf8\xe9\x81\x9c\x72\xcd\x53\x85\x87\xb9\x53\xb5\x4e\x8b\x12\x7c\xdf\x9d\xc9\x64\x3b\xb8\xe1\xfb\xf7\x37\x97\xe7\x9f\x69\xf8\x7a\xc9\x2e\x90\x4c\x90\xda\xdc\xc3\xb5\xa9\x03\xa7\xc4\x61\xa6\x74\x40\xf0\x95\x0f\x99\xf6\xad\xea\x70\xc8\x66\xaf\xcb\x1e\x89\x9d\xf0\x2a\xe9\x04\xec\x11\x6f\x1a\x0c\xc9\x63\x2d\x72\xb4\x3c\xd9\x6a\xfc\xda\xaf\xeb\x1a\xb7\x1b\xc5\x13\xfc\xe0\x3f\x6b\x85\x06\xfe\x7b\xb2\xce\x92\xc6\xaa\x81\x0a\xae\xb0\xb1\xe7\xb4\x7f\x8c\xef\x77\xa6\x9b\xb3\xd4\x1e\x3b\x4e\xca\x4f\x37\xb8\x77\xf8\x84\x94\x4f\x25\x15\x1f\x7f\xcd\xef\xe3\x1d\xd1\xca\x84\x54\x2c\x9e\xd2\x6e\x3c\x0c\x0c\x15\xc4\xef\x18\x29\xef\xd2\xfc\xdd\x88\x72\x01\x9f\x90\xf2\x9e\x6c\x1d\xa6\xc2\xf7\x35\x5a\x61\x7b\x2e\x2f\xca\x28\xed\x89\x0c\x99\xb7\xee\x3e\xc3\x4a\x1d\x67\x11\x22\x61\xe3\xe8\x4f\x41\xe0\xaa\xd7\x2f\x32\xf3\x89\xa6\x86\x44\x4e\xd2\x42\xa6\x75\x3a\xeb\x76\xf1\x61\x96\x44\xc0\x3b\x23\x69\x87\x8c\x98\x1e\x8f\xd9\x8d\x30\x2d\x1f\xa9\xc2\x33\xbc\xe2\x9f\xe1\x55\x5a\x14\x25\x2b\xa1\xfe\x0f\xb5\x03\x2f\x4b\xa9\x09\x71\xd7\x03\x89\xce\x18\x98\x8a\xe0\x4a\x1f\xa9\x7d\xed\x14\xf1\x7e\xb1\x4a\x9f\x7e\x01\xc9\x90\x59\xde\x54\x1b\x85\xa7\x00\x55\x63\x18\xbd\x29\xf8\x20\x61\xf4\xdf\x6f\x05\x99\xd1\x53\xff\x7a\x1c\x3a\x1c\x27\x25\x76\x45\x3f\x16\xb8\x22\x94\x51\xb5\x50\x8a\x0a\xce\x0f\x5a\x64\x90\x79\x1d\x83\xde\xfc\x3a\xab\x1b\xaf\x02\xb5\x97\x3d\xf3\xea\x3c\xe9\xd0\x7f\x88\x1e\x08\x72\x9b\x37\x50\x2f\xb0\xa2\xa9\xdc\x28\x9e\xc6\x95\x09\x7b\x96\xbf\x37\x26\xbd\xf5\xc6\x56\x08\x69\x3f\x27\xfb\xe0\x87\x2c\xc6\xf8\x10\xb4\x1c\x0b\x82\x77\x6e\xc3\xfb\x17\x9a\x45\x5c\x86\x85\x19\xdb\xc5\x0d\x32\x19\xba\x41\x25\x46\x17\xe5\x83\x28\x5f\xab\xb6\x79\x0f\xb9\x38\x8a\x1f\x30\x08\x5b\xc8\x4e\x5f\x8b\x56\x47\x51\xfe\x48\xf5\x49\x94\x7c\xe0\xa4\x6c\x18\x25\x79\x54\xa6\x10\x2b\x63\xc4\x88\xf3\xf2\xc0\xb0\xc7\x62\x2c\x60\x43\x83\x80\x21\x0a\x84\x37\x26\x70\xe0\x53\xe3\xf5\xc0\x01\x81\x2e\x2b\x3e\x94\xf8\x2c\x4b\x5e\xb5\x31\xe4\x8c\xc3\xd1\xca\x0a\x6e\x1e\xeb\xcd\xdb\x44\xca\x79\xbb\xce\xcd\x49\x1d\x90\x34\xa4\x45\x1b\xf3\x7b\x24\x5f\xf3\xbd\x2f\xcd\xf5\xb2\x51\x39\x1c\x95\xd8\x97\x10\x2b\x7e\x36\x66\xe8\xd9\x38\xd4\x23\x51\xb5\x40\x86\xfb\x43\xda\x7b\xe3\xb4\x5a\x06\x4a\x79\x01\x7e\x52\x51\x9e\x52\x57\xa7\x1d\x46\x79\x19\x77\xe3\x61\xb5\x67\x73\x53\xad\x41\x26\xc3\x21\xbd\xe9\x8c\xf2\x59\x8a\x93\xe5\x9a\x3c\xde\x33\xf4\x2d\x2f\xea\xc0\x34\x2b\x66\xd6\x1b\x1b\x7e\x53\x36\x33\xd4\x17\x4f\x70\xb1\xf1\xc4\xd4\x08\x3c\xf4\x52\xb3\xe7\xd6\x5d\x92\xc1\x26\x01\xcb\xe7\x43\xc6\xca\xe1\xb1\x18\x2e\xf3\x69\xf2\x95\xe9\x47\x89\xc9\x15\xaa\xbc\x5d\x2b\xd4\xbe\x8f\x04\x7d\xba\x2c\x46\x3c\xef\xd3\x0f\xef\xff\x33\x0d\xe2\x5d\x9e\x87\xfb\x6d\xda\x75\x88\x42\xd4\xe6\x02\x2f\x0a\x8b\x38\xa4\xaa\xf1\xe8\x66\xdb\xa4\xc9\xf4\x2e\xbd\xa9\x8d\xb8\xec\x67\xa3\xf2\x11\x99\xcc\x48\x36\xc1\x74\xc5\x93\xf8\xeb\x04\x8e\x3a\xc9\x0a\x45\xc7\x78\xc7\x3a\x85\x28\x4e\x2b\x8c\xc4\xb3\xc5\xca\x88\xca\xd4\x83\xba\x12\xf7\x30\x89\xd2\x54\x39\x11\x58\xdc\xde\xc0\x17\xeb\x09\xc5\x4b\xdd\x28\x77\x2e\xd7\xca\x97\x01\xc2\xc9\xaa\x61\x9a\x5e\xb8\xb8\x28\x54\xe8\x7c\x64\xb3\x00\xaf\x0d\x3c\x34\x3d\xf6\x68\xf1\x95\x28\xce\x37\xf1\x31\x6f\x01\xee\x95\x2e\x3e\x9a\xea\xaf\x8a\xee\x56\x56\x94\x71\x39\x2a\x1d\xa1\x4f\xa1\xb1\x67\xea\x4f\x35\x6a\x9e\xa5\xf8\xbe\xd3\xde\xff\x5d\x16\x8b\xfd\x2e\x51\x86\x3b\x11\x32\x9b\xe5\x79\x6f\x5d\x1f\x82\xe8\x69\xb6\xd6\xc2\xa1\x66\x94\xc6\x03\x4d\x0a\xcd\xaa\xd1\x57\xf8\xfe\xdc\xf7\xa7\x26\xfc\xf2\x3c\xcc\x9d\xcb\x68\x65\xa5\x8a\x20\x7d\x90\xa4\xfd\x76\x0c\x3e\xe4\xa3\x58\x39\x6f\xd5\x11\xc0\xcd\x40\x11\x84\x34\x8c\xa1\xfb\x1c\xae\xdf\x6b\x05\xbc\xd3\x3f\x6f\x3d\x11\xa6\xc6\xa6\x83\x34\x06\x36\x91\x3b\x58\x60\xf5\x64\x1c\x9a\x54\x97\xc8\xb0\x70\x3a\x38\x7a\xf5\xd5\x66\x9a\xa5\x85\x4b\x0b\x60\x6c\x11\x4a\x63\x19\xc7\xf2\x05\x1d\x6c\xd5\x06\xe2\x4c\xaa\xd7\x13\xfb\xe8\xb9\xd0\x12\xd7\x45\x1e\x51\xf7\x7b\xe3\xb0\xc6\x1e\x93\xef\xf0\x36\x72\x2f\x06\x1b\xb9\x69\x43\x93\x66\xe9\x06\x02\x92\x1d\x79\xb1\x6f\x4c\x4f\xe5\xf4\xe9\x89\x8f\x7f\x07\x51\xd9\x77\x83\xa8\xf4\x45\x6b\xe3\xb8\x10\xdf\xc5\x6b\x30\x0c\xc0\xea\xd4\x21\x84\x48\xe1\x24\x73\x9c\x4e\xfa\x0a\x70\x54\x96\x59\x9e\xba\xcd\x62\x26\xe4\xbb\xc7\x98\xfd\xa8\x69\x85\x95\xab\xc2\xea\xba\xe6\x36\xf7\x11\x4c\x1a\xea\x9a\x56\x78\x95\xbf\xc1\x53\x46\x98\x8c\xdd\xee\x2d\x41\xb8\xa3\x31\x74\x06\x71\xcc\x04\xae\xd6\x78\x5a\x0d\x2f\xe1\xf3\xac\x98\x3b\x6e\x5f\x1e\x53\x59\x71\x28\x37\xad\xa6\x90\x53\x72\xbe\x5e\xe6\x72\xe8\xbc\x75\xaa\xa1\xbe\xe5\x4b\x0c\xf6\xbd\x73\x72\x2c\xcf\x0b\x62\xd5\xe2\x49\xbc\x6c\x60\x30\xf4\x98\x64\x95\xa2\x21\x7b\x0d\x2a\x93\x5d\x4f\x5a\xd6\x5a\xda\x88\x5c\x5e\x16\x71\x12\xb9\x46\xe3\xdb\xe6\x46\xa4\x55\x4a\x3d\x69\x3d\x37\x19\xfd\xfd\x59\x89\x6e\x1b\xa1\x12\xf7\x8f\x5b\x13\x92\x1d\x5f\xb6\x21\xa7\x51\xd1\x1f\x45\xb3\x12\x89\x29\x75\x61\x4c\xcc\x65\x54\x43\x31\xbb\x3e\x62\xed\xb2\x46\x9d\x00\x8e\xc4\xe7\x51\xae\x5a\x36\x26\x2c\xd0\xd8\x61\x5c\x8e\xf1\xf1\x36\xe9\x90\x95\x71\xee\xa4\x73\xdb\xa0\x2d\xe6\x04\x02\x24\xeb\x3e\x87\xfa\x14\xaa\x40\xa8\x40\xe2\x2a\xbf\xd7\xa2\x76\xe7\x8d\x56\x58\x53\x8e\x8e\xc9\x6a\xee\x7b\x58\x37\x6c\x37\xdb\xb9\x7e\x3e\xdf\xec\x62\x51\xa4\x36\xe1\xd9\x16\xc7\x01\xde\x7d\x22\xeb\xb9\xb9\x50\x14\x3a\xcd\x18\x7e\x6d\x4e\x11\xa5\x67\xc9\x7f\xac\xe1\x35\xa1\xee\x4c\x14\x48\xe2\xac\x9c\x93\xaf\x60\x34\xa2\xa9\x15\x05\x98\xef\x49\x99\x04\x38\x7e\x9b\xb4\xe0\x2f\xf9\xee\x94\x38\x8e\xa4\xc5\x04\x4a\xfb\x02\x83\xfd\x2e\xd4\xa1\xe7\xbb\x59\x01\x7d\x8c\x09\x89\x5b\x55\x31\x9e\xc4\xad\xd3\xbc\xbd\x41\x53\xfa\xd0\xe2\x21\x19\xd4\x1e\x1d\xc0\xcf\xe3\x2b\x44\xc6\x1c\x12\x9f\x88\x75\x6f\x4d\xea\x36\x90\x9b\xd2\x2c\x2f\xfb\x8f\x37\x96\x97\xb6\xaf\x4a\x0e\xe3\x3d\xd0\x97\x5e\xb2\x14\xf5\x14\xaa\x42\x78\x50\xaa\x69\x86\x62\x94\x0a\xae\x1a\x63\xbe\xb1\x3c\xbf\x7d\x95\xac\xa0\x9f\xdc\x22\x88\xa7\x8a\xc0\xeb\xc9\x38\xac\xec\xbb\x60\x0f\x6b\x51\xc8\xd7\x26\xe7\xdb\xe2\xe2\x41\x99\x71\x7b\x89\x27\x7a\x6f\xb2\xe0\xcd\xae\xad\x44\x99\xd9\xe1\x30\xdd\x20\x2d\x19\xb9\x2c\xa4\x77\xb3\x53\x8c\x67\x11\xcb\x74\x83\x4c\xd9\x7c\x18\x2b\x58\x66\xf4\x78\xa2\x0c\xdc\x4f\x36\x9f\x94\x94\x4a\xdb\xe9\xad\xa0\x7b\xd6\xd8\x22\xfa\xf7\x36\x72\x66\x5b\x8f\x42\xf6\x77\x53\xfa\x05\x58\x4d\xf7\x00\xb0\x68\xeb\x94\xbc\x04\x7c\xef\xc3\x31\xa1\x3f\xd0\x94\xd2\x04\x85\xa4\xc7\x2f\x63\x2a\x7b\x04\xb5\xe7\x37\xea\xf0\xc2\xf7\x5e\x9b\xe0\x5d\x6e\x66\xa2\xdc\xe0\x7d\xc3\x54\x6f\x45\x4f\x48\xdb\xad\x28\x5d\x9c\xae\x8d\xfa\x89\x92\x91\x27\x98\xf8\x86\xc8\xf1\xf4\xed\x7e\x36\x2a\xa2\xb4\xa7\x5b\x9c\xb1\x0b\xc9\x7a\xf4\x9d\x56\x28\x4f\x0c\xc4\xde\xf8\xb1\x40\x06\x99\x15\xa0\x88\x59\xe0\xc9\x57\x50\x88\x6f\x7a\x77\x77\x48\x6b\xff\x02\xc5\x55\xfb\xf0\x14\x2d\xc8\x22\x7a\xd0\x39\x79\x3b\x18\x83\xca\x65\x46\x11\xe3\x6f\xed\xac\x4c\x7d\xe3\x1b\xcd\xc3\xf3\xb3\x81\x83\x87\x71\xcd\x26\x7f\x58\xad\x60\xbc\xaa\xc7\x35\x56\x88\x07\xad\x76\x0f\xea\x29\x46\xe0\x43\xcc\x28\x24\x34\x3f\xa4\xf5\xea\xc1\xf8\xf1\xd0\x28\xce\xca\x27\xab\xfb\x43\xcc\x75\x93\xa8\x32\xdb\xd8\x99\x19\xc6\x3f\x61\xc1\xef\x2b\x4b\x5e\x32\x03\xaa\xc6\x06\xf8\x98\x09\xfe\x36\x57\xa4\xe4\xa5\xcd\x35\xb9\x15\xd4\x1f\xff\xda\x38\x80\x54\x4f\xb5\x82\x31\xac\xce\x30\x25\xf6\x60\x48\x1b\x85\x80\xdc\xc8\xa2\x6e\xf9\xa8\x3c\x5d\x0c\xeb\x7f\x2a\x38\x34\x8c\x51\x88\xad\x23\x39\xfe\xa3\xf1\x97\x35\x83\x03\x13\xf3\x24\x5e\x3f\x8a\x7d\x77\xa4\x7a\x83\x5c\x55\x2d\x26\xcc\x11\xce\x62\xab\x24\xeb\x74\x36\x7d\x95\x01\x99\x3e\xb4\x10\xf5\xb8\xf5\x1c\x71\x43\x0b\x79\x37\xf2\xf1\xea\x56\x50\x6a\xb9\x81\xd7\xa3\x27\xec\xde\x9d\x64\xdd\x35\x74\xb0\xd1\xeb\x46\x82\xa7\xc7\x53\x30\xe2\xa5\xe5\xa5\x66\x96\xaf\x46\x69\xfc\x1d\xf3\x96\xb0\x06\xb3\x5c\xba\x9e\x50\xe3\xa5\x1f\xa5\xbd\xc4\xf4\xff\x99\x6d\x6a\x31\xd1\xc4\x90\xad\xc9\x1e\x3a\x59\xee\x5d\xfc\xbc\x03\x83\x5f\xf8\x41\x3e\x32\x30\x6c\x28\xa0\x74\x46\x9b\xd9\x08\xfe\x23\x8a\xd1\xc4\x18\xc1\xbe\x07\x5d\x79\x8c\x8b\xab\x54\xb7\xee\x66\xa0\x91\x39\x89\xbd\x09\xa7\xb8\xe4\xf1\xf1\xf2\x2d\x88\x4f\x2e\x93\x46\xe8\x11\xae\xa7\x5f\xf6\x72\xb7\x49\x24\xd5\x47\xc5\x92\x18\x26\x5d\xbe\xc3\xb4\xa2\x7d\xb8\x9d\xc1\x94\x38\x4e\x36\x11\xcb\xf8\xaa\xe6\xf2\xbc\xaf\x6a\xd6\xe8\x2c\xbb\x68\x55\xfa\x60\x78\x89\xec\xd2\x6b\xed\x95\x10\xff\xc4\x45\x96\x48\x21\xc3\x8f\xfe\x53\x84\x4e\x3f\x55\xe3\xcc\xd9\x5c\x4d\x87\x8d\x50\xac\x7c\x07\x3b\x90\x2d\x7e\x3b\x2f\xe7\x1b\xdf\x68\x6e\xba\x28\xef\x64\xd9\x9a\xe6\x0c\x1a\x78\x03\xa0\x6a\x51\x78\xcd\xa8\xfa\x3a\x3c\xdf\x6c\x87\x07\xdb\x53\x2d\x0d\xf4\xa4\x4e\x64\xba\xe3\xd2\x6e\x5f\xe4\xef\xaa\x1b\xd6\xed\x93\x14\x34\x4f\x70\xc7\xe8\x47\x84\x86\xcd\x5d\x51\x46\xa3\x3c\x4a\xcb\x62\x96\xf1\xd1\x93\xd2\xff\xbe\x50\xa1\x0d\x21\xfd\x8f\x5a\xb4\x6b\x37\xcb\xd6\xfc\x24\x35\xd0\x28\x01\x48\x7d\x88\x2e\xf6\x40\x22\x04\x32\x43\x85\xb8\x7b\x8c\x9b\x3f\x8d\xd1\x84\xfb\xb9\x34\xd5\xff\x7b\xf5\x55\x75\xdf\x2c\x85\xea\xc0\xda\x72\x08\x27\x14\x2e\x00\xa2\xeb\x55\x82\x73\x16\x71\xda\x75\x5f\x91\x9f\x35\xa0\x59\x35\x16\x00\x0a\x7a\x4c\x66\x05\x96\xf0\x39\x04\x3a\x26\x8e\x2e\xab\x07\x16\xa9\x5d\x6d\x92\xb4\x00\x84\x0f\x53\xe0\x27\x2d\xa2\xd0\x1e\x91\xab\x31\x8a\xb4\x44\x13\xa6\x68\x21\xcb\x92\x7e\x17\x60\x02\xaa\x4f\xc1\xfa\x0b\x3f\xc3\x8b\xd3\x3d\xa4\xc5\xdd\xb2\x7f\xc7\x00\xc7\x0b\xa4\xd7\xfd\x68\x3b\xf8\x8c\xde\xa9\xb5\xf0\xee\xe4\x19\x79\x59\x62\x91\xbb\xdd\x22\xb5\xdb\xdb\x54\x22\x2b\xf3\x28\x4e\x35\x32\xf0\xa2\xdc\x41\xa0\x7b\x2a\x2f\x12\x06\x89\xdb\x88\xf2\x5e\xd1\x8f\x87\x0d\x82\x64\x7e\x28\x0f\x43\x8f\x6b\xfb\xac\x3d\x97\x94\xd1\x9e\x80\x54\xd2\x1a\x9e\x85\xae\x01\x70\x72\x93\xbd\xa4\xc0\xde\xf6\xe4\x87\xea\xb5\x18\x29\x26\xe0\xfb\x3a\x49\x96\xf5\x04\xd6\xaa\x50\x00\xf2\x3d\xbd\x82\xba\x82\x71\xf2\x83\xd6\x08\xa2\x0a\x3d\xc6\x76\xe5\x69\xcf\xa1\x62\xf8\x0e\x39\xcd\xa5\x71\x51\x88\xf8\x46\x35\x52\x70\xab\x0a\xd0\xd5\x93\xba\xe7\x35\x4a\xa3\x8d\x28\x77\x7e\xf5\xaa\x13\x0a\x08\xc5\xe6\xd7\x5c\x1a\x01\x73\x88\xa2\x36\x93\xd4\x8e\x51\xf8\x7d\x91\xa4\x46\x93\xa8\x93\xe5\x51\x59\x85\xbe\x24\x3b\x38\x66\xd9\xc1\x71\x5d\x05\x70\x45\x17\x23\x19\x6a\x86\x1b\x0f\xc0\xfa\x63\xad\x9d\x8e\x83\x87\xe7\x9b\x51\x4f\x1c\x32\xcb\x3c\x2a\xe3\x75\xb4\x96\xb1\x74\x3d\x20\x19\xb0\x4b\x54\xbf\x3b\x1b\x64\x89\x5f\x8f\x06\x71\x1a\x40\x50\x2a\xe0\x2a\x0f\xc2\xc4\x5c\xc9\xe6\xa7\x1f\x0d\x3a\x48\x79\x5f\x09\x54\xa0\x50\x50\x3f\x43\x15\xfa\xdc\x25\xc0\xd2\x9b\x20\x23\xf5\xfd\xc6\xa1\x3b\x7b\x93\xa0\x19\xdd\x68\x10\xe5\x51\xcf\xe5\xaa\x21\x88\x42\xdd\x47\x18\x2b\x7a\x32\xb5\x26\x61\x0d\x8f\x5f\xd7\xad\x0e\x63\x0d\x35\x4d\x3d\xa6\x37\x59\x94\xd1\x66\x83\x9a\x7c\xb0\xae\xb7\xcc\xf7\x29\x12\x5f\xce\x33\x87\x46\x04\xf8\x8c\xb0\x1b\xd5\xe3\xad\xf0\xc1\x61\x54\x74\xfb\xf1\x2c\xc5\x55\xd0\xc6\x63\x8f\x3a\x0f\xb3\x0d\xaa\x1a\xbf\xed\xeb\xac\xc9\xa8\x1b\x67\x78\xa0\x3e\xff\x5f\xf4\xd6\x85\x47\x5b\x2c\x05\xb6\x9e\x25\xeb\x0e\xee\xac\x9e\x74\x7f\x0e\x8b\x92\x9e\x4c\xd5\x65\x5f\x5c\x6c\x16\x6e\x18\x41\xf4\x96\x14\x92\xce\x92\x42\xd2\xd9\x5a\x6b\xbe\xdc\xb9\x1e\x58\xb1\x88\x01\x8e\x93\x7a\xe9\x71\x02\xa2\x1a\x9e\x1c\x81\x12\xe2\x29\x4c\x24\x54\x5d\x6e\x31\xca\xe2\x68\x8d\xf6\xe8\x12\x78\xab\x9e\x89\x85\x25\x46\xb5\xb4\xf4\x84\xd8\x81\x82\x70\xf1\x91\x0d\x1e\xd3\x05\x92\x52\xbb\x40\x5d\x91\x62\x14\xa3\x41\x8c\x08\x1d\x2f\x11\x85\x01\xc0\x2c\x81\x46\xfb\xbf\xb8\xd9\x71\x83\x86\xc1\x46\xdf\xb9\x04\x2b\x04\xba\xac\x88\x6f\xf4\xb8\xae\xe4\x3c\x1a\xe6\x59\x94\x93\x98\x2b\x4a\x3b\x7a\x4c\x97\x16\xe5\xb2\x1d\xda\x5a\x77\x4f\x64\x18\x15\x86\x2e\xeb\xa1\xee\xce\x63\xda\x9d\x9f\xd8\x22\x16\x9f\x09\xcd\xe2\x73\x48\x5d\x05\x02\xf2\x2b\x5f\x6d\x13\x00\xf6\xce\x38\x54\x73\xf7\xb5\x1b\xfb\xf7\xeb\xb3\x50\x23\x0a\xec\x6c\x0d\xd9\xc0\xfc\xa6\x19\xc0\x1e\x1f\x48\xa5\x13\x11\xef\xac\x50\x7a\xfd\x6a\x1c\x60\xbc\x3f\xc0\xce\xaa\x42\x34\xd4\x36\xdf\xdb\x0e\x9b\xda\x7a\x5c\xc4\x65\x86\x4d\x0d\x10\x11\x44\x80\x7a\x4c\x4f\x66\x94\x66\x0d\xa6\x59\xca\x3d\x1b\xff\x32\x7c\x6c\x3e\xea\x49\xef\xc9\xa3\x03\x7d\x0f\x49\xab\x15\x8a\x21\xf1\x10\x15\x51\x8f\x85\x28\x30\x12\x1d\xb8\x74\x19\xf4\x3f\xb4\x9a\x3e\x18\x33\x5a\x1f\xcf\x09\xe0\x4a\xc0\x5e\x7d\x32\xe0\x95\xf0\xcf\x4c\x85\x88\x32\xac\x3b\x79\x34\x28\x32\x53\x20\xa8\x45\xdb\xfb\x54\x2b\x5e\xed\x97\x1e\x53\x66\xb9\x53\xf5\x6b\x96\x3a\x31\x34\xac\xdb\x75\x45\xb1\x32\x4a\xe6\xc2\xf4\x3c\x87\x5a\x3a\xa1\xac\x0d\x9c\xa8\x65\x05\x64\x23\xc7\xb0\xbf\x1b\xc1\x3a\xd4\x0d\x56\x72\xe7\x94\x05\x8f\x39\xfc\x63\x82\x45\xfe\x98\x9e\x7b\x9a\xa5\x52\xc6\x44\x87\xfe\x2a\x29\x9e\x40\xbd\xc4\x0b\x80\x2d\x7a\x3f\xd9\xbb\xf8\x51\x95\x64\x9a\x42\xbf\x07\xcd\xdb\xb8\xec\xbb\x7c\x8e\xc9\x4f\x04\x67\x04\x15\x06\x1b\xdb\xef\x49\x4e\x8d\x98\xf3\x89\x76\x08\x1f\x1e\xf8\xdc\xb5\xe3\xd2\xd7\xaa\xad\xad\x11\xb8\x4c\xfa\x6d\xe6\xea\x1d\x72\xd1\xc2\x89\x4d\x3d\x50\x08\x06\x9f\x9f\xa0\x1e\xed\x2c\x41\x7e\x7b\x41\x24\xe7\x66\x02\x2a\x06\x20\x77\xc4\x90\xdb\x13\x76\x76\x35\xb5\xf7\x95\xa8\x28\x5d\x0e\xd7\x64\xa4\x34\x37\x65\xa7\xf6\x92\x13\xa1\xcc\x72\x89\x3a\xf9\xc3\x38\x49\xb2\xe0\xef\x8a\x01\x7e\x0c\x81\x99\x9e\x4c\x05\x3b\x87\xe7\x17\xaa\x5d\xaf\x14\x72\x81\x9a\x75\x63\xb3\xbe\xa0\x80\x7b\x3d\x9b\x2c\xef\x26\xee\xab\x34\x84\x1e\xb6\x02\x17\x66\xef\x96\x14\xde\xd9\xf2\xca\x96\x2d\xf9\x72\xe5\xd5\xc9\x7c\xf2\xe5\xdc\xea\x0a\x55\x72\x0e\x0b\x1a\x46\xe3\xae\x36\x85\xe1\xf7\x81\x33\x41\xee\x70\x9b\xb0\x1b\x73\xa8\x41\xa1\x85\xfa\x13\x4c\x4e\xcc\x8a\x6b\xad\x30\xe2\x8e\x91\x3d\xe2\x05\xb5\x45\xd2\xef\xd2\x1b\xc5\x58\xfe\x5d\x84\x13\xb8\x9a\xbb\x52\xf6\xb2\xc5\x85\xd2\x93\x5b\x78\x07\xa8\x11\x9e\x9e\x7a\xff\x0b\x87\x9a\xaf\xb9\xd2\xe2\x79\x12\x1e\x38\x48\xc2\x03\xba\xec\xb8\xa8\xdb\xaf\x5e\x76\x50\xc6\x04\x50\x89\x4a\xbd\x5e\x22\x24\x34\x5d\xca\x8d\xec\x6b\xf2\xd8\xcc\xda\x4b\x9e\x14\xd2\xfc\xeb\xdc\x52\x16\x8b\x5a\x0b\xf1\x28\x91\x39\xc9\x1d\xe9\x99\xad\xc6\xb7\x17\x7c\xed\x5d\x2c\xb4\x6f\x32\x36\xfb\x6f\xc8\x73\x30\xbe\x67\x68\x52\x3f\xb6\x15\x48\x77\x90\xc5\x41\x18\x76\x1d\xeb\xbf\x95\x20\x02\xe6\x06\xf4\x3b\x80\x69\xee\x92\xb8\xe2\xbf\xd0\x77\x80\xc9\xf7\x77\xc6\x54\x82\xd6\xd7\x6b\x9c\xd4\x6a\x1f\x34\x99\x12\x79\x66\xc0\x35\xfe\x5b\xb2\x85\x1a\x64\xb9\xcb\xd6\x5d\xfe\x68\x58\xfe\xae\x8c\x05\xd0\x82\xab\x7e\x48\x61\xef\x71\xc1\x98\x61\xf9\xbe\xcc\x15\x4f\x55\x24\xb5\x46\x55\xb5\xb6\xa8\x6d\x08\x1e\xb5\x6f\x8e\x7b\xdb\x96\xdf\x9f\x8e\x3d\x5f\x3a\xd8\x5c\x89\x13\x5f\x26\xc2\xe8\x3b\x4a\x76\x21\xa7\x28\xa5\xf8\xb1\x97\x79\x80\xa7\xc6\x23\xc4\x7e\x79\x20\x13\x09\xc9\xd1\xb5\xa0\x9c\x3f\xfe\x33\x6d\xe2\xcb\x5d\x0a\xaa\xe8\x77\x9f\x16\x34\x14\x89\x3d\xbe\xe2\xe1\x0a\x14\x90\xb3\xff\x51\x19\xe1\x4a\x1b\x26\xbc\xf4\xb7\x9f\x23\x8a\xf1\x9d\x31\x19\x9c\x3d\xee\xed\xd3\x64\xe9\xf0\xb0\x19\xe5\x6c\xb6\x42\x5f\xf9\x22\xe5\xad\xab\x79\x2c\x26\xa0\x84\xaa\x7e\x4f\x1e\x9f\x1e\xd3\x6e\xd3\x93\xab\xa1\xfa\xce\x91\x56\xa8\xb0\x1e\x19\x07\xfe\x4a\x37\x1b\x0c\x5d\x5a\x20\x41\x91\xbb\x34\xdb\x40\xb9\x20\x3d\xa9\x03\xd4\x6f\xc4\x09\x42\x44\xb0\x39\x21\xda\xa7\xc7\x13\xa8\x82\x62\x4d\xb5\xd6\xad\xa3\x5e\x5d\x89\x3f\x7e\x71\x31\x74\xdd\xa9\x03\xbf\x33\xce\xb6\x3d\x6c\xe8\x86\x45\x3c\x43\x31\x27\xa4\x53\x2c\x1d\x27\x2c\xc7\xc3\xba\xa8\xbb\xec\x67\xa3\xd5\x7e\x83\xa5\xd5\x83\x0d\xde\x17\x54\xdd\x14\x57\xe8\x4e\x1c\x89\x7c\x21\x49\x8c\x5b\x0b\xed\x0c\xb7\xd0\x4e\xc8\xec\x46\xd3\x09\x3a\xdc\x78\x6e\x3f\x6e\x05\xc0\xcf\x5b\xf2\x02\x94\xae\x38\xc1\x39\x4e\xd6\x37\x91\xdf\x60\x22\x5e\xc0\x66\xae\x27\x04\x34\x52\x8d\x09\x3d\x61\x19\xcb\x51\x5c\x16\x7b\x83\xa1\x27\xd4\x1e\xb0\x90\xa8\xb7\x32\xe6\xc7\x65\x2e\x72\x2a\x15\xc3\xca\x69\x8d\x03\x07\xac\x33\x6e\x4a\x1a\xd3\x0a\x51\x2f\x34\xfb\x9d\x4c\x46\x95\x37\xce\x0c\x54\xcd\x23\x53\xe9\xf6\x9f\x6d\xba\xdf\x1c\x45\xc1\xd2\x1e\x45\x64\x30\x80\xf4\xb8\x86\xed\xb5\xd0\x74\xeb\x42\x24\x9b\x09\xf2\x24\x73\x98\xa6\xb8\xd8\x87\x84\x43\x3d\x35\xb5\x75\xbc\xfa\x6a\x73\x23\x2a\xfa\xa4\x2a\xf2\x21\xa9\x8a\x7c\x58\x87\x5d\xd3\xec\x7e\x73\x86\x56\xf4\x6b\xa4\x21\xb4\x2d\x7a\x04\x46\x48\x9d\xbe\xe2\xa5\x66\x7f\xb3\x93\xc7\x3d\x9d\xc5\x13\x0e\x47\x5f\x66\x0c\xbf\xb8\x28\xea\x9a\x71\x69\xa0\xd3\x6d\x74\xc4\xb6\x2f\xd7\xd5\xca\xfb\x51\x77\x4d\x61\x4b\x6a\x1f\x2b\xf7\x64\x56\xb2\xd3\x44\x85\x83\xcd\xa8\x93\x45\x79\x6f\x36\x40\x47\x1e\x60\xb9\x37\xf5\x38\x2f\xd7\x9a\x7c\x8e\x31\x62\x72\x4e\x75\x4d\xfc\x35\x37\x0c\x70\x11\x1b\x1f\xa1\x48\x73\x31\x50\xd4\xe2\xb5\x7e\xb5\xf2\x20\x3e\xb0\x4a\x37\xe9\xf6\x30\xc8\xb0\xec\x8f\x8a\xc7\xaa\x8d\x81\x61\x01\x5a\x66\x94\xbd\xcd\x96\x5f\xa6\x1b\xc0\x2d\x05\x2f\x06\xca\x4b\x26\x20\x20\xfb\x2d\x46\xfa\x45\xa9\x7e\xa2\xa4\xa3\x72\x3b\x5e\x1a\xca\x53\xb9\xcf\x91\x6f\x8c\xcb\xa3\x06\x41\x71\x54\x89\xc7\xd0\xf0\x3b\x9f\xef\x7f\xa2\x42\x42\x46\x95\x45\xac\xbe\x35\xe6\xe4\x95\xa8\xea\x93\x2a\x49\x65\x3c\x50\x12\xb2\x91\x08\x02\x4a\x55\xf1\xf3\xc8\x93\x7e\x97\xaa\x00\x1b\x2e\x5e\xed\x5b\x11\xdd\xbb\xd4\x1f\x38\xc0\x2e\xf5\x46\x79\xdf\x4c\xbb\x7d\x95\xb0\xc1\xce\xa0\x26\x13\xc8\x3f\x6f\xca\x55\x22\x12\x3e\x42\x4e\x44\x37\x39\xab\xdb\xa6\x6d\xe7\xb5\x6a\x8c\xe6\x9b\x13\xba\x08\xe7\x59\x27\xef\x3c\xb5\x47\xa3\x4e\x91\xe5\x1d\x01\x62\xe2\x8e\x3e\x46\xe0\xa0\x27\x35\x94\x9a\xa5\xe6\x7a\x1c\x74\xe3\x8d\xf2\x28\xd7\xa2\x27\x8c\xf3\x48\xa3\x64\xb3\x28\x05\xc5\x35\x61\xf8\xe8\xbd\xc1\xaa\xd7\x81\xba\xd4\x03\xbc\x02\x3d\x21\x62\x74\x96\xf7\x10\x2f\x06\xff\x27\xb9\x1b\xef\xb7\xe0\x8b\x0b\xe7\x68\x7b\x2f\x60\x6f\x88\xcb\x04\x0f\x06\x16\xe3\x7a\x4c\x5e\x3a\x51\x27\xcb\x65\x57\x47\xd4\xa2\x58\x6b\x12\x94\x3a\x29\xa3\x1b\xf5\xac\x5b\x6c\xb7\x18\x09\xd8\x6a\x8f\x5c\x8e\x09\x68\x84\xc4\x59\xa1\xd4\x88\x43\x34\xbe\xb4\x12\x93\xdc\x38\x9a\xe6\xda\x16\x37\x2c\xe7\xb4\x4c\xe4\x62\xb3\x18\x0a\xc7\x4e\x4b\x56\x75\x04\xb4\x50\x00\x16\x1e\x67\x5c\x22\x27\x52\x93\x81\x49\xc7\x01\x1e\xdd\xab\x89\x7b\x4c\x72\x6c\x33\x80\x08\xdb\xde\x05\x22\xaa\xff\x58\x0a\x1f\xb6\xc9\x11\xf6\xf7\x6a\x8b\x47\xee\x55\xe9\xc6\xe2\x63\x57\x5a\x61\xe0\xbe\x33\x0e\x08\xce\x6b\xc0\x8c\x9b\xf9\x44\x70\x91\x8a\x53\xc5\x4b\x6a\x5a\x86\x6c\x07\xc9\xa3\x1e\xd7\x51\x72\x06\x59\x78\xcf\xd8\x64\xae\x91\xba\xc9\xb5\x89\xbb\x75\xc9\x26\xbc\x4d\x90\x62\x6d\x4b\x30\xcc\x50\x56\x04\xb6\x7b\xda\xf2\x48\xcc\x48\x29\x24\x7b\x4f\xb5\x69\x1e\xcd\x6c\xd1\x3a\xf9\x60\x4c\x1e\x26\x0a\x3c\xc5\x7c\x78\x20\x3d\xb7\xed\xcb\xf2\x68\x3c\x7e\x62\x79\x5e\xb7\xca\xc7\xb7\xc8\xd5\x12\x8f\xc6\x0b\xfc\xed\x5f\xd0\x22\xc1\x3d\x2c\x96\xe8\xdc\xcc\x6d\x61\xb5\xc6\xca\x75\x6a\x4c\xe2\xf9\x8d\x36\xed\x19\xb3\x6d\x6a\x6b\x71\x33\xee\xc2\xb8\xf1\x57\xff\xb2\xdf\x1f\x77\xf6\x1a\xf7\x2f\x34\xcb\x8d\x08\x5b\x47\xed\xf4\xae\x01\x3f\xe7\x4e\x9c\xc0\x1b\xa1\xb6\x76\xa2\xc5\xe0\xe9\x69\xf1\xdc\x57\x9a\x1d\x57\x4a\xd2\x5f\xdd\x18\xae\x4b\x29\x3a\xc8\xd7\x60\x7f\xa4\x1e\x6e\x54\x6f\x49\x46\xaf\x13\x81\x43\xf9\x82\xd6\x14\xad\xe9\x4c\x9a\x18\xa9\xa3\xfa\xe8\x6f\x8d\x43\x7d\xf4\xb7\x7c\x66\xda\xc9\xe2\x10\xfb\x60\x77\x45\x91\x57\x8f\xc7\x01\x9a\x5a\x44\x9b\xc5\x13\xa1\x43\x79\x5b\xb6\x2f\xc3\xb5\x48\xbc\x8f\xad\xfe\x46\x2b\x84\xae\xa7\x25\xf6\xf7\x79\xe4\xc2\x21\xaf\xd3\x21\x3f\xe8\x7d\x73\xbd\x51\xed\xa3\x6c\x96\xf5\x3f\x73\x35\xa1\x81\x37\x6b\xc0\x66\xcc\x40\x1d\xc6\x92\xff\xe2\x7f\xae\xd7\x3d\x8f\x6e\x1e\x75\xd7\x7a\xd9\x86\x4a\x22\xaa\xce\x0b\x06\x91\x05\xae\x61\x83\xbb\xd5\xfa\x6a\x1c\x00\x0d\x79\x8c\xe6\x88\x3d\x24\xc3\x6a\x34\x48\x90\x75\x27\x26\xef\xd0\x4b\x70\x79\x10\xbe\xa3\x7a\xfe\x91\x46\xcc\x79\x8f\xeb\xe9\xe4\x2e\x92\x0b\x93\xe4\x03\x6b\x15\x06\x81\x2a\x1e\x92\xb7\x93\x32\xca\xcd\x5b\x2e\x54\xa8\x13\x97\x16\xda\xa8\x40\x8e\x01\x5d\x41\x3d\xf6\xf0\xbf\x32\x4b\x15\x24\x68\xaa\xde\x61\xb1\x67\xc1\xbb\x6e\x54\x5d\xb9\x7c\x10\x7d\x49\x6d\xe8\xea\xc9\x56\x1d\xb9\x33\x16\x00\x77\x98\x3d\xea\x15\xa2\x27\xe3\x7d\x04\x99\x24\x28\xf6\x49\xbc\x5f\x3d\x69\x3d\x66\xf9\xa6\x73\x8f\x52\x03\x76\xb7\xaa\x89\x7a\x03\x26\x8f\xcf\xba\xca\x82\xa6\xe7\x48\x33\x41\x09\xe4\xa8\x19\xce\x6c\x05\xd1\xd0\x5f\x6c\x07\xe8\xf8\x43\x6c\x41\x18\x5d\xcf\xd6\x38\x75\x2c\x35\x3b\x55\x48\xdb\x63\xc9\xc6\x1d\xc2\x12\xbc\xce\xf6\xb2\x8d\x59\x5e\x7c\xc6\x81\x09\x79\x8e\x65\x0e\xcf\x51\xcd\x3b\x20\xbc\x46\x69\xb1\x11\xad\xae\x2a\x6b\xd1\xbb\x37\x05\xbd\x8e\x77\x83\x32\xc5\x9f\xfb\xc8\xff\x99\xe8\xa1\xa4\x3d\xd3\x22\x47\x65\xfe\xbe\xfc\x34\xf9\xe9\x1b\xa6\x01\xd0\x13\xec\x6e\x5f\xf8\xa2\xb8\x7b\xdd\xf4\x26\x55\xa4\x5c\x98\xec\xa8\x63\xa8\x4d\x95\x91\x96\xe5\x89\x49\xd1\x69\xdf\x2f\xc8\xa3\xc4\xf0\xb9\x28\x11\xab\x37\x08\x3b\x3c\xaf\xf4\xec\xb9\xf6\xb4\x72\xea\x52\xb3\x28\xe3\x95\x15\x19\xae\xb8\xb3\x33\xa4\x44\x72\x66\xa7\xdd\xed\xcb\x4b\xcd\x85\x43\x78\xae\x1e\x2d\xed\xb1\x7e\x77\x91\x2e\x98\xc4\xa8\x3c\x02\x40\x5b\xde\x1d\x07\x0e\x5e\xcf\x0d\xb2\x54\x3a\xa3\x59\x5e\xec\xa9\xfe\x5a\x4b\x39\xd8\xb1\xf0\x38\x76\xb7\x29\xef\xbc\x89\x1b\x35\xfd\xbe\x20\xf2\x7a\x43\xd6\x33\x53\x45\x21\x4d\xfb\x24\xdb\xe0\x56\x21\xe0\x6d\x7a\x5c\x67\xbd\xdc\xcf\x46\x85\x85\xca\x56\x13\x97\x61\x66\x9e\x05\x5f\x0d\x2a\x2f\x59\x5a\xe6\x51\x37\x98\x74\x7b\xd5\x75\xdf\x5f\x9b\x4e\xdd\x5e\x5e\x38\x04\xe5\x77\x33\xeb\x46\x27\xe3\x27\xb8\x65\x3d\x99\x8a\x2c\x0e\x1c\x10\xd2\x75\xbe\x83\x73\xca\xc2\x60\xe7\xa9\x09\x01\x72\x63\x37\xcb\x1d\xc9\x0e\x01\x40\x67\x30\xec\x9d\x8b\x45\x75\x5d\x5d\x11\x15\x0c\x3c\xd1\xab\xb8\x28\x3d\xa1\xfe\xb9\x39\x8e\xbb\x62\xa6\xe1\x5d\x51\x01\x2d\x36\x03\xb7\xea\x75\x60\x2a\x4d\x1b\x7f\x2d\x1c\x6a\x0e\xfb\x59\x6a\x7c\x03\x0f\x59\xf4\x0c\xb9\x73\x41\x90\x30\xcb\x3b\x71\xcf\x23\x80\x2c\x67\xa5\xb6\xea\x25\xf6\xd3\x5c\xd9\x7c\x24\xf0\x65\xd4\x56\xc9\x9c\x46\xc9\xcb\x14\x05\x6c\xd3\xd1\x24\xb5\x5b\xed\x87\xf2\x80\xc6\xa7\x7e\x49\x26\x28\x06\xf7\x36\x45\xeb\x79\x96\x0d\x06\x91\xd2\xe1\x17\x27\xb4\x6a\x4c\x77\x3d\x5c\x5e\x39\x82\x84\x37\xfa\xfc\xb3\xed\xc6\xb7\x5e\xf6\xd1\xad\x5c\x1d\x56\x97\xa3\xf4\x20\x4f\x4c\x82\xe7\x49\xc1\xfb\x1a\x41\xc9\x4f\xd6\xd1\x89\xc4\x67\xd3\x57\x3f\x91\xea\xdd\x65\xcd\xaa\x8b\xec\x98\x32\xfe\x2a\xf5\xb2\xab\x91\xe6\xba\xc0\x1d\xec\xb7\x44\x54\x5d\x1d\xf4\x84\xb0\x24\xc3\xe2\x37\xfe\xfc\xaf\xa0\x84\xee\x05\xf5\x3d\x5a\x41\xb9\x57\xa8\xed\xfd\x83\xa9\xeb\x7c\x71\xd1\x83\x13\x19\xf1\xfd\xff\xd5\xa3\xe9\xe5\x2e\x1a\xe8\xf0\x31\xb5\x45\x79\x01\x06\xeb\x0b\xa6\x38\x83\xf8\xf5\x99\xf0\x6d\x90\x18\xf0\x69\x76\x68\x23\x1d\x0f\x2e\x8b\x59\x92\x14\xb3\xe4\x7d\x76\x67\x4c\xfa\x78\x7b\x08\x6b\xa0\x15\x2c\x64\x3d\xa7\xc7\x41\x83\x24\xef\xb8\xbc\x24\x99\x07\xa5\x5a\xe8\x09\x11\x15\xe2\xb4\x0b\xc1\xdb\xbd\x61\xfd\xf8\x57\xac\xfd\x77\x1c\x01\x9c\xda\x3a\x52\x79\xf0\x88\xcc\x30\xb3\x7b\x24\x9e\xcc\x49\x19\xdb\x7a\x3c\x0e\x46\x9b\x2e\x5d\x8f\xa3\x8e\xd1\x11\xac\x53\xdc\xf0\x84\xc5\x8b\x53\x3c\x47\xaf\xa7\xe3\x92\xd7\x15\x81\x62\x6c\x20\x92\xef\x38\x3f\xb1\xd7\xba\x6e\x36\x13\xe0\x50\x3f\x6c\x05\xd2\x8b\x1a\x9f\x20\xa3\x3e\xde\x62\xe5\xf4\x2a\xd0\x2d\x1e\x91\x61\x8a\xc9\x2a\xe4\xe0\x2a\x49\xf1\x39\xa5\x2c\xfc\x8b\xe6\x64\xef\xbd\x4b\xab\x67\xe3\x51\x4f\xde\x04\xee\xb4\x3c\x1b\xfd\x77\xaa\x2f\x24\x11\xd4\x07\x96\x4d\x4c\xe7\x0e\x39\xb9\xcc\x8a\x84\xc1\x97\x79\x55\x2c\xbd\x74\xb0\x59\xba\x68\xd0\x98\x90\x0a\x6b\x90\xf0\xb6\xb5\x0f\xa2\x3c\xcd\x12\x55\x1f\x32\x6a\x10\x0d\x26\xb4\x09\xcc\x47\xda\x5b\x97\x74\x8a\x2c\x19\x79\x18\x08\xa2\x18\xe4\xac\x7a\xec\x47\x57\xcf\xad\xc7\xde\xf6\xb4\x8e\x7e\xf9\x0c\xc5\xc8\xd9\x28\x8f\x56\xdd\x1c\xb5\xf8\x3e\x1a\x07\x73\xe5\x5b\xdc\x6d\x43\x53\xd0\x9b\xe6\x7b\x4f\xaa\x63\xb5\x4e\x88\xd9\xa0\x13\x7b\x9b\x07\xdc\xe6\x1d\xb9\x0a\x3d\x26\x90\xf4\x30\xda\xc4\x0e\x6c\xdc\xe2\x46\x10\x1c\x9c\x16\xdd\xdc\xdf\xcc\xdd\x6b\xb6\xf6\xf8\x88\x00\x8f\xda\x98\xc6\x35\xfb\x49\x37\x77\xbd\x18\x4b\x88\x8e\xb0\xc9\xe1\x16\xd8\xf4\x49\xec\x8a\xd9\x6a\x08\x58\x6d\x47\xc6\x9d\x4e\xbd\x56\xb0\x7f\x7d\x30\xe6\x29\xf9\x14\x71\x64\x87\x59\x5e\xee\xdd\xfd\x75\x0f\xc1\x6a\x78\x3f\x43\xad\xa4\xf8\x9a\x8d\xcf\x9e\xd4\x45\x0a\xd5\x9e\x4f\xc7\xe4\x21\x70\x53\x4b\x16\xc6\xe5\x98\x2e\xb8\x34\xdd\xeb\xdd\xb8\x14\x68\x11\xb2\x24\x14\x6a\x26\x00\xc3\x47\x09\x60\x7e\xa3\xc6\xa6\x4e\x88\x1e\x33\x14\xfa\x1f\x27\x83\x1a\xa8\xab\xe3\xe1\xbe\x4f\xb1\x53\x99\xad\x6d\x66\xb0\x96\x37\xf4\x4e\xb5\x1b\x18\x80\xb8\xba\x3b\xf4\xde\x6e\xb7\x26\xb0\xa3\xe4\xc9\x70\x95\x14\xfc\x14\x63\x85\x26\xe3\x3f\x65\xb5\xf4\x71\xe8\x96\x35\xda\x8f\x13\x2c\xf5\x75\x11\x89\x34\x25\x28\x6a\x9d\x99\x9b\x89\xd9\xce\x35\xbc\xd5\x36\x34\x03\x3d\xda\xcb\xef\x5e\x9f\x93\xeb\xf8\x5b\xad\x09\xa7\x4f\xd2\x08\xbe\xd8\xa2\xfe\xd8\x67\x80\x19\x78\xdd\xf5\xea\xb6\x90\xbb\x4d\xe3\x48\x6d\xad\xdc\xe8\x6f\xce\x92\x56\xf8\xcd\xf1\xcc\xcb\xcb\xf3\x5a\x64\x9e\x43\x43\xdd\xdf\xb4\x77\xe0\xfe\x74\x6a\xb9\xd9\xbf\xbf\x59\x0c\xa2\xbc\x9c\x09\x92\xb0\x9f\x13\x76\xe7\x06\xc1\xbd\xce\xd5\xd4\x33\x96\x9a\xc5\x28\xaf\x16\x13\x79\x64\x7e\xe1\x59\xb6\xd2\xce\xa5\x29\x22\xa8\x34\x32\x7a\x55\x44\x1b\xa7\x4e\xf7\x62\x44\x09\x77\x49\xe2\x89\x15\x22\x3b\x79\x1c\xa5\xb3\xec\xdc\x2d\xf1\xb8\xae\xda\xe6\x91\x2b\xcf\x02\x69\x7d\xa3\x3e\x93\xcb\xe3\xd5\x7e\x39\x43\xa1\xc5\x15\x0a\x4b\x20\x4e\x63\x26\x2a\x75\xe0\xdd\xa1\xcb\xbb\x7d\x53\x23\x32\xa4\x27\x95\x04\xa7\xb9\x2a\xaf\xbe\xda\xec\xf6\xe3\x24\x54\x57\x54\xd6\x84\x82\xb6\x2b\x3e\x05\x13\xaf\x87\xc7\x42\xe2\x74\x9d\x14\x17\x2f\xd0\x93\x79\x6a\x4b\x2a\xd5\x98\xed\x8f\xb5\x89\x79\x72\x8f\x6b\xcc\x77\x42\x07\xfe\xc7\xbf\xdc\x0e\xf2\x2c\x0a\xd9\x42\xe5\xe8\x32\xf3\x22\xcf\xb1\x73\x7a\x5f\x03\xf4\x57\x34\xe6\x57\xb6\xaa\x9e\x10\x68\xc6\x20\x92\x5e\x26\x11\x2a\x44\x7a\x3c\x7e\x96\x72\x98\x24\x71\xab\x71\x54\xaa\xd8\x27\x02\x8a\x63\xf2\x69\x3d\xae\x35\x0c\xe8\xb9\x28\xd1\x5c\xc1\x07\xaa\xd5\x9c\x32\xcd\x04\x1f\x4c\x8d\x06\x43\x8d\xd3\xb8\xbf\xa8\xc7\xa4\x4c\x2a\x95\x31\xd2\xd6\xfc\x5d\xf9\x9c\x1e\x53\xb0\xd9\x77\x79\xf9\x9d\x06\xc9\xd0\x69\x12\x64\xad\x05\x06\xca\x14\x6b\x05\x96\x2f\x93\x52\x0c\xfc\x87\x87\x93\x7f\x45\xc9\x17\x24\x4e\x7c\x7f\x20\xe8\x14\x82\x5a\x67\x98\x3c\xc9\xbe\xcd\x22\x8b\xea\x15\x27\x29\x4d\x8a\x53\xb7\x1e\x97\x50\x50\x5c\x38\x34\x89\x95\x46\x04\xf9\x3b\xe3\x10\x4d\xfe\x8e\xa4\xb0\x16\x8c\x59\x1d\x61\x98\xb8\x34\x2e\x47\x3d\x64\x72\x5e\x1b\x3c\xe0\xb7\x3e\x23\xff\xc2\x22\x19\x0d\x86\xae\x07\x4f\x25\xf5\x13\x20\x98\xf8\x6d\xec\xf7\xc8\xb1\x4e\x51\x9a\x7a\x8a\x47\xdc\x29\xe9\x2f\xe8\x87\xd8\xe1\x26\x2a\xfb\x5e\xd3\x00\xf8\x96\x6d\x2c\xa4\x7a\x52\xd3\xdc\x6c\xba\xd7\xdd\x60\xe8\xa5\x71\xea\xda\x8f\x61\xbf\x29\xfa\x59\x5e\xe2\x85\x21\xf4\xd0\xfa\x96\xc1\x48\x27\x75\x1b\x96\xe7\x83\x87\x96\x27\x54\xed\x05\x13\x11\xfb\xec\x09\xbc\x63\x04\x68\xc7\xc7\x8c\x42\x25\x57\xd7\x8b\x0c\x29\x8d\x4a\x7f\x87\xde\x32\xdc\x7f\xf9\xbb\xbe\x10\xb6\x5e\x7e\x13\x63\xdf\x97\x72\x02\x9f\x64\x9a\x8e\x73\x78\xbe\xd9\xc9\xb3\xa8\xd7\x8d\x0a\x6d\x84\xa0\x27\xf1\x53\xb9\x09\x3d\xf6\xcd\xa2\x49\xec\xbb\x6e\xa3\xd4\xbd\xb8\xea\x03\x3c\x93\x88\xcb\x0b\x5d\x86\x09\x5b\x74\xd0\x6b\x0a\xc9\xa5\x4d\x50\xcc\x4c\x61\xe8\x2b\x84\xb3\xc8\xd7\x8a\x5e\x94\x38\x4c\x2c\x44\x87\x67\xf0\x3d\x7a\x42\xae\x55\xc3\x3c\x1b\xc4\x85\x2b\xf6\x04\x23\x16\x55\x8e\xf5\x42\x1a\x9e\xd6\x73\x02\x1d\x3c\x3d\x69\x85\x32\xd5\xff\x78\x9e\x3c\x5d\x8e\x4e\xd5\xfd\x9f\x6f\x16\x59\x02\x75\x74\xca\x90\x3d\xd8\x47\x9e\x07\x00\xae\xea\x2d\x80\x35\x70\xa6\x4d\x70\xf4\xb3\x3c\x15\x7b\x2e\x4b\xb2\x55\xef\xb3\x6b\x90\x78\xc6\xc7\x13\x04\xa6\x28\xb3\xee\x5a\x01\x59\x01\xe4\x14\x3f\x91\x9f\xf4\x74\xbe\x17\x0d\xc5\x70\x1a\xcf\x14\xa9\xdd\x8f\x31\x46\x27\xec\x2d\x75\x17\x68\xd1\x78\xf9\xd1\xa4\xbe\x4c\xf5\xb4\x54\xfb\x7a\x1c\xda\xd3\xc7\xd8\x29\x93\x25\x9c\x93\x2c\x2a\x65\x3d\x01\xd6\xe0\xef\xe3\x67\x40\x9d\x41\xc5\x5e\x8f\x5b\x81\x30\xfc\xf7\xeb\x1a\xf3\xdd\xac\x18\xb8\x32\xee\x92\xb1\xe2\x0d\x32\x56\xbc\x41\xcf\x63\xb5\x7a\x7e\x8a\xf1\x21\x73\x21\x9f\x09\x4d\x85\xe4\xcb\xf3\xa0\xd5\xa4\xb3\xa1\xc6\xf5\x0e\x9e\x01\x4e\xd4\x91\x18\x65\xe1\x2f\x64\x2c\x60\x35\xfd\xc7\x94\x3a\x94\xdd\xc1\x70\x96\x7a\xf9\x2d\x16\x67\x68\x05\x66\x93\x5e\x8c\x9d\x3c\x49\xe6\x3e\xd9\x10\x66\x32\xea\x14\x48\x86\xf4\x37\x28\x98\x91\x60\x0b\x73\xd3\x6c\x2e\x42\x35\x22\xd4\x82\xdd\xeb\x52\xf0\x9b\x54\xfa\x3a\xce\x4a\x5f\xc7\x09\x09\x37\xcc\x60\xf7\xf4\x78\xf5\x55\x18\xac\x6a\x38\x6f\xfe\x80\xa1\x75\xb4\x17\x39\x22\x42\xba\x9f\x33\xac\x1a\xb6\x00\xd6\x77\xa9\x9e\x93\x79\x5e\x50\xfd\xf8\x96\x34\xd1\xd0\x31\x01\x2a\x4e\xd5\x73\x64\x70\x79\x23\xe4\x40\x6f\xb9\x11\xe4\x0b\x21\xdc\x2d\xdc\x46\x43\xe5\xc9\x45\xaa\x21\x22\x91\x30\xfe\xa0\x15\x62\x6b\x85\x7e\x1b\x1f\x60\x9f\xa7\x36\x9a\xda\x87\xd7\x9a\xae\x36\x4a\xd3\x9a\x7e\xd2\x3f\xc8\x61\x9c\xdb\x5c\x44\x4c\xfa\x58\x9b\x82\xd5\xc7\xa6\x9a\x19\x87\xe7\x5f\x69\x16\xc3\x51\xca\xc6\x82\x9f\xb7\x42\x5a\xf9\x39\x95\x7c\xa2\x5e\xb1\x97\x4c\x58\xe0\x0c\x8c\xc8\xfd\xdf\xb7\xa8\xe4\xa8\xeb\x36\xfa\x53\xef\x61\xee\xea\xc7\xc6\xa1\x4c\x74\x1c\x13\x4c\xbf\x6b\x2a\xb9\x7a\xbe\xb9\x9e\x6d\x60\x44\x98\xc3\xf9\x7b\xa8\x45\xe9\x49\x8d\xf9\xdd\x52\x73\xcd\xb9\xe1\x9e\xc6\x62\xc0\xa8\x93\x15\xee\x71\x2e\x06\xee\x92\xc2\xa3\x09\x50\x56\x2f\x09\xf5\x1f\x6b\x75\x5b\x7e\x5c\x17\x1b\xaf\x64\x45\x11\x27\x1a\x7e\xa1\xf2\xf9\x19\xd9\xf2\x7d\x56\xc3\xec\x3c\xd8\xfc\x46\xd1\x20\x4d\x84\x4b\x2d\x56\x1d\xa8\x23\xe2\x56\x11\x47\x0e\xda\x0e\xa2\xdf\xb7\xe5\xd9\xe9\xf1\x54\x7f\x76\x79\xbe\xd9\x73\x49\xb4\x39\xe9\xb3\x7e\x52\xde\xa4\xf9\x15\xef\xcc\x81\x5f\x7d\xb5\xe9\xd6\x5d\xbe\x59\xf6\x7d\x39\x13\x2f\xfd\x38\x89\x9b\xde\x21\x64\xd8\xa5\xf1\x0e\x35\x93\x85\x43\xcd\xa5\x85\x43\x88\x2d\x50\xd0\xfd\x3d\xf9\x38\xba\x24\x6f\xeb\xb3\x54\x1a\x38\xaa\xcb\x18\xfe\x27\x01\x94\xc0\x32\xa5\x8e\x06\x86\x79\x0d\xfd\xb2\x63\x90\x6b\xb6\x26\x22\x01\x7d\x6f\xd3\x22\x0a\x04\xa6\x94\x9f\xf0\xbb\xff\x9d\x4c\x67\xf5\x2d\x95\x07\x8d\x55\xe2\x5d\xc2\xee\x58\x81\x59\x41\x51\xca\x02\x97\x69\x6d\x8c\xf0\x9d\xaf\xfe\xc0\x81\x66\x37\x4b\xbb\x6e\x68\xad\x3f\x4f\xff\x25\x75\xd5\xe7\xfc\x65\x8d\x52\xaf\xdd\x2f\x3b\x81\x77\x4b\xf5\x73\x7d\x5a\xe5\xa3\x4a\x31\x87\xd9\x10\x41\x90\x57\x00\x3a\x1c\x44\x06\x9f\xf0\x2d\xc3\x24\x51\x19\x47\xc4\xfc\x28\x6a\xe1\x1d\x7c\x28\x6c\x2c\xcb\x1f\x6a\x74\x94\xff\x43\x08\x70\xcf\x06\x28\x63\xb0\xa4\x09\x7d\x2b\x95\x2b\x31\x5e\xe8\x4e\x09\xc7\x6a\x59\xe9\xc5\x45\x99\xc7\x9d\x51\x68\x25\x63\x23\x79\x43\x7e\x47\x8f\xc7\x5f\x9d\xd6\xeb\x38\x3c\xbf\xb4\x4f\x9e\x00\x2a\xf2\x7b\xb6\x1a\xbf\xf6\xeb\x13\x15\x34\x43\xc5\x57\xaf\x56\x45\xe8\x10\xfd\x23\x8b\x80\xf1\x10\x4a\xa5\x10\x56\xc7\xa0\xbb\x8e\xbd\x51\x9d\x3b\xa8\x6b\xff\x3b\x63\x42\x9d\x6b\x69\x18\xbf\x7d\xa3\x15\x2a\xbd\xc3\xc4\x45\xe8\x98\x78\x29\x0f\x50\xee\xf4\x78\x6a\x7e\x49\xd1\xad\x9b\xbb\xf0\xa0\xb5\x9c\xd5\x0a\x4d\xee\x69\x1e\xda\xc2\xa1\x66\x3e\xea\xf5\x14\x59\x88\x4f\x5d\xa4\xbf\xb8\x58\x57\xd5\xe8\xba\xa8\x00\x7f\x50\x69\xbb\xad\x90\x54\xfd\xbb\xa9\x61\xb6\x7f\x7f\x73\x68\xc6\xca\xe6\x0e\xc2\xc6\x0d\x44\x55\xfc\x6b\x75\x34\x80\x8d\x7e\x3c\x20\x11\x58\xf8\xcb\xea\xf1\xd4\xd5\x2d\xcf\x37\xb3\x0d\x5f\xd3\xc4\xe4\xfa\x19\xb9\xed\xfc\x8c\xd4\x64\x56\xe2\x95\xb2\xaf\xbd\x38\xec\xc0\xff\x37\xd6\x06\x3d\x21\x53\xbb\x62\xd4\x29\xe2\x5e\xec\x0d\x96\xfc\xa5\xbc\xe8\x2f\xab\x8e\xca\xdd\xad\xa6\xbd\xf9\x89\xaa\x67\xab\xdc\xae\xf9\xb7\xd6\x54\x65\x8d\xed\x37\x4b\x2a\x41\xe7\x99\x7b\x45\x2b\xf3\xee\x36\xb1\xb7\x4f\x72\x37\x27\x89\xd2\xf2\x09\xd9\x02\xac\xde\x4a\xcc\x3f\x0d\xb0\x7d\x4c\x5e\xdd\x11\x62\xf8\x4f\x49\xe7\xf8\x8e\x8c\x78\x2d\x60\x20\x35\x30\xf6\x4c\x48\x79\xfe\x2d\x8b\x73\xbd\xcd\x22\x36\x47\x68\x79\x9b\x30\x7d\x43\xad\xd5\x16\x8c\x9a\x01\xb9\x52\x25\xdb\x58\xc6\x54\x42\xa7\x35\xa1\xa7\xe3\x91\xf3\xdd\xfe\x86\xcb\xbd\xff\x2c\x82\x25\x25\x77\xea\xc9\xd4\xce\x25\x56\x12\xe9\xaa\x4b\xac\x09\x8b\x3d\xe8\x54\x8b\x20\x04\xa7\x6a\x37\xfb\x4d\x17\xe5\xb3\xe4\x05\xf5\x09\x06\xb1\x59\x6b\x50\x89\x54\x37\x22\xab\x13\x4f\x22\x3f\xe1\x09\xe9\xd5\x04\x5f\xa6\x2d\x20\x2c\x36\x7b\xa4\xaa\x64\xdb\x84\x5c\x1a\x46\x8c\x16\xc4\xf5\x53\x0a\xdd\xc0\xeb\x7f\xaf\x6e\x00\xe6\x2e\xea\x49\x32\xcc\xcc\x6e\x42\x6c\xbf\xe3\x33\xd6\x5e\xee\xd2\x6e\xdf\x2f\x9e\xa6\x98\x1c\x5e\xd5\x35\xea\x81\x76\xe3\x72\x2e\x54\x76\x7e\x8c\xd7\x03\x3c\xc8\x2d\xf2\xfe\x46\x87\x76\x42\xa8\x0c\xdb\xfc\x71\xdf\x68\x59\x89\x3a\xb1\x7a\xf3\x7a\x8b\x95\xea\x73\xc6\x11\x0b\x45\x2e\x04\xe2\xeb\x2e\x51\xba\xb7\x96\xc0\xe5\x27\xac\x1c\xfe\x2c\xed\x87\x3d\x97\xa7\x2e\x2a\xfb\x33\xd8\x73\x51\x92\xf9\x47\xdc\x2d\xfc\x79\x2b\xf4\x23\xfe\xa8\x06\x41\xdd\xec\xc5\xb9\x13\x93\x4c\xef\x03\xa5\x3c\x10\x0b\xab\x9e\xf4\xd8\xd0\x61\x14\xe7\xc5\x4c\xe0\x38\x28\xab\x14\x29\xb3\x62\xd7\x0d\x5c\xc5\xd5\xad\xb5\x64\xf3\x09\xb9\x61\xb3\x44\x92\x89\xa2\x66\xd8\x2d\x4a\x50\xae\xb0\xa2\xfb\x65\x01\xeb\xcf\xc8\x28\x31\xaa\x99\xfc\x9e\xfe\x37\xe2\x1d\xcc\x81\x59\x01\xe8\x60\x7a\x9f\x10\xc4\xa0\xd1\xd1\xaa\xab\x05\xae\x6f\x66\x8b\x34\x64\x1e\x6d\x4b\xb9\x5b\x2f\xa8\x6e\x89\xca\xa3\x38\xd9\x88\x36\x0b\x16\xaf\x3c\x89\x15\x42\x4f\xe8\x4d\x14\x65\xb4\xba\xea\x72\xe3\xc5\x78\x05\xb9\x65\xcb\x3b\x3e\xa3\xfe\xdd\x4d\x12\x6b\x7c\x2d\xeb\xa7\x7b\x28\x2f\xff\x02\x13\xc1\x34\xf7\xe5\xa9\x79\x8e\xf9\xe1\x79\xef\xd4\x5a\xfd\x8a\x7a\x4d\x10\xec\xff\x68\xc8\x6e\x46\x49\x22\x97\xa2\x03\xb6\xc5\xfa\x44\x34\x7a\x8f\x10\x42\xa0\x03\xfb\x51\xd3\x6f\x21\xc8\xed\x82\xa7\x7b\xdb\xb2\x94\x8e\x06\x1d\x97\x1b\x30\xdc\xb3\xf8\x96\xe7\xb9\x4c\xbc\xa0\xa1\xc4\x55\x3f\x13\x36\xa2\x7c\xa0\x9d\x43\x53\x32\x92\xd5\xc1\xe2\xd9\xe7\x76\x86\x2e\xcd\x03\x07\x96\x9f\x0c\x4a\x49\x3f\x25\xdd\xe8\xab\xc4\x69\xb9\x8b\x17\x63\xee\xcc\xf2\x9d\xc8\x9c\xde\xd0\x85\x4a\x79\x54\x88\x98\x6d\xbb\x08\x53\xe3\x9f\x8d\x43\x99\xee\x8c\xf0\x5c\x8c\x46\xdf\x20\x81\x6e\xb9\x27\x6f\xd2\x56\xbd\x28\xd2\xdb\xf7\xb8\x3a\x5f\x52\xee\xbb\xde\x2a\x7c\x33\xf1\xda\xbe\x4f\x1b\xcf\xbb\xf2\xe3\x48\xbc\x3e\xa3\xda\xe5\x30\x8b\xd3\xd2\xf5\x66\xab\xcb\x41\x67\xe1\x63\x82\xe5\x7e\x2c\xf7\x6c\xc0\xca\xea\x32\x0d\x70\x59\x63\x10\x3a\x18\xa9\x3e\xae\x92\xe6\x89\x2e\x78\x74\x82\xa6\x19\xe5\xee\x4f\x56\xb7\x89\x84\xfb\x1a\x44\xce\xbc\x33\x78\xb5\x96\x98\x0b\xa1\x24\x0f\x08\x03\x3f\x93\xa7\xe4\x95\xb0\x43\x0b\xf3\x1a\xd2\x53\xd3\x34\xaa\x6e\x19\x93\x71\x0e\x13\xd0\xda\xe4\x8d\xfd\x0b\x81\x86\x10\xda\xe3\xcf\xb4\x05\xcc\xeb\xe5\xb0\x97\x16\x0e\x05\x8d\x88\x6a\xc6\x23\x70\x39\xd3\x22\x2c\xe7\x55\xb2\xa6\xfe\x44\x58\x2c\xf6\x60\x83\x6b\xcd\x13\x5b\x44\x55\xd8\x2d\x6a\x66\xd8\xc3\x6f\x0a\x57\x10\x6f\xe5\x2b\x6d\xd2\xe7\x78\x0f\x9b\x1f\x4a\x2b\x7b\xb7\xd8\x1e\x10\x8c\x51\xed\xfc\x8c\x49\xaf\x78\x46\xb8\xf1\x68\xe8\xdc\x9f\xaa\x35\xbd\xb8\xd8\x5c\x8b\x7b\xa9\x83\x8e\x9d\x17\x1d\xac\x9e\x9d\x49\x5a\xf0\x7b\x79\x2d\xda\x04\x70\x10\x4f\xfc\x22\xae\x47\x4f\x58\x71\x35\xcf\xab\xed\x1e\x4e\x95\x08\x9a\xb6\x5b\x93\x86\xcf\xb4\x28\x05\xc8\xfb\xc0\xa5\x46\x88\x9b\x34\x9d\x34\xc2\xed\xce\x40\xf5\xc0\x81\xe6\x30\xca\xe1\x56\xa0\xc5\x46\x2c\x51\x56\x79\x7c\x96\x14\x90\x93\x41\x9c\xae\x96\x19\xf6\x3d\x13\x96\x90\x77\x60\x92\x13\xfb\xfc\x5e\xbb\x9a\x3d\x42\x1e\x31\x77\xc7\x5e\xbe\xf6\x97\x9e\x6d\x07\xee\xcb\x63\x5b\x64\xcc\x76\x81\xb9\x00\x3f\xc5\xc6\x21\x53\xf9\x4f\x83\x8f\x88\xf9\x3b\xb7\x45\x9c\xc6\xe9\x38\x7f\x71\xb1\xf9\xcb\xff\xd5\xaf\xfd\x97\xcb\x8d\xd0\x2e\x46\x8f\xd9\xb8\xc8\x35\x8d\x82\xdc\x45\x14\x43\xd4\x09\x80\x3c\x43\xd8\xfc\x12\xd0\xca\xea\xfb\x75\x4c\x92\x92\xda\x55\xcc\x2e\x3f\x58\x3d\xf5\xfb\x6a\x8d\x93\xe9\x52\x33\x1a\xad\x8e\x8a\x32\x4e\xbd\xa1\x03\x1e\xfb\xf9\x16\xbd\x83\x69\x51\x6b\x89\x06\x87\xc3\x3c\x8b\xba\xfd\x06\xe1\x95\x2f\x11\xe9\xee\x12\xf3\xec\x5c\xfc\x1d\x27\xc5\x50\x94\x74\xd1\x65\x41\x8a\xf7\x7b\xd8\xad\xf5\x3f\x48\x16\xe8\xf7\xe8\xa6\x87\x79\x36\xcc\x8a\x28\x79\x5c\xd6\x11\x6b\x13\xc9\x1f\x62\xbe\x5f\x6f\x4d\x2a\xf2\x54\xb3\xda\x50\xe0\x61\x63\x3b\x82\x98\x1d\x35\x44\x88\x59\xa1\x42\xfd\xae\x2c\x82\xfa\xef\x12\x80\x63\x22\x7f\x82\x31\x8f\xf5\x59\x11\x4f\x66\xbc\x20\x2b\x8f\xc9\x29\x4e\xeb\x9f\x16\xa3\x8e\xd9\xdd\x98\x2c\x7d\x75\xd3\xa6\x18\x10\xea\xbc\xe9\xc8\xd3\xb5\x11\x03\xbd\x3f\x26\x3c\xf8\xfb\x35\xa0\x88\x85\xe6\xaa\x4b\x5d\x5a\xba\xae\xa5\x61\x13\x6a\x21\x7a\x52\xe7\xe7\x5d\x6e\xc4\x5d\x08\x55\x9b\xbb\x56\x83\x34\xa9\x38\xe2\x1e\xc4\x48\x6d\x11\x32\x7f\xc2\xf1\xf3\x27\x35\x4e\x3a\x4b\xcd\x7e\x9c\x24\x0d\xd2\xc4\xff\x7c\xa2\x46\xf7\x79\x2d\xd3\x2e\x1f\x0d\x3a\x89\x9a\xa3\xf9\xc6\x08\x69\x92\x87\xa0\x66\xc5\x25\xe5\x23\xf2\xf2\xac\xf1\x19\xd0\x60\xb7\xe5\xe5\x51\x37\xf3\x15\x46\x5d\x79\x3f\xc5\xd6\x84\xda\x7c\xc3\xcb\x06\xff\x94\x1d\x48\xde\xf3\xe1\x48\xd4\xed\xba\x61\xb5\x6d\x92\xd0\x83\x12\xa3\x50\x7d\xd9\x85\x85\xdd\x24\xd7\xab\xeb\x41\xc8\x7e\x84\x9a\x92\x49\x96\xae\x1a\x7e\x13\x49\xfc\x75\xe2\xea\x5d\xaf\x7d\x92\xc5\xa8\x9a\x55\x4b\x54\xbb\xa6\xca\x94\x47\xea\x8d\xd2\xb8\x2c\x66\xa9\x17\xfa\xfb\x1c\xb0\xbc\x81\x5b\xc7\xc9\xb9\xd6\xee\xaf\x7b\xa0\xde\x94\x50\x9b\xa8\x14\x89\xa7\x1e\x55\x0b\x3e\x91\xdf\xd4\xe3\xda\xfa\xea\x20\x4e\xe3\x35\x43\xb1\x1a\x29\x99\x10\x0f\x41\x41\xc4\x78\x1f\x94\x99\x5e\x6a\x4d\xf4\x2c\xea\xb2\xcd\xd7\x5c\x9a\xc6\x68\xfc\x9a\x8c\x82\x7c\xbb\x9e\xf8\x88\x28\xea\x64\xeb\xee\xc9\x80\x2c\x7d\x62\x2b\x74\x81\xe6\xda\x5c\x8d\x1f\x13\x96\xfa\xfc\x78\xf7\xd7\xcd\x79\x07\x0b\x3d\x26\xc1\x2e\xa1\x83\xf8\xe4\xd4\xeb\xf5\x7f\x65\x2b\xb0\xc0\x55\xa2\x1f\xeb\xc0\xc3\x71\x88\x59\xfe\xc5\x78\x42\x4d\xa4\x1a\x95\x32\x6e\x16\xff\xe3\x36\x21\x6b\x4f\xf9\x4b\x5f\x49\xb2\x0d\x55\xbc\xc3\x25\xee\x6e\x13\xb4\xfe\xca\x38\x60\x09\x2f\xd7\x72\xd1\x4a\x97\xa6\xae\x28\x5c\x35\xa3\x97\xbc\x91\x32\x8d\xd7\x33\x54\xb5\xc9\xe3\x6e\x94\xce\x4c\xba\xf6\x78\xde\xf8\xe2\xd3\xb8\x42\x54\x90\x1f\xdd\xaa\x21\x80\xa7\x71\xea\xca\x4d\x28\x03\x72\x05\x0a\x73\xf5\x8b\x31\x21\xfd\x8f\x49\x20\x86\x07\xb7\xbb\x4d\x22\x5d\x99\xec\x5d\x8d\x20\xe9\xa3\x99\xbc\x9e\xd4\xec\x33\x4b\x22\x7c\x3f\xf2\x98\x3f\xdf\xf1\xf1\x4a\x62\xb7\x5a\x3b\xcb\x9a\xa2\x3a\x97\x47\x65\x56\x0c\xfb\x2e\xd7\x16\x5f\x9d\x40\x40\x4d\x29\x30\x89\xd2\x5e\x91\xc4\x3d\xf3\x85\xb6\xbd\x4c\x36\x14\x03\xcb\x56\x49\xe4\x07\x04\x4d\x59\xcf\xe2\xae\x9b\x25\x39\x24\x98\x7a\x5b\x54\x4e\xf8\xd4\x8b\x24\xc3\x5e\x4b\xd0\x51\xb9\xb0\xc3\xf3\xbe\xba\x41\x05\xb9\x8b\x53\x7b\x81\x2c\x17\x90\x58\x2f\x37\x67\xc8\x3e\xf4\x12\x49\x21\xdf\x63\x6f\x3a\xf6\xd6\x29\x46\xb1\x2a\xb8\x2a\x94\x4c\xae\x0e\x2f\xe3\x2e\x6f\xe5\x78\xb9\xe6\x32\x20\x3f\x83\xba\xca\xe3\x18\xb0\x98\x0a\x77\x70\xad\x28\xb4\x7e\xce\xb3\xea\xae\xac\x26\x86\x57\x23\x8d\x32\x97\xe7\x71\x8a\x25\xc4\xb2\x7c\xea\x4a\x5d\xdc\xa9\xd7\xbb\xb8\x28\x4e\x52\x5e\xc3\xe2\x38\xb6\x67\x04\xcd\x5a\x12\xc6\x25\xef\x12\x11\x0a\xbc\xe8\x93\x8c\x78\x3b\xcb\x4d\x48\xf8\x49\x62\x36\xbc\x89\xe5\x13\x53\xff\x0d\xbc\x70\x44\x51\xe8\x3c\xf9\x34\xd9\x6b\x2d\xec\x11\x9f\x61\x15\xf0\x90\x10\x4f\xe5\x76\xa1\xab\x6d\x88\x05\x89\x13\xf4\x9b\xd8\x6d\xf9\x93\x31\x99\xd9\x5e\xa8\x25\x8f\x67\x04\x86\x40\x02\xf1\x2f\x5b\xa1\x23\xf6\x2f\x43\x45\x6f\x34\x1c\xe6\xf2\xc1\xc3\xf3\x06\xf9\x90\x0f\x1a\xfc\x23\xa8\xb7\xb8\x55\x6c\x46\x98\xe9\xbb\x78\xda\xef\xda\xda\x91\x2b\xbf\xbc\x70\xa8\xb9\x7f\x61\x8f\x3c\x3d\xac\x70\xb7\xc6\x44\x13\xbe\x27\x59\xdd\x36\x0c\x1c\xb0\xe8\xfd\x11\x06\x07\x20\x23\x8f\x6c\x11\x79\xfa\x6c\x6b\xa2\xb4\x51\xba\x62\xc3\x15\xe5\x5e\xf9\x6e\x8b\xbb\x48\x09\xfb\x04\xa9\x93\xa8\x36\xb4\xc7\x54\x54\x5f\x8a\xb1\xa4\x62\xf1\xf8\x9f\x77\x35\xe0\xc0\x04\xf8\x78\x42\xf0\x2f\xea\x81\x19\x6c\x5e\x6b\xa1\xa6\x0e\x24\x06\xde\x08\x88\xc6\x6a\x3f\xb6\xc5\x30\x99\x56\x20\x40\x7c\x54\xc7\xba\x1c\xe6\xd9\x7a\xdc\x43\x6d\x1f\xed\x9d\x7b\xd4\xea\x61\xa8\xd7\x30\x2b\x5c\x31\x1b\x0a\xeb\x37\xa9\xf5\x75\xa2\x45\x32\x50\x37\xd9\xb8\xe8\x84\xaf\xc2\xe4\x19\x70\xd8\x4b\x6c\x67\xe7\xbb\x22\x24\x56\x56\x46\x8a\x98\x05\xda\xfb\x43\x82\x5c\x6a\xfb\x1a\x0b\xc2\xe5\x89\xed\x28\x9d\x21\xa4\x09\x5c\x55\xbd\x98\xb9\x1f\x78\x37\xc7\x01\xc4\x5f\x6c\xa6\x19\x14\x0e\xf0\xf4\xc9\xd4\xdc\xb2\xf7\x9f\xd7\x75\x27\xb2\xb2\x04\xe2\x0d\x53\xfd\x2c\xcf\xfb\xb3\xad\x27\xc8\xe5\x3d\xe9\xed\xab\x12\x60\x14\xc1\xdf\xc6\xb2\xe2\x9f\x9d\xaf\x93\x5e\x6f\x51\xdb\xe8\x2d\x2c\x05\xd8\x3b\xff\x41\x2b\x2c\x05\xdb\xe3\xa0\x87\x7a\x9c\x8d\xb7\xae\x8d\xc3\xeb\x7a\x30\xd1\x6a\x90\xc7\x0b\x4f\x39\x2e\xab\x76\xb3\x81\x48\x50\xb8\x62\x0f\x2d\x5f\x27\x39\xf3\x36\x3a\xa8\xfe\x17\xa6\x3b\xf2\x0a\x66\x8c\xc3\x64\x08\x4b\xe8\xa7\xfe\x3d\xaf\xe4\xea\x7e\x49\x92\xdc\x4b\x53\x05\xd4\x61\xd6\x5d\x73\xa5\xee\x55\x5e\x2f\xfd\xc0\x01\xbd\x60\xd3\x7f\x30\x0c\x5f\x4d\x46\xb0\x92\x65\x3d\xb3\x76\x37\x61\x20\xf9\x36\x55\x66\x98\x00\xdb\x06\x71\x9a\x5e\x94\x6f\xc4\xa9\xc4\x1d\x8a\x44\x92\x77\x61\xa8\x24\x4a\xfd\x86\x71\x92\xb0\xec\x0c\xca\x01\x66\xb3\x1d\x98\x7f\x7f\xab\x26\xca\x3c\xd8\x1c\x64\x29\xc4\xf9\x7c\xa3\xec\x0b\x96\x07\xfc\x82\x0d\x11\xa2\x5e\x1c\x85\xe2\x83\xbd\xe4\x50\x2a\x38\x5e\x97\xab\x17\x65\x96\xf5\x48\x15\x51\x55\x7e\xf5\xa4\x4d\xb2\x88\xdd\xcd\xbd\xc1\x6e\xe9\x0c\x9b\xa2\xed\xd9\x62\xbd\xdc\x56\xd8\x44\xbf\xb2\x15\x48\x0c\xc0\x66\xcb\x1a\xf2\xdf\x34\x91\x3a\xa0\x41\x70\xc6\x63\xda\xe2\x81\xac\x23\x3e\xd8\xb1\x1d\x9b\xb7\xef\x89\x2a\xdb\x28\xca\x1f\x99\x70\x2e\xfb\xff\xc9\x1d\x8d\x38\xdf\x2e\x9a\x0b\x9d\x03\xf0\x39\x30\xcd\xae\x13\x95\xf8\x83\xb1\xaf\xe8\x2f\x3e\xd7\x26\xa7\x9c\x99\x2d\x23\x31\x17\xf1\x60\x94\x94\x51\xea\xb2\x51\x91\x6c\xca\xc2\xe9\xb9\x2c\x5e\x5f\xed\x22\xab\xa6\xc7\x45\x99\x55\xd1\x9c\x3c\x1a\x14\xe0\x94\xdd\xaf\x27\x53\x69\xc4\xc2\xa1\x66\x37\x89\x07\x51\xe9\x40\xd0\xd2\xf6\xc5\x38\x20\x83\x4f\x11\x6e\xe2\xe3\xa9\xfe\xb8\xe1\xda\xbb\x51\x9e\xba\x55\x4d\x46\x30\x96\x7e\xce\x2e\x8e\x3f\x9f\x42\x3d\x1e\x7a\xa9\x59\x56\xe3\xd1\xf7\x94\x31\xf6\x6f\xc9\xd8\xd0\xe3\x2f\xfd\xb9\x81\xcb\xbb\xae\x67\xa9\x15\xaa\xd1\x37\xf1\x7b\x7a\xe2\x53\xab\xd5\x7c\xe4\x8a\x6c\x80\x8a\xb0\x09\x65\x37\xbc\x36\xe3\xbd\x56\xf0\x53\x9a\x7e\x3c\x55\xb8\x19\xc5\xc9\x28\xc7\x9f\x73\x61\x0f\x25\xc9\x7b\x94\x04\x9e\xde\x49\x81\xfd\xd5\x2a\x3a\x9f\x21\x95\xbb\x56\x78\x87\x5a\xe6\x34\xc0\x29\x69\x6d\x46\xdd\xae\x79\xcc\xa2\x22\xf8\xef\x5b\x61\xb1\x3d\x35\x09\x57\x08\x71\x62\x37\x89\xe2\x41\xb1\x87\xf0\x85\xc7\x49\xd4\xe0\xaf\xb7\x48\xe2\xe8\xb7\x50\xff\xf2\xc2\x0d\x1e\xb7\xa8\xcb\x3d\x72\xf7\xb7\xc7\x3b\xc5\x8a\x05\x37\x32\x18\x8c\xd2\xb8\x6b\xba\x62\xd5\xc4\x22\x16\xac\x4f\xec\x68\x77\x5a\xc9\x46\xf9\x93\x41\x35\xe2\xbb\x64\xae\xa0\x6d\x17\x04\x7e\x3f\xd4\xd8\x84\x5d\x10\x50\xb0\x50\xb6\x38\x2a\x19\x5a\x52\x40\xae\xf0\x7d\x34\x58\xf0\x3f\x1f\xe0\xea\x95\xcc\x8c\x72\x38\x92\xad\xff\x87\xe3\xf1\x53\x88\x5b\xf5\x6f\xe4\x55\xa2\x9d\xba\x87\xaa\xd3\xef\xb4\x42\xea\x12\xad\xbb\x7c\x73\x36\x08\xd1\x29\x99\x1a\x1a\xab\xd7\xe5\x76\xf4\x3f\x70\x01\xfa\x1f\xad\xe7\x88\x0e\x5b\x94\xf9\xa8\x5b\x8e\x72\x14\xbb\xb0\x02\xa0\x85\xa9\xc7\xbe\x59\x1a\xa7\x2b\x64\x6b\x8f\x06\xdd\x43\x7c\xb1\x9e\x50\xdb\x42\x91\x52\x73\xf2\x14\x30\x26\x6e\x90\x54\x33\xb0\xdd\x46\x69\x95\xdb\x46\xb8\x01\x3b\x76\x23\xbe\xfc\x09\x03\xdd\x55\x93\x31\x5d\xfd\x8d\x3f\x0f\x9c\x40\x96\x6a\x5e\xe8\x51\xd9\x44\xb0\xfd\x0a\xb3\x41\xf3\x38\x2d\x80\x2a\x58\x0c\x16\x1a\x1e\x3c\xfe\xf9\xc4\xbe\x8c\x77\x69\x89\x2f\xaf\xd4\xbd\x28\x99\x95\x97\x06\x42\xcd\x65\xb9\x11\x2c\xa2\x57\x08\xa4\xfe\x63\xd6\x11\xfb\x19\x69\x89\x77\xfb\x2e\x1f\x75\xe0\x0f\x86\xb0\xe1\x4d\x09\x65\xb4\x59\x01\xd3\x4c\xf3\x8f\x08\x51\x4a\xee\xa2\xa2\x18\x99\x29\xfc\x2b\x81\x2e\x5a\x3d\x53\xab\x60\x4f\x17\xa4\x17\x9b\x39\x13\xed\x30\xea\xfe\x90\x78\x11\x7f\x48\x98\x89\xa0\x70\x8d\x97\xf1\x33\xc9\xfe\xf5\x98\x16\xf0\xd7\xe2\xd5\xd5\xc4\x90\x39\x68\x29\xfc\x36\x61\x32\x7e\x9b\x10\xa9\xf9\x28\x51\x4f\x69\xd6\xbf\x81\xe8\x13\xf0\x11\x7a\xcc\x1a\x39\xc4\x00\xd9\xc8\xe3\xd2\xa1\xff\xec\xd3\x36\xef\x8e\x78\x96\xe8\x97\x0a\x16\x7a\x8c\x72\x0a\xd5\xe8\x45\xb5\x7e\x6e\x2b\x60\x73\xcf\x4f\x78\x72\x86\x84\xf6\x7c\x2b\x28\xed\x9c\xd1\x80\x0b\xc1\x93\xea\x89\x20\x2e\x50\xba\x00\x1b\xf3\x22\x8d\xfc\x57\x53\x2f\x60\x79\xbe\x99\x3b\x41\xb7\xeb\x2a\xe4\xf1\x45\x87\xe7\x3d\xbe\x88\x3b\x02\x22\xbf\xdd\xdb\xd7\xf0\x26\x69\x0f\x77\x12\x64\x4d\xe5\x67\xae\x4d\xd2\x8e\xf7\x26\xc5\x20\x98\x6b\x2b\xef\xdd\x7e\x8a\xd2\x0d\x05\xb4\x60\xb4\x02\x52\x84\xe5\x7f\x57\xbb\x41\x2e\x2f\x3b\xf7\xc3\x17\x17\x9b\xa9\xeb\xba\xa2\x88\x4b\x54\x19\x2d\x68\x94\xab\xb1\xa8\xf1\x69\x5a\x57\x93\x24\xdb\xd0\xd0\x1a\x2b\xd8\xbf\x65\x23\x2c\x6c\xa4\x46\x40\xc0\x33\xd7\xff\x19\x33\xa6\x2a\x88\x53\x5c\xaf\xb1\xed\x59\x6a\xf6\x5c\xe1\xf2\x75\xec\x7f\x26\x20\x23\x77\xab\x61\x3a\x19\x74\x1f\x9f\x04\xa4\x14\xa3\x46\xa8\x39\x42\xf6\x54\x8f\x6b\xaa\x99\xcd\xac\xb3\x1e\x67\xea\x1f\xab\x54\x3d\x62\x00\x04\x35\x94\x7e\x94\x94\xa2\x05\xa1\xe0\x39\xe2\x01\x35\xda\x00\x64\xe0\x3d\x6a\x7b\xd8\xd7\xdb\x16\x0e\x05\x15\xda\xea\x99\x69\x7c\x4d\xb6\x36\x6e\xd0\xc9\x37\x33\x28\xfb\xe2\x3b\x66\xdb\x61\x8d\xbe\x29\x03\xc6\xdc\x31\xa6\xef\x60\xa1\xb9\xe1\xe0\x29\x57\x2d\xb4\xa6\x8d\xd2\x20\xd1\x94\x1a\xf8\xda\x46\x94\xac\xcd\x4e\x34\xcb\xaa\x5b\x43\xd4\xfb\x21\x9e\x33\x96\x43\x60\xb3\xcc\x1b\x99\x34\xd1\xba\x65\x96\x17\xf2\x76\xb0\xe8\x6d\xe3\xaf\x7c\x85\xf5\xe5\x25\xaf\xab\x6b\x7b\xcc\x7a\x96\x8c\xd2\x32\xaa\x76\x35\x0f\x8e\x01\x6f\x1d\x65\xa2\x5b\xe3\x30\xa5\x15\x0d\x81\xec\xff\x0b\x6a\x37\xc4\xbd\x2a\xce\xf5\xe5\xd7\xff\xb5\x45\x32\x09\x08\x7a\x11\x8e\x43\x1c\xd4\x9a\x40\x78\x41\x66\xf8\xb3\xf3\x81\x1c\x7a\x49\x2a\xfb\x33\x61\xce\xbd\x81\x56\xb4\x7e\x15\x51\xf0\x4e\xd5\xf9\x91\x0a\x43\x68\x26\xfc\xf6\x75\xb9\x11\x7c\x13\x32\x75\x5b\x5b\x6a\x2c\x50\xfb\x59\x31\x04\x1b\xab\x41\xd9\x26\xb9\xdf\x7f\x4a\x51\x9a\x84\x5b\xae\xb7\x27\x90\xae\xce\x22\xaa\xb2\x09\xd7\xf0\x6a\x7d\xa7\x30\xdc\x8c\xfd\x43\xed\x88\xb3\xf2\x68\xf4\x53\xb4\x93\x95\xce\x0d\x64\x3f\x0a\xad\x99\x0b\xc4\x94\xbf\x40\xf5\xc9\x61\x9e\xc1\x76\xd4\x94\x41\xe4\xe5\xe3\x2e\x67\xdb\xa1\x0c\x78\x8a\xa5\x21\xee\xd4\x00\xbb\x97\x9a\xd9\x4a\x23\x88\x8a\xdd\x6b\x51\x9f\xea\x9e\xef\xa8\x94\x2e\x32\xc8\x97\x29\x2e\xf2\x53\x7d\x96\x24\x4e\xf3\xdc\x75\xcb\x78\xdd\xcd\x32\x11\x8a\xf4\xf4\x11\x45\xab\x99\xbf\x8c\x7a\x33\xf6\x9f\xa6\x27\x2f\x01\x76\x5e\x4d\x13\xeb\xd8\x4b\x21\xcc\x7a\xf9\x35\xcb\x49\x3f\xca\x7b\x22\xc9\xbe\x3c\x6f\x1d\x5b\xd5\x6a\xd4\x13\x0f\x41\x8e\x62\x2f\x1f\xe2\xd5\x18\xaa\x3d\xc9\xd4\x18\x02\xae\x24\x2a\xd1\x8a\xd8\xbe\xcf\xd4\x27\x65\x8b\xd9\xa2\x43\x00\x81\x41\xdc\xad\x86\x93\x96\x0e\x30\x23\xd5\x37\x10\x71\xff\x09\xf6\xb1\x3a\x5f\x57\xdf\x5c\x8f\xd2\xd5\x51\x94\x23\x78\x30\x73\x13\xf9\x23\x73\x3d\xa9\x61\xc8\x8f\xd2\xae\xcb\xcb\x28\x4e\x67\x02\xce\xf9\xc4\x38\xe4\x3f\x58\xb3\x55\x2e\x76\x42\x9e\x41\xec\x30\xaa\x6f\xf7\x04\x8a\x6f\xbd\xbc\x03\x7b\x68\x74\x0a\x26\x6e\x73\x18\x97\xae\x16\x50\x1f\x47\x4e\xff\xc8\x16\x71\x27\xbf\xc0\x1b\x40\xcb\xed\x41\x0b\x8b\x81\xca\xac\x90\x84\xed\x63\x52\x99\x36\xdb\x24\xf2\xb6\x43\x1c\x8f\xcd\xe6\x14\xe6\x9b\x89\xb4\x04\xb4\xfe\x33\xd8\xbf\x15\xba\x8f\x09\xe1\x51\xce\xbf\xf6\xeb\x1a\xf9\x7f\x81\xcd\x1c\x9b\x18\x3c\x80\x50\x10\x9a\x41\x49\x16\x2b\x2d\xc8\x35\xc8\x46\x4f\x8c\xd9\x4f\x08\xa1\x0e\x0a\x09\xff\x06\x05\x6c\xec\xf2\xd7\xd1\x59\xb7\xca\xa1\x8d\xb2\x6e\x96\xf6\x32\x9d\x3a\xd8\x86\x21\xfc\xa7\xc7\x94\xc9\xad\xb8\x3c\x8f\x8b\x06\x69\x52\x43\x9e\x4e\x8f\xa7\x76\x91\xe7\xd1\xb2\x9e\x09\x24\xfd\x3b\x2d\x32\xc8\x56\x8b\x1f\x08\xac\x9c\x9d\xc6\x7a\x2d\x35\x17\x17\x9f\xa6\x64\xe9\x36\x47\xe8\x6f\xca\x9e\x67\x6e\x99\xd5\x2f\x20\x25\xbb\xab\x83\x01\x3d\x82\xdd\xa0\x1a\x61\x43\xfd\xb4\x45\x96\x42\x47\xc9\x0d\xeb\x36\x0c\x9d\x4c\x71\x5f\x5e\x25\x92\xe8\x07\x32\xcc\x30\xfd\xff\x85\x34\x0b\xf1\xc4\x35\xf6\xd1\xa2\x98\xc4\x33\x6c\xdb\x8e\x00\xf7\x36\x26\x94\x4a\x37\xb6\xd8\xac\xab\xe7\x06\x43\x48\x65\x56\x57\x81\x24\xed\x2a\x29\x70\x82\xf2\x6e\x9a\x91\x75\x62\xc1\xdd\x7e\x94\xaf\x5a\x8c\x6f\x84\xf1\x06\x79\x06\x3d\x4d\x3a\x32\x45\x11\x27\x4e\x6b\xbc\x5a\xb7\xc2\x0d\x58\x11\x2b\x7c\x38\x4a\xd3\x91\xc4\x79\x61\x56\xb7\x78\x56\x4f\x2d\xd0\x0b\x87\xbc\xa7\x9a\xc2\x2e\xc6\x04\x88\xfe\x84\xf4\x2b\x86\x51\xb7\x44\x44\x61\x72\x53\x04\x94\xc2\x1d\x9b\x9e\x69\x88\x28\x2e\xb0\xac\xc3\x46\x5c\x80\xe0\x8f\xda\x16\x84\x84\xf4\x98\xca\x96\xee\xf5\xd7\xb3\x74\xae\x4a\x64\xd0\x65\x9c\x81\x7c\x81\xbd\x2d\x02\x85\x5f\x24\x18\xc9\x2d\x19\x51\x56\xe7\xf4\x11\x49\xec\x36\x04\x83\x87\x06\x1d\xb2\x54\xbc\x65\xa4\x06\xd7\x5b\x44\x79\x7b\x8b\x9e\xe4\x86\x4b\x56\xa2\xdc\xcd\x91\xe1\xa9\xae\xdf\x96\xca\x84\x95\xe1\x2c\x29\xd2\x42\x9b\xdb\x2c\x59\x43\xb1\x3e\x5b\x59\x89\xbb\x71\x94\x88\xde\x8c\x61\x2c\xe7\xb6\x64\xbb\xc1\xee\xf9\xbf\x8c\x09\xa0\x06\xcb\x2b\x2c\x55\x9f\xb0\x05\x28\x3a\xe3\x86\xb6\x6d\x78\xff\xd9\xfb\x63\x62\x8b\x3d\xd9\x26\xf2\x7e\xb4\xb1\xb6\x29\x7d\x5f\x33\xfc\x0b\x8a\x65\x67\x7c\x35\x6b\x25\x93\x62\xc2\x26\x97\x8b\x01\x31\xc4\x12\x79\x8b\xd2\xff\x8b\x13\xe1\x78\x37\x57\x84\xa9\x6f\x56\xf8\xe0\xfa\x02\x41\x63\xd7\x5d\x09\x85\x1e\xeb\xaa\xc8\x3d\x61\x69\x3c\xce\xb5\x4c\x5f\x60\x4f\xa2\x8d\x62\x14\x97\xb3\x2c\x60\x4e\x66\xe3\xfb\xa4\xca\x3a\xe1\xc5\x6e\x5a\x7f\x7e\x07\x16\xce\xaa\x10\x9f\xfc\x72\xbe\x6c\xf1\xc0\x3d\xd2\xc1\x9d\x36\x01\x14\x45\xef\xd7\x5d\x77\xe4\xcd\xb3\xb0\xb9\x40\x0a\x0f\xc7\x8f\xb4\xa1\x3b\xc1\x4f\x23\xee\x46\x8f\x4c\xbe\xc6\x03\x07\xb4\x44\xf1\x31\x96\x26\x0c\xdd\xcb\x93\x12\x6a\x54\xc9\xf8\x58\xd6\x23\x66\x83\x9a\x8e\x86\x8c\x15\x23\x37\x4c\xb7\xa3\x45\x16\x3f\x89\xe2\x54\x25\x03\x11\x17\xa8\x4e\x36\x4a\xcb\x0d\x14\xb9\xb0\x06\xdf\x67\x0a\x7c\x19\xe5\xc0\xc7\x23\xf6\xd8\x2b\xc9\x37\x5a\x98\x0a\x05\xc7\x3d\xff\x5c\x5e\x15\x42\x18\xd5\x59\x45\x1d\x64\xdb\x97\xd2\xd7\xb3\x64\xad\xd8\x88\x56\x1d\x34\x2c\x31\x77\x9e\x6a\xcb\xd5\x9b\xbf\x7c\x83\x1c\x73\xe4\xde\x91\xc0\xcd\x6c\xd5\x1b\x79\x45\x69\x97\x5d\xa7\xce\x4d\x74\x46\x02\x01\x69\x35\xcb\x7a\x9b\x2e\xca\xd1\x48\xc3\x8e\x02\x85\x43\x34\xad\x54\x10\x10\xd1\xee\x83\xa0\xf5\xe6\xf2\x32\x4e\xe2\xef\xb8\x1c\xa3\xdf\x72\x92\xd0\x81\xbb\x46\x50\xdf\xa3\xb5\x56\x7b\xdd\x7e\x96\x44\x79\xb0\xda\x43\x19\xe9\x24\x69\x92\x9c\x9c\xe8\x60\xa5\x28\x50\x43\x7d\x10\x4f\xe2\x46\x8b\x9c\x04\xcf\x8c\x09\x07\xde\x0a\xa0\xc9\x3f\x90\x11\x8c\xf0\xe0\x27\x93\x54\xd8\x1a\x51\xc1\x8e\x4b\x56\xe3\x11\xa8\x48\x26\xcf\xcd\x5a\xdd\x44\xde\xda\xc8\xf2\x7c\x33\x4e\x57\xe7\xc2\xf2\x75\x57\x03\x29\x73\x66\x92\x65\xd8\x62\x4a\x09\x92\xcc\xa7\xa9\xba\x26\x05\xf2\xee\xe4\xab\x55\x13\x69\x71\x71\xe9\x97\x68\x0d\x57\xb1\x04\xc4\x4b\x6f\x8e\xc3\xf4\x84\x32\x1d\xae\x4d\x6b\x41\x88\x67\xf7\x6e\x49\xec\x83\x8c\xe6\x8e\xe8\xcc\x22\x7b\x3d\xa2\x89\x9f\x1a\x9a\xb4\x99\x45\x37\x6e\x90\x68\x65\xd8\x9e\xae\x21\xf3\xc3\x02\x78\xa5\x45\x0e\x81\x1a\xde\x20\x57\xbd\xc2\x80\xd4\x33\x54\x64\xf8\x08\xea\x3c\x68\xaa\xdc\x1e\x4b\x1e\x80\xf0\xf2\x28\x02\x11\x93\x5f\x96\xc9\xa1\xd8\x61\xa9\x12\xe0\xc6\xf6\xb5\x99\x7e\x24\xab\x39\x8a\x59\x47\x48\x87\xe3\x6f\x6b\x1c\x84\x6d\x9b\x51\x6d\x69\x54\x8e\xf2\x28\x99\x0b\xce\x09\xa7\x78\x0b\x53\x4b\x58\xf3\x87\x0a\xfd\xc8\xcf\xc7\x01\xb4\x3a\xed\x16\x89\xba\xa3\x99\x90\x52\x79\xe5\x22\xdd\xf9\x45\xbf\xb0\x4a\x91\x2f\x47\x34\xe0\x55\x82\xbc\x86\xe9\xee\x36\x99\x6a\x5e\x24\x83\xf7\x53\x5f\xea\xf2\x34\x70\xfd\x28\x17\xa6\xda\xf2\x3c\xeb\x95\x78\x6b\xb1\xa9\xe4\xed\xdb\x0b\xcd\xdc\x45\x10\x5b\xae\x13\xf8\xaa\x13\xa5\x75\x51\xae\x5a\x02\x18\x3d\x9a\xd5\xea\x49\x0d\xc3\x3a\x1b\xe4\x8a\x78\x36\x59\x53\x4a\x01\xa6\x85\xeb\x0e\x1c\x68\x8e\x92\x32\x8f\xd6\xe3\x2c\x71\x65\x83\xf0\x39\x9f\x52\x52\xfa\xa9\x97\xf3\x18\x6e\x44\x9a\xc3\x61\xc8\x9e\xa3\x38\xe2\x3a\x4b\xa3\xec\x6e\xb3\xc9\x07\x56\x79\xb4\x64\x4c\x90\xb3\xe1\x7d\x87\xef\x32\x57\xf3\x14\x86\x83\x9f\xa7\xde\x0b\x51\xdb\x2a\xe8\x95\xde\xaf\x01\xba\xbe\xd0\xcc\x3a\x55\xaa\xb7\xc3\xe9\x19\x34\x5a\x3d\xae\x73\xe8\x5d\x89\xd0\x61\xb0\x02\xad\xfc\xbe\x9e\xd4\x14\xb7\x5e\x10\x98\xa6\x29\x60\x9b\xac\x9c\x4c\x4a\x44\x45\x7f\x9f\x15\x57\x3c\x8f\x7f\x43\x75\x94\xaa\x8b\x31\x59\x4a\xd6\xa8\xac\x01\x05\xaf\x08\x5b\x4c\x15\x4b\xb0\x2c\x3c\x24\xa5\x34\xc8\xd0\x4d\x80\x29\xb1\x28\xdd\xa8\x2b\xaf\xb9\x75\x97\x8a\x79\x89\x27\xc8\xb3\xf3\xed\xb2\x41\xc8\x1e\x03\x5c\x11\x17\xa5\x41\x0a\x16\xb1\x8f\xe5\x5d\x4c\xc8\xa9\x5a\xee\x50\x83\xd8\x48\xa3\x81\x9b\x25\xff\x2f\xec\xc2\x48\x3e\x1f\xe0\x62\x71\xf2\xfe\x38\x14\xca\x67\x26\xba\x20\xab\xd1\x70\x4f\xb5\x08\x91\x4e\xae\x39\x08\xc3\xb5\x1a\xe5\xe7\xab\x48\x5f\x95\x02\x3c\x0e\x8d\x6c\x98\x97\x9b\x24\xda\x4e\xb4\xd2\xd2\xd7\x9b\x8b\x8b\xb3\xa1\x07\x75\x84\x8c\x9c\xaf\x90\xf7\xc5\xc9\xf1\x84\x5a\x66\x9d\xad\x89\xcb\xbb\x7d\x5b\x83\xf0\x9a\xd0\x7a\xd2\xe3\x2f\x6d\xdd\xf6\x47\x83\x38\xb1\x1a\xb7\x0a\xf1\xe0\xd1\x98\x2a\x0f\x23\x67\x92\x75\x57\x94\x2e\x9f\xc0\x70\xff\x88\x31\xdc\x3f\xaa\x63\x91\xbd\x16\x0d\xa3\xd4\x15\x0e\x60\x6b\x6c\x21\xbb\x05\x68\xa0\xc7\xed\x3a\x32\xb9\xef\x7a\x99\x5e\x8e\xf7\x54\x0c\x30\x47\xd0\xb0\xd1\xf9\x00\xc4\xd2\xbc\x66\x76\x76\x4b\xa5\x9e\xbf\x51\x6c\x64\x79\xd9\x8f\x3d\x44\x4d\x1b\xcd\xf2\xa4\xac\xe9\x5c\x57\x75\xcf\xdd\x4a\x96\x0f\x26\xf8\xf9\x97\x88\x9f\x7f\x89\x50\x4c\xff\xd9\xaf\xfc\x85\x06\x35\x67\xa0\xc4\x6f\xd3\xfa\x29\x92\x59\xcc\xd7\xb4\x09\x85\x3d\xed\x32\x01\x3d\x2f\x4f\x4d\xf9\xfd\xfb\x9b\x1b\xae\x28\x02\x9b\x15\xe1\xcb\x31\x8e\x65\x8e\xd5\x29\x2d\xa6\xe2\x63\x4b\x9c\xef\xcb\xc4\xf9\xbe\x4c\xd7\xfd\x57\xe6\x5f\x9a\x09\x2d\x45\xb8\x33\xaa\x77\x18\x7e\x04\x1b\xf4\x03\xf2\xd0\x1b\x44\xab\x69\xbc\x12\x83\x00\x67\xc6\xee\x1f\x93\x37\xee\xcd\x56\xc8\xf4\xa7\xc1\xab\x8b\x8b\xcd\x9e\xab\xd2\x3b\x27\x71\xea\xe1\x40\x9b\xf3\xb8\x93\xad\x8b\x35\xc5\xc4\xa5\x66\x34\x1c\x26\x86\x36\x50\xf1\x20\xa9\x4b\x99\x90\x50\x9d\xe2\x64\x94\x0f\x5d\x39\x1b\x22\xe8\x1b\xe3\x49\x45\x0e\xf9\x32\x06\xbe\x60\x3c\x3c\x32\x25\xbd\x2d\xbd\xae\x6a\x8d\x47\x29\x15\xd9\xd3\x9b\xa4\x69\xf8\xd3\x31\x49\xfc\x1c\x0b\x34\x9e\xff\xfd\xe8\xd4\xe4\xa8\x56\xf2\x09\x97\x62\x35\x99\x22\x02\xd2\x09\x9f\x6c\xf6\x5c\xd4\x4b\xe2\x14\x2f\x13\x0b\xc6\x55\x32\x13\xbc\xea\x97\x79\x21\x42\xe5\x8a\xb1\xf2\xfa\x3f\xa1\x1b\x7f\x56\x6f\x1d\x0f\xe2\x01\x95\xba\x07\x51\x9c\x14\x59\x3a\x43\xd2\x66\xf8\x43\x2c\xd8\xf0\x4b\x01\x87\xea\x84\xaf\x16\x14\x49\xb6\xee\x52\x23\xf7\x4e\x14\xd6\x6d\x71\xae\xb1\xde\x40\x30\x24\xf7\xa2\x21\x4f\x6b\x22\xfe\xa9\x91\xe5\x72\x49\xe1\x36\xfa\x2e\x07\x1f\x04\x01\xda\x35\x02\x8f\x5d\x23\x32\xd5\xfc\xaf\x48\xdb\xc2\x00\xf3\xe1\x31\x29\x80\x14\xcb\xf3\x35\xdf\xc7\x72\x79\xdc\x95\xf1\xef\xfd\x37\x3d\x26\xff\x87\x0c\x50\xbf\x52\xc7\x07\x13\x6b\xea\xb0\x85\xa8\x37\x99\x9e\x7c\xa9\x50\xef\x20\xda\xec\x47\xc3\x39\x89\xab\xf1\x96\xfe\xf5\x98\x44\x75\x80\x0a\xc0\x1b\x43\xaf\x12\x0b\xe0\x47\xf8\x76\x1b\x29\xf6\x16\x36\xfa\x71\xe9\x36\xa2\xa2\x3f\x1b\x68\x80\x0d\x0e\x9a\x8f\xc9\xf7\x79\xb0\xb5\x0f\x01\xa6\x6d\xb5\xaa\xb7\x13\xa9\x33\x32\x40\x8c\x60\xdd\xe8\xb1\x1f\x67\xab\x59\xb2\xe2\x25\x5e\x0c\xcc\x5f\x7d\x10\x39\xca\x7d\x76\x79\x9b\x1a\x02\xd5\x3c\x96\xd5\x78\x26\x24\xeb\x57\xc8\x48\xf8\x7f\x93\x9d\x13\x8d\xaa\x2b\x53\x91\xd6\x81\x03\xcd\xa8\x28\xe2\xa2\x8c\xd2\xae\xa3\x44\xed\xbc\x64\x03\xa6\xad\x5b\x87\x1f\x8a\x53\xdf\x5f\x00\x34\xe4\x08\x9b\xf4\x1e\xa9\x71\x76\x6f\x16\x83\x2c\x2b\xfb\xf2\x38\x10\x51\x1d\x6d\x51\x46\x7c\x94\x56\xc4\xdc\xf5\x46\x22\x86\x3b\xbb\xfb\xeb\x1a\x9d\x82\xb9\x8a\x68\xe9\x24\x45\x4e\x27\x59\xbb\xfc\xcb\x91\x5c\x6e\xd0\x71\xbd\x9e\xd5\x3c\x0d\x0d\x4c\x94\xe8\x69\xeb\xe4\x17\x17\x41\x53\x47\x3d\xc3\x9c\xa0\x08\x06\x8d\xe4\xde\x6a\x43\x35\x36\xd7\xd1\xa8\x28\xf3\x28\xb1\x29\x8d\x26\x6b\x03\x13\x47\x4f\xea\x08\x17\x20\xc7\xcb\xa3\xad\x6b\x93\x85\x76\x54\x54\x96\x2e\xed\x45\x69\x59\xcc\x52\x83\xec\xe1\x38\x00\xc0\x15\xc5\xaa\x27\xb2\x86\x9a\x7d\xea\x8e\x20\xea\xd0\x4b\x55\x1a\xf6\x4c\xf5\x09\xc4\x88\x3f\x97\xac\x11\x63\xf5\xaa\x34\x5c\xb1\x78\xfd\x70\x02\xb0\x4b\x39\xde\x43\xa4\xb6\xa8\x8f\x7d\x34\x26\x45\xc3\xef\x23\xac\xd3\x68\x95\x29\x15\x0f\x5b\x64\x05\x74\x7f\x1c\x68\x48\x97\x45\x8f\x12\xc3\x76\x37\x89\x3b\xfc\x1d\xa6\xc8\xdd\x62\xa5\xfe\x99\x76\x15\x21\xf8\x3b\x5d\x0e\xcd\xc3\x69\xf5\x9b\x17\x9a\xc3\x3c\xee\xba\xee\xa8\x0c\xea\x37\x26\xbc\x51\x5d\x83\xf9\xf1\xd6\xc5\x30\x92\xc7\x61\xaf\x5e\xf0\x1c\x00\xd2\x79\x04\x93\xd1\xdc\x53\x6b\xf0\x10\xb9\x9b\xd8\xaa\x90\xff\x81\xd6\xa6\xc7\x53\x2b\x89\x58\xa6\x27\x89\xb4\x44\x51\xd1\xfa\x1d\x24\xf8\xde\x1b\xcb\xcb\x35\xde\x23\x80\xf1\xec\x16\x7b\x94\x67\x1b\x79\x96\x0d\xa0\xb9\x60\xea\x36\x0d\x2f\x28\xf8\x83\x31\x09\x18\x5f\x26\xa4\x5b\xd4\xeb\x21\xc8\x43\x57\xe3\x4c\x8b\x14\xcb\xcf\xf8\x16\xea\x4a\x36\x4a\x7b\xfb\xfc\xfb\xfb\x1f\x7e\x71\x2b\xc8\xc3\x7d\xeb\x3f\xe2\x52\xdd\xcc\x56\x88\x12\x75\xf2\xfa\x5c\xfd\xf0\xbc\x3e\x51\xed\xbd\xc8\x1c\xb9\xd9\x94\xf7\x8f\x15\xf7\x1c\xca\x98\x58\xce\xb7\x31\x18\xbc\x58\xf6\xf2\xbc\x06\x4c\xdb\xa4\xeb\x5f\x05\x39\x06\xed\x03\x98\x0b\xad\x2e\x50\x53\xf0\xad\x7f\x20\x49\x02\xf5\x49\x17\xbc\xa0\x51\xc0\x51\x74\xf3\xb8\x88\x8b\xc6\x24\x91\x94\xc8\xa3\x4f\x78\xac\x5b\x48\x5b\x15\xbd\x36\x0e\x1d\xcb\x1b\x2d\x2f\x64\x99\xbb\x5e\xdc\x0d\x03\x90\x05\xbd\xf4\x98\x7e\x3d\x2a\xcb\xa8\xdb\x9f\x23\x26\xf6\x39\xa6\x2f\xa2\x21\x80\x4a\xd0\x3d\x52\x96\x9e\x14\x0f\xa4\x36\xee\x30\x8f\xb3\xbc\x4a\x58\xe4\x79\xfa\x66\x7f\xf5\xf5\xd6\xc6\xdf\x99\x5f\xff\x6a\xb3\xe3\x34\xbf\x36\x09\x8b\x50\x9e\x99\xae\x00\x8a\xd6\x62\xda\xcd\x72\xa0\xac\xb1\x95\xaa\x59\x94\x9e\x4c\xed\x12\xcf\x37\xa3\xa4\x9b\xf5\x33\x50\x06\x7d\xe8\x4f\x19\xfd\xd3\x5c\x35\x4e\x13\xa5\xbf\xdb\xf2\xcf\x7b\x41\x9d\x20\x78\xe1\x22\xad\x8c\x70\x33\x46\x8f\x7d\x84\x58\x64\x03\xb7\xd1\x8f\xca\xc7\x42\xd7\x01\xb4\x22\x33\xdd\xf1\xee\xde\x7f\xea\x97\xa5\xc7\x8a\x27\x76\x12\x8f\x4f\xf9\xa4\xa4\xb9\xf8\x10\x43\x0a\x21\xee\x69\x14\xed\xac\x9c\x2b\xc3\xc9\x40\xfb\x61\x95\x9d\x16\xa7\xf9\xf6\xc2\x04\xd9\x04\x4f\x10\x12\x92\x7a\x4c\xf2\x1b\x55\x14\x53\x0a\x6c\xa7\xe1\x15\xe6\x14\x33\x6d\xfa\xaf\x3b\x1f\xbd\x58\xb4\xe4\x51\x77\x0d\x24\x13\x95\x9a\xa3\xaa\xd6\xf1\xa9\x4b\x5a\x9e\x6f\x8e\x86\x52\xbc\x6f\x84\x56\x10\x06\x85\xc9\x02\x13\xb2\x26\x5f\xd3\xc9\x63\xf6\xd1\xc1\x2c\xe5\x8e\x9f\x3c\xf9\xa8\xe3\x53\x12\x53\xed\xe6\x2e\x44\x28\x19\x17\xd5\xea\x9d\x28\x57\xc2\x98\xa7\xd4\x85\x9a\x2e\x65\x08\x79\x35\xea\x6a\xe6\xa7\xae\x97\x63\xda\x8d\x2f\x4e\x09\x84\x2f\x2e\x1e\x6c\x16\x6b\x9b\xb9\xb0\x2d\xb0\xe8\x2f\x31\xb6\xde\x8a\x09\x1f\xe1\x0d\x9b\x71\x7a\x60\x3c\xb9\x74\x35\x4e\x9d\xcb\x55\x9d\x0d\x43\x00\xb9\xa3\x1e\x13\xb7\x22\x87\xbf\x53\xf8\xe0\x6d\xfa\xe0\xed\xf1\x04\xcc\x71\xb5\x5f\xee\x09\x79\xe6\x39\xec\xbd\xd8\x02\x6e\x11\xf5\x41\x61\x7b\x18\xb8\x9f\x0a\x82\x52\x3f\xc4\x99\xda\xa7\x35\x6d\xe2\x17\x9a\x9d\x6c\x23\xb1\x18\xcf\x17\x56\x42\x91\x65\x42\x1b\xd7\x75\x93\x51\xcf\xe1\xfd\x2a\x34\x43\x42\x48\x83\x69\xec\x1c\x6d\x87\x5e\x6a\x66\xa3\x72\x25\x46\x74\xec\x3d\x81\x43\xba\x46\x61\xce\xaa\x4b\x5d\xae\x04\x8f\x40\x04\xfe\x4c\xe2\x13\x3d\x9e\x5a\x48\x96\x5e\x3a\xa8\x61\xb1\xdc\xa6\x01\x7c\xc3\x3a\x7c\xab\x15\x8c\x2f\x3e\x1f\x7b\xaf\xaf\x18\x7b\x1d\x99\xe4\xf8\xee\x5d\x5d\x49\xa6\x1b\x97\x9b\x1b\x71\xcf\x11\x52\xed\x34\x99\x85\xa2\x32\x6a\x56\xa7\x35\xac\xd3\xd5\x51\x94\x47\x69\xe9\x9c\xb2\x81\x7d\x7c\xeb\x93\xdd\xb7\xf0\x9e\xac\x17\xbb\x23\x6a\x7b\xf5\xd5\x2a\x6a\x7b\x34\x88\xc5\x72\xe4\x03\x97\x54\x40\x36\xae\xb6\xc2\xd3\x3a\xdb\x62\x4f\x5a\x84\xed\xd8\xee\x00\x45\x33\x23\xfc\xea\x01\xa1\x0e\x74\x85\x83\x83\xdf\xe1\x35\xd8\xad\x0e\x5c\x8a\x7a\x00\xb0\x18\xa2\xab\xf1\x82\xf5\x6a\x5b\xa4\x81\x7e\x8a\x00\xff\x77\x88\xa4\x37\x1c\x0d\x86\x08\xcb\x71\x11\xb7\x5b\xb4\x01\xdf\x1e\x87\x0f\x76\x86\xdd\x48\xde\x0e\x96\xcb\x07\xdc\xc4\x7d\x50\x47\xce\x5b\x8f\xd2\x38\x49\xa2\xd9\xe0\xa8\x71\x8a\xf6\x12\xe4\x55\x5a\xe7\x9d\xd0\xb2\xae\x9e\xb2\xc5\x0e\x79\xf6\xba\x10\x49\x54\x69\x08\xef\x61\x4e\x22\x7f\x3d\xde\x9a\x22\xd6\xbf\x74\xb0\x59\x6c\x64\x49\xe2\x52\xe9\xdd\x62\x77\xd8\xc5\x9a\x56\x67\xa9\xb9\x7d\x8d\x27\x76\x14\x8c\x34\xb1\xcb\x9f\x22\x3e\xef\xa9\xba\xca\xd4\x20\xce\xa3\x55\x43\x63\xa9\x92\x1c\x21\xe4\x1b\x5b\x54\x78\xd8\xd3\x9e\x56\x9c\x2e\xe3\x74\x93\xe8\xa3\xe7\x26\xb2\x87\xb0\x36\x65\x1b\xa9\xcb\x0b\x59\x72\x0c\x74\x23\xf7\x63\x9e\x69\x0c\xc7\x91\x07\xeb\x3b\x89\x2f\x9a\x9e\x37\xf4\x35\xf4\x98\x96\xbd\x6e\x5f\xb4\xc0\x64\xa8\x78\x6e\xa6\xa7\xce\xfc\x60\x1c\x8a\x5f\x27\x69\xcd\x89\xd3\x5e\x95\x5e\x6d\x3e\xc3\x45\x18\x05\x56\x62\x0d\x79\x0b\xbc\x52\xa0\x68\xdf\x1c\x53\xf3\xf9\x4d\x96\x6e\x7a\x5f\x66\x1b\x7a\x56\x58\xb4\x0c\x5c\xd8\x58\x36\xfa\xf6\x4d\x8c\x49\xd4\x72\xff\x09\xa6\xa4\x39\x5a\x54\x77\xbe\xad\x16\x7f\x68\x83\x5d\x21\x3d\xa6\xab\xc4\xca\x79\x28\x0f\x40\x2f\x8e\x63\x95\x6b\x32\x6b\xed\xe9\x3d\xc7\xae\x2b\x49\x04\x25\x50\x54\x07\x8c\xf0\x14\x82\x3d\xd1\xae\xde\xfe\xa0\xa6\xa7\x56\xa5\x2a\xab\x71\x09\x1a\x54\xa8\x41\x7c\x34\x0e\xdd\xe4\x1b\x54\x7b\xbf\x48\x45\xcc\xde\x68\x30\x43\xf7\x88\xf6\x1a\x96\x85\xeb\x44\x6f\x3d\x53\x57\x5f\xed\x26\x59\xe1\xc7\x30\xc6\x23\x18\x1b\x7a\x4c\xab\x47\x9c\xae\x54\xc9\x6b\x43\x1a\x97\x28\x76\x9c\x87\xfd\xaa\x9e\xd4\x6a\x87\xbc\x96\xc5\xa9\x89\x85\x21\x94\xbf\x3c\x9e\x68\x92\x05\x41\xb8\x87\x5e\xc3\x7a\x25\x5a\xcf\xf2\xa8\x63\x7a\x64\x28\xc2\x22\x65\xd0\xe3\xa9\xda\xc8\xd2\xf2\x12\x54\xf1\xca\x2c\xd3\xa0\x48\xf5\x90\xf0\x13\x26\x8e\x54\xa3\x83\x57\xf6\xf3\x78\xa5\x54\x0f\x5d\xef\xde\x46\x1b\x11\xbd\xe3\xc1\xa8\x57\x54\xdb\xac\xe8\xbd\x79\xb8\x86\x8a\xac\x19\xb9\x80\x1a\xf9\x3e\xe5\x1a\xc4\xe9\x94\x7d\x7a\xf5\x37\x66\xe6\xb4\x73\xad\xf8\xd5\x2a\x7e\xec\x8d\xba\x88\x1f\x0d\x27\x2e\xf7\x65\xa4\x4c\x2f\xad\x11\xaf\x39\xdd\x6c\x4d\xea\x3c\x24\xd7\x0c\x88\xed\x47\x1b\xae\x58\x8f\x93\xc4\x35\xe4\xb7\x4d\x1b\xbc\x41\x3a\xd2\x35\xf5\x6a\x51\x2e\x58\xd9\xdc\xe1\x0d\x7d\x81\x30\x31\x17\xc6\xcf\x11\x24\x6b\x98\x64\x08\x00\x64\x29\x47\x96\xfc\x8e\x4c\x4f\x3d\x6e\x05\x9a\x88\xfa\x63\xe9\x49\xcd\xbc\x78\xa5\x19\x0f\x86\x12\x50\xac\x3b\x4a\x33\x3e\x68\x85\xad\xe1\x83\xf1\xb3\x96\xcc\x55\x1f\x8d\x23\x38\x8a\x62\xa5\x21\x87\xf6\x80\x17\x26\xa5\xfa\xe8\x75\x2b\x33\x21\xaa\x54\x6c\x94\x9e\x4c\x3d\x0e\xdf\x41\xca\xd2\x5e\x34\x13\xd6\xbd\x0b\x4c\x7b\xb8\x84\xb6\xbf\x91\x67\x9e\x21\x81\x25\x73\x62\xf4\x86\x3b\xe8\x95\xe9\x31\x31\x38\xff\xe2\x5f\xfa\xcf\x1b\x21\xf5\x3e\x2b\x0d\x15\x3d\x6e\xb1\x07\x40\x24\xde\x25\xd5\xb0\xc0\xda\x07\xb8\xb9\x1e\x4f\x55\x61\xab\x19\x3f\x4a\xca\x78\x9d\x3c\x69\xbd\x84\xaf\x47\xdb\x71\xef\x34\xed\x79\xf1\x13\x03\x60\x11\xec\xeb\x16\x39\xa5\x4c\xd7\xe4\xc4\x88\xbb\x9f\x6d\x20\x0e\xf0\xaa\x82\x8b\xde\x85\xfd\xac\x1f\xc3\x82\x79\x9f\x0b\x50\xc8\x7f\x38\x9e\xe8\x98\x7a\x29\xc7\x5f\x6c\xf3\x14\x0a\x12\x73\x07\x9e\xd9\x0a\x2b\xd5\x30\x5a\x75\x52\xca\xf5\xdb\xfe\xf5\x56\x08\x07\xae\x33\x29\x2a\x4a\x0a\xf7\xa5\x21\xbc\xa5\x39\x9d\x3c\x76\x2b\xc5\x6c\xa8\x6b\xe8\x33\x40\x29\xeb\x11\x29\x53\xe3\x52\x77\x6d\x11\x7b\xf1\xa3\x3a\x57\xc0\x4e\x56\xf6\xab\x44\xcf\xeb\x8b\x1c\x95\x4b\xd3\xe3\xa9\xea\xd7\xc2\xa1\xe6\x8a\xa4\x0f\x2e\x0d\x76\xe6\x16\x18\x86\x6c\xf1\xec\x4e\x28\xcd\xcb\xcb\xf3\xd5\xe4\xd9\x43\xe1\xe2\x5d\xaa\x1f\xcd\xc8\x35\x2b\x3d\x88\xc4\x1b\xb7\xc7\xc4\xf2\x33\xb4\xb5\x81\x18\x77\x56\xc7\x04\x6f\xd5\x8d\x3a\x71\xea\x90\x52\xd6\xca\x0b\x4d\x83\x2b\x0e\x36\xcb\xd8\x26\x1d\x02\x81\x6b\xd8\xb0\xf5\x84\x82\x8d\x4e\x96\x55\x53\xb9\xe1\xb5\xb4\xaf\x8e\xe9\x01\x5f\x9d\xba\x24\x9b\x9e\x45\x96\xa5\x73\x8d\xa0\x63\x44\x40\xc3\x67\xda\x84\x0a\xfd\x6c\x1c\x5a\x31\xfa\xd5\x08\xf3\xee\x91\x6e\xcc\x4a\xec\x93\x5c\x7c\xc5\xbb\xd4\xf7\x7a\x77\xfc\x68\x5c\x65\x54\x2b\x7f\xb1\xb9\x0c\xa7\x74\x64\x6c\x57\x5a\xb4\x56\xcf\x6e\x51\xbc\x31\xc3\xa6\xdd\x27\x65\x62\xdb\xc3\x6f\xfc\xd5\xbf\xac\x1f\x7a\x20\xd5\x05\xcf\x57\xac\x96\x13\xb4\x8d\xb5\x4f\x2d\x3f\xfe\x3f\xfd\xa7\x40\xcf\x68\xfa\x32\x0e\x3e\x0a\x6f\x8d\x1b\x87\x5e\x0a\xec\xef\x17\x4d\xee\x65\xaf\x94\xf3\xb0\xda\x22\xe1\xc0\x16\x37\xb3\x15\x38\x46\x47\x30\xb8\x65\xf5\xfa\xcd\xaf\x6c\x35\x0e\xcf\x6f\x9f\x6e\x91\x82\xe2\x8f\xc6\x84\x13\xb9\x87\xf5\x1b\x51\xdb\x11\x6d\xb1\xa1\x2b\xd2\x6c\x87\x6d\x53\xc5\x6f\xe2\xef\x38\xad\x2a\x98\x16\x48\x68\x77\xbc\x5b\x07\xc3\xe9\xbb\x38\xfd\x4e\x23\xc4\xd4\x3b\xf4\x15\x76\xbe\xfe\x03\x07\xac\x4e\x67\x25\x5f\x84\x41\xec\x4d\x73\x5e\x1e\x07\xa6\xee\xdb\x75\xda\x3e\xab\xd9\x48\x51\xd1\x80\x11\xdc\x93\x88\x53\x8f\xa7\xa6\xb4\x74\x00\x52\xb7\x81\x4a\x2d\xfa\x29\x6f\x22\xbc\xc4\x6f\x5c\x6f\x51\x4a\x78\x79\x1c\xac\xe3\xba\xa3\xf2\x31\x79\x92\x58\xf1\x1a\xed\xa0\x67\xa7\xee\x5a\x78\x97\x1f\x12\x72\xf9\x1e\x59\x7b\xe1\x9d\x61\xc7\x51\xfb\x46\x0f\x1e\x09\x72\x3b\xb7\x50\x01\xc6\x57\xdd\x6a\x85\xd1\x76\xd6\x77\x01\x0b\xe7\xd4\x4b\x14\xc5\xb0\xc7\xda\xa1\xf3\x80\x25\x56\xcd\x02\x59\x9f\xe0\x0e\x1e\x1d\x7a\xb4\xf1\x30\xc9\x06\x51\x19\x77\xa3\xc4\x62\x36\xd0\x32\x14\x51\xaa\x27\x7e\xb5\x2f\xd2\x68\xcd\xc9\x03\x53\x31\x0c\x42\x31\xbc\x81\x7b\x47\xa9\xe3\x41\x9d\x69\x0b\x58\x87\x33\x41\xf5\xeb\xea\x98\x78\xec\x00\xea\x98\x6e\xe8\xce\x11\x52\xad\x3e\xdd\x2c\x2d\x46\x03\x5b\x81\x4c\x69\x8e\x9a\x13\x17\x6b\x4d\x27\xa2\x6f\x36\x08\x34\x86\xcf\x5b\x71\x69\x02\xe4\x1c\x25\x5f\xa9\x1e\x33\x56\x95\xa7\x31\x45\x11\x0e\x1e\x23\x77\xaf\x1b\x78\x4b\x88\xcd\x1f\x42\x5f\xd5\x80\x15\x8d\xe5\xf9\xed\x39\xa9\x61\x22\x0b\xb8\xcc\xf9\xca\x3d\x9d\x65\x58\x7f\x6e\x8d\x89\x37\xa1\x2e\xef\x98\x50\x0f\xe0\xeb\xa7\x95\x06\x74\xcf\xcc\xf6\x3f\x74\x15\xf6\xb5\x19\xe7\x2a\x24\x08\x9f\x24\x56\xcb\x94\xa1\xe7\xe5\x09\xa3\xf3\xf3\x0e\xb1\xbf\x8b\x28\x4e\x4b\x15\x86\x50\x19\x27\x96\x4c\x3f\x49\x2a\x52\x3d\x00\xc4\x02\x26\x1a\xa2\x1f\x26\x69\x1b\xbe\xb3\x33\xca\x3b\x51\xba\x36\x4b\x28\x8f\xbb\x1c\x95\x81\x45\x87\x61\xf8\x29\x8d\xcf\x37\xeb\x50\x2c\x07\x9b\xd1\x70\xe8\xa2\x7c\x36\x4c\xe2\xef\xe1\x66\x8c\x1d\xd3\xf0\xfa\xfc\xff\xc7\x98\x3c\xbd\xcf\xd7\x6a\xb9\xe5\xae\x9b\xe5\xa1\x1d\xe4\x7b\x21\xd4\xd0\x0f\xcd\x0c\xd7\xcd\xd2\x6c\xa0\xb3\x22\x04\x20\x3f\x21\xbc\xfe\x4f\x88\xc5\xde\x8d\x06\x9d\x3c\xee\xad\xaa\xfd\x2d\xa6\xc3\x3d\xd9\x20\xf4\x38\x28\x72\x67\x3d\x01\x3b\xb0\x94\x92\x0e\x28\x6c\xea\x77\x31\x8b\xd4\x71\xac\xed\x6d\xfc\xa3\x51\x49\x7c\xfa\x1b\xc4\xa7\xbf\x51\xc7\x6f\xb6\xda\xba\x5c\xbd\x56\xc4\x5b\x13\xe5\xf1\x9a\x3e\xc2\x8a\x73\xbe\x12\x69\xb6\x1e\xf2\xb4\xcc\xd7\x83\xa4\xe6\xa2\x51\x51\xc6\xdd\x06\xf1\xd1\x3e\x24\x13\xb4\x0f\x7d\xa5\xb9\x28\xf3\xb8\x5b\xee\x21\xd7\xe1\x53\xe6\xe4\x78\x78\x7e\xc2\x43\x07\x8f\xea\xab\xed\x90\x9d\xcc\xa1\x3d\x85\x5d\xef\xcd\xa9\x1c\xc3\x62\x06\x69\x32\xda\x23\x05\xdc\xe3\x7b\x63\x12\xfa\x03\x0d\xd3\xd2\x99\x40\x76\xe9\x67\x43\x37\x2b\x9b\x1a\x1e\x7d\x63\x8b\x21\x28\xf2\x47\x5e\x88\xef\x45\x0b\xba\x1a\x6d\x6e\xee\xb8\xc2\xa5\x5d\x37\x43\x1e\x38\xef\x91\x59\xea\x09\xf6\x8a\xbc\x4c\xd1\x7f\xcf\x45\x49\x15\x4b\x06\x32\x4b\x8b\x33\x12\x4f\x1a\x8c\x93\x44\x43\x78\xac\xaa\xc6\x22\xf3\xe6\xf5\x81\x0e\x7a\x9b\xda\x12\x3d\xd7\x4d\xe2\xd4\xe5\x88\xbf\x4c\xe2\x56\xde\xbe\x69\xdf\x86\x37\xb9\xe1\xc4\x01\x7d\x86\x5b\x5e\x84\x28\xda\xdb\xa6\xe2\xec\xae\xad\x9a\x66\x4f\xcf\xe9\x90\xf1\x74\xf6\x45\x6f\x0a\x77\x91\xa4\x30\x8a\xb5\x58\x7d\xab\xf1\x2b\x37\x08\x3e\x78\x83\xa2\xb6\xa2\x74\x2e\x79\x5c\x2e\x47\x11\xfd\x18\x84\x26\xe2\x5d\x8d\x68\xa5\x35\xf3\x88\x7e\xb3\x45\x52\xd5\x6f\xb6\x48\x35\xf7\xda\x98\x70\xa7\x6f\x92\x7a\xc2\x67\x2d\xc2\xa6\xec\xda\x0a\xa2\x65\x1f\x90\xf2\xe2\x4f\x48\x8a\x40\x34\x27\xbc\xf0\x52\x12\xe3\x76\x8c\x77\x10\x5a\xda\xef\x4d\x05\x38\x2f\x2e\x36\x93\x48\xca\x1c\xb6\x7d\x19\x39\x27\x00\x0b\xcf\xd4\x41\x25\xa3\x95\x15\x17\x4c\xc1\x0c\x9c\x46\x40\xb5\x20\xa8\x1a\xe7\x1b\xd1\xba\x05\xbc\xde\xfa\xc8\xeb\x7b\x9e\xac\x83\x5e\x00\x30\x2b\xb7\x01\x28\x91\x4a\xbe\xe9\x09\xc1\x29\x7b\xf1\xca\x8a\xcb\x5d\x5a\xce\x32\x1a\xdf\xc4\x01\xac\x11\x2f\xbf\x8d\xed\x0e\x28\x20\xbc\xa9\xd3\xe3\x67\x49\xfa\xba\x13\x8b\x7c\x64\x8e\xa5\x18\xe3\xec\x3d\x1a\x73\xef\x11\xf1\x71\x34\x4c\x54\xfa\x51\x23\x42\xb9\x77\xc3\x16\x35\x3c\x8f\x14\xb4\x02\x4b\x64\x9e\xa2\xd2\xf9\xeb\xa3\x28\x91\x6d\x4e\xfd\x70\xa9\x85\xfb\x29\xfb\x9f\x46\x9d\x2c\x57\x23\x24\x60\xb8\x4f\xa0\x1a\xa0\x27\x75\x46\x0c\x65\x1e\xad\xbb\x44\xc9\xc5\x08\xe8\x54\x6e\x45\x4f\xa8\xd8\x17\x17\xca\xbb\x42\x9e\x02\x13\x30\xb3\xbe\xa8\x2e\x09\x91\xc6\xef\xd7\xec\x5e\xaf\x54\x33\x3a\x77\x51\x61\x4e\x60\xea\x9e\x36\xa6\xf2\xc7\x31\x52\x02\x59\xcd\xa3\xb4\x57\xa8\xc7\xb5\x6a\xad\x4e\xba\x82\xd4\xbb\x86\x4d\x00\x68\x76\xb4\xec\x6c\x03\xeb\x8c\xd2\xd5\xc4\x86\x23\xa6\xd1\x75\xa2\x8d\x5d\x87\xf7\xd3\x0e\x75\x06\x08\x99\x29\x3f\x00\x0f\xc8\xc8\x02\x14\x3d\x64\x51\xde\xfb\x46\x41\xf2\x25\xb7\x31\xf1\xf5\x84\x36\xdc\x81\x2b\x8a\x18\x88\xf2\xea\xc9\x63\x71\xba\xc3\xde\xd0\x48\x16\xb0\xa5\x9c\xa2\x35\xbf\x93\x67\x1b\x78\x5d\x26\xf5\x34\x21\x02\x15\x5a\x04\x02\x1d\xee\xcd\x04\xaf\x98\xdb\x2d\xea\xaa\xbe\x31\x0e\xf6\x94\x37\x82\xd1\x7a\x4f\x24\xeb\x7a\x1a\x34\x20\x8e\x3f\x47\x5e\x00\xe7\x02\xfe\x2d\x2e\x45\x5a\x56\x97\x77\x83\x5f\xcb\xc5\xa0\xfa\x7c\x77\x82\xbf\x3a\xf5\xc6\x0e\xcf\x37\x57\xf3\x6c\x43\x2d\xeb\x0c\xce\x1c\x00\x69\x3f\x62\x97\x88\xa8\x2c\x5d\xae\xf6\x94\x56\x90\xb9\x40\xc5\x99\x0b\xac\x84\xb3\x99\x96\xfd\x38\xc2\x43\x52\xef\x65\xb9\x05\xf3\x61\xde\xb9\x05\x2c\xcf\x37\xfb\x2e\x42\x65\x04\x59\x10\xcc\xc9\xf5\x78\xda\xed\x7e\x79\xe9\xeb\xcd\x6c\x23\xdd\x13\xd0\x2e\x4a\xfd\x21\x64\xc8\xa2\xaf\x33\x37\xbc\x5e\xf5\x9f\x6a\x13\x0e\xe5\x0e\x8b\x85\x5f\x98\x88\xe3\xd3\x28\x79\x3a\x0c\xa2\xbf\x27\x3e\x60\x78\x6d\xb7\x48\xc8\xfd\xf7\x5b\x8d\x6f\x2f\x68\xba\xb1\x5b\x94\x3a\xf0\x2c\xf6\x6c\x51\x93\xec\x2e\x80\x03\xe6\x96\x2c\x3f\xa9\x02\x75\x5a\x63\xc1\x8b\xbd\xd7\x22\x57\xdc\x86\xd0\x07\x81\x57\x79\x1c\x51\x3a\xae\xb9\x21\x5b\x8c\xaa\x49\x23\x96\xc5\xd2\x7c\x15\x69\x02\x5e\xfc\x75\x76\xf1\x9a\x23\x92\x67\xb7\xef\x56\x74\xad\x31\x5d\x34\xf9\x0e\x53\x4c\x0b\xc8\x98\xae\x2b\xe0\xb9\xe8\x8b\x90\x7e\x25\xde\xdb\x26\x22\xf5\x67\x52\xb8\xc0\xc2\x7a\x76\xcc\x72\x3e\xcf\xed\x14\x23\xab\x6e\x76\x86\xc8\x3a\x67\xc9\xa6\xe5\x8a\xec\xa9\x78\x94\x6f\x79\xe2\xcb\x46\x8c\xca\xfc\xb6\x68\x1c\x6e\x6f\x55\x19\xb4\xed\x25\x11\xea\x4e\xca\xcc\x97\xe1\x62\x2c\xfd\x1a\x50\x56\xd9\x8f\xd3\x19\x0a\xe8\xc0\x9b\x43\xe6\x83\x28\x02\xe9\xe4\x91\xa9\xb1\xf6\xf2\x52\xb3\xdb\xcf\x0a\x95\x40\x47\xe7\xe7\x24\x22\x21\x3d\xf1\x5b\xcd\x30\xee\xae\xb9\xde\x2c\x05\xaa\x97\xb8\x5e\x02\x2e\x87\x19\x61\x50\xea\xb5\x87\x02\xc2\x5e\x5c\x74\x93\xac\x70\x02\x6a\x55\x45\x62\x2c\x30\x26\x4f\x4c\x22\x9a\x77\x88\x1a\x7d\x67\x6a\x6f\x3e\x70\x40\x5a\x3c\xd5\x12\x57\x85\x35\x88\x64\xfe\x88\x6e\xf6\x3e\x4b\x05\xdc\x6e\x05\xb9\xa2\x8e\x8b\xf2\x38\x5d\xc5\x42\x8a\x65\x76\x0e\x9c\x39\x3d\xd9\x62\x99\xc9\x34\x76\x40\x01\x11\x4d\x65\xc9\x53\x56\x77\xa6\xd3\xd5\x55\xe5\x13\x96\xdb\x9a\x9f\x5a\x25\xd9\xf2\x95\x2a\x12\x99\x93\x67\x89\x79\xf0\x01\x06\xb5\x29\x33\x07\x04\xe2\xa3\xd2\xe3\xf5\x26\xfe\xd5\x2d\xd9\xb3\x0a\x21\x43\x31\xea\x94\x2e\x5f\x19\xad\xa2\xa9\xe2\xb5\x61\x82\x4e\x4c\xad\x85\x42\x37\x4a\xa3\x5e\x1c\x69\x8b\x05\x20\xa1\xb7\xe4\xaf\xf4\xb8\x0e\x2f\x31\x74\x65\x1e\xe3\x77\xbc\x99\x6c\x10\xb1\x39\x4f\x51\xfc\x20\xae\x16\x70\x0d\x19\x10\xa0\x5f\x43\xc5\x4f\x4f\x76\xca\x2b\x1f\x9e\x5f\x68\x3e\xff\x8b\xd2\x3a\xf5\x42\x18\xfb\xf7\x6b\xd1\xf6\x0d\x8c\x0d\xac\x9a\xbb\xda\x54\x45\x6c\x05\xde\xd1\xee\x76\x80\x3b\x5d\x90\xc5\x0c\x6b\xe6\xfd\x56\x35\x91\x0d\x05\x22\x2f\x1b\xfb\x20\xeb\xad\xdf\xc0\xc5\x69\xc5\x81\xec\x01\x55\xaf\xcc\x76\x4b\xd6\x30\xff\xbb\xa0\x3b\x7a\x39\xa9\xea\xfd\x98\xa2\xab\x4c\x02\x64\xf0\x0d\x2a\x4f\xa2\x64\x6f\xd8\x4e\x79\xed\x48\xf9\xb5\x47\x8e\x66\xdb\x43\x59\x33\x90\x1a\xfd\x4c\xa4\x35\x10\xcf\xde\x54\x3e\x2a\x46\xc4\xb9\xa9\xa8\x4b\x76\x8f\x41\xdc\x53\x95\x01\x44\x1d\xfa\x33\x7a\xe2\x9b\x20\x82\x49\x9c\xd4\xf8\x3a\x49\x3b\xc0\x34\x96\xee\xf0\xfc\x62\x73\x23\x8a\xd7\x27\x01\xcc\xa7\x5a\xdc\xf5\x09\xdd\x8a\x5e\x26\xf2\x49\x73\x61\x71\xdd\x26\x09\x37\x05\x5d\x7a\x00\xdc\xfe\x05\x2f\x45\x2d\xf3\x42\x3f\x55\xa3\x44\x74\x50\x38\xce\x8d\x00\x36\x45\x76\x68\xda\x5f\x4c\xf8\xca\x8a\xf2\x97\xaa\x91\x82\x49\x76\x1a\x01\xab\x9a\x41\xca\x0b\x56\x35\x47\x68\x8c\x20\x83\x3a\xad\x2f\xd8\x24\x6a\xe4\x9d\xea\x7f\x61\x1b\xb3\xc0\x85\xe0\xa4\x27\xa5\xa7\xae\x68\x4d\x19\x90\x88\x70\xdf\x47\x0a\x86\x37\xbf\xcd\xae\xdb\x52\xb1\xf4\xba\x54\x2f\x5a\x3a\x75\x44\xb6\x5d\xe5\x99\x53\xd6\x7b\xa6\x45\xd2\x8c\x57\xc7\x8d\x6f\x7c\xc3\xab\x4e\xc8\x16\x8c\x02\xdf\xfd\x71\x88\x94\x05\xbc\xfa\xca\xf6\x33\x20\x9d\xe3\xd2\x1e\x43\x0a\x8f\x47\xf5\xa9\x0e\x25\xfc\xa9\xbe\x0f\xec\xb1\x8f\x6d\x59\xe7\xb1\x74\xe8\x52\x8e\x72\x93\xa4\x47\x48\x71\x8b\x84\xc0\x8f\x61\x7b\xc6\xba\x7b\x9e\x85\x9c\xf2\xa8\xe8\x2b\x94\x4c\x4d\x04\xe5\xcf\xcc\x50\x30\xc0\xf2\xc4\x56\x4a\x1e\x2e\x3a\x20\x20\x8d\xfb\xe2\xae\xa7\xdb\x9f\xae\x4b\xd2\x3a\x51\x61\x65\x19\xab\x73\xca\x57\x59\x05\x34\xac\xe7\xeb\x71\x19\x25\xc0\x6a\x7a\x87\xe5\x6f\xbd\xec\xf3\x85\x9d\xe3\xfd\x79\x78\x57\xf9\xaa\x18\xa6\xe6\x3d\x52\xd7\xbf\x47\x3d\xb7\x68\xd5\x29\x65\x0f\xaf\x72\x16\xf3\x59\x4f\xc8\x87\xc0\xfd\xe6\x28\x4a\x92\xcd\xb9\x00\x5b\x85\x68\x2f\xd9\xb9\xbf\xc0\x6e\x85\xa6\x16\xfb\x90\xd8\xf8\x47\xc7\xc1\x17\x7b\xe8\xf2\x32\x2e\x1c\x8a\x48\xde\x02\x75\xd9\x0a\x97\x7f\x38\xa6\x58\x15\x1a\xfb\xe6\xb9\x18\x1a\xe4\x8f\xa2\x7b\x64\x9c\x2d\x5a\xc5\xab\xf5\xbe\xdb\x08\x64\x9a\xbf\xc9\x19\xf0\xdf\x9c\x82\xa3\x1d\x38\xd0\x8c\x06\x0e\x6e\x0f\x0d\x6f\x5a\xf4\x68\x3b\xf4\xd1\xce\xb1\xc6\x52\x63\x6b\xba\xd7\xb1\xdc\xec\xb9\x95\x68\x94\x98\x85\x2e\x4a\xa5\x88\xa8\xf4\x98\xfc\x6b\x7a\xa3\x02\x65\x3c\xd5\x59\x1d\x07\xa1\xad\xe3\x24\xdd\x52\x64\xe9\xe6\x5e\x2a\xbd\xa0\xc0\x86\x09\xf8\x7d\xb2\x63\xb9\x80\x19\xab\x2d\x26\x24\x35\x66\xa7\x5d\x7d\x33\x99\x79\xbc\xe2\x1b\x51\x41\x39\x70\x20\x4e\x4a\xee\xb1\x6a\x09\xf0\x64\x32\xaf\x77\xff\x86\xcc\x7a\x0c\xb7\x7f\xc9\x71\xec\x17\x9c\x16\x63\xb7\xc0\x8e\xb6\xab\x4d\x1e\xfe\x37\x5a\x13\x2f\x89\xb0\xf7\x50\x2d\xd6\x1f\xa4\xac\x7a\x54\xac\x71\x07\x73\x82\xc3\x13\xde\x31\xb8\x04\xb3\xb2\x08\x22\xf3\x3f\xa3\x9a\x02\x48\xc0\x3f\xc1\xce\xa8\x27\x58\x11\xf5\x73\xe4\xf0\x51\x74\xa3\x5c\x59\xa1\xa6\x41\x17\xee\x7c\xda\x64\xe5\xc5\x45\x91\xff\xf5\x93\x0b\x8d\xbc\x1b\x64\x96\x1b\x7c\xd2\x95\xb1\x89\x05\x08\xfb\xeb\x33\x6d\x56\x27\x0f\xab\xc5\xbe\xad\x60\x36\x90\x6f\xba\x59\xd6\x07\xfb\x7c\x4c\x4a\xbd\x88\x74\xf4\x18\x43\x52\x3f\xc5\xb5\x7d\x97\xa6\x0a\xc6\x44\xad\xf3\x8d\x16\xe1\x51\xde\xa8\x0b\x4b\x87\xa3\x4e\x12\x77\xf7\x04\xd0\xa3\x5a\xef\x5b\x8f\xa1\xe1\x8d\x83\xee\xcb\xa6\x61\x2d\x7f\x72\x49\xd4\x22\x13\x42\x8c\xe1\xf8\x17\x7d\xe2\x52\xba\x3c\xc0\x50\xd5\xd1\x06\x2f\x1d\x64\x63\x3d\x9e\x8a\x4b\x9f\x17\x33\x7e\xb9\x0d\xdc\xf0\x51\x19\xfd\x7a\x4c\x1e\x67\x2b\xe2\x93\x1d\x72\x61\xcc\x8f\xdf\x1e\x53\xcf\xf1\xb7\x5b\x5f\x63\x15\xfa\x61\x94\x47\x1d\x21\x1d\xcf\x90\xe0\x30\xf2\x52\xec\x56\xa0\x56\x9b\x9f\x48\x98\x91\xdd\x2c\x55\xef\x0d\x0b\x7b\x65\x4e\xe9\x49\xeb\x17\x82\x68\xd2\x28\xef\x64\x7a\xdf\xa8\x8a\x2d\x7a\xaf\xeb\xea\x67\xcc\x03\xdb\x52\x95\x24\xab\x12\x03\x48\x45\xfa\x22\xc3\x81\x03\xbe\xc8\x50\x47\x42\x1d\x8a\x66\x0c\xbe\x1b\xf5\xb9\x3b\xa4\x3e\x32\x29\xe4\x96\x74\xb2\xc6\xa4\x3b\x4b\xb5\xc3\x9a\x0a\x0f\x29\xc2\xbb\x22\x1b\xe5\x5d\x57\xec\x0b\xb1\xa4\x92\xce\x91\xcd\x9d\x01\x4e\x50\x1b\x8f\x98\xdc\xff\x2f\x63\x6f\x1e\x23\x49\x76\xe6\x87\x75\x67\x55\xf5\x31\x3d\xd3\x73\x8f\x28\x41\xb6\x53\x5a\x0a\xe3\xb5\x09\x6a\x2d\x5b\xb2\xb4\xff\x64\xba\xab\xa8\xd9\x2e\xec\xd4\x14\xba\x7b\x67\xd6\x03\x01\x9a\x57\x99\xaf\x32\x63\x2a\x32\x22\x27\x22\xb2\xaa\x8b\x80\x01\xc1\x10\x0c\x41\x86\x01\x59\x90\x2c\xf8\x10\x2c\x1b\x92\x7c\xc0\xb2\xb5\x4b\x51\xd4\x8a\xdc\xcd\xe4\x92\xbb\x5c\x2e\x8f\x39\x39\x07\xe7\x60\xdf\x47\xf5\x7d\xdf\xd5\x46\x7c\xbf\xef\xbd\xf7\xcb\xca\xe8\x85\xfe\x19\x44\x4c\x57\x66\x46\xbc\xe3\x7b\xdf\xf1\xfb\x7e\x3f\xff\x2f\xe5\x9a\x81\x7d\x01\x4b\xb8\x23\xfa\xaa\x2d\x04\xb1\x28\x99\x16\xd4\x66\x35\x46\x76\xbc\x54\xb5\xf0\xbd\x5c\x73\x3d\xca\xaa\x68\x5d\x1b\xc7\x35\x12\xd4\xb9\x32\xa4\x36\xad\x2b\x13\x9e\x57\xe9\x9e\xe7\x69\x9c\xd6\xc2\x66\xbb\x46\xd2\x50\xd7\xfc\x6e\xed\x46\x9d\xee\x9a\x59\x9f\x0e\xc7\xfe\x53\xcd\x90\xa6\xa8\x8d\x4a\x1b\xe8\xd1\x9b\x04\xb7\x9c\x60\xc6\x78\xed\xc0\xbe\x7a\x62\x3b\x69\x11\x11\xac\xc7\x51\x54\x86\x0a\xcf\x9f\x40\xa9\x61\x06\x99\xb5\x68\x16\x71\x62\x81\x32\x1a\x7a\x53\xa9\x33\xdc\x1f\x80\x96\x8c\xd5\x06\x65\x94\x5c\xbc\xf1\x0c\xf3\x50\x20\xa5\xb5\xd5\xf9\xf0\x15\xd7\xaa\x0e\xc4\x65\x93\x17\xaa\xcb\x0e\xe8\xd1\x76\xe4\x77\x7c\x7c\x52\xda\x61\x4c\xf7\x8e\x89\x66\xfa\x72\x16\x32\x3b\xd6\x2c\xe9\xc8\xe8\x83\x1e\xeb\x24\xd9\xfa\xc2\x42\x3d\xcd\x5a\x5d\x93\xb5\xa7\x82\xfa\xec\x27\xa4\xa2\xb8\x4d\xec\xa9\xd3\x6a\xae\x10\x09\x5c\xeb\xda\xc4\xae\x96\xfb\xea\xb5\x03\xfb\xc6\x68\xd0\x9d\x13\xfd\x68\x42\x79\x93\x97\xfe\x23\x86\x54\xe5\xfc\x1b\xa4\x59\xf0\x71\x45\x81\x53\x35\xf7\x5c\x78\xe2\xb1\xb4\x81\x08\xeb\x5d\x3a\x76\xa3\x3c\x33\x36\x8e\x6a\x01\x48\xba\x41\xb1\xc6\xc6\xc4\xf7\xef\x5f\xa8\xe7\xeb\xbd\xbe\x29\xba\xf0\x06\xb1\x1c\xff\x79\x23\x20\xc8\xff\x39\x79\x76\x45\x37\xcd\xad\xd0\x1b\xc3\x89\xda\x06\x36\x36\x84\xb1\x77\x64\xaf\xc1\x43\x3b\x87\x08\x1d\x9e\xf0\x4d\xd6\x23\x02\xd9\x2d\x1e\x7c\xfb\x28\xd0\x48\x3c\x86\xa4\x1d\xe2\x5d\xc5\x34\x78\x71\x0a\x47\x61\x78\xff\x4f\x8f\x08\x47\x74\x8e\xb8\x97\xf3\x41\x69\xad\x53\x35\x76\x55\xfd\xe6\x93\xfe\xd9\x01\xb7\x41\x89\x87\xee\x24\x25\x5b\x4e\x56\x8d\x96\x14\x87\x4d\xb6\xce\x44\x30\xf2\x80\xce\xff\x08\x3e\xc7\x2b\x0b\xaf\xd4\x4a\xaf\x1a\xf9\x45\xcd\xd3\xea\x0d\xc1\x46\x7b\xa5\x57\x19\x08\xa5\xc7\xc4\xeb\x3d\xfd\x59\x94\xb4\x6d\x92\xa3\xc0\x81\x20\x6a\x24\x66\xd9\xc1\xf2\xa9\x80\x78\x6c\x8c\xfb\x7a\x7b\xf3\x05\xea\x83\x4f\x06\xcb\x46\x28\xe2\xb3\x7c\x77\xf9\x71\xc7\x3f\x16\x84\x95\x94\xd3\xde\x6b\xef\xfb\xd2\xdb\x71\x98\x65\x25\x89\x81\x59\xf6\x7d\x8b\xde\x33\x3b\xcb\xfa\x08\xf7\x35\xf7\xa9\x77\x13\xb9\x97\xf9\x79\x29\x89\xa7\x6d\xd7\x92\xeb\xcb\x75\xe5\x77\x38\x4a\xe2\x8a\x02\xb4\x16\x2e\xa7\x82\xdb\x7e\xab\x31\x96\x12\x2a\xbf\xcc\xe5\xfa\x76\xbb\x1a\x51\x7b\x86\xf2\xb2\xbb\x54\xf4\x95\xc8\x20\x0e\x7a\x62\x44\x9f\x96\x5b\xfc\x33\xcd\x10\xde\x6d\x52\xf3\x43\xd1\x35\x6b\xb5\x80\xab\x3f\xc9\x8a\x09\x27\x09\x10\x9a\x4a\xd0\x68\xa1\xb5\xe6\x5b\x0a\xf7\x2f\xf8\x96\xc2\xc7\x89\x18\x1a\xfe\x95\xd7\x8f\x0b\x58\x9c\xb3\x84\x1b\x1d\x14\xf9\xe3\x01\xea\xc0\x72\x40\xf7\x09\xdc\x7f\x1b\xa7\xa0\x64\x80\xfe\x87\x3f\xd3\x0c\xcd\x45\xff\xe4\xcf\x37\xa9\xae\xf2\xa3\xb1\x19\xba\x1b\x60\x23\xbf\x53\xc7\x4e\x73\x2d\x76\x04\xd3\x9e\x1a\x51\x46\xfa\xa2\x64\x86\x9d\x6b\x1b\x4a\x09\xa6\x28\xa2\x62\xd0\xb6\x9c\x5d\x84\x4b\xab\xd7\x54\x51\x2b\xba\x51\xd2\x99\x0e\xcf\x7e\x1d\xaf\xee\x00\xfd\xb5\x97\xfd\x35\x1c\x48\xfd\x2b\xe2\x99\x5f\x4a\xf3\x22\x4d\x76\xca\x43\xa2\x5b\x60\x37\x7a\x5c\x71\xea\xa2\x07\x0e\xf9\x03\x6d\x53\xd1\xfe\x93\x31\x6d\xcc\xd3\x24\x35\xfc\x01\x9e\x01\xa4\x9a\xf7\xc8\xd0\xf4\x4c\x02\x80\x75\x68\xc7\x06\xa9\xbd\xa3\x14\x70\x1b\xbb\x13\x1b\xa5\x63\xd1\x68\x8f\x62\x8e\x73\xcc\xd2\x99\x65\xd1\xaa\xb2\xf4\xa9\xf1\x84\x3b\x33\x56\x26\x57\xee\x75\xf2\xc8\x73\xa1\xc3\x20\x41\x1e\x65\x86\xd4\x9b\xc9\x16\x2c\x29\xa7\x24\xf1\x3a\xa1\x8e\x61\x8c\xf5\x7a\xa2\x66\xff\xc6\x1b\xf5\xe5\x2c\xed\xcd\x50\x1a\x5c\x63\x2d\xcf\xf3\xe9\x61\xde\x8f\x63\x55\x61\xff\x81\xd2\xcf\xf9\x19\xe1\x91\x3b\xd1\x6a\x94\x74\x76\x84\xf3\x55\x02\xa3\xcd\xcb\x78\x5f\x18\xdd\x1f\x72\x1f\x1f\xbe\xc8\xc1\xac\xcb\x45\xbc\x39\xa9\xc0\xb8\xf8\xca\xc1\xfa\x52\x9a\x65\xe9\xda\x16\xf5\xff\xb3\xa4\xfe\x7f\xb6\xe1\x12\x39\x49\x9a\xb4\xd2\xde\x92\x29\x1c\x80\x58\xa5\xe5\x29\xf4\x3d\x49\x09\x99\x4e\x9a\xb6\xf7\xca\x4b\x7b\xcd\xb2\x03\xfb\xb0\x5f\xfe\xab\xa7\x05\x47\xe7\x18\xfd\x48\x42\xed\x8f\x80\xf6\x82\x73\x71\x14\x7e\x8c\xf2\xfb\xc2\x4e\x39\xb2\x5f\xa6\x57\x25\x42\xae\x07\x18\x04\xc4\x3d\x90\x55\x05\xb4\xa6\x36\x22\x94\xc7\x35\xb4\xae\xea\xaf\xc0\xf9\x76\x19\xe5\x2a\x9f\xb5\x6d\x4d\x1b\xe7\xa3\x5f\xef\x5e\x95\xe5\x74\x63\x0b\xc9\x6c\x8a\xac\x05\x10\x24\x7f\x67\xc8\x91\x0b\x85\x88\x97\x7c\x15\xc7\x18\x53\x0b\xad\x4a\x4a\x47\xa2\x37\x13\x44\x8e\xaf\xee\x7b\xa9\x6e\xda\xab\x91\xfa\x6d\x0e\x54\x1f\xe0\x8e\x97\xb6\x16\x96\x5e\x9e\xab\xbf\x36\x77\x68\x47\x20\xc8\x43\x0e\x51\xcd\x13\x96\x11\xb6\x2c\xf2\x2c\x2a\x28\xee\xe8\x10\x03\x6e\xe1\x83\xe1\xe3\x21\xa8\x35\xeb\x8f\x8f\x21\x21\x7d\x94\xfe\xd4\x48\x1c\x1b\xa0\x15\x76\x8a\x9b\x02\x04\xec\x19\x39\xeb\xb0\xb4\x9f\x6c\x12\x29\xb0\x86\xaa\xf0\x76\x77\x37\xa9\x8f\x62\xc7\x28\xac\xb2\x3d\xc2\x8a\xe0\xc4\x5b\x24\x99\xe0\x98\x2b\xcb\xd7\x71\x6d\x40\x15\xad\x89\x99\x5d\x8e\x92\xd2\xd3\x6d\x33\xfc\xf2\x12\xfa\x49\x5d\x59\xa4\x22\x07\x55\x74\xd3\x41\x6e\x92\xb6\xc0\xe3\x9c\xe8\xce\x98\x56\x6c\xf9\xd6\xee\xd0\x28\x9f\x0e\x0f\xb4\xa3\x19\xf6\x6d\xba\x96\x38\x7e\x35\x17\xfa\x96\x23\xe2\x62\x62\xaf\x2f\x6b\x7b\x69\xe8\x97\x73\x2a\x1e\xa1\x8d\xe3\x44\x15\x79\xda\x8b\xff\xd9\xaf\xe4\x22\xa1\x8d\x93\xee\x1e\x33\xec\x9c\x1b\x92\x72\xf8\x19\x6e\xf3\xf9\x6d\x72\xb3\x72\x7b\x78\x26\x74\xad\x5e\x20\x00\xed\x33\x4d\x72\xb4\x37\xb1\xa7\xb0\x6e\xc1\xaa\x05\xc3\xf7\xc5\x90\x01\x57\x7d\x9b\xb4\xd1\x3c\xe3\xfd\xf3\x72\x21\x39\xff\xbc\x22\x9c\x88\x92\x5c\xda\x51\x64\x26\x90\xdc\x38\xd2\x20\x11\xd2\x23\x55\xc9\x91\x28\xe9\x0f\x5c\x5a\xcf\x19\x10\xee\x2a\xda\x1a\xed\x88\xf5\x6e\xdb\x1c\xee\xc4\xd4\x38\xdb\xf2\xfc\xbc\x2e\xa9\xfb\xf2\x1d\x38\xcc\xcf\x50\x1d\xd5\x2c\xf5\xc6\xab\x20\xe5\x48\xba\x2a\xc8\x6e\xb7\xc7\xbe\xbc\x57\x16\xbd\x5b\x9d\x41\x42\xe9\xc7\x24\xaa\x79\x76\x38\x06\x44\x2e\x67\x0e\x99\x40\x45\x70\x62\x16\xae\x0d\x89\x82\x63\xba\x49\xa1\xe6\x4c\x33\xe4\x90\xde\x6f\xd4\x66\x67\xd5\xef\x44\x63\x06\x3c\xfe\x9f\xc9\x26\xc3\xfa\xfc\xc5\x90\xfa\x41\x76\x8c\xa8\x8d\xed\x03\xca\x30\x74\xd2\x6c\xc9\xb4\xba\x76\x75\x8f\xfc\x2e\x8c\xe5\x47\x8d\x40\x0d\x24\x16\xf5\xf5\xcd\x33\x4c\x7a\xa4\x7c\x37\xfa\xc7\xc4\x26\x7c\x97\xc9\x97\x15\x00\xef\x39\x5c\xf7\xbb\xf3\x76\xba\x39\xce\xe1\x1e\xf2\xf9\x15\xd6\xf7\x25\x91\x17\x9f\x1a\x13\xe1\xa0\x17\x03\xe0\x00\xf6\xe2\x68\xa5\x00\xdf\x20\xe9\x9a\x7e\x7f\x1d\x05\x6a\x0c\xe5\x51\x3a\x66\x8f\x52\xa3\x4d\xbc\x92\xef\xaa\x79\xae\x3e\x24\xcb\x91\x40\x79\x0a\x4e\x1d\xd2\x5d\x27\x87\xb5\xaf\xfd\xa6\x82\x5a\x3f\x1c\x52\xdb\x3e\x66\x18\x27\xd9\x4c\x33\xb0\xbe\xbd\xfb\xa5\x26\x8d\x1e\x33\x8d\xaf\xda\xc2\x66\x26\x91\x7d\x0c\xa4\xc6\x05\x0d\x42\x60\x99\xde\x96\x27\xd5\x7f\xc1\x0e\xd7\x7f\x18\xcb\x27\x65\x36\x7f\x9e\x01\xaf\xa7\x51\xd2\xc1\x23\xa2\x5c\x88\xf7\x78\x28\x0b\x04\x96\x5e\x78\xaf\x1f\xfc\xad\x67\x46\xe5\x5a\xf2\x6f\x50\xee\x59\x87\xa9\xa5\x2a\xf4\x2d\xbc\x1b\x72\x4b\x37\x1a\x41\x26\xf4\x87\x8d\xb0\x8b\xfe\x25\x39\xe8\x3f\xc0\xe1\x8d\x63\xf0\xf2\x90\x70\x14\xe0\xf9\xc7\xf3\x7c\x4b\x2a\x5d\x0a\xed\xc7\xaa\xc2\xd9\xfd\xf7\x18\xaf\x7d\x05\xa1\x95\x73\xf2\x02\x71\xad\x72\xf7\xba\x9e\xd7\xe0\x19\x4b\x02\x4f\x3c\x4d\x15\xd2\x21\xa1\xcd\xef\x3f\x12\xe7\x2a\x8e\x90\xe6\x88\x31\x20\x37\xc4\x4b\x47\xac\xa8\x5a\x2b\x08\x55\x1e\x12\x1e\xc0\x26\x45\x66\x57\x22\x24\x89\x90\xb1\xd5\x98\x55\x6f\x26\x50\x13\x07\xf6\xd5\x4d\xd6\x19\x70\x3b\xeb\x36\xf8\xdd\x38\x68\xa0\x5d\x8c\x15\xfe\xd1\xf0\x05\xd7\xfb\x39\x48\xda\xa6\x67\x93\x62\xac\x8d\x0f\x96\xe6\xb3\x21\x19\xce\xcf\x88\x31\x3c\xef\xa6\xfd\x1d\xa1\xbe\xfd\x0d\x52\xc4\xbb\x3b\xe4\x3c\x9c\xcc\x7c\x68\x49\x74\x99\xf1\x6f\x70\x7f\xef\xe9\xc6\x9e\x50\x35\xf9\xea\x6e\x59\x12\x18\xfc\x07\x0d\xca\xac\x6b\xa8\xa0\x1d\x61\xb2\x58\x1c\xb7\x18\x37\x39\x9f\x23\x45\xd7\xcf\x31\xf9\x88\x71\x34\x5b\x06\x08\x0d\xf8\x90\xdc\xe6\x78\x66\xdc\xbb\x99\x9d\xab\xff\xaa\x88\x5a\xc2\x99\xbe\x29\xdf\x08\x20\xc1\xd5\x06\xed\x01\x24\x07\x10\x82\x1f\xa3\xbe\x42\xa4\x39\x1d\x56\x5d\x5e\x01\x99\xf5\x3f\x9a\x38\x72\xe7\xe7\xeb\xed\x34\xcd\x66\x38\xee\x3b\xcf\xb2\x7a\xe7\xc6\xb0\xee\x21\x70\x3a\xc9\x23\x78\xab\x22\x9d\xb7\x58\x5f\x37\x85\xd5\x2e\x5b\x58\xc5\xcf\x35\xbe\xd2\xbb\x09\xc3\xf6\xda\xe2\x97\xeb\xdd\x41\xbe\x64\x92\x36\x0c\x1b\x1c\xae\xf3\xc4\xd9\x74\x7e\x82\x37\x66\xff\x42\x3d\x4b\x5b\x2b\x38\x3b\x7d\xfb\xd7\x42\xa0\xd8\x79\x9e\x33\xeb\x10\xc5\x8b\xd2\x64\x77\x39\xbe\xc8\x90\x7c\x01\xaf\x09\xbb\x1d\x07\x0f\x1c\xc9\x5b\x63\x79\x40\x3a\x25\x8f\x61\x5d\xe8\x27\x50\x55\x75\x0a\x64\x84\x70\x3c\x36\x64\x1d\x1a\xaa\xda\xb4\xd2\xac\x9d\xef\x0c\x95\x89\x1a\x0c\xb1\x37\x73\xa1\x93\xec\x0a\x2b\x37\xff\x41\x83\x24\xc3\xf6\x34\x89\x1c\xfd\xaa\x2e\x41\xac\xd4\x3b\x8d\x67\x7c\xdf\x40\x6b\xc5\x2e\xdb\x38\xb6\xd9\x74\x58\x44\xdb\x24\xd5\xec\x01\xde\xe5\xd7\x48\x21\xdf\x3e\x35\x86\xaa\x09\x01\x75\x3b\xb3\x87\x6d\x3c\x3d\x06\x00\x18\x06\x7a\xc2\x5b\x44\x4f\x78\x0b\xdf\xe7\x50\x02\xac\x32\x3f\x48\x72\x1b\x4f\xd3\x58\xbf\xc3\xc3\xf8\x0e\x35\xb2\x9e\x22\xa1\x84\x53\x04\x32\xcc\x8b\xb4\x67\x5a\x20\xa9\x43\x05\x02\x41\x9d\x5e\x57\xc9\x33\x2d\xa5\x1e\x3a\x8d\xd5\x7d\x42\x0e\x1f\xbd\xae\x62\x21\x6a\x47\x1d\x3d\x99\x11\x82\x7e\xc2\x8a\x91\x1f\x36\x42\x84\x7d\x86\x4b\x85\x87\xfb\x26\x51\x8a\x50\xcf\x8c\xe3\x31\x07\xda\x66\x89\xd8\xf3\x02\xa1\xa3\x33\xd3\xe6\x26\x2a\xf8\xdd\x77\xa9\x7b\xed\x2e\x25\x99\x5a\x5d\xfb\xf5\xa9\xb0\x68\x40\x70\x07\xdb\xa8\x72\x95\xae\x99\x9d\x05\x49\xd0\x49\xe1\xba\xa9\x5d\xae\x5e\xfe\xdc\x65\xf1\xab\x54\x48\xca\x0f\xa6\x2a\x41\xea\x95\x6c\x7c\xee\x06\x3b\xcc\x35\xc7\x3a\x8f\xbf\xd5\xcd\xa2\xbc\x88\x9c\x1e\x89\x03\x8c\xd2\x69\x76\xa1\x11\x72\xd3\x79\x91\x59\xd3\x83\x4e\x0a\x2c\xc2\x1d\x22\xfa\x3a\x31\x56\x90\x98\x80\x07\x7f\xa5\xde\xb6\x6b\x8c\x88\x67\x47\x7f\xb2\x7e\xb1\xbf\x9c\xd6\x3c\xb7\x89\xf2\x4b\xb9\x64\x0a\xf5\x1f\x8c\xd9\x89\xd4\xb5\xa0\xe7\x63\xba\xb6\x43\xd6\xb5\x1d\xf3\x55\xf2\x78\x7d\x4f\xe8\x6d\xd4\x80\x4f\x3d\xef\x06\x47\x2a\xc8\x59\x39\xc1\xef\xf2\x7d\x11\x60\x7d\x0a\xc3\x01\x40\xcd\x5d\x58\x24\x8c\xfb\x43\x39\x6a\x90\x16\xbf\x4a\x6a\x64\x40\x08\x03\x4d\xf8\xfc\x48\x2a\x66\x8e\x6b\x2d\x64\x11\xbb\x51\xef\x31\x5a\x5a\xe7\xe9\xc4\xd8\x3b\x22\x6e\xf8\x2b\xa4\xdc\x77\x67\xc8\xad\xf4\x9f\x12\xea\xee\x49\x34\xb7\xc1\x13\xfe\xc5\x70\x5c\x43\x6e\x76\xce\xc1\x43\x1b\x04\xbc\xbf\xd8\x08\x7c\x04\x51\x1c\x0b\xe7\x62\xa1\xe5\x70\xef\x14\x05\xb9\x8b\xbf\x17\x68\xbe\x0a\x93\xb4\x4d\xd6\xde\x15\x70\xf7\xcf\x93\x98\xe1\xcf\x00\x3e\x83\xd3\xf7\x5d\x19\x48\x58\xe0\xc7\x81\xe5\x41\x7c\x7e\x9e\xdb\x87\x81\x5d\xf3\x85\x7c\x79\x47\x0c\x5f\xd0\x7a\xee\x99\xf5\x25\x1b\x7b\x02\x5a\xec\x2e\x6d\xcf\xd4\x9b\xaa\xd2\x55\x91\x99\xb6\xcd\x67\x02\x74\x4a\xeb\xd6\x48\xba\xdf\x97\x5c\xf9\xe6\x65\x22\x8b\x51\xa6\x3c\x4c\xf7\xe5\x49\xf2\xa2\xb9\xba\x69\xaf\x4a\x7c\x8f\xbe\x56\x98\x79\xa5\x32\x44\x88\xf2\x03\xd2\x39\x9a\xac\xe4\x94\x07\xf0\x52\x9a\xa5\x83\x4e\x57\x72\xa9\xb0\x19\xe7\x87\x94\x32\xc5\xb9\x8a\x70\x6d\x46\x52\x7f\xee\xff\x57\x10\x91\xb6\xa3\xbc\x95\x26\x85\xd5\x2c\x99\xa3\x25\xac\x79\xd5\x96\x3f\xa8\xa2\xbc\x8f\x7a\xfd\x74\x90\xb4\x7b\x0e\x01\xe4\xcb\x63\xf3\xf3\xbe\x3c\x36\xc9\x40\x71\xb0\x9c\xfc\x4e\x27\x34\xbd\x78\x93\x50\x0e\x85\xde\x90\x5f\x9c\x2e\x2f\xdb\xec\x49\x4c\xa8\x52\x17\x36\x88\x46\xee\x7f\x96\xf0\x00\xa0\x9f\x7f\x3b\xac\xcd\xce\x6e\xde\xe7\xfe\xca\x77\x11\x1e\xc0\xd2\xa8\xe8\x83\xde\x0c\x43\x4b\x39\x18\x4e\x61\xc1\x7f\x08\x5d\x57\x47\x62\x51\x8e\x1c\x6c\xfe\xb5\x61\x28\x22\xaa\x0e\x13\xf6\xf0\x71\xc1\x15\xe0\x1f\x2e\x48\x74\xa0\xe2\x0f\x13\x1d\x3f\x0b\x0b\x4e\x95\x52\xdb\x01\xb0\xf1\x3f\x83\x11\xd1\x1b\x3e\x9a\x6d\x27\xb3\x8a\x11\xf3\xf9\x67\x2f\x2b\x07\x86\x6b\xac\xb2\xc9\x82\xcb\xec\x6c\x5d\x94\x95\xa3\xbe\x89\x69\x7a\x40\x32\xa4\xd7\x64\xb0\xcb\xf9\x37\xad\x62\x86\xc0\x22\xe8\x49\xc6\xf6\x02\x5c\x0f\xa1\xfc\xa7\x43\x8a\x2c\xa7\x9a\xe5\x0b\xc3\x82\xdc\x6c\x84\xfa\x53\xb7\x0c\x13\x05\xc0\x90\x0e\xb4\x4d\x1c\x9f\x3e\xdd\x08\xdf\x74\x7a\x0c\xa3\xdf\x6b\x19\x3d\x5c\x30\xf8\x1f\x63\x67\xea\x4d\xe3\x51\x95\xd6\xa5\xcc\x9a\x15\x9f\x8a\xc2\x56\x38\x41\xc8\x90\x13\xc3\x2f\x4d\x30\x77\xe9\x67\xff\x83\x32\x54\x72\x79\xff\xf2\x65\x61\x7e\x9e\x68\x52\x85\xe8\xb6\xfa\xb5\x4a\xc1\xca\xed\x61\xcf\x8f\x00\x18\xc2\x14\xbc\x23\x19\x0e\xed\x5e\xc5\x22\x72\xa6\x89\x04\xd0\x76\x20\xdb\x88\xb9\xfe\x31\xd1\xc2\xd6\x04\xde\x0b\x23\xad\xd6\x17\xa8\xc3\x7f\x26\x2b\x1c\x9f\xde\x25\x91\x85\x92\x81\x0d\x03\x6a\xf2\x1c\x75\x4b\x9e\x96\xe6\x06\x44\x1f\x77\xd0\x36\xec\xd5\xb1\xcb\x11\x72\x05\x1c\xd9\x0b\x48\x94\xaa\xc4\x1c\x30\xc4\x47\x91\xd0\x46\x20\x78\x1e\x47\x1a\xbe\xed\x13\xc6\x92\xfe\x1b\x64\xa4\xf5\xcf\x24\xbf\xe0\x04\x3e\xcb\x09\xf6\xed\x52\x01\x33\x0b\x11\x78\x78\xdf\x7b\x9a\xb5\x5f\x3f\xe8\xff\xbf\x6f\x57\xd3\xc6\xb6\x29\x12\x8f\x00\xcb\x01\x2c\xfe\x5d\x66\x19\xbc\xe6\xd3\xfc\x26\x29\x64\x9d\x07\xbc\x84\xe3\xd1\xa4\x66\xc8\x8d\xca\x90\x76\xcd\x44\x45\x8d\x6a\x5c\x1b\xcc\xd4\xb8\x31\x0c\xce\x1c\x04\x7f\xa3\xb1\xb6\xc6\x2f\xa8\x7e\xfb\x45\x05\x90\x72\x79\x90\x0d\x56\xcc\x9a\xf6\xcd\x78\x01\x9d\x85\xa0\xd0\x18\x1a\xf5\x06\x45\x9a\xa4\x3d\xc5\x13\x39\xac\x68\xcd\x8b\xd2\xd5\xca\xbd\xbe\x79\x93\x0e\xff\x24\xcd\xc4\xbb\x42\xf4\x76\x93\x78\xc7\x7e\x8a\xd7\xc6\x4a\xbc\xda\x60\x6c\x70\xd6\xff\xea\x63\x81\x70\xec\x92\xac\x14\xc7\x0a\x26\x35\x05\x4f\x80\x13\x14\xab\x36\x25\xe0\x84\x49\xdb\x60\xb2\xb6\xe7\x9a\xd8\x19\xd8\x0c\xcf\xc8\xf9\x0d\x47\x7a\xf7\x28\x54\xcc\x9f\x1a\x51\x0b\xf9\xc5\xa1\x0b\x5e\x96\x33\x93\xb4\xba\x51\xe0\xab\x42\xe6\xf7\x2a\x71\xe8\x5e\x65\xe9\x4b\x5d\x19\xd3\xa1\xd4\xf9\x82\x82\xda\x51\x85\x51\x54\x8d\xfe\x4b\x23\xf4\xac\x6d\x70\x1b\x44\x9a\xe6\xb2\x48\x82\x82\xec\x59\x22\xe9\x3e\x1b\xfa\x54\xd2\x74\xba\xdc\x8e\x0e\xdd\x52\x8e\x99\xca\xad\x21\xeb\xe0\x86\x23\x14\x1b\xfe\x36\xe5\xc6\x73\xd1\x86\x9e\xa6\xb5\xff\xa0\x11\xb0\x61\x1b\xb0\x9f\x1a\x67\x34\x02\xca\xf4\xfe\x18\x8e\xbb\x28\xf2\x99\x90\x68\x3c\x85\xcd\x0b\x9b\xa4\xc2\xa3\xd8\x87\xa7\x88\x6b\x70\x1b\x62\x4d\xfd\x87\x47\x32\xaa\x74\x6d\xe6\x24\x29\xf0\xcb\x47\x38\x17\x73\x9b\x88\x0d\x94\x32\x1b\x4e\xe1\xdb\xc4\x13\x9e\xaf\x45\x45\xab\x2b\x63\xf9\x6a\xd0\x54\xae\x91\xd6\x72\xe0\x0b\x6d\x0d\xb2\xcc\x26\xad\xf5\x5d\xa1\x02\xf9\x05\x56\x18\x32\x39\x17\x70\xa0\xeb\xcd\x90\x8e\xbb\xeb\xc4\xda\xae\xa5\x62\x3c\xca\x70\x48\xa2\xca\x5f\x60\x38\xf4\x5f\xfc\x9e\x5a\x4b\xb5\xb7\x36\xa4\xfb\xb4\xb0\xa0\x37\x0d\x4f\x9a\x91\x26\xae\x57\xdc\x43\x90\xcb\x27\x72\xf2\x47\xd2\xb2\x74\x84\xba\x29\x97\x4c\x56\xc4\xb6\x80\xbb\xa4\x64\xf7\xb0\x1c\x8e\xf9\x3e\x54\x54\xde\x8a\x92\xc2\x1e\xae\x91\xee\x0a\x28\x1b\x5c\x7b\xac\xcb\x1c\xd8\xd5\xa8\x6d\x93\x62\x9a\xb2\xbe\x17\x18\xbb\xf9\x90\x3a\x5b\x51\x67\x92\x45\xf8\xe1\x0b\xcd\x2a\x6c\x5f\x3b\xca\x6c\xab\x20\x39\x76\xb1\x20\xee\x7a\x14\x42\xf7\xc4\x2c\x95\xde\x9f\x9e\xbc\xb0\x26\x63\xe4\xd0\xa7\x1a\x5b\x95\x48\x7c\xf2\xb1\xe8\xda\x6c\x2d\xca\xb5\x46\xe1\xe4\x47\x42\xab\xc7\xfd\x06\xb1\x86\x6e\x90\xd4\x63\x27\x8d\x92\xce\xd3\x24\xda\xc5\x9a\x1b\x57\xe5\x20\x05\x74\xe3\x5a\xa3\xdc\x86\x08\x7d\xce\x31\x7d\xb9\xa2\x94\xb1\x4a\x1f\x34\x42\x2f\xe9\xf6\x66\x50\xc8\xd2\x0a\x93\x76\x85\xb1\x85\xf8\x44\x0e\x55\x6c\xe9\x6d\x24\x38\x5f\x93\xfa\x9f\xa3\x48\x09\x60\xf5\x3f\x86\xeb\xe8\x15\xf9\x02\xfd\xb3\xcb\xce\x20\xd5\x7b\x9c\xb4\xf5\x96\x32\x93\xb4\x41\xda\xe4\x10\xdc\x54\x0f\xc1\x4a\x04\x0a\x10\xe4\x9f\x3e\xf2\xa2\xd4\x8f\x44\x35\x0e\x97\x5d\x05\x8b\x13\x30\x54\x3f\x5d\x53\x78\x80\x57\x76\xf1\x3b\x78\x12\x84\x3c\x3b\x5b\x6f\x75\xad\xe9\x2b\x1c\xcf\xd3\xd1\x95\x83\x0b\x44\xc4\xdd\x06\xa7\x6b\x1e\x95\x7b\x5e\x8a\x4d\x6b\xc5\xed\x1b\x14\x20\xb6\x37\x29\xe9\xa3\xb4\x15\xc0\x88\x1e\xa7\x2a\xde\xbe\x7d\xff\x65\x2d\xd4\x5f\x6f\x35\x08\x3e\x7d\xcb\x77\x2c\xe6\xa6\x95\x39\x4f\x00\xee\x87\x14\xf2\x36\xb7\x23\x57\xa7\x62\x71\x5b\x6b\xc7\xff\xa1\x54\xcf\xe4\xdb\x91\x76\xb8\xd2\xa0\x1c\xe5\x15\x0f\xc5\x4a\xa2\x8e\x8d\x6b\x04\x12\xbd\x40\xa8\xce\x0b\xf4\xac\x5d\xb3\x36\x13\x4a\xe7\x48\x8d\x50\xfe\xda\x71\x9a\xcc\x34\x03\xd3\xa9\x86\x87\x8a\xba\xa9\xc2\x80\xf7\x6d\x2a\xf2\x2f\x18\x3a\x6c\x6f\xd5\xb1\xd2\x1b\x82\x0c\x67\xa2\x3a\x5d\x0e\x03\x8a\x31\x37\x1a\x84\x16\xba\xc1\xe8\x92\x76\x3b\xb3\x79\xce\x88\xd1\x4b\x44\x0b\x75\xa9\x11\x8a\x84\x4b\x4a\x26\xae\x75\xd4\x06\xd7\x54\x83\xdd\xee\x99\x42\x18\xf8\xa6\x49\x56\x71\x53\xdc\x77\x6f\x18\xcb\x27\xd1\x7f\x40\x01\xc7\xa9\xc7\x55\xe8\xa1\x17\x51\x66\x63\x9b\xbb\xd8\x47\x09\x2e\x65\xdc\x1d\xd9\x25\xb5\x60\x98\x2c\x8e\xb4\x4b\x0f\x26\x02\x9d\x41\x7a\x5d\xb5\xa8\x4d\x6f\x10\xdc\x09\x5f\x6a\x27\xf1\xc8\xad\x61\xf4\x57\xea\x45\x2a\x5d\xd0\xee\x43\x55\xfc\x0b\x9e\x37\xce\xb4\x56\x06\xfd\x1d\x38\x0a\xc4\x21\x40\x7a\xe2\x02\x31\x44\x2a\xf1\x10\x1c\x8f\x53\x08\xc7\x1d\xd8\xbe\xfc\x4e\xd8\xb4\x5b\xc4\xc0\xdb\x8b\x62\x80\x53\x7d\x1a\xce\x37\x1d\x9f\x25\x92\x89\xc9\x16\x20\x21\x31\x92\xe8\x70\x82\x0b\x07\xe6\x02\x5f\x85\x75\x7f\xcb\xaf\xfb\x8e\x89\x12\x4d\x80\xba\x68\x41\x16\xab\x02\xad\x1b\xd4\x8d\x77\x96\x76\x41\x1c\xf5\x67\x28\x51\x0a\x43\x86\x5d\x39\xd5\x0c\x6d\x7e\x5a\x17\x56\x8f\x65\x38\x06\xcb\x9a\x68\xf9\x7e\xe5\x60\x7d\xf0\xd5\x95\xaf\x4e\xd1\xb2\xbf\x47\xc2\x00\x58\xba\x30\x1e\xa7\xc9\xaa\xb6\xad\x89\x8b\xa9\xb1\x0d\x5e\xae\x4e\xdf\xd5\x3c\x3f\xbf\xf9\x4e\x55\x25\x64\x39\x32\x05\xce\x29\xee\xb6\x72\xe9\x0d\xf2\x98\x8f\x90\xe7\xd2\x2b\x9d\x1c\x1b\xc7\x32\xc8\x30\xfe\xc7\x11\x11\x21\xd9\xfe\xc1\x58\x17\x9e\x27\xe6\x49\x07\xd9\x4c\xe8\x35\xd0\xaa\xa4\xd3\x5a\x09\xc0\xb8\x4f\xb1\x5c\xdc\xf3\xc8\xac\xa0\xdf\xe4\xfc\x44\xb0\x32\x3b\x5b\x5f\x36\x99\x43\x06\x63\xbe\xcf\x62\xee\xf4\xa6\xf1\x0c\x75\xa5\xd8\xc4\x64\x51\x0a\x44\x1e\x6a\x95\xdf\x97\x47\xd5\xeb\x89\xed\x33\x3f\x5f\x6f\xdb\x3c\xea\x24\x8a\x53\xd0\x9a\x3f\xf1\x46\x5f\xf2\x3b\x61\x39\xcd\x7a\xa5\x51\x20\x25\xb1\x21\xc3\x79\x6a\x5e\xfb\x6a\x7a\x14\x4e\xd0\x67\x9a\x15\x94\x70\x79\x37\x75\x10\x69\x2f\x64\x16\x44\xcd\xc8\x89\x32\x49\x32\x30\xf1\xee\xf2\xd0\xf6\xef\x1e\xb6\xf9\xf7\x48\x3f\xf1\x0c\x02\x19\xc4\x9f\x0f\x1a\xc4\xfc\xfc\x21\x47\xd5\x0f\xb0\x54\x71\x86\x83\xca\x0b\x61\xe5\x03\x31\x70\x6e\x4c\x9f\xf4\x48\xb2\x55\x1b\x47\xb9\x7a\x67\x98\xd7\xb3\xb4\x0b\xe0\x5d\xb9\x9c\x79\xe8\xc6\x0a\x85\xa1\xbe\xc9\x8b\x41\x86\xcc\xa3\x76\xbc\x50\x46\xfc\x8c\xff\xbb\x65\x93\x77\x3d\xdf\x3a\x0c\x06\xd6\x8c\x5e\x4f\xa4\xbf\x67\xe7\xea\x7d\x9b\xdb\xc2\xe8\x40\x62\x15\xdf\x24\xfe\xf3\x9b\x63\x71\xc5\x9b\xd9\x57\x65\x59\x20\xe6\xd1\x0c\xbe\xde\x78\x4a\x8f\x7e\x2c\xd4\x22\x53\x84\xe6\x7e\x66\xe4\x41\x41\xbf\xf2\x42\x93\xc2\xe4\xcb\xb4\x3b\x97\xb3\xb4\x93\xd7\x42\x85\xfc\x88\xbc\xa3\xe3\xc6\xae\x2a\x24\x16\xd6\x15\x7d\x5c\xa5\x9e\x98\x1b\x6f\x0c\x03\x9f\x7f\xde\x4b\xe3\x36\x8c\x35\xe3\x27\x6b\xb3\x73\x1e\x88\x3e\xd1\xea\x3f\x77\xa8\x1e\xdb\x65\x3d\x3e\xb1\x01\xbf\xcb\x8d\xfa\xdf\xf5\x11\x5f\xba\x96\xec\xa5\x77\xd2\x4e\x7a\xcf\x3e\xc1\x24\x13\xa1\xd6\xf6\xa4\x78\x8e\x80\x72\x3c\x90\x59\x47\x62\xed\x1a\x56\x1a\x96\xdd\x6d\x61\xcb\x85\x81\x54\x3c\x2d\x3c\xab\x27\x9b\x63\x74\x15\xb5\x57\xf7\x6d\xfe\xa9\xa6\x6f\x1f\xfc\xe5\x5f\x02\x2b\xc3\x98\xe4\x01\x96\xe8\xb6\x09\xe9\xa2\xf9\xf9\x7a\x2f\x6d\xdb\x2c\x21\xf5\x44\x50\x0d\xea\x35\xb5\xac\x95\x51\x9b\xd9\x45\xc0\xb2\x73\xc4\x7e\x03\xc0\x32\x2c\x2b\x48\x0c\xb1\xab\x55\xb3\x00\x39\xd7\xe3\x43\x82\x75\x00\xcd\xe6\x82\xf0\x5a\x20\x39\xa8\x42\xa8\xe5\x85\x29\x06\xc5\x78\x57\xc4\x19\xca\xd5\x9d\x99\x48\x63\x0a\x02\xbc\xb0\x59\xe6\x20\x9c\x18\xf9\x9b\x24\x7c\x7a\x93\x29\xec\xde\x1a\x58\xfb\x75\x4d\x99\x7a\x52\x5e\x7f\x58\xdc\x21\x6f\x63\xb2\x27\x6a\xff\x42\xe9\x76\x64\x91\x86\x8c\x70\x9b\xee\xb1\xc2\xd0\x3d\x3a\x13\xff\xd2\xaf\xfc\x95\xda\x18\xaf\xed\xec\x9c\xd7\x59\x0a\x2a\x6e\xed\x74\x8f\xac\x05\x3c\xcb\x3d\x76\x0d\x4f\x33\x0e\x50\x52\x31\x2e\x49\x42\x2d\x49\x97\x28\x08\x01\xf8\xd8\x85\x86\xe5\x6f\xe3\x78\x7c\xba\x19\x82\x27\x85\xbe\x79\xcd\x3c\xcf\x9d\xfd\xd6\x97\x9a\x15\x90\xbc\x4c\x70\xa2\xa1\x55\x6f\x53\x5c\x41\xbd\xe6\x70\xbf\xd5\xb5\xed\x41\x0c\x6e\x9a\x85\x4d\xd0\xfb\x68\x86\x09\x8f\x0b\xa7\xe5\x9b\x9c\xb3\xe9\xf7\x6d\x11\x15\x30\x79\x2a\xf7\x20\x9f\x73\xd2\x0f\x61\x94\x5e\xb6\x35\x49\x2d\xc2\x80\xde\x61\xfe\x88\x3b\x13\xeb\xe8\x2b\xe5\x69\x90\x0e\x42\xfd\x04\x67\xe6\x75\xbc\x39\x3c\x19\x48\x28\x38\x7c\x68\xc8\xa8\xf7\x6c\x06\x3d\x81\xc5\x4a\xc6\x5e\x67\x0d\x3a\x83\xf5\xe9\xa0\xc6\x3e\xc4\xac\x39\x40\x47\x6d\x21\x88\xa7\x94\x1f\x06\x0f\xe3\x11\xca\xcd\xf5\xda\xa0\x97\x04\x30\x03\x4a\x31\x7a\x4d\x63\xda\x4a\x93\x22\x4a\x06\xb6\x2d\xbe\x02\xec\x0e\xc8\x1c\x90\x4e\x07\xa6\xc5\x61\x76\x09\xbf\x3b\x0c\x3d\xb9\x9b\xe4\xff\xf7\x4c\x6c\xca\x60\x3c\xe0\xd0\x3f\xc2\x46\x75\x42\xb9\xa1\xc4\x7b\x6e\xec\x44\xc8\xfb\xeb\xb5\x09\x81\xd2\x45\x77\x33\x51\x12\x3b\xf4\x4a\xdd\xb4\x5a\xb6\x0f\x01\x11\x47\x17\x51\x3e\x93\x5e\x13\x58\xaf\x1d\x49\x56\xa3\x9d\x03\x59\x8e\xf5\xaa\xf5\x31\xbc\xc1\xef\x63\x8d\xc2\x88\xee\x6c\x86\x5c\xcd\x79\x22\x9f\xb9\x5c\xb1\x08\xda\xb6\xe0\x56\xda\x2a\xff\x61\xab\xde\x93\xd6\xc9\x31\x1e\xef\x93\x73\xf3\xfe\xf0\x05\xa2\xb6\x94\x1c\xe1\x20\x92\x36\x7e\x49\x72\x2b\xf7\x0b\x12\xe3\x8e\x08\x86\x5a\xfe\x63\x6b\x12\x9b\xd5\xb8\x32\x4a\xbc\xfd\x17\xa9\x79\xae\x93\xa5\x2d\xb4\x9a\xd6\x88\x50\x31\x80\xbe\xcf\x51\x93\xf7\x92\xc9\x73\xb4\xb1\x78\x40\x7e\xf9\x03\x80\x62\x7c\x84\xd5\x8e\x7f\x39\x46\x7c\x52\xb7\x58\xcc\xfc\x34\x45\x73\x83\xd8\x09\x12\x78\x08\x13\xb0\x1d\x4e\xeb\x49\xe6\x01\x93\x72\xcc\xbb\x23\xc5\x7a\x3f\x6a\x99\x78\x3a\xc4\x5e\x4a\x8b\xed\x60\x72\x35\xaf\x99\xb5\xb7\x49\x1d\x83\xa7\xab\xd8\xa9\x4c\x9c\x26\x56\xb2\xd6\x88\x51\xce\x8d\x75\x53\x85\xa0\xf0\x5b\x15\x44\xd3\x22\x20\x84\xc6\x6e\x42\x0c\x7b\xf8\xf0\x84\x7e\x90\xe2\xce\x85\x26\xc0\x4b\x3c\xc2\x85\xff\x06\x1d\xe1\x9f\x11\x18\xf0\xe3\x8a\x67\x5e\xa8\xc7\xd1\x8a\x9d\x2a\x0d\x86\xc7\xc1\x6e\x31\xc8\x58\x6d\xf7\x1b\xac\x26\x14\xe5\xb6\x3d\x5d\xbe\x10\x97\xed\x90\x5d\x38\x4b\x92\x82\x67\x19\xa0\xc7\x9d\x3f\x7f\xed\xaf\xfe\x27\x53\xe5\x81\x02\x37\xe8\x21\x91\x78\x29\x69\xa3\xe3\x10\xa9\x88\xb3\xa3\x44\x88\xe1\xfc\x4b\x23\x92\xdd\x26\x5b\x8b\x79\x09\xf1\x0e\xf7\x2b\x5a\x83\xeb\x79\x1a\x47\xed\x78\x7d\xaa\x7c\x03\xd4\xee\xa9\x5f\xe8\xce\x45\xd6\x1f\x39\x59\x45\x73\xde\xb6\x2d\x9b\x88\x00\xe3\xd7\x6d\x7b\x2a\x54\x49\xd4\x46\x63\x20\x1e\x12\xd4\xf8\xe4\x90\x39\xad\xa2\xc4\xec\x0e\xe9\x89\xb3\x58\xd1\x8e\x29\x54\xbe\xc1\x27\xad\x48\x09\x60\x18\x3a\xeb\xd0\x05\x84\x08\xf7\x46\x23\xa4\x9d\x37\xb8\xd8\xef\x48\x4f\xb0\xfe\x6f\x12\x6f\x42\x57\x51\x0c\x07\x03\x87\x00\x31\xa2\x4f\xc8\x77\x2d\xd6\x57\xa3\x3c\x72\xb0\x70\x87\xd6\x0f\xd9\xda\x4b\xa4\xa8\x20\x7c\x8f\x6b\x69\xb6\xe2\x9c\x6b\xec\xa3\xeb\x78\x47\x80\x4a\x3e\x90\x37\x81\xf7\xf8\x08\xb5\xb0\xae\xcd\xb0\x91\xbd\x2c\xc9\xd7\x7e\xd3\x03\xaf\xca\xf7\x55\x5d\x34\x5a\x52\xfb\x5f\x3e\x88\x77\xc2\x7a\xd0\x7c\x93\xde\x4c\xf8\x5d\xe0\xd4\x31\x59\x54\x68\xcb\xbd\x6f\xdc\x08\x4d\x1c\x95\x80\xc3\xd2\xa1\x08\x65\x80\x7b\xd4\x6a\x73\x6f\xf8\x6c\x88\xe7\xe2\xc8\x26\xbe\x60\xf7\xba\x9a\xff\x5b\x88\x94\xf5\x86\x7c\xad\x56\x8a\x56\x26\x24\xdb\xae\x12\x2b\xc6\x55\x1f\x75\xb7\xd2\xb5\x7c\x2a\x10\xc8\x6a\x16\x0e\xcd\xb0\xf7\x81\xb9\x71\xe2\x4c\x4f\x13\x75\x45\xc7\x7c\x3d\x4a\xac\x50\x17\x00\x4a\xaa\xfe\x8c\xde\xc8\x42\x42\xd5\xe5\x31\x18\x3e\x54\xe9\x9f\x92\x84\x9f\x93\xda\x25\xda\xe6\xbf\x3b\x51\x75\x51\xdd\x8b\x2c\x5d\x75\x73\x8e\x87\xba\x4e\x74\xc7\x9b\x98\x7f\x74\x8b\x9f\xf0\xa5\xa4\x41\xd6\xb1\xa0\x64\x3e\xb0\xcf\xb7\xb9\xcb\x53\xb8\x86\x00\x3e\xc7\xdb\x5f\xc7\x9a\x80\xab\x71\x97\x0c\xaa\x0a\x60\xbb\x58\x75\xb2\xb3\x61\xb1\xde\x89\x56\x6d\xd1\x65\x2d\x2c\x4d\xe6\xe2\x60\xfa\x05\x21\x85\xee\x53\xc0\xd7\x1b\x24\x51\x5e\x23\xe4\xd0\x71\x64\xca\xf5\x86\xe2\xb7\x24\x6a\x99\xcc\x74\x06\x26\x81\xc3\xe9\xcc\x47\xcd\x0b\x83\x9d\x9c\x40\xec\xcd\x1d\xaa\x2f\x45\x31\xf0\x0b\xf0\x1d\x66\x9a\x94\x54\x9e\x19\x85\x25\xb2\xde\xcf\xc5\x65\xf3\xf4\xe6\xe5\xb3\x63\xc2\x9f\xc0\xc1\x04\x6b\x72\x94\xf0\xa3\x53\xa3\xb0\x12\xbe\x6e\xe2\xc1\x52\xd4\xb2\x58\x8f\x9a\x5e\x6e\x04\x71\xb1\x13\x3e\xff\xd1\xea\xa6\xfd\x3e\xd6\xa3\xe7\xbd\x3b\xb0\xcf\x83\x75\x1e\x55\x2d\xc9\xa3\xde\x20\x36\x85\xda\x43\x14\x10\x35\x99\x0d\xbf\x49\x35\xf2\x35\x49\x38\xc1\x67\x31\x3b\x5b\x6f\x67\xeb\x33\x94\x6d\x1c\x86\x64\xe1\xc9\x21\xc7\xc1\x04\x3f\x02\x5b\x04\x92\xc5\x7b\x9a\x4f\x12\x76\x70\xb5\x74\x87\x88\x76\xa7\x18\x86\x4a\x64\x41\x70\xec\xc4\xac\x2a\x82\xb1\x12\xad\x12\xfc\xfd\x25\xd3\x5a\x89\xcb\xf0\x9f\xa8\xd8\x37\x98\x8a\x7d\xc3\x3b\x64\xad\xae\x65\x2a\x6d\x47\x13\x28\x7f\xab\x37\x4c\x93\x9a\xa4\xa2\xb3\x86\x50\x18\xa0\x65\x38\x3e\x5f\xc2\xf8\xa9\x7e\xc9\x70\xb2\x47\x4b\xe9\x44\x64\x82\xdc\xc7\x65\x7d\xfa\xef\x9a\x75\xf8\xfd\x45\x19\x29\x94\x87\xae\x55\xc8\x9f\xcc\xd5\xad\xe9\x38\x8a\x0d\xd7\x1f\x17\xce\xd4\x8b\x13\xe5\x99\x72\x57\xe5\xb6\x35\xc8\xa2\x22\xf2\x5c\xd4\x80\x25\xed\x6a\x12\x07\xc4\x7d\x3c\xaa\x23\x64\x0b\x94\xe3\x9e\x06\x22\x4d\xb0\xb6\x3d\x25\x5e\x39\x6b\x98\x00\x08\xd4\xeb\x35\x13\xf4\x5f\xa2\xba\x77\xe9\x85\xe7\x51\x9a\xec\x96\x1f\x02\x94\xa4\x26\x06\x0c\x6e\x84\x03\xb9\xe3\xf0\xfc\xa9\x98\x57\x0c\xca\x11\x78\x85\x5e\x09\xde\xb7\x09\x9e\xc0\x22\xc3\x62\xbd\xc2\x4a\x79\x9b\x2c\x52\x70\xc1\x17\xfc\x85\x36\x42\x9a\x0d\x25\x16\x70\x00\xc8\x7b\x48\xa7\x92\x22\x84\x93\xf1\x44\x88\x8f\xb8\xfd\x21\x86\xc8\xa5\xb9\xb7\xe8\xa3\x2c\x1e\x58\x2c\x8d\xec\x33\xf2\xf6\x4e\xbf\x4a\xbe\x16\x1f\xb8\x32\xa4\xfa\xb0\xd2\x97\x3b\x8c\x70\x40\x36\x82\xce\x4c\x19\xa5\x85\x91\xcc\xd1\x1e\x05\x5e\x23\x3c\x13\x76\xfa\x65\x29\x53\x3a\x36\x0e\x3a\xb8\x2e\x30\xb7\xf4\x79\x98\x43\x47\x18\x49\xfd\x07\x27\xe5\x94\xc7\x3a\xfe\x82\x58\xd2\x18\x98\xf6\x6d\x71\x30\x1d\x17\xd4\x5e\xee\xd2\xd3\xea\x1d\x52\x91\xdb\x48\x15\x4f\x92\xf0\x0b\x9b\x1f\x3f\xd2\x10\x15\x36\x96\x5a\xb3\xab\xf9\x62\xfd\x7e\x81\x21\xd6\x9b\x2a\x90\x6d\x6e\x57\x6d\x52\x74\xa7\x6a\x8f\x52\x2e\xae\x91\xbc\xf1\x56\x4f\x7a\xee\x50\x3d\x5f\xb3\x16\x39\x1c\xbc\x34\x38\x72\xf4\x9a\x74\x62\x0c\x94\x79\xa9\xf1\xbd\x41\x93\x19\x56\xd4\xaa\x81\xb6\xb0\x77\x74\x3d\xa1\xab\x0f\x2a\x00\xd0\x50\xba\x29\x3e\xf6\xcb\x78\x30\x4a\x34\x4f\x44\x65\x7e\x47\x6b\xf8\x39\x91\x64\x7f\x51\x21\x46\x7d\xb0\xbe\x3c\xc8\x4a\x2f\x6c\x46\xe6\xda\x11\xd8\x04\xc8\x2f\xc4\xe9\x42\xf6\xae\x5c\x04\x38\x56\x77\xc8\x5c\x39\x82\xc7\xad\xe3\xfc\xc6\x1b\xf5\x96\x19\x88\xe2\x66\x8d\x34\xe1\x65\x9c\x9d\x28\x7c\x55\x2d\x48\xe8\x91\x6a\xc1\xe7\xfc\xa8\x11\xd0\xfe\x1f\x79\x7f\xa2\x6d\x97\xa3\x56\x54\xa8\x42\x08\x12\x17\xf7\x65\x1d\x62\xe9\x6a\x45\x01\x9b\xee\x71\xc9\x45\x38\xe7\x9a\x80\xfa\xa6\x88\xf2\x65\xc8\x44\x70\x3b\xad\x13\xe4\x0a\x81\x71\xd7\x9a\xb8\xe8\xae\xef\x0e\xf2\xd0\x88\xcf\x7d\x0a\xbf\x1c\x15\xfc\xd8\xb5\x06\xe7\xad\x48\xdd\xf8\x22\x76\x13\xf6\xd9\xa7\x43\x46\x2f\xc9\x4b\xb8\xef\x1d\x03\x6c\x84\x9d\xd2\xcf\xa2\x9e\xdd\x19\x38\x22\xae\x13\x5d\xaa\x76\x66\xb8\xd4\x94\x3c\x80\xcb\x4d\x95\x8f\xec\x4c\x58\xb9\x07\x09\xa9\xe2\x2c\xe8\xe5\x89\x4d\x52\x2e\xf2\x58\x5a\xb2\xb0\xb0\x70\x4e\xdf\x24\x19\xdd\x4f\x29\x09\xf3\xa0\xa2\xc3\x74\xb1\xde\x8a\xb2\x56\x6c\xa9\x3e\xae\x1a\x2a\x8e\x4c\xed\x51\x30\xc8\xd6\x20\x6b\x87\x6c\x08\xc2\x4b\xa5\x41\xd2\x1b\x22\x51\x58\x89\xda\x6d\x8b\x1a\x95\x6f\x76\xa4\x42\xb1\x7c\x05\xac\xdf\x7b\xb0\x9d\xae\xbb\xc1\xa7\xa7\xff\xaf\x0b\xc3\xe7\xb9\x41\xc2\x26\xed\x48\x08\x13\x6b\xa1\x75\xe4\x17\x32\x72\x7a\xdd\x78\x9c\x3c\xd5\x5f\xda\xc9\x5d\x1e\x44\x85\x76\x9a\x38\xfc\x1e\x6b\xd2\x8c\x9c\x26\x88\x04\x53\x36\x4f\x8f\x4a\xeb\x0c\xab\xfd\x2f\xab\x04\x66\xe2\x28\x29\x63\xad\xda\x8b\x2f\x06\x69\xd9\xd0\x30\x72\x93\xc2\xff\x23\x13\x48\x87\xb9\x43\x75\x9b\xb4\xd2\x41\x66\x3a\x7e\x4e\x5d\xf2\x21\xb0\x15\x20\x1c\x51\xda\xf6\x31\x1e\xba\x62\x6f\x68\x47\x81\xb2\x98\x9e\x97\x72\x74\x38\xf1\x47\x31\x14\xb0\x07\x3b\x9a\x94\xe6\xd7\xe5\x09\xeb\x8a\x64\x20\x52\x10\x8f\x01\xa9\xef\xb8\x61\x64\x8e\xe1\x01\x7c\x87\xa9\xcb\x77\x09\xb5\xb4\xca\x7f\x81\xb3\xd5\xb5\x05\x95\xa7\x1e\x16\x31\xd0\x9a\xae\xe4\xea\x10\x95\x87\xe3\xbf\xf1\x17\xdb\xa6\x30\xad\xb4\xd7\x9f\xa2\x90\x19\x4b\xd9\x69\xc3\x04\xee\xa5\x53\xec\x1c\xa7\xb9\x9d\x96\x27\x47\xd9\xe7\xbc\xec\x59\x72\x07\x5d\x6d\x08\xfd\x0a\xce\x35\x0c\x8b\x73\xd9\x44\xb1\x6d\xcf\x84\x94\x07\x64\x42\x91\x5b\xdf\x09\x6e\x40\x6c\xf4\x63\x82\xe2\xd1\x9d\x45\xad\x79\xb5\x51\xf0\x7d\xd2\x41\x91\x47\x6d\xab\x14\x6a\xf0\xb8\x80\x70\xd3\x6b\xda\x16\x46\xc8\x5b\xa7\x1f\x49\x88\x16\x6a\x23\x3f\x11\xc4\x91\x5e\x3f\x92\x04\xaa\x13\xc5\xb1\x2d\x0a\x5b\x0b\x28\x72\x6d\xc9\x72\x20\xa6\x00\x89\x2a\x80\xe6\xf7\xdb\xe2\x16\xd6\x85\xde\x90\x5a\xe8\x1f\xc3\x06\xe9\x0d\xd5\x3e\xda\x83\xe5\x65\x9b\x21\x06\xc6\x1e\xbd\x83\xe1\x86\xe9\x38\x3e\x1c\x93\xe8\x76\x88\x80\xd8\x2c\xa5\xd9\x0e\xe6\x46\x11\x6b\xbe\xb9\xb7\x49\xe2\x20\xd8\x7d\xae\xe0\x23\x6b\x0c\x0d\x91\xfa\x3a\xc8\x55\xfc\x21\x05\x03\x79\x61\x4d\x3b\x2a\xfd\xfb\xb9\x43\x9e\x89\x30\x54\xc8\x7e\xe1\x2b\x8d\xab\x51\x52\x98\x8e\x25\xb9\x89\x7f\x40\x90\xc8\x7f\x50\xa9\x43\x9a\x17\x0e\xe8\xe2\xa1\x89\x94\x97\x78\xbb\x0a\x1c\x62\x0f\x17\x36\x69\x2b\xf4\x01\xa3\x83\xb6\x18\x4f\x23\xe4\x93\x75\xbf\x5f\xf9\x79\x93\x47\x36\x2f\xa6\x42\x1b\xf1\x59\x6c\x29\xac\x22\x6c\x0c\x57\x4d\xae\xe0\x6b\x15\xdd\x3f\x17\x04\xc0\xfe\x2b\xa7\x04\xbc\xc9\x9f\x73\x36\x73\xcf\x68\xab\xfb\xb4\x7f\xa1\xbe\x1c\x1d\xb6\xed\xe9\xe0\xcf\xa8\x4c\x01\x65\x6f\x17\x34\xaa\xfc\x90\xf8\x24\xcf\x55\x11\x5b\xb5\xa3\xbc\x95\xd9\x02\x83\x8e\x9d\x7d\x9e\xa4\x93\xce\x0f\x1f\xf3\x8b\xea\xeb\xb5\xd2\x72\xa2\x3e\x72\x0b\xbc\x23\x7a\xc3\xa1\xbd\x72\x33\x6a\x38\x07\x8b\x7f\x8e\xac\xff\xb9\x0a\xd2\xb9\x97\xea\x79\xcb\xc4\xfd\x9c\x95\x72\x36\x00\xf1\x43\x88\xd1\xa5\xfa\xfa\xa4\xde\xad\xa4\x93\x63\xdb\x71\x39\x15\xa7\xe9\x1e\xfa\xe4\xb1\x5f\x09\x97\xe7\xeb\x52\x59\x14\x3f\x56\xfe\x9b\xd7\x5e\xf4\x2a\xc4\x67\x29\xe8\x38\x3b\xa4\xfe\x94\xdd\x4d\xa2\xe3\xdf\x20\x01\xf4\x0d\x16\x68\xd8\xc0\xd1\x09\x33\xfd\x3d\x6c\x38\xbc\xc0\xf6\x11\x21\x91\xaa\x78\xae\x5a\x5d\x93\xb4\x5c\x65\x14\x07\xf1\x71\xe2\xfb\x3b\x4e\x0e\x58\xcb\x64\xed\x68\x79\xb9\x46\x2c\x6a\xba\x0f\x9d\x9e\x19\x61\x6f\xd3\x55\x9b\x95\xfb\x4b\xd0\x59\xb0\xa1\x5f\xc8\xcc\xe8\x75\x63\x6b\x9e\xe1\xd0\x2b\x75\x9b\xb4\xc5\xbb\xc3\x39\x72\x9d\x98\x26\xae\x13\x24\xbe\x95\x26\x45\x66\x5a\x45\xfe\x18\x45\x6d\x4a\x43\x8c\xc4\x2d\xc2\x1a\xa7\x68\x4d\xed\xd2\xc7\x59\x2f\x17\xbd\x4e\xc8\xb1\x1d\x19\x52\x3a\xf0\x5f\x34\x42\x61\x4c\x35\xaf\x11\xe2\x9c\x80\x5d\x43\x81\xea\xf7\xbd\x77\x1b\xf5\xca\x73\xda\xf5\x15\xf9\x16\xe9\xf2\x67\x5d\x8f\xf3\x04\x42\x40\xd8\x16\x0f\x17\xa2\xbb\xe4\x9b\x0d\x3d\xfc\xeb\x02\x05\xd1\x5d\xdb\xb1\xbd\x34\x59\xc7\x79\x08\xbb\x78\xa7\xc1\x10\xf8\xb3\xc4\x44\xbd\x31\x91\x51\xfd\x4a\x3d\xb3\x26\x4f\x13\xb3\x14\x83\x4a\x1e\x58\xcb\x23\x44\xe7\x79\xc4\x33\x3b\xf4\xd3\xd8\xa7\x0c\x3c\x91\x77\xc8\x6e\x7c\xc6\x4c\x51\x3f\xf3\xb4\xc8\x20\xac\x4b\x5a\x96\xeb\xeb\xe8\x04\xd3\xeb\x09\x0f\x69\x7e\xbe\xbe\x1c\xaf\x3b\x50\x05\xec\xe2\xb1\x21\x69\xac\x1c\x9b\xa8\xac\xcc\xcf\xd7\xf3\x56\x16\xf5\x8b\xb5\x2c\x2a\x14\x77\xca\x69\x77\xc7\xa4\x1e\x9a\x8b\x4c\x3b\xcd\xbc\x70\xb4\xa3\xd7\x0d\x0e\x94\x4a\x7c\xbb\x56\xea\xc0\x65\xdb\xb2\xa9\x80\xe3\x10\x93\x1d\x95\x5d\xa7\x9e\x28\xd0\x86\xf0\x0f\x6e\x4d\x4c\xeb\xdc\xa1\x7a\x36\x58\x8a\x51\x6b\x82\xeb\xfe\xd8\x28\x24\x1a\xef\x08\x03\x36\x7c\x85\x7b\x84\x9b\x6a\x9b\x6c\x2d\x4a\x22\x65\x71\x46\x06\x18\x61\xad\x92\xdd\x0f\x09\x6b\xf6\xd3\xad\xd8\xd3\xc5\xb9\x43\xf5\xfd\x0b\xd3\x4c\x26\x5f\x3e\x30\x0f\x8d\x83\xd9\x84\xfe\x83\x2a\x15\x97\xd7\xeb\x9d\x34\xd6\x55\x8c\xd3\x01\xe5\x44\xbd\x6e\xb8\x2c\xda\x9b\x36\xed\x97\xa6\xe0\xeb\x58\x4f\x0a\x1d\x93\x1f\x72\x30\x32\x9f\x48\x4e\xa2\x55\x9b\x39\xa4\xb6\xf6\x98\x12\x98\x15\x9d\xf1\x4e\xa2\xec\x71\x8f\xa0\x1f\x24\xed\x1d\xe4\x93\x50\xf0\xa4\x50\x7a\xf8\x82\x57\x19\x67\xa5\x1e\xad\x13\x26\x25\x65\x9d\xef\x4f\xbc\xec\xaf\xd6\x6d\x04\x0d\xdd\xd9\x59\xfd\x91\x93\x92\x87\xd1\x6b\x62\xe7\x6a\xa5\xb1\xf6\x60\xe3\x64\xbb\xd4\xa0\x0a\x28\x07\xfa\x93\xbf\xb2\x78\x60\xb1\xbe\x1a\xa1\xa7\x78\xb1\x1a\xaf\x1f\x8e\x07\x01\xd1\x4e\xc9\x5f\x3a\xd2\x07\x2a\x05\xfd\x80\x94\xb2\x4f\x32\x45\x5b\x3f\xcd\x8a\x75\xa0\xb6\x94\x24\xa7\xc1\x84\x39\x15\x7a\x7c\x2d\x9b\xe4\xd2\xc0\x5e\x0e\x30\xb5\x70\x86\xcd\xfa\x34\xf7\x53\x9b\xd2\x83\xd8\x11\xb0\x44\xe7\x1b\x44\x5b\xf7\x49\x83\xc2\xb4\x4f\x88\xac\xed\x3c\x73\x0c\x1c\x1d\x12\x15\xfe\x51\xb6\x6d\xa6\xdf\xb7\x89\x6d\xef\x0c\x7d\x90\xf7\x04\x79\xef\xd2\xc1\xb2\xdb\x9c\x8e\x5f\xf8\xf6\xbb\xb2\xc2\x31\x05\xd7\x1b\x94\x40\xda\x18\x12\x0a\xf9\xdc\x04\x57\x6d\xb9\x3f\x2d\x34\xd1\x7d\x55\xde\x61\x22\x09\x1f\x49\xc1\x54\x3f\x5f\x9f\xae\xf9\x96\xba\xff\x7b\x48\x9c\xa8\xc0\xe1\xc1\xaf\xbc\x47\xdd\xa7\xe7\xa8\xa6\xd8\x35\x51\xb6\x8e\x33\xd0\x59\x76\xb6\xf8\x2e\x7a\xc9\x4c\xcb\x87\xd0\xae\x8e\x5d\xf3\x7d\xbd\xa7\xab\x1a\x3a\x5b\x69\xb2\x3c\x08\xc5\x56\x64\xda\x7f\x46\x5d\x96\x0f\xe5\x8d\x54\x8f\xca\x67\xc0\xdb\x51\xbf\x5b\x2e\xfc\xc8\xd4\x88\xc3\x03\xb6\xda\xe9\xf1\x3f\xbf\x55\x2a\xe4\xa5\xfa\xab\xfb\x16\x9e\x08\xa5\xcd\xf7\xd1\x66\x08\xdf\xe9\x2e\xd2\x29\xb0\x5a\x47\x90\x35\x81\xf3\xf3\xb6\x38\xb7\xbe\x17\x7c\xbf\x6b\xc2\xfb\x03\xd9\x69\xb0\xc1\x3f\x1f\x52\x37\xc6\xfb\x15\xd4\x26\x01\x93\x42\x60\xb6\xe0\x73\xa0\x94\x8f\x60\x6e\x2f\xd5\x19\x96\x4c\x92\x94\xc1\xdc\xec\xac\xa2\x21\x7e\x2e\x4b\x46\x79\x75\xc0\x05\x0d\x17\x1a\x39\x4c\x2f\xba\x1e\xda\x8e\x26\x2b\xae\xaf\xee\xab\xb7\x6d\x2b\x6a\x8b\xdd\xdb\x14\x8b\xb7\x79\xde\x5b\x2d\x9b\x65\x69\x86\x0c\x17\x1c\x0c\x34\xe8\x3a\x49\xa4\x9a\xef\x8b\xbe\x4f\x0d\xf3\x1b\x04\x5a\xc9\xfb\xe9\x8a\xcd\x7b\x26\xd9\x29\xa0\x24\x9c\x19\x57\xa8\xa7\xe2\xce\x30\x50\x7c\x5e\xe2\x1e\x93\xa3\x9a\x48\x47\x3e\xf0\x7f\x6c\x08\x7a\x44\x29\xac\x80\x1e\x71\x7c\x56\x5b\x57\xd2\x8b\x2f\xd6\x41\xfa\xe6\x8e\x62\x25\xed\xc1\xb4\x38\x06\x1f\xdf\xb0\x14\x47\xed\xe9\xd0\xf6\x75\x9d\x9d\x9c\xc7\xe1\xa9\x3a\xa8\x4d\x40\x78\xdc\xa4\x04\x68\x37\xca\xfb\x26\x89\x5a\x08\xd4\xb1\x38\x7f\x07\x4e\x05\x7c\xd4\xe3\x98\x75\xfd\x97\x46\xc8\xef\x1d\x6f\x3c\x17\xf2\x3e\x71\xd4\x8b\x50\xc6\xdd\x41\x90\x0a\xcc\xaa\xd2\x95\x0c\x03\x68\xef\xb3\x46\x40\xba\xdf\x90\x21\x44\xde\x01\x34\xcc\x4e\x8a\xa0\x02\x9a\x6c\x93\x8e\xe9\x38\xec\x33\x32\xbb\xda\x04\xae\x37\x3e\x27\x9c\xd9\xbc\x9f\x26\x79\xb4\xa4\xa1\x48\x55\x70\x13\xcc\x9e\xa8\xc9\xc6\xa5\x63\x12\x18\x0c\xef\xa9\x4b\x07\x58\xa6\x26\x44\x5d\x1f\xe0\x0b\x0c\xde\x12\x90\x84\x44\x3e\x38\xaa\x75\xbb\x8c\x31\x69\x54\xb5\xcd\x27\x45\x24\x55\x9d\x55\xb8\x27\x2e\xc0\x91\x67\x70\x8c\xa4\x35\xdf\xcd\x79\xd5\x47\xca\x6f\x9a\x2c\x2b\xed\x4c\x68\x22\xba\x81\xd5\x81\xc3\xfe\x0c\x55\xfa\x58\x94\x72\x39\xb2\x19\x68\x8f\xe1\xf0\x68\x0e\x53\x6f\x08\x63\xbd\x94\x0e\x3a\xdd\xe2\xb1\x90\xde\x57\xfe\x37\xc7\xb0\x2c\x1f\x43\x3c\x57\x93\x19\x43\x53\xee\x3b\x54\x13\xf9\x63\xb8\x65\x78\xa5\x93\x98\x22\x37\xaf\x2c\x74\x7c\x81\x09\xfa\x10\x28\xea\x67\x28\x9f\x61\x96\x97\x4d\x94\xe5\x3b\x48\x0f\xfa\x24\x9e\x48\xb9\xd3\xf1\xfd\x1e\x7f\xb9\x10\x24\x30\xc8\x35\x39\x86\x93\x51\x6f\x88\xa7\x47\xc0\x29\xf0\x08\x50\x00\x82\x3a\x8e\x5e\x33\xa6\x39\x8d\x57\xf2\x69\xae\xf4\x8d\x7d\x63\x8d\xe9\x32\xf9\x77\xdd\x4f\xe5\xc5\xa0\x6d\x93\x62\x8a\x4a\x58\x00\x11\xa2\x6c\x09\xcc\x2f\xe2\xc7\x67\x47\x93\x3d\x5e\xaf\x97\xe1\x98\x10\xc0\xaa\xab\x30\x96\xc6\xd4\x1b\xf2\x44\xe2\xa8\x10\xaf\xdc\x93\xff\x6f\x1b\x05\x74\xd8\xb6\x66\x68\x02\x1a\x98\x78\x86\x08\x7b\x46\xb2\x70\x81\x2b\x38\x0e\x10\xbd\x67\x15\xf7\x5e\x81\xf2\xe8\xb9\xa4\xc3\xa4\xb4\xf6\x62\x3d\x8a\xb4\xae\xe4\x20\xbd\x44\x7a\x7e\x86\x9e\x73\x35\x2d\xed\xc6\xee\x00\x86\xda\xd6\xe4\x7c\x65\xe0\x1e\xd8\xe0\x36\xa3\x23\x43\x6a\x46\x3a\xd2\xa0\xdc\xa9\x1a\x62\xe7\x02\xe1\x19\x9c\x77\x14\xb2\x43\xd7\xaa\x78\xd7\x33\xdb\x23\x2d\x04\xd2\x1a\x71\x02\xeb\x17\xab\x34\x5f\xfa\x59\x5a\xd8\x28\xc9\x59\x3c\xf2\x0c\x67\x60\xcf\x50\x1b\xd7\xf2\xe0\xcd\xa8\x16\x72\x00\xef\xb3\xb1\x7d\x9f\x5c\xb1\xc2\x26\x6d\x9b\xb4\xd6\xe1\x4e\x38\x56\xf5\x9a\x27\x8b\xbe\x37\x26\xe1\xf1\xa8\xde\xbc\xcc\x94\xce\xc5\x0e\x39\xbf\xe0\xe4\x9c\xa4\xbe\xcc\x67\x9a\xd4\xe7\x73\x0b\xae\x82\xa3\x07\x11\x27\xc2\xc7\x2f\x9e\x1f\xe1\x02\xab\x72\x0a\x48\x3a\x9b\x19\xe7\x07\xf6\xf5\x32\x94\x89\x5d\x04\x22\x5f\x0e\xfb\x7f\x5b\xe2\x1e\x17\xa6\x54\x31\x65\xf6\xfa\xa6\x85\xe6\x1e\xd8\x16\xa4\xe7\x11\x56\x7c\xc1\xc4\xe7\x17\x29\x5f\xdc\x82\x0a\x6a\xb0\x70\xf0\x24\xf4\x7a\x02\x2b\x5f\xae\x51\x91\xea\x91\xd9\x50\x18\x6d\x83\x1c\x77\xae\x45\x26\x36\x5b\xb5\xb9\xca\xdb\xba\x02\x57\xe9\x02\x61\x6b\xdc\x1e\x8e\x15\xc1\xf6\xbb\x1c\xed\x6d\xdf\x38\xd2\xcf\xd2\x4e\x19\x50\x48\xad\x85\xc0\x48\x8e\x43\xe2\x13\xf2\x2f\xd1\x44\x82\xa5\x33\x2d\xad\x05\x98\xba\x2b\xde\x3f\x2d\x32\xd3\x89\x5a\xb5\x90\x93\x7e\x20\x2b\x5b\xaf\xfd\x9f\xb5\x6d\xcf\x01\x81\x91\x0a\xbb\x47\xd5\xc0\x4b\x24\x9b\x73\x86\x86\xd1\x26\x41\xf3\xd9\xa9\xdc\x95\xdf\x00\x88\x00\x9a\x04\xb0\xed\xfe\x29\x95\xf8\xb4\x6b\x08\x9a\xd9\x38\xbd\xce\x10\xfb\xf5\xb7\x86\x01\x39\xf7\x2d\x39\xfe\xf5\x6f\x28\x3b\x50\x64\x66\xa9\x8c\x77\xcb\xbf\xf4\x11\x64\xc8\x2a\x5f\xf4\x49\x91\x56\x77\x90\x25\x72\xac\x7b\x1e\x9e\x72\x20\x1d\x3d\xf1\xb3\xde\xde\x5a\x1b\x0b\xc4\x2e\x73\x2d\x96\x88\xb5\x55\x87\x57\x6f\x26\xea\xe3\xaf\xee\x5b\x00\x3c\x4f\xd8\x89\x9c\x1f\x86\x18\x10\x75\x3b\xbd\xf6\x9e\x66\x91\xae\xd9\x98\x15\x7c\xdf\x95\xd7\x55\x69\xd0\x46\xb0\xeb\xc7\x28\x92\xc9\x92\xb4\x16\x10\x40\x1b\xbc\xaa\x37\xaa\x9c\x9f\x35\x1b\xfb\x87\xc1\xb6\xbf\x80\x2c\xa3\xde\x70\x94\x93\x2e\xa5\x9a\x16\x77\xd0\x63\x62\xd8\xbe\xe8\xe1\xed\xb1\xe9\xcc\x84\x3e\x24\x28\x9d\x7a\xf0\x40\x48\x43\xdf\x18\x12\x36\x43\xbb\xd8\x5c\x05\x29\xfc\xe8\xb2\x5d\x83\xe8\xee\x4b\xfe\x70\x0f\xdd\x58\xe8\x24\x76\x32\xd2\x5b\xb7\xe2\xec\x6c\xbd\x6b\xb2\xb6\xcd\x24\xad\xee\xdb\xb4\x4b\x8b\x81\x47\x7e\x0f\x79\x42\x14\xaa\x2f\xfb\x85\x10\x65\x4e\x45\x00\xfe\xdf\x6f\xe3\xa9\xf5\x66\x22\x4a\x9b\x3b\x54\xef\x9b\xd6\x8a\x14\xf1\x10\xdb\x21\x51\x70\x55\x1e\x54\xaf\x09\xa4\xdd\x2e\x1d\x21\x5b\x86\xf3\x21\x56\xb8\xce\x16\xe2\xba\x77\x23\x06\x49\x2b\x16\xa1\xdb\x05\x4a\xd5\x78\x60\xd8\xe4\xa9\x71\x60\x5f\x69\x11\x56\xa3\xb6\xcd\xa6\x03\xa1\xd4\x3d\x0c\x34\x86\x0c\x42\xe3\x88\xca\x66\xc4\x22\x38\x88\xec\x04\x1b\xba\xd0\xbc\xaf\xda\xac\x6b\x0d\x50\x65\x2e\x20\x96\xa9\xc2\xc9\x05\x41\x6c\xc4\x2d\xd7\x26\xda\x72\xf7\x2f\x94\x6e\x56\x14\x47\xc6\xeb\x89\x3b\x0a\x9a\x00\xec\xfe\xc5\x58\xa6\x20\x69\xc7\x4e\x46\xde\xd9\xe2\xf2\x17\xf4\x9a\x00\xa7\x71\xab\x8b\xbd\x01\x1b\x74\x92\x51\xc3\x3f\x21\x2e\x98\xd0\x75\x66\x7b\xa9\x47\x3e\xe0\x98\xf8\x0e\x65\xb3\xbe\x43\x36\xc3\x1e\x36\x2d\xc1\x45\xbe\xea\x90\x05\x2a\xe1\xaa\x37\xf4\x18\x73\xbf\x3e\xcf\x58\x3d\x2c\x15\x07\xdc\xdb\x92\xc2\x9b\x9f\x3f\x50\x7f\x75\xdf\x6e\x8e\xf4\xe4\xa1\x01\x2a\x84\x80\x34\x42\xae\x9b\xc3\x49\xc1\x53\xfc\xf6\x7b\xc3\x00\x43\xbc\x29\xe1\x32\xca\x19\x50\xab\x42\x01\xf8\xb1\x66\x60\xa8\xbc\x48\xa3\x9b\xa7\x3d\x5b\x44\x3d\x94\xff\x61\xa7\xc0\xf2\xa4\xd7\xa3\x2d\x64\xa2\x73\x87\xea\x5f\x55\x22\x0f\xdf\xf5\x1b\xb2\xc9\x32\xc6\x4a\x6d\xc8\x18\xb3\xd3\xd4\x64\x10\x7f\xf5\xcd\xaf\x4a\x8d\x4e\xd5\x47\x09\x29\xf7\x0b\xbf\xca\xdb\x6b\x26\x5b\x76\xeb\xc3\xa9\x7f\xd7\x48\x16\x7c\xeb\x32\x5f\x3c\xb0\x28\x05\x0d\x1f\xb4\x29\xfc\x9a\x39\x2e\xab\x69\xcd\x7a\x26\x6e\xa5\x71\x4f\xed\xb6\x42\xb6\x86\x94\x0d\x38\x37\xb1\x86\xcb\x8f\xf5\x6d\x91\xa5\xb1\x1d\xf4\x90\x81\x73\xc2\xac\xf8\x16\x77\x9a\x91\xba\x56\x66\xda\x11\x6a\x56\x51\x0e\x4c\x92\xe6\xfa\x1a\xc1\xe6\x9f\x0b\xdc\x87\x69\x12\xe5\x85\x2e\x4c\x24\x42\xd4\x1e\xe8\x8d\x4f\xeb\x64\xb6\xc8\x4c\x94\x78\x43\x53\x85\x9a\x7e\x86\x56\xb1\xcd\x5a\x51\xae\x9a\xe2\x48\x50\xdc\x42\x08\x85\xb3\x1a\x25\x2c\xa7\x0e\x1d\xc2\xf7\xfe\x20\x13\x9d\xa0\x69\xaa\x3d\x69\xe5\x45\x1b\x38\x64\x7a\x60\xb9\xa1\xc5\xe1\x1a\x06\xfe\x5c\x55\x9f\x44\x5e\x64\x69\xbf\xbb\x9e\x47\xad\x48\x45\x54\xb9\x35\xd0\xd5\x7d\x5d\xf6\x21\x1b\xb4\xad\x58\x2f\x57\x8c\x08\x21\x23\x28\xbf\x55\x1d\x9d\x13\x47\xa1\xc1\xd5\xf4\x4c\xae\xad\xa5\xee\xec\xfe\x88\xd3\x9e\x0a\x85\x77\x93\x36\x99\xfb\x79\xbd\x34\xd0\x4b\xe8\x3e\x82\xf1\x3e\x42\x86\xfc\xc8\x18\x75\xe3\x72\xab\x85\x05\xe8\x24\x22\x65\xc0\x9c\x66\xe9\xf3\x14\xce\xf7\x7a\x69\xb2\x26\x78\xa5\x1a\x15\xcd\x59\x28\x80\x91\x4d\x79\x81\x3f\x0d\xa0\xf4\x8b\x4c\x07\x31\x29\x81\x55\xee\x08\x81\x80\xcb\x63\xc3\x22\x6a\x37\xa8\xde\x34\x5d\x15\x47\x55\xdf\xdc\xd6\xf1\x54\xda\x81\x88\xeb\x02\x75\x91\x75\xca\x03\x20\x49\xb3\x1c\xad\x4a\x88\x86\x6f\x23\xd9\xa4\x37\x74\x58\xb7\xb3\x28\x8e\x59\x5a\x08\xe5\x02\xcf\x76\xb7\x40\x79\xe3\x40\xbe\x76\xbe\x11\x0a\xfb\xae\x8d\x08\x0f\xa7\xca\x30\xd8\xd7\x4e\x26\xe6\x39\x62\xcd\x2a\x32\xb3\x6a\x13\xe1\x80\xe3\x32\x69\x68\x5d\xd8\xf0\x5e\x6b\x57\x03\xd7\x50\x48\x97\x67\x73\x45\xf5\x50\x94\xc8\xb2\x75\xc4\x1e\xc8\xd1\xec\x41\x1d\x1d\x06\xf0\x1e\xa5\x4e\x8e\x11\xd7\xea\xed\x21\x01\xec\x2b\x15\x55\xa1\x50\x36\x2d\xde\x07\x22\xca\xe3\x62\x0c\xf1\x23\xff\x10\x81\x91\xde\x34\x02\x84\xef\x38\xab\xa1\xae\x2d\x0f\xd0\x2d\xa1\x1c\xa0\x9c\x6a\x39\x49\xe2\xd5\xc2\xdc\x6a\xa2\xa4\x50\x6f\xcd\xa5\x12\xc3\x99\xcb\x02\x3b\xbd\xa8\xdd\x8e\x6d\xaf\x74\x79\x3c\xf4\x65\xa3\xc1\x6d\x48\xd4\x7a\x64\xe3\xc8\x2e\x23\xfb\x09\xd3\x7f\x9b\x33\x65\x48\x57\xe0\x34\xb9\x03\x83\xe1\x72\x26\xe1\xe9\xa2\xe4\xcd\x41\x22\x44\xca\x53\x01\x78\x83\xa8\x0e\x49\x3d\x78\x8c\xda\x18\x34\xd1\x05\xb2\xb0\x50\x5f\x1a\xac\x2b\xd4\x42\x59\xa7\x99\x98\xfd\xd2\x18\xee\x33\xd4\x93\x8b\x4c\x34\xd3\xd6\x73\xd6\xe7\x3b\xce\xcd\xb0\xc7\x1b\xa1\xc7\x32\x2a\x0a\xf4\x14\xaa\xda\xb9\x9c\xba\x30\x3c\xdb\x9b\xd4\xa5\x5f\xc6\xbd\x8b\x9b\x92\xb0\xda\xac\x8d\x9e\xe7\xa8\x23\xc9\x8d\xbc\x65\xbe\x93\x60\xfe\x24\x62\xa1\x6b\x46\xa1\x91\x70\xa5\x1d\x4e\x32\xb4\x63\xfe\xaf\xe8\x2d\xc1\x28\xe9\x4e\xc0\x32\xf9\x66\x95\x84\x44\x2b\x1e\xc8\x32\x97\xe5\xe4\xdb\xc8\x7c\x3b\x56\xe9\x92\xfc\xc7\xc4\xfc\xe2\xf8\x7d\x49\xa7\xf4\x1e\x8b\x91\xde\xf3\xdb\xc7\xb4\xb3\x34\xc2\x59\xe6\xe5\xc5\xa8\x65\x6b\x2f\xf5\xbc\x14\xad\xee\x74\xc8\x09\x69\x82\x5f\x6f\xa8\x43\xf7\xb4\x94\x49\x1d\xfe\xce\x07\x3d\x59\x9a\xf6\x6b\x01\x40\x05\xe6\x53\xbd\x6e\x84\x83\xb0\x95\x76\x92\xe8\xeb\x56\x18\x90\xe6\x7c\xcb\x97\xfc\x94\xac\x83\xbf\xff\x5c\x33\x54\x32\xf6\x40\xec\xc6\xeb\x94\xf8\xde\x9a\xcd\x61\xe8\xcc\x39\x13\x02\xdc\x41\x1c\x97\x51\xc3\x81\x45\xc7\x18\x8b\xed\x09\x97\xb7\x06\x7c\x9c\xb2\xd4\x8f\xf6\x10\xec\x57\xc2\x70\xf8\x60\xaa\xab\x07\x34\x0b\x62\x16\xcc\x21\x9c\x6e\x4c\xee\x2d\xd6\x38\x3b\x52\xd5\xd2\x8e\x2a\x16\x9c\xa3\xb9\xa0\x8c\x16\xa4\x00\xce\x4e\xc4\x23\xe5\x59\x90\xb7\x06\x45\x11\xdb\x76\x6d\x8b\x18\x83\x07\x68\x51\x0f\xb9\x89\xa6\x89\xf3\x48\x2b\x7a\x04\x8b\x70\xad\xd2\x33\xd2\xf4\xec\xd8\x48\x2a\x9a\xb3\x0a\xeb\xc8\xd7\x51\xf6\x3c\x4d\xc8\xd4\xd3\x43\xa6\xf3\x8e\x63\x61\x0f\xf3\x13\x7b\x5e\x4c\xa1\xd3\xac\x0c\xa6\x49\x3d\x76\xa3\x51\xb0\x93\x39\x2f\x07\xd0\xa3\xea\x17\x16\x3c\xa0\x27\x78\x30\x9d\x41\x14\x97\xa1\x36\xf6\x3a\xea\x54\xc0\x2c\xeb\x35\x3d\x4e\xd4\xeb\xa7\x59\x91\xef\xd8\xca\x0c\xae\xfd\x7d\x4c\xdc\x7c\x1b\x7b\x03\x7e\xe9\x26\xab\x31\xcd\xc0\x28\xa0\xbf\xe3\x77\x2a\xa1\xb7\x5d\x6b\x32\x27\xdc\xe1\x60\x9e\x4c\xd1\xa4\x74\x62\x2e\x90\xa8\xea\x51\x8d\x92\xc4\xe5\x1c\xe0\x8e\xa8\x3a\x92\xde\x8c\x3c\xea\x6e\x3d\x69\x75\xe1\xab\x7a\xc3\x51\xbe\x85\xde\x4c\x84\x7a\x2e\xaf\xb7\x26\xb4\xd5\x2c\xa3\x30\x46\xdd\x77\x64\xa2\x83\xea\xd0\x2b\xf5\x22\x8b\x7a\xb5\xd0\x3f\x83\x56\x72\xbd\xa6\x2e\xe6\x28\x69\xa5\x3d\x9b\x4f\x31\x76\x4c\x26\xc7\xc3\xea\xfd\x6e\x3d\x3e\xf1\xee\x5f\xa9\xaf\x46\x59\x27\x4a\xe0\xf5\x3a\x05\xca\x5a\x50\xa3\x9c\x20\x91\x93\xe0\x35\x1f\x2c\xe5\x51\x3b\x32\x10\xdf\x0d\x64\x36\x0f\x08\x26\xfe\x80\x52\xf1\x6b\x56\xe4\x18\x7d\x7f\x23\xd8\xd4\x5d\xca\x3e\x2c\xcb\x25\x93\x95\x91\x94\xeb\xc9\x66\x42\x25\x87\xf3\x7a\x96\x05\x4d\xfb\x69\x62\x93\x22\x9f\x09\x4c\xab\x67\x50\x5a\x45\x8a\xf4\x1f\xcb\x27\x71\xfd\xbb\xa4\x84\xfe\xbb\x92\x4a\x73\x10\xc9\x20\xc5\x9b\xb4\xc7\x8e\x4e\xed\x2c\x18\x43\x6a\x61\x1d\x3e\xf4\xa1\x6f\x5b\xc4\x4d\x0b\x92\x46\xbc\xdd\x08\x96\xef\xf6\x18\x51\x6e\xc7\xc4\x3b\x49\x51\xf7\x02\x11\x5c\x5c\x11\x93\xad\x88\x2b\x79\x6a\x65\x2d\xc2\x23\xa0\x5a\xb0\xbb\x49\xa5\x9c\x73\x1a\x24\xe1\xef\x76\x8c\x7c\xd5\xa2\x3f\xc8\x7c\x4e\x00\xbe\xd5\x3f\xa2\x36\xe4\x7f\x44\x3c\xf4\xa6\xd5\x4a\x07\x49\xf9\xf8\x52\xac\x71\xf9\xbe\x6b\xc4\x8e\x59\x48\x20\x83\xb8\xea\xb4\x98\x77\xc5\x5c\x4b\x32\x55\xff\x3f\xb6\x00\xb2\x67\xa7\x7d\xb2\x47\xb2\x71\x7b\x82\x4c\x0b\x4e\x07\x98\xed\xc7\x9b\x21\xdc\x05\x5f\x00\x9c\xe9\x6b\x30\x8b\xc0\xe1\x3d\x87\x82\xa8\x32\x37\x63\x20\x10\x25\x6d\x70\x5b\x24\x86\x11\x60\x2b\xd5\x17\x23\x71\xdb\x10\xbe\x39\x37\xdd\x51\x62\xb4\x67\x82\xc7\x70\x9f\x72\x1c\x07\x9e\x97\x87\x23\xb0\xca\x9c\x3e\xe9\x53\x23\xe2\xda\xfb\xac\x2a\x2b\xb6\xd6\x8d\x0a\x0b\x24\xaf\x03\x5b\x93\xfb\xac\x46\xce\x55\x47\x02\x43\x7f\x9a\xe1\x48\xf1\x19\x65\x3d\x52\x9c\x30\x40\x08\xfb\x0b\x13\x29\xfd\x1d\x96\xfb\x79\x82\x84\x9f\xaf\xca\x42\xa6\x83\x62\x39\x72\x2a\x56\xf0\xa2\x21\xcb\xac\xd7\x8d\xad\xd1\x8b\xa2\xbd\x30\xd0\x3f\x1f\x06\x9b\x73\x8e\xcb\x39\xd7\x69\x1f\xf6\x07\x49\x94\x77\x01\x8f\xf3\x75\x79\xb5\x8b\x7a\x53\x05\x9c\x1c\xf4\x3b\x99\x69\x23\x65\x82\xcd\x7d\xa3\x11\x36\xfa\x8d\xb1\x9d\x93\x47\xc5\xee\x72\xc1\x79\xfa\x03\xcf\xc1\x7d\x82\x11\x25\xca\x41\x8a\x65\x7c\x7a\x48\x3d\xb1\xbf\x2d\x2f\xa2\x3a\x42\x43\x3e\xda\x08\x2d\x7d\x49\x16\xbb\xab\xaa\x79\xda\x2c\x81\xb5\x0b\x81\x9c\xba\x26\x4e\xbd\x15\xb9\x4e\xae\x60\xea\xbc\xc1\x77\x7b\x8e\xfb\x20\x40\x87\x0c\x6f\xea\xbb\x2c\x8b\x69\xcd\xa0\x58\xdf\x41\xf8\x9e\x2b\xb2\xb5\xe0\xd5\x3d\x40\xf4\x88\x2f\x7f\x9b\x08\xf5\x41\x7f\x8b\x07\xb8\x8c\x17\x75\x18\xd5\x31\x2e\x5a\xa5\x78\xf7\x3e\xf2\xfc\xfc\x44\x5b\xec\x72\x54\x4e\x9f\xd4\x49\xf1\xdd\x33\xa3\xc0\x0f\xb2\xc1\xac\x69\x9f\x89\x65\x83\x05\xbc\x45\x1c\xe4\x51\xaf\x1f\x47\x2a\x23\x0a\x58\xb6\x76\x9f\xe8\x4d\x05\xfc\x66\x71\x5c\xca\x88\x74\xe5\x17\xdd\xcd\x04\xc0\x75\x76\xb6\xde\x8a\x4c\x8d\x1a\x5e\xf0\xf7\xae\xfb\x65\x8f\xfe\x7d\xfd\xc0\xbe\x83\x7b\x89\x4c\xec\x2c\xd2\xee\x18\xd1\x99\x51\x00\xc5\xee\x1a\x91\xb8\x98\x12\x14\x68\xff\x1e\x7c\x4c\xd7\x9c\x11\x42\xff\xa3\x44\xa0\x33\xdd\x64\x85\xbd\xd0\x90\x78\x11\xee\x06\x10\x23\x2a\xb6\x84\xbf\xfa\xfd\x46\x68\x4f\x7a\x57\xa6\x39\xc8\xd0\x84\xc5\xbe\x64\x62\x99\x0d\x64\xe5\x7f\x46\x83\xbe\xb3\x49\x30\xe5\x3b\x43\xe2\x9c\xbe\x4b\x4a\x72\xeb\x36\xd9\x11\x4a\x5a\x1b\xc3\x50\xf6\x52\x98\xb3\xd6\x0f\x1b\xe1\x98\xf9\x06\x55\xc3\x8f\x0d\x43\xdb\xd7\xc6\x84\x43\xf3\xea\xbe\xc5\xfa\x92\x4d\xec\x72\xe4\x0f\x19\x8c\xd2\xf9\x21\xb5\x17\x9f\x6f\x3c\x4b\x9d\x5c\x69\xde\xb7\x99\xa4\x12\xe6\xe7\x0f\x7a\x76\x6a\x49\x7b\xe8\xcd\x24\x72\x7f\xae\x9e\xa7\xab\x91\xf5\xda\x53\x30\xba\xf7\x31\x2f\x7a\x43\x19\x39\xa1\xa5\x8e\xf2\x56\x3a\x43\xa8\x1e\x74\x6a\x3a\x69\xd7\x31\xd3\x10\x56\x3b\xb0\x91\x2e\x23\xfe\x38\xcd\xc3\x5f\x78\xba\xfc\x38\x6a\x18\xdb\x46\x0c\x83\xd0\xd6\x27\x37\x76\xf2\xe2\x98\xe1\xbb\xa8\x82\x60\x09\x6f\x13\xd6\x77\xef\x93\x95\x3e\x2d\x8e\xa9\xbb\xc3\xa0\x36\xb0\x41\xcf\xb2\x13\x16\x03\x35\xd4\x23\x32\x0f\x48\x56\xbc\x8f\x58\x15\xee\x31\x58\x63\x00\x1a\xfa\x43\xe9\x48\x82\x97\xaa\x9e\x32\x70\xcc\xbf\x47\x98\x9d\x6b\xbc\x9a\x27\x21\x8d\x02\xea\x6b\xd9\x68\x55\x9b\x77\x1c\x7e\x56\xbe\xcd\x9f\xbe\x0c\xa0\xdd\x82\xac\x9d\xf3\xea\x0a\x15\x80\x2f\xb3\x34\xc8\x81\xd4\x39\xe8\x57\xbb\x7c\x19\x1c\x9f\x93\xf2\xfa\x38\x8c\xee\x56\x34\x6c\x2e\x96\x41\x4d\x94\x98\x71\xef\xfc\x03\xd6\xd1\xfd\x80\x8a\x06\xb3\xbf\xfe\x1b\x38\x1e\xbd\xfb\x12\x7a\xe3\x27\xda\x7d\x5e\x93\x02\x53\x56\x24\x36\xcb\xbb\x51\x5f\xf3\x76\x6e\xe5\x53\x63\xe2\x46\x10\x40\x31\x71\x94\x74\x6c\xa6\x10\x6f\x6f\x3a\xca\x49\x87\x83\xa5\x3c\xc0\x70\xf1\xae\x05\x30\x89\xed\x45\x89\xc9\x6a\xdc\x0e\x1e\xf2\xb5\x93\x1c\xc1\xb3\xb3\xf5\x9e\x2d\xba\x69\x3b\x8d\xd3\x0e\xea\x25\x0e\xbc\x11\xdc\x96\xf3\xde\xd9\x5a\xeb\x5a\x1b\x13\x35\x2c\x98\xd4\x1d\x02\xc8\x05\xf7\x51\xe2\x10\x4c\x33\xa1\x54\x03\xee\x26\x04\x47\x33\x80\x06\x22\x1c\x47\x7f\x85\x13\x82\x92\xd5\xe0\x3a\x68\xc2\xe1\x1f\xdb\x8e\xe4\xe2\xa3\x16\x8c\x81\x0f\xcb\xbd\x44\xfb\x85\x31\x26\xfb\x5e\xd4\xde\x45\x92\x8f\xdc\x20\xfb\x71\x63\x2b\x5b\x0f\x96\xc5\xf6\x51\x78\xaf\x07\x48\x90\x3a\x49\x31\xf9\x49\xc7\x79\x49\xe9\xdf\x49\x4a\xc1\xd9\xd9\x7a\x36\xc8\x4c\x3c\x55\x63\x0d\x41\x5f\xd8\x39\x3b\xae\x3d\x17\x62\xd8\x7e\x16\x25\x05\xea\xa4\x8b\x3a\x60\x97\x1b\xa1\x82\x89\x1a\x9a\x33\x04\xd4\x46\xb5\x12\x15\x45\x94\x77\x75\xd5\xe2\x7b\x8f\xf3\x8f\x1c\xa7\xc2\x65\x3e\xc8\xfa\x59\x94\xeb\x11\xea\xce\x3f\x3e\x18\x43\x28\xd5\x4d\xd3\x36\x82\x3d\xc7\x3c\x25\x8b\x0f\xdb\xf1\x16\x95\x91\x4e\x10\x2b\x2f\xf4\x4f\x6b\x01\xba\xff\x9e\xf8\x0f\x7a\x4d\x85\xac\xcc\x26\xe9\x9a\x00\x6a\xca\x61\x76\xa0\x58\x31\xd5\x7a\x43\x9b\x2d\xed\xe4\x42\xf7\x83\x40\xf3\xd9\x51\x38\x37\xd4\xed\x95\x1d\xf1\xf2\x97\x55\x6f\x80\x44\x76\x16\x43\xcb\xda\x7e\x87\x85\x52\x8c\x98\x23\x3e\x24\x1d\x24\x65\xc7\x77\xf4\x88\xd4\xf7\x57\xda\x16\x6d\x8a\x76\x26\x9f\x38\x5b\xa1\x17\xad\x92\x8a\xa4\x46\x78\x82\x0a\x92\x71\xd4\x2b\x4f\xb2\x9d\x78\x44\x44\x14\xef\x52\x00\x74\x77\x0c\x19\x20\xeb\x0d\x27\xee\x7b\xc3\x00\x8a\xf9\x8c\x89\xe6\xde\x65\xf5\x8a\xdb\x15\x8c\x58\x07\xeb\xb9\xb5\x3d\x64\xc2\x91\x8b\xdd\x89\xc4\x17\xf2\xbe\x17\x29\x1e\x52\xb0\x98\x17\x31\xf4\xa1\xe9\x1f\x56\x44\xf2\xcb\x51\xde\x52\xd7\x01\x3b\xef\x1e\x75\x72\xe9\xda\x53\x07\x54\x5e\x0a\xbe\xf9\x54\x33\x64\x72\x85\x98\xb8\x67\x93\x62\x67\x6d\xbf\x6a\x7e\xbf\xae\x38\x22\xa5\xf8\xc1\x1c\x80\x8b\x05\xcf\xae\xe7\xbe\x6f\x76\x09\x3d\x98\x67\xa5\x22\xb6\x79\x39\x64\x3a\x8b\xc2\x51\x81\xc1\x33\x83\xc0\x91\x5e\x4f\x00\x7e\x5e\xdd\xf7\x52\x5d\xa8\x43\x99\xba\x03\xf9\x73\x07\x56\xaf\xea\xa8\x1f\x64\x1d\xab\xd9\x32\x6a\x8b\xf1\x3d\x32\x8d\x20\xf7\xd0\x12\x8e\x9e\xa9\x2d\x3d\x94\x07\xf6\xe9\x32\xb9\x4d\x29\xe5\xc9\x14\xa2\x70\x09\x08\x8f\x1d\x82\x2b\x0c\xd7\xe2\xe6\x24\xe5\xdd\xc2\x42\x7d\x29\x13\xce\x7d\x77\x88\xb9\xba\x94\x0c\x69\x10\xe6\x77\xcb\x5a\x90\x06\xc2\xfb\x11\x0c\xd4\x9d\xc6\xb8\xa6\xef\xfc\x7c\x68\xe1\x58\x08\x5a\xdf\xb2\x44\x14\x99\x0a\x8f\xc7\xc3\x54\xcb\x59\x72\xda\xe9\x92\x23\xa1\x7f\xf1\xaa\xea\xb4\xbb\x0f\x9a\xde\x74\xed\x65\x57\x7a\x39\x4f\x49\x89\x4b\xd4\xd5\xa2\xa1\x38\x72\x0b\x33\x84\x52\x2c\x03\x6c\xf9\x27\x07\x02\x00\x16\x0b\x4b\xe3\x87\xd8\x30\xca\x12\x0d\x79\x1a\xfd\x17\xaa\xa5\x1c\x27\xe2\xa9\xd8\x28\xb5\x1f\x18\xf8\xb0\x00\xc6\x5a\x17\xae\x4f\x32\x6e\x1d\xd8\x07\xf2\x8a\xa9\x80\xb0\x7d\x40\x12\xce\x9a\x84\x75\xb4\x04\x5b\x53\x70\x2f\xcf\xd5\x57\x84\xc4\xe8\xd5\x7d\xde\x26\x13\xf1\xc0\x25\xa6\xfc\xcb\xd2\xb5\x5a\xa0\xfc\x47\x7e\x56\xaf\x99\x21\x2d\x8b\x7a\x76\x0f\x91\x28\x5e\x14\x34\xf5\xd8\x11\x84\xed\x0a\xb6\x5a\x4a\x1c\xbb\xd4\xd5\xe7\x28\x33\x2b\x81\x55\x23\x80\xb4\x7f\x2c\x9b\x1d\x51\xed\xbf\x21\x28\xc3\xf5\x06\xa5\x9c\x54\x3b\x55\x7f\x9c\x9d\xf4\xc1\x52\x5c\x8e\x6e\x96\x13\x67\xd3\x2f\x58\x08\xe0\x17\xe3\x82\x34\x83\xce\xce\xe0\x05\x4a\x15\xc0\x55\x42\xa6\x9b\x24\xcd\xcd\xcb\x66\xa6\x49\x32\xdd\x4a\x8d\xe1\x49\x02\x7c\xab\xf9\x45\x82\x5c\xd9\x36\xa8\x31\x90\x09\x3e\x8a\xc7\xd1\x9b\x09\x5f\x71\xff\x42\xbd\xc8\x06\xcb\xcb\x66\x50\x90\x90\xb6\xa2\x0f\xf5\x66\x2b\x6e\xe4\xc0\xbe\x32\xa0\x79\x46\x96\x01\x0e\xf4\xff\x5d\x7a\x2b\x1c\x3c\xbf\x34\x06\xf0\x15\x94\x8b\xca\x55\x40\xca\x31\xdd\x3c\x83\x85\xab\xfc\x54\x80\x3c\xa9\xb8\x9c\x4c\x06\xc6\x5c\xe1\xd4\x58\x7e\xd7\x44\x91\xd8\x13\x7d\xf9\x55\x72\x0d\xfb\x53\x46\xfa\x6f\xbe\x20\xb9\x02\x47\x55\x4a\xa7\xa2\xf2\x42\xc0\xba\xbf\x8b\x6c\x12\x7c\xe0\xeb\xa5\xaf\xb6\xf9\x31\x36\x36\xb2\x4d\x77\x03\x35\xb5\x6d\xdb\xcc\xc4\x3b\x42\xda\x63\x53\xc2\x55\xd7\x41\x11\x42\xda\x11\x69\x5c\xff\x64\x48\x39\x23\x45\x03\x23\x00\x78\x7c\x82\x91\xf6\xd5\x7d\x73\xf5\xa5\x48\xe3\x41\xd8\xa5\x6d\x82\x28\xd0\xeb\x11\xb1\xcb\xb6\xd3\x3e\xf8\xe3\x42\xad\x67\x83\xe4\x62\xaa\x42\xce\x97\x5c\x1f\x9c\x72\xda\xe1\x05\xdf\xa3\x6a\xf4\x7b\xbe\xcc\x35\xc8\x9c\x4e\x20\x8e\x50\xd0\x36\xea\xf5\x44\xfb\x06\x98\xac\xb3\xd2\x37\x77\x52\xaa\xdc\x7d\x89\x15\x7d\x9d\x6a\xb6\xd7\x19\x16\x7d\xbe\x42\x45\xbc\x0c\x58\x9c\xf0\x83\xb3\xf3\xe5\xa0\x3a\x33\xff\x4b\x8f\xa8\x10\x44\x49\x5e\x98\x38\x36\x1e\x48\x05\x90\xdf\x3b\xd8\x27\x7a\xc3\x35\xeb\x41\x3b\x4a\x01\xdf\xc3\x3c\x02\x15\x87\xc5\x78\x83\x9a\x5e\x7e\x30\x96\x5c\x58\xb7\xc5\x93\xf2\x21\xec\x88\xfb\xb2\xdc\x11\x84\x48\xb2\x69\x6e\x73\x7a\x44\x4c\x8d\x4f\x4b\x70\xe0\x84\x63\x49\x11\xea\xae\x6c\x59\xc7\x11\x12\xc8\x3f\x20\x38\x87\x10\x52\xc9\x9c\x3c\xe6\xbb\x34\x5c\x9a\x22\x81\xd3\x8a\xac\xc4\xd5\x06\x57\xbd\x09\x84\x78\x13\x31\xb3\xfe\x15\x63\xb2\xb3\xb4\xf7\x25\xf9\x6e\xac\x4e\x30\xf2\x21\x6c\x3e\x43\x0c\x40\xc7\x64\xb7\xc1\xfa\xdc\xc1\x4f\xc2\x09\xbd\xd2\xc0\x69\x84\xb3\xe9\xb6\x0c\x02\x72\x80\xdb\x21\x7b\x05\xb4\xdb\x85\x61\x19\x5d\x3b\x7e\x40\x2c\x0f\xd7\xd3\xba\xfd\xcb\xba\x4f\x3e\x1f\x8a\x15\xd0\xaf\x12\x93\xe1\x01\x81\x9e\x8a\xf8\x34\xe9\x95\x5f\x82\xa5\xc0\x4c\xbd\x2b\xdd\x86\x48\x09\xdf\xe6\x1c\xc5\x4c\x93\x12\xa8\x4a\x31\xe7\xb0\xc3\x32\x5e\xae\x81\x92\xa5\x36\xb0\xff\x3d\x87\xd2\x6f\xfc\x9a\xa2\x28\x8e\x8c\xad\x81\x6e\xbc\xbe\x27\xe4\xe2\x4f\x8e\x91\x88\x29\x1a\xc9\x65\x9e\x43\xf8\xfc\x19\x97\xeb\x6e\xca\x80\xfb\x6e\xa9\xf2\x71\xbc\x7a\xeb\x81\x7d\x5e\x00\x94\x32\xc9\x9b\x08\xcf\x90\xf3\xb8\xcc\xfd\x8c\xa5\xd3\x80\x69\x7d\xd3\x16\x8a\xdd\x54\xe4\x24\xbe\xd9\xc1\x28\x83\x83\xb4\x9c\xd9\xbc\x9b\x08\x95\x44\x68\x9d\xbb\xcb\xba\xe2\x77\xc7\x40\x1b\xda\xbe\xbd\x4e\xb2\xe9\x00\x3b\xeb\xf5\x23\xe1\xf8\x26\x8e\x0b\x1b\x4f\x95\x03\x89\x1a\xaa\xda\x41\x98\xaa\xfb\x0d\x66\x35\xda\xea\x7d\x08\xa3\x6b\x1e\xb5\xad\xb4\x42\xc3\x8b\xbe\x43\xb4\x35\x68\xef\x70\xdc\x7c\xce\x2b\xed\x99\x28\x29\x4c\x94\xa0\x7b\x06\x1b\x53\xc5\xbc\xf0\xb0\x27\xa8\x8c\x02\xd6\x03\xca\xaa\x38\x4a\xc2\x2f\x64\xe7\x6c\x5e\xf6\xd0\x2f\x1b\x69\x17\x03\xb0\xd9\xc7\x18\xa8\x7d\x8c\x04\x66\xda\x26\x99\x0a\x6c\x99\x7f\xe3\x81\xec\x6c\xd7\x0d\x3a\xd6\x5c\xe8\x33\x22\x36\x5b\x35\x89\xab\x30\xf8\xd8\x35\xc4\xb1\xcc\x2a\x9d\x26\x26\x6e\xe7\x6a\xe0\x54\x2d\x4f\xfe\xd6\x29\xe7\x55\x30\x78\x14\xf6\x70\x11\xc5\x00\xae\xe1\xcf\x00\x8d\x85\xc7\x8a\x11\xc5\x59\xf9\x23\x52\xa8\xbe\x38\x61\xea\xcb\x33\x6a\x90\xc4\xd1\x8a\xd5\x1e\x33\x24\x68\xc1\x29\xa3\xd7\xc4\x05\xbc\x9c\x66\x3d\xd7\x61\x86\x1c\xe0\xf7\xc7\x8a\xca\x17\xca\xb1\xdf\x3c\x43\x16\x79\x2d\xcd\xe2\xf6\x13\xa1\x60\xa2\x4c\x30\x78\x36\xd5\xbd\xc2\xbf\x6c\x13\x86\x7e\x1c\xa6\xd7\x87\x24\x92\xfe\x70\x58\xd1\x94\xa8\xf3\x0e\xe3\x80\x47\x01\x3c\xdb\xd7\xcf\xf6\xbb\x4d\xfa\xaf\xb0\x63\x1c\x73\x43\x80\x9e\xdf\x01\x05\x08\x7e\xfe\xde\x44\x88\x32\x3b\x5b\xef\xc4\x26\x4f\x52\x45\x11\xaa\xac\x8c\x90\xdb\x3b\x89\x99\xad\x47\xdd\xfc\x7c\xbd\x48\x0b\x15\x29\x45\x94\x04\xcc\xab\x5e\x8f\x02\x99\x45\xde\x4a\x91\x0d\x09\xdd\xb5\x6f\x0f\x29\x6c\x79\xbb\x11\x52\x15\xa6\xd5\x2a\x37\x76\xa8\x54\xbc\x43\xd2\x82\xef\x10\x46\xad\x9f\xe6\x79\xb4\x14\xc5\x51\x31\xde\x20\x3c\xa4\x06\x61\x6a\x5b\xea\x9b\x3c\xb7\xb9\x74\xf9\xfb\x1a\x5b\xf9\x29\x6f\xe9\xfc\x8a\xbd\x41\x99\x97\x1b\x7e\x07\x75\x4c\xbe\x54\x1b\xdb\x35\xa1\xef\xe1\x18\xa5\x5a\x96\xd2\xac\xad\x68\x38\x37\xf3\x61\x85\x5e\x22\xe7\xf6\xe0\xfe\x43\x1a\x7a\x7a\xde\x15\x5a\xd5\x44\x00\x3f\x49\xc9\x7d\x60\x1f\x78\x69\x84\xe7\x19\x6e\xf3\xef\x93\xa9\x3e\x41\xb2\x28\xbf\xf0\x96\xc5\x9a\x2c\x06\x15\x8e\xcf\x58\x5d\x01\x15\x0e\xb6\xf4\x43\x64\xe4\xb5\x6d\x84\xa0\x69\x42\x45\x82\x94\x13\x4c\xf1\x1f\x50\xf5\xfe\x18\x9e\xd4\x31\xdc\x87\x90\x28\x5f\x33\x7d\x56\x52\x84\x32\xba\x3f\x64\x83\x14\xd6\x05\x6c\x13\xbd\xa9\xea\xd7\x6a\x45\xab\x51\xec\x3a\x07\xf4\x40\x6c\x84\x0c\xc6\x29\x7a\xd6\x65\xd3\x4b\x07\xf9\x0e\x59\xec\x28\x16\x1e\xa5\x6c\xdd\xdf\xc7\xf6\x70\xba\xc0\x74\xd2\x63\xce\x71\x0c\x2b\x1d\xa7\xc2\xd0\x1a\x7b\xc9\xed\x30\x49\xab\x46\x14\x26\x3f\xa7\x3c\xca\xcf\x27\xaa\x5c\xf3\xf3\xf5\x76\xba\x96\x84\x2a\xa7\xca\xd9\x50\x6f\xd4\x87\x95\x69\x05\x91\x56\x71\x39\x47\x8c\xd8\x71\xe2\xd4\x01\x0d\x85\x93\x21\xac\x42\xb3\xb4\xd2\x38\x82\x3d\x46\xc5\x00\x99\x0c\xbd\xae\xae\xc5\x16\xb6\xd7\x4f\xc7\xd4\xe8\xb9\x1a\xfd\xa8\xf3\x31\xca\x56\x7d\x07\x3d\xa2\xd8\xff\x8d\x68\x7a\x95\x01\x4f\xab\x97\x15\x55\xc0\x83\xd2\x05\x11\xa7\xe9\x8a\x8c\xea\xe6\x3b\xf0\x40\xdf\xf1\x09\xeb\x6e\x94\x17\x69\x16\x19\x0f\xce\x71\xd9\x18\xa2\x50\x3a\x42\x39\x0b\x7b\x78\x9d\x80\x74\x1b\x63\xcc\x96\x15\xc5\xf1\x25\x93\xac\xf8\xe7\x47\x04\x74\x99\xb4\xfe\x90\x4d\xc5\xc2\xfc\x1c\x8c\x16\xae\x1e\x6d\x6b\xa5\x69\x44\xf5\xea\x76\x23\x90\x7d\xde\xa6\xd4\xe2\x92\x89\xe3\x34\x4d\xf4\xc9\x9d\x66\x2e\xb1\xd0\xbc\xdf\xd8\xf2\x9e\x2d\x13\x63\xd2\x11\x72\x23\xcd\x83\x33\xef\x26\x35\x8c\x7d\x52\xc5\x0d\x65\x5a\x6f\x0d\xa2\xcc\xb6\xa7\xc5\x05\x24\x4d\x4e\xd7\xde\x7d\x9d\xaa\xbf\xda\x78\x8e\xe2\xd2\xb9\x09\xd3\xfe\x95\x7a\x37\x6a\xb7\x6d\x32\xc5\xcd\x22\xf2\x55\x0e\xa6\x1c\x92\x28\x6c\xfb\xb2\x74\xa0\xf0\xe7\x45\x6e\xf5\x9a\xf3\xad\x5e\x55\xf9\xba\xb5\x34\x5b\xd1\xd2\x8b\xc3\xc5\x50\x67\xd6\x85\x46\xa0\xab\x32\x4b\x79\x1a\x0f\x0a\x1b\xaf\x0b\xe0\x07\xaf\xb2\x29\xbb\xc1\x71\xf2\x95\x0f\xec\xda\x40\xcb\x67\xd4\x23\xb2\x41\xb5\x5d\xd6\xf8\x7c\xd3\xb4\xd2\x25\xb7\xb6\x88\x9b\x7e\xd1\xdd\x6c\x4d\x18\xec\x5f\xa8\xbf\x36\x77\x68\x47\xf9\x93\x8c\x3e\xc1\x66\xfc\x71\x83\x86\xfb\x03\x19\x6e\x8d\x04\x60\x77\x50\xf3\xf8\x94\x3b\x50\x3e\x05\xbd\xa2\x3c\x4c\x1a\xc5\x4f\xd7\x3c\x5d\x87\x3a\x7d\x8e\x5e\xa9\xf4\x7e\x90\x36\xb8\x2e\xcb\x0d\xa7\xb2\xc6\x05\x18\x89\x69\xe4\x57\x50\x18\xbc\xcd\xa2\xd1\x37\xa8\xc5\xbc\xd6\x24\xc6\xfa\x13\x2c\x0f\x74\x6e\x2c\x10\x38\x85\xe0\x4b\xbf\x0d\xb9\x79\x38\x82\xdf\xa0\xb4\xc8\x55\x6a\x88\x3e\x39\x1c\x23\xd6\x2d\x17\x81\x36\x0a\x31\xb9\x62\xa4\xda\x18\x8e\xe9\xae\xfc\x2e\xd8\xe0\x7b\x2c\xcf\x7f\x9b\xa8\x0b\x50\xae\x75\x24\x37\x5b\xab\x78\xd2\xb3\x92\xc6\xc2\x87\x17\xba\xa1\x2a\x71\x34\xf4\x18\xc5\xfa\x9e\xc0\xc2\x7d\x81\x6b\x12\x43\x7e\xd7\x73\xdc\xa1\x76\x6a\x18\xb8\x6d\xef\xe9\x60\x79\xa6\x0a\x77\xde\x7f\x4f\xb9\xad\x31\x3e\x0a\x2c\xf2\x4b\xd2\x8b\x09\x4e\x01\xfc\x8e\x0d\x7d\x61\x62\x43\xbf\xf1\x46\x3d\x4a\x56\x4d\xee\x92\x01\xfe\x39\xcb\xa7\xd1\x9b\xc6\x9f\x7f\x84\x55\xa6\x2e\x19\xb1\x86\x58\x9d\x2a\x12\xa8\x37\xde\x7f\xef\x64\x83\x76\x60\xc9\xe4\xf2\x1d\x42\x89\xcd\x06\x03\x2e\x26\x2d\x45\x3b\x1d\x38\x62\x2c\x0f\x13\xf3\x6d\x39\xa7\x89\x74\xa2\xd5\xcd\xd2\xc4\x91\x87\xcf\xcf\x6b\xf9\xe0\x0d\x22\xad\x7e\x83\xb0\xa3\x71\x94\xb4\x6d\x02\x28\x15\x2c\xd0\x31\x4c\x92\xd6\xe3\x49\x6f\xe7\xf6\x18\xe4\xc5\x14\xf9\x13\xd4\xa2\x0d\xf5\x5d\x38\xd4\xf7\x24\xd6\x76\xb1\x1b\x91\xd9\x2b\x2b\x15\x9e\x02\xc9\x04\x4d\xc3\x36\x88\x3d\xee\xd8\x90\x7b\x67\x64\xb8\x9c\xd8\x80\x6c\x15\x04\x6b\xb7\xc6\xbb\x67\xca\xbd\xea\x0b\x94\xe5\xf6\x54\x05\xf9\x09\x53\x38\x3b\x27\xfd\xd9\x5a\xc5\x75\x1a\xd8\xa1\x59\x6b\x92\x98\x6c\xf1\x95\x83\xf5\xd2\xa9\xed\xb9\xc8\x16\x55\xf8\xed\x30\x1c\x7a\x33\xda\x7a\xec\x1d\xd8\x57\xcf\xfb\xd6\xac\xa8\x8f\x5a\xa5\xef\x14\x18\xeb\x7a\xa6\x1d\xe5\x69\xb2\xa3\xe6\x45\xf2\xc0\xf3\xa3\x5a\x36\x0d\x82\xe6\x82\x44\x19\x85\xb2\x6f\x51\x59\xef\x82\xa4\xb8\x31\xb4\x97\x09\x1c\xfd\xe2\x41\xd8\x7c\x04\x9a\xdb\x9a\xe2\xb2\xe9\xcd\xe8\x05\x7f\x88\xae\x0e\xe2\xc4\x66\xc6\xf9\xf9\xa1\xd2\x77\x81\xd5\x19\x2f\x8c\xe5\x37\x4c\xb6\x0c\x23\xe0\xfa\xda\x49\x20\xee\xd8\x23\x77\x8d\xe9\xf7\x4d\x6c\x5a\x5d\xe7\x68\xba\xde\x41\x92\x98\x3c\x3f\x81\x49\xfa\x8d\x5f\xab\xa7\x89\x8a\x60\xc1\xdf\xfc\x26\xf1\x99\x7e\xd3\x1f\xf0\xde\x11\x84\xc8\x06\x92\x45\xca\x89\xa0\x37\x8d\xad\x1d\x5e\x5e\x80\x60\x2b\x17\x3d\x0e\x95\x99\x11\x61\x2a\x76\x62\xd2\x91\x0e\xfb\xf1\x44\x0a\xf5\xd0\x2b\x2a\x60\x92\x45\x85\xa5\x3d\x05\x1c\xae\x17\x80\x0e\x8a\x0e\x84\xf8\x8e\x92\x56\xec\x38\x16\x3c\xb5\x56\x63\xac\x2e\x19\x22\xfc\x56\xd4\x31\x99\x50\xa7\xca\xfe\x70\x64\xa3\x35\xdf\x9c\x77\x89\xfc\xe9\xb5\xa8\x6d\xd1\x17\xee\x54\x15\xca\x65\xa3\xd7\x13\x54\x9a\x0b\x0b\xf5\xe5\xd4\x51\x55\x3a\xfa\xaf\x10\xcb\x4c\x7a\x31\x00\xf9\xa7\xca\xb7\xe8\xf1\x92\x9e\x09\x6d\x92\xca\x60\xee\x50\xbd\x9f\xc6\xeb\x7d\x4d\x66\x30\xf5\x75\x60\xa8\x76\xd6\xcc\xa4\x1e\xf4\x80\x47\xfe\x62\x18\xdc\xa5\x2f\xc6\xba\xd9\x7a\x45\x0f\x4b\x17\x98\x97\x7b\xcc\xd6\x7d\x6f\x22\xe2\x99\x3b\x54\x37\xed\x37\x07\xb9\x3f\xcb\xb4\x3f\x95\xb2\xd0\xef\x81\xc4\x73\x8c\x90\xad\x9d\x8a\x11\x46\x9e\x4a\xf1\x1a\x7a\xe3\xb1\x8c\x79\x01\x3e\x9e\xe0\x5f\xdd\x91\xb7\xd3\x6b\x72\x5e\x97\x05\xe6\xa2\xf2\x5f\x8e\x2b\x82\x92\x0b\x97\x24\xf7\x05\x23\x03\x96\x02\xaf\x7b\x47\xaa\x80\x8f\xa2\xb2\xef\x46\x59\x9a\x77\xa3\x9e\x99\x62\x9a\xd9\xa9\xd7\x0e\xec\xdb\xd4\x0c\x1b\x5c\xd3\x6b\x13\x83\x33\x3b\x57\x37\x51\xd6\xca\xcc\x72\x51\x23\x65\xdb\x8b\xd4\x33\x7b\x91\x5a\x71\x62\xdb\x89\xf2\xd8\x14\x69\xa6\x6e\xa9\x43\x8e\xd4\x3c\x57\x3f\x0b\x2e\xb4\xca\x7d\xd6\x32\xb1\x38\x78\x70\xbd\x6e\xa3\xe6\x87\xba\xc9\xc7\x70\x8a\x9c\xc8\xfd\x54\x10\x02\xfa\x98\x04\x67\x6e\x0f\xa9\xb6\xc1\xcc\x9b\xa6\x67\x85\xc1\x22\xaf\x85\x1e\xf2\x6b\x4c\x86\x10\xf0\x42\x4b\x69\x66\xdb\x69\xaf\x16\x22\x00\x50\x7d\x3b\x59\xde\xad\x86\xe8\xe5\xb9\xba\x69\xa1\xb7\xd2\xf7\xae\x92\xb6\x2b\x91\x80\x64\xe9\x8a\x75\xec\x3c\x88\xfc\x21\xf7\x3a\xe6\x11\x3a\xf6\x94\xf2\xfb\xe0\x31\x68\xfe\xd7\xe9\x2f\x50\x49\xf2\x61\x15\x8d\xe3\x52\x79\x80\xcb\x09\x03\x97\xe2\x21\x21\x82\x1e\x4e\x00\x95\xdf\x78\xa3\x2e\x53\xea\x56\xbc\x33\xb7\x6c\x87\x7d\x2a\x33\x69\xe7\x3b\x89\x7b\xf6\xa7\x0d\x2e\x0b\x0e\xd9\x44\x42\xfc\x0a\xa9\x97\x73\xe2\x9d\xe2\xe0\x42\x95\x1f\x27\xf9\x4d\x46\xcf\x3e\x68\x3c\xc3\xc8\x9f\xd5\x28\xb6\x1d\x3b\x45\x8a\xef\x7f\x04\x93\x0d\x03\x02\x91\x21\x37\xc4\x8f\xf9\x3e\x47\x65\x27\xf2\x1a\xbb\xa4\xef\xee\xfb\x48\xa2\x44\x0f\x60\x27\x0f\x5b\x3e\x91\x93\x8d\x0d\xf9\xd8\xdc\x14\x72\xf8\xc2\x0d\xbf\x2e\xe7\x2a\x52\x07\x60\xdd\x71\x6a\xd7\xb5\x03\x0e\x0d\x87\x8e\x1f\x2c\x27\x90\xe0\x39\x56\xdb\x0a\x48\x94\x34\xd3\x69\xf8\xe3\x84\xe1\x58\x25\x8e\x38\x36\x33\x9b\x97\xe6\xba\x05\x90\x37\x12\x94\x1b\x44\x2b\xbe\x41\x4f\x9d\x26\xf6\x79\xe2\xad\x7d\xbc\x49\x9a\x2e\xa8\xcf\x48\x45\x69\xf0\x5c\x93\xa4\x3f\x6a\xa3\x32\xa4\x46\xf0\xf1\xe1\xb0\xf6\xe2\x8b\x1e\x4b\x2a\xbb\x09\x19\x5a\x15\x84\x42\x87\x96\x36\x90\xa2\x90\xf2\x8c\xa0\x96\x5d\x67\x5c\xed\x8d\x37\xf4\xe3\xda\x54\x88\xd3\x47\xd9\xd1\x3c\x58\xea\x80\xa3\xc1\x3b\x2e\x2b\x02\xb5\xd8\xda\xa8\x74\x13\x3d\x2b\xe7\xdc\xa1\x40\x49\x5b\xfa\x28\x4e\x20\x57\x2c\x01\x5e\x70\xc7\x28\x58\xfe\xdd\xa3\x72\x8e\xe0\x4a\x3d\x20\xce\xb2\x24\x4a\xec\xb2\xd0\xa5\x1c\x70\x4e\xf8\x79\x4a\xe4\x4c\x36\x4c\xcf\xcf\xd7\xed\xe1\x96\xed\xab\xfa\xb5\x27\x65\xf7\xe5\xb1\x13\x94\xee\xbe\x4d\x3d\xce\xc5\xa0\xb7\x14\x2b\x96\xcc\x4b\xd7\x05\x19\x3b\x56\x67\xce\xbb\x69\x66\xa1\x8d\xec\x1c\xd6\x50\xe6\x7e\xe6\xa1\x44\x9a\x64\xfc\xe7\x7c\xa2\x7d\xa2\x8e\x7e\xa0\x3e\x3b\x37\x4d\x91\x02\x15\x0e\x60\x6c\x9d\x76\x1b\x0b\xb9\x91\x2f\x10\x9b\xac\x63\xb1\xad\xc7\x68\xa1\x90\x92\xd3\xaa\x14\x52\x72\x60\xf4\x43\x8a\xe4\x38\x45\xf9\xc2\xd4\x77\x60\xf3\x3c\x95\xe0\xfe\x49\x23\x34\x29\x27\xde\xba\x20\xce\xbb\x82\x37\xd2\x1b\xef\xa9\xd9\x56\x9a\xa4\xbd\x28\x77\x15\x0d\xb7\x73\xe5\x69\xdc\x96\xae\xe4\xc5\xec\x44\x79\x91\x85\xfa\x2d\xd2\xf6\x47\xa8\xce\x74\x84\xa1\x0d\x49\xfe\x44\x90\x1a\xdf\x3e\x62\x82\xf1\x67\x9a\x7e\x8b\x7c\xf3\xcf\x21\x55\x0a\x83\x73\x1f\xa5\x46\xe7\xfc\xc8\x56\xc0\xfc\xff\x92\x54\x14\x1c\x26\x31\x78\xc6\x3f\xf8\x72\x33\x70\xe4\x75\x9e\x19\x8d\xd1\xca\xc8\xbc\x73\x68\x8a\x7d\xb1\x6d\x14\xf8\xde\xef\x0c\x19\x1b\x58\xbe\xa1\xcd\x24\x2b\x84\x8d\x76\x6e\x2c\x4b\xc8\x08\xb3\x31\xb4\xc8\x61\x93\x0b\xe8\xd3\x89\x98\x96\xdf\xaf\xd7\x18\x57\xbc\xc4\x06\x91\x86\xdc\x1f\x86\xe2\xc5\x49\xcc\x14\x92\x09\x27\x71\xb8\xe2\xf7\x95\x28\x5f\xff\xa5\x41\x54\xdb\x36\x29\x06\xd9\x3a\x4e\x39\xf8\xb7\x5f\x90\x89\xfd\x84\x8d\xfe\xf7\x30\x5e\x28\x72\xa3\xbc\xe6\x19\x53\x7d\x4e\xfd\x03\xbf\x92\x6c\xd1\x8d\x5a\xce\x15\xa7\x2c\x81\x73\xc5\x51\x33\x73\xb4\x0d\x15\xca\x16\x59\xba\x34\xc8\x0b\xc1\xe9\xc1\xcc\xde\x96\x63\x16\xee\xe0\x51\x6c\x40\xa7\xae\x50\x7e\x15\x12\x1f\x7f\x50\xd5\xaf\xdd\x1e\x68\xc1\xd4\xe3\x8e\x7c\xa3\x17\x4b\x88\x2e\xc7\xb6\x68\x75\xd1\x55\xe7\x86\xe3\x94\xd6\xb3\xf5\x6e\xe2\x74\x38\xf4\x4a\x7d\x39\x6d\x0d\xe0\xaa\xe0\xa4\x45\x2a\x40\xaf\xc7\x22\xae\xb8\xdd\x97\xcd\x4f\xba\x4d\x4e\x34\x16\xe7\x94\xe6\xc4\x38\xe0\x39\x31\x31\x36\x87\x5e\xa9\xaf\x9a\xd6\x60\x80\xae\x47\x47\xd1\x12\x62\xcf\x73\x5b\x05\xa4\x40\xfb\xf2\x12\xa5\x13\x16\x29\x9d\xb0\x48\xb5\xb9\x96\xc9\x62\xa3\x07\x1d\xf2\x96\x57\xb1\x5c\xf5\xc6\xeb\x89\xb7\x4c\x32\x43\x35\xbf\x5d\xa3\xda\xcb\x5a\x54\xdd\xf9\x02\x4e\x12\xd2\x09\x7a\x3d\x50\x88\xf9\x94\xc7\xf1\x2d\xca\x6a\x4b\x69\xa2\xec\xcd\x38\x2b\x4e\x8d\xa3\xe7\x03\xfc\x99\xb9\xc7\x44\xf6\x56\x3b\x5a\xb1\x14\x36\x1b\xa4\x72\x74\x01\x03\xec\xd8\x0b\x2b\x50\xf7\xbd\xf5\xdc\xc6\xcb\x72\xd6\xb8\x95\x28\xa6\x43\x6f\x2a\xf9\x84\xd0\x0d\xe8\x53\x41\x48\x68\x1f\xa3\xa3\xe3\x13\x99\x0b\xe7\x70\x3f\x45\x5d\x9b\xc9\x8a\xab\x10\xb9\x6c\x3b\x75\xdc\xfe\xf1\x30\x34\x06\x5d\x9e\x60\x25\x77\x21\x41\x3f\x6d\xad\x84\x76\x0f\x9c\x76\xea\x8c\xea\x8d\xf7\x8d\x57\x12\xd1\xea\x41\x88\xe9\x4b\x52\xa1\x3c\x55\xd5\xee\xfd\xe6\xa0\xdd\xe9\x59\x6d\x87\xd2\x2e\x42\x79\x1d\xd7\x51\x18\x08\x26\x57\xad\x89\x75\xec\x91\xdf\x99\x6e\x8e\xa5\x1a\x08\x90\x73\x77\x2c\xf5\x14\x9b\xd6\x14\x71\xb8\xe2\x6c\x42\x88\xf4\x09\xc3\xd0\x2e\x4f\x74\xfb\xee\x5f\xa8\xe7\xa9\x72\x85\xc1\x5d\x3b\x2e\x0f\xa7\xd7\x15\x38\x57\xaf\xa5\x51\x3e\x99\xab\x13\x86\x8f\x9f\xa6\xbc\x72\x37\xea\x3d\x45\x15\x1a\x65\x24\xf1\xb8\xb1\x05\x57\xa1\xd3\x16\x15\xbf\x5e\x82\x88\xc2\x76\xb4\x05\xa0\x9b\xe4\xff\x10\x67\x93\xce\x10\x57\xc8\x7b\xaa\x59\x7a\xd8\x15\x3a\x8e\xc0\xd1\xc1\xcb\xd3\x66\x35\xac\x8c\xed\xcd\xc0\x8b\x89\xc5\x85\xa9\x9e\x96\x13\x08\x4f\x75\x4d\x3c\x30\xfd\x56\x12\x48\xe8\x45\xed\x04\x35\xd0\xd9\x59\x0f\x65\x0d\x9b\xff\x7e\x23\xc8\xdb\x5f\x9c\x88\x96\x5f\xdd\x57\x47\xe8\xa9\xf2\x15\x44\x85\x70\xa4\x41\xf1\xe7\xfb\x44\xe5\xbd\x9c\xc6\x71\xba\x66\xdb\x02\xca\xf5\xfa\xb2\x7f\xfd\x35\x9f\x98\x2e\x5d\x56\x46\x3e\xab\x6d\xf9\x50\x96\x3f\x0e\x0a\x45\x17\x39\xcd\x21\xf1\x27\xf5\x23\x0d\x92\xcb\xda\x2e\xa7\xb9\x7e\x3c\xf4\x78\x98\x2c\x51\xb0\x3b\xe2\xcc\x29\xee\x07\x86\x06\xdf\x26\x9c\xc2\x50\xc4\xf5\xa1\x67\x92\x98\x41\x1b\x59\x08\x87\x66\xc7\x56\xd3\xbb\xb1\x95\x9c\x65\x66\x9a\xdb\x0f\x64\x2d\x60\x6b\x6f\x1b\x85\x02\x9b\x36\xc9\x3b\xd0\x47\x95\x56\x48\x5f\x34\x95\x6b\x21\x16\xbd\x22\x63\xad\xd7\x54\x9f\x4f\xa2\x3c\x37\xc9\xce\xb0\xea\xd1\x1b\x80\xd9\xfc\x27\x43\x46\x3f\x93\x4f\xae\x24\x29\xee\x13\xe3\xfd\x20\xe5\x1c\xa8\xab\x5f\x51\x26\xad\xf7\xb3\x74\x49\x15\x17\x3c\x7a\xda\x13\x92\x5f\x9a\xc8\x3c\x48\xe3\xfb\x5b\x83\xb4\x30\x63\xdd\xb4\xe0\x28\x76\x20\x69\x8f\x8a\x69\xa5\x45\x6c\x92\x76\x8d\x0e\x99\x8b\x54\x35\xbb\xe8\x41\xf1\x4b\x83\xcc\x9a\x01\xa1\xf6\xcf\x8e\x77\x35\x92\x7a\x04\x9c\x7f\xed\x96\xa8\xa2\xa8\x5b\x56\xfa\x97\x5a\xc0\x25\x7d\x9b\xa4\x3c\xbe\x5d\xba\xed\x38\x61\xa2\x96\x88\x7e\xbd\x35\x70\x60\x18\x0f\x55\xf4\x64\x01\x97\xa8\xcb\x47\x74\xf7\xd4\xb5\x0d\xa9\x9e\x46\x28\x95\x5e\xa2\xe8\x6f\x59\x75\x18\xf0\xa0\xd7\x08\x45\x8f\x6e\x65\x78\x1c\x1f\x06\xf5\x8b\xe5\x65\x9b\xe4\x8e\x56\x19\x51\xd4\x6d\x24\x18\x3c\xa9\xac\x0f\x7a\x8e\x78\x43\x9d\xa7\xad\xc8\x16\xeb\x3b\x42\xc7\xcb\xfd\xe1\xa4\x9d\x46\xbe\xac\xd6\xe4\x2e\x42\x8c\x23\xce\xb7\x5a\x93\x78\x35\xe4\x2d\x7c\xa7\x75\x9f\x11\xdd\xd4\xd0\xf2\xdf\x9d\xae\x94\x39\x6f\x67\x76\xad\x16\xd8\x36\xde\x19\x52\xda\xe0\x9d\x0a\xa0\xe8\x4b\xf5\x41\xbe\x85\x1b\x7b\xc8\xdc\xd8\xd4\x84\xd4\xb3\x31\x20\xb3\x5c\x32\x0a\xf5\xe0\x0b\x44\xf3\xf4\xa6\x5d\xb3\xb1\xe7\xe7\x70\x0e\xb7\x0c\x85\xf3\xb8\xd9\x71\x2b\xa2\xd6\x5e\x79\x4e\x8f\x46\x7c\x75\x9f\x8f\x72\x30\x66\x18\x27\x64\x8a\xe1\x07\xdc\xe2\xde\xb8\xdd\xe8\x49\x85\x73\x73\x9f\x69\xf7\xb6\x83\x1b\x06\x21\xe3\x94\x98\x74\xc5\xdd\x37\x88\xd4\xee\x8a\x14\x65\xe0\x08\x2b\x60\xd4\xd7\x3c\x0f\xb8\x9a\xd2\xfb\xb4\xd4\x76\x36\xb7\x16\x42\xca\xd3\xb3\x6f\x3a\x5d\x5b\x14\xd1\x14\x51\x36\xdc\x21\xf9\x6f\x90\x2a\x38\xb8\xf9\x56\xf7\xe7\xe5\xb9\xfa\x6a\xd4\x49\xb3\x74\x90\x2b\x39\x61\xd0\x10\xf5\xd7\x15\x02\xd1\x0b\xf5\x74\xa9\x20\x06\x62\x9c\x71\xc8\x05\xea\xb5\xa7\x38\x6f\xdb\xc2\x66\x91\xd4\x28\x65\x13\xa1\x5c\x74\x7c\x48\x40\xbf\xe3\x13\x8e\xc1\xe2\x81\xc5\x7a\x91\xda\x5a\xed\x37\x7e\xad\x52\x52\xa4\x02\xcb\x91\xd9\x5e\x9a\xe5\xdc\x57\x0f\xc0\x88\x2b\x21\x56\x35\x24\xf5\xd2\xcc\x02\x90\x8d\xe4\xd2\x6d\x64\x37\xf4\x86\x14\xa3\xf2\xc1\x52\x2f\x2a\xc2\x62\xc4\xe2\x38\x45\xc2\xde\xa7\x28\xee\x28\xcc\x8a\xe9\xa5\x59\x54\x0b\xe0\x1a\x45\x1e\xea\xcd\xd8\x5a\x8c\xda\x66\x5a\xd6\x12\x93\xa9\x2b\x12\xbf\x41\x76\xf4\xff\xd5\x85\xe9\xf4\x0c\x2b\xd5\x18\x4b\xa3\x62\x6b\x5c\x77\x08\xab\xe9\x12\x9d\x8b\xcb\x66\x10\x6b\x0c\xa5\x8a\x8a\xfc\x53\xa7\xa8\xd9\x2c\x6f\x75\xd3\x34\xde\x43\x2c\x33\x2a\x7b\xeb\x38\x29\x49\x20\x4e\x45\x4a\x3c\x0c\xba\x1c\x59\x2f\x6e\xf5\xb5\xdf\x0c\x5c\x25\xe5\xa2\xd1\xbf\x92\x07\x74\x1a\x2d\x81\x81\xe2\x0e\x79\x91\xdf\x15\x7f\xc3\xf5\x5d\x05\x3c\x74\x62\x8d\x66\xc3\x1d\xde\xa1\x46\xf4\x1a\x15\x60\x11\x9b\x2d\x99\x5e\x9a\x00\x0b\xe6\x49\x83\x7d\x2f\x89\x16\xbd\xe0\xe9\xdf\x1f\x0b\xe5\xe3\xa2\xbb\x37\x50\x82\x5c\x92\xcd\x3b\x26\x52\xe2\x68\xa7\x03\x0f\xf8\x7d\xe6\xa9\x52\x60\x80\xd3\xd1\x0b\x38\xc8\x2f\x88\x00\x4e\xe1\xe1\x5c\x5d\xc0\x20\xbf\x87\x41\xc6\x8f\xdf\x6a\x10\xf7\xd4\x03\x51\xfe\x75\x89\xba\x40\x60\xa0\xac\x76\xe3\x5b\xa4\x6d\x81\xeb\xf4\xb4\x55\x7f\xfd\x35\xf5\xa2\x6e\x91\x66\xd6\x67\x2c\x65\xad\xc2\xe1\x8c\xac\x74\x6c\x2d\x5b\x53\xf1\xfb\x17\xea\x71\xba\x56\x63\x8c\x5c\xf9\xe7\x7a\x4d\x10\xb9\xb6\xb5\xfd\x99\x10\x83\x1c\xc3\x59\xef\x04\xf4\x64\xd0\x7c\xbe\xda\x07\x61\x47\xe1\x0a\xe9\x3f\x4c\x12\xa1\x1e\xac\x1f\xd8\x47\xc4\x98\xb7\x88\x18\xf3\x16\x25\x73\xde\x1a\xd8\xbc\x3c\xcf\x77\x05\xd3\xa0\x84\x02\x18\xf5\x2b\x0d\x82\x1a\xfc\x6c\x38\xa6\x68\x85\x64\x1c\xa2\x4f\x70\x76\x23\x9f\x77\x99\xec\xed\x2e\x70\xa5\xb8\x26\x96\xad\x93\xf0\xab\xf5\xd8\x16\xd3\xd4\x5f\x78\x96\x9a\x1b\xbf\xc0\xd1\x09\xeb\xa3\xe5\x6c\xd7\x1c\x14\x7c\x92\x8e\x50\xa5\x47\x49\x07\x20\x01\x84\x00\x78\x5d\x7f\xcc\x93\x99\xdd\x1a\x77\x1e\xd8\x57\xcf\xac\x80\x97\x85\x4a\xae\x46\xc9\x34\x3d\x87\xf5\xa6\xb2\x83\xb3\x67\x56\xec\x8c\x0c\x83\x97\xe6\xf4\x4c\x43\x9f\x33\xf7\xd8\x3f\x95\xf7\x42\xef\xe1\xe6\x90\x08\xc4\xf7\x34\x79\x5b\x0d\xb2\xf5\x3d\x65\x58\xe5\x3e\x44\x0a\x74\x27\x61\x25\x9c\xce\x82\x7c\x37\x10\xe4\xbb\xa4\x5e\xaa\x1f\xc1\xe2\xc1\x1a\x79\x20\x3f\xea\x20\x86\xe5\x88\xa0\xb0\xfe\x98\xa4\xd8\x9d\x7f\x54\x6e\x5d\x14\xc5\x9f\x18\x79\xd4\xf2\xdf\xfc\xb3\xcd\xe0\x77\x74\x4c\x1c\x0b\xb9\xd1\x7e\x52\xf8\x3d\x10\x20\xef\x93\x68\x90\x56\x94\xb5\x1c\x67\x24\x56\xcb\x09\xa2\xe7\x39\x31\x66\xef\xbb\x03\x14\x88\xbc\x2d\xd8\xef\xaf\xe9\xc4\xc9\x6c\xdf\x9a\xc2\xb6\xe3\xf5\xdd\xf2\xad\x48\xfd\x5f\x19\x52\xf0\x7f\xa1\x41\xac\x2b\xa7\xb8\x42\xf3\x58\x93\x72\x9c\xef\xc1\x5e\xa8\xe6\xa5\x78\x3a\xbe\x37\x98\xc4\x8d\xcb\xa1\xc0\xf5\x8e\xd1\x5e\x22\x0e\x35\x1d\x74\xcd\x23\xa2\xb8\xd1\x08\xed\x76\x30\xd7\xf0\x0d\x8f\x23\xf4\xd3\x7f\x68\x10\x45\x3f\x53\xa7\xf7\x4c\x76\x58\x1a\xb2\x3d\x89\xd2\x0d\xf2\x76\x6e\x54\x78\x8b\x73\xf5\x22\x72\x5e\x86\x92\x58\x10\x5d\xfb\xe9\x89\xe5\xed\x2b\xad\x26\x5b\x35\x19\x06\xda\x4d\x08\x01\xcb\x4e\x4c\x14\x12\xa5\x3f\x39\x9d\x0e\xed\xe1\x57\x1b\xd4\x25\xf9\xe9\x18\xd9\x4d\xf9\xc8\xc8\x75\xbc\xdd\x78\x9e\xf0\xc2\x49\x6e\xdf\x1a\x58\xc8\x22\x06\xde\x88\x0f\xb1\xaa\xf5\x06\x74\x2d\xea\xc9\x3f\x57\x0e\x84\x2f\x20\x3b\x75\xd9\x9f\x3c\xdb\x24\x26\xd5\xa3\xb4\x90\x36\xd1\x92\xee\x3a\xc6\x48\xb7\xec\xf1\x51\x38\x9d\x6e\xc9\xf1\x82\x2a\xaf\xd8\x23\xff\x09\x6c\x29\xaf\x8b\x5a\x4e\x12\x0c\xea\x8d\x46\x50\x64\xbb\x4e\x95\xb4\xbd\xcd\x72\xe7\x68\xc5\x10\xcb\xcd\x27\x3a\xca\xf9\xf6\xb5\xbe\xaf\xfd\x66\x98\x9e\xd7\x48\xe2\xa2\x5c\xad\xce\x61\xa1\x4e\xea\xda\x88\xad\x40\xab\x1b\x81\x75\xd1\xd1\xa3\xd7\x98\xfd\xdf\xef\xf5\xdb\x58\xc8\xae\x9e\x53\xbe\xa4\xfe\x83\x9c\x64\xae\x4b\x28\x48\xb0\xad\x45\xea\x0f\x2a\x75\x55\x83\x34\x6b\x3e\x23\xa8\x47\x12\xb5\x84\x52\x98\x05\xff\xbe\x43\xca\x9c\x9a\x77\x44\x92\xe6\xb2\xcf\x88\xf7\xa2\x2c\x4b\x41\x6d\x81\xfd\xfb\xbd\x46\xc0\x68\x7c\x6f\x2c\xb1\x10\xa5\xc9\xbf\x47\x28\x82\x6f\x4b\x51\x16\x59\xfe\x5b\x9a\x8f\xc0\x9e\xde\x29\xdc\x29\xd8\xec\xdb\x51\x26\x04\xa6\x66\xd7\x48\x06\x1c\x2f\x7c\x77\x58\x0e\xb2\x73\x8c\x25\xc3\x89\xaa\xdf\x75\x2c\x10\xa2\x1c\x70\xad\x36\x77\xf1\xf2\x0e\x7b\x5e\x8e\x2a\x46\xfb\xbf\x96\x72\xa0\x8b\x16\x24\x35\x23\x56\xf6\x57\x9e\x6e\x7a\x62\x83\xdf\xfd\xd3\xa3\xa9\xd7\xbc\x3c\xd1\x19\x4c\xab\xf2\x01\xc8\x62\x93\x31\xdb\x78\xbe\x29\x8b\x0d\x93\x3f\xd3\x0c\x2c\x34\xdf\x1a\x96\x5e\x0a\xfe\xff\xa7\x58\x77\x58\xdc\xca\xdd\x02\x1b\x82\x14\x0b\xcc\xf4\x8e\x66\xa8\xfa\x6b\xab\x88\x0f\xc2\x02\xc5\xfe\x97\x46\xe8\x67\x83\xff\x73\x59\xdc\x44\xd8\xa9\x93\x44\x20\x9a\x17\x83\xf6\xfa\x74\xf9\x6f\xd8\xb4\x37\x48\x1b\x02\x24\x1b\x8a\x2f\xc6\x10\x69\x7b\x5b\x45\xd8\x33\x57\xef\xa5\x3d\x9b\x14\x83\x9e\xac\x2a\x9c\xe0\x27\x65\xd2\xf5\x9a\x16\x55\x66\x97\x07\x1d\x6b\x73\x91\x81\xc3\x99\xaa\x09\x55\x4a\x66\x3b\xfa\x62\xa8\x6a\x62\x42\xae\x56\x68\xc7\xbe\x54\x5f\xb3\x76\x25\x5e\x9f\x22\x30\xc7\x39\xb1\x43\x38\x55\xaf\x91\x8e\xdc\x47\x54\xe9\x5c\xce\xac\x59\xc9\x6b\x0c\x09\x66\x17\xd9\x73\xa4\x02\x41\x1d\x98\x6b\x11\x36\x62\x58\xb7\xcb\x54\xe0\xe8\x3d\x33\x0c\xcb\xf3\x28\x11\x18\xf6\xb3\xb4\x6f\xe3\xd8\xb6\xb5\x3e\x84\x18\xf9\x3e\x53\xf9\xfe\x36\x13\x09\xde\xf3\x19\x23\xd1\xca\x12\x99\x28\x5f\xdc\x44\xfc\x0a\x7a\x84\xa3\x38\xf0\x30\x59\x93\x1c\x03\x1e\x2b\x56\x06\x5b\xc4\x6d\x48\x68\xf3\xd3\x15\xec\x3c\x8b\xf5\xa2\x1b\x25\x2b\xd3\xe5\xcb\x20\x3d\x80\x56\x6c\x38\xee\xda\xb3\x87\xf2\x84\x22\x1f\xdc\x01\x5d\x05\x26\x48\x0b\xe5\x57\x41\x0e\xe7\x7e\x83\x25\x3f\x6a\x9e\xbf\xf8\x2c\x11\xba\x8f\xc9\x71\xa9\xdf\x50\x45\x21\x53\x41\x8a\xda\x4d\xfb\x5a\xba\xa6\x12\xed\xc1\x50\x91\xf1\xf0\x61\xed\xda\x77\x26\x3a\x44\x74\x6b\x26\x4b\x6c\x26\x6d\xd1\x30\x07\x3f\xc1\xb9\xe0\xe5\xa2\x48\x1b\x45\x9e\x06\xc3\xf2\xf3\x21\xe9\xa1\x34\x88\xb7\xfe\x0c\xf1\x15\x08\x22\xb9\xb0\x8e\x71\x46\xfb\xf5\x87\xa1\x61\x67\x83\x94\x14\x26\x31\x60\x0b\x0b\xf5\x4e\x16\x41\xcd\x44\x26\x1e\x4b\xf0\x8b\x46\x58\x8e\x5f\x30\xec\x2e\x4b\xf3\x5c\xf2\x8d\xa1\x13\xf7\xe7\x78\x34\xbd\xa1\x58\xa6\x35\xe8\xcb\x46\xa8\xfa\xca\xbd\xd4\xa7\x6d\x1c\xf4\xc0\x49\x02\x05\x0b\x71\x92\xe9\x6b\xef\x34\x82\xf2\xab\x8d\xa3\x1a\x51\xe5\x7c\x30\x26\xb1\x4f\xe8\x5e\x93\x17\x16\x5d\xd2\x8b\x9e\x11\xb7\xb6\x10\x94\x9d\x83\x73\xb0\xae\x49\x01\x6c\x9e\xdf\x27\xc4\x1f\x96\x2a\x22\x0c\x25\xca\x73\x55\x89\x50\x9b\xea\xa4\x71\xbb\xa7\x88\x4e\x57\x9b\x0a\x4a\xaf\x1b\xd4\xfa\x28\x94\xf3\xcc\x32\x3f\xc6\x3f\xef\xea\x83\x5d\x9b\xed\x0d\xbb\x72\xfb\x48\x8c\x30\xaa\x24\x9b\xc3\x31\x3e\x0f\x62\xa8\xba\x29\xf3\xae\xd4\x97\x82\x53\x41\x82\xfe\xa1\x9c\xdd\x88\xff\x6b\xa3\x60\xb9\x9e\x40\xf0\x84\xdf\xb8\x23\xb8\x38\x8f\xa6\x85\xa1\xc7\xe1\xf0\x1f\x35\xcb\x23\xcb\x69\xef\x94\x47\xa9\x87\x06\x94\x47\xa1\x78\x28\xad\x3f\xdf\x7c\x94\xb1\xc8\x34\x9d\xeb\x89\x5c\x02\x4a\x67\xb2\xb3\x7d\x7e\xbe\xbe\x94\x26\xed\xbc\x46\xf8\xa0\x13\xd8\x72\x7a\xf3\x48\x1f\x74\x29\x4b\xa3\xd8\x66\x2c\xa4\xa6\xdd\xd8\x38\xca\x4e\x52\xcf\xcd\xf6\xe6\x5e\x92\xd4\x3a\x5c\xa8\x07\x89\xf1\xfa\x91\xec\x42\xbd\x0e\xd4\x5a\x83\x08\x9a\x92\x5e\x82\xf3\x44\x23\x14\x9c\x4e\x0c\x9f\xa7\xa3\x48\x68\xce\x84\xed\x4b\x76\x8a\x92\x7c\x0e\xa9\xbc\xc5\x00\xd5\x37\xd3\xc4\xe6\x62\x1f\x5c\x01\x5a\x2c\x09\xfc\xe2\x8b\x08\xc4\x1d\x09\x24\x85\x8c\xf7\x19\xd4\x80\x26\x61\xc7\x83\x59\xa1\x0f\xdf\x33\xeb\x4b\x28\x90\x38\x18\x43\x30\x0c\x27\x69\xdb\xee\x7f\xf5\x6b\x33\xc1\x94\xd4\x38\x2c\xbe\xae\xab\xc2\x83\x1b\x67\xe7\xdc\xf1\xdf\xa0\x16\xbc\xd3\x13\x10\x82\xd9\xd9\x7a\x6a\x5c\xa1\xd9\x7b\xd3\x5b\x95\xa4\x70\xb4\xde\xa3\x84\x74\x57\x6c\xf6\xfa\x34\xa5\xd8\xb5\x45\x04\x59\x97\xcb\x9a\x30\x80\xdb\xb8\xab\x49\xb9\xc2\x63\x84\x87\xec\xdb\xac\x67\x12\x9b\x14\xb0\x71\x55\x55\x98\xc0\x56\xdb\xb6\x99\xed\x0c\x62\x69\xf1\x08\x5b\x05\x54\x2b\x0e\xee\xf6\xdc\xa4\xf2\xea\x81\x7d\xcf\x97\x9b\xc4\x31\x97\x95\x9b\x44\x3b\xd5\x60\xdf\xdd\x69\x23\x3b\x46\x41\x56\x08\xdb\xf0\x2a\xd7\xc5\xca\xc0\x5c\xfc\x9e\xbe\x16\x98\x06\x98\x7d\x45\x48\x13\x5e\xd2\x33\x66\x4a\xca\x77\x8e\xff\xb1\xb6\xb0\xb0\x79\x1e\x8d\xf9\xa8\x4c\x9d\x43\xd7\xa5\xab\xd1\x89\x05\xd1\xdf\x92\xa0\x12\x85\x0e\x25\x48\x81\x61\xfe\x10\x47\x18\x12\x6d\x0f\x70\x12\xa3\xa4\xb2\x47\x9c\x53\x18\x47\x6d\xab\x77\xfa\x52\x32\x1f\x48\xe0\xfc\xc1\x78\x9d\xba\x2f\x00\x4a\x67\x79\x37\x65\x85\x7a\x27\xba\x7c\x0f\xe4\xcf\xaf\x91\x49\xde\xde\x94\xd1\xf2\x49\xcc\xf9\x79\xf7\x69\x31\xa7\xfa\xff\x27\xd6\xf7\xdc\xa1\x7a\xd4\xb6\xae\x62\xe6\x41\x43\x01\x40\xe4\xfd\x9f\x2c\x8d\xe3\x25\xa1\x87\xf2\xe8\xad\x33\x54\xf7\x39\x13\xb6\x7b\xdf\x24\x51\xde\x9d\x0a\x09\x97\xc7\x9a\x01\x62\xf9\xd1\x90\xd8\x71\x77\x8e\xdc\xb7\x2f\xa7\x69\xd1\x4d\x63\xa8\x2d\x39\x5a\x69\x2a\xfd\xbd\x4d\xb8\xf0\xcb\x13\x59\xf5\xd9\xd9\xfa\x52\x16\xf9\x0e\x66\xb8\x80\x37\x39\x15\x73\x73\xc2\xb9\xda\xbf\x50\xcf\x06\xb1\x3f\xbf\xb1\x03\xbf\x47\xe5\xf6\xef\xf9\x4a\x56\x7f\x10\x87\x3f\xac\x62\x7f\x0b\x69\xbb\x65\x93\x17\x4b\x26\x8e\x6b\xd8\xf0\x55\x85\x38\xa2\x5a\xc9\x32\x48\xf9\xd4\xbc\x40\xe4\x03\xa2\x33\x7b\x30\x8e\x51\x5f\x4a\x6b\xac\x14\xd6\x08\x6e\xe4\x25\x4a\x35\x9b\xcc\x2c\xe1\x41\xe1\x16\x9e\x21\xa2\xa2\x33\x9e\x4c\xb8\x67\x4d\xb2\xd6\x8d\x62\xbb\xab\x5c\x1c\x8e\x35\x57\xbe\x5e\x45\xa7\x19\xe5\xed\x2a\x4d\x8e\xdb\xbc\xe6\x9b\x6a\x77\x8f\xca\xfd\x0a\x74\xfa\x2d\x31\x6b\xf8\xa5\xff\x73\xe8\xad\xf7\xdf\xad\x37\x03\x15\x81\x2d\xdd\xd9\x4e\x2d\x40\xb1\x91\xda\x71\x89\x0f\x37\xe0\xa5\x63\x65\x12\x23\x7f\x87\x86\x6b\xe5\x16\xd2\x1b\x46\x84\xa7\xbd\x7e\x24\xe4\xcc\xfb\x03\x15\x57\x00\x92\xdd\xd9\x0a\x49\x5a\x58\x38\x58\x7f\x75\xdf\xeb\x8f\x95\x36\xc7\xeb\xc9\xf9\xea\xc7\x26\x2c\x8b\x2f\x83\x6d\x25\x4b\xd3\x7f\x01\xb9\x0a\x02\xe1\xb3\x43\x22\x3a\xb9\x49\x9d\xdd\x3f\x90\x8d\xa7\x7f\xc4\x19\xb0\x2f\x2a\xd2\x47\xf5\xe5\x6c\x10\x31\x17\xf0\x3b\xf2\x12\xae\xab\xbe\x02\x41\xd4\x32\x59\xcf\x26\xbc\x24\xb6\xf4\xae\x3e\xef\xd0\x38\x36\x8e\xd7\xff\xc6\x5f\x5c\x2d\x9d\xe9\x58\xc9\xa9\x91\x4c\x79\x40\xbd\x42\x0f\x2a\xf4\xf2\x17\xeb\xdd\xa8\xd3\x9d\x0a\x5c\x0c\x47\x48\x6c\xff\xf3\x06\x53\xe8\x90\xef\x68\x63\xdb\x31\x89\xd6\x3b\x1c\xf4\x90\x60\x88\x84\x11\x71\x40\x2a\xd1\x5f\xf1\x74\xba\xfb\x5d\x97\xfd\xcf\x28\x23\x97\x17\x69\x66\x80\xf5\x76\xf2\xe7\xc0\x04\x3b\x21\x94\x1a\x71\x0d\x05\x6e\x91\xbe\xcd\xf2\x34\x31\x71\xbc\x3e\x2d\x76\xdc\x39\xa0\xdc\x48\x4d\xba\x78\x4a\x0d\xec\x9e\x9a\xc2\x85\x41\xaf\x3c\xda\x44\x53\x7d\xee\x90\xa7\xd9\x23\x8f\xe9\x28\x21\x7c\x3b\x99\xf9\xba\x93\x16\x74\x47\x56\x18\xc5\xf3\xbe\xb2\xde\x4a\x5b\x2b\x85\x89\x62\xcd\x6e\x23\xaa\xfc\x88\xb9\xd7\x3e\x9a\x88\x3c\x7c\x3b\xd4\x61\x33\x15\x1c\x7e\x74\x77\xe1\xac\xfb\x0e\xb3\x50\x4d\x86\x66\x73\x87\xea\xed\x48\x3b\x0f\x3d\xa0\xd4\xe7\x4d\xb7\x35\x2b\xca\x75\x07\xeb\x71\x9a\xe6\x0a\x9b\x87\xbd\x1f\x11\x8a\x77\x54\x59\x79\x6d\xdb\x65\x9b\x65\x2e\x27\x8a\xaa\xc5\x05\x22\xd3\xbd\xd0\xd8\xda\x29\x7a\x60\x5f\xbd\x1d\xe5\xa6\xdf\x4f\xa3\xa4\xf0\x06\x17\x67\xc8\x59\x4a\xe0\x9f\x1d\xab\x78\xfd\xa5\xff\xfc\x57\x88\xe2\x02\x87\xbe\x83\x33\x54\xe8\xca\x47\x49\x3e\xc8\x4c\xd2\xb2\xd8\x09\xae\x61\x3d\x7c\xc3\x11\xa2\x4e\x37\xed\x76\x66\xf3\x3c\x4a\x3a\x0c\x07\x85\x6f\xac\xda\x25\xa4\xc3\xa1\x55\x59\x27\x6a\xe2\x25\x08\x4c\xaf\xef\xdf\x06\x87\xff\x51\xa2\xfe\x38\x4a\xd1\x50\x3b\x8a\x6d\xaf\x67\x50\xea\x45\x74\x7c\x8f\x1a\x6d\xef\x51\x71\xca\x9a\x0c\x38\x66\x94\x0e\x4e\x93\xc6\xc7\xe9\x89\x9a\xda\x2f\xd7\x57\xf3\xaf\x8e\xa9\xf5\x05\xe6\x90\x0d\x7f\x72\xb7\x4c\xcf\x66\x26\x47\x76\xd1\x83\xa3\x3c\x64\xeb\xf6\x90\x28\x64\x1e\x4c\x24\xa6\x7f\xb9\x5e\x74\x4d\x31\x15\xb6\x87\x76\x6d\xe2\xd0\x46\x13\xbe\xe3\xbf\x70\x35\xf7\xa5\x38\x6d\xad\x2c\x0d\xf2\xc2\x66\x33\xf2\xce\x5e\xc5\xd0\xf7\x66\xbf\xc3\x56\x0d\xb6\xda\x15\xe3\x09\xf2\x71\xa9\x8a\xd5\xd1\x14\x5c\xfb\x77\x7d\x40\x63\xed\x42\xbe\xf1\xca\x66\x91\xcd\x77\x12\xd1\xc0\x99\x20\xd2\xfa\x17\x5e\x6c\x72\xa2\x77\x0c\x35\x41\xcc\xcd\xcf\x8f\x42\x8f\xdf\x9e\x17\x14\xd1\x22\xc7\xe9\xdf\xfe\xf7\x47\x41\x12\xcd\x1e\xee\xdb\x2c\xea\xd9\xa4\x30\x31\x88\x51\x10\xbc\xdc\x90\xf3\x42\xaf\x27\x0a\x72\x0b\x0b\x8b\xf5\x58\x0a\x69\x4e\xde\x8b\x48\x37\x81\x39\x40\xaa\xf1\x3e\xa1\xac\x15\x32\xfa\x58\x88\x68\xbf\x0d\xdf\x54\xd5\xcc\x11\x1d\x2b\x03\x7f\x23\xd0\xc3\xea\x31\xe8\xa8\xf9\xc7\x93\x81\xe5\x3b\xea\x97\x11\x73\xca\xf1\x31\xda\x63\x19\x63\x3c\xcf\x79\x22\xa2\x2f\x7d\x48\xa1\x30\xf4\x15\x98\x8f\xe5\x57\xdd\x6c\x3c\xcd\x05\x18\x53\x74\x53\x74\x1f\xfa\x66\x27\x22\x0f\xa8\xc2\xeb\xb4\xa4\x7d\xc3\x03\xd4\x4e\xcb\x77\x3b\xec\x65\x05\xbd\x84\xe0\x30\xe2\xbc\xb6\x05\x23\xef\x4f\xad\x2a\xf4\xc6\x7a\xd4\xef\x47\x5e\x2a\x46\x89\xb4\x1a\xd4\x31\xff\xdd\xe1\xb3\xe3\x1e\xc7\x6b\x8b\xf5\x03\x8b\xf2\x58\x58\xdc\xea\x0b\xe8\xcd\x70\x5c\x2f\xc5\x64\x51\x9e\x26\xd3\xc4\xb8\x72\x0f\xe7\x2c\x66\xfd\x32\x0b\x56\x33\xe1\xd7\x65\x62\x2b\xee\xa6\x79\x3f\x2a\x4c\x0c\x68\xb8\x83\x03\x73\x33\x5e\x85\x03\xf2\x7a\xbd\xf0\x5a\x31\x4e\xa3\x70\xac\x08\xb3\xf5\x18\x79\xf1\xc5\xfa\x92\xc9\xf4\xe4\x72\x88\x20\xaa\x2b\x1e\xa1\xfa\x46\x96\x2a\x63\x10\x85\xb0\x8b\xbe\xd6\xf3\x1c\x1d\xf2\xa6\x10\xae\xea\x72\x67\x94\x3f\x4e\xe4\xd6\x73\xee\x66\x62\x56\x16\x5f\x39\x58\x17\x14\xa3\x6e\x74\xcf\x59\x48\x3f\xc8\x9e\x74\x3a\x38\x2c\x0f\x83\xbd\x73\x9f\x39\x4a\xef\x8f\xc5\x61\x2d\x1b\x3f\x52\xc2\x32\xc4\xfd\xab\x91\xa9\x11\xd3\xff\x45\x7e\xb9\x8b\x5e\x3c\xb9\x3c\x76\x96\x97\xa3\x56\x64\x15\xd5\x41\x88\xaa\x05\xdf\x7c\x13\x2c\xf4\xdd\x89\xd7\x14\x39\xf5\xe5\x60\xcf\x10\x18\xa9\x26\xbf\xde\x10\x4a\x3a\xef\xa7\x49\x7b\x2a\x28\xef\x6f\x6f\x52\x4b\xf0\x25\x2a\x3a\x5f\xf3\x9d\x7b\xdd\x41\xc7\x12\x21\xc1\x26\x13\x12\x6c\x92\x53\x05\x69\xc4\xd2\x82\x3d\x25\x0b\x15\x16\x7e\x84\x78\xdd\x73\x67\xfa\xb6\x80\x6d\xc0\x99\x71\xbb\xb9\xaf\xe5\xfa\xba\xee\x77\x31\xc7\xf8\x31\x7d\x56\x78\xbf\x77\x19\x6f\x79\x5c\x82\x0c\x18\xe2\x8f\xb8\xa4\xfe\x89\xb8\xe4\x08\x79\xef\xcb\x59\xe3\x28\xaf\xc4\xa6\x6b\x43\xfc\x30\xa4\x5f\xef\x0b\x33\xbf\xe3\x8a\x7e\xce\x4f\xd3\xaa\x4d\x4a\x37\x2f\xb1\x79\x2e\x94\x66\x5e\xb4\x9e\x71\xac\x35\x4f\x5f\x09\x8a\x64\xa7\x0f\x1c\x56\xc5\xe1\xa8\x90\x6a\xb4\x13\x86\xdf\xfe\x65\xdf\x48\x56\x8e\x8c\xd7\xd7\x9c\x75\xda\x54\xff\x9a\x2d\xeb\x6e\x12\x57\x5b\xfa\x6a\x8d\xc4\x3a\x14\xd1\xad\x37\xfe\xe8\xee\x98\xa5\x2c\xb2\xe5\x79\x72\x60\x9f\xeb\xd6\x19\x8e\xb5\xee\xb8\xfe\xa9\x24\xcd\xd6\x6c\x87\x28\x7b\x94\x87\xa1\x31\x46\xca\xe0\x0a\x2e\xdd\x34\x49\xa1\xa8\x8c\xef\xb9\x8e\x31\x47\x01\xe1\xa7\x54\x7a\x3c\x4b\x10\xed\x77\xaa\xd0\xbc\x4b\x83\x28\x2e\xa6\x89\x57\x50\xeb\x4a\xaa\xb6\x23\x9b\x0b\xdb\x40\xc9\x6f\x90\x95\xbe\xd9\x08\x5c\x03\xad\xd2\x6d\x53\x0a\xce\x7c\x8a\x18\xa4\x15\x53\xe0\x6b\x83\xa1\x1b\x89\x73\xdf\xdd\x28\xff\x92\x1c\x78\xce\x90\xc8\xdf\x21\x37\x7c\x04\xf9\x69\x14\x90\x37\x71\xc4\x23\x03\x72\xbc\x11\x72\xc0\x97\xc5\x6d\x52\x62\xc7\x06\x11\x0f\x4c\x8f\xa8\x9c\x79\x6d\x18\x4a\xdc\xdf\xd6\xcc\x9f\x07\xa4\x2d\xbe\x72\x50\x9b\x42\xef\x21\xa5\x85\xb4\xc8\xae\x66\x10\x61\x3b\xaa\x85\x56\x55\xf2\x41\x36\x4a\x65\x4c\xa8\x25\x02\x67\x81\xc6\xde\x72\xd4\xe1\x47\x14\x0a\x0b\xf7\xff\x87\x02\x00\x43\xeb\xd2\xcf\x50\x0e\x75\x1a\x3d\x32\x64\x48\x5f\x6d\x60\xeb\x7a\xe4\xaa\x2f\xd3\xee\x69\xb2\xe1\xec\xff\xe5\xff\x14\x99\x48\x47\x44\x21\x3f\xe4\xf4\x66\x18\x3c\x3d\xa6\x0d\x64\x80\x6e\xd0\xbe\x1c\x5e\x67\xe7\x2a\x2a\x88\xf5\xbe\x59\x77\x5a\x45\x4a\x71\xbe\x79\xb9\x4a\xcb\x29\x36\xab\x92\xf0\x79\xd5\x85\x21\xb7\xc9\x6b\x0c\xba\x49\xfd\xcc\x2e\xc7\xd2\x88\x30\x2e\x3f\xeb\x1d\xba\x7b\x44\xa0\x72\x9a\x9b\x2f\x5b\xc5\xc0\x80\x5d\x1a\x67\x35\xe8\xa6\xf4\xba\x2a\x93\xb6\x9c\x19\x95\x98\xd6\x65\x29\x1f\x70\x4b\xb4\xa2\xd3\x6c\xdd\xc6\x82\x44\x3b\xe0\xc8\xa0\x3f\x26\xae\xdf\x8f\x29\x0e\x89\x92\x16\xcc\x92\x32\x6a\x22\x97\x74\x05\x6e\x9a\xde\x84\x12\x48\x94\x4f\x61\xd5\xa1\x66\xbb\x4d\x5d\x51\x98\x7b\x4d\xa6\x63\x02\xae\x4c\xb8\xcd\x5f\xa9\xb7\x62\x93\xe7\x59\x9a\xf6\x30\x60\x0c\xc9\xc6\xc6\xbd\x43\x6d\x46\xa7\xa8\xb6\x9a\x77\xd3\xb5\xf2\x73\x39\x0a\x09\xd8\x26\x5f\x30\xc3\xca\x30\xd4\x4e\x6f\x05\xde\xbb\xc3\x7d\x9b\xe4\xce\xa5\xda\x3c\xa1\x7d\x12\x13\x2d\x50\xa5\x8f\xb2\x94\x45\x71\x1c\x99\x44\x0b\x5f\x3e\x21\x3d\x3f\x1f\x88\x17\x3d\x4a\xf1\x14\x93\x41\x84\xee\x52\xc7\x29\x4a\x22\xa7\x67\x2a\xb4\xaf\x0f\xd6\x5b\x69\xb2\x1a\xb5\x0a\x27\x41\xe9\x8f\xf7\xe0\x63\x5c\x6c\x3c\xe7\xed\x64\x56\x44\xad\x41\x5c\x0c\x32\x0d\xad\xe1\x05\xbd\x43\xf9\xad\xaa\x34\xce\x4b\x75\xe1\x45\xaa\x05\x7c\xae\xf2\xc5\xeb\xcd\xd6\x8c\x79\x19\x06\xbc\xba\xef\xa9\x72\x51\x62\x7c\xe1\x15\x63\x36\xef\x34\x98\x5b\x0c\x8c\x92\xd8\xe0\xa7\x1a\xb5\x17\x5f\x74\xd7\x9a\xcd\x83\x15\x01\x53\x25\x8c\xe5\x76\xc1\xe6\xa0\xa2\xf6\x63\x31\x1c\x0e\x02\x2e\x8f\x84\x1c\xf8\xbf\x46\xbe\xcb\x8b\xee\x05\xb0\xc8\x0d\xd8\x03\x87\xab\x16\x63\x83\x53\xe3\xe7\x32\x0a\xaa\x58\x35\x1e\xb8\x10\xf9\xba\x19\xe4\x16\x07\x84\xc2\x44\x05\xf0\xe1\x21\xa3\x5e\x8b\x4f\xf1\x7b\x7a\x43\xd2\xb5\xdd\xa5\x14\x53\x4c\x72\x10\x73\xbe\x7f\x86\x65\x38\x93\x55\x9b\xe9\x1a\xf2\x95\x5f\x9f\x38\x46\xe4\x87\xca\xcd\x5d\xca\xea\xc8\xc6\x00\x64\xea\xa5\x50\xd4\xf3\xbc\x81\x17\xe9\x4f\x7b\x51\x6c\x4d\xc7\x4e\x05\x2f\x0b\x8b\x14\x56\xfc\xe7\xe2\x03\x81\x12\xed\xa6\x47\xe9\x74\xb2\xd4\x38\x9c\xa3\x8f\xa3\xca\xcd\xee\x92\x19\x93\xab\x67\xae\x9e\xaf\xd9\x3e\xd2\x86\x0e\xc4\x26\xef\xac\x37\x8d\x90\x17\x5e\x33\x2b\xa9\x1e\xf8\xaa\xb2\x86\x49\x75\x92\x6b\xd4\xcc\x10\x25\x51\x6f\xd0\x13\x45\x57\x25\xa0\xc3\x5c\x7a\x41\xe0\xf9\x79\xd7\xef\x2c\xf3\x8a\xaa\x96\x1e\x28\xce\xf7\x08\xb0\x89\x55\x1b\xa7\x7d\x98\x45\x75\x01\x65\x69\x39\x77\xb0\x22\x2f\x9f\x8b\x2c\xe9\x14\xf3\xf2\x29\x78\xc0\xcb\x9a\x87\xd4\xcd\x89\x4a\xb9\xfb\x35\x13\xaf\xf8\x9c\x8b\xa3\x01\xa4\x8d\x75\x7b\x18\x38\x48\x56\x32\x93\x27\xe9\xba\xc9\xf2\x15\xc9\x22\xa3\xf7\xe9\x6d\x9c\x89\x7a\x43\x02\x2f\x99\x89\x92\x7c\x2a\xa0\x53\x80\xaa\xf5\xc3\x3f\xce\x06\x4e\x2d\x5b\x66\x6d\x3a\xe0\xf1\xb0\x1c\x70\x60\x5f\x23\x96\x60\xf8\x0e\xfa\x37\x55\xa8\x03\x6b\xb2\xc4\x6b\x5a\x04\xd9\x83\xf2\x51\x5d\x35\xa2\x6a\x3c\x62\xb3\x54\x7a\x4e\xb5\x1a\xe9\xe5\xcb\xa3\x3a\x32\x92\x0a\x2d\xdd\x2f\xd7\x4d\x51\xd8\x9e\xae\x2f\x38\x04\xc8\x00\xeb\xf5\xc4\x2f\x01\xb3\x1b\x75\x92\x71\x24\xa4\xe2\xc3\xf4\x66\x54\x95\xa9\x59\xca\xd3\x6c\x49\x25\x16\x1d\x6a\x88\x39\x01\xa9\x11\xad\x3b\xc8\xda\x2a\x65\xe8\x32\xd1\x01\xeb\xf3\x79\x55\x6f\xa9\xf0\x18\xf9\xd5\x00\xbb\x87\xfe\x75\xbd\xf6\x66\xbc\x9f\xa5\x85\x95\x16\xad\x28\xef\x4d\x05\x6c\x84\xb6\x3b\x39\x92\xd8\x72\x1e\x1d\xb6\x68\x4f\x70\x18\x8a\x17\xe8\x3d\x3f\x6a\x90\x29\xda\xd9\x0c\xe5\x22\x54\x04\xf1\xf1\x6b\xf2\xe8\x88\xf8\xfe\x27\xec\x32\xc5\xb6\x73\x77\xdc\x9d\x71\x48\x39\xc5\xab\xb7\x87\x81\xbb\xfa\x31\x20\x28\x1d\x8c\x46\xac\x2c\x42\x8b\x9b\xca\xa6\xee\x22\x88\x9a\xe7\x94\xda\x31\x62\x93\xb0\x03\xba\xf9\x88\x8f\x40\xba\xee\xd8\xd4\x4b\x4b\xec\x7a\x31\x65\xe5\xe1\xbd\x80\x9d\x73\x2e\x74\x19\x50\x01\x13\xf1\x39\x2c\x17\xf2\xd1\x47\xc6\xf9\xdf\x12\xd5\x80\x43\xf6\xf3\xb7\x18\x15\x78\x9e\x58\x54\x4f\x8a\xaf\xed\x83\x0b\xcf\x2c\x3b\xd5\xdc\x4a\x76\x0a\x7d\x60\x89\xdb\x3c\x46\xc9\xe7\xf6\x89\x5e\xb0\x0a\x13\xb5\xd6\xb5\x06\xeb\x1b\x79\x14\x1c\xa7\x7a\xed\x8d\x58\x4f\x64\x58\xa3\x04\x1e\x91\xef\x4a\x70\x48\x97\x6f\x3c\xd5\x0c\x0d\x45\xbb\xab\xd6\x77\x61\xa2\x38\xf5\xb9\x70\xec\x39\x3d\x9e\xf4\x86\xc2\xeb\x6e\xda\xee\xd8\x7e\xf9\x9f\x5a\x88\xaf\x80\x35\x73\x65\x5c\x17\xb1\xf7\x06\x49\x34\x13\xec\xf1\x74\x33\x84\x04\xd3\xa3\x31\xe2\x5f\x1a\x95\x3b\x0d\x89\x12\x61\xce\xcf\x93\xe5\x5f\x8e\xa4\x52\x32\x43\xd9\xbb\xab\x8d\x20\x88\x76\xa3\x41\xf2\xef\x3b\x47\x24\xda\x03\xea\x52\x24\xe7\x2f\x0c\x03\x87\x5c\x6c\x66\x42\x43\x8c\xca\x08\xa8\xa6\x0c\xac\x8f\x6b\x53\x2d\x7d\xfd\xbb\x43\x6a\x74\xbb\x40\x9c\xc1\x79\xd7\xf4\x5d\x6a\x0a\x98\x47\x34\xd7\xe9\x75\x15\x23\x71\xd6\xb5\xc2\xd7\x2a\x33\x8b\xe2\xfb\x4d\xe2\x19\xbe\x49\x3d\x50\x5d\xd3\xeb\x99\xd6\x4a\x5e\x2b\x3d\x24\x0d\xf9\x10\xa6\xb9\xf8\xaf\x22\x11\x23\x22\x19\xe3\x74\x25\xba\xd6\x1c\xf4\x3a\x40\xe8\x84\xc3\x67\x39\xcd\x7a\xe8\xcf\x94\x8f\x00\x1e\x04\xe9\x0b\xbd\x9e\x48\xb0\x09\x6f\xe6\xa0\xa0\xe6\x09\xa5\xc1\x74\x7d\xba\xf2\x7b\x48\xd8\x6e\x9b\x50\xfc\x78\xe3\x8d\x7a\x6e\x63\x64\x8c\xe1\x78\xfd\x37\x44\xbd\xf0\x8e\xfc\x32\x22\xb7\x77\x2b\x72\xa9\x0b\xf5\xbe\x71\x72\x21\x2a\x72\x43\xec\xb4\xe7\xc7\x36\xf4\x61\xdb\xde\x51\x7b\xd9\xa5\x31\x6e\x4a\x1e\xc6\x35\xaf\x93\xf6\xf6\x4d\x58\x34\x9f\xb0\xf6\x49\x10\x90\x26\x39\x4c\x1f\x7f\x73\x3a\x88\x77\x86\xb2\xff\xc7\x43\x52\x82\x3f\x0a\xfc\xb0\xa3\x57\x92\x07\x75\x9c\x04\xe1\x84\x9a\x92\x06\x0c\x87\x40\x2b\xed\x99\x5e\x4f\x12\xac\xcf\xd5\xa3\xa4\xb0\x49\xdb\x02\x82\x40\xee\xad\x53\x65\xd2\x7c\x85\xc3\x64\x04\xb5\x83\x56\x9a\xb4\x6c\x96\xd8\xf6\x0e\x71\xbf\x55\x30\x46\xc6\x0b\xc6\xfc\x5f\x89\xbf\xe7\x85\x64\x82\x87\xf0\x47\x72\x92\x38\x96\xec\x5a\x05\x0f\x95\x89\x23\x9b\x08\xdb\x99\xfb\x04\x09\x6f\xab\x9c\xae\x93\x89\xa8\x79\x25\x1f\x80\x92\xb1\x1f\xff\x05\x1e\xdb\x51\xf7\xba\x20\x71\x29\x3d\x3c\x35\x06\xbb\xac\x79\x51\xec\xfb\x02\x4f\x76\xbc\x0b\x8f\xd3\x3e\x5c\x97\xb1\x21\x71\xa6\x39\x07\x3c\xc7\x61\x87\xe9\xf8\xdd\x21\xc7\xde\x52\x03\xdc\x41\x6b\x75\x17\x2c\x07\xc2\x97\x7f\x4e\x72\x61\xd3\x4d\x82\x79\xfd\x00\xc9\x0a\x44\x9c\xb0\x6b\x88\xec\x6b\x15\xc4\x83\x07\x4b\xa7\xa0\x80\xdd\xd2\xd3\x0b\x47\x26\x66\xee\x73\xee\xeb\x51\xc4\x15\xf6\xc4\xd5\x61\x98\xa5\xa9\xa6\x7b\xec\xe5\xa8\xf8\xfa\x9a\x29\x94\x00\xcc\x4b\x77\x90\x8e\x87\xcf\xbb\xf5\xcd\x7a\x3a\x28\xd4\x6b\x77\x68\x8c\x31\x98\x86\x3b\x43\x62\x33\xe8\x74\xbd\x13\xe2\xf8\xef\xcb\x1f\x70\xbc\xf8\x81\x8a\x55\xc8\xbe\x33\x93\x45\xf1\xfa\x74\xc8\xe0\xde\x6d\xd0\xc0\x5d\x1f\x53\x68\x97\x37\x77\xc8\x8d\xad\xb1\xac\x34\xd4\xb5\xd2\x4c\xcb\xd7\x1e\xec\xf0\x73\xc6\xcc\x56\xf2\xba\xa7\xb2\x25\xf4\xed\xb4\x3f\xb0\x41\x48\xa1\xd3\x74\x78\x24\xa1\x4f\xeb\x25\xaf\xf2\x1f\x1c\xdb\x73\x15\x8d\x2c\x8b\xf5\xf6\xe0\xdf\x91\x90\xa3\xf2\xc3\x76\x57\xb9\x50\x1d\xc9\x9d\xcc\xb1\x0b\xcb\xc4\xa9\xf0\x0d\xb9\xf3\xf3\x8a\x9e\xbe\x22\xb6\x06\xa1\xdd\xee\xe6\x56\x4e\x6b\x97\xb5\x9f\x6a\x06\x37\xe4\xf1\x11\x91\x12\x0f\x7a\xd3\xcc\x7c\x23\x23\xe1\x11\x05\x1e\x38\x74\x87\x2a\x0f\xb7\x2b\x0b\x55\xb1\xf4\x18\x07\x34\xbe\x7c\xc0\x21\xf3\xb7\x4e\xc4\xab\xfb\x5e\x17\x1a\xf6\x81\xf6\x88\x38\x56\xc4\xf2\x4d\x1c\xa0\xb0\x8a\xda\xde\xc6\x51\x2b\x4a\x07\xac\x59\xa9\x22\x83\x7a\x33\xe1\xf3\xef\x17\xd6\x12\x53\xd8\x4e\x79\x72\xfa\x42\xbd\xf6\xb4\xe9\x0d\x61\x6f\xa2\xa4\x15\x0f\xda\xb6\x3d\x13\x74\x96\xaf\x0e\x49\x08\xf7\x22\x0a\xc0\x70\x15\xb7\x8b\xdb\xcb\xbe\x93\xfe\x51\xa5\x46\xd3\xd2\x20\x5e\x91\x52\x32\xbc\x8d\xef\x52\xd7\xd7\x15\xd9\x34\xce\x02\x7a\x4e\x9e\xb4\x30\x45\x6a\x73\x04\xf5\x00\x00\x5e\x95\xbf\x74\x3a\x3c\x01\x64\xc5\x8d\x07\xb9\x59\xb6\xc5\x3a\x3c\x52\x2f\xfb\x17\x12\x85\xc7\x89\x1a\xf5\x47\xa4\x44\xa2\x71\xb6\xfe\x91\x4f\xae\x97\xf3\x54\x74\xb3\x74\x2d\x99\x0a\x15\x59\x90\x0c\x63\x99\xfe\x6c\xc8\x0c\x67\x54\xaa\xcd\x4c\x14\xaf\x19\x18\x58\x9c\xd1\x20\x4e\x57\xc2\x3c\x4a\x6b\xed\xa4\x15\xb9\x6c\xda\xb5\x89\x55\xe8\xa0\x2c\x84\x28\xef\x46\x3b\x58\x45\xf1\xff\x93\xbf\x43\x12\x7f\x6a\x44\x89\xf4\xdf\xa6\xb0\xf4\x07\xb0\x63\x08\x0d\x6e\x21\xea\x80\xa9\xba\xf6\x48\x2a\xdc\xc2\xb6\xba\x89\x2a\xe2\xfa\x7c\xfe\xcd\x06\x71\xca\xdd\x9c\xe0\x07\x9f\x3b\x54\x37\xfd\x7e\x96\xf6\xb3\xc8\x14\x8e\xee\x02\xd5\xb1\xc3\x8d\x80\xba\x38\x4c\xde\x38\x7a\x5b\x04\xf8\x8b\x63\xf1\x09\x69\xff\x42\x66\x5b\xbd\x24\xc7\xd5\xc8\x4d\x2f\xf2\x42\xae\x55\xaa\x46\xcc\x9d\x55\x1e\x50\x39\x97\x42\xb2\xe2\x14\xd6\xca\x59\xf4\x0c\x77\xbe\x1f\xee\x9e\x4c\x13\xa6\x6c\xdb\xa8\x82\xf6\xb3\xc8\xc0\x58\xe0\xf0\x38\x01\x6a\x1e\x56\x6f\x6c\x57\x6d\x2c\xcc\x4e\x01\x57\xfe\x0f\xc9\xa4\x3c\xc4\x69\x88\x7f\x78\x58\xa5\x10\x5d\x86\xb8\x45\xa4\x9d\xf2\xea\x16\xc9\xe8\x39\x17\x29\xa0\xa6\xf3\x7e\x5a\xa0\x36\x8c\xbc\xe4\xc7\xcc\xea\xf0\x71\x83\x7b\x24\x24\xea\x11\xea\x28\xce\x5c\x78\xdf\xe2\x1e\xcb\x14\xcd\x34\x43\x21\xd7\x2c\x2f\x47\xe2\xf0\xae\x22\x86\xd1\x96\x8a\x46\x48\xac\x4d\xea\x3d\x2c\x2c\x08\x2c\xd1\x1f\x91\x3e\x31\xe7\x39\xde\xce\x37\x9e\xf0\xfb\x25\xb6\xa6\xbd\x4b\x46\x0b\x0e\xe1\x4f\x24\x50\xc1\x34\xcc\x8c\x82\xc8\x15\xea\x52\x58\x00\x0f\xc7\x55\x15\x24\x44\xc5\x76\xfe\x3e\xb6\xa5\xd3\x87\x0f\x6e\xf9\xe3\xcd\xe0\xe7\x15\x99\x59\x05\x77\x47\x48\x0c\x28\x28\xdf\x91\x51\x3a\x0f\xc2\x33\xbc\xd7\x02\x50\xf0\x16\x51\xf1\xb3\x3a\x7f\x6e\xb3\xd2\x4c\xeb\x06\xc5\xd4\x7f\x0f\x4f\xea\x8e\x07\x99\x1f\xb7\x88\xcb\x77\x43\x20\xf7\x3d\x18\x5b\xbd\xc1\x2e\xd3\xcf\x13\x4f\x6a\x6e\xcb\x53\xbc\x65\xb5\x62\x86\x02\x23\x9a\xf6\x1d\xea\x3d\xe4\xa8\xcf\x78\x68\xce\xbf\x13\xdd\xf6\x33\xd4\x06\xdc\xb2\x79\x1e\xa5\xc9\x2e\x72\x50\xcf\xca\x62\xc7\x0a\x3c\x49\xbc\xdb\xea\xb0\x3b\xdb\x2e\x13\x81\xea\x28\x4a\xe0\x4e\xec\xb4\xdc\x71\x1e\x62\x51\xbe\xaa\xfe\xd1\x04\x3a\x66\x7e\xbe\x6e\xf2\x19\xa9\x18\xc9\x36\xc5\x8b\xed\x6a\x06\x23\x84\xd6\x1e\x78\x7d\x7f\x88\x9f\x0f\xda\xcd\x1e\xc2\x1e\xd9\x4e\x3a\x25\x87\x96\xa3\xab\xad\x7d\xed\x37\x3d\xc3\x66\xa8\x70\xdd\xae\xe0\x52\x9a\x2b\xa3\xfc\x35\x93\xd4\x88\xee\xf6\x02\xd1\x9e\x85\xdd\x6e\x7b\x4b\xb6\xdd\x76\xe1\xa3\x43\x36\x31\xcc\x69\xf8\xc4\x18\x79\xdb\xde\xd2\xdc\x60\xcb\x9d\xe4\x35\x7c\x45\x62\x1a\xa5\x04\xd7\xaa\x21\x4c\xcb\x5e\x54\xd0\x61\xc9\xa7\x90\x0a\xd0\xfc\x2d\xa9\x6a\x4f\x8d\xc2\x71\x73\xa6\x11\x4e\xa9\x93\x50\xf1\x86\xa5\x3c\x29\x3a\x75\x8e\x77\x5c\xb6\x26\x86\xf4\x3b\x0d\x02\x2a\x5e\x1b\x52\xc2\xea\x28\x15\xc2\x73\xdb\x7e\x52\xbe\x0d\x47\x0f\x93\x4b\x3e\x1c\x86\xa2\xe7\x9f\x1e\xd5\x16\x16\x1e\xfc\xad\xbf\x80\xe0\x40\x5c\xf5\xbf\xfa\x57\x9a\xa4\x01\xb0\x67\xe4\x43\xd6\x0f\xbf\xdc\xa4\xb2\xc3\x43\xad\x67\x20\x36\xdd\x36\x0a\xbc\x62\x7b\x85\x28\xd6\xf5\xb0\x04\xd4\xcd\x5f\xfa\xcb\x4d\x89\xd4\x5c\xac\x4e\xec\x7f\x4f\x8e\x02\x4b\xc8\xb5\x5f\x99\x20\xe7\x97\x94\x7b\xd4\xeb\x6b\xfe\xd1\xb3\xab\x1c\xd8\xe7\xd9\x55\x2a\x9c\xaa\xb7\x06\x26\x2b\x6c\xa6\xba\x0a\xbe\x6e\x73\xc0\xd7\x70\x2a\x55\x86\x96\xb2\xa8\x28\x62\xe5\x26\x44\x3c\xfb\xff\xc8\xee\x70\xed\x82\x5c\xe9\x0a\x55\xb8\xa8\x27\xf2\xc4\x8a\xb2\xc6\x14\xbe\x4b\x92\xd5\xef\x4e\x12\x67\xbd\x72\xb0\xfc\x54\x1c\x69\xec\xeb\xfa\xf4\x03\x07\xb6\x12\x77\x21\x32\xbb\x47\x9c\x6b\xab\x51\x5a\xfa\xb2\xb0\x88\xb0\x9e\x9b\x14\x98\x6c\x56\x56\xbc\x7a\xa6\xd5\x4d\xa7\x49\x91\xfb\x13\x7c\x3d\x8e\x91\xeb\x63\x34\xf7\x35\x2f\x0a\x3e\x85\x14\x87\x3b\x98\x94\x19\x62\xd5\xe6\x3b\x88\xf7\xfa\x3e\xfa\x38\x50\xc7\xd1\x73\x0d\x59\x7a\x34\x8b\x63\xf7\xfe\x54\x5e\x0d\x5b\xe0\x01\xe5\xd5\x82\x10\x7f\xf9\x03\x51\x5e\x08\x56\xc7\x4f\xd9\x9f\x6a\x86\x1a\xc6\xb3\x23\xce\xe3\x90\x3f\x59\x64\xeb\x51\xd2\x79\x5c\x4e\x26\x38\x2e\xd7\x61\xa5\x5d\x82\x03\x8b\xd5\xb3\xed\x2e\xbe\x72\x70\x2c\x27\x02\x5b\x73\x6f\x48\x41\xea\x75\x9c\x54\xfa\x6d\x38\x0c\xf0\x79\xcd\xf1\xe1\xf4\xa9\x49\x2e\x56\xff\xa1\x49\x6e\x00\x56\x3e\x82\x96\xf7\xc7\xbb\xbd\x93\xf5\xa9\x70\x9a\x4b\xbb\xf1\xe6\x91\x61\x08\x2c\xce\x91\xd7\x20\x64\xa3\x3b\x82\x1e\xf8\x3f\x43\x72\x07\x31\x96\x2a\x6c\x38\x8f\x5e\xde\xde\xc7\x00\xc1\xc8\x5d\xa2\x50\xec\x47\x84\x65\x6d\xe5\xcb\x4b\x7f\x42\x71\xf6\xf9\x31\x8f\x24\x8b\x96\x06\xe5\xd1\x3a\x15\x82\xa6\x1f\x0e\x39\x8e\x26\xe4\xd8\x55\xaa\xa1\xaf\x44\x49\xdb\x66\x2d\x93\x29\xf2\x17\xab\xf9\x06\x8c\x98\xde\x4c\x70\xc5\x7c\xa5\xbe\x16\x29\x72\xd6\xf1\xd5\x50\x2d\xf4\x62\x63\x2f\x81\xa2\xb2\x95\xf5\xe9\x00\xaa\x3e\xd9\x20\xea\xc5\x3b\x44\x2a\x7a\x92\x21\x98\x77\x26\x0e\x92\xfd\x0b\xf5\x28\xcf\x8c\x8d\xa1\x07\x89\x24\xe7\xad\x21\x75\x7c\xdf\x22\xac\x5f\x3f\x4b\x7b\x69\x11\x25\x9d\x69\x6a\xe1\xda\x80\x95\x46\x64\x5f\x6b\x06\xeb\xb4\x41\xad\x0e\xb5\x51\x45\xd0\x98\x9b\xa4\x55\x0c\x4c\xb6\x4e\x7c\x14\x77\x89\x39\xff\x2e\xa5\x65\xdb\x69\xbb\xa3\x29\x12\x4d\xb3\x60\xde\x5d\xce\xa5\x2a\x4d\xdf\x4b\x8b\x34\x6b\xad\xb7\x62\xab\xb5\x48\x07\x0b\xa7\x08\xf3\x42\xe3\xd9\xad\x5d\x62\xf5\x37\xde\x78\x5a\x36\xb6\xc7\x90\x1d\x58\x0c\x9c\x7b\x3e\xad\x0b\x78\x8e\xc3\x8b\xcb\xd6\xc2\xcd\xef\x36\x42\x8b\xff\x03\x29\xb9\x78\xb8\x7f\x50\x36\x87\x91\x84\x4f\xf2\xae\x6c\x02\x1c\xb2\xaa\x31\xe3\x2c\xa9\x8c\xb3\xd3\xee\xf3\x10\xe1\x7f\xa6\xe9\x58\x17\xb7\x10\xe2\xf8\xb0\x64\xff\x50\x61\xd7\xd2\xb5\x22\x89\x27\x22\xdf\xfd\x0b\x75\x33\x28\x52\x0d\x62\x5d\x62\xa3\xe6\xc9\x4b\xae\x91\x98\xd5\x19\x56\x00\xec\x46\xab\x26\xdf\x16\xbc\xe3\x7e\x9a\x14\x3b\x43\xbc\xf2\x80\xb5\x58\xde\x95\x11\x43\xdc\x54\x13\x3b\x81\xb7\xd9\x06\x26\x6b\x97\xae\x21\xff\xe1\x1c\x8d\xcc\x03\xda\xb6\x69\x6c\xd6\x81\xf5\x40\xe2\x50\x35\x93\x9c\xa8\x54\xcd\x73\x57\x4d\x66\x41\x66\xe7\xea\x7d\x13\x65\x9a\xd5\x57\xe6\x24\xa2\xb2\x3d\x4a\x26\xb5\x6d\x5b\x4e\xa1\xcf\xf7\x88\x78\x27\xf1\x67\x13\xe9\xae\xfd\x0b\xf5\xd8\xb4\x56\xe2\x01\xb8\xb0\x17\x5c\x8f\xca\xa7\x74\x78\x3e\xc0\x52\xc5\x20\xdc\x24\x6f\xe5\xd0\xd7\xbe\x36\x45\xe4\x91\xe0\x38\xc3\xe7\x15\x05\xe1\x18\xc0\x1e\x25\xb9\x37\x48\x6c\xde\x4a\xa7\xa8\xc1\x44\x56\xe5\x18\x07\x37\x2c\xd5\x43\x5f\xfa\x6f\xc5\xe9\xa0\xbd\xa5\x72\xc5\xa0\x64\x3a\x5e\xa2\x3c\x1f\xd8\x6d\x55\x25\x5e\x55\x04\xc1\xb7\xb8\x66\xb3\x40\x2e\x7e\x9a\x75\x34\xa4\xce\x19\x25\xc8\x0d\x61\x6d\x21\xe9\xa5\xd7\xa3\x67\x18\x95\xdc\x1b\x24\x42\x86\x33\x3f\xaf\x5e\x92\x42\x32\xf5\x86\xa2\xb2\x4e\xb4\x6a\x9f\x1c\x07\xa1\x94\xe3\xec\x20\x3f\xe5\x32\x42\xd5\xfe\x1d\x54\x03\xfc\x1e\xde\xef\xd2\xf7\xd7\x87\xa1\xec\x78\x87\x79\x50\xb6\x2b\x8a\x09\x11\xc4\xb5\x61\x78\x9a\xdb\x40\xc8\x61\x66\xa7\xe0\x1a\x22\x40\xd9\x64\x56\xc8\x5b\x62\x35\x58\xb3\x14\x10\xa6\x0f\x71\x76\x61\x92\xaf\x4d\xac\xd4\x32\x82\xef\x46\xc9\x8a\x44\x72\xbe\xac\xc8\xbd\x4d\xcf\x11\x64\xac\x0c\x82\xd2\x2c\xd2\x9e\x3e\x78\x34\x53\xa3\x00\x12\x99\x6a\x3e\x3d\x66\xbb\xa3\xdc\xb6\x67\xe4\x89\x1d\x1e\x9c\x5c\xde\xb3\x92\x66\x40\x82\x12\x0d\x3e\x4e\xc1\x3f\x88\x55\xdf\x23\x64\x42\xcf\x26\x03\x4d\xc0\xc2\x46\xa0\xbb\x4e\xaf\x27\x12\x2f\x6f\xbc\x31\x4e\xef\x20\x3b\x0c\x3e\xf1\x71\x56\x0d\x3d\x5e\xd5\x96\xbc\x6c\xe2\x58\x92\xa1\x0e\xa5\x88\xd9\x41\x0d\xf4\x3c\xf9\x70\xca\x0f\xe6\xa8\x01\x5d\x84\x9c\x77\x4d\x51\xd8\xcc\xb6\xd1\x6d\x02\xe0\x28\x73\xdc\x29\x8b\x0f\xc2\xbf\xa3\x13\xdb\xed\xb5\xb9\x43\xf5\xce\xc0\x64\x26\x29\xac\x63\xe9\x74\x66\x35\xf4\x88\x30\x9b\x84\xf6\x5a\xca\x64\xfb\x9d\x49\x6d\x60\xcf\x30\x50\xb4\x6f\x92\x40\x22\x8f\x62\xd0\x76\x58\x37\x38\x16\xba\x03\x5c\xde\x3a\xfc\xca\x92\xcd\xe2\x08\x6d\x0b\xea\x47\x37\x42\x7f\xf2\x29\x6a\xfe\xcc\xd3\x9e\x5d\xeb\x9a\x62\x8a\x62\x33\xbc\x3f\xb6\xce\x1d\x92\x35\x3a\x45\x16\x2a\x19\xf4\xa6\x98\xcd\x5e\x86\x1a\x2e\xd5\xe3\x24\xef\x7b\x77\x1c\xf2\xfe\x66\x54\x23\xd6\x74\x55\x8a\xd7\x1b\x0a\x80\xe5\xb5\xb1\x82\x30\x80\x0f\x09\x28\xf9\x90\x40\x18\xad\x34\x69\xa7\x58\xe4\x58\x24\x38\x0b\xf5\x9a\xc6\xa3\x6d\xe3\x34\x63\xb9\xe0\xf3\xcc\xa9\x7e\x9e\x84\x85\x7b\x26\xeb\x44\xc9\x0c\x89\x5d\x9c\x80\x1f\x83\x17\x3a\xc3\xd4\xa5\x68\xf7\x43\x89\x6a\x8c\xee\xe9\x7c\x15\xf4\xb8\x58\x8b\x5a\xc8\xb7\xbb\xce\x86\x72\xff\xb8\xc6\x86\x47\xe5\x32\xdb\x16\xc8\x25\x67\x52\x81\x98\xd8\x1c\x12\x47\xff\x66\x90\xaf\x30\x59\x16\xe5\x93\x4a\x20\x08\x70\xde\x1d\xd2\x24\x5f\xa5\xac\x09\x4a\x87\xe5\x89\x5f\xf3\x15\xf9\x6d\xb2\xbb\xe1\x93\x5c\x19\x8e\xf5\x23\x12\x55\xd0\x9a\x35\xc5\x74\x30\x0f\x9f\xc8\x2b\xe9\xf5\xb8\xd5\xc7\x1a\x76\x07\xc2\x56\x07\xf7\xc0\xbe\x7a\x7f\x50\xec\x90\xb1\x85\x2f\x2f\x74\x90\x8b\x9b\x23\x84\x2d\xa8\x11\x9f\x94\x88\xc9\xc1\x7e\x03\xaa\x4d\xbb\x0f\x10\xc0\x4c\x35\x29\xe3\x9c\x49\x4e\x3d\xa8\xd6\x87\xee\xa0\xbd\x4d\x8a\x82\xc5\xf2\x13\xcf\xd0\xeb\x5e\x29\x74\xd2\x13\x17\x02\x5f\x4a\x56\xdf\x67\xb6\x87\xfb\x55\x7c\xcb\xae\xa4\x8b\xd8\x02\x01\x09\x54\xc0\xf4\xba\x42\xf0\x74\xb1\x1e\x25\x09\xc4\x7d\x5f\x0f\xa9\x2b\x1f\x99\x61\x5b\xba\xc5\x16\x10\x7f\xda\xf5\x3e\x13\x18\xcd\xde\xc7\xea\xc5\x4a\xd1\x5e\x62\xb6\x3b\x30\x9c\xdf\xa7\x3a\xce\xfb\x55\x12\xc5\x65\xb4\x1c\x25\x36\x5b\x9f\x22\xb4\xf5\x49\xca\x25\x3e\xa4\x24\xf9\xf5\xb1\xf0\xce\xae\x5b\x24\x94\x31\xd8\x77\xa9\xe8\x7f\x61\x48\xad\x5f\x6c\x5e\x4c\xb2\xfe\x04\xd0\x42\x0e\x29\xcd\xac\x5f\x70\xea\x80\x95\x06\xb3\xa4\xf8\xec\xf3\x4f\xe1\xd4\x75\xf0\xef\xa0\x28\xa8\xcc\x4a\x28\x9a\xdf\x66\x51\xc6\x0f\xe4\x40\xf3\x75\xf6\xd2\x67\x50\x16\xc6\xc6\x38\xdf\xd4\xec\xdc\xb8\x68\x01\x9e\x6b\xc7\x28\x78\x33\x1d\x9b\xf5\x6c\xa1\x52\x75\x9e\xb6\x37\x38\xda\xc7\x2b\xe0\xbd\x8b\x75\x13\x65\xfd\xd8\x24\xbe\x97\x0b\xb0\x8a\x5f\xe0\x81\xf5\xa6\x4a\x75\xc3\x0c\xda\x11\x84\xbc\x50\x3a\x47\x22\x46\xaf\x89\xf3\xc7\x1e\x6e\x75\x43\x7b\x3f\x8a\xcf\xda\x65\xa1\x37\xe4\xc1\xf7\xa2\x38\xb6\xd9\x34\x9e\x04\xf0\x23\x65\xb9\xd4\x9b\x46\xa8\xee\x2b\x5d\xb4\x63\xb2\x25\x12\xad\x28\x76\x5d\xc7\x38\x37\x8e\xc9\x42\xd3\xeb\x31\x68\x45\xd4\xce\x1f\x93\xc9\xc0\x72\xb8\x31\x24\x7a\x64\xf4\xee\x60\xfe\x1e\x6f\x32\xf4\x4c\x26\x16\x93\x01\xe8\x27\x3c\xab\x2b\xb0\x02\x18\xec\x8f\x84\xc2\xc3\xeb\x3c\xed\x77\x7f\xa4\x4f\x8d\xf2\xfc\x7b\x63\x4a\x76\xb1\x00\x1a\x4b\x63\x86\x05\xf4\x7b\x8d\xc0\x45\xfd\x7b\xe4\xdf\x94\x11\x7c\x3e\x1d\xca\x99\xd0\xb8\x73\x69\xdc\xf2\xd9\x90\xfd\x00\xbd\x8c\x5e\x93\xd1\x5c\x8b\xe2\x38\xdf\x42\x96\x19\x68\x0d\xab\xd2\x62\x5d\x93\xb4\xd3\x01\x00\x62\xde\xa3\x5d\xf0\x2a\x3a\x2c\x9c\x9b\x0d\x92\xc7\x64\xc2\x14\xcc\x30\x0a\x79\x25\x19\xdd\x39\x00\x9c\x1c\x16\xfe\x59\x88\x01\x13\xce\xc4\xf1\x11\x60\x5f\x61\x3d\xdd\x83\x4d\xf4\xde\x81\xe7\x3b\x9f\x69\x92\x62\xc4\x27\x95\x14\xcb\xe0\x43\xae\x85\x12\xbc\x46\x03\x7a\x53\x55\xf0\xf7\xe9\x3c\x52\xfe\x54\x67\xd7\xa1\x98\x1f\xc5\x21\xb4\x96\x66\x2b\xfe\xa8\x84\xbd\x51\xa6\x66\xbd\x61\x09\xfe\xa8\x70\xe0\x0a\x08\x11\x82\x55\x4e\xaf\x03\xb6\x22\xb3\xf1\xa0\xad\x0a\x00\x88\xf0\x8f\x0d\x03\xa0\xeb\x18\xf9\x0e\xad\x34\xef\x45\xad\xa9\x72\x6a\x01\x0b\xff\x09\xb1\x70\x5f\x96\xe5\xe0\x14\x5d\x48\x75\x27\xcd\x7a\x60\x06\x28\x57\xaf\x9b\xd1\xd0\x4f\xa2\x22\x7a\x6e\xde\x43\x73\xc9\x09\x22\x06\x58\x4a\xb3\x4c\xd4\x4e\x50\x51\xc3\x14\xfe\xa0\x11\x0e\x8c\x1f\x54\x15\xba\x96\xad\x0d\x8c\x22\x6e\x80\x42\xb1\xfa\xd4\xc4\x41\xe0\xa9\x9a\xa2\x38\x96\x98\x16\xfb\xf6\x77\x30\xa5\xc8\x66\x5c\x6e\xb0\x2a\x26\x05\x8d\x99\xcd\x07\x31\xe2\x37\xe7\x32\x91\xfb\x34\x24\x00\xfa\x9a\x13\x56\x51\x6a\xab\x46\xc8\x01\x1f\x1f\x12\xed\xde\x25\xca\x02\x20\xda\xf1\x8d\x7c\x9f\x30\x29\xc2\x27\x15\xa2\xf2\x28\x12\x47\x6f\x0d\x2c\x06\x9e\xfa\xff\x5e\x0f\x2a\x67\x0c\x68\xae\x79\x5a\xbf\xcd\x71\xae\x6b\xbb\x26\x3f\x5c\x85\xa6\x7b\x92\x75\x41\xc4\x05\x28\xc7\x46\x89\xc9\xc8\x98\x9e\x26\xfb\x62\x96\x0b\x9b\x3d\x23\x93\x8e\x28\x93\x72\x2f\x4f\x7c\x69\x54\x1a\x18\x87\x7c\x2e\xc7\x05\x1b\x5d\x59\x53\x91\xac\xb9\x23\x06\x0f\xde\xc1\x11\xbc\x11\x8e\xbe\x8b\xac\x66\x34\x35\xe2\xb8\xe2\x12\x5e\xd6\x2b\xc2\x87\xe6\xad\xa7\x9a\x72\x48\xc3\x23\xba\xcb\x1d\x6a\xdf\x6f\x10\xe7\xda\xe6\x30\xc8\xd4\xcd\xc0\xac\x38\xbe\x3b\xdf\x76\xb1\xf3\x4f\x09\x15\x19\xa6\xfc\x54\x85\xdb\x53\x6f\x0f\x7a\x7d\x17\x8d\x29\x61\xb8\xac\x12\xc4\xd8\x17\xb9\x20\x39\x39\xab\x8b\x07\x16\xeb\xb1\x19\x24\xad\xae\x55\x0d\x13\x24\x81\x8e\x72\x2f\xde\xd1\x80\x6a\x5b\x33\x2b\x76\x3a\xb4\x3d\x9d\x20\x81\xd2\x6f\xcb\x9a\xd3\xff\x3f\x24\x6a\xdb\x6f\xfb\xa6\x44\x93\x74\xb2\x75\x49\x45\x3b\x19\x3f\x6e\x44\x0b\x4d\x46\xdf\x46\xc6\xde\xb9\x9a\x04\x6b\x3d\x83\x2f\x76\x68\xd2\xad\x91\x71\x69\x3e\x13\x3b\xc8\xd2\x7c\x90\x75\x6c\xaa\x2c\x2b\x58\xa8\x27\xa9\x69\xf5\xe4\x58\x4a\xc5\x26\x45\xd4\x42\xcf\x07\x13\x50\x61\x3f\x6e\xc8\xb1\x88\xd0\xe0\x5f\x55\x51\xbe\xaf\xa7\x2b\x69\xd7\xf4\x00\xd1\xf7\xea\xf1\x0b\x5e\xa5\xe9\x14\x89\x48\x74\x06\x51\xdc\x96\x42\x74\xd0\x0d\x90\x33\xd3\xa1\x62\x2a\xda\xea\x96\xa3\xbc\xeb\xb5\xa3\x90\x8c\x80\x35\xc5\xb0\xdd\x19\x53\x16\xa9\xe4\xf3\xc8\xa2\xe5\xc0\xca\xe1\xf9\x03\xbd\x22\xdc\x07\x1e\x95\x9c\x9b\x81\x23\x40\x72\x04\x42\xcc\x26\x34\xb6\x87\xdb\xf1\xfa\x73\xe5\x5b\xa0\x83\x49\x15\x23\xf1\x85\x4f\xe0\x8c\xc3\xe2\xb9\x01\x1f\x03\x29\x1b\x2d\x37\xc0\x9b\x7e\xd0\x20\x12\x85\x3b\x32\x0c\xc8\x76\x43\x1b\xcc\x67\xc2\xca\x09\x57\xd4\x5f\x63\x8c\x8e\x0d\x39\x2a\xfd\xb2\x21\x85\xc9\x33\x42\x05\xc8\x8a\xb4\x98\xbf\x27\x46\x61\x8e\xdf\x41\x9e\x19\x0e\xd2\x76\x54\x85\xb0\x61\x4f\x35\xc8\x75\x82\x62\x10\x5c\xfe\x4d\x75\xa9\x1d\xcd\x2c\x2b\xf8\x15\x83\x2c\xb1\xed\x69\x6a\xcd\x38\xad\x01\x1c\xec\xc3\xbb\x4c\x31\xfb\x6e\x23\xb4\x73\x94\x9e\x67\xc8\x41\x24\x76\x39\x2a\xdc\x6e\x66\x31\x54\x04\x34\x9f\x63\x2f\x38\xe0\xe9\xb3\xf4\x00\xfd\x34\x13\x32\x6f\x61\x83\xc5\xfe\x38\x09\x03\xa5\x37\x8d\xd0\x6c\x77\x84\x07\xeb\x08\x25\x50\xb2\x32\xea\xca\xbc\x08\x05\xf3\x43\xeb\x75\xc3\xad\x95\xc2\x2c\x61\x19\x7b\x88\x73\xf8\xc4\x85\xad\xec\xf9\xaf\xee\x7b\xbd\xfe\xf2\x5c\x8d\x88\x87\xee\x0d\xc3\xb2\x1d\x27\xc0\x5b\x95\xe4\x52\x69\xf4\x82\x06\xab\x63\x51\x43\xdb\x04\xd2\xde\xb5\x09\xfa\xc5\xfd\x0b\xf5\xcc\xbe\x35\x88\x32\x10\xd9\x6d\x5e\x86\xfb\x36\xa9\x0a\x56\x9a\x09\x9b\xa8\xf0\xb6\xc3\x8e\xc8\x90\xe8\x8d\xaf\xf8\x2f\xc7\xa9\x41\x95\x26\x78\x6d\x3b\x9a\x5b\x5b\xce\xb0\xba\xae\x8e\x25\x48\x7c\x0f\xa3\xea\x02\x23\x8d\x03\x57\xe9\xb6\x2e\x24\xbd\xa3\x56\xe7\x37\xb3\xaf\x0a\x3a\x0a\x5f\x52\x6b\x86\x1e\xc1\x73\x8c\xb6\xe6\x5a\x96\xd3\x1b\xd4\xf6\x3f\x19\x2d\x87\xe8\xe7\x0d\xdb\x89\xd7\x9f\x28\xff\x0d\x51\x9c\xc6\x07\x5e\x6e\x6b\xee\x90\x9e\x31\xb7\x87\x63\xa0\x91\xd0\x17\xa3\x9d\x29\x7e\x05\x85\x8e\x93\x8b\x22\xbd\xe1\x56\x53\xb9\xf5\xf4\xff\x93\x1c\xd0\x1f\x4a\x93\x09\x0e\xce\x1b\xc0\x80\xc3\x24\x6c\x00\xb2\xa0\x37\xfe\xa8\x58\xb7\x26\xcb\x35\xac\x72\xc1\xbc\xac\x30\x00\xc1\x67\x9a\x9c\xa7\x97\xd1\x70\x15\xef\x27\x43\x29\xb8\x95\xd9\xc2\xee\x94\x27\xc5\x69\xb8\x41\xf0\x75\xb4\x28\xfb\x80\x47\xbe\xdc\x49\x49\x04\x05\xe0\xcf\x99\x8b\x9d\x88\x5a\xb7\x4d\xac\x3e\x90\x20\xf5\x63\xb3\xae\x6e\xb8\xd7\x33\x0c\xec\xb9\xe7\x26\x9c\xf7\x57\xf7\x2d\xd6\x5b\x71\x9a\xff\x89\xe8\xa9\xb1\xc3\x2a\x1f\xf4\xca\xf5\xed\x81\xe9\xdf\xa2\x58\xed\x5b\x15\x01\x73\x3d\x2a\xc7\xc1\x84\x5f\x80\x8b\x78\x81\x38\x90\xb9\x69\xe3\xcd\x34\x6b\x3b\x2c\x8c\xba\x40\x62\x9a\x9d\x3b\xf4\x7c\x88\x06\x44\x60\xab\x95\x99\x42\x51\xa7\x4e\x25\x35\xb8\xfa\x17\x1b\xa1\xa7\xe4\xd7\x2d\x48\x0e\xc6\x96\xb0\x2b\xae\x6f\x3d\xc8\x67\x67\xc7\x19\xa5\xa6\x42\x3b\x81\xaa\x64\x20\xf1\x0c\x46\x6f\x9c\x34\x3b\x9a\x81\xdc\xb6\x30\x63\x44\x2f\xbf\xc5\x44\x2f\xbf\x55\xa5\x08\x9c\x0f\xfa\xfd\x78\x1d\x66\x0f\x33\x7f\x94\x6a\xd3\x47\x27\xc6\xb5\x0c\x32\xfb\x59\x94\xb4\xa2\xbe\xf6\x0d\xe3\x2f\xb7\x51\x01\x7f\xdb\xc8\x79\xe8\x6b\x69\x96\xdb\x64\x2a\xb4\xe4\x9c\x83\x53\x88\x7d\xfa\x8f\x87\xc4\x64\xb6\xc1\x18\xd7\x41\xaf\x67\xb3\x99\xc0\x03\xf9\x5b\x32\x69\xca\x7d\x4b\x5c\x91\xd0\x33\x75\xf9\x19\x79\x57\xe4\x64\xde\xa3\xd3\x25\x5d\xca\x6d\xb6\x6a\xb3\x7c\x9a\x72\x77\xdc\xae\xa6\x15\x78\x18\x92\x0f\x08\xc2\xf1\x81\x07\xc3\x0b\xe0\xd3\xb4\xba\x3b\xc7\x49\xe2\xbc\xa8\xfb\x79\x82\xa4\xbd\x00\x28\x93\x43\x1f\x12\x7b\xf1\x77\x1a\xa1\xc8\x02\x9a\x4b\xf7\x4d\x5b\x2d\xf5\x81\x7d\xf5\x15\xab\x23\x87\x73\x6c\xaa\x39\xd1\x06\xa0\x7a\x68\xbe\x44\xb1\x96\x99\xa4\xe3\x33\x2a\x8a\x13\x87\xe3\xed\x40\xe3\x15\xdc\x6a\xbd\x74\xd5\x4a\xef\xac\x0b\xba\x43\x05\xf1\x71\xd0\xce\xfb\x8e\xfa\x03\x94\xbc\xf0\x48\xfc\x53\x2c\xeb\x26\xb9\xbf\x28\x07\x03\xec\x4b\xfa\x35\xa7\x89\x44\x0d\xf0\x15\xc0\x58\xaf\x4e\xc8\xf9\x97\x07\x54\x9a\xb5\xba\x76\x4c\xf8\xd8\x15\x2d\xb8\x82\xb1\xb5\xe6\xfe\xab\xf5\x57\xf7\xcd\xc9\x11\x02\x67\xe6\xdf\xc2\x49\xf2\x0c\x11\xbe\x28\x70\x67\x48\x07\xde\xef\x89\xd5\x86\x13\xaa\xc4\x2b\x40\x7b\xbe\x57\x45\x97\x50\xa4\x7d\xed\xd0\x42\x29\xf7\x2c\x95\x75\x99\x4a\xe5\xaf\xfd\xb5\xbf\x52\xab\xcd\xce\xe9\x09\x70\x91\xb4\xac\x82\x4a\x5f\x3c\xe8\x2d\x59\x10\x95\x20\xef\xf3\xbf\x60\xa1\xc0\x30\x81\xe2\x81\x34\x4b\x7d\xc8\xec\x7d\xd6\x65\x11\x8c\x09\x99\x8e\xb7\xe5\x1d\x91\x84\x7c\xa2\x19\xfa\x12\x6a\xe2\x13\x02\x6d\xf4\x7d\xfc\x86\xc3\x30\xb8\x67\x31\x4b\xb9\x08\x99\xfa\xac\xec\xdf\x21\x8e\xb8\xbf\x43\x39\xe3\xd2\x9c\xa6\x49\x5e\x63\x40\x42\xe8\x12\xbf\x18\xf8\x47\x6d\x96\x3b\x18\xa6\x13\x32\x0c\x54\x63\xff\xed\xf9\x09\xab\xe2\xb3\x05\x03\x1b\xc7\xe2\x5d\x79\x12\xcb\xf2\x63\x4e\xd1\xb2\x2a\xf9\x6d\xa2\x9e\xf3\x1b\xe1\x1e\x5e\xa6\x5e\x3b\x0d\xe7\x80\x04\xb8\x53\x95\x71\xcf\xec\xaa\x29\xe3\xc8\x69\xd6\x83\x84\x3d\x80\xbb\x0b\x5f\x04\xe3\x77\x82\x75\x84\x26\x09\x32\x16\x16\xa4\x51\x42\x11\xe1\xae\xcb\xae\x46\xfa\x26\x15\x9d\x2e\xa6\xd5\x4a\x7b\xfd\xd8\x31\x83\xf8\x14\xad\x4f\xa9\x9d\xa6\x95\xf5\xd7\x7f\xed\xbf\x98\x66\xf0\xe0\xc7\xd4\x43\x85\x8d\x0b\x9f\xe5\x0a\x53\x10\x4d\x35\x7d\xd9\xbe\x9b\xae\xb8\xe2\x02\x80\x78\xc7\xf0\x46\x7a\x43\x85\xf1\xbe\xe9\xd8\x19\x52\x0a\xd7\xc8\x16\x1d\xb9\xef\x61\x80\x9c\x8c\x5d\x2d\xb0\x89\x4b\x27\x96\x03\xbd\x84\x94\xe9\x52\x96\x16\x22\x17\x5d\x0e\xb2\xf3\xcb\xa9\x3f\xf2\x24\xf5\xe5\xe4\xa6\x88\xf2\x65\xe0\xbc\x9c\xae\x2e\x15\x95\x8e\x93\x7e\xf3\x2d\xef\x36\xf5\x4d\x94\x14\x53\xe3\x52\x6a\xe5\xf3\xa2\xc6\x0e\xae\x17\xd8\xf4\x23\x55\xbc\x26\x6d\x9b\x44\x2e\x8b\xe8\xd2\x8d\x54\xb3\xbc\x34\xfc\xa5\xc9\x52\xb4\x4d\x56\xa3\x2c\x4d\xc0\x8b\x37\x29\xef\x4e\xcd\x71\x15\x1d\x32\xf5\x5e\xda\x8e\x96\x45\x80\xa7\x34\x53\x2e\x64\xa3\x0e\xf2\x49\xb0\xcd\x57\x94\x67\xa0\xc6\xd2\x93\x7a\xea\x39\xc1\xfa\xe0\x31\x15\x69\x56\x3e\x5a\x0e\xc6\x3e\xd7\x55\x5b\x9e\x39\x7a\x1d\xce\xb6\x25\x5b\x84\x38\x19\x10\x13\xd4\x2b\xf5\x7a\x8c\xfd\x3e\x2b\x4c\x16\x4d\xd3\xf2\x7a\x20\x73\xee\x04\x27\x43\x1e\x11\xb9\x74\xf8\xb7\x7f\xe8\xbd\xd3\x32\xcc\xc9\xd2\xb6\x9d\x22\x40\xec\x69\x2c\x42\x25\x53\x6a\x04\x62\xdc\xa3\xde\xda\xad\x44\xda\x1a\xea\x09\x04\xca\xd9\x55\x38\x78\x83\xd4\x5c\x1e\x0e\x03\xf8\x6e\x69\x90\x47\x89\x55\x1d\x03\x02\x1e\xfe\x78\x18\x92\x00\x3f\x1e\xe3\x2c\x6e\x9b\xb7\xa4\x83\x02\xe8\xba\xe3\xa4\xa0\x37\x22\xdd\x8e\x0f\x1b\xdc\x5d\x1e\xf6\x4c\xd7\x24\x6d\x14\x29\x80\x95\x9b\x11\x27\x0d\x5d\x2b\x57\xb1\x1e\x1d\x9f\x1d\xb9\xe0\x9f\x0e\x69\xdd\x5c\x6b\x30\x05\x5e\x88\x88\x1e\x6b\x92\xfe\x1f\x2a\x51\x80\x71\x1d\x1f\x86\x3a\xea\xa4\x84\x6b\xe9\xe0\xb5\xd2\xc2\x13\x4d\xc3\xfe\x5e\x65\x63\x7c\xd5\x97\x84\x33\x91\x0b\xa9\x91\x04\xcd\x06\x1d\xd6\x1b\x8f\xcc\xa4\x67\xe9\xa0\xd3\x55\xa3\xa7\xd8\x65\xae\x39\x9c\x64\x71\xc4\x72\x51\x66\xbb\x6a\xac\x9d\xe0\x6b\xb3\x6f\xe3\xc8\x46\x7a\xe7\xac\xd4\xd1\x54\x59\xac\x11\x12\x2e\x1a\xb0\x78\xc1\xbe\xf2\x77\x94\x39\x4b\x83\x4b\x6c\x9f\x3b\xe3\x4a\x90\xcb\xc5\x13\x35\xe2\xdb\x95\xc1\xc4\x1f\xfe\x08\xbf\x8a\x83\x13\xbd\xb8\x2a\xe8\x35\x24\x36\x57\xb5\x56\x38\x9d\xbf\xd9\xa0\x94\xf3\x37\x87\x41\xa6\x08\x6d\x36\xc8\x78\x4e\x09\xae\x1b\xd1\xf2\x7d\xa4\x7f\xf4\x37\x1a\xb4\xcb\x7f\x24\xd3\x87\x99\x38\x41\x03\x95\xaf\x67\x91\xaa\xde\xe2\x69\x94\xc5\xc0\xf1\x2b\x97\x2f\x83\x9c\xeb\x95\x46\x68\xc4\x5f\xb3\xc2\xfb\x5d\xa4\x89\xb8\xba\x7e\xaf\x2c\x90\xa6\xf2\x78\xa2\x3a\x94\xa6\x1e\xc1\x8d\x91\xc6\xab\x8e\x4f\x08\xee\xb7\x6a\x4c\xea\x4d\x25\xcf\x55\x6a\x3c\x9f\x86\x53\xe6\x27\x82\xb4\x13\x13\xab\xb4\x74\xad\x4c\x14\xe7\xfd\x28\x21\x5e\x21\xf8\xf9\x7a\x1d\x28\xff\xd2\xb8\x0d\xb0\x32\x8e\x80\x4b\x02\xf6\xf7\x08\x06\x4f\x29\x0b\xb7\x07\x59\xd5\x3f\xdb\x0c\xd3\x72\x82\x48\xc8\x6e\xe0\x55\x00\xfb\xb9\x87\x0d\x0a\xfa\xd3\x3f\xd3\xa4\x44\xd1\x7d\xd9\x6e\xca\xee\x26\xd8\x38\x9f\x18\x08\x9d\x0d\x4f\x07\x66\xf8\xd8\xf4\x03\x7d\x2e\xfe\x15\xe7\xb9\x5e\x57\x85\x61\x69\x66\x3b\x69\xa2\xf0\x1d\x18\xbf\xff\x9e\x4a\xd7\xdf\xc0\x8e\x55\xcd\x27\x66\x13\xcf\x6c\x3b\x52\xf2\x31\x75\x52\xb6\x35\x03\xcb\xf4\xb6\x31\x35\xb0\xb4\xb3\xbe\x27\xc0\x1a\x74\x52\x7c\xcb\x64\xd0\x3f\x3a\x4e\xcd\x8b\x30\x48\xc8\x09\x9e\x96\x81\x50\x1d\x69\x86\xc0\x6f\x92\x11\xba\x80\x9d\x42\x2c\x84\x6e\xe8\x77\x35\x89\x8f\xfe\xc6\x44\x72\xea\xd5\x7d\xf5\x7c\xd0\xea\xd6\xa4\xb2\x8e\x30\x07\x4a\xe7\x7a\x4d\x7d\x5e\xe2\x5f\x0a\xda\xbd\x16\x12\x38\xc7\xe4\xe0\xd0\xeb\x71\xd4\xb8\x1d\xd4\x48\xfb\xe0\x22\x09\xd4\x4c\xc2\x36\x7e\xb9\x9e\x77\x53\x30\x5e\xe2\x85\xee\x90\xf8\xae\xb2\x5f\xe2\xe5\x26\xbb\xf0\x90\x86\x5f\x53\x3e\x31\x2c\xd0\xed\xcd\xff\x9f\xb1\x37\x8f\x91\x24\x4b\xef\xc3\xba\xb3\xaa\xaf\xb9\xaf\x25\x57\xa2\x04\xa5\xa8\x35\x47\xb0\xc6\xbb\x22\xf9\x87\x0c\xfe\x13\xa9\xae\xd6\xce\x76\x49\x5b\x53\xa8\xe9\xed\xa1\x06\x04\xdc\x2f\x23\x5f\x65\xc6\x54\x64\x44\x6e\x1c\x55\x53\x6d\xff\x65\x1b\x30\xe0\xbf\x7c\x48\x26\x04\xc3\xb0\x4c\x11\x26\x41\x91\x36\xa9\x25\xb5\xa4\x48\x3a\x73\x57\xe4\x0e\xf7\x9e\x6b\x77\xee\x9e\xbe\xef\xfb\x3e\xab\x8d\xf8\x7e\xdf\xf7\xde\x17\x95\x31\xb4\x81\xf9\x23\x72\xba\xaa\x32\x33\xe2\xbd\xef\x7d\xc7\xef\x50\x26\x81\x17\x39\x46\x21\x8d\xba\xaa\x9c\x44\x4c\x92\xa4\x65\x12\xda\xea\xcc\x9e\x55\x40\xec\x1f\x8e\xbd\xa6\x23\xab\x06\x3a\x1e\xc0\xfc\xbc\x33\x84\x7d\x52\x5b\xb3\x0d\x78\x84\xcf\xea\x7c\xaa\x7b\x73\x44\xc1\xcb\xd3\xd1\x28\xcd\x89\xf3\x85\x32\x42\xf4\x76\xab\xdf\xc4\x3c\xe5\x93\x40\x69\x5e\x5c\x24\x34\x22\xff\x03\x7f\x0d\x4c\x57\xae\xd4\x67\x5c\xab\x76\xfb\x66\x9e\xf2\xcb\x6e\x6d\x78\x6d\x08\xd6\xa7\x17\x92\xb6\xef\xa8\x9e\xa1\xe7\x28\x7c\xed\x86\xf8\xd2\x37\x43\x59\xf1\x48\x09\x4f\x69\xd0\xd1\x29\xaf\x4f\x95\x16\x85\x4d\x66\x3d\xfd\x8c\xd7\x2c\x72\x25\x80\x4b\x00\x1a\xf8\x7d\x65\x6f\x79\x74\xaa\x46\x7e\xa1\x9d\x99\x55\xc9\x0e\x31\xd9\x7e\x17\x8b\x9c\x5f\x34\x49\xf8\x0c\x6d\x9e\x47\x46\xf4\xee\x6b\x0d\x3b\xc1\xef\x6d\x7e\x9f\xbd\x0b\xa4\x0a\x40\x65\x80\x02\xe1\x08\x76\xeb\xac\x52\x1b\x16\xb3\x55\x80\xcf\x50\xb5\xfc\x9b\xb1\x22\x06\x7c\x93\x1e\xba\x4a\x2b\x5f\xe5\x23\xf3\x0a\x3d\x02\xfe\x8d\xa9\x8f\xb0\xb4\x9b\xb0\xa3\xb3\x5a\x10\xc0\xdb\x27\x7e\x75\x96\x42\x0b\x52\xf6\x33\xb4\xe7\xd1\x8d\x3a\x3d\x76\xaa\xb1\x55\x29\x13\x6a\xf3\x2d\xb1\xff\x69\x39\x2d\x8f\xf3\xca\x14\xbd\x2b\x07\x85\x73\x5e\xf3\x7a\x4a\x4a\x9e\xac\x4c\x38\x59\xae\x8e\x51\xe6\x65\xe1\xdc\x16\x92\x56\x6d\xc0\xdd\xb3\x05\xc4\xa3\xfc\xc6\xa5\xf7\x97\x4d\xbc\x19\x9b\xb9\x67\x5f\x7b\x18\xe5\x79\xf5\xdf\x68\x14\x69\x15\x7c\x3c\x31\x91\xc4\xf7\x38\xb8\xae\x4d\xc2\xc1\xd0\x64\x2b\xdb\x5b\x5e\x28\x4e\x4f\x7c\x2e\x52\xfe\x22\x9e\xfb\xd5\x07\x11\xf3\x55\x6f\x84\xc9\xd1\x11\x09\xe2\xd1\xa9\x55\xf4\xb5\xaf\xb4\x0b\x33\x88\x0a\xa9\xa4\xb1\xda\xfe\x42\x43\xf3\xfe\x22\x50\x32\xdd\xab\x69\x4c\x3c\x13\x93\xad\xcf\xaa\xde\x2f\x47\x0d\x8c\x5b\xd1\x26\x17\x68\x81\x42\xc1\xdc\x6b\xe2\x75\x8c\x62\x93\x17\xdc\xf2\x10\x20\xa6\x9f\xa6\x9c\x9f\x8a\x9d\x07\x0e\xb4\xbb\x51\x1f\xc5\xb8\xe6\x08\xe1\x1b\x9e\xad\xa9\x4e\x37\xc4\xff\x3d\x6d\x93\x85\x5c\xdd\x20\xe2\xb1\xb9\x37\xbf\x08\x36\x67\xa0\x2f\xb4\x87\x26\x29\x97\x4d\x58\x94\x99\x3b\x71\x45\xe7\xd1\x03\xa6\x4f\x06\x3f\xff\x19\xa9\x6b\x98\x0e\x87\x36\x3b\xd8\x35\xc9\x8a\xd2\x99\xe0\xe7\xc2\x2f\x54\xc8\xfc\x7a\x99\x16\x58\xdb\xdb\xfd\x26\xbd\x3d\xf6\xb8\x90\xeb\x81\x32\x05\xfd\x70\xec\x19\x5c\x27\x03\x05\x2c\x0a\x7c\x13\x5b\xd9\xd5\xd8\x22\xca\xdc\xbc\x13\xa9\xe2\xe5\x9a\x37\x40\xf5\x36\x38\x38\xbe\xed\xf6\x5b\x49\x14\xa1\x52\xd5\x6f\xfc\xd0\x03\x0f\x37\x3f\xe9\x28\xb2\xac\x23\x58\x25\x0c\xdb\x95\x53\x9a\x7e\x48\xdb\x3b\x6a\x4d\x1e\x1a\xfb\x96\x04\x50\x94\xe8\xbe\xfd\xdf\x81\x4a\x1d\x2e\xb8\xdc\xac\x5b\xe6\xeb\x3b\xab\x9f\x42\xf0\x6e\x41\xad\x1d\xb1\xe6\x1d\xac\x42\xb4\x06\xee\xe9\xe1\x26\x7a\xb8\xf8\xc2\xe7\xc7\xca\x00\xfd\xa4\x9e\xf6\x00\xe3\x85\x7a\xb1\x3d\x65\xf9\x30\x37\xd7\x1e\xc5\x65\xd2\x97\x68\x22\x66\xfb\xf4\x31\xa5\x4d\xb1\xf9\x28\xa9\x76\xbd\x49\x12\x9b\xa1\x06\xc7\x5a\x39\xaa\xd6\xcd\xd1\xa6\x7a\x6a\x54\xe6\x34\xab\x53\x8e\x77\x67\xe9\xf4\xe2\xeb\x06\x6a\xfe\x9e\xf6\xc0\xc6\xbd\x19\x5f\x80\x30\xc7\x0c\x67\x32\x4c\x33\xd1\xe7\xfe\xa0\xa9\x41\x6b\xc2\xb8\x6c\xf9\xb1\x48\x81\xdb\xc2\x2f\x1c\x44\x21\xcc\xca\x1e\xab\x51\x32\xf0\x93\xee\x18\x76\x1b\xba\xae\x38\x84\x8f\xe0\x50\xe1\x3d\xd9\x24\x33\x3f\xb2\xe9\x28\x76\x30\x43\xa7\xc5\x5b\xfd\x69\x7e\x31\x2d\x47\x34\x57\x15\x1f\x61\x4a\x23\x9a\xfd\xbb\x1d\xa5\x46\xa1\x29\x2e\x28\x3c\x40\x11\x85\x2b\xb6\x60\xf9\x3c\x24\xec\xe7\x54\xf2\x7e\x2e\x78\x42\xb5\x94\x93\x28\xc4\x18\x12\x61\xe0\xe6\x58\xe9\xd4\xbd\x41\x8f\x8b\xff\x41\xcb\x67\xbe\x31\xa5\xc0\x52\x3d\x87\x24\xdd\xa6\xd0\x32\xf0\x94\x47\x8f\x7a\xcb\xa4\xaa\x23\xd8\xc4\x55\x6d\xd0\xed\x1d\xa5\x5b\x78\x4a\xb5\xb4\x8a\x34\x1f\x44\x5d\xa0\x1f\x98\x34\xa4\xec\xbb\x6e\x4f\x3d\xc8\xf9\xf9\xf6\x72\x69\x01\x6f\xc3\xb1\x00\x79\x5e\xbe\x56\x06\xd5\xa3\x2c\x7d\x0d\x9a\x7e\x33\x4a\x7d\xed\x56\xcd\xc5\x8d\xbe\xa9\x10\x2d\x9e\xd5\x63\xb2\x5e\x14\x4a\x30\x58\xe0\xb9\xe3\x7b\xb8\x31\xfc\xc2\x71\x46\x4d\xd9\x2f\xf3\x22\xf2\x80\x52\xd6\xfb\xd6\x2a\xea\x4d\xf0\xf4\xc5\x76\x2f\xaa\x73\xc1\xb9\x81\x23\x3c\x5f\xcf\x2f\x19\x9a\x78\x94\x99\x90\x60\x26\xf4\xf3\xda\x13\x5b\xdc\xf8\xe9\x77\x85\xac\xd8\x50\x85\x8e\xb2\x74\xe8\xc5\xcb\xd0\xf3\xf9\xb6\x06\x04\x7c\xdb\x5b\x79\x25\xd1\xf2\x72\xb5\xac\xbe\xf6\x15\x67\x1c\xa2\x58\x9f\x67\x1b\x7d\x5f\xcc\xd0\x66\x51\x28\xb3\x3f\xf4\xbc\x4e\x2b\xce\xd9\x69\x95\x88\xe4\xe1\x60\xcd\x64\x07\x5b\x9a\x3c\xc2\xd4\x0a\x7e\xd1\x78\xae\xe5\xf6\x75\xad\x81\x7f\x4b\x39\xd2\xdd\xd2\x8e\x91\xb6\xf7\xb8\x47\x95\xde\x86\x20\x2e\xf2\x86\x2b\xa8\x55\xb1\xeb\x4f\x23\xa3\x13\x33\x1b\x65\x77\x71\x8d\xfc\x80\xa5\xf5\xac\x25\x54\xb8\x5a\x75\x9a\xbd\x5e\x07\xff\x4d\xda\x06\xd8\x12\x27\x28\xab\x43\xb9\x77\x8e\xa2\x3f\xdb\xd6\xd6\xda\xd8\x1e\x4b\x97\x97\xc9\x7a\xab\x35\x37\xc7\x1b\xf7\x3d\x02\xb5\xf2\xb5\x02\xfa\x76\x63\x33\xb4\xe0\x0c\xe0\x73\xfe\x84\xee\xd9\xc6\xd5\xa0\xb5\xef\x25\xde\x75\x67\x1a\xda\xa4\x7b\xda\x51\x92\xa4\x23\x13\x6a\xaa\xcf\x58\x53\x7d\xd4\xe9\x5c\xd8\xd8\xae\x46\x79\x94\x26\xdb\xe9\x8e\xa0\x4e\xba\x46\xdf\xc2\x69\xee\x3b\x29\x81\x6b\x58\x77\x48\x97\x59\xbb\x13\xdf\x1b\x1d\x7f\xd4\xfb\x97\xa7\x90\x45\xfb\x5e\x6a\x77\x4d\xf2\x7a\x95\x0a\xa0\x06\x51\x22\x5a\x8b\x4e\x44\x6b\x73\xa3\x9f\xd8\x3f\x36\xb1\x99\x71\x0b\x19\xd9\xc3\xdd\x40\x79\x98\xdf\xd5\x28\x63\xdb\xb3\x99\x89\x9f\x54\xe3\xe2\xb3\x78\xd2\x9e\x6b\x25\xa3\x4f\xa6\x1f\xb3\x7a\x25\x5a\x3c\xae\x3d\xe8\x08\x73\xbf\x1e\xa8\x06\xef\xfb\x94\x90\xe0\x6d\x51\xa2\x6e\xdc\x1f\xcf\x68\x9b\x86\x96\x33\xfc\x79\x0b\xed\x2b\x0c\xba\xee\xc1\x3d\xd4\x05\x6d\xa7\xe7\x70\x24\xf0\xc3\xca\x23\x53\x61\x63\x7e\xbe\x9d\x59\xbb\xcc\x45\x81\x43\x9d\x2e\x2c\x7c\x26\xea\x74\xef\x42\xbb\x57\x66\xa2\xac\xee\x72\xc8\x96\x13\x02\x3a\x3b\x35\x4e\x21\x14\x71\x41\xb0\xbe\x78\x1d\x4d\x2b\x61\x67\x54\x37\x8b\xaf\xa7\xc1\x80\x2f\xbd\xdc\x5e\x8e\x4d\x1f\x2e\x9e\x8e\x21\x0b\x5b\x41\x71\x55\xfc\x9b\x6e\x86\x12\xa7\x59\xba\x1c\x97\x69\x96\x86\x26\xeb\xa6\x22\x81\x2c\x2c\x57\xfa\x82\xa2\xfb\x21\xd9\xdd\xc0\x9a\x5e\x9c\x4a\x58\x46\xb3\x1c\x89\x0f\x5f\xab\xd1\x8b\x59\x8d\x56\xa9\xaf\x81\x8e\x27\x9a\xf6\x7c\xad\xce\xd0\x61\x94\xa4\x59\x54\xac\xa3\xc1\x2f\x9a\x1a\xd5\xcf\x8a\x16\x81\xeb\xb9\x67\x7d\x93\x44\x07\x2d\x9d\xcc\x72\x13\xaa\x1f\x94\x9b\x33\x3d\x69\x30\xfd\xcc\x5a\x86\xd6\xa2\x6a\xbb\xac\xdd\x8b\x7e\x4b\xb9\xfe\x11\x9f\x50\xf9\xf7\x0c\x87\x69\xcf\x14\xcc\x59\x47\xbe\x00\x07\x52\xbe\x9e\x3a\x19\xf7\xef\x6e\x0f\x22\x19\x9f\x88\x0b\x72\xcb\x19\x6b\x9f\x56\xf3\xaf\x7f\x9c\xa1\xa8\xc3\xba\x3d\xa4\xa9\x4d\x87\x5c\x26\x94\x17\x99\x59\x57\x3e\x28\xb7\x94\x0f\xca\xb4\x0c\xfe\xbe\x97\xda\x55\xd0\x80\x6c\x25\x1a\x1a\xb7\x14\x8e\x94\xdf\x43\xbe\xaa\xcf\x4b\xba\x71\x59\x45\xb4\xe7\x9f\x17\xb6\x26\x9a\xc2\xae\x6e\xf4\x5a\xe6\x47\xc7\x3e\xc2\x27\xb6\xa0\xee\x37\xee\x05\x6a\x68\x01\x0d\xd1\xef\xa3\x55\xc6\xc6\x9b\xfc\x42\x0b\xe8\x6e\xa0\x2b\xcd\xe2\x65\xf4\x41\x91\x60\xb3\xed\x0e\xff\x61\x25\xd4\x95\x8e\xa2\x24\x4a\x93\x5d\xaa\x09\x70\x0c\x7f\x44\xf0\xf2\xad\x05\x0f\x73\x51\x20\x83\xa3\xc8\xd2\xf9\x57\x10\x55\x10\x3b\xc1\x2f\xc2\xd8\xfc\x08\xad\x24\xf4\xb9\x0f\x53\xe2\x04\xe6\xcd\x5f\x4e\xcd\xaf\x68\x77\xb2\x4a\xa7\x74\x93\xd9\x3c\x9f\x5f\x34\xc1\x4c\xa3\x24\x8c\x8a\x4d\x18\x9e\x33\x0a\xc3\x73\xc6\x4d\x9d\x87\x76\xd8\xb5\x19\x37\xdf\x50\x4f\xcc\x4e\xb4\x33\xc5\x6f\x62\x09\xa3\x67\x31\xdb\x69\x80\x0c\x2d\x67\x51\x7f\x50\xd8\x84\x1d\x61\x6b\x7a\x14\xa2\x51\xf5\xb8\x6a\xbe\x1a\xc0\x0e\xb1\x87\x6f\x2b\x40\x3c\x7a\x8c\x9a\x33\xc6\x3f\x13\xec\xe4\x77\xeb\x81\x1e\x85\x6f\x7e\x7e\xdc\xfa\x67\xd2\x81\x3b\x15\xcc\xbc\xfc\xcf\xbf\xca\xd9\xd1\x74\x99\xbc\xb0\xf0\x72\xdb\xc4\xf1\xb6\x1a\xba\x8b\x7a\xa6\x32\xb8\xf4\xfa\xf8\x77\xc6\x2a\x69\x38\x4f\xb1\x1a\xb8\x87\x56\xa7\x89\x75\x68\xe2\x18\x3a\x0a\x0e\xde\xb6\xe4\x21\x6d\x8d\x4f\x93\xa6\xf5\xfb\xa5\x27\xfc\x4e\xa0\xc6\x82\xef\x28\xea\x68\x41\x2e\x08\xb0\x89\x7a\xd1\x0b\x78\xba\x11\x37\x96\x60\xa3\x18\xc7\x23\x7e\xba\xc6\x49\x17\x7a\x27\x47\x35\xda\xe7\xe8\x54\x48\xaf\x0a\x42\x72\x52\x4c\x2c\xe6\x86\xc2\xce\x52\x12\xfa\x5c\x2f\x48\x53\xc8\x2b\xd2\xa4\x55\x68\x2d\x73\x1e\x69\x49\xd3\x58\x77\x90\x37\x5b\x66\xcd\xed\x69\x2f\x2d\xce\x2a\xec\x37\x8f\xa9\x1c\x6d\xc7\xe1\x44\x20\x06\xc8\xd7\x53\x23\xb5\xbd\x0b\xa4\x18\x12\x25\x36\x29\xc4\xf2\xd0\xc9\x01\xa9\x91\x5a\xb0\x19\x38\x33\xb7\xa7\x3d\x8c\xc2\x2c\x1d\x65\x29\x18\xdd\x2d\x3f\xf1\x46\xcf\x46\x7c\xc7\xa7\x5d\x2a\xf6\x54\x65\xc3\xc8\xf8\x0e\x8a\x34\x3e\x3c\xc6\xe7\xa2\x0e\x7c\x51\x1c\xe7\x8f\xaa\x49\x3e\xb7\x78\x45\xdd\x98\x6e\x2a\xeb\xe4\x20\xcd\x44\x3b\xe4\xba\x12\x92\xfb\x40\x39\xce\x5c\xd3\x58\x05\x20\x98\xd1\x25\xd8\x85\x79\x01\x12\xbd\x1f\x07\x3e\x6c\xfe\x79\xe0\x71\x3e\x17\x1d\xfa\x29\x31\x59\x96\xae\xd9\xbc\x98\xa1\x1e\x8c\x66\x3f\x3a\xb1\x6e\x07\xd6\x3b\x39\x75\xeb\xf7\xef\x7e\x51\xca\x27\x97\x73\x30\x99\xb9\x46\x6c\xf6\x4c\x61\x33\x1a\x59\x93\x6d\xf7\xad\xb9\x9b\x14\xfe\x44\xb9\x44\xb9\x15\x00\x73\x28\xb0\x08\xda\xac\x4a\xf8\x44\x44\x64\x6e\xaa\xec\x8f\x33\x1f\xc2\x07\xc9\x27\xa6\x7b\xc9\x2f\x90\xca\x21\x68\x9f\x54\x01\xfc\xe4\xd4\xe9\xba\x77\xa1\x3d\x4c\x33\x0b\x37\x51\x84\xef\xc7\x3a\x1e\xde\xb3\x03\xce\xf0\xe8\x31\xfd\x55\xa0\xcf\xa6\x26\xb9\x95\xc2\x14\x65\x91\x66\x38\x5e\x5d\x47\x53\x69\xa0\x3f\x55\x23\x39\x9a\x64\x7d\x17\xa5\x8b\xce\x9b\xba\xfa\xba\x38\x20\xa0\xe8\xc6\xd7\x58\x03\x54\x07\xfc\xde\xd3\x1d\xaf\x41\x77\x4f\x81\x5a\xce\x29\x7f\xda\x13\xea\xa4\x39\xc1\xd3\x08\x19\x4c\xf9\x3c\xc0\x64\x2b\x4a\x93\x06\x22\xc3\x7c\xad\x35\x29\xb9\xbd\x22\x73\x26\x35\x73\x1a\x7b\xff\xe1\xbe\x59\x33\x85\x64\x29\x02\xf7\xf6\xdf\xfc\x82\x2a\xe0\x33\x1b\x97\x61\x41\x96\x9d\x3e\xc3\xd3\xa7\xc0\xc5\x26\x43\xe8\x51\xd9\xeb\xb9\x2d\x88\x54\xfe\xb8\x92\x24\x39\xde\x64\xee\x97\x96\x45\x1e\xf5\x2c\x21\x25\x71\x3e\xfd\x30\xd0\x26\x59\x08\xb2\x92\x13\x54\x7f\xcc\x0d\x16\x7c\xc9\x7a\xde\x63\xca\xe2\x2a\x01\x76\x9c\x5b\x3c\x59\x21\xf0\x7e\x96\xaf\xeb\xfa\x2f\x64\x33\xde\x99\xec\x43\xc5\x63\x63\x4f\x66\x6c\xf3\x7b\x4d\xfd\xb7\xcc\x86\x69\xd6\x43\x4f\x46\x30\xa1\x1e\xe5\xc1\x22\xf0\xc2\x3a\xf2\xa3\x61\xcc\x05\x05\x78\xaa\x9c\x7c\x87\x36\x23\xfe\xea\xd2\x6e\xae\x11\x4e\xd2\x5d\xe7\xeb\x26\x67\xd9\xa1\xe5\x30\x8b\xce\xea\x51\xd5\x65\x3d\x3a\x85\xce\xad\xce\xbc\x6e\x96\x9a\x5e\x68\x72\x9f\x93\xa0\x06\xfb\xc1\x58\x09\xcb\xfc\x20\xd0\x7a\x24\x49\x91\x99\xb0\xc8\x77\x55\x1f\x0b\x3d\x9b\xef\x2a\xf7\xdf\x16\x34\xb1\xa0\x0a\x79\x6b\xac\xe4\x60\xcf\xd7\xdc\xe1\x0f\x83\x01\x8d\x13\xe0\x16\xa0\xb3\x6e\xf2\xe9\xa4\x41\x9f\xeb\x68\xc7\x77\xaf\x86\xd5\x33\xab\x51\x0f\x75\x31\xda\x8e\xdf\xc5\xe7\xc5\xcd\xbd\x12\x68\xd2\xf4\x43\xa5\xca\x7a\x92\xd0\x3d\x38\xc7\xae\x29\x37\xe5\x0b\x2a\x10\x2e\x47\xd9\xd0\xf6\x66\x7d\xe3\xf4\xd0\x58\x51\x20\x37\x94\xfb\xd2\x45\xe5\xfa\xfb\xb1\x92\xd6\x48\x33\x1b\x47\x09\x0a\x14\xa4\xd3\x30\xed\xe6\xeb\x26\xfa\x57\x68\xbc\xd8\x1c\x62\xfd\xc3\xa0\xa5\xdc\x6b\xe8\x18\x12\x0c\xee\xe6\x07\x59\x1d\x7a\xe9\xaa\xcd\xd6\x06\x36\x1e\xba\x07\x29\x4a\xfe\x9e\xfe\x7c\xa1\xb1\x56\xb4\x79\x58\xf6\xd2\x21\xce\x08\x19\x99\x2b\xb5\xed\x63\xcd\x49\x5b\x3f\xdd\xee\x2d\x88\x37\x02\x25\x5e\xc4\x60\x35\xb6\xa5\x18\xd7\xf0\xcd\x8e\x9e\x77\x33\xa8\x4d\xe5\xbc\x06\x46\x37\x4d\xf3\x82\x4c\x15\x1c\x8f\xc7\xff\x20\x8f\xc9\x84\xc9\xd4\x72\x2c\xfc\x3b\x58\x4e\xc2\x77\x6a\x80\xa8\x45\xc9\xaa\xcd\x8b\x3a\x92\xe3\xba\xe2\x4f\x5d\x1f\x7f\xd6\x58\x25\x4a\x0a\x9b\x8d\xca\x6e\xcc\x00\x79\x4c\x8d\x19\xcc\xc9\x2f\xa6\x7a\xeb\x07\x0e\xb4\x7b\xe9\x5a\x52\x44\x43\x50\xd2\xb4\x2c\xbd\x5b\x13\x5f\x7e\x85\x9b\x34\x9f\xea\xa1\x46\x5e\x0e\x47\x0e\x2d\xcc\x1d\x88\xc0\x07\x7e\xad\xee\x68\x6d\xef\x49\xdf\x08\xfb\xcd\x9f\xeb\x78\x9a\xc3\x63\x13\x35\x6f\xd8\x85\x73\x11\x67\x0a\xb3\x9a\x29\x87\x9c\x61\x25\x3d\x4c\x71\xff\x36\x14\x1f\xb1\x29\x1f\xa3\xbd\x07\x18\xdb\x06\x35\xe2\x70\xb0\x43\xa9\x48\x84\x4e\x29\x3b\x11\x30\x8a\xc7\x4a\x74\x9e\xa5\xd4\x47\x68\x65\xfe\x5b\xb3\x55\x9f\xc8\xb7\x36\xa8\x11\x0f\x6d\x95\xba\x97\x59\x9f\x7c\x48\x3d\x3c\xf2\x23\x7a\xdc\x7c\xad\x9a\x76\x45\xc4\xbd\x38\xac\x97\xeb\x4a\x7f\xe6\x9c\x8e\x2b\x1f\x7a\xa6\xad\x4d\xb2\x3a\x3e\x92\xe9\x1d\x22\xbe\x35\xcd\xdf\x5b\x6c\x27\xd6\x3a\x29\x0b\x97\xfc\xfa\x44\xb8\x06\xd1\x18\xda\x90\xa2\xb6\x40\xca\xd5\x00\xee\xa4\x92\x9e\xed\x67\xd6\x14\x36\x53\x42\xca\x6c\xd9\x80\x98\x76\x0d\xfb\x88\x5f\xa8\xfc\xe2\x96\x46\x4f\x9d\x0f\x6a\x46\x23\x9e\x4e\xdb\x2f\xbb\x36\x63\x59\x5b\x8d\x16\x12\xec\x76\xf5\x01\xf1\x4c\x3e\xa5\x7d\xc9\x6a\x5c\x5a\xab\xac\xd5\xd1\xbd\xe0\x26\xaf\x28\xd3\x2b\xe3\x02\xfc\x63\x81\x4d\x6b\x41\xec\x06\x71\xf1\x85\x76\xcf\x8a\x6c\x36\xf2\xa8\x77\xc6\xbe\x33\xf5\x8e\x73\x6c\x0d\xd3\xe1\xa8\x2c\x6c\x16\x9b\x84\x8b\x4b\x7c\xdf\xc3\x63\x8d\x77\x51\x20\xfa\x5b\x35\xc3\xbe\xa8\x88\x48\x9f\x92\x40\x67\x68\x21\xa1\x58\x71\xf7\x56\xe3\xe6\x65\x65\x94\xb9\x5d\x2e\x63\xa2\xad\xe9\xba\x0e\x27\x2e\x3c\xb4\xd1\x59\x3e\xd2\x30\x69\x5a\x62\xfe\x1e\x08\x69\x3c\x02\xa4\xf7\x94\x71\xa0\x67\xdd\x78\x0f\x57\x83\x21\x8a\xac\x6b\x85\xb5\xf9\x48\xcd\x8d\xaa\x33\xd7\x6e\x52\x28\x53\x84\x8b\xcf\xa9\x6f\xde\xb3\xdd\xc2\xf6\x12\xcb\x9e\xbf\xf8\x1e\x4c\x1f\xe7\x17\x4a\x9b\xfc\x4b\xbf\x08\x74\x3f\x7b\x2b\x05\x8a\x9d\x75\x69\xfc\x9c\x97\x4b\x1a\xd9\x30\x32\x71\x74\xd0\x32\x17\x02\x88\xac\xbb\x0a\x88\xb0\x75\xe2\x69\x09\x9f\x4e\x0d\xb7\x89\x0b\x31\xaa\x6e\x4f\x99\x88\x4e\x76\x8d\x9b\x2d\x2c\x25\xc9\xde\xc2\xd8\xd0\x09\xbf\xc8\x6b\x51\x2b\x2f\x23\x7b\x72\x90\xe1\x6a\x4b\xb2\x00\x29\x4a\x34\x87\xc6\x9c\x9f\x77\x5d\xa7\x86\xc5\x3b\x34\x19\xd5\x46\x0e\x0f\x70\x57\xe1\x01\xee\xba\x4e\xcc\x72\x9a\x0d\xcb\x18\x76\xff\xf8\xaa\xf7\xb5\x37\x33\x96\x88\x10\xdf\x9b\xac\x9d\xf3\x32\x59\x69\x29\x1b\x90\xb7\x02\x9f\x3b\xbd\x35\xb5\x90\x5e\x68\xdb\xd7\x6d\x16\x46\xb9\xd5\x0d\x4b\xa6\x4c\x8b\x46\x8b\xe6\x2b\x6e\xfe\x03\x4b\xbb\xdb\x79\x91\x8e\x46\x12\xad\x30\xcc\x3f\x8e\xd0\xc2\x2f\x14\x42\x3d\x22\x44\x71\xbe\xad\x5a\xf4\xae\xa8\xf3\x18\xde\x37\xe8\xbe\xe3\x7b\xe3\x7d\xb1\x9b\xe0\x97\xce\x54\xbb\xa9\xbb\x7b\xe0\x40\x3b\x1c\x58\x9b\xe5\xb3\x2a\x9c\x7c\x40\x27\x1e\xd2\x9b\x4f\xb5\x8b\xe0\x3d\x4e\xd8\x24\x4d\x78\xdc\xb1\x42\x86\xe2\xa0\xe0\x60\x56\xd5\x6f\x09\xb4\xca\xaf\xcf\xcc\xae\x46\x05\xad\x4f\xf0\x41\x37\xd0\xe0\xdd\xb8\xdc\xd0\x55\xe7\x3c\x1d\x36\x6e\xd5\x1d\x46\x10\x78\x0f\xdf\x9a\x5f\x4c\x1d\xe8\x2e\x1b\x18\x9a\x96\x82\x71\xa0\x5c\x15\x44\xdb\xe6\x55\x3f\x3f\xdf\x1e\x65\xe9\x32\xa4\xb9\x4d\x8c\x38\x86\xb4\xea\x4f\x69\x0d\x23\x61\x81\xe6\x08\x6b\xcd\xab\xe3\xfd\x97\x7e\xf9\x1f\xb6\xea\xc2\x45\x73\xce\x4e\xcb\x35\xe3\xf3\x32\x5b\xb5\xeb\x30\x79\x11\x18\xed\xe7\x3a\x0a\x06\x7c\x5e\x79\x1f\xb2\x63\x3e\x96\xd1\x6f\xd0\x47\x70\x4c\xbe\x6a\x79\x08\x8f\x52\x76\xe1\x6a\x64\x8b\x96\xce\x3d\x94\x10\xea\x11\x65\x1d\x3e\xca\x6c\xcf\x72\xaf\xa6\xc6\x3d\x51\xf6\xa3\x2a\xea\xfc\xe7\xff\xd9\x2f\x69\x55\xaf\x1f\xd1\x17\xe3\xeb\x06\x72\x65\xbb\x6f\xf2\x14\x29\xb5\xeb\x3c\x80\xae\xc4\xd7\x53\xd8\x9d\xf9\xf9\x2a\x43\x6d\xa9\x90\x51\x53\x74\xf4\x2d\xec\x34\xee\xed\x50\x8f\xf3\x2e\x17\x29\xb2\x60\x29\xd6\xa1\xab\x89\x86\x28\xb2\xd7\xd3\xa4\x62\x8a\xb1\xc8\x5d\x05\x4e\xd9\x08\xd4\x13\x3e\x55\xcb\x09\xca\x95\x08\xb3\x0d\x34\x7a\x31\x9a\xe4\xeb\x26\xf0\xdc\x28\x4b\x71\xae\x0a\x1f\x46\x29\x68\x5c\x6a\xaa\x3e\x4d\xbe\x22\x14\x4b\x8c\x01\x3f\x45\x5b\x05\x47\xe5\x21\xe5\xf4\x73\xb1\xb1\x6d\x66\xba\x69\x1c\xe5\x03\x89\x1a\x4d\x86\x83\x0d\x35\x3b\xb7\xa9\x5b\x6a\x96\xc7\x78\x79\x99\xdb\xa8\x21\x60\x9a\xd9\xa8\x9f\x3c\x5e\xfd\x49\x7c\xc4\x4b\x18\x33\xe0\xc5\x35\xfc\x9e\x03\x08\x29\x7e\x44\x15\x9b\xc4\x2a\xb1\xb5\xe0\xb3\x52\x05\x2d\x65\xcf\x3b\x39\x97\x54\xab\x78\x03\xa1\x13\x0c\x07\x34\x2e\x94\x07\xa3\xf7\x68\xa5\x2d\x83\x80\xf6\xd3\xda\xa3\x3b\x18\x8d\xf0\xe8\xb8\x0d\x11\xf8\x11\xd6\x25\x05\x63\x2c\x6c\x6c\xab\x52\x5a\xa9\x71\x5f\xd4\x69\xc6\x45\xb5\x5f\xaa\x9a\xa2\x2f\xa4\x40\x47\x7a\xe2\x96\x33\xbf\x50\xdc\x8f\x28\xb1\xaf\x13\x14\xb1\x8b\x49\xe0\xa2\xcf\xb6\xaa\x3b\x20\xd9\x96\x92\x21\x27\x43\xbe\x34\x5b\x9f\x55\x96\x16\x37\x02\xaf\x43\x7e\x06\x05\x13\xff\x03\xa1\x61\xf9\x1f\x02\x9f\x42\x76\xb3\x28\xe9\xcf\x7a\x6f\x6b\x7c\x73\x45\x73\x59\xf4\x25\x5f\x75\x7f\xf8\x5f\x34\x6f\x67\x60\x7a\x3d\x0b\x59\x4c\xc1\x57\x5e\xc6\x49\xc4\x2f\x54\xe5\x5d\x90\xb7\xa7\xd6\x17\xd0\xf4\xcd\x4b\x0a\x1d\x98\x59\xb9\x81\x22\x78\x22\x43\x4e\x95\x57\x9e\xdb\xec\xde\xfb\xfc\xf3\xed\xfd\xbb\x5f\x6c\xf9\x74\x1b\x1d\x42\xb1\xf6\x92\xf3\x9e\x0e\x12\x46\x29\x22\xe1\xde\xd6\x51\xa6\x02\xdb\x26\x02\x39\xb1\x49\x98\x96\x55\x71\xc8\xa3\x45\x14\x20\xa2\x94\x5a\x3b\x4b\x11\xda\xae\x35\xed\xa0\x35\x6b\x56\x6c\x5e\xb4\xa8\x92\xc2\xa0\xe0\xac\x9a\x20\x9c\x1d\xef\x8a\xc8\xc9\xeb\x17\xdb\xff\x68\x97\x1f\xfe\x7f\x4b\x39\x35\xdc\x50\x1d\xe4\x67\x50\xcf\xa1\xbf\xfb\x34\x6a\x40\xe6\xa7\x7a\x2f\xf2\xcb\xcf\x75\x14\x62\x62\x32\xf6\xc4\x20\x8c\x14\xa6\x10\x69\x64\x49\x97\xa6\xa4\xa1\xbf\xb4\xe8\x71\x2f\x4b\xbb\xe5\x5a\x1b\xb2\x95\x79\x91\x0e\x6d\x96\xef\xa2\xf8\x83\xe4\x99\x85\xd3\xd1\xa6\x7d\x33\x50\xe2\x84\x67\xb5\x17\xe1\xd9\xc0\x0b\x40\x81\xfa\x88\xfc\xed\xe6\x58\xe1\x1b\x8e\x69\x27\xae\xb3\xca\x3a\xf8\xaa\xc6\xb6\xa4\x65\xe2\x84\x87\x64\x70\x4b\x8f\x49\x26\xb7\x9a\x52\x63\x93\x9c\x64\x15\xb0\x82\xbf\xaf\x10\x2d\x3f\xc6\x6a\x45\x23\xe6\xd4\xb8\xf5\xfc\xf3\x4e\x07\x4e\x09\x4b\x07\x4a\x71\x9e\x75\x39\x1c\xd0\xf0\xab\x82\x2d\xbc\x41\x5f\x4e\x00\xb2\x34\x53\x15\x15\x39\xda\x8c\x48\x68\x6f\x8f\x15\x4c\xfa\xa4\x42\xf7\x5f\x6f\xac\x4b\x73\x13\x3a\x67\x4b\x16\xac\x57\x3c\x83\xe9\xdf\x79\xc1\x11\xc9\xf4\x70\x4c\xab\xc3\x5d\x9c\x4a\xde\x91\xc4\x66\x59\x75\x4b\x37\x79\xa8\x35\xb8\xdc\x08\x4f\x21\x1e\x52\x13\x0d\x81\x92\xe5\x18\xf9\x05\x1e\x04\xca\x8c\x73\x5a\x11\xe2\x5c\xa0\xb5\x5c\x07\x36\x2f\x94\x94\xf3\x3d\xa5\x50\x0d\x46\x95\x1f\x60\x79\x3b\x97\x61\x64\x92\xa4\x34\x18\x94\xe1\x89\x80\x60\x8e\x80\x03\x5f\x27\xbc\xdb\x29\x2f\x33\x51\x95\xe2\x52\x2e\x22\xe3\x9e\x55\x2e\x7e\xdc\xd1\x97\x31\x87\x5f\xeb\x26\xeb\x46\x45\x46\x5e\xd3\xae\xdd\x71\x45\x19\x0a\xdf\xc3\xba\x05\x95\x7e\xda\x54\x5d\x92\xca\xe5\x38\x0a\x57\x66\x3c\x2a\xe8\x4e\x0d\x2a\x4b\xef\x2d\xa4\x95\x06\xbe\x67\xbf\x34\x59\x8f\x63\x10\x42\xdf\x9d\x40\x4d\xdc\x4f\xab\xd5\x7c\x4e\x1d\xc7\x26\x67\x11\x8a\xf9\x79\x0f\x96\xf3\xea\xc5\xcd\x60\xb9\x35\xa1\x34\xbb\x71\xfb\xdc\x1e\xd7\xa5\x94\xc0\xb8\x9c\x99\xb2\x57\xc6\x16\x24\x56\xd9\xb6\x28\x94\x50\x7f\x3f\xd9\xf1\xe9\xd8\x8e\x89\x2f\x46\xd6\x4c\xaf\x17\xa3\x37\xe3\xdd\x58\xaa\x43\x47\xfa\x7f\xbe\x07\xdc\x8f\x7a\xbd\x75\x05\x40\x3c\x86\x0f\xcf\x2f\xfc\xdc\x24\x31\x11\x4a\x6c\xc0\x7f\xa0\xa0\xc3\xd7\x8d\x55\x7c\xb7\x5c\x77\x8b\xdc\x79\xf6\xba\x3e\xfa\x34\xf2\x76\xef\x42\xdb\x84\xbe\x81\x2e\xd2\x6b\x2d\xa5\xc9\xf6\xb8\x32\x3c\x33\x5d\x82\xc3\x20\x51\xbf\x46\x27\x2a\x5f\x37\x48\xd5\xbd\xdc\x8e\xa3\x64\x05\x94\xf0\x17\x21\x85\x23\x93\xc6\x3b\xda\xde\xf3\xa8\xe2\xcc\x24\xa6\x28\x33\xdb\xda\x3c\x90\x96\x86\x86\xa4\xf6\xa3\xb8\xcc\x77\xd1\xd2\x42\x4b\xe3\xc6\xd8\x73\xa3\x80\xb6\x15\x15\x4e\xcf\x44\x9a\xc1\xb9\xc1\x50\x3d\x6c\x5c\x14\x19\xf7\x15\x8b\xf3\x94\x1a\x73\x3d\x3d\x69\xcd\xcd\x21\x3e\xfc\x72\xbb\x23\x47\x6c\x3f\x33\xdd\x2e\xbe\xd5\xa2\x17\xcb\x74\x1f\xf2\xce\x58\x7d\xb5\xad\x1d\x2f\x6b\x92\x99\xcc\xc6\x8c\x11\x72\x35\x91\xef\x83\xa8\xf0\x1f\xa7\x21\x25\x07\xd5\xad\x46\x59\x09\xab\x7d\xbe\x76\x87\x7d\x9e\x0e\x6d\xcf\xac\x93\x64\x04\xf6\x3a\xa8\x8e\x74\x1f\xfe\xed\x33\x1d\x4f\x5a\xbd\x49\xf7\x04\xd7\xac\x86\x8c\xbc\xeb\xdf\xa9\x62\x3a\xb3\x26\x1c\x88\xcc\x35\x9e\x13\x2b\xee\xf0\x8b\x60\xda\x97\x01\xb0\xf7\xc2\x78\xc7\x74\xa4\xb7\x87\xc7\x3e\xd5\x3d\xac\x5c\x5f\x32\x3b\x8a\x4d\xc8\x23\x0a\xe7\x6b\x57\x3d\x48\x41\x4d\xaa\x41\xd3\x43\x25\x82\xf6\xa1\x9a\x7b\x17\xe9\xc8\x1c\x84\xf4\x39\xaa\xe9\xef\xd2\x41\x05\x25\xeb\x73\x38\x82\xf8\x1f\x02\xc5\x1a\xb9\xad\xec\x65\xa6\x25\x03\x96\x76\x57\x41\x85\xbc\xfd\xab\x3f\xac\xdc\xa6\x16\xb9\xd5\x78\x27\xf0\x6d\x86\x33\xca\x72\xd3\xbe\x1e\x5a\x5b\x9d\x2d\xc8\x6f\x17\xbc\x37\x96\xf7\xc9\xaa\x5b\xa3\xf5\xec\x90\xcc\xca\xaa\x87\xe5\x80\xce\xf3\xf3\x72\x3d\x35\x02\x78\xa1\x6d\xe2\x2a\x22\xa5\x6b\x09\x43\x2f\x64\xc4\xa7\x72\xa4\x0f\xd5\x0a\x5a\x35\xd9\xaa\x61\x84\x16\x03\x13\x69\x1f\x09\x48\x71\x1a\x7c\xfb\x6a\xbb\x67\x63\xe3\x83\x07\x12\x38\xd4\x87\x7c\xdd\x84\x09\x62\x03\xdb\x1a\x98\xf0\x52\xa0\xa9\xe7\xd3\xf6\x9b\x6d\xf3\xff\x81\x1d\x13\x59\x54\x9b\xec\x6a\x7d\xed\x2b\x7c\xb2\xf3\x77\xc5\xa3\xe0\x5e\x1f\x96\xc9\xb3\x34\xa5\x96\xa9\x7b\xcb\xd9\xa8\x80\x6e\x87\xac\xe8\x16\x76\xa5\xfb\xa1\xa5\xdd\xae\x05\xe5\x0d\x04\xce\xab\xda\xfa\x60\x34\xda\xa6\xa0\xd4\xb5\xb9\xd0\x69\x2a\x39\x90\xb3\xa2\xb2\xc6\x59\x7e\x5f\x41\xf9\xa6\x6d\xbe\xf6\xec\xab\x6a\x92\xbc\x48\xe3\xbf\xde\xc0\xc4\xb5\x2d\x8b\x68\x54\x2a\x4d\x55\x69\x38\xeb\xee\xb3\x02\x97\xe5\x69\x1c\x85\xac\x2e\x8c\xfc\xe9\x50\xa0\xb8\x1d\x87\x9a\x9a\x49\x4e\x4e\x93\x9f\x1f\xf6\xc6\xa1\xc0\x17\x81\x87\xa6\x96\xca\x9e\x7d\xde\x9b\x97\x32\x0e\xa4\x29\xad\x8e\x62\xf0\x42\xeb\x19\x1b\xf7\xa6\x1b\x0f\x65\x76\x39\x4a\x4c\x12\xba\x35\x86\x34\xe3\x94\xb2\x7a\x3d\xe5\x5a\xa8\x23\x6b\x41\x04\x12\xd3\x07\x9f\x54\xbc\xa9\x84\x58\x87\xb6\x6f\xba\xeb\x85\x9d\xf5\xf1\xed\xfd\xb1\x67\xdd\x9e\x57\x7f\xfb\x41\x50\xe3\x78\x3d\xe1\x3e\x55\xb7\x4a\x0d\x67\x1d\xdb\x3f\x7a\x0a\x07\x05\x88\x76\x88\xa8\x58\xcc\x0c\xae\x17\x42\xed\x33\x0a\x4b\xd8\x4f\x8b\xc8\x30\x0c\x19\x1d\x87\x8f\x29\xbb\xe0\xeb\x46\x0d\x9b\xac\x64\x67\x0c\x14\xaf\x00\x58\xf0\xb5\xf6\xf7\xc8\x6d\xf6\x18\xc5\x64\x1c\xe2\x7f\xbb\xa3\x84\x36\xc9\x82\xf3\x55\xc7\x4b\xa4\x68\x8d\xd0\xc7\xf4\x21\x10\xda\x61\x6d\x07\x06\x0a\x74\x6a\x95\x13\xf3\x8b\xdc\x35\xfe\x8b\xb1\x17\xc1\x86\xbb\x0b\x75\x92\xde\x78\x66\xa2\x7a\x10\x28\x59\x44\x09\xbc\x29\xcb\x0a\xe3\xb2\xdb\xf2\x58\x9f\x3f\xc3\xfa\xe6\x17\xaa\xed\x19\xdb\x7e\x94\xc7\xc8\x5c\xe9\x50\x64\x55\x44\xe5\xb6\xf5\x7f\xd1\xc7\x96\x18\xff\x94\x3a\xf6\x8a\x41\x94\x3c\xaf\x32\xa3\x2b\x2a\x33\xba\xb2\xc9\xa8\x2a\x7f\xc6\x77\xc9\x9f\x86\x7a\x03\xb2\xe4\x45\x4c\x00\x31\x04\x3f\x4f\xcf\xcb\xd9\x5a\x7a\x6e\xfe\x29\xaa\x7c\x00\xda\xba\xcc\x2d\x36\xdc\xef\xab\x7a\x22\x8a\xba\x0e\x81\x64\xe7\xc4\x9b\x73\x5f\xc4\x2d\xe6\xbc\x67\xdc\x7a\x45\x96\xe0\xdd\x40\x6d\xeb\x2b\xd8\xd6\x0a\x7a\xb0\xc8\x37\xf9\x21\x8a\x2d\xfe\xb1\x40\x89\xde\x61\xa6\x23\x00\x8d\xa7\x95\xd9\x76\x34\x1a\x89\xf3\x26\x7a\x7e\xb7\x95\x6a\xd7\x79\xdd\x07\x3d\xa1\xeb\x81\x3c\x8f\xf2\xc2\x24\x05\x1d\xce\xe8\x03\x32\xd9\x41\xc8\x40\x7e\xcc\xce\xa6\x45\x02\x3e\xdf\x1c\xe5\xe7\xe6\xda\xcb\x51\xa1\xa5\x45\x2e\xd1\xb2\x13\x8e\xbb\x0f\xff\x77\x1d\x5a\xb8\xb0\xaf\x0b\xaa\xc7\xa5\xbb\x3e\xf5\x1d\x3f\xa6\x4e\x50\xd6\x32\x14\x05\x31\x3c\x14\x91\x10\x7b\x42\x65\x1b\xdd\xb2\x40\x17\x49\x7b\xf2\x22\x42\x1f\x1d\xab\x8a\xfa\x82\x72\xf8\xd9\xd2\x51\xd0\x6e\x13\x0e\xa2\x95\x08\xf2\x5f\x4c\xc0\xc0\x51\xa0\x8b\x1d\xa1\x48\x3f\xae\x4a\x48\x93\x3c\x45\x9b\x56\xa2\x45\xb5\xba\xf4\xd7\xc2\xff\x7f\x9c\x06\xd5\xae\xc6\xd8\xbf\x9b\xd7\xe9\xcd\x7a\xc9\xe9\x21\x05\x8f\xa1\x3b\xce\x5b\x39\x50\x8d\xe8\xbb\x54\xd3\x63\x97\xfe\x88\xd7\x29\x96\x20\xe0\xed\x8c\x5d\xc1\x03\x65\xda\x2b\x42\x22\x02\xf5\xf7\xc6\x8a\xb4\xf5\xe8\xa4\xf5\xe5\x57\x9c\x1e\xf4\xe6\x49\xb7\x94\x7e\x6c\xf9\x8c\x4a\x06\x01\x89\x45\xce\xf9\x45\x93\x80\x75\x55\x14\xb8\x23\x00\x55\x1e\x46\x71\x7c\xed\x49\x8c\xb1\x5d\x9b\x51\x5e\xec\x17\x94\x9a\x33\x4b\x26\x48\x62\xd7\x04\x64\xb7\xf1\xa8\xe5\x23\xdd\x75\x65\xc1\x79\xdd\x2f\x39\x13\xdb\x7c\xc6\x7b\x50\xf3\x04\x18\x09\xd5\xfd\x40\x8d\x79\xce\xe0\xe1\xa2\xc9\x96\x99\x04\x1f\x0c\x09\xdb\x4f\xc6\x8a\xe5\xc2\xb0\x4b\x6c\xd1\x69\x2a\xf1\xfe\xdd\x0b\xa4\xf4\xe7\x66\xad\xe2\xcd\xe9\x13\xe2\x13\x8e\x44\x15\x66\xeb\xb9\x0c\x59\x5d\x1b\x74\x7e\xde\x75\x3e\xe5\xe7\x8a\x2c\x92\x91\x99\x3f\x9e\x94\x3e\xc2\xf4\x2c\x7b\x7e\x9e\xb0\x3e\x38\x7f\x90\xbd\xe0\x21\xf0\xf5\x14\x31\x1b\x02\x85\x36\x5b\x8d\x72\x01\x1d\x22\xdf\x86\xdc\x20\x5f\x4f\xbc\x6e\x4a\x6c\x46\x45\x3a\xc2\x3e\x95\xc3\x98\x6e\x13\xbf\xd0\x99\xce\x7a\xd2\x8b\xb8\xe4\x71\x7e\x71\xa7\x03\xaf\xe9\x77\xba\xd1\x98\x3e\x1a\xc5\xe9\xd0\x49\x3f\x22\x2f\x7f\x4b\xe1\x3b\xdf\xf2\x85\x52\x75\xbb\xa3\x65\x94\x6c\x92\x03\xb7\x16\x94\xb7\xe0\x97\x5f\xe1\xf3\xfe\xfe\x54\x91\xb3\x67\x5f\xdb\xc6\x36\x2c\xb2\x28\xa4\xce\xaa\xc3\xf9\x23\x1c\xf2\xb5\x9a\x7c\x8d\xf2\x2f\xce\x68\xe8\xc2\x4e\xc5\x62\xe2\xfe\x1a\xba\xb1\xb3\x13\x9f\xbe\x8d\x32\x9b\x9b\xbe\x6d\x29\x69\xff\x53\x84\xac\xe4\xeb\xa6\x9d\xb4\x36\x88\x0e\x1e\x94\xf4\xb0\xb6\x14\xf9\x45\xa3\x4c\x5b\x6e\x12\x69\xb8\x88\x99\xbf\x86\xe6\x17\x81\xca\x47\x3f\x50\xa5\x9b\x08\x2f\x12\xbe\x09\xed\xbe\x8f\xf9\x37\x9d\xa8\x82\x97\x56\x06\xc4\x13\x9f\xe3\x96\x96\x49\xde\x3e\xf1\xd9\x5b\xb7\x8c\xe2\xaa\x70\xda\xa9\xc6\xbb\x5b\xb5\x66\xe3\x35\x05\x2f\xdc\x3a\xf1\x3c\xa9\x93\xda\x53\xfc\x06\xd5\x65\xd8\x70\x10\xec\xe7\x47\xa9\x6c\x83\xff\xa8\xc9\xeb\x4d\xf5\xe1\xab\xb7\x71\x96\xe3\xd5\xfb\x8b\xe5\xb8\xef\xce\xad\xa6\x55\xb2\x12\x47\x05\x98\xd5\xcc\x05\xad\x0b\x67\xd6\x24\x35\x7d\x3b\x0e\xbe\x3c\xac\xde\xa1\xe5\xcc\xde\xa3\xdc\x02\xcd\xe0\x7f\x3f\xf6\xce\x4f\x17\x55\x59\x6e\xf2\x91\x0d\x45\x3d\x4c\x64\xd8\x7c\x5b\xe3\xac\x42\x3a\x78\x64\x06\x3b\x36\x03\x3b\x87\xe4\x88\x25\x6b\x10\x38\x45\x6a\x48\x3d\xde\x90\x74\x8b\x31\xb1\x76\xb4\x2b\x4f\xc1\x6a\xa2\x27\x0f\x8d\xcd\x8b\x2c\xad\x19\x87\x2b\xfd\xd2\x33\xea\x28\x4e\xe3\x9e\xcd\xb6\x29\x33\x9d\xab\x35\xa3\x03\x9f\x9e\x3e\x08\xbc\xd9\xff\x03\xe4\x61\x32\x8f\x6d\xe2\x73\x0f\xd3\x8c\x9d\x6a\x44\x78\xad\xa6\x32\x52\x2d\x48\xce\x39\x9a\xe6\xfc\xb0\x5c\xd5\x8d\x8b\xe3\xda\x71\x5e\xeb\x40\x81\xc4\xb0\xa3\xfa\xd0\xc0\xd4\x3e\x46\x65\x27\x8e\x7e\xa6\xf1\xb0\x5f\x74\xa0\x10\x5d\x63\x0f\xf0\x7e\x0c\x2e\x89\xe8\x39\x4d\xb0\xcc\x44\x94\x77\x4a\xdc\x75\x69\xf1\x0b\x6d\x3b\x1c\x0d\x4c\x1e\x71\x4e\xa4\x3d\xd4\xf9\x5a\x0d\xcd\x46\x99\xed\x57\xc5\xd5\xba\x72\x56\xfb\x4d\x65\x52\xa6\xcd\x6a\x2f\x50\x32\x22\x35\xaf\xef\x50\xd9\x2c\x23\xc3\xad\xfd\xbb\x39\x55\xfc\x98\x9e\x11\x5f\xab\x1f\x84\x8f\xf1\x76\x4a\x4c\x51\x60\x1c\x26\xb7\x6b\x5c\x6f\xa5\xec\x97\xaf\xa1\xb9\x83\xad\xfd\xfe\x58\x99\x53\x82\x0f\x80\xa1\x2e\xeb\xf7\xe0\x43\x50\xac\x4d\x93\x28\x14\x83\x8d\x57\xb5\x56\x9b\x6c\x74\xc6\x7a\x39\x30\xeb\xfc\xbc\xfc\x83\xea\x12\x83\x88\x90\xb7\x34\x8f\x25\xf0\x26\xcf\x5e\x03\x54\xa1\x69\xb0\x5a\x1e\xf5\x0e\x45\xdf\x7b\x74\xa2\xe4\x13\xa3\x5e\x8f\xf4\x6b\xdd\xb2\x3c\x17\x10\x8b\x40\x8e\x01\x5d\xd8\xaa\x5e\xfa\x29\xd7\xd3\xed\x7a\xa7\x0c\xe9\x14\x68\x04\x9a\xc7\x0f\x1f\x55\x31\x60\xd9\x3a\x52\xc8\xab\x22\xc5\x36\x56\xe8\x94\x0b\x0a\x3f\x06\xb5\x6f\xd3\x77\x64\x72\x9c\x86\xdf\xd5\x34\x88\xef\x36\x29\x5f\x99\xcc\x26\x06\x55\x83\x03\x90\x39\x98\x07\x23\xc0\x45\xa2\xc4\x4f\x49\xd7\x6c\x5e\xac\x99\xac\xd7\x52\x32\xb3\x68\xda\xca\x18\x54\xbe\x79\x2f\x33\x43\x33\xab\xd8\x38\x37\x14\xa8\x1e\x72\xda\x68\x1f\x7c\xa2\x7d\x40\x2e\x4c\x7d\x54\xd2\x88\x49\xca\xc2\x2a\x89\xb2\xb3\x4a\xa2\xec\xec\xf8\x51\x4f\x20\x5a\xfe\xdb\xad\xaf\xfa\x46\xb3\x36\xcf\x98\xe9\xd4\xcd\xaa\x54\xc2\x7d\x03\x81\x5c\xa4\xd2\x3d\xb0\x6a\x1b\x39\x79\x20\x1d\x9d\xe9\x10\x1a\x14\x47\xdc\x15\x84\x1a\x24\xa7\x8f\x00\xa8\x82\x1c\xf8\x99\x4e\x55\xf2\x29\xd9\x23\x71\xdd\xff\x06\x1c\x64\x11\x5e\x2f\x8d\x5b\x07\x0e\x6c\x5c\xae\xd5\x9d\xfe\xf8\x1a\xff\x2c\x5c\xc7\x51\xe1\xdc\xa3\x68\x89\x33\x6e\x17\x4e\x4b\x2c\xfd\x93\xa0\xa9\xe3\x2e\x3c\x32\xf1\xe2\xad\x6f\xe1\xd9\x63\xe3\x6d\x21\x0d\x36\xe0\x78\x7e\x9e\x6c\xce\x21\x05\xfb\x0c\x24\x86\x71\x5e\xce\xa2\xcc\xc0\xe0\xe5\xd1\x8e\xa7\x02\xfd\x89\x1e\x0a\x6d\x90\x33\x05\xa2\xdb\xf9\xa6\x03\x22\x2f\xb2\x68\x85\x3d\x5e\xa4\x7f\x40\xf7\x86\x5f\x4c\xb9\xf1\xef\xdf\xfd\x6a\xfb\xf9\x56\xeb\xf9\xe7\x3d\xb8\xb5\xfa\x4a\x02\x6e\xf5\x5d\xd4\xdc\x86\x65\x16\x15\x91\xcd\x9f\x50\x74\xac\x3b\x08\x11\xf8\xa8\x2c\x2a\xc7\x89\x57\x75\x64\x56\x37\xb8\xfa\x73\xce\x61\xff\xf9\xe7\x6b\xee\x64\xa8\xe9\xb6\x33\x55\x11\xd5\xda\x3d\x2c\x0c\x67\xf9\x5c\x3d\x66\xe8\x53\x1d\x52\xe1\xf5\x1a\xf2\x00\xfe\x87\xc0\x8b\x58\xdd\xd6\x92\x98\x9f\x34\x81\x65\xd6\xa2\x8c\xd1\x91\x92\xec\xb6\x9c\x80\xf5\x69\xd7\x0f\xeb\x91\xc4\x9a\x03\x2f\x5f\x52\x75\xe7\x25\x15\xf1\xc2\x81\xc9\xe2\xc8\xce\xb6\x96\x16\x37\xb8\xd1\xcf\x26\x39\x55\xdc\xdb\x38\x1d\xd4\x7c\x73\x9e\x72\xcd\xb6\x6c\x68\x12\xb1\x2c\xc7\x0d\xc3\xf8\x00\xd3\x9d\x67\x26\x9e\x3d\xf3\x3f\x8d\x1f\xf1\xa2\x12\xad\x96\xd2\x72\xd2\x44\x96\xa6\xee\x67\x3f\x33\xbd\x92\x61\xd1\xec\x1f\x41\x71\x42\xbc\x24\xb4\x72\x5a\x31\x88\x92\x27\x7c\x5b\xf7\xaa\xb2\xdd\x79\x14\xbb\x0b\xc3\x9e\x87\x1a\x2c\xf3\x87\xda\xce\xe3\x86\xca\x29\xd8\x87\xd9\x91\xe4\x16\xbd\xdc\x19\xf6\xad\xf3\x8c\x77\x1e\xe5\xd7\x30\x91\x63\xc9\x5d\xc5\xee\xdd\x4e\xdb\x07\xb5\xde\x2d\x2a\xb9\x45\x50\xce\x15\x95\x6b\x64\x8f\xeb\xb4\x28\x2f\x69\xd3\xb5\x4b\x53\x03\xea\xbd\x0b\xed\x3c\x2d\x8b\x81\x35\x79\x61\x33\x40\x37\x44\xe6\xaa\xa5\xf4\xaf\xfc\xc0\xa1\x17\xe5\x61\x5a\x52\x88\xff\xff\xa9\xe5\xe1\xc3\x75\x2f\x1d\xda\x24\x0a\x23\x3e\x1b\xa4\x4c\x55\x23\xf4\x69\xb2\x8d\x94\xfb\xb1\x5d\xa5\x83\xa5\xa5\x60\x83\x81\xc6\x13\x2a\x04\x77\x6c\x6d\x06\xd6\xa6\xeb\xd8\x57\x9f\x94\x5f\xa8\x0e\xae\x09\x43\x3b\x2a\x60\x5c\xf2\xb2\x97\x6a\xde\xeb\x1f\xaa\xb7\x3f\xf9\x43\xdd\x7a\xb9\xa4\xbe\x95\x18\xe6\x3d\xa2\x3c\x83\x99\x86\xed\xc0\x38\x7b\xf6\x09\x19\x47\x03\x31\xb9\x85\x82\x7e\xc8\x59\x3e\x20\x10\xd3\x91\x32\xe1\x44\x60\x05\x25\xa4\xf3\x98\xa6\x21\x53\xbf\x1c\x68\x96\x8f\x8c\xe4\xfb\x69\x4a\x28\xe6\x19\x85\x77\x82\xc0\x2a\xd3\x81\xb1\x20\x65\x20\x57\x33\xf6\x1d\xd9\xac\x58\xdf\xe6\xf3\xcc\x8b\x01\x9d\x33\x0e\x86\xea\x6c\x08\x6e\x8f\xdd\xb0\xef\x1f\xbc\xa7\x20\xd5\xc7\xdc\xc7\x28\xcc\x8a\x19\xa6\x59\xa4\x14\xb5\x8e\x6a\x40\xff\xd1\xa9\x62\xd7\x79\xb2\x99\xd7\x87\x0c\x23\x12\x27\x0f\x75\x84\x5c\xd0\xfe\x69\x71\x64\x13\x50\xe9\x35\x71\xab\x46\xfe\x01\x62\xe1\xfb\x88\x47\x82\x1b\xf4\x74\x8f\x4b\x8a\xd4\xf1\xdf\x1c\xaf\x99\xc6\x29\x55\xf8\x4f\x54\xb6\x3b\x8c\xaa\x54\x95\x46\x68\x8e\x48\x0a\xe0\x91\x08\x3a\xf8\x6e\xcd\x28\x4d\xfa\xbc\xda\x45\x9f\x9d\xbe\x8a\x48\xdd\xfa\x2c\xab\x58\x8b\x84\x65\xb3\x58\x77\xe5\x90\xa0\xdb\x30\x98\xb3\x59\x9a\x8f\x4c\x08\x10\x05\x60\x1a\xef\xe3\x8b\xa2\xcd\x8b\xf9\x3b\x36\xff\x8d\x86\x09\xea\x22\xc6\x29\x21\xcd\xbd\xe9\x9d\x9d\xa1\xf1\x82\x33\x37\x56\xb8\xb6\xbc\x88\xb2\x5c\xc1\xee\x59\x79\x57\x64\xb8\x1d\xb2\xd6\x64\xbd\x2a\x89\x9e\xf1\xf3\xb0\x6b\x74\x83\x04\x8b\xa1\x6c\x7c\x0f\x8f\x6b\x1c\xb9\xbc\xc8\xca\x10\x87\x0d\x17\x34\x63\x55\x13\x9d\x57\x37\xac\x4c\xca\xbc\x34\xf1\xac\xc2\xe7\xf3\x0d\xd3\x66\x27\xd8\x68\xb7\x54\x4e\xf8\x8e\x1a\x55\x2e\x9b\x62\x40\x20\xcc\x2a\xdc\x3a\xb9\x9d\x05\xe7\x78\x76\x7b\xfc\x94\x42\xd5\xb8\x34\x78\xa1\x2e\x04\xcf\x2f\xa6\x1e\xd0\xc2\xc2\xcb\xbe\x4d\xe2\x55\x2d\xce\x23\x4f\x10\x3b\x85\xc7\x1c\x66\xfb\x75\xf9\x39\x11\xe7\x50\xae\x4c\xd3\x92\x48\x7b\x17\xda\x23\x13\xae\x18\xa7\x76\x26\xfa\x5a\x2d\x67\x09\x72\x41\x69\x42\x0d\x4d\x62\xfa\xa4\x2b\xfa\x28\x7d\xc1\x3a\xe6\x0e\x21\xee\x63\xad\x2a\xf1\xf6\xd8\xc7\xc1\xd6\xc4\xc7\xc1\x16\xa4\xb0\xd0\xc9\xd2\x76\x39\x37\x75\xfb\x0b\x9f\x1d\x4b\x97\x9b\xd6\xc8\x4f\x27\xb4\xf7\xc4\xef\x46\x75\x1a\xb2\x28\xaf\x8f\xa5\x61\x4a\xc7\xd7\xbe\x6b\x1a\x0d\xe5\x0b\x3b\x18\x94\xdf\xe6\xe7\x1a\x2d\xde\xaa\x4c\x30\x2c\x98\xc8\x8f\x28\xf2\x7b\x08\x82\xfc\xa2\xa9\xc1\x65\x87\x5d\x93\xf5\xd3\x19\xef\x89\x01\x59\x4a\xe7\x5b\xf6\xe5\x57\xf8\x8b\xff\xbe\x62\xe1\x65\x69\x57\x04\x53\xd0\x87\x40\x72\x87\x18\x8d\x89\xb6\x88\x65\xf9\xd6\x09\x71\xd7\xe2\xc2\x24\x45\xbe\x0d\xcf\x03\x59\xf8\x39\x5d\x66\x5d\xa1\x3f\xd4\xa4\xeb\xa7\xb0\x28\x0f\x15\xf5\x65\x64\x33\x7b\x90\x52\x01\x3c\xd0\xa3\xda\x41\xe2\xa8\xc2\x1d\x02\xf3\x1a\xa5\x49\x4b\x7d\xee\x33\x81\x96\xbb\x50\x93\x9a\xb5\x34\x5b\x21\x1c\x45\x4b\xfb\xbf\x07\xda\xff\xdd\xe5\x76\x36\x2f\xa2\xa1\x29\x80\xb1\xf7\x62\x73\x2d\xe7\x7d\xf5\x8e\xf6\x17\x84\xf7\xa8\x18\x19\xa9\xb6\x1c\x6b\xbd\xd1\x80\xea\xe9\xcf\x77\x3c\x85\xed\x35\x82\x28\x2d\x2d\x7a\xf3\x0b\x07\xb0\xfa\x71\xa3\xf0\x48\xdf\x16\xfc\x74\x30\x5e\xb8\xcb\xe3\x1b\x91\x24\x55\x32\x24\xa7\x15\x89\x1d\xc8\x4c\xb4\xa7\x50\xbe\x73\xee\xc1\x2f\x14\xeb\x9b\x48\x8f\x4c\x98\x54\xd1\x1b\xa9\x9e\x84\xf2\x69\x18\xf9\x62\xdb\xbe\x3e\xb2\x0a\x0d\xc5\x49\x01\x3d\x68\x49\x10\x1e\xf3\x28\xa0\x10\x53\x67\x6d\x41\xe3\x8c\xdd\x16\x9c\x0d\x17\x80\x17\x98\x5c\x1f\x76\x27\xf3\x72\x9a\x11\xde\xfa\x51\xbf\x77\x1f\x9d\x78\x84\x20\x5b\xd6\xa1\x5d\xc3\xb5\xa5\xb4\x61\xe8\x31\x62\xa9\x41\x60\x1a\x61\xe0\xf8\xd8\x73\xf5\xb7\xa2\x94\x43\x69\xc9\xc7\x2e\x4e\xd7\x9d\xd4\x89\xc4\x6f\x5c\x1e\x2b\x8e\xce\xdd\xf1\x33\x53\x42\x1a\x5f\x78\xc2\x4f\x0d\x39\xce\xa2\xa1\x78\x8d\xb2\x29\xf4\xe8\x3e\x45\xc0\x42\x96\x0a\x3d\x7c\x7c\x88\x33\x78\x5f\x60\xda\x66\x3b\x94\x9a\x23\xfe\x5c\xc7\x83\xc3\xb7\xdb\xd6\xa9\x6a\x48\xd1\x64\xf1\xa7\xd5\x4f\xc6\x9e\xc2\xf9\x83\xa0\xee\x09\xa2\x3d\xd5\xab\x02\x16\x9d\x50\xf6\xad\xe7\x3c\x2a\xea\x81\xf3\x8f\xb7\x3c\x3f\xf6\xda\x38\xe7\x9b\x5a\xfc\xdd\x38\x0d\x57\xba\x65\x95\x82\xcf\x28\x79\xa5\x4b\x6a\xc7\x6f\xa5\x16\x05\x5b\xe2\x4d\xa9\x3b\x7c\xb1\x5d\x0c\xec\x72\x81\x8c\x0f\x6b\xe2\x1c\x29\xa2\xa3\x22\x3a\xac\xe6\x4f\x37\x83\x5a\xc2\xd7\x2b\x43\x9b\x13\x80\x52\xd0\xbd\xf4\x37\x6a\xe7\xa9\x48\xda\xf9\xa1\x89\x29\x8b\x74\x98\x76\xa3\xd8\xce\x2a\xec\x20\xb3\x46\xb1\xa2\xee\xaa\xfe\xed\xff\x3a\xf6\xe3\xed\xd3\x2e\x4b\x18\x95\xd9\x28\xcd\x65\x84\x80\x19\x3d\x2b\x1e\xf1\x0b\x17\xf4\x87\x66\x3d\xcd\x66\x3d\xf2\x11\x77\xc3\x65\x76\xd5\x03\x65\x09\x67\x24\x70\xcc\x0e\x9a\x08\x27\x92\x4c\x31\xe3\xb4\x0f\x7f\x0e\x2f\x4b\x7d\x42\xcb\x52\x9f\x50\xc9\x45\x98\x45\xc3\x9c\x99\xc4\xcc\x23\x53\x42\xd1\xa7\x9b\x26\x54\x71\x54\x0c\xd2\x7e\x66\x46\x83\xf5\x9a\x44\x0d\x52\x6f\xd9\xce\x4f\xb9\x92\x1a\x2e\xfd\xcc\x3e\x42\x60\x98\xed\x28\x3f\xe5\x4b\x8a\x7d\xb4\x81\x35\x88\xc2\xaf\x45\x05\xb1\x8c\x47\x55\x4d\xfd\x56\xb3\x4a\x63\xba\x46\x3e\x00\x1b\xec\x20\x24\xa2\x0c\xda\xbc\xc2\x87\x8f\x6d\x9d\xa7\x55\xb6\x47\x9e\x38\xe0\x61\xa3\x3e\x3b\xab\xc4\x2a\x4f\x61\xf3\xa1\x4a\xff\x13\x35\x83\x1a\xc4\xeb\x8f\xf8\xde\x2d\x5c\x88\x30\x8d\x7a\x7a\xa2\x68\x86\xf7\x21\xfe\x77\x57\x99\xd2\x6e\x20\xda\xb8\xb6\xc8\x3f\xf9\x55\x57\x6f\x55\x1f\x91\xb2\xc7\x37\xfe\x3e\x12\x10\x9c\x13\xdc\xd7\x96\x24\x69\x5a\xaa\x01\x6b\xd5\x14\x68\xe9\xb6\x7c\xdb\x1c\x7f\xf2\xb3\x92\xeb\x2a\x77\xb3\x59\x39\x72\x6e\x94\x08\x0c\xc0\x77\x4a\xd3\x89\xde\x1a\x48\x89\xd9\x8e\xcf\x14\x97\x81\xf6\x9e\xf1\x78\x9c\x1f\x04\x1e\xd8\xc9\xf2\xe3\x88\x59\xa7\xfd\xb8\x35\x05\x00\xd2\x57\xdd\xb7\xb1\x38\x65\xcc\x3c\x4d\x91\x7b\x19\x63\xb1\x51\xe6\xd0\x3f\x42\x95\xf6\x25\x57\xa3\x3d\x51\x18\xa7\x6b\x02\x9b\x63\x78\x73\xa0\xa1\xce\xd3\x73\xe3\x57\xeb\xc2\xba\x28\x9d\xce\x05\x4a\x5d\xe1\x5c\x13\xcc\xa8\x1b\x9b\x1c\x9f\x4c\xd4\xc9\x7c\x2f\xe3\x9e\x2a\xa1\x97\xa3\xfe\xa0\x3a\xfa\xb6\xf9\x29\xdb\x51\x5a\xa0\x68\xe4\xdf\x0c\x74\xef\xf4\x94\xc6\xdf\x9d\x52\xea\xca\xd3\xde\x24\x18\xd2\x10\x5b\x38\x8b\x04\x21\x29\x1a\x35\x5e\x6b\xfe\x84\xd6\xc3\x5f\xb5\x59\x9c\xc2\x20\xc9\x87\xfa\x8b\x4a\x35\xe5\xa2\x4a\xf7\x86\x91\x19\x46\x68\xf1\x0b\xa6\xa5\xe5\xc4\x07\x4e\xa8\x50\xfb\x9a\x19\x99\xc4\xe6\xf6\x19\xea\xff\xb0\x7e\x5a\xe0\x27\xce\x87\xe9\x8c\x40\x73\xf7\x96\x96\x3f\x3e\x1b\xd4\xbc\x0d\xbe\x2a\xf7\x1b\x26\x23\x78\x62\x9f\xd2\xa7\x43\xbf\xe5\x36\x96\x17\x72\xc6\x87\xd8\x4f\x62\x77\x5f\x2d\x7e\x1c\xbf\x5b\x28\x86\x08\xee\x8f\x8e\x47\xb6\xb0\x0e\x5a\xaf\x2c\xb2\x24\x89\x24\x47\x62\x20\x4c\x7b\x17\xb7\x9d\x5b\xb4\xfc\x87\xc7\x4a\xd1\xfb\xc6\x66\xf2\xd0\xdc\x9e\xf6\x2b\x7b\xf6\xcd\x28\x4f\xc8\x63\x81\x9a\x29\x1d\x53\x43\xaa\xc1\xf8\x51\x5f\x0b\x32\x5f\xcb\x21\x3b\xaa\xa5\x26\xc8\x0e\x3f\x0d\x5a\xa1\x99\xc8\x4e\x4f\x47\x3a\x5c\x53\x85\x52\xee\xcf\x17\x02\xd5\xc6\xbe\x30\xa6\x24\xa5\x56\x68\xf1\x8f\xd1\xba\x90\x5f\xa9\xee\x18\x50\xfd\x87\x1b\x77\x45\xb1\x3e\x22\xb5\x05\x45\x36\x3d\xa5\x3a\xb3\xa7\x9a\xa4\xf5\xf3\x32\x83\xa2\x13\xf6\xc1\xa3\x44\xff\xc6\x11\xf4\x14\xe5\x54\xc2\xe7\xd4\xd0\x90\xe9\xf8\xc4\x12\x61\x25\x8a\x7f\xc5\xb9\x91\x3e\xe8\x61\x05\x6c\x39\x5d\x83\xa5\xe5\xc5\x17\x67\x7d\xee\xb7\x13\x6d\x7c\x87\x94\x72\xa3\xf3\x4f\xe8\xd8\x46\x26\x39\x2d\x62\x40\x6c\x69\x1a\xe7\x7b\xb7\xe1\x63\x35\xeb\x2a\xa4\x78\x35\x23\x1e\x9c\x2b\x03\x1b\xc7\x70\x9b\xe0\xc4\x9f\xda\x9a\x4e\x24\xd2\x6b\x74\xd2\x87\xc1\xa6\x40\x35\x28\x94\xf6\x27\x94\xea\x4c\xd2\xcb\x77\xfa\x10\xf3\x4e\x4d\x80\x51\xbb\x8b\x01\x7b\xe8\x94\x19\x3d\x19\xff\xb8\x36\xda\xa7\x9b\x86\x47\xce\x4a\xa8\xa2\x68\xf6\x39\x85\xa6\x27\xdd\x6a\x0b\xa1\x76\xc5\x04\x08\x74\x35\x7d\x5a\x09\x01\x1e\x1d\x6b\xd3\xff\x64\xd5\xae\x13\xc0\x1e\xff\x78\x95\x9e\x34\x5f\xd7\x1e\xd4\xc8\xc4\x3b\x94\xea\xe3\x2c\x69\x83\x40\x4d\x04\x83\x5e\x86\x42\x28\x83\xa6\xbb\xe4\x34\x2b\x10\x89\x96\x33\x03\x7c\x9f\xd2\x66\xf9\xf9\xe7\xdc\xa9\x33\x14\xfb\x0f\x6e\x8e\x37\xb1\x7e\x37\x47\xf6\x57\xaa\xd0\x9e\x16\x83\xd9\xea\xad\x90\x6b\x3d\xc4\x6d\x17\xd1\xbf\xea\xbd\xd0\xec\xe1\x42\x0e\x11\x65\x5a\x97\xec\xc0\x81\x76\x1e\x1d\xc4\x1a\x46\xb0\xff\x58\x59\xf3\xcc\x00\x47\x8a\xf9\x47\x95\xce\xfd\x83\xa9\x41\xed\x36\x35\x96\x7c\xa8\x35\x38\x1e\xd2\x97\xc7\xa7\x03\xd1\x0f\x01\xea\x0a\x9e\x2a\xf6\xc8\x9b\x0d\x1b\xeb\xe5\x76\x66\x87\x91\xc3\xa9\x38\x9f\x71\x07\xc4\x3c\x8f\x48\xc8\xa6\xf4\xaa\x87\x11\xa6\x29\x7c\x37\x97\x04\x1e\xf8\x49\xe0\xcd\x46\x3f\xd1\x0a\xa6\x2f\xef\x9b\x55\x68\x2f\x0c\x86\xf9\x5a\xb1\xf7\x18\x05\xc6\x2f\x54\xd8\x5b\xce\x4c\x12\xe6\xf4\x46\xa2\x39\xe1\xd9\x59\x97\x5c\x96\xd9\x35\x71\x1c\x39\xef\x06\x91\x28\xf3\x7d\xb1\x0b\xaa\x17\xd6\x8b\x4c\xec\xaa\x4f\x64\x68\x3f\xa2\xdb\xc6\xd7\xca\xe1\xcc\xf6\xfb\x50\xd7\xe2\xed\x18\xe8\xad\x29\x63\x6d\xb0\xd0\xc0\xce\x14\xea\xac\x87\x01\x90\x80\xa6\x80\x71\x4d\x61\x89\x44\x48\xc3\xd8\xfb\xcf\x52\xc2\x88\xdb\x3e\x83\xd6\x37\x8e\xc2\x9b\xf4\x3e\xe8\x66\x6e\x83\x30\x0f\x73\xb4\xc7\x8a\x30\x79\x5b\xa3\xed\x5b\x98\x5d\xa2\x67\x73\x46\xcf\xa4\xd8\x7c\xc0\x41\x94\x9d\xd5\xd1\x0c\x05\x23\x77\x98\xea\x7e\x70\xc3\x00\x2d\x4e\x57\xed\x8c\x6a\x6f\x1d\xd6\xdc\x4b\x7a\xaa\x42\x46\x53\x18\xd9\xb8\xec\xf7\xc9\x8b\x6d\x69\x37\x77\x83\x3e\x52\x9d\xa1\x8f\x1a\xd6\xe4\x62\x3b\xb7\x45\x11\x4b\xb1\x84\xe3\x89\xf1\x2e\xfc\xa2\x49\xa8\xcf\xc6\xb9\x5d\x1b\x58\x99\xf1\xc9\x44\xc6\xe5\xd2\xff\xdd\x45\xc5\x0d\xa6\xa5\x19\x46\x36\x29\x38\x4f\x46\xd3\x0a\x3d\x04\xbe\xfe\x4c\xf7\xb7\x65\x93\x0f\x44\x7a\x89\x5d\xfb\xb0\x76\xc5\xc2\xef\x11\xb7\x4b\xfe\xcb\xc7\xe9\xd1\x21\xf3\xbe\x47\xa1\x02\x65\xd5\xbf\xc6\x6f\x60\x6c\x7c\x85\xa2\x35\xb6\x2c\x24\xf2\xd1\xab\x3b\x12\x28\xec\x1c\x35\xe1\x44\x6c\xcc\xc3\x92\xae\x6b\xf3\xa9\xa3\x81\xb2\x15\xfc\x41\x0d\x52\x3c\xa6\x21\xb8\xd8\xa0\x54\x77\x05\x8b\xeb\x3f\x36\xca\xf6\x67\xd6\x2a\x45\x87\x3b\x81\x42\x32\xdf\x69\xd2\x5b\x5c\x36\x11\x97\xf3\x7a\xe3\xb9\xe6\x89\x83\x55\x5e\xd9\x2c\x23\xfa\x2b\xed\xf9\xf9\xa5\xd9\xea\xec\x45\xd8\x9f\x99\x78\xb4\xca\x4c\xc7\x8b\x91\x1e\xa2\xfd\x20\x5b\xe0\xd9\x86\x0c\x41\x23\x20\x51\xc0\xf2\x75\x93\x57\x51\x98\x26\xcb\x71\x14\x16\xad\x9a\xe5\xa5\x87\x91\x5c\x9a\xf2\x52\x38\x70\xa0\x9d\xb0\xcc\x05\x93\xab\xe9\x81\x08\xd1\xfa\x49\xe5\x18\xdb\x8f\x86\x16\xb1\xc0\x39\xc2\x78\x09\x8d\x40\xf8\x8f\x43\x3b\x4c\x33\x93\xf4\xca\xe1\x8c\x72\x31\xfa\x54\x09\xd1\x5d\xaf\xa9\x57\x3c\xae\x0d\xde\xed\x2c\xe5\xb1\xc8\x84\x4e\x69\x7b\x88\x63\x1a\x5d\x7c\x8c\xee\x1a\xff\xd4\x54\x55\xe5\xdc\x0c\x6d\xec\x35\xda\x71\xaa\xa1\xf6\xe3\x6b\x37\x1b\xcf\xd7\x4c\x32\x53\x73\x77\xf2\xf4\x83\x0d\xac\x11\xe9\xf4\xab\x1e\x2a\xe9\x0c\xf5\x58\x9f\x9a\xcb\x49\xac\x53\xa9\x2d\x1f\x53\x33\xa4\xd1\xf6\x2a\x24\xe1\x06\x7c\x7b\xec\xe1\xfd\x6f\xab\xbc\x9f\x97\xb9\xfb\x10\x2e\x21\x7a\x10\xa8\x36\xba\x6f\xbe\xb0\xb3\x78\x4b\xb9\x1b\xa2\x3a\x13\xe2\xae\x4e\x58\x46\x23\x9b\x6d\x9b\x52\x64\x14\x27\xa2\xea\x03\x71\xf2\xaf\x24\xb3\x7f\x1a\x28\xf8\xb4\x46\x30\x17\x69\x62\x71\x5f\x11\x32\x5b\x28\xe1\xf9\x45\xc7\xe7\x89\x36\xe9\xd9\xde\x2e\x1f\x51\xce\xd4\xcc\x63\x02\x65\x99\xba\x6b\xa2\x65\xf7\xa9\x72\x14\x39\x1a\xe7\x2a\x33\xf3\x4c\x87\xce\x12\x0d\xf9\x41\x3d\xb1\x8d\xc0\x9d\x72\x2c\x3c\xa3\x5c\x0d\xba\xab\x36\x73\xab\x40\xf7\x5a\x25\x4b\xf2\x53\x41\x93\x14\xd1\x6a\x94\x99\x98\xca\x7e\xdc\x9a\xeb\x58\x77\xce\x14\x75\x69\xb7\xa4\x32\x9d\x06\x5c\xd1\x88\xdc\x50\xf0\x5e\xc2\xcf\xf6\xa8\xe8\x8b\x81\x50\x99\xd6\x22\xb2\x77\x4c\x6c\x9e\x43\xce\x15\x85\xcf\x9b\x6a\x47\x31\x50\x9f\x41\xe1\x2a\xee\xcc\x4c\x7c\x0e\x91\x86\x61\x99\xe5\xb3\x3e\x49\xbd\xa9\xd4\xaa\x6f\x52\x38\x15\x91\x47\xda\x58\xfc\x42\xe9\xb0\x91\xee\x84\xdc\x1e\xbc\xc1\x3d\xf5\x66\xd3\x5a\x9f\xfb\x77\xb7\x8b\xcc\x26\x3d\xac\x7b\xae\x2b\x15\xe1\xf7\x84\x4a\x91\xf2\x28\xdc\x49\x4f\x55\xda\x05\x2d\x51\x8b\xda\xf1\xf3\x9e\x61\xfe\x4b\x4f\x4d\x6a\xeb\x9e\x3e\x0a\x16\xe0\x77\x70\xc2\x8b\x8d\xa7\x12\x71\xd6\xba\x94\x17\xc7\x8f\x38\x70\x9c\x51\xaa\x79\xd8\xc7\x7c\x1d\x68\xa2\x75\x01\xa2\x6a\xf5\xb7\x1d\x2c\xd2\x8f\x93\xa7\x00\x0c\xfb\x5e\x6a\x47\x59\x66\xf3\x51\x9a\xe4\xf0\x68\xdc\x2f\x38\x0f\x3c\x19\xbe\x6e\xb8\x59\xaf\xb6\x8b\x68\x18\xd5\xd4\xa8\xa0\x49\xc4\xd7\xaa\xa6\x2a\x4c\x5e\xf0\xae\x42\xdb\xed\xdd\xb1\xd2\x57\x7f\x57\x7d\x01\xc8\x1e\x71\x72\xab\x84\xe0\xc5\x74\x1c\xb3\x52\x94\xf9\xe7\xd4\xb6\x0d\xd3\xaa\xce\xad\x6e\x9c\x28\x8e\xa9\x3c\xab\x49\x19\xe7\xd5\xb6\x7d\x7d\x64\x20\x7c\xe0\xb9\x34\x0c\x69\xe2\x17\xb5\x29\x54\x5e\x44\x45\x59\xa4\x33\x4a\x08\xf5\x08\xa1\xe3\x31\xcd\xbc\x45\x81\x0c\xbf\x78\x41\xe9\x18\xc6\xd1\x8a\x7d\x86\x56\xa8\x13\x45\xda\x2b\xed\xec\x4f\x28\xbd\x90\x82\x5a\x0d\x61\xb7\x20\x62\xe0\x2f\xa3\xae\x42\xcd\xf9\xe1\x58\x49\x5b\xfd\x18\x40\x1c\x71\x65\x6a\x39\xce\xfc\x76\xac\x3a\x36\x70\x0c\x3c\x03\xf8\x9d\xc0\x57\xf0\xdb\x51\x58\x63\xfd\x3d\x18\x2b\x10\xc7\x69\xd4\xe9\x72\x4a\x54\x8f\x94\xab\x09\x44\x35\x69\x33\x6b\x43\x9e\x47\xa7\x94\xea\x89\x0d\x99\x16\x36\x2f\x6c\x26\x78\x4b\x44\xb7\x3f\xc3\x0a\xe7\x17\x0d\xcd\xcd\xf6\xaa\xcd\x7a\x51\x28\x94\x27\x84\xd4\x0f\x10\xb1\xf9\x85\xba\xc3\x2b\x69\xd2\x27\xdc\x39\x26\x30\xac\x27\x2f\x04\x28\x4f\x1e\x3e\xa1\xaa\x1d\xb8\x27\xb9\x6e\x8b\x62\x4c\x51\x62\x87\xeb\x07\xaa\xf2\xf6\x46\xf4\xcb\x69\xd9\x1f\x14\xd0\x51\x57\x26\xa5\x32\x7a\xdd\x41\xbb\x5f\x59\xe0\xec\x71\x5a\xa6\x6e\x40\x56\xa5\xe5\xb4\xe8\x04\x6b\x4e\x1f\x40\x54\x91\xa6\xf1\xa7\x2f\xb7\xa3\x9e\x35\xe8\xbe\xa2\x54\x3d\x8a\x5b\xc8\x2f\x94\x90\x2f\x6b\xab\x5b\xe0\x70\x31\x1f\xbd\x82\xde\x12\xbf\x18\x6b\x3d\x60\xe5\xcf\xf9\x03\x2f\x21\x60\xc2\x9c\x69\x1a\x58\x5b\xbb\x3a\x7e\xb4\x58\x13\x67\x6c\x4d\xfc\x63\x18\xd8\xb8\xf7\xa8\xca\x64\xb6\x60\x7d\xa1\x87\x72\x08\xc3\x17\xa7\xbb\xe0\x46\x04\x67\xf1\x54\x5d\xf3\xd9\xab\xea\x00\xe0\x22\x1b\xaa\xe5\x34\xff\x0e\x07\x4a\xc3\xf8\x34\xf7\x34\xa4\x9a\x6f\x7d\xed\x2b\xf2\x87\xa7\xa6\x20\xaf\x80\x9f\x9b\x47\x3d\x58\x8e\x7b\xdc\xdb\x0f\xb5\x38\xfc\x0f\xa7\x86\xf4\x4b\xbb\xdb\x36\x8e\x86\x51\x42\x8d\xec\xfd\xbb\x9d\xf0\x93\x27\xcd\x5f\x54\x58\x86\x22\xb3\x26\x2f\x33\xcb\x58\x14\xd1\xff\x56\xec\x96\x13\x8a\x9c\xbc\x92\x66\xd6\x24\xf9\x67\x8b\xfb\x36\xec\xab\xb4\xcb\xde\x5b\xf2\x98\x84\xc2\xa7\x12\x9f\xab\x1a\x29\x72\x54\x6d\x97\x55\x93\xe4\xb3\xbe\x3c\x6e\xe1\x30\x96\x65\xa5\xe8\x6a\x63\x75\x7c\x9f\x9e\xea\xb2\xec\x5d\x68\xe7\xa1\x61\x64\xb8\x60\xd3\x94\x66\xe9\x25\x95\x60\xe7\xa4\x56\xbf\x43\xf1\x2e\xa0\x7c\x2b\x8e\xfe\xd5\xbe\x74\x58\x63\x8f\x81\x3d\x3a\xf6\x0d\xce\xe3\xaa\xf3\x75\xbc\x36\xf5\x75\xb9\x6e\x3f\x8e\xba\x33\x4a\xc7\x20\xd0\xad\x5b\x85\x5c\x99\xd6\xf3\xab\x1e\xf0\xb0\x6b\xb2\xcc\xe4\xb9\xcb\x3a\x31\x39\xc2\xb3\xe0\x6b\x75\x1e\x24\x26\x0b\xd3\x22\x0a\xeb\x86\xfa\x4a\xec\xe2\x92\xc6\x9d\x9b\x38\x4e\xd3\xc4\x19\x27\xca\x6a\xf7\x10\xd1\xdb\x2a\x4e\x4d\x8b\x90\x1e\x38\xd0\xae\xee\x60\x1a\x7d\x36\x0b\xec\x31\x25\x45\x92\xec\xa0\xb5\x8d\x6a\x91\xdb\xd9\xfc\x62\x5c\x97\xde\xdc\x2f\x74\x92\x73\x81\xfa\x60\x80\x57\x3b\x8c\x96\x43\x4e\xde\x6a\xd2\xa7\xeb\x93\x7c\x10\xc7\x77\xfd\xc5\x64\x17\x37\xe8\xfe\x55\x47\x42\x2c\x07\x2f\x6e\xd7\x43\xe5\xb4\xf1\x30\xf0\x28\xf5\x9e\xdd\xe5\x1d\x9b\x7e\x58\x73\x4f\xff\x88\x7e\x05\xa7\xc8\x56\x8c\xee\xd0\x32\x3e\xac\xa6\x2e\xb7\xb5\x35\xce\x2d\x35\xe8\xba\x41\xc5\x20\x8e\xc2\x1d\x1d\x2d\x46\xdd\xa4\xcb\x90\xa5\x2c\x48\xc6\x24\xab\xb1\x1f\xb8\x9c\x74\xc8\x85\x51\x96\xc6\xd1\x72\x14\xd6\x4c\x82\xc6\x9e\x13\xe6\x9d\x96\xa0\x28\x6b\x7b\xdb\xfc\x20\x72\x07\xce\x6c\x5a\xe1\xdf\x7d\xae\xe3\xc3\x0c\xc3\xc2\xf1\x82\x9b\xbe\x68\x15\xbe\x1d\x3c\x5d\x6f\xdb\x26\xac\x3b\xc0\x95\x3b\x2d\x10\x54\x38\x3f\xa4\xac\xe3\xb3\xf8\x4a\xfb\x77\x2f\xb6\xbb\x65\xe6\x92\x65\x29\x7c\x5b\x4a\x5b\xb0\xc1\x0f\x3d\x34\x49\x68\x63\x19\x41\x22\x52\x83\xbb\x02\x04\xfe\xb7\xc7\xbe\xd8\xb8\xb9\x79\xf0\xb2\x77\xa1\x4a\xc2\xfe\x86\xf2\x04\x3b\x8f\x6d\x8d\x33\xf5\x34\x75\xf7\xf9\x44\x0f\x5a\xff\xe4\x57\x05\x90\x47\xc1\x42\x9a\x2d\x4a\x07\xfa\xdb\x01\x38\x0b\x68\xc6\xfd\x0e\x4e\x39\x8c\x85\x59\x80\x41\xe4\x0e\xe9\x39\x62\xdf\xcc\x10\x97\xd7\x65\x8c\x8b\x4b\x32\x80\xfe\x1d\x1c\x99\x58\x11\xc7\x88\x9a\xee\x88\xf1\x5e\x08\xf9\xdf\x05\xca\xfa\x02\x8c\x79\xb1\x8a\xc6\x42\x45\x54\x65\x23\x3b\x8c\x2a\x7e\x5b\x2d\xf4\x2d\x13\x9f\x85\x9c\x51\xd6\x89\x47\x02\xaf\xc1\xce\xa8\x1f\xbc\xc9\xd5\x31\x01\x5e\x05\xa0\xbd\xf9\x68\x98\x9f\x6f\x87\x83\x2c\x1d\xa6\x39\x09\xbf\x7f\x86\x49\xd8\x33\x8a\x2d\x3e\x1c\xa5\x09\xc1\xe7\x5d\xa1\x7f\x58\x85\xcd\xc3\xaa\x7b\x3c\xca\xd2\xe5\x28\xb6\xe0\xda\xa1\x84\x81\x3f\x17\x5f\x2b\xc6\xad\x11\xe2\xe2\x8b\xfc\x6c\x9e\xa0\x79\x9e\xb6\x48\xa0\x9b\xf9\x1b\xff\x09\xce\x1e\xe9\x11\xd3\x5d\x72\x69\xd8\xfc\xbc\xb0\x51\x26\x35\x87\x05\xba\x1d\x9c\xd1\xa9\x63\x2d\x4c\x63\xa3\x6d\x29\xde\x55\xd1\xe1\x5d\xe5\x87\x34\x28\x73\xf8\x6d\xa0\x31\x89\xfa\x8e\xaf\x15\x4a\xa6\x18\x64\xe9\xda\xac\x5e\x52\x67\xa9\x70\x77\x52\x75\x7e\xad\x80\x72\xc8\xff\xd0\xe4\x29\x17\xa6\x79\x81\xe2\x0d\xfc\x81\xd3\x38\x27\xf9\x45\xad\x4d\x14\x15\x7f\xb3\xba\x55\xa8\xa0\x9e\xa0\xca\x1f\x99\xd6\xd3\x1d\xa5\xcb\x38\x4b\xc4\x19\x2c\xee\xbb\xca\xdf\xe3\x1a\x3e\x96\x78\x8c\x54\x3b\x08\x98\xb7\x6b\x63\x6d\x9d\xf0\x97\xca\x6f\x6f\x16\x61\x07\xb9\xdd\x13\x9d\x3a\xc0\xb3\x5a\x6b\x78\x38\x3c\x40\x61\x9a\x41\xa7\xe5\x84\x9a\x9e\x9d\xa8\xe4\xf9\x89\x89\x27\xc8\x3d\xce\x1c\x22\x21\xf0\x2b\xc7\xe0\x9d\x9d\x6a\xd7\xc9\xf9\xa2\xaa\xf7\x9d\x68\x9b\x0b\xd8\xbe\x4a\xe6\xd4\x40\xcc\x5b\x73\x57\x0f\x02\xe1\xe0\x3e\x8c\xfe\xd8\x0b\x12\x5b\x90\x3f\xb1\x6b\x26\x45\x43\x04\x5b\x0a\x8d\x68\xdf\x6e\xc3\xb7\x46\x4c\xbd\xab\x0d\xa8\x9e\x9e\x32\x9d\x7a\x81\x54\x8c\x46\xc5\x4c\xdd\x15\xcf\x19\xfd\x5e\x52\x6e\x94\x0f\xea\xb4\xc3\x90\x8c\x1e\x69\x23\x3a\x3f\x44\x47\xe5\xaa\xcb\xea\x0d\x4d\xd6\xd2\x02\x1a\xec\x39\x26\xfa\x05\x4f\x28\xc9\xee\x88\xe1\x14\x6e\x3c\xb8\xe0\x11\xbf\xca\x4b\xc3\xc6\x66\x7d\x3b\x7d\x4d\xa4\xca\x1f\xd3\xe8\x0d\x7d\x2c\xe6\xbf\xf0\x3f\xe0\x80\x51\x6e\xb8\x2f\x3a\x2c\xb0\xaf\x8c\xcf\x78\xcb\xfa\xf2\xe0\x41\x6e\x14\xa0\x93\xb2\xb5\xe3\xd9\xc4\x5b\x27\x0d\x60\x55\x36\x8b\x6d\xb5\x94\xf5\x18\x7d\x32\xf1\x1e\x6b\xa0\xc4\x84\x51\x11\x1d\xb4\xc0\xd9\x3b\x95\x46\x87\x9e\x3f\xa5\x5a\x06\xcb\x11\x00\x2d\xfe\xfc\xdc\xcb\x52\x0e\x88\x62\xf7\x95\xa5\xd2\xf5\x40\x13\x82\xa2\xc4\xe6\x76\xbb\x96\x7d\xa5\x55\xee\x24\x69\xdd\xe4\xf8\x01\x65\x14\xa2\x13\x4b\x6f\x24\x5a\xb3\x5e\xf7\xe3\x41\xa3\x18\x79\x59\x08\xb1\x87\x3d\x2d\xc7\xca\xc1\xf5\xfd\x5a\xe5\x16\xad\x9a\xc2\xc6\xeb\x64\xdb\xad\x14\x13\xe4\x18\xdb\x50\x3a\x89\x8f\x63\x01\x63\xdb\x7c\x32\x56\x3e\x6b\x30\x06\x95\xef\xb3\xf9\xd4\x5e\x5c\x5a\x6c\x9b\xde\x6b\xa5\x43\x9a\x89\xf9\x17\xfd\x39\x59\xd0\x1e\x52\x6f\xe2\x34\xe9\x3f\xee\x63\xf1\x2d\xdc\x21\xc6\xb0\x07\x9e\x39\xb2\x03\x71\x00\xed\xac\x2d\x13\xa5\x0f\xf8\x4d\x1c\xa5\x00\x07\x9e\xd7\x4d\xd2\x07\x81\x92\x10\xe3\xcc\x5f\x04\x60\x3c\x47\xe8\x1b\xb8\x07\x08\xd1\xc8\x69\xd0\x17\x42\xa5\x8d\xfe\xdb\xff\xac\xa6\x8f\xbd\x68\x95\x72\xcb\xb9\x39\x07\xcf\xa8\x1e\xb1\x54\x35\xd2\xa8\x34\x61\x58\xe6\x30\x4a\xe7\x9d\x27\xfe\xab\xf4\x41\xf8\xc5\x54\xfa\x4a\x14\xcb\x38\x2a\x4c\xb6\xbe\x4d\xcd\x71\xae\x02\xb2\x21\x3a\x28\x1e\xd1\xf8\x44\xc7\xd3\xd1\x6e\x8c\x95\xed\xdf\xfb\x2e\x40\x75\x4d\x18\xc5\x71\x99\xcf\x6a\xf1\xab\x13\x4a\xde\xf1\x91\x8e\x07\x61\xbc\x35\x56\x6d\xc7\xd6\xa4\x21\xbb\x36\xcb\xcb\x71\x29\x87\x3a\x7e\xe9\x03\x65\xad\xfd\xc1\xd4\x11\xb5\xb4\xbb\x9d\x2e\x2f\xdb\x8c\x60\x1f\xc2\x15\x57\x3d\xb7\x3b\x81\xae\x07\x94\x15\xec\xf4\xc6\x5d\x58\x68\xe7\x36\x5b\x8d\x42\xa4\x1f\x32\x08\xab\xc9\x85\xd5\x20\x04\x71\xc8\xdf\x5a\x70\x03\x74\x4f\xb5\x3e\xa3\xb2\xf2\x58\xe4\xaf\x70\x61\x8a\x43\x37\x3f\xdf\x5e\x4f\xcb\xa4\xcf\x96\xe7\x8e\x07\x5c\x1d\x27\xc2\x03\xd6\xe1\xf6\x35\x69\x65\xe3\xe0\x7c\x6b\xac\x0c\xe1\xde\x52\x42\x6b\x79\x39\x9c\xf1\xd4\xc2\x77\x90\x70\x8a\xcb\x89\x27\x22\x1d\x75\xc1\x11\xfc\x3c\x42\x8a\xd1\x3f\xfd\x9d\x9f\xed\x54\xc7\xb0\x6e\x8f\x62\x6b\xb3\xf6\x28\xce\xa3\xad\xd8\x30\x68\xd2\x5d\x1a\x7f\xae\x9e\x2a\x57\xf7\xa7\xbd\x67\xdf\x53\x33\xde\x35\x7e\x27\xea\x1d\x34\x80\x8f\x29\xd3\x8f\x37\xb0\x41\xf1\x79\xe5\xd8\x47\x0e\xbf\x1d\x56\x75\x08\x8a\x7f\x15\x28\x0e\x0d\xb5\x31\x25\x71\xf6\x18\xc4\x53\xc4\x02\x55\xa2\xda\x8b\xdc\xe3\xfa\xa3\xc0\x1f\xa5\x6f\x81\x37\x8a\x43\xf7\x06\xed\x34\x71\xa4\xa3\x47\x89\xd2\xf9\xc8\x58\x4d\x51\x36\xa6\x50\xc6\x73\x73\xed\x28\x31\x3d\x9a\x67\xf0\xc2\x45\x5d\x7c\x5c\x39\x51\x1c\x1f\xff\xac\x00\x66\x4d\xde\x33\x5f\xff\xb5\x2f\x25\x46\x41\x43\x04\x20\x45\x9f\x53\x10\x52\x7a\xad\x65\x80\x63\xbc\xc8\x2d\x4f\x58\xbb\x39\x54\x94\x33\x04\x3b\xa9\x39\x70\x47\xea\xce\x13\x4e\xb3\xd9\xfc\x1c\x6d\x77\x54\x0e\xdb\xc9\x96\x1d\x8f\xf5\x7f\xa4\x7b\x89\xc7\xcd\xba\x9e\x42\x0c\xab\x82\x25\x48\xe2\x4f\x75\xaa\x82\x46\xa8\x89\x78\x46\xb4\xa8\xfe\xd3\xbf\x37\x21\x45\xd0\x1d\x40\x96\x50\x9e\x30\xfc\xc5\x09\x05\x50\x84\xd6\x9b\xbe\xfe\xf9\x25\x96\x7b\xc6\xce\xd9\xda\xa9\xcb\x67\x3a\xef\xd3\x56\x47\x8d\x20\x6e\x29\x09\xea\xc7\x3b\x5e\x1c\xe4\x67\x3a\x5b\xbf\xe0\xea\x5f\x45\x37\xdc\xde\xa9\x32\xca\x8d\xeb\xd8\x49\xa8\xa2\x77\x10\x33\x1a\x33\xbe\x99\x49\x95\x89\xa2\x5d\x73\x08\x4b\x0f\x29\x77\xab\xe3\x1c\x3e\x0f\xa3\x9a\x65\xd4\x92\xa6\x09\xdf\x56\x2a\xe1\x89\xcd\x56\x2d\xb3\x02\x71\x97\xb6\xd6\x4e\x32\xbf\x0b\xaf\x29\xea\x43\x5e\x98\xac\x97\x0e\x67\x3c\x18\x19\x9a\x01\x48\x2c\x4e\xd2\xc3\x90\x71\xfa\x66\x3b\xca\xbd\x0b\x0a\xa1\x4a\xc7\x40\xf5\x84\x1a\xed\x22\x1d\x0c\x36\xb6\x26\x8b\xd7\x67\xbc\x1a\x1c\x56\x91\x93\xc4\x54\xec\xc9\x1a\x07\x33\xcd\xc2\x28\x07\x27\x58\x38\xb1\xd5\xef\xf1\xb5\x1b\x9e\x8d\x32\x6e\x34\x66\xeb\x33\x2d\x65\x3f\xe0\xf1\x41\xd7\xea\x12\x65\xd3\xbd\xe2\xa5\xea\x4b\x31\x44\x42\x6b\xeb\xcb\x36\x16\x6b\x57\xb2\xf0\x58\xd4\x2c\xa5\x85\xda\x24\x01\x25\xfc\x49\x80\x10\xa4\x08\xf0\xea\x5f\xcb\x71\xca\x2c\x43\xb7\x71\xd0\xc3\xe2\xeb\x5a\x72\x6b\xa2\xe4\xd9\x6a\x9d\x38\xf5\xcf\x3d\xfb\x38\xf7\x7c\x17\x6b\x06\x71\x88\xd2\x86\x17\x99\xa4\x0f\x0c\x28\x62\x37\x6b\xe2\xe2\x23\x1d\xc5\x0a\x62\xce\x12\xca\x07\xc0\x27\xfe\x2b\x84\x67\x71\x0f\xc4\xbe\x62\x67\x07\x85\x76\xfb\xf7\x54\x3f\xd4\xc2\x05\xf6\xf7\x51\x3f\xf0\xda\xfa\x54\xc7\x1b\xb2\x4e\x74\x46\x70\x8f\x36\x20\x92\xe5\x1d\x68\x2c\xa0\x4b\xb1\x1d\x21\x59\xca\x4a\x9f\x43\xd1\xa2\xd9\xa1\x4c\x1b\x2e\xea\x0c\xf2\x16\x94\x09\x50\x73\xb1\xd5\xa6\x08\xe8\xf8\x28\xfb\x60\xac\x64\x31\x90\x77\x89\x3a\xea\xe6\x0c\x60\x6e\xae\x1d\x93\xbb\xb8\xcd\x5b\xf4\xf0\xd0\xf7\xf8\x5d\xcd\x5d\xf8\x5d\x35\x9b\x0b\xb3\x32\x1f\xb4\x14\x1e\xe1\x0d\x8d\x47\x78\x23\xf0\xe4\xa1\xe5\xcc\x7e\xbd\x24\x00\xce\x23\xca\xdf\xe1\x0a\xe2\xbc\x88\xce\x2b\x99\xd7\x0f\x95\x9b\xe4\xd9\xda\x1c\x95\xde\x40\x18\x96\x74\xdb\x58\xc8\x88\xb6\xbc\xf2\x9b\x7b\x51\x9c\xde\xb5\x0d\xb9\x67\x72\xae\x45\x45\xe8\xac\x2d\x50\xc0\xf1\x54\x9b\x5f\x28\x8c\x33\x98\xe4\x59\xb2\x1d\x75\xa9\x9b\xc6\xbb\x63\xb0\x35\x51\x63\xff\xeb\x4a\x4d\xec\x8f\xb4\xab\x38\x37\xb9\xd9\x6e\x4b\xc1\x2e\xa3\x5e\x9a\xaf\x27\x61\x46\xb2\x5b\x4a\x6b\xe1\x04\x9e\x36\xbf\x68\xc2\xa1\xb3\x17\xb8\xf2\xff\x6e\x29\x5f\xf0\xc7\x1d\x26\x62\xcd\x39\x72\x48\x5c\xf2\x68\xee\x46\x2d\x90\x51\x96\xae\x0a\x69\x57\xc4\xfc\xe8\xc3\xf0\x8b\x06\x12\xda\xcb\xed\x38\xcd\x99\x6d\x2b\xdb\x9a\x7e\x45\xf6\xb5\x1f\xb9\xda\x3c\x4f\x5b\xba\xaf\x70\x4b\xcf\x38\x6e\xd5\xce\xde\xb4\x04\xee\x50\x83\x01\xf8\x5a\x65\x5b\x07\x7b\x06\x7a\x97\x9a\x1f\xac\x44\x56\xa4\xef\x73\x6f\xca\x5a\x58\x80\x31\xa6\xb7\x0a\x19\xd5\x19\xc5\xfc\xb9\xa6\x41\x59\x9a\xd2\xf7\xa3\x26\x3f\x7f\xce\x23\x67\x7c\x71\xc1\x52\xcf\xe8\x3e\x60\x1e\x2a\x09\xe6\xe6\x1b\x38\x37\xd7\x1e\xd8\xac\x38\x08\x68\x13\x7b\x5a\x07\x6a\x45\x9e\x77\xf5\x07\xc9\x43\xaf\x9a\xb8\x94\xf5\x0b\x8a\x0b\xe4\x75\xf8\x7a\xa2\xef\xa1\x49\xec\x0e\xfa\x20\x48\xe7\x6e\xa2\x5d\xca\x2f\xe8\x53\xe1\xcc\x3e\xa6\x3b\x86\xdb\xaa\x38\xb6\x71\x79\xec\xe7\xbe\x17\x55\xc7\x6b\xcb\xa4\x61\x39\x1a\xdb\x17\x61\x25\x80\x77\xc0\x11\xe2\x6b\x85\xc9\xb4\xaf\x8f\xd2\xac\x00\x46\x03\x77\xfa\xb1\x89\xe7\xa3\xde\xc2\xae\x11\xfc\x80\xef\x58\x5c\x6d\xb0\x8f\x7b\xb5\x9d\x5b\x3b\xac\x7b\xa0\x78\x6e\xe8\xc5\xc0\xaf\xba\xae\xb5\xc9\x93\xd5\x3f\x21\xb0\x43\xd2\x16\x7d\xd6\xeb\xde\xb6\xfa\xc7\x7f\x13\x9b\x19\x5f\xf9\x67\x3a\x1e\x47\xf4\x4b\x9f\x47\x3e\x84\x74\xed\x1a\x9d\x05\xb8\x55\xcf\xa0\xfb\x24\xed\x58\xba\x89\xc8\x9a\xee\xf0\x59\x22\x87\x65\xcb\x29\xaf\x3d\xda\x51\x40\xf1\x5d\x80\x83\x72\x8d\x42\xc1\xcf\x19\x15\x28\x18\x61\x93\x65\x31\x01\x1b\xa3\xbc\x98\x51\xdc\x8a\x8b\x0a\xe3\x71\x45\x19\xf6\xfc\x59\x93\xe4\x5f\x98\x26\xbd\x52\x11\x34\x35\xdc\x4b\xe0\x40\x32\x7f\x5e\xc9\x6c\x72\x50\x3b\xd0\xb3\xbf\x91\x20\x7c\xe9\xfe\x78\xb5\x35\x97\x6b\x0d\x49\xa9\x0c\x1d\x60\x36\x46\x53\xd8\xda\x33\x8a\x32\x2c\x03\xaf\xbc\x80\xda\x07\x2b\x4d\x07\xca\x7c\xfc\x96\x1b\x37\x0f\xca\xfe\xa0\x55\xfd\x1d\xb4\x18\x3e\xd5\x9e\xaf\x9f\xaa\xe5\x16\xa6\xe9\x4a\xe4\xa4\x9b\x44\x57\xa3\x66\xda\xe5\x54\x0d\x4b\x9a\x90\xee\x54\x01\x9d\x8f\x67\x21\x2f\xb9\x79\xf2\x9f\x90\x68\xf0\xab\xd5\x16\x71\x28\x0b\xe4\x1e\x42\x1b\xf4\x8c\x8d\xfb\xda\x34\x64\x53\x21\x5b\x16\x4f\xd1\x41\x8e\x3b\xfa\xa6\xa6\x1a\xb0\x0f\x88\x60\x3e\xea\x1a\x0a\xd5\x09\x8d\x10\xa7\x9d\x6b\xcf\x20\xe4\xf0\xaf\x04\x2a\x28\xce\x52\xf3\x15\x5f\x63\x16\x09\x93\xa8\xba\xe0\xc6\xa0\xfd\x7a\x55\x4d\x07\xdf\xa7\x34\x18\xb7\xe1\x4d\x0d\x76\x38\x41\x6d\x16\xc7\x61\x73\x92\x51\x57\x03\x6f\x29\x5d\x25\x79\x4e\x05\x5b\xa0\x96\xf4\xe5\xe4\x98\xae\x79\x2a\x99\x90\x02\x27\xaa\x54\x56\xda\x44\x9e\x00\x3d\x58\x3c\xfc\x63\x75\x59\x85\xbe\x4d\x22\xd0\x54\xbc\x0f\x9a\xd6\xaa\xf3\x5a\x64\x2b\x51\xd2\x47\x11\x87\x34\x0d\x36\xdc\x28\xb7\x4e\xa3\x05\xe3\xd8\xa9\x0e\x2d\xb6\x4d\x21\x54\xff\x1f\xe7\x44\x39\x2c\xe3\x22\x1a\xc5\xb6\xcc\x6d\x36\xab\x88\x96\x18\x3d\xa0\xf7\x04\xb3\x10\xf6\x69\xc1\x23\x41\xb5\xf5\x6e\xd3\x0c\xd9\x84\x2b\x49\xba\x16\xdb\x9e\x63\xa2\x21\x0f\xba\x4c\xdf\x9c\xaf\xdd\x97\x19\x99\x72\x54\xed\xa6\xea\x8f\x3a\xf1\x75\xef\x91\xde\xe4\x03\xbd\x1c\x49\xdb\x0e\x5d\x9a\xe3\x1a\x33\x74\x7c\xec\x19\xb0\x6b\xc6\x66\x45\x1e\xc5\xc6\x22\x1a\x68\x39\x35\x11\x67\xf7\xd0\xea\x91\xc9\x8a\x28\x8c\x46\xc4\xf0\xaf\xee\x27\x22\xd5\x04\x21\x10\x75\x1b\xc4\xdc\xa5\xcf\x5e\x3d\x1c\x04\xd0\xff\x63\xec\x51\xbe\x47\x83\xcf\x7b\x41\x87\xf5\xbc\xb0\xd9\xfa\xaf\x7d\x29\x4c\x87\xb6\xb7\x8e\xaf\xa9\x85\x0a\x44\xb7\xaa\x9e\x27\x27\x0a\xc3\x7c\x81\xde\x46\xd2\x1b\x5d\x4f\x24\x69\xf1\x39\xaa\x89\xd1\xd3\x63\x62\x2a\x2d\xad\xfe\x73\x68\xa5\xe0\xd8\x79\x38\x56\x40\x5d\x06\xdd\xe2\x77\xee\xd0\x1f\x47\x0a\xca\x5e\xab\xd8\x20\x97\x03\x25\x6a\x05\x2d\x29\x41\xe3\x7a\x03\xf1\xb7\x71\xf6\xa2\x33\xce\x63\x48\x1c\x0e\x77\xe8\x40\x11\x85\xe8\xaa\xcc\xd7\xc7\x19\xf6\xe3\x2e\x96\xb5\x70\x8a\x95\xae\xc9\xbe\x7d\x42\xf1\x00\xd3\xc1\xf7\x94\x2d\xf8\x65\x4a\xf9\xa5\x75\x43\x4b\x40\x04\x48\x36\xf7\x52\x0e\x1c\x98\x22\x5e\x4a\xd7\xcc\x37\x01\xb5\x13\xbc\x1a\x19\x2a\xed\x8c\xe3\x34\x3e\xe2\xeb\xc0\x3b\x7c\x94\xc3\xa1\x49\x66\xb5\x7c\x1e\x24\xab\x71\x04\x9e\x54\xd1\xf2\x6d\xcd\xe8\xbd\xab\xd2\x3c\xdb\x85\x9a\x16\x8e\x98\x2d\x13\x7f\x46\xc1\x91\x6b\xe3\xf8\xd4\x09\xb7\xf8\xd2\xcb\xed\xe5\x6a\x67\x39\xd8\x80\xa0\x5c\xfc\x88\xf9\xaa\x17\xb5\x8d\xe2\x55\x0f\x3a\x13\xb1\x3c\xad\x9c\x37\x95\x82\x2c\xed\x6e\xc7\x65\xb8\xb2\x4e\x07\x11\xce\x59\x1c\x12\x7c\xdd\xa0\xa3\xfc\x6a\x3b\x5b\x47\x9b\x53\x4f\x6d\xf9\x5a\xc9\x38\xe5\x45\x1a\x1f\x1c\x9a\x64\x53\x7c\x53\x3e\xaf\x8f\xfa\xb1\xe3\xea\x8e\x96\xd3\xc4\x61\x85\x71\xdc\x59\xd8\xc9\x8b\xf6\x2b\xad\x00\xb1\xbe\x53\x13\xe9\x9b\x81\x22\x64\x5d\x0c\xf4\x44\xe9\x62\x83\xb5\xc5\x9e\x76\xcf\xe6\x51\xdf\x0d\xfe\x1d\x71\xc1\xd1\x3d\x2e\x35\xc9\x21\xbe\x66\xd7\x88\x20\xe2\x20\x3c\x6c\xd5\x2f\x84\xed\x26\x86\xc8\xc8\x84\x2b\xfe\x99\xa0\xeb\xc4\x18\x25\x7e\x31\xb5\x92\xf7\x2e\xb4\x6d\xb2\x9c\x66\x21\x09\xc3\x28\xa5\x26\x64\xbb\x7c\xdd\x34\x3c\xea\xdb\xa4\x14\x5f\x49\x0d\xd0\x15\x9e\xef\xe3\x8e\xe7\x1e\x4a\xbf\x91\xfb\xaa\x1d\x7f\x7a\xed\x9c\x48\xc2\xb4\x1a\xd9\xb5\x7c\x87\x92\x0d\x23\x7d\xa9\x8d\xf7\xf1\x18\xf8\x7f\x05\xaa\x6d\xf6\xb9\x8e\x42\x42\xbd\x47\x6f\xad\x39\x83\x68\x91\x3d\xee\xfe\xfe\xc0\x86\xb1\x41\xea\xc7\x1c\x54\xe5\xdd\x76\x5e\x3b\x99\x4c\x7b\x67\xcc\xcd\xb5\x33\x9b\x17\x69\xc6\x02\xc9\x4c\xde\x1d\xfb\x21\xd2\x09\xd7\x5e\x1a\x46\x55\x4a\x66\xb3\x88\x5b\xa6\x0e\x8b\xe5\xc0\x93\x47\x9a\x1e\x77\xdf\x0c\x45\x02\x94\xcf\x75\x85\x09\x9d\x9e\x01\xcc\xcf\xb7\x47\x71\xd4\x1f\x14\x0c\x43\x16\x95\xfa\x9a\x7c\x7d\x03\x85\x65\xd5\xe4\xb2\x3c\xb8\x83\x3c\x56\x1a\xec\x27\x9b\xfc\xf5\x33\xb3\x2a\x8e\xfc\xae\x91\xef\x5b\x70\x6f\x29\x2d\x4e\x93\x0c\xe8\xa4\xdf\xd6\x72\x42\xe9\x4c\xc5\x42\x40\x3c\x43\x29\x3a\x12\x89\xbb\x6a\x5e\x74\xa6\xd6\x91\x09\xfc\x94\x29\xca\x33\x63\x63\x36\xe2\x46\x24\x43\xce\xc5\x0d\x6f\xe5\x4a\xfd\x5d\x85\x21\x3b\xa2\x45\x73\x6e\x60\xfd\x63\x01\xb5\xa6\x26\xa7\x73\x73\xed\x62\x90\x45\xcb\x9c\x44\x4b\x01\x49\x7f\x40\x4a\x4b\xe5\x72\x12\x0e\xec\x90\x7a\x3e\x7b\xf6\x71\xaf\xea\xc2\x58\x19\xbf\xd7\x07\x20\xdd\xa8\xb7\xa3\xfa\x96\x38\xa9\x78\xac\x87\xb1\xcb\xfd\xc0\x5b\x43\x82\xbb\x8d\x94\xea\x9c\xd6\x93\xfa\xcd\x40\x1d\xa6\x17\x14\x9a\x6f\x1a\x29\x44\x82\xbd\x83\xa8\xd7\xb3\x09\xa2\x0c\x0a\x7f\xb8\xe3\xf2\xf5\x44\x21\x2f\xac\x18\x80\x71\x1d\x89\x47\x2a\x45\xa5\x7f\x02\xc5\x20\x4a\x56\xa0\x0e\x22\xcf\x90\x7e\xd2\x81\x8c\xab\xa4\x59\x06\x01\x3e\x1c\xa7\x59\xd4\x8f\x12\x43\x14\xdf\xc5\x9a\x2a\xab\x68\x88\xd2\x87\xc4\x99\x02\x5a\x12\xe7\x97\xc8\xfe\xf9\x1f\x1c\x30\x7f\x98\xae\x61\xf4\x0c\xb2\x1e\xc4\x66\x10\x9b\xee\x06\x35\x33\xcd\x26\x0a\x9c\x18\x24\x21\x4f\xe3\xef\x11\xe8\xef\xe4\x25\x93\x5e\x2b\x65\xae\x86\x4e\x28\xb6\x21\x5f\x2b\x06\xdf\x4a\x14\xae\x74\x4d\xc8\xe6\xd4\x52\x9d\xd1\x67\x94\xb2\xcd\xe3\x66\xfa\x66\x68\x77\xa8\x92\x11\xa8\x3a\xa4\x3c\xf0\x5d\xe1\xd1\x0e\x52\x1e\xb6\xbc\x1b\xab\x58\x73\x84\x82\x15\x8e\x9c\x9d\x34\xed\xc2\x76\xb8\x1d\x3c\xa9\xe6\xc8\x31\xa9\x0d\xbf\xe2\x34\x62\x31\x94\x15\xfb\x82\xcd\x7b\x7b\xdf\x4b\x7c\x32\xd1\xca\x07\xf0\xf7\xb6\x62\x8c\xdf\x56\x0c\xa4\x81\xcd\x9e\xa3\x2f\xc7\x74\x3c\x94\x01\x48\x00\xff\x92\xde\x45\x4c\x80\x69\xb6\x72\x7d\xac\x02\x2d\x8b\x30\xb3\x3a\x20\xe5\x6e\xc0\x9f\x5d\xc5\xd7\x45\x65\xc6\xd2\x31\x68\x8f\xbf\x45\xb8\x14\x5d\xa2\xa3\xe4\x63\x84\x0e\xfe\xe1\x3e\x85\x13\xf7\xdb\x6e\x98\xf3\xd5\xfb\x54\x72\x61\x89\xce\x4e\x7c\xb2\xfb\x00\x68\x1b\x14\x2c\x87\xb0\xb9\xc4\xd6\xdd\x4b\x41\x7c\x97\x9c\x58\x30\x7f\xbc\x19\xfc\xac\xc7\x9a\x0c\xd2\x22\x5d\xae\xa2\xfb\x40\x94\xff\x58\xcf\xba\xa6\x6d\xed\x49\x53\xab\x69\xde\x67\x39\x0f\xc1\x69\xd2\xa7\x17\x00\xe7\x34\x42\xf0\xd5\x76\x68\xe2\x58\x12\x05\xe5\xd3\xb2\x47\x5e\x8c\xff\xde\x67\x34\xe5\xba\x51\x6a\x93\x7e\x94\x58\xd7\xbf\xc4\x1e\x62\x41\x71\x7e\xe1\x6c\x06\x05\x1c\x19\xaf\xcf\xf8\x43\xec\x2d\x35\xe3\xbc\xa6\xec\x18\x2e\xba\x66\xf0\x5a\x46\xa3\x57\xde\x49\x32\xb0\x55\xc3\x5b\xc5\x70\x5b\xce\xca\xa8\x88\xc5\x4b\x1f\xc0\xbc\x37\xe9\x67\xf9\x5a\x31\x7d\xa2\x92\x47\x25\x38\x03\xce\xd5\xf5\xf1\xfc\x38\xed\xa7\x04\x28\x15\xaf\x81\x06\xd8\x40\x3a\x8a\x12\x1a\x33\x29\x90\xfb\xa7\x0a\x91\xfa\xe9\x66\x88\xe4\xd2\xee\xf6\xfc\xfc\xd2\x4c\x0d\x8d\xac\xb8\x0d\x67\x94\xe7\xcc\x9f\xaa\x83\x20\x4c\x13\x9a\xa2\xd2\x87\x06\xfd\x14\xa9\x2c\x5f\xbb\x0a\x18\x12\x0d\x36\x29\x24\x1f\xc0\x41\xc1\x50\x75\x7e\xe1\x52\xff\x2c\x5a\x8d\x6c\x66\xf8\x84\x46\xcf\x81\x97\x36\xbf\x70\x69\x15\x49\x28\x70\xa5\x2a\x72\x87\x5a\xfb\x30\xd8\x24\xa8\xf5\x42\x75\x96\x2b\x30\xc5\x87\x80\x39\xe2\x98\xfe\xfd\xda\x58\x91\x8a\x05\x74\x3f\x78\xf5\x39\xa6\xee\x92\x14\xae\xef\xe3\x11\xa1\x11\xb2\x81\xf9\x8a\x73\x1c\x7a\xc5\x1d\xd1\x2c\xfd\x8c\x2c\xeb\x7d\xa0\x54\x9c\xff\x4d\xb5\xf9\xc1\xa7\xdf\x3a\xd1\x2e\xf6\x87\xc6\xaa\x57\x7b\x33\x50\x9c\xce\x5b\x54\xa2\x49\x97\xa1\x8a\x24\x08\x55\xdb\x27\xad\xe7\x9f\x77\x66\x77\x55\x45\x28\xa3\x6d\x7a\xb0\xa2\xe2\xab\x0a\xbf\x37\x28\x68\x61\xad\xff\x96\x86\x95\x3e\x20\x20\x2a\x5a\x28\x1f\x51\x20\x41\xfc\xbc\x46\xa5\x29\x02\xd7\x75\x0a\x4f\x38\x7f\xde\x46\xdc\xc2\xa4\xf2\xbd\x31\x06\x1f\x4e\xf7\xe9\xcb\xaf\x88\xa8\x78\xe0\x61\x09\x7f\x40\x11\x46\xb2\xfa\xa7\x54\xfe\xd4\xb7\x99\xed\x51\xc4\x70\x19\x8e\xca\x6a\x1a\x92\xf0\xd5\x28\x73\xd8\x27\xa7\x6c\xea\x78\xc5\x27\x5c\xb5\x36\xb0\x66\xd5\x26\xb9\xf2\xfc\x64\x2c\x10\xbf\x98\x62\x40\xcc\xcd\x91\x2c\x73\x54\x14\xe2\x8c\x8e\x1d\x78\x14\x13\x23\xe7\xeb\x34\x3f\xcf\x8d\xe1\x8b\xea\x10\x4d\xaa\x77\x6b\x29\x1d\x2e\x9e\x08\xf0\x0b\x55\xa6\xee\xfb\xc7\xbf\x4a\x9f\x09\xad\x80\x96\x16\x7b\xa8\xf1\x5e\xd2\x32\x43\x2e\xa1\xd1\xef\xc8\x92\x3e\xa6\x55\x89\x85\x08\x0d\x1d\xbe\xa6\x58\x81\x6e\xca\xad\xa9\xef\x57\x95\x4b\xeb\xb6\x48\xa2\x95\x74\x79\x99\xf7\x9b\x02\x49\x79\xa7\x3f\x8f\x6a\xb5\xab\x36\x79\xae\xe5\x04\xf2\x37\xb0\x67\xb0\x4a\xdf\xa7\x95\xc2\x50\x66\x2c\x73\xc7\x9c\xf4\x04\x50\x76\x0d\x40\xfc\xba\x86\x03\x88\xb9\xee\xd8\x4e\x8e\xf4\xb9\x57\x9c\x00\x8e\xd0\x21\x87\x96\x61\x0b\xad\x48\x27\x1f\xbe\x24\xa2\x2f\xb3\x1d\x8f\x16\x38\x1a\x68\xf9\xf0\x33\x40\x8e\x88\xac\x80\xc2\x81\x7e\x42\xdb\xc7\x25\x9a\xd5\x57\xc6\x36\xf9\x91\xc2\x69\x5c\x26\x85\x75\x1c\x6d\xdf\x9a\x4a\x20\xf6\x2e\xb4\x45\xb2\xd3\xc1\xad\x6f\x61\xc7\xf1\x8b\x46\x6d\x0d\x52\x7d\x13\xff\x21\x54\xe1\x1f\xe1\x5e\xf0\x8b\xcd\x5a\x80\x7f\xbf\xbd\x67\xdf\x2e\xda\x65\xec\x1b\x45\xf7\x47\xac\xa6\x14\xaf\x0b\x5e\x69\xce\xe8\xa4\xba\xf1\x00\x86\x40\x9b\x9a\x25\xe4\x03\x95\x9b\xfc\x47\x95\x5c\x30\xa0\x51\xd8\xa2\xda\x5c\x3d\xa5\xf6\xb9\x23\x69\x00\xea\xc5\xd7\x9a\xd7\x5c\x66\xc9\x63\x0a\x5e\x7b\x97\xde\x16\x1f\x1a\x00\x4e\xc4\x98\x87\x08\x70\xce\xc3\x4b\x80\x4c\xff\xfb\x23\x78\xc2\x1c\xa1\x03\xa5\xe3\x8f\x62\x13\x4f\x08\x28\x69\x1a\x8e\xe4\xcf\x60\xd2\xc2\x7f\x0a\x31\xd5\x81\x96\x97\x9c\x78\xf1\x58\xce\xa3\xbc\xc8\x6c\xd2\x2f\x06\x8e\xc7\x20\x72\x87\xf4\x67\xf0\xd5\x3f\xd2\x62\xd9\xdf\xf4\xa0\xf3\x28\x89\x9c\x9e\x07\xf6\xe1\x1b\xca\xda\xe5\x0d\xef\x31\x11\x97\x6e\x4f\x39\x2c\xac\xef\xfe\x9d\x56\x80\xcc\x9e\x5d\xb6\x49\x8f\x68\x5c\x73\x73\x0e\x2b\xeb\x65\x25\x3f\x0e\xea\xaa\x45\xd0\xbc\x64\xd3\x02\x2c\x35\x71\x30\xa0\xfb\xae\x87\x91\x7c\xed\x3e\xd6\x9a\x8d\xaa\xa7\xf8\xd5\x3d\x4e\x97\x55\x4d\xc5\x2f\x04\x1e\x29\x98\x54\xd5\x7b\xd2\x52\x46\x44\xe8\xab\xf3\x75\x53\xf9\xbe\x9a\x46\xa1\xcd\x67\xd4\x3c\xeb\x92\xc6\x1c\xbd\xc6\xf8\x5f\x48\x9a\xdc\x72\xad\x7f\xd3\x5b\x65\xb3\x5d\x25\x4a\xf1\xa9\x9e\x80\x7c\xea\x66\x99\x61\x94\x85\xe5\x90\xdc\x78\x66\x3c\x78\xeb\x6a\xe0\xd9\xf1\x47\xc6\x1e\x90\x32\x0d\x92\xaf\xb6\x5e\x62\x4d\x86\x7d\x27\x85\xae\x57\xf8\xd5\xca\xca\x3c\xe9\x6a\xd5\xc5\x08\x17\x16\x9c\xc5\xea\x34\x7d\x6f\xa9\x9d\xd9\x38\x32\x42\x6f\x76\x03\x0f\x37\x32\xbd\xa4\x90\x2d\xf6\xf5\x30\x36\xd1\x10\xe7\x91\xfc\x4d\xed\xe1\xea\x12\x55\x67\xce\xc5\x29\x9d\xc8\xb5\x79\x40\xfe\x89\xa9\x9a\xaf\xfa\xa6\x06\x5a\xf1\x35\xb5\x3a\x16\x22\x12\x9a\xb6\x64\x52\xaf\x99\x30\xed\xe6\xa4\xb6\x21\x44\x3c\xa5\x98\xcf\x62\xc7\x68\x39\xa2\x0d\x2b\x9c\xa1\x67\xf5\x94\xd6\x66\x91\x4d\x42\xbb\xa3\x0a\xd7\x80\x2a\x41\x3b\xcc\xe1\x83\x5c\x3b\xff\x03\x35\x05\xfa\x29\x22\x01\x4e\x94\x1d\x13\x35\xbb\x43\x83\x10\x51\xea\x94\x1b\x2b\x96\x49\xc8\x5d\x22\x84\x29\xa8\x31\xf2\x75\x93\x40\xf4\xa0\x7a\x92\x99\xe1\xbb\x27\xc6\xc6\x6a\xfa\xf7\xb0\xa1\x65\xb9\xd8\x4e\xcb\x42\xdd\x3e\x84\x5a\x74\x47\xf9\x7a\xaa\xb9\xfb\x42\x3b\x49\x37\x3b\x79\x1f\x51\x80\x94\x23\x53\xd8\x30\x2f\xb4\xd1\x37\x99\xaf\xcf\x91\x49\x31\x04\x84\x5f\x34\xda\xc0\xda\x5e\x64\x8a\x8c\xfd\xd7\x84\x88\xe7\x3b\xbb\xc7\x14\xc4\x3a\xcc\x4c\x62\x5b\x8a\xa5\x06\xa3\x79\xbe\x76\x11\xae\x67\xc3\xd8\x64\x50\xbb\x74\x22\xf7\x6e\xf6\x75\x1c\x67\xb4\x94\xd6\x0d\xa6\x7f\x3d\x33\x84\xe9\x1f\x9e\xe7\x59\x65\xa7\x73\x76\x4a\x3a\x65\x7e\xbe\x1d\xf6\x44\xed\x19\xa1\xe5\x0c\xa2\x04\xea\x23\x00\x92\x35\x84\x46\x60\x56\xf4\x3d\x04\x7d\xb7\x39\x18\xcd\xcd\x71\x55\x3f\xe3\x3b\x76\xd7\x94\x6b\xd3\x56\xd5\x12\x3a\xdf\x24\x2a\x97\x17\x76\x34\x92\x09\x80\x28\xe3\xd0\x93\x91\x92\xc8\xbb\x25\x99\x1e\xda\x9d\x19\xfb\xa8\x7a\xca\xf9\x7d\x0c\x50\x9c\xec\x93\x53\x0e\xb9\xb4\xb9\x02\xdb\xbf\xbb\xbd\xb8\xb4\xf8\x04\x2d\x34\x51\xa1\xa0\x58\x8e\xdb\x00\x26\x0a\xda\xeb\x3f\xd5\x8c\x86\x9b\x34\x3c\x41\x07\xe7\x08\xde\x0d\x81\xec\x5f\x8c\xf5\x8c\xd7\x33\xb4\x8e\x51\x2a\xe5\x78\xc5\xce\x77\x99\x8b\x04\x1c\xd3\xb7\x75\xeb\xef\x5f\x60\xa8\x8c\xde\xe1\x4d\x45\x18\xfb\xfd\xb1\x9a\x82\x0f\xa3\x22\x57\xc9\xc1\x05\xe4\x85\xa2\xac\xf8\xa4\x66\x95\x24\x26\x6e\x29\xa9\xc5\xeb\xf4\x29\xf8\x5a\xe5\x11\x24\x6a\x5d\x57\xf2\x75\xe3\x1b\x5f\x01\x56\x37\xbf\x80\x7d\xa4\xf4\xa7\xe8\x9d\x85\xc9\x40\x77\x54\xd0\x35\x3e\xe5\x4e\x5f\x5f\xdf\xde\x72\xfe\x89\x4f\x77\x94\x86\x37\x23\x32\xc5\xf2\xdc\xd7\xea\x57\x75\x5b\x92\x66\xc0\x4b\x1b\x97\xa7\xea\x91\x5f\x69\x2f\x47\x3d\x1b\x47\xc5\xba\x9a\xd8\x70\xa5\xcb\x2f\x6a\xd2\xc3\x51\x18\x25\x7d\x8e\x4c\x32\x25\x6c\x39\xb3\xa3\xf3\x7e\x5b\x9a\x68\x18\x33\xea\x5c\x50\xeb\xf4\x47\xf9\x05\xb6\xa2\x1c\x5c\xcb\x59\x9a\x14\x04\x36\x9d\xa5\x3b\x20\xbc\x62\x5f\x55\x5d\xf8\x6c\x65\x93\x26\x85\xc7\x30\x4e\xf3\x4d\xfb\x41\x09\x45\x9f\x71\xcd\x91\xa2\xcc\x4c\xd2\x4b\x31\xea\x40\x12\x7a\x52\x43\x1f\x4f\x6a\xb6\x72\x5a\x46\x71\x6c\xa2\xcc\x22\x67\x60\x59\x39\xd5\xaf\xfb\x21\x15\x8f\xd2\x0a\x54\x56\x92\x49\x9e\x66\x2d\x05\x96\x84\xcf\x38\x5f\x4f\x35\xf0\x5f\x68\x67\xb6\x88\x32\x21\x90\x62\xa1\x20\x30\x21\x17\xbd\x53\xef\xb8\xfa\x98\x39\x48\xb3\x1e\x46\x9b\xd8\x0c\xff\x2d\xdd\x41\xbe\x56\x7d\x9e\x30\x4d\x8a\xcc\x84\x05\x0f\x6f\xe4\x74\xd5\xbc\xe1\x96\xb3\x57\x3e\x1f\xd4\xcd\xe4\x96\x64\x89\xdf\x50\x60\x04\x18\x73\x01\x97\x71\x43\xad\x18\x92\xbc\x33\x11\x3a\xf5\xc8\x4e\x7f\x5d\x17\x6b\xbf\x1e\x3c\xa7\x6d\xee\x8b\x2c\x5d\xb5\x59\xbe\xbe\xdd\x03\xe1\xc0\xe7\x16\x71\x18\xcf\xac\xfc\x4e\xe0\xa3\xf6\xc9\x40\x55\xb8\xc7\xe9\x4e\x89\x6a\xbd\x4f\x60\xba\x51\x56\x0c\x48\xbd\xc9\xa9\x2c\xcc\x76\x3c\x2e\x7f\x76\x22\x30\x7a\x9b\xac\x46\x59\x4a\xa6\x88\x26\x8e\xf2\x42\x99\x86\x1d\x55\xa6\x61\x47\x7d\xf2\x1c\x25\x7d\x3d\x07\x7a\x5b\xcd\x81\xde\x9e\x8a\xd7\x24\x26\x5a\xe5\x1e\x69\xa6\x6c\x48\x31\x78\xe7\xeb\x9a\x5d\x79\x16\x0e\x4c\x52\xcc\x2a\xdb\x6d\x28\x47\xf2\xb5\x4a\x6f\x58\x12\x55\xa4\x17\x24\xe8\x44\x49\x6c\x12\x86\x3b\x22\xcd\x41\x6b\x9a\xaf\x9b\x90\xb2\xac\x31\xce\x2b\x10\x05\xf9\xa7\x8a\xb6\xcc\x2a\xca\xec\xd7\xde\x34\x7c\x63\xa9\xec\x19\x6f\xe1\xfc\x01\xce\x62\xcc\xe7\x7f\x57\xa9\xa4\xff\xb4\x81\x2e\xb3\xc8\x6d\xd5\x19\x95\x52\x30\x1a\x5b\x80\x20\x4a\x29\xe7\x2f\xa6\x4e\xea\x17\xc8\x72\x82\x9e\x49\xcd\x46\x55\xac\xbd\x9a\xac\xf6\xcb\xa4\x1f\xd7\xd3\xa7\xeb\x6a\x80\x73\x7d\xfc\x9c\x1f\xb1\xd8\x2c\x8b\x8a\x34\x8b\x20\x29\x24\x2d\xe9\x53\x8a\xc3\x7c\xaa\xc9\x40\x97\x36\x9d\x62\xf7\x83\x80\xcc\xd7\xee\x79\x25\x69\x37\xed\xad\x6f\xf7\xc8\x86\xf3\x1a\xe4\x09\x89\x3d\x07\xc2\x72\x3a\x25\x97\xc7\x7e\xaa\xfb\x2c\xb1\x0c\xa4\xca\x9a\x8e\x2f\xe6\xd7\xbe\xb4\xf2\x6b\x5f\x32\x50\x13\x12\x02\x98\xef\x86\x7c\x44\xdb\x4c\x44\x38\x37\xe7\x71\xfb\x5e\x6a\xe7\xd5\xea\x2d\x73\xf6\xe6\x60\xe1\x58\xc5\x0b\xbc\xe4\x82\xdf\xda\x7a\x3a\x74\x69\x22\x8a\xce\x3b\x63\xd5\x15\xba\x33\xd5\xe5\x99\x9f\x6f\x9b\x62\x98\xe6\xa3\x81\xcd\x38\x3d\x11\x17\x72\x5f\x40\xdc\xa2\xdd\x22\xa0\xa9\xcd\xe2\x4d\x4b\xbb\xc9\xd0\x21\x8e\x6d\x58\x94\x46\x3a\xae\x58\x44\xc7\xb4\x2b\xe1\xb1\x26\x91\x9d\x2a\xa3\x8c\x12\xac\xfd\x57\xeb\xde\xc8\x42\xff\xd6\x63\x15\x2c\x3d\xec\x55\x93\x7f\xbd\xb4\xe0\x79\x13\x60\x02\x09\x29\xfc\xe9\xf9\xba\x8a\xc2\x32\x6c\x40\x23\x30\x5e\xdf\x55\x03\xc2\x56\xcf\x9d\x0d\x61\x95\x2c\xd1\x51\x65\xc5\x73\x87\xfa\x9a\x32\x57\x53\xc2\xa8\x5b\x50\x8d\x38\xf9\xd4\xf9\x79\xc6\x70\x1f\x0e\xbc\xaf\xf5\x21\x05\x48\xcc\x47\xd6\xf6\xd2\xa1\x2d\xaa\xa3\x7a\xcf\x3e\x4e\xc3\xef\xe0\x80\xe5\x17\x81\x87\x61\x24\xe9\xd3\x75\xd2\xa1\x83\xfc\xb2\xab\x9a\xe4\x3e\x74\xeb\xd0\x19\xbb\x89\x1b\x8e\xd3\xf2\x5d\xa5\xed\xb1\x8d\x3a\x60\xa8\xaf\x9e\x9d\x28\xc0\x9f\xa8\x04\x08\x96\x9c\x12\x3a\x96\x4a\x56\x33\xb5\xcb\x24\x7a\x0d\x38\x38\x4f\xa2\x50\xab\x9f\x40\x1d\x82\x73\x78\x2b\x21\xe1\xf0\xe0\x8e\x07\x8a\xf7\xcb\x7a\xb0\x68\x46\xcf\x4e\xdc\x82\x1d\xa4\x76\x95\x75\xf3\x44\x31\x47\x2d\x72\xea\x34\xe3\xe1\x3c\xdd\xd1\x56\x6e\x9e\x0a\x78\xb7\xa1\x8c\xaf\x6e\x74\xd2\xa3\x43\x10\xbb\x98\x8d\x5a\xf8\x85\xe2\x27\xe7\x85\x35\x71\x0b\x2d\x69\x6c\xf2\x5b\x63\xc5\x5e\xbf\xa5\x80\x61\xdd\xcc\x44\x09\x0d\xee\xd1\xdf\xff\x1f\xc6\x7e\xa8\xf7\xb6\xc6\xaa\xb0\x04\x84\x6b\x0a\x2c\xed\x96\x9f\x1a\xab\xc5\x6b\xab\x73\x86\x05\xf7\xe9\x61\x22\x6f\x9e\xa1\x69\x1c\x5f\x77\xe4\x36\x25\x76\x8d\x1a\x82\x9e\x7a\x7c\x47\x7b\x64\xdd\xf1\xe2\x1f\x83\xcc\xe4\x7f\x2d\xfc\xd6\x39\xa0\x65\x66\x34\x72\x62\xa9\x2c\xc0\x8a\xdc\x43\xd4\x58\x1b\xea\xb7\x6e\x19\x43\xb7\xc0\x61\xf0\x3c\x1e\x4f\xd1\xc3\x8b\xac\xcc\x8b\x5d\xf4\x19\x58\x59\x46\xf3\x21\x4e\x07\xca\xc1\x80\x55\xd2\xc5\x70\xbb\x7a\x66\x92\x71\xa8\x19\xc7\x61\x9c\x66\x92\x7f\x78\x10\xd2\xd6\x49\x4b\xc9\xd7\x68\x6c\x41\x6e\x93\xed\x5a\x6a\x1a\x01\x4d\x9c\x18\xe8\x13\x38\xbe\x75\xf5\xad\x79\xeb\x8e\x6b\x98\xf9\xea\xe3\xe0\x57\xee\x34\x5a\x83\x49\x6a\x97\x66\xe0\x8c\x49\x36\xea\x8b\xd1\xcb\xd8\x1e\x68\x36\x7f\xd0\x2c\xa5\x9c\x96\x05\x01\x48\xdc\xe9\x02\xc2\xa1\x40\xe0\x94\xb2\x4b\xd7\x74\x63\x0e\xd3\xa2\xef\xe9\xd3\xaf\xfb\x81\xce\xff\xbd\x85\x48\x12\x0e\xa2\xa4\x0f\x13\x30\xe5\xaf\x20\x62\xc0\x3f\xa5\x5f\x43\xd4\x67\x67\x2f\x81\x5a\x34\xd9\x93\x93\xb1\x4e\xcb\x61\xdc\x5f\xfa\x21\x7e\x45\x72\x72\x59\xb2\x71\x19\xae\x44\x82\x2c\x45\x8f\xf5\x08\x9e\x3b\xbf\x98\x02\x5a\x2d\x2c\xb4\x2d\x69\x34\x45\x39\xb3\x69\x5e\xf5\x06\x8d\xbe\xf9\x7d\xa9\x36\x64\x4c\x57\x9c\xdf\x98\x0c\x6a\xe8\xe3\xc8\x08\x67\x5a\x30\x70\xb1\xdd\x2d\x87\x23\x40\xec\x50\x13\xbc\x35\xf6\x63\xc7\xb7\x02\x2f\xe1\xfc\x5a\x19\xb3\x76\x01\x72\xbc\xeb\x63\x25\x02\x7f\x8c\x86\x68\x62\xdf\xaa\xac\x5c\x95\x4c\xf2\xb5\x5a\x77\xc7\x7f\xec\xcc\x0e\xd3\x55\x9e\x49\xb1\x9a\x44\xa0\x0c\x5a\xce\x2b\xd1\x2a\xb2\xbd\x81\x7c\x3c\x7a\x2c\x6f\xaa\x7e\x3c\xc0\x2b\x28\xcb\xef\x4f\x7d\xd5\xbf\xdf\x1e\xd9\xc4\x49\x3f\x88\x56\x89\x16\x2e\xf1\x8c\x3f\x9b\x45\x55\x06\x50\x9d\xde\xd8\x33\x88\x01\x5b\x30\x6e\xe2\x17\x93\x67\x5c\x06\x9e\x66\x36\xb7\x26\x0b\x07\x6a\xca\xff\x81\x92\xae\xfe\xa0\xd9\x30\x3b\x0f\x07\xb6\x57\xc6\x3c\xf9\x12\xa5\xf0\xea\xd7\xa4\xbc\x7b\x56\x3d\xdb\xe1\xc8\x16\x55\xde\x47\x9f\x1f\x79\x13\xc6\x7d\x7c\xdd\x68\xe5\x52\x64\x11\x33\x38\x58\x4e\x1d\x77\x56\xb4\xd5\x9b\x40\x81\xcb\x51\x62\x92\xd0\xf2\x37\x47\xd1\x7a\x4b\x23\xd4\xa7\x87\x63\x73\x7b\xda\x43\x53\x6d\x2b\x22\x17\x68\xee\xf8\x69\x2d\x7f\x76\x5a\xd5\x5b\xcb\x69\x36\x2c\x63\x53\x48\xa1\x2c\x82\xd9\x5a\x3d\xbb\x01\x9c\xb3\x54\x9d\x91\xe9\x48\x66\x48\xc8\x38\x4f\x29\x8f\x90\x53\xce\x49\xac\x4c\x96\xd3\xb8\xb7\x29\xff\x3b\xa5\x06\x10\xd3\x5a\x3d\x7b\xf6\xb5\xd7\xa2\xa4\x97\x0f\x22\x1b\x63\xac\x2a\xa2\x4e\x7e\x65\xe9\x63\xab\x6e\x84\xba\xa4\xac\x02\xaa\xbb\x25\x86\x02\x9b\x57\x22\xfc\xe5\xd2\x11\x1f\x36\xd8\x4d\x3f\x0a\xd4\xd6\xfa\x51\x93\x75\x82\x4d\xd2\xb2\x3f\xd8\xe6\x5b\x84\x3b\x26\xde\x30\x8a\x8d\x95\x91\x96\x9d\x57\x4a\x58\xb7\xa9\x45\x20\x1a\x76\x4a\x0e\x3e\x8a\x63\x9b\xb5\xd4\x16\xbe\xa6\xb8\x00\xd7\xa6\x56\xc6\x0b\xed\x28\x09\x33\x6b\xf2\xba\xb4\xd4\x99\x1a\x88\x41\xc9\x66\x9f\x56\xc0\x96\x32\xe9\x59\xd3\xc3\x91\x80\xba\x1a\xc3\x2d\x1c\xc2\xff\x06\x77\x0b\x05\xc3\xd6\x29\xf2\x13\x65\xfc\x49\x8e\x29\x81\x83\x29\xcd\xcf\x3b\x98\x92\x4f\x5f\x06\x51\x1c\xe7\x50\xf7\x17\x67\x46\xac\x45\xf1\x0e\x54\xc0\x73\xb4\xc8\x30\x66\x65\x5d\x17\x81\xb6\x09\x07\xc6\x44\x3d\x91\x7f\x10\x4b\x54\x35\x09\x04\xe0\x9e\xaf\xb5\x4f\xde\xd9\xa9\x07\x3e\x37\xd7\xce\xd2\x6e\x5a\xe4\xb3\xbe\x8f\xf6\xd1\xd8\xcb\x54\xfd\xc6\x58\x8d\x32\xc0\x06\x97\xde\xe7\xe6\xa4\xe3\x85\xf6\x28\xb2\x21\x0e\x47\xa1\xa7\x7a\x74\xf7\xd9\x40\x00\x70\x79\xca\x12\xd3\xf8\x87\xab\xca\x63\x66\xb6\x0a\x93\x1b\x37\xd5\xf3\xc9\xec\xc8\x44\xbd\x96\x47\x18\x42\x3e\x47\x88\x25\xd3\x3a\xad\x2f\xb6\x6d\x99\xa5\x23\x6b\x9c\xd8\x21\x1e\xfa\x65\x6c\x5f\x24\xbc\xbf\x3d\xae\x0d\xe0\x9f\x56\xd2\xde\x85\x89\x62\x9b\xd1\x54\x4a\x4b\xb4\xb3\x68\xd8\x58\xb9\x4d\x7e\xd8\xc4\x06\x5c\x36\xd9\xd0\x66\xf2\xd6\x38\x40\x7f\xa2\x8d\xc7\x58\x45\x1b\x77\xfa\xce\xd4\x9f\x98\x9b\xa3\x70\x1a\xdb\xd7\x95\x60\x8e\xd6\x3c\x9e\x56\xd6\x25\x36\x57\x99\x89\xfa\xa9\x68\x46\xf9\x12\xbf\x59\x1f\xdd\x74\xa3\xc4\x16\xb9\x22\x64\xbf\xad\x9d\x7a\xde\x76\xcf\xab\x5f\x26\x9f\x7d\x0a\xf8\x96\xb0\xe9\xdb\x24\x5c\x7f\x12\x5f\x1c\x29\xda\x0c\x06\xba\x2c\x05\x83\x9c\x42\xce\x7e\x3f\xf6\x7b\x94\x64\xab\x78\x10\xa5\x3c\x1a\x6e\xea\xd1\xed\xa7\xaa\xe1\x7d\x96\xba\xe5\x92\x26\x23\x87\x17\xe4\xac\x9a\x9c\x32\x59\x8a\xff\x05\x5d\x75\x44\x86\xb7\xf0\x45\xb1\xad\x4f\x05\x4a\x56\x7e\xfb\x14\xa8\xb6\x5a\x51\x79\xba\x5c\x48\x82\x84\x2f\x73\x47\xc9\x0a\x4f\x0f\x51\x5f\x68\x77\x63\xd3\xeb\x59\x9e\x4f\x72\x91\xa5\xac\x81\x8e\x7b\x44\xb9\xc9\xd6\xa2\x84\xcf\x25\xf1\x5f\xd4\x66\x8c\x4d\xda\x17\x26\xac\xd6\x88\x49\x22\xdb\xa3\x7c\xa3\x26\x17\x8d\x89\x02\xcc\x39\xd1\xf1\x3e\xae\x12\x9a\x81\x49\x7a\xb1\x23\xc5\x39\xd3\x22\x97\xa5\x1f\x6b\x86\x4d\x27\xbd\x74\xa8\x54\x33\xce\x28\x4e\xe8\xb4\x55\xc3\xbe\x97\xda\xcb\xa6\x9b\xd1\xa8\x53\xe9\x0a\xa0\xa9\xc3\xd7\x8d\x83\x67\x26\xb7\x56\xcf\xc6\xe1\xaf\x3c\x2d\xea\xe2\x54\x73\x6a\xff\xee\x85\xf6\x28\xb6\x49\x01\x05\x6e\x26\x3b\x04\x7e\x40\x74\x6d\xea\x18\x5d\x58\x68\x8f\x4a\x4a\x5c\xdd\xe9\xdb\x24\xe1\xef\xbb\xdb\x99\x1d\x59\x43\xe8\x42\xcc\xdc\xd0\x5d\x3c\xae\x3a\x8d\xc7\x15\xe7\x71\xcd\xc4\x2b\x6b\x66\x5d\x0b\xcb\x1d\x56\xed\xe3\xc3\x53\x89\xd0\x81\x03\xed\x7c\x68\x62\xe8\xac\xe3\xec\x04\x9e\x1a\xa8\x27\x86\x28\x8b\x2c\xb5\xb6\xb7\xe8\xa6\x59\x8f\x24\x66\xf9\x8e\x09\x90\xc0\x0f\x89\x2e\x29\xdc\xc7\x68\x10\xc5\xd1\x68\x96\x36\x81\x34\xfb\x75\x78\xdc\xda\x21\x70\x4d\x8d\xcc\xca\xff\x32\xf1\xe1\xb1\x18\x90\x98\x31\x37\xf7\x80\x36\x00\x9e\x80\xaf\x1b\x59\xe5\x51\x5e\xa4\x89\xd6\x3d\x3d\x37\xd6\xad\xbe\xcd\xb7\xa4\xca\x41\x7a\x65\x97\x53\x10\x9c\x62\x1f\xe1\xfc\xe6\x17\x2a\x60\x0f\x4c\x56\x24\xb6\x60\xf4\xa2\x53\x82\x73\x16\x7f\x47\xd5\xcf\x46\x49\x18\xf5\x84\xbf\xc1\xc6\xb7\x14\x4a\xc4\x04\xf7\x09\x5f\xbe\x15\x36\x2f\xb4\xcd\xeb\x49\xda\x23\x88\x7a\x97\xc7\x5e\x61\xff\x82\xe2\x69\xbd\x1f\xf8\x58\xba\x0b\xbe\xa1\xd2\x1d\x79\x4e\xa1\x44\x86\xf0\x55\x8c\xc2\x16\x05\x44\x69\xa6\xd0\x9b\x89\xc8\xf1\x33\xea\x00\x0c\xd3\xac\x57\x1d\x29\x5e\x6d\xe9\x2f\xf0\xc3\xf8\xe3\xa7\x68\xb9\xb0\xd6\xc5\x54\xa4\xdf\xf7\x52\x3b\xb1\x51\x7f\xd0\x4d\x71\xa6\xe1\xe0\xbc\x46\x9f\x1a\xcb\xf7\xaa\x1a\xe1\xcf\x74\x36\xd3\x14\x09\x5b\x66\xf2\x22\x3b\x68\x87\xf9\x4a\x84\xdb\xec\xa6\xfa\x7b\xbd\xd1\x56\xc3\x54\x5b\x4c\xee\x7b\x94\x5b\x60\xf2\xc8\x2a\xe2\xd8\xd1\x37\xe9\xad\x9d\x18\x4a\x15\x5e\x85\x92\xee\x6f\x80\xfa\x2b\xce\x16\x6a\x6b\x47\x1b\x6a\x04\xde\x08\x79\xe7\xc4\xcf\x21\x0e\x05\xb5\xc1\x4e\x08\xdc\x7c\x75\x8c\x48\x7f\xd4\x7f\xfe\xe9\xb0\x57\x6d\x4c\x9b\x9b\x21\xf2\x19\x49\x1c\xd5\xbe\x38\xed\x7c\x3e\x46\x59\xda\xcf\x48\x44\xbb\xa5\xc6\xa5\x6c\xdf\xc4\x2f\xd4\x56\xec\xdb\x34\xeb\xdb\x6d\xfe\x34\xe0\xa1\x81\x08\x63\x56\x8f\x86\x65\x18\x03\xc5\x41\xfe\x43\x74\x02\x58\xed\xab\xd1\xe2\x91\xad\x1a\x35\x2a\xe6\x38\x7e\x8b\x5f\xe8\xa2\x6d\x60\x87\xe2\x22\xe9\x20\xc5\xe7\x54\x09\x72\xce\xcb\x66\x0c\xd2\xb4\x48\xcb\x62\xa6\xb5\xb4\x58\x53\xe5\xc4\x11\x75\x53\xe1\x8a\x3f\xaa\xb1\x7b\x6d\x3e\x40\x2f\x03\x7b\xf1\x36\x7a\x39\x68\x96\x6c\x60\x30\xce\x2f\x10\xe7\xf9\xc7\xb4\x8d\x93\x35\xb1\xcd\x72\xd8\x86\x89\x8c\x69\x75\x83\xf0\xb8\x45\xb0\x0a\xbf\xf8\x1f\xaa\x0f\xb5\xc1\x3b\xcf\xe9\x83\x2d\xed\x76\x2f\xc6\x5e\x2a\xe1\x72\x93\xb0\x46\x1a\x5a\x93\xcc\xd0\xaf\x3b\xd7\x75\xf7\x94\x80\x61\x40\xde\x36\x3b\xf9\x2c\xec\x7a\x3e\x30\x99\x1d\x10\xf1\x5d\x92\x40\x11\x37\x51\xb2\xbc\x4c\xbb\x93\x30\xbd\x39\x93\x5e\x7c\xe9\xe5\x76\x92\x7e\x91\x1e\x0c\xf7\xd9\x03\xc5\x5b\xbf\xa8\xea\x8a\xbe\x29\x79\xc4\x26\xe4\x2d\x7a\x1b\x61\x75\x39\xbc\x1b\xfc\xf8\x67\x7d\xe3\x8a\xab\x32\xad\x08\xa6\x9a\xd4\x02\xe9\xbd\x3f\xf5\xd9\xf6\xec\x6b\x17\x66\x68\x67\x7c\x8b\xfb\x01\x85\x3d\x1c\x51\x97\x95\xc3\xc1\x99\xcd\xe8\x88\x57\x96\x76\xb7\xe7\xe6\x88\xb0\x58\x03\x94\x0a\x61\xab\xca\xfd\x79\x67\x23\x0c\x70\xed\xc2\x2f\xa8\xc5\x87\xfb\x0f\xf4\x36\x22\xed\xf7\xa6\x72\xe8\x25\x42\xaf\x78\xc8\x8f\xc8\x05\xfb\x73\xf8\x7c\x13\x82\x25\x37\x50\x41\x12\x89\x2f\x05\x5a\x38\xe5\xf6\x7a\x98\x26\x85\x89\x12\xff\x74\x81\x9c\xfe\x1e\x6e\x3b\xd6\xe1\xe5\xb1\x96\x4a\x6a\x12\x64\xcf\xcb\x6e\x0e\x6d\x1c\x35\x94\xbe\xab\x86\xd2\xda\x80\x39\xb7\x76\x85\x4b\x47\x49\x5f\xfd\x19\xff\x20\x50\x34\x39\x74\xb7\xa4\x43\x51\xfd\x65\x71\x5e\xf7\xbd\xe4\x88\x00\x31\x20\x09\xb0\xc7\xe4\xd8\x97\xac\xc8\x6b\x65\x8b\x28\x0a\x6e\xbc\xfc\x18\x65\xd3\xd4\x62\x7d\xff\x17\x3a\x3a\xe5\x18\xeb\x01\x17\xee\x8a\x93\x3a\x5d\xf2\xab\xbc\x7a\x17\x84\x32\x92\x53\x7d\x95\x8f\xdd\x2b\x1a\x4f\x89\x9e\x19\x66\x07\x27\xb1\x3a\xdc\x70\xbc\x7a\x1c\x80\xc8\xe0\xf1\xcb\x09\xbe\x49\xfd\x6e\x7e\x7e\xa9\x4a\x0c\xb7\xd1\x2f\xcb\xd9\x52\x7d\x0e\x7c\x2b\x4c\xc1\x9d\x36\x8b\xb3\xc0\xbf\x42\xa7\x01\xff\x8c\x4b\xcf\x33\x33\x8a\x7a\x75\x12\xea\xf7\xc6\x2a\xd5\xf8\x9e\x72\x1c\x4b\xb3\xbe\x49\xa2\x83\x04\xd7\x20\x91\x50\x2e\xed\x09\xe7\xcf\x9a\x0b\x81\x52\xbc\x01\x8c\xc3\xd5\xff\xaf\xf8\x9f\xa2\x8f\x28\xb6\xc1\x8d\xde\x56\x43\xdb\x8b\xea\x22\x0b\x68\xf0\x0b\x63\xde\x0b\x87\x77\xd3\x32\xe9\xf1\xc1\x84\x15\xf9\x0e\x96\x0c\xbf\x98\x3a\xb8\xa9\xfd\x17\x9a\x51\x54\x98\x58\x89\x32\x3e\x50\x83\x93\x07\x63\x05\x4e\x88\x8a\xc8\xe6\xbf\xf6\x25\xd3\x85\x2d\x1f\x8e\x79\xae\x61\xf8\x85\xdb\x3d\xdd\x32\x8e\x7b\xe9\x41\xcf\xeb\x45\xb1\xc2\xcd\x0b\x7e\xd1\x54\xe0\x76\xcb\x7c\x60\xd9\x98\x54\xaa\x24\x7f\x02\x9d\x54\x70\xcf\x6e\x9a\x94\xd5\x49\x5c\x3d\x00\x3c\xe5\xc3\x84\x0e\xe7\x6b\xd7\x82\x1b\x46\x79\xbf\x8c\x7a\x68\x19\x89\xe0\x22\xf7\x8d\x31\x0f\xb8\xaa\x28\xc0\x33\x1d\x7d\xae\x75\xcd\x3a\x28\x3e\x2c\xcd\x48\xdb\x0e\x0b\xe2\xa2\x52\x79\xfc\xef\x95\x5f\xfd\x69\xd7\xba\xc9\x6c\xbc\x8e\xdd\xac\x33\x48\x3a\x56\xff\x8b\x67\x3b\x4a\x08\xea\x89\x8e\x9b\xaf\x1d\xff\xb9\x89\xe7\xcc\x9f\x6d\x0a\x78\xd5\x27\x23\xba\x54\xf5\x87\x99\xc5\x10\x28\xcf\x8f\x69\xda\xed\xdc\x5c\xbb\x6b\x13\xbb\x1c\xb1\x37\x09\x6e\xd0\x9b\x4a\xf8\x6c\x3b\xca\x77\x4c\x12\xb1\xcb\x91\x7f\xde\x56\xcd\xba\xae\x0d\xcd\xd0\x52\x50\xc7\x3b\xb5\x26\x4a\x0a\x14\xfe\xb3\x9a\x26\x8b\x00\xce\xf2\x4c\x48\xe0\x7e\x6b\xac\x24\x14\x7e\x4b\xf1\x30\x5a\x9d\xcd\x8b\x73\xef\x82\xf7\x1a\x47\x6a\xc1\xa4\x67\x94\xf7\x35\xd1\x58\xa7\x77\xec\xb5\x8f\xbd\x98\x06\xf9\x3f\x93\x80\x29\x63\xe4\xb5\xd9\xe6\x05\xe5\x8d\x73\x4f\xa5\x44\x97\xc6\x5f\x98\x2e\x27\xd3\x55\x9b\x85\x69\x1c\x9b\xc2\x66\x26\x8e\x0e\xca\xa9\x23\xd8\xcf\xaa\xc0\x10\xe8\x67\xd3\xca\x36\x59\x66\x63\x25\xbe\x0e\xc0\x0b\x5f\xfb\x8d\x1c\xad\xda\xc2\x05\x6e\x14\xd1\x9f\x2a\x79\x50\xb4\xe6\xc4\xec\x49\xb1\xd1\x0e\x5a\x98\xac\xa0\x15\x74\x1f\x61\x14\x3d\x11\xb8\xef\x39\x4f\x99\xea\x06\xa2\x23\x73\x5a\x3f\x9d\x2d\xb4\xf4\xb4\x85\x17\x9a\xfa\x57\x90\xb0\x0b\x3b\xc7\xe7\xd2\xf7\xb0\x9b\x45\xb5\xda\xd7\x47\xed\x8e\xa7\xd5\xe4\x23\x13\x25\x84\xdd\xc3\xbf\xbd\xa9\x2c\xa9\xcf\x22\xf0\xf3\x3f\x50\x85\x26\x1a\x7d\x9e\xb4\x35\x19\xfb\x5d\x3d\x51\x74\xdd\xdc\x26\xa6\x48\xb3\x7c\x56\x51\x32\x2e\xe9\x4e\xd2\x7b\x4a\xaf\xe5\x92\x3e\x62\xde\x73\xce\x20\xaf\xa5\xb9\xcc\x18\x94\xa7\xc2\xa2\xeb\x51\x29\xa7\x92\xb2\x5b\xc4\x16\x85\x1c\x52\xc6\xcb\xc8\x6b\xf9\x45\x5d\x21\xde\xae\xb5\x3c\x51\xe5\x63\xfa\x32\xc2\xfb\x69\x70\x5c\x8c\xb2\x15\xde\xcf\x5c\x00\x04\xfe\x04\xfd\x43\xbf\x92\xab\xc8\xd8\xdb\xe6\xcd\x37\x59\x17\x5f\x89\xe2\x49\x76\xff\x50\x35\x60\xde\x1b\x2b\x60\xfe\x7b\xc1\x73\x4d\x70\x8f\x19\x45\xf7\x39\x3b\xf6\x66\x48\xb0\xc2\x10\xe1\x0a\x01\x7b\xe5\x2b\x91\x70\x15\x45\x01\x5c\xe5\x2c\x67\x5c\xe0\xc5\x0c\x27\x62\x6b\x39\x0c\x2e\x80\xd1\x11\x6f\x12\x85\x6d\x7e\x10\xfc\x8c\x6f\x79\xa4\x43\x9b\xe5\xa6\x8c\x01\xcd\xf6\xaa\x52\x17\x94\xaa\xd4\x05\x97\xf2\x9a\x21\x39\xee\x61\x33\x02\xcd\x00\x2d\x36\xbe\x56\x58\x32\xea\xf1\xc4\x16\x6d\x66\x91\x4d\xae\xfe\x26\x5f\x2b\x6c\x41\xdf\x74\x19\x9e\x86\x8e\x07\x37\x68\xf8\x45\xe0\x07\xeb\xbd\xac\xec\xe7\x33\x7e\xa9\x6d\x9f\xf8\xcc\x6a\x06\xe9\x93\x72\xe5\x70\x52\xd4\x07\x0f\xae\xcb\xd8\x49\xb8\x04\xd5\xdf\x10\x88\xc2\x67\x19\x3c\x32\x45\x80\xb0\x51\xe2\xd6\x32\xed\x82\x80\x26\x41\x8b\x36\xb4\x1c\x38\x3e\xd2\x9d\x1b\xfb\x3a\xfa\x7f\x73\xb7\x71\x35\x8d\xcb\xa1\xa4\x1a\xc8\x86\xaf\x05\x8a\x04\x3d\x3d\x8e\x21\x98\x9c\xcd\xcb\xa1\x9c\xad\x48\xc2\xd8\x67\xcb\xd9\x38\xba\x52\xec\x4d\x35\xb5\x32\x49\x61\xfa\x24\x04\x06\x51\x44\xaf\x43\xda\xf2\x9a\xa4\x8a\xd3\x9f\x0f\x20\x77\xe0\x0e\x6a\xd6\x8e\x16\xa8\xf0\x14\xc6\x70\x91\x96\xd1\xda\xc0\x14\x2d\xaf\xbe\x72\x41\x69\x74\x5e\xd0\x4a\x2c\xe9\xd0\x76\xd3\x1e\xd0\x5c\x22\xfa\xe8\xc1\x43\xad\x5a\x52\x10\x96\xa4\x1f\x26\x31\xe7\x1c\x32\x3a\x84\x16\xf4\x68\xf8\x1f\x28\x1f\xe4\xff\xaf\x95\x42\x99\x5f\x8a\x6a\x68\x43\x47\xa9\xc0\x0f\x92\x8f\xab\x25\x96\x45\xf9\x0a\x4a\x16\xe1\x5f\x56\x3f\x27\xa2\x2a\x4f\xba\x59\x63\x94\xa5\xeb\x3c\xc3\x66\xe1\x25\x2c\x07\x51\x61\xf2\x7f\x91\x90\x33\x60\xf7\xe3\x2b\xa2\x39\x84\x35\xf1\x7b\x81\x16\x7a\x43\x48\x45\x6e\xf0\x10\x9d\x76\x11\xee\xf0\x4f\x63\x4b\xa7\x26\xe2\xd1\x80\xff\xf9\x7a\x19\xc1\xe9\x4f\x34\xa8\x51\x8a\xf2\xb5\xd2\x1d\xe8\x46\x2b\xac\x58\xe2\xdc\x66\x7c\xbf\x56\x1d\x78\xff\xf4\x9f\x2e\xb5\x6a\xb3\x34\x75\x94\x9d\x6b\x02\x64\x86\x99\xf5\xac\x25\x41\xf6\xfa\xd5\x79\xde\x09\x37\xac\xff\x42\x36\xeb\x25\x9d\x3e\x24\xef\x30\x77\xa4\xb8\xc6\xdf\x75\xad\xd9\xbe\xa5\x23\x4f\xe1\xa0\x89\xcb\x6e\x54\x83\x63\x70\xe8\xe0\x17\x8d\x70\xed\x6e\xba\xe6\x5d\xac\x05\x4e\xa4\xa0\x45\x81\x1e\x94\xf5\xca\xd0\xd2\x08\x56\x70\xbb\x2d\xa7\x13\xf5\x16\x88\xc7\x28\x29\x3e\xa9\x16\xe0\xc6\x61\x40\x83\x51\x7e\x5c\x9f\x62\x80\xec\x7b\x89\x10\x44\x44\x1f\x01\x7a\x0c\x5b\xd6\x69\x99\xef\xf7\x05\x58\xc3\x63\x5d\x8d\xfa\x11\x92\x1a\x34\xe2\xd1\xa3\xe3\x6b\xe5\x12\x53\x0c\x22\xcb\x32\xce\x7b\x78\x9e\xc0\xaa\x7f\xc0\xb5\x9d\x1b\x13\xff\x54\x54\x6e\x1a\xa4\x63\x32\x4b\x6a\x3b\x78\xe6\x48\x2e\x31\x01\xe0\x6b\x77\x50\xe6\x36\xca\x07\x29\xa5\x7c\x92\xe5\xf8\x95\xa6\x7d\x6e\x8f\x53\x0f\x03\x4f\x79\xa6\xb3\xb9\x51\xf0\x2b\xed\x5e\xba\x96\xcc\x28\xb3\xeb\xb1\x77\xe0\xbd\xa1\x32\xfe\xf3\x2a\x49\x4e\xd2\x6c\x68\x12\x74\xdf\x85\x38\xdc\x72\x52\x19\xe8\xba\x29\x65\xe5\x3d\x8e\x6a\x2c\x85\xd3\x9a\x35\x2b\x09\xb7\x18\x3d\xad\x01\x8e\xb9\x7c\x5d\x53\xb9\x26\x8f\xdb\x3a\x6b\xb9\xe5\xb4\x51\x2f\x69\x9e\xf6\xd0\x1c\xa4\x15\xb6\xb4\x5b\x64\x62\x7f\x0f\x14\x72\x7e\xa1\x66\x47\x43\x4b\x29\xe8\x23\xc8\x8c\x70\xb3\xde\x45\xee\x8e\x0c\xff\xb6\x5e\xfb\x13\x0a\xaa\x68\x8f\xb0\xe6\x14\x76\xd4\xf5\x40\xfb\x53\xb6\x9c\xae\xd0\xce\x89\x1f\x2a\xed\x42\xe9\x81\x15\xf6\x30\xf0\x24\xca\x77\xc7\x4f\x29\x47\xdb\x51\x66\x87\xa0\x38\x89\xcd\x63\xf5\x9e\x0e\xee\xfe\xe5\x57\xb8\x40\xbc\xac\xb0\x9a\x99\x99\x92\xbc\xd9\xe3\x24\x6f\x64\xb1\x7c\xbd\x4c\x0b\x93\x6f\xf3\x2e\xab\x9c\x01\x62\xb5\xd4\x70\x9c\x67\xb5\xff\xea\xd3\x74\x9e\x42\x24\xe6\x41\x0d\x66\x10\xa5\x49\x3e\xab\xc6\xa1\x0c\xda\xe6\x17\x81\x87\x2a\xfc\x74\xec\x7b\x07\xd3\xd4\x34\xaa\xfe\x4b\x06\x18\xa2\xdc\x39\xac\x75\x09\x0e\x2b\x60\x7f\x6e\xa3\x83\x65\x26\x4b\xc6\xa5\x13\x3e\xb5\x70\x4c\xda\x32\x09\x07\x26\x8e\x6d\xe2\x7a\x66\x8e\xb0\xe4\xa6\x88\xe7\xdd\x78\x24\x2d\x0b\x28\x0b\x56\x7f\x16\xb0\x0e\xc8\xfd\xf1\xb5\x8a\x4a\x09\x91\xa9\x5a\x0a\xaa\x76\x4c\x29\x04\x1d\x73\x49\x61\x6e\xe2\x62\xcd\x14\xb2\x66\x05\xce\xa2\x61\x2e\x1e\xed\x95\xa4\xab\x5f\x6c\x29\x7e\xf3\x59\x1c\x4c\xc2\x1c\xac\x69\xe0\x16\x07\x5b\x3e\x73\x18\x8f\x95\x30\xc7\xb8\x41\x56\x76\xa1\x9d\x26\xf1\xfa\x36\xdf\x45\xbb\x41\xbd\x03\x51\x68\x57\xfc\xc6\xb7\xe9\xce\xa0\xb5\x0b\x43\x27\xe1\x2d\x6d\x6e\xf7\x2d\xed\x5e\x6a\x87\x59\x34\x1a\xf9\x48\x8e\x5e\xd9\x31\xe5\x05\x73\xcc\x89\x6c\x44\xc9\x72\x16\x25\x7d\x2f\x61\x86\x88\xfb\xae\x8a\xbe\xef\x36\x0d\x4f\xbb\x99\x49\xc2\x41\xcb\xc7\x1f\x14\xbe\xe2\x38\xea\xfd\xfe\xd2\xb2\x78\x9a\x8e\x6b\x14\x8b\x33\x1d\xcf\x5e\x78\x0c\x7d\x39\xe4\x6b\x8f\x75\x14\x03\x18\x86\x36\x58\xd7\xb7\xb4\xff\xd1\x36\xb6\x6d\x42\xb5\x37\x33\x51\x4e\xb0\x1f\x07\x9e\x12\x83\xee\x01\x92\x82\x2b\x5a\xdf\x78\x07\x6c\xac\x11\x6c\x6e\x50\xad\x87\x82\xf4\x53\x04\x16\x24\x18\xbb\x3a\x1e\xe2\xbe\x15\xb2\xbb\x88\x19\x1f\x04\x2a\xcb\xdd\x32\x79\xaa\xe6\xd1\x9e\x26\xd4\x36\x15\xd1\xa6\x8f\xc6\xca\xb5\xef\x92\xa6\x24\xd0\x3a\x43\xda\x7c\x2d\x50\x95\xde\xc5\xa0\x3e\xfa\xcc\x4d\xd2\xa3\x68\xa3\xed\x39\xb0\xe8\xaf\xd3\x47\xc7\xac\x70\x6b\xc7\xd7\x0b\x49\x1a\xe5\x9c\xb7\x88\x79\x06\x45\x57\x7e\x31\x75\xee\xce\xed\x69\x8f\x4c\xca\xec\x6b\xfc\xe9\xbb\xdc\x53\x05\x89\x08\xb6\xe6\x42\x16\x69\xc2\xd5\xf5\xb2\x74\xd4\x52\x5d\x74\x84\x7e\x21\x2e\x2b\x79\xf6\xd8\x74\xbb\x51\x75\xaa\xcc\xa8\x46\xd1\xdb\x78\xba\x38\x8d\x70\x92\x4a\x65\xb5\x79\x65\xef\x5d\x68\x0f\x6c\x1c\x85\xe9\x88\x36\x6e\xf5\x1c\xa5\x6f\xef\xdf\x71\x3a\xe7\xda\xbf\x7b\x4f\xbb\x6b\x97\xd3\xcc\xce\xd0\xef\xb8\xfe\xf0\xd2\x6e\x5e\x93\x77\x28\x04\xe2\x94\x9e\xed\x3c\xa3\x20\x96\x26\x5c\x19\x98\x35\x00\x9b\x1b\x67\x04\xda\xe1\x70\xd8\x25\xba\x42\xcb\x29\xb6\x1f\x57\xea\x5c\x2c\x26\x84\x62\xf0\x7a\x2d\x68\x94\x99\xfd\x9c\xcf\x6f\x8e\x04\xba\x55\x09\xd4\x37\x65\x44\xff\xcb\x73\x1d\xd5\x3d\xd8\x32\xa1\xe7\x8a\x54\xf9\x27\xc8\x8e\xb1\xf9\xfe\x0a\x1d\x01\x46\xfc\xa0\x76\xc2\x82\x7d\x00\xad\x19\xe1\x73\x29\x7d\x97\xc7\x95\x9b\xc1\x05\xed\x74\x74\x88\x6e\x2d\x16\xff\x77\x03\xe5\x13\xbd\x41\xf7\x0c\xdd\x98\x1b\xc4\x00\x40\x93\xe7\x1a\xb4\x71\x10\xf1\xcf\x61\x02\x87\xe9\x0b\x27\x5a\xc2\x35\xaa\xaa\x12\x76\x93\xee\x28\xcc\xd9\x1d\x95\x00\xe4\xeb\x79\x61\x87\xf9\xa3\xea\x6b\x9f\x42\x17\x48\x9c\x59\x67\xbc\x1d\xe4\x4f\xc7\x6a\x78\x79\x7a\xac\xf0\x84\xdc\x98\xc4\x49\xff\x80\x22\x03\x6e\xee\xff\xc9\x2b\x1d\xc0\x68\x0c\xdf\x84\x64\xe4\x5b\x45\x8f\x69\x65\x95\x53\x0e\xa6\x94\xbe\x16\x69\x84\xc6\x79\x6a\xbc\x09\xfd\xb2\xc1\x77\xa8\x17\xa5\xaf\x47\x3d\xab\x0e\x52\xa4\xfd\xd2\x43\x6c\xe2\x5e\xf5\x6c\x18\xf5\xec\xb6\x2a\xb1\x90\x96\x5e\xf5\xe9\x81\xa4\xbd\x83\xfb\xa9\x85\xb4\x1c\x04\xcf\xdb\x6b\x9f\x6c\x92\xad\xcc\x6c\x62\xa2\x3c\x27\x6c\x2b\x7d\x07\x71\x2b\xf6\xe0\xf2\xd3\x35\xf3\xf2\x8c\xe1\x91\x02\xf0\x52\x2d\xbe\xd3\xba\x19\x16\x1b\x02\xba\xcc\xf8\xf4\x62\x4b\x47\xd9\xbb\x2b\xdf\xa9\xab\x2a\xb1\xb2\x43\x92\x79\x42\x59\x06\xe4\xdb\x87\x58\xaa\xfc\x42\x4f\xa7\x06\x11\x35\x4e\x16\xbd\xf2\xec\xd2\x6e\xb9\xae\xa9\xf0\x8e\xd2\xd1\xf6\xea\xdf\x70\x68\x22\x77\xc5\x80\xe0\x68\x50\x73\xbd\xf7\xf5\xe3\x03\x3a\x59\x81\x81\x86\x52\x2e\x70\x8c\xdf\x1e\xfb\xb6\x10\x6b\x49\x14\xd5\xcd\x13\x0a\x3a\x2a\x96\x87\xf4\x16\x0e\xc3\xba\xa8\xa7\xd7\x8e\x1b\xc8\xa2\x2b\xe2\x20\xe0\x0b\xc9\x22\x5a\x9e\xa9\x1e\xb4\xe8\xb0\xd1\xc3\x95\x67\xd1\x52\x06\x01\xaa\x1b\x38\x30\x19\x12\xa8\x17\xbd\xe4\x9e\x97\xdf\x53\xaa\x42\x23\x53\xd8\x18\xa8\x53\xfc\x19\x9c\x41\x6c\x52\x42\xdf\x5a\x84\x3d\xdc\x14\x7e\x64\x92\x15\xd7\x01\xc6\x1c\x13\xdb\x02\x01\x74\x0b\x9d\x91\xb2\xdd\x5c\x17\xac\xb7\x6a\xb3\xdc\x6e\xf7\x04\xfa\x23\x1a\x47\xf0\xc1\xd8\xb5\x33\xfe\xe0\x73\x1d\x3f\x6f\x9e\x85\x1c\xbe\x37\x50\xf4\x4b\xc6\x87\x03\x12\x21\x29\xf2\x59\xe5\x2a\x7f\x47\x0b\x09\x31\x49\x45\xea\x68\x8f\x39\xbf\x33\x55\xec\xee\x5d\xf0\x15\x72\xad\x2a\xd6\xe5\x72\xad\xdb\x92\x0e\xb4\x1c\xc6\x15\x45\x34\xb9\x32\x7e\xcc\x83\x12\xa3\xde\xac\x82\x16\xdc\xa7\x0f\x81\x9c\x02\xe9\x17\xff\xff\x40\x25\x1b\xc7\x82\x4d\x73\xeb\x03\x07\xda\x8b\x4b\x8b\xbb\x14\x85\xec\x92\x8a\x14\xb3\xc8\x60\xf0\xbb\xff\x16\x3b\x11\x55\xf7\x95\xb1\xda\xa3\x3f\x50\xdd\x35\x76\x67\x91\x4e\x8a\x47\xdb\xfe\xd7\x63\x5f\x3e\xdc\x70\xcf\x30\x2c\xb3\xc2\x44\xf1\x8c\x57\x02\xbc\xaf\x2a\x5c\x2c\x66\xe9\x9c\x3f\xa9\x78\x02\x69\x8f\x05\x25\x64\xe8\xad\x4d\xf5\xcf\xab\xa5\xfe\x8f\xfe\xe1\x3f\x44\xc2\x20\x0b\xb5\x0a\x9d\xb2\x80\x7d\x3d\x51\xa4\x65\x16\xe5\x05\x9b\x2e\x39\x45\xfa\xea\x3b\xa2\xe4\x83\x4c\x0f\xf2\x94\x13\x8d\x04\x9a\xd0\x14\x83\xb4\x07\x54\x20\xeb\x1c\x8d\x3d\xa6\xf8\x94\x86\x93\x86\x55\xe5\x30\x5b\xed\x04\x96\x8a\xc6\x33\x62\xa3\x43\x74\xd7\xb4\x88\xb4\x38\x20\x2a\xd4\xca\x5a\x11\x31\x52\x01\x9d\x8f\x33\x4a\x6a\xeb\x7c\xdd\x20\xa4\x01\x17\x6d\x94\x3d\x82\xc3\x55\xab\xa0\xbe\xb9\x17\xbb\x7f\x37\xcd\x82\x32\xcb\xbf\x58\xbd\x2f\xee\x05\x6b\x4e\xf0\x0b\x25\x19\x16\x25\x10\x30\x17\xc5\x65\xfa\x48\x62\xbb\x31\xed\xea\xd6\x7e\x65\xcf\xbe\x47\xe8\x7e\xe3\x9c\xff\x09\x14\xb1\x14\x53\x68\xd1\x59\x10\xd3\xf3\x94\xd9\x0e\x1e\xbc\x88\xaa\x29\xc1\xf3\x9f\x04\x4a\x32\x81\xf9\x41\x02\x28\xf7\xf3\xbe\xd3\x0a\x99\x70\x3f\xd8\xcc\x2a\x3d\x70\xa0\xdd\x8b\x72\x33\x1a\xa5\x51\xe2\x47\x54\xd8\x58\xa8\xef\x79\x60\x44\x7f\x05\x6f\x75\xa2\xe6\x2a\x9c\x0f\x6d\x11\x85\xf9\x4e\xdf\x8b\x7e\xbc\x43\x59\x8b\x53\x31\xac\x52\x2b\x11\x3f\xa0\xaf\x09\x88\x17\x50\xae\xc8\x44\x1e\x8c\x95\x7f\x1c\xab\x77\xf3\x4f\x8d\xb5\x99\xd2\xd4\xa8\x65\x61\xa1\x9d\x0f\xac\xf9\xeb\xa4\x84\x95\x59\xa4\xed\x66\x51\x4e\x48\x28\x01\x4d\x7b\x72\xc5\x55\x0a\xdc\x92\xe7\x37\xb4\xd4\x0a\xb3\x62\x67\xbc\x3f\x39\x5a\x6a\x0e\xd7\xbe\xb0\xe0\xee\xfd\x67\xf6\xf9\x6d\x96\xbe\x66\x81\x1a\xc1\x71\xf9\x8d\xb1\x2a\xd3\xbe\xa1\xec\x4a\x87\x11\x99\xd3\x63\xb3\x3a\xb4\xe3\xd2\x6e\x2e\x7a\x3e\x1d\x7b\xd5\x90\x9b\xae\xef\x91\x44\x89\x2d\xd6\x49\x3f\x08\xd1\x6d\x6b\x47\xd1\x30\x2e\xa9\x2a\xff\xf8\x58\xd9\xfc\x1c\x55\x1a\x0a\x02\x37\xe4\xfe\x00\xcf\xac\x03\x3d\xbf\xfe\x5c\x93\x6a\xca\x17\x66\xab\x0f\xa7\x35\xf1\x40\x24\x7e\x8b\x7e\x95\xaf\xe9\x43\x8b\x02\xa9\x6f\x23\xae\x99\x4c\xd8\xd4\xaf\x0a\x60\x5c\x9b\x30\x7d\x3a\x95\x74\x91\xe8\x4e\x46\x0a\x54\xd1\xaa\x56\x21\xba\xa8\x54\x88\xb4\x48\x6e\x2f\xcd\xf3\x88\xc4\xbd\x96\xa4\xdf\x0e\xf9\x19\xbe\x9e\x72\xd6\x9c\x9b\x6b\xe7\xe1\x60\xcd\x66\x11\xcb\x6f\x61\xfb\x4b\x39\xc1\xaf\x5c\x90\x1f\x9a\xa4\x67\x0a\xac\x0e\xb4\x3c\xae\x2b\x1b\x22\x70\x83\x70\x48\x6c\x99\x78\x70\xe4\xa8\xcc\xc2\x81\xc9\x19\xd9\xe5\x26\xe8\x2e\x69\xfa\x09\xd5\xe0\xa8\x29\x7e\x3a\xf6\xb8\xe2\x7f\xd9\x34\xb5\x79\xad\xec\xf5\x5d\xdb\x81\x9b\x9b\x0a\xf5\xf1\xd1\xb8\x26\x7a\x35\x30\x49\xdf\x3e\xa1\x9c\xb9\x98\x71\x5d\x83\x4a\x4a\xcc\xa0\x0d\x28\xa4\x23\x05\x3f\x79\x10\x28\x77\xf5\xd3\x08\xea\x38\x4b\xae\x2a\x3f\x1f\x1c\x77\xae\x23\xec\xcb\x0a\x88\x3c\x48\x62\x5d\x7d\x6d\xd7\x9c\xdf\xb3\x8f\x6f\xe3\x87\x74\x28\xa1\x0f\x78\x51\xb5\xe4\x96\x4b\xf2\xa2\xaf\xfe\x11\x59\xed\xf5\xb1\x47\xa6\x61\x88\x81\xc2\x6c\x63\x0a\x2c\x36\x37\xd7\xce\x4c\x82\xa6\x35\x46\x34\xd7\x02\x35\xf3\x3e\xa2\x91\xfe\xae\xff\x1c\xa7\x49\xdf\x66\xbb\x3c\x56\x6a\xfb\xc4\xb5\x0f\x1e\xfd\x19\x58\x01\xd1\x27\xfe\xfa\xcf\x75\x14\x34\x92\x67\x85\xa8\xdf\xee\x78\x66\xec\xfb\xcf\x52\x89\x88\x89\x2c\x3c\x69\xdc\x2e\xd5\x9a\xfe\xe3\xd9\x6e\x64\xf2\x5f\x40\x97\x06\x23\xae\x4f\x82\xd6\x81\x03\xa2\x5b\x1c\xcc\xbc\xfc\xcf\xbf\xca\xfd\x1f\x88\x0d\x3b\x93\xe6\xaf\x7d\xc5\x15\x87\xf4\x60\xb0\xbc\xfe\xc6\xc4\x3b\x56\x3e\x47\x96\x90\xf4\xc4\x5f\x78\x76\xd2\x9a\x9b\xe3\xc3\x71\x0b\xc2\x37\x1e\xcc\x55\x7a\x30\x92\x15\xd0\xd3\x43\xb2\xf4\x80\xca\x54\x91\x27\x6a\xfd\x33\x69\x26\xbe\x8b\xe5\x42\x5f\xf9\xd1\x9f\x9f\x38\xd3\x60\xfb\x14\xd8\xf0\xc8\x4a\xef\xe3\xb4\xa2\xb3\xe5\xef\xfe\x9d\x0e\x09\xb5\x62\x21\x5e\x27\xc2\x67\xbd\x79\x82\x00\x78\x0b\xd5\x2a\x3e\xe4\x8d\x71\xeb\xf9\xe7\x39\x12\x83\x9f\x49\x15\x52\xf4\xb7\x3a\xca\x30\x70\x17\x99\x57\xd6\xc6\xb6\x48\x01\x6f\x41\x19\x93\xce\x94\x93\xcf\x22\x5d\xc6\x69\xb9\x0b\x5d\x34\x14\xef\xdf\x52\x47\xe7\x13\xc0\xd8\x23\xf3\xde\x32\x69\xed\x7b\xc9\xb3\x43\xbd\xbc\x61\xd0\xfa\xaa\xd8\x06\x6c\x05\x94\x95\xa1\x79\x08\xb8\x28\x0b\x1e\x99\x6c\xfd\x02\x6f\xe5\x07\x4a\x82\xd0\xc6\xd1\x41\xd3\xb5\xc5\x40\x49\xb3\x5c\xd5\x47\xe1\x55\x85\x2c\x0f\x4d\x62\x7a\x91\x49\x38\x9f\x43\x97\xf7\x8f\xc7\x7e\x82\x04\xc1\x30\x51\x76\xf4\xa9\x99\x4d\x6c\xd6\x5f\xdf\x59\x7d\x66\xd7\x56\x50\xb3\x66\x3c\x17\x34\xe4\xbf\x8b\x47\x29\xe2\x46\x2d\xe7\x66\x7e\x41\x49\xbb\xde\x18\xab\x23\xfd\x3b\x1a\x09\x77\x6a\xfc\xb8\xca\x3e\xd3\x78\x7b\x6b\x7e\x7e\xe3\xb2\xe2\x7a\x7f\x17\x47\x3b\x9e\xf5\x61\x75\x3c\x41\x00\x73\xe3\x32\xfe\x34\xff\xb0\x02\x6e\x0c\xd3\x7c\x60\x33\x95\x7c\x1d\xd2\xc9\xd7\x21\x25\x95\x3a\x8c\x62\x0b\x30\x21\x82\xd1\x87\xf8\x41\x21\x9b\xd0\xdf\xc7\x5e\x3a\x3c\xd6\xfa\x0c\x27\x11\x0e\xf9\x97\x54\xdf\x2d\xb3\x26\x4f\x13\xd0\xc3\xab\xe5\x2c\xde\x9c\xd5\x87\x87\x79\xce\x86\x26\xfd\x5d\x53\x85\xf9\xc8\xf4\xad\xa9\x02\xb4\xdb\x8d\xdf\x0c\xd4\xd6\xfc\xa6\x9a\x01\x8d\x4c\x0e\x46\xb1\xf7\x44\x55\xac\xc0\x4b\xaa\x16\x0d\x33\x53\x9d\x80\x5e\x6c\x56\x8b\xd0\x06\xbe\x71\x6c\xb2\x10\x6d\x49\x84\xc5\x9b\x5a\xe7\x94\x5b\x1c\x28\x1e\x8f\x4e\xf5\x4e\x9e\x7f\xbe\x1d\xdb\x28\x2f\x33\xab\x30\x82\x5b\x3b\x0a\x23\x38\x4d\xae\x7c\xa1\xbd\x1c\xa7\x6b\x42\xbb\x62\x9d\x59\xba\x49\xa2\x39\xdb\xa0\x99\x1d\xdb\x55\x1b\xbb\x1c\xd4\x99\xfa\x78\xa0\xd2\xbf\x54\xa5\xfb\xc3\xa9\xee\x2b\xc1\x5e\xec\x88\xce\x78\xe6\x4e\x29\x95\xef\xe3\x8d\x25\x4d\x3f\x4b\xd7\x5c\x9d\xc0\x26\x9b\xea\x63\x5e\x08\xb4\x86\x45\x3a\xca\x67\x7c\x8d\xf4\x40\xb1\xce\x2f\x28\x59\xd7\x0b\x6a\xd9\xaf\x45\xc5\xe0\xf3\xb5\x9e\x9f\x27\xf9\x41\x2b\x57\x4c\xf1\x95\xa0\xee\x4e\x98\xfb\x62\xf8\xd6\xea\x38\x89\xd5\x6b\x77\xd0\xc6\x41\x6c\xfb\xd7\xb4\x91\xd0\x16\x3a\x3a\x56\x56\xd5\x7f\x46\x25\xc2\x46\x2d\x90\x5d\xa1\x23\x15\x3d\xbb\x23\xd8\x02\x38\x90\x2f\x8d\x6b\xa2\x2b\x55\xe8\x74\xe2\xd5\x7b\x1d\x97\x6f\xac\x5d\xd8\xbe\x57\x83\x59\x6a\x81\xf4\xd3\xca\x12\xe3\x1a\xd2\x7e\x14\x0f\x0f\x54\xb5\xfe\x21\x86\xc2\xaa\xa5\xf9\xb2\xa3\xf1\x3f\xa5\x68\x16\x99\x89\x7b\xe2\x38\xe9\x7c\x08\xbc\x02\xca\xf1\x06\xd9\xc3\x17\xdb\x59\xd4\xa3\x3d\x83\xfe\x1e\xf0\xd0\x7c\xad\x6a\x16\x72\x4c\x82\x6d\xfc\x92\x2c\xe1\x9b\xb4\x6f\x44\x60\x4f\x8e\xfd\x22\x8b\xc2\x15\xce\x85\x1d\xf7\x51\x29\x57\x6b\xe4\x2a\xf1\x7c\xc0\xde\x10\x14\x07\xdd\x4f\x81\x77\x48\x69\x1b\x9a\x22\xf4\xfc\x35\x34\x1b\x2e\x28\x5b\xa8\x0b\x5a\x88\x62\x94\xba\xa9\x31\x9a\xdd\x77\xd1\x7d\xe0\x17\x8a\x24\x93\xd9\xaf\x97\x51\x16\x25\x7d\x52\x19\x63\xc5\xfa\xc0\x53\x06\x6e\x8e\x55\x43\xf0\x28\x62\x3e\xbf\x08\x7c\x51\xc3\xc5\x2e\xe2\xe3\x0d\xe5\xc4\xb8\x66\xe3\x78\xa7\x72\x03\xf8\xd1\x58\x3d\x78\x58\xe8\x21\x58\x6e\x21\xf5\x31\x9c\x3b\x3b\x48\x4c\x06\x1d\xae\x3f\x1d\xfb\x77\x01\x2c\xd3\xa9\x55\x78\x72\xf7\xb3\x13\xcf\xb5\x8a\x12\x38\xdb\xb3\x59\xdc\xab\x7e\xc9\x54\x9b\x80\x5f\x34\x79\xc3\x57\x7b\xda\x99\x0f\xb8\xe8\xe9\x6a\xff\x4b\x1e\xcc\x1b\x85\x40\x91\xb2\x2f\xc8\x58\xcd\x44\x41\xf8\x44\x93\x66\x5b\xc7\xa3\xf1\x2f\x29\x33\xbb\xc4\xae\xe5\xa3\x2c\x82\xfa\xfe\xcb\x5e\x31\xca\x0d\x06\x2f\x29\x15\xbb\xcc\x24\x2b\xc0\x3a\x21\x2d\x3b\x89\x3b\xcd\x2f\x14\x48\x8d\x18\x03\xb3\x4a\xed\xfe\x12\x0e\x55\x1c\xbd\x57\x94\xc9\x01\x38\x5c\xfc\xff\xc7\x9f\x53\x54\xb9\xc2\x66\x43\x52\x25\x65\x55\x3f\x3c\xcf\x73\x8a\xec\xf7\xe7\x8a\xab\x7b\xb1\xd6\xe9\x8d\x8b\xd5\x59\xe5\xf4\xc0\x58\x21\x6d\xd2\x8a\x30\x75\x42\x1b\xc0\x9e\x98\x4a\xb3\x97\x76\x57\xdf\x44\xf5\x8a\xb6\x00\x1e\xcd\x2f\xa6\xa8\xba\x5f\x6c\x0f\xa0\xaa\xc0\x03\x2d\x9c\x53\xbc\xe7\x31\xdd\xfa\x5e\xa0\x49\x8f\x1f\xab\xe6\x56\x94\x84\x65\xe6\xba\xb7\x00\xfe\xfd\x2b\x65\xac\xf2\xaf\xd4\xdd\xc9\xcb\x6e\x98\x0e\x87\x51\x51\x58\x3b\xab\x14\x4c\xd9\x0a\x53\xc0\x67\x7a\x6e\x74\x51\xe9\x40\x5c\x52\xd2\x58\x61\x3a\x1c\x95\x85\xcd\x08\x37\xec\xd1\x1c\x17\x91\x37\xf1\x8b\x66\xe9\xf1\xcc\xf6\xa2\xb0\xa0\xf1\x96\x13\x02\xdb\xbf\xdb\xd9\x97\x2b\xa0\xef\x3d\x35\xc7\x14\x1b\x43\xa8\x78\xe1\x49\x72\xf5\x82\x15\xf7\x8e\xb2\x67\xbb\xe8\xfb\xc8\x49\x31\xc8\xcc\xeb\xb8\xb1\x38\x8a\x40\x43\xc1\x2f\x11\x71\x9f\x7f\xa9\x35\xf9\x2c\x75\xdc\xd7\xd2\x41\x92\x17\x02\x9f\xd1\xbc\x10\x94\x6a\xbf\xa1\x9d\x68\x2f\x37\x9d\xef\xf9\x4a\x94\x0d\xc9\x4b\xcc\x75\xf6\x51\x85\xf3\xb5\xb3\xc8\xa2\xbd\x32\xab\x60\xf6\x9c\xbc\xe3\xe4\x3b\x1f\x28\x62\xd0\x61\xb5\x4f\xb7\x4f\x24\x72\x46\xfd\x04\x86\xe5\xf4\x20\xb4\x6f\x91\xe8\xc2\x7d\xde\x3d\x44\xfb\x7a\x91\x19\xd0\x71\xb3\x88\x6d\x48\x10\x5e\x4f\x63\x8b\x22\x7e\x5e\xaf\x21\xe3\x3c\xb4\x6d\xd9\xac\xd8\x56\x55\x6d\xb1\x23\x52\xe0\x5b\x0c\xfe\x01\x0c\xa3\xdc\x66\x2c\x2c\x87\xb0\x77\x42\x99\xf6\x9f\x08\x74\x3f\x8d\xf4\x03\xd8\xae\xa5\xc9\x3c\x49\x50\x45\xbd\x28\x1f\xc5\x66\xdd\x7d\x4b\x2e\xa4\x83\xda\xb8\x6a\x1a\x97\xb6\x07\xb0\x4b\x8b\x83\x12\x37\xee\xfb\x58\xfa\xfc\xa2\x81\x44\xbe\x58\x5d\xc4\xbd\x59\x25\xeb\xca\x47\x88\xd6\xbe\x42\x4a\xc1\x13\x3e\xe1\x06\x3a\x12\x9b\xe9\xc6\x69\xd4\xdb\xe6\x11\x2c\xec\x25\x2e\xce\x62\x1e\xc9\xd0\xea\x78\x85\xb8\xdb\x54\x7f\xca\xcf\x34\xf0\x54\xab\xbd\x9c\xf6\xa2\x82\x19\xde\x10\xc9\xba\xa7\x04\xb3\xee\xd5\xa2\xdb\x00\x3a\x3d\x1b\xef\xd3\x6a\xdd\x78\xbf\x89\xaf\x32\x4a\xb3\xb4\x44\xac\x96\x6e\x55\xcb\x7b\xe7\x28\x05\xca\x65\x53\x73\xaa\xdb\x50\x4e\x75\x1b\x1a\xea\x54\x94\xbd\xc8\xe6\xb3\x7e\x48\x7b\x18\xf5\x27\xbf\xc0\x32\x43\x67\xfb\xb0\x62\x3c\x1c\xd6\x00\x74\x6b\xc2\x01\x2c\xde\x11\x2f\x78\xce\xcb\x2f\x26\x9b\xc7\xfb\xae\xe7\xd8\xed\x46\xc8\xdb\x51\x78\xdf\x1d\x2b\x05\xa4\xbb\x81\x17\x9c\x1e\xd9\xa4\x97\xeb\xb8\xc2\x6e\xc7\xd8\x9b\xc0\x23\xca\x54\x6b\x73\xec\x7e\x01\xf6\x5c\x82\x7d\x56\x5e\xef\x22\xee\x79\x58\x25\xd2\x26\x2e\xb8\x78\x63\xeb\x48\xe5\x54\xfa\xb6\x4a\xa9\x72\x6b\x8a\x22\x16\x2c\x3f\xfe\xfd\xa4\xd6\xf0\x98\x76\x89\xa3\x43\x27\x63\x1b\xf4\x3d\x02\x8d\xa6\x5b\x2a\x30\x69\x8f\x97\x25\x06\x91\x72\x2c\x46\x30\x13\x7a\xb4\x17\x11\x48\x57\x6d\xd6\x25\xea\x3c\x4d\x23\xd0\x1a\xfa\x63\x5a\xf1\xca\x44\xd9\xfb\xbf\xea\xcd\x9c\xf4\xa2\x42\x0a\xb9\x26\x93\x26\x49\x45\x46\x51\xb8\x02\x5e\x11\x8a\x48\x9c\x06\x88\x77\xb7\x55\xb5\x7d\x46\x39\xd5\xb3\xcb\x97\x70\x38\x7c\x6f\x20\x1f\x65\x66\xcd\x79\x67\xb2\x24\x1a\xfd\xa2\xc8\xa3\xf9\x6c\x83\x74\xaf\xe8\xe7\x34\x98\x4d\x50\x6e\x5a\x1c\x34\xb6\xc4\x7c\xaf\xee\xad\x02\x0d\x28\x29\xf6\xa3\x4d\x78\xb7\xd7\xca\x61\x37\x9d\x51\x64\xea\x33\xaa\xeb\xb7\x4d\x4d\x3d\x37\x1a\x7d\x02\x7a\x99\x61\x46\x34\xd2\xfe\xc3\x81\xe7\x1a\x1c\x56\x60\x6f\x76\xb6\xcc\x5a\x1e\xa9\x74\xa9\x76\x9e\x4f\x91\x24\x5e\x68\xc7\xe9\x5a\xcb\x23\x41\xb7\x2a\x95\xf3\xad\x93\x86\x40\xd3\x35\xe1\x4a\xd7\x26\xac\xc5\x85\xf2\xfe\x94\xe2\xed\x9d\xf2\xa1\x2e\x33\xcb\xcb\x51\x48\x27\x09\x44\x07\x30\x73\x96\x3e\x9d\x32\xc2\x9a\xd6\xae\x5e\x58\x68\x87\x03\x25\x2e\xc8\xae\x3d\x63\x3f\x7e\xf9\xa4\xd1\xc9\x7f\x64\xf2\x62\x87\x87\x99\x61\xa0\xcc\x16\x5a\xb8\x13\x32\xab\xa6\xaa\x44\x19\xc5\x2d\xfa\xc2\xd7\xb9\x48\x1f\x56\xce\x26\x5b\x3b\x8f\xb9\x01\xc3\xeb\xbc\x96\x55\xc6\xec\x6d\xf5\x1e\xd7\xd8\xbd\xde\xae\x96\x33\xbf\xe4\x13\x5b\xcc\xfd\xab\x38\x88\x93\xef\x0e\x95\x1e\xb5\x8a\x42\xf4\xba\x7c\xcb\xfc\x37\x28\xcd\xe5\x5f\xd0\x32\xcb\xdf\xe4\x24\x4d\xd4\x32\x6b\x30\xa0\x51\x0e\x28\x3c\x26\x21\xb8\x1d\x88\x7a\xb7\x03\x05\xf6\xb9\xa3\x7c\x5f\x3f\xae\x8b\x84\x29\x65\x99\xab\x63\x1d\x84\xde\x6e\x82\x32\xaf\x59\x56\xeb\x12\x84\xd1\xcf\x5c\xc1\x83\xe6\x17\x6a\xb1\x8e\xe2\xb4\x70\xfa\x64\x62\xc3\xa8\x74\xc4\xef\xfb\xe1\xb1\x49\x42\x1b\x73\x58\x06\xc9\xf6\x3c\x2a\x6e\x36\x70\xc2\x21\x2c\x6c\x16\x05\x78\x2b\xb3\xa4\x8a\x5b\x33\xb4\x57\x35\x6a\x8e\x3d\xd1\xf1\x7e\x2c\x5a\x3f\xf6\xc1\x6e\xc5\x66\xe1\x20\xb2\xcb\x9c\x1f\x34\x79\x14\xfa\x08\x1d\x25\x79\x19\x47\x6c\xf4\x88\x46\xe7\x11\xac\x35\x7e\xd1\xe8\xe6\x04\x05\x17\xc7\x77\xc4\x01\xc1\x7a\x6e\xfc\x42\x45\xdf\x51\x66\x57\x21\xcb\xbb\x9d\xce\x6d\xe4\x37\xce\x1f\xc3\x63\xa8\x2e\xaa\xa2\x12\x9c\x90\xda\x60\x56\x10\xb6\xd3\x8c\xdc\x25\x10\x85\xa1\x11\xf3\xb2\xaf\x74\x1c\x12\x66\x5a\xbb\x66\xcf\x3e\x19\xf9\xb4\x34\x30\xc2\x47\xf9\x3b\x9e\x31\x65\x42\x1b\x13\xcf\x85\xfe\xba\xb8\xa7\xb5\x1c\xe1\xef\x9c\x9a\xe5\x1b\xf3\xcb\xcc\x4c\x17\xab\xad\xea\x4f\xa2\xcf\xcc\x9e\x54\xc8\x19\xee\x37\xe8\xa8\x85\x69\xb2\xac\x50\xe6\x4e\x8f\xa8\xba\xc9\x42\xb5\xf5\x8d\xc3\x81\x4d\xb2\xf5\xed\x2a\x67\x62\xfd\x75\x51\xab\x51\xaa\xd4\xb8\xb3\xfc\x53\x63\x25\x83\x76\x36\xd0\x53\x42\x35\x9e\xc9\x07\x74\xac\x28\x30\xe2\x3b\x58\x17\x42\x62\xf6\x07\x8b\x5d\x5e\xc6\x18\x4f\x04\x5a\x19\x3f\xa6\xf3\xd8\xb3\x0a\x3e\xe5\x45\x2b\xc5\x6b\x5b\x39\x22\x5f\xac\xb9\xf4\x58\x28\xef\x3b\x33\x3f\x7d\xbe\x2b\x4a\xd2\xb9\xa0\xa6\x8b\xe2\xc1\xe6\xcf\xe7\x7f\x8b\x7e\x1d\x55\xf2\x21\x25\x4b\x3d\xdb\x69\xbd\xe2\x58\xb2\x81\x6f\xe8\x9e\x03\x5a\x10\xcf\x68\x86\xd1\xb5\x0e\x45\xaf\xd4\xdc\xf1\xed\x10\x1a\x76\x4d\x68\x15\x0b\xe7\xb6\xfa\x6e\x0f\x27\x6a\x9a\x45\x2a\x18\x1b\xa7\x03\xc5\x85\x9b\xa1\xde\x21\xce\x96\x8f\x09\x2a\x2f\x16\x85\xca\x59\xee\x18\x6d\x02\x2c\xb2\x87\x63\x8d\xad\x3a\x42\x83\x45\x34\x05\xc6\xb4\xd0\x31\x32\xfd\x29\x7a\x73\x68\x88\xff\x31\xc2\x24\xfb\x2e\x50\xeb\x71\xe3\xb2\x76\x0f\xfa\x13\xed\x29\x70\x88\x22\x39\xfe\xe1\x0c\x35\x15\xa5\x43\x43\xc7\x0d\x9a\x70\x0f\x9a\x5c\x51\x97\xd3\x38\x56\x4d\x58\xf7\xac\xd4\xf3\xd9\xdc\xea\x23\xd1\x42\xe1\xc5\x3b\x3d\x9b\x25\x9f\xc8\x49\xfc\xec\xa6\xc9\x32\x59\x1b\x78\x06\x29\x9e\x3c\xa2\x20\x6f\x29\x9c\x04\x37\xd4\xbc\x38\x2f\xb3\x55\xbb\x6e\x7b\x84\x60\x61\xaf\x77\x0c\x3b\x6b\x66\x0d\xce\x05\xde\x8b\x62\x4c\x9d\xcd\x7b\xf6\xb5\x57\x6d\xc6\x32\x1f\xd2\x5b\xad\xa9\x64\x6d\x86\x64\x10\x87\xbf\x1b\xa7\x69\x2f\x2f\x32\x6b\x86\x2d\x35\x3f\x55\x16\xf5\x3a\x95\xe5\x00\xa3\xa4\x5c\xf1\x16\x42\x94\xf5\x3b\x33\x4e\x4d\x4f\x44\xa7\x9c\xfa\xae\x1b\x72\x69\x49\xd4\xa2\xcc\xba\x6c\xd1\xef\xca\x50\x5f\x92\x4e\x9e\x93\xde\x42\x88\x0a\xcc\x38\xd8\x8c\x72\xaf\x74\x56\x96\xaa\x87\x91\x17\x59\x9a\xf4\xe3\xf5\x6d\xb4\xbc\x44\x41\xa1\x7a\x7a\xe8\x4c\xdc\x51\xf3\xe2\x53\xe8\x0f\x6b\x2d\x06\x9c\x65\xe7\xf4\x08\x84\x4c\xd1\x68\xe3\x01\x75\x7c\x5e\xe9\xd3\x9d\x9f\x5a\x72\x7b\xc1\xfa\xee\x65\x66\x2d\xa9\x39\x82\x2a\xea\xc4\x9b\x4d\xf8\x8f\x28\x33\x5f\xa7\xfc\x12\xdb\x8b\x13\x04\x7e\xa1\x1a\x78\xa1\xc9\xed\x3a\x4d\x79\xb4\xcb\x87\xdc\x08\x65\xc6\x1b\xad\xda\x1d\xba\x7f\x52\xfd\x0a\xea\x39\x3e\x0d\x25\x77\x6d\x39\x57\x01\x6e\x52\xc9\x58\x4f\xbb\xb7\x61\x49\xf2\xef\xbb\x0e\x76\x9a\xf5\x2c\x4b\x41\xa0\x02\xfa\x86\xaa\x86\xbe\xb1\x19\xcc\x51\x25\x92\xf3\xf3\x4b\x8f\xd4\xe6\x7e\x4a\x47\xe0\xfb\x48\x3e\xb0\x61\xfe\x9c\xb6\xbc\x90\xf3\x3d\xc5\xe0\x8a\x92\x0d\x87\x83\xe6\xc6\x69\x24\x9d\x32\x63\xf4\x65\xd4\x6f\x07\xde\xf7\xeb\xb8\x9a\x85\x96\x49\xcf\x2e\x47\x89\x84\x7a\xd4\x2d\x7f\xa0\xe5\x52\xfe\x60\xbc\xb9\xe3\x58\x55\xee\x46\x46\x06\x6c\xf4\xa9\xcf\xfe\xf7\x1b\xf2\xe6\xc5\xb6\x35\x79\x81\xbe\x06\x32\xf2\x77\x39\x52\x4a\x85\x56\x7d\x2f\x34\x46\x58\xff\x03\xa0\x99\xdf\x71\x5d\x7a\xa8\x53\x89\x7c\x14\x92\x24\x16\xf2\xe1\x17\x53\x4b\x70\x6e\x4f\x7b\x68\xfb\x66\xcd\x14\x45\xcd\x4d\xec\x82\x72\x13\x6b\x62\xe6\x2d\xb6\x7b\xeb\x6c\x3f\x83\x49\xc5\x77\xb4\x52\xc7\x77\xb4\x90\x86\x89\xe3\x34\x4d\x50\x52\x3a\x88\x99\x92\xcd\xd4\x90\x87\x87\xb5\xf6\x46\x4d\xbf\x5a\xa4\x88\x69\x64\x32\xca\x22\x53\x58\x12\x91\x97\xd4\xaa\xe5\xfc\x51\x1e\x9d\x78\x04\x10\xbb\x6a\x3b\x46\x9e\x53\xc7\xfb\x39\x25\x22\x90\x45\xab\x36\x9b\xad\x0e\x22\x9c\x1a\x5b\x26\xaa\x21\x7e\x56\xad\x79\xb0\xd7\xf9\x87\x3a\x4d\x66\xc5\x03\x93\xf5\x6c\xb6\x8d\xd6\x18\x92\xa5\xcb\xca\x18\x07\x03\x3d\xa0\x00\x40\x1b\x64\x9f\x70\x4c\xcd\xb0\xc9\xee\x34\x15\xaf\xb9\xed\x19\xd6\xbe\xd3\x03\x48\xbe\x76\xcd\x93\xdc\x0c\x47\xb1\xe5\x2c\x1d\xe7\x00\x3b\xbf\x63\x62\x06\x6b\x3c\xd1\x2d\x7b\x7a\xd3\xc8\xc6\x6a\xcf\xa6\x7b\xca\xd0\xf1\x5e\x93\x8c\xb0\xe9\x11\x34\xcc\x39\x0b\xb3\x7f\x56\xd0\x52\x5e\x5a\xd3\x3e\x6a\xa2\xf2\x2c\xb3\x55\x3d\x1e\x65\x5e\x29\x3d\x25\xb4\xbb\xbf\xa3\x0a\x89\x6e\x06\xcb\xf2\x19\x65\x9c\xa5\xa4\x6f\x60\xc5\x26\x6a\x65\x7e\xf0\xb9\x6c\x63\x9a\xf7\x33\xd4\x64\x86\x54\x42\x11\x1e\xee\x28\x9c\x0a\x06\x47\xc0\x90\x3c\xd3\xa9\x99\x6d\x29\xae\xc3\xb4\x63\xf8\xe2\x4b\x55\xc1\xbb\x2a\x92\xc1\x68\xea\xe2\x2b\x00\x6b\xc6\x38\x49\xf4\xb7\xbf\xdf\xe4\x2e\xd6\x5b\x8b\x92\x9e\x73\x46\x41\x61\x77\x17\x8b\x9f\x5f\x4c\x79\x84\x48\x4f\x2d\x1d\x59\x58\x95\xf3\x9a\x0a\xbc\xf8\xd0\xb4\x5a\xeb\xdc\x5c\xbb\xc8\x4c\x92\x2f\xdb\x6c\xb6\xa6\xb5\xee\xa9\xdf\x2d\x3d\x19\x61\xd3\x07\x61\x58\x0a\xb3\x6c\x64\xb2\x22\x0a\xa3\x91\x49\x00\xe1\x65\x74\xc4\x1e\x49\xc9\x10\x34\x1e\xaa\x99\xc8\x72\x0a\x41\x39\xc4\x00\x1c\x12\x4c\x59\x47\x85\xfb\xe3\xc0\x77\x3f\xb0\xee\xf8\xff\x8f\x6b\x80\xfe\xcf\xea\x2c\x16\x69\xcf\x90\x6e\xfb\x42\xad\x7f\xe6\xa6\x5b\xba\x3b\x4c\x91\x07\xc7\x7b\xcb\x3f\xf2\xe7\x40\x50\x47\xf4\xfa\x7c\xc7\x47\x2f\x13\x12\xb3\x78\x9b\xbf\xaf\xb0\x58\xe7\xeb\x40\xe1\xd6\xee\x22\xd4\x08\xf4\xc2\xc3\x76\x7f\xa8\x56\xe3\x90\x0a\x35\x17\x9e\x40\x4c\xe0\xeb\xa6\x07\x96\x96\x45\xee\x4d\xad\xb9\xf9\x1c\xe8\x46\xf4\x13\x4a\xd8\xa2\x94\x1f\x54\x4c\x43\x47\x3b\x9c\x52\x80\xdd\xbf\x7b\xb1\x9d\x97\xfd\xbe\xcd\x8b\xa9\xd6\xbd\xc6\xc3\xf9\x32\xc4\xf6\xfe\x3a\x74\xab\x17\x05\x34\x71\x64\x13\x2f\x7c\x8e\x88\x0b\x7d\x3f\xbe\x9e\x3a\x52\xf6\xef\x7e\xb1\x6d\x8a\x74\x44\x83\x70\xa4\x0e\xc7\x95\x73\xf1\x71\x35\x5f\x1e\x9a\x70\xc5\x26\x07\xb9\x99\xec\x5c\x4c\xaa\x27\xc1\x2f\x6a\x7d\x76\xb3\xbc\xbc\x9d\x6e\x8a\x14\xbc\xb4\x1e\xa4\x53\x53\xad\x7d\xc4\xc6\x93\x81\x47\xce\xb2\x66\x98\x33\x3f\xf1\x1a\x05\xd3\x25\xc0\xfc\x7c\xbb\x67\xc3\x2f\xce\x6c\xfd\x82\xa3\x09\x55\x7f\x08\xe5\x51\xcd\x16\xc9\x4f\xf3\xbb\xa6\x30\x9c\xd1\xa2\x16\x78\x43\x77\x93\xde\x68\xe0\xba\xb5\xbb\x69\x9a\x17\xd2\x4e\x96\xa1\x2e\x7d\x30\x99\xf6\x3e\xa3\x58\x8b\x79\x54\x3d\x82\x62\x96\x76\x30\x26\x57\x1f\xe0\xa7\x95\xe1\xce\x1e\xaf\x0a\x58\x85\x38\xfe\x31\x45\xbb\xed\x65\xeb\x82\x4d\x40\x03\xec\xdb\xb4\xf4\xf8\x7a\xfc\x9c\x9a\x5c\x99\x7e\xdf\x66\x46\x86\x39\x22\xaa\x5c\xdb\x7a\x0d\xfd\x45\x93\x93\x10\x0b\xbd\x83\x6b\xe3\x3a\xb6\xd6\xd1\x69\x4f\x81\x97\x5e\x6e\x2f\x9b\x30\x8f\x86\x51\x6c\x55\xf7\xb3\xae\x5a\xe6\x23\x4f\x62\xfa\x66\xdd\x0c\x0d\x4d\x37\x99\x1c\x1a\xd4\x6e\x83\xe7\x7b\xbc\x57\x5b\x35\x59\x6c\x30\xc6\x61\x5a\x13\x0f\x7c\x85\xe4\xe4\x85\xd1\x46\x69\x56\xd8\x6c\xc6\x2f\x45\x30\x97\xa4\xa4\xf2\x3d\xbd\xdf\x55\x44\x7e\xd3\xcd\xd3\xac\xbb\xcb\x0f\x69\xfe\x03\xd6\x2f\x6a\xf2\xf7\x03\xd5\xf2\xb8\xae\x7d\x09\x3e\xa1\xf5\x8a\x78\xf1\x9e\x12\x3c\xff\x73\xec\x74\xfe\x87\xc0\xd7\xd1\x87\x02\x95\x50\x9e\x77\x02\x6a\x51\xf2\x5a\x99\x84\x34\x0f\xa0\x5f\x64\x09\x6b\x25\x08\x78\x4a\x41\x60\x86\x65\xbc\x9c\x66\x3c\xd2\x46\xbe\x7e\x4a\x81\x4f\x4e\xb9\x39\xd4\x30\xea\xf5\x62\xbb\x8d\x9e\x3a\x0e\xf3\x1b\x3a\xb3\xb9\xa4\x92\xb4\x0b\x1a\x6f\x7e\x4e\x79\x09\xb7\x3a\xbe\x23\x03\xf3\x81\x2c\xb1\x59\x3e\xab\x79\x4d\xf4\xab\x38\xf6\x67\xd9\x26\x1f\x19\xc7\x75\xac\x38\xf4\x27\xdf\x1f\x6f\xf2\xbe\x23\xdb\x96\x7c\x9b\x9f\x5b\xfc\x11\x3e\x04\x90\xf6\xec\x58\x23\xee\x6e\x2d\xe7\x20\x78\xa7\x66\xfb\xf6\x99\x67\x71\x62\x5f\x2f\xb6\x79\x60\x7c\x8b\x6a\x54\x47\x90\x73\xe4\x11\xee\xc5\x62\x0f\xed\x98\x78\x09\xe0\x23\x81\x96\x18\xce\x89\x13\xc5\xe1\x16\x3b\xfc\x0e\x7e\x93\x5f\x34\x18\x9d\xb4\xf3\xd0\x64\x21\x06\x49\x82\xa5\x6e\x39\xf3\xc8\xe3\xda\x77\xb3\x30\x85\xcd\x1f\xa5\xbf\xe7\x3c\xf5\x96\x16\xf9\x0b\x7f\x8b\x1e\x07\x56\xd6\x4f\x54\x9e\x79\x41\x4f\x97\xce\xa2\x00\x43\x09\x34\xdb\xa1\x76\x8d\x50\xae\xbd\xb1\xef\x1f\x50\x0c\x77\x99\x94\xa7\x85\x9f\xd1\xb8\x9f\xb7\x35\xf9\x2d\x31\x2b\x3c\x73\x16\x01\x59\x3f\xfe\x9c\x8e\xbe\x55\xd2\x4d\x1a\xa7\x4e\xd4\xf3\xfb\x8a\xd4\xf4\xfd\x26\xb2\xb1\x59\x5e\x8e\x7a\x66\x95\x2c\x4a\xf7\xec\x73\xc6\x11\x0a\x92\x70\xc1\x99\x0b\x87\xd1\x6a\x14\x6a\x51\x10\x7c\x1a\xbe\x56\x87\x52\x94\x84\x71\x59\x25\x39\x8f\x29\xb3\x5f\xf2\x2a\xda\xb8\xa9\x5b\x6c\x90\x65\x43\x13\x6a\xa6\xa3\x80\x05\xa2\x41\x8b\xc9\xc0\x22\x3d\x02\x9c\xdc\x57\xb0\xfe\x04\xdf\x47\x1b\x8a\xef\x6e\xa0\x20\xb7\xe7\xf1\x0d\xf0\xfb\x1c\x35\x3e\x3b\xeb\x5c\x6c\xe7\x23\x6b\x56\xaa\x54\xb0\xfa\x41\xae\x43\x38\xca\x49\x55\x52\xdd\x48\xd5\xeb\xdf\x23\x2f\xd4\x34\x78\x94\xa5\xaf\x43\xfa\x17\xfb\xf1\xa2\x92\xa0\xb8\xb8\x59\xb9\x75\x71\x69\xb1\xfd\xca\xe2\x8e\xd6\x57\xf7\xd4\x9a\x9f\xe8\xe7\x1e\xd3\x86\xaa\x6c\xff\x84\x9f\x82\x70\x07\x5b\x14\x05\x7e\x1c\xc4\xe6\xae\x02\x1d\x6d\xa8\x6d\xd1\xe1\x71\x0e\xed\x2c\x69\xa5\xd8\xe8\x27\x54\xf7\x86\x9c\x77\x66\xf5\x91\xa5\x19\xd7\x20\x96\xbb\x6a\x53\x4d\x51\xa7\x47\xbf\x4b\x6d\x53\x65\xc9\x0a\xff\x79\x5e\xe1\x3f\xcf\x2b\x96\x4b\x6c\x5f\x8f\x92\x7e\xc1\xb3\x2c\x14\xf4\x27\x75\x75\x7f\xb2\x51\xd5\xd7\xf6\xfb\x33\xaa\x61\x8e\x3e\x07\xf2\x9b\x9d\x0a\xa2\xd1\x34\xc9\x5c\x6c\x0f\xc9\x7a\xca\x41\x41\xd9\x2a\x8d\x5f\x34\x9d\xd2\xb1\xa5\xf4\x1d\x05\x1b\x76\x2c\x24\xb7\x25\x62\xd3\x63\xf0\x36\x54\x1e\x29\x90\x98\xa4\x98\x51\x72\x35\xf7\x02\x6d\x2f\x42\x7f\x43\x68\x4e\x4f\x2a\x91\xed\x2c\xe1\xb1\x3c\x3a\xb7\xb0\x52\xe1\xeb\x89\x9f\x6d\xa6\x85\x13\x5c\x92\xf1\x40\x6d\x70\xb0\xb9\x9d\xe9\x90\x08\x21\x7c\x01\x5b\x5e\x39\xef\xb8\x76\x6f\x38\x3e\x15\x5b\xf7\xbd\xd4\x1e\x95\x09\x01\x86\xf6\xef\xe6\x22\xf3\x76\xe0\x0b\xce\xdb\x6a\x3e\x9d\x8f\x6c\x18\x91\xb1\x29\xcc\x50\x34\x70\x4b\xf0\x5d\x1e\x7d\x73\x66\xec\x47\x8a\x67\x14\xaa\xde\x94\x79\x91\x99\x38\x32\x48\xe8\x65\xbf\x7b\x86\xe2\x74\xd7\xe9\x85\xf6\x20\x65\x4f\x4e\x20\x07\x7f\x30\x56\xf2\x0f\x3f\x50\x05\xd9\x28\x4b\x47\x36\x8b\xd7\x09\x3f\x85\x25\xf4\x50\x69\xd8\x7e\xa2\x84\x48\x66\x1a\x00\xd5\x36\x1c\xa4\xb6\x66\x76\xc3\xcc\x71\xec\xc4\x7b\xc8\x39\xe4\x9c\x9f\x1e\x73\xbd\xdc\xfe\xbb\x7b\xf6\xbe\xb8\x77\xdf\xcb\x08\xac\xf8\xc1\x3f\x27\xa2\x3d\x5f\xeb\x36\xb1\xe9\x45\x36\x87\xc4\x83\xb4\x44\xab\x87\x00\x1a\xde\x49\x24\x3e\x38\x4d\xa7\xa7\x63\x4b\xe0\x52\xf6\x4a\xd0\x37\x9d\x3b\xcc\x92\x8c\xe6\x59\x4d\x4e\xbc\x9e\xd5\xdb\x46\xe4\x61\x4d\x7f\xdd\x89\x55\x2d\xed\x96\xeb\xa9\x2c\x60\xef\x42\xbb\x88\x4c\x62\x92\xa1\x65\x9e\x16\x23\x32\xe8\x6b\x09\x3a\xa3\x61\x08\x19\xda\x24\x4f\xb3\x7c\x10\x8d\x5a\x9e\xac\xf6\x2d\x45\x56\xfb\x96\xda\x1a\x64\xf7\x9b\x13\xc3\xcd\xb9\xf7\x3a\x90\xf1\x7b\x0a\x64\xfc\x1e\x2d\x2b\x79\x38\xcf\x6a\x3d\x13\xb1\xa4\xa2\xd8\xe6\x34\xe6\xab\xdb\x2b\x1a\xf3\xd3\x70\xf6\x97\x09\x41\x49\x37\x03\xf7\xed\x58\xe0\xe1\x0d\xc7\x14\x97\x3b\xac\x6e\x81\x35\x2d\xa5\x0b\x0d\xfe\x19\x5f\x8f\xb5\x48\x61\x3e\x2a\x0b\xe7\x21\x82\xe5\xf6\x6d\xad\x30\xf8\xed\x26\x43\xf9\x38\x1a\x76\xa9\x05\xe4\xec\x16\x17\xea\x66\x25\xec\x60\xae\xa6\xdc\x26\xeb\x97\x43\x9b\x70\x73\x55\xb8\x8a\xaa\x0c\xfc\x88\xfe\x88\xf8\x59\xf8\xa8\xfd\x57\x4e\xb4\xad\x48\xd9\x84\xcf\x19\x25\x7f\xed\x2b\x1c\xa1\x2f\xaa\x8a\xe5\xaa\xd3\xfe\xcc\x63\x0b\x4c\x87\x86\xab\xca\x10\xf7\x69\x5f\x3d\x30\xf1\x6e\x5b\x2d\xda\xed\xdf\xcd\x79\xd5\x13\x93\xad\x5f\xe0\x9b\x01\x76\xb2\x04\x41\x65\x50\xfd\x74\xc7\xb3\x35\xba\x34\x29\x59\x99\xad\xe3\x35\x9c\xd7\xdd\x35\xd5\x5b\xb9\xa5\x2d\x41\x4e\x4e\x55\x5a\x07\x0e\xb4\x87\x26\x31\x4a\x40\x88\x8f\x9a\xa0\x76\xee\x48\xe6\x6f\x57\x6d\xe2\xd2\x55\xe4\x9b\x37\xf5\x1c\xfd\xa6\x73\x9e\x23\x90\xa3\x60\x91\xbc\x11\x7d\xe0\x15\x08\x8e\x29\x80\x7c\xbe\x62\x47\x45\x14\x9a\x78\xd6\x3b\x2a\x03\x3e\xe9\x2c\x8d\xf6\x0b\x04\x94\xb1\xaa\xfc\x62\x0a\x66\xb3\x67\x5f\xbb\x1c\x11\xe3\x56\xe6\xfc\x5e\x8e\x11\xae\xf3\x42\xf2\x6c\x92\xec\x20\x56\x72\xcd\xe9\xf6\xbd\xff\x97\xb0\x77\x0d\x92\x23\xcb\xce\xc3\x80\xea\x6e\x60\x00\xcc\xce\x7b\x76\x45\xca\x8f\x92\x4c\x7b\xe4\xd0\x7a\x68\xca\x0e\x87\xc5\x3f\x59\x42\xf7\xee\x12\x08\x6e\x4f\x47\xa3\x39\xb3\x9a\xa0\x23\x70\xbb\xea\x56\x55\x4e\x67\x65\x16\x33\xb3\xba\xd1\x08\xff\x50\x38\x6c\x87\x43\xf6\x0f\xd1\x76\x58\xe1\xb0\xc3\x41\x9a\x14\x45\x4a\x24\x25\x71\x49\x5a\xe4\x92\xac\xe2\xee\x72\x5f\xb3\x8f\x99\x9d\x37\xb0\x33\x03\xa0\xf1\x46\x03\x8d\x37\x1a\xaf\x86\x23\xcf\x77\xce\xbd\xa7\x3a\x13\xd4\xaf\xc9\x1c\x74\x55\xe5\xe3\x3e\xce\xf9\xce\x77\xbe\x4f\x3b\xdd\x7e\xe0\x21\x58\x1b\x45\x61\xdc\x21\x6c\x5a\xda\xab\x6b\xce\xe9\xe8\xa9\x86\xea\xef\xf8\x58\x9a\x8b\x7c\xac\xb7\x6b\xe4\xb1\xa2\xe5\x24\xb7\x6c\x68\x29\x36\xfa\xc5\x15\x8b\x02\x4f\xcd\xe9\x56\x43\xe4\x51\x54\x7a\x94\xaa\x09\x00\x4e\x24\x95\x37\xdd\x15\x16\x61\x8e\x03\x7c\x84\xc8\xea\xd3\xab\x75\x47\x18\xb0\xcb\x61\xcb\xc6\x4d\xd9\x63\x9d\x33\x8c\x7b\x53\x1b\x5e\xb5\xb5\x48\x83\xb1\x23\x60\xd5\x3a\xa9\x9a\xa8\x6e\x8f\xd9\x30\xef\x95\x68\x70\x7a\xfa\x3f\x2c\xee\x07\x37\xfe\x76\xe0\x91\x18\x28\x66\xa3\xee\x76\x0d\x9b\x89\x98\x49\xd1\x23\xc7\x2f\x5c\xa0\x95\x15\xe8\xe4\x29\xb6\x6f\x42\x99\x76\x0d\xac\x67\x2c\x0a\xbb\xa1\xf3\x84\xc7\xbf\x19\xd4\xbe\xf8\xda\xd6\x79\x14\x97\x9d\xd8\xdc\xfc\x7e\x47\x5a\x0e\x74\x8b\xfb\x8d\xa0\x98\xe5\x58\x22\xde\x19\x7a\x8c\xe2\xac\xda\xcb\xbf\x85\x26\x00\x7c\x7c\x8a\xd2\x39\x3c\xfb\x35\xed\x1d\xf9\x35\x84\xb3\x8e\x26\xfd\xda\xcc\x02\xc7\xf3\x77\x21\x28\x82\x68\xf4\x6d\x32\x1e\x46\x90\x7d\x02\x6b\x32\x5a\x2d\x77\x8c\xb4\x5b\x64\x40\x4d\x8a\x78\x3e\x6b\x81\xaa\x92\xac\x91\x7d\x2e\x22\xb9\x93\x84\x53\xba\x94\xe8\x0b\x5f\xf1\x4a\xb3\x45\x28\x8c\xc2\xc1\x2d\x55\x04\x5c\x22\x91\x33\x67\xc7\x70\x03\x03\x49\xe4\xac\x9e\x56\x0d\x74\xb9\x89\xd0\xbf\x0c\xec\xe2\xa2\x22\x9b\x5e\xf4\x83\xc7\x74\x8a\xcc\x3d\x83\x78\x2d\xea\x4f\x90\xff\x12\x16\x82\x6f\x84\xd8\xd5\xf0\x52\x1b\x6f\x84\x3d\x5e\x46\x80\xa4\xb2\x0b\x02\x9f\x8c\x19\xbe\x86\x9d\x64\x52\xb5\x6a\xaf\x05\xaa\x49\x8f\x75\x6b\x45\x20\xae\xe6\x9c\x60\xcf\xa8\x56\xb4\x95\x7e\x1f\x33\x9a\x93\x26\xed\xc9\xa9\xb7\xaa\xa6\xe9\x9b\x66\x98\xaf\x4e\x29\x3c\xf5\xa3\x40\xe9\xca\x42\xdc\x1a\x64\x05\x96\x9d\xe6\x7f\x68\xf8\x7d\xf2\x78\x29\x53\x38\x30\x5b\x6f\x27\x69\x53\x04\x6e\x9d\x48\x74\xf1\xc5\xae\x79\x5b\xb5\x16\x8e\xb9\xdd\x26\x47\x6a\xe3\xdd\xba\xc5\x38\x14\x0a\x42\x19\x5e\x9d\xa9\x77\xc3\x4e\xb7\xe6\xbb\x2d\x41\x33\x94\x0d\xa5\xc2\x1e\xc0\x2c\x87\xc6\x2d\xd3\x95\x95\xbb\x0a\xd2\xeb\x4a\x91\x54\xa2\x26\xc1\xf4\x7e\xbc\x15\xe1\xfa\x57\x94\x4a\xa3\x10\x2d\x0b\x58\xcc\x10\x56\xf3\xb1\x22\x24\xfd\xd2\x3f\x78\x8d\xfe\x0a\x31\xe6\x1a\x2e\x84\x4f\x94\xa8\x5f\xd7\xa4\xad\xdd\x3e\x3c\x78\x14\x68\x5f\x64\xca\x23\x45\xb0\xd1\xd3\xa5\xfe\x12\x4f\x1c\x63\xf4\xb2\xde\x45\xfe\x2f\x45\x2a\xbd\xa2\x61\xfc\x30\x6e\x4d\x8e\x89\xef\xab\xdc\xe8\xaa\x72\xfa\xbb\x4a\x1a\x28\xfc\x47\x4a\x55\xa1\x15\x9a\x5e\x12\xb7\xa0\x97\x29\x85\xc6\x31\xc7\x18\x5f\xc5\xef\xda\x30\xc6\xcc\x44\x1b\x06\xb2\x3d\x3e\xae\x62\x79\xb4\xc2\x94\xad\xcc\xaa\x7a\x8e\x64\x1b\xe8\xc4\x66\x45\x34\x9d\x78\xc9\xc1\x5d\x60\x67\x7d\xa8\x2c\x34\x6a\xa5\x5a\x67\x11\x12\x2e\x87\x76\x45\xd2\x00\xc4\x28\xd7\xb5\x36\xf3\x5d\x5d\x1c\xf9\x49\x49\x39\xc1\x39\xdd\xd8\x66\x12\xb7\x76\xf9\x30\x16\x41\x8a\xc3\xe7\x7f\xe9\x17\xbc\x83\xfe\x2f\xca\x4e\xf8\x90\xde\x24\xba\x6f\xfe\x97\xa1\x62\xf9\xdf\x2c\xa1\x00\xc5\xe6\x9d\xb4\xdb\x21\xa4\xc2\xdd\x00\x7a\xb1\xe1\xba\xe6\xff\xe7\xbd\x58\x5d\x81\x66\x3e\x72\x95\xe6\x66\x12\xe7\x61\xec\x33\x45\x0c\x9c\x0b\x18\xcf\x7c\xa2\xf8\x8a\x2c\x48\x1e\x77\xd0\x9a\x89\x12\xe3\x9b\x34\x80\x44\x0c\x5b\x75\x40\xfd\xc8\x6d\xc7\xc6\xe6\x36\x8d\x0d\x89\x44\x09\xd0\x57\x73\x22\xab\x77\x86\x7e\xf9\xfc\x13\xe5\x2c\xdf\x33\x91\x6d\x03\xd0\xac\x29\xe9\x54\x78\x87\xf1\xf1\xd0\x77\x1f\x2f\x27\x21\xef\xe2\xc8\x9b\xee\xe1\xe5\xf0\x49\x45\x2a\x19\x59\xd3\xda\xa5\xbc\xc4\x90\xb3\x8a\x09\x84\x37\x2a\xbd\xa3\x14\x39\x90\xa7\x83\x85\xc5\x6d\xcb\x12\x94\xe8\x95\x2b\xee\x64\xcf\xd1\x06\x2c\x6a\x22\x2a\xc9\x3a\x41\x5f\x8d\xa0\x94\xa3\x5c\x3c\x87\x37\x75\xb4\xf5\xa3\x40\x05\x24\xbc\xdb\x63\x55\xbe\x11\x78\x39\xee\xf7\x28\x07\xc2\x3a\x7a\x96\x18\x3b\xe2\x1d\xab\x24\x7b\xae\x61\x33\x16\x5e\x86\xa2\xb7\x9e\x67\x40\x0e\x6b\xc7\x71\xda\xff\xb5\x88\x26\xb6\x96\x6b\x0a\xc1\x7a\x08\xbc\xc8\x8b\x3e\xba\x97\x95\xa4\x79\xc7\x74\xec\x1e\xda\xd2\x59\xf9\x53\xf1\x8a\xaf\x0e\x7d\xfd\xf3\x1d\x7a\x83\x42\x04\xa3\x27\x80\xa7\xce\x8d\xd2\x28\x32\x6c\x0d\x15\xfa\x5a\x6b\x28\x16\x17\x33\xc9\xf8\xc4\x35\x32\x75\xad\x69\x65\x53\xbe\xc2\xf5\x00\x5f\x0d\x56\xf4\xd6\x50\xf9\x7d\x1c\xc3\x00\x17\x8f\x77\xfa\x6a\xfa\xd1\xdf\x7c\xa6\x51\x85\x23\x26\x45\x06\x93\xb6\x14\xab\x8c\x5b\xdb\xf9\x44\x59\xdb\x10\xe1\xb6\x49\x9b\x0a\x02\x08\x21\x6f\xfb\x9a\xfc\x46\xb0\x5d\xb3\x66\x66\xc1\x69\xc1\x74\x93\x04\x3a\x8c\x8e\xaa\x5c\x3c\x6f\x29\x86\xd5\x94\x34\xcc\xf3\xca\xfa\xab\x98\xfb\x36\x6e\xae\x6a\x1f\x2c\xfa\x63\xa9\x7e\xbd\xe8\xa9\xa8\x61\x96\x27\xa9\x98\xf4\x7b\x33\x99\x3f\x56\x11\xdf\x1f\xeb\x3a\x0e\xf1\x45\xf7\x68\x7f\x13\x5c\x93\xf8\x31\xa8\xca\x21\x37\x4f\x8a\x44\x95\xaf\xd1\x5c\xa1\xdb\x17\x23\x20\x7a\x13\xc0\x8a\xcf\x80\x7a\x20\x3e\x0f\xb4\xc1\xf3\xbf\xf8\x76\x99\x30\x1a\xe4\xc2\x3e\x40\xad\xf4\x27\x63\x8d\x3b\x4a\x64\xf1\xff\x2b\xb5\xc2\xcd\xbd\x72\xa8\x6e\xfa\x7d\x93\x9a\x5c\xcb\xf0\xbe\xab\x82\xf7\x77\xdd\x4f\x29\x91\xed\xd7\xf9\x36\xae\xe9\x59\xc9\xac\x24\x29\x7a\x57\x54\xb3\x7b\x83\xac\x58\x87\x11\x51\x00\x64\xbe\x45\x17\xcb\xc7\xa5\xcc\x6b\x6e\x7e\x0e\x76\x9e\x9c\x79\x61\x2d\x78\x27\x50\x0b\xc3\x3b\xda\xa5\x64\xc9\x3e\x5d\xcc\x73\xec\x8d\x1f\xd1\xde\x8b\x04\xef\x1e\x2e\x14\x73\x7e\xdf\x48\x15\x5b\x77\x8d\xbc\x6e\xda\x1e\x6a\x71\x77\xc5\xaa\x03\xbc\x5a\x9e\xfd\x8f\x40\x08\xc1\x6c\x7b\x34\x54\xa5\xe6\xa7\x94\xe0\xca\x35\xa6\x2a\x63\x59\x7b\xa8\xd4\xc4\x6e\xe9\x5a\xc9\x5f\xd2\x64\x47\xae\x05\xd5\x5c\x26\xd4\x55\x59\xa6\xb6\x07\xde\x7c\x42\x6c\xf4\x75\xc7\x72\xe9\x81\xbd\x72\xa8\x9e\x0e\xbc\x74\x01\x22\xc7\xf7\x55\xd3\x07\x22\x4a\x51\x68\x73\x7d\x8e\x61\x7e\x74\x75\xc2\x53\xbc\x11\xc3\x08\x1a\x47\x8f\x4b\x28\x84\x15\xed\xb5\x1d\x9b\x23\x34\x06\x4b\xe6\x42\xa0\x24\x2b\x10\xe7\x8b\x27\x9c\xb6\x7a\x54\xe4\x9b\x46\xb9\x98\xf5\x7a\xbd\x05\x1d\x4b\x2f\xf4\xf2\xa6\x92\xdd\x7b\xd3\xd5\xd2\xb3\xbe\xc9\x7a\x63\x1e\x56\x1f\xa8\x6a\xf0\x07\xa5\xc0\x83\x9c\x78\x2d\x8d\x79\x09\x6e\x9d\xc1\x93\xb3\xf4\x3a\xa1\x7a\x0b\xe2\x64\xa5\x6b\x53\xb0\xcd\xb0\x11\xb3\x44\x27\x9f\x28\x34\x17\xbb\xa1\x6b\x9c\x3a\x30\xeb\xac\x71\xcb\x61\xc9\xa1\x7a\xd6\x4c\x4d\x6f\x31\x82\x58\x93\x20\x51\xf4\xcd\x58\xdf\x90\x37\x8b\x59\xe8\xb3\x8a\x66\x1a\x45\xa6\x9f\x71\xa1\x75\xcc\xe2\x96\xf5\x76\x87\xfe\xae\xfe\x89\xa6\xbb\xb3\x2c\x31\xfb\xfb\x38\x1c\x2a\x4f\x6d\xf1\x14\x1d\x61\xdf\xf5\x8f\xbb\xc6\xdc\xb2\xe7\xd0\x81\xd9\x7a\x27\x2a\x46\x8d\x16\xd1\xa5\x4f\x88\xa0\x6e\x05\xa4\x94\x0d\x7a\x3d\x9b\xb6\x93\x68\x69\xd2\x8b\xb7\xff\x29\x8d\x68\xe7\xf3\xa3\x34\x8f\x94\x94\xca\xa6\xe7\x4e\xd8\xd5\x84\xf5\x93\x45\xae\x44\x79\xa7\xd4\x46\xde\xd7\x7b\xa2\xe1\x7b\xad\x63\xdb\x49\x72\xe4\x33\xd9\x6e\x25\x6c\xa5\xe5\xa1\xdf\xa4\x1a\xa8\x53\xbc\x72\xdb\xf0\x7d\x3c\xc2\xb1\x9e\x5f\xec\x1d\xb7\x55\xe1\xfa\x82\x6a\x0d\xb0\x26\x5b\xdd\xed\xe1\x89\xef\x0d\x95\xbc\x0b\xe4\x9e\x65\xb7\x53\x6d\x0b\xbf\xaf\x29\x94\xf7\x18\x89\xc0\xdd\x03\xfc\xc3\x66\x7d\xbe\x54\xd4\x29\x56\xc9\xa5\x38\x59\xa1\xac\x0b\xf3\x77\x1d\xbf\xc8\x27\x4a\x78\xce\xf6\x88\x02\xae\xdc\x1d\x4f\xaa\xa2\xc2\x49\x47\x6c\xe8\x35\x5b\x49\x6c\x22\x6c\xeb\xd2\x2e\x45\xd7\xc7\x27\x5a\x8f\xa4\x9f\x1a\xf6\x22\x13\x5e\x9e\xa2\x91\x6d\x8c\x6b\x08\xd2\xd3\x63\x55\x9f\xa1\xf2\x6b\xb8\xa1\x6d\x73\x97\x1d\x3e\x85\xb9\x04\x0c\x99\x8f\x4b\xf7\xff\xda\xcc\x42\x11\x62\x6d\xf3\xf5\xa0\xeb\x11\xf5\xaa\x8a\xda\x60\x3a\xe8\xb1\xef\xb1\x07\x3d\xce\xe0\x8a\xa4\x4e\x58\x49\xf5\x89\x57\x6b\x8a\x7a\xfc\x03\x35\x4e\x7e\xa0\xd8\x8a\x59\xd8\x35\x71\x32\x58\x9a\x50\xee\xc3\x1b\xc3\xda\x97\x67\x78\x45\x40\x8b\x8e\x48\x88\x2a\xb1\x7d\x27\x37\xe9\x14\x3c\xd1\x49\x8f\xec\x84\xe1\x57\x46\xc0\x5c\xd3\x66\x6e\xb2\x0c\x55\x07\x84\xbe\x20\xd1\xf1\xf1\xf0\x71\x7d\xf4\x36\xcb\xc3\x9e\x11\x3f\x4f\x64\x53\x4f\x37\x94\x08\x06\xcf\x40\x0c\x4f\xd6\x72\x15\x75\x0e\x25\x00\x25\x9a\xff\x35\x55\x21\x1d\x6b\x7b\xd2\xd1\x7f\x12\xb5\x77\x6b\xd7\x70\x54\x01\x1d\x88\x51\xfc\x38\x36\xa7\x7b\x98\x68\x7c\x32\x54\x38\xcd\x5b\xc1\x58\x87\x96\xea\xc3\x55\xda\x26\x36\x8a\x06\x91\x49\xb1\x46\x8a\x7c\xbd\xaf\x0f\x3c\x4d\xb9\x0a\xb6\xfd\xa9\x91\x5a\x40\xde\x0b\xbc\xb5\xef\x86\x5a\x74\xc9\xcc\xb9\xc9\x46\xf7\xe2\x4c\xe5\x3b\x59\x2f\xa8\x64\x2b\x4d\x22\xfb\x84\xc2\x42\xb9\x47\x03\xb8\xfb\x7d\x85\x96\xdd\x24\xe5\x32\xfe\xff\x7a\x9a\x7c\x80\x65\x89\x29\x18\xf4\x32\x55\xef\x8e\xac\x04\xa7\x9d\xda\xbf\x8d\x73\x9b\xe6\x26\x8c\x25\xa1\x27\xf6\xd9\x9f\xc0\x46\x02\xa9\xea\x43\x7c\x25\x56\xc6\xc9\x91\x9f\xbd\xab\xc9\x20\xee\xa0\xfd\x4a\xf0\x05\xbc\x1f\x34\xf2\x80\x32\x2c\x22\xab\x74\x57\xd8\x71\xa0\x05\xe0\xfc\xe0\xfc\x56\x74\xac\xaa\x49\x6d\x71\xd0\x31\x8b\x49\x82\x3a\x3c\xe7\x64\xca\x97\xe1\xec\x18\xb0\x97\xac\x32\xdb\x1e\xaf\xe4\x16\x42\x5f\x3e\x71\x00\x46\x98\xf5\x4c\x18\x85\x35\x4f\x38\x60\x43\x22\x3e\x51\xd8\xe6\x20\xb3\xd9\x5e\x2d\x1d\x74\x6c\xa8\x1c\x14\x90\xc3\x39\xb7\xc3\x62\x11\x91\x26\x14\x8a\xee\x5c\x77\xca\xab\xfb\xbd\xbf\xa8\x53\x70\xf8\x2b\x3d\x1a\x59\x72\x0b\x37\x75\x51\x43\xc0\xc7\xfd\x75\x17\x2f\x2b\xec\x29\xb7\xdd\xb7\x95\x03\xdf\xdb\x6e\x57\x7e\x63\x90\xe5\x61\xdb\xcb\x2a\x38\x10\xcb\xc5\x53\x1e\x7f\xef\xf6\x92\xb8\xc3\xb8\x29\xe2\xbc\x4d\xdd\xdc\xbb\xe9\x7e\xbc\x9d\xa4\xb6\xc7\x11\xb8\xec\x0e\x3e\xec\x5b\x57\x18\x97\x59\x31\xab\x7b\x08\x9c\xc6\x98\x59\x1b\x02\x63\xe7\xb3\x60\x8c\x21\xe9\x13\xcb\x53\xc0\xd3\xa5\x66\x4a\x4f\x00\x0f\xed\x5f\x63\xf4\x20\x12\xb9\xaf\x14\x60\x26\x08\x24\x05\x48\xf6\xb0\xba\xf9\x9a\xd4\xb4\x5c\x1d\x0b\x35\x3a\xc1\x63\xfc\x6b\xce\x93\x95\x78\xca\xe7\x87\xb7\x15\xdc\xfc\x3d\xaa\x16\x38\xeb\x67\x17\x02\xef\xa4\x90\x9f\xff\x46\xd5\x0c\x9b\xdd\x30\xea\x99\x74\x89\x9f\x29\xf6\x91\xbf\xd0\x92\x88\x7f\xe1\xd5\x4e\x4d\xd6\x32\xbf\x52\xf3\x51\x0c\x0b\xd2\xf0\x49\xa9\x56\x4c\xf2\x60\x59\x98\x92\x76\x9b\x87\xe6\xae\xa9\x46\x4f\x74\xb3\x63\x48\xde\x73\xb5\xb3\x76\x98\x1f\xcd\xc2\x5e\xaf\x48\x9f\xc7\x25\xee\x55\xcf\xee\xc5\xaa\xdf\xcb\x62\x93\x37\xbb\xde\x30\x15\x2f\xe4\xc7\x5a\xa9\xf7\xc7\x8f\xe5\x4b\xe4\x66\xc9\xa2\x85\xb7\xf8\x6b\x3c\x2b\x48\x60\x63\xd5\xdd\x45\x42\x4b\x28\xd1\x5c\x55\xac\xd0\x41\x2c\x1d\xb6\x2d\xdd\x98\x7b\x86\x5e\x3d\x1f\x57\x76\x9d\x27\x83\xd4\xb9\xa0\x8b\xac\x1d\x4d\x32\x3e\x29\xe5\xb1\xd3\xd3\xf5\x24\x0d\x6d\x9c\xb3\x3f\x19\x56\x80\x4d\x4d\x14\xdc\x54\xc2\x3b\x3d\x13\x0f\xda\xa6\x99\x0f\xa4\xe5\x01\xe8\xf4\x0d\xcd\x0e\xbf\xa1\xd0\x5a\x1b\x77\x25\x17\x19\xf3\xb6\x3c\x24\x27\xa5\xd4\xed\xa5\x97\xea\xdd\x24\xcd\x13\xe6\x02\x20\x6b\xff\x1d\x9a\xba\x7c\x5c\x0a\xa8\x0f\x1f\xae\x47\xe1\xa2\x4d\xcd\x84\x17\xa4\xfc\xf5\x93\xd4\x52\x89\x2c\xe9\x56\xa0\xbb\x47\x5e\x50\xe9\x40\x9c\x25\x51\x48\x3d\xc0\x13\xde\x8c\x1b\x85\x3a\xb1\xf2\xd4\xd0\x33\x19\x16\x4c\xea\xe7\x34\xe6\x87\xe9\x1c\x6f\x47\x98\xe3\xf2\xfc\xb6\x03\x33\x45\xd8\xb5\x98\xc4\x2d\xb6\x29\xd7\x4d\x7f\xcc\xee\xe7\x13\xb7\x29\x47\x61\x96\x47\x52\x12\x12\x5d\xd2\x9a\x73\xcc\xba\x87\xe5\x16\x48\xc8\x45\x6d\xc6\xf6\x85\x19\xf0\x9e\x45\x79\x4a\x4d\xaf\x6b\xe5\x96\x8c\xf9\xb9\x7a\xd6\x35\x7d\xce\x1d\x11\xcf\xb3\xb8\x17\x9f\x28\xd6\xbc\x19\xb4\xc2\x64\x92\x36\x68\x66\xac\xd0\xd3\x90\xee\xd8\xe2\xea\x9c\x11\xd4\x01\xcf\x5e\xad\xe8\xbb\x67\xd5\x28\xad\x5b\x7d\x5b\x11\xe9\xaf\x28\x92\xc1\xc7\x6e\xe1\x6e\x47\xd6\x64\x14\xb8\x8b\x8b\xb6\x6a\xa6\x39\xa1\xca\x6e\x6d\x13\x35\x8b\x74\x75\xde\x1b\x8a\x78\xe6\xd0\xc9\xd2\xf5\x1c\x98\xad\x67\x83\x38\x0d\x33\xab\xaa\xec\xd7\x54\xed\xf6\x5a\xe9\x23\x87\x0f\xd7\x9b\xd1\x20\x17\x49\x14\x97\xad\x78\x2b\xb2\x62\x21\xd2\x7c\xbe\xcf\xd7\x5f\x9b\xd3\x04\x62\x60\x26\x52\x27\xde\xe7\x9f\x71\xeb\x89\xe2\x1f\x9c\x9c\x41\x31\x50\x10\x1b\xfe\x30\x18\x2b\xa2\xd3\x3b\x72\x8d\xad\xc5\xa6\x2f\x19\x3d\x0d\x6c\xe9\x6c\x1d\x97\x67\x50\x5e\xe5\x5e\xb6\x29\xb7\xec\x75\x8e\xb2\xf3\x07\x1c\xd3\x48\x2f\x84\x02\xbb\x9e\xa2\x11\x38\x66\x70\x09\x6c\x67\x5f\x89\xfa\x54\x6c\x45\xbd\x01\xeb\x6e\x00\x64\x1f\x29\x67\xe2\x51\x85\x10\xe4\xa1\x7a\xd6\x85\x92\x93\xd0\x05\xe9\xe2\x05\xa7\x54\x5a\xac\x7f\xae\x55\x37\x21\xa7\x04\x32\xa2\x54\x8f\x3c\xad\xf5\x11\xfd\xa8\x16\x7c\xe4\xff\x5f\x04\x84\xe3\x2f\x68\x7e\xff\xfc\x5e\x0d\x71\xd0\x0c\x13\xf7\x01\x0a\x75\x9c\xb1\xdb\x01\x07\xd9\x28\x2b\x81\x8b\xca\x54\xee\xcd\x40\xf9\x83\x7c\x1f\xbb\x39\x56\x7d\x8e\x74\xb4\xf0\xa7\x94\x0a\xb4\x18\x1c\x75\x52\x86\xb9\x8d\x56\x27\xbd\x9d\xef\x1e\xf4\x1c\xb1\x85\x07\xbe\x08\x0b\x1e\xfc\xd9\x85\xfb\xf0\xbc\x5e\xf0\x96\x6d\xec\xd4\x6c\x58\x2d\x14\x8b\x82\x48\x87\x96\xb1\xb4\x43\xf5\x6c\xc5\x9a\x1c\xe3\x15\xa0\x0a\xd2\x4a\x3e\x56\xeb\xcd\xa1\x30\x9e\x54\x03\xe1\x01\x46\x9f\x68\x3f\xfb\x8a\xce\x0f\x94\xc5\xdf\xa9\xe1\x67\x15\xcb\x0a\xae\x41\x04\x37\x50\x35\x08\x88\xc6\xe6\x58\x3b\x30\xc5\x56\x22\x28\xe9\xdf\x7d\xd8\xeb\x27\x69\x9e\x91\x68\x09\xf2\xe4\x1d\x8d\xda\xf4\x34\x97\x07\x58\xbb\x0e\x51\xc2\xc5\xa1\xef\x43\x66\x8a\x00\x32\x83\xdb\x04\xae\x49\xb0\xa4\xae\x1e\x5d\x72\xa8\x4d\x9e\x0d\x3c\xec\xbe\x56\x92\xe3\xa7\x3a\x62\x49\x8e\x1f\xbf\x75\x4b\xf5\xb7\xe9\xa2\xcf\xc5\x12\xd8\x46\x44\xe3\xa5\xd5\xac\x99\x1a\x72\x12\xf4\x4d\xa0\xdf\x1e\xfa\xb2\xf2\xb7\x95\xbc\x63\x91\xc8\x3f\x55\xdc\xaf\xeb\x4e\x73\x0c\xf9\xbb\x8c\x89\x60\x6b\xbc\x40\x68\x8d\x32\x60\xfe\x12\xe7\x1f\x54\xce\x93\x64\xe4\x99\x86\xef\x47\xf9\x6c\xc3\xd3\x9f\x58\x69\x16\x79\x6e\x6d\xa4\x1a\x99\xae\xd2\xb3\x63\x32\x2d\xc8\x23\x58\x77\x1e\x69\xc3\xb2\x3f\xa4\xb1\x89\x20\xa6\xec\x2f\xee\x3b\xd3\x62\x76\x13\x12\xa3\x2e\x0f\x49\xaf\x57\x41\x6a\xff\xae\xc6\x20\xe7\x4a\x91\x9b\x28\x4a\x62\x91\xa4\xaa\xfc\x5b\x3f\x9e\x5f\x9e\x7d\x79\xd2\xcb\xa0\x9f\x1a\xea\x0c\xa2\xb8\x8d\xb1\xe6\x38\x2c\xdf\x93\x8d\x0a\x2b\xe9\x22\xdf\x52\x99\xc3\x79\x95\x39\x94\x51\xa9\x83\x07\xeb\x24\xbc\x0b\xea\x26\x2e\xea\x9f\xd2\x84\x13\xbb\x34\x05\xd7\x9c\xf5\xae\x80\x2f\xb5\x56\x56\x61\xe0\x27\x09\xe9\xdb\x81\x2f\x78\xbf\xed\x10\xaa\x76\x94\x90\xb2\x1e\x06\x26\x26\xd8\x5b\x8a\x96\xac\x05\xaa\x4e\x3a\x5a\x4a\x33\x89\x06\xbd\x38\xcc\xc0\x69\xc3\xba\x7d\x42\xf9\x79\x9d\x28\x0d\xe1\x85\x57\x74\xbc\x48\x5b\x35\xab\xd8\x04\x63\x92\x36\x3e\xc2\xe2\x56\x2d\x55\x6d\xde\xd9\x18\x67\x92\x1f\x3c\xc8\x68\xe2\x75\x05\xfd\xf4\x4c\xda\x49\xa2\x90\xeb\xb9\x58\x0f\x7f\x4b\xd9\x1b\xfd\x96\xc2\xa4\x93\x41\x1e\x25\xc9\x12\xc9\x2d\x23\x7b\x00\xb7\x86\x8f\x55\xcd\xad\x99\x24\x7d\x9b\x92\x7f\x62\xa6\x4d\x48\x6e\x28\x52\xc0\x8d\x12\xa8\x5f\x84\x0f\x4c\xcb\x60\xb1\xf7\xa1\x82\x97\x3e\xd6\xfd\xdd\x69\x62\x5a\x1c\x32\x88\xc3\x4a\xcd\xd9\x41\x9d\x55\x5c\xbe\x64\x31\xb3\xd4\x30\x0c\x26\x25\x96\x5d\xce\x10\x59\x27\x64\xe8\x59\x0e\x77\x02\xcf\x09\x6a\x15\x61\xfa\x17\x5f\xf3\xcd\xc2\x07\xbc\x96\x72\x45\xfe\xb0\x6c\x9a\x4d\xe1\xb8\x8b\x0e\x83\x8a\xd6\xd7\xc7\x94\xdd\xd2\x65\x62\xeb\xb9\x82\xd4\x65\x5a\x56\x5c\x07\x84\x0b\x2e\xee\x2b\xa8\xf7\xa3\xc0\xd7\x31\x76\x8c\x7c\x97\xd1\x52\x98\x36\xbb\x8b\x36\xed\xc8\xa8\xd7\xed\x3f\xa2\x70\x44\xcf\x11\x85\xf7\xcd\x52\xc0\x30\xb3\x50\xef\xa4\x61\x4b\x3f\x21\x14\xe3\x50\xa0\x46\xf1\x46\xaa\xa6\x82\xfe\x2d\xa6\x89\xe4\x75\xac\x55\x1a\x28\x81\xed\xd3\x15\x52\x27\x87\xea\x83\x7e\xd7\x9a\x65\x08\xda\x4a\x62\x06\x4e\x0c\x1f\x2b\xcc\x38\xef\x86\x69\x0b\xc0\x97\xec\x16\x4a\x6d\x6b\xad\xa2\x97\x73\x96\xc9\x46\x2e\xcd\x86\xbd\x09\x1f\xbb\xee\x9a\xd6\x20\x6f\x76\x27\x71\xe5\xcc\xe7\x56\xca\x45\x30\x92\x72\x6a\x13\xae\x6b\xea\xca\x0b\xbe\xaa\x1d\x92\x8d\xba\xc3\xc6\x99\x2c\xc6\x27\x55\x74\xf0\x3c\x35\x24\xe6\x50\xf3\xd2\xb8\xc1\x58\x4b\xe5\xe3\x9a\x8c\xc3\xcc\x18\xd8\x20\x39\x6c\xc8\x3b\x53\xac\x97\x68\x38\x0b\xaf\xd4\x17\xd3\xd0\xb6\x69\xbd\x70\xfb\xad\xdf\x7b\xbd\xf1\x3e\x0b\x67\x16\x5f\x26\x8a\x22\x6a\xab\xbd\xa4\x05\xa8\x92\x34\x6f\x27\x51\x98\x20\x61\x60\xaf\x26\xc5\x10\xbb\x38\x7c\x51\x07\x49\xd4\xf1\x86\x5a\xbb\x63\x7a\xad\x29\xe3\xd6\xb5\x2a\x3b\x93\xc5\x24\x59\x5a\xb2\xb6\x2f\x48\xa2\x93\xb5\xf7\x59\x0d\x1c\xf5\x80\x7b\xde\x52\x46\x49\xb6\xe5\xf3\x1f\x94\x9f\x11\x5b\x63\x72\x4f\x8d\x3c\xe2\x7d\x43\xc5\x3b\x91\xed\x98\xa8\x88\x08\x9d\xfc\xf7\x4f\x28\xac\xc1\xca\xb9\xa3\x41\x61\x92\x98\xee\x14\xa3\x08\x68\xd2\x69\x07\x69\x65\x91\xe9\xf5\x00\x31\xcc\x79\x29\x26\xaf\xb4\x5f\x6e\xd9\x2b\x82\x41\x93\x35\xd3\x70\x51\xf8\x4b\xa2\xf5\xa3\xaa\x13\xcc\x5f\x12\x01\x56\x8f\x77\xdb\x5f\x19\x84\xfd\x9e\x8d\xf3\x27\x94\x4a\xd4\x24\xe2\x32\x91\xe6\xa6\x7c\x12\xb3\x1f\x32\xd4\x7c\xac\x99\x46\x08\x5a\xb6\x08\x60\xdd\xba\xae\xcd\xfd\x26\x9d\xb4\xea\xa2\x8d\x2d\xb8\x4b\xc4\x10\x47\xc1\x6b\x97\x12\xb6\xe6\x82\x8a\x93\x3b\x52\x9a\x0d\x8a\x37\x79\x5e\x2b\xf7\xc2\x7e\x19\x64\x10\x00\x38\x0f\x28\xc8\x42\x6e\x74\x81\xf0\x6f\x3e\xd6\xdd\xcb\x0f\x94\xcf\xec\x93\x0d\xbf\xc1\x98\x34\x0f\x71\x89\x11\x6a\x81\xac\x7b\xa0\xbc\x77\xce\x28\x2c\x25\x0f\x3b\xdd\x5c\x42\x41\xa7\x15\x55\x2c\x77\xa2\x14\x5e\x11\x48\xa4\xe1\xb2\x89\xb0\x28\x3a\x29\x0f\x57\xff\xfb\xb6\xd2\x16\xff\x49\xa0\xac\x76\xd0\x60\xd0\x22\xb5\x53\xce\x22\xf0\x62\x24\xa5\xa0\xbb\x73\x79\xe4\xf4\xb4\xcb\x23\x7d\x38\xfa\x86\x39\x7a\x14\x23\x4b\x1a\xba\x6b\xbe\xb9\xdb\x2d\x64\x8b\x51\x18\xb7\x94\xe4\x10\xba\x69\xf8\xb8\x4a\xf3\x81\xf6\x9d\xa6\x60\x5c\x48\x5a\x2e\x8e\x89\xdb\x57\xc1\x78\x87\x48\xe2\x25\xb5\x39\x43\x1b\x4e\x95\xc4\x2b\x94\xe8\x3e\x79\x5b\x84\x47\x03\xd9\xf6\xd9\x1f\x4a\xd5\xc6\x37\x4a\x57\x36\xb3\xc0\x52\xef\xc5\xc6\xe0\x35\x85\xd0\x18\xcc\xc7\x55\xcd\xe9\xed\x30\x8f\x6d\x86\x2d\x82\x33\x42\xca\xcb\x25\x3b\x7c\x56\xa5\x46\xed\x30\xb6\xe9\xaa\xd2\xfc\xdd\x18\x73\xa1\x7b\xca\x81\xaa\xf9\x20\x65\x38\x0f\xb0\xed\x35\xed\x9d\x7d\x4d\xf5\x27\x9b\x38\xc9\xbb\x36\x7d\x9e\xde\xad\x6a\xa1\x7e\x9d\x03\xa7\x4f\x68\x78\xcb\x00\x29\x46\x83\x63\xea\x7a\xe9\xc1\xb7\x69\x6d\x91\x56\x59\x9a\x8c\xb2\x54\x13\x10\x81\x8c\xef\xe3\xa0\xf6\xd2\x4b\x4e\x0d\x89\xa6\x1e\x56\xba\x5a\x03\x2f\xcf\xd9\x9f\xcc\x0a\xd5\xee\x41\xa0\xbc\xa8\xf7\x8e\x94\x73\xcc\x5d\xca\x34\xb0\xb3\xbf\x15\x28\x85\xe7\x75\xa4\xe9\xfc\x57\x5a\x66\x11\x46\x8b\xc8\xe5\x76\x8c\x3e\xa3\x94\x9e\xd2\xec\xc9\xe2\xdb\xd0\x64\xfc\x57\x40\xd2\x44\xc6\xdf\xfb\xf0\x7d\x3d\xd0\x72\x4e\x43\xe5\x89\xc1\xdd\xc5\xf8\x97\xdf\xc0\x50\x84\xb2\xc7\x97\x9c\xad\x79\x71\x53\x48\xbe\x6e\x05\x8a\xe4\xcc\x06\x85\x8e\xf1\xea\x94\x2f\x6e\xa8\x1c\x64\x71\xc0\xbe\x5a\x12\xf7\xf9\xd4\x7b\xbd\x04\x9f\xce\xbd\x72\xa8\xde\x4a\x8e\x5a\xd4\x29\x64\xb4\x2a\x37\x93\x0d\x35\xcf\x57\x92\xa8\xdd\x31\x52\x25\x41\xe4\x86\xd5\x87\x8f\x5d\x45\xa5\x9f\x34\x97\x6c\xbe\x48\x81\xb3\x9b\x32\xdf\x0a\x3c\x07\xe7\x5b\x43\x1f\x9a\xf4\x7a\xab\x2a\x82\xff\x06\xfd\x95\x38\x3e\x14\xc1\xa8\x48\xdf\x96\x31\x9f\xb9\xba\xe1\x62\xe8\x58\x62\x25\xf5\x1b\x49\x45\x4c\x6c\xa2\xd5\xa3\xae\xbc\x83\xdf\x41\x5d\x98\x8f\x2b\x7a\xe7\xea\xbd\xa4\x45\x42\x0b\x35\xcf\x4c\x06\x8c\x21\x0e\xb7\x2a\xb8\x15\x00\xd0\xe5\x41\x10\x4f\xe6\xe3\x86\x84\x20\x2d\xd3\xeb\xb3\x98\x13\xc2\x99\xf3\xaa\xb5\xf1\x7c\x09\xf7\x2d\x6e\xb0\x99\xf4\x7a\x36\x2d\x16\x7d\x5e\xc2\x5c\x47\x6e\x31\xbc\x44\x80\xbc\x02\x94\x6c\x87\x71\x64\xe2\xd6\xa4\x4f\x6b\x3e\xa1\xe1\x09\x14\x8a\x69\xdd\xe2\xda\x8a\x29\x05\x68\xee\x9c\xea\x32\xeb\x0f\x28\xd2\xa8\x15\x4b\xb6\x94\x42\x6b\xce\xa0\xf2\xb4\x4a\xc5\xba\xc9\x8a\x5d\xb6\xe9\x5e\xe5\x27\x7e\x55\x51\xef\x6e\x2a\x71\xe3\xeb\x4a\x77\xe8\xb6\x72\x17\x60\x76\x25\x26\xf3\x27\x98\x25\x78\x82\xff\x8c\x52\x05\x00\xf2\x6c\x70\x87\x59\xbe\x39\x54\x7d\x42\x55\xdc\x9f\xb9\x7a\x3f\x32\x71\xbc\x0d\x56\xd9\x50\xb4\x9d\x39\x3c\x09\xd1\x29\x53\xfd\xf1\x3d\x1b\x45\x99\xa2\xbf\x6c\xa8\x25\x01\x01\x12\x00\xfb\xad\x2a\xe1\xfb\x5e\xd8\xca\xc2\xa3\x45\x6e\xea\x80\xe0\x3b\x34\x7a\x30\x93\x39\x9a\xc0\x85\x7f\xaa\x82\xb4\x9e\x49\xc3\xbc\x08\x42\x5e\xdd\xef\xfe\xb4\xe6\xba\x77\xbf\x43\x0b\x2c\xf6\x07\x60\xcc\xfc\xff\x69\xb1\x45\xd0\xf8\xa7\x15\x24\xe3\x66\x34\x58\xac\xf9\x3b\x81\x0c\x04\x1f\x57\xf0\xb6\x66\xea\xf6\x48\xdf\xa6\xa1\x8d\x59\xe4\xc0\xc1\x95\xce\xf3\xe3\xca\xf0\x3f\x2e\x4f\x99\x66\x37\x4a\xd2\xa4\x1d\x0d\x92\x34\x69\x9a\x74\xd1\x49\x56\x49\x70\xa4\xe4\xae\xcf\xab\x1a\x60\xcf\xa4\xab\xc5\x60\xad\xd5\x94\x6a\xb7\x0a\xe0\x2e\xa9\x3d\x68\x31\x35\x4d\xd7\x55\x29\x92\xcc\xb4\x08\x8b\x26\xf3\xf3\x25\xb7\xc2\x2f\x7c\x05\xd9\x17\xa2\xf1\x4f\x11\x01\xf2\x49\x95\xa7\x50\x27\x91\x80\x01\x23\xf6\x44\xa0\xbc\x08\x4e\xb8\x74\x30\x0a\x7b\x28\x96\xe2\x45\xfd\x48\xbd\xdf\x1f\x95\x72\xb5\x99\x85\x7a\x6e\xe3\xb1\x24\xea\xfb\x6a\x2e\x7d\x5f\x35\x9f\xa6\x36\xa2\x4e\xdc\xe2\x37\xb1\xcd\xdd\x53\xe4\xef\x2b\xaa\xa1\xe2\x8c\x13\x8b\x32\xb1\xcd\xf2\xae\xcd\xc9\x97\x82\xee\xcf\x55\x70\x7d\x35\x37\xf8\xdb\x8f\xc9\xb9\xd8\x9b\x22\xf4\xf5\x4e\x6e\x16\xd3\x4a\x53\x6f\xab\xd8\xb6\x9f\x26\x6f\xd8\x66\x0e\x0b\x50\x40\x78\xec\xd5\xe6\x7c\x78\x5c\xb5\xaf\x46\x51\xb4\x73\x03\xf4\x6a\x54\x1c\x39\x63\xf3\x3c\x49\x2b\x04\xc6\xc6\xf7\x89\x03\x2e\xfa\x97\xca\x1e\x3b\x51\xd1\xaf\x93\x41\xf0\x92\x08\xa5\x2d\xe2\xf0\xe1\x7a\x3b\x49\x7b\x54\x16\x40\x5c\xc1\x86\x76\xec\x5b\x8f\xcd\x55\xd0\x0a\x05\x7c\x0b\xd3\x26\xd3\x3a\xe6\xd8\xeb\x9c\xfd\xe7\xab\x62\x23\x7a\x4f\xa9\x18\x3a\xcd\x0b\x8c\x38\x64\xee\xf7\x15\x13\xed\xfe\x38\x01\x23\xcb\x7f\x5a\xa1\xc6\xdf\xa2\xa8\x47\xbc\x84\x3c\xcb\xec\x01\x09\xc2\xf2\xd8\xba\x85\xfe\x15\x3e\x41\x8b\x1d\x50\xb9\x13\xb4\xc2\xb3\xca\x12\x46\x39\x0a\xb9\xd7\x40\x8c\x01\xe0\x73\x06\x71\x96\x98\x14\x51\xda\xe7\x64\xf3\xe7\xf7\xbb\x1a\xaa\x9a\xb9\x70\xb8\x16\x53\x5d\x5a\x49\x29\x39\xfc\xb5\x67\xc8\xed\x0f\xe0\x32\x00\x6a\x64\x96\xe7\x79\x4b\x71\xec\x3b\x6f\x33\x75\x13\xe3\x84\x4f\xb8\x9f\xd0\x4d\x7a\x6f\x2c\x77\x8a\x86\x90\x13\x50\x2f\x66\x23\x40\xb1\x89\x91\x97\xb2\xe5\x65\x02\x19\xcd\x4f\x94\xba\x49\xcf\xc4\xa1\x69\x62\xc3\x47\x96\x09\x37\x0f\x3e\xae\x62\xce\xb0\x31\x18\x36\x0a\xfc\xee\x93\x0d\xb5\x3d\x8d\xfc\x54\xbf\x55\x21\xb8\xf7\x7a\x91\x33\x84\x59\xce\x54\x57\xec\x7b\x13\x68\x12\xe0\x93\x91\x72\xfe\xcb\x32\x31\x3a\x52\x89\x2a\x3f\x35\x49\x5b\xcb\x2b\xf3\xac\x4a\x54\x15\xea\x33\x6e\x5b\xfe\xb8\x59\xae\x5c\xeb\x27\x6a\xca\x1e\xc2\xd3\xa4\x7f\x4d\xf3\x7a\xee\x29\x81\xaa\xbe\x89\x4d\x8f\x25\x12\x44\x9b\xa4\xa6\x44\x4b\x7c\xd2\xde\x0a\xb3\x66\x64\xc2\x1e\x27\x43\xce\x6f\xca\x75\x6a\x9d\xaa\xd4\xca\xc8\x4d\x1f\x38\x22\x37\x87\x05\x1e\xc9\xbb\x5c\x0a\x8c\xc8\x0c\xb6\x15\x9a\x3c\xf5\x2c\x77\x54\x2e\x80\x45\xf3\x71\xa5\x89\x6c\x37\x8c\xc2\x7e\x3f\x8c\x6d\x36\xa1\x9d\x26\x77\x34\x94\xa6\x34\x3b\x66\x60\xbc\x1f\x57\x2b\x73\x3f\x4d\xda\x61\xfe\x94\x2f\xbe\xee\xa4\x8a\x11\x7e\xef\x6d\x2d\xa0\xfd\x09\x12\x03\x0c\xb7\xf7\x35\x2d\xfd\x23\x9a\xd7\xa8\x65\xed\x22\xb7\x2c\xcc\xfd\xab\x40\xb9\xf9\x13\xc8\x07\xb0\xd3\x3f\x4b\x23\x0f\x05\x6d\x48\xb4\xb0\x1f\x0b\x66\x05\x16\x36\x60\x8a\x40\x22\xef\x8d\xed\x70\x2a\x4a\xb3\x47\x4c\x2f\x8c\xed\xae\xda\x97\xa5\x22\xb3\xae\x74\xde\xb9\x41\x88\xff\x41\x61\xa9\x97\x03\xe5\x40\x76\x7d\xa8\xbc\xc9\xae\x97\x62\x9f\xd9\xd9\x7a\x7f\x90\x52\x65\x0d\xc3\x05\x21\xdc\x9d\x40\x69\x6a\xde\x51\x25\xc0\x4e\x02\x4d\x2f\x46\xbc\x28\xec\xdb\xba\x1a\x28\xc1\x8a\x87\x5e\x77\xb5\x1b\x52\xcf\x77\x4d\xa5\x70\xa7\x95\x46\xf7\x69\xd5\x9f\xd8\x1e\x58\x94\x50\xb0\x76\xdf\x51\xa8\xf2\x9d\x52\xb8\x2f\x33\xa4\x67\x63\xba\x18\x76\xab\x45\x0c\x8a\x84\xf0\xee\x5f\x7f\xdb\x33\x0b\xf5\xa4\xdd\x26\x20\x60\xc2\x2f\xf6\xe7\xf0\x1a\x45\x97\xdd\x77\x30\xdd\x29\x89\x04\x92\x04\x34\x77\xc2\x09\x8d\x47\x14\x9c\x6a\xae\x0d\xff\x82\x02\x78\xda\x49\x02\x7d\x09\xa5\xd8\x11\x28\x41\xcd\xb7\xaa\x50\x87\x66\x14\xc6\x61\x93\x17\x0f\x2c\x4b\x10\x5e\xe5\xe3\x2a\xbf\x1d\xdb\x4c\xe2\xa4\x17\x66\x39\xcf\x18\xee\xab\xa2\xdb\xc1\x83\x67\x38\x18\x88\xf6\xad\x12\xa0\xb2\xf0\x4a\xdd\x74\x3a\xa9\x59\xa6\x74\xca\x9b\x2d\x05\x8e\x41\xf9\xf7\xc7\xc2\x41\xdb\x6a\xe1\x35\x17\x9b\x96\xc8\x58\x7a\x28\xee\x5c\x49\x44\xa1\x08\x59\x85\x3c\xc5\x21\xa7\xab\x4d\xb9\xca\xf6\x85\xc7\x24\x58\xf1\xb2\x4d\xf3\x70\x31\xc2\xfa\xa3\xed\xea\xf8\x58\xeb\xdc\x25\xcb\xb6\xb7\x08\x5d\x4f\x09\xc2\xe0\xcf\x86\x42\x31\x0b\x55\xf2\x3f\xe0\xed\xf3\xbf\x94\x96\xbd\x85\x57\xea\xb4\x52\xd6\xbc\x2c\xe8\x45\x95\x60\x96\x5f\x85\x2a\x76\x22\x04\x52\x31\x95\x0f\x97\x2a\x08\x33\x45\x06\x39\x48\xd1\x97\x25\x32\x19\xf4\x19\xd1\xc9\x90\x4c\xb9\x67\x9a\x5d\x42\x8d\x76\x29\xd1\xf7\x33\xda\x3f\xe8\xaa\x22\xed\x6c\x0d\xfd\xc2\xfb\x5c\x43\x19\x8e\x20\x53\x42\x90\xf7\xa8\xaa\xd7\xa8\x18\xe9\x99\x2c\x10\x88\x04\xce\x6a\x66\xeb\xd9\xb1\xba\x5a\xdc\x0e\x5b\xbc\x59\x16\x83\x00\x45\x62\xae\x93\xf1\x49\xa9\xaa\xee\xba\x5e\x93\x9e\xcd\xc3\x1e\x50\x02\x6e\xb5\xd3\xca\x1a\x97\x4a\x31\x63\x11\xa8\x87\xfc\x80\xb1\xb4\x3e\x54\xd4\xf3\x87\x0a\xb2\x8c\x93\x62\x29\x3d\x30\xeb\x69\x1e\xbe\x75\x6a\x2d\x50\xde\xc3\x6b\x43\x55\xa4\xe2\x72\xac\x80\x7c\xbe\x6a\xbe\xa1\x9a\xe9\x98\xcf\x17\xc6\x9d\x49\x0f\xe6\xdf\x51\x06\xe3\x1b\xba\x57\x88\x2d\x1c\xc1\xd3\x7a\xaf\x94\xd1\xbc\x36\x57\x6f\x93\x4a\xca\xab\xfb\x5d\x49\x9c\xde\x96\xd4\xca\x2b\xd0\x8f\x2c\xb2\x9c\xfa\xbb\xc0\xe2\xa2\x6a\x68\xba\xa8\x1d\x2b\x7b\xfd\x5c\x3a\xeb\xb1\x5f\x70\x8e\x0e\x10\x07\x71\x17\xc0\xbb\xf5\xa1\x68\xc8\x2f\x0f\xa2\xd8\xa6\x66\x31\x8c\xc2\x1c\x03\x93\x65\x2b\x02\x05\x87\x5e\xd2\x4f\x24\x0d\xe3\x66\xd8\x8f\x98\x48\x88\x34\xe3\x9a\x52\xe2\xb9\xa6\xfb\xd3\xda\xf9\xde\xe2\x6e\x91\xe2\xee\x69\x6c\x9b\x2c\xa2\x31\x77\x5f\x39\x3a\x3d\x85\x01\xec\x1a\x25\xa7\xa7\x99\x65\xf3\x4d\x6c\xeb\xd8\x7e\x39\x7d\x00\x9a\x7f\x5d\x73\xe5\x0f\xe3\x85\x08\xac\xa1\x83\x7c\xfb\x86\xa9\x79\x6e\x37\x88\x54\xd2\xa5\x51\x05\x0c\x27\xfd\x41\x24\x85\x73\x04\x58\xc0\xfa\xf8\xd8\x57\xf0\xdb\x6d\x1b\x67\x96\x44\x3d\x31\x9a\x34\xc7\xff\xd2\x63\x05\x14\xb3\x41\xca\x26\x91\x6c\xab\x38\xf4\x9a\x2f\xd8\x27\xb1\x02\x5d\x55\x4f\xf4\xe7\xfe\xfe\x7f\x3e\xa6\xf4\x5f\x24\x1a\xa2\x6f\xaf\x1a\x54\x62\xd3\xe7\xf5\xd7\xf1\x30\x94\xf4\x58\xa5\xf1\x5a\x98\x31\xbd\x48\xac\x2f\x6b\xca\xed\x52\xfb\x3d\xe6\x36\x6e\xd9\xd6\x94\xf2\x50\x9d\x18\x79\xa9\xf6\x0d\x55\x2b\x9b\x50\xc6\x4e\x48\xd4\x30\x9e\x1e\x05\xfb\xbc\xd7\xc1\xcb\x68\xe5\x14\x3e\x5a\xcd\xeb\xb4\x0d\x55\xcc\xfe\xa0\xca\x89\x62\xc5\x1a\xd8\x4e\x61\x83\xa8\x8d\xfc\xc6\x51\x6b\xc8\x5a\x9a\xad\xc6\xad\xb0\x69\x72\x74\x9d\x39\xde\x9e\x8b\x2e\x40\x98\xc1\xfa\xb5\x67\xe4\x9f\x74\x92\x77\x9f\x51\x6d\x50\x3b\x46\x94\xe0\x61\x97\x84\x2d\x29\x16\x95\xc9\x91\x22\xf9\xec\x18\x29\xc1\x96\xdd\x28\x7e\x61\xf8\x6e\x52\xbd\x85\x9e\xe7\x8b\xe0\xe5\x80\x7d\xc3\x16\xe8\xec\xf1\xaf\x9c\x28\x77\x8e\x7c\x73\xd6\x0e\xa0\xe8\xd2\x57\x5b\xbc\x74\xec\x09\x8f\x10\xd1\xa2\x03\xfb\xde\xd0\x8b\xd5\xee\xa6\x84\x10\x0e\xf3\x7f\xb7\x42\xcd\x60\xae\xde\x07\x67\x43\x2b\xea\x0e\x7d\x3e\xcf\x4c\x3d\xbc\xc7\x87\x2a\x03\x49\x6d\x7b\x10\x73\xb7\x82\xe6\x8f\x0a\x4f\xd4\x43\xf4\xed\x30\xed\x91\x6d\xbf\x73\x3b\x99\x9e\x71\xe0\x10\x3d\x19\xc4\x47\x1f\x62\xd5\x04\xac\x78\x5d\xcb\x54\xa0\xde\x80\x9c\xfa\x7f\x52\x4e\x38\xbb\x20\xc0\x27\x10\x8f\x02\x85\xde\x1a\x8e\x65\x40\xbd\x30\xcb\xc6\xec\x16\xef\xa8\xd2\xcb\x9d\xa1\x27\xd2\x9b\x74\x91\x3d\x70\x00\xc5\x02\x99\xe3\xe3\x4a\x92\x57\xcf\x84\x71\x3b\x35\x3d\xe9\x0f\x06\xb6\x7b\x71\xa8\x9a\xa8\x1f\x28\xf7\xb8\x2a\xe7\xbe\x9e\xc9\x6d\x2a\x09\xa4\xb4\x61\x6a\xee\xa2\xb7\x3b\x5c\x36\x2d\x8c\x5f\x11\xec\xa3\xd7\x2e\xe6\x47\x74\xe1\xd2\x7b\x54\xd1\xc3\xd5\xb5\x51\x5f\x45\x37\xe3\xf0\xf9\x18\x0c\x92\xb6\x9e\xaf\x39\x57\xd0\x29\x1a\x81\xba\xab\xd5\x49\x89\xf9\xae\x98\x5d\x18\xbf\xf8\xb6\x2d\xa2\x7b\x8d\xf9\xd9\x03\x46\xbe\x48\x0c\x4b\xd4\x1c\x36\xe1\xc0\x28\x22\xc4\xb4\x25\xbb\xf2\x6b\x31\xe8\xa4\x4c\x41\xf0\x88\xa8\x90\x52\x0c\xea\x02\xf1\x03\x63\xdc\xd8\x2f\xf1\xb4\x7e\x93\xea\xe8\xf8\xc5\xab\x88\x02\x50\xda\x7e\xb2\xe1\x73\xeb\xd1\x50\x71\x4d\x76\x8d\xb6\xaf\x85\xd3\xd3\x48\x20\x38\x28\x42\x84\xc5\x90\x38\x9f\x94\x68\xb2\x07\x0f\xce\xd7\x97\x4d\xca\x7d\x72\x55\x3c\x5d\x1f\x54\x77\x93\xac\x1f\xe6\x26\xda\xa5\x64\x9e\xb6\x34\xbc\xc7\x2d\xab\x7c\x82\x27\x82\xf2\x1d\xd3\x32\x5d\x0b\x44\xf1\x78\x58\x92\xad\xaa\xf2\xd0\x0a\xb3\xce\x80\xb7\x2f\xcc\xa1\x75\x65\xff\xb1\xae\x46\x7f\x3f\x49\x97\x00\xb0\x01\x6e\x81\x67\x1e\xdb\x5d\x29\xa9\xfa\xf2\x36\x29\x5b\x59\xdb\xae\xec\x56\x53\x7a\x72\xe4\x77\xaf\x9f\xa2\xc5\x4e\xa6\x27\xa1\x5c\xf2\x54\x7c\x5d\xe2\xa2\xf2\x1a\xe5\x39\x84\xd5\xf5\x92\x0b\x70\x3a\x49\xd2\x5a\x09\x23\xae\x8a\x63\x21\xd0\x9b\xcd\x23\x3c\x37\x59\x23\x7d\x78\xb8\x98\x44\x2d\xbd\xb1\xd1\x0d\xc9\x26\x37\xee\x35\xb9\x62\xc3\x4e\x37\x07\xf2\x84\x91\x03\x30\x0d\x3b\xec\x2d\xd5\x4e\xb7\xae\x6a\x05\x8b\x51\x98\x1f\xe5\x78\x08\x0f\xed\x9b\x81\x7f\x80\xdf\xf4\xb4\xa5\x24\xe9\x91\xac\x9b\xf4\x1e\x15\x73\x82\xc1\x64\x84\xa9\x52\xa6\xd5\x40\x8a\x6f\x2f\xe9\x13\xbd\x85\xb5\x1a\x8a\x91\x86\xb6\x4d\x16\x66\xe2\x93\x52\x72\x25\xaf\xa8\x99\x0c\xe2\x26\xd3\x19\xf1\x3b\xac\x2b\xcd\x27\xc3\x3d\x61\xbd\x9f\xda\xf6\xcf\xd5\xc3\x9f\xa6\x07\xa0\x06\xdd\x0c\x6f\x56\x17\x87\x13\x87\xfe\xe1\x97\x3d\x33\xe0\x97\x7e\xc1\x6f\x3d\xae\xf3\xe8\xc9\x86\x37\xf6\x7e\x96\x74\x92\x51\x56\x15\xbd\xb9\x3b\x81\x6a\x53\xd8\xd7\x50\xb1\x1b\x24\xa4\xb1\x01\xfd\x8d\x46\xed\x17\x0f\x71\xe0\xf8\xcf\x69\x74\x20\xf0\xbf\xc6\xd8\x1c\xc6\xca\x0b\x23\xc2\x60\xf1\x40\xb7\x10\xd1\xcb\xfc\xa8\x7d\xf1\x35\x0e\xac\xfe\x8c\xc6\x3d\x56\xe8\xe7\xa8\xff\x49\xd4\x9d\x8a\x3d\x19\xeb\xd8\x29\xda\x9e\x10\x0e\x3e\x1c\x2a\xb7\x9b\xa7\x41\xc8\x11\x8d\x14\x02\x80\x85\x42\xae\xe0\xd4\xad\xa1\x17\xc1\xfc\xfe\xdf\x1d\x3d\xa9\x5c\x0a\xc8\x0b\xc6\x99\x40\x52\x0d\x0d\x6b\xd4\x16\x1e\x8b\xb8\x43\x7a\x15\x69\x40\xf5\x88\x22\x3e\x52\xaa\xde\x83\xd8\xac\x98\xd4\x82\x7a\xf0\xea\x7e\x2e\xf0\x61\xcf\xe4\x63\x17\x95\xb6\x4d\xda\xb3\xa9\xa0\x6b\x48\x6d\x26\x75\x78\xf2\x50\x31\xf3\xce\x3e\xdb\x78\x5e\x67\x7a\xac\x1d\x5e\x03\x2a\xec\x92\x95\xe2\x41\x48\x40\xe9\x43\x42\xd3\x6c\xda\x22\xf5\xd8\xed\x03\xd3\x5b\x18\xcf\x00\xba\x2f\x0c\xc7\x74\xbc\xc7\xf5\xcb\x6b\xca\xde\x90\x1e\x13\x77\x61\xe2\xd1\x20\x59\xb8\xaf\x6a\x0f\xcd\xc8\x64\x59\xd8\x86\x42\x11\x2a\x06\x70\xcc\xe4\x63\xe5\x0a\x90\x0d\xd2\x7e\x1a\x66\x36\x9b\x52\x05\xcd\x4d\xda\x89\x58\x18\x27\xd0\x0d\x84\x27\xb4\x5e\x09\x62\x21\xd1\xcf\xa9\xd8\x24\x6c\xde\x8d\xd9\x68\x54\x94\xe0\x14\xb1\x13\x1f\x07\xd3\xe1\x41\xa0\xcb\xb3\x83\x8c\x8d\x41\xc4\xa5\xfc\x98\xb6\x29\xb8\xa8\xaa\xe1\x1b\x5a\x1f\x1a\xed\x67\x00\xe7\xca\xea\x54\xaf\xcd\xef\xaf\x2f\x26\xd6\x41\x72\x18\x0b\xdc\x0e\xc6\x27\x0a\x3d\xe9\x67\xab\x51\x14\x0e\x7a\xbb\x8a\x67\x88\x87\xff\x3b\xb4\x18\x49\x4f\x42\xcd\x39\x69\x3e\x01\x22\xaf\xd8\x0f\xd3\xa5\x8a\xc6\x9e\xea\xb8\xbf\x57\x11\x23\x89\x19\xab\xd7\x5e\x74\x6d\x7f\xbe\x05\xb0\x04\x18\x14\x2f\xa4\x9e\x77\x53\x6b\x72\x1b\xbb\x4f\x4a\xd2\xa8\x12\xc8\xaa\x66\xf5\x28\x61\xd8\x4f\xd8\x91\xc5\x0d\xb2\x57\x5f\xa0\x18\x87\x6b\x25\xe4\xca\xb7\xfe\x45\x28\x36\x89\xae\xcb\x05\xdd\x27\x82\x75\x01\x89\xea\x83\x52\xba\xfe\xf9\x7a\xd6\x35\x11\x71\xc0\x51\x16\x15\x13\x3d\x5f\x8f\xd4\x5e\x0d\x61\x96\x44\x26\xe7\xd2\x34\x86\xe0\x24\x2d\x80\xce\x6f\xb5\xb8\x73\x19\x8e\x7e\x11\xc8\xfa\xb6\x99\x9b\xe6\x20\x2a\x92\x1f\xd7\x6a\x71\x44\xed\xed\x47\x74\x0a\xde\xcf\x27\x3d\xe8\xbf\xa3\xe1\x8d\x66\x4f\x2b\x74\xe8\x1c\xe6\xab\x74\x56\x6c\xdf\x43\x8a\x00\x47\xf9\x50\x69\x56\xe8\x36\x0b\x3b\x57\x1e\xb6\x6d\xea\x6b\x18\xef\xa5\xf1\xcc\x2f\x2f\x0a\xbf\xa1\x2d\x72\x99\x68\xcb\x9a\x2c\x34\x26\xb1\x72\x61\xd0\x80\xb2\xfe\x00\x23\x0f\xd4\xa5\x4d\x9e\xc3\x18\xba\x3b\xe1\x64\xe5\x86\x6b\xb1\x39\xe0\x3d\x4e\x02\x0b\x61\x73\x4f\xc4\x96\x32\xe7\xe8\xde\x25\x7e\xf6\x8f\x6e\xee\xb5\x7f\x80\x91\x20\xfa\x81\xda\x9c\x00\x29\x3e\xc2\x9a\x9b\xd5\xd8\x5a\x6e\x23\x7b\x44\x09\x8f\xbf\xad\x8a\xb1\x6f\x3f\x96\x77\x4b\x1e\x10\x13\x3e\xbf\x84\xdc\x0a\x30\xa5\x1b\x5a\xfa\x6d\x57\xe3\x05\xc7\xf1\xef\xf5\x53\xdb\xb5\x71\x16\x2e\x43\xf8\x19\x61\xe1\xf7\x14\x99\x7e\xe7\x48\x35\x18\x3c\x52\x4b\x92\x03\x25\x5f\xdd\xef\x7a\xd3\xe9\xf9\x4a\xd3\x7a\x05\x3d\xd1\xe4\x89\x28\xd0\x60\x8d\x5b\xa7\xa0\x8a\x8f\x4b\x4f\x63\x7e\x7f\x3d\xb5\x34\x6c\x6b\xbe\x13\xe3\x78\xa0\x48\x42\xc7\x4b\x4b\xec\xc1\x83\xf5\x41\x9c\x92\x92\x7d\xf1\x33\x08\x0a\xbe\x35\xf4\x01\xc2\xb7\x54\x19\x9c\x8c\xe0\xd2\x38\x7b\x52\x9b\xbc\x0c\x15\xd7\xe0\x96\xba\xbe\xb7\x86\x5e\x0e\xe5\x21\xd2\x07\xec\x1d\xb7\x79\x6b\xc2\xb3\xbe\xab\x34\xef\x11\x98\x88\x1c\x16\x5d\x37\xea\x43\xa7\xb8\x47\x9c\xe9\xba\xb4\xb7\x63\x0b\xbf\x8c\xdd\x12\xb7\xb7\xa6\x24\xb4\x90\x77\x2b\xa5\x74\x32\x4d\xe0\x70\xf3\xa3\xc0\x2b\xde\x9e\xd3\xf6\x17\x1b\xc1\x36\x6b\x81\x83\x07\x8b\x55\x7f\x9f\x32\xc3\x7c\x38\xd6\x86\x46\xb3\x4d\xa2\xb6\x22\x2d\x42\x88\x35\xd9\x50\xfa\x2f\xa8\x87\x23\x5d\x43\x66\x8c\xa4\xec\x06\x22\x4a\x27\x10\x50\xbc\x00\xfe\x2a\x2a\x40\x63\x03\xe0\x24\x5e\x16\x28\xe5\x13\x6b\x8a\x51\x38\x2f\x23\xe8\x9e\x52\x8f\xdb\x50\x2d\xdf\x67\x95\xfa\x78\x37\xec\x74\xa3\xd5\x49\xdf\x96\xf2\x54\xc3\xcb\xa5\xe1\x01\x01\x39\x60\xfd\x72\x8c\xef\x7f\xec\xb8\xd8\x26\x4c\xfb\x91\x89\x59\xe7\x45\x5b\xe4\x89\x3c\x87\x23\x4f\x87\xad\x6e\x7f\x00\xfa\x87\x5b\x26\xbc\x1a\x46\xd9\x45\x74\x76\xb6\x1e\x99\xe6\x12\xa7\xf9\x42\xab\x50\xa4\x90\xd3\x5a\x0b\x7e\x43\xf9\x2b\x44\xd6\x64\xf9\x13\x5e\x87\xef\x04\x0d\x0f\x14\xcf\xcf\x04\xfe\x65\xc1\x85\x9f\x2d\xda\xf0\x65\xd2\xc5\x5c\x3c\x10\x8c\x0c\xf8\x2a\x8f\xe9\x56\x4a\x73\xb8\x1f\x5b\x71\x92\xae\x98\x55\xa6\x8e\xa0\x00\x7a\x11\xeb\x2e\x9f\x54\xf5\xc0\xf6\xad\x89\x07\x39\x33\x2c\xb8\xd5\x8c\x1e\x1d\x80\xab\x77\x87\x6a\xe3\xbc\x56\xda\x38\x0f\x1e\x14\xb5\xd8\x44\x4a\x3e\xb8\x2b\x74\xc5\xf0\xb1\xd3\x98\x1c\xc4\x2d\x9b\xae\xa4\xa1\x58\x08\xe1\x86\x26\x94\x34\xeb\x86\xe2\xa5\xde\x2e\xa1\x19\xc5\x52\x12\x66\x4b\x13\x4a\x98\x16\x23\x57\x6e\x90\x1e\x1f\x3f\xe3\xe1\xf3\x2a\x77\x4a\xda\x68\xc6\xa9\xf9\xac\x8b\xdd\xdf\xf8\xa4\x24\x09\x4b\xf5\xf0\xd4\x2c\x5b\xe1\xfc\x39\x39\x62\xef\x3b\xb2\xee\x85\x26\x4c\xde\xf5\xf1\xb6\xe3\x58\x14\x7f\x8a\x68\x84\x39\x08\xb8\xcb\x1b\x95\x34\xca\x28\xc9\xf9\xe5\x89\x9a\x5d\x71\x6b\xe2\x10\x52\xd6\x0c\x9b\xa9\x77\x52\x6b\x97\x68\x3f\x1e\xe3\xeb\xf1\x49\x29\x5f\x5f\x78\x45\x69\x83\x7a\x2c\x80\x9e\x20\x1e\xf9\xbb\x43\x8f\xd4\x9c\x52\xdc\xca\xe2\xde\x6c\xd4\xa6\xfc\x55\x58\x2a\x63\xc5\x8b\x9a\xa7\xaf\x60\x8e\x4a\xd6\x20\x64\x54\x62\x24\x24\x04\x7a\xfb\x9f\xdb\x1a\xd3\x36\x47\xd1\xf9\xb1\x29\x6c\x3c\x48\x33\xc7\x0c\x41\x8b\xf6\x09\x95\xfb\xfc\xae\x4a\xc1\x9e\x3c\x55\x51\x4d\x39\x54\xb7\x26\xf5\x2d\x74\x48\x41\xbe\x33\xf4\xdd\x5b\x17\x55\x19\x68\xad\x8a\x8c\xda\xb2\xa6\x15\x51\xab\x95\x0b\xd3\xa1\xb5\x2c\xc2\xbc\x9e\x20\xd7\xb5\x51\x9f\x0a\x37\xaf\xee\x17\x89\x50\x2c\xab\xa2\x17\x5a\xa6\xae\x7c\xa9\xde\x49\x4d\x8c\xc0\xce\x69\x6b\x40\x1c\x55\xf6\x24\xbf\xe5\xc7\x79\x4a\x65\xd6\x50\x38\x72\xd2\x7b\x45\x43\x8e\x4f\x4a\xb5\x87\xc3\x87\xeb\x2d\xdb\x37\x69\x2e\xaf\x81\x99\x0a\x8a\xc4\x78\x7e\xa8\x22\x85\xcb\x55\x85\xe8\x6c\xc5\xda\xdc\xc6\x52\x1e\x47\xc2\xbd\xa5\x5a\xff\xb7\x1c\xad\x78\xd1\x44\x6c\xbb\x81\x54\x1e\x18\xbd\xe3\x39\xf8\x38\x7b\x8f\xea\xb0\xd0\xaa\x94\x14\xbc\x62\x36\x7d\x1d\xcf\x0f\x57\xfc\x21\xad\x8d\x8a\x0a\x35\xe3\xda\xb3\x3c\xf9\xa0\x63\x63\xbb\xd7\xe7\xfe\xff\x07\x76\x45\x20\xcd\xdf\x09\x14\xd3\x64\x8b\x96\x63\xa0\x88\xff\x12\xc5\x7b\x97\x07\x4e\xcb\xda\xfe\x88\x96\x60\x27\x0f\xeb\xba\x49\xf6\x40\xb7\x55\x54\x63\x94\x01\xeb\x3d\xe5\x4d\x9c\x85\x71\xd3\x3e\xa3\xa0\x9a\x1a\x6d\x71\xd8\x7d\xf7\x70\x6c\x29\x42\x8e\x4a\xcb\xf0\x87\xca\x52\x6d\xef\xc8\xa3\x51\x4f\x01\x93\x44\x36\xb4\xbb\x41\x81\x80\x6c\x1b\x74\x9b\xe2\x0d\x58\x5c\x34\xbf\xd9\xc0\x6b\xbf\x20\x28\xc0\xfc\xe7\x1b\x40\x30\xbb\x49\x77\x8c\xf9\xc0\xaa\xab\x62\xe6\x4a\xaf\x0b\x89\xc4\xcd\xd2\xc8\xa2\x90\xb7\x9f\xda\x8c\xfc\x13\x1c\x77\x1c\xa1\x13\x1f\x8f\x5e\x18\x07\x19\xc2\xc5\x81\xc4\x42\x48\xfb\x6f\x07\x5e\x52\xeb\x94\xc2\xc2\xff\x35\x01\xcb\x52\x5c\x53\x6d\xa1\x66\x29\x32\x71\x6b\xaa\xf6\xc5\xd7\x9c\x84\x95\xee\x99\xbe\xab\x01\x47\x74\x75\xe0\x1f\xee\x07\x4a\x74\xe4\x6e\x05\x7b\xe6\x50\xb1\x65\xb4\x06\x4d\xc0\xee\x88\xd4\x2e\xe2\x71\x68\x26\x0b\x1b\xc5\x97\xc2\xd7\xf9\xfd\xf5\x41\x6c\x4d\xb6\xaa\x7c\xae\xcf\x07\xde\x69\xe3\xbc\x52\xe4\x68\x26\x3d\x9b\xed\x53\x79\xf6\xad\x71\xb4\x9b\xae\x54\x48\x3f\xbe\x11\x8e\x5d\x7b\x11\x58\x7d\xa0\x3c\x9e\x2e\x00\x97\x72\x5a\x52\xc5\x90\xc3\xa2\x78\x5d\xe9\x2e\x3d\x45\x18\x93\xd0\x59\x54\xfa\xb7\xf1\xd8\x22\x7e\xcf\x74\x62\x9b\x87\x4d\x86\x85\xdc\x7e\xed\xf7\xee\xe0\x79\x55\x28\x5a\x1c\x84\x11\x6a\xd7\x33\x0b\xbc\x25\x5f\xa0\x29\xc4\xc7\x15\x04\xb4\xba\xe9\xd8\x38\x9f\xf0\xa5\xc7\x87\xf4\x94\xc5\xe8\xb0\xf8\xb0\xb0\xb1\x7d\x3f\x84\xa8\xac\x4e\xa8\x09\x8d\xf9\x89\xbb\x03\x09\x56\x1c\x03\xb6\xbf\xa9\xcf\xd7\xb3\x3c\x0d\x97\xa4\x8e\x23\x34\x18\xfa\x2e\x80\xd3\xf7\x14\x1d\xf3\xb2\x8a\x73\xbb\x26\x6a\x93\xce\x07\x20\xe1\x13\x34\xa3\x90\x4a\x6c\xd2\x4c\xc3\xaa\x73\x76\xe8\x69\x63\x50\x7f\x41\x1e\xc2\x52\xb5\xf8\xa3\xff\x11\xaf\x89\x4f\x28\x04\xc2\xcc\xae\x8d\x3c\xd0\x9c\x75\x93\x15\x9b\x02\x68\xc6\x0b\x05\x51\x85\x8f\xc7\xbc\xe6\xe3\x56\x12\x3f\x53\x5c\x04\x26\x10\x5c\xc2\x05\x02\xa3\xf1\x81\x9b\xdb\xd4\x66\x6d\xac\x5d\x8f\xa0\xed\x22\xd6\x41\xfe\x33\xac\x29\x88\xdc\xdf\x27\x0c\x0d\xe9\xe9\x71\x9e\x6f\x48\xd9\x4f\xd0\xf5\xb0\xaf\x88\xea\x33\x61\x9f\x42\x8c\xbc\x5f\x1f\xaa\xba\xde\x3a\xd6\x3a\x84\x6f\x00\x61\xc7\xa4\x49\x98\xda\x5b\x8a\x09\x5e\x2d\x72\xca\x30\x5e\xb6\x59\xee\x1c\x5b\xd8\x88\x42\xb1\xea\xd7\x14\xe9\x2e\x35\x71\x47\x98\x14\xac\x58\x1a\xa8\x96\xc1\xf5\x8a\xb6\x5e\x25\x33\x89\x15\x8c\x63\x3f\x3e\xd1\x12\xa5\xa9\x6d\x11\x77\x89\x1e\xad\xf4\x83\xd0\x03\x94\x4e\x11\xbf\x6a\xad\xd8\xc5\x8c\x54\x67\xbe\xf8\x9a\x90\x1b\x02\x6f\xfd\xfa\xcd\x52\xe3\xc0\xcf\xd7\x7b\x66\x09\x8c\x2d\xac\x64\x6b\x5a\x11\x66\xad\xa4\x63\x35\xb3\xa0\x3b\xf8\x9d\x06\x96\x14\x52\xe9\xa6\xf9\xc4\x05\xe6\xdb\x49\xa9\x08\xe5\xf6\x8c\x4a\xa4\x54\x84\x2f\x7b\x94\x67\x30\x99\x2b\x46\xab\x93\x4a\x8f\xe4\xac\x36\x18\x0a\x14\x71\xe3\x82\x12\xa2\x3e\xab\x18\x0b\x61\xdc\x1c\x20\xea\x71\x89\xa6\x2b\x91\x5f\xac\x8a\xc4\xf2\x41\x6f\xd1\x73\x10\x1d\x7a\xea\x14\xaf\xcb\xb4\xad\x22\x5c\xee\x47\x83\xde\xa2\xfb\x94\x2b\xba\xbb\xd2\xe6\xba\xf3\x33\xca\x6d\xdc\x9a\xf0\xdc\x82\xf7\xf0\xc4\x75\x9d\x02\xb8\xe2\xd4\xc8\x83\x5e\x26\xeb\x92\x2a\x67\xf1\xdd\xd2\xdc\xe9\xf7\xb6\xf5\xa1\xa2\xa7\xe7\x39\x04\x5d\xf6\x78\x29\x5c\x6c\x4f\xaa\xac\x29\xb1\xf5\x5b\x98\xaf\xae\xee\xe7\xc5\x38\xf5\x1e\xc4\x1c\x01\xd1\x44\x2b\xde\x9b\xf0\xe2\x68\xea\x4a\x0b\x5c\x49\x4c\x74\x7e\x7f\x3d\x12\x61\x60\x2c\xba\x6b\xba\xf1\x70\xad\xc2\x5b\x63\xae\x9e\x87\x76\xcc\x3f\xff\x6d\xbc\x64\x69\x57\xa8\xd0\x2b\xcb\xa2\x41\xaf\x2f\xf3\x0f\x01\x20\xc7\x39\x7c\xe2\xca\xdd\x9d\x34\xec\xdb\x0c\x76\x13\x28\x2f\x71\xc5\x59\x24\x73\xe9\x77\x41\xe6\xc4\x2b\x17\x11\x18\x8f\xdd\x65\x6d\x20\x5a\x2e\xdb\x3e\x78\xd0\x65\x85\x55\x2a\x47\x5d\x33\x88\x26\xfc\x04\xdb\xd0\x82\xc7\xbf\x33\x1c\x53\xef\x7f\x46\x49\xad\x37\xc3\x16\xeb\x5e\x60\x5a\x3c\xa0\x4e\x39\x3c\xf7\x0b\x9a\x89\x74\x75\xe8\xeb\x2b\xd9\xa0\x6f\xd3\x2c\x37\x69\xa6\x6c\x40\x4e\xd1\x27\xf9\xb8\x42\xcd\xa7\xde\x37\xab\xc9\x00\xeb\x9c\x73\x9e\x77\xb6\x68\xda\xa1\xb2\x9b\x48\x7b\x4b\xd5\x7a\x58\xc5\x13\x36\xcd\x25\xd3\x91\x34\x02\x91\x26\xb7\x28\xf3\x49\x29\xf5\x5c\x78\x85\xb4\xcd\x6c\x5c\x53\xfd\x53\x6b\x14\x9c\xf0\xb1\x8a\x04\x54\x4f\x37\xbd\x6f\xee\x58\xa5\x95\xc0\x45\xd9\xb3\xb3\x5b\xd7\x03\x2d\x9c\x8b\x37\x20\x7c\x11\x2d\x36\x6a\xc8\x8a\x64\xce\x49\x8e\xd1\xa7\x9c\x8d\xad\xeb\xfd\xfb\xab\x31\x2d\x33\x0a\xc4\xa5\x35\x33\x59\x84\x56\x96\x23\x1d\xcd\xef\xd7\x8e\x8a\xb3\xde\x52\xe8\xe0\x41\xe7\xae\xa8\xf4\x73\x36\x95\x06\x63\x66\xa3\xe8\x49\x9f\xe4\x89\x8e\x31\x80\x8d\x7b\x5a\xe0\xf5\x8a\x56\x42\xd5\x82\x71\xf0\xe2\xc7\x16\x7c\x43\x95\xb4\x77\x80\x5b\x81\x40\xee\x0c\x1e\x88\x70\x6e\xe8\xfa\xf1\x04\x26\x1b\xbe\xc5\x97\xf3\x7f\xae\xa8\x05\x92\x2e\x26\xfd\x7e\x92\xe6\x83\x38\xcc\x43\x09\x74\x44\x9c\x1d\x97\x8b\xe5\x8f\xc3\x1e\x11\xe0\x2a\x8f\xc2\xb9\x7a\x94\x2c\x4b\xde\x27\xa2\x0a\x8a\xe4\xbe\x56\xaa\xca\xfc\x7c\x7d\x25\x4d\x8a\x59\xef\x9a\x64\xdf\x53\x7c\xa1\xf7\xbc\xa8\x41\x6e\xa2\x88\x8b\x21\xdc\x7a\x8c\x2f\xc6\x78\x62\x4c\x01\x69\xed\x2d\x95\x56\x15\x1b\x74\xbc\x87\xaa\xb2\xd8\xd2\x6e\x6a\x8f\xd8\x89\x91\xe7\x4a\x9e\x1a\x2a\x69\xdc\x75\x34\xef\xe0\x2d\x41\x37\x53\xfa\x10\x3d\x39\x86\x8b\xd3\x58\x07\xdf\xe1\x27\x85\xfd\xe0\xf2\xf0\xb3\xa1\x0b\xca\xd2\xdc\x74\x6c\x3b\xf2\xfa\xea\xe2\x19\xa8\x9a\x3b\xd7\xd4\xea\xdf\x33\x1d\x73\x34\x8c\xa5\x30\xe9\xb8\x8e\x4e\x5e\xf6\x99\x86\x87\x27\x9f\x40\x72\x86\x99\x78\x5e\x67\x97\xe7\x03\xaf\x89\x38\x88\x9b\x10\xc4\xcd\x57\xf7\xd2\x97\x22\x92\xfc\x16\x42\x10\x24\xb6\xb7\x94\xd6\x08\x7a\x9b\x11\xc7\x6c\x21\x5f\xe0\x3f\x1a\xaa\xe6\xff\x9b\xf4\xaa\x98\x5b\x1e\x78\x49\xbb\x1a\x38\x6f\x62\xef\x5a\x8c\x7e\x09\x95\xb7\x2f\xae\xf3\xfb\xeb\xad\xd4\xac\xc4\x94\xe4\x39\x95\x99\x57\xf7\x3b\x40\x58\x31\x6b\xde\xc2\xdd\x21\x64\xdc\xd9\x70\x84\x84\x5f\x86\x2e\x9c\x34\xd7\xfb\x8a\xca\xa3\xa1\xc7\x6b\xce\x81\x9b\x80\xb7\xf8\x64\xe3\x05\x1d\x5a\x24\x69\x6a\x9b\x79\xb4\xaa\x7d\x05\x58\xfa\x9a\x4f\x54\x7b\xb5\x88\xc3\x3f\x5e\x1a\xde\xd1\xb4\x07\x79\x48\x25\xbc\x9a\x02\xa5\xe1\x73\xc2\xc7\xdb\x0d\x81\x5f\xdd\x5f\x7f\x75\xff\xeb\xe4\xd7\x84\xd8\xe6\x7b\x81\xa7\x23\x3c\x52\xe5\x4d\xe4\x73\x58\xb4\x3f\x18\xaa\x14\xee\x98\x42\x2a\xd6\x28\x21\xe2\x0f\x97\x72\xd8\xd7\x66\x16\x9c\xef\x68\x11\x56\x33\x6e\xa2\xa5\x72\x3e\xac\x6c\xd5\x5d\x34\xb1\x4d\x43\xc3\x52\x9e\xc8\x76\xef\xaa\xbe\x8d\xbb\x55\xea\xe2\x2d\xdb\xb6\x64\x0e\x52\xab\x69\xd9\x20\xd7\xf8\xf1\x51\xa9\xe0\xf5\xea\xfe\xd9\x7a\x3f\xc9\xfb\xc9\x20\x4d\x43\x4d\x56\x3d\xa1\x3a\x6d\x4f\x94\x1a\x34\xa6\xa7\x8b\xcc\x3c\xcb\xc3\x9c\xcc\x34\x69\x20\x8a\x02\x3f\x7d\x89\x48\xf3\xab\x86\xf9\xd4\xf4\x8b\x2d\x97\x8a\x12\x08\x51\xee\x2a\xfe\xfc\xf9\xa1\xea\xaa\x73\x7c\xa3\x56\x1a\xb6\x49\x07\xce\x43\xb0\xbf\x89\x78\x85\xdf\x4a\xe0\xe7\xeb\xbb\x6a\xfb\xcd\x56\x6c\x3f\x9f\x2c\xbe\x11\xeb\xc6\x37\x28\x59\x72\xf6\xf8\xf3\x12\x57\x7d\x63\xa8\x6c\xf3\x4b\xfc\xad\xc3\x87\xeb\xad\xd5\xd8\x64\xf9\x6a\x4d\x69\xb4\x62\xd6\x8a\x81\x77\x95\x04\x66\xd7\xa4\x2e\xbc\x75\xc8\xac\x83\xf6\xd6\x15\x11\xad\x6d\x7a\x61\x14\x9a\x14\x4f\x5e\xdc\x58\x3c\xcb\xe0\x7b\xa5\xef\x9f\x59\x80\x77\x0a\x37\xf4\x60\x59\xb8\xad\xc4\x48\x6e\x3f\x5e\x79\x3d\xb6\x69\x87\xa0\x03\x3f\xc4\xb9\xbe\xc5\x27\xd5\x25\xd4\x30\xee\x0f\xb8\x02\x28\x77\xad\x9e\x80\x8b\x18\x4d\x56\x0c\x86\x09\x0f\xca\xde\x55\xac\x35\x54\x6a\xa5\xbb\x41\xd9\x2e\x9b\x3c\x8f\xec\x84\x9a\x5b\x5c\x3d\x00\xbe\xc6\x32\x14\x32\x44\xaa\x0c\xc1\x5a\xd6\xf6\xd1\x83\x32\xe7\x04\xbd\x68\x29\x05\x7a\x76\x9d\x56\x4c\x31\xf3\xa2\x85\x18\x5f\xfd\x51\x85\xa4\xc8\x0c\x9b\x14\xd7\x94\xb0\x24\x2a\xf4\x7c\xac\x5a\xe2\x9b\x5d\x93\xe6\x60\x00\x21\x4d\x63\x17\x0d\x3e\x51\x22\x14\xa6\xd5\x7a\xa2\xe6\x44\x98\x98\xbf\x20\x4e\xc2\xbe\x73\xf6\x49\xe5\x10\xbc\xa1\x98\x26\x57\xc6\x4b\x5b\x63\x44\x6d\xe5\x0a\xf6\x28\xd0\xb2\xf1\x36\xcb\x06\xa9\xdd\xe5\x39\x24\xbf\x83\x60\x05\xe0\xe4\x43\x1d\xae\x5d\x54\x72\x04\x08\x67\x5d\x5b\xbf\x32\x70\xf3\x99\x26\x69\xe9\x14\x99\x66\xf1\x7d\x42\xe5\xa6\x0b\xc1\x77\x9c\xc6\x25\xb2\xe6\x7b\x43\x89\x9a\x5c\xa9\xd2\x4d\xcb\x93\xc4\xa7\x90\x58\x46\xef\x28\x95\xc6\x3b\x5e\x47\x23\x32\xab\x2b\x69\xf1\xe3\x34\xf2\x51\x6f\xbd\xa4\x94\x42\x2f\x8d\xc5\x97\x61\x1b\x18\x0d\x42\x2c\x98\x58\xf3\xf1\xd0\x9b\x31\x76\x4d\xeb\x05\x4a\x2c\x9c\xb0\xd1\x6b\x4e\x05\x6a\xaa\x51\xac\xd8\x0c\x54\x93\x8b\x82\x28\x06\x7b\x7a\xf4\x13\xa8\x5e\x21\xb9\xdc\x04\xd0\xe9\xf4\x8d\x5d\x8b\xec\x23\x5a\xdc\x00\x54\x4f\x8c\x94\x99\xc2\x19\x0e\x54\x71\x76\x17\x8c\x08\x6c\xfb\xb7\xb5\xf9\xfd\x55\xcd\x4f\x62\x56\x2d\xbe\x6e\xdf\x48\xd1\xe4\xa6\x88\xf5\x87\xa7\x71\x0b\x55\x75\x30\xd1\xb7\x86\x9e\x65\xf4\x7f\x22\xea\x12\x8e\xe6\xf6\x1d\xa1\xd8\x7c\x8a\x2d\x95\xa3\x54\x2f\x3c\xf1\x31\x5f\x2b\x02\xd3\x47\x81\x8a\x9d\x27\x46\x6a\xec\x45\xd6\xb4\x9c\x8c\x2c\x7b\x14\xd1\xb3\x10\xbf\xa2\xe2\x52\x10\xa7\xff\x30\x50\x8d\xa1\x3f\x74\xea\x64\x59\xd7\x86\x4b\x99\xa2\x29\xf0\xa6\xc2\x27\xa5\x4d\xb6\xc8\x85\x99\x95\x57\xf3\xfd\xd8\xf5\x0f\x55\xa3\xc8\x87\x2a\x5a\x1d\xf4\x33\x9b\x53\xa3\x08\xd0\xf9\xb3\x74\x45\x7c\x5c\x8a\x9d\xa0\x0a\xb3\x12\xd3\x07\xb4\x12\x29\x1f\x57\x35\x7d\x36\x93\x5e\xb1\x44\xf3\xc6\x88\xcb\x7e\x27\x50\xf7\xf0\x8e\xab\xcd\x2c\x87\x22\x1f\xce\x35\x49\x25\x95\x76\xa3\x0a\x9c\xcd\xba\x61\x3b\xaf\x79\xdf\xda\xef\x0d\x3d\xde\xf2\x3d\xef\x44\xc1\xf4\x41\xda\x38\xd1\x8a\x78\x57\x19\xe2\x8e\x39\x59\xea\x72\x79\xcf\x84\x31\x0b\x7a\x33\xbb\x17\xc3\x50\xa8\xbe\x0a\xc9\xb3\x8b\xc9\x20\x6e\xd5\x3c\x93\xef\x84\xa2\xeb\x9d\xa8\x6a\x2a\xef\x9a\x41\xec\xda\x1d\x40\xb6\xba\xaa\x78\x09\x1f\x68\x61\xe2\x32\x9a\xff\xea\xfe\xd7\xeb\xa9\xed\x5b\x52\x0f\x9c\xdb\x22\x95\xec\xad\xd3\xc0\xe9\xf8\xda\x1d\xdc\xd6\x02\x04\x28\xb7\xe0\x7b\x4d\xcb\xec\x69\x92\x65\x8b\x57\x61\xe5\x52\x7c\x08\xb9\xe1\x29\x45\xa6\x3d\xa5\x14\xb1\xfb\x36\x8e\xed\x2a\x86\x99\x88\xb2\x2a\x4d\xbe\x3f\x54\xd4\x47\xd3\xef\x47\x66\xd0\xb2\x2d\x62\x88\xa9\x94\x7e\xce\xa5\xf4\x15\x7a\x1b\x59\xd8\x42\x83\x5e\x15\x30\xe6\x89\x6b\xed\x64\x90\xe6\xd6\x42\x9b\x9b\x35\x6d\x68\xab\x13\x7d\x1b\x27\x7f\x9e\x34\xd9\x7a\xdd\x6b\xe9\x1d\xa3\xa7\xce\xc7\x4a\xe2\x66\xd1\x46\xa1\x5d\xb6\x7b\x8b\xef\x71\x61\xd9\xcc\x02\x2f\x22\xf7\x54\xcb\xdd\x98\xed\xf5\x39\x08\x9c\x61\xdd\x5a\x57\x42\xa3\x6f\x0d\xc7\x72\x2b\xa5\x6e\x7c\x3d\xf0\x8d\x40\xe7\x86\xe3\xfa\x08\xcf\xf8\x96\x2e\x02\x2c\xb2\xa9\x62\x1d\x76\x3b\x4d\xf1\x8d\x48\x4e\xe1\x51\x22\x1c\x80\xe2\x67\xc5\x7b\x5e\x79\x1a\xd5\x1a\x1e\x91\x6f\xdb\x9e\x89\xac\x2a\xba\xff\xb6\x8e\xf0\x11\x6b\xe0\x95\x1f\x53\x64\xa1\x3c\x8c\xc4\xb0\x07\x9b\xfb\x57\x03\x0f\xce\x7e\xd5\x97\xd6\xad\x89\xac\xf7\xd4\x47\xf6\xba\xa9\x5a\xc8\x36\xd5\x93\x66\x5a\xe6\xee\x62\x51\x01\x28\x7b\x52\xbd\xe8\x1d\xd8\x35\x45\x4a\x93\xe6\x0b\x52\x15\x94\x41\x80\x86\xfc\x90\xde\x37\x7f\x3a\xf0\xd4\xd1\xbd\xa3\xa7\x1c\xd1\xe3\xdf\xb1\x28\x56\xc8\xce\x12\x8d\xab\x58\x3c\xb8\x3d\x59\x3b\x7f\xcb\x26\xa9\x24\xc0\xd2\xa4\x3f\xe5\x63\xdb\x0f\x87\xca\xaf\xfe\x2c\xc2\x2d\x2c\xfb\xe8\x90\x46\xde\xfe\x7b\x54\x48\x04\x81\xe9\x96\x8b\x1f\x5b\x36\x4b\xf2\xa4\xe6\x53\xe2\x9d\xe0\x6a\xf0\x49\xa9\x49\x64\xe1\x95\x62\x39\x30\x21\x07\xcf\x98\xdf\x9f\x52\x30\xc3\xc7\x5a\xc8\x3e\x85\xb0\x97\xeb\x40\x80\x24\xa5\x40\xad\x65\x71\x89\xd7\xeb\x83\x38\x6c\x27\x69\x2f\xcc\x61\x51\x87\x7a\xd1\x88\x6e\x03\x55\x97\x6b\x63\xdd\x25\x15\xce\x0a\xfd\xd4\xe6\x39\x0a\xef\xda\xb7\xd4\xf5\xe8\x7d\xf1\x35\xc6\x52\xca\xee\xef\x64\x73\x60\xa3\xa4\xd8\x47\x7d\x67\xd3\x95\xa1\x82\x55\xb6\xe8\xf5\x8f\xe1\x3f\x00\xc6\xde\xd5\x28\x87\x35\xf1\x4a\x37\x8c\xd8\x2e\x12\xa5\xa3\xeb\xb4\xb6\x49\xd5\x94\x9e\x1e\xb6\x85\x6f\x07\x4a\x80\x43\x48\xfe\xdc\x54\x47\x68\x08\x82\x86\x6b\x78\xb1\x58\x3f\xd8\x73\x95\xbf\x19\xa1\x89\x48\x1d\xfa\x18\x38\x1a\x74\x50\x9a\x10\x5d\x8e\xe2\x35\xc9\x4a\xaf\x70\xe5\x1f\xd0\xf3\xc5\x43\x79\x58\x41\x03\x3b\x54\xef\x26\xd2\x79\x21\x50\xb2\x82\x95\xd5\xea\xdb\x4c\xe2\xcc\xc6\xd9\x20\x03\xcf\x04\x5f\xf9\xa9\xca\xc3\xde\x52\x3a\xec\xe7\x1f\x6b\x43\x52\xbc\xc3\x24\x0d\xcd\x84\x8f\xe6\x86\x5a\x13\x0e\x8a\xe2\x78\x62\xef\x28\x45\xf1\x2c\x8c\x97\xb0\x9f\x20\x4e\x03\xb9\x81\x8f\xd5\x0b\x4a\x6d\x67\x10\x99\x3c\x41\xdd\x05\xff\x0e\x05\x13\x3e\x56\x93\x2d\x4a\xda\x39\x97\x7d\xb1\x73\x73\x83\x30\x9f\x54\x68\x5d\xd9\x65\x1b\x83\xa6\x85\xfb\xbf\x44\x6f\x1e\xcf\xfd\x51\xe0\xe9\x8f\xd7\x1d\x9c\x92\x27\xc5\x9a\x11\xb7\x8c\x82\xc5\xcf\xe2\x86\xf9\x44\x65\x36\x76\xf1\xe5\x62\xf2\x6f\x5d\x55\xc2\x98\x1b\x08\x82\xa5\x52\xab\x14\x3a\x86\xaa\x36\xb5\xaf\xe1\xd7\xd7\xc5\x41\xab\x63\xf3\xdd\x9e\xc1\x73\x1f\x43\x8a\x67\xd9\x50\x95\xd9\x3e\xa5\x97\x0d\x92\x41\x0d\xc0\xa0\x28\x74\xe8\x1e\xde\xc0\xeb\xdf\xde\x56\x2c\xdb\x2c\xb7\xfd\xae\x8d\x27\x55\xc9\x04\xc9\x3c\x1f\x2b\xf1\x17\xa4\x8d\x5e\x2e\x5b\x55\x7f\x19\xc5\x70\xec\xeb\xff\x5e\x41\x6f\x5c\xae\x15\xa1\xfc\xa7\x35\x0d\xb1\x6f\x21\x6d\x0d\x18\xe3\x5d\xe5\x97\xfa\xae\xfa\x81\x66\xd7\x62\xbb\x56\x1d\x12\xba\x0d\x42\x65\x79\x8b\x49\x9a\x12\xcf\xbd\xe6\x0c\x5e\x4e\x06\xca\xf9\xe5\x64\x65\xac\x13\xc6\x6f\x14\x01\x12\xdd\x00\xe0\xea\xdf\xc7\xe2\x81\x75\xf6\x36\x9e\x3d\x12\x92\x3b\xca\xd9\x2c\xb5\xbd\x24\x5e\x45\x67\x3b\x3b\xa2\x0d\x7d\x15\xe9\xa1\xd2\x3d\xbf\xab\x80\x98\x7e\x71\x81\x7b\x8a\x67\x89\x0c\x65\x67\x83\xe6\x04\x77\xc3\xe3\x69\x49\x6b\x3c\x05\x11\xd8\xe6\x6e\x0e\x55\xe4\x7c\x4e\x47\xff\x0c\x58\xc8\xae\x84\x25\x4a\xf6\xa5\x9a\xeb\x11\x5a\x57\x39\xde\xc0\x44\xbb\x69\x0d\x00\x1e\x88\x2d\x19\x09\x3d\x1c\x47\x91\x40\x9f\xd1\xac\xcf\xe3\xba\xcd\x6f\x73\xe8\x11\x58\x18\x6c\x22\x60\xf8\x46\x95\xbe\x44\xcc\x4e\xc3\x74\xcd\xce\x0a\xdd\xdb\xa2\x6b\x6e\xaa\x89\x25\x47\xa8\x54\x10\xf6\xf5\x8d\x95\x30\xef\xfe\x34\xee\x15\x37\x71\x93\x39\xcf\x88\xcc\x76\x35\x8a\xbd\x04\x51\xc6\x29\xcc\x17\x20\xf6\xf0\x83\xc5\x5d\xb0\x08\x16\xc6\xe6\x56\xa0\xb8\x15\xf4\x52\x0e\x39\x2e\x3f\xdd\x39\x2f\xee\x81\xc7\xca\x8e\x23\x3b\x45\x99\xef\x27\x81\x72\xcd\x39\x16\x78\xcf\xeb\x1f\x83\xef\x8f\x08\xe5\xec\x50\x95\x61\xb9\xf9\x83\x3d\x4b\xa9\xeb\x0b\x13\xe8\x9b\x14\x0e\x88\x28\x82\x92\x2a\xbd\x81\x21\x01\x78\x0f\xb4\x19\x61\x22\x29\x72\xd5\x83\xc0\x4b\xed\x7e\x04\x05\x2f\x40\xdc\xe0\x62\x33\x3f\x95\x26\x29\x8e\xbf\xab\x56\xb0\xd6\x92\xc1\x9b\xc2\x83\xfc\xef\xe8\x79\xf1\xb1\xa7\x2b\xff\xca\xc0\xda\xa3\x96\xdc\x0c\x58\xe7\x38\x50\xf5\x16\x80\x35\x42\x68\x2b\xde\x84\xd4\xc1\x1e\xc7\xa1\xec\xd9\x34\x0d\x23\x38\xc3\xbb\xca\xa3\xab\xcd\xb0\xc6\x08\x78\x33\x7f\xe4\xa6\x60\xcb\xe6\x26\x8c\x24\x7d\xc2\xa3\x7b\xb7\x78\x28\x0f\xff\x11\x0b\x8e\xd0\x74\xfe\xaf\x9f\x1d\x6d\x13\xfd\x9b\x59\xa8\x7f\xf1\x35\x9a\xef\xce\x91\xd0\xc5\xa7\xef\x53\x14\x22\xf5\xd6\xed\xc3\xd9\x71\x3e\x13\x02\xb0\x30\xcd\x3e\xa5\x8f\xa3\x40\xb8\xa6\x1a\xf6\x36\xa8\x15\x91\x97\x3e\xda\xed\xd8\x8e\x8d\xde\x0f\xe0\xd6\x67\x1a\x9a\xe3\xa4\x85\x72\x76\x29\x73\xc0\x34\x89\xc0\xf6\x9d\x75\x0d\xa8\xc5\xd7\xf1\x71\xf0\x82\xd2\xf5\xcd\x72\x33\x48\x4d\x9c\x67\x53\x9a\xad\xa7\x04\x6b\x50\xca\x13\x7b\xce\xe2\x6a\xb1\x60\x7d\x17\x6f\x50\x3c\x41\x9d\x9e\xb8\x35\x69\xb3\x2b\xb3\x12\xef\xf1\x7d\x8d\x96\xbd\x5f\xe2\x0c\x1f\x80\xee\xfc\xa4\xdf\x11\xb8\x53\x59\x84\xf8\x8a\x6b\x77\xbd\x8e\x4e\xa1\xf7\xfd\xb1\xde\xdf\x2c\x27\x95\x4b\xfc\x19\xdb\x84\xf0\x49\xa0\x17\xe4\xa1\x87\x57\xbf\xa1\xfb\xf7\xef\x39\xce\x44\x2b\x6c\x32\x03\x1f\x2c\xa8\x7d\x14\xb8\xf1\xf1\xa8\xac\xca\xcf\xcd\x7c\x22\x83\x84\x54\xfc\x9c\xa2\x10\x95\x51\x61\x70\x9e\x91\xfd\x2b\x95\xbb\xe2\x3e\xf9\xb8\x04\x5c\xfc\x9d\x7a\xbf\x6b\x23\x29\x67\x60\x9c\xa3\x9d\x88\x8f\xdd\xf5\x9b\x3c\xe9\xd3\x4c\x13\x54\xbf\x58\x81\x1c\x14\xeb\x80\xbf\x35\x25\xaf\xbc\x59\x22\xc4\xcf\xce\x12\xbb\xa3\xd7\xf7\x99\xaf\x54\x5e\x7c\xed\xfe\x43\x6d\xbe\x33\x73\x00\x58\x17\x96\xff\x73\x2a\xd5\x3d\xae\x8c\xfb\x7e\x5c\xa5\x20\x60\x4d\x06\xc8\xc1\x3b\x95\x32\x75\x44\xca\x94\x1a\x97\xb4\x03\x1e\xda\x88\x42\xaf\x6a\x92\xc9\x55\x07\x0b\x45\x76\x25\x04\x02\xe6\x5c\xbe\x67\x9d\xc5\xe3\x95\x52\x60\x3c\xb3\x50\xef\x0c\x42\x56\x6d\x62\x0e\x66\xe0\x43\xa5\x0d\xaf\x1a\x06\x64\x8a\x17\x11\x4c\x17\xf8\x3b\x60\x5d\xbe\xa0\xfb\x49\x3e\xad\xd2\x03\x5a\xec\x37\x11\x1b\xa2\x79\x87\xf5\xb1\xf9\x44\xa1\x6c\xc9\xb2\x8d\x71\x07\x58\x19\x3f\xa4\x5f\xe1\xe3\x31\xc1\x83\xae\xed\xbd\xe8\xaf\x60\xc7\x48\xa3\x35\x4a\xd9\x74\x6d\xa8\x1a\x05\xfe\x02\x74\x10\x4c\xb1\xf7\x31\x45\x98\x99\x42\x9b\x91\x13\xa9\x9c\x59\x70\x42\x16\xc5\xa0\xc2\xbe\xf4\x3e\x6d\x6b\x00\x11\x1e\x8d\xbf\xaa\x62\x5b\x42\x34\x7f\x0e\x31\xc8\x98\xf9\x04\x12\xdb\xdb\x08\x48\x30\x3d\xfe\x39\x21\xc3\xd2\xc5\x82\x3d\x1a\x8f\xef\x12\xf6\x48\xfc\xfc\xdb\x34\x3d\x64\x01\xa6\x3d\x12\xdb\xea\x8e\x86\xa2\x41\x69\xf5\xcc\x96\xcd\xc2\x0e\x75\x5f\x16\x0f\x07\x70\xcc\xba\xa2\x53\xac\x97\xc2\xbb\xb9\x57\x0e\xd5\x93\x98\x25\x9e\x9c\x9a\x18\xe8\x80\xd2\x2e\xfe\x9c\x2b\xf5\x27\xcd\x25\x98\xe8\x8d\x0b\xa8\xbb\xba\xe9\xc5\xe1\x8b\xa1\x03\xd6\xc2\x76\xb1\xd4\xaa\xc8\x06\x08\x16\x5a\x87\xf9\x78\xf8\x9c\xd6\x06\x2c\x72\x57\x4c\x8a\x2f\xf1\xdb\xb8\x31\xf4\x55\xc9\x1b\x25\xe8\xc1\x09\x33\x86\xcd\x25\xbb\x4a\xc5\x52\x57\xb5\xf1\x2c\xe1\xcb\xca\xb2\x67\x29\x6c\x2e\xb1\xd1\x91\xb8\xbf\xd1\xab\x14\xa4\xa8\x8a\x39\xd1\x03\x73\xa2\xb8\x03\xe5\x87\x30\xe3\x34\x27\x55\x65\xaa\x3b\x48\x9b\xdd\x49\x35\x06\x36\x94\x14\x39\xc8\x4c\x7c\x3c\x1c\x53\x4b\xd2\x93\x3d\x31\x28\x42\x30\x77\x56\xc9\xe0\x5f\x7a\x6c\xc6\x49\x4e\xad\x36\xcb\xa7\x68\x90\x38\xc6\x9e\x78\xe9\xff\x37\xd0\xca\x91\x1a\x8d\xd6\x9a\x1b\x2a\x5b\xbb\x0d\xa7\x86\x3b\x88\xb9\x07\xdb\x2d\x85\xba\xbb\x5a\x88\x3e\x65\xba\x63\x26\x9e\x73\xce\x93\xcd\x85\x46\x17\x55\x53\x8f\x3d\xd2\x0d\x17\x43\xc7\xba\xc0\x82\xb3\xa6\x16\x9f\xb5\xc7\x16\x24\xe3\x24\xcd\xbb\x2b\xd4\x5e\x58\xdc\xea\x18\x4c\x28\x8f\xbc\xd2\xe6\x65\x90\x02\xd8\xc6\x9b\x66\x5a\x0a\x02\x48\x00\x64\x92\x80\x79\x02\x42\x33\x89\xb3\xb0\x45\x9a\x84\xbb\xe8\x21\x80\xa6\x0d\x3f\x61\xdd\x46\x8b\x55\x01\x6a\x4a\x78\xbf\x1f\xd3\x56\x23\x6a\x8d\xc5\x8a\x22\x32\x8e\x4a\x20\xbb\x6b\x8b\x98\xa5\xe6\x9c\x28\xee\x68\xcf\xec\x3b\x55\xd4\xf4\xb6\x4d\x97\x99\x23\xe6\xec\xab\x9d\xf5\xc9\x15\x75\xe9\x26\xca\x6d\x1a\x93\x99\x12\x45\x71\x60\x06\x6f\x29\x19\xd1\xeb\x9a\xc0\x71\xbe\x92\x4f\x90\x02\xda\x4d\xc7\x77\x08\xc5\xd8\xaf\x28\x64\xf7\xc2\xcc\x0f\x1a\x87\x33\x3a\x4e\x69\xd9\xff\xb1\x08\x0c\x5a\x76\x91\xa0\xc3\x99\x05\xdf\x6e\xe8\x62\x89\x0d\x95\x8d\x9b\x01\x89\x2c\xef\x52\x76\x9f\x78\x02\x3c\xb4\x03\xd5\x3d\xc9\xfd\x8f\x48\x24\xa6\x46\x13\xaf\x6d\xab\x52\xa2\x5f\xf1\xbc\x83\x8e\x01\x29\x84\x40\xcf\xbe\xe4\x90\x84\xed\x03\x94\xcd\xb7\x31\xe2\x64\x05\xdc\xbe\xaa\xce\xcf\xd5\xe3\x30\xb6\x6d\x52\x30\x99\x59\xe0\xbf\x43\x7d\x80\x8f\x4b\x8b\xd9\xfc\xfe\x7a\x2b\xcc\xf2\xd4\x66\x59\x7b\xc0\xb2\xb6\x48\x5d\xce\xab\x34\xe6\x7c\xb0\xcf\xab\x91\x36\x61\x07\x0a\x10\xe5\x2e\x79\x74\xf3\xf1\xd0\x77\x2f\xae\x43\xb6\x47\x70\x01\xaf\xb3\xd4\xb3\xe9\x52\x66\x7a\x36\x65\x63\x23\xe7\x04\xfa\x98\x4a\x29\x5d\x11\xff\x91\x0b\x0e\x6c\x64\x9b\x79\x1a\x36\x77\x15\x9f\x42\x72\xf5\x09\xe5\x07\x10\xfd\xbd\x8c\xba\xba\x54\xae\x69\x37\x16\xe6\xa3\x07\x33\x3e\x83\xe0\x17\xd1\xdb\x79\x6d\x2f\x49\x3e\x08\xd9\x94\x17\x1f\xc4\xc8\x70\x88\xa0\x53\x0a\xbd\x0b\x5c\xc0\x15\xa0\x3c\x05\x5d\x5b\x16\xb6\x4c\xcf\x74\x6c\x36\xe5\xf9\x54\x0f\x95\xa6\x12\x77\x1e\x0b\x5f\x94\xc6\x12\x80\x86\x13\x81\xa7\x92\x9f\x18\x0b\x44\x7a\xfd\x0c\xc8\x22\x12\xe6\x9b\xf4\x8a\xf9\x58\x25\xe3\x2d\x9b\x2d\x4d\x15\x01\x04\xf6\xbd\x9f\x28\x5f\x42\xf4\x89\xf1\x31\x2d\x1b\x20\x35\xdc\x0c\x74\x03\x8b\x87\x85\x08\x8c\x61\x46\x94\x3c\x87\x31\xb2\xa2\xaf\x6e\xe5\x36\xed\x85\x0e\x5c\x28\x6e\x07\x04\x8c\xef\x06\x8a\x99\xf1\x5d\xe5\x7c\xc6\x1f\x88\x10\x84\x21\x25\xde\xd9\xf0\x0c\xb0\x9d\x23\x5f\x4d\x5a\x36\xb1\x72\x4c\x66\xd1\x85\xc0\x87\xe7\x17\x54\x5b\xc3\xa2\x49\x6d\xb4\xba\xdb\xaf\x95\x77\xb4\xce\xe7\xaf\x6b\xf7\xf2\x13\x43\xe5\x6b\x7e\x02\x51\x1a\x76\x90\x53\xca\xec\x41\xb0\x0c\xcc\xd2\x73\xea\xa7\x4c\x3b\x0d\x9b\x46\x7b\xfc\x62\x0f\x96\xba\x65\x85\x86\x5e\x27\x0a\xf3\x66\xb7\x36\x66\xf6\x56\x53\xa6\x1f\x4f\x7a\x19\x90\xb0\xf7\xb4\x6f\xe4\x79\x3f\x50\x08\x3a\xfb\xc3\x21\x28\xe0\x6e\x6d\x84\x6e\xe7\x01\x49\xc8\xa0\xa8\x69\xb5\xa1\xe9\x19\xd1\x5a\x51\xc4\x97\xe3\x18\xcb\xae\x09\xfc\xc0\xac\x1a\x5d\x73\x5e\xd0\xd5\xe1\xa7\xac\x5e\x27\xf1\x20\x8d\x47\xe0\x0c\x97\xb0\x22\xe2\x42\xee\xa9\xde\xa5\x2c\xb7\x3d\xec\x3d\xdc\x2d\x1c\x28\xcd\xbb\x77\xab\xd4\xf7\xe3\x24\x15\xed\x00\x59\x58\x7c\x26\x57\xe9\x11\xb9\x6c\xe3\x16\xef\x56\xae\x22\xe4\x20\x81\x32\xa1\xbd\x08\x45\x17\x07\x19\x13\xa7\xf0\xce\x37\x87\x3e\x9a\xd8\x54\x7b\xa7\x89\x9b\xdd\xe2\xab\x67\x16\x38\xc7\x3e\x4b\x8f\x89\x8f\x4b\x91\xc9\xf4\x74\xbd\x1b\xe6\x93\x9e\xb3\xff\x35\x4d\x8e\xf8\x1e\x4d\x5a\x0c\x2c\x6e\x0a\x17\x7a\x57\x85\xba\x01\xd2\xfd\x9a\x6f\x53\xba\x3c\xd6\x0a\xfb\x42\x29\xd9\xcb\x97\xb9\x47\x1b\x2b\xf8\x96\x4a\x27\xdf\xd2\xf5\xcd\x7b\xd5\x54\xaa\x41\xdc\xe4\x24\xcd\xc9\x0d\x7b\xe9\xe1\x8a\xf6\x9a\xb9\xfa\xaf\x0c\x6c\x56\xcc\xf9\x6d\x14\x99\x4b\xaa\x9d\xea\x92\x1a\x0a\x51\xd2\x1c\x63\x4e\x30\x0b\x84\x4f\x54\x84\xbe\x8d\xfe\x2a\x5d\x67\xa5\x7e\x4e\x00\x24\x67\xb4\x08\x38\xd7\x7e\x85\xc9\xe0\xb9\x7a\xa6\xd3\x71\x97\xe9\x5c\x32\x66\xbd\x70\x8b\x73\x94\x2f\xe2\xbe\x66\xd2\x73\x4d\xc0\x5c\x70\x1a\x7a\x6a\x36\xca\x4d\x62\x36\x2c\x59\x71\xcf\xf6\x12\xee\x49\x18\x6b\x11\x43\xf6\x8c\x97\x01\x5e\xc1\xbb\xb4\x6f\x61\x7d\xba\xa0\x16\xdc\xd8\xa4\x69\xb2\x82\x65\x4e\xfc\x3f\xe8\x3e\xc5\x00\xa4\xcc\x2d\x99\xa9\x77\x4d\xdc\x0a\xd9\x69\x01\xeb\xc8\xa6\x12\xb5\xd9\x54\x45\xa7\x8e\x8d\xc9\x27\xa7\x05\xb9\x66\x2c\x2d\x90\x84\xe4\xe3\xc0\x6f\x60\x66\xd9\xa6\xa6\x63\xf7\x2a\xc8\xfe\x21\x32\x43\x46\x8b\x74\xcf\x0e\x4a\x87\x20\xbf\xee\xa1\x87\xc3\xe0\xa9\x52\xac\xfa\x55\xfa\x21\x6c\xf1\x08\x54\x9d\x99\xa3\xab\x87\x3c\x18\xaa\x8c\xec\x2f\x55\x45\x3a\x19\xe4\x45\x80\x8c\xe0\x58\x14\x03\x6a\xce\x8a\xf3\xaf\x74\x85\xf1\xff\xc6\x8c\x03\xaa\x06\x7a\x37\xf6\x14\x6e\xaf\x67\xf1\x8f\x4a\x87\xa5\xdc\xf6\xfa\x09\xa4\x79\x00\xc7\xc2\x49\x82\x8f\x03\x3f\x94\x49\xa5\x60\xaf\x22\x7b\xde\xc5\xc3\x71\x3c\xd3\xe2\x12\xf0\xb3\xb7\xf4\x32\xf9\x29\x17\x05\x50\xd2\xbc\xa5\x5c\xc4\x3e\xa5\x80\x17\x2b\xeb\x1f\xaa\x3a\x38\x1a\xca\xb6\xc6\x6a\x48\x9b\x15\xbc\x9e\x39\x7e\xbf\x91\x92\x77\x41\x83\xac\xab\x67\xe8\xee\xab\xed\xa0\xd4\x4b\x2f\xd5\xc3\x38\xcb\xc3\x8e\x67\x2b\x8b\x50\x15\x3d\x5b\x3e\x29\x05\x93\x07\x66\xeb\xa9\x6d\xda\x70\xd9\x2c\x92\xe2\xaf\x6b\x36\x1c\x93\x42\xba\x12\x6c\x5f\x3e\xb4\x8a\xba\x9b\x97\xae\x05\x74\xd6\xb7\x80\xfe\x0d\xa5\x93\x36\x88\x5b\xbf\xfc\xb3\x9d\xd4\xf4\xbb\x61\x53\x7a\xd6\x50\x3b\x5c\xd3\xe6\x40\x6b\x8a\x8a\x92\x77\xd3\x30\x8a\x6c\x3a\xe1\x47\x28\xe2\x20\x60\x69\xe8\x48\x91\x8d\x62\x3b\xa2\x34\x3d\x53\x8f\x93\xdc\x2a\xa8\xeb\x0f\x54\x35\xe1\x0f\xaa\xd2\x92\x3c\x59\x34\xcd\x66\x52\x53\x0a\x85\x1b\xaa\x2c\xbf\x11\xe8\x0c\xbc\x9f\xda\x9a\xaa\x5e\xc2\x7c\x41\x3a\x7c\x1e\x2b\x0a\x6c\x06\x51\x4d\x07\x25\x9c\x94\xca\x0f\x54\xb4\xc2\xa5\xd6\x44\xce\xe3\x48\x82\xa6\x31\xd2\x5e\xcd\x29\x6d\xbc\x55\xb5\xc1\x66\xd6\x4b\x87\x61\x8f\x04\x4b\x87\x8f\x75\x19\x38\x2c\x7e\x46\xb9\x0f\x15\xcf\x17\x00\xdc\x65\x25\x26\xf3\xb0\x74\x99\xd3\xd3\x84\x98\xa7\x61\x33\x47\xfb\x89\xfb\xd0\xab\xfb\x79\xa1\xe7\x99\x04\x40\xe1\xe3\xe1\x53\xca\x43\x24\x6f\x02\xe3\x76\x95\x21\xc7\x50\xc5\x7e\xed\x1a\xd4\x8b\x95\x8f\x4f\x9c\x57\x61\xd3\x64\x56\x34\x51\x10\x97\x30\x49\x87\x4f\x82\x7d\x0e\x8a\xfd\xaf\xfe\xcb\x9a\xde\x34\x8a\xb0\x4a\x36\x13\x1f\x33\xa4\x83\x88\x25\xdc\x5e\x77\x38\x3b\xbe\x9d\x5b\x2b\x30\x35\x5c\x4c\x3d\xf7\x8a\xc3\xe3\x31\x49\xb1\xcd\x6c\x39\xd8\x39\x4c\x56\x0c\x71\xa9\x5c\xae\x53\xfc\x15\x9f\xa8\xe0\xdf\xf4\xc2\xd6\x13\xb4\x5c\x5c\xc7\x17\xa1\x6a\x76\x82\x9e\x21\xe0\x68\xa4\x78\x58\x42\xbf\xa7\x8d\x01\xc6\x14\x12\xf0\xa0\x45\x2e\x41\x13\x32\xfc\x6e\xb5\x1c\xda\x38\x36\x93\x8f\xa7\xd7\xfb\x4a\xcc\x98\x10\xd0\x39\x87\x92\xad\x84\x51\xab\x69\x80\x96\x80\x43\xf2\x20\xa8\xfd\xd2\x2f\x78\xf5\x4b\xe7\xa5\xad\x2d\x7f\x52\xdb\x4c\xad\xf9\x6b\x31\x1d\xc7\xd5\x34\x91\x49\x57\x27\x95\x18\xed\xd7\xe9\x96\x01\xc6\x02\x5e\xc1\x5b\x60\xb3\x51\x49\x82\x3c\x10\x10\xad\x2e\xa6\x26\x6e\xf1\xe8\x90\xad\x4c\xd9\x4d\xfc\xea\x63\x9b\xe1\x53\xab\x22\x38\x4c\xb4\x9d\x7a\x0b\xda\x39\xf2\xbc\xe5\x7e\x64\x5b\x1d\x26\xe3\x69\x60\x87\x8f\xdd\x48\x68\x26\x69\x4b\x8f\xc0\x60\xac\x40\xeb\xf7\xa7\x6e\xd2\xb3\x29\xc9\x2d\x22\xf7\xba\xa6\xb1\xb8\x8f\x03\xef\xe0\xb4\xae\xdc\x48\x78\x0c\x88\x68\x8e\x4a\xb7\xfe\x1c\xb9\x92\x60\x9e\x15\xe1\x63\xbd\x6d\xa8\x63\x59\x25\xc7\xf7\x03\xc5\x73\xbc\x8f\x65\x05\xa9\x7c\x9c\xa7\xb6\x9f\xda\xd8\x0e\x52\xd2\x99\x71\x84\x92\x2d\x0c\x3c\x81\x99\x68\x38\xc9\xd4\xf5\xc9\xd1\x62\xd8\xda\xa7\x40\xf5\x7d\x23\x9a\x41\xa2\x89\x5c\x3c\x36\xa4\x21\xff\x36\x50\xa2\x3c\x27\xb4\x96\x88\xd0\x85\xb1\x7e\x69\xca\xd1\x43\x55\x9e\xdb\x43\x1c\x6b\xe1\xde\xd2\xe2\x87\x99\x79\x45\x99\xb6\x4f\xaa\xb7\x18\xc6\x59\x3f\x4c\xb5\xfa\xdd\x1f\x2a\xf5\xbb\x3f\x1c\xd7\x9a\x4f\xed\xdf\x24\xa8\x88\xc9\x2f\x20\x3e\xb3\xf3\x24\x82\x58\xc0\x14\x37\x35\x6d\x69\x27\x15\xd3\xf1\x1e\xb8\x02\x8d\x8d\x0c\xb4\x5f\x84\x57\x10\xb0\x05\x71\x99\x7d\xd6\x31\x56\x2f\x90\xc4\x38\x62\x08\x6e\x3c\x44\xe0\x35\x35\x52\x34\xbe\xe7\x1a\x9e\xec\x77\x0f\x72\xa6\x22\x93\x40\xcf\x00\x03\xe7\x29\xd5\x53\x78\x15\x6f\x0a\x78\x06\x46\x17\xb3\x2d\x02\x25\xb8\x73\x36\xa8\x7d\xe1\x2b\xbe\x96\x71\x40\x68\xea\x77\x28\xd9\xa4\xd2\x7d\xef\xb9\x11\x5e\x0c\x93\x38\x50\xd5\x47\x4f\xc4\x33\xd0\x57\x97\xb2\x10\x8d\x2d\x56\x7c\xa5\x75\x18\x01\xd6\xb9\xb1\x0d\x36\xb5\xe9\x6e\xba\x34\x59\xc9\xd5\x6e\xbb\x39\x1c\xb3\xd9\x1e\xaa\x60\xff\xd2\x50\xc3\xc9\xf4\x2e\x74\xdd\x8a\x45\xc7\x1a\x15\xc9\x5f\xcb\x68\xa1\x81\x0f\x30\xe6\x84\xc2\xe9\xa7\xa7\x39\x9a\xb4\xdb\x35\xe5\xf6\x7f\x65\xac\x12\xec\xf5\x69\xba\x83\x34\x9f\x52\x15\x81\x35\x05\xac\x7e\x5d\x8b\xc0\x9c\x52\xb9\xe1\x19\x1a\xcf\x20\x8e\x7c\x34\xdc\x2b\x64\x6e\x73\xa4\xe6\xb3\x62\xbe\x34\x3e\x71\x75\xfc\x34\xe9\x99\x38\x0f\x9b\x0a\xcb\x85\xc0\x31\x06\xcd\xf7\x87\xca\xf4\xe1\x91\xa2\xd2\xac\x98\x94\x4d\xb5\x31\xd2\xce\xe8\x25\xf2\x4c\xe0\xf9\x2e\x36\x6e\xed\xa2\xb1\xc6\xf6\xed\xf4\xea\x5c\x05\x5c\xa8\x8c\x33\x2f\x34\x94\xf2\x30\x82\x08\x00\x57\x97\x15\x13\x75\xd7\xe8\x19\xd5\x55\x42\xa5\x89\xa9\x9a\x72\xa6\xa2\xaf\x90\xa2\x5e\x31\x6f\x04\x89\xa5\xa9\x86\x37\x7a\x8e\xe6\x0d\xe6\xfe\x49\x2d\x4f\x69\xa2\x25\xe6\xd5\xf2\x83\x54\x6c\x9c\x8f\x1c\x23\xad\x1d\xc6\x70\xff\x98\x50\x58\xee\x39\x05\x17\x02\x13\x92\x26\x02\xe5\xd0\xfb\xcb\x3f\xbb\xf4\xcb\x3f\x8b\x62\x25\xd2\x45\x78\xa8\xf2\x71\xa9\x00\xc3\xb6\x65\x19\xf5\x54\xe7\xd1\xea\x84\xb2\xe7\xe3\xbe\x1b\xe7\x23\xe8\x74\x6f\x1f\xa8\xd8\xa0\x99\xf4\xec\x67\x68\xca\x0b\xad\x93\xc6\x35\x9e\xf0\x26\x4d\x47\x97\x28\x14\xeb\x8d\x6b\xb2\x2e\x7e\x47\x2a\x93\x63\xd3\x47\x77\xa7\xd5\x9c\x64\x06\x37\xa0\x62\xdf\xbe\x0e\xf2\xb5\x23\x51\xcd\xcd\xcf\xb9\xe6\xa9\xe2\x19\xe1\x23\x37\x79\x26\x02\xf1\x3e\xe9\xdb\xfc\x8b\x3b\xb5\xbb\x7c\x00\xf8\xf6\xd0\xb3\x00\x76\xd1\xb0\x44\x6f\x18\x4b\x2a\x61\xcd\xf9\xa3\xe1\xb8\x3a\x93\xd3\xf2\xd6\x26\x25\x59\x6e\x6d\xd4\x33\x4b\x36\x55\xda\xfa\x3b\x1a\x0a\x0b\xdf\x31\x7a\x71\x9c\xa9\x72\xf8\x30\x49\xcf\x4e\xea\x82\x9f\x6e\xb6\xfd\x5d\x25\x1e\xc4\x25\x76\xfe\x07\xed\xc0\x4d\x75\x53\xdb\x42\x26\x8b\x05\x7e\x6a\xe4\x87\xc8\xfb\x4a\x41\xfc\x34\x5e\x04\x38\x4d\x0c\x26\x20\xa5\xbc\xaf\xfb\x86\xef\x54\x59\x5c\x45\xe6\x88\x41\xaf\xa5\x0b\x84\x01\xaf\xf2\xf1\xc8\x35\xc6\x0d\x5a\x21\x08\x2a\xaf\x8b\x1a\x31\xbf\x0d\x11\x9d\x56\x02\x75\x4f\xd0\x95\xa2\x86\xf7\x39\x3c\x2c\x8c\xc0\x1f\x8d\x99\x62\xe6\x26\x8c\x19\xea\x97\x7a\x9f\xe7\xa1\xd6\x94\xc7\x4b\x0d\xed\x46\x42\x4b\x70\x34\xcf\xd5\x3e\x8b\x98\xfb\x7d\x0c\x7e\x63\x72\xe2\x9a\xc2\xd3\x30\x5b\x92\x2a\x34\xde\xdb\x3f\xc1\xaa\xc8\x27\xa5\x7c\xb5\x98\x47\x52\xc4\x94\x44\x17\x13\xe7\x96\x32\xe0\xbc\x55\x21\xa5\x37\x57\x57\xc2\xbd\x08\xac\xbf\x89\x5d\x88\x4f\xdc\x45\xe5\x83\xd4\x43\x62\xec\xff\x49\x33\x44\xbc\x40\xab\x3a\xcd\x52\x6e\x4c\x1a\x93\xd3\x2a\xbe\x40\xa4\x2b\xc6\x60\x15\x07\x6a\x4c\x36\xb6\xa3\x9b\x9f\xaf\x2f\x9b\x68\x59\x58\x42\x52\xd0\xa5\xb7\x28\x95\xde\x8a\x24\x7e\xd1\x46\xd6\x74\x06\xd6\x71\x45\x10\x0a\x7f\x4b\x59\x00\x7f\x6b\xcc\x10\x33\x6c\x1e\xc5\x2f\xa8\xad\xd5\xa7\x4f\xe5\x56\xde\x2f\xd5\x73\x9b\xe5\x61\x8f\x2c\xb1\x1c\x5b\xfb\x1c\x85\x2a\x22\x6f\xe2\x53\xa8\x56\x6a\x4d\x0f\x44\x56\x7c\xe5\xed\x31\x4b\xdb\x9a\xf3\xe8\x38\xae\x74\x8f\xed\x91\x7e\x94\xa4\x94\x1a\x4c\xf9\x4d\xf8\x16\x40\x6e\x91\x58\xa9\x39\xdb\x8e\xe3\x9a\xc9\x74\x0e\xcb\x21\x9f\x28\xae\xf4\x62\x34\x60\x0f\x1e\x35\xe7\xc5\x36\xe2\x23\x9e\x2b\xa8\xd7\xde\x2a\x3d\x58\xb2\xda\x35\xfd\x96\x8d\x8c\x68\x02\x62\xc9\xe3\x68\x94\x4f\x94\x2b\x63\x6a\x9b\xab\xcd\x48\x54\x50\xdc\xa6\xef\xda\x3b\xd6\xdc\x28\xeb\x9a\xb4\x65\xb3\x9c\xea\x61\x62\x58\x48\xc1\x1a\x36\x4a\x0a\xfc\xa4\x93\xee\x1a\x82\x79\xfc\x1c\xc4\x0c\xc4\xbb\x4c\xb5\xac\x9c\x51\xac\xaf\x24\x8c\x1e\xcf\x0e\x78\x1c\x15\xcf\xc4\x13\x45\x50\x08\x98\x05\xeb\x8d\x73\xe7\x28\x6e\x97\x1f\xd3\xd0\xab\x12\x24\x83\x3c\xcb\x4d\x5c\x0c\xfd\x27\x14\xf6\x77\x59\x51\xf4\xb4\xe3\xc9\xbe\x51\x11\x2e\x80\x55\x76\x53\x89\x65\xfc\x98\x00\x45\xc1\x9a\xe8\xb7\x34\xba\x88\x40\xe6\xb6\xe7\x4c\xe6\x83\x76\xdb\xb6\x74\xed\xe6\x92\x6e\x64\xd5\x36\xc6\xa8\xe4\xb5\xc8\x3e\x4c\x7c\xc1\x8a\x1f\xc3\xda\xfe\x7d\x65\xae\x79\x1d\xf5\x4f\xdc\xf1\x3b\x18\x4f\xe2\xdb\xe6\x8b\xe7\x17\xd5\x43\x2e\x52\x4b\x6a\x04\x97\xa0\x98\x5e\x86\x2c\x87\x9e\x76\xc4\x16\x6a\x12\x5f\x6b\x21\xfe\x28\x32\x39\xa1\x7e\xca\x1e\xa2\xa6\x44\xc2\x4f\xe2\xa3\xd8\xa7\x1f\xa8\xf2\x55\xd2\xa7\x14\x5a\x09\x43\xde\xd0\xc2\x90\x37\x54\x10\x9a\x99\xb0\xf5\x53\xc5\x3d\x63\xd5\xfe\x11\x05\x2a\xb8\x67\xa8\x86\x21\x6f\x98\x18\x01\x95\x72\xea\xcd\x5e\x9a\x64\xb2\xa1\xee\xec\xf7\x02\xd5\x6c\xb1\x85\x60\x4c\xd0\x38\x7a\x09\xd8\xe0\x9f\x85\xad\x02\x06\xf0\xbf\x54\x56\x18\x0f\x40\xaf\x12\xaf\x40\x5f\xc8\xdc\x3d\xaa\x7d\x79\x86\x27\xf7\x0d\xe4\x2a\xc8\xa7\x3e\x56\x62\xfb\x23\xec\xaa\x8e\xdd\xab\x0a\xf4\x94\x8e\x39\x11\xa5\x62\x65\x47\x4e\x31\x31\xf2\xd4\xcc\x87\x3c\xe3\x91\x49\x4f\x8c\xe8\x2d\x23\xec\xae\x41\x62\x11\xbc\xfc\x1a\xf2\x2e\x7e\x09\x2a\x0e\x4b\x4d\xce\x1c\x3b\x91\x84\xa6\x7b\xe6\x13\xb5\x8f\x76\x4c\xda\x0c\x4d\x4d\x35\xb0\x60\x18\x89\x2f\xe0\x67\x7d\x30\x63\x7b\x61\x33\x89\x5b\x83\x66\x9e\xa4\x53\x1e\xa0\xbc\xa8\xe3\xb5\x2b\x63\x17\x0e\xe1\x1a\x3c\xb6\x4d\x9a\x6c\xfc\x11\xb5\x06\x2f\x86\x91\x89\x8f\x6a\x2d\x98\xfb\x5a\xdc\x8c\x31\x32\x51\xea\xac\x5a\xf1\x4d\xcf\xa6\x61\xd3\x14\x99\xc1\xf4\x34\x47\xe2\xeb\x7c\x1d\x7c\x56\xc5\x16\xec\xa7\xc9\x91\xd5\x9a\x12\x95\x3e\x46\x57\xcb\xc7\x2e\x57\xc9\x06\x9d\x8e\xcd\x72\x56\xab\x81\x93\xd5\x8b\x0d\xc5\x5e\xe3\x7e\x3c\xaa\x7b\xfe\xfc\xb3\xa5\x1e\xad\x99\x85\x7a\xb3\x1b\x2e\x9b\xac\xa6\x7c\x61\x2e\x31\x32\xc0\x67\x8a\x4b\x94\xd9\xe6\x20\xa5\xc6\xe3\xa7\xe9\xa5\x83\x51\xc0\xb2\x77\x4a\x5f\xf6\x90\x67\xe9\xcf\x69\xfb\xe3\x62\x6c\x20\xe7\x78\x47\xdd\x0e\xaa\xae\x4c\x07\x0e\x54\xba\xf8\x90\xb2\x62\x14\x8f\xa0\x6f\x4d\xf3\x6a\xe5\x19\xd0\xa9\x11\x77\x7d\x30\x54\xf5\xac\xad\xa1\x36\x25\xde\xdb\xf0\x94\xd7\xdb\x98\x8b\x38\x39\x5d\x2a\x23\xcd\xef\x77\x96\xa8\x88\x59\x44\x1b\xb6\xb8\x4c\x11\x8d\x7d\x56\x75\xaa\xa4\x26\xb7\x9d\xd5\xdd\xca\x14\x72\xe7\x48\x41\x9a\xa7\xf8\x19\x8a\x44\xb3\x87\xcf\x2f\x62\xb0\x63\x56\x9e\x04\xf2\xc9\x5f\xd0\x50\x9e\x2f\x27\x83\x17\x55\xde\x12\x2f\x43\x09\xcd\x44\x6a\x4f\xfc\xaa\xda\x13\xbf\xaa\xda\x16\xb2\xc8\x5a\xf4\x38\x8e\x69\x90\xf3\x89\xaa\x86\xb5\xc2\xac\x99\x0c\xd2\x8c\xf5\x1d\x30\xed\x8f\xa9\xfe\x50\x86\x50\x85\x19\xb3\xfd\xa1\x11\xb3\x3a\xeb\x9b\x98\x25\x2b\x9c\x72\xa2\x57\x57\xde\x54\x7d\x1e\x91\xcd\x77\xd5\x16\x5e\xf1\xf9\x41\x31\x1c\x00\xbb\x9d\x50\x74\x3d\xe0\x22\xfc\xff\x87\x4a\x50\x7c\x4d\xf3\xe7\xca\x22\x4a\x07\x0f\xd6\xad\x61\xe1\x47\x14\x26\x4f\x6a\xa5\xa6\x93\xa5\x69\xf6\xf9\xfa\x72\xd8\xcc\xc3\x9e\x02\x13\x2f\x06\x1e\xce\xbe\x38\xdc\xa7\x44\xeb\x7e\xca\xb7\x26\xde\xc7\x45\xe1\x75\xee\xc1\xb2\xce\xce\x11\x23\x07\xb4\x37\x3f\xd7\x50\x38\x20\x0b\x06\x61\x6c\xdc\x0b\x74\xf1\x91\xd8\xf7\x58\x09\xee\x51\x86\x8e\x28\xed\xdd\xa1\xb7\x0b\xbc\x83\xa0\xc6\x09\x47\x17\xcb\xb2\xd8\x70\x16\xd7\x2b\xa6\x39\x34\xb0\x10\x19\x5c\xa7\x55\x1d\xf5\xe0\x77\x00\x21\x61\x5c\x8d\xf9\xcc\x7c\x8d\xc0\x30\x6c\x29\xa7\x50\xbd\x03\xf2\x39\x31\xaa\xfd\xd2\x2f\xf0\x24\x66\x0f\x75\x94\xfb\x3f\xd1\x4a\xa9\x30\x37\xc7\x52\xf8\x21\x41\x5e\xd8\x1d\x6f\xf1\x2c\xc4\xa6\x52\xae\xd4\x4d\x4f\x17\x21\x61\xee\xb9\xdf\x28\xb0\x5f\x51\xde\xbe\x57\x86\x5a\xb6\xa9\x88\x6a\x8b\xe8\xb1\x35\xe9\x8b\x79\x68\xf4\xc1\x1a\x30\xe6\xd4\x8f\xd2\xbb\x48\x51\xfa\x69\xb1\x68\xe3\x66\x57\x8b\x72\x9d\xd3\xa2\x5c\x45\xbc\xeb\x0a\xbf\x83\x0e\x1b\x2e\xe2\x01\xbe\xd8\xf0\x51\x20\xd7\x02\x81\xd5\x3e\x3b\xd2\x69\x6d\x44\xcd\xbc\xf8\x20\x06\xc7\xff\x3b\xf4\x4c\x2d\xde\xe4\x84\x90\x55\xa1\x4a\x60\xa2\x28\x34\x71\x13\x09\x2b\xb2\xbc\x2b\x0a\xc6\xbc\x32\x86\x9d\x9a\x2e\x53\x6b\x25\x08\xd1\x8a\x6a\xa7\x95\x17\x90\x78\x51\x4e\x14\x8f\x0b\x09\xd3\x77\xe9\x5b\x71\x7c\x41\xc1\x79\x1b\x8a\xbd\x15\x0f\x9a\x91\x35\xe9\xee\x62\x74\x3a\x0f\x12\x8f\x70\x72\x4c\x25\x7a\x70\xdb\xda\xbc\x1c\x98\x7d\x0a\xe8\x00\x16\x90\x5f\xa3\x9f\xc2\xcd\xec\x28\xd9\xf3\x1c\x3c\x58\xfc\x77\x89\x7a\xf7\x5e\x13\xff\xf1\x0b\xda\x01\xf5\x5a\xa0\x34\xb7\xdf\xae\x20\x37\xbe\x5e\xcf\x6c\xd4\x4a\x7a\xd8\x37\x5d\x4b\x87\x6f\xef\x28\xf5\x21\x1c\x98\xad\xb7\x6c\x2f\x69\x16\x19\x13\x00\x3f\x69\xb2\xaa\x39\x3b\x9a\x73\x5a\xea\xfb\x42\x25\xa9\x3b\x33\xcb\x61\xdc\xc9\x38\xe1\xc7\x08\x9e\xd4\x76\x78\x9b\xf4\x4c\x00\x05\x72\x0f\x20\x8a\xbb\x77\x15\x47\xb0\x9f\x14\xef\xaa\x25\x0a\x5c\x12\x2b\xd3\xb0\xe1\x13\x35\x9c\xfb\x51\x32\x68\x6b\x3e\xd8\x65\xfc\xa5\x68\xdf\x55\xc9\x33\x40\x2b\xa9\xe6\xe4\xc0\x2e\xd1\x40\x10\x0d\x8f\xe7\x54\xdf\x8e\x89\xc2\x2c\x0f\x9b\xda\xf4\x98\x07\xb0\x88\x34\x3d\xe5\xca\x31\x24\x1a\x51\x53\xbe\x54\x8c\x7f\xf1\x49\xb0\x9d\xa5\xf3\xd2\x4b\xf5\x2c\xa9\xf9\xde\xec\x3b\x6a\x26\xdf\x51\x72\xa7\x4d\x33\xc8\x30\x19\xbc\x73\xc8\x7e\x17\x25\x6e\x5f\xcd\xa7\xa7\xeb\x8b\x49\x92\xe5\x13\xbe\xda\x7a\x97\xb0\x09\xee\x7e\x15\xd9\x88\x8a\xfc\x34\x1b\x2c\x26\x69\x2b\x8c\x4d\x6e\xd1\x8c\x8b\xcc\xf6\x82\x82\xda\xee\x07\x8a\x83\x54\x2a\x92\x93\x41\x44\x6e\x27\x54\xcf\xde\x45\xfa\x30\x46\xf1\xdb\x18\x41\x62\x03\x5c\x35\x70\xc9\x43\x19\xbb\x28\x42\x94\x77\x15\xe1\xeb\x5d\xad\xa7\x4c\x7d\x69\xf3\xe2\x3e\x80\xb2\x35\xd6\xe6\x1f\xd2\x66\x80\x9d\xfb\xbc\x4a\xb1\xe2\x97\xdf\x78\x79\x42\xeb\xd8\x3c\x52\x8c\x8e\x8f\x86\xaa\xad\x66\xa2\x51\xc6\x8a\x66\xeb\x83\x38\xb3\x79\x1e\x89\x5b\xbc\x03\xdb\x5d\xeb\xc8\xbf\x45\x08\x86\xe9\xf2\xe9\x63\xfd\x0f\x63\x0b\x82\xae\xb0\x86\xe8\x87\x45\x46\xb1\x4a\x72\x33\xb5\x45\xd8\x33\x86\xe2\xb0\x55\xb5\x74\x9c\x3c\xe9\xb5\x09\x96\x32\xf4\x0d\xa3\xfe\x03\x7e\x92\xf3\x38\x39\x78\x90\x83\xfe\xf7\xb0\x77\x4b\xe7\x54\xb9\x2f\xa9\x98\xcc\xb9\x8d\xa2\x30\xb7\x93\xbe\x97\xe3\xa6\xf2\x3c\x38\x4e\x79\x98\x98\x40\xd2\x78\x41\xca\xfc\xd5\x2a\x23\x8e\x48\xac\xa0\x38\x7d\xa0\xe5\x48\x52\x89\x2a\x77\xae\x41\x73\x09\x5b\x08\x5b\x9a\x0c\x7d\xa7\x13\x1b\xc6\x81\x55\x7f\x5c\x85\xa3\xa0\x9f\x58\x2a\x09\xce\xb9\x4a\x74\xcd\xd9\x23\x5c\xd3\x35\xd2\xcd\x40\xd9\xaf\x72\xeb\x38\x22\xdc\x1f\xd1\x9d\x01\xa1\x80\xdc\x05\xbb\xec\xc2\x16\xca\xf9\xad\x4c\xcf\x30\x3c\x07\x0a\x2d\x1e\xe6\x25\xde\x81\x10\x45\x5e\x51\xf3\x78\x31\x32\xdc\xf0\x82\x21\x77\x3f\xf0\x7d\x9f\xf7\xb5\x37\x77\xdf\xa6\x82\xea\x3b\xb9\xc7\xf9\xfd\x5c\xbe\xbd\xaf\xe4\x71\xca\x2f\x6e\x66\xa1\x58\xb4\xb2\x24\x36\xe4\x8d\xef\x86\x29\x68\x10\x7c\xac\x7d\x77\x07\x51\xb4\xa7\x18\x8c\x62\xe7\xe0\x51\x5d\x18\x1e\x62\x4a\x3d\x89\x20\x0e\x6b\x9e\x36\xec\x64\x1a\x30\x77\x50\x62\xbd\x93\x76\x4a\x7a\x09\xa2\x6e\xad\x8d\x05\x7c\xef\x90\x3d\xd2\x4f\xd2\xdc\x19\xa8\x22\x42\x60\x20\x8a\x4f\x94\x9d\x70\xdb\x84\x69\xb4\xba\xdb\xc3\xf8\x77\xf4\xd7\x0e\xc7\x5a\x36\x7d\x09\x0c\x10\x08\x42\xce\xdd\xd0\xc7\xc4\xdc\xb8\x36\x54\x95\xe3\x47\x0a\x4a\x69\x9b\xac\x49\xab\x20\x77\xe0\x00\x5e\xc0\x48\xe0\xe3\x8a\x6d\x65\xb6\x9e\x25\x51\x88\xba\xbd\x68\x86\x78\xd8\xeb\x16\xa2\x68\xe8\x3a\xce\xfe\x07\x7e\xbf\xf9\xea\x50\xf1\x3c\xfe\x34\xa0\x08\x17\x4f\xf0\x2a\x02\x4e\xec\x96\x1f\x51\x88\x8a\x00\xe2\x1f\x21\x5b\x62\x1e\x06\x72\x4b\xe9\x2c\x2a\x46\xae\x60\xc6\x18\x88\x78\xe9\xd7\x87\x45\x34\xe1\x5a\xcc\xe6\x45\x25\x10\x6d\x6c\x4e\x22\xa3\x08\xa9\x69\xcc\x4d\x3d\x87\x57\x2e\x5e\x5a\xf4\xdc\x98\x3c\x37\xa2\xb8\x1d\x65\xc0\xff\x16\xb3\x08\xef\xe3\x1c\xa5\x0d\xae\x05\xec\xc0\xac\xd3\x80\xa7\x27\x0d\x68\xf1\x24\x26\x21\x7b\x6d\x01\xc0\x61\xdb\x6b\x84\xde\x58\x15\x4e\x2a\xa0\x06\xc9\x01\x22\x8f\x33\x54\x3a\x06\xa9\xed\x5f\x04\xb5\x2f\xcf\x38\xd5\x5e\x40\x4e\xce\x2a\xf8\xd5\xfd\x73\x5b\xeb\x94\x49\x00\x0a\xfb\x7f\x14\xa5\x71\xd1\x84\x51\x32\xc8\x51\xeb\x00\x3c\x78\x42\xbd\xde\x1d\x0d\x7a\xc0\xfc\x0f\xca\xab\x84\xb5\x21\x30\xe2\x36\xab\x9b\x2c\x63\xf4\xb5\x29\x4e\xba\x97\xb0\xbd\xa0\xfa\x4a\x3a\xa9\xb5\xb9\x20\x8f\x22\xa1\xe7\x5f\xc6\x95\x60\x5b\xd1\xe9\xb5\x99\x85\xfa\xab\xfb\x67\xc0\xb2\x11\xef\x3e\xa5\x7b\x8c\x78\x53\x1b\xfc\xf1\xff\x57\x08\x66\x16\x25\x2b\x62\xb2\xe0\x84\xa7\x5f\xf3\x27\xa5\x18\xe5\xf3\xf5\xc5\x64\x75\xc2\x93\xd6\xee\x52\xf3\x34\x26\x16\xfc\x01\x11\xe1\x1f\x53\x3c\x99\x9e\x89\x4d\x87\xf7\x38\xe7\xde\xeb\x22\x9b\x0d\x57\xd3\xeb\x0e\x7a\x26\xe6\x7a\x93\x6b\x1f\x7b\xd5\xdb\xec\xab\xfa\x07\xc7\xbf\x48\x8c\xf7\x00\xf6\x90\x37\x52\x6e\x9f\x3b\x04\x0c\x83\xa8\xd7\x8e\x81\x58\x7c\x99\x63\x0f\x7b\x6a\x22\x06\xa3\xac\x1a\x9f\xf1\xdc\x9a\x5c\x54\xe5\x30\x04\xc5\x3a\x10\xe8\xce\x69\x5c\x0f\x62\xd7\xcb\xa5\xc6\xb1\x62\x31\x60\x65\x33\xdb\x77\x3a\xa7\x18\xb3\xc7\x02\xdf\xc6\x78\x4c\x11\x9d\x8b\x55\x9f\xa9\x4c\xce\xee\xf0\x03\x9a\x43\x7c\xac\xe0\xb8\x95\x24\xa1\x92\xd8\x01\xa9\x9d\x5f\x45\x2a\xcd\x27\x63\xad\x7d\x51\x68\x77\xab\xba\xdd\x9f\x21\xea\x46\x51\x78\x9d\x96\x0b\xa9\xa4\xe0\x06\xf9\xcf\x86\xca\x2f\x64\x43\x75\x59\x6f\x28\xb6\xc6\xbf\xa9\x12\xf0\x25\xd5\x3a\x0a\x90\xb0\x5b\x1c\xa3\x77\xaa\xfa\x5b\xc4\xbd\xec\x96\xda\x07\x7a\x49\x1a\x66\xdd\x30\xe7\x1e\x0a\xf1\x6e\xf1\x44\xae\x4b\x25\x0b\x19\x4a\x73\x72\x93\xfa\xec\x19\x38\xdd\x9b\x34\xf4\xf9\x58\xa1\x41\xcd\xd4\x34\x97\xc8\xfb\x05\xf5\xe8\xf1\x56\x17\x1a\x1e\x7c\x12\xa8\x9d\xf7\x1d\xd5\xca\xad\x9d\xb9\x4d\xbf\x6f\x4d\xca\xac\x00\xac\x2f\x3f\x0c\x3c\x6f\x43\x97\xf7\x3b\x61\x92\x76\xc2\x44\x55\x7c\x7e\xa2\x6a\xe4\x3f\xa9\xf2\x60\xcf\x6c\x14\x21\x02\x17\xdf\x8b\x9a\x93\x78\xbe\xa1\xa8\xf8\xef\x7b\x3d\x80\xd5\xb8\x95\x26\xbc\xee\xe0\xc1\x43\x5b\x98\x8f\x2b\xf2\xec\xb9\x43\xf5\x76\x68\xb2\x66\x82\x67\x2e\x7a\x24\xbe\x88\x31\x66\xdb\xdb\xb1\x71\x33\xb4\xd9\x2e\x5f\x7a\x5c\x0f\x54\x46\x76\x4f\xfb\xca\x83\x48\x8e\xf2\xe9\x35\xc2\x2e\xf9\x38\x50\x72\x74\xeb\x8a\xc5\x95\x44\x2d\xe8\x3e\x69\x1f\x25\x61\x1d\x78\xd9\xe2\x8d\xa1\xdf\xdd\x4e\xd2\xf7\x22\xef\x86\xac\xac\xee\x40\x55\x66\x12\x73\xbe\x23\x70\x5e\xb4\x08\x8f\x95\xb2\x1f\x67\x7c\x0d\x14\x58\x77\x05\xd2\x7c\x91\x89\x50\xe1\x5c\xab\x38\xcf\x53\x3e\xbb\xad\x69\x03\x37\xf1\x19\x12\xe3\x1b\x1a\x60\x40\xcb\xd9\xa3\x10\x04\xa3\xb3\xce\xfe\x3b\xcb\x93\x3e\xb1\x1d\xb0\x33\x7e\x86\x62\x18\x70\xef\xbf\x8b\x5d\x5a\xe8\xee\x35\x27\xb4\x30\x09\xa1\x6d\x3c\xeb\xb7\xb5\x7c\xeb\x27\xa5\x41\xf6\x9f\x92\x24\xff\x98\x55\xdd\xdc\x50\x35\x8c\xcc\x39\x68\xbd\x9d\x5a\xdb\x72\x0e\x9e\x0e\x8e\xf1\xd0\x8c\x02\x4b\x8a\xfc\x28\x14\x29\x30\x20\x08\x3f\x51\xd6\x5b\x6b\x0a\x8c\x5b\x43\x0c\xc3\x7f\xa4\x6c\x09\x6d\xdc\x72\xfd\x90\x18\xe5\xe8\x0e\x14\xa7\xcc\x9a\x53\xd9\xff\x24\x18\x13\x87\x7c\x1c\x49\xba\x67\x5a\x76\x52\x65\xa4\xdc\x71\x87\xe1\x35\x45\x0f\xd6\x19\x96\x17\xdf\x27\xc9\x92\x6a\xb1\x4e\x07\x2d\xcb\x95\x9a\x31\x52\x87\x00\xb5\x63\x80\xd4\xa0\x37\xa9\xaa\x21\xf7\xf9\xd5\xf3\x99\x96\x62\xa3\x60\x49\x36\x48\xe5\x46\xd1\xec\x4e\xaa\x0b\x79\x92\x40\x37\xa0\x99\xbb\x47\x3e\xac\xf8\x98\xc2\x0a\x24\x9e\x6f\x29\x02\x74\x9e\xc4\x36\x9b\xf4\x32\xd2\x90\x40\xc7\x1d\x82\x70\x81\x75\xe4\x1a\x7d\x5e\x84\x9d\x9e\x71\xd9\x47\x18\x37\xc3\x7e\xc4\x39\x3c\x50\xba\x2d\xfa\x0a\x24\x8e\x4f\x35\x7c\x17\xe1\xc3\xb2\x62\xf9\x5c\x7d\x7e\xff\x0b\x9e\x92\xf0\x5d\xa5\x7c\x78\x98\x7a\x45\xc7\x94\xdc\x91\xa1\x3d\x42\x55\xde\xcd\x59\xed\xcb\x47\xc3\x00\xe1\xc6\x7b\x81\xae\x76\x80\x6e\x81\xfa\xc8\x8d\x40\x59\x6d\x5d\xc0\x56\xe8\x76\xae\x03\x52\xfe\x7c\x82\x50\x5a\xe0\xd0\x1f\x68\x57\xa1\x2d\x0a\x12\x5d\xa6\x35\x3d\xed\x34\x67\x8b\x58\x47\xa8\xd5\xbe\x50\x7e\x93\xa2\x51\x56\x47\xa1\x5d\x04\x97\x71\xc7\x85\x0f\x4b\x61\x6e\x5a\xa6\xe6\xf9\x05\xbc\x8a\xf0\xc9\x18\x2f\xb1\x67\xd3\x67\x54\x57\xc8\x35\x5a\x3b\x05\x2a\x2d\xbe\x1c\x70\xc2\xce\x86\x22\x5c\xb2\xe6\x2e\xc0\x76\x14\xbc\x11\x80\x5f\x0b\x10\x04\x8b\xe9\xa2\xdf\x0d\x76\x22\x68\x77\xbd\xeb\x73\xca\x81\xd1\x07\x1c\x2c\x1f\x81\xe8\x04\x0d\x33\xc0\x51\xae\xa2\x36\x8b\x07\x36\x86\x6b\xbd\x0b\x8e\x95\xc4\xb7\x1e\x6e\x89\xc2\x36\x3c\x9d\x11\x46\x4f\x8e\x94\xac\xd3\x95\x61\x11\xc4\x33\x45\x51\x29\x4e\xec\xc4\x12\x86\xfc\xe7\xfb\x74\x63\x98\x63\x77\x10\x8f\x88\x0a\x5c\xcd\x39\x8e\xee\x6e\x50\x02\xc1\x7f\x85\x81\x20\x32\xaf\x74\x95\x98\x21\x5b\x3a\xec\x39\x4d\xfb\x08\xcb\x1c\x23\xd4\xe7\x5f\xac\x2a\x41\x92\x94\xf3\xae\x6d\x1c\xa6\x83\x07\xf9\xf8\x56\xe0\xe7\xc6\xae\x86\xee\x11\xc7\xcf\xb3\x83\x84\x9a\xac\x37\x2b\xa5\x8c\xb3\x3c\x89\xf2\xa3\x3d\x13\xab\xa6\x38\x1e\x35\x7c\xe2\x28\x0b\x51\xd2\x5b\x34\x29\x5a\x2b\x24\x32\xf1\x18\xc7\x0f\x86\x0a\x56\xbd\x11\x3c\xa7\x04\x55\xd2\xa4\x17\x66\x96\x1b\x03\xd9\xd5\x57\x75\x5b\xb3\x15\xa0\x14\xcb\x7c\x68\x4a\x06\x44\x2d\x2b\x4b\xa0\x93\x24\xf5\xf2\xa4\x0a\xbd\x75\xd4\x1e\x48\xb0\xa1\xc0\xb2\xa6\x03\xbf\xbb\x3a\x39\xa9\xb2\x8c\x6c\x47\xc9\x0a\xc9\x96\x2b\xe3\xdd\x8f\x55\x23\xfc\xc7\xa5\xc4\x6b\x7a\xba\x9e\xa7\x54\x19\x99\xf0\xd1\xdf\x43\xcc\x12\xa4\x93\x1c\x7a\x4a\xd7\x84\x3c\x16\xd3\xee\x74\x4d\x1c\x66\x39\x24\x7f\x0e\x39\x8e\xa8\x26\x8c\x56\x08\x39\xcf\x08\x4b\x0b\xa1\xa7\x38\xfd\x7a\xf4\xa4\xec\x7b\x30\xb3\x20\x4d\x4e\xec\x62\x88\x29\x73\x67\xa8\x9c\xe8\x58\xa4\x12\xa4\xbf\x27\x1a\xbe\xf9\xa9\x6c\xad\x39\xbf\xbf\x1e\x59\x74\xe6\xb1\x4a\x0e\xa0\x1a\x70\x6d\xd0\x43\x71\x13\x69\xbb\x28\xc2\x29\x48\x39\x74\xfa\xc6\xa2\xaf\x5f\x8c\x26\x2c\xeb\x1f\x0d\x7d\x01\x40\x4b\xfe\xc5\x36\xec\x74\x17\x93\x94\xf0\x40\x97\x26\x14\xcf\x09\x20\xa0\x14\x9d\xf9\x8c\x5e\x98\x24\x1d\xcf\xa8\xb6\x6c\x4a\xbd\x75\x77\xe4\x37\xf1\x08\xf8\x04\x91\x24\x9e\xc7\xd7\xb5\xd0\xdc\xd7\x4b\x88\x31\x35\x0a\xf5\x93\x54\x02\x19\x25\x36\x72\xc8\xc9\x33\x78\xaa\xf5\x4a\x92\x66\x39\xc5\x76\xb2\x10\xd7\x9c\xff\xca\x86\x32\xdb\xef\xd9\x22\x1f\xb1\x10\xcd\x77\x31\x9b\x5f\xa3\xab\xc4\xc8\x0f\xb1\xbe\x92\xd0\xb5\xc4\x43\x61\xcc\x5c\xe1\x73\x0e\xa6\x4d\x8e\xac\xa6\xe1\x62\x42\xd5\xa5\xb0\x59\xf3\x9b\x08\xa6\x32\x1f\xbb\x54\x59\xf4\x99\x5d\x40\x7f\x56\xb7\x0c\x9f\x2d\xd5\x73\xbc\x2a\x68\x68\xb8\x0c\x84\x0d\x99\xc9\xd8\x7c\x52\xfa\xdc\xfc\x5c\x7d\x10\xf7\x53\x4b\xda\x4b\x35\x35\x16\xd7\x15\x19\x75\xdd\xc5\x86\x9d\x24\x6a\x2d\xda\xb4\x43\x29\xab\x4b\xdb\x7d\x7f\xcf\x86\x2a\x26\xf6\x5f\xee\xbd\x4c\x02\xc9\x18\x9a\xec\x48\x8a\xbd\xe1\xb4\x2a\x0b\xdd\x52\x3a\xa9\x8c\x8d\x0b\x02\x5c\x51\xea\x68\xa7\x49\x9c\x43\x0c\x41\x9c\xdc\x6b\xce\x33\xee\x8a\xd2\xad\x68\xb6\xf6\x28\xb6\xe6\xe6\x50\xb1\x35\x21\xb4\x28\x42\xf7\x6a\x71\x64\xd7\x79\x3e\x19\xfa\xfc\xe1\x94\x92\x2a\x62\x3d\x48\x07\x2d\x38\xd5\xc5\x8a\x1e\xc2\xe9\x7a\x37\xc9\x72\x35\x3e\xde\xd2\x3a\xaf\x2a\x06\xb4\xff\xd9\xdf\x9b\xd4\xdd\x88\x4a\xfb\x76\x6d\xe8\x5b\x79\x1e\x6a\x57\x8c\x1f\xb9\x64\x70\xa5\x9b\x24\xfd\x22\x88\xf6\xc3\xfb\x1c\x6d\x79\xa2\xa1\x42\x83\x12\x88\xe1\xee\x91\x6f\x04\x78\xae\xf1\x19\x05\xe2\x64\xd9\xe3\xa5\x55\x9f\xf5\x60\x75\x3b\x19\xc4\x2d\xe6\xe7\x72\x67\x00\xdd\x94\x74\x09\xf8\x44\x38\xe2\xbe\x6b\xbf\xc1\x71\x1b\x2e\x9f\x8c\x7c\x12\xf0\x86\x5d\x09\x33\x74\x4b\x21\xa1\x7e\x10\xf8\x44\xfb\x81\xca\xea\xdb\x49\xb4\x94\xd5\x3c\x3a\xfe\x11\x85\x4f\x7c\x5c\xc2\x0c\x16\x5e\xa9\x47\x83\x23\x83\x34\x4c\x06\x98\xdc\x40\x24\x91\x54\xf0\xb1\x92\x56\x6a\x25\x83\xc5\x22\x12\x2e\x22\x1f\xdd\x97\x30\xa6\x69\x24\xc1\xad\xb7\xf6\x4e\xf3\xae\x4d\x27\x7d\x69\xf9\x23\x44\x48\xc8\x61\xbf\xad\xc8\xbb\x37\x31\x0a\xf1\xf0\x1f\xba\xc9\x5e\x4c\xbe\x38\xa7\x97\x07\x28\x16\x75\x77\xe4\x4d\xfb\x46\x3e\x1f\x3e\xa7\x05\x9d\xae\x81\x9f\x34\x5e\x8d\x33\x93\x7e\x0b\x39\xa9\xb5\xf4\xef\x52\x0c\xcb\xf2\xa0\x14\xe7\x22\x9c\xd2\xa6\x2f\x51\x11\xf8\x58\x1e\xaf\x02\x4a\x7a\xe2\xf8\x15\x55\x8d\x6b\xd9\x6c\x09\xcb\x85\x6b\xb8\x28\xae\x4c\x08\x61\x15\x35\x6e\x6e\x2a\x9f\x50\x4e\x89\x28\x3e\xc8\x3a\xe5\x1f\xb4\x27\x6b\xf6\x6c\x96\xa5\xd9\xcb\xbb\xb4\xed\x39\x74\x03\x45\x14\x87\xde\x95\x13\x34\x74\x54\x15\x9e\x41\xe2\xa5\x4c\x0f\x82\xe2\x82\xdf\x7a\x6e\x34\x2e\xf1\x16\x7f\xb6\xe6\xf4\xda\x3e\x09\x94\xde\xe8\xbb\x04\x4a\x88\x92\x41\xf1\x12\x44\x4b\xcd\xb7\xd8\x9f\x1f\x7a\xbf\x83\xdb\x0a\xa7\xde\x42\x86\xe3\x84\x87\x8b\x67\x83\x8c\xff\x7f\xd5\x56\x88\x27\x55\x81\x6e\xc7\xc8\x2b\xb7\xfc\x2e\xc2\x75\xf1\x02\x57\x9b\xe5\x79\x3d\x2d\x6f\x32\x44\x89\x68\xee\xc6\x50\xc9\x30\x4c\x34\x14\x39\xf1\x3d\xed\x18\xfc\x1e\x00\x50\xc4\xcf\x8f\xf0\xfc\xf8\x86\x55\xb6\x7e\xae\xb4\xf6\x16\x83\x6b\x91\x3c\x06\xe7\x65\x8f\x44\xfd\x9a\x8f\xc7\x72\x9c\x38\xef\xee\xa1\xab\xa1\xfb\xf9\xed\xe7\x69\x3c\x23\x4c\x78\x80\xf2\x85\xb8\x01\xd4\x9c\x3b\xff\xd3\xb0\xa8\x74\xae\x7b\xd3\xe2\xb5\x73\x2d\x18\x5f\xee\xe7\xa5\xc3\xec\x16\xfd\x3e\xd6\xbb\xaf\xba\xba\xbc\x69\xb7\x4d\x98\x32\xcc\x8c\xf4\x49\x48\x22\x18\x40\xbc\x13\x21\x92\x3d\xad\xda\xed\x4f\x68\x21\xe8\x1d\xa3\x7d\xae\x2f\xaa\x65\x27\x94\x23\xe0\x2d\xdd\xa1\xb7\x89\x97\x8b\xfc\x6d\x77\x43\x2e\xc2\xc6\x2a\x4e\xc3\x8d\xdf\xa4\x5f\x42\x81\x7e\x07\xb5\xf2\x89\x98\x41\x95\x17\xa9\x89\x73\x1b\x25\x7d\xab\x05\x63\xbe\x1f\xf8\x91\xf7\xfd\xb2\xcd\xd6\x74\x11\x6e\xb6\x07\x5e\x19\x0b\x3b\xdc\x49\x25\x03\x74\xb2\x24\x5a\xf2\xf9\x7a\x9e\xa4\x31\xae\x13\x4f\x12\xee\x48\x48\x42\x2f\x51\xa6\x2c\xb5\xc7\x52\xf2\xff\x7a\x7d\x76\xf6\xdf\x47\x02\x8a\x71\xff\x8f\x29\xe5\xc7\x63\x3e\xa1\x2d\x7b\x08\xfa\x90\xf4\x95\x2e\x0e\xef\xf6\x4c\x50\x7b\xe9\x25\xef\xe0\x3c\xb3\xc0\x01\x24\x1a\xa2\x5c\x24\x5f\xac\x9a\x08\xb3\xd9\xd2\x01\xc3\x97\x01\x30\x24\x76\xb7\xa9\xc8\x85\x41\xfe\x2c\x92\x3c\x8c\xe5\x6f\x04\x5e\x26\xed\x4c\xa0\xe8\xb7\xdf\x0a\x94\x5c\xe2\x25\xcd\x07\x38\x47\xa8\x00\xa0\x03\xee\x0e\x90\x29\x47\xa3\x17\x4f\xea\x37\x40\x4f\x03\xca\xf4\x20\x50\x62\xd5\xf7\xbc\x92\xed\xff\xfe\xdc\xc8\xa3\xda\xd8\x95\x9d\xd5\x6e\x91\xc8\xba\xee\xa6\x2f\x7c\x85\xf3\xf3\xfb\x98\x94\xac\x28\x8c\xbd\x44\x7c\xb0\xbc\xec\x92\xe8\xc6\x99\xc5\x68\x75\x4a\xd5\x64\xcf\x63\xe9\x11\xb9\x54\xba\x5d\xac\x30\x97\x01\xa1\x08\x05\xc0\x4f\xc9\x7b\xaa\xb3\x9b\x98\xae\x76\x92\x6e\x0c\xeb\xdd\x0f\x70\x39\x7c\xa2\xdd\x2c\x94\xc6\xcc\x79\xbd\x45\x93\xc3\x4c\xcd\xc9\xa4\x5c\xd0\x6c\xc4\x0b\x5e\x4f\x35\xb6\x2b\x53\xda\xac\x15\x8b\x9e\xcc\x58\xdf\xdf\x0d\xde\x81\xb8\xad\x7a\xd3\x82\x47\xa5\x9a\xec\xcc\x42\xbd\x63\x7a\x8b\xac\x64\x83\xe9\x35\xd9\xf0\xed\x8c\x93\x23\x17\x31\x25\xe9\xd2\x8a\xb5\x4b\xca\xb1\xe9\xb8\xca\x8c\x8f\x8f\x21\x7c\x49\xdc\x7a\x6e\x0c\x5f\x73\x79\xf0\x03\x6c\x18\x4e\xfa\xc6\x51\xc0\xaf\x6a\x59\xce\xad\x40\x09\xbd\x72\xef\x2d\x77\xb0\xd0\x30\xc7\x5f\x5d\xc4\x9b\x76\xba\x0e\xde\x34\xf0\x4f\x31\x02\x31\xce\x3e\xc1\x62\xae\x35\x7c\x51\x05\xe2\x12\x95\xd6\xb9\x10\xa7\x2a\xa5\xdd\x82\x9d\x4c\x3a\xeb\x69\xfa\x88\xbd\x99\x27\x36\x35\x97\xfa\x61\x8e\x66\x27\x87\x92\x49\x70\xf2\x3f\x94\xd5\x98\x67\x67\xeb\x5d\x9b\x66\x36\x6a\xd7\xe8\x15\x3a\x8e\x95\xf2\x49\x52\x45\xfd\xd0\x46\xad\x6c\xd2\xbb\xea\xdd\xa5\x89\xcb\xc7\xb8\x6f\xbc\xf8\x37\xf1\xa8\xf8\x44\x75\xd2\xf5\x92\xd8\xa4\xcd\xee\xaa\xb6\x31\xe2\x26\x0e\xf9\x6d\xe5\x37\xd4\x26\x98\x80\xbe\x17\x70\xd0\x75\xe5\x7d\xf2\x43\x7c\x4c\xc0\x66\x1f\xe1\xa4\x61\x66\x9f\xa0\x7f\x43\x10\x01\x9c\x4e\x12\x66\xfa\x36\xfe\x07\x4c\x2b\xac\x61\xf7\xb1\x3c\x89\x1e\x47\xf1\x76\x58\xbe\x3e\x50\x8a\xb1\xf7\xa9\x96\x01\x74\x7f\x47\x89\x9b\x3e\x3b\x5b\x5f\x4c\x06\x9d\x2e\xa5\xcc\x33\x1c\xdb\xee\xa2\x61\xac\x45\x45\x5c\x0f\xff\x01\xa1\x34\x5c\xd6\xed\x25\x49\xd2\xa3\xf4\xd1\xf1\x7b\x3d\xd7\x57\x6b\x05\x18\x36\x62\xf0\xee\xcc\x35\x27\xd0\x7a\x5d\xb7\x1a\x5e\x2a\xd5\x5d\x17\x5e\xa9\xdb\x23\xe8\x79\x9f\x9d\x75\xba\x7a\x5e\x21\xf9\x7c\x29\x1c\x9f\x59\xa8\xdb\xc8\x2c\x26\xa9\x70\x83\x30\xf4\x6e\xab\xfa\xec\xed\xaa\x24\x2a\xcb\xcd\x2a\xa5\x47\x58\xb7\xf7\x22\xb8\xc1\xe4\xb8\x4e\xbb\x86\x20\xfd\x9e\xf4\x72\xbd\x54\xf2\x99\x9d\xad\xdb\x36\xfb\x50\x72\xfe\x82\xfc\x16\x96\x07\x7c\xac\x4d\x10\x93\x28\x4a\x56\x30\x76\xbe\xc4\x8f\xe1\x7f\x53\xbe\x50\x60\x11\x8a\x7f\x92\x2f\x6e\xfa\x66\x37\x7a\xb0\x42\x9e\xa3\xb7\x29\x6a\x5e\x1e\x1f\x89\x4c\x92\x3b\x3f\x4d\x2c\xc8\x9b\x63\xc0\xca\xa6\x76\x57\x32\x61\x1a\x5b\xce\xd4\x44\xc9\x83\x3e\xc9\x27\xca\xf5\x35\x1b\x64\x54\x8d\x16\x62\x10\x68\x13\xd7\xf1\xe7\x7c\x52\xe5\x86\xb5\x68\xe2\x25\xef\x0b\xcf\xaa\x6e\x18\x0a\x22\xf1\xe6\x84\x19\x8f\x34\xad\x15\xa0\x02\x0f\xf0\x04\xee\x93\x4f\x4a\x43\xa0\x48\x89\x07\x29\x75\x86\x58\x95\x6e\xb2\x8e\xa6\x24\x5a\x65\x9e\x85\x16\x99\x9f\xe1\xf5\xeb\x2d\xad\xaf\xfa\x9b\x34\x70\xb1\x7d\xbf\x13\x6c\x53\x9a\x9f\x9e\xae\x1f\x3e\xbc\xcb\x8b\xb7\x5d\x1c\x7a\x51\xb7\x8b\x04\xba\x73\x1b\x97\x1a\x40\x90\x2c\x40\xf5\x01\x8e\x3a\xd8\x76\xce\x94\x46\xe8\xe7\xe1\x4f\xac\x40\x9d\x4b\x08\x59\x45\xbb\xab\x9c\x0e\xcd\x6b\xe3\x1f\xd1\x35\xf3\xe1\xf7\xa5\xd2\xe0\x3d\x30\x5b\xcf\xbb\xa9\x35\xb9\x8d\x5d\xc7\xb9\xa3\xe5\xb9\x5e\x38\x50\x9f\xc0\x88\x79\xa8\x01\xae\xa4\x15\xb6\x43\xde\x95\xa5\x7e\xe6\x0b\x89\x1b\xa5\xd7\x34\x3b\x5b\xef\x99\x74\xc9\xfa\x62\x3b\xd2\xc5\x2d\x85\xc4\x6f\xa9\x15\x39\x59\xb6\x69\x33\xe9\xd9\x22\x0b\xde\x42\xa4\xcb\xc4\x89\x40\xb9\xa4\x70\x15\x06\xb1\xe5\x86\x72\x3b\x48\x56\xe2\xcf\xfa\xae\xbf\x2d\x7a\x23\xa8\x80\xdd\x56\xac\xbb\x93\x18\x5a\xb8\xd5\x67\x47\x9e\xa5\xf3\x74\xa3\x58\x4f\xe9\xff\xff\x72\xbd\xb1\xf3\x67\x3c\x08\xef\x74\xd7\x9e\x64\x71\x09\xf6\xc9\xc5\x5e\x2b\x9c\x74\xba\x41\xe6\xef\x0d\x55\x69\x89\xfb\x3d\x11\xaa\xee\x1b\x15\x63\x06\xe5\x8c\xb3\x14\x17\x73\xb7\xd7\x88\xb6\x57\x11\xc9\x2a\x52\xeb\x31\xa5\x4f\xba\x96\x5f\xad\x23\x22\x55\xaa\x4d\xd2\xfd\xf2\x02\x1a\xa1\x71\x2d\x37\x95\x7a\xfc\x8b\x0d\x8f\xdf\xc6\xe6\x28\xcb\xae\xe3\x77\xee\x6a\x65\xae\xbb\x0e\x49\xe8\x85\x59\x26\xdd\xbf\xae\xc5\xcc\x97\x85\xaf\xa8\xa6\x94\xc5\xb0\xf3\x7c\xf1\x98\x45\x2d\xcf\x53\x7b\xd8\xe4\x8b\xd9\x1c\x08\x1e\xc4\xc0\x5b\x41\x6a\xd7\x03\x2f\xdf\x70\x13\x9d\x16\x18\x17\xdf\x44\x50\xe4\x0c\xa0\x3c\xf0\x76\x1d\xcf\x13\x0b\xf7\x59\x0a\x97\xa4\x5f\x6a\x6c\x3d\xf3\xa5\x03\x2e\x5c\xe1\xb1\xa1\x77\x0a\x01\xf3\x35\x25\xc5\xb8\x85\x17\x28\x4c\x28\x7a\x81\xa2\xe6\xa9\x88\xa3\x97\x86\xbe\xad\xb1\x1d\x46\xbd\x49\xef\xc8\xf5\x50\x5b\xe7\xd2\x0a\x8f\xf8\xea\x01\x16\x4b\xb1\xe1\x71\x3d\xa4\x26\x4a\x7a\x49\x3c\xa9\x88\x7c\xff\x82\x73\x71\x29\x7f\xf8\xc5\x68\x43\x09\x8a\x6c\x2a\x70\x3a\x8c\x07\x61\x5e\x53\x4d\x29\x6b\x34\xec\xe5\x0b\xb6\xaf\x19\xf3\xfb\xa1\xb7\xcc\x4b\xe0\xd6\x79\x84\xf6\xb8\xb5\x37\x55\x6e\x79\x52\xd5\x86\x4d\xdc\x11\x15\x57\xd7\xd2\x5f\xbc\x5b\x69\x9c\x79\x1c\x8c\x6c\xa2\x90\xdb\x31\xf0\xfd\x5f\x1b\x2a\x35\xf3\xaf\xa9\x26\x8b\x5f\x19\xd8\xd4\x36\xbb\x49\x4d\x37\x42\xdc\xd1\x56\x38\x77\xdc\x53\x6b\xd9\xe5\xb0\x69\x65\x5f\x71\x7d\x93\xde\x52\xa4\x36\xf2\x8c\xa7\x76\x08\xc3\x77\x8f\xd7\x8f\x51\xf6\xe9\xb5\x22\x30\xfc\x9a\xe2\x23\xe4\xc9\x20\x0d\x33\x04\x3e\x88\xaa\x1f\xd0\x9b\xe5\xe3\x12\x29\x66\x66\xa1\x9e\x15\x4b\x9c\xc8\x08\xe0\x3a\x4e\x2a\xce\xfb\xc9\x92\x79\xd5\xf4\x74\xbd\x9f\xf4\x95\xe6\xe2\x75\xe5\xd7\xe5\xfd\xaa\x9a\x5d\x93\x9a\x66\xce\xc2\xd6\xe8\x08\x82\x8b\x2d\x1f\x3b\x0e\x77\xd8\xb2\x26\xdb\xe5\x19\x2d\xbb\x46\x7e\x9e\xdf\xa1\x79\xa9\x6a\x6a\xaf\xeb\x52\xe1\x21\xb4\x30\xfd\xd1\xdf\x6c\x68\x0c\xbe\x14\xa8\x7d\xbe\x9e\xf5\x92\x25\xb7\x92\x63\x71\xfc\x90\x86\x25\x1f\xbb\x05\xa4\x6d\xd2\x9e\x45\xc1\x07\x21\xd5\x54\x43\x49\xf9\x71\x8a\x22\xfc\x4b\x4f\x0d\xbf\x51\x42\x23\x48\xf2\x3f\x2d\x1e\x42\x8b\x99\x24\xe8\xb6\x82\xb0\x28\x1f\x0f\x5f\x70\xb3\xc1\x1e\x69\x46\x83\x2c\x5c\x0e\xf3\xd5\x9a\x5a\x71\x2e\xe9\xb5\xe4\x92\x62\x7e\x2f\xa6\xd6\x14\xb7\x44\xee\x24\x48\x2d\x21\x7d\x03\xf0\x1e\x25\x47\x71\x82\xa8\x29\x27\xb4\x62\xd1\xe2\x75\x4a\xad\x07\x79\x18\xaf\x4e\x79\xf2\x2e\x2b\x5c\x72\x62\x46\x6b\xba\x03\xff\x1c\xbf\xe1\xd7\x30\x97\x24\x7b\xf3\xf7\xd2\x1c\x64\x79\xd2\x33\xa9\x48\x73\x62\x3b\x38\x8b\xb5\x88\x4f\xb4\x34\x6a\x98\xe5\xd9\x94\x77\xbd\x67\xc0\x01\xeb\x1c\xf8\xfc\xcc\x7c\xa7\x9b\x12\x16\xbc\xe2\x4f\xdd\xaa\x50\x56\xaf\x67\xcd\xae\x6d\x0d\x5c\xc8\xc4\x8d\xce\x58\x5c\xc5\x9e\xa4\xf8\x6e\xec\x6e\x17\xdc\x70\x6c\xdb\x28\x3c\x42\x83\xd6\x71\xe5\x8a\xc1\x25\x5c\xb9\x8a\xe4\x2f\xcb\xd3\x70\xc9\x72\x1b\x02\x96\xea\x35\x7a\x4e\x22\x73\x4a\x17\x80\x77\xfe\xfb\x43\xd5\xd4\x70\xc7\xc9\x7e\xd8\xc8\xf6\xbb\xc6\xf5\x3c\x00\x29\x3a\x36\x54\x2d\x86\xc7\x02\x5f\x9f\x8e\xc3\x4e\x37\xef\x19\x56\xdb\x42\xa0\x30\x41\x0f\x8a\x8f\x47\x15\x8e\xe9\xcd\xa4\xd7\x8f\x2c\x74\x90\xd8\x2f\x59\x99\x44\xdc\x2b\x45\x75\x0b\xaf\xd4\x23\xdb\x86\x9e\xaf\xd3\x1f\x72\x3d\xd8\x93\x0d\x9f\x60\x5f\xd2\x49\xeb\x39\xc5\x23\xea\x27\x61\xc6\x7a\x14\x0e\x96\x2e\x6e\x0f\x58\xc6\xa3\x40\x99\x53\x9f\xd7\xb4\x6a\xce\xfe\xa5\xa3\xc5\xdf\x78\x77\xb5\x95\x9a\x41\x14\x36\xa9\xd9\x07\x09\xe4\x5d\xd5\x28\x81\x5a\x30\x3a\x8a\xcf\xb8\xa5\x68\x31\x4d\x68\xfa\x67\x13\xba\x0d\x9c\x15\x07\x1c\x14\x50\xbc\x64\xfc\xe2\x83\x2a\x60\xa5\x19\x85\x71\xd8\x9c\x18\x8b\x26\x7c\xfc\x0e\xbb\x5c\x0c\xa5\x3f\x51\x75\xad\xa5\x24\x9e\xf4\x2a\x0c\x80\x4e\xdc\xa7\xe7\xf7\xbb\xed\x8b\x7e\x1d\x0f\xf0\x91\x8a\x0b\x7b\x61\xeb\x09\x9f\x5c\xbe\x0b\xee\xb8\x30\x1c\xe9\x19\xc9\x62\xaa\x36\xfd\xb3\x2a\xb2\x7d\x14\x78\xce\x2c\x48\xe5\xde\x6b\x7f\xbf\x23\xcb\x8d\x69\x9b\xf4\xb3\x27\x7c\xe1\xef\x2a\x7d\x1e\xf3\xfd\x74\xe0\x95\x6b\xd7\x29\xcf\x95\x72\x8f\xcf\xe6\xd1\x3a\xc5\x18\x0c\x2e\x8a\xff\x08\xc0\x00\x96\x97\xbb\xa5\x07\x3c\x3b\x7b\xa8\xde\x4c\x06\x4d\x5d\x02\xbb\xa2\x4a\x60\xec\xb6\x28\x94\xb3\xf8\xa7\x94\x01\xd9\x55\xba\x16\x8e\x1f\x81\x42\x82\xfd\xb5\x0b\x31\x27\x80\xd3\x49\x48\xa8\xd1\x0a\xf3\xb9\xcf\xa2\x55\x1e\xf7\xbf\x13\xc0\x3b\x50\xd4\x63\xcc\xaa\xc7\x57\xff\x64\xa8\xd8\x0e\x7b\x49\xf5\x8d\x63\x29\xc2\x6c\x80\x87\xa3\x45\x8c\x25\xf4\x10\xaf\xf1\xa7\x69\xbb\x03\x8b\xff\x9a\x16\x44\xde\xc4\xbb\xe3\xca\x94\x77\x5f\x39\xf8\xb9\xd1\xc4\xa1\x7f\xf8\x65\x5e\xfa\x4e\x56\x74\xff\x2a\x69\x79\xa9\x22\x81\x7c\x8a\x65\x67\x67\x03\x23\x7c\x2c\x14\xc4\x55\xde\x45\xdd\x03\xb5\x86\x2a\x11\xdd\x3a\xf5\x7d\xba\x5d\x12\x6b\xf1\xa7\xca\x23\xe2\x53\xd5\x84\x98\x26\x49\x0f\x0a\xff\xd8\x19\xbf\x1e\x28\x9f\xff\x73\x2a\xef\x80\x0c\xb2\xd8\x66\x2b\x9b\xff\x47\xca\x92\xa8\xd9\x35\x61\xfc\x84\x72\x7f\x7c\x14\x28\x1f\x84\x8b\x81\xae\x5e\x9c\x50\x56\x5d\x53\x0d\xd5\x52\x7f\x46\xaf\x42\xa8\x9f\x60\xc9\xc5\x7c\xc0\xbe\x33\xe5\x10\xd0\x24\x5a\xed\xf5\xc3\xa6\xac\x09\xd8\xc5\xb8\xa9\x1b\xfc\xb9\xdd\x23\xd5\xfb\xf0\x9d\x22\x0e\x72\x91\xeb\xb2\x85\x5c\x70\x92\x22\xb8\x14\xa1\x00\xa5\x31\x56\x76\x48\xf9\x7c\xbd\x6f\x9a\x4b\x42\x33\x50\xe0\xba\xb8\x78\x9f\x53\xd1\x71\xc7\xc6\x36\x7b\xd2\xc7\x0a\x58\x6c\xf8\x38\xf0\xc2\x23\x68\x34\x72\x66\x1c\xca\x99\x83\x66\x05\xd3\xde\x75\xb6\xf4\x29\x35\xd6\x80\x17\x74\x86\xf0\x57\xf9\x80\x52\x3e\x66\x85\x34\xfe\xab\xa1\xb2\x2d\x5b\xaf\xec\xea\x36\xbd\xc5\x34\x34\xf1\x84\xee\x19\x18\x2b\x27\x9d\xa2\xe0\x5e\xc4\x20\xab\x1c\x80\xf2\x64\xc5\xa6\xe8\x40\x90\xe9\xa3\xda\xed\x4f\x29\x25\x85\xaf\x57\xa9\x7e\x0d\xe2\xdc\xf4\xfb\x0c\xc5\x38\xfc\xd1\x8b\x0f\x57\xfc\x26\x15\xf4\xd8\x2b\x4d\x25\xe8\x2e\x5b\xaf\xa0\x41\x7d\x09\x5e\x1c\xf2\x12\xa5\x25\x99\x1e\x2f\x9f\xb8\x58\x32\xb3\x47\xc2\x2c\xaf\x79\x6e\xc0\x9f\xd1\xf5\xf0\x71\xd5\xf5\xd8\x23\x7d\x9b\xe6\x28\x11\x4b\x5b\x4f\xcd\x49\x1c\xdd\xc2\xda\x26\x50\x5f\x15\xa9\xce\xb6\x42\x32\xc5\x8d\xc6\xac\x19\x86\x0a\xf5\x28\x89\x51\xcf\x2c\xd4\xdb\x83\xb8\x65\x7a\x36\xce\x4d\x94\x8d\xb5\x50\x2b\x10\xbd\xfc\xfc\x5e\xdd\x5f\xef\xda\x34\xb1\xd9\x84\xf2\x92\xe0\x8e\x38\x14\xe0\x3f\x1e\xaa\x3d\xdd\xfb\x49\x67\x79\x6a\x2d\xca\xfd\xc8\x84\xc1\xf8\x45\x50\x3a\x35\x2a\xc6\x89\x33\xc6\xf4\xca\x39\x3f\x18\xf3\x62\x35\x71\x2b\xb2\x29\xa7\x52\x58\x92\x59\x18\x8e\x4f\x14\x41\x2f\x8c\xdb\xc5\xb2\x26\xcd\x6d\x48\xac\x2f\x29\x44\xdf\xa3\xe5\x29\x50\xb6\x54\x93\x81\x51\x8a\xc1\xc2\x7b\x37\xf0\x6e\x95\x97\x9d\xc1\x78\xdb\xb6\x6c\x4a\x8d\xd3\x94\xaf\x89\xe2\x5f\x6d\xbb\x31\x31\xde\xfc\xed\xaa\xb5\xb7\x63\xb3\x7c\x90\x0a\x74\x81\x98\xe4\x43\x1d\xa0\x7c\xa8\xa2\x82\x9f\xfb\x2f\xfe\x5e\xcd\x73\xcd\x4e\x53\x48\xcf\xc7\x8a\xf2\xb6\x98\x9a\x10\xb1\x17\x8a\xb3\xec\x67\xc6\x27\xa3\x31\x9f\x4c\xfa\x55\x57\xee\xf2\x23\xe0\x5c\xa9\x53\x75\x66\xa1\xde\x4f\x12\xa8\x91\x30\x16\xa4\x94\x79\xce\x56\xc8\xbb\x1d\xaa\x67\x89\x67\x57\x39\x5c\xc1\x13\x47\x1f\x38\xce\x66\x3f\x4d\xfa\x49\xe6\x3d\xab\xc6\xa2\x23\x3e\x29\x3d\xbd\xb9\xf9\xb9\x7a\x77\x90\x2d\x1a\x9e\xc9\x5c\x17\x50\x1a\x8b\xeb\x2e\x12\x0c\xa9\xaa\xdc\x09\x9b\x35\x55\xec\xdc\x50\x40\x4c\xd9\x6e\x69\x7a\xba\x7e\xd4\xf4\x93\xdc\xa2\x49\x5b\xd4\x88\xe8\xf3\xc2\xed\x55\xfa\x30\xcd\x6e\x9a\xb4\x6c\x8a\xf7\xc8\x79\x59\xa0\xea\x7f\x67\x14\x4e\xbe\xd2\x4d\x22\x9b\x91\xf1\xbd\x2b\xf0\x5d\x56\x5a\x09\x7b\x47\x3e\xb0\x98\x68\x78\x5e\xd1\x8a\xc9\x72\xe1\x15\x89\x48\x72\xcd\xc9\xa8\x7c\x5c\x4a\x86\x3e\xcf\xbd\x59\x5e\xf5\x4f\xc4\xe6\xe9\x2d\x88\xda\xbc\xd3\x15\xb4\x7d\x52\x32\x57\xbd\x82\xeb\x9a\xdb\xcb\x2f\x0f\x8b\xfc\x54\x43\x07\x8f\x59\x78\x84\x34\x98\x10\xe6\xbd\x49\x9b\xf0\x98\x23\xb6\x20\xc2\x35\xa5\x0c\x5c\xf3\x2e\x8e\x2a\xc7\x79\x63\x70\x24\x37\xfd\x24\xb3\x4a\xb6\x60\x23\xd0\x5c\x61\x9f\x67\x24\xed\x76\xd8\xb4\x4f\x7a\xf8\xe8\x4d\x2e\x20\x48\x67\xa5\x22\xa0\x5c\x19\x7a\x91\x64\xa6\x63\x21\xbc\x41\x7f\x00\x2a\x3f\x35\x7a\xf2\xc8\x06\xd6\xb5\x3d\xce\x15\xc4\x39\xc4\x04\x3f\x06\xc3\x37\xec\x49\x53\x23\xcd\xb7\xa0\x11\x85\x8d\xef\xa6\x6a\x14\xcc\xba\x36\x5a\xb6\x19\x2d\x7d\x58\xd5\xee\xab\x72\xe4\x87\x81\x6a\xca\xaa\x11\xa4\x2b\x49\xb7\x2c\x9d\xa9\xe9\x87\xcc\x4f\x62\x8e\x60\xe0\x21\x41\x8f\xcf\xe5\x5d\x9b\x9a\x3e\x77\x54\x23\x09\xbd\x4f\x8f\x1c\x69\xe7\xa4\xa2\x57\x5d\x2a\x11\x5d\x8a\x84\x36\x4a\x56\x78\x29\x42\x1d\x03\x91\x2c\x1f\x8f\xbb\x66\x9a\xe8\x39\xbf\xb3\x7f\x13\x95\x5e\xbc\x84\x77\xb4\xbc\x36\x36\x56\x97\xad\x14\xb1\xac\x68\xf5\xf8\xde\xa9\x8f\xa8\x2c\x81\xb2\xe2\x8d\xc0\xbf\x8e\xf3\xc1\x58\x91\xb2\xe6\xb4\xd1\x1f\x04\x8a\xc1\x7d\x07\xe1\xa5\xa8\xfe\x68\x2d\xab\x1b\x14\xe7\x70\x03\x2f\x1a\x71\xf8\x33\x78\xb9\xa2\xe4\x49\x59\x05\xae\x85\x25\x74\x81\xf5\xec\x1c\xf9\xb2\xd2\x36\xe3\x17\x61\x8a\x9d\xc2\x35\x8a\xa5\x7a\x45\x8d\xa4\x9b\xb0\x3b\x9e\xb3\x60\x77\xbc\x88\x5b\x7a\xec\x35\x04\x89\x88\x93\xb4\x03\x14\x92\x25\xac\xb5\xb0\xf0\x05\x45\x35\x8d\x4c\x28\x2a\xed\x78\x78\x80\x69\xf8\x78\x4c\xba\x32\x6d\xad\x3e\xe1\xcd\x48\x58\x59\x09\x29\x06\x4b\x70\x21\x3b\xbe\xc3\xcf\x4f\xfa\x18\x35\xf3\xc6\xd7\x58\xfe\x15\x86\x2c\x86\xe9\x9f\x0f\x3d\xb7\x73\xfd\xb1\x0d\x67\x5d\x93\xa6\x0c\xe5\x4b\xc5\x55\x61\xcc\x6f\xab\x7e\x8a\x3c\xb1\x10\x75\x72\x32\x34\xc5\x03\xe6\x13\xd5\xdb\xdc\xec\x9a\x7e\x6e\x53\x74\x50\x09\xb7\xb0\xa6\x3c\xd5\x3c\x3c\x79\x1b\xbf\x85\x69\xf0\x41\xe0\xb1\xca\x34\xcc\xf2\x22\x7e\xf5\xaf\xe7\xe1\xd0\x6f\x20\xfc\x31\xcc\xa4\x3d\x8d\x9f\xd2\xfa\x0b\xa6\x1f\xe6\x26\x0a\x8f\xa2\x95\x55\xf9\x0b\xa3\x0f\x89\x8f\x4b\xb0\xd1\xc2\x2b\x22\xde\x50\xf3\xf8\x00\x88\xb9\x7c\xec\x26\x7d\x4e\xad\x76\x58\x8e\x71\x09\xbf\xb7\x4d\x2c\x71\x76\xd6\x21\x84\x15\xbf\x93\x35\x07\x79\xce\x35\x50\xfc\xd9\xb7\x87\x9e\xe8\xfd\xed\x2a\x31\x8a\xb6\x8d\xb0\xca\x54\x7a\x9f\x55\x68\x30\x64\x83\xc5\x2c\x0f\xf3\x01\x1b\x86\x60\x6f\x38\x1f\x78\xac\xa9\xec\x3c\x4c\x4d\x20\x61\xcb\x4e\x78\x76\x3d\xaa\xe7\xa2\x59\xef\xdb\x3e\x6f\x06\x7f\xab\xbc\xe9\xff\x8c\xaf\x66\xbb\x8a\x30\xdb\x4b\x29\x0f\xb3\xd3\x55\x46\x25\xa9\x6d\xa6\x83\x30\x57\x6e\xb9\x3f\xd0\x6e\xb9\x3f\x50\x85\xbd\x2c\x59\x5d\xb4\x26\x66\x73\x23\xd6\xab\xc7\x1f\x63\xd4\xd7\xa0\xfe\xc6\x27\x48\x48\x45\xd6\x5e\x4f\xbc\x41\xd4\x07\xcf\x00\x2b\x12\xe1\x67\x5b\xeb\x1a\x42\xf5\x65\xe5\x4e\x18\x45\x36\xcf\x11\x17\x88\xcc\x73\x31\x03\x25\xa0\xf7\x7c\xce\xff\xe4\xae\x12\xdc\x88\xc2\x5e\x98\x53\x56\x2e\x6c\x04\xfa\x45\xc6\x74\x35\xf1\x06\x3b\x29\xb6\x9a\x7b\x81\xe2\x97\x5d\x2a\xad\x5c\xb3\xb3\xf5\x6e\x92\x22\x20\x63\x43\xfe\x40\x49\x07\x9f\xa9\x12\xd6\x49\x93\xe6\x92\x6d\xdb\x28\x62\xf8\xdf\x45\x11\x5e\x9d\x74\x5d\x05\xb4\x61\x73\x95\x25\x94\xa4\xb0\xed\x13\xa5\xbf\x41\x9b\x15\xab\xf3\x8f\x54\xa3\xe1\xad\xd2\x9b\xc5\x38\x7c\xc3\x36\xf1\x66\xb1\x90\x3d\xdd\xf0\x1c\xd3\xa7\x47\xca\xf5\xd0\xa6\x19\x3b\xf6\x39\xef\x3b\xe5\x83\x76\xaa\x54\x12\x9e\xdf\x7f\xa8\x6e\x8f\xd8\xb4\x19\x66\x16\x04\x7c\x5c\x2c\xf2\x03\x3e\x56\x7d\x9d\x7d\x93\xe6\xd1\x2a\xc6\x0d\x6a\x64\xf7\x10\x08\xf2\xc9\x50\x4b\x44\xe0\xdd\x88\x5e\x44\x45\x86\x1d\xc6\xad\xd0\xe7\x9d\xd8\x65\x7e\xac\xb7\x9c\x1f\x97\x4c\xd1\x5e\x7a\xa9\x9e\x2f\x23\xd0\x95\x82\x6c\xcd\xdb\x30\x96\xa6\xfd\xfc\xfe\x7a\x3a\x88\xb0\x1c\x49\xfe\x3c\xe1\xad\xde\xcb\x56\x72\xf3\xfb\xeb\x59\x3e\x68\xad\x22\x5f\x45\xc8\xca\x34\x1f\x04\xc6\x3f\x1c\xfa\x40\xe7\x86\x2a\xbd\x0e\xda\x09\x75\x2d\xf1\xde\x42\x1b\x3d\xd2\x12\x68\xb1\x83\x1b\x7b\x4a\x2d\xf1\x6d\x13\xb7\x4d\x6a\xa9\x03\x4c\x9b\x97\x8a\xe0\x43\xcd\x49\x60\xf7\x55\x9a\x98\x9a\xd6\xd1\xd5\x5e\x88\x55\x5d\xc0\x7c\xaf\x56\x72\x49\xfd\xd8\xbd\x52\x5e\x7c\xf0\x60\x3d\xcb\x6d\xbf\xd9\x0d\xa3\x56\x6a\xe3\x09\x25\xd1\x02\xd6\xae\x04\xf7\x5e\x66\xec\xdb\xba\xa9\xd5\x30\x56\xec\x70\x51\x27\x4b\x7b\x97\x82\x11\x71\x58\xa8\x82\x42\x48\xfe\x48\x2d\x68\x39\x76\x66\x3e\x51\x65\x9b\xac\x9b\xe4\xbb\x94\x0e\xfb\x3d\xd0\x33\xa5\xcd\x03\x50\xa6\xeb\x00\xf1\x51\xfb\x3d\x08\x8f\x08\xa2\x43\x38\xa3\x40\x45\x15\xdb\x41\x33\x32\xad\x9a\x7a\xcb\xc0\xb1\x45\x9c\xfc\x33\xaa\x1d\xda\xb6\xa6\x94\xa2\x45\xa0\x74\x18\x4e\x28\x49\x3c\xa4\x8c\x02\x10\xaa\xee\xe4\x0d\x75\x6f\x7d\x93\xe5\x7b\x8a\x37\x84\xb0\xf3\x01\xa5\xde\x88\x7d\xfe\x8d\x02\x26\xf6\x34\x6a\xd3\xd3\x1c\x3d\xb0\xb1\x93\x03\xd8\xa7\x67\xbc\xce\x88\xab\x47\xdf\x1d\x2a\x35\x97\xab\x14\x71\x22\x4b\xff\xd1\xb8\x7d\x46\xc8\xbb\xb9\x6b\xa2\x2e\x5e\x81\x08\x16\x2a\x83\x61\x6a\xc7\xda\xad\x0c\x56\x76\x36\xbc\x09\xc8\x3f\x1b\xfa\x82\xc4\x13\xaa\x64\xf2\x24\x30\x67\xd1\x23\x2c\xae\x54\x9a\x16\x8a\xf1\x84\xc1\xf1\xe3\x4a\xa9\x0f\xea\x3f\x81\x56\x3a\xde\xec\x69\xdc\x35\x76\x67\x08\xda\xaa\x32\xca\x8c\x03\x9f\xb6\xbf\xd8\x03\xb3\xf5\x25\xc3\x1b\x36\x46\xe6\x7b\x5a\x6b\xf9\x3d\x05\xd0\xb6\x92\xa3\x16\xfa\xd6\x82\xcf\x7a\x58\xea\xbe\x82\xfc\xdf\xa9\x62\x65\xf7\x6d\x9e\x86\xed\x90\x5b\x15\x25\xe7\xaf\x39\xf1\x99\x3b\xb8\x7e\x8c\x6e\xdf\x99\x3d\x88\x57\xd2\x30\xcf\x99\x23\x24\x9e\xb3\x35\xe5\x41\xaf\x2c\x67\x6d\xdb\x0c\x22\x44\xd7\x22\x01\xe7\x7b\xfa\x4e\xe3\xb6\xf0\x46\xca\x6a\xbd\x33\x0b\x50\xc5\x8f\x92\x3e\x6f\x57\x18\x40\x28\xd5\xf2\xb1\xf7\x55\x8a\x4c\x3e\x4e\xa7\xdc\xa5\xd2\xc0\x2b\x1a\x69\x7d\xe8\xba\x2e\x8b\xbd\x20\x6c\x0e\x22\x92\x29\x9d\xdf\xcf\xb9\x17\xd7\xb0\xf9\xa4\x42\x6a\x61\xae\xde\x4f\x93\xdc\x36\x1d\x20\x02\x9e\xe3\x5d\xdc\x0f\x9f\x38\x5c\x0d\xfc\x28\xfa\x3b\x5c\xd8\x4d\xdd\x03\x7c\xb3\x4a\xfa\x36\xcb\xd3\x24\xee\xd8\x14\x10\x1e\xd6\x86\x4d\xad\xf4\x79\x05\xa9\x1a\x02\x94\xb2\xf4\xcc\xe1\xc3\xc5\xf8\x4f\x96\x32\x8a\x54\x9c\x71\xbb\x97\x8a\xb9\xa5\xa8\xa6\xef\x97\x76\x90\x03\xb3\x75\x7b\x24\x8c\x10\x02\x62\x76\x5e\x0b\x7c\x37\xe7\x1f\xd3\xbc\x90\x67\xb5\x8d\xd2\x36\xb3\x50\xff\xf2\xcc\x6e\x85\x52\xff\x55\xe0\x37\xfa\x33\xb8\x73\x94\x41\xbe\x43\x2b\x07\x62\xb2\x4f\x03\xdf\x3a\x05\xaf\x3d\x20\x01\x9b\xba\xbc\x72\x41\xf1\x48\x4d\xda\x5b\x45\x61\x97\x1d\x68\x95\xf7\xdb\x15\x85\xe7\x72\x6c\x23\x18\x43\x45\x01\xb1\x9d\xa4\x3d\x13\xd5\x7c\xb7\x1e\x4a\xa8\x7c\x3c\xaa\x50\xa8\xec\x85\x91\xcd\x48\xde\x00\x2b\x91\x34\x49\xd6\x9c\xbe\xff\xc6\x58\xe9\xae\x1d\x36\xf7\x29\xd3\x7c\xd8\xfa\x3b\x3d\xa1\x22\x0e\x61\xc3\xaf\xc0\x77\xed\x88\x0a\x0e\xa2\xbf\x4f\x51\xef\x42\x4d\xf3\x01\x3d\x2b\xe7\x02\x3d\x2b\x42\xc1\x67\x31\x40\xb0\x14\xbf\x1d\x28\xe1\xf4\x35\xdd\xbe\x78\x2d\x78\x5e\xb1\x15\xc2\x56\x87\x1a\x57\x69\x78\xa2\x91\x7e\x12\xe8\x0b\x9f\x8c\xb6\x0f\xff\xb9\xf9\x39\x11\x2a\x36\x1d\x8e\xb8\x10\x3a\x1d\x0b\x14\x0f\xee\x58\x15\x30\xdd\x8c\x92\xac\x18\xd5\x7e\x37\xd8\xd4\x22\x22\x17\x80\x14\xa0\x6d\xbe\xd6\x50\xd6\x0b\x76\x91\x92\x53\x1d\x9c\xcc\x7a\xb3\xea\x72\x52\xdf\x4c\xa2\x24\xa5\xc1\x2f\x2c\xd7\x9a\xd3\xa4\xc2\x52\x2c\xbe\x6c\x5e\xfc\xa5\x19\x9a\x5d\x63\xd3\xa5\xb8\x19\x66\x72\xa1\x27\x02\xc3\xff\xfd\xa1\xaa\x2d\xe1\x65\x3a\x1b\x5e\xb7\x69\xdd\x0a\xc4\xe3\xa8\x9b\xb0\xa1\x22\x96\xe5\x1b\x94\x4b\xf1\xb1\xb3\xfb\xcb\x6c\x78\x14\x21\x1e\x98\x02\x5c\x38\xe6\x13\x25\x50\xd4\x4c\x7a\x7d\x13\x87\x49\x3c\x85\x20\xc2\x55\x04\xbc\xa8\xea\x50\x01\xba\xa7\x94\x64\xe6\xb7\x75\x13\x36\xa9\x80\x3a\x63\xf9\xbc\x9b\x40\x46\x7c\x8a\xf6\x60\xfc\xec\x6f\xe3\x8b\xb8\xdb\x8b\xea\x59\x6c\xd0\x10\x28\x09\x16\xdc\xb4\xe8\x31\x28\xf1\xd4\x34\x69\x0d\x9a\xec\x39\xa8\x90\x47\x17\xa1\x5d\x0b\x74\xf5\x4a\xd9\x87\x5c\x56\xed\x44\xeb\x4a\x6c\xaa\x47\x6e\x6e\x94\x46\x09\xd4\xa2\xca\xf3\x1b\xca\x38\xf0\x3c\x6d\xd6\x42\x37\x98\xf0\x36\x62\xf7\x4a\x9b\xed\xf4\x74\x3d\x5b\x31\xab\x35\x2f\x70\x71\x6e\x4c\x6a\x56\xb1\x67\x52\xdb\x0a\x17\xc3\x28\xcc\x19\xc0\x63\xf1\xe9\x40\x83\x3f\xc3\x71\x74\xe6\xb3\x0e\x31\xca\x57\xc2\xbc\x2b\xb6\x12\x53\x3e\x16\x78\x12\xe8\x3f\x1a\xfc\xd1\x78\x88\xa7\xbf\x77\xe4\xc1\xc0\x73\x14\x11\xe3\xb1\xdd\x50\xf9\xd9\xf4\x4c\xb6\x8b\x7e\x1d\xa5\x8d\xa7\x99\x4b\x0a\x62\x0a\x42\x6a\x27\x43\xe8\xfa\x84\x1f\xd0\xa3\x96\xff\x4f\x77\x42\x50\xf6\xb3\x7f\xab\x51\xb1\xd6\xf5\xbb\xab\x59\x98\x44\x49\x07\xc4\x74\xee\x8e\xc2\x7a\x22\xad\x52\x15\x1b\x77\x3f\x4d\xde\x50\xfb\x23\xa6\xf7\x99\xc0\x77\x54\x9f\x19\x6a\x8b\xba\x66\xd2\xb3\x6c\x25\x8f\x21\xf6\x09\x2d\x85\x7c\x5c\xec\x4f\xd2\x09\x1b\x66\xcd\x34\x14\x5f\x77\x2c\x24\xdc\xf2\x48\x5f\x8e\x32\xfa\x45\x45\x59\xbe\xab\x88\xf3\x78\x85\xa2\x29\x83\x05\xee\xb4\x52\x9a\xbc\x3b\xd6\x55\xba\x7d\xa8\x7c\xe1\x2b\xd4\x96\x30\xe1\x31\x9a\x4f\x35\x29\xf7\x8e\x32\x97\xdc\x18\x57\x3e\x4b\x56\x9e\xa6\x2b\x05\x06\x77\x82\x0a\x43\x5c\x3e\x0d\xbc\xb6\xfa\x87\x5a\xea\x0c\xb5\x7a\x4c\x8e\xab\xda\xd5\xe0\xe4\xd0\x97\xba\x3e\x1a\xaa\x3a\x3b\x8b\xcf\x00\x61\xf8\xb3\xc0\x07\xd6\x2c\x8f\x2e\xcb\x5a\xf1\x1a\x31\x42\xd8\xcd\xc2\x15\x72\x67\x16\x44\x9e\x54\x2b\x4b\x5f\xa8\xc8\xb8\xeb\xa9\xed\x0c\x28\xe0\x52\x44\xf1\xe3\x43\x25\xd1\x7d\x5c\xc1\x1f\x36\x7e\x23\x59\x9d\xa4\xdf\x42\x24\x7e\x52\x85\x8b\xd7\x70\xd7\x7c\x82\x35\x81\xff\x6a\xcc\xa6\x7b\xc5\xa6\xfb\x54\x78\xf5\xb1\xa2\xec\xdc\x0b\x6a\xd3\xd3\x5b\xeb\xd8\x3c\xb0\x14\x63\x8f\x64\x8f\x3f\xdc\x0d\x62\xa5\x9b\x63\xdc\x32\xda\x7b\x30\xd5\x3f\x50\x78\x37\xf7\xef\x21\x8b\xfd\x76\x50\x9b\x59\xd8\x5a\x2f\x51\x63\xe6\xf7\xcf\x13\x7f\xd1\x2a\xe5\xe4\x4b\x4a\xa4\xf5\x92\xeb\x28\x5b\x0c\xe3\xd6\x84\x02\x38\x37\x14\x33\xea\x46\x31\x00\xb6\xde\x72\x2c\x37\x7a\x56\x53\xf4\x26\x01\x13\x5f\x50\x4a\xb7\x1b\xfa\x7d\x5f\xd0\xca\xb9\x97\x68\x54\xa0\x14\xe7\x1b\xb8\xc9\x9d\x98\x0b\x06\xaa\x5f\xc2\x35\x4f\xe8\x12\x48\xd2\xb3\x49\x6c\x95\x54\x21\xb4\x05\x10\xc3\x21\xfa\x03\x96\x32\x31\xf2\xec\x99\x0b\x0a\x57\x69\x5b\xa9\x26\x7e\xa9\xd2\xac\xdd\xcf\xf7\x4e\x92\x65\x61\x1f\x1c\x44\xa7\x89\xe6\xc4\xd2\x4e\xaa\x9e\xac\xbc\x9b\x86\xed\x7c\x77\xf1\x66\x10\x40\xde\xc5\x4d\x3b\x57\xb5\xe2\x66\xf8\x04\x25\x0e\x76\x0d\x0a\x3c\x78\xc9\xf2\x70\x5c\x80\x42\x8c\x24\xd5\xa8\xf1\x1a\x99\x60\xf5\xb2\x30\xa8\x30\xe8\xf4\x18\x66\xb8\x18\xd9\x17\xf0\xa7\x58\x52\xdf\x0d\x76\x4a\x3a\xbf\x3e\xf4\xf2\xa8\xeb\xca\x2e\x67\x57\xa3\xb8\x09\x49\x5a\x94\x8a\xf7\x6d\x65\x1e\x08\x21\x4b\xd6\xa8\xc6\x95\x22\xe4\xb8\x42\xb4\x26\x54\xe5\x27\x1b\x9e\x1e\xff\x55\x8a\xc4\xd1\x23\xf2\x21\xf2\x67\xec\xca\x9b\xe0\x3b\xc9\x16\x58\x13\x86\xd5\x3f\xbd\xa9\x5d\x8f\xf6\x8d\xe8\x99\xe1\x42\xee\xe1\x39\x01\x06\x65\x13\x99\x31\x5a\xb3\x58\x28\xf9\x41\x63\x16\x93\x28\xcc\x58\xc3\x1f\x63\xea\x36\xcd\x4b\x3e\x0e\xf6\xb9\x37\x69\x44\xf1\xda\x31\xee\xd4\x62\xa9\xa4\x40\x1e\x96\x56\x1b\xc2\x85\xfb\xd6\xf8\x96\x0f\xac\xb7\x1f\xa9\x54\xf5\x23\xa5\xee\xb0\x62\x4d\x3f\x89\xb3\x5d\x7e\x9d\x3b\x16\x28\x0b\x14\x4c\x3e\xa9\x30\xd3\x2d\xab\xd6\x46\x6f\x59\x5d\xfb\xc2\x57\x1c\xdd\xf3\x99\x70\x2c\x9d\x95\x34\x13\x0f\x04\x79\xb6\x88\x04\xd3\x17\x8a\xf0\xac\x16\x70\x87\x8d\x34\xe3\xd5\xae\x5c\xe0\xa3\xad\xd3\xb4\x62\xf1\x3f\xd0\xae\xc0\xff\xbf\x48\x56\xb7\xf5\x0c\xfd\x1d\x4c\x69\xac\x84\x17\x70\x77\x7c\xa2\x4c\x89\x7b\x61\xab\x97\xc0\xf5\xad\xb8\x65\x65\x4a\xee\x1c\xca\x1d\xc1\x22\xb7\xa6\xd9\x15\x41\x71\xcc\x1b\xe6\xd8\x89\xcc\x4b\xcd\x19\x22\x5f\x77\xaa\x1b\x72\x57\xac\x23\x04\x31\xce\x8f\xf4\xc0\xbd\xaa\x38\x78\xdc\x69\x06\x3c\xe1\x84\x5a\xdc\xf3\x64\x69\x75\xa0\x4d\x3f\x30\x20\xa4\x43\xb0\x92\xea\x90\xe6\xca\x57\xe4\x5a\xa0\xc2\xca\x12\x31\x9e\xa4\x11\x19\xa0\x95\x86\xc4\x9a\x93\xa9\xba\x5c\x2a\x01\xcd\xef\xaf\xdb\x23\xfd\x94\x6a\x17\xaf\xca\xca\x0e\xbf\x33\x3e\x76\x05\xdd\x08\x15\x7f\xb4\x3d\x49\xdf\xa4\x6f\x6b\xdf\xd3\xf0\x70\xcc\x8d\x31\xf6\xe9\xb2\x12\x1f\xb9\xa4\xd5\xb5\x2e\xe9\xee\xa3\x2c\x7b\x8a\xf6\x34\xac\x0e\xe7\x87\x2a\x89\xe4\xd1\xca\x0d\xe3\xb4\xfa\x63\x79\xf8\x1e\xb1\x3e\xc5\xf0\xa9\x18\x53\x2c\x5e\xa8\x15\x9d\x76\x8c\x94\xb0\xdf\xfb\x8a\x72\x73\x47\x71\x3b\x77\x91\xc2\x07\x6d\x00\x9f\xd4\x1b\x34\xe2\x9c\xf7\xa9\x17\x9a\xd1\x4e\x1f\x77\x14\xcd\x65\x39\x09\x9b\x76\x52\xd5\xaa\xd7\xf1\x97\x22\xdd\xe3\x73\xec\xeb\x18\x68\x7c\xe2\x76\xcd\x2c\x6c\xc1\x67\x13\xc5\x69\x18\x22\x3b\x11\x20\xe7\x68\xf1\x3c\x9a\x2e\x5d\xf3\x80\xeb\x12\x5d\xd7\xc8\xe0\x66\x55\x8b\x45\x6c\x3b\xde\x90\x52\x6a\xfd\x7e\xa3\xfb\xd0\x77\x1e\x47\x21\x51\xd8\x14\xa2\x7b\x5e\xbb\x69\x9e\xaf\x2a\xce\xfc\xf5\xb6\xd8\x2e\xf1\xcb\x93\x88\xc5\x47\x50\x50\xba\x04\x32\xb1\x13\xa7\xf4\x72\xd7\x77\x2a\x8c\x23\xe7\x8a\x9b\x48\xf2\x10\x2a\xeb\x33\x0b\x0e\xee\x52\xd0\x97\x72\x4d\xeb\x0f\x72\x56\x5d\xd3\x91\x88\xd8\xee\xd5\x9c\xca\xde\x83\xd2\x2a\x7c\xf8\x30\x8c\x4b\x32\x69\x51\x75\x30\xbb\x9b\x85\x67\x2a\xd8\xfe\x73\x4e\xc3\x8a\x97\x7f\x44\x5e\x7b\x1b\x0a\x38\x61\x3f\x0f\xa4\x90\x93\xa3\x52\xc7\xc6\xfc\xdc\xcf\xd4\x9b\x49\x96\x0f\x7a\x76\x9b\x16\xfd\x36\x3b\x00\x34\xe4\xbc\xe3\xf8\x5f\x7d\xd3\xec\xae\xb6\x6c\xda\x93\x1f\x47\x12\xf8\x00\x0b\x26\x20\xa1\x3f\xc0\x8f\x63\xee\x7a\xf1\xfb\xd6\x20\x69\xd9\x98\x61\x21\x56\xe4\x08\x3c\x84\x70\x5a\x51\x8b\xba\x26\x6e\x65\xa4\x78\xeb\x74\x92\x86\x43\xe5\x40\x3f\x2c\x11\x4e\xa9\x73\x98\x2c\xa1\x5c\x05\xed\xac\xa2\x8e\x9e\xad\x40\x4e\x5e\x57\x2c\x6c\xcc\x07\x14\x53\xf9\x58\x59\x85\x50\x8e\x93\x27\x69\xb6\x57\xe9\x57\x5e\xa4\x05\xc2\x65\x61\x4e\xdd\xe6\x0e\xc6\x17\x62\xab\x0b\x28\x3e\x60\xc2\x9c\x0a\x54\x47\xc0\x77\x03\x25\x28\xc1\x16\x32\xcc\x85\x46\x83\x1d\xb0\x36\x08\x94\xe3\xae\xaf\x29\x94\x3a\xe9\x44\xcc\x18\xd0\x16\x0a\x42\x94\xd9\x3e\x31\x0f\x1f\xae\xe7\x83\xd4\xc4\xad\x04\x4b\xbc\x52\x9b\x71\xd2\x33\xa5\xe1\x29\x2c\x86\xdc\x72\xbf\xab\xd8\xc8\xa9\x87\xb0\xa9\xb0\x1e\x93\xda\x7f\x8f\x26\x1d\x6e\xf0\x0e\x3d\x1f\xd9\x4f\x6b\xaf\x89\xe2\xde\x77\x02\x65\x77\x75\x87\x93\x7b\xf1\x54\xa2\xa7\x85\x98\xf5\x21\xb5\xe2\x70\xab\x25\x33\xd5\x11\x1d\x6c\x80\xd5\x32\x06\xca\x01\xa7\x61\x2b\x7a\xc4\x18\x37\xb5\x78\xe5\xce\x46\x11\x7c\x00\xd6\xb8\x13\x28\xee\x0b\x88\x67\x08\xf7\x6a\x0d\xdf\x60\xff\x74\x83\xe8\xe9\x4e\x3d\xb6\x78\x3f\xd8\xe1\xf7\x2a\xa1\x55\x30\x77\x58\xac\x5f\x3b\xcf\x5f\x1b\x92\xcb\x20\x10\xc5\xb3\x24\x65\x8f\x60\xf1\x14\x85\x97\x12\x52\xd3\x2a\x8d\xe4\x78\xdf\x48\x8d\x9b\xbd\x23\xaf\x54\x74\x0f\x23\x05\xb3\xfc\xbe\xaa\x1a\x0d\x5e\x8e\x5f\xae\xe9\x56\xc4\xe3\xda\xf7\xea\x78\xa5\xb7\x6d\x16\x46\xdc\xa9\x24\xf8\x62\x71\x03\x02\x2f\x56\x20\x39\x4b\xc5\xa4\xf2\x44\xb0\xd7\x79\x91\x16\x13\x1c\xdf\x77\xdc\xb7\x71\xb3\x6b\x62\xc8\x83\xb3\xb9\xcc\x98\xeb\xab\x47\x17\xff\x48\xed\xdb\x61\xcf\x3e\xe9\x09\x7d\xfb\xe8\x0d\x88\x8f\xb3\x76\x10\xbc\xe7\x7d\xa8\x9f\xfe\xe9\x86\x8f\x4d\xa6\x48\x5e\x07\xa9\xee\xa7\x43\x25\x81\x72\x5f\x2b\x69\x9c\xd2\xfa\x58\xc7\x87\xc5\xeb\x70\xb5\xd5\x57\xf7\xf3\xcb\xbc\x85\xdd\x94\xe2\xaa\x07\xcf\x8e\xa4\xa0\xd1\x8e\x8a\x94\x8f\x6c\xf3\x10\x94\x88\xca\x43\xcd\xa9\x58\x21\xf4\x46\xb0\x70\xaa\x6a\x5b\xec\x24\x49\x6b\xd5\x9a\x54\x97\xa8\x37\x87\x0a\x9c\xd9\xac\x56\x9f\xce\xd3\xc4\x10\xed\x63\xc2\xe3\xf7\x57\x87\xca\xb8\xfb\x92\xa2\x14\x6e\x95\x14\xfe\x7f\xbe\x1e\xc9\x16\x8b\x50\x68\x2d\x50\xca\x19\x6b\x55\xd0\xfd\x62\x92\xe7\x49\x6f\x52\xd9\x8c\x9e\x55\x75\x3d\x68\x55\x73\xf3\x0e\x66\xab\x70\xf6\xfd\x2b\x1d\x44\x83\x9a\xb6\xe2\x61\xa5\x3f\x3e\x51\xc1\x58\x94\xaf\xee\xa1\x8b\xc3\x84\x7d\xa0\xd4\xef\x1e\xe1\x26\x59\xfd\x85\x47\x02\x36\xa3\x35\xd5\x97\xf7\xb7\xb1\xe9\x61\x29\xb8\xaf\x85\x78\xd7\x68\xec\x61\xe1\xfc\x57\x9a\xb4\x7e\x5f\xb9\xae\xf5\xd3\x84\xa9\x3c\x63\xc2\xa9\x77\xd5\xa2\x0b\xf8\x41\xe4\x9b\xbc\x26\x8f\x69\xf5\xc2\x38\xcc\xa8\x4b\x97\x6c\x2f\x9d\x7f\x93\xd3\x0f\xd6\x22\x6a\x51\x92\xd9\x29\x5f\x42\x61\x5d\x2a\xc7\xf6\x2a\x56\x2d\xa4\x08\x9b\xca\x1a\x63\x17\x2a\xa7\xfc\x0f\x8a\x23\xd0\x1d\xc4\x64\xac\xe2\x71\x72\x14\x2d\xf8\xb8\xaa\xc5\x3f\x1b\xa4\xfd\x34\xcc\xa4\x45\x90\x53\x5a\x9d\xba\x43\x25\x00\xb9\xc9\x29\xed\xc6\x64\xa3\x88\xea\xa1\x4e\xe7\xbf\xb8\x28\x84\xcc\xdc\x9a\x88\x25\xf3\x96\xea\xe9\x20\xbb\xda\xbd\xc5\x2b\xc0\xa3\xbb\x82\xf7\x29\x4c\x00\x15\x2d\x5c\x54\x5d\xbb\x57\x31\x81\x91\xa5\x3d\x08\x94\xd3\xcf\xa7\xf8\x55\x10\xe7\xa1\xf1\x0b\x18\x05\x6d\x70\xd8\x26\x26\x46\xf4\x20\xb1\x35\xdd\xab\x44\x97\xba\x26\xcd\xba\x35\x5f\x77\x7b\x3f\xf0\x49\xd8\xfb\x63\x08\x63\x68\x9a\x98\xee\x78\x54\x37\x87\xaa\x07\x7b\x43\x21\x65\xb5\x86\x22\xda\x74\xc3\x28\xec\x33\x3a\x84\x35\x89\xe5\x21\xf8\x44\xcd\x92\x38\x5d\x45\x53\xb9\xd0\x69\x4a\x3c\x1b\x30\x4b\x26\x1a\x9e\x8b\x3d\x51\x8a\xe4\xa8\xe6\x1c\x9b\x28\x0f\x85\x50\x2f\x06\xf3\xaa\x9e\xf0\xbe\xef\xbd\x64\x52\xcf\x98\x3e\xec\x43\x55\xe7\x3b\x86\x17\xca\x4e\xca\x2e\x5a\x6f\xa7\xb6\xd5\x0a\x41\x4a\x71\xd5\xdf\xe2\xe2\xc1\x3b\x7c\x14\xd4\x7e\xd1\x8f\x66\x4f\x56\x1e\xc4\x3d\x23\xe2\x81\xac\xc1\x33\xa6\xc7\x53\x36\x93\x9d\xa9\xb7\xc3\xd8\xc4\x4d\x07\x4c\xe0\x2d\x83\xa4\xcc\xc7\x0d\x87\xc5\x85\xd1\x32\xab\x31\x8a\xc3\x01\x3d\x02\x19\x72\x35\x6f\x8f\x15\xf8\x56\x19\xed\xfa\xdc\x0e\x53\x2b\xba\xcc\xd8\x4f\xb8\x52\xc7\x27\xa3\xe7\x7d\xbf\x39\x29\x26\xc6\xd2\x3e\x2e\xf9\x83\x4e\x26\x5c\x0d\xbc\x58\x16\xc2\x28\x3c\xea\xb6\x0c\x60\xcb\xbb\x1b\xfe\x41\xe3\x8e\xb0\xf0\x95\x5b\x09\x5e\x7a\xa9\xbe\x68\xd9\x1b\x6e\x7e\xbf\x33\x97\xf5\xe6\xd4\x97\x54\x63\xfe\x20\x6e\x27\x11\x29\xb3\x38\x72\xd1\x95\x31\xa5\xf1\xed\x8f\xf9\x35\x42\x9b\xdb\x36\x4d\xb7\x35\x8a\xaf\xab\x32\xf1\xba\x46\x32\x73\x93\xb6\x58\x64\xc8\x19\x50\x7a\x54\xb6\x74\xf9\x73\xaf\x1c\xaa\xb7\x42\xd3\x17\x1b\x7d\xf1\x7e\xf2\xb4\x98\x8b\xa5\x8b\x9a\x9d\x3d\x54\x5f\x09\xf3\x6e\x2b\x35\x2b\x71\x4d\x89\xd4\xfd\x86\x52\xf2\xfd\x0d\x75\x51\xdd\x64\x90\xe5\x49\xcc\x82\x91\x22\x94\x59\x73\x2d\xa4\xdf\x27\xe1\x0e\x11\x85\xae\x39\x51\x66\x6e\xf1\x42\x45\x74\x5d\x73\xf5\x77\x94\x4c\xf6\xe9\xa2\x92\x25\x5b\xa3\x88\x11\xd3\x85\x11\x63\x3e\x51\x78\xdc\xe2\xea\x73\xc5\x2f\xb2\xe7\x24\xc5\x2b\xec\x61\x31\x54\x56\x2f\x04\x3b\x8a\x47\xb2\x12\xa5\x3b\xa7\x93\x0f\xb5\x2a\xb1\x3a\x3b\x4b\x4f\x60\x15\xc2\x22\xbd\x45\x98\x01\x4b\x20\x51\x01\x04\xcf\xf6\xba\x9e\x9a\xc7\x99\xdc\xcc\xda\x73\x28\xba\x0a\xc7\x41\x79\x57\x73\x2c\x0a\x12\xf0\x33\x0d\x0a\x39\x5d\xd2\x5f\xac\xaa\xb8\x80\x07\x15\x7a\x3d\x59\xdf\x5a\x2f\x97\x2d\xcb\xa5\xcf\x33\x6e\x96\xe0\xa6\xc3\x87\xeb\x99\x69\xdb\x49\xbf\x8a\x4e\x35\xb4\xef\xa1\x27\xa6\x5c\xa1\x97\x88\xed\xf0\xfc\xf0\x45\x99\x5f\x83\xbe\x4d\x6d\xbb\x1d\x36\x43\x61\x8f\x61\x49\xb9\xae\xfa\x1f\xaf\xab\x48\xa3\x6b\xe3\x3d\x74\xe7\x78\xd6\x6b\xb4\x81\x70\x60\x1a\x28\x0d\x12\xee\xc7\x47\xac\x7d\x59\x09\xf8\x72\xd0\x85\x40\xe3\x57\x87\x8a\x07\xcb\x0c\x15\xe4\x00\xf7\x95\xfb\xcb\xe9\x40\x47\x90\xe4\x81\x13\x77\x10\x58\x29\x17\xa4\x2f\xf1\x6e\xb7\xa9\x7d\x4e\x14\xed\xe1\x96\x63\xe3\x2c\x87\xa6\x99\xc0\xc8\xd7\x75\x31\x16\xbf\x2c\x0d\x91\x15\x78\x09\x71\x9b\xe9\xc2\x81\x04\xb1\xb2\x34\x9f\x28\x10\x23\x69\xe6\x2f\x4f\xd5\x0e\x1f\xde\xba\x8a\x5b\x13\x42\xb1\x2e\xec\x14\xd7\xa7\xc0\x5f\x41\xc2\x77\x94\xfc\x14\x67\x67\xeb\x26\x5d\x0c\xf3\x94\x65\x11\xe6\xf7\x33\x04\x32\x0a\x7c\xab\xc9\x48\x1b\xee\xb0\x01\x0d\x30\x1b\x16\xf9\x54\xf5\xc6\x6f\xd0\xfc\x61\x03\x42\x57\xdf\x6f\xa5\xe1\x58\xad\xec\x92\xae\x95\x5d\xaa\x62\xa1\xb3\xd9\x22\x25\xb3\x62\x2a\xe0\x73\x8f\x3b\x25\xce\xce\xc2\x2b\xf5\x66\x62\x32\x7c\x00\xcb\xf6\x75\xa5\xf0\x72\x5d\xe5\xe3\xfd\xf0\xe8\x51\x53\xf3\x28\xc0\x05\x0d\xc0\x5f\x28\x85\x22\x73\xf3\x73\xf5\x6c\x85\x28\x4c\x4e\xba\xf9\xb8\x96\xc0\x3b\x3e\x46\xbb\x8b\xc2\x3c\xab\x29\x67\xf1\xe3\x04\x66\xcb\xc7\xc6\xa2\x96\xd8\x7e\xae\x36\xbf\x7f\x6b\x9d\x96\x19\x6c\xd5\x3f\x56\xce\x63\x5b\x34\xf2\xb1\x14\xdd\x40\x8e\x2a\xb3\x45\xd5\x01\x58\xf6\x94\xcd\xb2\x91\xb0\x4b\xdf\x48\xb1\xe6\x00\xa2\xdb\x42\x62\x0a\x2c\xf6\x0c\x56\x09\xd7\xe7\x7d\x40\x40\x95\x9d\xc0\x45\x01\x64\xff\xfa\x58\xab\x0a\x77\xb1\x00\x28\x22\x19\xdb\x99\xad\x2d\x1a\x67\x0e\x39\xfd\xe2\x6b\x8c\x49\x6e\x81\xee\x89\x6c\x63\x53\xd3\x45\xd6\xb4\x24\xfc\x27\xb4\x0e\x2a\x65\x5e\xb1\x0b\xd6\x4d\x65\xfd\x34\x59\x0e\x5b\x76\xb7\xdf\x57\xbe\x01\xe0\x00\x6d\xd7\x57\x71\x59\x7c\x82\xe5\xc1\x61\x7b\xbe\xda\x0e\xe0\x01\xfb\x0b\x56\xfb\xff\x9f\xaf\x3f\x0d\x8e\x24\x4d\xef\xc3\xf0\xee\x02\xd0\x3d\xf7\x3d\x3b\x4b\x89\xd2\xbf\xf4\xf7\x46\x0c\x15\x1e\x4f\x98\x21\xdb\x61\xf3\x4b\x16\xd1\xd8\x19\x36\x82\xc4\x74\x00\xcd\xee\xf5\xf8\x83\xe7\x45\xd5\x8b\xaa\x1c\x64\x65\xd6\xe6\x01\x34\x26\xf4\x41\xe1\x50\xe8\x03\x43\xa1\xd0\x27\x52\xb4\x25\x07\x43\x92\x75\x98\x26\x19\xe4\x92\xd4\xee\x92\x74\x61\x79\xec\x41\xce\xec\xf6\xec\xdc\xf7\xf4\x7d\xdf\x37\xba\x1b\xed\xc8\xe7\xf7\x3c\xef\xfb\x24\x32\x9b\xdf\x2a\xbb\x01\x54\xe6\x9b\xef\xf1\x1c\xbf\x43\x1a\x4b\xbe\x2d\xb7\x62\xd3\x8c\xb8\x12\xe5\xbb\x73\xbb\xca\x6e\x59\x54\x75\xd9\xf3\x17\xda\x3d\x3b\x2a\xf2\x35\xda\x1a\x81\xe3\xe5\x88\x04\x11\xe0\x55\xc5\x76\x79\x1b\xa3\x20\xe0\x26\xdf\xe2\xcb\xf2\xd4\x9a\xe5\x6a\x76\xb0\xdb\x67\x07\x8f\x2a\x94\x40\x9e\x3c\x49\xef\x1d\xcf\x74\x09\xc7\x83\x93\x4b\x2f\x87\x41\xec\x03\xcb\x71\xc5\x21\xb2\x83\x31\x11\x82\x42\x2e\xef\xc8\xf9\x73\x79\x5f\x38\x5a\x5a\xd8\xc4\x26\x3a\x34\xbc\xe8\xc9\x1f\xa4\xb1\x12\xda\xac\x57\xbc\xbe\x82\x25\xc3\x20\x1b\x7a\xf5\x8c\xba\xd0\xa1\xf1\x1d\xad\xc7\x78\x0e\x53\xd3\x59\x5c\x78\x8f\xa3\xa3\x6a\xfd\xf4\x92\x62\x31\x67\xc9\x12\xcc\x8c\xf3\x5a\x9c\x0a\x4e\x2c\x52\x27\xa4\xaf\x92\x02\x62\x9d\x14\x0d\x7a\x61\x12\x81\x83\x21\xda\xd6\xea\x8b\x4f\xaa\xe8\x32\x1c\x96\x33\x0d\xc7\x1c\xce\x04\xe6\x89\x4b\x59\x48\x31\x92\x20\xed\x81\x8c\xfb\x7a\x93\x55\x09\x75\x4f\x26\x68\xc5\x39\x5f\x74\xd7\x63\x38\x11\x28\x4d\x8f\x83\xde\x5a\x20\x8c\x7b\x0c\x2a\x15\xd1\x7d\x0f\x1d\x39\xa7\x40\x6b\x1e\xb4\x39\x55\xc1\x8f\xe2\x45\x23\x54\x3a\xa9\xb5\x5d\x61\x76\xe4\x70\xbc\xbb\x9d\x10\xb9\x3a\x54\xfa\xa9\x5d\xdd\xe1\x29\x5d\xc7\x74\x72\xd7\x5a\xdf\x3a\x09\xf8\xb3\xf6\xc5\x44\x25\x9c\x7f\xa1\xe3\x3b\x07\xd6\xc4\x2c\x5c\x04\x9c\xca\x93\xf4\xc7\x30\x8e\x10\xbb\xc5\x8c\x3a\x82\x85\x8c\x8a\xc2\x57\x3a\x9e\x70\x99\x5a\x62\xc3\xf3\xf1\xe1\xec\xf9\xe7\xa7\x9d\x25\xbf\xcf\xe9\xbe\x59\x84\x36\x8f\x80\x66\xc2\xdc\x44\x61\x99\x3f\xab\xaa\xf5\xb0\xcc\x79\x43\x13\x4d\xf8\xf3\x05\xe3\x2d\x45\xf4\x96\xb3\x46\xb9\xa2\xa6\x67\x11\x5b\x93\x31\x96\x03\xd3\xfa\x2e\xa3\xd9\x31\xd4\xdb\xd7\x7d\x17\xf3\x4a\x85\x03\xa9\xc4\xb0\x52\xd3\xa5\x82\x80\x4b\x1b\x39\x38\x10\x0e\x6f\x9d\xab\xbc\xa7\xdd\x1d\x14\x69\x77\xd0\xd2\xf1\x33\xf7\x8d\x45\xfd\xb5\x81\x2f\x99\x9b\x8c\x05\x3d\x35\x39\x41\x1c\x99\x54\x5d\xaf\x97\x4c\x28\x9e\xd1\x31\x85\x52\xbb\xa5\x46\xfa\x6c\x6d\x07\xdc\x37\xdd\x1e\x45\x26\x66\x12\x98\x43\xd8\xec\xf3\x16\xf1\x34\x0d\x45\x59\xa3\x96\xdb\xcc\xec\x65\x89\x86\x5e\xdf\xb6\x2a\xa8\xd0\xf2\x6e\x24\xc0\xf2\x39\xea\x22\x79\x00\x4d\xaa\x88\xe6\x9a\xda\xd1\x1e\xa0\x94\x4d\xd0\x21\xe5\x1e\x28\x09\x45\x83\x42\xf6\xfc\xf4\x73\xe5\xa9\x8b\x12\xcf\x51\xd5\x70\xbe\x8e\x59\x8d\x3f\x7f\x57\x8b\x69\xd1\x86\x89\x40\xf2\x10\xba\x54\xd8\x02\xfe\x05\xce\x56\x14\x56\x8e\xa1\xd2\xc6\x17\x81\xda\xbb\x7e\x8d\xa2\x24\x9c\xad\xdb\x29\x84\xc6\xdc\xb8\x37\x56\xa7\xd6\x19\xb2\x87\xd5\xf6\x7b\xa2\xd8\x49\x73\x4e\xe8\xfe\x0a\xf8\xc1\x84\x50\x71\xf6\x2e\x07\x5f\xe2\x5b\xda\xc8\xa5\x98\x88\x69\xca\x7f\x00\xe1\x0b\x0e\xf3\xff\x5c\x89\xa3\xb1\x0c\x11\x5a\xdc\xad\x71\xa8\xca\xa4\xbf\x67\x73\x9b\x0e\xc3\x58\xc0\x2e\x0c\x33\xc1\x53\x08\xe6\x44\x91\xa0\x8b\x7c\x29\xcc\x5b\xfa\x18\xfa\x52\xeb\xc4\x7c\x39\xfe\xff\x35\xb5\xcd\xc2\x6e\x9a\x64\x6b\x59\x6e\x87\xa2\x4c\x87\xe0\x7e\x47\x47\xa9\x9f\xec\xa8\xd5\x58\x66\x67\x29\xd7\xb4\x83\x24\xea\xd1\x36\x20\xa2\x4a\x9e\x79\x75\xae\x36\x0f\x89\x53\x63\x72\x72\x98\x97\x5e\x59\x65\x02\xe3\x8c\xd9\x0c\x3c\xd7\xec\x5c\xad\x1e\xfb\xd2\xfe\x76\xd7\x64\x79\x2a\x9a\x7b\xce\xe3\x43\x61\x34\x95\xeb\xec\x30\x4c\x4d\xdc\x33\x74\x8f\x02\x62\xa5\x1f\x15\x14\xab\xe4\x4f\x26\x4c\xbb\x49\xdc\x23\xf5\x01\x9b\x4e\xf8\x26\xdc\x59\x9a\x1e\x28\x70\x9f\xd4\x0a\x70\x1b\xce\xa7\xa1\x3b\x30\x59\x16\x66\x5a\xac\xfe\xa6\x52\xc5\xbb\xa9\x5a\x02\x65\xe0\x1a\xe7\x96\x85\x63\x30\x4b\x99\xfe\xc5\x17\xea\xe6\xc3\xb8\x17\x9a\x18\x31\x34\x26\xde\x29\x3d\x0b\x4f\x81\xf3\x45\x3f\x1a\x9b\xbc\x48\x4d\x14\xbe\xc1\x1b\xb8\x30\x2a\xe9\xc7\xf9\x42\x05\x61\xbd\x30\x1b\x45\x86\x15\xa4\x59\x1b\x0d\xb3\x5d\x84\xd2\xea\x2a\x7a\x66\xa8\xc4\xf5\x19\x56\xa6\x40\x9e\x57\x82\xff\xea\x3e\xdd\x32\x13\xc7\x49\x11\x77\xed\x50\x12\x53\x7c\xc7\x3a\x9e\x85\x2f\x6a\x2d\x82\xd9\xd9\x85\xf6\x30\x89\xf3\x01\x37\x67\x30\x8d\x2f\xd2\x46\xc9\x9f\xc7\x5b\x59\x5b\xc4\x9e\x8a\xbb\x09\xd5\x82\xc5\x6b\x98\xbd\x32\x30\xc8\x62\x9c\xf1\x88\x87\x89\x15\x30\xfc\x65\x7f\xfb\xb1\x72\xdd\x83\x5e\x3d\x37\xe2\x94\x31\xf7\x4a\x22\x1e\xde\xbe\x08\x43\xbf\x26\xd5\x99\xad\x4b\x8d\x0c\xb4\x06\x49\x9a\x14\xfd\xc1\x62\x5a\x95\x8f\x41\x16\x29\x40\xb7\x0a\x59\x3b\x45\x8f\x03\xd5\x88\xbf\x52\x05\xd6\xcf\xb5\xa2\xc8\xd1\x26\xc2\x60\x56\xf4\xfb\xd6\x39\x5e\x8a\xa2\x96\x6a\x61\x9c\xf7\x5e\xaa\x79\x6a\xe2\xbe\xd4\xa5\xb0\x3f\xdd\x52\x69\xee\x2d\x15\x14\x99\x6e\xd7\x46\x16\x02\xd6\x0e\xf5\xfe\x47\x4a\x30\xf2\x8f\xb6\x12\x35\xca\xb4\xee\x85\xc7\xe8\x8b\x2b\x8e\x87\xa8\x5f\xdc\x19\x7b\x00\xee\xc3\x54\xfe\xe3\x1a\xd4\xd8\xeb\x48\x00\x4b\x0a\xdc\xdb\x26\x76\x7a\x2c\xc0\x9b\xe8\x0a\x3b\x8d\x4e\x4f\x24\xbb\x87\xbd\x16\x39\x1d\x4a\x8c\xc2\x89\x6a\xfd\xca\x0c\x9f\x01\xf7\x70\x02\xa9\x32\xe9\x8c\x73\x52\x93\x68\x31\xc9\x07\x36\x95\xbd\xca\xed\x01\xde\x24\xfd\x52\xa0\x29\x53\xf7\x65\xbd\x27\xa9\xed\x33\x46\x59\xea\x36\x6a\x10\x4e\x6e\xd5\x6b\xde\x37\xdd\xde\x37\xfd\xb0\xf2\x89\xf8\x11\x32\x2e\x8c\xcd\xbb\x88\xfd\xf1\x1a\x4f\xd3\x91\x2a\xb8\x82\xf2\xa8\xe5\x7e\x22\x9d\xa2\x8c\xf5\xa0\x68\x1e\x77\xff\xa1\x92\xef\x87\x83\x01\x4e\x5a\x64\x6b\x62\x3c\xa6\xac\xe5\xeb\x9c\xae\xd9\xd9\x76\x92\xf6\x4d\x1c\x66\x43\x6e\x11\xb1\x30\x48\x50\xc9\xbd\x3c\xd4\xd2\x8b\x2b\xe6\x66\xc4\xaa\xa6\x2e\x22\xf3\x6b\xe8\x9e\xd2\x6c\xb9\xd8\xa8\x8f\x64\xd2\x58\xd6\x0e\xa2\x42\x76\x20\xe4\x8b\x75\xaf\xe3\x63\xb2\xc4\xfd\xa8\xc3\x6a\x3a\xd3\xa3\x3a\x84\x64\xcf\x2b\x0b\xed\x7c\x10\xc6\xcb\x02\x63\xc3\x2d\x5d\x0b\x94\xf6\xf9\x35\xb7\x62\x4c\x9c\x87\x51\x24\x86\xd9\x72\x30\x63\x92\x20\x16\xba\x81\x21\xc4\x49\x78\x48\x91\x52\x97\xa2\xc4\x41\x0c\x95\xa0\x97\x12\xfa\xf2\x05\x94\x7e\x92\x2e\xaf\xed\xf0\x27\xea\x2d\x34\xe9\xd9\xf7\x53\x99\xe7\xa0\xb6\xe0\xfc\x40\xcb\x15\x82\x45\xf1\xdb\x5a\x00\xf8\xb7\x55\x70\xdc\x4d\xe2\xae\x65\x70\x5b\x93\xb8\xca\xa3\x4a\x46\xdd\x0a\x60\x15\x6b\x8b\xa7\x3c\x5f\xd4\xfa\xe3\xbb\xe7\xda\x26\xb3\xe6\x6f\xeb\x76\x36\x49\x57\xd1\xa1\xb8\x68\xe2\x65\xae\x5d\x4b\x73\xc8\x03\x8c\xd0\x14\x43\x93\x1d\xdc\x1a\xf4\xe8\x4e\x68\xa8\xe1\x05\x5d\xe7\xfd\x1b\x07\xf2\x5a\xb2\x51\xfe\x00\x8d\x38\xea\xdd\x77\x75\x1f\xed\x16\x4d\x7d\x86\x41\x23\x0b\xc6\xc6\xba\x31\xf6\xd2\x26\x60\x8e\x60\x22\xdc\xa5\xb9\x8d\xf5\xd4\x02\x44\x81\x76\x94\x17\xff\x5e\xc7\x4b\xe4\x2d\x9a\x65\x91\x9c\x92\x36\x92\x2f\x93\x7d\xac\x34\xed\xb3\xb0\x9f\x44\xc9\xd2\x52\xcb\x13\x04\x40\x9b\xe3\xcf\x0a\xc1\xb8\x6c\xd7\xf8\x78\xc7\x02\xfe\x76\xe0\xfd\x54\xbe\xad\xda\x00\x8b\x49\x5c\x64\xc2\x74\x10\x54\xa4\x42\x48\x36\x09\xa8\x75\x4d\x6c\x7a\xa4\x81\xe1\xf8\x0d\x0f\xd2\x86\xcc\x45\xee\x40\x01\x98\x6e\x34\x74\x53\x17\xa4\x84\xc4\xab\x4e\x8c\x5d\x68\x78\xa4\xd2\xee\x16\xd0\xaa\x49\x7d\x79\xbc\x49\xb4\xe4\x69\x45\x45\x8a\xb3\x22\x2a\xd7\xcc\x54\x55\x08\x90\x16\x83\x33\xdc\x9f\x9b\xf3\xc6\x3b\xbb\xe7\xbc\x29\xd5\xcc\x5e\xe7\x3c\xae\x1c\x8e\x8b\x74\xb1\xbc\xd1\xf2\xc0\x63\x5f\x11\x44\xf1\x62\x32\x22\x91\xdd\x8a\xcd\x32\x2b\xb2\x68\x4e\x97\xd2\x6b\x54\xd6\xb6\xa9\xd9\xd9\xb6\x29\xf2\x62\x88\xcd\xde\x59\xe0\x7b\x3b\x7c\x05\x56\xe9\xd3\x31\x3a\xb3\x97\xcf\xb6\x0d\xba\x71\xfe\x3c\x7e\xda\x93\x51\x6c\xb1\x3c\xb4\xaf\x93\x49\x42\xf9\x42\x75\x6b\x9a\x3f\x37\x08\x6a\x12\x64\x2f\x85\x0d\x3b\x5e\x27\xa7\xbf\x7c\x51\x89\x34\x7a\x61\xf2\x90\x77\xa5\x05\xee\x11\x91\x39\xfb\xfa\x30\xc3\x3d\x50\x2c\xf0\xc3\x78\x01\x72\x26\x95\xf7\xce\x9f\x35\xa2\xf7\xf2\x58\xd1\x49\x31\x10\x68\x4c\xff\x00\x77\x23\x23\xf4\x84\x46\x96\x99\xdc\x72\x6d\x97\xdd\x25\xe8\xaf\x8b\xd3\xc4\xfd\x54\xbb\xb3\x01\x69\x04\xb8\x34\xfc\x0b\x7c\x03\x12\x89\xdb\x4a\x05\x79\xbb\xef\x96\x16\x61\x2e\x4d\x62\xf4\xd1\xb9\xd8\xcf\x17\xba\x7b\x1f\x0e\x43\x76\xf1\x44\xf4\xf9\x2f\x03\x0f\x33\xf9\x98\xe6\x04\x7f\xc6\x94\xe7\x1f\x6a\xf4\xf3\x18\x24\xb9\x4a\x48\x18\x7d\xc9\x17\xb5\xdd\x71\xef\x2b\x6d\xd3\xb3\xdf\x2c\x4c\x6e\xb9\xe4\x82\xed\xfc\x96\x52\x90\xbd\xa5\x42\xfb\xa5\x24\xb5\x2b\x5c\x0b\xc2\x91\x70\x48\xfd\x24\xfb\x2a\x6b\x17\x24\x59\x7e\x6a\x79\x0c\x4c\x9a\x83\xd4\xeb\x54\xb3\x9c\x98\x0d\xec\x63\xb0\x93\xbc\x55\x2b\x55\x94\xe1\x5e\x42\x5f\xbf\x5b\x10\x0c\xef\x53\xdd\x1d\xbb\xd9\x76\xa5\x3d\x75\x41\x0b\x56\xbb\x15\x37\x32\x61\xbc\x54\x44\xc4\x10\x71\x7c\x47\xc7\x00\x07\xd4\x58\xe8\x77\x34\x6e\xec\xc4\x5c\x29\xf9\x2f\x45\x6c\x81\xae\xdb\xde\xac\x1f\x15\x78\x66\xdf\x39\xed\x1d\x72\x5e\x55\x29\x87\x49\x5a\x2e\xfb\x09\x4f\x81\x60\xba\xa3\x48\xa6\xf8\x22\xdc\xd1\xb1\x87\xa9\xf7\x19\xfc\x32\xa1\xb8\x88\xd7\x94\xc3\xda\x87\x58\x4c\x2c\xeb\x55\x7b\xd3\x65\x96\x00\x7f\xd7\x32\xe6\xa4\xfb\x47\xdb\xf6\xba\x52\xb8\xe0\x7e\x3e\x28\x5b\x5f\xba\x61\x2b\x67\x67\xb9\x9d\x28\xfc\x14\x36\x2a\xd1\xfe\x68\x90\x69\xe9\x26\xf1\x8a\x4d\xd9\x21\x45\xf7\x88\x9d\x82\xcc\x9b\x15\x4d\x84\x41\x32\xda\xd1\x72\x06\x47\xdf\xa2\x9b\x42\x86\x0b\xc3\x2f\xac\xb4\x2b\xa8\x91\xe3\x1d\xbd\x3b\xf6\xb2\xf5\xdf\xd2\x50\xbc\x13\x55\x75\x9c\xb8\xbf\xc3\x7f\xeb\x1d\xed\x0f\xc1\x8d\x35\x91\xd1\xd5\xd4\x99\xcb\x8a\x0a\xc7\x5d\x4a\xfc\xce\xb6\x8e\xbc\x13\xe2\xb1\xe6\x20\xe3\x95\xff\xaf\xd4\xc3\xc5\x5d\x1b\x20\x66\x24\xdf\xd7\x54\xa9\x76\x50\xf4\x79\xdf\x17\x86\xbe\xef\xbe\xd5\x75\x02\xcb\x77\x17\xc3\x0c\x46\x4b\xc2\xd2\x18\x89\x3c\xac\xef\xd2\x99\xd5\x78\x87\xc6\x8d\x78\xa2\xd6\x35\xcc\x33\x5a\x2d\x7f\xef\x39\x65\x3e\x7f\x1b\x83\x82\xcc\xe7\x20\x45\x26\xb8\x97\x1b\x90\x56\xe1\x91\x0c\x9e\xc6\x08\x21\xdd\xf9\x0b\x3c\x28\xf6\xe5\xa3\x68\x47\x39\x63\x5c\x6f\x01\x72\x34\x50\x52\x93\xd7\x11\xc6\x8b\xce\x37\xea\x59\xce\x0f\xcf\x15\x36\x6f\x07\xde\xc3\xef\x30\xce\x05\xec\x7f\x4f\x80\xd5\x26\x5e\xf3\xf4\xf6\x84\x5e\xee\xf9\x03\xb0\xe6\xc7\xd7\xef\x5c\x57\x3b\xe6\x1d\x50\x8a\x10\x81\x9d\x54\x84\xe3\xbb\xca\xdb\xfe\x3d\xda\x52\x10\xbe\x5d\x53\xb0\x0f\x1b\xe7\x61\x6a\xa3\xb5\x09\xa5\x5c\x83\xfa\xb0\xb8\x7c\xd3\x37\x89\x61\xfa\xd3\xbe\x1e\x62\xa3\x70\xc5\xa6\xa1\x04\x4d\xd2\x07\x57\x3d\x71\xa5\xdc\x68\xbf\x59\x84\xa3\xa1\x8d\xf3\xc7\xca\xf1\xc0\x84\x66\x2f\x76\x66\x4c\x12\xaf\x87\x05\xba\x28\x38\x87\xda\x09\x53\x2c\x11\xa8\x7c\xaa\xec\xee\x61\x7f\xc9\x85\x42\xba\x61\xa4\x6e\x1f\x54\xb5\x0b\x55\xd1\x68\xa2\xa3\xec\x10\x8e\xe0\x05\x62\x47\xfa\x70\xac\x55\xa0\x7f\xa8\x24\x6f\x3e\xa9\xf9\x1f\xce\xce\xb6\x47\x36\x57\x55\x06\x96\x45\x97\x54\xd7\x4f\xdf\xdb\xc1\x23\xca\x19\x7b\xf5\xd9\xf2\xed\x8b\x8d\x27\x4d\x32\xcc\xe5\xcb\x81\x5a\xbb\x3b\x00\x3e\x43\x65\x05\xa6\x43\xb8\x91\x77\x02\xe5\x06\x75\x57\xb3\xde\x4f\x03\xc8\x8c\x67\xfc\x7d\x4c\x45\x5e\xed\x63\x8f\x40\xfc\x82\x5a\x9a\x22\xe3\xaf\x6d\xd0\xb4\x88\xdd\xb9\xb1\x37\xcd\xba\x1a\x78\x83\x9d\xa3\xc8\xa3\x30\xdd\x4f\x32\x8e\x5a\x3c\xab\x95\x66\xf6\x05\x9a\x65\x78\x41\x37\x54\x51\xf2\x71\x62\xac\x00\xaf\x72\xb0\xa6\x4d\x26\xe1\x88\x38\x14\x5a\x22\x65\x2e\x6c\x56\x80\x7c\x6c\x28\x85\x63\xe1\x68\x03\xe8\x6b\xae\x9d\x16\xc3\xc5\x28\x8c\x65\x13\x62\x19\x9d\x40\x95\x7f\xfd\xee\x1f\xd9\x3c\x2f\xba\xa8\xed\x8b\x6c\xbe\xc7\x15\x9c\x6c\x92\x9c\xcd\x53\x13\x67\x4b\x36\x9d\xf0\x26\x6d\x5f\x62\x0f\x45\x51\xe2\xac\x22\x0c\x5e\xaf\x4a\xe3\xe4\x6b\x8f\x29\x25\xaf\x67\x3b\x74\x4b\x42\xfe\xf7\xd4\xe6\x8f\x91\x3c\x3b\xc1\x33\x67\x81\xb9\x81\xc8\xd1\x55\x64\x76\x8b\xb4\xc4\x65\x0a\xd7\x11\x5e\x02\x55\x20\x4e\xab\xca\xed\xe1\x07\xa8\xfa\x60\x0d\xbf\x89\xe9\x86\x16\xfb\xe4\xba\x17\x1f\x12\xa4\x34\x2a\x10\xe7\x6a\x6c\xad\xdd\x73\xed\xe7\xff\xc7\xff\x61\xa2\xbc\x29\xcc\x62\xbc\xe0\x8a\x1d\x80\x60\x6b\xeb\xed\x98\x97\xdb\xb1\xed\x2e\xeb\xfc\x01\x7b\xb8\xe8\x03\xf9\xf4\x79\x29\x5c\xb1\x4f\xd1\x2a\xe0\x8e\xac\xe2\x90\x1d\x0a\xd4\x5e\xc3\x32\xb7\xa2\x47\x52\xde\x18\x56\xfd\xb6\x8e\x32\xcc\xff\xf3\x4a\xfb\xf1\x4e\xe0\x77\x8d\x1f\x8d\x5b\x4a\x03\x96\xee\x0c\x2b\xea\xd7\x95\x78\xe7\x75\x04\x0f\x02\x12\xd0\x25\x3c\x1a\x61\x57\x27\x2c\x47\x18\x5f\xbf\x49\x6e\xc9\xce\xfb\xd1\x15\x9b\x7e\x84\xb7\x2b\x0d\x18\x6d\x5a\x70\x60\x52\x45\x8e\x5a\x20\x04\x5d\x24\xd6\x0a\x0a\x14\xfb\xee\x0f\x94\x8a\x54\x9e\xa4\x6b\x14\x8e\xa0\x4a\x77\x42\xb5\x08\xb5\x42\xfa\x4a\xb8\x12\xf6\x94\x3e\xe4\x07\x81\xcf\x9f\x3f\x50\x8e\x9e\x4b\x49\x91\xe6\x83\x1d\x1a\x9a\xa7\xf0\x62\x77\x14\xac\xf9\xf7\xe8\x80\x91\x25\xa9\xed\xc8\x3d\x9a\xb2\x5e\x6b\x9d\x9d\x6d\xf7\xec\x30\xe9\xa6\xac\xbd\x23\x68\x0f\x05\xae\xbf\xe5\xf2\xde\xf2\x7c\xca\x9d\x9a\xa3\x1c\xa4\x4a\x35\x92\x05\x84\xb0\x19\x69\x9d\x8b\xdc\x46\xb6\xcc\xae\x93\x96\x2a\xa5\x7c\x14\xe8\x2a\xcb\x47\xb5\x12\xba\x6c\x45\x71\x92\x4e\xb5\x76\xed\xe2\x8d\xf8\xf1\x8e\xca\x03\xef\x50\x23\x0c\xb1\xc7\x19\x05\x32\xbb\x4a\x33\x50\x3a\x57\xcf\x6a\xb6\xa7\x59\xca\x6d\x1a\x27\x49\xdc\x2a\x67\x1f\x9b\x9c\x28\x5a\xe9\xa9\xa6\xfe\xa5\x35\x29\xd7\xf1\x81\x5d\x79\x88\x02\x79\xfe\xbc\xfe\x94\xf2\x20\x87\xe6\x42\xa6\xfa\xa9\xbf\x31\x56\x3a\xbd\xbf\x71\x5f\xd7\xa6\xbe\x09\xa5\x45\xea\x90\x6b\x1e\xdf\xc0\x1c\x1d\xb9\xc5\x26\x5b\x23\x93\x52\xf6\x88\xb5\x75\x5d\xa5\x3c\x17\x69\xde\x23\x04\x9d\xe8\x34\x54\x26\x87\x49\x12\x87\xb6\x55\xa3\x8d\x49\xd3\xd8\xa7\x56\x5e\x0c\x7b\x86\x63\x02\x76\xb2\xe2\x0b\x6f\xb2\x95\x44\x85\x58\x17\x22\x32\xfa\x30\xf0\xf8\x8a\x0f\x55\xec\x12\xd9\xb8\x9f\x0f\x6c\x2c\x4e\x8d\x08\x97\x50\xc1\x47\xef\xf2\x9e\xe2\x65\xbc\xdf\xac\x2a\x16\x25\x26\x9f\xf0\xc7\xe5\x71\xed\x28\x72\x1e\xb5\x11\x9c\x5c\x07\x15\x57\xc0\x1e\x18\x45\x06\xef\x8b\xcb\x76\xe8\x7b\xbe\x8d\x5f\x90\xbc\x8a\x36\x23\x87\x79\x2f\xa3\x3b\x71\x36\x2e\xe7\x18\x7f\xc6\x2a\xe0\xdf\xdf\x4a\x46\xfe\xb9\xf6\xde\x57\x28\xf5\xe5\x9d\x8b\x46\x42\x76\x31\x09\xab\x4d\x6a\x63\x43\xa1\x0c\xc7\x4e\xca\xb5\xf0\x3d\x65\x79\xff\x6f\x54\x6d\x85\x7c\x94\x7a\xc9\xaa\x28\x41\xba\x96\x9f\xab\xb1\x9d\x0d\xb4\xb5\x6f\xdc\x5d\x9b\xf0\x29\x10\x2b\xdc\x21\x56\xfd\xe7\x0a\xa5\x75\x61\xfc\xb8\x4e\x40\x52\x59\xf1\xf4\x74\xe1\x53\xd8\xd1\xb1\xbb\x3c\xbe\xae\xc0\xc6\x47\x1b\x65\x52\x97\xc2\x74\x38\xe1\x41\x2a\x78\x9b\xf8\x85\x2f\xf5\x3e\x73\x43\xf5\x19\xbb\x26\x4c\x6d\x6c\x33\xcd\x74\x39\xa3\x34\x1e\xce\x68\x06\x77\x11\x87\xdd\x70\x64\x22\x06\x04\xe9\xac\x44\xc8\x9d\x2d\xe7\x70\xf9\x69\xa0\x18\xbe\x9f\x36\x28\xbe\xb7\xb3\xdc\xf4\xc2\x62\xd8\x52\x2e\x65\x17\x94\xa1\x71\xdd\x41\x77\xd7\x4c\xbb\x67\xfb\xa9\x15\xca\x89\x4b\x9e\x1c\x1c\xfc\x0f\x70\x70\x49\xa9\x5d\x46\x77\x14\xe6\x4b\x26\x8a\xb2\x09\x65\xbf\x7f\x4a\x6b\x37\x30\x7f\x09\x20\xe0\xed\x9d\xe7\x3c\x5d\x64\x6d\x64\xd3\x30\x5e\x8a\x20\xdc\xeb\x13\x93\xf3\xaa\x58\x77\x5e\xa9\x49\xe4\x69\xd8\x5d\x8e\x2c\xbd\x7d\x44\x2b\x57\xe9\x5c\x40\x8d\xe3\xb8\x72\xc8\xbf\x57\xc3\x88\xcc\x4f\xb7\x17\x23\x33\xe4\xec\x5c\xc8\x9b\x8a\xc8\x19\xf8\x0d\x76\x34\x48\xf2\xa4\x9b\x8c\x42\xc2\xae\x38\x25\xc1\xf7\x10\x64\xf3\x85\x3a\x2e\x17\x4d\xdc\x9f\x50\x5b\x1b\x4b\x5a\x3b\x0a\xb5\xb3\x9f\xf8\xb2\x49\x30\x75\xd1\xa4\x69\xc2\x08\x5a\xb1\x5b\xf1\x11\x9c\x37\x45\x5e\x4c\xf2\xdc\xf1\xa6\x84\x4f\xdd\x72\x5a\x66\x97\x95\x0c\x4b\xbf\xb0\x59\x8e\x1f\x44\x91\x88\x0d\xb0\xf8\xa2\x11\x76\x33\x4c\xf2\xc4\xb5\xd9\x10\x1c\xdd\xd0\x89\xc4\x04\x00\x93\x52\x95\xab\x1b\x8a\xb2\xe9\x58\xc5\xbf\xe2\x8c\x92\x89\x3c\xa3\xf6\xcb\x30\xee\x85\xa9\xed\xe6\xd1\x1a\xf1\xbe\xc5\xdf\xd7\xd7\xf7\xcf\x28\x55\x97\x9f\xd2\x8b\xe5\xcf\xc8\x34\x90\x04\xb0\x1e\x02\x5f\x8c\xbf\xe2\x5b\xa4\x90\xb9\x82\x22\xf4\x94\x32\x1a\x38\xa2\x2d\x78\x18\xf1\x20\x5f\x48\x01\x97\xbc\x5c\x1f\x49\x9e\x56\x9c\xa3\xb5\x24\x5d\x7e\xcc\xab\xb3\x1e\xc1\x84\x40\x0e\x74\x51\xc7\x34\x8c\xcb\x46\x0a\x75\x4f\x23\x00\xde\xe5\x78\x01\xa1\xe8\x25\xed\x76\x72\x41\x55\x33\x27\x3b\xbe\xa7\xf1\xbb\x97\x02\x6d\xc1\xe7\x5b\x30\x8f\x12\xc9\x50\xac\x25\x69\xbf\x67\xa7\x8e\x40\xf1\xb8\x6e\x35\x60\xe3\xbb\x51\x92\x0f\x5c\xf1\x5f\x60\x75\xfe\xb4\x3a\xa7\x26\x53\xbe\x1a\x76\x2d\x31\xad\xd8\xcc\x87\xee\x06\xd8\xa3\x1b\x4a\x2b\x6c\xbb\xeb\xfd\x99\x95\x90\x46\x7e\x52\x61\xbd\xe0\x22\xe7\xc4\x85\x5d\x9c\x7c\x4a\x77\xed\x2f\x28\x71\x8f\x91\x25\x01\x2d\xaa\x49\x29\xd1\xe3\x57\x45\x43\x34\x50\xc5\xc5\xc3\x78\x11\xe2\x8e\xeb\x4b\xad\x17\x94\x18\xdc\x01\x77\x4a\x75\x5f\xec\xbd\x98\xe9\xe2\xe4\xf6\x8e\xc7\x2b\x1d\xd3\x34\xf1\xbb\xe3\xaa\xf8\xcb\xfd\xa2\xbb\xa1\x35\x14\x25\x88\x9b\x3d\xfd\x09\xbe\xf0\x1a\xe7\x49\xbc\x64\xb3\x4c\x96\x30\x46\x9a\x1d\x20\xf8\x42\x2d\x91\x51\x6a\x7b\x61\x37\x0f\xe3\xfe\xa4\x2f\xf6\x02\xc8\xef\x22\x22\xa7\xfa\xf5\x49\xe0\x4b\x56\xff\xe6\x92\x02\xff\x8d\xd2\x30\xa6\xbf\x41\x03\x84\x8d\x1c\xdb\x2b\xce\x2b\x78\xd6\x21\xd6\xe5\x42\x11\xab\xcf\xab\xc3\x29\x2b\x16\x73\x72\x92\xec\xa1\x23\x80\x9a\xf0\xfb\x81\x47\xef\xbe\x5f\xab\xb1\xff\x5c\x3b\x0a\x17\x93\x14\x25\x3f\x6c\xd0\xe7\x35\x46\x96\x87\x19\x0b\xe9\x56\x25\xb9\xb5\x91\x99\x2c\x27\xb6\x98\xbc\xd2\x8b\x92\x06\x92\x27\x32\x7c\x8a\x68\x52\x7c\x5d\x1d\x27\x2c\xe9\x16\x8e\x49\x86\x89\x33\x41\x42\x1d\x22\x84\x52\x01\x19\x54\xb7\xa4\x2e\x4b\xc8\xef\x77\x2e\x63\x48\x8d\xf9\x73\xa0\x02\xc3\x15\x7a\x31\x0e\xb3\xa2\x7d\xe5\x98\xc0\x2e\xe2\x62\x34\xf2\xc2\xe2\x7a\x5a\x39\xf3\x8d\x0a\x9c\x7c\xa4\x11\x87\xfc\x81\x64\x75\x37\xe1\x27\x86\xc2\xc1\x4d\xaa\x50\x09\x12\x8b\x46\x53\xdc\x11\x1e\xf3\xb4\xae\xd1\x08\x4f\xbc\x47\x97\x11\xc4\x32\xe7\x98\x86\xc0\x5d\x69\x12\x41\xc9\x07\x70\x7b\x2f\xbf\x4a\x20\xe5\x13\xde\xb2\x15\x51\x00\x1e\xf4\x73\xfc\x31\xe4\xb5\x9f\xd7\x12\x81\xdd\x73\xed\xd7\x93\x22\x8d\xc9\x8b\x47\x59\x84\x9f\x57\xba\xfa\x1e\xf6\xb2\x58\x84\x51\x8f\x85\x03\x5f\x16\x74\xbd\x8f\x79\xbe\xf9\xb3\x54\xa1\xa4\x98\xe2\x67\x9e\xc0\xf9\x83\xf6\x11\x8c\x48\x37\x2f\x36\x52\xf5\x32\x93\x87\xd9\x52\x58\x55\xea\xbe\xa3\xaa\x22\x77\xbc\x18\x63\x6e\xed\x68\xd2\xaf\x5c\x76\x1f\xd3\x26\x6a\xee\xd7\x95\x6a\xc3\x13\x8a\x4a\xd8\x23\xf9\x18\x65\xfb\x75\x35\x50\x40\xba\xba\xe6\xeb\xee\xb9\xf6\x4a\x98\x44\x36\xcf\xb1\x65\x08\xf6\x43\x09\xda\x9f\x0a\x94\x7c\x41\xbc\xf6\x94\x57\x84\xfa\x35\xc5\x5f\x3a\x4c\xfb\x30\x32\xa5\x4d\x2a\xc6\x61\x00\xd9\xd0\x96\xd5\x7c\x02\x9f\x03\xdd\xc6\xab\x63\x2b\x42\x9a\x63\x48\xfe\x0e\xe3\xec\x40\x97\x7d\x13\x45\x05\x94\xdc\xb8\xa8\xe9\xea\x8a\xe5\x78\xb2\x06\xdd\xd8\x6b\x90\xfc\x5b\x9c\x76\x98\x6d\x77\x55\x50\x75\x86\x0f\x3b\xa4\x3d\x87\xc7\xad\xaf\x7f\xc3\xc9\x00\x28\xa7\x90\x9d\xeb\x0d\x24\xa1\x9e\xa3\x8e\x0a\x75\x46\x35\x02\xce\xa8\x57\xc0\x8c\xc4\x27\x5b\x2f\xed\xdf\xfc\x12\x77\x82\xd5\x7d\x21\xa8\xb6\x0e\x7e\x45\x02\xa0\x6b\x81\x17\xe6\xbc\x3d\xf6\xdd\xac\x3b\x81\x77\xcb\xb9\x82\x87\xc5\xc6\x3f\x05\x8d\x2c\x16\x12\x0d\x54\x79\xf4\x9c\xe2\x00\xdd\xa6\x21\x91\x27\xa7\x97\x00\x24\xca\x21\x4d\x62\xbb\x8c\xb7\xc0\xa4\x03\x45\x00\xfd\x44\xa9\x75\x7c\xe4\x84\xa8\xc8\xdf\x22\x2f\x52\x80\xbd\x1c\xd1\xa9\xbc\x1d\xaf\x59\xe5\x02\xd1\x24\x8a\x84\x09\x2a\x7a\x41\x74\x1f\x7c\xa1\x4a\x44\x07\x0a\x0e\xf4\x75\x72\xc0\xfb\x45\xa0\x8e\xaf\x77\x6b\xec\xfd\x17\xda\x26\x8a\x76\x50\xbd\x18\x73\xfc\xa6\x12\x1a\x7c\x00\x25\x71\x96\xf7\xa4\x01\x61\x51\xa2\x40\xc9\x57\xa2\x32\x8a\xce\xe8\x15\x75\xd0\x44\x26\xee\x17\x61\x36\x60\x83\x1e\xbc\xa1\x6d\x24\xbe\x20\x21\x78\x6b\xff\x9e\xaa\x1e\x38\xc6\xfe\x44\xad\x9a\xf0\x42\xbb\x9f\x9a\xc5\x09\xef\xb0\x7d\x5b\x1b\x24\xfe\x40\xc9\x07\xdd\x54\xf4\xe7\x28\x5c\x6a\x29\xaa\x01\x14\x54\xf8\xb3\xb7\x67\x02\x4a\x7f\x42\x15\xd0\x4f\x69\x96\xd7\x05\x65\x5c\x72\x47\xb5\x46\x96\x6c\x9a\xda\x30\x35\xc8\x15\xd8\x72\x22\xd0\xa1\x47\xf9\xa4\x92\xf7\xf8\x9b\x5a\x8c\xd6\x1e\xae\x0a\x6a\xb4\x9c\x6e\x29\xcb\xe4\x81\xd0\x72\x77\xac\x3b\x27\x54\x35\x14\xa5\x10\x57\x3f\xfb\x27\xff\xa8\xa3\x3c\x6d\x1f\x5d\x57\x4f\xbb\x83\x8a\xb7\x18\xdd\x47\xd6\x3d\xb1\x6e\xfb\xba\x92\x87\xdd\x54\x3a\xad\xdd\xb4\xe8\xd9\x6c\xc2\x47\xa4\x77\x50\xf5\xc4\x05\x44\xf1\xe4\x73\x83\xd8\xdb\x92\xe9\xda\x28\x5c\xca\x39\x65\x40\x60\x87\x94\x81\x3f\xfb\xe4\x27\x0a\xf3\x37\x44\x85\x59\xb4\x69\x5b\x4a\xd1\xa8\x61\x07\x29\xcf\x45\xa2\xf9\xb1\x48\x9b\x52\x11\x3a\xdb\x60\x0d\x99\x2c\x2d\x31\xa2\xf4\x55\x07\x05\xa5\xaf\x13\x8c\xe8\xd3\x95\xe6\xd3\x8a\x89\x6c\x9c\x4f\x79\x1a\xe1\xc9\xc0\x4b\x58\xe1\xbb\xb0\xae\xef\x69\x66\x00\x8c\x9f\x44\x76\x4d\xb5\xfb\x4d\x56\xc0\x33\xf0\x65\xa7\x56\xd6\x9a\xf3\x2a\x66\x3e\x07\xb1\x2b\x36\x7d\x58\xc9\x68\xe1\x64\xc5\xcf\x4d\xa0\x8b\x87\x6a\x3a\x37\x81\xd1\x53\xba\x86\xc9\xef\xac\x10\xe6\xa7\x9d\x05\x4f\x39\xe7\x30\x57\xdf\xa4\xad\x1b\x9d\xb1\xb3\x4a\x13\xf2\xe1\x75\x05\x11\xbc\x12\x28\xab\xba\x53\x0a\x24\x14\xa6\xa9\xe9\x85\xc6\x45\x89\xce\x09\x66\xb7\x73\x85\x69\xaa\x4a\x9a\xe1\x22\x5b\x5e\x38\x81\x63\xc7\x94\xb9\xe0\x05\x9e\x00\x6c\x8a\xd9\x13\x1e\x67\xd8\x45\x8d\xe0\xbc\x18\x3c\x28\xe9\x47\x6f\xaa\xdc\x77\x24\xbf\xf0\x15\x8c\x07\x69\xf0\xf1\x22\x60\x6b\x8e\x17\xf1\xe6\x58\xd1\x2c\x8e\x35\xc1\xe9\x62\x23\x3d\x20\xec\x49\xdf\x23\x15\x20\xfe\x5c\x83\x40\xef\x9b\xde\xd3\x26\x6d\x96\x15\x13\x15\x8c\x16\x53\x85\x91\x39\xb9\x68\x90\x82\x68\x2f\x25\x69\x3f\xe1\xdc\x9d\x49\x7c\x88\x58\x85\xd1\xe7\xf5\x9f\x8a\x3c\x8c\x48\xca\x79\x27\xfd\xb4\x73\x88\x76\x89\x33\xda\x7d\x38\xdb\xb8\x9f\x82\xde\x1f\xb4\x82\x30\xaf\x3f\xa2\x01\x92\xde\x7e\x6b\xd7\x2e\xf9\x85\x06\x9a\xd9\xab\xed\x81\x29\xe2\x5c\x8a\xa7\xa2\x70\x46\x5f\x2f\xda\x67\x8f\x29\x05\x5f\x13\xa1\x86\xec\xf4\x4d\x1d\xba\xec\xd4\xdf\x0a\x21\x1a\x29\xfd\xef\x1b\x1a\xde\x7b\xa3\xc6\xa0\x00\x05\xad\x97\x0c\xc3\xd8\xc4\x39\xf3\x7a\x11\xb6\x82\xba\xce\x9f\x15\x84\x6f\x94\x86\x5d\xfb\x84\xca\x25\xb1\xe5\xa0\xa2\x74\x11\x8d\x49\x87\x23\xf2\x11\x04\x7c\x31\x15\x2d\x55\x6e\xea\x1e\x42\x7c\x54\x46\x58\x5b\x13\x51\xc0\x04\x55\xd8\x91\x00\xef\x84\x6a\x0a\x2b\xf3\x04\x9e\x5b\xf6\x30\x58\x88\x22\xd9\xa3\x30\x2e\x17\x09\x4c\x8c\xa0\x79\x83\xce\x14\xdc\xe3\x79\x56\xc1\x15\x68\x65\x64\x52\x8e\x75\x71\x66\x7f\xa9\xdc\x7f\xbf\x6c\xda\x78\xbb\x49\x9c\xd9\x38\x2b\xb0\x75\x03\xd4\xf5\xa7\x81\xd6\x69\x50\xc0\xb0\xba\x73\xd6\x9e\x57\x16\xda\x86\x52\xd3\x09\x0f\x0b\x42\xf3\x4e\x8e\x1e\x1a\x11\x39\x9a\x15\xa5\x3a\xcf\x93\x34\xb6\x6b\x3b\x55\x0c\x54\x31\xcf\xd8\x08\xaa\x27\xd8\xec\x2c\x1f\xb0\x87\x30\x0d\x50\x82\x40\xd9\x4f\x58\x48\x9e\xce\xe0\xf5\x2a\x15\x60\xaf\xe5\xa5\xd7\x34\x33\xfd\xb8\x0a\x86\xcc\x20\x9b\x2a\x33\x4e\x15\x58\xc8\x01\x09\x6b\x09\x27\xb1\xee\x20\x8e\xef\x22\x8c\x13\x29\xd8\xad\xd3\x12\x83\xdc\x2f\x73\x83\x30\x11\x75\x39\xa4\x12\xdb\x3a\x2a\x3d\xdc\xb6\xae\x44\x20\x97\xb3\x87\x55\x43\xee\x3c\xe1\xe4\x95\x62\xa9\xe0\xac\x98\xb8\x24\xda\xdf\x0a\x51\x72\x0e\x5d\x5d\x55\xf3\x7b\x15\x6f\xf7\x3f\xfd\x9d\x8e\xd6\xbb\x6f\x89\xc7\xda\xaf\x3f\x45\xc7\x3c\x62\xc0\x6d\xda\x47\xeb\x67\x94\x7e\x4c\x3e\x08\xed\x8a\x05\x8d\x8f\x4f\x10\x5a\x5a\x72\x9a\x08\x94\xef\xf5\xa2\xd7\xaf\x66\xde\xa8\xfa\x38\x90\xb0\xa7\x75\x5c\xab\xad\xff\xf9\xe9\xf9\x76\x37\x32\x59\x16\x76\x79\xb8\x9a\x40\xd1\x5b\x21\x54\xaf\xbd\xc6\x62\xf1\xa3\xd0\x76\x71\x8c\x88\x56\x4d\x45\xc5\x46\xe6\x05\xb1\xdb\xb3\x41\xc8\xb8\x6b\x09\xde\x3c\x79\xe2\x94\x72\x1e\x5b\xb4\x26\x35\xd2\x00\x12\x4b\xa4\x96\x93\xc0\x38\xec\xf3\x58\x93\xd9\xc8\x66\x19\x2d\x07\x9c\x75\xdb\xb0\xaa\xa5\xd7\xe5\x51\xbc\x57\x6b\x4f\x4e\xed\x4b\x72\x5d\x35\x29\x78\x30\x58\xe6\x28\x03\x4b\x61\x80\xde\x0d\x72\xaf\x73\x63\x2d\x37\x6b\x48\x7c\x9d\xe4\x66\xbd\x47\xa6\xc7\x85\xbd\x89\x15\xe5\xc4\xf7\xe7\x9d\xd1\x9f\x37\xab\x0c\x97\x96\x4c\xbc\xa6\x2c\xbb\x2e\xe9\x52\xd0\xa5\x06\x94\xdc\x1e\x11\x4e\x95\xb3\xc0\x41\x47\xbc\x22\xec\x69\x55\x5d\xe9\x26\x71\x8e\x2d\xa3\x05\xac\x87\xa0\x4a\xa9\x17\x25\xb0\xd2\x9a\x7c\xe2\x0c\xc9\x41\x72\x50\x86\x69\xcd\xc2\xe1\x7c\x31\x7e\xda\x17\xd7\xb2\x30\xcb\x6d\x79\x06\x4c\x28\xa1\xd2\x0b\x7a\x77\x41\x16\x8f\x05\x3c\xd5\xd1\xb2\xf4\x59\x6e\x4d\x8f\xea\x1f\xc2\x1d\xa3\x51\x13\xf2\x98\xf2\x59\x60\x12\x93\xb8\x0a\x7a\xaa\x40\xb6\x1a\x2e\xa1\xe4\x21\xf1\x26\x8d\x61\x5d\x21\xb8\x1b\xf6\x4d\x6a\x73\xf6\xfd\x91\x5c\xb5\x7c\x63\xfc\xb9\x49\x00\xcd\x1e\x70\xde\x1d\xcc\xbc\xa1\xcd\x51\x58\x38\x5b\x9a\x75\xff\xb0\xbd\x6f\x9a\x04\x88\x70\x42\xa1\x6c\xa8\x45\xa2\xb8\xef\x3d\xae\x00\xe5\xb6\x0e\xff\x6b\xaf\xb5\x17\xbd\xbe\x9c\x54\xfa\x74\x7a\xaf\x18\xf0\xf5\xde\xc6\xfc\x74\x3b\x4f\x95\x9c\xaa\xc4\xab\x4a\xec\xe3\x3c\x0a\x9e\xd5\xb8\x7d\x91\x9e\x52\xa9\xe2\x88\x7a\xe1\xb1\xe0\x11\x0f\x0f\xcd\x87\xca\x8f\xe7\x9c\x56\x46\x3e\xe7\x7b\x53\x26\xcd\x63\x06\x72\xba\xe3\x8c\x4b\xba\x68\x9e\x4d\x75\x54\x73\x6a\x53\x01\xc3\x73\x8a\xf8\xca\xdb\x66\xc1\x1a\xbc\x76\x51\xaf\x79\xb2\x22\x42\x94\x53\xa1\xda\xc1\x1b\xbe\x40\x0c\xc1\x70\x02\x55\x2e\x27\x09\x78\x0f\x33\x28\x6f\x8a\x7f\x83\xd6\xa5\x54\x56\xb6\x2e\xb7\x97\xf6\xb7\x97\x52\x13\x77\x4d\x98\x49\x0a\xe4\x60\xde\xe5\xdf\x10\xfc\xf7\xd6\x93\xbe\x0c\xd8\x86\x26\x5d\xb6\x3d\x8e\x8b\x9c\x18\x9c\xab\x0f\x9c\x6f\xf2\x24\x2a\x83\xed\xc4\xd9\xe4\x3b\x8b\x66\x67\x33\x50\x9f\xa0\xbb\x66\xda\x7d\x13\x45\x09\x9b\xb4\x39\x75\x23\xc7\x3f\x02\xe4\x17\x85\xf8\x7f\x55\xa3\xfe\x94\x37\x9a\x85\x3d\xbb\x6a\xd6\x10\x92\x48\x3b\x40\x29\x11\xc0\x1c\x18\x3d\xb5\x6d\x9d\x26\xf2\x03\x72\xa8\x7c\xad\x55\x95\xe5\xab\xa8\xef\xa9\xee\xec\xc0\x92\x78\x22\x0d\x0c\xa6\xc6\x77\x09\xfb\xc4\x9f\x6b\x6f\x61\xff\x9e\xaf\x51\x39\x9d\xda\xb4\xca\x44\xe8\xba\x12\x38\xbe\xae\x18\x20\x6c\x21\xa9\x42\x2c\x68\xd7\x32\xa6\x16\xf3\x49\xdc\x98\x1b\xd0\x61\x66\x98\xb8\x58\xdb\x1d\x09\xf8\x2d\x39\x1f\x3c\x66\x23\x19\xd9\xd4\xe4\x49\x9a\x91\x69\x0a\x32\x19\x08\x20\x88\xd6\x70\xb9\x6c\x51\xe7\x3f\x8a\x2a\x01\xa2\x8c\xcb\x84\x5f\x12\x92\x9a\xd2\x8c\x33\xa9\x8d\xf3\x8c\xda\x73\x08\xa1\xb9\xdb\x25\x7c\x39\x8f\x56\x3e\x5b\xa9\xeb\x07\x1e\x6b\x7d\x92\x6e\x00\x5b\xef\x69\xe5\x1f\xd0\xa5\xac\xa5\xe5\xd9\x6e\x00\x77\xf0\xe7\x06\x22\xc5\x42\x9b\xea\xd3\x13\x65\x40\x84\x11\xbb\xa1\xbc\x89\x8f\x6a\x82\xcb\xa9\x06\x3a\xc8\x7c\x3b\x0f\x7b\xb2\x72\xa4\x43\xd6\x72\xc6\x88\x6f\x35\x9d\xc8\x00\xfb\x64\x62\x6b\x82\xe3\xe6\x3d\x2d\xaa\xf4\x9e\x63\x28\x8e\x52\xbb\x98\x20\xd0\x6c\xa4\x42\x3f\xe6\xa0\x47\x03\x13\x77\x61\x2b\x82\x8d\xf9\x01\x48\x5a\x8b\xea\xb7\x6f\x56\xb5\x9a\x4a\xa2\xc4\x03\xa3\xa3\x10\xb5\x1f\x8e\x0a\xf9\x22\xf0\x48\xa5\xd4\x2e\x45\xb6\x9b\x0b\x1a\xc5\xf5\xca\xdd\xc6\x8f\xb8\x4c\xac\x7c\xfc\x5b\x5f\x4d\xd2\x65\x9b\x66\x8f\xb4\x9c\x98\x35\xdb\x03\x00\x78\xf2\x6d\x6d\xe3\xf6\x1e\x4d\x29\xc6\x00\xf2\xa6\x8a\x7a\xf0\x9f\x63\x42\xe0\x02\x38\x3a\xf1\xb3\xa2\x8d\xd1\x59\xe0\x38\xbd\xd7\xc9\x8e\x87\x73\x9e\x0c\x94\xc4\xc2\x0d\x0d\x2e\xac\x43\xbe\xe7\xe6\xf6\xb4\xcb\x18\x2d\x34\x15\x43\x87\xb3\xda\xd0\xe1\xac\xf2\x3f\x1a\x16\x51\x1e\x2e\x99\x61\x18\xad\x61\x59\x89\x10\x8d\x72\x80\x3a\xaf\x36\xf7\xa1\xed\x9b\xb4\x6f\xa3\x96\xa7\x52\xfc\x71\xe0\x21\x07\x7f\xac\x2a\x38\x4b\xac\xdc\xe1\x20\x55\x57\x03\x5f\x61\xbf\xaa\x0a\x38\x7d\x1b\xdb\x87\x2b\xf3\x43\x45\x6e\x58\x09\x52\x8e\xa1\x81\x10\x52\x62\xb9\x37\x29\x1b\x85\x05\x97\xe0\xf9\x75\xf4\xb1\x62\x01\xb3\xf0\x81\xc3\x16\x96\x03\x8f\x17\x77\x45\xed\xff\x37\x9b\x45\x39\xb3\xdc\x84\xb1\x84\xf2\x4e\xc7\x7d\x76\x56\xf0\x9f\x15\xc1\x2e\x85\xe5\x01\x04\x80\x18\xf0\x2a\x5e\x45\xe2\x2f\x6a\x15\x4a\x99\x4e\x74\x82\xc5\x0d\x54\x95\x28\xce\x04\xcf\x6a\xa6\x24\xf4\x50\xcb\xd5\x88\xdf\x40\xc9\x8d\x45\x9c\xf8\xa2\x76\x28\xcc\x4f\x0b\x73\x8d\x9d\x0f\x95\x5b\xe3\x8c\x67\x2b\x6a\xd3\xa8\xad\x48\x62\xca\xe3\x86\x43\x9b\x76\x43\x03\xe5\x44\xd4\xe8\x70\x10\x9e\x50\xb5\xca\x13\x9a\xfc\x97\x26\x8b\x36\x45\x1d\xde\xd9\xb7\x3b\x81\x8b\x4f\xc7\x62\x18\x96\x27\xc9\xa4\x12\x31\x7e\x97\x2a\xb6\x48\x42\x8f\xd3\x71\x87\x70\x63\x3b\x32\x46\x2c\x95\xcb\x15\x2b\x93\xd4\xf6\xbe\x5a\xde\x03\x10\x0d\xef\x53\x09\xd2\xed\x8a\x7b\x5c\x15\xee\x9f\x02\x0d\x86\xba\x93\x40\x16\xa5\x19\x42\xd9\xa4\x20\xad\xca\x59\x86\x68\xe8\x7d\x8a\x49\x18\x35\x1a\x54\xb4\x64\x77\xcf\x79\x48\xb6\x43\xa6\xfe\x54\x37\x36\x58\xc0\x10\xa5\x81\x23\x6a\x8a\xfe\x14\xea\x57\x80\xd0\xed\x41\x00\xa9\xe9\x9d\x4e\x56\xbd\x9c\xaf\x48\x1c\xb9\x80\x8a\x26\xd6\x95\x80\xd4\xc1\xb8\xb9\x0a\x39\x12\xfe\x63\xb4\xd1\x38\x71\xc0\xf2\x2d\x21\xd2\x7a\x60\x5d\xd1\xd2\x27\xd6\x9f\x54\x06\xc4\xbd\x5e\x44\x55\x8c\xb9\x2a\x18\xd5\x61\xe3\x76\xcf\x39\x2c\xb3\xcf\xd3\x5f\xfc\xc5\x17\xd9\x2b\x99\x35\xc0\x68\xdf\xc6\xd8\x82\x38\x80\x8d\xe4\x73\x4d\xf6\x6b\x75\xfc\x0e\xb0\x6a\xa2\xa8\xe5\x41\x72\x67\x02\xa5\xdc\x58\x57\xad\x9c\x9b\x6b\x2f\x93\x39\x3a\x4e\x22\x40\xb6\x59\x49\x9f\x2f\x9a\x7a\xba\xac\x08\x35\xa9\x90\xf9\xff\x4e\xcb\x9f\xdc\xae\x64\x1c\x9e\x3b\x77\xdc\xd5\x5c\xb3\xdc\xda\x68\x68\x96\xd9\x92\x93\x5b\x37\xb8\x59\xe9\xe3\xf8\xac\x26\xcb\xcb\x68\xca\xc6\x79\x8b\xa6\x1a\xaa\xcb\x37\x30\xb9\xf8\x62\xab\x38\x4d\xb9\x7b\xef\x9e\xfb\xbb\xad\xe7\x9f\xf7\xba\x31\xae\xd8\x52\x61\x21\x5c\xc1\x31\x80\x3b\xbc\xc8\x87\x0d\xe6\xc0\x75\x6c\x6d\xf2\x7d\x2d\xc7\xce\xbe\xa7\xba\x29\xbf\x86\x33\x85\x35\x03\x03\xcf\xdc\x39\xa3\xfb\x90\x93\xeb\xad\x97\xf6\xf3\xb6\x7a\x14\x99\xa9\x33\xda\x2b\x47\x1b\x73\xfe\x0b\x74\xf3\x78\xd2\x52\xf8\x24\x0a\x62\xb4\xe2\x98\x5a\xa6\xea\xcb\xd7\xb1\xfa\x5c\x57\x79\xd7\x0c\x6f\xea\xdb\xd6\x69\x31\x3c\xc1\x93\x5e\xe9\x0c\x4e\x74\xca\x58\xc7\xa9\xa5\x94\x43\x8e\x42\x40\xab\xa3\x60\x5d\x50\x89\xc7\xd9\x7c\x95\x6a\xb7\x82\xf0\xd8\x9a\xca\x51\x44\x63\x04\x9c\xa5\xb5\x07\x1a\x83\x00\x62\xe1\xf8\xfc\x12\xcd\x00\x49\x6b\x9f\xda\x4a\xd9\xb1\xd0\x9f\x91\x7d\x47\x45\x66\x2a\xeb\xa5\xfc\x60\x24\xab\x0d\xa4\x82\x6d\x9d\xfb\x88\x70\x5c\xd1\x0a\xee\xa6\xbb\x6c\xfa\x96\x01\x3b\x1a\xda\x8b\xa2\xd7\x6d\x45\xf0\xfa\x3d\x0d\xb5\x6a\x6a\x37\xbc\xda\x1e\x26\xa9\x9d\xf0\x0b\x9b\x55\xae\x71\x38\x7d\x86\xd9\x00\x66\xe2\x21\xd5\xdb\xb0\x71\x3e\x28\xb2\xd0\x64\x48\x3a\xd9\x99\x95\xbe\x58\x5c\x5a\xbd\x0e\x4c\xd8\xb3\x49\x94\xf4\x51\xc7\xf2\xb5\x2b\xda\x36\xa5\x8e\xd5\x60\x14\xd1\x33\x21\x97\x7f\x30\xb5\xae\xd3\xae\x29\xf5\x3f\x0f\xdb\xfe\xb8\x49\x0d\xa2\x6b\x52\xbb\x54\x44\x9c\xe7\x89\xf1\x63\x4b\xf9\x24\xaa\x43\x3a\x19\x8e\xd2\x64\x18\x66\xf6\x01\x1a\x52\x4c\xbf\xc3\x8a\xcf\x86\xf0\x10\xff\xce\x29\x07\x92\xfc\x0d\xf0\x84\x58\xcc\x0e\x47\x27\xff\xcf\xd8\xa3\xa4\x8f\x52\xac\x22\x8a\x77\x0d\xb9\x62\x94\x98\x1e\x1f\xc9\xc8\xec\x6f\xd1\xad\xa2\x50\x7e\x5c\x13\xc4\xce\xea\x7d\xf7\x1f\xfd\xf7\x34\x27\xa5\x5a\x54\xae\x23\x29\x23\x3d\xa3\x10\x19\xb1\xed\xda\x2c\x33\xe9\x5a\xab\xf5\xf5\x6f\xf0\x66\x00\xa7\x49\xfe\xac\xc0\x03\xc8\x9b\xac\x92\xc8\x84\xca\x3a\x7f\x2e\x77\x2c\x4c\x80\x03\x79\x6a\x92\xb4\x17\xc6\xf4\x77\x5d\x75\xed\x62\xa0\x68\x38\x17\x9b\xc0\x1e\x61\xbc\x94\xa4\x43\x49\xe3\x84\x15\xa5\x4c\x15\xce\xa9\x78\xb3\x3b\xb0\xc3\x72\xde\x3c\x5a\xbe\x0b\x0c\xc7\xe7\x5a\x54\xe5\x02\xce\x45\x3e\x4a\x69\x83\x73\x94\x54\x8f\x1f\x41\xdf\x1d\xfb\xd8\xe5\x40\x89\x59\x62\x89\xe9\x6c\x83\x7d\xf3\xb0\x41\x49\x6d\x97\xf6\x21\x60\x01\x7e\x34\xf6\x9c\xf4\x8b\x81\xf2\xf8\xd9\xf0\x42\x02\x5d\xd3\xb3\xc3\x10\x12\x49\x48\x02\xbf\x17\xf8\xae\xcf\xf7\x54\x5c\xb4\x1a\xe6\x83\xa4\xc8\x9f\x2a\x7f\x12\xc1\xfe\x97\x0a\x44\xc6\x4e\xc7\xe2\xad\x51\x3e\x03\x2b\xd4\xd0\x26\x2b\x2c\x5a\xda\x7d\xf1\x7e\x7e\x44\x73\x80\xc9\x7f\x4c\x22\x93\xc6\xa4\x0a\x46\xbe\xa4\xa9\x8d\xa2\xe4\x3f\x1b\xab\x46\xe8\x0d\x6c\xf2\x4e\x7e\xc5\x19\x22\xfd\x2e\x30\x1e\x52\xce\x29\xc7\x40\x28\x2e\x34\x9c\x7c\x8f\x5a\x82\xf4\x0b\xdd\x33\xf9\xae\xab\x89\x27\x07\xd6\xfa\xe2\x5d\xaf\x59\x5d\x88\x9d\x11\x6e\xc8\xbf\xfb\xa9\x9e\xa6\x8c\x56\x77\x75\x23\xd7\xb0\x3d\x33\x56\xc4\x85\x77\x1b\x60\x0f\x8b\xc5\x1a\x17\x4c\xdd\xcb\xd8\x37\xed\x5e\x86\x88\xff\x0e\xac\xe9\x7d\xb3\x30\x69\x6e\xc1\xb8\xc0\xc1\x01\x13\x2f\x21\xe5\xd2\xa3\x22\x8b\xfb\x03\xf5\x16\x47\x36\xb5\x51\x64\xb4\x29\xf8\x58\x45\x7b\x17\x5c\x5e\x3c\x30\x5d\x0a\x1e\x66\x67\x2b\x9d\x07\xfe\xec\x94\x41\x7a\x36\x5b\x9e\xf4\xe5\x29\x70\xcd\xc5\x3b\xcc\x1f\x51\x4c\xc2\x12\xac\x70\x03\x9b\x6c\xd4\xcd\x34\xe0\xfd\x84\x36\x8d\x3d\x31\xf6\x72\x53\xd9\x92\x65\x9c\xb3\xd3\x01\xf5\x28\xa7\xe3\x3a\x6a\xdb\x50\x09\x5e\x96\xa7\xd6\xe6\x0f\x7a\x0f\xfc\xb7\x31\x15\x59\x0f\x5b\x71\xcc\xa1\x93\x8d\xfe\xf3\xdd\xb1\xa2\x5e\x6c\x04\x4a\xda\xe4\xff\xc1\xed\x21\x39\xff\xf3\x40\x91\x3d\xfe\xb7\xb1\x47\x04\x1e\xab\x40\x23\x7b\xbd\xb5\x49\xbf\x78\xee\x28\x9c\xfc\x1d\xdc\x36\xbb\xf0\x23\x44\x11\x0f\xc2\xad\xe7\xc5\xcc\xde\xb6\x52\xa9\x56\x0a\xf4\x1e\xb4\xa0\xe3\x5d\x9b\xc6\x0f\xb7\x76\xcd\x80\x3d\x29\x9d\x84\x93\xb8\x7b\x21\x2f\x97\xd1\x8a\xb3\x20\x74\x62\xed\xdb\xd7\xcb\x98\xc4\xe9\x83\x48\xfe\x98\xfc\x83\x4e\xcb\x89\x5e\x73\x32\x8b\xac\xef\xe1\x75\x4f\xf7\xff\x0b\x0e\xf3\xf8\x91\x1a\x85\xc6\x4c\xb7\x6b\x47\xb9\x89\xbb\x56\xa4\xf3\x9c\xbd\x81\x9f\x90\x67\xc6\x3f\xeb\x53\xc9\x41\x94\xa4\xc9\x52\x54\x24\x69\xd2\x35\xe9\x22\x35\x4e\xca\x2d\x15\x8d\x9a\xcf\x14\x4a\x10\xdc\x7d\x41\x71\x96\xdb\x14\xff\x4c\xa0\x8f\xd2\x34\x2d\xfa\xb0\xa3\x2f\x9f\x02\xf7\x7a\x4e\xe1\x9b\xa1\x48\x2a\x4d\x6f\xad\xfe\x53\x8c\x22\xe1\x86\x08\x47\xa9\x89\xbd\x32\x32\x91\xc9\x43\xae\x38\xf2\x0a\x09\x3c\x49\xec\xb8\x4e\x3b\x4d\x06\x50\xb7\xf3\x8b\xf9\xc7\x67\x94\xc5\xf1\x19\xb7\x29\x2d\x9a\x74\x91\x05\xf6\xdc\xb3\x2a\x01\x4f\x95\x54\xff\x96\x92\x21\xca\xc3\xc8\xb6\x94\xdd\x15\x1b\xd3\xf1\x45\xb3\x9b\x63\x64\x57\x4c\xdc\x5d\xc3\x2d\xb1\xe9\x41\xc5\x00\xc1\x83\x89\xfa\x69\x18\xf7\x10\x75\x36\xf1\x39\x7d\x2f\x29\x2b\x46\xa3\x24\xa3\xa2\x76\xc5\x68\x4d\x63\x12\x6a\xb2\xe3\x65\xe8\xe7\x84\xff\xf1\x6c\x67\x15\xcc\xb6\x8e\x4f\x9a\x9d\x6d\xdb\x03\xb6\x5b\xe4\xe1\x8a\x9d\x2a\x67\xa5\xdb\x15\xbd\xac\x19\xf6\x33\x44\x9b\x77\xb4\x2b\x31\x86\x10\xf1\xda\xf9\x7a\x04\xb4\xab\x5d\xc4\x23\xc3\xdc\x49\xf7\xf2\x3d\x59\xcd\x15\x08\x96\xf2\x6e\xcb\xef\x25\x7f\x85\x3f\xcb\x17\x81\x8f\x38\xb3\x91\xed\x16\x11\xd5\x7f\x5b\xbe\xc4\x7c\x35\x50\x7a\x0c\x57\xbd\xba\x47\x1a\xae\x98\x1c\xfe\xaf\xc8\x1f\x6f\x78\x67\xf3\xeb\x5f\xed\xf8\x54\xf0\xba\xde\x53\x1e\x5a\xd7\x05\x99\x74\x94\xa4\x20\x09\x4e\x79\x6b\xa4\x0b\x41\x95\x54\xec\x1a\x22\x17\x02\x4d\xfd\xa2\x3f\x2a\x74\x7a\xdf\x3f\x1b\x98\xd1\x48\x6a\xf7\x28\x2c\x6f\xa3\xde\x3b\x7f\x5e\xaf\x97\xc8\x17\xda\x59\x64\x86\x1c\x5b\xed\x69\x9e\x07\x8f\xa9\x18\xbe\x67\x7b\x53\x74\xae\x3b\x7d\xb4\xf9\x69\x67\xe3\xaf\x30\x8f\x9b\xaa\xb5\xf6\x18\x8d\x07\xa2\x82\xff\x53\xe9\x42\x0e\x4c\x9a\x47\x16\xa1\xa0\x78\xb7\x97\xc1\x88\x98\xba\x37\x14\xf4\x17\x4d\x77\x79\xd5\xa4\x3d\xa2\x7b\x0b\xef\xbe\xe5\x64\x7e\xb0\xc7\x60\x06\x9c\x51\x72\x65\x8b\x26\xc2\x06\x47\x83\x8b\xc4\xea\x2f\x29\x6c\xe2\xcf\x4d\x55\xd1\x85\xf6\xeb\xc5\x70\x94\x4d\xaa\xc9\xfa\x93\xaa\x86\x3e\x3d\xaf\x34\xcc\x68\x1d\x89\xed\x4a\x93\x9e\xcc\x92\xb5\xd1\x14\xfd\x94\xc3\x8b\xee\x13\x2e\xff\xc5\x40\x25\xae\xb7\x95\xe5\xfe\x05\x65\xfd\x7a\x42\xa9\xcb\xf4\xad\x89\x19\xe2\x24\xea\x74\xbe\x53\xa4\x1b\xf0\xa9\xcd\x8b\x34\xb6\x6c\xa9\xac\x4d\xdb\x65\x69\x79\x34\xdd\x86\xdb\x31\x57\xad\x59\xb6\xae\x7a\x89\x65\xbb\x19\xe8\xcc\x81\xfe\x9c\xd4\xff\x1a\x20\xec\x04\xde\x8a\xd6\x5c\xb5\x0f\x27\xdb\x29\xe5\x38\x75\x4a\xf1\xcb\xcb\x78\xa8\xa5\x70\xc7\x47\x50\xb9\xe0\x8b\x5a\x6d\x66\xdf\xf4\x4c\x7b\x94\xda\xdc\x1c\xa0\xc9\xc3\x02\x8b\xf4\x54\x22\xb6\xf8\x15\xf7\xf2\x5f\x2f\xd2\x30\x1b\xa5\x05\x41\xdf\x34\xc5\xee\x2e\x17\xf1\x70\x1a\x1f\xd4\x85\xf9\x3a\xe1\x87\x70\x65\x44\x8b\x68\x55\xec\x82\xe8\xef\x09\xb9\xc1\xa7\xea\x71\x92\xe5\x26\xea\x87\xdd\x96\x4f\xe5\x3f\x0d\x3c\x60\xf6\x53\x35\x3b\x87\x49\x8f\x32\x28\x9a\xd4\xf8\x7e\x08\x0c\x61\xc9\x6c\x22\xfc\x41\xb8\xfe\xb6\xd2\xef\x48\xed\x37\x8b\x30\x95\x72\x80\x84\x84\x74\x77\xa8\xd2\xfe\xa5\xf2\x7d\x3a\x5d\xa9\x79\x16\x99\x7d\x8e\xd6\x02\xeb\x45\x8c\xfd\xd9\x75\x43\x07\x58\xda\x19\x7c\x27\x28\x9e\x82\x69\xa6\x07\x47\x99\x93\x6b\x10\x58\x83\xff\x6f\xa0\xf4\xda\xae\x70\x00\x82\xfd\xf6\x3d\xa8\x1d\x33\xbb\x1f\x69\x80\x68\x54\x50\x15\x52\x78\xff\x65\xd2\x29\xaa\x9d\x65\xde\xe2\xd8\x55\x2f\xed\xe7\x5c\xf9\x6a\xd0\xda\xfb\x8a\x87\xec\x78\x79\xc0\x33\x4a\x6d\xfd\x70\xa0\x58\xe6\xb7\x69\xb9\xb9\xfc\x61\xf7\x9c\x2b\x58\x20\xe9\x91\xb2\x0f\xa5\x33\x7c\x31\xf6\x5b\x9f\x59\x49\xc2\xde\x83\x65\x8c\xa6\x85\xab\xf1\xfc\x9f\xab\x7d\xfa\x04\xde\x96\x26\x2e\xa2\xb8\x7d\x05\x3b\x84\x6c\x74\xca\xdd\x77\x3b\x86\x0f\x23\xfe\x69\x55\x16\xb3\x0e\xf1\x69\x9b\x28\x4f\xfa\x36\x1f\xc8\x49\x2c\xdb\x65\xf9\xa6\xe4\xaf\x37\x55\x6d\xb2\x82\xf1\x29\x8d\xb0\x00\xe5\x53\x9d\xe7\xa6\x3b\x40\x3e\xcf\x73\x27\x50\x74\x88\xd3\x75\xb1\xac\x57\x16\xda\x5d\x93\xe6\xad\x8a\x02\x80\x67\x59\xd5\x35\xca\xf7\x4d\xbf\xdc\x1e\x25\x51\x64\xd9\x0e\x08\x8b\xf6\x6f\xc6\x7e\x01\xff\x8d\xf2\x32\x78\xbd\x78\x9d\xf5\x02\x18\x2a\x16\x78\x6a\xd3\x59\xb7\x27\x32\x67\x06\x14\x1e\xad\xe3\x8c\x9b\x78\xa2\xe3\xd9\x33\x0f\xad\x3f\xae\xc4\x08\x87\x23\x9b\x72\x2e\x53\xa9\x94\xe2\x78\xe1\x50\x0e\xed\xf8\xf7\x1a\x7d\xf5\x6c\x37\x19\xda\x29\x7a\xa1\x68\x49\x6e\xeb\x28\xaf\x81\x8f\x15\x01\xf9\xb8\xaa\x41\x7d\x97\x12\x6f\x49\x48\x15\x8d\x39\x89\xc3\x3c\x49\x05\x0e\x21\x55\x87\x09\xef\xb4\xf5\xbe\x22\x39\x5e\x0d\x94\x3b\xfa\x69\x2a\xdd\xca\x6b\x52\xc4\xd3\xd3\x8a\xed\xce\x16\xb8\x08\x74\x76\x4b\xab\xeb\xb3\xc0\x63\xb9\x3e\x6b\x52\x2d\xcd\xcd\xc8\xed\xe5\x82\x08\xf3\x74\xc4\xa3\xe3\xaf\xaa\xad\x2f\x5f\x0d\xf3\x41\x96\x1b\x62\x1f\xe2\xe0\xd1\x45\x72\x1c\x27\xb0\xc5\x41\xe8\x58\x07\xbe\x10\x61\x3c\xb5\xf6\x0d\xab\x20\x2a\xd7\x02\x75\xe2\x5e\xf3\x74\xb5\xb0\x5f\xa4\x36\xa3\xe1\x62\xb7\x50\x6c\xcb\xae\xed\xe7\xc8\x49\x9b\x58\x84\x82\x53\xf3\xf6\x22\xbf\xf4\x34\x35\x88\x36\x2f\x2a\x90\xeb\xa2\x8d\x92\x55\x3a\x60\xf0\x96\xbe\xa0\xbb\xe7\xcf\x2a\x2a\x4a\xed\x88\x8a\x86\xce\x07\x95\x96\xa2\x78\xa2\xfa\x79\xbc\x58\x64\x6b\xe8\x26\xe3\xd0\x87\x78\x94\x08\xf7\x7a\x4c\xb6\x46\x40\x70\x51\x12\xcb\x44\x44\xd7\x3d\x04\xbb\xee\xc7\xbd\x6b\x57\x3b\x2d\x86\xa3\xc8\x02\x8a\x25\x2a\xab\xaa\x72\x76\x4c\xc9\xe5\xdd\x0a\xd4\xf9\xf5\x27\x5b\x45\x8f\xe7\xa7\xe7\xdb\x2f\x4c\x79\x9c\xe8\x67\xf8\x33\x8e\x02\xe9\xde\xe5\xfb\x81\x82\x8b\x01\x72\x8a\x98\xf0\xbf\x34\x28\x8c\xcd\xb5\x97\x4c\x14\x25\xab\x74\x6a\x49\x19\xa0\xfc\x12\x97\xb9\xcf\xce\x0a\xbe\xae\x11\x8f\x63\x0f\x8c\x5c\x67\x5e\xc2\x18\xc8\xf9\x61\x5c\x37\xf1\xf6\xb1\x17\x9e\x0c\xd4\x41\x6b\xe2\xc2\x44\xd1\x9a\x86\xa1\x83\x2b\xc7\x9f\x95\x14\x7a\x18\xdb\xcc\xee\x50\x35\xa7\x0f\xb1\x11\x70\xb0\x10\x78\x2c\xe8\x09\x3e\xe3\xd0\x60\xd7\xd9\xe2\x3d\xa5\x2b\x7e\x4f\x95\xc2\xcb\x88\xcc\x10\x03\x86\xfc\x25\x25\x95\xa2\xbb\x96\x5c\x6a\x6b\x6d\x66\x66\x6f\x3b\x4f\x93\x96\x0f\xdc\x36\x03\x95\x20\x6d\x2a\x2f\xf1\x9e\xed\x27\x11\x27\x01\x98\x5c\x07\xb5\x4c\xd3\xc1\xf1\xb3\x5b\xdf\xf2\x42\x19\x50\x4d\x7a\x57\xb3\xd3\xca\xbe\xfd\x27\x2a\xae\x64\x9f\x0f\x6c\x49\xdf\x41\x7e\xc8\x05\xe3\xcc\xc6\x79\x38\xb4\x71\x6e\x22\x8c\xae\xd3\x6a\x50\xce\xed\x5b\x13\xca\xd9\xd9\x76\xcf\xac\x49\xd9\x01\xfd\x0c\x2e\x3b\xf0\x45\x03\xef\x3a\x8c\x57\x92\x68\x45\xde\x3e\x72\x94\xe3\x4a\x60\xf7\x0f\x30\x8e\xd2\x36\x6f\xc0\x80\x44\x36\x66\xe2\x16\xb6\xeb\x2b\xea\xf8\xde\xd6\x51\xac\xf3\x53\x2a\x73\x5f\x64\x8f\xd7\x05\x0f\xe6\x72\x7d\xeb\x0b\xaa\x73\x31\x4c\x68\x14\x9c\x3f\x16\x26\x32\x68\x49\xfc\xb9\x76\x3a\xef\xdf\xf3\x35\x22\xf2\xb4\x7c\xfb\x00\x3b\xa5\xf0\xee\x9e\xd1\x06\x47\xa3\x24\x85\xb4\x0c\xdd\x0d\x37\x37\x54\xdd\xc9\x33\x3e\xfa\xa9\xb5\x31\x19\x1c\x4c\x7a\x04\xf7\xe5\xb1\x67\xc1\x1d\xd7\x6e\x50\x87\x95\x4f\x7c\x5d\x1e\x66\xff\xcc\xde\x36\x09\xac\xd3\x14\x94\xaa\x90\x76\xc0\x0c\x7c\x64\x0a\x65\x82\x24\xcd\x1e\xa4\x08\xc5\x29\x16\x95\x11\xa7\xb8\x83\x94\x03\xe2\x1a\xdd\xe5\xa6\x88\x95\x75\x47\xbd\x0c\x06\x47\x4a\xf9\x82\xde\x4c\x85\xb8\x86\xca\xcb\xcd\x40\xab\x49\xbd\xb9\x85\x08\x1d\x3d\x4e\xe3\x84\xce\x3f\x77\x3a\xb1\xd3\x1c\x0f\x3c\xba\xfb\xe7\x4e\xfa\x82\xd3\x3f\x60\x9e\x2c\x92\x70\xb4\x11\x59\xd8\x84\x96\xbd\x20\x69\x7c\x47\x77\x02\x11\x1c\xfa\x08\x37\xd1\x09\x70\x76\xed\xe5\x23\x48\x8f\xc0\xd3\x4d\xe1\x87\x8c\x5f\x7f\x06\x91\xb5\x48\x4a\xaa\xe2\x74\x6b\xbd\x8e\x1b\x7e\xb5\xbd\x14\xf6\xfa\x36\x17\x96\xa2\x20\x22\xe8\x6f\x08\x54\xe2\x71\x57\x3f\x86\xdf\x3a\x15\xa8\xb1\xff\xdf\xad\x28\x40\x2a\x7c\xe6\x99\x4a\x83\x8b\x88\xf6\xf2\x1d\x4d\x74\xb1\xad\xc5\x44\x4f\xe4\xcf\xb2\x34\x7b\x71\x42\x71\x4e\x4e\x8d\xb5\xcb\x05\x36\x05\x6c\xb9\xbf\x3f\x7e\x5a\xe5\x41\x12\xf9\xec\xf4\x5a\x83\x9f\x56\x03\x9c\x4a\x50\xe3\x71\x06\x77\x55\x1f\xf6\x7a\x95\x0c\xe1\xa1\xa3\x93\xb5\xfa\xc7\xec\x6c\x3b\x33\x91\x49\x43\xee\xa4\x29\xe0\xf2\xdc\x26\x8e\x64\xf1\xa5\x7d\xd8\x7b\x3f\xc5\x3f\x4b\x6f\x08\x7b\x25\x2b\x03\x0b\x48\x9d\x12\x1c\x4c\xcb\xcb\x94\xc6\xe0\x9e\x2e\x12\xf8\xc3\xe9\xd8\xef\xdf\xe3\x6b\x8b\x4e\x25\xf2\x9f\x8f\x15\xb8\x8e\x3b\x48\xe2\x69\xe1\xb3\x66\xe6\x8e\xb1\xed\xe8\x7a\x19\x43\x32\x91\x1c\x89\x07\x02\xd5\xbf\x42\x1f\x08\x71\xce\x35\x2d\xed\x70\x4f\x29\x3a\xdd\xd6\xbc\xa0\xcf\x08\x87\x82\x79\xfe\x43\x8a\xb0\xc5\x06\x82\x52\x71\x6e\x9e\xa1\x79\x29\xfb\x92\x16\xa7\xa3\xaf\x5c\xf0\x4d\x07\x07\x70\xe1\x92\x16\x63\x25\xa9\x27\x05\xac\xc0\x31\x7a\x37\x62\xbc\xe8\x81\xe3\x9f\x06\x5b\xa7\xd6\xee\xb9\x76\x56\x2c\x32\x80\x49\xa2\x50\xce\xbd\x68\x6c\x24\x0f\xab\xa2\xe5\x53\x53\x6e\x42\x3b\xe8\x05\x21\x34\x78\x17\x7b\x90\xe0\x13\xfc\x34\xe3\x62\x0e\xd6\xe3\xd1\x40\x3b\x25\x30\xd6\x89\xff\x80\xeb\xcc\x74\x4d\x9c\x27\x80\x75\x28\xcf\x4f\x67\x00\xaa\xa8\x31\xc9\x1a\x1a\x7b\xa8\x3a\x70\xde\xc5\x17\x0a\x7f\xba\x9a\xa4\x51\x6f\x35\xec\x59\x55\xae\x3c\xa4\xcb\x95\x87\xaa\xb6\x1a\x36\xde\x49\x53\x01\x69\x3b\xeb\xaf\x49\xe7\x4f\x81\xf7\xb6\xb1\xa9\x1b\x8a\x71\x50\x9b\xc5\x8c\x43\xce\x08\xa4\xdc\xbb\xf4\xc6\xf0\x62\xaf\x29\xa0\xa9\x49\xfb\x5e\x3a\x5f\x31\xda\x65\x06\x1f\xa9\x95\xe9\xf6\x4d\xb7\xe3\x24\x0d\x6d\x9f\x89\x43\xd8\xe4\xef\xe8\x66\x47\xdd\x6b\xb4\x4c\xc1\xdb\x26\x13\xb2\x11\x46\xe7\x37\x03\x35\x54\xbf\x59\xab\x32\xcd\xcd\xb5\xbb\x49\x44\x7e\xd4\x0c\x13\x60\x91\x0c\x9a\x12\x22\x98\x21\x21\xdd\x20\xcc\xbb\x03\x41\xb0\x0a\x5c\x5f\x63\xf7\xb7\x42\x6b\x76\xcf\x95\x99\xed\x94\x72\xf9\xe5\x42\x03\xbb\x1f\x76\x3c\xc1\x0e\x44\x53\x25\x3d\x2a\x46\x5b\x57\x74\xcf\x2f\xb5\x5d\xcb\x6f\x17\xbb\xd6\x21\x85\x94\x3a\xa4\x36\xc2\x51\x9a\x74\x6d\xaf\x48\x11\x4b\xed\xa9\x08\x48\xf3\x67\x85\x54\x5d\x2a\xd2\x30\x29\x32\xa8\x6a\x73\x87\x69\xf3\x62\x83\x58\xe6\x42\x99\xd1\x84\x76\xc5\x4e\xaa\xb1\x52\x36\x7d\x17\x54\x8f\xf7\x73\x9c\x5b\x62\x54\xad\x0c\x83\x47\x36\xee\x96\x09\x33\x15\x4d\x5c\xf1\xb3\x1c\x17\xc4\x6c\x0c\xab\xc2\x1e\xbd\xb1\x65\xca\x9a\x9d\x6a\xea\xe0\xfb\x70\xca\x5e\xa1\xa9\x88\xa1\xb8\x12\x54\x30\xb9\x74\x23\x4e\x2f\xc5\x2d\x76\xdc\x39\x3a\x27\x47\x02\x35\x78\x26\xcb\x6c\xdc\xb7\x69\x36\xa9\x74\xe4\xd0\x3a\xc3\xe3\xdc\x09\x7c\xbd\xec\x1d\xdc\x2d\xd2\x98\xcf\x1b\xc2\xcd\xa5\x24\xb5\x5d\x93\xe5\x3b\x5b\xca\xd5\xc3\x1f\x0c\x2c\x45\x80\xf9\x71\x29\x50\x67\xc1\x76\x14\x01\xf0\xf5\x90\x1f\x02\x8e\xe4\xe8\x58\xc9\xaf\x6f\x8c\x9f\x51\x40\x8a\x32\xb4\x2b\xe2\x30\x5f\x53\xf8\x66\x0d\x24\xb9\xaa\xf0\xbe\xf5\x3a\xcc\xec\x6c\x99\x22\x24\x23\xd5\xff\x39\xad\xfa\x3f\xa7\x6b\xb1\xf0\x0b\x30\x0b\x51\xba\xb9\xcc\x71\x16\x05\x94\xf2\x00\x13\xd4\xbc\xda\xf7\x62\x2b\x22\x57\x0c\xce\xc2\xfb\x97\xa0\x59\xc1\x28\xb6\xd7\x7c\x97\xe7\xa7\xdb\xb0\xe9\xa2\x2f\x52\xbe\xcb\xaf\x3a\xdf\x65\xd1\x6d\x18\x9a\xe1\xd0\x44\xb2\x25\x88\x0b\x61\xcb\x29\xc8\x1d\xaa\x51\xd9\xca\x54\x86\x58\x60\xa1\xf7\x4d\xa9\x18\x22\xf1\x85\x9a\x2e\x03\x6b\xa2\x7c\x50\xa6\xd9\x3b\x3c\x39\xe2\x7d\x9a\x5b\xfc\x39\xa8\x40\x6a\x7d\xbd\xf9\x8c\x3e\x17\x8e\x06\xea\x94\x39\xaa\xf2\x86\x61\x9a\xbd\xf8\x28\x1d\x3a\xdc\xf4\x55\x2d\x8a\x6b\x38\xcb\x05\x0a\xa5\x64\x26\xc0\x71\xc7\x72\x78\x10\xf2\xc3\x58\x5d\x93\xeb\x0a\x59\x72\x0e\x5f\x8a\x45\xf8\x1e\x4d\x31\x75\xb0\x2f\xc8\xdf\x5a\xf7\x2e\x6f\x6f\x8d\x3d\xfe\x91\x73\x7f\x54\x80\x7f\xa8\x6e\x39\x4e\xd2\x6e\x4b\xe9\x27\x1f\x0d\xbc\xb8\xee\x51\x55\x1f\xc9\x06\x66\xd9\x4e\x69\x31\x31\xcc\x03\x54\x65\xef\xd1\x6f\x61\x1b\x38\xaf\xbd\x75\xf5\xfe\x70\xde\xbd\xec\xdc\x66\x79\xb8\x14\x4a\x5e\x27\x38\x26\x5f\x71\xe1\x52\x3b\x98\x67\x1b\x0a\xda\x1c\xc6\x4b\x04\x9b\x74\xbe\x5c\x0c\xba\x52\x30\xd2\xd3\x8e\xe3\x96\x27\x07\xc2\x2e\x41\xcb\x58\x5b\x07\xcb\xf8\x2f\xe9\x87\xf9\xb3\xb6\xf2\x5f\x06\x46\x83\xf1\x9e\xb8\x75\x01\x7f\x36\xd8\x8f\x64\x79\x32\x34\xdd\x01\x9f\x32\x38\x8c\x11\x9b\xf2\xe7\xda\x0e\xb3\x7b\xae\x3d\xb4\xc3\x45\x6f\xcf\x24\x60\x59\xfa\x0b\x58\xb9\xec\x13\x2b\x37\xf1\x90\xe3\xeb\xa1\x77\xc6\xde\xe0\xf4\x35\xe2\x13\xde\xd0\xe9\x5f\x68\x87\x71\xaf\xc8\x72\x02\x26\xe2\xbb\x70\x92\x1d\x0c\x94\x7f\xda\x41\x07\x6f\xb1\x91\xed\xe6\x69\xd8\x0d\xf3\x35\x2c\x56\xcc\xc0\x0b\x4a\xd1\xb8\xde\xb1\x56\x5a\xad\x5d\x85\x66\xe2\x43\x51\x6c\x51\x1a\x9a\x2b\x99\x85\xee\x8a\x76\x1a\xa7\x97\x22\xae\xe3\x9e\x6a\xb8\x68\x57\x6c\x0a\x75\xf4\x57\xc5\xb2\x97\x13\x0c\x3c\x3e\x0b\xa5\x88\x8f\xe7\x57\x94\x13\x5d\x96\x9b\x28\x62\x69\x56\x05\xc5\x62\xbf\x76\x81\xe9\x4b\xf6\x84\x3c\xd6\xf6\xa0\xc2\x86\xb3\xe6\x36\x16\x1d\xb2\xc6\x8b\xaa\x9f\xc5\x6c\x01\x29\x03\x6d\x8d\x56\x66\xf6\xb6\x93\x6e\xd7\x28\x2e\x33\x08\x1d\xdf\xa7\xf7\xc6\x9f\xb7\x56\xe0\x76\xed\x6a\xcf\xef\xd9\xe9\x05\x8e\xa7\xe0\x7b\x21\x76\x1d\x0a\xe5\xc7\x7a\x96\x08\x06\xaf\x69\x94\x32\x37\x1e\x80\x71\xf9\xbf\xc7\xca\xea\xea\xac\x6a\x1d\x93\x9a\x7f\x45\x38\xb3\xd2\x57\xa5\x6f\x12\x45\x4d\x65\x9f\xa2\x2d\x91\xb3\x62\x38\xb4\xdc\x3e\x67\x7f\xea\xc0\xdb\x03\xfc\x54\x0b\xd3\x51\x37\x0e\xee\x21\xc8\x3d\xdf\xa1\x6f\xe3\xcf\xaa\xed\x92\x25\x51\xd8\x6b\xf9\x1e\xe8\x19\x0f\x81\xb9\x70\x46\x29\xec\xa5\x61\xb6\xbc\xa6\x20\x88\x20\x37\xf1\xe7\x4a\xcf\x2c\x1b\x25\xe8\x62\x6b\x7a\x0b\xa5\x2e\x22\x47\xa4\xf5\xea\xae\x07\xca\xaf\x00\x50\x2a\x91\x83\x71\x52\x36\x36\x32\xce\x7e\x85\x63\x93\x40\x51\x22\xcf\x37\x21\x55\x8b\xb4\x2f\x07\x94\xf3\x63\x53\xa0\x70\x65\xe2\xc1\x9a\x95\x13\x3e\x6d\x3b\xa3\xc2\x76\x94\x2d\x90\x57\xdf\x6a\xb2\xa4\x5a\x10\x2f\x8e\x0a\x83\xf4\xb4\x66\x9f\x9c\xd6\x8d\x58\xd3\xb5\x93\x94\xe3\x09\xe9\x50\x71\xb0\x6f\x28\x27\x7b\x66\xd0\xf3\x7f\x28\xac\x71\x2f\x0d\xa3\x88\xa6\x81\xab\x75\x80\xf7\x22\x68\xd4\xad\x87\x36\x85\xfe\x8c\xa3\x8b\xd6\xa8\x8f\xb2\x89\x10\x0b\xbd\xa9\x4b\xf4\xdb\xe8\x13\xc2\x38\xc5\xc9\x8f\xb8\x06\xca\x05\x27\xf6\x94\xa7\xd6\x64\x45\x6a\xd3\x1d\xf4\x82\x11\x7e\xfd\x97\x8a\x62\x24\x5a\x84\xb4\x52\xfe\x97\x27\x51\xb9\x71\x24\x76\xdd\x29\xf0\xfa\x8f\x67\xc6\x4f\x29\x99\x99\xb8\x17\xf6\x08\xfd\xe1\x5c\x24\x8e\x04\x9e\x17\x76\x64\xec\x85\xca\xff\x90\x32\x4c\xfe\xac\x24\x05\x73\xb3\x6c\x93\x15\x9b\x3e\x48\x2b\x09\xd5\x89\xb7\xe8\xcb\xd1\xb2\x38\xac\x97\xec\x71\x0d\x21\xb9\x84\x5a\x99\xc0\x04\x3d\x50\x60\x4a\xeb\xab\x7f\x3c\xf6\x9a\x4d\x4a\xaa\xe0\x2b\xf7\x1a\xc5\x53\x8b\x32\x31\xe2\x66\xa2\xf3\x3b\x71\xb0\xe7\x77\x15\x3f\xbb\x3c\xa4\xb3\x49\x9f\xf7\x1c\x42\xf1\x43\x1f\x0c\x08\x6b\x27\x3a\xaa\x58\xae\xb7\x99\x2c\x5f\x8b\x08\x33\xed\xbd\x31\x90\x49\xa0\x05\x71\x8d\x5f\x14\xff\x1f\x0a\x17\x1a\xf8\xc8\x24\xba\x40\x51\x7e\xce\x42\x8c\x99\xff\x00\x8d\x22\x1b\x8a\x37\x89\xc3\xf4\xec\xa2\xc9\xd9\x46\x05\xf3\xeb\x90\x7a\x58\xc8\xf7\x60\xb5\x9f\x0c\x9a\xfc\x6c\x99\x13\x12\x89\xf7\xa9\x23\xde\x38\xd0\xf9\x59\x27\x8d\xb7\x98\x24\xb1\xe5\xa3\x96\x95\x04\xc6\x0a\xeb\xfc\xa6\x16\x7a\xb1\x8b\xa2\xe1\xe4\x60\xca\x0a\xb3\xec\xfe\xe4\x30\x8c\x8b\x8c\x0e\x04\xa0\xfc\x77\xae\x7b\xd4\xe7\x69\xb5\x68\x0e\x11\x95\x01\x15\xff\xc7\x90\x89\xa0\x32\x74\x4c\x0d\x10\x8a\xb0\xa8\xce\x6f\xeb\x78\xe2\x76\x66\xd8\x3e\xd0\x81\x77\x5d\x3b\xe0\x8b\x86\x86\x0e\x39\x25\x65\x16\x0b\xc2\x59\xc7\x3b\x37\xdd\x1b\x54\xe3\x72\x5d\xea\xd9\x59\x0e\x04\x0f\x6b\x38\xa9\x35\xe4\xc9\x23\x6f\xb4\xbc\x2f\xb7\x37\x97\x4b\x01\xd9\x2a\x37\x35\x91\x5b\xbc\xa5\x4d\xf2\x44\x26\x0f\xb9\xd1\x5f\xab\x00\x3f\x8c\x4d\xb7\x5b\xa4\xb4\x60\xdd\x93\xdf\xd4\x69\xdb\x47\xb4\x8c\xf8\x3f\x70\x8c\xf2\x7f\x34\xa4\x58\xf3\xed\xa5\x50\xd4\x14\x10\x9d\x7d\x3f\x50\xa1\xda\xf7\xd5\x43\x45\xc9\xea\x0e\x8f\x5e\xf8\xbf\x68\x5f\xe0\xdc\x4d\xe1\x22\x2f\xab\x10\xe2\x2d\xda\x2f\x50\xef\xf8\x11\xfe\x2c\xbb\x1f\x34\x15\x4c\xda\xa9\x49\x2d\xb7\x19\x9c\x92\x77\xf9\x58\xc2\x90\xd8\x3a\xfd\xf7\x4d\xef\x69\x67\x36\xce\xe0\xc7\x2a\x1e\x82\xbe\x0d\x7b\x55\xeb\xb6\x1e\xaa\x15\x76\x5e\x68\x8f\x8a\xc5\x28\xcc\x06\x36\x9d\x2c\x67\x97\xec\x6b\x2d\xa7\x89\x0d\xe4\x12\x22\x03\x94\x67\xe5\xb0\x6c\x02\x44\x45\xe1\xb2\x55\x7a\x99\x1c\xb4\xe0\x4d\x4f\x74\x7c\x06\xf6\xbb\x63\xe5\x2c\x76\x41\x6d\xc5\x66\x68\xe3\xde\x50\x02\x09\x1c\x8e\xf7\x14\x02\xf4\x9e\x86\x1e\x27\x91\x8d\x80\xfc\xc5\x3d\x41\x8b\x08\x61\xdc\x51\xec\xaa\xae\x3e\x3b\x3b\xcb\x99\xe2\x65\x75\x34\xf6\x93\x32\x6e\x73\xac\x8c\xeb\x81\xa7\x0e\x5c\x07\xa1\xa7\xa2\xdd\xba\x8c\xfd\xa1\x09\x87\x59\xef\x49\x2d\xb4\xf3\x14\x49\xbf\x18\x95\x2b\x2c\xf3\xce\x8e\xcf\x82\x6e\xb9\x83\x2e\x36\x6f\x50\x28\x09\x69\x95\x46\xd2\x6e\x9d\x97\xba\xa7\xdd\x1d\x10\x11\xce\xb6\x54\xe9\xf7\x1c\x2f\x1e\x29\x60\x69\xf4\x58\x64\x0e\x48\x13\x00\x75\xb2\x4b\x4a\xb5\xfe\x92\x96\x89\x58\x1e\x98\xd7\x43\xda\x36\x84\x42\xa1\xf9\x14\xaa\xa4\xb8\x1a\x66\xbd\x64\x48\x05\x77\xd6\x7d\x0e\x14\x76\x6d\xac\xb2\xf6\x1f\xab\x54\x2c\x8c\xfb\xcf\x79\x8d\xf9\x9f\xff\x45\xad\x3a\xf1\xf7\xd6\x55\xcd\xed\x06\x42\x16\x01\xd8\xe2\xd1\x30\x7a\x8f\xae\x53\x26\x2e\xf2\x80\x5e\xb6\xe0\x21\x32\x2e\x42\x53\xec\xb2\x6a\x20\xfe\x8b\xaf\xac\x3b\xf3\xcc\x8d\xa7\x88\xdb\xe6\x4c\x26\x9c\x7a\xc1\x53\x1d\xa5\xad\xf2\xec\x7a\x39\x45\x30\x3c\x1f\x8c\x3d\x42\xe2\x67\x3a\x74\x4a\x39\x43\xd0\x5d\x33\xde\xb7\xdd\x61\x91\xae\xe9\x06\xeb\xdf\x47\xaa\x8f\xef\xbb\x4b\xbc\x56\x76\xa4\x41\x97\x01\x1b\x32\xd3\x03\xe5\x6f\x35\x60\x26\x47\x61\xde\xf5\x42\xd5\x28\x25\x03\x19\xc3\x9f\x55\xa9\xba\x9b\x72\x42\xaf\xf4\x57\x16\x9c\x4c\x92\xda\x3f\x55\x97\x9b\x9d\x54\xc5\x26\xca\x71\x5a\xca\x33\xb2\x1f\x76\x27\xee\xab\x9d\xe3\x9b\x57\x97\x55\x93\x3e\x4b\x86\x76\x31\xe9\xad\x4d\xea\x76\x1f\xbe\xc2\xad\xa5\xf9\x69\x7e\xfa\xed\xe4\x61\xc4\x9f\x95\x1a\xcd\x62\x19\x5f\x67\x19\xfe\x86\x9b\x58\xe5\xb3\x60\x73\xbd\xa7\x3a\x59\x9f\x13\xac\x4c\x04\xf0\x1b\xd2\xb6\xee\xc0\xa4\x61\xee\x54\x8c\xd0\xf3\xbd\xa4\xfa\xbf\x97\xc6\x5f\xa9\xb1\x32\x17\xda\xfb\xa6\xe7\x5a\x3a\x2a\xf0\x94\x8c\xb3\xca\xd8\x25\xb2\x59\xc6\xec\x50\x14\x21\x0f\xd3\xb8\xf0\x67\x77\xee\x47\xc9\xe2\xe2\xda\x94\x6f\xbd\x42\x7e\x0e\xbd\x93\x49\x48\x16\x0a\x87\xda\xef\xa8\x67\x70\x98\x09\xc6\x68\xeb\x71\x40\x81\x77\x5e\xa4\x4b\x74\x1c\x20\x56\xd8\x54\xae\x0c\xbc\x9b\xc8\xd4\x6a\xb2\x48\x28\x16\xb3\xb0\xc7\x3a\x00\x92\x49\xb7\xe6\x3c\xdf\xbd\x01\x11\x6e\xe2\x3c\xcc\xd3\x22\xcb\xd1\x82\x77\x41\xaa\x43\xa1\x5e\x57\x25\xbe\xcf\x1a\x9c\x24\xda\x91\x35\x92\xbd\xb3\x3c\x9a\x56\x38\x38\xd1\xc4\xd5\xc8\x6d\x9a\x86\xce\x92\xc7\x09\x93\xce\xce\x3a\x61\xd2\x3a\x09\x28\xcb\x0d\xde\x0b\x9a\x22\xac\x82\xc2\x17\xaa\xfe\xde\x2d\xa3\x41\x28\x7b\x97\x2b\x11\xfb\xdd\x21\x6c\x42\x7c\xe1\x81\xbb\x61\xd4\x4f\xc3\xe1\x04\x65\x58\x8e\x02\xe0\xc7\xa1\x22\xb5\xd2\x94\xcf\x2d\xb4\x47\x36\xcd\x0a\xd3\x13\x2f\x0e\xf1\x41\xa5\x3f\x82\xfa\xca\xdb\xca\xc5\xa1\xee\x11\x4d\x0f\x96\x97\x67\x40\x57\x4a\x4e\x48\x93\xaf\x05\x4a\x16\xe7\xac\xd6\x16\xff\x44\x05\x35\x79\x38\xe4\x88\x56\x8c\xc7\x94\x48\xd8\x49\x05\x23\x5c\x4b\x0a\xb2\x63\xf7\xdc\x8d\x73\x8a\xd2\x76\xae\x36\x9d\x76\xcd\xb4\xbb\x83\xb0\x7c\xb7\x15\x48\xbf\xda\xd8\x2f\x68\x1f\x0b\xc8\x6d\x3f\xd8\x52\xa2\x4c\x34\xe2\x8e\x00\x59\xbe\x0b\xbe\x20\x54\xb9\xf0\x47\xca\xb1\x41\xcd\xf3\x0e\xc1\xe5\x50\xba\xbc\x45\x3b\x93\x6e\x2c\x63\x02\x42\xe3\x12\xdb\xf9\xe3\x35\x50\x04\x55\xdc\x6d\xdc\xab\xfa\xd3\x8f\x2b\x36\xbb\x4d\x87\x70\x18\x67\x61\x7f\x90\x4b\x19\xae\x91\x6b\xd5\xd4\xab\xce\xc3\x61\x11\xb1\xe4\x20\x02\x6a\xa0\xe8\x98\x08\x88\x83\x4b\xb2\x31\xdf\xcc\x17\x6e\x83\xed\x51\xfc\xc3\x0a\x88\x4a\xcb\xe4\x0c\xc5\x32\xfc\x19\xb7\x2f\x32\x89\xcf\x6c\xf5\x74\x7f\xb9\xfd\xfc\xf3\x15\x23\x61\xc5\xf9\x3b\x1f\x54\xd8\x39\x71\x9e\xae\x3d\xd8\x72\xf6\xc6\x7c\x50\x00\x18\xf1\x81\x4a\x4b\x59\x43\xcb\x41\x3b\xb6\x12\x0a\xf1\x53\x0f\x54\x44\x8c\xb7\x30\x15\xcb\x63\x1d\x61\x6f\x7d\xfd\xef\x9e\xa3\xa8\x37\xcc\xc3\x15\xab\xe1\x7c\x81\x82\xf3\x55\x7c\x57\xe3\x68\xed\x19\xdf\x0a\xdb\x40\x16\xca\xec\xaa\x8e\x0f\xe4\xbe\x0f\x1d\x06\x89\xd8\xca\x89\x22\x1a\x37\xad\x5f\x99\x11\x6d\x66\xd4\x96\xf8\x87\x90\xb7\x3a\x95\xf6\xaf\x7f\xc3\xa9\xf7\x6b\x7c\x2b\xb2\x7f\xbc\xd4\x07\x3a\xbe\x99\xf9\xc8\xba\x0a\xef\x2f\xe1\xa1\x31\x02\xd7\x68\x5a\xe3\x90\x9d\xe8\x94\x53\x19\x81\x11\xe4\x4b\xb1\xb5\x3f\xc2\x7d\x60\x9c\x41\x15\x87\xe0\x4f\xf1\x02\xd0\x88\xd8\xd6\x91\x43\x67\x25\x59\x45\x3d\xfe\x55\x86\x05\x1d\x1f\x2b\x39\xab\x2b\x98\x6e\x88\xa6\x37\x83\xad\xf2\x8d\x52\x09\x4e\xed\x8a\x8d\x0b\xd7\x31\x42\x81\xe3\x77\xf1\xed\xcc\x2d\xc5\xc3\x4b\x0f\xbf\xa1\x44\xb1\x6a\xc2\xdc\x89\xa8\xb1\xc3\x68\xe0\xa1\xb4\x88\xae\xc5\x99\xba\x4e\x5b\x6a\x0f\xcc\x0a\xc0\x55\xac\xaa\x15\xa8\x84\xf8\x9c\x8a\x31\xbb\x79\x42\x20\x7c\x04\x09\x00\x5a\xa2\x2c\x7e\x94\x82\x04\x1c\x50\x37\x1b\x98\x51\xe4\xc1\x4c\xa7\x05\x93\x61\x02\x4d\x8c\xa9\xa3\x18\x67\x08\xc9\x65\x53\x4e\xdf\xf0\x4e\xfe\xbd\x8a\x11\xfe\x7d\xd3\x79\xdb\xb3\x4b\x65\xfa\xa6\x44\x2c\x78\x4d\xf1\x85\xca\x8d\x06\x66\x38\xca\x06\x61\x6a\x27\xcb\xd9\x20\xb6\x5c\xe5\x77\x89\x5f\x57\xcb\x29\x23\x7e\x4f\x1b\xdb\x7f\x4f\xd5\x7b\x16\x4d\xba\x08\xec\x02\x76\x4c\xe6\x48\xf0\x85\x42\x34\xa6\x76\x25\x89\x0a\xe7\x41\x24\x16\xf9\x4a\x74\xa1\xbe\xe1\xef\x9b\x6e\x2f\xa6\x89\xe9\x31\x8b\x4e\x50\x55\xb4\x71\x23\x4d\xc6\xe6\xc6\x2e\x83\x2a\x97\x1b\x25\x59\x8c\x98\x69\x93\x3c\x85\x37\xaf\x3b\x5f\x92\xd4\x2e\xda\x68\xb2\xa2\x52\x4e\x33\xcd\xf1\x83\x5c\xa4\x03\xdd\xf8\xfb\x09\xf5\x52\x5b\x26\xb5\xbd\x30\x1f\xf0\x26\x8d\x66\xdc\xdb\x18\x01\xbe\x08\x9e\xde\x1a\xf7\xb5\x77\xed\x7a\x4e\xb9\xf2\xee\x5c\x57\xfc\xfe\xa3\x63\xef\x42\xb0\xc9\x65\x2f\xe1\x0b\xfa\xfc\x8a\xfd\x75\x50\x7e\xbe\x3a\xf6\xd9\xc4\x11\xc2\x10\x01\x4f\x74\x50\x6d\xd8\x52\xdc\x44\x41\xe8\x06\xb6\x05\xec\x24\x13\xeb\x1e\x7b\x0e\xeb\x50\x47\xe5\x71\x2d\xc1\x09\xca\x6a\x50\x63\x63\xc0\x1d\xbd\xb1\x7f\xf8\x44\x47\x85\x95\x3b\xd7\x09\x05\x84\x77\x71\x17\x5b\xb4\xb0\x5a\xc8\x17\x94\xf1\x1d\x5a\xa0\x03\x45\xbc\x7f\x8c\x37\x8a\x75\x7f\xda\xc1\x67\x96\xe3\xf2\x04\x9c\xdc\x22\x39\xe5\x05\x78\x8f\x2a\x01\xde\xa3\xc1\x7d\xb4\xa8\xec\x81\x51\xc4\x24\x3a\xe0\x34\xf0\xd8\x77\x54\x08\x8d\x36\x86\xa3\xb4\x2a\x59\x84\xc0\x6b\x6f\x9d\x55\x1d\x82\x6e\x12\x77\x6d\x1a\xdb\xde\x03\xe5\x78\x69\xe7\x6d\x27\x1d\x5b\xc6\x19\x00\xb4\xdf\x46\xf6\xc5\x17\x63\x4f\x31\x38\xaf\x7d\xfa\xde\xa2\xaf\xe2\x5f\xe7\xb7\xc5\xff\xe3\x26\xee\x6a\x32\xb4\xb1\xb2\xc9\xe3\x00\x8c\x2f\x94\x6a\x63\x66\x56\x77\xb6\x9c\x5c\xef\x49\x14\x0a\x04\x12\x40\xef\x5e\x76\x1d\xdf\x87\x81\x56\x32\x7e\xe8\xbb\x08\xf3\x1c\xea\xd1\x89\xd3\xb5\x3a\xed\x26\xe5\x26\x01\xd8\x84\x6f\x48\x6f\x56\xc3\x51\x50\xa1\x98\xea\xf8\x74\xf2\x9e\xd2\xe9\x5a\xb5\x76\xf9\x31\x15\x99\x7e\x8f\xc6\x11\xb9\x2e\x4b\x0a\x61\x77\xb8\x85\x49\x8f\x1b\x41\xcc\x85\xc9\xbd\x03\xb5\x4b\xb4\xc7\xce\x2b\xfd\x2c\xc8\xd4\x88\x98\xab\x72\x5e\x3e\x89\xf7\x23\x28\x45\x9a\xb6\x08\x20\x8e\x61\x69\xb8\x02\xe9\x6e\xe9\x4e\xb2\xb9\x04\x42\x9e\x8f\x6b\x29\xc7\x6b\xaf\xb5\xf3\x81\x0d\xd3\x09\xe5\x3a\x7a\x81\x03\x10\xbc\xc6\x4b\x4a\x83\x60\x5d\x01\x79\x52\x33\x0a\x7b\xd4\x98\x9e\x28\x17\x19\xc6\x7c\xb3\x62\xd1\xaa\xe1\x37\xbe\x1c\x9c\xa7\xa6\x67\x1f\x51\xa0\xff\x1d\xeb\x15\x27\x43\xdf\xa7\x00\x6e\x0b\x4f\x7b\x1c\x81\x03\xa3\x54\x02\xb5\x53\xed\xa4\xbe\x09\x4b\x28\x2a\xf8\xca\x4d\xcd\xf4\xbc\xa9\x25\x2c\x3e\xc2\x60\x61\x39\xff\xc9\x58\x39\x04\xfe\x69\x93\xbb\xdf\x42\x7b\x35\xc4\xde\xef\x64\xbf\xbd\x97\xf6\xc7\xf7\x6d\x13\x9b\x61\x08\xa5\x79\xc1\x09\xa8\xa7\x3c\x0e\x2d\x20\x51\xc6\xf2\x75\xee\xcf\x95\xef\xca\x44\x0d\x60\x32\x3b\xdb\xee\x0e\x8a\x78\xb9\xa5\x42\x5d\x1a\x2f\x09\x7b\x1b\xfd\x6e\x8a\xc5\x61\x98\x3b\x4e\x01\x86\x00\x6f\x15\xb9\xd8\xb7\xc6\x95\xa2\x52\xbd\xcc\xb2\x67\x01\xc8\x23\x6e\xb3\x49\x0d\x55\xd9\x06\x1d\xd2\xfe\x99\x36\x0d\xe1\x55\x20\x8d\x54\x2c\x51\x29\x9d\x3a\x1e\xa6\x49\xd3\x30\x49\xb9\x33\x20\x4d\xf7\x4a\xd3\xa5\x89\x39\xd3\x0f\x4d\x9c\x4b\xc4\x25\xc9\x0e\xfd\x09\x39\x8c\x69\x6e\x30\xc9\xac\x89\xbe\x39\x34\x69\x3f\x8c\x4d\x14\x9a\x96\x8a\x13\x21\x87\xc3\x9f\xb5\xb1\x00\xa0\x99\x56\x75\xfc\x8f\xa9\x64\xef\x98\xdb\xe5\xb2\x41\xb2\x9a\x11\x94\x0a\x39\xe7\xdd\xb1\x32\x3a\x65\xe7\x20\x4c\xf8\x07\x3b\x95\xe2\x83\x27\x01\xdd\xad\x34\x4a\xc7\x0a\xaf\x54\x6f\x2d\x2a\x34\x42\x9e\xc4\x13\x1e\x1c\xf2\x63\x0c\x00\xf2\xc3\xf7\xe9\x60\x05\x74\xe7\x4f\x6b\xaf\x76\x66\x6f\xfb\x75\xd3\x4d\x16\xb3\x24\x9e\xd0\x07\xed\x8f\xd4\x99\xf0\x99\x8e\x0a\x8e\x35\x71\x0e\xe2\x24\xb7\xa4\x2b\xaa\x91\x97\x38\xd0\x80\x08\x52\x20\x17\xf1\x88\xfd\x42\x55\x5a\xb7\x37\xf9\xb5\x8e\x8a\x6c\x20\x13\x0e\x37\xf2\x96\x16\x39\x7f\xab\xd6\xff\x9a\x9d\x6d\x9b\x6e\x37\x49\x7b\x13\x5a\xdf\x15\xa3\x8b\x9d\xec\x98\x4e\xb8\xdf\x51\x0d\xf6\x81\x8d\x46\x68\xfd\x39\xe6\xbf\xe8\x55\x7d\xe7\x69\xbc\x38\x47\x09\x77\x16\xe3\x0f\xd4\xe0\xeb\x34\xb5\x62\xd3\xc7\xfc\x6f\x39\xea\xff\x51\x55\x00\xaa\xeb\x1d\xcd\xec\x6d\x0f\x42\x2f\xa3\x0c\x0c\xd0\x5f\x2a\xc8\xc0\x89\x4a\x87\xf9\x7e\xa9\x48\x64\x4d\x66\x57\xcd\x1a\xa0\xe9\x1c\x7a\x05\x15\x96\x86\xab\x6a\xfe\xc4\xcd\xd9\x51\xf9\x6b\x58\x05\x78\x49\x47\x54\xe2\x78\x44\xbb\x28\xa5\xe1\xa2\xe5\x12\x13\x3a\x7c\xf0\x33\xe1\xcf\x4a\x14\x2e\xb5\xba\x24\xdb\xa4\xf0\xe8\x73\x92\x5f\x4c\xbb\x1c\x81\x62\x7c\x0f\x63\xae\xf1\x45\xa0\xa3\xe2\x55\x9b\x66\x93\xbe\x89\x00\x54\xaa\x8b\x60\x5c\x97\x09\x3c\x5a\x89\x53\x9e\x54\xa5\x48\x93\xc6\x64\x25\xe6\x3b\xc9\x97\xb9\x7e\x2e\x4a\xb7\x6a\xfc\xff\x10\xfb\x90\x86\x61\x63\x0e\x1d\x6a\xe2\x0f\x12\x1d\x90\x6b\x56\x4a\x79\x59\x30\x37\xf0\x49\x47\x93\xff\x86\x56\x73\x4a\x93\x78\x39\xe4\x9d\xc5\x7d\xd5\x6e\xf7\x59\x95\x84\xb2\x9c\xf8\x29\x93\x4a\xdb\xfc\x96\xf2\xfa\x63\xca\x08\xce\xc0\x37\xb7\x00\x02\xb6\xae\xd8\x5d\xbb\xda\x59\xd1\x1d\x4c\x54\x44\x2b\xbc\x32\x1d\x36\x37\x76\x12\x76\x21\x6d\x3f\x89\x7a\xd0\x29\xda\xe3\x8d\xbc\x5c\x89\x11\x31\x92\x98\xf2\x78\x3f\x87\xc5\x28\xc9\xc1\xe5\x98\xdf\xc3\xe9\x08\x14\x9d\xf8\xb3\x02\x88\x9a\xcc\x8e\xf2\xb0\x0b\x0a\x5b\x39\xf6\xee\xc7\x5d\x26\xf3\xa5\xce\x66\x13\x83\xf1\x16\x5f\x8c\x96\xd3\xeb\x05\x92\x03\x59\xe3\x11\x55\x8d\x2e\x93\x75\x13\xed\xa0\xb7\x8c\x70\xf1\xb8\xea\xa7\xfd\x8d\xfa\x0b\x6f\x8d\x95\xec\xca\x89\x2a\x22\xc5\xa9\xac\x5e\x09\xf4\x73\x86\xf1\xb2\x58\x31\x62\x0b\x9d\xc4\xbe\x81\xdd\xee\x84\x22\x26\x20\x02\x44\x0f\xe2\xc3\x06\x94\x67\xdb\x16\x69\xd2\x2b\x43\x53\x07\x9b\xc3\xdd\xfe\x74\xac\xec\x4c\x6f\x69\xe4\xe6\x35\x35\xe4\xec\xec\xcb\x72\x78\x4e\x68\xc1\x25\x67\x87\xc7\x3e\x55\xda\x50\x99\xd6\x7f\xf4\xed\x2e\xf6\x84\x9c\x50\xb6\x25\x48\xb6\xf0\xb2\x51\x9e\x97\x5e\x8b\x42\xd3\x47\x91\x5d\x63\xec\xab\x33\x4e\xd9\xed\xa7\x85\x34\xf7\x6c\xbc\x12\x66\xa6\xcf\x62\xb8\x22\xdf\xa3\x7a\xd6\x75\x03\xda\x99\xbd\xed\x28\x5c\x4c\x45\x5b\x8d\x8d\xd6\x54\x73\xb6\x2e\xa3\xb0\x6b\x57\xbb\x9b\x0c\x97\x92\x14\x9e\xd9\x12\x3f\xfb\x66\xdc\x6d\x24\x4c\x20\x26\x5d\x50\x10\xd1\xcc\x94\xdb\x44\x19\x20\xa2\xc7\x7f\x0d\x8b\x0b\x08\xaa\xb7\x75\x71\xe7\x24\x3d\x1f\xff\x54\xd0\xda\x35\xb3\xa9\xa7\x68\xb2\x42\x2e\x32\x73\x5e\x06\xd4\x81\xff\x1f\xa2\x46\x1a\x16\x28\xf3\x19\x10\x33\x5c\x52\xd2\x50\xb7\x95\x3c\xf6\x73\x1d\x2a\xc7\xa9\x5c\x72\x86\x03\xc6\x16\xe6\x19\xba\x25\x8f\x50\xab\x0f\xad\xce\x3f\x1a\x6f\xff\x9a\x6f\xe8\xcd\x4f\xfb\x32\xc7\x9e\x99\xbd\x22\xd6\x84\xd4\xf8\x5e\xa0\x1a\x0e\xd0\x58\xc2\x71\xff\x77\x3b\xfe\xf5\x16\xb1\x59\x8c\x60\xf4\x2a\xc4\x66\x1f\x42\x5e\x09\x14\xd4\xfc\x78\xc5\x02\x2c\xcc\xc2\x4c\x1d\x1b\x10\x6d\xe1\xcf\xeb\xda\x4c\x83\xe0\xfb\x6c\x0e\x85\x2d\xf9\xb4\xd2\xfd\x3e\xdd\x00\xfa\xdf\xd3\xee\xad\xc5\x66\x18\x02\x8d\x89\xf1\x38\xac\xd4\x8b\x0f\x37\x75\x58\x7a\x36\x5b\xe6\x9a\xb6\x2c\x4e\xbd\x52\x3d\x07\x26\x89\x63\x9b\xf2\xf1\xc4\x49\x96\xc6\x10\x1c\x53\xb5\xa4\x9e\x35\xf9\x00\xe1\xb5\x6c\xf3\x2d\xa7\x30\xa0\x8f\xa7\x43\x2a\x81\x5c\xb4\x26\x9d\xd4\x2c\xa3\x73\x0a\x05\x74\x30\xf0\x92\x07\x5c\x99\x12\xd0\x5a\xd3\x38\x0c\x92\xa5\xa5\xa1\x81\x02\x2c\x2a\xa5\x47\x35\xa5\xf7\xa8\xea\x50\x67\xf6\x00\x5b\x89\x6d\x59\x09\x7c\xa1\xf6\xe4\x70\x38\x4a\x93\x15\xca\xf1\xc8\x67\x57\x93\x03\xf1\xf9\x5b\x38\x27\x59\x9f\x98\xee\x19\x59\xe7\x77\xe9\xd5\xf1\xe7\x40\x99\xfc\x1f\x56\xdd\x25\x3b\x1c\x45\xc9\x9a\x4d\xb3\xbf\x4d\x92\xdf\x07\x01\xab\x69\xe8\xcc\x3e\xd8\x61\x62\xac\x6c\xda\xcf\x68\xb3\xb1\x38\xb7\xa9\xcd\x72\x0b\x7c\xa5\x53\x28\xd8\x25\x40\xcf\xe3\x4e\x5e\x6e\xd5\x64\x03\xfa\x21\xf6\xbb\x0a\x5a\xca\xfb\xca\xef\xab\xdd\x34\x1c\x8d\x22\xe6\xd2\xe1\x79\x61\x8e\xeb\xf8\x1e\x0e\x0d\x7a\x5d\xe9\x78\x8d\xa2\x22\xee\xdb\xde\x4e\x3c\xa0\x58\x4c\xd0\xce\xaa\xa3\x65\xd4\xc3\x0f\x8e\x7d\xe7\x76\x83\xee\x83\x35\x6d\xf0\x98\xb2\xba\x54\x53\xea\xce\xd6\x2a\xdd\x4b\xfb\xdb\x7b\x5f\xa9\xa8\x24\x71\x81\x49\xd0\xfb\x4d\xee\xf5\x8b\x89\x81\x0f\x01\x2b\xab\x29\xe9\x5f\x16\xdd\x46\x44\x72\xbc\xc1\x19\x7c\xa1\x1d\x85\xb1\x2d\x46\x34\x84\x15\xed\x01\xc1\x1d\x36\xf4\x49\x47\x45\x14\x2d\x9a\xee\x32\x87\x9e\x4d\xd4\xa6\xad\x3d\xcb\xb9\xb9\xf2\x80\x99\xf4\xdb\x0f\xf2\x35\xac\xda\xd6\x7a\x15\xaf\x36\x3f\xed\x74\x72\x1f\x53\x64\xd1\xa5\x22\x52\xb1\x16\xba\x0f\xfc\x79\x5d\xb1\x80\xcc\x4a\x18\xf7\xb3\x9d\x9a\xb9\xfd\x30\xf5\x1d\x74\xab\x0f\x41\xd0\x3d\x15\xda\x5d\x50\x66\xf3\x37\xf1\xc6\x1c\x20\xab\x1c\x43\x4c\x8e\x8d\x26\xeb\x79\x33\x32\x69\xde\x52\x12\xa4\xf4\x15\x22\x47\x5a\x47\x94\xcf\xd3\xe3\xb0\x2f\x1e\x4a\x62\x80\x69\xf2\x67\xd7\x93\x5d\x4d\xd2\xe5\xa4\xc0\xcb\xc5\x50\xa1\xb7\xc0\xf1\x0f\xee\x12\x21\xef\xd1\x86\xc8\x76\x0f\x41\xa7\x2b\x91\x2d\x1b\x98\x39\xdc\xa2\xf3\x29\x3b\xd6\xd4\xd5\x5b\x1d\x84\xa3\xa8\x5c\x60\x4a\xc4\xaf\x2a\x85\xd2\x44\xe5\xb2\x07\xc2\xcc\x81\x7a\x5d\xb1\xab\xfc\x5a\xe1\xea\xaa\xa8\x2e\x49\x72\xf6\xd0\xc3\x19\x78\x85\xe6\x05\x7f\x56\xe1\x49\x2f\xcc\x4c\x3a\x6c\x29\x32\x33\x64\x8b\xa5\x24\xe9\x83\xed\xae\x49\xf3\x24\x89\x01\xb0\x10\x9b\x40\xcc\x06\xa0\xa8\xbe\xc0\xb8\xf1\x7f\x61\x7d\xf1\xff\x34\x89\xb9\x95\xef\xaa\x5a\x3b\x61\xf9\x51\xd1\x3f\xb9\x3f\xd1\x20\x46\x72\xe0\x0a\x89\xbe\x95\x71\x4b\xc7\x7c\x5d\x1b\x9b\x34\x4c\xf0\x9e\x50\x61\xba\xa9\x71\x03\x47\x68\xe7\x93\xfa\x88\x52\xe0\xa0\x2e\x40\xa6\x64\x73\xdf\xa5\x31\xe1\xcf\x4d\x8a\x30\x45\xdc\xb3\x06\x88\x6d\xd6\xc0\xa4\x09\xe5\x14\xc4\xcb\x3b\xc4\xc5\xad\xfb\xb2\xa8\xbb\x61\xda\x2d\xc2\xbc\xa5\xda\xf0\xef\x28\x47\xcc\x77\x6a\x45\x86\xd9\xd9\xf6\x52\x62\x20\xae\xcc\x0e\xcf\xf4\xad\xe2\xf6\xfc\xac\x3b\x23\x52\x3b\x4a\x93\x5e\xd1\xcd\xc3\x15\x11\xf1\x14\x94\x21\x8d\x07\xca\x91\x5f\x68\xef\xa5\x2f\x95\xb4\xd5\x62\x9a\x2c\xdb\xd4\xf4\xed\x43\xde\xbe\xf8\xf8\xd8\x8b\x8d\x40\xb2\xc9\x79\xd6\xb8\xa4\x16\xee\x33\xf8\xa6\xcb\xfa\xfc\xfa\x0b\x4e\xc6\x50\x8d\x39\xac\x54\x40\xd7\x51\xd0\x16\x8f\x94\x72\x21\x21\x20\x6c\x54\x58\xfb\x5a\x3b\x63\xab\x11\x56\x6b\xa3\xe7\x17\xe5\x36\xcf\x29\x58\x8c\xcc\xd0\x4e\x2a\x29\x69\xdd\x3e\x66\x18\x01\xd6\xc6\xb1\xb1\x12\xb3\x3e\xa6\x84\x16\x07\x45\xdc\x4f\x99\x81\xe2\x4a\x54\x4e\x29\xf9\x98\xea\xb3\x6d\xe8\x96\x78\x6a\x0d\x71\x86\x9d\xdb\xe8\xa9\xc0\xab\xab\x9c\xaa\x6d\x0e\x7b\xe6\xf7\xb4\x7b\xb6\x1b\xf6\x44\x9e\x0f\x09\x1b\x13\xcf\xf8\x42\x33\x41\x53\x33\xb4\xe5\x76\x86\x00\xd1\x35\x40\x76\x7b\x3d\x5a\xcf\x6c\xc9\x48\x00\x72\xc2\x53\x30\x19\x71\x2c\x1e\x30\x1e\x9d\x75\x47\xc5\x17\xa9\x1d\x59\x13\x91\x6c\x89\x7b\xab\xae\x0e\x7f\x49\xd1\x16\x4c\xbc\xb6\x98\xf4\xd6\xaa\xae\xa4\xf3\xee\x73\x83\x16\xc8\x42\x3b\x32\x07\xe8\xf5\xb9\x0a\x93\xaf\x36\xd5\xa0\x30\xf4\xbe\xed\x81\x91\xda\x37\x5c\x75\xc3\x57\x3a\x6a\xab\x64\x66\x6f\xbb\x27\x3c\x31\x51\x5c\xf4\xa9\xf0\x05\xb5\xee\xe3\x24\x1f\x90\x08\xd3\xfc\xb4\xa3\xce\x2b\x6a\xda\x8f\x83\xf2\x7d\xe3\x3f\xb4\x1b\x08\x69\x30\x6d\xb2\xb4\x2b\x4e\x8d\xba\xa6\xf5\x2f\x28\x03\x33\x5a\x72\x5a\x1e\x49\xdc\xcc\xb6\xee\x0c\x33\x7b\xdb\x26\xcb\x92\x6e\x68\x94\xfc\x07\x2a\x2e\xbf\x53\x69\x2a\xfd\x4e\x05\xcc\xb0\x54\xc4\x00\x26\xe1\xa0\x3d\xa8\xc0\xce\x07\xc7\xfa\xe4\x8f\xa4\xd7\xef\x0c\x78\xbc\xff\xfd\xa5\x40\x49\xea\x7c\xbb\xb6\x19\x97\xa7\x60\x36\x08\x47\x5e\x22\x4a\x70\xd8\x2d\x67\xda\xf7\xd7\xf7\x51\x95\xb2\x52\xdd\xc6\x2a\xe3\x8a\x30\x5f\xd4\x1a\x07\x33\x7b\xd1\x92\x1a\x65\x1c\x66\x02\x8f\xd5\xea\xa8\x91\xd3\x20\xca\x6b\xbe\xf4\x1c\xf6\x85\x97\x27\xb2\xc0\xfe\xd8\x38\xa6\xca\x78\x02\x5c\xa2\x7d\x80\xbd\x30\xd0\xe6\x13\x63\x8c\xc7\x95\x16\x44\x37\x19\xda\x87\x69\x70\xd0\x99\x3d\x80\x68\x9f\x2f\x94\xe5\x3d\xbc\x6c\x84\xba\xa2\x7a\xbc\xa8\xa4\x8a\x0d\xbc\x9f\xbc\x7f\xa6\x24\x6a\x0f\x53\x75\x02\x9f\x59\x93\x14\x29\xdf\x61\x6c\xd9\x72\x9b\xbe\x83\xd4\x4f\xad\x5d\xd6\xd1\xc1\xd5\x40\x45\x07\x57\x6b\xeb\x6f\xff\x9e\xb6\x8d\x32\x8b\x7d\x86\x8b\xaa\xca\x3f\xe5\x44\xb0\xb5\x39\x38\xb3\xb7\x3d\xb2\x79\x9a\x88\xde\x3a\x8f\x2d\x4b\xf2\x29\x23\xf6\x73\xe3\x47\xdd\x0e\xb8\x24\x06\x7c\xd2\x6f\xf6\x27\xd4\x99\x86\xb0\x7b\xa1\x1d\x5b\xdb\x9b\xf2\x5a\x4b\x0c\xa0\x41\x98\x75\x31\xf0\x46\xb5\x17\xb4\xe6\xd3\x1d\xc2\xdf\xa0\x8d\xf5\x7e\x83\x16\xde\x5c\x3b\x4a\xe2\xfe\xa4\x92\x3e\xb9\xa0\xc8\x37\x30\xfa\x46\x23\x7b\x92\x62\x5a\x54\x05\x4e\x36\x1d\xf5\x59\xb2\x94\x33\x80\x01\x65\x8b\x6d\xf0\xa8\xc5\xce\xf9\x68\xc7\x23\x48\x36\x94\x44\x53\xd7\xa4\x29\x19\xb8\xbe\xba\x79\x91\xde\x3e\x22\x3d\x30\x25\xa4\x10\xdf\x52\x7a\xaf\x2d\xa7\x32\x71\x50\x99\x13\x1f\xa7\x13\x11\x4b\xe5\x7b\x6a\x06\x87\xe4\xe3\x98\xb5\xa8\x62\x29\x39\xa2\x2f\x44\x1c\xa9\x8d\xf4\x0b\xed\xd4\xc4\xbd\x64\x88\xbc\x11\xe5\x9e\x23\x34\x24\xfc\xb9\xa9\x93\xd0\x1f\x78\x5f\xc9\x0a\xff\x97\x2f\x6a\x03\xff\x0b\x6d\xda\xbd\x40\x7e\x64\xb4\x02\xe2\x00\x81\x2e\x78\x14\xb0\x49\x01\x51\xdc\x51\x9e\x34\x8e\xd4\xec\x6d\x6f\x8e\xa2\x57\x89\xb0\xfa\x1c\x96\x27\x5f\xd4\x5c\x14\xf8\xd7\x1b\x3b\x65\x8b\xd6\x8e\x58\x5f\x1d\x81\xd5\x09\x15\x64\x9d\x28\x0f\x3e\x5f\x33\x5c\x5a\xca\xe8\x38\x63\xe1\x97\xc0\xc7\x77\x97\x55\xeb\x36\xb6\x86\x61\x66\x4d\xd2\x4c\x35\xe9\xa7\x99\xbd\xed\x7e\xc8\xe8\x24\x27\x34\x56\xce\x71\xbe\x70\x08\xe0\x6c\x94\x08\x43\xc8\x71\xd1\x5d\x8e\x70\xa6\xa1\xab\xf9\x2a\x79\x05\x10\xaf\x13\x65\x17\x1c\xa5\x1b\x15\xdf\x59\xcf\xec\x3e\xeb\x88\xbf\xa3\x6c\xad\x3b\x08\x4d\x9e\x86\x5d\xe5\xb9\xbb\xa1\x38\x2b\x1b\xae\x50\x99\x25\x45\x3e\xb0\x26\xcb\x27\xbd\x7d\x09\x38\x89\x38\x38\x6e\x05\x1e\x4f\xf5\x11\x5e\x36\x16\xec\x27\x4d\x8d\xb6\x34\x5c\xb1\xbe\xac\xca\x5e\x31\x63\x9f\xb7\xdc\xa8\x88\x6e\xe9\x53\xee\x8d\x37\x8c\x62\x7f\x9e\xd2\xf5\xc2\xc6\x52\xe9\xd0\xa4\x2b\x36\x92\xa2\x8a\xb3\x94\x28\x47\x57\x2c\x25\x94\xac\x72\x91\x72\x55\x15\xdb\x37\xd0\xe3\xfc\x59\x55\x33\x23\xb3\x3a\xa5\xba\x0f\x9f\xa9\x99\xf8\x77\xd6\x6b\x42\xc9\x08\xc9\x40\x05\x42\xd0\xf5\xb3\x1d\x8f\xb3\xed\x89\x5b\x0b\x1b\x47\xe8\x0e\xe3\xef\x93\x3c\x8f\x18\x5b\xe1\x11\x90\x77\x5f\x51\x65\xc5\x2c\x4f\xad\x59\xc6\x71\xac\x85\x2b\x04\x1e\xe0\x7f\x32\xb2\xa6\x5f\x48\x2a\x20\x92\x1e\x2d\x27\xc5\xcd\xd5\x14\xec\x8e\x1b\x35\x56\x1c\xf9\x46\xc2\x3a\xd6\x1d\xff\x02\xab\xf2\xcc\xba\xb3\x35\x9b\xd2\x17\xda\x59\x32\x55\x2e\x6f\x71\xeb\xaa\xe8\xa2\x97\xd3\x49\xea\xce\xbe\xf5\x3f\x45\x78\x7f\x6a\x13\x0e\x9f\xed\xb8\x2e\xf9\x20\xcc\xf3\xd0\xa6\x2d\x25\xd5\xc9\x9e\x5c\x7c\x71\xdf\xce\x70\x11\x47\xe1\x32\x3a\xb3\x2e\x06\x9b\x9f\xe6\xc9\xcb\xb5\x4c\xf6\x7f\x53\x92\x46\x53\x9d\x32\x57\x14\xb1\xec\xa6\x7d\x25\x2b\xc2\x2c\x13\xee\x9f\x83\x75\x6a\x0d\xd3\x06\x0c\xa1\x57\x17\xc6\x96\xb5\xb3\xe3\x7b\x2f\x3b\xd7\x9f\xf4\x45\xd7\x2c\x49\xf3\xb0\x18\x02\x41\xef\x38\x73\xce\xfe\x65\x43\x81\xf8\x4f\xba\x90\x3f\x0d\xbb\x83\x61\x12\x8b\x96\x8f\x14\x82\xe8\xa6\x84\xa3\xe0\xe7\xc4\x52\x9a\xe4\x03\x84\xef\x6c\x79\x19\x78\x1c\xe0\x51\x4f\xb7\xb5\x69\x9a\xa4\x61\x86\x0e\x82\x28\xc0\x94\x5f\x8f\x5d\xe5\xc1\x8e\xdf\x35\x26\xd6\x7d\xfd\x60\x14\x76\x97\xa5\xe9\x85\xd2\xd0\x4f\x68\xa7\xe0\xcf\x4e\xe3\x20\xb6\xbd\x96\x57\x8c\x62\xdc\x02\x5f\xf8\x32\x74\x6a\xcd\x10\x7d\x57\xf4\xfa\xb6\x91\x25\x37\x7f\xee\x38\x8f\x49\xb3\x46\x75\x1e\x47\xc9\xfd\x52\xc9\xe8\xc3\x2a\x48\xc4\xe9\xea\xcc\xb9\x57\xdb\xa3\x24\x84\xe4\xf6\x1e\x2d\x55\xe8\x74\x0b\x55\x94\xb3\x6a\xe3\xfc\x01\x4a\xc1\x70\x24\x3d\xa9\xaa\x68\x9b\xaa\x5e\xcf\x6a\xa4\xd8\x48\xae\xd1\x59\x85\x43\x9e\x05\x55\xd0\xe3\x65\xeb\x3a\xde\x53\x2a\xc6\x73\x9f\x69\x35\x8e\xdc\xf4\xed\x03\xaa\x1e\x73\x17\xb7\xe7\xd4\xb9\x48\xde\x34\xa8\x39\xbc\xbc\xcc\xbb\xd2\x2d\x25\x96\x7b\xa7\x8e\xc1\x96\x6e\xe0\xa3\x4a\x9a\x34\x8a\x1e\x29\x1f\x06\x0b\xe7\x8a\x12\xbb\x7c\x07\x0f\xa6\x20\x05\x92\x9b\x1c\x1b\x7b\xce\xff\x5d\x7c\x3d\x6a\x31\x7f\x4e\xe5\x17\x11\x0c\xae\x3a\xfa\xed\x97\x7e\x0d\x3b\xd8\xb3\x21\x1f\xd7\x9b\x34\x8b\x57\xe4\x3e\xf4\xd1\x90\x5a\xfb\x74\xf9\x7f\xd8\x0a\x5a\xeb\x14\x15\x31\x88\x4c\x9b\x56\x02\x37\xcd\xc6\xef\x81\xaf\x6d\x5c\x0d\xfc\x22\x38\xcb\xdf\xa9\xdb\xbb\xa8\x90\xac\x53\x78\x8f\xfc\x9f\xf1\xb4\xce\xe6\x75\x5e\x3d\xf1\x7e\xf7\x77\x2f\x02\x19\xce\x9a\x78\x48\x5a\xd0\x40\x3b\xa6\x51\x2d\x6c\x19\xe4\x72\x1b\x0f\xde\xdb\xc0\xf8\xe1\xec\x98\x82\x0f\x9a\x28\xec\x49\x62\x97\x14\xe5\xb4\xe0\x28\x4d\x4c\x43\xe9\x6f\x88\x53\xe8\xa3\x4a\x0a\x27\xea\x41\xb0\x11\x45\x1a\xee\x98\x23\x7d\x99\x58\x2f\x63\x6a\x8c\x35\x74\x4d\x91\xc9\xdf\x1d\x7b\xcc\xcf\x25\x8d\x3e\xb9\xc7\x33\x15\x0d\x9e\xed\x04\x40\xc3\xc4\x64\xaf\x18\xb4\x5d\x36\x6a\x89\x85\xab\x80\xb1\x43\x02\x78\xc5\xd8\x78\x77\xac\x2b\xfd\xa8\x07\xa9\x0b\x87\x21\xfb\xfd\xb1\x2f\x8c\x7f\xb5\xd3\x20\xb2\xb2\x1c\x27\xab\xee\x78\x62\x91\xbc\xc0\x4f\x8b\xbf\xaa\x13\x6c\x5f\x59\x68\x67\xc3\x24\xc9\x07\x74\xf2\x23\x1f\xf8\x80\xa0\x42\xfc\xd9\x49\x22\x2d\x99\x28\xb2\x31\x35\xb6\xf1\xec\xdb\x50\x6b\xa7\xc5\xb0\xff\xb9\x8e\xef\x9c\x6c\xa7\x30\x00\xfb\xd7\xad\x06\xe5\xb4\x99\x76\x96\x17\xb1\x68\x17\x6d\x92\x41\xf9\xe6\xcd\x8a\x88\x56\xb1\x68\x5b\x15\xa1\x11\xdf\x69\x3a\xb3\x95\x87\x56\xa6\x3a\xe5\x7a\x9f\xf4\xf9\xc9\x8f\x14\x86\x12\xa7\x2c\x62\x8a\xef\x61\x56\x48\x6d\xbd\x01\x55\xb7\x04\xc1\xda\xb9\x39\xd7\x31\xa5\xdb\xe0\x8b\x5a\xa6\xbe\x67\x7e\x4f\x45\xa9\xd7\x33\x5b\x68\x6c\x2a\xa5\x2c\x1c\xfa\xb7\x6a\x53\x81\xde\x41\x31\xb2\x69\x37\x19\x8e\x8a\x5c\x44\x0a\x9c\x5a\x83\x6a\xa7\x34\xd5\xc8\xf3\x24\xed\x3a\x80\x14\x56\xe0\x6d\xed\x41\x7e\xdb\xa9\x0f\x2d\x9a\xee\xf2\x52\x98\xca\x42\x61\x24\x67\xa0\xe4\x7f\xd7\x55\xc3\xca\x46\x51\x98\xe4\x60\x1d\x63\x2e\x70\x3f\x8e\x2f\x6a\x67\x7b\xf9\x1c\x8b\x06\x27\x14\xc8\x94\x2c\x51\xc3\x17\xee\xb8\x4b\x7a\xbd\x9d\xea\x2f\x41\x1e\xd2\xa1\xb4\x1c\x2a\xf6\x37\x54\x92\x02\x2e\x29\xff\x3c\xf6\x6d\x57\xd0\x76\x0d\x92\xba\x9e\xeb\x0b\xed\xd5\x81\x4d\xed\x22\x17\x31\x45\xa2\x97\x9c\x41\xb9\x3f\x43\x3b\x1a\x52\xed\xa3\xae\x52\x64\x16\x8b\x2c\x5c\x81\x9e\x28\x42\x45\x08\x3d\xb9\xea\x69\x39\xbc\x02\x66\xf3\x14\x24\x66\x8e\x87\x71\x7f\x87\xc6\xe3\x6b\xb4\x99\x50\xf8\x95\xe4\xcc\xcb\x5e\xc2\xdb\x21\x9e\x21\x8d\xc5\xda\xac\xeb\x0a\xb7\x1d\xae\x84\x51\x48\xcc\xc0\x72\x8f\x05\xa0\xe0\xb4\x32\x10\x3e\xad\xd4\x21\x4d\xda\x1d\x84\xb9\xed\xe6\xc0\x4b\x09\xac\x56\x63\x6c\x35\x98\x1b\x4f\x25\x88\x29\x7d\xb8\x64\xb6\xab\xd6\x3d\xc1\x20\x16\xca\x9c\x7e\x66\xef\xe6\x45\x6c\xcf\xfc\x3f\xc1\x53\xd5\xa5\xf9\x73\xed\xdd\x73\x53\x1e\x41\xf8\x9e\x96\x8e\x83\x46\x03\x42\xa1\x4b\xba\xf4\x74\x52\x83\xc2\xff\xa5\x9a\x91\xc5\x88\x3c\xf4\x5b\x1e\xb2\x8e\xda\x00\x7f\xae\xad\x8e\x7d\xd3\x6d\x13\xaf\xe5\x1e\x83\x26\x5d\x57\x4f\xa4\x39\xdd\xa0\xda\xbf\xa7\x9d\x25\x2b\xa1\xcd\x95\xaf\xe5\x65\xdd\x26\xb8\xac\x7c\x9d\x08\x4f\x9b\xa6\x26\x46\xe3\xc9\xf9\xa6\x7b\x02\xc9\xd1\xa6\x36\xdf\x37\x0b\xf9\xfb\xae\x83\x30\x3f\xed\x9a\xff\xbe\xc6\x91\x27\xab\x26\x65\xaf\x23\x8c\xda\xb6\x75\x05\xb9\xdf\xd6\xf1\xa9\xfb\xa2\xc9\x96\x6d\x0e\xe7\x0f\x14\x4e\xee\x60\xb4\x1d\x60\x49\x61\xb0\xeb\xd5\xa2\xf6\x62\x1a\xda\xa5\x09\xfd\x4a\xbc\x08\xcd\x8f\x54\x09\xe6\x5c\x35\xec\xc8\xec\x43\xe5\xff\xa1\x24\x75\x94\x03\x07\xf6\x08\x26\x04\x1e\xff\x0f\x2a\x19\x88\x48\xaf\x8f\x55\xf5\x88\xf7\x08\x41\x60\x20\x72\x73\x85\x33\xf7\xa2\x98\x94\x05\x30\xef\x86\x0a\xd6\x1e\x54\xc8\x14\x93\x65\x36\xcf\x1e\xad\x4c\xd5\x72\x3c\x30\xaf\x58\xc4\x16\x99\xda\x1d\x44\x1f\x48\x1f\x0e\x52\xe1\x11\x47\x35\x4d\x6b\x66\x5b\xbe\x13\x68\x2d\x6c\xac\x55\xec\x47\x2c\x2a\xcb\xbf\x1e\x78\x82\xe6\x3b\x81\xef\x8a\x5c\x46\x50\xe3\xa4\xb4\xf7\x4d\x73\x10\x76\x27\x78\x44\x57\xe0\x7f\x86\xe0\xfb\x4e\xef\x67\x7e\xda\xab\x9d\x2e\xfc\xcf\xbf\xc2\x2f\x0d\xe0\x4f\x8c\xec\x0e\x62\xb3\x30\x66\x3c\x68\x3d\xff\xbc\xfc\x72\xa0\xfa\xb3\xd7\x69\x7d\xea\xd6\xe6\x6f\x8d\x95\xff\xfd\x77\xc6\xea\xd9\x26\x3b\x8a\xfd\x37\xd5\x69\x7d\xfd\x1b\xae\x1b\x5a\xbe\x5d\xfc\xfb\x23\x90\xe8\x63\x1d\xdf\xa0\xf5\xcb\xc2\x9f\x44\x5f\xcc\xdd\x42\x19\x79\x0a\x28\x4c\xeb\x12\x6c\xef\xd0\x6b\x77\x29\x99\x17\x18\xfb\xb2\xc2\x4b\x55\xe9\xe8\x21\x8a\x44\x1c\x09\x64\xbf\x33\x83\xfb\xa0\x12\x2d\x2c\x86\x16\x3d\x5a\xc9\x99\xe8\xd1\x24\x9b\xba\x2f\x14\x46\x09\x70\x45\xe1\x10\xe6\x06\x62\x07\xe5\x8d\xa8\xeb\xca\x56\xfb\xa6\x5f\x6e\xaf\xda\x0c\xcd\x74\x2d\xfe\xc4\x3a\x1b\xf4\x0a\x71\xa0\x1e\x1c\x0b\xba\xc4\x84\xc3\x6c\x47\x39\x4e\x18\x3f\x30\x7f\x2a\x3b\xaf\x00\xd5\xcb\xdf\x56\x1e\x96\xd2\x7b\xe3\x4c\x07\x6b\xfb\x66\xad\x56\xb9\xf7\x95\xf6\x28\x29\x62\xd6\x57\x17\x6e\x9a\x2f\xfe\x7b\xcd\x82\xd4\x8e\xd2\xd0\xae\xb0\x3c\x90\x08\xe0\xd3\x1f\x97\x3d\xb7\xe5\x44\xbf\x0f\x36\x35\x97\x96\x92\x24\x57\x52\xb4\x87\x15\x5e\xe3\xb0\x2a\x00\xa7\x66\x64\x7b\xad\x2a\x05\x8c\x8e\x6e\x01\x25\x3f\xaa\xea\x89\x07\xf2\x07\x3c\xa3\xf3\xfb\x34\x08\x8c\x51\xa6\x87\x10\x8e\x85\xe7\x84\x00\xb3\x88\x4c\xe6\xae\x26\x93\x5e\xc5\x40\x61\xfb\xbd\x4e\x73\x53\x78\x48\x12\x09\x2d\x25\x69\x3f\xc9\x73\x0e\x67\x11\x3d\x1c\x1a\xab\x2d\x0a\xd0\x11\xcc\xc8\xe3\x5a\x3e\x7c\xbb\x4f\xb4\xd3\x64\x45\xf8\xe9\xf8\x25\x0e\xf9\x59\xaf\x5d\x09\x77\x9f\x73\xca\x8c\xa3\x34\xe9\x46\x66\x68\x40\x22\x74\xa5\xd5\xc3\xda\x4b\xf2\x70\x20\x81\x52\x5a\xc4\x0f\xd1\xc2\xc4\xd6\xfb\x11\xcd\x93\xcd\x0d\xdc\x0f\x02\xa6\xa7\x3b\x3e\x6e\x7f\x80\x52\x05\x2c\x10\x00\x71\x11\x13\x5c\x1c\x6b\x13\xa2\xb1\x4a\xee\xd9\x08\x00\x03\xca\x3a\x18\x0c\x2a\x76\x71\x7f\x11\x5b\x93\xad\xd1\xc9\x80\xa0\x65\x43\x09\x99\x9c\x53\x86\x3c\x27\x7d\x17\x2a\x0a\x47\x6c\x3e\x80\xed\xf2\xc8\x58\x41\x2c\x39\x6f\x16\xa6\x58\xfd\xd4\x26\xea\x78\x91\x4a\x4c\x0b\x5a\x1b\xea\x2d\xfc\x39\xd0\xa6\x93\xc3\x49\x35\xd2\xba\x48\x8e\x7e\x19\xb2\xed\xd6\xba\x16\x38\x6d\x50\x59\xde\xd3\xee\xd9\x15\x1b\x25\x23\x7c\xed\xab\x8e\x7a\xa2\xe9\xe6\xaa\x54\x9e\xdb\xe1\x28\x92\xda\x17\xf6\xfe\x4b\x78\x8b\x7c\xa1\xea\xfc\x71\xb2\x42\xea\x97\x74\x8e\x33\xdf\x3a\xf0\x38\x81\x8d\x5a\x9f\x6a\x66\x2f\xad\x08\xd4\x46\x1d\xa8\xc8\x35\xcd\x1e\xa7\x07\xc3\x59\xb0\x89\x2f\x15\x18\x4e\x03\xc5\xd3\x84\x69\x37\x35\x4b\x6c\xa4\x86\xc0\xef\xa7\x4a\xab\xf4\xa7\xae\xc4\x04\x93\x9f\x47\xe9\x89\x05\x69\xad\x32\xf6\x27\x3b\x5a\xf8\x88\x06\x09\x5c\x86\x93\x5a\xf8\xf2\x7b\xb4\xe2\x50\x3b\x78\xb0\xa3\x40\x72\xeb\xbe\x06\xbc\x1d\xf5\x09\x01\x04\x53\x89\x40\x04\x14\xb5\x61\x90\x3a\xa3\xb7\x13\x31\x5e\x0e\x8f\x26\xfa\x74\x99\xb9\xc9\x9c\xc1\xd7\x7c\xa4\x1c\xbf\x3e\x72\xab\x6a\xd5\xe6\x13\xad\x5f\xfd\x25\xfe\xf7\x1f\x8d\x7d\x59\xf4\x0a\x69\x28\x48\x90\x54\xef\xe4\x2e\xb4\xed\x37\x0b\x61\x34\x21\xfc\xf8\x58\x85\x22\x1f\x2b\x08\x01\x45\x9d\xd9\x83\x3e\x30\xff\x98\xce\x38\x56\xbe\x53\x42\xac\x5f\x42\xe7\xc6\xc9\x6a\x97\x77\xef\xd4\x9c\x5d\x49\x18\xfa\xc8\x4a\x30\xce\x59\xc0\x52\x0d\x47\x6c\x86\x1f\x73\x99\x5e\xee\x3b\x0c\xa2\x73\xd2\x72\x0a\x9c\xd0\x1c\xc5\xe1\xf3\xb1\xb3\xae\xee\xd9\x6e\x12\x67\x79\x5a\x74\x1d\xe4\x8a\xb9\x3e\x6a\x2b\xab\xf3\x7e\xca\x7c\x5e\x68\x71\x00\xb4\x00\x90\xc7\x9f\x35\x81\x8a\xf4\xbe\x2d\xb2\x11\xec\x1f\xb7\xb4\x1d\x00\x24\xa0\x9c\x34\x87\xdf\xd1\x3f\x6c\x44\xa4\x99\x90\xf5\x41\x66\x38\xb7\xfa\x84\xc3\x8d\x8a\xe4\x08\xbb\x0d\xb9\x24\x78\x94\xda\x6e\x54\xf4\x84\x04\xe7\x5a\xf8\xce\x20\xf7\x3c\x5a\xc8\xd8\xfb\x2f\x37\x90\xe0\x16\xca\x38\xb3\x18\x4a\xc2\x2f\x95\xff\xca\xea\x52\x2a\xbe\x97\x15\x3d\xc0\xae\x98\xa8\x30\x82\x87\xd0\xfe\x97\x02\xd3\xf0\xd9\xdb\x6a\x18\x45\x66\x48\xe8\x09\x0d\xfe\xe7\xf8\x48\x24\xd6\x1a\xc4\xff\xa2\x64\x45\x04\xd3\x50\x86\x07\x3e\x9b\x3f\x37\x81\x0d\x06\x45\xdc\x4b\x6d\x8f\x8b\x40\xd8\x4a\xb6\x77\x7c\x07\x7b\xfb\xfa\x93\x5a\x66\xc3\x2c\x13\x9c\xc1\xc7\x6f\x1b\x78\x5e\x29\xd8\xf9\x1a\x3e\x69\xc6\x38\x66\x1f\x5a\xa6\x10\xb7\xe6\xcf\x4a\x52\x33\x2a\x0e\x14\xa4\xda\x4b\x7f\x98\x11\xc6\x81\x46\x1b\x6f\x5d\xf4\xaf\xbd\xd6\x4e\x6d\xbf\x88\x0c\x36\x56\x11\x89\xf1\xc7\xea\x79\x57\x72\x30\xfd\xe4\x41\x5f\xd9\x7f\x7a\x5d\x19\x51\xde\xc0\x3c\x91\x0e\xbb\x4f\xf9\x01\xbb\xa7\x03\xe3\xb7\x9f\xa1\xb2\x29\x4a\xc5\x7f\x36\xf6\x55\xbe\xe7\x3a\x95\x52\x80\xf2\x79\xbb\x50\xeb\xc6\x10\x7d\xb2\x67\xb3\x6e\x1a\x2e\x4a\x0d\xc6\xd1\xb3\xdc\xd6\x78\xee\xbe\x60\x39\x93\x67\x45\x36\x80\xf8\x98\xd8\x12\x68\x8f\x82\x4a\x48\x1c\xf7\xd6\x88\x40\xed\x8e\xf6\x32\xc5\x40\x0d\xfc\x36\x82\x30\xbc\xad\x4f\xe9\x81\x9d\x42\x42\x79\x4f\x98\x28\xac\x09\x8b\xcd\x63\x23\x50\x62\x96\x7f\x5a\x03\xed\xc8\x1d\x66\x45\xdc\x33\x6b\x42\x56\xc1\x1f\x3d\x44\x07\x1d\x96\xc2\xa7\xda\x15\xe2\x3b\xe3\x47\xbc\x7c\x61\xd7\xee\x68\x29\x97\xf0\x72\xe0\xb1\x41\x6c\x43\x5f\x40\x06\xb8\xdc\x39\x50\xaa\x65\xc1\x12\x60\x7c\xd0\xa6\x66\xd5\x94\xa6\x19\x3e\x34\x71\xcf\x40\x1a\xc9\x89\x5b\x9d\x50\x7d\xd6\x13\x0a\x1f\xba\x68\x97\x92\xd4\x3e\xda\x72\x1a\x6f\xa7\x10\x19\x56\x9c\x1f\x9d\xb1\x7b\x19\x6e\x54\xfa\x36\x88\x26\xaf\x51\xba\xc7\xa2\xe7\xb8\x55\xa7\x42\xe3\xca\xca\x1f\x20\x43\xd7\x62\xbe\x88\xc0\xf7\xd0\x08\x60\xec\x1f\x5b\xa7\x17\x01\x58\xe9\x3d\x32\xd0\x46\x1d\xe2\x68\x03\x42\x89\xfa\x66\xa3\x90\x62\x27\xcf\x65\xe0\x20\x86\x2f\x94\x59\x5b\x6c\xf2\x84\x77\x17\x39\x73\x14\x38\xf2\x82\x92\x3d\xe6\x8a\x18\x4d\x3e\xe4\x45\xd7\x03\xdf\x1e\xbc\xae\xfa\xc3\x83\x24\xdd\xe1\x4b\xce\x88\x4f\x51\x14\xbd\x47\x4f\xa5\x80\x57\xaf\x7a\xd3\x24\xaf\x24\x7e\x46\x43\x47\xbf\x55\x91\xe9\xfb\x66\x11\x92\x05\x9e\xaf\x64\x60\x92\x4a\x8d\xa1\xa5\xcc\x1c\x55\xed\x01\x89\xa3\xb6\x48\x90\x54\xb3\x86\xb7\x7b\x65\xa1\x9d\x27\xb1\x59\x2d\xa7\x4b\xcb\x1f\x98\xdc\x1c\xe6\x8b\x46\xf0\x7b\x36\x4a\x93\x82\x3b\x67\x0e\xdc\xb2\xdb\x17\xbb\x9a\xd0\x64\xbd\x70\x25\xcc\x24\x13\x10\xa0\x32\x7d\x93\x20\x98\x1f\xd5\xf0\xe6\xe1\x94\x6f\x3f\x56\xc2\x78\x6c\x93\x9c\xf0\xa8\x7a\xff\x7b\xb4\x53\x21\x00\xbe\xa8\x0a\x69\x69\x31\x4c\x52\x66\x44\xe0\x20\x41\xc2\xcb\x9f\xef\x0b\x43\x1e\x84\x7d\x1c\x11\x62\x1a\xa5\x64\x59\x26\xd6\xfd\x14\x28\xd2\xec\x11\xbf\x0b\x3f\xb4\xae\x3c\xdf\x7e\x8b\x72\x91\xcd\x93\x15\x1c\x32\x3d\x0a\x02\x9d\xf3\x63\xff\x8c\x67\xf8\x3c\xc7\x11\xbe\x1d\xda\x82\x38\x38\x00\x46\xa4\xd7\xf8\xf8\x13\xeb\x34\x95\x08\xec\xf1\xeb\x4f\x74\xfc\x54\x3a\xfb\xd5\x8e\x62\x91\xee\x5c\x6f\xe0\x00\x2d\xda\xd4\x22\x95\xc5\xb2\x7d\x5b\xe1\xed\xdf\xae\x54\xba\x8a\x37\xcc\x64\x39\xa7\x1c\x66\x76\x8f\x63\xd2\xc1\xa4\x03\xf9\xef\xa6\x76\x80\x39\x58\x23\x2f\xcc\x4f\xcf\xb7\xb3\xa4\xe5\x89\x7f\x60\x8e\xf1\xe7\xb1\x2a\xe7\x15\xdd\xe5\xc8\x52\x49\x82\xb7\x4b\xa5\x9a\xfa\x1d\xef\x53\x91\x78\x34\x22\x40\x82\x67\x94\xf1\x55\x13\x60\x66\xae\x6d\x86\x36\x0d\xbb\x26\xce\x2a\x2b\xff\x83\x40\xad\xfc\x0f\x9a\x64\xf4\xda\x26\x4a\xe2\xfe\x44\x79\x4b\x78\x97\xd0\xa9\x76\xd4\x66\x07\xfc\xbb\xad\xb9\x96\x45\x2f\x89\x96\x26\x14\xca\xfd\x06\x36\x3d\xc1\x31\xd1\x70\x49\xb2\xb1\xf5\x0d\xed\x7d\xa5\xdd\x1d\xd8\xee\x72\xcb\xe9\x53\x6e\x91\x18\xac\x97\x66\x66\xda\x61\x2f\x42\xe5\x1e\x2f\x61\x03\xdf\xa7\x25\x21\x05\x34\xd0\x10\x3c\x2d\x9a\xee\xb2\xc4\x86\x78\xbb\xff\xbb\x82\xe6\xfc\x3e\x62\x43\xd1\xba\x95\xda\x4e\xf1\x62\xfc\x22\x05\xb5\x02\x57\xf4\x14\x1a\x04\xf1\xae\x6f\xe0\xf3\xc3\xc9\xce\xd6\xf8\x80\x8c\xe4\x47\x91\x89\xfd\x41\xe5\x16\xa7\x5f\xa8\xca\x52\x79\x90\x44\xf9\x1b\x43\x96\x92\x13\xe5\x37\x95\x89\x9d\xaa\xf9\x2b\xee\x7d\xa5\x8c\x9a\x27\x3c\xec\x04\x40\x30\xcc\xaa\x6b\x81\xdf\x58\x8f\xd4\x95\xeb\x76\xb5\xbb\x49\x02\x38\xc3\xdc\x9c\xc3\x0f\xb5\x9c\xe3\xda\x39\x15\xcb\x99\x2e\x09\xa3\x65\x0f\xd2\x38\xb2\xfc\x16\xfd\x2c\x83\x27\xca\xaf\xda\xfc\x50\x59\x93\xfe\xf0\x78\x39\x50\x9b\x1f\x8e\x3d\xbe\xe9\x18\x06\x1b\x23\x7f\x48\xc7\x26\xef\x62\x91\x09\xa4\xcb\xbb\x96\xd9\x17\x95\xd0\x14\x44\x43\xf8\xb3\xaa\x18\x2c\x26\xc9\x64\xc5\x1f\x80\x12\x30\xed\x5d\xcb\xff\x11\x28\xc6\x58\x43\x9f\x60\xae\xdd\x35\xe9\x62\x12\xe3\xa4\x15\x7c\xa7\xc6\x7d\xfa\x2a\x6f\x94\xf4\x27\x34\x1f\x96\x7e\x0c\xd5\x53\x12\x77\x72\x75\x20\x67\x0b\x53\x44\x79\x38\x8a\x6c\x05\x0c\x77\x42\x81\xe1\x4e\xa8\x36\x41\x96\x5b\x93\xc6\x19\x69\x8c\x20\x91\x7c\x6f\xac\x54\xa9\x8e\x29\x15\xb1\x0d\x1a\x14\xfe\x21\x0c\xa3\xd4\xa7\x25\x6c\x5f\x09\xe3\x5e\xd8\x35\x2e\x09\x14\xf5\x60\x5d\xe1\xdc\x3a\x77\xf7\xbe\xd2\x4e\xed\x52\x64\x0f\x84\xc8\x3d\xf6\x4d\x7b\x29\x42\x27\x8d\x78\x4a\xf1\x2b\xba\x49\xbc\x12\x92\x5b\x7d\x79\x3f\x90\x7f\x38\x81\x83\x9a\x2f\x5c\x32\x3b\xb2\x26\x2e\xf2\x6c\x8a\x6e\x86\x1d\x97\x94\xba\xcb\xbb\x1a\x70\x77\x89\xc2\x2e\x15\x8f\x89\xfd\xc7\x1d\x35\x01\xfa\x69\xa2\x13\x06\x5d\x7b\x3b\xef\xcd\x51\x93\x61\x19\x34\xb6\x54\xa6\x80\xb7\xc6\x9f\x2b\xd1\x76\xd7\xc4\x4f\x79\xbe\xee\x15\x8d\xec\x98\x5a\xf7\x1c\x83\x4d\xad\x78\xcf\x89\x1c\x62\xf2\x87\x3b\xca\x81\xeb\x0a\x35\x4e\x04\x5c\x4d\xb1\x27\x0a\x45\xa7\xf9\x40\x44\xd4\x74\x25\xf0\x73\xfd\x22\x52\x0f\x01\x60\xb6\x9e\x7f\x9e\x03\xc6\x5b\x88\x50\xd1\x98\xe7\x11\x71\x82\x91\xfb\xa6\xf9\xf3\x26\x96\x9a\xf8\xaa\x79\xc7\xb8\x4d\x0a\xf2\x44\x86\xa0\x0e\x18\x6a\x67\x79\x92\x62\x92\xee\xe1\x93\xe0\x2c\x56\x35\x5f\x34\x2b\x3c\x9a\xd4\xa3\xe8\x70\x6b\x10\x86\xe0\xcf\x0a\x7b\x9e\x27\xa3\x11\x54\xe8\xf7\xf8\x1a\xb2\xef\x62\x9c\xab\xf4\x29\xa3\x28\x84\x30\x81\x54\x88\x51\x7b\x96\x05\x43\x6d\x5f\xd1\x73\x94\x85\xd6\x4b\x56\x6c\x6e\xc2\x88\x2b\xb9\x78\x69\xdb\x3b\x8a\xb0\x00\xe7\x54\x31\x71\xf2\x44\x94\x91\x4d\x47\x36\x2f\x58\xe1\x83\x65\x95\x69\x95\x88\xc4\xf2\xfd\x40\x1f\xb1\x5d\xcd\x88\x5c\x3f\xe1\xe9\xd0\xd8\x06\x70\x80\x32\x86\x54\x90\x81\x4f\x28\x62\xca\x8a\x4d\xf3\x6c\x42\xfb\xf2\x7a\xfa\xcf\x6d\x6d\x59\xd7\x28\xdf\xc3\x20\x48\xc9\xd0\x9c\x17\x7e\xf9\xb0\xe2\xa6\xaf\x0e\x90\x6b\xb5\xf3\x75\x7e\xba\x9d\x5a\xd3\x83\x8a\xb7\xf3\x1f\x9f\x9d\xe5\xe1\x81\x0b\x90\x30\x5b\x24\x48\x29\xc3\xf6\x65\x0d\x2d\x3d\xa7\xa0\xa5\x5a\x99\xf0\xbf\x7b\xf1\x7f\xa2\x9f\x72\x26\xf7\xbb\xc4\xb5\xf9\x4c\x93\x5b\x22\xe8\x3d\x21\x88\x22\x78\x22\xc4\xba\xac\xa0\xcf\x17\x35\x56\xcd\x4b\xfb\xdb\xc9\xc8\xa6\xcc\x30\xf1\x26\x90\x9f\x04\x8a\xaf\xf5\x89\x6a\xa4\x87\xb1\x5d\x21\x6d\xe4\x35\xe5\xdb\x77\x8e\x22\x55\xfe\xdc\x80\xbf\x6f\x67\xab\x36\x8a\x5a\x4a\x5c\x43\x79\x49\xd7\x63\xec\x32\xf5\x18\x24\x51\x2f\x8c\xfb\xf2\x30\x6c\x4a\x86\xbb\x12\x87\x32\xed\x2f\x93\xf4\x53\x33\x7c\x5c\x99\x58\x71\xb9\x16\x6f\x8f\x5d\xb4\xf0\x66\xd8\x51\x13\xf5\x29\x54\x13\xb1\xcf\x9e\xc1\xf1\xe7\xec\x99\xcb\x1d\x18\x0f\x85\xf0\x0e\x61\xed\xfb\x48\x61\x85\xb4\x58\x3e\x14\x02\xf1\xef\x55\x54\xa7\x94\x81\xce\xbf\x1d\x7b\x79\x8f\xeb\x63\x0f\xf9\x67\xb3\x47\xa6\x0b\x04\x0f\x79\xa6\xf6\x33\x74\xbb\xc8\xd9\xa0\xd0\xec\x22\xda\xfd\x02\x0a\x3e\x85\xed\x4c\x82\x94\xf2\x2b\x68\xde\xfe\xdd\xaf\x76\x3c\x77\xe4\x01\x12\x55\x70\x94\x89\xf2\xeb\xd0\x04\x7f\x73\xac\x7c\x6e\x5a\x48\x1b\x40\xea\x3a\x44\x8f\x84\x2a\xc5\x59\x3c\xab\x58\xf6\xd0\xfe\xcb\xc6\x71\x18\x5e\x44\x24\xb7\x69\x7a\x4a\xc7\x51\x37\x3a\x81\x15\xc1\x66\x7a\x4f\xb1\x9d\xde\xd1\x0a\x6e\x97\x81\x92\x93\xed\x48\x23\x0e\xd3\x1e\xc5\xfd\x48\x5b\x8e\x53\x54\xc6\x9f\x1b\xe4\x25\x67\xda\x2b\x26\x2a\x2c\xf3\x20\xd8\xda\x1a\xcf\x29\x3e\xd7\x4d\x94\x93\x8c\xf7\xdf\x3d\xda\xcd\xff\x65\xb9\x58\x6f\x94\xc1\x4e\xfb\x6e\xd3\x46\x0b\x15\x02\xe9\xfc\x79\xfc\x8c\xe7\xba\x27\x51\x98\x87\xdd\xd0\xc4\xd9\x84\x8f\xd6\xdf\xc5\xe8\xb1\x06\x39\xfd\x2a\x5e\xf6\x87\x5a\x00\xdf\xa6\x4f\x28\x74\xd2\x76\xe4\x8e\x28\x3c\x4d\xa1\x01\x8d\x8a\x5c\x9b\x0a\x0b\xd8\xda\x77\x12\x60\x1a\x39\x2f\xd3\x33\x70\x02\x3c\xbc\xee\x31\xe4\x9c\x31\xa3\x7a\xb4\x13\x04\x16\x9a\xaa\x3f\xff\x5f\x77\x3c\xaf\x73\x6a\xdd\x4b\x17\x9c\xa6\x89\xe7\xb0\xda\x3a\x61\x2d\xe7\x94\x0b\x81\xdd\x18\x30\xc2\x00\x79\xc7\x66\x4d\xa1\xe9\xb5\xd7\xca\xa8\x62\x94\xda\x81\x8d\x33\x91\xe9\x65\x09\x5b\xe5\x6b\x56\x05\x76\x0e\xc2\xee\x03\x2d\xa7\x7e\x7c\x19\xf3\xdf\x55\x4a\xca\x91\x12\xf7\xfb\xf2\x21\x30\xb8\x9f\x07\xbe\x39\xfb\x39\xee\x89\x7f\x1d\xd1\x84\xe0\xae\x68\x40\xf8\xd7\x83\x07\xc3\xf6\x28\xb5\x4b\x3f\xdf\x5e\xf8\xfb\xf4\x8a\xb1\x42\x61\xdf\x8f\xa5\xfb\x1e\xb6\x0a\xc4\xeb\x1b\x68\x2a\xca\x48\x6d\xff\x9a\x4b\x50\x54\x27\xf9\xd1\x75\x6a\xed\x08\xb6\x8b\xe0\x0c\x38\x74\x0e\x6d\x49\xfa\x5f\xda\xcf\xc5\xb2\xc3\xc8\xac\x25\x7c\x68\xfd\xea\x2f\xf1\x46\x75\x9b\xb1\x21\x88\x71\xee\x69\x9d\x98\x43\xe3\xd6\x2f\xcb\x16\xf8\x21\x79\xc2\xe0\xf5\xff\x25\x16\x2f\x22\xdf\xc3\x63\x25\xcb\x21\x8e\x09\x74\xf5\xbf\xfe\x9d\x4e\xcb\xa9\x89\x3e\x46\x4d\x54\x3c\xcb\x55\x7a\xe9\x78\xf8\x2b\xb4\x0e\x51\x6e\xdc\x49\x30\x51\xec\x1c\x8f\x76\xca\x49\x82\x05\x0e\x42\x3b\x8a\x98\xd7\x20\xa5\x84\x28\xee\x43\xec\xbe\xe8\xea\x5f\x57\x18\xb7\x1b\x5a\x55\xe1\x85\x4e\x03\x5b\xc4\xf4\x63\x1b\x45\xa1\x9c\x09\x58\xa0\x8f\x76\x94\xb1\xc5\xa3\xeb\x8a\x73\x95\x24\x69\xa6\x4d\x05\x4e\xf3\xce\x84\xf7\x7f\x13\x67\x09\x5f\x60\x08\xc5\x43\xf3\x7e\x45\xdd\xd4\x0e\x93\x15\xc9\x05\x9c\xa8\xfc\xfc\xb4\x13\x95\x7f\xce\x03\xb4\xe2\x70\xa9\xcc\x1c\xc2\x24\x0e\xb3\xe1\xa4\xc2\x22\x6d\xef\x78\x61\xe2\xcf\xc6\xaa\xf3\x82\x84\x4b\xa4\xcf\xb7\x06\x4c\x65\xc8\x32\x34\x71\xb1\x64\xba\x79\x91\x7a\x7d\x10\xc4\x3b\xbc\xb7\xf3\x45\x83\x8e\x3c\xd6\x50\x37\x24\x2e\xac\xf6\x9f\x51\x02\x4f\x7e\xeb\x79\xf9\xeb\x33\x3b\x7c\xf6\x70\x88\x67\x08\xee\xff\xcf\x31\x56\x38\x18\xaf\xa0\xa2\x80\x77\x3e\xd5\x51\x64\xc2\x2b\x3a\x17\xb9\xe7\xfa\xe1\xa4\x70\x31\xe5\x9b\xf3\x3f\xa0\x83\x4b\xc2\x3b\x5a\x54\x2a\x17\x59\x70\x1a\xc5\xf4\x1e\x45\x99\xc7\x83\xe0\x07\x36\x4c\xb9\xbd\xee\x70\x22\xe5\x5a\x04\x83\xfc\xd3\xb1\xdf\x4a\xae\xd7\xfa\x43\xbb\xe7\xda\x8b\x69\xe8\x04\x37\x90\x8a\x7c\x57\xb5\xbf\xbe\x5b\x3b\x63\x7e\xa1\x9d\x74\xbb\x45\xea\xfa\xf1\x82\x03\x53\xd9\xf9\x39\xd7\x5c\x1d\xa5\xa1\x32\x55\xe2\x37\xc4\x17\xb5\x9b\x21\xab\x96\xa4\x48\x73\x8e\x47\x11\x84\x7c\xa8\x6c\x64\xb8\x9c\x26\x47\xcc\xd6\x39\x5a\x1e\x7f\xc9\x8a\x4d\x57\x07\x36\x1a\xca\xfd\xe1\x39\x26\xd7\xfd\x33\x4d\x76\xfc\x5b\xce\x53\xf3\x00\x8d\x96\xcb\xc4\xe7\xa7\x79\x95\xde\xd4\x05\xfc\x07\x3a\x5a\x13\x0e\xdd\x5b\xd1\xc6\xf5\x85\x8c\xc7\x28\x92\xc2\x3a\xe4\xb3\x0a\x48\x15\x9f\x60\x8c\xd2\x64\x18\xc6\x32\x05\x69\xd6\xff\xeb\x27\x3a\xae\xa2\xf3\xaf\x9f\x58\xaf\xdb\x58\x2e\xb4\xc3\x78\xc5\x66\x79\xd8\x37\xb9\x9d\xf0\x9d\xd5\x0d\x6c\xd9\xc8\x26\x8f\x2a\x2d\xb1\x7a\x73\x8c\xea\x13\x51\x92\xd9\x74\x52\x39\xf5\xa3\xc5\x8a\x28\xf0\x2a\x66\x8d\x38\xb6\xd2\x64\x03\x4d\xe4\xf4\x7d\x2b\xc0\x6b\x49\xc1\x9e\x73\x78\xcc\xd3\xbc\x29\x23\x72\x7a\xa2\xe3\x69\xd7\x67\xc7\x9a\x11\x58\xee\xc9\x02\xa7\x2a\x87\x41\x0a\x65\x0f\x2b\x5c\xfe\x73\x18\x70\xf6\x0f\x0e\xaa\x6d\xf1\xf2\x4e\x81\x42\xb8\x8d\x93\x03\x30\x95\x43\x08\x58\x51\xfa\x9e\x58\x77\x94\xbc\x9b\x4f\x50\x0c\x88\x5b\x79\x72\xdd\xe3\xf3\x26\x3b\x34\x1a\x08\x58\x0f\x53\x37\x05\xdd\xbe\x1b\xba\xda\x74\x37\x50\x7d\xf8\xdb\xc4\xcd\x70\x2a\x0a\x73\x73\x7b\xee\x91\x23\x3d\x6e\x67\x72\xbd\xf5\xf5\x6f\x38\xed\x7f\xbf\xae\x9f\xec\x94\x47\x17\x46\x9a\xc1\x12\xb8\x65\x90\x04\x10\xde\xb0\x36\x07\x76\xd2\xcf\x02\xdf\x17\xbf\x42\xc0\x37\xe4\x91\x13\xb5\x63\x61\x7e\xba\x9c\x55\x8b\x64\xd6\x42\x7f\x40\xcb\x19\xf0\xe7\xe0\xef\xf3\x0f\xdb\xd8\xa6\xfd\x10\x6a\x18\xcb\x79\x68\x17\x6d\x2f\x0d\x5f\x5f\xe2\x9d\x54\x41\x7f\x24\x6d\x3e\x5b\x23\xbf\x79\x19\x92\x3c\xec\xa2\xb6\x2a\x96\x57\xbe\x77\xcd\x96\xd8\x48\xba\x6e\xd6\x76\xe3\xfd\x33\x7b\xcb\x10\x72\x94\x86\xcc\xff\x9a\xf1\x69\x91\xd7\xb1\x6e\x0c\x70\x47\xc6\x93\x1a\x84\x20\x54\x7e\xaf\xd0\x83\xa4\x0c\xfb\x86\x19\xc2\xc8\xd6\xc5\x1b\x3e\x9d\xbb\x70\x5f\xe9\xfe\xd7\xcd\xc8\xc4\x36\xb3\x3b\xfc\xae\xb3\xa1\xe3\xb8\x93\x3a\x27\xfa\xcf\x34\xc4\x08\x47\xbf\xd4\x48\xc5\x2b\x7c\xce\x62\x99\xdd\xad\x3d\xfe\x0b\xb4\xa2\xe3\x3c\x91\x16\xb7\xc0\x34\x3f\x1d\x2b\x43\x92\x4f\x2b\xe5\x8c\xd8\xae\x7e\x85\xbe\xdb\x99\x90\x28\x10\x3b\x35\xb8\x5c\xf8\x33\x3f\xed\x45\x9e\xca\xf9\x2d\xeb\x58\x89\x72\x5d\xc6\xba\xe1\xf8\x87\x66\x2a\x93\xad\x03\x2d\xba\xf5\x0e\xb2\x1f\x24\x71\x97\x09\x5d\x82\x20\xfb\x1d\x82\xe9\xa3\xb8\x70\x43\xa9\x92\x3e\x08\xd1\x74\x66\xa8\x68\xa5\xfe\x23\x08\x81\xa4\x76\x55\xae\x19\x2c\xee\x9b\xaa\x20\xc9\x58\x09\x8c\x22\x63\x1c\x51\xe4\xdb\x41\x91\x98\xc8\x01\x60\x9f\x61\x82\x52\x0d\x34\xb6\x6b\x57\x7b\x25\xcc\xc2\x3c\x71\x52\x89\x2c\x57\xd8\x51\xb6\x75\x87\xf5\x2c\xbf\xd3\x88\x29\x21\xcf\x9e\x96\x8a\x0d\xbf\xe0\x59\x24\xc3\x56\x29\x37\xe5\x6b\x8f\xd0\x98\xf2\x49\x4e\x90\x58\x8d\x23\xa0\x80\xf4\x97\x9e\x58\x57\xf3\xa4\x45\x81\x10\x5a\xc9\x9b\x34\xa2\xba\x38\x80\x48\xe6\x07\x3a\xb6\xa5\x0d\x6b\xc1\xab\x23\x96\xbb\xa2\xa8\x23\xd2\xdb\x75\x87\x4f\xf9\xa0\x38\xc8\xae\x36\x4b\x37\x77\x4d\x14\xc9\x21\x89\xe4\xe5\x3d\x6c\x7a\x7c\xa1\x8c\x15\x8a\x18\x86\xaf\xe8\x11\xb2\xf7\x4c\xa0\xda\x17\xf5\xf2\xd2\xec\x6c\x3b\x8c\x97\xc2\x38\xcc\xc3\x56\x65\xe1\xf9\xa2\x69\x1d\x78\x3e\x3b\xdb\xce\x06\xc9\x28\xd3\xdb\x58\x15\x0d\xd1\xc0\xb8\xf9\x5a\xfb\x1f\xcc\xec\x7e\x79\xf7\xde\x85\x89\x72\x4a\x01\xdc\x0d\x6f\x6b\x01\xb4\xd1\xf7\xcb\xfa\xaa\x9b\x1e\x0d\x4d\x88\xa2\x1d\xf2\xcf\x2f\x95\xd0\xe9\x97\x4a\xfe\x69\x94\x26\x4b\x61\xae\xfb\xcd\x5f\x80\xed\xc0\x1e\xba\x81\x77\xf3\x7f\x9b\xee\x59\xbc\x75\x95\x38\xc6\xbf\x1a\x7b\x48\xcd\x09\x15\x6c\x9a\x3c\x99\xaa\x44\xaf\x4a\xff\xec\xb8\xd2\xb3\xbc\xa0\x58\xae\xda\x9e\xe3\xa8\x52\x7d\x1a\x15\x31\xdb\xbe\xb8\xb3\xfd\xba\x1a\x8e\xeb\xb5\x2e\xa0\x6c\x7d\xfd\xc4\x81\xc4\x80\x74\x60\xdb\x67\xad\x42\xc8\x04\xee\x26\x88\xe2\xaa\x59\xb6\x13\x15\x98\x81\x47\xf6\xdc\xab\x7a\x1a\x35\x38\xb6\x51\x3d\xa1\xcb\x42\x09\x98\x54\x9f\x28\x20\xfd\x27\xf5\x16\xe4\x2b\x0b\xed\xd4\xc4\x12\xba\x3a\x0d\x36\xe5\xbf\xdd\x54\xe9\x18\x26\x59\x3e\x41\x6b\x08\x6f\xe1\x12\x22\x0b\xe7\x73\xe0\x0d\x48\x7f\xe0\xc4\x01\x48\x0e\x6b\x31\x8c\xc2\x7c\x8d\x54\x80\x90\x04\xe0\xb4\xe3\xcf\x0a\xeb\x27\x6d\x20\xaf\x76\xc2\xe7\x3a\x5f\x28\xa0\xcb\xd2\x28\xc2\xcf\x21\x6f\x66\xac\x19\x5f\x38\xfa\x51\xb7\x08\xb3\x90\x15\xbf\x18\xf9\x12\x54\x60\x30\x0d\x9d\xec\x6e\x52\xf4\x21\x5f\x88\xb5\x76\x42\x69\x61\x9c\x18\xfb\xc6\xcb\x92\xc9\xf2\x45\x13\x89\x92\x89\x43\x63\x94\x01\x96\x4c\x39\x09\xe6\x87\xf9\x0a\xfd\x45\xc4\x9b\x5c\x1a\xe6\x0b\xa0\x48\x78\x36\xbf\xf6\x5a\x5b\x1f\x14\x94\xc1\x8b\x80\x3a\x9d\x01\x38\x36\x98\x08\x87\xc4\x89\x1d\x0c\x5d\x1a\xb8\xdb\xe9\xc9\x93\xe8\x10\xab\xac\xd2\x53\xe0\xf3\xa5\xc0\xfb\xea\x6d\x5b\xf7\x99\xda\x31\x8a\xe2\x1c\x54\xa7\x3c\x30\xf1\x87\xbe\x43\x0b\x14\xe9\xf8\x07\x00\x99\x22\xd2\xba\x4b\x67\x11\x72\x83\xbf\xd6\x15\xc5\x0f\xe8\x54\x65\x8b\x25\xb5\x9d\xbf\x33\x56\x0d\xc3\x93\x68\x24\x60\x9a\xfe\x1f\x81\x36\x4e\x39\xa7\x5d\x94\x2e\x69\x82\xeb\x41\xaa\x25\xe1\x2b\x7f\x8a\x19\x88\x95\xc5\xcc\x57\x04\xc4\x7f\x40\x61\x1f\x1a\x02\x5f\x06\x65\x00\xc9\xfe\x07\x78\xfd\x38\xd5\xe5\x2c\x44\xdc\x7a\x29\x50\x65\x8d\x0f\x02\xdf\x9b\x3d\xd4\x04\x0f\x1a\x25\x69\x9e\x1a\xe7\xed\x2a\xca\xd0\xf4\x74\xe2\x31\xfb\x33\x1e\xc0\x4f\x3e\xe2\x19\x56\x02\xc7\x2d\x33\x1c\x95\x9e\xc7\xca\xe1\x8b\x3a\x31\xf2\x95\x85\x76\x31\x1a\x58\xb3\xc2\xfd\x11\xf6\x5a\x0c\x3c\xa9\xea\xac\x83\x86\x76\x53\x2a\x17\xbe\x61\x7b\x68\xf2\x21\x9b\xd8\xd6\xf1\x9c\x62\x46\x30\xe1\xcd\x00\xfc\x81\x0c\x77\x3b\x8a\xdc\xec\x76\xa3\x1c\x4e\x8a\x9c\x6f\x7a\x07\xfd\x49\x91\xc7\x2e\x7f\x93\x51\x59\x81\x92\x7e\x85\x6c\x97\xfb\x21\x9f\xb9\x04\x1a\x39\x35\x56\x0d\xdd\xde\xa8\xe5\x0b\x6e\xa7\x15\x03\xe2\xb4\xd6\xca\x18\x0d\xa6\x14\x72\x6e\x67\xc7\x0b\xbd\x9c\xa9\x68\x4f\x94\xaf\x1a\x21\x35\xbe\x1d\xb5\xa8\x4f\x6b\x7b\xe0\x6b\xaf\xb5\xe3\x84\x8c\x23\x5b\xae\xb8\x74\x56\xc1\x0d\x76\xd0\x98\x39\xaf\x38\x7d\x5e\x2b\x05\x53\x9b\xda\x61\x12\xaf\x4d\xd0\x02\x74\x91\xde\x9c\xd2\xe7\x2f\x97\x04\xa2\xc3\x1f\x36\xc6\x49\x8b\x36\x4d\x4d\xab\xa2\x9d\x87\x75\x20\x1e\xf2\x5a\x66\xd6\x66\x66\xb5\xa5\x22\xea\xa3\x78\x99\x7c\xa1\x24\x48\xa2\x24\x59\xce\xa6\x14\xa5\x0f\xab\x59\xf8\x7d\x9e\xd1\xf0\xd7\x63\x2f\xd9\x72\x1c\xaf\x08\x15\xfe\x2f\xc7\xff\xff\xfb\x95\xb1\x92\xee\xb2\x5d\xb2\xe4\x69\xed\xe3\x0b\x2e\xd8\xf0\x45\xf0\x94\xea\xb4\x2d\xb1\xdf\xa1\x17\x92\x81\x96\x96\x28\x00\x37\xac\x2e\x52\xef\x1c\x8a\xf2\x9a\x44\x4d\xfe\x7c\xbb\xa0\x7d\x93\x81\x5d\x16\xec\x0b\x04\xa9\x5d\xf0\xf8\xd2\x7e\x4e\xb0\xef\x04\x8f\xbb\x3c\x8e\xd2\xf9\x9e\xc6\xc7\x9e\x51\xf8\x58\xaf\xab\x6d\x96\x96\xc2\x9e\x59\x09\xd9\x7c\xd2\xe9\xd2\x3a\x44\xd6\x54\xc7\x53\xe4\x6e\x2b\xcd\xc0\x6f\x16\x66\xd9\xd2\xcc\x12\xec\x26\x6d\xde\x7c\xa1\xc3\x1a\x76\xe1\xe3\x0b\xa5\x88\xd7\x4d\xa2\x28\x8c\xa1\xf3\x2c\x29\x73\xcb\xc9\x42\x5e\x18\x3f\xec\x06\x60\xa5\x20\x09\x69\xc9\x0e\x2a\xae\xe0\xde\x8e\xb0\x2e\x8e\x46\x66\xaf\xb6\x6b\x87\xd6\x44\x93\xde\x24\x95\x53\x07\x01\x5e\xf9\x6e\xfc\x39\x85\x7e\x3e\xaa\xa4\xef\x7a\x49\xb1\x48\xe1\x70\xb9\x08\x90\x65\x3c\x04\x86\x1a\x5f\xac\x3f\xe3\xd1\x58\x16\x8d\xd3\x94\xe7\x03\x68\x7c\x4c\xec\xe5\x8b\x26\xa9\x9f\x9e\x5d\x0a\xbb\xa1\x28\x1a\xa1\x9d\x75\x41\x01\xb4\x2e\xa8\x4e\xb7\x3d\x50\x6e\xce\x53\x5e\x38\xe3\xf2\x58\x29\x60\xa3\xb1\x8c\xd8\x0a\x5d\x56\x1c\x06\xdc\x73\x43\xb1\xfe\x6c\x93\x2d\x5c\x98\x1a\x80\xf3\xc5\xd1\x48\xdd\xf4\x71\x45\x68\x19\x86\xbd\x9e\x59\xab\x46\x05\x3a\x0e\xd5\x78\x07\x1b\xe7\x3f\x4b\x3f\xe8\x92\xce\x3d\xca\xa7\xa8\x7c\x04\x74\x1d\x99\xd7\x2b\xd5\x16\x9c\x5b\x1e\x18\x25\xd4\x70\xd4\xd9\x9d\x46\x74\xf9\xd4\xd8\x4b\xff\x58\x81\xbd\xfe\x10\x18\x66\xcc\x97\x7f\x46\x43\x80\xca\xfc\x2d\x3a\xb4\x45\x47\x83\x5e\x27\xa6\xfc\xc3\xeb\x74\x1a\x23\xd9\xba\x03\x21\x0a\x57\x97\xf4\xa3\xb6\x8e\xd7\x28\x5d\x02\x5f\xa8\x7e\x8f\xf7\x34\xac\x2f\x3e\x68\x11\x8b\x7c\x44\x89\x31\x9e\xa4\x85\x23\xc8\x29\x45\x38\xd2\xc6\x66\x40\x81\x82\xd8\x72\x95\x51\x0d\x07\x03\x24\xdd\x86\x05\x7e\x18\xc1\x00\x0e\xb0\xeb\x81\x92\x07\xfa\xc2\x61\x51\x86\x45\x16\x85\x43\xc9\x6c\xf1\x3c\x9c\xd9\x4a\xf3\x47\x61\x49\x6e\x2b\x6f\xa6\x6e\x32\x1c\x99\x3c\x0d\x13\x40\x0d\x70\xf3\xfc\xd3\x9c\x38\x8d\x7d\x1f\xad\x5e\xa1\xdd\x37\xdd\x5e\xb4\x79\x6e\x01\xe9\xc5\x8e\x71\x63\xac\xba\x2a\x5c\x44\x44\x47\x09\x92\xee\x98\xda\x9f\xd0\x40\x3a\xa1\x70\xa7\xc0\xb5\xad\xe6\x65\xb4\x6b\x57\x3b\x5b\xb5\x86\x41\x1e\x8e\x4f\xa9\xa8\x20\x0d\xdd\xc8\xf2\xc1\x22\x7b\x60\xca\x13\xa1\x26\xb4\xcf\x02\x4e\x57\x67\x0f\xe0\x68\x4b\x9f\x6b\xaa\xe5\xe7\xaa\x99\xde\x37\x45\xbf\x08\x63\x2d\xec\x74\x52\x09\x3b\x9d\x54\x1a\x34\xdd\xc8\xa6\xcb\x2d\xc5\x61\x7b\x0f\x5b\x0f\x5f\xb8\xaa\xff\xd0\xc4\x21\x40\xc4\x52\x1f\xa0\x1f\x93\xb2\xbf\x7f\x49\xa3\xd4\xae\x84\x49\x91\x45\xa4\x96\x37\xe7\x9d\xa8\xe7\xa5\xcb\x0e\x28\x31\xa6\xf8\x4d\x94\x81\x80\xc4\x62\x08\x6e\xc5\xf9\x8d\x7f\x3d\xa0\xe5\xc2\x3f\xa6\xc0\xb9\x26\x5d\x6a\x29\xc7\x68\x46\xdf\x0a\x0f\x7d\xeb\x06\xb2\xf7\x95\x76\xcf\x76\x5f\x6c\xa9\x28\xe6\xcd\xc0\xd3\x58\xdf\xac\x1d\x83\xbb\x76\xb5\xf3\xd4\xc4\xd9\x52\x92\x0e\x69\xdb\xc1\x2e\xfc\x19\xee\x8d\x2f\xee\x9b\x91\x1a\x9b\xc7\x66\xc2\x33\x35\x20\x8f\x5a\x61\x0f\xb0\x90\x90\xca\xbf\x7a\x76\xc9\x9a\x1c\x8a\x08\x5c\xcc\xa5\x3d\x48\x0a\xbb\x5e\xfc\x25\x0d\xbb\x83\xc9\x8a\x8d\xb2\x9a\xb0\x14\x02\xca\xe4\xa5\xaf\x12\xe3\xe5\xa7\x14\x06\x9d\x22\x62\x9b\xb5\x94\xcc\xab\x42\xf4\x5f\x70\xa0\x17\x13\x45\xb9\x8d\xa8\x76\xef\x76\xd3\x5f\xfd\x25\xa7\xb2\x48\x7f\x5f\x78\xfa\x4a\x72\xdc\x76\x41\x0d\x9d\xd9\xcb\xbb\xdb\x29\xec\xad\x7c\xe1\x6a\x9d\x99\x98\x7d\x8a\x8c\x05\xbd\x45\xd1\x1c\x6f\x62\x2c\x47\x84\x66\x2b\x9f\x5d\xd7\x6e\xf9\xb3\xd6\xb4\xed\x25\xa3\xdc\xf6\x76\x28\xab\x41\x04\x27\x08\x03\x3e\x42\x42\x27\x4b\xd3\xe3\x3f\x6f\xd1\x96\x28\xcb\x97\xbe\x08\xf5\x87\xba\xd7\x1c\xd9\x8d\x13\xac\xd7\x75\x8a\xce\x04\xaa\x53\x74\xc6\x71\x95\x81\xd3\x49\x10\xb2\x61\x93\x02\xba\x82\x3f\xbb\xf1\x18\x26\x51\x4f\xb9\x02\x1d\x52\x1e\x7c\xb7\x30\xf5\xc4\xad\x9e\xe6\x3e\x6e\xf9\x58\x53\x55\x63\x18\x66\x1c\x99\x39\xed\xba\xd9\x59\xe1\xa3\xd3\x9f\x05\xb7\xf1\xed\xa6\xc0\x78\xa1\x9d\x25\x11\x87\x68\xae\xd2\xaa\x84\xe1\x7d\x58\x3c\x8a\x4c\xd7\xf6\x88\xba\x8a\xdb\x7c\x0b\x67\xa5\x33\xd7\x75\xb5\x97\xf7\x31\x59\xf0\x53\x9f\x35\x34\xd1\xda\xf6\x40\xd7\x8a\x7a\x32\x56\x3f\x82\x65\xfe\xec\xe6\xe4\x8a\x8d\xc3\x2e\x97\x6c\x90\x09\xa3\xc6\x23\x9d\x5c\x05\x1f\xbb\x85\x9d\x00\x91\x49\x96\x1b\x12\x36\x71\xa1\xad\xa0\x9e\x34\x1a\xaa\x0e\x35\x6f\xf7\xc2\x2c\x49\x7b\xce\xff\x15\xc1\xc2\x9b\x34\x67\xf8\xf3\x56\xd7\x82\x72\xa2\xfe\xc2\x03\x34\xf5\x1c\xbe\x6d\x7e\xda\x45\xb8\x9e\x91\xf1\xc7\x14\x32\xb8\x04\xc8\xdd\xc7\x47\x5a\x62\xff\x74\xa0\x45\x55\x71\x7a\xa2\x7c\x71\x52\x11\xed\x70\x94\xe4\x56\xb6\x5f\x56\xc1\x27\xcf\xd5\x83\x0a\x75\xdf\x02\x59\xda\x0b\xd5\x88\x97\xc2\x4d\xa5\x0e\xc5\xd2\x3b\x52\xfb\x7c\xb6\xa2\x3a\x2f\x79\x34\x1f\xe4\x42\x46\x56\x80\x89\x09\xd4\x8a\x51\x21\x79\xa8\xe3\xc1\x86\x30\xa1\x0f\x2d\xc3\x60\x71\x90\xdf\x50\x72\x5c\x20\x87\xcb\x7f\x8c\x15\xd8\xf8\x02\xc5\x91\x9b\xd7\x03\x5d\x04\x8a\x73\x93\x95\x19\x7d\x6b\x6e\xae\x22\x29\x2a\x5a\xa3\x32\x65\x06\x45\x4a\xf6\x02\xce\xe2\xff\xa4\x0a\xc9\x4e\x2a\xd8\x52\xcf\xe4\xe6\x61\xef\xee\x77\x9c\x76\x03\x64\x6e\x1b\x81\xb7\x4c\x44\xbf\x5f\x7c\xbd\x7c\x10\xf7\x67\xb8\x63\x34\x23\xd1\x22\x53\x68\xac\x19\xa7\x57\x43\x9b\x8f\xcc\x5d\xc5\x83\xff\x96\xf6\x9d\xd9\x50\x5c\x97\x5e\x12\x27\x2b\x6c\x88\x82\x50\xfa\xa7\x98\x22\x7c\xa1\x36\x77\xf4\x5c\x93\x34\x7b\x82\xbe\x12\x91\x66\xab\xe3\x81\x3f\xba\xc1\x76\x17\xa5\x1e\x77\xf2\x2a\x62\x5b\xe0\xf5\xfe\x58\x03\x59\xaa\x7d\xe5\xf8\xe0\xd7\xdf\x0e\x94\x56\x00\xd7\x52\x10\x40\xb0\xe5\x35\xea\x1e\x70\x61\xc3\x92\x1c\x8f\xbd\xca\xe8\x77\xc6\xca\x31\xf4\x8f\x49\xb2\x04\x3f\x74\x45\xc5\xaf\x9f\xd5\x4e\xf3\x5d\xbb\xda\xab\x61\xd4\x6b\x29\xe3\x10\x14\xbf\xf9\x73\xad\xc1\x3e\x3f\xad\xf1\x17\x3d\x6d\x16\x73\x2a\xf0\xfa\x35\x75\xe7\x82\x99\xbd\x6d\x33\x1a\x59\xf2\x55\x55\x42\x07\xe7\x03\x0d\xbc\x96\x48\x69\x90\xe4\x36\x9a\x6c\x3d\xff\xbc\xf7\xa6\x9f\x9b\xc3\xf8\xef\x7c\x82\x62\x4a\x84\xc7\xcc\x75\x47\x20\x79\xd5\x33\x8b\x6d\x5a\xc6\x82\xae\x47\x88\xb0\xfc\xc6\xd8\xe7\x9d\x37\xf4\xf9\xb6\x6a\x42\xc9\xeb\xd1\x3b\x41\x37\x91\x3f\xab\x1a\x4f\xd7\xa4\x0f\xab\xf2\x0f\xaa\x86\x58\x20\x87\xc6\xfe\xe1\x27\x08\x7d\x86\x43\x81\x69\x0a\xe8\x25\x70\x57\x15\xd1\xfc\x4f\x68\x11\x60\xba\xc0\x44\x04\x47\xca\x36\x64\x0f\x0c\x0d\xa2\xb3\x0d\xc3\xb3\x53\xa9\x17\xbc\xaf\x7c\x2e\x86\x26\xcf\x45\xb8\x1b\x39\xe0\x71\x9c\x1c\x7c\xd1\xa0\x7b\x3c\x4a\x6d\x6e\x0e\x50\x25\x5b\xb6\x04\x4f\x83\xbc\x10\x3c\xa7\x22\xa9\x21\x51\xc0\x01\x8d\x05\x0b\x06\xe7\xce\x8e\x75\x5f\x07\xe1\x56\x39\xb2\x8d\x6b\x4a\x46\xa5\x9b\x26\x59\x86\x82\x17\x96\xe8\x4e\x06\x51\xa0\xae\x71\x05\xd3\x5c\xca\x6f\x9e\xf0\xc9\x9b\xa6\xb0\x25\x7d\x15\x66\x29\x8c\x4d\xdc\x0d\x4d\xf4\x58\x39\x78\xb8\xdf\x5b\xbc\x91\x3b\x0e\x9a\x07\xe8\x6f\x23\xf0\x1e\xea\x6b\x47\x34\x56\xf3\x1c\xd6\x94\x93\x2e\x28\x97\x9e\xca\x9f\x5f\x76\x20\xd9\x96\x93\x99\x7b\xb8\xa3\xf4\xe7\x38\x1e\x44\xed\xf9\xb6\xf2\xbb\x7b\x72\xdd\x67\xae\xa7\x95\xc5\x65\xab\xa3\xe4\xc0\x2d\xb7\xd1\x38\x80\x52\x9e\xe4\x1f\x35\x20\x5a\x5e\x25\x67\x8d\x34\x37\xe0\xda\xb8\x36\xce\xb6\x75\x25\x24\xb9\x4d\xa9\x1e\x65\x49\x11\xf7\x98\x36\x8d\x8a\xf8\xf7\x30\x9e\x7c\x51\xeb\x45\xcf\x4f\xb7\xbb\x49\x9c\xa7\xe1\x22\xb9\x99\x3a\x53\x34\xd6\x64\xe6\x8b\x40\x7b\x69\x10\xf3\xb2\x3c\xfe\xb3\x32\x38\xdf\x3c\xab\xe9\x06\x27\xd4\x5a\xb8\x15\xf8\xa2\x49\x52\xe4\x4b\xa1\x8d\x7a\x36\xe5\x78\xca\xa9\xc8\x79\x46\x03\xe4\xd7\xea\x16\x72\xdd\x24\xcf\x93\x78\xa7\x2a\xe6\x5f\x51\x92\x7e\x3f\x08\x7c\xb7\xe0\x4a\xb5\x72\x44\xef\x09\x6b\xf4\xf6\x58\x75\xb6\xc0\x2f\xe0\xff\x70\x72\xd3\xdd\xc8\x9a\x98\x62\x74\xa4\x79\x60\x43\x83\x7e\x34\x49\xeb\x0f\xed\xb9\x6d\xeb\xcf\xea\xa2\xb8\x4d\x57\xc4\x9e\xa0\x7c\x2e\x25\x5c\xb4\xe0\xf8\xa7\x7e\x1b\x49\x8a\xfc\xc9\x96\x72\x08\xa0\xa1\x73\x60\xd5\xf2\x0f\x60\x27\xf8\x8c\xe6\x8f\x58\x56\xab\x02\xc5\x41\x54\x3e\x44\x3f\xdc\xa3\x41\x1f\x02\x84\x19\xa9\xd8\x1d\x7c\xbf\xeb\xa4\x39\xfa\xf1\x23\x1d\x85\x67\x46\x2a\x8e\x2f\x61\x2c\x0c\xd6\xe0\x0f\xc6\x2a\x7f\xba\x42\xa7\x37\x76\xb1\xff\x84\xdd\xa5\xa2\x92\xcc\xfe\xb2\x35\x29\xc3\x7d\xd3\x33\xed\xd7\x8b\x34\xcc\x46\x69\xd1\xb3\x24\x46\xe4\xa2\xc5\xdf\xd4\x67\xe4\x6f\x36\xb5\x8f\x87\xa6\x1f\xdb\x9c\xf5\xb8\x9b\x8a\x65\x12\xec\x87\xae\x7d\xe5\x24\x1b\xca\x3f\x2d\x6c\x4c\x2f\x2b\xf4\x7a\x31\x1c\x4d\x79\x80\xe1\x89\xc0\x1b\x81\x00\xf8\x85\x07\xd9\x54\x82\x47\x97\x89\xf1\x22\xb6\x23\x6a\xdb\xb5\x69\xdf\xa6\x3b\xfd\x49\xcb\x73\x0d\x0b\xf9\x9a\x12\xb5\x87\x1f\x27\xda\xb4\x98\x50\xd8\x13\x3e\x18\x7b\x3e\xf0\x2d\xcc\x4d\xfe\x21\x85\xed\xeb\xa5\x61\xbc\xdc\xaa\x39\x46\x8a\x27\x5d\x93\xcc\x7f\x6c\x0f\xe4\x4a\xb8\xed\x8b\xb1\xcf\x8f\xce\x8c\xfd\xd1\x74\xad\x82\x5d\x58\x8c\xd6\x9e\x6a\x39\xc0\xf8\x8f\x11\x57\x61\x5a\x20\x9c\x46\x26\xf6\x28\x04\x57\x9d\x97\x95\x37\x33\xbf\x17\x28\x15\x94\x9d\xeb\x4a\xbe\x75\xa2\xa3\xec\xb6\xcf\xa3\xec\xe6\xc4\x16\x5f\xda\xef\x39\xdf\xe5\xa4\x96\xbc\x8a\x26\x1f\x03\xa7\xd1\x64\xc7\xee\xf5\x91\xe2\x05\x3d\x4e\x12\x30\x4e\x51\xc8\xaf\x36\xd6\x0d\x77\x11\xe6\xfc\x34\xaf\xe1\x1f\xa9\x5e\xcc\x7f\x93\x25\x13\x9e\x2b\x73\x46\xf9\x4e\x9c\x56\x1c\xcd\x7f\xe7\x9a\xb0\x59\x94\xf4\x8d\x38\x90\x38\x84\xc7\xbc\x17\xec\x56\xc1\xf9\xc8\x76\x8b\x88\x44\x5c\x9d\x59\x24\x40\x39\x2c\xdb\x1b\xf8\xea\x19\x2c\xd9\xf9\x67\x6a\x38\x96\x17\xda\x66\xc5\xa6\xa6\x2f\x5b\x7f\xa5\xad\x28\x12\x47\x9e\xbf\xbf\x6c\x72\x0b\xde\x12\xaa\x71\xa2\x93\xee\x98\x52\x9e\xd2\x7b\x45\xd1\x33\x47\x26\x0f\xcb\xbd\xfc\xc1\x72\x39\xc8\x44\x55\xb0\x90\x73\x81\x26\x97\xeb\x79\x7e\x57\xa9\xd0\x41\x21\x04\x2b\x68\x0a\xd8\x47\xc4\xa3\x70\x16\x75\x9c\x07\x9f\xdd\xfc\x56\x93\xc3\xc2\x28\xf2\x3d\x7d\x71\xf8\x28\xff\xb0\xf8\x86\xf8\xa7\xcd\x93\x55\xf2\xe2\x7a\xd9\x63\x37\xdd\xcd\x40\x94\x0a\xdd\x52\x9e\x0e\x28\xf2\xfd\xb8\x01\x17\xbc\xd0\xb6\x07\x46\xa9\xcd\x32\x61\xfa\x8a\xb0\x87\x8a\xf6\x2e\x55\xab\x75\x0d\xdb\x55\x2f\xcc\x88\xe5\xda\xf2\x64\x9a\xdf\xa3\xe1\xe1\xcf\xb5\x40\x6c\xcf\x2b\x0b\xed\xd5\xc4\x56\xb6\xae\xe3\x15\x8d\x43\xbd\x42\xad\x59\x7e\xa8\xfc\x3f\xe1\xba\xd0\xbd\x89\x28\xb4\x72\xb9\xfb\xa7\x0a\x98\x7e\x14\xa3\x8d\xff\x38\x3a\xf6\x9c\x96\x3f\x54\xaa\x72\x37\x51\x64\xe6\x1f\x0a\xaa\xd2\xf9\x6e\xe5\x9f\xd1\xb2\xb1\x39\x3b\x59\xcf\xce\x72\x86\x76\x56\xb1\x1e\xce\xaa\x0d\x77\x64\x8d\xc0\xa7\x10\xa8\x30\xe6\x8a\x2f\xb6\xea\x83\xfe\x42\xfb\x57\x66\x28\x00\xc1\x90\x1d\x51\x5e\xe0\x47\x94\xc8\xff\x62\x6a\x57\x59\x3d\x0b\x2d\xf8\x6f\x6b\xf9\xc5\x6f\x37\x6a\xd3\x87\x19\x15\xbc\x70\x2f\xce\x2e\xb5\xfc\x2d\xbe\xa8\x35\x96\xe6\xa7\xdb\x45\xdc\x2d\x23\xaf\x30\x56\xec\xeb\xe3\x8a\x7d\x7d\xbc\x62\x6f\x42\x9e\x28\x4e\x0a\xa6\x85\xe6\x11\x02\x46\x08\x46\x23\x6b\xf9\xb2\x96\x1c\xd1\x37\x65\x5d\x93\x0f\x38\x0f\x41\xd7\x94\x1d\xf5\xf8\xc2\x9d\x76\x65\xfc\xb8\x43\x91\xbc\xb8\x78\x58\x37\x8d\x7f\xa4\xa3\xc2\xe8\xd3\x28\xcc\xbb\x8b\x72\xc2\xa0\xd8\x57\xf7\x28\x9a\x9d\x65\xe9\x4c\x1e\x2e\xc0\xe5\x2e\x62\x90\xf9\x42\xf5\x8f\x87\x26\xce\x40\x9d\xdb\x2d\xec\xc5\xab\xd8\xc0\xf9\x22\xf0\x54\xa0\xee\x20\x89\x6c\x96\xdb\x34\x89\x26\x7d\x29\x97\x89\x32\x22\x90\x44\xbb\x0d\xd6\x20\x0b\xb8\xf1\x85\x8a\x08\x97\x92\x2c\x07\x11\xf4\x55\xbd\x31\x2d\x38\x09\x0c\x45\x87\x0e\xa3\xb0\x9b\xb0\x21\x94\x08\x25\x29\xb0\xc9\xe9\xf1\xd7\xea\x35\xb4\xdc\x46\xb6\x9b\x0c\x87\x45\xcc\x0c\x06\x5e\xa6\x38\x3c\x01\x33\xe2\xcf\xb5\xf9\xb6\x7f\x4f\x7b\x50\x66\xbb\x31\xc3\x2a\x70\xf4\x6d\x60\x07\xe1\x8b\x06\x64\xeb\xab\x2c\x1d\xdd\x52\xb5\xdb\xf3\x81\x2f\xea\x96\x09\xb2\x3c\xd3\xf3\x2b\xf6\x91\x72\xfc\x50\x1e\x44\xd9\x0e\x9b\x35\xf7\xa5\x10\xf7\xdd\x0e\x6a\x22\x86\x58\x4e\x5c\x88\x40\x27\x6e\x23\xf0\xee\xd5\x27\x28\x72\x51\x65\x6f\x29\x91\xfd\x21\xed\x2b\xae\x36\xbe\x4b\x60\x82\xac\x7f\x2e\x68\x6e\x09\xa5\xf3\x41\xd8\x5d\x6e\x29\x68\x70\xa0\xca\xcb\xfe\xa7\xec\x70\x94\xd0\x86\xc9\x66\xf4\x78\xdd\xe2\x4c\xff\x88\xda\xff\x9e\x7f\xa4\x1c\x09\x7c\x3f\x82\x20\xac\xf6\x6d\x9d\x32\x88\x70\x52\x9b\xbb\x66\x9c\x4e\x3d\x3d\x21\x62\x08\x86\xf2\x23\xd8\x92\x53\xd1\x11\xef\xca\x1d\x4f\xd8\x1b\x2d\x27\xc9\xd7\x02\x27\x4c\x3a\x84\xde\x21\x03\x82\xc7\x7c\x50\x5e\xad\xc5\x60\x7b\x5f\x69\x67\xdd\xd4\x00\x0f\xd2\x44\xe7\x6a\x02\xb2\x0d\xec\x52\x0e\x36\xa9\xcc\xfb\x96\xd3\x1b\x3a\x57\xa3\xd7\xef\x9b\x7e\x99\x8e\x9b\x70\x14\x85\x31\x17\x70\x91\xbf\x7e\xae\x04\x2d\x00\xfa\x13\x3f\xaa\x86\xa2\x7b\x1a\xe6\x6f\x40\xc9\x11\xc7\xc5\x45\x15\x97\xfc\x99\xee\xae\x9c\x6b\x2a\x8c\xa7\x45\xc4\x5f\x8d\xdb\x04\xb5\x11\x55\x00\x74\xfe\x30\xc0\xff\xa4\x76\x58\xce\x4f\xb7\x4d\x5c\xee\x76\x43\xf4\x76\x30\xbd\x59\x98\x03\x27\xec\x19\x25\x6f\x78\x6a\x5c\x91\x82\x4f\x17\x01\x51\xd4\xe0\x48\x69\xf9\x79\xe8\xf8\x1d\xd7\x33\x10\xf1\x89\x8a\xd5\xee\x86\xca\xff\xd8\x10\xc1\xa5\x8c\xe5\xea\x53\xd5\x00\x99\x43\x4c\x02\x07\x29\xe5\x20\x36\x43\x6c\x70\x27\x15\x8c\xe0\x8d\x24\x89\x92\xfe\x5a\x4b\x91\x0b\x8f\xe3\xef\xf3\x45\x2d\xe6\x21\x43\xad\x24\xb6\xe9\xa4\x97\x46\xe0\xc3\x03\xf5\xd2\xc3\x15\xf4\x02\x2d\x68\x81\xa2\x3f\xad\xd2\xd0\x7e\x19\x72\x86\x02\x3c\x74\x00\xce\xf2\x36\xf9\x42\x9d\x56\x8b\x49\xe8\x9c\x5a\x9c\x15\x8d\xdf\xde\x8f\x57\x92\x83\xdc\x0e\x1f\xf3\xd1\xe7\x03\x1d\x25\x81\x79\x8b\x56\x9c\x73\xe8\xd9\xed\xa5\xd6\x2a\x6b\x8c\x08\x1f\x42\x53\xa1\xb7\x87\xd0\x10\x8c\x51\x24\xac\x57\x03\xc5\x03\xdb\xa8\x40\x7d\x00\xd6\x93\xb4\xcf\xb3\x69\xcf\x8c\x7d\x8f\x89\x35\xc9\xa4\x60\xed\x8b\x46\x8b\x96\x42\x68\x89\xb3\x70\x08\x7f\xa8\x0e\xe4\x0f\x83\x8a\x57\x7d\x68\xb9\x20\x8a\xf2\xd0\x8f\x71\x0a\xf3\xc5\x7d\x3b\x95\x59\x9e\x74\x97\x27\x7c\x87\x98\x75\xac\x05\xa7\x5d\xee\x05\xc8\x34\x8e\x68\xf8\xa7\x49\x1f\x56\xdc\xd1\xb7\x94\x38\xed\xef\x8c\x3d\xd2\xf2\xdd\x40\x7b\xed\xe1\xac\x94\xc1\x50\x80\xf3\x4b\x81\x97\x96\xb8\x4c\xa3\x84\xcf\xdb\x3b\x9a\x29\x09\x39\x07\x91\x3c\xd3\xf6\x75\x63\x5f\xab\xc9\x6d\x9c\x9b\x1c\xe2\x1d\x4a\x74\x95\x71\x12\x7c\x11\x54\x04\x5e\x42\xb2\x98\x54\x66\x91\xc7\xe9\x76\xf8\x73\x93\x72\x00\x49\x07\x62\xa1\x70\xff\x2d\xf0\xbe\x93\xc7\x2a\x8b\x3e\x49\xe2\x87\xfd\x4e\xf1\xfd\x40\xa1\x74\x61\x7b\x23\x38\x30\x9a\xfb\x38\x18\xb8\x00\x82\x8a\x5f\xab\xa3\xc1\xaa\x5b\x4c\x7b\xcb\x6f\xc5\x7c\x64\x00\x2e\xd6\x0b\xa3\x55\x5c\xbb\x76\xd7\x8c\x23\x77\x6c\x5d\xc3\x2f\xed\x87\x15\x4d\xb6\x95\xec\xe6\x10\x26\xb5\xf0\x72\xd7\x2e\x98\x91\x2f\xd9\xd4\x4e\x95\x77\x20\x1c\x8d\x4a\xf3\xaa\x7c\x4e\xcc\xf5\x13\x34\x39\x50\x3a\xd8\xa1\x6a\x51\x67\x74\x60\xbc\x36\x32\x59\x46\xc6\x17\x28\x15\x7d\x48\xc8\x12\x27\x4b\xb5\x6f\xda\xa7\x64\xb3\xb3\x4c\x3a\xda\x6c\xd2\x8e\x46\xfc\x42\x47\x98\x40\x3a\xe9\x69\x04\xec\xd9\x00\xe0\x36\x79\x1e\xe6\x45\x8f\x75\xa4\xb1\x4d\xae\xd3\x2c\x16\x4a\x71\xf9\x94\x08\x58\x8e\x35\xaa\xa9\xf6\x92\x62\x31\x9f\xa2\x57\x28\x0a\x50\x3e\x65\x79\x77\xac\x1c\xe2\x80\xc5\x90\xb6\x23\xbd\x33\xc9\x01\xf5\xc6\x95\xac\x66\x8f\x78\x2d\xf2\x63\x15\x3d\xd0\x9f\x28\xef\xa8\xc7\x3a\x54\xd6\xc0\xd9\x75\x02\xb3\x4b\x52\x54\x45\xcb\x9f\xa0\x82\x03\x7f\x5e\x57\xe7\x23\x37\x7f\xa0\xe6\xba\x89\x1b\x15\x70\x8c\x2f\x5e\xdd\xd6\xce\xcb\x7f\x51\xa3\x83\xef\x9b\x9e\x29\x0f\xf5\x6f\x16\x26\x0a\x97\x42\x69\xae\x48\x5c\x54\xfe\x19\x09\x8b\xfc\x36\x9e\x85\x49\x71\x80\xc2\x06\x9e\xf3\x81\x4a\x75\xef\xdc\xa7\x9a\x9c\x25\x51\xd8\x45\xcf\x63\xd7\x2e\xaf\xb1\xe8\xf5\x16\x35\x0a\x2c\x49\xd3\x30\xdb\xa1\xe0\x1e\xdb\xd7\x31\x8a\x7c\xd5\xf1\x71\xca\x5b\x80\x98\xe8\x76\x10\xff\xc7\x58\x01\x4c\x4e\x29\xe8\xcc\xa8\x18\x8e\x38\x46\x76\x12\xbf\xe5\x10\xf1\x85\xd2\x1b\xb4\xa6\x0c\xf7\xe3\x07\x94\x4a\x20\xe3\x67\x98\x09\x89\xd3\x4b\xcc\xec\xf5\x8b\xfe\xbd\xc0\xc3\xd6\xae\x50\xc5\x09\x6b\xe3\xe8\x58\xbd\xe7\x75\xe5\x3e\x71\x42\x7d\x6f\x1a\x76\x07\x39\x43\x44\x59\xc2\x1d\x43\xbc\x55\xcf\x7d\xb5\x3c\x4f\xcb\xbf\xe1\x5c\xfa\x5d\x82\xbd\xa1\xaa\x4e\xbf\xf8\xcb\x0b\x93\x34\x3d\x9c\xd4\xbb\x17\x96\x79\x94\xc6\x52\x88\x94\x0a\x88\x7a\xb7\x51\x7e\x2d\xcb\x9d\x1e\x51\x93\xbc\xbb\x74\xc3\x5c\xa3\x19\x22\x2d\xb2\xd7\xfb\xc9\x7f\xb3\xe2\x92\xa9\xcc\x1f\xa3\x64\x64\xb3\x09\x7f\xda\x5e\x52\x87\xf5\x59\x65\x77\xf6\xc3\xf1\xb3\x9a\x23\x43\xaa\xbe\x26\x62\x71\x14\x89\x7a\x7c\xf4\x7f\x5c\x7d\x07\xe4\xe0\x30\x03\x2a\x0a\x70\x72\x8c\x37\x6d\x13\x26\x74\xdc\x5e\xe6\xe5\x63\x07\x10\x92\xbe\x52\xa9\x2c\xca\x59\x63\x95\xa0\xdf\x29\xe5\x0f\x73\x4a\x29\xf1\x52\x03\xc4\x74\x73\x72\xaf\x60\xf9\x12\xcc\x2f\x4c\xa2\xb1\x12\xfd\xb9\x81\xd5\xce\xa5\x52\x7c\x37\x0a\xf0\x6c\x81\x84\xe7\xe4\x3c\x16\x13\xef\x4f\x02\xdf\x61\xbb\x87\x82\x0b\xb6\xd2\x9f\xd2\x16\x87\x62\xe3\x27\x0a\x04\xc6\x8b\x94\x9b\x98\xca\x3b\x76\x7e\xda\x69\x8b\xf9\x52\xd8\x92\x8d\x21\x12\xc2\x9e\xe6\x14\x89\x89\xbf\xf9\xe3\x8e\x79\x6c\x47\xc6\xd9\xfd\x38\x3e\x91\x42\x24\x6d\x3d\xa3\x66\x67\xdb\x94\x00\x87\x23\x13\x4d\x78\xe2\x12\x27\x40\x98\xc2\x97\xd5\xc8\x4c\xd6\xa8\xa9\xaf\xbd\xd6\x5e\x4a\x43\x1b\xf7\x78\x3a\xa0\x98\x76\x24\xf0\x92\x07\x47\x54\xf0\x6c\x46\x91\x8d\xf3\x35\x14\xf5\x70\xfb\x38\xa9\xc4\x33\xbd\xb5\xd5\x4b\x08\xe1\xea\xf9\x72\xe0\x5c\x73\xaa\x4c\xdb\x6d\xdc\xe3\x2e\x93\x28\xe1\xb4\xbe\xfe\x0d\x27\x9a\xe3\xfb\xbb\xd5\x2a\x78\x94\x74\x27\x95\x7c\xfa\x5d\x7a\x37\x2e\xc5\x76\x0c\xbe\x27\x3b\x9e\xc1\x70\x53\x41\x76\x07\xd6\x44\xf9\x60\xa7\x82\xe0\xa1\x5f\x81\xcf\x47\x02\xd5\x41\xe4\xc0\x0d\xdf\x83\xbc\x45\x92\x11\x4f\x0c\x39\xaf\x45\xee\xbc\xfd\x20\x7a\xb2\x49\x01\x1f\x18\xce\x54\x2a\x18\xe0\xfb\xc8\xb5\x58\x11\xa7\xc3\x3c\x3c\x42\xe3\xc0\x9f\x2b\xb8\x87\xac\x48\x4d\xdc\xb5\x8f\x2b\x2c\xf4\x71\xdc\x30\x12\xc5\x0f\x99\xe6\xcd\x0d\x02\xee\xc0\x3a\xa0\xa7\x0c\xd4\x0f\x8f\x83\x9f\xa8\x94\x40\xbc\xc5\x8a\x82\x56\x1f\x0f\x94\x02\xf1\x59\x85\xf0\xb9\x50\x11\x28\x1b\xab\xb4\xef\x7d\x9a\xb7\xe8\x03\x40\xa8\x50\x1c\xc4\x5b\x4e\x3b\xf5\x76\x2d\x35\x9f\xd9\xdb\x1e\x15\x7d\x56\xf8\x94\xb3\x42\x1f\x1c\xca\x82\x22\x8b\xc2\x91\x2a\x31\x6e\x06\x3e\xb1\xde\xd4\xc4\xbd\x30\xa6\x66\x34\x6a\x9f\x8f\x73\x69\xc1\x79\xc7\xbc\xb4\x9f\x0f\x98\x93\x4a\x83\x2a\x7c\x16\xfb\x04\x6e\x1f\x8a\xf3\xc8\xe8\xae\x53\x70\x5e\x69\x5e\x62\x6d\xc2\x43\x0d\xcf\x05\x27\x56\x20\x01\x38\x19\xc3\xf6\x73\x91\x92\xc3\xcd\x8b\x63\xef\x95\xfd\xdf\x7e\x15\x28\x25\x51\xc8\x68\xd0\x7f\xc8\x62\x6b\x58\x8e\xcb\x89\xe5\x7a\xe1\x5c\x8d\x48\x37\x59\x68\x53\x2c\x10\xbc\xeb\xbf\x18\x7b\x11\x8b\xff\xa8\x24\x9a\xb0\x50\xf9\xdf\xc7\xcf\x54\x8b\xbc\x33\x7b\xdb\xf3\xd3\xf3\x7a\x4f\x46\x91\x4a\x36\x68\xcf\xff\xc8\x06\x49\x92\x4f\x7a\x12\xe1\x31\x05\x7a\x3f\x86\xb5\xe1\x28\x58\x8a\x8f\x55\x0b\xb5\x67\x67\xdb\x11\x27\x81\xbd\xc9\x32\x8c\x77\x12\x93\xae\x47\x40\x4d\xaa\x39\xe7\x85\xe3\x13\xa9\x0d\xd5\x27\x19\x9a\x3c\x4f\x6d\x06\x11\x23\xb4\x10\xff\x06\x19\x11\xd6\xeb\x26\x22\x47\x54\x2d\x6e\x37\x30\x42\x16\xda\xe5\xc2\x8d\xfb\x9c\xeb\x63\x92\x7f\x0b\x4b\x01\x13\xe0\xb2\x06\xf2\xb0\x3c\x0f\xaa\x4e\x13\x0a\x42\xb0\x62\xb2\x7c\xaa\xa5\xa4\xd0\xe9\x9d\x60\x9f\xb8\xac\x95\x94\x2f\x68\xd4\x35\xf6\x1f\xe6\x49\x75\x94\xea\x73\x92\x76\x71\x26\x60\xcb\xfd\x0f\x1a\x59\xff\x1f\x9a\x24\x43\x56\xc3\xd4\xa1\x6b\x80\xe5\xd8\xb6\xee\xf9\x2a\xdb\x94\xbc\x86\x8d\xcd\xa4\xff\x9f\x23\x5a\xd8\xf9\x82\xca\xf6\xde\xa3\x11\x17\xe3\x6f\x0f\x4c\x4b\xd2\xd8\x10\xcc\xa0\xe5\x67\xc1\x15\x35\x0b\xae\xd4\x0a\x53\xe5\x91\x95\x64\x79\x8b\x36\x1e\x04\x7a\x57\x51\x3e\xe0\x8b\x26\xae\x78\x6a\xa3\xa4\x2b\xc8\x24\xc1\x99\x29\x05\xb0\xe0\x29\x5d\x67\x31\x69\x2f\x8c\xfb\x53\xf4\xf4\x38\x04\x3e\x54\x34\xb6\x0f\xb5\x62\x33\xab\x4f\xa1\x7d\x7c\x3b\xd0\x9a\x3d\xe7\x94\x51\x5c\x6a\x4d\x9a\x9a\xd8\xd5\x28\x18\x3c\xa4\x8a\xcc\x87\xdc\x29\x5e\x8c\xfa\xa9\x21\xa7\x03\xdf\x8f\xba\xa1\xce\x7b\x16\x97\x90\x18\xb7\xc9\x22\x3b\xb6\xc9\x68\xb0\x96\x4b\x24\xa0\xcc\x90\x16\x9c\x19\xd2\xd3\x15\x0a\x8f\x19\x41\x20\xcc\x43\x2b\x00\xbe\xe4\xcf\x0d\x0a\xd8\x7b\xda\x51\x48\x82\x14\x2d\x27\x69\x78\x94\x5e\x32\x7f\x56\x30\xa1\x7c\x90\x64\xf6\xe9\x72\x5d\x3a\x0a\x44\x39\xed\x91\x4d\x4d\x74\x28\x01\x03\x42\x10\x88\x39\x61\x66\x7b\x99\xe7\xaf\xdc\xa6\xb7\x85\xc3\xe9\x0e\xce\x09\xb6\xc9\xc2\x09\xe4\xb4\x75\xbc\x94\xf8\x3b\x81\x2a\xf4\x7d\xae\x6b\x8f\x20\x08\x08\x06\xa6\x35\xb3\x57\x3c\xae\x54\x81\x93\x41\xc4\xa2\x12\x4b\xed\x72\x77\x4c\x95\xcb\x99\xe5\x36\xc7\x9e\x9a\x38\xd9\x51\xe2\xe4\x67\x95\xfe\x68\x6e\x87\x0f\xd2\x5f\x43\xa4\x71\x9b\xbe\x5e\xf2\x21\x3f\x0b\x3f\x55\x86\xf8\xcf\x74\x54\x32\x7c\x31\x50\x48\x8f\x23\xda\x0f\xe2\xaf\xc7\x55\x2f\x66\x3f\xfe\x37\x15\xaa\x6a\x94\x26\x83\x70\x31\x74\xed\x1e\xd4\xd3\xde\xd5\x42\x14\xef\x56\xc2\x83\x25\x14\x1a\x1f\xf5\xb8\xa7\x73\xca\x65\x61\x1b\x64\xd9\xd0\xaf\x67\xed\x53\x67\xdf\xe5\x60\xbf\x27\xb5\x17\xe4\x61\xd4\xe0\xd9\x6e\x2a\x50\xf5\xc5\x13\x54\x39\x14\x73\x7d\x1a\x59\xa4\x91\xc7\x90\xbd\x49\x10\x5e\xbe\x25\xa6\xc3\xe2\xbe\xd1\xe6\xf8\xff\xf8\xfa\xb7\x20\x39\xce\xec\x4e\x0c\x07\xaa\x1b\x57\x12\x1c\x82\x97\x91\xe6\xaf\xfd\x87\x4b\xda\x09\xd3\x1b\xcb\x61\x6c\x38\xfc\xb0\xa1\x97\x2c\x03\x3d\xa4\x00\xaf\x9a\x6d\x00\x03\x68\xf9\xc4\xaf\xb3\xbe\xae\x4a\x76\x56\x66\x31\x33\xab\x1b\xcd\xb0\x23\xfc\xb8\xa1\x70\x38\x62\xb5\x4f\xf6\x7a\x1d\xab\x95\x2c\x79\xb5\xb6\x2e\xa3\x5d\xaf\x46\x23\x4d\xb6\x66\xb4\xc3\x91\x86\x1c\x91\x04\xc9\xe1\x90\x1c\x10\x77\x34\xae\x8d\x3b\xd0\xb8\x34\x1d\x79\x7e\xe7\x7c\xdf\xc9\xae\xc4\xbe\x65\x02\x5d\x55\x99\xdf\xe5\x7c\xe7\xf2\x3b\xbf\xdf\xdf\x35\xf2\xac\xcf\x66\x69\xd1\xb7\x59\x3e\xa9\x68\x4a\xef\x63\x39\x89\x10\xb8\x56\xbc\xe5\x4e\x12\x3c\xd0\xdb\x8d\x82\x27\xe9\xdc\xdc\x84\x17\xf0\x81\xfb\x8d\x1a\xe7\x6f\x11\x30\x18\xa9\xbb\xbe\x6a\x30\x99\x8b\xad\xa5\xaa\xbe\xa3\x7f\x40\x33\xaa\x68\x44\xfa\xf1\xee\x9b\xc1\x6c\x66\xc3\xbe\x14\x52\x61\x25\xef\x06\xaa\xa2\x71\xb7\x91\xf8\x7a\x34\x4c\x93\x96\x42\x28\x90\x91\x92\x9d\xe0\x43\x9f\x38\x4d\x87\xfd\x34\xb6\x68\x98\x70\xca\x0a\xfb\x7c\xaf\xb9\x6e\xed\x0e\x21\xe8\x89\xcd\x79\x0b\x8b\x8d\x6f\x9a\x18\xb7\xc2\x34\xe9\x8e\xc2\x42\xf0\x0b\x8c\xbb\xc1\x0e\x15\x10\xce\x57\x9d\xb9\x1f\x44\x49\x24\xaa\xa7\x84\x6c\x16\x20\xe4\x29\x4c\xaa\x63\xda\x74\x47\x1f\x50\x59\x4c\x0a\x52\x2a\x64\xd2\x4f\x54\x70\x57\x39\xcb\xb3\x31\xa3\xeb\xa5\x5f\x93\x9e\x5c\xd0\xf5\xca\x96\x5e\x52\xd9\xf6\x47\x0a\x23\x9d\xd9\x59\x28\x0a\x69\x8a\x83\x4b\xaa\xb0\x83\x48\x05\x21\xc6\x07\x8d\x5d\xb2\xf9\x30\xcd\x8a\x09\x15\xb1\xa3\x7f\x80\xf5\xf9\x68\x7a\x24\xaf\xed\x63\x58\x62\xc7\x95\x4a\x27\xb2\x6a\x60\x7a\xe2\x6b\xc7\xd3\x9c\x81\xd3\x27\x14\x3a\x1d\x57\x51\xab\x7e\x4f\x52\x47\xe3\xeb\xe4\x35\xea\x70\xa0\x75\x88\xb4\xd1\xf7\x02\x9f\x4f\xfa\x9e\x7a\x90\x30\x36\x79\x1e\x85\x38\x04\x84\xda\xc2\x77\x91\x5d\x09\x7e\xf9\x71\xa9\xf1\xd1\x6c\x6e\xdf\x1c\x09\xe5\x15\x9f\x8c\x41\xed\x98\x74\x08\xbc\x74\x14\x42\x53\x00\x7b\x6f\x4d\x75\x58\xac\x05\x9e\xd9\x7b\x76\x1e\x88\x57\x7c\xfe\xb7\x4b\xef\xf5\xff\x76\x03\x35\x77\x35\x36\x69\x26\x5d\xee\xf0\x6c\x4f\x69\xc4\xd0\xa9\x5a\x18\xd8\xb5\x80\x06\xc1\x35\xfc\x5c\xe5\x8f\x3e\xa3\x2c\x30\xc6\xe6\x7f\x51\xa8\xf2\x7e\xd4\xeb\x2f\x1a\x38\xd1\x38\x2c\x74\x65\xe3\x9e\x8a\x17\xec\xc0\x6e\xf7\x01\x33\x97\xe8\x45\x5c\x91\x4c\x1a\x0b\xcc\x82\xf7\x10\x01\x22\x54\x6d\xe1\x45\xec\xec\xa8\xc5\xfa\xa0\x54\x30\xf7\xab\x74\x70\x60\x33\x9e\x73\xb8\xa5\xd9\x34\x19\xe5\x72\xd4\xe3\x8c\xb8\xab\xa1\x81\x77\x03\xaf\xc8\x64\x73\x9b\x14\x2c\xe6\xf3\x9a\x66\xa9\x3f\xe8\x9a\x77\x25\x08\x4d\xa2\x5e\xbf\xa0\xea\xa3\xcf\x0b\xe8\x86\x8c\x53\x9a\x0d\xe9\xae\x66\xc7\xe8\x1b\x6a\x08\x3e\x20\x99\xe5\x6f\x93\xad\xe1\xeb\x26\x79\xc1\xc2\x24\x68\x0d\x92\x1e\xfc\xea\x17\xa5\x98\xb1\x5b\xf5\x4a\xe5\x04\x43\x98\xf0\x58\x8d\x3f\x57\x58\x8d\x3f\x28\xbd\xa4\xc5\x1f\xb8\xec\x18\xa9\xef\xcc\xc6\xce\x9b\x6d\x6a\xd2\xde\xb8\x67\xf6\x4d\xb7\xfb\x36\x1e\xe2\x87\xd8\x31\xa1\x37\x07\x88\x93\x23\x13\xec\x8a\x35\xd7\xb4\x19\x47\x83\xa8\xb0\xdd\x1d\x7a\x34\x31\x46\x38\x1c\x1e\x06\x8a\x71\x0d\xb9\x7a\x0d\xe9\x90\xd4\x05\xad\x17\x11\xa4\x50\xdd\xb4\x17\x75\x59\x08\x64\x77\x30\xdf\x5f\xed\x6c\x24\xbc\x99\x9e\x6e\xe7\x66\x69\x52\xf1\x14\xee\xe8\xd4\x6c\x7a\xf5\x1c\x2c\xf0\xae\x14\x76\x1e\x8e\x25\xfd\xf7\x4e\xb5\xcd\x70\x68\x32\xd9\xd9\xb0\xd5\x60\x1b\xe5\x6b\x35\x3f\xf3\x76\x69\x36\x25\x32\xdb\x7d\x12\xfa\x3e\x20\x87\x80\xaf\x55\xe0\xd7\x1f\x55\x9b\xd5\xf3\x91\x1f\x57\xe9\xca\xe3\xe3\x82\xd9\x07\x66\xbe\xde\xee\x5b\xd3\x7d\x73\x44\xa6\x92\x9d\x68\x2d\x5e\x29\x9e\x85\x8a\xdb\xe3\x62\x27\x8d\x00\x8b\x0b\x68\xe2\xcd\xe3\x94\x5c\x80\x59\x7e\x47\x71\xd0\xdc\x86\x67\x82\x29\x9f\xec\xf8\xda\xe3\x3b\x1a\x67\x75\x87\x93\x23\x35\xce\x2d\x04\x88\x38\x22\x84\x7c\x7d\xa3\x9d\x3a\xb0\xa7\x1d\x0d\x86\x26\xcf\xed\x63\x57\x7b\xad\x3d\xdc\x66\x48\x64\xb8\xda\x9c\xce\x3b\x7d\x4d\xb5\x0a\x0d\x33\xb3\x60\x93\x22\x8b\x42\x12\xc7\x52\x29\xe7\x55\x45\x47\xbc\x3a\x16\x19\xed\xdf\xdf\xee\xa5\x0b\x36\x4b\x52\xfe\x90\x4b\x59\xba\x34\xdc\x07\x35\x8e\x84\x9c\x8a\x80\x79\xcb\xcb\xe7\xde\xa3\xcd\x2d\xf4\xc0\x22\x2d\x97\xd8\x51\x96\xe6\x61\x64\x89\xf1\x1f\x6e\x8d\xe0\x17\x14\xb3\xc9\x71\xd7\x76\x34\x9f\xa4\x8b\x82\xc0\x61\x71\x6e\x1a\x17\x11\xea\x7e\x5e\x29\x87\x46\xbd\xfe\x6c\x9a\xf5\xd3\xb4\xab\x34\xec\xd9\x5d\xe2\x9b\x26\xc4\x53\xd8\xaf\x02\xb0\x09\xef\x63\xff\x19\x4d\x16\x5c\x8b\xe3\x08\xcb\xb1\x02\x4f\x29\x3c\x93\x4d\x8a\xfe\x28\x8f\x4c\x3e\x40\x36\x0e\x5b\xf6\x74\xa0\x20\x59\xa7\x9b\xa8\x21\xba\x36\xa7\x56\x46\xd4\x0c\xe0\xdf\xae\x29\x25\xb4\x35\x95\x15\x1d\xc6\x26\x49\x6c\x77\xbb\x07\xb9\x33\x57\xb5\x33\xfb\x0a\x08\xa4\x32\xe1\x0c\xa8\x80\xa7\xc2\x8e\xb8\xd3\xc2\xab\x7c\x3d\x44\x2f\x77\x94\xb6\xe9\xae\x31\x15\x92\x7d\xd3\x55\x7c\x90\x0f\x6d\x58\x08\x45\x31\x7c\xce\x2b\xaa\x5b\xeb\x8a\xda\xbb\x83\xb4\x6b\x63\x52\xef\xc2\x6f\x01\xc4\x07\x8b\xf5\x57\xb0\x58\x18\xc6\x3b\x08\xf3\x84\x21\xa4\x7a\x08\xc4\x26\x97\xb5\x02\xc3\xf1\x06\x6d\xce\xb6\x29\x28\x59\x2f\x0f\x24\x1a\xe5\xb5\xc2\x8a\xf7\xdc\xbc\xd8\x17\x8d\x07\xcc\xdc\x0d\x1a\x35\xbe\x7e\x2c\x19\x60\x31\xca\x92\x6a\x07\x4c\xd0\x78\xc9\x5a\xf0\x16\x81\x27\x5a\xde\xae\xa1\xeb\xa9\x6b\x46\xbd\xbe\x37\x4a\xcc\x06\xaa\x34\x6c\xaf\x2a\xe7\xe0\x9f\x7e\xf3\x9b\xb4\x00\x61\x61\xae\x05\x1e\x21\xc7\x69\x4a\x06\x41\x6b\xd1\x97\x51\x3e\x6b\xa8\xdf\xe3\x88\xcb\xa6\x5c\x09\x34\x21\xf5\x18\x7a\xc8\xcb\x0e\xc4\x39\x8b\x4d\x21\xf9\xc4\x03\xcf\x37\x8d\x4c\x1b\x59\x3a\x67\xf3\x3c\xcd\x30\x94\x1a\x9f\xc2\xd7\xc1\x73\x1b\x3b\x38\xa7\xda\xaf\xbf\xbe\xc3\xf7\xcc\xde\x0e\x54\x23\x0e\x50\xd1\x92\x8e\xa6\x11\x42\x16\xf8\x1d\xce\x95\x70\x67\x60\xe9\x47\xe5\x14\xf1\x20\x71\xa7\x27\xce\x4c\xa5\x55\x26\xfc\x36\xc7\x4a\x1d\xb4\x2c\xda\xa7\x54\x4c\xb9\xa5\xa3\xd0\x86\x0f\xe9\x09\xc4\x3d\xae\xec\x3e\x02\xf4\x3f\xa3\xca\xb9\x88\x7a\x6a\x3e\xda\xfb\x3e\xc5\xbc\xb2\x1b\x64\x87\xf2\x11\x2f\xc4\x79\x75\xb7\xc2\x22\x1d\x2f\x3d\x67\xfb\x66\x6c\x5d\x54\x1a\x1f\x50\x76\x01\xde\xed\x59\x44\xf1\x48\x2f\x4c\x76\x1c\xda\x33\x35\x03\x9a\x22\xf6\x04\x03\xef\x6e\x9d\x1e\x3b\x90\x67\x5e\x3d\xd8\x1e\xa6\x69\x66\x25\x01\xe6\x5a\x96\x15\x73\xdb\x6e\x95\xcb\xea\xda\x3c\xea\x31\xcb\x01\xd6\x16\x0a\x64\x7c\x5d\x23\xf9\x48\x47\x30\xa8\xd8\xd6\xf0\xf5\xf8\xba\x51\x01\x2d\x8e\x16\xa2\xa4\x47\xeb\xd9\x75\x6b\x56\xe3\xa3\xa0\x24\x42\xad\x30\x0e\x41\xd8\xbf\xbf\x9d\xdb\x70\x94\x59\x05\x41\xb8\xa8\xc4\x34\x2e\xaa\x2d\x40\xbd\xe3\xe9\xdc\x1c\x75\xc9\x73\x41\x28\x50\x3c\x8f\x57\x6b\xaf\x9c\x5b\x93\x85\xfd\x1d\x98\x51\x69\x79\x1b\xeb\x30\x10\xea\x53\xdf\xee\x7b\x45\x97\xa6\xd7\x34\x97\xe8\xbf\x80\x35\xe5\x42\x13\xb9\x34\xd2\x53\x52\xcd\xf5\xfa\x19\x2d\x4f\x6c\xb2\xdd\xf8\x69\x64\x89\x7f\x4e\xe9\x01\xa1\x41\xa0\x45\x8a\xd5\xbc\x65\xd9\x37\xc0\xde\xf8\x45\x02\x1e\xe0\x6d\x40\x4e\xae\xd5\xeb\x28\x12\xf8\xee\xd7\x3a\x7e\x8f\xdc\x47\xe2\x18\xb0\xac\x2f\xe1\x81\x08\x52\xa1\x0a\x60\xe0\xa8\x7c\xae\x00\x2a\x9f\x7f\x15\x78\x06\xa4\x4d\xa0\x1c\x8d\x55\x06\x92\x2a\x27\xba\x7c\x40\x28\x69\x1f\x61\xef\xd1\x4b\xfc\xee\xd3\xcb\x1b\xfd\xf6\xd7\x5f\x6f\x9b\x51\xc2\x58\x56\x80\xda\x4e\x6a\x2d\x91\x93\x63\xac\xb2\xfb\xf7\x1f\x00\x22\xc6\xe6\xd2\x8f\x29\x6d\x37\xf4\x02\x32\xa6\x7e\x30\x07\x11\xb5\x9f\xf9\xde\x75\x87\x39\x3c\xa1\xdb\xbe\xef\x8c\x2d\x4f\xe2\xa6\x24\xd9\xd7\x96\xaa\x11\x02\xc4\x2e\x2a\x52\x5f\x51\x72\x4a\x59\x34\x6f\x27\x7d\xc4\xc2\x24\x3b\x8e\x62\xce\xe3\xed\x2e\xa8\x25\x7a\xb5\x61\x57\xb4\xe7\x4c\x56\xf4\x6d\x36\xa9\x48\xe6\xde\xa6\x41\x05\x3d\xde\x35\x9c\x89\x48\x49\x9d\x28\x7d\x2f\xc0\x07\x4d\x00\xaa\x22\x1b\x71\x2b\xbd\x88\x10\xa9\x0e\xe8\x4b\xea\x04\xe4\xd0\xdd\xc4\x08\x9a\x1d\xe3\x8e\x27\x62\x1a\x9b\x0d\x4a\x20\x25\x5d\x9b\xe5\x45\x9a\x76\x27\x3c\xfc\x84\xdb\xac\x9d\x58\xd5\xf4\x34\x9b\xd5\x2f\x5c\xc8\x49\x4d\x4b\x0c\x9a\x60\x06\x5d\x5d\xad\xbd\xaf\x5a\x65\xba\x76\x68\xb2\xa2\xda\xe7\x0a\x69\x79\x5f\x8b\xe6\xdd\x77\xa2\xad\x45\x34\x44\xc6\x8e\xe5\x00\x03\x4d\x12\x4a\x63\xe5\x08\x43\xf7\x4e\x39\xcd\xc0\x27\xdc\x72\xd9\xf7\xf2\x84\xb7\xc3\xb0\xe2\xa2\x1b\xa7\x0e\xd7\x0b\x63\x04\xa1\xfb\xa6\xdb\xd9\x12\x33\x2b\x37\x31\x3f\x36\x54\x19\xa3\x64\x14\xc1\x39\x47\x9c\xcf\x22\x96\x7c\x33\xe6\x68\x4f\x4f\xcf\xb4\x87\xa3\x2c\x1f\x71\x9c\xbe\x7e\x86\xde\x6d\x5d\xb3\x7a\xce\xda\xbe\x59\x88\xd2\x6c\xa2\xf5\xf2\x11\xde\x0b\x00\x64\x08\xa7\x74\xf5\x6e\x38\x55\xdf\x2f\x77\xba\xa9\x0f\x9e\x25\xdb\x26\x8e\xb2\x2f\x35\x6e\x03\x43\x2c\x72\xe6\x77\x08\x17\x23\x47\x78\x4d\x12\xcc\xd7\xa6\xce\x60\xc7\x8b\xce\x78\x65\x22\xb0\x38\x5b\x1d\xdd\x82\xfb\x03\x18\x1f\x17\x57\x79\x44\xe0\x24\xf5\x39\xe3\xcc\xb8\xcd\xec\x4f\xc2\x04\xe9\x0b\x86\x0f\x02\x95\x13\x79\x88\x33\x03\xae\xd2\xd3\xcb\x9e\x65\xe5\x11\x6a\xc6\x2c\x81\x1d\x28\xee\xd4\x2f\x34\x86\xc5\x0c\x06\x4b\xbc\xb6\x5c\x92\xa5\xfa\x53\xbe\x51\xc8\xcf\xbc\x30\x83\x21\x82\x4e\xfc\x02\xcb\x8d\xf3\x8d\x4a\xc8\x0e\xd3\xbc\x18\x65\x51\xd2\x03\x93\x3a\x5a\xeb\x7e\x4c\xbb\xb8\xd6\x6b\xc1\xff\x41\x26\x41\xd6\xca\x46\x33\xf9\xab\xed\xb9\xc8\x66\x00\x61\x63\xc8\x1f\xa8\xf3\x67\xa5\xac\x81\x1c\xc6\xd9\x72\x0f\x54\x17\xf3\xb4\xac\xa5\x35\xcc\xe3\xdd\x90\x5d\x94\x0c\x8c\x4e\x70\xf5\x22\xd8\x57\x91\xcf\xf7\x51\xe4\x79\x85\xce\xca\x46\x79\xb1\xa4\xd1\x27\xd7\x31\x33\x7c\xa3\xb8\xdb\x62\xb3\x05\x2b\x00\x5f\xf2\x45\xa9\x60\xe1\x17\xe8\x29\x70\x6c\xb2\xbc\x05\xca\x16\xb7\x68\xcd\xf1\x7f\x04\xcf\x8f\x15\x89\xab\x2f\x04\x12\x04\x7f\xf3\x85\xe2\x3e\x38\xaf\x48\x58\x36\x53\xbf\xbd\x40\xa0\x74\xcf\xf0\x82\xcd\x0a\xcc\x11\x6b\xab\x63\x35\x8b\xd0\x7a\xf5\x31\xa0\xc7\x2e\x53\xd3\x03\x5f\x7b\x99\x06\x22\x35\xac\xf3\x18\xd6\x28\x0e\x1b\x90\xdc\x61\x66\xcd\x00\x79\x40\x14\xe8\x37\xa9\xb6\xfd\x4d\xcb\x35\x05\xd1\xc1\x90\xa6\x1d\xd1\x37\xfe\x0e\x23\xf3\x10\x9b\x06\x29\xc7\x1f\x3b\x16\x5a\x52\x36\x48\x33\xa7\xb9\x88\x26\xad\x0f\x4b\xd5\xb1\xf5\xa1\x7a\xff\x2e\xad\xd1\x5d\xe4\x9b\xb0\x46\xb2\x72\x1e\x41\x3c\x0d\xd8\xac\x88\x82\xc0\x1a\xfe\x6e\xe9\xf9\x2a\xce\x2b\xa6\xae\x4f\x14\x07\x17\x6b\xf7\x60\xf7\x6d\x22\x6e\x7d\x94\x75\x2e\xeb\xf8\xfd\x27\x9a\x5d\xeb\x1c\xc2\x33\xc7\x70\xb9\x4f\x08\x01\x2f\xa9\xaa\xc8\xac\xa9\x0e\x0e\x46\xee\x00\x10\xf3\xa5\x06\xfb\x32\x00\x59\xf4\xa5\x14\x7d\x4e\x96\x2e\xd8\x9c\x3c\x40\x69\x9a\xd0\xcd\x14\x4d\xac\x54\xfd\xcc\x9a\xc2\xf5\xe8\xc0\x2a\xad\x69\xcc\xd7\x9a\xfe\xfe\x34\x8e\x0a\x36\x24\x1c\x6a\x07\xaa\x66\x77\x65\x0c\xcd\xc9\x5a\x16\x95\x3f\x33\x4c\xa3\xa4\x98\x50\x90\xf2\xf5\x5a\x4a\xb5\xf4\x07\xd1\xb6\xce\x57\x5c\x63\xcc\xd1\x22\x72\x72\x8f\xac\x47\xa1\x9a\x2d\x37\xd4\xef\x86\x69\x6e\x62\x48\x8a\x30\x39\x2e\x8c\x97\x63\xca\xdd\xbf\x5f\x38\x01\xc9\x3f\x15\x5e\x00\xdf\xb1\xa5\xc5\x66\xa3\xc1\xd0\x76\x91\x84\x72\x31\x97\x67\x69\x29\x77\x48\xbe\x38\x9f\x54\x08\xeb\x7f\xae\xd5\x10\x4b\x1f\x96\x9f\xd3\x89\xe0\x35\xc5\x22\x40\xbe\x5e\x36\x1a\xa2\x38\xf4\x18\xfa\xac\xe7\x34\x03\x27\xd8\x1f\x84\xa2\x5a\x38\xea\x3c\xb0\xee\xb3\x52\x17\xcc\xbd\x21\x9b\x4d\x47\x8c\x20\x80\xa7\x78\x32\xf0\x95\xcb\x93\xea\x27\xc2\x34\xc9\x47\x83\x61\x11\xa5\xc9\xa4\x6f\x2d\x5e\x0d\x14\xd1\xe5\xe5\x5a\x3a\x4e\xc1\xf2\xbd\xd9\xe8\x66\x66\x91\xd5\x03\x31\x1a\xdc\x00\x8d\x06\xd6\x87\x34\xe6\x58\xda\x67\xc7\x5c\x0d\x64\x86\x5a\xbe\xce\xfc\x85\x66\xf2\xfb\x42\xa5\xd1\x07\xa4\xba\xbf\x8b\xac\x1b\x9c\xf6\xcd\x1d\x1f\x7e\x26\x57\x75\xeb\xd6\x99\x1a\xd7\x11\x37\x60\xe8\x9c\x13\x0c\xec\xf9\x52\x11\x63\x7d\x41\xcf\x29\x6c\xb8\xda\x0b\x50\x25\xe9\x75\x5a\x4c\x4c\xab\xa5\x9b\x50\x7f\x57\x31\xe3\x6c\x5e\x6e\x48\x8b\x84\xe9\x60\x68\x0b\x37\x97\x08\x09\xb0\xcc\x24\xf6\xf4\xc0\xe2\xdb\xaa\x0a\xb5\xd8\x4f\xed\x82\xe5\x7c\x24\x22\x91\x2d\xcb\x0a\x5e\xbc\xa5\xe3\x03\xc3\xdc\x14\xa3\xac\x6b\x18\x4f\xc8\x94\x0e\xf4\x1b\xe2\x95\xf9\x83\xef\x76\x5d\x16\xf8\x71\x09\x21\x7b\x34\xb4\xd9\xb0\x60\xf4\x05\x9a\x9d\xef\x29\xe4\x13\x27\x21\x10\x32\x9e\xac\x83\xd1\x67\x2d\x0e\x53\xe6\x93\xd6\x14\xc6\x1a\x72\x6c\xf2\x1c\xa2\x8e\x53\x87\xd8\x0a\x6f\xee\xa8\x76\xf8\xcb\x34\x31\xc8\xdb\xdf\x6e\x90\xe0\x9c\x6a\x9b\xa4\x97\x2d\x4d\xd4\xdd\x55\x47\x8f\xfb\x50\x21\x48\xc7\xe1\x60\x2f\xb6\xf3\xc2\x0e\x87\x02\xaf\x65\xdc\x6f\xa9\xd4\x40\xaf\x07\x4f\xaa\xce\x9a\x82\x38\xd6\x44\x58\x0e\xab\x0c\x16\xf1\x82\xe2\x33\xbe\xa8\x8b\xad\x17\x1a\xf2\x4a\x07\x69\x3d\x44\x4e\x8d\x00\xc6\xe2\x23\x75\xc8\x7f\x54\x3e\xeb\xca\x9c\x73\x69\x36\x18\xc5\x5e\x90\x56\x20\xc6\xba\xcb\x4a\x31\x51\x2d\xf6\x6d\xf2\x55\x2f\xd0\xb2\x15\x6d\x7d\x42\x9e\xd8\xfa\xd6\xaf\xb9\x8c\xb2\x9a\x90\xd5\x52\x6f\xa6\x60\xf3\xd7\xfd\x6b\xb9\xfe\xda\xb3\x54\x26\x60\xda\x6d\xd5\xb6\xb1\x69\xb9\xe5\x2a\x77\xbb\x50\xad\x43\xca\x7f\x07\x08\x36\x90\xe1\xfa\xbf\x81\x4c\x41\x02\xf5\x4b\x9d\x14\x7b\x1f\x7e\xb6\xe8\xb4\x57\xeb\x40\x18\xb2\x15\xf1\xc7\xfb\x81\x87\x89\xac\x05\x8a\xd9\xf4\xb8\xae\x2a\x1d\x25\x67\x1e\x60\xb0\x16\x23\xf7\x45\x2e\x42\x33\x26\xda\xa1\x08\x03\xc1\xd5\xbe\xa6\xfd\x76\x54\x74\xa4\x14\x43\xc3\xc7\x7f\x15\xf8\x12\x68\xb8\x14\xc6\xe4\x13\x57\xcf\x0e\x6f\xe4\x0e\x4e\x53\xbe\x51\xca\xa4\xe0\xa1\x10\xe6\x85\xdd\x5a\xcf\xd4\x54\x67\xcf\x56\xef\x33\xb1\x5e\x9d\x13\x86\xf3\x72\x2e\x41\x8d\x7e\x8d\x7e\x89\xff\x2a\x50\xca\x33\xc7\x1d\x61\xf2\x6c\x66\x2d\x91\xcf\x60\x14\x84\xb8\x49\xcd\xcf\x05\xad\x23\xfd\xde\x58\x76\xed\xf0\x9e\x99\x76\x6e\xe3\x58\xc0\x0c\x30\xca\x9c\xc8\xe2\x9b\x26\x72\x1d\x0a\xa3\x07\x51\x22\xeb\x15\x07\xf1\x9d\x40\x51\xba\xdc\xd1\x5c\x37\x26\x09\x2d\x64\x01\xd6\x89\xba\xe0\xe0\xfa\xb5\xb1\xf0\x9c\x70\xf0\x79\x9e\x86\x51\xb5\x0f\x34\x33\x13\x1c\x1f\xd8\x31\x46\x29\x49\x49\x78\x97\x8a\x8b\xe6\x38\xa0\x15\x60\xa8\x6f\x28\x1a\xaf\x03\xed\x9b\x6e\x9b\xe1\x30\x36\xa3\x2e\xf2\x2d\xa2\xa7\xec\x03\x9b\x4f\x91\x04\xc1\x7f\xdc\x0e\x9e\x73\x2f\x63\x93\xb9\x34\x0b\x89\x2a\x68\xb2\xce\x9c\xe1\x79\x50\x15\x01\xe0\x99\xa0\xd6\xc6\xa1\xea\x2c\xdd\x11\xda\xb0\x0d\xfa\xc6\x91\x44\x3a\xab\x33\x4a\x67\xb1\x20\x98\xe9\x04\x4b\x4f\x68\x4f\xfc\x32\x8d\xad\xa9\x16\x01\x34\xbf\x5c\xcb\x41\x35\x7c\x88\xb2\x00\xc3\x80\xa9\xbd\x46\xb0\x22\xa6\x7c\x0a\x54\x46\xe9\x1e\xb9\xc8\xc2\x05\xe5\x81\xc1\xac\x52\x85\x93\xfe\x4c\xcd\x3d\x8d\x42\x9b\x3f\xeb\xf9\x4f\xff\x53\xa9\x1a\x9d\x1f\xa0\xc9\x08\x1f\x63\xd0\x27\x0a\x3d\x57\x4a\x2f\x63\x7a\x8b\x9e\x06\x1f\x3f\xab\x18\xe2\x3f\xa8\x29\xd3\x5d\xd4\x07\x3a\xa6\x5f\x20\x5c\x2a\xbd\x7e\xb9\x54\xd5\x20\x1c\xf5\x60\x22\x65\xb2\x15\x64\x05\x96\x55\x19\x9c\xdb\xca\x51\xd6\xfd\x38\xf0\x68\xe4\xdb\x98\x03\xfc\xc7\x13\x38\x8a\x61\xb3\xc7\xd9\x63\x5f\x6c\xf7\xb2\x94\x9d\xa3\xf5\x7b\x81\xa7\xa6\x63\x32\x71\xa1\xbf\x6b\x40\x70\x98\x3c\x1f\xb9\xb6\x0f\x6e\x2c\x0e\x74\x93\xf1\xc6\xdf\x9a\x9e\x6e\xbf\x50\x44\x2c\xaf\x81\x5f\x59\x2b\xbd\x2e\xe8\x9a\x3a\x71\xbb\x66\x30\x74\x8d\x16\xae\xa8\xe6\xc5\x79\xc7\x12\x79\x8e\x9e\x36\xdf\xa6\x2a\x2d\x93\xcb\x9e\x08\x17\x58\x3b\xc7\xdf\x5e\xcf\xa0\xae\x9f\xf0\xe1\xcf\x22\xf2\xb9\x52\xf6\xf7\xc9\xcd\x57\xbf\x75\x70\x52\x1d\x9b\x3f\xd7\x3d\x17\xb0\x83\x58\xf6\x60\xff\xc6\xbf\x7f\xaa\x55\x60\xa2\x62\x0e\xba\x1e\xd5\x1a\x90\x38\x97\x5e\x51\x05\xba\x82\xea\x4a\x07\x13\xde\x7d\xff\x1d\x75\x98\x71\xa6\x1b\xab\xe3\x7e\x5d\x8f\x2a\x7c\x69\x87\xea\xa9\xfe\x2f\x9e\xeb\x28\x12\xa3\x5b\x14\x39\x22\x84\x45\x38\xe0\x84\x3a\x1d\xd9\xf4\x77\xd0\x48\x81\x85\xbb\x1d\xa5\x14\x96\x8a\x0a\xbc\x76\x3d\x27\xde\xe1\x8a\x7e\xa9\x00\x05\xb1\x5d\xec\x26\x96\xb1\x4b\x12\xc5\x78\xb8\xe9\x8a\xa3\xf5\x1a\x58\xc3\xed\x27\x4e\xe7\xcd\x21\x2a\x4e\x29\x8d\x88\x2a\xc0\x9e\x1d\x45\x71\xd1\x52\x87\x18\x9b\x24\xbe\x69\x54\xd1\x9e\x8b\x7a\x23\x56\x3d\xaf\x6c\x75\xf5\xf7\xeb\xd7\xd4\xe8\x16\x89\xd9\xd2\xda\xc8\x5b\x0c\x73\x73\x8b\x1e\x05\xa3\x8b\xa4\x1f\x2f\x05\x90\xe6\x08\xeb\xf1\xc6\x05\x38\x75\xa8\x3d\x30\x59\x94\x38\xee\x50\xa7\xea\x5c\x7d\x83\x4b\xd4\x4e\x3b\xad\xc4\xf7\x74\xd3\x60\x3f\x0d\x99\xb0\xda\x15\x1e\xaa\x8f\x09\x33\x73\x43\x6f\x67\x98\x26\x73\x51\x36\x60\xb7\xd7\xc9\x79\x79\xf5\x96\x55\x8d\x3a\x5f\x73\x8a\x31\xc9\xd2\xa8\xa5\x34\xee\xb9\x05\x44\x58\xba\x04\x84\x13\x25\xf6\x68\x9a\x91\x9e\x36\x99\x25\x7c\xe5\x79\x45\x1b\x74\xde\x21\x01\xe8\x38\xe1\xf0\xca\x31\x56\x57\x0f\x05\x8b\xc5\xca\xf5\x72\xaa\x89\xd3\x18\x9a\xc2\xe4\x45\x96\x0e\xfb\x51\x38\xa9\x42\x87\x0b\xaa\x3d\x13\x1b\x09\x8b\x91\x81\x8d\x22\x10\xda\x40\xf0\xc1\xad\x4a\x8a\x95\x09\x11\x0b\x5f\xeb\xf2\xc1\x7c\x24\x1a\xed\x92\x97\xa3\xb7\xd4\x94\xd3\x68\x6a\xb9\xa5\xa8\x9c\x08\xf4\x44\x6f\x29\x8d\x4a\xf4\xd8\x22\x3c\xbd\x5b\xb1\x85\xa7\xbd\xcc\xe6\xf9\x0e\xda\x7c\x8e\x8d\xd6\xc1\x71\x7f\x82\x93\x86\x21\x43\xe4\x0e\x72\xf9\x87\xf6\x98\x94\x82\x3c\x57\xf2\x59\xdd\x8e\xf1\x7e\xe9\x9b\xf8\xee\x05\x1e\xe2\x7a\xd5\x91\x08\xcf\xa6\x59\x96\x2e\x92\xf5\xd0\x91\xa3\xe4\x2c\xab\xef\x15\x81\x9f\x9a\xf1\x48\xb3\x9d\x9a\x90\xe1\x0f\x94\x06\xfc\x23\x9c\x06\xac\xf9\x8b\x63\x5d\x40\x33\x0a\xb4\x37\xd1\x51\xed\x59\xf4\x6c\x58\x03\x17\xb1\x06\x04\xe8\x59\xbd\x00\xb3\xa7\x6a\x5b\xf6\x78\x39\x7e\xa6\x7d\xc9\x01\x6a\x72\xf4\x94\x6e\x71\x5c\x6d\x82\x8f\x0c\x33\x3b\x67\x99\xb3\xde\xc9\x88\x79\x49\xb1\x1a\x8e\x32\xcd\xa3\xa4\xb7\xad\x7a\x60\x64\x2d\xb7\x80\xed\x01\x7f\x7a\x8d\x8e\x7c\x64\xcf\xd1\xdb\xce\x49\x55\x25\x29\xf6\xdb\x5a\x71\x76\xf3\xb2\x72\x18\xbe\x54\xb5\xc6\x64\x64\x77\xb6\x1c\xed\x3d\xab\x43\xcb\xbc\xd0\x38\xe2\xd0\x66\x1a\x55\x7c\xf5\xd9\xd2\x77\x69\x3f\xc2\x42\xa5\xbd\x94\x3e\x43\xb6\x1a\x03\x39\x89\x8c\x86\xa8\x79\xf9\x4a\xc0\x04\x57\x02\xe0\x26\xb5\x96\xc7\x5d\xe8\x76\x37\x32\xf1\x52\x1e\xe5\x3a\x85\x49\x07\xb9\xa4\x33\xfd\x0b\x74\x33\x33\xa1\x3c\x72\x94\x6c\x24\x14\x6a\xb9\x06\xf6\x15\x25\x59\xd2\x8b\x16\x6c\x4e\xac\x7c\xe2\xa4\x2a\xb8\xea\x05\x9d\x8a\x42\x77\x05\x8e\xc2\x6b\xa8\xe0\x3a\xd5\x4e\x27\xe9\x71\x8b\xf6\x0b\x10\x8d\x3f\x1c\x6b\xa7\xde\x37\x4d\x34\xc7\x80\xdd\x16\x62\x8a\x99\xe9\x57\x1b\x73\xce\x81\x01\x3f\xb0\x52\x3e\xa7\xb0\xf4\x85\xcd\x8a\x45\x89\x0d\xa4\x3b\x8e\x49\x8e\xf9\xa6\x29\xa6\xc8\x8b\x6c\xc4\x1c\xbc\x2d\xa7\x6b\xfb\x9b\x81\xc2\x9a\xfd\x66\x13\xbe\x2c\x19\x65\xb9\x4b\xba\x08\x3e\xc4\x83\x89\xd1\xb5\x2c\x64\xce\x7a\xc9\x5a\x43\x3f\x75\x40\x92\xf7\x27\x68\x60\xf8\x5a\x11\x7e\xf5\xd3\xbc\x50\x0e\xfa\xed\x40\xb9\x04\xa0\x55\x84\xe1\xfd\x88\x7e\x09\x73\xf9\x9e\xe2\x6a\x9a\x8b\x8a\xea\x48\xdf\x46\x83\x21\x11\x60\xf5\xa7\x08\xb3\x37\x75\x14\x38\xf1\x8f\x4b\x85\x98\xe0\x0a\x9b\x90\x95\x79\x0e\xcf\x15\x76\x8f\xf1\xb6\x17\xc6\x8a\x28\x7b\xf7\xb6\xfb\x69\x96\x5b\xd0\x43\x39\x34\x92\x5b\x69\x27\xc6\xce\xc3\x2a\x0e\xcc\xa2\x6e\xd7\xa5\x2b\xb0\x56\x00\xba\xe4\xeb\x8e\x6a\x6f\xb1\xd9\x20\x47\xe3\xba\x50\x21\x29\x2e\xfd\x13\xaa\x62\x0c\xfe\x1d\xe4\x59\x6e\x23\x3d\x80\x04\xc4\xbf\xc1\xfa\x44\xed\xe3\x0b\x45\xe3\x04\x9c\x3e\xff\xfb\x58\x3d\x82\x3a\x9b\xc2\x34\xeb\x4e\x78\x0d\xf3\x3f\x2f\x7d\x8f\xd3\x35\x85\xf4\x1e\x37\x6a\x87\xf7\xb4\x7b\x69\x51\xd8\x44\x67\xad\xd0\xb4\x25\x39\x92\xb1\x73\x91\xf8\xf2\x07\x51\xc8\x4c\xa8\x38\x81\xb8\x23\x8d\x6f\x02\x4f\x7f\x62\xb2\x81\x6e\xf5\x45\x9a\x8a\x61\x93\x81\xaf\x5d\x5d\xd1\x4c\xa1\x57\xc6\xcc\xf6\xaf\x4f\xb5\xf3\x68\x30\x8a\x0b\x93\x58\x52\xcd\x50\xc4\x4b\x80\x44\xf3\x75\xc3\x44\x4e\x89\x74\xe4\xa4\xef\xf8\xbb\xa6\x9b\x1a\xbe\x47\xb5\x64\x24\x8b\x38\x9d\x31\x8e\x6c\x2d\x6c\x6c\x33\x11\x9b\xc5\x70\xfe\xa1\x26\x62\xf8\xc3\x1a\x97\xc9\xd0\xb2\x10\x93\xb0\x1c\xd0\xf0\xb2\x36\x82\xe2\xd1\xbb\x55\xcb\x1e\x66\x71\x77\xbb\xa2\xab\xbb\xc5\xc9\x36\x04\x33\xcc\x05\xec\xfa\x87\x5c\xe8\xf2\x7b\x38\x0a\x45\x95\x6c\x2c\x91\x2d\xa2\xfe\xf4\x3c\x70\x5d\xd6\x1a\xa9\x5a\xfa\xa6\x97\xb7\xa8\xcb\x49\x48\x7e\x69\x4e\xf9\xa6\x81\x87\xb4\xf2\x8a\x93\x6e\xcb\xb7\x1f\x1e\x0b\x7c\xcb\xe3\xb1\x31\x37\xfa\x57\x39\xf9\xee\xf3\x33\xa2\x28\xa1\xbc\xb5\x9b\x5a\x60\xe9\x63\xc5\x7b\xd2\x8f\xba\x5d\x59\xa7\x1c\xa9\xc0\x82\x4a\xd8\x32\xfe\x7c\xec\x05\x57\x43\xc5\x94\x08\x35\xb6\x2c\xf1\x6e\x72\xb3\xe0\xec\x25\x4e\x7f\x34\x02\xb3\x3e\x1f\xad\x58\xd8\xce\x87\x2a\xe5\x58\xd0\x68\x55\x4f\x83\xf3\xf2\x33\x3c\x0d\xdf\xa8\x6e\xc2\x74\x96\x95\x5e\xb6\x28\x21\xd1\xbf\x0a\x14\xc2\x02\xa1\x1e\xea\x74\x9c\x32\x62\xa5\x41\x3a\x76\x91\xc5\x3f\x39\xb6\x79\x8f\xcc\x10\xd0\x5e\xa0\xfc\x4a\x21\xd6\x73\x12\x35\x10\x97\x99\x98\x40\xc5\x0e\xfc\xc3\x3a\x93\x92\x2e\xf6\x76\x7a\x21\xb2\x8b\x36\xcb\xb7\x2a\x26\x84\x73\xaa\x07\x8c\x29\xaf\x30\x53\xf7\xe1\x46\xf0\x4d\xe0\x55\xfc\xce\xab\x54\xf6\xf9\x26\xb4\x8c\x3d\x3a\x8c\xb2\x0d\x41\x7f\xa9\xd0\x01\xff\x93\x0b\xf1\x62\x6b\xa4\x92\x27\x2a\x2d\x35\x5d\x97\x8d\xe3\x73\x60\x0f\x47\x6d\x9a\x5c\x98\x36\x8e\x10\x0d\x6f\x3c\x74\xa7\x0e\xb5\x33\x6b\xf2\x9c\xaa\xaa\x13\x2d\xa5\xce\x46\x63\x00\xeb\x7a\x4f\xa1\xe7\xaa\x33\x80\xe3\xcf\x34\x4b\xdc\x2a\xd2\xbf\x85\xb2\xd5\x26\x70\x13\xe1\xd8\xbd\x56\xfe\xa2\x4f\x9e\x1d\x1d\xda\x2c\x1a\x80\x8b\x29\x05\x31\xb5\x58\x6b\x1a\x12\xe4\xc9\x98\x27\x12\x76\x69\x9c\x69\xe9\xf0\x9e\x76\xd1\x27\x16\x8c\x6f\xfe\x06\xa7\x9b\xdf\x25\xb3\xc8\xd7\xc1\x46\xf6\x43\x57\xeb\x48\x16\xa2\x2c\x4d\xe8\xf7\x41\xff\xa0\x3d\x51\xb8\xea\xef\x6b\xd0\xe5\x8f\xd5\x02\x49\x6c\xb1\x98\x66\xa0\x2c\x85\x5d\x62\x06\x75\xac\xa5\x63\x38\xd1\x54\xb5\xe8\x4b\xa4\x8e\x60\xde\x40\xfc\x23\x70\x6b\x45\x13\xff\x29\xd6\x12\x22\xd0\xcf\xc8\x09\xa9\xf5\x3d\xe2\x84\x3d\xa5\x8c\xf3\xd0\x66\xf9\xc8\x74\x2d\xc2\x3e\x1e\x3e\xda\xeb\x88\x70\xae\xd3\x82\xe4\x6b\xc5\x2b\xa8\x73\x31\xdd\x7e\x34\xa1\xea\xda\x62\x7c\x71\x82\x7f\xa8\x08\xc9\xc6\x8f\x44\x56\x90\x71\xd3\xef\xb4\xdd\xf7\xef\xe7\x73\x7b\xa2\xe3\xe1\xf4\xdb\x94\x30\x53\x66\xe2\x5d\xf4\xb2\xc8\x0b\xb2\x08\xb9\x74\x80\xa9\xee\xa9\xaf\xd4\x58\x7e\x4f\x2a\x2e\xc8\x35\xad\xdc\x78\x99\xa0\x7f\x18\xd3\xfb\xa5\x4b\x60\xff\xe6\x3f\xec\xa8\x6c\xc7\xe7\xda\xa7\xfa\x0a\x25\xb4\x90\xa5\x6d\x11\xf6\x06\xa0\xaa\x9d\xcb\xad\x97\x8f\xb8\x08\x5a\xf2\xeb\xae\x8f\xb0\xe5\xd9\x03\x02\xc5\x2a\xa0\x9b\xa0\xbe\x01\xf7\x1f\x1b\xe5\x7d\x55\xf6\x7b\x5f\x31\x79\xd8\xa4\x17\x25\xd6\x66\x92\xdf\xc6\x7a\x05\xe5\xb0\xeb\x68\x75\xee\xb9\xd6\x09\x48\x47\x59\x6e\xe3\x05\x9b\x4f\xfa\x0a\xcd\x47\x30\x7e\x7c\x53\xfa\x07\x63\xe7\x9c\x6f\x5c\x8f\x82\xe9\x2e\xd8\xac\x88\x72\x3b\x90\xf6\x16\xc4\x51\xe7\x95\x0a\xde\x79\xd5\xc5\x6c\xb2\x81\xc5\x79\x27\xa0\x0a\x6f\xb8\x2f\xd6\x8e\xf2\xd1\x10\x56\x87\x2b\x10\x8a\x89\xf0\x64\x93\x68\xe0\x9c\x35\x85\x4b\x2f\x79\xee\x23\xcd\x4d\xd9\x80\xd4\x46\x29\xc5\xf5\x35\x31\xa2\x50\x51\x91\x57\x5e\xbb\x73\xc4\xe2\x22\xa5\x12\x7c\x6d\x53\xf3\xcd\x58\x16\x77\xff\xfe\x76\x98\xc6\xdd\x09\xd5\xfa\x18\x28\xfe\xff\xcf\xd4\xa1\xb8\xac\xb2\x6b\x04\x53\x48\x44\x32\xc8\xa1\x88\x3d\xa2\xd8\xe5\x78\xba\x76\x21\x2d\x18\x9a\x29\x4c\xe7\x2d\x47\x1e\x73\xbe\x36\x98\x3d\xc3\x8c\x14\x0c\x89\x2b\x15\x33\x2e\x94\x50\x71\x54\x3f\x54\x0c\x5a\x7f\xa3\x4e\xe0\xd9\x74\x30\x6b\xb2\x2e\x05\x37\x7b\x9a\x39\x88\x14\x1d\xc1\x62\x62\xb3\xbc\x1f\x0d\x27\xfd\x63\xc3\x1a\x02\xaf\xf0\x1f\xc9\x14\xc0\xc1\xfa\x67\x68\xe0\x13\xc4\xbe\xf6\x00\xcd\xd0\x3e\x41\x94\x04\x92\xe4\x27\x57\x9f\x6f\xb4\xdc\xcb\x1a\xbe\x03\x69\x71\xe6\x69\xc6\x89\x76\x53\xd7\x37\xd6\x74\xd1\x59\x58\xce\xf8\x4e\x51\x7a\xb2\xba\x00\x8c\xc6\xcf\xd4\xd9\xbb\xd6\x08\x48\x1c\x98\x6c\x31\x0a\xe7\x19\x00\x25\x6c\x9b\xf4\x4b\x7c\xa3\x94\xd4\x4c\x92\x58\x64\x9a\x99\x21\x06\x2b\x42\xe8\x62\x94\x29\xb5\xf1\x76\xfa\x3b\x18\xa2\xab\x64\x94\x90\xb7\x39\xa7\x19\xde\x4e\xd0\xca\x00\x54\xab\xb5\xac\x62\xe9\x9f\x68\x2a\xd7\x77\x15\xfe\x74\x33\x11\xc1\xe2\x78\x6d\x8d\xa9\x0a\x4e\x4f\xb7\x17\xb3\x88\xf5\x2d\xf8\xf7\x02\x8f\x70\x39\xd7\x10\xfe\xbc\xd6\xa6\x8e\xdf\x96\xca\xb5\x00\xcc\xc7\xd7\x0e\x98\x45\xcc\xdf\x45\xdf\xbe\x39\xd2\x0d\x32\x60\x70\xe4\x6b\xe7\xa8\xf4\x46\x51\xd7\x6e\x51\x55\x2e\xa6\x05\xd0\xc6\x1b\xab\x14\xa9\x37\xd6\xc5\x20\x26\x19\xc4\xc3\x3f\x6c\xc8\x41\x1f\xac\x8e\xb9\x28\xed\x72\xdc\xe5\xb8\x42\x7d\x5a\x77\x9c\x4a\x6b\xdf\x74\x7b\x94\xbc\x31\xe2\x34\x17\xb6\x0f\xfb\x7b\x7c\xa3\x20\x41\x85\xa9\xce\x51\x4a\x00\x38\x68\xfc\x81\x3d\x72\x3d\x76\xea\xed\x9b\x6e\x27\xb6\x17\xdb\x10\xf4\x2d\xa2\xcd\x52\x83\x5e\x28\x69\x96\x6a\x0d\x88\x8f\xe9\x97\x4a\x9a\x0e\x76\x54\xff\xe3\xf8\x49\xab\x57\x13\xea\x6e\x0f\x98\xdc\x84\xd5\x01\xdf\xe4\x69\xc0\xd8\xb1\x49\x6e\x53\x1a\x00\x81\xdc\x55\x7a\x5e\xac\x47\xd8\x05\x7a\xa8\xe7\xff\x1e\x4e\x3f\x61\x08\x94\x84\xb1\xc9\xc2\x7e\x54\x58\x4a\xb1\xa8\xf6\x8b\x63\x0a\x41\x77\x4c\xa5\x3d\xc2\x74\x60\x9f\x50\xb1\x4e\xa9\x69\x80\x2e\xc3\x43\x64\xdb\x43\x4f\x8e\xfc\xd8\xb7\x03\x45\xe2\xbe\x42\x1b\x12\xb9\x9b\xcd\x1d\x95\xba\x07\x2c\x1d\x8b\xe5\x04\x9c\x00\x49\xae\x54\xa3\x83\x62\xc7\xe7\xaa\xf7\xf7\x8e\x8a\x8c\xf2\x22\x33\xa3\x59\x9c\x01\x72\x60\xd3\x77\x0b\x4b\x9f\xa2\x84\x1d\x65\x49\x3e\xe1\x35\xd5\xd7\x54\x8a\x06\x0f\x87\xbd\x75\x69\xac\x23\xeb\xf5\xd7\xa9\xeb\x2b\x4b\xa2\xb7\xc4\x59\x47\x5c\xf2\xbe\xa2\x6a\x79\xdf\x2b\x29\xf4\x4d\x36\xb4\x99\x6a\xb5\x7b\x08\x3f\x05\x26\x6b\x6b\xc7\x1f\x9c\xd7\x14\xe5\xb5\xe9\xa5\x4f\xd2\x77\xab\xaa\xad\x6b\x72\xa2\x67\x45\x02\x75\x45\x91\x84\x48\xf2\xa7\xe6\xaa\x33\x87\xb4\xf2\x01\x27\x88\xbd\x06\x3e\xc5\x35\x06\x26\x8b\xa7\x48\x53\x24\x28\xf6\x96\xe3\x82\xbc\xaa\x3b\x40\x7e\x47\x91\x0d\xc4\x66\x31\x73\x52\x27\x70\xaa\x18\x14\xc9\x37\x4a\xe0\xda\x2e\xd8\x04\x3b\xc4\x09\x2b\xee\x9d\x92\x6b\x6c\x45\x58\xc0\x7b\xca\x1a\xde\x53\x95\xcb\x30\x0d\xe7\x87\x51\x81\xf9\xc5\xda\xbb\xab\x44\x8b\xee\x3e\x16\xc7\xd4\x4b\xd3\xee\x92\x35\xd9\x84\xef\x71\xbc\xa8\x74\xce\x59\x07\x1b\x0e\xea\xa6\x8e\x7f\x3b\x33\x3b\x4a\xba\x86\x1d\x22\xd1\xf0\x52\xed\x7a\x8d\xb5\xdb\x68\x40\xea\x0a\x64\x7a\x45\x58\xd4\x37\x92\x5c\x51\x84\xb8\xc9\x0b\xc5\x53\xbe\x9a\x77\x23\x50\xb0\x40\x4c\x37\x79\x15\x33\xbf\xd4\xd1\x32\x41\xf4\xf3\xb0\x93\x4f\x52\x0e\x4e\x68\xa3\x6b\x4a\x40\xad\x5f\x9f\xf2\x2c\x32\x2f\x1f\xd1\x52\x6b\xaf\xc9\xfa\x08\x34\x34\x84\xdb\x71\xe0\x4a\x9c\x09\x14\x24\x77\x95\x3b\x7c\xa5\xeb\xdd\xf5\x6a\x99\xcc\x52\xa1\x0f\x8b\x92\x5b\xbd\x60\x5a\xbe\x43\x11\x0d\xef\x26\xb8\xa2\x88\x68\xbe\x5f\x7a\x3f\xea\xbe\xd7\xd9\x4b\x0b\x1b\x73\x99\x0b\xbb\x9a\xf5\x84\xc4\x40\xf8\x0f\xdd\x19\x73\xff\xa8\x21\x7a\x60\xf2\x9c\x1a\x24\x15\x27\x64\xcb\x29\x4d\x5d\x71\x25\xba\x41\x74\x74\xa2\xa5\xb8\x90\xab\xc7\x14\xd8\x93\x62\x52\x19\x87\x9a\x55\x4e\x66\x9a\x3a\x14\x16\x1c\xeb\x0b\xd8\x2f\x7c\xa3\x70\x17\x79\x9c\x2e\x12\x6b\xd2\x81\x3d\x07\x84\xf5\xa5\xf4\x4d\xe3\x9b\x80\xca\xc2\xdb\x4d\x76\xbc\x28\xd1\xe7\xf8\x42\xbe\x69\xca\x59\xd8\xa4\xc8\x90\xf3\x43\x9c\x79\xbb\xf4\x31\xe7\xed\xe0\x19\x07\x1b\xeb\x5a\x40\x3b\xd9\x91\x16\x72\x93\x96\xd2\xb9\xf7\xe7\xdd\x5c\x1c\xf5\xfa\x05\x97\xb7\x61\xa4\x56\x54\x72\x1c\xb1\x14\x57\xc8\x03\xef\x0c\x32\xe9\xbc\x6a\x2b\x39\xc8\x3e\xd6\xf5\xc0\x83\x3f\xae\x28\x81\xc8\xad\x30\xf5\xc8\x55\xdf\x57\x95\x8c\xdc\x0e\x8b\x97\x76\xd2\xcb\x63\x1b\x3e\x0a\x54\x87\xff\x03\xfc\x90\x70\x31\xd1\xfe\x17\x85\x9d\xd6\x06\xad\x0a\xd8\xa8\xf3\x0a\xb3\x71\x41\x35\x8b\x30\xe8\xc9\xf5\xb6\x1e\x16\xbc\xf7\x8d\xb1\x7a\xc7\x8b\xed\x85\xa8\x6b\xd3\x90\xc4\x21\x0a\x0d\x10\xbe\x0a\xdf\x54\xc8\x10\xbc\x7b\x6d\x8f\x0e\x4d\x42\x74\x59\xd5\x1f\x8b\xf4\x76\xcb\xf1\x10\x6d\x5d\xf6\xe4\x0f\x57\x79\xfb\x09\x07\x8a\xe2\x0a\xbb\xe4\xe6\x31\x4a\xba\x76\x68\x93\xae\x4d\x20\x72\xc4\x22\x62\x8a\x87\x85\x2d\xb3\x68\x31\x6f\xb4\x47\xaf\xbf\xde\xce\xdf\x1c\x59\xfb\x16\x7a\xbd\x91\x01\x65\x7d\x2d\x11\x92\xa8\x06\x01\x27\xc3\x03\x85\x70\xab\x02\x41\x12\xe3\x75\x59\xea\x9f\x04\x35\xb4\xfb\x46\x90\xd6\xd4\xa1\x76\x4e\x6f\x1f\xe5\x85\xc9\x27\x35\x23\xfa\x43\xec\x2d\x58\x5b\x98\x6c\x25\xd9\x22\x8c\xed\x93\xcb\x12\x5c\xcf\x65\x69\x52\x44\x36\x6b\x29\x72\xa9\x0d\x4d\x45\x3e\x70\xce\xa3\x41\x14\x9b\x2c\x02\x93\xe6\x6b\x8e\xa0\x85\x00\x16\x8e\xb9\xc5\xb5\x29\x32\x8e\x59\x3c\x40\xff\xc2\x66\x54\xa4\x03\x73\xb4\xa5\xda\x65\x75\x4f\xf2\xb5\x5a\x50\x93\x99\x3e\x87\x0a\x12\xf2\xe8\x8e\xe5\xa6\x06\xcf\xae\x1d\x98\x04\xb5\x09\x9d\x14\xc3\xab\x3f\x0a\xb4\xa0\xab\x82\x2a\x9a\xa4\x87\x3a\xeb\x2b\xa2\x74\xaa\x1a\xcc\x7f\xa6\xfc\x85\x70\x36\xc2\x93\xc3\x49\xbd\x87\xb7\xe4\x9b\xb1\xf4\xde\xe1\x3d\x53\x94\x82\xb6\x49\x3e\x62\x0b\xa1\x37\xab\x38\xd1\xe3\x28\xa3\x99\xb6\xcd\xcc\x84\x7e\xf3\xb3\x2a\x8f\xc8\x82\xdc\x30\xae\x0f\x95\x63\xb6\x90\x46\xa1\xcd\x27\xbd\xab\x03\x26\x23\x01\xa5\x33\x86\xa4\x86\x48\x1d\x6f\xff\x69\x2f\x9a\x05\x49\x0c\x70\x46\xba\x96\x9d\xf6\xe7\x76\x94\xe4\x51\xd7\x66\xf8\x41\x58\x8d\x9f\xea\x4c\xea\x1f\x97\x4a\xf6\xfb\x42\xa9\x54\x90\x6e\x36\x24\xcf\x5f\x69\xe7\x23\xc9\xca\xe0\x1c\xbd\x41\xeb\x42\xbc\x68\xfa\x62\xf1\x58\xfd\x7a\x9a\x8b\xc8\x14\x50\x52\x86\xb9\x75\xf0\xb3\xae\xbb\xc6\xc3\x79\xb9\xc7\x12\xff\xd3\x48\x51\x0e\x20\x70\xcb\x17\x9f\x6f\xa8\x7e\xc9\x1b\x8a\xc3\x7a\xd6\xc4\x6f\x19\x66\x38\x44\xe8\x76\x1a\x40\x5a\xbe\x09\xe4\xfc\x4e\x87\x36\x79\xb2\xf2\x13\x24\x16\xf1\x38\xde\xd3\x2a\x56\x7c\x02\xe2\x56\x2c\x87\x57\xaa\x88\xeb\x23\xa5\xbd\xc4\xa8\xf4\xda\x51\xc0\x3c\x66\xa5\xa7\x17\xd9\x4c\xce\x2e\x2c\xf1\xdf\x43\x5f\x3a\xac\xc9\x3d\x85\xff\xf9\xd1\xc6\xa6\xfa\x03\x7b\x0e\xb4\xf7\xee\x25\x94\x2c\x76\xc8\x7b\x74\x94\xea\xb6\xde\x75\x2e\x63\x21\xab\xf0\x9d\xa0\xee\xf9\x3a\x67\xf9\xf2\xd8\xec\xee\x9b\x6e\xc7\xe9\x12\xab\x3b\xe1\x55\xd8\x15\xe5\x1b\xd5\x58\xd1\xcb\xac\x4d\x28\x46\xc3\x61\x76\x41\x49\xd2\xde\x0d\x14\xe3\xd0\xaa\xe6\xb9\xbe\xc4\x4e\x39\x2c\x11\x44\x36\x71\xbe\xd7\x0a\x1c\xab\x2a\xe7\x73\x53\x43\x14\x6e\x2a\xb6\x09\xd3\xed\xda\xee\x4e\x8f\x84\xfe\xa9\x72\x62\x11\x48\x30\xf7\x22\x9d\x78\xaa\x83\x55\xfa\x01\x77\x62\x83\x62\x36\xb6\x12\xa2\x04\xc9\xcf\x9f\xf2\x53\x22\xfb\xca\xb2\xac\xb0\xb5\x7f\x87\xb7\xc1\x02\xdf\xb9\xac\x16\x78\x9a\x2d\x9a\xac\xbb\xd5\xcf\xe9\x5f\xe1\xb7\x14\xba\xf5\xa0\x43\xb7\x7a\xda\x8d\xef\x2b\xfe\xaa\xbf\x0a\x94\x88\xe4\xf7\x9d\x43\x58\xd8\xf8\x28\xe8\x7b\x25\x43\x82\xb8\x90\xaf\xc7\xdc\xee\xd7\x5f\x6f\x27\x36\x2a\xfa\x55\x9c\xb5\x77\x2f\x7f\x37\x74\x1c\xb9\x9d\xae\x54\x1d\x49\xe7\xd4\x91\x4d\x93\x9a\x0f\x0d\x0b\x89\xa8\x1a\xac\xc8\xf3\x8d\x8b\xc9\x10\xbb\x99\xb5\x03\xa4\x1f\x5c\xdf\x8c\x3f\xe2\x56\x1d\xe3\x52\x9a\x85\x7d\x5b\x85\xa5\xdc\x3d\xc4\xc4\xb7\x68\xe7\x44\x6a\xf2\x2f\x68\x68\x5c\x25\xe0\xe5\x23\xae\x95\xd0\xf7\xea\x8c\x92\xae\xcd\xa3\xcc\xcc\xc6\x16\x89\x75\x6c\x84\x13\x0a\x00\x78\x4f\x25\xd9\xb5\x6f\x97\x59\x1b\x33\x98\x01\x71\xf8\x07\xb4\x6d\xf9\xba\xa9\x54\x94\x99\x28\xe7\xe4\x6e\x0d\x32\xec\xd5\xb1\x7d\xd3\x61\x66\xe9\x44\x63\xa2\x15\xa5\xf6\x3e\x41\xb1\x89\xa0\x43\x1a\x30\xd6\xc3\xd8\xe4\x05\xd5\xce\x3d\xd2\xeb\x8a\xd2\x22\x1e\x67\x0c\x7a\xfd\x75\x6a\x38\x74\x4c\x9e\xae\x25\xea\xb0\x28\x3e\x8e\xb7\x78\x4c\x4f\xb7\x87\x69\xbc\x34\xe4\x9f\x61\xfc\x2d\xfd\x8c\x60\x71\x1f\x0f\x8c\xca\x07\xb6\x7a\x42\xd4\xaf\x81\x74\x85\xe5\xc7\x6b\xfd\x5d\x2d\x71\xaa\xd8\xcc\x2b\xc3\x1f\x9a\x22\x45\x6b\xdf\x2b\x0c\x55\x47\xb7\x3c\x32\xc5\x9f\x28\x03\x7b\xa3\x9e\x2e\x4f\xa4\x09\x53\xb2\x4d\xf4\x23\x92\x86\xf2\xbb\xaf\x30\x59\x34\x37\x97\xc3\x37\x40\xf5\xf4\x86\xe2\xe4\xbb\xd1\x48\x26\x9f\xa5\x23\x49\x35\xc3\x06\xac\x28\x4e\xbe\x15\xd7\x3c\x30\xb0\x26\x29\xa2\x81\x9d\x6c\x29\x26\x8d\x96\x63\x34\x64\x57\x0c\x95\x08\xc8\x0e\x23\x1f\xf5\x54\xc7\x3b\x24\x83\xe8\x28\x1d\xbf\xc8\xda\x3f\x2a\x15\xb4\xe9\x72\x2d\x6d\x4d\x43\xc1\x7f\xe5\x12\x87\x6f\x8e\xd2\xc2\xb4\xea\x20\x60\x07\xfc\xbd\x3a\xd6\x20\x40\xd8\x8f\xe1\x68\x36\x8e\x42\x93\xd4\x39\x96\x2e\x6a\xaf\xf5\x62\xcd\x89\xeb\xa7\x84\xc8\x90\x26\x30\xac\x24\xd1\x80\xa2\x41\xe2\x1b\xc4\x22\x02\x42\x69\x28\x39\x66\xd1\x02\x9f\x21\x70\x16\x51\x7a\xe0\x6b\x2c\x4a\xde\x30\x09\xc1\x17\x09\xda\x2f\x6a\x33\x5c\xf1\xa2\xe5\x21\xd5\xaf\x8d\xbf\x51\xf9\xf1\x85\xb5\xf1\x84\x4f\x30\xa2\x34\xc4\x60\x5a\x0c\x2f\xfc\xa9\x9b\x0a\x8a\xbf\x98\x66\xf3\xd5\x91\xb1\x57\x98\x36\xce\x2b\xe1\xf2\xb3\x81\x62\xc1\x38\x1d\x68\x25\x60\x8c\xa0\x88\x11\xfa\xe4\xce\x43\xd8\x6b\xe9\x2e\x23\x33\x06\x0b\x0f\xee\xab\x5a\x34\x23\x2b\x67\x63\x64\x45\x11\x3b\xb9\xdb\xa9\x63\x35\x42\x16\xe3\x8a\x46\xa2\x56\x51\x3b\x3e\xd8\x7e\xf9\xc8\xb3\x78\x22\x4e\x95\x68\xed\xcb\xd2\xbf\xdc\xaa\x02\x94\xbc\x07\x60\x27\x47\x93\x28\xc0\x72\x3b\x81\x92\x5d\x3e\x5b\x6a\x7e\x11\x0a\x37\x5c\xfc\xe9\xf1\x27\x38\xbd\x90\x74\xf9\x7f\x35\x6f\xc9\x6a\xd9\x7a\xe1\x05\x2f\xc7\xf6\xcd\xdf\x70\x99\x38\x65\x33\xfe\x82\x10\xf1\x30\x37\x57\x28\x1b\x83\xd0\x6d\x7b\x87\xfc\x32\x81\x5c\x6a\xed\x74\xdd\x20\x37\x0a\xab\x38\x6c\x6b\x65\xc0\x9d\x84\x85\xab\x72\x70\x5f\x2e\x8e\x9d\xd6\xb2\x2a\x4c\xb5\x3a\x5e\x82\xf5\x0a\xcd\x0d\x7f\xba\x89\x44\x7a\x68\x72\x86\xe9\x38\xfd\x1f\x87\xe6\x6c\x75\x3c\x66\xeb\xd6\x06\xfc\x78\x98\x0e\xb8\x81\x13\xd9\x3a\xf0\x94\xf1\xb5\x3b\x04\x6d\xd2\xcd\xd2\x30\x13\xfa\x44\x81\xb7\xb4\x14\xff\x88\xe2\xa3\xfb\x58\x53\x79\xa4\xc3\xa5\x2c\xea\xf5\x8b\x09\x6d\x7d\x3c\x84\xef\x4c\xa9\x5a\x7e\xee\xa9\x42\x57\x91\x99\x05\x8b\x0e\x2d\xbf\xc4\x91\x86\xc7\x27\xe1\x8a\x32\x54\x48\x11\x5c\x9c\x6a\x82\xbb\x0e\x4c\x21\x6d\xe8\x52\x0a\xd5\x25\x52\x3f\x26\xb1\x19\x25\x61\xdf\xfd\x2c\x17\xfc\x1b\x1a\xce\x75\x57\x1b\x5f\x2b\x44\xcd\x1b\xe9\x2c\x13\xc2\x0a\x6b\x2c\x59\x79\x61\xfb\xa9\x3e\xc4\x07\x3d\x0d\x22\xce\x97\x2f\xc9\xd1\x16\xce\xd9\x8d\x6f\xf1\x92\x88\xca\xa0\xb4\x8f\x94\xd5\xbb\x65\xad\x47\xae\xf4\x88\xae\xc7\xf4\x60\x15\xac\x9b\xce\xa4\xab\x22\x1d\xa2\x64\x44\x54\xd0\xb7\x68\x8d\xeb\x5d\x95\x65\xa5\x48\xfe\x57\x9b\x9c\xf1\x39\x53\x98\x3e\x56\x22\xb6\xdb\x0f\x95\x74\xd9\x43\xcd\xf4\xb5\x36\xce\x07\x75\x60\xa6\x6d\x16\xb9\xbc\xe9\x3a\xe7\x2e\x61\x89\x08\x67\xcc\x2e\x87\x91\x1f\x39\x01\x5c\x44\x0d\x7f\xa3\x44\x71\x58\x93\x1f\x5e\xc5\x97\x81\xc7\x57\x0c\x42\x9b\x98\xc4\x2e\x69\x72\xf0\x9b\x3a\x3b\x75\x53\x51\x67\x80\xe6\x5c\x1a\xbe\x11\x34\x5c\xa1\xc1\xe2\xeb\x26\xa1\xc1\x42\x04\xad\x55\x01\xe3\xa0\xe3\x1b\xf0\xa0\xfb\x07\x35\x80\xb9\x09\xfb\xcf\x54\xeb\x8a\xc3\xc9\x40\x0d\xfa\x31\x25\x89\x7d\x93\x7e\x5d\x84\xd2\x68\x34\x61\xbc\x4e\x70\x92\x57\x4e\x42\xac\x0b\x87\xaf\xdf\xbf\x9f\x9d\xd5\x77\x02\x9f\xb0\xbe\x86\xe2\xad\x4c\x3c\x8d\x18\x12\x6b\xa7\x36\xf4\x7b\x55\x83\x2c\xd5\xa1\xca\xde\xb2\x68\x1c\xc6\x4d\xcb\x1e\x33\x96\x08\xe1\x07\x26\xfd\xbd\x52\x95\xf4\x57\xc6\x9c\x42\x3a\x4b\xe2\x68\xd6\xc6\x2d\xef\xc9\xbc\xa3\xe8\x12\xdf\x51\xa7\x61\xd7\x26\x6e\x45\x22\x3a\x64\x20\x0d\xdf\x04\xcf\xd6\x23\xcf\x17\xdb\x33\xaf\x1e\xdc\xa6\xa3\x24\x1f\x6f\x1d\x23\x4b\xae\x9e\x51\xfa\xd6\x7f\x1a\x78\xb8\xd1\xff\x53\xaa\x6c\x05\x93\xc4\xf2\xcd\x98\x7f\xf6\xc2\x0b\xd0\x22\x41\xa6\x11\xc9\xb9\x9b\xa5\xd2\xa2\xbe\xd9\xc4\xec\xc4\xbc\x92\xf4\x19\x1c\x37\x4c\xdb\xc1\x37\x8e\x91\xb5\x97\xa5\x8b\x36\x43\x4b\xa3\x4b\x40\xf9\x82\x21\x1e\x54\x34\xd2\x64\x97\x0c\x47\xd9\x30\xb6\x8a\x59\xf2\xba\x02\xed\x5e\x1f\x4b\x01\x72\x9f\xa6\x1d\xcc\xc6\x91\x64\x6a\xe4\x60\xa0\x17\x91\x93\x61\xe3\x8b\xec\xdd\xdb\x5e\x34\x04\x1b\x6b\xa9\xc6\x8e\xdb\x2a\xa1\x7b\x5b\x95\x4a\xf7\xcd\x1c\x6c\x69\x59\xae\x33\xfa\x8d\xcf\xb8\x37\xce\xec\x20\x5d\xb0\xdd\x2d\xbe\xad\xef\x3c\x86\xd3\xf1\xd8\xfb\xa6\xdf\x5b\x34\x69\xf0\x9f\xce\xea\x0e\xf0\x4b\x63\xb9\xb3\x23\x53\x87\xda\x6f\x58\x13\x33\xfa\xd6\x31\xfa\xad\x6a\x65\xb6\xd5\xa6\xad\xfd\xc2\x3f\xfe\x47\xcc\xc2\x2e\x0d\xed\x2a\x37\x8f\x22\x07\x7c\x1a\x28\xbb\x02\x42\xf8\x13\x25\x7b\x69\x93\x30\x1d\x65\x4e\x79\xcf\x75\x97\xee\xf3\xdd\xa5\x3b\x5d\x49\xd7\xa8\xd4\xed\x06\xa2\xd1\x8d\x25\x94\xc3\x7b\x66\xda\xa3\xa4\x0a\x69\xb9\x73\x0c\x0b\x19\xfa\x4b\x7c\xad\x5a\xaa\x08\x5a\xb0\xa5\xfa\x55\x29\x00\x2b\x36\xf9\x0b\x74\xbe\x49\xe7\x24\xbd\xa0\x14\x4b\x7c\x1b\xf1\xef\xab\x63\x22\xb3\x95\x2b\xbc\xd5\xab\xb1\x4f\x2c\x2b\xc2\x74\xae\x84\x21\xcb\xf2\x08\x16\x87\x35\xdd\xe9\xbd\x45\xdf\x5d\x39\x9c\xf7\xc7\xf6\xc9\xbe\x69\xde\x5a\x5c\xbd\x71\xed\xf0\xfb\xf7\xcb\xb5\x62\x2e\xee\xf5\x5d\x99\x07\xb6\x69\x45\xb9\xe6\x2b\x2a\xcd\xb8\x10\xc5\x31\xa4\x36\xb5\x58\x90\x4f\x8a\x7d\x32\x76\xc2\x4d\x4f\xb7\xfb\x83\x14\xda\x12\x33\x8e\xaf\xa0\xde\xd1\xfa\x9c\x06\xf3\xd9\xbc\xc8\xd2\x68\x1e\xca\xb1\xb2\x22\xbd\xe7\x72\x5c\x41\x70\x3e\x29\x9f\xf4\x39\x71\xb3\xb4\x5b\x29\x76\x6c\x43\x2b\xbe\xcb\x4e\xf9\x2c\x24\xa0\x05\x64\x5f\x7e\xfc\x74\xa7\x96\x02\xd1\xd5\x20\xf4\x37\x62\xd5\x42\xfc\x04\x89\xc2\x4d\x1d\x8a\x00\x54\xda\x4b\x8e\xa0\x9d\x5a\x13\xff\x2a\x0d\x0a\x8a\x0f\x3b\x3b\xaa\xfd\x97\x65\x17\x98\x1d\x30\xa8\xfc\x64\xf1\x45\x68\xfc\x99\xff\x88\x54\xa2\x60\xb4\xd6\xea\xe8\xf2\xd0\x80\xc8\x9f\xa5\x2e\xd5\xf1\xf6\xd7\x9a\x4d\x8c\x25\x10\xb6\xab\x56\x79\x21\x70\x90\x83\xc5\xe7\xa4\xfe\x39\x6c\x15\x5e\xea\xdf\x05\xbe\x73\xe9\x64\xa0\x40\x9b\x97\x29\xbb\x24\x0a\x0a\x8a\x11\xf9\x8c\x83\x53\x2f\xf6\xa3\xc2\xe6\xba\x03\x6f\xa2\xa3\x65\xb9\x15\x2c\x0f\xad\x63\xc8\x2e\x2b\x36\xf3\x51\x14\x77\x47\xc3\x96\x2f\xf1\x01\xb7\x2d\x34\x3c\x8a\x67\x3c\x4e\x73\xdb\xdd\xd1\x72\x94\xba\x5f\x12\xc9\x93\xb4\x70\x55\xef\x80\x92\xf5\x3d\x84\x45\xec\x1a\xd0\xb7\x21\x46\x78\xb7\x54\xfa\x9f\xc7\x4a\x55\xa7\x03\xee\xd0\xe5\x92\xab\x79\xe1\x21\xd4\x48\xa7\xd1\x70\x52\x29\x79\xc3\x6d\xd3\x88\x47\x4e\xc3\x07\xaa\x7c\xfa\x73\x3d\x45\x26\x8e\x53\x92\x55\x77\xfe\xc5\xc3\xc0\x67\xb7\x1e\xaa\xfe\x9c\xbe\x65\x77\xfc\x80\xa4\x28\x91\xe3\xe5\xeb\xb1\x02\xf1\xe1\x3d\xed\x61\x66\x89\x00\x91\xb7\x35\xe0\x47\x10\x58\xe2\x6b\x37\x69\x3d\x9b\x88\xda\xbf\x34\x81\xe8\x8e\x90\x26\x7e\xf4\x59\x1b\xa7\x8b\x2d\xef\x24\x6d\xa2\x32\x1f\x5f\x77\x7c\x34\x63\x8f\x86\xd6\x76\x9d\xb4\x0c\x6c\x1a\xcc\x22\x5f\x3b\x5a\x1d\xc2\x4a\xd0\xbc\x63\x51\x15\x81\x0a\x28\x0a\x27\x8e\x36\x34\x99\x19\xa4\x23\xfe\x53\xc4\x6b\x0f\x31\x77\x7c\xd3\x48\x75\x98\x17\xd6\x74\x23\xea\x26\xa6\x49\x6f\x62\xba\x56\xc4\x32\x61\xdf\x76\x47\xb1\xa5\x74\x0e\x82\x95\x93\x18\x13\x9c\x97\xff\x27\x7d\x0e\x55\xf4\x0f\xf0\x9c\x08\xae\x2f\xa8\xf5\x31\x8a\xba\xdb\x7c\x5f\xce\xa7\xa5\xef\x81\x3b\xa3\x60\x9a\xbc\x3a\x61\x3e\xdf\xa3\x65\x0b\x6f\xf7\x64\x59\x13\xf6\x52\x3c\x51\xfd\xa6\xce\xaf\xa1\xa1\x1c\x0b\xf2\x84\x4d\x78\xf7\x06\x16\xc3\xc4\x48\x0e\x47\xfe\x48\xbb\x4a\x0d\xbc\xcc\xa2\xfe\x28\x9e\x0e\x4c\xe5\x27\x30\x12\x7c\xa3\xb5\xd3\x86\xf9\x0e\xbf\x4c\x6f\xc2\xc9\xa8\x75\x2b\x02\x0a\xf3\x14\xa5\xe5\xb5\x64\x06\x6d\xbd\x7f\xf3\x0b\xcb\x8a\x72\x48\x77\x04\x32\x24\x8c\x4c\xed\x3f\xfb\xe5\x8e\x22\x89\xb8\x5e\x3e\xbf\x91\x9f\xf8\x95\xf6\xf4\xf4\xcc\x4e\x55\xaa\xbf\xab\x49\x28\x1e\x96\x5e\x56\xf1\xf7\xfc\xd1\xf0\xdf\x81\xa6\x0f\xf1\xe7\xc5\xd2\xe3\x15\x36\x11\x34\x05\x9f\x7d\x07\x6f\x04\x2f\x6c\xbd\x54\x1b\xed\x4a\xa0\x68\x09\x6e\x8f\xed\xcf\x7d\xd3\xac\x58\xc1\x0a\x31\xa8\x04\xbe\xb2\x7e\x4d\x65\x41\x86\x59\x3a\x88\x72\xa6\x24\x73\xa5\x03\xcf\xc7\xf5\x57\x63\xfe\x16\xad\x73\x13\xb6\xfc\xda\xbc\x48\x1e\xbb\x10\x48\x6e\x9c\xd0\xfd\xfb\x89\x55\x9f\x8e\x7f\xb8\x57\x35\xb2\x15\xa1\x61\x91\xea\x59\x32\xea\xa2\xa4\xce\xf4\xde\xa5\x12\x3a\x39\xab\x04\x2c\x36\x75\x36\x2e\xcf\x17\x49\xe4\xc4\x49\x8a\xad\x93\x77\xb1\xbe\xa2\x2a\x87\x8b\x26\x5a\x20\xfc\xa1\xe7\x87\x52\xe6\x94\x50\x6c\x62\xf6\xb3\x74\x31\x99\x50\x95\x87\xb5\x40\x15\xfe\xa4\xf4\xc4\x1a\x44\x65\x4d\xcd\x62\x60\x38\xd2\xd0\xde\x99\xb8\x70\xe3\xcf\x3c\x4c\xf3\x3c\x9a\x8d\xa1\x87\x23\xf0\x7f\xd5\x0a\xa0\x98\xf1\x4d\x18\xda\xa1\x4b\x98\x30\xea\x31\xf0\x09\x9c\xd3\x0a\xf7\x61\xba\x66\x58\x90\x32\x2f\x0c\xcb\x59\x3a\x55\xf9\x7a\x6c\x4e\xff\xab\xf6\xe8\xa5\xfc\x25\xd3\xaa\x65\x11\x7c\x26\xa6\x11\x1a\x5e\x64\xd6\x54\xae\x1f\x08\x5a\xe1\x1b\x9c\xc0\x9a\xe7\x1b\x37\x2e\xf9\x68\x98\xd9\x81\x65\xaf\xbe\x49\xec\x6c\x23\xc0\x8c\xe2\xf5\xb0\x9f\xa4\x71\xda\x23\xc6\xd9\x96\xe2\x7f\xae\x3e\x28\xd8\xa2\x27\xdc\x4f\xcc\x71\x73\x05\xc6\x8d\x79\xc4\xe0\x00\x9d\xa4\x8f\x20\x52\xdf\xec\xc8\xf1\x88\x8d\xa0\x2b\x45\x0f\xe6\x7e\xc3\xda\x17\x22\xb8\x06\x09\xc0\x74\x36\x2f\x4c\x18\xcb\xc7\x84\xcf\x89\x3e\x26\xd4\x54\x1b\xf3\xb2\x8e\xe8\x23\x59\x9a\x4d\xbb\x4b\x4a\x6e\x01\x91\x00\x5f\x6f\x94\x38\x7c\xfd\xf5\xca\xa6\xec\x50\xaf\x5b\x2a\x72\xaa\x6d\x1d\x45\xf6\x74\x56\xc3\x5c\x98\x4e\x9e\x9b\x1b\x02\x7f\x3a\xfc\x41\xe9\x9b\x2a\xbe\x8f\x8d\x25\x69\xdc\xea\x31\x70\x06\x9c\x1f\x4b\x2b\x3b\x05\x1e\xa2\xd2\xe6\xdc\x8e\xa3\x54\x77\xc8\x3f\xd6\x52\x15\xe7\x7b\xe3\xd8\xbd\xd8\x9e\xcb\x46\x79\x91\x19\xa1\x65\x56\xe4\xeb\x1e\xa2\xb1\x5b\xc9\xa0\xc6\xc3\xd8\xe6\x5c\x25\xe2\x36\xd7\x72\x63\x9e\x53\xf8\x50\x9a\x18\xcc\x8a\x7e\x94\x75\x27\xab\x75\xaf\xb2\x64\x07\x6b\x52\xd5\x70\x82\x00\x9a\x40\xb6\xef\xa4\xea\x3e\xca\xa3\x5e\x22\x34\x4d\x38\xbe\x6f\x28\xed\xd8\x1b\xea\x0c\x9a\x1d\xc5\xad\x1a\xda\x5f\xb7\x01\xd4\xe8\xdb\x96\x0c\xd0\x34\x02\xac\x57\x1e\xcb\x59\x45\x5f\xab\xcb\xd6\xab\xce\x7b\x59\xc8\xaa\xf0\xbf\x06\x67\xac\x7e\x54\x92\xf4\x3a\x21\x53\x18\xb0\xd6\xcc\x70\x9c\xf9\x83\xc0\xc7\x9f\x3f\x18\x33\x00\x2f\xb6\xe7\x6c\x96\x61\x65\xba\xa2\x8d\xea\x0f\x7e\x1c\xf9\x7f\x98\x16\x45\xca\x86\x12\xd6\xf0\x73\x05\x9f\xf8\xdf\xb0\x22\xb0\x54\x3e\x1d\xf3\x0d\xf6\x4e\x11\x7d\xa6\x9d\x50\xa9\x64\x16\x98\x40\xcf\xfa\x09\xb6\xb3\xc8\x5f\x9f\x53\x01\xfb\xa2\xc9\xfb\x51\xd2\x2b\xd2\x64\xa7\x77\xc1\xaf\xf2\x9f\x73\x3a\x1b\x0b\x0b\x85\x61\x4e\x24\xa1\x70\xf4\xbb\x1a\x5e\xb7\x09\xc0\x79\x97\x6c\x53\x84\x1d\x14\x3a\x08\x45\x54\x4b\x51\x75\x79\x70\xcc\x8d\x26\x87\xa7\xc8\x0c\xf3\x5e\x02\x93\xb3\x49\x41\x91\x37\x8d\xd1\x18\x4e\x4f\xcf\xb4\x4d\x1e\x9b\x24\x32\x5c\x98\x47\xde\x02\x96\x9d\xaf\x15\x56\xe1\x1b\xdf\x9c\x9e\xfa\xc6\x33\x9a\x78\x1e\xad\xba\xb0\xed\x13\x88\x35\x91\x6c\x5e\xa7\xa4\xa0\x2c\xa2\xca\x03\x91\xec\x36\x8d\x06\x43\x6b\x02\x55\x52\xe1\x26\x42\x26\x64\x5e\xf6\x7e\xe2\x9f\x68\xd2\xde\x4b\xc1\xc4\xc1\x7f\xfa\xeb\xcc\xde\x06\x72\x03\x74\xbc\x9e\x24\x63\x83\x23\x7d\x0d\x40\x31\x45\x6f\x36\xed\x05\x9e\x5e\x78\x81\x27\xe6\x47\xf4\x96\x92\x2b\xf3\x08\xfe\x4b\x8a\x9b\x64\x94\xd0\xb1\x6d\x5b\x35\xbc\xac\xee\x29\xbd\x34\x46\x81\x39\x75\xa8\x1d\x77\x11\xe0\xe1\x65\x3e\xd5\xa4\x31\xe3\x6b\xb1\xb2\x17\x6f\xa4\x16\x7e\xaa\x28\xb1\xa9\xe2\xc9\xa9\xb1\x74\x95\x6c\x81\x81\xc9\x22\xae\xa8\xc2\x48\x31\x33\x0f\xdf\x3c\x56\x14\x64\x60\xbb\x51\x18\x25\xf6\xf1\xca\x19\x0d\x4d\x80\xb1\x35\xbe\x09\x10\xa6\x1f\xda\x66\xf8\xcc\x64\xc7\x37\x7b\x5c\x53\xca\xa0\xa1\x49\xba\x51\x97\x2a\xfc\xda\xac\x54\xc3\x2d\xe6\x66\xe3\x80\xfc\xfa\x14\x48\x72\xe8\xf1\x98\xd2\xa5\x46\xef\xb2\xab\x46\x4d\xd0\xf2\x5d\x2a\x67\x95\x0a\xeb\x59\xc5\xf3\x98\x9b\xa5\xdd\xbe\xef\xe1\x36\xd9\x17\x04\xe6\xad\x8e\xef\xc0\xdc\xba\xec\xeb\xd1\xb7\x70\xde\xc1\x8e\x6e\xc6\x79\x87\x0d\xf1\x76\xd0\xfa\xe6\x6f\xf8\xbe\x1e\x2f\x9c\xb0\x82\xac\x36\x7e\xe3\x3c\x48\xd0\xc4\xab\x9a\xf0\xfa\x8b\x7c\x44\x02\xb6\x72\x8b\xde\xcb\x55\x02\x8e\x48\x5b\xd0\x03\xb4\xc7\x89\x23\xa6\x94\xae\xae\x93\x37\x25\xc0\x2f\xbf\x52\x0b\x6b\xc2\x3e\x2b\x9f\x4d\x7b\x52\x1c\x0f\xaa\x72\x00\xd4\x24\x4d\x6c\xd1\xb7\xd5\x01\xb7\xc3\x67\x1e\x40\x42\xed\x4a\xa0\x42\xa1\xb2\xfb\x57\x3a\xd4\xdb\xe5\x0a\xa5\x3e\xa1\xb0\xaa\x65\xc2\xae\x68\xb0\xd6\x1a\x46\x42\xc4\x70\x5a\x4e\x4d\x4b\x37\x76\xf4\xad\xc9\x0a\xc0\xf9\x60\x1b\xb9\x3f\x94\x59\xb6\x6a\x02\xcc\xaa\x15\xfe\x3d\x95\x12\xeb\x26\x66\x42\x75\x7b\xae\x6a\x1f\x23\x50\x7d\x01\xaa\xc9\xf1\x0d\x33\xb0\xf9\x16\x7a\x0b\x97\xc7\xd2\x64\x03\x9e\x22\xef\x94\x9e\x34\xe6\xa7\xc4\xbb\xfe\x89\x92\x36\x7a\xc3\xce\xcd\x65\x76\x09\x8e\x09\x96\x11\x8a\x99\x9c\xe9\xc5\x37\x8a\x64\xac\xf8\x7f\x8b\x51\xd1\xef\x66\x76\x71\xa2\x26\x01\xdd\x72\xec\x1b\xa7\xf0\xc6\x48\x00\xdf\x56\x6a\x4d\xf9\xd0\x86\x23\x88\x97\x6e\x55\x25\x98\xf7\x6a\x1c\x41\xd5\x92\x12\x1a\x00\x7a\x6c\xae\x59\xd3\x90\xe2\xe5\xb8\x2b\x04\xde\xc4\xb9\x31\x2c\xcf\x8b\xc2\x97\x25\xd9\x15\x25\x50\x34\xe5\xd0\x1b\x5e\xcc\x70\xc0\xea\x8e\xd8\x15\x2b\x81\xaa\x12\x68\x5a\xe6\x41\x94\x0b\x6e\x09\xcb\xff\x63\x4a\x43\xf1\x75\x03\xbb\xc5\x2b\xed\x81\xc9\xd3\x84\xbd\x03\xe6\x12\x53\x18\x89\xcb\x2e\xc5\x13\xda\x24\x4f\x33\x25\x3b\x76\xba\x54\x48\xae\xd3\x35\x8a\xce\x62\x94\x25\xb6\xab\x74\x8a\x76\x74\x7c\xe7\xd3\x23\x0c\x19\x0e\x98\x3b\xe5\xf3\x6e\xe8\xbb\x51\x6e\x86\xc4\x84\xcd\xad\x96\x48\x23\xdc\x54\xdc\xb9\x37\x9b\x30\x1e\x73\x71\x6a\x8a\x56\xeb\x5b\xbf\xe6\x2b\xd6\xce\xd3\xb9\xd4\x88\xe8\xe9\x66\xd1\x02\x30\x58\x80\x4d\x9d\xc5\xab\xc0\xaa\x73\xaf\xbc\x04\xb2\xcf\x28\x53\x18\xf6\x93\x2a\x60\xd9\xea\xd7\xc2\xdd\x40\xef\x3d\x5a\xf5\xb0\x55\x77\x60\x9e\x90\x7b\x41\xb7\x82\x94\xc3\x54\x99\xf1\x92\x5a\xe8\x69\x77\x29\xcf\x51\x24\x75\x25\x6c\x3a\xe3\xa5\x9c\xed\xff\x74\x31\x8b\x0a\x42\xc9\xba\xae\x02\xce\xb7\x39\x4a\x2d\x07\x5b\x7f\x88\x85\x2e\x62\x7a\x4a\x32\x2c\x1d\xa2\xf7\xd7\x17\x07\x2e\xa9\xe2\xc0\x25\xc5\xdd\x6f\xf2\xe7\xfd\x58\x5d\x40\x2b\xaa\x23\xde\xab\x5e\x19\xdb\xf2\x33\xe0\x45\x1c\x53\x8b\xa3\x9d\x29\x21\x7e\x8c\xc8\x11\xe2\xfd\xc8\x62\xad\xd4\xf8\x38\xe9\xc8\x72\xa2\x12\xd3\x4e\xad\xe1\xa7\x64\x90\xf9\x6b\x39\x01\x8d\x90\x62\x85\x46\x1f\x33\xb1\x95\x7a\x3b\x61\xdc\xb9\x2f\x07\x59\x06\xc6\x65\xe2\xb5\x4e\x63\xf1\xc1\x84\x01\x11\x83\xb4\x6c\x6b\xc3\x09\xf4\xad\x5f\x73\x0c\x14\x8a\x04\xf5\xae\x13\xb7\x8c\x4d\xd2\xcd\x43\x33\xc4\x32\xc2\xca\xc6\xc2\xc3\x83\xde\x52\x6d\x80\x9f\xe9\xbe\xf6\xb7\xec\x56\x0f\x12\x04\xa1\x1c\xd2\x5e\xbb\x3a\xf5\x06\x83\x97\x8f\xb0\xad\xe2\x32\x23\x36\x0c\x27\x2a\xb1\x94\x1e\x35\xe4\x1c\xf2\xd1\x70\x88\x42\xa2\xaf\x13\xb3\x70\x37\xdf\x34\xa9\x9f\xf6\x6c\x32\x8a\x12\x66\x9f\xd6\x15\x6c\x49\xe1\x8c\x47\x7c\x43\x9b\xe7\xd1\x20\xca\x45\x33\x55\xb0\xbf\x4a\x33\x64\x65\xec\xa7\x0e\xec\x69\x8b\x3e\x01\x4d\x84\x63\x0f\xde\xbf\xdf\xb1\x07\xab\x04\x7d\x9a\xc6\x9c\x83\x10\x56\x60\x9a\x4b\xa1\x05\xf6\xdd\x95\x71\x9a\xce\x6f\xa7\x87\x87\x2b\x7e\x0a\xf0\x6d\x51\x78\xf1\x8c\x44\x7c\xee\xc3\x6a\x4d\x2c\x2b\x82\xe0\xd3\x5a\x10\x6a\x13\x88\x2a\x1d\xfd\xac\xc3\x72\x7d\xee\xd0\x76\x94\xfa\x9c\xf0\x3e\xd9\x96\x8e\x4e\x27\x6b\x2c\x71\x93\x4a\x9a\x08\x84\xb4\x14\xd3\x3a\xfa\x08\xf8\x5a\x05\x7c\xf6\x68\x68\xf3\x7c\x7b\xcb\xf1\x3b\x3d\xc2\x20\xe3\x55\xaf\x06\xbe\x0a\x08\xd9\x5f\xfe\x77\xcd\x21\x78\x8c\xd8\x60\xe1\x88\x00\xe4\x24\xda\x79\x5e\x16\xfe\x6a\x93\xb2\x6a\xdf\x64\x90\xf6\x41\x96\x6e\x7b\xc7\xb7\x3a\x4c\x52\x08\x81\x62\xfe\x89\xca\x8e\xff\xd7\xce\x8e\x3b\x01\x70\xaa\x4c\x60\x87\xf1\xf3\xf0\x8d\xea\x2a\xed\x65\x26\x61\x3e\x4d\x41\xd5\xab\x78\x64\x55\x35\x43\x2e\xa6\x03\x93\x80\x50\x06\x55\xd9\x3b\x4a\x78\xf7\x2e\x21\xc6\xa4\x26\xa0\x18\x93\x7e\xab\x6c\x29\xfd\x59\x6a\x9b\x78\xa8\x98\xad\x67\xb3\x6a\x2b\x6f\xd7\xf9\x7f\x3a\xe0\x91\x72\x5e\xe5\xb8\x53\x2a\x03\x3e\xf9\xf7\x2e\xce\x09\x27\x97\x58\xfd\xa0\x32\xc6\x52\x66\x59\x55\x39\xc2\x77\x1b\x32\xe2\x33\x94\xa6\x4d\x89\xbd\xa5\xa6\xde\xad\x99\xe8\x5a\x1d\xc5\xc5\x39\x9e\x69\xdc\xbb\xb7\x6d\xc2\x30\x1b\xb1\x7e\x35\x5b\x7e\xcd\x00\x08\xed\x19\xc7\x11\xae\xc9\x0f\x9f\x51\xdb\x8d\x81\x63\xb4\xe3\x9c\x92\xb6\xd7\x37\x1b\x3b\x4c\x0f\xef\x79\x0d\xf8\x7a\xb8\x67\xac\x7a\xac\xc2\xbe\x8f\x03\x85\x15\xfd\x69\x13\xb3\xda\x1b\x69\x24\xb4\x3c\x18\xe3\xfb\x81\x97\xd8\xbb\xef\x1a\xe8\x07\x26\x1e\x92\xa0\x63\x88\x94\xc2\xfa\x27\xa5\x6a\x62\xa5\x5f\xc4\xf5\x75\x4d\x7c\x69\xb2\x22\x61\x0e\x22\x29\x06\xae\x29\x0d\xf5\x49\x44\xc4\x58\x26\xf7\x02\xd5\x22\xdb\xea\xf8\x85\xf5\x95\xe5\x9a\x88\xee\xc6\x77\x78\xb1\x3d\x97\x2e\x92\x68\xed\x74\xbd\xd0\xc0\xd7\x2a\x4a\x2a\x0c\xfe\x0a\x75\x80\x75\xb2\xf1\x7c\xad\x48\x19\xa3\x39\xbb\x45\x61\xc7\x3f\xa2\x17\x45\x30\xc5\xb2\x57\x4e\xf8\xde\x41\xcf\xfe\x8f\x40\x8b\x39\x38\x10\x61\x98\x0e\x88\x9b\x87\xfd\x3b\x1d\x48\xf2\xf5\xf2\xc6\xec\xcf\xeb\xaf\xb7\xc3\x7e\x96\x92\xa3\x13\x2f\x91\x64\x3d\x4e\x9e\x7b\x8a\x82\x11\x21\x87\xe0\x3c\x25\x4f\xbb\x68\x96\xa4\x85\x0d\x86\x73\x73\x47\xd5\x4c\x1e\xc1\x57\xc0\x21\xf4\xd7\x58\xdd\xc8\x4a\xbe\xad\x68\xc7\xbb\xa9\xcd\x9f\x68\x39\x06\x85\xdb\x8a\x21\x81\x49\x30\x58\x56\x8c\x16\x34\x22\xfe\x4d\x30\xe3\xc2\x59\x5c\x2d\x1f\x6c\x9b\xaf\x75\x88\x43\x03\xde\x39\x8b\x89\x8a\x12\x3d\x6d\x51\x94\x5a\x9e\x58\xf6\x52\xf6\x6f\x93\xb3\xc1\x96\xbb\x29\x4a\xe7\x7c\x37\xc5\xda\x4e\x1a\x68\xda\x33\x26\x2b\x0f\x0b\xab\x4f\xf1\x3d\x60\x55\xf1\xf5\x72\x4d\xbe\x75\x49\xba\x9e\x9c\xe4\xcb\x81\x3d\x8c\xab\x03\x83\x1f\x5f\x73\xeb\xb9\x54\x59\x45\x68\x25\x9d\x23\x39\x12\x98\x99\xaf\xc0\x93\xc0\x41\xf2\x33\x06\xa9\xc9\x77\xd1\xb8\xc3\x98\x4f\x2e\xd7\xba\x30\xc1\x65\x43\xa2\x12\x48\x29\x6f\xea\x28\x0d\x58\x38\x74\x58\x60\x37\x9a\x1a\xcd\x0c\xf2\xed\x8f\x63\x70\xf7\x71\x69\xd7\x26\x91\xed\x02\x44\xce\x64\x8c\xa5\x82\x5a\x7c\xa6\x4a\x65\x77\x60\xc3\xa4\x3f\xda\x87\x69\xdd\x34\x1c\xc9\xca\xa6\x6d\x8b\xf6\x8f\xbb\x4a\xd2\xe7\xee\x58\x56\x87\x54\x24\xe2\x51\x5e\xd8\x4c\xc0\x98\x8e\x19\xb2\xfa\x19\xbe\xd1\x12\xd0\x79\x4e\x39\x48\x78\x68\xd7\x4a\x5f\x0d\xf9\x1a\x6d\x22\x44\xb8\x93\xb4\x7e\x44\x7f\x40\xb1\x4b\x40\x41\x09\x1e\xc5\x0f\xb1\xe2\xd0\x84\xc8\xc5\x3d\x24\xbb\x99\x90\x06\xa5\xaf\x35\x3e\x6f\x10\xb1\x4f\x40\x34\x11\x5e\x38\xb5\x5a\x16\xbc\x2f\x6b\x95\xdd\xea\x57\x5c\x54\x7f\xc0\xab\x82\x3b\x44\x5a\x3a\x4a\xba\xcc\xa9\x7e\xbf\x54\x53\xb4\x93\x16\xa4\xef\x2c\x56\xbd\x9a\xc5\xd2\x36\xd5\xe2\x87\xce\x94\x1a\xcb\x0c\x02\xc4\x87\xf8\x3a\x8d\x7d\x82\x6d\xbd\xaa\xb2\x12\x4c\xb9\x2c\xf9\x73\xf1\xa0\xe6\x62\x93\xf7\x5b\x8a\xf7\x8e\xa1\x66\x42\xf7\xd6\x00\x04\xea\x8e\x12\x9b\x2b\x3c\xff\x0f\x90\x22\x11\x48\xb2\xae\x01\x34\x6d\x5e\x42\xb7\x71\xc5\xc9\x85\x10\xae\x5c\xb1\xa2\xe0\x5a\x84\x82\xdb\xe6\x2d\xde\x3b\x75\x15\x9c\xca\x92\x61\x0f\xae\x95\x4a\x30\x11\x84\x18\x48\x46\xec\xa2\xc4\x97\x33\xf5\x07\x04\x8f\x75\xb3\xc9\x69\x2f\x6c\x16\x13\x69\xdc\xfe\xfd\x22\x6f\x8b\x48\x05\xe6\x0a\x89\x33\x0c\xec\xb6\xb1\xe2\x28\x65\x99\xe3\x37\x22\x93\x28\x06\xf3\x0f\xb0\x10\xf9\xc6\x25\x46\xd2\x2c\xea\x45\x24\x91\x70\x60\xc6\x39\x8a\xde\xde\xc2\x89\xc5\x70\x6e\x06\x51\x0a\x22\xb2\x9f\x8f\xed\xa6\x7d\xd3\xc4\x6a\x13\xa7\xf9\x28\x43\x55\x17\xf1\xf3\xba\xd2\x64\xb9\x22\x5d\xaa\x1e\x0c\x3c\x97\x86\xa3\xdc\x39\xbe\x42\xfa\xed\x73\xb9\x57\x5d\x88\x15\x46\x0b\x51\x4c\x5d\x55\xb4\x10\xb1\x62\xb1\xc3\xf9\x3a\x78\x56\xc9\x82\x11\x14\x86\xac\xa8\x4f\xb3\x69\xe8\x1b\xbc\x78\xf7\x1f\xba\x1f\xc1\xc7\x11\x83\x51\x12\xd1\x20\xb2\x5e\x73\x4d\x99\xda\xb1\x93\x0c\x08\x19\x45\xbe\xad\x16\xf5\x94\x16\xb4\x67\x55\x36\x29\xb2\xf1\x42\xda\xb3\x31\xe9\x8e\x09\x19\x97\xe2\xa1\x5d\x55\x4d\xd9\x8b\xd6\xcc\x27\x36\xcf\x19\xa9\xe8\xe8\xec\xaa\x53\x8f\x6f\x94\x33\x3c\x34\x85\xe5\xc2\x94\x68\x98\x55\x6f\x2e\xda\x66\x8e\x7c\x9b\xec\x5d\x4b\x15\x04\x57\x35\x73\x07\xfd\xbe\x3c\xad\x8d\x2d\xf5\x4d\x60\x87\x61\x45\x7c\x16\x28\xf1\x92\xdb\xa5\x6f\xf9\xbc\x3c\x96\x4e\xa2\x0d\x36\x4c\x33\x27\x37\x82\x12\xc6\x75\x55\x6d\x66\x04\x07\xc3\xd4\x1d\x64\x36\xb3\xb3\x69\x86\xd5\x2b\x79\x1b\x95\xc3\x51\x76\x7f\xd6\x84\xf3\xbd\x8c\xcc\x19\x8d\x11\x97\x35\x15\x58\xea\xbc\x07\x82\x99\x7c\xde\x16\x7c\x24\xb9\x76\x32\x57\x0c\xbc\xd0\x80\xc4\x9d\x69\x2f\xd8\x3e\xd1\xb9\xa1\x9e\xbd\x7e\x2d\x60\x91\x95\x27\x5c\x97\xd7\x20\xdd\x42\x36\x07\xa9\xd3\xd3\x75\x14\x9b\x6e\xfa\xa9\x4c\x01\x02\x82\x9f\x6a\x10\xf3\xf7\xd5\x66\xe8\xda\x30\xea\xb2\x24\xce\x2b\x7e\x6d\x7a\xb6\xa7\x35\x95\x20\x00\x7b\x30\x8b\xf6\xd4\xda\x95\x68\x38\xe8\x2b\x70\xb0\x63\x39\xf2\xb5\x72\xae\x2a\x5f\x5b\xe9\xd2\x60\x90\xe5\x08\x14\x10\xec\x1b\x52\xaa\xe2\x53\x44\x8d\xed\xea\x58\xfb\xc0\xbe\xe9\xb6\x0d\xd3\x24\x1d\x44\x00\x8d\xd4\x98\x6f\x84\x1f\xa7\x69\x9c\x87\x59\x3a\x17\x85\x91\x10\xe7\x89\x8c\x86\x4f\x15\x6b\xb2\xbe\x2a\x44\x2b\xe6\xd2\xac\x8b\x38\x01\x43\x73\x5b\x8f\xd3\xed\xb1\xc8\xca\x95\x62\xd2\xa4\xb0\x2d\x95\x8c\xe3\xe5\x2f\x4a\x36\x4e\x01\x22\x8a\xe7\x79\xad\xb8\x2a\xad\xaf\xd8\xea\x3e\x13\x5b\xe4\x93\xfe\xd8\x7c\x58\xe7\xfc\x50\xe5\x00\x55\xef\x1b\x7f\xbc\x7d\x24\xe3\x16\x66\xd1\xac\xb3\x85\xe2\x27\x78\xd4\xd0\x0f\x6b\xb2\xd4\xa1\x8d\x16\x6c\x97\xf8\xda\xe1\x10\x3d\x80\x47\x2b\xa1\x52\x65\x61\x14\x07\x9b\x74\xa2\x95\x81\x6f\xfd\xf9\x84\x42\x0e\x01\x27\x2b\x4a\xf9\xfb\x1a\xb5\xac\x38\x33\xff\x25\x06\x0b\x19\x3a\xad\xfc\x49\x16\xf0\x39\x8f\x71\xe4\x50\x0a\xd6\xe7\x2f\x89\x4a\x07\xc7\xf8\x6a\xcd\xa1\xf9\x90\xfa\xbd\xa4\xe1\xb7\x7a\x62\xe4\x03\xc0\xcc\x26\xe0\x6d\x45\x56\xfa\x10\x49\x45\xbc\xf0\xcf\x68\x7c\x1d\xe7\x95\xe3\xa1\x82\xa4\xa9\xab\xd0\x79\x29\x37\x48\x6d\x63\x89\x7c\x89\x83\x5a\x4e\x19\x32\x88\xd8\x63\x3f\x29\x15\xe4\xed\x07\xa5\x07\x28\x6d\x55\x20\xb1\x1f\x71\x8d\x8a\xe9\x94\x15\x7b\x77\x5e\x98\xc2\xee\xf6\xcc\xab\xdf\x0b\x94\x8d\x63\x61\x36\x94\xf3\x1e\xd0\x33\x23\x6d\x7f\x99\x80\xbb\x8a\x0b\xd7\xd5\x9f\xca\x9a\xde\x9d\x62\x33\x67\x7c\x98\x43\x2b\x1c\xd8\xe3\xea\x25\xd5\x44\x88\x86\x13\x25\x5b\xb5\xac\x1b\xab\x89\x29\xdb\x77\x1d\x7b\xc7\x51\x12\xbe\x7c\xc4\xa9\xa3\xd0\x34\x32\x26\xdc\x61\x13\x42\xe3\xd2\x7c\x92\x0a\x50\xd8\x86\x2b\x35\xcf\x31\x1d\xa4\x5a\x7b\xe3\x82\x46\xaf\x5c\x57\x54\xc5\xeb\x4e\xdc\x63\xce\x76\x6d\xc6\xfc\xb5\xee\xdc\xc1\x51\x23\x25\x24\xd5\x00\xd0\xea\x34\xd0\xd4\xcd\x45\xb1\xdb\x47\x9c\x91\x52\x51\xd9\x89\x31\x4c\xc4\x81\x3d\xed\xcc\x1a\x0e\x42\xb0\xd4\x6f\x07\x35\xbe\x9c\x6a\x3e\x31\x53\xf7\xb1\x56\x30\x21\x9b\x96\xbd\xe1\xed\x5b\x13\x17\xfd\xa7\x5a\x8e\xd3\x98\xf1\xdb\x92\x1b\xaf\xbe\x02\xd1\xc2\x43\x2d\xa6\x04\xf4\x05\x92\x8e\xd7\x69\x45\x60\xe5\x72\x4c\x8c\x4e\xad\x47\x9c\xe8\xc6\x17\xa3\x9d\x90\x3d\x31\xac\x02\xd1\x92\xa7\x57\xe6\x5f\x21\xac\x1e\x1e\x1a\xa8\x6e\x10\x18\xdc\xc0\x14\x48\x33\x91\x4f\x7d\x15\xfd\x2c\x9a\x2b\x5a\x6a\x55\x31\x2b\xb3\x94\xad\x1e\xd7\xe6\x3d\xb4\x45\x96\xc6\x76\x34\x20\x87\x15\x8f\x7f\x46\x3b\x9c\xf0\xe8\x90\x73\x5b\x6b\x48\x38\x4f\xb5\x4d\x2e\x59\xe0\x19\x8f\x5d\xdc\xad\x52\x25\xf3\x66\xc9\x0c\x0c\xa6\x94\xbb\xb7\x6a\x9d\x5c\x1b\x57\xc1\xcc\x81\x99\xb6\x4d\x9c\xaf\x23\xf2\xcd\xd5\x58\x8b\xae\x73\x53\x2d\xe8\xcd\x51\x24\xdd\xdd\x58\xa3\xe7\x15\x42\x6f\x3c\x06\xa9\xec\x76\x9a\xa4\xb5\xa4\x74\xa0\x2a\x04\x97\x9a\x72\x5c\xf9\x28\x07\x57\xc2\x8c\x43\xb1\xd3\x58\xf1\x8d\x82\x01\x76\x6d\x18\x47\xc9\x86\xda\x4e\xa9\x58\x33\x57\x28\x3f\x51\x2b\xfa\x48\xe2\x7d\xbc\x07\xf3\x60\x7b\x68\xe3\xe2\x2d\xee\xfb\x71\x69\x58\x8f\xe7\x1f\xd7\xad\xda\xbf\xbf\x9d\xa5\xb1\xdf\x4c\x58\x73\x37\x15\xc7\xc0\xcd\x26\xe4\x5c\x6e\xa9\xf7\x3d\x29\x54\xab\x14\xeb\x65\x6a\xe6\x7e\xd9\x8e\xbe\xc2\xdc\x4f\x17\x77\xd3\x9f\xc9\x58\xa8\x23\x6d\x25\x50\x0c\xd0\x97\x89\xed\x07\x36\x85\xd9\x3e\xf1\xcd\x37\x34\xca\xfb\xdf\x2b\x34\xe0\x04\x8b\x19\xba\x22\x80\x73\xe5\xdf\xc7\x88\x22\xb1\xf1\xfd\xd2\x37\x17\x3e\x2a\xbd\x19\x87\x96\x0d\xbc\xf4\x2d\x1d\x55\xa8\xfa\x71\xa0\x3a\xed\xee\x94\x0a\xae\xf1\x28\xa8\xce\x3d\x9c\xc1\xa7\xc6\x8e\xfc\x43\xaf\xb6\x17\xb3\x34\xe9\x75\x53\x8a\xf4\x5c\xf0\xf0\x2e\xbe\x82\x59\xe4\x4a\x5d\x88\x6d\xea\x68\x4f\xcc\x3c\xc2\x2d\x58\xaa\x35\xc5\x31\xf0\x63\x4d\xae\xf0\x28\xf0\x60\xc8\x38\xcd\x4c\x37\x9d\xd0\xa4\x2a\x3f\x53\x13\xc2\x56\x1f\xbd\x7f\x37\x02\x0f\xc5\x8a\x4d\xd2\x1b\xa5\x59\x2a\x7c\x47\x18\xbe\x0b\x6a\x28\x2f\x8c\x61\x60\xa6\x0e\xb5\x87\xf9\x52\xd8\x4f\x4d\x62\xe2\xa5\x1c\xc9\x64\x2c\x37\xa4\x10\xf9\xba\x7c\x6e\x2c\x0c\x16\x2a\x12\x29\xa7\x21\x73\x25\x64\xc4\xd4\x35\xc3\xa5\xd6\x60\xa7\x5b\x41\xbf\xbc\x4d\x63\xe6\xbc\xcf\xf6\x36\x4a\x40\x08\x15\xcf\xe3\xd3\x12\x37\xfa\x26\xaf\x1b\xb0\xfa\xfc\x57\x58\x4a\x12\x69\xea\x7e\xf2\x6e\x34\x1b\x5b\x6c\x09\xe6\x7a\x2b\xbd\x67\xbe\xd2\x50\x65\x6e\xa7\x61\x38\xca\x72\x00\x02\x59\xec\xa6\xa3\x08\xe7\x41\x10\x20\x3d\x21\xd5\xda\x16\x0a\xbe\xe7\x54\x52\x2e\x8c\x47\x79\xb4\x10\x41\x64\xfd\x35\xaf\xd1\x56\x7d\x8f\x64\x1c\xbd\x27\x92\xce\x15\x36\x79\xd2\xfb\x2f\xb7\xb0\x03\x81\x78\x7f\x0f\xbb\x09\xae\x04\x9a\xf3\x31\xb2\x28\x56\x61\x00\x1f\x90\x79\x41\xdc\xf6\x03\xa5\xcf\x7a\x03\x3e\x8d\xeb\x79\xde\xbb\xd7\xd3\x40\xfa\x2a\xd3\x9f\xe2\xa0\x71\x1c\x4f\xd3\x5e\x99\xde\xd3\xf0\x47\x0b\x36\x47\x04\x85\x8c\xd9\x13\xcc\x4d\x0e\xe4\x2b\xe7\x93\x30\xae\x68\xef\xc3\x29\xc2\xaa\x70\x30\x76\xeb\x4d\x74\xb2\x03\xe2\x9d\x44\x66\x16\x1b\x48\x4b\xa7\xd5\xb5\x32\xac\x8d\x9f\xa9\xfe\x0e\x45\x90\x7f\x4b\xa7\x30\xde\x7a\xb2\xa3\x75\x58\xc8\x1e\x38\xae\x07\x37\xe1\xef\x05\x0a\x30\xb3\x82\x03\x59\x24\x44\x68\x94\x61\x4e\xb8\xc3\x0e\x83\xf3\x03\x76\x84\x05\x59\x44\x0b\x12\xaf\x03\xb1\x3f\x9c\x52\x9f\x90\x57\xcc\x39\x57\x9c\xee\xec\x04\xa1\x72\x29\xab\x87\x86\x1d\x40\x91\x6b\x8a\x2a\xf3\x4b\xed\xc0\xdd\x51\x04\xde\x45\x96\x0e\x27\x7c\x66\x75\x5d\x25\x67\x1f\x94\x1e\x18\xf7\x43\x45\x8f\x96\xbf\x34\x9c\x68\xbd\xf0\x42\x6d\xc1\x93\x6d\xfc\xc7\xbb\x91\x1a\x02\xae\xe6\xb9\xb1\x84\xd4\xe1\x3d\xaf\x31\x9d\x18\xe1\x38\x1c\x41\xb7\xdb\x9b\xe7\x9b\xf8\x40\xe6\xe2\x74\x91\x9d\x4c\x5e\x41\x41\x6d\x39\x89\x39\x1b\x66\x69\x3e\xb4\x21\x1a\xbe\x35\xe4\xc3\x71\x44\x7b\xf8\xd7\xbd\xe0\xf9\x71\x5e\xac\xc3\x7b\x66\xb6\xf9\xc6\xa3\x7b\x35\x47\x51\xf9\x56\x97\x11\x20\x89\x7a\x9d\x97\x18\x42\x4d\x8c\x95\xa5\x02\x45\x5b\xb5\x1a\x3c\xef\xf6\x6e\x3e\x9a\xcd\x8b\xa8\x18\x51\x15\x94\xfe\x46\xe8\x44\x7d\x39\xe7\xea\x98\xdd\x98\x3a\xd4\x7e\x6b\x94\x45\xa1\x10\xe5\x39\x7a\x60\x4d\xf6\xbb\x31\x9e\x3e\xf4\x6a\x3b\x1a\x0c\xa2\x5e\xe6\x4b\xae\x98\xcc\x8b\x8a\x38\xf4\xa2\x02\xf5\x25\x66\x00\x14\x82\x50\xb0\xab\x5c\xfc\x97\xaa\x71\x8d\x05\x74\xb1\x62\xb6\x77\x3c\x2e\x8e\xf1\x76\x52\x97\x69\x28\x70\x2f\xa6\x59\xdc\x5d\xac\x56\x80\xa2\x5a\x04\x89\x08\x5f\xab\xb5\x39\x4b\x3a\x30\x9e\x65\x93\xfc\x58\x61\xdc\xdc\x78\x4c\x1c\xde\xd3\xee\xa6\x2d\x85\xe9\x58\xad\x71\xc0\x36\x11\x1c\x84\x26\xcb\x22\x49\xf9\x4b\xb7\x7f\xf5\xfe\x42\x24\x27\x91\xc8\xd0\x76\x6d\x5e\x64\x92\x49\x75\x1c\xd1\xae\xd2\x78\x5b\x81\xd8\xf3\xb0\x9f\xc6\x26\x83\x6e\x1f\xd2\xd1\x6c\x0d\x65\xc4\x5b\x5e\xfd\x56\x15\x15\xe2\x79\x96\xde\x46\x3e\xe8\x53\xc5\xcb\x72\x4d\x31\xc5\x9f\x2e\xbf\xaa\x28\x3d\x92\x22\x33\xd4\x21\xb2\x00\x3e\x10\x00\x7a\x7e\xa6\x64\x2a\xef\x94\x4a\x03\xe5\xda\x58\x72\xee\xd0\xab\xaa\x1d\xc5\xa9\xaa\x42\xcb\x8d\xaf\x1b\xfc\xf4\xe9\x76\x3a\x37\x97\xdb\x62\xc2\xeb\x96\xde\xa8\x35\x49\x4e\x78\x59\xe1\x77\x55\x8d\x27\x34\xc9\x82\x01\x20\x55\x50\x27\xd5\x93\x7a\xd9\x5b\x31\x4a\x66\xc1\x0a\xc4\x03\x4e\xdf\x8f\x02\x55\x89\xff\x51\x23\x8d\xd8\xf0\xa5\xc1\x4b\xf4\x09\xee\x94\x2a\x7d\x90\x7f\x65\xec\xbd\x2b\xe7\xb4\xc8\x0c\xca\xda\x2e\x49\xfb\x97\x4a\x3b\xfe\x2f\xc7\x3c\xb5\x23\x54\xe7\xcb\x86\x59\x94\x4b\x49\x4b\x92\x61\x3a\x33\xa6\x4e\xde\x30\x8d\x12\x6e\x5a\x15\x79\xf1\x96\x27\xe8\xa1\x05\x2a\x64\x3d\xd5\x51\x2f\x7a\xe4\x5f\x53\xa0\xb9\x7c\x98\x26\x79\x34\x1b\xc5\x51\x41\x8d\x00\x7b\xa7\x24\x07\x50\x2a\xf3\x71\x4a\x05\x0b\xf6\xa8\xcd\x42\x7a\x44\x8f\x42\xb9\xa8\xb9\x8e\x2f\xba\x04\x6b\x6c\x16\x4c\x96\xd2\xa0\xc1\xd1\xe6\x86\x0e\xbe\x29\xbf\xea\xfb\x66\x6a\x5c\x4b\xbe\x9c\x71\x59\x35\x96\x5e\x6e\xf0\xdd\x16\x8a\x97\x34\xc2\x9d\x31\x10\xb2\x89\x9f\xd1\x3c\x5f\x23\xda\x62\xe8\x0c\x40\x51\xfe\x24\xa5\x20\xe0\xb7\xde\x25\x23\x81\x28\xef\x8a\xd2\xfa\xe8\xda\x39\x4b\xc4\xd2\xf9\x36\xbf\x5a\x2e\xab\x76\x54\xce\x34\xa0\xbf\x92\x05\x0f\xa4\x4e\x0a\x6b\x8a\xb7\xfd\x80\x8a\x31\x08\xd7\xfe\x8e\xa6\x06\x6e\xcd\xc9\x26\x2f\x2e\xb7\x0b\x24\x8c\xe3\xfe\x0a\x84\x2f\xa2\x96\xd4\x20\x84\xda\x37\xc3\xa1\x75\x4a\xde\x30\x1b\x1c\xc2\xf1\x4d\x75\x4a\x08\x3d\x62\x3f\xcd\x8b\xd9\x51\x5e\x70\xc0\xf5\x9a\x97\xaa\xd7\x6b\x69\xa3\xc5\xdf\xbf\x5f\xf7\xb9\xb7\x3c\xaa\xfa\x2a\x0d\xa4\x80\x49\xbd\xcd\xe9\x8d\x18\xc8\x8b\xe0\x04\x87\x10\xc2\x99\xcf\x34\xdb\xfb\xed\xa0\x96\x9c\x8e\xa3\xc4\x92\xa8\x98\xb0\x5c\xdc\xc0\x1f\xbf\x4c\x7e\xeb\x75\x1e\x56\xdc\x5d\x50\x64\xf0\x48\xbe\xb8\x21\xde\xbb\xd7\xc9\x50\x78\xe7\xec\x04\x39\x3a\xf0\x6d\x4e\xd5\x78\x59\xec\xe8\xa8\x6a\xb2\x63\xe0\x33\xdf\x8c\x01\xd1\xa6\x0e\xb5\xbb\x26\x5b\x8c\x12\x31\xda\x42\x5b\xaf\x39\xec\x5d\x22\xcb\x54\x4e\xc9\x76\xcf\x60\x7c\x9f\xd6\x02\xbe\xfb\xc9\x8e\xb7\xd7\x1f\xa8\xea\x25\x70\x4e\x94\xe4\xf8\xa5\xe7\x3a\x1e\x2f\xb5\x79\xb9\x7a\x01\xb1\x05\x5a\x7a\xa5\x89\xbc\x8b\xb0\x18\x11\xed\x2c\x26\xed\x46\xe2\xfd\x01\x36\x8a\x94\xfd\x95\x7e\xdc\x39\xd7\x63\x57\x99\x7f\x13\x11\xa4\x76\xff\x7e\xf6\xba\x18\x3f\xef\xa8\xb3\x7c\x0e\x67\x53\xe7\x2b\x8a\x90\x38\x8b\x0a\xae\x0d\x68\xed\x4a\xbe\x56\x58\x99\xdc\x24\xdd\xc5\xca\xf1\xd0\x5e\x6e\xb5\x98\xf8\xba\x7c\xc2\xf7\x1f\xbe\x44\x48\x05\xe1\x84\xc7\x22\x70\x39\xdd\xe9\x69\x87\x0a\xa7\x29\x10\xaa\x47\x27\x6f\x61\x06\xa2\xce\x8b\xd8\x42\xbe\x01\xef\xf5\x44\x47\xf1\x92\x4c\x2e\x7b\xa7\x65\xde\x14\x69\x8b\x42\x3a\xf1\xc7\xe9\x3b\x84\x6e\x4d\xaa\x3e\x73\x86\x52\x81\x13\xaa\x6a\xb5\xa9\xe3\xeb\x1c\x48\x2b\x32\xf7\xf5\xd8\xe9\x72\x64\xa6\x1d\x9b\xa2\x8a\x42\x5d\x73\xcc\x5a\xa0\x14\x96\x2e\x23\x87\x2c\xf3\xe3\x7d\x81\x70\x94\x17\xe9\xc0\x66\x93\x5e\x3b\xe4\x6f\x31\x27\x78\x91\xff\x39\xf0\x05\xdc\xe3\x1a\xe4\xfd\x81\x42\x6f\x2f\xd9\x58\xd0\xdb\x02\x1c\xad\x9e\x83\xaf\x55\x2b\x42\xd7\xce\x99\x51\x5c\x30\xcc\xde\xf9\x7a\x53\x87\x38\xda\x3a\x4e\xb3\x80\xa6\x87\x2d\x2a\x75\xf8\x48\xe9\xee\x1e\x57\x58\xe0\xcc\x0e\x4c\x94\xe4\x5b\xaa\x6f\x60\x29\x78\xe4\x24\x04\x8a\xe6\x27\xf5\x87\x8a\x90\xf1\x56\xa0\xd2\x06\x1f\x36\xee\x4c\xb1\xd9\xb4\x70\xe1\x66\xd4\x84\x03\x56\x55\x1b\xfc\xe6\xce\x33\x35\x87\x87\x0a\x89\x2d\x42\xf0\x08\x07\x0b\x95\x42\x85\x9d\xa5\x49\x91\x26\x2f\x46\x83\x2a\x50\xaf\xa6\xc1\x55\x33\x3c\x37\x8b\xf2\x39\x87\x66\x04\x20\x37\x1e\xff\x73\x9a\x20\xe4\xd5\xb6\x74\x5a\xdf\xfa\x35\xa7\x0d\x5a\x4d\x81\x22\x84\x39\xe8\x10\xba\xf4\x1a\x22\x3a\xec\x5d\x81\xd9\x6c\xc4\xc4\xe7\x9c\x5c\x09\x14\xbf\xf3\x4a\x83\x43\xd3\x4e\xb3\x5e\x3d\x3d\xf8\x69\xe9\x0f\xea\x4f\x9b\x12\x9d\x5f\x27\x16\xd1\x96\xb3\x06\xef\x3f\x4d\x4b\x9c\xaf\x97\x7d\xd5\x28\xec\x67\x4b\x79\x6c\xb3\x49\xcd\x3e\x8d\x3d\x20\x87\x91\x77\x6e\x57\x35\x1f\xf7\xed\xb1\xf9\x94\xe4\x6f\x4c\x14\x08\xd5\x3e\x70\x7e\xee\x3f\x39\xe8\x56\x61\x43\xcf\x5c\x94\xe7\x23\x3b\x49\x13\x29\x56\x42\x29\xad\x5d\x53\x6c\x9a\xbb\x3a\xbe\x80\x76\x7f\x6c\x82\x8f\xcc\xc0\x11\x4e\xe3\x5a\x5f\x2f\xbb\x1a\xc2\x21\xa4\x19\xe1\xfa\x09\x0e\x2f\x84\xf9\xd7\x75\x6c\x7c\x8a\xad\x0e\x0e\xa9\x2f\x4a\xef\x4f\x5e\x0f\x14\x64\xfe\x24\x76\xb1\xa8\x3f\xf8\xec\xe2\x1a\xb9\x29\xa2\x1a\xe2\x81\x54\xc9\x28\xb3\x83\x59\x9b\xf5\x26\x2a\xe3\xe9\xa4\x6c\x1c\x51\xca\x5d\xdd\x6c\x77\xba\x99\x57\x30\x1e\x28\xed\xb3\x93\x4a\xfb\xec\xa4\xea\x15\x4c\xb3\x79\x3b\x98\xd4\xaf\x4e\x53\x29\xc3\xe0\x3b\x60\x6f\x20\x0b\x24\x2c\x90\x3b\x1c\x7e\x79\xb2\x75\xe8\x55\x4e\x01\x6c\xed\x54\x56\x87\xe5\x01\xe8\xb3\x9a\xda\x5c\x7a\x5d\xfc\x22\xef\x66\xd6\xb0\x1e\xb1\x48\x74\x54\xc3\x21\xd2\x1d\x3e\x73\x36\x30\x5c\x99\xa9\xd6\x8b\xc4\x42\x64\xb6\x04\xde\xa0\xe8\x2e\xec\x5b\x70\x21\x71\xe4\xfc\xa8\xc6\xa6\xf3\x23\x55\x0b\x1d\x44\x49\x34\x88\xde\xe2\x7c\x5c\x13\xbc\x63\x9c\xbb\xfd\x35\x47\xc9\xc1\x9e\x99\x68\x1b\xb4\x1c\x13\xf3\xb8\xde\xe5\x0b\x2f\xb4\x4d\x3e\x2f\x9f\x70\x44\xae\x5e\xd9\xfa\x92\x82\x30\x98\x2e\x63\x42\x70\x96\x63\xd2\xf9\x7a\x6c\x33\x4d\x4f\xb7\xc3\xd8\x64\xd1\x9c\x83\xea\x33\xa7\x0e\x1c\x3f\x21\xd8\xf1\xfd\xca\xb3\xa3\x38\x8e\xea\xf4\xce\x9f\xf0\x12\xe6\xbb\xb1\xf0\x8d\x2a\x22\x47\x3d\x42\xdf\x11\x4b\xf8\xba\xf9\x15\x07\xb0\x1d\x66\x51\x12\x46\x43\x78\xfd\x87\x95\xb7\xeb\x3d\xdf\xb1\x97\x20\x4b\x34\xcc\x6c\x6e\x58\xd3\x8f\x3b\x39\xd4\x36\xb9\x54\x6e\xa0\x87\x9b\x3a\xd4\x9e\x3a\xb4\xbd\xe5\x28\x74\x3e\xc2\xe3\x60\x89\x71\x15\x99\x7b\xe1\x78\xfe\x45\x32\x42\x71\x38\xff\x5f\x4a\x48\x74\xf7\xb2\xc2\x08\xde\xd4\xdd\xaf\x37\x1e\xdb\xac\x1f\xa6\x83\x61\x6c\x8f\xb6\x7c\xfb\xfd\xa7\x81\x82\x02\x7f\xaa\x8c\x48\xf2\xd2\xc2\x4b\xe4\xfe\xab\x66\x0c\x51\x2a\xbd\x1a\x28\x4f\xcb\xf4\x12\x8b\x10\x93\x0f\x08\x24\xef\xe4\xb4\xf0\xdf\x98\x19\x56\xf7\x73\x3e\x45\xf5\x8d\xc2\xe8\xb7\xd1\xe8\xed\xdd\x4b\x4f\x6b\x32\x59\x27\xf0\x1b\x2e\x06\x8a\xe7\xf7\xe2\x98\xa9\x3c\xbc\x67\xa6\x9d\x8f\x38\x4d\xe6\xc0\xec\xec\xcb\x60\xcb\x5f\x52\xc4\xc7\xe3\x11\x06\x4d\xed\x5c\x6c\xbb\x3d\xef\x4d\x49\xee\xae\xfa\x1c\xb8\x95\x6f\xa9\x96\xf9\x53\xce\x05\xab\xf6\xfc\xc0\x26\x8f\x27\xa9\x7e\x46\x9d\xc2\x51\x32\x37\x22\x56\xdf\xca\x40\x00\x51\xbc\x02\x03\xc1\x37\x4d\x98\x93\xe1\x28\x1b\xa6\xb9\x8c\x08\x3c\xbb\xb7\x4b\xd5\xa9\xf8\xf6\xd8\xd4\xef\x9b\xae\x0e\xc3\x28\x2f\x22\x93\x44\x05\xf0\xd0\x58\x33\x90\x52\x90\x9b\x60\x97\xaa\x65\x87\x5d\x38\xaa\xc2\x36\x4a\xbf\x20\xf2\xca\x2d\x25\xf0\xaa\xe8\xbd\x33\xbb\x08\x73\x21\x82\x10\x64\x2e\xc4\x9c\x4a\xa6\xa9\x88\x32\x6a\x10\xe5\x18\x1b\x4f\xfd\x85\x62\x7b\xfb\x42\x9b\xfa\x81\xed\x81\x99\x4e\xd6\xdd\x84\x17\x15\xbf\xaa\xea\x14\x6f\x8e\x4c\x1c\x15\x4b\x5b\xe9\x85\xa4\x83\xcf\x4b\x95\x88\xf0\x9f\xeb\xf3\x73\x71\xe3\x07\xb4\xcf\x11\xc7\x31\x7a\x04\xce\xea\xfd\x46\x51\xb8\xac\xe7\x0a\x84\x38\xc4\x2f\x2a\x9d\xf0\x8b\x1a\xa7\x6b\x07\x69\x2f\x33\xc3\x7e\x14\x62\x50\x60\xcc\xd1\x79\xc5\xd7\x4d\xcc\x73\x79\x61\x32\xc7\x98\x0a\x63\x78\x19\x27\x31\xdf\xb8\xe2\xd6\x42\x15\xe1\x64\xcc\x59\x23\xdc\xc1\x2a\x84\xf8\x0b\x05\x99\xcb\x87\xd6\x76\x29\x7b\xe0\x78\xf2\xaa\x55\x87\xb5\x7c\x1f\xe9\x5e\xbe\xc1\x4e\x41\x62\xeb\xac\xd2\x01\x7b\x5f\x75\xdb\x9c\x80\x49\xc2\x08\x9e\x1a\xdb\xb9\xaf\xbf\xde\x9e\xb7\x4b\xb3\xa9\xc9\xba\x93\x2a\x6a\x86\xb6\x83\x63\x6b\x72\x49\x15\x30\x09\x08\x19\x88\x4e\x2d\x85\xe9\x80\x3c\x55\xd8\xc8\x0b\x00\x78\x60\xac\x8f\x07\x9e\xcb\x0e\x0a\x6c\x0e\xd6\xea\xff\x06\x8f\xc9\x9f\xfe\xcf\xf4\xba\x47\x49\x0d\xd6\x5e\x2a\xbf\xf5\xb2\x8a\x16\xc2\xd4\x84\x7d\xcb\x41\xa5\x28\xb7\xb6\x94\xa2\xab\x6f\x99\x1c\x98\xb0\x1f\x25\x36\x5b\x82\xa8\x13\x57\x58\x50\x3c\x00\x4e\x01\xaa\x74\x52\x7a\xf1\xd0\xa7\xe3\xb4\x42\x04\x31\xec\xe9\xfd\xb2\x34\x9c\xb7\x73\x55\xa0\x04\x4a\xd2\x75\x52\x4c\x98\x59\x1f\xa7\xc7\x24\xdd\x95\xc1\x30\xca\x10\x0d\xb8\x76\x16\xdf\xda\x12\xf8\x32\xf4\x9b\x0b\xa1\xa6\x42\xd5\xf5\xd0\x77\xc6\x8f\xbd\x57\x0f\xb6\x33\x9b\x47\x5d\xa1\x1b\x73\xfc\xcf\x9e\x55\x47\x49\x82\x86\x59\x54\x44\x61\x94\x0f\xb6\xf8\x4e\x80\x93\x14\xad\x01\x64\xf0\x76\xa0\x5a\xd4\x15\x4d\xf5\x47\x8a\x1c\xfc\xed\xc6\xd7\xcb\xc3\x94\xd9\xec\x5f\xe3\xe2\x00\x13\x3e\xf0\x8d\x43\x2d\xf6\xb2\x74\x71\x8b\x6a\x21\x42\xb7\x3f\xca\xf4\x5b\x3b\x9a\xda\x10\x9f\x17\xa2\xe8\xea\x61\xb0\x21\x6a\xed\x0a\x76\xd4\xb3\x69\xa1\xa8\x32\xaf\x6a\xaa\xcc\xab\x8a\x70\x7f\x31\x8b\x8a\xc2\x26\x38\x3f\x6a\x15\x13\xe0\x5f\xfe\x45\xe9\xfb\x61\x56\xea\x15\xba\x84\xf9\x82\x9d\x8c\xa7\x1b\xbc\x77\x15\xa4\x31\x1f\xa6\x45\x8b\xd5\x4c\x5a\xfb\xf7\xaf\x5f\x1b\xab\x99\x1f\xd8\xd3\xb6\xc9\x1b\xe9\x12\x9d\x83\x80\xfa\x3c\xc2\xee\x16\xb1\xc2\x96\xa7\xad\x6b\xaa\x2b\x2e\x44\xb6\x48\xcc\x40\xb3\x87\x96\xaa\x4e\xbc\xaa\xda\x10\x17\xcd\x3c\x29\x77\x1e\x74\xf0\x13\xd5\x87\x86\x96\x50\xc4\x49\xeb\xa5\xe2\x33\xe2\x4c\x86\xa0\x54\xbe\xea\xd1\x20\x51\x1e\x66\x76\x68\x92\x90\xbd\xc4\x69\xd7\x30\xe1\x93\x38\x97\x94\x13\x52\x98\x5c\x78\x20\x60\x07\x5a\x70\xa8\xf8\x66\x79\x03\x09\xd1\x91\x99\xea\x9c\x87\x1b\x8f\x8a\x31\xf7\x6b\xf1\x8d\x07\x11\x13\x3c\x9d\x6b\x52\xae\x49\xcf\x73\x74\xf8\xec\xce\x9c\xc9\x42\xc0\x13\xc4\x41\xf6\xda\xd9\x48\x9d\x32\x45\xa4\xca\x7b\x24\x66\x40\x4c\x3c\x7b\xf7\x72\xa0\x76\x9b\xac\x17\x5f\x37\x24\x69\xbe\xde\x9e\x8b\x98\x96\xc2\x31\xc4\xbb\xfc\xc2\x95\xf2\x49\x1f\x28\x84\x22\x0c\x21\x44\xa3\xaa\x88\x3c\xce\x34\x7a\xe8\x55\x70\x42\x2a\xc1\xa9\x6d\x1d\xdf\x2e\x06\xce\x14\xc4\x0a\x27\xc7\x8a\x5e\x7b\xa7\xda\x79\x3f\xcd\x8a\x39\x13\x43\x71\x00\xe6\xe3\xa1\x92\xc3\xe2\xe6\x58\x44\x3e\xd7\x14\x79\x59\x92\xce\x66\xb6\x67\x26\xbc\xbe\x27\xef\x28\xa4\x6b\xef\x93\x55\x00\x6e\xe3\x6c\x53\xf7\x5f\x98\x26\xa1\xed\x5a\xcd\x76\x70\x59\x89\xff\xb3\xac\x2f\x4e\xad\x71\xa6\x57\x39\x01\xd2\x6c\x1b\xfd\xa8\xeb\x46\x75\xd2\xde\xa8\x7e\x2a\xca\x03\x2f\x39\x55\xcd\x1a\x55\xbb\xdf\x46\x4b\x0c\xbc\x75\xee\x32\x79\x9c\xe2\x23\x19\xaf\xbe\x8d\x04\x71\x2b\x51\x92\x8a\x98\xc6\x0b\x79\xaf\x1e\x6c\xcf\x66\x29\x45\x59\x74\x52\x33\x12\x3a\xf0\xcd\x1c\x47\x1b\x7e\xc8\x11\x3d\xa9\x52\x3a\x52\x0e\x7c\xdd\xd0\xd4\xd8\x1e\x25\xdd\x11\x79\x66\x33\x7e\x34\x0f\xec\x91\x6b\x9d\x89\x8b\xf2\x30\x1d\x25\x05\x99\x76\x9c\x7f\x77\x02\xcf\x4a\x8a\x73\x11\x0b\x19\xa1\x14\xff\x3b\xd9\x85\xf5\x33\xa5\xce\xc1\xbd\x39\x8a\x32\xbb\x8d\x1e\x13\x01\x10\x34\x47\x81\x07\xfc\x79\xa0\x82\xed\x35\x80\x0c\x90\xfa\x3c\xaf\xd4\xce\x6f\xd1\xc6\xe1\x7f\xd7\xf2\x16\x9a\xf6\xb4\x1b\xe5\x89\x5d\x52\x1c\x46\x57\xeb\xed\xc4\xcf\xd7\x34\x59\xe6\xe6\x2c\x8b\x95\xee\xdf\xef\x72\xb9\x2d\xc7\x02\xb1\xaa\xe0\x2a\x5c\xa5\x2c\x52\x21\x49\x61\x92\x83\xa0\xc6\xda\xe8\xd1\x45\xa3\x84\x18\x6f\x48\xf7\xd3\x79\x31\xef\x29\x2f\xe6\xbd\xa6\xfa\x78\xd7\x86\x82\x1a\xc7\x31\x75\x5f\x01\x9c\xef\xab\x9c\xac\xc9\xb2\xb4\x67\xaa\xb9\x99\xf6\x99\x09\xa5\x6f\x71\x49\x91\x30\x71\x43\x88\x94\xab\x68\x7d\xb1\x2a\x78\x93\x3c\xce\x20\x4a\x84\xaa\x4f\x1a\x0b\xb4\x68\xcd\x58\x56\x67\xef\x5e\x22\x0c\x20\xbb\x02\xaf\x7d\x13\xd0\xc4\x0e\x2a\xea\xfa\x3d\x6e\xa8\xc3\xcd\xc4\x79\xfa\xb4\x37\x25\x27\x14\x99\xc7\x7d\x60\x96\x71\x04\x70\x4e\x49\x84\xeb\x2a\xff\x70\xfd\x1a\xfa\x46\x94\x7e\xdf\xb4\xa3\xa3\xa7\xd7\x93\xbd\x49\x0f\x8e\x55\x02\x17\x54\x30\x29\xb4\x28\x38\x35\x4b\x32\xff\xa8\xfd\x7f\x17\x63\xa8\x0a\x5b\xe2\x27\x6f\xeb\x78\x8c\xc4\x05\xaa\x12\x0b\x47\xea\x46\x43\x3b\x73\x60\xa6\x9d\xd2\xa2\x3a\xb0\x47\x83\x19\x7d\x3b\x75\x43\x1a\x31\x8d\xdd\xd6\x97\x86\xf5\x96\xe3\x5b\xb8\xaa\xce\x93\xd8\x2c\xe6\x69\xb2\xa5\xfa\x6e\x81\xf8\x29\x96\x71\xd6\xc5\x64\x36\x0b\x6c\x2b\x38\x2e\x0f\x95\x29\xf1\xc4\x8f\x8b\x51\x92\x90\x30\x69\xcb\xaf\xa3\x0b\x4a\x10\xe6\x82\xf2\xd5\x63\x53\x44\x49\x4b\x95\x1e\x56\x55\x8b\xc5\xaa\x6a\x2f\xcb\x47\x21\xe7\x6f\x61\x85\x2e\x52\xdd\x8e\xaf\x95\xef\x18\xdb\x05\x9b\x99\x9e\x05\x0f\x2c\x36\xf9\x9d\x40\x71\x13\x00\xcb\x06\x07\xea\xc3\x6a\x19\xad\x6f\x43\x3e\x84\xff\x89\x8e\x5f\x47\x49\xec\x64\x04\x2e\xbb\xbc\xd5\x7c\x96\x26\x69\x46\x0d\x0d\x82\x55\xae\xbe\x11\x63\xb5\x46\x8f\x25\x2d\xe4\xca\xa4\x3f\xd9\xf1\x69\xbb\xa9\x03\xcc\xe3\x07\xaf\x61\x82\xbc\x78\xe9\x9e\x27\x1b\x84\x83\xf9\xae\xb2\x41\x83\xb4\x88\xc4\x73\x15\xb4\x9f\xc2\x4a\xe9\x1e\xcc\xbe\xe9\xee\x72\xd5\xc4\xff\xff\x33\x80\x58\xe3\x10\xfe\x87\xd8\x44\xf0\x0a\x9f\xeb\xa8\x42\xda\xd3\xd4\x2b\x03\x9f\xb6\x45\xed\x99\xae\x3e\x75\x78\x8f\x90\x79\x70\x34\xac\x3a\x63\xbd\x16\x70\xbd\xbf\xd2\x11\x93\x9c\x25\x50\x61\xb5\xb9\x66\x0e\x38\xf2\xfc\x31\xfc\xc0\x81\x3d\xed\x28\x31\x61\x38\xca\x4c\x01\x67\x42\x2a\x5d\x0a\x2c\x87\x3c\x0a\xcc\xd6\x3d\x75\xa4\xd8\xa3\x21\xd8\x5d\x68\xff\x0a\xd1\x07\xed\x39\xa7\x8c\xec\x16\xdf\x95\x92\xd2\xea\xfc\x57\x63\x04\x0e\x87\xf7\xb4\x07\xc4\x57\x77\x78\x8f\x6f\x27\xab\x86\x4c\xa1\x52\x60\x69\x06\xc3\x18\xc2\xc4\x08\xbf\xb6\x77\x6a\x24\x38\x8a\x1b\x05\x79\x56\xd7\xef\x74\x44\x20\x99\xc7\x1b\x68\x1a\xdb\xdd\x74\x34\x1b\xdb\x49\x2f\x36\x76\x97\xcc\x02\x1f\x69\x4a\x20\xe8\xf7\x54\xe3\x6e\xa3\xc2\xc7\x6c\xca\x10\x21\xa1\x39\x55\xd5\x97\xb3\x63\xc7\x84\x23\xe5\x24\xd2\x0c\x6a\x75\xff\x0f\x44\xf2\x2b\xa2\x87\xeb\x3b\x2b\x8b\xb6\x7e\x86\x7e\x16\xd6\xeb\x51\x1d\x20\x5c\x99\x19\xe9\x66\xf2\x6c\xe6\x57\x54\xdf\x55\x48\x68\x73\x4a\x27\xa0\xe5\xf4\x76\xa9\x0a\x7b\x80\xf5\x88\x60\xb8\xef\x9d\xbe\x8c\x44\x23\xf6\xca\x39\x1a\x0e\xf0\x35\x6c\x5f\xf6\x91\xf0\xe6\x8e\x74\x63\x75\x23\xd8\x1d\xee\x70\xa5\x8a\xac\x74\xbb\x36\xc8\xd0\x59\x43\xcc\x4b\xaa\x53\x05\x92\xce\xae\xeb\xde\x33\x3f\x5c\x6f\xea\xdf\x4b\x49\xff\x98\x29\x9d\xf1\x05\x1f\x29\xe1\xb7\x8f\xea\x52\x60\xa3\xc1\xa4\x07\x22\xaf\x6a\xc1\xee\x40\x55\x03\xca\x1a\x66\xa6\x89\x9c\x6f\xb1\x6f\x8a\x56\xb5\x94\x14\x79\xb8\xf7\x30\x7d\x15\xbc\x5a\xa4\x4e\xc9\x4e\xa8\x2c\x55\xab\xd3\x38\x97\x65\xe5\x34\x56\x3e\x9a\xcd\x1c\xd9\xa7\x74\x6c\xaa\xb6\x71\xad\x42\x4d\x6c\x52\xd5\x10\x4e\x3b\xc5\xf2\x73\x4a\x98\x19\xe4\xd2\x42\xb5\xd9\x44\xc4\x81\xfe\x72\xfa\x29\x87\xa9\x75\xf8\xb4\x07\xca\x5d\x32\xd9\x6c\x54\x64\x26\x8b\x58\xd3\x6c\x9d\xc0\x2c\xeb\x97\x15\x8c\xaa\x17\xa7\x79\x0e\x75\x09\xfc\x3c\xf8\xa6\xf8\x5a\x35\x12\x8e\x86\xbd\xcc\x74\x6d\x97\xa3\x1d\x39\x45\xf5\xf1\xea\xa3\x22\x13\x16\xba\xfb\x9e\xdb\x08\x04\xbb\x50\x7d\x06\xe7\xf6\xb7\x4b\xaf\xbc\xfc\xed\x40\xcf\xbc\x2d\xf2\xaf\xd2\xf8\x39\xd0\x6b\x65\xd7\x60\x14\xa0\xa9\x09\xd3\xf9\x65\xa0\xba\xe1\x6f\x12\x10\x04\xae\xcc\x3a\x2d\x10\x54\x38\x1f\x6e\xb0\xc3\xd5\x12\x77\x14\xa8\x95\x9f\x0b\x33\x0b\xed\x00\x97\x99\x38\x30\xe3\x14\xd1\x55\x27\xff\x5d\xc0\x6a\xb1\x8b\x8e\x69\x50\xc6\x93\x60\xf1\x60\x12\x7d\x44\xdc\xd2\xcf\x5e\x4d\xaf\x53\x79\xae\x0c\x2d\xb6\xea\x8a\x16\x3b\x39\x4e\x23\x0f\x1a\x97\x67\x69\xab\x22\x61\xfc\x3e\xb1\x15\x0a\x77\xf4\xf3\x1a\xbb\xdd\x37\x49\xcf\x8a\xfc\xa4\x38\x71\x67\x94\x5d\xb8\x1c\xd4\x78\xf7\x36\x1e\x23\x53\x87\xaa\x88\x92\x00\x89\x92\x82\x87\xf3\x78\x4e\xe9\x97\x3f\x52\xdc\x49\x37\x14\x9e\x63\x10\xc5\x51\x61\xb2\xa5\x1d\xf4\x39\x6c\xc5\x07\xaa\xbf\xf2\xa2\xea\xaf\x9a\xe8\x28\xd0\xf5\xe5\x52\x6b\x6c\x63\x3d\x88\x03\x41\x8f\xcb\x8c\xe6\x34\x83\xe2\x4d\xa8\xb2\x5d\x6b\xd9\x8b\xf5\xbf\x61\x8b\x7a\x2e\xc0\x25\x89\x7f\x02\xab\x80\x39\x3f\xad\xea\xa7\x99\xcd\x23\x86\x43\x55\xf3\x25\x39\x45\x9a\x16\x49\x36\x8e\xd3\xf3\xb7\x4d\x52\x44\x61\x34\x34\x45\x5d\xae\xe4\x9a\x92\x2b\xb9\xa6\x12\x25\xb3\x94\xbe\xe3\xdd\xa2\xd9\xbb\xc4\xff\x70\x62\x01\xfd\xa5\x3c\x0a\x23\xc3\x3c\xb8\xac\x07\xa8\xe0\x53\xdb\x3b\xfe\x08\x69\x2d\x37\x70\x0e\x8c\x86\x79\x68\x58\x0f\x88\x23\xe8\xa0\x5e\x54\x75\x79\x5e\x43\x6a\x6f\x4e\xf8\xfd\x2e\x1c\x75\xcc\x17\x00\x85\x22\x40\xd9\xa0\x83\xc4\xe8\x11\x7a\x79\x24\x38\xb9\xcd\x85\x6f\x54\xb3\xfc\x30\x4b\x0b\x4b\x83\xac\xdf\x8a\x59\x30\xb4\x7e\x21\xe6\xed\x6e\x13\x95\xc2\xbc\x8d\xe3\xb4\xd7\xa3\xc7\x75\xd0\x46\xc7\x23\xc0\x12\x51\x70\x42\xef\xb9\xd1\xec\x46\xf9\x20\xca\x73\x49\xec\xa3\xa8\xcd\x4a\xa9\x7c\x33\xf6\x5b\xd3\xd3\xed\xa2\x1f\xd9\x05\xb1\xfb\x12\x0b\xd1\x93\xf3\x8d\xe6\xb5\x8b\x6d\xb7\xe7\x0c\x21\x0c\x01\x87\xc2\x7c\xd3\x00\xf3\x9b\x69\xcf\x3a\xd0\x2f\xe6\x85\x1d\x0c\xbe\x71\x42\x37\xa1\xc9\xba\x91\x09\x27\x5b\xbf\x3e\xe5\xb9\x0b\x0e\xef\x11\x18\x1b\x8d\x00\xe2\xc6\x27\xc8\x0d\xc6\xf5\xba\x07\x18\xa7\x31\x25\x83\xab\xdf\x72\xad\x8e\xbb\x3b\x7e\xe0\x76\x2f\xfb\x6a\x0e\xbc\x27\x34\xba\xc3\xe1\xfd\x6d\xec\x03\xbe\x71\xe9\xb9\x7c\x98\xa5\xa3\x02\x79\x3c\xe1\x66\xad\x76\xa7\x70\xb6\x36\x78\x66\xb3\x76\x2e\xcd\xa0\x55\x0a\x6f\x0c\xd9\x66\xb0\x02\x3d\xd5\x51\x1d\x6d\xb0\x00\x88\x36\x26\xd5\xd3\xe5\x44\x08\xb9\xa4\x85\xc1\xe0\x02\x88\xfa\x83\x77\xe1\xf7\xff\x97\xff\x64\xc2\x43\x88\xd0\x6b\xcc\xc9\xe0\x52\xd1\x77\x5e\x6e\x52\x21\x31\xbd\x34\x89\xde\x72\x09\x1c\x38\x32\xa0\x23\xe1\xeb\xce\x2e\xad\xdc\xc9\x72\x07\xe2\xae\xd1\xd3\xf1\x8d\xda\xff\x8b\xa6\xe8\x5b\x2e\xa6\x3b\x47\x42\xa9\x9a\x3e\x46\x0f\x65\xc1\xc4\x92\x7b\x80\x07\x8d\x2a\x20\x5f\xab\xba\x17\x13\x59\x0e\xa4\x42\x00\x97\x0d\x6c\x9c\x7c\xed\x2a\x58\x64\xba\x46\x31\xbe\x16\x67\xe8\x35\xe5\x64\x5f\x73\xbc\xb2\x26\x8e\x6d\x8f\x30\xfe\x9c\x36\x03\xc9\x06\x80\x97\x7c\x3d\x36\xd7\x47\x66\xda\xfd\x28\x93\xf0\x55\xba\x71\x74\x6b\x8e\x72\x69\x07\x69\xd2\x35\x4b\x3b\xab\xc3\x15\xab\xfb\x6f\x15\xdd\xc6\x23\xec\x53\x9c\x0b\x5f\xd0\x02\x53\x28\xf0\xd7\x38\x87\xc0\x28\x5c\xa7\xd6\xe3\x50\xfd\x9b\x3a\x0a\xb0\x78\x06\x50\x2e\x1c\x61\xd7\x03\xef\xf9\x1e\x6b\xf2\x4a\x49\xd2\xc7\x66\xa2\x51\x8b\x4f\xbd\xab\x79\xf9\xdf\xf5\x48\xe7\x68\xde\xc6\x4b\xdb\x7d\xd1\x73\xad\x74\x7e\x69\xf8\xb5\x65\x5f\x6e\x38\xa3\xc5\xed\x97\x4b\xc5\x7c\xf8\x65\xe9\x02\xa1\xf3\x2f\x10\xe0\xb3\x56\xe5\x40\x4a\xe5\x98\x4a\x64\xe5\xc3\x34\x2b\xf2\x45\x6b\x32\x2c\x52\xc1\xaa\x6a\x10\x6b\x13\xb6\xb8\x6f\x1c\x11\x11\x36\xe1\x59\x3c\x06\xdf\xa8\xfa\x54\x1c\x21\x3a\x13\x7d\x9c\x96\x92\x4c\xa0\x87\x42\xa8\x7b\xa3\xf4\xf8\x93\x63\xa5\x8a\x87\x8f\x35\x35\x7a\x56\x0e\x4a\x62\xe3\x96\x16\xbc\xe0\x2e\x5e\x51\x23\x6f\x4a\xc2\x2e\x46\x89\x4f\xa8\x36\xe9\xc4\x48\x50\x99\xa5\xa1\xb4\x3a\x60\x5b\xfd\x11\x0d\xac\xf8\x0c\xbe\x0f\xe6\x62\x4d\xd9\xac\xdb\xb5\xcc\x76\xab\xd5\xea\x1d\xad\x42\x13\x29\x7b\x3f\xca\xba\x94\xe6\x43\x9e\x7d\x1b\xfa\x43\x9d\x46\xbf\x43\xa3\x3c\x0a\x3c\x9b\x13\x84\x31\xd7\x3f\x51\x44\x8b\x73\x24\x64\xb2\xad\x9a\x71\xc4\x3b\xdc\x27\xaf\x14\xfa\x67\xbc\xb8\xc8\x01\xe1\x0f\xfb\x19\x7d\xab\xee\x94\x15\xbe\xe5\x96\xd3\x9b\x19\x1f\xca\xea\xd4\xe9\x47\x83\xdc\xc6\x73\x3c\x03\x8e\xf5\xb9\x72\x61\xa5\x8e\xe8\x06\xd3\x12\x38\xf7\x48\x0d\x2a\xec\x23\x26\xdf\x15\x10\x25\x45\x16\x85\x94\x78\x70\x15\x71\x16\x8f\x76\x39\x7b\x87\x22\x5e\x57\x6f\x1f\xa6\xc9\x82\x3d\x0a\xcb\x82\x5d\xfa\x67\x81\x47\xda\xff\x99\x6b\xda\xe8\xda\x3c\xea\xb9\x28\x13\x35\xed\x5f\x52\xc5\xeb\x49\xa4\x68\x70\xf8\xec\x5e\x96\xa3\x2f\xb1\x45\x11\xdb\x3c\x65\xee\x34\x19\x3a\x25\x79\xf3\x33\x05\xcf\x04\x4e\xdb\xe5\xab\x6e\x05\x0a\x93\xf0\x3d\xbc\x3a\x7e\xe0\x2f\x4b\xe7\xff\x7e\xfc\x6c\xc7\xf7\x3e\xee\x5c\xae\xa2\x0d\xc1\xc7\x50\x1c\x81\x57\xfe\x44\x49\xc7\x8f\xeb\xfa\x56\x31\x74\xcc\x2c\x68\x70\xf0\x91\xb7\x07\x4e\x46\x73\xe0\x8d\x43\x39\x2b\x7f\x3d\x8d\x23\x28\x60\x08\xad\x6c\xcb\x75\x79\x8e\x7b\x87\x87\x5e\x6d\xe7\xb1\x45\x6b\x8a\x03\xac\xde\x55\x11\xe6\x5d\x55\xf9\x8e\x92\x85\xca\x67\xeb\xc9\xcc\xa2\xc6\xcb\x25\x25\x54\xe9\xef\xab\x48\xf3\x52\xf9\x8b\x1b\x3b\xdf\x24\x2d\xf2\x0b\xba\x1f\xfc\x87\x81\x72\x12\xbf\xb2\xac\x54\x25\xb6\x80\x7b\x9d\xf9\xaf\x14\x5a\xff\x38\xbc\x10\xd0\x02\x82\xd8\xdf\x69\x63\x7b\xce\xaa\x9f\xd0\x58\xe1\x8f\xce\x05\xaa\x32\x75\x1f\x8d\xb9\xc2\x55\xa8\x14\x0a\x3e\x87\xc3\xcb\x88\x5c\xd8\x42\x78\xbf\x37\x74\x84\x71\x83\x32\xdc\x4c\x07\xb1\x16\x50\x06\x8c\xf5\xd8\x28\x18\x83\x13\x73\x03\x47\x8c\xb0\x82\xf8\x04\x27\x98\x33\x84\x46\xc0\x37\x7c\xdf\xa0\xd3\x99\x61\xe2\xc1\xb3\xce\x65\x9d\x9b\xa3\xe3\x39\xb2\x9c\xe6\x44\xb8\x06\xb0\x82\x10\xcb\x2b\x46\xb4\xfb\xce\xa3\xb7\xd5\xa1\x15\x2f\x4d\xb8\x02\xe0\xff\xf8\x8b\x94\x21\x27\x1c\xc8\xbd\xe7\x6b\x67\xd1\x46\x8d\x83\x43\xaf\xb6\x4d\x04\x38\x21\x8e\xd2\xfb\x0a\x13\x7c\x3f\xf0\xb8\x40\x48\x99\xe5\xdb\x95\x26\xd9\xb7\xb5\xf4\xfa\x25\xc4\xe6\x38\xb4\x50\x8d\x95\xbe\x0f\x0f\x0c\x43\xa5\x89\x49\xfa\x3b\xca\x11\x62\x66\x3e\xc9\xb1\x37\xa0\x55\xe7\x62\xbb\xd8\xf2\x31\xcb\x05\x9c\xaa\x7c\x13\xd4\x91\x40\x61\x66\x7c\x25\x1b\x5e\x81\x2e\xc2\x8c\x2b\x3d\xec\xdd\xdb\x8e\xc5\xd0\xc0\xb8\x7c\xbb\xf4\xc4\x08\x8c\xc4\x14\x2d\x70\x7f\x1e\x53\x13\x5f\xba\xc4\x49\xd4\x03\x9c\x7b\xc2\xc6\x12\x92\x07\x32\xb2\xc2\xf2\x40\x2f\xc9\x7f\xa5\xc0\xab\x79\xdf\x66\x03\x23\x75\x6f\x27\xc2\xe1\x33\x8f\x13\xcb\x3e\xe0\xee\x47\xbd\x7e\x6c\x12\x50\x97\x63\xa3\xc0\xdf\xe3\x6b\xe7\xef\x8d\x12\x9b\x74\x5d\x44\x8f\x13\xfd\x43\xa5\xa3\x8c\x9a\x81\x68\xff\xec\x56\x27\xe3\x9c\x2f\x3b\xc1\xb7\xb9\xab\x90\x49\x77\x3d\xdd\x5f\x66\x0b\x73\x94\xfc\x05\x9a\xe9\x7f\xf7\x0b\x1d\x5f\xef\xdc\xb1\xac\xb8\x54\x8e\x51\xf9\x56\x20\xc3\xb4\xba\x51\xbf\xbd\x53\xc3\x62\x14\x69\xfa\x54\x75\xdc\x49\xb6\xcc\xb7\x7f\x7f\x56\x7a\x5e\x33\x4e\x7f\xc2\x46\xf3\x86\xc5\xb6\x64\x6a\x15\xd4\x95\x11\x9a\xa0\xc8\xc4\xcc\x24\xf0\x5d\xaf\x07\x9e\x30\x05\xa5\x24\xe4\xb9\x1e\xd5\xb0\x83\xb4\x16\x60\x93\x58\x3f\x4c\x24\x6c\x5b\x8e\x1b\x68\xd7\xb2\xf7\x27\x4c\x46\x30\x1d\x32\x12\x0e\x48\x56\x19\x06\x01\x92\xe9\xbc\xd6\xbc\xcd\x77\x83\x74\x00\xa7\xfc\x66\xd8\x43\x3c\xf8\x5d\xcd\xb1\xca\x6a\x58\x78\xf3\x9b\x4a\x7f\xe5\x41\xa0\x4e\x3f\xe6\x21\x66\xa9\x4f\xda\x7c\x08\x5a\x6e\x50\x32\x8b\x09\x01\x19\xe7\x2a\x81\x67\xcb\xf1\x68\xfd\x61\xe0\x25\xe8\x8f\xc3\xc6\x60\xc1\xb6\x54\x79\xe3\x8f\x61\x34\xb1\xc1\xcf\x97\xde\x62\x5c\xc5\x1a\xe7\x37\xe9\xa8\xe2\x53\x74\x14\x00\xc8\xf5\x6b\x41\x6b\xef\xd4\xfa\x35\x05\x33\x8e\xd3\xcc\x26\x6f\xa5\x54\xfa\x66\x22\x8b\xc0\x07\x2d\xa7\x54\xc1\xda\x14\x85\x09\xe7\x59\x72\xdd\xd1\x0d\x1d\x98\xf1\x44\xaa\xfe\x6d\x55\x7d\x13\x79\x23\x29\xe0\xa9\x87\x32\x0b\x55\xd4\x4e\x83\x2f\xc8\x45\x7a\xfe\xc7\x71\x61\xb0\xfc\x31\xb7\x12\xc1\xcd\xc6\x14\xad\x9f\x29\x3d\x83\xd5\x38\x90\x60\xef\x5e\x52\x79\x88\xe6\xa2\x90\x6a\x33\x38\x3b\x91\x97\x43\x6a\xfc\xae\x8a\xea\xc6\xb3\x4d\x4e\x32\xab\xb0\x71\x98\x4e\xe8\x48\xac\xf4\x07\x33\x2b\x85\x63\xdc\xee\xd4\xf2\xe6\xdd\x48\x22\x19\x54\x6c\x51\x92\x90\x1b\x67\x27\xaa\x70\x73\x30\x04\x53\xea\x6b\xf5\x52\x0c\x36\x1f\x58\x81\xe0\x6b\x9e\xd1\xb9\xb9\xf1\xc6\x26\xc8\xcb\x74\x01\x0d\x52\x00\x1e\xe7\x24\xab\xce\xf5\xcc\x82\xbb\x3b\xef\x47\x43\xa2\x2d\x14\x1f\x9f\xdc\x01\x71\xf2\x9f\x76\x4e\xfe\xac\xcd\x8a\xdc\xb1\x57\xe3\xd1\x90\x21\x13\xca\x64\x45\x5a\xbc\xa6\x52\x35\xb3\x11\x41\xda\x9f\xf4\x3d\x81\x1c\x23\x8a\xe2\x89\x27\x0f\x40\xb8\xc9\xd7\x00\x40\x72\x49\x0d\x67\x1d\xce\x1b\xa6\xc9\x86\xa1\xbb\x13\x28\xf2\xae\x3b\xba\xe9\x68\x13\x55\xb3\xa5\x20\xb1\xf9\xeb\x0c\xcc\xdc\x5e\xeb\xa1\x69\x2a\x59\x0f\xa2\x9c\x75\x8b\x1d\x10\xe2\xc0\x1e\x57\x59\x54\x82\xf7\x69\x56\x44\x03\x89\x62\x1c\x0e\xb8\x7a\x1c\xc1\x01\x7b\xb7\x7b\xc1\x26\x44\x6a\x7d\x44\x49\x3d\x78\xc9\x4b\x90\xb1\x89\x7a\x7f\x4d\xa5\xfb\x3f\xc3\x63\xda\xd0\x8a\x55\x9d\x1d\xa4\xab\xd5\xaa\x09\x45\xb7\x1c\x79\xcc\xea\x58\xf5\x70\x7a\x9a\x70\x56\x5b\x7d\x3d\x97\x35\x0a\x5c\x76\xbe\x1a\x0a\x38\x68\x3f\x2c\x6b\xd0\x81\xea\xbd\x55\x09\xf8\xa0\x6b\xf7\xda\xe5\x82\x88\x24\x89\xd8\xa1\x12\x65\x5e\x0f\xcd\xe4\xec\x1b\x33\x76\x07\x1e\x11\xd7\xcb\x4c\xd2\x0d\xfb\x51\xdc\xcd\x6c\xa2\x2a\xab\x8c\x59\x46\xbf\xec\x2d\x55\x20\x3d\xd9\x54\xa3\x21\x9c\x96\x60\x09\xa4\x2b\xa2\xa5\x1a\xca\x25\x66\x61\xe8\x9f\xcd\x75\xcc\xc2\x45\x0d\x61\x95\xf3\x0c\xbd\xc4\x8a\x15\xf6\xed\x80\x54\x0d\x55\x5b\x43\xad\x8b\xc6\xc9\x1a\x46\x85\x1d\x4c\x56\x33\x2d\xde\x4f\xf5\x13\xcc\xe8\x51\xd6\xe0\x28\xd5\xa7\x01\x97\xdd\xd6\x91\x47\xb3\xa3\x2c\xa5\xc6\x2a\xce\x05\xe1\x75\x7f\xae\xdb\x5e\x7f\xae\x80\xf6\x79\x62\x0a\xc8\x17\xf9\xbc\x23\x77\xfe\x0a\xcf\xe7\xc6\x0c\xc5\x8b\xed\xcc\x24\xbd\x0d\x54\xad\xa7\x68\x9c\xf8\xba\xd6\x9d\x3d\x6b\x93\x62\x94\x81\xdb\x65\xca\xc1\x8e\x68\x77\x3a\x5d\xa6\xea\x7b\x84\x16\xd0\xe3\xea\xbe\xa7\x58\x0c\x6e\x34\xc6\xc9\x99\x0d\xd3\xac\x9b\xb3\x89\x41\x1a\x91\x75\xd2\x25\x07\x46\xaf\x82\xf9\xbf\xa1\x78\x0a\x67\xad\xe1\x9e\x56\x09\xa8\x95\xfc\xca\xaa\xe6\xa0\xb0\x4c\xd5\xed\x00\xed\xee\x18\xbe\x58\xb3\xde\x71\x5a\xe3\x93\xbf\x49\x2f\x82\x68\x82\x05\xda\x70\x60\x73\x62\x06\x75\xa5\x75\x3e\xe3\x51\x2b\xbf\x57\xaa\xea\xfa\xe9\x1a\x08\x8c\x64\xe2\x31\xa3\x8e\x3c\x40\x65\xd8\x1b\xf0\x50\xc3\x2c\x1d\xda\x6c\xc2\x43\x2b\x77\x74\x3c\x3c\xab\x85\xaa\x97\x74\x2e\x35\xea\xd3\x0d\x87\x59\xba\x20\x2d\xb9\x8e\x53\xab\xda\xda\x08\x27\x18\x1e\x26\x14\x53\x62\xf8\x4d\xd6\x23\x0a\x6e\x5e\x7f\xc2\xab\x58\xed\x49\xc9\x8c\x8f\xaf\x28\xea\xdc\x1a\x01\xba\x89\xc8\x1e\x6c\xf4\x7c\x3d\x66\x75\xa7\xa7\x0f\xb6\x87\xf1\x28\x27\x5a\x28\x78\x6c\xd7\xf0\x6c\x42\x5d\x52\x99\x47\x31\xaa\x0d\xb8\x81\xf9\xa8\xcb\x0f\x08\x1b\x8a\xe1\xe4\xeb\xf2\x49\x4d\x58\xf1\xac\xd2\x14\x5c\xa9\x27\xe2\x14\x59\xfc\x9a\x16\x18\x94\x5a\x19\x70\xea\x3f\xf7\x09\xbf\x03\xbf\xd0\x69\x1d\x91\xd3\xff\x1e\xd9\x70\xc4\x2f\x35\xe6\x9c\xfb\x14\xae\x62\xc8\xcf\x29\xcd\xb4\x87\x81\xe2\xe8\x06\xef\x0a\x5c\xba\xf5\x52\x01\xa9\xef\xe0\x40\x86\xcd\x7f\xba\xd3\x7a\xf9\xc8\xfa\x09\x72\xcd\x45\x41\xa4\x9a\x0a\xf8\x88\x2b\x3e\xf1\xf6\xe4\x2f\x37\xa8\x14\xb6\x4d\xf7\x0d\xaa\x5b\xf3\x58\xb1\xbe\x3a\x5c\x59\x11\x5b\x1f\x2f\xcc\x1c\x84\xaf\x00\x7c\x09\xc6\xea\x24\x0e\x05\xbe\x51\xba\x60\x89\xcd\x98\x82\xdc\x6b\xc1\x3b\xa3\x78\x5b\x97\x8b\x3e\x0f\x9e\x50\x14\x44\x1a\x23\xb4\x81\x46\x61\xac\xcb\xfe\xd5\x83\x6d\xa2\x30\x26\xf9\x02\x58\x3a\xd7\x8b\xed\x63\x9b\xbf\x55\xe2\x1f\xfd\xa8\x60\xc6\xc0\x69\x47\x51\x49\xbf\xc1\x37\x63\xbf\x71\x78\xcf\x2b\x6d\x33\xd7\xeb\x9b\x24\xca\x0b\x93\xd4\x44\xac\x4b\x95\xa3\xf8\xc4\x95\x8c\xf2\xca\x4d\x66\x3d\x7a\x61\x3e\x50\xfd\x39\x27\x14\xd4\x69\x10\x2f\x6d\xf7\x82\x0b\x7f\xbf\xa3\x10\x49\x3f\x55\x1d\x33\xf7\x54\x67\xe1\xf6\x65\xd5\xac\xca\xe1\x06\x9c\xa1\x2b\x98\x09\x9c\x1b\x9b\x91\xcb\x11\x8a\xe4\x8d\x1b\xf3\xd0\xab\x6d\x93\xe4\x8b\xdc\xbf\x28\x07\x15\xb9\x59\x72\x82\xa9\x48\x3e\xb3\x79\x3e\x30\xf3\x02\xa8\xe0\x6e\x78\xa5\x84\x75\x4e\x41\xe2\xe6\xcc\x88\x45\xe4\xd6\x91\x3d\xd3\x34\x48\xc8\xb2\x9e\x6c\x6a\xf1\x8a\x06\x64\x96\x40\x79\x20\x22\x63\x2a\x49\xff\x3b\x2a\xd1\x7a\x46\xfd\x9e\xed\x2e\x46\x3c\x2d\x8e\x34\xd6\xb5\x7a\xfd\x4c\xb1\x6d\xa3\xd0\x6c\x92\x90\xca\xf3\x33\x5e\x78\xe9\x9b\xbf\xe1\x08\x34\xbc\x47\xf2\xbf\x2a\x01\xe9\xbc\x9f\x0e\x73\x75\x56\xf0\x3e\x11\xb4\x90\x62\x05\x48\x07\xb6\x1b\x71\x05\xcf\x31\xf6\x78\xf6\x9e\xb1\x7c\xc7\xbe\xe9\x76\x7f\xfe\xeb\x94\xde\x73\x5a\x2d\xd5\x52\x41\x03\xe6\x5a\xe5\xab\x02\xf4\x30\xd9\xf1\xd9\x8e\x74\x38\x4c\xf3\xa8\xf2\xd8\xb7\x78\x61\x1f\x54\xc8\xb8\x7f\x9f\xec\x8f\x7e\x27\xa6\xe8\x07\x8c\x58\x98\x43\x6a\x52\xb6\x71\xaa\xba\x08\x38\xb8\xe0\x1b\xd5\xdf\x53\xf4\x4d\x32\x8f\x7e\xf0\x6a\x97\x22\x82\xb9\x83\xfc\x1e\xdf\x8c\xb1\x55\x4d\x1d\xaa\x8e\x9c\x38\x0a\x99\xad\xca\x11\x85\x00\xc8\xcc\xd7\xb5\xa7\xe9\x45\x21\x60\x0c\x22\xd7\xe8\xab\x7f\x9f\x93\xb0\x11\xea\x87\xc0\xc7\x22\x37\xc4\x3d\x15\x8e\x2b\x78\xea\x90\xfc\x51\x50\x23\x43\x6d\x6d\x50\xe6\x66\x66\x72\x8d\x26\x1d\x85\xf3\xcc\xca\x00\x33\x7f\x92\x86\x93\xaf\xc7\xac\xe2\xe1\x3d\x38\xe4\x4c\xdc\x52\x5e\x02\x6a\xe3\x7c\x1d\x28\xc1\xbe\xb4\x60\xc9\xfd\x57\x7c\xc7\xed\xf4\xf4\x63\x3b\x6e\xa7\xa7\xdd\xba\x2d\x14\x22\xfb\x91\x42\x64\x3f\xf2\x27\x74\x77\x21\xca\xcd\x2c\x63\x0f\xa4\xdf\x59\x37\x3f\xab\xc0\x7f\x2e\x8d\xe3\x74\x31\xa7\xed\xe6\x60\x4f\xca\x80\x7a\x3d\x92\x2f\xc6\xb6\xeb\xd4\xa1\x76\x1e\x47\xc3\xa1\xe9\x31\x93\x2a\x9c\x9e\xcb\x4a\x87\xae\x9e\x67\xe9\x8e\x06\x78\xe7\xc7\xd8\x0e\xf7\x87\xb3\x29\xd6\xa1\x68\x3a\x78\xb0\xdd\x6a\xa9\x15\x91\xa1\x28\xe2\x79\xdf\xb8\x43\x12\xce\xe1\x7f\x50\x28\xbf\x77\xeb\xe2\x47\xfa\xa1\xf2\x21\x40\xf1\xc0\x0c\x7f\x9b\xf2\xda\x7c\xad\xb0\x13\xa3\xb8\x88\x06\xa6\x80\xe0\xf9\xcc\xfa\x99\xea\xd8\x5e\x3f\x53\x7b\xe8\xc4\xe4\x5b\xaa\x25\xc2\x29\x19\x5d\x6c\x7d\x18\x68\x4e\xd2\xd5\x72\x23\x1e\x47\xb2\x38\xfe\x4c\xc8\x8a\x7c\x57\xcb\x31\xa4\x3f\xb3\xec\x63\xe9\x1f\x7f\x95\xe2\x58\xf8\xfa\x8f\x98\x42\x97\xe6\x09\xc1\xd6\x97\x9e\xfd\xad\xfb\x2b\xcb\x4a\x7c\xeb\xe3\xc0\x87\xc9\xbf\xc6\xa7\x0c\x39\x2a\x0b\xff\x90\xb9\x18\x69\x6f\x7d\xe7\x59\x44\x7b\x58\x0d\xdb\x96\x5b\x2f\x1f\xf1\xcf\xbd\x77\x6a\xfd\x84\x0b\xe6\x32\x22\xb1\xd7\x05\x41\x90\xfd\xf1\xb5\xc2\xfd\x0e\x0d\xd0\x1f\xd5\x4b\x60\x42\x20\xef\xc8\xd7\x4a\x45\x2c\x1f\x85\xa1\xcd\x73\x6a\x0e\x9e\xf4\x5d\x0d\x7f\x54\xaa\xd6\x87\x3f\x0a\xfc\xa1\x78\x46\xd1\x33\x9e\x51\xfd\xb8\x03\x13\xa2\xc5\x16\x1f\x79\x10\xa8\x9a\xff\x03\x75\x6e\xf4\x29\x3d\x42\x5f\xee\x30\x66\xfb\xa4\xad\xe0\x8c\x6a\x22\xb5\xc3\xa1\x8d\x55\xb7\x3b\x73\x82\xf1\x4d\x93\x40\x65\x2f\x75\xa3\x03\xd6\xa1\xf7\xf0\x11\xbe\xd1\xb0\xe8\xe8\x68\x61\xc3\x96\x47\x74\x5d\xd5\x68\xd1\xab\x4a\x59\x62\x50\xad\xc3\xd8\x2e\xb0\xaa\xb1\x90\xb1\xfa\xd4\xf0\x05\x57\xaf\xb3\x79\x38\xea\xa6\x03\x66\xe2\x83\x53\x09\x01\x6a\xbe\x7e\x2c\x77\x3e\x31\x9b\x13\x46\x84\xac\xdd\x89\xdd\x94\x95\xe5\x6c\x66\xe9\x57\xe5\x1d\xed\xf9\x6c\x5a\x56\xd1\x57\x16\xd9\x39\x82\xff\xc2\x13\x5e\x87\x27\xcd\x37\x4a\xac\xee\x1a\x3d\x0f\x5f\x97\x1a\x64\xb2\x60\x93\xa2\x8f\xc1\x83\xc7\xf3\x99\xf2\x7e\x3e\x6b\xea\x1d\x8e\xa3\x24\x4c\x63\xc9\x47\x21\xb2\xf8\x50\x45\xe0\x9c\xc1\xc7\x41\xb3\x69\xd9\x9f\x66\x8b\xfd\x14\x05\x4a\x4a\x2c\xa8\x2a\xd4\xcc\xfa\x1d\x14\x93\x84\xed\x65\xa3\x01\x3c\xb0\xe7\x40\xdb\x1e\xb5\xe1\x88\x7d\x61\xa7\xcc\xe7\x5e\x6a\xbc\x76\x32\x75\xa8\xdd\x8d\x42\x8e\xf5\x70\x1c\x01\x33\xc4\xd7\xcb\xba\x76\x92\x45\x0b\xa6\x88\x16\x2a\x57\x62\xea\x10\x67\x2c\xaf\xd1\x02\xe5\x6b\xe5\x45\xe6\x51\xb2\xd5\xb7\x07\x7e\x09\xd7\x57\x52\xf7\xf4\xea\x98\xc1\x2f\x29\x40\xc0\xe1\x07\xf0\x1b\x16\x24\x27\xe1\x70\x5c\x7e\x3e\x16\x33\xee\x9b\x76\xb4\x7d\x92\xc6\xc4\xb9\x70\x3d\x50\x90\xbe\xeb\xea\x04\x1d\xc6\xa3\xa4\x67\xb7\xd3\xde\x92\x16\x94\x6a\x21\xc1\x79\xbb\x4c\xc7\x29\xff\x3b\x70\xd7\x82\x37\xa9\xce\x5c\xfe\x23\x98\x6d\x94\xdb\x18\xa4\xc9\x7f\x05\x4b\xcf\xff\xa3\x86\x61\xea\xbf\xfd\xef\x69\x6b\x20\x33\x7c\x56\xb3\x88\x9d\x6d\x02\x11\xe4\x45\xca\x32\x69\xf0\x5c\xce\xe8\xac\xec\x99\x86\x93\x98\x44\x2c\x42\x6b\xbb\xec\xfd\x48\xc2\x8e\xc6\x5b\x88\x5f\xfc\xea\x0a\x63\x13\x0d\x0c\xc7\xcb\x33\x8e\xc6\xa1\x9a\x83\xc7\xb1\x38\x50\x67\x5f\x96\x26\xb6\x90\x91\x66\x1c\x77\xa0\x28\x23\xfe\xba\xe9\x38\xe6\x6e\x32\x68\xf0\x22\x56\x45\x89\x09\xa9\xce\x6d\x1d\x55\xbb\x9f\x5c\x7e\xd2\xb5\xba\xe4\x92\x15\x63\x32\x5a\x32\x28\x42\x4c\xeb\x93\xf5\xa4\xf5\x45\xdf\xed\x1a\x62\xab\xe9\x71\xf4\x0d\xd5\x26\xc7\xfa\x79\x47\x35\x03\xe7\xc3\x38\xaa\xde\xdf\x7b\xc3\x17\xb4\x3a\xed\x05\xc5\x3d\x37\x30\x45\xd1\xb7\x8b\x1c\x8e\x8a\xb2\x41\xf5\x41\xbe\x56\x69\xe4\xbc\x4f\xed\x39\x64\xa7\x1c\x49\x47\xf5\x0e\x48\x53\x42\xee\xd2\x85\xf5\xd5\xca\x41\x7d\x5b\x27\x5e\x86\xa3\xbc\x3f\x8f\xd6\x1d\x69\xb4\x3c\x59\xaa\x5c\xf4\x49\xf5\x7b\x45\x66\x22\xe2\xac\x3c\x20\x26\xef\x3e\x2d\x61\xbe\x56\x49\x31\x93\x4b\x88\xd1\xd2\x4d\xc1\xa5\x6e\xf7\x0d\x3c\xf4\xd5\x54\x27\x0b\xe2\x69\x87\xaa\xff\x42\xa3\xe7\xbf\x50\xb5\xc9\x30\x4b\x53\xf2\x4b\x1d\xe2\xe1\xaa\x42\x02\x5f\x55\x1e\xc4\xc1\xf9\xa5\x2d\xf4\x25\x88\xbc\x6e\x04\xba\xf6\x70\x86\xfc\x67\x5c\xaf\x28\xcb\x8a\x63\x59\x00\x23\x92\xb2\x7c\x73\x14\x15\x04\xad\xc2\x79\xfd\x25\x7f\x95\xc6\x7f\x3a\x8a\x5c\xcf\x40\x86\x10\x15\x29\x8f\x16\xba\x74\x10\xa2\x6e\xa2\xa9\xc1\x11\xfb\x5e\xa9\x14\x40\xef\x36\x75\xd0\xd9\xd9\x59\x4e\x20\x60\x32\x81\xdb\x16\x19\x9e\x96\x6a\x67\xd4\xce\x58\x94\x0f\x9e\xf2\x9d\xdf\x9f\xe9\xdc\xed\x53\x14\x23\x21\x32\x7c\xa4\x72\x90\xf7\x75\x5d\x79\x73\xa7\xd6\xa9\xff\xf2\x11\xf6\x88\xaf\x69\xa6\xfa\x33\x88\xb5\x61\x71\x39\x4c\x45\x2e\xf2\x1e\x39\x64\xd2\x8f\xaf\x14\x57\xce\xc0\x09\x13\xfc\x4e\xb5\x80\x30\x8c\x1f\x05\x1b\x18\x73\xf6\xef\x6f\xef\xdf\x4f\x0a\xcc\x40\x93\x5e\x24\xe3\x29\x85\x40\x85\xde\xf8\x19\x36\x1e\xb2\x43\xf7\xf0\x63\x18\xe8\x49\x7a\x09\x61\xe4\x51\x30\xa6\xf7\x35\xe1\xe0\x29\x9e\x4e\x57\x1b\x76\x1c\x66\x37\xe8\xc5\x99\x1a\x11\x47\xa1\x10\x74\xd2\x28\x38\x00\xc5\xfe\xfd\x3c\x54\x5b\x96\xeb\x44\xce\xd5\xf9\x0d\xdb\x73\x13\xc3\x83\x89\x9e\x84\x3c\x8a\xe3\x0d\xfa\xe6\x6f\xf0\xbe\x98\xa1\x11\x91\x8f\x57\xae\x38\xc6\xf0\xbe\x72\xd9\xf2\xe8\x68\xd1\xa7\x6d\x88\x94\xc0\x25\x3a\x10\xf9\xba\x09\x47\x6c\x8f\x0e\x33\x9b\xe7\x93\x8a\x9a\x14\x14\xe3\x52\x44\xd0\x73\xe5\x35\x21\x57\x1b\xc1\x7b\x69\x38\x6f\x01\xee\x74\x86\xbf\x9a\x0a\x31\xfc\x3a\xb2\x30\x49\xb8\xa3\xfa\x43\x3c\xda\xa6\x0e\xc5\xc7\x4e\xa7\x83\x5c\x69\x55\x5a\xe6\xd2\x39\x77\x02\xb1\x88\x81\xa0\x2b\xaa\x27\xe4\xa6\x70\x6c\x18\x04\x7d\x9b\xb0\xad\x90\xaa\xfb\x54\x81\x06\x16\x39\xed\x3f\xe9\xd1\xc8\xf7\x14\x0c\xff\xb8\x46\x91\xfd\x29\x15\x8f\xa5\x32\x34\x76\x18\x4d\xb5\x07\x29\xb5\xd1\xf0\x79\x27\x24\x8a\x0a\xef\x79\x4e\x85\xb6\x49\x3a\x9b\x76\x97\x28\x25\x81\x68\xeb\x7d\x1a\x52\xbe\xc6\xea\x97\xb0\x4e\xc9\xb0\xac\xea\x00\xf5\xcb\xb1\xf0\x7a\xe6\xc0\x0c\xbb\x1f\x88\x34\x91\x6a\xfe\x03\x7c\x03\xdf\x94\xcf\xa9\x0c\x4c\x92\xd8\xb0\x88\xc2\x11\xc2\x65\x94\x25\xae\xd3\x66\xe7\x6b\xe5\x6d\x0e\x19\xd9\xd8\x72\xc4\xe2\x9b\x3b\x3e\x74\xd8\xbc\xbc\x31\x5d\x43\xfa\xc8\x85\x92\x23\x5c\x45\x2d\x5e\x98\x31\x5b\x8e\x28\xe9\xaf\x95\x3d\xfe\xd6\xcb\xaf\x4e\x2a\x16\x2f\x29\x0d\x38\x80\x43\x35\x9c\xf8\xd4\x89\xd2\x23\x48\x7f\xae\xf9\xcf\x40\xab\x92\x6f\xaf\xf5\x7e\xee\x93\x1a\xc7\x69\x32\x8c\x42\x21\x49\x5b\x0f\xa3\xce\x5c\x44\x0e\x41\x5f\x0d\x34\x9c\x88\x5b\x9a\xef\xe6\x0a\x62\x2c\xfe\xb2\x06\xc6\xc2\x83\x6d\x1b\xf6\x59\xe5\x07\x5f\x76\x19\x06\x90\xb5\xef\x03\x95\x15\x3d\xa1\x39\xe8\xfb\x36\x21\x59\xb5\x4f\x18\x7b\xa9\x34\xbe\xba\xe9\x62\x92\x47\x6f\x6d\xe0\xcd\xad\xb1\x13\x3e\xa3\xf8\x12\xb2\xa2\x6f\x4d\x5e\x4c\xa8\xc0\xe0\xb6\x62\xe6\xdd\x4e\x3e\xfe\xfa\xc3\xb1\x73\x64\xdf\x34\x09\x78\xb1\x3b\x05\x23\xc6\x90\x65\xbe\x51\xa1\x5e\xdf\xc6\xc3\x7c\x0b\x0d\x06\xdc\x80\xb5\x5a\x79\x43\xb1\xaa\xae\x29\xd5\xa8\x49\x82\x0c\xf3\x07\x9a\x9a\x7a\x4c\xaf\x97\xd9\x9e\x29\xa4\x74\xc7\x51\x05\x59\x39\x89\x30\x54\x62\x66\x14\xc7\x36\xc7\xf2\x45\x3a\x02\xe4\xb4\x7c\x0d\x57\x16\x43\x18\xe5\x61\x16\x0d\xa2\xc4\x48\x52\x69\x5a\x8b\x8f\x4e\x39\x55\x31\x9f\x39\x31\x73\x73\x36\xe4\x51\x44\x1d\xf0\x81\xea\xe2\x98\x54\x6a\x90\x17\x95\xe1\x5d\xb2\x26\xcb\x9f\xd3\xa0\xd5\x1f\xe3\x34\x84\x4d\x5b\x29\x55\x85\xe6\x5f\x03\xc5\xe1\xaa\xac\x53\x87\x84\x27\x81\xe5\x3d\xa4\xe6\x4a\x3b\x87\xbf\x40\x0d\x33\xd8\x77\x91\x7a\x04\x1e\x15\xa7\xff\xba\xd6\x70\x01\x8d\x2f\x2a\x2c\x35\xe4\xd1\x5f\xe2\xe4\xc1\x64\x00\x35\x83\xff\xb8\xab\x3b\xc0\xce\xe1\x48\xc3\xe8\xfc\x18\x06\x08\x87\xf1\xb3\x1d\xaf\xa9\xb8\x1d\x99\x12\x6c\x98\x75\xd5\xb7\x13\x47\x89\x91\x15\x85\x17\xf8\xb0\x54\x14\x47\x1f\x3a\xac\xc4\x5c\x9a\x59\x92\xd2\xc2\xd6\x41\x3a\x90\x99\x1d\x54\xbe\xf7\xa0\xa3\x7c\x7d\x5a\x19\xb2\x51\x92\x73\xb0\xef\x84\xb5\xaa\x01\x90\x86\xf4\xa6\xa6\x96\xca\x51\x95\x07\x83\x9f\xc4\xe9\x0f\xbe\xd1\x4a\x84\x91\x19\xa4\x2c\x23\x28\xfc\xe4\x17\xb5\x23\x73\x51\xd9\xc9\xc2\xc4\xf3\x51\xd2\xdb\xaa\x7c\x87\x8f\x69\x06\xe0\x9c\xa3\x83\x1c\x1f\x03\x54\xdd\xcf\x92\x30\xe5\x43\x33\x17\xe7\xfb\xee\x31\x45\xaf\x43\xaf\xb6\x87\xb1\x4d\x8a\x25\xb2\xad\x58\x48\x2b\x74\x3a\x39\xd0\xe9\xfe\xfd\xec\xf5\x3c\x70\x95\x96\x61\x9a\x66\xd5\x4e\xa1\xc9\xc4\xcc\x42\xcf\x94\xaf\x97\xf5\x99\x1c\xd9\xb9\xa7\xab\xc7\x61\xfd\x6c\x2e\xe4\xe1\x2f\x3f\x20\x63\x2a\x7d\x57\x34\x57\x00\x99\x61\x61\x3a\x9c\x76\x35\x54\x2a\x00\x72\xd1\x10\xf2\xea\x8e\xed\xaa\x5a\xff\xb5\x9a\x30\x2a\x3f\x3f\x52\x0c\x72\xc7\xe8\x85\xb0\xd3\xb6\xe1\x2c\xc7\x92\x5f\x2f\xbd\xec\xff\x1a\xec\x2a\x9a\x11\xee\x07\x8a\xb8\xe1\xa4\x8a\x22\xa2\x24\x8c\x47\xdd\x28\xe9\xed\x52\xb5\x42\x40\x22\x50\xcf\x85\xc8\x00\x6b\x8e\x61\xdf\x22\x42\x2c\x4a\x45\x14\xfa\x21\x99\x23\xbc\xf6\xff\x40\x9d\x9b\xd8\x38\xbc\x51\xb1\xa3\x26\x3a\x5e\xfc\x70\xf7\xb2\x67\xaf\xf9\x4d\xea\x6b\x56\xfe\xa6\x30\x15\x9e\xc3\xfa\xc3\x83\x7c\xbf\x81\xa6\x73\x8a\x84\x43\xf2\x82\x30\x7b\xd5\xd3\x34\xb1\xae\xfb\x84\x59\x2f\x5a\xb0\x89\x88\x8e\xbb\x0e\xd6\x69\xc9\xfc\x9e\x54\x5a\xb4\x27\xeb\xb2\xab\x0d\xb4\x76\x51\xb6\xe0\x12\x75\x58\x73\x8c\xcc\xe2\x9b\x60\xe3\xf9\xff\x62\x3b\x4c\xd3\x78\xd2\x57\x3f\xb9\xe6\x86\xed\x8b\xa5\x2f\xb2\x4e\xb4\x58\xe4\x48\xf4\xce\xc0\x5c\x54\x50\x78\x82\xba\xc3\x53\x48\xbd\x38\x91\x0d\xbf\xfd\x3e\xa5\xca\xae\x6b\xff\xdc\x57\xa3\xa2\x92\x75\xbb\x03\xd5\x7e\xae\x96\x69\xee\x85\x9d\x64\xfa\x50\xb3\xd8\xd6\x51\x24\xd6\x57\xf1\xc4\xd8\x88\x4f\x74\xbc\xe4\xd5\xaa\xca\x98\x3d\x05\x5c\x03\x92\xbf\x8f\x34\xdf\x45\x64\x84\xeb\x05\x26\x85\x9d\x60\xbe\x29\x75\xcd\xcc\xcc\x2f\x4d\x28\xda\xad\xcf\x4a\x75\xae\x82\x3d\x16\xcf\x7d\x7b\x0c\x01\x52\xad\x8a\xd0\x0c\x5d\x25\x43\xf4\x67\xab\x07\xe4\xeb\x06\xf1\x33\x5e\x48\x2d\x1f\xc7\x9e\xd6\x1d\x31\xa7\x5d\x67\xc5\x28\x27\xa4\xb5\xeb\xab\xe6\x24\x19\xdf\x04\xbb\x14\x00\x37\x41\x68\x8e\x1a\xc3\xb9\xc0\x43\x58\xce\xa9\xa8\x1f\x8a\x19\xc2\xe8\x2f\x2d\x18\x2b\x58\x01\x62\x47\x7e\xb9\x09\x89\xd1\x1d\x44\x49\x94\x17\xac\x85\xa8\x7a\xaa\x51\x49\xc1\xae\x61\x38\x1d\x46\xf1\x81\x2a\x4b\x92\x47\x31\xe1\x0d\x23\x42\x1b\x9c\x5d\x4c\xba\x2d\xa5\xbe\x86\xf4\x97\x29\x62\x16\xec\x60\xe9\x4c\x7c\x42\x74\x34\x77\xa9\xcc\x73\xd8\xdf\x3d\x71\xc4\x95\xa9\xcf\xd1\x99\x4e\xce\xd3\xef\x3d\x43\xcb\x0c\x4b\x7e\x85\x6c\x80\xa3\x26\x74\x4d\x92\x28\xf6\xe0\x44\xf8\xb4\x54\xbd\xdb\x6f\x2b\x45\xcc\xab\x58\x1d\x02\xe1\x54\x02\x4b\x17\x03\xa5\x7c\x04\x30\x29\xa2\x88\x4d\xf5\xa6\x1f\x15\x5d\xff\x00\xa6\x92\x01\xe4\x14\x3d\xd3\xa6\xf8\x66\x1b\x99\x60\x38\x14\xf7\x9b\xd6\x50\x5e\x64\xd1\x3c\x72\xba\x8e\xd4\xbe\xfa\x79\xf1\xf0\x9b\x14\x05\x87\xa9\xd3\xac\x16\xba\x29\x7a\x4b\xe1\x9b\x6a\x00\xe7\x99\xc1\x28\xb7\xae\x59\x50\xc4\xbb\x7c\x3a\xe7\x56\xf9\x4b\x3e\xfd\x64\x63\x1b\xa6\x83\xc1\x28\xe1\x12\x6a\x3e\xa9\xe4\x63\x8f\x6b\xd6\xf9\x15\xa5\x25\x7b\x9c\xbe\x4e\xd6\x62\x43\xe1\x39\x9a\x8b\x5a\x2d\xc5\xeb\x54\x23\xef\x77\xc0\x43\x93\xcc\x93\x7a\x9d\x03\x81\xb1\x00\x1e\x4c\x24\xcc\x0c\xa4\x12\x9e\x1d\x93\x85\x22\x4e\xd9\x8c\x00\x59\x4a\xff\x06\xde\x2c\x5f\x3b\x57\x69\x90\x76\x6d\x96\x44\x6f\x61\xec\x9b\x48\x46\x1b\xea\xca\x8b\x51\xd2\xcd\xfb\x91\x8d\x05\xf3\x83\xd7\x45\x93\x26\x5f\x8f\xf3\xb6\xed\x6d\xa7\x0b\x36\xeb\x66\x66\xae\x50\xb4\xbc\x48\x86\xf1\xb5\xc3\xe4\x2e\xa5\xa3\x2c\xb7\x31\x6a\x1a\x8e\x1b\xcd\xb9\x18\xf7\xe0\xec\xc2\x89\x87\x35\x55\x9c\xb7\x62\x1f\x46\x45\x3a\x3f\x1a\x0c\x47\x2d\x6f\xc0\x98\xa7\x8f\x6f\x96\x1b\xf2\x0d\x8b\x51\x38\xcf\x42\x39\x4e\xf6\xc8\x51\x4c\x68\x02\xda\xd9\x34\xee\x42\xba\x5f\x71\x3f\x49\x5d\x94\x51\xe4\x0c\x33\xc2\xd9\xe1\xba\x15\x0f\x8b\xed\xc7\xc9\xe5\x42\xda\x6a\xf1\x8a\x33\x34\x26\x95\x73\x60\x4f\x7b\x2e\x4a\x4c\x12\x4a\x67\x02\xf6\x2c\x8a\xf9\x7c\xdd\x48\xd5\x1f\xf6\x53\x4f\xe1\xdb\x48\xfc\x51\x03\x24\x24\x4b\xd4\xd0\x80\x6a\xf2\x27\x75\xe5\x91\x71\x7e\x1a\x3c\xee\xbd\x40\x81\xad\xfe\xac\x89\x1c\xce\x64\x59\xe4\xb0\x6f\xc8\x3c\x71\xf4\xca\xf9\xc2\xd2\xb3\x48\x5d\x1d\x53\xbd\x79\xfd\xf5\x76\x6c\x5b\x64\x0b\x1b\x85\xaf\xfd\xa4\xbc\xf0\xdf\xfc\x23\x5e\x92\xae\xdf\x63\xaf\x10\xdb\x7e\xa8\xfe\xae\x88\x06\xf6\xb9\xf1\x43\x1c\x16\xea\x04\x92\x6d\xc2\xec\xa4\x58\x3b\x7e\x4a\x36\x58\x46\xbe\x2e\x1d\x56\x59\x61\x89\x59\x14\x91\x08\x40\xd4\x42\xa7\x4d\xd6\x16\xaf\x09\xb2\x1a\x64\xf1\xe8\xe0\x7f\x85\xbd\x83\x4d\x9d\xea\x99\x71\xb6\xfc\x5b\x32\xe8\x30\xbc\xec\xb4\xc0\x88\xaf\xe9\x8e\x8e\xdb\x58\x6d\x9a\xa0\x1d\x1e\xcc\x3d\xac\x49\xe4\xbb\xd6\x69\x8c\xd9\x4f\x1a\x4b\xdb\x1d\xd8\xd3\x9e\x8f\x20\x48\xea\xa3\x0a\x8e\xbd\x45\xca\xcb\x75\xd7\x67\xe9\x20\x4a\xc0\x56\x77\x78\x8f\x34\x9f\xd0\xef\x4a\x23\x8a\x2f\x30\x8f\x92\x7c\xd1\xf4\x7a\x36\x13\x7b\x86\x94\xd3\x9f\xe8\x4d\xf1\x51\xe9\xdd\xe6\x4f\xd5\x19\x68\x8a\x74\xd8\xf2\x8c\x80\x9b\x3b\xbe\xa3\x72\xf3\xb2\x10\xec\x17\x0b\xdb\x7c\x6b\xee\xdf\xdf\xbd\xac\xe3\xe5\xcf\x54\x53\xfd\xaa\x92\xb5\xfd\x15\x1a\x63\xd7\x4d\xb0\x7f\xbf\xc8\x01\x63\x24\x45\xed\x65\xe3\x20\xbd\xd8\xce\x0b\x93\x74\x4d\xd6\x9d\xf4\xfd\x86\xe7\x54\xe3\xeb\x64\xa7\x1a\x10\xf7\xbd\x0e\xcb\xb1\x5a\xd6\x00\x51\x96\x5b\xd6\x35\x55\x6c\x40\xd9\x4a\xe1\x8d\xdd\xb8\x93\x5f\x78\x81\xf8\x6d\x6d\x16\x99\x96\xe6\x95\xaf\xc1\xa9\x37\x9a\xb3\x7f\x20\xe7\x88\xc2\x81\x9e\xd1\xba\xdd\x67\xc6\x5c\x6d\xea\x02\x67\x89\x24\x61\x0b\x68\x79\x41\x2a\x55\x65\x4a\x87\x36\xa3\x1a\x8a\x4b\x1b\xfc\x48\x61\xe3\xc7\x15\xc5\xf6\xee\x6d\xcf\x99\x98\x11\xde\xdc\xb6\x43\x4f\x2f\x2d\x3c\x35\x33\x64\xe6\x15\x90\xef\xb2\x92\x33\xba\xac\x69\x60\xa3\x84\x69\x08\xe0\x27\x70\x8e\x94\x6f\x1c\x00\xdc\x84\x45\x4e\x46\x0d\x15\x85\x4f\x31\xc7\x28\x9a\x6c\x46\x10\xe8\xba\xf0\xaa\xcf\x73\xa8\x48\x0f\x87\x88\xf0\xe6\xd8\xdb\xec\x9b\x6e\x9b\xd8\x30\x39\x2a\xf7\x8c\xd0\xeb\x4b\xff\x88\x8e\x81\xc3\xa8\xd8\xea\x63\xc1\x33\x9a\xa7\xf1\xbb\x81\x62\x70\xfc\x6e\xe9\x14\x90\xfe\xe5\x19\x3c\xa5\x2a\xa7\x78\x5b\xb9\x81\x5e\x76\x7a\xba\x3d\xf3\xea\xc1\xe7\x5a\x5e\x92\x15\xce\x13\x56\xf1\x09\x18\x1d\xac\xfb\x3f\x29\x7d\xc0\xf8\xa8\xd4\x7e\xa0\x4f\xe9\x1f\x23\x23\x07\x9b\xc1\xc9\x6f\x18\x8d\x6b\x74\x74\x89\x66\x35\xb6\x99\xd8\x42\x5a\x54\x88\x98\xd9\x41\x14\x36\x4e\xb2\xa5\xb0\x60\x5c\xb1\x41\xea\xfe\xb4\xd2\xe3\x63\x4e\x70\xfe\x2b\xb5\x67\x5b\x1d\x55\x22\x7a\x82\x36\xad\xb4\x3c\xd2\x9e\x17\x15\x29\x55\x95\x9f\x8f\x50\x85\x63\x8e\x81\xc0\xe7\x6b\x75\x17\x06\x5a\x8f\xf8\x1a\x7e\xa3\x20\x4b\x6a\x00\x2a\x13\x71\x5e\x07\x8e\x13\xeb\x72\xf1\x8d\x42\x39\x56\x26\x31\x05\x65\x84\xe7\x0f\x00\x56\x86\xaf\x15\x08\x3a\xb7\xc5\x93\x5a\xcc\x10\xbf\x80\xc3\x07\xfd\x51\x35\x34\xa9\x90\x4f\xfa\xac\xce\x4d\xf5\xf4\x13\x1d\x9f\xee\x5f\x03\x24\x10\x43\x74\x92\x58\xe3\x30\x41\xdf\x45\x1a\x8e\xff\x43\x23\xfa\x4f\xd6\x75\x00\x7d\xa6\x6a\xd1\xe4\x85\x9d\x1b\x21\x15\xe6\x34\x7e\x0e\x38\xbd\x1f\x5d\xfc\x48\xb3\x6c\x89\xcc\xbb\xe3\xed\x85\xa9\x76\xe2\x26\xfb\x24\xc1\x70\xb3\xac\x89\x0f\xe5\xa3\x81\xcd\x72\x80\x0e\x85\x99\x9b\xd6\x08\x96\xd2\x35\x95\xda\x47\xe6\x1d\x7f\xc4\x8a\x48\x38\xe4\x6e\xa8\x44\x04\xd7\xe9\x5c\xf5\xdd\xa7\x1b\x39\x59\xc4\x9f\x2f\xbd\x11\x89\x47\xe1\x3c\xfc\x12\x8e\xd4\x03\xdd\x99\x5f\xaa\xc2\xd3\xd8\x71\x40\xca\xdf\xa6\x90\x78\x02\x8f\x70\x45\xe5\x42\xae\x28\x35\xaf\x6f\x7c\x03\x54\x5e\x38\x68\x9e\x04\x50\x4c\xf8\xa9\xfc\xc2\xe4\xae\x17\xa4\x93\x4e\xa0\xe9\x9a\xa9\x3e\x79\x9d\x08\xe9\x01\x6d\x19\x18\xcf\x9b\x9c\xe3\x45\x94\xcf\xd8\x43\xfc\x1d\xba\xb0\x91\xda\xbf\x1e\x28\xf5\x87\x13\xb4\x33\x60\x54\xef\x11\x19\x18\x16\xea\x96\x8e\x97\x26\xbe\x19\xa8\xda\xfc\x6f\x93\x2f\x05\xe7\xed\x5f\xa3\xb7\xd3\x15\xd2\xbc\x6a\xf7\x75\x85\x17\x7e\x08\x96\x30\xbc\xcb\x35\x18\x57\x7c\x31\x04\xc0\x51\x6d\xdf\xd1\xe8\x86\x13\x9f\x3d\x8c\x7b\x93\x1a\x76\xd3\xb9\x15\xf5\x6a\xbd\x71\x10\xc1\x43\x34\xba\x69\x59\x05\xf3\xbb\x1c\xeb\xdf\x5b\xd1\x90\x3a\x1e\xb4\xe7\x84\xc1\xe6\x69\x10\xdd\x89\x86\x40\x3e\xf4\x39\x50\x14\x72\x6f\xd2\xc7\xf9\x7a\x2c\xe5\x56\x45\x7e\x49\x98\x11\x13\x2f\xb7\x24\xe3\x9c\xba\xa1\xa4\x15\xff\x46\x95\x37\xae\x6e\x10\x52\x1e\xee\xf0\xed\x49\x37\x74\xcf\x3e\x5a\xc2\xb0\xb0\xb7\xd2\xe4\x61\xf4\xff\x5a\x27\xa6\xa4\xbe\xe9\xb0\xda\x07\xf6\xf0\xa3\x4e\xe2\x04\xd4\x9d\xb0\xd2\x4c\xe9\xad\xaa\xfd\xc6\x5e\xc5\xb5\x8d\xca\xa6\x23\xb0\x3a\xec\x54\x41\x1b\xe8\x7c\xa6\xda\x61\xdf\x28\x1d\x0b\xa7\x32\xef\x48\x78\x2e\xab\xdf\x49\x7a\x69\x0d\x81\xb3\xa2\x45\x5b\x56\xc6\xba\x04\xaa\x69\x48\x13\xaf\xff\xeb\x11\xe8\xdf\xd1\x62\x23\xdf\x69\xe2\x9e\x0e\x8d\xe7\xf1\x82\x23\x37\x01\xe3\xc1\x37\x1d\x9f\x7e\x1b\x55\x73\xb6\xd5\xdb\x3e\xb8\x06\x4a\x7e\x46\x32\xf2\x1f\x2b\xea\xf9\x8b\xa5\x8a\x43\x3e\xa7\xa3\x53\x92\x0c\xaa\xe8\x14\xa7\x59\xd4\x15\xf2\x74\x45\xb9\x35\xe3\x28\xb7\x36\xc6\xdf\xbf\xda\x1e\x98\x64\x34\x67\xc2\x62\x94\xc9\xf3\x33\xb1\xbf\xe2\xa8\x5d\x19\xab\xc8\x1d\x7a\x95\x5a\xe7\x95\x48\xc3\x05\x95\xdd\xbf\xe0\x9c\xfb\x59\x13\xc7\x69\x9a\x50\x53\x7f\x35\x61\x70\x60\x5b\xc4\x5c\x40\x1d\x2f\x3b\x50\xac\x71\x7b\xe6\xb0\x64\xa6\xef\x34\xf5\x00\xbe\x31\xca\x8b\x28\xb4\x8f\x6f\xcb\x68\xc0\xbd\x75\xd3\xb0\x48\x33\xb7\x64\x70\x84\x21\xbe\xe0\x6b\xc5\xc3\x12\x66\x69\x9e\x13\x21\x00\x0d\x85\xe8\x51\xfb\x9c\xe1\x3d\xad\x68\x5d\xd8\x48\x5a\x99\x61\x25\x18\x47\x86\x83\xf1\x6f\x55\xe9\xfc\xac\x22\xcb\x23\x65\xa0\x24\xb2\xf9\x33\x64\x40\x71\xbc\x4c\x00\x53\x81\xf3\x6e\x3b\x90\x5e\x22\x3a\xae\xb4\xc5\x69\x90\x91\x76\xe6\x5a\x1a\xbc\x87\x5b\xc1\x06\x8c\xc1\x2b\x0e\x52\xa1\x9a\x68\xae\xea\x62\x3e\x39\x6f\x38\xc3\xb9\xd5\x9f\x39\x92\x54\xfe\x69\xfb\x32\x98\x73\xb1\x2c\x9d\x44\x7f\x75\x56\x30\x5f\x07\xcd\x98\x63\x6e\xac\xec\x97\xc0\xfa\x37\x4e\xdf\x0b\x2f\xb4\xbb\x51\x3e\x1c\x15\x0c\x37\x47\xd9\x1a\xd4\x9c\x7c\xad\x82\xb5\xae\xcd\xe7\x5b\xbe\xeb\x02\x0d\xf6\xc2\x1c\xeb\xc9\xce\x4d\x88\xd1\x84\xc3\x70\x78\x0f\x67\xcb\x59\x9f\x53\x78\x74\x7c\xc3\xcb\xc5\x72\x83\xb4\xf8\xe1\x3d\x33\xed\xc3\x7b\xa6\x09\x3f\xb7\x4e\x0c\x5e\xeb\xd7\x94\x3c\xd8\x5c\x9a\x0d\xb6\x2a\x01\x21\x6e\xed\x10\xf1\x24\x5f\xf1\xbc\xe1\x99\x3e\xfe\xf7\xa7\x3b\x75\x59\x40\x2f\xea\xd6\x78\xe8\x33\xd9\x81\x4a\xbd\x04\x2a\x25\xe3\x89\x49\x8e\x0e\x6d\x92\xdb\x09\xd5\x65\xb6\xaa\xf8\xfe\x1e\xd4\x72\x37\x4a\x4c\x30\x46\x3f\xe8\x84\xef\x51\x02\xf2\xcd\x09\x69\xb8\x65\x70\xa1\xe6\xad\xa6\x19\x10\xa9\x82\x13\xa3\x25\x82\x4d\x00\x71\xe3\xf5\x1b\x9a\x28\xf4\x4f\xd9\x87\x87\xaf\x85\xf5\x28\xdd\xda\x92\xb4\x0f\x47\xd9\x2c\x67\x54\x70\x92\xa2\x61\x93\xaf\x35\xa6\x63\x94\x45\x5c\x71\x95\x0a\x31\x0b\x2a\x63\xe4\xef\xc0\x95\x10\x7c\xec\x33\x8a\xa2\x7a\x81\x52\xb2\x39\x85\x48\x70\xe8\xef\xeb\xde\xc3\x3f\x0e\xbc\x47\xbd\x52\x2a\xb8\xd3\x15\xad\x5b\x0f\x19\x05\x69\xc9\x6a\x10\x27\xc9\x87\x86\x25\x6a\x38\x82\x51\x39\x87\x73\xb5\xae\x09\xd3\x5d\x7a\x5a\x91\xe0\xfd\x7b\xf6\xbb\x44\x66\xb2\x1a\x7d\x9e\x95\x52\x41\x91\xee\x22\xd7\xe2\xa0\x21\xfb\x64\x9a\x4f\x2b\x01\xb0\x0f\x4a\x55\xdb\x86\xe6\x25\xbc\x80\x9a\x47\xfb\x13\x8d\xd8\xa6\x46\x29\x87\xcc\x74\x08\xbb\x89\x4e\xe5\xb2\x49\xd5\x8e\x8c\x8f\xb4\x93\xd0\x10\x21\xc5\xf9\xd0\x65\x54\x07\x26\x49\xac\x3b\x30\xf4\x42\x17\xfd\x4b\x9f\x39\x35\xc3\xa1\x35\x31\x61\x3d\xc1\x70\x4f\x84\xce\x81\xef\xa1\x06\x5e\xe4\x71\xa8\xad\xea\xd0\xef\x9b\x85\x34\xc4\xba\x71\x72\x66\x2e\x3e\x3d\x3f\xe6\xbe\x1d\xde\xd3\x8e\xd3\xc5\x1a\x20\x5f\x7b\x42\xcf\xaa\xde\xef\x3c\x8f\x06\xb4\xd2\x14\x6b\x41\xe9\xa9\x4e\x56\xb4\x34\xfc\x2d\x05\xe4\x2c\x32\xd3\x8d\x92\xde\x6e\xaf\xaa\x7e\x0b\x66\x91\x3b\x59\x4a\x2d\x60\xb2\x02\x17\x9a\x0d\x3d\xf5\x7f\xc0\xf3\xba\x15\xc0\xd3\xc6\x9e\xb9\x48\x33\x88\x6f\x3b\x07\xe7\x5a\x68\xfb\x94\x53\xa5\xbd\x82\x4d\xcb\x4a\xe8\xec\x24\xbd\x24\xaf\x59\xec\x0f\x84\xe9\x9b\x71\xb4\xe0\x68\x6e\x75\x3c\x3d\xf0\x2d\xac\x1f\x26\xf3\x0e\x54\x32\xbb\x49\xf1\x74\xa6\x1d\x9a\xbc\x50\xcd\x36\x57\x35\x98\xe3\xaa\xc2\x01\x67\x36\x4a\x16\xc8\xa4\xb9\xb0\xf4\x33\x4d\x68\xf4\x59\x8d\x1f\xa7\x57\xd9\x3f\x96\x8c\xc5\x4e\x58\x07\xb2\x83\x6f\x9c\x01\x1c\x25\x89\x19\x08\xb1\x10\xfb\x8e\x0a\xbd\x3a\x81\xe8\x5e\xda\x9f\xfd\xe3\xe4\x45\x3a\x18\x4a\x2a\x12\x56\xef\x98\xa2\xbe\x3b\xa6\xd2\x50\x3d\x94\x00\xb7\xf8\x1a\x30\x34\x44\x70\x12\x1f\xa3\x95\xe1\x48\x92\x3d\xb3\x0b\x92\x35\xb0\x53\x0f\x15\x2d\x75\x68\xb2\x2c\xb2\xe0\xe9\xc7\xec\x3f\x50\xd5\x90\xcd\x04\x92\xc1\xf9\xfd\x7d\x0a\x87\x24\xa5\x33\x4e\xb7\xfd\x5a\x7b\x31\x4d\x01\x0c\x47\x32\xfd\x9e\xea\xbb\xbb\x8e\x1d\x3b\x8e\x23\x9c\x8b\xed\xd1\x68\x36\x66\x20\xb3\x10\xb7\xb6\xa6\x3d\x6f\xab\x8f\x9f\x47\x49\x92\x56\xbe\x55\xb7\x55\x23\xa3\xf1\x07\xd9\xd5\xa6\x1a\x58\x6c\x92\x6a\x55\xd8\xac\xa5\xf3\xd7\x8c\xc2\xe7\x1b\x45\x93\x9f\x99\xa1\xcd\x2d\xec\xc6\x2b\xee\x78\xa8\xde\x44\xe8\xc8\x1b\x94\x76\xbb\x54\x22\x55\xa2\x81\x37\x35\xb7\xe0\x66\xf8\x4a\x12\x5b\x29\x59\xa5\xa8\x30\x49\xae\x08\x34\x11\x1b\xf1\xb5\x3e\x56\xd3\x9c\x3b\x56\x39\xe8\xd4\xf5\x4d\xae\xe7\x23\xba\xd9\xd4\xf1\x16\x20\x1d\x15\x79\xd4\xb5\x5b\x94\x1d\x53\x82\xb1\x57\x02\x45\x45\x7e\x1f\x6b\xa5\xe6\xc9\x0b\x93\xea\xc6\xc8\x8e\xca\x6d\xdc\xdd\x5f\x23\x45\xbe\xa5\x48\x91\x6f\x35\x49\xd8\xe7\x05\x11\xcf\x58\x15\x5a\x5d\x26\x2b\x2b\xfd\xba\x2d\x47\x70\xf7\xb1\x0a\x1a\x06\x51\xd8\x37\x16\xaa\xca\xf0\xce\x91\x0f\xe2\x6b\xbc\x3e\x4e\x0c\x70\xea\xe3\x54\x41\xc1\x81\xaf\x4b\x05\xf8\xbf\x1a\x7c\x55\xa1\x5a\x84\xfd\x2e\xcd\x00\xe0\x5d\x67\x99\x48\x1c\xc6\x94\x0d\x5e\x5f\x51\x3d\x5b\x97\x15\xb5\xe1\x30\x8d\xa3\x1c\x34\x10\xc8\x13\xbc\x17\x28\xf2\xcf\xf7\x9c\x08\x6a\x98\xc6\xb1\x0d\xd1\x68\xa3\xf8\x85\xdf\x09\x14\xd4\xf1\x9d\x31\xcf\xeb\xd0\xab\xed\xb9\x34\xeb\x45\x0b\x38\xc6\x91\x62\xf9\xb9\x4a\xb7\xfc\xbc\x4e\x20\x11\x75\x55\x97\xf7\x55\x7a\x7b\x81\x35\x29\xfe\x9a\x8f\x4b\xc5\x5f\xf3\x31\x12\x99\x9a\xd1\x52\xa4\x4d\xfc\x1e\xdc\xdc\xa1\xb4\x86\xf4\x67\x6d\x0c\xd0\xf6\xee\xad\xce\x9a\x24\x1f\x44\x85\x63\xc9\x16\xee\x0f\x05\x3b\xf9\x4c\xc1\x03\xf3\x51\xd2\x35\x4b\x5b\x3c\x0b\x15\xd7\xe5\x5d\x73\x9a\xaf\x54\xa1\xa2\x01\x9b\x7f\x1f\xc9\x55\x1c\x26\x9b\x3a\x35\xd8\xd5\x60\x76\xc2\x83\xfe\x59\x4f\x1d\xc5\x7c\xd8\x21\x61\x63\xf2\x2a\x38\x89\xa5\x43\x75\x86\xfd\x99\x07\x8a\x2d\x76\x95\xe6\x1b\xcf\x7d\xbe\xdc\x88\xa9\x70\xca\x86\x24\xc8\x0c\x3a\x23\xd7\x23\x78\x42\x33\x0a\x9e\x18\xdf\x3c\xaf\x1e\xa4\xe8\x2a\xcd\xa3\x5a\x3f\xc6\x4d\x65\x62\x6e\x36\xc9\x13\xcd\xc6\x26\x9c\xcf\x35\x09\xf1\x05\x4d\x42\x7c\xa1\xc1\x2c\x1d\x6c\xcf\x65\xe9\xa0\x55\xbd\x8a\x93\x8d\xab\x9e\x4d\xda\x45\x76\x2b\x88\x47\x1c\xa7\x8b\x66\xa9\xe5\x59\xd7\x30\x04\x82\x6a\xf2\x51\xcf\x1b\x26\x9c\xc7\x1c\x23\xa0\x65\x04\x12\xdf\x04\x5e\xab\x35\x9b\xb7\x85\x20\xa8\x38\x27\x03\xa0\x23\xcc\xdb\xc7\x3a\xea\xbf\x56\xaa\x02\xcc\x8a\x7a\xb0\x28\xc9\x87\x51\x66\xbb\x50\x1e\xc5\xd2\xbc\xa7\x02\xe3\x4d\x1d\x5a\x2a\x80\x13\xfd\x0d\x3c\x12\xbe\xa1\x01\x85\x51\xbc\x5b\xd6\x4a\x48\x1e\xe6\xf5\xe6\xc8\xc4\x03\x64\xb0\x71\x96\x4e\x28\x6c\xd5\x84\x92\x26\x9c\x35\x59\x62\xb2\xae\x42\xe9\xa0\x5b\x82\xaf\xcb\xc7\x09\x02\x27\xd1\xd1\x6e\x9a\xcd\xb5\xbc\xde\xfe\x06\x7d\xbb\x06\x86\x82\xcc\x0e\x2d\xf1\xcd\xeb\x68\x49\xf1\xbd\x9d\xf7\x14\x10\x36\xa9\xec\x96\x16\xac\xd3\x39\xb0\x71\xce\xf3\xa9\x43\xed\x6e\x66\x16\x5d\x46\x4e\xf2\xfa\xde\xfd\x3e\x55\xaa\xae\xd3\xd3\xca\x11\xcd\x6c\x98\x2e\xd8\xac\x0e\x63\x47\xf2\x93\xaf\x15\x95\xc3\x30\x4b\xc3\x51\x46\x61\xce\xa4\x47\x57\x7e\x5f\x6b\xc4\x80\x64\x8c\x3b\x07\x4a\x85\x0e\x3d\xd5\x20\x3a\x3c\xd5\xce\x17\xe9\xe8\x68\x29\x06\xca\x2f\x54\x56\xee\x0b\xd5\xc2\x2a\xd8\xfc\x14\xbc\xeb\x8e\xe9\xbf\x7a\x2f\x61\xfa\x97\x70\x6f\x36\x4e\xa5\x19\xcc\x09\x9f\x3a\x7e\x9e\xe3\xe5\x13\x8a\xef\xe7\xff\x47\x23\x86\xb3\xf3\xba\xd6\x86\xf8\xb2\x54\x89\x18\x56\xbd\x74\xcd\x81\xbe\xa9\x78\x62\xb9\x46\x0d\x59\xad\x08\x6c\xc4\x1b\x30\x56\x70\x61\x4e\xa9\xea\xe3\xc4\x32\x41\x00\x5c\x08\xb2\x77\xaf\xdf\xc7\x95\x2b\x0a\x24\xf2\x6e\x64\xfd\x85\x23\xc1\xcb\xc8\x02\x69\x89\x88\xe9\x24\x45\x55\x78\xde\xff\xe8\x69\xa8\x7f\x1f\xc9\x6f\xe4\x61\x26\x48\xab\x1d\xe6\xa4\x45\x5d\xd9\x4a\xc7\x58\xd0\xe4\x2c\xb2\x8a\x6f\x3a\x0f\x2a\x0f\x61\xcf\xad\x0c\x06\x1c\x2a\xc1\x51\xe0\x2c\xbf\x86\xb8\x03\xee\xe5\xfb\x63\x4b\xde\x75\x05\x5b\x34\xc8\xb2\x5c\x94\x6a\x11\xe4\x2a\x94\x40\x1e\x7d\xfa\x34\xed\xf5\xb6\x54\x1f\x91\xce\x22\x35\x91\xa7\x94\x6e\x3b\xe8\x2c\x6b\x0a\x02\x82\x4c\x95\x9a\xa9\xd7\x40\x47\xb9\xfd\x1e\xfd\x3c\x5f\x2b\x4f\x7d\x98\xa5\xdd\x51\x68\xbb\xdb\x14\x6f\xf0\x3d\x6d\x56\x5f\x57\x9c\x84\x4c\xe0\x81\xe1\xfd\x4c\xe3\x65\xee\xab\x42\x0f\x97\x13\x24\x79\xa7\x24\x63\x48\xf3\x0e\xf8\x14\x64\xc4\xbe\xa3\xd1\x53\x97\x10\xb3\x01\xa8\x8d\x6c\x21\x86\xf8\x2e\x4d\x3c\xff\x91\xa6\x13\x2f\x32\x5b\x84\xc4\xd5\x56\xcd\x34\x62\xc9\xdf\x2f\x3d\x03\xde\xef\x2b\xd4\x5f\x3a\xc8\x1c\xf7\x9e\xa8\x43\xd0\x3b\x73\xcd\xa5\x54\xfd\xee\x6b\xc1\x4e\xf7\x23\x2f\x7c\xa5\x7a\xdc\x1a\x55\x2e\x72\x8d\xa7\x34\x9a\xe6\x26\xde\x99\xab\x3e\xa5\x16\x55\x80\x5a\x23\x32\x06\x1f\x6a\xf2\xfc\x2f\xa0\x49\xc5\xdf\x86\x68\xcd\x45\x3d\xae\xe6\xf3\x99\xc6\x8d\x7d\xa2\x98\x3b\xce\xe3\xf1\x91\xc5\xbe\x49\xf9\x69\x3c\x0b\x93\x04\x49\x77\x66\x03\x73\x73\x62\x0d\xab\x20\x60\x8e\x87\x34\x7b\x7c\xdd\x08\x2b\x4d\x13\xd5\x9c\x0f\xaf\x73\x13\x61\xd8\xf8\xba\xa3\xb9\xb9\x68\x41\x6d\x57\xdc\xd3\xc8\xed\xa0\x54\x7c\x42\x21\x85\x2e\xaa\x92\xd0\xa4\x46\x73\x9f\x08\xbc\xa5\x3b\xa7\x7c\x97\xef\x6a\xb1\xbd\xdf\x52\xad\x05\xa3\x61\x2c\x0c\xf1\xd8\x22\x9b\xa1\xee\xc6\x37\x9d\x06\x30\x9b\x49\x42\x9b\x17\x19\xf8\x47\x5e\x63\xaa\xd4\xcf\x69\x24\xf8\x3a\xd8\xad\x95\x40\x06\x69\x61\xb3\x49\xd5\x3f\x05\x40\x27\x2c\xc7\x69\x58\x46\xbe\xa1\xa7\xe7\x3f\x6a\xb0\xfe\xaf\xb5\x67\xb3\x74\xd4\xeb\x17\x13\x4a\xd0\xe3\x3a\x7d\x88\x33\x66\x54\xf9\x95\x58\xed\x79\x09\x9b\x40\xd9\x04\x01\x7d\xf6\x9c\x44\x64\x95\x86\x85\x6f\x02\xbd\xe3\xb2\x81\xcd\xf2\xed\xbe\x5f\x0d\x25\x60\x91\x93\xa1\xb7\x41\xd5\xfe\x3a\x76\x9f\x14\xbb\xe9\x75\x84\xdc\xc9\xa7\x53\x41\xf6\x20\xb4\x79\x34\xc5\xbe\x3c\xee\xa9\x38\xfa\xbb\xaa\x0d\x89\x89\xe5\x3e\x46\x98\xdb\x07\x30\x1a\x22\xf3\xe6\xe1\x40\x4f\x76\xbc\xf3\x8c\xa6\x24\xb6\x9b\xf7\x68\xed\x08\x63\x3a\x36\x16\x0e\xd6\x87\xb4\x92\xb0\x97\x01\x5d\x84\x11\x7c\xb2\x4e\x8e\xa9\x85\x10\x31\x4e\xd8\x3f\xad\x65\xad\x60\x3f\x1a\x3e\xe7\xe1\x0c\x47\xc9\xe0\x60\x5e\x36\x75\x90\x30\x82\xe1\x7d\x80\x97\xe1\x7e\x4b\x3a\x84\xe0\x29\xde\x01\xa2\x91\xff\x4a\x35\x79\x5c\xa5\xc6\x04\xec\x83\x7f\xa5\xbd\x99\x0b\xd8\xd8\x8c\x2c\xa3\x77\xc1\xd9\xb6\xad\xa3\x7a\x55\x99\x96\x40\x0e\x7d\xdf\x67\xc4\x06\x43\x58\xa2\x68\xbe\x30\xac\x1f\xe3\x95\x31\x2f\xf7\xe0\x43\x32\x07\x7c\xe0\x73\xac\x67\x95\x8e\xc9\x7b\xe5\x93\x1e\x80\x6e\x8f\x6e\xf3\x88\xf6\xf7\x61\xb0\x80\x0a\xbb\x80\xef\x72\x34\x8c\x7b\xa7\x5c\xe1\x8a\x46\x85\xff\xaa\x74\xdc\xdd\x47\xaf\xa8\xd2\xe6\x8a\xca\xf1\x0f\xad\x89\x91\x5e\xd0\xe2\x30\x48\x28\x20\x15\x8f\x13\xf0\xc7\x0e\x7c\x9e\x0f\x4c\x06\xf5\x58\xfa\x9f\x1f\x3c\x47\x40\x2d\xa7\x50\xe1\x99\x1d\x51\x66\xc6\x0e\x86\x54\x9c\xa0\xbc\x1a\x88\x25\x06\x69\x0a\x1f\xd8\xb5\x17\xab\x66\xee\x71\x56\xbe\x05\x9b\x75\x23\xb4\x81\x39\x3a\x48\xfa\x39\x66\xa3\x0c\x7c\x5f\xef\x69\xb5\x1f\x4c\x96\x3f\x55\x3d\x08\xbe\x78\x0b\x3c\x0e\xf8\x25\x3f\x2b\x3d\x3a\x63\xfb\x72\x5d\x5f\x6c\xdf\xb4\xe3\x80\xa4\xa1\xa2\xaa\x40\x0a\x79\x3e\x1c\xb5\xff\xea\x1f\xd0\x28\x60\x3d\xa3\x7c\x8d\x9d\xfd\x2b\xcb\xe4\xc8\x08\xa7\xbb\xe2\xb4\xb9\x47\xa6\x45\x94\x2a\xb1\x9d\xb8\x87\x54\x07\xb7\x13\xcb\x12\xea\x47\x49\x61\x93\x3c\x9a\x8b\xc4\x59\xc5\x56\xba\x08\xdb\xc1\x37\x81\xef\x24\x5d\x48\xe3\x51\x52\x58\xa4\xaa\x7d\x7a\x7f\x2d\xf0\x3d\xe4\x6b\xea\x0c\x8f\x12\xd3\xb5\x6f\x8e\xa4\x99\x5f\xba\x23\xaa\x3f\x96\xe6\x88\x9d\x0e\xea\x3c\x3b\x89\xbd\xa8\x4b\x31\xa2\xa5\xde\x72\x5a\x33\xec\xf2\x0b\x0f\xe7\xb3\x2a\xf1\x59\x3d\x1c\x11\x80\x29\x0a\xa4\x8f\x79\x14\x44\xae\xa4\xe5\x68\x2a\x4f\x2a\xc1\x5c\x62\x80\x76\x6a\x39\xb2\x2a\x0b\x33\x9b\xa6\x78\x4d\xa7\x7f\xec\x4c\xda\x65\x9f\xbb\xb7\x26\x1f\x65\x60\x28\x9e\xf2\x2c\x00\x5e\x74\xae\x54\x55\x60\x10\x3d\x22\x9e\x3a\xad\xd8\x41\xcc\x82\x4d\x46\x18\x25\x86\x66\xc1\x02\x08\x4e\x6b\x63\xbc\xbc\x7f\x7f\x3b\x34\x49\x77\x49\x81\x8d\x8f\xa9\x82\xd5\xb1\x46\xe1\x68\x4e\xb1\x51\xa0\x81\x51\x46\x6d\x92\xaf\xdd\x89\x3b\x48\xf3\xd8\x0e\xa4\x67\xce\x21\x74\x14\x14\x7e\x0c\x3a\x3f\x75\xa8\x9d\x1b\xec\x36\x49\x59\xb6\x1c\x13\xf9\x19\x85\x0a\xec\x99\xb7\xcc\x84\x67\x87\x61\x31\x50\x18\x50\x24\xca\x84\x16\x4e\x0c\x4a\xd1\xb7\x51\x96\x6f\xab\x06\xd4\x7d\xc6\xf7\x89\x3f\xb5\xec\xbf\xec\xcf\x95\xb2\x0a\x7a\xde\x14\x50\x56\x41\x2c\x67\x5c\x1a\x65\x57\x67\x6c\x9c\x0e\xcc\x7c\x9d\x1a\x1e\x42\xaa\x20\xa2\xb0\xb2\x7e\xcd\x3d\x8d\xc9\x73\x9b\x15\x30\x6f\x82\x24\x55\xc5\xdc\xb5\xc0\x2b\xa2\x30\x68\x52\x32\x0c\x51\xaa\xc5\x87\x4a\x2d\x3e\xf4\x18\x5e\x15\xbb\x40\xad\x8b\x8a\x55\x0e\x98\x35\x21\xad\x90\xf9\x22\x82\xa1\x78\x89\xb2\xec\xa8\xd7\xb6\x3a\xe4\x7d\x0a\x78\xd3\x63\x86\x4f\x95\x5e\x26\xe9\x3f\x61\x97\x4b\xb9\xcb\xd9\x84\xc1\x30\xcd\x0a\x93\x14\xb1\xa6\x8c\x5a\x55\xc1\xf3\xaa\x02\x68\xe5\x51\x81\x94\x04\x1c\x9a\xd3\x74\x70\xf0\xb5\x4a\x54\xe7\xc5\x68\x76\x36\xcd\x92\x96\x62\x19\xfc\x02\x36\x89\x6f\x54\x0a\x35\x4f\xff\x3f\xca\xfe\x3c\x46\x92\x33\x3d\x13\xc3\xbb\xb3\xaa\x0f\x92\xcd\x21\xbb\xc9\xe1\xec\xe8\x27\xfd\x94\xb3\x3b\x30\x25\x7b\x44\x8c\x6c\xc3\x58\x09\x06\x32\x5d\x5d\x23\x0e\xcb\x62\xb1\xd1\xdd\x6a\x4a\xf4\x1f\xcb\x2f\x23\xbf\xca\x0c\x76\x64\x44\x32\x8e\xaa\x2e\xda\x06\x16\x06\x6c\x2f\x8c\x85\x60\x1b\xc6\xae\x8f\x5d\x63\xbd\x36\xa0\xf5\x7a\x05\xad\x46\xc7\x48\x96\x84\xcc\x19\xcd\x2d\x89\xc3\x73\xc8\xe1\xd9\xf7\x55\x7d\xdf\x67\xb5\x11\xef\xf3\xbe\xdf\xf7\x46\x45\x70\x61\xff\x41\x20\x82\x5d\x79\x7d\xf1\x7d\xef\xf9\xbc\xcf\xb3\x1c\xda\x3c\x7b\x44\xa9\xf0\x1f\xd5\x2a\x84\x47\x81\x16\x73\x62\xb6\x7b\xe7\xa4\x65\x43\x76\x15\x91\xf9\x5f\x92\x6b\xc6\x37\xb9\x4f\xae\x51\xa3\x40\xa4\x02\xa4\x66\xa1\x2e\xa2\xba\x88\x43\x8b\x0c\x05\x68\xb0\x33\x5a\xee\x74\x68\x42\x46\x11\xc2\x23\xbd\xab\x04\x3f\xdf\x9d\x78\x86\xb4\x6c\x1c\xd9\xb8\x1f\xf6\x23\xa2\x1d\xf1\xaa\x33\xf4\x81\x42\xf2\xe6\x09\xf3\x51\x1e\x40\x84\x79\x97\x8a\xa1\xfc\xff\x31\x38\x2e\xbe\x26\x9c\x21\xd3\xef\x90\x7b\xae\x41\x75\x95\xc2\x55\xd1\x6d\xad\x47\xa5\xcf\xb6\xf3\x64\xc5\xa4\x32\x12\x82\xa2\xc6\x6d\x5a\x2e\xbe\xae\xed\xc1\x85\x85\x76\x6a\x47\x86\xd4\x16\x66\x6a\x6a\xce\x70\x38\xeb\x4a\x3f\xf1\x82\xe2\x87\xa3\x82\xbb\x09\x86\x52\x41\x86\x19\x3b\x42\x9b\x83\xaf\x6b\x99\xc8\xc2\x42\xbb\x67\xa3\xd0\x2e\xf3\x80\x87\xd0\x79\x94\xeb\xcb\xd7\x4d\xb0\xe5\x20\x74\x23\xe4\x82\xc4\x53\x5c\xf8\x67\x14\x17\x52\x11\x0f\x76\xf8\x3c\x99\x09\x9e\x60\x79\x78\x22\x18\x66\x04\x30\x71\x3c\xfb\xcb\x13\x3f\x30\x74\x0e\x7b\x10\x87\xea\x77\x27\x8a\xc4\xeb\xa4\xe2\x8f\xf9\xce\xc4\xb3\x3a\xdd\xc0\x57\xe1\x16\x24\xcc\x96\xc4\x4e\x5a\xa3\xf4\xbd\xba\x64\x6b\x69\x86\x7a\x45\x96\x85\x36\x95\x9f\x27\x69\x95\xaa\x2e\x9e\x6d\x22\x96\xec\xdb\x65\x93\xe5\x26\x17\x48\x3f\x1e\xcf\xba\xea\xa8\x5f\xd0\xe2\xd9\xba\x5e\x9a\xe5\x66\xb5\xa5\x46\x7d\x3f\xaa\x0a\xd3\xd4\x79\x60\x17\x29\x84\x48\xf3\x95\x30\x96\x10\x42\xfc\xa3\xf2\x95\xd5\x7a\x57\x10\x15\x19\x8f\xf6\x3d\xcb\x51\x0c\xa8\x79\xa5\xbb\xd3\x72\x84\xee\xe7\x26\x9f\x57\x65\x3a\x1b\x94\x56\xb4\xc8\xa2\x55\xcd\x87\x7b\x0a\x40\x03\xd1\x93\xf6\x66\x24\xc5\x6e\x6a\x51\x5c\x2b\xf3\xdb\xde\x2b\x9c\x55\xa9\xd4\x6a\x31\x1e\x13\x45\xa9\xeb\x68\x56\xb9\xfb\x14\xd6\xae\x07\x33\xce\xfd\x26\xfa\x95\xd2\x7b\x6a\x18\x9d\x4b\x8a\x3c\x48\x59\xfe\x4b\x5a\xd9\x1e\xa2\xb1\x5e\x51\x08\x7e\x5c\x49\x70\x25\x2b\x44\x57\xe2\xc6\xee\xcf\x6b\xfa\x69\x46\xcb\xf2\xbf\x28\x78\xea\x45\x15\x51\x04\x26\x1a\x31\x63\x27\x92\xa5\xeb\x74\x92\xf8\x5a\x13\x93\x11\x75\x76\xcb\x47\x70\x40\x5f\xf3\xb5\x83\x67\x25\xcb\x36\x4d\x43\x96\xd1\xc6\x57\xbe\xad\x6c\xdf\xed\xda\x16\xa6\xe1\xd3\x30\x0f\x8d\xea\x24\x09\x4a\x83\x5c\x30\xdf\x34\xb4\xc6\xdb\xc9\xd2\x92\x4d\x11\x89\x33\x67\x55\xc7\x8f\x87\xfc\x7e\xc7\x5b\xf9\x35\x65\x9b\xed\xab\x45\x98\xaf\x6e\xd5\xfc\x2a\xe5\xaf\x77\xf0\xac\x03\x73\x6e\x74\x84\xb6\x1e\xf3\xf4\x57\x64\x2e\x7c\x00\x71\x49\xb1\xb8\xe4\xa9\x35\xf9\x6a\xcb\x33\xed\x5f\xd0\x99\xee\x05\x45\xf0\x4c\xfc\x69\xdb\x14\xc5\xfb\x9a\xa2\x93\x62\xa9\x1e\x18\x90\x77\xf1\x16\x6c\x0e\x3a\xbe\xfe\xbf\x86\x6a\x93\xd8\x09\x3a\xed\x08\xe2\xaf\x36\xd0\xf9\xec\x69\x07\xc9\x41\xcb\xae\x1a\xf6\xeb\xad\x89\x32\x66\x6f\xa9\x2f\x67\xe3\x57\x92\xd5\xad\x6a\xa4\xe1\xa2\x46\xc5\xf0\xae\x42\x8e\x71\x8a\x5c\x03\x5f\xe3\x80\x21\x33\x3c\xa5\x6a\x51\x75\x0a\xe5\xf9\xfd\xcc\x73\xf7\x99\x23\x7a\xf5\xbc\xeb\x60\xd8\x27\x7a\x60\x4d\x49\x8f\x52\x9c\x7c\x49\xdf\x54\x8f\x4c\xdc\x4f\x56\x62\xde\xae\x62\x96\xfc\x60\xe3\x47\xaa\x63\x56\x64\xcc\x39\x2c\x58\xcd\x96\x93\x8e\xad\x83\xe9\x0e\xcc\xcd\xb7\x4d\x9a\x2f\x15\x4c\x58\xab\xf9\xf9\xf9\xba\xd6\xb3\x22\x0e\xc0\x22\x47\x47\x55\xc8\x0e\xd5\xd2\x5f\xd0\x14\x8e\xc9\xc8\x26\xb1\xdd\xa6\x1f\x2d\x7d\x21\xa6\xbf\x50\x4a\x21\xf7\x26\x8a\x9f\x86\x91\x8b\xe8\x3c\x6c\x9a\xfa\xee\xe2\x35\x3a\x04\xb2\x49\x7c\xa0\xb9\x94\x04\x45\xb6\x45\x95\xe7\xee\x2a\x15\xcd\x73\xba\x81\x7a\x0c\xee\x4c\x34\x0a\x7c\x19\x68\xa6\xfb\x39\x85\xff\x4a\x4d\x04\xf2\x17\x51\x57\x53\x44\x06\x6f\xe9\x66\xfe\x55\x8d\x97\x51\xac\x8c\x77\x94\xf5\x7c\x69\x6e\xae\xd5\xaa\x0a\xf2\x39\x54\x61\xcd\x95\x1d\x98\x7b\xa9\xdd\xb7\xb9\x4d\x47\xde\xb9\x08\x5f\xa5\x07\x6b\x6c\xea\x6a\x41\xd3\x50\xa2\x07\x57\x53\xf1\x4d\x95\x26\x1a\x9c\x61\x98\x6f\xd8\x79\x2d\xaf\x92\x30\x69\x37\x6c\x6f\x9b\x06\x76\x5c\x9a\xb4\xd8\x66\xd8\x5f\x30\xa9\xe0\xb4\xe6\xeb\xc6\xfd\x65\xf3\x61\x18\xf0\xa7\x69\x31\x24\x69\x55\x3f\xae\x08\x1d\xe2\xcc\xc6\x83\x96\x87\x25\x1f\xf5\x02\x7f\x07\x8e\xba\x5a\xcb\x2b\x66\xd5\xa4\x98\xc5\xc2\x33\x60\x31\x0b\xbe\xa9\x99\x8b\xfd\x2f\x88\x46\x7a\x65\x98\xbb\xe5\x54\x69\xcf\x56\x18\xce\x4d\x96\x87\x81\x89\xa2\x55\xa4\x3b\x48\x56\x6e\x74\x74\x97\xf4\xdd\x89\x82\x4f\x5e\x76\x0d\x8a\xd4\x84\x48\x06\x61\xa5\x3f\xd4\x64\x5e\x1f\xba\x04\x3b\x0d\xa3\x7f\x63\xe8\xd6\x70\xe0\xe2\xf0\xe0\xc1\x44\x75\xa2\x2f\x56\x74\xf5\x35\xf2\x28\x0d\xfb\x7d\xa7\xa5\x04\xd7\x7b\x0f\xa9\x1f\xdf\x34\xd1\x4a\xb3\x26\xb4\xec\x36\xc5\x08\x32\x2f\x37\x9d\x0a\xc9\x71\x61\x77\x95\x0f\x06\xf3\xcd\x70\x9c\xc8\xc0\xae\x77\x14\xd7\xc5\x39\x5d\x5b\x3b\x05\xa3\xeb\x66\xb3\x16\x9d\xf6\x34\xe7\xd8\x50\x2e\xb8\x8a\xb3\x8a\x29\x82\x3b\xaa\x9e\xf7\xbe\x3e\x74\xa7\x60\xb4\xd1\x45\xba\x46\xa1\x27\x33\xa3\xa0\x4e\x88\x2e\xd4\x0f\xc8\x68\x23\x7c\xff\x14\x6b\x2c\xdd\x84\xd6\xf3\x92\x01\x1e\x47\xc7\xc2\xd5\xec\xe6\xf7\x3b\x8a\x41\xd7\x77\xfa\x95\xbf\xfb\x77\x67\xca\x18\x5e\xd4\xff\x74\x74\x38\xf1\x43\x74\x9b\x94\x42\xb2\x3d\x44\xba\xb0\x58\x50\x24\x35\x5c\x9a\xe6\x9b\x86\x96\xc4\x9e\x76\x2f\x59\x89\x5c\x4b\x02\x19\x22\x52\x32\xbe\xd6\xa4\x40\x43\x93\xd9\x34\x23\xb1\x4a\x67\xd9\xca\xef\xe5\x58\x72\x9c\xda\xdf\x6d\x2d\x7a\x50\x8c\x4c\x6c\x66\x7c\x5d\x78\xa8\xe9\xd3\x2e\xa8\xce\xea\x85\xc9\x06\x2e\xc2\x5f\x2c\xc3\xf3\x59\xfa\x0c\xa1\xe1\xf6\xd3\x1f\xc7\xab\xa4\x6e\x1e\x9c\x78\x7c\xf2\x94\x56\x46\x4e\x93\x43\x42\xa1\xad\xd4\xac\x36\x61\xca\x41\xf8\xec\x1a\x4e\x40\x14\x8e\x7a\xac\xb7\x25\x94\x60\xde\x64\x41\x07\x5f\x58\x94\x1a\x6a\xa2\x4b\xa9\x59\x55\x08\x82\xe3\x8a\xf1\xf6\x78\x47\x0b\xd9\x88\xd9\x85\xee\x16\x96\xf2\x83\x89\xa7\x54\xbb\xa8\xd7\xf8\x83\x8e\x82\x0c\x34\x91\xca\x98\x28\x0a\x19\x23\x20\x51\x97\x42\x47\x1e\x56\xa4\xaa\xe3\x30\x8a\xc0\xd3\xa7\x06\xf7\x5f\xd2\x63\xf8\x82\x3c\xe6\xba\xb4\xf0\x22\x55\xf0\x35\x19\x28\x40\x50\xc0\xbc\x33\x51\x54\xc7\x3f\x56\xd9\xc5\x8d\x0a\xb0\xb8\x28\xdd\x73\xf9\x9b\x2a\xae\xdc\xf1\x3c\x1f\x98\xf3\xa0\x7f\x47\xd5\xc0\x95\x25\x37\x62\xba\xbb\x42\xe0\xf7\x12\x7f\xce\x3f\x68\x1a\x50\x1d\xa7\x21\x8b\xc0\xa2\x1a\xb0\xae\xe8\xdf\xd7\x27\x4f\x2a\x4e\xaa\x2c\x2d\xc6\xac\x77\xed\x71\x15\x9b\xbb\x8a\x2e\x70\xb3\x62\x9b\x0e\x92\x91\x3d\x54\xa1\x8a\xee\xf8\x08\x54\x23\x45\x5f\x31\x63\x13\xdb\xcc\x3e\x46\x6b\x8a\x8e\xc0\x11\x80\x99\x58\x54\x99\x9e\x2a\x0c\xd0\xec\x94\x2c\x98\xa8\x2d\x97\x3f\x14\x09\x32\xc3\x64\x44\xbb\xb6\x5c\x26\x61\xf0\x54\x1d\x90\x7b\xb4\x2f\x91\xec\xde\xee\x28\xe2\xc4\x1b\xf4\xe5\xb0\x61\x1f\xc3\xde\xd7\xa3\x15\x78\xab\x13\x1d\x65\x8d\x19\x8b\x8d\x64\xdb\x83\x59\xc3\xf8\xd5\x22\x4c\x57\xc1\x6a\xe9\xa2\x37\x37\x1e\x78\x57\x05\xd8\xec\x33\xf0\xcd\xde\xa8\x39\x49\xaa\x94\x06\xd6\xc4\x52\x00\x55\x6a\x5c\xee\xa6\x36\x41\xb6\xb8\xb8\xaf\x1d\xc6\x7d\xd2\x1c\xe6\x92\x9d\xc8\xfb\x29\x50\xf0\x05\xe5\xe4\x03\x93\xda\xd2\x6e\xa9\xd2\xca\xef\x4c\x7c\x09\xf7\xb6\x1a\x4f\xbd\xd5\xc8\x1d\xc1\xbd\x58\xed\xaa\xce\x69\x57\x75\xae\xf3\x94\x87\x04\x15\xa9\x35\x05\x4b\x8f\xce\x28\x40\x3a\xbc\x3f\xc2\xb9\x1f\x4d\x14\xf3\xc4\x31\x3d\x3e\x10\x25\x79\xce\x3c\xca\x82\xcd\x54\xb2\x8a\x3f\x55\x53\xb1\x37\x9a\xbc\x76\x96\x14\xf9\x70\xc6\x0f\x60\xdf\xa5\x0f\x55\xea\xf4\x7b\x5c\x2d\xd5\x7f\x68\x5a\x8c\x12\xea\x33\x94\x0e\xce\x99\xba\xe7\x3c\x2b\xa2\x82\xa6\x16\xa3\x5e\x64\xb7\x94\xbb\x12\x31\xe7\x61\xda\x88\x70\xa4\x47\x54\x27\xf1\x23\xc5\xf8\xbe\xa6\x74\x9d\xdf\x68\x9a\x21\xa4\x13\x4a\xdf\x1a\x81\x0b\x4a\xca\x58\xdb\x3b\x9a\x7f\xe8\xa2\x9e\xb6\x1d\x5a\xeb\x78\x1a\x64\xdc\x80\xfe\x56\x98\x24\x7d\x34\xfc\xf5\xb9\x05\xfa\x33\x27\x1a\x5b\xfe\x99\x4c\x50\x6f\x7c\xe2\x2f\xbf\x5c\xc6\x9e\x59\x12\x1b\x0c\xfd\xa2\x95\x73\x55\xab\x97\xd5\xf3\xc3\x03\x73\xcf\xb6\xb3\x20\xc9\x59\xfd\x4b\x78\x10\x3d\xa4\xe6\x7b\x35\xcc\xdf\x73\x8b\xa5\x09\xe9\x15\x99\x9b\xd9\x13\x44\xb5\x1a\xae\xfe\x76\x4d\x26\x6f\xef\x5c\x3b\xb2\x59\x36\xdb\xda\xbd\x5b\x78\x0a\x95\xb4\xee\x1a\xa2\x11\x07\x3a\x2c\x6d\x09\xde\x49\x4f\x36\x50\xd6\x4f\xd4\xaa\x1e\xda\xc9\xa8\x14\x41\xc8\x37\x08\xb8\x9b\x38\x1f\xa6\xe6\x50\x4b\x7b\x32\xed\xe1\x9a\x10\x0f\xc3\x30\xf7\xc5\x49\x29\x70\x2b\xb4\x96\xa6\x92\x89\x8a\xe0\xe0\x16\x15\xb0\x3c\x40\x3b\xd6\x8d\x40\xfa\xb8\xe6\x81\x1a\xc2\xb8\xab\x7a\xe9\x33\xdd\x1d\x0e\x68\xf8\x5a\xdf\xcc\x68\xf4\x28\xd9\x28\x91\x8b\x54\x8a\x10\x77\x6b\x2b\x3c\xbf\xbf\x0c\x6a\xc7\x28\x67\x49\x55\xa8\xe5\xc8\xad\xce\xd7\x4c\xd2\xde\x39\xe5\xc7\x67\xd4\xc8\xc4\x0f\x55\xc9\x88\x63\x31\xf1\xe3\xfe\xf8\x0d\x4c\x14\xd9\x74\x95\x5c\x31\x4e\x1c\x43\x78\xb0\xd7\xd0\xc5\xe3\x7f\x98\xa8\xe6\xe2\x9a\x53\x5e\xe9\x99\xf8\xd0\xab\x45\x92\xe3\x0c\x09\xa0\xdc\x3f\xa6\x37\x34\x3f\xe4\x35\xc5\x38\x9a\x15\x03\x93\x22\xbe\x72\x43\x03\x6e\x1f\xc2\x95\xa0\x99\xfe\x43\x9c\x2c\x04\x07\x97\x6b\xb5\x85\x5f\x7b\x91\x18\x23\x99\x6c\x1d\x36\x8e\xf9\x25\xf8\x46\x75\x28\x46\x06\x68\x23\x88\x25\x0b\xc9\x1e\x2d\xb6\xd6\xa4\x41\x13\x81\x49\x21\xf9\xa6\x41\x09\xa1\x9d\xda\x57\x6c\x90\x57\xd3\xd6\x1f\x4f\x54\xc9\xf9\xc7\x2a\x84\xcd\xac\xc9\xc8\xbf\xef\x99\xdf\xef\xc7\x0a\x16\x16\xdc\x58\xc1\xc6\xd4\x18\xe6\x5f\x1a\x9e\x9f\x9d\x0f\x35\x8c\x6f\xd2\xcb\x96\x5d\x4d\x5f\xa7\xff\x70\xc3\xeb\x4a\x46\xe7\xa2\xaa\x2c\xd8\x43\x87\x92\x18\xd6\x98\x91\x5b\x13\x5f\x82\xb8\xd9\xa9\x08\x3e\x8d\x4d\x6a\xfb\x44\xcc\x2b\xcf\xc6\x3f\xc0\xb7\x80\x20\xc4\xfe\x7f\x1d\x86\x81\x6f\x28\x80\x42\xc6\x02\xc4\x2a\xca\x72\x28\x93\xf2\x35\x7e\xa0\x8c\xe8\x78\x51\xcc\xac\xe8\x91\x20\x50\x68\x48\x2b\xe5\x80\x70\x1d\xdc\xd6\x6c\x84\xd7\xd5\x7c\xdc\x5b\x1d\x3f\x8d\xf7\xbb\x8d\x63\x52\x81\x23\xdb\x53\x50\x04\x11\x68\x3b\xee\x1a\xc0\x76\xd4\x4b\x4d\x20\x23\x15\xa8\xa1\x70\x6a\x24\x44\x3f\x2d\xaf\xde\xa3\x6a\xe1\xbd\x10\x42\x99\x15\x7e\x3e\x4e\x02\xa5\x5f\xe4\x61\x15\x87\x4c\x14\xb5\x34\xfb\x27\xfd\x9d\xe0\xe7\xc5\xc2\x8c\x93\x22\xe5\xf8\x83\x85\x8a\x10\x7f\x88\x6a\x91\x07\x07\x9a\x20\x08\xfb\x36\xce\xe9\x74\x62\xad\xee\xaa\x89\xa9\xb3\x9a\xea\xe0\x9c\x2a\x86\xda\x38\x2b\x52\x4b\xb5\x69\xf1\x55\x65\xea\xe5\xb8\xb9\x0f\x08\x8d\xd1\xfb\xea\xac\xbf\x5f\xf3\x67\x7b\xe7\xda\xf6\x90\x4d\x83\x30\x03\x90\x12\x58\x97\x4d\x53\xd5\xaa\xfd\xeb\x89\x0f\x38\x5a\xdd\xba\x30\x6b\x99\x26\xae\xb6\x5a\xbf\xf1\x75\xaf\x67\x5e\x7e\x65\x01\xad\x7a\x13\x3e\x0e\xcb\xe7\xe8\x46\xcb\xce\xaa\xfd\x74\x56\x31\x33\x27\x2b\x71\xb6\xa5\xf5\x6b\x2f\x56\x3a\x8b\xd2\x8e\xf7\x5f\xe5\x94\x56\x4f\x3a\xa3\x11\xd2\x77\x9b\x10\xd2\x26\x30\x7d\x3b\x0a\x21\x68\x23\x42\x0a\xbe\x6e\x74\x44\x6d\x08\x80\xc0\xc2\x00\xf8\x19\x4f\x3a\xeb\x7b\x83\x9b\x34\x59\xdf\x95\xc9\xcf\xd7\x3f\x4e\xcd\x9f\xa7\xa2\x15\x8a\xa7\x7b\xbf\xa3\x00\x52\x6c\x28\xa4\x8a\xae\x84\x24\x92\x28\xec\x73\x3d\x19\xee\xeb\xb2\xea\x52\x5c\x56\x8e\x71\xc5\x44\xd1\x76\x3f\xc1\x75\x51\x4f\xbf\xa1\x87\x86\x18\xff\x5f\x2a\x51\xc7\x93\x0a\x75\xf1\x86\x26\x55\x3b\x0b\x47\x8a\x0e\x26\x6a\x69\x30\x1d\x9b\xa7\xbe\xa4\x9b\x87\x36\x9b\x2d\xff\x89\xeb\xf8\xb4\xf1\x90\x2f\x9c\x54\xd1\x1c\x46\x37\xf9\xff\x6f\x4c\xde\xf7\xec\xdd\xd3\xfe\xd5\xed\x8a\xb4\x17\x73\x9b\x38\xb6\x2c\x2d\x89\x12\xce\x89\x89\xa2\x2b\x39\xdf\x51\x7a\x6e\xac\x0c\x8a\x70\xe6\x8d\x89\x1e\xbd\x54\xb9\xcd\x07\x4d\x03\x5e\xc4\x58\x18\x8e\x39\x88\x83\xad\x03\x7a\x98\xaf\x6b\x96\x88\x5a\x81\x79\x18\x23\x6f\x77\x35\x75\x5f\x5f\x57\x54\xa4\x07\xe3\x64\x05\xea\x38\x2c\x96\x5c\x11\x4e\xf6\x43\xcc\xcb\x36\xed\x99\x3c\x04\x41\x92\x60\x07\x69\x43\x88\x48\x6a\x13\x29\xed\x38\xb5\x4b\x36\x75\x63\xaa\x18\x9c\x9b\xd2\xb3\xe2\x6b\xdd\x28\x5b\xb6\x8f\xf8\x16\x1a\x2b\x34\x22\x8c\x3b\x0a\x93\x4c\xcf\xfd\x27\x3f\x83\x79\x1d\xc9\xa7\x3d\x1b\xf1\x6f\x4f\x94\x5e\xfe\x5d\x2d\x5d\x7d\x4a\x69\xe4\x6f\xed\x7a\xa0\xea\x95\x89\x97\x18\xdd\x3a\x55\x62\x23\xff\xed\x44\x0d\x21\x64\xa4\x70\xe3\x58\x3d\x10\xd5\xf3\xf5\x54\x75\xfa\xcb\xc8\x61\x95\xcc\x9c\x34\x84\xbc\xea\xd8\x7f\x7c\xbb\xa3\x2a\x53\xb7\xe9\x5b\xf3\x5f\xf9\xe1\xec\x34\x59\xe9\xcf\x2a\x34\xd9\xd5\x8e\x42\x7c\xff\xb6\x0e\xdd\xf0\x4b\x81\x0d\xfb\x71\x6d\xe9\x17\x16\xf6\xb6\xa3\x24\x19\x93\x30\x13\x4c\xbb\xb0\xfc\x28\x46\xac\xb5\xa6\x39\x9c\x7e\xf2\x9a\x8d\x39\xcc\x95\x12\x8a\xae\xad\xd4\x26\xb1\xf7\xb4\xf3\x61\xc8\xa3\x23\xf8\x72\x27\xc8\xfa\xf0\xb5\xf3\x79\x62\xd4\x54\x78\xb8\x79\xaa\x86\x16\x4e\x76\x14\x0c\xff\x4d\xa5\xfb\x77\xb7\x61\xf4\x67\x4f\xf9\x58\x08\x53\x23\xe2\x46\x98\x6c\x41\x25\xf3\xc6\xa4\xe2\x10\x1b\xf8\x0b\xb3\x3c\x25\x54\x86\x52\x0a\xe5\x66\x96\x04\x45\xbb\x14\x0f\xc2\x28\x29\xd3\xe0\x55\x36\x8d\x0e\x7a\xed\x62\x01\x46\xbe\xc2\xde\xae\xb9\x5a\xfb\x20\x35\x4e\xe6\x17\xb6\xf0\x04\x0e\x3b\xdf\x28\x9a\x5f\xd3\xef\xcb\x10\x10\x62\x05\x54\x39\x04\xb5\xa1\xba\x29\xc7\x15\x19\x21\x68\xe1\xf9\xff\x63\xf9\xf8\xd5\x8a\x36\x53\x44\x2e\x31\x8f\x8f\x44\xf6\x3a\xd4\xb9\xd0\x71\x87\x41\x67\x3c\x03\x16\x93\x40\xb6\xeb\xe7\x60\xda\x84\x14\xa8\x61\x06\x3f\x48\x32\x41\x1e\x4b\x16\x54\xc9\x8f\x74\xb1\xec\x35\x13\xe0\x2f\xdd\x9c\x42\x69\x1d\x85\x60\xc3\x5b\x81\x5f\xfe\x95\x5f\x6e\x95\x41\x1d\x6a\x6a\x27\x95\x16\xd8\x49\xa5\x19\x3e\x0a\xb3\x20\x89\xa9\xaf\x52\x46\xb3\x4e\x76\xe1\x6e\x47\x69\x30\xdc\x6d\xc8\xe4\x16\xdb\x49\x2f\x0a\x5f\x2d\xec\xac\xe2\x2e\x7b\x4f\xf1\xe0\x93\xef\x5c\xbf\x43\x1e\x48\xb4\xbc\x7c\xcc\x3f\x08\x97\xad\x59\xe1\x8a\x28\x4c\xd8\x71\x22\x5b\xe2\xeb\xce\x0e\x1f\x2d\x85\xe9\xc3\xaa\x7b\xfb\x4f\xc1\x1c\xe9\xea\xf6\xe5\x29\x47\xb0\xce\x3d\x0c\xa1\xf6\x6d\xf9\xbf\xc2\xbe\x92\xea\x58\x69\xc2\x60\x3e\xbe\x8f\xc5\xe3\x57\xd0\x12\xa1\x34\xf2\xa6\x62\xf1\xbc\xa0\xbe\xcb\xd8\xa4\x5b\x7d\xa1\x0d\x2c\x83\x08\x40\x36\x4f\xd5\x7c\x1b\x37\x0a\xf8\x06\xdf\xd1\x05\x56\x7b\x05\x76\x7d\xab\x89\x7e\x67\x5c\x64\x43\x31\xf3\x52\x27\x52\x32\x88\x67\xd5\x8e\x5c\x4a\x0b\x22\x6b\xb6\x34\x9d\x88\x0e\x3d\xa0\x06\x92\xd5\x96\x26\x14\x51\xc1\xd1\x26\x21\x08\x3e\x91\x39\x47\x48\xa8\xaf\x30\x15\x2c\xdf\xd4\x38\xa8\xf6\xbf\x40\x30\x35\xe6\x2b\x04\x16\x09\xec\x21\x7c\xdd\x64\x0c\x21\xfe\x4f\xa6\x0d\x30\x18\x4c\x75\xf1\xf5\xb4\x41\xf8\x3f\x2f\xe3\x46\x4a\x50\x24\x68\x2a\x5f\xcc\xd7\x6a\x40\xbf\x97\xe4\x43\x9b\xf2\xd0\xb3\xf0\x96\x57\x8e\x7c\xb9\x90\xf0\x45\xeb\x7e\x20\xce\x8c\xc6\x8e\xe4\x08\xff\xc8\x33\xf7\x7c\x33\x15\xd6\x9f\x51\x48\x43\xbf\x2e\x69\x63\xfc\xb4\xc6\x26\x29\xaa\xc9\x13\x9a\x70\x2f\x4f\x48\x37\x52\xea\xb3\xaa\x69\x81\x9c\x0c\xf6\x82\x4b\x54\x42\xe2\xd8\xf0\x94\x8a\xcc\x2e\x15\x91\xeb\x79\xf2\x90\x06\x5e\xe6\x27\x36\x5c\x10\xb9\x42\x58\x3f\x4f\x30\x71\x51\x11\x4c\x5c\x6c\xd2\x2b\x1c\xda\xfe\x40\xb8\x30\x15\xd7\x9c\x23\x9e\xab\xd4\xf7\x47\x66\xf5\x91\xf2\x61\xe3\xdf\x1e\xeb\xaa\xa5\x46\xc6\xae\xf8\xe6\x45\xb0\x76\x2b\x35\xcf\x71\x64\x20\x5e\xcb\x4c\x87\x18\x0b\x73\x52\xfd\xe5\xd3\x76\x3c\xb6\x9e\xd3\xfd\x22\xcc\xb6\x63\x47\xf4\x2f\x71\xdc\x4c\x49\x1a\x0e\xc2\xd8\xe4\x28\xb6\x08\xfb\x00\xb3\xbc\x62\x57\x6c\x41\x3b\x1f\xc7\xfb\xb2\x4a\xae\x7b\x49\x72\x30\x23\x00\x27\x47\x01\xf0\x2d\xa2\x3a\xde\x12\x42\x69\x79\x3b\x61\x29\x22\xcb\x21\x42\xe5\xbe\xb9\x95\xad\x46\xcb\xa1\x69\x79\x08\xd6\x9f\x4c\x34\x09\x70\x53\xf5\x6e\xc9\xa4\x76\x8b\xe2\x6f\xf9\xd3\x89\x17\x16\xe3\x1c\x9a\xc7\x11\x3a\xfe\x51\x02\xf8\x0d\xdb\xb3\xa6\x50\xa1\x60\x1b\xda\x3b\xc7\x21\x36\xf8\x06\xf9\x5a\x0d\xaa\x26\x45\x1e\x24\x23\xbb\xa5\xf5\xfc\xbc\x73\x24\x15\xd5\xc9\x72\xc9\x15\x27\xd9\xfa\x0d\x7a\x70\xdc\x20\xd5\x02\x02\x36\x7d\xac\x7c\x21\xe5\x74\xff\x70\x67\xd7\x63\xa7\xff\xd1\xcf\x75\x3d\x73\xce\x31\x2d\xf4\xb5\x6d\xea\xcb\x17\xf7\x19\x8e\x27\x83\xd0\x2d\x47\xca\xb1\x1d\x33\xbb\x74\x7e\xfe\x93\xa7\xba\x0a\xb5\xbb\x4e\x6e\x46\xa8\xf7\x7d\x7b\xfe\x6f\x4d\x55\x35\xec\x3e\xb5\x4a\x14\xd2\x7f\x51\x0b\xe7\xbc\x24\xb4\x82\xb5\xa8\x86\xdc\x71\x9a\x16\x63\x16\x80\x10\x90\x6c\xf9\x31\x82\x9e\xf5\x63\xa1\x26\x00\x08\x00\x3b\x92\x03\x18\xbe\x71\x64\xe2\x41\x12\x2f\xa5\x49\x2c\x2e\xde\xb5\x56\xca\x15\xe1\x1b\xb5\xa2\xc5\x52\x88\x1c\x94\x4f\x8c\xa2\xd1\xdd\xdc\x55\x69\xf6\xed\x32\x86\xf4\xdc\xb9\x79\x5a\x94\xa9\xa7\x2b\xe2\xc2\xb8\x7e\x03\xe5\x32\xbe\xd9\xc0\x03\x60\xf4\xb0\xd3\xef\xd3\xe6\x12\x12\x62\x81\x24\xdb\x38\x0f\xf3\xc8\x73\xc3\x83\xb5\x61\x13\xed\x2a\xbe\x9e\x4a\x9c\x16\x99\x9e\xc9\x73\x2a\x29\xe0\x69\x9e\x56\x02\xcc\xc7\xf5\x1c\xf7\x0d\x05\x17\xe8\x11\xa5\x39\xd4\x1c\x79\x5c\x54\x8f\x71\xfe\x80\xa2\x02\x91\x84\x57\x29\xb0\xed\xf7\x89\x18\x00\x78\xcf\x77\x3a\xca\xc5\xb7\xba\x3e\xab\xbb\xa0\xea\x6b\xa7\xe9\xbd\x24\x82\x97\xf9\xaf\xe4\xb5\x24\xb6\x7d\x3b\x8e\xac\x54\xf4\xd6\xa9\x8c\xbd\x7e\xbc\x4c\x60\x71\xa8\xc3\x41\x1c\x2e\x85\x81\x97\x52\x14\x36\xb9\xf2\x83\x64\x58\xa7\x29\x48\xa2\x81\x79\xee\xbf\x2a\x00\xdb\xa2\x03\xb0\x35\x94\x2d\x86\x26\xed\xf7\xc3\x0c\x1b\x4b\x62\x90\x96\x53\xbb\x6d\x94\x4f\xc8\x22\x13\xc6\xb3\x4a\xfa\x93\xb7\xbc\xa8\x1e\xfa\x9e\xfa\xb5\x89\x92\xe0\xf9\xc7\x2e\x3d\x1b\x87\x59\x9e\x44\x1c\x65\xbb\x83\xef\xf1\x4b\x8d\x32\x5c\x4b\xd6\xa4\x33\xba\xe9\x3e\xf1\xbc\xf4\x6f\xc3\x72\x61\x0e\xe1\x9a\xd2\xaf\x64\x3a\x84\x9d\xda\xde\x2b\xda\xc3\x7c\xa2\x25\xaa\xdf\x53\x68\xf0\x13\x9a\x95\xed\x0a\xc5\xec\x4e\xd8\x50\x3b\x43\x00\x4f\x50\x3e\x9b\x62\x04\x5a\x48\xcb\xd4\x89\x7e\x80\xef\x07\x8b\x76\x9e\x8c\x85\x2a\x03\x4a\xd9\xee\x62\xc7\x33\x80\x1e\xef\xf8\xfd\x76\x03\x5e\x42\x88\x42\x4a\x43\x87\xfd\x76\xa7\x86\xc6\x04\x98\xaa\x0c\x81\x00\x39\x28\xbd\x24\xc0\xcb\x17\x94\x9c\xde\x85\x86\x60\xf0\xd9\xf2\x22\xb3\x33\xf4\x12\x44\x1b\x77\x68\xa5\x2a\x32\xa3\x5c\xde\x51\x6c\x08\x3c\xbb\xcf\x5d\x6b\x64\x82\xb7\x3b\x4a\xea\xf4\xb6\x02\xa1\xa6\xa6\x8c\xa0\x66\x35\x80\x78\xe2\x47\xee\x4f\xe2\x65\xd8\xe2\x7f\x4e\xa1\xb3\xb0\x8f\xf9\x9d\xc3\x1d\x1d\x4f\xda\xcd\x83\x93\x7c\x53\x49\x5f\xa2\xa2\x87\xbf\xe4\x89\x92\x8e\x6a\xfc\x9f\x6d\xde\xd9\xc5\x08\xc4\x19\xac\x71\x43\x2b\x20\x7a\x37\xf5\x62\x49\x7b\x29\x35\x71\x30\x0c\x33\x0b\x28\x24\xe0\x55\x90\x9f\xe0\x6b\xc5\x3e\x1b\x3c\xd3\xd2\xb8\x41\xc5\x70\x70\x41\x15\x6d\x52\x3b\x4a\x48\x9b\xa7\xdc\x73\x38\x39\x0f\x90\x86\xf0\x4d\xed\x18\xef\xde\xdd\x2e\xe2\x25\x13\xa6\x5c\xcf\x43\x42\x8d\x2c\x8c\xaf\x6b\x9e\x67\x7e\xbf\x74\x5e\x67\x54\xfa\x70\x4b\x81\x15\x8f\x28\xb0\xe2\x05\xf5\xc0\x23\x53\xc4\xc1\x90\xa3\x60\x9e\xaf\x24\x62\xca\x4a\xfd\x84\xd5\x57\x3a\x62\xd5\xca\xf0\x3f\x46\x06\x91\xcd\x2a\x68\xd2\xb6\xae\x3e\x81\x95\x52\x07\x13\x0a\x09\x10\x45\xfc\xe0\x92\x39\x54\x7e\xe9\xf2\xef\x84\x99\x7c\xc6\xeb\x8f\x30\xac\x12\x63\x8c\x5b\x6a\xb2\x1c\x14\x82\x86\x83\x61\x9e\xb5\x5a\xbb\x77\xfb\xe1\xba\xf2\xdd\xf8\xa6\xe3\x1f\x45\x2f\xc9\xf3\x48\xc2\x55\x19\x90\x2a\x7f\xb6\x54\x8e\xdd\xb8\xd0\xd2\x60\x68\x38\x12\x46\x1c\xca\xfd\x6e\xbe\xa9\xe5\xe1\xbb\x77\xb7\xa3\x44\x12\x1b\xa1\x89\x23\x1b\xc1\x37\x93\x2f\x54\x6a\x19\xb1\x28\xe5\x64\x6a\xac\xeb\xa2\x1a\xeb\xaa\x2a\x48\x58\x93\x3e\xe1\xad\xdc\x0d\x05\x9d\xfd\x57\x38\x63\x08\x48\x36\x75\x95\x36\xc9\x49\x2d\x8b\x78\x59\xa5\xd2\xe7\xd4\xb0\xd3\xe5\x89\x9a\x9e\x79\x0f\xfe\x1e\x55\xa6\xeb\x64\x23\x65\x16\x9d\x9e\x30\x5a\x7e\x5b\x69\x74\x0b\x15\xdf\xfb\x88\xf5\xf0\x19\x67\x68\xf4\x96\xd5\xf7\xa6\x7e\x9a\x6f\xf5\x49\xa2\xcf\x74\xe7\xb4\x34\x84\xb0\x7d\xb7\xa8\x73\x04\x1b\xf6\x28\x6f\x1c\x8e\xd2\x6a\x87\xa2\xcc\x04\x23\x33\x70\x4c\x38\x70\x1a\x00\x88\xf0\x75\x93\xdc\x37\x94\xcd\x89\xde\xc8\x61\x34\xae\x2b\x62\xc9\xeb\x8d\xbe\x69\x58\x80\xa9\xd5\x4f\x8a\xd0\xca\x60\x82\x15\x69\x78\x45\xc8\x4e\xc6\x51\x64\xff\x64\xc3\xa4\xc8\xf9\x5c\xa0\xb8\xcd\xda\xc1\xce\x8d\x7b\x9a\x80\x4f\x27\x1a\xc9\xfe\x54\xad\xec\xfd\xe5\x32\x16\x40\xe5\x5b\xca\x79\xf4\xcc\xb0\xe8\x7f\xd3\xf1\x68\x99\xcb\x1d\x35\x3e\xf6\xbb\x70\x78\x7c\x43\x0b\xed\xf8\xb9\x5c\x35\xe7\xad\x89\xca\x57\xea\x02\x29\x80\x56\x06\x36\xcb\x1c\xa8\x4f\x94\xb7\x3c\xea\xe9\x42\x47\xcf\x3a\xf5\x19\x19\x23\xc1\xbe\xef\x52\x41\xa5\x18\x3b\xed\xd8\xa4\xa2\x1c\x1d\x85\x14\x1c\xf9\x01\x25\xf8\x74\xbe\xf6\x03\x8e\x45\xbf\xef\x32\x6f\x57\x30\x54\xd5\xc3\x5a\xa9\x69\x61\xc1\x75\xab\x5a\x2a\x01\xab\x60\xc1\x1a\xd0\x17\x7b\xda\x2b\x34\x1f\x43\xdf\x08\xa5\x37\x70\x88\xf1\xb5\x82\xab\x67\xd6\x30\x3f\x27\x8e\x20\xa2\x25\xd4\x53\xee\x2a\x65\xb0\x63\x6a\xc8\xcc\x2e\xdb\x74\x35\xa7\xae\xb5\x87\xbb\x69\x44\x0f\xc6\xfd\xb0\x3d\x4e\x61\xea\x42\x20\x2b\xbe\xed\x15\x14\x79\xf6\x70\xf9\x7a\x1c\x45\xc6\x80\x31\xb7\x14\x45\x1b\x30\xbb\x57\x71\xc4\x85\x9e\xd1\x37\xc4\xf8\xb8\xbb\x62\x58\x79\x92\xf9\x25\xf4\x63\xb1\xa9\x6f\x6b\x8a\x71\x2e\x86\x09\xc9\x91\x2f\xcf\xe7\x79\x24\x9e\x07\x71\xf8\x75\x85\x56\x61\x86\x44\xb8\xae\x9f\x34\x89\x18\xe5\x69\x38\x18\x78\x26\x4d\xe6\x7b\xc4\xcb\x84\xfc\xb1\x41\x55\x3b\x0c\x84\x60\x42\x08\x0f\x5a\x4a\x27\xa0\x01\xd0\x18\x24\xa3\xcc\xe4\x0c\x10\xe3\x03\xa4\xe1\x1b\x7f\xd3\x00\x10\xdb\xd3\x0e\x92\x6c\x64\xf3\x30\x10\x64\x19\x76\xc1\x71\x3d\xcf\x7a\xdc\xe5\x6b\x66\x64\xe3\xfe\x48\x1a\xb4\xe8\x7c\x68\x48\x1b\x2f\x21\xc7\x91\x4d\x62\xfe\xe3\x30\x4a\x90\x30\x01\xac\x82\x3e\x34\x5f\xbb\x35\x47\x3f\x97\x23\x27\x3c\xc3\x35\x8d\x4a\x5e\x6b\x9a\xec\xc9\x56\x47\xe3\x32\x64\x93\xaa\x9d\xc0\xe2\xfc\xe0\xde\x89\x86\x96\xfa\xb3\x80\xf8\xb4\x94\x3f\x83\x0f\x91\x2c\xfa\xf3\x3e\x7a\x0c\x33\xd3\x5f\x36\x71\x6e\x78\x98\x04\x5b\xe5\x3e\xf6\x20\xdf\xa8\x89\x43\x1a\x78\x4b\x62\x9b\xae\xb6\x94\x02\xda\x9a\xaa\x8d\xae\x4d\x9e\x52\xcd\x9d\x38\x4f\xc3\x5e\x01\xe5\xb0\xd2\x0d\x21\x37\xe3\x8a\x11\xdf\x74\x3c\x89\xe9\x45\x35\xb4\x7e\xd1\xd9\x91\x83\x14\x74\xb2\x7b\x87\x4d\x3f\xae\x18\x0a\x3c\x44\x20\xb3\x81\x29\x82\x02\xb5\x33\xc0\x49\x7e\x8a\xc7\xc7\x37\x0a\x7b\x9b\x15\xd9\x38\x0c\xc2\xa4\x90\x5d\xe2\x80\x50\x7e\x08\xf0\xc2\x67\x72\x78\x05\x91\x49\x03\x66\xd9\x12\xb3\x47\x1f\x24\xf6\xb0\x41\xf4\x2c\x0b\xf9\x27\x08\xff\xaf\xef\xfe\x9c\xe9\x78\x61\x8c\xf0\x50\xc4\xdf\x08\x87\xfb\xba\x66\xe1\xbf\xae\xc2\xd9\x5e\xae\x06\x38\xa1\xa1\xcf\xd7\x6e\xe5\x96\x49\xc8\x8b\x13\x3d\x84\x92\x33\xf0\xf4\x7c\x53\x83\x3e\xef\x7f\x81\x48\x62\x01\x16\xc0\x03\xba\xa1\x02\xd9\xb3\x6a\xac\xee\xa8\x9b\x43\x18\x86\x51\x84\xd0\x1a\xee\xe2\xd3\x8e\x1e\xbb\xfc\x54\xb5\x02\xfa\x36\x32\xab\x4e\xad\x10\xce\xfa\x8f\x61\x37\xf8\xa6\xa9\x9b\x3b\xb0\xb1\x8d\x73\xcb\xf0\x3a\xe1\xf7\x51\x90\xbc\xb7\xd5\xe8\x7b\x91\xd9\xec\x21\xaf\xf2\x74\x8e\x4c\xab\x00\x9c\x54\xbc\x75\xa1\xa3\x2a\xc2\x37\x2a\x44\xa6\xf4\x7d\x10\x3d\x7d\x84\xa8\x0c\x27\xe1\x7a\xc7\xf3\xfc\x5f\x57\x40\xfc\xe3\xaa\x26\x67\x22\x0b\x90\x9c\x9b\xfd\xf2\xa8\xc4\x3a\x68\xbb\xcc\x79\x02\x93\x06\xa0\xbf\x94\x19\x3f\xf2\x0c\xc8\x3d\x0f\x4f\x3c\x00\x6c\x73\x4d\xbb\xf6\xc0\xdc\xa2\xc4\xb1\x7b\xf7\x38\x6f\xa7\x3c\x5f\x6d\x96\x14\x6d\xee\xd4\x66\x63\x93\x65\x02\xcd\x6b\x0a\x67\x1f\x75\x87\xcf\x4b\x04\x20\xd2\x64\x92\x0b\xbe\x69\xb0\x3f\xed\x28\x1c\xd1\xbc\xfa\xde\xb9\xaa\xd4\x30\xdf\x28\x94\x0b\xea\x03\x48\x48\x59\xd6\x41\xc9\xba\x5c\xf4\xfa\x89\xff\x25\x4b\xe0\x8a\xf6\x83\x62\x06\x89\xc3\x19\x54\x01\x70\xf6\xbe\x47\x0f\x06\x81\x1b\x4b\xce\x23\x4b\x3a\xa1\x2b\xb7\x43\x6b\x19\xb0\x26\x9e\x5a\x23\x4d\x9d\x45\x29\x9e\xc9\x9e\xc9\x9e\x49\x9f\x99\xa9\x22\x19\x9c\xe7\xe7\x53\x0f\x43\x74\xa7\x23\x95\xb4\x2c\x59\xb6\xa9\x0d\x07\x71\xce\x43\xa9\x8e\xef\xc5\xbd\x12\xc5\x5a\x6e\xe4\xd4\x05\xf0\x77\xb7\x07\x26\x4b\xa2\x30\xc6\x0c\x51\xd3\x5c\xed\x93\x6e\x15\x55\x72\x37\xeb\x25\x7c\xa1\x21\x84\x35\x7f\x43\x4d\x2c\xbc\x31\xf1\x83\xef\xc7\x14\x14\xb1\xb4\x69\x02\x73\xc3\x09\xff\xb6\x6e\x3c\x7c\x5b\x1d\xe3\x71\x12\x85\x41\xc8\xa2\xf0\xf0\xdf\x60\x56\x45\xf0\xf4\x76\xc7\x5b\x0f\xd6\x0e\x46\x51\x12\xfa\x8b\x82\x71\x51\x4d\xb4\xd3\x93\x4a\x4d\x82\xce\x1c\xe2\xac\xff\xaa\x16\x48\x94\x01\x7f\xb2\xc2\x01\xa2\x90\x51\x2a\x62\x4a\x85\x9d\xe9\x17\xa3\x5e\xcb\x87\xcf\xa0\xaa\x96\x62\xc4\x4e\xed\xd5\xd2\xbc\xb4\x93\x2d\x47\xa5\x75\xa2\xe3\x43\xb5\x13\x2a\x16\x34\x59\x16\x66\x79\x19\xfe\x92\x85\x04\x39\xee\x27\xf4\xbe\xf8\xbe\x60\x51\x12\x2c\x63\x93\x00\x58\x64\x46\x78\x31\xd2\x20\x90\x82\xc3\x8e\xa1\xd0\x2f\x60\x5e\x05\x0a\x8c\xf3\x74\x95\xce\xb8\x53\x9c\x50\x20\x15\xff\x7b\x87\x36\x8a\x5a\x4a\x09\x12\xcf\x4f\x64\x21\x7d\x6b\x73\x90\xc4\x68\xb8\xb9\xf8\xfa\x45\x17\x6b\x2b\xc0\x77\x6c\x57\x46\x26\x6e\x79\x3d\x55\x26\xe8\x14\x9e\x58\x29\x09\x40\xcf\x52\xf5\xa1\xd6\x54\x1f\xaa\x8e\x98\x58\x5c\x6c\x2f\xa5\x36\x2e\xcd\xb9\xb3\x6d\x7f\x50\x21\xe5\xaf\xd4\xae\xc7\x91\x7d\xdc\x27\xdd\xa0\x97\x44\xba\xf2\xad\x89\x1a\x3a\xe7\x5a\x2b\x10\xee\xb3\x90\x16\x42\x14\xdc\xea\x6a\x9d\x2e\x4e\xa1\x1d\xa5\xad\xee\x4a\x79\x68\xce\x2c\xe9\x6c\xa1\xd5\x70\x83\xb6\x33\x8e\x2a\x54\x63\x9c\x96\x7f\xb9\x83\x61\x5d\xae\x6a\x1c\xcd\x09\xa5\x9a\x7c\x4a\xd7\xfe\x9b\x28\x59\xdb\x83\xc2\xa4\x4c\xf4\xa3\x29\x99\x05\xeb\x24\xab\x6c\xd2\x41\x61\xb7\xaa\x18\x9b\xe7\x8a\x9d\x04\x96\xa3\x1c\xc1\x5c\xa8\x60\x8c\xca\x2f\xcf\x96\xab\xe3\x21\xac\xef\xd5\x62\x9b\xf2\x5c\x15\x31\x33\x65\x4a\x76\x00\xa0\xc4\x25\x35\xa1\x7b\xb7\xa3\xdc\x75\x9d\x11\xea\xc0\x5c\x7b\x90\x86\x23\x6c\x2f\xa7\x5a\xe5\x15\xac\x2a\x05\x42\x9b\x9b\x59\x15\x10\x33\x1d\x1f\xdf\xc0\x3f\xe3\x65\xe7\xf0\xa1\x7c\xa3\x5a\xa0\xbf\xf4\xb5\xc5\xf9\x5f\xfa\x79\x3d\x8c\xae\x0a\x8e\xb7\x90\x8b\xc1\xaa\x1c\xee\xa8\x0d\xba\xa5\xdb\xda\xbd\x9b\x97\x71\xd3\xb4\xdc\x03\xc8\xa9\xf1\xa8\x65\x4a\x93\x76\x17\x6c\xfb\x25\xcc\x4a\xe3\xab\x7d\x9f\x7a\x0b\x78\xdb\x37\x30\xcf\xc7\xc9\x02\x33\xe3\xe3\xcf\xb6\x4e\x55\xae\xc3\x60\x36\x7c\xe4\xf7\x55\xb5\xfd\x8e\x9e\xe0\xd9\x01\x7a\x4f\x09\x2b\xca\x47\x0a\x8f\x77\x5a\x09\x4f\xed\xea\xce\xec\xfb\xad\xe7\x39\xc3\xf8\x0e\x2d\xae\x68\x31\xb4\xdc\xc0\xff\xb5\x4e\xeb\x6b\xbf\xc9\x25\xe0\x19\xe6\x7c\x43\x65\xf7\x96\x16\x4e\xfa\x04\x15\x21\xd7\x2d\xdb\x33\xbf\x5f\xcd\x9e\xbc\x20\xd8\xda\x0b\xba\xaa\x78\x0b\x01\x8a\xfc\xe4\xd6\x6f\x7c\x9d\x4b\xfb\x77\x14\x0d\x36\x0d\xfe\x65\x60\x6b\x52\xa0\x69\x8f\x1c\x2a\x7f\x9b\x0b\xa5\x9e\x5b\x74\x21\x96\xc4\xae\xfd\x22\x75\xc0\x60\x3c\xf7\x3b\x8a\x96\xe7\x4e\x03\x42\x69\x5f\x3b\x8c\x45\x04\x67\x8f\x53\x62\xf7\xc7\xe2\x48\x53\x47\xfc\x4b\xf3\xcf\x3d\xfb\xdc\xfe\x7d\xa0\x8f\x81\x21\xd8\x46\x73\xcf\x18\x8f\xdd\x46\xa5\xd5\x0a\x4b\x80\x43\x42\xee\x66\xbd\xbc\xff\xe2\x6f\x75\xe5\x4b\x9b\xf8\x10\xa5\x14\xea\x59\xc3\x56\xf3\x75\x13\xfb\xee\xd0\x1a\xaf\xf3\x83\x7c\x00\x4a\x43\x7c\xed\xde\xdc\x8e\xc3\x2c\xe9\xdb\x19\x45\x2d\x70\x4a\x39\xd4\xdb\xd4\xbe\x40\x2b\x63\x4d\xd3\xf9\x0f\xad\x19\x5b\xee\xdd\x08\x8f\x4d\xa5\x1f\xe9\x8b\x3e\x47\xd4\x48\x5c\xd2\x43\x9f\x91\x59\x50\x85\x65\xf3\x9a\xd2\x20\xbe\xa6\x9c\x45\x30\x0c\x3d\x3b\x28\x1c\xe7\x79\x35\xb1\xc4\x84\xa8\x38\x5a\x47\x55\xfc\x76\x88\x05\xd1\xdd\x64\xf8\xde\x39\x17\x3b\x7b\x0f\x58\xe6\x91\xb6\x55\xa3\x1e\x95\x26\xe3\xe9\x86\xb1\xf6\x45\xcf\x8f\xc3\xf1\x2b\x4f\xe0\xd2\x47\xc8\x34\xae\xaf\x36\xe7\x09\xe4\x5b\x5a\xca\xf0\xbd\x01\x13\xcf\x37\x1d\x5f\x47\x1a\x99\x30\xda\xe6\x87\xea\xfe\x35\xfe\x0e\xed\x4f\xe6\xcd\xe4\x1b\xc8\x58\x08\x6b\xac\x1f\x63\x3e\x4f\xae\x47\x98\x65\x55\xdd\xfd\x62\x67\x3b\xff\x06\x66\x9f\x65\x75\x5d\xda\xfd\xa2\xb4\x2b\x84\x6e\x51\x98\x63\x6a\x06\xff\x70\xaf\xe3\xbb\x9e\x17\xd5\xea\x23\x29\x90\xba\xaf\x1a\x08\x39\xd7\x34\x48\x16\x15\xaf\x25\x31\x2f\xb6\xc0\x13\xe9\x35\x52\xd0\x6c\xa0\xc3\x09\xe3\xe5\x24\x5a\xf6\xcd\x63\x34\x31\xce\xa8\x86\xc6\x99\xc9\x17\x15\x8d\x5c\x60\xc6\x61\x6e\xa2\xf0\x35\x16\xa0\x2f\x2d\x8a\x23\x06\x72\xfd\xcf\x6b\xb0\x55\xd2\xcd\xac\x77\x80\x5e\x22\xd6\x90\xac\x48\x6d\x3a\xa3\x09\x30\x54\x2c\x80\x44\x5b\x8a\xfc\x0d\x25\xc7\xb1\x59\x4d\x93\x48\xfa\xa1\x2e\xf5\xf0\x69\x88\xaa\x1f\x0e\x92\x55\x33\xa3\x5c\xd6\x4d\x4e\x75\x39\x22\xd0\x51\x4c\x6b\xea\xc3\xc6\x5e\x91\xf6\x6d\x9c\x25\x23\xab\x33\x5f\xd4\x35\xa5\x27\x28\xc7\x3c\x4f\x93\x71\x18\x08\xa8\x1c\xde\x63\x2b\x3a\x05\xe8\x84\xdd\xac\xb4\xd7\x9b\x5a\x4b\x4b\xe1\xa0\x48\xa5\xd1\x23\x1c\x46\xf4\x0e\x8e\x89\xcf\x01\x9b\xef\x4e\x7c\xa7\xe2\x3b\xb5\x37\x7b\x71\xef\x5c\x7b\x64\x73\x23\xab\x23\x7a\x07\x2d\x47\xb4\x7a\x6e\xe2\xa1\x0f\xa4\x14\x9f\xe5\xc4\xbf\x8c\x87\x2e\x0c\x4c\xc2\xbe\x53\xbe\x0e\x80\x81\x9d\xf5\x3e\xb5\x18\x18\x47\x58\x39\x34\x29\x32\x63\xf4\xb6\x76\x74\x3d\x2a\x9d\x27\x54\x04\xb7\xfc\xb8\x1a\xa0\x19\xdb\x20\xcf\x48\xaa\x0e\xd5\xf4\xbf\x51\x3a\x3a\x97\x10\x33\xa1\x50\x72\x5e\x69\xea\x3e\x0a\x24\x33\x4e\xc5\x1d\x3c\x47\xd4\x3c\x1e\xad\x88\x0a\x44\x11\x3f\x7f\x20\x22\x4e\x53\x78\x85\x73\x71\x57\xeb\x8d\xd5\x21\xb4\x94\x7a\xdb\xd1\x38\x07\x10\x12\x28\x0f\xcc\x68\xf2\x75\x33\x28\x7d\x6c\x78\x72\xa5\xa9\x53\xbf\x51\x26\xfc\x17\xda\xb1\xc5\x5f\xe3\xcb\xbf\xde\xf1\x10\xdf\xd7\xeb\x13\xf6\x07\xe6\x9e\x55\xf2\xd5\x1f\x2b\xf9\xea\x8f\x5d\x73\xc4\x1e\xca\xa9\x3c\xba\x28\x28\x95\x99\xae\x9f\x1b\xb8\x8f\x93\x26\x2d\xcb\x87\x42\x82\xaf\xff\x72\x3b\xfa\xff\xd1\xff\x47\xc0\x70\x0d\x21\x0e\xac\xe8\x15\x0a\x52\x30\x5a\xb1\x63\xea\x33\xae\x87\x81\x50\x47\x8c\xf2\xaf\x10\x2b\x20\x49\x5d\x23\x9a\x73\xec\x7d\x5e\x63\x14\xaa\xcf\x76\x5a\xcf\xcf\xbb\x66\x20\x36\x1a\x65\x5e\xff\xe9\x17\xa6\x4a\x00\x6a\xb6\x4b\x91\x8c\x28\xeb\x52\x8c\xe3\x46\x8d\xca\xa8\x0e\x21\xde\x63\xc0\x20\xe1\x2b\x7f\x4e\xfd\xc6\x4d\xdd\xd6\xd3\x4f\x3b\x79\xc7\xd2\xc0\xa2\x4c\xf0\xa1\x52\x0b\xbb\xdb\xf1\x48\xb9\x3f\x87\x33\x60\xd5\x4d\x62\x53\x17\x78\x9d\x22\xe5\xfd\x77\xa6\x14\x38\x8a\x36\xa2\x17\xd5\xbb\xf5\x24\xe5\x1e\xa8\x60\xdc\xa3\xd8\x48\x26\x4a\x1f\x53\x14\x3d\xe9\xc0\xa6\x40\x3f\xa3\xf5\xfe\x2e\xf2\x1a\x17\x95\xb9\x44\xf2\xa2\x42\x1e\xfc\x31\xbd\x9d\xf8\x04\xcf\x82\xfa\xf1\x35\x57\x10\xcf\x6d\x96\x87\xa3\x24\x5e\xdd\xe6\x25\x84\x4e\xe9\x1e\x3f\x98\xa8\x75\x73\x0a\xcb\x3c\xf5\x34\xf5\xff\x60\x57\xb7\xf5\x6b\x2f\xae\x9f\xd3\xf4\xde\x17\x95\xf8\x6f\x52\xa4\x3b\x7d\xcb\xe4\x9b\xf4\x42\xbc\xc7\xba\xae\x14\x6d\x9e\xaa\x27\x72\x94\xf6\x8d\x14\x89\x2a\x0d\x79\x5a\x3b\x66\xb0\xa2\x2f\x84\x70\xf6\x12\x79\x58\x3c\xdc\x77\x26\x0a\x2c\xb8\xa9\xab\x70\xd4\x17\x35\x6d\xe5\x35\x98\x07\x9c\xed\x2b\x88\x8d\xc5\xc3\x97\x2b\x87\xb3\xc1\xb3\xf5\xfc\x25\xbb\x5e\x4b\xf0\x66\x23\x75\x14\xe3\xe6\xb1\x3f\xdd\xd7\xf1\xc5\xec\x77\x14\x92\x3b\x2a\xb2\x47\xcb\xa7\x2f\x8a\x37\x8a\x89\x61\x3a\xf1\x34\x36\xa7\x74\xa3\xfe\xd1\xa9\x0e\xba\x4e\x28\x92\x7b\x1e\x3b\x65\x95\x4e\xd2\xba\x26\x53\xf5\xef\xb5\xb1\xd7\xe5\xe9\x7a\x71\xad\x19\xa0\xce\x90\x2f\x3e\x3a\xf5\x65\x8a\xdb\xaa\x0d\xb9\xa5\xfb\xa4\xae\xf1\x07\x36\xa6\xda\xd3\x56\x7c\x0d\xf4\xa1\x6e\x76\x54\x96\x81\xb8\x87\xaf\x3b\x4a\x13\xe9\x26\xbc\x92\xa8\xac\x2b\xf4\xe4\xa6\xa9\x5f\x94\x7e\x38\x9e\xf1\x3e\xfc\x16\x72\x41\x47\xe9\xaf\x66\xf5\x1c\x55\x67\x31\x88\xc2\x83\x56\x31\x66\x5e\x57\xa9\xaf\xa6\x65\x0b\x92\x28\x49\x39\x5e\x77\xfd\x08\x17\xd6\x1d\x57\x83\x7c\xfd\x64\x44\xb0\x53\x9a\x55\xc1\x53\x58\xc3\x06\xe1\x9b\x8e\x22\x7a\xe2\xa1\x26\xbe\x51\xd5\xe9\xac\x08\x86\x84\xa1\x14\x9a\xd4\x96\x62\xe1\x53\xac\x02\xff\x87\xc6\xfb\x9c\xd5\x00\xa4\x9f\x74\xaa\x4f\x9b\x4e\x3d\x92\xdf\xff\x13\x5f\x81\x69\x72\xb0\x77\xb0\x34\xa8\x36\x22\x2e\xb9\xad\xb5\x1b\x76\xd2\xf3\x5e\xbf\x45\xa6\x0c\x26\xf6\xb1\xa9\x97\x0b\xff\x33\x4a\x3b\x91\x1b\xfc\x77\xca\xfc\x64\xc9\x4a\xc8\xcc\x49\x22\x3b\xef\xf1\x37\x27\x5d\x1d\x34\xb5\xe3\xc8\x04\xd0\xfc\xa0\x6f\x83\x0d\xcf\xaa\x01\x8c\xba\xf2\x9c\xcb\x7f\xef\xf1\xae\x1f\x29\x6f\x4d\x37\x86\x6a\xfb\x5f\x68\xaf\x0c\x93\x64\x4c\x8c\x8b\x6e\xca\xef\x36\x59\x5e\xc5\xb4\xf6\xac\xe3\x00\xd8\xd8\x4a\xd8\xf3\xc2\xbe\xf6\x38\x32\x71\xee\x67\xf6\x84\x5c\x5f\xd1\x6d\xfd\x08\xdb\x10\xa5\xbd\xfa\x08\x47\x79\xa2\x47\x49\xca\x48\x2d\x58\x9a\x1f\xe1\x69\x89\x7c\x15\xbd\xde\x0f\xac\xf8\x6e\x7b\x90\x98\x96\xef\x37\xbf\xa9\x78\x92\xdf\x6c\xaa\x92\x41\x30\xa7\xe5\x81\x95\xef\xe3\xad\xf9\x46\xa9\x86\x8d\x92\xbe\x8d\xa0\x55\xc5\x4f\x19\x24\xcc\x88\x80\xdf\xed\xf8\xb7\x98\x56\x21\xca\xbb\x34\x03\x8a\x19\xa4\xac\x72\x26\xaa\xc1\x5c\xe2\xe2\x1b\x65\xa7\x9e\xff\x8f\x7e\x6b\x46\x15\x87\x01\x71\x71\xfc\xff\xcf\x79\x52\x9f\x06\x0c\x74\x66\xa3\x68\xcb\x8c\xd7\x47\x39\xa9\x26\x2f\xbf\x39\xf1\x8a\x4b\x0f\xe8\x6c\x03\x0e\xca\x44\xcd\x28\xa9\x3d\x68\x4a\xe4\xfb\x36\x4f\x93\x10\xab\xc5\x4c\x31\xf8\xa9\x42\x1b\xb3\xb1\x25\xb7\xb0\xd0\xee\x15\xab\x7a\x5f\x9e\xab\x93\xa0\x63\xd1\xae\x91\x3b\x15\xaf\xef\xc7\x9c\x1c\xfc\x6c\xd6\x4f\xd3\xf0\x1e\x44\xc2\x7f\x53\x71\x00\x80\x05\x1a\x9b\xfb\xb4\x2a\x52\x9b\xd4\x8a\xf8\x31\x16\xed\x75\x3d\xc1\xf6\x7a\x9d\x63\x7a\x6f\xb9\x01\xe3\x30\x4f\x52\x2a\x23\xcb\xf3\xa6\x1f\x22\xb3\x05\x65\x60\x84\x08\xe2\xa8\x9a\x3a\x5d\x0e\x83\x3c\x1c\x65\xdb\xcb\x2f\x82\xc2\xce\x27\x1a\x26\x79\x51\x31\x5b\x9d\x55\x81\xc7\xbd\x8e\x6a\x07\xff\xb4\xa3\x10\xbb\x40\x67\x0b\x44\xd1\x27\xb7\xdb\x6a\x73\xc4\x5f\x69\x67\xc9\x92\xe1\x2c\xc2\x7d\x4b\x27\x88\x7c\xae\x76\x58\x17\x16\xda\xb9\x4d\xd3\x24\x95\xc1\x6d\x1c\x35\xcc\xcd\xf3\x75\x6d\x6d\xc0\x82\x92\x06\x6e\x86\x03\xf5\x8e\xcb\x4a\x38\xe6\xb4\x52\xa4\x7b\xc7\xb5\xb9\xec\xc8\xa6\x03\x46\xe6\x4b\x29\xa4\x5c\x5c\x89\x8e\x94\x94\xe5\x0d\xb2\x95\x22\x35\xd8\x72\x72\xe9\x57\xb5\xa0\x6b\x58\xe6\x41\xae\xf5\x2a\x9a\xf4\xde\x6a\x9d\xa9\xd8\x85\xd4\x70\xa5\x8c\x39\x53\xb0\x71\xa5\x15\x47\x4f\x48\xb3\xa9\x28\x46\x59\x41\x48\x87\x7d\x3b\x5b\x7e\x2d\xd6\x36\x57\xdc\xa2\x3f\x9d\x54\x4a\xc6\xe5\x8f\x92\x62\xd4\xc6\x25\x7f\xf9\xe5\x76\x38\x1a\xa7\x36\xcb\xa4\x62\x02\x07\x76\x9d\x96\x8c\xaf\x15\xba\xd7\xa4\x69\xb8\xcc\x80\x67\x44\x0c\x5c\xe5\xe1\x1b\xb7\xba\xa3\xf0\x50\x6e\x03\xe5\x8e\x79\x72\x8e\x6f\x9a\x8d\x84\x1d\xb5\xb4\x9c\x2d\x3d\x01\xd1\x09\xdd\x58\x08\x90\xbe\x7c\xb2\x94\x5b\x66\xa6\x77\xb0\xf4\xe7\x44\xea\x15\xed\x1f\xd8\x9c\x47\xbb\xad\x5f\x97\x30\x13\x81\x2b\xf6\xe1\xa6\x69\x45\x07\xd3\x2e\x15\x91\xfe\x16\x1d\x45\x1e\x73\x5e\x8d\x67\x85\x2c\xc0\x6e\x5b\x4a\xcf\xe3\x23\x25\xda\xfb\x51\xed\x37\x96\xce\x28\x66\xeb\xce\xf4\x0d\x1d\x4d\xe5\xe0\xb0\x69\xd6\x66\x66\x45\x11\x6d\xa1\xc3\x54\x11\x33\x65\x65\x1c\x85\x12\x5d\xb2\xd8\x82\x2d\x9f\x31\xbf\xaf\x66\xb7\xdf\xaf\xa5\x9a\x8b\x8b\x6d\x33\xb0\x71\xb0\xaa\x0c\xe8\x29\x6d\x40\x4f\x55\x71\x63\xf6\x21\x98\x2c\xec\xc5\x0f\x29\x2d\x82\xe5\xd8\xd6\x55\xd1\xd4\xe1\xca\xf0\xac\xc6\xd2\xdc\xec\xf8\xe1\xba\xbf\x51\x40\xa0\xcd\x53\x1f\xbf\x62\xc2\x8d\xc1\x87\x1b\xb3\xd7\xe7\x16\xdb\xfb\x5f\x68\x55\x88\xfd\x5a\xd5\x71\x6d\xcf\xe8\xfd\x9a\x55\x0a\xb0\x98\x68\xe0\xeb\xda\x40\xda\xcb\x2f\xb7\x97\xc3\x65\xd3\x2a\x7f\x10\x12\xa8\xdb\x78\xea\x7c\xa3\xa1\x70\xfd\x3e\x1f\x16\x94\xfd\xd9\x8b\xa0\xeb\x20\x2e\xa5\xa1\x3c\x13\x17\x69\x26\xe4\x45\xb0\x1d\x47\x94\x1d\x39\xd2\x28\xdb\x67\x4d\x96\xcf\x78\xda\x1f\x4e\xad\x10\xc4\xfd\x90\x36\x36\xce\xe7\xe5\x9a\x9f\xfb\xd5\x76\x36\x4e\xf2\x59\x5f\x79\x39\xa7\x39\x86\x98\xe6\x5f\xb6\x93\x07\x35\xd4\xc1\xbb\x54\x8d\x18\x99\x38\x34\x15\xd8\xc0\x44\x9b\xa4\x5d\x6a\xf8\x3d\xc6\x88\xca\x8c\x76\x4c\xf4\x4d\xb1\xc5\x8f\x29\xf2\xdb\x9b\x95\xb6\x50\x16\x24\x9c\x4b\xa0\xbc\xd3\x52\x65\x82\x37\x69\x4b\x60\x17\xb3\x42\xa9\x23\x89\xf3\xba\x46\xdf\xe8\xa8\x52\xfd\x35\xd5\x96\x88\xad\x49\x7b\xab\x2d\xdd\x90\xf2\x4d\x85\x77\xfc\x00\xbb\x89\x96\xcd\x00\xb5\x27\xe6\x86\xec\xf8\x4c\x17\xd3\xab\x52\x1c\xf4\x3f\xb9\x88\x83\xa1\x49\x73\x51\xed\x60\x5d\x00\xfa\x00\xd1\x08\x90\x53\xfd\x5a\x94\xe4\xab\x19\xc0\x01\xb0\x4e\x77\xa8\x91\x22\x73\x0d\x7e\x27\xdf\x56\x61\x5e\xaf\x48\x63\x86\x39\xf2\x9c\x5a\x47\xcf\xac\x6d\x3c\xd3\x7b\xe7\xda\x26\xc8\x5d\x6f\x01\x5d\x0c\x58\x19\xbe\xae\x34\x5a\x83\x22\x9a\x51\x95\x8b\xb3\x8a\x5b\xe9\x3a\xd5\x95\x81\xa6\x3e\xa2\x12\xf9\x83\x83\xde\x6c\x85\x5e\xa8\x46\x76\xcb\xff\xa0\xf3\xa1\xf3\xb5\x22\x2c\x50\x29\x2b\x26\x65\xf8\x01\xbc\x33\x8f\x7a\xf0\x4d\x43\x6a\xdd\x1e\xa7\x61\xb0\xe1\xe7\x6d\x56\x0d\x9b\xcd\x5d\x5f\xb8\x5d\x31\xe5\x4e\xf4\xcc\x1c\x6b\x9a\xf2\xf9\xf7\x39\xa7\x92\xa2\xf5\x2e\x95\x1f\xc6\x4b\x21\x84\xee\xe7\xf7\xbb\x9a\x66\xb9\x30\x7c\xdd\x84\x08\x24\x3a\x5f\x05\x14\xbf\xa9\xbc\xf6\xcd\x46\xf9\x4f\xcf\xc9\xa5\xa0\xf0\xe7\xd4\xc3\xf5\x15\xff\x7e\xba\x8a\x30\xc5\x89\xd1\xba\xbd\xfc\x64\xd7\xa3\x10\x31\x88\x89\x68\xec\x04\x65\x71\x80\x47\xac\x4d\x64\x90\x32\x1c\x8d\x6d\x3f\x1c\x89\x88\x3f\x4a\x1b\xd7\x55\x09\x50\xd3\x7f\x66\xc3\x24\xcd\x6d\xda\xa2\x7a\x19\x1e\xe3\x19\xc0\x97\xf9\x46\x75\x74\x7e\xfd\x6b\xf3\x0f\x63\x3d\x9d\x89\x29\x77\x05\x0c\xd7\x17\xe0\x1d\x2a\xe8\x3c\xf2\x6b\xdb\x76\x4d\x15\x3f\x03\x02\x15\x1c\xb1\x53\x4a\x9c\x90\x89\xca\x90\xd7\xa0\xe7\x2d\x64\xd3\xe5\x43\x61\xf2\xc2\x1a\xee\xe2\x2b\xed\x7c\x98\x14\x83\xe1\x76\x7f\xd8\xd7\x75\x5c\xc4\x6c\xb1\x6e\x26\x66\xef\x1c\x7b\xbd\xff\x7f\xd7\x8f\x2f\xf2\xcc\x39\xab\xe5\x54\x28\xa0\xe8\x1b\xa2\x02\x75\x4d\x81\xc1\xd2\x64\xc5\xce\xfa\xb1\xb1\xe3\x7a\xc0\x86\x87\xe4\x84\x53\x03\x0b\xc6\x77\xca\x60\x01\xab\x8b\xb6\x3f\xa3\x88\x3a\xaa\xaa\xb6\xa6\xa5\x21\x28\x18\x47\xa9\xb0\xd5\xf5\xb3\xe1\x30\x9f\x22\x1f\xe1\x50\x95\x71\x12\x1c\x94\x21\x5a\x58\x61\x80\x80\x61\xaa\x8e\xe0\xeb\x09\xce\x5d\x51\x3b\x84\xcb\xe5\x81\xe8\x67\xdb\x94\x22\xef\x45\xcd\x1d\x09\x0e\x70\xf8\x9a\x59\xfa\x1e\x78\xf4\x3f\x50\x22\xad\xdb\xa6\xa5\x2f\xc3\x4c\xc4\x3f\x41\x01\xaf\xce\x85\x35\x32\xab\x3d\x4b\x5c\x77\x0e\xa1\xe6\x46\xce\x78\x52\x98\x87\x05\xe9\xe1\xcb\xe0\xe0\x4e\x17\xd3\x8f\x87\x26\x0b\x5f\x13\x7a\x55\x61\x4e\xa3\x47\x8d\x1f\x76\x65\xe2\x01\xa7\xef\x4d\x14\x31\x66\xab\xeb\xc9\x52\x87\xd6\x30\x9a\x0d\x75\xaa\x1b\x04\xa6\xe5\x6b\x55\x4b\xca\x87\x69\x91\xe5\x2d\x3d\x92\x76\x09\xb1\x00\xdf\x28\xf2\x0a\x1a\x44\x44\x23\x41\xe4\xc7\xfc\xd8\x13\xc0\x9c\x08\x54\xeb\xf9\xdf\xcb\x2f\xb7\xb3\xbc\xe8\xaf\x3a\xc3\x87\x46\xd4\x75\x45\x40\x7a\xbd\x32\xcf\x14\xd8\x38\x8f\x56\x1f\xa2\x27\x84\xec\xe3\x4d\x6a\x5e\x0b\x61\xae\xff\xb0\xed\x53\xc5\x0c\x8d\x06\xa5\x88\x06\x2a\x44\x25\xd6\x89\xdc\xf1\xc2\x17\xbb\x8a\x66\xf9\x81\xe2\x4f\xbe\xa4\x8a\x05\x26\x38\xf8\xb9\xf2\xc9\x21\x99\xde\xd4\x55\xf2\xec\x68\xf6\x61\x52\xfb\x81\x47\xee\x7d\xe1\x71\x12\x1e\xc5\xb1\xfb\x59\xda\x43\xf8\xff\x3b\xbb\x8a\x3c\xb3\x35\xad\x8a\x4e\xfc\xda\x8b\x55\x2c\x10\xbc\xf5\x0e\xaa\x67\xc1\x4a\xcc\x4c\xd5\x54\xee\x96\xa9\x22\x09\xdf\x39\x55\x54\x08\xbe\xa7\x15\x8e\xc6\x98\x88\xa5\x54\x5b\xca\xc7\xde\x2e\x5f\xa1\xef\x2c\xbb\xd0\x01\x91\x57\x53\x13\x14\x99\x55\xc5\x1e\x06\x0f\xf0\x8d\x92\x0b\x18\xda\x68\xcc\xa4\x66\x20\xfb\x46\x01\x17\x31\xd2\x5f\x2a\x19\x9d\xc3\xaa\xf0\x30\x4e\xc3\x65\x62\x35\xa6\x36\x97\xa0\x16\x5b\x6e\x38\xb9\x52\xb7\x39\xaf\x05\xf7\xe0\x95\x05\xf4\x58\xae\x8c\x58\xf3\x06\xfc\x7d\x9a\x78\xf0\x27\x6c\xe3\x25\x25\xce\x75\xc9\x4d\x97\x05\x49\x14\x99\x5e\x92\x1a\x47\xc5\xa7\x84\x78\xfc\xac\x65\xa5\x14\x76\x90\xe5\x45\x5c\xef\xcc\x37\x98\xef\xaa\xb1\x89\x83\x61\xcc\xe4\xa4\x08\x51\x6f\x74\x5a\x2f\x8a\x2e\xcb\x0d\x55\xda\x78\xb5\x30\x51\x98\xaf\x52\x98\x8b\x44\x1f\xec\xa4\xb8\xfe\xfb\x9d\x6a\xdb\xcf\x79\x81\x1b\x6a\x9b\xa6\x51\x7f\x2b\x7d\x12\x62\x1e\x0c\x63\xe3\xbb\x6f\x9b\xaa\xa3\x7a\x74\x52\xd5\x1a\xf2\x29\xe1\xf6\xae\xab\x65\x7e\xba\xa9\xfb\xa8\x62\xef\x48\x46\x5f\xa4\x6f\x80\x03\xfe\x80\x1e\x15\x4e\xc0\xa5\x89\xe7\xed\x3a\x4a\x06\x8e\x05\x05\x3b\x15\x71\x29\x32\xb6\x0e\x22\xfb\x9c\xc0\xce\x5b\x53\x98\x1b\x0e\x4c\x15\x51\xc0\x29\x1a\x08\xc3\x7e\xbb\x49\x9e\x01\xde\x94\xb9\x4c\x11\x4d\xcf\x90\x19\xc6\x0b\xfe\x00\x78\x27\x2c\xad\xc8\x44\x22\xf8\xfa\x08\x35\x2d\x7c\xe4\x43\x5d\x65\xeb\x59\xa8\xc0\xe9\xfb\x94\xe1\x01\x5a\x4d\x67\x29\x9e\x95\x51\x25\xda\x07\x70\xfa\x27\xb4\xae\x14\x51\x71\xbc\xe4\x60\xbd\x64\x2d\x5d\x90\xfd\xfc\xbc\xab\xa9\x35\x28\xb3\x8d\x09\xd5\x52\x1e\x7a\x09\x91\x14\x04\x1d\xd4\x46\x38\xe7\xb7\xdd\xb9\xcc\xc3\x51\xd8\x0f\xf3\x55\x95\x0c\x7e\xa3\xe3\x93\xc1\x6f\x4c\x2a\x72\x96\x43\x24\xf3\x82\xb7\x55\xd8\x5b\xe5\x0e\x4d\xda\x0b\xf3\xd4\x0c\xec\xac\x8f\x76\x99\x76\x1b\xcb\xfa\x30\xac\x8c\x74\x00\x7d\x26\xf3\x68\xd7\x97\x1a\xb2\x71\x6a\x4d\x3f\x53\xd9\xfa\x39\x95\xad\xd7\x39\xc6\x0f\xcc\xb5\xfb\x26\x37\x5b\xfd\xc8\x06\xb3\x37\x0b\x5f\xaa\x2f\xd8\x00\x8b\xe8\x1a\x16\x7e\x38\x08\xe4\x71\xcc\x3c\xa8\x1a\x1d\xa9\xcd\xc2\x41\x2c\x72\xc6\x78\x66\x6c\xbd\x18\x5c\xa4\x24\x28\x2e\x77\x54\x97\xe1\xdb\x15\xc1\xfa\xf2\x63\xf1\xea\xcb\x13\x85\x98\xb8\xa8\xf2\x99\x2c\x37\x4b\x4b\x19\x49\x52\xe2\x51\x3d\xd0\x43\x98\xcc\xa5\x24\x71\xab\x9e\x7e\xd2\xba\x61\x35\xc3\xb5\xb0\xd0\x36\x79\x2e\x6c\x0d\xc0\xd1\x9f\xee\x78\xbd\xa8\xd3\xca\x6c\x50\xfb\x8a\xab\xc6\xc2\xbf\xea\xd9\x8f\xd7\x94\xa8\x67\x9c\xf4\x67\xfd\xac\x34\xa6\x87\x61\xb0\xa1\xad\xec\xa0\xb4\x07\xe6\xe4\xff\x4f\x3e\x5f\xad\x58\x1c\x98\x7b\xa9\xfc\x6f\xbb\xaf\x60\xf2\x10\x82\x28\x88\x7b\x20\xd6\x65\x7a\x6a\x30\x31\x6f\x53\xbc\xc1\xa7\x8a\x9c\xb2\x4c\xe0\xd3\xfa\x38\x29\x01\x27\xd0\x76\x53\x37\x14\x7b\x9c\x53\x60\x67\x5c\x51\x4a\xca\x75\x62\xc3\xc5\xc5\x3d\xed\xbe\x5d\xb6\x51\x32\x2e\x7d\x5e\xd6\x52\x31\xee\xa7\x1c\xa2\xf2\x5d\xad\x78\x28\x25\xb8\x22\x33\x68\x72\x60\xfb\x7f\xa8\x99\x1b\x3f\x54\x2d\xa4\x91\x1d\x25\x65\x2a\x53\xda\x1c\x59\x2f\x7f\x66\xef\xc3\xe0\xb9\x05\x76\xbd\xc7\x75\xd4\xa2\x05\x28\xac\xd4\x9c\x92\x34\x2f\x62\x3b\xab\x10\xff\xe7\x95\x1a\xd1\x0f\x10\xf6\xf1\x4d\xa7\xa5\x68\x5f\x7d\xb0\xbd\x92\xa4\x07\x6d\x4a\xc5\x7c\x84\xa6\xe0\xba\xe3\x6b\x05\xbc\xc8\x27\x2a\x5a\xc8\x3f\x83\x38\x76\x50\x44\x26\x4f\xd2\x55\x2e\xee\x23\x48\x60\x24\x15\xdf\x28\x71\xed\x9e\x21\x66\x0c\x37\xb9\xfe\x3d\xdd\xa8\xb9\x04\x33\xcb\x6c\x69\x0e\x20\x13\xf6\xad\x89\x88\xcf\x86\x91\x07\xf4\x67\xeb\xe4\x52\xd6\x2f\xa9\xde\x3c\xd3\xb9\xb3\xae\xaa\x92\xe6\xfe\xca\xdf\x56\x73\xae\x9f\x68\x05\xee\x2b\x84\xba\xc0\x79\xfb\x26\x8d\x0a\x23\x76\xbc\x5f\x65\x59\x53\xcc\x38\x78\x64\x8c\x93\xee\xa8\x9c\xef\x07\x13\xcf\x99\xf0\x3d\x72\x71\x00\xbc\x1c\x83\x8b\x73\x98\xe9\xdd\xf3\x6c\x9a\x4e\x91\xd2\x1b\x96\xfd\x70\x47\x0f\xb2\x22\x83\x12\xb0\xae\x9a\x6b\xba\xa0\xf2\xbf\x77\x98\x16\x02\x05\xc5\xc3\x0a\xbc\xfc\x57\xe4\x08\xf1\xc6\x37\x26\x9b\xbf\x5c\xe5\x84\x16\x1a\x43\xc2\xe0\x8a\xdc\x2f\x21\x0d\x98\x83\x12\x9e\xcb\xf9\xa7\x17\x3d\x22\xae\xdc\x32\x5c\x7a\xa2\x38\x14\xdd\xf4\xa3\x08\xff\x81\xbb\x3b\x82\x34\x07\xe9\xe3\x27\x7c\x9a\x44\xe1\xa7\xf5\xf4\xd3\xa2\x5c\x46\xbd\x1b\x27\xa1\x55\x3a\x54\x04\x0a\x27\x27\x9f\xf7\x95\xf7\xa5\x25\x4b\xc8\x4c\x12\x7d\x75\x2c\x8b\xe7\x15\x3f\xd5\x79\x85\x89\x62\xc5\x3f\xca\x61\xf0\x89\x37\x60\x68\xf9\xa6\x36\x7b\x48\x80\x3e\x7b\x68\x6c\xe3\x2c\x5c\xb6\x8a\x91\xfe\x58\x85\xa3\x88\x56\x16\x8e\xe0\xb6\xa2\x79\x59\x31\x69\x1c\xc6\x83\xed\xf4\xa7\x5a\x6e\x1f\xee\x93\xf9\x34\xd0\xb3\x3e\xa1\x19\x52\x4f\xd1\x46\x81\x05\x44\x18\xec\xa4\xd8\xca\xdd\x24\x0a\x43\xb4\xcf\xa4\xfc\xb6\xb1\x2c\xf4\x95\x76\x6a\x23\x52\x43\x9b\xf5\x05\xe6\x8f\xe9\x9b\xc2\x3a\x22\x51\xc2\x26\x3f\x4e\x1b\x0d\xf1\x75\x9d\x9d\xbe\x3c\xc6\xcb\x82\xbe\x92\xb9\x56\x75\x90\x3e\x75\xa4\x31\x7d\xa2\xd6\xcb\xc3\xb8\xb0\xfd\x2d\x3e\x23\xb8\x3f\xa9\x28\x88\xa8\x92\x2d\x08\x35\x45\x33\x8b\x36\xb5\x54\x82\x25\x41\x8f\x8a\xd1\x38\x44\xc9\x65\x6f\x05\xc0\x2f\x63\x48\x1b\x75\x93\xf6\xbc\xb0\x0f\x54\xe4\x61\x19\x89\xbb\x16\x18\xce\xe0\x15\x7a\x00\xd8\x89\x27\x94\x90\xca\x61\xad\x08\x9a\x9b\x38\xb2\xab\x5b\x3d\xa6\x98\x53\x07\x9c\x50\xa8\x52\xf3\x35\xed\x78\xe1\x44\x57\xb1\xfb\x79\x38\x25\xc1\xfb\xa9\xda\x65\x32\xea\x31\x07\x20\x6c\x1a\xc4\xe6\xf8\xda\xfd\xea\x22\x56\x3a\xc9\x30\x13\xbb\xba\x1e\x2f\xb7\x6b\x2a\x99\x59\xdf\x06\xa9\x35\xae\x53\x05\xeb\x72\x14\x4b\xc9\x37\x0d\x4d\x8e\x3d\xed\x2c\xb7\xa1\x80\x5b\xe5\xa4\x6c\x98\x92\xf6\x72\x62\x51\x08\x39\x06\xec\x90\x2b\x38\xce\x4e\xac\xc4\x05\x8e\xdf\xae\x70\xc1\xb1\xc0\x89\xa3\xb7\xf5\x18\x2d\x64\x1e\xe4\xd4\xfe\xd7\x36\xa1\xbc\x44\xad\x90\x8e\x8a\x23\x57\xdb\xf8\x29\x74\x6e\xfe\xe2\xa9\x69\x25\x81\x2a\xd2\x96\xd2\xca\xf8\xa1\x1a\x00\xfd\x61\xad\x99\x5a\xfe\x70\x46\xe8\xf2\x7a\xc1\x6a\x32\xdf\x20\xdf\xd4\x0e\xc0\xd3\x4f\xb7\x5f\x51\x12\x1d\x32\xe1\x5b\x19\xfd\xf5\x4d\xb0\xcc\x44\xf9\x6b\xbd\x22\xe5\xe9\x4e\x29\xde\xa9\xa9\x9a\x53\x4d\x44\x1c\xa5\x0f\xe3\x18\x05\xa0\x18\xcc\xee\xf3\x75\x13\x13\x29\x9b\xb3\x59\x4f\x82\xcd\x13\xc5\x48\x71\xb7\x75\x5b\x8a\xa5\xcb\x97\x24\xee\xd5\xf4\x94\x7f\xa1\x1d\x9b\xd7\xc2\x19\xdf\xbf\x84\x8f\x17\x05\x2d\xfa\xe6\x08\xaf\x4e\x4e\xfc\x18\x4e\x92\xd9\x6d\x5e\x0e\xf9\x47\x15\x3e\x08\x5a\x4e\x58\xc7\xcf\x77\xd5\x00\xcb\x3b\xaa\x80\xd2\x42\x32\xe9\xc4\xf5\xcb\x5f\x2e\x32\x86\x7e\x1c\xaf\x9f\x14\x83\xc8\x64\x5b\x74\x06\xcd\x4e\xc3\xfd\x34\x57\xd6\x63\xff\x2e\xcf\xd1\xc7\x8e\x17\x3b\x5f\x6a\xaa\xb5\x57\x38\xc4\x50\x45\x82\x7d\xbf\xac\x46\x8f\x2e\x6b\x6d\xc6\x64\x3c\xe6\x4e\x2f\xba\xe0\x4c\x5c\xce\x37\x9a\x94\x70\x68\x96\x99\x38\xcb\xe9\x8a\x3f\x3f\xef\xaa\xa6\x15\x5d\x2f\x13\xed\x2a\xcd\x88\x88\xa7\xfb\x89\x3a\x99\x58\x81\x3f\x9f\xe9\x92\x13\xae\xf0\xbb\x61\xc1\xbf\x0d\x37\x06\xd3\x79\x5f\x81\xcd\xef\x53\x14\x8f\x23\x78\x1f\x54\x0b\xd8\x50\x57\x60\x9f\xe0\x16\x6e\x7a\xb4\xc9\x7f\xbf\x6b\xaa\x66\x3c\x99\x0f\x05\xa9\x07\x34\x62\xc8\xbc\x65\x4f\x4d\x95\x46\xc5\x0c\x70\x84\x08\x0e\x2e\xc1\xbd\xc3\xdd\xcd\x22\xad\x95\x67\x50\xeb\xfd\xee\xdd\xd3\x5e\x49\x62\x70\x21\x08\xea\xdf\x53\x40\x5c\x54\x4a\x4d\x41\x6a\xed\xc1\x59\xa5\xce\xf4\x36\x6f\x02\x91\x40\x57\x8a\x9f\xc0\x46\x08\x81\x96\x94\x41\xe3\x30\x30\xa9\x19\x14\x26\x9e\x51\xc0\xa6\x9d\xbc\xc2\xc8\xdc\x8e\xfa\xcc\x2d\x79\xa2\xbb\xd1\x7a\x7c\xa5\xbd\x94\xda\x57\x0b\xbb\x41\xac\xfa\x3d\x25\x56\xfd\x9e\x07\x6d\x8f\x4d\x80\x98\xc4\x95\x2e\x16\x9d\x4c\xe2\x19\x35\x83\x3b\x30\x69\xdf\xc6\xdb\x14\x8f\xd9\x0c\xe1\x0d\xf1\x30\xdf\xa5\x8d\x08\x7f\x75\x1b\x0f\x10\x37\x57\xf1\xfc\x91\xe6\x9f\x52\x8d\x63\x06\x16\x4a\x63\xec\x51\x35\x6c\x10\xe7\x33\xd5\xf1\xba\x85\x05\xbe\xd6\x62\x22\x5a\x1b\x70\x29\x8c\x07\x24\x77\xb6\x57\xb8\x73\x80\xd4\x76\x40\x19\x47\x65\x7b\xba\x51\x35\x28\x48\x46\x6e\x14\x42\xc8\x52\x15\x41\xc0\x51\xd5\x24\x58\x0a\xe3\x98\xd6\x0b\x95\x67\x14\x1a\xf8\xba\x66\xb1\x16\x17\xdb\x7d\xf0\xf0\xbe\xc4\x1d\x8a\xfb\x8a\x33\x10\x1c\x9d\xa8\xa6\xfe\xbe\xea\x62\x3c\x50\xec\xf7\xe3\x64\x5c\xe6\x25\x61\x12\x6f\xd5\x79\xc9\x19\x84\xd9\x38\x3d\x9b\xba\xbe\x61\x75\x1f\x31\xa8\xa6\xa9\x76\x98\x65\x9f\xc9\x9c\xa9\x45\x23\x92\x0f\xf6\x4c\x94\x87\xa3\x24\xdd\x08\x8d\x78\x6e\xd1\x41\x23\x9a\x16\x30\x1c\x8d\xa3\x50\xf8\x32\x1c\xc2\xd2\xd7\x6b\xd7\x1c\xfb\xc0\x52\x6a\xed\x43\x2d\xd1\x01\xfa\x9d\xbf\x03\xb3\x8b\xcc\xf1\xee\x44\x29\x55\x21\xba\x14\x09\x37\x2d\x47\x49\x79\x22\x96\xed\x08\x25\xf3\x30\xfa\xb7\xb0\x75\x45\x35\xb1\x25\x83\xd1\x17\xbe\x38\x6d\xe0\x77\x78\xda\x8e\x66\xc8\x73\xc3\xd0\xdc\x50\x14\xc3\xe7\x95\x5e\xfb\xa7\x4d\xaa\xfe\xcb\x21\x52\x3f\x97\xe4\xbb\x30\xef\x27\x94\x4e\xa0\xf9\x75\xa5\x41\x4c\x71\x5f\x7b\x9c\x26\xc3\xb0\x17\xe6\xc0\xed\xc9\xe0\x3f\x99\x16\x61\x04\xd8\xe9\x62\x26\x42\xf7\x18\xde\x98\xc0\x93\x80\xa8\x8c\xaf\x9b\xa4\x7f\x56\x6c\xb4\x64\x52\xab\x06\xc3\x21\xf8\x29\x6d\xe2\x5d\xae\x0a\x1c\xc6\x24\x76\xc1\xdc\x40\x08\x67\x80\x7a\xe2\x6b\x65\xd8\x96\x52\x5b\xf4\x39\xb0\x00\x56\xe4\x0a\x36\x14\xdf\xa8\x1a\xdb\xb8\xe8\x45\x61\x36\xb4\xfd\xad\x95\x12\xc4\xc4\x37\xd6\xb9\xfa\x25\x01\x8a\xd7\xc9\xe3\x3d\xc3\x7f\xa5\x7b\x76\x9f\x56\xca\xd1\xe9\x60\x75\x3b\xbd\x05\x22\xa8\x33\x0a\xa7\x70\x19\x26\xd6\x8d\x48\x3a\xa2\xac\xdb\xdb\xa9\x82\x26\xfc\x5b\xf8\x6e\xc8\x86\xa0\xd5\x85\xf0\xfe\xd2\xc4\x43\x8f\xbf\xaf\x02\xc5\xd5\xb1\x05\x89\x23\xba\xad\x5b\x69\xea\x10\x79\x23\x22\x18\xec\xa3\xd9\xae\x1a\x74\xd9\x32\x75\xe4\x4a\x61\x1c\x8e\x8a\xd1\x56\x3f\xde\x71\x8b\x7a\xf4\x22\xa6\x4f\x16\xb3\xd2\xdc\xc4\x5b\x9f\x54\xad\x4a\x4e\xa0\x85\x30\xf3\x09\x45\x28\x10\x59\x66\x42\xf6\x0f\x1a\x18\x61\x14\x1a\xd0\xf6\x10\x2c\x91\x37\xb5\x43\x13\x62\x0e\x0b\x91\x18\x70\x77\x68\x42\x63\x49\x11\x64\xbf\xd9\x44\x5d\xd5\x4b\xd2\x34\x59\xf1\x4d\xf0\x46\x65\xaa\x86\x44\x75\x68\xcd\xf2\xea\x0a\xb1\xca\xb5\x5a\x4a\x48\xb8\xb5\xe8\x05\x86\x7d\x43\xdf\x1e\x0a\x86\x26\x1e\xd8\xfe\x6c\x45\x85\xb0\xa5\xb8\x00\xcb\xef\x89\xc0\xe3\xb4\x2a\x2a\x9c\x56\x54\x09\x51\x92\x1c\x24\x3a\x28\xa7\x1c\x8b\x57\x31\x45\xa5\x9a\xd4\x43\x5b\x9a\xff\x46\xa5\xc8\xcc\x82\x37\xe3\xc7\x34\x6e\x56\x26\xce\x68\x2f\x22\x7c\xf9\xb8\x02\xd2\x30\xaf\xbd\xa6\xb8\x86\x0e\x23\xfe\xe1\x9b\x26\x3e\xad\x70\xa4\x94\xc7\x11\x5e\xfc\x25\x7d\x12\x5f\x2b\x56\x87\x60\xd5\xc4\x66\x14\xf6\x35\x66\x0c\xdb\x5d\x00\x64\x3b\x74\x8a\xbf\xcd\x0f\x96\x9f\x45\x50\x05\x67\x83\xe3\x07\xc3\x07\xa3\xc9\x95\xbb\x0a\x19\xaa\x12\xeb\x39\xa5\x69\xf4\x77\xd5\x28\x69\xca\xb4\x36\x4b\x22\xd8\x14\x86\xcd\x93\x4d\x11\x08\x7d\x03\x79\x46\x38\x1a\x27\x69\xfe\x6f\xd2\xca\xf7\x85\xc3\x34\x89\x22\x47\x49\x83\x12\x10\x9b\x4f\xbe\x69\x54\x2d\x7a\xb5\x08\x6d\x4e\x94\x0c\xae\x84\xb3\xb0\x20\xd7\x2a\x87\xb4\x51\x64\xe3\xcf\x96\x0d\xdf\x38\x84\x3f\xbf\x1f\x1c\x4b\x59\x1e\x06\xa1\x89\x55\xa3\xe2\x96\x6a\x54\xdc\x52\x66\x24\x4f\x46\x5b\xc8\x43\x33\x3f\xe9\xc4\x87\x12\xf7\x70\xbe\x11\xbf\xdc\x56\x9c\x0c\x90\x94\x97\x6c\x61\xe3\x99\x7a\xf9\x65\x30\x37\x99\x65\xeb\x24\xcd\x50\xdd\x86\x4f\x83\x25\x3c\xab\xdb\xe5\x47\x6b\x1d\x0a\x3a\xd0\xf9\x90\x68\x1e\x51\x76\x3f\x4e\xa5\x6b\xbe\x56\x2b\x94\x27\x87\x42\x56\xbc\xd2\x02\x23\x02\x85\xf8\x9c\xd6\x0a\x89\xfa\x4f\xb6\x1c\xf9\xfb\x9f\x61\x94\x4b\x42\x32\xb2\x78\xd8\xa9\x57\xc8\x89\x3b\x69\x53\x87\x31\xf9\xaf\xef\x51\x8e\xe1\xea\x48\x7e\xd3\x6e\xa2\x46\x98\x6b\x35\x78\xe1\x7f\x90\xc2\x55\xd8\xeb\xf0\x8a\xed\xcc\x2a\x21\x51\xb9\x12\x78\xbb\x85\x4e\x1a\x7f\x17\x58\x5f\x54\x61\xd6\x91\xdb\xe3\xe6\xb8\x42\xce\xf1\xb8\x0c\x0c\xc5\xc9\x8e\x0f\xdd\x66\xa6\x7e\x7e\x6c\x56\x89\x70\x2f\x25\x99\x30\xde\x39\xce\xc3\xf2\x77\xf2\x4d\x2d\xd1\x3e\x30\xf7\x52\xbb\x57\x64\xab\x18\x5b\xc0\x7b\x63\x46\x00\x86\xe0\x43\x2d\x44\x35\xad\x74\x48\x28\x92\x05\x7c\x40\x21\x00\x24\xdb\x7c\x4b\xab\xb7\x4f\x54\x60\xfa\x07\xba\xe3\x7d\x86\xdd\xa3\xd0\x6b\xaa\xd5\x7a\xa8\xab\xda\xa9\x1f\x76\xbc\x9c\xe1\x7b\xae\x6f\x97\x14\x79\x16\xf6\x6d\x4a\xe1\xb8\xe0\x9e\x54\x47\xf4\x9c\x22\xd6\xb9\x57\x03\x07\x3f\xb7\xd8\x0e\x4c\x14\x94\x51\x6f\xb5\xfa\x01\xda\x42\xa9\x1f\x8b\x67\x0d\x8a\x68\x9c\x86\xb9\x26\x38\x43\xbf\x49\x94\x77\xeb\xd5\xfe\xb6\x35\x69\x3e\x14\xde\x58\x47\x59\x7b\x44\xe5\x63\x47\x6a\xc5\x95\xd2\xae\x05\x54\x5d\x74\x2d\xc1\x33\x8a\x75\xe6\x8c\x96\x3a\x19\x8f\x23\x70\xc6\x48\xad\x9c\x1e\x80\x60\x27\x5b\x5e\x31\xaf\x16\xbf\x3d\xb7\xd8\x1e\x61\x40\x5a\xb1\xa8\xb2\x0a\x11\xdf\x38\x50\xe2\x38\x0d\x99\xf4\xda\x33\x21\x95\xbb\x5f\xd0\x02\x9f\xc5\x86\xb6\x14\xc6\x26\xe2\xd4\x10\x09\x04\x43\x66\xf9\x46\xa1\x51\xfa\xcc\x9e\xb3\x95\xce\x9e\x43\x4f\x79\xc6\x5f\xd0\x69\xc0\xe5\xfe\x0f\x48\x3d\xf8\x46\xf3\x81\x7c\x47\x89\xe6\xde\x73\x93\xaa\x23\xe3\x91\xeb\xa8\x0f\x30\x3e\x9a\x6f\x54\x5b\xac\x00\x20\x66\x8f\x93\x07\x53\x88\xd6\xb7\x35\xa2\x95\x1a\x06\x1a\x17\x46\xff\xfb\xcf\xda\xc8\x32\xb0\x17\xef\xd1\x11\xc0\xd1\x59\x9f\x54\x25\x05\x0e\xcc\x39\xaa\x28\xa5\x2f\x93\x9a\x20\x0f\x03\x9b\x3d\xa2\x29\x9a\x54\x0f\xe2\xf0\x44\xb3\xab\x5e\x50\xfb\xe8\xe3\x8e\xd2\x47\x39\x43\xc6\x09\x1e\x15\x24\xd9\x7c\x4d\x3f\x47\xc4\x68\x60\x87\x80\xf3\x41\xd1\xfd\x3a\xd6\x52\xc4\x49\x7d\x4e\x5e\x8c\xfb\x26\xb7\x9f\xcd\x0a\xf6\xa4\xfb\xcb\x3c\x35\x71\x06\x9d\x2a\x0c\xef\xcb\xcc\x4d\xcb\xb1\x19\x01\x9b\x86\xaf\x7d\xbf\x56\x03\x79\x7e\xbe\x9d\x5b\xd6\xda\x73\xf8\xed\xbd\x73\xaa\x4b\xec\x76\x7f\x90\x17\x26\xc2\xa0\x8e\x02\xdf\xed\xf3\xcd\x6e\x17\x0f\x9d\xa6\xfd\x2a\x75\xa7\x8a\x58\xf5\x38\xd7\x50\xb7\x63\x5a\x25\xe0\x8a\x1a\x97\x38\xa2\xe9\xb2\x09\x3a\x85\x36\x86\x9b\xa5\x75\x03\x6a\x9b\x08\x1a\x28\x19\x9b\xaa\x2f\x1c\xd3\x54\x17\x37\xf0\x0c\x50\x27\xfb\xa4\xe3\xc1\x80\xe7\x2a\x74\x1d\x4e\x65\xa0\x34\x75\x2d\x55\x80\xd7\x23\x49\xe7\xd5\x06\xce\x4d\x8f\x2a\xd3\xc2\x7f\xe1\x1d\xf3\xff\xac\x71\x10\xa7\x5c\x8b\x82\x1e\x18\xa9\x1a\x31\x36\x55\xa6\x40\xca\x77\x91\xe9\x90\x9d\x9a\x19\xd2\x1a\xe1\xea\x47\x8d\x07\x51\x03\x8f\x1b\xd1\x07\x8a\x9c\x9b\xdf\x16\xf6\x50\x10\x15\x59\xb8\xcc\x82\xeb\xa2\xdd\xf5\x4d\x55\x3c\xf9\x66\x2d\x56\xf8\xd5\x32\x87\x4d\x96\x66\x54\x95\xeb\x43\x35\x93\x71\x1a\x5b\x1e\xe1\xde\x3b\x2a\xf4\x49\x93\x7e\x4b\x41\x32\x31\x83\x28\xec\xdb\x9f\x0b\x2b\x3f\x04\x7b\x5a\xe0\x61\x1e\xcb\x71\x41\x29\xa2\xe6\x61\xdf\x66\xe8\xb7\x20\x4e\xfa\x14\x35\x3d\xbe\xa9\xd9\xd6\x32\x0e\xcc\x87\x36\x1d\x25\x2d\x9f\x33\x9c\xd3\xad\xe1\x73\xee\x6b\x2c\x85\x65\x90\x89\x11\xbd\xf5\x4b\x78\xaa\x28\x68\xa1\x68\x83\xc7\xf5\x80\x4c\x8c\x60\x32\x1a\x46\x07\xb2\x64\x39\xb4\x79\x36\xab\x08\x59\x1e\xed\xaa\xa7\x39\x51\x5e\x5c\x30\x3c\xf0\x91\xdf\x51\xd5\xad\x51\x12\xe7\xc3\x68\x75\xb6\xb5\x77\x6e\x7d\x2b\xc1\xe3\xb0\xd2\x3c\xe8\x05\x83\x75\x56\xf5\xbb\xbf\x53\xab\x3c\xec\x9d\x6b\x67\x65\x9c\xea\x9b\x35\x00\xc9\xfe\x54\xc1\xcb\x7f\xaa\x05\x0f\x47\xa4\x74\x4b\x82\x32\xe2\x77\xf0\xf5\xd0\x86\x7f\xa0\x63\x55\x6e\x3b\x61\x6f\x1f\x57\xcd\xfa\x07\x13\xb5\x47\xfe\x52\x23\x99\xd0\x5a\xc1\x0f\x67\xc9\x43\xe1\x6b\xa6\x07\x8a\x28\xe7\x3e\x1e\x28\x4a\xa0\x75\x3e\x91\xf9\xfd\xed\x15\x93\xdb\x94\x14\x3c\xb0\x63\x04\x00\xe5\x61\xe9\x1f\x55\x0a\x07\x07\x2d\x84\x77\xb5\x96\x94\xdb\x8e\xcf\x79\x16\x2f\x6f\xce\x82\x34\xa4\x73\xe5\x78\x23\x6e\x77\x54\x91\xea\xba\x52\x55\x7c\xab\x01\xf7\xf3\x52\x3b\xb3\x00\x23\xa2\xe6\xcb\xcc\x79\x82\xa2\xf3\xa8\x5f\xcf\x9f\xba\x64\xe2\xdc\x64\x00\x3d\xe1\xab\x81\xc1\x81\xaf\x6b\xb2\x4f\x65\x60\x62\xc6\xff\xc1\x57\xbf\xaa\x88\x5c\x36\x38\x74\x8f\xab\xef\xa7\xc5\x60\x07\xed\x1a\x44\x09\x68\x20\x20\xb1\x03\x4f\x96\xb4\x2b\xe9\x7b\x0a\xee\xc1\xfb\xad\xd7\x2b\x0e\x13\xbb\x80\xc3\x68\x7c\x26\xea\x16\x5c\x07\x70\x20\x0a\x3f\x17\xff\xcf\x10\xae\xf3\xbb\xd1\x66\xc1\xc1\xb8\xa1\x7c\x48\x2f\x49\x0e\x96\xf1\xa3\xc3\x63\xde\x54\xb1\xdf\x15\x3d\x0b\x50\xaf\x4d\x2c\x2c\xec\x6b\x9b\x91\x4d\xc3\xc0\xb7\xc2\x5c\x5f\x5a\x51\xc6\xd4\x0a\x7b\x2f\xbf\xdc\xb6\x59\x8f\x27\x8d\x61\x9c\xff\x1b\x5a\x1e\x86\x3f\x4c\x2a\xa0\x0c\x5f\x45\x59\x09\x53\x6c\x2a\x98\xfd\xef\x4e\x7c\x57\xff\x0c\x4e\x06\xf2\x81\xe3\x13\x0f\x5d\xb1\xb1\x4d\x07\xab\xdb\x54\x16\x01\x44\x84\x30\x1f\x56\x8a\xf0\xe5\xf6\x11\xf5\xb2\x32\xbe\x11\x4a\x44\x8f\x82\xba\x5e\x0d\x33\xea\xd3\x9c\xa3\x64\x59\xaa\xb3\x8e\xf9\xbf\x5c\x0b\xd1\xda\xac\xd7\x74\xf7\xb5\xb3\x22\x5d\x32\x5c\x1c\x44\xb8\xcf\x60\x6c\xbe\x69\x62\xc7\x1a\x99\xf4\x90\xcc\xb1\x35\x0e\xe1\x3d\xa1\xc8\x65\xa9\xba\x49\x1c\x96\x0e\x2f\x74\x61\x52\xd1\x7c\xf0\x1b\x77\x1c\x59\xd6\xc4\x91\x46\xb8\x22\x80\x39\x5c\x89\x1d\xf2\xd0\x32\xaa\x1b\x45\x9d\xf7\x91\xc5\xf1\x4d\x33\xd1\x4b\x2f\x0d\xed\xd2\x8c\x9e\x03\x9a\x78\x9c\x0e\x9a\xf1\x08\x1d\x7e\xa2\xec\xf2\xd0\x8c\x46\x94\x42\xec\x15\xed\x65\x9c\x14\xbe\x76\x27\x9a\xa5\x23\x66\x3d\x72\x9b\x11\xcf\x08\xf5\x76\x90\x47\x91\xbc\x86\x1e\x24\x7b\x70\xf5\x59\x26\x08\x8a\xac\x7c\x0f\xc7\xc2\xb3\x65\x4a\xe7\x18\xa9\xfe\x23\x5d\xbf\xe2\x57\x27\x9e\x1d\xe0\xe3\xda\x43\x7a\xf9\x65\x97\x61\xa8\x0c\xf4\x8a\xe2\x36\xba\xa2\x1a\x89\xd9\x38\x49\x73\x66\x8f\xd6\x21\xa3\x4c\x69\xfb\x22\x5b\x1e\x2e\x2d\x99\x78\xb5\xe5\x37\x2b\x53\x78\xf3\x8d\x73\xad\xaf\x24\x83\x81\x6b\x63\x8a\x3c\x60\xf9\x9e\x7c\xdd\xa0\xb6\xb2\x48\x7e\xdb\xb6\x5a\x5f\xfb\x4d\xc7\x4a\xab\xe9\x6a\x1b\x58\x1a\xcd\x0a\xb1\x34\x7a\x63\xfb\xb1\x22\x70\xfe\x58\xa9\x56\xa4\x26\xee\x27\x23\xc4\x3f\x8b\x5a\x57\xcb\x05\x08\x8f\xa8\xda\xc7\xcf\x95\x51\x3b\x77\x5a\xb0\xad\x5c\xad\xda\xa7\xc8\x77\xaa\x32\x56\xe5\x8a\xe0\xb1\x73\x8f\x59\x08\x58\x54\xe8\xf2\x8f\x81\x55\x62\xa1\x4a\x25\x8c\x04\xdc\x12\x82\xa9\x8f\x08\x59\xe8\x48\xcf\x77\xef\xe6\x5a\xf4\xbb\xc8\xc2\x90\x1b\xfd\x6f\xa8\x66\x20\x87\x7a\xcb\xd3\xde\xb5\xae\x03\x1b\x85\x63\x80\xc8\x5b\xca\xfc\xad\xdf\xf8\xba\x9b\x02\xc3\xc9\x11\xec\xef\x66\xc1\x2a\xbf\x41\xf1\x2f\x5c\xfc\x3b\x1d\xdf\x55\xfc\xb4\x32\x0a\x73\x0d\x90\x62\x0e\x9f\x11\x4b\xe3\x43\xbe\xab\x04\xd4\xaf\x6b\xdd\xda\xcd\x98\x2f\x40\x7f\x94\x69\x9d\xf0\x91\x75\x96\x38\xc9\x60\xfb\x49\x14\x99\x14\xc7\x55\x94\x97\x7c\xde\x83\x79\x0c\xa4\xde\x6f\xd6\xac\xfc\xde\xb9\x76\xbf\x00\xb6\x0a\x11\x07\xc8\x36\xf8\xda\xe1\x55\x4c\xd4\x33\x71\xe8\x3d\x08\xb0\x7c\x9f\x4e\x14\xb0\xef\xd3\xce\x53\x5a\x7d\x32\x27\x09\xe3\x5c\x6a\x0a\xfc\x98\xe8\x67\xcb\x23\xdb\x00\x30\x7d\x71\xef\x5c\x7b\x71\x71\x4f\x45\x41\x87\x56\x46\x92\x6b\x37\xa0\xb0\xa2\x85\x7c\x18\x7c\xd0\xa9\x20\x11\x1a\xc6\x01\xd0\xb1\x55\xac\xc9\x1f\x6a\x5e\x84\x0d\x74\x14\x59\xbe\xd5\x63\xf1\xf7\xd0\xee\x40\xd9\xeb\x7f\xc4\x57\xe2\x1b\x32\x2d\x9c\x11\x61\xff\x62\xfd\xd7\xb1\xeb\x90\x61\x6c\xad\xcd\xa2\xee\xde\xdd\x4e\x8b\x5e\x18\x98\x11\x2d\xbc\x0c\x8d\xa9\xae\x3d\x13\x3e\xe0\x98\x0d\x93\x34\x29\x06\xc3\x5e\x6a\xfb\x98\x0e\x87\x45\x3d\xa3\xf5\x73\xcf\x60\x77\xb9\xa0\x73\x71\xd1\xd1\xaa\x94\x3f\x44\x40\x78\x8f\xaa\xa1\xef\x3c\x79\xca\x03\xf9\xa1\x9f\x8f\x52\xc1\xec\x54\xc9\x57\xfd\x35\x7e\x17\x9c\xdc\x83\xea\x44\x90\x42\x30\x6e\x05\xe6\x80\x39\xa7\xa6\x1b\xc6\x88\xca\x63\x8e\xb4\xfa\xaf\xe0\x33\x85\x17\x94\x8e\x39\x10\x8d\x38\xce\xce\x02\x1e\x10\x9b\xfd\x50\x97\xd6\x12\xe1\xd2\x2d\xea\x45\xe2\x99\x81\x32\x12\xa6\x17\xc3\x5f\x08\x57\xef\xa2\x95\x8e\xfe\x2c\x53\x27\x21\x16\xd9\x44\x63\x85\xa8\x42\xbf\x85\x05\xc3\xc3\xdb\xd4\x25\x93\x01\xff\xf6\x91\x1f\xa4\x5d\xcd\x72\x3b\xca\xb6\x28\xc1\x28\xa1\x84\x43\x8c\xf8\x98\xf2\x55\x90\x60\xaf\xc0\x06\xe0\x80\xae\xbb\x79\x9c\xa4\xf7\x8a\x0d\xa0\x0f\xe3\x16\xfe\x8e\x7a\x3e\x77\x1a\xe5\x6b\xcd\xb2\x4d\x49\xe1\xc0\x25\xef\xeb\x8a\x8c\x63\x5d\xa1\x57\x88\xba\x7c\x8b\x9a\x56\xe0\xa1\x3f\x85\xb8\xde\x23\x37\x6a\x22\x18\xda\xe2\x38\xc5\x2c\xfa\x21\xb1\xc3\x0a\x4d\x8e\x32\x61\x99\x22\xd5\x38\xeb\x18\xb7\x80\x14\x4e\x23\xe6\x22\x41\x3e\xf3\x2d\x6c\x0d\x04\xdc\x48\x0b\x51\x50\x80\x92\x36\xac\xf1\x51\x7f\xa0\x8b\xf1\x38\x0a\x6d\xba\xd5\x67\x41\x3b\xf1\xd4\xe1\x41\x18\x34\x09\xd7\x79\x8d\xb6\x80\x6b\x4d\xef\x9d\xd3\xd8\xe4\x7d\x7c\x32\x4f\x2b\xc4\x53\x6a\x90\x3d\x08\x76\xd4\xb7\x3a\xea\xd0\x51\x31\xa9\xe3\xd4\x2c\xf7\xcd\x8c\xe7\x23\x07\xbb\x08\x7e\xd0\x09\x5d\x94\xbf\xe3\x3c\xf9\xb2\x39\xf4\x2b\x5f\xfd\xea\x57\x61\x87\x71\x92\x8e\xab\x51\xe8\x07\xb0\x1c\xa2\x04\xe4\x3b\x57\x45\x1c\x85\x07\x6d\xb9\x80\xe5\x1e\xc4\xbb\x5e\x80\xe7\xe0\x1b\x7a\x17\xa4\x7d\xe8\x77\xf3\x75\x43\x23\x72\x5f\x3b\xb5\x4b\x09\x05\x47\x2d\x55\x72\xbc\x35\x51\x14\xc4\xb7\xb4\xbf\xb7\x99\x4d\x97\x6d\x86\xd8\x1b\x0e\xf4\x2a\x52\x3a\x99\xe3\xa5\x33\xca\x6c\x94\x95\xa1\xde\x72\x3b\x08\x4b\x65\x05\x90\x40\x9f\x25\xe6\xa3\xa9\x96\x9f\x99\x25\x9d\x23\xa0\x36\x03\xbf\xcc\xa3\x12\x68\xfe\x9f\x6e\xaa\x22\x0c\xad\x59\x76\xd0\x52\x18\x9c\xdb\x4a\xb1\x5c\x4b\xc6\x05\x51\x92\x31\x4b\x05\xde\x1d\x1c\xe5\x7c\xfd\x59\xd8\x97\xb1\x89\x45\xfa\x1b\x40\x8c\xf3\xea\x01\x7c\x4f\x73\xed\x5f\x76\x5c\xfb\x43\x93\xf6\x83\x24\xc5\xc0\x2c\x23\xf6\x60\xf7\xc0\x2f\x73\x56\x01\x2e\xdf\xc2\x76\xe6\xa0\xa2\x49\x4a\xae\x97\x0c\x0a\xb4\x57\x51\x59\xb9\xac\xaa\x19\x98\xdf\x17\x02\x64\x07\x5c\x8a\xc2\xbe\xdd\xea\xe7\x41\x89\xfa\xf7\xfe\xdf\x7f\xa2\x5b\xcd\xa9\x1c\xd3\x02\xd7\x8c\x5d\x10\x7b\xc0\xfd\x83\xa3\xec\xb6\x23\x9b\xe2\xe4\x60\x5b\xf0\xb6\xe7\x9b\x86\x1e\xcd\x62\x7b\x5c\xe4\x15\xaf\x8c\x0a\xbc\xb4\x57\xbc\xa1\x2a\x13\xa9\x3e\x00\xbe\x28\x64\x7d\x40\x3f\x90\x7f\x54\xa7\xa5\xa8\x5f\x1f\xd3\x93\xac\xe3\x72\x57\xab\xce\x09\x0a\x22\xf2\xa7\x2a\x15\x29\x54\x50\x2d\xfc\xc7\x2d\xcf\x85\xac\x66\xc3\x0f\xc6\x50\x74\xa3\xe5\x10\x3c\xa6\x37\xaf\xc7\x6b\xb5\xa3\xdd\xbb\xdb\x26\x36\xd1\xea\x6b\xee\x03\x98\x72\xa9\xe3\x37\xf4\x19\x55\x54\xa4\x6e\x64\xb2\x6c\xd3\x0c\xd9\x40\x93\x7a\xd0\xc6\x0c\x75\x7e\x7f\x3b\x37\x11\x2a\x9d\x78\x2c\x37\xd5\x7c\xe4\xcd\xc9\xc3\x6e\x25\x5f\xa3\x79\x0f\xec\xfc\xbb\xf4\xbd\x31\xcd\x06\x38\xa1\xf3\x02\xe5\x83\x43\x40\x7c\xa2\xb3\x91\x75\x73\xf7\xee\x76\x32\x9c\x29\x83\x5e\x89\x8c\x7d\x05\xf7\xe3\x89\xef\x68\x35\x8a\xfc\xb0\x46\xe6\x30\x1c\xf3\x12\x22\xf2\x65\xbc\x18\xdf\x34\x65\x24\x59\x6e\x56\x79\x72\x14\x91\x01\xb3\xe9\x89\x31\xd7\x94\xbf\x4a\xf8\x26\x48\xad\x0d\x86\xbc\xf4\x2f\x09\x72\xb5\xa3\x1a\x25\x75\x20\xf0\x81\xb9\x67\x15\xe9\x19\xc3\xf8\x27\xbe\xfe\xfc\x11\xce\xa3\xe0\x2d\xbd\x30\x80\x35\x23\xf0\x7f\x38\x7a\x67\x17\xbd\x42\x17\x1c\x67\xfb\xe1\x5a\x11\x6a\xf7\xee\xb6\x8d\x1d\x01\xb8\xce\x7c\xf8\xba\xb6\xab\x0e\xcc\xb5\x8b\x98\xe4\x9c\x36\x0e\xa1\xfa\x39\x4e\xaf\xec\x11\xc6\x4b\x04\x94\xc7\x92\x6b\x6a\x28\xbe\xd6\xf3\xcb\x51\xb6\x43\x81\xab\xae\x21\x24\xa0\xa5\xfd\xed\x27\xba\x3e\x69\xf8\xf2\x2f\x03\xab\x43\xd1\xd8\x57\x9e\x9c\xfa\xa4\x6b\xe7\xd4\x03\xbf\xbf\x34\x55\xcc\x88\x17\xc8\x15\x3b\xac\xf7\xde\x39\xaf\xa3\x7d\x40\x1a\x5c\x77\x38\x60\x82\x09\xfa\x02\x26\xa0\x11\x18\x3d\x50\x5a\x4e\x45\x6c\x8a\x32\xd0\x0d\x5f\xb3\x5c\x16\xc7\x66\x64\xae\x48\xbe\x69\x90\x4f\x6b\x2f\x15\x71\xdf\x8d\x0b\xc8\x8c\x9c\xdf\xc1\x88\x0c\x05\x53\xef\x31\x20\xa3\x7c\x34\xa3\xc6\x8c\x31\x16\x8d\x84\x0c\xe3\x6b\x32\x47\xfe\xb8\x33\x87\x3d\xfb\xda\x6b\x91\xed\x53\xcc\x2e\x51\x81\x02\xd4\x5e\x54\xb3\x58\x36\xec\x67\xa3\x64\xa6\x7c\x1f\xec\xca\x7b\x5a\xd2\xf1\x5d\x3c\x03\xc4\x8a\x9b\xba\x15\xf1\xc5\xf1\x10\x40\x57\x04\xa6\x98\x63\x92\x92\xba\xe7\x13\x7a\x5d\x6b\xc8\xf4\x32\xa4\x05\x88\xec\x1e\x9e\x6a\xf6\x99\x2d\x78\xc2\x48\xb1\x3f\x47\xb3\xe8\xf8\xb3\xfb\x4a\xda\xfd\xe6\xe4\xef\x7c\x46\x1c\x94\x8d\x6d\x40\x7a\xc2\xd2\x21\x85\xef\x3f\x8d\xe3\xcd\x37\xbe\xf9\x9c\x9a\x25\xd7\xa5\x76\x95\x09\xb7\x8f\xce\x79\x99\xe2\xa4\xc8\x87\x2b\x36\xcb\xad\x48\xc0\x6b\x8d\x6c\x51\xfd\xda\xe8\x9e\x9f\x7e\xba\x9d\xf4\x28\x5c\xe9\xc3\x70\x08\x07\x23\x7d\x9e\xaa\xd4\xca\x64\xc2\x1d\xcd\x85\x32\x34\xa3\xb1\x19\xc4\x0c\x3f\xc5\x61\xe0\xd1\x60\xd8\x9c\xab\x5a\x63\xed\xa3\x8e\x1f\x84\xb9\xda\x24\x07\x37\xb4\x06\xd3\x15\x08\xdd\x8f\x76\x3c\x0e\xff\xa8\x9a\xdd\xde\xa3\xca\xb8\x59\x38\x88\x4d\x04\x9f\xc1\xfc\x08\xf4\x29\xc2\x95\xe0\xfb\x57\x26\x4c\xc7\x49\xca\xbd\xb4\xc6\xce\x8c\x1b\xf1\x17\xee\xae\x19\x4d\x2f\x0f\x75\x72\x04\xcf\xeb\xf4\xcd\xb0\x0b\x6f\xd4\x66\x2b\xe6\xf7\x93\x83\x32\x61\x2c\xcf\x0d\xc0\xe0\x4b\x1d\x0f\x12\xbe\xd4\xcc\x54\xb7\x94\xaf\x24\x49\xbf\xe5\x73\x87\xcb\x8a\x0a\xf1\xf2\x67\xb2\x9c\xa5\x85\xf0\xcb\x60\x75\x6f\x6b\x24\xee\xed\x26\x95\x73\x42\x81\x2d\x83\xbb\x14\x1e\xf3\xf4\x44\xa9\x38\x21\x7a\x41\x43\x61\x2b\x81\xed\xd7\x2f\xa9\xf1\xb1\x41\x6a\x7a\x3d\xb0\x1a\x09\x9e\xe3\xc1\x44\xf3\x9e\xd7\x09\x19\x0f\xcc\xed\x69\xe7\x45\xea\x96\x04\x16\xee\x7f\x81\x97\xe1\x1b\x0d\x3d\x23\xbc\x51\xca\x94\x00\x88\xbf\x4e\x41\x76\x9f\x6f\x2a\x20\xb8\x41\x38\x6e\xa9\xae\xec\x9a\xa6\x3e\x5e\x53\xa1\x79\xdf\x46\x61\x60\x72\x8b\x84\xc2\x69\x05\x39\x60\xe0\xdb\x6a\x2c\xac\xae\xa4\x47\x0c\x9c\x07\x5d\x8c\x82\x3a\xfd\xd6\xa9\xef\x97\x6e\x55\x78\x9c\xc8\x66\x99\x4d\x5b\x9e\xed\xe4\xd6\xc4\x97\x3c\x6e\xa9\x39\x4f\x0a\xa8\xb7\x2b\x42\x6c\xc0\x05\x61\x76\x1f\xea\xfa\xcc\xec\x44\xc7\xf7\x02\x01\x44\xe4\x6b\x78\xf9\x4a\xc3\x0f\x55\xc8\x77\xe9\x31\xa2\xd3\xb5\x7d\xea\x3f\x32\xcc\x4d\xb4\x0a\xa0\x3d\xa2\x71\xd6\x94\x43\x90\xfd\x7e\xc7\xf7\xe4\x2e\xaa\x6c\xeb\x9b\xc8\x61\xb4\xee\xae\xcc\x2e\x2a\xb6\x8a\xeb\x6a\x64\xa5\xc8\x8a\xd2\xca\xa1\x61\xae\xed\x25\x33\x12\x4c\x14\x89\xc2\x35\xfa\x54\x84\x27\x9b\xa7\xbe\x8c\xb4\x19\x03\x16\xb8\x79\x1b\x61\x85\x93\x8a\xf7\x4a\xf9\xe7\x3b\x02\xff\x4e\xc3\x1c\xc5\x00\x19\xc3\x68\x39\xf2\x99\x4b\x9a\x72\xda\x60\xba\x5e\x38\x74\xfc\x98\xcb\xda\x44\xf4\x16\xd2\x6d\xaa\xc9\x25\x65\x0a\xe1\xa2\x6a\x39\x0e\xf9\x16\xf4\x57\x1c\x75\xdd\xaf\xbb\x09\x58\x25\x4e\xcc\x5e\x17\x70\xff\xb3\x5a\xc9\xc2\xf6\xfb\x18\x83\xab\x84\x96\x7c\xa3\xba\xd1\xaf\x98\xb1\x89\x1f\x2e\x57\x09\xe7\xe5\x43\x3c\x0f\xd1\xc0\xa1\x9c\x12\x6f\x0f\x16\x1b\xd8\xa7\x75\xda\x29\xc8\x1c\x77\x60\x0a\xc5\xe9\xae\xef\x9d\x93\x3f\x42\x6e\xec\xe8\xe0\xca\x75\x05\xc8\x97\x91\x15\xc2\xde\xea\x2b\xd5\xbf\xf4\x4b\x3f\xa3\xa6\x36\xdf\x44\x15\xcb\x05\x18\x7b\xe6\xf7\x3b\x45\x0d\xc5\xef\xa4\xa7\x3e\x4f\x12\x3e\x45\xc8\x0a\xfc\x24\xe1\x4f\xa9\xee\x8c\xc5\xfc\x0b\xaa\x2e\xc3\xbb\xde\x04\xf8\xc7\x21\xef\xca\x03\x83\x0d\xfb\x83\x8e\xda\x22\x9b\xa9\x1c\x22\x43\xf3\x0a\xb8\x72\x6a\xe2\x79\xb9\xaf\x23\xcb\x81\x2d\x06\x24\x97\x41\x91\x44\x52\x21\xc4\x41\x6a\x3e\xf3\xae\xae\xab\x5d\x21\xce\x11\xa6\x21\xa7\x1a\x1b\x3c\x13\x57\xec\xdc\x24\xce\xde\x39\x2f\x6d\x8b\xcd\x23\x2a\x2d\xb4\x8d\xf9\xe3\x6b\xae\x70\xff\x0b\xed\xa5\x30\xee\x53\x6a\x83\x66\x27\xaa\x53\x7c\xad\xe2\x94\xbd\xfb\xf6\x6f\xf1\xcd\x7e\xee\x1f\x22\x23\xbe\xd2\xf1\x3b\xe5\xa2\x22\xd1\x3d\xd5\x29\xf7\x27\xeb\xb2\x35\xb4\x36\x81\xef\x4b\x83\xb0\xf4\x28\x1a\xac\xed\xb8\x5c\xcf\x34\x44\xda\xcf\xb6\xed\xa1\x71\x14\x06\x21\x1a\x73\x88\x0d\x31\x9d\xca\xd7\x35\x87\x57\x26\x64\x36\x1d\x85\xb1\x89\x66\x7c\x2d\xe0\x82\x22\xc8\xe5\xdf\xc3\x9c\xc5\x8e\xf0\x6c\x98\xac\x6c\xa9\x00\xb2\x16\x16\xd6\x59\xfc\x05\x86\x72\x16\xa2\x49\x64\x6a\x9f\xf8\x3c\xa2\x35\xc1\x5f\x3d\xe5\x89\x3a\xe2\x38\x29\x62\x90\x51\x33\xf1\x9e\x50\xb1\xfa\xaa\x23\x72\x44\xa4\xb8\x27\x3e\x43\xdc\xf9\xa5\x1d\x4a\x56\xe3\x82\x16\x53\x79\x87\xf6\x86\x93\x97\x2c\xb7\x03\x22\xf8\xb3\x38\x6f\x7c\x83\xf3\x86\x0f\x7c\x97\x3e\x9c\x7b\x15\x5d\x35\x82\xc3\x2c\xdd\x1a\x3b\xcf\x1a\xb4\x64\x89\xb0\x31\x99\x0a\x5d\x38\x7f\x1a\xca\x20\x91\x5d\xb6\x78\xb0\x70\xfb\xe7\x54\xd2\x7c\x4e\xc9\xa1\x1e\xb4\x71\x16\xc6\x83\xdc\xe9\xbe\xb0\x50\x4f\x55\xb5\x67\x97\x03\x0a\x12\x7e\xcd\x85\xb4\xd8\xf4\xc7\x14\xc7\xfa\x31\x65\xf1\x32\x3b\xce\x9f\x01\x62\x45\x78\x19\x54\x49\x05\xa5\x53\xe1\x62\xa0\xdf\xc3\xff\xb0\xc1\xe5\xc7\x04\x96\x43\x35\xe7\xa2\x22\x69\xbf\x81\x48\xc6\x29\x4d\x96\x6f\x0d\xcb\xf6\x27\x34\x56\x8f\x00\xe2\x26\xd5\x51\xa4\xc5\x4f\x0b\x0d\x77\xba\x03\xed\x22\x58\x4c\xd4\x14\x98\x67\x75\xa2\xc2\xdc\x73\x60\x3a\x90\x85\xd8\x88\x84\x3c\x30\xb7\xd8\x8e\xed\x20\xc9\x43\xe3\xf9\x16\xb9\x8e\x4a\x3b\x5c\x6a\xaa\x0d\xf0\xcc\x30\xee\x17\x81\xb4\x62\xf0\x5c\xff\x33\xb8\x78\xbe\xf1\xc5\x74\x56\x12\x20\xd3\xd4\x28\xaa\xe5\x4d\x45\x52\xc8\x93\x84\xbf\x7d\x4b\x4b\xac\xbc\xd5\x24\x43\xd7\x4f\xcd\x48\x68\xd1\x59\x60\x7e\xa2\x86\xf3\x38\x66\x90\x3a\x98\x62\xa8\x0b\xa3\x65\x68\x78\xbe\xe4\x06\x20\x74\xd5\x48\x1d\x29\x46\xb3\xc9\x68\x44\x03\x50\x57\x3a\x35\x11\xb7\x88\xa5\xcb\x5f\x3e\x7a\x69\xff\x7b\xaa\x1a\x62\xac\x0d\x6d\x46\x82\x33\xae\x07\xa4\x75\x21\x2b\x81\x9f\x2a\x8b\x42\x36\x0d\x16\xf6\x6c\x95\x2b\xb6\x17\xcc\xaa\xe2\x34\xdc\x16\x0c\x0d\x84\xca\xf8\xba\xa3\x26\xa8\x9a\xaa\x33\x51\x18\x1f\xe4\x82\x8e\x0b\xa1\x5c\xc3\xb2\x2e\x7d\x4e\xa0\x9b\x9e\x1a\x5a\x40\x84\x7a\x59\xa1\xab\x2f\xd7\x1a\xd9\x5f\x69\x9b\x20\x48\x0b\x79\x09\xcf\x5f\xe0\x10\xc9\x30\x46\x03\xc6\x69\x1c\xe6\x79\xd6\x2b\xd2\x01\x14\x18\x85\xc1\x5f\x1d\xf5\x93\x2a\xed\x8b\x4d\x5e\xe6\x1b\xd1\xea\x8c\xcf\x67\xce\x69\xd1\x0c\x10\x62\x0b\x39\x68\x13\x1b\x4f\xd1\x0f\x05\xb3\x86\x9d\x7a\x5b\x95\x12\xb7\x74\x55\xd7\xee\xc7\x38\x74\x70\x0e\x67\xdd\xce\x4f\x96\x6d\xda\x2f\x34\x97\x22\x7f\x03\x47\x55\xb7\xb0\xc0\x08\xa0\x27\x28\xe2\x84\x11\xde\x3e\xad\xd0\x1a\xe5\x69\x18\x70\x73\x07\x68\x9c\xb7\x68\x34\x19\x25\xa8\x3b\x08\xaf\xdc\x62\x78\x78\x28\x54\x4b\xa5\x91\xd0\x50\xf1\xde\xd7\x1e\x9b\x54\xa6\x3d\x59\x96\xaf\xa3\x88\x99\xbf\xa3\xd8\x95\x40\x8b\x6b\xb3\x6d\x7e\x42\x8e\xb1\x36\x30\xca\x37\x10\xaa\x60\x67\xde\xd2\x22\x1a\x9f\x4c\x7c\x5b\x99\xa7\x1d\xe0\xc0\x1e\xe0\x54\xe1\x5f\xb4\x6c\x68\x11\xe7\x61\xf4\xb8\x9a\x04\xfc\x43\xd5\x25\xd8\xd4\x55\xf3\xce\x9f\x74\x7c\xe6\xc0\x14\x1f\x58\xc1\xb7\x10\x07\x89\xac\xa7\x62\xe8\x7c\x8f\x90\x43\x4e\x31\xbe\x8c\x00\xe5\xa9\x95\xa6\x72\x1d\xea\x2b\x8c\x3d\xec\x28\xf8\xd1\xbb\x8a\x35\x04\xf5\x56\x44\x53\xb7\x34\x83\xd5\xe6\xae\x9f\x9b\x3a\x5a\xa3\x34\x9e\xdf\xdf\xce\xcc\xea\x8c\x3a\xe9\x4c\x8a\x09\x93\xfe\xbe\x46\x66\xa8\xf5\x58\x8a\x0c\x17\x04\xe0\x07\xee\x77\x14\xee\xeb\x7e\x13\xc7\xd8\x20\x0d\xed\x52\xcb\xef\x3a\xce\xbd\xf8\xc6\x75\xdf\x7a\x26\x1f\xa6\x49\x32\xc2\x71\x77\x8d\x35\x37\x8b\xeb\xa5\xf7\x7b\x49\x92\x39\x71\x4d\x38\x05\x64\x3f\x4e\xd1\xb4\x7c\x5a\x30\xfc\xad\x5a\xd7\xbb\xf4\x16\xb9\x89\x68\x30\x68\x61\xc1\x09\xc3\xd1\xaf\x10\x65\xb8\x5d\x6e\xd6\x93\x19\x88\xe4\xd3\x50\x13\x3a\xac\x84\xfe\xbf\x87\x4f\x43\x8c\xf1\xae\x9b\x12\xcd\x8a\x1e\xb5\x70\x02\xe0\x0c\x35\xb8\x16\x7e\x15\xf0\x41\x3c\xa8\x7b\x75\x3e\xdb\x32\x4c\x32\x29\x66\x98\x5a\xfe\x2f\x3f\x52\xd4\x53\x1f\xd5\x5e\xb5\x77\xae\x5d\xc4\x7d\x9b\x66\xb9\x89\xfb\x33\x3e\x37\xbc\xab\x20\x06\xc8\x4e\xd1\x2b\x3e\xe9\x7e\xa8\x05\x17\x0e\x41\x8e\x7d\x8a\x03\x10\x06\x5f\x4f\x1b\x48\x24\xcc\x12\x01\xfa\x5a\x6a\x4a\xb7\xa3\x82\x4a\x4d\x5d\x12\x98\x2c\x4f\x93\x19\xaf\xfc\xb4\x95\x92\x8e\x8a\xc2\x37\x7a\x1d\xf7\x94\x5f\x84\xe6\x1b\xd6\x5e\xa6\xa4\x3c\x20\xfe\x66\x47\xa1\xd1\xd7\x14\x50\x76\x14\x46\x7d\xbb\x02\x22\x43\x19\xbc\xa4\x64\x0b\x1f\xbd\xa6\x4e\xcc\x3f\xc3\x47\x0b\x1f\x91\x37\xd9\x63\x13\xc6\x4b\x05\x45\x67\x4a\xaa\x49\xd1\xc6\x6a\x9c\x55\x3f\x35\xf4\xa4\x54\x4c\x74\x4f\x51\xe4\xdc\x53\xb4\x43\x9e\x36\x42\x5c\x4e\x13\xd3\x7d\x43\x18\x9a\x0d\x6d\x84\x73\xe4\xe2\x37\xd7\x99\xd3\x84\x70\x26\x85\x5a\xa3\x67\xcc\xbb\xd5\xf1\xb0\xb9\x5b\xae\xfa\x19\xc6\xcb\x36\xcb\xc3\x81\xc9\x25\x70\xe2\xd6\x27\x8c\xb8\xf4\x41\x3d\xa4\xf2\x15\xbb\xb4\xd4\xd2\xc3\x35\x7a\xe8\x66\xa3\xcb\x7a\x71\x7e\x7f\x7b\x68\x32\x16\x6a\x63\x76\xd8\x8e\x1f\x9f\x7b\xaf\x86\x87\xdc\x3d\xdf\x5e\x8a\x92\x95\x56\x05\xde\xbf\xb0\xe0\x7c\x55\x93\x70\x61\x36\x4c\xc3\xd8\x97\x97\xb0\xad\x8f\x2a\x58\xaa\x56\xc9\x34\x03\xfb\xb8\xa2\xbe\x62\x89\x49\x58\xf5\x2b\x64\x69\x61\x50\x4f\x4c\x3c\x83\xe4\x17\x91\x4f\x70\xef\x7c\xe2\x37\x14\xd2\x4b\x72\xbe\xe1\xdf\x46\xf8\x0b\x1b\xb0\xa9\x5b\x61\x38\xd6\x2c\xe7\x4a\x2f\x0a\xe9\xa5\x50\x26\xfa\x88\xee\xca\x53\x53\x45\xbe\xb6\x85\x8b\xe8\x88\x0b\x10\x3a\x01\xe1\x75\xf1\x33\x31\x03\x7d\x13\x45\x26\xa3\x83\x26\x6d\x63\x45\x01\x7e\xa5\xa3\xda\x63\xaf\xe3\x19\xc0\x60\x0d\xcd\x41\x9b\x8d\xad\x49\x2d\x8f\x4c\x4a\xf6\xe2\xc3\x9b\xa3\xba\x4e\x15\x07\x26\x8e\x59\x9a\x1d\x9d\x87\x07\x6a\xa2\xf4\x8e\xd2\x23\x7b\xab\x69\x20\xbe\x67\x63\xbb\xc4\xa4\x81\xa8\x1d\x1c\xc1\xbe\xe3\x1b\x35\xb9\x15\x9b\x83\x16\xe6\x4c\x05\x16\xa2\x9a\x73\xa1\xa3\xe6\x04\xdf\xd8\x08\xe6\xda\xb3\x77\x4f\x7b\x61\x61\x1f\x0a\x9d\x58\xed\x7f\xae\x87\xa1\xff\xb9\xda\x1e\x71\xdf\x6c\x53\x87\xe6\x30\x95\x35\x44\xb3\xbb\xa5\x94\x99\x14\x09\xe9\x79\xb0\x6d\xca\x73\x6c\x39\x0e\xf0\x07\x5a\xe5\x5b\xd3\x98\x66\xc3\x64\x3c\x8b\xa7\xaa\x46\x28\x3d\x5f\x3c\xbd\x8c\xff\xa5\xa3\x7e\xe7\xd9\x8e\xef\x52\x11\xad\x58\x14\x06\xa6\x27\x08\xc9\x0a\x1d\x37\xdf\x74\xbc\x74\x66\x6a\xb3\x24\x2a\x72\x51\xa6\x07\x88\xe9\x38\xc5\x2b\x7c\xad\x98\x02\x46\x26\xb7\x69\x68\xa2\x8c\xc4\xeb\xa4\x8a\xa5\xf4\x88\x3a\x7e\xb6\xf9\x8a\x2a\xb2\x70\xcf\x03\x25\x93\xbf\xc4\x66\x47\x58\xf8\x7a\x47\x45\xba\x87\xd5\x92\xff\xfb\x5f\xcd\x20\x1a\xac\x49\x87\x64\xae\x52\x3d\xa6\x6f\x50\x87\x4f\x76\x16\x2d\x91\xd4\x1d\x6b\xa0\xb6\xf9\x76\x56\xa4\xcb\x76\xb5\x22\x45\x7a\x4a\x0d\x86\x9f\xaa\x65\x9e\x5f\x29\xe3\x73\x1a\xea\xf1\xfe\x16\xfd\x94\xb7\x14\xc9\xec\x5b\x0a\x39\x40\x8c\x32\x2d\xe5\x0c\x4e\x4d\x14\xbb\x78\xbd\x41\x38\xbf\xbf\xdd\xb3\x76\xec\x0c\x15\x0e\xf1\x75\x45\xfe\x72\xbd\x92\xa9\x0f\xc3\xd1\xa3\x6a\xcf\x72\x04\x09\xbf\x7f\x8e\xcc\x13\x5e\xb5\x89\x28\x9e\xb5\x26\xaf\x92\x78\x14\x3a\x34\xae\x02\x3a\x52\xf8\xdd\xf3\xbc\x12\xd7\x95\x72\xda\xbf\x80\x6b\x93\x64\xcc\xf3\x0f\x00\x3d\xcd\xe4\x7d\x64\x25\x45\x1e\xb1\xc2\xbb\x18\x66\x3b\xe8\x20\xe2\x45\x0f\xe8\x45\x78\xb3\xef\x21\x93\x45\x70\x76\x84\x3a\x89\x78\x87\xab\xd8\x23\xfc\x0a\x15\x99\x83\x6a\x17\xe6\xf4\x8f\xe8\x23\x71\x8e\xfe\xb8\xc2\x17\xdf\xf1\x43\x1e\x8f\xd0\xc6\x11\x42\x3d\x5a\x38\x1c\xe2\x1b\x15\xf3\x9f\x3d\x44\xab\x82\x58\xf5\x3c\xe2\x6d\x57\x69\xf6\x19\x03\xbf\x03\x10\x0c\xc7\xc8\x50\x0b\x2a\x8d\xb6\x14\xfa\x35\x5f\xec\xba\x4a\xdd\xd7\x77\x4d\x4b\x5b\x81\xff\xff\x2d\x04\xf8\xc8\x03\x66\x6b\x3c\x40\x07\xe6\xe6\x59\x5e\x55\xdc\x3f\x22\xfa\xcb\xaa\x82\x76\x59\x01\x43\x56\x4c\x9a\xda\x98\x05\x95\xb1\x3c\x77\xb5\x22\xe1\x5d\x55\xed\x0e\xa8\x2c\x57\xbe\x0f\x6a\xda\xeb\x1a\x6c\x42\xcf\x1d\x1b\x62\xab\x62\xcd\xcd\x53\xbb\x1c\xc6\x09\x4a\x0f\x7a\xe8\x01\x3b\xef\x64\xa5\x62\x41\x50\x47\xfe\x07\xe5\x0b\x22\x6b\x96\xc3\x78\x00\x80\xa2\xe8\x08\x96\x9b\x54\xfe\x94\x36\x00\x9e\x21\x10\x48\xa8\xb1\xde\x56\x21\xd2\xb9\xce\x13\x1a\x0d\xc6\xe6\x8a\x5a\xd7\x70\x63\xb7\x75\x35\xf9\xb4\xd6\x44\x76\xb3\xab\x03\xf3\x9a\xcd\x41\x9c\x0a\xe0\xdb\xfb\x9a\xff\xf3\x7d\x45\x1d\x31\x32\xd1\xd8\xf6\xad\x02\xe4\xb1\x62\x1d\xdf\x28\xdb\x99\x99\x25\x3b\x28\x4c\xda\x07\x91\x11\x8f\x62\xd3\x12\x89\x5e\x34\xfd\x6e\x09\xc4\x76\xa8\x63\xfc\xcc\x0e\x58\x7a\x15\x3d\xce\xb3\x23\x3e\x4e\x25\x7b\x57\x41\x77\x03\xf9\xff\x17\xbe\x07\x8e\xf4\x35\x5a\x45\x1c\x23\xf0\x09\xa1\x75\xf0\x43\xb4\xf5\xdc\xae\x2c\xf7\x06\xbf\x6d\xa7\xf5\xf4\xd3\xbe\xc6\xef\xb9\xed\xfe\xb4\xe3\x75\x1e\xce\xd5\x48\x6b\x25\x78\x38\x68\xca\xe4\xa1\x0f\xb7\x2c\x55\x68\xe5\xc9\x4e\xd6\xfa\xa9\x18\x2f\x29\xe2\xa4\x08\x86\x61\x4b\x57\xbe\x7e\x4f\xcf\x50\xfe\x9e\x1a\x5f\x48\xc3\x8c\x98\x2d\xcb\x13\x07\x9f\xba\x09\x52\x9a\x7c\x43\xf0\x58\x86\x89\x74\x3c\xbb\xfa\xdd\x8e\xa2\x04\xbc\x4a\x65\x62\xc4\x0a\x38\x3a\xb4\x49\xb6\x3c\x45\xad\x45\x1c\xbe\x56\x77\x63\x8c\xb4\x7b\x37\x0d\x4f\xa7\x61\xaf\xe0\xe3\x37\x2f\x58\xe5\x49\x65\x5a\xce\xfb\xeb\x60\x29\xc0\xfc\xa6\xb2\x2e\x8b\x6e\x04\xd8\x97\x4c\x7e\xe2\x26\xc0\x83\x61\x91\x06\xc3\x2d\x95\x19\xa7\x89\xf2\x45\x0f\x3c\xd9\xdd\x3f\x04\x2d\x23\x4e\xc0\x8d\x89\xa2\xee\x79\x43\x0d\x94\x27\x3d\x9b\x91\x30\x19\x1c\x3b\x4b\xba\xc0\xf2\x71\xaf\x09\x69\xc3\x43\xb4\x45\x50\x85\xbd\xe7\x30\x79\xc3\x22\xcd\x19\xe2\x84\x6c\xab\xc5\xac\x0b\xa8\x7c\x7c\x4b\xcf\x1c\x6d\x9e\x7a\xc0\x77\x90\xc4\x4c\x90\x6a\x53\xb4\xad\x59\x13\xb2\xe3\x13\xb7\x63\x4d\x0d\xdf\x3c\x0c\x44\x72\x91\x07\x85\x69\x9d\x64\x68\x58\xfb\x39\xdb\xaf\xd2\x17\x9d\xd6\x6b\x70\xba\xe6\x46\x17\x16\xda\xc9\xd8\xc6\xce\x8d\xc2\x04\x42\xc0\x9f\xaf\x3b\x3b\xb5\x9a\x7e\xd4\x4f\x6d\xfc\xb0\x42\x89\x7c\x34\xf1\xe4\x15\x1f\x20\x78\x13\x81\x15\xdf\x77\x3c\x86\x13\x8d\xa3\xce\x3a\xff\x42\xd1\x06\x48\x39\xbf\x06\x71\x8d\x1b\xac\xf1\x84\x0e\x1f\x4c\x3c\x75\xde\xc7\x4d\xb2\x94\x3d\x13\x1c\x2c\xb8\x01\xef\x94\x2c\xbd\xaa\xa5\xfa\x15\x84\xf2\xcb\xf2\xec\x51\x2d\xaf\x73\x7e\xa2\x00\x4c\xb7\xd1\x26\x41\x21\x6c\x1b\x50\xf3\x7c\xd3\x55\x3c\x6f\xbf\xa7\xc3\xe6\x0f\xe8\x60\x39\x2e\xff\x03\x12\xe8\xdd\xa3\x6f\x81\x48\xeb\x16\x30\xb7\xfc\x47\x1d\x3f\xfa\xfe\xa7\x1d\xd5\x07\xff\xae\x66\x9e\xb9\xe4\x18\xc5\xb2\xa4\x88\xc8\x60\xa2\x84\x84\x64\x11\xfe\xe0\x1e\xbd\x95\x64\xfe\x3e\x8a\x18\x86\x71\x9e\xb5\xbc\xa2\x3f\xa0\xbd\x42\x3c\xe3\x8f\x64\xcf\xa6\x39\x55\x29\x50\x47\x7d\x43\x89\x4c\xbe\xa1\xcc\x8c\x89\x8a\x51\x1c\x62\xa3\xe0\x07\x9d\x56\x3f\xee\xb4\x9a\x26\x85\xe8\x08\x90\xe3\x08\xdf\xff\x62\xa2\xaa\x50\x57\xd5\xe0\xf5\xf7\x69\x9b\x08\xe7\xa9\x1c\xb1\xe5\x30\x4f\x13\xda\xf0\x08\x78\xd9\x66\xf2\x8d\x02\x64\x85\xb1\x09\xc2\xa4\xe5\x11\x13\xac\x43\x2f\x9c\xe3\x8e\xac\x23\x08\x8a\x71\x68\xf9\xd8\xc2\x6e\xdc\xee\x28\x81\xd5\x6b\x4a\x18\xea\x1d\x55\x1a\x2d\x63\x5f\xe8\x09\x2a\xe2\xdf\x72\xad\xc4\x10\x35\xc9\x04\x16\xc2\xdc\x83\x22\xe9\x51\x85\x82\xf5\xe8\xf8\x91\xed\x87\x81\x09\x49\x07\x66\xb1\x22\xb9\xc6\x0c\xeb\xf8\x25\xd8\x5e\x77\xd4\xbc\xf1\x19\x85\x82\x09\x52\xdb\x0f\x73\xa0\x08\x98\xc4\x08\xdb\x47\x18\x8d\x64\x45\xc7\xd6\x25\x97\x4e\x84\xd0\x21\x4f\x81\x7a\xc4\x4b\x6e\x29\xbc\x6d\x3f\x5c\xb6\x69\x66\xd5\x20\xf9\x71\x45\x3e\x75\xbc\xfa\xc4\x93\x95\x58\x7d\x0d\x40\xa0\x64\x9a\x76\x57\x35\x8b\xfc\x85\xf6\xde\xb9\x19\xdf\x59\x3e\x3b\x51\x1a\xb1\xc7\x68\x4e\x4b\xa8\x7d\x6a\xd4\xac\xf3\x24\x40\xcb\xbd\x52\x9c\x5d\xd0\x16\x0b\x1a\xd9\xff\xaa\xfb\x13\x3f\xcc\xb0\x92\x9a\xf1\x58\x8a\x8e\x18\x00\x44\x30\x07\xcb\x38\x03\xfc\xa2\x3c\x22\x1f\xe3\x0e\xcd\x78\x8b\xa2\x4b\x06\x8d\x14\xe6\x36\x11\x3f\x38\xcb\x57\x2e\xba\xf4\x68\x29\x10\x16\xb1\x62\xf1\x3b\x79\x6a\x82\x83\xdc\x70\xc0\xd3\x7e\xa0\x10\xb9\x2c\xe6\x21\x42\x11\xb4\x20\x88\xf0\x6f\x2a\x48\x52\x7f\x35\x36\xa3\x90\x1d\xa8\x0b\x0c\x5d\x57\x7c\xd3\x54\x05\x97\xdb\xbb\xd2\xac\x2e\x32\xbb\xa3\x0c\x34\xa5\x16\x46\x06\x0d\x55\xc8\x0f\xb0\xf4\xf0\xf5\x3b\x69\x21\x61\x5f\x1e\xa2\x09\x7c\x18\x81\xc7\x09\xf7\x89\x16\xf8\x4e\x4a\x90\x3c\x0f\xc9\x1c\x6f\x50\x86\x1d\xc0\x42\x63\x0c\x0e\x67\xf0\x49\x98\x4c\x35\x43\xf0\x92\x1b\x0f\xf5\xf9\xdf\x38\x39\x68\x21\x67\xe4\x24\x0b\x54\xd7\x5a\xd5\x2f\x53\x43\x2a\x4f\xe5\xd3\x42\xb4\xc8\x54\x46\x7c\x03\x0b\x2b\x25\x9d\x96\x92\x17\xf4\xfe\x03\xf4\x9a\xa8\x9a\x5d\x54\x15\xe4\x73\x35\xbf\x32\xbf\xbf\x6d\xd2\xc0\xc4\xc0\xfb\xa2\x02\x85\x3a\x15\x5f\xab\xca\xea\xb2\x19\x27\x69\x46\xb5\x4d\xa7\x5a\xe6\x15\xcc\x54\x52\x61\x8a\x3c\x45\x11\xaf\x52\xab\x15\x2c\xb2\x12\xf7\x4e\x93\x31\x31\x6f\x28\x77\x0b\xfe\x7c\xbe\x76\x05\xfc\xa1\xc9\x86\x61\x36\x54\xa2\xcc\x55\x9c\xdf\x4e\x5d\xb8\xc8\x8d\x13\x03\x74\x9a\x78\xee\xcc\x68\x36\x8f\x41\xd8\xdf\xaa\xc8\x59\x4f\x4e\x7c\xe1\xfd\x92\x82\xd2\xcf\xa0\xec\x27\x84\x32\x2e\x32\xf9\x7b\x7f\xab\xab\xf6\xfa\xf9\xa6\x4e\xc6\x72\x12\x30\x66\x90\x27\x70\x68\x6d\x65\x1a\xa7\x81\x66\xd4\x66\xdc\x2a\x73\x8c\x82\x7e\x6a\xef\x07\x3a\xae\xf8\x54\x71\x01\x42\x66\x03\xbf\xef\x5d\x27\xc4\x55\xc4\x64\xdc\x44\x78\x85\x3c\xd3\x2f\xee\xf4\xca\x4f\xbf\xb8\xd3\xd3\x1a\x92\xa5\xc6\x17\x85\xf3\xfe\x9f\xf0\xc1\x7c\xd3\xa9\x14\xa3\x6d\xba\x4c\xc5\x0f\x32\xca\xeb\xc4\x13\xb2\x67\xfd\x74\xad\x46\xb2\x67\xef\x1e\xe0\x65\x6d\x1a\xdb\x94\x1d\x93\xf8\x41\x84\x26\x28\x25\xb1\x9a\x0d\x92\xf4\x53\x93\x8d\x30\xff\xe7\x16\xdb\x10\xea\x15\xf2\xe6\xfb\x93\x2a\x49\x94\xc4\xfe\xff\xe1\x4e\x6a\x5f\x09\x90\xa9\xe1\x71\xf4\xad\x89\x28\xcc\x5c\x7f\x83\xc2\xa1\xf5\x37\x9c\x98\x92\x09\x88\x44\x33\x37\x52\xbf\x47\x17\xf2\x03\x7a\x7b\xbe\xee\x7c\x16\xdb\x6a\x9e\xa4\xc1\xb0\x34\xdb\x2d\xf5\xb8\xfe\xa4\xe3\x6b\x25\x7f\xa2\xc6\x41\xc6\xc5\x68\x2c\x58\x71\xe5\x08\xf7\x39\xdd\x11\xc5\x97\x94\x26\x33\x8a\x25\xfd\xaa\xf6\xe7\x17\x3c\x33\x6a\xfc\x56\x03\x59\xde\x4b\x6d\x7b\x28\x8c\x2c\xda\x75\x8e\x72\xdd\x13\xfa\x7f\x7b\xe2\x11\x99\x97\x9b\xca\x4f\xe3\x34\x19\x85\xac\xa6\x85\x02\xc8\xb7\x94\x54\xca\xb7\x9a\x14\xb2\xbf\xdc\xee\x87\xa9\x0d\x34\x01\x2f\xce\x0b\x5f\x2b\x22\x80\x95\xa1\x8d\x77\x95\xeb\xcc\x38\x35\xde\x11\xf8\x3e\xcc\x36\xec\xdc\x90\xc3\xdc\x7d\xd2\x69\x7d\xed\x37\xb9\x27\x73\xaa\xa3\x84\x6a\x00\x48\xc3\xa3\x5f\x03\xee\x07\x36\xe4\x1d\x0a\x5b\x15\x4b\xfe\x3c\x27\xc1\x9b\xa6\xad\xdd\xf3\x5c\xa6\x5f\x43\x5c\xaf\x85\xd1\x1d\x3f\x6f\xb9\xe2\xf0\xa7\xe8\xb8\xe3\x8f\xd6\x81\x3b\xe3\xcf\x98\xa8\x51\xb3\x77\x11\x9e\x88\x42\x6f\xc3\x84\x4c\x3f\xcc\x0e\x7e\x66\xbd\xbc\x01\x9d\xd1\xb3\x51\xb4\x62\xcb\x73\xa4\x38\x4f\x6e\xa3\x3d\xe5\x8c\xbf\x8a\x24\x7d\x63\x67\x60\xd3\x91\x89\xb7\x7b\x2e\xf8\x2d\x5f\x9a\xba\x29\xc2\xf5\x7f\xbb\xeb\x4b\xbb\xf7\xb4\xe6\xc5\x05\xfc\x38\x51\xaa\xa3\x1d\x84\x0f\x3a\xac\x1c\x22\x98\x56\x10\x5e\xbc\xdf\x80\xcd\x79\xa9\x6d\xb3\xcc\xc6\x79\xb8\x01\xb0\x04\xa9\x1f\xbe\xae\x35\x25\x30\xca\x16\x45\x36\xc8\x13\x11\xf2\x76\x85\xc0\x45\x11\x45\x38\xa2\x08\x28\x82\xa4\x48\x73\x53\x44\xfd\x4a\xc9\xeb\x53\x55\x1d\xfc\x54\x15\x67\xcc\x60\x40\x74\x15\xcb\x16\x83\x17\xe8\xe9\x61\xb8\x92\x3d\xa6\x92\x7b\x98\x99\x7a\x2c\x66\xf4\x0c\xc3\x74\x5c\xe1\xbd\x7c\xbd\x78\x59\x5a\x63\xc0\x89\xef\x75\x3c\xfe\x2d\x0b\x07\x31\xcd\x21\xc4\x79\xb4\x0a\xcb\x0e\xfc\xf1\xbd\x4a\xa0\xd0\x69\x1d\x98\x5b\x7f\x7f\xa2\xc6\x17\x37\x21\xaa\x10\x19\xbb\x06\xc6\x4a\x13\x45\x69\x38\x18\xe6\x71\x28\x88\x17\x34\x55\x2e\xab\x69\x9f\xcb\x4d\xfb\x2f\x5e\x0a\x7b\x2d\x35\x59\x75\x5e\x29\xa4\x9f\x6f\x7a\x41\xaf\x88\x80\x66\xc3\xdf\xfc\x54\xfd\xfd\x4f\x55\xa8\x3e\xa6\x09\xc4\x44\xa1\x6c\xe1\xee\x64\x5e\x70\x63\x61\xf3\xb9\xc5\xb6\x8d\x4d\x90\x3b\xca\x6e\xac\xe5\x31\xf5\x2c\x8e\x35\xf4\xf0\xda\xac\xf9\xe1\x72\xfa\xa6\x81\x0d\x3f\xa1\x1b\xf7\x8d\x50\x23\x8b\xe7\xa4\xdf\xce\x37\x2a\x6f\x0e\xe3\xa5\x30\x0e\xf3\x10\x1b\x43\x30\x61\x2d\xc7\xce\x82\xf6\xa9\x4c\x1e\x36\x6d\xdc\xa1\x8d\xc2\x20\x19\xe7\xe5\x49\x3d\x20\xa4\xd7\xe8\x1d\xc3\x4c\x5d\x55\xb4\xcc\xef\x6a\x0d\x10\x6b\x06\xa9\x19\xb5\xfc\x9e\x3d\xa5\x52\xc8\x53\x55\xfe\xfe\x62\xdc\xf2\xd3\x17\x17\x3a\x5a\xd0\x42\x02\xe2\x71\x8f\x13\x08\x27\xb8\xe2\xcc\xcd\x35\x5d\x9d\x5b\x77\x80\xee\x20\x19\xd3\xfe\x94\x60\x88\x9d\xb2\xe3\x6e\x77\xd3\xa1\xeb\x0a\x5d\xcc\x38\x4c\x7e\x85\xce\xda\x6c\x9a\x9b\x30\xde\xe1\x6b\x50\x9b\x89\xea\x13\x55\xdc\x53\xa8\x82\xa8\x5a\xaf\xc4\xd5\x37\x2b\x3a\x53\x1d\x55\xa9\x3a\xad\x06\xfa\x7e\x4c\xa5\x3c\xac\xee\x4d\xa5\xd8\x76\x05\xf6\x1d\x6e\x03\x01\xa2\x13\x49\xf2\x93\xf5\xa7\xeb\x42\xc8\x2f\xec\x6b\xf7\x4c\xe4\xf6\x89\x40\x86\x7d\x84\x79\xf8\x33\x59\x18\xbf\x34\xff\xdc\xb3\xcf\xed\xdf\xd7\x2a\x9f\x02\x1c\xc0\x63\xd3\xd6\xaf\xef\x93\xeb\xee\x53\xca\x4e\x8d\xc6\x36\x0f\x81\x99\xc0\x08\x17\x36\xc5\x75\x78\x3b\x58\x36\x4d\x02\x7f\x6a\x52\x91\x44\x86\xd0\xcd\x56\x95\xc8\x71\xdf\x81\x75\xa4\x26\x5e\x6c\xed\x0f\x61\x9c\x84\xc9\xcd\x27\x50\x1f\x77\x5a\x4a\xd4\xbb\x69\x8e\x38\x49\xfb\x36\x65\xd1\x09\xd9\xeb\x0a\xda\x76\x51\x05\xfa\xa9\x19\x87\xfd\x16\x55\x65\x31\xd1\x32\xd3\x55\xb3\xcd\x33\x53\x5d\xb7\x2b\x96\x92\x59\xf2\x92\xf8\x1e\xe7\x55\x52\x87\xf0\x9c\xaf\xe1\x3d\xe5\xc6\x7f\xd6\x4a\x52\xc4\x7d\xf2\x7f\xa8\xf3\xae\xeb\x82\xc9\xeb\x8a\xf6\x66\x73\x0d\xbf\xe3\x66\xc2\x92\xed\xe5\x1e\x64\xf2\xe4\x8e\x67\x11\x7f\x9b\xa6\x09\xdc\x04\x92\x53\x3a\xbf\x41\x9e\x0a\x27\x65\x6b\x57\xd1\x46\x3d\xe0\xa2\x9e\x1e\xdf\x00\xe8\xe0\xda\xe4\x29\x15\x2a\x83\xf1\x9f\x86\x4c\xb7\x28\x22\xad\xab\xd4\xa1\x12\x6f\xa3\x88\xc6\x19\x0c\x8f\xa7\xff\x57\x8a\xff\xe4\x7c\xd3\xfc\xd3\x20\x59\xb6\x24\xf9\x34\xa3\x02\xa1\x6d\x4a\x8d\xfa\x06\x2d\x32\x6a\x19\xb7\x1a\xd5\x69\x5e\x2d\x6c\x86\x26\xef\xee\xdd\x0e\x91\xa4\xa0\x09\xef\x2a\xcf\x39\x4e\x6d\x46\x3c\xf3\xab\x28\x83\xc3\x8a\x61\xd0\x96\xaf\x9b\x66\x8e\x83\xb4\x88\x83\x61\x68\x53\x4c\xb1\x0a\xb9\x16\x6d\x14\x78\xd2\x4b\x1d\x6f\x20\xd7\x1c\xf8\xb0\x57\xa4\x03\x9b\x65\x4a\xae\xff\xa6\x16\x06\xb8\xa9\x44\xed\x92\xa5\x25\x9a\x96\x77\x62\xb7\x50\xf7\x94\x44\xf1\x89\x0d\x74\x2d\x7b\xda\x0b\x0b\xe8\x3c\xa1\xf4\xca\x72\x26\x32\xc8\x54\x7e\xa0\xd0\xe7\xfa\x02\x2b\x6b\xbb\x0a\x4f\xa6\xd4\x3c\xfa\xa1\x19\xcb\x48\xbf\x00\xf1\x3c\xce\xfe\xac\x22\x5c\xa6\x71\xa0\x19\xd5\x41\x44\xe6\x82\x1e\xce\xdb\x13\xaf\x7e\x77\xad\xc2\x74\xf7\xdc\xfe\x7d\x3f\x8b\xcd\xe6\x1a\x03\xe5\x29\x42\x90\xd0\x9a\xfa\x2c\xfb\xc3\x89\x57\xcd\xa0\xee\x88\xf0\x57\x7e\x0c\x1d\x0f\x58\xdb\x0f\x34\x87\xdb\x25\x54\xad\x61\xa0\x11\x66\x33\xa7\x11\x19\x58\xd9\xd1\x88\x7a\x58\x41\x6b\x4a\xbf\x40\xba\x42\xb4\x26\xc0\xfd\x6c\xed\x52\x40\x2a\xf3\x0f\x8a\x33\xea\x30\x50\xdc\x78\x6e\x77\xa9\x9d\x2b\xea\x9e\x14\x67\x3a\xbf\x54\xee\x0f\x27\xf6\xbe\x7b\x7e\x7d\xda\xd9\xfc\x65\xce\x76\x76\x74\x5b\xcf\xcf\x3b\x21\x50\x3a\x25\xb8\xb9\x43\x51\x28\x2b\x6c\xc1\x7b\xb0\x46\xb0\x2a\x63\x1c\xc5\xce\x81\x37\xdd\x4e\xc5\x1e\xd6\xdb\xae\x55\x44\xf6\xce\xb5\xb3\x30\x12\x79\x76\xc7\x6f\xea\xb9\x4e\xdd\x06\x1d\xd8\x38\x8f\x2c\xd3\x17\x39\x59\x5a\x3f\x90\x3d\xdb\xf5\xbd\xca\x5b\x0a\x14\xd5\x0f\xb3\x21\x4e\x2c\x9e\xc2\x61\x95\x21\xc1\xfa\xe3\xf5\x5e\x40\x35\x09\x02\x43\x04\x6b\xf4\x2b\xb4\xe4\xa5\xaf\x1f\xfd\x92\x0b\xf9\x93\x74\x60\x67\x94\x88\x12\x44\x59\x25\xea\x54\xa3\x41\x6a\xd6\x3f\xe9\x01\x62\x26\x78\x0f\xc7\x7a\xe4\x19\x90\x94\x76\x4a\x66\x22\xfb\x08\x3d\x03\xee\x59\xa3\xb4\xc7\x45\x29\x5d\xa5\xb8\xa8\xcb\x08\x47\xc8\xe4\xa2\x3a\xbf\xce\xcc\xd4\xd8\x2e\x28\x64\xe1\x7a\xad\xe3\x45\x20\x4e\x29\x3e\xd2\xc3\xd8\x6c\x5c\x43\x45\x8a\x87\x87\x78\xbe\x96\xbd\x52\x2a\x1a\xdb\x40\x02\x63\xec\x5d\xc4\xb9\x7c\xdd\x64\x50\x49\x4f\x6e\xd9\xa6\x5c\x46\x76\xd4\xee\x2e\x8d\xbf\xa4\x42\xd3\x6f\xfa\xba\x27\xd1\x3a\xcd\xf8\x64\x16\x2b\x8e\x53\x0e\xa1\x18\xe4\xcc\x47\x54\xdd\xf5\x6b\xcf\xef\x6e\xb5\x14\x0f\xb6\x52\x92\xba\xd0\x79\x52\x01\x77\xf2\x34\xe9\x17\x01\x37\xcb\x9f\x75\xd3\x88\x1e\x4f\x0a\x8c\x28\xf6\xd2\xbf\xd6\xba\x7e\x15\xdd\xd9\x35\xa5\x63\x9d\x99\x28\x27\xc6\x4d\xfa\x06\xff\x39\x15\x4a\x71\x5c\xf8\x5a\xb7\x07\x86\xd6\xa4\x59\x12\xa3\x48\x0c\x84\xc3\x8f\x3b\x0a\x2b\xcf\xc0\x11\xec\x12\x1e\x36\xe4\x3f\xa3\xa3\x29\x2d\xe7\xc6\x72\x41\x96\x5b\x02\x90\xba\xb0\x17\x5c\x9a\x82\x5a\xd0\x94\x3e\xd9\x33\x33\xad\xc5\x45\xd6\xd7\x44\x74\xc5\x38\x35\x9c\x77\x8d\x5e\x0a\x92\xd1\x28\xcc\x73\x6b\xd1\x81\x17\xce\xd9\x32\x46\x83\x67\xff\x17\x7a\x64\xba\x91\x78\xce\xf6\xfb\xa1\xdd\xa0\xaa\x5d\x7e\xd8\x46\x46\x03\x7b\x48\x6b\x1e\x68\x8e\x22\x21\x2f\xf2\x6d\x28\x3b\xf8\xb7\x06\x94\x08\xa3\xcd\xf1\x66\x47\x01\xf7\xde\x54\x7f\x97\x91\x8a\xae\x7b\x0b\x5d\xdb\xd8\x5c\xa3\x6c\x28\x0d\x56\x0e\x31\x37\x7f\x08\xdf\xab\xb6\x20\x9d\x12\x4d\x98\x8d\x4d\x4e\x60\x4f\x8f\x93\xfc\x73\x1c\x2c\xbe\x51\x25\x9a\xa5\xb4\x74\xaa\x8a\xde\x5a\xd3\x5e\xd7\x05\x20\xfb\x36\x37\xc0\x91\x96\x2b\xe1\x52\x26\x9f\x3e\xd5\x8e\xdc\x9e\xbd\x7b\x5c\x5c\xdb\x52\xf4\x71\x18\x5e\x91\x01\x3f\x8f\xf2\x18\x0f\xc3\x28\xc9\x92\xf1\x90\x31\x6c\x3c\x1b\xa8\x68\xe8\x8f\xaa\x88\x71\x64\x06\x61\x40\xb3\xd7\xe8\x39\x1c\xa3\x99\x12\xf4\xba\x01\xd5\xe3\xeb\x89\x9f\x70\x3a\xe6\x79\x69\x6c\x9c\xd9\xed\x7a\x90\x04\xcf\x1f\xfd\xcc\x23\x13\xef\x43\xfe\xa9\x92\x12\x87\xb1\xa0\x1d\xff\xe2\xcf\x74\x95\x68\x27\x0a\x0c\xf4\x82\x7f\x77\x17\xcc\xa5\x98\x97\x06\x72\x12\x8e\xb4\xf2\xd0\x44\x30\x45\x6e\x60\xdc\xcd\xea\xa3\x4a\x2f\x8c\x46\x3b\xfc\x43\x2b\x62\x64\xc5\x9c\x42\x74\x74\x3a\xd1\x40\x28\x1a\x46\x46\x46\x96\x18\xaa\xae\xe1\xcd\x87\x55\x7a\x9c\x0f\x69\xeb\xa4\x04\xf2\x73\x8d\xa0\xf2\x97\x20\x31\xe4\x8c\xd1\xe9\x54\xf8\x9a\xff\x87\x13\x4d\xc6\xfa\x01\xfd\x0a\xe4\x29\xd7\xe8\xeb\x09\x94\x5a\xd6\xfe\x99\x95\xa1\xc9\x67\x94\xfc\xfc\x25\x0a\xc4\x81\x57\x39\x47\xa1\x12\xf2\x9f\xef\x69\x8e\x7b\x9b\x9b\x30\xe2\x9d\x2d\xda\xfd\xda\x7d\xd4\x29\xca\x48\x96\x72\x34\x92\x2d\x2b\x1d\x45\x3a\x0e\xd2\x6b\x14\x23\x6f\x0e\x85\xc9\x48\x58\x04\x9d\x0e\x6f\xf9\x83\x45\x3f\xb2\x1e\x5f\xb7\x4d\x91\x27\x23\x8f\x96\xe6\x7a\x00\x0c\xa6\x14\x07\x1c\x08\xa4\xf4\x3c\xdc\x52\x86\xb3\xc6\xd4\x20\x05\x44\x3b\x7f\xa6\xeb\x00\xe8\x47\x77\xa1\x1f\x01\x14\xdc\xf9\x46\x2e\x2d\xa7\xdd\xa4\xa9\x11\x58\x5f\x45\x66\x89\xd4\xd4\xda\xb2\x41\x75\xde\xa1\x99\x9d\x52\xff\xcc\x54\xb1\x01\x3f\xd4\xf5\xfd\xd0\xa5\x24\x1d\x81\x1e\xfe\x59\xb6\x89\xc8\xc4\xf9\x9a\xbe\xba\x68\x71\xfa\xce\xd4\x09\x3d\x69\x5d\x8c\x7a\x89\x52\x81\xbc\xa4\xb8\xa2\x3e\xd2\xcc\x3f\x47\x9a\xa6\x5a\xcd\x72\x68\x5c\xb8\xd2\xa4\x79\xe5\xb1\xfd\x7d\x02\x7c\x73\x0b\xc1\x49\xe3\xfb\x79\xd5\x93\x70\x67\xf8\xb0\x37\xb1\x48\x7c\xa3\xb0\x06\xab\x04\xe8\x52\xa2\x8d\x17\x95\xa6\x13\x22\x44\x1c\xf5\x1f\x75\xb4\x04\x70\x90\x8c\x2c\x47\x21\x30\x83\xe0\x58\xe7\xeb\xce\x2e\xd7\xc0\x7d\xb5\x08\x53\xeb\x4a\x61\x48\x46\x3e\xa5\x5f\xc4\xd7\xaa\x85\x50\xc4\xe8\x2b\xb9\xca\xfc\x19\xcd\xa5\x7c\x46\x91\x1a\xf7\x4d\x6e\x1e\xd6\xcc\x7f\xc7\x3a\xaa\x6c\xf9\x1e\xf6\x3a\x02\xf0\x0b\x08\xc0\x65\xf6\x8f\x36\x22\xde\xf0\x3a\xc2\xda\x0a\x11\xb0\x68\x44\x7a\x2b\x74\x05\x61\xb9\x93\xc7\x70\xd4\xf8\x27\xdd\x1e\x2f\xe2\x22\x93\x1e\x35\x8b\x61\x29\x54\xc2\xa6\xae\xc2\x35\x1f\x55\xa2\x65\x59\x9e\x44\x51\x55\x19\x84\x9e\xa5\x48\x83\x3c\xb1\x51\xf0\xfd\xd9\xf6\x2f\x62\xe3\x2b\x3d\xdd\x79\xc7\xed\xef\xb9\x41\x23\x3b\xb0\xfd\x8a\x84\xc6\x96\xae\x6f\xd6\x6d\x99\x7a\x1d\xfa\x91\xcd\xb7\x6a\x6c\x09\xad\x01\x02\xa0\x4d\x00\xfc\x33\x6a\xa5\xe3\x87\x65\x2e\x61\x0d\x1d\x34\x65\x61\x81\x33\xbc\x7b\x8d\x4c\x4f\x49\x9c\x83\xd1\x5e\x70\x5a\xe5\xe7\xf1\xb5\x7a\xa2\xc3\x22\xce\x19\x2a\xa6\x39\xd8\x11\x66\xdd\x54\x23\x21\xc7\x2b\x44\xed\x14\x7b\x4b\x2a\xeb\x8d\xba\x1d\x8d\xa3\x64\xd5\xda\x47\x14\xb6\x0e\x85\x7d\x01\xcb\x97\xd6\x96\xf5\x4f\x3a\x0a\x73\x07\x3e\x3f\x74\xe8\x31\xaa\x87\xd2\xc8\x9a\x06\xa7\x33\xf6\xcd\x45\x98\x7b\x95\x94\x8a\xaf\xde\x30\xc1\x2c\xdf\x54\x38\xa0\x23\xd3\x57\xb5\xce\xb3\x5a\x06\xee\xac\xd6\x9a\x34\x81\xdd\xd2\x72\xe3\xb9\x97\x15\x07\x0e\x97\xa4\xdc\x28\x93\x02\xcf\xf9\x36\xc4\x65\xb7\x27\xb2\xa2\x57\x9a\x61\x8b\x52\x13\x52\xd6\xbf\x99\x54\xd4\x60\x67\xbc\xe6\xdd\x55\x17\x06\x8e\xcb\x70\x3a\x63\x73\x24\x82\xf1\xf4\x6d\xf9\xc6\x39\x92\xb4\xf0\x76\x19\x5e\xf4\x4d\xbc\x3f\xdf\xd4\x10\x21\x7b\xe7\x08\xfb\xc5\x3e\xc4\xe9\x83\x3c\xe7\x67\xf3\x7d\x8f\x3e\xb2\x66\x50\xd8\xd9\x4a\x5b\xda\x77\x97\x2e\x75\x3c\xed\xeb\x3d\xfc\x0e\x6c\xc8\x3b\x8e\x3b\x2c\x48\xcd\xb2\x6d\x69\xfd\x14\xa5\x58\x7e\xa1\x52\x99\x88\x82\x04\x41\x1b\x0a\x83\xa7\x74\x95\xb0\x8e\x67\xa7\x70\x9f\xa6\x73\x67\x54\xb7\xf7\xaa\xaa\xb6\x60\x1f\x0b\x15\xb2\xb7\xa1\xd9\x30\x59\xb6\x08\x6f\x85\x7e\x08\x4c\x7b\x7c\xad\x6c\x34\x98\xff\x94\x4f\x5a\x53\x3e\x69\xad\x91\xa4\x94\x45\x8e\x28\x6a\x00\xac\xe4\x13\x25\x1e\xf7\x49\xad\x44\x3a\xbf\xbf\x0c\xf9\x8d\xa7\x3b\x43\x98\x8a\x49\x16\xbe\x56\x96\x3a\x4e\x46\x45\x6a\x66\x55\x68\x7e\x6c\xa2\x27\x74\x4e\x00\x97\xcb\xff\xd4\x51\x10\x93\x13\x93\x87\x3d\x5a\x7e\x8b\x1f\xa0\x60\xdd\x72\xc7\xb0\xf9\xfc\xbc\x9b\x52\xf0\x79\xe0\x1d\xb8\x34\xc4\xa7\x9f\xaa\x8e\xe0\x98\x76\x1f\x31\x3b\x48\x04\x46\x65\x1b\xec\x83\xe3\x3a\x34\x9b\xa8\xc1\xd0\x3b\xf8\x50\x89\x84\x55\xe3\xa2\x18\x8d\x6c\x9a\xcd\x7a\x38\x0c\x4f\xb8\x3a\x8d\x4f\x57\xc3\x3c\x33\xd1\x24\xb6\x0d\xfb\xa3\x1d\x85\xcb\xae\xa9\x23\x22\xed\x2d\xc7\x76\x77\xd8\xd5\x43\xcc\x88\x26\x59\xf0\xd0\xb8\x25\x80\xc3\x26\xfd\x81\xba\x7d\x25\xe0\x02\x46\x2b\x11\x00\x3d\xd4\x55\xec\x5b\xb3\x54\x48\x13\x16\xc5\x8d\x11\xf9\xfe\x17\xda\xa9\x0d\x92\x18\x35\x92\x96\x6f\xed\x54\x81\xad\xfe\x18\xc6\x45\x4a\x3c\xa6\x95\x7a\xf7\x73\xbe\xc6\xdd\x54\x77\x37\xfd\xe5\x30\x13\x88\xb1\xd2\x09\xf7\x34\xbd\x8d\x47\x6a\x89\x62\x5e\xfa\x3b\xa7\xd2\x53\xbe\x83\xa8\xf1\x3c\xae\x66\xb9\x53\x6b\x2a\x5f\xff\x94\xfa\xfa\xa7\x1c\x0e\x73\x24\xe4\x58\x30\xe8\x20\x64\xe4\x6b\xcd\x8a\x62\xc7\x2d\x45\xf2\x7f\x92\x0b\x3a\x7c\xd7\x24\xb7\x9a\xf5\xc3\x96\x76\x1a\xf4\x6a\xbe\xa9\xd5\xe1\xdc\x70\xda\x8c\x12\x08\x38\x47\x85\x7a\xd7\x44\xda\xf7\x5b\xcf\x0b\x6f\x6f\xcd\xde\x2c\x2e\xb6\xd3\xa4\xd7\xb3\xd2\x43\x86\x0f\x62\xf5\x5c\xbe\x71\x56\xff\x95\x22\xcb\x49\x00\x1f\xa1\x09\xb6\xf9\x6d\x85\x44\x62\xf8\x1c\x02\xbc\xb3\x6a\x90\x61\x14\xf6\x57\x6c\x96\x6f\xf1\x47\xef\x16\x4a\x53\x4e\x2f\xad\x7c\x43\xb4\xec\xef\x2a\xb1\xf8\xab\x13\x75\x8a\xaf\x34\xb5\x46\x07\x36\x19\xd9\x3c\xe5\xe1\x22\x47\x83\xe3\x53\xdd\x9a\x39\x7b\xb1\x0c\x8b\xb3\xac\x18\x09\x0a\x14\x0d\x91\x5b\x6a\xca\xe7\x84\xd6\x25\x58\x53\xfc\x94\x45\xec\x46\x4c\xbc\x22\x36\x0b\x96\xf1\x8d\x02\xb3\xf5\x4c\x16\x06\xe8\x16\xf2\xfc\x3b\xa2\x4a\x54\x82\x3f\xd4\x81\xe0\xf5\x8e\xaa\xc0\xe8\x31\x94\xb5\xa6\x1f\x6d\xfa\xa3\x30\xcf\xeb\x04\xa5\x0e\x45\x78\xa6\x02\x06\x0f\x92\x94\x7b\xf2\x08\x1e\xee\xa9\x22\xd6\xba\x36\xa6\x8f\x4e\x9f\xd0\x9d\xb4\xac\x88\x72\x52\x12\x55\x24\xe6\x7e\x98\xe6\x2f\x74\xa5\x07\x56\x15\x16\xf6\xbe\x0b\xd7\xfd\x4c\x00\xbb\x65\x9c\x51\x96\x76\xe5\x1b\x35\x21\x17\x24\xa3\x51\x11\x87\xf9\x2a\x71\x66\x08\x49\x04\xfd\x46\xd4\xa0\x60\xe8\xf0\x0f\x57\xd5\x74\xc2\x17\xa6\x1e\xed\xfb\xab\x3f\x57\x61\x5c\x0c\x0a\x3b\xe3\xd1\x64\x98\x2c\x80\xf7\x3c\xaf\xa9\x7e\x3f\xac\x61\x83\x4a\x53\xbb\x64\xad\x54\x8c\x5c\xd7\xdd\x61\x06\x8f\xd5\xb6\xd6\x57\xda\xa9\x1d\x99\xd0\xe3\xe8\x75\x9a\x27\xe9\x5f\x03\x68\x3d\x48\x8a\x98\xf1\x67\x4d\x93\xb6\x0d\x33\xcb\x71\x78\x48\x0a\xdd\x0e\x8c\xec\xb8\x8a\xb4\x44\xfb\xd0\x9a\x34\x47\x55\xd2\x01\xc6\x5d\x3f\xe5\xa2\x02\xf8\x1f\xa3\x8e\x03\x5f\x6b\xd9\x9b\x7b\x35\x37\x51\xae\x4c\xdf\x9a\x68\x46\x69\x9a\xa3\xf1\x0c\x17\xc6\xb5\x4e\x09\x8d\xd4\x9e\x4a\xc3\x3c\x0c\xc0\x01\xaa\x69\xe2\xca\x6f\x24\x8a\x5f\x6a\x37\x0c\xd3\x30\xcb\x47\x06\xd0\x75\x21\x5b\xd7\xcc\xeb\xae\x2d\x3f\x34\x21\x93\xa5\xea\x61\x7c\x91\x09\x7c\x52\xb3\xe2\xdb\xd4\x66\xe5\xae\xde\xaa\x6b\x14\x50\xb1\x81\xdd\xe2\x71\x4b\xa1\x2c\x50\xa8\xd2\x73\x4a\xbf\x87\xe7\xb7\x44\xee\xe1\x73\xd5\x04\x75\xd6\x4f\x80\xbe\xdf\x51\xc4\xe9\x68\x3b\x22\xfe\xd9\x3e\x55\xa3\x84\xef\x56\xb0\x0b\xab\x36\xdd\x81\x6e\x16\x5c\xe1\x4d\x18\x4b\x81\x86\x92\xdd\x40\x5d\xec\x06\x25\x1e\x22\x2b\xe6\x51\x47\xf7\x14\x2d\x08\x48\xf5\x71\x7d\x16\xc0\x58\xa4\x64\x7f\x05\x3c\x17\x7f\xc6\xc4\xd7\x3a\x41\x0f\x08\x5b\xc8\x2b\x0e\xd8\xe4\x8c\x2a\x6d\xe4\xa9\xe9\xdb\xfe\xd6\xf2\x33\x11\x05\xfe\xa4\xa3\xfa\x5c\x9c\x00\xf0\x8d\x86\xe3\xae\xa9\x69\x66\xc0\x71\x59\xb5\xad\x56\xa2\x11\xe7\x66\xc6\x26\xcd\x69\x62\x8d\x63\x3b\xda\x30\x32\x6e\x50\x91\x47\xda\xb8\x55\xbf\xd2\x5e\xb1\xfd\x81\xb8\x7e\x04\x7a\xcc\x6e\xc0\x37\xbe\x94\x59\xc4\x31\xce\x20\xf2\x71\x4c\x02\xf0\x75\x2d\x16\x29\xbd\x08\x84\x7c\xd9\x3e\x08\x6d\x95\x02\x63\x9c\x73\xef\x3d\x32\x79\x30\x9c\x51\x4a\x5a\x6f\x77\x3c\x82\xe2\x78\x35\xef\xde\xa5\xe0\x2e\x71\x6e\xe3\x80\x67\xb4\xb1\xd5\x36\x4f\x7d\xa5\xf2\x73\x5d\x1f\x36\x6a\xd9\xab\x32\x88\x79\xdc\xe3\x3d\x38\x14\x46\xd8\x76\x58\x0b\xa6\x9c\xc4\x06\x50\xc5\x9e\x3d\x8c\x6d\xfb\x97\xa8\x65\x00\xce\x76\x07\x5a\x2a\xa8\xf5\x9d\x85\x0f\x43\x40\xf2\xe8\xd4\x5b\x9d\x47\xb4\xdc\xcb\xb6\x69\xeb\x6b\xbf\xe9\x3b\x2f\x4e\x58\xe0\xa4\xc2\x13\x5c\xa4\x19\x7e\xe9\xa0\x97\x8f\x14\x9f\x70\x94\xf6\x34\xac\xc7\xe6\x6e\x13\x3b\x01\x05\x81\x14\xda\xd2\x47\x4a\x71\xc7\xb7\x90\xea\xb4\x70\x65\x60\x55\x04\x81\xcd\x96\x0a\x00\x78\x65\x0c\xd3\x8f\xcf\x9c\x54\xdd\xc7\xdc\xf4\x32\x85\xd0\x3a\x4f\x5f\x8f\xaf\x55\xcd\x0c\xc8\xc1\xd5\x87\x74\x33\x90\xd6\x4a\x1a\x73\xf4\xfd\x04\x2e\x58\x2e\x03\x42\xef\x53\x78\x24\xfc\x0f\xf4\xe6\xfc\x0f\xb0\xbc\xe8\xa3\x9d\xa3\x85\x90\x2e\x91\x92\x3f\x38\xa7\x92\xb9\x65\x13\x85\xac\x17\xae\xaa\x3e\x5e\x91\xb3\xa5\xc4\x61\x15\x64\xfa\x63\xd5\xa8\x1c\x26\x2b\x5c\x37\x62\xc6\xdd\x8e\x8a\x4c\xea\x2d\x29\xe0\xaf\xc3\x11\x71\x97\x7a\x60\xcd\xd9\xaa\x28\xcd\x81\x39\xa7\x41\x55\x4f\x28\x9f\xad\xa8\x5e\x20\xf7\xff\x1d\x25\x53\xf1\x3b\x2a\x37\x1c\x85\x83\x61\x6e\x5a\x9e\x75\xe5\x04\x2c\x2a\xdf\x34\x60\x7a\x17\x3d\x82\x99\x4d\xe3\x59\x1d\xed\x9f\xed\x78\x01\x10\x12\x26\xa3\x3f\xc4\xd0\xd5\x09\x32\x4e\x7c\x5d\x0b\xbd\xbe\x02\x9a\xe1\x30\x71\xd2\xd3\xb0\xde\x27\x94\xed\xac\x74\xfb\x6f\xd7\x8b\x6e\xed\xe7\x16\x79\x78\x55\xa6\x0d\x94\xe8\xf1\x31\x1a\x77\x90\xf5\xa0\xf3\xe8\xa0\xab\xbb\xe7\xfd\x98\x8c\x17\xff\xbb\x86\xe3\xc8\x2c\xa4\xaa\x72\x71\x43\x35\x64\x0f\x75\x94\xf8\x12\xef\x0f\x01\x92\x78\x97\x36\xdb\x75\x44\xcf\x49\xdc\x4f\x62\x14\x38\x50\x1f\x7a\x53\xd5\x8a\xea\x2a\x43\xf3\xfb\xdb\x45\x06\xa7\xe7\xa6\x27\xcb\x47\x84\xd2\x43\x8b\x9c\x9e\x6c\x3b\x1f\xa6\x5f\xa8\x3d\xba\xf2\x90\xae\xa6\xa1\x89\x29\x62\x13\x32\x34\xd5\x50\x42\xb2\x21\x79\x42\xc3\x14\x63\x56\x90\x06\x4b\xcb\x67\xee\x50\x68\x14\x95\xef\xa6\x94\x52\xc3\xfa\xe1\xe6\xfe\x48\xfb\xbc\x3f\xaa\x8d\xe6\x96\xf1\x8f\x8d\x83\xa4\xa0\x1d\x4c\xbf\xd4\x81\x9a\xcb\x67\x2f\x24\x91\x3e\x0a\x33\x36\x8f\x31\x3f\x8d\x36\x0b\x04\xbd\xf8\x5a\xb7\xa5\x42\xc8\xb6\x23\x4e\xff\x09\x59\x0c\xbe\xee\x78\xbf\x10\xdb\x64\x3c\x5c\xe5\xa0\xfa\x59\x0e\x27\x2e\x2b\xb2\xc6\xcb\x0a\xe9\x60\x4d\x16\x46\xab\x33\x7e\x72\xa7\x82\x5c\x3a\x42\xae\x14\x33\x86\xf5\xb9\x97\xc5\xc5\xf6\xc8\xe6\x26\xca\xd4\x3c\xf7\x07\x13\x85\xae\xff\xa0\xe3\x6d\x61\x91\x87\x11\x85\xee\xae\x3c\x85\x9c\x98\x4b\x23\x58\x52\xe0\x88\x31\x7e\x8d\x42\xc8\x0f\x27\x8a\xe4\xfe\x5a\xa5\xac\x39\x5e\x61\x11\x3c\x11\x04\xa3\xbf\xe4\x1b\x45\x9f\x1b\x99\x43\x2d\x82\xc8\x70\x36\x59\x4d\x2d\xbd\xb2\x71\x94\x24\xe3\x61\x12\x59\x46\x40\x2b\x80\xb2\xa3\x09\xa9\xf1\x9f\xee\x9d\x6b\x07\x49\x96\x2b\x25\xe0\x35\x0d\x71\x5a\xdb\xa0\xb7\x39\x42\x67\x8a\xf1\x1a\x74\x68\x34\x76\x03\xad\xd4\x2b\xb0\xaf\x7c\xd3\x58\xe5\xee\x85\x7d\xce\xc8\x19\xc2\xa8\x46\x07\x2f\x28\x07\x64\xc6\x63\x6b\x22\x61\x46\xe4\x88\x53\xe5\x62\x33\x5d\x35\x44\xba\x69\x5a\xe1\x12\x1c\x69\xe9\xff\xb3\xf4\xac\x44\x90\x51\xaa\xb0\xbd\xd4\xc4\xc1\x90\x0e\x36\x1e\xe3\x1f\x72\x59\x0e\x4e\x09\x61\x36\x2a\xf7\xdb\xba\x1e\xf4\x71\xdf\x05\x3e\x4b\xa1\x8d\xc0\xa3\x8e\x34\x01\x0d\x5e\x26\x7c\x9b\x28\xf9\x2f\x4d\xd5\xbc\x52\xa6\x09\x9c\x77\x3a\xd5\x6b\x37\xc2\xf5\x46\xc7\x8f\x6a\xbd\x31\xf1\x05\xde\xb7\x55\x43\x29\x18\x9a\x74\x60\xfb\xcc\x07\x03\xdb\x71\x55\x89\x7f\x62\xf4\xab\xa2\x7b\x22\x27\xdf\x1f\xda\xd8\x2c\x73\xf7\x48\xd3\x4c\x4b\x71\x6f\xe3\x46\x59\x5c\x6c\x0f\x93\x31\x79\xc4\x97\xd6\x4f\xe3\x8c\x21\x24\xb8\xab\x58\xe0\x2f\xa8\xf0\x6e\x68\xd2\x65\x9b\x51\x2d\x41\x51\xf0\xb4\x14\x21\x8e\xff\x41\x51\x62\x96\x6c\x8a\x79\x3f\x74\x34\xdf\xac\x08\x52\xb7\x1c\xcf\xc1\xa9\xea\x11\x4a\xe2\x59\xcd\xb4\x89\x69\x6c\x8c\x24\xbf\xae\x20\x78\x47\x35\x97\xd1\x1d\xf5\xc1\x43\x4b\xaa\x8f\x54\xe7\x87\x25\xba\xa1\x92\xc6\xef\x4f\xd4\x14\xc7\xed\x06\x2d\xc3\xf9\x76\x96\x9b\xd1\xb8\xe5\x19\xf3\x8f\x23\x40\xe2\x1b\xd5\x63\x19\x99\xd8\x16\xcb\x8c\xb6\x69\x9a\xb1\xdb\xe8\x8d\x25\x3d\x88\x4d\x9e\x20\x15\x16\xf1\x2a\x8f\xfa\xd1\xe4\xd6\x41\x11\x8d\x0d\xbd\x3b\x9a\xb6\x6c\x92\xf8\x46\x91\x8e\x85\x71\x96\x1b\xee\x30\xe2\xe4\xcc\xd2\xe6\xe6\xeb\xa9\xc0\xc7\x57\x12\x1a\x81\x97\x0e\xd3\x9b\x64\xd5\xa4\x36\xe0\x43\x73\x1e\x8c\x03\x80\x65\x87\x86\x3b\x6c\x21\x46\x06\xa1\x59\xf3\x19\xc1\x0d\xc5\x7f\xff\xf9\x9f\xef\xfa\x52\x13\x77\xf4\x90\x30\x3d\x50\xf3\x7c\x41\x12\x67\x61\xdf\xa6\xb3\xde\x4e\x7d\x7f\xa2\x4a\x10\xff\x3b\xbd\x3b\x02\xb2\x87\xbb\x7e\x7d\xb6\x4f\x37\xae\xea\xfe\x17\x48\x53\x2b\x26\x81\x9d\xf2\xdd\x84\x4f\x50\xe9\xa9\x9d\x56\x43\xe3\x4b\x61\x19\x28\xcc\xef\x77\x06\xb1\xfc\xb6\x62\x29\x3d\x30\xbb\x5f\x8c\x41\x77\x4f\x7f\x0b\x40\xde\x51\xfa\x5b\xbe\xae\xc3\x5e\x5e\xd8\xd7\x4e\xd2\x70\x10\x8a\x26\x38\x43\xb3\x27\x0a\xfa\xfc\xb1\x9a\x02\x0b\x4d\x0e\x9d\x0c\xec\xee\x16\x01\x35\x15\x28\x65\x9f\x53\xc9\x9b\xa9\xe8\x36\xb9\xa2\xd9\x77\x55\xed\x61\x6c\xd3\xbc\xc8\xb2\x10\x9e\x8f\x53\x2c\x8d\x41\xbe\xdd\x10\x77\xb6\xa3\xe2\x50\xc1\x33\x9d\x08\xd5\xd0\xf2\xe3\xeb\x5a\xbc\xb2\x7b\x77\x3b\x0a\x7b\x96\x24\x47\x2b\x92\x30\xae\x19\x73\x51\xc1\x77\x29\xdf\x06\x35\xa7\x70\x6c\xb5\x76\xef\xae\x56\x50\x91\xd6\x41\xb7\x05\xed\xf7\xcb\x1d\x0f\x04\xfb\x6e\xc7\x0f\x07\x5c\xc4\xf3\x14\xa2\x83\x86\xaf\x36\xb2\xf9\x30\x11\x2f\xc4\xbd\x6f\x35\x83\x75\xa1\x66\x01\x9f\x7e\xba\xbd\xf2\x4c\xf8\x0c\x55\x46\x65\x4c\xa6\x32\x3f\xd3\x20\xb3\x91\x86\x01\xab\x9f\x0b\x5d\x88\xef\x64\x1c\x6f\x92\x83\x31\x24\x25\x87\x8c\x58\x98\x61\xd4\xe2\x81\x59\x11\x79\xef\x35\x95\xe2\xac\x98\x28\x7a\x94\xce\x0e\x22\xc1\x8f\x1a\x80\x95\xe8\xaf\xfd\x3e\xce\x1e\xec\xd3\x1b\x48\x35\x60\x16\x79\x7e\x8d\x01\x02\x14\x38\x61\xe3\xdc\xed\xf8\x81\xca\x63\x08\x52\xe0\x2d\x67\xba\x0a\x8c\x38\x2d\x7f\xda\x3a\xf3\xa1\xc0\x62\xae\x01\xf2\xab\xb8\xd4\xf1\xa4\x93\xbe\x59\xdd\x5a\x19\x97\x6e\x39\x49\xde\x93\x7a\x2f\xdf\xd3\xe4\x3a\x37\xe8\x2b\xa1\x53\x73\xc5\x77\x09\x2f\x7d\xa1\xdb\x40\x7b\xbb\x62\xed\xc1\x68\x75\x86\xc8\xc9\x01\xdd\xc7\x08\x22\x5c\x16\x00\x0b\x48\x62\x6f\xaa\x70\x23\xb2\x4e\x8c\x47\x7a\x7f\x5b\xa6\xbe\x9c\xc3\x94\xdf\x18\xa3\xbc\xdc\xf1\xcb\xdf\xb7\xaf\x18\xdd\xd0\x44\xc9\x0f\xf5\xa0\xfb\x94\xe5\x72\x79\xaa\x61\x5e\x68\x1f\x41\xea\x83\x34\xec\x49\xd2\xe5\x98\x7d\x5d\x74\xb5\xa6\xfb\x04\x47\x15\x62\x37\x4f\x4d\x9c\x45\x45\x40\x80\x91\xf9\xfd\x5e\x84\xee\x45\x7f\xe3\x9a\x3f\x99\x4d\xc3\xa4\xc8\xa2\x55\xb2\xa2\xd2\x36\xa6\xaf\x2d\x04\x4e\xf4\xf9\xce\xe9\xee\x15\xa7\xb6\xad\xfb\x64\xa5\x88\x1d\xd2\xb4\x16\xc7\xe7\x7a\xc8\x9f\xaf\x5d\x8f\x2e\x1c\x81\xa9\x7e\xd6\xbb\x0b\x90\xcd\xc8\xe0\x5f\xf9\x19\xd2\xd5\xa1\x0f\x47\xda\x7b\xd3\xf5\xa1\x96\x4a\xbb\xf7\xff\xdd\xd4\x55\x2c\xa5\x37\xa2\xd6\x46\x8f\xe0\x64\x08\xab\x65\xf9\x05\xf0\x40\xc1\xaf\x03\x44\xcb\xe6\xae\x92\x39\x00\xf5\x99\x9b\x88\x2e\x4f\x8c\xd3\xdd\x5c\x54\x62\x7a\xe5\xaa\xe2\x6d\x31\x5f\x8d\xa4\xf5\xa1\xa9\x42\x7d\xf1\xd7\x97\x15\x56\x92\x39\xfd\x65\x13\x07\x16\x2c\x5c\x38\x30\x77\x68\x45\xe1\x3e\x66\xa6\x5e\x84\xf2\x6c\x8d\x92\xb7\xb4\x66\xe1\x21\x32\xe5\x82\xb8\x28\xbf\x8b\x60\x37\x76\x2a\x08\x4d\x9a\xc4\x83\x68\xf5\xa1\xf2\x9f\x9d\xd0\x7b\xf9\x4b\xa5\xb2\x5d\x7e\x3c\xbe\xdd\xe6\xa9\x17\x15\xfe\x2e\x46\x04\x90\x7d\xdd\x56\x28\xa7\x7b\x9a\xf2\xfd\x07\x1d\xcd\xc1\x42\x3f\x54\x48\x89\x7c\x92\x42\x22\x61\xe5\xee\x99\x75\x50\xb6\xde\xf1\x89\xa2\xd7\xa4\x29\x48\x37\xb1\xd5\x72\xa2\x60\xc7\x15\xd1\x97\x9f\xb0\x83\x19\x61\xa6\x63\x3c\x1b\x36\x6d\xf4\x52\xf4\x04\x5a\x5d\x4f\xc2\x81\x08\x14\x3b\x83\xe3\x10\xe1\x49\x76\xd8\x0c\x1b\xdb\x15\x6e\x9e\x61\x91\xae\x75\x54\xf7\x10\xa4\x00\x00\xe7\xbd\x51\x73\x93\xbb\x77\xb7\xf3\x24\xb2\xfd\x44\x55\x5d\x8e\xc0\x8c\xf1\x4d\xe7\xf3\xae\x22\x3b\xb6\x69\x18\xe7\x36\xee\xcb\xa4\x01\xf6\xf5\x8f\xe8\x13\xf8\xba\xa3\x8f\x5e\x1c\x27\x39\x03\xde\x1c\x07\x31\x50\x67\x7c\xad\xe2\xef\x41\x92\xf6\x4c\x30\xb4\xcb\x0f\xd1\x31\x85\xfd\xc6\x40\x2c\xc2\x30\x26\x32\x15\x55\x16\x95\x26\x9c\xa0\x67\x20\xc5\x6d\x5f\x6a\x3d\x4e\x44\x6e\xa8\x81\x9c\xa4\xa3\x23\x3a\xea\xb4\x3e\x58\xac\xa3\x9a\x5b\xc1\xc4\x5b\xe9\xa1\xe0\xc7\x7c\xa0\x9a\xff\x47\x75\xe1\xe3\x32\xfb\x2b\x01\x47\xf8\x7a\xd3\xc3\x6a\x3c\x79\xcb\x74\xe3\xfc\x5d\x99\x95\xac\x8e\x93\x7c\x68\x33\x91\x5e\x5b\xf4\xe0\x98\x85\x05\x67\xe5\x1a\x8a\x7c\xa3\x30\xcb\xc2\x48\x60\x79\xae\x10\xea\x46\x55\xcf\x6b\x0e\xc0\xd4\xcc\x2a\x16\x31\x80\x54\xf8\x5a\xcd\x13\x9c\xd1\xac\x3c\x67\x20\x55\x88\x44\x33\xcc\x46\x26\x0d\x0e\x86\x26\x9e\xa1\x5a\x15\xba\xd7\x6b\xea\x7d\xd0\xa0\x80\x95\x69\x75\xbd\x4f\x0a\x22\x93\x86\x4b\xab\xa0\xcf\xc1\x0a\x5f\xea\x28\x7d\x72\x70\x7d\xc3\x97\x1d\x83\xe1\xe7\x9b\x6a\xa6\x64\xfb\xbb\xa8\x12\x87\x30\x60\x2b\x59\xa5\xf5\x5b\x64\x28\xe8\x2c\x9b\x9f\xa1\x40\x5c\x9a\x4a\x5e\x1a\xfd\x6d\x2a\xda\x31\x29\x3a\x38\x5f\xd4\x44\xe0\xb3\x4e\x1a\x97\x7e\x17\xbf\x7b\x57\xd9\xdf\xb3\x95\x98\x87\x56\x11\x79\xf8\x07\x30\x1e\xf8\xf9\x77\x27\x4a\xe5\xef\x1c\x0a\xf7\xcc\x57\xd0\xf1\x35\x9c\x77\x78\xe4\x4e\x98\x0c\xca\x25\x43\xa5\x6f\x66\xea\xe1\x28\x81\x4d\xad\x54\x75\x84\xb9\x59\x59\xea\xb5\x8e\x16\x50\x88\x07\x91\xdd\xe6\x1d\xe2\x5f\xd1\xd0\x93\xb8\xeb\x96\x52\xc7\xa7\x35\x87\x41\xb9\x3f\x51\x65\x10\xc8\xbf\x22\x2e\x41\x49\x0b\xfb\xe7\x4d\x55\xd2\x1a\xa7\xe1\xb2\xc9\x6d\xb4\xda\xa2\xf5\x43\x72\x72\x49\x25\x72\x97\x26\x0f\x09\x44\xe3\x20\x95\x98\xf0\xbf\x3f\xa9\x20\x07\x26\xde\x3a\x3f\xd6\x55\xb3\x4c\x3b\x88\x46\x12\xd6\xe9\x9e\x33\x63\x43\x13\x09\x82\x4d\xc5\xc4\xe2\xd4\x8e\xe1\x9d\x45\xc4\xac\x4e\x93\xb1\xaf\xbd\x62\x33\x58\x25\xce\xad\x95\xdd\x3f\xab\x35\x28\x86\x21\x69\xbd\x1d\x98\xe3\x64\xfb\x93\x89\x9a\x20\xfe\xa4\x96\x35\x97\x89\x4f\x9c\x08\x70\x07\x6b\xf8\xa1\x0a\x76\x3e\xac\x1d\x56\x97\x09\xe7\xb9\x7a\xcd\x29\x3d\xe5\x72\xaa\xe3\x86\x9e\x2d\xc3\xa7\x65\xda\x46\x49\xa3\x9e\xf6\xb4\x2d\x9f\x22\x0e\x81\x7b\xd5\x2a\xd4\x3d\x5b\x1a\x2d\x3f\xf7\x7a\xaa\xe2\xb2\xb5\xda\x9b\x18\x2d\x60\x58\x41\xa3\x2a\x80\x9b\xf2\xbd\x71\xc6\xb7\x4d\xfd\x52\x0d\x4d\x2f\x64\xa6\x4d\x17\x34\xb8\x35\xfd\xbf\x27\x0a\x4a\x71\xb1\x56\x36\xdb\xb3\x77\x4f\x7b\x68\x40\x58\xe0\x31\x58\xe5\xaa\xc3\x06\x33\xeb\x2f\xcb\xfc\xaa\x01\x8e\x60\x98\x8c\x5b\xbe\xee\x8e\x0c\x56\xc0\x89\x0d\xc4\x53\x3d\x3b\x08\xe3\x56\x55\x38\xd4\x0d\x5a\x5f\xd4\x94\xfe\x26\x1d\x30\x33\x09\xc2\xae\xfb\x00\xe3\x48\xa7\xaf\xfc\x1c\xb9\xf6\xa6\x34\x8a\xb8\x9a\x21\x5a\x80\x2d\x25\x12\xd8\x80\x9e\x1f\x86\x71\xbf\x74\x93\x0c\x39\x40\x0a\x08\x7e\x5d\xbe\x76\xb1\xe2\x38\x1c\x5b\x9d\xcf\x9d\x55\xd5\xa6\xb3\x0d\x70\xab\x7d\xed\x91\xb5\x1e\x67\x82\x0d\x03\x79\x0c\xbe\x56\x3a\xf6\xa9\x09\x0e\xda\xdc\xe2\xab\x54\xf0\xce\x7e\xfa\xe8\x4a\xed\x43\x0e\xcc\xbd\xd4\xfe\xd2\xd7\x7f\x6b\xcf\xd7\xbf\xb6\xf8\xb0\x22\x14\x78\x47\xf5\x25\x40\xd0\x05\xc3\x07\x0d\x3a\x00\x50\x7e\xb7\xa3\xa6\xe6\x7e\x48\x1e\xb9\x22\xc6\x86\x77\x9a\x9d\x92\xc9\x97\x23\xe1\x87\x50\x4e\xc2\xd4\x62\x83\x6f\x6a\xa2\xb4\x34\x4b\x4b\x61\x3a\xe2\x70\xe2\x80\x17\x05\xd5\xdd\x3e\x85\x9f\xb7\x51\xb8\x6c\x53\x4a\xd0\x35\xa9\x8b\xcc\x63\x28\x6a\x1e\xd6\xd3\xe6\x1b\xfc\x0c\xf1\xa9\xe5\x07\xb1\x84\x27\x5a\x3b\x9e\x14\xc6\xe3\x8a\x06\x59\xcb\x5b\xe1\x2b\x8a\x13\xf8\x8a\x2a\xa3\x9a\x30\x22\xa0\xbc\x9e\xda\xa0\x55\x92\x09\x0e\x4f\x0e\x32\x4e\x93\xc0\xf6\x8b\xd4\x66\x5b\x7c\x8d\xf3\xed\x89\xaf\x39\x33\xe1\x21\x8b\xff\xb1\x93\x51\xa2\x36\xcf\x3a\x74\xea\x4e\x75\xae\x6c\x70\xd0\x49\xf9\x36\x89\xde\x54\xce\x4a\x90\x27\xb3\x65\xf4\x84\x7a\x70\x8b\x9c\x2d\xc0\xbe\x6c\xa2\x84\x54\x51\x8d\x5a\x54\xd5\x71\x82\x94\x31\xbd\x02\x83\x29\x7f\x0b\xe2\x50\x30\xf5\x03\x33\xc1\x3b\x12\x4d\xd1\x63\x1d\x4f\xac\xb8\x64\x88\x9f\xc0\x75\xc6\xfc\xb8\x75\x67\x87\x1f\x57\x8f\x0d\x56\x54\x30\xe7\x64\x6e\xa4\xed\xa5\xe2\xf8\x38\x5b\xa1\xb3\x40\xd6\x0c\x71\xdb\x29\xd0\xc7\x48\x63\xb5\xe5\xc8\x3c\xee\xaa\x3a\x4f\x36\x36\xd9\x08\xee\x42\x9a\x97\xbe\x22\x7a\xb6\xa3\x11\xbf\x66\x1c\x32\x3d\x22\x4e\xfa\x1d\x6c\x25\xbe\xa9\x15\x68\x16\x16\xda\x4b\x96\x29\x0c\x1b\x95\x95\xeb\x87\x73\xbe\x1d\xdb\x10\x9c\x3a\xf3\xfb\xb9\x76\xf2\x1d\x3a\x44\x78\x00\xdf\x98\x78\xae\x80\xd7\x55\xc2\xbf\x64\x72\x8b\xe7\x8e\x2d\x73\x44\x6b\xa2\x79\x0d\xf2\x95\x30\xee\x53\xfb\x75\xfd\x12\xfd\xc1\xfa\x25\x87\x1d\x33\x01\xa1\xa2\x4c\x2c\xe2\xdd\x52\x11\x2b\xf7\x85\x54\xca\x9c\x2a\x48\x9e\x16\x83\x41\xe4\x86\xfc\xb1\xc1\x77\x92\x07\x43\xf6\xbb\x3e\xf1\x53\x2f\xb3\x15\xca\x85\x28\x61\x2c\xb4\xcc\x13\xfb\x90\xf3\xb6\xa2\xe2\xce\xec\xc8\x46\x54\x76\xd2\xd2\x51\x15\xf9\x7d\x04\x18\xc7\x6b\xe9\xe7\x81\xb9\x76\x12\xdb\x2d\x1e\x2c\x7a\x0a\x68\x62\x47\xbd\xb4\xb0\xa0\xfb\xa6\x8b\x7e\xff\xee\x16\x1a\xdd\x73\x95\x3e\xd3\x2b\x36\x9f\xf1\x3d\x1e\x00\x6a\xa4\xa6\x4f\xeb\x2c\x94\xb0\x8f\x78\xfc\x09\x58\xe1\x1c\x0a\x43\xcd\xc5\x4a\xd7\x37\x4f\xc3\x71\x84\x1a\xcb\xbc\x33\x8b\xf4\x7d\xd0\x28\x39\x32\xf1\xaf\xba\x85\xbc\x8e\xb3\xae\x22\xce\x6d\x1a\x14\x51\x0e\xed\x57\x55\xbe\xf4\xc0\xb7\x8b\x9e\x6c\x66\x05\x8c\xed\x78\x54\xb0\x2f\x9f\xa3\x2a\x12\x7d\xe8\x57\x7f\x96\x1e\x1b\x42\xe0\x87\xa7\x6a\xbe\x25\xb2\x16\x9d\x04\x37\xe2\xb6\xd7\x5d\x2b\x4d\xa8\xac\xe8\x0d\xd2\xa4\x18\x03\x37\x86\x7f\x3f\x8d\xc0\x9f\x6f\xbc\x06\xfe\xab\x85\x89\xb6\x29\x71\xb3\x77\xc8\xfe\xc2\x34\x60\x5d\xf1\xff\x31\x71\x8e\xba\xfb\x7d\xc2\xad\x88\xfe\x99\x02\xfe\x63\x74\x03\xb1\xcf\x03\xd5\x9f\x1c\xaf\x18\x3a\x3e\x68\xdc\xfc\x14\x5f\x45\xc8\xd2\xfd\x5c\xfe\xf5\x5a\x81\xf4\xc0\xdc\xb3\xed\x90\x75\xe2\xe1\xda\x6e\x2b\x90\xc4\x6d\x65\x6b\x47\x26\x36\x03\x9b\x66\x0f\xb7\x1c\x03\x0d\xcf\x09\x31\x79\x03\xb8\xaa\x9c\x72\xa9\x9f\xe4\xba\xaa\xb0\x5e\xe7\xd5\xc0\xc0\x4f\xb4\xc2\xea\x55\x7c\x67\xd1\x66\x28\x7f\x26\xd6\x02\xaa\xee\xeb\x97\x3e\x13\xbb\x95\x9b\x83\x36\x86\x66\x19\xdc\xee\x1d\x02\x27\x0b\xb5\xaf\x4f\x91\xcf\xea\xf2\xd6\x43\xdd\x06\xcc\xe3\xb2\x19\x14\x88\x89\x5d\x62\xe9\x93\x4c\x55\xf3\xa3\x9a\xba\x89\x24\xdf\x9d\x67\x0f\x7a\x14\x5d\x57\xbe\x51\x75\x80\x91\x89\xfb\x26\x4f\x52\x56\x75\x43\x49\xe6\x30\x3d\x64\xbe\x56\xd6\x79\x35\xb4\x51\x9f\x14\xd7\x1d\xbb\x0c\xda\xcd\xdc\xa0\xe9\x54\xd6\xd9\xff\x3c\x04\x31\xf8\xf0\x9f\x00\x5c\x85\x43\x7a\xbb\x53\xe5\xad\xf4\x4a\x51\xa8\xd0\xa0\xfa\xd0\x42\x3a\x83\xf7\x02\x35\x83\x48\xbc\x52\xd2\x2a\x25\x5c\x6d\x25\xf2\x70\x09\x35\x57\xc4\xe9\x3c\x9e\x26\x8d\xa4\xf2\xe7\xc9\x7b\x2b\xd1\xba\xd8\x44\xab\xe5\xc2\x21\x72\x77\x62\x1c\xbe\x51\x7b\x5e\x35\xca\x52\x6b\xa8\x1c\x5c\xee\x20\x74\x12\x5a\x8a\x3a\xf4\xe6\xc4\x63\x46\xce\xa8\xb9\xed\x95\x20\xcd\x2a\xc0\xad\x8e\x52\x0f\x38\xa3\xa2\x92\x81\x8d\x6d\x4a\xe1\xd7\x16\xe5\xb1\x6f\xaa\xa6\xf3\xb5\x8e\x92\x7e\x01\x13\x0c\xe3\x29\x3b\x5e\xe3\xfd\xdd\x5a\x0d\xea\x45\xf0\x82\x25\x2b\x88\xe2\xb9\xd6\x80\x1a\x9e\x14\x1e\x9a\x90\x22\xb6\xbf\x62\xd2\x7e\x65\x4e\xf1\x3e\xd6\x86\x6f\xd4\x1c\x70\xcf\xd5\xca\x15\x6e\x4b\xa1\x8b\xee\x2a\x09\xae\x33\x4a\x97\x20\x4b\x46\x36\x89\xed\x56\x84\x58\xf0\xb2\x1f\x50\xd8\xe6\xe5\xcc\x5e\xd8\xe7\x06\x2a\xe9\x07\xf0\xbf\xc0\xab\xf0\x4b\xf4\xcc\x71\x9d\x75\xf2\xc0\x5c\x7b\x64\x5e\x2d\xc2\xc8\xf4\x93\xd4\xf0\xb0\x11\xdc\xc9\xdb\x8a\xf1\x10\xdb\x04\x90\xbe\x6b\x2e\x71\x5e\x49\xd2\x7c\xc8\xec\x0f\x22\x9a\xe9\xbb\x4c\x98\xc3\x47\x38\x7b\xb5\x36\x8d\xb1\xb8\x48\xca\x0b\x26\xce\x51\x3f\x44\x31\xf2\x9c\xae\x17\x5c\x56\x36\xee\xfb\xca\xc6\x31\x77\x33\x46\x97\x65\x9c\x58\xa1\x70\xcf\x3b\x05\xa6\x32\x14\x2f\x6d\x00\x15\x14\xca\xa5\x43\xe0\x77\x52\x29\xec\x9f\x54\x23\xb6\xe3\x30\x8a\x30\x9b\x83\x0d\x83\x09\x59\x78\xc0\x2b\xf8\x04\x41\x2c\x56\xc6\xcc\xbd\xe2\x68\x92\x8d\x21\xf3\x45\x9d\x83\xca\x6c\x28\x33\x9f\xd3\x02\x91\xf3\x1f\x3c\xde\xf5\xf5\x9e\xd9\x69\x43\xe1\x2d\x4d\xa2\xa8\x47\xe4\x06\xae\xb2\x07\xee\x52\xbe\xae\xed\xcd\xe7\xe7\xdb\x59\xd1\xef\xdb\x98\x7f\xae\x26\x29\xe6\xeb\x26\x4e\xdb\x2c\xf7\x69\xe3\xff\xbb\x84\xb0\x3d\x8e\x4c\xec\xb9\x94\x98\x48\x92\x5e\x04\x0b\x74\x4b\x75\x08\x4f\xba\xf0\xa3\xc8\x86\x46\x17\x64\x71\x66\xa4\x3a\xab\x83\xb1\x24\x38\xb8\xab\x8c\x28\x45\x11\x47\xa9\xac\x7f\x3a\xf1\x14\x95\x0f\x50\x66\x63\x3b\xd3\x51\xb2\x22\x3f\x56\x5d\xac\xbb\x54\xf9\x43\xc4\xf5\x00\xe7\x01\x85\x9e\xbb\x13\x8f\xcf\x3e\xdc\xf1\xe3\x0d\x88\xfd\xb8\x1f\xdf\xa9\x68\xa2\xd0\xef\x95\xbc\xb3\xcc\xbd\x04\x5d\x46\x3b\x02\x91\x1c\x8f\x7f\x01\x32\xcc\x8a\x81\x32\x85\xa2\xe8\x88\x6e\x35\x75\x5b\x97\x4c\x5a\x86\xd9\xa0\x09\x73\x84\x64\x0e\x24\x76\x5a\x01\x22\x53\x96\x71\xf5\x44\xea\x27\x3a\x2a\xd4\x3e\xa1\x6a\x09\xe3\x61\x65\xae\xe7\x1c\x59\x45\xbe\x56\x73\x17\xe3\x24\xcd\x53\x13\x4a\xc3\x4a\x17\x0f\xa5\xc4\xe8\xa0\x81\x84\xac\xc9\xb6\x2a\xad\x7c\xe4\x59\xae\x5d\x56\x7e\x13\x2e\xfe\x63\x71\xe8\x5b\xbd\xfa\x78\xd7\xb7\x5c\x00\x21\x11\xb8\xea\x63\x6a\x0e\xdc\x14\x2c\x6c\xc6\x63\xfb\x1d\x0f\x78\x39\xaf\xba\x41\x3d\x93\xd9\x9e\x89\xa2\xad\xf4\x7d\xe1\x62\x7e\xa8\x65\x3b\x89\xb5\x54\xe8\xc9\x7d\x16\xce\x1a\x62\xce\x92\xfa\xe9\xda\x2b\x8a\x70\x39\x5b\x09\x01\x7a\xa1\x77\x77\xfa\xf0\xa5\xa7\x71\xaa\x4d\xce\xb3\xdd\x55\x19\x59\xdf\xc6\xa9\xb5\x99\x92\x9d\x3e\x4b\x06\x94\xaf\x75\xa3\x69\x6c\x52\xc9\x8d\x45\xca\x03\x33\x34\x7c\xdd\x90\x44\xbc\xd4\xee\xf3\x28\x29\x76\xf1\x7b\x0a\x37\xfc\x5e\xcd\xd0\x96\x7f\xdf\xb3\x43\xd2\xee\x7e\x4e\xc2\x69\xd0\x69\xf3\xb5\xb2\x80\xe5\x57\xc9\x14\x01\xf3\x5d\x45\xc0\x7c\x77\xa2\x4b\x65\xe1\x78\xab\x1f\x7b\xbe\x82\x7d\xe7\x50\xc3\xe5\xd3\x06\xaa\x0d\x73\xdc\x48\x6a\xee\x00\xfd\xcf\x2f\x21\xa3\x24\x03\xde\x4a\xc6\x30\xb2\x26\xe6\x9e\x92\x48\x8a\x52\x5c\xa5\xf9\x8b\x71\x4a\x6f\x56\x3b\x3e\xcb\x36\xcd\xc3\x5e\x64\xa1\xec\x2f\x3c\xec\x7e\x0f\xfd\x90\xac\x00\x82\xda\x2b\x13\x45\xd7\x78\x77\xa2\x4c\x3b\x66\x14\x45\x3e\x57\x29\x57\x33\x1b\x30\x82\xd7\x99\xee\x46\x9b\xb8\xb0\x50\x9a\x7f\x16\x49\xf6\x64\x39\xb7\x26\x4a\x9f\xf9\x96\x0a\x0b\xc6\x61\x1e\x0c\xa9\x42\xa6\x9c\x58\xcb\x91\x33\x54\xe0\xff\x79\x6a\xe3\x41\x3e\xcc\x34\x05\xeb\x1d\x95\x94\x80\xcf\x16\xdd\xb9\xd3\x7a\xda\xae\x8c\x6d\xd2\x55\x8e\xe1\xd0\x59\xba\xa3\xd1\xfd\x77\x54\x07\x2a\x0e\x86\x3b\x5c\x67\xed\x9f\x7c\xb1\xab\x8a\xb9\x0f\x26\x9b\xbf\x2c\x5a\x40\x13\xef\xd4\x9f\x40\x52\xe8\xe8\x10\xca\x73\x21\x74\x51\x1e\xb2\xf7\x67\x93\xaa\x1e\xeb\x01\x51\xe1\xfd\x2e\x43\x08\xb1\x51\xfe\x9a\x1a\x29\x0c\x40\xd5\x6a\x95\x9f\x9f\xfa\x6d\x17\xdb\xe0\x20\x4c\x13\x26\xe4\x30\xe0\xc7\xd7\x1e\xac\x98\x14\x69\x66\x49\xa0\x0f\x49\x8f\xb0\x67\x29\x35\x40\x89\x15\xee\xab\x4d\x5d\xe6\xbd\xdb\x55\x89\xe1\x54\x79\x48\xd6\x69\xa3\xae\x83\xef\x89\x79\x91\xb5\x9f\xc1\x24\xb3\xcc\xe8\xf9\x14\xea\xe3\x89\x1a\x62\x5e\x53\x9f\xb2\x62\x56\x33\x90\xb5\x38\xeb\xfe\x9c\x7f\x78\x2d\x07\x89\x1b\xd7\xca\x36\x07\xe6\xda\xd9\x30\x59\x21\xcf\x2e\xaa\xf7\x0a\xc2\x7b\x66\xe2\x67\x72\xb2\xa1\x49\x6d\xf6\x44\xe9\x41\x91\x1e\xdc\xd4\xb8\x71\x78\x24\xc4\x35\x1f\x90\xf1\xc0\x3a\x5d\x21\xab\xc0\x00\xcd\x89\x9f\x7a\xd8\xca\x2a\x89\x28\x2d\xfe\x23\xda\x02\xa8\x1d\xde\xd0\xf8\xee\x4b\x13\xd5\x20\xbc\x4c\x4f\x9a\xd5\xfd\x70\xf0\xdd\xa4\x92\x1b\xf5\x79\xa8\x4b\xee\x5b\xfa\xa4\x8a\x5d\xe3\x12\xb6\x93\x33\x9e\xf3\xfb\x79\x03\x6e\xef\x2a\x63\xbd\xbd\xab\x40\xef\x6b\x8e\x5d\x20\xb6\xb6\x1f\xd9\x2c\x9b\x29\x7f\x3f\xbe\xce\x19\x55\x03\x44\x0e\x2f\xd4\xd9\x75\x92\x9f\xa1\x49\xfb\xab\x5b\xfc\x80\x23\x8f\x68\xe3\xe1\xff\x05\x6d\x6d\xcd\xc4\xa9\xd2\xd6\x79\xd9\xcc\x0a\x3d\xda\xb7\xe3\x24\xa7\x6f\x82\xea\xc9\x6d\xa5\xe8\x87\xc2\xb0\xcc\x51\x3f\x59\xe7\xe5\x78\xf9\xe5\x87\xcb\x47\xc2\x92\x24\x5a\x8d\x15\xb4\xbf\x02\x04\xf6\x35\x52\x1c\x3d\x0d\x38\x85\x9b\x7f\x47\x4f\x99\xf2\x5c\x1f\x9e\xe1\xbd\x8e\x7a\x6c\x6c\x0b\x45\x4a\xd9\x77\x7b\x48\x1e\x1b\x7c\x8c\x82\xae\xf6\x63\x1e\xa8\xef\xa0\xa3\xb2\xde\xac\xb5\x8b\x19\x29\x0e\xda\xb9\xae\xa2\xb9\x21\xd6\x14\xf7\xe3\x52\x11\xf7\xb3\x87\xe9\xc7\xb2\x5a\x0c\x36\x10\x6c\xc8\x31\xa5\xac\xb3\x79\x5a\xee\x0c\x91\x6f\xf1\xaa\xa2\x70\x3b\x22\x0f\x53\x7e\xcc\xfa\x25\x9c\x15\x00\xb2\x10\xec\xe1\xf1\x7e\x8c\x6d\x2b\xc5\xf0\x9d\xaa\x00\x6b\x83\x70\x29\x0c\xb6\xfa\x19\xcc\x5b\x74\x42\x1c\x41\x9a\x1e\xd5\x2d\xe3\x35\xb7\x5f\xca\xbd\xcb\x37\x53\x35\x94\x7e\x4b\x75\x3a\xd3\x24\x18\xda\x2c\xb7\x29\x9b\x67\xec\xcd\x29\xd6\x9f\x6f\x3a\x1b\x9b\x11\x04\x09\x27\x61\xcf\x20\x34\xd1\x8c\x67\xeb\xba\xa8\x65\xb3\xb0\xd9\x61\x4b\xef\xd5\xa6\x16\x40\x19\x3e\x1a\x27\x59\x98\xdb\xad\x14\x58\xe3\x3d\x90\x27\xc0\x33\xb0\xdf\x72\xba\x1e\xee\xfd\x3e\xd7\xf5\xf9\xd1\x09\x6c\x48\x41\x9a\x3d\xee\xc8\x3d\x62\x93\x25\x71\x18\xcc\x54\x80\x36\x0b\x0b\x4e\xfc\x50\xb5\xb5\xfe\x1f\xc2\xde\x2c\x46\x92\x2b\x3d\x17\x63\x67\x55\x75\xf7\x70\x1b\xae\x33\x73\x81\xbb\xe4\xf5\x95\x31\xb2\x31\xa6\xe5\xfb\x20\x5c\x0b\x06\x22\x55\x5d\x1a\xaa\x0b\x9e\x62\xa3\xba\xd5\x94\xe8\x17\x9e\x8c\x3c\x95\x19\xac\xc8\x88\x9c\x58\xaa\x58\x7c\x32\xfc\x70\xe1\x27\xc3\x2f\xbe\x36\x0c\xdb\x90\x01\x41\xf7\x5e\x1b\x96\x6c\x4b\xa3\x5d\xca\x9a\x7d\x5f\xb8\x0f\x87\x4d\xb2\x9b\xbd\xef\xfb\x56\xdd\x5d\x6d\xc4\xff\xfd\xff\x39\x7f\x54\x04\xe1\x17\x22\x82\x5d\x55\x99\x71\xe2\x2c\xff\xf2\x2d\x5b\x2d\x9d\xa0\x03\x52\x4a\x9c\xf1\x28\x08\x10\xb4\x44\xa1\x81\x46\x1b\x99\xd3\x4f\x5a\x71\xf3\xb1\x5d\xe1\x86\x07\x0b\x6c\x21\x27\x16\xb5\xad\x9d\xce\x04\x8b\x8b\xdd\x12\xc2\xe3\x45\x94\x26\x51\x3e\xee\xd4\xfa\x07\x35\x7e\xed\x33\x8e\xf8\x9f\x14\x76\x10\xe5\xa2\xaa\x84\x07\x65\xa8\x13\xdf\x6c\xaa\x2a\x7d\x68\x32\x12\x0a\x5e\xae\x57\x8e\x65\xd9\xb6\xd5\xdc\xa9\x1b\x1e\x32\x2a\x54\x0a\x28\xaa\x98\xd2\x9a\xcc\x55\x5b\x3f\x03\x3c\x5c\x5c\xe1\x63\x8c\xa9\x97\xfd\x2b\x93\x49\x6c\x4d\x6e\x92\x82\xb2\x55\xec\x6f\xef\xea\x02\xe9\x05\x85\x0d\x7a\x57\x8b\x8a\x05\x35\x7d\xce\xd5\x59\x8f\x04\xbf\xa9\x20\xe8\xbb\x81\x71\x56\x42\x0b\xd2\x7a\xf9\xd8\xe5\xcc\x61\x9a\x4e\xac\x64\x32\xde\xc6\xf2\xa4\x52\xaf\x3f\xd9\x12\xd3\xbe\xd8\x8d\x92\x42\xe4\x19\x84\xb6\xa7\xe9\x7c\x2d\x0d\xd2\xb1\x4d\xc8\x6c\x8d\xab\x81\xaa\x6f\xe3\x9a\x38\x2a\x65\x5a\x17\x31\x39\x8d\x40\x71\x90\xe2\xc5\x45\xc7\x1b\x75\x00\xbc\xf2\xb5\x68\xb7\x82\x61\xde\xe0\xa8\x03\xbb\x16\x82\x7a\xb1\x32\xa9\x0e\x63\x11\x00\xf2\xa8\x98\x9b\xd8\x89\xb0\x71\x74\x1a\xa5\xcf\x43\x2f\x55\x71\xb7\x85\x45\x34\x22\x3f\xd8\x95\xf3\x75\x03\x33\xb9\x70\xa8\x9b\xd9\x34\x1b\x9a\x24\x7a\xc3\x82\x7d\x21\x3a\x28\xf4\xd0\x08\x6c\x21\x2a\x83\x7d\xf3\x17\x4a\x5f\x6d\x12\x49\x28\x2b\x76\xdc\xd5\x1f\x10\x31\x2f\x3f\x50\x07\x7f\xfb\xb7\x3b\x3e\x8d\xfb\x50\x37\xd5\x3e\x74\x47\x72\x58\x2d\x96\xf1\x44\x9b\xd6\x9d\x56\xa6\x75\xa7\xdb\xbe\xfb\x4a\x9c\x96\x59\x94\x8f\xa4\x77\xe6\xbc\xa9\x5c\x55\x88\x07\x4c\xb0\xa4\xcf\xd6\xd2\x81\x28\x84\xc1\xa5\x77\x46\x52\x6a\x4f\xd7\xe8\x15\xb0\x4b\x73\x63\xb2\x10\xd9\x27\x09\xcb\xcc\xad\x24\xd1\x3b\xa4\x99\x23\x02\x89\x4e\x60\x25\xd9\x58\x1f\xd9\xcc\x42\xde\x0d\x79\xc4\xb7\x15\x2a\x14\x1a\xf0\xce\xb0\xfa\x77\x7e\xdf\x19\x77\xb5\x31\xd7\xaa\x53\x87\xbb\x27\xa2\x73\xe3\x3b\x87\xc7\x1b\x9d\xff\x43\x2f\x75\x6d\x32\x32\x49\xe8\x56\x10\x76\x70\xb0\x1f\xf8\xda\xbd\xd6\xaf\x97\x36\x8e\x6d\x47\x41\xd8\xb0\x0b\x49\x8e\xe3\x18\x91\xb1\x8d\x86\x23\x2c\x2f\x54\x8a\x6f\x7b\xad\xc6\xf7\x6f\x07\xbe\xbf\x39\x2c\xf3\xc2\xac\xe4\x29\x9b\xc8\x4b\x4c\x51\x7d\x78\x4d\xf6\x58\xac\x06\xb4\x04\x61\x1c\x85\xd5\xf6\x56\x8d\x88\x8b\xa8\x7c\x74\xa5\x4d\x22\xd3\x84\xbf\x34\x83\x9f\x03\x1f\x79\x9d\x6a\x94\x75\xf7\x2f\x75\xf3\xc2\x38\x46\xb6\xe3\x2b\xfb\x63\xfe\x9c\xd6\xe4\x29\xa2\x71\x19\x47\x33\x5a\xf3\x1e\x61\x2d\xa2\x4f\x06\x91\xa1\x98\xf7\xa6\x97\x43\x1b\x9b\x37\xbc\x00\x1d\x80\x9d\x28\x31\xf0\xb5\xaa\xd4\xe4\x71\xba\x1e\x73\x77\x11\x2d\x01\x10\x18\xf9\xda\x4d\xa4\x2a\xd3\xcb\x73\x99\x73\x08\x71\x58\x49\x9b\x6f\x02\x55\x6b\x0c\xad\x1d\x54\xf9\x3a\x9d\x92\xf8\xe2\xef\x68\xac\x20\xbb\xb1\xa0\x1a\xfb\x91\x56\x31\xdb\xb0\xfd\x2c\x5d\x47\xa2\x0f\xf0\x22\xb4\x6d\xf8\xda\x6d\x69\x6b\x69\x34\xe8\x74\x7e\xef\x77\x39\x9b\x06\x8b\x81\xaf\x55\xbc\x36\x8c\xd3\x1c\x40\x04\xc4\x2d\x47\xe9\xa8\xe0\xeb\x9a\xbf\x9d\x5d\xab\xa2\x16\x87\x26\xf8\xe3\xa9\x02\xc5\x20\x6a\x41\x58\x7e\xbe\x4d\x1a\x3d\xb3\x13\x4b\x07\xc5\x8c\xea\x2c\x02\x74\xe0\xa4\x4d\xdd\x42\xb9\xab\xa8\x8f\x2b\x26\x74\x55\x1c\xa9\x69\xfa\xde\xc1\x96\x12\x79\x3e\x57\x6b\xaf\xda\x21\x63\x16\x5c\x21\xa2\x0a\x96\xf8\x46\x35\x1a\x33\x33\x60\x75\x45\xec\xf8\x78\x57\x1c\x09\xf0\xcd\x66\x9b\x45\x7b\x66\x0d\x99\x54\x7a\x10\x08\x52\x0a\x21\x4a\x7c\x96\x81\xd2\x9a\x4d\xec\x1b\xa5\x8d\xcd\x4c\x47\x69\x40\x6a\xbd\x28\xb5\x09\x9f\x6e\xab\xdf\xf6\xcb\x28\x1e\xb8\x41\x41\x1d\xec\x5a\xa0\x41\x96\xf4\x17\xf8\xcf\xb5\xc8\x05\x1d\xe8\x4e\x32\xdb\x17\xed\x11\x87\x7f\x52\x2e\x66\xde\x04\xcb\xbe\x3e\xb1\xc9\x20\x2a\xca\xcc\x82\xb9\x26\xba\xc9\x14\x27\xa3\x75\x7e\x41\xed\x91\x3f\x53\x75\x92\x95\x32\x09\xd1\xf9\xa9\xc2\x12\x54\xac\x3e\xa5\x48\x5f\xf0\x5f\x9e\x48\x78\x82\xf2\x44\xfe\x19\x05\x5a\xd9\x6a\xda\x06\xee\xa3\xca\x1b\x98\xcd\x2e\xfa\x5d\x5c\x94\xeb\xe0\x49\xe5\xba\x16\x25\xab\x5a\x55\xe9\x28\xfd\x65\xa4\xd5\x90\x91\x91\x0c\xd0\x9f\x89\x1b\xb0\x3e\xf6\x68\x06\xff\x4f\x5f\xde\x1f\x63\xcc\x44\x41\x18\x73\x46\xc4\x85\x55\x25\xcc\xe4\x05\x63\xff\x50\x7c\x65\x82\x22\xdf\x28\x14\xb6\x99\x30\x77\x10\x09\xcf\x25\x8d\xf6\xd7\x5a\x88\x21\xe9\x03\x3a\x53\xa6\x73\xaa\xcb\x7b\x4e\x71\x64\x26\x69\x1c\xef\xa5\xe1\x76\x34\xa2\xc5\x45\x9f\x5e\x3a\x5a\xd7\xdd\xa9\xa7\x1b\xdc\x46\x95\xdc\x05\xb6\xcb\xc2\xcb\xbf\x8a\xdd\x13\xdb\x13\xa3\xe0\xf9\xa6\x11\xbd\xbe\xfa\x6a\x77\x3d\x8a\x45\x61\xd2\x69\x86\xb9\x39\x75\x7c\x67\x8a\xbc\x3c\xdf\x3d\x3c\xbf\xf4\x14\x65\x03\x08\x60\x6a\x2a\x2b\xdf\xa4\x7d\x88\xa5\xeb\xa7\x4a\xe6\xf7\xc7\x53\xd5\xe2\xe3\x66\x0e\x12\xc3\x77\x68\x15\x71\x4b\x15\xa1\xa1\x23\x13\x57\x0f\x08\x74\xd3\x07\xd3\x9a\xc2\x89\xa7\x12\x5e\x09\x3c\xab\xed\xff\x45\x4f\x92\xb7\xdf\xc0\xeb\xcf\x9f\xe3\x57\x2e\xe0\xe0\x6a\x3a\xe1\x4b\xbe\xab\x4a\xb1\x65\x5e\x56\x51\x80\x23\xe6\x3e\xda\xf3\xe5\xdb\x47\x37\x7d\x91\x6f\x35\x4a\x86\x83\x94\x13\x16\xe4\x68\x47\x50\x8e\xe5\x1b\xad\xab\x54\x45\x34\x49\x11\x6f\x30\xb7\x83\x05\x9c\x28\x91\x45\x68\xbb\x8b\x3e\x05\xef\xf4\xa9\x4d\xe5\x89\xc3\xfd\x2f\xec\x4c\x88\xce\x45\x79\x94\xc6\xc2\x91\x92\xaa\x21\xe3\xee\x0a\x29\x88\x3b\x3a\xca\xcb\x0e\x28\x0d\xd0\x34\xe6\xf1\x07\x0e\xbb\x53\x85\x88\x59\x1a\xc7\x1c\xa9\xba\x4e\x9b\x07\xc2\x3c\x50\x8e\x42\x5e\x09\x78\x64\xb2\x01\xcb\x2c\x23\x2d\xba\x88\xb7\xcb\xc6\x25\x53\x8f\xb7\xbd\xa5\x44\x45\xb7\xbc\x49\xf4\xe3\xb3\x9b\x4a\xce\xf3\x19\x64\xef\xd8\x54\xe7\xda\xea\xbc\x61\x54\x44\x6f\xb0\x65\xfc\x2b\x3c\x3c\x47\xa7\x6a\xac\x8e\x36\xf6\x9b\xa5\xa5\x83\xdd\xdc\x48\x99\x1f\x41\xf8\xc7\x9a\xab\xf4\xb1\x23\x3b\x4c\x46\x26\x1b\x9b\xd0\x96\x45\x14\x9a\x98\xc0\x42\x22\x41\x4c\x6f\x80\xb5\xdc\xf1\x8a\x5d\xed\xd5\x4b\x1e\x61\x1f\xc3\x3c\xb9\xff\x99\x27\x88\x7d\xdd\x86\x65\x11\xad\x59\x85\xfd\xfe\xb0\xa6\x83\xd5\x38\x81\x0f\xbc\x74\xb0\x6b\xb2\x22\x0a\x1d\x15\x80\xb9\x0a\x81\x27\x61\xfc\x4a\x6d\x23\xaf\xa5\x91\x70\x8e\x51\x12\x3d\xa6\x1c\xa0\x11\x6f\x88\xe0\x2d\x7d\xae\x88\x50\xef\xfc\xca\xcb\xf3\xe4\x34\x90\x45\xe3\x28\x51\x79\xa2\x74\xcc\x3b\x4e\x08\xe2\xec\x54\x23\x12\x0a\x13\x25\x79\x07\xdd\x73\x07\x36\x56\x61\xb8\xda\x68\xd3\xa2\x48\x93\xcf\xd1\x23\x49\x5e\x51\x4d\x1a\x6c\x22\x67\xb1\x71\x88\x5b\x83\x0f\xcb\x19\x25\x8e\x4d\xe4\x6f\xb5\xd8\xca\x49\xa5\x18\x34\x8b\x4e\x13\xff\xdd\x5a\x2f\xb1\x25\xad\x5d\xe8\xe6\x36\x2c\xf9\x5c\x62\x88\x7f\x50\xc3\xfb\xb7\x99\x31\x55\xab\xc6\x9d\xe5\x48\xbd\xaf\xaa\x1e\x12\x54\x6e\xd9\x96\x5a\x79\xe0\xe6\x45\xea\xfb\xbe\xcc\x7a\xa1\xe7\x13\x06\x4c\x8b\xe1\x66\xcc\xa2\x90\x38\xc1\xef\x20\x4e\x06\x2e\x00\x1e\x91\xae\xec\xf4\xa4\x22\x0b\xae\x99\x98\x43\x23\xd4\xf3\x98\xbb\xcb\x37\x8d\xe8\x62\xff\x52\xd7\xc4\x26\x5f\x35\x60\xef\x00\x2c\xc3\x98\x46\xbe\x51\x62\x62\x03\xdb\xb7\x09\xc5\x16\x4a\xb9\x03\xe7\x94\x64\x38\x7e\x52\xf6\x53\x53\x28\x8f\x9c\x9f\xd2\x76\xcf\xd7\xca\x11\x61\x60\xd7\x6c\x9c\x4e\x1c\x6c\x43\x40\x5e\x1d\x27\x02\x00\x26\x38\x36\xcd\xd9\x4d\x9f\xd4\x4c\xb2\xb4\xb0\x51\x92\xef\xae\xb6\x38\x49\xb0\x69\x60\x94\xa8\xdf\x92\x2b\x21\xd2\xae\x88\x77\xab\x6d\x49\x01\xc6\xe2\xff\xdf\x02\xf6\x3e\xd8\x8d\xad\xc9\xbc\xbe\x1c\x32\x15\xb4\x43\xf8\xba\x51\xd8\xde\xb7\xd0\x9d\xbc\x30\x7e\x81\x76\x14\x4c\x92\x87\x81\x72\x4d\x7e\x40\x43\x81\x2a\xd1\x49\x05\x45\xfc\x11\x7d\x15\x6c\xa6\x9f\xaa\x82\x70\x3e\x29\x07\xbc\x05\xb2\x34\x7f\x50\xb3\x01\x69\x01\x7c\x8c\x0d\x5e\x13\xfd\x12\xd0\x2f\xd7\xb5\xd3\xf9\xf5\x26\x96\xff\xa5\x83\xdd\xb5\xb4\xb0\x34\xe7\xb8\x2b\x13\xf8\x1d\xeb\xdb\xaa\xd8\x54\xf7\xbd\x2f\xd6\xd3\xa7\x69\xd4\x51\x59\x79\x33\xa8\xd9\xa9\xfa\x42\xd1\x5b\x81\x56\x1d\xa5\x78\x01\x91\xd8\x4f\x70\x7a\x4b\xa4\x44\x2d\x48\x64\xf3\xaf\x2a\x5f\xcb\x73\x54\x0f\xc6\x2e\x0c\xaa\xad\x18\x26\x10\xfc\x8b\x7f\x61\xaa\x00\x67\xac\x88\x83\x6a\xfb\x2e\xf4\x2f\x70\x04\xfc\x6b\x4c\x70\x9c\xc9\xf7\xb0\xa5\x23\x86\x3a\xc6\x01\x03\xc8\xa7\x3f\x6b\xf3\x62\x81\x2f\x84\x4d\x80\x07\xc5\x0f\x32\xb9\x08\x25\xbb\x19\xee\xe1\xa0\xde\xf2\xbe\x6a\x50\xf4\x6d\x34\x64\x36\x80\xdb\xbe\x9c\x4e\xcf\xc9\x96\xf2\xec\x52\x77\xdd\x44\x85\x54\x65\xb8\xc5\x83\x5d\xd2\x05\x86\xae\xa4\xf0\xd0\xb1\x6a\xc3\xd8\x8c\xfb\xd6\x55\x54\x00\xf3\xba\x3d\x55\x98\xaf\xdb\x81\x76\x30\xd9\x30\xf0\x89\x72\x06\x3e\x2f\x7b\x03\x68\x29\x53\xac\x93\xc7\x02\xcf\x28\x04\x09\x1f\x4e\x55\xe9\xf6\x43\xd5\x6a\x5f\x4b\xb3\x34\xb1\x6f\x8c\x70\x06\x6b\xb6\x00\x5f\x4f\x9f\xf7\x91\xc8\x8a\x1d\x30\xe4\x4c\x4c\x0c\xd0\x44\xe6\x9c\x9a\x6f\xb4\x13\x77\x94\x4f\x52\x97\xba\x3b\x61\x33\xe7\xcd\x73\xb9\x01\xea\x5c\x5a\xea\x66\x51\x38\xa2\x41\x44\x55\xa2\xd3\xf3\x6c\x68\x84\x85\xf8\xdd\x9b\x53\x6f\xab\x69\x5f\x9f\x51\xa6\x71\xe7\x55\x96\xf3\x31\x41\x0c\xb8\x0a\xdb\xd8\x53\x0f\xbd\x24\xfd\x69\x5a\x4b\x38\x6c\xaf\x61\x92\x3b\xec\x96\x53\xec\xf9\xa9\x5a\xe8\x2b\x66\x20\x25\x53\x94\x2c\x3f\xc1\x7c\xe6\x9b\x96\xe2\xd9\xc1\xee\x9a\x89\x4b\x27\x39\x5c\xf3\x66\xe6\x1b\x05\xa8\x5e\x49\xb3\xd0\xee\xa9\x56\x1e\xf2\x82\x5b\x08\xdf\xd0\xc2\x62\x4f\x7e\x3c\xe1\x5f\xd0\x6a\x63\xcb\x2b\x25\x84\xf3\x17\x80\x07\x89\x4f\x93\x47\x48\xfd\x52\xe9\xa3\x51\x45\x68\x6f\xf5\x31\x08\xdb\x3b\x9b\x35\xfa\xec\xf2\x01\x37\x23\xab\xdf\x47\x4f\x6e\x77\xcf\x87\x36\x57\x82\x1a\xf0\x43\x09\x9e\x21\xae\x10\x5d\xc5\xcf\x2b\xef\x54\xe1\x7e\x2f\xe8\x5e\xb8\x34\xcd\xfe\x56\x21\x4d\xc4\x2c\xe4\x73\xd5\x67\x8b\x8f\x79\xf5\x5d\x41\x71\x7f\x47\x8b\x1b\xee\xe9\xf9\x96\xe0\xaf\x34\x21\xf8\x3e\xf2\x15\x7c\xc3\x3b\x08\xb8\x11\xaf\x43\xaf\x59\x10\x44\x1d\x67\x98\x70\x5b\xd1\x56\x46\xd6\xac\x45\x31\x64\x9b\x50\x84\xf9\x30\xa8\x09\xe2\x78\x0d\x10\xd6\x1a\xe3\x9f\xa2\xf1\x42\xcd\xeb\x9a\xca\x35\x9c\x02\xea\x9c\x82\xf4\xc1\x63\x69\x7b\xb3\x56\x48\xea\x38\xe3\xc9\xb7\xf0\xea\x45\x35\xa9\xd9\xb9\xea\xe6\x45\x66\x0a\x3b\x8c\xf2\x42\xa9\x68\xc1\xde\x49\x1e\x4f\x30\xdd\xec\xab\xbe\xb4\xd4\xee\xab\xde\x38\x6a\x16\x0e\x75\xed\x9a\x4d\x14\xfa\x05\x84\x4a\xb1\x58\xf3\x79\xf4\xc4\x44\xb1\x2a\xc2\xdf\x99\xfa\x22\xfc\x1d\xe7\x90\x4d\x8a\x03\x1b\xf1\x9a\x49\x22\xf3\xd9\x49\xbc\x14\xc7\x06\x99\x96\x8b\x45\x96\x79\x52\xa9\xbd\x6b\x30\xd7\xc8\xc0\xf8\x40\x48\xf7\x2a\x6a\xbf\xdc\x58\x8d\x8b\x8b\x07\xbb\xa6\x9f\xa7\x59\x5f\xf6\x26\xe7\xee\xe5\x34\xc8\x35\x68\x7a\xa5\x4c\x06\x66\x4c\xce\xde\x1d\xdf\x30\x38\x37\xd5\x53\xbc\x45\xe4\x7d\x25\x4a\x94\x81\x0a\x0b\x15\xd0\xf7\x17\xd1\x82\x96\x20\xcf\xbe\x3e\xc9\x6c\x9e\xcf\xd6\x1c\xd0\x7c\x78\x02\x0d\x0f\x11\x9f\xa6\xa7\x44\x64\x7a\x5a\x0d\xc6\x6f\xfe\xc6\x6f\x00\x55\x8e\xd7\x74\x57\xaf\x30\xdd\x73\xb9\x4b\xc9\xa8\xb8\xfc\xb4\x74\x87\xa2\x64\x0d\x82\xb0\x1d\x75\x92\x5d\xa7\x51\xe2\xeb\x36\x3f\x20\x6b\x24\x0f\x14\x54\x74\x1d\x30\xed\x11\x4a\x71\x35\x6b\xe1\x70\xb9\xbb\x5a\x4a\x88\xa8\x68\x23\x79\x71\x5b\x23\x78\x8e\x68\xa0\xd1\x29\xd5\xc8\xde\x05\x1c\x02\x8a\x13\x67\x1b\x13\x78\xe1\x50\xb7\xc8\xaa\xfd\x9d\x7e\x4a\x46\x4a\xe1\xc8\xcf\x28\x41\x99\xdb\x4a\x0c\xd7\x94\xc5\x28\xcd\xa2\x37\xdc\xb3\x63\x83\x44\x27\x8f\xaf\x1b\x23\x76\x78\xfe\xc5\xee\x4a\x16\xd9\x64\x10\x6f\xd0\x11\x86\xfa\xc9\xae\x9e\xe7\x04\xdd\xc2\x87\xa3\x0b\x70\xa6\xd1\xe1\x71\xaa\xae\x71\xec\xa4\xc4\xf1\x47\xa0\xab\x8f\x82\xfb\x37\xf1\xe2\xf9\x8f\x34\xcb\xc2\x0b\xdd\x28\x09\xcb\x71\x5f\x0a\xf1\xd8\xb8\x6f\x28\x60\x45\x53\xb3\x75\xe1\x50\x77\x82\xc6\x67\x0e\x56\x26\x8e\x91\x73\x0c\x48\xc2\x9e\xcb\xa8\x0f\x6c\xf1\x37\x5c\x63\x84\x33\x83\xbd\xd5\xdf\x17\x2f\xf0\x6a\xa3\x56\xc6\xd6\x07\x5d\x69\x52\x4d\x4c\x18\x7f\x52\xf2\xf9\x07\xcf\xf6\x7c\x73\xf3\x66\x5d\xe4\x9b\xf6\x4a\xec\xb8\x77\xdb\xf6\xbf\x15\xd3\xcf\x48\x3e\x89\x07\x4c\x8c\x35\x3c\xd8\x95\x25\x50\x24\xce\xf3\x9c\xda\xaf\x97\xb6\x6f\xd1\x93\x47\x6a\xfa\x3f\x07\xfe\xb4\x39\x01\x90\x1d\x7a\x9a\xc7\x15\x0c\x9d\x34\x1e\xb0\xae\xa5\x37\xdb\x51\x5f\xbf\xb3\xa9\x9c\xfa\xd3\x2c\x1c\x59\xa2\xce\x39\x2a\x78\x35\x00\x52\xe7\xda\x99\x4e\xbe\xd0\xed\xbf\xb0\xf6\x02\xbd\x35\x75\x3a\xb8\xa3\xa2\x65\x91\x1e\xe8\x9a\x90\x74\x95\x79\xcd\x49\x53\x44\x77\x48\xda\xa5\x1d\x4d\x51\xd8\x2c\xaf\x39\x77\xb1\xf2\x06\xdf\x04\xde\xbc\xa6\x58\xcb\xe7\xb4\x25\x48\xe0\x09\x53\x70\xd2\x70\xba\x0c\xbe\xb2\xf9\x77\x48\x30\xc4\x44\xe4\x39\x45\x68\x4f\x63\x5b\x98\x2c\x32\x49\x47\xa9\x48\x7c\x82\xef\xcc\x37\x2d\xc9\xd2\xc1\x6e\xbf\xdc\x70\x2b\xd2\x91\x35\x5c\x0b\xee\xb2\xaa\x91\x53\xe5\xcc\x84\xc5\xa3\x14\x06\x61\xeb\x79\x17\x72\xa2\x38\xa3\x8f\x6b\x4e\x0d\xe0\x00\x00\x60\x3d\x02\xcd\x15\x87\x21\xf1\x8e\x64\x9f\x06\x2a\x79\xb8\x86\xe8\x1e\x49\x0b\xf0\xb5\xa2\xbf\x40\x41\x11\xfa\xab\xe7\xda\xdc\x41\x87\x69\x51\x58\xd0\x66\x31\x84\x9f\xe2\xbb\xf0\x8d\xc7\x6c\xa5\xe3\x28\x21\xcc\xec\xd7\x16\x5a\x51\xf6\xc1\x3f\xfb\x8c\xfd\x63\x92\xc2\xbb\x6b\x46\x0d\xef\x69\x55\xb2\xbe\x8a\x27\xc1\xe1\xf5\x9e\xaa\x11\x4d\xd2\x32\x23\x79\x41\xa7\x0a\x02\x26\x19\x16\xec\x4f\x69\x59\xf3\x75\xe0\x41\xeb\x17\x20\xaf\xa2\xbe\xc8\xaf\x77\x4b\xde\x47\x70\x86\x5d\x07\xd6\x44\xf4\x29\x3b\x4e\x15\xe4\x4c\x6b\xc5\x67\x12\x9b\x50\x0e\x4e\x84\xb0\x3f\x52\x9e\xe1\x3f\x72\x3b\xcf\xc4\xe4\xb9\x9b\x10\xcc\x90\x98\xfa\xc5\x73\xb5\xb1\xcd\x51\xcb\x0c\x66\x98\xf8\x25\xe4\xa6\x90\x41\xe1\x6b\x4f\xc6\x1b\xa5\xeb\x83\x74\x1d\xfd\x72\xfc\xe3\x9d\xda\xf9\xad\xc4\xb5\x8e\xd7\xe8\x45\x99\x35\x7b\xb0\xae\xb4\x51\x2f\xa6\xd4\x27\x8a\x44\xd9\xd9\xac\xf2\x13\x87\xa6\x70\xe1\xd3\x09\xbc\x1f\xd4\xef\xf7\xf6\x7c\x75\xe9\x42\x03\xfe\x84\xb6\x53\x3a\xb1\x59\x11\x59\x11\xbb\x44\xe5\xfd\x88\x6e\x76\x72\x90\xc5\xea\xe6\x3e\x03\x4d\x93\x30\x2e\x07\xdc\x84\x72\x34\x62\x5f\x19\xd8\xdb\x53\x3c\xa9\x5d\x0d\x4a\x46\xf5\xb6\xfa\x36\x34\x65\x6e\xa9\xe7\x8a\xdd\x12\x3c\x17\xc7\xe5\x75\x08\xd0\xeb\x2d\x3b\xd1\xc1\xee\x20\x4d\x8c\xf3\xbf\x14\x2d\x0c\x05\xa3\x7a\xaf\xb1\x88\xbe\xd2\x8d\x4d\x51\x44\xa1\xed\x78\x69\xec\x9f\x29\x0c\xe6\xcf\xb4\x81\x5a\x6a\xb2\xc1\x97\x79\x36\x22\x95\xbb\x3d\xd5\x11\xc9\x2e\xc5\xa9\x3c\xd5\x28\xb7\x7c\xf9\xcb\xdd\xf5\x91\x09\x57\x67\x7c\x56\xfc\x80\x66\x0b\x86\xf5\x2a\xbd\x59\xa9\x4a\xc9\xcc\x59\x89\xcd\x70\x28\x5c\x7f\xdd\x31\xe2\xeb\x16\x35\xd9\x03\xdd\x6a\xb1\xcb\x76\x8c\x55\xf3\xc8\xa6\x5a\x42\x8f\x28\x5d\x17\x1e\xf1\xe7\xbc\x6a\xf6\x79\x6a\x3c\x21\xcf\xd9\x8d\xfa\x2a\x3a\xde\x48\x61\x71\x32\x71\xe3\x09\x53\x79\x2b\x50\x46\x81\xff\x37\x6a\x3e\x9c\xd6\xd1\xb9\x8c\xb7\x77\x5d\x19\x91\xde\x9c\xaa\x0a\xce\x05\xdd\xb7\x82\x41\x08\xf6\xaf\x27\xb1\xff\x61\xdb\x3f\x46\x6d\x2f\xfc\xa9\x9f\x07\x2a\xb0\xf8\x02\xd7\x5e\xf0\x63\x57\xa7\xaa\x98\xc4\x3a\xf1\x88\x54\xae\x21\xaf\xc2\x60\xcf\xa1\x29\x21\xbe\x87\x3b\x77\x8e\x2a\x86\xc9\xd2\xc2\xe6\xc5\x0c\xfd\x39\x87\xd4\x73\x82\x0b\x37\xe8\x69\xb0\xde\xde\xd6\xb5\x8d\x61\x66\x8a\x32\x56\xa5\x74\xd7\xda\xf3\x70\xb4\xb6\x6a\xc5\xc8\xac\x59\x58\x33\x39\x52\x98\xab\x92\xdf\xc4\x00\x63\x62\xdd\x51\x36\x95\xdb\x2a\x02\xc9\xa2\xe1\xa8\xc8\x9f\x50\xbc\xfd\x47\x68\xb9\x83\x14\xf7\xdf\x82\xcb\xc3\xc7\x0f\x7a\xc3\x4a\x59\x40\x5e\xfe\x03\x1a\x7e\x87\xd0\xf6\xbf\x81\xf7\xcd\xf8\x32\x7a\x76\xf4\x4d\x66\x48\x29\x1f\x07\xd9\x1d\xaa\x91\x20\x8b\x3d\x81\x60\x0b\x8d\x9e\x22\x50\xce\xc7\x0f\x5b\x31\x93\x49\x9a\x15\x23\x6b\x90\x79\x6e\x13\x6a\xf6\xc0\xf6\xfd\x36\x3c\x4e\x9e\x86\x91\x89\xa3\x7c\xdc\xf1\x35\x0a\x18\xe8\x4b\xa0\xe9\xe1\x33\x10\xa3\xcf\xd3\x0c\x3b\x02\x4e\xa9\xef\x69\xd3\xaa\xef\xa9\x22\xc6\x6a\x94\x0c\xf2\x59\x0f\xb6\xfd\x1e\x66\x8c\x34\x14\xd4\x5c\xda\x52\x80\x8e\xf3\x8a\xda\x6d\xc2\x55\xd9\x7d\x18\xf2\x55\x83\x7f\x29\x05\xb8\xb8\x20\xf5\x33\x51\x1c\xf1\x2d\x8d\x3d\x9b\x8a\x0c\xfe\x20\x50\xcc\x95\xbb\x5a\xc3\xf9\x8c\x6a\x6c\x7e\x34\xf5\xe1\xce\x0b\xff\x84\x72\x04\x84\xf7\x67\xa7\x8a\x74\xbd\xa5\x10\xec\xa3\x32\x19\xb2\x84\xa6\x08\xb3\x76\x1c\xcf\x7e\x4b\x73\x96\xb2\x74\x92\xe6\x26\xce\xe7\x94\x04\x6d\x07\x85\x55\x94\x95\x3f\x52\x6c\x4b\xd8\x26\xe0\xb3\xd9\x54\x88\xa3\xb9\xe0\x39\x1e\x23\x9b\xac\x45\x59\x9a\x20\x07\x9e\xf1\x7c\xc6\x8f\x14\x07\xe9\x4d\x1c\x30\x08\x36\xbe\xef\x51\x53\x70\xe3\x99\x51\x2f\xe5\x89\x9e\xc7\xa4\xdc\x53\x8c\xd5\x47\x36\x7d\x3d\x61\x3d\x4a\xf2\xd9\xce\xcb\x07\xb8\x6e\xbb\xa5\x7c\xa6\x50\xb9\x91\x92\x7e\x15\x5a\xb3\xd2\x80\xda\xf4\x27\x51\xb8\x6a\xb3\x1c\x1a\xfc\xc2\x71\xa8\x55\x31\x1c\x65\xfd\xbc\xb2\xaa\x26\x00\x70\x94\x26\x8f\x7a\xe7\x8e\x53\xd0\xe4\x75\xbf\xe7\xd2\xd4\x2b\x75\x94\xa4\xf2\xb1\x43\xf7\x1b\x08\x9e\x59\x52\xc2\x63\x39\x6f\x04\xc4\x58\x6a\xdb\x58\x5d\x92\xf2\x56\xdb\x24\x23\xe0\x82\xe7\x7d\x81\x0e\xc0\x37\xe4\xa1\x0a\x23\x8f\x29\x2e\x80\xf9\x9d\x2b\x73\xe1\x50\x37\x5f\xb7\xa6\x20\x71\xa5\x8e\x3f\xab\xce\x2a\xbd\xd3\xba\x0b\x92\x0d\x8b\xa7\xb0\x1f\xe3\x04\xf9\x07\xa5\x08\xf1\x5d\xda\xd2\x24\x8a\xa7\x2f\x2d\xfa\xc1\xb4\x1f\x09\x3e\xa5\x1a\x32\xb4\xf4\x1e\x4e\x3d\xd6\xe9\x02\xbe\x2a\x87\x3e\x81\x52\xfc\x3b\x81\x23\x07\x49\xe2\x55\xda\xb5\x30\xe5\x99\x39\x25\x2d\xae\x6a\x64\x70\x0d\x06\x26\x0b\x8e\x6a\xa3\x83\xab\x98\x7a\xe2\x2b\xd0\x04\x3f\x2f\x74\xd3\x32\xcb\x3b\x8a\x03\xfc\x2d\x45\x39\xf8\x16\xaa\x18\x38\x59\xa3\xb4\xb0\xe1\x28\x49\xe3\x74\xb8\x01\xfc\x1b\xca\x8a\xa7\x74\x26\xb0\x55\xd3\xa5\x68\x05\xf7\x4f\x32\x3b\x8e\x6c\xc6\x5d\x04\x5d\x4e\xe6\xeb\xc0\x77\x1d\x05\xc3\xa5\xd0\x58\xdf\xab\xe1\xb6\x3c\xb4\xe0\x96\x8b\x31\x8a\x2a\x7f\x1a\xc6\x56\x49\x31\xff\xdd\x54\x29\x9a\xff\x9d\xca\x86\xcc\x64\x12\x1b\xea\x4d\x55\x43\x8e\x97\x71\x33\xf0\x50\xf9\x9b\xba\x92\x97\x66\xab\xca\x30\xec\xc6\xb4\x86\xdf\x15\x18\x5c\x91\xae\x27\xb3\xd5\x3b\xe3\x55\xa2\xdd\x3c\xb4\xf4\xd9\x87\x1a\x7d\xf7\xb0\x35\xee\x89\x92\x81\x7d\x1d\x87\xa8\x08\xdd\x62\x2e\x02\xba\x70\x52\xc9\x33\x9f\xd1\x54\x8c\x47\x7a\x6d\x7e\xc9\x2b\x85\xcd\xd6\x4d\x06\x50\x0f\x43\x17\x15\xc8\x55\x8b\x1c\xae\xd8\xa4\x1c\x66\xd6\x82\x4c\xcc\x72\x93\xf4\xb3\x22\x3d\xd9\x52\x4f\x1a\x64\x66\x9c\x73\x0f\x1f\x13\x80\x55\xff\xc5\x43\xbe\xe3\x88\xc9\x27\x34\x60\xec\x9c\xa2\x68\xda\xd7\x27\xb1\x89\x92\x7c\x4f\xc7\x19\x6e\xfd\x3d\xfe\x08\x36\x8d\xeb\x81\x22\xf4\xbc\x37\xd5\x04\x77\x7c\xb0\xa0\x48\xab\xcd\x0f\x3b\xd3\x31\x6c\x40\xc0\xa5\xdf\x55\x2d\x9e\xcc\x86\x69\x36\x10\x57\x29\xa7\x3d\xa2\xd0\x82\xfe\xd5\xf7\x4d\x8c\xdd\x1d\x11\xc3\x9f\xd0\x8f\x39\xeb\x8e\xea\x2b\x09\x24\xb0\x05\x3c\x46\x6e\x08\x8a\x96\x8d\x52\xa7\x48\x30\x3b\x27\xa1\x22\xcd\xec\x63\xb4\x71\xe0\x48\x64\xa0\x89\xd4\x54\xe9\x29\xb0\x42\x1e\xd0\x04\x45\xc0\x72\x06\x67\xa2\xf8\xc8\x55\x23\x82\x4d\x1f\xca\x69\xc8\x2b\x81\x5f\xa1\x09\xf9\xde\x17\xa0\xf0\xe1\x0a\x4d\x6e\x43\x66\x51\x02\x81\x1d\xb5\x4d\xc8\x74\xcd\x14\x6c\x67\xed\xea\xf9\x4b\x4b\x2e\xaa\xab\x06\x9d\x59\x6f\x3e\x55\x24\x39\xce\x14\xec\x0c\x24\x4e\x77\x95\x84\x3c\x29\xec\x6c\x3f\x5e\x33\x5f\x33\xeb\xab\x75\xe2\x8f\x87\x27\x9e\x57\xa2\x1a\x59\xda\x2f\xf3\x82\xf4\xfe\x95\x98\xe0\x8b\x3c\xb0\x37\x94\x87\xee\x2d\x15\xe8\x36\x41\x11\x87\xe7\x3d\x48\xa7\x1a\x3e\x70\xb4\xcf\x60\xda\xf1\x8d\xb6\xc6\x78\x7d\x92\x66\xc5\x1e\xe5\x67\x71\x09\x93\x52\xf8\x7e\x98\x88\x32\x0e\x4a\x00\x1d\x26\xdc\xe8\xcb\x3c\xa4\xec\x48\x0a\x95\xd5\xeb\x94\xca\x67\x53\x33\xb0\x9b\x98\x9c\x09\xce\x4e\xbb\x71\x69\xc9\xf5\xa7\x65\xb7\x5c\x4f\xb3\x78\xb0\x1e\x0d\xec\xac\xc2\xc9\xce\xf4\x34\xaf\xe0\xb2\x22\xd8\x9e\xa3\xb3\x48\xdc\x0c\x7c\x88\xb4\x12\x25\x26\x09\x23\x9b\xf1\x52\x76\xfa\x65\x52\xd4\xb8\x06\x29\x02\x3c\x3b\x30\x8b\x5c\x33\xde\xb5\xe9\x3a\x14\xa6\x4c\x7c\xca\xa0\x75\x62\xa4\xd6\xbd\x33\x65\x78\xf5\xd5\x6e\x31\x8a\xd0\x50\xc1\xd1\xcf\x32\xd5\x7c\xd3\x52\xe0\x3b\xd8\x8d\x92\x3c\xca\x5d\x82\x8c\xc0\xe7\x63\x84\xc3\x7c\xa3\x90\x3b\x2b\x69\x66\xf3\x42\x43\x50\xeb\x1e\x9d\x2d\x7a\xd7\xe2\x05\xae\x70\xda\xca\x5e\xe7\x44\xcb\x1a\x39\xd8\xb5\xc9\xc0\x0e\x66\xab\xb1\x05\x8d\x8b\x8d\x19\x11\x0a\xce\xf5\x14\x9b\xf2\xd4\x54\xd7\x02\x1e\xf3\x3d\x54\x16\xc1\x92\x2d\x4b\x11\x0a\xef\xba\xe8\xb1\x5f\x66\x03\x2b\xc6\xeb\x78\x58\x76\x48\x14\x45\xf2\x8e\xa2\xf9\x7a\x0d\xd2\xe3\x6d\x41\xd1\x7a\x54\x8c\x06\x99\x59\xe7\x6d\x4a\x1c\xcf\x34\x71\x45\x07\x45\x26\xdf\xd8\xa3\xca\x64\x5b\x3c\xe5\xd9\x50\x8e\x3e\x58\xce\x94\x6a\x4b\x40\x9e\xf7\xa3\x69\xc3\xb1\x5b\x48\x52\x0a\x0a\xf2\x27\x8d\x89\xf1\xf2\xc2\xa1\xee\xc8\x0c\x34\xe7\xfd\xb2\x66\x56\x5c\x6e\xe3\x35\x65\xe1\x6f\xfe\xcb\x7f\xf5\x1b\xf4\x30\xaa\x35\x2c\xde\x1a\x77\x5b\x39\x42\x54\x0e\x61\xb0\x9a\xb3\x62\x59\x76\xb6\x2c\x6d\xf3\x63\x60\xed\xc4\xb2\x87\x20\x76\xdd\x6d\x0d\x53\xde\x6e\x9d\xb4\x62\x83\xa5\x9f\x68\x1a\x78\x04\xd6\xb4\x0d\x4a\x15\xca\x37\x93\x82\x6e\xb5\x7d\x48\xa1\xd7\x97\x3f\xc6\x51\x62\x49\x4d\xcb\x29\x8e\xb1\xce\x05\xdf\x4c\xbf\x24\x79\x4b\x6c\xc3\x22\x4b\x87\x86\x7a\x8e\x4e\xe4\x57\x84\x87\x3d\x50\xf9\xbd\x60\x07\x8c\xf6\xc0\x4b\x07\xbb\x0b\x87\x76\xfb\xdd\xe8\x9e\xda\x8d\xee\xe1\xcd\x88\xcf\x8a\x0a\x6a\x7f\x41\xdf\x18\x63\xf9\x36\xcd\x47\xbe\x6e\x3b\x68\x0e\x76\x47\x69\x3c\xc0\x52\xc5\xa0\xbc\x3f\x55\xa3\xf5\x7e\x9b\x23\xed\xff\x3f\xba\xe3\xf3\x2e\xac\x8c\x23\x93\xa0\xf7\x25\x6d\x79\x58\xcc\x21\xae\x3f\xa6\x2a\xe7\xdf\x56\x41\xc0\xc8\xc4\x31\xf2\x46\xd4\x89\x1e\xeb\x79\x34\xf9\x19\x8e\x3f\x14\x6e\x67\xc9\x1f\xca\x2e\x88\xd2\x41\x96\x7d\x3d\x1c\x99\x64\x68\xf3\x3d\xaa\x87\x08\xbd\x62\x9c\x8d\x97\x14\xc5\x9f\xa5\xd3\x85\x0a\x54\x2d\x2b\x1c\x2a\xbb\x48\xc3\x9c\x0f\xd3\x40\x71\xd0\xbc\x8e\x5b\x9e\x96\xd9\x6e\x2f\xe1\x78\x4e\x19\xb5\x7f\x91\xb6\x72\xc4\x1b\x73\xc8\xd4\x91\xc2\x7f\x47\xc9\xc0\x70\xa9\x00\xef\xf1\x86\x83\xd2\x0e\x6c\xbc\x26\xe3\xcd\x78\x41\x7c\xbe\x80\x07\x95\x3a\xa1\x8d\xc6\x16\x06\xc5\xaa\x5a\xef\x04\x72\x74\xc0\x6f\x22\x0f\x33\x44\xa9\xe7\x04\x0d\x03\x5f\xab\xd7\xb1\x6e\x86\x76\xb7\xe2\xf7\xef\xae\x46\x62\xfb\x96\x12\xac\x7f\x1a\x05\x37\x2e\x40\x05\x3e\xcb\x45\x1e\x86\xdc\xf3\x64\x63\x91\x7e\xf5\xe5\x6e\x18\x47\x13\xda\x0f\x68\x0b\x11\x61\x92\x6a\x48\x44\xa1\xfc\x59\x15\x47\x0e\xcb\xd8\x14\x69\x96\xcf\x55\x7f\x15\x59\x0a\xe3\x75\x1d\x46\xca\x19\x69\x7d\x03\x13\x19\xcb\xe5\x58\xa0\x81\xa0\x0a\xe2\x31\xb0\x93\x88\x0c\x83\xa9\x5c\xe7\xa4\x5f\xdd\x93\x5d\x74\xe9\xc6\xc0\x64\xab\x64\x7c\xcb\x50\xd9\xa9\x8a\x66\xcf\x2b\x5a\xfe\xf3\xf4\xa6\x11\x06\xcc\xa2\x7a\x8a\x9b\x9b\x35\x45\x4f\x9b\x47\x03\x9b\x84\x80\x42\x28\x4a\xd6\x8b\x4a\x52\x90\x7f\xd6\x66\x2b\x69\x36\x9e\x55\xef\x9f\x04\xf2\xb7\xb9\x7c\x8a\xe5\x7d\x3b\xf0\x14\x95\x47\x36\x9f\x51\x5a\x2c\x31\xb3\xd0\xaa\x41\x45\x00\x79\x9b\xe2\x20\xbe\x56\x9c\xcf\x24\xb1\x61\x11\x85\x65\xa1\xc4\xdf\x3f\xd2\xe2\xef\x1f\x35\xb5\xfb\x17\xba\xab\x16\x0f\xc1\xa2\xf4\x4a\xee\xf0\x56\x4b\x07\xed\xc0\xc1\x6e\x91\x95\xb9\x2e\x0a\x5c\xac\x43\xa8\x9f\xf6\x01\x2d\x61\xb7\x98\x78\x20\x74\x47\xd5\xa1\xbb\xac\xaa\x98\x61\x9a\x17\x6c\x0d\xe1\x84\xdf\xaa\xd1\x14\x66\x6b\xf5\xad\x70\x24\xc2\x99\x02\x6f\xf1\x81\x7a\x27\x51\x32\x88\x32\x1b\x16\xf1\x06\x72\x54\x41\xb5\x79\x17\x9c\x4b\xca\xcd\x7e\x30\xeb\x9b\x4f\x5c\x87\x91\xa2\x70\xc7\x7b\xc0\xe0\x30\xc4\x92\xfa\x41\x23\x20\xa8\x0e\xc3\xd5\x28\x5c\xed\x9b\x70\x95\x4f\x1d\x51\x56\xf2\x03\x7a\xc9\x45\xf8\x83\x28\x9f\xc4\x66\x83\x43\x11\x89\x17\xd4\x76\xcd\x2e\x94\xd8\x96\x66\x7b\x0a\x0f\x76\x5e\x11\xfc\x92\x72\x6c\xb3\xb4\xcc\x09\x53\x84\x0a\xe3\x51\xbc\x01\x8e\x6e\xa6\x3e\x57\xbd\x83\x8d\x06\xa7\xf9\x71\x3c\xa6\xb8\xd3\x4a\x3e\xf5\x5a\x39\xee\xa7\xb3\x4a\x3f\x97\x05\x61\x05\xa8\xed\x71\xbd\x88\x67\xb1\x1b\xec\x6e\x58\x1b\xbd\xfa\x6a\x37\x33\x51\xdc\x8f\x56\x05\xc9\xde\x66\xec\xe5\x97\x23\xcb\x79\xb1\x87\x22\xc6\x41\xeb\x64\x01\xaa\xf1\xab\xa9\x2a\xf9\xdf\x08\xb4\x98\xf5\x5a\x94\x0c\xa9\x98\x2a\x0c\x22\x9a\x30\x4e\xd7\x79\x59\x9a\x2d\xe8\xce\x20\xda\x3b\x1b\x78\xf3\x9e\xdb\xaa\x13\xf7\x79\xd8\x05\x3b\x63\x9d\x6a\x34\x14\x45\xe5\x60\x23\x89\x08\x47\x26\x8b\xd3\xa2\x40\xf1\x44\x3c\x48\x95\x0a\xcc\xa5\x46\xb1\x7f\xff\x52\x15\x76\x0c\xa8\x33\x8a\xfa\xc3\xac\xc6\x9e\xb0\x14\x8e\x1c\x25\x7e\xd8\x4f\x2a\x5a\x65\x98\x26\xa1\x8d\x00\xb6\x16\xed\x31\x5d\x88\xf4\x1b\x47\x98\xd9\x41\x54\x6d\xb6\x30\xd1\x62\x68\xda\x74\xd7\xaf\x71\xdb\xf4\x02\x66\x83\x08\xa0\xd3\xf0\xa3\x82\x8b\xa3\x55\x89\xb6\x8b\x8e\xdc\x51\x3a\xfb\x45\xdb\xb6\xfa\x58\x1c\x8e\x9f\xc3\x99\x2b\xfa\xe9\x4a\x8e\xf2\x8e\x62\x2e\x14\x91\x45\xb9\x02\xa7\xd0\xaf\x68\x61\xb2\x48\x49\xbd\x5f\xe3\x37\x81\x2d\xaa\x6a\x3a\xc7\x87\x25\x5f\x1f\xa2\x2f\x2f\xd2\x82\x3b\x17\xe6\xe2\x22\x50\xd1\x51\xf5\x99\x9d\xba\xa7\x1e\x7d\x12\xdf\x04\x8f\x4a\xb0\x76\xe8\xa5\x7f\xaa\xf8\x0f\x30\xa0\x40\xbf\x94\xb5\x99\x85\x83\xa2\x42\xf0\x1b\x1a\x88\x71\x2f\xe8\xbc\x7c\xc0\x91\x84\xd5\xa0\x6d\x83\xdf\xc8\x36\x17\xd3\xce\xef\xfd\xae\x74\xfc\x89\xaf\x83\x89\xf0\x97\x9c\x19\x88\x17\x08\x1d\xc7\xf8\x63\x6f\x05\x60\x5b\x30\x5d\x25\xe8\x7c\xf9\xcb\x4e\x0f\xa5\xf3\xd5\x97\x3d\xd3\x74\xdf\x3e\xce\x7d\x6e\x92\x7d\xc1\x36\x5b\xc1\xe1\x6d\xdf\x02\x70\x01\x7f\xf2\xc6\x54\x41\xe7\x9f\xde\xa4\x57\x4f\xe7\xfd\xd3\x4f\x41\xce\x1b\xeb\xe6\x03\x25\xf3\x74\x0c\x58\x6d\x71\x13\xf3\x4a\x7f\xef\x01\x93\x8d\x64\xfd\x7f\xa7\xd5\x85\x4f\xfc\xab\xa0\x6e\x29\x2d\x12\x38\xd0\x89\x01\x34\xfc\x1b\x81\xaf\x68\x0d\x32\x9b\x0f\x12\x9b\x21\xa2\x69\xd3\xfc\x97\x0d\x2b\x2e\xc3\xd5\x8d\x59\x0f\x2a\xbf\x83\xc9\x80\x9e\xc8\xff\xaa\xf8\xae\xf7\xf0\xd0\x38\xfb\xbe\xab\xd4\x82\xc6\x51\x0c\xc9\x14\xa1\x84\xfa\xb3\xf7\x62\xa3\xae\xb0\xb4\xd4\xcd\x4a\x66\xe7\x88\x28\x0f\x97\x72\xf9\x46\x91\x56\xc7\x26\x5c\xb5\xc9\x1b\x11\xf4\x88\x99\x43\xaa\x70\x44\x0f\xc9\xc2\x04\xad\xfb\xb3\xd8\xf3\x38\xba\xc2\x5f\xe4\x80\xb6\xad\x31\x49\x22\x88\xd5\xf8\x54\x73\x43\x44\xdb\x7c\xf3\xe4\x62\x0b\x3d\xea\x40\x77\x92\xa6\x71\x47\x9d\x37\x68\x65\xca\xf4\xdf\xb9\x85\xef\x5f\x02\x7b\x76\x85\xfb\x71\x6e\x33\xa5\xef\x26\x3d\xab\xe7\xeb\x79\x4e\x95\x77\x2e\x2d\x1d\xd8\x43\x0f\xe3\x66\xa6\xe7\x8d\x61\x31\x60\x31\xb1\x93\x8d\xe0\x83\x6b\xec\x46\xac\x00\xe9\x9a\x2a\x6b\x9c\x2b\x6d\x19\x65\x5e\x98\x95\x15\x3e\x67\xa4\xa5\xa1\xda\x1b\x5a\x70\x26\x8e\x86\xa3\x22\xde\x78\x4c\x49\xf5\x30\x24\x4c\xc4\xdf\xa9\xaa\xcf\x09\x77\xe0\xed\x38\x81\x98\x13\x35\x20\xd5\x3c\xbc\xc3\x6b\xd2\xe5\xe8\xcb\x82\xb4\xb8\x11\x78\xa4\x5e\x87\x1a\x37\x22\x56\xa0\x93\xd2\x46\xe2\xba\x6f\x5f\x37\x35\xab\x35\xa7\x4a\x1a\x1b\xb1\xaa\xf4\x0d\xc4\x03\xfb\xa0\x0b\x51\x6b\x5b\x08\x29\x54\x56\x48\x62\x87\x59\xda\xf1\x10\x78\x1e\x69\x01\x56\xb7\x00\x14\xa2\x81\x35\xac\x0f\xe7\x28\xe0\x5e\x01\x11\x1e\x23\x68\x02\x1e\x6f\x14\x1e\x96\xe7\xbb\x69\xc2\x26\xb8\xae\x7d\xe5\x46\xe1\x73\x3d\x5f\x5f\xdc\xb5\xd9\x62\x2b\xf1\x6b\xdd\x74\x65\x85\x78\xee\xa2\x23\x53\xfd\xb2\x08\xcc\x68\x13\xc6\xf1\x24\x8a\x59\x60\x5d\xc8\xed\x9a\xe9\xae\xb8\xf3\xff\xfc\x0f\x7e\xe7\xb7\x97\x9f\xf6\x64\xa1\x8f\xf0\xbe\x11\x91\xfd\x09\x4f\x35\x31\x8e\xa3\x0d\x87\xcd\x95\x02\xbf\x7b\xfc\x18\x6f\xdc\x2d\x01\xaf\x16\x33\x4b\xfa\x87\xc8\x43\x6f\xd2\x82\xc2\x41\x7d\x17\x06\x14\xd8\x95\xae\x05\x2a\x0a\x85\x17\x23\xde\x26\xaf\x01\x7c\xc8\x43\xad\x4c\x74\x14\x9b\x2c\x5a\xfc\x67\xb0\xb1\xf2\x8d\xe2\x3c\x7c\xa8\x52\xaa\x68\x3c\xb1\x61\x08\x4e\x80\xb3\xfc\x60\x80\xa0\xf0\x70\x9f\x74\x39\x63\xe1\x31\x7e\x8e\xef\xe8\xe1\x3d\x17\x1b\x4d\xf7\xfd\x4b\xdd\x30\xcd\x26\x69\x66\x38\xcc\x11\xe7\x6e\x95\x52\x34\xa9\x2c\x54\xff\x9e\xd8\x44\x1a\x8e\x35\x1f\x06\x71\x68\x68\xb1\x77\xcc\x53\x7a\xbb\x33\xde\x68\x88\xb1\x80\xe2\xeb\xd4\xb2\x31\xaf\xa7\x59\xb6\x31\xa3\x24\x9e\x59\x14\x13\x25\x3c\x20\x95\x05\xbb\xd0\x52\x0a\x31\x59\x16\xad\x31\x0d\x63\x1b\x55\x98\xed\x5f\x78\x21\x5e\xe3\xb5\x58\xb1\x2f\x5f\xa1\x0d\x01\x8b\xf8\xba\x12\x71\xfc\xa9\xea\xf0\xff\xe7\xbf\xf9\xaf\x3a\xbe\x01\xf2\xb3\x9a\x22\xca\xce\xa1\x5a\x9e\x27\x4a\x65\x36\x10\x9c\x1d\x0e\xf3\xdb\xaa\xcf\xdc\x41\x6c\x25\x64\x55\x0f\x5a\x08\x63\x93\x43\x56\x97\xe3\x29\x0c\x16\xf3\x14\x02\x95\xef\xff\xaa\xce\x60\xf0\x0c\xf7\x30\xcd\x06\x64\xae\x4f\x01\xe8\x9f\xfe\x23\x54\x01\x94\x0f\xb3\x68\x12\x7e\x80\xe5\x23\x62\x47\x2a\xb8\x7f\x48\x19\xbb\xb2\x09\x7c\xd1\x83\xfe\xdc\xde\xb9\xab\xa7\x9a\xab\x73\x9b\x7e\xac\x0e\x99\xd7\xe7\xb0\x93\x4a\x05\x08\x2b\x53\xfc\x1b\xbd\x43\x3a\x5a\x78\xd8\x96\x99\x34\xce\x92\x5a\x35\x6d\x89\xb2\x78\x43\x99\xa3\x1c\xd5\xe6\x28\x47\xd5\x29\x5d\x8c\xaa\x14\x96\xb8\x56\xcb\x42\x5a\xba\x1b\x28\xff\x29\x05\x5f\x3a\xae\xb0\x8d\x61\x9a\xe4\xec\xf9\xf1\x0a\x87\x30\xef\x4e\x7d\x38\xf3\x6e\x5b\x85\x15\x06\x0f\x24\x96\xcf\x61\x95\x4a\x4d\x3e\x98\x7e\xa9\xe1\x60\xcf\x08\xcc\xc7\x95\xc4\x25\x3f\x08\xf6\xb2\x63\x74\xdc\xb8\xb0\xcf\xe9\x0c\x6e\x63\x02\x38\x27\x10\xaf\xae\x0a\x05\x45\xac\xd7\x9b\x14\x75\xe2\xfb\x02\xb6\x01\x90\xf4\x71\x6d\x8d\x75\x07\x27\xa2\x33\xe3\x72\x6f\xf2\x8f\xb5\xb0\xa3\x99\xd8\x59\xda\xe3\xb0\x95\xdd\xa5\x4f\xe1\x6b\x1c\xfa\x08\x6e\x99\x10\xc9\x37\x6d\xc7\x47\x15\x6f\xcc\xd2\xb7\x47\x10\x77\x72\xea\x81\x80\x9d\x9e\xd2\x0b\xb8\x3f\xf5\xa0\xf8\xef\x28\x25\x9b\xcc\x9a\x01\x55\xee\xb8\xbb\x38\xf5\x34\x96\x1f\xe8\x54\xe1\x32\x26\xb2\xf4\x20\xab\x3f\x86\x4a\xe1\xae\x5e\x8d\xf9\xfd\x98\x6b\x1e\x0c\x91\x67\x8b\xde\x48\xf5\xbd\x78\xc0\x94\xe5\xf8\x05\x9a\x2f\xae\xcf\xe8\xf7\xd4\xa7\x1b\xe6\xa0\x4b\x4b\xdd\x81\x4d\x22\x3e\xc6\xc4\x89\x51\x79\x9e\x5f\x6e\xd4\x68\x16\x17\xbb\xfd\x68\xa0\x34\x9e\x2e\x53\x98\x2d\xfd\x90\xa7\x35\x16\x3d\x2f\x2c\x93\xdf\x58\x71\x44\xd9\x42\x01\xe9\x22\x55\x0e\x7f\x58\xae\x9b\xbc\xb0\x54\x1a\xc3\x4a\x81\x4b\xac\x5b\xec\x55\xf6\x82\xf0\x1e\x0c\x6c\xfe\x21\x4a\x44\x44\x23\xb0\x25\x01\x5b\x21\x73\xf3\x28\xb7\xf6\x33\x4d\xbe\x7d\x89\x32\x8f\x86\x09\xed\x65\x4e\x9a\x72\xbf\x04\x9f\x47\x09\xd7\xc1\xd7\x81\xc7\xed\x34\x7d\x28\xf7\x2f\x75\xcd\x10\x24\x1e\x74\x23\x21\xa6\xc8\xd7\x6d\x8d\xb4\x21\x51\xf5\xdd\x83\x9f\x09\xd4\x7e\xd1\x24\x08\x1f\x78\xe9\x60\x77\x25\xb3\x5f\x2f\xc5\x2e\x11\x13\x01\xcd\x31\xbe\x6e\x65\x91\xda\xac\x88\x56\x22\x39\xdb\x1c\xda\xd2\x25\xd9\xe7\xdb\xce\xa6\x32\x19\x59\x93\xc1\x40\x0d\x71\xe6\x2c\x65\x4e\x88\xc8\x76\x51\x08\x82\x49\xf6\x6e\x8b\x56\xdf\x2b\xdd\x91\x8d\x27\x34\xf2\xcc\x69\x0c\x7c\x04\x71\x5e\x1d\x23\x71\x9a\xae\xe6\x44\x90\xd3\x43\x8c\xd5\xb6\x1d\x28\x95\x7b\x4e\x02\x44\x09\x52\xb9\x61\x6d\x01\x62\xc8\x64\x35\x84\x3d\x62\x20\x54\xbd\x47\x77\xed\x84\x82\xdf\x53\x2a\x4e\xb1\x1d\x9a\x90\x71\x32\x80\x9d\x5c\xd1\xe9\xc6\x1f\x29\xbb\xfd\xcb\x8d\xd1\xdd\xb7\xaf\x1b\x8e\xb2\x28\x2f\x22\xc9\xcf\x04\x83\x51\xf3\xff\xf4\x00\xb8\x75\x6b\xc8\x04\xdd\xf3\xd7\x50\x90\x14\x32\x5b\x93\xe8\xd5\x9d\x94\xfd\x58\xb1\xb0\xc0\xa2\x82\x68\x06\x5f\xab\x89\x1c\xa6\xa1\xe9\xf8\xd7\x74\x72\x5a\xab\x2a\x38\x2d\x47\x96\xb4\xcf\xb5\xab\x23\xfc\x74\xa4\xeb\x4d\xe3\x81\xef\xbf\xa5\x93\x95\x53\xad\x1e\xbe\xe1\xc8\x8e\xa3\xd0\xc4\x5c\x6b\x65\xc7\x74\x3c\x9a\xd8\xa7\x37\x27\xc9\x81\xee\x30\x36\x98\x61\x78\x92\xbb\x88\x14\xa4\x25\xef\x71\x75\x27\xa6\x1e\x18\x47\xba\x43\x39\x48\xa8\xe2\x68\xd8\x51\x56\x87\x0e\xb6\x17\x96\x05\x49\xed\x38\x55\xa1\xef\x2b\x55\xdf\xef\xd7\xcd\x34\xac\x7d\x8c\x46\x0a\xe5\x4e\x00\xbe\x81\xe5\x62\xc0\x0e\x0e\xc2\xfb\x1c\xba\x63\x9f\xde\x52\xd2\x4a\xd7\xa9\x18\x22\xc7\x87\x82\x7e\x9f\x02\x65\x93\x0d\x77\x55\x73\x8d\x61\x95\x52\xe7\xea\x38\xab\xd7\x6d\x85\x9d\x30\xe9\x86\x19\x83\x69\x28\xba\x0a\x1d\xc7\xe7\xfd\xa8\xf1\x2e\xaa\x2d\x22\xb6\xc3\x88\x1b\x97\x1e\x2e\x8b\xad\x48\xa2\xb8\xcf\xab\x43\x34\x5e\xb5\xd0\x10\x47\xa0\xf3\x26\xb5\x52\xf9\x5a\x85\x95\x7d\x5b\x3c\x5a\x8d\x24\x8e\xab\xdb\x78\xb5\x38\xc6\x19\x25\x8c\xa3\x68\xd7\xa6\x02\x05\x6e\x29\xca\xd7\x5d\x95\xa8\x1c\xa3\x2a\x04\xe2\x6a\xb6\xc1\x14\xed\xd1\x6a\x7c\xb8\x61\x46\x16\xef\xa2\x3f\xa8\x64\xd8\xa3\xf4\xf5\x68\xc0\x84\x38\x6c\xae\x10\x6f\x42\xca\x06\x19\x47\x94\xec\xee\x6b\x95\x9c\x34\x8e\xcd\x24\xb7\xf0\xc5\x44\x39\xec\x7d\x0d\xf8\x7c\x3f\xf8\x42\xb3\x81\x5a\xbd\xed\x3d\xf4\x05\x31\x6d\x3e\x51\xda\x99\x1f\x61\x91\x23\x2a\xfa\x1f\xe8\x08\x46\xb6\xf4\x4b\x0e\x23\xb5\xaa\x1d\x23\x2e\x31\x33\xd8\x5a\x51\xb1\x8a\xf3\x68\x32\x91\x20\x9c\x47\x55\xe9\xaa\x3c\xd0\xa8\xf7\xa3\x2d\x2b\xf0\x40\x37\x2f\x4c\x51\xed\x43\xa1\xd4\x1b\xf1\xae\x59\xae\x8c\x6f\x36\xd5\x07\x9a\x78\x2c\xea\x7e\x78\x9c\x93\x4a\xf7\xf8\x86\x96\xd5\xfb\xb4\x51\x2e\xf8\x4a\x77\xdd\xf6\xc1\xb7\xc0\x4c\xe4\x98\x1c\xfd\xb1\xdb\x28\x1f\xa2\xaa\x7c\x4c\xb1\xa6\xc6\x26\x4a\x0a\x66\xc4\xfa\x19\x7d\x4c\xcd\xe8\x63\x6a\xc6\x85\x62\x0c\x83\xf0\xf2\x2d\x1e\x54\xe9\xcf\xaa\xaa\x38\xbe\x39\x43\x81\x49\xea\x48\x04\x9d\x9e\x50\x5c\xec\x28\xe9\xa8\x96\xff\x77\x50\x9b\xe3\x9b\xb6\x0a\x4f\x94\xe7\xa5\x65\xef\x14\xf4\xd4\xae\xa9\x7e\xf3\x69\xed\x72\xb1\xad\x8c\x12\x87\xa3\x34\x2f\xfa\x1c\xde\xd3\x2e\x2a\x06\x06\x0a\x89\x74\x4d\x79\x90\x5c\x6a\xfb\xf0\x95\xcc\xda\x37\x18\x79\xa9\xe5\xe0\xf9\xba\x91\x8b\x72\x30\x91\x40\xcb\x59\x1c\xdf\x66\xbc\xab\xdf\x6d\xad\x77\x78\x52\xe9\xc5\xca\x59\x50\xe6\x33\x9d\xaf\x2d\x70\x6c\xfb\xe7\x34\x9b\xf1\x70\xf7\xb1\xbc\xf1\x3a\xef\xe9\x66\x71\x91\x95\xe1\x2a\x8e\x3d\x36\x92\x0a\x34\x65\xe8\x7a\xe3\xc1\x96\x96\xba\x71\x39\xee\xdb\x8c\x3a\x2f\x78\x96\xff\x05\xa7\x0b\x8a\x21\x17\x14\xbc\xe2\xe7\x9a\xd9\x7d\x5c\x99\x09\x9a\x38\x4d\xec\x9c\xd6\xba\xba\xae\x45\x36\x18\x00\x2e\xd2\xce\xea\x15\x9c\xa5\xa7\x42\x95\xbf\xd3\xd3\xa8\xf4\xa1\x8d\x45\x50\xdf\x99\xfb\x2a\x92\xa3\xe7\x1a\x99\x2c\x8d\xa3\xc4\x08\x4b\x09\xab\xfa\x29\xe5\xe9\xfe\xbe\xa6\x34\x3f\xb1\x59\x73\x53\x8a\xa3\x37\x2c\x25\x62\x42\xf1\xa9\xa6\xaa\x50\x7f\xda\xac\x33\x07\xeb\x26\x5b\xa9\xa3\xa6\x2e\xa9\x10\x54\xcb\x1d\xc5\x66\x2d\x65\xb7\x40\x86\x15\xd2\x81\x24\x10\xc3\x36\xa9\xbf\x7e\x5a\x92\x18\xa8\x8b\x8e\x99\xb5\xca\x37\xae\x91\x3a\xb0\x2b\x36\x84\x68\x06\x3d\x1b\xa6\xc8\x11\x2d\xb0\x76\xa4\x8d\xd5\x1a\x25\x2b\xd1\x70\xe4\x61\xc1\x5c\x21\x69\xa8\x04\xe0\xd4\xfb\x43\xd7\xa7\x34\xfd\x01\x91\x61\xe9\xe4\x06\xec\xf6\xdf\x63\x92\xf0\x8d\x5a\x6d\x79\x99\xad\xd9\x28\x8e\x01\x13\xa9\x7e\x06\x89\xe9\xdb\x8a\x4a\x85\x21\xc3\xef\x9e\xf4\xc4\xbb\xcc\x78\x26\x26\x50\xdf\x97\x95\x35\x91\x32\xb4\xdb\x18\x4f\x8a\x74\xcc\x3b\x01\x0b\xb9\x04\x4a\xc4\x04\xd9\x1e\xa6\xd5\x05\x15\x8b\x99\x68\x90\xcf\xf9\xa0\xf3\xbe\x66\x75\x1c\x57\xf6\x2b\xe0\xfb\xc9\x3c\x57\xec\xe2\x63\x4a\x38\x2e\x8c\x6d\xb6\xaa\x6a\xe2\x88\x93\x25\x45\x91\xf9\xd9\x8f\xb2\x62\x34\x30\x1b\x35\x29\xaf\x2d\x25\xe5\xa5\x39\x16\x2b\x69\x66\x43\x93\x17\xa0\x9e\x20\xbc\xbb\x83\x6d\x51\x34\x69\x3a\xce\xd5\xec\x0e\xf0\x52\xfc\x0f\xb5\xa2\xc7\x38\x1d\x2b\x79\x85\x93\xaa\x2e\x75\x52\xfb\x3b\x4d\x8a\x68\x4c\xec\x19\xe7\x0d\x80\xf0\x9c\xaf\x5b\x8a\x53\xcb\x24\xb1\xea\x5e\x12\xe2\x78\x48\x40\xf2\xb5\xab\x38\x13\x97\x4e\x39\x0b\x1f\x57\x9d\x9b\x2b\x81\x22\x9b\x6f\xb9\xfa\x93\x19\xa4\xf1\x64\xd4\xe9\xec\xdb\x27\x4e\x8b\x5a\x11\xfc\xbc\xfb\xd3\x61\x46\xdc\x39\x4f\x53\xa1\x18\xc5\xf9\xfc\x2b\xa7\xb3\xa6\x9d\xf0\xbe\x6e\x31\xb2\x63\xab\x4a\xe1\x1f\xab\x89\xf9\x71\xd0\x34\x74\x3f\xc0\x82\x2e\xb4\xde\x00\x7c\x42\x8c\xf3\x47\x53\x2d\x17\xc4\xb2\x4c\x02\xca\x57\x02\x4e\xd6\x14\xb9\xb6\xd1\xc3\x9a\x16\x4f\xbd\x9d\xcb\x74\x7f\x95\xe8\xd9\x41\x19\x7a\xfa\xa2\x94\x9d\x3a\x4e\xc7\xf9\xb8\xd3\xa7\xcd\x6c\x98\x95\x51\xe1\x04\x72\xb5\xb0\x14\x5f\x6b\xee\x69\xe9\x17\x3f\x2a\xcc\xf7\x95\x42\x2b\x2a\x74\x58\x0e\xe7\x6b\xd1\xf8\x1b\x36\xfb\x1c\x3d\x39\xa2\xf1\xdb\x0a\xd0\x8e\xb9\xec\xf2\x92\xe5\x79\xe9\x09\x7e\x6b\xaa\x1a\x84\xdf\xc2\x2c\x16\x5e\x16\x3d\x96\xf0\xe8\xbd\xd3\xcc\x71\x4c\x69\x61\x72\xb5\x25\xb1\x65\xce\xde\x06\xc8\x4f\x3e\x9c\xaa\x14\xec\x43\x15\xbe\xf5\xb3\x68\x30\xc4\x6b\x76\x2a\x9c\x4a\x4e\xca\x07\xaf\xab\x94\x2c\x26\x0a\x61\x85\xf4\x9d\xaf\x55\x64\x9e\xd8\x38\x4f\x13\x3e\x67\xb0\x39\xb0\x78\x81\x4b\x81\xbd\x42\xc8\xf5\x9d\x75\xbc\x97\x0f\x48\x1d\x0f\x8e\x0b\xce\x73\xf8\xc0\x4b\x07\x75\x87\x45\x12\xd6\x6d\x58\xce\x73\x19\x34\xa8\xd9\xdb\x54\x0b\x16\x70\x0e\xde\xf3\xb1\xeb\xcc\x52\xf5\x0e\xa5\xd2\x87\x88\x11\x80\x02\x38\x8d\x8c\x87\x7f\x45\x6d\xd6\x94\xc9\x42\x8c\x1f\x7b\x8e\xf8\xef\x2a\x11\xcf\xd3\xca\xb0\x0b\x50\x18\x51\xfd\x70\xae\xb2\x36\xca\x06\xc0\x8b\xb8\xf2\xa2\xe3\xa5\x6a\x88\x08\xa0\xdb\xe2\x53\xed\xd2\x42\x33\x89\xac\x78\x11\xa9\x36\xce\x41\x9e\x6d\x57\x95\xd2\xe2\xb6\x03\x51\xbd\x66\xc2\xaf\x97\x82\x2b\x41\x1c\xce\x10\x63\xbe\x69\xac\x2c\xd2\xb0\x18\x44\x6b\xd1\xa0\x64\x64\x32\xba\x64\x0f\xa6\xbe\x7d\xf6\x40\x29\xf5\xe4\xd6\xae\x46\xc9\x70\x6f\xc7\x15\x34\xdf\x9e\x2a\xcb\x21\xd6\x80\x16\x57\x79\x4c\x0b\x71\xff\xf4\x8b\xea\x1a\xc2\x3c\x29\x67\x6b\x74\x63\xe0\x85\x3f\xce\xbb\x02\x63\x5a\x14\xe9\x8c\xae\x70\x74\x9c\x09\xec\x39\xcd\x7b\x79\xd0\x60\x6d\xef\x5b\xd0\x0a\xc0\x8a\xda\x85\xb2\xa6\x14\x5d\x9e\xf3\x6f\x1f\x38\xb4\xea\xa4\x86\x99\x13\x76\xb2\x73\x28\xd8\x20\x08\xb8\xa5\x76\x9d\xd3\x53\xdf\xbe\xbc\x45\x5d\x51\xfe\x05\x85\xc6\x3e\xad\x29\x95\xec\x80\x23\x3c\x8c\x9d\xeb\x79\xff\x92\x22\x78\x08\x3d\x50\x0b\x3f\x34\xea\x6d\xcb\x07\x7e\xad\x5a\xd9\x45\x94\x8f\x3a\x3a\xea\x52\x60\xa7\x4b\x8d\xf7\x4e\x82\x9a\xfd\xcc\xe4\xd1\x9a\xcc\x17\x96\x54\x55\x82\x8d\x9f\x7a\x7f\x81\xcc\x6c\xcc\xf8\x23\x01\x6c\x08\xf1\x8e\xf1\x65\xb1\x13\x2d\xb4\xf3\x6e\x6e\xc7\x51\x62\x32\x6e\xa9\x61\xd2\xf3\x5c\xe6\x1b\x37\x7f\xf3\x71\xe4\xc5\x24\x51\x29\xc3\x5e\x2c\xdd\x12\x7a\x26\x51\x5a\xf5\x9d\x8a\x28\x29\xca\xc8\x29\x8a\x3a\x67\x56\x75\xbc\xb4\xf1\x03\xcc\xaa\x9d\xf3\x10\xc1\xb3\x54\x79\x73\x16\xed\x2a\x42\xa5\x0f\xc5\x6e\xf4\x21\xc5\xe6\x2c\x6c\xd5\xb0\x6b\x5f\x5a\xea\x86\x51\x16\x96\xe3\x35\x11\xdf\x7a\x85\x97\x10\x4b\x0d\xf2\x4d\x0b\x78\xe2\x40\xb7\x1f\x97\x96\x83\x7b\xd5\x41\x72\xed\x24\x25\xa5\x9c\xa5\xb9\x7d\x82\xa6\xa3\xac\x6a\x2f\x35\x7c\x57\xd5\x32\x1e\xa5\xad\x0f\xbb\xfb\x17\x41\x4a\xc5\xf2\x3b\xb3\x43\x42\xd8\x81\xea\xa1\x5f\x86\xf2\xc0\x09\x6c\xaf\xf8\xf8\x99\x4d\x25\x95\xf8\x90\xa6\xb9\x28\xab\xe9\x7c\xe4\xcf\x34\x11\xeb\x56\xe3\xac\xda\xbf\xd4\x35\xd1\xaa\xdd\xa9\xdb\xbd\xcf\x17\x16\x7d\x5e\x3d\x1f\x0d\xe7\x7c\x25\xe7\x9b\x53\x9d\xb2\xb1\xd0\x92\xf3\xc1\x73\x93\xfe\x99\x9e\x12\xb8\x7a\xd8\x28\x08\x2c\x1c\xea\x4e\x0c\x60\x9c\x6d\xaa\xac\x12\x9e\x02\x0a\x41\xe4\x8e\xea\xb0\x46\x83\xe4\x02\x62\x69\xbe\x51\xda\x4a\x5a\xb4\xaa\x29\x45\x21\x05\x7d\x9f\xc9\x16\x23\x6b\x8a\x2c\x0a\x4d\x0c\x75\x36\x49\x4d\xaa\x77\x28\x39\xcb\xce\x2f\x5e\xad\xd6\x61\xda\xf1\xa0\x6b\xa8\x6d\x4a\xe1\xc3\x1f\xc7\x66\x65\x38\x32\x49\xa7\xa6\xd5\xe4\x5a\x97\xff\xe9\xd9\xba\x76\x86\x99\xcc\xf9\x2a\xf6\x66\xa0\xc2\xca\xe3\x78\x58\xb4\x35\x8f\xa9\x6c\xf7\x34\xdc\x6f\xf8\x1f\x54\x7e\x2e\x3e\x71\x36\x99\x51\x35\xef\x73\x2a\x78\x02\xb9\x92\xcd\x4d\x15\xf0\x64\x98\x99\x64\x60\xcb\xac\xe3\x5f\x05\x6a\x51\xc2\xff\xf8\xbc\xee\x5f\xc5\xf1\xc6\x1c\x7d\x05\x4c\xd8\x6b\xb4\x1e\x51\xb5\x3c\x8a\xec\x8b\x35\x10\x10\x35\xf1\x4f\x11\xea\x4c\x7c\xb7\x77\x6a\xb9\xec\xdb\x47\xdf\x7e\x52\xa4\xab\x55\xce\x6c\x51\xce\xc1\x9f\x99\x21\x8d\x80\x5a\x58\x81\xd2\xd3\xa5\xa9\x1e\xd6\xea\x4d\x23\xdc\x7a\xbb\xa6\xfa\x57\x0e\x36\x50\xbb\xc6\x11\x88\x33\x47\xda\x01\x1d\x27\x76\xc7\x82\xf7\x28\x70\xed\xea\xb5\x88\x10\x47\xc9\xa0\xcc\x8b\x2c\xf2\x8e\xd2\x52\x64\xe9\x10\x49\x9b\xaf\x1b\x3b\xd2\xf2\x81\x6e\x99\xe4\x69\x1c\x85\x91\x8b\x9c\x21\x51\x01\x21\x52\xbe\x6e\x64\x35\x87\x5e\xea\xa6\x6b\x36\xcb\xad\xc9\x67\x7d\x6b\x4c\xeb\x59\x6f\x63\x34\x10\xdb\x20\x0c\xc7\xf5\xa3\x0d\xd9\x6a\x9c\x01\xf0\x9b\xf2\xdc\x0e\xec\xcf\x02\x18\x55\x3c\x3c\x9b\xa7\x59\x81\x97\x80\xf3\xe1\x03\x8e\x23\xf8\x6e\xaa\xbc\x3e\x3e\x0e\x7c\xc3\xfb\x96\xf2\x74\x79\xa0\x72\x8d\x89\xc9\xa2\x7c\x37\xfe\x04\x7e\x6b\x3b\x50\xc2\x46\x28\xcb\xe3\xa1\xee\x63\x7a\xe3\xa7\x66\xd0\xe8\xe7\x1b\x60\xdc\x71\xce\x5f\x51\x09\xa3\x7d\x9d\x42\xe5\xe1\x6c\x0d\xcb\x4b\x7f\xdf\x19\x03\xb8\xbc\x19\xd1\x0d\xc0\x5b\xd7\x35\x5e\xd5\x64\x59\x64\xb3\xb9\x6a\xa8\x71\xf4\x32\xb2\xc9\xf1\xec\x1c\x33\x1c\x89\x2b\xe6\xd3\x1e\x2a\x22\xa3\x67\xfb\x50\xe9\x3a\x8c\xa3\x24\xaa\x46\x3b\x9f\xf1\x6b\xea\x8a\x82\x5c\x6d\xe3\x8f\x73\x00\xa5\xea\xf8\x23\xb3\x46\xb4\xc5\x7d\xfb\x1c\xf3\xa4\x3a\x14\x05\x00\xe6\x0f\xdc\x61\x66\xaa\x80\x31\xe6\x8e\x14\x0a\x99\xd7\x11\x5e\x4b\xb9\x41\x29\xeb\x35\x9d\x41\x17\x0e\x75\x8b\x51\x16\xad\x14\xb5\x60\xf5\x82\x92\x07\xba\xa0\x7a\xaf\x79\x91\x66\x1b\x7b\x3c\x75\xff\xa2\x27\xa0\x1e\xbe\x36\x55\x45\xfe\x8f\x30\x39\xf8\x98\x40\xcc\xc6\xa9\xa8\xda\x8e\xaf\x06\xde\x48\xe0\x74\x9b\x02\x74\x38\xb2\x66\x62\xb3\x19\x0f\x8c\x61\x8b\x49\x24\x40\x77\x95\x6c\xc5\x89\x46\xf9\x90\x96\x6b\x1e\x0d\xec\x9c\x67\xcc\xde\x51\x8e\x99\x50\x65\x02\x92\xea\x27\x14\x3d\xa2\xf6\x09\xcd\x03\x9c\x9d\xf7\x1b\x03\xf6\x95\x6e\x3f\xb3\x65\x62\x33\x1e\x30\xc1\x98\x2a\x92\xed\xa7\x6d\xc8\x99\xbc\x28\xfb\xfd\x34\x4b\x10\x8d\x38\x3d\x5b\x5f\xd7\x6d\x53\xa8\x8b\xd3\x7e\x7f\x43\x74\x2e\x51\x04\x3b\x85\xf3\x81\x6f\xb4\xdd\x23\x09\x8e\xec\x56\x5a\x5e\x9f\xe0\xd5\x8b\x14\x41\xf5\x54\xd2\x1f\x53\x12\x7f\xa8\x7d\x60\xb9\x3e\x54\x70\xd4\x47\x7a\x8f\xfb\x6a\xe4\x6b\xd9\x1e\x8f\xf6\xbb\x32\xd5\xd5\x54\xcc\x01\x31\xd9\xa4\x8c\x11\x9f\xf2\x57\x98\x86\x08\x1f\x2f\x4c\x15\x81\xeb\xb2\xf6\xd1\xfe\xb6\xca\x77\x73\x9b\xad\x45\xa1\x7d\x1c\x7f\x1f\x5f\x1c\x1d\x1a\xa1\xc1\xf8\x7c\xfe\xa8\xd6\xe3\x39\x82\xc6\x3f\xf2\xd6\xe3\x34\xc5\xb0\x1c\xef\x52\x3e\xea\x08\xb9\x87\x45\xd9\x0b\x32\x15\x42\xce\xd5\x8d\x63\x8d\x24\x3c\xa6\xcb\xb3\x33\xbd\x66\x63\xa3\x6f\x72\xab\xe2\x98\x53\x2a\x8e\x69\x2a\x2b\x55\xfb\xaf\x49\x44\x30\x1b\x78\x91\xf3\x1a\xe1\x7d\x5e\x55\xf0\xf2\x32\x2a\xf2\xdd\x1d\x27\xd3\xca\x3e\xb4\x2c\x97\x35\x55\x7c\x53\x96\xe2\x10\x21\x2d\x5f\x23\x65\xc4\x37\xb6\xd4\xad\xa6\x16\xf8\xbe\x6e\x9c\x0a\x92\x45\xa4\xe5\x7d\xb6\xc3\x85\x10\xfc\x29\xbc\x04\x6e\xc7\x35\x92\x0b\x72\x9c\x4b\x27\x13\xe9\xd4\xe0\x0f\x5c\x53\x7f\xec\x9a\x42\x3b\xe6\x0e\x00\xc8\x5a\x20\x81\x22\x04\x5f\xd2\xd6\xb5\x36\xcf\xb3\xfc\x85\xce\x0e\x0a\x9e\x57\x80\xbf\xa4\x04\xe6\x57\xa2\xd7\xed\x60\x4e\x59\xf8\x7f\x18\x28\x31\x7f\x1c\x2e\x18\xc9\x4f\xa6\x0a\x1a\x0d\xb1\x01\xfe\x0d\x67\x43\x51\x26\x03\x9b\x55\x79\x09\xeb\xf5\xe1\x84\x82\x16\x29\x5f\x6f\xee\x2c\xc6\x2d\xcf\x77\xcd\x40\x76\xfc\x7a\x75\xec\xb6\x3a\x11\x6f\x6b\x47\x6e\x9b\x3c\xee\xcb\x9f\x0c\x6d\xc7\x3e\x77\x45\xf9\x7d\xff\x80\xb6\x49\x64\x03\x73\x9b\xaa\x93\x75\x6f\xda\xf9\xda\x82\x37\x45\x3e\x3c\xcf\x47\xf3\x17\x48\x1d\x98\x43\x02\xa4\x0f\x5a\xc1\x07\x79\xdb\xb3\x80\xea\x01\xf2\xfe\xef\xf0\xb2\x31\x73\xef\xa8\x23\x8c\xa2\x0f\x8a\x75\x3a\xce\x0b\x15\x1b\xa4\xac\x7e\x55\xb3\xa5\x48\xc5\xe6\x7b\xea\xaa\x59\x5a\xe8\xaa\x7a\x28\xf1\xf7\xad\x1e\xca\x79\x7a\x38\x3c\xed\x25\x2d\x22\x7e\x7d\xea\x61\x47\xd7\xdb\x76\xd5\x35\x9b\x29\xac\x0a\x0a\xb8\xf0\xe4\xe4\x6b\xf5\x28\x7d\x13\x16\x36\x8b\x4a\x28\x32\x21\xe2\x62\xfe\x30\xdf\xb4\x31\x74\x87\x69\x41\xb0\x3b\xa9\x82\x75\x9c\xaa\xd5\x16\x0e\x3c\x56\xea\x6a\x8b\xb6\x26\xa4\x38\x99\xf0\x49\x21\xbc\x66\x1f\xc5\x5f\xd6\xad\xf5\x32\x4b\xec\x00\xd6\xc3\x1a\xa8\x8d\xb0\xe7\xc9\x9e\x7f\x71\x73\x54\xb4\x92\x34\x53\x01\x31\x19\x26\xee\xa0\xf3\x0e\x3b\x00\xe5\x13\x9c\xcc\x8f\x35\x4c\xa8\x96\x96\xba\x23\x3b\x70\xea\x6d\x62\x08\xee\xeb\x5a\xcd\x96\x23\x41\x6d\xd7\x6c\x06\x60\x11\x5e\x28\x6a\xad\x7c\xdd\x56\xdb\xde\x30\x85\xa3\xb7\x48\xc7\x80\x46\x5f\xba\x04\x2d\x9f\x62\x92\x68\x2c\x1e\x8c\xd2\x32\xa9\x3e\x12\xbf\x72\x47\x11\x0a\x66\x7a\xba\xbe\x4a\x72\xa5\xaa\x50\xa5\x93\x2a\xdf\xab\x31\x93\x89\x89\x63\x3b\x20\x5d\x17\xed\x5f\x8f\x2a\xd6\x0c\x69\x54\x21\x40\x38\x83\x81\xc6\xe3\x9d\x70\xe5\xc1\x31\x79\x94\xb2\x32\xba\x28\x26\xd2\x4f\xf2\x8d\xfb\xc9\x30\x4b\xd3\x55\x5e\x46\xae\x28\x5f\xfd\x96\x84\x45\x9a\x89\x3f\x8e\x06\x7b\x3d\x72\x60\x77\x4f\x35\x3e\x70\x5e\xd4\xb4\x86\x1c\xaa\xcf\xbd\xbd\x5f\x05\x0a\xa2\xc7\x75\x3d\x04\x40\x3f\x41\xfc\xc4\xde\xe6\x6d\xf8\x2f\x16\x8a\xe0\x2a\x24\x2a\x0d\x77\x35\x86\xfa\x6e\x23\x52\xa3\xde\xcb\xc8\x10\x24\xa1\xfa\x76\xe2\x76\xa9\xaa\x03\xff\x1d\x8d\xeb\x67\x85\x7a\x87\xe7\xbb\xc5\x88\xfa\x8b\x33\x8a\xac\x7c\x41\x19\x5b\xb2\x81\x20\xd3\xef\x1a\x9d\x90\xc3\xf3\x4b\xdd\x81\x1d\xa7\xc3\xcc\x4c\x46\x51\x48\x5f\x5d\xbc\x64\x3c\xb8\xf2\x68\x83\x13\xc9\xe8\xef\x8c\x78\xbe\x38\x97\x05\x88\xa0\x72\xf7\x63\x6d\xe4\xb8\xc4\xbe\x5e\xcc\x7a\x64\xfd\x65\x6a\xa0\x22\x52\xd0\x7a\x1c\x8f\xf4\xbc\x36\xd4\xa6\x67\xbf\x8e\xb2\x34\x01\x04\x8a\x82\x5b\xe4\xc4\x28\xe1\x01\xe8\x82\x48\x95\x45\x30\x55\x16\x35\x8a\xe2\x98\x85\x9d\x50\xc5\x82\x91\x28\x5f\x37\x46\xf6\xc0\xf2\x81\x6e\x3f\x36\x63\x41\xd2\x8b\xd2\x8c\xa2\x9d\x3f\x50\x4d\x3e\x93\xe7\x76\xdc\x8f\xd9\x4a\x4c\xe4\xa7\x15\x45\xee\x54\xad\x97\x67\xf2\xfe\x6c\x8d\x9a\xe2\x81\x90\xb7\xf0\xc2\x74\xfa\xc2\xff\xa0\x0e\xed\x61\x19\x86\x11\xbe\x18\x2b\x2e\x06\x4a\xb8\xfa\xa6\x16\x2a\xcb\xec\x38\x2a\xc7\x70\x18\x74\x99\xc4\xfe\x25\xb7\x96\xbc\xd3\x9c\x49\x0a\x33\x4c\x13\x82\xb7\x10\xcb\x03\x99\xdc\x7f\x83\xdd\x51\x23\x3b\x45\x03\xa5\x85\xe6\xd1\xcd\x47\x65\x81\xa4\x4a\xd0\xd9\x5e\xe8\xf0\x9b\x78\x36\x19\x73\xe5\x66\x99\xae\x27\xeb\x04\x83\x74\xb5\x52\x28\x67\x61\xe7\x61\x14\x88\xd4\x42\x5b\xc4\x96\x26\x29\xbd\x5d\x85\x55\x52\xa0\xd0\xa3\xda\xaf\x28\x8b\xc6\x36\xdf\xed\x5b\xb1\x7b\x68\x9e\xe9\xce\x34\xb2\xf1\xce\xa6\x72\x07\x60\x01\x03\x24\x83\x3f\x47\x5a\x26\x0d\xec\x26\x5d\xf8\x95\x6e\x9e\xae\x14\xd6\x4b\xd2\xa3\xde\xfa\x41\xe0\xb9\x68\x1f\xa8\xaa\x50\xdf\x24\x5f\x2f\x19\x84\x02\x4c\x16\xd4\xff\xf8\x5a\x69\xed\x8c\xca\x7c\xd5\x66\x1d\xcf\x43\x42\x97\x5f\xb4\x08\x25\x0a\xdb\x28\x87\x69\x1e\x9b\xb5\xc8\xe0\x8f\x8a\xae\x28\x0d\xa2\x08\x8b\x4a\x7f\x76\x25\x22\xd7\x30\xc5\x12\x9d\xe9\xf9\xaa\x1a\x57\x5a\x11\x12\xdd\xd5\xd4\xf8\xd1\x46\x1e\x85\x91\x49\x90\xa3\x23\x5a\xbd\xa4\xe4\xa2\x76\xa1\xe0\x80\xb9\x7b\x43\x49\x8c\x91\x6c\x7d\x99\x51\x77\x42\x58\x1f\x57\x30\xbe\x88\xa9\x7e\xa9\xd2\x10\x6e\xd4\xe3\x64\x46\x2a\x86\x5c\x9d\x30\x8c\x2f\x6e\xdf\x52\xd2\x8a\xa8\x29\xf2\x1e\xea\xb0\x24\x79\x51\x4e\xa2\x81\x2b\x86\x0a\x5b\xcd\x87\x05\x4a\x9b\xa9\x28\x07\x1b\x3b\x54\x82\xa1\xd7\xcd\xd7\x0d\x5e\xd3\xab\xaf\x76\x57\xd2\xb0\x04\xd8\xcd\xf9\x13\xbb\x64\x49\x4b\x18\x64\x76\x60\x81\x7f\x3e\x2c\xa4\xca\x2d\x2c\x5a\xb6\xdb\xa0\xaf\xe4\x28\x11\x4b\xe2\x60\x74\xad\x56\xf3\x8c\x26\x84\xbf\x58\xf0\xfe\x71\xfe\x7c\x7e\xa0\x76\xbe\x1b\x8a\x91\xbb\x1e\x0d\xec\x1e\xdf\x4b\xe8\xf4\x7c\xa5\xf6\x02\x82\x5c\xc1\x7d\xd7\x6c\xd8\xaa\xef\xe9\xac\x00\x96\xe7\x1d\xb5\x98\xa0\x4f\xe2\x23\xa7\x48\xef\x55\x76\x42\x0d\x43\x39\x35\xd0\xb9\x94\xbd\xa2\xe6\x63\xdb\x71\x4a\x3a\x4f\xf7\x1e\x15\xa4\x48\x98\xcf\x2a\x69\xb2\x93\x0a\xf8\xf2\xd7\xff\xb8\xe7\x17\x26\xeb\x20\x41\x7e\xe1\x99\x4d\x3f\xc2\x61\x66\xa9\xe9\x39\xa3\xc2\x83\xfb\x81\xda\xbd\xcf\xd6\x39\x02\x2d\xd5\x75\x93\x8d\x31\x4d\x5c\x50\xa3\xe8\x56\xae\xc9\x53\x8e\xc7\x26\xdb\x98\x51\xd8\xe3\x13\x8a\x1e\x82\xa4\x45\x84\x08\x5b\x25\xff\xe2\x68\xc5\x16\xd1\xd8\x2a\x1c\x11\xd8\xa3\x7c\xdd\x26\xc8\xd0\x9d\x98\xcc\x26\x05\x1e\x0e\xf5\xeb\x8b\x0a\x38\xb2\xa5\x4b\x42\x3a\x17\x34\x79\x1e\xad\x59\x68\xb2\x4b\x6c\x4f\xf3\xdb\x79\x7d\x39\x85\x29\x80\x26\x20\x26\xb7\xbb\xa7\x04\xda\x9b\x05\xfd\x57\x5f\xed\xc6\xb6\xd8\xed\x49\x26\xc7\xf4\xee\xf2\xad\xc0\x0b\x7c\xcc\xd0\xab\xc3\x17\x7e\x13\x47\x89\x63\xdf\xec\x17\xe1\x83\x26\xa0\x9e\xf4\xea\xa3\x2c\xcc\xcc\x4a\x31\xa3\x12\xd2\xab\xb4\xc8\xc5\x5d\x4b\xa9\x96\xd6\xd4\x39\xcb\x2c\x1c\x99\xdc\x3e\x51\xfd\x2c\xe2\x37\x26\x58\x89\x28\x19\x7d\x0f\xb6\x1d\xd0\x0d\x43\xfa\xe2\x62\x47\xa0\x25\xb2\xcf\x04\x4a\x82\xe5\x28\x65\x4a\x18\x28\x16\x34\xc4\x0e\xb1\x9b\xf0\xfa\x6c\xce\x18\xd4\x84\xe1\xe8\x19\xb0\xf9\x73\x54\x88\x5d\xeb\xff\xd0\xb2\xb1\x36\x7f\xb2\x26\xe1\xee\x97\xc3\x6d\x5d\xf2\x9c\x25\xfb\x1d\x21\x9e\x7b\x38\xc4\x2d\xad\xa7\xa9\x99\xac\xb3\x9b\x5e\x50\x74\xf4\x1f\x28\x73\x86\xf7\xff\x63\x16\x44\xc3\x26\x04\x07\x0a\xbc\x9f\x3d\x9b\x2e\x00\xfc\x7a\x77\x53\xd5\xac\xb9\x94\x28\xd6\x2e\xcf\xaa\xca\x77\x98\x8e\xc7\x36\x19\xe4\xca\x4d\xe2\xa8\x6a\xb5\x1e\x55\x13\xb3\xc8\x0c\x68\x9e\xde\xca\x99\x02\x32\xb1\x75\x7e\xc2\x95\x14\xe2\x68\xd5\xce\x55\xff\xa4\x8b\x7f\xe8\x56\x20\x59\x43\x3d\xfa\xa4\xd6\x27\xf9\x06\x8d\x04\xf6\x9e\xb9\x9e\x36\xd6\x99\xa4\x19\xb9\x19\xe8\x0e\x62\xe0\x9d\x8d\x7c\x92\x13\x8e\x4c\x36\x74\xcd\x5c\xcc\xd3\x39\x3a\x1a\xd1\x41\x41\x12\x85\x09\x71\x4d\x91\x35\xc9\x3e\x9d\xb5\x5c\x5c\x62\x77\x42\x65\xf0\x27\x94\xc0\xe3\xd8\x0c\x13\x5b\x44\x61\x47\xd1\x0f\xb7\x94\x1e\xe0\x96\xc3\x04\x79\xf3\x1e\x8e\x48\x9d\x25\x5e\xf5\x32\xc5\x12\xef\x4b\x35\x1e\xad\x2d\xa8\xa9\x9c\xd8\x9c\x31\x85\x02\x23\xf6\xb0\xe0\x8b\xca\xcb\x24\xb3\xf9\x24\x4d\xf2\xa8\x1f\xdb\x59\x1f\x80\x1c\x51\xea\x4a\x47\xb8\x93\xe1\x34\x93\xab\x40\x88\x6f\xda\x88\x9b\xab\x99\x4d\xde\xd0\x8c\x7a\xce\xdd\xf8\xa6\x36\x77\x86\x26\x1b\xc4\x36\x47\x3c\x81\xdc\x94\x11\xfe\xaa\x3d\x26\xb5\x8a\x6b\x2d\x38\xa2\xee\x30\x32\x0c\x98\x42\x20\x81\x9a\x1e\x5f\xbb\x1a\x55\x3e\x4e\xe3\x81\xf5\xaa\x4a\x82\x8e\xf1\xc1\xc3\x79\xd5\xd9\x18\xdb\xd7\xa3\xd0\x24\xb3\xaa\x3c\x2c\xf4\x45\xe7\xa1\xec\x14\xfb\xcf\x23\x5d\xe6\x7f\x68\x73\x74\x08\x4b\xf1\x12\x7a\x45\x5b\x64\x0a\x7d\xe3\x6c\x03\xff\x51\x85\xd4\xd1\xc0\x26\x9e\x5a\x74\x80\x77\xdc\xef\xea\xbe\xc1\x77\xb5\xdf\xfb\xc8\xbe\x81\xc0\x4f\xf4\x77\x3c\x14\xff\x72\xe0\xa5\x43\xca\x84\x6a\x11\xf2\x75\x64\x3e\x55\x6b\x41\xa6\x93\x8c\xd9\x7a\x9a\x15\xa3\xf5\x51\xc4\xa6\x64\x0c\xf2\x0a\xfc\xf9\x7e\x5e\x15\xa3\xa3\x71\x54\xb0\x9e\xdb\x92\x97\x2d\x56\x65\xcb\x9d\x49\xa8\x98\x51\x44\x49\x54\x44\x2c\x1b\x8d\x8d\x0e\x22\x40\x62\x86\x4e\x83\x2b\x2a\x2a\x4d\x6a\xf1\x8b\xe4\x9a\x8a\xd2\x8a\xa0\xa2\x3a\x4b\xbe\xd2\xdd\x52\x26\x59\x89\x72\x11\x34\x44\x29\x0b\x8a\xfd\x7c\xdd\x06\xac\x66\x37\xfa\xea\x9d\x0b\x1f\xbd\xa3\x88\xea\x3e\xa5\x31\x93\x89\xc9\x8a\x92\x37\x1a\xf1\x58\xa7\x31\xe1\x1b\x17\x50\x64\x51\xea\xc5\x21\x71\xb4\x21\x76\xe2\xeb\x9e\x02\x83\xa7\xb1\x45\xd3\xca\x89\x6e\xd0\x24\xc7\x91\x75\x1e\xab\x0b\xe5\xe6\x9b\xba\xad\x3e\x99\xc4\x96\x45\xae\x11\x7b\xb2\x26\x33\x60\x07\x5b\xb5\xc9\xdf\x22\x96\x6b\xf3\xbc\x9a\x82\x26\x46\x66\x27\x7e\xb5\xbe\x68\x7f\x43\x01\x06\x2f\xa8\xfd\x2d\xb3\x79\x1a\xaf\xc9\x14\x73\x16\xc3\xd5\xe4\x94\x48\xdc\xaf\xb5\xfc\xeb\xa5\xb5\x6f\x70\xff\x1a\xe1\xc9\x77\x91\x6b\x39\x23\x2d\x7f\x1d\x28\x44\xf1\xfb\x4a\x4b\xf7\x68\x2d\x5e\xb6\x36\x79\x9a\x3e\x9a\x0d\x91\x02\xd5\xf4\xbd\x1a\x54\x67\xad\x73\x41\x5b\x16\xa8\xfc\x23\x08\x15\x9c\x36\xc9\x7e\x4f\xe0\xec\x38\xd1\xac\xbd\x9b\x34\x7e\x48\xbd\xce\xa0\x58\x0b\xa8\x09\xb7\xf0\x30\x23\x6e\x6b\x80\xfb\x55\x05\xf7\x3f\x81\xc6\x0b\x62\x97\xb7\xa7\x8a\xc7\x7d\x47\x09\x5f\x71\x47\x12\x69\xfd\x43\x42\x9a\x08\x31\xa3\xd9\x53\x19\x95\x43\x4e\x81\x1d\xa3\x77\xc9\x53\x9d\x5d\xf4\x6a\xc3\xcc\x16\x0c\xcc\x73\xae\x47\xd5\x6f\x39\xcf\x0a\x67\xe5\x7e\xb9\xd1\xfb\x38\x3c\xbf\x44\xea\x93\xd5\x37\xc1\xce\x73\x52\x6f\x43\x27\x15\xd2\x6e\x92\xd9\x41\x14\x16\x5a\x2e\xff\x8a\xea\x3b\x5e\x69\x2b\x1a\x0f\x22\x1c\x9a\x6c\x0a\x4f\xfc\x25\x31\x88\x7f\xae\x7e\xb4\x25\xb9\x60\x69\x5f\x74\xf6\x92\xbe\xaa\x79\xd6\x7b\x4e\x45\x6b\x91\x23\xde\x63\xe2\x3e\xa2\x3a\x63\xec\xf8\x24\xad\x58\x39\xfc\xd3\x49\x94\x08\x14\xff\x20\xbf\xfe\x4f\x94\x9f\xd9\x27\xb5\x59\xf6\xf5\xb5\x90\xbe\xb6\xc0\x3f\x3b\xce\x09\xe3\x81\x22\x54\x4c\xb2\x28\xb4\x4f\xab\x69\xc3\xed\x44\x44\x55\x4f\x10\xe9\x18\x2b\xfe\x2d\x9a\x74\x62\x12\x45\xdf\xdc\x29\x49\x55\xf3\x01\x41\x07\xd2\x28\x24\xd0\x8f\xf6\x54\x99\xef\x97\x90\x04\x72\x7a\x4a\xfb\x16\xf8\xc1\x7f\x14\x28\x79\xd4\xbf\xa0\xd5\x84\x9c\x90\x6d\x7e\x30\x81\xcf\x52\x10\x8c\x7d\x56\xa8\x26\xda\x43\x89\x6d\xb3\x30\x69\xf0\x89\x67\x02\x65\x44\xbe\x62\xf3\x3c\x4a\x19\x24\xc5\x9e\x32\xca\x08\xe5\xa4\x03\xe5\x4d\x4c\x3c\x9e\xf1\x00\xf2\x1b\x8a\xa8\x7d\x8c\xaa\x82\xa2\x25\xf9\xb8\xe7\x85\x64\x1b\xbb\x55\x04\xc1\x32\xd0\x38\x70\xd9\x80\x06\xa9\x06\x34\x43\xb6\xe1\x50\x82\x50\x07\x52\x0e\x18\x48\x2f\x1c\x9b\x95\x89\x59\x37\xb0\x61\x43\xc5\xea\x89\x9e\xef\x1a\xef\xdd\xf4\xed\xa4\x13\x6e\x76\x4c\xb2\xb4\x9a\x54\x19\xf2\x55\xbc\x01\x74\xed\xf0\xe1\x50\xc2\x14\x19\x8d\xea\x1b\xb0\xa9\xfb\x54\x3b\xb3\x44\xaf\x45\xc9\xf0\x73\xaa\xc5\xff\x9e\x0a\x12\xcf\xa8\x22\xdd\x7b\x9a\x26\xca\x7d\xd6\x5a\x4d\x47\x5a\xa2\x9d\x7d\xfb\x5c\x47\xd4\x83\x55\x7f\x49\x5d\x22\x74\xb8\x76\x35\xa4\xd0\x7f\x8b\xcd\xfb\xc6\xe2\x7f\xcb\xa7\x07\xbd\x0c\x6c\x62\x2c\x2e\x28\x7d\x04\x9f\x67\xad\x45\x19\xc9\xdf\xe3\x55\xa3\x16\xfb\x9d\xc0\xd7\x65\xbf\xa3\x0a\x6f\x03\x3b\x36\xc9\xe0\x89\xba\x4a\x97\x7f\xde\x2b\x34\x7c\xe8\x93\x7f\x1e\xf2\x54\x2c\xc0\x41\xb3\x9c\xb6\x97\xf9\xa7\x88\xab\xc8\x9a\x61\x98\xb2\x28\xc8\x43\x9f\x02\x53\xe7\xee\x54\x29\x0a\x6e\x69\xb0\xea\x1e\x00\x62\xb8\x4d\x4b\x6b\x0c\xcf\xf4\x4b\x0d\xb8\x2e\x5a\x73\xd1\xc2\x44\x71\xdf\x84\xab\x9f\x59\x7c\x73\xba\xe5\xd1\x50\xb6\x0d\x4c\x1b\x98\x9d\xc8\x4d\x0b\x2e\x62\x54\x26\x83\xcc\x8a\xa0\xad\xf8\x69\x2b\x4b\xb4\x9f\x36\xbe\xd1\xab\xaf\x56\x9b\xe0\xb8\xac\xf6\xa8\xcf\xd6\x09\x7a\xda\x17\x67\x42\xdf\x6f\x91\x42\xd5\xa3\x3d\xcf\x26\x79\x74\xd3\xb7\xfb\xe4\xa7\x59\xc0\x50\x79\xf3\x49\x11\xf8\x3c\xd0\x0a\x2e\x7d\xde\xb7\xe0\x36\xd3\x36\x95\x98\x41\x3a\x18\xda\x4c\xb8\x5c\x28\x57\x5c\x0b\x6a\x0d\x3b\x25\x1c\xf2\x76\x6b\x55\xb9\x48\x63\x6a\x52\x4b\xb3\xe8\x46\xa0\xf4\xdf\x8f\xe1\xc4\x45\x77\x11\x9c\x3f\x76\x6b\x9b\xea\xc4\xae\xa5\x78\x97\x4f\x6c\xc2\x41\xb5\x13\xe5\x76\xd0\xd0\x8b\xd3\x67\xea\x68\xff\xc5\xc5\xee\x6f\x3d\xa6\x4c\xbb\xcf\x4d\x6b\x8a\xb9\x8d\x9a\x02\x26\xd7\x1d\x15\x9c\x9c\xa9\xb7\xae\xe8\x6b\xa3\x26\xf0\xe6\xd4\xfb\xba\x5c\x6c\x9a\x22\xf2\x07\xf2\x6e\x2c\xc3\xe6\x63\xee\x70\x14\x25\x36\xb7\xb3\x04\xff\x72\x8c\xea\x6a\xb6\xf3\x4d\xe0\xf3\xec\xd3\x4a\xfe\xfa\xb4\x02\x4f\x59\x93\x47\x54\x5d\x9e\x67\xb4\x17\xc0\x0b\x7c\xbd\xe9\x26\xb8\x35\x59\x3e\x47\xc3\x20\xce\x6c\x75\x39\x17\xfa\xc2\x88\x72\x6e\x69\x10\xf7\xe7\x7a\x9d\x97\x0f\x70\xe2\xfe\xe3\x9a\xf0\x2f\x95\x84\xed\x80\x50\x1b\x18\x8e\x9b\x58\xb7\xb5\x3c\xd3\xf1\xd5\x1d\x5c\x76\x9b\x9e\x04\xeb\x79\x9b\x36\x4f\xec\x72\xcd\xbe\xd3\xe2\x62\x77\x62\x22\x06\x96\xea\x22\x2b\x5f\xb7\xc8\x1b\x11\xee\x3e\x74\x8b\x46\xcc\x38\x54\x03\xe8\x62\xad\xc8\xba\x62\x79\x86\x3b\x79\x5a\x87\x51\xda\xd2\x6d\xd4\xd3\x2d\xcd\xb4\x6e\x66\xa3\x24\x2f\x3c\x3b\x08\xe9\xcf\x29\x04\x27\x7c\xd3\xd0\x71\x93\xbc\x69\xdd\xe6\xc5\x6e\xdf\x39\xfb\x15\x8d\x0a\x4e\x8b\x5f\xe2\x05\x20\x7b\x7f\xb4\xe7\xcb\xca\x8c\x2f\x70\x8a\x96\xcb\xf3\x22\x4b\xe8\x9b\xb4\x61\x6c\xb2\x30\xcd\x3a\x35\xe4\x88\x2f\x39\x5e\xaa\xc5\x40\x66\x10\x81\x47\x85\xb1\x39\xc9\xda\x69\xf8\xd1\xef\x69\x3a\x96\xb2\x03\x0d\xd3\xac\x1c\xe3\xa5\x60\x5e\x9c\x57\x16\xb6\xe7\x3f\xd3\xb5\x70\x1c\x85\xa3\x68\x68\x12\x9a\xab\xce\x50\xd2\x23\xb7\x3f\x55\x7a\x62\x45\x3a\xb4\x05\xb9\x43\xbb\xd0\x05\x6a\xe1\xac\x3a\x47\x0b\x1e\x03\xc7\xc6\x47\x80\x64\x5d\x9b\x7a\x6c\xe2\x8f\x51\xf4\x16\xc0\x88\x9e\x0f\x34\xd6\x22\x60\xa7\xea\x94\xff\xb6\x65\xa3\xb7\xaf\xdb\xb0\x2c\xa4\xa3\x28\x3d\x5d\xda\x36\xa4\x70\xbb\x73\x1a\xbe\xbc\x70\x48\x0a\x16\xd8\xa6\x5a\xe5\x2c\x76\x4e\xa8\xe5\xf9\xe5\xae\x19\x0e\x33\xb3\x26\xfc\x4e\xec\x18\x47\xb5\xe6\xfc\xd1\xa6\x1f\xec\x3e\xbf\x16\x31\x0d\xd1\x4c\x38\x81\x69\xc8\x37\x8d\x12\xc5\xfe\xa5\xee\x6b\x69\x99\x25\x26\x46\x71\xca\x1f\xa5\x70\x4b\xe4\x6b\x55\xec\x49\xcc\x5a\x34\xa4\x5a\xfd\xe7\x68\xc4\xd9\x56\x17\xcb\x5c\x74\x59\x3a\x4e\x5d\xeb\xe3\xc0\x97\x35\xef\x53\x4e\x80\xad\x7e\x13\x87\xa4\x94\x15\xaa\xd8\x00\xcd\x0b\x3e\xcf\x1d\x3d\xa7\x9a\x19\xdc\xc6\x0f\x7c\xb3\xc7\x9a\x41\x24\x42\x8b\xac\x7f\x10\xf8\x49\xf2\xa1\xd7\x80\x35\x89\x19\x44\x46\x78\xb9\x75\x0d\x2b\xc1\xe0\xb6\x00\x02\x46\x69\x3e\x89\x0a\x13\xe7\x4d\x20\x96\xbb\x69\xa8\xdb\x90\xbf\x9f\x45\x9f\x9a\xc5\x44\x03\xa5\x9e\xe0\x3b\x2e\x45\x5a\x98\x98\x1c\x38\x5d\xb7\xe1\xe3\xa9\x9a\xbf\x5b\x20\xe7\x49\x22\xe7\xf9\x5a\x3f\x6c\x73\xfc\x30\x59\x5a\x7a\x83\x4c\xc6\xca\xab\x4c\xb0\x39\x33\xbf\xd2\x2d\x93\xcc\xac\x59\xd7\x3c\x14\xe6\xba\x6f\xdb\xb2\xb4\x1e\xea\xdc\xdb\xaa\x05\x58\x4e\xb2\x28\x17\xd0\x1b\x8a\xdd\x6f\x6b\x05\xf4\xb7\x9d\x9c\xf7\x88\x68\x96\xce\xd4\xe8\xd3\x69\x8d\xe9\xa3\x6a\x4e\x6b\x36\xcb\x53\x58\xa5\x3a\x81\x67\x77\x78\x9d\x77\xd5\xe4\xa2\x4c\x12\x1b\x63\x8e\xb2\x07\x9b\x72\xee\x7f\x10\x7c\xd1\x0b\x95\xda\x49\x96\x0e\x33\x33\x1e\x47\xc9\x30\x9f\x51\xa6\x15\xf7\xb4\x82\xef\xae\x9e\xe6\x3d\xec\x44\xbe\xcb\x86\x95\xdb\x89\xc9\xaa\xdd\x7d\x4e\xf1\x3b\x6e\xab\xf8\xf1\x8c\xf6\x06\x00\x7e\x46\x6c\x22\xaa\xf0\x0a\xa5\xfe\x57\xa7\x8f\xfb\x5a\xad\x29\xea\x88\x58\xfa\x82\x02\x89\x75\xd2\xfe\x26\x19\xa4\xe3\x78\x03\x89\x8a\x83\x97\x54\x4f\x2f\x3c\x7a\xdf\x6b\x7d\xbc\xe7\x01\xa9\x33\x9b\x9e\x06\x50\xf4\xd3\x84\xf7\x03\x84\x79\xc7\x35\x81\xfd\x78\x0b\x27\xfd\x60\xb7\xca\x26\xa2\x34\x11\x84\x0f\x76\xfe\x6b\x1a\xf9\x7e\xad\x06\x88\x78\x2d\xed\x7f\xae\xee\x8d\xe2\xd4\xb8\xae\x22\x8e\x61\xc1\x64\xe5\xee\x7a\x27\x50\xe7\xcd\x45\xc5\x61\xf8\x70\xaa\x68\x92\x2c\x6d\xec\x4e\x3d\xcf\xf5\xbb\xa0\x29\x49\x26\x59\x9d\x55\xbe\x15\xf0\xa0\x11\x8c\x84\x67\xc5\x5d\xaa\x37\x85\x14\x85\xcb\x24\x45\x44\x92\xe9\x73\x1e\xec\x78\x7e\xaa\xf4\x8e\x2e\x4c\x55\x2d\x87\xc3\x3a\xfe\x17\x7a\x5a\x14\xbc\x1e\xb8\xaa\x60\x58\x66\x45\x15\xb2\x68\x4a\xd5\x77\x35\xa5\xea\xbb\xaa\x96\x3b\xb0\xd5\x61\x4d\xdb\xc1\xf2\xbc\x4b\xb4\x3d\x04\xe2\x08\xad\x06\xbe\x0e\x3a\xbf\xf3\xfb\x2e\x31\x7f\xd4\x4d\xa9\x17\xfe\x79\xe7\x6b\x0b\x4e\x9b\x1b\xc7\x37\x6a\xa7\x35\x3b\x6f\xd0\xc9\x01\xa3\x7b\x97\x88\x29\x7a\x8f\x11\x7e\xa4\xb7\xa2\xba\x02\x4e\x82\x80\x63\xab\xcf\x76\xa5\xe6\x2f\x7f\x99\xf3\xec\x5f\x61\xa4\x1c\xd3\xf2\xab\x2f\x3b\x91\xb6\x6a\xfe\x23\x7d\x3e\x8d\x62\x20\xce\xca\x27\x36\xab\xfd\x1e\x8b\xe4\xf9\x1e\x9d\xcf\x68\xc8\x5d\xab\x31\xba\xde\x0e\x3a\xbf\xf7\xbb\x0e\x07\x32\xe3\x7d\xd2\xe1\x3a\x85\xc3\xfa\x2e\xc9\x2a\x0b\xc7\x97\xa6\x1b\xf6\xca\xeb\x81\x6a\xfe\x9c\xd6\xc8\x9c\xef\x41\xb7\xd3\xc9\x86\x56\xc1\x14\xb2\xcc\x7f\x33\xed\x1c\x7a\xc9\xab\xe2\x56\x1b\x39\xa6\x25\x64\xe5\x00\x91\x63\x29\x0d\x34\xde\xbf\x39\x55\x85\x59\x68\x61\x23\xc7\xbd\x82\x44\x0b\x3b\xeb\xbb\x81\xef\x31\xc5\x51\xc1\x07\x68\xa7\xee\x4a\xa4\x74\xe0\x2f\x07\x35\xe3\xbe\x78\xf2\xa8\xd7\x59\xfc\x47\x3d\x8f\x52\xec\x6c\x7a\x26\x10\x7c\x9b\x45\xbd\xb3\xfa\x22\x08\xb4\x59\x50\x07\xe9\x09\x3b\x88\x49\xf0\x51\x3d\x14\x8e\xcc\xb7\x31\x5a\x58\x90\xd7\xa7\x8a\x86\xf4\x49\xe0\x23\xe5\xdc\x26\x02\x4d\x96\x98\x8f\x7e\x52\x82\x3e\xdf\x0e\x5d\x4b\xb3\xbd\xaa\xfe\x86\x9a\x38\x92\x2a\x06\xe1\x4a\xc4\xea\x45\xa1\xce\xea\x12\x3b\x23\xbc\x91\x7b\xed\xee\xf9\x9c\x6c\xd7\xa6\x72\x0e\xfc\x54\x91\x01\x36\x4c\xb2\x6a\x07\x64\xce\x85\x3d\xf7\xbf\xa7\x11\xc1\xcc\xba\x44\x85\x14\x49\x43\x5a\x18\x21\xe1\xc8\xd0\xf1\xe2\xeb\x84\x57\x03\x0f\xdf\xbb\xda\x9a\x1d\xe7\x51\xbc\xe6\xdd\xd5\x65\x33\xd3\x3b\x9b\x0a\x66\xfb\xd5\x21\x6d\xf3\xfc\x59\x5a\x08\xea\x21\x5f\xf1\x7e\x8c\x0b\x87\xb6\x6f\x61\x76\x89\x26\xb8\x07\xe5\xdc\xa6\xe8\xc9\x29\xb5\x39\xce\xd3\x03\x3d\xb5\x4f\x61\xc1\xd6\xa4\x14\x1d\xad\xff\xb0\xd8\xec\x1c\xa7\xc1\x40\x20\x76\x07\x74\x3b\xfc\xc6\x13\x14\x45\x6f\x9f\x98\x2a\xd1\x66\xe6\x0c\x63\x47\xbe\x47\x43\x8a\xb9\x74\x93\x17\xab\x98\x0a\x55\x03\x8f\x65\xf4\xaf\xb5\x32\xc4\x98\xeb\xd5\x22\x8c\xa8\x29\x37\xaa\x28\xff\x0f\x8d\x11\x3e\xf0\xd2\xc1\xee\x24\xcd\x8b\x75\x03\x7e\x1e\x53\x97\x68\x48\x84\xc6\xa4\x5c\x38\xb2\x34\x1c\x95\x99\x10\x8a\x19\x1d\xbc\xc3\x0c\xd6\xc1\xe5\x32\xd3\xcf\x09\x01\x8b\xec\xea\x16\x92\x04\xbe\x09\xbc\x5f\x0c\xec\x7d\xf8\xba\xcd\x1b\x38\x8f\xc2\xd5\x19\x5d\x84\x98\x7a\x25\x86\x3b\xea\xed\x1d\x9f\x6a\xb7\xbe\x81\xb5\x63\x29\x80\x0b\x0f\xd9\x47\x79\x67\x95\x84\xa7\xc9\xaa\xb0\xbc\x7a\x43\x22\x03\xd1\x71\x42\x3a\xe7\x5b\xc5\x31\x06\x51\x6e\x26\x93\x2c\x75\x86\x36\x48\x93\xd9\x7b\x8b\x6f\x94\xec\x53\x62\x0d\x2c\x75\x78\x06\x05\x8a\x43\x89\xb2\x2e\x76\xf0\xf7\xa7\xbe\x0e\xfc\x0d\x1a\x22\x37\xe5\xaa\x09\x2b\x27\xb6\x93\x1b\x59\x37\x51\x31\xab\x2a\x61\xac\xa5\x8e\xdd\x71\xae\xe7\x63\x17\xc6\x17\xc9\x09\xa5\xad\x8d\xec\x4e\x25\xc0\x6a\x09\xc8\xe6\xf5\xb4\x6e\x40\x47\x89\x89\x07\x8a\x32\x04\x2a\x39\x5f\x4f\x9f\xf7\x4d\xb8\x91\x5d\x33\xd9\x20\x31\x83\x37\xe0\x65\x8e\x53\x84\x51\x8a\x28\x01\x03\x37\xc6\x50\x46\xd5\x4f\x5e\x4f\x33\xe8\x0f\x38\xdc\xc2\x9b\x14\x6a\x20\x0c\xfc\x81\x26\x25\x5e\x9e\xaa\xed\x14\x96\xac\xcc\xee\xa6\xf7\x8c\xd1\x65\xc1\x98\x1a\xbb\x15\xfb\xc2\x56\xa3\x45\xbe\xb8\xb8\xdc\x1d\xa6\xe9\x40\x01\x94\x51\x98\x97\x4a\x75\xcb\xdc\x4c\x27\x36\x99\xf3\xb5\x85\xbd\xf4\x58\xa2\x5c\xb0\x93\x45\xc1\xb2\x09\x78\x08\xb4\x2f\x9a\x6a\x2d\x5f\x21\x1d\x58\x9b\xcd\x78\xc5\xc0\xcb\x78\x08\xac\xb1\xeb\x48\x5c\x70\xd4\xfc\x48\x8b\x2e\x9a\xb1\x7d\x92\xfe\x34\xe2\x9f\x07\x81\x12\x4f\xbf\xc1\x1b\x09\xa2\x28\x80\x87\x65\x83\x50\x41\xd8\x11\x65\xe5\xb5\x97\x22\x08\xd6\xc0\x9c\xfa\x2d\xff\x0c\x52\x72\x07\x96\x7a\xd9\xe1\xdd\x76\xa3\x80\x8c\xde\xc3\x35\x95\x38\x3c\xc4\x77\xe6\x7f\xc0\x66\x27\x16\xf9\x4f\x69\x22\x67\x16\x25\x69\x47\xb7\x4a\x95\x38\xc8\x05\x45\xb2\x1e\x44\x79\x58\xe6\xb9\x80\x48\x1c\x23\xdb\xcb\xaa\xb6\x7a\xa9\x01\x92\x2d\xd9\x3b\x17\x32\x02\x25\xd4\x75\x4d\x55\xe4\x13\xd7\x75\x7e\xc5\xc1\x5c\xab\x51\xe0\xeb\x40\x3b\x67\xc7\x31\xd2\x30\xac\x50\x40\xdc\xf8\x5a\xa1\xa0\xc7\x69\x52\xf4\xb3\x08\xc4\x83\x03\xbc\xe6\xa1\xb8\xec\xa4\x46\xbe\xfa\xb2\xe3\x79\xf9\x8d\x37\xcd\x86\xb0\x5d\x9b\xf1\x33\xfb\x86\xe6\x84\x05\xca\x43\xe0\xa1\xcb\xcc\xd1\x53\x70\x69\xab\x16\x77\xe7\xeb\xe9\x17\x35\x2f\x77\x62\xc3\xc2\xf4\xa3\x38\x2a\xd8\x3c\xa8\x95\xe5\xa0\x5e\x58\x3a\x29\x63\x93\xcd\xf9\x0a\xca\x15\x6d\x67\x42\x13\xa0\x0d\x50\xaa\xd2\xa3\xb7\x77\xfa\x28\x1c\x9e\x7f\xb1\x7b\x78\xfe\x95\xe7\xe9\xf3\x45\xbb\xb2\x1a\x76\xa7\xc1\x5d\x4d\x31\x9c\xb7\x3f\xa7\x16\x1d\xa6\xd8\xbb\x3c\xc1\xd1\x70\xfb\x9f\x30\xc7\x84\x12\x4e\x51\x26\x90\x66\xa7\xa7\x4a\x08\x68\x4b\x07\x02\x67\xe8\xc4\x16\x0d\x7b\x8f\xf1\x7d\x02\x48\x67\x8c\xfa\x5b\x81\x42\x0a\xfe\x0d\x9d\x5c\x58\xa3\xe7\x39\x23\xe0\x4f\x09\x14\x17\xef\x34\x45\xfb\x48\xaa\xd0\x3c\xc3\x79\xf5\xf4\x26\x9d\x88\xa2\x39\x47\x4b\x44\xec\xa7\x68\x89\x89\x15\x7e\x1b\xce\xa2\x30\xce\x60\xc8\xc9\x21\x2b\x7b\x48\xbf\x2d\x0c\x36\x2c\x94\x98\xb0\xe0\x80\x37\xe4\xeb\x4d\x07\xfa\x31\x45\x94\xaf\x78\x70\x2f\xaa\x41\x37\x68\x41\xf1\xb5\xab\x11\x8c\x6d\x16\x49\x1d\x0b\x3b\x1d\x34\x3c\xf8\xba\xb1\x4b\x1e\x58\x3e\xd0\x9d\x18\x98\x5a\x21\x88\x3d\x8d\x63\x0a\x6f\x17\xbe\x44\xc2\xb0\xa4\xa1\x16\xc5\xa4\x16\xa4\x45\x5e\x98\x64\x40\xc6\x8b\x78\xdd\x4a\xc1\xdf\x79\x6f\xb9\x02\xea\xba\xc9\x56\x0c\xab\xc2\xe0\x85\x9f\x08\x94\xd1\xc0\x89\xe9\xe3\x2a\x03\xf8\xf5\xa7\x95\xe6\xfe\x25\xea\xda\x88\x13\x20\x7d\x5b\xc4\xb8\x2c\xc6\x8f\x0a\xc5\x23\x14\x71\xa3\x28\x71\x85\x3c\x6d\x50\x60\xb8\x45\xab\x80\x9b\x83\x41\x4d\x52\x5b\x51\x12\xdf\xc3\x39\x20\xdb\x44\xc7\x8b\x57\x61\xbe\x0a\x65\x1a\x0f\x8a\x8f\xff\x99\xb6\x03\xbb\x46\x47\x35\xfb\xb7\x2b\xfa\x37\x9a\xba\x12\x6a\xb4\x54\xee\x81\x04\x5e\xb3\x35\xd2\x50\xc7\x31\xae\x2f\x29\xdd\x07\x93\x13\xff\xb7\xb0\x83\xd9\x2a\x07\x74\x22\xc8\xd5\xb7\x10\x62\x6b\xf5\x57\xb0\x7d\x72\x3f\x83\x6f\x94\x4d\x55\xba\xb2\x62\x33\xe8\xf4\xa3\xa3\x76\x56\x31\xe5\xef\xd1\xfa\x76\xb8\x0f\x5f\x4d\xd7\x46\xf4\x63\x43\x3d\x1c\xd2\x68\x76\xa9\xef\xe2\xa2\x6b\xe9\x63\x94\x9c\x6a\x98\xcb\x84\xb6\x69\x90\x44\x48\x89\x36\x0f\x99\x84\xd5\x2b\x46\x44\xc4\xa5\x12\xbc\xb1\x47\x36\xe9\xe9\x90\xee\xde\x6c\x13\x6a\xcf\x47\xe9\xfa\x9c\xe6\x1d\xd3\x80\xb3\x47\x59\xa0\x42\x30\x8c\x2a\x02\xf6\x8f\xe9\x29\x11\xc1\xbe\x3b\x7d\xce\x81\xa5\x27\x36\x0b\xd3\xf1\xa4\x2c\xd0\x2f\x5f\xf0\xc0\x63\x87\x70\x7a\x12\xe7\x2a\xfe\xce\x0d\x25\xfe\xbe\xd5\x08\xe8\xf7\x2f\x75\xf3\x51\x66\x07\x03\x0b\x45\xe3\x9a\x50\xae\x50\x32\x94\xdc\xea\x47\x2a\xc4\xb3\xe3\x14\xfa\x8a\xbe\x16\xf2\xe7\x8a\x26\xf2\xe7\x8a\xb0\x3f\x19\xa5\x89\x9d\x51\x68\x89\xc7\xc1\x1f\x85\xc2\xeb\x13\x8a\x49\xf8\x7f\xb9\x68\x75\x68\xd6\x57\x37\x66\x54\xc9\x13\x00\x29\x94\x08\x60\x76\x8c\xfd\xf2\x78\x0d\x06\x10\xa7\xc9\x10\x87\xab\x77\x59\x9d\x77\x09\xd1\xb3\x0a\xae\x37\xb0\x59\xbc\x41\x35\x1e\xd7\xf5\x62\xd9\x63\xbe\xc1\xa1\x80\x2a\xe5\x0f\x03\x55\xb2\x6c\xd6\x7c\x99\x75\x5b\xb8\x60\x01\x31\xc8\xad\x40\xe1\xf4\x6f\x29\x68\xf2\xd2\xef\xfc\xc1\x6c\xcd\x45\xa4\xe3\xac\xef\x1e\x51\x89\x35\x07\x34\xd8\x3e\xde\x54\x40\xb0\x28\x29\x6c\x9c\x1b\xa0\xf3\x70\x4e\x7e\x10\xf8\xf3\xf3\x03\x15\x97\x0c\x33\x13\x49\xb1\x5d\x1a\x80\x3e\x61\x69\xe2\x4c\x0f\xcf\x77\x47\xe9\x44\x9e\x03\x9d\xdf\x63\xaa\x0b\x7c\xcc\xbd\xa1\x7e\x39\x9e\x6c\x28\xb4\xdf\x9b\x0a\x67\xf3\x66\x63\x88\xf6\x2d\x10\xd2\xc8\x38\x37\x15\x6e\x2a\x6b\x29\xa4\x8b\x75\xb4\x99\x29\x9e\xab\xce\x58\xb1\xa2\xda\xa1\x86\xe4\x51\xf7\x0c\xfa\xc4\xaa\xfd\x9b\xc0\xc7\xa4\xd7\xe8\x1b\x21\xda\xfc\x36\x56\xb3\xcb\x9c\x9c\xb2\x11\xe1\x18\xa4\x8a\x79\x0b\x85\x28\xbe\xd1\xbc\xfb\xd3\x08\x7c\x59\xa3\x19\xa5\x24\x31\xfa\xa1\x0d\xd8\x69\xdc\x38\xff\x30\x16\x54\x77\x88\x96\xc3\xf3\xfc\x85\xaf\x2a\x82\xc3\x45\x64\x19\x98\xfe\xdc\x7b\x17\x7b\xe9\x67\x3d\xaf\x3c\x33\x49\x68\xa2\xdc\xe6\x33\xd5\x06\xe5\xc2\x24\x27\xfd\x79\x5a\xa3\x4a\x7e\xe0\xce\xb4\x55\x1b\xc7\xe9\x10\xda\x49\x35\x81\x36\x4c\xb6\x4f\x15\xb3\xf9\xb6\x52\x67\x67\xa2\x90\x40\x38\xda\x9c\xa8\xbf\x5e\x46\x82\x9d\x46\x86\x74\x8e\x6a\x83\x7c\x3d\xf5\x38\xe8\xb1\x29\x2c\x4b\xd5\x74\xbc\x82\xee\x05\x2d\x17\x70\x21\xf0\x48\xf6\x95\xf2\xb5\xa8\xc8\xcb\x8e\xaf\x4c\xdf\xa0\x2f\xc9\xd7\x2d\x86\xbe\xd5\x6a\x30\x61\x31\x5b\xa3\xa3\x78\x08\xe6\x6d\xbc\x38\x3e\xa9\xa7\x1e\x4d\xf6\x58\xcf\xa3\xc9\x36\xd2\x32\x19\x3e\x46\x5f\x09\x51\xe0\x3b\xd8\x0a\x10\x30\x3f\xb2\xe9\x75\x39\x18\xdc\x05\x3c\xc1\x69\x25\xe2\xfc\x5d\xaa\xde\x32\x7d\x1c\x93\x0d\x6f\xfb\x24\xde\x30\xdf\x28\x68\x24\x62\x6b\x16\x33\xab\xf7\x20\x75\xb1\x31\x4d\x27\x4a\x28\xe7\x03\x9a\xd3\x7c\xad\x0a\x28\xeb\x23\x13\xdb\x8e\x62\xe2\x1e\x51\xea\x29\x47\xb4\xd1\xb0\x8d\x27\x44\xeb\xc5\x09\x74\x93\xa2\x52\x91\x99\xf1\x85\x66\xd4\x5c\x30\x33\xde\x56\x76\x89\x97\x11\x79\xe2\x1f\x1e\x01\x6e\x93\x6f\x00\xa7\x13\xef\x99\xa7\x95\xc9\x68\x3e\x89\x32\x74\xb6\x5e\x71\xc1\xb8\xea\x1a\x5d\x55\x13\x59\x63\x9f\x0b\x1b\xdb\xd7\x39\x1e\x75\x6a\xf8\xce\x37\xe2\xfb\xea\xe9\x33\x13\xae\x72\x55\x0b\x6f\xfd\xe7\x98\x5f\x98\xce\xa8\x50\x89\x8d\xac\x9f\x9a\xf6\x75\x13\xda\xac\x4f\x39\x9e\x27\x3a\x9f\xa5\x97\xca\xd7\x81\x2f\xfc\xe4\x69\x19\xd7\xc4\xce\x29\x50\x97\xdf\xa1\xc7\x61\x09\x5c\x27\xd7\x3a\xb2\x49\xcc\x4e\xb1\xc8\x78\x58\xda\x9c\x6f\x9c\xa3\x3d\xe5\xf0\x09\x57\x56\x70\x58\x1d\x47\x15\x9c\x6f\xdc\xa6\xbb\xe2\xf1\x22\x78\x1f\x57\x01\x4f\x44\x9f\xf7\x88\xb6\x19\x42\x45\x07\x3b\xe1\x7d\x7a\x26\x84\x13\x77\xa7\xff\xe2\x33\x21\xe3\xa4\x2b\xb5\xb1\xce\x52\xf5\x07\x9c\x55\x6a\xe7\xbf\x3c\xc8\x41\x0a\xd2\x2b\xbc\xc4\xeb\x8d\x6e\xd5\xa1\x97\xba\xc3\xcc\xda\x64\x94\x96\x39\x96\xbb\x16\xbb\x17\x32\xa9\x12\x0a\x0b\x23\xa0\xf1\xc3\x3d\x35\x4e\x55\xc7\x19\x47\xff\x12\x9b\x3b\xfb\x8a\x62\x7f\x74\x26\xa3\xd5\x12\x05\xe8\x02\xf6\x8a\x38\x7c\x20\x34\xc0\xff\x5f\x09\x9e\x66\xf6\x35\x1b\x32\xff\xc9\x79\x5d\x2f\x2e\x6e\x5f\x0b\xfc\x0b\x6f\xfa\x82\x54\x9b\x5d\xbf\xcc\xd9\x31\x4b\xb0\xd3\xf4\x47\xb0\xd8\x4f\xa9\xc8\xf2\x8e\x2a\xb8\xf7\xd3\x78\x56\x35\xcb\xef\xf0\x01\xe6\x0c\xdb\x24\xe8\xf9\x97\x4f\xf5\xbc\x1c\x90\xd6\x3a\xce\xcc\xc4\xe6\xd6\x0e\x04\xec\xa5\x8f\x6f\xe6\x3e\x05\xbe\x2d\xdb\xf4\xde\xaf\xa2\x3b\x1b\xb2\xa3\xe7\x4c\x67\xdf\xc2\xb6\x68\xe6\x08\x84\x53\x79\x9e\xfd\x58\x85\x51\xaf\xd9\x64\x35\x12\x25\x5f\x24\x9c\x37\x70\xe2\x61\x0e\xbc\x37\xad\xb1\x79\x25\x2d\x8c\x92\x35\x93\x45\xa6\x1f\x6f\xcc\xa8\xf4\x22\xf0\x18\x94\xff\x53\xd3\xae\x9a\x7e\x8d\xfb\x97\x88\x79\xec\xd2\x4a\x4c\x97\x2b\x6a\xea\x5c\x51\x65\x94\xd7\xd2\x48\xa0\x81\xa2\x43\xe0\x33\xb7\x0b\x8d\x3f\xbe\x6f\x5f\x77\x98\xe6\x79\x62\xfa\x1d\x85\x6d\x39\x45\x99\x9b\x44\x7f\xbe\x20\x3c\x4e\x13\x5b\x98\x6c\x03\x2f\x50\x74\xe3\x94\x98\xf6\xdf\x2b\x03\x80\xb3\xca\xb6\xeb\xe3\x69\x53\x14\xa0\x6b\xc2\xb0\x1c\x97\xb1\xa1\x0a\x91\x06\xd1\x29\x01\xa4\xcb\xea\x0c\x1c\xd8\x38\x26\x96\xb9\x43\xd1\x82\x11\xc0\xd7\xaa\x00\x0a\x4f\xf3\xbc\xe3\x71\xb5\x50\x34\x11\x95\xc2\x27\x1c\xfd\x2a\xcd\x6d\x42\x45\x65\xa4\x93\xe0\x5b\x39\x51\x5d\xc7\xc7\xfe\xdb\xe7\x68\x32\x62\x13\xbd\x8e\xa3\xd3\xd9\x4b\xea\x2d\x4e\xa1\x77\xc3\x6a\x8e\xce\x79\x45\x98\xff\xea\x99\x9e\x02\x3e\x70\xcb\x58\xb4\x07\x7c\xc9\x9a\x8d\xc2\x05\x7b\xdb\x94\x73\xe8\x5a\x93\xc5\x04\x2a\xa9\x4e\x1c\xd7\x81\x5c\x16\xc7\xc4\xb7\xd5\x01\x50\x98\x64\x35\xdf\xed\xad\xca\x79\x6c\x11\x57\xbe\x1b\x78\x54\xe7\xbb\x38\x18\xc0\x10\x7a\x18\x78\xe7\x97\x87\x14\xb9\x49\x3d\xf0\x29\x8d\xf6\x5c\xb3\x42\x50\x15\xf9\x2f\x4f\x56\xbb\xa2\x18\x23\x7f\xd9\x80\x2c\xec\xdb\xd7\x0d\xd3\x64\x98\x99\x42\x5e\x3f\x7d\x2d\x19\x51\xdf\x38\xb9\xd8\xe6\x60\x95\xae\x27\x9d\x9a\xea\xcb\xe2\xa2\x5c\xbb\xc6\x76\x3f\xb3\xeb\x94\xc5\x38\xb0\x31\x54\x5a\x50\x49\x66\xab\x44\x44\xba\x9c\x88\xa3\xcd\xb7\x5b\x71\x7d\x9d\x42\x4c\xe7\xcb\x5f\x66\x35\xaa\x1b\x60\x54\xf0\x4d\x43\xd0\x61\xe1\x50\xb5\x3b\x45\xe2\x53\x8e\x98\x69\x9b\x86\x82\xaf\x1b\xfb\xe8\xe2\x62\xb7\x18\x95\xe3\x3e\x96\xac\xb0\x0c\xfd\x08\x9c\x6c\x0b\xed\x4c\x51\x98\x70\x34\xe3\xdd\x76\xb9\x14\x80\x9a\x01\x6a\x86\x58\x78\x7f\xe1\x89\xe7\x69\x1c\x0d\xa2\x95\x0d\x40\xbc\x98\xdc\x1b\xd4\x98\xbe\x4a\x7a\x7c\xdd\x1a\x06\x83\x09\x16\xd6\x87\x4d\x37\xd4\x0f\x0e\xb2\x68\xcd\xce\x2a\x55\xa0\xcb\x2a\x4c\xf8\xa9\x72\xfd\xdd\xd5\xab\x51\xb5\xda\xc8\xc7\xa6\x9f\xa5\x66\x40\x23\x87\x9e\x35\x44\x35\xf9\xba\x4d\x91\x61\x90\xae\x0f\x36\xb4\x42\xba\x72\xf1\xb9\xa8\x0b\x30\x65\x91\x8e\xc1\xdb\xae\xd6\x82\xb3\x20\x73\xfc\x43\x4c\x57\x4c\x94\xb6\xb3\x0e\x0a\x86\xf4\xcb\xa8\xfa\xb1\x4a\x36\x4e\x01\x48\x29\x40\xb8\xe1\x7a\x0b\x88\xa9\x18\x65\xd6\x14\x36\xe1\xc4\xc0\x29\x21\xed\x77\xaa\x48\x53\xaf\xac\x2d\xc5\x22\x14\x11\x0e\xcf\x73\xb0\xb1\x0b\x61\x24\xdf\x28\xf7\x17\xaa\x22\xe4\xb3\x14\x71\x0a\xcb\x9f\x76\x06\xbe\x99\xfa\x24\xf5\x6c\xa0\xb2\xd7\xb3\xee\x80\x62\x5d\x11\xb7\x0c\x45\x29\xde\x97\x42\x8f\x37\x86\x64\x19\xf9\x30\x07\x97\x62\x86\xaa\x3d\x4e\x02\x55\xa4\xb8\xa4\xca\xf0\x99\x9d\x64\x36\xb7\x49\x41\x28\x12\x56\xb8\xa2\xcf\x42\x26\xf1\x66\xa0\x68\xaa\x58\x3b\x38\x19\x77\x6d\xb6\xb5\xb6\xfb\x19\x49\xd3\x20\xcd\x81\x6c\x03\xf9\xa8\x6e\x5f\xa0\x36\x00\xa2\xe7\xef\xeb\x92\xe8\x4c\x4f\x05\x5a\x36\x16\x3f\x8c\x6a\xa8\x91\xb2\xc0\x56\x9a\xaf\x1b\x72\x0c\x2f\x2f\x1c\xea\x16\xd6\x64\x33\xde\x3a\xe0\x04\x25\x08\x78\xff\x5c\xba\x92\xe8\xc1\x19\x4d\x5b\x33\xc8\xa1\x95\x2d\x1d\xf5\xea\xc9\x50\x90\xdc\x9e\x7a\xb7\xdc\xf5\x2f\x01\x07\xe3\x4a\x95\x9e\x80\x70\x91\x3e\x46\xa8\xa6\xbe\xb2\x75\x49\x3b\x11\x79\x12\x56\xb9\x9a\x99\x28\x41\xe1\x16\x1b\x31\xe7\xaf\x7c\xa3\x2a\x8b\xf9\x28\x8b\x92\xd5\x19\x9a\x36\x18\x6c\x28\xdc\x20\xe1\x3f\x82\xb4\x4d\x04\x83\x1d\x6c\xce\x46\x59\x47\x19\xe1\x60\xfb\xe7\xeb\x46\x0b\xfa\x2b\xdd\x71\xba\x26\xf5\x13\xe0\x0c\x19\xeb\xc2\x37\x8d\xcd\x74\xdf\x42\x75\x8a\x56\xb1\x29\x3d\x82\xa4\x90\x5e\x8b\xe3\xd2\xf4\x9f\x37\x37\xd3\x24\x2d\xd6\xa3\x62\x44\x25\x6e\xe9\x6c\x09\x69\xaf\x7a\x63\x7c\xad\x80\x82\x26\xcb\xd2\xa1\xa9\xe6\xa3\x2e\x1b\x54\x43\x21\x14\x54\xd5\x2d\x61\xbd\x26\xfe\xb1\xc6\xde\xbc\xb8\xd8\x0d\xd3\xac\xb0\x12\x9b\x62\x77\x61\x98\x82\x73\x71\xf0\xf1\xe3\x1d\x17\x8a\x64\x26\x14\x2d\x49\xe4\xe4\x68\x4d\xf1\x75\xa3\xd6\x70\xe0\xa5\x83\xdd\x7c\x3d\x5a\xc1\x6f\x08\xbe\xcf\x33\xdf\x3c\x59\x6a\x5c\xe6\xa3\x2c\x4d\xa9\x8d\xef\xc5\x46\xb9\x97\xcd\x37\x81\x87\xcd\x8e\xa2\xbc\x48\xa1\xbc\xec\x8b\xe9\xd8\x57\xa5\xc6\xf4\x98\x4f\x61\xf3\x7f\xaa\x74\x1e\x4f\x10\xc2\x09\x8d\xfb\xcb\x5c\x4b\x16\x85\x42\x1a\x42\xe4\xf4\x67\x14\x8a\xee\x26\x06\xc3\xc1\xa4\xbf\xfa\x32\xaf\xe1\xdb\x58\x46\x02\x1d\xef\xbc\x2c\x3f\xc4\xee\x9a\x12\x9b\x7a\xd6\xd1\x55\x8d\x63\x9f\xd9\x9c\x79\xd9\x95\xc3\x7f\x89\xea\x95\xc0\xf6\xd1\x62\xe2\xb3\x1f\xf5\x0c\xfc\xdc\x1d\xe5\x67\xca\x7e\xef\xb5\x2d\x09\xed\xbe\xc7\x37\x7d\x25\x72\x8e\x34\x12\x30\xa5\x6e\x01\xec\x8e\xb3\x05\xb0\x4b\x54\xbf\x9f\xec\x55\xf1\x03\x4e\xc1\xdb\xc8\x17\xf8\x86\x8a\xe7\x5c\x58\x21\xbc\x1c\x62\xde\x27\x7a\x54\x39\xc3\x7a\xbe\xad\xed\xbb\xc0\x27\xa2\x38\x71\xfa\x85\xc6\xce\x74\x78\xbe\x5b\xa4\x65\x15\x17\x78\xd5\xca\xcb\xea\x90\xbb\xa6\x62\x84\x6f\x4d\x9f\x8d\x7c\xd1\x34\x5b\x8b\xac\x37\x67\x41\x2f\xe6\x17\xf4\xd3\x7c\x5d\xab\x40\x0e\x13\xda\xc9\x14\x52\xa6\xfa\x2d\x80\xbb\xd0\x82\x41\x25\xe2\xb6\x36\xaa\x0b\x74\x63\x08\xa3\x2e\x8d\xc5\x6a\x3a\x88\x33\x7a\xf5\x7c\xfc\xff\x1b\x31\xc2\xab\xaf\x76\x27\x66\x23\x4b\xe3\xb8\xa3\xd8\xbb\x67\x15\xb0\xf1\xac\xaa\x92\xbc\x66\x92\xd2\x64\xe0\xdc\x89\x61\x50\xf5\x49\x08\x4d\xae\x4f\xbd\x6c\xe3\x76\xb0\x33\x3e\x3d\x3c\xff\x22\x95\x65\x33\x3b\xb2\x49\x2e\x4d\x1e\x66\xe8\x29\xcd\xb2\x13\xad\x71\x4c\x9e\xae\x45\x16\x45\x68\xe1\xda\xd0\xf7\xe5\x9b\x46\x6d\x99\xf0\xf7\x65\x38\xea\x50\xc9\xc2\x29\xc9\x56\xf3\xbf\xa9\x24\x4b\x29\x98\x34\xee\x58\x90\x3e\x50\xe9\x58\xd3\xd4\x51\xca\x18\x59\x34\x1c\x49\xcb\x11\xc7\xd3\x79\x9d\xe9\x9e\x6f\x0f\x4d\xc9\xa0\xc3\x43\x2d\x2e\xaa\x90\x0e\xef\x17\xfb\xcd\xd6\x54\xe1\x24\xae\xa9\x52\x46\x98\x26\x45\x94\x94\x51\x32\xfc\x5c\xb5\x56\x11\xff\xc1\x97\x5d\xeb\x92\x31\x10\x4e\xdb\x75\x1e\x55\x70\x0f\x88\x82\xe3\x25\x43\x23\x1d\x83\x79\x16\x9d\x6c\xfe\xa1\xa9\x9a\x88\x1f\x69\x52\xac\x2d\x6c\xb6\x57\x81\x3f\x4f\x69\x64\x2c\xf4\x48\x1c\x54\xd9\x09\x8e\x1f\x47\x04\xe3\x8c\xaf\xfd\x07\xb1\x1c\x0b\x46\xe1\xd8\xd4\x23\xd8\xcf\xbb\x12\xd7\xb8\xca\x1d\xe4\x35\x61\xf9\x5d\xd0\x34\x99\x0b\x81\x8e\xa1\xcd\x3a\x18\x76\x28\x89\x00\x35\xca\xd7\x6d\xe5\x80\xbe\x49\x56\xdd\x6a\x45\xbd\x12\x62\x9c\x7c\xdd\x38\x7c\x17\x0e\x75\xd7\x4d\x06\x6b\x27\xec\xcf\xa8\x2d\xf2\x75\xe3\x74\xf9\x4a\x37\x4c\xcb\x89\xb3\x50\x47\x64\xbf\xab\xa7\x74\x0b\x77\x6d\xb6\x08\x4f\xf4\x4b\xea\x1c\xd1\xcc\x55\xdc\xd9\x17\x39\x3e\xdc\xae\xd5\x1b\xab\xef\x22\xd9\xef\x53\xbe\x91\x47\xd2\x29\x68\xbb\xb9\x61\xf3\x25\xe0\x7b\x81\x8a\x1f\xce\x37\xc6\x66\x71\xf1\x20\x33\xaa\x3a\x5e\x11\xf9\x7b\x48\x6d\xf9\x26\x78\x4e\xc1\xdb\xf2\xc2\x94\x99\x49\x0a\x44\x7f\xd8\xa9\x4e\xe0\xc7\xf9\xa6\xd5\x4a\x28\x4f\xcc\x84\xc6\x92\x15\xaa\xe8\xb9\x44\xad\xaa\x65\x15\xe5\xa1\xe5\x38\xcc\x71\xce\x5d\x33\xe6\x5c\xad\xa8\x1d\xe7\x76\xce\x6f\x9a\x08\xc2\xf8\x1a\x99\xa7\x9c\xee\x4a\x52\xeb\x58\x5d\x96\x6f\xe7\x98\xfc\x56\x15\x45\x4d\x6c\x56\xa0\xe0\x8a\x8d\x96\xc1\x9b\x7c\xd3\xb2\x8b\x55\xe3\x18\x5a\x11\x03\x61\x53\x2c\x2c\x08\x71\xc8\x6a\x91\xb6\x5a\x65\x6f\x69\xa7\x28\xeb\xe4\x8e\x2f\xb4\x40\xb4\xa0\x55\x36\xa3\x6c\xb4\xdf\xd2\xee\x3d\x97\x95\x04\xf8\x8d\x16\xe1\x97\x03\xdd\x89\x0d\x57\x79\x89\xe1\x9c\x62\xf9\x0e\xbe\x09\xbe\xe0\x03\xdc\xb2\x5f\x45\x84\x45\x04\x5f\x5b\xed\x08\x5b\x9d\x44\xc2\x5f\xf4\x61\x90\x09\xc3\x32\x2f\xaa\xa8\x69\xd6\x51\x83\xbf\xf5\x11\x76\x1b\x41\xaf\x57\xdb\x06\xff\x03\xa2\x05\xfe\x07\xc7\x8c\x20\x39\xc8\x68\x80\x57\x2f\x42\xf2\x1d\xe5\xca\xa3\x4c\x7c\xe3\x34\x19\x5a\x18\x8f\x3b\x09\x22\xd7\xff\x65\x37\x3f\x46\x29\x68\x4a\x27\x7c\xb4\xa9\x54\xb3\xf8\x0c\x32\x07\xe1\x74\xee\x04\x7e\x2c\xcf\x93\xce\xd1\xd8\x9b\x1c\x20\x95\xb8\x33\xf5\x0a\x36\x77\xda\x4a\x1a\xa1\x4d\x0a\xcf\xad\xe5\x1e\x2c\x26\x1d\x0e\xd3\xbf\x9f\xaa\xaa\xf8\x99\xe9\xe3\x4a\x7f\x69\x63\xb7\xa7\x7a\x5e\xd6\x66\xe0\x8a\x87\xff\x4d\x6c\x12\xd2\x5a\xa0\xbf\x25\x5d\x8f\xea\xcc\x90\x54\xa8\x25\x07\x9d\x40\x8c\xe5\xb0\x00\xca\xb6\xf5\xb1\xb9\xdd\xa6\xc6\x32\xb1\xe9\x24\x16\x16\xa5\x60\x67\x15\xe2\x74\xae\xa7\x8c\xda\x9a\x62\x7c\x8b\x8b\xdd\x95\x28\x16\xca\x89\x28\x12\xd2\x68\xf2\x4d\x9b\x05\xe8\xc4\x4c\x9c\x26\x3d\xf2\x88\x29\x86\x8c\x6f\x02\x1f\x52\x0f\x5e\x50\x5e\x89\x17\xb5\x6f\xd3\x45\xa5\x65\x59\xcd\x96\xc2\x66\x4c\x6b\x14\x61\x98\x8e\x17\x89\x69\xd3\xeb\xcd\x6d\x16\x59\xf6\x89\xc6\x98\xde\xc7\xc8\x8b\xdc\x87\x3f\x57\x3f\xd0\x99\xe2\x9e\x9e\xde\xa2\x5e\x78\xe1\x85\xc7\xbd\xc4\xf4\x75\x5a\x05\x58\x70\x77\xa8\x6a\x2c\x1e\xba\xf4\x22\x94\xa7\xe7\x41\xae\xd3\xde\x51\x02\x70\xff\x40\x6a\x02\x0c\x0a\x83\x6d\x99\x53\xb1\x76\x2d\xfc\xb3\xca\xf9\x9b\x29\x1c\xfc\x97\x28\x5e\x67\x55\x9a\x5a\x84\xba\x6e\xf2\x2f\x2a\x45\x0b\xce\xc9\x11\xb3\x6d\x61\xc9\xa3\xe3\xfd\x28\xd1\x85\xd9\x96\x0b\x47\xbc\x6b\x44\xb8\x0e\xfe\xd3\x9b\xb4\xf5\xaa\x53\x5c\x1a\xc5\xd7\x02\xd5\xc9\xd8\x46\x6b\x8a\x5d\x4c\x30\xb2\xa8\xac\x3d\xb2\x59\x65\x00\x72\xf0\x7b\xcd\xfb\xc7\x7b\x9e\x8f\x7d\x56\x49\x3a\x1e\x9b\xea\xce\xc6\x23\x80\xce\xa1\xee\x74\x76\xaa\xba\x85\x0f\x94\xbf\xca\xb3\xbd\x6a\x28\xa5\x0c\xea\xcb\xf7\xe7\x28\xb1\x70\x2e\x1e\x8e\xb4\x3b\xb7\xd9\xc2\xcc\xec\xc7\xa5\x9d\x64\x11\x0b\x5c\x89\xa3\xbc\x87\x56\x9f\x57\x72\x3f\xa1\xc9\xac\x4d\x66\x7c\xdd\x19\x94\x6f\xb7\x79\x2d\x1f\xe0\x2e\xdd\xbd\x40\x39\x37\xc7\x51\xb5\x99\xc4\x16\x82\x67\xae\xdc\xec\x60\x4c\x54\xbb\xe1\xf7\x7b\x62\xba\x93\x9b\x7b\x78\x7e\x81\x61\xe3\xd5\xba\x97\x6d\x0c\xf3\xe7\x96\xb2\x8e\xbb\xf5\x99\xf2\x4f\x83\x32\x8b\x32\xd6\x33\xc0\x76\x7a\x4a\xd3\xc7\x9b\xfc\xe7\x43\x2f\x75\xcd\xca\x4a\x14\x47\xa6\xb0\x54\xff\x73\xcc\x5d\xc7\x51\xbe\x1f\xa8\xec\xc0\x95\x47\xc2\x54\xbe\x9f\x76\x9f\xe7\x6b\x57\x48\x1f\x96\x26\x1b\x58\x2a\x18\x3b\xac\x64\xbd\x50\xb1\x73\x07\x3a\xf4\x52\xb7\x58\x8f\xb8\x60\xe5\xe8\x67\x0a\xd9\x1e\x88\xd8\x65\x1a\x0f\x90\x28\x61\x98\x2f\x06\xde\xc7\xeb\xa2\x6e\x96\xa4\xfd\xbe\x8b\x26\x31\x81\xce\x2b\x42\xc0\xf9\x46\xeb\x06\x86\xb3\xc9\x60\x44\x94\x61\xde\xd6\xd0\x01\xd4\x58\x2d\xdf\x01\x1b\x50\xc9\x2f\x77\x3a\x77\x88\xa2\xf1\xc2\xb0\xf6\x40\x0b\x44\xb6\xbd\x6b\xf3\x09\xb5\xdd\x14\xc2\xe3\x41\xed\xf9\x27\xda\xa9\xef\x27\xda\x54\x75\x54\x56\xcf\xa0\x29\x2d\x75\xb6\x8b\xd3\x62\xb1\xa4\xa6\x3a\xe3\x67\xc0\xf7\xa6\x9e\xb4\xf4\x00\x5b\x05\x82\x96\xa6\x52\xfa\xfe\x25\x98\x42\x77\xfc\x2c\x85\xa3\x0e\x5f\x7f\x26\x39\xb3\x18\x95\x59\x3e\x30\x1b\xf9\x2c\xbe\x15\xa2\xe0\x6d\x6c\x8c\xc8\x37\xe0\x67\x29\x7e\x71\xda\xda\xa7\x85\xe6\xcd\x72\x6d\x98\x36\x52\x06\xf4\x2c\xf3\x4b\xda\xd2\x61\x14\x25\xe2\x88\x8c\xc0\x83\xdb\xed\x7c\xb3\xa9\x68\x53\x69\xb2\x41\x65\x30\xd6\xa5\x9a\xaa\x4d\xf4\x32\x6d\x5c\x4e\xb0\x6a\xd9\x4b\x58\x4a\x25\xa1\x4c\xdc\x4a\x19\x28\x22\x0c\x9b\x63\xc8\xfa\xf6\x9f\xb6\x16\xd9\xf5\xbd\x1e\xc2\xf1\x00\xfb\x27\xb6\xb3\x93\x50\x0b\xe0\x1b\x40\x89\xd0\x1f\xbb\x1a\x78\xfe\x0e\xb4\x28\x31\x9d\x6e\xd0\xf7\x13\xe7\x52\x8f\x5b\xa8\x9e\xcf\xe9\x73\x97\x59\x81\x79\x8e\xd5\xf5\x87\x53\x5f\x1e\xfc\x43\xc5\x74\x0c\xe3\xb4\xdf\x87\x6a\x5d\x15\xd7\x31\x24\x09\xe7\x83\xe0\x93\x7c\xf5\x34\x49\xc7\x65\x66\xf6\x54\x7b\xae\x2b\xba\xb8\xc0\xf7\x3e\x7d\x2d\xa7\x31\x51\xc3\x9b\x1d\x9e\x77\x78\x33\x9f\x82\x02\x82\x8c\x2a\xd8\x59\x45\x32\x81\x07\x01\x90\x16\x28\x85\x21\xbe\x46\x89\xec\x1c\x22\x44\x9c\xaa\x7f\xea\xa4\xcc\x8b\xcc\x24\xb9\x46\xe0\x89\xdf\x29\xfd\xb4\x30\x59\xdb\xaa\x98\xa3\x68\x60\xb1\xc7\x60\x12\x5e\x9c\x2a\x67\xc2\x8b\xc1\xe7\x5c\x23\x70\xd6\xd3\xa1\x4f\x53\xc9\x9d\xc7\x40\x61\x11\xf9\xb9\xf9\x87\x94\x5e\x71\x8d\x5f\x2e\xa2\x9c\x4a\xea\xf4\xb4\x2a\xa3\xdd\xc5\x13\x0a\x3b\xa5\xc5\x28\xc1\x8e\x6d\x36\x14\x1c\x9d\x58\x9b\xd0\x02\x13\xcf\x93\x16\xa5\xf8\x49\xc9\x78\xad\xed\x33\xf4\xb3\xdb\x67\x94\x39\xd9\x4a\x66\xc6\x56\x2b\x17\x9e\x22\x70\x0b\x5f\xab\x29\x90\xdb\x6c\x4d\x1c\x4e\xb0\xa3\x1d\x55\x42\x50\x9f\xd4\x5c\x16\xd5\xda\xbb\x11\x78\xa1\xe6\x5b\x0a\xd7\x46\x7b\x1f\x61\x40\x3a\xca\x1e\xe0\x8a\x42\x92\x5f\x09\x3c\x4d\x3b\x2f\x5e\xd8\xe3\xb3\xe9\x0b\x35\xb1\x4e\x7c\x1a\x0a\x1d\x3f\xa1\x59\xa6\xc5\x84\x91\xca\x3d\xde\x53\x95\xd3\x4b\x1a\x56\xfe\x9e\xea\xfd\x4f\xb2\x74\x3c\xa1\x95\xbd\x3c\xcf\xc9\xe6\x27\x1a\x09\xf8\x49\x03\xf5\x52\x05\xbe\x51\x51\xe4\xfd\x32\x1b\x8e\x94\x4e\xe9\x3b\xfa\x4b\xbd\xa3\xa0\x21\x26\x11\x93\x5c\x24\xf8\xef\x2b\xf2\x03\x2b\xaf\x62\xdd\x5f\x09\xbc\x94\xd0\xc4\x66\x2b\x36\x2c\xe2\x8d\x39\x1f\xa7\x5c\x0e\x94\xd9\xc6\x43\xa2\x24\xe0\x2f\x7e\x5f\x05\x9f\xa0\xca\xb2\xb0\x8e\xc2\x97\x80\xdf\x12\xa5\xc9\x5e\x0a\xfb\xc4\x19\x44\x69\xbb\xcd\x6c\x2a\x4c\x60\xa0\x54\x3b\x99\x1b\x8b\x3c\x70\x57\x4f\x55\x53\xb5\xcd\xe4\xa3\x3d\xc5\xfe\xfd\xa0\xe9\xc6\xb1\xd0\xcd\x28\x4d\xa5\x07\xc6\xe4\x7f\x5b\xc9\xec\xbd\xed\x36\x5c\xfb\xfa\xa4\x0a\xe9\xa1\x03\x4b\x1f\x86\x1a\xe0\xa7\xca\x1f\xe4\xd3\x9d\x02\x43\xbf\xde\x5d\x5c\xdc\xeb\xa9\x35\x40\x05\xb1\xe0\xa5\x56\x91\xda\x0a\x7c\x47\xec\x6c\xa0\x60\x03\xc7\xa6\x5e\x98\xf2\xd8\xd4\xbf\xd6\xb9\x4d\xa5\x90\xd4\xcc\xf7\xab\xa8\x61\xc5\xda\x18\xe0\x65\x27\xcf\x7c\x58\xac\x95\x3f\xc5\xc4\x13\xe5\xf5\x9a\xd6\x6d\x9e\x66\x45\x54\x8e\x01\xa6\xc0\x02\x38\x82\x71\xc7\x99\x70\x1b\xdf\x8f\xfd\x35\x51\x63\xe7\x13\x76\xea\x6b\x33\x7f\x56\xd7\x92\x49\xf2\x2f\xd2\xdf\x43\x85\xe1\x09\x32\x31\xc4\x1a\x85\x6b\x03\x0b\x20\x91\x80\xa3\x90\x48\x3c\x4f\xea\x41\xa0\x30\x6f\x0c\xa6\xc4\x5f\x9a\x21\xca\x17\x06\x8e\x61\x91\x28\x94\xef\xdd\xac\x42\x74\x09\x94\xe8\x7c\x03\xf4\xec\x2a\xda\x4d\x4a\x4b\x60\xc1\xe9\x28\x54\x3b\xaa\xab\x87\xec\xf7\x25\x3b\x9a\x42\x98\xe0\x57\x03\x45\x37\xe9\x6c\x36\x74\x8c\x30\xbe\x37\x14\xc4\xf2\x28\xc7\x46\xf4\x0f\xdb\xcf\x01\xea\x8b\xa2\xfd\x5f\x62\xe9\x20\xff\xfe\xcb\xb6\x35\xed\xa5\xdc\x94\xb4\xc6\x65\x2d\xad\x71\x59\xa1\xcb\x0c\x99\xd5\x76\x74\xd7\x4e\x09\x53\x5f\xaa\xb6\x31\x29\x16\xa4\xe9\x93\x4a\x10\xe6\x16\xc6\x14\x29\xd8\x49\xc5\x8a\x3e\x5b\x83\x09\xfb\x32\xfe\x35\x4a\x26\xf1\x76\x3e\x9c\x7a\x0c\xe9\x13\x9b\x35\x0b\x2e\xa5\xec\x77\x8d\xce\x66\x8c\xf4\xcd\xa9\x42\x9e\xf3\x6b\x03\x8e\xe9\xa6\x62\x1e\xed\xa1\x8c\x4d\xa8\x81\x8a\xe6\x56\x8e\xfb\x36\xdb\xed\x13\x20\x96\x0e\xd5\xab\x04\xbc\x90\x8f\x31\x6f\x9c\x85\x68\xf5\xb2\xc4\x0c\xd0\x6f\xef\x47\x75\xa2\x95\x59\x33\x46\xf1\x8e\xc5\x07\x02\xdf\x3a\xbe\xd6\xc8\x91\x16\x0e\x75\x6d\xb2\x56\x25\x39\xec\xb7\xea\xa9\xcb\xff\x1b\x86\x9e\x6f\x1a\x25\x82\x7d\xfb\xba\x61\x6c\xa2\x31\x47\xf4\xc8\x19\xaf\x62\x9d\xf1\x8d\xe6\x31\xdb\x24\x1c\x8d\x4d\xb6\x4a\x1f\xe0\xcc\x13\xf6\x2d\xc8\xb5\x42\xdb\xe7\x13\x93\xad\xe6\xb5\x36\xae\x9e\x04\x4a\xb1\x7b\x2d\xca\xa3\x3e\x67\x43\x2e\x61\x5e\x9e\x77\xc9\xf7\xb3\x35\xd5\xd7\x92\x7a\xbc\xb3\x1e\x86\xcb\x78\x6f\x09\xa8\xe9\x39\xb0\x01\xc3\xf0\x41\x98\x94\xcf\xe8\xdd\x25\x61\x05\x2e\x2f\x35\x09\x42\x34\x5f\xab\x73\x39\xb3\x31\x71\x7e\xe2\x8d\x8e\x8a\x8c\x39\x32\xe1\x1b\x55\xa5\xf9\x7a\x69\xfb\xd6\x89\x5b\x61\x5a\x6f\xab\xaa\xe6\x76\x1b\xb6\x87\x0c\x61\xb8\xbe\x24\x22\x0b\x5e\x67\xfc\xf2\xf4\x71\xd9\xc8\xab\x15\xfc\x9c\xca\x86\x8e\xd2\x6c\x16\xa2\x41\xb5\x16\x94\x69\xfe\x01\x47\x34\xa7\x19\x87\xed\xf7\xdb\x34\x26\x38\x19\xef\xd2\x0a\x43\xa5\xe9\xaf\x15\x7e\xfb\xea\x54\x75\x19\x98\x5a\xc6\x2c\x42\x14\x3d\xa5\xf2\xea\xb1\xe0\xdf\xa4\xed\x13\x89\xe6\x9b\x3a\xc2\x09\x3c\x27\xf8\xa1\x96\x9c\xfb\x54\xe3\xfb\x59\x6a\x40\xd0\x0c\x4a\x97\xe5\xc3\xa9\x56\xa6\x7b\xbc\xb7\x73\x6f\x92\x5c\xcb\x8c\x87\x5c\x98\xd0\xa0\x52\xe4\xed\x9f\xea\x25\x70\xab\xb1\xbd\xed\x5f\xea\x66\x51\x38\x22\x68\x3e\x9c\xfd\xc5\x76\xb2\x86\xc3\xf8\x52\xa4\x4c\xb5\x6d\x16\xa6\x71\x6c\x87\x11\xe9\x51\x7b\x8b\xa5\xba\xda\xb7\xe4\xc2\x76\x12\xc5\x76\x52\x44\x21\xaf\x32\xd1\xf1\xf6\x00\xee\xcb\xaa\xdb\x97\x66\x55\x86\xfd\x28\x9e\x5b\xfa\x74\xbe\x41\xf0\xf9\x9e\x0f\x61\x66\x7a\x4a\xf1\xf8\xa4\x56\xc9\x78\x40\x1b\x8b\x08\x33\xd1\x4b\x93\xf7\x4c\xe3\x8e\xaf\x78\x8f\x4a\x36\x7c\xfc\x4e\x15\x1e\xbb\xd9\x88\x5d\x5a\xea\x16\x25\x9c\x88\x66\xbc\xd5\xe1\xb7\xb4\x3c\xd0\xb7\x94\xa3\x8c\x7d\x3d\x24\xc9\x75\xe7\xae\x71\x61\xea\xbf\xf6\xc7\x5e\x7a\xf3\x5b\x37\x9b\xe6\x55\x07\x44\x1c\x5d\xf3\xc9\xb5\xe1\xd5\xc9\x16\x6e\xde\x81\x6e\x18\x47\x63\xa7\x81\xae\x60\xa5\x5e\x8d\xff\x0b\x8a\x1d\x95\xd8\x2a\xda\x36\x59\x64\x59\xc2\x80\x6d\x31\x55\x07\xfc\xc2\xf4\x79\x97\xe5\x46\x2b\x51\x48\x01\x62\x94\x8f\xd1\x6b\x77\x0c\x36\xd7\x60\x79\x4f\x6f\x44\x37\x9d\xd4\x94\x1d\x0e\xc5\x65\x57\x08\xca\xd5\xef\xe0\x75\x3c\xa6\x3d\x06\x41\x93\x76\xbe\xaa\x5e\xc8\xf2\xe9\x9e\x0a\x84\xb7\x1c\x7e\x64\x12\x85\xab\x25\x18\x11\x22\xba\xe0\xf7\xe5\x66\x0d\xe7\xf0\xfc\x42\x77\x32\x4a\x0b\x98\x72\xf1\x5c\x64\x43\x2b\xda\x6e\xc4\xdc\x4a\x6d\x7e\x69\x31\xca\xc3\x51\x24\x55\x25\x61\x68\x74\x94\xf5\xbc\x4f\xee\xdf\xb0\x85\x21\x94\x26\x76\xd1\x1f\xd0\xfe\xc0\xd7\x5e\x1f\x2d\x2d\x8b\x91\xcd\x92\x39\x7f\xc2\xc2\x98\x00\x71\x36\x43\x61\x19\x64\x47\xcf\x83\x49\xf3\x74\xcf\x57\x7e\xb5\x1f\xfa\xaa\xcd\x9f\xf4\x4a\x4c\xff\xc5\x17\xe8\xc7\xf0\x24\x47\x69\x7a\x4b\x65\xca\xbf\x58\x08\xbe\x60\x69\xfd\x93\x4d\x65\xb7\xb9\x3d\x55\x6a\x54\x08\x54\xd9\x04\x7c\xaa\xa3\xe4\xa9\xe6\x4c\x3e\xd6\xa3\xa8\x4e\x21\x7c\x95\x11\xc9\xf2\x3c\x87\x47\x0f\x14\x4c\xfe\x93\xff\xb0\xf7\x6c\xa3\x61\x57\x8e\x3a\x9d\xdf\xfb\x5d\x4f\x67\x5a\x9e\x77\xac\x6f\xe7\x6d\x17\x0d\xac\xc9\xd9\x01\x1a\xd1\xfb\x55\x00\x50\x5c\x39\xd9\xa5\x00\x38\xcd\x58\xb5\x2e\xf0\x4e\x54\xff\xb6\x91\xf8\xff\x56\x77\x6c\xb3\x2c\x8a\x63\x4a\xfc\x51\xab\x3c\xa2\x49\x4f\x47\x5c\xe1\xb2\x8a\xca\x6d\x92\x97\x40\x17\x4b\xea\xe9\x11\xfb\x18\x57\xb4\x51\x9e\xa6\x6d\x0a\x65\x1a\x9e\xcb\x35\xf7\x7e\xde\xa6\x6b\x62\x5d\x69\x92\xff\x63\x7a\x1b\x88\x71\xaf\x23\xa8\x97\xba\x1f\xfd\x9a\x53\x85\x70\x0a\x0b\x70\x65\x44\x3a\xb2\xad\x24\xce\xef\x11\xb2\x08\xc1\xfd\x47\x74\x22\x21\xcc\x3a\x41\xf1\x0a\x6a\x5a\xcc\x6b\x55\x04\x54\xc7\x4a\xf6\x7a\x60\x7f\xff\x2c\xe0\x47\xd8\xaf\x3a\x9b\x8a\xd4\xbc\x05\xc6\x09\x44\xbb\x2e\xd0\x36\xbb\xfd\xd8\x26\xbd\x12\x34\xc6\xee\x33\xf2\x08\x65\x90\x1f\xa3\xa6\x85\xf5\x79\x5a\x91\x77\xff\xd9\xa6\x06\xef\xd3\xb2\x41\xf0\x73\x9f\x98\x64\x98\xf4\xff\x23\xc9\x5a\x49\x49\xb4\x3a\xeb\x85\x9e\x44\xfb\x3e\xf6\xa3\xb7\x79\x6e\x4a\xa3\x59\x29\x1f\xce\x6c\xd6\x0c\x9f\x42\xfb\x45\x95\x4d\xdd\x43\xab\x19\xd9\xde\x4f\x95\x5e\xf4\xae\x4d\x25\xc2\x87\x90\x1c\x51\xc9\xfb\x0a\xfa\x77\x03\x25\x17\x49\x8c\x3c\x82\x95\xc5\x02\x51\x73\xb8\xa7\xf6\x03\x86\x8a\xca\x82\x72\x48\x8f\x5d\x4f\xf5\xaa\xd7\x26\xad\x87\xea\x29\xb1\x34\xff\x7c\xda\xd0\x1e\x97\x1d\x5b\x41\xf5\xde\xa7\xf1\x72\xda\x2f\x9e\x8e\x7c\x55\x93\xa0\x76\x53\xb6\x86\xa1\xbf\xaf\xed\x9b\xf7\xb0\x69\x0d\xea\x96\x4d\xb5\xd7\xe5\xf9\xee\xc8\x71\xfd\x5c\xef\xd2\xfb\xff\x9c\xd5\x76\x2d\xb6\x4a\x61\xf3\x51\x34\xe9\x74\x7e\xe7\xf7\x1d\x24\xaa\x1a\x59\xbe\x76\xc0\x91\x89\x4d\x12\x39\x57\x85\xba\xa9\x79\x9c\x53\xb5\x00\x8b\x28\x29\xed\xe0\x31\x57\x6c\xfc\xf4\xb9\x9e\x92\x9c\xda\xa6\xb1\xaf\x15\xcf\x60\xad\xf3\x05\x40\xb1\xa5\x05\xa7\xf2\xbd\xce\xa6\xb2\xcd\x3e\xa5\x79\xe8\xe8\x46\x33\xf6\x99\x92\x52\x94\x37\x4f\x20\x40\xc3\x3a\x3f\xa3\x64\xbb\xcd\x60\x8d\xe4\x17\x67\x95\x88\x2f\x37\x8d\xf9\x06\xfb\x2b\xbb\xda\x2a\x1d\x0e\x6f\xcb\x99\xa4\xeb\x23\x9b\x41\xfe\x06\x33\x70\x96\x40\xfc\x8e\x96\xbc\xe4\x0c\xfb\x1e\xb8\xbe\xcb\x20\x33\xeb\x7b\x3c\xb1\xe1\x24\x46\xcf\x89\x40\x57\x0f\x8b\x13\x01\x69\x94\x70\xc0\xe9\x6b\x62\x1a\xfc\x02\x5b\x14\x60\x68\x47\x68\x14\x11\x9a\xde\x52\x65\xa7\x91\x4d\x06\x24\x07\x89\x08\x00\x3b\xfb\x71\x8c\x86\x6c\x6e\xbe\x49\x70\x47\xe9\x6b\x25\xa9\xa8\x83\xd4\x1a\x2e\x8e\xc4\x70\x5e\x51\xc4\x93\x68\x38\x42\xb3\x41\xf1\x03\x65\xd5\xfd\x5c\x81\x58\xf3\x91\x1d\x0c\x9c\xd2\x0a\x76\x37\xa6\xe3\xf2\x8d\x4a\xdd\xc2\x51\x16\xe5\xc5\xd8\x20\x23\x73\xda\x05\x5e\xc7\xc0\x95\x9d\x57\x62\x5b\x84\x23\x0b\xb0\x33\x1b\x1e\x2b\xc2\xf9\x77\xb4\x47\xec\x7b\x8d\x56\xd5\xfe\x25\x00\x12\xab\xd8\x6d\xfb\x16\xa1\xb2\x6f\x7d\xb6\xde\x6e\x38\x48\x9d\x36\x92\x38\x8a\x2b\x41\xf0\xd3\x4a\xc7\x20\x8e\x72\x62\x8d\x60\x85\x8a\xd1\x0f\xbd\x08\xb1\x00\xaa\x95\x7a\x62\x83\x7c\xca\x49\x6a\x57\x33\x4f\xe4\xae\x77\x9e\xbf\xfb\xf6\x75\x33\x2e\x43\x62\x0a\x1c\x55\x1a\x9a\x0c\x9c\x11\x5f\xaa\x27\x94\x39\x67\x64\x66\x14\xfa\xe4\x17\x34\x6f\x30\xbb\x00\xcc\x15\x71\x97\x67\x1c\xf0\x32\x2f\xa2\xa2\x04\x2b\xc1\x9d\x95\xef\x28\x25\x08\x4e\x56\x44\xae\xd2\x33\xd1\xe2\xa8\x6f\x33\x13\xd3\xd1\x8b\xe2\x87\xe8\x63\x63\x4d\x63\x3f\x76\x7e\x41\xde\x1c\x86\xa1\x0a\x18\xd1\x9b\x78\x16\x84\xff\x8f\x78\xed\xed\xc2\xda\x98\xdb\x54\x58\x75\x68\xd9\xa3\xcc\x7b\xb5\xd6\xec\x54\x25\xca\xab\xea\xfd\x84\x96\xaa\x3e\x2a\xe4\xbf\x8f\x31\x47\xa0\x3b\xab\x34\xbf\x4f\x37\x0a\x85\x2f\x2f\x1c\xea\x8e\x69\xd6\x38\xe5\x2d\x2c\x0f\xc9\x7f\x5a\x90\x67\x45\xea\xf5\x84\xc5\xb8\x42\x99\x55\x5c\x50\xdf\xcd\xae\x99\x5c\x14\xed\x9d\x9a\x8b\x57\x76\x69\x90\x0c\x0e\xcf\x77\xf3\x89\xb5\x5e\x01\x48\x68\xb6\x8a\x72\x1b\xfc\x5a\x4b\x93\xd6\xc6\x96\xf5\xf3\x91\x2d\xe4\x33\x9e\x67\xc6\x00\x44\xc4\x36\x0f\x54\x97\x63\xb6\xf7\xbc\xd7\x44\x1d\xd9\x6c\x9c\x8e\x2d\x59\x89\x55\xbf\xab\x14\x18\x1c\x53\x4f\x35\x72\x49\x91\x24\xcd\x3a\x8a\x0a\x81\x46\x18\x5f\xab\x4a\xfb\xa1\x74\x02\x0e\x1f\x16\x01\x34\xce\x59\x73\x8f\x7e\x85\xb9\x68\xbd\xea\x6c\x95\x90\xe3\xb3\x80\xa5\x7d\xbb\x91\x26\x83\x99\xea\x4f\xa0\x96\x00\x79\x1c\x2e\x21\x62\x8e\xe0\x4c\xec\x6c\xea\x96\x89\xc9\xd3\x64\x0f\xe6\x19\xda\xf6\x20\xd1\x22\xda\xf9\x3b\x1a\x14\x61\x50\x51\xe4\xe0\xd4\xc4\x14\x9d\x8a\xb6\x3b\xbc\xba\x9a\x3b\xe0\xa9\xe0\x79\x85\xf3\x7b\xad\x5c\xb3\x09\xa4\x2c\xab\x4f\x60\x8d\xf4\xc0\x9b\x9c\x9f\xae\xa1\xf0\x32\x93\x53\x57\x4b\x88\x32\x34\xde\xd8\x9c\xff\x2c\xf0\x4e\x5c\x77\x95\xf3\xd3\x05\x77\x2e\x8f\xcb\xb8\x88\x36\xac\xc9\x70\x30\x70\x43\x62\xda\xd9\xa1\xd5\x0f\x24\xf4\xa7\x3e\xa0\x47\x9a\x4b\xc0\x47\xfc\xc9\x2b\x58\x9e\x2e\xe4\xf1\x46\x7f\x97\xa7\xb5\xfa\xd5\x5a\x44\xf5\xab\x8e\x73\xbf\x3a\x45\xe1\xae\xcc\x34\x97\x6c\x95\xa4\x4d\xc5\x11\x0b\xe2\x5c\x16\xdb\xe3\x9b\x16\x9b\xd9\x05\x69\x87\x48\xef\x1e\xbb\xd8\x2d\xc5\xf2\x9a\x53\x1e\x0f\x37\x55\x4f\x6c\xcd\xc6\x6b\x16\x87\x97\x83\xa5\x78\xa6\x5e\x8b\x4e\xe5\xc1\xae\x4d\x06\xe9\xba\x14\xbf\xd0\xe4\x7c\x67\xaa\x3a\x9e\xef\xa8\xc2\xf2\x8a\x49\x92\x08\x64\x6a\x0d\x75\x97\xee\xe3\xce\x46\x3c\x79\x62\x96\x49\x5e\x66\xa2\x0b\x4d\x8f\xe3\x7a\xb1\x2e\x57\x6e\x5a\xaa\x2d\x1c\xea\x4e\x4c\x39\x11\x19\x6f\xe9\x18\x75\x9c\xda\xfc\xa9\xe0\x71\x5f\xb1\x89\x07\x9f\xa7\xf9\x22\x78\x69\x1a\x6d\x2c\xee\x27\x7a\x35\xa5\x51\x7a\xbd\xce\xda\xca\xf5\x15\x01\x11\x14\x8a\x8c\xdf\xa6\x6e\x06\x8a\x7b\x88\xe0\x11\x93\x97\x05\x64\xb1\x64\x59\x65\x13\x51\xeb\x59\x9d\xc6\xfc\x20\xa8\x72\x06\xe1\xbe\xe9\xb4\x75\x66\xd3\x2f\x7f\x6d\x7b\x1f\x97\xe4\x60\x57\xc5\xf9\x68\x3b\xdc\xa4\x4f\xe5\xeb\xc6\xc6\x7d\x78\x1e\xfd\xe6\x4e\x2d\x71\x56\x47\x78\x53\x56\xe5\xd0\x4b\x0a\xc2\xc7\x23\xa6\xdc\xd1\xda\x1c\xd8\x16\xba\x2b\x26\xce\xad\xd2\xd7\x39\xa3\xf4\x75\xce\xd4\xd4\x16\xc3\x34\x1b\xd8\xc1\x6c\x67\xf9\xc0\xf6\x1d\x25\x42\x8d\x6a\x9b\xd3\xc4\xd8\xbf\xb4\x7d\xa7\x51\x45\xfa\x4a\xd7\xe4\x39\x87\x19\x35\x3e\x72\x67\xc9\x13\x95\xfd\xf1\x1f\x9b\x84\x8a\x7f\x07\xb6\x49\xec\x7f\xfb\xca\xf4\xd9\x7a\xdb\xed\x6b\x0b\xdd\xe5\xf9\x6a\x8f\x64\xbb\x20\xe4\x47\x0f\x55\x97\xf8\xb2\xea\x41\xda\xd8\xae\x91\xed\x39\x16\x9d\x08\x4b\x57\xcf\x2c\xfe\xd0\x7e\xef\x39\xa1\x9a\x28\x99\x1d\x90\x4b\x83\x6e\xc2\xa3\x6a\x09\x81\x28\x91\xb8\xac\x5e\x38\x5f\xeb\x64\xfa\x61\xcd\x8a\xe9\xba\x6a\x85\xf7\x63\x13\xae\xee\xf5\xf3\xe4\x6a\xa0\x14\xbe\x39\x50\xc3\x2b\xf8\x23\xfa\x20\x27\xbf\xbc\x24\x91\xd6\xcf\x10\x88\x00\xc8\xc7\x9a\x42\xe2\x32\xe8\xe1\x1a\xd7\x1b\x35\xc0\xaf\x74\x89\xa4\x97\xb1\x73\x3c\x4e\x81\x8b\xb4\xc5\xf1\xb5\x9a\xb2\x45\x1a\xc5\xb6\x80\xf0\x1e\x4b\x0c\x07\x5a\x6e\x78\x67\x16\x57\x05\x7b\xd6\x4c\x3a\x9e\x59\x77\x01\xc7\xab\x24\x29\x7e\x04\xf2\x49\x5a\xd4\xde\x07\x36\x72\xe9\x77\xfa\x8d\xfb\x84\x2a\xe0\x02\xf9\xb9\x5b\x35\x83\xae\x2b\x2f\xbf\xeb\xa8\xc6\x2a\x9f\x64\x5f\x22\x55\x86\xe8\x57\xb1\x89\xf0\x4d\x5b\x98\x3d\x8a\xc2\x55\x2e\xe2\x49\xbe\xa6\x93\x37\x75\x18\x96\x89\x58\x8e\xc4\x50\x93\x43\x31\xff\x87\x53\x45\x0b\xfe\x21\xbe\x09\xa0\x98\xec\xbd\xc6\x37\x8d\xb7\xb3\xb8\xd8\x1d\xda\xa4\x8a\x46\x67\x55\x2d\xea\xa3\xa0\x4e\x0c\x74\x7e\x8e\xf7\xd4\xea\xbe\xae\xdc\x1a\xf2\x22\x2b\xc3\xa2\xcc\xec\x60\xae\xca\xc7\xf1\x3d\xae\xd2\x4c\x62\xb1\x19\x34\xcd\x45\xc0\xd0\xb3\x1d\x2e\x63\x0c\xa5\x27\xd1\xd2\xb0\x5c\x8f\x72\x1b\x92\x14\x0a\x46\xc8\x75\xf4\xab\xef\x2b\xb5\xba\x36\x22\xcf\xd0\x44\x2e\x17\xc7\x6b\xbe\x82\x39\xcc\x37\xee\x68\x8d\xa3\xc2\x66\x26\x64\x36\x3c\x76\x87\xd3\xaa\xb2\xfb\x88\x92\xb2\xb8\xd1\x72\xca\x92\x18\x6e\x48\x48\x40\x5d\x51\x3f\x15\xa8\x8a\xba\x3f\xc8\xd7\x47\x36\xb1\x6b\xe2\x0c\xe6\xb2\x9f\x97\x97\x05\x9c\xf8\x4c\xcf\xf3\x91\x6f\xd3\x52\x47\x09\xa8\xb3\x59\xdb\x1c\x6d\x52\xc4\x1b\x4f\x62\xc1\xb3\x10\x30\x50\x57\xa8\xbe\xee\x42\x5b\x58\x68\xcd\xd5\x13\x38\x58\x58\x35\x72\xf8\x87\xf7\x11\x9b\x09\xe2\x9f\x5e\x92\x40\xfe\xab\xb7\xa7\x4d\x32\x11\x91\xcc\x68\xb8\xc9\xfd\x40\xe5\x62\xdb\x88\x8a\x91\x18\xdc\x0c\x3c\x5f\xe8\x1a\x66\x27\x0b\xd0\x79\xef\x18\x1b\x17\x69\x62\x28\xc4\x68\xf5\x9f\x77\x9a\x5c\x14\x55\x68\x9e\x99\xe2\x03\x5f\x6a\x5b\x50\x61\x6c\x72\xa4\xc7\x78\x83\x3f\x0c\x14\x12\xfb\x87\xaa\xce\xdd\x4f\xd3\x55\xb8\xc5\x39\x22\x94\x57\x69\x65\xe1\x5c\xbe\xc1\xa3\x4a\x31\xcc\xa7\x51\xdb\x38\xbf\xf9\xa6\x4d\xa2\x63\x90\x99\xbc\x88\x42\x62\x4c\xa3\xe8\xc7\x26\x7d\x38\xe5\xdf\xa3\x97\x83\xb3\xfc\xee\xd4\x1f\x0c\x47\xdb\x28\x74\x7d\x13\x9b\x24\x04\x27\xc1\x05\xc2\x3e\x28\xd6\x6a\x1f\x26\x31\x43\x2a\xe1\xe8\x8a\xad\x6f\xbe\x7f\x23\xf0\xe7\xd1\x75\xda\x65\x91\x22\xbe\xaf\xba\xb4\x69\x18\x52\xba\x55\x6d\x0f\x3a\xec\xf4\x26\xfb\xac\x11\xc4\x0d\x71\x25\x3a\xf8\x83\xa9\xc6\x30\x9a\x6c\x02\x99\x01\x9c\x1f\xf7\xd5\x7c\x9c\xeb\xf9\xc6\xf2\xa7\x81\x12\x19\xbf\xa3\x0e\xe8\xd7\xd2\x7e\x3e\xa7\x3a\x27\xff\x06\x53\x0a\xd5\xa3\x77\xa7\xea\x4f\x03\xc3\x8a\x15\x73\x45\xc5\x62\x77\x1b\x09\xd0\xc2\xa1\xae\xc9\x8b\x34\x89\xf2\x91\x0b\x13\x10\x1c\x01\x21\xc4\xd7\x3d\x9f\x77\xbd\x6c\xf2\x39\x3a\x9b\x9c\x76\xc5\x61\x69\xc0\x7e\x32\x55\x8e\xa0\xb3\x3d\x5a\xce\x98\xa0\x7f\x3c\xf5\x63\x7b\xb5\xf1\x25\xc8\xa6\x0d\xa5\x04\x81\x64\xc8\x49\xea\x63\xf4\xeb\x6d\x6c\x90\x81\x5d\xb3\x71\x3a\x11\x50\xa1\xd6\x0b\x70\x11\x67\xf5\x95\x04\x5e\xea\x8f\xc2\xf0\x0d\x53\xa5\xa4\x0b\x87\x78\xa2\x6d\xa9\xa5\xbe\x15\x34\x23\x9f\xa5\x25\xa2\x0c\xc0\x51\x02\xba\x3e\xda\xcf\x41\x35\x7e\x17\x3c\x54\xd2\x33\x6a\xe6\xb0\xf7\x3b\x57\x0b\xaf\x47\x76\x14\x61\x84\xe8\xba\x78\xd1\x8d\xef\x60\x4d\x29\x4c\x9b\x28\x09\x42\x8a\x0e\x87\x4a\x53\xfa\xf1\xb7\xba\x66\x6c\xb3\x2a\x13\x13\xf2\x1e\xbe\xcf\x71\x6d\x68\x72\x5c\x55\xf3\x06\x59\x9a\x12\xc2\x05\xc5\x7d\x3c\xca\x1d\x70\x19\xf8\x26\x50\x95\x95\x35\x64\x2c\x38\x0c\x4f\xeb\x6a\xde\x69\xc5\x3e\x9a\x64\x76\x0d\xe6\x26\x1d\x85\xfb\x52\xf6\x6a\x6f\xb7\xad\xec\x95\x32\x2b\x46\x36\x9b\x51\x95\x96\xb3\xaa\xf2\x04\x57\x23\x89\x35\x5b\x45\xec\xb3\xc8\x59\x8a\x63\x47\x3e\x45\x9f\xc9\xd7\xd3\xe7\x95\x15\x08\x4d\x9d\xb1\x4d\xd8\x3a\xc7\x9d\x79\x87\xe7\xe5\xba\xcd\xae\x68\x25\x33\xc9\x6a\xf5\x3d\x3b\x1e\x60\xc1\xbc\x48\xa9\xd4\xc8\x29\x67\xcb\xc9\x28\xcd\x22\x43\x7c\x38\xec\xfc\xa8\x1b\x71\x96\x84\xdf\x92\x54\xb9\xfa\x5c\xe7\x1c\xef\x31\xd5\x0f\x94\xb0\x46\x98\x26\x85\x1d\x4f\xd2\xcc\x64\x1b\x08\x04\xda\xd2\x52\x29\x23\x67\xd1\xc0\x52\x5b\x12\x13\xf5\x2a\xa2\x42\x76\x65\x57\xda\xe8\xa7\x54\xdd\xf4\x8e\x76\x49\xb8\xdf\xc8\x5d\x16\x0e\x75\xe3\x34\x5d\x95\x33\x5e\xb4\xbb\x15\xbb\xa3\xc9\x0d\xa6\xb4\x35\xb7\x8c\x03\x6d\x53\x62\x6b\x39\xbc\xfa\x26\xe7\x60\x59\x0a\xc1\x9e\x5c\x7a\x5f\x05\xcb\x13\x93\x15\x02\x65\x91\x36\xa5\x46\xe7\x35\x7a\x1e\x87\xe7\x5f\xe9\x4e\x4a\xe8\xa0\x28\x67\x5e\x09\x15\x6f\x07\x1e\x1d\x75\x56\x15\xa6\x26\x69\x1c\x97\x05\x52\x36\xc0\x10\x6e\x4f\xbd\x91\xde\xed\x56\x73\x9f\x30\x4d\xc2\xb8\x74\x01\x11\xce\x0a\x1e\x2c\xbe\x69\xe4\x6c\xfb\xf6\x75\xe3\xb4\xdf\xf7\x0a\xcc\xc8\xb4\xcf\x2b\x39\xc7\xf3\x6a\xe9\x8a\xf6\x07\x4e\x26\xc7\x53\xf7\x12\xac\xdc\xa2\x70\xd2\xd0\xcb\xf3\x4e\x1a\x5a\xc9\x47\x24\x26\xde\xc8\x23\x76\xb2\x14\x34\x9c\x8f\xf7\x8e\x28\x0b\xc0\x4e\xaf\x46\xb8\x6e\x75\x45\x20\x93\x1d\xe3\xd6\x3e\xa7\xfb\x98\xed\x92\xfb\xb7\x04\xab\x07\xbb\x93\xd8\x24\xac\xc7\x82\xe4\xa5\xd3\x53\x85\x42\x5e\x16\x8c\x3b\xd6\xdf\x3f\x5b\x35\x49\x6e\x20\xab\x25\xa6\x45\x1d\xe5\xe1\xe7\x0f\xf3\x95\x32\x5e\x89\x58\x89\xac\x0a\x0d\x51\x94\x39\x4a\x0f\xcb\xd7\x0a\x13\xb7\xc2\x3a\xb2\x4b\x4b\xce\x31\x0f\x3b\x2a\xa2\xff\x0f\xf0\x85\xb0\x72\x20\x76\x21\xda\x09\xbe\x58\x6b\xe2\x38\x32\xc9\x1b\xbb\xe9\x41\x9c\xdf\xd1\xcb\x8e\x41\x85\xcf\x66\x95\x08\x0a\x41\xf8\xff\x23\x5c\x73\xf2\x11\x4b\x4b\x8e\x02\xa5\x0b\x7d\xb9\x59\x47\x42\x27\x06\x41\xd5\x0f\xa2\x4f\xcd\xb5\x77\xce\x31\xfc\xae\xf4\xfa\xc4\x24\xce\xea\x19\x19\xf4\x75\xd5\xbc\x3a\xa7\x97\xf3\x07\xaa\xe7\x32\x88\x72\x72\x24\xc8\x31\x33\x59\xa8\x8e\xbe\xbe\x88\xd6\x3d\xa3\x84\x6c\xab\xe0\x3c\xe2\xc3\x42\xd4\x99\xfd\x96\xf9\x4b\x95\x61\x46\xc9\xa0\xe4\x70\xce\x61\x89\x9c\x04\xc3\x65\x85\xdf\x08\x4d\x61\xe2\x74\x28\x68\x4c\x20\x0a\x8e\x51\x6c\xc1\xd7\xca\x26\x7d\x25\xcd\x6c\x34\x4c\xa0\xfd\x89\x15\x7d\x1d\xd0\x31\x39\xad\x3c\x26\x8d\x35\x60\x51\x72\xf8\xb9\xee\xf1\x5d\x0b\x74\x79\xf7\x5b\x53\x5f\xec\xb8\x39\x55\x0c\x54\x66\xb8\x89\x72\x88\xff\xfa\x7f\x19\x28\x21\xeb\xef\xb5\x6d\xa8\xeb\x04\xc0\x9a\xd3\xf2\xde\x70\xa0\x64\x06\x0f\xfd\x31\x74\x38\xd8\xb8\x16\xab\x72\x06\x12\x9d\x42\xdb\xf1\x55\xcb\x38\x2d\x45\xbe\xcb\x69\x6e\x38\xdc\x49\x9d\xac\x9d\xa5\xf1\xa3\x7e\xf3\x3f\xa7\x32\xdb\x37\x11\xa3\x80\x0a\x79\x9d\x36\x0e\x31\x28\x54\x1a\xeb\xe2\x7b\x8d\x80\x94\xb9\x98\x4e\x4e\xd4\x1b\xdb\xec\xda\xf4\xc5\x41\x46\xc7\xa1\xf0\x71\x4f\x53\x56\xd2\x31\xf3\x3c\xfc\xf0\x7d\xa2\x50\x65\x9f\x34\xd2\xce\xc5\xc5\xe5\x46\xb0\x83\xc4\xf6\x06\x96\x26\xdf\x34\xbc\x18\x0f\xcf\xbf\xe8\x62\x47\x47\x0b\x16\xc2\x2e\xfd\x26\x2f\xe4\x40\xd5\xfe\x8e\xab\x64\xbf\xb0\xe1\x28\x89\xbe\x5e\xda\x7c\x56\x19\xec\x3f\xc4\x33\xb3\xdd\x12\x8d\x3a\x8a\x09\x7b\x36\x3d\x1c\xf1\x5d\xef\xd8\x63\xfa\x26\xae\x9d\xe3\x5a\xbb\xaf\xc5\x71\xe6\x60\x37\xed\xe7\x36\xa3\xba\xda\x46\x87\x6a\xa9\x0e\x41\xa2\x6c\x3b\x77\x1e\x2a\xaf\xbe\xda\x8d\xad\xc9\x92\x28\x19\xce\x29\xa3\x83\x6d\x42\x5b\x72\x0e\x3c\x55\xb5\x64\xa4\x30\x62\xe5\xe3\xd5\x47\xfe\xbd\xc2\x29\xfd\x27\xff\xd9\x6f\xcc\x74\x16\x17\xb7\x7f\xa9\xdc\xde\xb9\x52\x8a\x9b\xe3\xaa\x61\xd5\x8f\xc2\xd5\xf5\x08\x91\xbd\x13\x1f\xf7\x1c\xe9\xcb\x0e\x5c\x16\xa7\x26\x99\x53\xfb\xde\x5b\xa4\xc7\x23\x38\x33\xbc\x26\x3c\x25\x4e\x44\xcc\x3b\x74\xbf\x44\x8d\x59\x7d\xac\x19\x0e\xcd\xb0\x2e\x6f\x5f\x33\x16\xde\xc9\xff\xa7\x52\x1a\xa6\x9f\xc2\x40\x2f\x38\x74\xb3\x3f\x19\x8a\xcc\x92\xe5\xa2\x73\xbf\xbb\x32\x55\x0e\xe5\x57\x1a\x81\xe3\xf2\x7c\x37\x2f\xfb\x6b\x96\x94\x21\x68\xdf\x60\x7b\x78\xa5\xda\xf6\x53\x6c\xbc\x32\x15\x7c\x90\x63\xc6\x69\x99\x14\x7b\xaa\x0f\x63\xfd\x10\x2c\x21\x64\x5d\x38\xa9\x91\x66\x7c\x4c\x6f\x43\xfe\x3f\xfd\x39\x81\x09\x29\x9c\xe4\x79\x5a\xce\x22\x45\xb2\xf3\xab\x56\x11\xd2\x20\xca\x94\xa7\xaf\x82\xd5\x2f\xc8\x8d\xaa\x1f\x84\xa3\x08\xba\xc3\x62\x33\xa6\x9c\x3b\x59\x51\x9f\x2b\x67\x14\x5b\x8b\xdd\x8c\x76\x64\xbb\xa7\xac\x66\xf9\xab\x4a\xfe\xab\x14\xfc\x2e\xa8\xfe\x71\x48\x7a\xa2\x6c\x38\x89\x21\x7b\x58\x5b\x3d\xd5\x68\xc9\xf5\x13\x8e\xea\xb5\x26\x3d\x5d\x61\xd9\xd1\xb4\xc7\xd4\x01\x6e\x07\x5d\xa0\x4e\xaf\xd1\xd3\x3d\xd0\x35\xf9\x2a\xcf\x8e\x9a\x9b\x92\x54\xe4\x9f\x71\x5d\xaa\x89\xcd\xd6\xa2\xbc\x5a\xa3\x7e\x21\x3d\x42\xf9\x34\x5f\xf7\x76\x2e\xd1\xc5\xc5\x6e\x66\x27\x65\x3f\x8e\xc2\x8e\x0a\x2a\x2e\x69\x74\xc2\xa5\x96\xa0\xe9\x60\x77\x14\x0d\x47\x36\x83\x78\x1e\x67\x49\x48\xdd\xb0\x83\xc1\xf0\x11\x1f\x7b\x13\x19\x29\x6e\x9e\xea\x49\x0d\x6a\x62\x8a\x2c\x4a\x91\xcf\x60\x5b\x87\x2c\x3c\x5f\xd7\xdc\x9b\x63\x88\x49\x08\xa0\x49\x29\xaf\x03\x2b\x0c\x6e\x1b\x58\xda\x7c\xed\x98\x7c\x26\x5c\x4d\xd2\xf5\xd8\x0e\x86\x76\x46\x91\x9b\x66\x7b\x1e\xf1\x79\xb7\xae\x3f\xfb\x59\x4e\xce\xd5\x09\x47\xef\xc1\x49\xd8\x2a\x3d\xdb\x9d\x4e\x32\x55\x48\x7a\x78\x7e\xe9\x51\x08\x02\xd3\xa6\x89\x77\x0c\xc5\x6e\x47\xa1\xf6\xe8\x99\x1f\x04\x8a\x4f\x2d\xca\xba\xa8\x80\xc1\x25\x0e\x1b\xd2\x7d\xcc\x4d\x87\xc3\xdb\x2f\x49\x1e\x6b\x80\xe0\x98\xfe\x89\x72\x23\x2d\xd2\xf4\xf3\xd5\x12\x40\xa9\x12\x8e\x27\xec\xcd\x1e\x28\xa4\xe0\xcf\xb1\x02\x70\x74\x6e\x63\x8a\x22\x6d\x9b\xd9\x54\x40\x78\xe6\x7b\xa0\xc5\xfb\x11\xbd\x32\x91\x07\xf4\xa9\x09\x7a\x07\x38\x92\xbf\x4d\x75\x03\xbe\xae\xdb\xe5\xe2\x19\x05\xc3\x4c\x5b\x19\xf2\x84\xf3\x9a\x17\xd4\x26\x16\xd5\xed\x9b\x24\x71\xe9\x0a\xa2\xc6\x7b\xca\x97\xf4\x5e\xcb\xa9\xdd\x35\x61\x68\x27\x85\xe9\xc7\x56\xe5\x78\x47\x54\x8e\x77\x44\x89\x79\x57\x39\x5e\x14\x46\x13\xa1\xaf\x33\xc4\x09\x83\x24\x96\x97\xbe\xb0\x70\xb9\x51\x5f\xda\xb7\x8f\x6c\x47\xf1\x27\x20\xcc\x03\x6a\xd5\x23\xa8\xe3\xe2\x45\xdd\x41\x3c\x87\xa8\xeb\x68\xab\x7d\x0d\xc1\xe3\xbd\x23\x4f\x07\x41\x1f\xdf\xa8\x1a\x99\x2d\x0c\x6d\x32\x40\x40\x5e\x51\xe1\x20\xd7\x4b\xc4\xcc\xbe\x25\xfd\x2b\xb2\x32\xf4\xd2\x48\xfa\xb0\xe3\xeb\x16\x3d\x1f\xf2\x1f\x0b\x29\xe2\x6b\x4d\xb6\x7c\x50\xdc\x37\x93\x22\xca\x21\xa3\xe4\x44\x60\x96\x96\x9c\xee\xcb\x33\xae\x1d\x30\x1c\x15\xeb\xb6\xfa\xef\xac\x87\x84\xb3\xd1\x7a\xcd\xa2\x45\x4b\xd8\x62\xfa\x76\x7a\x2d\x1d\x96\x15\x13\x65\xeb\x66\xa3\x56\x8f\xf6\x91\xc5\x0f\xa7\x1e\x96\xb6\x96\xc6\x65\x52\x58\x54\x81\x5e\xa9\x99\xbc\xa0\x94\xbe\x15\xf8\x02\xee\xc9\xc6\xec\x5a\x38\xd4\x35\x83\xd7\x4a\xa1\x77\x39\x9c\xc2\x39\x25\x46\x78\xae\x31\x45\xf6\x2f\x31\x1a\x91\x08\x47\x33\x9d\x1d\xfa\xcc\x6c\xe0\x84\x27\x16\xac\x86\xc3\x3d\x98\x6c\x3d\x72\x32\x3e\x58\xa8\x8c\xec\xe3\x9b\xba\x98\x58\x35\xf5\xa3\x34\x41\x18\x00\xe2\xf8\x49\xc5\x72\x83\xe7\x10\x16\xff\x5b\x2a\xac\x2f\xca\x70\x55\x38\x3e\x22\x7b\x43\x1b\xbd\xe8\xde\xc8\xf7\x19\xc6\xd6\xae\x94\x60\x4d\x39\x1f\x74\xcf\x5e\x6e\x16\xce\xbe\xd2\xb5\x26\x1b\x9b\xcc\xd5\x75\x00\xc0\xfe\xa6\x76\x33\xfd\xa6\x97\x79\xb4\xc3\x8c\x41\x11\xa8\x62\xe0\xb4\xe0\xeb\x16\x4b\x89\x03\xdd\x37\xcc\x9a\x98\x54\xb5\xce\x4f\x5f\xd0\x18\x96\x26\x33\x09\x90\x85\x3e\x4e\xd3\x26\xc3\xcf\x2b\xf0\xa8\x89\x12\x9b\xf5\x53\x93\xf1\xb0\x48\x79\xd5\x63\xbd\xfc\xd9\x8f\xc3\x75\xef\x0e\x2a\xbb\xf0\x77\xe6\x00\x65\x40\xfa\xb5\x8b\x88\x94\x08\xca\xd0\x73\x06\x24\x5a\x2b\x66\xbc\xa7\x6d\x2e\xde\xf1\x0c\x90\xf9\xe7\x1a\xb3\x9f\xd8\x1c\xa3\x34\x2b\x79\x08\x9c\x6f\xac\x53\x7b\x3f\xeb\xdb\x3c\xb1\xc9\x8b\x59\x3f\x19\xce\x4d\x95\x9c\x52\xa0\xa0\xad\xa8\x08\xf0\x0f\xb5\x58\x18\x7a\xd8\x22\x4f\xe4\x2d\x85\xe5\xdc\x6a\x44\x12\xd5\x1e\xb2\x11\xd9\x78\xb0\xd3\x4b\x4c\x15\x8c\x04\x1e\x64\xf3\xdc\x92\x0e\x15\x16\x28\x22\xf5\x5f\xa9\x3a\x00\x0e\x36\x6c\x78\x0f\xda\xd4\xdf\x56\xb2\xc8\x26\x03\x86\xf1\x38\x8a\x57\xf5\xb9\x7c\xa3\xf4\x56\xe2\xb2\x4f\xf9\x5d\xd1\x51\xda\x36\xa7\x02\xdf\x2f\x39\x35\x7d\xcc\x9b\xc6\x2d\xfc\x33\x6a\xff\xa1\x6b\xfb\x16\x7a\x79\xce\xa1\xb0\x7a\x61\x40\x12\xec\x85\x1e\x8e\xab\xda\x1f\x70\x00\xea\x5f\x4c\x95\x50\xe6\x3b\xe4\xfc\x81\xb8\x02\xa2\x89\x18\xfc\x2b\xd0\x79\xc0\xdf\xba\x4d\x20\x6d\x89\x7d\xb5\x0c\xff\x4c\x0f\x15\x75\x54\x3c\xce\xd0\xe9\x8b\xca\xea\xae\xcd\xce\xd7\x44\xee\x16\x29\x00\x56\xd9\x3d\x50\x15\x31\xd7\x77\x6d\x7a\x17\xc0\x73\x81\x6a\x8e\x72\x85\x06\x91\xc3\x23\x9b\x2a\x46\x7f\x1f\x47\x37\xba\x14\x4f\x6f\xd6\x03\xf1\x2a\xf6\x13\x85\x82\x6a\x8b\x71\x98\x86\x6a\xe6\xbb\x58\xcc\x69\x78\x5e\x27\x26\x02\x7a\xf9\x77\x00\xf5\x17\xcb\x24\x3f\x2b\x7e\x4e\x65\x6b\x24\xb9\x7f\xaf\x04\xea\xb5\xe9\x57\xbf\x4c\x56\x6d\xd6\xa9\x32\x39\x91\x6e\xa9\x86\x52\x24\x5d\x94\x2d\x42\xba\x61\xe2\x22\xb2\x5c\x60\xc2\xa7\xfd\x35\x8d\x3b\x5f\xb7\xc8\xfc\xad\x99\x32\x91\x9a\x81\xd4\xb3\x95\x51\x9f\xa6\xc5\x87\x69\xb2\x52\x02\xd1\x5d\x4d\x12\x0c\xd9\xcd\x40\x51\x87\x39\x42\x16\x89\x08\x45\x72\x6f\xe2\x78\x16\x0e\x75\x27\x65\x66\xb9\xd2\x22\xb6\xcc\x9e\x56\x7f\x5e\x55\xb8\xc8\x3a\xc3\xd2\xb1\x82\xf2\xca\x5d\x95\x36\x1f\xaf\x03\xe3\x3c\x93\x34\x0f\x47\x69\x1a\xe7\x7b\x55\x38\x86\x4a\x8c\x13\x03\xdd\x2f\xa5\xdd\xeb\x53\x6f\xc9\x01\x15\x2c\x85\xc8\x58\x70\x4a\x8c\xd5\x03\x6d\x6f\x05\xaa\x6f\xf8\xdd\x66\x1b\xa5\x0a\x74\x06\xe9\x84\x33\xd5\x57\xb6\xaf\x4c\x95\x82\x1e\xd7\xaf\xc5\x54\xcd\xbf\x65\x13\x9a\x41\x64\xb0\xa4\x85\xa3\x44\x3f\x2a\x6c\xf1\xc7\x95\xa3\x4d\xfa\x9c\xaa\xca\x5d\x54\x44\x8a\xa3\xb4\x48\xb0\x98\xf6\x6e\xaa\x5e\xfa\x03\x1a\x30\x21\xc2\xd2\x8b\x71\x12\xad\xfb\x16\xdc\x2a\xf1\x00\xa1\x9f\xa2\x7d\x86\x9d\x80\xc3\x7b\x20\x2c\xee\x02\x22\xa0\x72\x38\x29\x03\xce\xf6\xaa\x29\x8f\xb7\x32\x47\xf9\x1a\x4e\x11\xf6\x4d\x43\x8d\xb1\x03\x46\x8c\x73\xf7\xa9\xf6\x0e\x84\xd1\xbb\x50\x1b\x17\x1c\x87\x6f\x24\xed\xd9\xd4\xae\xab\x4f\x35\xb2\xbf\xa5\x25\x8e\x59\xd8\xd9\x53\x25\xf0\xa2\x05\x0f\xd0\x32\x06\xe9\xaf\xa6\x0a\xac\x57\x16\x4f\x2b\xe3\xd6\xbf\xc3\x98\x4b\x10\x5b\xad\x39\xf1\x9c\xa2\x99\x8d\x95\x7a\x1d\x7f\x19\x8f\xf0\x18\xe8\xf6\x22\x9a\x4d\x43\xcb\x3f\x86\x21\xc4\x8f\x69\xc3\xc8\x93\xaa\x28\xf4\xd7\xd8\x3f\x10\x58\xcd\x6c\x7a\xd1\xca\xf7\x6a\x5c\x57\x74\x36\xb1\x8c\x21\xd8\x20\x70\x1c\x9a\x09\x82\x1c\xa7\x37\xce\x96\x7b\xaa\x34\x38\xc9\x4c\x58\x44\xa1\x85\x75\x20\xba\xb9\xbf\xc2\xa3\xb2\x7f\x6e\xe0\xc1\x74\xef\x20\x33\xc0\x03\x79\xcc\x89\x29\x46\xb1\x2d\xb8\xab\xe4\x2c\xc5\x5c\x67\xee\x6f\x1a\x0b\xe1\xab\x2f\x77\x87\xd1\x9a\x35\xeb\x66\x63\xc6\x9f\xd5\xff\xcf\x74\xa7\x37\x38\x46\x5e\xcb\xa1\x9a\x2a\x65\x99\xd5\xf2\xb7\xf4\xc4\xd2\xb8\xa4\xf7\xe5\x24\x89\x9c\xf2\xdf\xa9\x46\xbe\xbb\x70\xa8\xbb\x16\x85\x45\xea\xa8\xbc\xe8\x98\x9d\x0c\x14\x20\xf9\xa4\xeb\xf7\xc5\x2f\xbc\xf6\xc2\x4c\x83\xbf\xe9\x8c\x92\x16\x17\x1d\xa9\xbc\x0d\x92\xd8\xb7\x71\xba\x4e\x70\x2a\x67\xa8\xe5\x04\x7d\xbe\x4f\xcf\x29\x0e\x60\xd5\xa3\x60\x52\x3e\x74\x31\x67\x16\x0d\x06\x8e\x4c\x8b\x28\x6a\x76\xd3\x73\xfc\x67\x1b\xe5\x94\xfd\x4b\xb0\x73\xc0\x56\xef\x80\x8c\xbe\xb6\xa2\x54\x4e\xa3\x64\x10\xad\x45\x83\xd2\xc4\xac\x3f\x2f\xa4\x7b\x6f\x46\xfc\x5f\x2b\xa9\x0f\x48\x46\x60\xb1\x3e\x0c\x76\x14\x7b\x16\x7c\xc2\xef\x9d\xbe\xdf\x9f\x2a\xc8\xd2\x96\x12\x9e\x32\x63\x93\x33\xa1\x16\xa7\xed\x9b\x38\x46\xf9\xa6\xcd\xda\x64\x60\x57\x00\x51\xf6\x32\x2a\x30\xc4\x97\x44\x46\xd7\xdf\xa3\x71\xca\x69\x83\x1c\xf9\xaa\xde\xb3\xab\xe7\x4b\x80\x83\x28\x9f\xd8\x98\xf0\x0a\x98\x6e\xa8\x37\xf0\x75\x5b\x1e\x09\xec\x27\xa7\xbb\xd8\x37\xcf\x60\x00\x04\x59\x43\xcf\x8c\xe0\xe8\x46\x0b\x05\xf9\x60\x37\x33\xc9\x90\x33\xd1\x03\x5e\xce\xb1\x7a\x5f\x5e\xce\xd1\x5b\x81\xad\xa4\x61\x9a\x81\xbe\x2b\xc6\x7c\x1d\x27\x30\xfb\xed\x9a\xc7\x61\x18\x47\x09\x81\x5a\x9d\x74\x60\xcd\xa8\xa9\x7a\x95\x4e\x1c\xd9\xeb\x6a\xbe\xab\xca\x7f\xc5\x88\x4c\x13\x9e\xf5\x18\xf7\xc7\x78\x8f\x45\xa8\xbe\x3d\x55\x96\x65\x67\x89\x5f\x87\x73\xe8\x7b\x88\xb0\x24\xbd\xa2\x3f\x8f\xaa\xe8\x03\x9a\xd8\x5c\x1a\x07\x7f\x50\x0a\xcf\x33\xde\x26\x7a\x0b\x11\x16\xbe\xde\x55\x25\x85\x8a\xca\x10\xf6\xfe\xa7\x50\x57\x40\xac\xf7\x18\x20\xd3\xf8\x97\x87\x4a\xe1\xe0\x2c\xe6\x12\x76\x33\x68\xb1\x72\xff\x08\x73\x93\xff\x21\x50\x90\x9f\xbd\x0d\x6e\x07\xb0\x33\x44\xa3\xa3\x4e\x1b\x56\xcf\x69\x6d\xe1\x70\xba\x65\xbd\xbf\x48\x16\x3c\x1b\xc8\x41\x9d\xb6\xa9\x83\xcd\x3c\xa0\xdd\x5a\x1c\x8d\x7d\xd9\x3b\x2d\x8b\x30\xe3\xdf\xc2\x34\x7a\x47\xe9\xec\xfd\x59\xe0\x73\x80\x0f\x14\x0a\xcb\x14\x45\xb5\x7f\xa3\x3f\x8b\xdd\x05\x26\x74\x7c\xad\x3e\x20\x1a\x4f\x4c\x58\xcc\x79\xc8\xc6\x53\x3d\x8f\x60\xf8\x53\x05\x0c\xdb\xb5\xe9\xd9\xc8\xe7\x75\xe5\xe6\x82\x9a\x69\x71\x1a\x7a\xcb\x14\xfc\x3d\x0e\x66\x44\xac\xd7\xd3\x8a\x9b\x06\x84\x0b\x87\xba\x59\x44\x1a\x88\xbe\x2e\x7c\xb1\x4e\x9e\x6a\xab\x9d\x47\x49\x98\x8e\x5d\x01\x07\xe1\xf0\xb5\xa9\xc7\xca\x5d\x0b\x76\xc8\x19\x1d\x7a\xa9\xfb\x1f\x11\x4e\x03\x05\xd3\x6f\x6b\xf9\x9a\xd3\xd3\x5d\xbf\xc6\x91\xec\x7d\x1a\x32\x9c\x8d\x1f\x6a\x21\xee\x33\x6d\xee\xaf\xe1\x88\x17\x6f\x67\xa9\xe6\xf0\xfe\xa2\xab\xa5\x7b\xe1\xc1\xf5\x28\x19\xb2\xa8\x2a\x66\xfc\x25\xfc\xa4\xb0\xd6\x7c\xc9\x13\x14\x3b\xa1\xb6\x29\x68\x9a\x89\x50\x6f\x40\x5c\xf8\x8b\xc0\x63\xe0\x7e\xe1\xd9\x1b\x93\x32\xcb\xdc\xc0\x20\x16\xfa\x86\x52\x45\xff\x86\x46\xcb\xd9\x49\xf1\x82\x8a\xe9\xdf\xd2\xa8\xc8\xb7\x1a\xaf\x6a\x79\xde\x35\x91\x5d\x81\xf0\x82\x36\x61\x54\x6d\xec\x89\x89\x92\x95\x92\x44\x94\x97\xe5\x7c\x3e\xa7\x1c\xdd\xcf\x35\x3a\x22\x52\x76\x1e\x1a\xcc\xfd\x17\xbd\x5c\xad\x2b\x93\x33\x0f\x1c\x13\xe3\x5e\x1b\xd5\x36\x8b\xd8\x38\xaf\x15\xae\xdc\x86\xa8\xcd\xed\xc4\x28\x9f\x7a\x11\xbc\xf5\xc7\xea\x7d\x5d\x39\x89\xca\x38\x32\x49\xa4\xc5\x01\xcf\x28\xfb\xf2\x33\x2d\x36\xda\x07\xc8\xdc\x7e\x25\xe2\x29\x2e\x3f\xa8\x7c\xf9\xce\x04\x8f\xba\x3d\xf7\x5f\x3c\x81\x1d\x16\xd3\xf8\x0a\xa5\x87\x08\x35\xe0\x36\x8a\xa1\xde\xc2\xaf\x33\xa3\x7c\x5a\xa3\x97\x57\x1f\x02\x6c\xc2\x7b\x55\x9c\xdf\xf3\x62\x6e\x37\x02\xe5\x37\xf9\xa1\x76\xa2\xfc\x90\xb6\x65\x67\xda\x5e\x4d\x52\xe0\x4f\xef\x68\xd0\xd5\x6c\xcf\x13\x08\x56\x2d\x6c\xeb\xb7\xaf\x10\x31\xe2\x4a\xe3\x65\x2c\x2d\x75\x47\x69\x8c\x50\x1b\x21\xc3\x47\x53\xe5\x02\x7c\x11\x5f\x1a\x87\xce\x4d\xaf\xf4\x00\x65\x77\x5e\x28\x38\x00\xb8\x6c\x0f\x88\xc5\x43\x04\x76\x08\x8d\x3a\x3d\xaf\x8d\xe8\xa5\x53\x26\x36\x2f\xa2\x90\x74\x09\x95\x60\xf3\x79\xa5\x64\x7f\x5e\x41\xd4\x8c\xcd\xd2\xc4\x94\x05\x59\x99\xd0\x77\x42\xd9\x1a\x20\x0f\xbe\xae\xd1\x44\x33\x33\x04\x80\x1b\x3b\xc3\xae\x9e\x6f\x0a\x7c\x5a\x33\x8a\xfc\xbc\x0a\xae\x4c\x18\xa5\x33\x1e\xa4\x77\x4f\x1d\x6a\x97\xb4\x56\xe9\x19\x57\xf1\x4c\x13\x5b\x44\x63\xd4\xee\x91\x67\x42\x2b\x90\xaf\xd5\x7e\x9e\x45\xe0\xde\x7a\x62\x97\x22\xb1\x7c\xa8\x38\x4b\x57\x6b\xcf\x91\xaf\xf4\x29\xab\xc6\xc4\xe1\x6f\xc1\x37\xad\x8e\x35\x23\x6b\x33\xad\x24\xfa\xab\x40\x27\x0a\x52\x5d\xcb\xd2\x3e\xf7\xb9\x80\xd5\xfd\x31\x3d\x2a\x5f\xd7\x02\xb3\x55\x3b\x46\x2a\x2b\x24\x44\xfa\x06\xc2\x42\xf4\xfb\xd4\xba\x8d\xa4\xf8\xe8\x8a\x74\x3e\x94\x24\x4b\x52\x2f\xc7\x6e\x63\x5b\x2d\xe7\x5c\x97\xf6\x4f\xab\xd2\xfe\x69\x95\x42\xe4\x63\x13\xc7\x4f\xfa\x60\xe1\xee\x54\x89\x3b\xfd\x60\xea\x8f\xe7\x5d\x68\x42\x48\x40\x4e\xb9\xa9\xb3\x96\x71\x61\xcf\x7b\xaa\x56\x80\x9c\x03\xe5\x97\x63\x48\xf1\xb0\x6d\x5d\x55\x6c\x90\x5f\x68\x8c\x2a\x78\xe6\xd2\xd7\xa7\x71\xc1\xb2\xe5\x20\x12\xd0\x92\x4f\xd1\x33\xa1\xaf\x3f\x4a\xb3\x22\x0a\xcb\xb8\x28\x33\xcc\xdd\x57\x18\x3e\x22\x7d\x5f\xbe\x0b\x3c\xb8\x67\x92\xa5\x6b\x51\x4e\x46\x56\xf4\xf3\x4e\x07\x51\x73\x10\xbd\x10\x6a\xdf\xbc\x06\xd8\x3c\xa2\xac\x8f\x03\x15\x72\x7d\xac\x90\x7b\xb9\x19\x97\x99\x89\x76\x57\x3f\x2a\xda\x6e\xaa\x6d\xf3\xe3\xa9\x12\xeb\x64\x4b\x34\x99\xee\xd5\x90\x09\x08\xa9\x1a\x32\x41\xc6\xe9\xd2\x56\xb8\x1a\x5b\xa5\xaf\x7f\x76\xaa\x64\x0f\xb8\x00\xc2\x37\x54\x26\xe4\x9f\x52\x2c\x7c\xd7\x13\xed\xf8\x1c\x0b\x1d\x0e\xbe\x56\x05\xa1\x22\xca\xf3\xd2\x02\x76\x20\x46\x76\x14\x8e\x8a\xc3\xdd\x73\xfe\xb1\x47\x26\xb3\x90\x37\xa6\x38\x5b\x9c\x34\xd5\xa1\xf3\x26\x2d\x3f\x44\xc2\x5b\x8a\x0b\x78\x45\x09\x1f\xe5\x85\xcd\x6c\xaa\xda\xd8\xa8\x70\x09\x36\xa4\x19\x58\xbe\xd2\x5d\x89\xcb\x1c\x85\x67\x76\xb0\x57\x68\x83\x8b\x0a\xcc\x65\x62\x09\xcf\x3a\x2a\x37\xa5\x1f\x96\x3c\xd5\xff\xf0\xc0\x4e\x6c\x32\xb0\x49\x88\x45\x2e\x72\xef\xb4\x2a\xf9\xc6\x55\xfa\x87\x36\x1a\x5a\xe6\x10\xcb\x17\xa5\x1f\x94\x27\x78\x6e\x67\x83\xf8\x60\xf7\x6b\x0b\x33\x3e\x02\x63\xed\x4d\x2c\x3c\xc8\x7c\x6d\x5f\x51\x2e\x9e\xf9\x28\x4b\x93\xe2\x0d\x7c\x02\xd2\x3a\xee\x8c\xf1\x8d\xca\x8b\x92\x74\xcd\xc6\x64\x8b\xe5\x11\xe3\xf4\x76\x05\x3d\x2e\x32\xb4\xe5\x68\x0e\xd5\x62\x01\x07\x6b\xcd\x9c\x6a\xea\xe0\xd8\xdd\x4b\x5b\x3a\x0e\x2a\x6e\x5a\xe0\xe5\xdf\x52\xd9\xd1\xd8\x0e\xaa\x33\x63\xaf\xfa\x4e\x0c\x20\x17\x25\xd2\xea\x8f\x3b\x09\x7a\x97\xf6\xfc\xbb\xa9\x92\x79\x23\xd9\x88\xed\x0b\xaa\xa2\x79\x59\x8b\x99\x06\x5f\xf2\x86\x5b\x7a\xb1\xc7\x1b\x33\x9d\x7d\xfb\xb8\xcb\x7c\x7e\x8a\x67\x62\x21\x77\xf4\xab\x90\x3c\xde\x6b\x53\x2e\xab\xa6\x5b\x14\x47\x6f\x48\xc8\x23\xca\x25\x1d\x27\xc5\x7c\xac\xd1\xf0\xab\x5e\x1f\x73\x62\x45\x39\x57\xd4\x6d\x95\x8c\xec\x29\xd7\x62\x19\x96\x79\x91\xea\x7e\xd1\xd5\x9a\x36\x80\xb3\x3f\x8d\xad\xc9\x0d\xd3\x11\xc4\x66\x53\xb3\xe5\xa4\xec\x52\x98\xb1\x9d\x51\xab\x67\xea\x85\x7a\x10\x20\x22\x54\x78\xe0\x9d\x47\xd3\xb2\x1f\xdb\x01\x37\x43\x11\x25\x9f\xd1\x2e\xef\x67\x3c\x56\xd3\xe4\xc5\xba\xc9\x06\x33\x4a\xd2\xfb\x04\xbd\x3c\x6c\x88\x28\x23\xa3\xe0\x79\xb1\xd1\xd4\x5c\x9e\x5f\xee\x96\xa4\xf1\x51\xa4\x29\x8f\x28\x62\xa7\x13\xca\xf7\xe8\x44\x6b\x60\x08\x41\x38\xe7\xff\x83\x42\xc3\x11\x2d\x7b\x7b\xa4\xc5\x20\xcf\x64\x79\x9a\xe8\xd0\xe6\xb2\x82\x0e\x5f\x56\xbb\xde\xd8\x16\x66\x32\x4a\xb3\x9c\xd4\x64\x5c\xf9\x47\xf1\x5b\xdb\x34\xd1\x0a\xfb\x7a\x11\x41\x79\xff\x15\x4e\xfb\x2f\x2a\x7a\xe6\x15\xda\x3c\x10\x98\xfd\x8d\x32\x4f\xca\xa2\x35\x13\x77\xbc\xcf\xda\xd9\x40\xe1\x23\x1a\xf3\x49\xa2\xfd\xf5\xb4\x8c\x07\xb3\x9d\xaf\x2d\x70\x82\x38\xdb\xa3\x52\xef\xff\x47\xd9\x9f\xc7\xc8\x72\x65\x67\x62\xf8\x7b\x59\x55\x6f\xe7\xd6\xcd\xd6\xae\xdf\xa4\x20\xfd\xd4\x02\xdc\x22\x20\x8c\x67\x0c\xeb\x9f\x48\xd7\x2b\x89\xcd\x07\x75\xb1\x50\xef\xe9\x51\xe6\x1f\x06\x6f\x65\xde\xca\x0c\x56\x64\x44\x2a\x96\x2a\x16\xe1\x01\x06\x86\x21\x0c\x06\x82\x60\x7b\x3c\xb6\x67\xc6\x9e\x91\x07\x63\x19\xd6\x8c\x6d\x2d\xee\x91\xac\x56\x2b\xb2\xd5\x2d\xb1\x5b\xec\x85\xec\x85\x6c\xee\x6f\xdf\xf7\x7d\xa7\x11\xe7\x3b\xe7\xde\x13\x15\x41\xc1\xfe\x83\x40\x04\x5f\x65\x66\xc4\x5d\xce\x3d\xcb\x77\xbe\xcf\xb9\xfe\xbf\xfe\x79\x76\xc1\x18\xc7\x2f\x3d\x26\x2d\x22\x9f\xb9\x99\x88\xc7\xc7\x04\xb4\xb4\xa2\x85\x8c\x76\x2b\x0c\x8d\x34\x02\x92\x19\xcf\xbe\x71\x07\x06\x49\x00\xc3\xb5\xa0\xdd\xf9\x64\xeb\x36\x8d\xcc\x66\x47\xc7\x53\x1d\x27\x2b\xf6\xc5\xb6\xae\xc7\xc8\x9a\x61\x21\x0f\x26\xee\x8b\xaf\x72\x5d\x2a\xbd\x44\xba\x8d\x32\x1e\xf6\x56\xc5\x9e\x9a\xb0\xcf\x5e\x7f\x5e\x3d\xd3\xa9\x71\xdd\xd7\x69\xf0\x3d\x50\x8f\x99\x03\x66\xab\x29\x42\xea\xf9\x6c\xe9\xcf\x01\x24\x26\xe4\x64\xaf\xac\x15\x5c\xf3\xed\x8d\xa4\xe2\x81\x03\x07\xbb\x59\x28\x0e\x84\x60\x27\xe8\x49\x05\x3c\x21\xc3\xb5\x46\x24\x45\x18\x2e\x91\xc0\x54\x8c\x81\x27\xda\x04\xa8\x2a\x3b\x3e\xa3\x4a\xb8\x58\x7b\x08\xd4\xaf\x2b\xa1\xa3\x37\xda\xd8\xee\xb3\xd4\x54\x07\x01\xef\x27\x0c\xdc\xdd\x40\xb1\x4f\xdf\x55\x03\x92\xda\x7c\x14\xc6\x6b\xb3\x5e\x87\xfe\x07\x4a\x72\x90\xb5\x1d\xe1\x57\xdc\x53\x72\x92\xc7\x1a\x8b\x19\xcd\x17\x13\xdb\x0f\x57\x39\xf3\x2d\xf2\x0d\x1d\x2f\xe5\xd0\x62\x52\x97\x50\x2f\xcf\x46\x96\xa9\x3f\x51\xe8\x06\xf5\x27\x5f\x2b\x32\x8e\x68\xd5\x74\x54\x77\x11\x76\xbd\x90\x11\x68\x50\x78\x56\xa4\x26\xee\xdb\x7d\xbe\x12\xf6\xc4\xd4\x17\x8b\x4f\xc3\xe9\x74\xfa\x9d\xcb\xf3\x1c\x04\x1e\x47\x6f\x28\x36\x00\x03\x0c\xe1\x8c\x7f\xa5\xf4\x8a\x16\x7f\x09\x67\x56\x53\x8e\x62\xda\x77\xf5\xb8\xaf\x9d\x0e\x44\x89\x52\x68\x1b\x21\x74\x7b\x4d\x39\x59\xab\xa6\x0f\x78\xad\xa2\x45\x0c\x7c\xcc\x70\xb9\x55\x47\x7e\x64\x0d\x1b\x69\xd8\xaf\xeb\x35\xc8\xb5\xaf\x60\xbe\xa3\x62\xa3\x91\x79\xd5\xa4\x88\xbc\xdb\xe8\x36\xfd\xe8\xfe\xdd\x5f\xfc\xa5\x99\xca\x95\x47\x79\x03\x9d\xb8\x70\x7a\xee\x69\x7a\x9d\x0f\x1a\x79\xa0\x43\xcf\x77\xed\x2b\x94\x09\x42\xe6\x01\xab\xe4\xcf\x4a\x5f\x3c\xff\xb3\x86\x9d\x5d\x38\xd4\xcd\x88\xd1\xde\x0a\x85\x10\x86\xe8\x34\x92\x92\x4c\x07\xaf\x91\x30\xd7\x03\x61\xf3\x1e\x5b\x13\x87\xf1\x90\xb3\x2b\x2e\xa3\x7b\x51\xa9\x16\x5e\x54\xce\xa5\xe9\xa7\x49\x96\x41\xa0\x40\xa2\x6d\xfa\x11\xbe\x71\xb6\x2d\x5b\xb3\x79\x7f\x04\x21\x44\xd8\x9f\x9b\xaa\x7e\x7a\x5a\x41\x1c\x8f\x6b\xba\xf7\x22\x27\x88\x19\x31\x3f\x71\xe9\x2f\x50\xf4\x6f\x17\x15\xa9\xaa\x66\xc2\x37\x2b\x45\x66\x07\x1d\xdf\xd7\x78\x59\x91\xcc\x7a\x01\xf1\x49\x64\xc2\x38\x0f\x57\x57\x75\xd3\xba\x26\x6a\x3d\xe7\x5c\x8e\x97\x8b\xc1\xd0\xee\xa0\x3f\x13\x4a\x73\xd5\xdb\xfe\xa0\xf4\xae\x27\xea\xbb\xee\x67\xdd\x10\xee\xed\x79\x37\xec\x26\x00\x0f\xf0\x25\x9e\xe1\x49\x62\xcf\xb5\xf4\xb0\x9c\xfb\xf8\x0d\x44\x70\x73\x0e\xed\xb9\x52\x8c\x49\xc9\x09\x1f\x93\x52\xb5\x2a\x15\x9d\x6f\x2c\x89\x43\xcf\x77\x57\xc3\x28\x9c\x84\x31\x0e\x25\x87\x0c\xf4\xc4\xe0\xe7\xa9\x0a\x0b\x07\x65\x49\x43\x97\x57\xd2\x62\x82\x90\x1b\x0e\x2f\x90\x7a\x7c\xed\x19\xcf\xac\x89\x76\x7b\x57\xe6\x49\xf4\x6d\x3b\x31\x75\x29\xd8\x7d\xf8\xe4\x54\x89\x27\x9d\x29\x55\x2f\x3c\xbf\xad\x68\x68\x79\xc6\xb3\xbd\x3d\x4d\x1e\x55\x6b\x87\x6a\xa1\xff\x58\xe8\x6e\xd8\x28\x22\xee\x4a\xcf\xc7\x28\xb4\x99\x17\x1a\x99\x41\xa4\x1e\xc6\x95\xb3\x2d\x23\x5a\x63\x0f\x10\x21\x47\xad\x17\x51\xa4\x61\x26\xf5\x21\x81\x67\x55\xaf\x2e\x07\xfa\x27\x71\x14\x15\x31\x16\xb3\xaa\x38\x7a\x08\xfc\x6f\x95\x0a\xd8\x7f\xc1\xd7\x3c\xfb\x79\xb8\x2e\xa2\xbc\x0e\xf5\xea\xb2\xd9\x27\x4b\x11\xda\xb1\x79\x7f\xb6\xf2\x5b\x61\xb3\x67\x7a\xd5\x00\x70\x53\x88\x62\x9d\x3e\x59\x47\xa8\xb7\xa0\x8e\xfa\x45\x34\x31\x1d\x72\xf3\x6b\x19\x24\xbe\x69\xd1\xc0\xeb\xe6\x45\x2a\x4d\x5f\x48\xef\xb2\xe2\x85\x48\x7b\x28\x10\xc1\x29\x4d\xc8\x4d\x7a\x15\x94\x25\x52\x07\xfd\x92\x3b\xe8\xb5\x26\xc3\xda\xde\x8e\xa3\x1e\x67\x5f\x0a\x88\x88\xed\x53\x9f\x62\xbe\x82\xc4\x06\x4e\x07\x3e\x63\xb0\x6a\xb0\x41\x71\x4a\x9f\x66\x27\xc6\xb9\x26\xcb\xd2\x0a\x3b\x37\x55\x72\xe1\x9f\x06\x41\x61\x0d\xed\x26\xfc\x0b\x6d\x42\xc8\xc9\xea\xaa\x4d\x95\xce\x35\x23\xf6\xa4\x62\xec\x7d\xd9\xb1\x89\x22\x4e\x20\xc1\xfb\x3c\xa5\x92\x81\xa7\x14\xb7\x69\x14\x99\x49\x66\x07\xb3\xaa\x34\x72\x83\xfe\x54\x62\x39\xd5\xe5\x75\x5d\xa9\x2d\x5c\x69\xc1\x97\x2e\x75\x07\xd6\x4e\x66\x7c\x7a\xed\x58\x59\x3f\xed\x5d\x69\xff\x6e\xf0\x98\xea\xd6\x4a\xb9\x5e\x2b\x48\x01\x9d\x45\xf2\x7e\xdc\xd1\x40\x91\x21\xe3\xac\x60\x70\x51\xe9\x3b\xef\xfe\x35\x9e\x97\x7b\x82\x03\xd5\x42\x71\x5e\x61\x47\x4d\xbf\x9f\xa4\x83\x30\x1e\x3e\xa1\x3a\x51\x08\xa6\xfb\xac\xa7\xb1\xda\xbf\x9f\x87\xeb\x2f\xc9\x99\xc4\xc9\x70\x36\xf0\xc9\xb2\xdf\x2a\xfd\xe1\x2d\xec\xb8\xb0\x45\x5a\xb8\x75\x77\x8f\x0e\x2e\x6e\xdf\x85\xe7\x02\x27\x15\x85\x69\x0c\x2d\x8b\x1f\x33\x5b\x39\xd9\x25\x7c\x15\xb7\x9d\x62\x85\x7c\xbf\x54\xd9\xab\x26\xce\xff\xb9\xc5\x6e\x9a\x14\x39\x49\xa1\xbb\xa6\xfc\xcb\x2a\x6b\x7c\xb9\xa6\x0b\x51\x44\x6b\x1d\xcf\xab\xf7\x43\x3c\x1a\xdf\xa8\xf9\x59\x0d\xa3\x71\x47\x69\x38\x5c\x44\xf2\x90\x6f\x54\x7f\x65\x15\x5a\x8c\x4c\x11\xed\xa0\x27\x86\x29\x40\x0c\x85\x9c\xee\x87\x98\x40\x07\x65\x75\x1c\x71\x1f\xaa\x0c\x13\x18\xf8\xb0\x10\x6f\x35\x1a\xb2\xf6\xef\xef\xae\x84\x49\x6a\x33\x6b\x52\x86\x2d\x4a\x1d\xd1\x43\x2f\xde\x71\x71\x71\x3f\xe9\xaf\xe5\x26\x04\x50\x17\x0f\x7c\xb6\xd4\x09\x77\xef\xe1\xdc\x6b\x03\x47\xae\xa6\xc9\xab\x56\x91\x6e\x30\xa2\x8e\x6f\x34\x45\x17\x61\x22\x77\x78\x1a\x52\x51\x05\x97\xfc\x86\xc6\x9d\x93\xfd\x50\x07\xbc\x3b\xed\x31\x3e\xfc\x91\x46\x64\xf1\xdc\x22\x41\xdc\x3b\x1d\x45\xd5\xad\x68\x18\x2f\x04\x5e\x5b\x76\x05\x0d\x72\xb3\xb4\xf2\x14\x47\xb3\xc0\x63\xf7\x90\x9b\x80\x35\xb5\x5d\xb7\x24\x7e\xa9\xfc\x31\xe5\x85\xe7\x36\x05\x97\x1c\x44\x5a\xbc\x12\xb0\xd6\x46\xbe\xd8\x48\xd0\xc8\x49\x34\xb2\x66\x1d\x91\x93\xb0\x61\xab\x4a\xcc\xd7\x4b\x9f\xc4\x5e\x0f\x73\x64\x7f\x9f\xf5\x90\x0d\x25\xa0\x20\xee\x51\xbe\x41\x81\x55\xf5\x18\x4e\x47\xcc\xb1\x5b\xdd\xa7\x8d\x29\x15\xcc\xad\xeb\x86\xe2\x9b\xd4\x66\x93\x24\xce\xea\xba\x49\xdc\x2d\x2c\xfa\x96\x5b\x72\x7e\x87\xe7\x9f\xed\x1e\x9e\xa7\x66\x0c\x4d\xdb\x81\xbf\x9e\x23\x42\x5d\x56\xf0\x83\xa9\x41\x0a\xe0\x41\xa9\x24\x43\x3f\x08\x14\xb9\xcc\x69\xb5\x1d\x6e\x40\x18\x85\xff\x01\xb1\x9a\xf4\x45\xd0\xc9\x88\x17\x7b\x9d\x4c\x20\x90\x24\xfb\x40\x0f\x81\x7e\xe5\x33\xa5\x8f\x83\x77\x4c\x75\xde\x50\x1d\x30\x7f\xa6\x23\x96\xa4\x4f\x1e\x2b\xfd\x92\x68\x26\xd2\x17\x4a\xde\xcd\xa7\xc3\x47\x26\x26\xa0\x4e\xc7\xa9\x23\x5e\x56\xea\x88\x97\x1d\x89\x6f\x31\x59\xb1\x26\xa7\xfd\x25\x12\xa7\xd5\x47\x10\x1d\xbf\x81\xa3\x12\x6f\x58\xb6\xe0\xc9\xab\x88\x23\x5a\x0d\xb3\x11\x25\xc6\x30\xa9\x77\x03\x9f\xb7\xc2\xbe\x91\xc0\xa2\xa5\xf0\xbe\x52\xad\xf3\x74\x86\x5e\xc2\x39\x62\x2e\x54\x07\x16\x0d\x09\xd1\x3b\xae\xba\x33\xb0\x51\x6e\x76\x77\x0e\x1c\x78\xc4\xa2\x74\x8e\xae\xbb\x1a\x36\x75\x23\x79\xa0\x93\xf4\x4a\x0e\x5f\xa7\xd2\x76\x4a\x09\x06\xda\x29\x4c\xe0\x5e\xea\xe8\xfd\xb5\x56\x06\x8a\xbe\xc9\xc2\x38\x61\xff\xce\xb5\x43\xf9\xd6\xa8\x96\xf0\x91\xdc\x5f\xf8\x68\x00\xeb\xb2\x39\xe2\x9b\xc0\x23\xd8\x72\xd3\x5f\x93\x33\x5d\x0a\xa7\x1d\xd7\xb9\xfd\x96\xc6\xf7\xfc\x79\xa9\x52\xa1\xe7\xda\xda\x24\xc2\xf1\xc4\x0e\x42\xd7\x26\xe1\xa4\x62\x0e\x1c\x90\x6b\xb7\x1a\x52\x13\xc6\x2e\x17\xc8\xcb\x5f\xb3\x62\x7e\xa0\x4a\x62\x93\xc8\x9a\x01\x5c\x40\x00\x05\x24\x09\xcc\x77\x2a\x91\x3e\x4e\xe2\xac\x9a\x66\x75\x0c\x97\x1d\x0d\xc5\xf6\x32\xa7\x57\x1b\xbe\xf7\x0b\x0b\x87\x48\x17\x3a\xe1\x60\x0d\x38\xd5\x85\x47\x57\x14\xa2\x38\xdb\x1c\xaf\x24\x51\x98\x8d\x81\xe1\x82\x7b\x7c\x02\xe5\x65\xbe\xd1\xc2\xf4\x26\x1d\x86\xcc\xa5\xe0\xf8\xea\x5c\xf7\xfa\x11\x2c\x1d\xbe\xc1\x0a\x13\xb2\x01\xef\x96\x4e\x4c\x6a\xe3\x9c\x83\x32\x44\x20\xe8\x3c\x11\x3a\x3b\x75\x14\x3c\x6c\x98\xb3\xc5\xc5\xa5\x6e\x6a\x21\x20\xce\x21\xb4\xeb\x7f\x59\x9e\x77\x70\x32\x59\xf1\x04\xdc\x98\xd1\x95\xd7\xce\x17\x16\x3c\x86\xc3\x6b\xde\xdf\x76\x6b\x68\xa5\x08\x49\xf2\x72\x46\x8b\x38\xb2\xc7\x8d\xfd\x7c\x1c\x13\x0b\xcc\xdc\xd1\x46\x72\xb8\x5a\xe3\x1b\x66\xdd\xa6\x5b\x7a\x94\xea\x85\x4c\x85\x4b\x48\xcd\x64\x14\xf6\xb3\xd9\xca\xef\x92\x1a\xa0\xb2\x76\xd7\x54\x26\xea\x02\x66\x86\xff\xa1\x4d\xd4\x8f\xfa\xb8\xb2\x2d\xdc\x27\xbe\xeb\xb3\x56\xc3\x5d\xad\xfe\xf0\x05\xa7\xf8\x78\x49\xa9\x3f\x5e\x72\xa9\x85\x41\x6a\x86\x43\x29\x37\x00\x77\xcc\x08\x06\xbe\x51\x5a\x7f\xc2\xb6\x01\x0c\x08\x2a\x6a\x27\x14\x34\x12\xa4\x2a\x42\x9f\xdf\xe2\x76\x98\x62\x10\xe6\x33\x3e\x97\x74\x5f\xe1\x33\x98\x2e\x0f\x66\xea\x9c\xf2\x69\xf3\x91\x4d\xed\x6a\x92\x5a\xcd\x72\xf2\x9e\x6a\x78\x7b\x4f\x49\x2c\x32\xe6\x8f\xfe\x12\x63\x72\x9a\x1e\x50\xd2\x03\x0a\x32\x7b\xdf\xb7\xc5\x1a\xcf\x11\xe9\x82\x44\x1f\x30\x36\xb2\x99\x0b\x87\x08\x73\x96\x9a\x0c\x84\x79\xe0\xa5\xd8\xc6\x00\x3c\x7c\x6a\x57\x4f\xd1\xb2\x82\x69\x58\xb8\x68\x3d\xc0\x21\xcb\x93\xfe\xda\x4a\x9a\xac\x55\x0b\xd2\x8b\xb8\x21\xb9\xe3\x9a\x33\x7c\x8a\xf4\xed\x72\xcb\x31\xbe\x70\xa8\x8a\x4e\x9e\xa6\x83\x18\xbd\x56\x7f\xad\xdd\xea\x47\xa5\x12\x44\xb8\x4e\x28\x4c\x97\x3a\xf0\xbd\x65\xa7\xd8\xa5\xc3\xd2\x00\xcb\x26\x2b\x20\x96\x3e\x30\xbf\x1b\x28\x54\xc8\x97\x03\xcf\x2a\xfc\x27\x80\x93\xf3\xcf\xab\xa6\xff\x6f\x29\xd5\xe7\x6b\x70\x03\x70\x64\xbd\xa1\x61\xce\xe7\xd1\x92\xea\xca\x88\x3e\x67\xf3\xfd\x40\x91\x35\x7f\x84\xc3\x1f\xcd\x36\xe0\x41\x92\xa8\xca\x01\x54\xf2\x34\xec\x93\x39\x75\x99\xe8\x7b\xba\x43\xf7\xe3\x9a\x02\x5f\xcb\xa1\x3b\x2c\xc2\xd8\x1a\x72\xec\x10\xd2\xc2\x0f\xe3\x6b\x95\xb8\xeb\x27\x59\x1e\x6d\x02\x08\x23\x2d\x6e\xbe\x1d\xe9\x1a\xbc\x03\x49\xb2\xa8\xd2\x95\x66\x62\xa9\x42\xb5\x22\xae\x16\xde\x9e\x6a\x5f\x0a\x55\xbd\x22\x95\x3e\xad\x22\x5b\x3e\xb7\x91\x1b\xfd\x18\x18\x4c\x58\xe2\x7f\x44\x23\x8e\x4d\x77\x23\xf0\x9d\x04\xff\x48\x53\x7a\xc0\x3d\x53\x1b\x4d\x0e\xd7\x4b\x8d\x83\xb1\x3a\x56\x38\xd8\x82\x6f\x2c\x1d\x4a\x1f\x96\x9e\x7d\xef\x43\x45\x6e\x90\x98\xb5\xc8\xc4\x03\x10\x64\x8a\x22\xe2\x56\x31\x54\x69\x73\xa7\x9f\x76\x6d\x0f\xae\xcf\xef\x8f\x4a\x5f\x0f\xba\xd9\x7a\x2a\x88\x00\x31\x73\xea\x60\x46\x6f\x63\xb9\xf0\x4d\x0d\x41\xb3\x9a\x6f\xce\x55\x0f\x81\x52\xce\x1f\xc1\xc0\xa3\x54\xf1\x51\xe9\x71\x58\x68\x6f\x14\x31\x95\x6a\xf4\x84\xfb\xa8\xa5\x3a\xdb\x0f\x87\x26\xb5\x79\xce\xaa\xaa\x2e\x91\xe0\xb3\x35\x97\x95\xe8\x61\x75\x44\xac\x86\xe8\xf1\x75\x12\xb5\x17\x6a\x16\x6f\xcb\x6e\x7e\x6e\xb1\xf2\xe7\x9f\xac\x96\x03\x3b\x65\xa5\x1a\xd4\xdb\x81\xb7\xb4\x9c\x6b\x11\xdc\x7c\xf5\xa2\x40\x56\xdc\xc7\xac\xc3\x65\xbd\x4a\xae\x9b\xcb\x43\x55\x1b\x90\xa5\xdd\x03\x15\x33\x6d\xef\x79\x40\x3b\xcb\xbc\x0b\xd9\x4b\x8d\xf8\xb7\x9a\x2d\xa9\xc0\xc1\x60\xe0\x84\x38\xa3\x44\xeb\xef\xa2\x1d\x04\x2e\xfa\x3f\x6f\x63\x81\x98\x98\x2c\xb3\xf1\x90\x93\x3d\xae\x77\xdc\x35\x41\x37\x5b\xac\x5f\x7a\xa9\x9b\x25\x63\x3b\x4a\x36\x66\xfc\x02\xc4\xa9\x89\xb2\xe7\x5b\x9a\x47\xec\x4c\xed\x08\xec\xaf\x6d\xce\x54\xa6\x42\xf7\x0c\x22\xaa\xbc\xa5\x7b\x08\x3e\x68\xfc\xe8\xe1\xf9\xa5\xae\x8d\x93\x62\x38\x9a\xf1\x07\xcd\x57\x69\x17\x01\xef\xf8\x45\x95\x69\xfe\xc3\x46\xb3\x74\xe5\x9a\x59\x03\x5d\x3d\x96\xb5\xa3\x07\x16\x89\xbb\x36\x22\x83\x71\xb2\x2e\x78\x55\x47\x00\x5b\xcd\xbe\x10\xc0\x3a\xba\x82\x22\x8a\x92\x02\x3e\x2b\x52\x0e\xef\xd0\xb6\xe7\xeb\xb6\x73\x97\x28\xb5\x3a\x3e\x14\xb9\xaf\xba\x21\xee\xb7\x39\xe4\xd9\x24\x8c\x22\xca\x75\x33\xb3\x49\xa0\xdc\xf9\xeb\xaa\x9e\xf3\x0d\xd5\x5b\x9d\xa7\xa6\xf2\xac\xf6\x91\xa5\x42\xc8\xf6\xaf\x68\xc4\x10\x85\xbd\x1b\x28\xf0\xe2\x19\x3a\x8c\x90\xed\x3e\x4a\x24\x27\xce\x38\x55\x06\x9b\xff\xa8\x54\xdc\xd7\x17\x60\xf4\x44\x3f\xcc\xc3\xb9\x6e\x07\x5e\xd8\xe9\x82\x6a\xc5\x3d\xa9\x82\xe8\x6d\x53\x5f\xca\x1d\x9a\x78\xa8\x6a\xcb\xef\x97\xaa\x01\xe7\x0a\xcd\x12\xbe\xf7\xb8\x02\x52\x0f\xc2\x8c\x74\xdc\xb6\x20\xb3\xaa\x0f\x4a\xe0\xb8\x95\xad\xe6\x05\x6a\xc4\x1e\x87\x71\xe8\x38\xa3\x5e\x74\x62\xc2\x34\x12\x52\x4a\x6a\xe3\x2e\x4d\x4d\x0c\xb3\xc1\x59\x57\xed\x05\x9c\x6e\x03\xf0\x2c\xcf\x3f\xae\x50\xfa\x8f\xb0\xdb\x05\xc0\xae\xc4\x45\x2f\x28\x6a\x82\xa3\xa5\x6a\xde\xe2\xd7\xc1\xb4\xde\xa7\x31\x75\x42\x48\x95\xad\x71\x00\x68\xa7\x40\xbf\x9d\xb4\xb9\x34\x09\x0b\x93\xea\x53\x8a\x91\x27\x5d\xf5\xa8\xdc\x0b\x14\x95\xea\x35\x57\xfb\x18\x99\x28\x42\xaf\x10\x3c\xca\x1b\xaa\xb3\x97\x45\x26\xf9\x1f\x02\x2f\x35\x7b\xa9\x2e\x6b\xbc\x1e\x0e\x6c\xb6\xb3\x7a\x9c\x9a\x8a\x2f\x3c\x17\x7e\x7f\xe1\xe8\xf1\xa0\xdb\x7b\x8a\x04\xf0\x0a\x4c\x22\xfc\x9e\x2b\x4a\xd1\xee\xba\x46\x3b\x8e\xac\x8d\x3a\x4a\xf4\xe6\x52\x7d\x6c\x14\x89\xf5\xc8\x26\x29\xd8\x99\x6b\x81\xb7\xe4\xf1\xe9\x3b\xb0\x45\xb6\xf5\xfc\x3a\x7d\xaf\x96\xc7\x1c\x6e\x26\xb3\xaa\x8d\x9e\xc9\xe0\x9c\xc0\xad\x6b\x67\x86\xc4\x14\x33\x41\xa8\x42\x1e\xa4\x07\x1f\x57\xa9\x6a\xae\xff\xe1\x87\x6f\x95\x4a\xdd\xec\x7b\x38\x9a\x91\x67\xba\x83\xc8\x53\x40\xc7\xd5\xb7\x4b\x2b\x05\x2d\x63\x07\x07\x5a\x16\xe6\xfe\xdb\x34\x62\xd8\xb6\x6f\x04\x8a\x61\x1b\x32\x03\x38\x83\x76\x50\x7b\x21\x7f\x20\x50\xdc\xf9\xc7\x94\x42\xcf\x87\x8d\xf2\xdb\x81\x03\xdd\x6c\x23\x1c\x8f\xc5\x3a\xc2\x09\xfa\x48\xf1\x82\x7d\xe4\xc2\x19\xea\xe1\x46\x00\x20\x4d\x9a\x37\xf0\x9a\xae\xe9\xdd\x9f\x7c\x9d\xde\x67\xdc\x58\x0d\x6d\x12\x25\xc3\xb0\x4f\x19\xc1\x6a\x21\x39\xd5\xc8\x17\xfc\x8d\x66\xbb\x2e\x56\xb2\x70\x10\x9a\x74\x73\x27\xbd\x88\x10\x44\x68\x65\xc0\x6f\x63\xe1\x49\xb9\xb0\xe3\xc8\xdf\xce\x04\xaa\x83\x04\xd2\x32\x78\xa2\x6d\x50\x7f\x42\x6b\xe0\xb7\x34\xf2\x71\x94\x86\xab\x79\x36\xeb\x69\x64\x41\xd4\x09\xb7\xf9\x0a\xf6\x2e\xdf\x60\xf2\xc4\x56\x6c\xa1\x72\x5d\x9e\xef\x7e\xf6\xb3\x7b\xbd\x9c\xf6\x69\xac\x60\x2c\x24\xee\x1c\x44\x1c\x7c\x1e\xe3\x86\xa8\x00\xfd\x2a\x4e\xdf\xe6\x39\x9f\x7e\x51\x81\xc4\xad\x40\xf5\xce\x23\xc5\x05\xb7\xe0\x76\x0d\x05\xa5\x08\xd3\x9b\x31\xee\xe1\xf9\x67\xbb\x45\xba\x62\x18\x45\xe5\x0a\x0a\x0e\x01\x73\xa9\x91\x3b\xaf\xdc\x43\x6e\xb1\x21\xbe\x3d\xe7\x25\x9d\x52\x30\xd2\x53\x4d\x5a\x9c\x83\xd5\x7f\x4f\x56\xa3\xc8\xb2\x48\xf4\xe7\x78\x2f\xee\x70\x47\x1e\xe8\x22\x22\x1c\xbe\xc1\x8a\xc0\xc3\xfc\x1f\x78\x7d\x69\xa0\x52\xc4\x93\x60\xda\x79\xc4\x66\x05\x1b\x78\xfb\xd4\x43\x0d\xaf\x68\x4c\xf7\x5f\xd0\xe8\xc2\x40\xdf\x09\x7c\x06\x88\xbb\x97\x85\x48\x47\xc9\xba\x3f\xa8\xb5\x0a\xb6\x31\x2e\x40\x3a\xa1\xda\x30\x8f\x20\x43\x42\x82\x06\x0e\x5e\xbd\xb6\x99\xf5\x53\x33\x61\x3f\xcc\x35\xc8\x78\xb4\xd2\x05\xc7\x85\xd2\xb7\x26\xb3\x91\xcd\x32\xc4\x03\x4b\x4e\xe4\xca\xe3\x53\xce\xab\x9c\xd3\x7a\x68\x37\x58\x11\xc2\x81\xef\x01\xab\x12\xe6\x6e\x5f\x9a\x0c\x33\xfb\x98\x87\x85\xfd\xce\x67\xa8\x7d\x96\x56\x9c\xf9\x0c\x8b\xb7\xe1\xe5\xaf\x61\x99\x3a\xe5\xd9\xea\x20\x11\x42\x51\x87\x94\xfa\xea\x53\x3d\xc5\x94\x01\x53\x05\x8f\xf5\x01\xde\x0c\x8e\xf4\x51\x55\xde\xba\xa3\x00\x3d\x5c\xb3\xc4\xeb\xef\x9a\x2a\xb6\xd8\xd9\x9e\x1c\x56\x2b\x42\x6d\x23\x85\x9c\xce\x56\x6a\x1b\xa9\x6e\x3d\xe9\xb0\x0f\xaf\xe4\x66\x92\x64\xe0\xee\x11\xbe\x0c\x25\x94\x7e\x53\x53\x75\xb5\x82\x6b\x92\x89\x8d\x31\xf2\x02\xf5\xd5\x18\xe0\xb6\x7c\x6a\x1a\xae\x5b\x6a\x22\xc3\x6a\x01\x83\x08\x37\xa9\xe9\x62\xae\xee\xf4\xf8\x01\x0d\x05\xac\xc2\xb6\xde\x53\x1a\xa7\x6c\x87\x5e\xaa\x0b\xcb\x9b\x9b\x4f\xf8\x26\xf0\x76\x34\xb7\x63\x52\x9b\x29\x52\x0b\x6b\x25\x7d\xa3\xd5\xaa\x96\xb6\x51\x35\xb4\xc7\x14\x55\xf7\x31\xa5\xb7\x47\x0b\xa4\x1f\xda\x38\x57\xad\x19\x37\xb1\x9b\x70\x88\xa2\xf9\x18\xae\xc1\x91\x46\x9a\xee\xb9\xc5\xee\x24\x89\x9a\xb4\xde\x57\x55\xd5\xf0\xaa\x9b\xa4\x55\x93\xe5\x36\xf6\xb0\x10\x98\xef\xb7\x4b\x25\xf6\xf2\x36\xea\x68\xbe\x82\x34\x49\x6d\xee\xbb\xeb\xe0\xcc\x71\x27\x1e\x9c\x51\x66\x57\xc2\xaa\xbf\xe1\xe5\x83\x4d\x9a\x8f\x56\x92\x22\xe6\x3c\xb6\x40\x0b\xbc\xe7\x7a\x5b\x01\xa4\xdf\xa6\xe5\x2d\xb5\xc0\xb6\x8d\x3e\x19\xd9\xc8\x20\x2a\x56\x32\x6a\x4e\x55\x40\x63\xe2\x35\x31\xdb\x81\x03\x6e\xd7\x7b\x38\xfd\x85\x36\xee\xc4\x41\xd2\x2f\x9c\x56\x3c\xf7\xc8\x68\xd9\xb0\xfb\x1e\xe7\x53\x6d\xfb\x1d\x5e\x09\xf6\x8c\x5f\x52\xcf\xfc\x9d\x29\xd9\x7d\xc9\x8a\x54\xdf\x45\xa1\xf6\xcf\xfc\x2c\xce\x3c\xc1\x70\xd5\x24\x28\x9a\x9d\x4b\x4b\xdd\x51\x92\x2b\xa2\xdb\x33\x8a\xe8\xb6\xd9\x08\xb8\x3c\xdf\x4d\x6d\x66\xc7\x42\xb4\x85\x18\xe9\x22\x6d\x01\xbe\x6e\x85\x23\x0c\x53\xb3\x0e\xff\x5b\x78\x6f\x3b\x4e\xb4\xf0\x58\x63\xc7\x2d\xcf\x77\xb3\xdc\xc4\x83\x19\xff\xb5\xff\x77\xa9\x64\x0a\x81\x36\x16\xb4\xab\xcf\xb7\xf7\xa3\xa4\x18\x6c\x49\xe6\xd6\x38\xa5\x5a\xb4\xc5\x23\x33\xc9\x93\x49\x47\xed\x6d\xa5\xcb\x70\x49\xb5\x24\xf6\x93\x64\x4d\x01\x2a\x6e\x6a\x40\xc5\xcd\x72\x9f\x5b\xcb\xc9\xea\xea\x63\xb4\x0e\x91\xc1\xf8\x12\xad\x37\x61\x6c\x51\x21\x17\x2a\x13\x70\x66\x59\x65\x13\xd3\xbf\x7d\xda\xd9\xbf\xe0\x95\xde\x9f\x13\xfa\xdd\x6b\xe5\xf6\x9f\x73\x1a\xc4\xb4\x03\x91\x5a\x81\xd8\x14\xbe\xf4\xaf\x94\x90\xd6\x0d\x38\x06\x22\x72\xab\xf8\xe2\x7d\x1d\x06\x6c\x00\x1d\x0f\x42\xe0\xb6\x43\xbe\x69\x01\x4d\x53\xf3\x7c\x5f\xfa\xc0\x6b\xcc\x90\xc8\x49\xb1\x4b\x0c\x1b\x7e\xbc\x31\xe4\x55\x30\x66\xc6\x93\x22\x43\x2d\x4e\xc0\x89\x3e\xf8\xbe\xaf\xc4\xcc\x2e\xb4\x40\x99\xbb\x99\x7d\xa5\xe3\x61\x0f\x00\xdd\xf1\x75\xe0\x65\x32\xd3\xd5\x24\xc2\x7c\x21\xdc\x3d\xa1\x4b\xe0\x27\x82\xad\xdf\xfb\xdc\x62\x37\xfb\xf9\x49\x8d\x5a\x5e\x4d\xc9\xf7\xd4\x3a\x18\x87\x31\x8e\x02\xd6\x31\x99\x2a\x3e\xde\xb7\x68\xf8\xb1\xf3\x76\xf7\x14\x43\xe6\x65\x1d\x86\x1f\x51\x5a\x65\xd9\xc4\xa4\x6b\x4e\x18\x10\xa9\xee\xb3\xba\x0d\xe5\x8a\xa6\x8f\x7d\xd8\x28\xa1\x53\xbd\xda\xbe\x02\x55\xa6\x19\xc5\xa3\xfc\x15\x1a\x46\xa1\xa0\xee\x38\xda\xec\x13\xae\xbc\x59\xed\x16\x86\x1f\x6b\x94\xad\x53\x61\x3a\x70\xc0\x35\x28\x6d\x69\x30\xfe\x5c\x77\xe1\x10\xb9\xbc\x22\x79\xd9\xd1\xd2\x8a\x0a\xab\xa5\x68\x7e\xbf\x16\x68\xdc\x16\x7c\x09\xac\xdf\x0f\xc8\x7a\x60\x00\x6f\x29\x34\xdf\xf9\x52\xab\x93\x97\x35\xba\x21\x1a\x4d\xd1\x71\xfd\x8c\x22\x0d\xc8\x6d\x14\xd9\x7e\x5e\x18\xb4\x0f\x4b\x42\x4f\x61\xf9\x4e\x35\xe6\xfe\x85\xa5\x6e\x66\x01\x68\x15\xb5\x7e\x45\xed\xf4\x95\x16\xfc\x52\x77\x25\xa2\x26\x8d\xc3\xf3\x9c\x81\xba\x5a\xa3\x07\xf7\xfd\x8e\x7f\xdd\xd2\x0b\xd1\x9d\xa4\xe1\x7a\x18\xd9\xa1\xc5\xe0\x33\xbc\xb8\xac\x41\x90\x7c\x52\xe1\xa1\x22\x7b\x9b\x10\x49\xa9\xef\xe0\xd5\x19\x61\x99\x43\x55\x29\x4b\xd6\x6d\x1a\x27\x29\xab\xab\xe3\x64\x7f\xa4\x4a\x27\x37\x31\xc2\x2c\xbe\x86\xf5\x2a\x4a\x6c\x2a\x7f\xac\x73\x06\x8f\x82\x1f\x55\x7a\xb6\xc8\xc6\xa4\xa6\x8a\x13\xa8\x21\xce\x15\x25\xab\xef\x15\x5e\x32\x25\xcb\x72\x4b\x85\xb8\x8c\x6f\xc1\xd1\x74\x1b\xcb\x1c\xee\x7b\x93\x7f\xec\xf0\xfc\x8b\xdd\x28\x5c\xb3\x0a\xc8\x73\xb3\xf4\x22\x56\x37\xdb\x32\xa3\x8e\xfe\x19\xd5\x2b\xbc\xcc\x75\x85\x56\xbc\xab\x41\x3a\xef\xaa\x12\xe3\x04\x9d\x3a\x99\x02\x47\xb1\x33\xca\x37\x81\xeb\xbf\x35\xb1\x19\x9b\x58\xe8\x54\x70\xce\x6c\xeb\xa9\x43\x67\xdb\x54\x81\x57\xa3\x88\xc9\xa8\x16\x75\x92\x68\xc1\x99\xd1\x86\xce\xcd\x42\x37\x8c\x5f\x2e\x52\x79\x07\x51\xf4\xe9\x38\x26\xbe\xbb\xf8\x02\x24\x90\x4e\xb6\xa5\xbe\x46\x26\xe6\xb6\x04\x64\x77\x6f\xa9\x4c\xef\xad\xd2\xfb\x60\x7d\x93\x0e\xc2\x64\xdd\x64\xfd\x22\x32\x69\x47\xb1\x50\x9f\x57\x6d\x09\xe7\x5d\x75\x68\x23\x49\xd3\x4d\x67\x74\x44\x0f\xa6\xfa\x1d\x54\xde\x81\xa9\x10\x3d\x0b\x15\xa2\xd8\x7c\x0f\x16\x24\x12\x2c\x9d\x69\x65\x49\x98\x60\x0d\x4b\x42\x8e\x22\x1f\x56\xfc\x5c\xcf\x67\x87\x39\x57\xef\x28\xa2\xfd\xe4\xa2\xc9\x03\x21\xf2\x45\xed\x6b\x32\x3b\x34\xb2\x08\x1f\x2a\xf3\xbb\x31\x4a\x22\x9b\x99\x88\xb7\xa2\xe8\x4f\x54\x3f\x86\xb0\xf2\x96\x6a\xac\xf9\x40\xbd\xc5\x7f\xfc\xf7\x7f\xa9\x53\x1d\xd3\xb0\x96\x17\x03\x9f\xdf\xba\xa8\xfe\xea\xb9\x43\x87\x66\x3d\xac\x69\x54\x2a\x66\x34\x16\x8b\xe3\x05\xaf\x32\xc0\x6f\x96\x3f\xf3\x89\x0d\x44\xc9\x60\x25\x0d\x89\xee\xf6\x05\xd7\xaf\x7b\x5c\x81\x30\x6f\xeb\x55\xba\xad\xd1\xce\x42\x61\xac\xc9\xed\xac\x6a\x4c\xd9\x36\xad\x29\x22\x74\x1c\x35\xc3\xe3\x3d\x8d\x4d\x39\x5f\x3e\xa9\x1b\x6b\x07\x45\xdf\x3e\x56\x85\xc2\x6f\xa8\x04\xf1\x59\xc5\xd7\x76\x02\x33\x29\xb8\x6c\xfa\x41\xb8\x31\xf7\xc8\xef\x71\x99\x54\x7f\xb8\xed\xa4\x0e\x77\x18\xc0\x9b\x9c\xf7\x01\xde\xed\x5d\xcd\x20\x70\xa2\x54\x00\x2a\xa6\x1e\x83\xe7\xc0\x3c\xb3\xfc\xd5\xaa\xa2\xb6\x6e\xd2\xd0\xe6\x9b\x3b\x55\xf6\xe8\xb4\x6a\xf3\x3a\x87\xb3\x45\xba\xde\x3c\x95\x1d\x80\x16\x52\xd4\xa5\x33\x87\xff\x48\x3b\x7f\xff\xab\x4a\x53\x4a\xc5\x73\x51\x88\x70\x58\xbf\x4b\xf4\xf4\x5b\x52\x71\x26\x4c\xfb\xa9\x59\x05\x34\x4a\xe8\x44\x15\xd5\x7d\xa7\xe7\x0b\x1d\xb7\x5d\xd0\x13\x27\xf1\x6a\xd8\x77\x92\x18\x48\x5c\x7c\x49\x69\x02\x7f\x49\x63\xb4\x92\x68\x40\xba\x13\xce\x44\x7d\x35\x50\x46\xe8\xbe\xe2\xb9\xfe\x6a\xa9\x0c\xd2\xfd\x86\x2f\xbf\x7f\x3f\xf1\x11\xc5\x83\x5a\xe2\x9e\x0e\x70\x49\xe2\x2b\x9c\xf4\x24\x07\x0c\xdb\xb5\xee\x1d\x38\xc0\xa9\xb8\xbb\x2a\x46\x3f\xae\x9c\xab\x41\x38\xcc\x68\x20\x00\x33\xba\xa1\xba\x32\xfe\x44\x77\xc5\x5d\x6b\xed\x31\x1c\x59\x93\x86\xf1\x90\x23\x00\x01\x6e\x7b\x18\xc9\x79\x85\x9b\xaf\x9c\x50\x13\x0e\xe3\x5d\x95\xc9\x10\xf1\xba\xea\xa1\xc0\x2f\x34\x43\x90\x3d\xec\xe8\xbb\x5a\xe8\xec\x28\x81\xe9\xf0\x78\x9d\x9e\x2f\x15\x5f\x50\xb2\x95\x6f\xe3\xc8\xc3\x9c\xd5\x53\xd0\xab\x76\x83\x28\x43\x85\xa4\xb2\xfa\x75\xc9\xf2\xfa\xee\x0c\x3e\x98\x19\xa4\xa0\xa5\x07\x8f\x62\xc1\x0b\x47\x88\x37\xb7\xa8\xe0\x60\xeb\xce\xf6\x74\xcd\x2e\xb7\xf1\x13\xca\x9a\x23\x61\xaf\x1c\x00\x91\x4e\x00\xb9\x03\xac\xc2\x3d\xa5\xc8\x38\x37\x55\xb6\xf1\x21\x1c\x59\x6c\xb8\x6f\x60\x4a\x90\x40\x67\x65\x2c\x38\x4d\x6f\x96\x8a\x73\xfd\x14\xd5\xa6\x90\xe0\xdb\x41\x9b\x1c\x2e\xe1\x0d\xec\x3b\xe1\x83\x55\x01\xde\x23\x5a\x1e\xf8\xc5\x6d\xd3\xad\x3e\xef\xf2\xfc\x41\x82\x68\x2a\x46\x79\x07\xaf\x70\x71\xec\x11\x77\x46\x17\x71\x66\xf3\xdc\xf9\xd8\x88\x00\xfe\xb4\x54\xad\x5d\x28\x60\x73\xea\xbc\xe1\x7b\x2c\x1c\xc2\x59\xd7\xf1\xb8\xa8\x3b\x4a\x27\xff\x4e\x13\xd1\xb4\xbc\xd4\x4d\xad\x71\x6d\xc7\x3e\x98\xa3\x57\xe4\x1b\x05\x5d\x18\xa6\xa6\x6f\xa9\xc9\x69\x46\xb5\x41\x9d\xac\xd9\xc0\x3b\xba\x41\xf2\xfc\x27\x68\x55\x25\xc3\xd4\x8c\x95\x36\xfe\x4d\xad\xa6\x75\x53\xf3\x90\xc5\x79\x12\x77\x94\x52\xf4\x45\x55\xc6\xba\xa8\xd2\x46\xe3\x30\xcb\xcd\x9a\x8d\x19\xd6\xeb\x53\x9f\x0d\xf4\xdc\x92\x4b\x87\x58\xcd\x2d\xc2\x0a\x09\x82\xba\xf0\xc1\xba\x89\xc6\x49\x96\x3f\xa6\x0e\xff\xc0\x03\x96\x9f\xe8\x29\x10\x56\x83\x75\x75\xd1\xdb\xc9\x6a\x12\xb1\x63\x99\xea\x0c\xef\x0a\x1a\x51\x01\xff\xaa\x9e\x81\xd9\x9e\x17\xab\x9e\x9d\xaa\x8c\x26\x37\xff\x08\x35\x92\x96\xe5\xb9\xdb\x52\xcd\x5e\xe8\xe6\x45\xba\x66\xe1\x58\x21\xbf\x8f\xf0\x89\xaf\x95\x72\x99\x19\x50\x8a\xa8\xf2\xfc\x3c\x22\x13\x09\x10\xbe\x6e\xb8\x6d\xd5\x0a\x9a\x90\xda\xa2\x23\xe1\xfc\x9a\x2a\x18\x7c\xcd\xc5\xef\xe3\x22\xb3\xc5\x78\xd6\xc7\x8e\xb3\x80\x49\x09\xe3\x84\x2a\xce\x68\xaf\x51\x53\x70\xad\xa6\x26\xe3\xac\xb5\x74\xa1\x2a\x4a\xf1\x8b\x2d\x82\x57\x4b\x5e\x7d\xab\x8d\xc3\xc1\x9f\xbb\x93\x84\xba\xcd\x69\x8c\x1c\x87\x92\x23\xf6\xb9\xd0\x46\x4f\x68\xc7\x93\x28\xd9\xf4\x89\x43\x47\xcd\x58\xbd\x95\x50\xb1\x34\x1f\x69\xa1\x3b\x0a\x73\xe6\x3b\x10\xd1\x66\xaa\xc5\xc2\xb6\x7e\x1d\x03\xe1\xca\x9e\x6e\x9d\xbd\x51\x2a\x9d\xca\xaf\x2b\x97\x61\x12\x66\x79\x12\xe1\x2c\x42\x42\x11\xad\x1a\x18\x4b\x66\x67\x90\x6e\x9c\xad\xa5\x6a\x71\xd8\x32\x1b\x43\x7d\x5e\xb5\xa3\xd0\xb7\x78\x91\x5e\xa7\xb1\x63\x72\x9b\xe5\xbb\xb4\xdc\x1f\xcc\xbe\x93\x5e\xaa\xd6\xb0\x34\x16\x57\xd6\xd1\x41\x1f\xab\x35\xac\x18\xa8\x97\x1c\x27\x88\xcf\x1b\xa2\x24\x2a\x8c\x22\xfe\xb8\x1d\x26\x36\x9b\xf5\x2b\xf8\x34\xf6\x13\x9c\x1f\xc6\xa6\x03\xeb\x76\x5e\x11\x9b\xed\xe9\x35\x0b\x46\xdd\x89\x4d\xfb\xa3\x28\x81\x77\xb9\x15\x11\x0d\xff\x8e\xc1\xea\x78\xf7\xa3\x4a\x9f\xf3\xa3\x4f\x50\x01\x58\x73\xd1\x05\x7f\x86\xc6\x0e\xd3\xfb\x9e\x5a\x72\x75\x94\xe6\x78\xb2\xa9\x99\xc1\x51\x90\xe0\xeb\x5a\x13\xd7\xab\x30\x53\xad\x7c\x09\x4a\x17\xa4\x18\x0c\xa2\x6a\xeb\x7e\x61\x41\xd3\x66\x2f\xa9\x9e\x76\x9e\xc1\xf0\x37\x8b\x84\x15\xee\xa5\x80\xd1\x59\xac\x2f\x3a\xc9\xff\xe8\x19\x88\x06\xbb\xe8\xfb\x30\x53\x3b\x7b\x0a\xa1\x04\xe1\x52\xa4\x2d\x1e\x10\x08\x00\x67\xc7\x3d\x05\x37\x79\x8f\x8e\x4a\x41\xa4\xd2\x62\x10\x4b\x59\xf9\x19\xfc\x81\x52\x3a\x6a\x91\x21\x09\x87\x36\xee\x13\xc9\x04\xf3\x71\x38\xa2\xaa\xea\x49\x80\x69\xfa\x5f\x1a\x75\xc1\x03\x07\x96\xbb\xab\x36\xcd\x89\x50\x03\x16\x43\x9c\x12\xef\xd9\x35\x09\xdb\x97\xe7\xbb\xd0\x57\x9e\x55\x80\xd4\x63\xe4\x85\x68\xa2\x40\x91\x2a\xf4\x32\xa8\xb3\xbd\x16\x90\x79\x7f\x64\xa2\xc8\xc6\x43\x0b\x9c\xb2\x54\xa0\xe8\xc5\x71\xc8\xdc\xc3\x49\xc9\x14\x44\xe5\x1e\x37\xe5\x2f\x52\xc2\x06\x25\x96\x69\xe9\x13\xa5\xd7\x02\x05\x0a\xb8\xa2\xfa\x94\xc6\xa6\x3f\x0a\x63\x9b\xed\xaa\x3e\x27\xe4\x33\xfa\x64\x60\xb9\x17\x44\x74\x1f\x29\x62\xe9\xb3\x70\x93\xe0\xc1\xff\x25\x12\xb1\x7c\xa3\xd4\x75\x78\x25\x09\x99\xb2\xef\x6b\x77\x9a\x90\x7b\xaa\x5f\xc6\xc0\x9e\xad\x91\x6d\xc2\x38\x00\xbd\x09\x06\x55\xf8\xb0\x53\xec\x5a\x2c\xba\x07\xbe\xd3\xf5\x3f\x7b\xa0\x08\xb5\x6e\xd0\x59\x02\x57\x8b\xbb\x14\x45\x36\x9e\x1e\x08\xc7\xe3\xc3\x16\x36\xc2\x85\x6e\x3f\x89\x07\x76\x1c\xb3\x8f\x2d\x80\x7c\x25\xc6\xdd\xd4\x93\x58\x5c\xec\x2a\x2e\x15\xc1\x3a\x28\x3d\xad\x0b\x4a\x9c\x23\xb5\x36\xcb\x0d\x51\x05\xe0\xef\xb9\xa8\x1f\x78\x39\xd5\x33\x5a\x36\x8a\x73\xf7\xce\x9f\x76\x65\xd1\x73\x8a\xf0\xb5\x9f\xc4\x59\x31\x1e\x53\xe2\xcc\xe3\x67\x7e\x37\xf0\x85\xc7\xdf\x6d\xab\x0d\xd8\xf1\x4a\xba\x99\x68\xd4\x7c\x50\x63\xc0\x79\x52\x3d\xf5\x24\x32\x7d\x8b\x41\x81\x73\x8e\xa2\x13\x5f\xab\xc0\x63\xd5\x84\x51\x91\x5a\x66\x81\x65\x57\x2f\x50\x4d\x3d\xcd\x2c\xce\x0b\x4b\xdd\x55\xb3\x9e\x30\x5a\x4a\x9c\x06\x95\x56\x3b\x16\xf8\x01\x74\xc3\x67\x07\x73\x8a\xb6\x82\x11\x67\x4e\xde\xcb\x39\xca\xc8\xde\x22\x88\x60\x31\x46\x66\x9f\x9e\xfa\x3c\x49\x6a\xf3\x22\x85\x2a\x8b\xe7\x1e\x65\x73\xc1\x37\xc1\x53\xa1\xe6\xd7\x4d\x6d\x1f\x90\x3a\x6c\x8e\xf3\xaa\x67\xe1\xbc\xa2\x9b\x5e\x35\xe9\xe3\x34\xa6\x8c\x8a\x2c\x09\x26\x80\xa7\xdc\xde\xa3\x03\x03\x4b\xf3\x96\x02\x65\x9e\xa5\x18\x0c\xe1\xcc\x6b\x64\x17\x05\x53\x49\x67\xbe\xd3\xc1\xad\xb6\x08\x26\x00\x5d\x28\xb0\x0f\xbb\x08\x66\x05\xdf\x12\xaa\xcb\x42\xc4\xe0\x5d\xe0\xb9\x29\x21\x14\x70\xc6\xde\xa3\xfd\x85\x0c\xcb\xbf\x75\x55\x7c\x13\xe7\xe1\x38\xcc\xb2\x90\xf1\xa8\xd8\x4e\x37\x68\x64\xf9\xba\x81\x23\x78\xe9\xa5\xee\x9a\x49\x4d\xb2\xc6\xf9\x26\xe4\x4a\x50\xd5\x73\xc4\x60\xbf\xfa\x82\xb4\xa0\x2b\xda\x27\x6a\x2b\xa0\xf3\xd0\xa7\x8c\xbf\xa3\x95\x82\x95\x3f\x79\xaa\xfc\x11\xb7\x1a\xbc\xbd\xcf\x05\x7d\xec\x90\x60\xd5\xb0\x4b\x85\xd3\x91\x0f\x25\x45\x3e\xe3\xe5\xd1\x01\x24\x72\x9a\xd8\xce\x75\x69\xb2\xbc\x2f\x2e\x76\xc7\x26\x2e\x00\xf7\x59\x9e\x77\xde\xbf\x86\x5c\x37\x39\x29\x17\xbb\x83\x2a\x90\xab\xdc\x06\x95\x40\xbd\xac\x98\x3a\xbc\xfc\xec\xa0\x18\xaf\x90\x3f\x86\x67\xde\xd9\xf3\xf6\x7f\xdb\xd4\x3b\xc7\xcd\x9e\xbe\xc3\xf3\x5d\x33\x99\xa4\xc9\x24\x0d\x59\x70\x67\x91\xcf\x45\x34\x5b\xf0\x75\xb0\x57\xb1\x83\x3d\x46\xf3\x0f\x33\xca\x6e\x34\x52\x64\x8f\xd4\xd6\xd9\x4d\xf0\x08\xf8\x4e\xdf\x81\x1d\x15\x41\x4e\x9c\x12\x48\x07\x3c\xac\x9f\x75\xbf\xfa\x02\x3b\x9f\x7c\x50\x61\x91\xe5\x5a\xd7\x11\x40\x1b\x71\xa1\x68\xa2\xb0\x24\x6e\x52\xd9\x1f\xfe\xd4\x57\xd4\x36\x1a\x70\x02\xda\x75\xae\x57\x1f\x91\x04\xc8\x13\xca\x4c\xe5\x06\x0d\x49\x0b\x8e\xba\x88\x7e\x16\x8e\xc9\x05\x8d\x28\x45\x19\x43\x48\x8d\x3c\x1b\x66\x11\x9b\x8e\x66\x46\x66\x90\x8b\x64\x41\xfc\x33\x45\xf9\x33\x1d\x6f\x5a\x1a\xc6\x82\x8f\xd8\x24\x4e\xa2\x30\x1f\x85\xfd\x8e\xc7\xb5\x3d\x50\x15\x94\x07\x81\x50\x0a\x24\x1b\x76\x07\x8d\x31\x4b\x5b\xd3\xd2\xc4\xe0\xff\x9f\x3a\xf7\x70\xb4\x54\xbc\x29\xbb\x7b\x1e\xd5\x76\x9e\xf6\xb1\x14\xe4\x1e\x77\x70\xc9\x49\x64\xb3\x0c\x2d\xb0\x4e\x59\x63\x59\x40\x4c\x47\x14\x8b\x31\x90\xb1\x18\x92\x6f\x78\xac\x43\x11\x53\x22\x8e\x8f\x44\x16\x33\x52\x81\xce\x09\xcf\x58\x9b\x14\x69\xdf\x79\xb5\x8e\xf3\xd9\x9d\x42\x80\xae\x71\xb7\x46\x63\x8b\x51\x8b\xdd\x98\x24\x85\x3a\x3e\x3d\x73\x5f\xe1\xc2\xee\x2b\xf4\xf0\x24\x32\x31\x91\x62\x3b\x7b\x74\x47\x69\xb9\xee\xe9\x79\x84\x20\xa7\x1b\x85\x1b\x4e\x06\xc6\x8c\xcd\xab\xa4\x6d\xe1\x09\xd5\x3f\x3d\xf5\x5e\xec\x4f\xd0\xfe\x43\x85\xf0\xae\xa6\x8d\xf9\x56\x23\x1e\xaa\x42\x46\xb3\xba\x1a\xa6\x63\xaa\x14\x61\x07\x6a\x59\x60\xe1\x51\x54\x4d\x7f\x69\x31\x80\x49\x10\xc5\x70\xc5\xb5\x7e\xa7\x45\xb6\x23\x0a\x57\x7d\xd3\x11\x57\x8f\x69\x64\xa5\x92\xac\xb3\x70\x23\x93\xff\xb4\x17\x46\xdf\x8e\x14\x38\x9e\x7e\xae\xa7\x92\x52\x67\x79\x1f\xb3\x76\x2d\x31\x2e\x0a\x05\x47\x67\xbf\xf0\xb4\x3e\x81\x82\x04\x82\x99\x5d\x3d\x4a\x42\x3b\x49\xfe\x85\x43\xbc\x0f\x3b\x53\x1f\x0a\x01\xa1\xcd\x0c\x33\x40\xc6\x49\x5b\x35\x8d\x0d\x8e\x33\x54\x53\xb0\x32\x9e\x24\xed\x16\x78\x36\x35\xac\xd0\xee\xa9\xe7\x74\xda\x41\x6a\x2b\x42\x46\x43\x7b\x05\x5b\x62\x67\x4f\x09\xc8\x1d\xc1\x29\x09\x0f\x76\x5f\xaf\x0a\x6c\x98\x83\x0c\x38\x53\xe6\xc9\x20\xa9\x1a\xfc\xf8\x4b\x94\xc0\x43\x18\xfc\x58\x8f\xda\x8b\x78\xdf\x81\x80\x0f\xbb\xe6\x84\x4a\xff\x3f\x40\xce\x46\x20\x37\x0a\xa2\x91\xda\x41\x98\x13\x7d\x06\x72\xa8\xdb\xe8\xc5\x90\x56\x3f\x8b\x4f\x29\xd9\xe0\x45\x47\x72\x51\x4d\x97\x2b\x47\x2d\x2f\xd5\x04\x13\x60\x54\x6e\xc2\x89\xc2\x9c\x6c\xeb\xf9\xb0\xe8\x5a\xa0\xd8\xa7\xdf\xd3\x3e\x77\x67\xea\x57\x5c\x9e\xc0\x3b\x5c\xf2\x6d\xcc\xae\xbd\xd8\x1f\x42\xc9\x28\x4c\x28\x2b\xf3\xff\x8a\x49\xf6\xb9\x45\xe2\xcd\x5c\x63\xd3\x80\x03\xea\xdf\x28\x69\x89\x7f\xe3\xc2\xc7\x6c\x12\xa6\x61\x8e\x90\x54\xb0\xd0\x1d\xc5\x93\xed\xed\xea\xcb\xc9\xca\xce\xea\x1b\x84\x97\xce\x27\x95\x2e\xd1\xa2\x74\xd7\xce\x86\xdd\xa3\x53\x83\x9b\x48\xb8\x79\x56\x80\xbe\x34\x34\xc2\xd7\xd0\x4a\x35\xd7\x0f\x51\x9b\x10\x36\x6b\xef\x05\x70\xb9\x09\xee\xe2\xf1\x06\x36\x61\x79\xfe\xa0\x13\xc5\x05\x2d\x15\x4e\xee\x6f\x23\x78\xe1\x1b\xa5\xa7\x13\x56\x61\x1d\x10\x60\x5b\x48\xe7\x24\x2e\xa7\xf5\x21\xd0\xe0\xa7\x9b\x2e\xc8\x67\x33\x1c\x11\x48\x94\xec\x98\xd6\x88\xf4\xbc\x44\xd3\xe7\x3f\xd3\xeb\x7c\xf6\xb3\x0c\xf2\x61\x16\x49\xe9\x1e\xa8\xd6\x0d\x12\x1d\x6f\xb4\x59\xe0\xac\x6f\x63\x93\x86\x09\xe4\xbe\xa5\xd6\xe8\xcd\xf1\xc5\x5a\xd7\xd4\x24\x04\xba\x51\x1c\xc2\x8e\xa2\x4f\xd6\x98\x84\x9a\x75\x0a\x8b\x6c\xae\x7a\x0a\x64\xcc\x4f\xd1\xe4\xc1\x42\x7e\xb5\x54\x4e\x02\x83\xca\xb9\xe7\xa3\xf4\xfe\xdf\x9d\x46\x99\xe9\xf0\xbc\x53\xe9\xee\x28\xa4\x34\x58\xe4\xf9\x3a\xd0\x44\x57\x71\x9f\x70\x7e\xd5\x2f\xbb\x0a\xea\x92\xbf\x71\xfa\xba\x99\x59\x93\x4c\x9d\x48\xfa\xaa\x5a\xc9\xff\x16\x3c\xa6\x42\xda\x64\xfc\x63\x64\x27\xe1\xc3\x77\x20\x33\x85\x85\xb4\xa7\xe7\x01\xd4\xdc\xbf\xc8\x3d\x6d\xd8\xad\x12\x3a\xd3\x98\x8b\x18\x50\x65\x8c\x15\xfc\xdf\x65\x50\xa6\x7e\xbc\x8e\xd3\x26\xe0\xe6\x2d\x80\x8e\x45\x3d\xa8\x9a\x7f\xe9\x9b\xa3\x71\x74\x14\x2e\x2e\x67\xf3\x07\x08\xe2\x91\x5e\xfe\x9e\x6a\xd4\xf8\x4a\xa0\x76\x0d\x28\x32\x84\x07\x95\x56\x1f\x80\x29\x57\xc9\xd5\x53\x05\x68\x49\xa6\xbd\x0d\x43\x25\xe4\xb8\xd5\x9e\x45\xb2\x62\x7b\x4f\xcb\x66\x36\xfb\x64\x41\x4e\xf1\xb7\x72\x4e\x7b\x02\xac\x78\xc8\x2d\xd9\xba\xe0\x59\x03\x34\xc2\xa0\xdf\x6f\xe0\x61\x3e\xd7\x9d\x24\xd5\xe4\x2f\x7f\x02\x33\xd7\x13\x0a\x13\xb7\xba\x6a\x2d\x75\x62\x63\x15\xa1\xf3\x4c\x44\x8b\xab\x5f\x64\x6a\x29\xb2\x4c\x52\x26\xf6\xec\x43\xc3\xc8\x64\x19\x21\x47\x84\x05\x66\xab\x23\xb7\xe8\xdd\x3d\x97\xf0\x7b\x9d\x36\xa9\xfb\x84\x57\x2e\xf8\x77\xca\xd7\x5d\x0f\xed\x06\x87\xfb\x78\xeb\x53\xaa\xdd\x85\x8d\x07\xfc\x54\x3b\x0c\xb3\xc8\xe4\x49\x9a\xcd\xa8\xe2\xda\x17\xcb\x1a\xed\xa8\x52\x48\xbb\xaa\x46\x60\x60\xe3\x3c\x2b\x88\x40\x19\x93\xcb\x68\x19\xbe\x69\x84\xf2\xbf\xd0\x4d\xed\x2b\x26\x8a\x3a\x5a\x18\x47\x09\x1e\x5d\x52\x85\x03\xea\x89\x4e\xa2\xa8\x72\xe2\x9e\x13\x1b\x78\xa2\xf4\x64\xdb\xd7\x51\x50\xe2\x1b\x5a\xeb\xfc\x47\x95\x27\x25\xe2\x58\x49\x11\xc3\xfa\x02\x0c\xc6\xd8\x41\xbe\x69\xe3\x66\x0b\xe3\x7e\x6a\x0d\x8b\x0b\x48\xeb\xb0\x77\xa5\xbe\x5f\x7a\xea\x37\x82\x9d\x75\x94\xa4\x20\xbe\x5c\x12\xa5\xaa\x97\x6d\x14\xf6\xd7\x6c\xae\x40\xa3\x6f\xd2\xf9\xca\xd7\xaa\x68\x40\x44\xb1\x7d\x3e\x09\xa5\x84\x5a\xfd\x29\x5f\xbb\x00\x9c\x04\x26\x73\xca\xbb\x20\x2a\x46\xec\xf5\xbd\xd2\x1f\x50\x47\x69\x73\xe1\xac\xff\xa6\xe7\xf5\x48\x8a\x95\x9c\x04\xa6\xb9\x8f\x59\x05\xfe\x8f\x03\x63\x8c\x68\x86\xd5\x06\x10\xb9\x5d\x0d\x7c\x02\xe2\xa2\xde\xe7\xc7\xb1\x50\xf0\x26\x0f\x4b\xcf\x8b\xb8\xad\xe7\xdf\x7f\x90\xda\xcd\xd5\x42\x6c\xa5\x6b\x08\xa9\x26\x9e\x6f\x1c\xb0\x26\x0a\x57\x6d\x54\x6d\x40\xb2\x76\x8c\xe0\x2b\x35\x9a\xaf\x45\x9e\x23\x4f\xd2\x71\xb5\x14\x3b\x4a\x97\xec\x1b\x81\x4a\xd6\x7c\x43\x57\xd9\x6d\xcc\x39\x72\x6e\x8c\x51\xf9\xdb\x6f\xb5\x14\xbb\x5e\xec\xae\x59\x2a\x01\x76\x9c\x64\x20\xfa\xd6\xa4\xaf\xd2\xe7\xe3\x92\x4c\x08\x04\x61\x43\x11\xa5\xd7\x42\x40\xb8\xd6\x1f\x37\xb2\x8b\xcb\xf3\xcb\xdd\xd8\xa4\x69\xb2\xc1\xbf\xe4\xb8\x32\x9d\x7d\xbb\xac\x52\x6e\xeb\x36\x45\xf7\xf2\xf2\xbc\x4f\xff\x54\x8b\x4f\x3a\xd6\x9a\x18\xb2\x67\xbb\x63\x33\xe0\xf0\x03\x99\xd0\xef\x6b\x06\xcf\xef\xd7\xa5\xfd\x20\xae\x4e\xdf\x0f\x2c\x10\x8a\xe2\x7c\xdd\x96\x00\xc9\x72\xa3\x04\x49\x04\x47\xaa\x30\xa5\xe5\xe3\xba\xb9\x33\x96\xe5\x00\xcf\xe1\x07\x18\x1e\xbe\x51\xb9\x1f\x4a\x5e\xac\xdb\xc1\x9c\x7f\x94\x3f\xa5\x41\xe1\x6b\x7c\x4e\x68\xa9\xf1\x95\x8e\xe3\xc6\xd1\x23\xfd\x8d\x12\x68\x99\x98\x89\x4d\xf7\xf9\xec\xdc\xee\xa9\x32\xbb\x7c\x50\x32\x02\x03\x5f\x2e\xd0\x24\xaf\xa4\xf4\x8e\xde\xe9\xef\xd2\x3e\x93\xe6\x39\xda\x34\xfc\x57\x6a\xf2\xf6\x51\xde\x4d\x64\x54\x69\x71\xe3\x44\xd9\xde\x53\x18\xae\x0f\x34\x4f\xd8\x64\x92\x90\xbc\x62\xe5\x1d\xc8\x31\xa6\x80\x05\xf7\x14\xc6\x15\xec\xfa\x42\x0f\xe1\x33\x97\xfd\xb4\x18\xaf\x44\xdc\xea\xf6\x88\xce\xa7\x47\x27\x5a\x45\x65\x57\x92\x78\x20\x34\x26\xd8\x0b\x1f\x68\x5e\x05\x0e\x1c\x98\x3d\xae\x8d\xe6\x34\xe9\xf7\x8b\x89\x68\x9f\x30\x17\x51\xa0\x48\x61\x4f\xab\x34\x77\x18\x67\x79\x4a\x5d\x00\xd9\x0e\x05\xc5\x39\x5e\xea\x96\xc4\xc0\x37\x64\x70\x66\x1e\xef\xfa\x7e\xe9\x21\x41\xdc\x67\x28\x4d\x8c\xcd\xf6\xaf\xc5\xee\x6a\x98\x32\x5f\xbc\x1c\x21\xaa\xd6\x75\xa2\xa6\x25\x3c\x9e\x44\xa1\x89\xfb\x56\xe9\xbc\x72\x63\x15\xdf\x28\x93\x9e\x15\x2b\x2f\xdb\x7e\xbe\xab\x96\x33\x52\xdd\x06\xc8\x96\x30\x18\x90\x40\x7e\x58\x94\xb7\x14\x77\xc2\x2d\x45\x88\xb1\x17\xcb\x00\x71\xe9\x4d\x25\x70\xf4\x75\x65\xba\x26\x45\xbc\x39\xa3\xfa\xe8\x2e\x29\x0e\xc0\x87\xea\x04\xbc\xd0\xc6\x4f\xcd\x6d\xef\x1d\x95\x5d\xac\x91\xbd\x6c\x0d\x28\x96\x97\xba\xc5\x64\xa6\x7a\x72\x27\xdf\xea\xc4\x32\x8f\xd2\x7a\xc3\x93\xbf\xde\x70\xa1\x0e\x3d\xdf\x1d\xac\xf6\x3b\x9e\x41\x8e\x4b\xb3\x52\xda\xdd\xa7\x18\x06\xf3\xdd\xaa\x88\x74\x1f\x8e\x86\xeb\x20\xfa\xec\x67\x19\x07\x0e\xff\x07\xde\x08\xc7\x5d\xf4\xe3\xc3\xa7\xd9\x69\x14\xb9\x17\x1f\x0e\x5e\xc1\x5e\x11\xb1\x33\x72\xab\xf9\xcb\x02\xdf\xbe\x1d\x52\x78\x5a\xfd\xa1\x04\xe1\xd5\x0f\xf1\xb5\x3b\x33\xc3\x2c\x37\x0c\x16\x87\x13\x04\x1e\x3d\xb8\x4a\x27\x75\x0a\xf0\x8a\xf2\x60\x06\x61\x96\x25\x71\xb5\xa0\x90\xf1\x12\x65\x2c\x8f\x9e\x39\xa1\x54\x64\x4e\xb6\x24\x8e\x16\x40\x38\x3f\x09\xe3\x58\x62\x17\x59\xb7\x7a\x41\xb7\x4c\xf6\xb8\x88\x07\x86\x09\x0e\x25\x88\x56\x28\xd0\x4b\xaa\x30\x98\xce\x55\x0f\xc1\x95\xee\x40\x89\xdc\x22\xbd\x20\xf2\x54\x33\x07\xff\xd3\x2f\x78\x2a\x96\x5f\x3b\xc8\xc1\x9b\x6e\x53\xee\x8f\xe8\x65\xab\xa5\x21\x39\x01\x0a\x2e\xf0\xe2\xdc\xf9\xcd\x95\x84\x06\xc9\xc1\xa1\xe7\xbb\x93\x22\x1b\xcd\xfa\x94\x3b\xa3\x39\x1c\xc7\x99\x73\x6c\xb0\x3d\xb0\x55\xde\x51\xa7\x4a\x96\x9b\xd5\xd5\x5d\xd5\x8a\xc5\xc8\x6c\x23\xb8\x8b\x1e\x6a\x98\x75\x26\xb1\x45\x72\xe5\x48\xe0\xc3\xfb\x77\x69\x59\x63\x3e\x6e\x6b\x9a\xd1\x33\x64\xfb\x01\x0a\x99\x9b\x3e\xae\xf8\xdf\x26\x13\x86\x2d\xc1\xff\xba\x5a\x7a\x05\xdf\x6f\xa9\xdc\xe6\x05\x15\x0c\x66\x49\x12\xef\xa1\x13\x00\xee\x38\xa9\x37\xf1\xa3\x5d\xaa\xf9\x59\x7e\x62\x3e\x42\x98\xc6\x7f\x84\x98\x1d\x49\x8c\xd3\xaa\x9b\xf5\x46\xa0\x74\x12\x8f\x61\x03\x48\x77\x3d\x99\x0d\x24\xe3\xde\x53\xa4\x82\x66\xdd\xa6\x9b\x3b\x54\x16\x05\xe1\x19\x20\x34\x8c\x36\xe5\x1b\x4c\xa6\x50\xb6\xf8\x88\x1b\xfd\x80\x42\xeb\x22\x89\xe1\x34\x89\x92\x81\x7d\xc5\xca\xa1\x02\x23\xc2\x59\x7f\x0e\xee\x4b\xc5\x74\x79\xb1\x95\xe2\x29\x5a\x29\xc6\x94\x43\xc0\x82\x82\xf8\x3f\x3e\xfd\x2f\xcb\x5a\x77\x53\x0b\x9c\x26\xcb\x4d\x15\xcb\xb3\x43\x25\x5d\x3d\x1d\x27\x22\xe1\xb3\xbd\xd9\xd8\x46\xb9\x4d\xc1\xf9\x87\x15\x0f\x64\x31\x5f\xb7\x71\x88\xae\x98\xc1\xc0\xae\xe4\x8a\x71\xfc\xb6\x62\x1c\xbf\xad\xe2\x3c\xb3\x92\x14\xf9\x8f\x75\xbe\xb0\xc0\x0b\xe3\x24\x42\x6b\xb4\xed\x5c\x2d\x15\xfd\xce\x19\xcc\x2c\x37\x7a\x51\xd8\x58\x0b\xa1\x39\xf3\xa4\x18\x3a\xde\xe4\x24\xad\xe8\xb3\xd2\x84\x21\xbd\x76\xa4\xec\xbc\xb0\xa4\x7b\xc4\x5f\x74\xa3\x48\x8b\x01\xf5\x73\x48\xa0\xb8\x14\x64\x65\x26\x11\xb5\x82\x38\x11\xf6\x0e\x8a\x92\x48\x2b\x5c\x57\xbc\x25\x0f\x35\x5a\x6a\x96\x92\xb1\xc8\x56\xdc\x80\x37\x8a\xc5\xbb\xbd\xa7\xb8\x33\xaf\xd3\x6a\x47\x0d\xef\xb8\x82\x75\x1c\x01\x1e\x92\x75\xad\x1a\x1e\xc6\xf2\x7c\xd7\x46\xe1\x30\x94\xde\x3b\xe9\x5b\xa8\x7e\x92\xaf\x5b\x2a\xf6\x4b\xdd\x6c\x62\xe3\x81\xf3\x4a\x11\x9b\xdf\x50\x60\xa6\x1b\x3a\x1e\x4f\xad\xc9\x77\x7b\xb6\xd9\x1d\xbd\x9a\x0e\xbe\x22\x72\xbb\x48\x69\x29\xd6\x2a\xe0\x19\x70\xf9\x94\xea\x35\x9c\xd4\x8c\x73\x54\xd1\x18\x89\xb4\x35\x13\x66\xe1\x80\x7f\xd4\xda\x8e\x65\xc6\x8a\xee\x85\x7f\x9b\x6f\x54\x78\x9b\x8c\xc6\xc6\xe2\xd5\x60\x7f\x90\x67\xe7\xeb\xde\xa7\x15\x18\x2d\xcd\x57\x93\x28\x4c\xb2\x59\x3f\x62\x7f\x09\x7f\x4b\x32\x4f\x7e\x1d\xc0\x72\x09\x26\xc5\x93\xa7\x25\x54\xac\x0c\xe3\xe1\x6e\x5a\x66\xd2\x8b\x4a\x8b\x46\xb2\xe8\x1e\xc8\x0d\xea\x0d\x2c\xa0\xa3\x35\xf2\x82\x40\xa5\xc2\xfe\x2a\x50\xd2\x58\x77\x70\x48\x61\xfd\xde\xa1\xc9\xc5\x2a\x7d\xd4\x38\x2f\x96\xe7\xa9\x27\x66\x56\xc1\x1b\x67\x7a\xde\x28\xcd\x50\x0a\x1c\x39\x7f\xd2\xde\x61\xdb\xf7\xd4\xb4\xcd\xcc\xac\x24\xeb\x38\xb7\xa4\xc5\xa5\xb3\x3c\xff\xe8\x8d\x1a\x25\xb0\x47\x3a\xad\xd8\xd4\x10\x0f\x90\xab\xae\x3b\x60\xed\x99\x3a\xdb\x9f\xd8\xc2\xdc\xbc\x32\x31\x9b\x36\xcd\x66\xab\x65\xe3\x92\x2a\xbe\xbf\x7f\xae\xa7\xfa\x01\x79\xb6\x99\x0a\xac\xf4\xde\x52\x14\x4e\x66\xc8\x3e\xc0\x2b\x06\xae\x4d\xba\x79\x2a\x5b\x21\x78\x41\x8d\x08\x2b\xa2\xcd\x9d\xde\x93\x7e\xac\xe7\xd7\xc7\x8e\xa9\xe2\x1f\x67\x5f\x1d\xe9\xbe\x9b\x58\x18\xce\x10\xba\xf2\xf2\x11\x4c\xa3\x1c\xfd\x4f\x29\xe7\x39\xee\xa7\x16\xf5\x65\x61\xed\xfd\x1b\xcd\xda\xfb\x37\x81\x06\x61\xa5\x63\x3b\x08\x19\x2d\xe7\xcb\xf0\x9e\x1a\xf4\x1e\x6d\x1c\x80\x02\x9e\xee\x79\xfb\x3f\x33\xdd\xea\xe2\xff\x32\x81\xef\xa4\x9f\xd8\x41\x82\x16\x1d\x3c\x48\x09\x66\x24\x69\x6c\x90\x27\xf0\x30\xd8\xe3\xb4\x2d\xf9\xba\x61\x75\x08\x58\x6c\xfa\x6b\x66\xc8\x81\x33\x0c\xc3\x9b\x2a\x67\xf2\x66\xe0\xbb\x5f\xa3\x7c\x1d\x6f\xc4\xa0\xd3\xa0\x8e\x40\x75\x0e\x0c\xbb\x8c\x7c\xd3\x28\x3c\x54\xfb\xdf\x86\x43\x06\xd4\xb8\xd1\x51\x3c\x36\x5b\x2d\xdd\x67\x3f\x2b\x82\x8a\xe2\x27\x0a\x37\x14\x3d\x8e\x90\x46\xe9\x3c\xbb\x29\x06\x33\xaa\x3b\xe3\x92\x22\xa7\xbb\xac\xa4\x86\xff\x49\x8b\x9c\x89\x92\x90\x56\x9a\x71\xdf\x56\x67\xf3\xb7\x75\xff\x45\x61\x87\x51\x18\x2b\xc9\xae\x8f\x54\x47\xfa\x47\xb5\xc5\x3a\x89\x36\x9f\xa0\xc7\x67\x45\x61\xd8\x06\x44\x4b\xd7\xb0\x9c\xe0\x9d\x5d\xc7\x42\xc4\x9f\x21\x09\x0d\x1c\xf5\xae\x9e\x6f\x2a\xf8\x3a\x1d\x35\x58\x39\x6f\x29\x3e\x82\x19\xaa\xba\x09\x52\xd6\xeb\xfc\x7e\x1c\xa8\xd1\x3a\x0e\x47\xc8\x41\x5e\xab\xfd\xc9\x37\x54\x10\x14\x20\xbb\xcf\x04\x3d\x52\x99\xa0\x22\x83\xa1\xc5\x01\x58\x6f\xc4\xae\xe1\x3b\x94\xe2\x65\xb3\x03\x8e\xa4\x8b\xc2\x6c\x6c\x98\x26\x08\xe6\x0c\x75\x72\xbe\x6e\x69\x16\x5c\xe8\x9a\xfc\xe7\xf3\x9a\x34\xce\xdb\x35\xde\x47\x75\x80\xc4\x76\x98\x02\xe3\x25\xd6\x9e\xfe\x90\x6f\xda\xc0\x6c\x83\xd4\x8c\xd1\xe3\x03\xe8\xc6\x11\x8d\xe3\x38\xa2\xa0\x5e\x1b\x23\x93\xdb\x75\x9b\x82\x3d\x47\xd2\x90\xf4\x1e\x2c\x1f\x51\xa3\xbb\xf0\x05\x18\x22\x60\x0e\xe3\xe1\x0e\xd5\xe2\x7f\x15\xc5\x2f\xbe\x29\x3d\x9c\xea\x7e\x59\x27\xc4\x5e\x9e\x67\x2b\x38\xd7\xf3\xe0\x9b\x7f\xdd\x12\x5b\x3d\x2b\x44\xd7\xe1\x0a\x3b\x88\x18\x51\xd4\xcd\xf9\x5a\x23\xc5\x4d\xd4\x67\x71\x3d\xe1\xcd\x50\x8d\xca\x67\x1a\xdb\x64\x79\x5e\x58\x7d\x9c\xfe\x1a\xce\x88\xaf\x97\x1e\x81\xfd\xf5\x56\x8b\x13\x27\xb9\x11\x3f\x07\x59\x29\xf8\x5f\x7c\xed\xb9\x1f\xe2\x7c\x54\x64\xa1\xc9\xe0\x22\x63\x33\xdc\x0a\x6a\x78\x52\x97\x49\x7c\x4f\xab\x3d\x26\x71\x42\xdf\xde\x06\xcb\xde\x0a\x20\x02\x31\x70\x6e\xb3\xdc\xc4\xb9\x78\xf3\xd8\x60\x1c\x6f\xe0\x68\xf9\x61\xdd\x9b\x6f\x09\x4a\xed\x2b\xc4\xba\xd8\x51\xec\x29\x17\x31\xaf\x7c\xd3\xc6\x8d\x9a\x25\x45\x3e\x62\x6f\xc8\xf5\xff\x2f\x3a\x5d\xbd\x0b\x6d\x0d\xca\xab\x61\x2a\x63\x8e\x9a\x89\x06\x4c\xbf\x57\xd6\x28\x93\xc3\x3c\x49\x55\x85\xf7\x8e\xca\x58\xf2\xee\x64\x6d\x4f\xfd\x31\x93\x6e\x84\xfd\xb5\x8e\x66\xfd\xe5\x92\x26\xdf\xb4\xec\x9c\x83\xdd\x49\x64\x36\xc1\x87\x2c\xfc\x57\x5e\x66\x9f\x71\x3b\xc0\xcc\x6c\xef\x79\xcf\xe9\x62\xad\x3a\x6a\x42\xb0\x56\x09\x8b\x82\x3a\x47\xce\x06\x5a\xf1\x6a\xdd\x9a\x08\x20\x61\xec\xbc\xd9\x9e\xb7\xce\xf7\x34\x7f\x4d\x73\xd0\x0f\xcf\x53\x54\xc8\x67\xde\x92\x2b\x7b\xfa\x5c\xd3\x65\x87\xe9\xb1\xbf\x59\x84\x93\x89\x1d\xa0\xa9\x12\x0e\x11\xab\x76\x72\x15\x41\x7d\xec\x35\x6d\x5f\xaf\x2a\x5c\xc4\x8a\x49\x63\xcb\x49\x79\x78\xcb\x47\x54\x17\xea\x11\x47\xad\xbb\x6e\xd3\x15\xee\x6d\x87\x37\xf7\x50\xf5\xb7\x3d\x54\x42\x39\xa9\xcd\x8a\x31\x3b\xc6\x18\xd2\x5d\x3d\x0f\x49\xda\x35\xdd\x6a\x0e\xaa\x5d\x97\xda\x7e\x5a\x84\xb9\x63\xf0\x86\x13\x87\x34\x24\x5f\xb7\x24\x18\xbb\xa9\x89\xd7\x64\xb1\xa1\xbc\xfa\x7b\x81\x12\x59\xf9\x3d\xc8\xbe\xb9\x63\x61\x8f\xcf\x8a\x5d\xa5\x73\x04\xd3\x73\xa4\xe6\x6b\xd6\x5a\x7c\xab\x03\x06\xc0\x19\xae\x78\x21\xa1\xc1\x0c\x86\x98\x44\xc4\x64\x52\x58\xa9\xc2\x3e\xfe\xff\xa5\x9a\x97\x8b\x6d\xca\xe6\x79\x6a\xc2\xd8\xc5\x47\x38\x1f\xaf\xaa\xb3\xf2\x6a\xcd\xc9\x1b\x4f\xa0\xbb\xed\x48\x27\x6e\x2a\x31\xc9\x9b\xce\x30\x99\xd5\xd5\x70\x60\xd6\xc3\x1c\xfd\x15\x52\x5b\x51\x00\xcc\x63\x74\x34\x0b\x89\x85\xd2\x01\xb8\xef\xf4\x19\x36\x6d\x1e\x87\x6b\x09\x14\xa1\x9c\x78\x4b\xa0\xb1\x85\xcd\x13\xf3\xc0\x01\x69\x5e\xe9\xa8\x63\xe9\x82\x66\xc5\x56\xb4\x6b\x5e\x24\x77\x87\x22\xd6\x62\x72\x3d\x1c\x29\xbf\x1f\xa8\xea\x1b\xed\x57\x8e\x88\xcb\xad\x28\x14\xec\xe9\xed\xbd\x16\x55\x23\x33\x36\xaf\x5a\xb7\xb0\x84\x85\xc3\x1f\x03\x27\x1a\xe7\xd3\x81\x03\x07\xbb\x2b\x26\x8a\x92\x24\x86\xbe\x51\x35\x74\xb5\x54\x80\xec\x4a\x27\x67\x11\x27\x1b\x2b\x61\x3a\xd8\xca\x95\xef\xc4\xb0\xce\xbb\x70\xa4\x3f\x4a\xc3\x2c\x0f\x6d\x36\xa3\x10\x22\xb3\x9c\x49\x55\xe0\x16\xf1\xdd\xaf\xf9\x9a\xa7\xc9\x73\x9b\x6e\xce\x28\x3e\xc4\xd3\x0a\x57\xb7\x93\x8c\x0c\xce\xa1\xed\x53\x87\xaa\xb5\x19\x68\x7c\x04\x68\xe3\x8c\xdb\x6f\xfd\x34\xa4\xa9\x30\x33\x4f\x4e\xe9\x2c\x10\x72\x63\x8f\xde\xef\x4c\x6b\xdd\xec\x2d\xab\xd8\xc6\x43\x33\xdc\x22\x86\x8f\x86\x19\xbe\xd6\xbc\xf4\x36\x1f\x25\x83\x59\x9f\xab\x38\x87\x5c\x05\x50\x33\x60\x00\xd2\xf8\x2a\xfe\xff\x35\x3f\x75\x60\xe3\xbd\x3e\x0b\x72\x57\xa7\x56\x01\x49\x13\xb5\x03\xd5\x7a\x7a\x53\xed\xaa\x9d\x3d\x85\x42\xbd\xad\x95\xb7\xee\xf2\x02\x47\x69\x09\xea\x74\x62\xa8\x3d\x1d\xd9\xf6\xa9\x62\x8f\xf8\xa0\xec\xb6\x1c\xd9\x23\x93\x8e\x4d\xdf\xb2\xde\x79\x67\xab\xb4\x3e\xdf\x28\x8d\xec\x7e\x92\x4e\x9e\xd9\xab\x19\xab\x4e\xab\x06\xdd\x59\x04\x8b\xf0\x25\xae\x96\xaa\x6a\xc3\xbd\xfc\xb5\x4c\x3f\x45\xb5\x5f\xf9\x29\xd5\x78\xb5\x97\x78\x7d\xa4\xe3\xa1\x7a\x1c\x44\x7a\x47\x28\x97\x05\x23\xf8\x80\xb2\x2a\x08\xab\xfe\x16\x25\x51\xb3\x19\x43\x22\xd6\x81\x96\x5c\x0f\x57\x89\x9f\xc7\x56\x3c\x1e\xe8\x29\x1b\x25\x93\x59\x0f\x9c\x3f\x4f\x3f\x2b\x90\x3a\x4d\xc5\xa1\xa5\xc6\x6e\xab\x8a\xeb\xc0\xae\x87\x24\x0b\x52\xfd\x33\xce\xb6\x33\x8a\xa1\xfe\x4c\x4b\x55\xed\x60\x37\x2b\x86\x26\x55\xc2\xb4\xdc\x04\xcb\x37\xaa\x50\xb7\x5a\x1d\x3d\x2b\xc9\x46\xa4\x6a\x4f\xf7\x02\xaf\x2b\x7c\x4f\xfd\x6d\x91\x87\x51\x58\x6d\xdf\xd9\x6a\x48\x5d\x85\xac\xfa\x62\x97\xd7\xa9\x36\x92\xcb\xce\x3a\xef\xfe\xad\xa0\x41\x5b\xb8\x44\xb4\x85\x8a\x38\x61\xf7\x54\xd7\x50\x7f\x58\xea\x7c\x0e\x25\x1f\x9c\xe4\xe5\xf2\xbc\x30\x53\x52\x01\x94\x91\x2a\xd5\xa1\x86\x46\xd9\x83\x9c\x20\x7a\x0b\x09\x22\xe0\x5f\xae\x2a\x76\xd1\x9b\x48\x4a\x6a\xbf\x5b\x7c\x58\x5a\x6c\xf8\xab\xeb\x08\xc4\x14\x09\xe6\x92\xc3\x0f\x6a\x0e\x7f\x85\x69\x4e\xd7\x6d\x96\x03\x41\x80\x28\x0f\x4d\xfe\x7c\xad\xca\x3f\x9b\xeb\x22\xb0\xeb\x34\x95\x7d\x99\xf3\x5c\x93\xcc\x6b\x79\xe9\xe7\xba\xe3\x22\x0e\x61\x00\x25\x42\xf6\xd1\xf2\xf1\xc0\xa3\x16\x8f\xb9\xf2\xd1\x8a\x1d\x86\xf1\x4e\x07\x39\xfe\xfc\x93\x04\xf8\x72\x90\x78\x37\x3d\xbb\xa7\x9d\xfd\xfb\xdd\xb4\xd1\x8b\x22\xab\xb6\xb3\xa7\xe5\xab\x6b\xc8\x9c\xbf\xd3\xd2\x3c\x68\x63\xbb\x1a\xf6\x43\x43\x5d\xb7\xca\x8e\xa3\x1f\x41\xd4\xd4\x1d\x95\xc9\x28\x44\xdd\xde\xfb\x9c\xdc\xd9\xc5\x37\x5b\x09\x82\x97\x16\x0e\x75\x97\xe7\x3b\x9e\xae\xf7\xb8\x52\x74\x3c\xae\x25\xb1\x92\x74\xbc\x43\x49\x62\x75\x7a\x4a\x12\xab\x33\xf5\x6d\x7c\xa7\xb1\x10\x84\xec\xac\xe3\xa8\xa5\x39\x7f\xc1\xff\xa0\xfa\x7c\xc2\x34\x35\x83\x10\x7a\xe7\xba\x17\x57\xe1\xa4\xce\x07\xfb\x54\x43\x2b\x8e\x5e\xc9\xa0\x56\x6b\x50\x52\xab\x5b\xb3\xaf\x8b\x8b\xdd\xc9\xdf\xfb\xbb\x0a\x63\x8e\x06\x3f\xbe\x56\x31\xfe\xaf\x85\x30\x43\x78\x3a\x98\x6a\xa1\x62\x51\x95\xe0\x9b\xaa\x42\x95\x26\xfd\xb5\x4c\xc9\x00\x31\xf3\x1d\x12\xee\xdf\x54\xdc\xf6\xb7\x1d\xd0\x67\x68\x63\x9b\x83\x49\x76\xc6\x97\xb0\xee\x28\xd9\x6a\xb8\xf6\x62\x7f\xb7\x9e\x8e\x62\x36\x5f\xfe\xf9\x68\xc6\xf7\x72\xc1\xb6\x88\x0e\x8f\x26\xea\x6c\xcb\xf7\xe4\x36\x4d\x93\xd4\x3b\x22\x58\xba\x5f\xd2\xb4\xc8\x5f\x6a\xe9\x4b\x7e\xd1\x31\x4b\x21\x48\x66\xcd\x17\xbe\x09\xb6\x2e\x5d\xa2\x39\xcf\xd3\x44\x34\x20\x69\x0a\x9c\x44\x91\x97\x2b\x9a\x2a\x98\x5b\x12\x15\x63\xbb\x87\x56\x2b\x7c\x31\x20\x74\x39\xab\x4a\x67\x0e\x0e\x83\xf3\x30\x90\xe8\xee\xfd\x76\xbd\x27\xe5\xb0\xc7\xd0\xf8\x90\xbb\xd3\x53\xec\x1d\xef\x05\x6a\xd3\xbd\xa7\x11\xe8\xd7\x74\xc6\x23\x8c\x06\x51\xb8\x6a\x67\x15\x21\xf7\x69\xd5\xd4\x00\x40\x0a\xff\xff\x40\x69\x53\x5c\xa8\x65\xe6\xe2\xcd\x62\xc6\xb3\xf6\x9f\x45\x7d\xc8\x25\x38\x9e\x5b\x7c\xf4\x40\x81\x59\x72\x13\x87\x21\x3c\x64\x18\x48\x68\xfe\xf3\x75\x1b\x9d\x67\x3f\x32\x19\x7b\x7e\xb0\xb6\xcc\x47\x86\xa1\x81\x00\xa2\x20\xa7\x7d\x44\x05\x5d\x91\x19\xd5\x69\x7a\x29\x50\x46\xf0\x8f\x15\x8b\xca\x79\x15\x29\xc7\x76\x2d\x49\x32\x83\xa8\xd7\xa1\x5f\xaa\x0d\xcb\xd8\x19\x1a\x1e\x57\x61\xa9\x36\xbb\x80\x6a\xb6\xae\xa7\x03\x07\x68\xfb\x28\xf5\xd3\xf3\x35\xbe\xb4\xad\x7e\xf7\xe7\xba\x59\x9e\xda\x78\x98\x8f\x6c\xac\xc5\xb6\xff\x6b\x25\xa9\x77\x45\x8b\x09\x29\x1a\xc3\xb5\x70\xdc\x01\xe3\x6e\x09\xc6\x87\x76\xea\xb9\x89\x89\x4c\x1e\xb2\x7b\x25\x4c\x39\x7e\x93\x9d\x6a\x84\x27\xcb\xf3\xdd\x41\x98\xf5\x49\xa8\xf8\xf0\xbc\xd3\x99\x54\x24\x11\xa7\x7c\xbb\x0c\x63\xad\x89\xa3\x05\x59\xb2\xb7\x4b\x9f\x0a\xff\xf1\x5e\x1d\x83\xed\x86\xf1\x7a\xd9\xd4\x6d\x73\xf4\x11\xd5\xac\x0b\x59\xb2\x52\xa8\x39\xab\xa6\x2c\x4b\x88\x47\x46\x33\x5b\x81\x46\x06\x2e\xd6\x47\x8a\x28\xf5\x87\x2e\xe2\x5b\x31\xe9\x10\x81\x24\x3e\x87\x90\x6f\x07\x55\xa3\x50\x1d\x7c\x8c\xb6\xb0\x20\xb3\x5a\x92\x4c\xb9\xed\x8f\xe2\xea\xd8\x72\xc8\xb0\x5a\x83\x8e\xa8\x3f\xb5\x76\xaa\x4e\xc2\xd4\x2a\x86\x12\xd0\x45\xf0\xb5\xda\xa0\xa8\x5f\xa1\x95\x54\x90\x61\xff\xb8\x54\x3a\x70\xff\x38\xd0\x2d\x11\x1b\xa2\x7d\x2e\xfd\x49\x4a\x7c\xe5\x8c\x8a\x8b\x23\x13\x0f\x0b\x33\xb4\xbb\x3e\x81\xb0\xfa\x07\xaa\x2e\x8c\x16\x38\x84\x4b\x77\x34\x53\x1c\x2b\x58\xf2\x0d\xbd\x00\xe6\xe6\x21\x9d\x56\x7c\xdd\xa6\x0d\xb1\x52\x30\xc0\x09\xdb\xf9\xdd\xd2\x3b\x52\xef\x2a\xc4\x52\x6a\xfb\x9b\x7d\xce\x2a\x22\xe1\x0c\x52\x07\xbe\x2e\x3d\x40\x21\x2a\xd8\x1b\x90\x0d\xab\xf7\xe8\x8f\xf8\x86\x85\x54\x67\x50\x95\xc7\xf0\x8e\x8f\xf0\x76\xbc\xd3\xf0\x8b\x7f\xa1\xbb\x62\xfb\xa6\xc8\x6c\xc7\x47\xd6\x5f\x2d\xfd\x89\xfc\x55\xc5\x31\x9b\xda\x2c\x89\x0a\xd5\x5f\x86\x60\xe2\x8b\x14\xd6\xf2\xb5\xf3\xfb\xc6\x61\x1c\xf6\x4d\x4a\xa7\x1c\xce\xe1\xfb\xaa\x90\x81\x81\x97\x32\xb9\x87\x7d\x25\xc4\x0c\x5c\x1d\xaf\xb3\xaa\x19\x8b\xf0\xf5\xd2\x98\xe5\x2b\xc2\x6f\x96\x9e\x9a\xe7\xcd\x46\xdd\x76\x79\xbe\x3b\x4c\x00\x80\x83\xab\xc9\xe2\x5f\x7c\xe3\x30\xae\x93\x24\x8a\x0a\x57\xa9\xe1\xd6\xfa\xd2\x77\x7d\x5c\x54\x99\x3c\x43\x4c\x3f\x28\x26\xe0\xfc\xfb\x53\xfa\x4b\xd6\xc6\x0f\xbc\x41\x38\x87\x13\x45\xb0\xa2\xe2\x7c\xc6\xc9\x5a\x88\x7c\x3d\xc6\x81\x71\xb7\x7c\xd3\xb0\x6b\x9c\xed\x4d\x8d\xa7\x17\x92\x00\x58\x05\xc3\x2d\x87\xfd\xb3\x5d\xa2\x59\xaf\x3e\xe0\x88\xb1\x94\x2a\xa2\x82\x45\xd9\x55\x33\x36\x24\x0a\x5f\x9d\x72\x42\x75\x5c\x0d\x2c\x5f\x2b\xa2\x8a\x38\xec\xef\xd1\x44\x40\xe7\x14\xa5\xc6\xd1\x5a\x8b\x81\xc3\x56\xff\x8b\x9f\xed\x79\x1a\x8a\xd7\x9f\x9c\x7a\xed\x89\x07\xa5\xc2\x23\xb2\x94\x92\x53\x1e\xae\xa7\xa3\xa4\xa4\x7c\xbb\x16\x20\x17\x71\x0e\x83\xe0\xbc\x4d\x27\x95\x7e\x5e\xcb\x9c\x26\xe9\xd8\xa6\x4f\x55\x4f\x27\x3e\x06\x45\x40\x8e\x7e\xde\x11\x98\xcc\x90\xc7\x2f\x54\xf4\x64\xd0\x1d\x0f\xb9\x72\x7e\xe8\xb1\xf1\xd2\x4c\x77\xcd\x39\x40\x98\x7a\x71\x14\xaa\x77\x10\x91\x7c\xe5\xd2\x7d\x93\x53\x0a\x28\x88\x82\x03\x08\x3e\xf8\x5d\x25\x4f\xc8\x71\x05\x0c\xf7\x97\x71\x38\x60\x61\x5d\x83\x99\xe2\xdf\x6f\x18\xe0\x6a\xea\xb3\x0d\x33\xe1\x1d\xca\x04\xd4\xea\x9b\x4f\x2a\x46\xa5\x41\x38\x89\x92\xb1\xc9\xc3\x7e\x47\xc9\x71\x9d\x56\x3d\xe0\xa7\x95\xd3\x91\xe5\x26\xe5\xb6\x34\xd7\x58\xba\x3c\xef\x1a\x4b\x65\xe3\x13\xdd\x54\x0e\x8a\x2a\x51\xe8\xa3\xf7\xe7\x1b\xe5\xb3\xe7\x05\xc3\xe5\x1d\x77\xb3\x4b\xc8\xc1\x17\x80\x17\xf4\x17\x6e\xfb\x54\x8f\x90\xcd\x29\x9d\x74\xae\x79\x60\xdd\x80\x50\x53\x12\xf5\xbe\xe3\xe3\x04\x0e\x15\x69\x71\x68\x29\xf0\x8e\xcd\xab\x12\x9c\x31\x01\xb9\xd2\x1f\x3f\xd7\x96\xe3\x1a\x17\x51\x1e\x4e\x22\xdd\x2a\x7e\x57\x01\x38\xef\x2a\xee\xd3\xac\x48\xd7\xc3\x75\x49\x56\x38\xed\x89\x6a\x48\x44\x7b\xa2\x8d\xe7\x6b\x14\x46\x96\x9a\x2d\x60\x59\x6f\xab\x40\x6c\x77\xaf\x46\x40\xe0\x70\x81\x4d\x2e\x2e\xf2\xe2\xd3\x30\x19\x84\x7d\x3e\xc6\xd1\x1c\x73\x41\xb5\x5b\x35\xf1\xa9\x87\x9e\xef\x0e\xc2\x7e\x4e\x9d\xf0\xbe\x35\x37\xf0\x2d\xb0\xe7\xd4\x24\xc6\x26\xdb\x89\xaf\xc6\x32\x46\x6e\x1f\xc0\xc2\x9d\x53\x05\x21\x65\xf6\x55\x29\xd0\x54\xaf\xe0\x36\xbf\xe3\xbb\xfa\xed\x4f\xf7\x14\x23\xe4\xdc\xb4\xe5\xd1\x20\x22\x09\x42\x2a\x47\xb0\xe4\x9b\x2e\x2e\x37\xac\xe8\xe2\x62\x37\xb2\x43\x13\x85\xaf\x4a\x60\xcd\x09\x41\xec\x2b\xc9\x0e\xb6\x15\x89\x86\xa9\x59\x99\xf1\x71\xfa\xbb\x78\x05\x38\xc5\xc0\x8e\x4a\x4b\xd0\xa7\xeb\xa2\x86\x66\x35\xb7\xec\xd9\x30\x1a\x36\xf0\xa0\xd9\xf3\xad\xa0\xef\x97\x6d\x96\x59\x9e\x25\x69\x94\x50\x8d\xea\xdf\x68\xbc\xd7\xfe\x85\xee\x86\xc9\x72\xbb\x61\x72\xe6\xc0\x81\x55\xe0\x80\x97\x6f\xbc\x14\xb1\x8d\xb9\x5a\x20\x49\xbd\x8e\x6b\x27\x3f\xab\x8e\x04\x1b\x23\x0d\x6f\x19\x92\x80\xc0\x79\xb6\xe7\x63\xf0\x8f\x4b\xd5\xa9\x7f\x44\xbd\xba\x19\xac\x27\x7d\x56\x5c\xac\xcc\x27\xf2\x9a\x1f\x28\x8c\xda\x07\xaa\xf0\xb9\x5a\xc4\x83\xbd\xb4\x40\x60\x7f\x71\xa8\x21\x01\x7e\xae\xf4\x32\x4e\x27\x74\xa4\x86\x53\x43\xfa\x76\x68\x3a\xf0\x80\x73\xe8\x76\x96\xee\xb7\x6a\xe7\xf0\x75\xa0\x5a\xcc\x84\xc9\x0e\xff\xc4\x6d\xc6\x28\x59\xfd\x71\x2d\xbf\xb8\x5a\x8d\xd6\x93\xd5\xa9\x21\xe9\x67\x7a\x23\x96\x3b\xa2\xaf\xc7\x66\x3c\x8e\x1e\x66\x04\xb6\x77\xa1\x8f\x2c\xa2\x48\x1d\xa7\x41\x74\xa7\x76\xd0\x13\x98\x0f\xde\xcf\x0d\x15\xe5\x42\xef\x82\xff\x7f\xa9\xcc\xd1\x1d\x2d\x16\xc2\x5d\x0d\x2e\x51\xb7\x70\x88\x47\xe0\x2c\x01\xf8\xdc\x4f\xec\x97\x9c\xdd\xb6\x9e\x07\xad\xaf\xc5\x76\x83\xd6\x80\xa8\xcd\x77\x1c\x7d\xf8\x59\xd5\xf9\x34\x08\xb3\x49\x64\x60\xc4\x61\xe0\x81\xcc\xe5\x6b\x45\xf7\x90\x59\x62\x5f\xe5\x0d\xb2\x17\x64\x25\x30\x47\xd7\x31\x64\x7c\x13\x28\xcc\xeb\x1f\x93\x17\xad\xc8\x51\x5e\x74\x45\xbd\xea\x75\xe0\x4e\x5d\x09\xbc\xd0\xfb\x93\x3d\x5f\xb8\xbc\x8e\x18\x5c\xc2\x7f\x8f\xe0\xff\x03\x4c\x34\x7e\xe2\x7b\xd8\xdc\xac\x13\xe4\xd8\xd8\x57\x2b\x07\x96\xe9\x17\x11\x42\x81\x39\x13\xc5\xcd\x37\xf0\x21\x2c\xbb\x6d\xd3\x2d\xfa\x3a\x2f\xbd\xd4\xdd\xbf\xff\xf1\x6a\x49\xb8\x03\xff\xc0\x81\x65\xcf\x7c\xed\x82\x84\x1f\x60\x86\x98\xfd\x1c\x13\x09\xb3\x77\x83\x96\x35\xa6\xe8\xab\xbc\x14\xe1\x30\xdc\x0e\x94\xcf\x7e\x5b\x49\x6e\x5d\xd7\x70\x15\xd0\x70\xc1\xfe\xb0\x27\xe0\xa0\x22\xd5\xbe\x60\xbf\x8c\x16\x85\xd4\x35\x3d\xe4\xaa\xf2\x25\x93\x7c\x73\xc2\xf0\x29\xa6\x79\x09\x7c\x48\x7b\x59\x55\x6d\xb3\x91\x49\x6d\xb6\xaf\x5a\xa9\x78\xde\x8f\xe9\x5b\x59\x45\x2a\x50\x9c\x4b\xa0\xf1\xc4\xab\x73\xe5\x1c\x07\xef\x03\xcc\x14\x9c\xa8\xeb\xc8\x34\xc0\x82\xa0\x52\x09\x83\xbd\x93\xa4\x73\xb0\xd0\x1f\x95\x0a\x19\x8a\xfd\x23\xda\x81\xf4\xb2\xc0\xf6\x5c\x6b\xb8\x3d\x9f\xab\xce\xcb\xcc\x95\x7e\x11\x6e\xdf\xc3\x00\xf1\x4d\x23\x58\x3b\x3c\xbf\xd4\x4d\x8a\x9c\xea\x10\x58\x59\x33\x74\xae\xba\x66\x6f\x97\x41\x84\xda\x29\x8e\xa4\xed\x53\xdf\x14\xb4\x62\xd2\x7e\x64\x36\xd9\x73\x70\xec\x37\x4a\xe0\x55\xc1\xe1\x37\xd3\x62\x02\xa1\x01\x4e\x1d\x2b\x16\xac\xff\x0b\x38\x55\xcc\xeb\x39\xe7\x4a\xf5\x53\x33\x1e\x0b\x71\x27\x3e\x75\x14\xa3\xc8\x37\xa5\x0a\x90\xd3\x22\xda\x9c\xf1\x4d\x48\x8f\x94\xfc\xc2\x25\x6d\x34\x2f\xb6\x81\xfd\xf3\x64\x30\x50\xac\xf3\xec\x75\x8b\xaf\xa2\x2b\x37\x9b\xd6\xce\x79\x40\xdf\xbb\xa5\x82\x88\x9e\xd0\xa5\x9b\x2f\x97\x4a\x3e\xed\x94\x86\x57\x3e\x6a\xb0\xb9\x1d\x9e\x5f\xe8\xae\x14\xf1\xc0\x66\x2b\x26\x5e\x43\xfe\x8c\x43\x01\xf6\x96\x25\x30\x70\xd2\xc6\x36\xb3\xa9\x15\x2d\x6a\x89\x86\x55\x94\xac\x21\x56\x1f\x3b\xc8\xc2\x24\x4d\x26\x36\x9a\x53\x4d\x3b\x8c\xd1\x76\xf0\x33\x57\x14\x64\x39\x34\xc1\xf8\x7b\x61\x9d\xbd\xbd\x16\xf8\x79\xdf\xa4\xc3\x30\x42\xea\x09\x6b\xe9\xa3\x52\xa5\x01\x3f\x72\x24\x33\x44\x51\x6f\x87\x61\x96\xcf\xf8\x9c\xd3\x39\xd5\x79\x72\x57\x79\x15\x9a\x5d\xac\x18\xc7\x3b\x94\x28\xe1\xdb\xb4\x3c\x91\x27\x79\x57\x9d\x46\xcc\x64\x8f\x0d\xc4\xc9\x1a\x0d\x79\x44\x54\xbf\xaf\xc1\x9b\x78\x78\xfe\xc5\x6e\x18\xdb\x57\x92\xd4\xac\x88\x16\x14\x7c\x38\xd4\x1d\xf9\xba\x0d\x83\x36\x0e\xa3\x88\x53\x33\xa2\x3a\x50\x13\x10\x6f\x51\x5b\x2d\xe2\xd5\x34\xb4\x31\xe9\x80\x3b\xc0\x3e\x1a\x44\xf8\x7a\xea\x03\x38\xfb\x8a\x4b\x28\x01\xfc\x83\xae\x01\xbe\x76\x49\xaf\x8d\x30\x1e\x64\xa3\xd0\x46\x03\x25\xee\xf2\x5d\x25\xee\xf2\xdd\xad\x9a\xac\x2f\x2c\x75\x97\x9e\x3f\x48\x4f\xfe\x88\x0e\x9b\x47\x57\x5c\x55\xde\x71\x41\x91\xbe\x06\x1c\xd8\x9f\x40\xdb\x06\x4e\xaa\x9b\xa5\xa2\x57\xbc\x5c\x6a\x14\x61\xc7\x49\x98\xec\x9d\x6a\xee\x55\x48\x00\x48\x76\x06\x06\xef\x2d\x15\x68\xbc\xa5\x92\x63\xf9\x28\x49\x49\xa2\x54\x69\x03\x63\x26\x70\x5c\xdc\xaf\x41\x54\xb6\xce\xca\xa1\xe7\xbb\xe3\x30\x2e\x32\x5a\x63\x70\xbc\xc0\x4b\x85\x1a\xeb\x9f\x28\xcd\xa8\x6d\xbd\xad\xe6\xe0\xa5\x97\xba\xab\x61\x3a\x56\x9e\xe2\x75\xe5\x29\x5e\x57\xf9\x80\xff\xe4\x17\xff\xfe\x8c\x0f\xf3\x50\x16\x40\xc6\x83\x59\x78\xa4\x5b\x48\x91\x8b\x26\x66\x00\x95\x7f\x81\xba\x5f\xd7\xad\x61\x1f\x94\x3e\x84\xbb\x0d\xf3\x8d\x02\xc5\x1b\x2e\x5f\x13\xc6\x14\xd1\x13\xa3\x9c\xb0\x47\xc0\x89\x42\xae\xef\x3b\x81\x02\xec\x7c\x84\xed\xa0\xba\x5a\x0f\xba\xb6\xfb\xad\x28\x8f\xcf\x75\x6d\x9c\xa7\x76\x92\xda\xd8\x16\x29\xe2\x8b\x1a\x37\xbc\xb0\xb9\x7f\x62\x2d\x3c\x49\x33\xbb\xab\xf3\x6b\x72\x14\xbc\x55\x12\x37\xbe\xa3\x1c\x77\xa4\x52\x77\xe0\x38\xa0\xe0\xf3\x14\x58\x7e\x60\x09\xb6\xf7\x3a\xbf\xfe\x79\x0f\xba\x78\x41\x08\x89\xd9\xce\x62\x9d\xcc\x4c\xfd\x58\x64\x45\x14\xc6\x99\x2e\x6a\xe3\x59\xa5\xc2\xed\x00\x29\xc5\x64\x12\x85\x24\x56\x5a\xfd\x33\x0b\x57\x06\x8a\x0c\xbf\x19\x18\x2f\x2e\x76\xfb\x23\x6b\x26\x1d\xcf\x4b\x8e\xba\xb0\x00\x07\xbc\x5b\xb9\x99\x14\xe9\x63\x95\x7b\x80\x95\xca\x18\x0c\x26\xc1\xac\x37\xe2\x57\x33\x85\x35\xfc\x18\x78\x37\x98\x74\x1b\xbe\x02\xf3\xbb\x91\x83\x2c\xa2\x91\x2a\xeb\xfb\x07\xe4\x13\x02\x19\xb4\x4f\xb1\x3e\x3d\xd4\x5c\xf1\x1f\x2b\x61\x52\xa8\x16\x49\x69\xae\x4d\x9b\x97\xc0\xd3\x76\x46\x31\xc5\xde\x56\x94\x67\x70\xc9\x85\x4f\x74\x8f\x07\x6d\xee\xf0\x5d\x3f\x27\x31\xe4\xf0\x4d\xb8\x4b\x19\x96\xf9\x8e\xaa\x89\x20\xad\x82\xf5\xaa\xb5\x47\xbe\xd3\x08\x06\xf7\xef\xef\x5a\x93\x85\x55\x4c\x77\xd8\x2f\x1f\x5a\x32\xa2\xb3\xa8\xf2\x60\x61\x2e\x81\x9a\x56\x42\x66\x94\x36\xfd\x3e\x17\x34\x35\xf1\x63\x64\xad\xa3\x4b\x40\x9c\x08\x77\x84\xaf\x55\xf7\xb9\xa7\x14\xf3\x3b\x9d\x5f\x98\x6f\x94\x41\xd8\xbf\xcc\xb5\x2c\x34\x69\xcf\x4e\x55\x35\x1f\x79\x01\x38\xa8\xc7\x54\x9f\x4f\xdf\x46\x11\x90\x69\x2c\x8c\x0d\x47\x58\x08\x96\x69\x89\x08\x59\x63\x47\x69\x07\x09\x17\x9b\x99\xe4\x3b\x1b\xca\x9c\x0b\x3e\x14\xf6\x7c\x5a\xc8\xea\x32\xbc\xa9\xa7\x59\xff\x6b\xd2\x00\xf4\x02\x88\xda\x8e\x29\xa4\x52\x56\xa4\x36\x82\xec\x2b\x42\xaf\xdf\xc6\x94\x68\x29\x13\xfe\x07\x60\x24\x44\xd7\xc4\xbb\xd4\xab\x61\x14\x59\xe6\xe5\xc5\x40\x9c\x2a\x1b\x4d\x09\x88\x8a\xee\x29\xde\xdf\x95\x34\x19\x47\x96\x0f\x65\x4d\x10\x29\xac\x04\x7b\x79\x01\x75\x17\x17\x97\xfe\x7f\xf4\x2e\x70\x9a\x1f\xef\x79\x34\xd8\x35\x84\xa9\x30\x27\x8f\xe8\x00\xc0\xf6\xfc\x6f\xb0\x3d\xb1\x5d\xb6\x4f\x7d\xe3\xf3\xee\x1f\x9d\x52\xa2\x14\x4e\x3e\xd8\xb9\x58\x27\x85\x4e\x6a\x27\x1b\x5b\x8d\x02\xf7\xd5\x13\x96\x1f\xf9\x0a\xe6\x4f\xa1\x85\x68\x7f\x42\xb3\x7e\xcd\x52\x25\x58\x18\x46\x3b\x8e\x88\x79\xdb\x54\x09\xb2\xbe\xa3\x34\x60\x9f\x9a\x56\x96\x10\x1f\xfe\x77\x14\x85\x90\xc3\xf9\x0f\x9e\xa2\x74\xb2\x48\xb7\xd1\xa0\xc3\x34\xed\x99\x56\x66\x14\xd6\xe0\x6d\x66\x99\x42\x3e\xf9\x1d\xea\x63\x96\xc3\xa6\x1a\xd1\x47\x0f\x40\x06\x8d\x68\xf0\xba\x4a\x16\x5c\xf9\xc9\x5e\x15\x50\x63\x25\x3e\x62\x4f\x14\xf8\x96\xc7\x51\xef\x83\x57\x74\x55\xed\x2c\xb3\x92\xa4\xd5\x76\xd9\xd1\x71\x24\x9f\xec\x85\xe1\x1c\x03\x67\x8a\xb0\xea\xd0\xc8\xe3\x4c\x38\x56\x7a\x84\xfc\x36\xe4\x98\xf9\xaf\x82\xbd\x9e\x85\x20\xfe\x71\x7a\xd6\x9a\x57\x0d\x97\x6e\x7b\x4f\xd9\x9d\x07\xf4\x2b\x58\xdd\xf7\xb1\x1a\x59\x6b\x33\xe8\xfc\xca\x6f\x70\xda\xed\x7e\xa9\x0b\x7b\xc7\x02\x0c\x93\x63\xa8\xf2\x09\x87\xdf\x0e\x14\x4f\xe5\x4e\x82\xcb\xe0\x28\xfc\x93\xd2\x43\x64\xce\x61\x1d\xc0\x52\x9e\x44\xf6\x1c\xab\xf0\x1a\xf6\x20\xc6\xf7\xa6\x6a\x6c\xdb\x33\xf5\xc1\xfe\x09\xd5\x25\x34\xd7\xab\x56\x11\x4c\xc8\x51\xa5\x60\x78\xa3\x54\xa4\x1a\x0f\x81\xb8\xc5\xa7\x1f\x60\x07\xb3\x0a\x0d\x19\x57\xc0\x2c\x8f\x07\x9e\x86\xec\x96\x07\x4e\xda\x68\x18\x42\x86\x56\xca\xee\xe8\x71\xe2\xeb\xb6\x6a\xb7\x5d\xb7\xb1\x22\xec\xfd\x87\xf4\x1e\x7c\xad\xdc\xf4\x6c\x14\xee\x50\xfe\x0c\xa4\x1f\x51\xde\x7e\x0b\xd3\x85\x78\x9d\x01\xea\xf8\x41\xc4\x9d\xda\x7d\x84\x2d\x7a\xbd\xd1\x90\xf0\x0b\xc4\x18\x13\xd9\x01\xe7\x66\x5a\x19\xc3\x35\x7c\x61\xdd\x46\x8f\xab\xfa\xea\x3f\x2f\x15\xf1\xf1\x95\x3a\x67\x1a\x0d\xae\x14\x73\x14\x9b\x0f\x77\x05\xe0\x5d\xf7\xf4\xbc\x62\xf4\xbf\xc0\x0b\xb9\x2e\x45\x07\x04\x07\xb8\x52\xb2\x28\xd5\xbb\xb9\x0e\x88\x85\x43\x52\x01\x0c\xbc\xfa\xc6\x05\x54\x64\xb8\xfa\xdd\x2a\x79\x9b\xa7\xd6\xe4\x9b\x73\xaa\x8b\xa7\x54\xe4\x46\xe0\x4e\xc0\x0e\xbf\x4d\x0f\x82\x1a\x13\x67\x0d\x84\x5c\xad\xed\xf8\x37\x69\x7f\x24\x21\x36\xab\xc6\x93\xcb\x20\x0a\xf2\x4d\x2c\x70\xd7\x4c\x48\x03\x57\x91\xdc\x20\x65\xc0\x1c\x1d\x7c\xd3\xc8\x51\x90\x94\x64\x1a\x4e\xf8\x33\x6c\x3e\x95\x4e\x8e\xd6\xf7\xce\xed\x78\x12\x59\x4d\x71\x7c\x57\x27\x83\xef\xaa\xe3\xc1\xbe\x02\x1f\x40\xfb\x80\x1d\xc7\x8d\x79\x46\x89\xb1\xdc\x73\x81\x30\xa9\xc8\xf2\x49\xe4\x6a\x76\x8b\x8b\x1c\xbb\xdf\x57\x5d\xf8\xa7\xda\x40\x6d\x63\x13\x17\xab\xa6\x9f\x17\x9e\x62\x46\xfa\x47\x3d\xc8\xf4\xaf\x54\xaf\xea\xc4\xa4\x26\x8a\x6c\x94\xc1\x6b\xc7\x69\x71\xbc\x54\x28\xd6\xe3\x30\xbc\xc0\x6a\x5c\x0b\x1a\x69\xf0\x83\x2e\x97\xa1\xf5\x0f\xfb\x16\x5d\xe2\x02\xaa\xa6\x95\x2a\x68\x6b\xff\x87\xf9\xc8\xe4\x3f\x4d\xbf\x2c\x04\xe7\x9a\x51\x52\xd5\xbe\x6e\x96\x5b\xb8\x2d\x0f\x72\xa1\x69\x67\x8d\xcf\x72\x0b\x15\xa7\xcb\x4e\xef\xeb\x6d\x25\xd0\x14\x8d\x58\x02\x51\x2e\x3d\x7a\x14\x28\x74\xcf\xb6\x9e\x4b\xd3\x25\x9f\x9a\xd6\xe9\x2b\x9d\xa1\x39\x51\xd6\x48\x40\x69\xa3\xe0\x54\x7c\x9b\x98\x3b\xb1\x69\xd0\x84\x8e\x0a\xe1\xb6\x5e\x8d\xf0\x52\xd5\xa1\x1f\xd6\x99\x42\x5f\x70\xdc\xd3\x28\xd8\x22\x50\xdc\x3e\xd5\x34\x9c\x35\x9a\xd1\xe5\x25\xc9\xf2\x05\x5e\x0d\xe4\x08\xe8\xf8\xe8\x91\x9e\x78\xaa\xb7\xd5\x62\xfd\x72\x77\x14\x66\x13\x13\x87\x7d\x01\x92\x70\x43\x3b\x32\x88\xd2\xdd\xfe\x84\x2e\x9f\x88\x88\x2d\xf6\xed\x31\xa5\x82\x7a\xac\x01\x10\x7c\xe9\xa5\xae\xad\x1c\xd9\x4f\x6a\x48\xf2\x9d\x6c\x26\xcf\x2d\xd1\x0e\x7a\x5f\x13\x4e\x2f\x5f\xb7\x24\x08\xbb\x69\x38\xb1\xb3\x3e\x10\x7e\xb3\xf4\x85\xd4\xfb\x78\x01\x24\x88\xce\xe9\x34\xd2\x71\x97\x45\xb0\x51\xf8\xaa\x59\xb1\xf9\xa8\xa3\xe8\xa6\xce\x2a\xd2\x83\xb3\x8a\x69\x3f\xb7\x91\x9d\x8c\x92\xd8\x92\xef\x20\x32\x08\xd5\xbc\xa2\xa8\x7d\x9f\x3a\x54\xf8\x1a\x6b\x93\x29\xa7\x21\xd4\xa0\xb3\x60\x78\xdc\x6f\x34\x42\x8b\xca\x7a\xe5\xb9\xe9\x8f\xe0\x4c\x4a\x38\xa1\x73\x09\x5b\x3f\xb2\x70\xa8\x9b\xad\x85\x0e\x4b\xe4\xfa\xe7\x7d\x34\x1b\xf8\xc5\x73\xd2\x93\x38\x8c\x92\x34\xb7\xe9\x1c\xad\x45\x1a\xa4\x2f\xff\x24\x25\x08\x44\x7a\x4d\xe5\xab\x1f\x29\xd5\xce\x99\xa9\x17\x45\xbe\xa8\x1c\xab\x81\x9d\x14\xd4\x25\x81\x45\xc4\x8c\x43\x1a\x7e\x3b\xd7\x53\xb9\xc8\xce\xf4\xe9\x06\xb8\xfa\x60\xf7\x73\xb3\x8a\xba\xf7\x5c\xa0\x2b\xa2\xef\xc3\xc9\xe1\x22\x3b\xd6\x10\x12\xd7\x5f\x69\x2c\x8c\x03\x07\xba\x5e\x10\x44\x87\xf7\x35\xa6\x48\xe1\x01\xf4\xa1\x4e\x96\xdb\x09\x00\xa7\x88\x15\x11\x06\x3a\x44\x8c\x73\xfe\xdf\x57\x25\xb5\xf5\x24\x2a\x26\x79\x91\x14\x19\x31\xfb\x61\x1b\xdc\xa1\xbd\xc8\xd7\x2a\xfe\x4a\xe2\xc1\x63\x64\x60\x04\x48\xe6\xf9\x5b\x5e\xaf\x26\xf9\xe1\x3f\xfc\xf1\x5e\x65\x02\x70\x4c\x1c\x21\x5c\x8d\x30\x25\x78\xac\x2e\x50\xe1\x38\xfc\x6f\x07\x9a\xd1\xe2\x9e\xaa\xb6\x9c\x08\x54\xf4\xce\x15\x41\x29\x2e\x7b\xdd\xf7\xc7\x77\x4c\x3b\xbf\x76\x90\xbf\xec\xa1\x1a\x8b\x15\x93\x02\x2d\xfc\x6c\xab\x1e\x8f\x1f\x80\x41\x98\xf5\xa3\xa4\x8a\xbe\xa8\x1a\xae\x8d\x91\x48\x49\xd3\x83\x08\x1f\x15\xcd\x30\xdf\x28\x58\xd8\xd8\x8c\x4c\x3e\x0a\xd3\x4e\xf5\xce\x70\x86\xce\x69\xb0\xd9\xb9\xda\x89\x6a\xd3\x09\xce\x76\x61\x9b\x3a\x81\x68\x86\x6f\xda\x3d\x89\x7e\xbf\x60\x29\x78\xd8\x77\x46\x8d\x23\xe4\xba\x47\x16\x1a\x2b\xef\x94\xaa\x34\x66\x10\x1a\x9f\xad\xf3\x59\xb8\x9c\xe3\xb7\x94\x14\xdb\xb7\xf0\xbc\x32\x61\x4f\x8b\x91\x19\xaf\x98\x34\x35\x59\xe6\x7a\x9a\x70\x8a\x00\x42\xc1\xd7\x0d\x8c\x1f\x9a\xe9\xd3\x28\xa4\x26\x7c\x5a\x94\x2c\xbc\x81\xa9\x64\xe8\x89\x52\x11\x6e\xb6\xc6\x1f\x9e\x7f\xb1\xbb\x6e\xd3\xcd\x59\x8f\x03\x01\x0d\x82\x74\x6c\x7a\x0c\xd7\x71\x1c\x63\xf0\x0c\xb4\x7a\xe5\x2f\xfe\x87\xff\x11\x19\x64\xc1\x07\x2a\x50\xe4\xd7\x7c\xd5\xce\xac\x27\x69\xbd\xaf\xf1\x2e\x0c\x08\xce\x8f\xef\xd3\xab\x2a\x47\x76\x41\x4e\x52\xb5\xe2\x36\x4c\x98\x73\x13\xa5\xe4\x03\x14\x55\xf8\xc5\xb6\x3c\xf5\x24\xc9\xc2\x9c\x4a\xe1\x70\x10\x55\x27\xaa\x7b\xc9\x16\x21\xc5\x83\xae\x65\xd3\xe7\x10\x99\x4e\x4d\x42\x14\x9f\x14\x60\xbc\xa4\xf2\x23\x8f\x06\xca\x8f\x3c\xda\x4a\x82\x18\xc6\x59\x98\xe5\x94\x8c\x90\x16\x1a\xfa\x7a\x25\x35\x7e\x50\x77\xb5\xfb\xee\x1a\x49\x1d\xc6\x36\xdf\x48\xd2\xb5\x6c\x46\x71\x73\x9f\xd5\x79\x9d\x3d\x34\x93\x80\x96\xce\x2a\xe5\xd8\x95\x70\x30\xb0\xa9\xf6\x61\x99\xa7\x8a\x6f\xca\xdd\x61\x77\x92\xda\xd5\x5f\xea\x6e\xfc\x14\xcd\x39\x6c\xd1\x75\x78\x3e\x8e\x8b\x6e\x79\x5e\x12\x43\xa7\xd0\xc9\x82\x8f\x33\x94\x03\xbe\xeb\x3d\x8a\xde\x60\xbf\x3a\x80\x92\xc0\xdc\x74\x28\x42\x14\x04\xba\xea\xdb\x45\xa8\x02\xbb\xcd\xfd\x5e\x38\x0a\x59\xb4\x1d\xf6\xf5\x81\x46\x04\xfc\x07\xdc\x62\x03\x63\xf2\x13\x53\x8f\xfc\x3b\x49\xbc\xe3\x64\xd2\x1e\x7c\x5a\x85\xbd\x0f\xc9\x54\x23\xdb\xbc\xb7\xe7\xe9\xd3\xd1\x1d\xea\xce\x64\xcf\x29\xb5\xbb\xa7\x58\x85\x7e\xa2\xe7\xd1\x6d\x1f\x97\x95\xaf\x05\x9f\xf7\x51\xa9\x90\xd8\xa7\x14\xcd\xe8\x1f\x23\x8d\x4c\xe3\xf3\xff\x7f\x8a\x12\xc4\x52\x99\x79\x52\xe9\x03\xbd\xb2\x61\xa3\x68\xc6\xc3\x7a\xe1\x44\x22\x63\x7c\x8c\x9e\x0c\xc1\xd9\xf5\x06\x5f\xc5\xc2\xa1\xee\x46\x18\xc7\xc9\x86\xc0\x63\x34\x7b\x0c\x5f\x2b\x3c\x93\x9d\x84\x91\x9d\x64\x9b\x5a\x77\x93\x85\xed\xf8\xa6\x8d\x43\x23\xb6\x1b\x12\x70\x48\x6f\x03\xcd\x95\xe8\x4f\xf8\xc6\xde\xb3\x6e\x8d\x4e\xd2\xe4\x65\xdb\xcf\xb3\x9a\x92\x95\x06\x93\x75\x78\xee\x44\x16\xcd\xa7\x45\x37\x4c\x24\x88\x2e\x4c\xd4\x65\x4d\x1c\x7c\x59\xa1\x5a\xb3\x3c\xe9\xaf\x01\x50\x8f\xe2\x31\x56\x0f\x2b\x32\xf3\x4d\xad\x04\x9a\x15\xf6\x71\xd5\x09\xc3\x25\x59\xe9\xe1\x53\x66\x9e\xbc\x64\x61\xd6\xa0\xf5\x00\xef\xe9\x0c\x8c\x21\x5c\xbc\x93\xd8\xb9\x2e\x0d\xe2\x54\x40\x3a\x68\x2b\x94\xb2\xb2\xae\x31\x2b\xa8\x23\x9a\x9c\x30\xf0\x77\x41\x97\x89\x81\xba\x8b\x84\x1f\xdc\xad\x53\xae\x10\x60\xc6\x36\x0d\xfb\x26\x36\x18\x1c\x9c\xeb\x2c\x13\xcd\x37\x9a\x89\x7e\x14\xc6\x6b\x7b\xab\x05\x2b\x73\x43\x7f\xc8\xc2\xba\x81\x27\xc3\x44\xd7\x11\x1e\xfc\x9b\x2a\x22\x62\xb0\x06\x0e\x81\xf3\x8a\x96\x7f\x1b\x77\xb8\x3a\x8d\xde\x25\xb7\x2b\xce\x52\x92\xca\xe1\x7d\x1d\xb7\xde\x91\xd2\xf7\x8a\x0d\x13\x13\x75\xf4\x57\xd3\xb8\xcb\xcf\xec\x96\x44\xcf\x9a\x6e\x57\xfe\xef\xe9\xbb\xf8\xba\x2e\x22\x3c\x4e\x72\xab\xdb\x55\xef\x2b\x00\xf0\xfd\xc6\x72\x3e\x70\xa0\xfb\xb2\xdd\xb0\xe8\x89\x41\x31\x02\xe8\x38\xbe\x6e\x55\x84\xcd\x46\xc4\x6a\xc6\x8b\x92\xf7\x40\x50\x6b\xf6\xf1\xfc\x16\xe3\x24\x1e\x98\xcd\x3d\x5a\x91\x1b\xab\x0c\xd9\xef\x1b\xd8\x6e\x4e\x2b\xdf\x1d\xb3\x0f\x39\x34\xc5\x37\x7e\x1f\x09\x33\xf8\x89\xdb\x15\xd4\xf4\x3a\x59\x30\x54\xc0\xff\x46\xf5\xb4\xbf\x89\xe9\xc5\x2a\xdd\xd5\xd0\x3c\x23\xf1\x8c\x3e\x21\x6f\x05\x69\xc1\x00\x59\x25\xbd\x7c\xb1\xf1\xf6\x07\x0e\x74\xc3\x78\xdd\xc6\x40\x19\xbb\xda\xec\x39\x55\x9b\x3d\xa7\x2a\x0e\x83\xd4\x82\xf3\x7d\xc6\x23\x18\x10\x63\x70\x77\x7e\xbd\x23\xbf\x45\xb0\x6f\x35\x49\x87\x56\x72\x33\x4a\x26\xf9\xa0\x13\x56\xf6\x2b\xfc\x65\xf3\xea\xab\x9b\x10\xc0\xd2\x09\x38\x39\x48\xb7\x26\x3f\xa4\xd6\xd7\x2f\xd2\xea\x31\xf1\x3e\xe2\x41\x68\x77\xc2\x61\x56\x37\x46\x2e\xe5\xe3\xf4\xc6\x3c\xe1\xe1\x05\xfd\xe2\x61\xd6\x2f\x32\x6a\x6b\xad\x16\xb6\xb8\xd9\xd5\xf4\x88\x49\xd7\xac\x21\x43\xa3\x58\x43\xee\x2a\xd6\x90\xbb\xea\xcf\xf2\xcd\x35\xab\xc7\xe1\x5b\x78\x48\xbe\x69\xb4\x97\x7d\xae\x9b\xda\xf5\x24\xca\xc3\x78\xc8\x3c\x2c\x0c\x1a\x09\x94\xc1\xbb\xa8\x00\xfb\x26\xcb\x2c\x93\xda\xd2\x5a\xc3\x92\xc4\xd3\xf0\xb5\x23\xeb\x32\x43\x1b\x0f\xcc\x8c\x12\x26\x3b\x4a\x63\x8d\xea\x07\xa6\x58\x92\x7b\x5b\x9d\xaa\xfd\x0b\xae\x37\x80\xde\x1a\xeb\x75\x4e\x09\x99\xcc\xb5\x60\x1a\x16\x85\x53\x84\xe5\xaa\xa4\xdd\x6d\xaa\x99\xb3\xce\x29\x4c\xd5\xa5\xe0\x29\x1d\x05\xf4\xd1\x18\xf0\x82\xe3\xc8\x3b\x4d\xb3\xc1\xd7\xad\xed\x1f\x26\x85\x0c\x36\xbc\x7e\xac\x71\xbe\x2e\x5b\xfa\x7d\x0f\x1c\x38\x38\x8b\x2d\xeb\x62\x12\xef\x82\xc1\x0a\x21\x29\x0e\xd1\x3c\x21\x9a\x6f\x8b\x3f\x8a\xd4\x37\xdd\xbb\x9a\x9e\x1b\xaa\x56\x2a\x99\xd4\xfe\x66\x11\xa6\x9e\x0c\x01\xc7\xc8\x47\xf4\x31\xbe\x6e\x23\x75\xc8\x93\x62\x38\x92\xe3\xd2\xf1\x20\x54\x5b\x48\x78\x10\x1a\x44\x3a\xcb\x4b\x3f\xd7\xed\x9b\xd4\xda\x14\xf6\xcf\xf5\xdf\xf8\x5e\x1c\xa7\xe4\xd0\x37\x29\x96\xb6\x28\x3e\x29\x82\x94\xb3\x0a\xd9\xdf\x4f\xc6\x2b\x26\xc7\xde\x85\xc3\x78\x42\x49\x5b\x9e\xa8\xc3\x39\xc3\x18\xf1\x83\xa0\x90\x34\xb8\xec\x7d\x2d\x42\xf0\xe5\x1a\x42\xf4\xaa\xea\xc5\x5a\x31\xe9\x4a\xf5\x68\x5a\x72\xea\x8c\xe6\x9b\x3d\xa3\x42\xf1\xbe\xc9\xe6\x54\x45\x66\x6e\xea\xf9\xaa\x45\xca\x07\x51\xdd\xde\x9e\x02\xe9\x7c\xa8\x36\xc4\x87\x2a\x48\x18\x99\xf5\x30\x1e\xee\x51\x29\x8a\x2e\x60\x03\xf8\xf6\x2b\x14\x0e\x2b\xb0\x97\xe4\xb2\x77\x4e\xe9\x5c\xc5\x99\x77\x1c\x73\x24\xb4\xdd\xf5\x79\x70\x94\x4b\xbf\xad\xb4\x12\x6e\x28\x3a\xd3\x63\x6d\x30\xf8\x22\x0e\x23\xbb\x6e\x59\x57\x56\xc8\xeb\xbc\x01\x3d\xad\x02\xf9\x49\x98\xe7\xd9\x4a\x91\x02\xd4\xf2\xa2\xab\xdb\x55\x7f\x8d\x94\xed\xf7\x30\x98\x42\x13\x52\x57\x0e\xb7\x4f\xd0\x3f\x22\x9d\xfa\xd7\xe4\x5a\x21\x43\xba\xa4\xe4\xf8\xb6\x93\x41\xc0\x09\x7f\x4f\x77\x88\x2d\xa1\x5c\x04\xff\x82\xb3\xb0\xd8\x18\xff\x73\x0d\x86\x79\x51\xc7\x76\xa7\x29\x00\x40\x52\xef\x74\xa0\x00\x88\xc7\x4a\x95\xf3\x86\xcb\x87\xca\x1d\xf0\x46\x2e\xe4\xf0\xe5\xb9\xd3\x8d\x2d\x4b\x5b\x22\x0a\xd7\x2d\xbb\xb7\xa8\x71\x7f\x4c\x83\xe7\x1a\x55\xaa\x37\x96\xa0\xf3\xd3\x4a\x3b\x6d\xa5\x08\x23\x21\xd2\x5c\xd4\x74\xa3\x0b\x72\xa3\x84\x21\x48\x6a\x2d\xda\xe1\x53\x46\xa0\xd2\xd0\xbd\x2d\x8e\x57\xb8\x72\x52\xb1\x4a\xd1\xf5\xc6\x1f\x08\x94\xf2\xd6\xe5\x46\xab\x55\x15\x91\x16\x13\xe2\x84\x87\x19\x7d\x9c\x38\xb6\x71\xc2\x75\x7a\xaa\x30\x88\x34\x13\x4e\x33\x54\x26\x70\x12\xed\xee\x29\xd5\x85\x88\x98\xd6\x77\x29\xe4\x0e\x07\xa6\xa2\x1a\xe1\x31\xcb\xd0\x4b\x40\x00\x75\xa5\x4e\x7d\x49\x93\x2f\xf5\x25\x5f\x11\x84\x05\x47\xb6\xfa\xc9\x5e\x8b\x67\xd7\x4f\x8a\x09\x17\x5e\x74\x66\x4e\xaa\x56\x72\x98\xf5\x69\xdd\xcf\xa9\x30\x18\xa0\x5d\x0c\xde\x53\xbd\x7a\xef\xd5\xf2\x3c\xef\xc1\xab\x98\x24\x60\xe3\xce\xa8\x83\x74\x92\x64\x99\xcd\xb2\x90\x73\xd9\x58\x9b\x77\x15\x28\xe3\x6e\xf9\x19\xf7\xc7\x61\x3c\x4a\xb2\x49\xc8\xc4\x64\xda\x09\xfd\xd5\x17\x9c\x13\xfa\x19\xd5\x2b\x15\xe7\xa4\xd5\x16\x72\x1f\xb7\x20\x37\x3a\x8e\xb9\xf9\x64\xc3\x6b\x7b\x6e\xb1\x9b\xda\x0c\x67\xa7\xea\x3f\x64\x99\x26\xbe\xa9\x11\x29\x0f\x4c\x4d\x01\xa1\x1a\x67\x01\x08\xeb\xad\x1c\xc6\xd9\xd3\xf4\x1d\x18\x11\xc9\x30\x62\xff\x5d\x57\x5d\x90\xbb\xa7\x35\x88\x9d\x12\xe9\xf9\x80\xbe\x1c\xf6\xee\xbb\xa5\x27\xe6\xe0\x7e\x13\x69\xed\xa2\x85\x87\x27\x3d\xad\x7b\xb0\xae\x31\x24\xc0\x71\x71\x57\x4b\x85\xa5\x6d\x03\xd7\xba\xf6\xde\x7d\x82\x1a\xe0\x34\x79\x03\x26\x43\x88\x76\xab\xe5\x0d\x57\xfc\x16\x55\x61\x70\x46\xff\x3e\x4a\xed\xfc\x8b\x4a\xf4\x7a\x27\x12\x00\x08\x05\xff\x55\x9b\x2c\xf1\xc0\xc6\xa1\xf8\xd4\x4a\x2b\x7e\x41\x6e\x6a\xd4\xf8\x71\x96\xa4\x79\x58\x8c\xe7\xfc\xd4\xdf\xc2\xcb\x8a\x22\x06\x3d\x87\x48\x62\x74\x1c\x41\xe1\x2c\x96\x25\x76\xc2\xf5\xf2\x67\x3e\xc1\xb9\xcd\x72\x93\xdb\x6c\xc3\x66\xf9\xac\x82\x39\x60\x1f\x08\x59\x74\x35\xe8\x78\xb9\x13\x9a\xe6\xa5\xd3\x53\x31\x78\x1a\x32\x7e\x52\x54\x37\xe9\x8d\xc4\x8a\x74\x9e\x5b\x7c\x74\x45\x0b\x24\xe2\x07\x70\xee\x7e\x1c\xe8\x86\x1a\x82\x42\x26\x45\x8e\xd2\x3a\x77\x8b\xa8\xb2\xc3\x1c\x42\x65\x38\x77\x8c\x4d\xe7\x1b\x0d\xc3\x45\x0f\x15\xd6\xc0\xde\xde\xe3\x0e\x38\x3a\xb0\xd4\xec\xe2\x29\xff\x4f\x2a\x94\xc2\x07\x78\x6a\x61\x51\x6d\x09\x37\x36\xc2\x38\x76\x81\x9d\x34\x21\x79\x7c\xfb\x65\xb5\x13\x93\x7e\xdf\x64\x61\x12\x43\x9b\xd4\xc9\x90\x01\xac\xcd\xd7\x6d\x72\x1e\xab\x61\x4c\x32\xba\x1d\xb5\x26\x6e\x96\x6a\xb5\xdc\x6c\xef\xd0\xcf\xf0\x2b\xd8\x29\x0f\x14\x24\xfc\x41\x5b\x37\x7c\xdf\xc6\x88\x50\x3d\x98\xe2\x72\x0d\xe6\xaa\xb6\x7b\x9e\xc4\x9b\x3a\x69\xf9\x4f\x75\xf1\xfb\x9f\xb6\x51\x74\xf7\xcd\x78\x62\x4d\xa1\x88\x24\x76\xeb\x5e\xaf\xdd\xd3\xad\x0e\xaa\x2c\xc7\xd8\x66\x39\xdb\x39\x69\x14\x52\x7e\xc2\x99\xc0\x7b\x68\xa9\x09\xa3\xbe\x49\xd9\x43\xc3\xaa\x7a\x5d\x67\x27\x5f\x57\x92\x1e\x2b\x49\xb2\x16\xc6\x43\x00\xdb\x30\x2a\xe7\x14\x61\xf2\xb9\xc6\x36\x3d\xf4\x7c\x37\x1c\x4f\x92\x34\xa7\xb4\x2e\x0e\x31\x50\xc5\xf1\xb5\x27\xe2\x8b\x33\x55\x1a\x47\x89\x10\x1a\x54\x7c\xad\xf0\x6f\x1b\x61\x9e\x6f\x76\x3a\x9f\xfd\xac\xb4\xf7\xe3\x18\x93\x5e\xff\x26\x8d\xf6\xb3\x28\x91\x86\xa2\x62\xed\x08\xfd\xab\xd7\xe4\x1b\x87\x96\x35\x7d\xf2\xf0\xd9\xeb\xc6\x9b\x1d\x53\x82\xe3\xc7\xda\x14\x7c\x52\xbb\x6e\xe3\x42\xbe\xdf\xf1\xb0\x55\xdf\xc0\x37\x81\x0e\xd7\x8b\x61\x75\x4c\xd8\x19\xb2\x15\x32\xce\xde\x71\xbc\xa6\x20\xce\x4d\x90\xe9\xd2\xf2\x52\x77\x6c\xd1\xac\xec\x7c\x9d\xa0\x96\x6d\x6f\xf4\xbd\xed\xef\x9a\xc1\xba\x4d\x73\x50\x40\xf9\x4d\xf0\x9e\x36\x99\xef\x35\x76\xc4\xc2\x21\xf2\xb7\xea\xea\xbe\x4a\x73\x43\xb2\x46\x91\xa1\x0a\xac\x12\x87\x7b\x91\xd1\x4b\xa7\x35\xd9\xc8\x1e\x4a\x42\xc3\xbd\xe4\x5e\x1c\xd7\xb3\xec\xf1\x52\xef\x37\xb9\xb2\x97\xba\xd6\xf0\xc6\x6c\xcd\xd7\xfb\xa6\x11\x02\x76\xcc\x79\x7f\x1c\x94\x6e\x48\x99\xee\x9a\x2a\xdf\xef\xaf\xf9\x10\x55\x2a\xf2\xee\xa6\x01\xe0\xe0\x93\x3d\x2d\x18\xc0\x81\x3a\x26\xde\x10\x0e\x34\x22\x21\xfd\x6b\x67\x3c\x32\x3e\x34\x2b\x36\x0f\xfb\x5c\x39\x10\x2a\x14\xfa\x45\x4e\xd5\x2b\x39\xe4\x9b\x0a\x41\x59\x64\x76\xb5\x80\x03\x82\x13\xe8\xb2\x42\x6a\x5d\x6e\x8c\xd3\xfe\xfd\xdd\xd8\xbe\x92\x73\x78\xcc\xb9\x56\x5a\x57\x5c\x1d\x0e\x14\xdf\xe6\x4d\xf2\x08\xe0\xd2\xde\x6f\xec\xdc\x6a\x91\xad\x86\x91\xac\x16\x9c\x00\xb7\xb0\x5a\xf8\xc6\xd5\x9a\x26\xa9\x5d\x0f\xed\x06\xed\x71\x78\x15\xa0\xbf\xe4\xeb\xc6\x86\xdc\xbf\xd0\x4d\xed\x98\x79\x1b\x55\x93\x02\xfc\x24\x81\x50\xb5\xe4\xdc\x27\x36\x5d\xb5\xfd\x9c\xf3\x2c\x6d\xbc\x9e\xfe\x28\x1d\xa4\xc9\x3a\x28\x1a\x84\x9f\xa2\x7a\x5d\xa1\xa7\x68\x88\xb4\x57\xb6\x3c\x59\x83\xc9\x74\x6a\xe6\xd5\x60\x89\x6f\xb6\xa5\x38\x7e\x78\xbe\x7b\x78\x7e\x01\x3c\xf2\xd8\xb4\x7f\x51\xfa\x5c\xe9\x6b\x34\xb6\x8c\x68\x2e\x95\xeb\xf6\x1a\xf9\x41\x52\xb9\xf3\x22\x9f\x5f\x57\x9e\xc2\x5f\x90\x13\x25\x60\x6c\xe6\x6f\xf1\x3c\x18\xab\x11\xca\x0e\xe4\x1f\xe1\xaf\x6e\xd1\xbb\xf1\x75\x2d\x08\xb4\x83\x6c\x9f\x4a\x7c\x9e\x0f\x94\x08\xcb\x19\x7a\x48\xf8\x61\x37\xe8\xb9\x44\x6c\xde\x13\xa6\xef\xa6\xc5\xcd\xac\x43\xba\xa0\xcb\x09\x79\xd1\x3a\xa2\x87\xe1\x70\x01\x7e\x95\x68\x1a\x79\xf8\x07\x37\xb5\x23\x85\x74\xaf\x4e\xe6\x9d\xae\x3d\x06\x07\x53\x70\xe3\x58\xc2\x22\xfd\xac\x75\xbe\xf0\x0a\xd2\x82\xec\xfb\x3b\x30\xc1\xee\x81\xaa\x9d\x26\xdc\x3e\x0a\xd0\x73\x3d\xa8\xf5\x6c\x55\x33\x83\xf0\xe7\xaf\x14\x3f\xc4\x0f\x69\x36\x5c\x18\x5c\x1d\x2e\xfc\x55\x5a\xd8\xab\xdf\xb7\x13\xd1\x18\xc3\xf0\x9e\xc6\x38\xf0\x4d\xb9\xa5\x19\x72\x79\xa9\xbb\xb8\xb8\x93\x06\x07\x79\x8c\x8b\x04\x2e\x72\x39\x54\xf7\x35\x08\x04\x9c\xa1\xab\xde\x44\xe7\xad\x1d\x62\xcd\x95\x8d\x1f\xb6\xc4\x97\x5d\x13\x0e\x66\x7c\x35\x05\x48\x70\xf8\x6a\x0f\x69\xd4\xe4\xac\x68\x4b\x8c\x8d\x4d\x6c\x86\x28\xcc\x2b\x31\x96\x25\x8e\xb8\xaf\x63\x21\x08\xf7\xe7\x27\x39\x21\x7d\x13\x39\xfb\xc1\x55\x6c\x2d\x9c\xf0\x81\x07\xbe\x90\x9f\x93\x76\x6a\xd2\x63\x0a\x2a\xf1\x8e\xb3\xa4\xd9\x86\xb5\x79\x6c\xb3\xac\xe3\x71\x31\xe7\x14\x81\xe7\x39\x95\x4e\x4a\x6d\x32\xe7\xc5\x6c\x38\x1e\x76\xc4\x17\xce\x6d\xbe\xab\x1d\x18\x3c\x1f\xc2\x94\x33\x8d\x17\x5b\x5c\x74\xa7\xa8\xcb\x8e\xb2\x6c\x3d\xa2\x7d\x4d\x1c\x22\x0d\xb6\x2d\xa9\xfd\xd4\xf4\xed\x28\x49\xb9\xb5\x1c\x1b\xf0\x54\xe0\x13\x97\xa7\x7c\x3b\x63\x92\xa6\xc5\x24\x9f\xf5\xa9\xbd\x93\x81\x6a\x44\xfd\x48\x27\xde\x35\x7d\xf5\x59\xe5\xe1\x85\xf1\x7a\x98\x5b\xf4\x0b\xb0\x4a\x12\xc6\x02\xaf\xf9\x28\xf0\x1d\x9c\x67\x15\x6b\xc7\x1b\x2a\xe3\x1f\xdb\x8d\x68\x73\xd6\x0b\x0d\x70\x64\x89\x6a\xc8\xd3\x74\xe6\xa1\x64\xbd\x77\xaa\x94\x36\xcf\x2a\x2c\x52\xdf\x46\x51\x11\x19\x62\xaa\x7e\x74\xa4\x6c\xb2\x2d\x23\xf6\xb8\xd1\x0a\x29\x48\x93\x21\xda\x3a\x29\xe0\x78\x84\xa6\x77\x3c\x3d\x7b\x11\xc2\x1c\xd4\x12\x07\xe4\x69\xb8\x52\xc4\x1c\xc5\x3b\x1f\xc6\xef\xaf\xc6\x21\xfa\xdc\x62\x37\x4b\xa2\x64\xc6\x63\xde\x8e\x96\x0a\x78\x77\x42\x69\x74\x5d\x0b\x3c\xab\xe5\x24\x0d\xd7\x4d\x6e\xa3\x4d\x44\x45\xb0\x72\x10\xb0\x87\x5b\xc3\x0c\xa4\x02\xe2\x6f\xd2\x7d\x4d\x8a\x95\x28\xcc\x46\x72\x28\xc2\x46\xcc\x02\xa9\xc6\x37\x53\x85\xce\x09\xe3\x70\xdd\xc4\xdc\x3d\x22\xa9\x38\xcd\x94\x72\x4e\xf3\xb2\x36\x4b\x72\xfb\xf7\x77\xb3\xdc\xda\x94\x76\x39\x90\x47\x77\x03\xe5\xb1\x9e\x53\x9c\x93\xa7\x15\xfc\xe4\x05\x93\xce\xa8\xda\xe7\x23\xe4\x02\x44\x24\x52\x43\xfe\x3d\x89\x4f\x6e\xe3\x04\x7c\x0b\xc0\x3b\x7d\x33\xf0\x64\x1a\xdf\x54\xf4\x2a\xa4\xab\xc8\x5c\x15\x0b\x87\x5c\x25\xc5\x27\x18\x2e\x2a\x9a\xa7\xdc\xbc\x12\x02\x9d\x26\xf0\x55\x1a\x2a\xb8\x9a\x30\xe1\x7c\x4d\xf3\x2d\x80\xd7\x96\x70\x34\x32\x43\x5f\x08\x70\x2c\x01\x2e\x07\xa0\x2b\x4e\xa6\xc8\x47\x49\x1a\xe6\x9b\x73\xf4\xcb\x35\xad\x2d\xe7\x90\xb8\x95\xf6\x10\x8b\x9b\xff\x4a\x29\x02\x36\xa5\x5b\xc9\x01\x89\x29\xe9\xde\x51\x7c\x39\x17\x35\x79\xcd\x27\x11\xcc\xa7\x92\x03\xd3\x09\x4a\xa9\x33\xd6\x24\x69\xb3\x22\xca\x65\x81\x71\x7d\xba\x86\x23\x70\x9c\xc7\x45\x0c\xed\x6b\x64\x27\xef\x90\x91\xc0\x5a\x40\x49\x5a\x72\x60\x3e\x09\x39\x34\x24\x62\x8a\xbc\x36\x0b\x94\xab\x8e\x94\x8f\x5a\x9a\xe5\x96\xba\x59\x3f\x11\xa5\x87\x56\x2c\x6a\x53\x0b\x7b\xa9\x9b\xac\xae\xda\xb4\x3e\x4a\x7f\xa8\x3b\x98\xfe\x50\x13\xc9\x87\x51\x24\x5d\x5b\x22\xa6\x43\x3f\xc0\x37\x0d\x7b\x73\x78\x7e\xa1\xfb\x72\x91\xe5\xe1\xaa\x4b\x2e\x89\x5b\x53\xbd\x8b\x64\x44\xb7\xce\xc3\x33\xdd\x38\xec\x8f\x92\xc8\xb0\x3a\x00\xea\x11\x4c\xfc\xcc\x37\x0d\x66\xed\xfd\xfb\x89\x4c\xaa\x88\x5c\x6d\x58\xd4\x02\x55\x1b\xe7\x85\xd6\x34\x45\x21\x48\x77\x0d\x45\x97\xf5\xd7\x16\x00\xd7\x48\x29\x85\x5f\xc2\xf3\xe0\x5c\x6f\x43\x6c\xae\x14\x19\xaa\xb5\xf0\x3e\xc0\x9c\xc7\xd7\x8a\x23\x21\x37\xe9\xd0\xba\x55\x05\xab\x80\xce\x56\xbe\x56\x82\x73\x49\x11\xf7\x2d\x81\xdf\xb8\x07\x06\xd6\x43\x0b\xf6\x69\x26\x5a\xbe\xae\x4b\x08\xc4\x83\x9f\x26\x9f\x08\x35\x45\x28\x46\xa1\xf9\xec\x1a\xc0\x4c\xf8\xd9\xed\xb0\x9c\xe2\xbf\x74\x7e\xe5\x37\x5c\x13\x46\xb5\x80\x55\x37\x99\xf8\x35\x1f\x13\x94\x1d\x4e\xf0\x71\xb8\x7d\xee\x66\x51\xe9\xa2\x77\xf6\xef\xe7\xc3\xe0\xcf\xe1\x05\x73\x4b\x4d\xd0\xf9\x82\xd8\x77\x64\xed\xb9\x75\x2c\x50\xa8\xf6\x2b\x40\x77\x60\xd4\x3b\xd4\xce\x83\x04\xc4\xf6\x1e\x61\xba\xa4\xf0\xe9\x49\x2f\xe6\xa6\x04\x66\x92\x26\x3e\xb8\xc9\x4c\x99\x15\x28\xa2\x0c\xd1\x1f\xe7\x56\xa5\x40\x09\x10\x7f\x0d\x66\xc8\x79\x1a\x4e\x97\xf2\x08\xb9\xfd\x88\xfe\x9f\x22\x18\xb1\xb0\x64\x55\x9e\x29\xf6\xfe\x4e\x97\xf6\xb3\xaf\xf4\xad\x1d\x70\x14\x8b\xa7\xbe\xa3\x69\x49\x8f\xd1\x4b\x7f\x52\x0e\x42\xdc\x42\x28\xb5\x6a\x67\x05\x1d\x36\xd2\xdb\xa9\x08\x1f\xaf\x04\x9e\x35\xa5\x6f\x56\x66\x3c\xf1\x25\xfb\xa3\xc2\x74\xe1\x23\xf0\xeb\xaa\x1c\xdd\x4f\xe2\xbe\x4d\x05\x95\x8a\x22\xde\x09\x25\xcc\x70\x42\xb1\x25\xae\x9a\x30\xdd\xc4\x26\x14\x31\x25\x9a\x35\x51\x59\x6a\xc9\xf5\x2b\x67\x54\x39\xa0\xda\x31\x6d\xfa\x7e\xcb\xdd\xfe\x66\x3f\x72\x94\xe6\xae\x1c\xe6\x5a\x40\x2e\x2a\x16\xcf\x30\x35\x68\xfb\x16\x90\x8e\xc2\x01\xdc\x55\x8a\x76\xe7\x83\x1a\xca\x53\xda\xfb\x47\xd6\x44\xf9\xa8\x6f\x52\x0b\x9b\x84\x4d\x06\xf1\x38\xbe\x56\x9d\x21\xab\x11\xd3\xdc\xb4\x43\xee\xe5\xcf\xa2\x30\xb7\x29\xe5\x62\xe9\xc9\x18\x46\x46\xc1\x8b\x40\xca\x9a\x12\x57\xa9\xcd\xc3\x54\xc0\x65\x8e\xc6\xdd\x57\x07\x2e\x6a\x24\xf1\xd8\xa6\x43\xab\x19\x09\x6e\x28\xd4\xcb\x8d\x52\xc1\xd0\xc2\xe1\x28\xcf\xac\x25\xcb\xb3\x70\xa8\x95\x3f\x56\x44\xbb\x56\x52\x53\x8c\x6d\x98\x51\xb2\x56\xf7\xa2\x30\x5f\x3a\xdf\xe8\x2e\xde\x24\x42\xa0\x4d\xea\x63\x08\x22\x76\x11\xef\x0a\x6c\x0d\x93\x91\xd6\x1d\x2f\xdd\x23\x01\xd3\x31\x07\xa6\x7c\x51\x0c\x52\x7e\xf3\x77\x1b\x86\xfd\xd0\xf3\xdd\x38\x89\x01\x81\x15\x54\x87\xaf\xed\x5c\xd6\x12\xd0\x49\x96\x43\x1d\x05\x49\x4f\x86\xf6\x02\xab\x79\x42\x89\xc5\x5c\x0e\x7e\xf6\x13\xb6\x61\x18\x67\x79\x98\x6b\x6e\x4a\x29\x14\xa9\x1c\xd1\x07\x2d\x50\xda\xa5\xee\xaa\xc9\x88\xaa\xab\xb2\xb5\x40\x68\x1e\x41\xf9\x84\x6f\xda\xbc\x94\xff\x2f\xe4\x96\x8e\xbb\xae\x8a\x5b\x68\x34\x98\x21\x12\x1b\x40\xe8\x22\xbd\x4b\x6a\x53\x50\x8e\xe1\x44\xb8\x19\xa8\x6d\x7c\x5a\xb1\xeb\x1f\xd7\xbd\xc9\x23\x33\xb1\x03\x72\xf2\x61\xbc\x98\x7e\xd2\x9d\xa7\x87\x05\x09\xfa\xd7\x8d\xf3\x94\xea\xd0\xd6\xa4\xb1\xcd\x72\xa4\x70\xa5\x77\xce\xa3\x8b\xa0\xec\xc2\xb4\x43\x8d\x7c\xa2\x2b\x1b\x8d\xc2\xcc\x86\x83\x04\xe6\x10\xe3\x72\x52\xc9\x0e\xde\x0d\xbc\x82\xc1\x85\x46\x8e\x8e\x62\x23\xb3\x3e\x30\x6a\xdf\xd6\x64\xda\x2f\xba\x14\x5d\x9c\xe4\x61\x5f\xbc\x0c\xe1\xce\xf4\xe3\x7f\xde\x21\x8e\x2a\x17\x8e\x8d\x93\xeb\x7f\x75\x6d\xda\xd7\xda\x98\x00\x33\x6b\x52\xe9\x31\x11\xb2\x36\x9a\x27\x84\xc6\x37\x02\xc5\x25\xfe\x81\x32\x38\x2b\x26\x85\xe5\x84\xe1\x83\x37\xc2\xd7\xce\x86\x8d\x8b\xac\x9f\x50\xfc\xca\xbb\x16\xf9\x62\x6e\xa7\xe7\x9b\xc0\x53\x90\xac\xdb\x28\x99\xa0\xc8\x5c\x67\xa8\x47\xe5\xe3\x89\x9e\x42\x3b\xbf\xa3\xb2\x29\xa0\xd6\x7c\xd4\xa6\x82\x80\xb8\xac\x3f\xe3\x5d\x66\x6a\x3e\x7d\x84\xa2\x3a\xce\xce\xbb\x4a\x2f\xce\x0c\x06\x61\xc6\x4a\x5b\x30\x15\xdf\x55\xac\x66\xdf\x6d\xb4\x47\xca\x5a\xc8\xd3\x70\xd5\xa4\x21\xfd\x8e\x6b\x59\x5f\x96\x04\xcc\x87\xda\xdc\xdc\x56\xa5\x3e\x9b\x86\xf9\x88\x18\x29\x35\xe3\xf1\x47\x8a\xcc\x91\xa1\xaa\x30\xf9\x77\x1a\xbf\x5f\xb9\xe1\x26\xce\xc3\xdf\x2c\x48\x94\x41\x2b\x20\x5e\x2a\x6b\xec\xfb\x2d\xb1\xf9\xd8\xf4\x47\x21\x49\xbc\xf0\x0a\x00\x90\xe4\xdb\xf8\xa0\xf4\xe6\xa9\x0e\x85\x36\x97\xfe\xc5\xee\xc0\xf6\xc3\x81\x2c\x4f\x69\x6e\x21\xc3\x29\xdd\x2d\x8e\x55\xba\x80\xf7\x3f\xab\x14\x48\x2f\x94\x2a\x0d\xbb\x7d\xea\xcb\xa7\xff\x05\x1c\x69\xc4\x2d\xbb\x7a\x2d\xfb\x67\x63\x14\x8e\xd9\xc9\x15\xd4\x49\xc7\xc9\x96\x9e\x56\xe9\xe4\xcc\xda\x35\x58\x5c\x49\x7b\xf9\x24\xc4\x37\x4b\x85\xe5\xd1\x75\xe7\x30\x5e\x8d\x0a\x1b\xf7\xa5\x54\x0a\xa7\xeb\x0f\x02\xef\x47\x9f\xaf\x67\x6d\x14\x47\x64\x4e\xb1\xed\x8b\x60\xf0\x96\xe4\xc3\x1d\x85\x34\xba\x23\xd4\xde\x2d\xd6\x36\xb5\x91\x91\xa0\xe2\x11\x3d\xea\xa3\x13\x5b\x33\xd8\xcb\xf3\x07\xbb\xfb\xf7\x63\xd1\x70\x5b\x01\x0c\x27\xbc\x97\x0f\xe9\x05\x61\x51\xbf\xe3\xe2\x42\xbb\xb2\xc2\xfe\x1f\x8c\x12\x34\x4e\x05\x2c\xd5\x51\xf2\x0c\x62\xc4\xfb\x45\x34\x31\x1d\xf2\x6d\x61\xdf\xf9\xe0\xe4\x1b\x75\xf2\x9b\xc1\xba\x89\xfb\x76\xa7\x87\x48\x9f\x57\x4d\x2a\xaf\xa9\x6e\xff\x2b\x98\x57\x69\xb8\xa1\xa7\xe6\xae\x42\x32\x98\x42\x61\x4d\x3f\x24\x6c\xc7\x6d\x04\x92\xab\x61\x3a\xe6\x88\x0d\x65\x87\xbb\x18\x6d\xbe\x69\x93\x1b\x79\x61\x79\x7e\x8f\x6f\x9f\x10\xb9\x1b\x1c\x30\x97\x15\x32\xe8\x75\x38\x38\xc8\x4c\x75\x7a\x8a\xfd\xf9\x2e\xb5\x30\xb8\x22\x83\x7f\x93\xff\xa9\xf4\x8e\x0e\x8f\x12\xf2\x3e\x47\x15\x54\xfc\x4e\xe0\x7b\x84\x9d\x2e\x6b\xa7\xc6\x80\x4f\xbf\xc5\x37\x2d\xbc\x6f\x91\x29\xe2\x01\xf7\x8b\x3a\x9a\x0f\x85\xc9\x75\x33\x97\x14\xd1\xa0\x53\x3d\xab\x20\x3d\xe9\x91\x84\x33\xa5\x06\x96\x19\x46\xc9\x98\xc8\x9f\xd8\x4c\xe3\x59\xff\xbc\x54\x6d\x7d\x7f\xde\x20\x31\x5b\x38\x44\x1f\x4d\x2d\x35\x62\x71\xd5\x8a\xfb\x6e\x03\x85\xf0\xba\xa9\x1c\x40\xd6\xdc\xc6\x26\x9c\x99\x6e\x55\x0e\xa2\xa3\x99\xb2\x48\x9b\xd1\xba\x89\x43\xa0\x22\x15\xe9\x8c\xec\xb5\x93\xee\x68\x1c\xa4\x9b\xce\x89\x67\xe1\xea\xc0\xf7\xc6\x6a\x4c\x64\x62\xd6\x22\x13\x0f\x76\x76\x9c\x68\x06\x0b\x4e\x3b\x72\x09\x4f\x76\x75\x91\x3a\x05\x59\xaf\x4e\xb9\xa4\x4c\x92\xc6\x9f\x08\x14\x97\xef\xd9\xba\x12\x7c\x9a\xed\xd0\x52\x61\xaf\x21\x6e\x14\xaa\x5e\x45\xe8\x0b\xd5\x21\xfe\x87\x40\x35\x60\x3f\x28\x15\x92\xff\xb5\xb6\xaa\x75\xdf\xe4\xd6\x17\xdd\x71\x5e\x3f\xa0\xb5\xc0\xd7\xaa\x17\x38\x29\xf2\xc8\x6c\x70\x2f\x30\x96\xca\x4d\xdd\x0d\x76\x53\xc3\x4c\x4d\x6c\x06\x66\x17\x7d\x2b\x5c\xa3\xef\x97\x3e\x2e\xfa\x50\x11\xbc\x9f\xc3\xe6\x85\xaf\xfc\xd5\xc0\x43\x64\xee\x28\x02\xc1\x07\x44\x82\xc0\xd7\x58\x84\xb0\x9e\x37\x1d\x00\x36\x35\xd9\x88\x17\x90\x34\x1c\x76\x1c\x65\xe7\x49\x45\xd9\xc9\x8b\x40\x5a\x14\x95\x90\x3c\x09\xa8\x2b\x86\x5c\x44\xb6\x02\x48\x71\x7d\x75\xa9\xb5\xaf\x4a\xad\x02\xdb\xf6\x03\xfa\x29\xbe\x0e\x9e\xf6\xa9\xc2\x61\x1a\xf6\x8b\x28\x2f\x52\xd2\x09\x7e\xd6\xbf\x72\xe5\x83\x20\x74\x85\x52\xa2\x93\xeb\x3a\x3c\x2f\xff\x7f\xda\xa4\xe4\x3d\xd8\xb5\xaf\x8c\x4c\x91\xb9\x6c\x91\xf8\x85\x64\x42\xf8\xa6\xa5\xe3\xf0\xd9\x6e\xb1\x9a\xc8\xf9\x2c\x51\x26\xad\x13\x84\x8f\xf7\x03\x4d\x7e\xab\xc8\x77\xf2\xb0\xbf\x66\x73\x00\xf6\x04\x27\x4f\x2f\x22\x62\xef\x1d\xcf\xcf\xab\x10\x0b\xff\x9e\xa6\x4e\xec\x63\x1b\xdd\xf6\xd8\xc6\x05\x63\x38\x81\xfc\xba\x4a\x33\x2f\x78\xee\x8e\xd3\x20\xfa\x76\x9b\xc3\x39\xb2\x66\x1d\xbc\x8d\x48\xac\x1d\xd3\xdc\xba\x6f\xd0\xa7\x81\xe3\x3a\xa7\x96\x64\x6a\x07\xae\x66\x23\x9e\xd0\x27\xfa\x4b\x6d\x47\xc5\x88\xdc\x5c\x1a\x0b\x84\x59\xd7\xb4\xd2\xd6\x49\x4c\x02\x5a\x06\x3f\xf2\x69\xd4\x24\x8c\x60\x9b\x05\xdc\xab\x7a\x0e\xeb\x7a\xc6\x9b\x31\x50\xf0\xa2\x4a\x47\x4f\xca\x37\xb5\x92\xae\xc9\xcd\x3e\xcc\x25\x9c\xfc\xa3\xf8\x69\x27\x94\xeb\xcb\x6d\x2c\x83\x8d\x64\x87\xa6\x6b\x61\xa6\x5c\x1a\xe2\xc5\x27\xe1\x1e\x02\xb1\x76\x93\xce\x73\x57\x61\x74\x3c\x24\xd7\x94\x18\xdd\x1c\x11\x9a\xc0\x42\xdc\x2a\x15\x5e\xe7\x81\xaa\x12\x7c\xfe\xb9\x83\x33\xba\x86\x5b\x43\xe6\x5e\xe5\x2c\x16\xe0\xae\xdb\x1a\x98\xd2\xe5\x79\x2e\xdf\xd7\xdc\x78\x7a\x4d\xbe\x71\x1b\x7f\x60\xe3\x4d\xb0\x3c\x0a\x73\xa5\x22\xe2\xd7\x4a\x22\xd8\x5d\x8c\xbd\x08\xfc\x8e\xfd\x96\x9e\x39\x2f\x0c\x3a\x08\xd7\xad\xdf\x69\xae\xdc\xe6\x04\x7f\x3f\x6a\xb8\x5d\x87\xe7\xbb\xfd\x64\xbc\x4a\x60\x27\x57\x3d\xe6\xe8\x87\x6f\x14\x75\xc1\xa8\x48\xa9\xa9\xcc\x76\x3c\x45\xec\xfb\x68\xe9\xe2\x1b\x95\xb8\x5f\x31\xfd\xb5\x61\x9a\x14\xf1\x60\xd6\xd7\xda\xce\x06\xde\x58\x5d\xa7\xa9\x72\x27\x8f\xeb\xb5\xbc\xa9\xf5\x33\x92\x62\x38\x8a\x58\xa5\x94\x3b\xdc\xe9\x85\xa4\xdb\xdd\xb5\x80\xd9\x39\x65\xd7\x67\x09\x86\x8f\xe2\xe3\xa7\x40\xe7\x28\xbc\xd4\xbe\x43\x92\x2b\xf4\xc2\xec\xe0\x97\xc1\xaf\x2f\x1e\x9a\xab\x51\x91\xd4\x84\x8b\x1c\xe0\xe9\x54\xa0\xb8\x9e\xff\x49\xe9\xc3\xa5\x1b\x0d\xfb\xf1\xc2\x12\x84\x0c\x6a\x3e\x0f\xf7\xfa\x49\x13\x79\x8b\x96\x71\x64\xfa\x6b\x51\xe1\xf3\x16\xa8\x57\x01\x1c\xc3\xd7\x0d\xff\xa4\xda\xf6\x49\x1a\x0e\xc3\x58\x9c\x69\x39\x38\xee\x68\x28\xc4\x1d\x9f\xb0\x30\x91\x61\xd2\x7a\x38\xaa\xef\x2a\xa7\xf5\xdd\xc6\x8a\x21\x22\x8e\xd4\x0c\x25\x3c\xc0\x51\x79\x43\xd1\xe8\x6e\x23\xc0\x14\x92\x47\xa7\xda\x38\x2b\x49\x9a\xad\xe3\x09\xb2\xce\xaa\x54\xe2\xd9\xb6\x52\x57\x6e\xfa\x79\xd8\xe7\x8c\x4f\x1b\xa4\xab\x81\x29\x5a\xe8\xae\x18\x86\xfc\x61\x7e\x59\x17\x9f\x6f\xda\xf4\x8b\xa3\x24\xc9\x40\x02\xc2\x84\x84\x34\xed\x92\x8b\xf6\x78\xf6\x5b\x98\x36\x39\x79\x6a\xa8\x44\x01\xb4\x7b\x30\x77\x1d\xa1\xbb\x3c\xcf\x86\x6d\xae\x57\xc3\xf1\x56\xdb\x09\x6d\xa2\x50\x68\x03\x24\x75\xa6\xd7\x51\x0a\xaa\xb4\xcd\x30\x48\x3f\x68\xeb\xd1\x48\xed\x38\x59\x77\x7e\x11\x1c\x8f\x13\x81\xaf\x8d\x9f\x68\x8c\x12\x05\x13\x49\xda\xf1\x8d\x81\x27\xf5\xa9\x7a\xb2\xd9\x9d\xb5\xbf\xbb\x92\x14\x71\xbf\x5e\x36\xb9\xa4\xf9\xcd\x2e\xd5\xcc\xfe\x38\x89\xf7\xe8\x64\x60\x35\x00\x5c\x90\x50\x8c\x27\x97\xb7\xb0\x4c\x1f\xf6\x3c\xd5\xb0\xc6\xd2\x9d\x5e\x0d\x0d\x66\xf0\x5d\xad\x51\xc7\x94\xd3\xf8\xe2\x37\x35\x25\xf0\xb6\xde\x67\x14\xef\xca\x98\xa8\x5e\x8b\xd4\x42\xd9\x05\x78\x9a\xaf\xc0\x65\xe2\x9b\x52\x29\x9e\xb3\x18\xbd\x34\xbe\xb6\x8d\xde\xc4\xe4\xba\xf3\xf4\x6d\xec\x30\xbe\x51\x55\xdf\xc1\xcb\xec\xd4\x33\x59\x13\x4d\x8b\x10\x37\x79\x77\x35\x0a\xc7\x61\x2e\x65\x51\x27\x65\xa6\xe4\xcb\xbc\xe7\x57\xa4\x61\x0c\xac\x8b\xf0\x0e\x78\xf0\x1a\xd4\xc8\x81\x1a\x3b\xdb\x78\xee\x17\x96\xba\xe3\x24\x65\x42\x25\x2c\xae\x1b\xf0\xee\xf8\x46\x25\x1c\x4d\x38\x70\x2b\x4a\x7c\x35\xff\xe8\x17\x1a\x7b\x15\x14\xc9\x83\x10\xfa\xc1\x9f\xd0\x93\xfd\x23\x3e\x54\x8b\x73\x9b\xc2\xdb\x34\x91\xee\x2d\x82\x99\x95\x9d\xde\xe6\x55\x4e\x52\xbb\x6e\xc2\x2d\x50\x1d\x76\x68\x84\x50\xcf\x17\x4a\xc6\xc9\xc0\x46\x14\x02\x09\x3f\x42\x67\xbf\x30\x86\x5f\x0b\x14\x7d\x07\x50\xf4\x4c\xd0\x1d\x68\x6c\x20\x8d\x81\xeb\xbf\x70\x3a\x7e\x47\x5a\x30\x11\xfd\x24\xce\xc2\x81\x94\x7b\x05\xa8\x7a\x5c\xe3\xb8\x8f\xab\x80\x78\xc5\x46\x11\x09\xae\x23\x3d\xc4\xca\x30\x81\x12\x76\x41\x61\x0e\xf1\xfd\x49\x0d\x38\xd4\xa4\x81\xc5\xe4\x29\xec\x16\x78\x8a\x4c\xc7\x8a\xd3\x05\x7d\xf7\xe4\xdd\xfe\xcb\xa7\xa8\x1e\x00\x2f\x8c\xb1\x91\x70\x8d\xf7\xf4\xd4\x36\xda\x46\x44\x08\x88\x7d\xa0\x1b\x8d\x13\xf7\x26\xdc\x13\x38\xe1\xbb\x7b\xd5\x08\xe1\x03\xbb\x54\x50\x70\x85\x08\x03\x85\x18\x5a\x79\xed\x60\x89\x43\x02\x6a\xdb\x94\xc6\x1d\x9f\xee\xa0\x73\x42\xb0\x48\x2a\x9b\x7f\xb6\x8d\x37\x75\x38\x4a\x32\x96\x06\x91\xc8\x5e\x53\xa3\xd6\x5d\xcf\x31\xd2\x9a\x78\x49\xf8\x84\x7c\xad\x80\x00\xab\x91\x59\x4f\x52\x40\xb4\xda\xa4\x8c\xc5\xcf\xb0\xf9\x6c\xf5\x6e\x52\x36\xf2\xef\x7c\x49\x71\xf9\xdf\xa6\xca\xc0\x27\x89\xa7\x1d\x9e\x5f\xa0\x66\x84\x14\x5b\x50\x50\x07\xb4\x05\x05\x76\xe0\x4b\x88\x2f\xdb\x95\x8e\x62\xd4\x67\x18\x1b\xdf\x38\x8c\xd9\x24\x9c\xd8\x28\x8c\x1d\x6f\x12\x7a\x0c\xfe\x22\xd0\x2c\xc0\x18\x55\x59\xc2\xde\xdd\xf9\x7b\xbf\xf8\x4b\x9d\x6a\x3b\xc0\x60\xdc\x56\xc6\xe3\xb6\xc2\xaf\xaf\x14\x69\x9c\x61\x85\x8a\xd9\xaf\x86\x1f\x70\x98\xef\x2b\xe6\xe8\x7f\xa6\x06\xe5\x86\xcb\xcb\xac\x44\x85\xcd\x38\xd8\xad\xd1\x87\xc3\xb9\x46\x48\x29\xa4\x53\xf4\xa0\x22\x65\xe6\x29\xc3\xc6\x49\xbc\x66\xb9\xde\x29\xaf\x41\xa3\x21\xd8\x1f\xdf\x0b\x37\x4c\xcd\xab\xd2\xd2\x0b\xa7\xec\x5c\xe0\xcb\x60\x6d\x14\x81\x4b\xdd\x97\x8b\xc1\xd0\xa5\xec\x51\xaf\xe1\x04\x36\xdf\x34\xb2\x11\x84\xee\xb5\x69\x24\xd8\x3e\x87\xa5\xf1\x40\xdf\x36\x77\xc6\x8c\x95\x2f\xc8\x3a\x28\x98\x29\x11\x45\xd9\x9a\xee\x26\xc9\xfb\x2a\xae\xb5\x2a\xf5\x81\xb7\x86\x76\x24\x5f\x2b\x10\xc9\x46\x18\x0f\x92\x0d\xb8\x40\x30\x7a\xdc\xf6\xc7\x37\x2e\x95\x34\x2a\x22\x6a\x8f\xc0\x7b\x23\xba\xe1\xce\x0b\xbe\x69\x43\x61\x55\xce\x0e\xbc\x25\xee\xad\xa5\x65\x23\x6a\xb9\xd5\xca\x40\x9a\x1b\x84\x78\xec\xfd\x37\x39\x03\x16\x0e\x75\x37\xa8\xe2\x1b\x8a\x8f\x8b\x24\xd9\x05\x25\xd4\x7e\x41\x81\xfa\x86\xd6\xae\x65\xb3\xaa\xf2\x77\x12\x27\x36\x8a\x2a\x50\xe4\xe7\x7f\xc0\xe9\xcd\xff\xd0\xe6\x5d\x67\x26\x0f\xb3\xd5\x4d\x37\x9e\xc2\xe6\xdd\x71\xfa\x47\x6f\x35\xbc\x6b\xa9\x7b\xac\xdb\x38\xec\x03\x0a\xc9\x24\x32\x18\x31\x61\x94\x69\x13\x19\xda\xb0\x51\xd4\x51\xfc\x29\xa7\x95\x9c\xac\x16\xe0\x1a\x53\xa5\x12\x39\x6e\xd7\x64\xe7\xd2\x5b\x17\x14\x23\xe9\x23\x35\x32\x23\x93\x0e\x36\x77\x56\xdf\xc8\x02\x64\x5a\xbb\x06\x5b\x4d\x88\x61\x54\xa0\x24\x5d\x79\x92\x61\x51\x4d\x86\x88\xc3\x91\xcb\xfd\xb2\x2f\x65\xe4\x61\xde\x1f\x49\x59\xdc\x11\x79\x1c\x38\x20\xd7\xae\x0a\x36\x49\x93\xbe\x1d\xd0\xc9\xde\x71\x1a\x06\x20\xf9\xe3\x6b\x17\x82\x8c\xc3\x57\xec\x60\xb7\xa2\xba\xbb\xcb\x8e\x9f\x73\x9c\x5d\xb7\xf4\x29\xaf\x83\xf5\x5b\x3f\xd3\xab\x8b\x6e\xfa\xc6\xdd\x4b\x9a\x6c\xfe\x3e\x9c\x70\xa7\x21\x55\xad\x17\x11\x4e\xf8\x51\xd5\x3b\x3e\x4e\x62\x92\x6d\x08\x93\x38\x9b\x23\x86\x15\xe4\x2a\xc0\x06\xa8\xb4\x60\x84\x9f\xe5\x0a\x2d\x37\x58\xc0\x33\x5a\x52\xa6\x09\x7f\xaa\x36\x30\x75\xdf\x1f\x9e\xe7\x62\xc3\x8c\xe2\xc9\x9e\x99\x7a\x6f\xc0\xae\xd8\x98\xda\xa7\xb1\xca\xb1\x05\x8e\xd0\x23\x00\x8c\xf3\x7b\x34\x1a\x18\x6d\x2e\xa1\x23\xeb\xbb\xbd\xa7\xf8\xf7\xc3\x2c\xb7\x31\xdc\x0f\xa9\xed\xaa\xc6\xca\x87\xa5\x96\xa8\x5c\xb7\x26\x82\xa1\x10\x8a\x06\x05\x07\xbb\xe3\xaa\xac\x29\x21\x0b\x66\x94\x98\x16\x95\x0e\x1e\x5d\x53\xd2\x46\x5f\x51\x92\xe9\x36\xb2\x43\x13\xe7\x11\xf7\x8f\x71\xef\x31\xe8\x6a\xa4\x11\xd9\x67\x8f\xe3\x24\xcd\x47\x14\x2c\xa0\x5c\x08\x99\x08\x81\xb6\xd3\x37\x08\xac\xc5\x23\x6a\x1e\x95\x5a\x3a\xff\x3e\x01\x83\xf8\x23\x4a\x87\xeb\x32\x30\x96\x30\x7c\xdb\xa7\x0a\x60\xca\x18\x29\xac\xfe\xb9\x9e\x3f\x13\x9f\x59\x7e\x86\xb2\x16\x48\x30\xfd\x5b\xcd\x13\xc8\x84\x90\x78\x00\x58\x5f\xf1\x1d\x5b\x38\x14\xaa\x88\xd0\x59\x18\xe9\x8f\xf4\xf1\xf5\x25\x2d\xdb\x63\xf2\x34\x34\x69\x9f\x59\x24\xf1\xd3\xaf\x07\xfe\x31\x5e\x57\xec\x4c\xfd\x64\x3c\x89\x6c\x6e\xe9\x29\x61\xa7\xa7\x78\x19\x98\xda\x6f\xc1\xee\x6a\xb4\xb9\xa8\x74\x29\xf9\xa7\x22\x8a\xc2\x6c\x84\x13\x15\xe7\xed\x57\x4a\x05\x86\xfe\x8a\x4a\xa5\x83\x8a\xac\x8a\xfa\x3d\x14\x0c\x4c\x58\x8e\x2a\xd2\x75\x11\x3c\x6c\x41\x28\xbe\xe8\x1e\x99\x5d\x76\x54\xe7\x6f\x28\xc8\xea\x0d\x97\x82\x5c\x8d\xec\x06\x52\xb8\x72\x74\xf9\x13\xe5\x82\x16\x67\xbb\xa4\xa4\x5c\xb6\x4f\x15\x0b\xf0\xa7\x7b\x9e\x44\x28\x32\xe1\x60\x8e\x8a\x79\x78\xbc\xd7\xc8\xf0\x62\x6d\x40\xe8\xd5\x11\x36\x50\x86\x8f\xff\x8a\x68\x8f\x30\xb2\x57\x54\x3f\xa1\x5d\x0f\x07\x36\xee\xdb\xdd\xd5\x97\x38\x45\x2e\x87\x63\x3d\x19\x28\x19\x9f\xdb\x1a\x3b\x73\x83\x46\x0b\xf9\x92\xaf\x95\x9a\xbf\x91\xe2\x7f\x94\xcc\x2f\x05\x0a\xcf\x7b\x44\xf1\x66\x5c\xf5\xbe\x9e\x4d\xf3\x22\xcb\x42\xb6\xc1\x52\x6c\xee\x78\x5a\x45\xe5\xdc\xad\xdb\x68\x9f\xa2\x3f\xfc\x7d\xf2\xcc\x99\x34\x1b\x76\x51\xc8\x6e\xe9\x49\x35\x34\x4a\xc0\x86\x1e\x42\x0a\xd6\x02\x78\xec\x3b\x29\xcb\x03\xcf\x88\x81\x6d\xf8\xf5\x59\xa4\x36\x6a\x9a\x7f\x88\x1d\x76\x4e\x69\x81\x4a\x3b\xf6\xa7\x55\x2d\x6e\x3c\x31\xa9\x59\x89\x2c\x72\x4a\x28\xe0\x5e\x56\xa5\x59\xae\x0f\xc2\xd6\xde\x6b\xb8\xd4\x54\x41\x1b\x25\xd2\xd0\x2f\xca\xcb\x1d\xc7\x7e\x74\x29\xd8\xea\x52\x1d\x7a\x5e\x90\x17\x20\x78\xf6\x14\xf3\x8c\xd8\x11\xf6\x22\x9d\xef\xce\xf2\xec\xc7\xe9\xed\xe4\x5c\xa6\xc9\x12\x44\x87\xdf\x8a\x9f\xa2\xc1\x71\xd8\xfb\xfd\x0b\x2e\xe5\xa8\x09\x8f\xaf\x96\x4a\x8d\xe2\x66\xa0\xa2\xbf\x1f\x80\x2b\x4f\x94\xfe\xe9\xcc\xa1\xa4\xcc\x99\x27\x01\xcd\xc2\x2a\xba\x43\x7b\x0e\x89\xef\xaf\x53\x81\x16\x66\xad\xc4\x1b\xd4\xdc\x69\x4c\xf3\x0e\x4a\x8c\xc2\x43\x38\xc2\xcb\x5d\xf1\x29\xaa\x5e\x89\x17\x5c\x4f\x3c\xb2\x15\xc0\x4e\xef\x23\xab\xec\x0a\xc7\x8e\x98\xf8\x2c\x28\xc9\x30\xb5\xbb\xa7\xb4\xb0\xb0\x4e\xae\xd3\xaa\x97\xa4\x4f\x33\x16\x7a\xb1\xfb\x9b\x45\x28\xce\x30\x12\x4f\xd7\x75\x86\xed\x7a\x9b\x88\xe2\xc1\xee\x86\x81\x2c\xec\x12\xc3\x1e\x2e\x2b\x08\xc4\x65\x15\xb6\x8c\x6c\x9c\x86\xf8\x43\xe6\x61\xa3\x55\x21\x9c\x6c\x2d\x2c\xb8\xe3\x30\x96\x40\x50\xf1\x73\x1c\x74\x49\xfc\x96\xf2\xfa\xf2\xfc\xc1\x8e\xf7\xca\x90\x22\x11\x71\x17\x8d\xec\x8c\x92\xd4\x0c\x92\x8e\xfe\xba\xd2\x97\x4f\x5a\xe9\x74\xaa\x53\xd4\xab\x02\x8b\x7b\xa1\x5a\xcb\x2e\x28\xd3\x94\x6d\x84\xe3\x31\x31\x6a\xb9\x7a\xc8\x19\x25\x89\x8d\x70\x55\x5a\x0a\x7c\x89\x78\xd5\x84\x51\x91\xd6\x1a\x66\x61\x0d\x24\x01\xe3\x78\x8e\x27\x61\x6c\x22\x8f\x46\x44\x6e\xe4\x9e\xae\xdf\xde\x2b\x25\xbd\x63\xe3\xf5\x30\x4d\x62\x60\xb3\xa2\xcd\x99\x6a\xe1\x60\x17\x5c\x55\x2e\xec\x05\xd5\xab\xff\xcd\x1a\x7f\x44\xbe\x81\x94\x19\x96\xfa\xfb\xf4\xec\x7c\xad\x9c\x8c\x34\xa9\xc2\x22\xca\x99\xb9\x5e\x40\x90\xd4\x09\x0a\xfa\x31\xf5\x9d\x83\xe4\x89\xea\x9f\xe0\x54\x6d\xef\xa9\x3e\x07\x70\xe8\x22\x2f\x00\xc5\x19\x38\x55\x3b\x28\x5b\x82\x88\xf5\x88\xd6\x0a\x63\xb5\x5f\x04\xda\xb7\x4a\xe5\xac\x5d\x09\x54\x12\xb1\x03\xfe\x1e\x4e\xcc\x91\x83\x22\xc9\x50\x5a\x94\x30\x6f\x3b\xa6\xbe\xd8\xfb\xb0\x5e\x34\xf7\x60\xeb\x5d\x3d\x45\x27\x2b\x2c\x50\xba\x19\xbc\x7a\x6a\xe9\x12\x6f\x09\xd9\x06\x26\x1e\x6c\x76\x3c\xa1\x0e\xb0\x60\xb2\x66\xc5\x6d\x5f\x35\xfd\x30\x62\x50\x95\xa7\xf7\xe5\xf0\x86\x6f\x1a\xee\xed\xfe\xfd\xdd\x8c\xe8\x65\x0f\xcf\xbb\x96\x88\xea\x69\x80\x5d\x67\x02\x78\x18\xbd\xdb\xaa\xcb\x6b\x6c\xd2\x35\x49\x77\x4a\xb3\xa0\xaa\x94\x37\x9b\x02\xd0\x4e\x0b\x92\x93\x8e\x8f\xd3\x4e\x29\x31\xbe\x66\xc5\x61\xff\x7e\x51\xc9\xda\xbf\x5f\xe6\x4b\xd9\xea\x0b\x0a\x88\x7d\x54\x31\xb5\xf4\xcd\x24\xcc\x4d\x14\x66\x63\x1a\x33\x38\xdf\xf0\xa4\xf8\xba\xa5\x67\x61\xa9\x9b\xda\x55\x9b\xba\x4e\x0f\x86\xd5\xa8\xa6\x85\xd7\x6b\x8b\x3c\x8d\xb3\x3d\xd5\x9a\x80\xe1\x42\x45\x19\x71\xd4\x95\x40\xd5\x11\xef\xd3\x32\x10\x95\x42\x9d\xa3\x57\xf5\x34\x70\xf2\x8a\xc0\x26\x2d\x22\x81\x83\x78\x1f\xeb\x3f\x57\xfd\xb3\xf7\x54\x6e\x65\x62\xb2\xfe\x28\x84\xe7\x09\x00\xcb\x65\x04\xd0\x7c\xe3\x5c\xb3\xcc\x9a\x7c\x46\x51\x2d\xc0\x82\x09\x3d\x3d\x4d\x34\xc6\xf8\x43\x45\x08\x97\x5a\x9b\xed\xa0\x0f\xa1\x86\xb2\x8d\xfa\x1f\x6a\x8c\x2f\x4e\x3a\x42\x9f\x2f\xcf\x09\x33\x2d\x8b\x6e\x43\xdc\xe2\x47\x95\xa3\xbe\xb2\xb2\x89\x82\x8b\xb0\x2a\x54\x9f\xe7\xd6\x5f\x0c\x14\xf2\x13\xdb\x28\x55\x29\x6c\x0b\x1d\x27\xc6\x70\x9f\x1e\x5f\x04\xa1\x54\x63\xd6\x69\x3a\xdd\x64\x3b\x79\x2b\x3e\xb1\x39\x71\x05\xd7\x15\x0e\x3a\x8a\xdf\x4c\xa5\xa4\xae\xd1\xf4\x60\x2b\x1f\x2d\x55\x93\xd1\x65\xc5\xdd\xd7\x4f\xb2\x67\x3a\x1a\xb8\x5e\x23\x91\x97\x41\x5c\x09\x87\x43\xc9\x91\x70\xa5\x5c\x07\x2f\x37\xd5\xca\xcd\x8a\xc9\x24\xa9\x76\xc9\x70\x56\x73\x9c\xbd\xd3\xd4\xa1\xe1\x6b\x7c\x11\xff\x55\xcd\xe1\x49\xb3\x1c\x1c\xa8\x58\x05\xd7\x11\xbd\x31\x87\x0e\xfc\x47\xa1\x1f\xa8\x06\x1e\x59\xbf\x3f\x82\x35\x04\xe2\xe0\x82\xea\x11\x65\xee\x5b\x01\x3a\x54\xd3\x0b\x2f\xfc\x2e\x79\xc0\x92\xf0\xad\xc6\x4c\xca\x3c\x7e\x76\xde\x04\x61\x06\x37\x60\x62\x77\xc8\x46\x54\xb0\xfc\xb3\xaa\x7c\xb1\x8e\x88\xd5\x87\xef\x67\x74\x8b\x3f\xfd\x0e\x13\xa0\xb5\x30\xed\x11\xfa\x7b\x5c\x8c\x3b\x8a\x66\x06\xa7\x29\x5f\xb7\x14\xd3\x9f\xed\x9a\x2c\xb2\x76\x32\x53\xef\xdb\x5d\x96\x5a\xf4\x5d\x7a\x67\xf8\xc9\x67\x1c\x3c\xc7\xac\x24\x14\x86\x55\xcf\xc3\x04\xec\x81\xef\x44\xba\xd7\xaa\x22\x3d\x4a\x72\x26\x26\x75\x92\xb6\x9e\xd2\xf3\x0d\x68\x62\x08\x5b\xfc\x1a\x51\x4b\xd4\x04\x64\xb1\xab\x81\x33\xc7\xcf\x7c\x58\x2a\x6a\x0b\x24\xd2\xf8\x13\xc1\x63\x2a\xc9\x14\xe5\x08\x65\x71\x88\xc1\xe4\xf0\xf5\xd4\xff\x5d\x3e\x32\xf9\x4f\x79\x5e\xa4\xef\x63\xa5\x60\x82\xae\x22\x03\x23\xde\xa1\xb7\x72\xc3\xa7\x7a\x3e\xcb\x31\x43\x5d\x46\x08\x92\x4f\x61\xe6\xe1\xc1\x3e\x24\x4d\x0f\x07\x05\x70\xc4\xfa\xe7\x75\x5a\xeb\x21\xdc\x51\x46\xe2\xa1\x74\x8a\xef\x3d\x06\x67\x85\xe3\x54\x72\xcd\x25\xad\x42\x2e\x37\x02\x1a\x84\x6a\x58\x27\xb3\x53\xb8\xc9\x70\x86\xde\x0b\x7c\xdf\xcc\x87\xd4\x54\x85\xb4\xdc\xd7\x10\x0a\xe0\xd0\xbf\x0b\x5f\x1a\xd5\xc9\xed\x4c\x5e\x0c\x9c\xd1\x87\xd4\xd3\x85\x61\xb9\x81\x76\x27\x91\xa3\xa1\xf1\xa7\x09\xfc\xaf\x7e\x04\xe5\x10\x58\x9f\x33\xb0\x7d\x34\x60\xff\xdd\xd3\x3d\x6a\xac\xe2\x2d\xd4\xc6\xc1\xea\x78\x55\x31\x51\x42\xa6\xea\x53\xb5\x47\x54\x03\x30\xe9\xed\x54\x2e\x1a\xe5\x11\xf0\xf4\x33\x3d\xd5\xc6\x7e\x56\x7d\xf0\x42\x5d\x72\x4d\x2c\x53\x16\x9b\xc9\x04\xc8\x4c\xa7\xf9\xe3\x99\xd4\x4a\x5f\xa1\x5a\xb1\xfb\x6a\xc0\xcc\xea\x45\x58\x2f\x99\x3e\x81\x14\xd2\x4d\xb2\x05\xb0\x2a\xf7\x68\x8f\xa2\x44\xb0\x4b\x29\x46\xec\x23\x3a\x6e\x56\xc2\xc0\x39\x85\xd0\xf0\x0a\x0d\x2f\x36\x18\xf2\x52\x38\x70\x7e\xb7\x54\x39\xa8\xcb\x3a\x57\x3b\xdb\x00\xad\x11\x39\x1c\xb5\xb0\x87\x49\x5c\xc3\x1c\xd4\x28\x63\xbd\x33\xb6\x11\xc6\xb1\xcb\x8c\xb1\xf4\xa6\x6a\x58\xc2\x66\x66\x4a\x72\xe5\xad\xa7\x23\x9b\x27\x69\xd8\x57\xe9\xd1\x53\x2a\x3d\x7a\xaa\xf4\xa8\x3c\x15\xa9\x22\x9a\xc7\x50\xa1\x1b\x05\x9b\xe7\x53\xe4\xa8\x62\x61\x5e\x51\xe9\x92\x33\x1c\x72\xba\x98\x78\xff\x82\x47\xee\xbc\xe0\x18\x9f\x2f\xea\xba\xde\x65\x72\x37\x10\x00\xdf\xc2\xbe\xc2\xea\xdd\xd1\xf3\xf3\xc4\xdc\x77\xe2\x75\xf9\x0c\x66\x18\xaf\xdb\xac\x3a\x7d\x70\xe2\x73\x1d\x47\x59\xb4\x4b\xaa\x59\xe4\x1d\xcd\xf2\x7b\x15\xfb\x06\xce\xc4\x07\xa5\x57\x9f\xfb\x5e\xc3\xe3\xac\x42\xa3\x91\x21\x0c\x8a\x30\x08\x7d\x1c\xa8\x96\xbc\xcb\x30\x2c\x82\x90\x12\xef\x25\xb2\x86\xb5\xe8\x91\xad\xb9\xaa\x08\xce\x58\x5d\x0c\x43\xc8\x38\x54\xce\xb9\xd3\x78\x02\x94\x01\xb6\x1c\xfc\xe2\xd6\x98\xb9\x5a\x87\xd2\x4a\x49\x3f\x0f\xe7\xa5\xa3\xac\xe4\x2c\x08\xe3\x05\x70\xde\x52\x51\x1a\x99\x78\xb0\x95\x68\xf7\xed\xd2\x77\xb4\xbe\xad\x12\x78\x59\x5e\x0c\xc4\x15\x66\x09\x63\x45\x3f\x75\xa9\xdc\xeb\x51\xfd\xab\x4f\xab\xde\xef\x27\x7a\x64\x51\x81\x71\xbe\x42\x89\x2e\xde\xe2\x9a\x32\x73\xb6\xe7\xdb\x98\xc0\x04\x27\x8d\xf5\xbe\x4d\xe8\x2f\x03\x95\x44\xba\xaa\xc1\xeb\xff\x8c\x12\x12\x58\x76\x42\xe0\x2e\xbc\x4f\x1d\xa7\x3b\xb5\x63\x4a\xa7\x81\xf0\xf5\x6a\xe7\xb4\x5a\x83\xcc\xb2\x3f\x55\x98\xc0\x4f\xf7\x14\x04\x12\x3d\x58\xf0\x9e\xb7\x01\xaf\x0e\xe7\x84\x69\x93\x04\xfa\xe2\x81\x13\xc3\x91\x89\x0d\x05\xa3\x82\xcd\xae\x7e\xd3\xc9\x60\xf8\xbe\xab\x5a\x0f\xfa\x78\x1c\x66\x59\xe5\xf5\x79\x30\xdd\x4d\x45\xb3\x36\x33\x55\xae\xd8\x17\x03\x9d\x94\xe6\x64\x86\x40\x43\x5b\xc8\x1e\x56\x8a\xc1\xd0\xa7\x45\x01\xf5\xb8\xac\xb8\xd5\x2f\x2b\x68\xda\xf3\x8b\x07\xe1\x5b\x60\x0f\x82\x46\x51\xc6\x5b\xf9\x8d\xd7\x1b\x51\xd0\x2f\x77\x57\x92\x34\x4d\x36\x28\x46\x43\x3e\x19\x02\xa8\x78\xdd\x8f\x68\x18\x64\x7f\xfa\xa4\xb4\x8d\xd1\x9d\x94\xe1\xe9\xb0\x88\x3f\xc2\x59\xc5\x37\xaa\xec\x3a\x49\x6d\x75\x14\xa8\x42\xde\x1d\xec\x0a\xbe\x69\xe4\x5b\xf6\xef\xef\x52\x2f\x79\xa6\x0b\x63\x9c\x70\xe1\x1b\xd5\x9a\xb2\x99\x14\xf1\x10\xed\x90\xbe\xf4\x7f\x4e\x35\xad\x9d\x73\x75\x2a\x13\x0d\x6d\x1a\x1a\x94\xfe\x05\xe1\x4a\x03\xc4\x37\x8d\x64\x0b\x61\x95\x63\xe3\x93\x2d\x52\x28\x55\x50\xcb\xd3\x8d\xca\x2c\xb5\x03\x8c\x27\x45\x6e\xd3\xf0\x55\xee\xcd\x73\x5a\xbe\xbe\xbd\xf1\x82\x3a\x46\x5b\x9d\xcd\xfe\xc8\x4c\x08\xcb\xad\x15\xdd\x3c\x48\xa8\xde\x20\x9c\xa7\x49\x94\xd1\x52\x84\xe5\x7a\x9f\xf2\x0a\x30\xe4\xec\x7b\x60\x41\xdf\x55\xb1\xed\x36\x42\xc0\xf2\x1f\xd5\x9a\xd3\xad\x29\xc0\x09\x85\xf4\xc7\x2b\xd4\x47\xed\x24\x60\xab\x79\x41\x44\x77\x8e\x8f\x12\x8c\xc5\x7d\xcd\xff\x1b\x28\x95\x01\x86\x36\x0b\xbb\xb1\xaf\x0b\x1f\x85\xe7\x27\x3d\x65\x4f\x6f\x61\xe6\x27\xbe\x44\x62\xbf\x11\x51\x2c\xfa\x6d\x59\x3a\x1e\x22\x0d\x71\x61\x57\x1b\xdc\xbf\xe0\xb6\xf9\x13\xae\x7e\x10\x4e\x26\xce\x86\x0a\x32\x4d\x43\xd6\xc4\x79\x59\x0d\x6d\xda\x47\xea\x0b\xae\xc8\x63\x3d\x5f\x9d\x79\xac\xa6\xeb\x3d\x08\xf9\x11\x69\x41\x38\x4d\x2d\x07\x82\x78\x5f\xf9\xb2\xa7\x6f\xd6\xc4\xb6\x74\xd7\x4a\x13\x7a\xb8\xd4\x9d\x14\xf1\xa6\x4a\x76\x1d\x51\xc9\xae\x23\xaa\xbd\x97\xc8\x68\x23\x13\xa3\x9f\x41\x08\xc8\xbc\x8a\x53\x53\xdc\xe6\xc0\x81\x6e\x14\xae\x58\x54\x35\x3b\x3e\x78\x01\xe2\x5c\x34\xb7\x55\x7b\x72\xb2\x6e\x53\x1b\x0e\xe3\x7c\x53\xd1\x90\x5d\x54\x98\x90\x8b\xe5\xa7\xea\x09\xd0\x67\xba\xbf\x76\x50\x51\x55\x7c\x53\x15\x74\xbe\xd9\x62\xee\x0e\x76\x27\x36\x1e\x6c\x21\x2e\xd9\x36\xf5\x1f\xda\xd6\xf3\xed\x96\x1b\x36\xb5\x9f\xa9\x3c\x3a\xd4\xb1\x41\xd0\x00\x2b\xfb\x71\xe0\x19\x2b\x5f\x7f\xba\xe7\x53\xae\x67\x02\x05\xeb\x7d\x72\xaa\x02\x56\x88\x8c\x62\x43\x3e\x39\x55\x54\xc7\x52\x6e\xc6\x3f\xc1\xb9\x74\xf5\xa5\xc3\xf3\xec\xa1\x33\xd1\x34\x23\xaa\x4a\xc5\x9a\xf5\x93\x3d\x85\x8b\xd9\x8b\xb3\x00\x47\xff\xb5\xd2\x53\xf5\xe2\x08\x45\x80\xf5\xd4\x54\x95\x5b\x1e\x06\x1e\x8d\x76\x8a\xbc\x5f\x78\x80\x7f\xc3\x09\x7a\x71\x98\xb7\x0e\xe6\x4b\x2f\x91\x04\x42\xb8\x6e\x63\xd4\x4d\xe0\x55\x00\x9e\xe6\x48\xb3\x5d\xcb\x41\x13\xf5\xf2\x39\x32\xd8\xc6\x65\xab\x24\x09\x46\x03\xc8\x37\x81\x6a\xf0\xd9\x08\xb3\x6c\x87\x0f\xe7\xdf\x85\xb3\xe0\x3c\x9e\x6a\x3e\x78\xa8\xe0\x34\xf2\x9f\x95\xbe\x53\xf1\x7b\x18\x43\x9c\xfd\xef\xd6\x52\x61\xc6\x46\x8f\xfb\xf8\xef\x43\xd8\x0a\xc7\x4b\x5d\x7d\x37\x60\xd7\x77\x6a\x35\x14\xd6\x6f\x11\x44\x75\x35\xc1\x4e\x52\xba\x3a\x78\x84\x09\x9b\xde\x4f\xa0\xd6\x4a\xc3\x04\xcf\x23\x74\x43\x34\xa7\xfc\xf9\xd2\xc7\xaf\xb7\x14\xb5\xda\x04\xd6\x0d\x3b\x7b\x5f\xa3\xeb\x62\xe1\x50\xd7\xbe\x92\x0c\x0a\xce\x9e\x72\xc3\xa1\x32\xe5\x77\xda\x38\x53\x07\x66\xec\xcd\x15\x3c\x53\xc0\xcf\xf8\xba\xc5\x68\x3c\x4b\x88\x0f\xda\xa4\x38\x6f\xbe\xab\x34\x08\xbe\xab\x60\xc9\x26\x4c\xa3\x30\xb6\xbb\x14\x23\xdc\x65\x52\x47\x96\x60\x8d\x26\x11\x16\x9e\x61\x74\x7c\x13\xa8\x72\xdd\x8d\x40\x8b\x6f\xdf\x50\x49\x3f\x06\x5d\xf2\x8d\x6e\x8d\x24\xa1\xb4\x01\x72\x8a\xe2\x23\xe3\x5b\xf8\x2e\xf0\x47\x40\xb6\x19\x0f\xc2\x3e\xcc\x14\xcd\x3c\xce\x9f\xeb\x98\x45\xbe\x29\x6b\x1a\x7b\x63\x60\x16\x98\xee\x4a\x09\xce\x1f\x75\x99\x95\x64\x52\x44\xe2\x1f\x33\xab\x38\x0d\xab\x30\x8c\xcb\xdf\x91\x62\x64\xca\x4d\x95\x12\x19\xd0\x50\xf0\x4d\x23\xfe\x58\x9e\xef\xf6\x8b\x3c\xc3\xbe\xc3\xf1\xc6\x94\x20\x2c\x8b\x5d\xaa\x5e\xc0\xbb\x5a\x9e\x32\x4c\x27\x11\xb5\x50\x7c\x61\x41\x4a\xa1\xa5\x72\x11\x2f\x29\xf7\x3e\x0a\x57\x52\xc3\x4d\x8f\x2e\x9b\xb6\xe8\x7d\x0a\x5f\x41\xcd\xc6\x26\xe7\xb6\x38\x4f\x9f\xf7\x1d\xbd\xb8\xbf\xd3\x6c\x4a\x58\x38\xd4\x8d\xad\x1d\x70\xed\x8d\xb5\xc1\x02\xe5\x5e\x9e\x55\x09\xe2\x30\x4d\xe2\xb0\xaf\xbd\x40\x4e\xeb\xf3\x4d\x8b\x3e\x5a\xd7\xc4\x39\x39\x8f\xd8\x0b\x82\x7c\xd5\xb8\xa4\xe6\xba\x5e\xe8\xae\x5a\x24\x99\xda\x05\x64\x5c\x53\xef\xf0\xe7\xf1\xae\x2e\xde\xd3\xa9\x6b\x95\x0c\xb5\x79\x1e\x91\xf4\xc5\x4e\x55\xd6\xbd\xa6\x6b\xc3\x1a\x04\xfb\xf5\x52\xfd\xf2\x1d\x0c\xa0\x94\x90\xbd\x75\x7a\x10\x28\xe4\xd1\xb5\x60\xcb\x89\x78\xe0\x40\xf7\x73\x4f\x57\x8f\x26\x49\x43\xfa\x7e\xd7\x3d\x59\xad\x6e\x6e\x3a\x0b\x54\x8b\xf1\x2d\xde\x1b\x8c\x94\x25\xfc\xad\xeb\x75\xf8\xd5\x17\x1c\x7b\x8e\x37\x71\xdf\x25\xdd\x02\x0e\x71\xf1\x44\x1c\x09\xeb\x46\xac\xd7\xd5\xab\xfe\x59\xa0\x48\x0e\x38\xaa\xc2\x54\x30\x52\x41\x88\x3d\x95\x60\xe3\xd7\xe9\x08\x11\x6d\x6d\xda\x8e\x9c\x4c\xa5\x73\x46\x80\x92\xd5\x11\x26\x5c\xc9\x2e\xb1\xd9\xef\xa7\x85\x1d\x90\xa7\x2a\x74\x43\x4a\x82\x83\x31\x07\x48\xca\x40\x1c\xbb\xc6\x25\x05\x83\xab\x99\x98\xc6\x49\x34\xc0\x76\x90\x6c\x9e\x2f\xc7\x1c\x6b\x63\xf0\x18\x15\xf1\x20\xb5\xe8\x40\x92\xaa\x82\xc2\x41\x21\xbb\x85\xd1\x3c\x45\xaf\x20\x0f\xf3\x98\x4a\xf8\xf7\xd7\xe6\xaa\x43\xd9\x3d\xb4\x37\x12\x77\xeb\x28\x6d\x1a\x1c\x27\xcb\xf6\xdc\xa2\xc3\x72\x7b\x7a\x9c\xd4\x0e\x76\x63\x9e\x39\x9f\xa8\x25\x6a\x2e\x29\x02\xa6\x3b\x8a\x2b\x7c\x17\xa9\x79\xe2\x91\xd9\x2b\x96\x2d\xe8\x95\xb6\x4e\xc0\x8a\xc0\x16\x7d\x03\x4f\x29\x8e\x74\x1b\x7d\x41\x16\xc6\x7d\x9b\xda\x19\xef\xfa\xa2\xe5\xd7\xf9\xac\xbf\xf2\x1b\x8e\xb8\x42\xd5\x89\xc2\xfe\x5a\x31\x81\xc5\x60\xbe\x78\xf8\x5b\x42\x1e\xbf\xcf\x67\x5a\xb2\x7c\x0f\x79\x5f\xe8\x2b\xf8\x6f\x4b\xa5\x57\xcc\xb3\xe0\x38\x82\x3c\x12\x16\xc9\x21\x20\x40\x9e\x9a\x52\x1a\x17\x4f\xb7\x17\x99\x13\xf2\xb5\xff\xf7\x9f\xa5\xd5\x82\x4f\x50\xb2\xf6\xd1\x15\xc5\x63\xf2\xf8\xb4\xc6\x99\x92\x0e\x32\xc5\xcc\x73\x4c\x99\x93\x63\x5b\xe9\x4e\x0f\xcf\x77\x0f\x3d\xff\x53\xd5\x77\x63\xbb\x6e\xef\xd5\x08\xcb\x68\x50\xf1\x6c\x25\x39\x6d\xf0\x22\x6e\x90\xd3\x86\x28\x00\x6a\x69\xf8\xf4\x1d\xda\xac\x88\x63\xbf\x83\x64\x2f\xd2\xde\xac\xb5\xee\x5a\x68\x7f\xfd\xf3\x9c\x0e\xbb\x8a\xba\x86\x20\xa4\x2b\x23\x82\x3f\x3a\x45\xe5\x28\xfc\x1c\x4b\x31\x23\x1d\x72\x8b\x8c\x00\x93\x27\xd2\x9a\xc1\xf5\x15\x68\x2f\xf2\xef\xb1\x6d\x11\x46\xf9\xca\x9e\x20\xbc\xe0\x84\x8f\xee\xe2\xc2\xf7\x5e\x81\x6d\x92\xf3\x4f\xf5\x7a\x31\xce\x0a\xa6\x76\x66\xaa\xb0\xb3\x37\xb0\x03\xf0\x2a\x27\x03\x78\xaf\x0e\x44\xe1\x0b\x92\xef\x6b\xca\x63\x9b\xad\xb1\xb3\x84\x08\xe9\x07\x81\x8f\x96\x7e\xd0\x38\x20\x3e\xd7\xcd\xac\x1d\x8b\xc3\x8a\xea\xcd\x37\x61\x2e\xf8\x46\xe5\x6d\x1c\x95\x05\xe0\x1c\x88\x18\x4f\xa9\x48\xf2\x54\xa3\x3b\xa6\xfa\xfe\x74\x1d\x9d\x35\x08\x21\x98\x2b\x12\x89\x1e\xe0\xfd\x30\xa3\xd7\x55\xfb\x40\xdf\x64\x7d\x33\xb0\x78\x2a\x24\x54\x00\xa4\xe7\xeb\x36\x2a\x2e\x1b\x0f\x92\x34\x93\x5e\x2a\x96\x99\x80\x39\x10\xcd\x09\x25\xee\x62\xe2\x35\xcb\x6d\x7a\xa2\x00\xad\x1a\x9d\x2e\xab\x16\x6e\x1b\x0f\xc3\x18\x40\xf1\x39\x9f\x01\xff\xa1\x4a\x5e\xbf\x47\xa6\x4e\xd2\x0c\xf4\x35\x70\xcf\x99\xf2\x41\xb8\x89\x9f\x54\xa4\x20\x59\xb2\x6a\x52\x38\xa8\xa8\x0b\xc1\x29\xe6\x6b\xa5\x18\x50\x64\x9c\xc6\x60\x62\x66\x7c\xbf\xb0\x34\xb7\x50\xd5\xa4\x89\xa7\xdc\x15\x92\x67\x9a\x50\x41\xb0\x3c\xe1\x90\xea\xe3\x30\x0a\x73\x30\x9f\xb8\x16\x66\x0f\x6e\x3a\xd9\x42\xd3\xb2\xd8\x4d\x6d\x6c\x84\x86\x95\xbf\xf2\x96\x02\x55\xbe\x87\x6f\x10\x74\xb0\xa3\x14\x4a\x92\x38\xb4\x33\x0a\xbd\x86\xec\x3f\x76\xe0\xf6\x9e\x62\x85\x6e\x12\x0c\x2d\x2e\x76\xb3\x0d\x33\xe1\x65\x2d\x3a\x47\x33\x5e\xd4\xe2\x42\x63\x3d\x10\x82\x6d\x92\xda\x71\x58\x8c\x55\x13\xca\x5d\xd5\x84\x72\x57\xc1\x3f\xb3\xb1\x89\x22\x9b\x91\x2a\x96\xfc\x02\x20\xf8\x7c\xdd\x10\x50\x5f\x38\xd4\x1d\xc7\x7d\x06\xee\x88\xa9\xa5\xb7\xe0\x1b\x55\xe6\x5b\x35\xc5\x2b\x78\x75\x69\xe3\xd0\xd9\xc8\xca\x78\x88\x4e\x7a\x0b\xf7\x7e\x6e\xc2\x48\x35\x13\x1f\x51\x28\x93\x23\xc0\xc5\x63\x99\xc4\x59\xd1\xef\xdb\x2c\x5b\x2d\x98\x98\x6d\x51\xd2\x92\xa5\x3a\x50\x6e\x07\x4f\xbb\x8f\x4c\x6c\xda\x1f\x45\x09\x31\x76\x78\x61\xfa\x0b\xa5\x06\xc7\xef\x53\x79\xad\x7f\xf0\x98\x3a\x9d\xcf\x2a\x0e\xed\xdb\x4a\x53\xe4\xaf\x4a\x9f\x30\x67\x49\x7d\x07\x28\xaf\x0c\xa0\x28\x13\x79\x79\xbe\x33\x81\xaf\xc7\xfd\x08\xbb\x03\xf8\xfc\x0d\x3c\xb9\x24\x42\x34\x71\xbf\x12\x7a\xfd\x2a\x65\xb6\x61\x3e\xcf\xeb\x3d\x36\x9e\x44\xa1\xc5\x51\x25\x22\xbb\x0a\x68\x71\xbe\xb1\xba\x7f\xa1\x6b\x07\xa4\x7a\xc7\x0c\x99\xc8\x72\x6c\xa3\x24\x09\x5f\x4f\x7d\xff\xe3\x06\x8a\x32\xa3\xa4\xc8\xa0\xd6\x02\x23\x73\xa4\xf4\x21\xe4\xbb\xf4\x96\x7c\xad\xfb\x22\x2f\x2a\xb3\x77\xbb\xd1\x14\xf1\xdc\x62\xb7\x88\xf2\xd4\xac\x87\x49\x64\x11\x6c\xb9\x78\x7c\xd1\x47\xdd\x35\x20\xa5\xd9\xdc\xa7\xa8\x2a\xde\xa3\x03\x14\x4e\x31\x73\x9a\x61\x1d\xff\x97\xaa\x1b\x14\x85\x74\xa9\x50\xd5\x2c\x04\x1d\x75\xc2\xa7\xac\xd4\xdf\x90\x17\x42\xf4\xb8\x6d\x4a\x7b\x85\xff\x2a\xf0\x60\x37\x66\x37\x11\x34\x50\x1b\xb5\x38\x49\x6b\xc5\x9d\x66\x7d\x49\xe2\x0d\x05\x36\x7e\xc6\x3c\x43\xb3\x81\x04\xd0\x0f\x4b\x95\x0d\xfa\x61\x0b\xb1\xcd\x6a\x0a\x32\x40\x25\x62\xfc\x8e\x52\x17\x7b\xa7\xad\x44\x94\x25\x45\x44\x4d\x47\x0a\x0d\x82\x1e\x41\xe1\x66\xdc\xeb\x3b\x66\x92\xc7\xbc\xbe\xe3\x8e\x9e\x52\xd1\xdb\x89\xa3\x1b\xa8\x22\x8e\x57\x61\xce\xb7\x4d\xb7\xff\x1c\xe7\x54\x01\x12\x43\x19\xe6\x3e\xb9\x33\xf8\xfb\x1f\xd0\x76\x12\x8d\xb9\xca\xe5\x81\xcf\x02\x89\x1b\x27\x90\x51\xb9\x03\x08\xb6\xe7\x7a\xaa\x86\xf3\xa7\x70\xff\xf0\x55\x0f\x1b\xf6\xf3\xc0\x81\x6e\xbe\x11\x66\xf9\xcc\x8c\xd6\x49\xf2\xfb\xe2\x7e\xe0\xab\x98\x17\x34\xb9\x72\x12\x0d\xf6\x54\xee\x10\xbe\xf8\x22\xf2\x39\x00\x56\x83\x4a\xc2\x55\xd4\xbd\x4a\xa8\xd0\xf6\x3b\x95\xc8\x65\xa9\x8f\x7c\xaf\xf4\x07\x0d\x88\x03\x60\x65\xee\x05\x1e\x76\xcb\x3c\x61\x30\x19\xb3\xbd\x4f\x69\x55\xa4\xe1\xc8\x11\xcc\x32\x7b\x47\x50\xa3\xf2\xf0\x84\x1b\x31\x23\xaf\x18\xe1\x4e\xaf\x27\x68\xf7\x4f\xa9\x50\x76\x6c\x62\x34\xc2\x57\x13\x07\xfb\xf5\xc5\xc0\x63\xfb\xbf\xf8\x89\xb4\xf6\xe3\x22\x1d\x58\x10\x19\xc2\x88\x41\x86\x13\x43\xcb\xbc\x1d\xc2\xe2\xea\x4a\x28\x83\x97\x4d\x5f\x24\x23\xa9\xac\xf4\xda\x53\x53\x87\x53\x7a\xed\xa9\x5e\x5b\x19\xc3\x4c\x20\x56\xe6\x16\x0d\x12\xe1\xa2\x12\xe2\x91\x07\x1b\x49\x1a\x0d\x36\xc2\x81\x85\xda\x3b\x82\xb3\xf3\x35\x66\xaa\xf3\x70\x86\x84\xa2\xcc\xfb\x2f\xe7\xcb\x7d\xbe\x71\xd3\x0c\x14\xdd\xef\xc7\x8a\xa6\xec\xe3\x52\x13\x9d\x27\x93\x24\x33\x51\xb6\x43\xe9\x83\xdf\xc2\xfa\x40\x81\xe1\x0d\x5a\xdc\x7c\xad\xb2\xbe\x57\xb4\x9a\x15\x6b\x31\x49\xdb\xba\xfe\x7e\xbb\x6e\x90\x6a\x7a\x4e\xe5\x2d\x96\x3d\xa6\x5c\xf3\x24\x85\x51\xf4\x14\x9c\x63\xd9\x64\xf4\x1b\xae\x95\x55\x4b\xe8\x7b\xd5\xb3\x5b\x81\x87\xa2\xb2\xa2\x30\xbc\xcb\x8f\x69\xff\x21\xc2\x07\xb2\x4e\xfa\x61\xe8\x65\x5d\x57\xa2\x13\x59\xbf\xac\x3c\x85\x33\xf0\xf3\x91\xfd\xf8\x1f\xaa\xa3\xe9\xd1\x19\xa0\xbc\x84\x0d\x82\x5e\x59\x58\x88\x15\x88\x6f\x8a\x80\x0e\x59\xd9\x2b\x0d\xbb\xf9\xcb\xa0\x06\x1f\x08\x3b\x1f\x60\x75\xef\x21\x62\xe6\x1b\xc5\xdb\xb3\x61\xd2\x31\xe9\x52\xb8\x6a\x13\xbd\xae\x54\x9e\xda\x1a\xea\x06\xa9\xd9\x00\xb9\x0d\x32\x15\x6f\xe0\x7d\x11\x63\x30\xc9\xbe\x0c\xf0\x13\xfa\x98\x35\x7d\x92\x18\x7b\x96\x87\xe3\x6a\xd0\xd1\x54\x7a\xbf\xfe\x79\xd7\xc1\xef\x29\xd8\xbf\x47\x87\x36\x5f\x07\x6a\xc9\xde\xfe\xe4\x3d\x67\xd3\xa1\x4d\x67\x68\x36\x45\x9e\xa0\xe3\x04\xf6\x18\xaf\xc4\xea\xde\x1e\x5e\x69\xc2\xc1\x4e\x0f\x7a\x39\x5f\xea\x55\x5f\xbd\xd1\xa3\x4f\x53\x79\x42\xc8\x3b\x15\x4e\xfb\x3c\x59\x38\x98\x2b\x06\x1b\xca\x8a\x7a\x4c\x05\xe5\xa0\x21\x14\xc7\xe4\x53\x3d\xf5\x48\xa5\xaa\x6c\xe1\xdb\x50\x65\xdf\x39\xf5\x91\xce\xba\x1d\x85\xfd\x08\x7d\x47\xdc\xe1\x4c\x6b\x14\x49\x98\x7f\xaf\xfa\xa1\xee\x69\x7e\x94\xd3\xad\xbc\x1e\xa3\xa4\x18\x8e\x60\x60\xdc\xe9\xad\xa4\x11\x02\x61\xc2\x0d\xe3\x2c\x37\x51\xc4\x55\x2c\x97\x4b\x7f\x23\xa8\x91\x28\xb5\x50\x95\x0c\x6c\x16\x0e\xe3\x5a\xb7\x22\xe4\x57\xf8\xba\xe1\x87\x57\x11\x43\x3f\x89\xfb\xa9\xcd\xad\xa2\x0f\x41\x0e\x52\x90\xdf\x92\xdf\x1a\x9b\x74\xdd\x46\x82\x86\x97\x02\x9f\x8a\x65\x2f\x2a\xe9\x95\x55\xb3\x9e\xa4\x61\x0e\x22\x71\x4d\x73\x00\xef\xfe\xa2\xf2\xf4\x2f\x96\x1a\x72\x76\xb9\x8d\x4c\x7d\xa5\x18\xf0\x5b\x71\x48\x1d\x78\xcc\xfa\xfb\x5a\xf4\xbc\x48\xc3\x4c\xda\x2b\xd0\x0f\x79\x16\x3b\x83\x6f\x94\x90\x81\x89\xf2\x64\x68\xf3\x91\x74\xa6\x73\xff\x48\xe0\x69\x4b\x2e\xa8\x10\xc4\x8c\xc7\x49\x4c\xd1\xca\x27\xb8\xe2\xb5\x12\xf3\x24\xdb\xe9\x19\xf8\x79\x8c\xe4\xc0\xc1\xf0\xe1\x68\x9e\x2a\xc6\x27\x94\x62\x01\x68\xb8\x8f\xfc\x01\x7f\x3e\xf0\xb8\xbf\xa6\x86\xf4\x73\x8b\xdd\xdc\xbc\xe2\xd7\x8a\x48\xfa\xd1\x5a\xe1\x9b\x96\x48\x71\xa1\x3b\x31\x9b\x49\x21\x63\xe5\xda\x45\xb5\xda\xdf\x93\x1e\x24\x9f\x85\xe3\x90\x0f\x3a\x8c\x24\xb0\x18\x7c\xed\x76\x5c\x11\x6f\x84\x19\xfe\x4c\x04\x66\x35\x90\x46\x50\xf7\xf6\x95\x49\xe5\xcb\x4b\xfe\x5e\x98\xa0\xc9\x48\x09\x45\xb4\x16\x86\xa5\x0d\x91\xdb\x01\x9d\xe8\xa8\x71\x75\x28\x25\x86\x24\x08\xbc\x36\x3c\xcb\x4d\x05\x39\xa3\xc6\x73\xf1\x49\xf0\xa7\x67\x02\x45\xd5\xd9\x46\x25\xbb\xd4\x1d\x87\x91\x5b\xe4\xc8\x07\xb1\x2a\x12\xdf\xb4\x54\x79\x97\xba\x2b\x26\x5e\x73\x7e\xad\xb4\x5e\x76\x5c\x33\xfa\xf6\xde\x27\x51\xca\x66\x76\xdd\xa6\x26\x02\x9d\x13\x16\xc2\x9e\x69\x6d\xcf\x38\x00\x26\x8a\xff\x22\x1c\xe2\x0b\x93\x3f\xd6\x53\xf2\x7f\xb6\x9f\x8c\xc3\x78\x38\xeb\xf3\xe6\xf7\xe8\xbc\x74\x40\x1b\x97\xec\xbb\x57\x47\x68\xfb\x13\x7b\xc5\x73\x87\x33\x79\x3b\xb6\x90\x30\xb9\xfb\xfa\xb9\x7d\x65\x12\x99\x98\xcb\x58\x95\x95\x55\x1c\xda\x0b\x7f\x5b\x9f\x68\xb5\xeb\xcc\x84\x89\xae\xe0\x31\x03\x00\xc2\xd7\x8d\x8e\xf2\x03\x07\xba\xfd\x34\xd9\xe0\x94\x10\x0e\xe1\xdf\x51\x82\x5c\xbf\x53\x85\xc2\xce\x71\x34\xb3\xd5\x2b\xbb\xce\x78\x0f\x55\xbd\xae\x88\xb7\x6a\xed\xf3\x8a\xf4\x18\xfe\x69\xb5\x29\x90\xfd\x40\x11\x8a\xaf\x9d\xbb\x58\xc4\x6b\x71\xb2\x11\x67\xc4\x25\xd1\xda\x39\xa5\xab\xbd\x93\x30\x26\x43\xc8\x61\x30\x9d\xf5\x9e\x26\x69\xc9\x2b\x9c\xfa\x2a\xda\x79\x55\xfe\xcb\x93\x24\xca\x66\x7d\x37\x62\x87\x82\x5e\xe4\xe8\xee\xe0\xfd\xf8\x1f\x50\x68\xe7\x7f\x51\x58\x8a\xb1\x09\xe3\xd5\xd4\x8c\x2d\xfa\x4c\xa5\x6d\xc2\x2f\xa2\x6b\xec\x8b\xc2\x0d\x3c\x01\x0c\x32\xff\x99\xd2\xbd\xff\x48\x57\xe1\xec\xc4\xa4\xa4\xa7\xa3\xc4\xfc\x58\x38\x88\x6f\x28\x74\x70\x3c\xe9\xcf\x79\x24\x36\x99\x37\xf8\x23\xf7\x83\xa7\x43\x09\xde\xd6\x6d\x4a\x2d\x54\x99\xe5\x68\x08\xaf\x35\xdb\xf3\xfd\x69\x80\xe3\xe1\x31\x1f\xa8\xc2\x6f\x65\x20\xc2\x2c\x9c\x51\x14\x16\xb7\xf8\x9d\xc4\xeb\xa0\xd1\x15\xa2\xa0\x16\xa6\xae\x51\x12\x27\xd0\xda\xc1\x7c\xdc\xa8\x31\x0b\xf9\xa6\x07\x8d\x01\xcb\xf2\x34\x89\x87\x3b\xaa\xc9\x45\xd4\xcb\xf5\x2f\xec\xb7\x3f\x41\x56\x04\xc7\x09\x9a\xb4\x61\xa6\x3e\x40\x14\xce\xbc\x7f\x5a\x29\xf1\xbc\x3b\x6f\x53\xe8\xbb\x63\x20\x98\x76\x45\xa5\x72\x8e\x62\x97\x71\x33\x87\xee\x8b\xcb\xcd\xea\xaa\x4d\xb3\x5d\x8a\x8a\xe6\xb8\x16\x17\x3d\xc1\xe3\x82\xcc\xcd\xff\x08\xbb\xeb\x84\xe5\x9c\xf4\x34\xe7\x77\xf0\x6b\x1c\x0b\xf0\x4d\xe0\x8f\xad\xef\xb6\xb1\x96\xda\x62\x32\x4a\xd2\xd0\xcc\x28\xaa\xab\xd3\xaa\x93\xff\x1d\x58\x54\x98\xf2\xb7\x54\x8f\x54\x66\xcd\x30\x35\x63\xec\x3f\xb1\x59\x6a\x40\x2f\x37\x78\xda\x0f\xcf\xbf\xd8\xad\xd6\xcd\xc6\xc8\x46\x63\x87\x4b\x66\xd4\x4c\xe9\x51\x63\x8f\xd3\xf1\x8a\xb7\x7c\xa8\x0e\xf6\xb1\x89\x6d\xb1\xce\x49\x5c\x44\xb9\xff\x0f\x61\xef\x1a\x24\xc9\x95\x9d\x87\xcd\x54\xf5\x0c\x06\x18\x60\xf1\x26\xb5\x92\x6c\x95\x65\x86\xd7\x0a\x83\xe3\x90\xc3\xb6\x6c\xfd\xc9\x52\x77\x73\xc1\x19\x92\x8d\x76\xcf\x70\x40\x23\x1c\x61\xdc\xca\xba\x5d\x95\xe8\xac\xcc\xda\xcc\xac\x6e\x34\xc2\xbf\x64\xff\x50\x38\x18\x0a\x59\xb2\xf4\x4b\xb6\x68\xda\x92\x48\x5b\xa4\x49\xee\xf2\x21\x31\xc8\xea\xdd\xe5\xee\x92\xbb\xd8\x5d\x3c\x16\x58\x00\x03\x60\xe7\xfd\xee\x79\xbf\x67\xd0\x70\xe4\xf9\xce\xb9\xf7\x64\x67\x0e\x1d\xb1\x11\x9b\x89\xe9\xaa\xca\xc7\xbd\xe7\xf9\x9d\xef\x3b\x4a\x96\x81\x8f\x1b\x6a\xf2\x3d\x93\xc5\x76\x9d\x5d\x84\x70\xac\xb4\x1c\x21\xde\xf9\x8a\xef\x1a\x99\x6c\xa5\x4c\x12\x67\x5a\x5f\xfa\x92\x9e\x01\x92\x12\xcc\x5b\x53\x45\x30\xfb\x21\xf6\x1d\x22\xaf\x7b\x35\x2b\x38\x7f\xa8\x53\xa4\x85\x89\x67\x3c\xcc\xef\x5f\x07\xbe\xdf\xf9\x00\x7d\x16\x51\xf7\x50\x9c\x54\x17\x9a\x18\x41\x4c\x41\xc2\x5b\x85\xa4\x2c\xd2\x30\xa0\xcf\x49\xc7\x60\x7b\x61\xf5\xd5\x57\x3b\xeb\x36\xdf\xdd\xfa\x45\x09\x13\xde\x55\x78\x97\x33\xd4\xdb\x41\xc7\xe8\x27\xf4\x10\xf1\x35\xbb\x50\x40\x76\x12\xd0\x0e\xca\xf4\x0b\x37\x6b\x17\x46\x44\x63\x19\x51\xe0\xd9\x6d\x34\x2d\x81\xa6\x69\x99\xfe\xcd\x87\x78\xd4\xbe\x59\x5e\x5e\x4f\x22\x17\x10\x21\x88\x62\xb0\x2e\x9f\x28\x28\x46\xdf\xe6\x61\x16\x8d\xc5\x87\xbd\xc2\x57\xc9\xab\x8e\x4f\xaa\xd0\x9d\xcc\x7e\x51\x19\xa7\x3d\xdd\x96\xe3\x72\x3a\x51\x41\x94\x20\xb5\xc5\x86\xdf\x43\x78\x44\x06\x0f\xe1\x3d\xc1\x46\xee\x41\x5f\x1a\xaf\x7c\xef\x46\xeb\xcb\x2f\x3b\x70\x49\x69\x89\x60\xf4\xde\x85\xc1\xc4\x92\xbc\x43\x2e\x03\xa0\xe5\xdd\x1b\x65\x7a\xc4\x22\x36\x68\x94\xe1\xf9\xdc\x41\x43\x8c\x33\xb1\xa0\xf5\x73\xbf\xc2\xd1\xf6\x6d\x6c\x77\x54\x4c\x9f\xe8\x2a\x34\x0b\x68\xd9\xd1\x0d\x69\x77\xd5\x90\xd1\xe7\x6a\x92\xf6\x3e\xa5\x3f\xf8\xf4\x7b\x5a\x7e\xf3\x26\x1b\x15\xa1\x05\xa7\xf2\x23\x2e\xf8\x83\x69\xfb\xe0\x7f\xfb\x4b\xc2\x1d\xab\x68\xdd\x8a\x4c\xaa\xe7\x8e\x2b\xc2\xeb\x6a\xd7\xd0\x7d\x4b\xb3\x9d\x49\xd2\xb7\x59\x98\xd2\x76\x5d\x5a\xf4\x93\x73\xbe\xdf\x1d\xfc\x94\x9e\xb3\x67\x1c\xb3\x9b\x1d\xc5\x32\xbd\xa0\x96\xec\x05\xcf\xa5\x6d\xfa\x03\xa6\x33\x75\x44\x2f\xce\x60\x9d\x9b\xea\x69\xd4\xa8\x48\xb3\x1c\x74\x4b\x5c\x1c\xa9\xf0\xfb\x3d\xa5\x48\x2e\xb2\xd2\x9b\xcd\x54\x1a\x2b\x95\xe2\x7f\xcb\x4b\x09\x04\x95\x46\x40\x25\x9f\x78\xbd\x78\x56\x71\xd6\x7d\xac\xa7\x9f\xce\x06\x8a\x21\x0d\x23\x12\xa8\x06\xbf\xa5\xcb\x2c\x2c\xe2\xc4\xce\x80\xe2\x0f\x57\x1c\x59\x92\x4a\x1c\xd8\xc2\xdc\xb4\xfe\xcb\x6e\x31\x5d\x84\x59\x72\x21\xe9\xfc\x21\x4e\x7b\x7e\x44\x6b\xd4\x51\xe8\x94\xcb\x9d\x95\x53\x70\x97\xf8\xab\xff\x2b\x50\x84\xda\x97\x38\x01\x42\x39\xf2\xfb\xd8\x30\x58\x9a\xff\x32\xf0\x1c\x94\x1f\x2b\x34\xff\xcf\xfe\xec\x5f\xc5\x67\x44\x21\x15\xf9\xa2\x93\xcd\x2e\xef\x5f\x26\x47\x95\x3c\xc1\x07\x68\x69\xc0\x4e\x82\x05\x03\xa6\x11\xb2\xba\x28\xfe\xbe\x4f\x8a\x50\x78\xc9\xf7\xb1\x2f\x91\x82\x71\x6f\x5a\x98\x5e\xe9\x0e\xa4\x6b\xd9\x72\x5f\x7b\x93\xc0\x2a\x4e\x03\xb5\x7c\x4a\xa8\x55\x54\x0a\x32\x6f\x51\x1c\x84\x28\xfe\xdb\x34\x46\xc5\xf0\x1b\xe0\xbd\xf8\x07\x15\xf1\xc1\xf0\x1c\x1e\x3f\x4e\xfe\x0f\x7a\xab\xb0\x30\x98\x49\x61\x44\xa1\x46\x2f\x71\x0d\xc4\xad\xc7\xc3\x32\x13\x3e\xb3\x51\x86\xa8\x42\x5c\xe0\xb0\x62\x93\x22\x4c\x47\x76\x46\x13\xc9\x79\xe8\x8c\xc1\x70\x1a\x5e\xec\x0c\x20\x9e\xd2\x96\x70\x7c\xde\x51\x38\xf4\xf0\xc8\x7f\xfe\x57\xbb\x1e\xc1\xf7\xe4\x86\x9a\x35\x3f\x55\x19\x72\x55\xb8\x9d\x0b\x9a\x27\xfe\xad\xa9\x1e\xe2\xeb\x4f\x66\xb4\x5c\xbb\x02\xbf\xfe\x82\xe6\x10\x38\x13\xe8\xb8\xb0\x49\x84\x3b\x4e\x73\xde\xd3\x22\xd0\xaf\xd5\xfa\xa7\xcf\xc8\xde\x4f\x93\xd5\x28\x84\xd0\x4e\xf9\xe4\xb0\x83\xce\xea\xe6\xca\xd9\xda\xfc\x73\xe9\xa9\xfa\xa2\x5e\x47\x8b\xd0\xc9\x39\x3b\xf6\xf9\x63\x81\x87\xd6\x94\x66\xeb\xb9\x72\x21\x60\x19\x5d\xa1\x3f\x63\x5e\x45\x5c\x96\x60\xc5\x69\x1d\xa1\x89\xf8\x8f\xb0\x26\x91\xca\x1d\xc7\x9a\x44\xf0\xfb\x35\xd4\x73\x61\x2f\x5a\x5d\x9f\xf0\xdd\xa2\x3c\x91\x39\x33\x2a\xac\xbb\x81\x6a\x84\xa1\xea\x29\x89\xb0\x0f\x78\x6e\x04\x55\x12\x57\xd7\x46\xbc\x89\x8d\xe6\x16\x98\x63\xc3\xd8\xd4\x5c\x4b\xdf\xc2\x1b\x16\xab\x49\x6f\x58\x66\x31\x7d\x58\xe4\xd2\x91\x7c\x77\xf9\x03\x42\xfe\xef\x9f\x1b\xcb\x15\xb3\xa0\xaa\x22\x1b\x44\x95\xd2\x09\xad\x7a\xb0\xa5\x1e\x14\x8a\x01\x70\xdc\xed\x1b\x53\x28\xb4\x08\xbd\x4d\xf9\x15\x70\xcb\xa7\x70\xb9\x32\xfb\x49\x0f\x4b\x78\xb0\xe8\xcb\xf1\x7e\xae\x29\x98\xc5\xd8\x66\xcb\x69\x86\x50\xd3\xb7\xd8\xee\xc1\xdf\xba\x29\x1b\xe7\x49\xeb\x82\x90\x73\x73\x9d\x71\x79\xff\x93\xb8\x55\x99\x38\x3a\x70\x40\x8e\x9b\x40\xb3\x3c\xe6\x5c\xd5\x48\x55\x14\x16\xdb\x3f\xb2\x34\x4b\x3d\x50\x9b\x01\x08\x8f\xb7\xfe\x23\x3c\x31\x3e\xa9\xd5\x72\xe7\x0f\x75\xc2\xcc\x52\x3e\x1f\xe5\xf8\x29\x6e\x27\x2b\x8d\xe8\x73\xc1\xf6\x10\x7c\xfe\x50\x27\x1a\x24\xe9\x28\x4a\xa2\x74\x92\xb3\xf4\xb7\xab\x24\xfa\xaa\xa2\x4b\x9e\xe3\x34\x19\x14\xd1\x08\x8c\x7a\x8c\x41\xa3\xa2\x87\x43\x93\xb9\x2c\xe7\x29\x60\x34\x44\xbb\xd4\xe1\xad\xa2\xa4\x6f\xda\xb4\x1b\x2a\x85\x48\x87\x4d\xf5\xf1\xe6\x7d\xc5\x8c\x5a\xa4\x6b\x1c\x3a\xa0\xec\x0b\x44\x19\x1f\x6b\xe1\xe8\xfe\x6b\x44\x44\xbd\x5b\xcd\x91\xc2\xbd\x49\x9f\xca\x17\x9f\x7f\x0b\xbf\x8c\x2c\x97\x4b\x45\xae\xb3\xb5\xe4\x79\x9c\x9a\x44\x7d\xd2\xe5\xe5\x28\x8c\x4c\xdc\x4f\x47\x2d\x8d\xf3\x46\x07\x9a\x8f\xd5\x34\x8c\x49\xc2\x61\x4a\x00\xf6\x72\xe5\x09\xcc\x80\x56\x9e\xe0\x0f\x1a\xad\x94\x35\x60\x3d\x54\x93\xea\x67\x15\xb6\xb6\xb9\x10\x36\x4c\x7b\x3d\xa0\x4f\x98\x12\x3e\xa8\xf0\xc3\x2b\x78\xc6\x24\x24\xd5\x41\x14\xb1\x60\x5b\xff\x1f\xdd\x61\xbd\x44\x28\x0a\xb7\xc9\xbc\xe6\xe3\x15\x15\x59\x5e\xd6\xdf\x18\x9a\xc4\x47\x6d\x3a\x35\x15\x98\x8d\xe3\xdd\x33\x59\x11\x85\x93\xd8\x64\x33\xbe\x4a\x7a\x02\x1b\x59\x87\x87\xf8\x1c\xb8\x4e\xb0\xa7\x1f\xdd\xa8\x50\x53\xd8\x88\x6e\x95\xb3\xfd\xa0\x52\x2b\x78\x5e\x13\x47\x94\x01\x25\x54\x84\xcb\xdd\x2b\xfd\x20\x5a\x8a\x78\xd5\x3b\xba\x6a\x4c\x53\x8f\xb3\xfd\xec\xdf\xf9\x2f\x68\x2f\xca\x7c\x71\x69\xa6\x65\x10\xd1\xd1\x5d\xa5\xa5\x3f\x31\x85\x85\xac\x20\xfc\xe9\x4d\xb8\x07\xd4\xbb\x79\x40\xda\xc9\x8d\x3b\x46\x8c\x23\xb5\x7c\x71\xff\x42\xf9\xff\x82\x9b\x71\x33\x3c\x6a\x54\x47\x3f\x82\x28\x31\x44\x1a\xcc\xdc\x59\xfa\x37\x59\xd1\x5d\xe6\xd0\x2b\xfc\x74\x35\x82\xb9\xad\x2b\x78\xc5\x30\x66\xd7\xa6\xff\xc1\x43\x12\x35\x3b\x8a\x06\x99\x2f\x5c\x03\x7a\xb2\x89\x45\xc6\x27\xb5\x75\xf9\xea\xab\x9d\x3c\x8d\x2d\xdb\x18\xc7\x17\xe9\xf8\x46\x2e\xeb\xf1\x3c\x12\x05\x7b\x92\x9e\x23\xcf\x3f\x50\xe0\xc7\xf3\x4b\xf4\x29\xf4\x1a\x77\xe8\x19\xf0\xab\xf0\xb8\x42\x06\xac\x3c\xd8\xa7\x40\x5e\x48\x87\x96\x9e\x8f\xc3\x13\x94\xc6\x81\x3f\x13\x54\xaa\x17\xbe\x7a\xf8\xd8\x86\x22\xd0\xfa\x10\x19\x92\x6b\x66\x2d\xf9\xc1\xaa\xf2\x95\xc2\xd6\x7e\xbf\xb9\x42\x6d\x49\x54\xba\xfc\x11\x6c\xa3\x07\x14\x86\x63\xee\xe5\x52\x45\x81\x6f\xfa\x33\x0d\xce\x27\x4b\xc7\x36\x2b\xd6\xff\xbb\xff\x34\x34\xf9\xc4\xc4\xc5\xba\x9a\x18\xd8\x52\x13\x03\x5b\x4a\xe8\xd2\x24\xeb\x4f\xd1\x43\x72\xc2\x35\xe5\x43\x42\x7f\x81\xdf\x37\x3c\xea\x67\x6a\xf6\xef\x01\x75\x61\x05\x91\x5f\x61\xd3\xa5\xe7\x05\x6b\xfd\xf9\x54\x29\xb5\x60\x36\x8a\x3e\xf1\x37\x9e\x26\x54\xb8\x00\x1f\xca\x27\x24\x9c\xbb\xd5\xce\xdd\xfe\x85\x2a\xe9\xaf\x83\xa3\x3a\xad\x96\xa3\xd8\xcf\xe8\xda\x6d\xd5\x22\xb9\xa5\xd9\x4e\xcf\x26\x76\x39\x72\xd3\x90\x15\xc9\x10\xc1\xdb\x35\x8a\xfb\x95\xcf\x92\x9e\x9f\xe8\x0e\xd3\x25\x08\xab\x4a\x03\x00\x70\x39\x8a\x5d\x99\x0a\xe5\x88\xdb\x78\x65\xc2\x53\xe6\xd1\x67\x9f\xd7\x76\xf4\xd2\x6c\x67\x35\x2d\x84\xad\x48\x62\xcc\x96\x13\x50\x3a\x56\xab\xa7\xec\x5f\xa0\x42\x8f\x09\x8b\x68\x15\x3d\x3e\x26\xf6\xaf\x90\xfc\xab\x5d\x93\xc6\x51\x68\xc1\xf7\x02\x7c\xfa\x49\xc5\xf7\xf7\x75\x8d\xe9\xf8\x36\xad\x54\x94\x7b\x40\x69\x0c\xa3\x54\xc7\x7f\xce\xcd\x75\xfa\x51\x1e\x9a\xac\x6f\xfb\x6d\x9f\x9a\x70\x2e\x8c\x3a\xca\x39\x0d\x83\x7f\x50\xeb\x02\x52\xed\x2b\x8d\x71\xe3\xd2\xb4\x68\x29\x22\x9a\xa6\x36\x43\x9a\x44\xd2\x71\xc5\xe6\x3e\xa5\xc7\x86\x4f\x29\x3a\xca\x30\x4d\xc2\x78\x42\xed\x7b\x9f\x03\x6e\xea\xfc\x6c\xd3\xd7\xfe\xc7\x83\xcc\xf4\xa5\xb3\xcc\x1c\x1a\x81\x8f\xdf\x6e\xe8\x29\xad\xf3\x5a\x7e\xf7\xbc\xda\x51\xfb\xf6\xed\x7b\xdc\xd3\x73\x01\x00\xff\x14\x33\xda\x95\xc1\xb5\x24\x03\xe5\xf2\x56\xed\xe2\x57\x9c\xbe\x45\x99\x4a\x88\x8a\x4a\xf9\x4c\xb1\x81\xae\x93\x5b\x41\x42\xfd\x4f\xf5\xce\xba\x0e\xe8\x03\x4e\x36\xd5\xa0\x2a\x83\xa1\x44\x29\xe3\xa1\x75\x35\x5b\xd8\x32\xec\x75\xd9\x0e\xa7\x77\x74\xe1\x92\xea\x35\x55\xf3\x96\xa3\xe2\x8d\x35\x43\xe3\xbe\xce\xf3\xbc\xab\xe7\xca\xde\x6d\x20\x10\xee\x14\x26\x1f\x46\x2d\xdd\x09\xd3\x8c\xf9\x4a\x68\x95\x28\x68\x90\xe3\x39\x87\xef\x13\xce\x26\x9f\x18\xdb\xd7\x27\x00\x1e\x4a\x53\x55\xb5\xee\x2f\x03\x4d\x86\xc9\x96\x83\xcf\x6b\x92\x79\x8c\xd2\x31\x0c\x36\x50\x0a\x15\x9f\xc0\xb6\xc9\xf8\x9c\xd2\x92\xde\xb1\xa1\x52\x48\x86\xb1\x60\x9f\x73\xdd\x0f\xa0\x82\x5b\xf0\xaf\xb8\x82\x6f\xaa\xd1\xb6\x2d\x2a\xcf\x08\x08\xaf\x7c\xe3\x7a\x02\x05\x05\xfc\x5f\x9d\xee\xfc\x19\xb6\x8c\x80\x7d\x8a\xa4\x25\x2d\x5e\x87\x87\x71\x5c\x03\xac\x60\x21\x8c\xd5\x3e\x6d\x6f\x63\xe6\x00\x26\xfa\x0a\x2c\xbc\xcc\x02\x34\x22\x78\x7b\x26\x36\x09\x13\x43\x23\x50\x38\xaa\x74\xd9\x8e\xaa\x80\x2e\xa6\x16\x35\x1b\x20\xdc\x0e\xca\x8d\x7c\xac\xc9\xde\xa4\x05\x50\xfe\x3c\x12\x3d\x86\x9d\xf2\x89\x17\x16\x9a\x70\x92\x22\x78\x33\x3f\xba\x73\x47\x61\x6d\x62\x6b\x12\x8b\xd9\x41\x69\x73\x97\x0f\x43\xba\xdc\x3e\x41\x1f\x64\xe0\x61\x9d\xe7\x06\x1a\x93\x42\xcb\x3c\xa9\x47\x9e\xed\xed\xfa\xc1\xf5\x7b\x1a\xf1\xfd\xd5\xa9\xa6\xf9\x8c\x63\x4b\x56\x97\xf4\x37\x90\x73\x55\xc8\x0c\x81\x62\xe0\x7f\xa0\x6b\xe2\xff\x3e\x95\x8e\x98\x99\x14\x29\x09\x87\x52\x4b\xb6\xfc\x1a\x47\x59\xe2\xc1\xa1\x81\xd2\xb6\x59\x65\xbe\x45\x47\xc6\xb4\x20\x65\xc9\x0b\x2a\x0d\x8a\x27\x6f\x70\xd0\x25\xb2\x1b\x4a\xd6\xa3\x2a\x65\x65\x4d\xf6\xc5\xf2\xb7\x50\x6c\x83\x4f\x45\x1a\xbd\x13\xe3\x2a\xce\x0a\xcc\xcd\x7b\xe1\x93\xfd\xe2\x41\xf7\x00\x82\x89\x9d\xd1\x46\x59\x08\x51\x35\x60\x5c\x6e\x14\x75\xf1\x25\xc9\xa4\xaf\x05\x4a\x91\xf0\x0a\x02\x05\xac\xe8\x1d\xdd\xd6\xcf\xfd\x8a\xcf\xfd\xcb\xb5\x2a\x76\x87\x5e\x14\x8a\x95\x27\xb1\x19\x51\x87\xfc\x2e\xed\x19\x6c\x0e\x80\xc5\x98\xe2\x1b\x01\x01\xc2\xcc\x53\x53\xdd\xed\xdf\xb9\xd1\x7e\x79\xfe\xd0\x16\x6f\x63\xfc\x37\xc0\x4d\x45\xef\xa8\xf5\xb2\x44\x84\x90\x7e\x70\xf8\xf2\x72\x5b\xc1\x7f\xbd\xda\xe4\xf9\x89\xd4\x9e\x03\x0c\x7c\xd7\x37\xa6\xaa\xee\xf3\x8d\x5a\x27\x6d\x6e\xae\x53\x64\xe9\xa4\x17\x4b\x8b\x46\xb8\x72\xe8\xe2\x85\x44\xc7\x97\x9b\x47\x36\x8e\x53\x83\x37\xeb\xa6\xfd\xca\x87\x29\x33\x7d\x4d\x84\xa4\x6b\x59\x9a\x0c\x88\x22\xc4\x69\xb0\xec\xf7\x96\xb1\xe5\xd4\xa7\xee\x07\x4a\x18\x38\x4e\xd7\x66\xbc\x01\xbd\x3f\x55\x34\x3d\x5f\x9f\xaa\x38\x11\x7c\x68\x32\xd2\xdd\x50\xd6\xa0\x79\xfd\x82\x91\x00\x32\x55\x55\x7e\xb3\x8c\x5b\x3d\xad\x7a\x69\x03\x66\x24\x28\xd7\x1d\xea\xc7\xe7\xb0\x0c\xf8\x44\x4b\x71\x4f\x15\x08\xea\xd8\x54\xe1\xe6\xee\xd4\x10\xdd\x2f\x74\x08\x26\xbe\x62\xad\x1f\x4b\x6e\x6a\xeb\x79\xdf\x9d\x47\xfd\x96\x1e\xa2\x67\x5c\xac\x88\x7b\x37\xdc\x67\x2f\x25\x71\xaf\x96\x72\x96\x54\x1d\x90\x05\x5c\x1f\x56\x8f\xcd\xc8\x26\x85\xa8\xaa\x20\xa6\x7d\x1f\x7e\x82\x4f\x34\xbb\x12\xc9\xb7\xdb\xbc\x22\xc7\x16\xf8\x4a\xe9\x65\xc5\x58\x94\x4f\xf2\xc2\x44\x09\xbe\xf9\x45\x87\x54\xf4\x99\xf8\x91\x46\xe2\xda\xde\x24\x8a\x0b\x25\xb1\xbc\xa9\xd9\xd8\x6f\x55\x7a\xdb\x7e\xa1\x24\xf6\xf5\xe2\xd9\x6d\x05\x7f\xdd\x18\xd0\x05\xff\x4a\x23\x42\xb5\x18\x2a\xcd\x83\x4a\x1b\xc4\xc3\x0e\xae\x55\x3b\x14\xd5\x4e\x44\xa5\x91\xa1\x3b\x27\x95\xe6\xc5\xf6\x2e\x8a\xe3\x9f\xac\x74\x51\x74\xb7\xe2\xa1\x2d\x15\x7f\xff\xeb\xd6\x64\x8f\x97\x37\x83\xeb\xe7\x81\x50\x18\x8f\x07\x74\xc7\x6e\x2e\xa9\xfc\x32\xbd\xeb\xd0\x9f\x42\xdf\x10\xb5\xd5\x47\xbb\x2a\x7f\xe4\x35\x2d\xa2\x11\x9e\x75\x6f\x0f\x99\x39\x98\xbc\x5d\x1b\xaa\x99\x7b\x9e\x62\x06\xdc\xef\x13\x5d\xdd\x5f\x1a\xd9\xfc\xd9\xf2\x0b\xf0\xc4\xf1\x5c\x71\x5f\x47\x34\xf4\xe9\x98\x66\x36\xfd\x90\x6a\x3a\xf8\xc9\x73\xd3\xd6\xa1\x97\x7c\x2a\x5c\x3e\x6f\xfc\x0c\xf3\xcf\xc1\x26\xfe\xda\x54\xb3\xb1\xaa\xf2\xc6\xed\xa9\xe7\x09\x64\xea\x4b\x84\xcb\x7f\xaa\x19\xb2\xda\xdd\xd6\x2f\x1e\x74\xf8\xca\xf2\x09\x21\x7b\x3a\xc6\x8d\x47\x7c\x7e\x77\x57\x8d\x16\xfc\x26\x4a\x63\xc8\x01\xef\xc0\x54\xf0\x89\xc2\x54\x9b\x5e\x48\x0a\x7f\x52\xe6\x2e\x2f\x46\xc8\xd9\x7c\xaf\x72\xcd\xc6\xe1\x50\x21\xec\x50\x4c\x7f\x18\xb3\xd5\xc2\x42\xa7\xcc\x11\x26\xa6\xb0\xa8\x52\x22\x51\x3f\xae\xab\x62\xe7\x15\x7a\xb4\xcc\xc0\x64\x27\xe7\x85\x93\x58\xe1\x09\x46\xda\x9b\x32\xcd\xf8\x8c\x1a\xf8\xcb\xc7\x36\x2c\xd2\xac\xed\x87\x41\x3f\x51\xc6\xf3\xc2\xb4\x42\x69\xa0\xc4\xf8\x57\x23\x05\xbc\x63\x6c\x08\x9f\x28\x77\x12\xa6\x09\x0d\x82\xe0\xf9\x8a\xa8\x89\xa2\xdd\xdf\x54\xfc\x07\x45\x3a\x29\x88\x7e\xd2\xb5\x56\xbf\x49\xeb\x4d\x60\x14\x1e\xfb\x79\xaa\x66\x80\x0f\xcf\xce\x77\xf2\xaf\x4c\x4c\xe2\x64\xa4\xdc\xd4\x3d\x3d\x65\x19\xff\x55\x0a\xee\xc9\xeb\x91\x15\xb7\xc1\x5a\x98\xf4\x94\x44\x17\xf3\x29\xcd\x6c\x2b\xe3\x2c\x2f\x3a\xaa\xdd\x96\xe2\xe0\x6d\x2a\xb1\xd0\x10\xdd\x2e\xff\xd8\x39\x53\x85\x15\xf9\x40\xf5\xc0\x37\xa7\x2a\xa0\x7b\x4c\xd1\xae\x5e\x56\x97\xd0\xcb\xac\xed\xdb\x64\x86\x56\xa3\xb0\x03\x79\x00\xfe\x0d\x74\xfe\xf8\x1f\xc8\xf6\xf1\x3f\x28\x26\x85\x3c\x8d\xed\x28\xa9\x14\xd7\x41\xe6\xc5\xc7\x35\xca\xf7\x03\x07\x3a\x66\x3c\x8e\x99\x66\x22\xdf\x56\x4a\x55\x13\x8b\x4a\xf5\xc8\xe4\x51\x48\x35\x6f\x61\x28\xa3\x0b\x43\xfe\x7b\x3b\x50\x2a\x21\xb7\xa7\x6a\xb2\x00\x81\xb7\xc4\xae\xe5\x23\x90\x76\xfe\xf6\x6d\xf1\x42\x27\x34\xd9\x18\x0c\xd6\xf4\x3e\x10\xc3\x80\x31\x84\x8f\xb7\x8b\xa0\x2f\x2e\x2d\x76\x16\x16\x9e\x26\xfb\xee\xe6\x69\x5e\xf6\xb8\xb2\xc0\x83\x42\x77\x80\x8a\x1d\xc6\xe3\xb7\x03\x3f\xc3\xb2\xa5\xf5\x21\x1e\x68\x8d\x2e\xa4\xce\x70\x41\xc2\xdb\x26\xe4\xba\x0a\x9c\x7d\x83\x3c\x95\x62\xc6\x79\x85\x1d\xcf\x15\xea\x1f\xbb\x41\xd3\x25\xa9\x7f\x9f\xc0\xd3\x62\x7c\x7a\xa0\x68\x48\x59\x93\x45\xaa\xb1\xdb\xeb\x1c\xfb\x17\x88\xea\x84\xb6\x34\x2c\xfd\xdb\xf4\xdb\xd2\x0a\x6d\x39\x02\x71\xad\x55\x6a\xf3\x22\x1a\x99\xc2\xf2\xc4\x87\xe4\x36\xe5\x07\x71\x37\x3f\xa6\xa7\xc1\xc7\xaa\x68\x7c\x79\xaa\x04\x14\xff\x88\xde\x03\x1f\x2b\x7b\xb1\x3e\x59\x69\x79\x9f\x70\x22\xa8\x00\xcb\x1a\xea\x2e\xc3\x49\xbe\x62\xb3\xaa\x9e\xf1\x4d\x7c\xca\xcd\x74\x7b\xec\xe9\x85\xa9\x9f\x27\x5b\x49\xd2\xb5\x47\x7d\x96\x0d\xad\x48\xd7\xb5\x3f\x3c\xeb\xf9\x77\x0f\x1c\x90\x09\x3a\x3d\x98\x71\x1c\x49\x2f\x9f\xd0\x54\xbf\x78\x09\x7a\x30\xc2\xb8\x50\x3e\x0c\xf6\x4a\xaa\xf6\xb5\x4c\x1a\x7b\x7b\x68\x75\x21\x2d\xdb\xa2\xa5\x8d\x27\xf2\xe7\x9a\xe4\x00\x86\xdc\x5d\xe5\x61\x11\xc7\xc0\x74\x05\x02\x94\x82\x92\x22\xb4\xfa\x2f\x6a\x86\xc6\xcf\x5d\xfb\xa2\x1f\xe5\x04\x67\x41\x31\x49\x48\x06\x3e\x9f\xaa\x99\x05\x4c\x38\x22\x83\xba\x87\x35\x89\x9f\xbd\x13\x6c\xaf\xac\x2f\xbe\x74\x10\xca\xea\xe3\x34\x2b\x7c\x65\xbd\x51\xd4\xdf\x25\xd1\xaf\x45\x86\x2d\x3c\xe2\xba\x4f\xf0\x77\x7c\x12\x3c\xaf\xe2\xc6\x5e\x1e\xf5\x23\x93\x45\x96\xa5\xd1\x50\xe3\x78\x9f\xcc\x21\xa2\x2d\x4c\x0e\xf0\x31\x62\x32\xfe\x23\xe5\x4a\x87\xc4\xa0\xaa\xe8\x23\x76\x22\x4b\xe4\x93\x0d\xa5\xfb\x98\x9b\x28\x23\xe7\xec\xa8\xc2\xf6\x7b\xaa\xb0\x7a\x94\xda\x31\x61\x96\xe6\xf9\x8c\x8f\x99\x8e\x51\x9a\xe9\xb8\xf3\x3c\x6b\xab\x6a\x79\x7f\xa0\x82\xe3\xb1\x4d\x4c\x4c\x7c\xf0\x9e\x04\x93\xe9\x97\x25\xc9\xd8\xee\xbd\x96\x66\x3b\x51\x1c\x4f\x48\x4d\x49\xe0\x9a\xe8\xfd\xbe\xa7\x18\x2e\x8e\xeb\x5a\xf2\x66\xf0\x98\x20\x0f\x96\xc3\x56\x25\x45\x2b\x7f\x56\x72\xb7\x86\x9e\x6e\x38\x34\xd9\x40\xd2\x41\x94\x5e\x2f\x60\x67\xf1\xc9\xf4\x79\xed\xbf\xc1\xe2\xc6\xb2\xda\x07\xbd\xa6\xeb\x76\xae\x3e\xe1\xc2\xf2\xc5\x90\x9e\x49\x06\x33\x44\x5a\x8b\xcd\x04\x6c\x16\x56\x05\xe6\x83\xf9\x18\x11\x22\xff\x91\x82\x72\x16\xe9\x38\x32\x99\xc0\x24\x05\x79\xa5\xc6\xef\x2f\x04\x6a\xbc\x62\x3c\x8e\xcd\x24\xe7\xba\xb3\x08\x5b\x94\xaf\x08\x29\xfa\xb7\x34\xb0\xee\x1e\xed\x31\xc7\x63\xe2\xc6\x96\xbf\xa5\xd8\xbb\x4c\x1c\x5b\x34\x2f\x51\x62\xb8\x10\x28\x76\xa0\x3a\x1c\x72\xfe\x50\x27\x4a\x0a\x3b\xc8\x8c\x6b\x01\x80\x4d\x04\x24\x6c\x7c\xbc\xd1\x34\x97\xd5\xcb\x44\x78\xb8\x12\x25\x0b\xaf\x95\xaa\xac\x9b\xc4\xb2\xf2\x14\xbc\x12\x8a\x65\x7c\x3c\xd5\xca\x0d\x66\x1f\xdb\x4e\x19\x1a\xf1\xc5\x75\x2e\x56\x22\x58\xf8\x4c\x3d\x42\x99\x76\xd8\xe5\x0b\xc9\x98\x55\x12\xa9\x61\x3f\xab\xc7\x18\x4f\xd8\xcf\x19\xb0\x2f\x33\x29\x4a\xad\x4d\xfd\xf2\xfc\xa1\x4e\x19\x66\x46\x26\x8e\xde\x90\x85\x27\xb3\x32\x15\xe1\x95\xed\xcf\xd4\xa9\xc7\x45\x45\x96\xb6\xfc\x55\x9d\xd6\x32\x83\xa7\x6b\xcd\x98\xd2\x88\x8d\x27\x71\xdc\x33\xe1\x4a\x4b\x55\x69\xd0\x13\x97\x2e\x61\x9d\x8d\xfc\x95\xce\x64\xbc\x26\x24\x61\xac\x12\x13\x78\x50\xef\x9f\xeb\x38\xc7\xc6\xe9\xda\x1e\x5f\xcf\x63\x2a\x7c\xb8\xfa\x9d\x1b\x8a\x52\x72\x67\xd7\x93\xd5\x31\xfa\x46\xf4\x27\xa8\x9a\x2e\xc4\x2a\xbe\x90\xff\xc1\xd4\xcf\x4e\xed\xd8\xd0\x54\x38\xe3\xb6\x2f\xa4\x5d\x54\xf3\x4f\xbf\x8f\xe7\x81\xdc\xd3\x23\xb4\xc2\x74\x34\xb2\x49\xb1\xcb\x7b\xbd\xc7\xba\x6a\xa3\xa3\x4a\x82\x67\xbf\xbb\xeb\x58\x07\x8e\x3f\xbd\xa1\x3a\x34\xc7\x15\x6c\x31\x8c\xb2\x70\x12\x15\x33\x15\xc1\x76\x8f\x9f\xaa\x56\x0b\x2a\x42\xee\x7e\x66\x6a\x9c\x8e\x27\x98\x4b\xdb\x4d\x0f\x89\x31\x4a\x53\xcf\xfd\xc1\xec\x36\x48\x26\xbe\x03\xdb\xe0\x14\x83\x1c\x9c\x92\x1b\x6b\x4c\x78\xae\xf6\xc8\xc8\x64\x61\x9a\xb7\x5a\x73\x73\xae\xf2\xa6\x12\x50\x0d\x85\xe8\x4d\xb2\x04\xf3\x4b\x9e\x88\xef\x63\xfc\x9e\x44\xa2\x0d\xb2\xd7\x43\x6b\x56\xd7\xdb\xe4\x6d\x1c\xc1\x83\x63\xe7\xfd\x86\x6e\x6e\x9d\x77\x19\x59\x3f\x4b\x89\x5e\xb3\xad\x24\x66\x77\x76\x3d\xc2\x07\x43\x25\x88\x40\x2f\xa9\x89\x84\x5e\x66\xd7\xa2\x64\x30\xa3\x20\x37\x12\x61\xf2\x59\xd7\x17\xea\xaa\x8e\x53\x01\xe2\x43\x82\x6e\xd0\x40\x0b\x92\x6d\x26\xe9\x41\x51\x0a\x2d\x09\x3c\x9d\x73\x6a\x4d\xed\xd8\xf0\xab\x3d\x8b\x56\x6d\xb6\xab\x5c\xc7\x08\xd9\xce\xe8\x14\x6e\x77\x17\x57\xc4\x33\x05\x53\x9f\xd4\x7e\x57\x39\x86\x9b\x35\xea\x8b\x43\x2f\x75\x8a\x49\x06\x5d\x73\xae\xad\x54\x54\x46\xfc\x9a\x89\x46\xe3\xcc\xe6\x39\x15\xff\x9d\x32\x3e\x16\x83\x50\xea\xb9\x89\x87\x68\x30\xb1\x93\xac\xdd\xfa\xf2\xcb\x3c\xa4\x79\x5b\x99\xc8\x8f\x75\x9e\x7a\x59\x89\x41\x9a\x30\xb3\xcc\x66\x27\x05\x5d\x7a\xc3\x7c\x12\x7c\x51\x30\x8f\xab\x36\x0b\xd3\x38\x36\x85\xcd\xc8\x9a\xb1\xa5\x17\x5a\x83\xf2\x11\x49\x8c\x5e\x91\x85\xb0\x6b\xba\x5d\xbb\xa9\x3a\xb4\x9f\x29\xf2\x02\xdf\x20\x5c\xc9\xa2\x7c\x1c\x39\xf8\x3a\xc2\x5c\x56\xdf\xe3\x13\x35\xa2\xdb\xcb\xac\xe1\xd2\x82\xd3\xe2\xf5\xba\xbc\x4d\x22\xa2\x84\x6c\xc8\x87\x3c\x10\xc7\x52\x6a\x53\x45\x8a\xf9\x5d\x15\x78\x5c\x6b\xb4\xb0\x59\x5a\x06\x88\x92\x86\x49\x73\x42\xf7\x23\xf4\x13\x30\x59\xc2\xe2\x1a\x28\x9f\xbc\x09\x77\xcc\x27\x81\x2f\x92\x62\x32\x89\x8f\x37\x1a\xd0\x1b\x6b\x43\x13\xae\xac\xb7\x1e\x36\x09\x2a\xad\x8c\xe1\x64\x64\x12\xc2\x06\xc2\x78\xb7\x36\x7c\x79\x72\x2f\x01\x5a\x1d\x66\x55\x2c\xfc\x7f\xfe\xef\x77\xf5\xb4\x91\x1a\x5a\x9e\x2a\xb3\x31\x36\x45\x11\xe5\x1c\x18\x37\xa9\xaf\x3a\x19\x97\x2c\xb3\x79\x81\xcd\xeb\x6a\x56\x65\x36\x0c\x03\x80\x0b\x42\xf1\xf3\xa9\xae\x57\x7a\xdf\x54\xec\x61\x6b\x65\x10\x52\xb4\x94\xd2\xe7\x39\xa5\xf0\x71\x4e\x95\x09\xf3\x34\x8a\x5b\x6a\xc0\xe6\x98\x1e\xbd\x39\xa6\x90\x8d\xc3\x74\x64\x97\x25\xc8\x44\x64\x0d\xe4\xa0\xf4\x97\xe9\x73\x48\x67\xef\xb8\x18\xbf\x5c\xf8\x8f\x97\xee\x9f\xa2\x86\xdb\xff\x49\x57\xe1\x69\x91\x0c\x22\x58\xde\xb5\xe1\xe0\x49\xbf\xf8\x3c\xdd\x20\xbe\xf6\xaf\x6e\xa8\xc2\xdf\x66\x95\x5d\x94\xdc\x09\xf2\xca\xeb\x14\x8b\x51\x45\xfb\xc9\x0e\x39\x4e\x04\x72\x10\xd8\xc3\xa2\x60\x30\xb1\xa4\xe8\x4a\x3f\x53\x38\x91\xd5\x9b\xb9\xa7\xde\xcc\x3d\x95\x25\xae\xed\x8b\xf6\x61\xbf\x0b\x63\x2f\x16\xa7\x70\xf6\x7a\x11\x86\xb0\xbf\x5b\x8f\xb4\x2a\xe0\xff\x67\xd3\x4a\xa6\x4c\x31\x10\xec\xe3\x4d\x55\x7e\x85\x60\x22\xff\xf7\xc0\xeb\x54\x0f\x6d\xf6\xa4\x07\xa5\xee\x05\xdb\x07\x02\xe2\x63\x35\x8c\xf3\x41\x6e\xbc\xde\x51\x61\xdc\xee\xae\xe2\xed\xe5\xb2\xb6\xe4\x5f\x3e\x98\x68\x6d\x78\x2d\x72\x28\x81\x0a\x7d\x43\xdb\x8b\x4a\xde\xa1\xc8\x0e\xce\xfa\x8f\xab\x73\xbf\x6a\x73\xbf\x49\xc9\x30\x7f\x6d\x8d\xcc\xe2\x85\x4e\xda\x7b\x4d\x49\xaf\x09\xb6\x46\x03\x6d\x6a\x31\xd7\xa1\x97\x3a\xa3\xa8\x5f\xa4\x6b\x49\xdb\xaf\x21\x14\x20\x51\x3f\xdd\xa1\xac\x41\x3d\xb2\xfc\xf2\xcb\x65\x50\x94\xa5\xfd\x09\x63\x53\x94\x70\x8d\xf2\xe3\x67\x03\xbf\xa3\x6c\x31\x8c\xc2\x5c\xd5\x2e\x51\x08\xe6\xe3\x1a\x30\x75\x61\x61\x91\x52\xb3\x51\x94\x28\x63\xd7\xd8\xb2\x91\x6d\x9f\x8e\xc7\x69\x6e\x77\xfb\xa2\xd0\x3d\x7a\x1d\xaa\x0a\x38\x2f\xbc\x28\x58\x40\xd8\x14\x3f\xdd\xf5\x8e\x13\x90\x0d\x54\xb3\x6e\x35\x6a\x6f\xdb\xaf\x4c\x84\xd8\x4b\xf8\xd9\x35\x59\xbb\xf3\x87\xfd\x28\xb6\xa3\x91\x51\x18\x4c\xcc\x53\xf3\xb1\x0a\x13\x52\x9a\x22\x8e\x67\xe8\x06\xf5\x62\x67\x46\x88\xc0\xe3\x77\xaf\x22\xd8\x15\x08\xcd\xc3\xf8\x1c\xc2\x74\x3c\xb6\x59\xbb\xbc\x15\xe4\x09\x97\x14\x89\xf6\x0c\x06\xba\x60\x80\xee\x35\x55\xbf\x8b\xcc\xe4\x5e\x96\x45\xa6\xc9\x5a\x9e\x8b\xce\x19\xa7\xd1\xbe\xb5\x7d\x8a\x05\x8a\x2d\xb7\xc0\xf5\xb7\xbb\x90\x43\x2f\x75\x7a\x99\x49\xc2\x61\xdb\x93\x96\x7c\x8d\xbe\x97\xc7\xd1\x02\x1f\x64\x7c\xbf\x36\x2c\x28\x37\x47\x6a\xcd\xb6\x9f\xb7\x55\x7e\x71\x5f\x51\xb7\x30\x80\x58\x62\x2c\x1f\x9f\x9a\x64\x10\x33\xbf\x1e\x8c\xcd\xdb\x81\x47\x8d\xbe\x5d\x81\x53\x8e\x63\x43\x95\x0b\x66\xc8\xa5\x17\x27\x6c\xb9\x4d\x1e\xb9\xaa\x84\x21\x75\x4b\x9f\x2d\x6e\x4d\xab\x12\xa2\xb1\x89\x12\x09\x7f\x31\x27\x82\xc0\x84\x8f\x15\x9a\xb9\xc8\x26\xe1\x8a\xcc\xc1\x0b\x94\xb1\xbc\x05\x3e\x56\x8e\xc8\x8c\xd2\x15\xda\x5e\x80\x53\x32\xbd\x3e\x9f\x28\xee\x21\xb3\x6f\xb4\x6f\xc6\x63\x16\x4f\x2a\x60\xe5\x49\x6a\xb9\x3b\x0e\xc9\x45\x7f\xa2\xaa\xd9\xe3\x34\xcf\xa3\x5e\x6c\xf7\xf8\x49\x1c\xf0\x0c\x39\xc2\x4c\x1f\xd5\x73\xd3\x4e\x78\x3f\x7d\x7a\x45\xdc\x86\x5b\x0f\x60\xbb\xb1\xb8\x31\x6c\x02\x2c\xdc\xa6\xab\xb2\xe5\x29\xa5\xaf\x79\x21\x25\x49\x7c\xfe\xf1\xae\xea\xc6\xdc\xd0\xd4\x46\x3b\x6b\x99\xfe\xd2\x2c\xc1\x2e\x0b\xe2\x12\x53\x44\x9e\x42\xc0\x72\x6b\xaa\x34\x05\xa0\xe6\x8c\xd7\x76\x52\xf3\xe1\x9e\xd7\x72\xc4\x99\x59\x2e\x18\x97\xe2\xd6\xc8\x81\x03\x6e\x8d\xec\x75\xe5\xd7\xff\x66\x1f\xc5\x79\xc8\xfb\x38\x7a\x17\x49\x1c\x3d\x74\x77\x59\x35\x84\xd7\x32\x53\xee\x5f\x2c\x55\x84\x63\xa0\x6c\xe0\xe3\xa9\x9e\x96\x30\x83\x89\x0b\x56\xf1\x34\x4e\x6b\xdc\xeb\xe9\x86\x86\xcd\x2b\x64\xc4\x84\x05\xc8\x09\xcc\x9d\x09\xfc\x4e\x3e\xa3\x62\xdc\x81\x79\xc3\x16\x50\xb8\x94\x36\x87\x2a\x63\x1c\x6b\x42\x4b\xf4\x26\xeb\xb2\x66\x61\x4b\x3f\x0a\x54\xcb\xe0\xa3\x8a\xd4\xe8\xa8\x34\xda\x78\x94\x78\x03\xe0\x22\xe5\x63\x85\x05\x7a\xc3\x26\x51\x31\xe4\x5b\x45\x08\x7f\x37\x50\xe0\x97\xbb\xaa\xa6\x4e\xb5\xd9\x09\xa9\xe5\xba\xed\xce\x7f\xcc\x27\x0a\xe0\x54\x1a\xe0\x6c\x92\xe4\x5a\xc7\x1c\x53\x02\x58\x1f\xd0\x0e\x93\x52\x04\x7d\x89\x60\x56\x25\xe6\x2d\x1c\xb5\x1d\x1c\x3e\x4b\xd7\xf3\x49\xcd\x50\x13\xb4\xce\xf6\xad\x82\x50\xc3\xb4\x7e\x84\xaf\xe7\x93\xa6\x31\x4a\x20\xa3\x7d\x02\x04\x07\x7f\x44\x89\x88\x1f\x99\x0a\x19\x8d\x57\x82\x88\xd7\xdb\x7e\xec\x17\xc5\x39\x78\x03\x16\x4d\x42\xf2\xfa\x91\xe6\x7e\xb2\x49\x8e\x21\x0f\xa1\x6d\x2e\x7f\x01\x9e\x07\x41\x21\x8c\x15\x4f\x4d\x48\xd7\xd2\x7f\x41\x61\x7a\x69\xaa\xa4\x22\x4e\x2a\xa9\x88\x93\x98\x4d\x96\x4e\x68\x11\x15\x13\x16\xb3\x2f\xcd\x01\xae\x12\x34\x5a\xcc\xe4\xa7\x00\xaf\x77\x94\x8b\xfe\x9f\xc9\x32\x23\x2a\xdb\xd1\xad\x3f\xad\x83\xd4\x07\x4d\x33\x17\x1b\x89\xa4\xac\x07\xfd\x5e\xd8\xde\xb3\x5a\x5a\xec\x1c\x9e\x5d\x7c\xdc\x33\xef\xdf\xd2\x1c\x9f\x22\x45\x0c\xb3\x7a\x01\x95\x24\x3e\xd1\x72\x71\x10\xbb\xc0\xfa\xb9\xa1\x80\x4c\x1f\x4e\xbd\x1e\x0c\x48\x07\x45\x61\x80\xac\x2d\xec\xc4\x0f\xa7\x4a\x96\x18\x70\x4f\x58\xd0\xa3\xb5\xb6\x81\x77\xf9\x24\x59\x2e\xab\x09\xd9\x47\x0b\xae\x9e\x4f\x36\xbe\xe0\xe6\x2e\xc2\x15\x2f\x8d\x8b\x57\x7f\x4d\xaf\x83\x6b\xb5\x05\x4b\x90\xc1\xb4\x18\xda\x6c\x2d\xca\x2d\x15\xc3\x10\x59\x9c\x56\x49\xfe\x49\xf2\x61\xd8\xb8\xbf\xa1\x36\xee\x38\xcd\x0b\xdb\x7f\xb4\xe5\xf4\x1d\xee\x29\xc6\xe8\xd3\x78\x6a\xa8\xec\xbf\x8b\xaa\x24\x0a\x11\xd7\x34\x73\x18\x87\x6f\x28\x55\x9f\x9f\x6a\x69\x7e\xb4\x8d\xf8\x0b\x68\x65\xca\x47\x1a\x24\x0f\xd2\x49\x91\x4b\x5e\xe7\x06\xe8\x14\xc5\x4c\x5d\x0e\x7e\x11\x72\xf7\x69\x11\x85\x2d\x2f\xd9\x79\x5e\x67\x6e\xaa\xdd\xb6\x5c\x0c\x77\x79\x51\x0b\xac\x79\xf6\x91\x53\x35\x8a\xf9\x87\xf4\x71\x58\x91\xdd\x94\x6e\x01\x02\x71\xcf\x69\xa7\x4b\x98\xc0\x55\xdb\x26\x6a\x39\x29\x59\x14\xc3\x35\x43\x4b\xdc\x8f\x02\x5c\x84\x4b\x13\x25\x81\xed\x41\xde\xd2\x6c\x67\x39\x4a\x4c\x12\x56\x15\x84\x7e\xa2\x15\x84\x7e\x32\xd5\xe3\xd8\x49\x1e\x89\xb9\x9a\xf1\x63\xeb\xe7\x15\x0d\xe7\x79\x05\x26\xe6\x18\x8c\x4f\x82\xed\x44\x04\x73\x73\x9d\x15\xcb\x34\x35\x5a\x78\x46\xfa\xaa\xba\xda\x6b\x0a\x86\x75\x63\x5d\xbd\xa5\xd6\xd8\x5b\x4e\x0a\xb8\xb4\x21\xd9\x64\x64\x13\x16\x7c\x75\xad\x42\xd7\xf8\xfc\x5c\xb1\x08\x5e\x55\xc1\xd0\x6a\x14\x5a\xf2\xd0\xc8\xc7\x3e\x9e\x56\x38\x48\x94\xb6\x64\xad\x44\xfe\x1f\x77\x12\x62\xa0\x8a\x4d\xd2\xcf\xa9\xec\x25\x4d\x26\xec\x2b\x04\xd8\x37\x02\xc5\xa9\xf2\xb1\xf2\xaa\xf6\xf5\xd0\xe6\x3c\x09\x02\x4b\x74\x5b\x6b\x87\x9c\x27\x88\x0e\x8f\x44\x35\x55\xf0\xd6\x6c\x5e\xb4\x2a\x70\x7c\x4d\x5e\xdc\x30\xb7\x58\xa4\x93\x8c\x24\x82\x95\x16\x52\x4b\x51\x8b\x36\xf9\xa8\xcc\x0e\x26\xb1\x29\xd2\x8c\x2f\x54\xd4\x30\x54\x0b\xe2\x9f\x4d\xd5\x9a\xb9\x5c\x11\xd7\x9b\x24\x7d\x6a\xc9\xd0\xf3\xd8\xda\xa0\x4f\x6d\x6d\xa8\x87\x3f\x32\x51\xfc\x58\x79\x9f\x0e\xf3\x52\xae\x45\x87\x73\x70\xf2\x93\x08\x1c\x3d\x37\x85\x73\x37\x81\x4f\x93\x4e\x22\xa2\x03\x8c\xed\xfb\x8a\xc0\xe2\xb8\x92\x75\x47\x1f\x1a\xbe\xe3\x9a\x9a\xee\x5a\xc9\x90\xd1\x89\x90\x97\x9f\xd9\x6e\x34\x22\x79\x98\x59\x9b\x60\xa9\xc9\xe4\x8e\x7f\xac\xd5\xba\x62\x7d\x74\x90\x9c\x12\x7c\x9e\x6c\x3f\x84\x52\x37\xf1\x28\xf9\x44\x19\x95\x28\xcc\x1f\x2f\x2f\x1c\xcb\x01\xa4\xe8\x0e\x7e\xe2\xfb\x5d\x3c\x8c\x83\x0c\xf3\xb3\xa9\x02\x44\xec\xfb\x8f\xba\x3e\x9c\x79\x62\xc3\x65\xf9\x7f\xeb\x79\x1a\xdd\x44\x64\xf3\x18\xe9\x32\x2a\x73\xfb\x0a\xef\xb3\x3f\x42\x44\x4f\x89\xd9\xd3\xfb\xe0\x53\xa8\xc5\xf2\x9f\x7d\x51\x29\x1e\x84\xd1\x6a\x14\xef\xd6\x03\x6a\xda\x98\x04\xda\xcc\x00\x03\x02\x13\x89\x68\x8f\x8f\xf1\x43\x62\x06\xea\x7d\xa2\xce\xd8\x66\x51\x2a\x7c\x72\x82\xa1\xd6\x64\xbb\xf5\xcf\x2c\x76\x5e\x4b\x05\x31\xe9\xeb\x77\x8a\x7f\xc7\xeb\x83\x46\x2a\x89\xe3\xc2\x4d\xe0\x41\xb4\x27\x6a\xb9\xf2\xdc\x5c\x27\xcc\xa2\xf1\x38\x96\xaa\x9e\xc3\x3a\x3b\x0e\xf7\x77\xf0\x14\xd0\x6d\xb8\xdf\x88\x57\x2a\x32\xd3\x07\xce\x5c\xa8\x3b\x5b\x8e\xcc\x75\xa6\x5b\xa9\x60\x94\x4f\x5e\xd4\x3f\x1e\xf7\x2d\x8e\x55\xbb\x4b\xc1\xd4\xb1\x0a\xc8\xa6\xfc\xe3\x67\x37\x3c\xd8\xe2\xd3\xa9\xd7\x33\xe1\x97\x03\x71\xd7\xbf\xde\x6d\x20\x54\x2a\x32\x13\x82\xbc\x1a\x53\xd8\x68\x78\xf2\xb1\xa6\xe2\x4b\x92\x09\x0a\xf2\x6d\xbf\xc4\x1e\xa8\xcc\xfa\xfa\x54\xeb\xd2\x6f\xdf\x0e\x65\x8c\x46\xcc\x20\xab\x26\x9e\xb0\x0b\x83\xdb\xb8\x3d\x55\x44\x04\xb7\x55\x21\xa9\x47\x02\x32\x34\x09\x0c\xa7\x79\x92\x56\x00\x1f\xab\x1a\x6e\x2f\x23\xff\xd9\x72\x6c\x7c\xe8\xa3\xf2\x71\xcd\x2b\x51\x85\x3b\x6d\xb7\x94\x8a\xac\x1f\x9e\x3a\x47\x62\xbe\xd2\xc3\x16\x04\xc0\x64\xb4\x86\x5a\x26\xd2\x67\xb0\x8f\xf3\xb1\xaa\x79\x8e\x4d\x9e\xb7\xfd\xc3\xff\x1e\x99\x30\xa0\x2c\xdf\xa7\x6b\x87\xd5\x3a\xe6\x38\x0d\xa2\xa4\x1f\xad\x46\xfd\x89\x89\x2b\xd4\x89\xcc\xa2\x23\xb3\xa4\xde\x40\x64\x69\xb6\xdb\xbf\x2a\x20\x6c\x10\x1d\x81\xc9\x0e\xbb\xf5\xd9\xae\xa6\xf6\x56\x93\xa8\x8c\x22\x94\xfe\xde\xf6\x07\x53\x2e\xd2\x3c\xa5\xa2\x8d\xac\x1e\x3f\xf0\xbd\x83\xac\x06\x9c\xd6\x9e\xae\x84\x98\xbd\xb4\x6f\x07\x26\x6f\xfb\x39\x27\xa6\xa1\x76\x4a\x4c\x1e\x82\x73\x2f\xf8\xd2\x43\x82\xda\x49\xe2\x2c\x25\x97\x97\xdd\xe8\xc6\x49\x4d\xa8\x79\xb2\x89\xd7\xfe\x35\x5b\x14\xeb\x08\x9e\x84\x28\xae\x7c\x14\xc2\x2c\xd7\x60\xd6\x87\x66\xd5\x0a\xd8\x4e\xf8\x53\x7d\xeb\xe2\xdd\x26\xb4\xd4\x72\x34\x18\x16\xc2\x42\xe9\xa8\xfe\x3c\xed\x5f\x43\xf6\xbd\x80\x68\x2a\x2f\x24\xfb\xe6\xe0\x59\x95\x8b\x4e\x6a\x71\x7f\x8e\x03\x6d\x7f\x77\x19\x26\x8a\xb7\xf7\x91\xc9\x79\xd5\xbb\xbb\xa6\x52\xf8\xef\x05\x8a\x1f\x68\x13\x51\x36\x9a\xb6\xef\x4c\x1b\x60\x7a\x73\xf3\xa0\x97\x73\x43\x13\xbf\xe4\x9b\xc8\x8a\xdc\x1a\x45\x5b\x07\x67\xf0\xf8\xc9\x7b\x8a\x97\x89\x85\x1f\x63\x91\xbf\x14\x29\x01\x0f\xaf\xba\x58\x19\x54\x31\xfd\x7c\x2f\xfd\x86\x48\x39\x96\xbf\x01\x8f\x8d\x7c\x09\xeb\x7a\x27\x14\xa5\xe1\x44\x7e\xac\xbe\x8d\x79\xdb\xf8\xd3\x44\xeb\x22\x92\xc2\xf4\x62\x10\xa0\xb2\x50\x2e\x7f\x6f\xe0\x8b\x4d\x77\x01\x0e\x10\x1c\x5d\x53\xbb\xd4\xc4\x28\xad\x31\x5f\x8b\x12\x81\xf6\x9b\x76\x64\xa2\xa4\xb0\x09\xa6\xaa\x5c\x98\x71\x5e\xe1\x23\xcf\x37\x4d\x17\x7c\x65\x92\x16\x19\xa7\x6d\x95\x66\x29\x9f\x34\x05\xef\x51\x92\xa4\x8e\xf0\x9a\x39\x6c\x55\xdb\xf0\x9e\x62\x54\xec\x09\x37\x96\x60\x14\xe8\x5e\xf9\xa4\xd6\x5e\x3c\x70\x80\x24\x2e\xa3\x44\x16\xa7\x4c\xbf\x95\x3f\xc4\xc7\xaa\x7a\xb3\x6c\xf3\x22\x5a\x35\xf1\x8c\x32\x82\xc2\xdc\xc7\x67\xb0\xe2\x78\xb4\xbf\x1d\xa8\x24\xee\xb7\x6b\x0f\x7a\x41\xc1\x27\x85\x9a\xd5\x5b\xf6\x0f\x34\xe7\x8a\x42\x52\xdb\x3c\xb7\x49\x41\xe5\x17\x17\x54\xdc\x52\x41\xc5\x2d\x8d\xa3\x88\x4d\x3e\x64\x2f\xc3\x73\xb0\xd5\xa1\x58\xef\xd7\x46\x93\x24\x0a\xa3\x31\x59\xe0\xf2\xa2\x81\x11\x38\x8d\xbd\xc0\x27\xd3\x4e\x3d\x20\xb0\xd9\x7a\x31\xcc\xd2\x71\x1a\xd9\x22\x4a\x74\x93\x1a\x13\x5d\x42\x23\x59\xb7\x58\x8b\x9d\x9e\xc9\xb9\x17\xce\x7d\x61\xba\x0d\xe9\x11\x3f\xa1\xb1\x8e\x19\xe1\xe4\x04\xcf\x52\x3e\x25\x3e\x56\xe2\x42\x9f\xe0\xde\xa4\xb7\xe3\xd2\xff\x2c\x0a\x23\x0b\xb2\x44\xd1\xf5\x21\xeb\x80\x30\xe7\x76\xa0\x74\x70\x4f\x6a\x72\x4d\x13\xaf\x10\x69\x10\x40\x49\x77\x35\x12\x0d\x0a\x5b\x6e\xdc\xdb\x09\xf4\x9e\xa7\xd2\x07\x72\xab\xff\x41\x2f\xeb\x93\x4d\x64\xb8\x96\x87\xee\x14\x7e\xfe\x5d\x85\x9f\x7f\xf7\x2f\xeb\x09\xd0\x58\x3c\x39\x6f\xae\x51\x05\xfe\x52\x79\x72\x18\xce\x82\x98\x81\x1d\xcb\x6c\x12\x49\x76\xf3\x22\x3f\xc1\x93\x4a\xf3\x1b\xa1\xbc\xe4\x0b\x0d\x90\x3e\x26\x94\x41\x76\xe4\x88\xd0\x1c\xb7\xc4\x6f\x6b\x6e\x89\x2b\xae\x6d\x92\x47\x83\x04\x58\x1e\x2d\x5d\x0f\xb3\x06\xbe\x4c\xc7\x97\xe4\xa2\xf3\xf3\xba\x68\x6a\x0a\xd6\xcd\xf7\x54\x29\x97\x2b\xc2\x49\x5a\xf4\x1d\xcd\x59\x54\x42\x59\x99\x8b\x4c\xa4\xa8\x74\x79\x4e\x58\x93\x65\x26\x19\x90\x04\xdd\x8c\x52\xd6\x7c\x8f\xee\xc8\x85\x0a\x9e\x15\x73\x4b\x11\x54\x6f\x4e\x9f\xaf\x3a\x95\x97\x97\x66\x3b\x87\x67\xe7\xa9\x56\x24\x3d\xcd\xd6\x2f\xff\xbc\xef\x77\x28\x9d\xa3\x3a\x1a\x74\xa1\x63\x7a\xe9\xa4\xa0\x55\xce\x83\xd5\x4a\xae\xea\x92\xaa\xfb\x7d\x67\xea\xeb\x8a\x17\x6b\x36\x65\xf1\xa5\x83\x9d\x3e\x67\x77\x9a\xca\xba\x3e\x8b\x6c\x46\x69\x32\x78\xdc\xcf\x48\xcd\x74\xab\xbc\x4e\x7e\xda\xfd\x37\x09\x6d\x22\x4c\xc1\xe4\x93\xa4\xae\x48\xeb\x08\x6b\x67\x53\x95\x78\xbe\x0d\x0f\x03\xa4\xc4\xfd\xc0\x83\xa4\x6f\x69\xc6\x87\xf7\xa7\x15\x33\xea\x95\x6a\xff\x79\x83\x2c\x5a\xa7\x1f\xe5\x23\xb3\x2e\x4a\x4b\x42\x0b\x44\x97\x29\x84\x41\x4f\x2a\x3d\x5e\x10\xde\xba\x3a\xf6\xc9\x40\x8d\x5f\x9c\x54\x69\xfb\x9a\x8d\xf2\xe5\xc8\xc6\x98\xa0\xc0\xfe\x39\xa6\xf6\xd2\x31\xad\x42\xb4\x93\x11\x48\x70\xc3\x3f\xd2\x51\x9d\x6e\x79\xd9\x38\xfd\xca\xc4\x26\x45\xbc\x0e\xe2\x3d\xac\xd1\x23\x2a\x1f\x39\x12\x78\x83\xbe\x1a\x65\xc5\x44\x78\x8c\x85\x8e\x6a\x33\x50\x33\x81\x9b\x2a\xb6\x1e\xa4\x69\xff\x71\x5c\x85\x70\xb1\xb5\xdc\x58\xf1\x93\xc0\x47\xba\x01\xb4\xf2\xfb\x90\x8a\xdd\x9c\x2a\x8d\xc5\xad\x40\xb5\x0c\x3f\xc2\x4b\x14\x0a\x98\xf2\x5d\xc1\x4a\xfe\x1e\xcd\xc4\x48\x02\xe9\x0b\xdb\x5b\x53\x9f\x37\xff\x98\x1a\x61\x82\x20\xf6\x01\xfa\xbe\xc5\x7d\x8a\xd0\x72\x47\x57\x11\x5a\xee\xd8\x10\xb3\xb0\xbe\xef\xb5\x7d\x2d\x94\x97\x45\x06\xd8\xe7\xda\xbf\x77\xac\xa1\x36\x89\x98\x03\x03\x81\x3e\x51\xbd\x3a\x55\x8c\x2f\x57\x9b\x22\x5d\x93\x17\x93\x02\x66\x16\x6f\xeb\xb4\x2a\x45\x9f\x56\xf0\xac\x6c\x22\x1a\x19\xc8\x21\x41\x15\xc1\xc7\x1b\xb5\x2a\xd3\x7c\x67\x14\xf5\x49\xf6\x99\x9e\x6e\x65\xc5\xc8\x52\x92\x64\xdb\x1a\x6a\xc7\xfe\x25\x2c\xa1\x8a\x6c\x32\x5d\x59\x4f\x41\x51\x04\x6c\x59\xab\xab\x69\x70\x8f\x4e\x95\x7c\x12\x48\x4c\x10\x33\x5c\x21\x43\x27\xad\xe0\x06\x5a\x8a\x2c\xca\x21\x10\x20\xd1\xad\x9e\x47\xbb\xa8\x39\xe4\x34\x63\x7c\xbb\x2b\x37\xf1\x5a\x9a\x0f\x27\xa6\xed\x07\x0d\x2e\x2a\x80\x19\xa7\x55\x4c\xac\xa1\xd0\xf8\x94\xf0\xae\x65\x51\x51\x40\x0f\x59\x40\x38\x67\xb0\xf4\x50\xbd\xa4\x78\x67\xeb\x9a\x92\xbc\x5e\x31\xeb\xb9\xcd\xf2\x9e\xcd\xc0\xbd\x0e\x14\xf5\x79\xa5\x0c\x79\xbe\x96\x6f\xcc\xcd\x75\xe2\xc8\xf4\xa2\x38\x22\x60\x3c\xdd\x90\x24\xc0\x4a\xbd\xf6\x5c\x45\xb9\xff\x45\x5a\xab\x00\x60\x9d\xd1\x68\xac\x33\xb5\x80\x71\xff\x42\x67\x6c\x4d\x68\x8b\x68\x64\x95\x6a\xf7\x1d\x05\x38\xb8\x53\x5b\xb8\x0b\x0b\x07\x3b\x79\x3a\xa2\x0f\xe5\x6d\x8d\xe5\x99\x6a\x1d\x32\xa5\x7e\xbc\x55\x3e\x3d\x87\xa3\x02\x6d\x54\x31\xc9\xec\xc3\xf9\xd1\x2a\x8a\x27\x79\x3e\xc9\x58\xb2\x03\x93\x8e\xa0\x42\xe5\x63\x65\x7b\x7a\x96\x58\x47\xb8\x1f\x29\xb0\xfc\x72\x7f\x0b\x5e\xff\x49\xe5\x2d\xd3\x49\xd2\x7f\xc2\xcb\xa7\x5e\x9c\x2a\x0a\xf9\x13\x64\xfe\x51\xf7\x45\x48\x01\xab\xf0\x2d\xd5\xdd\xfc\x07\x9a\xe1\xef\x5a\x65\x92\x9d\x61\x90\xb8\xc2\x47\xbb\x14\x92\xa1\x22\xb9\x13\xe4\x13\xf8\x86\x2b\x81\x6e\xe4\xab\x28\xe4\xef\x4f\x55\x5b\xee\xaa\xaa\x25\xa6\xa1\x51\x69\x74\x55\xef\xf9\x79\x35\x9e\xb8\x5a\x86\xf6\x03\x53\x58\x54\x2e\x90\xec\xbc\x4d\xe1\x9c\xb4\x88\xc9\xb6\xb2\xf6\x8c\x23\x02\x07\xa9\x57\x34\x76\x9d\xcd\xad\x2b\xa5\xad\xdc\xaa\xcb\xae\x90\x90\x01\x31\xd6\xa0\x92\x8a\x24\x0f\xd2\x9e\x22\x2b\xe0\xb7\xf2\xd9\x2a\xac\xb3\x18\x3e\xde\x5a\x5a\xdc\xba\x56\xbe\xc7\x2d\xa4\xbd\xb0\xd2\xbb\x81\x77\x43\x64\x71\x27\x50\xa3\xc5\xdc\x28\x72\xcd\xe0\xd2\x46\xf2\x9f\x29\xd4\x18\xcb\xd3\x4a\x55\xbc\x35\x37\xa7\x09\x8a\x84\x2b\x8e\xd1\xd1\xc2\xf2\xa6\x88\xd5\xc7\x69\x92\xa7\x24\x6f\xac\x8a\x9c\x47\x55\x3e\x72\x54\x4d\x79\x64\xb6\x5c\x9c\x96\xb0\xff\x33\xbe\xd2\x77\x41\x09\xf8\x7d\x4c\xd7\xc6\xc7\xd8\xb2\xfc\x47\xb5\x64\x92\x26\x1a\xec\x30\x4a\xfa\xf4\xca\x50\x99\x9e\x01\xbe\x0d\x31\x2c\x20\xc7\x58\x88\x77\x15\xe2\x20\xca\xd3\xd8\xc8\xaa\x07\xca\xe0\xae\x42\x1c\xdc\x75\xc5\x46\xda\x4b\x7b\xe9\x2a\xc4\x59\x28\x99\xf4\x6f\xd0\x6d\xe2\xeb\x3f\x99\x2a\x62\x74\x50\x9d\xb1\x58\xa3\xe2\xb9\xdd\xbb\xa1\x58\xb9\x2e\xeb\x2a\xd4\x23\x6c\xe0\x5d\x2c\xb5\xc0\x37\xf4\x3e\x10\x9b\x08\x8a\x3f\x6d\x2a\xc9\x0e\x4c\x31\xa4\x59\xd4\xf2\x77\x10\x87\x9f\xd6\xdd\xc3\xd3\x1a\x89\x4e\xd3\x9d\x19\xb7\xfe\x1d\x80\x48\x55\x8a\x95\xaa\x18\x8f\xcb\xc8\x89\xe4\x53\xcb\x99\x49\x56\xe2\xf5\xdd\x9e\xd5\x0c\x72\x20\x4e\x25\xf6\xc0\x01\x19\x4e\xa7\xed\x23\xad\x12\x45\xdf\x7a\x5c\x27\x28\x47\x9d\x8b\x1c\xa7\x85\x9b\x4a\x92\x0e\x52\xcb\x49\xc2\x72\x5f\x5a\x46\x56\x9b\x34\xae\x88\x3e\x25\x53\x6c\x21\xf7\xa7\x0a\x3f\x7f\xbf\x66\x98\x0f\x1c\xe8\x98\x9c\x10\x37\x8e\xa7\xca\x91\xbf\x7a\x2f\x50\xd5\x47\xb0\x51\x85\xf2\xfd\x8c\x52\x60\x54\xaa\x21\x49\x96\xc6\xf1\x48\x4a\x16\x28\x6e\x03\x88\xcf\xc7\x1b\x9a\xcf\x69\x34\x4a\xfb\x51\x01\x6d\x02\x14\x80\x39\xa6\x81\xa5\x83\x8d\xa8\xa8\x82\xf2\x5f\xe1\x91\xa0\x32\xe9\x45\xd3\xc7\x26\xcb\xcb\x0c\x08\x4b\x0a\x76\xe6\xa2\x96\xbb\xbb\xe8\x1e\x79\x3f\x4d\x9d\x04\x27\x77\xb2\x15\xd9\x1c\x03\x82\x10\xed\x9f\xa8\x8d\xed\x72\x71\x0f\x8c\x5d\xd2\x48\x40\x6c\x7f\x49\x71\x4c\x5d\x52\x35\xea\x91\x59\x59\x33\x43\x72\xe7\x02\x24\xa2\xde\xb6\x20\x89\x1a\x68\x3e\xd7\x40\x5b\x9b\xd8\x3c\x6f\xfb\xf6\xf2\x15\x35\x2f\xc3\x65\x2f\x51\x1b\x6a\x18\x53\x0d\x27\x3d\x99\x1c\x44\x79\x81\x41\x43\x7c\xa2\x54\x02\x47\xe9\xaa\x7d\x9a\xbe\x0e\x45\xf1\x47\xba\x6a\xc4\xb2\x85\x1c\x49\xda\x66\x74\xe5\x30\x19\x67\x90\xf1\xb8\x82\x9e\x13\xc8\xba\xa5\xc4\xc9\x77\x60\x5c\x47\x3a\x6d\x2d\xff\x69\x3d\x32\x76\x7c\xaa\x74\xff\x8f\x6b\xbe\x3a\xb0\xc2\xb0\x42\x39\x01\x98\xb1\x19\x9e\xd8\x50\x63\xba\x98\x12\x96\x32\xa8\x1f\xb9\x20\x1a\x05\x81\x38\xc5\x69\xb6\x3e\xe3\x3b\x80\x3f\xc1\xd3\xc0\x4f\xfe\x80\xbe\x80\x75\xd6\x55\x4b\x58\x67\xe4\xe9\xaa\xcd\x72\x6b\xf2\x3d\x74\x43\x78\x52\x0c\x32\x45\x9d\xff\xdb\x8a\xf5\x60\x67\x57\x11\xc2\xb0\x0a\xa4\x22\x8b\x7c\x51\xb8\xa4\x54\x1f\xe8\xb3\xa9\xa2\xb4\x3f\xa3\x82\x90\x71\x66\x7b\x29\x68\x62\x95\x92\x89\xa7\x11\xd9\x5e\x66\x7a\xf5\xd5\xce\x57\x26\x4e\x8e\x55\x78\xa1\x35\x49\xb4\x1a\x4b\xcb\x6c\x68\xa3\x55\xdb\x7f\x8c\x3a\xb7\x17\x71\x71\x98\x67\xfa\x28\xf0\x59\xd6\x16\x96\x1b\x6e\xe1\x43\xf8\x28\xd1\x48\xa2\x3b\x95\xa2\xbf\x87\x8d\x7c\x1b\xee\xd7\x31\x74\x97\x5e\xda\x4d\x97\x28\x10\x68\x13\x27\x59\x61\x63\x3b\xc8\xcc\x78\x58\x01\xb0\x9c\xd7\x6c\x39\xe7\xd5\x13\xca\x43\x93\x85\x76\x97\xa2\x09\x3b\xa1\x6a\xca\x60\xf2\xc4\x6e\xbb\x4d\xf7\x24\x53\x30\xbe\xdd\x75\xd1\xb1\x34\x2d\x4f\x92\x64\x9d\xf2\x05\x29\xd6\xd0\xcb\xab\xf0\xa6\x6b\x42\x6e\x54\x12\x6e\x56\xb0\xa5\xe9\x60\xfd\x0b\xe5\xef\x4b\x83\x98\x5e\xac\xa2\x21\x5a\x90\x15\x83\x40\x84\xfb\xcb\x95\xf9\xb5\xa9\x57\x3f\xff\x63\x44\x61\xa2\x8c\xeb\x99\xa4\x2f\x69\x45\x1b\xc6\xfc\xc2\x99\x7e\x1d\xef\x51\xc8\xea\xcb\xbb\x91\x41\xcd\xf2\x9a\xf1\xeb\x20\xa2\x96\x00\x78\xbb\x6f\x59\x7c\xe9\x60\x67\x60\xbc\xc2\x89\x80\xf7\x3d\xa0\xfb\x27\xb8\x2f\x16\xe3\x6f\x28\xf0\x2c\x76\x26\xd9\x40\x3e\x8f\x45\x7e\x5d\x91\x21\xf2\x73\xc1\x15\xbf\x5d\xeb\xef\xbc\xfa\x2a\xa9\x6b\xf3\x2c\x33\x1e\xf3\x2e\xbc\x0c\x5c\xff\xa5\xa9\xa6\x49\xf0\xb3\x31\x67\x95\xed\xcd\xc7\xd6\xac\xa0\x28\xe2\x98\xd6\xdc\x0d\x5c\xf6\xde\xc3\x4e\x06\x36\x2d\x78\xb5\xc9\x74\xa6\xc2\x89\x9c\xaf\x4f\xe9\x2c\x2d\x3a\x71\xeb\x96\x62\x87\xf9\x27\x74\x25\x7c\x5c\x91\x09\x88\xb2\xfe\x23\x8a\xda\x9a\x6a\x5d\x42\x73\x5d\x7e\x86\xc9\x4e\x37\x94\x6c\xef\xd1\xa9\xe2\x30\xfc\x74\xda\xfa\xd2\x97\x78\x56\xe1\xbb\x8a\xd0\x67\x77\x57\xab\x72\xae\xda\x8c\xda\x13\x6a\x44\xfd\x12\x1e\xb4\x8c\x96\x6f\x7f\xd0\x2f\xcf\x1f\xea\xd8\x55\x9b\x68\x36\x3f\x38\x59\x09\xda\x9a\x24\xdf\x22\x69\xd1\x73\x15\x98\x36\x96\x54\x84\xd5\x74\x9b\xb5\xb9\x55\x54\xd5\x4c\x20\x2b\x63\xfa\xdb\xfb\x90\xfb\x17\x3a\xa9\x29\x66\x7c\x6c\xbc\xab\xeb\x6f\x14\xa6\x1d\xd5\x01\xce\x59\x45\xb4\xc1\xb3\xde\xe7\x2b\x7b\x54\x3b\x9e\xa9\xc7\x9c\xd8\xba\x28\xca\xff\xa3\x67\x35\xf5\xce\x35\xed\x19\x51\xdc\x45\x0d\xff\x87\xca\x17\x7c\xaa\xe0\xf1\x7f\xbd\xeb\xa7\x0f\x23\x92\x16\x43\x79\x19\x71\xe3\x2e\xf2\x59\xb0\xb5\xcf\x76\xfd\xf0\xe5\x8e\x0d\x9f\xe8\xf7\xed\xaa\x8d\xd3\x71\x19\x2e\xed\xa1\x4b\xc4\xda\x05\xae\x40\x12\x76\x5a\xf9\xd8\xb8\x4c\x42\x8a\x3c\x72\x77\xd7\x33\x44\xcc\xd0\x8f\x21\x56\x66\x65\x2f\x84\x70\x3f\xc6\xda\x11\x3a\x22\x9f\x09\x84\x69\xb2\x1c\x47\x21\x4b\x38\x31\xea\x70\xea\x2d\xde\xe5\x40\xf9\x8a\x9f\xa8\x29\x86\x71\x6c\xd6\x6d\x96\x93\x22\xa4\xd3\x2b\xf7\xf3\x03\xc0\x3a\xca\xd8\x12\x5d\x09\x7e\x7c\x06\xfc\xbd\xc0\x6f\x70\x6e\x8b\x05\x70\xbb\x12\x29\xd4\x2d\xc8\x8b\xe5\x6f\x0a\x3e\x0e\x7e\x9b\x47\x76\xf8\x44\xbb\xc9\xc8\xd3\xb7\xc1\xd8\x30\x04\x84\x4f\x6a\xc0\x8c\xfd\x0b\x9d\xbc\xc8\xdc\xbb\x83\xb1\x45\x69\x11\x06\x1e\x2f\x43\x36\xc1\x73\xb5\x99\x9c\xdc\x62\xfc\x97\xd3\x71\xf8\x3b\x98\xe6\x07\x8a\xb7\xf1\xfa\x54\x29\x87\x7c\x0f\x26\x5f\x68\xad\x1e\x95\xe0\xb9\xaf\xf4\x1d\x39\x50\x13\x14\xbd\x27\xaa\x19\x64\x96\x88\x3a\xc9\xfd\xa2\x41\x75\x1e\x19\x2f\x9f\x68\x8e\xee\x21\x18\x7f\x68\x57\x03\x4e\x70\x25\xf0\x80\xd5\x2b\xaa\x7a\xd2\xb3\xc5\x30\xb6\x43\x3b\x42\x7b\x18\xc9\xcb\xed\x40\x0b\x28\x1d\xd7\x1c\xb8\x28\x80\xc1\xf0\x9e\xd0\xa0\xb4\x13\xae\xfd\xd1\xb3\x31\x23\x30\x91\x11\x03\x81\xc9\xc7\x4d\xe5\xca\xbc\x30\xe3\x18\x86\x02\x01\x1e\x9a\x3b\x7c\xac\x2e\x76\x39\xcd\x6c\x68\xf2\x02\xc0\x03\x91\xdb\x23\x0f\xe9\x20\xaa\xfb\x25\x3b\xb9\x1d\x78\x75\xcc\x62\x92\xc9\x7c\xbc\x0c\x8f\x29\xd1\x99\xcf\x54\x45\x94\xa4\x0f\x76\x7b\x60\xc8\x67\xf4\x32\x45\x3b\x40\x97\x9b\xc9\x3c\x00\x99\xf5\x17\xf4\xb3\x95\x32\xb4\x24\xb6\x1e\x40\x35\x9e\xc4\x6c\x0d\x85\xc8\xbc\xa5\x24\xcc\x74\x08\xb1\x1a\x99\x3d\xe5\x97\x8b\xe4\x2c\x3d\x65\xa1\x8a\xd4\xb3\x9e\x5c\x91\x62\x3e\xbf\xa9\xc7\xa5\x61\xf4\x45\xa9\xd0\x49\xa3\xe3\x52\xa0\x80\x4c\x4d\xdc\x58\x07\xcb\x03\xaf\x97\x28\x9b\xc9\x87\xaa\xe7\x14\x4f\x6e\xcf\x20\x0b\xc7\x63\xfc\xaa\x52\xaf\xfd\xaa\x43\xaf\xa6\xe3\x71\x9a\x48\x62\x88\x0e\xc9\x5d\x35\x44\x7b\xb7\xe6\x60\x5e\x5e\xa4\xa2\x7f\xdb\x57\xac\x31\x6b\x28\x3a\x56\x74\x37\x12\x91\xf8\x18\xff\x35\x33\x36\xc9\x17\x68\x43\xf0\x30\x15\x5e\x04\x92\xc5\x5d\x1b\x3e\x4b\xb8\xa9\xc8\x2b\x6e\x22\x61\x96\xf1\xab\xf2\x35\xca\x35\xd2\x53\x87\x27\xd9\xc1\xd5\x0a\xd4\x01\x59\x7b\x44\x18\xce\xe9\x39\x71\x96\x4e\x4f\x00\x25\xa4\xbb\x8a\xf2\x14\xb3\x82\x0c\x88\xa6\xee\x92\xa0\x5c\x1a\x6a\xd6\x89\x0d\x41\xe9\x03\xbc\x29\x02\x66\x3e\xae\x4c\x56\x44\x49\x18\xf5\xd9\xd9\x3b\xfd\x2e\x9f\x46\xd4\x7b\xd0\x65\x54\x35\x32\x19\x3a\xff\x52\xf0\xf4\xe3\x2b\xf5\x38\x70\xff\x42\xc7\xf4\x29\xf5\x69\x2b\x0e\xbe\x0f\xa7\xce\x95\x3e\x05\x0c\xad\x14\x11\xbc\xbb\x60\x5e\xeb\x19\xbf\x22\x2e\x6b\x2e\x20\x80\x5a\xb0\x47\x8e\x21\xbd\x10\x02\xb2\xa6\xa1\xbc\x6c\x42\x6d\x7d\xe5\xd3\xde\xd6\x3e\xe6\x6d\xd5\xe6\x5b\x33\x79\x61\xb1\x76\x65\x68\xcd\x8f\xc0\xd4\xf3\x25\x7c\xbb\x1b\x3b\x71\xc4\x61\xbe\x2f\xa3\x89\x0d\xc6\x59\x3a\x4a\x0b\xc4\x7c\x02\xe9\xbe\x18\x28\x5d\xa3\x8b\x8a\xbb\x6e\x64\xe3\x96\x6a\x35\xa1\xd3\xcd\xc7\x6a\xdd\xe6\x11\x4d\x6f\x38\x39\x94\x47\x36\x7c\x64\x7b\x81\xfa\x1b\x78\x7e\x3b\x54\x3e\x9b\x8f\x4d\xb6\x52\x61\xe1\x85\x27\x10\x4a\xde\xba\x96\xf0\x2b\x9d\xb5\x61\x9a\x7a\x0e\x4d\xb9\xdc\xf2\xb7\xe4\x3e\xfc\xdb\x0b\xd3\xd1\xd8\x16\x76\x17\xfd\x02\xd3\x17\xd3\x9f\x3a\x39\xa4\xf2\xd7\x1c\xaf\xf1\xd2\x2c\xff\x03\xa9\x91\x6d\x5d\x6c\xa0\xe1\x59\xa2\x56\x56\x5e\x64\xd6\x8c\x5a\x3e\xcc\xf9\x30\xf0\x5d\xb3\x0f\xb7\xe5\xdb\x43\xcb\x82\xea\x4d\x50\xcd\x87\x69\xb6\x8e\x6c\x16\x15\x29\x4a\x62\xe2\x17\xe9\x65\x8a\xc7\x6c\x2a\xaa\x0e\x6c\x12\x19\x1e\xf2\x6e\x6a\x22\xab\x61\x70\x9b\xec\xdb\x85\xa5\x82\x3e\xf7\xff\x02\x97\xe0\xc8\xa6\x5c\x4f\xe0\x1a\xd9\x12\xfe\xef\x53\x45\x9b\x5b\xc7\x19\xcc\xcd\x77\x7a\x59\x9a\x84\x29\x07\xd5\xcc\x9e\x03\x03\x24\x54\x3a\x4d\x92\xd2\x51\x1e\xa6\x19\x9e\x91\x20\xe6\xcb\x0b\x10\x24\xfd\xd3\x6e\xd4\x20\x59\xb5\x99\x53\xdb\x45\xc6\x79\x0b\xae\x83\x4f\xd4\xec\x5b\x3e\x24\x1e\xf1\xb6\x9f\x07\x43\x53\xd0\xc1\xfc\xca\xab\x82\x21\xd4\x10\xeb\x7e\x9a\xed\xa6\x7f\x82\x2d\x99\x06\x3e\x94\xda\xd5\xd5\x70\x04\x3f\x9a\xcd\x20\x64\x21\x2a\x51\x02\x3f\x9b\xea\x8b\x63\x93\x93\x33\x14\xaa\x67\xfa\x33\x94\xec\xff\x0a\xd2\x5e\x66\x90\x9a\x7a\xbe\x8b\xb3\x53\x0f\xb2\x40\xbf\x10\xcd\x83\x5d\x1b\x8a\xff\xfb\x53\x52\x44\x14\x02\xb3\x67\x95\xc6\x6e\xb2\x92\x4d\xc6\x45\xb8\xde\x52\x46\x0f\xac\x18\x7c\x3c\x7d\x4e\x31\xdf\x2e\xc7\xf6\xf5\x68\xd5\xa2\x9f\x2d\x00\x44\xe4\xba\x7c\xac\xc3\x68\x6b\x92\x49\x91\xd3\x8c\x85\x52\xef\x74\x5c\xa5\xe4\x9a\x9c\x92\xa7\xe2\x75\xab\x6b\xc7\x90\x54\x73\x56\x44\x1c\x54\x60\x75\x71\x93\x88\x4f\x54\xdf\x7f\x64\x92\xa1\x29\x0a\x23\x64\x11\x22\x3a\xa6\x34\xc2\xa1\x78\x07\x2c\x07\xcf\x35\x30\x9f\x8d\x1b\xc4\x18\x67\xe9\x6b\x36\x74\x63\x48\xba\xe2\x2f\x39\xd7\xf3\x91\x6a\x82\xe6\x36\xcc\x6c\x61\x18\xa0\x21\x2a\x33\x7e\xbe\xb5\x32\xbf\xdb\x9b\xc8\xa0\x20\xd0\xc4\x40\xa5\xf1\x71\x53\x04\x3f\x4e\xa3\x3c\x4d\xda\x3e\x78\x06\xc5\x05\xd6\x03\x0f\x8d\x0a\x70\x5c\xc7\x57\xfd\xf8\xb5\x19\x55\xa2\x63\x19\x00\x8d\xe7\x43\xce\x76\x46\x4f\x28\xd5\x05\x23\xe6\xe6\x3a\xe1\xd0\x24\x03\x80\xbb\x05\xc5\xa2\x90\x20\x48\xed\xe1\x7a\x2e\x28\xf6\xf5\x1f\xd5\x0c\xf4\xfe\x05\xd5\x9a\xa4\x65\x84\x15\x7e\x5a\x81\x4c\x4e\xd7\x82\x85\x43\x2f\x75\x46\x69\x66\x09\xe9\x25\xf3\x45\xa5\x65\xde\x62\xb5\x51\x60\xbc\xfe\xc8\xe1\xdf\xf3\x51\x9a\x16\x43\xc2\xf0\x33\x5f\x0d\xf6\x03\x36\xdd\x31\x6a\x86\x21\x78\xf9\x31\xfd\x2e\x32\xfa\x19\xe2\xee\x80\x1d\xfa\x88\x36\x99\x14\x13\x3c\x06\x69\x2d\xea\xdb\x84\xf3\x18\xc6\x64\x55\xf0\x59\x92\xea\x14\xfb\x20\x02\xcc\x82\xe0\x84\x81\x11\xf9\x66\xdf\x91\xfd\x49\x03\x7d\xdc\x62\xa7\x98\x8c\xd8\xb0\x33\x33\x43\xe0\xe9\x36\x2f\x79\xfd\xaa\x68\x14\x39\x53\xe7\x28\xd4\xcb\x7d\xcc\x0c\x3b\x81\x66\x2a\xcd\xd7\x04\xc3\xea\xc8\xdb\xdd\x0c\xf1\x65\x85\xb2\x4c\xa3\xf8\x89\xd6\x2f\x1e\xe4\xfa\xc3\x77\xe8\x97\xe1\xb5\xbe\x1e\xa8\x28\xf3\xa2\x2a\x1f\x48\xa4\x2e\xe0\x64\xba\x06\xbc\xff\x37\x15\x75\xf7\x4d\x8c\x48\xb3\x75\x0b\x2a\x70\x21\x8f\x1a\xbb\x80\x12\x2a\xff\x8a\xea\x36\xbe\xaa\xf1\x8d\x8f\x6c\x78\x7c\x63\x31\x04\xab\x75\x8c\x7a\xa6\xe4\x93\x74\x15\xae\xce\x53\xfe\x98\xe3\x2b\x55\x08\xaa\xca\x34\xfb\x68\x92\xd0\x78\x36\x2d\x15\x5c\x27\x86\x3a\x60\x46\xcf\x4f\x95\x78\xcc\xe9\x5a\x25\x6f\xfe\x50\x27\x4c\xc3\x14\x4e\x1f\x56\x98\x53\x5c\x3e\x51\xe1\x55\x32\x19\xd9\x2c\x9d\x00\xca\xe6\xd8\x11\x96\x66\x1d\xf6\xc2\x7b\xa9\x5e\x66\xcd\xca\x64\x8c\xbd\x22\xb4\x9e\x3e\xd0\xab\x53\x5f\x32\x8b\x5c\xc2\x12\xf8\x00\x6d\xdc\x55\xf2\xd9\x77\xdd\x68\x9e\x63\xf6\x9f\xf1\x6d\x8d\xf3\x6a\x5e\xf8\xa2\x12\x37\xff\xdf\x71\x2f\x48\x45\x1f\x28\xa4\x41\x4c\x08\x70\x1a\xc3\x24\xc4\x8f\xf0\xea\xd1\x40\xa9\x30\xee\xd5\x5b\xe6\x0b\x9d\xb1\x19\xfb\xe1\x4d\xe1\x13\xd3\xe4\x62\x0d\xc5\xd6\x4e\x2f\x4e\xd3\xfe\xba\x22\x97\xc7\xf5\x4a\xb5\xdc\x47\x8e\xd1\x68\x5c\x46\x9b\x07\x0e\x38\xa2\x0a\xfa\x6a\x99\x5f\xf1\x05\xf2\x76\x6d\x68\xa4\x4c\xd4\xd7\x4c\xb2\xd2\xaa\x45\x03\x22\xa7\xe4\xea\x62\xe9\xc8\xe6\x34\x4f\xe9\x34\xcc\x51\x22\x94\x8c\xbd\x01\xce\x1f\xc6\x36\x63\x4e\x39\xf8\xed\x13\x53\x5f\x51\xaa\xbb\xbf\x32\xa2\x95\xf6\xc5\x4c\x85\xae\x85\x20\x09\x28\x7f\xa1\x6e\x8c\xd1\x40\xe1\xb9\xf6\x81\x45\xaf\x97\x93\xe5\x14\x30\x8f\x77\x7e\x9c\xc2\x0b\x6c\xa2\xe1\x79\x8f\x4c\x36\x88\x92\x76\x6b\x69\xd1\x51\xec\xf9\x2a\xee\x15\xd5\x51\xfc\xb3\x0a\xac\x21\x8f\xb8\x7e\xc3\x25\xbb\xa9\x2e\xdf\x79\x06\x9b\x2f\xc5\xf1\x23\x14\x61\xe3\x79\xfd\x3b\x9d\xd8\x23\x8b\x82\xaf\x7a\x87\xca\xc8\x58\x94\x77\xa6\x1e\x88\x89\x81\x76\x94\x08\x18\x32\xc8\xd2\x0a\xb5\x27\x7f\xe0\x40\x67\x18\x0d\x86\xcc\xb6\x81\xfe\xc3\x13\x5d\x9f\xb9\xe2\x12\x51\x15\xda\xbd\xa1\x68\x93\xd3\x38\x1d\x24\xa6\xa5\xbb\x13\x53\xd5\x9d\xa8\x3d\xb4\xb9\xb9\x4e\xdf\x86\x02\x3b\x47\xf2\xfd\x09\x2d\x0a\x3e\x76\xf5\x78\x93\x24\x42\xc1\xe2\xb0\x25\xbe\xe4\x30\x30\xf9\x63\xbe\x22\xb3\x93\xc0\x02\x2c\xb7\x0d\x13\x2b\x64\x6f\x4a\xe3\x95\x2b\xe9\x7c\x42\x28\x55\xdd\x05\x92\xb9\x98\xd6\xfe\x85\xad\xb7\x02\x15\x10\x41\xb2\x45\x9c\xc8\x17\x14\xe6\xde\x64\x4c\x45\xeb\x56\x9d\xa3\x20\xbe\xa1\x1e\x03\x26\xc3\x51\x38\x7b\xb4\xab\x48\x6d\xf6\x50\x11\x97\x3b\x6a\x8a\xe6\x0e\xd4\x55\x58\x52\xbf\x11\xe8\x69\x7d\x3b\xca\x09\x41\x02\xdf\x80\x8a\x88\xd0\x5d\xa9\x0e\xf9\xe7\xe4\x81\x04\xe1\xfa\x84\x87\x84\xa7\x19\x44\xf4\xb0\x0f\x76\x92\x98\x35\x1f\x77\x7d\x0c\x96\x78\x25\x18\x54\xb3\x4e\x6b\x9e\x72\x5d\x8e\x4c\xc7\xb6\x4c\x13\x1e\xf1\xca\x7e\xd7\x15\x9a\xfd\x1e\xad\x4c\x74\xf3\x77\x53\x42\x8b\x30\xee\xc6\xd4\x87\x74\x37\x02\x05\x81\xfa\x04\x29\x25\x9f\xd4\x66\x22\xca\x2c\x6d\x79\x82\x2a\x1e\x2c\x23\x1c\x11\x03\x2b\xf8\x44\x51\x56\x15\xeb\x63\x28\xb3\x3c\xa6\xb8\x7b\x2f\xd3\xfb\xc4\x6f\xa0\x5b\x89\x32\xd2\xce\xae\x42\xfd\xdf\x42\x3c\xce\x7c\x41\xf4\x9c\x9d\x5c\xdc\x7e\xa9\xdd\xed\xdc\xa8\x88\x62\xd0\xc2\xe3\xc6\x14\xaa\x6d\x1c\x28\xa8\x29\xf9\xbe\x35\xc5\x30\xa7\x9a\xb1\x88\x76\xd0\x0f\xf1\xc9\x54\x51\x8c\x81\x9b\x16\x97\xc3\xdc\xb4\xc2\xa3\xee\x87\x6b\xf3\x22\xca\x94\x50\xd2\x09\x45\xa0\x7b\xa2\x62\x74\x26\xb6\xff\x85\xaa\xdb\x2f\x17\xae\x08\xea\xe1\x69\xba\x3e\xbe\x53\x79\xfd\xb7\xa0\xe4\x77\x8c\x12\x4e\x75\x81\x8b\x23\x28\x7c\xb6\xf0\xe4\x10\xee\x7e\x82\x27\xc7\xbd\x03\x15\xdb\xbd\x09\x71\x3e\xc7\x7c\xbd\x7f\xc1\x17\x12\xbc\x76\xf3\x3d\x8d\x28\xfa\x3f\x6b\x06\x64\x69\xb6\x33\x30\x23\x82\xab\xba\xfe\xc7\x19\x3c\x6c\x3e\x51\xd9\x4e\xba\x6a\x33\x22\x71\x69\xf9\xe0\xa7\xaa\x77\xda\x30\x41\xdd\xcb\x52\xd3\xb7\x59\x4b\xc5\x60\xcc\xfe\x25\x18\x8f\xaa\x30\xc3\x5f\x52\xde\xd9\x7e\xf1\x07\x0e\x74\xc6\xb1\x09\xa5\x06\xed\xd6\x7c\xf9\x4b\xb2\xe6\x1b\x84\xd9\x32\xbb\x9a\xc6\xab\x14\xcd\x3a\xbd\xbc\x37\xb1\xda\x84\xdf\xaf\x69\x00\x6d\x68\x92\x7e\x9e\x8e\x44\x8a\x11\xc5\xcd\x3f\x51\x3c\x53\x7f\xa2\xf8\x39\xc2\x32\x87\x5c\x8e\x42\x61\x28\x9f\xe7\xd7\x71\x23\x50\x58\xf3\x1b\x78\xb5\x1c\x0b\xd1\x1b\xc4\x0a\xff\x1c\xf1\x27\x76\xf4\x03\x26\xcf\xf8\x4b\xf8\x19\xb0\x89\x29\x65\x43\xc2\xb4\x53\xb1\x73\xdd\xd0\xbd\x0f\x4f\xbe\x12\x66\x26\xb1\x6d\x85\x0f\x42\x43\x01\x96\x94\x69\x17\x50\x8d\x69\x77\x55\x00\x6c\xc3\x61\x12\x7d\x65\x82\x67\xae\x8c\x4e\x79\x8b\x62\x8d\x6a\xf0\xb2\xf9\x8e\x9d\x64\x69\x99\xa5\xd3\xca\x11\x40\x94\x46\x47\x35\x44\x6d\x98\xb9\xa9\x8a\xaf\x61\xe8\x43\x1c\xc9\xd3\xba\x02\x90\x1b\x62\x87\x2a\x23\x7a\x26\x80\xd3\xd8\xd6\x37\x9b\xa6\x01\xcc\x78\x9c\xa5\xab\x92\x1c\xa2\x0c\x01\xe6\x10\x3e\xae\xd0\x43\xf7\x6c\xab\x7c\x45\x58\x8d\x47\x14\x2f\xd9\x91\x5a\xe6\x79\xe0\x40\xa7\x6f\x97\x6d\xe2\x48\x40\x9d\xa0\xd9\x82\x67\xdf\x74\x83\x2d\x69\x6c\x67\x4a\xcf\x21\xcb\x88\x10\x41\xa2\x39\xe3\x4d\x25\x98\xd6\xd1\xc6\xfe\x37\x4d\xd1\x5e\xe1\xc6\x15\xd8\x9f\xe9\x39\x89\x7b\x0e\xad\x95\xd9\x7e\xdf\x66\xed\x8a\x4a\x9f\x8a\x9f\xc0\x33\x22\x4c\xf5\xdb\xb3\xe3\xa5\xd9\x4e\x6c\x0d\xf3\x3f\x33\x1a\x23\x50\x85\xcb\xcd\x0a\x1b\x4e\xf4\x06\x56\x25\x7e\xe6\x53\x72\xa3\x22\x06\xa4\x78\x83\xfe\xbc\xa9\x1f\xbe\x9c\xc6\x1c\xba\xca\x10\x9e\xaf\x15\x9d\xab\x19\xb2\x05\x2a\x5c\xd0\x0a\x28\x6d\x41\x45\xe8\x8f\x4f\x02\x4d\x38\x1d\xe5\x7f\xcd\x4f\x58\x7f\x8d\xdc\x16\x36\xff\x8d\xc0\xb3\x0e\x02\xcf\x21\x83\x48\x64\xba\x61\x57\xde\x9b\xaa\x29\x8b\xfb\x9a\xe8\xfc\xb9\x8d\xd6\xcb\x02\x5f\xba\x36\x55\x5c\x65\xf7\xb5\x2f\x9e\x01\xff\x3b\x0f\x65\xea\x89\xb3\x53\xc0\x83\xe1\x5a\xae\x04\xad\xf9\x43\x5b\xac\xb4\x8d\x5d\x7a\x85\x62\x00\xd4\x99\xee\x52\x6d\x81\x09\x5d\xe0\xea\x68\x33\xfd\xf7\xcf\x51\x6d\xd0\xf1\x09\x97\xaf\x0a\x7f\xf5\x18\x49\x7d\x09\x20\x50\x69\x7c\x3d\xd9\xf5\x66\x7c\x66\x03\x06\x47\xda\x00\x2a\x00\x7c\xb6\xab\x1b\x65\x27\x89\x61\x51\x02\xbd\x67\xab\x93\x4c\x07\x0e\x74\x96\x16\x35\x09\x3b\xec\x8b\x48\x33\x7a\xd7\xf7\x89\x6a\xb1\x8e\x4c\x62\x06\x04\xeb\x75\x71\xff\xc9\x3a\x92\x90\x95\x7a\x74\x29\xea\x48\xc5\x8b\x24\x11\x84\x14\x05\x10\xad\x68\x74\x2f\x54\x60\x98\x03\x1b\x73\xe4\x83\xe8\xf0\xa4\x96\x4b\x3a\xe9\x52\xaf\x5e\x64\x13\x2a\x66\xeb\xfa\xb5\x4e\xed\x9b\x50\xda\x39\xb1\xd0\x61\x9b\x61\xc7\xf3\xa4\x93\x63\x7b\x29\x5f\x18\x72\x8e\x7b\x81\xa7\x8d\x19\x45\x49\x14\xa6\xa3\xf1\xa4\x20\x88\x6d\xf9\xbe\x5c\xd0\xe2\x55\xd0\xbe\x4b\xbf\xcf\xc7\x14\x1c\xf3\x1f\x35\xec\x8c\x83\xa8\x24\xe1\x52\x10\x88\x5c\x0d\xaa\x53\xc1\x6a\xf8\xb7\x21\xc7\x9f\x8c\xf3\x35\xd7\xd5\x47\x4f\xf8\x1a\xbd\x4d\x74\xf8\x31\xf0\x27\x6b\x42\x0d\xd8\xaf\xac\xef\xc6\xd3\xd5\xc6\x1b\x31\x0e\x93\xaa\x3a\x21\xfc\x39\x61\x23\x7f\x47\x41\xb7\x79\xc4\x48\xcc\xfd\x76\x5c\x1b\x24\x19\xd3\xa2\xd8\xae\x2f\x7b\xb7\x22\x90\xac\x32\x5e\x45\x76\x36\x4a\x13\x93\x17\x96\x8b\xa8\x3c\xc5\x14\xf8\x1d\xf1\x51\x53\xb8\xc1\x10\xd5\xf2\xaf\x78\xc0\x30\xf0\xc9\xe6\xf9\x9a\x8b\xe1\x4f\xa0\x8c\x5d\xa1\x2d\x74\x4c\x60\x9a\xb6\x10\x7a\x13\xcc\xb6\x88\x08\x16\xa0\x76\x3e\x56\x91\x38\x88\x88\x22\x89\xab\x2a\xb3\xa2\x7c\xa2\xbc\x63\x94\x2c\x9b\x51\x3a\xc9\xdb\xe5\x63\x66\xae\xdc\xa9\x6f\x45\xbc\xad\xc1\x3a\x0f\x54\x34\x6c\x26\x45\xba\x47\x49\xb0\x7e\x1c\x28\xe1\xd4\x8f\xb1\x9a\x51\xa2\xfa\x94\x9e\x03\xbe\xe1\x53\xcd\x13\xd2\xee\xaa\x10\xfc\x2e\x6c\x91\xe3\xea\x77\xfc\xa7\x1a\x3b\x91\xc7\xe9\xaa\x4d\x22\x56\xf5\x93\x16\x30\x5d\xa1\xa0\xb6\x9b\x24\xdf\xed\xa8\x97\xf9\x58\x10\x71\x14\xa0\x69\x7c\xdc\xac\xe8\x99\xd9\x71\x9a\x31\xab\x24\xeb\x78\x6f\x5d\xa9\xfd\xe9\xa1\x97\x3a\x85\xcd\xb2\x34\x8b\x98\x3f\x08\xeb\xe9\x8c\xea\x88\x6c\x53\x91\x0c\x2d\xc4\x72\x91\xf0\x7f\x4a\x6f\x1c\xa8\x96\x5f\x0f\x14\xc8\xef\x53\x32\xe7\xfc\x0f\x0f\x15\x14\x18\x99\x6c\x85\xd1\xf6\x40\xe9\xfc\x10\xcf\x43\x1a\xf9\x8a\x0f\xe9\x32\x47\x8b\x68\x6d\x6f\xba\x2a\x75\x6f\x12\xc5\xfd\x7c\x46\xb1\x25\xb3\xf0\x18\x10\x10\x8c\xc9\x94\x76\x83\xc7\x9c\xfa\x1a\x70\x1e\x66\x94\x29\xcc\x28\xfc\xd7\x2d\xa5\x76\x78\x4d\xe9\x85\x7e\x2b\xd0\x88\xa6\x06\x28\x75\xdf\x14\x66\x97\x1a\x14\x83\x2a\x2b\x3e\xf0\xc7\x8a\x1f\xeb\x1d\x6d\xe4\x77\x32\x99\x3c\x42\xc6\xeb\x4d\xa0\x97\xcc\x84\x11\x6b\xa4\x02\xa7\x01\x99\x62\x3e\xae\x81\xe3\xca\xfc\x24\x45\x1e\x80\x12\x3d\x93\x79\xf1\x89\x32\x17\x32\x0f\xb6\x3e\xe3\x89\x73\x4e\x04\xbe\xc6\x7d\x42\x4f\xa1\x81\xe7\x9e\x8f\x37\x9e\xab\xd4\x7d\x23\xd2\xd3\xcf\x67\x54\x9a\x7a\x19\xed\x4e\x27\x3b\xb2\x34\xeb\x84\xf5\x3c\x4d\xc8\xa5\x5a\xfa\x5e\x06\xfe\x66\x35\xcd\xa2\x02\xb5\x05\xe6\xc4\x0b\x7c\xe1\xe3\xa3\x26\xb6\x80\x7e\x3a\xe0\x96\x28\xcb\x3e\x05\x7e\x9f\x5d\xa8\x82\xda\x56\x23\xa2\x65\x70\xc3\xa7\x7c\xa1\x32\x2d\xed\x33\x43\x93\x14\xc3\x34\x4e\x07\xdc\xdc\x93\x01\x59\x0f\xae\x3f\xd9\xac\x25\x6e\x0b\xf3\x7a\xcb\x87\x75\xf7\x03\x3d\xf6\x51\x0f\xd8\x17\x3b\xc3\x34\x2f\xa2\x18\x5c\x7a\x6a\x7e\x6c\xc1\x6b\x2a\x3a\xf1\x12\xcd\x05\xd5\x4f\x8b\x19\xd5\x16\x65\xf1\x41\x01\x4f\x95\x9f\x71\xbc\x7a\x1e\xc2\x7e\xda\xfb\x7f\x6e\x5e\xb6\xfc\x38\xc2\x79\x25\x5f\x7d\xde\xf3\xcf\x45\xab\x11\x68\x7d\xd4\xa0\xd4\x47\x8a\x87\x91\xe9\xf9\xe4\x32\x9a\xb4\xcb\x27\xc5\x30\xcd\x3c\x55\xa5\xf4\xc9\x3c\xe8\xb1\x3e\x4f\x78\xe0\x80\x48\xd7\xf1\xdc\x8a\xab\xcc\x1c\x38\xe0\xca\x29\x75\x22\x96\x83\x04\xf3\x96\x1f\x72\x03\x05\x9e\xc6\x4b\xf1\x07\xad\xa5\x49\xdf\x66\xe0\x16\x77\xc2\x96\x0b\x5e\x9f\x9a\xe7\xf0\x80\xb0\xb8\xae\x8a\x02\xb7\x50\x90\x61\x71\x22\xfa\x76\xc9\x2d\x1a\xa8\x61\x32\x33\x8e\xfa\xe2\x2d\x35\xf1\xa6\x94\x39\x94\xdc\x8e\x35\xe1\x10\xa8\x11\x49\x5b\xaf\x60\xf7\xf2\x89\xea\x82\xe6\x2b\x51\x86\x66\x8b\x34\xad\x01\x75\x66\xba\x39\x5d\x70\xdf\xd9\x6d\xda\x67\x36\x5c\x71\x1a\x85\xa8\x1f\xbf\xa3\x6a\xef\xef\xa8\xd1\x6a\xb3\x66\x30\xd5\x84\x1c\xe0\x0f\xe8\xcf\x2a\x31\xba\xb4\xa8\xca\xef\x42\x24\xfe\x23\xda\xe7\xfc\x01\x4a\x92\xd0\xe2\xd3\x1d\xfb\x5f\x78\x71\xb6\xe5\xa3\xe2\x2d\x5c\x32\x9f\x04\xdb\x29\x35\x34\xc1\x25\xc5\x91\x15\xd4\xff\x3b\x53\x0d\xc0\x57\x42\x8c\x61\x3a\xc9\xb8\xf1\x8d\x8c\xed\x07\xaa\x22\xfa\x83\x1a\x3c\xa4\x5c\x41\x84\x64\x2a\xa2\xdc\xe5\xe9\x32\x84\xd0\x72\x72\x17\xdf\xd7\x21\xce\x30\x22\x69\x91\x47\xe8\x49\x08\x62\xc1\x77\xb1\xbe\xa1\x24\xc7\x4e\x55\xe7\xbb\x7c\xd5\x18\xb1\x37\x53\x69\x22\x25\x10\x8e\xbd\xa6\x16\xe7\x5a\x9a\xca\xc0\xbf\x28\x40\x69\x39\xa8\xda\x6e\x92\x87\x67\xa3\xd7\xa2\x96\xef\xd8\x1e\xd7\x72\x62\xc7\x1f\x12\x8c\x9a\x62\x98\xa5\xe9\x08\xbf\x86\xf1\xcf\x4d\xc5\x0f\xbf\xa9\x6c\xd2\x7f\xf5\x5f\xfe\xd7\xad\x32\x1e\xe3\xba\x4e\xe0\x3b\xe4\xe5\x5e\xad\xe4\x52\x4b\xb3\x4b\x72\x55\x33\xbe\xc8\xf3\x2f\x28\x6c\x77\x5a\x1e\xce\x88\x5d\xa1\x0d\x83\x3f\xf9\x77\x81\xa6\xc6\x4c\xf3\xa8\xb0\x7b\xa8\x44\x22\xba\x50\xe5\x9f\x0a\x59\x3f\x59\x48\xc7\x43\x57\xde\x81\xd0\x92\x2a\x78\xca\x59\xcf\x9c\xd4\xfe\x6b\xe4\xe7\xb0\x86\x1f\xd9\x50\x8c\x2f\xd7\x6a\x9e\xf6\xc0\x81\xce\xba\x2d\x28\x2b\x03\x22\xeb\x77\x28\x79\xe5\xe3\x26\xba\x9e\x7e\x94\x8f\x3d\xd9\x1f\xb2\x37\x1e\x9d\xe2\x93\xda\x28\x7d\x19\x07\x0e\xd3\x78\x24\x51\x20\x4a\x3f\x9c\xd4\xf1\x89\x9b\xb9\xcd\xc3\x61\xf4\x46\x3a\x1e\x66\x65\xb0\xd9\xf6\x9b\xf9\x0e\xc1\xc3\x10\x44\x9f\xd4\x93\x7f\x17\xa6\x8f\x2b\x38\x0b\x3a\xc0\x6e\xca\x55\xcf\x5d\xd0\x05\xf3\x09\x95\x89\x84\xd7\xca\x57\x93\x22\x53\x18\x7a\x18\xa2\x03\x42\x97\x28\x02\x21\xfe\xef\xf2\xa1\x59\x6b\x79\x20\x04\xb7\x06\x65\xb5\xfb\x48\xbd\x9f\xa6\xd9\x6e\x95\x1c\x7f\x13\x65\x04\xc7\x88\xe0\x79\xa2\x90\x1b\xf1\x31\x5e\x39\x7f\x84\xda\x2a\x42\x9b\xe0\x9b\xd5\xa6\x97\xa7\xf1\xa4\xa0\xba\xe7\x82\xb0\x79\xfc\x5b\xfa\x16\x3e\x6e\x2a\xf8\x99\x38\x8e\x9c\x54\xbe\xc8\xc8\x28\x02\x87\x4d\x75\xf1\x89\xc9\x38\x70\x68\xda\x31\xcf\xb8\x08\x36\x8f\x12\x9b\xe7\x23\x9b\xec\x52\x97\xcd\x2b\x15\xcc\x8c\xcf\x50\xe7\x4a\x20\xc3\x1e\x92\x71\x77\xaa\xc2\xba\xba\x04\xc0\xe1\xd9\x85\x4e\x94\x98\x30\x9c\x64\x86\x19\x1e\x58\xf3\x97\x76\xa5\xe8\xff\x2a\x3d\x8e\x34\xeb\x3f\x42\x57\xdc\xc4\xd2\x45\xbf\xa5\xf4\x49\x16\x1c\xe5\x2d\x85\x4f\x08\x91\xcf\x4d\x2b\x97\xba\x5f\x72\xd0\x07\xae\x4e\xb7\x6c\x63\xe6\x48\x7c\xc5\x89\x17\xd0\x57\x63\x39\xed\xec\x2a\x17\x70\x6d\xfa\x57\x94\x0a\x4b\x36\x1a\x5a\x22\xb7\x2d\x9f\x17\x68\xd6\x70\xeb\x17\x94\x60\x78\x7d\x14\x7a\x69\xb1\xd3\xb3\xa1\x99\x94\x2e\xc0\xb5\x3d\x51\x97\xe6\x63\x05\xe9\x0e\xe3\x74\x82\x80\x08\x4e\x14\xf8\x7c\x3e\x56\x1d\x9a\x01\xf3\x09\xce\xcd\x49\x46\x41\x6c\x1f\x3e\xbb\x90\x55\x10\xe5\xf9\xc4\xf6\x77\xd3\x53\x45\x6e\x7c\x4a\x75\x6c\x66\xba\x2d\x4d\x0a\xec\x71\x99\xe7\xd4\x74\xe2\xdb\xda\x2b\x5e\x6c\x82\x01\x67\x69\x8a\xec\x00\x29\x17\x10\xb3\x7c\xdc\x94\xbe\x47\x49\x3f\xca\x6c\x88\xcf\xb8\xe1\x37\x35\xe4\xd6\x30\x40\x9c\xd9\x31\x08\x78\xfd\x24\x1a\x43\x50\x04\x6d\xe7\x30\x11\x79\x68\x93\xbe\x73\x9d\x8c\xdc\xad\xa0\x78\x7d\x8f\xb6\x58\x33\x8a\x18\xfc\x63\x45\x0c\xfe\xb1\x1a\xcf\x5a\x8e\xcd\x8a\xcd\xe9\xfd\xb1\xf2\x22\x8d\x78\x8a\x0a\x63\x45\xe3\xa8\xbf\xfe\x64\xeb\xf0\xec\xd6\x95\xca\x5c\xc2\x69\xc4\x6b\x88\x00\xef\x6a\x82\x6b\xb4\x1f\x11\xfc\x7d\x46\x7d\x8c\xad\x2b\x54\xb8\x11\x7e\x4b\xcf\xd0\xf3\xd1\xd4\x77\x2d\x59\xbc\x1f\x86\xe5\x54\xa0\xc6\x05\x2e\x2b\x8d\xe4\xfb\x4a\xca\x81\x29\x5d\xd1\x8c\xfe\x3d\xcd\x98\x70\xb6\x49\x1c\x6a\x14\xe5\x83\x49\xd4\x97\xa0\x5b\x50\x94\xbe\x73\xd7\x86\xd7\x40\xa6\x79\x63\x3b\x8f\xdf\x81\x03\x4b\x9d\xf9\x43\x5f\x50\x6a\xc1\x2c\x5c\x25\x85\x2a\x0f\x5f\xff\xa7\x5a\x0e\xe5\x01\x6e\xc5\xb1\x92\xbb\x62\x06\x37\x3e\xb1\xc2\xef\x21\x2f\x74\x1a\xc8\xee\x26\xef\x92\xf7\x16\xf2\x79\x72\x33\x70\xa4\x6f\x4e\xd5\x0b\xc0\xb8\x14\x72\x61\x8c\x51\xe1\xd3\xc7\x14\xb4\x92\xa8\x50\xa9\x44\xd0\x52\x23\x25\x6f\x62\x2f\xf0\x49\x23\x00\xfc\xff\x9f\x4c\xa6\x09\xd8\x9d\x9b\x64\x05\x50\x6d\x47\xa4\x76\xe0\x80\x1b\xb2\x7c\x58\x24\x0a\x6e\x8c\x34\xcb\x77\x29\xbe\xe6\x2f\x94\xe6\x7a\xeb\x0a\xae\xd4\x8d\x20\xce\x1f\xda\xba\x32\xd5\xa3\x01\x17\x55\x56\x6a\x56\x23\x26\xc9\x50\x43\x87\xaa\xbe\x5b\xe6\x2c\xbe\x39\x1c\x66\x96\x9a\x36\x5b\x67\x69\x15\x6d\x9d\xad\x3d\x87\x03\x07\x3a\x71\x14\x02\xc1\xe4\x30\xfb\x88\xa6\x04\x26\xf4\x30\xf6\xf8\x51\x94\x44\x79\x98\x45\x3d\xdb\x46\xcd\x45\xfb\x1d\x25\x7f\xbe\xe8\x28\x5d\x1a\x9a\x29\x61\xcc\xd3\x1e\xa2\xe8\x49\x6b\x47\x46\x4b\x1f\xe5\x0f\x74\xfe\xd6\x53\xb4\x8c\xd0\x27\x3f\xa5\x46\x7f\x16\x29\x5a\x11\xc8\x65\x69\x59\x1d\xf9\xc3\x61\xa1\x48\xfd\x13\x60\x02\xb0\xbf\xaf\xe9\x1a\x1e\xcf\x92\x0b\xe7\x33\xed\x34\xbc\xc9\x3b\xaa\xbf\x75\x59\xd5\x0a\x19\xec\x8b\xa0\xfc\x01\x6c\x85\xe0\xb4\xca\x8d\x82\x2b\x3f\x86\xbd\x51\x91\x90\x40\x4a\x73\x5b\x65\x65\xcb\x99\xb5\x6f\xd8\xb6\x42\x92\x03\xa9\x01\x07\xf9\x28\xf5\x30\x11\x87\x5d\x54\x16\x2e\x8e\x46\xe3\xa8\x0f\xe0\x9c\xf0\xb9\xd0\x5d\x68\x8d\x70\x58\xa9\xf7\x6a\x0b\x98\xd0\xa5\x69\x6e\x09\xac\xe5\x78\x59\x9d\x8f\x67\x99\x46\x29\xca\x3f\xa9\x00\xc9\x36\x16\x52\x6e\x27\x33\x47\x17\xce\x27\x4e\x3e\x22\x2f\x4c\x11\xe5\x45\x14\x46\xdc\xed\xe4\x19\xf8\xa9\xc7\xd7\xdc\xf1\x98\x2e\x1b\x47\xab\x52\x83\x96\xd1\x97\xd2\xa4\x4a\xed\xfa\x99\xaa\xad\x7a\xa1\x73\xe8\xa5\x76\xeb\x97\x7f\xde\x57\x87\x1d\x81\xe0\x9b\xf4\xf8\x25\xc8\xdd\xeb\xad\xdb\xc1\xe7\xe9\xed\x23\x68\xa0\x8e\x12\x7f\xfa\xb3\x40\x0d\xb1\x7e\x1b\xed\x2d\x58\x9d\xeb\x53\xe5\xae\xae\x28\xf8\x25\x9e\x15\x4a\x3a\x37\x02\xc5\xdf\xca\xd8\x30\x96\x8b\x0f\x7c\x9f\xf4\xae\x66\x8c\xe0\x14\x43\xb0\x10\x78\x9a\xcc\x4d\xb5\x41\x0b\x1c\x65\x82\xfb\x88\x5e\xf1\x7e\x3e\x87\xaa\x72\x45\x7e\x4d\xf8\xe5\xca\xe7\xcb\xda\xe0\xe4\x9c\x44\xb8\xdd\xcb\xaf\x7d\x84\xe6\x19\x22\xd5\x47\xbb\xcf\x45\x5e\x9e\x74\x10\xe5\x85\xcd\x64\xa0\x4f\xc6\x83\xcb\x4b\xe7\x63\x95\x19\xe7\xc5\xba\xe3\xab\x76\x7a\xca\x0e\x3f\x76\x13\x4f\x12\x06\xe3\xc7\x0f\x1d\xa3\x08\xd3\x24\x33\x51\xdc\xae\x14\x90\x17\xd4\x88\x5b\xf9\xa4\x50\xc6\xbd\xaf\x61\xc0\x69\x96\x45\x96\xc1\x64\x52\xcd\xf1\x23\x40\xd7\x03\xcf\xca\xf4\x7d\xc5\x13\x3f\x88\x27\x05\xfd\x14\x03\x9f\x2a\xa5\x31\x1f\x4c\xdd\x50\xf8\x4f\x00\xaf\x73\x9a\xb4\x67\x2e\x02\x32\x2f\xae\xcf\x5b\x2e\x11\x17\x39\x2d\xcd\x7a\xc0\x73\x79\x69\x08\x46\x1e\x54\x75\x6e\x7c\x7c\xf5\x51\xa0\x48\x4d\x77\x74\x5b\x3f\xf7\x2b\x3e\xff\x77\x6d\xa1\x0f\xf1\x24\xb1\xda\x6e\x52\x74\x01\xeb\x72\x09\x7e\x14\x46\xfe\x36\xbd\x25\xfe\x07\xf5\xa4\xb2\x34\x5d\x76\xd1\x14\xd6\xe2\x49\x85\xbe\x3c\xe9\x66\x17\x43\x93\xf5\xa3\xe5\x65\xf8\x4b\x47\xde\xae\x84\x33\x14\x97\xc7\x72\x94\x58\x56\x51\x42\x11\x8a\xe5\xe0\x45\x5a\xbe\xfc\xd8\xd6\x5b\x2a\x39\xe8\x9b\x11\x76\x3e\xac\x13\x78\x96\xf8\x58\xc5\xbb\xfd\x34\x49\xa4\x2e\xe1\x26\x5d\x16\xfc\x74\x8b\xd0\x65\x2f\x4f\x92\x19\xf5\x83\x80\x54\x8a\x8c\x78\x4b\xcd\xeb\xab\xe1\xe3\x93\x0e\xf7\x97\xd8\xa8\x18\xda\xec\x31\xc5\x4c\x7f\x51\xd1\xf3\x71\xd6\xee\x5a\x65\x73\x73\x4c\x7e\xf0\x7c\xb7\x7c\xc4\x2e\x4e\x9b\x3f\xc4\xfb\xf4\xa7\x29\xeb\xd8\xba\x47\x46\x41\x66\x81\x5a\x8e\xbb\x19\x4d\x1d\xf4\x14\x5a\x1b\x7e\xc4\x67\x60\x93\x7d\x6d\xbf\x00\x37\x15\xab\xf4\x7b\xca\x53\x5d\xaf\x15\x02\xa8\xac\x12\x7f\x29\xb5\x51\xac\xe6\x6c\x2e\x51\xf0\x24\x2c\x0f\x4d\xe3\xf7\x10\x53\xf6\x50\x00\x6e\x3d\xf1\x49\xad\x60\xb6\xf8\x12\x54\x6f\xb2\xa8\x07\x51\x1d\x2d\x62\xf9\x17\x4a\x28\xed\x2f\x6a\x95\x0d\xca\x2a\xd6\x5a\x1e\xf3\x8c\xe8\x41\xd8\x9e\x2b\x7c\x05\x6f\x20\x84\xe7\xa1\x5f\xfa\x5a\x19\x00\x56\xc2\x05\x36\x7f\x9a\x76\x9a\xd3\x2c\x9e\x9b\x07\xf8\xf6\x15\xf8\xb5\x7f\xfc\x1f\x12\xd0\x11\x23\x51\xed\x0d\xad\x88\xf5\xa5\xae\x4f\x4e\x9e\xc1\xbb\x45\xf0\xb1\x85\xe5\x81\x97\x38\xb3\xa1\xf8\x8c\x77\x6f\x38\x62\x8c\x93\xcf\x80\x98\xd3\xd5\x4d\x4a\xc7\xa1\x84\xf8\x5f\x74\xb3\x9a\xde\x6c\x75\x36\x14\xde\xea\x6f\xd3\xaa\x41\x32\x76\x57\xeb\x8b\x3d\xb3\xe1\x33\xc7\x91\x79\xa3\x6f\x50\x8e\x87\x31\xf8\x87\xe4\xf2\xf0\x20\x5a\x1b\xaa\xf0\xc4\x52\x3c\x88\xb7\xbf\xa6\x22\x87\xd5\x94\x84\x86\xcb\x8f\x01\xa8\xdb\x42\xff\x0a\x66\xfe\x6d\x45\x3f\x05\x5d\x00\xa1\x87\xab\x33\xa3\x94\xb6\x7d\x92\x2d\x1b\x16\x75\x99\xe7\x05\x7a\x2c\x50\x12\x11\xc7\x9a\xf0\xf7\x71\xba\xce\x80\x00\xe1\xee\x69\x39\xea\xaf\x33\x0e\x65\x35\x49\x64\xaa\x07\x2b\x6f\x53\x5b\x47\xdf\x9d\x1b\x99\x4c\xfe\x0e\x8f\xe1\xa4\x8e\xde\x4f\x2a\x4e\x52\x5b\xc6\x17\x4c\xcc\x22\xac\x30\x7e\xa2\x81\x41\x93\xb0\x8c\xff\x37\xad\x43\xbc\xa5\x2d\x45\x9f\xaa\x8d\xd0\x5a\x9a\x92\xc1\xf4\xf0\xe7\xd3\x8a\x7a\xfb\xb4\x8a\x80\x88\xaa\xa0\xcf\x7d\x52\x18\xbd\x2b\x8a\xf5\x66\x90\x99\xfe\xc4\x70\x27\x0a\xa5\x9b\xdf\xd5\xc2\x6d\xbf\x1b\x6c\xc3\x87\xec\x5f\xe8\x1c\x38\xf0\x45\x5a\xe7\x68\xf6\xa3\xee\x06\x93\x72\x03\x01\x08\xb2\xae\x9b\x00\x3a\x72\x64\x39\xf5\x84\xee\x27\x80\xfb\x47\x6d\x84\x51\x34\xf8\xb5\x53\xc0\x50\x61\x03\x1d\x21\x98\x8a\xa0\xbb\xe8\x25\xc3\xda\x30\xb4\x52\x78\xbd\x7c\x5d\xec\x14\x45\x49\x30\x8a\x37\x83\xd6\x2f\xcd\xfb\xfe\x57\x19\xf2\x54\xe3\x17\x87\x46\x29\x9f\x21\xd3\x4a\x71\x13\x96\xaf\x6c\xaa\xd8\x97\x50\xc7\x70\xf0\x76\x07\x3b\x3a\xaa\x49\x68\x69\x7f\xbe\x22\x72\xb7\x54\xf9\x16\xaf\x50\xee\x2f\x84\x42\x5b\x2a\x05\x4c\x28\x27\x5a\x8b\xfa\x10\x1f\x13\x5c\xab\xdf\x06\x90\x75\xe5\x63\x32\xb8\xfc\x37\x2a\xb0\xb6\x89\xa1\xf6\xae\x9f\x16\x80\xe1\x47\xed\xe0\x18\xb2\x03\x3e\x51\xc4\x14\x97\x9b\x1a\x93\x23\x93\x98\x30\x16\x3a\x34\x3c\x30\x98\x51\x3e\x9e\xfe\xcd\x87\x04\x49\xe3\xcc\xf6\xa3\xb0\x30\x3d\xc6\x59\xb2\x5f\x09\xb4\x8f\xa9\xa8\x1b\x47\x36\x29\xf2\x47\xe9\x11\x0b\x30\xdd\x27\xa4\x15\x92\xda\xe3\x81\xaa\x44\xdc\xa5\xf7\xea\x18\xfe\x0e\x4b\x2d\xee\xfd\xc0\x97\xf2\x10\x0d\x0a\x11\x39\xbd\x13\xfe\xb0\x1a\x3e\xb4\xc9\x20\x36\x49\x7f\x17\x5d\x01\x2a\xf0\x7f\xaa\xdb\x88\x7f\x8a\xaa\x1f\xd6\xe2\x7d\x5a\x59\x12\x71\x94\xdf\x0e\x3f\x71\xc6\x39\xec\x38\x2d\x80\x4a\x71\x3d\xc3\x5b\xca\xe3\xdf\x52\x60\xf1\xd8\x0c\x12\xd3\x87\xf6\x06\xd0\x82\x5a\x3c\xfc\xa2\xce\xaa\x8f\x2b\x20\x63\x96\x9a\xfe\x5e\xda\x05\x48\x5d\x8e\xeb\xb1\x8e\x6f\xd1\x37\xb8\x42\x9d\x28\x28\xff\x9d\x36\x2c\x31\xfe\xe8\x14\xaf\x7c\x3e\xa3\x02\x13\xf2\xdd\x6b\x6a\xce\xef\x87\xd8\x5d\x58\xea\x77\x02\x8f\xa0\x07\xfc\x05\x96\x72\xe7\xc6\x5e\x8f\x52\x89\xd4\xf8\xe3\x39\x35\xfe\x78\xae\x71\xa4\xc7\x0c\x32\x6b\x59\x62\x09\x09\xec\x3d\xbc\x5f\x80\x9a\xb8\xd9\x26\x13\x91\x8a\xcb\x33\x5b\x79\xa2\xbc\x00\xb7\xc4\x5f\xf6\x53\x8a\xf4\x65\x95\xf1\x62\x18\x81\xef\x4d\xfd\xf0\xc6\xcc\x86\xf7\x71\x9b\x30\x08\x30\x60\xff\x46\x2b\xf4\x8c\x61\xc1\xf0\x88\xf7\x12\x4f\x02\x0c\x18\x0c\x00\x5d\xf0\xe2\x17\xbb\x64\xff\xe4\xb1\xd0\xf3\x42\x84\xfb\x79\x23\xbb\xf7\xb2\x5d\x13\xae\x12\xb8\xf8\xb3\xc8\xc1\xf8\xa4\x09\x1a\x3c\xb6\xe9\x38\xb6\x3c\x5d\xad\x1a\xb7\x07\x1d\x59\x9e\xdf\x58\xd0\x48\x45\x9e\xfe\xfb\xb8\x7d\xac\xfd\xbb\x35\x40\xb4\xda\xad\x85\x79\xbd\xed\x83\x1a\x08\xb8\xba\x98\xcb\x53\xad\xbf\xdb\x88\xda\x19\xd9\x3c\x37\x03\x79\x8d\x58\x77\x8c\x73\x43\x78\x73\x07\x36\x5e\xc2\x3e\xa7\xde\x96\xa5\x93\x5e\x2c\x9f\x13\xcf\xa5\xa8\xac\xee\x29\x31\x1d\x2d\x51\x3e\xa4\x71\x7d\x14\xa1\xb0\xe1\x3f\x55\x55\x66\x2d\xc7\xf6\x9e\x4e\x08\xce\x54\x74\x47\xcf\x78\xd1\x74\x82\xb7\xcf\x78\xe7\x0a\x26\x7a\x59\xb7\x7e\x6b\x6e\x6a\x2e\xc8\x7a\xeb\x7b\xfe\x50\x87\xf0\x5c\x3c\xc9\x23\x40\x2a\x05\xaa\xaa\xbd\xdc\x25\xc2\x2f\x5b\x03\x4d\x02\x1e\x83\x0f\xb6\xb7\x52\x25\xb2\xaf\x91\x91\x11\xf8\x29\x1a\x0c\x99\xb4\x48\xe8\xa3\xfc\x80\xf5\x27\xaa\x2e\x72\xb3\x66\xe3\xf7\x97\x91\x93\x6a\x8a\x63\xd9\x62\x46\x8a\x8f\x6b\x92\xb2\x73\x73\x9d\xd8\xf4\x6d\xd2\xf6\xb0\x04\x56\x11\x01\x3e\xe7\xf4\x54\x91\x05\x5c\x68\x2a\xf5\x8e\x4d\x91\xa5\x89\x19\x20\xcc\xc0\xb5\x1d\x53\x22\xb2\xc7\x9a\x00\x2f\x65\x2a\xb0\x8b\x7e\x86\x35\x69\xc9\x60\xa1\xa6\x7d\x4b\x69\x65\xec\x52\x03\x5e\xad\x0d\x5f\xf5\xad\x33\x3f\x2c\x2c\x74\xa2\x32\x57\x48\xf2\x28\x2c\x6f\x66\x0b\x1a\x46\x30\x75\x6f\x4d\x2b\x4c\x5f\xca\xf0\xac\xee\x6b\x57\xd5\xfb\xd4\xe4\x04\xad\x0e\x98\xb1\x07\x55\x8e\xb3\x62\xfd\x39\xcd\x17\x8f\xd8\xdb\x75\x97\xbc\xf2\xe3\x0d\x98\x1f\x5c\xff\xce\x8d\x32\x4c\x82\x0f\xdc\xd1\xf5\x05\x87\x9d\x1b\x4a\xd2\xff\x81\x26\xfa\xbd\x1f\xa8\xe2\xc6\x05\x54\x0c\x11\xbf\x5c\x0d\xd4\xe6\xfc\x03\x5a\x55\x5c\xcc\xd7\x43\xf6\x77\xf5\xcc\xec\x25\x80\x86\x91\x3a\x5c\x99\xfa\x61\x04\x6e\xe0\xe2\xe1\x3f\xb2\x41\xd6\x0b\x21\xdb\x67\xe4\x15\x50\x96\x04\xb3\x0b\xe2\xb2\x2f\x34\x8d\x4c\xc6\xe9\x9a\xcd\xda\xbe\xba\xc6\x13\x25\x30\xbd\x8f\xd1\x7b\xc4\xc8\x6a\x6b\x63\xfb\xbb\x43\x67\xb9\x98\x64\xbd\x8a\xf6\xe3\xc7\x41\x05\x46\xb4\x7d\x19\xcd\xcd\x93\xd0\x51\x4b\xcd\xe2\xf0\xa4\xaf\xb8\x91\x3a\x26\xe7\x20\xd8\x73\x2c\x0f\xc7\x62\xf1\xfd\x20\x50\xa3\x5f\x3f\xa8\xb5\x9c\xe6\x0f\x75\xc2\xcc\x9a\x51\x24\x76\x5e\x03\x6a\xf8\x58\x15\x6c\x08\x2f\xcd\xe3\xfd\xa2\xcc\xda\xf2\x2a\xad\x6a\xf1\x2d\x47\xe1\x1e\xd5\x3b\x9e\x92\x3f\x46\xc3\xa1\x45\xa3\x64\xb4\x86\xba\xcf\x74\x7d\x87\x82\x57\x84\x10\x6b\xd1\xe5\x60\x11\x9c\x9f\x7a\x22\x25\xa6\x4c\x44\x15\xf1\x96\xa3\xc7\xe8\xdb\xe5\x28\x89\x0a\x1b\xaf\xb7\xbd\x24\xc3\xaf\xc2\x5d\xba\x4a\xff\xd2\xac\x03\xb7\x6d\x6b\xca\xcc\xcd\x95\xee\xe1\xa7\xcb\x65\x00\x70\x2d\x71\x56\xf3\xd7\x5c\xa3\x7c\x51\x3a\x9a\xba\x8a\xf8\x28\x70\xf5\x88\x31\xaf\x07\x88\xc2\x71\x69\xef\x2b\xc6\x9a\x23\x58\xd1\xb0\x79\x8f\x6c\x54\xea\x6e\x4a\x87\xfb\x63\x94\x21\x99\xb8\x6e\x4a\x3b\x07\xf1\xef\x27\x48\x23\xf0\x34\x58\xad\x07\x8b\xef\x39\x30\xbd\x22\xd2\x06\xbd\x05\xe2\x91\xef\xa0\x10\x59\x19\x06\xc0\x36\xba\x4f\x5b\x0a\xbb\xfb\x7f\xc5\xc6\x61\xf8\x33\xf6\x17\x9c\xf3\xad\x29\x39\x42\xac\x81\xaf\xd2\xeb\x93\xe7\xf8\x8c\x62\xc7\x29\xcc\x78\x98\x66\x68\x00\x22\x27\x3f\x46\x5f\xcf\xc7\x4d\x73\x13\x71\x9a\x0c\x6c\x46\x3e\x0c\x5b\x71\x77\x57\xf5\x0b\xbe\x31\xf5\xd0\x88\x5b\x9a\x22\xf7\x46\x03\x79\xf2\xc1\x4e\x3e\x4c\xd7\x04\xb3\x01\xc7\x7f\x53\xd3\x27\xdd\x44\x65\x9a\xfe\x3c\x5d\xfe\x1b\x74\xb3\xec\xf5\x11\x26\xa3\x00\x7d\x5f\xd5\xcc\xfe\x1c\x0f\x0e\xaf\x5b\x18\xae\x11\x4d\x9f\x08\x14\x36\xe4\xba\x12\x88\xdb\x43\x93\x98\x30\x5f\xd7\x03\x45\x16\xf7\x28\xca\x0b\x02\xa8\x6e\xcd\xcd\xf1\x83\xff\x9f\x28\x1d\x10\x56\x44\x5a\x11\xf8\x87\x16\x09\xcd\xa2\x10\x70\x1f\x6b\x00\x17\xbc\xa3\x4b\xab\x03\x19\xdb\xae\x0d\x15\x88\x6d\x90\x0a\x27\x12\xac\xb7\x74\x8e\x79\x86\xf2\x29\xa7\x21\x5d\x1a\x5f\x61\xed\xa3\x97\x0b\xfb\xff\x0d\xf2\x49\x98\x40\x79\x72\xa3\xf5\xcb\x3f\xcf\xe6\x72\x07\x15\x57\x44\xf8\x8c\x5e\x11\x0b\x36\x70\xba\xc9\x9c\x0f\x41\x19\xd1\xe2\xe2\xb9\xe0\x2e\xd5\xf7\x96\x23\x7e\xfc\x84\x16\x10\x62\xf0\x23\x6a\x08\x37\x4c\x13\xd7\x11\x94\x79\x7a\x7a\x18\x32\x69\xaf\x09\xa7\x27\x59\x91\xa5\xe9\xa8\x0e\xab\xc3\x1f\x1f\xc1\x8b\x67\x4a\xb0\x5a\x95\xee\xf0\xec\x3c\xd5\x56\x67\x7c\xf0\x78\xaf\x42\x14\x5c\x2e\x01\x59\xc2\xf4\x13\x70\x67\x6f\x39\x6a\x4a\xd3\xeb\xad\x43\x44\x0b\x4e\x6f\x47\xb7\x7c\x9f\x5a\xd2\x09\x0f\x0e\x96\x46\x50\x6c\x5e\x51\xc2\xae\x46\x79\x48\xfa\xbc\x50\x05\x3a\xe8\x6c\xa8\xb2\x08\x17\xa6\xcf\x29\x1c\x7d\x99\x9a\x8e\x2c\x49\xa4\x1f\x16\x32\xed\x36\xc8\xe2\xf9\x64\x63\xbb\x49\x7f\x79\xb1\x33\x2c\x03\xb5\x44\x2a\x4c\x40\xc5\x71\x85\x89\x4f\x9a\x48\xc2\xfa\x76\xd9\x4c\xe2\x42\xc9\x4a\x5c\xae\xf0\x82\x69\xbc\x79\x3c\xc9\xf7\xf8\xb8\xe0\x06\x9e\x3c\x9e\xca\x1d\x3c\x3c\xd8\x9a\xab\xd3\x6d\xc8\xd9\x57\x1c\xc1\x3e\x3d\x00\x3c\xfb\x2d\x5a\x1d\xf0\xd8\xf7\x14\xf3\xfc\x83\x5a\x07\x93\xc2\x40\xa6\xa1\x6b\xa2\x83\x6d\xd2\xc7\x25\x2e\x06\x9a\xf6\x6e\xf9\xc4\xf6\x77\xb0\xcc\xf8\xa4\x09\xda\x1d\x0e\xd3\x6c\x82\xf1\x36\x66\xe0\x0c\xfc\x9c\xf9\x31\xb7\x28\x52\x53\x30\x54\x1e\x81\xf7\x31\x35\xa1\x01\xfa\x28\xc1\x45\xd0\xdd\xc3\xc8\x69\x7e\xd5\x5e\xda\x33\x99\x52\xe1\xe7\x44\x90\x4f\x6a\x99\xd0\x81\x03\x1d\x33\xc9\x8b\xcc\xc4\x91\x71\x6c\xe9\x28\x44\x7c\x80\x75\xc4\x27\x0f\x6d\x8d\x9b\x6c\x94\x97\x61\x2d\xd8\xa1\xb8\x85\x45\xef\x09\x01\xe5\x59\x0d\x3c\xdc\xd9\x7d\x98\x9c\xd7\x72\x9a\x16\x3d\x13\xa3\x4c\x0e\x9f\xc5\x54\x3b\x7c\xd2\x10\xc6\x1e\xa4\xd6\x56\x16\x85\x45\x4b\x0b\x1e\x04\xaa\x0b\xaa\xc9\x84\x72\x9b\xad\x8a\xf6\x08\x8a\x53\xdf\x56\x3c\x50\x0c\x9e\x16\x54\x79\x65\x1c\xc2\x26\x3f\x4d\xe6\x9d\x9b\x82\x64\xa2\xa4\x41\xb8\xf3\x67\xa4\x31\x11\x28\x1d\xea\xa3\x3a\xfd\xba\x0b\x73\x87\xb4\x8a\x47\x87\x50\xd0\x7b\xa2\xeb\x05\xec\x7e\x8d\x3c\x00\x0c\x32\xf4\x7a\xd1\x79\x42\xec\x80\xe4\xf7\x18\x27\x72\xf0\xf0\x5f\xc3\x9d\xc2\x29\x5f\x9f\xfa\x49\xcd\x13\x88\x10\x5c\x5e\xec\xe4\x4a\x3e\x98\x56\x86\x1d\x7d\xa3\x73\xe7\x86\xd6\xb8\x3f\x13\x78\xd7\xf6\xc8\xf3\x5d\x1d\x36\x4e\x95\xfa\xfd\x19\xaa\x66\xc2\x9f\xbc\xaf\x24\xf7\xf2\xd0\x24\x7d\x13\xef\x56\x3d\x2f\xd4\x97\xf1\x04\x3e\xd3\xb0\xc4\x7f\x8d\x2b\xe2\x13\xe4\x53\xfc\x67\x6a\x2b\x9e\x51\x2b\xdc\x14\xe9\x08\x1b\xa9\x09\xc1\xe1\x9b\x36\xa5\x2f\x78\x44\xe9\x07\x81\x39\x5e\x9e\xb5\x6a\x51\xb0\x88\x3f\x42\xcb\x9b\x1a\xc2\x70\x0e\xd7\x03\x5f\x78\x45\x49\xac\xde\x6f\xe0\xde\x5a\x74\x54\xa4\xbb\x7c\x2d\x1d\x82\x57\x42\x97\x47\xaf\x0b\x55\xfe\x19\x4a\x6b\x84\xe9\x93\x7e\x86\x67\x91\xfc\xd0\x4b\x4a\x84\x29\x74\x0b\x78\x95\xc7\x03\x8f\xda\x3c\xde\x34\x43\xbb\x9c\x66\xa1\xa5\x58\x48\xf9\xef\xf9\x8a\x4a\x69\x25\x3a\x46\xfb\xe1\x68\xa3\xa1\xeb\xdb\xc9\xca\xc8\xbe\x26\x40\x80\x46\x2a\x5a\xbd\x4b\x8a\x61\xbe\xd7\xcb\xc6\xec\xea\xaa\x01\xa2\x9d\x08\x2b\x65\x4a\xa1\x8c\x2f\x44\x5c\x86\xae\xcf\x25\x64\xe5\x52\x80\x8b\xdf\xb5\x51\x61\x42\xd0\xe4\x07\x9a\x2e\xa1\xbc\x55\x04\x0b\x57\xb6\x41\x90\xab\x37\xf4\x42\xc7\xe4\xb9\x1d\xf5\x18\x06\x8a\x9c\x13\x4c\x21\x7c\xbc\xd1\x80\xf9\x7d\xcd\x8c\xda\x4a\xb2\x03\xc1\x24\x0c\xe2\x35\x25\xa4\x7e\x59\xf7\x45\xed\xb2\x4d\xfa\x18\xe7\x03\x44\xfb\x47\x53\x05\x3c\xd5\xd6\xf8\x23\x87\x95\x14\x89\x4a\x27\x70\xc7\x50\x49\xe9\xc8\x79\x11\xc1\x65\x34\xc5\xb5\x44\x27\x7a\xa6\x15\x77\xf8\x6a\x93\xd2\x62\x94\x94\xb9\x59\xce\x59\x20\xee\x7a\x43\xd1\xdf\x6f\x38\x60\x5f\xdf\xc6\x96\x64\x80\xd8\x1f\x28\xad\x16\x77\xa2\x7a\x2b\x34\x29\x9a\xcf\xf8\x41\xc4\xf3\x41\x75\x78\xcc\x15\x1f\x3f\xa5\xd4\x47\x9c\x96\x02\xe9\x2e\x2f\x47\x31\x0b\x90\x94\x0f\x0e\x95\x0b\x30\xcc\xf2\x71\xa3\x2c\xc0\xd8\x84\x2b\x34\x71\x8b\x8f\x21\xe8\x04\x9a\x95\x8f\xb7\x67\x66\x87\x67\x17\x3b\x87\x5e\x42\x80\x8f\x42\xd9\xa6\x16\x13\xd9\x54\xfc\x2a\xa3\x28\x2f\x03\xa5\x25\x91\x8f\x85\xea\x31\x1f\xd7\xd2\xfa\xa5\xd9\x4e\x9e\x4e\x8a\xe1\x8c\xaf\xfa\xa3\x56\x2a\xf5\x6c\xcd\x2a\x53\xd9\x94\xbe\xb5\xf8\x9a\x89\x46\x76\x1b\xd4\xdf\xf3\xc3\x5c\x54\x23\x91\x6b\x69\xda\xcf\x26\xcb\xcb\x0a\x5c\x3d\x9d\x2a\xb9\xfe\x69\xe0\xbf\x35\x1f\xa6\xab\xb6\xe5\x85\x14\x81\x74\xe2\xe3\x1a\xda\x83\xca\x13\xc9\x20\x2f\x0c\x41\x3b\xdb\xad\x85\x85\xad\x1b\x68\x01\x61\x6d\x61\xee\x1a\x51\xc8\x23\x5d\x8f\x31\xe9\x4d\x96\x97\x25\x75\x92\x32\x8c\x07\x31\x5e\x68\x90\x41\x3f\xd8\x89\xa3\xa4\x6f\x5a\x95\xe7\x4f\x8b\x53\xde\x8c\xbf\x61\xd3\xcb\x26\xe3\x82\x89\xcb\x58\x70\x7c\xaa\x60\x7c\x77\xe0\xf1\x1c\x07\xb5\x67\xde\x6e\x14\xe0\x1d\x99\x3c\x34\x99\x69\xa9\xb1\xc1\x4d\x25\xd8\xb5\xe9\xa0\x16\x69\x96\xd8\xa2\xb0\xad\x32\x21\xab\x48\x16\xc9\x36\x68\x10\x5f\xb3\x49\x98\x8e\xc6\xa5\xbd\x61\xc8\x8d\x1e\x82\x72\x04\xd5\x1e\x8a\x79\xa7\x81\x81\xb6\xb3\x5a\x26\xa2\x80\x89\x61\x7b\xf2\x1d\x22\xac\xe5\x5a\xa3\xd0\xeb\x2b\xbc\x72\x1a\xf7\x6d\xb2\x5b\xcd\x0f\x70\x68\x0c\x7f\x70\x2f\x50\xac\xa3\x5b\x5c\x7c\x60\x21\x3a\x35\x96\x02\x78\x0c\xd3\xf2\xd6\x88\xce\xcb\x98\x71\xd4\xf2\x3e\xee\x42\x95\x8c\xba\x21\xf8\xed\x5b\x3b\xe6\x86\x18\x02\x44\x90\xac\xf1\xb1\xea\xee\xe4\x51\xb2\xd2\xaa\x94\x4a\x1c\x88\xee\x5a\x05\x8b\x30\x0a\xcd\xee\x72\x49\xe3\x09\x80\x5d\x4b\x8a\x31\xe5\xe7\xf9\xbf\x2b\xea\xef\x0b\x81\xaf\xca\x31\x67\xbc\x8c\x2c\x2a\xcd\xcc\x74\x92\x14\xeb\x33\x55\xaa\x60\x87\xf5\x68\xfb\x52\xd3\xc6\x3b\x81\xe2\x19\xdd\xa3\x14\x17\xc6\xf1\x64\x34\xb2\x85\x60\x63\x98\x89\x8b\xee\x57\x58\xb9\xea\xa3\x81\x2f\x76\x8a\x74\x3c\x8e\x65\xff\x08\x79\x1d\xbd\xfe\x87\xb1\xd7\x1d\x9e\x7d\xa5\x33\x4c\x89\x1f\x93\x3e\x24\x45\x85\x96\xd3\x85\x39\xe1\x88\x37\x47\x51\x1e\x25\x85\xcd\xc6\x19\x5d\x59\x4b\x91\x6d\xea\x3e\x93\xea\xd4\xaf\x9a\x58\xfa\x78\x70\xc8\xe7\xa6\x8a\xa5\xb1\xce\x60\x51\xde\x43\x6c\x72\x9b\xed\x2a\xb3\x58\x57\x8f\x77\xdd\x94\x1d\x5d\x45\x3f\x89\xd9\x4a\x81\x7f\x93\xd7\x87\x13\x2f\x14\x41\xed\x68\x1c\x5b\xc7\x2a\x0a\x50\x25\x23\x2a\xf8\x64\xa3\xa2\x27\x1e\x0d\xda\xca\xb7\xde\x80\x21\x91\xfa\x2a\x16\x3a\xca\xb3\x3f\x6a\x78\x92\x8b\x1d\xec\x57\x6d\xbe\x90\xae\x0a\x5c\xae\xa1\xd4\x99\x0f\xd3\xb4\x48\x27\x05\x51\xbe\xb9\xa6\xa8\x4b\xd7\x30\x5d\x2c\x10\x69\xcf\x01\x3d\xc9\x7f\x46\x71\xf0\xbf\xa9\x38\xf8\xdf\x54\xb5\xb0\x30\x8e\xc6\x94\x65\xb6\x95\x9c\x0e\x07\x8a\x6e\xb2\xf0\xcb\x2f\xf3\x02\x7c\x10\x78\xa4\xfd\x72\xbc\xde\xf6\x1c\x70\x2d\xc2\xc7\xa0\x96\x04\xc0\x15\x82\xad\x3f\xa9\x25\xc3\x73\x73\x28\x12\x97\x2e\x45\x66\xa2\xe9\xe7\xf8\xa4\x66\x47\x5f\x7d\xb5\xb3\x36\xb4\xc5\xd0\x66\xc4\x2c\x03\x17\x7f\x9a\xaa\x52\x7c\xdc\x60\xf4\x17\x3b\x61\x4c\x08\xd6\xb9\xf9\x0a\x82\x55\x2b\x01\x0a\x6f\xbf\x2f\xec\x2c\x47\xb1\x70\xe9\xe2\x25\x82\xcd\x97\x8f\x15\x86\x2e\x9f\x24\xbd\x28\xc3\x0a\x17\x7e\x6f\xb5\xa5\x74\xa4\x96\x2e\x2f\xdb\x2c\xdf\x5d\x5a\x05\x6e\x87\x06\x3e\xbc\x63\x89\x0a\x7c\xea\x5d\x3d\xe1\xfc\x03\xb5\x76\x77\x52\x48\x20\x5e\xbd\xc1\xcf\xe4\x6b\xb6\x1f\xe5\x43\xba\x1c\xfc\xc8\x31\xd8\x0d\x3e\xa9\xc5\xf0\x87\x67\xe7\x3b\xb1\x89\xfa\x7a\x2e\xf4\x63\x5a\x48\x7c\xdc\x10\xf5\x1f\xec\x44\x59\x9a\xb4\x2a\x62\xb9\xbe\xce\xb0\x19\x6c\x0f\x6c\x97\x66\x3b\x86\x67\x42\x00\x18\x39\xa6\xc0\x23\xc7\x9a\x48\x75\x97\xd3\x3c\x67\x04\x9b\xae\x4f\x49\xfe\xe5\xc2\xd8\x34\xcd\x6d\x42\x0b\xa8\x29\x82\x93\x58\xa1\x0c\x5e\xd6\xa2\x04\xda\x9c\x8e\x5b\xdb\xf3\x91\x68\xd8\x8e\x89\xdc\x84\xaf\x70\x02\xb4\x1c\xf5\xfd\xb6\x81\x90\x28\x7e\xd6\x4b\xa4\xde\x40\xb1\x13\x2e\xe6\x14\x1a\xcd\xc0\x96\x33\xad\x1a\x92\xeb\x77\x94\x64\xe7\x0d\x15\x0c\x9f\xd4\xd1\xd4\xe7\x70\x17\xa8\x67\xfc\x11\xf9\x91\x0a\x89\x84\x5b\x68\x8b\x2f\x1d\x74\x0f\x85\xcc\x1d\xbe\x6c\x17\xd2\x1f\x54\xb7\x80\xf0\x46\xa5\x88\x65\x18\xf8\x52\x68\xe7\x38\xaa\x8a\xc3\xb3\x8b\x5b\x98\x85\x94\x44\xb9\x7c\x5c\x82\x59\xf4\xe9\xf0\x72\x94\x8d\xf2\xdd\xca\x9f\xfd\x43\xc5\x36\xb1\xef\x19\xc6\xd7\x29\x1d\x8a\x17\xb7\xda\x1b\xbe\xbb\xfc\x61\xe0\x66\x9a\x3f\xfe\xf7\xba\xdb\xdf\xfd\xab\xaf\x76\xc6\x93\x5e\x8c\x3e\xa1\x20\x61\x15\x77\x0a\xbb\x7e\x21\x2b\xd8\x1e\xa3\xbf\xfa\x6a\x67\x60\xe2\x55\x93\xd0\x50\xb9\x1f\x97\xe1\x4c\x58\x28\x3b\xca\xb7\x26\x58\x7d\xfd\x46\x8b\x09\xb8\xf1\xa4\x1c\xe7\xb9\x10\x98\x08\x1d\xbb\xf0\x1e\xd5\xa5\x51\x50\x79\x5b\xa9\x52\xdc\x57\xc3\x14\x99\x2d\x4c\x14\xef\xf2\x19\x3c\x03\x62\x10\xce\x63\xbf\x20\xe7\xe7\x1e\x0a\xff\x43\x69\x8f\xb6\xbc\xaa\xe0\x72\x9a\x7a\x95\x3f\x47\x45\xb2\x20\x9d\xb7\x3b\x81\xaf\xb6\x12\x1e\x33\x25\xd9\xbe\x19\x25\xd7\x7d\x91\x5e\x23\x42\x9a\x37\x95\x48\x15\x08\x7c\xf9\xbf\xd7\x1e\xe4\xfe\x05\x22\xc1\xc9\xc7\x99\x35\xfd\xb6\x9a\x7f\x46\xc5\x1a\xde\x01\xbc\x0d\x08\x81\x6f\xaa\xec\x2a\xa7\xce\x7c\xb4\x5c\xbe\xc5\xc3\xb3\x5e\x10\xcd\x8d\xe2\xfe\xbf\x7a\x6c\xb9\x41\xb9\xb7\x33\xce\xd2\xc2\x2a\x7d\x43\xd1\x0d\xf1\x29\xdf\xa5\x66\x72\xdd\x95\x78\x5b\x72\x76\x54\x25\x67\x47\x9b\x35\xe0\xf3\xa8\x6f\xc9\x81\xf1\x9d\x04\xbe\xb3\x7a\x54\x49\x2e\x9d\x6f\xc2\x8b\xa4\xbd\xd7\x64\xdc\x0d\xd9\xca\x07\x8a\xe8\xf5\x83\xe9\xf6\xe2\x23\xe5\x90\x59\x1a\xc6\x66\xe4\xb4\x6b\x39\x16\xe2\xd9\x17\x3e\x51\x1e\x66\x60\x88\x0b\x7f\xc6\xdb\x8a\x7b\x0a\x31\x7b\x9d\x76\x2c\x6c\xf5\x59\x18\x1a\xac\xf2\xf7\x95\x1e\xc5\x30\x9d\x64\x39\xaa\x63\xf0\xad\x5b\x2a\x47\x7e\xa0\xe4\x0f\x58\xaf\x99\xe5\xd1\x28\x79\xc6\x6a\xd9\x52\xa5\xf4\xc7\x37\x9e\xf4\x38\xcc\xb8\x97\x66\x69\x4b\x4d\x9e\x83\x80\x8a\x8f\x6b\xce\xe3\x85\x4e\xcf\xc4\x6f\x98\x50\x69\xe5\x5f\xd0\xf9\x4d\x5d\x2f\xe4\xd0\x4b\x9d\xd7\x26\xfd\x01\xc2\x04\xf4\x18\xd0\xde\xe5\x63\x95\x8b\x8c\xcd\x1a\xc6\x13\x16\xbd\x28\xdb\x7e\x59\xa0\x97\x6b\xe1\xc4\xdf\xed\xf4\x6d\x18\x47\x89\xd8\x7b\xb5\x4f\x05\xe2\x7d\x41\xed\xe8\x30\x1d\xd1\x24\x7e\x79\xb1\xcc\x5b\xac\x65\x57\xce\x4c\x7d\x15\xec\x39\xda\x18\x30\x9d\x3b\xa8\xb7\xa6\x2d\x0a\x40\x4e\x57\x68\x5f\x62\x1b\x5f\xab\xd5\xc3\xa4\x4a\xcd\xe3\xa0\xb4\x01\x11\x09\x73\x48\xca\x27\x1b\xbe\xb9\x5d\x0c\x89\x6b\xfb\x59\xa5\x2e\xf0\x3e\x5e\xa7\x1b\x71\x72\x18\x87\x8b\x6a\xca\xf1\x6a\xe0\x21\x34\x3f\xb5\xe1\x81\x22\xf7\x71\x77\x52\xf9\x51\x55\xc1\x2b\x9a\xd7\x84\xed\x1a\x1e\xf2\x99\xc0\x13\xf3\x9d\x23\x78\x3c\x96\xcc\x55\xd8\x38\xfc\x08\x57\x6b\x60\x99\x77\xa2\xd8\x8b\xb7\x8f\xfa\x18\x58\x42\xa0\x88\x29\xba\xe8\x70\x2a\x6e\x28\xc7\x11\xde\x5c\x72\xc5\xcb\xd5\xc8\xae\xd9\xfe\x2e\xa5\x7b\xc4\xc1\x2b\x0c\xf8\x35\xec\x0d\x00\xa3\x1e\xe9\x7a\x2c\x04\x73\x9b\x8a\xfc\x87\x9a\x8e\xb0\xe1\x7a\x18\x5b\xcc\x03\x33\xcd\x38\x9e\xa7\x70\x8e\x0b\x6a\x39\xb7\xb6\xcf\xf3\x26\x70\xb9\xed\xae\xae\xac\xb5\x9c\xbe\xf4\x2d\x65\x24\xe3\x88\xa4\xaf\xa3\x34\x61\xd2\x2f\xe1\xf2\xf6\x20\xa8\x4f\xa6\xaa\x6d\x7e\x49\xcf\xc9\x9f\x53\xd3\x34\x3c\xd8\xcc\x1f\x0f\xb4\xec\xeb\x30\x16\xc6\x2b\x29\xb3\x7b\xfd\xe0\xba\x94\x40\x99\x61\x94\x2b\x88\x21\x4e\x9a\xe4\x57\x98\x9b\x7d\x9b\xb9\x9e\x54\x2e\x2c\x74\xec\xa8\x97\xf6\x23\xd9\x4f\x4a\x0c\x62\xde\x89\x41\x88\x63\xcb\x87\xe9\x5a\x2f\x7a\x43\x61\xbd\x39\xdf\x13\xf6\xc1\xed\xa6\x73\x69\xb6\x13\x25\xab\x69\x3c\x49\x0a\x93\x45\xf1\x7a\x4b\xcf\x1c\x7a\xda\xfe\xcb\x4e\x47\x73\x9c\x66\x36\x57\x24\x9f\x67\xd4\x48\xc0\x3b\xf7\xa9\xe7\x2c\x13\x03\x5a\xc7\x3d\xca\x53\x62\x4c\xa7\xb5\xe3\x06\xec\x5d\xb3\x7f\x53\x4f\x1a\x19\x62\xf9\x7f\x44\xb5\x61\x4e\x4e\xb5\x9a\x80\xd2\xe6\xc5\x58\x0b\x03\x25\x34\x84\x74\x53\x15\xea\x18\x3a\xc4\x5f\x55\x09\x36\xfb\x36\xde\x43\x2b\xd1\xb5\x7b\xca\x95\x28\xca\x29\x7e\xae\xed\x62\x83\xe4\x33\xd0\x15\xc7\xb0\x89\xb6\xf0\x46\xf1\x4c\x4e\x04\x1e\x7f\x7e\xd5\x37\x8a\xb3\x1e\xc4\x80\xb8\x10\xa4\xc1\xf5\x5b\xdc\x10\x82\x71\x7b\x5f\x95\x32\xec\xa4\x47\xc4\xec\x6e\x5a\x9d\x4b\xf7\x7c\x12\x3c\xab\x23\x95\xd5\xc8\x0b\x78\x60\x83\x32\x29\x04\x9f\x68\x42\x85\xfe\x6b\x93\xbc\x20\xac\xb5\x2e\xb8\xd3\x23\x04\xca\x01\x25\x08\x5c\x11\xb3\xa9\x21\xbb\xff\x5a\x03\xe6\x62\x91\x14\xfd\x98\xc2\x8c\x2d\xca\x3d\x6d\xdd\xee\x79\xa9\x8a\xb1\xb5\xfd\x75\xec\x06\x69\x0a\xfa\x9a\xd5\xbf\x9a\xfa\xc1\xf3\x73\x2e\x25\x19\x44\x6f\x8c\x44\x43\x07\x10\xc7\xf3\x6a\x4c\xe9\x7c\x03\x29\xcc\x92\x16\x5b\xa6\x07\xe2\x34\xba\x14\xd1\x52\x45\xdd\x75\x25\xdf\xdb\xf2\xb2\x6d\x64\x0e\xb1\x98\xae\x53\x68\x0b\x1c\x59\x69\x4c\x05\x68\x7c\x5c\xbd\xe7\x99\x0d\x35\x2e\x5e\x79\x47\x37\xd8\xcc\x22\x60\x7b\xa4\xeb\x55\x0f\x6e\xc1\xe2\x3b\x88\x83\xdf\x48\x9b\x0d\xec\x10\x2f\x96\x07\x2b\x66\x98\xc6\x4c\xbf\x8f\x4a\xdd\xf7\xd4\xc8\xc7\xf7\x9a\x33\xf5\x2c\x1d\xf3\xb3\xc3\xca\x3e\xad\xf5\x69\x4f\xeb\x10\xb3\xb0\x36\x1e\x99\x15\x9b\xb5\x7d\xec\x75\x72\xea\xdd\xc7\x23\x8a\xd2\xb7\xf4\x92\xd2\x39\x48\xcb\xec\x42\xe8\x0f\xb1\x96\xae\xd2\x8b\x84\x4b\xdf\xdb\xf5\xb9\x46\x6b\x43\x85\xf3\x93\x5e\xcf\x02\x3a\x0a\x6c\xcb\x5d\x80\x9d\xf4\x0f\xcb\x3a\xf6\x33\x85\xcb\x26\xc3\xa2\x75\x4a\x79\xe5\x0e\x66\x76\x36\x7a\xbc\x82\x09\xa7\xdd\x2c\x45\xb4\xa6\xca\x35\xb1\xb5\x6a\x4a\xca\x9b\x4a\xe0\xf1\x43\x2d\xf0\x58\x2f\x1d\x2d\x2c\x74\x8a\x0c\x51\x24\xad\x2f\x91\x4e\x51\x84\x84\x97\xa6\xfe\x11\x59\x93\x43\xa9\xd0\xb3\xf1\x9f\x25\x73\xc9\xc7\x8d\xf4\x9d\x3d\x5b\x14\x36\x6b\xab\xbe\xf3\x7b\xaa\x2e\xfa\x29\xee\x9c\xbb\x5a\x4d\x53\xe5\x66\x39\x8b\x42\xee\xfc\x21\x06\x7e\x3f\x50\x01\xf1\xfb\x0d\x48\xd5\xc5\x4e\x6c\xd1\x9d\xc2\x22\xbf\x33\x55\xe4\xa1\x5c\xcb\x44\xc2\x76\x51\x8d\x01\x64\x26\x8e\x4b\x17\x55\xda\x29\x81\x4f\x94\x17\x2a\xb8\x8a\xe7\x94\x72\xec\x60\x12\x93\x87\xce\xb1\x5c\x64\x1e\xa8\xbc\x46\xa9\x0f\xfa\x39\xb6\xab\x8d\xb5\x95\x7c\x98\x16\x6d\x3f\x22\xc1\x5c\x4a\x70\x10\xb0\xc4\x42\x1c\xbe\xdd\xe1\xd1\xa0\x5c\x1c\xdb\x2c\x4c\x89\x79\xb3\xe5\x67\xb0\x81\xf7\xe2\xe3\x26\xac\x72\x27\x5d\x5e\xce\x2d\xb8\x17\xc5\x9a\xd0\x0f\x8b\x39\x79\xb6\x9e\x38\x67\x88\x60\x90\x14\x9c\x57\x43\xa6\x9a\x1e\xf4\x8c\xaa\x67\x99\x51\xdf\x0c\x31\xd3\xe5\x04\xf5\x9c\x26\x49\x5d\x5f\xa3\xb4\x0b\x43\x1b\x73\x70\x20\x41\x39\xbd\x25\x89\xd6\x9f\x71\xf3\xa6\x71\x48\x8f\x9e\x17\x2c\x72\xe3\x73\xf0\xa7\x7c\xa2\x9a\x53\xe1\xd0\x8c\x7a\xce\x67\x4b\x71\xa4\xb4\x8a\x52\x84\x7b\x18\x67\xd5\x32\x11\x1e\xb8\x40\xe2\xbe\x16\x9c\xba\xdf\x70\x07\x8b\x1d\x6b\x72\xf4\x15\x64\x20\xa8\xe5\x48\xfb\x2e\x36\x09\xfb\x1d\xec\x14\x60\xeb\x59\x64\x60\x23\xa3\xa5\xf8\x44\xd1\xc5\xf7\x33\xd3\x8b\x92\x7c\x65\x5d\x71\xcb\x7f\x33\x50\xf5\xd7\x6f\x36\x8e\x04\xe4\x63\x93\x24\xce\xa2\xb9\x38\xcf\x89\xb0\x40\xbd\x09\x35\xd8\xff\x4d\x31\x34\xe6\xe1\x30\xb1\x51\x5f\x18\xe1\x78\xa3\xa8\x5a\xe3\x45\x47\xfd\x94\xae\xda\x8c\x37\x83\xc4\x76\x42\xc3\xdf\xf2\x94\xfc\x35\x84\xc2\xfe\x85\x4e\x3e\x9c\x14\x7d\xa2\xd9\xd6\x0c\x5f\xca\x19\x6d\xba\x80\x70\xcd\xc6\x7d\x79\xdf\x52\x1e\xa5\x5b\x92\xd1\x11\x15\xa4\x4d\xb2\x70\x68\x72\x9b\xef\x52\x73\x39\xac\x5e\xee\xb8\x3f\x1c\xdf\xd2\xb9\x8a\x52\x8e\x67\x0e\x3a\xaf\x06\xc2\xc2\x34\xcb\x26\xe3\x72\xab\xb7\x7d\x0b\xf5\x47\x95\xfe\x33\x7d\x23\xb2\x99\x9b\xdb\x9b\xbc\x2f\x2f\xcd\x76\x0e\xcf\x92\xb6\x36\x22\x92\xef\x50\x85\x88\x8f\xf1\xc2\x01\x1e\x3e\xa9\x63\xc2\x4f\x15\x71\xe8\xde\x0d\x85\xa6\xef\xfa\x62\xe7\xce\xae\x2f\xd1\xfb\x57\xe6\x41\xcb\x97\xf5\x18\xfc\x65\xa5\x46\x1c\x46\x59\x38\x61\xed\x72\x7c\xed\xc7\x1c\xba\x89\x72\x31\xdd\x1d\xff\x13\xbe\x45\x04\x8e\xeb\x2e\x9d\xc8\x76\x0b\x93\x14\xc2\xd0\xee\xa4\x29\x9c\x60\xcd\x3b\xea\x0d\x8d\x4c\xb6\x62\x41\xc8\xec\xa9\x72\xef\x4c\x95\x39\xd2\x5c\xfe\xa7\xf9\xc2\xf8\xcf\x54\x2b\x99\x4a\xe6\x5f\xc0\xbf\x8a\xda\x8f\x4f\xa1\x4f\x07\x7e\x30\x89\xe7\x19\x51\x7e\xbd\x49\x8f\x1f\xbb\xe6\x48\xa0\xc8\x11\x41\xe8\xe4\x24\x6d\x4b\x67\x25\x95\x5d\x5a\xd6\x52\xb6\xa0\xa7\x86\x8f\x10\x04\xff\x45\xcf\x3d\x5e\xfa\x31\x57\x19\xde\x2f\x14\x28\xb7\xc9\x90\x6d\x5d\x71\x26\xac\x97\xd9\x37\x86\x89\x5d\x8d\x0a\xdb\x52\x57\x06\xba\x7c\x11\x18\xf4\x5e\xc9\xbe\x3e\xa6\xc2\xb3\x17\x85\xfd\x64\xea\xf9\x41\x3e\x51\x8f\xa4\x17\x65\xdc\xf4\x17\xb5\x2b\x95\x5a\x5f\x0a\x7c\xcc\x07\xf4\x0d\xff\x91\xaa\x63\xa4\xfd\x28\x9d\xe4\x2d\x95\x19\x5c\x57\x03\xc0\xd7\x55\x63\x27\x36\x79\x5b\x91\x76\x1c\xe7\xd7\xe4\x04\xe0\x17\x7c\x3a\xfa\x05\x85\xb1\xcf\x56\xf2\xdd\xbe\x66\xfe\x1e\x9e\x3f\x3e\x74\x4f\x63\x1f\x20\x1c\x0e\x30\xdc\x15\x2a\x1c\x20\x0b\xfa\x2c\x50\xbd\x9a\x40\xe7\x66\xe9\x28\x2d\xf7\xe8\x8c\x87\x58\xa2\xcf\xc9\xc7\xaa\xf9\xca\xb2\x8e\x5e\x14\xca\x5d\x5e\x9a\x26\x11\xf8\x4c\x9c\x3b\x7f\xf5\x55\x76\xc8\x10\x99\x14\x96\xd9\x6d\x64\x22\x3f\xf7\x2b\x9d\xbf\xdb\x52\x82\xe8\xe7\x50\x7e\xe7\x13\x97\x34\x84\x71\xea\x2a\x4a\x58\x34\x97\xf5\x9c\x5d\x33\x1b\xf3\xc8\x24\x7d\x6f\x5c\x65\x0c\x4b\x8b\x0c\xbb\xb4\x16\x28\x11\xba\x0e\xc9\x49\xe8\xeb\x05\xc2\xa8\xe4\x67\x48\x7c\x22\x34\x71\x5b\x0d\x7a\x61\xe4\x10\x6e\xe2\x08\x55\x84\x64\xc6\x5f\xf1\xee\x0e\x4d\x1c\xdb\x04\x38\x97\x72\xbd\x6b\xa6\x1e\x11\x9e\xd6\xf2\x6c\x59\x36\x19\x94\x97\xdf\x56\x93\x72\x9b\x8a\xd2\x12\x83\x96\xd2\x82\xda\x1e\xc9\x1d\x9e\xed\x0c\x2c\x63\x48\x5d\x4b\xdd\xb7\xd7\x2b\x6b\x2b\x61\xf5\x3d\x81\x1d\x2a\x08\x62\xa3\xde\x09\xe9\xc5\x33\xaa\xc8\x8d\x1d\x96\x17\xc9\x27\x2a\x2b\xa5\xbe\x43\x3e\x74\x37\xcd\xea\xb7\x4a\x6a\xfc\x42\x53\x0b\xb3\x98\x64\xe8\x40\x89\x56\x1c\x19\x36\x11\x8b\x7b\x52\xd1\x4e\x45\xe1\x0a\x33\xb5\x3a\x26\x07\xcf\xea\x50\xf3\x9e\xf3\x87\x3a\x66\x30\xc8\x08\x17\x45\x16\xd7\x31\x67\x39\x4d\xd3\x4b\x4d\x93\x56\xa6\xdf\xcf\xac\xb4\x96\xe7\x39\x97\x3b\x32\x55\x7d\xe6\x23\xe5\xbb\x93\x9b\x4e\xd7\x6c\x46\x4d\x7d\xa5\xa8\x76\x57\x09\x0e\xdd\x55\x49\xd7\x9a\xb1\x59\x91\x47\xb1\x61\x6d\x63\xf8\x37\x0c\xb1\xf1\xf1\x86\xbf\x61\x52\xc1\xe5\x98\x4c\xc8\x72\x15\x27\x77\xbd\x1e\xbb\x34\xdb\x89\xa3\xd0\xcb\x7e\x23\x42\xc0\x64\x2b\x1f\x57\x85\xcc\xd2\x6c\xc6\xaf\x85\xc7\xbb\xde\xe5\xdf\x57\x9d\x6a\x1e\xb8\x91\x62\xcb\xf6\x37\xf8\x42\x19\x6c\x46\xcb\x4a\x18\xfc\x94\x26\x97\x3c\xa5\xca\x3d\x7d\x4b\x33\xfd\xd4\xc0\x75\x38\x4a\xcf\xbe\x70\x91\x72\x6f\xa1\x5f\xf1\x95\xb2\x8b\x53\xc5\xfa\x74\x09\x63\x1b\x92\xb9\xfb\x64\xa3\x6f\xc3\xd8\x64\x94\x6d\x80\x09\x1d\xb9\x36\x2c\x12\x53\x20\x2a\x04\xe0\xa3\x1b\x8a\xe8\xfb\x5d\xaf\x55\x62\xc2\x15\x01\x01\x09\x64\xd7\xcf\x0b\xbc\x39\x55\x22\xec\xdf\xd0\x3e\x85\x4c\x56\xe9\x3a\xe0\x1a\xdf\x0f\xfc\xc0\xd2\xfb\x53\xbf\x45\xfa\x96\x38\x51\x4d\xc6\x73\x04\xe8\xa1\xdf\xa8\xa0\x1d\x1e\xc0\xda\x89\x38\x8b\xaf\x7d\x7c\xd4\x44\x27\x3e\x30\xb2\x3b\xb9\x36\xac\xb9\xf5\xcf\xeb\x18\x3f\x8d\x63\x99\x7c\x15\xa9\x9f\x1d\x68\x73\xca\x90\x68\x69\xfd\x79\x94\xc9\xb9\xe1\x68\x34\x4e\x27\x49\x7f\x24\x93\xa2\x58\x7b\xe8\x45\xf1\x71\x0d\x51\x45\xb3\x9e\x51\x11\x25\x36\x33\xd9\x7a\xbb\x5c\x4a\x0e\x00\xe1\x60\xee\x0f\x94\x92\xd1\xb9\xc6\xe4\x74\x9c\xa5\x2d\x0f\x8d\x01\x61\xad\x14\x1c\x1b\xc1\x1d\x26\x1b\xdb\xbc\x68\x53\x1b\xd9\xc1\x4d\x1d\x0b\x16\x42\x5a\xf4\x0b\xea\x4c\x73\xaf\xbe\xda\x09\x33\xf3\x06\x67\x1a\xae\x29\xef\x2a\x8b\x9a\x49\x77\xcd\x8c\x77\xfb\x08\xfc\xae\xc6\x1f\xf3\x50\x35\xec\x04\xcc\x00\x9a\xd0\xcc\x59\xc4\x21\x15\x05\x72\x0c\x55\x68\x10\x7f\x7a\xa5\x33\xb4\x24\x23\xeb\x1c\xa1\x0c\x0d\xaa\x01\xc2\x06\x79\xd5\x79\x20\x1a\x5b\x15\xca\x78\x27\x85\x7a\xa2\x11\x90\x3f\x49\xe2\xb4\x5c\xf3\xb0\x76\x4e\x2c\xc7\xc3\x2d\x4f\x35\x12\xa3\x8f\xcc\x68\x94\x16\xc3\xb6\x07\x28\x1f\xa3\x96\x88\x94\x8a\x5b\x8e\x8f\xe8\x46\x23\x17\x60\xd4\xb7\x26\xe6\xac\x06\x58\x97\x1f\x2a\x1d\xa0\x1f\x2a\xbb\x0f\x42\xa1\xdd\xfe\xed\xdf\x45\xce\x8b\x7a\x03\xa3\x96\x11\x46\x01\xee\x85\x80\xe8\x23\x98\x16\x07\x14\x71\x29\x61\x7b\x43\x49\xb0\x0f\x6d\xbc\x3c\xa3\xd9\x05\xae\xaa\x01\x83\xf3\x6a\xba\x99\xf7\x15\xff\x51\x13\xbb\x7c\x9e\x4e\x32\xe6\x9f\xc5\x4d\x9c\xc0\x47\xf8\xa4\x79\x97\xac\x24\xe9\x5a\x6c\xfb\x03\xbb\xad\x45\xbc\x20\x10\xf4\xbb\x14\xd7\xc1\x1b\x9e\x54\xc8\x53\xdb\xef\x47\x56\x35\x01\xb7\x81\x1c\x1b\xb5\x27\x58\xed\xaf\xad\x18\x22\xd1\x09\x74\xb3\x3a\x4e\xb1\xf5\x8f\x9a\xb0\xea\x59\x94\xaf\xf0\x04\xbc\xc8\x22\xd1\x55\xa3\x37\xf7\x9d\xc0\xb7\x0a\x2e\x4f\x9f\x55\x94\x2f\x23\x93\x44\x6f\x38\xaf\xe4\x44\xf1\x7d\x58\xa0\x92\x78\xd2\x8d\x88\x92\x41\xfe\x97\xa4\xfc\x8f\x3b\x63\x1d\xe5\x96\xf0\x06\xd8\x12\x5f\xe8\xaa\x9e\xc3\xd7\x15\xe8\xe1\xdd\xa9\x87\x54\x21\xff\xc1\x4d\xb6\x36\x9a\x3a\xd2\x93\xbc\x10\x17\x80\xbd\x0f\xea\x74\xd4\x75\xde\x9f\x2a\xea\xb5\xcb\x35\x8c\x73\xb9\x77\x93\x34\x59\x25\xd0\x81\xae\x28\x5c\x56\xe3\xa0\x24\xb0\xef\xa2\xe4\xed\x63\x3a\xc4\x30\x1a\x66\xe9\x38\x4b\x43\x9b\xe7\x69\xc6\xf6\x5d\xb5\x27\x16\x1d\xa3\xd3\x76\x8f\xf0\xea\xab\x9d\x41\x9a\xe0\x87\x01\xf9\xbf\x83\x77\x84\x6c\xe0\x84\x62\x56\xdc\x9c\x3e\xae\x50\x3b\xfb\xf8\x57\x10\x0b\x7c\xae\xd9\x18\x3e\x57\xa1\x6a\x66\xfb\x13\x6a\x3c\xe4\x68\x14\xa2\x2d\xc7\x88\x55\x3e\xa1\xa7\x25\x91\xbb\x6f\xfc\x70\x8d\x15\x57\x75\xbc\x66\xbd\x5e\xe8\xf4\x2c\xe1\x98\x11\x9a\x23\xc1\xdf\xd1\x55\x8a\x62\x3b\x36\xbc\x09\x7e\xd9\x60\x2c\x40\x82\x7b\xba\x5c\x09\xfb\xb7\xbf\x94\xa5\xd9\xd2\xdc\x10\xa0\x42\x5e\x2c\x0a\x73\x9f\x55\x04\x0b\xe8\xf2\x04\x6e\xfa\x8c\xaa\x62\x7e\x65\x12\x81\xb6\xcf\xb1\x92\x9d\x99\x7a\xf1\xbc\x33\x8d\xf6\x6d\x9c\xd9\x65\x11\x3d\x43\xf3\xef\x31\xdc\x8b\x93\xa8\x76\xd3\x86\xed\x1a\xaf\x38\xed\xd6\x41\x64\xd8\xe7\x4a\x7d\xc8\x7f\x44\x13\xf5\xbf\xf8\xf7\x16\x5a\x7e\xa9\xb3\x4a\x15\x9f\x04\x15\x79\x8d\x22\x4b\xe3\xfc\x91\x96\xd0\xa9\xff\x8f\x0f\xa6\x1a\xc9\xa8\x6a\x35\xb7\xb5\x31\xb9\x4d\xb6\x53\x78\x85\x2b\xe5\xef\x32\x78\x10\x50\xa4\x94\xa1\xde\xb0\x26\x36\x09\x46\xed\x58\x5d\x70\xaa\x66\x7a\x3e\x77\xfc\xda\xfd\x28\x07\xfd\x99\xbc\x13\x27\xd7\xea\x6a\x33\xdf\x9c\x2a\x29\xc3\x93\x8e\xa1\xce\xf4\xb9\x2c\x23\xfc\x22\x58\xba\x2c\x25\x18\xa8\xbe\x14\xf7\xef\xf0\x86\x2f\xd4\x1c\xd9\x0b\x98\xb0\x34\x05\x27\x45\xd8\x92\xef\xd2\x15\xf0\x31\x22\x13\xb9\x60\x33\xa6\x36\x82\x68\x32\xb9\x71\xa6\xa5\x59\x87\x0b\x90\x36\xc0\xa8\xcc\x09\x8a\xcc\x8c\x2b\x93\x9e\x53\x0f\xbc\xb8\xa0\x82\x33\x72\xdb\x36\x4b\x76\xa9\x97\xf0\xae\x66\x47\x51\xcf\xfd\x3c\x16\x3b\x23\xe0\xf8\xde\x05\x0a\x24\x6f\xa1\x4f\x74\x25\x20\x0a\x11\xa1\x2d\xd5\x94\x86\xa3\xc4\x03\xfb\x33\x3c\x64\x40\x60\x1f\xeb\x36\x10\x4c\xe7\x63\xbb\xe6\xcc\xb7\x14\xbf\x7c\x00\x58\x7f\xae\x65\x34\x36\x89\xa8\xe5\xd8\xf2\x15\xfa\x13\x8a\x38\xec\x84\x2f\x5b\xa2\x07\x0c\x04\x37\x1e\xfa\xd3\x14\xb3\xcb\x08\xb8\x0f\x13\x77\x20\x66\x17\x66\x4e\x35\x42\x69\x07\x13\xe4\x90\x40\x21\xdc\x44\x0e\xc9\x27\xee\x95\xd0\x96\xcc\xdc\x9d\x20\xcd\x46\xc3\x8a\x8f\x37\x1c\xab\xea\x24\x2c\x8d\xef\xf2\x24\x66\x42\x01\x40\x98\x4e\xa3\xe4\xe5\x80\x09\x4b\xb3\x22\xba\x1d\x54\x70\x24\xd1\x72\x91\xef\x2e\x3f\x86\x58\xf7\x8a\xe2\x49\x7a\xa0\x1c\x1f\x37\x61\x71\x77\xdf\x9f\x6e\x6b\x42\x0b\xea\xff\x6c\x43\x39\xf1\x95\x4e\x94\x98\xbe\xfd\xca\xc4\x14\x10\xa7\x71\x85\x37\x3f\xc4\x78\x41\x21\x25\xef\xb8\x95\x21\x08\x37\xdf\x1b\x65\xae\x25\x5c\x12\x83\x56\xb0\xec\x3e\xa7\xe5\x0a\xf3\xb5\x53\x31\xea\x31\xae\xe3\xa1\x7c\xe3\x4d\xf4\x49\xc3\x68\x40\xea\x29\x4b\xb3\x5e\x89\x55\xcb\xb2\xd6\x95\x1f\x17\x3b\xa3\x34\x2f\x5a\x14\xce\xc3\x9e\x9d\xc0\x68\x3e\x9f\xb8\x76\xfb\xb2\x09\x2d\x4d\x23\xc3\x2b\xef\x02\xe7\x07\x6e\xee\x86\xd6\x7e\x3d\x8f\xe8\x1c\xce\x1f\x02\xd9\x58\x65\x6d\x10\xa0\x49\xb7\x83\x6e\x06\x39\x23\x78\x8d\xb9\xfa\x1f\xf8\x59\xc5\x22\xe5\x52\xfb\xc3\xc0\x67\xee\xef\x26\xe5\x7d\xb7\xfd\x24\xc5\x0e\xc5\x33\x7c\x45\x15\x93\x2e\x2b\x9a\xb1\x62\x38\xc9\x46\x69\xd2\x87\x32\xb7\x63\xeb\xdc\xef\xd9\x3a\xbd\x4b\x8e\x4a\xbb\xde\x9f\x84\xe5\x6e\x77\xc4\x96\x9f\x28\xf1\x43\xfc\x20\xca\xe7\x2c\x3d\x83\x40\xfa\x5d\xb7\x09\xcb\x2c\x2f\x2b\x97\xec\x97\x5f\xf6\x63\xa3\xe5\xa3\x72\x1d\x00\xc7\x18\x7d\x7b\xaa\x26\x55\x4f\x07\xaa\x20\xf1\x38\xed\x24\xa9\x9d\x3a\x6c\x4f\x68\x7a\xb9\x1e\x91\x02\x93\xbc\x80\xa3\x5d\x2c\x97\x86\x43\xcb\x31\x88\xa2\x65\x5a\x74\x6c\x0d\xf5\xe2\xd4\x41\x8a\x9e\xc1\xee\x83\x5c\xfd\x22\xf2\x16\x3c\xdb\x8f\xd5\xc4\xca\xcd\x9a\x89\x7a\x79\xfe\x10\x09\xd0\x64\x7d\x8e\x68\x45\xa4\x80\x6e\x1b\x19\xcd\xd7\x61\x19\x61\xae\xcf\x54\x10\x04\x6f\xd8\xec\x51\x35\x40\xbe\xa5\x40\x47\xf7\x15\xed\xc1\x5d\x82\x1e\x3b\xc6\x3d\x4f\x5c\x72\x89\x4b\xc1\x08\xcb\xae\x06\x4a\xcb\x64\x06\x1c\xd9\x22\x43\xa0\x48\x76\x8e\x06\x8f\x46\x14\x58\xfc\xed\xce\x2b\x7b\x2a\x74\xd9\x4e\xd1\xea\xc9\x0d\x3d\xd3\x4d\x37\x86\x54\xff\x16\x7e\x1d\x21\xd2\xee\x0d\xcf\xba\xde\xfe\x5b\x5d\x6f\x38\x37\xd9\x9d\x20\x92\xbb\xd8\x48\xf0\x95\x16\xa6\x48\x5b\xaa\x22\x0a\x06\x47\x3e\x56\x45\x91\xb1\x59\xb5\x7d\x4a\x10\x85\x8f\xbc\xbc\x36\xa1\x77\xf1\x9c\x6c\x67\x2a\x45\xa9\x74\x90\xb6\xb4\x93\x6c\x29\x7a\x19\x09\x1d\xcc\x60\x90\x99\x55\x53\x6c\x53\x32\xf8\x4c\x01\x4a\x3e\xf3\x71\x86\x59\x5e\x5e\x4f\x22\x87\x96\xc1\x9d\x5e\xd5\xe2\x20\x57\x6b\x10\xda\x32\xc5\x7d\xcd\x9a\x38\x9d\xe4\x32\xc6\xa0\x8d\xbe\x8c\x79\xea\x0b\xcf\x46\x70\x76\xc8\xfd\x51\x79\xe0\xe3\xda\x73\x5c\x7c\xe9\x60\x67\x90\x59\x8b\x76\x3d\x2c\xcd\x55\xa5\x67\x77\x35\x90\xa9\x9a\x71\x96\x0e\x32\x33\x1a\x71\x90\xb4\x85\x31\x0a\x44\x44\xd7\xb0\x6c\x24\xdf\x6d\x28\xdf\xf6\xa3\x7c\xc4\xac\xa1\x0e\xeb\xe2\xa2\xe6\x73\xb5\x7a\xd2\x0b\x44\xb6\x3f\xe3\x31\xce\x2c\x80\x8a\x42\x60\xab\x5b\xe1\xe0\x75\xca\x3a\x17\x15\x41\xd0\x38\x8b\x56\x4d\x61\x1f\xa5\x27\xc6\x84\x26\x98\x0b\x66\xb9\x4e\x7a\x9f\xd8\x03\xf7\xc8\xa0\x09\x77\x6f\xf9\xdd\x8e\x0d\xdf\x8d\x5e\x71\xbf\x03\x86\x19\xc0\x62\x01\xed\xb5\xe6\xe6\x9c\x06\xa8\xef\x1d\x4c\x46\xf9\xba\x7a\x0d\x28\xff\xf1\x71\x8d\x9b\x89\xe6\x3d\xa2\x22\x1c\x4a\xdf\x54\x38\x77\x69\x51\x09\x19\xaf\x37\xcb\x76\x32\x1e\xa6\x59\x64\x28\x13\x10\xe6\x4f\x3f\x41\x7d\xca\x11\x78\x9b\xd1\x28\x4d\xa2\xc9\xa8\xed\xcd\xfb\x7d\xa5\x93\xc7\xc5\x04\x19\x34\x55\x54\xbc\x69\x31\xe3\x57\xc4\x31\xfc\x19\xc6\x23\xa4\xc7\xc7\x67\x6a\xb1\x1c\xd3\x1c\x8d\x65\xc6\xc8\xa2\xcc\x88\x8e\x4f\x05\xbe\x95\x74\xaa\xb6\x46\xe6\xe6\x3b\xa3\x34\xb1\x85\x14\x11\xdd\x60\x44\xb9\xbd\xc5\x1d\x7a\x5f\x63\x47\x26\x27\x60\x81\xc5\x9e\x60\x26\x7e\xac\x12\xa1\xe5\x6f\x30\x1a\xbd\xcc\x24\xe1\xb0\xe5\xeb\xdc\x60\xed\x10\x7d\x1c\xff\x00\xe6\x4d\x42\xe1\x96\xee\x1d\xc0\x46\x1e\xd1\xac\x14\x37\x1a\xa7\xf9\x27\xa3\x5e\x66\xe3\xd8\x28\xc1\x15\x6e\x6a\xf3\x89\x02\xdb\x25\x36\xce\xb9\x59\x2d\xb1\x45\xb9\xa0\x44\x87\x5b\xa9\xb3\xff\x48\x55\xfb\x81\x0a\x29\x58\xcb\x7d\x0b\x95\xe9\xad\x8b\x4a\x99\xd0\xc9\x76\xb6\x3d\xa5\x09\x87\x1d\x88\x21\xae\x2b\x72\xe7\x0f\x15\xad\xa7\x49\x06\x84\xca\x54\xd3\x7d\x77\xf0\x5c\xf9\xa4\x06\x8e\x58\x9a\xed\x8c\xcc\x7a\x0f\xe2\x39\xb0\xf2\x60\x56\xe0\xe3\x87\x8c\x2a\x15\x76\x86\x82\x30\x04\x6b\xa0\xa9\x42\xd5\x86\x2b\x99\x5a\x06\x0f\xee\xed\xad\xc6\x19\xa6\x22\x8b\x46\x2d\xcd\x55\x32\xad\x70\x7a\xd4\x83\xc0\x17\x3b\xeb\x36\x8e\xd3\x35\x38\x0f\x47\x51\xe4\x5a\x25\x67\x14\xf6\x36\xb7\x49\x94\x66\x4f\xf8\xb8\xf9\xcf\x02\xc5\xa4\xc4\xd5\x2e\x61\xc5\xa0\xb7\x85\xa8\xee\x34\x3d\x5e\xe9\x46\x2a\x26\x1a\x06\x33\xb3\x28\x4b\xd0\xfa\xc5\x83\x6e\xdc\xb6\x7c\x53\xc0\xa1\xfd\x0e\x6f\x32\xe1\xee\x29\x1f\x01\x0a\x16\x1f\xc1\xd6\x8a\x7e\x78\xb9\xe9\x91\xc9\x5f\x6d\x9a\xdc\x1f\xa5\x93\x2c\x71\xde\x09\xf5\xe7\x5f\x57\xb5\xe8\x5f\x57\xf5\x85\x3c\x2a\x26\xc6\x75\x65\xf1\x24\xbe\xa3\xf8\xa8\xfe\x01\x35\x19\x45\xa1\x88\xbe\x10\xaf\xeb\x27\xb5\x15\x51\xba\xe7\x61\x9a\xc0\x00\x22\xfe\x05\x3f\x26\x1f\xab\x7e\x79\x68\x26\xb9\x2b\x51\xc9\x0e\x53\x86\x5f\xe5\xc0\xdf\x9b\xfe\x94\xc7\xa8\x26\xab\x51\x96\x26\x23\x9b\x14\x26\xde\xed\x11\x1d\xd3\xa9\x1f\xb5\x3f\x17\xe8\x80\x8a\x90\x04\x15\xfc\x11\x7f\x02\xdd\x5f\x09\xbb\x9e\x50\x57\x96\xe5\x7b\xe8\x5d\xb9\x6f\x70\xca\xd1\x57\xc9\x65\xe0\x5d\x71\x36\x08\x2c\x39\x38\x0b\x78\xcc\x5c\x21\x85\x7f\x84\x2d\x84\x85\xc2\x14\x1a\x32\xa6\xa0\xb4\x99\x27\x49\x14\x46\x63\x13\x3f\x4a\xd1\x96\x74\x68\xcb\xdf\x92\x5c\x43\x11\x42\xb1\x9a\xa7\xd3\xb2\x5e\x52\xea\x0a\x0e\x4b\x87\xa0\x9b\xeb\xb9\x81\x2f\x86\x30\x3b\x19\x9a\x02\x75\x1d\x7a\x62\x92\x67\x14\x2b\xee\x86\x91\x25\x7c\x52\x2b\xf8\xcd\x1f\xea\x24\x29\xa6\x27\xb1\x44\xce\x29\xce\x90\x73\x4d\x54\xc9\xf9\x57\x26\x4c\x5e\xe1\xe6\x31\x01\x02\xe0\xe3\x26\x91\x50\x6a\x1e\x15\x36\x33\x18\x29\x64\xaa\x92\xc0\x43\xb7\xde\x6a\x00\x0a\x77\xc2\x61\xea\x9b\x91\x8e\x07\xcc\x65\x94\x9f\x54\xe2\xbe\x35\x50\x49\xb8\xaa\x9a\x2e\x1a\x9d\xa9\xdd\x47\xf9\xed\x69\x12\xda\x2c\xe1\xf0\x1d\x11\xeb\x5b\x81\x62\x95\x02\x25\x2b\xae\x6f\xcb\x43\xe3\x20\x5c\x3a\x12\x16\x29\x11\xd6\x6a\x79\x91\x2d\x85\xc3\x09\xd3\x24\x31\x04\xe9\xd7\x3c\x70\x37\x03\xa5\x4b\xba\xa9\x8b\x65\x47\x1e\xaa\xde\x93\xd9\x3c\xca\x0b\x27\x51\x27\x9c\xde\xf4\x59\x3e\x51\x93\x38\x99\x49\xf2\x74\x84\x14\x9b\x99\xce\x90\x98\x0b\xed\x99\xdf\x2f\x76\x9f\xdd\xa7\xf8\xb0\x4e\x68\x75\xa2\x13\x0a\xcf\x94\xdb\xc4\x14\x76\xaf\x07\x41\xbe\xab\xc5\xe7\x6f\xa9\x11\x00\x46\xec\x38\x97\xb2\xb0\xb0\xc5\x99\x95\x30\x42\x96\x16\x09\xd1\xdd\x8f\x34\xdf\xdc\x67\xc8\x38\x90\x96\x5c\x0f\xd4\x40\xc7\x0f\xa6\x3a\xb5\xfb\x67\xae\xdf\x3a\xda\xd7\xdb\x67\xa0\xd4\x20\x90\x2e\x25\xde\x73\x55\x81\x53\x4e\x36\x8d\xb9\x16\xc3\x32\xbd\x6e\x7b\xdb\x03\x7e\x19\x98\x6c\xb4\x51\x84\xef\xba\x49\x0f\xd8\x14\xb2\x0a\x44\x46\xc8\xe7\xb9\xc7\x34\xf4\x60\x98\x59\x53\x70\x88\x04\x70\x1f\xd3\x45\xf1\x89\x0a\x11\x08\x34\x42\xda\xc4\x7b\x7d\x49\xe2\x4c\xa0\x86\x67\x30\x8f\x8c\xe7\x72\x4d\xb1\x0d\x71\x15\x1b\x86\x6b\x0f\x05\xdb\x6e\x2f\xf8\x70\xe4\x24\xdd\xa1\xaa\x1f\xcd\x73\xd0\xc2\xec\xa8\xce\x60\x95\x0f\x1f\xc1\xe2\x25\xc5\x47\x4c\x3d\x78\x2e\x9f\x2a\xa6\x60\xd7\xdf\xd7\xc3\x67\x81\x2e\x2c\x79\x2d\xca\x55\xf3\xba\x76\xfb\xdc\x68\x13\x86\x1c\x1f\xd1\x8c\xac\x2d\x23\xa5\xc7\x3c\x8c\xe5\xd1\x0d\xc5\x13\xb7\x05\x07\xe0\xc6\x67\xcb\x98\x44\x78\x53\x14\xd8\xe2\x9f\x4c\xb5\x20\xbc\x1a\xdb\x69\x75\x3d\x5c\xf0\xb2\x2e\xbf\x80\x4f\x02\x7d\xac\x2d\xd5\x32\x5b\xc9\x6c\xf2\x06\x62\x0f\x47\x25\xea\x0b\x45\x97\x74\x39\x76\x9c\x66\x68\xe0\x94\x7f\x2c\xe5\x08\xdf\x0c\x84\x7a\x38\xf7\xc0\x6a\x96\x6f\x6e\xae\x63\xca\x30\xc7\xf6\x67\xfc\x02\xbc\xac\x3d\xc8\x1d\xc5\xb3\x72\x59\x8f\xcb\x1d\xa9\x25\xa2\x2f\xcf\x1f\xea\xa4\xc5\xd0\x66\x6b\x11\xcb\x24\x32\xa9\x70\x50\x61\x18\x7e\xca\xd5\x2d\x7b\xe3\xd4\x26\x86\x2b\x2e\x08\xdf\xc0\x3a\xc4\xc7\x95\x32\x46\x3e\xb4\x8f\xd1\xf7\x60\x35\xde\xd3\x23\xb6\x8f\x75\x95\x6d\xda\x9c\xb6\x7e\x69\xde\xf1\xae\x95\x4b\x53\xfc\x3e\xbd\x44\x41\x1a\xd1\x3d\x22\x5b\x64\x49\x05\x27\x5e\xe4\x16\x01\x8f\x12\xa3\x26\xf0\x54\x77\xfb\x3c\x47\x19\x26\x46\x49\x3f\x5a\x5e\xb6\x99\x80\x0e\xe4\x0d\xf9\x50\xe6\x52\x53\xb6\x1b\x4f\x5e\x9f\x64\x8c\x10\xd2\xbf\x2b\xec\x10\x0d\xfc\xd0\x79\x6c\x64\x92\xc5\x49\xa0\xab\xde\x9c\x17\xd9\x89\x92\x70\x48\x33\xae\x58\x88\x4f\x6c\xf8\xc6\xd6\xd3\xca\xd5\x9f\x6e\x18\xd8\x4c\xc7\xe3\x34\xb7\x68\x05\xc1\x7f\x60\x62\x50\x50\x9f\xbe\x4e\x5c\x97\x84\x44\x2c\x99\xf8\x4a\x87\x88\xff\xb7\x9c\x1e\x82\x17\xff\xb0\x71\x54\x80\xde\xd2\x15\x80\x9d\xd2\xfa\x55\x0d\x72\xdb\x01\x1e\x78\x71\x3b\x2e\x7b\x5e\x0f\x63\xd1\x7d\x82\xe5\xf9\x2c\xf0\x89\x24\xd0\x10\xe8\x1c\x5d\x9c\x0a\xb4\x79\x64\x0b\x13\xc7\x93\x6c\x10\x85\x1c\x1c\xa0\x58\x73\x64\xea\x0b\x37\x47\x1a\x90\x4a\x4b\x9d\xa1\xf5\x80\x3d\x29\xe9\x7b\xc3\x78\x49\x81\x8b\x97\x4d\x36\x8a\x92\x41\xc1\xf9\x9a\x93\xa4\x72\x96\xea\xcf\x35\x42\xf8\x6c\xe0\xfb\xfb\x83\xcc\xda\x95\x87\x32\x9c\x3f\x6c\x66\x74\xd5\x66\x09\xe8\x19\x94\x49\xd9\xef\xb9\xfd\xdd\xa8\x92\x19\xf5\x62\x34\xa0\x1d\x6d\xa0\x0f\x05\xce\xa8\x61\x6b\x60\xab\x80\x88\x7a\x0e\x46\x50\xa6\x16\x9e\x51\x02\x4d\xa3\x28\x21\x14\x60\xcb\xb1\xb7\x01\x1b\x86\x06\xc1\x55\x6c\x2f\x19\xdf\xd6\xfb\x78\x3d\xcd\xda\x0f\x27\x1b\xaa\x70\x12\xf9\x5c\x3b\x1f\xaf\x53\xc5\x98\x29\xc1\xe1\xae\x5d\x38\xed\xc4\x55\x79\x20\x4c\x88\xc3\xb7\xef\xd7\x17\xa8\x91\x17\x25\x83\x49\x54\x46\x95\x68\xe5\xe9\x51\x77\x38\x24\x06\x6d\x3c\x6c\x42\xe7\xc0\x81\x4e\x3e\x36\xf9\x88\xf7\x22\x6b\x5d\x05\x7e\xfd\xfe\x58\x69\x32\x26\x76\x60\x8a\x68\xd5\x62\x58\xc6\xc9\xf2\x96\x0e\x44\xe8\x31\x2a\xa0\x99\xa6\x5a\x41\x66\x43\x1b\x8d\x8b\xbc\xdd\x00\xbd\x62\x05\xf0\x69\x05\xa2\x25\xa5\x9d\xc9\xb8\xaf\x0a\x8f\x2e\xd2\x74\x53\x37\xf7\xa6\x5e\xa4\x26\x1c\x5a\x9b\x45\x29\x07\xb6\xa2\x89\xda\x72\x6c\x5c\x9b\x8d\xe3\x75\x79\x14\xaf\x62\xaa\xe0\x15\x8f\xc6\x5f\x70\x03\xbb\x35\x20\x09\x71\xf9\x17\x94\xc0\xb8\x0d\x25\xb3\x7c\x6a\xae\x6f\xfa\x53\x55\x38\x2e\x35\x99\x0f\xcf\xbe\xb8\x47\xcd\xb7\xde\xc4\x02\x56\x2e\x4b\xf2\x6a\x22\x32\xdc\x02\x53\x1b\xc2\x98\x07\x78\xc8\x8e\x6b\x48\x13\x22\x96\xc6\x51\xb4\xa0\x1b\x48\x56\x32\xa3\x04\xdc\x91\xde\x9f\x55\x2d\xb2\xba\xb0\xc4\x81\x03\x9d\x62\x32\xa2\x76\xa2\x43\x7c\x7e\x4e\x9f\xe0\xe3\x5a\xd2\x52\x3e\x94\x3c\x9f\x8c\xfc\x4c\x02\xda\xcb\x77\x95\xe9\x65\xfd\x0d\xc4\x97\x67\x2b\x1b\xaa\x30\x3d\x6a\xd9\x60\x3d\xdd\x56\x28\xfd\x4b\x6a\x60\xe5\xa8\xe2\x3b\x1b\x73\x13\x66\xb7\x47\x5b\x22\x7c\xc5\xc6\x79\x00\x85\x20\x5c\xee\x29\x74\xbe\x60\x02\x6e\x07\x4a\x30\xf9\x27\x53\xa6\x11\x79\x5e\x95\xd1\xb3\x22\x0a\x27\xb1\xc9\xe2\xf5\xbd\x8a\x7a\xf3\x6e\xe0\x2b\x8f\x6f\x23\x39\x90\x66\xc4\x76\x61\x75\x69\x53\xdc\x53\x26\xbc\x85\xe2\x88\x1b\x63\x75\x14\x5e\x1f\x07\x95\x59\xba\xd2\xe7\x09\x03\xb0\x37\x68\x9a\x78\xca\x14\x85\x09\x57\x76\x79\xac\xdb\x0d\x0d\x0b\xe2\xc0\x07\xdb\xe8\x03\x7a\x22\x88\x4a\xbf\x8b\x2b\x13\x7c\xad\xe3\x9a\x89\x8a\xa1\x9f\x72\x12\x46\x38\xff\xb1\xf3\x8a\x64\x68\xc5\x0c\x0d\xfa\xbe\xc2\x0a\x42\x5f\x29\x4c\x20\x0d\x0a\x16\x3d\x9b\xd9\xe5\x02\xdf\x8d\xce\xed\x6d\x7a\x26\x7c\xac\xa2\xd7\xdc\xac\x46\xc9\x80\x61\x2e\x32\xe3\x07\x63\x81\xe7\x74\x36\x50\xe3\x5e\x98\x35\xad\x28\xfb\xc9\xe4\x81\x2f\x8e\x73\x53\x79\x46\x6d\x95\xd3\x95\x19\x03\x3f\x68\x74\x2c\xd0\x5b\xc8\xdf\x71\x2f\x4b\xd7\x12\x40\xa3\x04\x82\xa4\x26\xae\x2e\x6f\x17\xbd\x3a\x3c\xdb\x59\x58\x78\xbc\x7c\x85\x78\xcc\x5f\x9d\xfa\xde\xe3\x51\x7a\xa8\x48\xb4\xbe\x05\x1f\x01\x07\xf5\x2d\x3d\x62\x77\x2b\x50\x3c\xfc\xff\x6a\xea\xd9\x3b\x3f\x56\xca\x95\xf7\x08\x22\x02\xfb\xc4\xc5\x4e\x2c\xf4\x4d\x8c\xbd\x02\x84\xf7\xbb\xd4\x0c\x13\xdb\x22\x0d\x8e\xe5\xd8\x8c\x7a\xe9\xba\x60\x5d\x18\xa7\xa4\xe6\xf3\x4e\x34\xe9\x64\x2f\xa7\x69\x31\x4c\x63\xc0\x4c\x70\x0f\x00\x8e\xf0\x71\x2d\x0c\x3b\xf4\x52\xa7\x97\x45\xf9\x0a\xad\x16\xd6\x97\x56\x94\xdd\xf7\xfc\x78\x40\x18\x9a\xb5\x5d\x7a\xd0\x87\x95\x7d\x98\x62\x5f\x69\xe1\x9e\xd5\x61\x07\x14\x87\x50\x77\xd9\x74\x21\xd9\x1b\x51\x1c\x02\x24\x29\x3c\x85\xaa\x0d\x77\x6a\xaa\x68\x92\xbe\x5f\xa1\x24\x4d\xa2\x32\x0c\xd0\x4c\x3a\xae\x68\x7c\x5f\x61\xf6\xcf\xb8\x6d\x93\x8f\x2d\xd3\x3f\xba\x2c\xe5\xd1\x0d\xd7\xee\xda\xdf\x41\x4a\x4f\x57\xfa\xe0\xd9\x1a\x73\xea\xc2\x42\x27\x34\xe3\x96\x4a\x52\x2f\x29\x4b\x7f\x49\x05\x0d\x0b\xf3\x07\x67\xfc\xbb\xb9\xac\x34\xf7\xbe\xf2\x45\x66\x2e\x02\x68\x6e\x6f\x57\x29\x1b\x3c\xd9\xf5\xe9\xe3\x30\x2d\x90\x7e\xe2\xe9\xfe\x44\xb7\x90\x7f\xa2\xe4\x1c\x2f\xa8\x69\xe7\x0b\xaa\xde\x61\xc2\xcc\x6a\x4a\x68\xb4\xa2\x54\x05\x7b\xde\xa1\x8a\x1b\xdc\x48\xb9\x68\x58\xeb\x02\xde\x6c\xeb\xa2\x32\x65\xc4\xc6\x8b\xe1\x1b\xd7\x51\x2e\xaf\x4e\x4a\x02\x74\xb7\xb8\xbf\xcf\xe1\x1d\x65\x46\xc7\xbf\x62\x36\xac\xf2\xe2\x9a\x82\x8f\x30\x4b\x93\x15\x37\xd8\xc4\xa4\xcf\x81\xa6\xe8\xf8\xd4\x65\x74\x83\xcc\x8c\xed\x6a\x94\xc0\xf5\x21\x6e\xf8\x2d\x15\x43\xfc\x96\x6b\xe2\x0f\xd3\x49\xd2\xe7\xba\x1e\x6c\xfc\x51\x1d\xfa\x1d\x0d\xaa\x11\x23\xb6\x02\x3f\xaa\xc0\x87\x99\xf5\x84\xb6\x0c\xce\x6c\xb6\x6a\xb3\x5c\x29\x06\x32\x4f\x82\x00\x11\x7d\xd0\x93\x9b\x78\xd5\xf4\xd3\x0c\xde\x1d\x17\x79\x4a\x91\x3c\x35\xa9\x22\x2e\x76\xf2\xc9\x68\xc4\xb4\x14\x8e\x61\xe3\x42\xa0\x99\x64\x54\x97\x68\x71\xf6\x60\x5b\x0d\x57\x9f\x54\x0a\xd8\x0c\x70\x00\x9a\x69\x4b\x2d\xdc\xd0\x16\xad\xd6\x2f\xff\x3c\x57\xf0\x99\xe3\x9c\x4f\x02\xcf\x67\x59\xa4\x49\x84\x2b\x07\x44\xf0\x94\x92\xb1\x3d\xe5\x68\x7d\xfb\xa9\xcd\xa9\x03\x0f\x57\x73\x8c\x98\x5a\xa4\xed\xa2\x12\x73\x04\x0b\x0e\xf2\xe7\x58\x57\x8e\x2b\x17\x7d\xf2\x99\xae\x82\x86\x73\xf9\x4e\x24\x95\xb6\x6f\xd4\xbf\xdb\x59\xb3\x76\xa5\x5d\x26\xe3\xc8\x51\xcf\x28\xb1\xb6\x7b\xaa\xc1\xde\x48\xef\x34\xb0\xd9\xc8\x24\x12\xf3\xf2\xd4\x35\x56\x38\xb7\x14\x20\xb4\x78\xb2\x91\x5e\x3a\xb6\x83\xa8\xcc\x97\x19\x2c\x27\x24\x1b\xe5\x6f\x0a\x77\x87\xcf\x97\x87\xe9\xc8\x3e\x5e\x2e\x30\xf8\xb6\xe3\xec\x3a\xd1\xb1\xdc\xdd\x55\x42\x1c\x7f\x00\x2b\x88\x70\xe5\x8c\x46\xe8\x9c\xd6\x94\x6e\xff\x42\xa3\xa9\x01\xdc\xa4\x4f\xfc\xf1\xd3\xa5\x99\xdb\x9a\xe9\xaa\x2c\x65\x46\x65\xe7\xbf\x8b\xfb\x93\x05\xa1\xbc\x71\x61\xb2\xc2\xf6\x1f\xf5\x25\xc6\x16\x71\xbb\x03\x61\x79\x5f\x57\xc5\xce\xe9\xca\xdc\xc7\xe4\x9a\x61\x7f\x7f\x0c\xff\x86\xb7\x05\x29\x2e\x34\xcc\x58\x08\x83\x3f\x0e\x53\x21\xec\x18\x0d\xdb\x2b\x4c\x47\xb6\xcf\x5c\x0f\x08\x73\xae\xa8\x90\xe7\x4a\x23\x71\x78\x9c\xae\x71\xed\x1b\x4f\xeb\x96\x16\x5a\xff\x78\xea\x5b\x0e\x8d\xd3\x12\xfd\x28\x1f\x7b\xe8\xa5\x1e\x2f\x70\xe3\xa0\x9e\xe7\xbb\xd1\x24\xf4\x6d\x9e\xdb\x0c\xe5\x53\x37\x8c\xee\x81\x64\x97\x6b\x17\xbd\x7f\xa1\x63\x92\x41\x8c\xa1\x0e\x24\xf1\xdf\xd3\xf8\xcc\xef\xd5\x0a\x34\x2f\x74\x42\x9b\xd0\xe4\xbe\x6b\x4f\x60\xbd\xf1\xb1\xf3\x7e\x61\x9a\xac\x5a\x4e\x82\x17\x19\x01\x72\x4a\x61\x72\x30\x3f\x27\x29\x6c\xc3\xe3\x48\x27\xc5\x20\x75\xfd\x30\x21\x25\x6e\x39\x96\xb0\xdb\xaa\xad\xa8\x29\xeb\xb3\x28\x4c\x77\x7b\x55\xcd\x8f\x29\x26\x67\xa5\xbb\x8a\xf4\x2a\x5b\x77\x81\x5e\x97\x21\x99\x13\xc4\x73\x40\x86\x8f\x55\xa1\x16\x32\x09\x6d\x2f\xbc\x7b\x2b\x50\xec\x0c\x97\x01\x6b\x43\x09\x52\x93\x2e\x99\x78\xb9\xfc\x1f\xd9\x76\xcd\x9f\x24\x88\x95\x86\x32\xb8\xcd\x72\x53\xbc\xd1\xf6\xc0\x8c\x5b\xca\xf3\x1e\x99\x6a\xf6\xad\xa7\xdc\xf3\x1e\x8d\xe3\x75\xf7\xbc\x60\x72\x30\xd1\x83\x4d\x72\x56\x8d\x51\x5c\x51\x5d\xee\x71\x3c\x49\x06\xb6\xbf\x9b\xae\x1e\x0f\xe3\x43\xda\x4f\x78\xb4\x90\x9c\x71\x6a\xa5\x8e\xa6\xef\x2c\xb2\x7b\xc4\xa7\xff\x32\x50\x74\x90\xe7\x1b\x1d\xec\x5a\x66\xf3\x22\xb6\x8c\x25\x57\x1c\xe7\x9e\xcb\xdc\x3b\xfd\x81\xc9\xfa\x36\xd9\x5b\xde\xa7\x13\xc3\xf5\xd1\xf0\x39\xe8\x27\xb8\x9a\xce\x81\x03\x6e\xf4\x11\x02\x0c\xfc\x2f\x1a\x31\x7f\x5b\xa1\x6c\x3e\x9b\x6e\x53\xb7\x29\xaf\x1d\x16\xed\x11\xcc\x2b\xc8\xbf\x94\xaf\x8c\xe9\xfd\x6b\x73\x92\x65\x02\x6c\x38\xfd\x45\x7b\x85\x67\x22\xf8\xc4\x61\x21\xa3\x64\x85\x6b\x28\x08\x6c\x31\xc3\xc2\xc7\xcd\x94\xec\x59\xfa\x9a\x0d\x0b\x99\x00\x42\xf1\xe3\xa2\xaa\xae\x5d\xac\x5d\x0d\x06\x80\x38\x45\x43\x01\x40\xa3\xde\xee\x07\x4f\x57\x9b\x6d\x6e\xa1\xe8\x51\x2e\x41\x18\xf9\x71\x8c\xf7\xdd\x7e\xee\xdb\x3c\xcc\xa2\x1e\x38\xeb\x10\x6c\xf3\x5c\x28\x9f\xa8\x60\xc0\x66\x21\x3b\x34\xa9\x70\xb7\x1c\x27\xd2\xe9\xaa\xaa\xa4\xc2\x99\x7c\x79\xae\xb2\x45\x74\xd9\x43\x31\xca\x2f\x47\xf1\x28\xa7\x9d\x01\x93\x70\x5b\xc5\x79\xe7\x28\xee\x64\xcd\xdc\x5a\x23\x77\xff\x42\x67\x14\x8d\x2b\x7a\xb4\x8c\xaa\xe7\x93\x5a\x27\xf7\xd0\x4b\x9d\x34\xb1\x8a\xf0\xf1\xf6\xd4\xbf\xed\x9b\x34\xd2\x0d\xc3\xf6\xf5\xed\x59\xde\xdc\x7c\x67\xff\xc2\x33\x54\xd2\x45\xa8\x77\x36\xf0\x39\xf7\xaf\x3d\xa5\xf4\x43\x3f\x84\x57\x43\x3e\xcf\xbc\x67\xa8\x26\x3c\xb6\xa1\xca\xcb\x7f\xa8\xb0\x30\x37\xd9\x72\x09\xdd\x04\x21\x70\xf9\x67\xa8\x0f\x88\x65\xfe\xf5\x40\x11\x25\xdc\x0a\x3c\x39\xcc\xaf\xa1\x43\x00\x53\x70\x9c\xf6\x3a\xf6\x34\xac\x0c\x4c\x07\x4f\xd5\xc0\xb9\xdf\xc4\x60\x01\x33\x70\x29\xa6\xdb\xaf\xab\x21\xfc\x9e\x29\x8a\xd8\xee\xf6\xef\xf0\x3a\xd9\x54\x61\xea\x52\xa6\xf2\xba\x92\x22\x3e\x16\x28\xfd\xce\x4b\x81\x6a\x5c\xd5\xe3\xa5\xc3\xb3\x0b\x9d\x91\x35\x03\x9b\x01\x2f\x83\xb7\x7e\x8c\xd6\x2b\xba\xcd\x3b\xba\x5e\x34\x07\xa4\xa2\xb0\x49\x7f\x5f\x99\xf1\x49\x62\xf3\x30\x85\x58\xaf\x9b\xd4\x2a\x5f\x0e\x82\x9f\x07\x75\x21\x47\xfe\x87\x29\x74\x1e\x5d\xdb\x7a\x98\x45\x79\x91\x8e\x87\x36\x03\xa5\x00\x90\x64\xed\xae\x4f\x9a\x81\xd8\x81\xd5\xba\xad\x6c\x6e\xbe\x12\xc5\x31\x66\xcb\x45\x07\xe6\xfa\x54\x15\xf9\x77\x74\x5b\x2f\x0b\xbf\x71\x3d\x71\x86\x6a\x43\xb6\xd2\xda\xb6\x0c\x16\x9c\xf8\xf5\xa6\xaa\x9a\x2c\x47\x83\x49\x66\x89\x2a\x53\xf8\x2c\xa1\x5e\x80\xa4\xe9\x6d\x5a\x18\x7c\x4c\x4f\x8c\xff\x46\x37\xc1\x18\x6c\xc1\x27\x6a\x7e\x38\x8c\x4d\xce\xa4\x25\xae\x24\x43\x59\xb7\x4c\x89\xb5\x16\xbc\x4c\x82\xaa\x43\xdf\x52\x36\xf0\x56\x53\x58\xd2\x8b\x27\x5c\x7e\xc0\x62\xbe\xa9\xec\xf7\x4d\x87\x1c\x98\x24\xa1\xcd\x4a\x73\x56\xac\xb7\x15\xbd\xf0\x45\x95\x9b\xdf\x0e\xd4\xf4\xcd\x09\xed\x96\x7b\x26\xe9\xa7\x09\xe0\xef\x78\xec\xf7\xe1\xc2\xf9\xa4\xd6\xf8\x73\x8a\xb7\x69\xcc\x49\x11\x9c\xd3\x0d\x3d\x00\x76\x43\x21\xd2\x97\xd3\x49\xf6\x38\xdd\x35\x8b\x8a\xd3\x72\x70\x32\xd0\xfb\x17\x5c\xbf\x16\x6f\xd2\x49\x8f\xbb\x0e\x19\x0b\xa8\x89\xfe\x0f\xed\x5b\x04\x80\xac\x5c\xce\x44\xcd\xd8\x44\xc2\x52\xa0\xa2\x9c\xb7\xa7\x5e\xf9\xf3\x84\x4e\x9c\xd4\x80\x5f\x34\x48\xd2\xcc\x8c\x26\x5c\x14\x17\xda\xe9\x8a\xc7\x55\x40\xf8\x35\x34\x17\x5a\xdb\x08\x79\x67\x1d\x09\xaf\x84\x24\x36\x59\x8d\x72\xa1\x9a\x7a\x85\x97\x26\x63\x10\x50\x95\xe1\x01\x34\x69\xb5\xd5\x1b\x8f\xf3\x7a\x26\xa9\xb5\x6d\x0c\x49\x1a\x5b\xdf\xd4\xc3\xff\x59\x3a\xb6\x59\x11\x59\x4c\x55\xb9\xf7\x5a\x6e\x76\xce\x67\x88\x4f\x04\xfe\xe7\xb2\x4a\x1c\x10\x94\xa1\x78\xb0\xb7\xab\xb8\x95\xef\x4c\x2b\x4d\x8d\x86\x11\xff\xb1\x35\xc9\xa4\xc8\x11\xb8\x4b\xeb\xbf\x7c\xee\xc2\x52\xaa\x6e\xf9\xae\x03\x5a\x2c\xa7\xfd\xbe\x70\x59\xca\x1c\x65\xcb\x89\x45\x5e\x50\x3d\xb3\x3e\xa9\xba\xf8\x38\xe7\xa4\x0a\x7d\x4f\x56\x20\x3b\xfb\x56\x65\x6a\x10\x5e\x90\xc1\xba\x7c\xd2\x30\x16\x77\xb0\x33\x9e\x64\x03\xe9\x51\xc0\x95\xdf\xc2\xab\xe7\x13\x57\xcc\x18\x99\xd7\xa3\xd1\x64\x44\x06\x5e\xba\xcb\xde\x0f\x83\x36\x0c\x45\xcf\x0b\x18\x0a\x01\xe6\xfd\xc3\xa9\x27\xea\xaf\x30\x39\x5e\x6a\x24\x75\x8b\xc2\x15\xeb\x7a\x26\x22\x7f\xaf\xf8\x5f\x4f\x37\x11\x44\x90\x04\x73\x68\xf2\xa2\xed\x71\x06\x17\x29\xb9\x17\xac\x44\xcb\x4d\xb9\xdf\x51\xe8\xe1\xd8\x9a\xc1\x84\x8a\x28\x7a\xa8\x7d\x6e\xde\x0d\xb5\x3f\xad\xa0\x13\xfd\x08\x89\xb6\x56\x73\x28\xaf\x4b\xd4\x1c\x1a\x72\x18\xd3\x7f\xcd\x84\x02\x68\x71\x30\x6d\xa5\x35\xfd\xd3\x1e\xc7\xfb\xfa\xd8\x66\x11\x50\x7c\x31\x77\xcc\x05\xca\x52\xde\x94\x60\x5c\xea\x2a\xa9\x8b\x2f\x1d\xdc\xa5\x6a\x91\x53\x35\x91\xf5\x3e\x47\x0a\xa8\x89\xfc\x26\x9e\x3e\x7e\x1b\x1c\x5a\xe8\xee\xec\xe8\xfa\xc1\xad\x24\x5d\xb5\x71\xdb\xc7\x01\xa8\x60\xa0\xe3\xc7\xf8\x3e\x19\x1a\xf1\x0f\xa7\xfc\xd0\xa8\x67\xb9\xc0\x24\xdc\xa7\x2d\xcf\x83\xaa\xc3\x04\x62\xd5\xdb\xab\x58\x61\x6e\x92\x29\x64\xb6\x66\x64\xe9\xae\x56\x73\x78\x96\xeb\x04\xd0\x5d\x40\xe8\x75\x5f\x4f\x46\x7e\x55\xe9\xac\xdc\xc2\x46\x97\x95\x52\x6e\x74\x84\x3c\x57\x54\xe7\xf7\x41\x85\x46\xaf\x59\x16\x7b\x39\xca\x72\xb8\x1f\x47\x28\xbd\x34\x2b\xc7\xaa\xef\x99\x0f\xd3\xb5\x2c\x4d\x47\xaa\xfc\x72\x43\x95\x5f\x6e\x34\x68\x02\x33\x91\x94\x0b\xc0\x51\x96\xbf\xae\x10\xf6\x47\x55\xe0\x5e\x57\x44\x58\x7c\xe9\x60\x27\x27\xf5\xe3\x96\xea\x0a\x55\xb9\x18\x1c\x77\x46\x14\xa6\xb6\xdf\xd6\x14\x98\x40\xf7\x92\x61\x3b\xfd\x54\x57\x05\xd9\x7b\x2b\x52\x20\x61\x6a\xda\x8a\xb3\x03\x97\x27\xa5\x35\x7a\x7e\xac\x0a\xe0\x12\x84\x6c\x92\xe7\x4a\xff\x10\x81\x23\x33\x72\xf1\x49\x53\x9a\xdf\x4b\xb3\xcc\xdf\x0c\x0a\x32\xe7\x95\x22\xfd\x79\x45\xe2\x63\x96\x97\xa3\x4c\xb1\x8c\x4b\x8b\x85\x7e\x43\x9a\x2f\x15\x3a\x95\x61\x44\xe0\x0b\x01\x9b\xd3\xed\x0a\x0c\xbd\x5c\x1d\x58\x11\xef\x90\x89\xe2\xe3\x1a\x4b\xaf\xb8\xfd\xa2\xbc\xcc\x6d\xc4\xf5\x27\x11\x5d\xf0\x49\x2d\x90\x99\x3f\xd4\x79\x6d\x32\xea\xa1\xbe\x22\x63\x53\x2d\x47\xb7\x7a\xdc\xd3\xb2\xae\x59\x2b\xa8\x17\xa9\xdc\xa8\x2a\x8e\x5e\x71\x93\x5e\x11\xc5\x51\xce\x14\x09\xce\xdb\xb8\xd9\xcf\xc7\xba\x1e\x90\xf5\xb6\x6e\xe8\xb5\x14\x91\x4d\x98\x26\x7d\x69\x82\xbb\x50\xcd\xcd\x88\x5f\x50\x0d\xf3\x74\xd5\x66\x63\x13\xa1\xf5\x21\x4d\x37\xfa\x9c\xb0\xad\x96\x9f\xc3\x1e\xbd\x57\xeb\xeb\x97\x1e\x5c\x24\xb0\x79\x19\x22\xed\x40\x65\x02\xdb\xfc\xd6\x54\x29\xd2\xbc\xd7\x98\x11\x67\x96\x59\x2b\x79\x75\xe1\x42\xae\x05\x6a\x00\xe1\x5a\xa5\x5b\x3c\x09\xed\xe3\x14\xd9\xe1\x5b\x3f\x43\x55\x90\x65\xed\x35\xa8\xfe\x5d\xa5\xe4\xf5\x3e\x21\xa3\x9d\x4a\x77\xf9\x9a\xb1\xe5\xa1\x6a\x81\xc2\xd5\x7b\x08\x07\xf8\x7b\xb1\xf6\xd0\x73\xc3\xd4\x31\x42\xe9\x99\x0d\x6a\x2e\x03\x2f\xfe\x56\x05\xba\xdd\x50\x39\x5c\x4b\xb3\x15\xae\x8c\x34\xb6\x60\x7c\x96\xbc\x6a\x56\xda\xba\x6e\x85\x62\x38\x2c\xe1\x67\x81\xaa\xc7\x5e\x77\x0d\xaf\x30\x72\x45\x45\x84\x20\x57\x15\x08\x84\x99\x73\xf1\x43\x4f\x74\x9f\x55\xd0\x97\xb5\x24\x27\x8e\x88\xb6\x1e\x92\xc3\xcd\x23\x94\xbb\x89\x36\x39\x02\xca\x0f\x15\xac\x6f\x2d\xcd\x8a\xe1\x23\x7e\x96\x13\x99\x98\x43\x93\x96\x1f\x02\xf0\xec\x26\xbe\x8e\x4f\xe8\xf1\x69\xa1\x63\x84\xad\xb7\xa7\x0a\x11\x7f\xb3\x49\x89\x6c\x98\x82\x67\x91\xfe\x0e\xcf\xff\x9c\x52\x6f\x39\xe7\x22\xd2\x70\x68\x47\x65\x3c\x09\xa6\x02\x2c\xf6\x3f\x54\x0b\xff\x0f\x55\x8e\x46\x85\x92\xb0\x40\xec\x5a\xe1\x46\x42\x43\xf3\x3a\xfd\x02\x1e\xf6\x8e\xae\x3c\xec\xd7\x6c\x9e\xcb\xd0\x24\xc2\xf1\xbf\xc0\xea\xe6\x13\x57\x87\x31\x61\x68\x63\x9b\x11\x13\xd6\xe1\x59\x5e\x4e\xbf\x8f\x8a\x0a\x9f\xa8\x71\xea\xe1\x48\xc4\x61\xf1\x7c\x6e\x28\x7f\xc6\xa3\x4b\x82\x56\x68\x28\x27\xf6\x26\xeb\xee\xf1\x20\xc0\xbd\xae\x50\x64\xd7\xd5\xf2\xfa\x7b\x4b\x07\x67\x34\x75\x3b\x27\xe4\x28\x77\x3e\x45\x21\x1e\x2e\x60\x4b\x73\x34\x3e\xba\x21\x76\xcc\xbe\x4e\xed\x74\x8f\xdc\x7e\xae\xeb\x91\x89\x3b\xa9\xfb\x89\x62\xfe\xe7\xaa\x54\x53\x47\x0e\x92\x0f\xce\xd3\x28\x6e\x55\x60\x0b\x2d\x25\x31\xec\x01\xe1\xa5\xff\x1d\x89\xee\xa1\x64\xe1\x4c\x7f\xcd\x27\xaa\x0b\x32\x49\xa2\xe2\x31\x5a\x75\x82\x38\xf1\x6b\xf3\x3c\xac\x04\x96\xe3\x7b\x64\x18\xf8\x18\x51\x89\x90\x88\xaa\xe0\xec\x22\x9c\x21\x06\xfa\x8f\x62\x43\xf0\x17\xc3\xca\x60\x0d\x5f\x55\x83\xdf\xb7\x1a\xac\xe4\x2b\x80\x6c\x0c\x25\xf0\x45\xf8\x00\xb5\x54\x3e\x6e\x8a\x2f\xd3\xe5\xe5\x28\x8c\x78\x9c\x50\x58\x1f\x35\x3e\xb0\x46\xee\x36\xdf\x49\xec\xeb\x88\x6c\x44\xdd\xb1\xbc\x4d\x51\x7d\x74\x54\xf6\xe8\xc4\xb4\x55\xa4\xf4\x58\x57\xf5\xa2\x6f\x29\x13\xf2\xf9\xf4\x31\xf7\x74\x7f\x76\x8f\x1a\xf7\xfd\x55\x45\xb6\xf4\x1b\x53\xb5\x8f\xbe\x1e\x54\xe8\xfd\x54\xe1\x62\xd7\xc6\xf6\x3e\x1a\xfa\xbc\x8f\x74\x95\x4e\xe1\x07\xb5\x38\x62\x69\xf6\xff\x63\xec\xcd\x82\x24\xb9\xb2\xec\xb0\xaa\xc8\xcc\x2a\x54\x01\x68\xac\xdd\x1c\x8d\x4c\xb2\x18\x6a\x68\x98\x0f\x10\x66\x12\x3f\x68\x1a\x7d\x44\x4c\x56\x4e\xa3\x51\xc6\x4e\x24\xb3\x6a\xaa\x34\xd0\x0f\x5e\x78\xbc\x8c\x70\xa4\x87\x7b\xc0\x97\xcc\x4a\x18\xbf\xb4\x98\x0d\xf5\x21\x13\x25\x9a\x28\x52\x34\xd9\x48\x43\x1b\x51\x1c\x8e\xc4\x9e\xad\x35\xec\x61\x47\x36\xd8\xdd\x33\xbd\xa0\x1b\x7b\x63\x2d\xd4\xbe\x57\xd6\xbe\xa3\xb2\x64\x7e\xcf\xbd\xef\x5d\x4f\xf7\x12\xf5\xe7\x5e\x95\x11\xe1\xfe\x96\xfb\xee\x72\xee\x39\xed\xbe\x1d\x47\xc9\x5a\x15\x6c\x75\x4e\x81\xad\xce\x29\xfb\x14\x44\x21\xfb\xe4\x4e\xa8\xc8\x35\xdf\xfe\x57\x27\x9a\xa8\x9c\x53\x5b\x4e\x4e\xd6\xaa\xb0\x1e\xd2\x1b\x09\xab\x4a\x43\xa1\x64\x08\x9d\x0b\x5f\x30\x63\xc9\x3c\xbe\x51\x89\x02\xb3\x6a\xd6\x1e\x57\x8c\x1b\x37\x74\xbf\xce\x3d\xca\xd0\xf0\x11\x43\x1e\x31\x1e\x74\x67\x57\x55\x53\x26\x8a\x80\x69\x1d\x56\x04\xcb\xf0\x5f\xab\x43\x69\x47\xd7\xfb\x3c\x4c\xca\x81\x8f\x4f\xad\xab\xbc\xe3\x79\xd8\x5b\x44\x4b\xff\x84\x86\x90\xf0\x25\x77\x9f\x59\x7f\x46\x85\x43\x71\x79\x1e\xb3\x59\x11\x93\xf5\x03\xd5\x03\xf9\x03\x55\xc4\x0f\x6c\x9c\x25\x15\xd9\x06\xc0\x49\x24\xbb\xb4\x75\x43\x2c\xce\xee\x6b\x67\x45\xba\x12\xae\xc8\x84\xe2\x69\xfe\x05\x3d\x0d\x5f\xbb\x2c\xd0\xc8\xc4\xc5\x92\x09\xf2\x22\xb5\xd3\x9e\x54\x0a\x9a\x65\x9b\xd4\xcf\xbf\x79\x59\xc3\xbb\xaa\x3e\xe2\x8a\xcd\x9e\xa9\x14\xb5\xe9\x2f\xe1\xdd\x1e\xa5\x74\x2a\x36\xe0\xbf\xea\x94\x4b\xd3\x31\xb6\x1e\x98\xe5\xb4\x31\xd2\x8f\xa8\x97\x6d\xa7\x72\x25\xb6\xf9\x67\x98\x6c\x40\x51\x1e\x5b\xd7\x2a\xb0\xbf\x07\xdf\x02\x3e\xda\x4e\xec\x2b\x24\xfb\xbe\x07\x0b\x84\x13\xe6\x49\x3a\x04\xf1\xcd\x3b\xd7\x95\x34\xed\x65\xd5\xb2\x73\x03\x49\x21\x29\x17\xaa\x5e\x79\x90\xdd\x63\x8f\x3e\x8d\x09\x46\x64\x7c\xc4\x15\x8d\x6c\x9a\x26\xb1\x4d\x0a\x68\xd9\xbb\xb8\xcd\x11\x12\x9d\x75\xed\xb3\x81\xc9\x0a\x13\xe5\x6b\xd3\x3a\x96\x00\xe7\x1c\xb3\x6b\x2b\x46\xa6\x73\xda\xed\x3c\xde\xf1\x78\xda\x7c\x6d\x1c\x06\x65\x7c\x3b\xc3\xd0\xc5\xc5\x4a\xa7\xe2\xfc\x26\x5c\x28\x21\x23\x2d\x5f\x1f\x5e\xe6\x9b\xcd\xf4\x59\xbd\x34\x81\x74\x9e\xc3\xfe\x5f\xac\xf4\x8c\xfa\xa4\x6f\x60\xc6\x61\x6e\x66\xb4\x16\xc5\xa4\xa5\xfa\xe0\xb5\xde\xc5\x43\x9b\xe2\x1f\x77\xb0\x8e\x68\x24\x95\x2c\xd7\x95\x5d\xbe\xb1\x74\xea\x39\xaa\xbe\xbe\x4d\xa2\x64\xe0\x09\x4b\x35\xf1\xb2\x4e\x37\x4b\x37\x5e\x83\x61\x33\x41\x50\xa4\xc4\x29\x72\x60\x56\xf0\xd4\x13\xef\x4f\xa2\xbd\x06\x36\x6e\x43\xc7\x09\xd6\x64\x60\x6d\x5d\x9c\xdd\xe7\x1a\x55\xa8\x22\x21\x2d\xda\x0d\x5d\xc1\x51\x12\x5b\xce\x6d\xba\x01\xf0\x83\xd1\xf1\xb4\x2d\xdc\x8e\x31\xd3\x3a\x30\xbb\x79\x79\xa2\x7a\x2a\xcf\xa9\xda\xe6\xd3\x5d\xff\xe1\xcd\x49\xeb\xa5\x72\x37\xfa\x7e\xc7\x7e\x98\xe5\x45\xda\xa3\x2d\x2b\x24\x69\x0f\x61\xa7\x06\x6c\x93\xaf\x1b\xf8\x2e\x4d\xd8\xb7\x9c\x65\x44\xbc\xfa\xe9\x44\x01\x38\xae\xa9\x21\xaa\x33\xa1\x10\x9b\x4e\x91\x3a\x89\x3c\xec\xde\x33\x48\x12\xf0\x8d\xf2\x90\x46\x26\xda\x8d\x3d\xe0\x18\x7a\x17\x45\xd3\x87\x9b\x35\x60\x17\x4e\x6a\xc1\xbb\x4d\x9d\x22\x3e\xd1\xf1\x8d\x44\xbf\xa0\xe1\xc2\x09\x7b\x19\x71\x15\x82\x94\x7b\x13\x25\x22\x04\xde\x18\x1a\xd3\xe7\xfe\x7a\xb7\x81\xb1\xd5\x2b\x98\x4a\x7f\x11\x3d\x3e\xdf\x34\xf9\xcc\xbd\x22\xf5\x4e\xa1\x08\x55\xf9\x58\xe2\x7c\x43\xd7\x44\x19\xa5\x88\x4f\x80\x35\xc4\x80\x63\x41\x7d\x29\xfe\x4e\x5f\x98\xee\xd9\xd8\x2e\x85\x2e\xa5\xc7\xaa\x48\x08\x3b\x44\x22\xa9\xc1\xb5\xc9\x93\x62\x2b\x09\x00\x28\x92\xf8\xba\xbb\x35\x4c\xdf\xff\x72\x7b\xa9\x88\xfb\xc6\xa5\xd0\xca\x41\x46\xfc\x85\x4e\x3a\xbe\x6e\x68\x5c\x5c\x68\x0f\x6d\x9a\xd9\x68\x09\x5b\xda\x89\x81\x2f\x2c\x2e\xc8\x8d\xaa\x40\x12\x7b\xde\x4e\x95\x20\xe6\x8e\x76\xa1\x59\xa1\x8f\xa1\x34\x85\x95\x27\xc8\x2f\x14\xa7\xf9\x7f\xb0\x67\x5c\xc6\xdf\x91\x48\x7e\x5f\xc5\xde\xfd\x30\x33\xbd\xc8\xf6\x5b\x5e\x92\xf1\x98\x4e\xfb\xd7\x29\x58\xe6\xf6\xb7\xb3\x38\x1c\xb3\x49\x84\xbb\xc4\xa8\x79\xbe\x51\xd6\xb8\x6f\x47\x49\x90\x9a\x3c\xdb\x49\xaf\x0d\xdb\x7d\x4c\x61\xf7\x50\xbe\xc1\x8e\xba\xa4\x3d\x0c\x6e\x07\x93\xea\xae\x6a\xbe\xbd\xa3\x94\x78\xea\x7a\xd5\x73\xfb\xdb\xc3\x22\xed\x73\xd5\x1c\xa8\xd5\x33\xde\xc3\x78\xe3\x8c\x92\x78\xcd\xad\x21\x37\x95\x49\xe6\xb1\x1f\x85\x71\xfe\x71\x95\x1b\x4f\x41\xf2\xc1\xcc\x2b\x1d\x5f\xa1\xd5\x2c\x06\x89\xe9\x3f\x82\x6d\x2b\x1c\xf3\xe5\x6b\x22\x3c\x80\xc6\x38\xb9\xc0\xfb\x9f\x04\x00\x00\x8b\xf8\xb4\x36\x41\x13\x25\x45\xfc\xe5\x16\x52\xa7\x03\xb3\x9c\x21\xbd\x56\x7b\xe5\x83\x73\xfb\xdb\x4b\x51\x28\xc7\x05\x13\x0b\x61\xc5\x08\xcb\x90\x9f\x12\x1b\xe7\x49\x91\x9a\x01\xb4\xc6\x5d\x41\x6d\xd1\xa7\x5e\x1e\xf3\xa1\x6c\xb0\xfc\x08\x7d\xa7\x48\x63\x2b\x86\x08\xc6\x3e\x48\x69\xbe\x7c\x40\xf8\x70\x4f\x75\x7d\xdd\xea\x33\x85\x08\x79\x17\x4f\xe4\x98\x20\x5d\xce\x77\xc7\x7a\x43\x52\xcb\x66\x19\xb3\xfd\xb9\xcc\x87\x03\x31\xd7\x33\xaa\x07\x89\xa3\x26\x74\x02\x45\x08\x4e\x8e\x2a\x16\x8c\xa3\x93\xaf\xba\x21\x08\xe3\xbe\x1d\xdb\xb8\x6f\xe3\xc0\x82\x82\xcc\xd1\xcc\x3b\xf2\xa0\x8b\x2a\xfc\xf8\x89\xa6\xd7\x6b\x02\x2c\x8d\xc2\xa8\x6f\x99\xe1\x00\x69\x71\x9c\x51\x7c\x5d\xc1\x60\x0e\x62\xd3\x52\x1b\x6c\x8b\x19\x7d\xb6\x56\x76\x0c\x25\x26\x90\x62\xb6\xb7\x56\xba\x5b\x75\xc9\xf4\xd2\x30\x98\xa6\x2f\xe3\x26\x00\xfa\x4b\x69\x08\xf0\x1d\x75\xdf\x45\x34\xc4\x37\x2a\x03\x90\x0f\x8b\x51\x8f\x16\x3a\x83\x53\xd4\xde\x3c\xaf\xea\x14\xaf\x17\x65\xe4\x96\x32\xa4\x9d\x1b\x75\x51\xbe\x17\x06\xe2\xd2\xad\x72\xd4\xc4\xe5\x23\x3d\xac\x9d\xf7\xd7\x85\xeb\x66\xaa\x74\xaa\x98\x75\x81\xc6\x0e\x6e\xf0\x83\x8e\x22\x4d\xb9\xad\x48\x49\x02\x33\x36\xbd\x30\x0a\x73\xf0\x1e\x38\x6d\xd6\xc5\x59\x27\x19\xdb\x44\xd3\xd9\x0f\xb3\x31\xf1\x51\xb7\x54\xea\x19\x7c\xb9\x7c\xad\x78\x6d\x7a\x09\x0b\xa4\xf8\x14\xf6\x35\xe5\x7b\x5c\xab\x30\x01\x8d\xd2\x17\xbe\x4a\xf3\x84\x90\xea\xda\xa4\x75\x50\x60\x1f\x1f\x63\x70\x70\xd2\xef\x5c\xf7\xc5\x84\x0f\x15\xfc\xe7\x33\x78\xec\xb0\xa1\x3b\xba\x4a\x53\xfc\x0e\x39\x9c\x48\x03\x9d\xee\x78\x0d\xd0\xc7\x61\x48\xe0\xbd\x03\xec\x86\xe0\xf7\x0a\x44\x75\x91\x71\xf8\x2e\xa0\x18\xa8\xa8\xdc\x86\x55\x45\xca\x61\xe7\x7a\x19\x7a\x30\xd6\x8a\xc2\xc1\x4d\x66\x85\x83\xdf\x78\x57\xb5\x7f\x6e\xa8\x7c\xf9\x97\xe4\x54\xbb\xf0\x65\x6e\xbf\x88\x6e\xac\xfb\xb5\x14\x85\x71\xdf\xd0\x9c\xba\x96\x07\xa5\x16\x54\xbe\x83\x48\x24\xf9\xb2\xcd\xb0\x18\x0c\xad\xe0\x54\x11\xa5\x7e\xa0\x13\x21\xec\x01\x73\x0b\xba\x96\x1f\x4e\x93\xa5\x30\x7f\xaa\x1c\x4b\x7c\x2b\x0b\x6f\x71\xee\x87\x16\x05\xfc\x75\x86\x40\x70\xb1\xaa\xa3\xd2\x66\x37\x3a\x2a\x4b\xf9\x05\x62\x39\x54\xa6\xa7\xba\x64\x02\x1d\xb5\x8c\x97\x41\x3f\x43\x2f\xa2\xdb\x18\x31\xad\x33\x5d\x6f\xb7\x8e\x40\xf1\x0a\x28\xe8\x6b\x70\xbf\xf0\x23\xd7\x34\x41\xcc\x7d\x9c\xe9\x98\x70\xd0\x67\xc0\x99\x38\x54\x33\x37\x0b\x2f\xef\x6b\xc7\x66\x84\x03\x0e\xaf\x08\xbc\x0c\x5f\xab\x4c\xd4\x6b\x45\xbc\x0c\x9f\x55\x11\xd6\x09\xf8\xe5\xc7\x13\x6f\xed\xea\xa5\x45\xf0\x3f\x24\xa3\x5e\x68\xb0\xfe\x45\xd1\xd2\x23\x67\x2f\xb8\xc2\x4c\x94\x04\xcb\x43\x6b\xfb\x8a\x27\xe2\xaf\x30\x59\x7c\xe3\x85\xde\x54\x25\x46\x4e\x3d\xe5\x78\xd7\x62\xb0\xe7\xdb\x83\x24\xc9\x6c\xcf\xa6\xe9\xda\x94\xd2\x08\x38\x81\x91\xc4\x01\x42\x69\xbb\xcd\xbb\xaa\x9c\x1d\x98\xb1\x8d\xa6\x15\x87\xc6\x05\x2e\x53\xba\x22\xb1\xaf\x45\xff\xee\x44\xd5\xa2\x7f\xb7\xf3\xac\xef\x39\x88\x72\x9b\xc6\xd4\x74\xb8\x83\xd6\x93\x68\xf2\xd5\xc4\xfa\x24\xb6\x50\x71\x06\x72\xd0\x4e\x64\xa7\x7c\x5f\x69\xeb\xf3\x8f\xb9\x62\xd3\x7e\x38\x43\xdf\x0d\x0b\x77\x95\xbe\x1b\x0e\xfd\x47\xd8\xc5\x92\x17\xf6\xe0\x14\x44\xad\x52\x20\xf6\x29\x10\x68\x79\xd2\x1c\x70\x83\x17\x9e\x4e\xba\xbd\xb6\x2e\xa4\xe7\x9e\x6b\xaf\x5a\x51\x61\x87\x6b\x06\xf6\x0c\xbe\x56\x48\x96\x2c\x19\xd9\xbe\x59\xe3\xbd\x89\xff\x47\x5b\x2d\x4c\x09\xb3\xff\x03\x21\xf5\x57\xae\xad\xc6\x44\xe1\xb2\x9d\xa1\x69\xd3\x93\x0d\x33\xff\x08\xf9\xda\x80\xec\x9d\xa3\x9d\x84\xbf\xb9\x4f\xa6\x82\x22\x94\x99\x7f\xbf\xeb\x0f\xc4\xbe\x4d\xb3\xdc\xc4\x4e\xee\xc8\x0d\x86\xe7\x39\x6b\xe0\x17\x36\x84\x57\x66\xd7\xc8\x71\xd8\xea\x72\x83\x44\x11\x66\x6c\xd2\xbc\x74\xed\xa7\xdc\x7b\x3d\xf5\xa4\x92\x3c\x7d\x1c\x01\x85\xe0\x98\xbe\xa2\xe3\xe0\x94\x19\xf6\xb1\xcd\x3f\xa7\x67\x12\x74\x6f\xf9\x66\xb0\x17\xb9\xeb\x7f\xb2\xaf\x17\xe1\x8a\x89\x6c\x9c\xcf\xb8\x42\x6c\xf6\x54\x57\xd1\xd0\xbf\xa3\x92\xc6\xdb\xe9\xc8\x80\xd1\x67\x7d\x13\x09\x81\x94\x10\x56\xb8\x62\xd3\x2c\x5c\xd2\xe7\xe1\x6d\x75\x1e\xd6\x29\x5e\xa4\xea\xf8\x7a\x61\x96\x11\xfb\xb3\x30\x02\xfd\x34\x36\xee\x06\x6c\xa4\x80\xab\x65\x1b\xc7\x84\xb4\x55\x0a\x6d\xc8\x17\xe0\x08\x65\xcf\x50\x1a\x1d\x3d\x16\x62\x29\x49\xf2\x9e\x89\xa2\xe9\x72\x48\x00\x19\xbe\x09\x23\xe8\x78\x28\x5c\x85\xfa\x36\x7e\x18\x87\xcc\x65\xf7\xc3\x6b\x26\x5e\xb6\x10\xa2\x91\x42\xa2\xe2\x33\xf9\x2b\xa5\xae\x73\x52\x01\x3f\xc3\x7e\xf6\x98\x96\x65\xf7\x7d\x29\x7f\x0d\x3c\x75\x38\x5c\x1f\x20\xb8\x46\x52\x69\x06\x0d\x1a\xb4\x0e\xfe\xee\xaf\x75\xd5\x30\x9c\x9d\x68\xb2\x32\x6c\x09\x3c\xe7\x8f\x95\x10\xd8\x66\xd5\xf1\xa9\xb1\x09\x0a\x86\xd7\x47\x7d\x59\x48\x31\xa5\x4b\x34\xbd\x43\xcb\x88\xaf\xd5\xdf\x05\x51\xd1\xcb\x88\x96\xc0\xf1\x5a\x2d\xce\xf2\x22\xfd\x84\x96\x9b\x0c\x4d\x63\x46\xcb\x92\x2e\x1e\x48\x08\x25\xa1\xe2\x1b\xba\xae\x9c\xd3\x13\x66\x46\x61\x14\x9a\xb4\xa5\x22\x16\x64\xe4\x44\x68\x40\xb2\xf9\x79\x12\x0f\x9e\x0b\xa3\x8a\x66\xcc\x5f\x68\x3e\xdb\xbf\x50\x58\x8e\xd7\x88\x21\x28\x62\x8d\x50\xf8\x89\x57\x3b\xba\x69\x46\x15\x05\xbe\x3f\xf9\x9a\x57\x21\xb4\x2b\x49\x54\xe4\x61\x12\x1b\x2e\xb0\x09\x6c\xad\x7c\x6b\xbe\x6e\x2a\x91\x97\xbe\xf1\x32\xf2\x63\x12\x51\x91\x71\x95\x94\xa8\x07\xcf\x5c\x56\x6d\x41\x6b\x49\x91\x3e\x4e\x5e\x99\xe6\x49\xe1\x25\xd9\x71\x11\xdd\xfb\xdb\xd6\x75\x73\x88\xb7\x64\xd7\xc8\x9a\xc3\xfc\x4e\xad\x57\xd9\x50\x0f\xcc\xba\x74\x22\xbd\x2c\x8a\x38\x5f\xc0\x3f\x93\x9a\x81\x57\x12\x67\x20\x34\x16\xed\xbf\x99\x28\xc6\xaa\x9f\xd5\x8c\xde\xaf\xb5\x7f\xe5\x1b\xbf\xbd\xf0\x8d\xdf\x9c\x9f\xa1\xf1\x17\x49\xa8\xf2\xcb\x9c\x44\xb9\xcb\xc2\x5c\x51\x9c\xb1\x47\xe9\xd9\x31\x0e\x3f\xab\x41\xe5\x88\xa5\x2a\x0d\x4c\x94\x14\xf1\x80\xc3\x7f\xc0\xac\x3e\xc1\x44\xf3\x4d\x03\x07\xdc\x7c\xbb\x57\x64\x61\xb4\x36\xa5\xcc\x91\xe6\x16\x42\xf2\x49\x3a\xc5\x9e\x72\x15\xa2\xb4\x08\xf2\x22\xe5\xe2\x13\x0e\xfe\x33\x34\xee\x7c\x5d\x9b\xea\x3d\x73\xe5\x54\xf7\xe0\x1b\x61\xa6\x8f\x77\x54\x20\x7d\x5c\xc5\xeb\xa6\x38\x84\x15\x01\x0b\x46\x90\x98\x4d\x90\x62\x49\x0a\x5e\x51\x5c\x0e\x13\x1b\x87\x87\x28\x6d\x29\xa9\x2c\x75\xf4\x9f\x57\x79\xe0\xd4\xe6\x26\x8c\x1e\xa1\x75\xe3\xb6\x8c\x83\x0c\x1f\xa9\x6c\x1f\x9a\x7a\xa7\xf8\xe5\xcb\x4a\x3f\x53\x65\xa5\x9f\x4d\x7c\x7b\xc4\x11\x5a\x38\xfc\x01\x15\x92\x85\x71\x9c\xac\x10\x41\xa3\x12\x9e\x82\xd7\x21\x38\x27\x2f\x50\x96\xa5\x2f\x4c\x79\xbd\xe5\x7f\x09\x0b\x8c\xe0\xe4\x02\x9e\x48\x38\x24\x6a\x8d\xc5\xaf\xb4\x9f\xff\x2a\xfd\x84\x64\x6f\xe8\x99\x61\x86\x8e\xd0\x72\x15\xfa\x6d\x5a\xa1\x8c\x99\x57\x38\xd4\x1f\x93\x6b\x8b\xac\xc4\xb6\x75\x55\x14\xd9\xb1\x5e\xc6\x4b\xf0\x7f\xbf\xa3\x1a\x07\x8f\xa2\x58\xe2\x38\xd5\x54\x15\x92\x26\x0f\x6e\xdb\x91\x8e\x4a\x65\x5e\xea\x90\x2f\x2d\x02\x57\xde\x38\xfe\xd1\x44\x81\xc7\xae\x74\x3c\x8c\xfc\x2f\x09\xa9\xe3\x18\x88\xcb\x43\x00\x11\x76\x6b\x1d\x19\x35\x11\xce\xf2\x3d\xde\xc1\x93\xb5\x94\xe2\xde\xbd\xed\x25\x6b\x72\xa7\x02\xbb\x49\x36\x62\xf3\x72\xcd\x0c\x1f\x98\x5d\x68\x9b\xf1\x38\x4d\x5c\xed\x09\xfd\x63\x28\x70\xf0\xb5\x66\x94\x48\xa2\x24\x0e\x4d\x04\x47\x1c\xe3\x72\x56\x75\x83\x56\x05\x9e\xac\x19\x3d\xe1\xdb\x7a\x6e\x23\x21\xcf\xdd\xeb\x34\x18\xb0\x41\x27\x30\xb0\x02\xd5\xc3\x7b\xc2\x81\x3b\x03\x70\xa5\x34\x44\xd1\x84\x0b\xa3\x57\x95\x68\xe2\x25\xe9\xe8\xd8\xb1\x5e\xce\x2b\xb6\x36\xeb\x37\x88\x9c\x8e\x2a\x5b\xdc\xee\x68\xbd\x89\xe3\x4a\xee\xe9\x77\x30\x81\xc2\x89\xe5\x83\xc2\x71\x02\x18\xbb\x27\xf4\xfc\x1f\xe8\x67\x5d\x2b\xb2\xa7\xaa\xdd\xf0\x74\xe7\x26\x8c\x7b\xc9\xea\x94\xca\x50\x9d\xc0\x72\x11\x1b\xd3\x72\x5a\x2b\xff\x58\x9f\x77\x91\x19\x0c\xa8\x9f\x7a\x2b\xab\xbc\xf0\xaf\xd0\x98\x21\x62\xfc\xd8\x49\x13\x0c\x92\x31\x95\x18\x84\x49\x4e\xe7\x27\x5b\x4e\x18\xf3\x88\x06\x4d\xb7\x1c\x9c\x23\x1c\x8d\x23\x16\x20\x92\x9e\x97\x72\x92\x24\xaf\xf6\x30\xba\x9a\xcc\x8c\x0a\xcb\x2b\x42\xa8\x0f\x34\x27\x42\x13\xc4\x69\x64\x4d\xbc\x3a\x0c\x23\x50\x4a\xb1\xb4\x6e\xa7\xa5\x64\x76\xb7\x40\x3f\xf7\xee\xdd\xd7\xde\x33\x47\xde\x16\x5c\x9f\x77\x74\xd8\x75\x5e\x31\x1c\x1e\x57\x51\xe7\x92\x49\xed\x94\xea\x9e\xb8\x53\x51\x7d\xa1\x11\x84\x83\xe2\xcb\x5d\xb9\x8d\xe3\x30\x83\x84\x97\x03\xfe\x3a\x27\x74\x77\x97\x3e\xa4\x11\xc1\x02\xeb\xaa\xe0\xcd\xf2\xd4\xb4\x94\xcd\x3b\x36\x51\xd6\xf0\x58\x25\x59\x63\xa3\x84\x32\xde\x2c\xef\x52\x91\x7a\xa9\xab\x52\x11\xd7\xbc\x42\xa7\x5d\xc7\x9a\xc0\xca\x3d\x83\x25\x88\x3e\xe0\x23\x2a\x2c\x28\xc3\x89\x6c\x57\xcb\x69\xd0\x1d\x2b\xd7\xed\xe6\x19\x15\xe1\xfd\xf3\x8e\x12\xc9\xfc\x62\xe2\xfb\xef\xa6\xba\x94\x34\x10\x64\x7c\xf9\xcb\x40\x19\xb3\x58\x33\x7e\xf9\xea\x44\xa1\x12\x7f\xae\x48\xff\x86\x45\x2a\xca\xc7\xae\x2b\xc0\x71\x60\x9f\x04\xae\xa5\xe2\x2f\xb0\xe0\x28\xf6\x14\x77\xab\x21\xa4\xfa\xb8\xda\x57\x55\xda\x55\xfc\xd5\x03\xd5\x54\xcb\x6d\xa5\x53\x4a\x68\x18\x2e\x06\x8b\x50\x74\x7c\x19\xf4\xae\xe7\x7e\x0f\xb3\xe5\x6c\xda\xa3\xcc\x41\x62\x2e\x11\x08\xd9\x60\x78\x25\x7f\x88\xd7\xa4\xa7\xdf\xf5\x54\xd7\xc3\xa7\xa2\x24\xb5\xf1\x1b\x98\x48\x61\xfb\x52\x42\x5c\xbe\x3e\x64\x0f\xe5\x36\xce\x04\xd2\x89\x79\xde\x50\x70\xdb\x8d\xc9\x57\x7d\x30\x37\xb6\x41\xb8\x84\x12\xf2\xf4\x56\xa1\xdc\x79\x57\x15\x69\x39\x39\xd5\x0d\xcd\xd7\x7c\x4c\x95\x47\xc7\x26\x0f\x6d\x9c\x67\xbb\xbd\x78\xee\x97\x6c\xff\xb0\x20\xce\xa9\x1e\x92\x8b\x48\x11\xea\xe2\xab\x68\x32\x79\x01\x1a\xee\x58\xc3\x01\xf1\x89\xa2\x10\xdb\x80\x37\x8b\x9b\x63\xe4\xe9\xc9\xd1\xab\xa4\x8b\xed\x38\x27\x08\xf5\x2e\x7a\x2d\xa0\x6c\xb8\x20\x88\x49\x3b\xa9\x8a\xbe\x0c\xab\x85\x61\xf8\x87\x13\xaf\x72\x07\x9e\x1f\xbc\xee\xf6\x6e\xf9\x53\x5c\xbb\x26\xb3\xec\xd0\x2e\xe5\xfc\x09\x67\x57\x93\xa6\x75\xcf\x04\xcb\x64\x34\x99\x6f\x99\x7e\x01\x8b\xfc\x0c\x4d\x0d\x83\x0f\x15\xe8\xf8\x8a\x8a\x76\x73\x93\xc6\x21\x08\x4d\xb7\xf6\xfd\xf1\x8d\x5a\x9f\x2b\x36\xee\x27\x0c\xc1\x17\x6d\x53\x2d\x7a\xda\x04\x29\x5d\x4a\x52\x4b\x70\xff\x29\xaf\x1c\x74\x43\x2d\x64\x56\xa5\x17\x59\xb6\x67\xdd\xaa\xb4\xa3\xf1\xd0\x64\x2c\x7d\x55\x0e\x21\xec\xcf\x61\x25\x03\x7a\x58\x11\xdf\xae\x26\x49\x04\xcc\x00\x36\xf5\x3f\x57\x98\xbf\x4b\x58\x14\x9a\x89\x0d\x47\xcf\x2d\x1a\x21\xbe\x6e\x4a\x7a\x04\xa4\x71\xd0\x52\xa2\x38\x58\xef\x7c\x3d\xa9\x64\x55\x06\xa9\xe9\x17\x84\x12\xd4\x9d\x87\xae\xde\x75\xc3\x41\xb6\x06\xa9\x89\x1d\xd0\x13\xcb\x13\x8c\xb7\x58\x19\x97\x75\x3f\xdf\x25\xf7\x29\xca\xb7\xa7\x92\xd7\x15\x14\x8f\x6a\x5b\x67\x8c\x6d\xbd\x21\xa2\x67\xa3\xd0\x92\x9c\xc0\xdc\x7e\x9e\x82\x2b\x95\x42\x7b\x39\x89\xd2\x84\xd4\x50\x74\x8f\x4d\x9a\x26\xab\x9c\xfb\x51\x0d\xb4\xfb\x5c\xf0\xad\xaa\x77\x69\xff\x31\x3a\x3b\x10\x54\x31\x8e\x0a\xee\xe1\x0c\xf1\xd4\x8b\x15\x27\x2b\x27\x5a\x09\xad\xaf\x1f\xe4\x4c\xc6\x09\x98\x66\x46\x7b\xd0\x64\xb9\x04\x7c\xf9\xfb\x4a\x57\x53\xaa\xf4\xcf\x76\x35\xd4\xe5\x92\x5a\x21\x4f\x69\xc4\xce\x0d\xf5\x98\x3d\xdb\x7f\xd4\xa7\xdd\x9e\x5d\xf7\xf9\xe4\x7f\xf2\x37\x68\x33\xe2\x64\x81\xa3\x87\xad\xf5\xe8\xba\x6a\x7f\x9c\x5e\x57\xf8\xb0\xaa\x7c\x9c\xc2\x7d\xed\x56\x92\x7a\xdc\x41\x4d\x86\xe0\xd7\xff\x06\x52\x54\x94\x8a\xba\xfc\xcc\xfa\x93\x2e\xfa\x4f\x83\xe1\xc8\xa4\xcb\x2d\xef\xd1\xfd\x3f\xf8\x72\xbe\xe9\x3c\xab\x50\xaf\xa3\xa5\x24\x85\x4e\x10\x8d\xa5\x43\xd2\xa9\x0e\x16\xd7\x11\x94\xa4\x76\x85\x95\x54\x1c\x68\xd2\x09\xb0\xfc\x4c\x53\x3f\xfd\xb9\x4a\xac\x0e\x4d\x3a\xca\xa0\xa3\x02\x47\xea\xb6\xe2\x90\xbe\xed\x69\x88\xc2\xd8\xc4\x41\xb8\x45\x7f\x8c\xb5\x4f\x45\xaf\xc6\xfb\xa2\x99\x0d\x8a\x14\xed\xa7\x58\xc6\xcc\xcc\x8d\x8c\xd5\xcd\x89\xcf\x5e\xa1\xf9\x90\xff\x08\x48\x3b\xb1\xa4\xda\xac\x7a\x05\xd2\x22\x4e\x96\x20\xa7\x8a\x94\x02\xf4\xd4\xf8\xba\x51\xc2\xd1\x1e\x0a\x86\x26\x1e\xc0\x2f\xc1\x39\xf6\x43\x2c\x41\x54\x59\xce\xa8\x86\xa4\x8d\x26\x06\xe9\x71\x98\xb7\x54\x39\xe0\x5d\xf5\xf7\xef\xd6\xaa\xfe\xf3\xf3\x5c\x65\xa1\x9c\x9f\x70\xb1\xa9\x1a\xda\x25\x45\xfd\x58\x57\xc8\x03\xdb\xc5\x28\xcc\x73\x2b\xe5\xcc\x8a\x00\x39\xdf\x28\xc2\x9f\x5e\x9a\x54\x15\x88\x99\x5f\x8c\x6f\x2a\x11\xcf\x60\x98\x4d\x7b\x88\xfd\xc6\xa4\xca\xe7\xad\x4d\xb6\xe7\x20\xbd\xd0\xa0\xfe\x31\x5f\x3a\xe3\x36\x0d\x93\x02\xed\xdf\x9c\x21\xa1\xaf\x10\x59\x84\x72\x21\x4a\xd6\xa8\x56\x99\x59\x5c\x68\xe7\x43\x93\xef\x28\xcf\x32\x54\x63\x78\x4a\xe0\xc9\x31\x31\x16\x36\xdf\xcf\x27\x1e\x3b\x37\x45\x30\x3c\x78\xc8\xa7\x3b\xfe\xc0\xbf\x5f\xd3\x09\x2c\x43\xf0\x22\x0e\x86\x51\x92\x82\x36\xb2\xa5\x51\xf7\xb4\x68\x04\x81\xdf\x40\x05\x33\x2a\xb2\x28\x1c\x89\x29\x16\x2f\x9e\xc6\x55\xf8\xf0\x54\xa5\xfb\x3b\x0f\xcd\x18\xa7\x76\xc4\xbc\x25\x8c\x4a\xc6\xc7\x04\xa2\xac\x7c\xa0\x30\x5f\x32\x51\xc4\x5b\x11\xa7\xcf\x76\xea\x3c\xe6\x6b\xa7\xbd\x35\x0c\xb3\x3c\x49\xe1\x77\x29\x22\xf4\x13\xaa\xb5\xef\x84\x72\x66\x8a\x18\x9b\xb1\x8f\x22\x34\x66\xe4\xa4\x46\x37\x01\x7f\xee\xc8\xd9\xca\x99\x87\x01\xf9\xbc\x01\x9e\xb3\xaf\x9d\x0d\xc3\xf1\x58\x86\x13\xdb\x69\x13\x96\x8f\x6f\x6a\xe3\xf9\xea\xab\xed\x25\x13\x53\xb0\x53\x6e\x41\xa1\x9e\xf7\x98\xdf\xcb\x2a\xac\x38\xa5\xf4\x80\x6d\x90\xc4\x09\x09\x92\x93\x29\x61\x85\x30\x7a\x51\xfe\x12\xfc\x30\x1c\xb1\x6d\x5d\x85\x4e\xfd\x52\x27\x6b\x70\xf6\x4a\x67\xab\xd7\x16\x08\x4c\xdc\x0f\xfb\x26\x40\x25\x40\x28\xad\x5a\x8e\x1e\xff\xe1\x41\xa5\x3d\x34\xb6\x01\x4a\x12\x88\x65\x4f\xd0\x11\x2b\x2c\xb7\x1e\xc1\xb9\xa3\xab\x88\x6d\x3f\x55\x3d\xc7\x97\x26\xcf\xaa\x44\xd8\x52\x91\xf6\xbc\x97\xc6\x92\x4a\x9d\x8a\xbe\x92\x3f\xda\x8a\xa5\xa5\x9d\x3e\xef\xb3\x4d\xf1\xea\xbc\x8b\x25\x0a\x43\x73\x63\xa2\xfa\xa1\x2e\x10\x62\x96\x8f\x59\x4e\xc5\xe3\xc9\x71\x02\x4a\x73\x93\xe2\xa7\x36\x39\x61\x17\x5a\x4e\xe4\xf7\x1d\x04\x0d\x6e\xa5\x94\x6e\x1d\xe6\xe4\x66\xc7\x53\x2f\x37\x92\x3d\x64\x26\xca\x5b\xda\x89\xf7\xe8\xb1\x8b\x93\x67\x1c\x92\x31\xee\xdb\x37\x56\x92\xc2\xa9\x8b\x4b\x83\x81\xa6\x7a\x6b\x30\xb8\xa6\xc8\x87\x4c\xbb\xe4\x3a\xf0\x5e\xf2\x1d\x78\x5f\xdd\x9a\x9c\x9b\x2f\x83\xfc\x1d\x5e\xbf\x80\x60\xef\xfb\x36\x2f\x93\x6b\xed\x98\x96\x7c\x6b\xcc\x5b\x1d\xd0\x4e\x76\xfc\xe1\xfa\x96\xb2\xc0\xf9\xd0\xc6\x4f\x2a\x48\xf0\x7f\xdf\xf1\x94\x12\x47\xe1\x05\x61\x12\x6f\x29\xca\x70\x56\x27\x12\x9f\x97\x7e\x0d\x0e\xe1\x54\x57\x01\x87\x2f\x6a\x1a\xd1\xcf\x31\xa3\x4e\x3c\xd4\xf5\xf6\x7f\x1b\xc0\x63\x21\xa2\x24\xf7\x8c\xbf\x8c\x40\xfc\xb8\xfe\x82\x46\x1d\x01\xc9\x23\xeb\xe5\xbb\xc2\xe7\x40\x0b\x33\xc2\x9c\xeb\x0a\xce\x35\x4c\xc6\x76\x46\x21\x35\xa6\x54\xb5\xfe\x7d\x5a\x35\x22\x29\xaa\x2a\xd8\x6f\x77\x34\xdb\x88\xef\x58\x5e\xb5\x59\x66\x23\x39\xa9\x2a\xfa\x93\x7c\xd3\x70\x94\x2e\xb4\xb3\x71\x18\x45\x14\xb8\x22\x09\x75\x54\x25\xa4\x8e\x3a\x44\x74\x6a\x97\x92\x74\xc4\x91\x3c\x9c\x1c\x50\x03\xf3\xf5\xfa\x93\x9a\x22\xb2\x18\x0c\x73\x12\xc4\x43\xe1\xed\x01\x82\x07\x4c\xcb\xa6\xea\x18\xbd\xac\xba\x96\x99\x35\x54\x50\x62\x0a\x5f\x71\x84\x5f\xd8\x25\xc7\x5d\x2f\xcd\xef\x37\x50\xeb\xee\x6b\xa7\xd6\xf3\xc9\x48\xb8\x7b\x73\xa2\xc8\x77\x6e\xba\xec\xdc\x4a\x18\xe4\xe1\x88\x61\x35\x58\x02\x8c\xcb\xe0\x9b\x4a\xaa\x26\x5e\xce\x9e\xa6\xbc\x03\x40\xbe\x28\x69\x0a\x5c\xba\x3c\x2a\x11\x65\xde\x23\xeb\x24\x6e\xb9\x16\x47\x3f\xac\x89\xf4\xa7\x95\xfe\xdf\xe3\x5d\x95\x4f\xdd\xb6\xee\xbd\xef\xab\xe0\x3b\xa9\x90\x2e\xa9\x21\xda\xe7\xf4\xae\xe9\xf5\x1c\x55\xee\x1e\xe9\x58\xfd\x1e\xce\x21\xde\x11\x88\xcd\x85\x66\x86\x26\x45\x44\xc0\x55\x1d\x14\x0e\x72\x15\x97\x9d\x2c\x23\x23\x26\x38\x69\x05\x85\x3a\x33\x69\xfd\xd6\x37\xf8\x3d\x3e\x51\xfd\xde\xdb\x1a\xb2\xd2\x8b\xed\xd7\x0b\x03\xa4\x94\x0b\xf0\x40\x80\xca\xd7\x35\xaa\x9f\xb9\xfd\xed\x7c\x6d\x6c\x95\xc2\x2c\xa4\x9b\x04\x4c\xd6\xa0\xb5\x9b\x15\x63\x06\x6c\xc3\xa9\x47\xe6\x0e\x4e\x3d\x5f\x3b\xb8\x48\x2f\x4a\x82\x65\x4a\xb3\xba\xee\x92\xfb\x93\x0a\x5c\x51\xc9\x51\xee\x50\x1d\x83\x19\x53\x8e\x47\x38\xda\x30\xa5\x3f\xa5\xdf\xe0\xeb\xa6\xfe\xdf\xa1\x35\x29\x7c\xfc\x72\xee\x30\x66\x5c\x1c\xe1\x9b\x86\x0c\xc0\x8b\xed\xa1\x19\x8f\xbd\x16\xbb\x4b\x5f\x96\x53\x2e\x18\xc6\xad\x1f\x9b\xdb\xdf\x0e\xe3\xac\x3c\x43\xc1\x84\x28\x89\x83\x8b\xb4\xbd\xf9\xba\xe6\x8b\xef\xd9\xd3\x36\xa1\x96\x0d\xb8\x85\xf5\x23\x2c\x1c\x1e\xa2\xfa\xd3\x89\x17\x4c\xdb\xde\x7d\xc2\x77\xc4\x45\x45\xbf\x01\xfe\x39\xe7\xc6\xf3\x59\x05\x13\xc8\x82\x22\x23\xce\x0c\xa4\xb7\xa4\x2d\x51\x35\xea\x7e\xbb\xe3\x10\x18\xff\xcd\x71\xd5\x58\x7a\xdc\x9d\x69\x61\x14\x15\xc4\x5b\xee\xe6\xdb\x15\x15\x7c\xfb\xfe\x09\xd5\x9e\x33\x2a\xd2\xbe\x15\x51\x6b\xec\x4b\x36\x93\x7c\xa3\xca\xae\xe3\x61\x18\xcd\xb4\xf6\xec\x71\xcb\x0d\x9f\x82\x21\x46\x4f\x05\xd3\x90\xa8\x34\x08\x5b\x6b\xe9\x3c\xf2\x2e\x68\xb2\x62\xd3\x3c\x1c\xd9\x8a\xa3\x8c\x69\x14\xaf\xf9\x69\x85\x73\x09\x42\x13\x85\x59\x4e\xe0\x58\x64\x92\xb8\x17\x99\x6f\x14\x33\x4d\x19\x3d\x46\xd1\xda\x4e\x0f\xf3\xdd\x41\xd6\x19\x5d\x51\x57\xe1\x56\x88\xe6\x57\x39\x8a\x22\x9f\x59\x6e\x7b\xfc\x11\xd3\x1d\xc0\x9c\xdd\xa2\x83\x1a\x89\xe4\x33\x6e\xb3\x8c\x53\x4b\x3c\x9c\x53\x0a\x81\x0c\xab\xed\x60\xc6\x07\x66\xd9\x37\x7a\xa0\x46\x71\x90\x44\x4b\x00\xb7\x0a\x3f\xb7\xfa\x10\xa7\x37\x70\x9a\x7d\xa9\x36\xe9\xe1\x26\xfa\x54\x13\x0f\x22\x09\xdb\x50\xb4\x3e\xaa\xb4\x30\x8e\x56\xba\xa2\x93\xfe\xda\x57\x34\x61\xf2\x3f\xa5\x39\x82\x8d\xbe\xa3\xc8\x7f\x76\xae\x2b\x84\x23\x1a\xa9\x78\x3e\x1e\x20\x4a\x72\x7e\xab\xa3\xe3\x63\x72\x59\xfc\xea\x2d\x7a\x6d\xbc\xc0\xf6\x2e\xf9\x09\x58\xec\x77\x90\xa5\x46\x6e\xef\x0b\x3a\xeb\x1c\x22\xad\x1c\x00\xdc\xcc\xc0\xf6\xf3\x33\xd6\x1c\xe2\x3d\x7b\x1c\xf1\x65\xb8\x02\x3b\x08\x57\xf4\xcd\x89\x77\x4b\xdf\xf4\xa8\xb6\xc8\xa4\xb2\xff\xb8\x2a\x00\x97\x55\x4a\x04\xcf\xe8\xe6\xd0\x91\xaf\xfc\xbd\xc8\xaf\x76\x5e\xc1\x4a\xcf\x2b\xe0\x4a\x6c\x7a\x2d\x85\xcd\x38\x45\x87\x8c\x74\xc5\x3b\x96\x97\xd4\x9a\xe5\x6c\xca\x37\x23\xfc\xce\x44\xd7\xba\x94\x79\x3c\x51\x41\x2d\x45\x2b\x2c\xe7\xeb\x14\xd5\xca\x4f\x49\x09\xae\xc1\xb6\x65\xb9\xc9\x8b\x3c\x49\x61\x7d\xb1\xb2\x1f\xe9\x7a\xff\xf7\x91\x75\x1f\xa0\x8d\x93\x28\xcc\x4b\x5b\xbd\xdb\xdb\x0f\x90\xa1\xa2\x7e\x70\x1a\x1e\x24\x13\x67\xd2\x33\xc2\x18\x1f\xd3\x84\x3d\xd3\xeb\xb4\x16\x90\x07\x39\x41\x91\xb1\x2b\xb2\x2d\xce\x6a\x8a\x1f\x89\x90\xa6\xe1\x66\x8a\xca\x45\x43\xab\x72\x5a\xf4\x7a\x36\x9d\xa1\x0a\x8b\xc4\x07\x1e\xa5\xbe\x8b\xd0\xeb\x6a\xe7\x0b\x32\xf0\xc4\xc4\x2b\xa2\x1f\x6b\x28\xaf\x91\xb0\xec\x68\x64\xe3\x3e\x2f\x04\xa9\xe9\xd2\xa8\x4a\x51\x77\x4b\x45\x7d\x7e\xbe\xfd\xea\xab\x5f\x75\xa3\xf9\xeb\x4f\x77\x15\x83\xd5\xdd\x89\x2f\x43\x7e\x4c\xb6\x01\x33\xcf\xfd\x1f\x38\x1e\x4f\x76\x3c\xc7\xf3\xdf\x83\x43\xc4\x91\x4c\x47\x23\x93\x3e\x99\xb4\x9e\x7b\x8e\x1d\xdb\x6f\xe1\x6c\x60\x55\x4a\xd4\x7a\x45\x74\x9a\x36\x12\xff\xd9\x44\x21\xb0\x8e\xe9\x24\xe6\x1f\x29\x85\xe8\x8b\xa8\x2f\xf3\xe7\x69\xb3\x63\xb6\x66\xd6\xbd\x40\xd3\x3b\x1d\x25\x87\x7e\xa9\xd3\xfa\xfa\x41\xde\x79\x9c\x34\x95\x90\x66\xeb\xe1\x7d\x60\x76\xae\x1d\x0c\x4d\x92\x73\xb6\x01\xa3\x7f\x58\xeb\x2a\x1d\x56\x00\xc8\xb1\x89\x22\xa6\xcf\x69\x6a\xd5\x68\xa8\xd7\x33\x55\x21\xcf\x18\xeb\x68\xe0\x61\x45\x54\xc3\x6f\xc6\xa5\xf0\x50\xcb\xf7\x61\xf0\x09\x2b\x08\x54\x7f\xe0\x44\x36\xeb\x11\x4b\x49\xcb\xa9\x7f\xa0\xfe\xc6\xd7\x2a\xa1\x38\x48\x93\x62\x9c\xed\xf0\x8a\xa8\x9f\xd2\x94\xc3\xbd\xfc\x05\x56\x9f\xd0\xad\x29\x35\x89\x1b\xba\x0a\x78\x06\x2e\x25\x7f\xbe\x06\xbe\x99\xdb\xdf\x1e\x85\x59\x16\x72\x43\x8c\x13\xd5\xf1\x02\x3b\xf5\x0e\xee\x3d\xed\x3c\x14\xbf\x07\x46\xf5\x96\xa6\x6a\xbb\x55\xf1\xcf\xc7\xa3\x41\x85\x7c\xda\xe7\x3f\x8e\x34\xb5\x39\x67\xc3\xc4\xcb\xca\x3b\x0e\x1e\xe7\x7a\x6f\xd4\xd2\x72\x65\x70\x21\xb9\xc3\x4a\x7a\xe6\xb0\x4e\xcf\x1c\x6e\x60\xf6\x7a\x91\xa6\x37\x8c\xa9\x5b\xab\xa5\xdc\x06\x4d\x97\x70\xb1\xe3\x4d\xe2\x6a\x32\xb2\xf1\x6e\x5f\x86\x7c\xa0\x0a\xd7\xef\x21\x0c\x10\x42\xf7\x4a\xfb\xa2\x0b\xb3\x98\x1b\x1e\x9b\xfd\xcb\x8e\x92\xce\x67\x97\x0e\x25\x43\xe8\x7f\x31\xf2\x7a\xe2\x59\xf4\xeb\x53\x51\xc6\x8a\x49\x6c\xa7\x69\xc3\x0b\xa9\xac\x2f\xd8\xdf\xec\x28\xd8\xed\xdb\x84\xbf\x81\x21\xd8\xb6\xee\x97\x6d\x14\xd9\x1d\x2a\xcf\xff\x24\x17\x1d\xf0\x5a\x9f\x2a\xf8\xd7\xf6\x75\xc5\xfa\xaa\xa4\x0d\x1e\x68\xde\xc0\xe3\x95\xcc\xeb\x1b\xb6\xff\x98\x47\x38\xdc\xc6\x4b\xc2\xfb\xbb\x3e\x51\x0a\xc0\x47\x70\xa6\x0b\x27\xab\xef\x05\x40\x3b\x33\x4c\xc9\x5b\x13\x0f\x6e\xba\x45\x88\x1c\x78\x07\xc7\x55\x65\xf1\x23\x6c\x4e\x1c\x02\xc8\xb2\xc3\x26\x31\x99\x20\xe3\x4c\x6a\x0e\xbd\x64\xb8\x06\x49\xc2\x9c\x88\x78\xe4\xcb\x1a\x09\x7e\x42\xc1\xd0\xee\xd5\x0e\xc0\xd2\x11\xca\x20\xe7\x07\x76\x03\xfc\xe1\x07\x0a\xac\xf4\x81\xaa\x50\x8e\x6d\x9a\x97\x8e\x36\xfb\x4d\xae\x60\xe4\x88\x24\x2f\x74\x5c\xee\xb3\x18\x99\x38\xcc\x4d\x1a\x1a\x82\x65\x6e\x12\x4b\xe6\xe6\xcd\x26\x8b\x95\x45\xc5\x60\x10\x66\xc3\xd6\x54\x45\xb5\x75\xef\x5e\xd7\x93\xee\xab\x20\xe3\xd2\xb4\x4d\xfb\x3e\xf2\x93\xda\x6e\x30\x4a\x07\x5c\x19\x17\x31\x0c\xe2\x03\x6e\x7d\xf5\xd2\x22\xd8\xc8\xae\x84\x59\x55\xbb\xe9\x32\xb6\x20\xdf\x28\x53\xb9\x57\x94\x94\x84\x6b\xdd\x57\x33\xce\x28\xcc\x46\x46\xe0\x97\x9d\xb4\xb3\xe0\x97\x5d\x86\x9d\x43\x7d\x6c\xb3\xa2\xcf\xd8\x3a\xb8\x50\x65\x6e\x45\xe4\xf0\xa1\x52\x77\xfa\x10\x09\x27\xfe\x2a\x07\x35\x88\xc2\x3c\xb2\xca\x67\xb9\xa8\x7a\xa8\x2e\x4e\xfe\xa3\x87\x2c\x95\x24\x08\x4c\x19\x27\x19\xa1\x62\xc4\x81\x79\x4a\xd3\x7e\x9c\x72\x18\x83\xbe\x0d\xec\x98\x9c\x45\x1a\x63\xae\x9d\x4d\x74\x1d\xad\x41\x88\x7a\xd5\x9a\x65\xeb\x35\x63\x05\x41\xe9\x97\xf5\x27\x2e\xd3\x14\x41\xea\x61\x5a\xf9\x16\x1b\x88\x93\x71\x04\xa1\x66\xa7\x1b\xcf\xc9\x3e\xfd\xe0\x99\xae\xe7\x31\xb1\x45\x9a\x8c\xad\x89\xb3\x19\x4f\x99\x02\xf1\x19\xae\x76\x31\x83\x26\xdc\xf5\x16\xe5\x4a\xb8\x25\x85\xf6\xa0\xb4\xa7\xd4\xab\x12\xf3\xed\x5e\x98\x78\x15\x44\x0a\x9f\xb0\x2c\x8e\xa9\x4e\xb8\x63\x8a\x53\x25\x1f\x26\x45\x66\xc8\x5b\x2a\xe7\x0c\xe6\xe0\x2a\xc2\x72\xbe\x51\x61\xab\x5d\xb1\x69\x64\x98\x15\xb2\xfc\x13\x21\x59\x2f\x1f\x51\xf8\xda\xa5\xac\x17\xa6\x49\xcc\x69\x02\x9a\x2b\x1c\xbc\x1f\x74\x3c\x53\xea\x07\x6e\x6d\x0c\xcd\xea\x72\x36\xad\xd1\x6f\x27\x26\x4a\x13\x6b\x5b\x97\x4c\xaf\x70\x80\x7b\xfc\xc8\xe1\x06\x6a\xc1\x7d\xc4\x0d\xe9\xaa\x08\x92\x1d\x55\xf9\xee\x5b\x4d\x44\xa4\x43\x93\xe5\x6b\x53\x3e\x73\x77\x4b\xf3\xf5\x4e\x26\x1e\x04\x7e\xc7\x35\x56\x0c\x52\x13\xc6\x33\x6a\xcf\x9e\x9b\x78\x44\xe7\x5d\x7a\x4c\x24\x6a\x1f\xed\xfa\x82\xd5\x3b\x2a\x93\x50\xef\xc4\x5b\x9c\x6d\xaf\xda\x70\x30\x64\x5f\x08\x4b\x00\x15\x25\xbe\x6e\x78\xe3\x85\x76\xdf\x8c\x8c\x23\x77\xc4\xa6\xb8\xac\xfd\xcb\x3a\xfa\xf1\xa5\xf9\xf6\xa8\x88\xf2\x70\xec\x62\x4a\x07\x20\x71\x00\xa8\xd3\xb5\xdf\x7a\xf5\xd5\x76\x9c\xe4\xb6\x97\x24\x90\x76\x43\xbd\xea\xa3\x89\x6f\x47\xfa\xa8\xd6\xe0\xb2\x77\x6f\xb9\xc1\x38\x5c\x61\xd7\x49\x59\xeb\x1b\xb5\x92\xce\xf3\xed\xa1\x19\x8d\xac\x6b\xd4\x07\xe8\xed\x1a\xde\x87\x6f\x6a\x67\xf4\xe2\x2c\xe1\x0d\xc9\xc1\x50\xa4\xe3\x0b\x8e\x3b\xc9\xf3\x11\x8c\x0d\x61\x8b\x38\x0d\x82\x7c\xd0\x59\x18\x33\xbe\xa9\x65\x8b\xf7\xcc\xb5\xc3\x38\x0b\xfb\x16\x7d\x5c\x8e\xa7\xc8\x45\xc5\xe0\xb1\x82\x33\x73\x45\x75\x09\x44\xa6\x97\xa4\xbb\xe9\x35\xd0\x39\xb2\x6b\xdd\xb7\x5d\x73\x06\x01\x55\xf4\x53\x94\x72\x47\xc0\xfc\x8f\x68\xc2\x39\x92\x56\xcd\x40\x9c\xac\x41\x57\xde\xd1\x8e\x6a\x33\x7d\xd0\x51\xb2\x2c\x3f\x9c\x28\x36\xa5\x6f\xd7\x44\xcb\x16\x16\x17\x90\x28\xcc\x6c\x9f\x8d\x6a\xa3\x33\xbd\x35\x43\xb6\x38\xdb\x4e\x96\x96\xa6\x4b\xa3\x82\x20\x11\x74\x7a\x18\xb3\x3b\x34\x18\x22\x33\x59\x0e\x06\x22\x83\x99\x6e\x1d\x88\xde\x4e\x2d\xe9\x75\x29\x9e\x2b\x76\x5a\x00\x49\x9d\xa2\xed\x82\xf3\xe3\x42\x53\x6f\xf9\x38\xb5\x79\xbe\x36\xed\xc3\x9c\xcd\x8e\x22\xec\x81\x92\x0d\xfc\x9f\x9b\x8a\x69\xf5\xff\x98\x7c\x55\x71\xf5\xbb\xae\x32\xa6\x93\xe2\x72\x83\xa2\x1f\xbe\x38\x79\xcc\x13\x88\x26\x19\x65\xf5\x71\x0c\x1e\xc1\xf9\xc8\xd8\x5a\x0c\x3d\x3c\x99\xf7\x15\x78\xeb\xf4\x44\xc5\x33\x0c\x67\xe0\xb0\x5b\xb7\xcb\xec\xea\x6a\xc5\xa3\xfb\x0a\xc2\x99\x45\xc5\xe8\xe1\x0a\xce\x62\x67\x47\x61\x16\x24\x71\xbf\x08\x50\x04\x73\xb9\x9c\xf2\x17\xa4\x5e\xae\x0e\xfb\x71\x92\xe6\xd9\x23\xe5\x04\xc1\x03\xb9\x4b\x06\x19\xcb\xee\x9c\xa2\x17\xfc\x85\x26\x63\xbd\x89\x17\x86\x5b\xcb\x2d\x93\xfc\x67\xf0\x29\x39\x8c\x9d\xf8\x5a\xe7\xf7\x15\x1a\xab\x6f\xd3\x70\x45\x0f\xb6\xf8\x5e\xba\x5a\x20\x56\x35\x2e\x0d\xf1\xb4\xc7\x31\xec\x84\x62\x26\xa2\x53\xa4\x68\x9c\x30\xea\xa2\x60\x40\xae\xb8\xe1\x48\xc3\x60\x98\x5b\x71\xe2\x7c\xe0\xa6\x48\xb3\x6b\xc6\x10\xd2\xdc\x21\x49\x5d\x4e\xa9\x98\x08\xae\x2d\x0e\xe5\x9b\xaa\x1f\xfa\x1f\xd5\x0c\xe3\x9e\xb9\xd2\xf7\x88\xc2\xd8\xf6\xa7\x95\x6f\x7c\x66\xa2\xc6\xed\xe7\x4a\x61\xe9\x92\xd6\x39\x78\xa0\x52\xb4\x69\x32\x10\xb1\x1f\xa4\x3f\x3e\xd1\x78\xba\x4f\x54\x63\x64\x50\x44\x48\xfe\x96\x5e\x5e\x39\x07\x92\x43\x6e\xf9\x6b\x95\x89\x0c\xd2\x64\x3c\xed\xc3\x8c\x3b\xb4\x47\xf1\xad\xef\x4e\x7c\x9e\xf5\x5d\xa5\x84\x76\x47\x49\x0b\x99\x3c\x4f\x4d\x90\x23\x9e\x86\x65\x3a\x4d\xa1\x0e\x5f\x6b\x75\x97\x61\xb8\x22\x5c\xbb\x4e\x23\xb8\x7c\x5b\xbe\x51\xb8\xbb\x7e\x6a\x57\xc9\x0a\xf0\x26\xe9\xe8\xa3\x5d\xd1\xd8\x7d\xde\x84\xa3\x00\xf2\x86\x79\x4a\x5c\x57\x7d\x39\xde\x4e\x95\xcc\x55\x36\x2e\x2a\xe1\x90\x3e\x35\xd8\x2f\xce\x56\x64\x09\xf9\xba\x49\x51\xb8\x1f\x66\x69\x31\x66\x82\x40\x87\xd1\x74\xad\x43\x30\xd0\x12\x3b\x3e\xa5\xda\xa4\x50\x8b\x23\x9f\x02\xab\x94\xab\xe6\x48\xee\xa1\x77\x00\x4e\xd6\x91\x8e\x6f\x0c\x89\xcc\xa0\x4a\x4d\x50\x4e\x94\x30\x13\xd4\xd6\x1d\xe9\xe8\x8e\xc7\xce\x79\x75\x1b\x71\x7e\xde\xe5\x96\x1a\x5a\xb1\x88\xac\xa8\xa5\x3a\x04\x8e\x2a\x1e\xc5\xa3\x6a\xde\x47\x86\x30\xbb\x99\xea\x73\x66\x99\x39\xbe\x69\xfa\xf6\x2c\x2f\x82\xe5\x2d\xbc\xe1\x7b\xf7\xba\x26\xaa\xaf\xaa\x31\x0a\x52\x4b\x4b\xd8\x44\xb4\x88\x37\x89\xcd\x99\x84\xc1\x2a\x19\xcc\x6c\x67\x19\x15\x63\x2e\x01\x90\x15\xc4\x85\x06\x25\x60\x97\xe3\xfc\x3a\xdd\xd1\xf8\x9a\xd3\x64\x2b\xb8\xbd\xab\x92\x07\xd2\x81\x74\xc8\x04\xbf\xae\x5b\xde\x35\x70\x9c\xaa\x8d\xfc\xc1\xc5\xd9\xf6\xd8\xc4\x36\x8a\x42\xfa\x8c\xd3\x61\x2e\x1f\x41\x48\x15\xf5\x97\x07\x66\x75\xa6\xe5\x38\xbf\x3e\xc0\x1f\x4a\x3b\xa9\x6a\x2d\x55\x84\x69\xa7\x69\xee\x91\x39\xab\x77\x65\x53\xbd\xaf\xa7\x53\x32\x38\xf1\x51\x8a\xe7\xeb\x26\x57\x37\x0a\x97\x84\xa2\x03\x66\xea\xed\x8e\x3f\xdb\xde\x56\xf4\x0e\x23\x1b\x98\x38\x7c\xbd\xb0\xac\x5a\x2e\x29\x6a\x4f\x98\xc8\x2d\xc7\xf0\x07\x36\x29\xa7\x28\xbe\xc1\x57\xd4\x61\xbb\x12\xc6\xd3\xaa\xc5\x93\x0b\xb8\x82\xaf\xf5\x47\xf4\x25\xc5\xd1\x59\x67\x60\x9f\xdb\xdf\x7e\xcd\xa4\xa9\x33\xd2\x42\xda\x54\x7e\x06\x11\xf4\xf6\xae\xc7\x69\xdc\x50\x78\x93\xd7\x92\x30\xce\xa3\x35\x0a\xb8\x18\x05\xd6\x51\x90\x25\xce\xeb\x89\x0d\xf1\x69\x39\xae\x9d\xe3\xa4\x3c\x32\x51\x52\xf3\xe5\xb2\x1d\xd9\x38\xcf\x54\x07\xde\x39\x15\x32\x9e\x6b\x1a\x78\xd2\x93\xae\xf0\x26\x5f\xd2\xd2\x5a\x97\x1e\x92\x37\xb4\x29\x97\x5a\x25\xd9\x5c\xae\x16\xbe\x6e\x60\x99\xdd\xd7\x1e\x47\x05\xdb\x10\x19\x0a\x35\x2c\x1a\x4a\x09\xb4\x95\x6f\x3a\x3e\xad\xfa\xe2\x4e\x37\x09\x16\x05\xc9\xa8\x67\xf2\xa9\x0a\x58\xad\xfc\x08\x4e\x56\xe8\x23\x4a\x45\xac\x52\x05\xeb\x53\x0f\x86\xc0\xc9\x28\xed\x0f\x07\xf1\x43\x4d\xc0\x70\x6b\xe2\xed\xf2\x45\x3a\xc8\xf8\x8f\x14\xdc\xf4\x30\x11\x71\x08\x93\x46\xb9\x14\x1d\x29\x44\xb9\x46\xb9\xc9\x4c\x35\xba\x46\xe1\x92\xa5\xda\xa3\xef\x59\xbc\x40\x47\x17\x5f\xd7\xb6\xf6\xe2\xec\x62\x3b\x2b\x7d\x08\xce\x57\x08\x6a\xa0\xa5\x24\xe5\x3d\xd0\x6b\x50\x18\x42\x64\xdb\x96\xe2\x17\xc1\x83\xf1\x75\x53\x26\x27\x48\xe2\x0c\xe8\x5b\x1f\xde\x33\xc3\x0d\xdf\xd4\xf8\xa9\x89\x52\xdc\x31\x20\xa6\x02\x77\xc1\xd1\x72\x51\x73\x2b\x5f\x74\x6a\x79\x63\x13\xc6\x98\x2d\xc4\x09\xf0\x9f\x70\x10\xdf\xaf\x48\xe1\xfb\x8a\xea\x6b\xa5\x45\x11\xa2\x07\xb8\xb5\xff\x6c\xd2\x52\xcc\x7b\x0a\xa0\x72\x61\xb2\xdb\xa5\x9b\x66\x5b\x8a\x7f\x0a\xcb\xc2\xd3\x8b\xb8\x2f\x37\x71\x6c\xd7\x70\x56\x81\xfe\xef\x07\x8a\xfe\xf3\x07\x0e\x9e\xb2\x3a\x0c\xb3\x65\xb1\x6b\x98\xd3\xbb\xf0\x48\xf9\x46\x2b\x7c\xac\x1a\xf0\x8e\x3d\x0c\xde\xd8\x00\xeb\x8a\xac\x59\x91\x62\xa1\xe2\x27\x75\x64\xa5\xd5\x72\x6a\x4f\x48\xad\x71\x84\xe1\xe5\x84\xcb\x4f\x65\x9b\x6f\xd7\x40\x1c\x2f\xcd\x53\x8f\x8d\x06\x48\x82\x45\x02\x66\xf2\xa6\x32\x36\xc8\x1e\xe0\xf7\x7f\xae\xd6\x6f\x16\xf6\x22\x42\x4e\x78\xa8\x27\x4a\x75\x7c\xad\xb0\xfa\xd9\x30\x49\x28\x3b\x53\x3a\x74\x30\x2a\x2d\x0a\x38\xf9\xba\x86\x4b\x21\x49\xcc\x30\x0d\x8a\x30\x87\xc1\x10\xde\x25\x7a\x29\x21\x64\xd2\x63\x61\x33\xfb\x84\x7f\xfe\xbb\x30\x90\x5c\x2b\xa1\x45\x2f\x9a\xe6\xe5\xee\x55\x19\xcf\x57\xd8\xf3\x7d\x4f\xc7\x3e\x28\xae\x31\xbe\xbf\xab\x20\x2b\x1f\xe2\x84\x40\x42\x71\x7b\xd7\x77\x2c\xe3\x50\xae\xa8\xd5\x60\x91\xad\xeb\x4c\xf7\x97\x1d\xaf\x48\xf4\xce\x44\x1b\xdc\x3b\xca\x43\x0b\x47\xe3\x84\xc4\xb0\xcb\xaf\x84\x8f\x3e\xa1\x81\xe5\x6b\xa5\x04\x3d\x0a\x83\x34\xc9\xd6\xb2\xdc\x8e\x30\x0f\xce\xfd\x50\xba\x26\x0d\x90\xd6\xb6\x09\xf2\x70\x45\x50\x3f\xa8\x55\xfc\x10\x1b\x88\x6f\x54\xb2\x80\x96\x71\x4b\x33\xef\x5c\xd4\x01\x7f\xbd\x1a\xbc\x38\x5b\xda\x91\xa5\xb0\x6f\x39\x19\x0e\x83\xf3\x3e\xbd\x04\x5f\x57\x2b\x05\x6c\x6f\x9c\xf0\xb7\xab\x1a\x9c\xa9\xfc\x5d\x91\xc6\xbb\x7d\xac\x70\x0f\xe3\x0c\x57\xfc\x06\xb2\xbb\x92\xb7\x2d\x67\xa6\x42\xcf\x2f\x29\x41\x4d\x8d\x7d\x5f\x97\x99\xc1\x08\x8f\xa7\xbb\x8e\xa1\x10\xd8\x63\xb9\x7c\x24\xc9\xe7\xe3\x09\x12\xa2\x11\x53\xd0\x24\x9a\xea\xd7\x3f\x85\x04\x44\x57\xe9\x34\x54\x40\x0f\x84\xa3\x83\x83\x70\x57\x26\x9d\xdb\xcf\x1b\xfa\x2e\xca\x77\x70\xe2\x4f\x4d\x3c\xa6\xc7\x8e\xc6\x91\x41\x31\x53\xda\xb1\xbd\x83\x78\x4e\x01\x5c\xfa\xe1\x38\x4a\x46\x38\x1a\x17\xbc\x30\x85\x6b\x50\x03\xa7\x8b\x14\xfb\x1a\xd9\x84\xc2\x00\x93\xe3\xe4\x6b\xe6\xbd\x34\x67\xbd\x26\xbb\xd0\x5e\x35\xb9\x27\x92\xc6\x7b\x1c\xe9\xa8\xfa\xcb\x91\x06\x29\x51\x07\xa8\x28\x44\xc9\xd7\x51\x93\x39\xf4\x09\x12\xfe\xc2\x38\xe5\xda\x8e\x20\x60\x3a\xad\xa0\xe9\x4f\xac\xab\x46\x3f\xa6\xa5\xc3\xc8\x3c\xd2\xd5\xca\x7b\x77\x54\x7c\x6b\x63\x9b\x0e\xd6\x76\x7a\xee\x8e\x3b\xaa\x49\xe3\x4f\x95\x5d\xe5\x5a\x1d\xc7\x4a\xb4\xce\xe0\x97\x5c\x99\x54\xb4\xc3\x14\xe6\x7d\x47\xd7\xb1\xc8\xc4\x87\x42\xeb\x49\xdb\x18\x3c\xac\x44\xaa\xea\xea\x32\x7b\xf6\xb4\x97\x6c\x5c\x0c\x52\x12\x79\x75\x18\x6b\x8a\x8b\x36\x6f\x2b\x74\x6b\x5d\xae\x6c\xcf\x9e\x76\x98\x9b\x48\x52\x0e\x15\x85\x6a\xbe\x51\xe9\xc7\x9e\xc9\xc3\x5e\x92\xe3\xe8\x41\xae\xe4\x4f\x3a\x4a\xb0\xf9\x4f\x6a\x93\xfd\x6b\xed\xa8\xdc\x01\xb1\x70\xee\x20\x71\xfa\xd6\x44\xa9\xfc\xbe\xd5\xd1\xf2\x95\x26\x0a\x63\x2c\x0b\xae\x2e\x78\xcd\xd6\xff\xec\x0b\xdf\x12\x96\x26\x2b\x49\x96\x2b\x5d\x7f\x56\x59\xe6\x9b\x7a\x16\x74\x4f\x3b\x30\x45\x26\xc7\x66\x45\xe7\x89\x6f\x54\x98\x3d\x32\x59\x06\x3f\x5d\x5a\x47\x7c\x6e\x16\xfa\xdf\x48\xa6\xfc\xa2\x12\x25\x15\x71\xff\x99\x29\x2f\x4a\x3b\xd5\xf5\xaa\x65\x1c\x6b\x80\x90\xe4\xa6\xce\xa7\x7d\xaa\x34\x6e\xf8\x44\xc2\xb0\xdc\xc1\x18\x21\x1c\x3b\xc7\x11\x21\x0e\x92\xff\xbd\xd3\x52\xdc\x80\x84\xb8\xc0\xd9\x71\x06\xd5\x0f\xac\x7f\x16\xdc\x62\x06\x39\xcf\xaf\xf8\xc6\x3f\x04\xfc\x03\xd1\x25\x34\xfc\x99\x44\x89\x0e\x41\xb8\xa7\xbb\xd7\x15\x1f\xdf\x29\x16\xad\xe4\x8f\xe0\xb8\x42\x44\x7a\xbf\xa3\xe7\x24\xec\xdb\x1d\xe5\xb3\xe1\x3b\x5a\xeb\xaa\xd9\xeb\xd9\xae\x5f\x87\xbb\xd6\x3d\xc9\xcc\xf6\x75\xdf\xc3\xf0\x24\x9d\x96\xec\xe2\x29\xca\x49\x30\x62\xd8\x34\x43\xc5\x42\x3a\xe1\xca\x3f\x06\xba\xe5\x1e\xac\x34\xec\x15\x22\x29\xbe\x5e\x57\xcb\xba\x49\xd6\x62\x1c\x46\x62\x87\x04\xb8\x44\x93\x20\xf1\xe2\xd3\x4a\xfd\x28\x4f\xed\xc8\x82\x75\xe6\x45\x2e\xb5\xc0\x29\x95\xc2\xa4\x87\x98\xdc\xad\xad\xc0\xd2\xec\xbd\x5e\x84\x36\xc7\x8f\x21\xe8\x3b\xab\x02\xc0\xb3\x0a\xb6\xf5\x37\xff\x93\xbf\x35\xa5\xb7\xad\x02\x92\x83\xd4\x45\x84\xcb\x7d\xa0\xb2\x64\x6d\x34\xe3\x39\x14\xb8\x7a\x0e\x83\x74\x47\x51\x55\x80\x30\x54\x44\x6d\x7d\x0c\x72\xbd\x81\x76\xe5\x45\x66\x85\x84\x1b\xee\x5c\x3d\xc5\x49\xdd\x72\x0c\x5c\xa7\x5c\x16\x74\x29\x8c\x25\xea\x96\xba\x91\x92\xdd\xc6\xec\x38\x8e\x72\xc7\x21\xb4\xa1\xf6\xdf\x30\x89\x07\x94\xe7\x85\x6b\x7d\x91\x8e\x3b\xbe\x9e\x78\x0a\x8d\xe3\x17\x69\x55\xe3\xfa\xbe\xa2\xe5\xbe\xa8\x32\x42\x77\x60\x8c\xdd\x37\xb9\xf1\x3e\xd9\xf9\x9a\xfb\x41\x6a\xdb\x5a\xb2\x01\xf4\x5b\x7c\x1a\x11\xb5\x79\xbe\x76\x6a\xa9\x26\xcd\x33\xa4\x4a\xf1\x7e\x15\xd2\xc3\x29\x74\x4b\x62\x50\x44\xc0\x9a\x55\xba\xbd\x12\x78\x98\x0d\x55\x2f\xf9\x5d\xd5\xe8\x73\x57\x21\x81\xec\xa1\x61\xd8\x0b\x73\xce\x3c\xe3\xfb\x0f\xd3\x5c\xf2\xf5\x43\x1b\x71\xf2\x55\x1b\xe7\x5a\x42\xe4\x12\x2d\x1b\x49\x55\x54\x22\x84\x22\x9a\x51\xa9\x47\xce\x44\x61\x13\x82\x37\x56\x98\xe2\xf0\x2e\xfc\x3f\x1d\xcf\x6e\xf5\x0f\xaa\x08\xce\x17\xcc\x0b\xd8\x22\x70\x72\xae\xa8\xf3\xf9\x87\x13\xe5\x3f\x2a\x99\x4a\x93\xf6\x21\xb1\xcf\xaf\xaa\xca\xf4\x1e\xf9\xae\xb4\x29\xc7\x46\x68\x9e\x5f\xe4\xfc\xeb\xf5\x89\xcf\xf2\xa1\xf5\x87\xf9\x2e\x6b\x45\x98\x3d\x7b\xda\x51\x98\xe7\x91\x9d\xf6\x75\x7f\xd6\x0c\x07\x08\xe7\x23\x55\x84\x81\x58\x27\x46\x7b\x43\x21\xc5\x46\x26\x1d\x84\xf1\x2e\xf5\x7c\xc7\x61\xaf\xe1\xbf\x70\xd1\x01\x2b\xfb\x26\x0d\x3d\x56\x3c\x1e\x0d\xa7\xd4\x0f\x3a\x5e\xa6\xf9\xaa\x62\x25\xba\x3a\x51\x08\x00\xee\x49\x17\x95\x78\x15\x39\xc6\xd9\x2a\x8f\x97\x18\xa3\x6b\x0a\xc6\x71\xad\x4e\xfb\xb8\xb8\xd0\xce\x56\xc3\x51\x4b\x69\xa5\x6f\x74\x54\x07\xc2\x86\x2a\x97\x8f\xd3\x24\xb0\xb6\x5f\xc6\x6e\x3b\x14\x3c\xfb\x82\xaa\x61\xb0\xfa\x22\x67\x95\x3b\x35\x1a\x00\xfe\x04\x96\x13\x7f\x44\xad\x6d\xa1\x06\x9b\xf1\x51\xe4\x76\xe2\x13\x15\x47\x93\x3e\xa7\x78\x0b\x04\xfe\xf7\x40\xb9\xa3\xdb\x6b\x14\xdb\x07\x66\xe7\xa8\x0b\x2d\xee\x87\x9e\x48\x47\x93\x60\xcf\x3b\x12\xec\xaf\x28\x5e\xb9\x34\xb0\x8f\x96\x06\x07\x7e\xbe\x6c\x5b\x27\x43\xe7\x12\x0f\x77\xf4\x11\xcd\xb9\x37\x21\x2d\xa4\x03\x13\x45\x5e\x64\x93\x60\xf0\x40\x6d\x2c\x71\x02\x0d\x3e\xe6\xff\x3e\x99\x35\x04\xcd\x57\x74\x0b\xd3\x17\x5e\xd2\x20\xb5\xfd\x50\xa4\xf3\x39\x0a\xec\xf8\xc5\x7d\xa7\xb6\xff\xf7\xbf\xdc\xee\x27\xa3\x30\xb6\x24\x03\x36\xa5\xd0\x86\x93\xea\xa9\xe5\x52\x72\xf7\x3b\x3e\x69\xca\x95\x12\x2a\xcb\x2c\xcc\xed\xf7\x50\x2e\x7f\xad\x66\x70\x35\x49\x97\x5d\x70\x8f\x41\x00\x12\x9c\xaf\x6b\x18\xd7\x3d\x73\x24\x01\x9e\xc4\xd6\xf1\x2c\x73\x35\x99\x3e\x26\x95\x65\x9f\xe4\x4b\x56\x63\x9b\x12\xf5\xf7\x82\x13\xf3\xf5\x06\xfc\xe2\x44\xf9\xa1\x27\x88\x6b\x16\xe3\x87\x7e\x32\xb8\xdc\xd7\x14\x54\x87\xc5\x10\xe1\xb0\x7f\xae\x99\xbc\xfa\x46\x35\x65\x7f\xce\xb3\xef\x68\x13\x94\x58\x0d\x3d\x0a\xdc\xeb\x1f\x4d\x74\x0e\x4a\xc5\x4e\x8f\x75\xb7\x42\x09\x41\xdf\x1e\x85\x41\x32\xce\x7d\xf6\x0b\xb1\xe7\x17\xd8\x20\x7c\xd3\xa0\x27\x2c\xe3\x8c\x9d\x2e\x0a\x70\xe5\x6f\x8b\x32\x5c\x43\x8e\x28\xb5\xd6\xf9\x35\x8e\x83\xda\xd7\xdc\x7f\xd2\xf1\xa5\xda\xa1\x49\x39\x81\xe2\xb8\xd4\x3c\xdb\x4e\x0d\x4d\xb9\x67\x4f\xbb\x88\x93\x1e\x75\x14\x70\x37\xa2\x53\xa4\x77\xf4\x12\x8d\x6c\xb0\x49\x91\xf7\x8d\x48\xa4\x62\x3b\xb0\xaf\xc5\x37\xcd\x32\x82\x36\x0d\x6d\x06\x07\x04\xdb\x06\x4d\x00\x80\x94\xb0\x30\x0f\xea\xb9\xe7\x6b\x1e\xcc\xe2\xec\xbe\xf6\xd8\xe4\xa2\x6e\x89\xb9\xfa\x63\x95\x3b\xfc\xe3\x2a\xf1\x55\x94\x3d\x51\x2e\x03\x38\x47\xa2\x87\x82\x6d\x72\x11\xb9\x03\x38\x64\xe7\x80\xe5\xc4\x32\xdc\xdd\x55\xc2\xd3\x9f\x74\x54\xd6\x83\xa1\xd5\x42\x9f\xa9\xba\x87\x2e\x4f\x94\x86\xfb\x7b\x8a\xeb\x61\xba\xeb\xf3\x50\x9f\xc0\xbc\xe0\x1c\x78\x93\xd6\x31\x1c\xd9\xdd\x20\x77\x06\xf9\x05\x0b\x3a\x48\x4c\xe9\x0f\x88\x28\xec\xad\x99\x98\x0f\x08\x89\x0f\x3c\x94\xff\xcc\xc4\xcb\xad\x8f\xc6\x91\x09\x63\x21\xe6\x80\xd9\xfa\x52\x15\xd4\xbf\xc0\xda\xc1\xb1\xdd\xaa\x89\x3b\x3c\xdf\x1e\x85\x71\xfc\x82\x1a\xe3\x4b\x5a\x5d\xe5\x92\x0a\xf0\xfa\xa1\xcd\x6c\x84\x75\x29\x3d\xa9\xf4\xdd\x82\xe0\xde\x7a\x6a\xed\x7f\xb9\x34\x82\x66\xb9\xe5\x1b\x97\x4e\x6b\x31\xc5\xd3\xca\x8c\xc7\x49\x6e\xb3\x47\x55\xa6\x95\x69\x6d\xe4\xf8\x56\xd4\x53\x37\x10\x29\x01\xff\xff\x0f\x3a\xad\xdf\xfa\x06\xe3\x9a\xa0\x95\x01\xf7\x76\x7b\x57\xa1\x8b\x58\xb4\x14\x9f\x60\xbd\x37\x44\x8e\x80\x45\xa1\x3e\xb0\xd9\xf1\x1d\x2a\x75\x19\x07\x52\x69\x0a\x92\xb4\xcf\xa5\x55\x57\x78\xf3\x5c\x1d\x0f\x2a\x34\x96\xf5\x9d\xbd\xaf\x1d\x85\x83\x21\xd6\x33\xca\x41\x20\x8b\xe5\xeb\x26\xe2\x84\x91\x09\x86\x61\x1c\x66\xf9\x16\x3e\x17\xd5\x64\xba\xa1\x85\xbf\xf3\x22\x8e\x6d\xbf\x85\x90\x4f\x98\xdc\x29\x64\x54\x54\xee\x12\x14\xf5\x8b\x00\x2c\x02\x3e\x51\xff\x9d\x89\x4f\xff\x7c\x47\x05\x35\x36\x5b\x86\xd7\x8c\x65\x71\x9e\x46\x5a\xfc\xaf\x96\x13\x58\x38\xa2\x58\xdd\xea\xdd\x88\xa5\x4d\x18\xa7\x36\x08\x33\x64\x9c\x98\x45\x5c\x11\xef\x1f\xd5\x34\x1e\x49\x2c\x7d\x32\xd2\x2f\xd0\x72\xbd\xba\x27\x9c\x56\x4c\x18\xe7\x36\x8a\x2c\x94\xf4\x94\xa0\x89\x7b\x0e\x74\x11\x31\x7d\x9c\x82\xa4\xe4\x45\x1a\xdb\xfe\xe3\xa5\xdb\x82\xb8\x6f\x13\x96\x01\x9f\xba\xdd\x51\x34\x70\x13\xef\xe2\x43\xcc\x01\x03\x74\x8d\x0a\x8f\x82\xf0\x2c\x47\x04\x2e\xcf\x35\x2c\x37\x81\x81\xd2\x2b\x60\xff\x5d\x86\x25\xaa\x70\x6d\xe1\x37\x00\x8c\xe0\xcf\x77\x3c\xe9\xd5\xdf\xbf\xa1\xaa\xe2\xf6\xd0\x38\x4a\xfa\x6c\x86\x45\x34\xc7\x67\x78\x1b\x8b\x7f\x87\x6c\x9a\x1c\x9a\xf2\xd1\x2d\x62\x40\xe1\x2b\xa5\x07\x85\x2d\xbc\xd6\x94\x47\xce\x8b\xb4\x57\x86\x84\xba\x11\x1d\xc6\x50\x2c\x40\x9d\x7a\x67\xa1\x3d\x4c\x72\x1b\x65\x53\x3e\xf1\xf2\x09\x0c\x9d\xc8\x23\xa8\x8a\xc7\xb5\x8e\x6e\xe1\x48\x97\xb9\xe1\xd9\x11\x69\x6b\x86\xed\xa6\x66\xea\xd8\x2c\xf3\x78\x48\xba\x43\x29\xa7\x9c\x6a\xaa\xe5\x0e\x93\x22\x73\xb5\x5c\x91\xfb\xf6\x90\x0d\x8e\xa1\xe0\x4e\x5c\x2b\xdd\x6a\x81\xc8\x78\x46\x03\x7a\x33\x4c\x22\xf4\x91\x1c\x89\x8f\xab\x43\x7a\x7a\xbb\xa2\x8c\x36\x06\xd3\x0a\xac\xcf\xcd\x01\x28\x64\x3e\x42\x51\x05\x12\x32\x53\xeb\x3e\xcf\x36\x55\x2b\x1f\x3d\xdf\x1e\xd9\x43\x61\x60\x18\x5d\x2d\x34\x46\xbe\xe3\x45\x37\x8f\x8d\xc2\xe0\x91\xf2\xc9\x70\x1c\x6d\x4e\x54\xc8\x3b\xbd\xae\xba\xca\x76\x90\x80\xa2\x74\x86\xe0\xd4\x14\x8d\x8f\x96\x10\x91\x3d\xd5\xee\x3a\x27\xf6\x33\xe6\x1d\x12\xe9\x4d\x8f\xaa\x29\x96\x92\xac\xe5\x6b\xc4\xa8\xd7\xf3\x75\xc7\xab\xe3\xf5\x43\x13\xf1\xc9\xc6\xca\x22\xaa\xdd\xa0\x4e\xe0\x3b\x3f\xdf\xb6\xaf\x17\x26\x9a\xf6\x8d\x43\x7f\x0f\xab\xc9\x75\xed\xbb\x4f\xdf\x50\xf5\xda\xcb\xea\x38\x0d\x92\x28\xb2\x03\x90\xf7\x48\x30\x34\x75\x70\xd1\x33\xa8\xf9\xa8\x84\x4f\x77\x09\x80\x7c\x80\x73\x19\xeb\x42\x38\x75\x3c\x96\x39\x48\x8a\x38\x27\xd8\xa8\xcf\x74\x9c\xec\xf8\x0c\xc8\x49\x0d\x49\xc8\x42\x13\xd3\x63\x70\x3b\xfd\xa4\xb5\x67\x0f\xfb\x50\xdb\x01\x38\x93\xec\x24\x39\xf1\x2e\x03\xb9\x38\xeb\xfe\x87\xea\xd3\x70\xf1\x6e\xd5\xd6\xf7\xde\xbd\xed\x81\x89\x22\xcb\x0c\xc9\x8c\x5e\xeb\x78\x8e\x8e\xf3\x4d\x5b\x62\xa9\x48\xf3\xa1\x45\x38\x87\x68\xf5\x7d\xa5\x88\xc5\x4d\xf0\x48\xf3\xcd\x94\x41\xf5\xe6\x4d\x28\x21\xa0\x1e\xf6\xe8\xba\x4f\xb4\x05\x51\x92\x0f\x43\xa7\x9b\x21\xdc\x9c\x1e\xac\xb0\xd1\x74\xca\x41\x9c\xdc\xc6\x01\xc4\x4a\x9b\xfa\xa6\x9a\xf5\xd9\x8a\x41\x14\x2e\xeb\x6a\xf9\x0d\x55\x2d\xbf\xd1\x24\xe5\x9e\xdb\x2c\x0f\x97\x42\xde\xc3\x2a\xbe\x9a\x93\x44\xae\x6e\x30\x3b\xd5\x48\xa5\x19\x0c\xcb\x21\x8e\x07\x52\x34\x93\xdc\x3e\xbd\xb2\x24\xfd\xb7\xee\xde\xfd\x2f\xb7\xb3\x3c\xb5\x19\xb4\xf0\x58\x21\x87\x9e\x56\xd4\x72\x9e\x54\xad\xee\x83\x81\xcd\x72\x0a\x01\x91\x94\xf8\x6c\xc2\xad\x21\x2f\xf9\xde\x85\x06\xae\xca\x8c\xa4\x7d\x34\x67\x88\x22\x67\x71\x2d\xa3\x61\x3a\xb2\xe9\x0e\xef\x49\xdf\xaa\xb4\x21\xb5\x5c\x0f\xd7\xf6\x75\x9a\x78\x0c\xd2\xd7\xba\x34\xe5\x38\xa6\xcf\xe1\xe8\x42\xfe\xe3\xa7\x13\x9d\xc9\x8c\xf2\x96\x4f\x57\x5f\xd0\x8c\x57\x17\x14\x4b\xe5\x52\x9a\xc4\x39\x5b\x01\x4d\x81\x29\x41\x74\xa5\xf4\x1b\x2c\xef\x54\xcc\xb3\x97\x01\xfd\x44\x4c\xff\x97\x64\x64\xf8\x1a\x66\x15\x16\xef\x98\x02\x94\x7f\x8a\x33\x41\x38\xbe\x29\xe9\x2e\xcd\x9f\x7a\x1f\x8f\x7a\x61\xec\x98\xfb\xe0\xae\x2f\x68\xa1\xa3\x05\xd5\x2e\x36\x8e\x4c\x9c\xef\x2e\x87\x17\x83\xc0\x42\xc7\xa8\x08\x5d\xd5\x9c\x35\xc7\x75\x16\x88\x85\x5e\x60\x45\x60\xee\x09\xf5\xbb\xfc\x4c\x57\xf1\x69\x01\xd5\x2c\xf8\x80\xf2\x0d\x99\xd6\x83\xf6\xbe\x50\x7c\x3c\xe6\x46\x73\x39\xe4\xbe\x26\xbc\xfb\x5d\x85\x54\x43\x12\x0c\x27\xe8\xa7\xb5\x0d\x41\xd2\x49\xb6\x74\x31\xed\x9a\x42\x14\xbd\xab\x39\xbd\xdf\x55\x4d\x45\xd9\xaa\x1d\xe7\x00\x3c\xe0\xf4\xc2\x8a\xe4\x6b\x57\xe2\xe1\xe6\xf8\x96\xe7\x96\xb9\xa3\x2b\xae\x77\x5c\xba\x79\x2d\x29\xe2\xc1\x8e\xf2\xcf\x44\xe2\xdc\x9f\xac\x9f\x92\x67\x2f\x3c\xf0\x7e\x40\x7e\x5e\x8d\x4f\xb0\x05\xa5\x6b\x52\x49\x22\xd8\x20\xec\xdb\x7e\xb4\x86\x91\xe1\xaa\x5f\xa5\x28\xcf\xb5\x43\xa4\x88\x5b\xdd\x87\xb5\x8d\x65\xb9\x05\xc5\x2f\x9e\x91\x14\x3f\xa5\x5d\x9d\x36\x18\x16\x2d\x3b\x53\x08\x6e\x8f\x37\xed\xce\xd8\x1e\xca\x77\xf8\xf4\x1a\x5e\xd6\x21\x12\x5c\x45\xfb\xc1\xc4\x71\xed\xfc\xfe\xd3\xd0\x9f\x11\xfd\x5c\xe5\xf6\x1f\x56\xc2\xf5\x36\x0e\x48\xd6\xcb\x2d\x5e\x8c\xda\x19\x7e\x5b\xbe\x73\x99\xa9\x9e\x4d\x97\x6d\x64\x45\xd1\x43\x72\x37\xde\x16\x9d\xd1\x89\xfa\x7b\x4a\x48\x76\xc9\x64\x3d\x3a\xe6\xa4\x05\xd1\xeb\x5b\xdc\xd4\xb5\xc6\x62\x10\x91\xa5\x73\x65\x65\xb8\xb7\x7c\x5d\x43\xab\x50\x11\x34\x62\x0f\x1e\x16\xe6\x5f\xab\x3e\x96\x8f\x61\x9f\x61\xd5\xbf\xa8\xd4\xed\xd2\xe5\x35\x2a\x5a\x09\xa6\x96\x96\x26\x00\x43\x48\x6a\x08\xc0\xb6\xfc\x79\xfe\x77\xd4\xd6\xe0\xe4\xfc\x41\x47\xa9\x9a\xfd\x81\x8a\xa4\x56\x87\xc8\x33\xd3\x40\x70\x6b\x1c\xcc\x08\x7c\xad\xe3\xbc\xf0\xa4\x6b\x8e\x76\x2f\xff\x97\x36\x2a\x9c\x04\xcc\x10\x9e\x23\x7c\xbf\xad\x89\xab\xb7\x77\x2b\x24\x66\xde\x9d\x5a\x4a\xd2\xd1\x8c\x02\x1c\x72\x6b\x92\x93\xe9\x50\x68\x06\x1f\x8f\x7e\xa8\x65\x8d\x4e\xd6\x4e\xaf\x57\x5f\x6d\x8f\xcc\xa1\x70\x04\x86\xd2\x72\x4d\x0b\x6a\x4e\x79\xc3\x3a\xe6\x8f\xa0\x4b\x5c\xfe\x25\x53\xc3\xc2\x3f\x12\x9e\xd8\x3a\xbb\xeb\x42\xbb\x18\x27\x31\x29\x54\x60\x39\xc3\x43\x75\xfa\xc2\x2f\xcd\xf3\x3e\xfa\x52\x71\x6f\x07\x91\x35\xb1\x4d\xc1\xbc\x87\xf5\x08\xb2\x4f\xd1\x1e\xa1\xb7\x42\x94\xff\x59\x1d\x05\xbf\xa7\x9d\xd9\x08\xa8\x67\x1a\x66\xfc\xc0\x5d\x4d\x43\x8c\x21\xc7\xf2\xbe\x50\xeb\x31\x79\x69\xbe\xbd\x64\xd2\x96\xe2\x2f\x41\xf1\x91\xaf\xbb\x8f\xab\xcc\xcc\x68\xdc\xd2\xd4\xcb\x13\x8f\xdc\xf9\x79\x6d\x38\xf6\xec\x69\xdb\x15\x29\xd0\xbb\x01\x2c\x7f\xe5\x61\x03\x48\x79\xb3\x28\x59\xa5\x4f\x48\x6e\xcc\x67\x73\xce\x57\xaa\x35\x41\x64\x94\x10\xe3\x05\x2d\xc4\x78\xc1\x2b\xc1\xc7\x79\x18\x84\x63\x91\x78\x95\x96\x31\x45\xb9\x7e\xa7\x2a\x46\xea\xa7\xc5\xf4\x57\x4c\x1c\xa0\xf0\xee\x0f\x53\xdf\x4e\xf0\xa9\x6e\x6f\x2a\xd2\x71\x92\x31\xab\xa7\x34\xd3\xb7\x1c\x23\xca\x29\x57\x81\xeb\x17\xc1\x32\x39\x5f\xf0\x6c\xa6\xba\x2d\x25\xf5\x5d\xba\xc3\xb2\xa5\x9e\x50\x5a\x6c\x26\xcb\xb3\x96\xf7\x95\x19\xfd\xc6\x37\xae\x33\xae\x17\xf6\xb8\xd5\x1d\xd1\xc9\x29\x7a\x56\xbe\x56\x78\x1d\xe6\xdf\xe7\x82\x95\x66\x6e\xe7\xeb\xda\xb4\xbc\x34\xdf\x0e\x8a\x51\x18\x63\xea\x61\xfc\xbf\xa5\x0e\x82\x6f\x29\xde\xae\x20\x2d\xc2\x9c\xe5\x62\xe1\xe6\x7f\xd8\xd1\x4d\xd4\x34\x2a\x82\x73\x79\x42\x75\xab\xac\x48\x62\x04\x4e\xef\x9f\x76\xbc\x03\xfc\xa7\xaa\x3f\x67\x90\x86\x7d\xf6\x3c\x61\x4f\xb6\xa1\x86\xc9\x37\x0d\xb0\xc3\x85\xb6\x89\x92\xd8\x22\x13\xeb\xe8\x38\x16\x67\x39\x2b\xfb\xb5\xae\xf3\x85\x5f\x78\x7a\x5d\x71\xb9\x5b\xdb\xdf\xa1\x68\x33\xb9\xad\x84\x6f\x60\x6b\xf1\xfa\xf7\xe8\x20\xe0\xeb\x6a\xe5\x8f\x1e\x4d\x6a\x82\xfe\xbb\x97\x05\x2e\x85\xdc\xe9\xa9\x89\x6a\x94\x3c\xae\xb3\x05\xff\x97\xe6\xee\x47\xae\x88\x3f\xe2\x18\x58\x86\x45\x3f\x2b\x4d\x8e\x93\x84\xb9\xd5\x51\x34\x81\x47\x54\x6f\x94\x46\x07\xf7\x92\xb5\x7e\x4b\xa9\xbb\xbd\x8b\xe7\x16\x31\xc1\x87\x56\x67\xd7\x46\xb1\xcd\x55\x01\x98\xc5\x3a\xf9\x46\x75\x99\x98\x7e\x3f\x83\x12\x08\x1e\x18\xe4\xd9\xf0\xf0\xee\xd1\xda\x41\x31\xe2\x86\x52\x20\x3c\x3f\xf1\x64\xa0\xff\x96\xfa\x63\x90\xa7\xbc\x8f\x37\x42\xdb\xc6\xdb\x1d\x4f\x7f\xf3\xb6\x57\xec\xb4\x79\xc1\x61\x17\xd2\x41\x1b\x44\x18\xc3\xd7\x13\xcd\x73\x04\x19\x1d\x76\xbf\x35\x85\x2b\x5f\xd7\x32\x41\xf2\xf2\x61\xce\x20\x6c\xbc\xd1\x39\x45\x6d\xf5\x8e\xde\x92\x57\x6a\xdf\x30\xb7\xbf\x6d\x47\x24\xa1\x9f\x4e\x55\x58\x88\x7d\x81\xf9\x4b\x25\xf0\x51\x57\xf3\x9a\xdb\xdf\x36\x4b\x4b\x36\xc8\xc9\x15\xc3\x69\x77\x97\xf0\x96\x62\xd4\xcb\x6f\x92\x06\xd7\x96\xd3\x05\xfb\x9e\x8b\x7b\x06\x61\x1c\x87\x30\x0f\xac\x6f\x35\x51\xa7\x7b\x63\x93\x4b\x90\x44\x49\x6a\xfa\x09\x6f\x37\xa1\xc5\xa7\x8f\xf1\x4d\xa5\x69\x25\x2f\x52\x41\x4b\x39\x15\x7f\x4d\x6f\xe8\x53\x12\xe8\xa0\xca\xa6\x4b\x67\x4a\x0e\x86\x72\xea\xe5\x5c\x68\x39\x4d\x3f\x4e\xf6\xf2\x4d\x13\xd5\x35\xf3\xff\x55\x7f\xd6\xd3\x7b\xe9\x9f\xcd\x4d\x16\x0c\x6d\xda\x52\x25\x73\x16\xc7\xe0\x9b\x4a\x1d\xd9\x8e\x4d\x8a\x4e\x2f\xff\x98\xe0\xa1\x94\xed\xe4\xed\xff\x8a\x19\x14\x16\x0d\x03\x9b\x97\x21\x28\x79\xb9\xc6\xcb\x21\xeb\x28\x18\x9a\x34\xe2\xb9\x10\xe4\x26\xbd\xa5\x74\x73\x6b\x1f\xcf\x44\xa3\x96\x3f\x73\xee\xa9\xc0\xee\x5e\xa5\x04\x14\x99\xc1\x4e\x5a\xd1\x92\x17\x2f\xb7\x9b\x10\x23\x78\x17\xe9\xbf\xeb\x68\x6a\x15\x9c\x83\x9a\x4a\x01\x07\x2d\x73\x44\xc1\x40\x9e\x55\x02\x3a\x66\x90\xec\x20\x33\x88\x21\xf8\x49\xa7\x42\x62\xd3\x72\xc2\xeb\x87\x69\x3a\x11\x3b\x7f\x41\x55\x58\xbe\xc6\xd4\xe0\x19\xeb\xc0\x9d\x72\x99\xa7\xc1\xd0\x30\xe9\x0d\x2c\xc1\x35\xc5\x45\x72\x4d\x9d\x63\xa3\x30\xcb\xd3\x22\xcb\x2b\x74\x73\x1d\xbf\x27\x2f\x2a\x77\x72\x68\x4d\x1f\x7a\xbe\x62\x75\xaa\x14\x10\xf3\x4e\xe6\x71\xbd\xe3\x85\x49\x77\xae\x6b\x31\xf2\x75\x1a\x52\x19\x39\xef\x77\x5f\xa3\xe5\x0a\x8c\xd3\xf6\xee\x56\x82\x80\xbd\x7b\xdb\x66\x30\x48\x6d\x96\x85\x2b\x36\xa6\xb8\xc0\x9d\x6b\x47\x55\x5f\xfe\xd1\xa6\x6e\xf1\xa1\x59\xcd\x87\x49\x1a\x43\x6f\x0e\xee\xe0\x8c\x12\xe6\x7b\x53\xeb\xcd\x4d\xad\x3f\xbb\x95\x17\x75\xae\xfd\xd2\xfc\x63\xf4\x27\x22\xdf\xe1\x01\x66\x3f\x46\x43\x88\xf0\x7f\x50\x7e\x43\x88\x8d\xbc\x18\xd6\x75\x25\xf9\xf8\x3f\x75\x94\x1a\x2f\xd8\x5b\x44\x61\xc6\x27\x5b\xbf\x44\xbe\x8c\xbf\x69\xa2\xe2\x7a\x20\x48\x70\xc8\xdd\x9f\xf8\x94\x68\x66\x93\x42\xe4\xd3\x14\x44\xc7\x23\x79\x6a\x01\xd3\x5c\x3b\x35\x71\x7f\xca\xb3\xb6\x1f\xc1\xe9\x85\x98\xe2\x09\x85\xd3\x7a\x74\xdd\xe9\x0e\xc6\x83\x28\xcc\x86\x23\x13\x2b\x2e\x48\x36\x50\x42\x99\xd4\x98\x66\xa3\x0a\x23\x0b\x78\x21\x5c\x05\x10\x0c\x87\x2d\xaa\x23\xe2\x21\x88\x97\x17\xd9\x01\x0a\x00\x18\x1f\xa8\x18\x32\xa5\x0b\x1e\x15\x28\xab\x1d\xdd\x47\x3d\x5e\x02\xe9\x3f\xf8\x82\xc7\x35\x1b\xf5\xf1\x4e\xbd\x2c\xbf\xaf\x1d\x24\x71\x3f\x2c\xcd\x93\x54\xcb\x91\xaf\xbc\x87\x0d\xce\x37\x8e\xa4\x23\xb5\x11\xdb\x5c\x0c\x34\x16\xdd\xfd\x8e\x2a\xed\x82\x4c\x53\xd4\x77\xd4\x79\x76\x74\xf2\x8c\x12\x90\x2e\x37\xdd\xc8\xc6\xf9\xb4\x92\xec\xde\x54\x9a\xd6\xdc\x60\xef\x52\x17\x07\x66\x5d\x4a\xdd\xa7\x52\x06\x26\xcd\x81\x23\xc3\x3c\xc1\xe4\xf3\xb5\x5a\x1b\x41\x62\x82\x61\x4b\x89\x2b\x70\xd9\x88\x6f\x9c\xef\x9b\x99\x7e\x39\x45\x7f\x67\x9f\x6b\x03\x2f\x47\x1c\xfe\xec\xdd\x4e\x05\x88\xf4\x8c\x36\x0a\x51\x3e\xec\xaf\xc5\x50\x05\x12\x8a\xa7\x72\xf1\x0b\xf7\x53\x1d\x02\x3e\xdf\x8e\x6d\x98\x97\xa7\x48\xb9\x31\x1c\x05\xc5\xa2\x8b\x2d\xd4\x79\x93\xda\xd8\x14\x51\x4e\xc9\x7b\x2e\xac\x63\x70\x64\x65\x63\x2e\xc4\x9d\x50\x7e\x6c\xab\xeb\x64\x00\xac\x89\x5d\xc1\x46\xd0\xb6\x2d\xc7\x98\xb1\x9d\x36\x15\xb8\x99\x8e\x3a\x0c\x7d\x90\xc4\x81\x1d\x4b\xd9\x54\x36\x95\x07\x03\x9d\x57\xb4\x7c\xe3\xa2\x57\x6e\x0c\x6a\x1e\xfe\xa6\x87\x8f\x56\x44\xa9\x1a\x75\xed\xfc\xb1\x2b\xd1\x99\x97\x64\xf8\xe5\x46\x86\xd0\xd5\x61\x38\xca\xc2\x80\x55\xed\xa4\x0b\xc0\x47\x43\x77\x95\x75\xcf\x6d\x19\x7c\x03\x26\x56\x1e\xa6\xe5\xe0\x6c\x5e\x56\x0e\x66\xcf\x9a\xbc\x55\xfa\x78\x8a\x48\xd1\xdd\x3c\x14\x5e\x18\x24\x71\x2e\xe2\x51\xd2\xe3\xe9\xed\xc1\x95\x26\x58\x92\x57\x6d\x58\xa3\x1d\x8a\xd3\xe0\x32\xcd\x39\x5f\xab\x46\xec\xe5\x30\x0f\x86\x36\x7e\xe8\x99\xfd\xa4\x6a\xf4\xcc\xb2\x34\x7b\x01\x7e\xa8\x48\x86\xfb\x5a\xde\x39\xf5\xae\x59\x38\x88\x91\x0d\x41\x7d\xf6\x3a\xd5\x5e\x71\xa2\x5f\x56\x22\x41\x7f\xff\xac\x3a\x97\xde\xd2\xc0\xf2\xb3\x35\x97\x7e\x6e\xbf\x26\x09\xe3\x6c\x18\x17\x8d\xe9\x31\xe0\x59\xde\xd5\x28\x9f\xd3\xce\x9e\x2c\xa5\xb6\x6f\xd3\x10\x1d\xc7\x8e\x74\x90\x76\xb1\x10\x10\x36\x61\x96\x4d\xba\xcc\x40\xf6\x0a\x1b\x27\xdf\x28\x6f\x32\x1d\x5a\x22\xc5\xdf\xa9\x28\x2a\x50\x77\x67\x75\x1c\x6c\x24\xac\x1b\x1e\x02\xbe\xe9\xf8\x1e\x78\xb4\x89\x8b\x9e\x8e\x92\x5e\x3e\xad\xd0\x60\x04\x3b\x33\x8c\xb4\x01\x4c\xe6\xb6\x52\xfa\xb9\x5d\x5b\xfd\x7b\xf6\xb4\x97\xc2\xd4\xca\x51\xc2\xb9\xed\x6a\xa2\xdb\xd7\x22\xfb\x26\x9d\xd2\x45\x4e\x7a\x54\x5d\xe4\x41\x72\xe8\x91\x6e\xc3\x04\xe5\xa9\x89\xb3\x20\x0d\xdd\x56\xc6\xd1\x7d\x4e\x1d\xe3\xe7\x2a\x39\x91\x70\x65\xad\x55\xc5\x80\xd1\x53\x89\x6e\xe0\xd6\xb0\x62\x61\x71\x81\x58\x56\x39\x17\x80\xde\xf5\x37\x3b\x9e\xf2\xe9\xcd\x26\x88\x56\x96\x9b\x81\xe0\x13\x05\x1f\xec\x2d\xd2\xf1\x87\x6a\x27\x8c\x6d\xce\x9a\xf5\x08\xde\x4e\x69\xce\xb8\x53\xb5\xad\xf7\xea\xab\x20\x96\xec\xf1\xec\xa8\x9d\xe1\xf1\xaf\xe7\x9a\x78\x2e\x41\x55\x32\xe5\x3b\xb2\xaf\xa9\x3d\x8e\x55\x84\x85\xfe\x51\xcd\xb7\xd8\xbb\x77\x5f\x7b\x1c\xf0\xcb\x31\xe7\xa3\x2a\xe0\xfd\xd1\x64\x2b\x6c\x93\xb6\x51\x9a\xda\x6c\x9c\xc4\x7d\xc1\x6b\x69\x26\x39\x81\x1f\x7a\xa1\xad\x30\xce\xc3\x51\xd8\x67\x0a\xe1\xd2\xef\x72\x1c\x7a\xe5\x0a\xe5\x9b\x26\x3a\xda\x71\x92\xe5\x36\x25\xcf\x82\x23\x69\x9a\x2b\xa9\x54\x96\x3f\x87\x34\xcb\xe9\xc9\x2f\x6f\xa5\xdb\x5c\xd8\x27\x13\xb1\x8b\x72\x17\xc8\x34\xb3\xc0\x00\xab\xb2\x69\x30\xe0\x61\xd5\x19\x79\x83\x4f\x2a\x9c\x07\x7f\xae\x49\x9a\x4f\xea\x6e\xed\x0a\xf3\xef\x2d\x72\x1d\xf9\x67\x34\xfd\xea\xaa\x95\x6e\x66\xa4\x1b\xa0\x29\xc6\xdd\x62\x6a\x69\xdf\x76\x25\x95\x60\x68\x97\x87\xc9\xca\x94\x2f\xd1\x9e\x51\xc2\xb5\x87\x75\xc2\xfe\x9a\x0e\x33\xed\x72\x92\x64\x66\x67\x19\x27\x73\x0f\x42\xc7\xb3\xdc\x9c\x50\x8a\xdc\xa0\x85\x44\xe9\xe5\x27\x1d\x65\x69\x6f\x6b\xdc\xf7\x55\xc5\x9d\x72\x46\x61\x89\xb2\x31\x18\xca\x1e\xf3\xbe\xe0\x05\xd5\xe6\xf7\x25\x2a\xd8\x58\x7e\xa7\x3b\xd5\x34\x52\x39\x5e\x8e\xad\xbd\xfc\x29\x80\xe3\x4e\xd0\x4f\xe1\x5c\x67\xad\x1d\x7c\xe4\x3a\xce\x39\x18\x8d\xbf\x40\x35\x90\x89\x64\xe8\xdd\xb8\x85\x86\x6a\x65\x42\x30\xb3\x85\x7a\xf5\xd7\xcb\x7d\xaf\x19\x53\x3e\xd2\x3a\x2f\x0a\xa7\xfa\x39\x45\x71\x0c\x19\xd6\x04\x4b\x45\xaf\x8c\xa2\xcb\xf0\xc1\xb1\xf3\xba\x98\xa4\x2e\x17\xb1\x77\x6f\x7b\x14\x4a\x02\x4e\x78\xb9\xfd\x34\x23\xf3\x01\x23\x7d\x56\x41\x4e\xec\x21\xe3\xb8\x56\xfc\xf3\xbd\xd7\xf1\xbd\xdb\xef\x35\x41\xe4\xed\xa1\x71\x92\xa2\x0c\x2b\xa5\xe9\x96\x6f\x41\xab\x19\xf3\x97\xe6\xdb\xd9\x30\x49\x65\x5b\x89\x7f\x44\x3b\x11\x2b\xea\x56\x47\x57\xad\x94\xd2\x7e\x92\xe5\xd9\x13\x34\x0a\x70\x03\x2e\x50\x42\x06\x8e\x2f\x18\x7b\x91\x13\x3c\xcb\x12\xa3\x48\xc6\x23\x55\xc3\xc8\x3e\xcc\x3f\xe6\x69\x5b\xb7\xb5\x67\x8f\x07\x3d\x94\xab\x84\x39\x37\x35\xfd\xfd\xfb\xaa\xf3\x64\x3b\xe0\x94\x38\x9b\x7f\x41\x76\x8d\x01\x0c\x13\x45\xe4\xba\xad\xab\xca\x1b\xd3\xd4\xb4\x84\x1f\xd9\xb6\xde\x40\x23\x32\x2e\xfd\x17\xa5\xec\x71\x56\x29\x7b\x9c\x9d\x3c\xea\xf1\x2e\xd9\x13\x6a\x05\x9d\x40\x5d\xd9\xf1\x2b\x28\x39\x44\xca\xe3\xd5\x55\xa4\x91\x1e\xc7\xe3\x9e\xe8\xb4\x9e\x7b\xce\x33\x53\x78\x7a\x7f\xd5\xe2\x35\xb5\xee\x69\xde\xce\x74\x94\x8e\xdf\x87\xf0\x04\x10\x1c\x5f\x01\x72\x44\x7c\x7d\x1a\x5d\xc7\x66\xf0\x92\x27\xa6\x69\xea\x71\x5a\x32\x51\x66\x5b\xaa\x59\x15\x6e\x10\x5f\xd7\xb8\xeb\x9f\xa7\xa4\x42\x6b\xab\x0d\xe1\xeb\xda\x26\x78\xf5\x55\x22\xe7\xa3\xbf\xe7\x22\x1f\x39\x71\x52\xf0\x6b\x38\x67\xf3\x61\x18\x8b\xbb\xc4\x82\x98\x1d\xe5\x3d\x9c\x75\xee\xfe\xc8\xa4\x69\x98\xe4\x79\x4b\x65\xf4\x36\x2b\xcd\xa5\xbe\x9a\x30\x88\x4c\xcc\x3d\xaf\x4d\x72\x90\x4e\xa3\x32\xe9\x85\x0c\xb5\x12\x95\x07\x2d\xf9\xe0\xfc\xc0\x22\x5e\x4a\x8a\xb8\x2f\x31\xa8\x03\x3f\x39\x94\xfe\x45\x55\x1b\x88\x42\x90\x2f\x1c\xf0\x64\x6c\xbe\xe4\x45\x6d\x32\x2e\xca\xcc\x6d\x9c\x81\xf8\x5d\x08\x10\x7c\xda\xe4\xe2\x44\xa1\x93\xff\xcb\x5a\x4e\xf0\xa5\xf9\x76\xdf\x9a\xc8\x01\xcf\xb1\x96\xae\x2a\xa2\xed\xab\xb5\x12\xd8\xc1\x85\x76\xb2\x1a\x4f\xab\xbe\x7a\x0e\x63\x85\x18\xb1\x7c\x66\x78\xd2\x1f\x60\x55\x61\x6b\x3e\xe8\x6c\xcd\xf7\x88\xb3\x33\x32\xb9\x19\x24\x69\xdf\xb4\xbc\x4f\xcc\x95\x3c\xbe\x71\xfd\x87\x7d\x6a\x12\xe4\x9a\x09\x2c\xdb\x8d\x89\x72\xf7\xb6\x77\xd5\x3c\x9c\x53\x54\x31\xa9\x1d\x27\x19\xe5\x00\xa6\xbc\xc6\xff\xd4\xba\x27\x97\xfb\x4b\xc5\x1a\x33\xdd\x6d\x58\x62\xc9\xd2\x92\x4d\xf9\x97\x51\xc9\xe6\x42\x2b\x73\xf7\xd2\xda\x90\xcd\xff\x8c\xd2\x34\x88\xa9\xaa\x16\xa1\xca\x8d\x52\x03\x30\xda\x7c\xad\x8a\x1d\x20\xc1\x9a\xdb\x2f\x27\x1b\xce\x2c\x77\xcc\x2d\xce\xba\x64\x51\xf9\xb0\x92\x82\xfa\x8a\xca\xda\xf6\x22\x3e\x3c\x70\x50\x8a\x96\x32\x2c\x2d\x13\xec\x4a\x91\xc5\x9f\x1f\x66\x4c\x70\x5b\xc4\x6d\xae\x18\xae\x33\x77\x17\x5d\x11\xa5\x97\x00\x02\xe6\x1a\x47\x37\x34\x3d\xf7\x36\x82\x09\x22\xab\x88\x22\x8c\x70\xa0\xb6\x16\x67\x37\x2f\x3b\x37\x65\x58\x64\xcb\x5e\xef\x51\x75\xa5\x89\x45\x39\xa2\x99\x67\xce\xa3\x6f\x50\xf2\xbc\xbf\x8a\xd5\xea\x78\xaa\xe6\x7d\x1f\xf6\x93\x95\xce\x95\xbe\x59\x23\x59\x48\x78\x31\x77\x55\x83\x35\xa7\xf4\xe5\xe1\x9e\xaa\xa6\x10\x96\x8a\x88\x36\x94\x24\x5f\xe9\x88\x73\xf5\x0f\x57\x95\x7b\xb7\x2e\x85\xdc\x3e\x30\xfb\xe2\x13\x9a\x3b\xf9\x1a\x76\xa0\xa8\x20\xf8\x5a\xf5\x0d\xb2\x69\x58\xc3\xff\x0b\x0e\x37\xd6\xdf\x56\xc5\xc8\x73\xf8\x69\x2c\xcb\xfb\x13\xa5\x51\x79\x5a\x33\x42\xb2\x9b\x09\x87\xf6\xbc\xe2\x76\xf9\x6c\xe2\xe1\x79\x4c\x15\x2e\x90\x0f\xf2\xa6\x59\x7c\x15\x03\x0f\x0b\x78\x5d\xf5\x9b\xae\x9a\x68\x99\xb8\x3a\xb0\x08\x90\x9c\xe3\xeb\x87\xc2\x60\x7a\x61\x9f\x7b\x39\xb0\x1b\x80\x76\xaf\x88\x49\xca\x4d\x43\xf5\x74\x75\x48\xc9\x8a\x79\xef\x4c\xd1\x27\xa4\x19\x6b\xeb\xc6\xfc\xe6\x5c\x3b\x0a\x97\x2d\x27\x1d\x91\x62\x03\x52\x16\x6f\x73\x53\x33\xa1\xa9\xee\xd3\x28\x31\xfd\x19\x8f\xc2\x07\x9b\x81\x23\x19\x52\xc7\x9f\x77\x0e\x99\x84\x41\xfe\xc8\xdb\x16\x6b\xd2\x91\x41\xfb\x8e\xff\x46\x2e\xc4\xf1\x8d\x53\x01\xef\x9b\x58\x81\x82\x3f\x9d\x54\x33\xce\x8e\x75\xe0\x7c\xad\x22\xf2\xea\xab\xa4\x15\xcd\x15\x7a\xc6\x2f\x60\x25\x4d\xad\x7b\xf4\xe9\x87\x98\x64\xd4\xfc\x66\x6a\x5d\x1c\x07\x17\x67\xdb\x52\x95\x44\x50\x72\x51\x11\xea\xd5\x0f\xfb\x32\xb0\x36\xe9\xc0\x72\x10\x82\xb4\xc1\x4f\x15\xe4\x06\x19\x7d\xe9\xe0\x7b\xd8\x92\x18\x9a\x38\x9c\x82\x67\x27\x22\x94\x1e\x80\xcb\xce\x3c\x23\x38\x74\x0d\x2a\x1c\x0c\x73\x9e\x59\xbc\x10\xea\x75\x0c\x84\xaf\x94\xc7\x9b\x6a\xd9\x41\x9a\x70\x0d\x41\x40\x9a\xf4\x43\x7c\xa3\x51\x25\x44\x76\x14\xe7\x5a\xc4\x87\xb1\x80\x42\x80\xfe\x6c\xe8\x93\xba\x61\x5e\x30\x25\x9c\x03\x3e\xff\xdd\x8f\x30\xdd\x7c\xd3\xd0\xe1\xf5\x22\xa1\x35\xd8\xbe\x8a\x0b\xa1\xdc\x09\xd5\xac\x65\x96\xdf\x48\xe0\xca\xa0\xd9\xe1\x16\xb6\x27\xdf\xa8\xe0\x22\x88\x4c\x38\x9a\xf2\xd2\x29\x9f\x56\xf8\x20\x55\xf6\xb7\x0e\x89\x27\xd1\x84\x64\xc5\xa6\x2d\x0f\x32\x86\xe6\x8c\x70\x83\x28\x6e\x78\xf3\xc2\x74\xe9\x6f\x6b\x1d\x0c\xec\xb4\xdb\x4a\x3f\x8f\xd7\x32\x26\x67\xa7\x53\xae\x37\xa3\x24\x48\xe8\xa5\x71\xe6\xb2\xe1\xe5\x1b\x4d\xf6\x55\x8c\x46\x36\xdd\x05\xdb\x89\x73\xff\x47\xca\x39\xfa\x40\x21\x82\xb8\x67\xa7\x52\x4f\x96\xb2\xba\x0f\x96\x18\x2a\x20\x25\x3b\xda\xbc\xf0\xe6\x41\xd7\x21\x61\x4a\x8d\x69\x63\xae\xfd\x7a\x61\xca\x30\x87\x67\x8b\x93\xce\x74\xfe\x4a\x02\xfa\x29\xa5\x1b\x3d\x0c\x83\xc8\x66\x33\x3e\x26\xba\xa4\x35\xbf\x90\xa8\xc4\xfa\x9d\x42\x7c\x01\x9f\xfb\xfb\x08\x6f\x25\xf2\x6c\xca\x61\xa4\x49\xcf\xa2\x3a\x22\xac\x55\xf4\xae\x8a\x31\x40\xce\xce\x7b\x0d\x33\xfc\x22\xa1\x39\x06\x33\x5e\x04\x65\x77\xb7\x34\xe6\xf0\xc7\xee\x57\xa8\x64\x5b\x4e\x3c\x0e\x10\x38\x84\x40\x33\xeb\x15\x7c\xed\x38\x7f\x8c\x4e\x0d\xac\xc4\x2b\x1d\x85\xf0\x02\x4c\x04\x75\xe4\x07\xb4\x8e\x60\xf9\xfe\x2d\x05\x77\x08\xe7\x4e\x20\x54\xe4\x4f\xe3\x5c\xc4\x7b\x9d\xa0\x85\x2b\x54\xf9\x7a\xe1\x52\x48\xc4\x5f\x45\xa6\x1c\x27\xf6\x06\x2a\x72\xfc\xbd\xae\xe5\xbe\x67\x32\xbb\xcb\xff\xf8\x03\x1c\x98\xae\xe9\x62\x71\xd6\x9f\x7e\x9e\x6c\xe1\x8c\x6a\xb6\x07\x22\x16\x3d\x1d\xa8\x5d\x61\x71\x4f\x21\x7c\x54\xa7\xad\x3b\x7a\x9b\x10\x0c\x4b\x26\xcb\x7b\x26\x8a\xaa\x10\xeb\xbd\x7b\x5d\xf9\xb7\xa1\x9a\x9b\x8d\xc3\x38\x59\x5a\x9a\xf2\xe8\x84\xcd\x0a\x5d\x1d\x8d\x9d\xe0\x11\x9e\xd0\x04\x98\x31\x57\x58\xd4\x81\xb9\xcf\x1d\x98\x5f\xd5\x02\xfc\xd2\xf9\x9b\x29\x52\x15\x44\xad\x52\xbf\xf6\x81\x45\x14\x82\x48\x5d\x09\xe7\x4f\x54\x0b\x4b\x0d\x9b\xf9\xf5\x83\x6d\xc2\x72\xd2\x73\xc2\x1e\x9d\xef\x28\x27\x43\xeb\x68\x2f\x2f\x27\xad\x96\x62\xab\xd3\xd8\x9f\x86\x46\xa1\xf6\x38\x0d\x47\x42\xd1\xad\x69\xfd\xf8\xba\xb6\xf6\xf7\xee\x5d\x6c\x9b\x55\x93\x5a\x55\x3d\x79\x5f\x55\x4f\xde\x57\x19\x29\x62\x67\x73\x11\x90\x43\x4d\x3a\x77\xe0\x3d\xd7\x41\x96\x2c\x2d\x11\x81\x19\xa7\x3c\x91\x32\x60\x0f\x8d\x6f\x74\xad\x76\x68\x52\xfb\x15\x9f\x0f\x69\xa1\x85\x14\xf6\xf1\xda\xc4\xeb\xde\x1c\xc5\x37\x08\x7f\x13\x0d\x99\xc8\x62\xd1\xfa\xd5\x02\x5c\xb2\x2f\x95\xe6\xd0\x19\x2d\x24\x78\xbb\x33\xb5\xef\xb7\xbf\xe9\x18\xbf\xca\x09\x43\xdd\xf7\x2a\xf6\x1b\xe6\xe2\x06\x49\x92\xf3\x92\xef\xa8\x96\x9f\xb3\x4d\x9a\x45\xcb\x76\x2d\xb6\x19\xa9\xd5\xc0\x3a\xcb\xc0\x28\x0f\xe7\x3d\xcd\x9b\x60\xd3\x81\xd0\xdd\xb1\xd6\x54\xc7\x13\x3a\xff\x8e\x3a\xc0\x46\xe1\xa1\xdc\xee\xd4\xda\xd4\xe5\x76\x87\x6f\x84\x73\x46\x52\x98\x4a\x7e\x60\x03\x7e\x18\x36\xa9\x6e\xab\x02\xb8\x0c\x03\x3c\xb5\xee\xa3\xa2\xd5\x34\xc9\x85\x20\x0f\xae\xf0\x9d\xea\xce\x52\xf5\xe3\x26\x68\x41\x38\x1a\xd9\x7e\x48\xda\xf7\xae\x15\x02\x0e\xa3\x50\x4b\x29\x4e\xec\x61\x92\x4f\x79\x65\xe7\x63\xaa\xd3\xf4\x7a\x47\x09\x5b\xf9\x7c\xad\xe9\x85\xb1\x85\x62\xb6\x80\x00\x5b\x4e\xa0\x99\x19\x79\x25\x49\x2e\x31\x58\xb9\x8b\xa1\xf2\xf0\xa2\x53\x9e\xf1\x7b\x03\x5a\xa5\x8e\x0c\xd7\xc7\x39\xd7\x9b\x1c\xee\xd2\x66\x72\xe6\xc4\xe5\x82\xca\x05\xc1\x37\x5a\xa7\x39\x4d\xfa\x05\xa1\x3c\x0f\x3a\x39\x16\x00\x20\x24\x2a\x95\x43\x7f\x3c\x4c\xf2\x04\x85\x12\x9d\xc9\xe3\xeb\x7a\x6d\xe5\xe5\x7d\xed\x2c\x4f\x82\x65\x5e\x5f\x4e\x65\xb7\x7c\x74\x11\xaa\xda\xfa\xe8\xcf\x23\xc5\xcf\x9e\xb0\xec\x3f\x0f\xff\xff\x42\x23\x05\x6f\x78\x06\xa3\x24\xcb\x57\x99\x32\x4d\xe8\xad\x7d\xbe\xe4\x81\x02\xb5\xa6\x36\xb3\x23\xd6\x9f\x97\x8a\x0d\x52\xaa\x7c\xad\x0c\x5a\x1c\x30\x70\x5b\x07\x89\x38\xa6\x4f\x4d\x14\xb1\xce\x5d\xc5\x9b\x18\x9b\x34\x35\xac\x01\xf9\x8a\xf4\xa3\xd2\xb3\x48\x6f\xea\x13\xba\x0e\x62\xe3\x7c\x97\xcf\xbc\x5f\xa3\x75\x8f\x01\xdd\x86\x8e\x1b\xc9\x29\x93\x35\x91\x64\x33\x3d\x94\xc8\x34\x53\x7f\xaf\xb4\x78\x94\x27\x86\x90\x24\xc2\x35\xe7\xff\x51\x24\xd7\x9e\x5e\xad\x6f\x97\x22\x1b\x20\x57\x8c\xd0\xf2\x82\xe2\xc9\xbb\xe0\xf2\x6b\x91\x35\x99\x5d\x35\x50\xaa\x10\xe4\xb3\x4a\xe5\x68\x35\xc6\x93\x5e\x7b\xa5\x70\xca\x78\x28\xea\x7f\x06\xa3\xc4\x37\x6a\x52\x7a\x29\x18\x4b\x5a\x0a\xe3\x7e\x5c\x1b\xa2\xaa\xf4\x50\x90\xbc\xa0\x78\xf1\x37\x61\x29\x5d\x0e\xc5\xb5\xfb\xee\x5e\x2f\x47\x43\xf8\x8a\xe8\xab\x91\x6c\x64\xcc\x26\x36\xf0\xd3\xdd\xd6\x37\xe7\x38\x96\xdc\xce\x0c\x72\xc8\x61\xd6\x5b\x98\x29\x4b\x9a\xa4\xab\x26\xed\xab\x31\x83\xde\x34\x5f\xab\xd6\xc0\xd4\xbe\x5e\x84\x59\x98\x6b\xa0\x1b\x02\x33\x09\x43\x1d\x7a\xa3\x3c\x80\xa6\x14\xc1\xf5\x5d\x1d\xa7\x80\xca\x07\x41\xc8\x99\x9a\x93\x71\x70\x6e\x7f\xbb\x6f\x47\x26\xee\x63\x6b\x8a\x29\xf2\xf1\xe8\x69\x2d\x3b\x66\xd2\xbe\x8d\x31\x29\xac\x49\x39\x51\xad\xe5\x75\xc6\xe9\x32\xe4\x82\xfc\x3f\x1f\x90\xa8\x09\x9c\xed\xa8\x92\xd3\xd9\x1a\x4c\xa4\xdc\xfb\xaf\x25\x3d\xd7\x06\x82\xa5\x81\xd4\x11\x5f\xd7\x3e\x53\xbe\x88\x09\xa8\x9f\x12\x43\x81\x94\xd1\xa6\x62\x70\x7b\x13\xae\x1f\xfc\xad\x7b\xb5\x53\x8d\xda\x0f\xe2\x71\x64\x62\x87\x09\x72\x22\xac\x7b\xf7\x3a\x84\xdc\x13\x2a\x44\x1c\x5a\x77\xfe\x39\xe5\x77\x1f\x78\x6c\xd6\xfc\xf7\xfd\x2f\x97\x43\x48\xbe\x99\xcb\x63\xff\x98\xe6\x87\xaf\x6b\x1e\xd4\xf3\xed\x5f\xf9\xed\xdf\xfc\x8d\xc5\x96\x47\x40\x81\xd0\x49\xaa\x4d\x6a\x17\x44\x61\xbc\x4c\x88\x8f\x72\xe3\x03\x7d\x70\x1b\x6e\x04\xdf\xa8\xe2\x4b\x66\xe2\xfe\x1a\xfa\x53\xa4\x7a\x56\xda\x6c\x9c\x9f\x50\x34\xc6\xc9\x7c\x53\x29\xba\x5e\x51\x5d\x43\x41\x12\x93\xe3\x98\xa4\x68\xdb\x95\xba\x4b\xf9\x2d\x7c\x5d\xa3\x10\x29\x07\xb8\x67\x09\x49\x2b\xae\x15\x6f\x2f\x05\x5f\xf2\xad\x86\xc3\x24\xcd\x2c\x27\x57\x91\xdf\xe2\xb4\x2e\x37\x1e\x76\x54\x8a\xe0\x7b\xca\x81\x28\x9f\x8b\xd9\x7a\x59\xc0\x94\xd6\x80\x88\x99\x6e\xad\x93\x1f\x98\x7d\x85\x94\xbd\xcb\xd5\xc6\x6d\x67\x52\x5d\xd4\xd8\xb4\x7a\xfd\x22\x30\x59\x3e\xe5\x97\xe7\x45\x95\xbe\xe0\x30\x13\x01\xf1\xdd\x1a\xfe\x0c\x42\x00\xa3\x71\xe9\x75\x0f\xc3\x71\xcb\x63\x90\xf0\x25\xa2\x15\x27\x21\xcc\x1b\x36\x4d\x66\x7c\xa7\x32\x88\x50\x10\xb5\x00\xd9\xc3\xe6\xeb\x03\x5a\x4a\xc8\x3d\xdf\xa1\x65\x42\xbd\x5f\xfb\x9f\x6e\x34\x45\xec\xe3\x4e\x29\x9e\x90\xeb\xe5\x2b\x6f\x9e\xd1\x9a\xe2\x4d\xe9\x1f\x74\xa5\xb7\x7c\x21\xee\x43\x38\x92\x7c\xd3\x48\x28\xb7\xc2\x24\xbf\x6e\x26\x50\xb6\xe6\x6b\x55\xdf\x1e\xa7\x61\x82\x54\x32\x8b\x74\x72\xba\xda\x49\xea\x94\x4b\x00\x26\xf6\x5d\xd2\xb2\x76\x5a\x9e\xbe\xcd\xe7\xc2\x43\x01\x4c\x3d\x3b\x0c\xe3\x7e\x4b\xc9\xe8\x75\x14\x6d\xf0\x59\xf5\x1c\xc1\xd0\xae\xac\x3d\x1c\x21\xe5\xcf\xf9\xd4\x80\x1b\x14\x10\x87\x53\x8a\x26\x12\x9a\xeb\xa8\x81\x3c\x86\x68\x51\x48\x5d\x7d\x61\xe0\xa8\xe6\x06\xe5\xf6\x7a\xc1\xa6\xf8\x1f\x29\xa4\x3c\xd5\xe4\x6a\xd6\xa3\xa3\x7d\x9c\x01\xa5\xa5\x05\x3a\x36\x78\xc5\x7c\xed\x92\xdb\x61\x5c\x1e\x33\x44\x3b\x8a\x61\xc6\x9a\x65\x7f\x8f\x6f\x6a\xce\xd9\xdc\xfe\x76\x1e\x8e\xe4\xfb\x99\x1f\x90\xbe\x5f\xb8\x02\xfd\x93\x87\x71\x38\xe3\x73\x62\xa0\x6b\x13\x9e\x5f\xc5\x6b\x30\x4d\x45\x02\xc1\x98\xd0\xaf\x63\x2e\xff\xa2\xa9\x4f\x7d\x64\xd2\x30\xe7\x64\x1b\xc3\xf6\x3b\x1a\xc2\xdf\x10\x7f\xbf\x66\xc6\x26\xb6\x99\xdd\x81\xf7\xc4\xaa\x01\x23\x07\x1e\x6d\x86\x58\xc8\xa4\x5f\xce\x03\xd0\x76\xac\x2b\x94\xe7\x93\x5d\xd5\x27\x75\x44\x51\xaa\x8f\x93\x7c\x9c\x14\x69\x1a\x4e\x79\x6f\xed\xd2\x44\xb1\x1d\x80\x36\x9b\xc5\x08\x95\x1b\xd7\x0f\xb3\xa1\x65\xb2\x35\x46\x7a\xd2\xab\xa0\xc2\xc3\x09\x21\x21\xa1\xf7\xc3\x7d\x95\x9c\x6c\xc0\xa9\x79\x09\x61\x0f\x5f\x68\x6c\x3b\x1f\x16\xa3\xf1\x30\xf5\xd3\x5c\x69\x2f\xe6\x9b\xce\x33\xca\xb7\xec\x87\x01\x89\x05\x4c\xf9\xcc\x1e\xc0\x92\x88\x01\xb6\xd1\x60\xe1\xe7\xbf\xd5\xa0\x82\x3e\xdf\xce\xf2\x94\xb8\x85\x70\x92\x62\x88\x91\x95\xe6\xeb\x5a\xb1\xe0\xef\xec\x6b\x9b\x38\x4e\x8a\x38\x90\x4f\x09\x63\x11\x6d\x1d\xa1\x32\xf2\x79\x8e\xc8\xae\x84\xb1\xa5\xe2\x18\x20\x5a\xf7\x3b\x8a\x70\xf9\x03\x5a\x6a\x7c\x4d\xa3\xc5\x7f\xe4\xc5\xc8\xe3\xdc\xa6\x41\x32\x1a\x9b\x18\x1d\xcc\x9c\x48\xa2\x99\x92\xa4\x92\xee\x0a\x8e\xc2\x20\x4c\x0a\x28\x26\xc3\x1e\x21\x53\x22\xcd\x01\x3e\x68\x38\xdb\x30\x26\x73\xed\x38\x01\x7f\x80\xa6\x88\xbf\xaa\xc0\x1f\x57\x35\xe6\x3e\x59\x45\x05\x17\xe9\x38\xa4\xe6\xd0\xcb\xcb\xa8\x1a\xe4\x10\xde\x57\x79\xc7\x64\x6c\x53\x93\x0b\xb8\x4c\x0a\x52\x8a\x50\xe6\x5d\xe5\xbe\xe4\x66\x4c\x54\x71\x73\xfb\x9d\x60\x3c\x05\x71\x5a\x31\x03\x1c\x6b\x37\x5d\xba\xc3\x84\x69\xe9\x20\xd9\x06\x2a\x33\x77\xa3\xda\xa4\x32\x6b\xb9\x4d\x4a\x75\x74\xb9\xf6\x2e\x4f\x44\x65\xc6\xa6\x17\x46\x42\x39\x2e\x42\xf4\x2d\xc7\x9a\xae\xeb\x92\x4b\x49\x6a\xd3\x22\x8e\x45\xae\x87\xc1\xbb\x1d\x7f\x70\x1e\x55\xb1\x41\xdf\x06\x76\xd4\xb3\xe9\x63\xa5\x71\xc2\x0a\x82\xf0\x34\x6c\xe7\x34\xc2\x24\xa5\x9c\xf1\x22\x43\x69\x20\x60\xc7\xb5\x5f\x58\x00\x66\xaf\x64\x30\x17\x4c\xfc\x15\x30\x4d\x29\x62\x3a\x1f\xde\xd2\x8b\x0b\xe5\x25\x4d\x02\x7f\x86\x80\x2e\xe2\x35\x78\x4b\xb0\x6a\xcd\x98\x5b\xd1\x5c\x51\x65\x71\x96\x8f\xc8\x1f\xd2\xde\xc7\xdc\x7c\xdc\xf1\x76\xe7\xf5\xc2\x66\x94\xbe\xdb\x4d\x0f\x0f\xc3\xf3\x7b\xaa\x0b\xe3\xc8\xc4\xa3\xb3\x39\x09\xcd\x18\x2b\x0e\xf1\xe0\x7a\x6e\xe8\xf4\x07\xed\x16\xb1\x71\xe5\xc3\xf2\x75\xc7\xf7\x51\xb0\xa2\x96\x08\xbe\x6d\x5d\xed\xcf\x13\x30\x92\x58\xde\x65\xad\x48\xb9\x46\x09\xc8\x9f\xa8\xf4\xea\x64\x6b\x9c\x46\x10\x5e\x38\x5f\x7d\xbf\xd8\xd9\xc5\x5f\xfc\xfa\x0b\xe8\xc9\x17\xf5\x8e\x6a\x76\xc0\x47\x98\xa7\xd5\x11\xb4\x60\x5e\x68\x29\x62\x8e\x0d\x5d\xf3\xd9\x50\xe0\xe3\x71\x64\x72\x6b\x0a\x5a\x56\xd2\x09\xdb\x52\x2d\xb2\x75\xd5\xbf\x51\x18\x87\xa3\x90\x93\xba\x38\xcf\x7f\x04\x3f\x81\x6f\x54\x52\x71\xd9\xc6\x79\x11\x2c\xb3\x48\x05\xce\x1f\xae\x5a\x20\x3e\x81\xe0\x25\xf2\x3a\x77\x6a\x7e\x17\x75\x53\xc4\x66\x64\x15\x7e\x71\xba\xeb\xdb\xa3\x6f\x57\xa8\x0d\x6a\x59\x9d\xd2\xe7\x8c\x12\xc3\x12\x47\xc8\x72\x83\x71\x8b\xaf\x2b\xb4\x19\xcb\x36\x7d\x42\xd5\xda\xc1\x05\x82\x8d\x71\x6d\x52\x69\xbc\x5a\x78\x59\xe8\x32\xe1\xd0\x31\x28\x8d\xbc\xcf\x8a\x72\x0e\x8e\x66\xb6\xe5\x28\xb8\x6f\x12\x70\x09\x81\xd5\x35\x98\x6e\xb8\x90\xbf\xdf\x69\x1d\x94\x21\x3a\x4a\x0b\x10\x99\xcc\xb7\x91\x09\xc5\x2a\xbd\x86\x5a\x83\x08\x96\xa8\x38\xe1\x81\xcb\xec\x0c\x4d\xba\x42\xe1\xb6\x7b\xcf\x13\x15\x4e\x65\x75\x98\xf4\x6c\x9c\x27\xba\xd9\x1a\x49\x0f\xbe\xae\x64\x10\x86\x36\x7b\xd4\x1b\xaa\x1d\xe0\xde\x11\xa0\x2a\xad\x60\x0c\x0f\x0a\xa1\x70\x2d\x77\x76\xbd\x16\xf1\xfa\xa4\x35\xb7\x7f\xf3\xa3\xea\xa9\xad\xe2\xa1\xe3\xa8\x64\x54\x14\x76\x85\x8b\x57\x91\x6e\xb5\xd6\xeb\x9e\xd1\xbe\xf6\xd0\x44\x39\xeb\x14\x22\x12\xe0\x4d\x2f\xfc\x02\xf4\x6d\x98\xca\x3b\x6a\xed\xf7\xed\x92\x8d\x33\xb0\x78\xe3\x9d\xd1\x29\xe5\x58\xa5\xfd\x3a\x7d\x53\x03\x46\x3f\x98\x68\x95\x91\xcf\xf0\x1a\xb0\xa7\x75\x39\xe0\xb9\xfd\xed\xb1\xc9\x32\x1b\x0f\x38\x04\x76\xf6\x46\xa5\x5e\x7d\xb9\xa1\xc8\x51\x70\xa3\x49\x17\xf5\x8a\xf2\x63\x0f\x13\xaf\x20\xe5\xb3\x54\x35\xf3\xc3\xd2\xad\x93\xed\x74\x23\x58\x8e\x06\x7c\xb2\x8d\x9a\xdd\x2a\x7d\xa5\xd4\x66\xd6\xa4\xc1\x10\x0e\x37\xd6\x97\xe4\x76\xf8\x6e\xbd\xa9\x4f\xad\x3f\x22\xb6\xbd\x94\x54\x03\x5b\xfe\xe8\x3e\xab\xaa\x6a\x67\x55\x07\x43\x1c\x0e\x6c\x1a\x1a\xaa\xd3\xe0\x2c\x07\x34\x83\xaf\x1b\xb3\x9b\xb9\xc9\x51\x26\x71\x5e\xef\xd7\x0f\xfe\x7f\x79\xbd\xa4\xb2\xba\x45\x26\x18\x05\x2d\xbe\x6e\x88\xd2\x5f\x6c\x9b\xa5\xc8\xe4\xc9\x21\x69\x59\x77\x82\x68\xee\x64\xaa\xe3\xf9\xf6\xee\x6d\x8f\x43\x80\x1d\xa4\x06\xdb\xf2\xfd\xbd\x9a\xc3\xd9\x46\xcb\x61\x2a\x69\x5d\xa1\x68\xa2\xa1\x16\x58\x7f\x4d\xfd\xf3\xe5\x7d\xe4\x91\xae\x84\xfd\x82\x9d\x7e\x46\x07\x61\x25\x0a\x54\xc8\xe7\x00\x28\x73\xfc\x54\x69\xb4\x84\x28\xa3\x34\x22\xf0\x05\xff\xcd\xc4\xbb\xd7\x17\x3a\xaa\x88\xf0\x28\xb1\xd3\xe3\x03\xdb\xd6\x55\x5c\xcd\x20\x24\x6c\xde\xcb\x34\xe4\x92\xba\xf2\x10\xc7\x9b\xc0\x70\x02\xc6\xc2\x08\x58\xa1\xac\xa1\xc1\x47\x65\xe6\x77\xb1\xfe\x60\xcf\xbe\x02\xf7\x03\xf0\xf1\x16\x58\x7c\xb8\x13\x72\x5d\x35\x68\xcc\x10\x78\x53\xd0\xfb\xfe\x5c\x0b\x6c\x4a\x15\x66\xa4\x1f\x77\x74\x95\xfc\xf0\x9f\xd1\xa9\x2f\x6d\x7a\x2d\x27\x35\xb0\x7d\x5d\x8d\xd8\xe7\x8a\x9d\x25\x2d\xe2\x6c\xa7\x66\x7c\x52\x2a\x55\x13\xcd\x0b\xd2\xd1\x2a\x29\x27\x55\x72\xfd\x38\x8d\x2b\xbe\x99\xc9\x54\x44\xe5\xca\x37\x8d\x15\x71\xdf\xa6\xab\x69\x98\xdb\x69\x0f\x31\x66\x1c\x2f\xc2\xad\x3b\xba\xa5\x18\x6b\x0e\xb3\x70\x47\x01\xb9\xc2\x41\x9c\xa4\x2c\x03\x86\xaa\xe6\x59\xf8\x23\x7c\xa3\xec\x7a\x9e\x86\x4b\x11\x5a\xd4\x44\x58\xb3\xe5\xd4\xbf\x2e\xba\x64\x76\x3e\x0c\x25\xef\x37\xe7\x6d\xb9\x57\xa8\xbb\x54\xcb\xe2\x48\x4a\xa1\xc8\xc9\x75\x9d\xf2\x9a\x2d\xa7\x34\xfc\x60\x43\xd5\xac\xee\xaa\xca\x49\x66\x33\x52\x29\x44\xfe\x05\x41\xf0\xe6\xa4\x02\x2c\x75\xe9\xce\x8b\xb5\xf6\x23\x52\x50\x06\x7e\x51\x8a\xa0\x70\x7e\x7f\xa0\x1c\xe1\x1f\x34\x34\xe0\xb5\xfb\xc9\x6a\xbc\x6a\xd2\x3e\x49\xd1\xc2\x6f\xfa\xb9\x96\x91\x3a\xaf\xfa\x20\xb4\xce\xdd\x2f\x1e\xda\x98\xb2\x14\x15\x49\xaa\xa4\x92\xff\x1d\xf0\xac\xf2\xd1\x97\x92\xa0\x10\xbf\xd0\xf5\x4f\xbb\x1e\x98\x7a\x21\x79\xef\xde\x76\x9e\x14\x38\x33\x84\xf9\x53\x01\x60\x8e\xba\x5c\x78\x69\xb5\x02\x22\x78\x67\x58\x47\xc7\x83\x60\xef\x93\x57\x0c\x23\xc0\xa9\x44\x54\x5b\xeb\x64\x6f\xf2\x6a\xc4\x7c\xe1\xed\xd8\x49\xda\x55\x70\x71\x58\xe4\x14\xc8\xb7\x2b\x6a\x62\x5f\x4b\x62\x93\x0f\x4d\xcc\xaf\xe7\xf8\x3a\xcb\xbf\xe6\x9b\xc6\x6a\x97\xe9\x25\x45\xde\x52\xc5\x80\x89\xc7\xec\x9d\xe9\xe8\x54\xd0\xf0\x11\xa5\xbd\xd2\x5a\x57\xed\xd7\x5f\xd2\x2b\xa2\x6e\x7b\x8b\x4f\x66\x2c\xbd\x4d\x7a\x74\x8c\xd6\xae\xae\xf7\x5e\x98\xbf\xc5\xb5\xbd\xef\xdd\xcb\x99\xdf\xff\xb9\xd9\x03\xcd\x96\x43\x84\x28\x0e\x81\xea\xc8\x06\x8e\x51\x05\x19\x3f\xf7\x27\x9a\x65\x3b\x0e\x5a\x3e\x29\xb2\x93\xdc\x0a\xbe\x5e\x77\xd5\xc1\x30\x4a\xf2\x1d\x5e\xf0\x12\xf6\x07\x4f\xf5\x43\xf8\x76\x98\x4f\x28\x8e\x69\x35\x6b\x0c\x03\xe4\xc5\xe0\x3f\xdd\x6a\x3a\x9d\x7a\x1c\x5a\x39\x82\x27\x27\xce\x79\x05\x4b\x09\x21\xf8\xbb\xea\xc1\xb3\x24\xdd\xdd\x72\xb4\x12\xdb\xd6\xd5\xa8\x83\xdc\x5d\x88\xc7\x30\xd0\x9a\x4b\x02\x13\xfd\x38\x92\x7e\x28\x44\xfe\x18\xe6\x04\xab\xe7\x18\x3c\x59\xe5\xa1\x49\xee\xf2\x7d\xbd\xae\x76\x76\xb7\x6e\x3a\x12\x34\x8c\xf3\x34\x89\x1c\xcf\xb7\xde\xb7\x7c\xad\xea\x48\xac\x46\x6a\xa2\x1d\xf4\xf8\x98\x5c\x26\xa4\x84\x1b\x08\x45\x2c\x8c\xcb\x2d\x85\xef\xdd\x0d\xc7\x56\xf0\x4b\xe5\xd7\x83\x56\x65\xa3\x21\xb9\xf1\x4a\xbb\x5f\x06\xa2\x2e\xe1\x83\x8d\xf9\xb1\xf2\x80\x3f\x6e\x90\x81\x6f\x67\xc9\x88\x84\x0e\xa7\x3c\x93\x28\xea\xe3\xf0\x05\x6e\x29\x92\xc3\x87\x27\x75\x31\x18\x54\xce\xd8\x3c\xa3\x1b\xaa\x2e\x60\xc8\x61\x44\xef\x29\x49\xfa\xef\x34\xba\xa6\x49\x6e\xe3\x3c\x64\x0f\x03\xe6\xeb\xa4\x92\x7d\x3f\x59\x7b\x81\xbd\x7b\x17\x49\x91\x2d\xcd\xb7\xe8\x0d\xf8\x6e\xbb\xa6\xb1\x7a\xb1\x3d\x32\xb1\x72\xcb\x70\xfe\x03\x00\xce\xd7\x0d\x68\xc1\x85\x76\xcf\x2e\x25\x29\x8e\x32\xa4\x50\x40\xfb\xc1\xd7\x9d\x67\xeb\xd5\x26\x03\x72\x6e\xce\x6f\x60\xd2\x25\xd9\xe1\x13\x5b\x21\x41\x1d\x03\x9b\xa9\x74\xee\x29\xa5\xb6\x70\xaa\xa1\xe1\xe3\xc5\x76\x6a\xc2\x0c\xf3\x86\x42\xe3\x0d\x05\xed\x46\xd1\x5d\x10\xe6\x5b\xd7\xf0\xdc\xfe\x76\x3e\x4c\xad\xc9\x6d\xcc\xfc\xbb\x68\x62\x64\x66\x48\xbe\xa9\x19\xc9\xc5\xd9\x76\x94\x04\xcb\x22\x9f\xec\x2a\xc9\x1e\xf5\x7a\x52\xe9\xd2\x7c\xd2\x20\x25\xb6\xaf\x1d\xdb\x41\x92\x87\xc6\x69\xb3\x39\x4e\x6c\x6d\x04\x1b\x7a\x22\x57\x92\xd0\x65\x25\xb9\xad\x5f\x25\x88\x8e\xba\x86\x8e\xc0\xe4\xc3\x24\x0a\x03\x46\x3b\x73\xfe\x0c\x5b\x1a\xd1\xd3\x6d\xb6\x16\x58\x88\x3b\xbb\x4f\xab\x10\x2c\x37\x61\x24\x55\x12\xa7\x9f\xee\x42\x97\x3a\xc9\xf7\xc2\x62\x19\xad\x18\x82\x65\x81\xf3\x83\x95\x9e\x68\x2a\x44\xf5\x49\x51\xc8\xf6\xfb\xb6\xbf\xa3\x8c\x37\x10\x8d\xdc\xc3\x8a\x10\x6e\xbb\x96\xa3\xa4\x3a\x49\xf1\xbb\x93\x45\xf4\xfd\x85\xb4\xe0\xf8\xc3\xba\x58\x12\x99\x2c\x03\x81\x0a\x72\x89\x7f\x58\x61\x27\x25\x5b\x07\x10\xce\x45\x78\xc6\x7c\xa3\x80\xc6\x57\x3a\x5b\xea\xed\x52\x62\x7f\x5b\xeb\x74\x27\x26\x15\x00\x1a\xd0\x39\xef\x4d\x94\x24\xdc\x7b\x58\x33\xb0\x7b\xc3\x24\x4f\xc6\x69\x92\xdb\x80\xe2\x31\x8c\xba\x68\x92\xd3\xf7\xcb\x42\x51\x03\x34\xea\x45\x02\x0b\xd2\x67\x0c\x56\x38\x0f\x97\xc8\x6d\x3e\xa6\xf4\x33\xec\x14\xbd\x16\x27\x85\x55\x3f\x00\x67\xfe\xa4\xfa\xd8\x54\x20\x37\x2b\x36\x35\x03\x4b\x4a\xbf\x8a\xdd\x7b\xa1\x12\x77\xb9\xbe\x4d\xb7\xc0\xcf\x75\x54\x83\xfa\xbd\xa6\x36\xeb\xb1\x09\x96\xcd\x00\x7b\x14\x5f\x3c\x0d\xc2\x40\xcd\xc2\x22\xda\xea\x0d\xc1\xe3\x30\x8c\xa2\x2c\xec\x5b\x55\xb5\x3b\xa7\xaa\x76\xe7\xea\xaa\x72\x73\xed\x9e\x25\xbd\xb5\x96\x96\xcf\x29\xd7\x8c\x74\xec\x79\xec\x61\x14\x8e\x31\x3f\x61\x45\xaa\xfb\x43\xe5\x51\x7c\x58\x4b\x63\xed\xd9\xd3\x36\x99\xd0\x47\x38\x0d\x1f\x5f\xc7\x3e\xa5\xd0\x0a\xa5\x31\xe7\x94\x32\x8e\x03\x94\x1f\xf8\xba\x56\x13\x25\x5c\x7b\xce\x6c\xcc\x6e\xce\x2f\x29\xfa\x9c\x4b\x8d\xa8\x83\x5f\xf9\xc6\x6f\x2f\x7c\xe3\x37\xe7\x51\x4d\x87\xd7\x79\x91\x83\x24\xbe\xab\x44\xc2\x3a\x42\xd6\xa5\x0c\xb3\x2c\xd1\x07\x52\x87\x57\x60\xd8\xf8\xa6\x91\x2a\xdd\xc4\xe1\xc8\x08\xf7\x0b\xf6\x1a\xa7\xb7\xf8\xc6\x81\xc3\xb2\xbc\x48\xfb\x6b\x4a\x8d\xf5\x82\x52\x63\xbd\xd0\xd8\x04\x5e\xf4\xa2\x30\x20\x8f\x09\x46\xec\x88\xd2\x0f\x7b\x57\xfb\x28\x9e\x42\xaf\x6f\x7b\x45\x3e\xed\x0b\xd5\xe7\xe1\xb8\x89\xec\x76\xb9\x0c\x25\x0b\xe2\xbb\x6e\x5a\x5d\x45\x4a\x21\xf0\x4c\x3c\xff\x55\xe4\x04\xf9\xa6\xb6\x16\x9e\x67\x81\xc7\x96\x4f\x82\x7e\x86\x3d\xc1\x37\xb5\x86\x89\xf2\xd8\x2a\xe2\x6c\x6c\x03\x55\x86\x69\x6a\xba\x6b\xf0\x0e\x82\x24\x4a\x46\x3d\xe1\x63\x84\xe7\x74\x5f\xbb\x51\xf7\x1b\x4e\xfa\x05\xa8\x36\xd8\x2c\x6f\x91\x2f\x05\x4f\xe8\xa4\xf2\x8a\x4e\x7a\xd6\x11\x52\xe1\x89\xa2\xd6\xd4\xc2\xcb\xfb\x3c\x65\xc7\x93\x4a\x73\x21\x84\x44\x8f\xa7\xab\x39\xad\x54\x12\xeb\x8a\x57\x7b\xf7\xb6\x6d\x5e\xf4\x99\x81\xff\xff\x17\x2d\xfe\x4b\xf3\x6d\x9b\x05\x69\xb2\x4a\x1f\xc1\x38\x1e\xa1\xec\x2f\x5f\x6b\x94\xec\xc8\xa6\x61\x60\xe2\xc7\xc8\xa6\x20\x3b\x72\x9b\x86\x51\x62\x03\x9a\x7e\xe7\xe3\x7a\xe6\xff\xef\x4c\xd4\x34\x6d\x5f\xd7\x10\x2a\x5f\x05\xbe\x34\xd1\x14\xb3\x8f\x2a\xed\x84\x5b\xf0\xf1\x90\x29\xd9\x44\xaa\x81\x8b\xac\x64\x6b\x50\x5c\xf8\x48\xe5\x83\x56\x92\x68\x25\xa1\x95\xe9\x3a\x94\x7d\x62\x6b\x53\xf1\x48\x61\x65\xa2\x42\xf9\xb6\x22\x58\x0c\x4a\x5b\xb8\xa6\xeb\x6a\xe7\x94\xe4\xe8\xb9\x9a\x61\x58\x9c\xdd\xd7\x5e\x32\x2b\x94\xa4\x50\xe2\x53\x1f\x2a\xcf\xf0\xc3\x1a\x19\x02\x25\x1f\x93\x2c\xb7\xf1\x72\xb2\x9a\x2d\x87\x48\x40\x22\x2d\xc2\xf0\x03\xbe\x69\x14\x57\x7d\xa3\x5c\x9f\x52\xfc\x13\xda\xec\xf2\xd5\x84\x4f\xbb\xa9\xb3\x9c\x6c\xb5\x6a\x5f\x57\x94\xb6\x97\x14\xa8\xa6\x20\xa9\xd7\x6a\xbf\xc4\x4b\x3e\xc8\x7e\x08\xc3\xd2\x8a\x4d\xf3\x90\xe1\x92\x0b\xde\x85\x50\x74\x05\xb5\xde\xfa\x03\xb3\xf3\xbb\xe8\xb5\x11\x07\xb2\xe6\x24\xd7\xb9\x31\xd5\x2e\x13\xec\x48\x07\x8f\x93\xef\xe0\x00\xce\x07\x66\x5d\x61\xdc\xe3\x2c\x7e\x44\x33\xeb\xe4\x17\x9d\x32\xdb\x25\x45\xcc\xdd\x2b\xc2\x28\xdf\x41\xde\x0a\x92\x7a\x0c\xa0\xe2\x1b\x45\x56\xf5\x25\x4c\x9b\x93\x66\x5f\x9c\xad\x48\x5a\x89\xfa\x77\x83\x8a\xd2\x52\x39\x26\x51\xf8\x86\x4d\x5b\xaa\x2e\x72\x42\x33\x10\x76\x7e\xe5\x21\x81\xce\xd8\xa6\x59\xe2\xe9\xb1\x25\x9b\xa0\x53\x0b\x6a\xce\x86\xd6\x46\xbc\x1a\x24\x2f\xa5\x20\x4a\xb5\x67\xa3\xf6\xa8\x24\x8a\xcc\xd8\xc1\xae\xe0\x62\x33\xcd\x15\xc0\x9a\x77\xd4\x30\xbe\xe5\x75\x59\x8b\x34\x23\x3d\x6e\xdf\xe2\x87\x53\x8f\xaf\x6b\xf9\xab\xf2\x84\xc9\xd6\x82\x61\x68\xf2\x94\x5d\x57\x41\x90\x2b\x98\x7d\xe3\x79\xcb\x3e\x5d\x4b\x3d\x21\x07\xd0\x22\xea\xec\x93\xcd\x3d\x93\x65\xa1\x70\xdc\x35\x1a\x40\x25\xac\x17\xa5\xd6\xf4\xd7\x76\x79\x6f\x85\xc5\x46\x90\x8a\xe4\xe6\x53\x81\x45\x69\x0e\xd5\x13\x8a\x00\xe2\x1e\x6c\x93\x6b\x49\x39\xe8\xf8\xdf\xce\x29\xf2\xdb\x16\xd9\x39\xbc\x65\x5d\xbe\x6a\xcf\x9e\x36\xd1\xaa\x67\x56\x41\x66\xf9\xb9\xc5\xd6\xb7\x9c\x18\x5c\xdd\xf5\xa3\x44\x4d\x1a\x0e\x42\x38\x32\x38\xbf\xa1\x17\xc0\xd7\x0d\xe1\xe5\x7c\x3b\x48\xc6\x63\xae\xcb\x20\xce\x47\x45\x8f\xaf\x35\xfd\x58\x1a\x8e\x46\x04\x8d\x92\x56\x1d\x05\x8a\x39\xe1\x63\xa1\x24\x5e\x09\x7d\x2d\x06\x89\xf5\x1d\x5d\xdf\xfe\xb0\x89\xb1\x42\x5c\xb4\xa1\x1a\xa4\x7b\x61\x12\x25\x03\x47\x75\x05\x6f\xe2\x38\x6d\x5a\xbe\xee\x78\x91\xd8\x41\x6a\x6d\x9c\x8d\x4d\x4c\xf4\xe8\xe8\x86\xf9\x33\x45\x19\x7e\x9e\x0a\x88\x7c\x4d\x83\xc0\x7f\x03\x8b\xca\x01\x0f\x5c\x0d\x89\x7e\x1a\xfa\x4d\x98\x74\x93\xbd\x2d\x1c\x57\x1f\x63\x81\xf0\x8d\xca\xa6\x07\x45\xda\x6b\xf9\x1e\xaf\xdb\xb4\x17\xf8\xda\xa9\x5f\x8e\x8b\x28\x18\xa6\x61\x79\x42\xb7\x54\xdb\xd4\x4f\x26\xbe\x06\xf7\x93\xce\x53\x1a\xab\x62\xb3\xdc\xf6\x29\x71\xae\x9a\xca\x18\x9e\xf3\xa3\x5f\x59\x77\xf5\xba\x17\x9e\x43\xe2\x49\xd0\x5e\x5b\xb7\xfa\xfe\x97\xb7\xca\x66\xb0\x8f\xd7\xd1\xfe\x9e\x12\xd7\x49\xb2\xdc\x44\x53\xaa\x99\xef\xa8\x52\xc7\x43\x8e\x15\x6e\xf5\xdb\x55\x9f\x76\x85\x7b\xe0\x1c\xcf\xc9\x81\x59\x47\xd2\x5a\x5a\x30\x54\x8e\xcf\x75\x7c\xff\x3d\xcc\x3a\x52\xce\xdf\xae\xc0\x03\x5e\x88\x5f\xa0\x21\x65\xd2\x7b\x95\x2d\xb9\xdb\x90\x98\x21\x5b\xde\x97\x60\x1a\xc1\x36\x49\xb4\x4a\xbf\xcb\x94\x8a\xbc\xc3\xf8\x35\x68\xc0\xea\xbe\x3a\x15\xdf\x5f\xd1\xec\x54\xef\x3b\x7f\x37\x48\x8b\x6c\x38\xed\x5f\xfe\x02\xad\x50\x2c\x67\xe4\x29\x71\x0c\x9d\x55\xe2\x60\x17\xca\x08\xc8\x8b\xf9\xa7\x61\x96\xc4\x23\x21\x3e\x42\xf8\x88\xa8\x98\xaf\x95\x0f\xd2\x2b\xd2\x01\xe8\x57\x05\xd9\xba\xa1\x90\xad\x1b\x9e\x24\x9b\xca\x8f\x8e\x58\x0e\x8d\x2d\x82\x0a\x7d\x52\x69\x12\x71\xe7\x86\xaf\xec\x9e\x82\xc7\xc6\x37\x0d\x12\x28\xfb\xda\x26\x18\x86\x76\x45\xbc\x1a\x96\xb8\xc3\x4e\x12\xbd\x3b\x5d\xed\x59\x2a\xd7\x58\x9f\x81\x82\xac\x9c\x40\x0f\x2d\x2a\x0a\x4f\x54\x62\x7b\x5e\xdd\xa8\x92\x7f\x02\xab\xce\x37\x5a\x8c\x5e\x27\xb2\x36\xca\x38\xdc\x87\x94\x38\x16\x70\xec\xbc\x03\x78\x02\xdf\x54\x8e\x05\xa2\xf1\xd0\x9a\x01\x1b\x4a\x47\x16\x90\x2c\x06\xe0\xb9\x61\xcd\x4d\x08\x9c\x87\xe3\x55\xf5\x1c\xab\xce\x89\x37\x51\x14\x96\x5f\x3d\xb3\x55\x15\x85\x6b\x8f\x0a\x24\xb9\xa1\x8a\x87\xef\xeb\x43\x69\x5b\x4d\xdc\xd4\x25\x3a\x2d\xf5\xe7\x22\xa6\x55\xe5\x32\x57\x3b\x53\xd3\x5b\x9a\xde\x70\x94\x91\x60\x90\xeb\x84\x71\x34\x5e\x77\x3a\x14\x8f\xc0\x26\xe3\x64\x62\xcd\xe6\x8e\x42\x7e\xf2\x99\x27\xa4\x1a\x72\xda\xbf\x5e\x84\xc1\xb2\x4d\x77\x90\x6f\xc4\xba\x13\x8a\xf5\xec\xd8\x44\x15\xce\xc1\x02\x03\xbb\x7a\x51\x55\x08\xef\x21\x29\x84\xe3\x6c\x7b\x57\x23\xcb\xd3\x54\x0b\x32\x2b\x92\x59\x87\xb3\xea\xfc\x35\x25\x2c\x98\x05\x69\x28\x4c\x47\x74\x04\x38\xbd\xeb\x03\xc2\x7e\x73\x75\xe2\x49\x0a\xb6\xc1\x34\x22\xc9\xf8\x66\x47\x05\x53\xc7\x51\x86\x14\x74\xd4\x56\x6f\x79\x71\xb6\x9d\xac\x4a\x4b\x0a\x93\x75\xe2\x13\xc2\xdc\xe9\x0c\x7b\xb2\x6a\xd3\x61\xe2\x65\xe7\xa5\x91\x4e\x77\xd5\x35\xf8\x5f\xcc\x28\x58\x70\x2f\x8b\x20\x60\xde\x01\xa3\x16\xdf\xd4\x6c\xdd\x4b\xf3\xed\xa5\x28\x31\xbe\x5f\x11\x68\xc4\x53\x0a\x99\x78\x4a\xa5\xea\x06\xa9\x89\xb1\xcb\x00\x15\xfa\x3d\xd5\xeb\x79\x51\x21\x15\x58\xf7\x50\x98\x73\x7c\x7d\x2b\x30\xa9\x8d\x44\x8b\x08\xdf\x7f\xbb\xa3\xb4\x85\x6f\x37\x26\xb9\xfa\x36\x0b\xc4\xcc\xb9\xc1\x2b\x7f\x40\x06\x4f\x16\x57\x2f\xec\x8b\x1e\xf4\x2b\x4e\x31\x50\xcb\x07\x36\x16\x14\x57\x93\x34\x1f\xce\xe0\x6c\x16\x20\x49\xf9\x53\xba\xae\x25\x79\x08\xc5\xcd\x7a\x96\x90\x6e\xd8\xe9\x5f\x2a\x9a\x9f\x6c\x18\x3a\xad\x6f\xa1\x13\xa0\xd5\x0e\x37\xe2\xb4\x32\xe8\x77\xd1\xd0\x8a\xef\xbb\xa5\x8e\xbf\xb1\x4d\xc6\x91\x7d\x8a\x16\x18\x76\xfc\x97\x18\x26\x38\xd2\xef\xd0\xfa\x64\xba\x83\x8e\xa2\x28\xbb\xdc\xd1\xbe\x9d\x4f\x94\xdc\x04\x0f\x9a\x23\xa5\xfe\xfa\x41\xde\xa5\x3f\x55\xcc\x2f\x5c\x16\xc5\x6b\x33\x24\x0c\xc5\x60\x29\x07\xc2\xc4\xdd\xc4\xfe\x77\xb5\xd7\x45\x21\x66\xfb\x48\x35\x81\xfd\x0b\x8d\x95\xb9\x4a\x60\x7b\xfc\xd1\x11\x65\xe3\x83\x24\xce\xc2\xbe\x4d\x6d\xff\x11\x1a\x08\xe9\xe2\xf7\x99\xdd\xb7\x2a\x41\x25\x66\x9d\xff\x47\xc9\x4a\xdf\xc3\xeb\x09\xf8\x93\x1e\x0f\xc3\xf6\x33\x0c\xbd\x70\x05\x34\xc0\xc1\x57\x42\xbb\xea\x96\x3f\xbc\xed\x3f\xeb\xf8\xf6\x84\x3f\x53\xda\x2c\x26\xcf\x6d\xdc\xcf\x94\x57\xc0\x2c\xdc\x7c\xa3\xf0\x39\xd9\x72\xb9\x14\xfb\x8a\xa8\xe0\xb0\x26\x2a\x38\xbc\x35\x78\x9d\xdb\xdf\x3e\x30\xfb\x35\x85\xaf\xdb\x44\xf4\x08\x74\xc9\x31\x5a\x6a\x92\x20\x56\x04\x30\xf7\x34\x72\xe1\x03\x34\xe4\xb1\x10\xac\x36\xa4\x9f\x41\x75\xce\x49\x1e\x94\x83\x05\x2f\xf0\x38\xa6\x09\xe1\xec\xb7\x27\xbe\xb5\x8c\x95\xd6\x70\x9c\x6f\x76\x34\x5d\xee\x97\x34\xe5\x58\x7d\xd0\x29\x87\x1d\x9f\xe9\x96\xeb\xca\x25\x98\xcb\xb5\x2b\x02\x4d\xde\xf7\xfa\x08\x6e\x82\xf8\x1d\xa5\xf3\x86\xd5\x77\x5f\x29\x80\x3e\xc0\x14\xb2\x76\x4b\xad\x22\x7b\x70\x71\xb6\xfd\x5c\x95\xcc\x14\x00\x1a\x61\x36\x6d\x98\xe6\x71\x1a\x06\xae\x63\x05\x99\xa4\x4f\x27\xde\xbd\x04\x13\x1e\xce\xd0\x1b\x4a\x47\x67\x64\xe2\xbe\xc9\x93\x74\x6d\xba\x4a\x4e\xe0\x58\x45\x35\x45\xfa\x69\x2a\x0c\x63\x27\x1e\xa9\x41\xb0\x4a\x53\x93\x15\xe2\xfd\xb0\x28\xa6\xa6\x53\x3b\x37\xf9\x9a\x2a\xab\xe5\x36\xc5\xb9\x64\xa2\x47\x69\x5e\x79\x2a\xe9\xb0\x84\xd5\x79\x9f\x51\xb8\x8e\x9b\xc7\x31\x02\x5c\x53\xa7\xe5\xad\x8e\xe6\xd6\xea\x28\x0e\x79\x02\x0a\x89\x5e\xfa\x79\x4d\x6e\x30\xd5\x55\xf9\x85\x29\xdd\x58\xb2\xbd\x2b\x79\xe1\xd7\x8a\xfe\xc0\xb2\x9d\x13\xb5\x23\xd5\x12\xc0\x2c\x5e\x78\x86\x93\x6c\x40\x00\x7d\xda\xe5\xb8\xb7\x97\xc5\xac\x4b\xd7\x8a\x6e\x61\xa9\x92\xf1\xaf\xc6\x3b\xcb\x3f\xc4\xf2\xba\x3b\xa9\x2a\xf6\x96\xaf\x21\xfe\x9d\x67\x0b\x7f\x9b\xb6\x0d\x5f\x4f\x54\xa1\x7e\x43\xf5\x42\x9e\x6c\x92\x1f\xad\x7a\xaa\x18\xed\xcb\x1d\xa5\xa0\x7c\x59\xb3\x11\x46\x49\xc1\x75\x45\xc1\x90\xd2\xab\x3b\x3f\xc8\x6f\xd1\x5b\x4d\xb4\x89\xab\xd6\xa9\xf3\xaa\x1e\x16\x27\xb4\xd9\xf1\xad\xdd\xe3\x30\x4f\x24\x67\x8f\x21\xff\x5c\x67\xd3\x3f\xaf\x61\x5f\xbe\x39\xd7\x8e\x2d\x63\x9d\x84\x58\xa6\xf5\xcd\x39\xc7\x2b\xe3\xc3\x98\xac\xe8\x8d\xc2\xdc\xa9\xf2\x3a\x06\x42\x45\x42\xd6\x10\xd8\x92\x6a\xbe\x50\xf7\x61\xef\x5e\x52\xfb\xd8\x77\x98\xc7\x49\x9a\x86\x70\xca\x50\x1b\x3b\xae\x3b\xd1\x8f\xd7\x1e\xfc\xd7\x08\xae\xcc\xe3\xef\x50\xe6\xae\xf1\xb1\x5e\x67\xdd\xbb\xb7\xdd\xb7\x3d\xc3\xd8\x30\xec\x4d\x1c\xb5\x88\xfa\xaf\x55\x34\x92\x2b\x70\xe7\x06\xc5\xb4\x41\xd2\xe7\xe0\xc6\x89\x4f\xcc\x6b\xf1\x09\x47\xd5\x14\xf5\x6d\x1a\xad\x4d\x7b\x4a\xa1\xbb\x8a\x68\xf1\x26\x0d\x05\x1f\x7b\x38\xbb\x90\x4e\x3d\xa3\xd8\x9e\x8a\x38\x18\x9a\x78\xc0\xfd\xf7\xaf\x38\x20\x83\x5a\xd3\xc7\x3a\xaa\xde\x0c\x81\x28\xbe\xee\x56\x74\x28\x92\x74\x47\x4b\x13\xec\x97\x1f\xc2\xdb\x7f\x41\x26\x1b\x07\xe7\x76\x82\x2a\xe2\x60\xe6\x0a\x23\x92\xca\x40\x84\x23\x65\xf3\xdd\xa6\xde\xbd\xc0\xa4\x3d\xe6\x51\xc4\xf1\xf3\x8e\x42\x48\xbd\xa3\x18\xc4\xfb\xa6\x18\x0c\x73\xc4\x9b\xf3\xba\xa0\x23\x39\x98\x3a\x47\xb9\x84\x29\x83\x64\x85\x51\xfa\xf0\xb2\xd9\xef\xd1\x6b\x8b\x4b\xcb\xae\xd9\x33\x1b\x26\x45\x44\x82\x41\xca\x37\x78\x69\xde\xc9\x80\xd1\xb7\x09\x36\xa2\x5c\xfd\x30\x50\x4f\x33\x2c\x17\xf9\x02\x28\x37\x33\xd8\xab\xce\xe1\xb3\xa7\xdc\x20\x83\x34\x29\xc6\xd9\x94\x12\x6a\x3d\x53\x6d\xc6\xf7\xe8\xf6\xba\x4a\x66\xb9\xd1\x93\x14\x9a\xe4\x4e\x20\xc8\xb1\xf6\x1d\xa9\xd0\x47\xa1\x5a\xd4\x52\x8c\x93\x1f\x28\x51\xd2\x0f\x3a\xaa\x7a\x1c\xf6\x09\x79\x89\x10\x1d\x0b\x5e\xf2\xd4\x34\xde\x48\x6c\xff\xb7\xb4\x82\x36\x81\xb8\xc2\x50\xec\x80\x55\x47\x78\x77\x13\x4e\x24\x7f\x52\x25\x36\xa9\x49\xc1\x44\x60\x61\x71\x0a\xf5\xa5\x67\x20\xac\xfa\x1a\xfa\xff\x86\xed\x3f\x41\xff\x89\xb9\xdb\xc0\x11\x80\xe1\x3e\x0d\xbf\x05\x5d\x48\x9b\x34\x41\xac\x86\x41\x09\x78\x21\xef\x54\x4c\xb5\x2c\xd4\x8f\x13\xe4\x1a\x1c\x39\xfe\x62\x4a\xfa\xc0\x37\xc1\xa8\xa3\x21\x7f\x86\x60\xb0\x9b\xac\xd4\x29\xb4\x46\xbe\x8f\xf1\x2d\xf6\x63\x64\x17\x7a\x58\xdb\xb6\x26\x8a\xc6\x60\x98\xb8\xc2\xaa\xf4\x29\x28\x41\xd0\x63\xae\x09\x89\x90\xa9\xa3\x30\xb6\x7d\xf0\x58\xc2\xcc\xdc\xd0\x2c\x7a\x8f\x75\x7d\x67\xc8\xd5\x4a\x1a\x59\xc5\xdd\x5c\x0e\xfe\x0f\x68\xd8\xf0\xc8\x17\x71\xea\x20\xf1\x75\x07\x9b\x01\xfe\xfd\x2f\xe0\xc7\x21\xa9\xfc\x00\xe5\x0d\xb8\xeb\x8f\xae\xb7\xf6\xec\x91\x8d\x0c\x3f\x12\x63\x01\x26\x4e\xcc\x47\x6b\xbd\x74\x56\x9c\xe6\x84\x47\x59\xdc\xa1\x53\x53\xba\x50\xc9\x11\x53\x3c\xeb\x02\xf5\xbc\x85\x3e\x03\x4c\xe7\x75\xf2\xe3\x50\xc5\x63\x5a\x08\x0c\xeb\xf5\x89\xe2\xcf\xfc\x92\xdc\x4b\xce\xd8\x76\x74\x27\x54\x6b\xbd\x8c\x0f\x10\x49\x4f\xd8\xa9\xc1\x4c\x1f\x43\x1a\x06\xce\x2a\xd3\xe9\x0a\xa9\x7c\xb9\x6c\x50\x85\x43\xa7\xb9\x5b\x35\xa5\xaf\x8b\x76\xf4\x8b\xe4\x9e\x62\xa0\x99\xfe\x19\xab\x1f\x81\x12\x46\xe5\x9c\x3b\xa5\xc2\x2c\x2b\x38\x8b\xed\x0a\x42\x4e\xd1\xf4\x5c\x05\xf5\x94\xdb\x41\x1a\x32\xd3\x39\x7c\xae\xe3\x58\xe0\xf2\x14\x3e\xe5\xf4\x5d\x67\xa9\x46\x36\xb6\x91\x1c\xe0\xff\x4e\x97\x27\xc9\xd6\xa8\x9e\xcb\xcb\x35\xef\x28\xae\xd0\xbc\x01\xa1\xa4\x95\xc2\x61\x79\xe1\x6e\x01\xd6\xcb\xd7\x95\x1a\x4f\x34\x26\xa1\xb0\x05\xa7\xf3\xd9\x72\xfa\xee\xc7\xb0\xf9\x34\x0f\x04\x4b\x93\xd3\xde\x43\xcc\x7f\x92\xc6\x1d\x26\xe4\xba\x2a\xee\x30\x30\x54\x94\x97\x7d\x72\x7e\x89\x09\xa3\x4c\xd4\xaa\x88\x24\x39\x12\x14\x2d\x8c\x0b\x6d\xc5\x70\x85\xb5\xfd\x64\xd3\xb5\x1c\xfb\xf8\xb1\xda\x29\xf2\xd2\x7c\x3b\x4b\x82\xd0\x44\x61\x06\xed\x26\x9d\x46\xe3\x6b\x95\x8e\x58\x12\xfa\x2a\x2c\x39\x81\x67\xd2\x9b\xf3\x4d\x43\x8f\xc3\x2b\x65\xdc\xba\x44\xfd\x69\x33\x34\x7a\x52\xf2\xac\xf4\x89\xb5\x1c\x09\xf9\x99\x49\x45\x76\xc1\xb7\xf2\x3e\xd6\xf5\x78\xd1\xff\xf4\x6f\xfe\xc7\xba\x67\x64\xba\xeb\x1b\x8a\xa7\xd7\xb7\x06\x40\xbf\xde\x1e\x50\x9e\xf6\xc0\xac\x93\x63\x51\x86\x41\x13\xbd\xac\x12\xff\x68\xab\xf5\xdc\x73\xbc\x00\x2e\x62\x43\xf1\x4d\x6d\x00\x5f\x7d\xb5\x3d\xb0\xb1\x4d\x5d\x9d\x10\xfe\xf6\x86\x06\x3d\xd5\x19\x96\x09\x5d\x97\x2c\xef\xf0\xc4\x67\xc4\xcf\xea\x61\x50\x0e\x2f\x32\xdd\x55\xb9\x5f\x16\x83\x6c\x6a\xe4\xf1\xe5\x10\x53\xe4\x09\x29\xca\x8b\x9c\xa2\xdf\x9d\x08\x3e\x79\x90\xe9\xe3\x94\x56\x29\x9e\xec\x2a\xd4\x10\x8c\x16\xfe\x68\x53\xe7\xe2\xff\x04\xfb\x15\xe6\xf9\x2f\x1b\xbb\x79\x4c\x1a\x0c\xc3\x15\xd7\xb1\x8a\xc8\xee\x6a\x47\x01\xcc\xae\xaa\x38\x60\xd5\xda\xe5\x6c\x87\xef\x76\xc3\x63\xc0\xcb\xfc\x14\x1f\x82\x4d\x3f\xab\x7a\xb1\x7f\xa6\xe0\x76\x3b\xd7\x2b\x89\x95\x67\x3d\x7a\xa3\xf4\x0f\xad\x4d\x5d\x00\x8b\x3d\x7a\x57\x51\x01\x5e\xef\x68\x07\xa1\x21\x3f\x98\xd9\x38\xb7\x71\xe0\x52\x1d\xc0\x11\xfd\x48\xe1\x8b\x7e\xf4\xd0\x36\x85\x6c\x98\xac\xf6\xc2\x37\xc8\x30\x0a\x5b\xbc\x42\xaf\x9c\x6d\x64\x6d\x50\x88\x53\x58\xf9\x2f\x26\xfe\x60\xf9\x42\xb1\xc2\xf6\xac\xc9\x35\xdb\x21\x7c\x91\x4a\x95\x8a\xc9\x7e\x26\x1e\x36\xf1\xc9\x44\x01\x39\x6f\x28\x1a\xa4\xbe\xcd\xc6\x26\x24\x6a\x11\x21\x11\xfe\x09\xfd\x30\x5f\xd7\xc2\xbd\xc5\xd9\xf6\xd0\x66\x61\x4e\x84\x5c\x07\x84\xbf\xf9\x17\x1d\x9f\x6d\xfc\x85\x2a\xa4\x8c\xc2\xa8\x1f\x31\x45\x08\x9c\x4d\xcc\x26\x5f\xab\x42\x41\x40\x28\xd5\xfe\x14\x9d\x93\x22\xa9\xe7\xfb\x23\x6e\xd1\x0e\x41\x20\x76\x44\xc1\x14\x43\x13\x24\x41\x00\x7d\x55\x64\x53\x6f\x69\xdd\xbf\x5b\xaa\x3d\x65\x39\xc9\x92\x95\x44\x17\x61\x60\x76\xe4\x88\xf5\x86\xce\x0c\xca\xa9\x2f\xa3\x75\xef\x83\x1d\x51\xfd\x31\xbb\xc8\x3b\x41\xc0\x7a\x55\x47\xf1\x77\xd4\xab\xe7\x43\x9b\x8e\x12\xbc\x3a\x4a\x0f\xff\x12\x7f\xca\x37\x4a\x43\xa6\x6f\x83\x30\x0b\x93\x78\xb7\xa2\x26\x78\xaf\x42\x62\xa0\x9a\xed\xc1\x3d\x25\x5d\xa1\x3e\x05\x75\x59\xa5\x56\xfe\x78\xa2\x18\xea\x5e\x9d\xe8\x7e\x19\xcf\xa8\xcb\xaa\x26\x42\x4e\xf6\x30\xc8\xb7\xed\x87\x59\x9e\x10\x0a\x10\xeb\xea\x63\xcd\x28\xf5\x71\x53\x67\xe0\xd8\xa4\x39\x75\x8d\x13\xb0\xea\x02\xb2\x19\x9b\xf5\xcc\xd4\xab\xaf\xb6\x73\x73\x68\xca\xa7\x0f\x6f\x77\x70\xb4\x60\x4f\xe3\x1c\x15\x19\x9d\xba\x86\xf1\x8b\xc4\xe8\xd0\xf2\x05\xdf\x23\x1d\xbf\xc3\x8f\x34\x00\x85\xa4\x6b\x9f\xcf\x7b\x59\x90\x34\x56\xb2\x22\xbd\x38\x3a\x24\x18\x61\xcb\x10\x95\x5e\xd0\x34\x1a\x75\xae\x8e\xc5\xd9\xf6\x20\x4d\x4c\xcc\xc4\x40\x82\x58\xd1\xf0\x95\x8e\xae\x84\x2e\x41\xe9\xec\xc9\xd2\x2c\x2b\xcd\x8d\x05\xef\xbe\x1e\x74\x3e\xe3\x05\x45\x38\x73\x9a\xf4\x77\x51\x87\xba\x4f\xee\xa7\x13\xf2\x9d\xdb\xcf\xd9\xd5\x3f\xd0\x09\x03\x6e\xc1\xc1\x72\x78\x9b\x76\x92\xeb\x83\x5e\x5c\x70\x0a\xae\xe5\xe0\x21\x01\x0e\xef\x84\xbd\x99\x8e\x42\x47\x32\xa3\x3d\x77\x8e\xc0\xc5\x12\xed\x0f\x1d\xda\xac\x86\xf1\xae\xf2\x2b\x84\xfa\x9e\x5e\x4b\xd2\x09\xe5\x13\x23\xbf\x76\x5c\xf7\xbb\xdd\x67\x27\xd7\x09\xfd\x2e\x8a\xb2\x1e\x44\xa6\x61\xc5\x0f\x93\xfd\x10\x21\x3c\xb2\x16\x12\xc1\xd7\xcd\xea\x2b\x6d\x82\xc8\xf6\xb7\x28\x2f\x7a\x8e\x29\x15\x4d\x04\x45\x9a\x86\x16\xdd\x55\xd2\x19\xa3\xe0\x51\x97\x6a\xa7\xc4\xf3\xe5\x5b\xf6\xb3\x61\x68\x23\x49\x7f\x48\xa3\x7b\xc5\xb5\xa9\x71\x6e\x2d\x2e\xfc\xaa\x90\xf4\x28\x0e\xc1\x6b\x13\x5d\xf1\x6c\xc8\x1e\x05\xba\xf2\x24\xea\x39\xe5\x67\xf8\xba\x49\x31\x64\x14\xc6\x63\x1b\x24\x8c\xb3\x86\xd1\xb8\xa7\x28\x84\x4f\xe8\x06\xe3\x56\xf7\x09\xa5\x7b\x37\x12\x91\x66\x38\x82\x97\xb5\xe7\x7d\xb9\xe3\x15\x1d\x72\x9b\x86\x10\x2a\xdb\xc7\x6b\x15\xac\x46\x7c\xad\x4a\x3d\x41\x5a\x88\x74\xb2\xd0\x1c\xd3\x77\x0a\xff\xb1\x2a\x1d\x84\xe9\x38\x49\x73\x62\xcc\x00\x26\x15\xf4\x8d\x02\x88\xa3\x8f\xc1\xc1\xfe\x5c\xb9\xe8\x4b\x26\x80\x14\xf2\x8b\x15\x40\xbd\x74\x59\xf9\x05\xf9\x26\xc2\x3c\x74\x4d\xdc\x46\x84\xce\x37\x6a\x77\x6c\x28\xcf\x10\x04\x5c\xd3\x14\xac\x69\x15\x23\x3c\xdd\x11\x0d\x9f\x3d\xc2\x21\x19\xff\x99\x1a\x80\x25\x83\xa4\xba\xef\x77\xbd\xa6\x61\x2d\xa0\xbc\x95\xb5\x57\xc3\x63\xcf\xb5\xc7\x66\x2c\x58\x36\x6e\xaa\xd5\x4a\x3c\x17\x14\xe3\xc8\x52\x61\x23\xae\xa7\x70\x9b\x68\xa5\x65\xd4\x19\xb9\x24\x1d\xd8\x9c\x6b\x03\xa2\xbd\x45\xdf\x2f\xaa\x5c\xff\xde\x56\xa5\xce\x57\xaa\xe2\x4c\xcc\xb2\xd8\xf1\x84\xaa\xff\x27\x8d\xa0\xb0\x3c\xa9\x0d\xca\x0d\xf1\x58\x84\x3f\x98\xf8\x16\xa1\xe3\x13\xcf\x9f\x0b\xa5\x31\xfe\x77\x0d\xc4\xf4\x0f\x3d\xb6\x69\x20\x74\x39\x48\xb9\x03\xe9\x84\x03\xe9\x7e\xe9\xe5\x6e\x5e\x86\xd3\xcd\x86\x76\xc5\x66\x79\x38\x30\xb9\x1b\x7c\x9c\x98\x77\xd9\xe0\x60\x4d\x30\xbf\x9e\xf4\x12\x39\xc6\x94\x22\xcb\x93\x51\xf8\x86\x60\xab\x50\xa3\xb9\xaa\xb0\x33\xd7\x70\x8e\xca\xdb\xfb\x7a\xdd\x52\x18\x9b\xd2\x8f\x28\xdd\xba\xaf\x1f\x74\xb2\x8b\x1e\x3b\x55\x87\xf5\x97\x9e\xa7\x19\x87\x36\x66\x83\x02\x93\xfd\x91\x12\xbc\xfc\xa8\x76\xe0\xee\xdd\xdb\xce\x92\xc8\x77\xa7\x22\x69\x7f\x53\xa1\x23\x6f\x36\x89\xb6\x0c\x4d\x11\xcb\xd4\x4b\x7c\xa3\x88\x03\x2f\xaa\xfa\x6a\x38\xb2\x51\xdf\xe0\x4f\x9d\xc8\x4a\xf9\xa7\x22\xb2\xa2\x68\x3b\x4d\x18\xa5\x89\xe9\x53\x0c\xe5\x3a\x94\x7c\xb7\x92\x43\xf4\x0c\x52\x33\xe2\x97\x74\x5c\xa6\xf3\x9e\x1d\xd2\x21\x6c\xcc\x28\x6e\x79\x48\x01\x10\x36\x52\x3f\x69\x60\xde\xc8\x62\xc2\x8e\x38\x90\xc5\x49\xc5\x96\x7f\xb2\x42\xbc\x61\x8a\x68\x46\x99\x5f\x64\x34\xb1\xd6\x58\xa9\x1d\xb1\xc8\x1f\x4f\x2a\x4c\x3a\x9a\xc8\xf6\xff\xae\x8d\xeb\xe2\x6c\x19\xb4\xbb\x54\xbc\xb0\x7a\x79\x77\xb1\xde\x5a\x37\x3f\x4f\x3a\x6b\x79\xc8\x64\x06\x2e\xaf\xfa\x3d\x95\x2e\xfe\x5e\x53\xda\x3d\x88\x8a\x1e\x46\x50\x7a\x79\x5a\xae\x31\xb3\xae\x11\xfb\x7c\xbb\x1f\x12\x6d\xc2\x50\x96\x32\x56\xec\x49\xc5\x51\xf0\x2e\x7c\x21\xe9\xad\x53\x42\x5a\xe1\xa8\xc7\x42\xe4\x08\x07\x51\xa4\xe4\x6b\x65\xb9\x53\x9b\xe5\x09\xb7\x16\x08\xde\xcf\x33\xa0\x9f\x74\xf3\x3a\x0c\x07\xc3\x47\xe9\xc7\xb8\xb5\x41\x1b\x87\x07\xf0\x17\xe4\xf9\x94\x98\xff\x03\x72\x83\x44\x6e\xa4\xfc\x62\x64\xe1\xa6\x15\x66\xfd\xd1\x75\x5f\x9c\xfc\x0f\xbb\xb4\x68\xc5\x9f\x54\x3d\x58\x1f\xeb\x1c\xee\x5b\x0a\x50\x12\xad\xa5\xc3\xb5\x7c\x28\x8b\x93\x29\xcb\x69\x71\x0a\x7d\x79\x83\x00\x22\x29\x13\xc4\x81\xe3\xa3\x60\xd7\x9b\x3e\x26\x6e\xb8\xef\xbe\x88\x4c\xb0\x3c\xa3\xd4\xa0\x78\xe7\x09\x10\xcd\x87\xf6\xef\x69\x02\xc2\x8e\x8a\x25\xce\xa8\xb3\x09\x1c\x4d\x53\xbe\x1f\x19\x53\x8a\x60\x6f\x32\x51\xd6\xe9\x6c\x03\x57\x37\x64\x6b\xb8\x8b\x4e\x3a\xc9\xfd\x41\xc4\x85\x4e\xee\x35\x53\xfe\xd2\x52\x92\x8e\x8a\x08\xaa\x41\x42\xf0\xd7\x72\x4d\xe3\x15\x2d\xee\x74\x84\xa5\x83\x63\x15\xa4\x97\x7c\xdd\x6d\x2c\x3e\x13\xd3\x71\x4b\x91\xce\x9c\x51\x64\x76\x67\x94\xe4\x0e\x51\x07\x4e\x79\xe1\xae\x3b\xf4\xe6\xf0\x55\xa7\xbb\x9a\xca\x53\x39\x17\x51\x64\x07\xb6\x3f\x43\x2f\x2c\xc2\xb1\x7e\xe7\x9c\xd6\xa2\xee\xe4\xab\x02\x7a\x7c\x93\x4e\x29\x06\x05\xa8\x43\x7d\xcd\xc4\xcb\x16\x93\x2e\xd2\x6d\x1e\x49\x72\xaa\x1c\x06\x1c\x9d\xa5\x4f\xf0\xcb\xe5\x93\xc2\x59\xff\xa4\xe3\x5b\xb8\xcf\xe8\x25\x8e\x24\x2c\x46\xf1\x9e\x2a\x9d\x7f\x81\xa2\xbd\xe8\x86\x50\xda\x16\xf6\x77\x63\xd2\xfa\xcd\xff\x5c\x60\x31\x1d\x9d\x35\x50\x42\xe2\xef\x4c\x94\xde\xc1\x54\x57\x29\xde\xfc\x53\x05\x0d\xb9\xdf\xf1\x63\xf6\x1e\xd2\xdc\x88\xcc\x7e\x58\x61\x29\xe6\x16\x09\xac\xb6\x07\xa8\x1f\xe0\xb5\x76\x11\x97\x2f\x32\x6b\x7c\x30\xb2\x9f\x46\x88\x54\xa1\xa9\xa0\x5c\x3c\x3e\x71\x8c\x4d\x2a\x6a\x74\x3b\xba\x0a\x58\xb5\x7d\x9d\xdc\x34\x38\xd2\x77\xc1\xff\x05\x28\xd0\x5f\x55\x10\x44\xa6\x9f\xac\xd2\x04\x20\x9b\x8c\xf6\x58\xbe\x7e\x28\x97\x42\x9e\x10\xd0\xd6\x93\xdf\xbd\xaf\xc8\x67\xf9\xd1\xc5\x66\x7b\x20\x29\x75\x34\x99\x28\x7c\xc3\x79\xe2\x48\x7a\x80\x92\x83\xaf\x55\x27\x51\x60\x72\x13\x25\x03\xdd\x49\x34\x99\x28\xe1\xeb\x89\x12\xcf\x1d\x24\x51\xff\x51\x85\x03\x3a\x05\x33\xe8\xdc\x4d\x47\x1b\x7b\xb6\x52\x29\xc2\xa3\x62\x9a\xbe\xe4\xc1\xc4\x62\xe0\x0a\x00\x37\x62\x6b\x05\x4e\x4d\xe2\x7e\xb6\xd2\xad\x4d\x2b\x11\x0b\xe3\x7d\xd5\xa0\xff\xb7\xff\xd6\xdf\x46\xc2\xd5\xc1\xbc\xf6\xb8\x2e\x5e\xed\xe1\x86\x26\x0b\x92\x56\x35\x90\xa3\xcf\xf1\x8d\x1a\x9a\x95\x30\x8a\xcc\xc0\x4e\xb7\x34\x5d\x7a\xf9\xf6\xc8\x25\x5f\x57\xfb\x90\xf1\x31\xfc\x1f\x0f\xe5\x90\x58\xb5\x51\x34\xe3\x37\x1f\xa3\x23\x31\x98\x80\xe1\x20\xb1\xf9\xfd\x89\xf2\x3b\xce\x12\xda\x0a\x03\xb6\xbb\xab\xc9\x46\xc7\x04\xa1\x80\x85\xd8\x89\x1d\xe3\x04\xa4\xcb\xe1\x83\x99\xf9\x78\xe2\x6b\x23\x77\x27\xad\x83\x0b\x9b\x4c\xbc\xe6\x32\xd8\x07\x66\xd9\xfc\xde\x52\xdc\x12\x51\x3e\x9c\x71\xfb\xee\xbf\xf8\x25\xf2\x60\x69\x43\x1c\xfe\xa5\x75\xb5\x6d\xee\x57\x7c\xd4\xab\x13\x25\xa1\xec\x55\xb4\x47\xb6\x1f\x06\xd4\xd0\xe7\x2a\x17\x77\x74\x60\x77\xa7\xf3\xb4\xa6\x13\xee\x17\x41\x6e\xfb\x8a\x00\x90\xe1\x98\x7c\xe3\xc9\xf1\x23\x93\x65\x02\x5b\x46\x1d\x8b\x01\x31\x7c\xa3\xd6\xc7\x92\x21\xdd\xe7\x79\xdf\xa7\xa3\x20\x91\x1e\x4f\xc1\x4a\x87\x92\xe9\xf7\xc5\x89\xdd\x4e\x47\xdc\xae\x58\xd2\x11\xf7\x8e\xd0\x4c\x57\xb1\x9c\xfc\x21\x32\x10\xb0\x09\x33\xeb\x4d\xcc\xc7\xa9\x1d\xa7\x61\xec\xd2\x3c\xd8\x19\xe8\xb0\xe0\xeb\xad\xca\x61\x65\x58\xf3\xdc\x73\x4f\xd0\xb3\x49\xf9\x8a\x42\x3d\xe7\x1b\x3a\x7e\xa3\xab\x0a\x33\xf8\x40\x85\x94\x53\x5d\x0f\x0d\x7c\x7c\xbd\xb4\xf3\xc8\x43\xfd\x2b\xd8\x5d\xf8\x00\x0b\x9d\x72\xdb\x20\xb7\xff\x36\x5b\x54\x97\x65\x29\x47\x19\xfe\xe7\xf9\x8e\x97\x90\xfc\x0b\x9c\xfa\x8e\xf1\x62\x6e\xbf\xab\x00\xe8\xce\xbe\x86\x82\xec\x42\x7b\x10\x25\x2b\x16\xdb\x56\x58\x21\x5b\x4a\xf7\xc3\x5b\x9e\xd7\x5e\x08\x5e\x50\xb1\xc3\x86\x8a\x1d\x7c\x24\x34\x0a\x83\x34\x59\x35\x2b\x02\xb5\xe5\x8a\x2b\x96\xa4\x94\x5f\x9f\xad\x10\x9b\x82\x46\x2a\xdb\xe1\x71\xaf\xa4\x12\xb1\x79\x81\x32\x55\x58\x1e\xff\x2b\xde\x43\xb3\x10\x89\x0c\x7f\x85\xc7\xd7\xdb\x60\xad\xc4\x35\xa3\x28\x0a\xbf\x45\xdf\x8a\xd3\xf2\x1e\x96\x34\x83\x6d\x27\x9e\x38\x1b\x6d\x87\x42\xa7\xda\xd4\x17\x48\x5a\xd6\xa3\x90\x38\x83\x5a\xbe\x2e\xc5\xc0\x71\xbe\x71\x09\x90\x6c\x98\xac\xa6\x49\x32\xc2\x98\x38\xf2\x1a\x4f\x64\xe3\xfe\xd2\xc4\x43\x5b\x64\x2c\xdf\x0a\xf7\xe7\xba\x56\x14\xda\xd6\xf5\x32\xc4\xe7\x94\x7b\x07\x26\x06\x95\xe6\x5c\xd7\x2a\x63\xeb\xaa\x0d\xdb\xa4\x66\xc9\x70\xbb\x16\x8a\x4f\xcc\x26\xc7\x37\x8e\xe6\x7a\x64\xd2\xe5\x47\x54\x55\x1d\xd2\xf2\x4c\x8c\x0c\xd4\xb6\x53\xf4\x2d\x4f\x6a\x8c\xdc\xa9\x89\xea\x2e\xda\xd0\xea\x92\x27\xd5\xa6\xb8\x32\x51\x24\xbe\x1b\x93\x47\xbd\x30\x09\x32\xbd\x5c\x45\x26\xf0\x1f\xaa\xd6\x9f\x4c\x3c\xee\xf3\xba\x4a\x8b\xf7\x6c\x6c\x97\xc2\x3c\xa3\xbe\x8f\x0a\x2b\x9f\xb4\x73\x69\x41\x94\xf3\x15\xf6\xbe\x5a\x94\x5c\x6e\xf1\xa5\xc4\x8b\xa1\x23\xb3\x7e\x41\x65\xd9\xbd\x8c\xc2\xeb\x85\x35\x59\xc8\x25\x3d\xb8\x68\x2c\x18\xcd\x37\x93\x5f\xf2\xe2\xbf\x71\x5e\xda\x1b\x1b\xdb\x22\x0d\x4d\x84\xd4\x2f\xfb\x65\xc8\x32\x89\x93\x56\x29\x56\x2f\xdb\xc7\x5a\x9a\x65\xd6\x73\xa3\x22\x03\xc5\x59\x5c\xda\x2d\x5c\x11\x85\x6d\xf8\x09\xec\x1f\x1f\x44\xf8\x05\xfe\x20\x1e\xd1\xe9\x81\x1d\x9c\xdb\xbf\x79\xa6\x43\x66\x0c\xa9\xd3\x9b\x64\x7d\xe0\x75\x71\xa1\x4f\x40\x73\xca\x61\x19\x92\xf8\xd6\x94\xe2\x38\xbd\xa4\x32\xc3\x5c\xe8\x86\xab\x7a\x67\xb2\x4b\x2c\xe8\xf3\x7f\x1d\x73\x81\x78\xea\x06\x1e\x92\x91\xff\xa8\xa1\x62\xa5\x20\x95\x2b\x2c\xbe\x34\x63\x9a\xd2\x17\x91\xe7\x0f\x27\xdb\x7f\x95\xd7\xec\x29\xca\x75\xa3\xe0\xf7\x27\x48\xd4\x61\xdd\xff\x6e\xa7\x74\x7a\xb1\x1b\x3f\x23\x9c\x12\x52\x56\x6f\xc1\xe9\x15\x96\x8a\x72\x4b\x01\xc3\x00\x7a\x55\xee\xaa\x87\x4e\x0f\x2c\xec\x55\x64\x91\x59\x34\x95\xf8\x30\x99\xf8\x19\x67\x00\xb2\x3c\x7f\x09\x8f\x5b\xa4\x41\x4b\x03\xed\x4e\x31\x0d\xce\xd9\xbb\xd7\x95\xc1\x3c\xbc\xf5\x6d\x4d\x7d\xfe\x3d\x60\x73\x60\xa7\xbe\xcd\xa7\x00\x33\x5d\x75\x94\xbc\xfd\x46\xc7\x33\x7b\xfe\x1c\x0e\x1b\xc0\xce\xd7\xe1\x09\x3b\xb0\xf3\x6f\x7d\x83\x37\x28\x63\x2e\x2b\xfc\xed\x68\x56\x7d\x0f\xfb\x58\xfa\xcd\x54\x2b\x26\x3a\xcb\x1f\xd3\xc2\x6f\x67\x95\x0c\x17\xf2\x86\xb8\xfe\x53\x95\x86\xff\x33\x05\x16\x3d\xa1\x1b\xce\x7f\xa2\x8b\x5c\xbb\xba\x9e\xae\xfd\xb6\xc6\xd2\x4e\xad\xd3\x9a\x70\x00\xe1\xe7\x9e\x73\xd0\x41\x7a\x05\x71\xfb\x1a\xc2\xd5\x25\x3b\x32\x9c\x99\x76\x52\x6a\x8e\x93\xed\xfe\x56\x09\xf1\xf9\xf9\xf6\xfc\xfc\x2f\x95\x4f\x81\x25\x7b\xad\x53\xae\x27\x78\xc1\xdb\xd6\x69\x3d\xc1\xc1\xfb\xc7\x34\x8d\x58\x04\x3f\xe8\xa8\x88\xe6\x18\x16\x14\x56\xe6\x65\x3a\x80\x59\xec\x11\xeb\x46\x08\x2b\x68\xc5\xc3\xfa\x80\xff\xc8\x71\x51\x95\x83\x23\x7a\x02\xea\xac\xc3\x76\xc4\xd2\xfe\x67\x58\x13\x3a\x96\x70\x60\x70\x4f\xd1\x34\x51\xf0\x79\xf0\x2c\x62\x09\xde\xa4\xa5\x26\x6c\x42\x34\xb2\xc8\x79\xb7\xba\xe5\x26\x91\x0a\xb9\x2e\x02\x7c\x8e\x71\x66\x62\x6b\x4c\x0d\x3e\xf3\x51\x43\x79\x7a\xa1\xfd\x7a\x91\xe4\xa6\x42\xbd\x04\x16\x7a\xbe\x9e\x3c\xe3\x0e\xa1\xd7\x92\x22\x8d\x09\x52\x32\xe5\xdb\x2e\xf8\xe8\x90\xc2\x96\xee\xba\xf3\x5e\x48\xb2\x62\xd3\x27\x68\x18\xb1\xce\xff\x6a\xa2\x32\x00\x17\x68\x7e\xe0\xed\x6c\xd2\xf6\x43\xe2\xe8\x03\x45\xad\x72\x51\xe3\x9c\x21\x97\x8a\x9f\x6f\x75\x55\xeb\xd6\x71\x1e\x08\xb8\x61\xad\x75\x9f\x3b\xde\x09\xfc\x16\xc2\xda\xef\x4d\x54\x2b\xf3\x23\xc8\x23\xa9\xde\x04\xc9\xcd\xce\x40\x58\x4c\x98\x33\xb6\xb2\x95\xbe\x34\xdf\x4e\xde\x48\x62\xdb\xb7\xe3\xc8\x8a\x42\x3c\x90\x85\x9b\x27\x14\x06\x34\x30\x45\x1e\x26\x45\x36\xe3\x13\xe9\x9c\x14\xc2\x58\xa0\xf1\xdd\x29\x95\x7b\xf0\x02\x56\x14\xca\x69\xd7\x6a\x49\xbf\xc5\x59\xca\xb4\x45\x80\x4c\x1f\x98\x75\xc7\x23\x0d\x94\x9c\xa9\x4f\xa9\x76\xc6\x34\x0b\x97\x6c\x7f\xca\xe7\x43\xee\x60\x1c\xe0\x3d\x4d\x75\x75\xf6\xda\xcb\x13\x65\xe1\x20\xce\x66\xd4\x18\x41\x05\x0b\x56\x6d\x6a\x5d\x95\x2c\xb6\x77\xbd\x2f\x76\x83\x0c\x8d\x74\xa9\x36\x70\x57\x51\x1f\x66\x12\x3b\x20\x07\x56\x32\xd6\x8f\x6b\x39\x76\xc5\xac\x33\x4d\xcd\xa9\xd4\x34\x93\x09\x6b\x18\x10\x85\x9b\x38\x50\xf9\x46\x69\x7f\xbe\x66\xe2\x17\xa8\xdb\x5a\x54\x4a\x15\x7d\xf5\xa9\x89\xd6\xa3\x89\x22\x91\x8e\x72\xfd\xa1\x8e\xad\x67\x43\x6b\xac\x59\x9b\x67\xd3\x9a\x6b\x9b\xfe\x10\x15\xcf\x1b\xba\xfc\x79\xa3\xa3\x48\xb8\x9b\x52\xdb\x44\x99\xd0\x52\xce\xd5\x39\x2d\x7a\x70\x4e\xc1\x50\x23\x6b\xfa\x36\xcd\x76\x90\x25\x90\xff\xf6\x43\x7d\x12\x16\xcd\x7d\x49\xf9\x0c\xfc\x3f\xb4\xb1\x9c\x98\xbf\xf7\x03\xeb\xdc\x92\x07\x66\xdb\x59\x94\x8c\xc7\x6b\x84\x1c\x11\xd2\x73\x9f\x84\xd1\xdc\x00\xe3\x34\x19\x8f\xcb\x45\xb5\x38\xeb\x34\x14\xcb\x97\xc5\xc9\x7f\x98\x0e\x66\x04\x35\xb7\x6a\x7d\x20\x2f\xcd\xb7\x97\xc2\xd8\x66\x53\x2a\x3c\xc1\xfe\xc3\xa1\xf4\x40\xa5\xee\xea\x12\xb8\xcf\x3b\xf9\x1c\x89\x06\x61\xfa\xaf\xe9\x1c\xcc\xb5\xda\x8f\xce\xed\x6f\xc7\xb6\x5c\x34\x2d\xc5\x48\x44\x3f\x2a\x54\x45\xb2\x65\xcc\xeb\x85\x19\x99\x34\x8c\x71\x22\xc1\xad\x7f\x97\x06\x9b\xaf\x55\x22\xb4\x9f\x22\xca\x72\xca\xdd\x1e\x4d\xae\xe1\x27\x59\x12\x85\x41\xc8\xbf\x2e\x20\x63\xdf\xa0\x79\xb6\x2a\xe1\xd2\xb7\xd8\x77\x38\x32\x2f\x77\x3c\xf7\xcf\xb7\xe0\x78\xf1\x7f\xd0\xdc\xc0\x96\x32\x26\x0b\x1e\xc8\x95\x06\x64\xc5\x2b\x34\xe6\x53\x8a\x6d\x1b\x40\x3c\x4c\x1e\xc4\x56\x10\x42\x5d\x53\x89\xd5\x2c\x09\x42\x9b\xaf\xcd\x68\x32\x99\x2f\xb4\x7d\xfa\x82\x1e\x0e\x36\xfc\xa7\x30\xee\xc8\x24\xfc\x42\x11\xda\xbd\xa9\xb2\x0a\xbf\xb1\x6f\x96\x06\x41\x5a\xfe\x54\x3f\xe1\xad\xce\x57\x94\xf1\xcc\x83\x21\x59\x4e\xe0\x05\x7e\xd1\x51\x4c\xfa\x9a\xc8\x1c\x81\x3c\xbc\xa0\xef\xc3\x77\x96\x8e\xa8\x06\xd5\xa1\x22\xed\x4d\x55\x5a\x7e\xfc\x0c\xa3\x6f\x41\x88\xd6\xbd\x01\xe9\x25\xab\xc0\x6a\x4a\x7b\x83\xf2\x58\xef\x36\xe8\x60\xbd\xd2\xee\x99\x2c\x0c\x1c\x7e\x50\x48\xad\xca\x6f\x17\x4a\xab\x06\xd4\xe6\x38\x0d\x63\x92\xb5\xd7\x68\x85\x8e\xae\x1e\xef\x76\x8f\xf4\xc2\x63\x1e\x67\xb8\x8d\x41\xfc\xd2\x09\x5a\xfa\x5d\x92\x50\x55\x30\xce\xeb\x58\x38\x70\x7c\x19\x53\xc6\x7a\xbd\x2a\x57\xf8\x07\x13\x95\x41\xff\x73\xf2\x06\x34\x8d\x1a\xce\xaa\x1f\x69\x3f\xe3\x04\x39\xf3\x2c\x07\xde\xc4\xa5\xd1\xee\x25\x45\x79\x52\xa9\x4a\xe3\x86\x56\xf3\xdd\x50\x81\xca\x92\xc9\x72\x9b\xe5\x58\xa4\x38\xcb\x6f\xaa\x4e\xc4\x63\x64\xca\xc4\xa1\xf5\x30\xd9\x20\x19\xaf\xa5\xe5\x71\x88\xd4\x2f\x2b\x72\xd2\x07\x2b\x42\xed\x62\xca\x3d\xf0\x2e\x4e\x84\x11\x0a\x47\xef\x1d\xfc\x21\xdf\x34\x04\x9c\xf3\xed\xdc\xc6\x4b\x49\x04\xc3\x27\xa9\x15\xe5\x55\x9c\x57\x32\x04\xdf\x76\x64\x1e\xc4\x16\x90\x6f\x49\x3e\x74\x74\xf2\x41\x55\x61\x08\xf4\x0b\xdb\xf6\xa2\x07\xd8\x38\x5e\x97\x7a\x19\x70\xef\xde\x76\x1c\x06\x26\x35\x83\x82\x5b\x26\xe0\xd0\xb3\x35\xe2\x9b\xce\x57\xab\x6e\x74\x39\x37\xf3\xf3\x0b\x3b\x69\x3b\xc0\x9f\xff\x23\x9c\x22\x82\x35\x54\x45\x52\xf4\x83\x8b\x8e\x80\x96\xa4\x60\xb9\x3c\xa1\x5a\x9e\xf2\xd2\x8e\xa7\x1b\x36\x07\xda\xfa\xc6\xa9\x43\x28\xb8\x70\x54\x71\x6c\x3d\x5b\xe1\x78\x48\x56\xec\xc8\xc6\x39\xc9\x20\x21\x3e\x82\xae\x3b\x7c\x45\xfe\x45\xae\xa7\xd0\x30\x49\xa3\x0b\x3d\x97\x60\x60\x6b\xd2\x7d\x8b\xb3\xed\x5e\x92\x0f\x6d\x3a\xed\xc9\xf0\x38\x01\x82\xa8\x07\x26\x11\x06\xec\x94\x6a\x81\xff\x5c\xad\xbc\x1e\x51\xde\x39\xf5\x44\x19\xc5\xf2\x83\x7c\xad\x20\xf3\x63\xfa\xe3\xac\x5c\x04\x7b\xf6\x38\x42\x0b\x9a\x65\xc9\x94\x39\xbe\x92\xbe\x25\x0e\x17\xc9\xd4\x3a\x8e\x49\x57\x3d\xae\x37\xa3\x1d\x98\x7d\xb1\xfc\x09\xe9\x27\x74\x1a\xdb\x5e\x6f\xbb\x66\x76\xf6\xbf\xdc\x36\xe3\x71\x64\xd7\x44\x54\xb1\x42\x20\x29\x55\xe7\xad\xa5\xd1\xe7\x55\x1e\x90\x6d\x1c\x77\x7f\x56\x3a\x41\x1b\xaa\xdb\x26\x1c\xf1\xb4\xbb\x3e\x67\x47\x63\xb2\xa1\x71\x5b\x49\x1a\xdb\x14\x49\x22\x81\x77\xb7\x1c\xed\x05\xd7\x7c\xb1\x30\x6f\x51\xd5\x82\xaf\x3b\xcf\xea\x9c\xc7\xb8\x6f\x23\x53\x9e\xe2\x58\xae\x80\xc4\x31\xb6\x93\x6f\x5c\xdf\xc3\x80\xe5\x7c\x9c\xaa\x02\xf7\x32\xc8\x46\x6a\x79\xa5\x10\x2d\xfb\x00\x27\x08\xad\xdb\x08\x31\x8e\x2a\x12\xf2\xbb\xf0\x49\x25\x3b\xa6\x98\xa6\xaf\x76\xb4\xf2\x36\x9e\x0f\xc6\x15\xd5\x3a\xfe\xae\x8e\xaf\x90\x1e\xe9\x78\x5b\x92\x25\x45\x1a\xd8\x8c\x11\x60\x02\x1a\xa4\x85\x82\x60\x97\xf9\xf7\xb1\x27\x7f\xa4\x1a\xab\x88\x24\x2f\x80\xe7\xec\x45\x70\x2b\xac\xed\x3a\xa5\x95\xa6\x6b\xbb\x94\xdc\xae\x62\xd9\x7a\x44\x0b\xb2\x81\x75\x06\x81\xc1\xbb\xc8\x4e\x09\x41\x09\x0d\x80\xb3\x61\x73\xfb\xf9\x9d\xdf\xd5\x89\x8c\x9f\xc0\x10\x02\xd5\xfc\x47\x0d\xf8\x99\x05\xe8\xf2\x33\xad\x16\xc2\xee\x9d\xe8\xcf\xc5\x5e\xdf\xb6\xae\x5c\xbf\x4b\x2a\x04\xb3\x87\x02\x48\x51\x97\x3f\xcd\xea\x76\x48\x04\x88\xd4\x9d\x77\xeb\x07\xa1\x89\xf3\x47\xc8\x9a\xb8\x33\xcf\x71\x42\xf3\x9b\x20\x8b\xfd\x07\x95\x44\x1b\x99\x06\x9d\x24\x86\xb3\x7c\x1f\xc3\x0a\x97\x8a\x3b\xc6\x24\x7d\xdc\xd4\x59\x98\x9a\x5e\x0f\x60\x1f\x58\x8e\xcb\xca\x8a\x5c\x7e\x08\x29\x44\x10\xf6\x85\x6c\x0c\x9e\xd1\x36\x8c\x0a\xdc\x8c\x6b\xf4\xfc\x52\xb1\xfb\xea\xd6\xf2\xc8\x8b\xed\x03\xb3\x73\xcf\x96\x5e\x15\x1e\x8b\x85\x16\x50\x5e\x3a\x49\x89\x0c\x8d\xd9\x46\x6c\x7f\x0f\xe8\x2f\xa6\xee\xa6\x55\x8c\xad\xc4\xc5\x15\xc9\x2a\xfb\xe2\x4a\x8b\x7a\xe2\x65\x75\x21\x33\xc6\x7f\x85\x41\x91\x52\x3c\xbd\x86\x4b\x44\x7b\x10\xe1\x65\x25\x42\xba\x49\x83\xba\xf9\x11\x96\x0f\xbe\xf4\x9a\xa2\x71\x7a\xe9\xfd\x8e\xb2\xe0\xe7\x29\xfc\x72\x90\xe0\xd2\x35\x44\xc6\xf3\x70\xed\x08\x7d\xee\x39\xa2\x41\x18\x27\x21\x14\x50\x5f\xf1\x7a\xa1\x2e\x6f\xc3\xad\xa2\xc2\x8e\xe3\x5d\xda\x3d\x07\x7f\xa3\xa5\x53\xa5\x27\xb5\xce\x4c\x7d\xb6\x5f\x9a\x6f\xf7\x12\xeb\x02\x60\xc1\xe8\xb5\x14\xe1\x86\xea\x94\xfd\xaf\x15\x1b\x79\x48\xec\x9b\x79\x92\x02\xd9\xe1\x14\xfd\xe7\xa5\x7c\x07\x91\x39\x18\xee\x6b\x0a\xb8\x8e\xde\x66\x8a\xb7\x90\x7b\xb8\x4d\x66\x46\x8e\x1d\x5a\xa9\xf8\xb9\x13\x35\xda\x4f\x57\x89\x0d\xa3\xa5\x94\x89\xc2\x39\xcd\xb0\x5b\x8b\x6e\x00\x3f\x07\x80\xd5\x76\x6c\x48\xdc\xfc\x8f\x4d\x19\x14\x4a\xb0\x67\x36\xce\x8d\x73\x8b\x74\x54\x2b\x81\x6c\x63\x4f\x0a\x43\xf9\xa7\x34\x98\x07\x43\x26\x23\x82\xd9\xc0\x2a\xfd\xb2\x09\x44\x9b\x14\x79\x64\xd6\x32\xe0\x51\x5c\xbb\x7e\xf9\x7d\x7c\xa3\xfa\x29\x7a\x49\x9a\x26\xab\x82\xd2\xc4\x14\x9d\x53\xd3\x75\xce\x21\x8d\x28\x30\x0d\x7b\x05\xf1\x8c\xb9\x26\x68\x2e\x81\xd3\x9a\x1c\x3c\xdb\x6d\x6d\x55\x38\xc4\x63\xee\x5e\xd7\x48\xb6\x7e\x72\x68\x46\xc1\x1a\x4f\x50\x6c\x8d\x71\x66\xe5\x23\x29\xaf\xe3\x55\x01\x08\xb9\xa5\x53\xca\x1f\xb9\xc3\xad\x1c\xe8\x28\x6a\xf9\xfc\xf6\x5d\x5d\xb2\xbd\xeb\x50\x98\xa9\x35\x9e\x70\x0e\x4e\xe0\x0d\x05\xa0\xb8\xa5\x8b\x77\x3b\xba\x3e\x3d\x68\x32\x6a\x39\x2b\x7d\x56\xad\x36\xca\x4a\x16\x02\x87\xaa\x57\x33\xf7\xb5\x7b\x91\x19\x31\x28\x08\xf1\x2d\xd4\xcf\xf9\x7a\xa2\x91\xf5\x41\x6a\x4d\x66\xfb\xbb\xf0\x0b\x0e\x78\xb9\x38\xeb\xba\x5c\xd5\xe9\x70\x5e\xa3\x6f\xfe\x37\xdd\xae\x74\x84\x1c\x59\xe9\xa0\x29\xe7\x02\xf6\x07\x35\x60\x61\x45\x2f\x1f\x82\xbf\xd6\x57\x05\xc7\x26\x5d\x76\x10\x11\xc9\xa1\xf8\x9c\xb5\x46\x57\xc6\x61\x96\x99\xf8\x11\xfa\x4b\x11\x55\xf1\xed\x90\xb7\xb5\x88\xf8\x47\x08\x66\x05\xf0\x4d\x13\x28\x7d\xf9\x2d\x27\xa7\xf5\x00\xe6\x4b\x20\xe2\x8a\xa8\xe2\x92\xca\x75\xf5\x0b\x69\xcc\x71\xe5\x06\xaf\xcb\xe8\x56\x69\x69\x43\x8a\x08\xd0\xc4\x1a\xd7\x94\x48\x91\x37\xb0\x9d\x6e\x45\xdd\x73\x97\x05\xdf\x28\x04\x17\x51\xd7\xed\xf0\x7d\xa3\xe8\x50\x91\xe3\xb7\x3c\x71\x5c\x82\xcd\x29\xf4\x6d\xa8\xae\xb6\x53\xd5\x23\xfa\x59\x25\x4c\x64\x06\xdc\x61\x01\x37\x12\x67\xcf\x5d\x1c\x07\x7c\xd3\x14\x75\x6c\x6d\xfd\xc2\x8c\x7d\xae\x66\xef\xf3\x26\xca\x94\x2c\x0f\x47\x45\x14\x2a\xc8\x3c\xe7\xa9\x7c\x23\xa5\xa2\x49\x59\x09\xa3\xc8\xa2\xfd\x59\x15\x3e\xaa\x94\x29\x0e\x36\xed\xe9\x2d\x8e\xab\x7e\xa6\x15\x1b\xf7\x13\xd0\x73\xc3\x07\x39\x43\xfb\x81\xaf\x55\x4f\xe0\x4a\x18\xd8\x47\xcb\x95\x0c\x1f\xef\x1d\x4c\x05\xea\x6b\x5f\x4e\x14\xd1\xfe\xe7\x13\x45\xcb\x75\x44\xef\x91\x9f\x6b\x8a\xaa\x1f\x74\x3c\xc2\xbb\x45\x26\xca\x71\x2b\x2d\xbc\xbc\xcf\x29\xdd\x94\xaf\x00\xa4\xca\x15\x7a\x30\x29\x43\xec\x16\x0b\xb2\x06\xd2\x4d\xa7\x69\xb0\x38\xeb\x64\x25\x55\x93\x96\x62\x2e\x48\x22\x47\x32\xa2\x58\x53\xe6\x9c\x19\xde\xba\x0e\x4b\xbf\x25\x29\xf2\xe9\x72\x15\xb9\x02\x9d\xc3\x53\xa2\x40\x80\xa7\x6a\x11\x7a\x03\x87\xf0\x07\x7a\x6f\x5a\x93\x46\x6b\x8f\x7a\xaa\xe3\xb7\xa9\xa2\x28\x09\x9d\x72\x50\x45\xb2\xd0\xd9\x70\xf3\xa4\x32\xdb\xa7\x91\x65\x02\x46\x84\xd7\x9e\x0b\x9c\xca\x67\x77\xfd\x79\xe5\xc6\xe6\x3f\x9b\x54\xbb\x8c\x1d\x17\xc5\x5b\x2a\xec\x31\x23\x93\xdb\x22\x6d\xf9\x76\x85\x53\x64\x89\x84\x5e\xb0\x91\x4f\xc7\x9a\x5c\xa9\x54\x1c\x86\xd7\x29\x12\x72\x3e\xbd\x3d\x4a\xb2\x20\x59\xdd\xad\xb8\xd0\x3e\xd6\xb2\x0d\x87\xa9\x86\x26\xb8\x0c\x05\x9a\xf9\x31\x0d\x02\xda\xa3\xf8\x90\x75\x92\x26\x8b\x52\x7b\x40\xa8\xcc\x1f\x80\x71\x43\xa2\xe9\x8b\x89\xe2\x52\xf9\x91\x6a\x66\x20\xc3\x8f\x66\x06\xa4\x81\x10\x5c\xf0\xb5\xca\x7b\x97\x47\x2a\x85\xb4\xce\x29\x78\xb7\xe3\x9d\x85\x77\xd5\xe8\x8d\xc2\xd4\xc4\x7d\x4e\x80\x60\x09\xbc\x87\x07\xe6\x1b\x17\x41\xf5\xc3\x2c\x2f\xd2\x1e\x1f\xd2\xf0\x19\x90\x2e\x12\xf6\x3a\x2d\x12\x42\xaf\x03\x9f\xfe\xd3\xa6\xfe\xb0\x11\x85\xf5\x74\xba\x22\xce\xfe\x6e\xc7\xc7\xdf\xdf\x55\x82\x7c\xac\xd2\xba\xc3\x27\xb1\x3e\xa6\x1f\x42\xc0\x89\x5d\x87\xc0\xef\xe3\x4e\x25\xc1\x49\xcb\x0d\x61\xff\x51\x05\x24\x3e\xff\x50\x1c\xa4\x49\x47\x01\x77\x45\xa2\x88\xf5\xbe\x26\xb6\x7f\xbf\xb1\x59\x75\xb8\xd6\x4b\x43\x8c\x88\x6e\x5d\xc1\xe9\xf5\x96\x0e\xb9\x2f\x4d\x1a\x75\x68\x47\x26\x2f\x52\x12\xc3\xe6\xc0\x54\x10\x65\x2a\xc9\x8e\xcc\xbe\x58\x8d\x06\x2e\xbe\x20\xb2\xc6\x0b\xdc\x63\x34\xa6\xd6\xfd\xc8\x4c\xd5\x24\x7d\x16\x16\x17\xda\xec\x4a\x8a\x21\xc1\x6f\x71\x0b\x3e\xdf\x28\x67\x38\xb6\x59\x1e\xd9\x19\x32\x6c\xbc\x21\xb5\x87\xc0\xd0\x0c\xd9\xaa\x78\x17\xac\x79\x16\x1c\x45\x4e\xe9\x66\xed\xc4\x80\xc4\x53\x78\x28\x1f\x2a\xaa\xd5\x0b\x9a\x7d\xe5\x82\xf3\x26\x56\x4d\x1e\x0c\x6d\x2a\x63\x25\xa2\x99\xf4\xfd\x30\x33\x7f\xac\xd3\xb7\x47\x5c\x2a\xb1\x97\x26\xa6\x1f\x98\x2c\xa7\xe4\x38\x32\xb5\x37\x14\x5b\xdf\xe5\x8e\x97\x26\x63\x15\x04\x98\x75\xd4\xf9\xb0\x2c\x37\x1a\x15\xf9\xa3\x88\xca\xbb\xd8\xec\x37\x55\xd4\x77\x54\xef\xa3\xf3\xb5\x0e\x89\xfd\x2f\x63\xf2\xd1\x3d\xcc\xfd\x81\x78\x15\x69\x16\x54\x8a\x72\xab\x28\xdd\xf9\x68\x8f\xbb\x74\xf8\x46\x19\x89\xd4\x0e\x4c\x18\x4f\xf9\x9d\xc5\x96\x09\x91\x0a\x68\x4f\x70\x06\x9c\x52\xc4\xfa\xc9\xd2\x52\x18\x94\x23\x4b\x4b\xc8\x31\xb9\xbb\x1e\x13\x90\xef\xa2\x00\xf8\xe1\xc4\x57\x1c\x56\x93\x91\x8d\x1f\x51\x48\x87\xcf\x2a\x8d\x21\x37\x3a\x4a\x6a\x0e\x7a\x59\xf8\xb3\x13\xba\xc1\xe2\x14\x68\x66\xd6\x71\xf2\xe3\x08\xbe\xa7\x6b\xcb\x17\x1a\x4a\x33\xed\x61\xe1\x34\x90\xf0\x5c\x87\xb1\x06\xf9\xc6\x2d\x9a\xd4\x86\x03\xbf\x3b\x50\x7c\xbd\xae\xe8\x56\xaf\x37\xe7\x09\x9e\x33\x91\xe5\x62\x96\x90\x47\xd1\x6b\x0a\xab\x94\x5b\x93\xa9\x19\x8f\x85\xf4\x57\xb8\xe1\xe9\xa7\x44\xf0\xdc\x6f\xa2\xd7\x8b\x24\xb7\x94\xa1\xdb\xbc\x4b\x87\x14\xf6\xcb\x5d\xb2\x68\x7c\x5d\x0e\xd2\xe6\x5d\x45\xec\x1c\x17\x2c\x87\x82\x62\xc5\x17\x0a\x5a\xf3\x45\x63\xa8\x97\x15\xbd\x3c\x8c\xc2\x6c\x4a\x7d\x48\x53\x84\x7f\x89\xa1\x05\x02\x48\xf7\x3a\x66\x49\x6c\x72\x34\x32\x34\x12\x97\x8b\xd1\xb2\x45\x9a\xf4\x93\x28\x32\xe9\x94\x8a\xd9\x1f\x59\x77\x9d\x75\xb3\x4f\x77\x7d\x42\xef\xf6\x43\x83\xe3\x20\x89\x06\xd4\x3e\xef\x7a\x43\x3e\xc2\x0f\x4a\x87\x97\xd7\xa9\xa0\x96\x54\xce\xc0\xa1\x80\x70\x8c\x41\x6f\x7c\xd7\xd4\xd9\x45\x72\x51\xbc\x6b\x70\xce\x6e\x60\x83\xf1\x4d\xc3\x67\x16\xda\x79\xb2\xea\x28\xb7\x85\x05\x9c\x7e\x56\x68\xc0\x7d\xf2\xab\x17\x99\x0c\xed\x77\x92\x14\xf4\x65\x5f\xf4\xe9\x8b\x58\x79\x43\x7b\x5b\x18\x67\x45\x5a\x95\x2e\x03\xde\x48\x7a\x48\x7c\xaa\x64\x9c\xbf\xd0\xaa\x20\xa9\xe9\x79\xa4\x60\xe7\x0f\xf3\xa1\x35\x8e\x7e\x1a\xd9\x17\x84\xc0\x7c\xed\x50\x8f\x51\x31\xe0\x8d\x23\x62\x98\x1e\x2b\xbe\xa1\x30\x51\x23\x93\x0e\xc2\x38\xdb\x49\x3f\x27\x62\x3c\xb4\xb4\x99\x15\x90\xde\x51\x7f\x07\x1c\x4a\xae\x6e\xc8\x17\xd2\xae\x76\x7f\xe5\xc8\xd5\xa7\xd6\xb7\xba\xa9\xaf\xbe\xda\xce\x8a\x60\x48\xb6\xcb\x29\x9a\x2f\xcc\xed\x67\x40\xce\x70\xa2\xda\xc7\x1a\xf5\x52\xcc\x8a\x4d\xe3\xa4\xc8\x14\x84\xf7\x4d\x05\xe1\x7d\x53\x19\x2e\x13\xe7\x86\x81\x0b\xf8\xc6\xeb\x70\xda\xf9\xa6\x51\x0c\x8d\x78\x7e\x78\xc6\x64\x4c\xcb\x5f\x92\xb1\x7e\x5c\x31\xde\xda\x55\x98\x52\x91\xa0\xf2\xc5\x79\xc0\xb4\x44\xf2\xde\x07\x43\x59\x9e\x86\xcb\x4c\x43\xeb\xf1\x0f\x34\x92\x82\x98\x68\x18\xb0\xd5\x24\x5d\x06\xc9\xa4\x30\xfe\x7a\x38\xe5\xdb\x84\xe1\x73\xda\x15\x8e\xa4\x42\xf3\x5e\x04\x49\x14\xd9\x20\xc7\x90\x09\xc4\xb3\xe5\xd4\x9f\xae\xd6\x06\x62\x71\xb6\x3d\x8e\x28\xab\xd0\x52\x64\x0c\x17\x15\x5d\xd6\xc5\x5a\x87\x78\xe9\xa3\x0c\x4d\x1a\x52\x87\x55\xcb\x57\x4e\xa1\x77\xfd\xff\xf2\xf5\xa7\x31\x92\x9c\xe9\x9d\x18\xde\x9d\x55\x7d\xf0\x26\x87\xe4\xac\xfe\x98\xdd\xbf\x73\xed\xc1\x72\x01\x53\xb4\x21\xc3\x6b\xed\x7c\x89\x54\x75\x8d\x38\x2c\x68\x8a\x85\xea\x56\x53\x4b\xf8\x03\xdf\x8a\x7c\x33\x33\x58\x91\x11\x39\x71\x54\x75\x8d\xfd\x41\x30\x16\xc2\x62\x61\x2c\x60\x5b\x6b\xad\x81\xb5\x21\xed\x1a\xbb\x92\x20\x5b\xd7\x48\x3b\x5a\xad\x26\x6b\x46\x73\x88\x9a\x11\x87\xc3\xe1\x7d\xf6\x7d\x55\x75\x57\x37\xfb\xbe\x8a\x46\x3c\xbf\xe7\x79\xdf\x27\x2a\x83\xfa\xc4\x0c\x76\x55\x56\x66\xc4\xfb\x3e\xef\x73\xfc\x0e\x7e\x3d\x56\x83\xff\xb2\xdb\xb5\x49\xbc\x36\xad\xa6\x5d\x02\x72\x55\x86\x9f\x07\xdd\xf8\x90\xee\x92\x70\xb6\x1a\xf0\x33\x65\x62\xf2\xbc\x1c\xba\x53\x00\x99\x09\x7a\xbd\xfc\x5a\xdd\x93\x1e\xb3\x03\xf7\xb6\x1c\xc9\xf9\xc4\xd8\x4f\x18\xa6\x3b\x94\x5b\x22\x47\x3a\x81\x82\x85\x2f\x02\x0d\xce\xd0\x76\xb6\xfe\x28\xef\xdb\xcc\xc4\xdd\x96\x42\x03\x6c\xd5\x94\x36\x55\x72\x1e\x5b\xd3\x4d\x7b\x3d\xba\x61\x78\xa3\xe3\x81\x07\xda\x1f\x6f\xd2\xd3\xf1\xc3\x22\x54\x05\xac\x14\xca\x17\x2a\xaf\x0e\xd3\x24\xb4\x59\xc2\x78\x47\x44\x6a\xae\x83\x58\x25\x06\x25\x09\xc0\x25\xa7\xb0\x89\x31\x7a\x38\x43\xdf\x8c\x9d\xf6\x10\x50\xb1\x03\xd6\x09\xc0\x22\x46\x1a\xbe\xc3\x7f\x8f\x3e\x35\xee\xf3\x0d\xa2\x7b\xb1\xd0\x22\xdd\x7f\xf4\xad\xee\x5f\x57\x91\xff\x37\x1b\xe6\x60\x0b\xed\xd5\x28\x69\x69\x6e\x9f\x5a\xf5\xa7\x26\x22\xec\xe2\x0c\xb7\xfa\x79\x99\x62\x17\xbc\xae\xd5\xed\x5e\xff\x4c\xe1\x9a\xd8\x16\x85\x6b\x35\xb3\xa2\x49\xcd\x92\x4e\x65\x76\x27\x54\x4f\xfb\xbf\xf9\x6f\x39\xae\x8a\x57\xbe\x92\x44\x99\x5e\x77\xbc\x6d\xa3\x48\x19\xdc\x3c\xab\x35\xd2\x7c\xef\x3a\xcd\x12\x33\xb4\x49\x01\xd4\x0f\x8b\x32\x2b\x7e\xf0\x39\x65\x03\x73\x62\xfc\x80\xfb\x20\x87\x9e\x99\x52\xc7\xcf\x58\x75\x9f\xaf\x29\x4a\xc5\xe6\xc4\xc9\x5c\xad\xa0\x30\x24\x8d\x2a\x8c\x29\x0f\xcf\xf0\xcd\x7a\x8f\xfe\x12\xbf\x9e\xb8\xdb\x87\x9e\x6f\x77\x6d\xaf\x0a\x24\x2d\x2f\xc4\x82\xfc\x51\xfa\x64\x0a\xc7\x5f\x1e\x29\xb3\xb5\x69\x5f\x9c\x32\x96\x9a\x2f\xc6\x6a\xa6\x5a\xc3\x34\x35\x85\xe4\x32\xf3\x9e\x96\x32\x3a\xf0\x08\xa1\x53\x4d\xf3\xd4\x61\x9a\x81\x6b\xc5\xb3\xf0\xb1\xe2\xd6\xed\x22\x50\x9e\xcb\xdf\xab\x9d\x2d\x58\xc9\x1a\x6a\xbd\x9f\x53\x6c\x40\x8c\x84\xda\x0a\x72\x2b\x14\xf5\x62\x96\x4f\x2b\x14\x8d\x03\xf8\x02\xf1\x2f\xe0\x81\x88\xb0\xb7\x9a\x8c\xc7\x26\xa9\x4e\x70\x6e\xb1\x3b\xc1\xf0\xc3\x33\xf2\xba\xf6\x31\xa2\xc2\x4c\x57\x5b\x11\x1f\xf1\x4c\xa0\x50\x0c\xa7\x69\x6b\xf1\x3f\x68\x44\xc3\xe9\xa6\x6a\x7c\xd5\x9a\x65\x9b\x41\xad\x11\x2d\x72\x4d\x3a\xbb\xea\xac\x8e\xab\x6c\x8d\xc3\x0b\x2a\xac\x6f\x68\xd1\xb3\x6f\x34\x0c\xbd\x4d\xb8\x9c\xa4\xab\xb1\xed\xf6\x65\xc1\xb3\x47\xa1\x6e\xfa\x5c\x9d\x00\x1d\xcd\xcf\xb7\x8b\xa4\x40\x90\x14\x8b\x9d\x96\xf2\xa5\x69\x4a\x7b\x47\x66\x8d\xb6\x0a\x76\xa0\x48\x4c\xb5\x94\xf6\x94\x6b\x4a\x17\xa6\xd7\x73\x82\xef\x62\xc9\xa8\x08\x22\xef\x4d\x64\x17\x64\xe3\x36\xca\x0b\x13\x65\x3c\x42\x41\x27\xea\x94\x12\x29\x03\x16\x4a\x86\x71\xbe\xb6\x5a\x1d\x98\xc2\xae\x80\x4a\xf0\x22\x3f\x86\x9b\x78\x58\xee\x70\x51\xcb\x51\x73\xc8\xc9\x51\x04\xab\x1b\xf1\x16\x7b\x8a\x5f\x2b\xb0\x71\x37\xca\xc9\xa7\x81\x11\x30\xdb\xa4\xd2\xb4\x7d\x74\xd2\xe7\x67\x96\xe0\x17\x94\x25\xba\xf1\xf3\x7b\x4a\xe7\xee\x3d\x6f\xe0\x37\xca\xcc\x5a\x0e\x81\x62\xd7\xc3\xa8\xbe\x41\x43\x43\xe3\xd3\x9d\xc2\xe4\x8b\x33\xed\xf9\xf9\x27\x69\x15\xa3\xd9\x0a\x78\xb1\xa8\xc4\x56\xab\x16\xc9\xc2\xe5\xb1\x42\x9f\x3d\xba\xae\xb4\x34\x8e\x8f\x95\x98\x34\x23\xb1\x30\x7b\x3b\x1b\x28\x2a\x19\x90\xe8\xe8\x97\x5e\xa1\x01\x6c\x4d\xf5\x5d\x94\xc1\x7d\x7b\xb0\x05\x32\xa8\x18\x48\x2b\xc0\xcb\x93\x9d\xd6\x81\x03\xdc\x06\x3c\x4f\xe7\x94\x13\xab\x77\xc0\x83\xab\x88\x0a\xc8\x59\x76\x75\x3c\xe6\xf3\xa7\x81\xb2\xcf\x7f\x43\xcd\xa1\xf7\xb8\xc0\xbf\x94\xa5\x64\x79\x0b\x19\x28\x48\xce\x6c\x9f\x6c\x04\x5d\x9a\xbc\x58\x83\x7f\x1f\x4f\x65\x95\x4a\xf7\xa4\x1d\xc1\xec\xa1\x2a\xaa\x99\x1c\x48\xc9\x26\xec\xdc\x13\x6e\xa5\x94\x49\x37\x2d\x97\x0a\xdb\x8d\xd7\x30\xb3\xc2\x54\x08\x1b\x1e\xcf\xe4\xc3\xb1\xca\xdf\xcf\x4f\xb0\xfc\x0f\xcf\xbc\xd8\x2e\xaa\xfc\x79\x98\x96\x49\x41\xd9\xba\x4c\x1e\x5b\x4e\x1f\x1b\xad\x41\x81\x77\x3c\x5a\xe3\xe8\x8b\x9d\x6a\x13\x4c\xab\xce\x6e\x4b\x6c\x96\x0f\xa2\x51\xbe\x5f\xed\x69\x16\x2c\x70\xc2\x36\xaa\x5b\xde\x52\x32\xbf\x0a\x48\x00\x1a\x02\x4e\x49\x24\x2f\xfc\x0b\x78\x64\x18\x25\x5e\x6f\x30\xb8\x9b\x6d\xaf\x9a\xb8\x18\x60\x8a\x29\xe9\xda\x06\xfa\x8c\x7c\xa1\x60\xfb\xa3\x28\x5c\x26\x10\x30\xb3\x96\x03\x2f\x98\x7c\xba\x09\x91\x9d\xf6\x7a\xf9\x20\x4d\x0b\x25\x1c\xfa\x5e\xa0\x4e\x59\x05\xa7\xcc\xc2\x7c\x69\xaa\x5a\xdb\xc2\x26\xa3\xcf\x83\xee\x3b\xc6\xd7\xd8\x33\x57\x27\x88\x7c\x73\x73\x90\x99\xcd\x0b\x1c\x2d\xf4\xc7\x64\xd6\xe9\x47\xdb\xef\x38\x0c\x7b\x6e\xb3\x95\x08\xfe\x79\xf3\xce\x73\xca\x37\x38\xdf\x0d\x9e\x10\xc4\xef\x68\x94\xa5\xa3\x2c\x32\x85\x65\xb3\x1d\x94\x69\x47\xe8\xa4\xe3\xd7\x8a\xc5\x86\x82\x37\xe3\x88\x82\xce\x0f\x0e\x7b\x07\x00\xa8\xc2\x05\xda\xde\x57\xd4\x2f\x72\xaa\x9a\xc3\xf4\x11\x4d\xad\x9b\x40\x4e\x20\x21\xbd\xac\x8e\xfc\x0b\x14\x0e\x10\x20\xdf\x40\x04\xc1\x6f\xbc\xaa\xb2\xd6\x37\x82\x09\x7b\x77\xf0\xc8\x7e\x1c\xf8\xf3\xff\x82\x8a\xca\xa7\x02\x65\x1b\x76\x7d\xac\xc0\x8f\x0f\x4f\x98\xba\x1e\x9e\x69\x57\xc7\x0b\xa8\xc5\xee\x10\xfd\x53\xfc\x12\x5f\x4c\x80\x24\xab\x0a\x29\xb3\xc6\xc9\x66\x20\x29\xfe\x89\x32\x47\xf9\x89\x02\xc5\xe5\x6b\xf1\x8a\xcd\x0b\x71\x66\x42\x82\xf4\x83\xc0\xc3\x18\x7e\xa0\x96\x65\x68\xf2\xc1\x43\xf4\x7d\xb1\x64\x7f\x9f\xc0\x5f\x42\xf5\xa3\x37\xc0\x34\xf7\x47\xf8\x92\x80\x54\xfd\x19\x62\x2c\x4e\x36\x1e\xb7\xba\xc5\xe7\xd9\x37\xbb\x3a\x3e\x6c\xdc\x52\xd2\x54\x4c\xba\x72\x16\x94\xce\xb2\xfb\x7d\x85\x3c\x6e\x51\xc7\x48\xfc\x3d\xa4\xbb\xe4\x30\xbd\x7c\x92\x8b\x01\x84\x47\x29\xbe\x33\xd1\xc3\x3f\x30\xdb\x4e\xd2\x6c\xd5\xf6\x23\x93\x70\x97\x48\x90\xf8\x28\x70\x04\x8b\xdf\xc0\xa3\x32\x4b\x69\x99\x74\x91\x71\x01\xc7\x73\x4e\x29\xdf\x9e\xd3\x1c\x06\xfc\xa0\xef\xc4\x9c\x51\xe2\xa3\x67\x1a\xbc\x58\xdb\x65\x92\x99\x15\xa7\x40\xe5\x80\x2a\xda\x06\xbc\x09\xb9\xd5\xb5\xc3\x52\xd2\x13\xd1\x0b\xd0\xe2\x01\x4d\xee\xb9\x5d\x93\x55\x05\x92\x9e\xf4\xb3\xac\x18\x5f\xec\xdc\x51\x5d\xa4\x72\xb3\x3c\x1f\xff\x38\x50\xc3\xf2\x8f\x95\xc3\xd5\xc8\xac\xed\x6f\x39\xdb\xa8\x69\x74\xf3\xb1\x75\x58\xdf\x95\x79\x76\x44\x3e\x14\xce\x5d\xf5\xc4\x59\x12\x98\x9e\x38\x4e\xfe\x4b\xb4\xa7\xd0\xe1\xba\x30\xae\x0d\x7a\x1b\xfa\x39\x71\xda\x27\x9b\x71\x5e\x08\xa2\x4c\xd8\xf2\xba\x99\xae\xc1\x6f\xe2\xd8\x26\x45\xba\x2a\x37\x00\x3b\x95\xdd\x4c\xf8\xa2\xd1\xb1\x61\x54\x1d\x33\x65\x3e\x55\x2d\x5d\xed\x51\x0d\xa0\x36\x77\xb2\x30\x97\x3b\xa3\xaa\xf8\x6e\x04\xac\xa5\x73\x6e\x85\x13\x08\xfb\x1b\xe1\xcf\x3a\x70\xf9\xe1\x19\x77\xf8\x48\x0b\xae\x9f\x76\xf3\x29\x95\x3b\x9f\xac\xb1\xe3\x6a\xb6\x01\x0d\x9f\x7a\xa9\x8c\x63\x5b\x44\x3c\xcf\xc7\x56\x7e\x6d\xec\xd9\xbc\xaf\xb9\xa9\xdd\x92\x4d\xc8\x0d\xb8\xab\x35\xf5\x61\x4a\xcd\xaf\x3b\x6a\x94\x1a\x86\x59\xc9\xd6\xbd\x4c\x3d\xa7\x6f\x25\x34\xf4\x06\x78\x43\x8f\x85\x27\xb7\x29\x7f\xd8\xbe\x3a\xfe\x2c\x1f\xd1\x7e\x95\x9d\x92\xed\xdc\x34\x1a\xdc\x8a\xb2\x73\x51\x81\xa0\x6a\x28\xcc\x6b\x13\x8f\xec\xe9\x76\x66\x42\x3b\x48\xb3\x5c\x2b\x44\x9d\x52\x18\xdf\x53\x5a\x5a\x37\x1d\x9a\x64\x8f\x07\x24\xfe\x58\xcb\xc4\x61\xe6\xe3\xb4\xae\x17\x17\xbc\x9c\xd2\x2f\x7f\x85\x0f\x8a\xef\x36\xf9\x19\xac\x46\x90\x19\x52\x26\x11\x0a\xe3\xc6\x98\x39\xf1\xa1\x97\x6c\xda\x86\x83\x54\x80\xc9\xc8\x75\xde\x57\xb6\xa3\xef\xab\x78\x9d\xd9\xbc\xd8\xa3\x74\xb8\x91\xc8\x21\x4a\xb6\x70\x77\x90\x99\x61\xd6\x88\xe5\xd7\x82\xcf\x20\x1b\x48\x28\x2d\x95\x28\x4b\x93\xbd\xaa\x27\x71\x42\x5b\x37\x9c\xe7\x9e\x9a\x90\x17\x3d\x54\x15\xd6\xdb\xfc\x3a\x50\x2a\x2b\x27\x5c\x9c\xce\x47\x91\x8d\x57\xd2\x3e\x34\x0f\x1d\x8c\x4c\x91\x75\x27\xb5\xfb\xbe\x3a\xdb\x8e\x09\x15\x56\xed\x09\x44\xc0\xd3\x88\x3b\x7c\xe1\xf0\x36\x99\x25\xd4\x9e\x59\x8a\xd9\x33\x0f\x2d\xf6\x8f\xe9\x73\x21\x11\x84\x53\x15\x52\x80\x2b\x2a\x4c\x9b\xa5\x74\xc5\x32\xe4\x09\xff\xda\xea\x78\xcc\xcc\x47\x4a\xdf\xec\x7d\xe2\x61\xa0\x28\xdf\x54\x70\x65\x86\x7c\x88\xce\xb8\x12\xa3\xbf\x39\xf6\x52\x8c\xd7\x71\xc6\x49\xef\x7e\x67\xe6\x35\x7b\xa8\x3d\x48\xb3\x22\x0a\xcb\xb8\x28\x33\xa6\xa8\x20\xdb\x7a\x2d\xf0\x59\xd8\x6b\xaa\x7f\xf4\xdc\x81\xaf\xb4\x94\xdf\xf0\x8e\x69\x85\x32\x54\x1b\xa4\x79\xa1\x9a\xdc\x37\x55\x93\xfb\xa6\x12\xa1\x1b\x44\x5d\x6b\x56\xcd\x1a\x0b\x95\x3b\xce\xe3\x82\xb3\x4f\x3a\xd7\x3c\x41\xaa\x92\x45\x93\x75\x99\xc1\xe4\xa6\x13\xee\x04\x06\x12\x52\x9a\x9b\xd5\x07\x61\x05\x03\x4d\xa8\xfa\xc1\xd8\xbb\xb4\x17\x36\xa3\x11\x3e\x7e\x6c\x5f\xc7\x5b\xf7\x01\xc3\x84\x7b\x71\x16\xed\x7e\xe9\x84\xaa\x3c\xe3\x5a\xa0\xa9\xd8\xba\x7d\x4d\x92\xea\x39\x6e\x1b\x4e\xe2\xf7\x29\xd3\xe3\xd7\x81\xaf\x91\x07\xd6\x74\x89\x00\xca\x3f\x2d\x50\x30\x2f\xb7\xbd\xd5\x3c\xa5\xcd\x8a\x01\x84\x95\x59\xe4\x51\x8b\x55\x9c\xd6\x4a\xb6\xc3\x51\x9a\x15\xdc\x58\x78\x56\x8c\xb7\xe8\xd9\x88\x09\x97\x22\x9c\x57\x4b\x23\xb6\x60\x92\x88\xc4\x89\x5f\xdc\xe7\x34\x31\x30\x50\x88\xb3\x5d\xeb\x4a\x13\x65\xac\x54\xaa\x14\xee\x7d\x97\x32\xb8\xef\x8a\xc1\xbd\xa8\xc3\x56\xbf\x22\xb2\xb1\x4d\x03\xb0\x9e\x89\xe3\xda\xa8\x99\xe5\x83\xf8\x42\xcd\xa5\x66\x9e\xfb\xb2\x9a\xdd\xdd\xd6\xb3\xbb\xdb\x0d\x70\x89\xf6\xd0\xe6\x79\x96\x3f\xc3\x47\x34\xbe\xdb\x75\x6d\xf5\x70\xbd\x89\x5d\x19\x9b\x25\x53\xa0\xaf\x28\xb2\xaa\xf4\x2b\xa2\xab\xaa\x19\x10\x94\xd6\xec\x51\x72\xce\xc2\x13\x00\x5d\x82\x65\x83\x70\x30\xa3\xd7\x27\x0e\x7f\x7e\x11\x6c\x34\x11\xcd\xf2\x32\x2f\x4c\x94\x70\x22\xc7\x28\x17\x9c\x61\x02\x79\x69\xc0\x58\x7c\xb1\x6d\xba\x2f\x9b\x50\xa0\x38\x4d\xa6\x40\xbe\xc6\xeb\x19\x30\x87\x67\x5d\x37\xde\xfb\x68\xee\x82\xea\x12\x32\xb9\x4b\x48\x20\xf9\xa7\xe8\x79\xa2\x31\xb0\x35\xf1\x19\x88\x06\x10\xf5\x4d\x66\x0b\x9e\xb3\x22\xa1\x3f\x8a\xbc\x86\x2f\x74\xe3\xf8\x85\x69\xaf\x54\x00\x08\xa2\x68\x5b\xfa\x8e\x06\x3f\x69\xe4\x60\xfb\x3a\x1a\x7b\x00\x3c\x84\xab\xc6\xee\x28\xb0\x22\x73\x39\xc4\x5e\x67\x67\xb8\xfc\x52\x3b\x0f\x23\x9b\x14\x51\x4f\xd1\x00\x99\x79\x47\x77\x4c\x58\x78\x7e\x9c\xbe\x46\x8a\xc3\x7b\xa8\x36\x61\x24\x01\x62\x86\xb4\x6d\xe8\x64\x11\x8c\x81\x57\xd8\x47\xa1\x82\x5e\xfe\x71\x15\x56\x63\x6b\xb2\x64\x5a\xdb\x6c\xff\x08\x0b\x46\xea\x23\x8f\xa9\x6f\x75\x3c\xb3\xb5\xb5\x2e\xd9\x56\x62\xc2\xaf\xdb\x38\x89\x96\xa7\x7c\xe7\x7b\x37\x15\x39\x58\x7f\xdb\xa4\x4f\x40\x79\xc2\x97\x1e\xed\xf8\x61\x0c\x53\x62\xf6\xfa\xf1\xf1\x1d\x25\xdd\x76\x07\xdf\x43\x78\x10\x9a\x14\x31\xf6\xb0\x95\x13\x14\x30\x64\x48\xed\xb5\x76\x4c\x31\xb0\x43\x43\xd9\x4a\x6d\xb0\xe3\x68\xe3\x73\x73\x82\xb6\xd5\xd6\x48\xa9\x34\x52\xf1\xdd\xa1\xfb\xc8\xaf\x27\x70\x30\xb3\x87\xda\x45\x3a\x52\x1d\xc5\x6d\x05\x33\xd9\x6e\xca\x1b\xf3\xe5\x2a\x7b\xad\xde\x5f\x04\xa8\x5b\xf3\x5e\x98\xda\x1b\xe4\xd0\xa8\xd1\xf0\xfe\x91\xc6\x9e\xcf\x4f\xb7\x94\xbc\xad\xc9\x73\x93\xe7\xec\xca\x4a\x6b\xdd\x95\x4e\xd5\x5a\x97\xd2\xc9\x6f\xb8\x32\x37\x08\xeb\x78\x38\x70\x2f\xe5\xd7\x4d\x79\x5f\x41\xb5\x1c\xdd\x49\x00\x64\xb6\x15\xbd\x99\x83\x24\x2a\xe1\x6b\xe3\x27\x7d\x50\xb2\x19\xd6\x74\xc1\xdc\x6d\x31\x5b\xf0\x93\xbc\xab\x5a\x9f\xed\x62\xf0\x80\xc7\xf1\x99\xbd\x7e\x56\x7c\x63\xac\x2a\x2f\x3e\x83\x84\x4a\xa4\xd5\xe2\x4f\xd0\x3b\xa3\xb3\xbe\xbf\x43\x67\xbd\x4c\xaa\x1a\xca\xc6\x30\x1d\x45\xd2\xfa\x67\x0f\x46\x7a\x14\xe2\xc7\x38\x09\x79\x2a\xd2\xb8\x8b\x38\x85\xc6\xc4\xc3\xa4\x6d\x82\x6f\xa5\x55\x66\x3f\x1d\x2b\xc0\xf6\x6b\xb4\xce\x84\xd0\xf2\x50\xe4\x5b\x13\x28\x4d\x84\x8b\xc3\x04\x44\xf1\xc3\xf6\xa3\x11\xd8\x8b\x14\xb6\x4b\xf7\x90\x69\x17\xb4\xa7\x11\xcd\x2f\xd3\xf2\x07\x2d\xe4\xc3\x40\xa0\xb5\x3d\x50\x2f\x6a\xb6\x95\xd2\xa2\x80\x58\x32\x6a\x81\xeb\xf8\xb3\x92\xe8\x3c\xae\x1c\xab\xc3\xb4\x9f\x44\x5f\x67\xdd\x29\xe5\xc1\x3b\xeb\xea\xbb\x9d\xfd\xd1\xb9\x39\x78\xee\x99\xd8\xfd\x9e\x70\x1a\x14\xbf\x41\x13\xcc\xe2\xd8\xf6\x53\xf6\x58\x46\xff\x12\x8b\x91\x5f\xab\x62\xdc\xc4\xf1\x63\xf4\xe4\xb1\x55\x76\xad\x57\x35\x37\x92\xdc\x8d\xb1\xc2\xa9\xee\x57\x9c\x96\x87\xd7\x15\x71\xf9\x2c\x60\xe2\x28\xf3\xef\xd1\x4d\x43\x9c\x7a\x88\x54\xb7\xf0\x9d\xee\x29\xa3\x58\x90\x36\x9c\xf9\xbc\xb7\x53\x18\x69\x04\x1a\x43\x75\x59\x9d\x4f\x55\x53\x9f\x12\x46\x16\x2d\xd6\xef\x52\xb8\xc2\xff\xff\x1d\xcd\x0d\xbb\xa2\xe4\xd2\xca\x24\x2a\x06\x69\x4c\x86\xbc\x10\x07\xe1\x36\xf9\x63\x9e\x2f\xd2\xb3\x19\x6c\xe4\x35\xfa\xbd\xba\x2b\x02\x9d\xf7\x67\x44\x1a\x47\x2b\xd2\xbf\xc5\xbf\xfe\xae\xea\xb1\xfe\xee\x44\x6c\x7a\xea\xa9\x76\xaf\x4c\x88\xd8\xb9\x4d\xdd\x8a\xed\x4b\x3a\xc3\x18\x98\x24\xb1\xd0\x56\x74\x2e\x3d\x9e\x76\xf4\x0d\x84\x56\x66\xfc\x06\x0a\x4b\xf7\x8d\xb1\x5f\xb6\x47\x15\x79\x9b\x7c\xad\xe3\xb5\x07\xe8\xee\xb9\x11\x8f\x9b\x55\xa0\x37\xc9\x2e\x64\x8a\x24\x7d\x07\x0f\x02\xc3\x86\x93\x63\xc5\xbf\x3b\x49\xb8\x6c\x46\x46\xd2\x3c\x1e\xb3\xf9\x5d\x00\x2d\xb8\x6d\xfa\x9c\x34\x30\xff\x25\x96\x8d\x68\xe9\x35\xd0\x7e\x7a\x65\xe6\x28\xbf\x22\x4b\xed\x1b\x42\xf7\x53\x1a\x25\xad\x13\xfa\x23\x68\x42\x5c\x77\xe9\x7f\x1e\xc5\x31\xe6\xbd\x54\x38\xfd\xb3\xff\xac\xa3\x98\x68\x5b\x2a\xff\xdf\x1e\xbb\x6e\xfe\xd1\xc7\xd7\x1b\x06\x95\x26\x4b\xcb\xa4\x4b\x38\x76\xd4\xc0\x30\xe4\x12\xd0\xac\x6f\x34\xa1\xdb\x2b\xc5\xbd\xb7\x4d\x34\x61\x11\xad\x10\xde\xf6\x3e\x5a\x7f\xe2\x67\x51\xdd\x66\x80\x49\xde\x47\x3d\xca\x64\x3d\x2c\x6b\xfe\x97\xb1\x4a\x49\xe8\xfd\x5d\x7a\xe2\x7c\x79\xe0\xa7\x03\xa0\xf2\x29\xcc\xac\xc4\x25\xc3\xeb\xa1\xc7\xb6\x1f\xe5\xb1\x29\x52\xee\xdf\xa2\xa6\xba\xad\x5c\xf6\x6e\x4f\xa4\x47\x2f\xbd\xd4\xee\x46\xb9\x19\x8d\xac\xc9\x8c\xac\x7d\xd4\x46\x1b\x4a\x8b\x60\x43\xd5\xc1\xa4\x45\xa3\x8d\x56\xef\x69\xb2\x22\x94\xa2\x01\x4f\xfa\x89\x9a\x2a\x5e\x1a\xeb\x7c\xae\x6b\xed\x50\xb3\xf6\xb1\xd4\xf0\xe4\xef\x2a\x26\xc8\xb9\x09\x28\x01\xa5\xbf\x61\x5a\x26\x45\xb6\x36\xb4\x7c\xd8\x37\x29\x34\x3c\xa2\x70\x37\x36\x0b\xed\x0e\x64\x9a\x47\x98\xd5\x8c\x35\x92\x22\xfd\x9c\x12\x2e\xb8\xc5\x9d\x0c\x08\xfb\xb3\x5b\x95\xd3\x7a\x74\x23\xa2\x0f\xb1\x40\x11\x82\x4f\x23\x04\x21\x7a\x6e\x51\x57\x1c\x0f\x6e\x2f\x74\x7a\xb0\x5b\x7f\x1d\xbd\x6f\x61\xf1\x57\x09\x1c\xce\xd6\xf3\x90\xbd\x72\x5c\x55\xdf\x59\x3a\xaa\x10\x5e\x48\xe4\xa4\x47\x48\xab\x09\xdb\xe3\x2e\xad\x20\x61\x63\x7a\xb1\x60\xf6\x31\x42\x20\xfe\x41\xe3\xa8\xcf\x44\x49\xbc\x86\xdb\x24\xe9\x8a\xa7\x84\x9f\x56\xb1\x74\x94\x59\x37\x15\xaf\x56\x38\xf2\xbc\x6b\x2a\xe7\xbb\xa6\xe4\x56\xec\x91\x11\x4d\x2d\xf6\x51\x6c\x41\x37\xeb\x16\xee\xa4\xb8\x8b\x56\x7f\x06\x89\xe3\x35\xfa\xf8\xfc\x1a\x0d\x22\x1c\x30\xdf\xd5\x68\x93\x3b\x64\x1b\x8b\xed\x79\xc2\x4d\x96\xbb\xbe\x81\x86\x73\xf9\x1e\x1d\x18\x48\xce\x2f\xe0\x7e\x8b\x1f\xe6\x64\x41\x38\xdb\x36\x71\x9a\xa0\xa6\xe5\xb0\x43\x3d\x27\x09\x41\x35\xa0\x46\xcf\x60\x8b\x35\x11\xe2\x7d\x21\x3b\x48\x47\x7b\x3d\xb2\xe8\x98\x52\x48\x85\x46\x37\xea\xae\xfd\x14\xe9\xa4\x3f\xa6\x66\x13\x9c\xbf\xe1\x2c\xfb\x61\xe0\x0b\x8a\x97\xd3\x28\x29\xf6\xd3\x92\x43\xda\x36\x85\xa3\x98\xbb\x4c\xf4\x77\x9c\x9f\x4c\xf5\x16\x98\x9a\xfd\x33\x0a\x47\x48\xb6\x4f\xaa\x11\xd0\x29\x44\x7d\x7c\x02\x76\xda\xc6\x5a\xbc\x59\x73\x00\xb4\x06\x98\x31\xd1\x3a\x6f\x39\x15\x92\x26\x37\xde\x83\x6d\xd3\xcf\xac\x30\x18\x45\x89\x52\xd9\x64\x71\xf1\x29\xe6\x61\xf2\x14\x47\x69\x1c\xe5\x83\x29\x85\x8d\xfd\x74\xec\x8b\x63\x0a\x2f\xa4\xec\xe5\x86\x56\x26\x5c\x26\x6c\x4b\xf5\xac\x19\x56\x46\x5b\x53\x20\x66\xbe\x6f\x6b\x8b\x01\xab\x53\x36\xfa\xa3\x34\x18\xc9\xa0\x16\xb4\x3c\xc6\x51\x70\x05\x87\x5d\x68\x20\x02\xb5\xf3\x32\x5c\xe6\x56\x87\x08\x40\xd6\x48\xea\x8f\xab\x3e\xd3\x90\x95\x50\x1f\xa4\xf5\x24\xc5\x63\x15\x0e\x64\xc8\xac\xe0\x90\x40\xfb\x20\x80\x80\x52\xc5\x16\x19\x3a\xe4\xc0\xba\x1c\x81\xe5\xe8\x58\x15\x29\x53\x1d\x35\x61\xde\x82\xc6\xb2\xb2\xd8\x10\xdd\xe3\x3b\xba\x0c\xff\x9b\x89\x5e\xeb\xfc\x7c\xdb\x66\x69\x97\xdb\xa7\xb8\x0b\xf7\x14\x2e\xe1\xa6\x5e\x4d\x6f\xb8\xf9\xef\x28\x2d\x33\x81\x87\x30\x64\x6f\xac\x30\x93\x37\x54\x6f\x79\x68\x4d\x41\x83\x13\x24\x12\xc0\x48\xe2\xbb\x5d\x53\x48\xc8\xd3\x13\x67\xc3\xe1\x99\x17\xab\xd3\x2c\x4a\xc2\x98\x7a\x2a\x74\xe7\xd0\x31\xf8\x50\xcd\x72\x3f\x04\x6c\xa1\x3e\xe7\x5b\x7d\xa6\xa5\x14\x9d\x41\xe2\xe0\xd7\xda\x62\x27\xca\xc2\x18\x30\x2f\x04\x3a\xbe\x59\x6c\xa2\x86\x80\x85\x18\x05\x93\x00\x91\x62\xd9\xb9\x3f\x66\x0f\xb5\x97\x4c\xb2\xec\xd0\x80\x08\x11\x97\xb5\x48\x27\x7d\x62\xb1\xb1\x99\x00\xdc\x1c\x68\x87\xd9\x5a\x5e\x98\x98\xd6\x33\x72\x2e\xdc\x1d\x7e\xad\x40\xc9\xd4\xd7\x9d\x9a\x74\x22\xc1\xc2\xff\xfe\xd8\x37\xdb\xce\xaa\xb5\x39\xca\xd2\x51\x55\x64\xc2\xa7\xcd\x9f\x88\xbe\x9b\xcf\x64\x75\xfe\x07\xe4\x34\xc2\x2c\xfd\x2c\x3a\x54\x92\x66\xc5\x80\x8e\x7e\x67\x86\xe9\xd4\x25\x8f\xd5\xc4\x44\x54\x95\x96\x59\x13\x53\x76\x85\x0e\xab\x43\xf4\x39\x20\xc4\xf1\x09\x0c\xf3\xec\xa1\x76\x37\xca\xec\x54\xb5\x93\x44\xc0\xb6\xe5\xfc\xfa\x1e\xe8\xf8\x81\xe1\xf4\x7a\x83\xc5\x9a\x1d\x2e\x65\x26\x94\x35\xe4\x1a\x84\xd5\xd7\x95\x06\xe1\xce\xfa\xec\x1f\xb6\x5f\x36\xe1\x72\x9e\x82\x7b\xca\x5c\x22\x37\x9d\x76\xc5\xce\x85\x9a\x73\x58\x13\x4a\x27\x1f\xb8\x2e\x09\x32\xc4\x1b\x4a\x91\xe7\x86\xdb\x51\x43\x63\xf3\x22\x4b\x5b\x0a\xb6\x19\xd4\x74\xd7\x1b\x00\xcb\x51\x52\x98\xa4\x1f\x89\xf5\x14\x8b\xc5\x29\xcb\x9c\x49\x3b\x2d\x6e\xdc\x53\xf7\x43\x2b\x8f\x6d\x8d\x6b\x58\x63\xdf\x99\xa0\x1d\xd8\xb7\x49\x49\x88\x79\x07\xba\xdc\xc0\xfa\xe0\x0b\xc5\xb3\xcd\x57\x6d\xd7\x26\x14\xbe\x91\x1d\xa3\x52\xe1\xd7\xde\x28\x48\xfa\x8d\x7c\x6b\xb0\xea\xb6\xa8\x9b\xc9\xaf\xd5\xd1\x3b\x8c\x70\x92\xa3\x5d\xcb\x03\x5b\xbe\xd0\x6a\xbc\xb1\xc9\xf3\x28\x04\x20\x9c\xad\xb7\x71\x13\xb5\x0f\xb7\xa3\xc3\x3b\x04\x45\x53\x02\xf1\x2c\x94\xad\xf1\xe9\x78\xdf\x6b\x01\xc2\x0b\x93\x56\x7e\xb3\xed\xae\x2d\x8b\x3c\x1c\xc0\xc1\x08\x0d\x84\x7b\xc8\xf9\xf8\x62\xac\x50\x5e\x4b\x36\x63\x71\x23\x69\xcc\xd2\x4f\xf2\xc5\xc4\x82\x64\xad\x76\xf2\x7d\x04\x17\x7d\xde\x63\xa3\x16\x1d\x4e\x4a\x75\xde\x13\x47\x51\xc1\xdd\x67\xa3\x1e\xbe\x98\xa8\x9c\xe6\xe7\x09\x9c\x24\xbb\x04\x9f\xf8\x5d\x05\x10\x7b\x57\x61\x8e\xd9\xad\xc9\xc4\xfb\xf0\x17\x70\x53\xa6\x80\x9a\x43\xd4\xb8\xa9\x32\xa4\xff\x9d\xee\x3c\x56\xd7\x35\xfa\xb8\xd2\xda\x56\xe0\x9b\x9b\xb8\x01\x98\xb4\x35\x0e\x55\x7b\xd5\x52\xcc\xa6\x3c\x6a\x95\xc9\xfb\x0e\x3d\xeb\xd8\x25\x53\x9d\x27\xd5\xac\xd4\x57\x44\x4a\xa8\xe3\x24\x84\x81\x71\xce\xb1\x3a\x24\x36\xf8\x8d\x26\x65\xd0\x30\x8b\x46\xa3\xd8\xe1\x88\xa5\xaa\xae\xde\x4f\x8a\x6a\xbf\x12\x47\xb1\x01\x7a\x5b\xd1\x39\xf5\x20\x60\x72\x60\x5f\x45\xb8\x34\xee\x66\xe5\x90\xa1\xa3\x68\xc7\x7d\xaa\x24\x48\xf6\x75\xf4\xce\xde\x81\xa5\x9c\x9b\x6b\x1f\x98\x7d\xdc\x4b\x0e\xb7\x3a\xaa\xb1\xf6\x07\x63\x65\x60\x7f\x0e\xb9\x82\xd8\xc3\x28\xb6\xff\x4d\x4a\x91\x65\xc0\xad\x38\x3c\xf7\x77\x5c\x5d\xbe\xff\xd2\xd8\x4b\xf7\xdf\xa3\x92\x44\x12\x21\xfa\xd8\x02\x0d\xa1\x47\x89\xaa\xf6\xaf\x28\x01\x72\xd2\xcc\x55\xd6\x82\xb2\xee\x44\xa0\xb4\x9d\x45\x68\x56\x1c\xff\x7d\x07\xb5\xb5\xae\x65\x94\x28\x44\xc8\x58\x43\x8d\xb0\xbb\xd6\xdc\x47\x1f\xd9\xad\xac\xea\xbd\x45\x7c\x95\xfe\xaa\x48\x5b\xe8\x7d\x46\x59\x34\xee\x12\xd0\x19\x28\xfb\x30\x36\xc7\x37\xdb\x85\x7c\x5c\xe2\x8d\x07\xae\xbd\xa3\xd4\x2a\x47\x51\x7f\x5a\x29\x04\x5d\xc0\x7a\x42\x8b\xf2\xe4\x58\x23\x2e\x55\xef\xf2\xa4\x9a\x0b\x66\x36\x4c\xb3\x6e\x94\xf4\xf7\x68\xf6\x01\xde\x46\x6c\x6c\xaa\xcf\xe7\x44\xbc\xdd\x86\xfa\x7d\x9a\x54\x08\x2f\xe0\x91\x5a\x1b\x23\x4d\x1e\xa8\x42\x31\x3b\x25\xe0\xc8\xc3\x6a\xba\x43\xcf\x11\xb5\xe8\x1b\xf4\xa5\x50\xd7\xfe\x04\x37\x0e\xdf\x76\x5b\x51\x20\x8f\x06\x1e\x3b\x72\x52\xeb\x6c\x1c\xc5\x33\x95\x07\x47\x0b\x0a\x07\x33\x6b\x3a\x60\xb4\xf3\xfd\x06\xbb\xeb\xd9\xb6\x4d\x56\x6c\x9c\x8e\x6c\x8d\x13\x01\x44\x89\x78\xfb\x4b\x9f\x36\xcc\xd0\x89\x47\x46\xf5\x91\x16\x04\xfd\xa8\x51\xf8\x29\x4e\x73\x5b\x20\x9a\xa1\xe7\x78\x5d\x59\x50\x5c\xaf\x32\x12\x39\xb4\x6c\x52\x44\x80\x9d\x1c\x9e\x11\x1b\xd9\x40\x01\x5f\x2f\x2a\x67\xed\x77\x70\x17\xe5\xb4\x75\xfe\x1f\x66\x38\xb2\xa6\xdc\x53\xbd\x03\xa3\x83\x79\x45\xab\xc9\xd6\x41\xf7\x4f\xd5\x07\xc1\x28\xf1\x2f\x03\x95\x27\xb5\x3a\x0d\x92\xae\x79\x62\xfa\x1c\x15\x44\x84\xbd\xd6\x64\x9a\x77\x52\xdc\x0d\x64\xc5\x83\xed\x7e\x2c\x6d\x63\xee\x01\x07\x8a\xa7\xb3\x51\x6b\x98\xa4\x4b\x39\x50\x25\xe8\xf4\x01\x13\x8b\x0d\x05\x4c\xac\x90\xcc\x6a\xaa\x8f\x5a\xb0\x57\xa1\x78\xf3\x38\x1a\x0e\x2d\x44\x17\xb4\xde\x95\xb8\x45\x49\xe7\x6f\x60\x57\xa5\xb0\x14\xad\x4c\xff\x98\xce\xeb\x9a\x67\x53\x9d\x6e\x26\x1f\x4e\xf9\x19\xc6\xf5\x1a\xf3\xc6\x1f\x30\xef\xd7\xbe\x5e\x96\xdb\xfb\xb4\xc9\x0f\x3e\xb9\xb3\xbd\x98\x3d\xc4\x41\x06\x3e\xb1\x4e\x97\xa4\x5a\xd0\xd8\x34\x1b\x9a\x70\xbc\x10\x78\x64\xe2\x75\x84\x32\x9c\x76\x6f\x8d\x7d\xe6\xfe\x27\x2a\x8d\xf9\xa5\xf2\x08\x65\x06\x68\x5b\x70\x37\x88\x2f\x1a\x80\x81\xb3\xa4\xf1\x5d\x2d\x4c\xd5\xc7\x83\x25\x00\xbf\x6e\x48\xef\x0e\x52\xfb\x93\x89\x77\xb3\x9c\xa0\x5d\xc3\x5a\xe6\x0b\x45\xf0\xca\x6d\x58\x66\xb6\x3b\xe5\xb1\x10\x67\xe8\xfd\x1d\xd0\xd5\x11\x8a\x2e\xba\x92\xbe\x6b\xb2\xe5\x78\xad\x6e\xa0\xe6\x85\x67\xd4\xa4\xf9\x56\xb0\xb3\x32\x7b\x6e\xbe\xbd\xb4\xdc\xf2\x43\x87\xdf\xd0\x72\x88\xbf\xa1\x3b\xb0\x50\xd3\x8b\x92\xfe\xb4\x47\x85\xfe\x31\x8e\x24\x2c\x85\x9b\x4a\x11\xf1\x7d\xa5\x2a\xb1\xd5\xc4\xe6\xb1\x6b\x12\x5f\xdc\x21\xa2\x1c\xe4\x9b\xbc\x92\x7b\x51\x66\x35\xb2\xf4\xac\xd6\xbf\x0c\x1a\x0c\x71\x16\x17\x5a\xb5\xf3\xdd\x37\x39\xb6\x6a\x46\x8a\xd1\xf2\xf2\xde\xd6\x57\x05\x4f\xf9\xb6\x22\xb7\xdd\x51\xb2\xaa\x1f\xd3\x37\x12\xdb\xd2\xea\xe9\x48\x57\x8e\x6e\x98\xb4\xe5\x7c\x57\x14\x6c\xcb\xbd\xb4\xb1\x9d\xbe\x9a\xdb\x11\xe7\x91\x05\x3b\xda\x81\xa3\x0a\xdd\x4f\xc7\x1c\x4e\xfc\x3d\x38\x66\x27\x65\x93\xfb\x69\x94\xf4\x1f\xf6\xca\xfa\x77\xd4\x79\xc3\x09\x1c\x0e\xa5\x6f\x04\x94\x51\x21\x4f\xf8\x11\xce\x5c\x27\xf3\xe8\x18\x4f\xb7\x68\xd8\x83\xf0\x79\x3d\x50\x89\x09\xbc\xdc\x70\xe6\xde\x52\xa3\xad\x87\x61\x7f\xc0\x96\x67\xeb\xb4\x1d\xc5\xff\xac\xfa\x2a\xce\xe4\x6d\x71\xe6\x20\xa7\x35\x1f\xa8\x35\x4e\x82\x64\x79\xa1\x2c\x61\xde\x51\xce\xd7\xef\x34\xcf\x3b\x93\x24\xb2\x7f\x9b\xe4\x96\x40\x34\xab\x32\x16\xde\x78\x48\xab\xaf\x06\xca\xd7\xe9\x13\x95\xbc\xb1\x33\x20\x76\xc6\x9d\xc0\xc3\x3d\xb7\x26\x34\xdc\x1c\x1a\x32\x33\x4a\x08\x14\x08\x8b\x6f\x69\x9c\xd9\xb7\x7c\x9b\xad\x8c\x63\xd6\xa1\x17\x17\x36\xe5\x06\x3b\xdd\x51\xba\x63\xb7\x54\xf3\xff\xe5\x74\x90\x80\xd4\x2b\xc1\x4a\x09\x17\xfd\x89\x22\xb1\xe7\x65\xdf\x64\xd3\x5e\x93\xf0\xaa\x82\xbf\xbe\x11\x28\x03\x6f\x24\xfd\x82\xdb\x6f\x16\x9c\x4c\x73\x09\xf7\x2c\x7b\x41\xbf\x53\x53\xcc\xc3\x8e\xf8\xad\x06\x24\xf6\x62\xbb\x1c\x8d\xd8\x78\x1a\x9f\x05\x0e\x82\xfc\x7a\x62\xce\xba\xf0\xfc\xc1\x76\xba\xf4\xb2\xa5\x5c\x48\xea\xa1\xda\xda\x15\xea\x98\x47\x5d\xad\x0e\x6c\x31\xb0\xd9\x43\x9e\xcd\xcb\x2a\x50\x8e\xd1\x3e\x37\xc7\x5f\xfe\xa6\x1a\x21\xdd\xd2\x16\x04\xef\xe8\x62\x06\xd2\x68\x38\xaf\x3f\x45\xeb\x9e\xb3\x25\x85\x98\x38\x8a\xc4\x8b\x45\x49\x69\x2f\x88\x89\x16\xcd\xe7\x91\x73\xbe\x86\x75\x84\xe6\xf0\xff\x5c\x55\x01\x58\xe4\x2b\x36\x5b\x1d\xd8\x78\x48\x09\x64\xf5\xe3\x4e\x86\xdb\x81\xcf\xff\xae\x36\xb8\x7b\x64\xbd\xf5\xcb\x5f\xe1\x64\xf7\x3d\x65\xa6\x7d\xcf\xad\xa9\xb8\x1c\x8e\xea\x7c\xbc\x8b\x81\xe2\xe3\x4d\x0a\x9d\xcc\xcf\xb7\x97\x22\x3e\x77\x90\xbb\xa1\xf1\xc6\xaf\x9b\x7a\xab\x6b\x69\xc9\x6c\x13\xc4\xa3\x37\xb5\x68\xf9\x9b\xaa\x0d\xb1\x54\x66\xd6\x94\x61\x66\x8a\x28\x24\x91\x5f\xcc\x31\x5e\x55\x32\xb7\xaf\xaa\x6a\x60\x98\xae\xd8\x07\x69\x59\xa2\x17\xf5\x60\xc7\xaf\x97\xb7\x28\x7c\x21\xb4\x30\xc3\x0e\xc7\xf6\xfd\x64\x44\x26\xa9\xbd\xdf\x73\x7b\xa1\xc8\x8a\x8d\xb5\x1b\x23\x52\xe4\x06\x37\xb5\x9e\xd3\xd5\xb1\xe2\x42\x7f\xea\xbb\xf3\xbf\xf4\x28\x8d\x07\xd0\xda\xda\x3d\xa1\xb2\x43\xb6\xfe\x44\xb6\xb3\x99\xac\x4f\x3c\xaf\xcb\x81\x62\x11\x5c\x56\x79\xc4\xa8\x84\x6c\x07\x36\x34\x92\x34\x2c\xc7\x4d\xac\x21\x19\x5e\xa8\xb6\x4c\x91\xc6\x36\x51\xd2\x89\x2c\x26\x85\x6a\x19\x84\x54\xfe\x07\x2c\x75\xfe\x87\x9a\x74\x62\x94\x66\x0f\x2a\x39\xd8\x16\xea\x22\x64\xb1\x37\xe8\x53\xe0\x4e\xfc\x73\x2d\xe5\x76\x5b\x3b\x2e\xfe\x3b\xc5\xe5\xff\x21\x91\xe7\xf0\xec\x78\xf0\x2c\xc9\x36\x2d\x71\x9c\x4a\x57\x68\x83\xa1\xc0\xff\x09\xdd\x54\x81\x0d\x2b\xb9\xfe\xb7\x5c\x16\x1e\x9b\x51\x91\x8e\x72\xed\x2f\xc6\x2a\x00\x1e\x36\xe4\x39\x2f\x5e\x30\x44\xcd\x01\xfd\xc1\xad\x86\x0d\x26\x36\xd9\x90\xba\x5a\xe2\x69\xe0\xc5\x99\xb7\x94\x4a\xe5\xb0\x97\x66\x5e\xc0\x40\x74\xd8\x5b\x4e\x80\xeb\x62\xd3\x08\xb4\x6d\x12\xb1\x68\x03\x9c\x81\xc0\x7b\x2f\x6e\x5f\x52\x7d\xb5\xd8\x94\x99\x45\x7b\x18\x07\xca\xc7\xf4\x09\xf8\xb5\xaa\xfa\x72\x9b\x98\x02\x1a\x81\xc2\x3e\xa3\x9b\x81\x0e\x0d\x37\x15\xdd\x4c\xd8\x11\xc3\x37\xd4\x93\xe1\xe6\x1e\xff\xc6\x44\x92\xf9\xd2\x4b\xed\x32\x19\x54\x0b\x96\xc3\x38\x3e\xc4\x3d\x45\x6e\x80\x8f\xa3\x24\x58\x4f\x28\x46\x44\x8f\x61\x19\xf9\x1e\x25\xcf\xfd\x1a\xfd\xaa\x68\xf2\xa8\x39\xd9\x19\xc2\x5e\x3b\xa5\x70\xa7\x72\x7c\x5a\x15\x02\x8b\xbf\x90\x03\xbb\x8e\x3f\xcd\xfe\x87\x04\xf2\x59\x7c\x74\x5d\xbb\xd7\xec\xa5\x65\x8e\xf4\xe4\xac\x6e\x60\x62\x28\x21\x31\xf5\x31\x35\x1a\x4d\xbb\x65\x58\xe4\x0f\xe1\x5d\x9c\x20\x81\x03\x09\x5e\x56\xe7\xe0\x63\x08\x13\x48\x85\x36\xc7\xf5\x3b\x73\x60\xd6\xf9\x1f\x54\xeb\xd9\x91\x5e\x0e\x7b\x2c\x02\xdd\x0f\x6d\x0d\x22\xfd\x53\xac\x85\xb1\x1a\x37\xff\x53\xdc\x23\x01\x01\x37\x74\xf2\x8a\xa8\x88\x25\x78\x8b\xb4\x3b\x7d\x3c\xbe\x70\x07\x47\x66\xfb\x51\x5e\x64\x1e\x0f\x27\x92\x0d\x7e\xd8\x7f\xf4\x33\xb5\x79\x7a\x11\xe8\x82\xca\x6a\x99\xa9\x19\x7c\xd1\x69\x30\x7f\xce\xec\xa8\x5c\x8a\xa3\xd0\xb8\xe3\x58\xe4\x19\xe8\x1b\x4a\x4d\x21\x19\x56\xd4\x8d\xed\x5e\xfc\x1c\xc6\x66\xe7\x94\x19\xfe\xe3\x1d\x0f\xfa\xbc\x81\x5b\x2e\x33\x61\xbf\x3b\xce\xe0\xd6\x49\x84\xdc\x19\x80\x17\x67\xda\xc3\x34\x89\x8a\x34\x93\xaf\xb2\x7d\x97\x30\x3d\x77\xd5\xa8\x28\x49\xb3\xa1\x89\xa7\xb4\x7a\x9d\x5a\xb2\x63\x6f\x23\x7c\xcd\xb1\x6a\x4c\x92\x94\x10\x6d\x53\xe0\xb2\x1b\x0a\xd4\xcf\xfa\x65\x48\x65\x8f\x2b\x4a\x77\xd7\x0e\x4d\xd2\xcd\x5b\xd5\xbb\xd6\x00\x59\x7c\xa1\xe0\x89\x89\x19\x12\x3a\xfc\x45\x37\x15\xa6\x3f\xc6\x17\xf4\xc7\x30\xac\xbd\x88\x74\x5c\xfc\xb0\xe9\xed\xd8\xac\x24\xf0\x2a\x10\x48\xed\xc5\xc4\xa4\x01\xe6\x13\xda\xa4\x10\x9a\x02\x7e\x8c\xb9\x22\x7c\xa1\x6d\x7f\x22\xc8\x63\xf8\x66\x26\x06\x27\x88\xeb\xaf\xd0\xfd\x43\xd2\x78\xb2\x09\x50\xe4\xe4\x09\xbd\x24\xa1\xd2\x2f\x7e\xbd\x21\xb7\x6c\x77\xa3\xb0\x30\x85\xa5\xd2\x54\x4d\x77\x17\x6a\x28\x0b\x91\x27\x79\x5c\x6b\xe2\x47\x49\x31\x88\x78\x9a\x8c\xaa\xeb\xb6\xea\x7c\xdd\x6e\xf4\x30\x1f\x9a\x3e\xe1\x48\x99\x8c\x29\xa3\x13\xdf\x97\xd3\x9e\xa1\xfd\x2c\x5d\x55\x86\x8e\x80\xac\x20\x22\xa0\x87\x2c\x2e\xd2\x93\x93\x88\x17\xab\x62\x34\x2f\x68\xed\x39\x37\x6c\x57\xda\x01\x56\xb0\xbd\x39\x81\xc1\x5c\x9c\x69\xe7\x16\x88\x78\xbc\xf7\xfb\x38\xf1\xf9\x62\xa2\xdf\xf0\xd4\x53\x54\x29\x45\x5e\x05\x8d\xa9\x4a\xf4\x8d\x84\xb6\xd4\x00\xd8\x97\x7e\x43\xcb\x09\xd0\x70\x33\x9d\x2f\x1a\xe5\x89\x63\x6b\x33\x85\xf6\xda\xdf\xea\xa8\x9e\x14\x06\x1a\x32\xc3\xf4\x8d\xe0\xa3\x4d\xe3\xeb\xbe\x29\xfb\x5c\xaa\xbb\xf4\xdc\x3f\x82\x26\x0e\xed\x52\x5a\x16\xd1\xd7\x4a\x74\x55\x70\x47\x5f\x57\x1e\x74\xaf\x2b\x38\xc2\x92\xc9\x6d\x6c\xf3\x5c\x89\x64\xbe\xa7\x44\x32\xdf\x73\x6a\x11\x61\x6a\xb3\x90\x42\xe8\xe1\x19\x77\xc2\xa8\xd3\x66\xe2\x26\x1c\x38\xd0\x8e\x6d\x31\x80\xa9\xf6\x8b\xae\xa7\xe9\xc7\x13\x50\x70\x41\x9a\x7a\x51\xd1\x7a\x6d\x5e\x44\x43\x53\xd8\xee\x83\x4a\x8b\xe2\xb8\xea\x8a\x5f\x0f\xb4\x70\x35\x13\xa6\xc5\x9e\xbe\xba\xb1\x18\x3d\x9e\x08\x5a\xbf\x24\xbf\x7e\x33\x50\x4d\x5b\x8e\xe0\x4e\x48\xce\xf5\xb8\x58\x8e\x0f\xe5\xf6\x5f\x8c\xc9\x14\x12\x67\xee\x35\xaa\x56\xe4\x96\x3b\x44\x9f\x71\x02\xb4\x28\x6a\xde\xc0\x1b\xf0\x85\xca\xc4\xba\xe9\x6a\x52\x94\x59\x32\xad\xa8\x8a\x6c\xf3\xce\x17\x58\xbb\xca\x98\x64\xd6\x49\x61\xf8\x19\xf7\xd0\x0e\xd3\xcc\x24\xdd\x92\x1d\xf4\x1d\x64\xdb\xc3\xb7\x1b\xa1\x2d\x79\x61\xfa\xd2\x30\x63\x59\x17\xba\x9f\x22\xf1\xd2\x30\xab\x89\x92\xc2\xf6\x25\x10\x8a\x66\x71\x4b\x89\x19\xfb\xe6\xf2\xc0\x0c\x97\x32\x1b\x0e\x10\xca\xc4\xc5\x4b\x95\xf1\x1f\x29\x78\x55\x98\x0e\x47\x44\x20\x6e\x39\x45\xc9\xd3\x4a\xf4\xf4\xf4\xce\xb1\xcf\xe1\x99\xf6\xe2\xcc\x17\x28\x9a\xa3\xb5\xf0\xe7\x0c\xf3\x66\x39\xfe\xb1\xe2\x8a\xa0\x2d\x89\x45\x7e\x77\xac\x5c\xcd\x6e\xeb\x56\x0d\xbb\x87\xe3\x7b\x3c\xb0\xee\xf5\xa5\x2f\x51\xdf\xc6\x75\x43\x16\x66\x0f\x39\xe8\x71\xeb\xcb\xbf\xc2\xcb\xe2\xff\x21\x83\x4d\xe4\xf1\xdf\x47\xdd\xca\x98\x47\x05\x0b\xdb\xd5\x69\xbd\xb0\xe0\xdc\xfc\xfd\x32\xdf\x46\x06\x80\x7f\xf8\x06\x25\x4d\x00\x87\xbc\x87\xe4\x08\x25\xed\x9d\xa0\x75\xe8\x79\x39\xe6\x71\xf8\x30\xf5\x16\x3d\x58\xd4\x20\x2d\x6d\xda\x0f\x18\x9d\x70\xec\xb1\x3d\xf0\x79\xff\x4f\xea\x5d\xe2\x18\x9a\xee\x78\xf3\x9b\x63\x0d\xa1\xe6\x60\xbb\x5b\xc6\x78\xe2\x8e\xf4\x57\xdd\xdd\xcf\x12\x5d\x3d\x3c\x03\x03\xfc\x5e\x14\xee\xf1\xec\xb7\x87\x08\x20\x86\x9b\xc2\x48\x49\xa8\xa3\xbe\x43\x77\x02\x5f\xfe\xe6\x58\xb5\x93\xbd\x75\x60\x55\x27\x7c\xad\xc4\x10\x93\x69\x3e\x0a\x25\xf9\x83\xc0\x77\xc3\xae\x38\xd2\xf3\x6a\x94\x74\x99\xad\xe5\xc9\xc3\x5b\x4a\x62\x6f\x92\xcf\x76\xe0\x00\x33\x71\xa7\x3d\x41\x9b\x3b\x75\x48\xa4\x31\x29\x03\x29\x19\xd4\x15\xb1\x4d\xf3\x69\xb9\x7d\xd9\x4c\x51\x47\xce\x75\x44\x1d\x06\x07\x62\x14\x82\x6a\x6c\x82\x28\xc4\xd1\x92\xcd\x0c\x68\x14\xc8\x65\xd0\x58\xaa\xf1\x1a\xc4\x1e\x63\x27\x0a\xf6\xd0\xf3\xb4\x3d\x49\xb2\xae\x34\x31\x60\x0b\xf8\x80\xb7\xb5\xc2\xff\x6d\x17\xa9\xc2\x81\xc9\x71\x8a\xa3\x57\x81\x42\x81\x5f\xaf\xfb\x2e\xeb\x4a\x64\x04\x6c\x21\x28\x00\x05\x0b\x9a\x58\x32\x2f\xbd\xd4\x26\x10\x23\x94\xcb\x45\x2d\xd3\x6f\x42\xa0\x6b\xd1\x6d\x03\x5a\x66\xfb\x52\xd3\xc3\x58\x25\x0a\x93\xf6\x11\x3f\x86\x9d\x22\x38\x32\x25\xbf\x3c\x8c\xf2\xbc\x3a\x54\x7c\xbf\x17\x3b\x0c\x1b\x09\x02\x2e\x28\x85\x9b\x96\xf8\xc2\xc1\xb6\x19\xc1\xcd\x42\x0e\x2e\xba\xd5\xd8\x20\x47\x79\xeb\x20\xb6\xbc\x3a\xd1\x00\xfa\x52\x7b\x95\x3c\xc6\xaa\xdf\x00\x94\xf0\x56\xe0\xed\xd4\x4e\x8f\xc9\x13\x18\xf9\xc7\x46\x83\x60\xcc\xb3\xd0\x19\xec\x47\x24\xf7\xe9\x9a\x92\x48\x40\xf8\xb5\xab\x5b\x08\x05\xb5\x54\xe6\x85\xcd\xf2\x69\xed\xfa\xff\x6f\xf0\x88\x71\x64\xbd\xa3\xa0\x6c\x17\x35\x00\xf3\x44\x83\x03\xd9\xb3\xed\x51\x16\x85\x22\x7f\x22\x62\xbb\x3e\xad\xf9\x9f\xb4\x7b\xdf\x30\x15\x19\x46\x19\xe1\xdc\xa1\x6a\x8e\x5f\x37\xc0\x37\x5e\xa4\xa9\x06\x79\x58\xd4\xf0\x40\x68\x25\xc8\xea\xf0\x10\x0b\x13\x87\xe9\x20\x8d\xa3\x90\x7e\x78\x9b\x76\xfa\xf6\x25\x5d\x26\x64\x26\x2c\x63\x83\x75\x81\x8f\x78\x13\xfa\x94\x7c\x81\x07\x84\x2a\x0a\x2e\x0f\x51\xd2\x8f\xd7\xf6\xf9\x99\x03\x64\xc3\x04\x6f\xe4\x47\xde\xec\xd6\xe6\x6c\xc4\x3d\x17\xec\xcf\xc9\x06\xcf\xf9\x98\x79\xb3\x8b\xbb\x4a\x5e\xb8\xba\x8f\xac\x01\xae\xe4\x40\x5e\xac\x3b\x52\x6a\xf7\x7c\x61\x35\x39\x78\x4c\x5c\x8a\xfa\x9d\x1c\xf4\xc7\x74\x0a\x70\xac\x51\xfb\x2f\x7f\x66\xd4\xaa\x29\x79\x8c\xb5\xc8\x47\xe0\x87\xf5\xc5\x4a\x8e\x54\x43\x1c\x62\x14\xe2\xe5\x02\x3d\x0e\xfe\x07\xdc\x06\x19\xe9\x3f\xa4\xe0\xb3\x4f\x3d\xf5\x05\xcf\x62\xba\x1f\x56\xb8\xe8\x52\x9d\xc3\x31\x24\x0a\xad\x4a\xb3\x7d\x2b\xa8\xee\x1d\x9b\xdf\x2a\x2f\xf5\x93\xd4\xd9\x40\x40\x87\xcc\x2f\x7a\x5c\x1f\xd3\x8a\x72\x56\xdb\x07\x9c\x23\x04\x9f\xf1\xca\xeb\xe4\x45\x6e\x8c\xec\xa6\x1e\xa6\x43\x3c\xff\xe2\x0b\x1e\xf4\x50\x9d\xa0\xb8\xe7\xec\x24\x85\xc6\xa2\x80\xe2\xf1\xe1\xef\x61\x01\xe1\x1b\xef\x5a\x57\xbe\x2c\xbb\x3a\xad\xaf\xca\x74\xe8\x6f\xe8\x94\x67\xba\xa2\x12\x74\xe1\xfb\x85\x43\xe2\x2a\x56\x07\xda\xa6\xac\x49\x80\x13\xfc\x32\xf2\x0d\xfc\xce\x65\xca\x1e\xd8\x92\xb0\xa9\x95\xb1\x12\xd9\x55\xe1\x7f\x09\x43\x5a\xa5\x6a\xe7\x1a\xfa\xca\x07\xe9\xd4\xc3\xe6\xe4\x65\x8b\xa3\x5a\xd6\xb0\xab\xd1\x87\x4b\x65\xec\x98\x12\x38\x9d\x00\x2e\xe5\xd7\x13\x1f\xe8\xe9\xba\x26\x2f\x32\x38\x10\xb1\xf8\xb5\x2a\x81\x97\x4c\xb7\x6f\x39\x48\x38\xec\x9a\xd7\x58\x7e\xaf\xf1\xa3\x87\x86\x1d\x65\x30\xc1\xde\xd0\x0a\x28\x1b\x13\x95\xf2\xdc\x5c\x7b\x64\x93\x5c\xba\x37\x68\x48\x70\xa8\xe3\x0b\xc5\x6e\x27\xbe\x99\x49\xa8\x48\x76\xba\x12\x37\x14\x36\x95\xf7\xba\xd4\x0e\x6e\x3f\xda\x38\xb2\x2b\x76\x7f\xcb\xb1\xc7\xef\x5f\x57\xee\xd1\xc7\x75\x33\xed\x67\x40\x27\x94\xa0\xeb\x01\x52\x6f\x28\xb1\x53\x1e\xe3\x89\x60\xa1\x97\x07\xdb\xd3\x69\xc2\xe2\xe5\xa3\xcc\xe2\x19\x39\x7a\xb4\xa7\x4a\xbb\x22\x2c\xcd\xba\xc6\x43\x85\x45\x11\xb6\xe5\x94\xaa\x37\x34\x7a\xdc\x64\xf1\xda\xc3\xb4\x29\xd8\x7c\x10\x27\x1d\x32\x8c\x4f\x70\x1b\xd8\xec\x9c\x88\x07\xdc\xda\x0e\x3c\xcf\xe5\x3b\x2a\x75\x3d\x1e\x28\xf1\x31\x54\x0f\x28\x99\x2f\x23\x6f\xc2\x71\xf4\x1a\x20\x67\xf2\x60\xab\x1d\xcd\xfe\xae\xf4\x29\x31\x75\x07\x47\x17\xd9\xfc\x19\x2c\x17\xf4\x8e\x36\x9a\xe4\x8c\x33\x9b\x97\x59\x5f\xc8\xe3\x0c\x56\x56\xe2\x9f\xa7\x6a\x00\x88\xb0\x04\x7a\x4e\xdc\xd6\x5a\x4a\x0b\xad\xfa\xab\x72\xcf\xe4\x8e\x92\xa7\x64\x52\x93\xa5\xe0\x9d\xcc\x17\x9d\x07\xfd\xcc\xc5\xf0\x8e\x13\xe6\x9f\x07\x22\x8f\xd4\x24\xa7\x18\xa4\x59\x5a\xf6\x07\x4b\x19\xf7\x0c\x9a\xda\x0c\x3e\x54\x3f\x95\xf1\x20\x07\x11\xe2\x13\xdc\x4e\xe7\xb3\x52\x3d\x25\x49\x50\xbd\x10\xef\xef\x8f\xd5\x48\xf6\x83\xb1\xcf\x41\xb0\x1c\xf1\x0b\x57\x95\x82\xf1\x77\xe9\xdb\x8b\x2e\x0e\xad\x0a\x21\x49\x53\x30\x47\x77\xec\x6d\x8a\xcd\xc0\xd5\x4f\xad\x2b\x30\x64\x16\x15\x05\xc9\x2a\x56\x1f\x01\x69\x31\x60\xaf\xfc\xba\xc9\xa0\xba\x5b\x0e\x87\x6b\xea\xbe\x9e\x54\x9d\xc1\x93\x6e\x08\xb7\x3a\xb0\x56\x52\x77\x59\x05\xf4\x89\xf8\x62\xa2\x8d\xb3\xf0\xfc\xc1\xf6\xd0\x66\xe1\xc0\xd4\xdc\x2a\x2f\x2a\xb7\xca\x8b\x6e\x5b\x47\xc3\xaa\x60\x8e\x15\x22\xe3\x96\x12\x53\xbd\xa5\xb2\xf9\x7f\xf4\xb3\xff\xa8\xe5\x87\x47\xdc\x22\xe0\x8b\x8e\xff\xb1\xd0\x40\xea\x1c\x77\xfb\x2e\x1d\x13\x22\x22\xe6\xcf\xbb\x4d\xd5\xce\x48\xb3\xbe\x21\xea\xec\x94\x47\x8e\xc3\xfb\x09\x07\xd2\x1f\xd2\x3d\x47\x2a\xbe\xa1\x3a\x33\x51\x92\x17\x51\x12\xe2\x3b\x72\x77\x83\xbe\xa3\x74\x3a\x04\x69\xbc\x6a\x0a\x9b\x85\x69\x9c\x66\x3a\x40\xe2\x38\x90\x68\xe9\xbf\x40\x99\xa7\x8a\x15\xf3\xca\x58\xe5\xb2\xaf\x28\x7c\x67\x9e\x66\x85\x24\x8a\x35\x01\x18\xa9\x05\x1b\x1a\x86\x3d\x93\x87\xd4\x30\x14\x96\x80\x00\xb0\xfc\xf8\x4e\x0b\xc3\x5e\xa9\x6d\x5c\xf3\x0c\x0b\x9d\x22\x4a\xfe\x47\x3e\xb4\xf9\xaa\x46\x67\x4a\xc2\xc1\x1e\x3f\xed\x7c\x95\x56\x3f\xfa\x67\x1f\xd0\xbd\x44\x19\x7a\x5a\xb9\xc2\x9c\xd6\x5a\x19\xbb\x3a\xb2\x3a\x7a\x99\x25\xeb\x5f\x5f\x84\x3d\xd0\xf1\x61\x6a\x1f\x0e\x00\x9c\x93\xc7\x94\xa1\x58\x38\xb0\xc3\x28\x34\x71\xbe\xaf\xca\x6a\x90\x20\x7d\x5b\xff\x85\xbf\xa2\x8f\x24\x24\x3c\xcf\x57\x3d\x83\x87\xa2\x60\x57\x82\x66\x40\x8b\x14\x63\xf2\x5d\x1d\x65\xbe\x37\xb2\x36\x1c\x90\xa9\x93\x83\x7e\x39\xd1\x86\x8b\x0d\x8d\xc7\x36\x05\x4b\x36\x76\x44\x49\xc1\xce\x23\x42\x58\x53\xf3\xcd\xc9\x06\x38\xe8\x8a\x83\x28\xee\xee\x64\x15\x1f\x74\xac\x62\x6f\xb1\x9b\xd8\xb2\xc8\x88\xdf\xcd\x5a\x2f\xa0\xeb\xde\x55\xce\xd8\x77\x1b\x31\x91\xdd\x74\x35\x21\xd7\xe5\x96\x8f\x37\xb7\x94\x43\xd4\x2d\x2d\x47\x61\x92\x65\xd3\xf2\xde\x4c\x67\xb4\xec\xf4\x19\x85\x71\x8c\x92\x2e\xe9\x0b\x00\x25\x22\x1f\xbd\xe5\x14\x19\x8f\x8e\x95\x96\xdf\x5f\x4d\xe4\x3d\xe4\xd9\x65\x4d\x5d\xf4\xe5\x7c\xa0\x2c\x8e\xbd\xf5\x54\x66\xf3\xa8\x9f\x28\xb6\xc0\x09\x15\x55\x4e\x34\x89\xb8\xf9\x0f\x47\x1f\x02\x69\x22\xe4\x33\x90\xa3\xd4\xec\xa3\x4f\x39\x48\x68\xd7\x2e\x71\xc6\xef\x38\x2c\xd5\xb7\x17\xda\x8a\xc2\x22\x0e\x4d\x1c\xdb\x6c\xaf\x27\x1f\xed\x55\xc2\x58\x0f\xaf\x2b\xca\xfa\x3b\x5a\x38\xf6\x9d\xb1\x6a\x7b\x60\x26\x20\xde\x24\x3b\x9f\xdc\xdc\xdc\x22\x7d\xf3\x38\x92\xd3\x18\x7f\xe8\xa7\x6a\xec\xf0\xd3\xa6\x9a\xbb\x9d\xdb\x68\xa9\x55\x03\x98\xd4\xc8\x18\x8f\xbb\xc3\x38\x4c\x93\x3c\xca\x69\x2c\x42\x9f\xb1\x21\xb4\x4e\xa4\x94\x55\xe1\x19\x5b\x90\xd5\xfd\x90\xc2\x0f\x2c\x3e\x13\x7e\x44\x79\xae\xcb\x8d\x91\xf2\xdc\x0d\x94\xb9\xc6\xdd\x89\xd6\x4d\x75\xf8\x14\x65\x36\x4c\x23\x4c\xaa\x45\x41\x48\xf1\xe5\xb6\x1c\xec\x73\xc9\x24\xcb\xf9\xb4\xcf\x94\x8e\x8d\x35\xde\x6a\x3f\xb6\x25\x40\x5a\xd7\x75\x9b\xef\x91\x75\xbf\xfa\xf3\x55\x3b\xc2\x11\x80\x93\xf6\x2c\x42\x08\x5f\x34\x62\x2a\x47\x6e\x40\xef\x1a\xdb\x67\x95\x78\xda\x59\xd7\x61\xe8\x46\x2b\x51\x1e\xad\xd8\xc4\xe6\xbc\xe8\x75\x27\x4b\xe0\x02\xbe\x1c\x37\xab\x26\xeb\xb2\x94\x03\x1e\x46\x0b\xa3\x68\xbe\x58\x7f\x5c\x1d\x5e\x52\x8d\x13\x5c\x18\x77\xe6\x0c\x96\x1a\x5f\x04\xbe\xab\xf6\x16\x00\x56\x4e\x78\xc3\xcd\x7e\x3e\x52\xa4\xaa\xd0\x66\x05\x51\x7e\xf7\x55\x4b\x1c\xeb\x95\x38\x99\x2f\xca\xb4\x91\x38\xff\xd2\xf0\xf5\xca\xba\x77\xd0\x5b\x15\x1c\x75\xf5\xee\x80\x35\x70\xe1\x21\x6e\xd7\xde\xda\xbd\x6b\xd6\xf2\x47\xb4\xf7\x09\xee\x08\xce\x1b\xb6\xc8\x13\xcd\x6e\x6f\x21\xfd\x76\xa0\x58\xd1\x14\xa6\x6b\x70\x7c\x20\xd5\x30\xf9\x01\xcc\xf2\x12\x7d\x60\x1c\xd1\x57\x91\xd0\xe9\xe6\xbc\xd8\xb2\x2a\x69\xe6\xf3\x48\xaf\xc5\x34\x92\x3e\xbe\x40\x47\x7d\xf7\xf0\xfa\x44\x6f\xe6\xb9\xf9\x76\x62\xfb\x69\x11\xd1\xe1\x8c\x58\xad\x59\xfb\x02\xb4\xae\x61\x61\xb2\xee\x3e\x5f\x8f\xb0\x66\x88\xae\x79\x10\x55\x2f\x61\xb2\x82\x4c\xe9\xb8\x16\xc3\x60\x59\x4c\xfe\x97\x40\x65\x04\xef\x3b\x3c\x49\x75\x10\xf4\x33\xe3\x67\xec\xb8\x33\xbf\xad\xc0\xa8\xbf\xad\xda\x2e\x3d\x1a\x52\xef\xa3\x8f\xe2\x3a\xea\x55\xb2\xa8\x9d\x58\x98\xb2\x4d\x55\xbb\x32\x9f\x3b\x58\xe7\x08\xf0\xaf\xe3\x86\x4a\xd4\xd0\x59\x46\xd7\xe6\x9f\xf3\x92\xb8\x5b\x84\xd3\xc0\xbd\x66\xba\x04\xd2\xb7\x3b\x63\xd5\x21\xe3\xf6\x00\xba\x96\x6f\x62\x80\x84\x74\xed\x56\xe0\x9b\xe2\xaf\xd2\xa2\x61\xc1\x96\x40\x09\x67\xb4\x00\x12\xc2\xf7\xbe\x1e\x78\xd9\xa9\xab\x98\x8e\xe3\xa3\x3c\xd4\xc1\xd2\x74\xb7\xbc\xba\x6f\xa8\x33\xc1\xd9\x06\x50\xf9\xaa\x5a\xb3\xff\x2f\xdd\x0c\xfc\xf5\x87\xd6\x69\xb3\xe1\xac\xd2\xb8\x9a\x5e\x6c\x56\xd2\x6c\x5a\xa1\xbf\xe0\x76\x00\xe5\x8c\x4d\xb4\x34\x44\x1e\xbd\xe5\xcc\x75\x26\x03\xf2\xdc\x5c\x7b\x68\x5e\x4e\x01\x61\xc4\xc2\xfd\xb5\xb1\xc2\x48\xfd\x9a\x8a\x29\x45\x5a\x18\x12\x86\x75\x92\x28\xaf\x28\xd9\x80\x57\x94\x52\x68\xdc\xbd\xcf\x73\xe7\xee\x61\x39\xe2\x16\x3c\xb8\xee\x33\x87\x6f\x6b\xf9\x35\xc8\x35\xd1\x1f\x7d\xb6\x4d\x5e\xd2\xa2\x21\xa2\xd0\xfd\xdb\x7a\x82\xfe\x2e\x56\x8a\x28\x41\x3d\xae\x92\x8b\x82\xa0\x32\xb6\x0b\x5d\x35\xa4\x6a\x57\xc7\x5a\x26\xeb\x2a\xd6\xb8\x06\x48\x63\x95\x7d\xa2\x24\xb3\xbe\xa3\x94\x1e\x42\x93\x24\x29\x6b\x42\xc8\x49\xa2\x4e\x15\x95\x04\x99\x30\xea\x42\x37\x09\xb1\x16\xe0\x70\x00\xc5\x79\x6a\x89\x83\x64\xb3\x69\x80\xdd\xb5\xb1\x59\x93\xae\x01\x63\xae\x03\x8d\xbf\xde\x79\xcc\x2d\xce\xb4\xf3\xd5\xa8\x08\x07\x75\x9f\x1f\xa6\x67\xf3\x45\xe0\x6b\x9c\xc2\x66\x59\x9a\x45\xf9\x70\x5a\x5b\x9c\x8e\x5b\x5a\x55\xca\x41\xe1\x58\x70\x42\x66\x8a\xbe\x34\x89\x92\xe2\x61\x0f\xba\xdf\xd3\xf1\x10\xa1\x9b\x38\xf5\x10\xdb\x59\x78\xba\x66\x38\x89\x48\xbb\x1d\xa8\x77\x9e\x5a\xaf\x76\x99\xc4\x4d\x3f\x9b\x63\x50\x2c\x9d\xa0\x7f\xf6\xd8\x7a\x6b\x7e\x7e\xfb\xef\x75\x54\xef\xee\x6d\xae\x3c\x5c\x07\xb8\x5a\xf6\xee\x18\x78\x6e\xde\x89\xd8\xfa\xe7\x38\x34\xbd\xc8\x70\x17\x0c\xbd\xd8\x13\x4a\xb8\xec\x84\x32\xfd\xc8\xd3\x28\xae\x72\x40\xef\xfb\x79\x46\x29\xca\x7d\x32\xf6\x7e\x75\xdb\x9a\x6c\x97\xa5\x61\xc1\x90\x60\xf6\x11\xd5\x96\x64\x67\x1c\x22\xc7\xae\xd8\x6c\x6d\x29\xed\xae\x61\x91\x0a\xb2\x9f\x3e\x18\x6a\xbc\x63\x5a\xb1\x61\x73\xec\xf9\x25\xf7\x75\x3c\xb8\x6d\x52\x41\xaf\xca\x2b\xca\x24\x4e\x55\xa4\x16\xfb\xc3\xea\xd7\xc4\xf0\xd0\xe3\xa9\x57\xd3\x2c\x43\x1f\x1e\x47\xda\x29\xd5\xfd\xb8\x07\xd5\x72\x76\x5f\xa1\x85\x88\xd7\x47\xe9\xfe\xa2\x36\xb9\xa7\xad\x21\xc6\xdc\x0f\x16\xc3\x96\x9d\xb9\xfb\x17\xdb\x7f\xff\x2b\xff\x64\xe1\x2b\x5f\x9e\x27\x75\x78\xec\xc6\x4d\x45\x68\x07\xe1\x1f\xcf\x77\x4b\xf5\x5e\x86\xc5\x50\x0f\x9d\xd8\x6d\x8f\x2f\x82\xfb\xa4\x4c\x1c\xc2\xb8\x1c\xc7\xee\x9b\x5a\xe3\x09\x27\xa1\xd0\x9e\xb5\xd8\xea\x0f\x27\x58\xfb\xcf\xcd\xb7\xf3\x74\xca\x7b\xe5\x02\x5a\xa7\x4d\xba\x05\xa2\xf4\x59\xea\xc1\xc3\x34\x29\xfa\xe9\xd0\x32\xd9\x09\x2b\xf4\x1c\x96\x02\x5f\xb8\xc6\x56\x61\xc2\xa2\x2a\x52\x55\x9e\x0e\x1c\x94\x67\x45\xb9\x45\x39\x8a\x23\xce\xb7\xc5\xc6\xb2\xfa\x25\x7e\xdd\xa4\x05\x30\x34\x89\xe9\x5b\xf4\x1b\x24\x6b\xa3\x4f\x21\x7a\x69\x35\xa3\x85\x28\x67\x48\x7c\xcb\x0d\xf1\xb7\x14\x0e\xe4\x6e\x6d\xfc\xb5\x33\x75\x91\xef\xbe\x54\xd5\xb5\xec\xb4\x87\x00\xb4\x1d\x78\xa1\x23\x94\xc5\xf8\xeb\x17\x15\xf2\x29\x4a\x56\x6c\x5e\x0c\x6d\x52\x3c\x42\xe7\x1a\xb0\xcb\xf7\x90\x6f\x22\xfa\xb1\xcc\x0d\x26\x0a\x7c\x33\x9d\xaf\xb7\xb7\x3d\xa7\x75\x2e\x0d\xaa\x96\x33\x61\x61\xb0\xbb\x1b\x2a\x55\x0b\x1b\xb3\x4f\x7c\x24\x24\xea\x1f\xd4\x32\xff\x73\xba\xab\xc7\xda\xda\x78\x2a\xbb\xd6\x3d\x95\xec\x4f\x79\xcd\x23\x68\xbe\xb5\xd3\x5a\xa4\x2a\xab\x9e\xd9\xdb\x52\x4e\xf2\x55\x84\x45\x1c\xf9\x23\x05\x20\xbc\x41\x47\x3f\xbb\x12\x6b\x63\x4d\x7e\x62\xa2\xf0\xe4\x26\xf0\x50\xbf\x9e\x52\x45\xf0\xd5\x40\x09\x8f\x83\x83\x2c\xe0\xd5\x9a\x0f\xcf\x70\xd4\xa2\xfb\x2a\xba\xa0\x1a\x4b\xe8\xb9\x07\xb1\xc9\x3d\x6c\x0e\x69\x0b\x14\x53\x70\x73\x30\x32\x16\x39\x10\xdf\x0e\x2b\x93\xe5\x84\x3c\x09\x15\x1f\x79\xac\x86\xc0\x27\x03\x0f\xc2\x4d\xd2\xc4\x16\x03\xe0\x9a\xe8\x89\xe0\xa4\xdf\xdd\xa9\xa2\x03\xbf\x5e\x6f\x0a\x71\xcb\x51\x37\x31\x23\x47\x0a\x40\x6f\xe6\x2c\x7d\x11\x7e\xad\xda\x40\xb9\x8d\x41\xba\xa0\x6d\xc0\x87\x0b\x2d\x19\x39\x68\x3e\xa7\x60\xc1\x32\xb7\xf6\x5c\x46\x7c\x6b\xb1\x33\xa7\x87\x21\x14\x77\xe9\x33\xf4\x33\x6b\x13\xf1\x79\x95\x61\xb7\x2a\x14\xee\x04\x8a\xce\x32\x39\x9e\x7f\x6e\x9e\x20\xe0\xa0\xb2\xa9\x1c\x65\xc1\x81\xf1\xfc\x29\x35\x09\x92\x98\x3d\xd4\x1e\x95\x5f\xff\x3a\x17\x92\xa8\x46\x2e\x2b\xa1\xb1\xcb\x4a\xb2\x23\x36\x4b\x36\x9e\x52\x6a\x6c\x47\x35\x56\xf5\x9a\xb2\x04\x3a\xaf\x96\xc2\x52\x6a\xb2\xee\x53\xb9\x52\xa9\xbc\x34\x56\x02\xff\x97\x1a\x85\x79\x47\x59\x34\x04\x40\x04\x0b\x12\x44\xe6\x9a\x46\x2f\x32\xad\xdb\x13\xe3\xfb\xc3\x33\xed\x1e\xdb\x79\x89\x18\x93\xff\x3a\x27\x26\x32\xa7\xa7\xdb\x85\x35\xe1\xc0\xb5\x33\x9d\x24\xb1\xeb\xff\x7e\xa2\x5c\x48\xdf\x56\xc6\x87\xcb\x69\x48\x7a\xf0\x7c\x64\xdc\x08\xd4\xf9\x71\x63\xa2\x68\x77\xd6\xcb\xcb\x51\xda\xf2\xbc\xbd\x0d\xad\xbc\xb1\xa1\xf2\xa4\xd8\xf6\xa7\xab\x1f\x73\x50\x6a\x77\x8c\x9c\x55\x5e\x63\x67\xeb\xb3\x61\xd9\xdf\x5f\x2b\x4d\x1c\x15\x6b\x74\x03\xd1\xa1\xbc\xa7\x74\x65\xff\xfd\x58\xf5\x21\x3c\x53\xa6\x67\x88\x2e\x46\xff\xc6\x2a\x73\x54\xc3\x88\xe2\x9c\x4f\x85\xe2\xb4\x4c\xfa\x58\x31\x38\x6e\x4f\x60\xc1\xf1\x45\xb3\xbf\x41\x9a\x5b\x0f\xca\xc4\x04\xf8\x96\x52\x42\xbd\x15\x48\xb9\x28\xac\xc9\x54\x74\x2b\x24\x15\xf5\xe5\xc8\xd1\x89\x3f\x71\xe0\x40\x3b\x2f\x4c\x56\xc4\xa2\xe7\x23\x7a\xee\x2d\xa5\xf3\xfe\x59\xfa\x2f\x3d\x1b\x47\x47\x94\x06\xd3\x79\xad\xc1\x74\x7e\xa2\xf4\x79\xba\x9d\xa7\x2b\x91\x2d\xb4\x7b\x6c\xa0\x52\xb5\xad\x89\xac\xe0\xe9\x76\xf7\x1f\x2c\xa9\x66\x2b\x2f\x61\xbe\x98\xa8\xe4\x17\x9e\x3f\xd8\x2e\x93\x5e\x16\xd9\xa4\xcb\x7e\x33\x28\x4a\xcf\x28\xbe\xc6\x99\xa6\x84\xbe\x5a\xc9\xd6\xe1\x15\xb1\x7e\x6b\xbe\x4f\xc7\x27\x10\x23\x2f\xbd\x84\x8c\xb2\x6b\xf0\x97\xd0\xaa\x80\x14\x26\xbf\x56\xf1\x70\xd5\xc4\x71\xba\xca\xbb\xe5\xc5\xba\x8c\x0a\x4e\x66\x3e\xeb\x84\x80\xf9\x98\x72\x6a\xcf\x8b\x72\x58\x7d\xb6\xea\xfc\x70\x32\x99\xf3\xf3\xf2\x5a\x41\x29\x8b\x41\x3a\x1c\xe5\x69\x82\xd5\x82\x42\xef\xa8\x1a\xc5\x1d\x6d\xe8\x38\xb7\xbb\xe5\x28\x46\xff\x15\x5f\x1f\xcd\x20\x1e\x92\xf0\xc5\xd8\x37\x80\x56\xed\x52\x4e\x3b\x11\x85\x20\xca\x6a\x7e\xad\x8d\xf1\xa9\x1f\x05\xdf\x51\x04\x81\x13\xc1\x67\x0d\xfc\xbc\xef\xe8\x89\x26\xf3\x72\x93\x2d\x9b\x24\x37\xbc\xac\x71\xa4\x73\x77\x8d\x2f\xd6\x9b\x24\xea\xbb\x96\xb4\xa3\x6a\x26\x29\x2c\xc8\xcf\x17\x4d\xd8\x4e\x5b\x66\xe9\xc8\x9a\x04\xd9\x14\x1a\x3c\xd0\xde\x40\x16\x04\x4d\x0e\x06\x72\x37\x48\xe3\xb7\xbb\xb6\x30\x91\x97\x0a\x11\xa8\x62\xf5\x5b\xd2\x08\xf1\x21\x61\x60\x4d\x5c\x0c\xf6\x29\x95\x2e\xc9\x94\x01\x12\x78\x5d\x89\x47\xfc\x24\x50\x62\xd5\x5c\xdb\xa1\xf6\x62\x92\x0f\xca\xdf\xab\xaa\x86\xfb\xc7\xb7\x1b\xf1\xd7\x24\xde\x4f\x3e\xe7\xda\x80\x04\x59\xf2\x0d\xc4\x24\xe0\x54\xf8\xa4\x12\xc6\xa4\x4f\xed\xb6\x26\xa6\xd1\xd5\xfb\x66\x36\x2f\x63\xb7\x8e\x04\xbd\xac\x5a\x4a\x17\xb5\xf2\x60\x1a\x47\x05\x84\xbc\xa7\x69\x69\xb3\xb6\x85\x22\x24\xdc\x00\x10\xd2\x89\x5e\x1c\x38\x20\xff\xa0\x14\xf4\x42\xb3\xc4\x99\x7c\xa3\x23\xf5\xc4\x88\x74\x71\xe1\x8b\xed\x24\x1d\x46\x09\xeb\x6d\xe1\x6b\x03\x95\xc8\xaf\xd7\x77\xe4\x93\xb3\x87\xda\x07\x66\xf7\xeb\x0e\x26\xe1\x64\x50\x71\xbd\x41\xd1\xde\xc9\x56\x3a\x90\xdb\x2d\x3c\x14\xfe\xa1\xb1\xd2\x62\x44\x9f\x15\x3b\xf2\xa5\xb1\xaa\xbe\xd4\xb7\xa2\xe3\x1f\x42\x72\x8e\xf1\xe5\xea\xd1\xd6\x3a\x75\xe6\x50\x8b\x4d\x77\xe8\xc3\x20\x63\xfe\x08\xe3\x0b\xb4\x1f\xff\x15\xee\x04\xfc\xb6\xff\x6e\xc7\x4f\x64\xee\x70\xca\x8d\x4a\x17\xfc\x2b\xd4\x0a\x0f\x01\x99\xc1\xbe\x93\xca\x08\xe0\xd6\xd8\x9b\x76\x4c\xce\x9d\x0f\x1c\xa8\xfe\xbb\x3c\x8a\x4d\x08\xf0\x1e\x10\x54\xd8\xe5\xfc\x5a\x49\x08\x90\x8e\x8f\xe2\x0d\x03\xa4\x28\x84\x46\x35\x91\x6b\x92\xab\x6f\x9b\xee\xcb\x25\xea\x16\x7a\x7e\x28\xcb\x7f\xaa\xf8\x67\x93\x73\x96\xb9\xb9\x76\x46\xea\xda\xf8\xde\xf8\xab\xaf\x05\x8a\x37\x80\x96\xbb\xb4\x32\xd4\x90\xd1\x66\x2b\x96\xe2\xdd\x36\x91\xb7\xb6\xcf\xaa\xa9\x1a\x4b\x4e\x19\xf8\xfb\xa3\x7e\xfa\xde\xd8\x73\xa7\x36\xd5\xe4\xeb\x4c\x83\x4d\xf2\xc1\xf6\x28\x8d\xaa\x70\xed\x47\x5d\x5b\xca\xf2\xa5\xde\x73\xce\x23\x12\xa4\x9d\xe5\x11\xee\x27\x68\x7b\xb2\xae\x1e\x15\x32\x28\x4a\xaf\x6a\x08\xe4\x26\x81\xcb\x9c\xf8\x9e\x1b\x7a\x6c\x62\x9d\x48\xfd\x54\x3d\x67\x1c\x74\x1f\xa1\x4d\x84\xcc\xfb\x74\xc3\x98\xab\x6d\x93\xc2\x66\xa3\x2c\xca\x35\x85\xe2\xaf\x71\x90\xf3\x85\x4a\x63\x0b\x7b\xa4\x28\x33\xdb\x52\x38\x98\xa3\x6a\xe0\x72\xb4\x09\xf3\x95\x17\x69\x26\xc3\x40\xcc\xfe\xaf\x28\x81\xca\x63\x5a\x88\xfb\x54\xa3\x08\x46\x3e\x70\x67\xad\x24\xbc\xa7\xc7\x8a\x71\x78\x5d\x01\xa0\x75\xaf\xaa\x4c\x7a\x26\xca\xd8\xd2\x44\xe4\x5c\xe9\x6e\x0a\x1e\x56\x09\x19\xd3\x47\x72\xa2\xc6\xd5\x4d\x13\xf5\xa3\x86\x3c\xce\x0e\xd3\x2a\x33\x33\x70\x3e\x40\x81\xf2\x29\xe2\xb9\x33\xdd\x50\x58\xd5\xc7\xdd\x94\xac\x28\x62\xdb\xcf\xd2\x72\xc4\xa7\x1f\x10\x43\x58\x58\xfc\xba\xd9\xd2\x21\x1d\x8e\xca\xc2\x93\x8a\x91\xce\x72\x47\x9d\x2f\x9a\xd0\xc6\x43\x5b\x25\x2a\x0a\x4e\xf4\x37\x0a\x4e\xf4\x37\x4d\x7e\xd2\x79\x0a\x97\xf4\x05\xe7\xf8\xe5\xa7\x2d\x5e\x37\x24\x2f\xb2\x74\x19\x2b\x06\x2d\x4c\x10\x97\xf9\xb5\xe2\x2a\x0f\xed\x91\x28\x4c\x71\x66\x37\x69\x01\x4f\xd6\x2d\xf3\x6d\xf3\x8c\x42\x87\x9d\x09\xd4\xc9\x7d\x46\x29\xd2\x2c\x99\x32\x8e\x6c\x49\xdf\xcd\x1d\xa2\x5e\x45\xe8\xa2\x9e\xa7\x95\x79\x91\x0e\x6d\x06\x14\x03\x56\xf5\x4d\x25\x4f\xf7\x29\x92\x23\x4c\x26\xf6\x61\xe4\x81\x6e\xdc\x1d\x1c\x9f\x02\xb3\xa0\x3d\x2a\xf9\x64\xb5\x47\xa5\x25\xe3\xf5\xda\xbf\x9e\x1b\x42\x0e\x89\x59\x4c\xb5\xc4\xc4\x45\xe6\x51\x25\x08\x1d\xe5\xa5\xa8\x92\xe0\x0d\x77\x77\xd4\xdc\x80\xce\x2c\x69\x2a\xd9\x6c\x95\x40\x49\x09\x55\xd4\x32\x5c\x53\xa3\xb9\x3f\xa2\x9b\xcf\xae\x46\x8a\x67\xdc\x4b\xab\xa7\x0f\x49\x0b\x9e\xed\x40\xd5\xc3\xb5\x6d\xdc\xe8\x69\x8f\x3a\x30\x6f\xe1\x3e\x22\x68\x5c\x1a\x6b\xb1\xc7\xea\x7c\xa7\xda\xc2\xe9\x66\xed\x21\xb1\x53\x7e\x5d\x63\x98\x0f\x6c\xf7\x31\xba\x7b\xdc\xa4\x0c\x3c\x30\xf6\xad\x00\x0d\x1f\x59\x05\xb4\x73\x10\x0f\x2e\x13\x89\x03\x9f\xe3\x5b\x63\xb5\x49\xfe\xd3\x58\xf5\x69\x2e\x62\x98\x25\x58\x21\xba\x17\x58\x22\xf7\x94\x96\xe4\x75\x25\xab\xbb\xa9\xf0\x71\x57\xd1\x14\x63\x0f\x73\x00\x68\xdd\xe2\x7c\x4e\xd4\x27\x59\xed\x0f\x55\x25\xd8\x56\x00\xcb\x6f\x07\x3b\x59\x0a\x52\x42\x95\x49\x14\xc3\xf8\xd7\xdb\xf7\x40\xdf\x49\x76\x5c\xf5\xf6\x42\x65\x57\xb4\xe7\xe7\x99\x58\x8a\x85\x06\x0d\x4c\xd6\xaf\xc3\xc3\x00\xc4\xfb\x53\xf5\x3b\x69\x96\x4e\xf9\xf3\xe8\x32\x7d\x6d\x04\x39\x08\xe8\x73\x90\xbb\xeb\xda\xa4\x43\x93\x65\x91\xe9\x6b\xca\xc3\x3d\x45\x79\xf0\x25\xf0\x90\x78\x83\xd3\x14\x61\x71\x5b\x1e\x5a\xf7\x74\xa8\x27\x3b\x1e\x52\x3b\x0d\xec\x98\xb4\xdc\x9e\x94\xe8\x50\x8e\x6c\x16\xa6\x49\xb7\x0c\x8b\x34\xa3\xd3\x14\x9b\x12\x83\x3a\x44\xd9\x6b\x8a\x77\xf2\x8d\xf1\x93\x3b\xa9\x50\xb3\x55\xe8\xff\xbc\x2a\xe0\x38\x45\x96\xf6\xb5\x4f\x72\x58\x52\x43\xe4\x46\xab\x3b\x8c\x8c\x80\x75\x9c\x04\x41\x54\x2d\x3f\x14\x18\x7b\xe8\xeb\x08\x3a\x46\xf5\x44\x5b\x64\xb5\x24\x40\x3f\x62\xbc\x60\x91\xbc\x83\x15\x83\x12\xfa\x01\xcc\xa9\xb5\xe4\x3e\xba\x08\xfb\xa9\xeb\x26\xe9\x3d\x22\x35\xfe\xe5\x44\xa0\x48\x6c\x3c\x47\xc6\x26\x84\xa2\x30\x8b\xa7\xd0\x22\xc3\x67\x7c\x4b\x1f\xc1\x3c\xbb\x15\x24\xaf\x2f\xcb\xe0\x7d\x42\x48\x18\xe1\x21\xb7\x9c\xf9\xd4\xee\x75\x22\x76\x39\xd9\xa0\xea\xf6\x89\x7f\x88\x3f\xb7\x76\xd3\x06\x16\x5c\x81\x1f\x57\xb2\x09\xeb\x7d\x7e\x34\xc5\x35\x2d\x0b\xd5\x8e\xeb\x8e\x75\xce\x1d\xec\x93\xc0\x4f\x36\xce\x68\xf5\x62\x74\x93\x9c\x80\x5a\x15\x4a\x51\x31\xbe\x42\x59\x0d\x96\xfe\xed\x26\x5a\x68\x2f\x8a\xa5\xee\xc3\x0e\x3c\x1d\x28\xbf\xe2\xd3\x75\xc4\x9c\x19\x4d\x69\x66\xcb\x25\x7c\x04\x24\x53\x7f\x30\x6e\x29\xf3\x80\xcf\x6a\x84\xe4\x69\x62\x91\x8c\xe2\x33\x71\x9f\x82\x2f\xb4\x28\x67\x17\x5b\x10\x0d\x82\xe3\x9a\x5e\xf3\x4e\x50\x1b\x0f\xee\x3c\x68\x0f\xcc\x12\xfb\x7a\x4a\x0d\x7e\xb6\x94\x4d\xdd\x3d\xa5\xfb\xaa\xfb\x0e\x19\x2c\xf7\x99\x8e\x81\x04\xe5\x8c\x02\xfb\xb2\x74\xb4\xe3\xa2\xb8\x5a\xe4\x8c\x32\x1f\xc9\x6c\x5e\x18\x7a\x0f\x27\x58\xc0\x04\x3b\xbe\x58\x57\x45\xc7\x11\xa4\x67\x62\xee\xab\x8e\xdf\xcc\x52\x52\xe6\x41\x8e\xf0\x88\xc0\x7c\xec\x9b\xb8\x65\xb2\xde\xfd\x91\x94\x45\xdd\xd8\xae\xa1\x5a\x40\xc0\x87\x63\x14\x6e\x21\x80\x8c\x82\xbb\x14\x70\xd1\x28\x72\xf2\x07\x18\x5d\x33\x69\x94\x2f\xf4\xcc\xd1\xae\x3a\x33\x36\xc4\x6d\xa8\x0f\xf2\xeb\xea\x98\x76\x07\x70\xf1\x70\x4b\xd9\xb4\xd1\xf7\x77\xfe\x70\xbf\xfc\x15\xd1\xa6\xa7\xc5\x2c\x8d\xeb\x6a\x99\xba\xe6\xb7\x93\x0f\x61\x89\x6f\x6d\xfb\x81\xd0\xf0\x43\x2d\xf3\xf0\x0d\xca\x37\x9c\xb1\x9e\x73\x71\x62\xf5\x7f\x7c\x42\x4e\xe8\x64\x34\x49\x0f\x93\xb3\x4b\xb5\xe9\xbb\x65\x1c\x5b\x4e\xd2\x30\xd8\xe1\xb9\x38\x5f\x28\xf5\xa3\x61\x94\x99\x30\xe6\x7c\x1d\xe7\xd1\x4d\x4d\xdc\xbd\xd9\xe0\x46\xdb\xce\xd3\xa1\x1d\xa4\xab\x34\xbf\x43\x68\x07\x33\x11\x63\xf7\xd7\xc6\xca\x34\x78\x52\xca\x78\x71\x46\x59\xe8\x4c\x2b\xa2\xc6\x96\xba\x01\x1c\x3c\xdc\x80\x7f\x6e\x8e\xc7\x23\xb7\xb4\x8f\x52\x9a\xe4\x69\x1c\x75\x8d\xf8\x2a\x23\x8d\x62\x42\x3a\x5f\xa0\x2d\x89\x65\x62\x8b\x2c\x75\x80\xd5\x96\x6a\xfe\xff\xb9\x1a\xe4\xfc\xf9\x4e\xc1\xb7\xc5\x99\xf6\xc2\xec\xa1\x96\x47\x03\xea\x31\xed\xa6\x1b\x16\x25\x24\xe8\x89\x72\x18\x70\x98\x53\x58\xe3\x7c\xb1\xf3\x6d\x9f\x7a\xaa\xca\x65\xf7\x78\x94\x0e\x4b\x62\x70\x47\x30\xf0\xb5\xee\x95\xb1\x6f\x6d\xbe\x4f\xeb\x8d\x7f\x41\x4d\x6f\x0b\xf6\x2b\x10\xb9\xc5\xba\xbe\xc8\x0e\xe5\x44\x64\x01\x7f\xa5\x7b\x14\x7c\x9a\x20\xf3\x78\x37\xf0\xe9\x6a\x99\x43\x87\x13\x81\x8a\x5b\xbe\x7c\x11\x78\x64\x26\x7e\xc8\xf9\x03\x79\x31\xba\xa6\x51\x4a\x6c\x8a\xc2\x66\x3b\xf0\x11\xce\xcc\xfe\xd1\x8e\xff\x7b\xd3\xeb\x74\x42\x4b\x7e\xbc\xb3\xd2\x7a\x61\x71\xa6\x6d\x86\x36\x8b\x42\x83\xa2\x9a\x71\xc6\xba\xec\xb9\xa0\x04\x34\x72\x6a\x96\xfb\x82\x17\x7c\x34\x11\x33\x6c\xd0\x86\xcb\x4c\x94\x4b\x68\x41\x5b\xea\x13\xa5\xcb\xfa\x89\x17\xf4\x4e\x93\xbc\xa8\xd2\xba\xea\xd3\x4a\xc8\xf0\xb7\xfd\x6a\xa0\x12\xe6\x8f\x1a\x60\x29\x0b\xed\x51\x66\x8b\x62\x8d\xb6\x14\xf2\xb2\x37\xc6\x75\xf7\x00\x2f\xb7\xa3\xce\xe0\xfc\x6b\xa5\xc9\xaa\x48\xbd\x38\x23\x4c\x6a\x8a\xf6\xae\x15\xec\x4c\x34\x6e\xa9\x05\xa5\xd1\x34\x45\x16\x55\x5f\x50\x1b\x0a\x68\x73\x82\x06\x6d\xf6\x7e\xd4\xd3\x9d\x98\xad\x40\x83\x25\x1e\x53\xbe\x54\xbd\xcc\xe6\x61\xda\xf2\xbd\x92\x53\xca\xb2\xf3\xd4\xf8\x01\x4f\x54\xea\x3d\x4a\x6b\x01\xd9\xd3\x07\x41\xeb\xcb\xbf\xc2\x67\xf0\x0d\xad\x5e\x7a\x46\x41\x4e\xb0\xa8\xd9\xec\x1d\xa3\x66\x0c\xdb\x3e\x50\x9a\x94\x27\x02\x0d\x95\xf8\x00\x81\x94\x0e\xfa\xff\xe2\xf1\x75\x45\x00\xd2\xd9\xce\xa7\xa8\x15\xd0\xe0\x7e\x82\xf2\x35\x56\x6e\xa5\x24\x04\xc5\xd0\x14\x12\x3c\x1c\x87\xdb\xd4\xa8\xc4\x2f\xdc\xa8\x15\x43\xf9\x28\x4d\xba\x0c\xe8\x12\xd9\x4b\x9f\x91\xff\x86\x6a\xfa\x1b\x32\xe4\x47\x23\x7f\xc1\xd3\xee\x3d\xf1\xed\x82\x86\x37\x17\x99\x89\x78\xfa\x8b\xb6\x31\x40\x55\xfc\x7a\x62\x1d\x57\x9b\x24\x8e\x6d\x95\xd8\xbb\x34\xf0\x24\x55\x3e\x42\x46\x69\x62\x65\x87\x65\x94\x53\x3c\xd3\x26\x67\xf3\xca\xc4\xba\x81\xf5\x30\x4a\x0b\x9b\x14\x91\x93\x31\x64\x79\x24\xfa\x74\x22\x95\xa4\x73\x31\x93\xc5\xf7\xe9\x71\x42\xf5\x73\x4e\x1f\xbd\xfa\xf2\x58\xbb\x9f\x82\xa7\x28\x62\xe9\x4a\x5b\x71\x4b\x4f\x88\x18\x0c\xa5\x7e\x4c\x59\x10\x3f\x37\xef\xb4\xc4\x7c\x03\x68\xd5\xc4\x85\xcd\x5a\xda\x10\x74\x6a\x5d\x25\x26\x53\x9d\x9d\x11\xe7\xab\xb3\xed\x55\xd3\xef\x47\xf9\x80\x87\xa7\x1a\x6d\x29\xd0\x49\x3f\xa0\x11\x8f\x3a\x04\x1d\x04\xa4\x53\x88\xbb\x7c\xd1\xc4\x5b\x88\x92\x9e\x10\x7a\x18\xc6\x41\x1b\x47\x20\x1d\x3b\x5b\x22\x07\x66\xdb\x69\xaf\x37\xa5\xbe\x22\x25\x1f\xce\x04\xf2\x17\x5f\xe0\x72\xf9\x2d\x07\xa5\x4f\x0a\x8c\xe5\xc4\xa8\x9e\xbe\xb3\x68\xc2\x6a\xa1\x51\x93\x14\x39\x21\x2b\x94\x03\xaf\xa8\xe3\xdd\xd6\xac\x8d\xdb\x0a\x44\xf7\x40\xc7\x7f\x96\x1b\xb4\x6d\x04\x07\xa8\x04\x83\xd2\x74\xc4\xa8\x19\x31\x56\xf7\xd4\x98\xdb\x3e\xb5\x1b\xa4\x09\x06\x6e\xd8\x79\xfb\x3a\xbe\x25\xb1\x6f\x5d\x91\x90\xd3\x32\x09\x6d\x4b\xa9\x59\x1c\xd7\x04\x93\xe3\x8e\x04\x9a\xa4\x2b\x51\x01\xd2\xb9\x9b\xf7\x6f\xa8\x1c\x70\x43\x65\x8b\x69\xaf\x67\x33\xea\xc2\x4a\xdb\x05\x9a\x2d\xe2\x6e\xeb\xa9\x66\x1f\xd1\x12\x67\x4f\x24\x2a\x05\xb7\xa1\xce\xb7\xbd\x19\x28\x9d\xf2\x33\x34\x3b\x60\x0e\x1e\x02\x0d\x9e\xd2\xc7\x4d\x55\xcd\x28\x8a\x63\x06\x9f\xb8\xa6\x66\xb5\x72\x90\x41\xe3\x7e\x49\xe7\xf8\x21\xa5\xf2\x6b\x97\x69\x53\x21\xad\xdc\xd4\x85\x25\x73\x7f\xc4\x5a\xb9\x5a\x25\xca\x62\x6a\xd6\x9b\xd5\x57\xc5\xa4\x93\xde\xf3\xba\x7f\xff\x96\x52\x34\x24\x09\x7f\x46\x5f\x59\xc6\x10\x1e\x70\x12\xa6\x49\x3f\xb3\x79\x3e\x34\x6c\x46\x8f\xcd\xcd\xbe\x25\x7c\x31\xd9\x8a\x9c\x6d\x17\x99\xe9\x4a\x15\x27\xb3\x46\xf5\x3b\xc7\xc6\x9e\x1a\xd1\xb5\xbd\x28\x89\x0a\xcb\x7b\x50\xdc\x39\xaa\x15\xc8\xaf\x27\xb6\xd5\xc2\xf3\x07\x61\x60\x82\xc9\x3d\x32\x8a\xed\xb1\x4f\x1b\xb7\x15\x86\x33\xb3\x7d\x43\xf2\xec\x54\xbd\x88\x48\x9a\x3a\xa3\xc0\x51\x92\xfe\xd0\xa4\xba\xc0\x42\xbb\x67\xc8\x22\xaf\xa5\xe8\x8c\x68\x27\xf3\x6b\x07\xfb\xce\xcb\x7e\xdf\xe6\x3c\xc7\x9f\x50\x53\x17\x2d\x4e\x7f\x60\xa7\x61\x58\x66\xe8\x0b\x36\x81\x84\x55\x6e\x50\x58\x93\x25\xec\xbb\x22\x9e\x64\xd5\xc6\xe4\xd7\xaa\xdb\x58\x64\xd5\xed\x5c\x9b\xf2\xe0\x33\x16\x87\xc5\xdd\x3c\xa7\xbc\x8b\x36\x83\x87\x14\xbb\xd3\x24\xe8\xe0\x09\x6f\xa7\xe5\x44\x00\xd0\x42\xc1\x91\xb4\x17\x8c\x79\x86\xa2\xa0\x53\x82\x26\xc6\x5d\x3a\xeb\x51\x7b\x6f\x8f\x15\xf1\xf1\x1a\xad\x34\xdc\xf9\xb3\x63\xaf\x01\x7a\x91\xc2\x09\x7b\xd4\xd1\x8c\x0a\x45\x07\x0c\x26\x51\x5a\xef\x42\xd2\x88\xcf\xfb\xb9\x8e\x4a\xa3\xde\x54\xd2\xf7\x97\x71\x8e\x80\x0f\x7c\x65\xac\xc0\x74\x0f\xac\x7b\x89\xc7\x24\x2f\xb2\x32\x2c\xea\xea\x7a\xe7\x15\xbf\xf2\x7c\xd3\xcc\x64\x18\xe5\xdc\xdd\x6a\x29\x19\x8a\x2d\x55\x65\x68\x05\xda\xa1\x2d\xb2\x28\x84\x72\x09\x2a\xa8\x9b\xba\xab\x7c\xb3\x29\x36\x84\x65\xb6\xb2\xa6\xf0\x5f\x40\x70\x08\xde\xa8\x49\xe4\x3a\x8e\x96\x01\x15\xc2\x63\x78\x7d\xec\xe7\xc1\x57\xe8\x66\x0b\x3f\xd2\x01\x5d\xd2\x8c\x74\x1d\x54\xda\xa8\x9a\x2a\x57\x55\x24\xfc\x03\xc4\x08\xf4\x51\x5b\x9d\xc7\x14\xe4\xb0\x6b\x97\xa8\x3a\x3b\x3c\x53\xd3\x0c\x97\xf4\xbb\xe1\x9b\x95\x49\x54\x37\x1a\xde\xd4\x38\xc4\x4d\x75\xb8\x0e\x4d\x9e\x9b\x90\xbd\xcc\x1d\xac\xd3\x2b\xdf\x57\xa5\xe2\xcf\xed\x68\x92\xd3\x9c\xbe\xe6\x26\x38\x3f\xef\x44\xcf\x3d\xc4\x7d\xc5\x0e\xec\xd0\x26\x45\x15\x60\x9c\x07\xea\x16\x74\x90\x24\x19\xfa\x19\x47\x80\xeb\x46\x39\xb4\x3e\xa2\x34\x89\xf2\x21\x9d\x2c\x0e\xf0\x52\x2d\x32\x69\xbe\xe8\xee\x77\x51\xb2\x2c\x05\x16\x36\x73\xca\xf9\x62\xfc\xd9\x07\xd9\xce\xea\x74\xa1\xca\xd6\xa6\x3d\xf6\xea\x04\x9a\xe5\x78\x23\x58\x0f\x08\x1e\x83\x36\x1e\xff\x83\x5e\x7f\x40\xb0\x3e\x50\x7d\x53\xe1\xb7\xee\xd0\x6a\x24\x9d\x44\xd2\x24\xd9\xbb\x5e\x6d\x46\xd1\x3a\x55\xd4\x4a\xa8\xbf\x08\xab\x9d\x3e\xb2\xcb\xd1\xaa\xec\x4d\x24\x51\x5b\x5e\x51\x49\xbb\x95\xbd\xa9\xad\x7d\x4a\x1b\xc7\x98\x32\xc9\xfe\x66\x9e\x09\x5f\x74\x3c\xac\xc0\x26\x2b\x51\x96\x26\x6e\x3c\x2c\x3a\xb4\x2d\x27\xd5\x75\xbb\x61\x12\xdb\x8e\xa3\x61\xe4\x76\xb5\x8c\xcf\x3d\x93\xe7\x5f\x29\x35\xc8\x15\x9b\x25\xce\x40\xc9\x1d\x8a\xd5\x27\x97\xb3\xd3\x37\xfc\x7e\xe1\x88\x99\xf2\x62\x7f\xff\x69\xac\x8a\xea\x0b\x7f\xab\xb4\xde\x73\x55\xd6\xb7\xe4\xc4\xc0\x50\x23\xa1\x09\xc0\xaf\x1b\x37\x75\x62\xe5\x3b\x88\xe9\xa6\x47\xda\x9d\x73\x5c\x42\x7b\x24\x1c\x98\xa4\x6f\x1d\x13\x4e\x0c\x9a\x5a\x4a\x78\x74\xe7\xc8\x62\xf6\x50\xdb\x8c\x46\x59\x3a\xca\x22\xaf\x17\x2a\x82\x44\xd5\x2f\x4a\x65\xba\xf3\x17\x0f\xcf\xcc\x57\x25\x8a\x4d\xfa\xc5\xc0\x3a\x81\x06\xf4\x81\xdf\x54\x72\x1b\x6f\x2a\x81\x86\xc4\xae\xd8\x6c\x7f\x6b\x6e\x6e\x1b\x02\xf8\xdc\xfa\x46\xc1\x81\x53\xe0\x26\x05\x0e\x74\x95\xde\x55\xb0\xab\x8f\xb0\x3d\x50\x52\xdd\xd6\x7c\x88\xdb\x74\xb8\x48\xbc\x55\x69\x5d\x59\xf4\x22\xe8\x1e\xe1\x71\xbc\xab\xed\x6f\x7e\x9f\x6e\x21\xb2\xf3\x0f\x03\xdf\x3b\x88\x6d\x52\xd0\xa4\x82\x55\x51\x94\xc8\x3d\x84\xa1\x24\xbb\x7f\x4c\x29\xe3\x10\x4d\x26\xdb\xa3\x48\x77\x17\xd5\x19\x79\x53\xe1\x25\x8e\x69\x35\xf6\x73\x74\x9a\x09\x0c\xdc\x63\xb1\xfa\x99\x01\xdc\xdd\x49\xc6\xcc\xcd\xc9\x6b\x9d\xb6\x67\xb6\xc7\x14\x09\xb4\x8b\xdf\x1f\x2b\xda\xdd\xfb\xea\x04\x1f\x99\x78\xa8\x7e\x0e\xa2\x99\xfc\x5a\x31\x18\xc2\x81\x0d\x97\x5b\x5e\xe5\x77\x43\xcb\x80\x6a\xe5\xe9\x22\xb3\xa6\x58\xc3\x20\xde\x75\x6c\x1d\x3e\x82\xe7\x03\xb2\x87\x1e\xd7\xa4\x8e\xc2\x86\x85\x80\x12\x11\xbf\x19\xd0\xcb\x17\x5a\xa8\x97\x49\x9d\x68\x1e\x0a\xad\xad\xba\x63\x1c\x4a\x68\xa5\x60\x20\x76\x59\x49\x3a\xfd\xaf\x4e\x3b\x24\x1f\x45\x59\xb5\xfd\xa7\x6b\x29\x78\xf5\x93\x35\xb4\x19\xb0\xc9\x2c\x40\x83\xa2\x7d\x6b\xfc\x79\xdd\x7f\x74\x61\x3f\xa7\x08\x0c\xf4\xc2\x16\xc6\x4a\x7c\x81\xdf\x66\xbb\x9d\x40\x69\xf3\xff\xa4\x11\x65\x9c\xc6\x11\x0b\x62\xa1\x37\x71\x9b\x1e\x09\xbf\x56\xda\x5f\x90\x56\xc6\x2a\x96\x56\xad\xdf\xda\x1f\xe0\x81\xa3\xb1\x7a\xd9\x31\xc7\x96\x4c\xc2\x05\x05\x77\x16\x71\xe8\x88\x28\x59\xcb\x09\x31\x9c\x1a\x2b\x7b\x8e\x7e\x66\xe9\x30\xcc\xa9\xc3\x88\x94\xee\xaa\x5a\x29\x28\x1e\xb6\x4f\x6a\x74\xeb\x8d\xb1\x5f\x55\x5b\x5a\xe7\xfd\xc3\x26\x10\x1e\xf7\xf0\x04\xbc\x80\x0f\xc7\x0e\x66\x7c\xd1\x80\x51\x5f\x68\xe7\xcb\x76\xe4\x99\x1d\x38\x7b\x3e\xa6\x1c\x97\x5f\x37\xc9\xf4\x8d\x4c\xb8\x6c\x9c\x2e\x80\x08\xf2\xd2\x8d\x40\x60\xba\x11\x78\xdf\x96\xda\xf0\x60\x64\x6d\x37\xa7\x18\xe0\x0e\x33\x87\x95\x00\x65\x5f\x06\x70\x3e\x6c\xac\xd8\x22\x9d\x52\x2c\xc3\xdf\xa8\xf9\xb7\xd1\x42\x91\xf4\xe3\xb1\xba\x4b\x6f\x66\xbb\x24\xed\x20\xff\xac\x32\x15\xfc\x1e\xb2\xd5\xbb\xf4\x86\xe2\x6c\x48\x7f\x49\x42\x9e\x4f\x95\x7a\x51\x52\x86\x86\xbb\x39\xac\xc5\xa8\x30\x01\x67\xdd\x0a\xc9\xac\x41\xe0\x70\x76\xa6\xae\xad\x7b\xdc\x0d\x8a\x33\x13\xc5\x59\x6a\xba\x7b\x3c\x2a\x05\x62\x11\x35\x25\x2e\x4c\x06\x44\x46\x8e\xdd\xc4\xc7\x4a\xe5\x7e\x4b\x29\x83\x54\x7b\x29\x4a\x4a\x58\x0d\xcf\x7b\x11\x70\x57\x9e\xb1\x24\x36\x6e\xf6\x5f\xe0\x2f\x60\x2e\x76\x19\xd1\x1b\xfd\xa5\x93\x0a\x5f\xb7\xaf\xa3\xe4\x97\x4e\x07\x1a\xa4\x14\xdb\x23\x50\x5f\xe7\xf3\x7e\x53\x4f\xb1\x36\x03\xaf\x73\x33\xfa\x07\xfd\xea\x58\x72\xe6\x57\xde\x16\x69\xba\x53\x45\x9c\x5a\xd3\x48\x38\x12\xf8\xc6\xc2\x92\xa0\x4f\xe7\x88\x29\x8b\x02\x7d\xfd\x81\x52\x8c\x7d\x23\xf0\xf4\x81\xd5\x34\xed\xae\xf1\x46\x70\x03\x95\xea\xdd\xf9\xc2\xe9\x18\xf6\xa2\xa5\xea\x68\xa9\xee\x8a\xd0\xac\x5a\xce\xdc\x14\x32\x4f\x58\xc3\x7c\xb4\x20\x08\xfe\x11\x8a\x7b\xc1\xf9\xbb\x88\x18\xa6\x45\x38\x90\xf2\x1b\x15\xe2\x1f\xea\xc9\xf7\x1f\xaa\xf2\x98\x74\x6a\xaa\x7a\x02\x83\x34\xcd\x6a\xe3\xd7\x1a\x05\x5f\x1e\x29\x99\xa4\xe5\xca\x08\x35\xc3\x0a\xee\x77\x6f\xbb\xbc\x87\x02\x08\xa2\xe3\x2b\xf8\x9c\x4e\x12\x64\x7e\x5e\x8b\x9b\xcd\x3a\xc7\x0b\x85\xc4\xda\x50\xa7\xf5\xc8\x44\xdd\xfb\xaa\xa5\xb4\x7d\x49\xcb\x81\x06\x3b\x6d\xb9\xb6\x2f\x29\x05\xb8\x5b\xf0\xef\xc6\xcf\x5e\xa7\xc5\xe7\xe8\x29\xfe\xff\xd3\xd9\x8c\x30\x79\xd9\xb1\x53\xaa\xa7\x66\x93\xcf\x2c\xc8\x1a\x30\xe8\x51\x12\xc6\x65\x57\x64\xef\x14\xca\xd7\x23\xb2\x75\xab\x74\x18\xaf\x81\x53\x02\x9e\xef\x5d\x9c\x24\xc8\x93\xd0\xbf\x16\x08\xa5\x5f\x4a\xf9\x2a\xed\xe6\x45\xd1\xc8\x38\x4b\xcb\x57\xa4\xe9\x1b\x06\x7b\xbd\x34\x5b\x35\x59\x77\xaa\xfa\x15\x87\x53\x73\xe0\x14\x8c\x10\xb0\x47\x4e\xaa\xe4\x6d\x98\xae\xd8\x9c\x08\xc9\xb5\x27\x24\x96\xf0\xf4\x84\x84\x91\xab\x99\x71\x63\xd5\x19\x3b\x51\xb3\x62\x68\xed\xe4\xda\x3b\xa3\x81\xc5\x19\xb7\x70\x94\xa3\x5b\xb9\x34\x34\x59\x94\xd8\x69\x6d\xe0\x19\xa8\x6e\x30\xcc\x40\x9d\xb3\xa7\x2f\x4e\x36\x9a\xbc\xe4\xec\x70\x60\x32\x34\x48\x9d\xa5\xa2\xa7\xe2\xfc\xc1\xc4\x48\x74\x71\x46\xec\xcf\x68\x10\x83\xbb\x70\x5c\x77\x47\x37\xd5\x66\x3f\x89\x02\x0d\xb1\x72\x97\xd2\xd4\xca\x6d\x78\x7f\xeb\xf0\x4c\xb5\x62\x17\x67\xb6\x2f\x21\x96\x63\x01\x72\x4b\x83\x2f\x3a\xad\xe7\xe6\x21\x11\xc9\xe2\x1c\x7f\x14\xa8\x54\x88\xd0\x23\x0b\xb0\x95\x10\xfc\xe7\x25\x5a\x21\xfc\xc3\x5a\xb7\x75\x29\xc7\xcc\x4a\x77\xe0\x91\xd8\xb3\x93\x06\xfa\x23\x37\x9a\x98\x8f\x85\xc9\x73\xa7\x57\xe5\x1c\x35\xbc\x5c\x86\x6b\xe2\x52\x67\xef\x41\x85\x9a\xbb\x31\x56\xf3\xe6\xdb\x81\xea\xfb\x00\x9a\x8e\xfe\x0e\x7a\xbd\x94\xc7\xfd\x97\x5f\xec\x78\xbe\x66\x2d\xa5\x9a\x5a\x77\xdf\xec\x6b\x4f\xae\x57\xeb\x5b\xb0\xfa\x0a\x16\xb8\x31\xd6\x40\xe0\x4d\x85\x20\x3b\xad\xb0\xab\x79\x61\xba\x51\x39\x54\x62\x79\x68\x68\x39\x48\x89\x47\x6f\x6c\x36\x98\x15\xb5\xb3\x74\xa9\xcc\xb1\x6c\xd0\xd1\x42\xee\xc6\xaf\x27\x62\x00\x40\xd4\xdd\x51\x6c\x40\x4a\x43\x07\x0f\x5e\x98\x22\x5a\x56\xd3\x89\x79\x58\x05\xe0\xa8\xb0\x84\x55\x44\x67\xe1\x2f\x03\x25\x69\xf3\xab\xd4\x2e\x73\x74\xc5\x2a\xa2\xe1\x1f\x4e\x62\x45\x88\x73\xbc\x87\xc1\x9d\x0e\xb4\x69\xc8\xf8\xff\x37\xc9\xae\x64\xe4\xcb\xdf\x6d\x39\xfd\x26\x7e\x08\x58\x37\x7f\x41\x41\x14\x31\xf1\xb7\x98\xab\x29\x90\x8a\xd6\x0b\x5e\xa0\xa8\x75\x60\x96\xd7\xf0\x29\x35\xd3\xff\x34\x50\xf8\x88\xb3\x14\x5e\x9d\x7c\xee\x61\x89\xcd\xd7\x34\xd5\x98\x25\x62\x90\xbc\x5c\x25\xd8\x85\x98\x20\xd0\xa6\xc1\x7c\xe0\x13\x85\xc0\x9c\x26\x07\x24\x84\xc8\x1f\xa2\x25\x2e\xd4\x52\xea\x8f\x0a\x7e\x55\xa3\x67\x6f\xe1\x7e\x89\x3a\x58\xeb\xa9\xa7\x5c\xbd\x47\x03\x47\x91\x6e\x57\xfc\x8b\x93\x24\x9b\xcd\xfa\xc8\x41\xeb\xab\xf2\xf0\xc6\xda\x67\xf3\x3b\x63\xef\x18\x7c\x0e\xcd\x11\xd1\x15\x54\x16\xa7\x99\x81\xc8\x01\x32\x59\x48\x78\x88\xec\x94\xb2\x1b\xd9\xd0\xdc\xfb\xb4\x6b\x73\x48\x78\x49\x71\x4e\x9f\x4d\x70\x42\xbe\xf2\xbc\x1e\x3c\xa1\x9a\xdd\xae\xcd\x49\xeb\x90\xc1\x7a\xda\xe1\x15\x46\x16\xac\xab\xa1\x86\xc7\xab\x66\xc5\xe6\x94\x05\x22\xff\x3c\x89\x3b\xeb\x9a\xad\x4e\x8a\xe2\xce\xd8\x8b\x5a\xfc\x0e\x3d\x16\xae\xad\x82\xfb\x64\x99\x3d\xc3\xbe\x2b\x0e\xfc\xe7\x40\xc0\x6f\xd3\x2f\xe0\x76\xb1\x26\x91\xc8\xcf\x78\x1e\xcb\x2d\xba\xa9\x02\xca\xa0\xb5\x09\xf4\xc8\x14\x1a\xc0\xb8\x8d\x2d\x8a\x16\x2c\x59\x8a\x65\x87\x1a\xe5\x32\x2d\x22\x7c\xf0\xbf\xc0\x13\x45\xcd\x7a\x17\xa7\x14\xba\x8f\x27\x7d\xf2\x95\x66\xc5\x5a\xab\x5a\xcf\x22\x31\xdc\x72\x4a\x8b\x27\xea\x33\xce\x34\x47\x07\x04\x8b\x0a\x86\x26\xfc\xba\x66\x16\x68\x6c\xd2\xa2\xc5\xe0\xd0\x59\x0a\xb6\xe5\xe7\x2b\x65\x92\x97\xa3\xaa\x04\x06\x64\xfe\x45\x6e\xd2\x5d\xa8\xf9\x9b\x51\x10\x41\xa8\xda\x9e\x08\x55\x87\x67\xda\xab\x51\xb8\x6c\xb3\x96\x2a\x23\x40\x1b\x13\x0e\xa1\x2f\xfd\x89\x69\xbc\xc7\xc7\xb1\xbb\x78\xc4\xac\xd1\xa7\xc8\xac\xf0\xca\x45\xbc\x65\xd9\x48\x51\x87\x70\x1e\x01\x71\x39\xac\xa9\x21\x6f\x28\x35\x64\xdd\x46\xf8\x5a\x99\x16\x36\x07\x4d\x08\x07\xd0\xa9\xb1\x4f\xa7\x36\x51\xfe\xf0\x3f\x04\x3e\xe7\xda\xd4\x4c\x2b\x93\x74\x63\x3b\x5d\x05\x13\x1c\x47\x57\xc6\xde\xeb\x72\x83\x56\x14\x8a\xb8\xb7\xe8\xc9\x23\xc8\xdc\x99\xa0\x0f\x1d\x9e\x79\xb1\x9d\xd9\xd8\x1c\x71\xcc\x57\x81\x5b\x55\x7f\x96\x5d\xe8\xe9\x9c\x42\x4d\x33\x49\x68\x23\x9d\xed\x95\xd4\x8b\x0d\x21\x52\x0d\x54\x32\x35\x68\x12\x60\x5b\xcd\xa2\x82\x07\xa4\x58\xa2\x40\xaa\xf1\x6b\x5d\x96\x16\x36\xb3\xe9\x1e\xdf\xf0\x7c\x1d\x47\x9f\x33\x80\x74\x5f\xef\x43\x9c\x06\xa2\xe8\xe2\xdb\xa5\xaf\x07\xba\x17\x43\x6a\x09\xae\x51\x8e\x64\x0d\xa5\x18\xbf\x56\xbd\x34\x7c\x4a\xdc\x19\x2c\x6a\x40\x55\x70\x48\xb4\x3a\xbe\xde\xbc\xab\xa4\x08\x40\x83\x5b\xb1\x79\x81\x16\xb8\xc3\x17\x78\xf6\x20\x83\xdb\x70\x28\x20\x92\xf3\x6b\x85\xdb\x5f\x32\xb1\x49\xf0\x51\xab\xa5\xd2\x54\x29\xab\x71\x41\x94\x44\x79\x91\xad\xed\xf5\x5d\xcf\xbb\xd8\x34\x62\x12\xaf\x0e\x15\x20\x2a\x90\x88\xbf\x85\x70\x82\x84\xf8\x04\xd2\x4a\xbe\x50\x33\x34\xb1\x04\x56\x8a\x7c\x1b\xda\x89\x75\x4b\x49\xc0\x70\x86\x8c\x0d\x8a\x5e\x35\xb2\x96\xd6\x84\x51\xfb\xdc\x5c\xbb\x1c\x71\x52\x3e\xe3\xd8\x37\x1e\x10\x06\xc1\x39\xf1\x11\x7c\x42\xf5\x00\xd3\x7c\x64\xc3\x22\x5a\xe1\x3e\x19\x52\x0a\x3e\x3b\xb0\x4d\x11\x64\x71\xa8\x9c\x57\xef\x79\xc3\x97\x85\x85\x56\xbe\xc1\x72\xbf\x11\x28\x42\xce\x0d\xd5\xb5\x78\xb9\xec\xf7\x63\x11\xca\x94\x1a\x46\xb3\x2f\xfe\xf3\x26\x6e\x1e\x64\x29\xa2\xbe\x51\x54\x66\x54\xcb\x18\xaa\xf3\x6b\xd5\x52\xe9\x99\xd0\xee\xf7\xd8\xf0\x93\x0a\x36\x72\x06\x23\x1a\xe9\xb8\xd3\x7a\x72\xb6\x5c\x2e\x35\x67\x81\x72\x11\x21\x6a\xf9\xdf\x40\xb0\x97\xb3\xbc\x49\xbe\xaf\x9f\xa6\x68\xd1\x63\x9d\x7c\xa0\x74\x65\x3f\x18\x3f\xa8\x98\x15\xd9\x17\xe8\xbd\x9c\x73\xe4\xa2\xf2\xa7\x70\xeb\xf3\x3c\x90\x2d\x32\xdb\xc4\x09\x28\x66\xd3\x6a\x12\x7e\x0e\x0b\x15\x59\x29\x33\x5e\x10\x88\x76\x75\x68\xe9\xb3\x78\x1c\xed\x13\x74\x41\xf7\xaf\x57\x09\x0b\xbf\x73\xe0\x1b\xd7\xbb\xd6\x09\xb6\xee\x44\x36\xbe\xfc\x2b\xae\x53\x51\xa5\x48\x62\x59\x52\xdd\x14\xa0\x39\xa6\xa0\xc4\x85\x73\xf9\x56\xa0\x8a\xd0\xab\xd8\xa3\x62\x32\xe4\x8d\xdf\x99\xe9\x8c\x93\x09\xad\x40\xfc\xfa\x65\x4a\x01\xf1\xff\xf7\x77\x7c\x33\xe4\x63\x54\xfb\x22\x2e\xaf\x74\x96\x4e\x22\x66\xe1\x64\xde\x3d\x61\x98\x5d\x3d\x92\x61\x94\x14\x53\x3a\x79\x40\x0e\x2d\xde\x62\x74\xb3\xa4\x26\xac\xa9\xba\xd9\x44\xe3\x72\x2e\x68\x5c\xce\x85\x89\x93\xc0\x09\xcf\x44\xf1\xb2\x52\x69\x38\x1a\xa8\xd2\xf0\xa8\xa2\x1f\x95\x49\x9e\x96\x09\x94\x6e\x91\x7f\xeb\x22\xf0\x47\x63\x4f\x51\xbf\xac\x8c\xe1\xbb\x36\x8c\xf2\x6a\x23\x90\x56\x20\x1a\xb3\x1f\x6a\x55\xae\x0b\x35\x38\xf0\xd8\x83\xd0\x21\xa0\x89\x5d\xa9\xbb\xe5\x55\xd8\x5b\x31\x0c\x17\xe3\xde\x4a\xa0\x0a\xa8\x57\xc6\x4f\xaa\xdc\x82\xc7\xa4\x9e\x48\x86\x94\xf5\x3a\xee\x22\x5f\xa8\x51\xdd\x70\xad\x3a\x7e\xd6\xa6\x15\xe1\x01\x7a\x36\x98\xac\x70\x4c\xe5\x0b\x5a\x9d\xa2\xe9\xfd\xb0\x92\x28\x29\x78\xce\x8c\xcd\xb2\x9b\x94\x5f\x58\xa8\x5b\x29\x20\x5e\xc4\x57\xc7\x66\xbb\x3d\x41\x6d\xff\x52\x3b\x0f\x07\x69\x6c\xb2\x7c\x10\x8d\xe8\x09\xb1\x48\x85\xea\xcc\x9e\xf3\x62\xf0\x45\x96\x86\x51\x5a\xe2\xbe\xc8\x09\x50\x7d\x40\x7e\xad\x90\x7c\x45\x16\xf5\xfb\x36\x63\xd9\x62\x24\xa5\xf7\x6a\xde\x6e\xde\x17\xf6\x42\x43\xcb\x79\xbe\x1d\x9a\x51\x54\x30\x01\x59\x47\x7d\x7e\xdd\xa0\x5d\xb9\xd0\x8e\xcd\x92\x77\xa9\x63\x22\x1a\xc0\x96\xfc\xba\x69\xae\xd9\x4d\x13\xcf\xec\x17\x88\x99\x9e\x4e\x35\xb4\x3b\x48\x65\x34\x53\xc2\x9a\x18\x0c\x8a\xb4\xf5\x43\x8e\x68\x96\xd1\x81\x5d\x6d\x12\x24\xe3\xdf\xc7\xae\xc5\xa6\xfb\xb6\xea\xd1\x5d\x55\x0a\x41\x5e\xb1\xdd\xac\xa4\x51\x77\x07\x51\xfe\xb2\xea\x53\x5e\xf6\x06\xb7\x65\x41\xdc\xe2\x21\x4d\x38\x1c\xd5\xe9\x8a\x92\xf4\xe3\xfa\x5e\x90\x20\x92\x62\x92\x4a\xcc\xb4\x9f\x53\xa0\xe8\xa1\xa5\xf4\xd0\xdf\xa1\x6c\x04\x55\x01\x13\x93\xd0\xd8\x22\xb5\xce\x9d\x46\x1c\xcc\x12\x60\x79\xcc\x9a\x54\xe6\xc3\x4a\x1d\x73\x25\xea\xee\xf5\x3b\xeb\xcf\xc6\x3e\xab\x63\x8b\x5f\x9c\x5f\xa7\x95\x6b\xf9\xdb\xf5\xa6\xa5\xe2\x75\x9d\x57\x65\x99\x2d\xb3\xb4\x9b\xc6\xd5\x7a\xae\x99\xf9\xe0\x7b\x0b\x37\xa0\x29\x5f\x0d\xd3\xe1\x28\xb6\x05\xa3\xe1\x5c\xf6\xe1\x64\xbf\xb7\x82\x27\x77\x2a\x72\xd3\xe1\xcb\x44\x58\xd4\x56\x6c\x96\xeb\x34\xba\x9d\xdf\xeb\x27\x6a\xc4\x7c\x41\x5b\x0f\xbc\xa5\xfa\x4a\x3f\xfb\x73\x30\xad\xc5\x9e\xf8\x14\x3f\x26\x42\x46\x0a\xd4\x35\xdd\x69\xda\x2d\x79\x91\x45\xcb\xe2\x9b\xc2\xe4\x2e\x6a\x0b\x08\xd1\x4b\xf5\x79\xcb\xe1\x08\xa0\x59\x71\x7c\xf4\x71\x64\x73\x22\x44\x2c\x3c\x7f\xb0\x6d\x8f\x8c\x62\x18\x07\x78\x36\x0a\x53\x16\xf8\x42\xb1\x51\xf2\x6a\x3b\x01\xdb\x8e\xec\x93\x49\x98\x7c\x31\xa1\x43\x31\x37\xd7\xce\x6c\x51\x66\x5e\xc2\x05\x28\xa1\x4b\xca\xd6\xeb\x52\xad\x3c\xec\xdb\xfc\xef\x54\x67\xb0\xc3\x91\x3e\xe7\xbd\xf4\xe8\x7b\x31\x7c\x5b\x95\xb7\xbf\x47\x0d\x1e\xd6\x4a\xa5\x93\x1d\x2d\xdd\x6d\x2c\x38\x6e\xb5\x06\x4a\x94\xe1\xaa\x92\x52\xc4\xb1\x8b\x73\x62\x1f\xf4\x2f\xa5\x39\x5b\x9d\xcd\x58\xbb\xbf\xcd\x33\x0c\xf4\x02\x4e\x62\x9f\xab\x8f\x35\xeb\x27\xba\x55\x06\x20\xc0\xc7\xea\x19\x21\xb1\x38\x41\x65\x07\x42\xe5\x65\xad\x4d\x75\x5d\xcf\xf4\x37\x91\x6f\x21\xe2\xee\xa1\xda\x5c\x5c\xe7\x69\x8b\x20\x31\xf9\x60\xfc\x98\x87\x8a\x0f\x47\x65\x12\x15\x6b\x78\xe6\x2e\xbb\x71\x99\xf5\x45\x55\x02\x8e\x7a\xd1\xd7\x41\x83\x91\x7f\x9d\xc6\x44\x88\x2f\xd6\xfd\x7a\xcd\xc2\xc1\x3e\xcf\x60\x79\x54\x9b\xbb\xfe\xdf\x38\x7d\x71\x84\x3d\xa8\x34\xd1\xd9\x69\x14\x79\xf5\x23\xeb\x8a\xeb\xf1\xbf\x04\xda\x42\xf6\xbe\x75\x19\xae\x85\x26\x2b\x5a\x2a\x7e\xa2\x52\x11\x1a\x75\x03\x24\x32\x2b\x93\xb4\xd7\x6b\xf9\x06\xcb\x51\x25\x31\x78\x74\x22\xfe\xcf\x1e\x6a\xa7\x4b\x79\x58\x32\x24\x0a\xe1\xea\xd3\xc0\x07\xd0\x4f\x1b\xa8\x07\xcf\xb6\x97\xec\x20\xe2\x44\xc5\x99\xae\x2e\xce\x70\x69\x78\x9a\x56\x24\xe2\xe4\x8d\x06\x15\x90\x76\x94\x44\x0a\xf1\x2d\xa2\x77\x2d\xa5\x86\xa7\xb4\x3b\xa2\x95\x28\x7e\xc0\x83\xd0\x40\xf7\x44\xce\xb8\x6b\x5d\x99\xd8\xff\x14\x37\x1d\x65\xd4\x1d\xe5\x9f\x79\x3b\xd0\x50\x32\xd5\xe1\xde\xd3\x51\x4a\x16\x5b\x63\xef\x64\xc7\x2e\x60\x22\x5d\x4b\x8f\x09\x1d\x8b\x5d\x1d\x39\x99\x12\x1b\xf5\x07\x4b\x29\x4c\xef\x91\xf5\x7e\xc2\xc9\xb8\x63\x08\x38\x20\x28\xd4\x21\x19\x39\xd7\x24\x58\x91\x99\x51\xd4\xb5\x40\x24\xfd\xe2\x0b\x4e\xab\xdb\x1f\x3e\x9b\x2e\x0b\xb1\x47\x42\x6b\xbb\xae\xb7\x80\x3c\x11\x83\x7c\xa4\x7b\x68\x17\x09\x91\xef\x11\xf7\x6b\xa3\x34\x2f\x33\x4b\xa0\x03\x36\xbf\x52\x1e\xe6\xff\x17\x7d\x5a\x76\xd9\x41\x1c\x17\x30\xc2\x63\x8e\xb1\x93\x47\x7d\x95\x2a\x88\x42\x3d\x3d\x03\x91\xae\x97\x93\x7f\x94\x8a\x07\xce\x2c\xe7\x1e\x5c\x05\xf3\x45\x13\x04\x72\x54\x15\x75\x61\xd4\x95\x30\x8e\x07\x03\x7c\x1e\xbf\xf6\x3a\x7b\x36\x4b\x5f\xae\x09\x45\xfd\xb1\x16\x75\xf9\xe3\xa6\x66\x7b\x2f\x33\xa1\x48\x04\x39\x63\x5e\x05\x0a\x52\x52\xdd\xdd\x95\x28\xe7\x69\xaf\x10\x49\x14\xb2\xe4\x4c\x83\x46\xd2\x7c\xbb\x17\x25\x24\xe6\xcf\xb7\x07\x0b\x11\x4d\x3e\x7e\x5d\x03\xf3\x0d\x92\x9a\x63\x1b\x3b\xdb\x4b\x1f\x74\xe7\x19\xf7\x74\x75\x48\xb0\x68\x90\xdf\x9c\x4c\xf4\x13\x9b\xf1\x86\x85\xd5\x8d\x72\x33\x1a\x59\x93\xf1\x1f\x43\x53\x92\xe7\x27\x7c\xa1\xba\x2c\x5f\x2b\xd3\xc2\x30\x38\xe5\xf0\x0c\x47\xa3\xa9\x8e\xea\x13\x6e\x28\x96\xf4\x69\x25\xf7\xb3\x31\xfe\x2c\xd9\x4d\x96\xce\x5e\x8a\xb1\xf6\x10\x22\xa7\x3a\x1e\x82\x70\x93\xde\x06\x09\xdd\xf7\xf4\xe0\xfa\xac\x06\x46\x55\x1f\x2c\xb5\x0c\x80\x74\x60\xc2\xea\x83\x69\x64\x05\x92\x8c\x63\xb4\xfd\xf9\xb5\xea\x70\x00\x32\xd0\xb7\x49\x88\xd0\x83\x5c\xe3\x9c\xca\xc5\xcf\x35\x19\xb1\xe6\x69\x49\x3e\x17\x4e\x14\x9f\x6d\x77\x90\xc5\xf2\xc1\x23\xb0\xfa\xbf\x45\x67\x8a\x57\x86\x83\x3c\x54\xef\x21\x02\x73\xb2\xbd\xd3\x62\x60\xb3\xd5\x28\x87\x97\x12\xca\xff\xc7\x30\xca\x13\xf5\x6f\x8a\x73\xdc\x0c\x50\x78\xbc\xe9\x75\x8d\x52\xc5\x7d\x74\xd4\xec\xc3\x33\xae\x2b\xe2\xac\xcc\x37\xbf\xd8\x79\x44\x8b\x09\xe6\x45\xdd\x70\x9b\xd5\x3c\xf9\xa2\x09\xed\x47\xed\x22\x32\x99\xcb\x58\x4d\x0d\x35\xc3\x35\xfa\x23\xfc\x7a\x62\x2d\xcf\xcd\x2d\xb6\x57\x4c\x16\x59\xd6\xd1\x43\x57\x82\xb5\xa3\xb9\xed\x38\x56\x9b\x5e\xc1\x30\xe2\x74\xd5\x15\x55\xac\xdc\xae\xd2\x24\x44\xf7\xed\x49\x49\xed\xea\x19\x98\x6c\xc8\x82\x08\x38\x71\x2f\xe8\xb6\xc4\x71\xe4\xd7\x68\x77\xbc\xa9\x06\x7c\xd1\x70\x94\xe6\x2c\xda\x8f\x15\x72\x05\xd9\x08\x5f\x34\x8a\xd3\xd8\xa2\xa8\x16\xbb\x43\xa3\xb3\x29\x11\x6e\xe4\x31\xc5\xc3\xbe\xa8\x44\xda\xce\x2a\xbd\xcb\xb8\x0c\x33\x38\x47\x53\xb2\x85\x66\x18\xcd\x78\xe5\xb5\xea\x68\xa6\x23\x9b\x91\x30\x3d\xe9\x05\xb3\x21\x02\xbd\x31\x72\xa1\xfd\x1d\xa5\x33\xf0\x06\x12\x3e\xbe\x50\x8a\xb6\x60\xca\xc9\x6c\xae\x66\x97\xbc\x73\x45\x57\xb1\x28\x4f\xe3\xd2\x41\x3c\x5d\x5b\x49\xf5\x98\xd6\xfd\xf8\xc1\xf4\xfa\x03\x93\x44\x79\x61\x58\xac\x5b\x24\x47\x7d\x7f\xfe\x64\x3d\xc1\x8d\xed\x1e\x5f\x2a\xb3\x12\xa3\xdb\xab\x73\x73\xcc\x31\xf8\xc9\x58\x75\xd7\xd9\x48\x0f\xc8\xd7\xcb\x0d\x59\xc7\x42\xfb\x6b\xa5\xc9\x0a\x5b\x40\x9a\x4e\x9c\x42\x14\x9a\xed\x54\x0d\x3d\x31\x60\x82\xaa\x78\xd8\xd2\x87\xe0\x8b\x40\x97\x73\x85\x70\x92\x1d\xf5\x60\x51\x10\x29\xef\x22\xdd\xe0\x7f\xa0\x56\x01\xff\xc3\xc4\x07\x7c\x61\xf6\x90\xd8\xcc\x73\xa8\x96\x4c\x55\xa7\xad\x4d\xb5\x78\x68\xca\x5c\x8e\x4c\x16\x61\xa1\x3b\x2b\x82\x2c\x4f\x28\x70\xa9\xed\x46\xa1\x19\xb2\x3f\xc8\xac\x53\x6a\xf3\xea\xc9\x1a\x60\x15\xc5\xb1\xed\x57\x69\x1a\xcd\xf8\x04\xe2\xa9\xf8\x44\x9b\x81\x5f\x33\xe7\x94\xcf\xc0\x6a\x9a\x15\x83\xb5\x29\xea\xc2\xb9\x6a\xd0\x67\x7a\x63\x3f\x7c\xfd\xa6\x8a\xf0\x4e\x2b\x51\x99\x8b\xbf\xa2\x10\xd0\xaf\x34\x8d\x3c\x86\x26\xeb\x47\x89\x92\x99\xba\xa8\x35\x2e\x26\xd5\xf7\x0e\x1c\x68\x57\xe7\x61\x1c\x93\xc5\x9d\x43\x6b\x7c\xa2\xb2\xcf\xef\x20\x30\x0b\x01\x43\x55\xa8\x3f\xff\xf3\x2d\x9f\x5a\x41\x20\x9d\x5f\x2b\x02\xc3\x88\x98\xca\x00\x4d\x3e\xcb\xe5\xe7\x9f\xd2\xdb\x23\xd4\xdc\x54\xc4\xbc\xdb\xaa\x2c\x8d\xcd\x6a\xbe\x57\xd9\x18\x6f\x28\xd5\x7b\x56\xc8\x13\x99\x34\xe5\x5c\x0c\x62\xb9\xe8\x2a\x78\xd9\x9c\x23\x4a\x9c\xa1\xca\x01\xd0\xae\xf1\x94\x0d\xc2\x2b\x7a\xfa\xc6\xcf\x3a\x43\xc2\x70\x50\xf7\x1e\xad\x59\xd3\x7a\xeb\x93\x2a\xab\x48\xa3\xc4\x39\xf2\x20\x18\xef\x5d\xf7\xf3\xe2\xcf\x77\xd4\x44\x75\xcf\xba\xe7\xd4\xd7\x20\xe2\xf4\x95\x17\x78\xdb\xde\x18\xab\x85\xff\x2a\x56\x9a\xa0\x4e\x55\x5f\x3f\x50\xa5\xd6\xd5\x40\x11\xad\xaf\x6a\x71\x5c\x93\x2f\xdb\x02\x3d\x51\xa4\xe7\x2c\xe4\xce\x17\xba\x61\xfc\x09\x05\x15\xe1\x32\x2b\x4b\xaf\xdf\xd1\xda\x38\x5d\x7b\x7f\x75\xd3\x94\x9e\x62\xcd\x85\x6f\x81\x2f\xde\x57\xaa\x39\x50\xad\x43\x22\xcd\x82\x50\x28\x5c\x21\x2b\x8d\x83\xe8\x18\xbe\x35\x2b\x57\x20\xce\xb8\x8d\x79\x78\xc6\x45\x4b\xff\xdd\x5e\x4e\x07\x49\x9e\x26\xd3\xbe\xc6\x41\x91\x27\x6a\xac\xd5\x7b\x23\x95\xdf\x44\xb1\xcd\x17\x6a\xf4\xc4\xaa\x1f\xc0\x02\x8a\xc4\x9e\x12\xec\x78\x15\xb1\x55\x8b\xec\x8b\x3a\x42\xf5\x97\x64\xf1\xed\xe4\x7a\xcf\xcd\xb5\xe3\x7f\xfc\xf3\x3f\x4f\x3a\xf2\xd8\xf9\xb7\x02\xa5\xb7\xf4\x81\x32\xd5\xf8\x64\xa2\xb0\x3c\x70\x80\x55\xb5\x38\x98\xe1\x28\xfb\x4d\x9d\x11\xfe\xe6\x04\xa8\xe8\x69\x56\xa4\x92\xe4\x0a\x6d\x96\x5f\x1f\x2b\xf5\xad\x5f\x57\x06\x97\x44\x84\xee\x0f\x0a\x9b\xb4\x7c\xe7\x01\x01\x50\x90\x42\x0d\x05\x6b\x98\xae\xd8\xcc\xf4\x05\xeb\x88\xc9\x00\x9f\x1d\x7c\x31\xf1\xc1\x0e\x1c\x68\x8f\x32\xf2\x47\xa4\xe8\xc4\x78\x1a\xa5\xeb\x78\x72\x82\x9e\xf1\x74\xf5\x1b\x5f\xaf\x8b\x07\x7c\xa0\x57\xfb\x07\x8d\xb6\xb6\x5d\x1b\x53\xd5\x88\x66\x0d\x06\xa8\xfc\x7a\x02\x02\x5d\xc5\xbf\x7e\x3f\xb3\x7d\x53\xc8\xb7\x91\x4e\x3b\x7d\x1b\xe9\xc1\x4b\xff\xe1\xa9\xff\xee\xbf\xce\xb5\xc3\xc6\x2e\x8a\x7a\xfc\xba\x33\xd9\x1a\x98\x6d\xc7\x51\x95\xfd\x90\x48\x05\x82\xd7\x7b\x81\x36\x5c\xd6\x84\x36\xda\x29\x00\xde\xdc\xa5\x29\x8f\x48\x99\x34\xc9\xd5\x0d\xcb\x24\x0a\xa3\x91\x89\xa7\x15\x34\xf5\x3d\x0c\xc3\x04\xbf\xd5\x72\x2e\xab\x28\x88\x85\x4d\xb4\xf3\x91\x2e\xce\xb4\xad\xc9\x86\x26\x5b\xe6\x5c\x52\xfc\xef\xe8\x5e\x4b\x5b\x90\x9e\x02\x4a\xa0\x6b\x4d\x6d\x8c\x95\x34\x2e\x93\xc2\x64\xc8\x62\xd1\x92\xb8\x12\xb8\xf4\xfa\xf7\x4e\x2a\x23\xb7\xe3\xe3\x9f\xa9\x43\xa4\x7e\xe9\xa0\x14\x48\x2d\xc5\x84\x3b\x8b\x4f\xc0\x17\x13\xdb\x6b\xf6\x50\x3b\xb6\x79\xbe\x57\xe1\x5c\x19\xd9\x80\x89\xe5\xa7\xb0\xdb\x40\xde\x0c\x7c\x35\xce\x8c\x7b\x4a\xe2\xe0\x8e\xf2\xbc\xde\x5d\x53\x57\xcb\x42\xfb\xa0\xf6\xdb\x6a\x2d\x2e\x6c\x6f\xea\xb9\xdc\x05\x4c\xef\x9c\x12\x86\xd3\x06\x60\x0d\x44\x87\x35\xaf\x9e\x90\xc3\x50\xb8\xde\xcd\x7b\x8a\xff\x7b\x5d\x8b\x19\x5f\x09\x14\xcc\xec\x27\x2a\x13\x25\x0f\x19\x47\x1d\xcd\xac\x29\x40\x0f\xf2\xf8\xc3\x0f\x01\xdf\xe2\x8b\x26\x6d\xe0\x97\x6d\x3a\x32\x59\x17\x54\x55\x64\x8e\xd7\x82\x1d\x3d\x39\x69\xcf\x9e\x54\xf9\x48\x6e\x92\xee\x6a\xc4\x4a\xe4\xe2\x1a\xe9\xa7\x39\x1b\x6a\xa4\x95\x45\x2b\x91\xcd\x0c\x11\xff\xf0\x17\xbe\x1d\x78\x66\xf1\xb7\xab\x8d\x2e\xb9\x70\x97\x31\x05\x48\xef\x5b\xca\x99\xcc\x0f\x50\xce\x36\x69\x68\xd8\x15\x36\x4d\xc3\xe6\x81\x38\x1b\xbf\x0e\x3e\xaf\x51\xf1\xbd\xa8\x5f\x66\x20\x60\xa9\x3c\x1e\x78\x56\x7e\x5d\xed\x6f\xe1\x9f\xad\x42\x59\x0e\xe7\xe2\x6d\x9a\xe8\x32\xbb\x96\xc2\x22\x12\xa4\xd7\x94\x72\x52\xb8\xcc\x85\x94\xa4\xe4\x14\x46\x84\x7b\x42\xcb\x45\x7c\x0b\xfc\xf1\x59\xc4\xf6\x51\xf2\x77\x17\x18\x84\x3a\x7f\x69\xbe\xbc\x08\xf8\xa9\xa0\x88\x59\xbe\x5d\x5c\x5d\xab\xbb\x09\x20\xe8\x83\x1d\x9f\xad\x6e\x68\x31\xbf\x7f\xad\xbd\xac\xc0\x25\xc6\x38\xe9\x0a\x01\x0a\xb1\xa7\xde\xa0\xdb\x86\xa3\xe9\x51\xf4\xff\x70\x54\xbf\x33\xd6\x01\xc8\x53\xc4\x99\x11\x20\x7a\x5a\x9e\xe3\x92\x97\xc3\xa1\xcd\x7a\x69\xbc\x5c\xd7\xf9\x99\x9f\x77\x90\xb2\xcf\x6b\xb6\x52\x1c\xf5\xb8\x4e\x9b\x52\xec\xbb\x37\xe9\xf3\xa0\x7c\x65\x73\x01\x11\x45\x56\xfc\xfc\x32\x2a\x1e\xac\x22\x3c\x52\x94\x1f\x68\x52\x2d\xd3\xd7\x70\xc3\xef\x51\x3b\x1d\x25\xe2\x71\xfa\x28\x18\xec\x9f\xc3\xbe\x75\xa2\x60\x8b\xe2\x1a\x8e\xf1\x25\x9b\x37\x05\x93\x5c\x72\xdc\x8f\x6f\x63\x43\xe3\xc1\x4c\x75\xfc\xc2\xbb\x33\x71\x86\xcf\xcd\xb5\xd3\xb2\xc8\xa3\x2e\xb2\x6b\xbc\xf3\x9f\x29\xc4\x03\x49\xe4\xf2\x0c\xee\x54\x63\x99\xd6\x8d\xf2\x51\x6c\xd6\xf8\x74\x12\x49\x0a\x35\xcf\x3a\xa1\xd8\x93\xf3\x07\xbe\xdc\xf2\x63\x71\x2e\x41\xc5\x67\xcc\x37\xf4\x7a\x71\x75\xe8\xe7\xb4\x41\x95\xc8\x81\xa4\x0b\x9b\xb5\xce\x5c\x59\xac\x4d\xfb\x69\xfd\x1f\xe8\x04\xe6\x5f\x2b\xbd\x63\xdd\x09\x3b\x3f\xf1\x4d\x5e\x7a\xa9\xbd\x66\xb2\x6e\x5e\x44\xe1\xf2\x94\xb7\xaf\xfe\x6b\xc5\xae\xc5\x20\x53\x18\xcb\x0d\xba\xa9\x71\x0a\xc9\xc4\x05\x2f\xcb\x24\xf2\x59\xb3\x8f\x75\xfc\x10\x7a\x8a\x40\xcc\x62\x10\xf1\x39\x95\xec\x98\x22\xaa\x3e\x01\xdd\x22\xd4\xc9\x18\x88\xf2\x6b\xd5\xf9\xeb\xa5\x59\xcf\x46\x45\x99\x59\x9a\x6a\x08\x19\x8a\x6e\x12\x3e\x3a\xeb\xeb\x61\x70\x73\x49\x21\x43\xcf\xd3\x22\x42\xa5\x73\x9d\x8a\x3b\x9c\xc7\x53\x1d\x4f\xef\xfd\x58\xc1\xc5\x78\xd8\xe8\x5c\x4c\x58\xb2\xab\x7a\xc7\x6d\x64\x2f\x00\x7e\x9c\x6e\xa2\xbc\x16\x36\xf7\xb8\x38\x14\x30\xd7\x15\xb5\xf3\xba\x8b\x53\xc3\xb4\xb0\x7a\x7a\x7e\x52\x4d\xcf\x4f\x2a\xd0\x45\x6e\x49\x7e\xf4\x01\xda\x53\x6c\x4b\x84\x47\xee\xac\xc4\x0f\xcf\x78\xe7\xbe\x5f\x7c\xc1\xdb\x46\xbb\xa4\xf8\xb8\x26\x0e\xc0\xab\x0e\x61\xe8\x8a\x1a\xce\xf1\xb1\xc8\x1c\x07\xea\x12\x68\x17\x24\x8e\xb3\xaa\x6e\x2b\x4c\xd6\xb7\x05\x53\xba\x18\x03\x8d\x7d\xe0\xc8\xd0\x1e\x8c\x89\x9b\x80\x52\xe3\xc4\x58\x71\xba\x26\xe9\x0a\xf3\xf3\x6d\x1b\x77\x3d\x5e\x03\x53\x1b\x16\x9c\xe2\x8b\xb1\x3f\x20\x66\x23\x2a\x1c\x5d\xa9\x53\xfd\x14\x5f\x4c\xb4\xf6\x60\x80\x4b\x92\xc4\x38\x7b\x9c\xba\xcc\xbc\x16\xd3\x71\x38\xe2\x28\x8f\x92\xfe\x7e\xfa\x49\x61\x8c\xd1\xfb\x63\x82\x09\xdd\x56\x41\x28\xfa\x69\x38\x70\x71\x98\x24\xdc\x09\xd4\x8c\x61\x4b\xa9\x36\x5f\x41\x38\x43\xc8\xdc\xbd\xae\x30\xfb\x65\xb6\x42\x67\xaf\x2b\xc3\x79\xc0\xc8\x17\x13\x62\x39\xc4\xfd\xb6\xb4\x89\xb1\xf8\x77\x01\xde\x84\xa8\xfd\x91\x1a\x1f\xdf\xae\xe9\x2a\xae\x98\xe1\x28\x4a\x60\x36\x02\x08\xcf\x74\x47\xa9\x20\xbf\x35\xf6\x1f\x16\x7e\x1d\x52\xbf\xd5\x82\x51\x7e\x04\x2d\x6f\x04\x1d\xe8\x2e\x30\x1e\x1f\xc9\x2f\x02\xc8\x5d\x65\x94\xfc\x1f\x54\xcf\x67\x68\xc2\x70\x10\x99\x2c\x8d\x0d\x06\xa0\x0e\xaf\xe1\xb1\x1b\x0d\x62\x4e\xd5\x89\x35\xb2\x59\xbc\xd6\xd2\x5b\x61\xec\xf1\xba\x5b\xc1\xe7\xea\x09\xed\x4b\x2f\xb5\xbf\xf4\x84\x3f\x5c\xef\xd5\xcd\xd1\x9c\x99\xe4\x25\x82\xbb\xe3\x0e\x9c\xc6\x3a\x15\xf8\x24\xdd\x54\xbe\xa0\x30\x82\x6f\x76\x94\x25\xb9\x1c\x7e\xf8\xf0\x8c\x90\x1d\xc6\x94\x51\xb8\x62\xf9\x17\x5f\xe0\x6d\x87\xf1\x9f\xa8\x27\x52\xa8\xa8\x2d\x2f\x1c\xb1\x8f\xac\x53\x40\x13\x2b\xc7\x2a\xf1\xe1\x94\x10\xfb\x1f\x39\xf5\x99\x71\xeb\xab\xb3\xce\x93\x13\x3b\x46\x24\x69\xe8\x86\x22\x1b\x3e\x3e\x51\xb4\xbc\xf4\x52\x7b\xb4\x96\x99\xa1\x02\xb0\x38\x97\x0b\xe5\x66\xf1\x44\x43\x63\xc4\x4e\xab\x76\x34\xef\x79\xbe\x50\xdd\x63\x80\x1d\xf9\xb5\x9b\x8c\x41\x25\x49\xf6\x36\x4f\x97\xc7\xb5\x51\xf3\xa4\x77\xc1\xfc\xfc\xe7\xe8\x03\xe2\x19\xbd\x86\x85\x25\x11\x89\x1e\x12\x06\x53\x53\xeb\xf4\x95\x45\x23\x9d\x9e\x18\x7e\x67\x17\xdb\x6a\xa2\x4d\x78\x3f\x9d\x4e\xce\xd6\xcb\xfb\x25\xaf\xe3\x01\xe0\x59\xde\x53\xd6\x15\xf7\x00\x18\x10\xc3\x04\x02\x1c\x8a\x31\x42\xf5\x30\xd1\x3c\x3b\x3d\xf6\xfd\x9c\x0f\x34\xab\x0f\x12\x74\x6c\x26\x1e\x28\x3b\x0f\xae\x4c\x10\xf7\x27\xb5\xe4\x0f\xcf\xbc\xd8\x2e\xe0\x62\xee\x04\x1a\xd1\xa1\xd3\xc8\x60\x7c\xc4\x63\x0d\x98\xab\x67\x5d\x94\xd6\x53\x3f\x6e\x9b\x49\x98\xfe\x2c\x5c\x60\x58\x2e\x19\xd5\xba\xe4\x1e\x33\x5f\x4c\x84\xed\xe7\xe6\x21\x41\xc1\xf5\xb8\x0c\x8e\x14\x33\x6c\xcb\x0d\x89\xfb\xd1\x70\x18\x85\xcb\x4c\xa2\x14\x9d\x6e\x5f\xf4\x6c\xa9\x4e\x59\x2f\xca\x07\xe4\x89\x37\x37\xc7\xfb\x8a\x25\x1b\xf9\x42\xc1\xee\x96\xd2\xa4\x9b\x3f\x8c\x07\x0d\xb0\x1d\x3b\x89\x8a\xe0\x04\xdd\x78\xfc\x89\x3b\x14\xbc\x9d\xb1\xd2\xe2\x0c\x57\x15\x7b\x3a\x4a\x7c\xe1\x2d\x05\x1b\x03\xfd\x11\x19\xe7\x03\x08\x94\x58\xf3\x0f\x75\xbc\xbe\xc3\xae\x75\x85\xa0\xf8\x7e\xe0\x6d\x8a\x77\xaf\x7b\x25\x55\xe6\x12\xa0\x75\xf8\xbf\x05\x9a\x24\x9d\xae\x44\xe2\xc1\x2c\x04\x9a\x96\x33\x1a\x3d\xde\x28\x9b\x93\xa5\x23\x26\x7e\x0b\x53\x55\x49\xb0\xde\xae\xb1\xd7\x76\xea\xdb\x91\xe1\x96\xc9\x6c\x52\x0c\x08\x03\xec\x52\xbf\xb7\xc7\x4a\x17\xef\x6d\x35\x79\x8e\xab\xd5\x04\xde\xe6\xbc\x63\x47\xf9\x91\x07\x37\x11\x71\xbb\x27\xa1\x19\xd5\xdf\x1b\x98\x2c\x8b\xf2\x96\x02\xa6\xb3\x6f\x1d\x5f\xa8\x9a\x2c\x0a\x97\x1f\xa1\xfb\x2c\x92\x80\xf4\x4b\x6e\x40\x7b\xd8\x13\x27\xf1\xc8\xb1\x9e\x6f\x29\xd1\xac\x53\x3a\x68\x1f\xc5\xe3\x07\x00\x08\x11\x1c\xd3\x0e\xbe\x63\x08\xb4\x9f\x6a\x2a\xde\x15\xec\x7a\xde\xb7\x94\x2c\xb1\x48\xae\x66\x3f\x22\xbb\x12\xff\x49\x9f\x75\xdf\xdf\x51\xc4\x55\x13\xa7\xb0\x94\xc7\x2f\x69\xe4\xec\xe4\x01\xb7\x38\xd3\x1e\x9a\xc2\x66\x51\xcd\xe1\x71\x4b\x49\x01\x4d\x1a\xba\xcd\xcf\x1f\x6c\x8f\xa2\x82\x1b\x02\xdc\x72\xc2\xad\x95\xfe\x93\x47\x81\xf5\xd3\xb8\x6b\x93\xbd\xca\x2d\xf4\x9b\x63\xbf\x07\xd6\xf1\x18\x1d\x3c\x4f\x45\x0e\xe5\x1d\xb9\x3e\x56\x4c\x87\x5d\x13\x38\xe6\xa7\xab\x47\xdd\x65\x10\x8d\x53\x30\xf4\xd9\xd9\x56\xa3\xfc\x4b\x5e\xd6\xd4\x8f\xce\xa8\xaf\xac\x19\x22\xdd\x28\xb3\x61\xb1\x8f\x9e\x2e\x1a\xd0\x50\x6f\x12\x73\xb4\xea\x49\xa1\x0f\xc2\x0d\x73\xbe\xd0\x68\x78\xda\x1b\xdb\xec\x7c\xcc\x6f\xa2\x26\x67\x26\x8e\x8a\xb4\xa5\xa0\x89\xda\x60\xe5\x8c\x76\x0a\x0c\x07\xab\x76\x34\xb2\x70\xba\x13\x4e\x94\xd2\x6b\xdd\x41\x8a\x8a\x7b\xfb\x3d\x6f\xa7\x45\xb5\x91\x2c\xd0\x6a\x4d\xe2\xbc\xba\xa9\xd0\x81\x60\xaa\xa0\x9b\x31\x45\x05\x88\x08\x11\x28\x7f\xaf\x5f\x0b\x94\x70\xfc\xaf\x35\xf9\xc7\x74\x33\xc3\xa3\x28\x57\x39\xf8\x74\x49\x01\xd2\xba\x36\x8c\x4d\x56\x45\xa1\x5f\xfe\x4a\xcd\xc4\x89\x5f\xd7\xbe\x4d\x91\xe6\x7b\x68\x19\xb0\x33\x7b\xdd\x0e\x8d\xd6\x97\xf3\x6c\x5f\x94\x81\x33\xd1\x7d\xb9\x8d\x77\x79\xfc\xff\x6f\x4a\xd2\x47\x69\x56\xf4\xd2\x38\x4a\xf9\x38\xc1\x37\x7e\x2d\xf0\xdf\xfe\xb5\x49\xfb\x7e\xfa\xc5\x41\xb4\x94\xa5\x9c\x5e\x70\xbe\x80\x87\x21\xc9\xc3\xce\x28\x38\x37\x57\x55\x97\x7d\x5b\xc0\x57\x5f\x8f\x97\x94\xff\xeb\x56\x53\x16\xda\x8d\xf2\x51\xe9\x3a\xd5\xac\xaa\x37\x56\x5c\xbb\xa3\xce\x99\x2f\x8c\xad\xc9\x60\x93\x70\xd0\x69\x27\xd0\xfa\x45\x82\xb6\xa7\xe3\x83\xfe\xb6\x12\xaa\xc9\xa3\xae\xc5\x98\x88\xc1\xc7\xca\x78\x73\x0b\xcf\x1c\x47\x1d\x72\x74\x41\x28\xd3\xca\x60\xdb\xc4\xe0\x09\xa9\x39\x4d\x52\xf6\x4c\x58\x55\xd1\x99\x38\x09\xe1\x40\xfb\x54\x4b\x01\xfe\x08\xf7\x8b\xe1\x23\xca\x23\x21\xb7\xd9\xda\xb4\x47\x41\xfe\x07\xfa\x8b\x48\xf6\x91\xd2\x22\x16\x70\x6f\x4c\xf0\xe9\x0d\xac\x7c\x9b\x14\x59\x24\xb7\x0d\xcb\x8a\x3b\x3a\x7c\xe1\x74\x98\x7b\x4b\xd1\x94\x67\x04\xd4\x7c\x68\x6f\x72\xd8\xe7\x50\xaf\xa6\x47\x3c\xfa\xa3\xbb\xe6\x5c\x28\xe6\xfd\xd0\xc9\x0b\x9c\xef\xee\xb4\x5c\xc3\x78\xf7\x3a\x05\x07\x51\x93\x7d\x44\x6b\xbe\x45\x26\xc1\xc0\x14\xc9\x3c\x83\xc5\xb4\x08\x3c\x52\xc6\x9f\xd6\x66\xf4\x4b\x09\xc2\xb7\x3c\x39\xfa\xf0\xf2\x84\x1a\x6e\x4b\x66\x57\x4d\xd6\xe5\xdb\xe2\xa4\x37\xbd\xbe\xc3\xf1\x86\xe1\xcf\xc1\xfa\x49\x51\x13\xbf\x94\x8a\xd6\xc3\x15\x7b\x26\x8e\xf3\xbd\x9e\xc5\xba\x6b\xdd\xe7\x77\xef\xd1\x8c\x43\x68\x1f\xde\x82\x92\x9b\x5b\x98\x70\x6d\xe3\x4b\xa0\x6c\xdd\x70\xe4\xd1\xa5\xd8\xb0\x9b\x12\x8e\xe4\x3b\x4a\xdd\xf9\xce\xc4\x9c\xe0\xb9\xf9\xf6\x92\xcd\x8b\x69\xef\x45\x44\x03\xc7\xed\x77\x70\xdc\xa2\xa2\xde\x0d\x56\x0f\x92\xf4\xcb\x4e\xa9\x65\xa9\xcc\xa3\xc4\xe6\xf9\x34\x1e\x3e\x77\xea\xd4\x4a\x04\xa0\x55\x16\x9f\xaa\xa7\x76\xab\x86\x5b\xda\xeb\x45\x21\xef\x2b\xf7\x2d\xab\x54\x43\xb8\xc9\x4a\xad\x1f\xd2\x5c\xae\x17\xe2\x25\xbb\xdc\xce\x58\x2a\x87\x23\xe1\x9e\xa2\x37\x84\x80\xc9\xaf\x27\x22\x87\xa8\x22\x91\x44\xa2\x03\xc2\xb0\xf7\xab\x48\xae\x78\xd4\x6f\x2f\xb3\x49\x38\xb8\xaf\xe5\x9c\x73\x77\x75\xd4\x40\x97\xed\xc6\xf0\xb7\xbe\xa3\x98\x11\xac\x0a\xe1\x42\xd9\xe2\x8c\x6f\xcc\x54\x0b\x4c\x54\x33\x94\xd9\xca\xa9\xc0\x2b\x62\xd5\xa5\x6d\x47\x11\x70\xc7\xcf\xfa\x3f\xe4\xbe\xe0\x77\x94\x37\x6a\x6c\xf2\xe2\x71\xfa\x39\x74\x84\xa0\xbf\x80\x23\x60\x3b\x50\x1a\xd3\x1f\x29\x32\xf0\x35\x3a\xec\x70\x1e\x70\x06\xcd\xf9\xb7\xca\xa0\xdf\x67\xf8\x2a\x1e\xe6\x25\xad\x3f\x7e\x5d\xd3\x0f\xae\x21\x5f\xc1\xbb\x3d\xdc\xa1\x1a\x1a\xf7\x74\x9b\xea\xf1\xed\xb3\x38\xf1\x5d\x82\xe1\x68\xdc\xff\x07\xe2\xb1\x73\x4f\x9f\x3d\xc4\xd3\xd3\xfd\x1d\x3f\x33\xe7\x12\x53\x96\x43\x43\x46\xfe\x72\x1a\x09\x76\x12\x8b\xf7\x46\xa0\x26\x94\x37\x6a\x9e\x9a\x99\x1d\xa4\x65\xce\xbc\x06\xc0\x7c\xae\x28\xc3\xec\x2b\x63\x3f\x39\x49\x43\x6b\x92\xb4\x9f\x99\xd1\x20\x0a\x71\x4a\x09\x73\xb6\xa5\x18\xb5\x4a\x40\xd8\x66\x51\xda\xdd\x87\xee\x04\xba\x1e\x60\x0c\x03\xca\xf8\xe6\x58\x67\x93\xd5\x59\x8f\xfe\xfb\x86\xe2\x27\xdd\x4f\x07\x35\x1a\xa0\x9f\x40\x93\x9c\xdf\x28\xf0\x6b\x3f\x73\xc8\x41\x81\x3d\xfa\x39\xe7\xc5\x09\x47\xd4\xc3\x33\xed\x62\x45\xf9\xf1\x9c\x0a\x14\x9b\xed\x94\x12\x7b\x35\x59\x11\x85\xb1\xdd\xeb\x1b\x41\x6f\x60\x41\x33\x9f\x2f\x50\x7f\xf2\x23\x2c\x00\x51\xb2\x50\x25\xf5\xa6\xce\xf8\xb4\x28\x51\x62\x92\x50\x44\x89\x98\xee\xad\x91\xd4\xef\x29\x46\xc9\xd7\x4a\xa8\xd9\x56\xe9\x01\x09\xc9\xa0\xbe\xf9\x13\x85\xe2\xfc\x90\xbe\x33\x0e\xe2\x63\x35\xb0\x58\x66\xc1\xdc\x72\xe0\x98\xea\x6f\x88\xb9\xa0\xaf\x75\xca\xd8\xd0\x39\x87\x24\x85\xf9\x82\xe2\xda\xe2\x69\x70\xe7\x34\x4b\xda\x0c\x47\x31\xeb\x70\xa3\xb0\x3c\xa1\x54\x73\x4e\x34\x45\x9d\xbc\xcc\x56\xec\x9a\x85\xcc\x95\x3c\x21\x15\x3e\xfe\x0d\xf6\x0e\x8e\xa8\x29\x45\xbf\x3b\x86\xad\x21\x60\xef\x27\x14\xbb\x8f\xb4\xeb\xaa\xdb\x83\x03\x12\xf1\xfc\x9e\x82\xac\x9c\xa0\x6c\x1c\x0b\x6a\x4a\x41\x3a\x4d\xb7\xeb\xa6\x4d\x72\xbc\xb7\x9c\x17\x0a\xb8\xe1\xdc\x30\x54\x15\x68\xd7\xf6\x6c\x92\x5b\x52\x42\xf2\x12\x5c\xd5\x96\x44\x90\x79\x1d\x4f\x5f\x28\xc0\x4a\xc5\x0a\x34\x1f\x4c\x9f\xc8\xfd\xe5\x59\x57\x80\x6a\xd4\x03\xdd\x4f\xce\x30\x38\xe4\x20\xa9\xfe\x77\x0d\x44\xf8\x76\x94\xf4\xd2\x30\xcd\x46\x1a\xf5\x3c\x56\x53\x9e\xc9\xb4\xf1\xf0\xcc\x82\x9f\x41\x39\xab\x0c\x80\x7c\xb1\x33\xd9\x22\x40\x8e\x36\x3f\x04\xb1\x47\xaa\x3d\x0d\x18\xfe\xdc\x5c\x23\x0c\x5f\x99\x76\x5b\x93\x17\x8f\xd0\xcd\x10\x38\x34\xdd\x33\xe4\x37\xef\x50\xf8\x45\x9f\xe2\x4f\xa9\x21\xb5\x8d\x99\x09\x36\x22\xdb\x01\x20\xa9\xb9\x3c\xf6\xc7\x24\x08\xd6\x78\xc3\x7d\x30\x5b\x12\x61\xc9\x6a\x67\xc8\x8a\xa5\x2f\x20\x5e\x8a\xd5\xb7\x14\x5f\x69\xba\xed\x18\x56\xfd\x5e\xb0\xfb\x8b\xc2\x09\xa0\xd4\x03\x8f\xe9\x47\x41\x1d\x10\x9d\x99\x15\x0c\xd5\x7d\x25\x7b\xbc\x36\xdb\x68\xf4\x47\xcd\x2c\xed\x5a\x35\x91\xde\x52\x7a\x16\x55\xf6\xe5\x85\x74\x49\x2c\x24\x2a\x4a\xf8\x1b\xb6\xbc\xb9\xd5\x86\x32\x8e\xd8\x50\xcf\x21\x1d\x15\xd1\x90\x26\x57\x64\x43\x85\x1f\xb8\xa1\xf0\xa2\x9b\xc4\x67\xc2\x46\xfc\x73\x1c\x37\xc8\x85\xa6\x3b\x0a\xdf\x7a\x53\x6d\x92\x1b\x4e\xaf\x0e\x0e\x7f\x5e\x58\x55\x7b\x0e\x3b\xba\xc4\xc0\x9a\x95\xa8\xfa\x7e\x94\x30\xe1\x91\xde\x54\xfc\xcd\x9b\x4d\x6b\xb5\xba\x27\xd1\x0e\x5f\xca\x5b\xca\xc0\x82\x67\x15\x88\x95\xf7\xaf\x7b\x68\x43\x95\x00\x87\x85\xe0\x32\x25\x48\x9d\x0d\x6a\x6a\x95\x3e\x5f\xc9\xd2\x70\xd9\x32\x2d\x48\x3c\x12\x5a\xde\x2f\x61\x02\xfe\x7c\x78\xe6\xc5\xf6\x92\x2c\x6a\xcc\xc9\x6e\xab\x99\xd9\xed\x89\xd6\xf5\xec\x21\xd2\xb1\x2e\xe3\xc2\xf1\x4c\xb0\x08\xf7\x76\x3c\x82\x63\x37\x81\xfd\x90\xfe\x9f\x6a\x72\xb4\x1c\x99\xcc\x10\x82\x14\x9f\x94\xc7\x51\x0a\x00\xb4\xa1\x64\x45\xbb\x69\x3f\x9f\x56\x0a\x94\x67\xb0\x47\x05\x22\xd7\x72\xc6\x15\xbb\xe8\x23\xa0\x32\x98\xd4\x3e\x38\x3c\xf3\x6c\x7b\xd5\xe4\xac\xd5\x2f\x0b\x93\x0e\x56\xbf\x32\x27\xef\x0e\xac\x54\x5a\x3e\xba\x63\x88\xc7\xaf\x5d\x1e\xba\x1c\x25\xd2\x70\x61\x01\xcc\xc0\x13\xd0\x26\xdb\xc3\x4f\xb7\xf3\x70\x60\xbb\xe5\x84\xd5\xb3\x22\x3c\x5c\x70\x07\x7d\x37\x0d\x8b\x14\x20\x4d\x9c\x1c\xff\x42\x9d\xf3\xff\xa2\x36\x14\x8a\x12\xfb\x44\xeb\xa9\xa7\xbc\x9d\xca\xe1\x19\x07\x64\x47\x44\x45\xc7\x9a\x27\x44\x18\x4e\x71\x5a\x26\x53\x2e\x5a\x68\xbc\x14\x3b\xde\x1b\x96\x1b\x0c\x28\xc3\xde\xa6\x61\x0d\x06\x8c\x9c\x3d\x8b\x15\x0b\x45\x26\xe7\x6f\xe3\x86\x57\x0c\xeb\xc1\x1f\xd9\x45\xac\x6c\x2e\x92\x11\xb2\x70\x20\x9c\xa4\x58\xc6\x3a\x61\x38\x10\xc4\xb5\x5c\xc5\xaf\x1f\x8d\x3d\xb0\xe2\x47\x18\x3e\xa3\xae\xbf\xee\xf6\x72\x91\x72\x8b\x5b\x4e\x20\x7d\x1c\x4d\xec\x83\x17\x66\x0f\xb5\x13\x7b\x04\x4c\x0e\x44\x7f\x16\x27\x50\xfc\x01\xef\x7f\x35\xd9\x00\x5c\x68\xe7\xa1\xc9\x34\x6c\x87\x7d\x11\x45\xfe\x61\x12\x9e\x77\xb0\x9d\xae\x26\x53\x8a\x9a\x76\x4b\x35\x9c\xcf\x23\xe1\x12\x0a\x5d\x43\x42\xc1\x07\x19\xd7\x3e\x4e\x84\xd9\x0b\x32\x6b\xfb\x34\x93\x65\xe4\xc5\xe8\x02\xce\x87\x4a\x0d\xfa\xc3\x26\x5b\x2d\x9b\x14\x54\xfb\x30\xb5\x55\xa8\x78\xb4\x36\x04\xad\xed\xdb\xe7\x2b\x69\x6c\x8a\x28\xb6\xfb\x15\x8d\x05\x29\x11\xc6\x6e\x3f\xa6\x33\x16\x29\xc5\x1d\xe5\x3b\x88\xd6\x8b\x44\x2a\xfa\xca\xdc\xc8\x40\xfb\xd8\x61\xdf\xaa\xf5\x29\xd8\x37\x25\x93\x92\x66\x89\xcd\x20\x6d\x85\x35\x03\x80\x0e\xcb\xf5\x8e\x3d\x02\x7a\x7b\x82\x98\x25\xa3\x96\x25\x9b\xf1\x4a\x41\x44\x39\xa7\x27\x62\x3a\x4f\x7c\x6e\xf1\xab\x2d\x3f\x49\xbf\xa1\xc7\x55\xfe\x08\x19\xac\x8d\xec\x94\x3a\xf9\x31\x25\x02\x28\x1e\x6e\x4f\x48\x40\xff\xc6\x0d\x64\xc8\xf9\x30\x5a\xc1\x83\x3c\xe8\x11\x24\x0e\xaa\xb9\xd1\xd4\xfe\x4a\xd2\x55\xd3\x35\x6b\x0c\xb7\x42\xfe\x75\x95\xbe\x2f\x30\xd2\x88\x85\xe8\x28\x9c\x75\x7f\x2b\x1f\xa5\x05\xe1\x5d\x5a\x3a\xcc\x78\xd2\xfc\x05\x55\x78\xfe\xec\x97\xe7\x67\x7f\xee\x67\x3f\x47\x61\x02\x07\x25\xb7\xa3\x85\xb8\xee\xbb\xed\x17\x55\x7b\xfe\x58\xa0\x4c\x74\xe0\x70\x89\x58\x74\x2b\x98\x3a\xf8\x4f\xbe\xca\x6b\xe7\x6a\x50\x05\x29\xb6\x0e\x0b\x94\x7e\xdf\x51\xa2\xfa\x3a\x9a\xf9\xa2\x02\x3c\xbb\x73\x99\x59\x67\x08\x05\x32\x5d\x44\x3e\x8a\xb5\x85\xa1\xc1\x1f\x62\x03\x0b\xe7\x5e\xb1\xc3\xb6\x09\xd1\x25\xdf\xe3\x21\x15\x3e\x57\x22\xa5\xf5\xf0\xee\xd8\xb7\x33\xde\x0d\x7c\x97\xd6\x94\xdd\xc8\x26\xa1\xdd\x4f\x81\x07\xdd\xc6\x56\x67\x27\x61\x86\xff\x3f\x3a\x5b\xe8\x17\x00\xd6\xe3\xba\x02\xae\x65\x73\x42\x6b\x5c\x5e\xc2\x1e\xe3\x0b\xe7\xec\x31\x4c\xcb\xa4\x30\x51\x52\xa4\x48\x78\xc5\x05\xb5\x7a\x47\x11\x59\x6b\x60\x4e\xe6\x23\x1b\x46\x26\x8e\x20\x25\xb8\x7d\x96\x1a\xef\x67\x15\x0a\x80\xec\x06\x4c\xe8\x31\x37\x72\xef\xe9\x53\xb0\xc9\xbb\x9a\x33\x5d\x51\x43\xbf\x51\x14\xa7\xc5\xb4\xee\x5b\x50\xec\xe7\x0b\x7c\x29\x25\xf0\xf7\xa2\xfb\x97\x07\x5c\xe0\x78\x2a\xff\xc2\xa4\xcd\xa7\xbb\x43\x07\xc4\x65\x70\x93\xaa\x64\xae\x2c\xf0\x5e\x88\xd2\xf7\x34\xce\xef\x2c\xa6\xfe\x8c\xb1\x0d\xfc\x50\xed\xa1\x0e\x9d\xf3\x38\xae\xee\xeb\x28\xa7\x80\xdd\xa8\x46\x50\x04\x7d\x87\x8e\x4b\xe4\xcb\x14\xb1\xee\xfd\xea\xa3\x20\xd8\xf1\xd8\x62\xec\xb5\x9c\xbf\x87\x55\x8b\x03\x05\x4f\x1f\x92\x76\xfb\xc9\xd3\x80\x61\xad\x84\x2f\xc4\x9f\x6d\x51\xbf\x13\xdd\xc4\x6d\x80\xef\xdd\x08\x74\x6e\xee\xde\xaf\x3e\xb1\x8e\x85\x8c\xbe\xca\x2e\xed\x72\x72\x11\xe6\xb0\x22\xe1\x4e\xc1\x10\xd9\xd5\xb9\x71\xeb\xcb\xbf\xc2\xa0\x83\x47\x3b\x0d\x2c\xcf\xbe\x89\x57\x4c\x02\xe8\x78\x75\xa3\x64\x27\xfb\xf4\x77\x4b\x9d\x13\x00\xd2\x72\x07\x05\x7b\xe5\x55\x95\x6a\xbc\xaa\x46\x15\x19\x71\x7e\x2d\xe4\x5d\xb1\x2f\xd1\xe2\xc0\xc3\xbb\x4c\x7b\x00\xcd\xba\x56\xc7\x27\xa8\xa1\xc9\x04\x7c\x85\xac\x42\x0f\x80\xcf\x36\xe0\xde\xcb\x64\x64\x22\xa6\x0b\x8b\xdb\x4d\xcb\xc9\xee\x4d\x02\xa1\x0f\xcf\xcc\xb6\x0b\x6b\x5a\xbe\x7b\x85\x26\x8d\xa8\x1d\xed\x84\xf0\x7c\xa9\xdd\xb5\xe1\x33\x94\xb8\x41\xb6\xe9\x9c\xf6\x59\x38\xd7\xe0\x58\xb9\xd0\x2e\xa2\xa1\x05\xab\x11\x8a\xbf\xdb\x97\x26\x90\x41\x4f\xb7\x47\x69\x0e\xca\xb6\xab\x32\x55\x61\xb1\xf3\x7b\xbe\xf4\x52\x3b\x8c\xd3\x1c\xd0\x48\x04\xd5\x6f\xd1\x49\x86\xe6\x00\xa4\x9e\x05\x69\xd2\xc0\x43\x95\x2c\x55\x39\xaf\x78\x9f\xd3\x8b\x4a\xca\x18\x5f\xf6\xc0\x2c\x83\x43\x6e\x2a\xd0\xc8\x4d\x57\xe2\x2c\x9b\x2c\x2f\x4c\x17\xa7\x04\xfe\x91\x11\x08\x7c\xa1\x66\x75\x2f\x5b\x93\xe4\xfb\xaa\x3f\xe6\x6c\xcb\xab\x75\x26\xc1\x15\x6b\x1a\x69\xcc\x2d\xa5\x37\x83\x89\x1e\x62\xfb\x19\xed\x4d\xc7\xc4\x38\xbe\x68\x84\x81\x2e\x95\x51\xec\x91\x33\x42\x13\x54\x94\xc1\x06\x12\xf6\x2c\xf9\x8c\xae\x0e\x6c\x86\xd2\xdf\xe5\xf2\x75\x37\xb2\x79\xd7\x38\xd1\x06\xa8\xc3\x51\x81\xd4\x5e\x1f\x77\xfc\x3a\xd0\xbe\x30\x61\x6c\xf2\x3c\xea\x45\xd8\x6d\xd2\xb1\x83\x98\x35\xbf\x6e\x58\xe2\xa4\x68\xcb\x7d\x3c\x34\xc1\xaf\xe1\x8e\xf0\x45\x93\x44\x70\xdf\x66\x43\x23\x0a\x67\x1c\x25\x70\xf2\x4a\xc8\x98\xe0\x77\xcc\xb6\x87\x65\x1e\xa6\x2b\x51\x61\x05\x03\xc4\xb5\x00\x1e\x99\x14\x06\x32\x36\x5b\x35\xb1\x37\x9d\x12\xa4\xb8\x92\x62\xdc\x08\x1e\x54\x65\x6a\x82\xa7\xe1\x1a\x99\xf3\x22\xcf\xbb\x11\xf8\xea\x5d\x45\x23\x1d\x80\xaa\x1f\x96\xc0\xe4\x0c\x83\x6c\x1c\xa7\xab\x53\xca\x15\x8d\xb6\x3d\xfb\x65\xa8\x79\xf0\x8f\x27\xd2\x23\xc9\xec\x06\x86\x07\xa4\x38\x96\x81\x5b\xc0\x96\x78\x15\x27\x95\xb3\x7b\x78\xce\xfb\xfc\x28\xab\xaa\x63\x4d\x27\xea\x92\x8d\xd3\xa4\x1f\x25\x7d\x0e\x93\x22\x38\x59\x53\xa2\x94\xb1\x9f\xed\xf5\x20\x9b\x97\xd8\x3c\x57\xca\x2f\x80\x9c\x0a\xb3\x60\xe7\x58\x74\xe1\xf9\x83\xed\x51\xb9\x14\x47\xa1\xbb\x55\x6e\xbc\x57\x2d\x12\x49\x91\x55\x6b\xce\x24\x7d\xf6\x22\x5e\xf0\x80\x28\x0f\x8e\x9a\x98\xbc\xce\xcf\xb7\x47\x65\x1c\x0e\xb2\xa8\x28\xbb\xec\xd8\x2b\x3e\xc2\x7e\x4e\xfd\xc3\x26\x9e\x49\xcf\xe4\x4b\x2d\xdf\x30\xdd\xd4\x23\xde\x4d\x45\xa8\x5a\x2b\xfb\x69\x1e\x9b\x95\xc8\x68\x55\x08\x26\x2c\xca\x92\x6d\xda\xa9\x24\xec\x11\xb9\xd5\xcd\x35\x10\x3d\x72\xa9\x87\xee\xe3\x1f\x2f\x47\x8f\xd0\x4a\x86\xcc\x35\x96\xf0\xcd\x9f\xe9\xb8\xec\xf6\xef\x3f\xba\xae\xb4\x25\xee\x51\x48\x45\x56\xbd\x77\xbd\x3a\xb8\xa8\xe5\xf6\x3f\x3c\x85\xd6\x10\x32\x82\x0b\x63\x3f\x7c\xc7\xf8\x1f\xf7\xf0\xc9\x75\x7a\xdc\x68\x7d\x5d\xd7\xc2\x49\x2c\x36\x82\x65\x7a\x49\x19\x64\x7f\x9e\x1c\x3f\x51\x22\xbc\x8f\x05\x02\x70\xcb\xa7\x0a\x0f\x92\x8e\x8a\x28\x4d\x80\xa7\xc0\x74\xeb\x18\x25\x3e\x62\x53\xeb\x73\xd0\x57\xe8\xad\x9d\x6a\x70\xf5\x01\x70\xc0\xbe\x15\x28\xcc\x33\x55\x1c\xdb\x9f\x34\x09\xb5\x22\xcd\xc3\x46\x65\xd0\x79\xe0\xc1\xda\x7f\xed\xf6\x5e\x98\x26\x49\x64\x39\x46\x38\xff\x50\x4f\xe1\xf6\x9d\x89\xbc\xc8\xd2\x2a\x71\xac\xd2\x13\x11\xe4\x6f\x39\x6d\xa8\x3d\x1d\x15\x05\xef\x8c\x9f\xf0\x1c\x51\x62\xbf\xd9\xdc\x81\xe3\x18\xe7\x55\xc3\x7c\x49\x1c\xca\x6d\x58\x66\xb6\xbb\xd7\x87\x94\xb7\xb1\x86\xd0\x2f\xbd\x83\xfe\xb8\x12\x63\x94\xee\xce\x23\xd4\x45\x47\x21\xf7\x87\x63\x15\x1c\xcf\x3b\x28\x78\x68\xb2\x34\x56\xe6\xeb\x97\xb4\xf9\xfa\x25\x85\xb8\x8e\xd3\xa5\xa5\xb5\x28\x2f\xf6\x78\x5f\x64\x98\xff\x23\xd9\x3c\x8a\xa4\x1d\xa7\xca\xfb\x5e\x48\xe1\xf7\x8e\xe2\x0d\x99\x2d\xe1\xee\xb0\xe9\xa6\x23\xc9\xb3\x90\x36\xb2\xe8\x00\x5f\xa8\x8e\x27\x75\xdd\xbb\x26\x29\xf2\x7d\xaa\x9e\x56\x82\xaf\x47\xc6\xfe\xf4\x3d\x4f\x4b\x44\xf4\xbf\x14\xe8\xea\xa6\x9e\xf5\x9c\x43\x2f\x05\x50\x82\xcf\x06\x21\x16\x69\xfd\x80\x39\x1f\x34\xde\xc3\xdc\x76\x4d\x32\xa5\xd8\xf2\xff\x52\xb1\xdb\xe0\x88\x20\x4b\x43\xea\x50\xa7\x81\xb7\x47\xcb\x2e\x8c\xd5\x64\xff\x8e\xca\x15\xae\xe0\x71\xf3\xce\xc3\xb7\x12\x5c\x5d\x83\x6a\x51\x96\x1e\x59\x4a\xb3\xb4\xe5\xb9\x6c\x17\xf5\x78\xe9\xa2\x9a\xd3\x21\x85\x6d\xf9\x0c\xf7\x23\x7c\x45\x19\x6d\xf9\xbc\x35\xb7\x61\x9a\x74\xf7\x7b\x93\xf2\x93\x4a\x9c\x6d\x80\xfc\xdc\xd9\x19\x55\x99\xbb\xd8\x19\x79\x12\xcf\xab\xc1\xa4\x59\x8e\x18\x56\x2b\x54\xe2\x5f\xaa\x7c\x1c\xba\x04\xd9\x3e\x7f\x58\x7c\xa1\xe3\xa3\xf3\xc3\xeb\x1e\x8f\xf2\xb1\x22\xcf\xdc\x51\x34\xfa\x4d\xad\xe7\xc2\x03\x67\x69\x69\x39\xbb\x09\x6b\x96\x6d\x46\x33\x30\x84\xa7\x27\x50\xf4\x60\xd4\xf6\xf7\x68\x17\xa1\xb7\xbd\x7b\xdd\x71\xbd\xe2\x74\x2d\x47\xf3\xca\x15\x8c\x1e\x5e\x73\x5b\xab\xdf\x4e\xb6\xcb\x0e\xcc\xb6\xc9\x6b\xaf\xab\xbc\x58\x4f\x62\xfd\xf3\x85\x1a\x6b\x8f\xca\x78\xb4\x57\xe1\x79\x39\x4f\x43\x80\x7e\x6f\xac\x6c\x82\x30\x66\x40\xef\xe7\xb7\xb4\x97\xef\x3f\x1f\x7b\xc2\xd3\x87\x0d\x15\xc0\xc0\xac\x58\xe5\x2c\xcd\xe8\x6d\xbe\x08\x3c\x57\xcb\x1b\x91\x91\x9b\xa7\xbb\x2d\x28\x35\xd9\x6b\x52\x13\x63\x4e\x37\x79\x12\xae\x66\xe4\x7f\xf5\xc2\x82\x83\xdf\x78\x84\xd7\x45\x45\x86\xa9\x2a\xf3\x32\x5b\x72\x83\x3a\xec\xfc\x5b\x2a\x62\xff\xae\x72\x6a\xbe\x3d\x6e\x37\x74\x18\xbd\xab\x3d\x07\x7e\x89\x6d\x6c\xea\xce\x17\x4d\x28\x48\x7b\x64\x64\x43\xc7\xe2\x47\x7a\x86\xc9\x20\xfa\x8b\x57\xb1\x2b\x45\xba\xe4\x61\xdd\xce\xca\x92\x3d\xfe\x53\x9e\xd6\x80\xbc\x2b\x84\x99\x47\xc1\xca\x79\xa7\xa8\xff\xf9\xa0\xf1\x60\xa3\x32\x6b\xcf\xf9\x4d\x09\x51\xb0\xee\xc3\x40\x6f\x86\x6d\x77\x43\xed\xf1\x81\x19\x8d\x6c\xb2\x97\x0a\x6e\x59\x5d\x1e\xe5\x78\x82\x2a\x74\x59\x82\xd5\x47\x40\xf9\xcf\x47\x0c\xd6\xc0\xf7\xf0\x4c\x85\x71\xf8\xb0\xc2\xb2\x14\x36\x79\x58\xfb\x44\x54\xab\x08\x3b\xf5\xea\x58\xd9\xaa\xde\x19\xab\x6e\xc1\x76\xa0\xd8\xd5\xf0\xa5\x40\x46\x77\x03\xa5\xbd\xa3\xd6\x79\xfa\xca\x19\x9c\x2f\x4c\x8e\x08\x3c\x6f\xe4\x47\x81\xd7\x14\x81\x02\x8a\x18\x32\xd1\x16\x76\xf6\x37\xd5\xc3\x96\x14\xdb\xd3\xc0\xe0\xfc\xb5\x83\x84\x70\x45\x11\xd1\xae\x38\xf0\x4f\x61\xa2\x78\xc9\x54\x0b\x77\x51\x50\xfe\xaf\x8d\x3d\x2e\xe6\xb5\x26\x59\xad\xdc\x86\x99\x45\x4f\xdd\x89\x28\x7b\xf0\xc4\x35\x65\x11\xf6\x6e\x23\x50\x27\x4b\x49\x62\x67\x0f\x39\x82\x5d\x52\xed\xe4\x0d\xa0\x95\xdc\x85\xd7\x93\x7e\xd0\xe7\x7e\xbf\x75\x6e\x22\xb1\x96\x93\x6d\xd5\x78\x4d\x45\xf4\xde\xaf\x28\x2b\xc9\x2b\x0e\x5b\x95\x95\x99\x89\xe9\xc8\x47\x27\x75\x53\x55\x99\x77\x95\xfd\xd2\x96\x0e\xac\xdf\x52\x2a\x6b\x0f\x77\x26\x1b\x03\xb9\x8d\x63\xb0\x38\xf0\x31\x3f\xa4\x45\x83\xc5\xb5\x0f\xf0\x22\x94\x62\x37\xc6\x4a\xc4\x6e\x4b\xf3\x8f\xd3\xa1\x5d\x4a\xbb\x6b\x7b\xbc\x51\x06\x60\x58\xb8\xcb\xef\xd2\x59\x80\x5c\xf2\x16\xda\x54\xfc\x0f\x68\x3b\x09\xaf\x50\x49\x68\x55\x65\x2b\x7b\x06\x8b\xc8\xe7\x35\xed\x54\x77\x2d\x78\x42\xd1\x97\x20\xee\xb4\x14\x5b\x1c\xdf\xec\xeb\x0b\xe0\x16\x76\x33\x64\x9e\xb0\xcd\xc1\x74\x63\xd3\x9d\x40\xe5\xcd\x1b\x13\xd9\xff\xdc\x5c\x3b\xcc\xa2\x22\x0a\xa3\x5c\xa4\x1e\x9c\xbf\x98\xe2\x89\x7e\x5e\xe1\x03\xab\x23\x3c\xea\x45\xa1\xe1\x21\x26\xfe\xfe\x0d\x05\x10\xb9\xe1\x08\x30\x45\x56\xe6\x2e\xa2\xe1\x1f\x2f\x2b\xe7\x12\x9e\xb9\xe0\x29\x6e\x37\xcc\x4a\x67\xdb\xdd\x74\x35\xd9\xef\x3a\x5e\x5f\x7a\x94\x4e\x60\xdc\xcf\x27\x3b\x4a\x26\xf7\xde\x58\xa9\x85\x23\x25\x66\x89\xcd\xb1\x47\x40\x4e\x77\x94\x0e\x32\x54\xb5\xa5\xab\xe7\x2b\xbb\x51\xbe\x16\x3a\xd4\x11\xa0\x06\x27\x15\xec\xe0\xe4\x04\x3b\xf4\xd0\xf3\xed\xd8\x9a\x2e\x55\xce\x32\x3a\xf3\xe8\x82\xcb\xca\x01\xd0\x67\x00\x4b\xd1\xb2\xdb\x0f\x4d\xba\xf7\x1e\xc5\x68\x22\x12\xef\xab\x96\x91\xd3\x8b\x79\x6e\xde\x95\x1e\x9f\x31\x2e\x8e\x14\x33\xd3\x01\x3f\xdc\x03\xdd\x9c\x70\xfd\x9c\x3d\x44\x6b\x3c\xcb\x8d\x1e\x34\x63\x87\x03\xf3\x89\xe8\x77\x53\xf1\x9c\x8e\xab\x71\x54\xbe\x36\x1c\x15\xe9\x30\x87\x57\xa6\x40\xcc\x3c\x0e\x75\x3b\xf0\x0d\xed\x7b\xca\x10\xe4\xa3\x40\xf9\xb7\x7c\xd4\x40\xda\x38\xd8\x36\x71\x91\xf6\x6d\x31\xa8\x12\xa6\xd9\x43\x5a\xd4\x7f\x81\x8b\x50\xfc\xb9\x6b\xae\x46\xca\x6c\xd7\xda\x61\x4b\xb3\xf3\x3c\x64\xf2\xd4\x44\x06\xfb\x34\xd9\xa7\xc5\x26\x01\x2b\x44\x5a\x4e\xca\xa9\xe4\xa2\xb2\x94\x5b\x31\xa0\x36\x28\x83\xab\x05\xe7\x82\xe5\x29\xe9\xb6\xd7\x8b\xc2\x08\xea\x76\xae\xa3\xc2\x02\x52\xa2\x83\xdb\x20\xad\x71\xb0\x3d\x34\x7d\xf3\xf5\x28\x91\x62\x10\x39\xd4\x29\xed\xb5\x7b\x2a\xf8\x2c\x79\xbf\xaa\x72\x09\x9d\x10\xbf\x8c\x42\x3f\x18\x2b\x8b\x9b\x0f\xdc\xf9\xd2\x5f\xcb\x8c\x5f\x24\xac\xfa\xa3\x86\x94\x37\x9a\x94\x0f\xfa\x26\x11\x2f\xdd\x46\xf6\x8c\x62\x0a\x94\x4b\x79\xd4\x8d\x2c\x8b\x2f\x39\xc6\xf9\xdc\x9c\xcc\x66\x94\x55\xd2\xb6\x6a\x98\xae\x8a\xae\xa2\xa0\xf5\x6b\x04\xe0\x9d\x0f\xef\x4b\x3b\x34\x67\x18\xa4\x10\xf8\x93\xee\x98\x62\xd9\x94\x36\x7f\xb8\x5a\x31\xf8\xab\xfc\x8c\x71\x06\xed\x5b\xf7\x68\xb7\xef\x8d\xfd\x90\xe7\x21\x00\x7f\x44\xbd\x4f\xb3\x6f\xae\x10\xcd\x51\x6a\x42\x3a\x60\x68\xfb\xff\xd3\x2f\x50\xe3\x0b\x81\xe9\x4f\xfc\xe1\xfe\xcc\xdf\x07\x9e\x52\x8e\x36\x6f\xfe\xf7\x97\xff\xb0\x53\x17\xe6\xf7\x4d\xa7\xad\x46\x87\xde\xcc\xc2\x78\xc1\xe1\xa3\xf0\x9e\xa8\x91\xf8\xb5\xb2\xfc\x0b\xab\x6a\xda\x66\x6c\xe5\x8d\x20\x75\x12\x4b\x97\x2f\xd4\xd8\x75\x14\xf1\x60\x0a\x87\x22\xf2\x44\x1c\x6e\x60\xac\xe3\x6c\xfb\x89\x86\x5a\x67\x26\x09\x15\xa4\xe5\xad\xa0\xa6\x2c\xbd\x73\x5b\x1f\x9e\x59\x68\xaf\x46\x5d\x9b\x8f\x32\x0a\x9c\x4e\x2f\x09\xe1\x45\xb9\x39\xf8\xa8\xab\x39\x1b\xa3\xaa\x48\xe3\x07\xee\x46\x57\xde\x6e\xa7\x41\xe5\xb0\x5d\x64\x69\xb9\x14\x8b\x36\x9b\x13\x8c\x9f\xf7\x82\xf1\x4d\x42\x37\x64\x88\x3b\x14\xa3\x56\x07\x0f\xf4\xa9\x87\xe0\xf2\xe5\xdc\x69\x98\xeb\x47\x49\x01\x23\x61\xfe\xc0\x42\xa8\xa7\x07\xce\x17\xaa\x63\xfb\x72\x5a\x66\x89\x89\xa3\x7c\x38\xe5\x61\xe5\x67\x14\xdc\xe9\xb5\x40\xad\x5a\xaf\x03\x96\x18\x40\xba\x5c\x03\x53\xad\x4b\xaf\x44\xf6\xc5\xc9\x2d\xbd\x14\x01\x68\x6b\xb3\xff\xfe\xbf\x42\x2e\x50\xe7\xcd\xcc\xcd\xb9\x9d\xe8\xad\x8c\x93\x34\xe1\x5c\x44\x89\x93\xc9\x81\x81\x3c\x53\xd3\x4a\x90\x79\xef\xe9\xa8\x41\xeb\x75\x25\xaa\x31\x30\x86\xc2\xd0\x8b\xdb\x68\x07\x6d\x5f\x52\x0a\x5b\x4c\x14\x7c\x50\xf5\x89\x20\xaa\x27\xec\x69\x3a\x41\x90\xb5\x6f\x20\x85\x17\x3d\x0f\xfa\x73\x6a\x36\x2d\x90\xf7\xb7\x29\x59\x41\xdf\x63\xba\xe3\x7b\x7c\x97\xa9\x8e\xe7\xb7\x42\x0a\x8f\x7a\x16\xe8\x35\x66\x3a\x6a\x16\xeb\x37\x27\x8a\x5b\x2a\x9c\x86\x1c\x23\xc5\xd9\x53\x09\xd6\xfe\xd0\x15\x6e\x89\x59\x8a\xf2\x30\xad\x05\xfa\x0b\x3a\xd0\x5f\x50\x26\x89\xbd\x32\x4b\x48\x12\x62\x4f\x15\xa6\x38\x01\xac\x13\x3d\xdc\x40\x14\x8a\x66\xce\x79\xc9\xe5\xba\x9b\xca\xe1\x24\xb1\xc5\xfd\x54\xb0\x20\xca\xad\x8f\xfd\xf8\x4e\xd3\xfa\x6e\x2a\xb2\xc1\xb4\xc6\x49\xfe\x31\xa2\x07\x5b\x3b\x28\xd7\xef\xab\x28\xa9\xf8\x6d\xb5\xcf\xe5\xed\xc0\xcf\xfc\x8e\x05\xde\xb6\x62\x68\xa9\x38\xe8\x95\xa4\x42\xed\x2c\x79\x01\x93\xe0\xd7\xe3\x07\x7d\x63\x30\xc2\x98\x0c\x8f\x0c\x90\x41\x7e\xad\xf9\x94\x66\x88\xad\x2e\x9e\xbe\x8a\xa6\x73\xaa\xa1\x09\xfe\x6c\x7b\x29\x0a\xd7\x42\x0f\x0f\xc3\x3c\x0d\xa3\x4c\x7e\xad\x94\xe5\x43\x93\xac\x18\x98\x09\x2b\x25\x40\x69\x19\x00\x0b\x82\x3d\x77\xb5\x89\xfc\x12\xa7\x6b\x26\x86\x0c\xfa\x8b\x35\x83\x21\x91\xf8\x6f\xe8\xb2\x41\xaa\xe3\xc8\x94\x07\xf6\x42\xff\x0d\xf3\xfa\xef\xd6\x95\x6f\x65\x8d\x0d\x0c\x4d\x4e\xf0\x95\xc4\x6a\xbc\xa5\x2c\xc8\x9d\xc9\xa3\xc9\x59\x02\x16\xc7\x0e\xb0\xaf\x42\xb6\xae\xa9\x7e\x7a\x35\x51\x52\xed\x82\xd7\x83\xd2\xa5\xb8\xa6\x25\xf8\xae\xa9\x9d\x5c\x3e\x93\x3f\x93\x3f\xc3\x92\xee\x00\xc2\x71\x13\x8a\x2f\x94\x04\xe3\x72\xba\x04\x6c\x17\x0e\x1e\x9e\x11\xf3\x45\x20\x18\x8d\x91\xcd\xbc\x4d\x92\xb7\x1b\x80\x00\x03\x26\xff\x8f\x52\x37\x0d\x4f\xf0\x3e\x90\x91\x59\xe4\x35\x78\xa2\xce\xbd\x3f\xf4\x7c\x55\x71\x3c\xec\x33\x4a\x30\x44\x58\xea\x17\xc5\x16\x82\xda\x4f\x55\xed\xfa\x3e\x2a\x6c\x51\x1e\xa0\x3d\xc5\x3f\x05\xac\xa3\x64\x70\xfe\x80\xda\x45\xc0\x04\x64\x27\xd7\x10\x66\x84\xdf\xdd\x9a\x9f\xdf\xde\xbd\x0e\x1a\x83\xe3\x0c\xf8\xa0\xc9\x6c\x35\xc0\x18\x7e\xa4\x85\xf5\x93\xbc\x30\x49\x08\x72\xc5\x36\x1d\xed\xb3\xdb\x27\x9d\x74\xdc\x52\x9a\x74\xa7\xab\x0f\x20\xde\x23\x6e\xad\x3d\x04\xf1\x1a\x60\xe0\x1e\xc5\xfd\x11\x9c\x80\x6f\xe9\xd8\x23\x85\x4d\xba\x7b\x3d\xa1\x02\x68\x36\x29\xa7\xe9\x19\x22\x26\xf1\xa9\x2d\xa2\xd1\x2d\x27\x83\x0b\xc9\x55\xfe\x21\x45\xf8\x09\xab\x25\x6a\x1f\xf0\xf9\xda\x15\x42\x58\x70\x5d\xa6\xf0\x3b\x60\x95\x23\x8f\xfc\x46\xa0\x34\xce\xae\xab\x22\xe0\x18\xd6\x93\xb8\x00\xb5\x0e\x1c\x70\x8a\x54\x5a\x1f\x55\xed\x3b\xb6\x63\xc2\xd1\x7e\x51\x81\x8e\xba\x69\xbe\x9c\x86\x51\xcc\xdc\x41\x50\x7c\xbe\x57\x77\xa2\xad\x7e\x13\x47\xff\x65\x75\xb7\x40\x6d\xc3\xe6\x66\x19\x7e\xdd\x7c\x3e\xdd\x98\x6a\x98\x38\x4d\xfa\x79\x84\xd1\xa0\xf7\xab\xaf\x3e\xb5\x04\x05\x9f\x6f\x0d\xd3\x23\x11\xdb\x37\xa3\xc3\x75\x55\x89\x0c\x5f\x75\xdd\x94\x74\x64\x13\x56\xe9\xc6\xb4\x10\x13\x59\x77\x70\x56\x9f\x09\x54\x80\x4b\xe3\x96\xa2\xda\xee\xcc\x38\x9f\x9b\x6f\x97\x49\xcf\x0c\xa3\x38\x32\x59\x54\x20\x4a\x63\x11\x9e\x0c\xd4\x8a\xd4\x44\x42\x13\x86\x36\xcf\x1f\xf2\x70\xd4\x5d\xeb\x4a\xc4\x8f\x2d\x64\xd1\x96\xb8\xa1\xc0\x31\x0f\x76\x14\x2f\xe9\x9b\x78\x73\xb4\xfa\xde\xa3\x23\x8a\x9b\x08\x9c\x76\xf1\xbf\x04\x0a\xac\xb2\xa9\x3d\x44\xbf\x39\x56\xaa\xe4\xec\x58\xcc\xcd\x42\x3a\x8c\x44\x4a\xae\x41\x51\xd0\x24\x49\x5a\x26\xa1\xed\x4e\x53\x7e\xe1\x58\xbe\x1e\x4e\x0e\xb8\xa5\x80\xe0\xe9\x23\x20\x0b\x9c\xea\xc8\xbe\x5b\x8d\x32\xc8\x27\x23\x48\x43\x8a\x43\x9b\x7d\x09\x1e\xa3\xfa\x6a\xea\xa4\x12\xb1\x9e\x5b\x4d\xcd\x86\x74\x10\xa5\x14\x6e\x1d\x52\x56\xcd\x18\x5c\x68\x8c\x92\xc2\xf6\x33\x47\x56\x59\xe0\xa3\x61\x43\xf5\xbe\xef\x2a\x8b\xcf\x49\xe3\xa3\x43\xcf\xbb\x2a\x83\xb4\xba\x5c\x6b\xe5\xb0\x67\x38\x28\x13\xe7\x62\x2d\x8e\xf2\x01\x9f\xe0\x62\xd1\x4d\x9f\x8c\x2f\x34\x8a\xd4\xe4\x51\x92\xe6\xd3\x1e\x2d\xfa\x0e\xdd\x0d\x40\x0a\x37\xd4\x34\xe5\x1d\xa4\x6d\xfc\x0f\x6a\x3c\xc8\x59\x61\xd6\x52\xeb\x08\xdf\x4d\x5a\x5d\x3b\xdb\xa3\x0b\xcf\x1f\x6c\x2f\x65\x91\x81\xcd\xb7\x43\xb6\xf9\xa1\xc5\xf9\x06\xfa\xca\x8b\xed\x30\x2d\x93\xc2\x66\x84\x61\x61\x89\x5a\x85\x73\x3b\x83\x6c\x07\x44\xa0\x77\x1b\xa0\x26\xe1\xc0\x5a\x66\x8b\x3a\xe6\x82\x1b\x63\xdc\x9c\xc8\x0d\x16\x16\x17\xda\x2b\x26\x2e\xd1\x33\x5b\x70\x7d\x23\x5a\x76\xce\xfe\xa0\x5a\x6a\xac\x51\x3b\x81\xd7\x39\x30\x4b\x6c\xb2\x38\xb6\x0c\xb2\x05\x36\x18\xfd\x39\x7e\xdd\x80\xbb\x6f\xaf\x9a\x6c\x28\x95\x37\xcb\xf0\x04\x7e\xb0\xfc\xf1\xc4\x42\x7c\xba\x5d\xa4\x05\x13\x71\x71\xf8\x7d\x9f\xee\x0b\xbf\x56\x0a\xea\x66\x68\xb3\x28\x34\x49\xfe\x00\x7d\x25\xec\xa4\x7f\x3b\x56\x82\x7f\xd7\xc7\x35\x5e\x9c\x9e\x32\x30\x88\x1d\xfb\x67\xf7\xba\x1a\x0b\xdc\x0d\xbc\x1f\xd9\x0f\xeb\x80\x9a\x6a\x89\x62\x70\xfe\xed\xb1\x1e\x78\x55\xb7\x00\x6f\xfb\x9a\x4a\x4b\x42\x13\xf7\x4d\xc6\xea\x4a\x0c\xac\x53\xe0\xd7\x46\x5d\xf9\x41\x9a\x74\x8d\x80\x7a\x70\xc2\xb0\x64\x07\x5f\xf8\x61\xed\x20\x4a\xa0\x77\x29\x3a\xd3\xea\xc7\x80\x26\xfd\x4c\x05\xaf\xe7\x0f\xb6\xf3\x51\xe4\x4c\x64\xc4\x59\x50\x5b\x21\xfa\x8c\xe9\xeb\x51\x55\x82\x3b\xfb\xed\x77\x69\x33\xf0\x6b\xf5\x6d\xa3\x64\x25\x8d\x57\xec\xde\xea\x27\x5d\xe7\xd1\xf1\x7c\xf7\x80\x43\x8a\xb8\xb8\xab\xe3\xb9\x62\xbf\x49\x1b\x14\x69\xc2\xed\xb1\xe7\xc5\xef\x5a\x9f\x5c\xf3\xdd\x2c\x5a\x81\x39\x9f\xd7\xe6\xa8\xfe\x84\x8c\x6c\x1a\x6c\x97\x72\x6b\xab\xd5\x17\x0b\x4b\x51\x8b\xec\x89\xba\x8e\xcf\x19\xca\x51\x75\x50\xee\x69\x29\x13\x88\x5a\xc5\xe3\xd2\x81\xdd\x9d\x9d\xd5\x92\xd0\x39\x76\x7e\xea\xe7\xe6\xdb\x4b\x71\x34\x62\x78\x37\x9e\xce\x4d\xa4\x5e\x02\x6a\xa4\x05\x2b\xef\x25\xbd\xc6\x41\xd4\xed\xda\x84\x34\x0a\xb1\xca\xf6\xad\x7b\x09\x91\x17\x3e\x47\x77\x10\x01\xf0\x2a\x38\xa5\x02\xba\xfb\x2c\x0c\x40\x3a\xb2\xe1\xb4\xd2\xdb\xdc\x0e\xfc\xf9\x71\x52\x0d\xb7\x71\x7e\xc8\xe9\xe3\x1b\x8f\xa3\xc1\x5a\x1e\x85\x91\x58\x06\xe2\x07\xce\x6a\x4f\xd9\xb3\x4a\x85\xa7\x9f\xae\xd8\xcc\x31\xce\x9a\xe0\x9b\x9f\x85\xe2\xef\x45\x59\x5e\xec\xf1\xbb\x7f\x2f\x21\xcf\x9d\x9a\xf0\x2f\xc9\x11\xb6\x87\x90\xba\x6e\x0e\x57\x7d\x0c\xf1\x16\x9f\x04\xcc\xcc\xb6\xa3\x3c\x2f\xad\x26\x8a\xd3\x0e\x11\xd2\xb8\xf4\x2e\x87\x51\x12\x0d\xa3\x38\x56\xdc\x31\x76\x45\x14\x7d\xfa\x9d\x54\xdc\xa7\xdb\x6b\x36\x27\xd3\x13\x29\x91\xe8\x1b\x3b\x50\xef\x2f\x7f\x85\x53\x6c\x7c\x5e\x31\x1a\xde\x39\xe2\x95\x6f\x1f\x97\x47\xca\xcc\xf9\x0f\x62\xf4\x74\x02\xdf\x8e\x2f\x5c\x00\x58\xb2\xb9\x05\x66\x1b\xdb\xed\x2a\x81\xec\x85\xf0\xa8\x88\xbd\xdf\x52\x5d\xc7\x5d\x9d\x9d\x37\xe7\xe9\xf6\x28\xb6\xdd\xbe\x0c\x53\x1c\x39\x50\x11\xe6\xe8\x06\x60\x8b\x5e\x57\xa6\x14\xbd\xcc\x76\xab\x08\x0c\xdf\x4b\xd1\x49\xa0\xcf\x2a\x0a\x0a\x4a\x58\xbf\x9b\xb6\x3c\x04\xeb\x75\x25\x96\xff\xba\x12\x9d\x30\x49\x18\x49\xe7\x11\x1f\x98\x75\xfb\xf8\x42\x51\x33\x97\x9e\x31\xcf\x14\xbc\xab\x31\x9e\xfe\x8f\xf8\xdb\x7c\x11\x68\x36\x40\xf2\x4c\x4b\xe5\xd4\x27\x02\xcf\xa6\x3c\xa1\x64\x22\xbb\x76\x05\x82\x06\x0e\x9f\x74\x47\x57\x51\x1f\x05\xca\x6b\x77\xac\x19\x38\x94\x5a\x32\x08\x47\x99\xb5\x27\x26\x67\xb2\x5f\x8d\x0a\xc4\x17\xca\x83\x98\x86\x2a\x54\x4e\x57\x41\x52\xcb\xb6\xf2\xeb\xb1\xef\xed\x64\x59\xba\x5a\x63\xc6\x6f\x68\x66\xfc\x46\x03\x99\x7e\xa1\x9d\xa7\x31\x3d\xde\x59\xa7\xba\x40\x9f\x4a\x96\x44\xcb\x69\x72\xdd\x51\x68\xd9\xd5\xa8\x18\x44\xc9\x1e\xaf\xca\xfb\x31\x1e\x05\x1a\xa7\x67\xd5\x0a\x79\x25\xf0\xce\x8a\xdb\xb4\xc9\x45\xc9\x6a\xa7\x2c\x8d\x2c\x73\x33\x1a\xc5\x0e\x5b\xcb\xfa\xb5\xd8\x67\x22\x66\xdb\x00\xae\x1d\x64\x11\xa3\x3b\x54\xf6\xb2\xf0\x99\x46\x69\xf3\xf3\xda\x39\x42\x28\x47\x35\x10\xcd\xce\x3f\x52\x65\x49\x43\x13\x43\x07\x52\x7c\xab\x29\x11\x73\xa2\x94\x4e\x35\xee\xa6\x5a\xdc\xb1\x29\xf6\x7a\x12\xc8\x35\xad\x7b\x7c\x93\x4e\x0d\x4c\xef\x59\x96\x41\x7c\x2b\xaa\x3f\x22\xb0\x21\x1f\x7f\xbf\x30\xe1\x7d\xb8\x38\x43\x92\xf6\x49\x5f\x28\x62\x0e\xec\x3a\xef\x69\xa4\x8e\x84\x34\xb0\xe1\xf2\x52\x9a\x2e\xb7\x6a\x12\x0b\x2d\xaf\xbe\xd1\x34\xa0\x2f\x32\x13\x25\x6e\x3c\xe7\x4c\x07\xdd\xb6\x06\x8d\x1d\xe4\xa7\xeb\x4d\x50\x2d\xc7\x37\xf0\xa7\xdc\xa6\x76\x11\x68\x12\x11\x8e\xad\x15\xe4\xf3\x82\x17\xe3\xa9\xde\x40\xee\xf6\x84\x51\xe3\xe2\x42\xbb\x6b\x47\x36\xe9\x52\xeb\x5c\xa3\xea\xe7\xe6\xb8\xe6\x41\x8a\x85\x33\xf3\x1d\x25\x81\x17\xa6\xc3\xa5\x28\xb1\x88\x72\xc8\x08\xaf\x8d\xfd\x27\xfc\x1f\xb1\x37\xd1\xc2\xb9\xee\x6e\x27\x99\x93\xa2\x01\x52\x7d\x30\x84\x72\x4c\x43\xf8\xb5\xc2\xf9\xd8\xd8\x86\x45\x95\x92\xc6\xad\xba\x1c\x62\xf5\xce\x7c\x31\xb1\xe6\x9e\x9b\x6f\x5b\x58\x2b\x2d\xce\xf0\xd3\x84\x67\x2f\xbf\x5e\x7f\xd2\x4f\x90\x31\xdc\x37\x05\x73\x16\xf8\x41\xb5\x3a\xaa\x45\xd8\x9a\x30\x9f\x3c\xf4\x7c\x3b\x1f\xc5\x51\x41\xe3\xd7\x1d\x5a\x2d\xcf\x7e\xba\xee\x1b\xa3\xd3\x1d\xad\xb9\x90\x0e\x92\xbd\x7e\x8b\x1f\xd3\x69\xf5\x49\x3c\x25\xbe\xd0\xc3\x2e\xd0\x54\xd9\x11\x52\xe1\xea\xde\x69\x82\x1f\x17\x26\x5f\xc6\x6d\x45\x99\x83\x81\x10\xbf\x76\xbd\x86\x70\x60\x11\x45\xc5\xf7\xf1\xa4\x6a\x49\x4c\x9a\x71\x1f\x9e\x59\x68\x17\x03\x53\x90\xc4\x12\x93\xb2\xd0\xc9\x47\x53\xe9\xd8\xd8\xb3\xcd\x91\xdd\x01\xa9\xb4\xad\xc0\x7a\x23\x9b\x55\x7f\x95\x6e\x31\x6e\xd6\xfb\x63\x95\x60\xbc\xaf\x7e\xb4\x2c\xa2\x38\x2a\xd6\xf6\xe1\x1c\x42\x0b\xe0\xac\xf6\xd5\x80\xa6\x13\x1a\xdd\x5a\x04\xe7\x13\x04\x2f\x7c\x5b\x70\x9f\xf1\x43\x57\xea\x4e\x98\x3b\x5b\x26\x12\x41\x47\x36\xcb\xd3\xc4\xc4\xd3\x1e\x2d\x78\x41\x69\x0c\xdf\x4f\x41\x5d\x24\xda\xe9\x1d\xf1\x43\x37\x9a\x48\xed\x2c\xc1\xc5\x83\x24\x34\xfb\xf9\xd8\xe7\x8b\x46\x83\x2f\x9b\xf4\x8d\x4b\x1c\x10\x53\xc1\x8c\xc4\xd1\xfa\xb1\xee\xdf\x4d\x5a\x0c\x3f\x07\x47\xd7\x90\x8f\x48\x1c\x2b\x20\xa8\xf1\xeb\x89\x87\x5b\xed\x7f\x4b\x22\x49\x87\x67\x9a\xd1\xb6\x9e\xd2\xd6\xb5\xa6\x18\x40\x59\x9b\x85\xcc\x95\x5b\x2d\xda\x52\xd8\x92\x0b\xe8\xad\xa2\x7b\x72\x5a\xb5\xfa\x17\x7f\x61\x46\xf1\x70\xee\x6a\x53\xdb\xbb\xaa\x67\x96\x9a\x65\x2b\x42\x60\x88\xf3\xf7\x82\x9a\x99\x9e\xea\x0d\x5f\x6a\xe2\xff\x8e\xb2\x34\xb4\xb6\x5b\xf3\xf3\xdd\x50\xbc\x08\xef\x88\x38\x32\x49\x14\x2e\xa3\x9d\x0e\x7c\x26\x1c\x64\xd1\x09\xc5\xac\x45\x94\x77\x6a\x02\x10\x61\x8a\xf1\xfd\x54\xb5\x5a\x80\xb8\x40\xba\x28\xde\xfd\xd5\x22\x45\x50\x7c\x65\xfc\x64\xbd\x7d\x5d\x65\xcf\x2f\x2c\xce\x28\x73\x73\x44\x76\x99\x36\xab\x5e\x0d\xf4\x22\x6a\xa6\xd1\x1f\x28\xcf\x83\x0f\x94\x12\x8f\x4d\x56\xa2\x2c\x4d\x86\x36\x29\x4c\xcc\x16\xc3\xae\xbb\xe3\x1d\x72\xa1\xbc\x4c\x13\x82\x10\x1d\x77\x14\xe6\x1b\xba\xda\xdd\xfe\xcc\xa2\x27\x31\xb9\x69\x29\x91\xa3\x7a\x2b\x41\x6e\x6b\x55\xab\xe4\x66\xb5\x3e\x35\xd1\xdd\x52\xa5\x61\x30\x32\xb1\xd5\xad\xa8\xc0\x17\x62\xe7\x55\x76\x9a\xd9\x28\x1c\x4c\x29\xd3\x84\x4b\x63\xe5\x90\xb2\xab\x53\x53\x95\x7a\xc8\x25\x77\xc3\x1d\xa8\x7e\xe4\xc9\xfc\x7a\xa2\x55\xf2\xc2\xec\xa1\x76\x5a\x1d\x69\x55\xfd\xc7\x50\x4a\x25\xee\x07\xbf\x15\x74\xff\xa6\xd6\x7d\x62\x47\x7d\x20\x6e\xdf\x72\xd1\x12\xa8\x4e\x1e\x92\x1c\x4c\x4e\xa0\xd7\xca\xaf\x15\x96\x69\xc9\xda\x1e\x35\x75\x16\x65\xf6\x05\x53\x14\x7e\xdd\xa8\x4a\xd9\x8b\xb2\xa1\xe2\xad\x9f\x53\x90\x90\x73\xe3\xfb\xdd\x22\x7a\x99\x3a\x62\x4e\x02\xc4\x35\x70\xff\xbd\xee\xe5\x5c\x50\x4f\x24\xb3\x26\x6b\x79\x14\x10\x82\x2c\xbf\x6e\xb2\x13\x1b\x54\xd5\x4e\x6d\x5e\xcf\x62\xc2\x7c\xe1\xb0\xed\x6b\x69\x3e\x88\x06\x51\x0e\xfd\x5e\x86\x6f\xe2\x53\x08\x96\x53\x9e\x5c\xb1\x36\x4c\x2c\xc6\x87\x78\xdc\x1c\x2d\xf8\xa2\xc1\xea\x53\xf5\x35\x17\x67\x1a\x17\x93\xf4\x7a\xbb\xe9\xc8\x4e\x29\xdb\xa6\x8f\x54\x03\xe6\x9a\x9a\x63\x6c\xd4\x25\x93\xaa\xb3\xb5\x3a\xf6\x10\x85\x7e\xac\xba\xc2\x3f\x9e\x34\xc0\x5e\x5c\xf8\x22\x69\xb8\x0c\x97\x78\xc8\x2f\xc2\x3b\x2d\xa5\xc8\xe3\x0c\xdb\xc3\x2c\x1a\xa6\xc9\x5a\x4b\x0f\x16\x7d\x4b\x6f\xab\xe1\x84\x59\x68\x67\x76\xc5\x9a\x98\x93\x3d\x67\x47\xa4\xbc\x89\x26\x1a\x8e\x87\x9e\xaf\xd2\xd2\x24\xef\xa5\x19\x30\x57\x4e\x62\x5f\x27\xb6\x3b\xc7\xe4\xb3\x87\xda\x49\xfa\xcc\x74\xb5\xf2\x31\xd2\xf9\x2e\x9e\x04\x3e\x5b\x6b\xdd\x3f\xa2\xdb\xaa\x4b\x3d\xc9\xe3\x9c\x9f\x6f\x1b\xb2\xa9\x6d\x69\x41\xc8\x6a\xcd\x88\x10\xa1\xbe\xdb\x45\xf4\xff\x71\xf6\xa7\x31\x92\x9c\xe9\x7d\x20\xde\x9d\x59\xdd\x4d\x36\xbb\x79\x0c\x39\x63\x59\xc6\xdf\x4e\x49\x83\x3f\xb5\x5e\x2e\x61\xef\x02\x0b\x43\x58\x6c\xa4\xaa\x6a\xc4\x61\xed\xa8\x59\xa8\xee\x69\xca\xc4\x7e\xe0\x9b\x91\x6f\x65\x06\x2b\x32\x22\x19\x47\x15\x8b\xdf\xf6\x80\xb1\x30\x16\x0b\xaf\x0d\xaf\x85\x35\x60\xc8\x80\xac\xb5\xe5\x4b\xc7\xda\xf2\x21\x39\x4b\x9a\x11\x47\x23\x69\x66\x78\x0c\xc9\xe1\xdd\xf7\x51\x7d\xdf\x27\xab\x17\xf1\xfc\x9e\xe7\x7d\x9f\xac\x88\xde\x0f\x0b\x0c\x30\x91\xec\xca\x23\xde\x78\x8f\xe7\xf8\x1d\xc9\x23\x0a\x44\xcd\x46\x85\x62\xb1\x59\x7d\x8f\x93\x19\x73\x8a\x41\x1f\x68\x05\xf2\x4b\xba\xe7\x03\x79\x4a\xfe\xab\x29\x61\xb2\x87\xe5\x53\x05\xe5\x6a\xbc\x75\xa0\x5c\x85\x68\x8a\xaf\x6b\xe1\xd7\x73\x9d\x71\x19\xe7\xb6\xed\x6b\x40\x37\x15\xe6\x1e\xda\x0b\x48\x68\x8f\xbb\x89\xd8\x33\x5c\xc6\x45\x8e\x76\x4b\x43\x0a\x6e\xa9\x4a\x60\x31\x24\x2f\xd5\xdd\xbe\x5c\x76\x4b\x61\x25\xd9\xbf\x03\xad\x8e\x1d\xdd\x29\x48\xae\xc3\xf9\x5c\x55\x3a\x9c\xc7\x27\x3e\x51\x2e\xb2\xa8\x57\x92\xbe\x90\x02\x82\x4c\xc1\x45\x1e\x56\x58\xc9\xd7\xa2\x55\xeb\xbb\xf0\xe0\xb7\x7c\xa6\x64\xe2\x3e\xab\x6d\x5a\xaf\xbe\xda\x21\x9a\x69\x6b\x9a\x8b\xfe\x8d\x5f\x71\xde\x4f\xdb\xa7\xec\x8b\x07\x3a\xaf\x95\x6f\x14\x66\x4c\x04\x60\x27\xd8\xf2\x1f\x74\xac\x77\x45\x69\xf6\xa9\xad\x3f\xcd\x46\x26\xa1\xc7\x21\x05\x66\x1a\x26\xee\xa2\x05\x3e\x2a\xaa\xa7\x52\x07\x0e\x74\xf2\x11\xd1\x4b\x5a\x4a\xfd\x05\x69\xbd\x88\xb4\x68\x65\x99\xb4\x48\x5b\x4a\xeb\xfa\x0a\xe6\x21\xbf\x68\xf8\xf4\x83\x9d\xb4\x2c\x62\x5b\x20\xa3\x04\xc2\xf6\xaa\x92\xfe\xbf\xea\x90\x27\x59\xd9\x8b\x42\x33\xa2\x2d\xad\xb1\x1e\xe4\xcb\x89\x51\xdf\x92\x98\x41\x04\x78\x17\xe6\xc9\x15\x65\x71\x7d\x65\xaa\x14\x11\xe7\x69\xb2\xcb\xf7\x72\xdf\xd1\x4e\xca\x7f\x10\xe8\xda\x2e\x97\x43\x30\x2d\xff\x40\xad\xbd\xe3\x4d\x87\x41\x94\x40\x43\x8c\x44\x8c\xab\x07\x83\x10\xfe\xd7\x03\x6f\x9b\xbd\xe9\x76\xf9\x32\x11\x68\xf5\x22\x87\x8b\xbf\x81\xc9\xc7\x2f\x9a\xd0\x15\x79\x99\x8d\xe3\x12\xdb\x08\x40\x2d\x3f\x54\xda\x80\x3f\x0c\x3c\xf4\xc9\xc6\xd2\x7a\x15\x06\x66\x4b\x51\x33\x7d\x03\xf4\xb5\x72\xd4\x13\x45\x5f\x11\x4a\x6e\x39\xc1\xca\xb3\xb5\x7d\x94\xac\x2d\x0a\x9b\x91\x19\x3b\xfd\x76\x57\xb7\x76\x1a\xdf\x67\x6b\xb4\xd2\x2a\x8f\x22\xc0\x6f\xdf\x66\xdb\x85\xef\x3d\x48\xe1\x92\x5a\x9b\x3d\x13\x92\x86\x2a\x3d\x4f\xe5\xd7\x2f\x0b\xec\x5e\x6d\xb9\x1c\x7a\xa9\x33\xb6\x89\x2d\x32\x53\x20\xa4\xe7\xfe\xe7\x94\xcd\xc9\x57\x7d\xe8\x35\x4c\x8b\x14\x2a\x9a\xc8\xcd\x70\x1e\x32\x45\x89\x5f\x28\x14\x89\xcd\x0b\xd3\xab\x0e\x59\xdb\xdf\x4d\x21\xbe\x6c\xe3\x7e\xa3\xbb\x41\xcf\x1c\xed\x9d\x2b\x24\x58\xc2\xd7\x98\x5f\x78\xae\x58\x49\x5c\x1d\x57\xfb\xdc\x9a\x29\x42\xfa\x6c\x9f\xff\x0a\x4d\x9e\x36\xb4\xbf\xf6\x24\xc2\x3c\xe6\x6f\xe9\x92\x2c\x34\xf1\xf1\xf1\xff\x16\x13\x16\x95\xbe\x29\x43\xa3\xcc\x52\x80\x40\xef\xe3\x80\x28\xd0\xad\xe1\x86\x5c\xa2\x9f\x59\xd3\x5f\x2e\xd1\x3e\x13\x0f\x05\xbf\xc9\x7f\xaa\x88\x70\xb6\x4f\x68\x02\x0f\xfb\x61\x66\x21\xbf\x98\x32\x92\xec\x97\xe1\xb6\x88\x71\xa2\x0a\xfb\x97\x54\x5e\x7b\x8a\x7e\x21\x5f\xab\x88\x71\x90\x95\xa3\x91\x49\xb0\xf1\x60\x85\x33\x3b\x8b\x5f\x4c\x9d\xa7\xa1\xc9\xf6\x55\x4f\x03\x69\xdd\xb5\xe9\x0e\x58\x35\x53\x00\xcc\xba\xa3\xc4\x75\x18\x45\xe6\x50\x90\x0b\x0b\x07\x9d\x30\x9e\xd2\x2f\xc5\x2a\x17\x90\x50\x6b\x6e\xce\x79\xe0\x2b\x7a\xf1\x39\xe2\xed\x4a\xed\xb5\xe5\x2c\x5c\xbe\x54\x92\x29\x20\x7f\x29\xc5\x2a\xe0\xe7\xf9\xba\xb6\x8d\x56\x73\x3d\xb3\xab\x26\x8a\x95\x80\x3d\xf0\xff\x7c\xdd\xd0\x3c\x3d\xd0\x79\xd3\x8c\x97\x2d\x8b\xab\x89\xcc\xa8\x02\xfd\xe9\xcc\xa4\x5f\xa2\x7e\xf7\x8a\x57\xe4\xf7\x6d\x51\xb4\xb0\x11\xf8\xdc\x56\x78\xb3\x91\x2d\x4c\x1c\xb7\x15\xdb\x1c\x65\x1b\x69\xee\xaa\x81\xaf\x7b\x59\x12\xe0\x6c\xcd\x66\xbb\x34\xe1\xc1\x37\xe4\x36\x51\x3a\xc5\x5c\x78\xa6\xeb\xc3\xfd\x1b\xc8\xb8\xf1\x0c\x77\x6e\x34\x61\xd2\xcc\xb8\x28\x59\x84\xcb\x41\x98\x94\x77\x45\xad\x07\xbf\xb4\xd8\x49\xc7\x5c\xc1\x98\x17\x48\x42\x30\x85\x4f\x68\xf8\x9a\xe5\xa8\x70\x74\x7e\x11\xa5\xf6\x95\xc4\xe3\x0d\x81\xec\xc1\x4e\x68\x93\xc2\x7b\xaf\x88\x4f\x14\x3d\x20\x7e\xd1\xe4\x23\x69\x92\xa4\x8c\x8a\x48\xf2\x0e\xb4\xe9\xcf\x2b\xf4\x6d\x95\x47\x4f\xa5\xdd\xaf\xbe\xda\x79\xee\x2f\xd2\xdd\x20\x6e\x62\x35\x21\x04\x04\x5b\x44\x76\x93\x60\xb3\xca\xc2\xd8\xaf\x51\x05\x6e\xad\x2e\xc5\x2d\xd2\xe1\x23\xb4\xb9\x30\x7e\x89\xe5\x2a\x53\x95\x96\x8a\xcc\x61\x1a\x32\x94\x36\x77\x53\xbe\xcd\xdd\xc2\x89\xd7\xf8\x06\xde\xd2\xe5\x15\x73\x73\x82\xd6\x9c\xc2\x2c\x7f\x88\x34\x9e\x79\xb5\xc8\xb0\x98\x00\x15\x78\x27\xd3\x6b\x98\xcd\x28\x5a\x7c\x65\xa3\xf5\xcb\xf3\x6e\x73\x68\x7d\xfb\x9b\xae\x43\x41\xcb\x0c\xef\xc6\x4c\x46\x98\xb8\xaf\xab\x22\x72\xd0\x3f\xb8\xab\xac\xab\x79\xb1\x49\x12\xdb\x7f\xa4\xba\x19\x2e\xb7\xe3\xd7\x60\x62\x72\xef\x10\x33\xf3\x1a\xdf\x02\xbf\xa2\x12\x09\x7b\x2f\x05\x9e\x20\x04\x18\xa0\x63\xfc\x2e\xbe\x74\x50\x3e\x4b\x15\x43\x0a\x1b\x0e\x93\xe8\xf5\xd2\xee\x9e\x2a\x69\xd3\xa0\xa0\x55\x82\xda\x0d\xcb\xc0\x6b\x8e\x20\x5b\x65\x22\x65\x81\x04\xe3\xc3\xc0\x27\xd5\x1e\x31\x5c\x1f\xdb\x6c\xc6\xd3\xa4\x8e\x6a\xb1\x4c\x80\x89\x30\x42\x0f\x94\xdd\xf4\xa6\x6a\xed\x7a\xb3\xb6\x19\xef\x2f\x80\x12\x99\x58\xc9\xd0\x3d\x68\x8f\x19\xfe\xa3\x29\x1f\x83\xc8\x3e\x3f\x53\x3d\x5a\x04\xaa\x1b\xca\xae\xe7\x1d\x15\xa1\xfc\x1b\x3c\x72\x0c\xe5\x9f\x07\xdb\xaa\x4d\x55\xae\x78\x78\x76\x71\x8f\xf2\xe0\xc3\xf9\x38\x75\x14\xb0\xd2\x2e\x3f\x2d\x7c\x2e\x08\x60\x52\x08\x6c\x39\x25\x00\x92\x64\xdf\x3a\xe2\x42\xed\x2c\x0a\x87\x12\x09\x21\x2e\x3d\x37\xf1\x01\xeb\xb9\xc0\x47\x5a\xb2\xf9\x7a\x8c\xcc\xb6\xcd\xd7\x1f\x91\x71\xd4\x5b\x37\x49\x3e\xe3\xc7\xec\x5c\xa0\x64\x60\xf0\x0d\x72\xad\x24\x61\xce\x29\xa8\x53\xcf\x24\x6f\xbc\x5e\xa6\x05\xcb\xce\x49\x94\x46\xdf\x88\x12\xe6\x1d\xbe\x61\xd1\x8f\xf2\xb5\xca\x41\x19\xb7\x7d\xca\x74\x0f\x58\x35\xad\xef\x26\x07\x9b\x52\x19\x4f\x57\xed\x6e\x2f\xf7\xf6\xfd\xa0\x5a\x7c\xac\x5b\x11\xa8\x66\xe1\x51\xec\x16\x80\x38\x1e\xc5\x06\xc1\x2f\x26\xbe\xe6\xf3\xfd\x26\x23\xbf\x35\x13\x7b\x3a\x5a\x13\x96\xaa\x4e\x99\x22\x83\xac\xd5\x69\x12\xc6\x7b\xda\xa1\xfc\x3d\xc5\x0e\x5b\x4f\xcb\x2c\xb7\xf1\x32\x1d\xa9\x90\x6c\xb8\xa4\x44\x3d\x3d\x5c\xb9\x8a\x04\x7b\xf0\xf0\x17\xf3\x9b\x33\x13\x25\x0f\xfd\xa1\x2a\x5b\x33\x61\x98\xff\x4a\x9d\xf8\x99\x19\x5b\xb0\xf1\x90\xf7\x7c\x4c\xb7\x82\xc3\x96\x75\xe2\xb1\x29\x7a\xc6\x18\xf0\xad\x2d\x65\xef\xff\x43\x5a\x83\x62\x7f\xde\xa0\xa8\x1a\x47\x23\xeb\x95\xfd\x9a\xf4\x6b\x1b\xf2\xbf\x9e\xc9\xb6\x93\x7f\x4f\x4f\xa1\xc9\x94\xaf\x83\x19\xdb\xa2\x88\x14\xf0\x87\x77\x40\x7e\xa1\x04\x4d\xa2\x41\x92\x66\x76\x57\x35\x47\x44\x35\xb2\x3a\x05\x44\x34\x52\x95\x69\xe1\xa8\x82\xd8\xf9\xac\x52\xf5\xba\x3b\xf1\xdd\xb1\x51\x94\xc7\xd6\x90\xdc\x53\xf5\x07\xd2\xf5\x6d\x29\x07\x53\xc5\xdc\xb0\x36\x6f\xab\xfa\x02\x04\xf7\x10\xe3\x1f\xc3\x58\xcb\x1c\x74\xcf\x38\x8e\x46\x23\x9b\xcd\xd0\x63\x75\xc1\x9e\x8a\xaf\x94\x8b\xd6\x8e\xae\xc7\x3a\x1d\x6b\xc0\x74\x94\x9c\xbf\xe3\x34\x39\x8f\x49\x8f\xd6\xc1\xff\xa9\xa0\xb3\xda\xfc\x76\x34\xd6\xb2\x1e\xe7\xb4\x98\xfa\x0e\x1c\x53\xf4\x3b\xfe\x97\xbf\xdc\x55\xea\xe5\x17\x14\xd9\xf7\xff\x07\xf1\x19\x7c\xcb\xbb\x9a\x76\xfa\x23\x15\xb5\x8f\xcc\x8a\xcd\xf2\xc7\x94\x3e\x02\xb5\xdc\xf0\x11\xdf\xa7\x05\x89\x72\x0a\x03\xdc\x70\xbc\x3c\xc0\x66\x24\x4d\x08\x9f\xf4\x7c\x84\xed\x85\xc5\x1e\x14\x8f\xfb\x02\x0e\x11\x96\x95\x05\xc2\xc1\x69\xcc\x7a\x7f\xb8\x33\xc1\xf6\x06\x15\x59\xa9\x67\xe3\xb4\x4a\xea\xd6\xa2\xbe\x9d\xf1\x9e\x8a\x6c\xf7\xaf\x1d\x31\xb1\x60\xe0\x08\x8a\x4d\xe1\x8a\x2a\x87\x93\xbf\x71\xf5\x4f\x38\x6d\xee\xea\xd6\x58\x5d\xd1\x78\x61\xa1\x93\x17\x59\x19\x16\x65\xc6\xf8\x41\x84\x15\x47\x54\x47\xf8\x88\xb6\x4e\x5d\x8b\x8a\x90\xca\x66\xde\x4c\xff\x0c\x1d\xf9\x22\x49\xf7\x84\x4f\xfc\x09\x96\xd4\xaa\x11\xc5\xf9\x45\x03\xc2\xb3\x63\x8a\xc2\x90\xea\xaa\x52\x59\x47\x78\xc9\xd7\x2a\xa7\xcf\x4c\x94\xdb\x7c\xb7\x52\x57\xc2\xb1\x8f\xd3\xf3\x9e\x0a\xde\x3f\x0f\x94\xea\xd2\xce\x2e\x3d\x24\x6c\xfa\xec\x58\x09\x74\xc2\xa6\xe2\x54\xc5\x69\x91\xab\xa4\xe3\xbe\x4a\x3a\xee\x37\xf5\xe5\x87\x65\xd2\x77\x39\x3f\xa6\xcc\x7d\x4a\x88\xf8\x5a\xa5\xc0\xf6\x8d\x71\x9a\x15\x9c\x19\xa2\xde\x7a\x5b\x3b\x91\x81\xdf\xc4\x26\x8b\x81\x2a\x71\x9e\x6e\x0a\xc7\xfb\xd1\x20\x2a\x44\x4a\xda\x85\x81\xae\x3a\x74\xa1\x36\xca\x2f\x1e\xa0\x1a\x45\x61\xa6\xc8\x8a\x3b\x95\x62\xea\xce\x0d\x0f\xbc\x0f\x6d\x1c\x97\xb1\xc9\x5a\x53\x3a\xa3\xf8\x55\x22\x3a\xda\xd4\x4e\x1e\x47\x03\x0e\xdb\x1d\x35\xc8\xd3\x84\x9a\x20\xaf\xb9\xcd\x56\xa3\x10\x3b\x88\xa8\x60\xb7\x9c\x3a\xee\xaf\x2b\x41\xbf\x7a\x26\xb3\x34\xdb\x29\xc8\x0d\x02\x5d\x55\x2c\xcc\xeb\x4a\x82\xfa\xef\x4f\x94\x1a\xe7\xb5\xa6\x53\xf7\x4d\x1b\xc7\x24\x21\x56\xfd\x64\xf1\x09\xa3\xbb\x14\x07\x31\xc5\xa6\x5d\xb3\x16\x7e\xeb\x0f\x93\x59\xdc\xfe\x03\xab\xec\x2c\x33\x7d\xee\x82\x61\xb7\xc3\xb4\xe6\xeb\x26\x84\xc3\xd0\x8c\xc7\xeb\x48\x4e\x51\x5e\xc0\xea\xc7\x31\x08\x9d\x72\x04\x71\xda\x81\xa8\x17\xc5\x71\x94\x26\x4f\x6b\x9c\x0c\xcd\x77\x29\xa8\x54\xe3\xe8\x92\xa3\x6a\xee\x0b\x77\xae\x0a\x42\x71\x2e\x5f\x09\x94\x91\xc9\x3b\x00\x02\xb0\x63\x38\x9d\x65\xe2\x1e\x4e\xc3\x83\xda\xdf\x4d\x25\x8d\x72\x59\x31\xe1\x2e\x63\xe5\xb1\xba\x1c\x8e\x04\xd7\xa4\xfc\xf6\x37\xf9\x66\x2e\x2a\x37\xe0\xdb\x38\x04\x90\xe0\xfd\x09\x98\x8c\xf8\x89\x57\xa9\x35\x27\xd9\x84\x52\x19\xbe\xdc\xa4\xbe\x61\x93\x42\xc8\x11\xa8\x78\x82\xc2\xc6\xd7\x4e\x58\x36\x5f\x1f\x8d\x4d\x31\xb4\x52\x53\x75\x40\x47\xe5\x8e\xe3\xa9\xbb\x85\x8d\xed\x20\x33\x66\xb9\xed\xf7\xde\x07\x8a\xf4\x76\x43\x49\xa4\xd6\x9b\xf7\x07\x0e\x74\xd6\xd2\x5e\x8f\x71\x28\x18\xeb\x76\xd7\x43\x9d\xda\x35\xf8\xee\xc2\x42\x27\xb3\xb9\x48\x65\x61\x37\x66\x38\x16\xbf\x50\x5b\xd6\x6b\x69\x0c\xb7\x4e\x31\x73\x68\x39\x3d\x14\xd6\xff\xc6\xf4\x7c\xaf\xb1\x5c\x1d\xa7\xe1\x8a\xec\x5f\xbc\x1d\x06\xca\x4e\xbd\xbe\xe8\xaa\x2c\x6a\x14\xbd\x21\xef\x41\xdc\xfb\x25\x7d\x29\x5f\x7b\xe1\x65\x02\x28\x46\x79\xd1\x56\x16\x19\x17\x55\xcd\x64\x46\xf1\x9e\xee\x4e\x9e\x12\x60\xa9\x49\x88\x4a\xb5\xce\xcb\x92\x75\x73\xe8\xd9\x88\x86\x8e\x2f\xa5\x02\x6b\x2b\x3b\xa1\xa8\x7b\xf9\x6c\xb1\xf1\xbc\x19\x5a\x93\x41\xcc\xd0\xe3\xcd\x4f\x22\x11\xe0\x17\x13\x65\xcc\xf7\x66\x21\x70\x60\x66\x60\x63\x16\x3a\xe5\x39\xb7\xeb\xce\x74\x7d\x0f\xf0\x93\x46\xc4\x5c\x26\x22\x15\x40\xbc\x31\xb5\x02\xa3\x71\x6f\xa2\xa4\x9b\x6f\x54\xc9\x1e\xbe\xbe\x3f\x8a\x12\xd2\x2b\x26\x8a\x9d\x8b\x66\x56\x9e\x81\x6c\x0a\x8e\xf8\x33\x35\x3f\x68\x30\xc8\xf6\x6e\x34\x40\xe4\xc2\x61\x14\xfb\xfe\x8e\x33\x22\x70\x76\x15\xe7\x6a\x3d\xb0\x6a\x65\xad\x4b\x45\x86\xc3\xf8\x40\x87\xf4\xf5\xb8\x70\x2d\xa2\x62\xd1\xd6\x06\xe8\xc4\x1b\xb5\xb6\x61\x15\x83\xa4\x7d\xc3\x1f\x8a\x85\x7f\x59\x69\x5b\x90\xbe\xac\x83\x40\x14\xc3\x32\x8f\x4c\x2e\xd4\x68\xad\xbb\x27\xb2\xff\x4d\x25\x28\x9b\xf4\xd3\x2c\x67\xad\x47\x65\xa6\x36\xef\x0a\x57\xdb\xfb\x84\x2f\x1e\xe8\xe4\x65\x2f\xcd\xfa\x51\x62\x9c\x6e\x0a\xb6\x38\xf0\x46\x1c\xcd\xb0\xfa\x14\x1c\x34\x17\x5c\xe3\xcf\x0c\xa2\x31\xa6\x3b\xb3\xd9\x14\x42\xe0\xbc\x6e\x5c\x7e\x59\xdb\xbd\x5e\x7d\xb5\xd3\x33\xbd\xc8\xe9\x94\x22\xeb\x3d\xae\xeb\x09\xc7\x5d\xb6\x14\xc6\xa6\xec\x43\xdb\x5e\x1c\x8f\x55\x66\xf2\xb9\xca\xcc\x87\x26\x5e\xad\x9e\x5c\xb5\x9d\x3b\x21\x51\x47\xb7\xfe\xc1\x64\x9b\xfb\xf1\xcb\xf3\x87\x3a\xbf\xb0\xa7\x9a\xa2\x0e\x5d\xe3\x54\x78\x37\x95\x8e\xca\x29\x84\xb6\x42\x90\x6c\x39\xc3\xaa\x33\x13\xb5\x6b\xfd\xc9\x44\x31\x33\x4f\xd5\x50\x19\x73\x73\x9d\x41\x66\xd6\xdb\xde\x52\xfe\x94\xea\x42\xdd\x0b\x7c\xc9\xda\xb7\xd4\xc3\x34\x2f\xe2\x48\xf0\x9d\x20\x9b\xa2\xe2\xc9\xd7\x0d\xdc\x86\xa5\xce\x38\x4b\x07\x99\xd4\x2f\x5d\xa0\xe1\x67\xbc\xca\x4e\xbe\xf1\x8b\x87\xda\x1e\x4b\x81\x74\x0d\xad\x25\xf6\x84\xc7\xb1\xb6\x7f\x43\x31\x9d\x97\x97\xe1\xda\x8e\x64\x7a\x17\x38\x9c\xa8\xc0\x42\x32\xc9\x95\x00\x5d\x15\xf3\xb1\xae\x4a\xaa\x51\x45\x77\x78\x9d\x45\x51\xe9\xbc\x87\x6a\x10\xaa\x33\x8f\xd6\x00\xe9\xd5\x0c\xef\xa5\x69\xb5\xc3\x56\x0f\x03\xbf\xf2\x6a\xa0\x8c\xec\xde\xd3\xa2\xb4\x0e\x0f\x3f\x8a\x62\x93\x30\x0e\x0b\x15\x28\xa8\x50\x0a\xe5\x43\x25\x3a\xb7\x3d\x70\x83\x05\xa0\x97\x66\x71\x9c\x5e\xfe\xca\x86\x3b\x5a\x2f\x7f\xa5\xdb\xb0\x8e\xa2\x84\xc6\xc7\xe3\xd4\x45\x9e\xcf\xa3\x1d\xcf\x37\xe9\xe4\xf5\xec\x30\x4a\xfa\x6d\x9f\xa0\x21\xec\xc1\xee\x7b\x61\xe2\x49\xb4\xa7\x6b\x65\x67\xb8\x97\x94\x7d\xe7\x1d\x23\x32\xf1\x1e\x26\x5f\xb7\xbf\x9d\x9b\xeb\x8c\xca\xb8\x88\xc8\xde\xaa\x3a\x04\x64\xce\xb5\x9c\x6b\xb7\x16\x0c\x1f\x59\xd3\x4f\xd7\xc0\x64\x90\x70\xbb\xfa\x7d\x1c\x80\x6a\x38\xcb\xe7\x38\xb5\xd1\x37\xf9\xce\x64\xaf\x0b\xb0\xbf\x4e\xe5\x2f\x27\xee\xe7\x95\x10\x21\x00\x8f\x1c\xf5\x81\x32\x8a\x7a\x55\x81\xef\xc3\x38\x1a\xf5\x6c\xff\x11\x7a\xe8\x4a\xc8\xf9\x95\xe9\x1a\x24\x02\x41\x76\xae\x13\x2c\x3e\x1e\x3a\x22\xa8\x7f\x85\xba\x84\x03\x56\x3b\x99\xaf\xab\xd8\x22\xf9\xa3\x9b\x88\x3a\x61\x6a\xe0\x06\xb4\xc4\xa1\xe0\xa7\xf4\x76\xbe\xae\x81\x2f\x08\x35\x13\x25\x45\x15\x0f\x38\x81\x4d\x11\xc4\x68\x29\x55\xcf\xfd\x8a\xc1\x9b\x60\x7f\x43\x4b\x05\xad\x39\xbe\x56\xe9\xe0\x6a\x5a\xd8\x0c\x16\x93\x88\xf3\x81\x1b\x91\x0a\x17\xdd\x3b\xff\x03\x65\xff\x12\x79\xd3\x4f\x97\x90\x9c\x36\x47\x29\x84\xc9\xc1\xdb\x8f\xf2\x30\x8b\x46\xd5\x31\x20\xb6\x2a\x58\xc5\x0f\x54\x3a\xfe\x40\x71\x18\x46\x51\x82\x4a\x14\x80\x32\x7f\xa8\x40\x33\x7f\x38\xd1\xee\x46\x61\x35\x0c\xab\x16\xe4\x4b\xac\x73\xa6\x19\x38\x4b\xd7\x6a\xf8\xc5\xd2\x95\xa6\x24\xff\x99\x42\xd2\xaf\x30\xf3\xc5\x4d\x00\xaf\x52\xdd\x68\x1e\x9b\xdb\x6a\xfc\x43\x00\x59\xb0\xdb\xa2\x52\xef\x0c\x51\xb5\x33\x9a\x2a\x46\xad\xe7\x85\x05\xd1\x66\x8a\x86\xab\x70\x25\x6a\x10\xd2\xb5\x04\xac\x10\x6d\x69\x25\xf5\x4c\x9a\xa3\xc8\xac\xce\x05\x9a\xb8\xc7\x93\x54\x1a\x28\xfe\x26\xe7\x17\x0f\xb5\x14\x01\xf9\x4f\x69\x16\xf0\xb5\xe2\xde\x03\x53\x6f\xb9\x67\x2a\xa0\x6a\x55\x42\xd9\x7c\x28\xda\x65\x6c\x32\x43\x3e\x13\x2d\x5f\xfa\xb8\xaf\x5b\x2d\xf7\x83\x29\xdd\x9b\x12\xad\xa9\x6a\x24\x98\xc4\x4d\xb7\x28\x84\xee\xc7\x7c\xf9\xe9\x79\x3e\xc8\xa7\xbc\x64\x45\xa6\x76\x7b\x30\x3e\x37\xd7\x89\xa3\x65\x2f\x06\x05\x8c\xc9\x3b\x81\x87\xb9\xbc\x53\x37\x20\x7e\xe9\x60\x67\x39\x1a\x94\x99\x44\x66\xcd\xa8\x03\x07\xc0\x96\xd2\x8c\x82\xbe\x5c\xa5\xd3\x89\xaf\x1b\x5a\x26\x8b\x9d\x34\x5b\xb1\x23\x32\x3c\xc0\x96\x76\x4c\xd7\xf5\xc1\x9a\xc6\xc6\x7c\x43\xf5\x4a\xc7\xb1\x59\xb7\xfd\x47\xab\xcf\x46\xb3\xf3\x0f\x26\x3a\x23\xa4\x25\x8a\x93\xaf\x0d\x2f\x0a\x04\xf6\xef\x07\x5e\xc2\xe2\x92\x32\xe7\xc3\x4e\xcc\x2c\x11\x4a\x46\x25\x3d\xaf\x7e\x17\x0a\x4b\xad\x5a\xa4\x4b\x64\x8d\x68\xec\x23\x5d\x14\x72\xb6\x54\x51\x67\x6b\xf2\xb3\x0f\x99\x16\x61\x3a\x1a\xdb\x22\x72\x65\x35\xc9\x10\xe9\xe6\x25\x45\xdc\x1e\x69\x1c\x9e\x7d\xa1\x63\x7a\x04\x50\x8a\x5b\xfa\x78\x3d\xaf\xb0\xda\x75\x43\xb2\xf9\x43\x9d\xb5\x61\x1a\x23\xb8\x77\x40\xfc\xea\x81\xa2\xf4\x79\x05\x7d\x47\x54\x06\x3f\x50\xd1\xfd\x8e\xae\x1c\xce\xaf\xd9\xb5\x28\x1f\xb2\x49\x2d\x92\x65\x30\x15\x11\x94\xa1\xce\x83\x1d\xee\x3d\x8d\x07\xbe\xae\x05\xe4\xc6\x06\x16\x03\x3e\xcb\x85\xf6\xa9\x78\x90\x4f\x6d\x75\xb0\x6d\xc0\xcc\x39\x36\x45\x90\xa4\x8f\xc7\xb2\xfb\x9d\x29\xa8\x42\x64\xb3\xc7\x95\xdd\xe1\x31\xcd\xed\x9c\x41\x36\xe3\x2c\x44\x96\x66\x39\x0a\x7c\xa4\xab\xe5\xf7\xf9\xfc\x12\xad\x20\x05\x50\xbb\x85\x33\x4b\x4a\xb2\x2d\x27\x23\xb7\x39\x25\xb2\x10\x78\x7f\x95\x13\x8a\x8b\x75\x51\xc9\x05\xee\xdd\x98\xf2\x65\xf5\x22\x90\xe3\x2c\x2d\x2c\x95\xd0\xb0\xf3\x22\xc3\xfc\x42\x3b\xbe\x7f\xa1\xca\x06\x23\x13\x47\x83\xc4\x24\xc5\x6e\xfa\x99\x22\x94\xe0\x01\xdf\x47\x34\xaa\xe3\x9f\xd1\x50\xe3\x11\xb1\xb0\x3e\x32\x63\x88\x24\xf2\x1f\x29\xdc\x74\x99\xf4\x6d\xb6\xbf\xf5\x4b\x2f\x8b\x91\xe1\xc4\x5b\x5c\xfc\x5b\x6c\xe6\x1a\xa1\x25\x32\xbf\xd5\xea\xc1\xc3\xb9\xce\x5b\x30\x8a\xe3\x47\x27\x4a\x3e\x0a\x5d\x14\x6d\xbd\xeb\x18\x17\xd5\xd0\xe0\x0b\x2f\x07\xad\x6f\x7f\x93\xa3\x87\x4d\x6d\xda\xfc\x13\x4c\x01\x61\x75\xf9\x69\xb3\x2e\x88\x70\x34\xc2\x58\xcf\x9d\x5f\x34\xe1\x40\x7e\xe6\x9b\x7f\x73\xf1\x9b\xdf\x38\xb0\xc7\x57\x2c\xd9\x07\x09\x05\x9d\x1f\x04\x4a\x15\xe7\x02\xed\x45\xe8\x81\x3c\xae\xac\xd6\x50\xaa\x47\x31\xe9\x29\x12\xa7\x17\x90\x76\x93\x06\x48\x15\xb3\x66\xc4\x62\xf2\xab\xfe\xbc\xf6\x51\x3b\xaf\x90\x79\x7d\xbb\x6a\xe3\x74\x1c\x25\x83\x19\xf5\xab\x8e\x62\x5e\xf3\x0b\xdd\x4b\xb9\x84\xa2\x9c\xb0\xa9\x1f\xc6\xeb\x5d\xb3\x71\xcc\xee\x7f\x18\xf6\xbd\x5d\xc5\x94\xbd\x35\x21\x4f\x29\x77\xd3\x2f\x1e\x70\xd7\x7e\x2d\x87\xc3\x6c\x3d\x8f\xd1\xe2\x79\xc5\x49\x1f\x56\x7f\x2b\xca\x87\x9e\xd7\xf9\x23\x5d\x6d\xfe\x91\x02\x22\x0d\xd3\x32\x8f\x92\xc1\x6e\x4c\x13\xf1\xa5\xf4\x58\x59\xa4\x7d\x0a\x14\x24\x66\x47\x1f\x62\x36\x60\xfa\xed\xc6\x02\xc6\xf7\x5e\x57\xbe\x93\x2b\xf6\x71\x55\x86\xbf\x48\xed\x04\x17\x04\x0b\x34\x7f\xfe\x2f\xa1\xd7\x83\x0d\x6f\xf7\x46\xf5\xfc\x9c\x20\x63\xb5\x7a\x50\xf3\x68\x75\x7d\x9c\xf1\x1c\xbe\x50\x54\x2d\xa6\x15\x4a\xab\xf1\xc7\xbc\xc6\x92\xc7\xf4\xbd\x1a\x28\x1b\xa8\x3b\x13\x1f\x28\x82\x8a\x8c\x07\xb6\xaf\x76\xc2\xbc\xfa\x6a\x15\xcd\x0d\xd7\x08\x76\xed\x44\x69\xe0\x82\xc8\xd7\x0f\x95\xe3\x15\x18\xab\x42\xab\x3e\x14\xd2\xda\x80\xdc\x4e\x0d\x03\xc4\x71\x03\x37\x79\x2d\xf3\x2b\x65\xfa\x3c\x2a\xf3\x61\x96\xa6\x23\x6c\x59\xf8\xc4\x23\xfa\xe3\x8f\x28\x49\x0f\x9b\x87\x66\xec\x54\xb3\x5d\xee\xa4\xac\xb7\x5c\x1a\x1e\xdb\x55\x9b\x71\x51\x53\x7b\x7e\x4b\x48\xe8\x88\x38\xe9\xaa\xcd\x8a\xf5\x5d\xfe\xd4\x82\xbd\x35\xce\x00\x56\x4e\x01\x14\xe1\xa8\x92\x97\x61\x0d\x16\x01\x68\x37\x54\x0e\xc6\x69\x99\xb5\x7d\x43\x8f\x21\x72\x20\x5e\xde\xa6\x6d\x1e\x6b\xfe\xc4\x54\xf3\x28\xe9\xa7\x50\xf5\x93\x82\xba\x12\x04\x04\x9e\x4b\xac\xdc\x7d\x10\xfa\xf2\xc1\x85\x96\x9a\x52\x90\x51\xe2\x6b\xd7\x53\x35\xc9\x3a\xe4\x89\x1d\x16\x0f\x00\x2f\xe4\x78\x58\x36\x74\x9c\x2f\x3d\xd9\xf5\x1b\xd5\x3d\x45\x67\x3d\xe5\x71\x17\x76\x64\x22\x80\x78\xb1\x87\x3d\xb2\xe1\x19\xfc\x9f\x2a\xe0\xd2\x69\xdc\x34\x26\x0d\xc4\x78\xb7\x2e\xab\xbe\x40\x9e\x96\xc5\xd0\x8c\x50\x1e\xc0\xf6\x01\x55\x31\x00\xf6\x58\x36\x4a\x06\xb0\xde\x9f\x79\xa1\x0a\x8f\xb7\x89\x97\x5d\x52\xe2\x65\x97\x26\x53\xf8\x38\x42\x9b\x2e\xcd\x7a\xac\xa3\xe2\xfa\x3f\xa1\xe0\x3e\x62\x24\x2d\x27\x14\x4b\xf7\xf0\x8b\x1a\x28\x6c\x61\xa1\x33\x8e\xc6\xf9\xeb\xa5\x35\xcc\x82\xd4\xdb\x84\x94\xff\x7c\xab\x2d\x2f\x98\xf7\xe9\x34\xca\x4f\x29\xac\xdd\xa9\x5a\xec\xfd\xcb\x30\x4a\xea\x1b\x08\xc5\xe2\xc9\xb4\x69\xc8\xf9\xba\xeb\x8f\xdd\xa1\x35\xab\xeb\x8f\x78\x8e\xef\xbf\xc3\xc6\x07\xc4\xfa\x4e\xd0\x96\xb1\x5f\x3c\xc0\xbe\x8a\x30\x06\x1a\xf0\xe2\x92\x89\xc5\x8a\xd2\xc2\x0e\x44\xc0\x2e\xa0\x3e\x20\x62\x7d\xf5\x24\x61\xfe\x50\x27\x1c\x9a\xcc\x71\x72\x9a\xa8\x27\x0d\x38\x89\x30\x4d\x06\x69\x4c\x1a\x38\x0b\x0b\xde\x0b\xb5\xfa\x71\x62\x86\x54\x77\x14\x7b\xa5\x13\x5b\xae\x2b\x89\x14\x00\x3d\x31\xb1\x72\xf0\xd6\x01\x5f\xea\xe2\xd9\xdc\xa1\x96\xa7\xdc\x9d\x0a\x54\x25\xa9\x5e\xfe\x5b\x58\x58\xea\xa4\x25\x12\x2f\x1c\x1c\x5f\x28\xcb\xcc\x2f\x94\x20\x6d\x96\x56\x81\xc3\xd2\xac\xcb\x6f\x5b\xca\xc2\xaa\x81\x2f\x9b\x58\xe9\x9e\xa0\x5b\xc9\x0a\x71\xfc\xa2\x89\xd7\x59\x26\xcb\x26\x12\x6e\x31\x4b\xcb\x07\xbe\x61\x73\x56\xe1\x0a\xd6\xb2\xa8\xb0\x39\x71\x36\xb0\x3d\xed\xd8\xf0\xb9\x30\xaf\x48\xd4\xf8\xc0\xfc\xe7\x7f\x50\x8a\x90\x4c\xec\xe0\x3f\x6a\xaa\xaf\xd8\x51\x68\x99\x48\x8d\xb0\xff\x94\xd2\xd3\x3b\xe5\xed\xaa\xac\x89\x8b\x21\xb7\x0b\xc5\xe7\xa4\x7a\x32\xd8\x75\xbe\xa7\xab\x7a\xb5\xaf\x99\x9b\xef\x84\x26\xcb\xd6\xf1\x90\xd1\x3f\xbf\xa5\x80\x76\xc7\xb1\x2a\x3d\x63\xcf\xad\xaf\xb1\x8d\xe3\x96\x82\x80\xa3\x80\x22\x78\x70\x45\x0b\x3d\xf4\x37\xe9\xe1\x02\xbd\xcd\xfa\x14\xfc\xa2\xd6\x1f\x59\x58\xe8\x0c\x62\xc3\x25\x5a\xb1\x15\xf1\x75\x9d\x73\x4a\x01\xbd\x9f\x99\x91\x29\xa2\x37\x19\xf5\xe0\x04\xee\x7e\x0b\xdf\xc0\x2f\x54\xc5\x8c\x7d\x63\xf7\x57\xa7\x02\x8a\xa1\xff\x3a\x50\x7a\xde\x20\xc5\xa3\xdd\x7a\x8c\xa6\x20\xd6\xfd\x8d\x40\xf5\x61\x6f\x4e\x3c\x01\x07\xc0\x00\x87\xb3\xf3\xba\x15\xef\x52\x7c\x8d\xf4\xe4\x28\x8e\x30\x7e\x37\x7a\x9a\x52\xe5\x56\xea\x16\xef\x06\x4a\x91\xf8\x3e\x50\x67\x92\x30\xe5\x7f\x99\x7e\x25\x0a\xbb\xc8\x7c\x11\xc9\xdc\x0b\xbc\x05\xe1\x15\x05\xed\x7e\x1c\x55\x65\xc8\xbd\x9d\x50\x3a\x57\xbb\x36\xaa\x4c\xc1\x3d\x64\x17\x05\xff\x98\x92\x03\x94\x53\x6f\x4c\x5a\xcf\x3e\xcb\xa7\x01\x9b\xc2\x83\x4f\xc9\xfe\x55\x28\xe3\xb7\xb5\x82\xe3\x65\x14\x9b\x99\xf9\x4e\x8c\x1f\xec\x77\xfb\xbb\x4a\x1a\x6f\xdf\x06\x21\x3f\xf9\x93\x61\x58\x89\x7b\xfa\x49\x30\x25\xd3\x40\xc3\x2d\xb8\xf4\x6a\xb8\xf1\x28\x6f\x6a\x89\xaf\x77\x68\x21\xd1\xd6\x33\xf9\x1a\xfb\x47\x22\x92\x69\xc1\x3f\x12\x29\xe0\x2d\xc2\xfd\xe2\x57\xee\x84\x15\x26\xb6\xae\x5b\xd8\x0b\x58\x4d\x3a\xf0\xce\xe9\x97\x02\x88\x3e\x4a\x38\xf6\x94\x52\xdc\xef\x97\x79\x91\xad\xef\xa5\x61\xc0\x04\x3a\x4e\x83\x28\xf0\x46\x1f\x31\x32\x6e\xd5\xb1\xc3\x5c\xde\xbd\x0b\x41\x3c\x56\x66\xbb\xeb\x2b\x93\x07\x9e\xe2\xbb\x40\xae\x7e\x59\xfb\x0d\xff\x91\x62\x0b\xde\x53\xb9\x65\x66\x0b\x13\xc5\x36\xcb\x77\x79\x0a\xe2\x27\xe8\xd9\x03\x71\xc7\x8e\xd6\xc8\x74\xcf\x28\xf2\xd6\xfb\x34\xbf\xf9\x8f\x54\x39\x31\x4c\x45\x22\xa6\x31\xe9\xf1\xa7\x6b\x9a\x11\xcf\xa5\xad\x32\xec\xc0\x63\x61\xb1\xe5\xe1\xab\xfe\x49\x6d\x8d\xcf\xcd\x75\x8a\x61\x94\xf5\x67\x3c\xac\x6d\xa6\xeb\x9f\xf3\x79\x95\xaa\x01\xb3\x20\x91\x94\xe2\xfe\x0c\x52\x69\x5d\xe0\x03\xde\x0f\x54\xee\xf5\xbe\x8e\x6c\xc7\x53\x5b\xd1\x41\x8d\x27\xdf\xad\x77\xe0\xdd\x1b\xba\x4a\x91\xbc\x69\xda\xbe\x0c\x75\x9a\x00\x0b\x9c\x89\x4f\x34\x00\xa6\x96\xbe\x51\x67\xd5\xc4\xb1\x4d\x1c\xd3\xdf\x95\xa4\x1d\xb0\xf8\x7b\x58\x4a\x22\xdd\xe0\x37\xd5\x95\xf5\x38\x7a\x63\xc6\x1b\x88\x1e\xc3\x06\xc5\x2f\xd4\x06\xc5\xb0\x26\x7e\xa1\xce\xa5\xd8\x9a\x41\x09\x28\x8d\x98\xc5\xb4\x94\x0d\xbe\x6f\x66\xbc\xf7\x50\x12\xf8\x28\x1a\x73\x68\x21\xed\x51\xba\x63\x69\x9c\xfa\x03\x79\x9c\x82\x0a\xf1\x8a\xf7\x61\xac\xee\x57\xdc\xa6\x7c\x10\x53\x27\x9c\x2f\x2c\x74\xd2\x30\x2c\xc7\x86\x84\xf9\x9d\x21\xc2\x77\x15\x70\xe1\xbb\xb5\xac\xe9\xc5\x03\x1d\x93\x14\x51\x18\x8d\x8d\x13\x5f\x90\xba\x85\x07\xf8\x1d\x55\x5a\x03\x99\xe9\x47\x69\xdb\x0f\xdb\x5b\x81\xe2\xc1\x9d\xe4\x74\x49\x70\xf2\x5f\x73\x37\xb6\x92\xa4\x6b\x24\xf2\x64\x7a\x5c\xab\x68\xb2\x84\x6d\x6a\x3b\xd9\x70\x65\x28\x2c\x21\x9c\x99\xc7\xb4\xf8\xe2\xb1\x5a\x34\xf7\xe2\x01\x89\xcf\x5b\x1e\x45\xb4\xb3\xab\x30\x1b\x3b\x37\x1a\x32\x3f\x9b\x90\x83\xd8\xe2\x34\xa9\x13\xc7\xc2\x03\x55\x95\x7f\xba\xeb\x19\xe4\x57\xa8\x36\x24\x5c\x62\x49\xc1\x07\x69\x06\xcc\x21\xf6\x9a\x53\x81\x36\xbf\xfb\x48\x55\x86\x4f\x69\x23\xbc\x8f\xa6\x80\xec\xf9\x4a\xbe\x9f\x26\xaa\x68\x57\x54\xef\xc2\x1f\x9e\xa5\xb3\x90\x8d\x93\x68\x87\x44\x09\xe1\x0b\x65\x30\x08\xb5\x79\x87\xbc\xf2\x00\x88\xef\x4c\x94\x8a\xcc\xbf\x40\x11\x45\xd0\x90\x6d\xef\xb7\xfe\x9e\x46\x6d\xdc\xc3\x99\x85\x70\xf3\x2d\xda\xe7\xe4\x4c\xf7\xeb\x6c\x90\x59\x53\xec\xd1\x8a\xdc\x3e\x1b\x45\x69\x58\x8c\xb5\xe8\xd7\x88\x47\x38\x71\x42\x50\xc3\xe0\xad\x55\xb2\x4b\x05\xa2\x76\x5a\x38\xc3\x28\xe9\x2b\x8f\x21\xac\x91\x77\x15\xa7\xe0\x5d\xb5\xa3\xe5\x85\x59\x47\x89\x10\x12\xae\x77\x27\x7e\x4f\xff\x5d\x95\xad\x3d\x08\x7c\x04\xfc\xa1\xf2\x3a\x98\xb9\x1b\x28\x6a\xe5\xdd\xda\xe4\x7c\xf5\xd5\x4e\x5e\xf6\xfb\x36\xe1\xe8\x56\xb2\x06\x7a\xa6\x92\x36\xd4\x45\xa4\x86\x26\x71\x0e\xad\x6c\xd5\x14\x28\xb3\x7a\xe5\x30\x33\xb4\x99\x8d\x12\x9a\x49\xd8\xe4\x80\xe1\x47\x19\x1a\x0d\x74\x5c\x5f\xc6\x73\xc4\xe1\x73\xac\x09\x9d\x3d\x4a\x93\x62\x18\xaf\xb7\x7d\x75\xea\x92\x6a\xfc\xdd\x54\x78\x8f\x4f\x5c\x63\x7a\x64\x92\xc4\x66\xd8\x70\xd9\x38\x7d\xe2\xc1\x42\x77\x10\x61\x48\xf3\xc2\x6f\x10\x49\x9a\x8d\x08\x8e\x29\x82\x43\x27\x34\x6d\xe8\x84\x2a\x08\x7f\xa4\x7d\x04\x3f\x52\x73\xc9\x9a\xac\x18\x92\xb2\x03\x26\x03\x14\xac\xf8\x5a\xb5\x43\xec\xf2\x72\x9a\x15\xbb\xbd\x2f\x3c\x99\x38\x6c\x5d\x56\xb4\xd5\x99\x0d\x7f\xdc\x7d\x36\x51\x5b\x30\xcb\x28\xa0\x4c\x7d\x5b\x19\xd5\x66\x99\x49\x30\x91\x75\x13\x1a\xc1\xd3\x6e\x00\x5c\x1d\x61\xbe\x5a\x16\xa8\x0c\x43\x30\x09\x85\xb2\x3d\x1b\xd5\x12\xc1\xf7\x1f\xc1\x84\x42\x25\xe2\xae\x12\x87\xe9\x59\x53\xa0\x53\xc9\xad\x3a\xaa\xd3\x49\xdb\xce\x97\x28\xc0\x66\x94\xf8\xb6\x01\x0a\x19\x47\xaf\x97\x69\xd6\x56\x38\xad\xd3\xca\x2a\xe3\xba\x82\x90\x1c\x69\x82\x6a\x86\x26\x2b\xd2\x34\x41\x21\x06\x7d\xee\x2f\x02\x8d\x94\xf9\x42\x31\x8a\x48\x31\x36\x8b\x6c\xbe\xc7\x07\x14\x3b\x11\x1a\x63\x56\xec\x82\x0d\x88\x13\x06\x77\x55\xb8\xcb\x81\xd6\x74\xac\x46\xd7\xd1\x49\x97\x66\x1d\x5d\xa7\xc6\xc4\x39\xd8\x39\x3c\x7b\x00\x1b\x21\xe2\xea\xcb\xca\x8f\x0a\x4f\x46\xba\x32\x4a\xb4\x1f\xde\x39\xe2\xcb\x42\x53\x51\x75\xc5\x44\xdc\xfb\x1a\xa2\x5f\x3c\xbf\x4d\x8a\xb1\x9d\x3d\xec\xc2\xc2\xd6\x09\xfa\x95\xf8\xd7\xeb\x81\x62\x1a\x5c\xd4\x50\xcd\xc2\x01\x68\xa2\x3c\x8d\xab\x43\x74\x46\x95\x4f\x2f\xe9\xe6\xef\x65\xb5\xca\xae\x05\x2a\xf2\xdf\x54\x95\xc2\x70\x98\x66\x45\x2c\x2c\x42\x8e\xfd\x02\xd5\xc4\x3e\xa3\xe6\xd0\x20\x2e\x91\x8f\xbf\xe0\x10\x0a\xd5\x57\x08\x49\xaa\x49\xce\xc2\x44\x6b\x26\xb1\xcc\x2d\xe0\x10\x66\xe2\x51\x86\xd7\x34\xaa\xe1\x5d\x77\x6f\x6b\x43\x53\xd8\x55\x9b\xed\xf5\x30\x1f\x2d\x44\xb7\x6b\xc3\xc3\xd7\xdb\x64\x36\x23\x9e\x32\xf4\xe4\x68\x26\x1e\x79\x16\x27\x30\x1e\xe3\x16\x95\x6d\x90\x1e\x1d\xa7\x81\x76\x42\xd6\x2f\x6b\x03\xd2\x97\x17\x1d\xe1\x72\xfb\xdd\x3c\xd7\x59\x1b\x46\xf9\xb8\x76\x1c\x1c\x53\xc7\xc1\xb1\x86\x56\x22\x5a\x90\x31\x8f\xf1\x81\x2d\x00\x77\xb7\x2e\x4f\x69\x97\x14\x26\xdb\x43\xbf\x1d\x07\xd8\xbb\x34\xa1\x50\x04\xfe\x78\xe2\xd9\x28\xef\x62\xb8\x1c\x9c\xd7\xe1\x17\x4e\x2b\xb7\x97\x93\xfa\xfc\x3d\xa7\xba\xeb\x63\x13\xae\xac\xa5\x69\x9f\x4e\x0f\x94\xfb\x6f\xd0\xd9\xce\xd7\x81\x77\x86\xe8\xa7\x45\xab\x0a\x98\x65\x30\x5a\x8a\x95\xea\xfb\x40\x26\x5f\xc9\x15\x26\x7a\xa2\x30\xd1\x13\x85\x94\x30\x61\x11\xad\x12\x15\x74\x97\x37\x0b\xb9\x82\x43\x5e\x9a\x06\xca\xd6\x0c\x76\x76\x4e\xe0\xd2\xbb\x90\x5c\x0b\x3c\xd3\x3d\x4a\x9c\x3d\x35\x8a\xdc\xee\x18\x3f\x2c\x3b\xf7\x09\xef\xeb\x68\x32\xbb\x5c\xc6\x14\x45\xa2\x72\xf3\x65\xdd\x1d\x47\x1c\xba\x1c\x4e\xca\x8e\x9c\xcd\x2d\x5a\x60\x00\x3c\xf1\xb5\x0a\xd8\x33\xbb\x9c\x66\x23\xb4\x68\x30\x29\x99\x11\xc0\x2f\xf0\xf9\x8a\x88\x39\xef\xb0\x3a\x0d\xf5\xf0\xe5\x28\x66\x3a\x9c\xcb\xc4\x1c\x5f\x1d\xa2\x84\xec\x01\xa2\xd2\xc8\x7c\x18\x8d\x47\x36\x29\xf2\x3d\xf4\x46\xf1\xd8\xa6\xc9\x82\x1a\x02\x38\xe4\xce\x03\x7e\x49\xb4\x65\xc0\xf4\x47\x60\x02\xcc\x31\xc2\x8f\xab\x34\xeb\x84\x66\xd8\x60\xe2\xbe\x1c\x25\x68\xaf\x1d\x6e\xae\xe6\x35\x81\xba\x8b\x61\x14\x0a\x2c\x52\xa6\xa7\x76\xdc\x0f\x7c\x69\x68\x64\x92\x72\xd9\x84\x45\x59\x2d\xb7\x47\x54\xe7\xf7\xef\xe0\xae\xa4\xec\x50\x7d\xbd\x48\x86\xe3\x83\xc5\xe0\xdd\xd3\x4e\xe0\x94\xef\x34\xe1\xfd\x8e\x7c\x81\x06\x42\x9a\x06\x9e\x26\x13\xa6\xc9\xaa\x25\x5f\xa4\x6a\x6f\x71\xe2\x95\x4e\x0a\xf5\xa2\xca\xb7\x13\xcb\x02\x8b\xd8\x5c\x3e\x51\xb9\xda\x55\x2a\xf4\x20\x18\x3c\xa3\x1c\x0b\xcb\x64\x39\xc2\x7e\xe0\xb5\x31\xef\xab\x82\xf1\x7d\x05\xfb\xac\x52\xac\x8c\x71\x2a\xc8\x42\xa1\xa6\xc2\xd7\xb5\xde\xe7\xe1\xd9\xf9\x8e\x4d\x5e\x4b\xd7\x29\xef\x99\xb6\x75\xf2\x1d\x1e\xd7\xfe\xe9\x65\x65\x94\xbb\x0d\xcd\xd9\x31\x3a\xeb\xe9\x93\x0d\x08\xa4\xc5\x4e\x34\x22\x0e\x0c\x16\x9e\x72\x15\x39\xe8\x5c\x45\x1a\xf8\xe0\x61\x9a\x14\x51\x52\xe2\xc0\x12\xa6\xe5\x83\x40\xf1\xf0\x79\x17\x40\x72\xfb\x1d\xd5\xd6\xdb\x54\x1c\xce\xa1\xcd\x7a\x5a\x6b\x92\xcf\x5b\x7e\xa1\x2c\x3f\xf5\x4e\x8d\x60\xe1\x0f\x68\x4e\xf0\xb5\x66\xde\x95\x49\x41\x38\x3e\xb1\xd4\xf0\xfb\xcf\x6f\xe2\xec\x55\x86\x1c\x2f\x38\xff\x5a\x25\x14\x9d\x66\x2b\x66\x9c\xc6\x11\xd4\xe6\x70\x16\xb3\xb8\x3c\xfb\xcb\xe0\xd6\x90\x92\xdc\x51\xaa\xd1\x23\x93\xe5\x43\x13\xc7\x2d\x8f\x2e\xfd\x42\x27\xeb\x5f\xd4\xd8\x66\x0e\xf0\x94\xd9\x30\x4a\xcb\x7c\x66\xca\x8c\xb9\xe5\xcc\xb5\xb0\xc5\xc9\x19\xa2\xda\x73\x9f\xf9\x10\x62\x44\xcc\x53\xde\xe4\x90\xfc\xdc\x0b\x14\x02\xf6\x5e\x63\x86\xbc\x1a\x25\x85\x19\xa0\x0b\x81\x5d\xe4\xef\x2a\x39\x8c\xbf\xbb\x5d\x4d\x6f\x69\xf6\x60\x15\x59\x69\x72\x02\xa3\xae\xa5\x42\xb2\x5f\xb9\xab\x71\xe5\x43\xdc\x55\x14\x13\xf9\x0e\xb6\x4e\xfc\xb2\xe3\x0d\x33\xff\x95\x0e\x35\x33\xcd\x40\xd2\x1d\xfc\x69\x7b\xc3\x23\x32\xda\x5d\x49\xed\x62\xfb\x46\x94\x0c\x0a\x86\x05\xe1\x54\x60\x52\x0c\xbf\xa8\x25\xfa\xd5\xd4\x1f\xa7\x79\x61\x70\x92\x20\x82\xf8\x47\xb4\x70\x9d\xd1\x95\x2f\xa9\x9e\xd7\xa6\x71\xe9\x68\x5c\x16\x36\xcb\xf7\x79\xcc\xd2\x75\x78\x6d\xe3\xec\x3d\x8d\x1b\x65\x3f\x6c\x8a\x51\x31\xcd\xa8\xab\xf4\x8a\x73\x56\xa3\x09\x88\x5b\x39\x4d\xa5\x63\xb0\x31\xae\x4f\x3c\x46\x91\x8f\x7f\x36\x71\x01\x93\x99\xbf\x24\x50\x5a\xb5\xff\x62\x32\x95\x37\x6e\x3f\x88\x5e\x3c\xd0\xc9\xed\x1b\x68\x0b\x3b\xa9\x36\x65\x47\xa1\xe9\x99\x85\xe8\x1f\xe2\xa8\x39\x43\x47\x07\x5f\xd7\x06\x71\x61\xa1\x33\xb0\x99\xa8\xe0\x8a\x3d\x3b\xc7\xb8\x52\x84\x7a\xdc\x63\x37\xab\x71\xa3\x8c\x8b\xdb\x22\x0a\xa2\xb4\x0b\x58\x23\xd1\xb4\xf4\xa0\xfe\xdb\x14\xd5\x08\x10\x54\xb1\xc9\x2f\x4d\xb4\x44\x76\x28\xc8\xbe\x46\x41\xb2\x06\xe9\x8f\xa1\x35\x19\x57\x04\x81\x2a\xba\xac\xe6\xfd\xef\x60\xdc\x85\xe5\x2a\x6b\x2c\x2f\x45\xf8\x79\xaa\x8e\xeb\xb4\x6a\x54\xe7\x39\x0c\x63\x13\x8d\x54\x40\xc5\x94\x2b\xc1\x4c\xd5\x63\xcb\xc5\x6a\x17\x28\x0a\x07\xa3\xc7\xa3\xfd\xf3\xc0\xa7\x79\x7f\xde\x44\x77\x1c\xa7\x51\x52\x38\x05\x4f\xd4\xa8\x98\x0d\xe3\x74\x4c\x7c\xca\xb1\xa3\xab\xdc\x09\x09\xb2\xdf\x72\x6a\x08\x80\xf3\xf2\xb5\x02\x35\x85\xc3\xc8\x2e\x3f\xe6\x15\xa5\xfe\xd1\x44\x3d\xec\xab\x1a\x25\xfa\x27\xb8\x47\xb4\xe1\xb7\xf8\x0c\x17\x99\x74\x9a\xee\x18\x27\x90\x36\xb0\x74\x40\x6f\xc5\xc1\xba\x45\xc7\x21\x42\x80\x3b\x13\xa5\xb9\xf1\xc9\x44\x83\x10\x1b\x7c\x0c\xf3\x74\x64\x8b\x68\x84\xea\xa0\x54\x39\xfd\x21\xbf\x35\x55\x1f\xb3\x89\xa1\x12\x3d\x03\xf6\xb8\xd2\x8f\x0d\x0c\xf2\x84\x2c\xaa\x1c\xf8\x7e\x22\x17\xb1\x91\x1e\xed\xe9\x7a\x71\xaf\x5e\x9c\x86\x2b\xc4\x7d\x15\xd0\xd3\x2d\x0a\x64\xf8\x1a\xb7\x2d\x1e\x61\x2d\x51\x03\x3d\xce\x7a\xe1\x22\xa6\x3e\x25\xb3\xee\x8b\x14\x6b\x51\xdf\xc6\xeb\x7b\xaa\x51\x91\x0a\x4f\xb5\x1a\xf0\x1c\xfe\xd5\xc4\x07\x4c\x47\x03\xcf\x26\xbc\xad\xc0\x00\xe7\x50\x69\x41\x6d\xe1\x92\x2a\xab\x7d\x5c\x17\xa1\x79\xe9\x60\x27\x33\xe3\xa8\xaf\x3a\xd2\x1f\x29\xbb\xb3\xba\x37\x43\xf5\x8e\x71\x99\x84\x5e\xbb\x4f\xfc\x8b\x5b\x4e\x5d\x6d\xb3\x91\x81\x69\x92\xc4\x71\x6a\xb0\xb9\xb0\xd7\x09\xbf\x70\x47\x7f\x1e\xf5\xed\x9a\x59\x47\xb1\x03\xa9\x00\x03\xaf\xd0\x9d\xd8\x52\x22\x06\xf0\x4b\x62\xb0\x8e\x6a\x8e\xb0\x75\x24\x09\x01\xe0\x08\x3d\x86\xb9\x85\x53\x99\x55\x82\x50\x07\x3d\xae\x18\xbf\xf7\x54\xe5\x71\x87\x66\x96\x14\xf6\xc9\xb6\xf7\xd6\x47\x02\x2b\x26\x1e\x6a\xeb\xbb\x8e\x47\x8c\xf9\xb3\x07\x7e\xa9\x88\x4f\xf7\xa2\x29\x86\x9f\xfd\xef\xc1\x2d\x11\x33\x6c\x7f\xbe\x3d\xde\xc5\x00\xa1\x76\xfa\xf9\xc4\xc3\x4d\x9e\xea\x6a\x7a\x3d\x1a\xa2\x38\x57\x61\x37\x81\x81\xba\xab\xb4\x1a\xae\x43\xe7\xc5\xb1\xfb\xbd\x7a\x68\x13\x69\xb8\x63\x7a\x25\xbb\xf3\x48\x1d\x6b\x8a\xd4\xdc\x48\x33\x36\x11\xef\x8b\xd8\x9e\x3f\x51\x54\x9e\x4f\xea\x86\x3e\xd5\x64\xb3\x61\x9a\xc1\xe6\x14\xb1\xfd\x2e\x54\xc8\xa4\xb7\x5c\x7d\x3d\x96\xc4\xfd\x5a\x80\xf0\xe2\x81\x4e\x14\xc7\x25\x31\x01\xf0\x43\xc5\x3e\xb3\xba\x7f\xbe\xd6\x51\x5d\x96\x0e\xa3\x5e\xc4\x25\x96\x57\x78\x81\x9f\x99\x6c\x0b\x4f\x44\x1a\x55\x17\x38\xcf\x4c\xe1\x65\xcd\xba\x51\xb1\xd2\xef\x4c\x03\x6b\x9f\x54\xaa\xae\x23\x13\x25\x39\xea\x00\x1c\x43\x06\x1e\x56\x04\xf7\x6d\x17\x5b\x7a\x27\xdf\x4f\xe8\x8b\x51\x4a\xda\x07\x49\x30\xb1\x2a\x69\xcd\xcd\xf3\x24\x7d\xa0\xd0\x53\xa3\x28\xb1\x19\x8b\x04\x0b\x44\xc0\xe3\x60\x8f\x37\x38\x9b\x2f\x91\x6e\x75\x32\x60\x02\xd0\x16\xa9\x78\x6d\x9d\x50\x29\x93\x29\x86\xb1\x2d\xaa\xf4\xce\xdb\xe2\x7e\xaa\x05\xe6\x3f\xf5\x48\x32\x9b\x55\x99\xfb\x2e\xa5\xa9\x80\x2a\x2d\x50\x35\xc0\x38\x63\x6a\xce\x6c\x68\x3e\x41\xe0\x01\x53\xe7\x26\x8f\xb9\xb5\x75\x30\x7d\x14\x0d\x5f\xe7\x74\xe3\x1e\xed\x75\xd2\x6a\xc2\x74\xde\x0c\x5a\xdf\x3a\xc8\x23\x73\x44\x2d\xd9\x4b\xca\xaf\xf3\x3d\xd5\x2c\x79\x8a\xa0\x88\x48\x83\x98\x32\x8f\x7f\xe0\x36\xa3\x54\x55\xb9\xbd\x84\xf5\xc3\xee\x30\xfc\x42\x31\x0e\x46\x69\x56\x0c\xcc\xc0\xee\x51\x36\x16\x97\xb4\x6e\xe3\xfb\xf8\x0a\x31\xe0\xae\xb7\x70\x74\xb8\x89\x1a\xc4\x1e\x25\x98\x70\xd2\x6d\x7f\xcb\xd6\x14\x65\x26\xda\x75\xe8\xe0\xfe\x31\xbe\x09\x69\xe9\x7d\xec\xef\x82\xfc\xaa\x9e\xe4\x65\xd5\x61\xcd\x56\x51\xb6\x77\xd2\xc8\x8e\x4e\x74\x44\x39\x40\xdd\x56\x8c\x7a\x33\x46\x40\x01\xaa\x97\xd4\x10\xab\x43\x07\xef\xbb\x3b\x51\x56\x79\x41\x9d\x62\x3a\x4a\x11\xf4\x60\xdb\xbc\xa5\xbd\x5f\x6e\x35\x80\x7b\x0f\x76\x62\x9b\x0c\x8a\xa1\x4d\x38\x71\xc1\x06\x79\x19\xf7\xc8\x2f\x54\x11\x39\xed\x91\x3a\x01\xce\x1b\x59\x28\xef\x2b\x3e\xf9\xfb\x2e\x04\x23\xda\x39\x9b\x61\xa0\x38\x04\x09\x75\x51\x95\xf7\x12\x2a\x9b\xca\x00\xb6\x17\x15\xbb\x5b\xbf\xf4\xb2\x10\x18\xb0\x23\x09\xe3\x41\xe1\xdc\xd8\xa0\x12\x0f\xf2\x62\xb0\xf3\xeb\xfc\xe8\xff\x25\x8d\x31\x60\x68\xe7\x27\x3a\xea\x78\x3e\x64\x17\x17\x4c\xe1\x53\x6a\x77\x3e\xe5\x48\xf0\xa3\x32\x8e\x8a\x68\xec\x22\x33\x14\x73\x4e\xaa\x8e\xd3\xc9\x89\x97\xf5\xc8\xa3\x41\x22\xd1\xa8\xeb\xd0\x2f\x2c\xc8\x75\x2d\xdf\x77\x7a\xbb\xe9\x78\xc6\x37\x22\x67\x08\x80\x0d\x3c\xc3\x3f\x98\x28\x35\xca\x2d\xda\xa5\x70\xf3\xc7\x1d\x85\x3c\x49\x8b\x68\x79\xdd\x1d\xf9\xec\xb8\x43\x43\x2b\xee\x3b\x0d\xa8\x71\x93\xac\x23\x3e\x3b\x3c\xeb\x53\x8b\x25\x77\xad\xdc\x64\x56\xcd\xc0\x64\x11\xfb\x17\x88\x5b\x0b\xfd\x2a\x7e\xe1\xec\x3b\x07\x23\xc3\x24\x70\xd4\x7c\x6f\x4e\xd9\x9b\x7b\x72\xe3\xaf\xd2\x7d\xe0\xb9\x9d\xab\x91\x8b\xe1\x1b\x9e\xa7\x71\xa9\x78\x70\x2c\x3b\x18\xf8\xd6\xad\xa6\xa3\x96\xfd\x1c\x2e\xcf\xe8\x00\x3d\xd2\xf5\x25\xd5\x47\x36\x3c\x05\xf1\x06\xf6\x4c\x9e\x23\x88\x39\x50\xb1\x68\x39\x92\x48\xcf\x0e\x4d\xbc\xdc\xf6\x47\x03\xab\xcc\x60\xb7\x00\x67\x42\xa8\x40\x4e\x2a\xa8\xcc\x0b\x13\xc1\x6f\x1f\x27\x27\x4a\xc6\x7c\xad\x42\x77\xd3\x2f\x63\x76\x9f\x10\x49\x71\x25\xce\xf5\x51\x63\x56\xdc\x23\x55\x2a\x0e\xce\xb0\x02\xf9\x98\xe3\x17\xaa\xe2\x91\xd9\x71\xd9\x8b\xa3\xb0\xa5\x4a\xd9\x60\x48\xf2\xb5\x1a\xb4\xc4\x64\x2d\x65\x92\x48\x77\x26\xf9\x99\x5f\x7f\x76\x04\xf5\x07\xec\x30\x50\xd6\xe1\xeb\x8d\x86\xbc\xd6\xae\x5a\x78\xfc\xa0\x35\x00\xf5\x02\x84\xc4\x7f\x38\x25\x68\x49\x63\x20\xae\x68\x53\x5d\x96\x06\x5e\x7d\x11\x8e\xc6\xf4\x2b\x1a\x55\x80\xbd\x35\x01\x09\x7c\xc7\x65\x68\x99\xa9\xc6\xe5\xd6\xa9\xd2\xeb\x76\xb4\xc0\xe2\xd2\x62\xe7\xd9\xfe\x2e\xa5\x02\x4e\xd6\x68\xaf\xf8\x86\x7b\x15\xa8\x39\x9f\x4e\xdf\xef\xfe\x8c\x14\xce\x30\x49\xf6\x75\xbf\x3a\xdd\x57\xb3\x19\x6d\xdb\x78\xd4\x52\x18\xd4\x4a\xcd\x0d\x10\xd4\xe5\xac\xac\x36\xc8\x1c\x2b\x0d\x03\x78\x55\x29\xe6\x5f\x55\x85\x01\x53\x0e\xca\xbc\xa0\x44\x44\x54\x8b\xa7\x6a\x84\x4a\xb9\xeb\x9c\xca\x19\xee\x04\xd3\x65\xc5\x2a\x1a\xe2\xf7\xab\x14\xbf\x5d\x7b\xb2\x24\xfa\xbb\x0a\x3a\x93\xe0\x7c\x3c\x24\xe9\xb7\x34\x3a\xef\xbc\x32\x89\x37\x03\x22\x94\x93\xcf\x92\xb3\x12\x3e\x3b\xf1\x67\xff\x59\x8f\x95\x8f\x12\x0b\xdf\x68\xa7\xbd\x76\x5a\x59\x4d\x73\xf5\x47\xee\xc2\xf3\x8d\x0a\x13\x0e\xd7\x43\x93\xf5\x23\xad\xab\x7f\x49\x89\xd4\x5d\x0a\xf6\xba\xbf\x7e\x75\xf7\x94\x4e\x3f\xd6\x94\xab\x57\xbb\x2a\xcb\x8f\x03\x7a\xe8\x38\x35\x50\x50\x40\x97\xe4\x33\xc4\xf6\xfc\x0f\x4d\xb0\x9d\x5e\xd9\x1f\x58\x78\xe3\x38\x90\x28\xc0\x1c\x80\x96\xbf\x3f\x6d\xe5\xe9\x1a\x22\x26\x8b\x96\x97\x77\xa9\x9c\x76\xf7\x86\xef\xcf\x7f\xa5\x5b\xa3\xbb\x63\x27\x3d\x31\xc5\x89\x97\xb1\x84\x30\x43\x06\x3b\x47\x9c\xf5\x5f\x2a\x78\xd5\xee\xae\x16\xd4\x7e\x5c\x4d\x5c\x93\x17\x88\x90\x71\x10\xfd\xf1\xc4\x1f\x79\x20\xd1\xf0\x7f\x57\xb6\x3c\x57\x95\x56\x09\xab\x46\x00\xfb\xf7\x23\xe4\xd0\xa8\x8e\x5d\x0b\x3c\x63\x26\x4d\x06\xa9\x30\xe8\x10\x07\x40\x1a\x85\xaf\x15\x74\x00\xd5\xc6\x6a\xe6\x08\xbe\x97\x7e\x9c\x00\x7c\x9f\x51\x8a\xc2\x83\x32\x26\xa0\x2b\x58\xce\xdc\x2d\x0e\x3c\x3b\xf2\x1c\x6a\x80\x38\x13\x2e\x63\xbe\x3a\x21\x14\xc7\x30\x3e\x8b\x20\x82\xdf\x52\x2b\xb4\xb3\xbb\x79\x9a\x47\x05\x78\x88\xa8\xe1\xb0\x25\x80\xd8\x51\x2b\xde\xf6\x3f\x55\x36\xcc\x47\x55\x51\x7c\x90\xda\x7c\x77\xeb\x1b\xbf\xc2\xc1\x37\x9c\xa1\xf9\x3a\x50\x9d\xd5\x33\x34\xd0\x4a\x27\xed\x05\xde\xc6\x50\x2f\xe4\x6b\x55\xc0\xcf\x87\x65\xa2\xea\xa7\xc7\x74\x85\x9d\xd9\x22\x08\x6f\xaf\x2b\x54\x5d\x6c\x57\xd9\xd5\x4c\x7a\x14\xf4\x2e\x69\x52\xb8\x82\x76\x92\x97\xbe\xea\x2f\xd0\x22\x0f\x9e\x7e\x4f\x29\xac\xf7\x6c\x36\x00\xd3\xf8\x85\x2d\x5a\x3f\x5b\xbe\x14\xb7\x5a\x45\x13\xc5\xfa\x2e\xc5\x16\x39\xa2\x9a\x7f\x8f\x68\x11\xd6\x5b\x34\x32\x4e\xdc\xce\x0d\xf9\x55\x85\x51\xc9\x0b\xb3\xbc\xcc\x8e\x49\x78\xa4\x1f\x2a\x33\xb9\xc7\xe9\xc4\x72\xd6\x09\x73\xf3\x7e\x37\x76\x6a\xb6\x67\x30\x32\xcc\x76\xc1\xdd\x63\x27\xbc\xae\x96\x47\x6e\xa3\x81\x6d\x57\x39\x0f\xde\x75\x9e\x4a\x3f\x18\xdb\x2f\x55\xfd\xf6\xa2\x96\x3c\x4c\x4c\x18\xa5\x2d\x0f\x84\x6e\x75\x55\xb3\xa0\xb5\xa1\xb6\xca\xa2\xc8\x4c\xe8\xb0\xda\xd8\xe8\xb0\x27\xf1\xb5\x03\x4e\x15\x99\x59\xb5\xb1\x17\x0d\xe6\x6d\x41\x03\x70\xde\xd9\x2e\x59\xb2\xb0\xd0\x39\x3c\xfb\x15\x5f\xab\x82\x92\x01\x6a\x1c\x9f\x06\xaa\x95\xb5\xa3\x5b\xcd\x4b\xec\x28\xd8\x45\x11\x53\xfd\x11\x4e\x6c\x24\x20\x57\x09\xdf\x82\x0d\xe0\x32\x97\x15\x45\xae\xcd\xa7\x53\xc7\x48\xf2\x49\x38\x95\xb4\x74\x01\x0e\xfb\x3f\x26\xaa\x39\xc7\x60\x3e\x69\x49\x57\x13\x1e\xcf\xfb\x07\x81\x72\x8f\xfb\x42\xc3\xaa\x2e\x51\xe6\xe9\xc4\x14\x35\x77\xb0\xee\x8c\x62\xca\x22\x1d\x19\x11\xb1\xc2\x1c\x3b\xa1\xc9\x97\x27\x1a\xdb\x70\x23\x6b\x41\x34\xaf\xfe\x50\x36\xd8\x6a\xcc\xf8\xba\x26\xff\x33\x37\xd7\xc9\x87\xe9\x1a\x89\x57\xe3\x6f\xee\x68\x51\x2f\xf4\x2b\xb5\x2e\xc0\x54\x17\x46\xda\xd1\x4f\x2a\xba\x7e\x3a\xca\xd3\x64\x0f\x59\xe4\x13\x32\xfe\xc0\xd6\x4d\xa5\xf3\x7e\x7b\xa2\xbc\xe5\x3f\xc0\x0d\x21\x30\xfb\xb1\x5e\x34\x4a\x81\xe8\x9a\x42\x7e\x2e\x9b\xa4\x0c\xd1\xf9\x44\x9c\x03\x4f\x0d\xbe\x56\x11\x65\x3e\xb4\x71\x3c\x4e\x0b\x8d\x71\xe3\xee\x9b\x08\x83\x6e\x8f\xa8\xaa\x53\x30\x05\x6c\x15\xe5\x89\x23\x81\xd2\xb3\x3e\x32\x95\x84\x65\x16\xab\x83\x41\xa6\xb4\x9d\x08\xe0\xd4\xef\x97\x2b\x89\x5d\xdb\xad\xea\xb3\x8c\xa4\xc5\x2d\xc2\x2a\x48\x72\xfb\xea\x2e\xf0\x5c\x91\x19\xbb\x68\xc5\xf5\xf6\x2f\x2a\x17\xbf\xcc\xae\x46\xab\x22\x8c\xe5\x84\x76\xfd\x21\x7c\x4e\x65\x59\x59\x31\x5c\xb3\x79\x41\x8c\x33\xb1\x38\xa6\xb2\x21\xb6\xa4\xbb\x0a\x0c\x87\xde\x37\x8e\x3e\x9e\xdf\xa8\x5d\x1d\x51\xa4\xc3\x22\xb3\xa6\x18\xd9\xa4\x98\x51\xdb\xed\x59\xe5\xe8\x0c\x37\x1e\x24\x1e\x40\xea\x23\xad\x3a\x35\xd9\xeb\x6e\xe0\xb9\x9f\xa5\xe9\x8f\x35\x7a\x97\xc1\xf9\x5c\x45\xa0\x45\x8a\xa8\xfa\xa9\x8d\x9d\x5f\xf7\x49\x90\x6f\xf8\x2f\xd2\x8e\x28\xc1\x48\x15\xcf\xa2\x7a\xc2\x28\x46\x07\xf1\x7a\xf6\x59\x47\x21\xab\x7e\x07\xd6\xf4\x2e\x58\x08\x3b\xf5\xda\xc3\xb3\x5c\x71\x3a\x0f\x24\xa8\xf3\xf4\x5d\x9a\x5d\x12\x67\xec\x6e\xeb\xdb\xdf\xe4\x8d\xe3\x5d\xd2\xd5\xc3\x38\x7f\x18\x78\x81\xe6\xd3\x01\xc1\x86\xa4\xc3\x54\x2d\x75\x20\xe6\x8e\x21\x4f\x40\x78\xb1\x63\xa3\xa5\xb4\xb8\x68\x6f\xc2\x8b\xe3\x13\x8f\x5f\xfa\x13\x88\x02\xa0\x99\x71\x04\xfb\x09\xa6\xf8\x9f\xa9\x93\x79\x67\x97\xa2\x3d\x45\xcb\x95\xdc\xe2\x4b\x30\x37\xb0\x52\xff\x0c\x5b\x18\x60\x1b\xb7\x02\x8f\xdb\xdd\x81\xe8\x8c\x15\xeb\xa9\x12\xc6\xde\x91\x13\x0d\xc7\xb8\xd2\xe4\x94\x99\xd9\x70\x25\x16\xcd\x25\x54\x13\x2f\x29\x97\xaa\x4b\x81\x47\xfa\xf4\xd2\x2c\x4b\xd7\xa2\x64\x90\xb7\x3d\xb2\x82\xdb\xfa\xa8\xc8\x81\x71\x83\x48\xf5\xec\xe4\x31\x4f\xcd\x88\x5a\x9a\x4c\xc7\xe9\x93\xd4\xc9\xf6\x2b\x2d\xdf\x10\xf2\xbc\x9a\xba\x8c\x87\x75\x57\x83\xe6\xee\x2a\xbb\xbb\x57\x55\x4f\xe6\xa4\x3a\xf9\x7a\x65\xba\x2e\xa5\x10\x41\x7a\xfb\x7e\xe7\x31\x85\xc2\x88\x92\x3c\xca\xa9\x62\xe9\x32\x25\x1e\x37\x4c\x81\x3b\xc1\x94\x23\x4f\x4b\x49\x15\xd2\x7d\x08\x30\xab\x89\x39\x97\x99\xb5\x96\x67\xe9\x6f\x2a\xf4\xe7\xa6\xd6\x30\xce\x6c\x3f\x0a\x21\xbf\x84\x93\xf9\xc6\xc4\x1f\xd9\x37\x6a\x66\x26\xa4\xd4\x63\xe2\xd8\x0e\x6c\x9f\xf1\xc2\xe2\x1a\x5b\x7d\x84\xd8\xc9\x7a\xb8\xc4\x1b\x63\xb3\x6e\xb3\x5d\x1e\x06\x71\x43\xa9\x16\xb1\x12\x80\x53\xe3\xa9\xe6\xb8\x6a\xaf\x1e\x54\x91\x3a\x07\xd0\xcb\xcb\x51\xc8\x5d\x61\xa5\x2c\x20\x34\xe7\xcd\xa6\x79\x96\x17\x69\x36\x72\xad\x4c\x84\xf4\x67\x55\x15\xeb\xac\xab\x78\x11\x5e\xf7\xf5\x92\x5c\x08\x5b\xce\xe7\xe2\x88\x66\xab\x5f\x55\x56\xac\x27\x9a\xc4\xd1\x7e\x9e\xc2\x24\x81\xd2\xb7\xdc\xc1\x8f\xe8\x00\xf7\x53\xb7\x43\x98\x9b\xa7\x53\xc1\x1b\xc4\x20\x26\x60\x9b\x63\x7e\xd1\xc4\xf3\x2e\xab\xa7\xac\x3c\x5e\x68\x30\xc4\xfc\x65\x3b\xc4\xe3\xf0\xec\x0b\xe4\xd0\x17\x9a\xb1\x09\xa3\x82\xfd\x50\xb0\xaa\x11\x6f\xf1\xb5\x07\xaa\xaf\x8f\xab\x3f\xcf\xfa\x6d\x1d\x6f\x9d\x54\xfd\x10\xc6\xfe\xe3\x27\x6a\xc2\x90\xc9\x62\x02\xbf\x60\x17\x86\x41\x2c\x76\xc2\xbb\x2a\x0f\xfc\x2b\x4f\x76\xa7\xc4\x55\x75\xdb\xc2\x84\x45\x9a\xb5\x7d\xb4\xbf\xa7\xeb\x13\x9c\xdb\x13\xd5\x66\xb8\x51\x5b\x00\x55\x18\xd3\x2f\x53\x1c\x6e\xd8\xa5\x2f\xaa\x4e\xe0\x45\x05\x0d\x49\xd2\xd5\xe7\x1f\xa5\x15\x8e\x65\xf6\xbb\x1a\x08\x76\x93\xde\x84\x5a\x22\x73\xc1\xa5\x1b\xa9\xfc\x7f\x80\x6c\x42\xb6\xc9\x60\x08\x51\xb2\xd1\x69\x36\x54\x3d\x31\x52\xed\x0d\xbf\x06\x5f\x2f\xa3\x70\xc5\xa2\x22\xe5\x6c\x61\xab\xb9\x2a\x4d\x8c\x27\x55\xff\xdb\x64\x64\x6e\xa4\xb6\x85\x89\x66\x7b\x4c\x35\x97\x47\xe5\xe8\x91\x29\xd5\x26\xcf\xf7\xdb\x4b\x5d\x08\xe6\xe3\x20\xbe\x55\x2a\x84\x07\xe5\x45\xe0\x5d\x6e\xcf\x21\x09\x43\xb4\x76\x5b\xa9\xb9\xd6\x09\xd9\xd5\x3c\xcb\xa3\x5e\xec\x35\x34\x5d\x0d\x53\x79\xec\x69\xaf\xf2\x7e\xf6\xa6\x7d\xad\xa5\x08\x43\x9b\x5a\x9c\x79\x53\x3b\x8b\x67\x51\xb2\x62\x33\xd5\xaa\xbb\xa5\xa4\x3f\x3f\xd3\x16\x75\x4d\xf6\x79\x9d\xd5\x08\xf0\x66\xcc\x7d\xce\x02\xb0\xcc\x24\x25\x68\x6a\x10\xf6\x52\x93\x89\xaf\xa8\x10\x66\x7d\xf6\x7f\xc9\xa9\x93\x92\x88\x72\x54\x94\x85\xdd\xe5\x8b\x20\xbf\xa7\xf9\x91\x9b\x14\x2d\xc8\x31\xa3\xd9\xc0\x34\x3a\x02\xb7\x6f\x82\x21\xf5\x62\x3b\x8a\xf2\xa1\xd0\xbb\xa5\xab\xdd\x72\xac\xbe\xcd\x9a\xc9\x2d\x04\xef\xd2\x65\x0b\xbf\x63\x58\x1b\x20\xe8\x39\x36\x51\x2b\x0f\xfa\x9e\x98\xb5\xb7\x02\x5f\x6c\x23\xb3\xff\x7c\x7f\x4b\x29\x46\x55\x13\x07\xf5\xae\x23\xb4\xbf\x71\x08\x85\xd3\x58\x9a\x04\x74\x5f\x4e\x45\xa0\x0a\x1e\x70\xaa\x7f\xa8\x6a\x67\xc0\xcc\x63\x7b\xdc\x9a\xe8\x2e\x27\x0d\x97\x58\xa1\x50\x0c\xc5\xd8\x54\x2c\x2e\x94\x1b\x38\xfd\x91\x0a\xbe\x6c\x59\x7d\xbb\x6c\x13\xa7\x53\x84\x3f\x3d\x81\xb9\xcb\x2f\x9c\x21\xf2\xa0\xcc\x4a\x18\x4d\x70\xb3\x6b\x32\x65\x26\x4a\xd3\x51\xe2\x4e\xfa\x62\x6c\x7f\xad\xae\xf2\x26\xc9\x4c\x9f\x54\xa0\x10\xc9\x02\xdc\xf0\x05\x22\x06\x59\x1e\x2d\x27\xe2\x7f\x5e\x59\x36\x7c\xa1\xf2\xeb\x61\x9a\xa4\x59\x6b\xaa\x00\xa3\xeb\x37\x2a\xe1\x1f\x9a\x18\x28\x31\x0c\x21\x60\xb6\xd8\x27\x78\x4b\x14\x1f\x64\x15\xe9\x47\x29\x1c\x49\x94\x14\x0c\x3d\x2c\x61\x16\x54\x9f\xc7\xff\x80\xa1\x97\x22\x52\x5d\x50\x72\xb1\x93\x95\x0e\x62\x2a\x6c\x1a\x25\x98\x7a\xc9\x97\xf5\xb2\x75\x97\x44\xca\x79\x49\x77\x28\xf6\x7f\x0e\x45\x8d\x3d\x0d\x1e\x05\xce\x22\x46\xcb\x86\x1c\x10\x60\xed\xd9\x29\x70\xbb\xb5\xd9\x1e\x45\xdc\xfd\x7b\x74\x1f\x68\x17\xdd\xc4\xf3\x42\xcc\xb6\xab\xab\x7a\x5d\x18\x31\xc4\xcb\xad\x0d\x55\xa7\x83\xb2\x22\x7f\x54\x2d\xee\xa1\xfa\x57\x3a\xb6\x90\xd9\x6d\x79\x2e\x0b\x74\xad\xf9\xda\xeb\xaf\xa6\x65\x56\x60\x6a\x21\x36\xbe\x87\x87\x03\xd4\xe6\x8e\x0d\x35\xb5\x58\x1a\x89\x96\xc7\xdf\xfe\x4a\x77\x7b\x1b\xb3\xca\xad\xd3\x19\x8f\xb7\xd8\xab\x81\x09\x97\xa6\xec\x73\x7c\x6d\xf9\x46\xa3\x72\x78\x9a\xf4\x8d\xf2\x81\xe2\x7a\x0c\xbf\xa8\x79\x47\x2d\x2c\x54\xef\xb0\x39\xcb\x65\x37\xd9\x67\x7c\xc5\x77\xde\x73\x1b\x96\x5e\x9d\x0e\x47\xe1\x71\x05\x5a\xf1\xde\x97\x85\x19\x73\x7f\x15\x78\xd2\x2b\x38\x6f\xf9\x85\xd3\x20\x1d\x9a\xbc\xb0\xe0\xa0\xa8\xd2\x9c\x24\x24\xff\x5c\xc1\x9a\xd9\xcb\x40\x4a\xd9\x8f\x2b\x21\x4e\x5b\xe4\x2d\x0f\x58\xba\x84\x8d\x48\x8c\x06\x7c\xa3\x67\x6d\xb8\xfe\xa8\x5b\x47\xe5\x93\x5d\x85\xdb\xff\x43\x24\x5e\x7a\x93\x14\xdf\x6b\x35\xa9\x1e\x65\xdc\x96\xec\xc8\xb4\x20\xf8\x03\x68\x7b\x16\x6c\x55\xb5\xf9\x61\x5f\x3b\xa5\x5a\x63\x79\x61\xa3\x44\xab\x79\xdf\x56\x3e\x0b\xb7\xd5\x4a\x7e\x2d\x1a\xd9\xc4\xbe\x49\x0f\x04\x8a\x3b\xdc\x8e\xe4\x17\xae\x60\x99\xd9\xd0\x46\xab\xb6\xbf\xdb\xa3\xac\x2e\x23\x53\x84\xa2\x01\xb6\x5b\xa4\x03\xf7\x27\x0a\x1b\xc4\x3e\x83\x48\xaa\xef\x07\x53\x26\x87\x5a\x62\xb7\x1c\xc9\x11\x2a\xc9\xbb\x92\x57\x3b\x5b\x8b\xc7\x96\x66\x3b\xb1\x5d\x2e\x48\xa8\xcb\xa9\x0c\x3b\x66\xe9\x45\x05\x8f\x00\x39\x18\x55\x34\xd6\x89\xc7\xae\x7b\x03\xfc\x96\x13\x3a\xeb\xdb\xd1\xd4\x87\x1b\x46\x99\xfd\x7f\x93\x81\xe1\x9b\xc8\xca\x51\xcf\x6b\xff\xb1\x49\xbc\x32\x64\x3a\xef\x18\x1b\xcb\x26\x8e\xd3\xb5\x76\x4b\x79\x66\x7a\xa2\xc3\xff\xa8\x6a\x1f\xef\x4c\x45\x5f\xe6\x0d\xd3\x52\xb6\xbc\x67\x03\xa5\x26\x5e\x8d\xd0\x36\x8a\xd8\xe2\xc1\x2a\x7f\x68\xa9\x18\x93\x9d\x70\xa4\x06\xba\x5f\xf5\xfa\xd2\xb1\x02\x1a\x6d\x51\xb1\x91\xaf\x9b\x9c\x1d\xaa\x88\x24\x74\x61\x03\x7b\xcb\x04\xbe\xd6\xaa\xc5\x8c\x0a\xb3\xfe\x68\xf5\x64\x40\x6b\x80\x16\x13\x0a\x6d\x77\xb5\x91\xf7\x2d\x94\x36\xf0\x7e\xb8\x17\x39\x01\x30\x67\x6f\x86\x90\x1b\xc3\x79\x1d\x73\x09\x58\xe2\x07\xd3\x63\xd1\x20\x76\x49\x12\xef\xc2\x21\x77\x91\xc7\xe1\x59\xbe\x7e\xa0\xce\xc7\xa6\x30\xef\x60\x27\x1f\x97\x99\x0b\xf3\x18\x50\xa0\xc4\x12\xfe\x41\xd3\x0e\x49\x36\x91\x6d\xe5\x21\x80\xda\x19\x1e\x34\xfa\xbf\x48\x90\x6e\x4c\xfc\xc3\x18\x59\xc3\x2c\x37\xf1\x64\xd3\x06\x6d\x2a\x72\x65\x79\x40\xfc\x22\x7c\xfe\x07\xea\xc8\xfa\xc0\x2d\xde\x74\x79\x39\x1f\xa6\x99\x25\x72\x22\x9a\xc6\x57\x31\xdc\x52\xdf\xa8\x86\x1b\x05\xcf\xfb\x54\xf5\x13\xcd\xed\xd6\x2f\xcf\xf3\x7e\xfb\xa1\xc2\xc6\xc0\x3a\x04\x10\xd7\xdd\x35\x91\xe8\x85\x05\x0a\x62\x64\x76\xa0\x72\xf5\xa9\xa2\x39\x7e\x3a\x51\xa5\xfa\xf0\xf5\xd2\x30\x26\x47\xbb\x39\x57\x3f\x0e\x9d\x45\x18\xe0\x8b\x8e\x58\x13\xc0\xc1\x84\xd4\x26\x36\x3d\xe1\x23\x09\xb5\xc7\xf7\xcb\xef\x04\x1e\x29\x74\xdc\xad\xc3\xdc\x54\x11\x45\x9b\xd6\x2b\x90\xbc\x3f\x4d\xcf\x04\x5b\xda\x4f\x6d\xf8\xd6\xf1\x89\x9a\x40\xc0\xd2\x6c\xc7\x64\x03\x9b\x14\x51\x12\x19\xf4\x19\x70\x84\xfe\x9e\xd6\x00\xfe\x3d\x15\x45\xc6\x11\xd1\x20\x38\xf1\x95\xde\x4b\xcb\x09\x3b\xed\x01\x86\x0c\x13\xfa\xc9\xae\xa2\xc3\x45\xc5\x30\xa2\x07\x5d\xdd\x9c\xee\xb0\xf2\xb5\x36\x8d\x4c\xf3\x30\x5d\x6b\xf9\xc6\x01\xd4\x1c\xa5\x51\xe1\x97\xe5\x8b\x07\x5e\xd8\xeb\x29\x51\x77\x68\xc5\x63\xf4\xbf\x00\xd5\xd0\x65\x32\xde\x7b\xe0\x03\x9a\x0f\xa8\x14\x03\xef\x4b\x3b\xf9\xc2\x4f\x75\x5b\xdf\x92\x0c\xf5\xb8\x4a\x5d\xf7\x6d\x28\xd1\x8b\x9f\xde\x50\xfb\x62\xa7\xeb\x75\x6b\x9f\x7d\xf6\xab\x34\x83\x51\x8b\xbc\x12\x68\x5e\x70\xa0\xc4\x09\xae\x29\xc7\x80\x6b\xf4\x7b\x71\xa8\x6c\x4e\xa6\xad\x18\xab\x23\x19\x1b\x01\xa6\x0e\x22\xe5\x9f\x50\x34\xc3\x1c\x27\x1a\x13\xdc\xd3\x0f\x83\x6d\x34\xaf\xea\x47\xba\x64\xd5\x05\xd7\x37\xb0\xdb\xa0\xde\xf0\x63\xcd\x21\x3a\x4a\xa5\x5e\xb1\x4e\xa1\x62\xad\x33\xa4\xf3\x4e\x6f\x5f\xd2\x2e\xe6\x86\x6e\x6e\xde\xb1\xad\x3d\xf0\xef\x6a\x03\x1b\x69\xb1\x13\xa6\xa6\x8a\x83\x18\x26\xe7\xf2\x0a\x2f\x41\x72\x52\xc1\x2a\xb9\xdd\x28\x50\x3b\x25\x58\x9c\x8e\xa8\xe4\x89\x03\x44\xbc\xf5\xa8\x56\x2b\x60\x6a\x8f\x91\x8c\x92\x22\x8b\x42\x01\x9f\x3a\x15\x04\x65\x10\xd5\xa4\x14\x66\xdf\x08\xcb\xdc\x81\xf5\xf1\x7b\xb8\xde\xe8\xdc\xee\x5c\xf8\x76\x5a\xe7\x20\x69\xf9\xa6\x99\xf1\xee\xeb\x6c\x7a\x86\x24\xe4\x6d\x7a\xd2\x2e\x62\x5b\x74\x54\x92\xba\x8f\xeb\xfc\xa1\xce\x72\xf9\xe6\x9b\xae\x32\xe7\x3c\x76\xbd\xdf\xae\x22\xb7\x85\xe9\xa8\x17\x25\xb2\x4b\xb9\x90\xd7\x1b\xda\xb8\xd8\x7b\x4c\xfa\x1c\x2d\xa5\x0f\xf8\x99\x12\xa5\xfc\x2c\x90\xa8\x35\xb1\xd9\x6a\x5a\xe6\x89\xcd\x73\xaa\xd9\x09\xb8\xac\xe5\x68\x91\x57\xf5\x9d\x1d\xd9\xce\x3f\x3a\x3c\x3b\x5f\x9d\xd8\xcf\xf8\xd8\x1c\x90\x04\xf1\x13\x52\x20\xf2\xf3\xdc\x9d\x70\x0d\x8d\xb9\x39\x67\x56\xaa\x9a\xf3\x6f\xe9\x43\xf5\xa4\x92\xc6\x3e\x8d\x55\x26\x47\x57\x6b\xc9\x53\x5a\x7c\x80\xf7\x2e\x45\x9a\x8e\xcc\xe7\xec\x13\xef\x4c\x94\x97\xfd\x49\x4c\x79\x87\xe5\x73\xb0\xad\x4b\x78\x58\x58\x71\x9f\x06\x4a\xe2\xf6\x9f\x22\x0a\x43\x7c\xc1\x3d\x7e\x54\xc4\x7c\xbe\x33\x2a\x9d\x73\x54\xb3\xe5\xb6\x43\x40\xbc\xb1\x4e\xdd\xf1\xea\x43\x44\x33\xb2\x1a\x40\xd1\x92\x6c\xd0\xde\xef\xdb\x30\xea\xbb\x8d\x5f\x2c\xe6\x7d\xcd\xe7\x82\x62\x20\xde\x70\x87\xa8\xb7\x6f\x56\x96\xcd\x6a\x6a\x4d\x87\x6a\xe1\xca\xe3\xd5\xa0\x0a\x89\x57\xf9\x1f\x5f\x44\xd2\x80\xbd\xeb\x94\x82\xf5\xdf\x40\x92\x8f\xf2\xc5\xbf\xc5\x80\xb1\x1c\x11\x71\xf0\xf1\x50\x58\xee\xdf\x89\x04\x38\x84\xcf\x2d\x05\x80\x6d\x21\xe3\xc0\xb9\x02\xc9\x6d\xe7\x86\xf3\xa2\x54\x3f\x19\x87\x8a\xd6\xc5\x3d\x95\x14\x0c\xcc\x7a\x9c\x66\x60\x5f\x0b\xa4\xcf\x13\x12\x5b\x1b\x0d\xa4\x87\x32\xe9\xa5\x19\x4e\x41\x24\xbf\xf8\x35\x7c\xdd\x24\x40\xdd\xab\x22\xc8\xd6\x94\x5b\x47\xf5\x0e\xbe\xae\xbd\x63\x69\xb6\xf3\x33\x7f\xf3\x1b\xbf\xb8\xd4\xaa\x16\x04\x73\xa4\x30\xaa\x42\x98\x7a\x66\xfb\x62\xea\x2c\xcd\x2e\xa9\xfe\xff\x59\x05\xdd\xd2\xf1\x69\x6c\x8b\x7d\x5e\x1e\x9c\xe9\x03\x28\x29\xb4\x36\x14\xc0\xe0\x42\xa0\x6d\x85\xcf\x6b\x19\x96\x89\x7a\xbc\x1f\xe3\xa0\xc0\x1a\xf8\x8e\x82\x0b\xee\x21\xf6\x02\xbe\x7e\x0f\x85\x19\x88\x88\x39\x3b\x54\xf2\x07\xaf\xf0\xea\xbf\xaf\x34\x5b\xc6\xcf\x8f\x9e\xa7\xcc\x53\xa4\x3b\xab\xaf\xe7\x6b\x55\x7b\x1e\x99\x88\xd7\x02\x56\x17\x37\xe7\xf9\x45\xf0\x8c\xe7\xcd\x47\xb9\xc9\x46\x66\x24\xe8\x3e\xdd\x11\x92\x32\xc9\x53\x0a\xcd\x34\x1a\xa7\x65\xd2\x57\xde\x55\xb7\x95\x77\xd5\xed\x46\xa5\xf8\x7c\x3d\xb1\xd9\x00\xc9\xbe\xdb\x1e\x3c\xec\xb7\x69\x65\x56\x81\x60\x16\xa5\x99\x72\xae\xfa\x3e\xee\x80\x5f\x34\xc1\x88\xd2\x5e\x8e\x62\x24\x7d\x13\x96\xcf\x29\x65\xd0\x72\xca\xe5\x99\xf6\x8d\x30\x2e\x49\x63\x66\x71\xfe\xd0\xd6\xe5\x09\xcb\x1c\x3c\xad\x6d\x7f\x6c\x36\xce\xa2\xdc\xee\xc6\xfe\x2a\x2e\x16\xd5\xa7\x61\xaf\xbc\xad\xd0\x29\xd7\xb5\x75\xd5\x45\x65\xf0\x78\x5e\xd3\x58\xcf\x36\xea\x3e\x83\x96\x1e\xd9\x6c\x46\x89\x14\x5e\x84\x5e\x0d\x92\xbf\x3b\x4a\xcb\x6d\x6f\x57\x99\x67\x9f\x9e\xec\x53\x52\x09\xeb\x8f\xfb\x3e\xd0\x35\x6d\x33\xc1\xa8\x7d\x86\x9f\x68\x8e\x3d\xc4\x07\x70\x5e\xfc\x84\xd8\x99\x08\x18\xd8\x41\x16\x9b\xd6\x51\x55\x3d\xbe\x4a\xd1\x8b\x50\x97\x7d\x03\xe5\x37\x74\xa6\xff\x3e\x4e\x1e\x6c\xf8\xbf\x1f\x78\x5a\xfe\x97\x74\x8a\xb1\x07\x9b\x6a\x56\xf6\x52\x4b\x55\xc4\xb9\x39\xde\xa9\x6e\xd2\x81\xc3\xd7\xb8\x15\x04\x6f\xec\x49\xc1\x2f\x6a\xb1\x38\xf5\x10\xf3\x32\x0c\x6d\x9e\xa7\x99\xd2\x73\xfc\x50\xe9\x39\x7e\x38\x25\x28\x99\xb2\xa4\x3a\xb6\xc5\x8f\x03\xe5\x18\xf6\xf1\xe4\x69\x29\x7a\x98\x70\xc5\x16\x96\xf8\xd9\x54\x23\xc5\xe1\xc9\xbc\x37\xec\xc7\x4f\x6c\xb8\xf9\xfd\x8f\xbe\xda\x6d\xaa\xf4\xa7\x71\xdf\xc2\xbb\xe4\xa0\xb7\x11\x58\x58\x70\x1d\xaa\x86\x30\xa6\x67\x43\x43\x24\xa5\xa5\x59\x3e\x33\x4f\xd0\xc6\xcd\xd7\xc1\x53\xbe\x4e\x36\xb6\x45\x49\x91\x9a\x63\x02\x1c\x45\x85\x89\x5f\xa8\x2c\x3f\x37\xb1\x7d\xd4\x77\x9b\x17\x27\x2a\x4a\x02\xb6\x1e\x30\xff\x0b\x28\x54\x3b\x4c\x8d\xaf\x92\xf1\x2c\x72\xa0\x6f\x0f\x46\x38\x0f\x94\x27\x33\xc5\x02\x25\x76\x73\xa1\x46\xd3\x39\x3c\xbb\xd8\x29\x6c\x52\x70\xe5\xf3\xf0\xac\x57\x60\x74\xed\xe5\x53\x4d\x2b\x3d\x4a\x56\xa3\x3c\x22\x9d\x34\x87\x9d\x05\xd5\x40\x5a\x87\xdb\x4d\x37\xaa\xf1\x0f\xd3\x38\xcd\x62\x9b\xe7\xce\x4f\x9e\x59\x9b\xf4\x14\x84\xc1\xa9\xdc\x62\x6d\xfe\x14\x4d\x6b\xcc\xd8\xfd\xda\x5c\x69\x1f\x6d\xe2\x98\xe2\x3b\x90\xd0\x20\x86\x3a\x4e\xb2\x7d\x8e\x79\x25\x2e\x85\xbf\xfa\x24\x11\xe8\x90\xd3\xb5\x37\xaa\xa9\xce\x6a\x30\x60\xb9\xc9\xa7\xd2\x18\x53\x24\xf2\x8b\x5f\x87\xa3\xba\x12\x2a\x7e\x05\x01\xc2\xdf\xfa\x4b\x5d\x25\x1c\xf1\xdf\xfe\xa5\xae\xa7\x18\xfc\x45\x6f\xd2\xfa\x57\x7e\x06\x35\x68\xdc\xd7\x16\x2d\x3d\x5c\x1f\x9b\xf8\xe0\x2a\x0f\x63\x3b\xe3\xe1\xf7\xbb\xba\x9e\x56\x75\x49\xef\x21\xcc\xdf\x92\x86\xa7\x24\xb3\xaf\x97\x51\x52\x94\xe3\xea\x33\xdc\xde\xf3\xa5\x62\x49\x9c\xc2\xcf\xc6\x6d\xbf\x43\xbb\x8d\x58\x42\xb9\xdc\x7b\x98\x26\x76\x5d\xdb\x63\x69\xfe\xf3\xb9\xc0\xff\x9d\x59\xb1\xc0\x61\x62\x37\xb9\x83\x6d\x06\xbb\xd7\x8c\xe2\x60\xe9\x03\x2b\x8e\x42\x9b\xe4\x56\x90\xfe\xb2\xb0\x15\x5c\xf8\xe3\x86\x5e\xc4\xc1\x4e\x68\xaa\xa8\xa4\xfa\xbd\x5c\x26\xd1\x0a\x6f\x57\x9b\x4a\x3c\x79\x1c\x8d\xd6\x55\xf9\x1e\xf9\xb6\xf4\x41\x6b\xfb\x41\xb5\x53\x0d\xa2\x7e\x7f\x5d\x41\x29\x8e\x29\x28\xc5\xb1\xda\xb1\x58\x6d\x07\x99\x35\xc5\xb0\x4a\x6b\xbc\x9a\xff\x7b\x0a\x2b\xfc\x9e\x3a\xc2\xfa\x96\xd4\x66\xd2\x24\x07\x0a\x04\x15\x1b\x4e\xe3\x1d\x95\xe4\xdb\xdf\xf4\xb0\x44\x25\x27\xa7\x74\x0b\xb4\x91\x4b\x62\x56\xcc\x9b\xa6\x48\x5b\x2d\x6d\x47\xe7\x91\x9d\xc7\x1a\x12\xd7\x83\xae\x64\x8c\xfa\x94\xd8\xbf\xd1\x57\x48\xc5\x76\xfb\x46\x5e\xed\x0c\xcb\x16\xce\xbf\x0c\x06\xe1\xbe\x44\xa0\xe4\x2d\xeb\xe2\x71\x2f\xcf\x1f\xea\x8c\xc8\x96\x6c\x69\xf6\xa0\xf3\x8e\xa6\x1d\x17\xdb\x20\xc3\x07\x65\xcb\x55\x95\x4f\x42\xa1\x39\x16\xfa\x79\xca\x36\xc5\xc3\x9d\x7e\x2b\x22\xb9\x73\x8a\x84\xc2\x25\x6d\xfe\x87\x46\xf9\xbb\xc2\x24\x7d\xd2\x66\xf4\x88\x5e\xd5\xdd\x7d\x6f\xf2\x55\x05\xeb\xcf\xa2\xb0\x8c\xc9\x18\x79\x86\x36\x14\x4c\xb6\x4d\x65\x75\x7a\x42\x75\xf9\xb8\x3b\xcf\x95\x04\x97\x9d\xc4\xa6\x1c\x0c\xe3\x29\xde\xcc\x39\xad\x1e\x7a\xae\x89\xaa\x3c\xce\x22\x5b\x0d\x5a\x35\x4e\xa2\x82\x5f\x7d\x13\x10\x05\xa7\xa6\xaa\x9b\x72\xe4\x98\xfe\xaa\x21\x55\x0d\xee\xb9\x20\x88\x65\xea\x0d\xbf\x68\x5c\x5a\xcb\x69\x16\x42\xfd\x11\x0d\xac\x3b\x38\xa6\x50\xab\x04\xda\x4a\xf5\xb0\x7d\x99\xc9\x43\xa6\x8b\xcc\xf4\xcd\x7a\x5b\xed\x48\xef\xaa\xf2\xd9\xdb\xf4\xd3\xb1\xe5\x1c\xd5\x16\x03\x6f\x44\x79\x11\x25\x03\x52\xae\xe3\xcd\x9a\x32\x44\x66\xcf\x04\xbe\x81\xfd\xb7\x91\xcb\xba\x1d\xdd\x01\x76\x91\x36\x39\xba\x8d\x57\x59\xbf\xa4\xaa\x26\x7d\x3b\xce\x6c\x9e\x5b\x3c\x75\xb4\x3f\x3f\xa3\x4f\xe7\xeb\xa6\x93\x7e\x14\x25\xd1\xa8\x1c\xa1\x2f\x85\x9b\x3a\xa5\xb0\xd9\x37\x95\x90\xee\xdf\x47\x4a\x88\x6c\xe2\xb4\xaa\x03\xf7\xa2\x7e\x95\xce\x92\xa4\xe3\xd6\x4e\x65\x9f\x8e\x72\x39\xde\x00\x3d\x66\xc7\xca\xad\x3e\x49\x80\x97\x7e\x0c\xaf\x37\xa9\x60\x00\x9c\x85\x93\x13\xbb\x38\x77\xb2\xf9\x85\x56\x69\x15\x81\x18\x51\x19\xab\x86\x4d\xd4\xc7\x7c\x77\xba\x9f\x45\xab\x76\x37\x7d\x06\x98\x9e\x5b\x8a\x04\x01\x2f\x1e\xa4\x43\x50\x9a\x16\x15\x4f\x5a\x75\x4e\x25\xd7\xe1\xcb\xce\x36\x30\xbd\x3a\x71\x9a\x0c\x5c\x2f\x06\x41\xf9\x19\xa5\xfe\x77\x46\x21\xf5\xf2\xb5\x68\xd0\xd2\x1e\x4f\x0a\xc9\x7b\x09\xa1\x36\x47\x06\xff\x7f\x76\x26\x91\x0d\x46\x53\x3f\x7c\x36\x74\x24\xf0\xf4\x43\x16\xab\x00\x4e\xe0\x48\xa0\x52\x99\x7b\x4d\x0b\x32\x23\x8d\x23\x3a\xec\x30\x00\xb0\x17\xc7\xb6\xbd\x85\xb0\x13\x91\xd8\xfe\xee\x3e\xd7\x77\x8a\x46\x63\x5a\xf6\xce\xb8\xd6\xe5\xea\x27\x55\x4f\x70\x98\x96\xb9\xdd\x3f\x55\xdd\x79\xf1\x80\xa7\xa4\x56\x0f\x03\x35\xbb\x5b\xa8\x43\xa0\x3c\x7a\x59\x49\xbc\xa0\xc7\x07\x9c\xc0\xaf\xe1\x69\x20\x64\xf8\x1e\x86\x4c\x20\x09\xbe\xfd\xbc\xf7\xf8\x14\x2d\xe8\x7d\xec\xa8\x58\x47\x3b\x10\x01\x21\x91\x38\xa5\x69\x12\xbb\x95\x31\x78\x51\x66\x49\xba\x6a\x33\x82\x69\x62\xb2\x80\xfa\xef\xac\x67\x17\x16\x78\x86\xd5\xf5\xfe\xab\x6d\x67\x90\x8c\x01\x19\x10\xe5\xbd\xea\xcd\xa2\xc5\xed\x73\x91\x38\x5a\xe5\x8a\x90\xcc\x6b\x96\xed\x16\xb5\x35\x5f\x0c\x39\xda\x68\x0c\x6e\xb2\x81\x2d\x5a\x9e\x62\x72\x84\x86\x57\x9c\x7f\x14\x3a\xcc\xae\x3e\xff\xf0\x4d\xfa\x61\xe6\x2d\x83\x38\xed\x99\x58\xf1\x64\x58\x5c\x12\x64\xd8\x9f\xd0\x4d\x89\x8c\x38\x7d\xa0\x30\x05\x14\xe1\x24\xea\xdb\x0c\x2e\x3f\x5b\x97\x27\x8a\x66\x4d\xc5\x88\xad\xcb\x55\xa4\xb8\x75\xb9\x41\x47\xe9\x40\x47\xf6\xb5\xb6\xf7\xc0\xdf\x06\xa7\x6a\xd8\x36\x7a\xd6\x8e\x05\x34\x23\xe4\x2f\x9a\x58\x42\xf8\xf2\x35\xbc\x71\x99\xe5\xa5\xa5\xac\xdc\x19\x39\xb4\xbc\xa9\x83\x03\x6b\x8e\x4c\xf6\x46\x94\x83\x83\x2d\x0d\x41\x15\x86\x34\x56\xa5\x8b\x61\x44\x6a\xad\x1e\x72\xf0\x91\x92\x03\xe6\x84\x1b\x4b\xf2\x46\x6d\x49\x2e\xcd\x76\x48\x78\x8a\xb5\x74\x1c\xf3\xc5\x55\x27\xfe\xbd\x16\xf5\x3a\xef\x10\x28\xaf\xa5\x43\x93\x24\xa6\xa5\x85\xde\x7e\xa4\x0d\x13\x7f\xd4\xa4\xda\x53\x64\x26\x4a\xe8\x87\x62\xda\x7c\x97\xbe\xc8\x21\xbf\xab\xd5\x22\x0d\x9f\xed\xf1\x16\x05\xa2\xe9\xaa\x75\xbd\x28\xc1\x24\xd0\x77\x0a\x5a\xc1\x1f\x8a\xcb\x26\x4a\x40\xac\x73\xfe\x23\xb7\xa6\x90\x89\x3e\xf7\xff\x93\x26\x12\xe9\xb2\x60\x56\x5c\xd8\x34\x37\x2f\xd7\x8e\xc2\x3c\x2e\x85\xf8\x2e\x52\x8b\xaa\x3b\x37\x51\x98\xb0\xdc\xda\x11\x43\x0b\x10\x95\x22\xac\x97\x8e\x27\x0d\x31\x6a\x39\xc7\xf0\xbc\x94\xdd\xfe\x01\xc7\x73\xf7\x4c\xd9\xef\x3a\x6c\x48\x2f\x32\x79\x5b\xe9\x55\xdf\xd3\xf8\x96\x40\x89\x4c\x9f\x0d\xbc\x24\xb7\x09\xc3\x74\x34\x8e\xa3\x9c\xb4\x5f\x5a\x4e\x14\xfd\x62\xa0\x58\x22\x17\x9b\x58\xa7\xd5\x4e\x95\x47\x83\x21\x0a\xd7\xd8\x47\xae\x29\x47\xdc\x6b\x8a\x0a\x9e\xd9\x38\x1a\x44\x69\x02\x71\x3a\xf1\xb5\xf6\x0c\x93\x0b\xb5\xd9\xf8\x22\x4d\x91\x70\x85\x07\xd5\x99\x2f\xaa\xc6\xf5\xd3\xaa\x64\x97\x84\x71\x99\x0b\x07\x4a\x6c\x8a\xe8\x96\xf9\x85\x5a\x81\x51\xb2\x6a\xf3\xe2\x51\xca\x2f\xb0\xcb\x4d\xe9\xe4\xfd\xb3\x89\xa7\x85\xdc\x42\x18\xc2\x7f\x15\x78\x94\x1f\x80\x7c\x82\x45\x53\x10\x74\xed\xf1\xc1\x5d\x01\x91\x7d\x79\x42\x0d\x87\xc9\xd3\x64\xb7\xdf\x19\xaf\x29\x0d\x81\x19\x94\xbf\x10\x2b\xfe\xa7\x89\x6a\x78\xff\xa7\xc0\x57\x71\x76\x01\x05\x25\x27\xc3\x76\xe4\xe2\x73\x9d\x30\x1d\x8d\xca\x24\x0a\xc1\x6e\x9c\x51\x3a\x39\x3f\xc2\xdd\x62\x60\xb4\xb6\xcc\x94\xcd\xf5\x45\xa5\x51\xda\xb3\x71\x64\x57\x6d\xbe\xdb\x3f\xdd\x1f\x91\x43\x03\x82\x80\xeb\x9a\x5f\xf1\x23\xdc\x34\xff\x8b\x52\x33\xba\x38\x69\x7d\xe3\x57\xdc\xee\xf5\x33\x0f\xd9\xfc\x6d\x98\x26\xe9\x28\x22\x83\x7e\x4f\x45\xe7\xc2\x0c\xbf\x08\x9e\x50\x1a\x9b\x36\x8e\x59\xfd\x56\xa4\x50\x3d\x48\x6b\x73\xf2\x98\xa7\x4e\x12\x1e\x4a\xcc\x47\x98\xe8\x8c\xf5\x70\x54\x91\x7c\x3e\x56\xbc\xa7\x3a\x35\x80\xcc\x79\x57\xd0\x2a\x44\x5e\x77\x16\x63\xc6\x2f\x9a\x0b\x39\x85\xcd\x7a\x26\x59\x51\x90\x4a\x40\x65\xf8\x5a\xd1\x1f\x0b\x9b\x65\x5c\xd4\xc3\xe6\xc0\x52\xbc\xfc\x42\x15\x6e\x0e\x1d\xe6\xb5\x4e\xad\xeb\x6f\x3d\xd9\xf5\x98\xa7\xcb\xba\x20\xfb\xc8\x86\x96\x4e\x8d\xb9\xb3\x87\x94\xfd\x77\x14\xfa\xee\x77\x02\x4f\xfb\x58\x1e\xa9\x1c\x7f\x2b\x50\xef\xd8\x6a\x14\x9b\x1a\x44\xd2\xbe\x02\x8a\xe1\x1f\x2b\x53\xc3\x7f\x5c\x3b\x64\xab\xfc\x35\xb7\x85\xe8\x1b\x4b\x15\xfb\x2d\xbd\xf5\xbd\xa5\x18\x67\x51\x42\x14\x6d\xa7\xda\x3e\x43\x55\x26\xbe\x56\xde\x51\x26\x36\xd9\xa8\x35\x65\x17\x33\x65\x04\xe3\x41\xc6\x71\x6c\xc3\x42\x8e\x6b\x99\x29\x53\x53\xe8\x09\x57\x3c\x62\x3f\x0e\xfa\x58\x3c\x05\x08\xb2\x8a\xe0\x2c\x7d\x85\xc4\xc8\x1e\xea\x61\xd9\x9a\x3b\x5c\x6f\x7b\xe6\xdd\x07\x34\x2e\xc8\xf5\x6e\x68\x9d\xfb\xcb\x35\x52\xe0\x81\x03\x9d\x5e\x9c\xae\xb5\x15\xac\x0d\x82\xd9\x68\xf5\xdd\xa4\x80\x4b\xf0\x43\xf5\x94\xe0\x20\x93\x63\x5a\x4a\x9d\x60\x53\xc9\xe2\x6d\xd6\x8a\x87\xb2\xfe\x58\x19\x2f\xe3\x56\xb1\xe4\x8d\x34\xa3\x24\x27\x54\x87\x59\x95\xfb\xe7\xa4\x26\xc0\xdc\x4b\xdc\x16\xc2\xb3\xeb\x28\x9a\x22\xf2\x42\x70\x2d\x3a\x91\xb4\xad\xf2\x3f\x50\x47\x16\x07\x0d\x0a\x01\xfc\xee\xba\xa7\xd2\x1c\x19\x57\xaf\xb5\x3d\xc4\xea\xe4\x94\x7a\x28\x3d\x0c\xb1\xbb\xfb\x9a\x92\xa2\xe8\x99\x2c\x33\x79\x4e\x1d\x20\xba\x2f\xd1\x6e\xf3\x19\xeb\x59\x55\x03\x1a\x97\xd9\x38\xcd\x6d\x8e\xa6\x29\x10\x7c\x77\x14\x1c\xeb\x8c\xf2\xab\xd8\x54\x62\x51\x09\x36\x5b\x02\xaf\x03\x52\xf2\x63\x2d\x3e\xf9\x5d\xed\x79\x8e\x8a\x8d\x90\x42\x15\x94\xf6\xb8\xe2\xa7\x8f\xa2\x3c\xaf\xfe\x37\x1e\x47\x33\x2d\xb7\xab\x42\xf2\x07\x30\xe3\xf3\x4a\x4d\xec\x88\xc6\x1f\x9f\xaf\xcd\xa9\x2a\xc0\x8b\x0d\xaa\x26\x2c\x52\xa6\xb4\xd3\xeb\xdd\xe3\x5f\xe8\x94\x45\x14\x93\x44\x34\xe6\x21\xf6\x80\x4d\x5d\x5e\x83\xc9\xb5\x34\x7b\x1b\xe2\xbc\xb1\x35\x2b\xdb\x0d\x94\xd5\x19\xfe\xa4\xeb\x56\x15\x59\x29\x7d\x2d\xc7\xfc\x7e\x44\xfe\x75\x57\xeb\x5b\x07\x3d\xc6\x67\x61\xc1\x8b\xac\x39\xfa\x37\x1f\xf7\xc8\xaa\xbe\x84\x8d\x27\x16\xcb\xdb\xb5\x89\x54\xc5\xf9\xc3\x34\xee\x93\xf3\xb2\xd8\xc6\x79\x08\xfd\x55\xba\x29\xb4\xee\x8e\xea\xfa\x59\x38\x1a\xb7\x95\x2a\x2b\x9f\x4a\x48\x05\xef\x2b\x50\xe8\xae\x6e\x03\x02\x7a\x6d\x18\x8d\xf2\x28\x34\x31\x17\xfb\xb8\x58\x49\xb7\x23\x85\x4b\xd9\xa3\x8a\x61\x9a\xa5\xe5\x60\x18\xaf\xcf\xd4\x12\x33\xe4\x73\xbb\xbb\xba\x7b\x49\xeb\x4c\xf4\x16\x1a\xe2\x65\xca\x87\xe9\x8e\x75\x9b\x4c\xd5\x08\x1e\xed\xfa\x2e\xc3\xce\x0d\x89\x28\x43\x13\x8f\xda\x3e\xdb\xfe\x97\x81\xaf\x12\xdd\x55\x1d\xe6\x7b\xaa\x3e\x93\x97\xd9\x2a\x09\x7e\xb8\x89\x05\x29\x17\xc1\x9c\x28\x91\x82\xbb\x5a\xfd\xcc\xac\x44\xc9\x60\x17\xcd\x5f\xc1\xe8\x3c\xec\xb8\xac\x06\x01\x01\xd1\xe7\x14\x85\x61\xbb\xf8\x49\xed\x68\x7a\xae\xd3\x4b\xd7\x8c\xc8\xa0\x8a\x56\xb7\x42\x92\xb7\x37\xb6\x0f\xd5\xdc\x5c\xc7\x54\xfb\x9f\x21\x2b\xf7\xc3\xb3\x9c\x45\x9d\x54\xea\x3d\x77\xa7\xa8\x7a\x0d\x1c\x99\xb1\xc9\x4c\x1c\xdb\x78\xc6\xaf\x33\x4e\x68\xf0\xa6\xcf\x15\xcb\x9a\x85\x64\x05\xfc\xa9\xa1\x6d\x7d\x1b\xe7\xc4\xa9\x14\x1f\xfd\x96\x13\xa9\xbd\x3f\xf1\x5e\x25\xa8\xdc\xe1\xd4\x64\xf5\x49\x94\x05\x2f\x28\x2e\x76\x68\xb2\x34\x8e\x12\x3a\x45\xb7\xe0\xbf\xbe\x75\x3f\xd8\xaf\x47\xdf\xee\xa3\x9e\x16\x1e\xee\xd6\x44\xc9\xdd\xcd\x80\xa5\xea\xcc\xa3\x1d\xc6\xf7\xc4\x44\x89\x99\xb5\x37\xd4\x3c\x51\x5b\xe5\x09\x6a\x73\x2a\x25\x5e\x41\x87\x32\x80\x9e\x9b\xb1\x74\x47\xd0\x74\x78\xa4\xeb\xa5\xf5\xef\x4f\x7e\xae\xf6\x50\x0b\x1b\xdb\xe9\xe0\x16\xdb\x0b\x76\xcf\x73\x0a\x8b\x71\x6e\x4a\xf0\xaf\xca\x51\x3d\x65\xe6\x6f\x61\x26\xf2\x8b\x29\x3c\x4b\xb6\x9e\xb7\x54\xf9\x8d\x9d\xfa\xf8\x45\x53\xd1\x30\x4f\xc3\xc8\x16\x5c\xac\x75\x4b\xd5\xcd\xb9\xcf\x03\x85\x4b\xf8\xd4\x8b\x5e\x45\xcb\x05\xcd\x31\x11\x80\xf6\xdd\xca\x1d\xb4\x64\x50\xa5\xbe\xa3\x98\xdf\x83\x34\xeb\x99\x70\x68\x57\x77\xb5\xe6\xe6\x5c\x55\x16\xdd\xfb\x29\x8a\xae\xdc\x16\xdd\x06\x53\x81\x26\x53\xbc\xa0\x7a\xe9\x63\xbe\xba\xc8\x9c\x28\x2e\x16\xec\x75\x25\xf8\x7d\x3d\xd0\xfa\xc2\x2b\xb6\x1c\xb7\x94\x04\xe3\xa7\x1a\x4c\xf2\x69\x53\x20\x6c\x13\x56\x38\x6a\x6d\xe7\xa7\x08\x20\x43\x03\xd6\xb8\x10\x8b\xaa\x82\x2c\x37\xfa\x0a\xa1\xcc\x3e\xb3\x5d\xd1\xba\x73\x78\xf6\x95\x9f\xaa\xa6\x9b\x78\x92\x78\x06\xc9\x67\xc8\x4a\x24\xa9\xf2\x55\xd7\xef\x04\xca\x51\xee\x2b\x68\x7f\x32\xf0\x91\x62\x2c\x8c\xd7\x93\x1b\x74\x5a\x8b\x1a\x5c\xeb\xdb\xdf\xe4\x32\xe1\xc7\xa8\xa2\xe3\xb1\x5d\x85\xae\xb3\x63\xc5\xff\xd2\xcb\x5a\x44\x46\x98\xa5\xdf\x41\x01\xd1\x41\x07\x1c\x4a\xe4\xa9\x6e\x75\x1c\x09\x17\x57\x2b\x7b\x22\x0b\x15\x5b\xfa\xb6\x33\xd5\x7d\xfd\x2f\x76\x7d\xcb\x74\xf7\xae\x0d\x45\xc4\x7b\x84\xd6\xa3\xab\x2a\x54\xe7\x83\xdc\x70\x95\xb8\xe1\x77\xbd\x57\x7b\x4c\x73\xf3\x64\x05\x56\x1d\xc6\x45\x5b\x25\xc5\xa8\x23\xa1\x25\x05\xad\x04\x01\xbe\xf9\x9e\xc0\x72\x1a\xc7\xc4\x33\xdf\xd3\x9e\xb2\xfd\x75\x95\x0e\xb8\x74\xe2\xc6\xff\x5c\x6f\x1e\xec\xc9\x83\x71\x67\xff\x64\xe4\x69\xd7\x94\x69\xdd\x4c\xb7\x1e\x5f\x2c\x76\x9e\xfd\xaf\xff\x1a\x78\xed\xce\x3b\xa4\xfa\x5c\xd1\x46\x54\x28\xe2\x1b\x6a\x7a\xe5\x61\x56\x16\x51\x02\x4b\x5a\x11\x1c\xa5\x67\x24\x8a\xa3\xdb\xd9\xc2\x4b\xb3\x9d\xd5\xfc\xf9\x96\xc7\x67\xc2\x29\x51\x28\x0d\x0d\x36\xa9\x03\xc1\x94\x72\x31\x40\x3b\xd9\xd7\x9d\x18\xa8\xab\x67\x8d\x14\x91\x9a\x20\x4a\x1e\x45\x1c\xf6\xdb\x8a\x1b\xf1\x8e\x26\x9d\x5e\x9f\x0a\xaf\x1e\x9f\xa6\x22\xee\xf7\x20\xe8\x2f\x26\xdb\x30\x8e\xf3\x9c\xf4\x1e\x85\x74\x01\x7e\xe7\x1d\xec\x20\x5c\x60\x05\x30\x85\x69\xf3\xa8\xa2\xbb\xb6\xca\x92\x4c\xb6\xe3\xd0\xb6\x40\xce\xc2\x07\x9f\x88\xa7\xf8\x5e\xc1\x1d\x3a\xb9\xf1\xee\x53\x98\xeb\xaa\xec\x20\xcc\xd6\x41\x62\xe3\x38\xca\x55\x67\x91\x0d\x20\x85\x44\x5a\xdf\x8c\x0f\x76\x7a\x99\x5d\xb3\x19\xce\x04\x14\x3e\x51\x07\xe7\x6b\xd5\xc4\x2a\x6c\x38\x4c\xa2\xd7\x4b\xa0\x03\xdc\x86\xf4\xe2\x01\x6f\x49\xf8\xb2\xa3\x1f\xe1\x1e\xbd\x55\x83\x32\x8b\x2c\xb3\xe4\x51\x65\x7f\x78\x7e\xfa\xc0\x98\x3e\x4a\xaa\x85\xec\x94\x74\xbc\x5f\xd8\x44\xb1\x77\x21\xc1\x88\xfc\xe6\x81\xf7\xe3\x0c\xae\x69\xb0\xfd\xb9\xda\x0c\xaa\x82\xda\x70\x68\x39\xdc\x61\x5a\x5e\xa0\x8e\xc6\x4b\x0a\x1b\x36\x4e\xb3\x02\x06\xf6\x8b\x3c\x59\x4e\x2b\x3b\x99\xb6\x82\x48\x9c\xa6\x01\xc1\x2e\x7a\x61\xe2\x35\xe0\xcd\x28\x4d\xfa\xb4\x7e\x9a\xec\x68\xfc\x20\x67\x36\x4c\x07\x49\xf4\xa6\xdd\xa5\x60\xab\x00\x96\x39\x49\x62\x2f\x8d\x7f\x61\xda\xa5\x94\x36\x57\x69\x66\x48\x13\xa8\x67\x8a\x70\x38\x33\x15\x9d\x39\x55\x48\x28\xa7\x72\x6c\x81\x14\xe5\x98\x8a\xe0\x87\x65\xc6\x9a\x2d\x0e\x9c\xa4\x1c\xf2\xfc\xf1\x46\x88\x24\x18\x69\x32\x57\x4a\x11\x1f\xdf\xd3\xd0\x8a\xff\x30\x51\x62\x43\x77\xdc\x08\x8f\xa2\x7e\x12\x0d\x86\x70\xb0\xc0\xee\xf7\x55\x65\x19\xb8\x9b\x0c\xc9\xd0\x02\xbd\x3b\xd5\xa0\x9c\x7c\xcd\x95\x29\x46\x23\x9b\x85\x91\x89\xa3\x37\x5d\x73\xaf\x49\x24\xb2\xa1\x21\x38\xc8\x4c\xe2\xe8\x3b\xb8\xbb\xff\x18\xa8\x49\xf9\x1f\x55\xae\x9b\x5b\x93\x11\xbd\xc9\x57\x35\xae\x2b\x55\xad\xeb\x0a\x2b\x3b\xce\xec\xd8\x64\x56\x53\x6d\x3f\x51\xdb\xcd\x27\x35\xc2\x0a\xec\xb1\xf3\x22\x2b\x59\xa0\xca\xed\x86\xa7\xb5\x02\x01\x29\x01\x39\x1b\x16\x3b\x1a\xc7\xe9\x3a\xc0\x9a\xae\x8b\x0d\xf2\x20\x5f\x37\x04\x2f\x2f\x74\x96\x4d\x36\x72\x65\x0b\x51\x65\xa0\x2f\x11\x59\x86\x87\x79\x76\xf4\x6d\x18\x47\x89\x03\xf3\x8b\x57\xb8\xda\x40\x98\x9a\x81\xa8\xea\x62\x93\x86\xb5\xc9\x8b\xb4\x64\xe2\xb4\xab\x60\x90\x20\xb3\x5c\x2b\xc6\xfe\xc8\x0c\x97\xd3\xf2\x4d\x35\x1c\x37\x82\x29\x41\x06\x0f\x5d\x35\xf9\x38\xca\x38\xca\xf5\x45\xb5\xdf\x0e\x7c\xb1\xed\xb7\x1b\x36\x82\x57\x3a\x79\xe9\xe6\x8c\x80\xd2\xab\xb7\xf0\xb5\xda\x63\xc7\x59\xda\x33\xbd\x78\x7d\x3f\xed\xda\x2c\xca\x8c\x78\x01\x67\xdb\x15\x0d\x00\x39\x4e\x68\x1a\x47\x98\x72\x2c\x86\xfb\x13\x0f\x23\xda\x41\x4d\x79\x04\x2b\x33\x8a\xf6\x05\x37\x7e\x2c\xf3\x77\x08\x63\xc9\x9f\x83\x03\x47\xf4\xa0\x69\x31\xb0\x9b\xfe\x44\xc9\x43\x5e\x9d\x7c\x65\x9b\x5e\xc8\x62\xe7\xe7\x51\xdf\x92\xe3\xa9\xfa\x5e\xe9\x05\xfa\xd1\x7e\xcd\xae\xd9\x38\x5b\xc7\x5e\x87\x58\xfb\x7d\x35\x9b\xa0\xe7\x36\x05\x1c\xc5\x7d\xdc\x55\x0d\x86\x2a\x1d\xc3\x63\xc0\x98\x72\x71\x47\x95\x22\x7e\x3c\xf9\xd9\x87\x4c\x2f\xd3\x5f\xb5\x59\x01\x43\x9f\x96\x93\x73\x44\xb8\xcf\xd7\xda\x6b\xc5\x8c\xb1\x14\xb5\xb9\xb0\xa8\xcd\x35\x44\x19\x99\x5d\x7d\xbe\xad\x7b\x84\x9e\x62\x7c\x54\x4b\x00\xdf\x76\x20\xb3\xd7\x6c\x5e\xc5\xe0\xb4\xcf\x3a\x47\x49\x07\x9d\x38\x37\x95\x0a\x85\x36\x45\xa4\x81\x00\xf7\x7a\xa0\x8a\x67\x47\x71\xcc\x61\x85\x9c\x9a\x7c\x55\x29\xf8\xe4\xd5\x72\xca\x63\x93\x30\xd5\x9d\x43\x3e\x65\x10\xf1\xe7\x6a\x07\x0a\xcb\x2c\xb3\x49\xb8\xce\x82\xe1\xce\x44\xca\x71\xf3\xdf\x9e\x28\xef\x3f\x00\x0e\xb1\x39\xed\xee\x7a\x5d\x63\x18\x2a\x20\x06\x61\x4a\x00\xa2\x84\x5b\x08\xfd\xf9\x63\xb5\xe0\xcd\xe5\xda\xde\xf9\xea\xab\x9d\x30\x8e\x6c\x22\x16\x63\xaa\x2f\x22\x33\xf4\x73\x75\xb6\x8d\x33\x9b\xdb\xc4\xd9\xfd\xb9\x30\xa9\x9a\x22\x68\x27\x6c\xaa\xd6\xc2\xa6\xb2\xf5\xbf\xa0\xe2\xe6\x5e\x96\xa6\x2b\xa4\xf6\xe1\x71\x41\x17\xb4\xe9\xcd\x05\x55\x11\xcc\xc7\x16\x67\x82\x58\x36\x39\x40\xf6\xe1\x59\xd7\xba\xd3\x40\xc0\x77\xf5\x69\xf5\x6e\x0d\x9f\xfa\x5c\x27\x2f\x7b\x79\xd4\x57\x87\x8c\x53\xc6\xf0\xde\x0f\xaa\x17\x64\xf3\x22\x1a\x99\xc2\x92\xc6\x0f\x32\xf6\x33\x78\x3e\x4c\x78\xa1\x6d\x41\x56\xb3\xd4\xf7\x18\x01\x9e\x0c\x66\x14\x14\xf4\x22\xce\x4e\x44\x4d\xa8\x9f\xe1\x19\xff\x15\x3a\x2a\x51\x64\x7b\xa6\x89\x5b\xdf\xcb\xd2\x9e\xcd\x06\x53\x47\x39\xee\x53\xce\xf5\x86\x82\x7a\x9c\xe6\xc5\x0c\x6d\x73\x42\xa3\xa0\x59\x82\x14\xe4\xa8\x62\x2f\x5c\xd2\x8a\x26\x37\x83\x87\x2d\xec\xbc\xb0\x36\x46\xe1\xaa\xad\xb4\x19\x20\x6c\x8a\xdf\xf1\x00\x1b\x0a\xb8\x0b\x9b\x4a\x8a\x66\x2d\x2a\x86\x69\x59\xf0\x94\xc7\x28\xdf\xd7\x42\x9d\x08\x38\xb0\x5d\xfd\x00\x71\x90\xb4\x27\x95\xa0\x1e\x8e\x45\x7c\x2f\xd4\xfb\x04\x1e\x42\x73\x9e\x3f\x57\xf3\xd2\xbe\x13\x78\xf9\x8d\x9e\xc9\xed\x08\x93\xbd\xfa\x03\x57\x5f\x75\x14\xf2\x8b\x4d\x86\x71\xe8\xdd\xb4\x54\x60\xcf\x5a\x22\xd2\x12\x69\xf2\xa5\x4b\x33\xbb\x2a\x98\x4e\x17\x2f\x2e\xcd\xaa\x86\xcb\x7f\xee\x8d\xb6\x57\x6d\x3e\x53\xcd\x2e\xf1\xa2\xa5\xd9\xc5\x2f\x94\xb4\xef\x0d\x85\xd9\xbb\x51\xc3\xc9\x57\xb9\xa1\x29\x8a\x2c\xea\x95\x85\xe0\xf7\x64\x1d\x2a\x15\x49\x6d\xd2\x12\xa6\xc9\x9a\x59\xa7\x26\x38\x8e\x2c\x94\xa5\xf8\xba\x49\x40\xaa\x88\xc6\x18\xbb\xa6\x96\xb6\x3a\x64\x6d\x6c\xfa\xd6\x94\x08\xc8\x30\xb6\x9f\x6b\x4d\xf1\xcf\x95\x2d\xd5\xaa\x4d\xec\x9b\xa5\x8d\x0d\xc7\x23\x4a\x59\x48\xe8\xa5\x57\x69\x27\x41\x05\xe2\xdd\x86\x00\x70\x91\xb3\x92\x96\x2f\x2f\xfd\x60\xa2\xce\xbf\x1f\xd4\x22\xa8\xa5\xd9\x4e\x34\x48\xd2\x6c\x9b\xeb\xdc\xff\x4e\x43\xcc\xd7\x9e\xde\x1b\xe5\xa1\xc9\xfa\xb6\x4f\xe5\x2b\x95\xc1\x1c\xf0\x32\xe3\xd5\xbd\xa1\xac\x79\x45\x29\xc6\x8e\xcc\x6b\x69\xf6\x54\xb5\x41\x60\xa3\xde\xd9\x55\x6c\x22\xf6\x65\x45\x54\x70\x1b\x51\x31\x56\xea\x7f\x44\xb2\x89\x6f\x3a\x8e\x35\x85\x6e\xf3\x1d\xda\xf7\xf0\x57\xff\x7c\xe2\x28\x59\xbf\xfb\xf4\x86\xde\x84\x21\x0c\x28\x20\xa4\xea\xf9\xa2\xec\x08\xa2\x9f\xe8\xb5\xd0\x22\xe3\x7f\x40\x04\xc4\xdf\x8e\xa1\x03\x46\xec\xf3\xc0\x3b\xf4\x6a\x5e\xd4\x4c\xf7\x69\xcd\x37\x0a\x4b\x62\xe9\xb4\x95\x66\xc0\xf7\x15\x11\x02\xfd\x7e\x2c\xe8\x5b\x2a\x56\xc9\xad\x0f\x94\x91\x6a\x7e\xa2\x4a\x00\x75\xf7\x15\x12\x1c\x35\x59\x94\xa0\xd2\xc0\x6e\x0e\x5a\xd3\xf3\x7c\x13\xf8\xa6\x97\x99\x01\x2f\x09\x4e\xec\x02\x1f\x8d\x5c\x50\x65\x79\x33\xa8\x0e\xe6\xbd\xfe\xe7\x3c\xa0\xea\x11\x10\x29\x9f\x04\xbe\x11\xcb\xbb\x2f\x2a\x2d\x5f\xe2\x00\xda\x62\xe5\x61\x71\x06\xa0\x2d\x89\xdf\xaa\xa4\x01\xd8\xc3\x47\x7d\xce\x41\x7e\x0a\x37\xdc\x8c\x2b\x93\xd0\x24\x49\xc4\x9d\x13\x59\x60\x1e\x9a\x74\xa1\x99\x26\x63\xfb\x51\x91\x66\x91\x89\x1f\xda\x7a\x57\xc8\x48\x1b\xc7\x4f\xf8\x2e\x33\x17\x1a\x10\xad\x9c\xc7\x74\x70\xb6\xfd\x3e\x22\x62\x5e\x89\x78\xf8\xab\x1f\x7f\x52\x87\xf4\xbf\x47\x0b\x16\x68\xb6\x4f\x95\x5d\xc2\x6e\xda\xe5\x51\xe8\xbd\x42\x07\x27\xc6\xe4\x26\x4b\x9f\x21\x5a\x66\x8f\x3d\x24\xfe\x0f\x10\x8f\xa3\xd2\xce\x11\x32\xca\x38\x57\x6a\xdd\x08\x39\xa9\xd2\xe5\x65\xe2\xd3\xb1\xec\x34\x7e\x99\x68\x50\x37\x7b\x3c\xf4\xd2\xfe\x7a\xdb\xdb\xca\xa3\x4e\x8b\xe4\xfd\xae\xf2\xbf\x39\x35\xf1\x8a\xea\x7d\xdb\xaf\xf2\xbc\x5e\x6c\xa7\x4c\x28\x4f\x2a\x67\xe1\x93\x6a\xa3\x1f\x46\xc8\x51\xab\x21\x43\x89\xe5\x18\x7e\x18\xbf\xa8\x45\xbb\x87\x5e\xaa\x42\x45\x90\x68\xb4\xdc\x89\xc8\xa0\x34\xa9\xf1\x12\xc7\xa1\x3a\x78\xaa\xb9\x87\xc6\x12\x0a\x1d\x7c\x5d\xab\x20\xfd\x02\x40\xdf\xa1\x98\x2f\xe3\x08\xdd\xa2\x7b\xe0\x6b\x6f\x13\x3e\x34\x90\x9e\xf3\x66\x15\xa4\x72\x2a\xc6\x15\x3e\x73\xee\xdb\xb0\x0a\x13\xb8\x9a\x2d\x1c\x4d\xa5\x4c\x7f\x56\x6d\x02\x45\x9a\xa5\x49\x91\x12\xd8\x06\x55\xa0\xef\x03\xd1\xef\xd4\x84\x55\xf7\x97\xe6\x22\x16\xc1\x47\x13\x85\xf1\x12\x8d\x7a\x21\xe5\x3e\x53\x93\x75\x7e\x79\xf1\xeb\x7b\x3c\xec\xfe\x7c\xa0\x28\xef\x7f\x97\x72\x22\x27\xdb\xe3\xfc\x1d\x6e\x68\xd2\x04\x2b\xa3\xf3\x0b\xfa\x85\x5b\x37\x9b\x0e\xff\x81\x4d\x4a\xda\xa1\x1e\x82\x14\xff\x9a\xf2\x60\x25\xb0\x4c\x56\x8e\x0b\x46\x96\x37\x61\x7a\x64\xf8\x07\x26\x4a\x28\xe3\xf7\xd0\xfc\x77\x34\x34\xff\x9d\xa6\x0e\x78\x61\xe3\x98\x66\x90\xa3\x1e\x57\x23\xcb\x2f\xb6\x4b\x52\x1e\x9e\xed\xcc\xcd\xfd\x05\x6f\x5b\x88\xc2\x0b\x1e\xc3\x8d\x60\xca\xff\xe7\x45\x09\x24\xc5\x85\x8e\xb1\xdb\x81\xc2\x6f\x1d\xc3\x97\x39\x96\x87\xa2\x3e\xe9\x99\xcf\x72\x25\xe8\x9f\xdd\xc5\x3e\xe4\xaa\xf0\x4e\x12\x00\x29\x37\xdb\xef\x42\xc5\x02\xdb\xc0\x71\x44\x63\xc8\x77\xf6\x74\x95\x5e\xc4\x75\x65\x1b\xf7\x47\x38\x52\xf1\x59\x5b\xd8\x9b\x01\x89\x3e\x8a\x99\x80\xaf\x3f\x82\xd0\x13\x33\xfa\x1a\x21\xb8\x58\xae\x96\x9a\x20\xa2\x1b\xb8\x3d\xab\x90\x8d\x27\x4a\xfa\xf6\x0d\x68\x93\x61\xf1\x3c\xb2\xe1\x77\xe2\xfd\x94\xbd\x09\xd4\x4a\x1d\x82\xe2\x8a\xe2\xd9\x4e\x53\xc8\x3b\x1f\x4e\xac\x65\x29\x32\x8a\x57\x5c\xba\x4c\x23\x8c\x1e\xdc\x59\x48\x3e\x48\xf2\x5c\x7d\x1c\xff\x43\x03\x88\xfe\x60\x67\x39\x5e\x17\x4c\x90\x58\x92\x2b\x0c\xfa\x71\x97\x3f\x0f\x4c\xd2\x1f\x46\x1c\x9c\x89\x46\x46\x35\x17\x14\x54\x4d\xf0\x2c\xd7\x1b\x25\xc2\xcd\xf2\xb2\x89\x32\xc6\xe4\x89\xf8\x01\x3e\x0f\x83\xbb\xbf\xab\xbc\x00\x98\xd6\x8c\x05\xdf\xde\x68\x62\x1f\xc3\xeb\x9a\xc3\x78\x01\xc9\xb5\x94\xc4\x8c\xc7\x8d\x0d\x62\xfb\x48\xcb\x19\x28\xdc\xd2\xd3\x73\x73\xa2\xca\xc1\x28\x01\x8b\x7f\x37\xfd\x02\xd7\xb1\xfa\xe5\x79\xc7\xf9\xf2\x12\x12\x60\x69\x8b\x25\xea\x53\xaa\xfe\x9b\x17\x06\xae\xcd\x32\x44\x68\x20\xf1\xb5\xd3\x41\xdb\xce\xd2\xc6\x39\x8c\x20\x9f\xaf\x27\x7b\xf9\x6f\x87\x69\xb1\x47\x8d\xca\x6d\xfa\x4d\x22\xff\x5d\xfd\x26\xad\xf0\x46\xeb\x72\xe7\x93\x1b\x4a\xfa\xea\x3c\xf2\x23\x09\xad\xdd\x86\xfa\xdf\xfc\x54\x77\xfb\x9e\xf1\x5c\xa7\x18\xda\x8c\xc5\x76\x24\xd5\xac\xd6\x01\xc5\x3a\x3f\xf3\x8c\xaf\x76\xfd\xdc\x93\xca\x5b\xd0\x16\xe1\x8c\x27\xa1\xb4\x49\xbe\x1a\x11\x24\x12\x1f\x27\x61\xa2\x35\x13\xeb\x95\xbc\x79\xc2\x74\xaf\x4c\xd5\xd9\x55\x06\xbd\xa9\xdc\xe1\x47\x21\xfa\xdb\xa8\x37\xbe\xad\xa0\x11\x6f\xbb\x34\xdc\x15\x2c\x00\x68\xc3\xb0\xde\x51\xa5\x41\xee\x5d\x60\x28\x4f\xd7\xa0\x24\x73\x73\xe4\xb5\xab\xec\x1c\x30\x9e\xbf\x4f\xb3\x8d\xaf\x95\xad\x84\x79\x7e\x20\x76\xae\xd0\x26\x7a\x47\xcb\x2c\xbe\x53\x17\x0b\xad\xa2\xb6\x24\x75\x09\x9b\x0b\xc0\xab\xc1\x97\x5c\x40\x1a\xe8\xf9\x4a\xc4\x18\x48\x76\x34\x0b\x3c\x90\xfa\x0a\x3d\x53\x2e\x5a\x6a\x64\x57\x16\xa5\x59\x54\xac\xb7\x75\x1b\x69\xe2\xe1\x9c\xe8\xbc\x63\x3d\x5c\x76\xe1\xe7\xd0\x9a\x3e\x95\x88\xf9\x5e\x44\xcf\x42\x59\x47\x9d\x6a\x28\x4a\x77\x96\xa3\xc1\xb0\x70\xe5\x01\xac\x8d\x2b\x5a\x08\xf7\xfb\x93\x96\xf2\x6c\xd8\x1e\xa9\x3f\xd7\x09\x4d\x1c\xdb\x3e\x01\x85\x1d\x79\x48\xf1\x41\xe8\x59\x89\xc5\x29\x6d\xd4\x53\xc9\x98\xe8\xb0\x78\x8c\xfc\x15\x05\x8b\x27\xfc\x76\x1a\x73\x97\x00\xe9\x35\x47\x9a\xfc\xa2\x41\x0f\xf5\x85\x4e\x94\xd8\x37\xc6\x71\x14\x9a\x5e\x0c\x4b\x3a\x94\x7a\x6e\xe3\xb6\x30\xc5\x2f\x7a\xbd\xa4\x3f\x3d\xda\xe8\x36\x1a\xda\x38\x2e\x63\x93\xb5\x15\x17\x89\xc6\x02\x15\xbf\x2d\xc5\xbb\xbf\xa8\x7d\xd2\xd2\x78\x95\x23\x03\xf1\xd5\x52\x31\xcf\x05\x8f\xdb\x4c\x8b\x68\xd5\x14\x56\xd7\x87\xdf\xc7\xbd\xf1\x0b\x55\x8b\xc9\x5f\x2f\x6d\x1c\x0e\xe9\x53\x19\x89\x13\x68\x49\xb6\x3a\xc1\xaf\x33\x34\x49\x9f\x55\xbc\x9c\x3a\x62\xf5\xe1\x88\xea\x7f\x1f\x63\xc1\xb0\x4d\xa5\xea\x6c\x57\xd6\xb1\xf0\x70\x00\x6e\xe0\xa0\xd7\x42\xa2\xa2\xed\x2a\x33\x6f\xd5\x84\x66\x35\x8a\x99\x05\xee\x9e\x7b\x75\xcf\xfc\x42\x45\xd4\xa1\xc9\x4c\x91\x43\x0f\x08\x4d\xb3\xcf\xd1\xb2\xe5\x17\x2e\x72\xea\xd9\xa1\x71\x64\x55\x84\x30\xa7\x74\x39\xe2\x54\xb0\x2d\x10\x9a\x3f\xd4\x79\xf6\xd9\x47\xd4\x9a\xd9\xb9\xe1\x03\x62\x94\xaa\xc4\x36\x9c\x3e\x46\xf5\xf8\x17\x7d\xf5\x77\x69\x76\x8b\x1d\x1d\x90\x9b\xb2\xff\x8d\x90\xfc\x7c\xb3\xba\xda\x01\xfa\x8f\x60\xad\x21\xf4\x80\x4c\x8d\x94\xb0\x5a\x5a\x86\xb7\xba\x41\xe1\x35\x54\x8f\x8d\xaf\x69\xff\x83\x74\xc5\x07\x13\x6f\x05\xf4\x41\xa0\x84\xc7\x6e\xa8\xd2\xc4\xd0\x9a\x0c\xed\x3a\xdc\xd5\x1f\x05\x6a\x5d\x20\x0b\xe7\x7f\x98\xa8\x35\xf2\x89\xdb\x23\xc2\x68\x35\x8a\x23\xc3\x7d\x1a\x6c\xef\x67\xb5\x74\xd5\x59\xc5\x1d\xec\x47\x83\xbc\xad\xba\xe9\x4c\x29\x75\x3c\x9f\xea\x09\x62\x8f\xbc\xa1\xe1\xa5\x76\x64\x73\x6e\x87\x23\xbc\x3b\xa1\x84\x82\x4e\x28\x77\xc5\x30\xb3\x76\x4c\x7c\xd7\x2a\x60\x44\xd4\x03\x81\x30\xc8\x6d\x7c\x9f\x46\x87\x2d\xcf\xdd\xa9\x6a\x47\xb9\xa2\x0e\x5d\x50\xf6\xe5\x17\xa6\xd3\xfb\xa7\x54\xf7\xbb\x5f\x86\x51\x32\xd8\xad\x16\x3c\xa6\x00\x92\x5a\xd6\xca\xe5\x17\x88\xce\xc4\x69\x86\x76\x78\x91\xa6\x55\x94\x84\x23\x53\xb0\xad\x3c\x4a\x66\x50\x25\xc5\xcf\xfd\x31\x62\x55\x7e\x41\x1b\x8d\x73\x53\xaa\x86\x4d\x72\xdc\xc7\x55\x9b\x9f\x62\xa3\xea\x47\x61\x77\xf9\x09\x1e\x2d\xbf\xa8\xad\xef\xf9\x43\x9d\xb1\xcd\xa2\x98\xe3\x29\x27\x44\xec\x35\xbb\x15\xc5\xad\x57\x8a\x4a\xb7\xec\xa0\x2d\xa7\x97\x79\x67\xf2\x68\x54\x1d\xb9\xcb\x7f\xbd\xf3\x37\xf6\xb4\xe6\x64\x4c\x7e\x8a\x42\x06\xa9\x61\x2a\x9a\xcd\x0f\x27\x4a\x01\x6e\xdf\x86\xc7\x18\xdf\x56\x5d\xa0\xbd\x1b\x0a\x8b\xfe\xa5\x8a\xec\xac\x19\xed\xd5\x25\x70\xc5\x16\x7c\x77\xe2\xd8\x01\x7f\xe7\x99\xae\x02\x7b\x3c\x50\x26\xa6\x33\x5d\x55\x05\xde\xbb\x41\x83\x29\x4a\x84\xf4\xdc\x84\x4f\x4c\x79\x8b\x18\x91\xd2\x43\x14\xec\xf7\xb6\x5d\xe3\xc5\x03\x9d\x5f\x7a\xb9\xe5\xc9\x6d\x9f\x2b\x2a\xf2\xe7\xaa\x55\x5e\x44\x03\x51\xf5\x70\xda\x28\x8e\x48\x77\x53\x29\x3d\x2f\x9b\x24\x5c\xd7\xe8\xb1\x40\xab\xb7\xd7\xce\xcf\x85\x85\x4e\x3e\x32\x19\xa8\x09\x90\x62\xbb\xa1\x54\x75\x6f\x34\xc4\x5b\x9d\x30\x1d\xb9\xd8\x46\x62\x2c\x25\x32\xb6\x59\xab\x32\xbc\x78\xa0\x13\x25\x2c\xb5\xe3\x9f\xd8\xc5\x29\xc7\x48\xb7\x9d\xf7\x6c\x31\x5c\x4e\x33\x08\xac\x49\x09\xe6\xd7\x03\x3f\x89\x7f\xbd\x76\x5a\xbe\x3c\x7f\xa8\x63\x7a\x26\xe9\xa7\x09\xc3\xb0\xf1\x4b\x6e\x06\x5e\x31\xe0\xdc\x44\x01\xbf\x8f\x38\x42\xd8\x28\x4a\x0a\xc2\x30\x88\xac\x8a\x32\x7a\x12\x85\x27\x09\xcb\x7c\x0d\xe3\x1f\xbb\x2d\x6d\x6c\x8b\x2c\x0d\xd3\x6c\xcc\x61\x0f\x42\x10\xc6\x67\xf1\x8b\x06\xc1\x93\x17\xaa\xe5\x53\x94\x39\x6d\x55\x5e\xc7\x0c\x33\x5d\x89\x9a\x49\x8b\xbb\x6f\xc7\x45\xae\x28\x35\x08\xf9\xf9\xba\xf6\x50\xe7\x0f\x75\xf2\xb2\x1a\x41\x5f\xba\xbd\x1e\xf8\x8a\x88\x36\xde\x0a\xe3\x68\x9c\x53\x39\x1f\xe7\xf2\xa7\xe8\x53\xf1\x0b\x47\x08\xb1\x6f\x0c\x4d\x99\x7b\xfd\x65\x91\x64\xf7\x64\xab\xcd\x5a\xa0\xba\x34\xdb\x19\x64\x66\x34\x32\xd3\x64\x1d\x8f\x75\xbb\xb6\x8d\x9e\x66\xc7\x45\x69\x62\x44\xb5\xce\x19\xc5\x57\x5c\xee\x6a\xaf\xcf\x38\x4e\xd7\xf6\xd2\x13\x15\x63\x30\xfa\x4b\xcc\xda\x29\x59\x9a\xff\x8d\x92\x1d\xc9\x70\xf1\x94\xa4\x6d\x45\x0b\xd8\xa9\xe6\x3b\x96\xc4\x0f\x08\x90\x8b\x45\x78\x5f\x31\xee\xff\x09\xe9\xea\xf1\x7f\x6f\x2a\xe3\x30\xf3\x9e\xf8\x2c\xa8\x34\xfc\x68\xa2\x44\x61\xbe\x47\x53\x08\x28\xd4\x4f\x6a\xe3\x55\xcd\x8a\x30\x4e\x73\x9b\xcd\x28\xac\x3a\xfa\x2b\xc8\x1f\x67\x20\xcd\xed\x60\xc6\x0e\xec\x70\x47\x6b\x19\x51\x61\x80\x9e\x22\xe3\x6c\x29\x95\x14\xcc\xed\xd3\xca\x01\xb0\x17\x25\xe9\x5a\x54\xbc\x89\x21\x77\x9a\xc0\x8b\x2f\x1d\x74\x9a\xc0\x8f\xf2\x8f\x33\x49\xdb\xd7\x78\x76\x52\x06\x20\xb9\xa4\x52\xd7\xf6\xd9\x67\x92\x66\x30\xa1\x63\xb4\xff\x46\xeb\xe5\x45\x87\xf4\xf4\xb8\xdf\xeb\x44\x14\x75\xa4\xc2\xb9\x39\xc4\x9e\x93\xa7\xbb\x75\x2f\xef\xce\xa8\xcc\x87\x59\x9a\x8e\xa4\x22\xaa\xc4\x07\xe6\x9d\xf8\x40\xc3\x06\x37\x36\xb1\x24\xfe\xd8\xd2\xdf\x51\x04\xb6\x77\xd4\xf1\xf0\x57\xff\xfb\xbf\xda\x26\x52\x84\x20\xfb\x7c\x10\xb5\xa9\x34\x00\x4f\xbb\xdd\x63\x55\x6a\x30\x08\x5f\x90\x51\xf1\x75\x93\x0a\x01\x1b\x9f\xb5\x95\x59\xd2\x25\x85\x09\xc3\x22\xc5\x50\xbe\xa3\x0e\xd0\x61\x34\x18\xee\xaf\xa6\x01\x06\xf0\x3b\x14\x99\x20\x02\xa1\xee\xd0\x0b\x9c\x60\x7d\x8c\xa3\x06\x15\x89\x23\xba\xb8\xde\xee\x7a\x02\xd1\x75\xc4\x1b\x38\x9d\x40\x21\xc0\x0e\xf7\xdb\x18\x49\x20\xe1\x48\xba\x7e\xd1\x51\xa4\x29\xa0\xc0\xfb\x6f\x32\x9a\x9a\x5f\xd1\x3d\x23\xc1\xb9\x39\x65\x3f\x96\x2f\xaf\x6b\x13\x0d\xe5\x8e\xb2\xa9\xcf\xa4\x3a\x5c\x7c\x71\x69\xb1\x53\xe6\x76\xb9\x8c\xdb\x1e\xd9\x77\x94\xea\x7a\x52\xac\xa9\x3e\x17\x79\xd4\x6d\x85\xb8\x7e\xcd\x44\x31\x1f\x31\x2c\x7d\x1f\x28\x90\xdb\xa6\x7a\xd2\x7d\xb3\xd2\xa6\xb5\xc4\xa3\x40\x32\x2f\x8e\x64\xe7\x01\xce\x97\x95\x47\x54\x1e\x46\x36\x29\xa2\xbc\xc8\x77\xa9\x91\xe5\xaa\xee\xc6\x14\xa7\xb5\x7a\x56\xae\xc0\xe6\xa5\xda\xcf\x7a\x09\x51\x62\x91\xcf\xf8\xf0\x83\xf9\xf3\x28\x45\xdf\x42\x10\xe8\x9c\x98\xaa\xc7\x25\x06\x63\xce\x8c\x3e\x8b\x12\xe1\x6d\x20\x04\x39\xa1\x7c\x8f\x4e\x68\x3b\xdb\x71\x3a\x70\xca\x47\xd8\x20\xbf\xc0\x3d\xf2\x8b\xa9\x58\xb2\x64\xc2\x38\xa6\xc4\x35\x35\x3d\xae\x35\x58\x86\x1c\xe8\xd8\x37\xc6\x36\xc9\x85\xfe\x2d\x78\xfb\x96\xa2\x6b\x3f\xe1\x7f\x71\x11\xad\x44\x49\x4b\xdb\x49\x6e\x03\xb9\xf9\x0a\x67\x2f\xb3\x6b\x84\x85\xa8\x96\xad\xdb\x2c\x1c\x17\x13\xb5\x37\x44\xd3\x10\x94\xc2\x61\x78\xa1\x16\xb0\xfc\x42\x27\xcd\x4c\x32\x10\x61\x57\xd9\x27\x5a\x4a\xbd\xa4\xbe\x67\x1c\xec\x14\x43\x53\xd0\xb9\x88\x26\x0e\x68\x34\x7c\xed\xba\x1b\x69\x2f\x8e\x06\x3c\xe3\x1c\x28\xa5\x7a\x5a\x02\x4a\xf1\x6b\x78\xcd\xe4\x43\x7a\x58\x38\x3e\xde\x52\x82\x06\x6f\xb9\x87\x9a\x99\x71\xd4\x8f\xd7\x67\x5c\xcf\xf4\xc4\x57\xe8\x3e\x51\x84\xdb\xa2\xfb\x44\x31\xf4\xbc\xa6\x63\x3f\x50\x48\x99\xd8\x46\x79\x99\xd9\x78\x5d\x49\x50\xe3\x6e\xa5\xde\xe7\x0f\xff\x5e\x5c\x2e\x2f\x23\x17\x6e\x72\x54\x7f\x5c\x61\x3d\x49\x4b\xbb\xda\x5c\xd8\x4a\x66\xe2\xa3\x96\xfb\x81\x32\x68\xba\xec\xee\x25\x8e\x12\x0f\xfb\xc0\xf9\xb5\x53\x39\x5c\xdf\x55\xa9\xd3\x51\x55\x0b\x2d\x32\x6b\xaa\x1b\x68\x4d\x55\x7e\x5b\x4e\x4d\xe5\x44\x43\x34\x35\xdf\xc9\xd3\xb8\x4f\xb2\x7c\x3a\xbe\x0c\xb4\x6b\xfd\xe4\xa7\xa7\x03\x6f\x2a\xa3\x71\x0d\x7e\xaf\xe2\x30\xfe\x21\x71\x12\xb8\x46\x03\x9c\x36\xc2\xb8\xf3\x88\x71\x05\x4b\x44\xf7\x8c\x72\xfb\x15\x7a\x96\xa8\x44\xbf\xad\xca\x3a\x3b\x37\x34\xfa\x28\xf0\xe7\x38\x07\x2b\x6c\xa8\xea\x36\x85\x55\x9b\x17\xb6\xbf\x5b\x81\x2a\x81\x7f\x16\x1a\x81\x47\x7b\xfd\x04\xbb\x0a\xa6\x05\x74\x2b\x9d\x03\xa4\x7f\xec\x8f\xd7\x0e\x51\xe9\x39\x84\x69\x2c\x8d\x77\x47\xbb\x74\xd9\xd3\x4d\xfd\x3c\xaf\xab\x4d\x33\x1a\xc3\x73\x08\xf9\xe8\x51\xc5\xf1\x65\x58\x82\x08\x1c\xd3\x07\x63\x16\x71\x6f\x46\x94\x3b\xb6\xa3\x5f\xab\xad\x3e\x4c\x93\x22\x4a\x4a\x22\xfd\x29\x09\x7f\x88\xd0\xf3\x75\xed\xa1\x1f\x38\xb0\x48\xae\x20\x69\x92\xd8\x18\x5d\x02\x6c\xdf\xbf\x81\x44\x0c\xcd\xb8\xd3\x5a\x61\x82\x0b\x77\x02\x34\x9a\x92\xe7\x8d\x0b\x68\x6d\xe1\x7c\x41\xb5\x86\xaf\x37\x14\xde\xf1\x73\x2d\xff\xf6\x79\x63\x37\x75\x99\x94\xd9\x72\x34\x74\x10\x03\x8a\xe5\x1e\x0e\x81\xa3\x9a\xe1\x75\xbb\x76\xf8\x3d\x47\x9a\xad\x88\xe1\xaa\xef\x12\xe1\x0e\x5d\x47\x7b\x18\x31\x19\xb0\x60\x2b\x5b\x9d\xe8\x08\x68\x7d\x81\x06\xce\xd1\xd8\x66\xcb\x69\x36\x62\xcb\x2b\x41\x07\x56\xdf\x87\xa1\xba\x4f\x87\xa3\xb0\x09\x9b\xc4\x1b\xcb\x24\x49\x8b\x28\xe4\x8d\x50\x69\x3e\x8a\x7e\xc8\xc5\x26\xcd\x90\x55\x23\x12\xf6\xce\x1f\xc7\xc9\x05\x4f\xdb\x8c\x95\x59\x41\x42\x45\xdc\xa2\x0b\x54\x37\x93\x4d\x2f\x50\x4c\x40\x5f\x43\xc4\xcc\xab\xdb\x76\x72\x5d\x9e\xc4\x4f\x77\x23\xbe\xfc\xea\x37\xee\xda\x50\x28\x75\x76\xdb\xc6\x99\xf2\x08\x3c\x2c\xd9\x00\x16\x53\x40\xe4\xb8\x94\x1d\x9e\x67\xea\x8e\xa3\x70\xc5\xfa\x64\x09\x47\xf7\x47\x13\x8f\xe7\xff\x48\x79\xc3\x98\x6c\xb4\xab\xb5\xb0\xb0\xc5\xf1\x1a\xd6\xd0\x97\xba\xc7\x70\x47\x73\xe2\x31\xac\xfc\x0f\xdb\x15\xc3\x17\x5f\x3a\x58\x3d\x90\x96\x12\x72\x86\xa9\x85\xf8\x51\xfa\xc5\xfc\xa6\xed\x3f\xa1\x66\xf6\xcd\x89\x2f\x74\xfe\xd4\x5f\x87\x14\x13\xe2\xb3\xc7\x37\xaa\x10\xdd\x0d\x98\x17\x3a\xd8\xbd\x51\x45\x64\xc8\x8c\x80\xea\xa2\xe6\xc6\x3f\xfd\x99\x0d\x5f\x19\xde\xbb\x51\x1d\xa1\x02\x65\xac\x7e\x09\x0a\xd6\x8f\x73\x07\xd8\x21\x33\x5d\x9c\xf8\x14\x6a\x2f\x44\x6d\xfa\x2f\x9f\xed\x52\x26\x24\xd9\x17\x3d\x77\x2c\x82\x67\x6a\xbc\x54\x2a\x4c\xd0\x4e\x22\xad\x1b\x1c\x8e\xff\x5e\x61\x2b\x3e\xc2\xb0\xb2\x73\xbc\x77\x92\x2a\x47\xd5\xf9\x56\xfd\x3c\xce\xa7\x68\xc4\x51\x68\x06\x8b\x18\x09\xf1\x53\x1b\xdb\x35\x39\x16\x16\xaa\x6f\x85\x13\x7f\x9a\x38\xe2\x32\x4a\x6f\xe7\x15\x21\xf5\xbc\x12\xb8\x0f\xd3\x30\x1d\x29\x47\x4c\xa6\x77\xf0\x8b\x26\xc2\xec\x28\xea\xe7\xd1\x9b\x52\x8e\x16\xaa\x68\xcb\xf9\xf0\x9f\x53\xe0\xb8\x5e\x66\xcd\xca\xb2\xc9\x0b\x2a\x54\xa2\xef\x03\x8f\x63\x57\xcd\xf4\x98\x86\xef\x36\x10\xd2\x17\x3b\xa3\x32\x1c\xe2\xb8\x97\xe7\xee\xfb\x0e\x77\x03\xef\xa5\x73\xaa\xf6\x5b\x29\x74\xb2\x71\x2c\x47\x31\x5b\x6c\xd0\x40\x88\xdd\x46\x83\xb3\x3f\x4b\x9a\x48\x4f\x4b\x11\x35\x0f\x2a\x2f\x55\x0f\x00\xcf\xe2\x5d\x5e\xb8\x9c\xc9\xa3\xac\x56\xc6\x9b\x2d\xb8\x71\x6d\x88\xa7\xf2\xdf\x4d\x34\x93\xc5\x2f\x85\x97\xbe\x35\xdf\x52\x4c\xc0\x40\xeb\xf9\xd5\x15\x3b\x5f\x3a\xd8\x79\xad\x4c\x44\x94\x1a\x5b\x24\x40\x36\x7c\xad\x82\xb1\xb5\xa8\x48\x6c\x9e\xdb\x9c\x3e\x5f\xc8\xe7\xca\xba\xee\xc2\xb4\x4a\x7c\x3e\xdc\x57\xad\x29\xc4\xa5\xf7\x14\x6d\xf9\x22\xe5\xc6\x62\xa2\x5c\xed\x60\xf2\x65\x6d\xef\x70\x7d\x1f\x0b\x04\xeb\x68\xc7\x86\x3f\x31\x58\x6f\x9e\xff\x2a\xf0\xe2\xb2\xff\x03\x88\x08\x7c\x24\x52\x9d\x00\x93\xf0\x24\x62\x27\xd4\x8b\x4e\x34\xf5\x38\x57\xd3\xb8\x4c\x0a\x93\x21\xce\x64\x1d\xe9\x69\x51\xe9\xa7\x54\xb9\xa6\x1c\x45\x09\x64\x0d\x5f\x71\xb2\x59\x0a\x09\x76\x36\x50\x52\xa6\xc7\x95\x94\xe9\xf1\xed\xa8\x9c\xb9\xf9\x6a\x86\x3e\x31\x05\x0c\xa5\x01\x15\x05\x10\x55\x32\xbf\xa0\xcb\x47\x3c\x54\xc8\x8f\xc6\x90\x27\x96\x4e\x77\xeb\xd5\x57\xb7\xe0\xb3\x06\x8a\xd1\xe7\x41\xeb\xd9\x67\xe5\x5f\x15\x95\xf3\x1e\x6e\x10\x55\xa2\x47\x59\x7e\x57\xf9\x76\x8b\xb4\xe0\x4d\xa5\x02\xb0\x87\xb6\x43\xac\xa3\x3b\x4d\x6a\x39\x2b\x89\x05\x52\x9c\xcd\x48\x26\x6a\x8d\x03\xcb\x8b\x00\xf4\x6a\xe0\xfd\xb1\x92\xbe\x1d\x49\xad\x13\x47\xd1\xed\x40\x59\x47\x72\xb1\x53\x44\xff\x94\x67\x6a\x3e\x7c\x8c\xfe\xc9\x31\x78\x16\x1d\x23\xe0\x3d\xe5\x5e\x70\x5b\xeb\xa3\xde\x0b\x94\x39\xf3\x85\x69\xf2\x5f\xf5\x9d\x8c\xc0\x9b\xa8\xa2\xdb\xb1\x40\x63\x3f\x4e\xd4\xc2\x58\x14\xed\x76\x76\x95\xec\x7e\x9c\x3f\xee\xe7\xe2\xd6\x44\xcd\x87\x73\x54\x24\x12\x93\x30\xba\x67\xfa\xf9\xff\xd3\xcf\x76\x75\xff\xeb\x31\x9c\x1c\x18\x8e\x7d\x1b\x54\xc8\x11\x37\xc2\xea\xce\xf0\x08\x9e\x21\xd2\x2f\x2a\x02\x97\xb1\x14\x9d\x4a\x88\xeb\xf7\x6c\x69\x79\x20\x20\x60\x29\xa1\xdb\xff\x73\x50\x66\xa6\x8e\xd4\xaf\xfe\x67\x5d\xc1\x65\x68\x0a\x92\x6a\x67\x7d\xa6\x9c\x58\x3e\xab\x3d\xfa\xb9\xb9\x4e\x9c\x1a\x49\x87\x9d\xdf\x4c\xf5\xc5\xfc\x42\x35\x91\xc6\x69\x1c\x85\x91\xcd\xf7\x4c\x29\x93\x38\x47\x89\x99\xae\xce\x2e\x5a\x07\xa6\xfc\x7d\x85\xde\x75\x56\x1d\xb3\xe0\x19\x0b\x7d\x5e\xa9\xd5\x98\x22\x5d\x81\xb0\xaf\xb0\x05\xe9\x17\x89\xbb\x99\x93\x61\x2e\xcc\x98\x3b\xae\xd8\x95\x4e\x2b\xb2\xec\x69\xa5\x9b\x50\x44\x36\xdf\xe5\x25\x90\xd9\xf1\x8d\x5f\x28\x65\xd3\x13\x4a\xdd\xfe\x13\x7c\x27\xce\xec\xba\xb5\x77\x95\xf0\x51\x53\x4d\xce\x43\xd4\x31\xbe\x17\xf8\x1e\xc6\xf7\x54\xf1\xfc\xcd\x34\xa1\x50\xec\x65\xe7\x62\x7a\x91\x6e\x5e\x44\xac\x1b\xb8\x13\x65\x61\x86\x26\x11\x28\x03\x87\x2f\x58\x60\x12\xcb\x34\x29\x1c\x2f\x5b\x93\xe5\xe9\x88\x5b\xea\xa8\x89\x9d\x52\xf5\xb1\x53\x5e\xd8\xa0\x5c\xcf\x67\x54\xec\xbb\x0f\x21\xa6\x14\x24\x3c\x09\xe8\x2e\x61\xc8\x64\x86\x3e\x4c\x0e\x12\x65\x63\x50\x07\x70\xe0\x5f\x0e\x94\x2d\xc8\xe5\x06\x25\xcc\x0e\x22\x04\x17\x08\x9c\x09\x3c\xe1\xff\xef\xd1\x0f\x10\x43\xa2\x87\x7d\x69\x51\x66\x2b\xac\xd8\x8d\xa0\xf9\x9a\x56\x34\xbc\xd6\xa8\x49\x38\x4c\xb3\x22\x2f\xd8\x5c\x0e\xb9\xe3\xdb\xf4\xc5\x7c\xdd\xf4\x30\xb8\x89\xd0\xf6\x35\x80\xab\x4a\xd1\xe8\x07\x13\xe5\xc3\x73\x41\xd1\x77\xa1\xf2\xdb\xf6\x33\x8c\xe5\x26\x51\xb4\x78\x54\x71\x47\x9e\xd8\xd8\xa7\x20\xce\x66\x46\x3f\x0a\x3a\x08\xa6\x54\x6e\x59\xc8\x07\xf3\x58\x54\x7d\x74\x23\xa3\x4c\x72\xeb\xe2\x9f\x29\x1b\x29\x59\xd6\xbe\x09\x9d\xae\x25\x36\xcb\x87\xd1\x78\x4f\x75\xbe\x63\x69\x32\xa1\xdc\x99\x36\x54\xdf\x83\x28\xec\x8e\xc6\xf8\x51\x8f\x82\xdf\xa1\x8a\x0e\x33\x28\x3a\x88\xe5\x99\x10\x82\xa3\xe5\x88\x31\x63\x8d\xea\x93\x4f\x28\x84\xb2\x29\x86\xb9\x0a\x4e\x3f\xd3\xc1\xe9\x67\x4d\xbd\xbd\x30\xb6\x59\x14\x32\x82\x5c\xac\x3f\x3d\x32\xb5\xb5\xa1\xc0\xf2\xcb\x99\x89\xfa\x2d\xed\x33\x35\xd1\x0e\x54\x41\x43\x81\xe0\xeb\x8e\x7e\x25\xeb\x1d\x8f\x10\x68\x10\xbe\xae\x31\x57\xab\x30\x36\x62\xab\xe4\x6a\x5f\x66\x30\xa2\xeb\x6e\x7b\xd1\xe8\x8f\xf5\x0e\xf7\xf7\x54\x09\xb2\x30\x2b\x36\x5d\x5e\x6e\x29\x1c\xd8\x69\x1c\xac\xfc\x42\xf9\xac\x15\x65\x96\xd8\xac\xad\xbd\xf5\x8f\xab\x1d\x91\x83\x4a\x94\x14\x3e\x6c\x9a\xe5\xe3\xcc\x8e\x22\x9b\xcd\x68\x76\x4c\xb5\x30\x5c\x16\xe7\xe4\xe1\x6f\x07\xca\x09\xe3\x76\x6d\x69\xd3\x88\x8d\xcd\x34\xe7\x46\x09\x0d\x5f\x50\x49\xe0\x7f\xf1\xed\x31\x3d\xe9\x46\x2e\x70\x83\x69\x62\x9c\xae\x79\xa9\x37\x2c\x39\x52\x7c\xdc\x62\x4c\x1c\x82\xca\x7f\xa3\x7c\xc6\xec\x1b\x69\x16\x46\xf9\xa8\xad\xe4\x0f\x3f\xa4\x81\x61\xfe\x42\xa0\xc0\xb7\x75\x2e\xd5\xe2\xd2\x62\x67\x98\x8e\xf1\xe0\x5f\xf1\x16\x53\xbe\x56\x7e\x52\x41\x46\x12\x6b\xfb\x8f\xb6\x94\x4c\x3a\x0d\x14\xa3\xf3\x11\x61\x3a\xa8\xfe\x8b\x07\xfc\xd0\xce\x39\x75\xf1\xc0\x07\x07\x9b\xc1\x94\xa5\xb3\x67\xde\xdd\xa5\x68\x46\xaa\x7a\xfe\xe8\x5c\x4e\x73\x11\x6e\x41\xd0\x0e\x8e\x38\x5f\x37\xc5\xd0\xa1\xc9\xa2\x5e\xcf\x9a\xa4\xa5\xf0\xb0\x9b\x81\x4e\x8d\x37\x15\x1a\x6d\x64\x92\xbe\x29\x2c\xda\xb5\x82\x10\xa9\x6e\x44\xcc\x41\x1b\x25\xdd\x6d\x61\xde\xd0\x36\x88\xe7\x94\xb3\xd5\x1d\xa5\x96\x79\x4a\xbb\x0b\x99\x92\xc5\xe7\x51\xf4\x80\x2d\x21\x6e\xff\xb6\xc6\x9d\x61\x5a\x23\x56\xad\xf7\xa1\xe7\xe6\x3b\x26\x5f\xc1\x7c\x11\x9b\xd1\x6b\x08\x6f\x51\x75\xc0\x2e\x0c\x10\xc3\x96\xeb\x1d\x86\xfd\x50\xa1\x5b\x2f\xe9\x90\x88\x4c\x75\xbd\x3f\x33\x26\x39\xa3\xad\x15\x3f\xe7\xac\xc2\xf9\x8c\xb3\x74\x44\xcc\xe2\x99\x9a\xc3\x25\x9a\x5b\x0f\x02\x7f\x73\x08\x02\xd1\x9e\x7e\xaf\xb6\x4c\x5f\x3c\xd0\x31\x59\x56\x1d\xf2\xf8\xe2\xa6\xda\x9c\x0b\x90\x12\x6b\x56\x90\x1c\xb1\x2d\x21\xfd\x99\x58\x14\xee\x57\xde\xc0\xe9\x68\xc6\xf3\x41\x2f\x4e\x54\xf0\xc0\x25\x6c\x2c\x9b\xd3\xf4\x3b\xf9\xba\x36\x9d\x0e\xcf\x52\x53\x3c\x34\x42\x0b\x50\xde\xd9\x07\x9c\x77\xb6\xce\x36\x07\xf1\xfa\xe3\xd5\xf7\x22\x57\xfa\xe3\xc0\xab\x02\x41\x46\xd1\x49\x39\x2e\xcd\x6a\x65\x11\x81\x35\xdc\x57\x22\x5f\x3b\x74\xe8\xfd\x3f\x4f\x14\x7c\xec\x4b\x25\xf9\xf6\xe4\x86\x12\x3f\x7f\x5b\x13\x9f\x7e\x8c\x5f\x89\x45\xd8\xea\x56\x67\xae\xdb\xb9\xaa\x75\x8f\xa0\xee\xce\x54\xa3\x2a\x1b\xa4\x28\xb2\x22\xc6\xff\x32\x98\x0e\xf8\x95\x15\xb9\x3f\x7e\xd6\xb2\x68\x30\x2c\x14\x26\x91\x5d\xb3\xd1\x83\x9b\xe9\x6a\x39\x32\x5f\xae\x29\x32\xcb\xbd\x20\x21\x72\x78\x4e\xdb\xb9\x89\x96\x39\x19\x99\x6c\x65\xc6\xb7\x50\xa0\xfc\xc7\xd7\x10\x3e\x92\x7a\x08\x35\x16\xa4\x20\xd2\x54\x63\x88\xa3\xdc\xc9\x53\x80\xa2\x07\x55\x3f\xbe\x56\x78\x5d\x26\xe3\xb0\x12\x23\x36\xaf\xbb\x4a\xe2\x0b\xf3\x46\x8c\x1a\x9b\xc4\x49\x97\xa3\x8c\x60\x70\x52\xa2\x98\xd9\x50\xf4\xc1\x7f\x4d\x6f\xc7\x24\x69\x77\x9f\x56\xf8\xbc\x3c\xcc\x2c\xf8\xfe\x55\x68\xed\x04\xf3\xdc\x02\xaa\x37\xe3\xab\x43\xb9\x67\xc2\x15\xaa\x91\x39\xc6\xb7\x33\xda\xde\x54\xf2\xe4\xfd\x32\x2f\xb2\x75\x7a\x54\xec\x1a\x85\xbd\x46\xd0\xf3\x9a\xfc\xe5\xc3\xbe\x7c\x7d\x34\x36\xc5\x10\x51\x29\xde\x07\x2d\x52\xbe\x56\x56\xaf\xa3\xd1\x3a\x23\xd6\x59\x73\x6a\xe2\x79\x66\xef\x63\x5a\xb0\x18\x5d\x2d\x92\x5d\x58\x58\xea\xe4\xe5\xd8\x5b\x93\x39\x43\x45\xa7\xf7\x77\x52\xe9\xfd\x8d\xa2\x84\xf8\xb5\xd5\x5f\x62\xed\xfc\x7a\xe0\xe5\xeb\x7f\xbd\x01\xd3\x9c\xdb\xcc\x89\x8c\x6b\xc0\x8f\xd3\x32\xac\x56\x1b\x62\xe1\x1f\x37\x54\xe4\x5f\x21\xa2\xc0\x20\xb3\x52\x4f\xe3\x41\x53\x9a\xb3\x75\x24\xf5\xfc\x21\xb2\x34\xe6\xa2\x82\x88\xf5\x92\x25\xf6\x19\x7c\xa1\x28\xfd\x3f\xe5\x1e\x52\x68\x93\x22\x5a\x95\x6f\x61\xa3\x92\x89\x52\x45\xdd\x54\xe8\xd1\x7e\x35\x4b\x77\xf9\x96\xf7\x4d\x2c\x02\x9c\xc2\xdf\xc1\x0e\x20\xac\xf3\xea\x87\xf2\x5f\x61\xdd\x30\xed\xa7\x09\x41\x3e\x8e\x60\x10\x83\x62\x3b\x83\x25\x83\x96\xf2\xf4\xaf\x23\x6d\x08\xa2\xbf\x0d\xcd\xf4\xa7\xea\x30\xfc\xd3\x5a\x9c\xbb\x34\xbb\xd4\x29\xaa\xdd\x83\x2b\xbc\xac\xe9\xa0\x3c\xa3\xb4\xe1\x3a\x19\xf9\x23\xc1\x43\xc4\x79\x13\x90\x4c\x06\x3f\x2b\x6d\xf2\x23\xd4\x8f\x90\x63\xcb\x55\x78\x86\xd6\x8c\x9d\x17\x0b\x0e\xe1\x96\x12\xc7\xd9\xb9\xe1\xfb\xd7\x93\xc6\x9e\x4c\x98\x8e\x46\x51\xe1\x68\x0c\x58\xfe\x7f\x34\xd1\x35\x4b\x05\x72\x3c\xab\xb6\xbb\xd8\x9a\xbc\xa0\x7b\x14\xe3\x03\x7f\xee\xdc\x6a\x54\x52\xc9\xca\xac\x8a\xfe\x5d\x6e\x72\x5a\x77\x47\x4f\x2b\x08\x45\x99\xf4\x6d\x46\x82\xb8\xd0\x38\x60\x1f\x0c\x95\xfa\x5f\x9b\xd6\xe3\xf3\x78\xef\xb7\x6b\xdc\xf2\x43\x2f\x75\x7a\xe6\xbf\xa2\xa3\x13\xe1\xe3\x5b\x13\x6f\xc6\x75\x53\x83\xde\x77\x10\x4e\x14\x73\x6b\x5f\xb7\x89\x1d\x14\x9a\x71\x54\x70\x06\x83\xc3\xe6\xb8\xaa\x26\x1c\x9f\x3c\x53\x0f\xd8\x8b\xd5\x96\x2f\x53\xde\xc1\xe6\xc4\x2f\x54\x24\x65\x93\x7e\x3e\x83\xbd\x0a\x19\x54\x1b\x10\x52\xe7\xcd\xe1\xe0\x15\x5c\x3f\x13\x4f\xfe\xed\x73\xf6\x97\xe7\x85\x72\xaa\x4c\x25\xce\x28\x41\x88\x33\xb5\xdd\xf6\xd0\x4b\x9d\x22\x2d\x4c\xdc\xf6\xc5\xe7\xcf\x68\x44\xc5\xfe\xd1\xe3\xb0\xde\x6a\xf0\x79\x78\xa1\x93\x2e\x2f\xfb\x70\x1f\xeb\x14\xe4\x0f\xd5\x3e\x9b\xe7\xf0\xed\xf2\xc4\xd3\x6c\xc2\x5e\xfe\x98\xe7\x60\xb0\x3d\x12\x50\xdc\xcc\xc6\xc5\xc3\xfe\xb3\x89\x97\x68\x66\x91\x70\x2c\x84\x1f\x4c\xbc\x52\xe6\x0f\x08\xf8\x83\x78\xe8\x51\xd5\x8b\x81\xb1\x0d\x0b\xdb\x22\x4c\x40\xdb\xfb\x1e\x36\x20\x94\x18\x2f\x4f\x74\xcc\x60\xb2\xfe\x57\xab\x4f\xc6\x91\x0c\xb8\x15\x92\xd4\x53\xca\xed\xe0\x49\xb2\xc6\x71\xbd\xb7\x25\x71\x28\x7a\xac\xab\xfa\xcc\x57\x89\xe5\x8d\x3b\xfc\x1e\xd2\x49\x4c\xb6\x2b\x13\x05\xa3\xde\xb5\x41\xa9\x2e\xbe\xe3\x73\x24\x6e\xa8\xd2\xdd\xd6\x0e\x27\x5c\x6e\xc7\xe1\xf3\x25\xf6\x45\x94\x0d\x67\xba\xaa\xa8\xc3\x10\x04\xc7\x0f\x9f\x3f\xc4\x6d\x8e\x1b\x9c\x33\x60\xf2\xbc\x8d\x9a\x01\xea\x01\xd7\x68\x8c\x91\x4c\xec\x21\x14\x9e\x00\xda\x9e\xd4\x11\x84\xcd\x72\x54\xf3\x9a\xf6\xcf\xaf\xe9\x14\xa4\x5c\x36\x61\x51\x66\x36\xcb\x09\xa6\x82\x61\x86\x28\x35\x52\xba\xdf\x0e\x7c\x7a\xf7\xdb\xb8\x4b\xfe\x23\x45\x60\x0c\xb3\xd4\x59\x23\xa1\x18\x78\x5b\x35\x69\x6f\x2b\x61\x88\x61\x35\x05\xa3\x02\x9a\x13\xce\xe5\xe5\x45\xc7\xf0\xa9\x45\x34\x73\x73\x9d\x62\x68\x23\x09\xd2\x5d\xe8\x5a\xed\xbf\x22\x8a\xf7\xb8\x03\xf0\x95\xa2\x02\x36\xef\x74\x41\xfc\x11\x75\xaa\xf6\xe1\xe4\x2f\xdf\x4b\x57\x2d\x41\xd3\x84\xa1\xe6\x3b\x62\xc8\xf9\x84\x1c\xe9\xb0\x30\xa6\x67\xe3\xd8\xb4\x7c\x59\x8d\xb3\x1a\x89\xcb\x1b\xf8\x33\xa1\x19\x8f\x6d\x9f\xea\x01\xce\xe9\xab\x7a\xfa\xa8\x21\x60\x7b\x12\xb9\x1d\x15\x7d\xff\xdf\x8a\x5a\x66\x07\x03\xf8\x11\x70\x31\x58\x9b\xa6\x9d\xa6\xf9\x8b\xcd\xf2\x84\xa2\x6e\xdf\xd5\xf0\x84\x8b\x5a\x2a\xf5\xae\xa2\x59\x90\xd4\x40\x32\x68\xeb\x47\xe6\x01\x8a\xe7\x26\xde\xe4\xf0\xa4\xa2\x78\xa7\x63\x2a\xc5\xec\xa1\x6f\x90\x5b\x9f\xba\xc1\x2a\xda\xb8\x4c\x99\xfa\xd6\xe5\xea\x47\xc1\x94\x55\x94\x04\xfe\x0e\xe5\x28\xfc\xc7\x81\xf7\x4c\x1b\x64\xa6\x28\xa3\x22\x2d\xf3\x78\xbd\x45\xe1\x82\x94\x3a\x68\x25\x49\x2a\xe1\xfb\x72\x23\x53\x98\x41\x9a\xf5\xc5\x91\x65\x4a\x3f\x44\xcc\xde\xfd\x64\x8d\x92\xbc\x9a\xf0\x2d\x8f\xce\xdc\x09\x86\x01\xbf\xe8\x6e\x0f\x10\x97\x66\xab\xe0\x28\xb3\x26\x97\xdd\x13\x87\x18\xdd\x13\x1f\xa5\x0c\x31\x60\x7a\xb0\xaa\x23\xc0\x85\x0d\x21\x15\xbb\xb0\x61\x7f\x11\x4b\xb6\xfd\xca\xd6\x30\xb1\x8f\xd3\x1f\x22\xe2\xbe\xa7\x15\x50\xae\xd3\x06\xa1\xd4\x55\x05\x33\xba\x8b\x8e\x43\xac\xc9\x63\x93\x29\x75\x11\x6f\xdb\xf2\xbf\x06\x5e\x37\x8a\x5d\xdb\xf1\x0f\xb7\xb1\x57\x31\x1f\x96\x1e\x1f\xca\x2d\xb7\xd1\x26\x72\x52\x89\x5a\x82\xc0\xcb\x42\x4e\x7c\xa3\x9a\xcb\x7a\x92\xb9\x08\xc9\xbe\xe5\xec\x49\xfe\x5d\xe0\xb3\x98\x7a\x27\xf6\xc0\x81\x8e\x35\x99\xa7\x59\x6a\xc5\x6e\x49\x40\x9e\x52\x02\xf7\xc0\xc6\xec\xf2\x5d\xe9\x4f\x28\xf4\x92\xae\xac\x47\x67\x3c\xc0\xed\x62\x6b\xfd\x97\x81\x97\x21\x3c\xd5\x24\x6b\x37\xb6\x59\x5e\xe5\x6a\x5c\x5e\x75\x02\x16\xae\xee\xfc\xa9\xaa\xae\x2e\x9b\xd5\xb4\xda\x98\x5e\x76\x82\xcf\x68\xc4\xf0\xf5\xd4\x61\xd5\x87\xb7\x81\x00\xe6\xce\x4c\x99\xc4\xb6\x9c\x00\xd1\x0f\xa7\xb2\x62\xf3\x26\x7c\x20\x50\x18\x66\x6d\x25\x7e\xa1\xb5\xc4\xcb\xdc\x96\xa3\x36\x80\xbc\x02\x76\x9b\xca\x30\x3c\x04\xec\x37\xb7\x33\xdd\xe6\xe6\x3b\xf3\x87\x9e\x6c\x39\x51\xde\xdd\x1b\x74\x3f\x88\x24\x36\x95\xeb\x0b\x8b\x59\xb3\xd5\x38\x9f\x51\x1c\x70\xa8\x5c\x04\xc5\x18\x36\xe6\xc0\x1e\x05\xbc\xfc\xff\x35\x51\x9a\xfa\xdc\x93\x03\xcc\xee\xfc\x44\x05\xee\xb7\x03\x65\xcf\x7a\x1f\x6b\x1e\x2b\xf3\x24\x74\xf3\xd8\x77\x94\x76\x3c\xa9\x23\xd1\x11\xc9\xda\x5c\xee\x38\x28\x93\xb1\x35\xa1\x55\xd5\xa7\xf7\x02\x55\x7d\x7a\xcf\xc5\xe7\xcb\x26\x2a\x86\xcb\x65\x5c\xd7\x8a\x67\xf1\xca\xae\xa7\x5b\xdc\x6f\xea\xbe\xf4\xca\x18\xd1\x26\x6f\xb4\xc1\xd4\xae\xbb\x3d\x92\x5b\x5c\x5a\xec\x8c\xd2\x55\xd8\x25\xb2\xea\x00\xee\x80\x75\x51\x14\x26\x83\x69\x35\x2c\x41\xab\xb4\x47\xc6\x59\x3a\x8c\x7a\x51\x41\x9a\x3b\xd5\xe8\xb1\xf4\x36\xfd\x6c\xd4\x4a\xee\x28\xb7\xff\xab\x2a\x8a\x7d\xcd\x24\xcf\xef\x72\x08\x9f\x9f\xbf\xaa\x85\x8c\x2e\x2a\xa1\xc5\x1d\x5d\xef\xde\x7b\x51\x47\x7a\x97\x6a\x5d\xa4\xa5\xd9\x4e\x19\x17\x99\x59\x8d\xd2\xd8\x62\xe9\x20\x64\x42\x73\x87\xaf\xbd\x9e\x92\x8d\xab\xe4\x0b\x8a\x6e\xa2\xb5\xb1\x67\xc3\x07\xa3\xfb\xbb\xbe\xb9\xc1\x81\x29\x33\x30\x94\x19\x2a\xe5\xc4\x24\xe7\xf5\x48\x35\x60\x3c\x4b\x03\x5f\x2c\xe0\xea\xa4\x68\x0e\xb6\x9c\xa8\x2e\x84\x7c\xc4\x60\xdd\xe3\x82\xd9\xa8\xce\x4d\xe4\xc3\xb3\x4e\xfb\x58\x19\x2d\xa7\xcb\x68\xb5\x21\x0b\x63\x2f\x20\xe7\x38\x56\x3d\x79\x04\x33\x3b\xbb\x0e\x59\xbc\xbc\xdc\xa3\xaa\x93\x03\xba\xc3\x15\x96\xaf\xa7\xd1\x8b\xa1\x7d\xba\xfa\x75\x4e\x68\x63\x49\x96\xee\x31\x2e\x93\x20\x62\x6e\x6f\xa8\x92\xee\x09\xcd\x35\x3a\x83\x24\x1b\xf5\xb7\xcf\x34\x2a\xee\x5d\x55\x1c\x3d\xa2\x9b\x18\x33\xdd\x6a\xf3\x14\xb2\x9f\xa2\x18\x6a\xb7\xce\x1f\xa0\x02\xcf\x05\xe6\xc0\x8b\xfa\x7c\x0a\x2a\x36\x26\x29\x73\x1e\xa5\xb7\x47\x6b\x1e\x3b\xf1\x3f\x9b\x28\xef\xc5\xe3\x74\x9e\xe1\xd7\x5f\x57\xc7\xc8\x38\x8d\x72\x6e\xf1\x56\x1f\xd3\x48\x2e\xf3\xcf\x22\x8e\x56\xed\xee\x2a\xb2\xb8\x4e\x1b\x15\xf0\x1a\x2c\x82\xed\x2d\x70\xbd\xfc\x5e\xf5\x9b\xb1\x38\x76\x75\x7d\xbe\x74\x51\xb5\x7e\xe2\x34\x19\xd8\xec\x31\x35\x2f\xcf\x01\xbd\x80\x40\xff\xbe\xd2\x60\x42\xb9\x1e\x63\xbe\x83\x80\x08\xe8\x98\x9c\xa4\x56\x3e\xb7\x8d\x68\x98\x70\xe8\xdd\xc2\x30\xe1\xb8\x7a\x4f\xa7\x0f\x90\x02\x44\xd9\x8c\x49\xf6\xfc\xdd\x53\xc7\x41\x2f\x4d\xf6\xd0\x40\x38\xc5\x30\xe5\xfd\xa3\x0a\xb8\x1f\xd0\xf4\x46\x94\xb5\x11\x28\x4d\x4c\xb8\x53\xf1\x3f\x28\xe2\xce\x07\x35\xe2\x3b\x09\x6d\x42\xc7\x96\xb4\x0f\xda\x0a\xf8\x4b\x96\x82\x92\x41\x6e\xf8\x18\xe8\x9c\xe2\x2d\x15\x59\x14\xae\xe0\x11\xe2\xe1\x5f\x53\x02\xc8\xd7\x9a\x1c\x3b\x4c\xff\x35\xe6\xa4\x79\xb4\xde\x5d\x44\x27\xfc\x42\x9d\x78\x51\xb2\x2c\x0e\x4c\x4d\xc2\x48\x3e\x50\xe8\xa7\x6b\xc9\x1a\x79\xf5\x3a\xbb\x85\xbb\x34\x3a\x7c\xdd\x00\x79\xeb\x84\x26\x4b\xa2\x55\xae\x1f\x60\xb6\xff\xa6\xd6\x94\xfc\x4d\x3d\x5d\x4c\x61\xab\x30\xd5\x03\x29\x35\x3c\xf5\x62\x2d\x8b\x7f\xae\x53\xd8\x24\x89\x40\x3b\xc6\x7c\xde\x0a\x14\x2b\xfd\xe2\xb4\x60\xf6\x3e\xa5\x5a\xfc\x06\x9d\x17\x1c\x90\x61\x60\x5c\x6b\xd1\xb7\x19\x27\x3e\x70\x3f\xad\xaa\xd9\xe1\xd0\x24\xa1\xdd\xa3\xe8\x94\x9f\x07\x5a\xcc\x81\xf6\x3a\xf1\x59\xf7\xed\xfc\xbb\x81\x5a\x78\x1f\x4c\x14\x2f\x94\xa5\x7d\xa4\xd7\xa8\x92\x89\x34\x29\xec\x1b\x85\xf2\xfe\xfe\x87\x81\x2f\xd8\xfc\xc3\x26\x9b\xdc\x2c\x2d\x0b\xd1\x4b\xc2\x96\x78\x57\x6d\x8f\x77\x9b\xde\xb2\x9c\x59\x38\xf1\xb9\xc4\xf6\x81\xaa\x6c\x3f\x50\xa7\x5d\x68\xe3\xb8\xad\x2a\x9a\x2c\xbe\x8e\x82\xc0\x9f\x69\x98\x58\x6d\x11\x78\x51\x9f\xc2\x66\x89\x89\xd1\xd8\x63\xee\x0e\x7d\x9d\xf0\x78\x9e\x50\xde\x8b\x65\x5c\xac\xb7\x94\x36\x04\xaa\x8a\x7c\xdd\xa4\x2f\x19\x5b\x33\x28\xed\xb4\xb4\xa7\xc2\x36\xd6\xe6\xd0\x8b\x07\x3a\x39\xc9\x52\x7b\xbc\xce\x17\x81\xef\x4e\x7f\xa1\x2a\x97\x59\x5a\x0e\x84\x2c\x84\xe3\x8a\x8f\x38\x7e\xa1\xd5\xc9\xd2\x38\xb6\x19\x42\x20\x2d\x26\x83\x94\xe6\x9e\xc2\xc0\x9d\x52\x10\xb4\xb8\x9f\xb6\x5b\x73\x73\x2e\x30\xc0\x57\x21\x65\x39\xa1\xdb\x31\x77\x35\xde\xad\xb0\x49\x9f\x95\x4c\x70\x68\x3c\x0d\x9c\x83\x92\x29\x7d\x85\x7d\xde\xfe\x42\xd7\xbb\x00\x8c\x0d\x76\x14\x16\x6b\xd1\x0f\xf2\x74\x13\x53\x68\xd5\x66\xb1\x19\x53\x61\x43\x72\x84\x69\x91\x95\xea\xc3\xa0\x18\x73\x53\x19\x78\x9f\x9b\xd2\x31\x1b\xa7\x79\x54\xec\x9a\x2a\xfe\x56\x43\x21\x49\x6e\xcb\x29\x41\x7c\xa0\x1b\xee\xf7\x78\x24\x10\x57\xdc\x0d\x9e\x9e\x72\x77\x0b\x0d\xd0\x2c\xde\x3f\x79\xd2\x9a\x9b\xdb\x82\xbc\x22\x9a\xda\xb7\x02\xcf\xed\x34\xe3\x71\x96\x1a\xd2\x2c\x57\xea\xc2\xbf\x3f\xf1\x39\xff\xef\xd7\x94\xbf\x16\x16\x3a\xc5\xd0\xac\xb5\x6a\x93\x9d\xaf\x6b\xb5\xf7\x85\x85\x4e\x9a\x45\x83\x28\xe1\x8d\x0f\x1b\xc0\x96\xe2\x85\x6c\x39\xfc\x89\xed\xf7\x23\x8b\x39\x3e\x95\x62\x08\x49\xfd\x71\x85\x40\x63\x47\xcb\x87\x58\xcb\xfa\xbf\x8c\xd3\x32\x92\xe2\x2a\xb2\xd9\xff\x84\x07\x8c\xe6\xf4\x6f\x4c\x7c\xfb\xfd\xa2\x56\x27\xaf\xc3\xa1\xaa\x25\x95\xa6\x7c\xfa\x00\x8a\x82\xf5\xc1\xd7\x4d\xa7\x0f\xec\xec\x5d\xf6\x89\x89\xfe\xae\x9a\xf4\xef\x6a\xae\xad\x65\x0d\xf9\x3e\x64\xf6\x90\x91\x81\x65\xc1\xd7\x4a\x18\xc9\x18\x92\xed\x5d\xdc\x42\x36\xb4\x75\xd9\xb5\xad\x12\x93\x0f\x4b\x33\xe3\xab\x66\x1f\x6b\xfe\x5c\xab\x4b\x61\x9c\x74\x78\x94\x3d\xca\x85\x49\x83\x59\x47\x6c\x38\x64\xd2\x08\x30\xbe\xd6\x0b\x36\x4a\xdb\xbe\xf2\xc1\x75\x5a\xe9\x7e\xaa\x4d\x37\xf0\x26\x3c\x84\x9c\x59\xb5\x19\x6c\xde\x10\x3d\xa2\x7d\x81\x44\x9a\x6d\x58\x54\xc2\x22\xbb\x46\x0b\xe5\x71\xe4\xc3\x97\x54\x2d\x2b\x89\x42\xe6\x84\x89\xce\x1c\x55\x56\xf9\x85\x9b\x67\x66\x3c\x8e\xd7\x95\xb5\x3b\x4c\x1f\xf9\xd8\x9c\xea\x85\x4f\x94\x81\xee\x97\x4a\xe0\x1c\xb6\x1b\xc2\x5b\x51\xab\xf8\xc8\xe4\x31\xaf\xc2\x97\xef\xa3\x61\x10\xee\x38\x26\x21\xbe\xf2\x8e\x2e\xe6\x5e\x50\x35\xe6\x2d\x55\xad\xbf\xad\x15\x13\xde\x42\x98\x8b\x7e\x20\x1e\x03\x3e\x0a\x55\x14\x20\x93\x4e\x07\xca\x2c\xfb\x2d\xfc\x7a\x31\x82\xaf\x7e\x31\x02\xe3\xfb\xb5\x12\xc5\x73\x08\xcb\xa2\xb0\x10\x92\x26\xa2\xb9\x33\xa4\x53\xcf\xd7\x4d\x85\x0d\x3a\xc3\x56\x23\xbb\xc6\xfb\x2e\xf0\x36\xbb\x41\xf5\x12\x69\x21\x5f\x5d\xdc\xaa\x2d\x12\x39\x0c\x97\xad\x65\x3e\x14\x6e\xf7\x36\x46\x15\x1b\x1d\xb8\xe4\x02\xec\x91\x74\xcf\x54\xbf\x16\x0e\xa7\xd5\x23\x97\xe9\xa0\xe7\x46\x03\xbf\x7a\xb1\x93\xdb\x90\x2c\x37\xb4\x9e\x86\xe3\x5c\x7a\x71\x9f\x30\x2b\xc3\xc8\xc4\x68\xd0\x09\x24\x48\xc9\xbc\xdd\x55\xa9\xfc\x49\x25\x0c\xb0\xb7\xeb\x73\xc9\x41\x94\xc5\xcb\x59\x64\xab\xaf\x73\x72\x26\xc7\x69\x87\xe5\x6b\x55\x41\xec\x5b\x3a\xe5\x5b\x55\x98\x2f\x5c\xed\xea\xa1\xf1\x75\xad\xc3\x7c\xe0\x40\x27\x2d\x0b\x52\x6f\x64\x0c\x00\x74\x45\x19\x67\xc5\x2f\x6a\x5b\xf8\x73\xd0\xdb\xa4\x0e\x91\x23\xff\x1f\xf0\xe4\xff\x06\x80\x50\x35\x35\x56\x30\x2f\xb0\x6d\xb6\x37\x3c\xbe\xa7\xdd\xdd\xe7\x91\x5c\x06\x4d\x41\x27\x7d\xfe\xa2\x97\x3e\xdf\xe7\xf8\xab\x71\xbc\xbe\x9b\xa6\xa6\x08\x08\xf8\x0e\xde\x11\x1d\x11\xeb\x4a\xc1\x66\xe0\x42\xed\xf7\x7e\x6e\xc3\xe7\x18\x3f\xdd\xf5\x69\xdb\x6b\x65\x7f\xbd\xa5\x20\x8b\x13\x92\xb3\x13\x1f\xe9\x86\x16\x00\x0c\xce\xe9\x17\xe3\x5e\x6e\x07\xfe\x1e\x6f\x7b\xc6\x6d\x49\x85\xec\x99\x69\xb2\xfb\x76\xf3\x0e\x34\x33\x6e\x29\xb9\x8b\x9b\x4d\xa7\x61\x4e\x9e\xc5\xdc\x0a\xc5\xa3\xbd\xa9\x50\x3f\x37\x6b\xbf\xf3\xd0\x4b\x84\x74\x08\x31\xfe\x4d\x84\x2d\xed\xc4\x93\x98\x30\x4a\xcb\x5c\x59\xf5\xa1\xed\x22\x85\xb7\x87\x49\xdb\x2e\xa7\x80\x15\xa2\xa9\x7a\x8c\xa6\x28\x50\x2e\x97\x55\x23\x65\x06\x86\x30\xec\xf8\xe0\x4e\x9c\xd7\x4b\xdb\xb3\x21\x96\x2f\x06\xef\xaa\x12\x7a\xba\x48\x1f\xc6\xae\xff\x2a\x89\xca\x0b\x41\xc3\x57\xe3\xea\xb0\x55\x6e\xfb\xab\x4b\x2e\x2f\x2e\x2d\x76\x32\x97\xc4\xbb\xba\xb7\xdf\x49\x4f\xd6\x9a\xb0\x04\x2f\x6b\x79\x24\xc5\x11\xba\x1b\x11\x5d\x69\x00\x6f\xf5\x52\x65\xa9\x8b\xc8\xe3\x3d\xa5\xeb\xf0\x5e\x20\x78\xfe\x91\xc9\xf2\xe1\x88\x44\x46\xa6\xcd\x52\x7c\xa5\xe8\x42\x0d\xaa\x5a\x7d\x41\x96\x9a\x7e\x68\x72\x2f\xf2\x80\xa4\x11\x7a\xf7\x68\x26\x63\xc3\x93\x43\xc8\x03\x57\xf2\xc2\x8e\xa2\x90\x26\x02\xda\xe2\xbf\xa5\xdc\x1d\x7f\x4b\x9d\xc7\x73\xbf\x78\xa0\xad\x31\x59\xd5\x3b\xf0\x68\x3f\xd0\xaa\xc5\x27\x94\x01\x53\x6c\xc6\x04\xba\x56\x38\x20\x85\x0a\xa8\x43\xe0\x65\xe6\x94\xe3\xb6\x37\x30\xf9\x60\xe2\xc5\xb1\x58\xb9\x19\x25\xf2\xf7\x1f\x0a\x11\x7f\xcd\xac\x9b\x6c\x45\xa9\x94\x7e\xa2\x91\x01\x75\x09\x94\xa5\xd9\x8e\xc9\xf3\x72\x64\xfb\xd3\xec\x33\xfa\xb1\x78\x13\xd0\x08\x52\xa9\xd2\xb6\x45\x83\x21\xa7\x2d\xa2\xee\x48\x5f\x25\xf2\x8e\x0d\x12\xce\x63\x93\x15\x11\xaf\x56\x66\xd5\x07\x1e\x64\x7e\x5e\x61\x08\xa5\xac\xc1\x80\x21\xb1\xda\xf3\x85\x4f\x10\x06\x85\xf8\xd4\x70\x5b\x63\x13\x25\xcb\x25\xbe\x4b\xb4\xce\x68\x2b\x17\x15\x34\x0d\xac\x5a\x5e\x8e\xc2\x2a\x27\x6c\xfb\x9e\xf4\xed\x49\x4b\x49\x83\x28\xa3\xa3\x2f\x1b\xc5\xcb\x4d\x1e\x85\xca\xe3\x0a\xa9\x27\x5f\x2b\xb0\xfa\xaa\x49\xfa\x36\xe9\xd9\x0c\xc6\xff\x82\xf8\xc7\x30\xa2\x34\xc6\x4d\x31\xe4\x77\x77\x1a\x77\xbd\xb1\x4d\x9c\xea\x0d\x26\xe2\x6d\x5d\x9e\xbf\xab\xb8\xe5\x8f\x76\x75\xe1\x72\x1c\x0d\x66\xd4\x79\xc6\x25\x49\xa7\x43\xe3\x8f\x3d\x90\x43\xe4\x48\xf9\x8a\xe3\xa0\x44\xa3\x32\x36\x0e\xe6\x8f\x82\x6a\xbb\xeb\x73\x96\xf7\xf0\x3b\x10\x26\xed\x54\x11\xf6\x2f\x1a\xb4\x49\x90\x30\xef\xe8\x2a\x51\xb0\x1d\x1b\x0d\x12\x32\x24\xd2\x4b\x03\x8a\x4e\xfc\xf5\x89\xa2\x57\x5c\x57\x8d\xd1\x28\x8e\xed\xc0\x30\x78\x56\xdc\x73\xa8\x23\x21\x1b\x2b\x85\x7a\x82\x16\xad\x56\x97\xa0\x48\x1b\xf0\x2d\xe1\x72\x48\x67\xb9\x2a\x15\xbb\xba\x71\xb0\x7d\x3b\x7c\xbe\xd3\x33\xa3\xb6\x2f\x6a\xfd\x11\xfe\xdc\xd9\x00\x7f\xfb\x9b\xdc\xc1\xbb\xac\xb2\x2d\x78\xc3\x6b\xd8\x3a\x0f\x06\xbf\xa8\x69\xe9\xce\x1f\xea\xd8\x91\xcd\x06\xd2\xfd\xc5\x9c\xdf\xc2\x40\x63\x7e\x3e\xd6\xf5\x75\x95\x5b\xb5\x53\xa9\x8a\x39\xd6\x33\x13\x96\x39\xfa\x2c\x38\x5b\x19\x7b\xce\x2f\x14\x44\xfd\x5b\xf3\x73\x2d\x85\x46\xfc\x42\x09\x77\x7c\xa1\xd5\xfc\x6c\x56\x98\x28\x11\x33\x60\xa7\x7d\x56\xfd\x2a\xa1\xc0\xfa\x24\xfc\x0a\xcd\x27\x51\x7c\x76\x86\x6d\x66\x2d\x71\xf9\x1c\x26\xfc\x17\x4a\x39\xe3\x8b\xc9\x57\x25\x68\xb0\x2c\x12\x6b\x9c\x13\x81\x74\xd8\xab\xef\x10\xea\xd5\x13\x8a\x55\x92\x44\x69\xb6\xa7\xe5\xcc\xc5\xb9\x65\x85\x52\x3a\xcb\x9d\x2a\x28\xcb\x22\x17\xd6\xd1\x98\xc7\x5f\xdd\xc2\xea\x90\xe6\x8a\x6e\xb4\x6c\x0f\x2b\x5e\x3c\xd0\x19\x9a\x35\x13\xb1\x02\xf3\xd6\x4f\x10\x38\x03\x80\x74\x4d\x63\xb6\xcf\x35\xe0\xdc\x1c\xbd\x10\xb1\xb7\x20\x95\xa6\x18\x85\x7e\x0b\x59\xb3\x66\x05\x1c\x57\xcc\x79\x10\xe8\xb0\xe6\xf9\x7a\xaa\xa3\x4b\x5f\xce\x2f\x6a\x5f\xfe\x1c\x97\x7a\x1c\xf2\x55\x7c\xed\xfc\xd6\xb2\x19\xf8\x8e\x16\x3b\xe6\x20\xe8\xac\xd6\x98\x43\x0f\x2d\xcd\xf2\x54\xfa\x88\x10\xfd\x48\xe0\xce\x63\x3a\x20\xb4\x3a\xad\x1c\x04\x77\x6c\x50\xde\xcc\xef\x56\xa6\xc0\x79\xd4\x8b\xc9\x75\x88\xde\x88\x49\x75\x4e\x45\x0c\xe7\xb4\xdd\x6b\xe9\xe0\xff\x8c\xf0\x51\x8a\x1f\xb7\xeb\xd8\xf8\xb9\xea\xff\x05\xe1\xc7\xd8\x0b\xb4\x2b\xc5\xd9\xaf\xe5\x0c\x6e\x2f\xd4\xf2\xb3\x85\x85\xea\xa4\xb4\xec\xd7\xee\xb3\xba\x5f\x53\x16\xb9\xbf\x16\x78\xa4\xc0\x20\x5d\x17\xb0\x03\xa6\xe7\x94\x6a\xcb\xfd\xa9\x7e\x52\x34\xb6\xbb\xbd\x87\x04\xe2\x15\xee\xd4\xd0\x86\x85\x53\xff\x81\xb6\x6d\x3f\xc3\xcd\x5d\xa9\x1e\x78\x66\xe2\x49\x55\xc8\xea\xdb\xe5\x28\x89\x50\xfe\xae\x76\x41\x56\x50\xa2\x0f\x15\x35\xa5\x69\x5d\xcb\x7c\x1f\xcd\x41\x51\x52\x6c\x39\x1f\xd9\x5f\xc3\x94\xc6\xee\xc3\x58\x2a\x6c\xa4\x6d\xc8\x32\x22\x1d\xde\xd5\x55\x1d\x74\xdc\x09\xd2\xce\x7d\x4a\x58\x9d\x88\x36\xcc\xff\x65\xaa\x2d\xd1\xad\xf9\xc3\x41\x1c\x01\x20\x76\xff\xc6\x13\x0a\x0b\x95\x15\x43\x60\x7a\xd0\x20\x7a\x9f\xa6\x14\x5f\xd7\x9e\x18\x11\x04\xc5\xfe\x95\x26\xd4\xd6\xe5\x6a\x77\xd9\x6a\x2c\x47\x85\x69\x86\xed\x11\x2b\x8e\x99\xcc\xfc\x42\x49\xf8\xe4\x69\x6c\x32\xac\x15\x3c\x16\xe2\xe3\xc8\xb5\xa3\x54\x64\x69\xa2\x26\x09\x9f\xe9\xfc\xc2\xab\x19\x65\xe1\xd0\x64\x7d\xa8\x5b\x49\x66\xea\xb7\x68\x70\x4c\x71\x2e\x80\x9b\x2e\x9a\xe8\xd5\x50\x02\x6d\xf6\x51\xa3\x26\x8a\x89\x62\x27\x59\x2e\xe6\xca\xde\xa6\x7d\xca\xce\xb4\xdf\xa7\x06\xf5\x63\xfe\x68\xb9\xaa\xa5\x0b\xae\x4e\xb4\x18\x45\xf5\x19\xd8\xdc\x3f\x9d\xa8\xae\xe1\xc9\x69\xc6\x88\x6f\xb3\xbd\x3f\xed\x8c\xda\x72\xba\x10\xd0\x7a\x45\x7c\xf4\xbb\x9a\xd4\x7c\x52\xf3\x7b\x48\xd9\x65\x3a\x53\x73\x5d\xad\xba\x9b\xd6\xab\xaf\x76\x4c\xcc\xb4\x45\xc1\x95\xa8\xcd\x41\x41\x80\x3f\xdd\x2e\xe3\x71\x78\xf6\x95\xce\xcb\xf3\x87\xbe\x56\xdd\xab\x83\x0f\x57\x93\x9a\x8d\x61\xd1\x48\x41\x09\xe6\x16\xee\x1c\x79\xc6\xaf\x52\x1f\x11\xb1\x0f\xcc\x17\x24\x95\xa0\x7b\x42\x67\xfa\x23\x9a\xdc\xb8\xd9\x4f\xa8\x95\x8d\xff\x7e\x47\x69\x3a\x1d\xc1\x4e\x24\xa7\x1a\x16\xb7\xea\xac\x4a\x87\x8d\x85\x88\x10\x04\xef\xdc\xa0\x95\x02\xb4\xc5\x1f\x52\x81\x00\xc1\xc7\x91\x40\x21\xd9\x8f\xaa\x12\xe9\x4e\xf8\xa6\xe3\xc7\x0f\xb1\x23\x01\x9b\xf9\x76\xe0\x5b\x57\x0f\x26\xb4\x47\xca\xb1\xea\x29\xc8\x65\x18\xa6\x4a\xe3\xf2\xbc\xd2\xb8\x3c\xaf\x2c\xc1\x4d\x92\x26\xeb\x23\x56\x34\x7f\x85\xff\xe0\x32\x06\x51\x55\xf9\xe7\x79\x03\x39\xee\xca\x19\x61\x66\xde\x5c\xdf\xa5\xcb\x19\x98\x1b\x08\x22\x6e\x20\x42\xc5\xe0\x81\x5b\x8d\x0f\x00\x14\x41\x04\x45\xb7\x6f\xfc\x87\x67\x17\x3b\xb9\xb5\x23\x8a\xb8\x31\x56\x8c\x90\x65\x42\xdd\x44\x33\xf2\x9a\x84\xc1\x4d\x48\x26\xe1\x5c\xda\x17\x87\x58\x3f\xcf\x2e\x4c\x63\x5e\x87\xa9\x92\xed\x06\xde\x4e\x4a\x5e\xde\x90\x30\x23\xbf\x78\xcb\xf6\x9c\xce\x28\xa3\x4d\xdb\x24\x5f\x6f\xf8\x1c\xc5\xf5\x17\x60\x6f\x2b\x31\x26\x0d\x95\xb0\xd3\x9f\x6e\x30\xe4\x6b\x7b\x03\x84\x77\x94\x03\xfe\x77\x15\xbf\xec\xd3\x3a\x45\x65\x69\xf1\xeb\x55\x6a\xbd\x46\xcf\x9a\xa5\x06\x15\xfe\xf1\x66\x53\x10\x53\x98\x61\x54\x44\x2c\x66\xe7\xf8\x80\xfe\xc4\xd2\xe9\xf1\xc8\xbe\x11\x85\x28\x72\x8b\x82\x1f\xcd\x14\x41\x9e\xd3\x38\xe3\xfa\x54\xa3\x5a\x21\x09\xfe\xf4\x75\xfb\x80\x21\x28\xfc\xa2\x76\x4b\xcf\xd3\x80\x67\x7d\x09\xbd\x81\xab\x61\xef\x48\x7e\xa1\x5a\x84\xbd\x2c\xea\x31\x58\x16\x3b\x3b\x1e\x37\x5f\x37\x3a\xd0\x45\x03\x69\xcb\x08\x2e\xc0\x63\x65\xce\xa9\x26\x4a\x3f\x33\x23\x33\xa3\x08\x7a\x67\x03\x85\xb8\x64\x55\x09\x7e\x31\x51\xb2\xfc\xda\x8d\x87\xce\x75\x09\xd9\x64\x11\xf9\xf5\x70\x5c\x77\x06\xc8\x1b\x31\x4d\x58\xe4\xdd\xe5\x41\x0b\x0b\x5a\x9e\x64\xd1\x75\x7b\x1a\x3a\x99\x45\x96\x96\x38\x4b\xb0\x03\x4e\x79\xfa\x7c\xd4\x20\xab\xda\x49\xc7\xd6\x07\xf6\x42\x51\x50\x74\x05\xd7\x68\xc4\xa8\xd9\xfe\x2e\x1a\x0f\x69\xc6\xd2\x78\x48\xfa\x56\xad\x07\x14\x08\x3e\x9d\xa8\x5d\xed\x9e\x96\x9c\xbd\x58\x2b\x88\xcc\xcd\x81\xfb\xb0\x96\x66\x2b\xec\x09\xe7\x84\xcc\x3d\x94\x0a\x21\x1f\x7a\xcb\x77\xb5\x68\x7d\xba\x6a\xb3\x62\x46\x5b\x14\x6a\x43\x30\xf6\xe7\x77\x21\x9a\x0f\xd7\x54\x1e\x75\xf0\xbf\xfb\x25\xa5\x15\xb9\x2d\x02\x68\x12\x76\x34\xcb\xcb\x51\x1c\x89\x41\xbb\x04\xdf\x2a\x10\x6f\x10\xfd\x3f\x08\x2b\x0e\xba\x3f\x71\x74\xa3\x45\x81\x7e\xe7\xe7\x81\x8f\x14\x4e\xd6\xb4\xe0\x90\x66\x13\xed\x6b\x8d\x4a\xb7\xce\x18\x18\x4c\x6f\xbe\x56\xe1\x39\x39\x17\x4a\xbd\xd5\xd9\xc1\x2b\x9f\xf2\x26\xb3\x10\xc3\x75\x61\xef\x55\x5c\xed\x49\xd2\x26\xd4\xa6\xcf\x89\x29\xd2\x2c\xdf\x45\x87\x0f\xb2\xd9\x3b\x74\x2a\xb9\xc2\x48\x75\x44\xf2\x3f\xa8\x0c\xe5\x94\x76\xc8\x7d\x2b\xf0\x80\x8c\x51\xf6\xfc\x57\xe9\x69\x23\x11\xdb\xb3\xe1\x21\xe4\xfb\x89\x5a\xb0\xd5\x86\x9a\x2b\x8a\x1e\xbb\xbb\xd5\x39\x2d\x26\x5c\xad\x97\x85\xc0\xfd\x11\x3a\x5f\x8e\x8d\xeb\xd4\xeb\x8f\x52\x70\x24\x01\xb9\x46\x6e\x4f\x7c\x13\xe4\xbe\xaa\x5a\x31\x55\x01\xcd\x6d\x06\xf9\x22\xd9\xbc\x86\xad\x1c\x49\xe2\x2d\x00\x7b\xd1\x37\x86\x9c\x8d\xc0\x3b\xbc\x20\xe5\xa7\xa8\x72\x3c\xc9\x25\xf9\x2a\xac\xc0\x6d\xec\xdc\x68\xfd\xf2\xbc\x2b\x17\xeb\x93\x69\x1c\xaf\x3f\xa5\xac\xe1\x2e\x69\x8c\xf2\x3b\xa8\x93\x38\x24\xd0\x37\x7e\xc5\x89\x11\x55\xf7\xe2\x40\xbb\x4b\xb3\x5c\x8d\xbb\x4a\xed\x2c\x87\x4d\x71\x48\xb1\xef\x62\x71\x60\x51\x1d\x9b\xa8\xea\x32\x7a\x13\xd2\xf0\x69\xbf\xbc\x34\xbb\x75\x86\x46\x53\x64\x96\x68\x70\x40\xce\xb9\x10\x54\xcf\x42\x2c\x19\xaa\xe7\x26\xb8\x24\xaf\x69\x76\xd5\x07\xd2\x65\x11\x9b\x75\x36\x2f\x42\x26\xff\x36\xbe\x59\xb0\xcc\x4a\x35\x1f\x3c\x16\x89\x2f\x1a\xaa\x25\xa3\xea\xb0\x17\xa1\x61\x3c\xe8\xfb\x8a\x76\x76\x5f\x59\x61\x47\x49\x75\xd4\x52\xe5\x1d\x5b\x3a\xeb\x20\xe9\x86\x1b\x4b\x81\x89\x42\x52\xcb\x09\x57\xdd\xac\xed\x5a\xf3\x87\x3a\x7d\x9b\x45\xab\x86\x49\x7e\x1e\x15\x7d\x12\x9b\x22\xbf\xa8\xf7\x5f\xe6\x3b\x7d\x5b\x6d\xa6\x6a\x9b\x46\x62\x22\xce\x13\xdb\x8b\x5d\x0b\x0b\x9d\x61\x54\xec\x52\xca\x17\x5a\x26\xba\x05\x7e\x31\xde\x7c\x14\x5b\x0a\x6b\x34\x4f\x94\x0d\xd4\x4f\x14\x8b\xad\x9f\x45\x0c\xba\xc4\xbe\x71\x55\xdd\x29\x9b\x08\x48\x6e\x5d\x8f\xd0\x3a\x45\x39\x4a\x33\x28\xa3\x62\x09\x7d\xa0\xc0\x04\x1f\xd4\x8e\xf3\x2a\x1b\x57\x1c\x44\x84\x25\x00\x6c\xf2\xb5\xe2\xeb\x8e\x8c\x98\x03\x55\xbf\x1c\xc0\x17\x36\x37\xe3\x17\x0a\x1b\x95\x99\x7e\x64\x92\x02\xac\x06\x27\x77\x56\xad\x34\xd1\x34\x6b\x30\xbc\x1e\xa6\x23\x6c\x9f\xce\xae\xd6\x2d\xd9\x8b\xaa\xa5\xfe\xec\xdf\xf8\x6b\xb9\x6a\xfc\xc1\x74\x89\xaf\xfd\x91\x68\x47\x51\x62\x84\x16\x8a\xc5\xc9\xd2\x5d\x48\xbd\xee\x63\x3e\x49\xd8\xd3\xc4\x46\x8d\x92\xbc\x8c\x3d\xdd\x12\x7f\xfa\x25\x6d\x44\x7c\xad\xfa\x5c\xcb\x26\x29\x4c\x1e\xbd\x89\x3d\x9a\x75\x19\x68\xc9\x89\x46\xc3\xf6\x35\x32\x37\x57\x45\xea\x23\x32\x25\xf0\xac\x83\x8f\x91\xa7\xf0\x8b\xe0\x69\x29\xf2\x45\x39\x0c\x6f\x5d\x8b\x46\xdb\x64\x20\x1e\x47\x8f\x81\xe7\x8d\x16\x8a\x5b\xe2\x5a\x64\x53\x6f\x55\x19\xd2\x27\x45\x14\x46\x63\x92\x6a\xa0\x5d\x4c\xe8\x4f\xde\x6e\x65\xb3\x56\xb5\xa7\xf6\xd7\x2a\x9f\x65\xa8\x8f\x9d\xa7\xe7\xc6\xd7\x0d\x04\xbd\x57\x3c\x23\x70\xfe\x10\x1f\x2a\x67\xe9\x36\xf8\x7a\x8a\xee\x1f\x25\x2b\x24\xa2\x89\x39\x86\x5e\x19\x76\xa0\x1d\xdd\xea\xfd\x42\xf6\xaa\x46\x1d\x09\xce\x71\xa8\x83\xb9\xb0\xb0\x5a\x0d\x8e\xa5\x59\x65\x7a\x28\x98\x9d\xd4\x6e\x17\xe7\xa6\x9a\x07\x3f\x51\x52\x19\x77\x95\x2d\x31\x5c\xf2\xb8\xaa\x83\xa9\xcf\x6f\x70\x36\x10\xa1\xc9\xec\x72\x49\x7a\x8a\x0e\x1c\x79\x99\x3e\x8e\xaf\x95\x84\x66\x68\xb2\x7d\x34\x09\xd1\x9c\x82\x64\x3e\x8e\x8b\x9b\x14\x72\x28\x29\x2b\x09\xe4\x6f\x2a\xdd\xf5\xdb\x2a\x25\x7d\x74\x43\xf9\x37\xde\xc3\x56\x83\xc3\xe3\xa6\x36\x59\xbe\x84\x0d\x10\x2d\x83\x4f\x74\xe6\x7a\x64\xe2\x8d\x87\x55\xb2\x3a\x34\xd9\x0a\x03\x29\x30\xea\x00\x2c\x62\xc2\x21\x7c\x10\x3e\x78\x93\xf3\x5e\x95\x31\x72\x06\x80\x94\x9e\x39\xd9\xfc\x62\xaa\x6c\x56\xf4\x9f\xdf\xad\xee\xf4\x5d\x0d\x51\x17\xcf\x4b\x24\x02\x33\x94\xa9\xa2\x06\x72\x76\xd2\xfa\x96\xe4\xf8\x9b\x93\xa9\xd5\xbe\xd7\x2d\xce\x5f\x78\xa6\x0a\x31\xb0\x41\x5f\xe1\x8f\x92\x62\xbc\x92\x4b\xd9\xa9\x80\xf9\xd7\x94\xdb\x0b\xfb\xa7\x20\x30\x60\x08\x8c\x70\x31\xe9\x47\x22\x14\x79\x30\x51\x50\x97\xab\x13\xe5\x57\x08\xaa\x9d\x43\x68\xb9\xde\xe4\x45\xb8\x3b\xe2\xed\xb0\x2f\xc6\xb7\x5f\x09\xbc\x41\x2b\xc7\x31\x8e\x9b\x52\xcd\x67\xe7\xe3\x33\x37\xc7\x60\xd6\x8f\x27\x60\xc5\xe0\x3d\xa7\x03\xa5\xa9\x78\x49\xe5\x3c\x99\x65\x91\x27\x07\x5a\x05\xc0\x89\xaf\x37\xbe\x36\x5d\xd2\xa9\x46\xaa\x73\x78\xf6\x05\x14\xd7\x9c\xdd\x87\xb7\x80\xbd\x17\x28\x10\xf7\x25\x2f\xa7\xfa\xf3\x62\x7b\x28\x52\xa9\x4d\xd8\x35\xc2\x7c\x38\xca\x3c\x18\x19\x7c\xed\xcd\x97\x32\x9b\x17\xa3\x34\x29\x30\x09\x1d\xe5\xad\x1a\x85\x06\xfe\xdb\x7d\xb5\xbe\xd2\x22\x44\x6e\x8b\xfe\x11\x58\xc7\x7c\x5d\xdb\x8d\x5f\x3c\x40\xf2\xd2\x99\xe9\xa3\xee\x80\x85\x7d\x66\xa2\x56\xf9\x19\xf4\xba\x38\xf7\x2e\xb2\x74\x9c\xc6\x51\xe1\xa4\xf0\x04\x86\x4f\xef\x10\x26\xd7\xc3\xc0\x45\x69\xff\xff\x23\xc1\x7a\x7b\xfa\xf1\xff\x50\xf6\xaf\x31\x92\x5c\x59\x7e\x18\xce\xce\xaa\x7e\xb1\xc9\x61\x37\xc9\x99\xd9\x95\xb4\x52\xea\xff\x1f\x89\x10\x40\x11\x90\x61\x19\xde\x85\x81\x48\x74\xd5\x0e\xb7\x1b\x3b\xc5\x46\x75\x2f\xb9\xa2\x3f\x98\x37\x23\x6f\x65\x06\x2b\x32\x22\x19\x8f\x2a\x16\xfd\xc5\x80\x0d\xd9\x9f\x0c\x08\x16\x20\x0b\xb0\x61\x49\x90\xbc\x5a\x6b\x17\xf6\xae\xb5\x0f\x43\xbb\x9b\x35\x3b\xef\x1d\xce\x0c\x39\x24\x87\x64\x93\xc3\xe9\x77\xb3\xdf\xcf\xea\x77\x57\x1b\x71\x7e\xe7\xdc\x7b\xa2\x22\x68\xd8\x9f\x18\xc1\xae\xcc\x8c\xc7\xbd\xe7\xf9\x3b\xbf\x1f\x49\xe1\xa6\xe3\x71\x3a\x88\x8a\xc8\xc9\xd8\xa1\x56\xc8\xcc\x66\x7c\xd2\xb4\xdd\xfb\xbb\x63\x1b\x17\xb9\x06\x0d\x5f\xa6\xca\x9a\x13\xc1\x76\x8b\xf0\x77\x9c\x49\x00\x5f\xd0\xac\x87\xfa\x6e\x23\x4c\x0c\x57\x20\x60\x6e\x9d\xa0\x80\x83\xd9\x6d\x5b\x97\xcf\xf7\xd3\x24\x89\x80\x1c\xa9\x91\x92\x0b\x33\x51\xcb\x55\xf6\x6d\x6e\x0b\x02\x85\x8b\x14\x44\x65\xed\x65\x50\x53\x81\xca\xff\x82\x0c\x12\xf6\xe9\x63\x0a\xf4\x94\xd9\x61\x19\x57\x69\x11\xab\x03\x0a\x4c\xce\xb7\xc0\x50\x98\x41\x3e\x7b\x54\x05\x32\xf6\x4d\x1a\x3e\x9a\xf1\x39\xe8\x21\xfa\x4b\x87\xcc\xad\x76\x3c\x73\x13\x7a\xdd\xa3\x34\xc9\x23\x5b\x66\x08\x95\x50\x0d\xc4\xc3\xe0\xe3\x66\x35\xe6\xa5\xc3\xd4\x92\xb2\x1c\xbd\xb1\x3d\x53\x82\xfd\xe7\xa7\x7e\xf1\xd9\x37\x27\x36\x8b\x6c\x12\x32\x04\x48\xaa\xb9\x77\x95\xe8\xcb\x39\x6d\x8c\x2e\xab\xe6\xcf\xb7\x1a\x4b\xff\xb9\xe7\xba\x51\x12\x96\x59\x26\xb5\x10\x20\x31\x6e\xea\xf9\xdc\x9b\x6d\xdd\xba\x81\x9d\x94\x05\xc8\x82\x50\x4e\x00\xe7\x24\x1f\xeb\x72\xff\xc4\xda\xc1\x6e\x25\x58\x77\x66\xaa\xa4\xec\xce\xc0\xa0\x38\xa0\xc4\xe2\x7e\x5e\x34\x37\x35\xe1\x3c\x00\x46\x4c\x8e\x4c\x09\x0f\xff\x91\xa2\xb1\xc7\x16\x47\xa8\xf0\xfd\x46\x79\xe0\xe0\xc1\x2e\x08\xbf\x4d\x9f\xd9\x30\x84\xac\x4e\xcf\x60\xb9\x08\x32\x34\xc9\xc0\xc4\xdc\x4e\x64\xfd\xb2\xba\x98\x59\xb3\x66\x33\x0f\x4e\x43\x7e\x8e\x4c\xd4\xa6\x80\x47\x47\x55\x77\x75\xd5\x24\x85\x1d\xa8\x59\x07\xee\xfb\xa2\x6d\xfb\x30\xf0\x79\x13\x26\x5f\x91\x6e\x4e\x5b\x98\x8f\xbb\xfd\x52\x98\x70\xdc\x68\xf7\x01\x41\xfb\xeb\x55\x7e\xaf\x45\xb4\xf6\x70\x37\xb3\x6f\x94\x51\x86\x29\x3d\x05\x5d\x91\x51\x7c\x4c\xc1\xc8\x88\x82\x1a\x93\xfa\xc0\x55\x9c\xf3\xc4\x4c\x38\x6f\x44\xa4\x04\xc9\x04\x87\x06\x5d\xdc\xcf\x5b\x8e\xe7\x76\x45\x7f\xba\x69\xcc\x84\xd6\x9d\xa8\x81\xd8\x98\x21\x7d\xe1\x31\x0e\x3e\xa9\xa1\x5c\xaa\x17\x95\x0d\x72\x8d\x5d\xbf\x1a\x28\x28\x43\x87\xd0\x79\xae\xcb\xea\xd0\x70\x9c\x9f\x21\x32\x3b\xdf\x02\x41\xed\x97\x99\x35\x65\x98\x99\x10\xf1\x1c\x2b\xfe\xa8\x16\xcc\xef\x36\x1c\xdb\xcb\xfb\xbb\x71\xb4\x6c\xb7\x57\x37\x2d\x40\xa5\xea\x6d\x50\x46\x78\xe6\x69\x05\x32\x98\xa5\x51\x2a\x98\x7f\x1e\x39\x13\x8b\xe8\x2b\x8f\xa3\xb5\x89\xcd\x42\x93\x0d\x14\x73\xf4\x3d\x8a\x14\xf8\x98\xc6\x43\x91\xe2\x1f\x53\x73\xda\x37\xb4\xee\xb4\xd6\x72\xcf\x8b\x2c\x4d\x86\xa3\x34\x1e\x70\x6a\x2c\x4a\x54\x1d\x47\x70\x7b\x59\x15\xf1\x88\xa2\x13\xf9\x96\x03\x24\x78\x7e\x6e\xb5\xc7\xc1\x1d\x83\x20\x44\xd8\x0d\xab\xfb\x6b\xa3\x39\xab\x2e\x5f\x46\xf8\x7c\x75\xbe\x5f\x05\x04\x79\x91\x26\x8c\x98\x16\x4a\x2b\xaa\x1b\xf1\x89\x22\xe6\x09\x47\x69\x0e\x65\x87\x36\x29\xe9\xea\x69\x49\xec\x58\xfd\x9c\x9b\xb8\xa8\x02\x2e\x40\xda\x2e\x04\x5e\x35\x33\xb1\x4b\x51\xb1\x5b\xb1\x3e\xdc\xc2\x4a\x75\x10\xde\xea\xed\x08\xcf\x33\x6d\x0e\x54\x60\x66\xe9\x7d\xa2\xc6\xf4\x60\xfa\x05\x04\xf6\xbb\x68\x37\x48\x71\xb3\x8a\xd9\x64\x0a\xb3\xa5\x4e\xbc\x9a\x66\xcb\x6c\x74\x84\x8e\x9d\xbe\x56\xf8\xd8\x1f\x77\x0f\xe0\xb5\xc7\x55\xe7\x0b\x4f\x89\x79\x39\xa6\x9d\xe7\x9e\xe3\xbe\xcc\x6e\x50\x89\xa3\x4a\xfd\xbe\x22\x44\x3f\x45\x6f\x01\x91\xcd\x3b\x74\xb1\xa2\xd6\x49\x3b\x47\xa6\x50\x55\x26\x71\x7e\xda\x79\xe5\x10\x37\x02\x4f\x04\xb2\xf7\x5f\xb7\x76\x22\x34\x95\x8e\xbd\xd7\xf3\xf6\x71\x85\xf9\x8b\x00\x01\x95\xe3\x1b\x97\x99\xa8\xa0\x38\x86\x33\xa6\x1e\xe5\x13\xf7\xa2\xf2\x22\x75\xf4\x12\x6a\xd8\x5a\xea\x5d\x98\x5f\x46\x42\x72\x4f\x0b\x10\x5d\x6b\xe4\xa1\x73\x73\xd0\x4a\x8d\x52\xf4\x3a\x91\xd5\x5d\x53\xa4\x63\x28\x2c\xf0\x58\xac\x6a\xf6\x86\x65\x5c\x94\x99\xd5\x35\x88\xcb\x35\x51\x5b\x1f\x81\xf6\x27\x21\xdb\x30\xec\xc3\x9b\x7a\x53\xde\xac\xa1\x17\xfa\x35\x59\xf4\x2d\x54\x44\x4a\x5f\xc8\xe4\x23\x79\x52\xd8\x83\x6f\x6b\x4c\xd7\xdb\x6a\x64\x34\x5a\x32\xc2\xec\x89\x2b\xbb\x8a\xf7\x82\x47\xf5\x4d\x7c\x8c\x89\x12\x55\x01\x79\xd5\x84\xa3\x22\xb6\x19\x5f\xb8\x63\x7f\xaf\xfe\x5a\xd8\xdf\xf7\xa9\xc8\x6a\x9c\xae\xc8\x05\x01\x96\x82\x52\x3e\x1f\xab\x3f\xad\x1c\x2a\xa9\xfa\x57\x6b\x4d\xc4\xf1\x3b\x8e\x6f\xe0\xa2\xca\x52\x8a\xac\xcc\x0b\x6b\x39\x40\x46\x12\xf6\x1e\x2e\x01\xc1\xdd\x31\xbc\x75\x44\x64\xd7\xb1\x48\xf1\x04\xde\x57\x95\xa2\xcc\x4c\x2c\xc9\xa4\x0a\xeb\xbc\x4f\xeb\x51\xd5\x40\x33\xe3\x41\xc3\x2b\xbe\xf6\x5a\x77\x29\x36\x45\x61\xb3\x35\x5a\x6a\x12\x10\x75\x74\xb2\xe6\x66\xd2\x3e\xc4\xdc\x2c\x82\xe6\xdf\x6b\xa3\x9a\x1d\xc6\x26\x4f\xd2\xbc\x20\xdd\x70\x9e\xf9\x99\xaa\x81\x7f\xae\x74\x3a\x05\x19\x67\x2d\x1e\xb6\xd1\x99\x16\x26\x2f\x22\x8b\x65\x8b\x50\xe4\x14\xae\x40\x70\xed\x64\xac\x84\x07\xb1\xc9\xb8\xf8\x6a\xd7\x4c\x26\x26\xb3\x49\x81\x30\x05\x3b\x1a\x68\x25\x3e\x6e\xc0\x02\x16\x88\x05\x19\x04\xc8\x00\x38\x1c\x53\x73\xd1\xc7\xda\x26\x17\xad\xc9\x62\xa1\x86\x85\x01\xd9\xc4\x95\x91\x61\xfa\xc9\x57\x7b\xaa\x7b\x86\xeb\x47\xe4\xb3\x6d\x7d\x9f\xc6\xcf\x0f\xc7\xee\x42\x51\xb2\xbf\x1a\x28\x1e\xb9\xab\x80\x57\xf3\x5a\xa4\x46\x58\x11\xa5\x09\x62\x11\xee\x78\xc0\x7e\xaa\xf6\xc7\xa2\xbb\x4d\x0f\x75\xaa\x2b\xeb\x0c\xa3\x70\x3b\x16\x1f\xcc\x6e\x8d\x84\xf9\x94\x9a\x1b\x5d\xd7\xaa\xe7\x7f\x30\x55\xa8\xeb\x3f\x6a\x55\x4a\xb4\x59\x3a\x90\xf0\x10\x35\xd6\xeb\xaa\x25\x7c\x5d\x2d\xde\xa5\x32\x19\xec\xa6\xef\x43\x4a\x7c\x55\xdb\xe5\x47\x0a\x2f\xf5\x5a\xdd\x41\x76\x1c\xa3\xd1\xbb\x81\x67\x52\xb9\xc2\x55\x0f\x19\xd7\xad\x3b\x58\x0f\x54\x3c\xdb\xd8\x0b\x8e\x37\xdb\x4c\xa8\x41\x86\xc7\x75\x4b\xe9\xd6\x62\x9a\x0f\x3e\xf0\x98\x1a\x8d\x8e\x0a\x3b\xce\x77\xf9\xa1\xa6\x2b\x4a\xa1\xf5\x7b\xd8\xc0\xa8\x7c\xdd\x46\xd6\x28\xd5\x0a\xe5\x72\x4e\x4c\x75\xfb\xd7\x2b\x1a\x70\xf5\x0d\xee\xf5\x82\x1f\xd7\x4b\xec\x78\x4d\x8f\x5b\x1e\xa7\xe7\x84\xca\x15\x52\x3c\x91\xfe\xfe\xb2\x5a\x36\x51\xb2\x62\xf3\xc2\x61\x7d\xd0\x1e\xb8\xaf\x10\x49\xf7\xa7\x52\x87\x1d\xd9\x71\x9a\x65\x23\x33\x14\xf4\xae\x96\xb5\x15\xce\x5c\x55\xc1\xfd\xcb\xe9\x1e\x6f\xd5\xd2\xbf\xe9\x1b\x4f\x3b\xc1\x90\x25\x72\x55\xf4\x00\x70\xf2\xd3\x40\xf5\x90\x58\xfa\x05\x1e\x63\xdf\xba\xa2\x7c\xbe\x4f\x75\x24\x94\x05\x8e\xe1\x27\xb1\x0a\x4f\x53\xd3\xcd\x21\x3b\xe7\xe6\x38\xec\xda\x98\x6a\xb0\xdb\xb7\x03\x05\x54\x3e\x86\xde\x9c\x73\xbd\x9e\xd4\xe3\x26\x31\x89\x63\x13\xbc\x3d\xf5\x04\x63\x67\x89\x18\x70\xf3\x14\x26\xfd\x71\x15\xb7\xa8\x97\xc5\x32\xd4\xac\xb6\x88\x5d\x82\x92\x30\xbe\xf1\x67\x14\xb0\xe2\x13\x7f\x4a\x79\x1c\x56\xd1\x63\x0a\xb0\x77\x1c\x38\x1e\x56\xad\x45\xe3\x00\x2b\x97\x5b\x61\x14\x34\xef\xdb\x4b\x32\x3d\x58\x5c\x7f\xa2\xe8\x30\xfe\x48\x63\x01\x36\x55\x36\xbf\x62\xb3\x3c\x4a\x93\x1d\xaa\x66\x5e\x93\xad\xa0\x57\x8e\xee\x34\x17\x47\xf9\x2d\xf2\xee\x71\x08\xe5\xea\x69\xc3\x11\x9c\x54\x68\xc5\x91\x89\x63\x76\x9b\xdc\xf3\xd1\x3d\xfe\xe3\x0d\xa8\x74\x15\xfc\x0c\xec\x8c\xae\x8e\x56\x4f\xd8\x71\x1f\x79\x07\x7d\xaf\x56\x13\x7f\xeb\xad\xad\x78\xe1\x6a\xf5\x48\xf7\x58\x75\x92\x61\x29\xe5\x1f\xda\x60\xab\xe3\x49\x6c\x1d\x6c\x55\xfc\x37\x7d\x4a\x1c\x78\x1b\x9b\xf0\x64\x12\x47\x76\x30\xab\xea\x6e\xa7\x02\x5f\xbc\xe4\x8e\x28\xff\x83\xda\xc1\x57\x1a\xc3\x27\xaf\x2c\xee\xef\x46\xd5\x35\x8c\x15\x7a\x56\xa2\x1e\x05\x75\xd0\xba\x90\x34\x11\x48\x5e\x85\xa5\xad\xa6\xba\xcc\xa2\x5b\xfd\xb4\xea\x50\x8e\xbc\x53\x33\xef\x89\x8d\xf7\xd4\x86\xe8\xaa\x0f\xb9\x2a\xbc\x23\xc8\xbb\x8d\x75\xe4\x98\xb8\xab\x95\x27\x08\x8f\xea\xab\x85\x2f\xad\xda\x88\x52\xb7\xa7\x67\x02\x47\xbc\x93\xf2\x3b\x58\x90\x3f\x57\xe2\x08\xb7\xd0\x86\x10\x0e\x3d\xc5\xef\x45\x81\x70\x5a\x72\x62\x06\xdf\xf8\x79\xe0\x01\x47\x9f\xb7\xe8\x37\x74\xdf\x28\x4d\x56\xd8\x8c\xa5\x13\x59\xf0\x4c\x6d\xb8\xcf\x14\x17\xf7\x92\xed\x67\xa5\xc9\xd6\x66\x6b\x34\x6e\x6a\x6a\x19\x45\x58\xd5\xd9\x9e\x77\x15\xd9\xa7\xd5\xac\x78\xe5\x68\xab\x50\x8e\x9e\x0f\x62\x98\x6f\xc2\x0d\xf1\x89\x1a\xea\xb6\x49\x98\x96\x99\x19\x56\x61\xbb\xd3\xb2\x38\x0f\x3f\x8c\x0d\xc5\x30\x41\x3e\x99\xaa\x11\xbd\xe0\x59\x87\x5d\x1f\x46\x79\x51\x13\x2b\x71\x2f\xdc\x11\x7e\x5d\x51\xd8\xa3\x3c\x4e\x57\xe3\x35\xc4\x01\xae\x52\xe8\x83\xac\xd3\x8a\x77\x81\x99\x02\x04\x37\xb3\x35\xf4\x39\xf2\x52\x77\x40\x65\xae\xc5\xfd\xad\x03\x55\x2d\xbd\xef\x41\x5a\x12\x02\xbb\xa3\x3a\x75\x9b\x4a\x55\x6b\x53\x95\x81\x26\x91\xcd\x42\x4c\xfc\xc1\x4e\xa3\x8d\xc7\xc7\x8d\x12\xc9\xfc\x91\xee\xeb\x69\x99\x25\x26\x8e\xf2\x82\x07\xaf\xa4\xd8\xdc\xf1\x14\x62\x2d\x18\x92\x85\xee\x24\xcd\x04\x7e\x27\x02\xe8\xbe\x9b\xd4\x04\x2d\x2d\x2c\x74\xfb\xd6\x64\x39\x71\x95\x4a\x5e\xad\x1a\xe8\x7f\x4e\x59\x23\xfc\xd4\xbb\x78\xb8\x40\x11\x6f\x38\xc1\x90\x81\x91\xe1\x23\x2c\xa9\x5f\x60\x49\x89\x1a\x27\xed\x28\xa6\xc6\x71\x09\x65\x95\x27\xa0\x05\x8e\x12\xcb\xc3\x1a\x63\x01\x7d\x9e\xd9\x6c\x54\x8f\x33\x8d\x93\xed\x5a\x24\x1b\x7d\x51\xa7\x06\xeb\xd8\x06\xae\x28\x00\xd5\x05\xcd\x65\x79\xa9\x55\xab\xd1\x24\xe1\x88\xaa\x51\x4a\x03\x15\x70\x20\xaf\x75\xef\xe4\x8e\x4d\x96\x45\x8c\xb9\x47\x60\xf2\x5e\xe0\x91\xb6\xef\xa9\x12\x8c\x29\x8b\x51\x9a\x51\xbd\x7e\x56\xfd\xf9\x5d\xa5\x2d\x0a\xd9\x3d\x6c\xe0\x1f\x6b\xd1\x8b\x9a\xf8\x50\x1a\xee\xf4\xe5\x24\x26\x1d\xaf\x09\x8b\xa3\x95\xc6\x40\x73\x9c\x5c\x57\xb9\xea\x9e\x9e\x12\x97\x5a\x07\x76\x45\xca\x17\x5b\x9d\xd5\xf3\xdd\xb1\x59\x66\x8d\x18\xa9\xb0\x56\xef\x9f\x8f\x7d\xdd\xd4\x9a\x7e\x96\xa6\xe8\xec\x20\xe8\x7e\xa0\xbb\x28\x0f\x74\x71\x29\x7a\xa3\x8c\x06\x6a\xed\x7f\x40\x9b\x9f\x8f\x1b\x78\x85\xc5\xfd\xdd\x7c\x64\x26\xac\x40\x2c\x3a\x3b\x33\x5e\xc3\x13\x0f\x5c\xf0\xdd\xb4\x54\xb0\x22\x8f\x6b\xa6\x9c\x0c\x12\xaf\x74\x81\x68\xe3\x7d\x84\xf0\x9e\x4f\xda\x94\xde\x98\xcc\x42\x5c\x94\x48\x86\x56\xd7\xc1\xc7\x0d\xdf\xb6\xb0\x70\xb8\x3b\x36\xd9\xb2\x2d\x26\xb1\xb0\xb3\x61\x71\xbe\x1d\xf8\x59\xd6\xb7\x55\xda\x3b\x2a\x93\x41\x56\xdd\xdd\x9c\xcc\x96\x6d\xc3\x0b\xd2\x64\x29\x48\x73\x4f\xe1\xee\x50\xc7\x3c\xd1\x46\xf9\xbf\x1a\x15\x9e\x48\x43\xc4\x2d\x3b\x5e\xe8\x52\x85\x45\xab\x69\xb6\x4c\xe0\x44\xc7\xc0\x87\x42\x3e\x1f\x4f\x7d\xf5\x25\x4b\x97\x2d\x28\x7d\xa4\xa0\x44\xeb\xa1\x26\x7c\x87\x7f\xb9\xd9\xb0\x8b\xa0\x6c\x4f\x4c\xc2\xcf\x02\x9b\xf0\x87\xca\xcd\xff\x50\x21\x7b\xc3\x34\x01\xe0\x21\xe5\xea\x23\x33\xe8\xd1\x9a\x13\x36\xbd\x27\x7d\xd7\x5d\x5e\xa8\x20\xe2\x3a\x4a\x84\xae\xe9\x34\x0f\x11\x57\x79\x14\x5a\xa9\x5c\x49\x0c\x4a\x77\x20\xc9\x98\x2a\xd6\x5c\xd6\x7c\xa0\xfd\x3c\x2c\x33\xab\x7a\x42\xff\x62\xda\xd1\x2a\xd2\xbf\xf5\x1b\xbc\x84\x2f\x69\x86\x1a\xe3\x54\x72\x11\x9b\x5f\xae\x35\xf6\x14\xe1\xc2\xd3\x3d\x5f\x07\x7b\x7c\xbd\x4e\x30\xee\xe6\x5b\x9a\xf4\xe0\x47\x5e\xea\x0e\xb3\x74\x55\x2a\x2c\x8a\x0a\xd5\x31\xf4\x05\x1e\x68\x34\x8c\x56\x6c\xbe\x9d\x76\x3c\x62\xcf\x07\x14\xc1\x49\xad\xdd\x9b\xb8\xce\xba\xaa\x1a\x31\xca\x96\x4f\x5a\xd4\x1c\x5e\x25\xa9\x09\xaf\x01\xc0\xa0\x28\xba\x3b\x01\x48\xf9\x8b\x18\xdb\x38\x4e\x67\xbc\x32\xdb\x1d\x84\x4f\x68\x2f\x1c\xc7\xda\x12\xc0\xa9\x37\x9f\x35\x02\x3e\x45\x1a\xe9\xd5\xda\x1e\x69\xdc\x52\x34\x48\xa2\xe1\xa8\xa0\x88\x11\x31\x1e\x98\x1b\x35\xa2\x16\x3d\xb3\x9f\x57\xd6\xa7\xb7\x75\x1f\x4b\x02\x3c\x2a\x93\xa1\x08\x07\x8a\x78\x18\x5d\xae\xa8\x87\xb5\xb0\xe1\xe2\x61\xa8\xde\x01\xd4\x71\xf8\x58\xf9\xaf\x7f\xf4\x77\x17\x67\xab\x54\x0d\xc1\xd6\x51\x1a\x7b\x44\x62\x03\xd9\x19\x6c\xf4\x9b\x7a\x38\xf8\x31\xc5\x33\x30\xb2\x99\x7d\xa2\x7a\xeb\x4e\x14\x6e\x6b\x14\x87\x05\x79\x1c\xb9\x25\x9e\xd2\x06\x55\x80\xdd\x64\x75\x15\xbd\x09\x58\x91\xf8\x5b\x4e\xe1\x05\xc0\x2a\x6e\xd2\x85\xc3\xd9\xff\xf3\xa9\x67\xee\xf8\x14\x2b\x02\xd7\xcd\xef\x4f\x24\x92\xbe\xe4\xc1\x4b\xc3\x92\x1f\x83\xdb\xc6\x7e\x4b\xb7\x16\x85\xed\x9b\x93\x34\xa7\x32\x2b\x7d\x3f\xb6\x0c\x53\xc6\xf1\x89\x53\x75\x8b\x89\x32\x08\x6d\x6c\x35\xe8\x7a\xd8\xad\x06\x3f\x0d\xc9\x93\xbc\xd8\x02\x65\xdf\x72\x8f\x56\x54\xd8\x95\x88\xc0\xa5\xa0\x05\x0d\x1d\xa6\xe3\x71\x99\x44\x6f\x94\xac\x8d\xc9\xf9\x66\xbd\xee\xe3\x0d\x7a\xb5\x48\x4d\x81\x0c\x4f\x8f\x6a\xe3\x31\xfe\x5f\x81\x8e\xc2\x55\x94\x9e\x97\x61\x68\xed\x80\x6f\x5d\x68\x81\x34\x47\x90\xc3\x85\xe5\x45\x66\xcd\x38\x8e\x12\x87\x0b\xc3\x9b\xc0\x38\x31\x87\x63\x6a\xea\xe9\xaa\x07\x56\xa4\xe3\x89\x49\x22\xcb\xe8\x1e\xa4\x49\xf7\x02\x95\xb0\x8a\x26\xa9\x0c\x1b\xf9\x3d\x15\x8e\x4c\x54\x45\x45\xbb\xab\x35\xe1\xf4\x6e\xaa\xfd\x8e\xda\xfb\x29\x3d\x67\xff\x88\xbf\x46\x46\xdb\x2a\xef\xc6\x90\x60\xd5\x96\x06\x7f\x8d\xa3\x39\xf5\x5a\x9f\xa7\xe9\xed\x21\x21\xdb\x68\xd9\x63\x87\xba\xc3\xcc\xda\x84\x6a\x53\x22\x53\xd3\x71\xb3\xf6\xb7\x03\xbf\xf7\x4e\x2b\x2a\xe5\x32\xc9\x2d\xb1\x2a\x50\xd7\x14\x55\x07\xb4\xcf\x51\x1f\xbe\xaa\xa0\x4d\xc7\xd4\x3e\x1d\xf7\xf3\x9d\x9d\x85\x85\xcd\xc7\x81\xb7\x42\x48\x03\xa1\x48\xa9\xab\x7b\xae\x44\x56\xf5\x64\x1c\x07\x6e\x0a\x25\xf4\x7d\x3d\xc5\x7f\xa4\xb5\xed\x47\xe5\xd8\x24\xb3\x3e\x42\xbb\xa3\x67\x6c\x8e\x4f\x3b\x8a\x0b\x44\xa9\x49\x1d\x77\xc1\x73\x31\xb2\x4b\xc5\x76\xa5\x83\xcc\xd5\x1c\x37\xb1\xe0\xe2\xfd\x7d\x3d\x5f\x0e\x7b\x44\xf6\x46\x3a\x49\x2d\xb5\xdf\x38\xcd\x2d\x2d\x78\xfc\x1e\xcb\x5f\xf1\x49\x1b\xef\xeb\xd7\xba\x89\xd5\xa4\x75\xdb\x54\xdf\x73\xdb\x7a\x5b\xe3\x1c\x09\x5b\x47\x95\x0e\x2e\xaa\x61\xb3\x8b\x4a\x47\x37\x36\xc9\x60\x4f\x75\x31\x40\xf8\xdd\x53\x48\xad\x87\x24\x32\xeb\x88\x5b\xaa\x8b\x54\x1a\x40\x4e\xc4\x5f\x41\x38\xa4\x2a\x26\xea\xae\x3e\x16\x65\xce\x7f\x7c\xfe\x3d\x10\xb1\xa3\xc6\x7f\xaa\xae\x01\xdb\x92\x30\xe6\x23\xb3\xda\xf1\x3e\xef\x8a\x8e\xe0\xb5\x9c\xf5\x7f\xfa\xab\xfb\xb1\xc9\x65\x1c\x4b\x65\x24\xe7\x5a\xc4\xe1\x0e\xb3\x80\xcb\x78\x22\x28\x83\x79\x5f\x42\xac\x6e\x90\x4f\x94\x56\x9f\x53\x57\xdf\x41\x7f\x80\xc5\x78\x5c\x89\xa6\xf2\x10\x22\x3c\x30\xcb\xec\xb2\xf4\x20\x3d\x0d\xcd\x78\x2e\xb6\xea\x59\xc5\xf2\x16\x15\x11\x23\xad\xfd\x18\x08\xea\xa1\x7c\xdc\x26\x21\x9a\xdb\x38\x26\x7d\x4d\x86\x02\xa0\xb8\x02\x62\xd0\x13\x35\x00\xa9\x86\x94\xf9\xe5\xff\xc7\x0e\x71\x19\x8d\xc7\x76\x10\x99\x02\xf8\x05\x4d\x7e\x84\x31\x4d\x44\x53\x58\xaa\x5c\x40\x15\x72\x0d\xad\x1c\x96\x43\x17\x00\xc5\x51\xec\x7e\xe6\x0f\x09\x3c\xf0\xe8\xd6\x54\xc9\x80\x3e\xa6\x32\xb1\x25\x56\xd4\x81\xc3\x99\x55\x04\x69\xb3\xeb\x8f\x0b\x98\xee\xb5\xd7\xba\x9d\xe7\x9e\xe3\x6d\x06\x3d\x32\x04\x7f\xdb\xc8\x26\x22\x71\xbb\x47\x18\x53\xb8\xa0\x1b\x5c\x44\x75\x95\xbd\x57\x24\x5c\x64\x31\x79\x19\x56\xe9\x1c\x79\xc9\xd5\xeb\xa8\x20\x0b\x2b\xf3\x01\x95\x13\xf1\x7b\xdf\x47\xbf\x09\x7f\xb5\x81\x82\x0b\x3c\xfb\x55\xe4\x7d\x82\x6d\x50\x0e\xe0\xb4\x9e\x99\xbc\x8a\x1d\x80\x4a\xde\x2f\x68\x65\x08\x1e\xb0\x32\x1e\x28\x6d\xf1\x78\x22\x60\xa8\xff\x81\xe2\x0b\x7c\xba\xd3\xf3\xb5\x82\xfb\x81\xd2\xc6\xf9\xe9\x54\xe1\xfa\x6f\xa0\x86\x84\x7f\xd9\xb3\xae\x10\x71\x14\x9a\x71\x87\xfa\xca\xb4\xf3\x0d\x29\x89\x5f\xd5\x42\x7c\xdf\x9d\x7a\x23\xf3\x73\x2a\x2d\x23\x8b\xfa\x1c\xc5\x26\x6c\x3f\xd9\xf0\x52\x50\x50\xc4\xee\xa3\x74\x35\x4b\xd3\x31\xe8\xdf\x04\x7c\x5b\x7d\x0d\xfc\xe8\x77\x60\x8b\x9d\x2a\xb7\xa3\xd8\xfd\x0e\x2c\x8d\xe8\xce\xf8\x4c\x61\x25\x0a\x8b\x34\x5b\xa3\x74\x15\x7d\x0f\x9e\x99\x44\x8e\x04\xb1\x6b\x46\x33\xaf\xab\x61\xb6\x99\xde\x53\x8a\x60\xd6\x0c\xaa\x48\xdd\x13\xcb\xf0\x20\xad\x53\x81\x76\x00\x04\x48\xa3\x88\x38\x42\x0d\x9a\xd6\x12\x9b\x8e\x6c\x96\x4a\x7e\xe8\x82\x13\x1f\xa8\xb4\x8a\x1a\x16\x59\x19\x43\xc9\xc5\x89\xf6\x7a\x01\x5f\x07\xbe\x37\x59\x6e\x13\x82\x4e\x29\x25\x0b\x55\xc5\xf1\xfa\x9e\x05\xf1\x78\xd0\xbd\x49\x14\x4d\x9f\x91\xf8\xda\x87\x1c\xfd\xcc\xae\xd8\xa2\x88\x3a\x1e\x47\x72\x5a\x6b\xaf\x9c\x56\x6c\x26\x79\x99\x4d\xe2\x32\x9f\xf5\x61\xdf\x15\x4d\x1c\x74\xc2\x5b\x87\xe4\x04\xd6\x8f\xf0\x80\xb6\x30\x8d\x8d\x6c\xd6\x67\x7c\x3b\xc6\x60\x2e\x28\x7a\xff\x0b\x5a\xe7\xb0\x8c\x8b\x68\x12\x33\xbf\xa9\xcc\x57\xd7\xf2\x63\x6f\x30\x06\x51\xba\xbb\xda\x9c\x02\xfa\xf7\xb3\x39\x97\x68\xd7\xc0\x2c\x9e\x55\x7c\x14\x4f\xa0\x14\xe0\x60\xc0\x9e\xd2\xf3\xa6\x92\xfe\xe0\x39\x44\x89\x4b\xb1\xd4\x25\x19\xf5\xf6\x6e\x90\xa5\x13\x5a\xe5\x32\x2f\x4f\x4f\x01\x27\x97\x6b\x72\xad\x64\x01\x60\x09\x6f\x61\xab\xf2\x5f\x39\x3d\xad\x38\x2a\xa2\x21\x15\x66\x67\x7c\xc9\x87\xb9\x7e\xc5\x5f\x78\x58\xe6\xc5\x5a\x21\xbe\x2c\x46\xbb\x71\x8d\x58\x43\xbb\x7b\x5e\xce\xed\xe7\xb0\x4b\x0e\xe4\x5b\x2d\x12\xfc\xf6\x3d\x4d\xe6\x08\x4d\x29\xec\xd6\x1b\xf4\x43\x30\x06\xdb\x7a\x1e\x42\xbf\x11\x28\xc5\xc5\x26\xc7\x01\x71\xa0\x85\x25\x2a\x72\x33\x1a\x74\x30\xb3\xae\x82\xb6\x9f\xeb\x41\xdc\x9d\xbd\x2d\x0a\xef\x07\x0f\x2e\x76\x8f\xbc\xb4\x5d\x51\x96\x5c\x0a\x7c\xef\xf3\x43\xdd\x33\x42\xab\x4b\x18\xa9\xab\xcb\x67\x22\xcc\x75\xbf\x86\xcb\x24\x5a\x4a\xb3\x31\xc4\x91\xe1\xd5\xee\xeb\x69\xfa\xfb\xaa\xb4\xb0\x92\x16\xe8\xc6\x38\xa1\xd8\xa9\x97\xae\xc0\x8f\x61\x81\xcf\xac\x57\x8e\x46\x94\x54\xa4\x48\xbb\x6a\xe2\x78\xc6\x6f\x2b\x84\x6a\xb8\xe5\x0d\x5d\x33\xbf\x34\xfd\xdb\xcd\xed\x11\x8d\x27\x59\xba\x12\xe5\xb4\x00\xb6\xce\x34\x2a\xfd\x8c\x96\x9d\x35\x36\xaf\xa7\x22\x77\x83\xf5\xfe\x88\xb6\x16\x1f\xbb\x05\x96\x97\xfd\x38\x1a\x13\x5f\x2b\x2d\x2a\xd6\xa6\x55\x08\x8c\x2b\xce\xf4\xf8\xd9\x4a\xd5\x05\xab\x16\x82\x5c\x47\x93\x7b\xd0\xc4\x69\x32\xdc\xae\xe4\x7c\x61\xf3\xe1\xf1\xcf\x4c\x6b\xe4\xaf\x3e\x59\x78\x9a\xc6\x20\x11\x6e\xfd\x4a\xaf\x45\x42\xb4\x88\xc6\x36\xdf\x51\xfd\x11\xee\xe7\xb6\x56\x7c\xde\x4e\xee\x10\xf8\xb4\x3f\x98\xfa\xa9\xb8\xcb\x84\xe8\x17\xf2\x34\x9f\x55\xfc\x41\xa3\x0f\x40\x3a\xac\x85\xc9\x8b\x2c\x9d\x8c\xa2\x70\x46\x95\xdf\xcf\x29\xfa\x9d\x1b\x4a\xb0\xe2\x63\xa5\x75\x95\x8f\xec\xd3\xd5\xd7\x3b\x56\xde\x03\x0b\xae\x21\x85\x0d\x00\xbf\x8d\x7c\x15\xc6\x80\xab\xc5\x8e\x0a\xbf\x8a\x27\x9c\xc6\x74\xb5\x4c\x85\xe7\xab\x32\x60\x42\x7c\xa1\x38\x2d\xf6\x52\x3f\x0c\xa1\xc5\xbb\xe4\x9e\x79\x6e\x42\xd1\x0f\x9d\xc0\x3e\x77\xec\x4a\x95\x59\xe2\x30\x15\x51\x03\xaa\xad\x8f\xf5\xaa\x98\x83\x15\x3a\x60\x27\xe0\x5a\xae\xe1\x29\x33\x3f\x82\x42\x0b\x52\x0d\x68\x87\x67\xd8\xb9\xaf\x94\x11\x66\xa8\x8f\x8c\x0b\xdb\x98\xfa\xa4\xe5\x52\x6d\xe6\x10\x3f\x23\x6c\x53\x8e\xf2\xb3\x1c\x44\x36\x09\x6d\x3e\xeb\x47\x2a\x59\x8c\x08\x43\x1a\x3b\x7a\xb5\x26\xac\x92\xbd\xf9\x61\x1b\xe3\xda\xc8\x4c\x26\x56\x48\x8c\x24\xf7\xa9\x8d\x3e\x68\xfb\x39\x8a\x26\x4f\x91\x61\x81\xf9\x3c\x4a\x17\x0f\xaf\x80\xa9\x23\x74\x42\x37\xb5\xf4\xe2\x75\x2a\xf4\xd5\x4a\xb6\x82\x2d\x54\x39\xd2\xb7\x29\x0e\x75\xed\xfb\x03\x82\x48\xfa\x01\x1c\x8c\xa3\x26\xaa\xde\xbb\xf0\xbb\xd4\xe9\x60\x5d\xfe\xdc\xe9\x55\xef\xba\xf6\x00\x44\x0c\x49\x51\x9b\xfd\xfd\xff\x68\x56\x8d\x7b\x02\x8e\x0a\x1f\xfd\xaf\xe8\xbb\x90\x7a\x5d\x57\xe8\x81\x77\x54\xf3\xa5\x30\xe1\x72\xcc\x4c\xcd\xc2\x64\xef\x81\xbe\xff\x9b\xfe\xa1\x49\x81\x39\x79\x97\x72\x55\x9e\x54\x84\xd8\xf5\xd0\xca\x8f\xa7\x7e\x5d\x32\xcd\xa4\x6c\x97\x66\x73\x64\xc9\x2c\x5b\x4a\x68\x70\xcf\xdf\xd6\x08\x6a\x86\x77\xc1\xba\xfc\x44\x0d\x10\x22\x51\xc0\xb6\xb9\xe1\x30\x26\xe1\x28\x8b\xf2\x22\x32\x09\xc9\x87\x39\x2c\x18\x83\x09\x04\x21\xe1\xc5\x5f\x06\x99\xcd\x73\x55\xfc\x3e\xa3\x8a\xdf\x67\xa6\x9e\xc7\xc8\x14\x45\x66\x42\xa7\x3c\x80\x64\xeb\xa8\x92\x67\x3d\xda\x42\x83\xd3\xcd\x88\xfd\x48\x7a\x99\x42\x6a\xd9\x71\xa2\xa3\xa7\x5d\x26\x56\x8e\xfb\x99\x8d\x63\xc3\x15\x25\x29\x7b\xa8\x28\x6c\xea\xbb\x95\x27\x6b\x33\xd5\x36\x49\xb0\xe2\xdd\xc6\xab\xbe\x41\x36\x9e\xc7\x83\x85\x69\x5c\x8e\xfb\x91\xd9\xee\xeb\xd3\xcc\x91\x2d\x05\x52\x3d\x27\xb6\xab\xa7\xf0\x53\x67\xd4\x34\xca\x63\xeb\x12\x80\xc6\xd6\x64\x09\x8c\x3f\xbc\xdf\x35\x6a\x6a\xa2\xb3\x4f\xfa\xc0\x52\xa0\xe3\xc8\xd4\xd9\x69\xc5\xb4\xdb\x32\xb2\xb2\x64\x92\x70\x8d\xea\x7e\x08\xef\xaf\xd7\x44\x4c\x95\x84\xe5\x0f\x54\x39\xbc\x5f\xae\x59\xd0\xad\x21\x1e\x38\xab\xc9\x7d\x79\x8e\x4f\x3a\x25\xd5\x57\xa3\xa1\x87\xe0\x51\x6a\x31\xd5\xde\xc6\xc4\x08\x17\x63\x65\x2d\x6b\xb3\x61\xc7\xf9\x93\x74\xcf\xd8\x94\xff\x27\x05\x2a\xa8\x8d\x3f\x22\xe7\xa7\xf1\x30\xb0\x69\x0f\x14\xe0\x8b\x79\xb0\x61\x42\x4e\xc2\x48\x62\xdb\xde\x0c\x54\xff\x4e\xd3\xb7\x5d\xc2\x7e\xe0\xea\x43\xa0\xf4\x51\xee\x07\x1e\x66\x7b\x1b\x4b\x5c\x24\xf2\x5a\x94\x21\x09\x3f\xd7\xf1\x82\x99\x9f\xaa\x94\xe7\xd3\x46\x60\x77\xe4\xa5\x6e\x98\x26\xf9\x24\x02\x82\xdf\xd5\xc7\x21\x43\xc2\xc7\xaa\x1f\x19\x0d\x93\x34\xe3\x1e\xa7\x03\x63\x2e\x0a\xdf\xcd\xb9\x06\x16\x66\xfe\x48\xb7\x9c\x0c\x9c\x76\x35\x8c\x6d\x67\x5d\x71\xc0\x75\x7a\x12\x99\x4c\xcc\x5a\x96\xc6\x92\x14\xb5\xb5\xec\xf7\xb8\x35\xb9\x02\xd8\x29\x52\x5c\xb0\x57\x08\x45\x99\xaa\xd5\x9c\xa7\xa5\x2a\xc4\x09\xb2\xa2\x07\x59\x14\x43\x3b\x13\x8d\xbe\x5d\x58\xc4\x82\x38\xef\x38\x9d\xbf\x99\xf5\xad\x05\xee\x83\x07\xbb\x83\x28\xb3\x55\xce\x2a\x04\xa3\xae\x7f\xb3\xe0\x07\xdc\x95\x2e\x58\x5c\x46\x03\xd6\x41\x13\xf0\x58\xf5\x29\xd7\xd3\x72\xf8\xf4\x53\x6a\x13\x2f\x59\x93\xe5\xe9\x98\x9f\xb3\x0b\xad\x54\xe0\x58\x1b\x00\xce\xf2\x27\xfc\xfb\x7e\x1f\xab\x0d\xbb\x90\xc1\x60\x82\x8f\xac\xbe\x41\xe4\x19\xfc\xb0\x04\x47\x14\x35\xc9\x4b\xa1\xfb\xec\x7c\x43\x58\xb9\x3e\x0c\x3c\x80\x99\x65\xc1\x1d\x6b\x95\x47\x3e\x6f\x5b\xef\xb8\x22\x60\xa7\xb7\x35\x94\xfc\xb5\x6e\x6c\xfa\x69\x46\xc6\x95\x95\xd7\x34\x1c\xe8\x8c\xae\xf0\xdb\x41\x19\xb2\x51\x7d\x95\xbd\x04\x8f\xa7\xf3\x89\x9f\x64\x0f\xb3\x68\x3c\x91\x7e\x9a\x68\x6f\xd3\x15\x8a\x2a\xb7\xff\xde\xd5\x28\x49\x6c\xb1\x4c\xf4\x6e\x9b\x84\xf7\x3e\xb4\x79\xd5\xf5\x49\x46\x65\xbe\x8c\x8e\xc7\xa1\xd6\x61\x7f\xef\x24\xa3\x14\x2b\xda\x49\xb8\x3b\xf6\xca\xb6\x52\xc2\x61\xde\x96\x4a\x74\x05\x4c\x8f\x7c\xec\x09\x8a\xab\xcb\x33\x93\x34\x8e\x72\x05\x56\xe2\x46\xa8\xf4\x28\x5b\xba\xef\xc4\xcb\x0c\xb8\x8b\x83\x7d\x81\x4c\x42\xe8\xe3\xb7\x2e\xe5\x97\xf7\xbf\x28\x3d\x7b\x97\x63\xb4\x4d\x7b\x3d\xeb\x71\x38\xa3\x28\x8e\x26\x93\x28\xb1\xa4\xf4\x28\xdd\x8b\x9f\x07\x42\x46\xa9\x11\xee\xf4\xf8\x85\xf5\x93\x5e\x8c\x44\xac\x1a\xfb\x4e\xbf\x8a\x22\xe8\x1f\x37\x62\xbd\x83\x07\xbb\x49\x99\xe5\xe2\x8d\x51\x11\x62\xfc\x18\x9f\xb4\x50\x3c\xcc\x77\xa3\xcc\xf0\xfd\x88\xac\x7b\x4d\xd9\x60\xeb\xd3\x9b\x3f\xd2\xcd\xd3\x15\x9b\x59\xa2\xb5\x38\x78\x90\x13\xdb\xdb\xaa\x68\x7e\xbb\x75\x86\x89\xe0\xea\x8b\x87\xfc\x10\x7a\x43\x6a\x0b\x69\x4a\xa7\xa6\xa8\xe5\x97\xd0\xaf\xfe\xea\x3f\x54\x25\xd1\xb3\x04\xab\xe3\xe3\xc6\x2b\xa6\x86\xc1\x20\x8b\xdc\x24\x81\xc4\x0b\x6a\x20\xee\x4a\xa0\xa8\x0a\xc6\x51\xb1\xb6\x12\xc5\xb1\x9b\x11\x73\xb8\xe6\xea\x59\x88\x3e\x51\x0b\x79\xa5\x35\x59\xbc\x36\xe3\xa5\x83\xb8\x40\xe3\x84\x46\x54\xfd\xab\x65\x36\x27\x2e\x89\x55\xd3\x4b\x93\x1c\x0b\x7c\xf5\xed\x98\x9a\x49\x4b\x27\x93\x34\xb1\x49\xc1\x8a\x20\x78\x9f\x9f\xa2\xca\xc2\x27\x9a\x05\x36\x5a\x89\xe2\x88\x0a\xfa\xaf\x38\x40\xeb\x8d\xa9\x07\xb7\xde\x50\xec\xa1\x61\x3a\x1e\x9b\x64\xe0\xd0\xca\x68\x82\xcc\x50\xd2\xce\xc7\xeb\x1e\x2d\x49\xfd\x20\xe6\x33\xe7\x60\x14\xcf\x48\x22\x53\x05\x44\xb3\x26\x0b\x2d\x08\xae\x10\x3c\xde\x51\xda\x8d\x27\x6b\x6b\x5e\x99\xb2\x55\x6b\x97\x6d\x32\xc8\x3b\x1e\x9d\xfd\x89\xee\x32\x7f\xd2\x58\x5d\x47\x5e\xea\xae\x8e\x4c\x41\xfe\x18\x45\xcc\x4d\x2a\x6d\xf3\xb1\x8a\xd5\xd3\xb4\xd8\xe5\xa7\x1c\x1e\x87\x5d\x46\x32\x79\x81\x16\x14\x3c\xd9\x43\xf8\x01\x37\x10\xb7\xb8\x9f\xc3\xc1\xa3\x30\xa9\x62\x24\xaa\x1f\x84\xb3\x05\x8b\x07\xbe\xe9\x7e\xb0\xc7\x3b\xb4\x17\x60\x1d\x25\x7f\x54\x66\xf6\x93\xc6\xd6\xfa\xb5\xee\xc4\x66\xa1\x4d\x0a\x33\x04\xa2\x45\xa4\x40\x55\x99\xe8\x62\x0b\xf8\xe4\x70\x37\x4c\xcb\x24\x8c\x62\x7e\x2f\x4c\x94\x3b\x55\x44\x46\xb7\x15\xd7\xb1\x59\x49\xa3\xc1\x2e\xda\x09\xb0\x5a\x67\x15\x05\xc3\x69\x58\x1f\x49\x88\x28\x1d\x43\xde\x89\x1e\x08\xd7\xbc\x51\x39\x02\x54\xeb\x9d\xa9\x62\xe4\xbd\xae\x30\x7c\x1f\x37\x4c\xfb\xf3\xdd\xa5\x32\x2b\x46\x3c\xee\xed\xaa\xcf\xd5\x8f\x30\x8f\x13\x85\x47\xd2\x30\xd7\x24\x97\x5f\x84\xa2\xe0\xd1\x9e\x19\x45\xc5\xf2\xbe\xd2\x3e\xbd\x16\xa8\x29\x9f\xcf\xd5\x1c\x64\x66\x89\x4e\xcc\x0e\x14\x9b\xde\x79\x35\x3a\x71\xbe\x0d\x1a\xdb\x2f\xa3\x78\x10\xb9\x3d\xcb\xec\xda\xf8\x09\xa1\xda\xde\xab\x80\xaa\x45\x54\xc4\x78\x95\xb8\x8b\x0b\x28\x7f\xf2\x89\x5a\xf4\x51\x0e\x69\x64\x0a\xd3\x44\xc8\xbc\xe3\xc8\x00\x39\x4c\x93\x7f\x50\xe9\xfb\xe7\x8a\x70\x85\x08\xa9\x6d\x12\xba\x1e\x3c\xde\x22\x5a\x5e\x28\xa3\x62\x07\x0a\xab\xb2\x6f\x13\x9b\x7e\x3f\xb2\xb3\xbe\x84\xf2\x10\xcb\x80\xc9\x85\xd4\x9c\xd2\x43\x55\x5e\xbc\xdb\x48\xef\x0e\xbd\x74\xb8\x5b\xa4\x65\x95\x6e\x76\x7c\xbe\x7d\x54\x0d\xc1\x1d\x55\xaf\x60\x10\xe5\x93\xd8\xac\xd9\xc1\x8c\x26\xac\xbf\xa3\x10\xc3\x27\xe1\xc9\xa5\x5c\xe8\x5b\x2b\x61\x99\x15\x26\x72\x22\x06\x32\x60\x47\xdb\x8b\x4f\x14\x6c\x22\x33\x71\x1c\xd9\x9c\xe0\xc2\x68\x88\x5c\x83\x45\xe1\x13\x9d\x16\x71\x03\x48\xd0\x0d\xcf\x6e\xe5\xaf\x38\xdc\x3d\x78\xf0\xaf\xfb\xfd\x72\x2e\xa0\x01\x50\xb4\xbd\x3f\xa4\x00\x90\xb9\x34\xf0\xaa\xe1\xf4\xff\xe7\x40\x39\xd8\xf7\x02\x8f\xf4\xf8\x80\x28\xbd\xfc\x2c\xe9\xfc\x11\x99\x8d\xa4\xc6\x33\x12\xd6\xef\xa0\x34\x06\x3f\x72\x4a\x8b\x7a\xde\x00\xca\x86\xeb\xf1\xf4\x9a\x00\x72\xf8\x23\x58\x30\xb4\x5d\xff\xa9\x9e\x86\xba\x40\xa6\xd1\xed\x30\xc5\x24\xdc\x99\x9b\xe3\x22\xdd\x3a\xb6\x37\x12\xca\xfb\x34\xfc\x89\x4a\x20\xc2\x11\x35\x7a\xfd\x2a\x87\xe3\xef\x70\x91\x4f\xba\xc1\xaa\xf0\xb3\xa9\x66\x32\x98\x5a\x03\x5f\xfc\x88\x82\x6a\xa1\x71\x97\x90\x8e\x54\xc3\x22\x08\x59\x76\x1c\x5b\xc1\x67\xb4\x28\xf8\x58\x2d\xf9\x95\x6a\x8f\xc5\xe0\x1f\x9f\xf1\xca\x71\xe0\x27\x10\x41\x5f\xd5\xf4\x49\x4b\x50\x7b\xd6\x48\xf5\x6b\xdc\xfb\x7e\xfa\x62\x10\x71\x1a\x86\x4a\xe0\x63\xeb\x8a\xfc\xe2\xb1\x9e\xee\x58\xdb\xa5\xa5\x28\x8c\xac\xf0\x53\xe1\x4f\xce\xe2\xad\xf1\x49\x5b\x4e\x4f\xb1\x03\x81\x55\x51\xfd\xba\xa9\x24\x5f\x6f\xb6\xc4\x50\xaf\x76\x07\x25\xa8\x43\xf1\xd0\xae\x2b\xee\xee\x1f\xe0\x91\x4b\x70\xf5\xb4\x2f\xe6\xd8\x2c\x0f\x53\x87\x7b\xc2\xcb\x3e\x45\xef\x84\x8f\x55\xd5\x2b\x2b\x93\x74\x69\x49\x31\xac\x71\x99\x8a\x4f\x1a\x38\x8b\x43\x8b\x87\xba\x6b\x36\x8e\x85\xf4\xd3\xe1\x8b\xfd\x16\xfa\x71\xf0\xb8\x7b\xa2\xff\x25\xd5\x34\xb1\x3f\x81\x99\x40\x92\xf7\xbd\xe6\x00\x1c\xdc\xd6\x46\x0b\xdd\xd3\x7c\xd7\x24\xc5\x28\x33\x6f\x2a\xaa\x97\xf3\x8a\xea\xe5\x7c\x75\xf3\x7a\xcf\x2e\xee\xef\x3e\xff\x15\x8f\xf2\xfc\xef\x40\xe7\x24\xef\xa5\x5a\x83\x70\xad\xc7\xb0\xf3\x05\x50\x56\xdd\xd0\xe6\x0e\x4a\xd0\x70\x95\x0f\xd1\xb0\xe6\x8c\x90\x17\xbc\x00\xf8\x15\xcf\x45\xa1\xea\xa1\xe0\x2d\x40\x6f\xef\x1a\x1c\x1d\xac\xdc\x29\xac\x0e\xe1\xdd\x51\xe3\xe0\x67\x15\x43\x29\xd3\xee\xc0\x8e\x7f\x14\x78\x40\x1f\x93\x19\x69\x36\x68\xa1\x8d\x25\xb3\x03\x7b\x04\xaa\x6a\xe0\x82\x59\x6d\x4a\x66\x63\x7d\x88\x52\xbd\x3b\x2d\x41\x57\x7d\x97\xe4\xd0\x3e\x68\x98\x90\x1c\x5d\xf5\x30\x18\x3f\x49\xc6\x46\xb0\x94\x5f\x24\x7c\x92\x56\xbe\x5e\x3a\x60\x0e\xa4\xef\xb3\xd2\x6b\xba\xbb\xf8\x41\x0b\xfc\xf3\x50\x77\x92\x55\x5b\x9c\xa5\x81\x50\x61\xe1\x01\x43\x3e\x51\xed\xf1\x22\x8b\x26\xb1\x1d\xcc\xd2\xd3\xc4\xb5\xdd\xd1\xb3\x43\xdf\x56\x2e\xf5\xdb\x30\x8a\xfc\x57\xae\xda\x31\x89\x85\xea\x13\xe6\xf2\x46\xe0\xbb\x5d\x37\x5a\x53\x55\xd3\x4f\x4b\x64\x36\x78\x67\xb7\x95\x90\xe8\x06\x2d\x2f\xd8\xa1\x2f\xa1\x6e\x22\x14\x0e\x6d\xa9\x58\x5e\x30\x1f\x32\x8a\x2b\xd7\x95\x52\xd0\x03\x25\xc2\x7c\xb2\x85\x54\xfd\x50\x77\x64\x69\xaf\x57\x86\xd0\x4f\x90\x5e\xaa\xb1\x37\x3a\x4c\xfd\xc0\x16\x60\x2d\xa6\x87\xc3\x6c\x8c\x35\x95\xf9\xbd\x9a\x41\x70\xc5\x66\xcc\xc6\x81\x6d\xc9\x61\x0c\x96\x25\x36\x32\x1f\xeb\x98\xf3\x82\x6f\xb8\xd9\x89\xc9\x48\xef\x75\x07\x96\x82\xd3\x80\x5c\xdc\xef\xe1\x15\x9e\xb0\x4d\x4f\x6c\x5e\x56\xdd\xac\xf3\x78\xf1\x40\x96\xec\xee\x3d\xa5\xc4\x6a\xcb\x7e\x01\x0d\x24\x99\xd1\xed\x38\xce\xa5\x2a\x89\xf4\xea\x51\xbc\xda\x65\x14\xb0\xfa\x55\x3e\x6e\xd8\x9a\xd7\x5e\xeb\x66\x76\x6c\xc7\xfd\x2a\x5e\x75\xec\xe9\xb3\xaa\xd9\x7a\x5e\x21\xe8\x59\xd7\x4b\x92\x2d\xa7\xac\x45\xea\xa0\x1c\x30\xc2\x56\x9f\x56\xb5\xa1\xd3\x2a\x1e\xc2\xf4\x42\x54\xac\xed\xf0\xc8\xe9\x6d\xaa\xdb\x8a\x38\x1d\x29\x73\x07\xbd\x33\xb8\xe2\x4d\x7a\x90\x78\x5e\xd7\x69\xc9\xf1\x87\xeb\x34\xfd\x2b\x36\xee\x68\xba\x22\xfa\x3a\x41\xef\x3f\xdd\x94\x93\x78\x92\x82\x0b\xc6\x4a\xd1\x7e\x17\x7d\x3a\xa5\xaf\x74\x9d\x2b\xe4\x48\xa9\xde\x51\xe0\xca\xef\x4d\xfd\x3b\x60\xee\x1f\x05\xa4\x93\xbf\x3a\x89\x84\x59\x84\x2b\xab\x8b\xc7\x16\xf9\xc3\xa9\x02\xea\xa2\xfc\x23\x8c\xd9\x8a\xe7\xf7\x76\x03\x55\x2b\xb6\x67\x50\xa5\xcb\x25\x6d\x65\x67\x0a\xbc\x56\xe1\x1d\xdd\xc1\xf9\xf5\xdf\x84\x73\x74\x00\x67\x3d\xcc\xb6\xd5\xe7\xbd\x32\x7f\xa4\xbb\x6a\xa3\xe1\x88\xea\x94\xf3\xdc\x9f\x61\x3c\x81\xa4\x34\x5a\x14\xd8\x6f\xa5\x61\x56\xc5\x1f\xf9\x8c\xcf\xf1\xd1\x0e\x45\xb7\x84\xa7\x5a\x00\xa2\xba\x18\x28\x7e\xf7\x49\x34\x80\x32\x9b\xf0\xdc\xa8\x16\xf7\x15\xd5\x96\xda\xa1\x54\x1e\x2f\xbb\x18\xc0\x64\xc3\x14\xba\x5a\x0c\x69\x96\xd1\x29\x2d\x8a\xce\x44\xb9\xb8\x92\x9f\x2a\x60\xab\x1d\x94\x21\xeb\xbb\xcc\xcd\xb9\xd6\x69\xb5\x40\x05\xed\xb7\x57\x85\x57\xab\x71\x94\x0c\x49\x77\x52\x2b\xa7\xa2\x99\xc8\x58\x2e\x64\xf1\x40\xf0\x73\x54\x18\xf8\x54\xff\xc2\x54\x8d\x48\xfe\x09\x9e\x08\x1a\x09\x77\xd5\x45\x2d\xdb\xb5\xc4\xe6\x91\x49\x66\xd4\x3c\x1e\xd7\x3b\x61\x4f\xee\xd3\x83\x15\xf7\xea\x5d\x44\xdf\x16\xab\xd6\x26\x7b\x15\x89\xf4\xed\xa9\x82\xfa\x06\xbe\x9e\x7d\x1b\x61\x0c\x23\x5a\x11\x12\x73\xe8\x8b\xec\x01\x3b\xf8\x2e\x47\x02\xd8\x7e\x67\x60\x1a\xb1\x1b\x9e\xe8\x79\x4e\xe5\x3b\x0a\x1c\xcf\x6f\x1a\x91\xc6\x13\x28\xef\x8b\xb6\x74\xc7\x69\x9a\xde\x9a\xfa\xd8\xe3\x76\xe0\xd1\x01\x77\xb4\xd4\xc1\x9d\xb6\x71\xc1\xd0\x66\x76\x9c\x26\x68\xf6\xc1\x6a\xdd\x0d\xfc\x58\xc2\xdd\x36\xee\x2d\x53\x14\x42\x9f\x87\x42\x35\xd2\x09\x3e\xd6\xa9\x2a\xf4\x30\xcb\x8e\xea\x06\x9d\x57\x48\xe7\xf3\x6d\xf5\x99\x7c\x92\xa2\x3e\x23\xba\x69\x7e\x78\xe2\x74\xdb\xe0\xc9\xc0\x86\x71\x94\x60\x24\x06\xee\x13\xd5\x16\xac\xcf\x59\x18\x3f\xa1\x1b\xd8\xa7\x80\x2b\x55\x2e\x10\xeb\xea\xc9\x31\xd5\xed\x38\xe6\x27\x8f\x26\x51\x15\xe9\x52\xba\x0d\x20\xdd\xce\x9e\x2f\x2e\x5e\x51\xf6\x94\x75\xc5\xe5\xc4\x0f\x14\x69\x91\xbb\x9d\x8a\xb6\x96\x67\xbf\xf8\x64\xea\x75\xf9\xfe\xb5\x52\x5b\x02\xa4\x9c\xf9\x16\x68\x37\xf1\xdf\xe8\x7e\xc2\x79\xd7\x09\xed\x97\x79\x1e\xd9\x4c\xd0\x75\xac\x17\x89\x55\x24\xe2\x91\x4f\x2a\x72\xf9\x84\x85\xe3\x44\x9e\x54\x4d\x39\xdc\x53\x1a\x68\x67\x1b\x8f\xfe\x79\xd2\x7e\xce\xd2\x81\x9d\x51\xc4\x9e\x67\xb1\x13\xd0\xa7\x40\x4b\x0e\x3e\xf3\xb8\x2a\xf7\xd9\xbc\x30\x85\xdd\xe3\xc5\xf1\x8e\x93\x27\x42\xc1\xe8\x27\xb5\x42\x2a\x99\x47\x24\x81\x1b\x53\xc5\x46\x7f\x41\x31\x2a\xee\x24\xda\x6f\x26\x4c\x57\xba\x08\xc7\x34\x0e\x71\x16\x7b\x47\x50\xb2\x0a\x45\xfd\xb1\x1a\x83\xb3\xc9\x30\x4a\xaa\xf4\xdf\x75\xb1\xff\x31\x5e\xaa\x83\x64\xba\x56\xf7\x3f\x46\x8c\x2e\xe4\xa6\x5b\x57\xf2\xa1\x97\x0e\x77\xe3\x74\x75\xc6\xd7\x46\xaf\xe2\x9b\xa4\xfc\x5f\x7d\x93\x20\x3a\x74\xd3\x29\x2f\x93\x9d\x30\x13\xa8\xbd\xec\x00\xc3\x39\x7c\xeb\x9f\x05\x7e\x3e\x8b\xe9\xb6\x5d\x7a\xef\xf1\x49\x37\xb0\xed\x15\x75\xb6\xc8\x63\xed\x58\xf7\x49\x6b\x6c\x0d\x48\x55\xd0\xcb\x3d\x8f\xc5\xc8\x27\x6a\xa7\x14\x59\x19\x2e\x3b\xf6\x65\x04\xe0\xdf\x51\x63\xc8\xdf\xa9\x51\xa9\x26\x51\x3e\x4b\x0f\xc6\x95\x65\x3c\x5f\xf9\x49\x85\xb1\xfa\x61\xa0\x14\xe4\x9a\x70\x94\x85\x85\xee\x38\x8a\xad\x94\x37\x45\x15\x42\xcd\xf8\x10\xb5\xa8\xa0\x2e\xd3\x32\x0b\x01\x33\x9f\xf7\xfa\x3f\x5e\x23\x99\x5b\xc0\x5a\xec\x0a\xff\xb0\xa1\xab\x2d\xe0\xcd\xe2\x07\xdd\x08\xf1\xa8\x43\x69\xe2\xd4\xc9\xc8\x3b\x89\x25\x47\xe1\x74\x45\xb1\x74\x56\xb6\x2f\xc9\xa3\xa5\x35\x91\x07\x71\x5a\x7b\xae\x92\x31\xb3\xee\xab\x6a\x61\x66\x0d\x54\x68\xa5\xe5\xef\x31\xef\x67\xd5\x9d\xbe\x6e\x42\x9a\x00\xd2\x58\x03\x2e\x7d\xf1\x49\x1b\x7f\x4e\x98\x96\x13\xa4\xdd\x4e\x1e\x4c\x29\x14\x6c\xcd\x2f\x9e\x27\xee\x1b\x28\x4a\x4a\xf1\xea\xb1\x9e\x5f\xaf\x67\xb5\x52\xc7\x86\x1a\x6f\x8d\xd3\x64\x58\x44\x63\xd8\x62\xd7\x8c\xf3\x02\xfa\xb8\x4e\xec\x86\x5b\x6d\xf4\x42\xab\x36\x5e\x32\x2c\xe3\xc4\x08\x2b\x62\x14\x11\xb4\xd5\x3e\x57\xab\x98\x64\x55\xa2\xc0\x69\x49\x95\x7b\x1f\x3c\xb8\xb9\xa3\xd7\xc0\x0d\xbf\x74\xb8\xbb\x12\x0d\x53\x1e\xb5\xc2\x2f\xe3\xe6\xf9\x58\x91\x44\x99\x95\x48\x55\x87\x24\xfb\x55\x44\x94\x17\x1b\x0e\xf4\xd7\xba\x99\x2d\x4c\xe4\xe7\xed\x85\x3f\xa3\xe3\x08\x37\x6b\x82\x67\x69\x56\xa4\xc2\xd9\x8a\xb4\x96\xb9\xb0\xf8\xc4\xe5\x96\x7d\x93\x4b\x19\x46\xd4\x8f\xe8\x0e\x44\x27\xad\x99\xfe\xce\x33\xbb\x1e\xb3\x1e\x61\x1b\xb3\x47\xc2\x3e\xdd\x4e\x21\x86\xfb\x07\xcf\x03\x71\x4e\xbd\xc2\x25\x9b\x0d\x4b\xca\x0c\x0f\x1e\x3c\xec\x8c\x81\xb6\x12\xcd\x76\x27\xfc\xfc\x24\xdb\xca\xe6\xf1\xb1\x2a\x3a\x7d\xac\x07\x8d\xd2\x64\x60\x80\xb8\x72\x1d\xbe\xea\xe1\x09\x0b\x42\x75\x99\x62\x56\x7d\x71\xee\x8c\x6a\xf0\xf5\xa3\xc1\x9e\x8e\xd3\x7a\x3b\xa7\x7b\x82\x18\xf2\x92\xac\x91\x9e\x20\xc2\xff\x73\x9a\x6b\xe8\x3e\x6d\x75\x0e\x9e\x02\x5f\xf4\x66\x5a\x46\x18\x8a\xc7\x7b\x0a\x38\x72\x5b\x69\x67\x31\x9b\x19\xfc\xf6\x4e\x25\x92\xb9\xf0\xe2\x61\x26\x0e\x43\x30\xb4\xa1\xc1\x44\xe0\x21\x14\xd2\x70\xba\x18\xfe\xab\x26\xde\xfd\xa5\xc3\xdd\xd0\x44\x19\xb4\x9a\x50\x42\xdf\x08\xd4\xdc\xd6\x86\x7a\x9c\xaf\x9b\x89\x49\x9e\xa5\xf7\xc5\x03\xfc\xe4\x76\x29\x81\xb2\x7b\xd7\xfd\xe3\x38\x1b\x68\xb6\xe0\x93\xf4\x56\xb1\x33\x67\xa1\x43\x85\x65\xfe\xaf\xf5\x58\xc4\xcf\x11\x89\x03\xef\x34\x43\xb4\xe7\xc8\x02\xfe\x0c\xf5\x26\xa9\x51\x50\x35\x53\xc0\x33\x74\xa1\x4c\xb6\x44\x6f\x13\xc1\xc5\x7d\x78\x18\x54\xd2\x1f\x62\x69\x22\x45\xbd\xa1\x05\x83\xee\x05\x1e\x5b\xf2\x29\x55\x1f\x51\x31\xf8\xb7\xb4\x18\x60\xb7\xff\x7c\xaa\x38\xc7\x7f\xa8\x32\xd2\x32\x21\x38\xb5\x60\x92\x25\x26\xf5\x33\x35\x5f\x26\x43\x86\xfb\x61\x30\x37\x2c\xfe\x8e\xf5\xad\x9b\x6a\x6e\xae\x3b\xb0\x4b\xd6\xcb\xc0\x0b\x4f\xb0\x12\x68\xb9\xac\x48\xa7\xe2\x74\x62\xdf\xea\x50\xe5\x4f\x06\x24\xd4\xf7\x5f\x6c\x91\x5f\xef\xae\x66\x66\xe2\x00\x16\x58\xcd\x3c\xe0\xc6\x27\xca\xf4\x4f\x4c\xb5\xcf\x06\x84\x9d\x47\x24\xc7\xea\x47\xe8\xea\x5e\x44\xcd\x51\x57\xb5\xdd\x44\xef\xdc\xbc\xab\x70\xfb\xc5\x9a\x58\x83\x4a\x8d\xf3\x7e\x6e\x58\x09\x64\x86\x5c\x97\x5c\x57\x56\xfb\x67\x2d\xde\xe5\x50\x77\x60\xd6\x6a\xb3\xec\x60\x29\x43\xa0\xc3\xce\x09\x38\x94\x9b\x2e\x4c\x9d\xd8\x6c\x62\x8b\xd2\x00\x2e\x24\x7d\xb4\x8e\x63\xdb\x7f\xa0\xf8\x2b\xae\xb8\xc1\x51\xfb\x26\x39\xd5\x15\x78\x08\x44\x7f\xb7\xa6\x1e\xa2\x79\x4b\x01\xaa\xfa\x65\x36\xb4\x19\x64\xb8\xf1\xaf\x77\x74\xb1\x08\xe5\x56\x51\xd6\x69\xc2\x91\x16\x5d\x7b\x41\x5e\x0f\x3f\x66\xdd\x49\x6f\x6b\xb1\x1e\xea\x16\x36\xb6\x55\xb4\x3f\xa3\xf4\x5d\x2e\x2b\x6e\xa4\xdb\xd8\x20\xd8\x07\xc7\x1d\xf6\x12\x52\x87\x36\xcb\x47\xd1\x04\xd8\x7b\x04\xc7\xa0\x7c\xe1\xe3\xc0\x47\xd1\x45\x99\x0d\x23\xb4\x1d\x44\x16\x52\x71\x16\x5f\x68\xb8\xf5\xb9\xb9\x6e\x5c\x26\xe1\x88\x9e\x5d\x1b\x09\xa2\x8e\x42\x4d\x54\x50\x10\xcc\x5b\x9a\xe2\x73\x27\x84\xf4\x8a\x6b\x05\x5d\x0c\x54\x7d\x46\x63\x6a\xc7\x51\xb2\x5d\x95\x09\xee\x05\x9a\x0d\x92\x59\x3a\xe1\x7d\x80\x41\x17\xa6\x69\x5f\x64\xfb\x83\xda\x54\x4d\xff\x75\x1b\x16\x2a\x2e\xd8\x0c\x7c\x2d\x63\xb3\xd9\x5c\x5c\x3c\xd4\x5d\x8e\x92\xa5\x34\x5e\xee\x28\xc0\x23\x67\x37\xa2\x61\xe9\xd3\xa0\xa1\x35\xd9\x0e\xba\x5c\xb7\x80\x9d\x86\x30\x26\xa5\x50\xa3\xb8\x1d\xa8\x6c\xf2\xed\x1a\xca\x97\xbe\x59\x06\x7f\x95\x8e\x6d\x91\x66\x36\xff\x92\x47\xb2\x3f\xc4\xfa\xc1\xfd\x6e\x5b\x57\x0c\xe2\xa8\xdf\xa1\x7b\xb6\x9b\xcc\x36\xea\x3b\x3c\x0b\x2f\x1d\xfe\xea\x4d\xa0\xc8\x77\x12\x26\xd8\x35\xeb\x1c\x66\x83\xa1\xd5\x58\xf5\xbb\xf5\xbc\xef\x59\xb2\xad\xf0\x68\x0f\xa9\x68\x20\x12\xd1\x95\x99\xc6\xdf\x9c\x54\x8c\x57\x28\x43\xed\xa2\x37\xee\x94\xa5\x0e\x38\x95\x29\x5c\x00\x6c\xc6\x8f\x02\x45\x50\xcd\x53\xd8\x8c\xfa\xe6\xf2\x91\xc3\x80\xbb\xe9\xc3\x07\x8a\xf1\xea\x82\x5a\x3d\xff\x20\x2f\x66\x14\xdf\xdc\x15\xc5\x4e\x03\xff\x8e\xd8\xf3\xfe\x54\xa3\x4d\xd2\x72\x38\x7a\x9c\xf6\x8d\x88\xec\xa8\xa9\x25\x30\x65\xc1\xe1\x1f\x45\x58\x20\x4c\x3e\xe4\x87\xf0\x1a\xef\xa8\x12\xfe\x97\xc8\x40\xe0\x13\x0f\xc8\xf9\xe3\xa6\xb7\x21\x1f\x73\xb3\xda\x8e\x0e\xfe\xb1\xf5\xad\xb5\xf6\xc5\xfd\xdd\xbc\x14\xb1\x6f\x04\x88\xb8\xa1\x6f\x05\x1e\x0e\xf5\xad\x1a\x1a\x39\x36\xfd\x4e\x43\xd6\x40\x28\xcc\x5a\x06\x59\x96\xa2\x6c\x5c\x59\xb9\xea\x1e\x90\xe2\xdd\x51\xe5\xf1\xe3\x0a\xab\xdb\x14\x3d\xae\x82\xc6\xd7\xd3\x88\xd5\x70\xa5\x5e\xe5\x2b\xbd\x27\xa6\x7b\x7c\xe1\x33\xdf\x59\xad\xaf\x1a\x6d\x3e\x16\xdb\x0e\x1a\xad\x70\xb4\xfd\x8e\x95\xe6\x0a\x75\x89\x11\x05\x80\x87\xdb\x51\xf9\xc9\x4c\xcc\xea\x5f\x53\x85\xf9\xcc\x16\x65\x96\x3c\x3e\xe3\x15\xad\x20\x56\xa5\x69\xc5\x9d\xbe\xac\x9f\x64\x78\x6f\xea\xe5\x14\xef\xa8\x61\x2f\xf0\xb1\x33\x51\xcf\x54\x09\xc7\xf3\x28\x93\x40\xfe\xe8\x61\x63\x6b\x5e\x6b\x08\x84\x2f\x2c\x74\x87\x29\x9c\xa4\x00\xbb\xaa\x5f\xc3\x8b\xfb\x1f\x10\x07\x60\xc3\xf2\xb6\x16\x7d\x41\xdf\x0d\xcb\x8b\xb5\xd8\x6e\x57\xa3\x28\xd0\xe4\x75\x31\xd8\x01\x81\x9f\x9c\xd4\x09\xeb\x6d\x3d\xe5\xfe\xf3\x36\xb9\xc2\x28\x09\xeb\x9a\x45\x9b\x5a\x4f\xaf\x69\x12\xe7\x8f\x74\x07\x51\xb2\x1c\x09\x27\x88\xc3\x46\x57\x3e\x4a\x86\xc6\x9e\xf1\x63\x4f\x69\x36\x88\x12\x53\x30\xe1\x31\xc2\xbc\x9f\xe2\x39\x62\x1f\xc0\xef\xca\x54\x3b\x5d\x3b\xd3\xd0\x36\xb2\x93\xc5\xfd\xc2\xad\x2e\xbe\x54\x24\x1b\x3a\x4a\x40\x72\x9f\x9b\x41\x30\x49\x68\xe3\x38\xcd\x66\x14\x49\xd7\x45\xd8\x34\x67\xec\x16\x16\x36\x1f\xb8\xc2\xf7\xaa\x89\x9d\x9a\x24\x0c\xd0\x03\x5c\x2a\x9f\xa8\x1c\xac\x9f\xe6\x45\x9a\x00\xd3\xe4\x2c\x9a\x43\x64\x7f\x1e\x28\xde\xb9\x07\x53\xc5\x4e\xf7\x40\x29\xde\xb0\xd8\x8b\x78\x76\x3d\x3b\x12\x28\x3e\xb7\x66\x66\x3d\x7f\xa4\x72\x08\xe1\x72\xc7\xbb\xbc\xbf\x98\xaa\xd7\xf6\x17\x8d\x2d\xfe\xf2\xfe\x57\x41\xdf\xa3\xe7\x4b\x6e\x2a\xe7\x77\xb3\xf1\xa6\x8f\xbc\xc4\x93\x71\x2c\x9b\x88\x97\x7b\x17\x37\x03\x2f\x02\xe1\x15\x69\x2b\x79\x3f\x6b\x06\x2b\x51\xce\x2c\x4b\xce\x9a\xb8\x7a\xda\xa9\xa9\xea\xe5\x5d\x54\x35\xf6\x30\x4d\x96\xb2\x34\x29\xf2\x0e\x86\xc6\x79\xbe\x99\x78\x3a\xdd\xb0\x73\x2b\xf0\xb2\x6f\xe2\x38\x45\x1f\x52\x31\x88\x2f\x2c\x28\x86\x42\xfc\x75\x5a\x16\x49\x39\xee\xdb\x0c\x65\x89\x79\xbe\x3c\x96\xd2\xd2\xa2\x87\x62\x7d\xf6\xea\xc9\x8d\x28\x31\x18\x53\x11\x89\xed\xea\x2f\xa5\x45\xd5\x32\xa0\x3c\xb0\xb1\x59\xe3\x12\x2a\xee\xf7\xfb\xca\x6d\x7d\xdf\x35\x4c\x06\x51\x4e\xca\xb2\xa2\xed\x4f\x8b\xe8\xe6\x3e\x15\x3e\xdf\xc7\x43\x43\x22\xb2\x63\xfd\x8b\xb0\x69\xf6\x4d\x13\x16\x31\x74\xa9\x84\x27\xd6\x53\xc7\x5d\x08\x5a\xc0\x45\xcf\x3d\x37\x5b\x93\x7a\x50\xa2\x1b\x20\x32\x74\xcd\xc6\xca\x7b\xc3\x4c\xdd\x56\xf5\x8e\x81\x5d\x8a\xc0\x88\xe5\x69\xe9\xd4\xc8\x5d\x53\xe8\x7e\xfe\x48\xd7\x64\x59\x3a\x34\xec\x31\x50\x56\x40\x27\x89\x8f\x1b\x2e\x50\xee\x8f\x64\x38\xe8\x0d\x20\x1b\xfa\xbd\x40\xa5\x46\xbf\xa7\xd4\xf1\xed\x8a\x89\x4b\x57\x87\x79\x91\x31\x2e\xdf\xa7\x45\xc1\xc7\x8a\x3c\x61\x35\x4a\x72\x82\x69\x6a\xa8\xaf\x13\xea\x3b\x78\xd0\x0b\xea\x1f\x10\x67\x40\xfe\xfb\x55\x69\xaa\x69\xab\x72\x45\x73\xd5\x9d\x57\x73\xac\xbe\x45\x9b\x8f\xd2\x4c\x36\xe3\xe6\x3b\xd5\x7a\xdb\x7c\xa7\xad\xad\x92\xd9\xd8\xae\x98\xa4\x80\x05\x63\x9a\x58\x25\x91\xd0\xe9\xf9\x66\xd7\xb6\xf5\xad\x0b\xf0\x95\xf9\x23\x55\xf8\x2a\x2c\x3c\x35\x49\x42\xb9\xb9\xad\xdb\xe9\xc0\x42\x37\x4a\xf2\x28\xf7\xa2\x71\x08\x5f\x8f\x2a\x31\x8f\xa3\x6d\x10\xed\xbe\x8d\xdf\xea\xdb\x6c\x28\xd8\x0b\x8c\x85\xa3\xde\x57\xa3\x10\x61\x15\x68\x55\x2c\x9a\x54\xe9\x84\xa0\xaf\xa4\x2b\x46\xbf\x2d\x76\xd2\x27\xe6\x79\x1a\x0b\xd3\xbe\x93\x24\xd9\xc4\x9a\xe5\x13\x47\xa9\x36\x29\x33\xcb\x68\x27\xb4\xd7\xd0\x01\xe4\xe3\xb6\xed\x9a\x4f\xd2\x65\xcb\x1d\x3e\x37\xa0\x5f\xed\x0d\x64\xad\x08\x89\x64\x7c\x7d\x6b\x06\xfb\xdc\x73\xdd\x62\x64\x8a\x19\x1f\xd7\x7e\xa4\x64\xf3\x37\xb1\x7d\x80\x38\xea\xf4\x7e\x49\x81\xf6\x4d\x36\x36\xa1\x2d\x8b\x28\x34\x71\xbe\xa3\xe3\x04\xf0\xee\x04\x35\xf6\x08\xc5\x14\x20\x43\x7e\x3c\xd4\xae\x0a\x4f\x0c\x2d\xe3\xc9\xd7\x56\xe4\x2e\x02\x24\xf1\x04\x52\x5e\xa1\x8f\x09\xb1\x75\x9b\xe2\x5d\x66\x43\x4b\x19\xb3\x0b\xfc\xcf\xe9\x81\xa8\x26\x87\xcc\xdc\x5c\x77\x29\x4a\x06\x8a\x73\xe7\x5a\xa0\x06\x15\xaf\x4d\x7d\x0b\x61\x29\x36\x43\xe0\x47\xf1\x70\xf5\xc4\x1d\xc6\x71\x10\xb9\x9e\x6d\x81\xa8\xbd\xd8\x4d\x13\x3b\x43\x2e\x02\x6b\xfa\x03\xfa\x30\x9a\x5b\x8f\x51\xfe\x83\xbe\xe5\x83\xc0\xeb\x74\xf0\xc0\x7f\x9a\x31\x7e\xd9\xcd\x41\x54\x61\xbf\x00\xc4\xdb\xf8\x47\x63\x07\xaf\x75\xb1\xe5\xc1\x83\x0e\x7f\xb9\xc5\xba\xce\x1f\xa9\xbc\xd3\x93\x14\x1a\x01\x48\x70\x1a\xf5\x52\x18\x51\x9e\xcd\x43\xd8\x06\xe0\x94\x44\x5d\xaa\x13\xc6\xbb\x86\xf5\x55\x03\x8f\xee\x39\x4f\x39\x83\xa8\xd4\x77\x9c\xf6\xd3\x55\xb2\x71\x2a\x77\x11\xa4\xe1\x75\x44\xac\xa8\x6f\x32\x22\x02\x91\x70\x13\xfa\x37\x7f\xa4\x5b\xa4\x71\xac\x07\x05\x3e\x57\xfc\xbf\x4d\xf1\xb1\xb9\x39\xd0\x1a\x9b\xc2\xc2\x58\x21\xd9\xd8\xa6\x5c\x98\x6e\x71\xdc\x68\xcc\x9f\x1e\x79\xa9\xdb\x37\x59\x67\x2b\x16\x89\x8f\xdd\x2c\xd1\x98\xe4\x3e\xad\x28\x8f\x21\x60\xbf\x8e\x9d\x02\x9b\xf8\x30\xf0\x49\x02\x57\xce\x90\x75\x7b\x01\xaf\x74\x62\x13\x3b\xd8\xa9\xa8\x9a\xf9\x5d\xb8\x5e\x8c\x9b\xfc\x65\x94\x05\x4c\xec\x99\x69\x8d\x86\xd5\xd5\x3d\x2f\xe8\xbe\xfd\x8c\x1b\xac\xce\xcd\x92\x1d\x96\x26\xc3\x1e\x90\xa9\xd7\x8e\x1a\x87\x6d\x6a\x76\xbe\xd8\x5d\xca\xec\x1b\xa5\x4d\xc2\x35\x3c\x7c\xd8\x51\xd4\x7d\xf8\x38\xf8\xb2\x33\x87\xe9\x8a\xcd\x42\x33\x31\x61\x54\xac\x81\x88\x95\x09\x88\xa6\x7e\x26\x16\xec\x52\xa8\xce\x7c\x5a\x53\x62\xaf\x69\xea\x44\xe3\x32\x26\x16\x24\xe8\x77\x39\x5f\xe6\x81\xbc\x57\x1a\xf4\xdf\xc4\xbf\x0d\x05\x1b\x19\x0c\xed\x38\x56\xbc\xef\xe3\xa9\xc8\xd8\x5f\xf5\x0c\xd0\x2a\xe2\x79\x3e\x69\x32\xfa\x29\x92\x38\xea\xdb\x8c\x34\xe0\xaa\x6f\x41\x49\x01\xb6\x80\x8f\x95\xd3\xe8\x9b\x2c\x8b\x1c\xcc\x09\xf1\xca\x79\x5d\x65\x3e\x3f\x15\xe6\xe5\x28\x59\x49\xe3\x32\x29\x4c\x16\xb1\x3f\x70\x84\x50\x8a\x63\x70\xeb\xbb\xa8\x7c\x5a\x19\xc7\x83\xf4\xad\xea\x57\x5a\xea\x4e\x22\xd8\xda\x9c\xf6\x3a\x8c\x11\x46\x71\x69\x6e\x06\xbe\x7a\x3f\x32\x03\xef\x1b\xa3\x6f\x94\xd6\xe4\x51\xcc\xc2\xec\x32\xc6\x5d\x3d\x2e\x14\x6e\x58\xc1\x18\x7e\x53\xeb\x9c\x4c\xd2\xc2\x14\xa9\x45\x44\xca\xc2\x6f\x35\x11\x38\xd9\x34\x6b\x69\x99\x0c\xad\x54\x12\xa5\xc6\xe9\xeb\x12\xe7\x55\x09\xea\x84\x63\xb6\x19\xa4\x49\x62\x3a\x2a\xe5\xbc\xa0\xc8\xe5\x2f\xa8\x9a\xc9\x24\x4d\xa2\x2a\x49\x38\xb0\xe0\x70\x95\x95\x69\x42\xec\xbd\x41\xdb\x51\x6c\xd9\x56\x3b\xb3\xb8\xbf\x1b\x47\x4b\x05\xac\xb0\xd8\x38\xc5\xe4\x72\x66\xfa\xb8\xd4\x6c\x27\xe9\xac\xaa\x68\xc0\x2d\xe0\x99\xbc\x4f\xe1\x9a\x04\xef\xaa\x3d\xf3\xa8\x91\x07\x55\x21\x51\x18\xa7\x25\x27\x79\xe2\x31\x94\x64\xf3\x07\x6d\x62\xcc\xf9\x28\x9a\xd0\x24\x86\xa8\xdb\xc9\x74\xb3\xef\xab\x9c\x0d\xfc\x1b\xed\x9b\xdc\x56\x29\xc9\x2e\xac\x1a\xc6\x57\x4d\x7d\x78\xb3\xa9\x15\x38\x2f\x4e\xd5\xb5\x5c\x02\xd0\x07\x15\xc0\x4b\x14\x7f\xc3\x7a\xb3\x53\x50\x13\x50\x0e\xf5\x18\x3c\xa3\x47\xab\x26\x26\x8b\xf2\x34\x99\xf1\x6b\x7b\xaa\x26\xe5\x6a\xb3\x76\x57\x14\x4c\x69\x60\x4d\xec\x70\xea\x02\x91\xa7\xcd\x2f\xf3\xe2\x9a\x66\x2a\x9a\xac\x99\x6c\x50\xc3\x3f\xd2\xb5\x0a\x16\xd2\xff\xad\x7d\x33\xb4\x76\xe0\xb8\x1d\x19\x57\xa8\x58\xfc\x40\xd6\x23\xa3\xe4\xbe\x98\xba\x3a\x32\xc5\xd3\x8a\x3f\x87\x27\x52\xf8\xc9\x04\x4a\xe8\xea\x26\x0c\x0d\xbc\x30\xcb\x79\xa2\x48\x33\x83\xc2\x28\x4f\x0c\xd0\x9e\x02\x9a\x61\x8f\x42\x49\xef\x5a\xef\xcc\xcd\x79\x71\x95\x43\x2f\x1d\xe6\x7f\xf8\x84\x6e\x49\xaa\x11\xd5\x92\x46\x52\xf8\x48\x29\x94\xcc\xac\x13\xb6\xdb\xd1\xb0\x57\x6f\x12\x09\xf1\x39\x5a\xf8\x72\xbf\x4a\x9e\x1a\x34\xb5\x48\x59\x3a\x0d\xde\x95\x2a\xd6\xaa\x6e\x7d\x96\x6e\x5d\x74\x17\x3c\xe5\xea\xc7\x53\xbf\xcf\x8e\xd3\x64\x85\x10\x20\x79\xf8\x49\x1e\x15\x48\x25\xbf\xfe\x0a\x27\x0d\xbf\x20\x2e\x0c\x98\x5f\x30\x5e\xe1\x16\x9b\xe2\x3a\xaf\xbd\xd6\x2d\x93\x91\x99\x4c\xc4\x56\x8a\xd2\x98\xea\xc6\x35\x83\xe7\x6a\x5f\x8d\xad\x81\xcc\xcd\xab\x6e\xc4\x9f\xde\x8b\xb0\x24\x37\x29\x13\x17\xba\x61\x99\x17\xe9\x58\xe1\xea\x8f\x06\xba\xe3\xd4\x42\x0a\x1d\x8e\xcc\xa4\xb0\xd9\x76\x8f\x07\xb8\xa2\x40\x24\x33\x3d\x25\x1d\x7e\x59\xb9\xeb\xb3\x1a\x8a\xf9\x5d\xa5\x58\x90\xd9\x49\x46\x0d\xb1\x19\x25\xce\x77\x42\xe9\x2c\x3d\xa6\xf4\xd1\xee\x34\x8c\xc3\x2b\x8b\xfb\xbb\xe9\xd2\xd2\xa4\x2c\x8a\x2d\x6c\xf9\xf7\xa6\x3a\x71\x6c\x33\x7c\x36\x81\x2a\xa7\x60\xa6\x3a\x8a\xc6\x57\x31\x7f\x6f\x04\x1e\x53\x6b\x86\x36\x19\x18\xb4\x75\xf0\x66\xc1\xf6\xc0\xc7\x6a\x96\x64\xd5\xc8\xe5\x60\xaf\x7f\x12\x78\xe4\xc5\x27\xaa\xe8\xc2\xc2\x71\x55\x3e\x50\x7d\x29\x32\xd5\x6b\x5a\x8f\x83\x22\x75\x9f\x7e\xa5\x1d\xcd\x85\xd2\x51\x24\x45\xfb\x54\x96\xb6\x54\x54\x21\x16\x2d\xa0\x76\xf6\x34\x07\x66\x88\xde\xec\xd4\x5b\xc0\xd5\x6b\x10\x4a\xdf\x96\x5e\x67\xce\xdc\xe7\x0d\x2d\x21\x3e\xf6\xe0\x87\x2a\x4d\xdc\x41\x3b\x12\xd6\xe0\x57\x7a\xbe\x4d\x05\x65\x0b\xda\x52\x2f\xff\x5d\x94\xe2\x69\x43\xdc\xf8\xda\xba\x8f\x66\xf6\x82\x25\x42\xa8\x50\x1d\xb8\x3c\x2a\x4a\x2d\xe3\xa0\x3a\xd9\x12\x51\xff\x59\x5b\x44\x3d\x28\xe3\x58\x75\x1c\x8f\xa9\x8e\xe3\xb1\xc6\x02\xa9\xfe\xde\xe6\xcb\xaa\xcb\x76\x4c\x75\xd9\x8e\x29\xe2\xf0\x32\x17\xe6\x60\xb8\xc3\x6d\x3d\x45\x88\x77\x73\xea\xe1\xbe\x8a\xf0\xcc\xd0\x98\x8e\x0b\x9f\xf0\x7c\x8e\xe3\x0e\xf8\x44\xeb\x53\x86\x59\xd4\xef\xc7\xfc\x3e\x9d\x34\x89\x97\x29\x69\x6c\xd4\x97\xf7\x77\x07\x36\x8c\xb6\x08\x45\x31\x89\x0f\x9f\xd4\xf0\x5e\x26\x1b\x43\xd1\x43\x28\xe4\x14\x23\x03\x48\xea\x59\xcc\x3c\xf0\xfd\xd6\x6f\xba\x50\xa5\x1f\xa7\xab\xc9\x0e\x6d\x6d\xa6\xaa\x23\xf6\x04\xe2\x4d\xd6\xc1\x22\xfb\x29\xc5\x62\x45\x68\x05\xd1\x32\x19\x24\x68\x21\xee\x0f\x63\xbb\x62\x33\x94\xf1\x31\x3f\x77\x5b\xd1\x79\x02\x16\xc3\x73\x33\xb8\x4f\x99\x1d\xf1\x55\xfc\x38\x4d\x97\x41\xea\x87\x05\x76\xce\xeb\x6a\x2e\x9d\xa0\xa0\x89\x8f\xe9\xe1\xf2\xdf\xe8\xed\x5f\x0e\xa2\x02\xd1\x31\xfc\xc7\xb1\xc0\xd7\xc2\x8e\xa9\xe8\x38\x1f\x45\x4b\x10\xda\xf7\x08\x93\x8b\x8a\x5b\x12\x75\x19\xac\xd5\xeb\x2a\x94\x5b\x35\xc5\x48\x2a\x20\xe8\xde\x30\x38\x00\xf9\xe4\xf1\xa9\xe2\x1a\x3c\xab\x78\x5f\xc2\x51\x64\x97\x1e\x47\xb8\x83\x47\xf8\xe1\xd4\xa3\x5b\x81\x11\x11\xef\x47\x1e\x96\x79\xbe\x14\xc6\x9f\x01\x0b\x42\x84\x32\xe3\x45\x81\xbf\x15\x68\x7a\x18\xba\x36\x09\x42\x95\x7e\x8f\x86\x85\xaf\x44\x59\x21\x04\xd7\x2e\x3c\xf1\xe3\x19\x0d\xf0\x11\x15\x91\xe1\x8b\x88\x1f\xdd\x69\x33\x22\xcc\xe4\xe3\x1a\xa9\x47\x9a\x65\x58\xda\x92\x1d\xab\xab\xff\xbc\xc5\xd7\x91\x64\x5d\x2c\x68\x2c\x95\x8d\xc9\x84\xd4\xa7\x6d\xdc\x2c\x23\x93\x0c\x96\xca\x58\x69\x77\xec\x22\x23\xc6\xc7\xeb\x6a\x20\xc5\xae\x44\x42\xcd\xa2\x41\xaf\xd2\x70\xf2\xc5\x4e\x54\xc5\xbc\x20\x89\x9a\xf3\x69\x96\xd7\x17\x16\xba\x13\xa2\x5c\x0a\x65\x2b\xe3\xa7\xaf\xea\x3a\xf1\x55\x55\xcb\x19\x64\xe5\x70\x8f\x22\xf2\x65\x98\x0b\x92\x81\x7f\x42\x7e\xd5\xe9\xe8\x7b\x26\x5b\x8c\x1e\x23\x6a\xc7\x6a\x71\x04\x84\x2a\xb4\xf7\xc5\x8f\x33\x9a\x0e\xf1\x47\xe4\x02\xb1\xd7\xff\xfb\xa9\x8a\xe5\x2f\x29\xcf\x15\x17\x83\x17\x70\x03\xa8\xc1\xbd\x83\x3f\xe4\x93\xc0\xf3\xca\x0d\x59\x25\x0e\xb7\xf6\x5d\x8a\xfb\x1c\x6b\xeb\xe2\x7e\xb7\x2b\x3d\x3e\xdd\x16\xa3\xb5\xd8\x26\x56\x49\xd2\xff\x07\xdc\x35\x9f\xf8\x3a\xbf\x5d\x31\xc4\x04\x22\xe1\x30\xc3\x93\xa6\x1e\x36\x0f\xa5\x64\x54\x2c\x76\xab\x99\x4f\xfb\x66\x91\x99\x41\xe4\x2b\xda\x4c\xbe\x18\x74\x14\x11\xa3\x07\x11\x2d\xa5\xc3\x21\xc6\x3e\x10\xf2\x20\xdd\xc3\xd7\x7e\x42\xa4\xba\x92\xe0\xb7\xc8\xda\xf7\xd3\x62\x44\x2d\x04\xc4\xd7\x3f\xa6\xcf\xf2\xb1\xb3\xb9\x61\x9a\xc6\xec\x77\x44\x2f\x43\x49\x4f\x80\x14\x52\x16\xdf\xd3\x2e\x13\xb7\x4b\x82\x84\x52\xcc\xfc\xa0\x45\xe6\xe3\x56\x81\xe7\x30\x4d\x08\x63\xee\x65\x21\xb6\xf5\x14\xed\x05\x91\xf4\x1d\xde\xbc\xda\x3a\xa6\xb6\x9a\x66\xf1\x60\x35\x1a\x58\x60\x01\x30\x88\xfc\x90\x91\x24\x8e\x2f\xd1\xb5\xae\xcf\x2b\xc7\xb7\x9a\x45\xc3\x91\xeb\xca\xc0\x69\xa0\xa4\x85\xba\x14\xeb\xda\x88\x36\xe4\xd3\x6a\x8f\x85\x69\x36\x10\xd9\x61\x3d\xe9\x21\x25\x6d\x29\x4e\x2c\x95\xc9\xc0\x8c\x6d\x52\x98\x98\x79\x69\x51\x3d\xb9\x45\x8b\x8d\x8f\xdb\xca\xf4\x71\xf4\x46\x69\x97\x22\xd9\x96\x6e\x60\xcb\x0f\x6f\xb5\x54\x4b\xe7\xbb\x63\x5b\xcc\xd4\x0a\x4b\xf4\x69\x04\xc9\x77\xd5\xa7\x4f\xaa\xc5\x34\x4a\xfb\xfd\x35\x20\x60\x50\xa0\xdd\x08\x14\x07\xde\x86\x12\x40\x1e\xdb\x62\x94\x0e\xa2\xd0\xc4\x58\xdf\xce\x37\x3a\xb8\x39\xd6\x37\x8a\x6b\xff\xde\x95\xf5\x46\x51\x5e\xa4\x19\x8b\x41\xf1\x6e\x0b\xbc\x3f\xbe\xe2\xd0\x4d\xc3\x94\x02\x91\xb5\xa1\xe8\xf3\x38\x4d\x62\x27\xbd\x77\x69\xfa\xe5\x7a\x1d\xb6\x4a\x34\x5e\xde\xff\xe2\x6e\xdf\x6c\x62\x00\x8e\x9b\x85\xf5\x78\x27\x50\x6d\x32\x5d\x01\xed\x7d\x99\x76\xf0\x7b\xe0\x32\xd5\x1b\xe0\x54\x8f\x4d\x95\x79\x3b\x1d\xf8\xe2\xd2\xb6\xf5\x7d\xbe\xb9\x57\x44\x09\xda\x72\xae\xff\xf0\x43\x25\xbf\xf6\x43\x45\x95\x61\x4d\x56\x8c\x66\xc9\x45\x62\x89\x61\x23\xe1\x22\x88\x61\x59\x1a\xc6\x60\xf5\xe6\x7f\xe8\xb5\x01\xc8\x86\x65\x94\x24\x36\x97\xe2\x15\x96\x3a\x27\x42\x7c\x12\xa8\x6e\x79\x1c\xdb\x64\x68\xf3\x1d\x9e\x4e\x03\x90\x31\x3c\x25\x60\x40\x84\x84\x5f\xe9\x34\xf1\x10\x04\xec\xf2\x89\x40\x2b\x71\x2a\xb7\x50\xd8\x38\xde\xe1\xeb\xbf\x1b\xf4\x98\x61\xf1\xee\xa3\x35\x82\x32\xc3\x55\x35\x8e\x74\x94\xd2\x5b\xfc\xfc\x8d\xa9\x07\xbf\x5f\x56\xe9\x5b\x5e\x65\x6f\xcb\x55\x68\x8a\x9e\xb1\x63\x39\x3f\xe4\x08\x50\x6f\x35\xaa\x40\x07\x0f\x76\x33\x3b\x36\x51\xd2\x51\xd0\x0b\x54\x66\x45\x6c\xc9\x8b\xbf\x4d\xb2\x34\x9f\xb0\xa6\x5d\x75\xd7\xf8\x8b\x0f\xa6\x2a\x8c\xf9\xc0\x11\xd1\xc6\xa9\x19\xcc\xa8\x52\xf2\x59\xac\x2d\x94\x2f\xcf\xa9\xb1\x8f\x3b\x0a\xdc\xd5\xb7\x6b\x69\x32\x40\xf9\x16\xb9\x20\x64\x25\x60\x56\xc0\xb0\x88\xe6\xd6\xad\xa9\x92\x74\xac\xeb\xbd\xda\x24\xea\xd4\x48\x36\x6b\xf4\x9b\x5f\xf5\x91\xe1\xc4\x86\xd1\x52\x84\x09\xbb\xfc\xff\xbd\x29\x10\x7c\xd4\xda\xc4\xe6\x33\x4a\x8e\x3c\x50\xf3\x9d\x47\x15\x40\xf6\x44\x5b\x08\x3d\x49\x73\x61\x9a\x13\xd4\x80\x52\x6a\x3c\xdd\x48\x82\x7e\xad\x5b\xe6\x26\xca\x3a\x0d\xc4\xb3\x40\xa1\xb5\x48\x4e\x1c\x57\x77\xb4\xd3\x8f\x6d\x32\xc4\x0a\x0d\xb4\x73\xaa\x57\xbf\x0d\x79\x9d\x22\xae\x58\xd0\x6c\xd1\x52\xc1\xb9\x36\xf5\x82\x79\xa7\xdb\x34\x25\x06\xce\xfa\x22\x8c\x38\xa5\x63\x8a\x53\x81\x46\x36\x90\xe8\x4a\x5e\x74\x14\x9d\xe3\x79\xad\x3b\x73\x5e\xc1\xd2\x57\x4c\xbc\x5b\x95\x51\x38\x4b\x41\x0b\xec\xa9\x75\xdf\x21\xb9\x37\xdd\xaa\x32\x80\xbd\xb2\xb7\x57\xaf\x24\x3b\x70\xcc\x2f\xd3\xd4\x88\xc0\x41\x95\x76\xd3\xf5\xe9\x1e\x1f\xcd\xc4\xb3\xda\xd4\x11\x01\xdb\x29\xa6\x10\x63\xd9\x08\xd1\xd8\x6f\x01\xaa\x39\x0c\x3f\xef\x16\x44\x03\x67\x74\x68\xd0\xd4\x8c\x5f\x58\xe8\xf6\xa3\x38\x96\xd6\x31\x2e\xf0\xe3\x40\x25\x67\xc7\x03\x3d\x0b\xb2\xd5\xd8\x7d\x63\xde\x93\xd8\x76\x1a\x24\xb6\x42\xaa\xd4\x62\x05\xe2\x68\x1c\xc9\x95\xba\x38\x5e\xb5\xbc\x1a\x0b\xf2\xb5\xd7\xba\x23\xb3\x62\x67\x7c\x75\xfe\x26\x1c\x80\xe0\xfe\xab\x37\x22\x53\x03\xcf\xaa\x70\x60\x52\xf6\xe3\x28\x34\x49\xbe\xdd\x97\x44\x2e\x70\x0c\x22\x0c\x85\xf4\xcb\x22\x61\xe2\x83\xf2\xfb\xf4\x6a\xf9\xff\x37\x52\x97\x03\x0b\x5d\x1b\x16\xe9\x24\x36\xf9\x38\x0a\x6b\xf1\xff\xd4\x9b\xd2\xcb\xc1\x1e\xf1\x86\xaf\x2c\xee\xff\x4a\xe7\xd7\x7f\x9b\x7b\xda\x97\x03\xcd\x17\x7b\x7d\xaa\xb8\x1c\x66\xc8\x53\xe3\x78\x83\x96\x1a\xda\xca\xb7\xc8\xf1\xa0\xad\x7d\x13\xe0\x1c\xa5\xe3\x2e\x92\xae\xf7\x15\x21\xfc\xef\x02\x1e\x06\x8b\xf1\xef\xb0\xc5\x40\x19\xbb\xa1\x29\x41\x1f\x4e\x95\x90\xc8\x36\x1a\x12\xc0\xe2\x66\x4d\x1f\xe4\xd3\xf7\x80\xb4\x44\x60\xf0\x3d\x0a\x65\xb1\xec\x7f\x10\x28\x42\x92\x4f\x94\xfa\x20\xe7\x2a\x98\x8e\xde\xa4\x8c\x42\x92\x85\xce\x37\xbc\xbc\x8a\x43\x81\x45\xc3\x61\xcc\x2c\x62\x22\xc4\xe7\xf5\x02\xb8\xc6\x0b\x77\xd7\x9c\x85\x9d\x9b\xef\x02\xf2\xc6\x32\x5b\x02\x4a\xed\x78\x46\x26\x57\x85\x99\x64\x96\xd8\x64\xa4\x98\xe5\x78\x78\x9c\xf0\xc8\xf9\x46\x40\x2b\x40\x18\x53\xa4\x09\xd8\x7a\x51\xdb\xe9\xf4\x14\xaf\xc5\x69\x0a\x50\x1c\xcb\xd8\x82\xaa\x17\x1f\x70\xf0\x17\x95\x1b\x0d\x6c\xb2\xd6\x51\xec\xf4\x27\xf0\x22\xf9\x44\x29\xb1\x98\xe1\x30\xb3\x43\x53\xd8\x3a\x7d\x9f\xaf\x2c\x5e\x50\x7a\x07\x85\x49\x86\x51\x3f\x66\x52\x45\x84\x3a\x57\xe0\x36\xf9\x44\x49\xac\x86\x69\x99\xe4\xd6\x4f\x40\x09\x3b\xb3\xc7\xeb\xf8\xfa\x1b\xb1\x38\x59\x93\xd7\x19\x25\x3b\xb4\x5c\xf9\xb8\x27\x2f\x73\xcd\xc6\x71\xba\x3a\xeb\x2b\xde\x20\xd8\x07\x8e\x6a\x0f\x42\x17\xa4\xf7\x67\x15\x87\xd7\xed\x2a\x84\xc4\x1d\x2f\xa5\x19\x49\xfb\x2a\x04\x3f\x17\xdc\xa7\x3e\xb4\x3f\x5a\x2b\x0d\x14\x66\xed\x71\x35\xa8\x7f\x8c\xf6\x0e\x16\xcc\x93\x64\x81\xe1\x95\x31\x1d\x81\xdc\xf6\x62\xe0\x39\x6b\x77\x52\x05\x12\x21\xd4\x13\x98\xa8\x41\xcc\x70\x5e\x0b\x54\x1d\x83\xe3\xe5\xa9\x58\xda\x92\xc8\xab\x6b\xec\x3a\xd6\xe4\x69\xb2\x53\x69\x38\x7d\x93\xee\x12\x6d\xf3\x53\x81\x6a\xd0\xbe\x8f\x37\xc3\x7f\x15\x28\x94\xdf\xfb\xd8\xe3\x52\x43\xf4\x31\xec\x7b\xc1\x97\x7d\xfb\x28\xca\xbd\xd8\x21\x4c\x0a\xbc\xc4\x19\xdd\xa9\x39\xd3\x56\x5f\x58\x2a\xb3\x24\xca\x47\x52\x81\x77\x60\x01\x17\x7f\x6c\x68\x9a\x9c\x8f\x5a\x26\x88\x47\x51\x3e\x31\x09\x67\x0f\x88\x11\x6f\x06\x8a\x46\xe8\x66\x33\x23\x98\xef\x1e\x5a\x3c\xf4\xd5\xea\x65\xc0\x5b\xcf\xae\xe3\xa2\xe1\xa2\x1e\x83\x07\xe5\xd1\x0a\x8a\x1c\x84\x68\xc8\xbf\xcb\xf3\x4a\x1c\xe1\x24\x44\x6b\xa4\x1c\x4a\x2f\x4d\xd8\xd8\xc9\x5c\xb9\xa1\xb4\x5f\xff\x6d\x19\xa3\x9a\x2a\x8c\x28\x31\xee\x7a\xda\x60\x05\x4c\x06\x1f\x32\xc2\xbf\xdd\xeb\xbe\xdc\xce\x1b\x1e\xa9\xf7\xb6\x1e\xa2\x5f\xaf\x3a\x75\xc8\x13\x07\x78\x2f\xfa\x23\xb2\x7d\x6e\x96\xdb\xc3\x05\xb6\xf5\xe8\x15\xc3\xc7\xdc\x24\x35\x1c\x81\x7a\xd5\x6a\x5e\xe5\xe4\x29\xba\x35\xfc\xea\x1d\x94\xf2\x70\xd3\x3f\xc3\x92\x41\xd9\x66\x76\xdd\x83\x7a\x41\x0f\x02\xe3\x39\xbb\xae\xb4\xea\x6e\x20\xee\xc7\x5f\xcd\xf4\x94\x7c\xc1\x63\x3d\xc5\xb7\xf1\x83\x40\xb3\xc0\x7b\x60\x21\xab\x02\xc2\xf1\x6e\xef\xa9\xe7\xff\x63\x7a\x64\xd8\x19\x1f\x07\x35\xaa\xa1\x66\xe4\x71\xa8\x6b\x57\x6c\x56\x43\x89\xd1\x27\x04\x26\xf6\x94\x2a\xa9\x64\x43\x5b\xec\x54\x72\x28\x8f\xb0\x33\xb0\x67\x1e\xe1\xad\xe1\x7a\x3e\xd7\xfa\x1e\xc0\x96\xf3\x44\x03\xae\x1a\xce\xf7\x26\xf6\x1c\xe2\xd0\x4b\x35\x00\x7f\x36\x1c\x75\x7c\xdf\xe9\x7d\x7c\x9d\x10\x08\xfb\xb4\xaa\x9f\x0e\xd6\xb0\xbd\x19\xde\x4c\xbd\x45\x0c\x7d\x5d\xd2\xd4\x91\x88\x0f\x59\x21\x8b\x20\xf5\xfc\x47\xd0\x24\xd0\x9b\x0e\xeb\x63\x7b\x83\x1c\xf8\xc0\x42\x37\x11\x5a\x24\xfc\xfd\x05\x35\x5d\x75\xa1\xe1\xaa\x5e\x99\x3f\xd2\x1d\x96\x26\x33\x49\x61\x2d\xaa\x07\x32\x4e\xe0\x15\xf0\xff\xc9\xf1\x46\x14\x49\x38\x2b\x4b\x8d\xae\x6c\x0d\x5d\x29\x34\x7d\x4f\x2b\x55\xbc\xd3\xc1\x97\xd4\x70\x8c\x49\x06\x44\x3a\xae\x15\x92\x5d\x1e\xb4\xe0\x55\xd2\x03\xc5\xee\x01\x88\x05\x1a\x9a\x0f\xc9\xfc\x22\xbe\x38\x46\xeb\x8d\x8f\x1b\x50\xb8\x03\x0b\xdd\xa2\xb2\xaa\x65\xc6\xf8\x1c\xd8\xef\x75\x25\x5b\xb0\xde\x52\xfd\x9d\xef\x9a\x81\x0f\x35\x65\x2a\xb5\x46\xa0\xa6\x9a\x6c\x66\x2d\x7f\x86\xae\x14\x26\xe0\xae\x6e\x86\xec\x5a\xf7\x24\x19\x77\xa7\xd8\xf6\x02\xcf\x50\xf9\xdf\xad\xa9\x9f\xfc\xf9\x28\xf0\x30\x82\x4e\xaf\xd6\x52\xaf\xcc\x11\x0f\x3a\x04\x1e\x50\x71\x11\xed\x3f\x98\x83\x8f\x38\x42\x44\x39\x17\x03\x75\x58\x3b\x4f\xa1\x04\x87\xa6\xf8\xd9\xa9\xa2\xea\x9a\x7a\x3a\xa1\x07\x48\xc5\x5d\x30\xf2\xb2\xd0\x93\xcc\xd4\x85\x81\x3d\x7a\xc2\x0c\x5e\x37\xa1\x95\x56\x32\x1a\x0f\xbf\x3f\x55\x5d\x88\xdf\x0f\x7c\x3d\xd1\x0c\x56\x6c\x56\x58\x86\x12\x33\x53\x77\x8d\xb5\x5b\xd0\x58\x4b\xb1\xc9\x47\x7d\xc3\xa8\x79\xa7\xa3\xe4\xa6\x12\x4e\x04\x1e\xea\xbd\x94\x66\x45\x99\x70\xe4\xe2\xb8\x0e\x9d\xbe\xcc\x25\xd5\x6a\xc8\xd3\xb1\x1d\x55\x11\x86\x33\x4c\x77\x03\x35\xd7\xce\xe5\x16\xf4\x41\x30\xaf\x23\xad\xd3\x96\x48\x5e\xe1\xc0\x3b\x8a\x2e\xf5\x27\x8a\xf0\xf9\x27\xd3\x67\x1a\x64\x73\x8b\x87\x76\x7b\xb8\xd7\x75\x45\xfa\xf1\x5d\x20\x38\xe0\x3d\xd0\xd4\xc6\xae\xfb\x39\x2d\x09\x50\x82\x1f\x0f\x94\x27\xb8\x09\xae\x3a\x8c\x22\x71\x1b\x98\x3f\x1e\xd4\x5a\x32\xbb\xa3\x2a\x7e\x5d\xfa\x07\xdd\xdf\xf8\xeb\x95\xbb\x10\xd5\x56\xfa\x1b\x07\xcb\xf9\xfa\x2b\x6c\x7e\x30\x09\x87\x8b\xda\x05\xc8\x04\xde\xcf\xe7\x53\x3d\x98\x4f\xcc\x96\x58\x9b\x3b\x31\x42\xed\x48\x32\x7c\x9d\x19\x5c\x40\x40\x43\x3c\x52\x32\x0e\xbb\xd7\x5d\x79\x7e\xf9\xcb\x70\x34\xac\x46\xbc\xee\x83\xab\x99\x5e\xe7\x37\x0f\x3b\x1e\x97\x2a\xfc\x87\xff\xbd\xa0\xf4\x63\x76\xaf\x2b\x76\xd0\x99\x67\xe1\x8c\x90\xaf\x6c\x23\xc7\x86\xb8\xe8\x4b\xeb\xdb\xbe\xc6\xb7\xf7\x14\x9c\x31\xe0\xb3\xcf\xb3\x33\xc6\x02\xd8\x45\xae\x75\xb3\x83\xbd\x02\x03\xfc\x57\x30\xba\xa2\x0e\x4a\xc9\x11\xde\xee\x6d\x15\x3f\x4f\x88\x97\x37\x05\xe7\x35\xf3\x94\xc1\x80\x09\x69\x59\x8b\x71\x9a\xc4\x26\xf1\x5a\x17\xe8\x2c\x7d\x7b\xea\x9b\xc8\xdf\xf6\xac\xec\x36\x29\xaa\x8c\x99\xe8\x1d\xf1\xa0\x78\x52\x45\x8f\xeb\x63\x73\xcf\xf6\xb6\xfe\xd4\xf3\x55\xd2\x90\x96\x89\x6b\x0b\xb1\x62\xc3\x54\x8d\x25\xde\x69\x18\xc2\x03\x0b\xdd\xbe\x8d\x5e\x77\xd7\x27\x34\xfe\xca\xe3\xce\xf4\xfc\x36\x2c\x27\x79\x68\x62\xad\xb5\x7d\x56\x29\x7b\x9d\x6d\x04\x93\x92\x1c\x2d\x0b\xb3\x34\xa2\x0e\xa6\xad\xe1\x13\x37\xed\x93\xd9\x38\x92\x69\x1f\xe9\x53\x2a\xa6\x97\x93\x2d\x84\x16\xc8\xe2\xe9\x85\x20\xba\x83\xca\x38\x1f\xeb\xf1\x83\x71\x34\xcc\xa8\xc4\x36\xeb\x41\x47\xef\xc1\xef\xf1\x09\xb6\x93\xb0\x9c\x2a\xbc\xc7\xa5\x46\xd5\xe1\xf9\x6e\x98\x95\x36\x56\x0a\x0d\x97\x61\x63\x04\xd0\xe3\x6b\x47\xc6\xe0\xf2\x1c\xef\x84\xe7\x4d\xbb\x18\x3c\xa3\x5c\x66\x56\x86\x85\x88\x13\xcf\x7b\x52\x4b\x4f\x70\xa9\x79\xb5\x29\xdb\x9a\xd1\x20\xbd\x69\x8d\xfd\x98\x6e\x05\x4d\xa8\xab\x6a\x1e\x16\x68\x11\x07\x08\xe5\xd8\x87\x4f\x3c\xdd\x58\x34\x1c\x15\xdc\xb9\x64\x28\x4c\xa0\x61\x31\x4a\x6c\xdf\x16\x85\xcd\x9a\x62\x0d\x28\xd7\xa1\xcb\x80\x47\xf2\x40\x6b\x92\xa4\x6f\x5a\x56\x78\xc0\x4f\xbf\x49\x2b\x1b\x65\x7a\x7c\x01\x2a\x13\x17\xfc\xde\x98\x60\x17\xe1\x53\x8e\x25\xd3\x4d\x40\x9c\xa1\x4f\x31\xd3\xae\xba\xc0\xd7\x89\x21\x18\x9f\x82\xb1\xfb\x4c\xe9\xf9\xff\x05\x1c\xb4\xac\xb5\x27\xdc\x30\x88\x59\x06\xa1\xbb\xbc\x34\x7f\x4f\xf7\x95\xd7\x69\xee\xf7\xf9\x23\xdd\x49\x96\x16\x69\x98\xa2\x43\x0c\xbb\xfb\xa9\xf2\xe4\x9f\xb6\x0a\x9c\x57\x09\x74\xc9\x33\x79\x9b\x57\xf1\xf6\x58\x93\x5d\x81\xf1\x08\xdf\x3f\xbf\x79\x15\xe3\x8c\x52\x0b\x1f\xa7\x90\x49\x43\xb2\xe6\x98\x7c\x5d\xf1\xf1\x9c\x2a\x5d\xfb\xbd\x56\x64\x51\x1c\xe7\x1d\x7d\x33\xaa\x81\x7b\xae\x65\x5e\x6d\xa1\x1b\x97\xe1\x32\xc7\x7f\x70\x54\xdf\xa1\xaf\xe6\x63\x35\xe6\x9b\xd9\x62\xa7\x07\x62\x70\x52\xcf\xec\xd3\x1a\x3d\x7f\x27\xf0\x9a\x22\x77\x38\xaa\x41\xf6\x77\x6b\xea\x1b\xec\xdb\x91\x8a\x49\x2f\xa9\x85\x5e\x26\xcc\xca\xdc\x51\x59\xba\xe8\xe0\xe0\x41\x17\x1d\x28\x15\x8a\x72\xbc\x4b\xd5\x52\x76\xac\xab\xf6\x08\x18\xdc\xf9\x02\x02\xdf\xe5\xf9\x15\x92\x23\x70\x00\x91\xb9\x39\x0f\x4b\x77\xca\xbe\x97\xb4\x24\xc8\x6d\x37\x57\xd4\x37\xc9\xb2\xcd\xf2\xed\xaa\xd1\x29\x12\xd8\x70\x66\xfb\x7a\x0a\x71\xf0\xef\xe9\x02\xe0\x48\x1f\x2a\x39\xa0\x4b\x0a\x48\x92\xa4\x85\xed\x4b\xaf\x8d\x21\xf1\x70\x42\x82\x8f\xf7\xe0\x91\xd8\x64\x43\x8b\x62\xbd\x20\x53\xab\x07\x2e\x90\x1a\x27\xd6\x67\xf3\xe2\x49\x8d\x8c\x3d\x06\x46\x6b\xde\x84\x53\x1f\xc8\xed\xeb\x91\x9f\x14\xb4\x3a\x3d\x6f\x81\x04\xa9\x21\xcd\x63\x14\x5c\x60\x5d\xdc\x9f\x2a\x51\xb7\x3d\xeb\x14\xec\xe2\x41\x40\x07\x07\x3f\x72\x83\xc2\x1f\xd4\x4b\x3e\x9a\x7a\xdf\xfd\xdf\xfe\x31\xbd\x07\x04\xab\xdb\xbf\x50\x47\x7f\xc9\xaa\x4a\x15\xcc\x1e\x70\x49\x7c\xdc\x4a\xe7\x10\xc6\x26\xcf\xa3\x10\x7a\x0a\x50\x36\x39\xbc\x79\xb5\x0d\xf7\x55\x98\x09\x7c\x1e\x4b\x52\x28\x06\xf5\x8b\xd3\xad\xb3\xc5\xcf\x77\xc3\x71\xae\x68\x45\xce\x4c\x15\x4b\xde\x99\x96\xe4\xea\x45\xcf\x23\x87\x15\xcc\x84\xc2\x81\xaf\x13\x5e\x6a\xea\x1d\xcf\xd3\x88\xb8\x6a\xcf\x9e\x55\x70\xa9\xb3\xaa\x0f\x63\xc3\x34\x49\xc7\x51\xf8\x4c\x8d\x30\xaf\xe3\x46\x07\x59\x53\x09\xb1\xcf\x07\x4a\x1b\x79\x66\x1d\x61\x93\x54\xff\xab\x4d\xe0\x32\xfd\x6a\x19\xb8\x0a\x62\xf5\x82\xa5\x82\x48\x01\xaa\x2b\x9b\x54\x6f\x5b\x54\x0b\xaa\x37\xcc\xc5\x6b\xdd\x94\x3c\x49\x6b\x52\x66\x0b\x54\x94\xf4\xdf\x04\xfe\xe6\x1e\xc1\xbd\x22\x34\xbc\x32\x55\x4c\x98\xd7\x90\xf2\xf3\x45\x2a\x7d\xc3\xea\x99\x79\xa6\x7f\x10\x84\xe7\xa3\x68\x92\x03\xd6\x26\x09\x36\xee\x51\xa4\x55\x7d\x05\xf1\x9e\x02\x07\xdc\x73\xfb\xd9\x84\xa1\x9d\x14\x39\xd5\x79\x11\x85\xff\x25\x7c\xa8\x2b\xc6\x39\x0a\x32\x60\xc5\x51\x70\x38\x09\xeb\x20\x84\xda\x02\xa1\x9f\x98\x17\xea\x94\xe5\x6a\xc8\xb8\x09\xb5\xac\x4c\x70\x5e\x58\x33\xa0\x42\xf6\xe6\xd5\x00\x52\x3c\x2a\xf5\x09\x4d\x32\x88\x42\xca\x92\x5e\xdc\xa4\xfc\x71\xf3\x73\xbf\xcb\xd3\x0c\x83\x21\x78\xec\x10\xc7\x97\x47\x55\xc5\xfc\x52\xaa\xf6\x03\x6b\x76\x6f\x4f\xb5\x06\x2e\x35\xda\x44\x07\x0f\x76\xc7\x66\x2d\xcd\x66\x14\x66\xf1\x06\xad\x20\x69\xf4\xfa\xe0\xf0\x87\x2d\x42\x70\x87\xbb\x99\x1d\x7a\xd8\x66\x4d\x3e\x45\xc6\x7d\x5b\x5a\x5a\x92\x94\x89\xc5\x77\x73\x0d\x07\x0f\xca\x71\x1b\xa1\x64\xe5\x99\x69\x4a\xfe\xe5\xfd\x9c\x62\x03\xac\xc7\xc7\x53\x4d\x22\x6d\xc2\x65\xab\xe5\x8a\x2e\x28\xb9\xa2\x0b\xad\xed\x32\x4b\xa4\x80\x0e\x15\x7e\x49\x79\x5d\x48\x61\xc2\x4f\xdc\x6e\x34\x28\x5e\xde\x7f\xa8\xeb\x74\x28\xea\x0a\xea\x0b\x8e\x6c\xd5\x07\x8a\x26\x0c\x4b\x10\x29\xd3\x5f\x3b\x32\xf7\x85\x05\x47\xe6\xde\xc4\xe8\x1e\xea\x56\xf9\x7b\x66\xb9\x10\x2c\xf9\x84\x1e\x8b\x6d\x5c\x97\x53\xd7\x18\xc0\xd7\xb8\x19\x43\x4f\x2d\x7d\xae\x6d\xea\xac\xba\x95\xdc\x0a\xae\x4e\x50\x63\x64\x16\x84\x9b\x40\xa9\xa3\x25\x79\x34\xb0\x34\x63\x89\xd0\x15\x96\x09\x75\x1b\x14\x7e\xdc\x12\xad\xcf\xa2\xce\xbb\x18\xb1\x72\xc8\xfc\x01\x37\x9c\x12\x47\x18\x4a\xc6\x0b\xc0\xb0\x3b\x1f\x4f\x3d\x19\xc2\xc4\x66\x63\x93\x2d\xbb\xde\x28\xf3\xbe\xc3\x20\x0a\x09\x7c\x73\x1b\xbe\xd8\x9d\x8c\x7c\xb3\x03\x85\xf4\x0e\x3a\xd8\x7c\xd2\x18\x22\x38\xb0\x40\x0a\x14\x6b\xea\x49\x3e\xd6\x53\x4f\xf2\xb1\xf5\x16\xc6\xd4\xa1\xf0\x53\x61\x07\x3d\x22\xaf\xca\xc7\xc1\x56\xdd\x5c\xb0\x01\x26\x85\xcd\xc2\x32\x2e\xca\x6c\x8b\x6e\xae\x2e\xba\xaa\x08\xa1\x6f\x68\x74\x17\xcb\x02\x78\xed\x19\x5c\x17\x9f\xac\xfb\x21\x86\x7e\x99\x2d\xa5\xd9\x80\x30\x6c\x4c\x43\x8b\x94\x49\xf7\xb5\x98\xda\x5e\x41\xb6\xaa\x94\x34\x2b\x18\xdb\xe1\xc9\x86\xfc\xe2\xbd\x18\xf8\x4a\x5b\x95\x02\x77\xb6\x14\x0b\x0f\x39\xd0\x84\x9b\xe3\x9b\xc4\x3c\x50\x51\x59\xba\x47\xeb\x3e\x8a\x9d\x25\x11\x5c\xe1\x48\x77\x1a\x61\x66\x98\x44\x4b\x51\x28\x55\x29\x44\x55\x0f\x03\x1f\x61\x3d\x54\xbd\xe1\xd5\x28\x19\xe4\xa3\xc8\xc6\x03\xe8\xf7\x23\x2f\xf9\x90\x36\x31\x1f\x07\xaa\x6a\xc8\x88\x12\x3e\xd1\x8e\x77\x3c\x89\xd3\x35\x3b\xe8\x68\x71\xf8\x2b\x9a\xe7\xff\x4a\x8b\x31\x58\xe8\xda\xb8\xcc\xe5\xcd\xb7\x95\x75\x5b\x14\x18\xbe\x56\x25\x48\x19\x3e\xc2\xfb\x88\x3e\x22\x7b\x4a\x32\x1b\x3b\x0e\x2d\xb7\x0a\xa5\xff\xe3\xa1\x05\x67\x1a\x41\xff\xf3\xdd\xa5\xcc\x24\xcb\xac\x6e\x85\xca\xec\xed\x40\xe5\x67\x53\xd5\xdd\xd6\x5a\x6f\xa3\x32\xe9\x68\x8b\x44\x6f\x51\x4c\x55\x4b\x91\x24\x4a\x96\x62\x53\x08\x33\x25\xdc\xe4\x1d\xc5\x43\xc2\xf4\x1d\xa2\xb7\xb2\x35\x0c\x5c\x58\xe8\x92\xc0\xc5\xb2\xb5\x13\x17\x06\x4a\x01\xcc\xe7\x61\xcd\xbd\xec\x6c\x5c\x3a\xd3\x39\xf2\x12\x4f\x10\x3d\x0a\x7c\x4b\xe9\x41\x6d\x4a\x45\x13\xca\x12\x6c\x32\x57\xa9\x7d\xa1\xa6\x3a\x0b\x55\x3c\x0e\xd3\x78\xb0\xc3\xe3\x8c\xee\xe1\x56\x9c\x12\x82\xa7\x32\xba\x1f\x68\xf1\x97\xa9\xef\xf5\x33\xde\x04\x25\xa1\xf3\x0a\x06\x38\xb0\x26\xe6\xaa\xac\x10\x2f\x53\xff\x42\x18\x99\xdb\x94\x33\xf2\x14\x5b\x5e\x91\x1d\x61\xe0\x4b\x28\x80\x9e\x56\x18\x72\x03\xfd\xf2\x8e\xd2\x03\x46\x49\x42\xea\x38\xcd\x15\x93\xd9\x49\x9a\x89\x41\xc5\x77\x6e\x22\xcd\xe6\x13\x15\xaf\x4c\x6c\x16\xa5\x03\xd6\xc6\x13\x8d\xb4\x6a\x03\x6b\x0a\x56\x40\x6b\x3a\x3d\xca\x3b\x45\x77\x95\x36\x91\x60\x11\x7c\x5b\xff\x17\x35\x2e\x85\x46\xc4\xf1\x7c\xe5\x3d\x75\xe4\x20\xd6\x4a\xd1\xdf\x9c\x72\x64\x39\x99\xcd\xa3\x61\xc2\x73\x25\xd8\xc3\x4a\xb4\xdd\x9d\x38\xd5\x5c\x1b\x2e\x8f\x68\xb6\xd8\xed\xa8\x13\x53\xd5\x6a\x3d\xe1\xfe\x30\x2f\xec\xaa\xc9\x0a\xc5\xc6\x72\x4c\x6b\x79\x48\x26\x2c\x85\x78\xdd\x85\x4a\x87\x11\x89\xa2\xd5\x18\x19\x85\xcb\xed\x4b\x0e\xf3\x36\x24\xc0\xa7\x7f\xab\x37\x03\xcd\x66\xed\xf3\x8a\x0f\x54\xd0\x93\xa5\x83\xa1\x9b\x3f\xc1\x4e\x00\x47\x37\x1f\xd7\xae\x63\x60\x93\x27\x29\xee\x86\x4b\x39\x4b\x15\x60\x4e\xf8\x02\x84\xd4\xfc\x2f\x9a\xc3\xf6\x36\x85\xfa\x78\xd1\xc7\x28\x9f\xc0\x1d\xf3\x0b\x60\x85\x07\x38\x15\xe4\x88\x1b\x81\xaa\xd0\x21\x13\x15\x9e\x11\x5f\x2f\xbf\xcf\x19\xb5\xfb\x2b\x37\xce\xf1\x50\x75\x0b\x63\x53\x8c\x2c\xd3\x0b\x48\x8c\x46\xeb\x9a\x4f\x14\xaa\xc2\x35\xc9\xe8\x15\x21\x10\xf8\x5c\x51\x7b\x9d\xc5\xfa\xc3\x6f\xfc\x4b\x65\xf7\x06\x91\x25\xfe\x52\xe0\xf7\xb8\x40\xef\x26\xb3\xe6\xe6\xb5\x2a\xb6\xd4\x38\xef\x06\x9d\xdf\x54\xb4\x60\x8b\x02\x21\xbd\xac\x81\x4f\xec\x08\x51\x96\xdf\xd9\xf3\x1a\x3a\x67\xa8\x51\x86\xff\x0f\x63\x8e\x7c\xfc\x43\x55\x2d\xcc\x4c\x66\xe3\xb5\xed\x1d\xad\x88\xbe\x55\x30\xd6\x81\xd2\x17\x25\x89\xff\x9c\xae\x05\x13\x29\x57\x15\x2d\x69\x66\xcd\x00\x76\x4f\x76\xac\xde\xbe\xaa\x0b\x38\x30\x2b\xd1\x60\x3b\x5e\x0d\x32\xfb\xeb\x0a\x75\x73\x45\xb1\xa6\xfc\xef\xb4\x3c\xf9\x18\x5f\x87\x74\xf4\x3b\xda\x58\x64\xe9\x4a\x9a\x17\x33\x1d\xc5\xc7\xe1\x41\xe0\x68\x64\x89\x4c\x5d\x33\x02\x3e\x8c\xb9\x2c\xde\xf7\x78\x3f\x47\xb1\xec\xf8\x44\x71\x49\x2d\xa5\x59\x68\xf3\x5d\x8a\xf1\x9c\xfb\x28\x7c\x82\x36\xbb\x73\xe8\xd5\xbb\x44\x13\xf4\x47\x81\x97\x33\x39\x4d\x2b\x14\xfe\xe0\x14\xf5\xe2\x84\x13\xbb\xe3\x88\x52\x2e\xab\x16\x57\x18\x93\x18\xd4\x2e\xe5\x02\x6f\x4d\x15\x3f\x07\xe4\x18\x5d\xe9\xf3\x80\xd3\xf7\x44\x6e\x09\xef\x7c\x85\x76\x98\x83\x0a\x56\xcb\x5b\xe8\xf6\x95\xd0\xe1\x95\xe9\x1e\x7e\x40\xdd\x43\xf3\x47\x88\x00\x0e\xbd\x91\x5f\x04\x9e\xa9\x1a\x3c\x45\xf8\xf4\x0f\xe8\x49\x0b\x6e\xb3\x86\x8c\xf0\xbd\x90\x4b\x4a\xd2\x7d\x56\x0d\xc2\x2c\x65\x36\x0f\x0d\xc6\xb4\xf1\xfb\x37\x54\x51\xe7\x46\x9b\x8a\x69\xe5\x79\x86\x42\x75\xaf\x70\xad\xf3\x4e\x27\xcd\x71\xca\x98\x7c\x24\xe2\xa5\x8e\x7a\xc3\x41\x94\x6e\x35\x1c\xd4\x6b\xaf\x75\xf3\x28\x19\x46\xc9\xac\xea\x77\x6c\x57\x7a\x2e\x27\x14\x5d\xea\x07\x58\x8b\xe8\x04\xdd\xd7\x5a\x79\x93\x2c\x8a\xb1\x94\x50\xe3\xbc\x8e\xa5\xc4\x27\x8a\xc8\xa8\x30\x39\x0b\x76\x02\xab\xc7\x42\xc0\x7c\xa2\x54\x35\xfb\x76\x18\x25\x5c\x15\x07\x84\x05\x7a\xaa\x00\xec\x9d\x53\x4c\x89\xa7\x5b\x33\xe9\x61\x56\x8e\xfb\xb1\x9d\x55\x02\xc8\xa0\x42\x05\x64\xe7\x1a\x7d\x01\x9e\xca\x47\x53\x1f\x24\x9f\x6d\x24\xd8\x73\x73\x95\x5f\xce\xa3\xdc\x35\x71\xb1\x79\x01\xfd\xe2\x63\x97\x68\x3d\x67\xc7\x3b\xab\x75\x22\xe1\xa4\x92\x5a\x04\x9b\x99\xa4\x6f\x8a\x43\xe0\x32\xa2\x14\x3c\xac\x9f\x91\x5d\xc4\x6b\xdd\x98\xaa\x5a\xce\xce\x9e\xab\xc7\xc7\xd1\x18\x93\x18\x6d\x38\xca\x27\x15\x64\x2d\x23\x02\xb8\x57\xd9\x94\x6c\xc0\xcc\x39\x4e\xa2\xea\xd2\x64\xd4\xc9\xeb\x76\x22\xca\x60\x7d\x41\x58\x6c\x45\x27\x79\xc8\x43\x78\x9c\x66\xc2\x5d\x97\x88\xa4\x65\xe1\x29\x8a\xc4\x67\xfd\x48\xa9\x46\x3f\x52\x45\xbc\xfb\xca\x19\xd9\x37\x27\x36\x2c\xc8\x24\xa3\x03\x79\x19\x0f\xc8\x09\xba\xbc\x2c\xa3\x8b\xcc\x12\xca\x02\x28\x81\x07\x8d\x5c\x6e\x84\xeb\x34\x83\x92\x17\x75\x54\xdc\x1d\x85\x8a\xbb\xd3\xa8\x3e\xce\xcd\x75\xc3\x34\x59\xb1\x99\xef\x70\x23\xf0\xc5\x2e\xe2\xe3\xb6\xce\x78\x66\xc3\x74\x3c\xb6\xc9\x80\xe9\xbf\xd8\xe5\x4d\xb5\xfb\xfb\x8a\x9a\x93\x2c\xd2\x7e\x94\x0e\x33\x33\x19\xad\x71\x30\xe5\xba\xad\xde\xde\x9f\x76\xfd\x89\x15\x13\x0a\x1d\x19\xdc\xa1\x2e\xc8\xdf\x52\x1a\xcb\x39\x15\xbd\x12\xb3\x12\x19\xfa\x6b\x44\xd9\x67\x02\x1f\x71\x9f\x71\x25\xb0\x7e\x99\x8f\xd4\x2c\xe1\x6d\x4d\x77\x79\xbb\x91\x55\x1c\x58\xa0\x5a\x46\xbf\xcc\x06\xd6\x41\x0d\x81\x13\x42\xbb\x89\x8f\xdb\x08\x79\xff\x3f\x28\xa6\x6f\x4d\xfc\x5f\x39\xd4\x1d\x11\xa0\xb3\xfa\x80\x60\x82\xfd\xcf\x5d\x56\xab\x28\x5f\x1b\xf7\xd3\x18\x8c\x20\xa8\xd1\xbd\xcb\xb1\x23\x9f\x35\x48\x7d\x88\x43\x05\x55\x08\xae\xa5\x06\x7e\xba\xed\x8a\xe3\x27\x59\x89\xb2\x61\x94\x44\x66\xc6\x0f\xfe\x6d\xd0\x2d\xcb\x96\x51\xa5\x8b\x66\xb1\xe3\x95\xc5\xfd\xdd\xdc\xc6\xdc\x91\x42\x65\xf7\xb4\x42\x79\xc2\xb0\x49\x13\xc0\xe3\x4c\x56\x47\x51\xe6\x98\xc4\x38\xdb\x51\x30\xf3\xf3\xee\xf2\x26\x59\x14\x42\x82\xb5\xda\xec\x4a\x57\xf2\xb0\x93\x13\xf2\x82\x0d\x79\xd9\xcf\x8b\xa8\x28\xab\x15\x4e\xf9\x3c\xba\x4a\x9f\x51\xdd\x88\x8f\x15\x0b\xdd\x1d\xa5\xc0\x78\xc7\xfd\xe2\x92\x29\x0a\xbf\x08\x5c\xb9\xb6\xda\xb2\x52\xae\xfd\x5b\x4d\x37\x36\x88\xf2\x30\xb3\xd4\x9e\x63\xf4\x31\x2e\xef\x2a\xdd\x15\x1f\x37\x4a\xfb\x87\x16\x0f\x75\x87\xb6\x98\xf5\x8c\xa4\x17\xe0\x72\x01\x85\xbc\x4a\x31\x86\x23\xcf\xf4\x74\xe9\x3e\x01\xb0\x6f\x86\x91\xcb\xa6\x1d\x50\xef\xe0\x41\xb6\x22\x5c\x4c\x87\xfd\xfd\x63\x35\x2c\x56\x65\x6e\x4b\x69\x1c\xa5\x79\x47\x71\x0b\xc2\xaf\x4b\x5f\x5c\x67\x01\xcb\x36\xd9\xeb\xa6\xf6\xbf\x72\x09\x7a\x86\xf8\x3d\x30\x33\x21\x48\xd8\xd9\xd3\xc0\x2c\xba\x77\xe0\x11\x7e\x06\x47\xc0\x39\x3e\xe2\x18\x74\x66\x19\x60\x8e\x65\x8c\x1e\x28\x5c\xe6\xae\x75\x15\x06\x3c\xa4\x66\x1c\xac\x2b\xc4\x02\x36\xaf\x52\x99\x06\x8d\xe0\x3f\xa7\xac\x44\x58\x0f\xa9\x65\x81\x67\x7e\x07\xcf\x13\xff\xb2\x11\x7c\x49\xf1\x64\x9a\x31\x86\x34\x35\x45\x0c\x23\x4a\xa7\x2a\xd9\xba\xad\xa6\x4d\xdf\x28\x4d\x56\xd8\x0c\xe2\x32\xe8\x72\xee\xea\xf9\x22\x38\x8b\x86\xba\xcb\xf0\x92\xb0\xbf\xef\x0c\x53\x9e\x2e\x15\xbb\x54\x37\x0c\x6b\x59\x78\x5e\xe8\xf3\x48\x75\x2e\x29\xca\x94\xbb\x53\x3f\x4d\xfa\x37\x15\xef\xe0\x3d\x82\xf9\x60\xd7\x7e\x50\x2b\x37\xb5\xa9\x97\x17\x65\x96\xf0\x46\x12\x85\x44\x85\x5a\xfb\x76\x23\x3a\x5b\xdc\xdf\x9d\x98\xcc\x26\x05\x8f\x9a\x0a\x49\x91\x9a\x34\xb8\xa0\x68\x4c\x7f\xaa\x2a\x81\xa3\x28\x19\xd8\x71\x54\x8c\x6a\x95\x49\x8f\xa0\xbd\xd2\x88\xd6\x8e\xbc\xd4\x8d\x86\x49\x54\x80\xe5\x0e\xd1\xf7\x29\xfa\x76\x3e\x56\x6c\xa0\x83\xcc\xac\x3a\x35\x1b\xf8\x4e\x30\xa4\xf1\xb1\xc3\xa8\x25\x76\x98\x16\x91\x12\xf1\x17\x32\x2d\xc5\xba\x7d\xa5\xad\x81\xc0\x4c\x27\x98\x5a\x75\x64\x9e\x8e\x49\xec\xa1\x6a\xc0\x6d\xef\xb9\x64\x3f\x5d\xeb\x5b\x93\xcc\xb8\x88\xf7\x3f\x79\x86\xa2\x4d\x4a\x12\xfe\xf6\xde\xf5\x5a\x54\xa2\x07\x11\x20\x3f\x42\x8b\x11\x51\x01\x62\x09\x35\x8e\xff\xa2\x2b\x69\xd7\x18\xde\x4b\xe4\x48\x28\x95\x80\x57\x00\x3b\x0c\xca\xda\xc2\x3f\xe3\x87\xa1\x0a\x9b\x65\x69\x16\xe5\xe3\xce\x56\x31\x46\x3e\xae\x6d\x7a\xfb\x16\xd2\x62\xd8\xf2\xdd\x3d\xff\x36\x38\x13\x84\x99\xea\xb8\x71\x4b\x33\x99\xc4\xa6\xf4\x54\xd9\xf8\xe0\x71\xa5\x2d\x76\x5c\x47\x46\xa4\xd4\x84\x1e\x9d\x50\x7c\xd3\x8b\x41\x50\xc9\x7c\x40\x7c\x42\x4b\x81\xff\x4a\xd1\xca\x4f\xa2\x70\xd9\xa2\xab\x24\x45\x95\xb7\xd9\x31\x0a\x57\xf5\xd6\x95\xf6\xdc\x73\xdd\x91\x8d\x9d\x64\x83\xcc\x6f\x93\xb1\x91\xc1\x6e\x6f\x27\x72\x1b\xbd\x85\x35\x29\x11\x6d\x75\x33\x7c\xac\x0a\x09\x89\x79\x8b\xb0\x19\xe8\x1e\x23\xf9\xbe\x05\xd3\xc6\x27\x5f\xc0\x08\x99\xdb\x2a\x98\xef\x78\x8c\xde\x67\x08\x03\x05\xc3\xf2\x8c\xa2\x19\x18\x94\x21\xd5\xa8\xea\xa2\x0f\x5a\xff\x48\xcb\x69\x2b\xfd\xa1\x93\x5a\xb7\xaf\x8c\xe3\x28\x1f\xcd\xfa\x80\xeb\x0e\x2d\x6d\x51\x43\x53\x05\x8b\x2b\x81\x2f\x52\xdc\x51\xd4\x77\xb9\x29\xa2\x7c\xc9\x84\x45\x9a\xad\x21\xdb\x43\x1c\xdd\xc1\xc8\x04\x9f\x38\x32\xbe\x49\x66\xc3\x28\x8f\x98\x18\x0b\x35\x87\x8f\x70\xd9\x22\x70\xe5\xd3\x97\x8d\x46\xb0\x4b\x3a\xe3\xd1\x70\x84\xc5\xce\x01\x3f\xdd\x9c\xa3\x2c\x5f\xdc\xef\x74\xf6\x5b\x6b\xe6\xa3\xb4\xb0\xc0\xe9\xf0\x54\x91\x9a\x2b\x38\xaf\xb0\x63\x85\xcd\xc6\xe0\xcc\x9e\xf1\xb8\xf1\x07\xf0\x21\xc0\x44\x7d\x53\x69\x1d\xdc\x53\x79\x62\x9e\x96\xc9\xa0\xa3\xf8\xf3\x8f\xd5\x60\x12\x4a\xe0\x31\x8b\x96\xb8\x30\x8f\x5a\xf5\x29\x55\xb7\x3e\xd5\x16\xb6\x57\x61\x0d\xf1\x12\x16\x0a\xfd\x76\x5f\xe1\xb4\xee\x7b\x46\x9a\x2c\x5d\x15\xce\x59\x19\xb7\xf6\xfa\xe3\xb7\xa7\xdd\x86\x89\x3f\xdc\xcd\xd3\xc9\x28\xca\x8b\x28\xf4\x1c\xd5\x1a\x0c\x25\x00\x36\x6f\x44\x26\x26\x33\xf1\xda\x5b\x9c\x0d\x60\x81\x61\xb4\x87\x8f\x03\x55\x58\x4e\xcb\xa4\xc8\x22\x9b\xef\x50\x06\x63\x37\x0d\x52\xc2\x33\xd2\x5c\xf5\x8b\x32\xe8\x1c\xf8\x32\xf0\x9d\x40\xa1\xf5\xaf\xab\x09\xd2\x47\x5e\x81\x24\x8d\xf2\xd4\x23\x2e\x11\x74\xfc\x15\x3d\x4e\x3e\x56\xbe\x9b\x88\xb1\x53\x0e\xce\xe0\xbb\xd7\xb1\x3f\xf9\x44\x15\xf7\x7e\xf5\x1f\xfe\xc3\x4e\x5d\x75\x73\xce\x25\x6c\x4a\x81\x38\x33\x51\xd2\x4f\x57\xa9\x4c\x8b\x8b\xe6\x08\x80\x4f\x7a\xcf\xba\xa9\xa9\xcc\xd2\xce\x8d\x6d\x9e\xab\x3e\xdf\x27\x8a\xac\xf9\x13\xc5\x55\xd3\xb7\x43\x93\x6c\xf7\x61\xf4\x86\x66\x83\x03\xc8\x18\x31\xf5\x57\xd7\x15\x54\x79\x5f\x4f\xab\x85\xb7\xe4\x38\x63\x93\xbf\x51\xda\xcc\x0c\x84\x1d\x11\x65\x25\x26\x05\xe7\x13\x45\x2f\x9d\x59\x13\x02\x47\x79\x60\xc1\xf7\x60\xb7\xc0\x85\x54\x29\xd7\xd5\x75\x1b\x81\xee\xf3\xdd\xc4\x8c\x25\x4c\x95\x29\x6c\xef\xef\x18\xfc\x29\xec\xaf\x0d\xc2\xae\x43\x5d\x7a\x70\x64\x69\x18\xd4\x8c\x27\x22\x08\x67\x5f\x5c\x31\x51\xd6\x2f\x19\x85\x85\xbc\x4b\x34\x93\x64\x4a\xce\x27\x00\x60\x1b\x17\x99\xda\xea\x1d\xc3\xec\x35\x65\x66\x0f\x1e\xec\x86\x69\x3a\xb1\x99\x29\xea\xfd\xba\x2b\x35\x91\x9b\x16\x75\x87\x71\xda\x8f\x62\x3b\xe3\x77\x12\x78\xa3\x01\x3d\xdb\xa4\xf8\x0d\x6d\xf9\x26\xb3\xf3\xcb\xfb\xd9\x72\x5a\x66\xa7\x90\x8a\x98\x7f\x05\x57\x40\xac\x5b\xff\x49\x33\xab\x07\x51\x70\xf3\x52\xcd\xee\x68\x9a\x14\xa5\xab\x13\xe8\xc1\xb5\x95\xc8\xae\xee\xd2\xad\xe1\x9e\x1e\x43\x00\xf9\x2d\x53\x49\xd7\x62\x3a\x7a\x89\x5a\x4f\x54\xf8\xa6\xc9\x1e\x09\xc0\x4d\x8d\xbd\x9f\x98\x7a\xfa\xc4\x71\x3a\xb0\x8c\x76\x50\x8b\xe1\x34\xca\x34\xd2\x98\xf0\x6b\x33\x4c\x13\xc2\xe7\x74\x54\x9d\x59\xb5\x87\xea\x33\x1d\xc9\xf2\x0c\x2d\x17\xd1\x68\xf3\x13\x47\x9f\x20\x6a\x46\x9d\xe5\xa7\xca\x5c\x0c\xd6\x12\x33\x66\xc8\xd8\xbc\x4b\xce\x7c\x63\xe0\x42\x03\x0d\x76\x60\xa1\x6b\x5e\xa0\xcb\x11\xa5\x24\x2d\x9b\xa4\xac\x4b\x56\x32\x1d\x0a\x32\x0f\xe4\x6b\x92\x61\x57\x9f\x47\xe4\xf2\x69\x2b\x7b\x7b\x3f\x2f\x32\x13\xc2\x13\xb0\xf8\xa5\x6a\xdd\x7c\xac\x69\x68\xa2\x6c\x9c\x3f\x55\xbd\x2b\x97\xdc\x39\xd1\xbc\x3d\xb0\x1b\xb8\x36\x60\x33\x91\x2f\xa1\x3e\x0a\x8f\xff\x53\x74\x29\x6b\x6d\x09\x47\xd5\xe8\x45\xd7\x3f\xa3\xc7\xc9\x7c\xa9\x94\x40\xa2\x6f\x73\x93\x72\x32\x7c\xd5\x19\xad\x62\x2b\x53\x2d\x4e\x80\xd9\x4b\xb3\x7f\xa6\x01\x19\xcd\x71\xc3\x83\x07\xbb\xac\x6d\xdc\xf1\x20\x60\xc6\xa9\xf0\x89\xa3\x83\x30\x71\xbc\x36\xe3\xa3\xaa\x13\x4a\x76\xf3\x57\xc8\x50\xd2\x16\xdc\xd6\x6d\x50\xb7\x1f\x79\xa9\x9b\xaf\x46\x45\x38\x52\x8c\x30\x08\x3f\x05\x34\x22\x01\x7f\x61\xe2\xe5\x2d\xcc\x83\x6f\x07\x3a\x12\x6d\x21\x19\x9e\xef\x46\x49\x98\x61\x82\xd6\x03\x67\x99\xff\x81\x4f\x14\x3f\x45\x48\x03\xb0\x8a\x9d\xfd\x9e\xa6\x68\xbd\xf7\x85\x33\xca\x7d\x6b\x59\x26\x0a\x8e\x82\x39\xcc\xf9\x44\x05\xd0\x85\x35\xe1\xc8\x66\x35\xfe\x0a\x7a\x54\x52\x0c\x95\xd2\xec\x30\x32\x49\x41\x0c\x0f\x8e\x03\xdb\x93\xf6\x23\x42\x72\x8a\xc5\xaf\x38\x1d\xa3\x0b\x8a\xf8\x6c\x47\x4f\x4d\x20\x32\x07\x02\x6a\xde\xc7\xdd\x5b\x7b\xfd\x85\xf0\x05\x7a\x6b\xae\x1f\xae\xb4\x46\xa6\x8a\x07\xf3\x91\xc2\xba\x67\xd6\xf0\x00\xab\x34\xab\x3b\x4e\x11\xf8\x41\xad\x34\xdd\x42\x24\xd1\x2f\x63\xd6\xeb\x41\xc9\xe4\x5d\xa5\xd5\xf5\xae\xc2\x78\x44\x09\x89\x14\x33\x57\xa3\x14\xca\x15\xad\xf7\xc5\x16\xb0\xd8\xe1\x6e\x1c\x09\x3e\x4a\x84\xf7\x6b\x71\xaf\x0f\x20\x27\x69\xca\x28\x6d\x6e\xca\x05\x3e\x58\xfe\xbc\x96\x96\xe5\x06\x91\x97\x1b\x1c\x5c\xdc\xef\xbc\x91\x4f\x92\xc7\x26\x7b\x33\x62\xa5\x18\x1e\x8c\xd4\xe1\xce\xe7\x4a\xe4\xd9\x26\x83\x34\xcb\x39\x9e\x53\x75\x28\x67\xf7\x5c\x0f\x60\xc9\x0c\xb6\xd0\x1c\x78\xa6\xa9\x06\xe4\x82\x24\x6e\xf2\x32\x8e\x58\x1c\xc4\x51\xe1\x2d\x2c\xc8\x71\x95\xa9\xeb\x81\xaa\xaf\x75\xe7\x8f\xcc\xf8\x52\x39\x62\x39\xee\x77\x91\x83\x96\xe8\xa6\x05\x8d\x96\xd9\xbc\x8c\xeb\x14\x27\x8f\x34\xc5\x89\x5e\x31\x26\x2d\x31\xdb\x83\xb2\x13\xca\x94\x7c\xdc\x56\x07\xc9\xd3\xb1\x1d\x18\x80\x63\xc4\xf3\xfa\xe6\xd1\xa5\xa9\xea\x25\xfc\xe1\xd4\xf3\x99\x95\xb9\xd9\x5e\x19\x41\xe4\x26\xdf\x9a\x2a\x7e\xe1\xe3\xf8\x0c\x0f\xed\x91\xd9\x44\x52\xc1\x7c\x1d\x32\xcd\xd7\x48\x86\x16\x0f\x75\x97\x93\x74\x35\xa1\x6b\x91\xd7\x40\xdf\x25\xb4\x0e\xd5\x7d\x21\x22\xfc\x50\xbd\xe4\x41\x94\x9b\x2c\x33\x6b\x7a\xad\x5f\x52\xca\xdc\x97\x54\xf9\xc6\xe4\x2c\x43\x01\xd6\x6a\xd8\xf6\x3f\x85\xa1\x46\x8d\xe5\x98\x1a\x57\x39\x3a\xf5\x89\x5e\x5a\xa4\xc5\xda\x04\x65\x03\xdc\x35\x38\x5c\xb1\x83\xb9\xda\xc5\xa4\x1b\x6d\x8a\xc1\x93\x88\x46\x63\x34\xb2\x82\xee\x47\x50\x16\xae\x1d\x93\x0d\x4d\x12\xe5\x63\x66\xd1\xc1\x15\xb2\x94\x0c\x62\x7f\xac\x4d\xe6\x3a\x6c\xb4\x35\xc4\x4e\x8e\x4c\x9e\x9b\xa4\xe3\x85\x41\x79\x7a\x58\xa0\x55\xde\x6b\x4f\xcc\xda\xe3\x4e\x80\xe1\xef\xed\xed\xf9\x22\xeb\xe3\x18\x78\x63\x49\xf8\xa9\xf7\x86\xa7\xe0\xf5\x1c\x89\x93\xd3\x01\xdb\x8e\xd6\x20\x02\x3f\x8c\x04\x3b\x31\xa7\xea\x0e\x5c\xed\xdd\xb7\x5f\xb7\xb9\x6c\xda\x24\x18\xfe\xca\x54\x6d\xe6\x7e\xa0\x8c\x80\x36\x93\x67\x5d\x6a\x38\xa6\x47\x46\x0f\x56\x98\x68\xd5\x9c\xf4\x27\xc1\xb3\x7a\xa5\xc8\x24\xe4\x6c\x8d\xbe\x80\x6e\x53\x58\x0a\xfc\x40\x14\xe6\x6c\xf8\xb8\x4d\xe8\x6a\xb4\xd6\xcf\x58\xe6\x50\x28\xff\x7d\xde\xf3\x98\x93\x06\x28\x46\x51\xb2\x9c\x6f\xa7\x9f\x24\x84\xf1\xd5\xaf\x12\x65\x03\x9c\xf6\x43\xfc\x3c\xd0\xd7\x18\x1a\xa9\xe9\x44\x09\x7c\xde\x0d\x47\xbe\xf2\xb7\x68\xbb\x11\xec\xe6\x0f\x9e\x26\x4a\x13\xb4\xfe\xf6\xac\x7b\x0d\xc1\xff\xfc\x99\x75\x6a\x44\xba\x22\xb0\x73\xf9\x9b\x98\x88\x84\x27\x7f\xba\xa7\x6a\xd1\xf7\x49\xd0\x98\xc2\x87\x6f\x42\x8b\x14\x41\xce\x57\xd6\x95\x13\xbf\x45\x03\x8e\x98\xe6\x79\x1c\xcc\xc8\x32\x22\x44\x6f\x55\xe8\x00\xe9\x6e\xf1\xe2\xae\x61\x83\x89\x2e\x84\x2f\xc5\xef\xee\xcd\x1c\xfe\x47\xdf\xf0\xb5\xc7\xdf\xfa\x0d\x3e\x66\x22\x02\x5a\x46\x27\x9e\xa3\xd9\x15\x14\x25\x7f\x41\x6b\x4a\x3a\x58\x0a\x1c\xb0\x6f\x5d\x03\x68\x3a\x3d\xda\xdf\x58\xa0\x33\x6a\xbe\x92\x47\x51\x65\xf7\x78\x22\xc8\xd9\xf5\xce\x6f\xca\x52\xff\x99\x1a\x8a\x79\x76\x9d\x8a\xee\x78\xc0\x8f\x88\x6a\x41\xea\xb6\xde\x04\x4d\xcc\x72\x94\x17\x26\xf9\xe2\xe9\x9d\xad\x49\xeb\xc1\x83\xdd\x7e\x99\x47\x89\xcd\xf3\x38\x5a\x46\x1a\xa5\x39\xf4\x91\x79\x80\x2c\x5c\xe8\x04\x5d\x39\xd6\x66\x2b\x51\x68\x77\xd3\xb3\x77\x0c\xc7\xd5\xb3\xf7\xa4\xaf\x3e\x98\xa9\xe1\xd6\xaa\x55\xa0\x81\x27\x74\xf8\x5f\x75\x31\x35\xed\xb4\xf1\x1c\x19\xc7\x13\xe8\x54\xc8\x3f\xb4\x0c\xef\x17\x51\xb2\x36\xe3\xc1\x4a\x77\xf1\x73\xa2\xd1\xe7\x8b\xfb\xdb\x7a\x4f\xb9\x92\x01\x84\xca\x61\xdf\x34\x4a\x0e\x55\x2b\x60\x44\x50\x79\x6f\x62\x1f\xe6\xe6\xba\xfd\xcc\xbc\x65\x93\x8e\x9a\x55\xfa\x90\xee\x8b\x8f\x03\x95\x28\xc4\x69\x3a\x98\xad\x23\xd1\xaa\xb4\x41\xf7\xe5\xa4\xf8\xe1\x07\x56\xcf\xfb\x30\xd8\xda\xb1\x1b\xd8\xd3\x3d\x65\x3c\xe7\x33\x8a\x99\xec\x4c\x0b\x4b\xa4\x1f\x88\x1c\xd4\x28\x08\xe9\x99\x0a\x07\xa1\xea\x84\x96\xe3\x71\x54\x28\xdd\x8b\x8f\x03\xaf\x18\x75\x1c\x36\x4d\xb5\x99\x5e\x94\xbf\x52\xfc\x0a\x37\x5b\xf8\xa8\x16\xbb\xf9\x88\x66\x7f\x1c\xae\x16\x75\x39\x3e\x6e\x13\x6e\xcc\x6d\x98\x26\x83\x1d\x5e\x57\x92\xc5\x34\x65\x44\x58\x11\x54\x33\x2e\x96\x25\x4b\x68\xc9\x63\xb5\x60\x70\x12\x1d\x9f\x9d\xeb\xbe\x3f\x97\xd8\x68\x38\xea\xa7\x65\x56\xe3\xf2\x3a\xaf\xb9\xbc\xce\x4f\xff\xce\x17\x38\xb5\xca\xd5\x4f\x26\x69\x94\x14\x2e\x79\x60\x7e\x4d\x44\x80\x42\xb6\xd9\x64\x73\x71\x72\x50\x4a\x30\x80\xdf\x84\x74\x4b\x54\x5e\x5d\x98\xb5\xdd\x35\xb2\x9d\x1a\x47\xce\x17\x31\xef\xd0\x57\x3b\xa4\x9c\xa6\xde\xd1\x94\x3c\xae\xa7\x0f\x71\x4a\xcf\xaf\x23\xc9\x2d\x29\x72\x6a\x3e\x66\x26\x48\xe3\x93\xb6\x68\x74\x62\x8a\xc2\x66\xf0\x81\x78\xaf\xc8\xeb\xf8\xb8\x16\x64\x87\xa1\xe9\xf8\x35\xc6\xf8\x01\x3e\x51\xf8\xb1\x30\x36\xe3\xf1\x9a\xe6\x22\x3f\x85\x45\x20\xef\xbd\x59\x09\x9b\x44\x26\x81\x2a\xb8\xa0\x0a\x14\xc2\xc0\xdd\x20\xe9\xb1\x98\x58\xe0\xa8\xd8\xb5\xdf\xd3\x74\x74\xdf\xd3\x69\x22\xea\xbe\xb5\x9d\xea\xaa\x6b\x57\x1a\x95\xa5\xd7\x5e\xab\x7c\xe4\xd8\x54\x9b\x8e\xfa\x00\x28\x47\xb1\x12\x8f\xd0\xcf\xd4\x20\x77\x2e\xa8\xf9\x5c\xb5\x93\xf2\x32\xcb\x6c\x32\x90\xf4\x51\x82\x7a\x7a\x00\x12\xed\x6f\xc5\x25\x54\x59\x41\x86\x67\x2b\x71\xa0\x82\x5e\x5d\x70\x14\xf2\xd1\xc0\x8c\x52\x4a\x05\x45\xe1\xb9\xe3\x28\x47\x39\xe5\xc7\x46\xbb\x1d\x3c\xee\x2c\xfe\x9b\x3b\x5d\x01\xf9\xd6\xdf\x80\xb9\xc6\x9e\x83\xf6\xbb\x0c\x2e\xd3\xd5\x4a\x09\x8e\xbe\x8a\x7b\xd1\x53\x3f\xa0\x76\x49\x31\x9f\x7f\x56\x6b\xbb\x45\x26\xf9\x52\xf5\x77\x5a\x5a\x09\x11\xdb\x76\x30\xe9\x60\x3b\x9f\xc3\x84\x9b\xaa\x63\xcd\x3b\x6d\x11\x45\x71\xf4\x03\xf8\x24\x99\x18\xed\x38\xa2\xd4\xbb\x5c\xba\x03\x98\x9e\x44\xaa\x30\xba\x28\x24\x94\x1d\x84\x15\x0e\xa0\x5f\x45\x3b\x2a\x04\x3c\xec\xb0\x1e\x9e\xc9\xd8\x14\x54\x3d\xc2\x20\x96\xb2\x55\xb0\x2b\x62\xb8\xfc\xd0\x8e\x89\xab\xfc\x95\xdc\x2e\xf7\xfa\x7a\x1e\x1a\xc6\x50\x66\x18\xb2\xfb\x9a\xa8\x72\x64\xa3\xec\x59\x2d\x7f\x5c\x45\x23\x8e\x76\xfc\xeb\xaf\x78\x3d\xbc\xea\x9a\x99\xdd\x84\xde\x10\x7e\x65\x76\xbd\x32\x18\x88\x32\xbe\x8b\xe5\xc4\x02\xf2\x53\xf5\x18\xef\x6b\x22\xea\xbb\xe8\x16\xa2\x2e\xb2\x0d\xaf\x5e\xf1\x97\x08\x6c\xf3\x21\x02\x1b\xca\x26\x36\xbf\xdc\xab\xcc\x0f\x03\xd2\x68\xc3\x00\x9b\xf4\xf4\xba\x82\xd6\xed\xee\xf9\x86\x34\xac\x75\xad\xf4\x0e\x8f\xd2\xa1\xf0\x12\xaf\xe5\xa7\x2d\x75\x80\x43\xdd\xe5\x91\x49\xd0\xa5\x74\x9a\x0c\x0e\xe3\xd9\x2c\x1c\x13\x87\xff\xd8\x24\x03\x12\x7c\x00\x7c\x12\xc5\x5b\x3e\x0e\x3c\x2c\xea\x75\x5b\x14\xd2\x07\xf1\x5d\x92\xe3\x2a\x3f\x3d\xae\x54\x80\x4d\xfe\x84\x23\x07\xfc\xe5\xbf\x4b\x0f\x40\xf0\x06\xf4\x9c\x05\x4d\x5d\xbd\x0c\x5a\x79\x27\x7e\xb9\xe7\x51\x73\x4f\xaf\x2b\xb2\x84\x1d\xeb\x2a\x8e\x7b\xa4\x0a\x3d\x1b\xb4\x8d\x44\x21\x84\x46\x14\x31\x73\xeb\x40\xa9\x8a\xfb\xf5\x92\xd6\xc7\x47\x33\x9c\x6e\x1a\xd9\x2c\x68\xf3\xf8\xb8\xa1\x81\x35\x37\xd7\xcd\x0d\x6a\xe3\x58\xbb\xa7\x03\x45\x6f\xd4\x06\x0e\x3e\xc4\x59\x06\x56\xbf\xc8\x88\x57\xbf\x21\xfa\xe2\x4a\xf8\x3b\x4e\x57\xe3\xb5\x1d\xb4\xc9\x04\x8f\xe9\x6f\xf2\xb4\x1a\xb0\x46\x0d\x46\x73\x27\xf3\xdf\x20\xa2\xe7\x0f\xb7\x4c\xda\x77\x97\x88\xb5\xa0\xa3\xe4\x2b\x58\x9d\x9e\x4f\xda\x78\x46\xa4\x52\xde\xf1\x73\x23\x28\x60\xf0\xb1\x8a\xb8\x57\x4c\x02\x15\x34\x98\x12\xb4\x3a\x1e\x20\x0a\xe0\x13\x75\xc3\x63\x53\x8c\x6c\x36\xeb\xf1\x25\x50\x84\xe1\xe3\xa9\x1e\xa6\x85\x6d\xfb\xa2\xbe\xc7\xcb\xfb\xbb\x79\x61\x33\x9b\x2a\x56\xb8\xab\x8a\xc3\xe1\x6a\x23\xd0\x3f\xb0\xd0\xed\x9b\x70\x79\x62\x07\xc6\x8f\x77\xa3\x84\xf8\x3b\x81\x47\xe6\xfc\x4e\x23\x91\x3f\xb4\x58\xbd\xd2\xcc\x1a\x07\xda\x3a\xe4\xfd\x4a\xf5\x20\xc5\xaf\xb4\x05\x70\x51\xbc\xc2\x69\x34\xb6\xee\x19\x45\xff\x70\x37\xd0\x02\x4b\x5b\x67\xf0\xa8\xab\x4c\x42\x1e\xc3\xcc\x0c\x4a\x79\x1b\xc2\xca\xdd\x71\x62\x95\x1b\x5a\x49\x9e\x43\x57\x1d\xe4\x56\x06\x50\x16\x11\xad\x02\x06\x71\x2b\x84\x09\x37\x56\xe0\x50\xef\xa9\xc0\x3d\x31\xcb\x16\x43\x7a\x70\x91\xd7\xea\x51\xf7\x9c\xcc\x2a\x1f\x6d\x53\x44\x89\x06\x31\xae\x19\x2b\x0d\x05\x1d\x3e\x6e\x13\xff\x21\xbe\x56\x59\xaa\x8c\xd9\x57\x36\xf3\x3b\x0d\xab\xf7\xf2\xfe\x79\x52\xfb\x23\x1f\x8e\xe8\x11\x38\x26\xd8\xfb\x99\x9e\x67\xd0\xad\x15\x23\xc7\x36\x1b\xf2\x12\x70\xe2\x7f\x80\xe1\x0b\x0b\xa8\x03\x07\x96\x59\x5e\x8a\xd9\x53\x35\x93\x17\xdd\xbc\xc3\x56\xa4\x1e\x49\x25\x0d\xa2\xc2\x66\x99\x49\xac\x49\xd4\x16\xba\x31\x55\x60\x9f\x1b\xaa\x13\x44\xe0\xd7\x2c\xe4\x9e\x0d\x2e\xfe\x28\xfb\x66\x84\x0d\xb7\xe0\x88\x24\x01\xf5\x0d\xe2\x7c\xc2\x23\x14\x8b\xfb\x79\xfc\x07\x42\x0a\x7c\xdc\xc6\xd1\x23\x88\x2b\x7c\xbf\x93\x92\xd4\x35\x57\xba\x0e\x7c\xc5\x3d\x87\x2b\x98\x8c\x32\x93\x5b\x25\xcf\xfb\x76\xe0\x43\xe3\xb7\x6b\xa1\xed\xb0\x5c\xdb\xae\x48\x61\xe1\x89\x50\x2e\xfa\x05\xd8\x91\xa4\xd1\x58\x59\xaf\xcd\xab\x4a\x7c\xf2\x58\xdb\x36\x0a\xe3\xd4\x8d\x5b\x68\xa6\x4a\x3e\x56\x35\xe9\x62\x14\xd9\x2c\x5b\x9b\x51\xc9\xd0\xdd\xc0\xe7\xee\x17\xa8\x1d\x2a\x5c\x0a\x7b\xb5\xbe\x86\xc9\xa2\x94\x64\x11\x84\x05\xdd\x17\x86\xae\x28\x68\x82\x29\x8a\x34\x4b\xec\x5a\xbe\xc3\x77\x7b\xee\x4f\xd5\x74\xc7\xfb\xb5\x7e\x22\xbc\x05\x73\x42\xea\x38\xe3\x62\xa0\xb0\x65\x17\xd5\xa5\x8c\xcc\x64\x62\x93\x9c\x2e\xc5\x49\x0b\x38\x40\x50\xb3\xf1\xbd\xb0\x50\xfd\x17\xef\x45\xa6\xf1\xe9\x72\xf8\xa4\xf1\x3c\x17\x16\xba\x45\x99\x24\x96\xf5\x3f\x85\xb7\xd6\x77\x39\x2f\xf8\xd9\x58\x66\x91\xca\x35\x7f\xec\x65\xcd\x1f\x7b\xb9\x85\x74\xb1\x4a\x9d\xe4\x23\x78\x0c\xef\x4e\xd5\x20\xd8\xbb\x6a\xe5\x0f\xd3\x78\xd0\xb7\x19\xb0\x02\x22\xcf\xac\x38\xd5\xce\xd6\x64\x84\xec\xa0\xa0\x9a\xb4\x06\x32\x4b\xf7\xaf\xb3\xb0\xb0\xf9\xce\x17\x36\xab\x6c\x9e\x9b\xac\xa3\x1a\x54\x90\x1e\x91\x46\x91\xd4\x19\xc6\x51\x3c\xb0\xab\x6b\xaa\x6d\x86\xa6\x1e\x1f\xb7\x48\x2e\xbc\xda\x5d\x15\xa2\x79\xc7\xc3\xe6\xe8\x1c\x4e\x34\x94\x1d\x16\x16\xba\xe3\x32\x8f\xc2\xc8\x48\x78\x0c\xbb\xca\xa9\x3c\x9f\xd4\xf8\x66\x4d\x1f\x0a\x6a\x2e\x3f\xf7\x22\x4b\xe7\x1d\xc6\xaf\x4c\x68\xea\xdf\xf9\x35\x84\x1a\x40\xf0\xf0\xb1\xbb\xc9\xd0\xe4\xd5\x26\x01\xd6\x01\x68\x5b\xf8\x02\x3e\x76\xa3\x85\x45\x99\x8d\xd3\x88\x91\xd7\xe8\xd3\x3c\x54\x73\xd9\xd0\x44\x12\x26\xcd\x56\x52\x94\x34\x09\x6d\x26\x8c\x0c\x28\x7a\x1e\xd3\x7d\xda\x63\x2e\x17\x1b\x99\x64\xb0\x36\xe3\x0a\x4e\x7f\xeb\xd9\x9e\xf7\x99\xfb\xd6\x15\xa8\xe3\x4c\x1b\x67\x4f\x66\x07\x65\x68\x07\x94\x68\xa2\xfe\xbd\xa7\xa7\xa8\xca\x36\x95\xde\xe6\x9f\x4e\xd5\xa0\xfd\xad\x86\x4b\x59\xdc\x4f\x0c\x90\x05\x01\x52\x40\x42\xf1\x73\xfa\x34\x1f\x2b\x6e\x84\x77\x68\xfd\xf1\x71\x3d\xb3\xb7\xf9\x57\xc8\xed\x02\xa5\x73\x42\x29\x34\xee\xa4\x12\xaa\x68\x47\xd1\x82\x14\x4c\x3b\x19\x4c\x91\x1d\x55\x79\xc7\x06\x5a\x80\x9c\x5d\x10\x7d\xab\x6b\x42\x2e\x4a\xf3\xf9\x2a\xe2\x40\xe1\x14\x57\x8b\xe4\xba\x36\x41\x3b\xa0\x31\xe1\x48\x5e\x16\x0f\x39\x18\x7d\xbd\x48\x7d\x60\xc1\x29\x6e\xc3\x4f\xf0\x00\x49\xa0\xd0\x40\x1b\x53\x25\x19\x74\x7d\xea\x91\x0b\xbb\x28\x57\x91\x91\x93\xea\xe9\xf1\x4c\xa1\xf3\x25\x6f\x94\xb6\x94\x91\x2c\xe4\x90\x3f\x54\x12\x36\x3f\x54\x40\x25\x42\xbd\x6d\xf7\xf1\x37\xa3\x3b\xb4\x92\x02\x2e\x1a\x99\x13\xba\xbd\x1d\xca\xee\xa4\x1d\xea\x5b\xd1\xa6\x2c\xca\x71\x92\x2b\x75\x71\xd8\x56\x3e\x6e\x6b\x85\x7d\xad\x5b\xbe\xb0\xfc\x82\xb2\x4f\x57\xb4\x7d\x6a\x72\xce\xbe\xbc\xff\x50\x37\x96\x60\xcd\x95\x2a\x5d\xa1\xea\x96\x0a\x86\x4d\x9e\xdb\x0c\x38\x0b\x99\xfe\xf4\xf5\xa0\x7f\xa9\x7a\x89\x61\x9a\xc6\xd8\xd7\xc2\x03\xab\x6a\x90\xcd\xa6\xf0\xfc\x91\xee\x1b\xa5\x59\xb6\x4a\x58\x81\x15\x35\x25\x29\xde\xfa\x89\xd7\x5e\xeb\xe6\xe5\x50\x2c\xa4\x0c\xb8\x7b\xd0\xe0\x45\xa5\x98\x51\x98\x89\xcd\x09\x70\x47\xdf\x2f\x6f\xd6\xd7\x8a\x9b\x0a\x00\x95\x99\x5c\xb6\x76\x42\x69\x14\xab\x97\x2b\x18\xfe\x45\x17\x6e\x25\x26\xcb\x4c\x91\x6a\x49\x88\x0f\x02\x9f\x10\x7d\xa0\x1a\x88\x2c\x15\x9d\x61\x14\x95\xb5\xd2\xa7\x9a\xd8\x27\xf0\x83\xad\xff\x4a\x8b\xc0\xdc\xae\x0d\x8e\x3e\xa9\x7a\x07\x79\xf1\xa5\xca\x8d\x5c\x0c\xd4\x7c\x26\xf8\xbd\x1d\x15\x9e\x2f\x0a\xfd\x9c\x37\x86\xa3\x14\x71\xd5\xb0\x0b\x7a\x96\xe3\x0e\xb8\xa3\x81\xcc\xfa\xa7\x53\xaf\x1f\x8f\x84\x1e\x99\xc0\xc7\x74\xad\x68\x04\xbd\x4f\x63\xb3\x4c\xc6\x0f\xa3\xc0\x1f\x26\x97\x85\x9a\xd2\xc5\x16\xfd\x8d\xc3\xdd\xb1\x2d\x0c\x30\xa8\x32\x44\xd1\x71\x14\x60\x97\xd4\x68\xc6\xd0\x26\x16\xfc\x85\xa4\x57\x00\x58\x1e\xe2\x46\x35\x6c\x3c\xef\x35\xbe\xbc\x82\xcb\x09\xc5\x5d\xb3\x31\x7d\xb6\x49\x56\xba\xff\xf0\x0e\xef\x00\xff\x50\x0d\x6e\x70\x91\x17\xd1\xef\x9f\xe0\x11\xe3\xed\xfc\x54\xe5\x44\xef\x06\x2a\x28\xb9\xa2\x12\xf7\x70\x44\x38\xec\x8e\x12\x7d\x00\x08\x43\x2c\xe6\x13\x6e\x0d\x25\xe1\x9a\x2a\xac\xde\xd7\x85\xd5\xfb\xb5\x78\x22\xb6\xf9\x2f\xd1\x75\xc8\xe4\x78\xf5\xe4\xd1\x71\xbe\x49\x57\x8e\x05\xbd\x6f\xdd\xab\x8e\xbc\x4b\x49\x0f\xab\xc6\x52\x03\x0e\x76\xf9\x1c\xaf\x06\xec\xc9\x63\x9a\x7e\xfb\x3c\x96\x03\x7c\x01\x23\x7d\xb9\xdb\xa2\xa4\x66\x77\xa0\xb0\xc7\xc1\x7f\xe0\x1b\x8b\xff\x60\x9b\xe6\x02\xbf\x83\xd1\x13\x26\x28\x59\x57\x48\x91\x63\x58\x2b\xac\xc0\x4e\xc8\x28\x3c\xc5\x1b\x4a\x9f\x6f\x57\xad\x83\xa7\xa8\xf4\xae\x62\x99\xca\xa0\x87\x6a\x8a\xc2\xfb\x30\xa3\x57\x23\x98\x9c\x9b\xa3\x59\x6a\x4e\x12\x61\x2d\x6e\xd6\xeb\x0b\xf4\x84\x45\xde\x56\x8d\x7e\x9b\x09\xf3\xea\x38\x72\x36\x37\x71\xf7\xc7\xca\x4a\xf6\x33\xb3\x6c\x73\x4a\xf1\x10\xae\xdd\x0d\x6a\x0c\x16\x1d\xc7\x63\x7a\xb6\x6d\x24\x25\x1f\x5b\x1e\x9e\x83\x3b\x60\x6e\x39\x6c\xa3\x8f\xa6\x0a\xe5\x52\x5b\x1a\x23\x33\x78\xd6\x33\xe4\x6c\x04\x7a\xaf\x33\xb1\x18\x16\xef\xa6\x82\x25\x3f\xa2\x05\x81\x84\x08\xf2\x2d\x70\x47\xff\x1c\x0f\x17\x5e\xf3\x8a\x9e\x04\xbd\x83\x21\x55\x04\xb4\x77\x90\x1f\x60\xd5\x70\x0b\x19\x8b\x63\x7b\xaf\x5a\x75\xc8\x64\xbf\xaf\x9c\xc4\xae\x9e\x62\x49\xbf\x5a\xe3\x4e\xd3\xd3\x50\xb7\x34\x6a\xe1\x2a\xd6\x16\x9e\xc6\x76\xea\x9b\xe0\x17\x99\xa8\x15\xf7\x78\x5a\x0d\x1e\x44\x49\x61\x89\x06\x02\x21\x23\x5c\xef\x69\xbc\x57\x3e\x51\xe0\xce\x25\x22\xbb\xa1\x84\x94\x69\xe1\x7b\x9a\x22\x5e\x60\x58\x13\x6b\x96\x67\x6a\x04\x1b\x1d\x47\xd2\xf8\x5d\x7a\xa6\x58\xc9\xd7\x1a\x30\x63\x89\xe9\x57\x6d\x1c\xa6\x63\x74\x17\x60\x6e\xb8\x80\x84\xe2\x36\xa4\x73\xe1\x0b\x98\x8d\x5a\xb8\x0a\xdb\x62\xd5\xd5\x34\x1d\xac\x46\x5c\x0e\x6d\xd3\xbf\xf5\x1e\xb0\xfa\xd3\x70\x54\x86\xcb\x39\x48\x53\xb1\x37\x78\x59\x3a\x51\x53\x05\x9f\xda\xa7\x3c\x39\x30\xa5\x33\x7a\xec\x9d\xee\x16\x9b\x98\x0b\x67\xa2\x59\xea\xb3\xc2\x89\x21\x19\x63\x88\xa4\x0b\xa7\x5f\x6d\x7e\xb0\xa3\x08\xfe\x6a\xb3\x84\x2d\x25\x00\xa6\x08\xa5\x1c\x53\x66\x3c\x3c\x6c\xe3\x8a\xcb\xff\xca\xa4\xcc\x4b\xc0\x1c\x5d\x95\xed\x81\x7a\x2a\x27\x69\x91\x63\x23\xcc\xf4\x9e\x55\xaa\x5a\xdc\xfa\x61\x62\x31\x84\x85\xdf\x52\x71\xf0\xb7\x34\x59\x88\x5d\x35\xd9\x20\x9f\xf1\xa1\xf5\xc5\xa9\xea\x0e\x3e\x54\xea\x91\x57\x74\x64\x58\x54\x21\x85\xc2\xfa\xa2\x8f\xec\xe5\xb3\xc4\x71\x98\x64\x68\x07\xdb\x7d\x18\xc1\xbd\x71\x60\x63\x18\xd9\x84\x32\xcb\x03\x55\x59\xbd\xa4\xb5\x26\xef\x07\x5b\x34\x26\x16\x16\x28\x38\xfc\x0a\x6d\x39\xac\xda\x13\xe8\x35\x38\xa8\x72\xf5\x22\x81\x7b\x90\x3e\x0b\xc3\xb7\x2a\xdb\xdc\x53\xa0\xa2\xef\x4f\x7d\x0f\xea\x5d\xd8\x00\x07\xb4\x72\x85\x52\x8e\x6d\x9c\x4b\xa8\x76\x37\x6a\x37\x00\x42\x0b\xcf\xbb\x9a\x8a\xfa\x60\xaa\x18\x20\xef\xd3\x2a\x83\x3d\xba\x8d\x64\xc1\x69\x60\xce\xcd\x73\x16\xc1\x5c\x38\x32\xa9\x55\xed\x5b\x18\xee\xbb\x41\x2d\x6d\xa9\x16\x2f\x2c\x35\x14\x34\xd9\x07\xba\x75\xd3\x4f\x63\xaa\xce\xd6\xf4\xb3\x00\x37\xe4\x63\x17\xf2\xf5\xd3\x32\x09\x5d\xde\x8a\x5f\xc3\x7d\xf3\xb1\x72\x19\x65\x52\x44\xf1\x13\x74\xeb\xe2\x5a\xab\x6b\xc7\xad\xbf\x33\xf5\x65\xca\xd3\x53\x65\x49\xcf\xab\x65\x37\x4b\x2c\xe2\xe8\x1f\xdf\x0a\x14\x63\x07\x0b\x99\x22\x2d\xfc\x8c\x2a\x46\x60\xa8\xf8\x7d\xad\xe2\xfa\x00\xce\x10\x0f\xee\x3c\xbf\x55\xd4\xde\xdf\x75\xf3\x97\xaf\x9b\x35\x1e\x67\x44\xe6\xfd\xf1\x54\x8f\x51\x6f\xd4\x23\xf1\xad\xc5\xe6\xf9\x23\xdd\xd0\x14\x36\x9b\x44\x71\x6c\x32\xda\x76\x68\x48\xde\x50\x5c\xe8\x1b\x5a\xe5\x6f\xb6\x45\x1d\xf0\xb0\x8c\x19\x21\x1a\x64\x32\x76\x7a\xfe\x42\xcc\x2e\x57\x3b\x28\x59\x86\x5a\x5a\xf1\x1d\xa7\xcc\x52\x67\x0b\x1a\x0e\xf3\x1d\x75\x2d\xca\x39\x51\xc4\x3d\xa5\x58\x48\x58\x96\x0b\xfb\xe9\xb2\x66\x5f\x05\x09\x26\x23\xfc\x1d\x19\xf3\x38\x4a\xd2\x2c\x2a\x10\xb1\x61\x79\x3e\xd2\xc0\xdd\x47\xb5\x62\x48\x52\x44\x80\xcb\xc3\xb1\x7d\x4a\x2f\x8a\x8f\x1b\xc5\x9f\xea\x59\xa2\xb2\x1a\x31\x81\x91\x5b\x04\xae\x8b\xbd\x03\xc1\x15\x7c\xcd\x7b\x6d\xaa\x76\x99\x19\x0e\x65\x21\xc3\x64\xa0\x86\xcf\xc7\xee\x46\x8a\x34\xf3\x08\x13\xd1\xad\xa4\x4f\x09\xd9\x70\x3b\x57\x99\x19\xa7\x25\x32\x52\xae\xee\x6a\x81\x81\xe6\xe8\xe8\xcb\xfb\xe7\xbb\xf6\xcd\x49\x9a\x81\x7b\x12\xc6\x01\x28\x56\x3e\x6e\x1b\x2d\xa9\x75\x65\x7d\x6b\x1a\x25\x79\x3e\x76\xc5\xa4\x30\x4d\x18\x9c\x89\x4d\x89\x4a\xdf\x13\x3d\x0f\x11\x7f\xa2\x01\x69\xaf\x5c\x68\x6e\xed\x32\xaf\x7c\x44\x6a\x00\x66\x22\x70\xbd\x0a\xfb\x85\x6b\xbc\xac\xe3\x3b\x5b\x79\x71\x56\x97\x76\x60\xd5\xc5\xfd\xbc\xaf\x8e\xc3\x56\x61\xd9\x74\x7a\xce\x88\xfd\x32\x70\x71\xac\x70\xa3\x71\x71\x4f\x51\xf2\x2f\xc2\x9e\x0a\xea\xca\xd6\x8d\xf7\xa1\xe6\x8e\x3e\xd3\xa6\x93\x9b\xa7\x32\x00\x2c\x22\x1e\xde\x8e\x5c\x71\x95\x8c\xea\xe2\x07\x6b\x80\x14\xa2\xb1\xc2\xb5\x3c\x61\x50\xf6\x38\xd5\x3d\x3d\xdf\x45\xd8\xc0\xe3\x10\x92\x62\xd5\xc1\x89\x96\x8a\xff\x27\xf6\x69\xd9\xb7\x76\x30\xb4\xcc\x87\xe4\x48\xde\xdc\xac\xdc\xc3\x40\x53\x3f\x55\x1f\x77\x5c\x51\x5e\xd1\xf6\xbc\x2a\x8c\x2c\x99\x28\x2e\x33\x90\xbd\xd6\xc2\x12\xc9\xdd\xb6\xae\xdd\x5f\x23\xba\x92\x91\x2f\xf4\x72\xea\x4b\x1b\x12\xb5\xa6\xa6\x66\x8c\xaf\x09\x16\x29\x60\xb5\x9b\x17\x55\xeb\xed\x7b\x53\xc5\x4c\x70\x46\xe5\xfa\x93\x34\x5e\xb3\x95\x43\xd1\xe3\x80\x6a\x0e\xf5\xc6\x17\xd6\x7d\x63\xbb\x1a\xa1\x4e\xa1\x78\xb0\x44\xf5\xf5\x72\xa0\xb9\x43\x5d\x77\x9b\x11\x7f\x35\xf4\x9f\x8c\x7b\xe7\x65\x96\xa5\x25\x01\x83\x66\xd4\xd0\x34\xc8\x71\x9c\xb4\xaf\x7b\x5d\xe7\x1c\x36\x16\xc4\x1f\x14\x84\x20\x0a\x00\x10\x44\x9e\x14\xdd\x38\x8c\xfb\xf1\x5a\x79\xdd\x8f\x53\xfd\x9d\xbd\x3d\x3f\x9b\x34\x4a\xf3\x49\x54\x98\x78\x56\x69\x98\xa0\xda\x8b\x60\xf4\xdf\xa8\xbe\xd9\xbf\xc1\x3d\xf3\x1f\xb9\x5b\x29\x93\x55\x93\x11\x33\x19\x0f\xcd\xc1\x75\x42\x68\x0d\x7f\xcc\x45\x54\x04\x92\xd7\x5b\x98\x82\xba\x61\x16\x79\x37\x83\xfc\xe4\x1d\x35\x55\xf0\x8e\xd7\xf0\x37\x59\xca\xe8\x04\x78\xa0\x8b\xb4\x52\xf8\x58\x21\x3b\x72\x98\x36\x47\x7a\x73\x52\x63\x88\x4f\x3a\x45\x5b\xbb\x62\xb3\xb5\xd5\x91\xcd\x2c\x95\x30\x90\xda\xec\x55\xa3\x45\x6c\x6f\x24\x4e\xa5\x07\x0c\xe3\xc3\x3a\x18\x82\x5e\xfe\x22\xdc\xf6\x30\xb3\x36\xe4\x31\x5a\xc7\xce\xa5\xd1\x15\xfb\xb6\x88\xc8\x86\x05\xa5\x99\x78\x74\xa7\xf1\x8b\x88\x14\xee\xa9\xc0\xf4\xb2\x92\xcd\xa5\xba\x5e\x75\xf9\x9c\x32\xaa\xd1\xa6\x7b\x8a\xca\xc4\x9a\xac\x5a\x9c\xf9\x1e\x3f\x67\xfb\x1d\x4e\x48\x61\x5b\x19\x16\x07\x3a\xee\xf7\x11\x86\xba\x22\xd8\x01\x49\xd2\x58\x80\xd1\xa9\x0e\x69\xb6\xbf\x8e\xcc\x94\xfd\xfe\x5e\xbc\x73\x38\xdf\xd3\x3a\x2a\xda\x85\x8c\x14\x11\xe8\x4c\xaf\xe9\x98\xba\x13\x93\xe7\x66\x88\xba\x23\x7a\xc9\x1f\x51\x61\x8b\x8f\x1b\x2d\x79\x72\xd0\x44\xda\x9b\x99\x7e\x95\x2a\x38\xc6\x00\xc8\xe2\xf2\xf1\xfa\x17\x32\xb5\xa7\x99\x8d\x86\x98\xf9\xc6\x63\xdf\xa5\x46\x1f\x6f\x69\x31\xd9\xfb\xd3\xad\x8d\xda\xd7\x5e\xeb\xda\xbc\x30\xfd\x38\xca\x47\x00\x31\x7e\xfd\x95\x4d\x42\x64\x6e\x9e\x0a\x9e\xd1\xfd\x3e\x52\xbe\xb3\x34\x12\xaf\x08\xf8\x0e\x08\x99\xcd\x35\x62\x19\x46\xac\x37\x03\x01\x26\x31\xeb\x9e\xb3\x88\x72\xe8\xd8\x86\x45\x69\xe2\x7c\xd6\x2b\x36\x5d\xc5\x13\x76\x8c\x51\x5e\x9e\x87\xa1\x4b\xfc\x67\x6a\x87\x84\x23\x33\x61\x2f\x2e\x60\x97\xea\x01\xf0\x71\x2b\x25\xf4\xaa\x8d\x97\x4c\xc6\x1a\x1f\xa2\xcd\xeb\xb1\xfd\x77\xd5\xec\xf3\xa5\xc6\x83\x7a\x79\xff\xab\xdd\x30\xcd\x32\x9b\x4f\x52\x30\x34\x29\x7e\x33\xc5\x69\x70\x42\xe1\x06\x26\x59\xf4\xd6\x18\x8e\x81\x19\xdb\x11\xf6\x0a\x7d\xfb\xe3\x7e\x9c\x63\x7b\x95\x59\x20\xbc\x7e\x4a\x73\xbb\x5c\x54\x0d\x05\xd4\xf6\xb1\x63\x99\xe5\x02\xbb\xfc\x5e\x1b\x14\x7a\x10\x4d\x10\x50\xa9\x39\x30\x37\x14\xd6\x22\xbf\x32\x89\x4d\xc2\x71\x0b\xaa\x93\x7b\x7b\x0a\x04\x4b\x24\x31\x0b\x44\x8d\xae\x40\x44\xb9\x4d\x20\x4b\x81\xbd\x05\xc9\x01\x37\xf5\xe0\xa5\xad\x2e\xd1\xe2\x40\xb5\x86\x9b\xec\x2e\x7e\x76\x55\xb9\xab\x78\xd5\x4c\xae\xd6\x88\xdf\x0e\xbd\x74\xb8\x7a\x50\x44\xcd\xc0\xa3\xc1\x18\xa5\x3c\xa5\xa8\x7f\x4e\xb5\x99\xe7\xbc\xb0\x63\x0f\x9c\x46\x48\xb9\xa1\xdc\x04\x38\xe9\x6a\xb4\xef\x4b\x20\x43\x56\x28\x65\xee\x54\x0b\x84\xf5\x2b\xfe\x31\xa4\x71\x14\xae\x8d\xd2\x78\x60\x33\x7e\x7e\x48\xdf\x5f\x23\xdf\xc6\x95\x6a\xfa\x39\xd1\x37\x68\x21\x7d\x4f\xac\x1d\xd4\x38\x63\x2e\x6a\xce\x98\x8b\x6d\xed\xbe\xa1\x4d\xb3\x61\x64\x18\x72\x54\x03\x6c\xf2\x49\xf0\xcc\x56\x49\xc8\xee\xc1\x83\xbb\x3d\x5c\xe1\xf7\x34\x5b\xe7\xef\x22\xab\x73\x34\xab\x1a\xe5\x58\xbd\x56\x37\x87\xfd\xb2\xd0\x9e\x82\xda\x52\x14\xd4\x2a\xb3\xa5\x9b\x58\x30\x77\xb7\xd4\x3c\x6e\x3a\x36\x3b\xd4\xd0\xcf\x63\x04\xf8\xc3\xca\x91\xc2\x31\x00\x11\x27\x6b\xb8\x1e\x3f\xa6\xb6\x89\xa5\x83\x45\xff\x97\xda\x85\x98\x2c\xeb\x28\x45\x9a\xab\x8a\x80\xf3\xaa\x8b\x3e\x56\xa2\x3c\x2a\x78\xee\x05\x97\x70\x0f\x76\xc7\xf5\x1e\xab\x6f\x67\xa8\x3f\x7d\x03\x8c\x04\x83\x92\xb1\xbf\x2f\x6b\xd4\x66\x9e\x97\x63\x08\x25\xa3\xdf\xfa\x0b\x14\x32\x19\xa9\x09\x30\x8d\x94\x9f\xb7\xe6\xa7\xd5\x7a\x8e\xcb\x4c\xc1\xc0\x61\x2f\x6f\x2a\x52\xc0\x9b\xad\x60\x9f\x7e\x9a\xf1\x68\x07\xd3\x44\x07\x7e\x44\x4d\x53\x46\xaf\x0e\xd6\x66\x7d\xba\x7c\x89\xaa\x54\x42\xc5\xa1\xf6\xf9\x9f\x28\xda\xd0\x87\xb5\x3c\x33\x8f\x38\xb4\x82\x83\xbd\x89\x07\xc4\x27\x74\x99\x3c\xdc\x1d\xf8\x19\x8d\x4f\x54\x9d\x2f\x1a\x4f\xb2\x74\x62\xb3\x8e\x72\xcc\x20\xcf\xe3\x63\xe5\x61\xc2\x34\x19\x44\x94\x9a\xed\x50\x63\x46\x3c\x96\xae\x74\x14\xa4\xf1\xf4\x48\x45\x4e\xdc\x4d\x77\x74\xf7\xae\x84\x7a\xa6\x61\xc6\xe9\xa9\xa7\xc9\x90\xf4\x14\x65\x87\x03\x21\x03\x1e\x17\x3e\x6e\x58\xd4\xaf\xbf\xd2\x1d\xa7\x55\x6e\x50\x6d\x12\x27\xab\x50\x25\x65\x32\x8e\xe2\xcb\x94\x2b\x26\x0c\xa3\xc4\xc2\xde\x38\x59\x62\x47\x76\x88\x0a\xa0\x0c\x55\x6c\x5d\x17\x8b\xfb\x49\x82\xd8\xac\x38\xc6\x3a\xc4\x2a\x67\x03\x4f\xb0\x78\xb6\x2d\x8b\x0e\x4d\x62\x06\x11\x63\xad\x84\x8e\x86\x56\xae\xf0\xd4\x3c\xed\xc1\x5f\x21\xa9\x17\x44\x61\x07\xcc\xc2\xd2\xf1\xd6\xed\x6f\x45\xc0\x31\x8e\x92\x68\x5c\x8e\xb1\x4c\xe5\xe6\xfd\x70\x45\x13\xf8\xfe\xf2\xfe\xee\xd8\x24\x03\x03\xe2\x9a\xea\x4b\x1d\x33\xa4\x87\x90\xd5\xd6\xda\xf2\x5a\xba\x8b\xee\x56\x8c\xa4\x77\x2b\xa7\xb5\x29\xe4\xe1\x5a\xf8\x95\x0f\x38\x00\x74\xa3\x42\xae\xac\x85\xa1\x12\xe4\x7b\x0f\xa8\x48\x23\x3a\x2b\x12\x8b\xa7\xcb\xb1\x79\xa1\xd3\x99\x9b\xf3\x60\xd9\xea\x8b\x25\x80\xf0\xf5\xb6\x55\x93\x25\xc8\x9e\xa0\x84\xc1\xf4\x8a\x7c\xa2\x1e\xea\x24\x8b\x56\xa2\xd8\x0e\xe1\x9c\x70\x1f\xdf\x57\x86\xff\xfb\x5a\x3c\xed\xcd\x22\x2b\x73\xc1\x87\xbf\xc8\x96\x13\xd0\x63\x3e\x0e\x9e\x55\xe9\x80\x0d\x23\x13\x47\x6f\xd9\x01\x51\x83\x0a\xb1\x38\xed\x14\x96\x47\x9e\x2a\x96\xdb\x9f\x62\xa7\x60\x97\x41\x67\x1d\x6d\x97\x29\x99\x72\xc7\x51\xfe\xf2\x7e\x2e\x5a\xde\xae\xbd\x8b\x15\xbb\x46\x0c\xb6\xc2\xbd\xaa\xca\xed\xe7\xe8\x0a\x81\x21\xe1\xdf\x07\xac\xf9\x91\x96\x4e\x7c\x44\x3f\xa3\x78\x5c\x5f\xe5\x9d\xfa\x40\x0d\x7a\x2e\xfe\xd6\x8b\x1d\xcf\x8d\x7b\x45\x25\xee\x57\x82\x5f\xaa\x3b\xae\x03\x0b\x12\xed\xfe\xf5\x2a\x4e\x42\x68\xf4\x0e\x7c\x14\x82\x26\xee\x35\xc2\x60\x6f\x5b\xef\xbc\x22\x8a\x70\xc7\x00\xe9\x10\x55\x58\x55\x89\x9b\xed\xd5\x66\xf7\xbc\x9c\xf1\xbb\xea\xea\xef\x29\x92\xc5\xd3\x08\x4c\xd1\x3f\xef\xf4\x3a\xbf\xfe\xdb\x8e\x99\x8f\x1e\x37\x3c\xc7\x5f\xe9\xde\xe4\x46\x8d\x82\xe1\xc3\x40\x91\x5c\x5f\x63\x52\x6f\xb8\xe2\x07\x81\x22\x5e\x3c\xa5\xc6\xbd\xf7\xad\x2b\x54\xdd\xef\x51\x48\x21\x20\x3e\xaa\xba\xc3\x1a\x5f\xa7\x4e\x27\xee\x05\xb2\xa8\xc8\x05\xcf\x04\x0a\x9c\x32\xa3\xa0\x4a\xdb\x10\xdc\x31\xec\xa5\x51\xf1\x5b\x58\x38\xdc\xcd\x6d\xbc\xc2\x16\x68\x2f\xaf\x1e\x45\xba\xf3\x17\x6a\x90\x75\x6c\x72\x2a\xd6\x56\x99\x62\xe7\x1b\xb2\xd5\x58\x64\x58\x58\xfa\xbc\xdb\xec\xdb\xb5\x94\xc5\x6c\xf1\x26\x3f\x0a\xfc\xe8\x32\x44\x21\x1c\x11\x41\xf5\x50\x58\xbb\x3c\x50\x57\x7c\x5a\xcf\x67\xfc\x54\x71\x5d\x9f\x6c\xd8\xd3\x2a\xc3\xa9\xd2\xe4\x7e\x3a\x60\x40\xa4\x30\xd9\xd5\xa0\x87\x3e\x0e\xbd\x17\xf8\xe0\x2e\xb3\x2b\x69\x5c\x32\xdd\xe4\x76\x45\xad\x74\x5d\x4b\x8e\xfd\xd7\x9f\x6b\x3a\xfe\x9f\xd1\xdd\x38\x62\x2f\xc7\x5a\xd8\x3e\x63\x3e\x48\xcb\x3e\x52\x66\x47\xe0\xe8\xc7\x56\x6f\xa0\x0a\x8a\x40\xe6\xbc\x4a\x86\x27\x99\x1d\x47\xe5\x18\x39\x14\x16\x21\xa2\x00\x74\xa1\xae\xd2\x25\x08\x96\x9e\xbe\x03\x8b\x4e\xcb\x9e\x95\x49\x98\x8e\xc7\x29\x87\x12\x48\x0c\x18\x33\xc5\x27\x0e\x4d\x50\x98\x64\x39\xdf\x5e\x2d\x2b\x55\x03\x10\x6e\xc2\x7d\x94\x96\xa0\x4f\x80\x8d\x2f\xda\x95\xf4\xf6\xa4\x13\xd5\x54\x9a\xec\xdb\x51\x94\x0c\x66\x3c\x48\xe9\x76\xa0\x56\xdb\x67\x53\xaf\x90\x71\x45\xcd\xfa\xe7\x36\xdc\x5e\x7d\x04\xab\x90\x89\x37\x25\xb6\xa8\x3e\xbf\xc9\x89\x84\x02\x2a\xbb\xe0\xa3\x91\x17\x12\xb6\xa9\x6f\x47\x26\x5e\xea\xb8\x91\xa6\x95\x1f\xd3\xf3\xe3\xe3\xe9\x13\x0a\x57\x6b\x7f\x89\xec\x8c\x12\x97\x97\xf6\xd6\x3e\xaa\xa7\xe3\xf9\x3f\x09\xad\x71\x07\x84\xa9\xd6\x0d\x12\x81\xed\x14\xf4\xc2\x4c\xcd\x00\xb8\x80\x37\xf3\xcd\x40\xbd\xa6\x67\xd6\x15\x20\xe3\xfd\x40\x51\xcb\x6f\x23\xa3\xe5\x34\x3f\x2b\x4b\x83\xf0\xee\x3e\x39\x39\x06\xfa\x04\xd5\x2e\x94\x7a\x6d\x5d\x1f\xce\x95\x94\x66\x01\xb5\x80\xbb\x7c\x82\x3a\x42\x80\xdb\xbc\xc3\x36\x8b\xfa\x5c\xff\xd9\x5e\xc2\x4a\x60\x97\x30\x3c\xc2\xb5\xaa\x25\x2b\x78\x6f\xef\x3a\xd9\x22\x3c\xb0\xdd\x3d\xd5\x3e\x6b\x02\x6f\x5f\xde\xbf\xd0\xcd\x4c\x61\x99\x51\x00\x65\x35\x96\x75\xc0\x32\xf8\x84\x2f\x40\x04\x85\xbd\x02\xbf\x59\x2a\x6c\x26\x3a\x21\xf4\x22\xe0\xae\x4f\x06\x3e\xf7\x3f\xe9\x9a\x6a\xe9\x8a\xcd\xe2\x34\x5d\x26\x1b\xb6\xf9\x0e\x3d\xe0\xcd\x77\xd4\x2e\x1a\x46\xc9\xd0\x66\x20\x42\x7a\xb1\x75\x52\x71\x6b\xda\x45\xd3\xa8\x71\xec\x92\x49\xd8\xa9\xbb\x53\x5f\xf8\x44\x71\x5e\x26\x89\x5a\x6a\x3d\x11\x09\x0a\xa5\xe3\x89\x49\xd6\x14\xdf\xcc\x65\x25\x94\x76\xb9\xed\x77\xc3\xd8\x9a\x84\xa7\x28\x9c\x94\x4f\xf5\xa0\x61\x90\xee\xa8\x96\xd5\xc9\x3a\xbb\xe4\x70\x6d\x57\xf5\xaa\xb0\x1a\x6f\x50\x2a\xce\xc7\xe8\x93\x22\xe9\xfa\x77\xb4\xdf\xe0\xcc\x75\x59\xe4\x78\xe0\x9d\xe9\x1d\xed\x72\xf1\x8b\xc8\x8a\xbe\xab\xe6\xa4\x40\x6b\x90\x99\x21\xb0\x71\x9b\xeb\xa4\x9a\xb6\xde\xb0\x7e\x07\x16\xba\x6f\x95\x59\xc4\xf4\x39\x30\x78\x1c\xb0\xf2\x49\xa3\x69\x3f\x7f\xa4\x5b\xd8\x37\x8b\x88\x27\x2a\x64\x7f\xf9\x46\x56\x73\xfc\x64\x61\xe1\x10\xf1\xd6\xac\xa9\x19\x8c\x3f\xc3\xaf\xf0\x49\xe3\x23\x47\x5e\x62\xa1\x12\x0a\x4f\x98\xaa\x56\x55\xe8\xbd\xac\x69\x6c\x0a\x9b\x3d\x59\x9f\x38\xac\xb6\x34\xf6\xfa\x13\x3d\x1f\x3b\x3c\x86\xdd\x26\xf3\xe5\x10\x46\xc4\xfb\x83\x0b\xd9\x46\xf0\x2a\x3c\xd9\x4d\xba\x23\x84\xb8\xbf\x82\x19\x39\xa7\x70\x7f\x40\x00\x1c\xdf\x9b\x2a\x42\xcf\xb3\x53\xd7\xfd\x9e\xff\x7b\x3d\x55\xd9\x7d\xa4\x1b\x08\x99\x5d\xb2\x59\x66\x07\xb3\x7e\xca\xf4\x18\x7d\xa3\xd3\xa8\xac\x96\x03\x32\x20\x74\x5a\xf9\x58\xa5\x02\xd1\x98\xc4\x68\xb6\xfb\xa7\xf9\xa9\x66\xd3\x7d\x7c\x5d\x0d\x83\xfe\x04\x96\x0b\x8e\x0d\x18\x53\xfc\x55\x53\x78\xff\xc8\x4b\xdd\x49\xcc\x23\x66\xc8\x51\x37\x15\x75\xe4\xe6\xb4\x8e\x4a\x4a\x9e\x56\xf8\xb1\xbb\x04\x58\xc3\x2d\x3c\xb6\xee\x07\x5f\xb6\xc3\x28\x01\xc9\x76\x0f\xa1\x17\x9e\xef\xd3\x14\x08\xa1\x56\x79\x2d\xf0\x84\x15\x80\xb5\xc1\x0a\x5e\x0f\xd4\x98\x0a\x72\x2f\x41\x08\xc2\x3a\xe1\x85\xdf\x55\x4c\x6f\xef\x11\xff\x35\xb6\xe3\x65\x92\x9d\x47\x16\xcf\x65\x0b\xbc\x36\xa6\x18\x44\x44\xc6\x44\x2a\x40\x55\x7f\x80\x10\x10\x05\xc8\x1b\x8d\xcc\xb5\x5a\xc8\xb1\xe9\xa7\x04\x0d\x8d\xac\x4c\xae\x20\xe8\xdc\xd5\xab\x11\xbe\xd0\xa5\x23\x7e\xdc\xb6\xbe\x05\xb3\x41\x1e\x6f\xf1\x10\x0d\x6e\xa0\xf0\xf1\xf1\x54\x21\xcb\x1f\x90\x8b\xc0\xcd\x5d\x0b\xb4\x89\xd6\x70\xdb\x6f\xd7\xa9\x0c\x15\x6b\x40\x98\x59\x9b\x10\x7c\x08\x01\xf4\x4d\x15\x4c\x37\xf9\x00\x5e\xde\x7f\xa8\x5b\x64\x91\xb4\xfa\x1c\xbf\x9c\x82\xa6\xea\xb1\xae\x6c\xc5\xae\x11\xd2\x49\xb8\x29\xe8\x2a\x50\x6e\xfb\x5c\xeb\x89\x80\xb7\x84\xff\x41\x45\xaa\x36\x29\x46\x65\x1e\x99\x9c\x09\xed\xa4\x71\x4c\xb7\x26\x9d\xe3\xad\x11\xe4\xf3\xdd\x32\x21\xa2\x65\x07\xe5\x90\x61\x75\x0f\x5a\xbe\x1d\x28\x94\x52\x6c\xf2\x22\x0a\xf1\xa7\xac\xfc\x01\xef\x2e\x32\x20\x2d\x7d\x56\xcf\x5f\x25\x04\x90\x4a\xa9\xe3\x42\x0d\x27\x64\xe2\xca\x36\xd1\xdf\xaa\x86\xa6\x10\xf1\x5e\x6c\x35\x81\x7d\x93\x47\x18\xc8\x6f\xcd\x76\xfd\xa0\xfd\xeb\xe5\x78\x62\x07\xd4\x84\x90\xb6\x9c\x6a\x66\x02\x8e\x2d\xfb\xf0\x85\x4e\x47\x91\xe8\xd3\x17\xca\x50\x8a\x67\x2f\x30\xe3\x68\xb0\x4b\xc5\x60\x6f\xc3\xea\x01\x60\xb7\xa1\xda\x84\x3b\x08\x21\x27\x9c\x09\x0a\x95\x79\x31\x50\xc4\x6f\x88\xd4\x79\xde\x4e\x33\x26\x5c\x68\x99\x8e\x9c\xef\x92\x00\xcc\x8c\x1f\xbc\xfa\x10\xdb\x4f\x98\x76\xaa\xdb\xc4\x8a\x79\x7b\xea\x91\xe6\xe5\x0b\xf9\x0b\xcf\x54\x4b\x18\xe1\xd4\x2d\x2a\x35\x71\x2d\x90\x2c\x01\xee\xf2\x33\xec\x5e\x18\x98\xab\xaa\xc0\x73\x0d\xc6\x06\xb9\xf8\x4d\x04\x89\x8a\x3b\x41\x1a\x1d\x77\x29\x64\xc3\xc7\x4f\x4c\x6b\x88\x5f\xba\x61\xe8\xff\xdc\xd4\xd4\xf2\x9b\x20\x84\xc7\xd6\xbe\x8a\x7b\x51\x19\xec\x61\xb6\x57\xf7\xb5\x74\x32\xc8\x44\x64\x7a\xdc\xf5\x73\x57\x9f\x59\xaf\x22\x3b\xe1\x14\xf7\x2b\x20\x33\xc9\xb2\x1d\xec\xf4\x38\xa2\x5d\xbd\x1a\x58\x87\x2e\x54\xe2\xf2\x6d\x5f\x63\xcf\xfb\x09\x3d\x4b\xc4\xa2\x90\xbc\xc5\x37\x5f\xa7\x9b\x64\x2d\xda\x2a\x94\x16\x80\xe4\xc8\x50\x71\x52\xc6\x13\xfc\x70\x00\x70\x47\x7c\x3c\xdd\xc2\xe2\xe6\x36\xf2\x60\x10\x41\xd6\x1f\x99\xfd\x19\xca\x8c\x35\x62\x11\x2e\xe8\xbe\xa2\x59\xed\x97\x51\x3c\x88\x92\xe1\x1e\x58\x4e\xf8\x82\x6f\xd3\x1f\xc3\xaa\x6d\x43\xe4\x2a\xb4\xd8\x95\x05\x77\x93\xa1\xd5\x13\xe0\x19\x0f\xba\x23\x0c\x55\x1f\x57\xaa\x27\x27\x95\x3e\x29\xd7\x13\x84\x53\x5b\x01\x60\xde\xa5\xe7\xc4\x22\xed\x0d\x16\xe2\xc5\xfd\x8b\xdd\x09\x49\x87\x08\x0b\x31\x42\x8e\x7f\xa6\xc2\x8f\x7f\xd6\x68\xd6\x2e\x2c\x74\xa3\x64\xc5\x26\x70\x0c\x1d\xe5\x46\x18\x85\xc1\x27\x5f\x08\x22\xcd\xd3\xb2\x18\x99\x31\xbb\x14\x27\x1b\xe7\x82\x53\xa6\x43\x40\x49\x7f\xb3\xc5\xc0\x1c\xee\x66\xd1\x70\x54\xd0\x84\x8a\x74\x78\xab\xfb\x44\xd1\xa8\x83\x88\x04\x37\xfd\x3f\x2a\xdc\xd0\x09\x5d\x41\x3a\xe7\x02\xf7\xd0\x64\xd9\x1a\x31\xb5\xbb\x1a\xde\x31\x85\x8e\x3f\x8d\xed\x21\xeb\x6b\xaf\x0a\xf7\xc3\x74\x2c\x0f\x40\xe1\xed\x7d\x87\x77\xab\x69\x9f\x3f\xd2\x1d\x66\x66\x62\x57\xa2\x04\x0d\x5b\x86\xbb\x51\xec\x21\xd0\x37\xb5\xea\xb2\x72\x02\x9e\x17\xee\x9b\xab\x91\xce\xb3\x0d\x8f\x2d\x4f\x57\xba\xbb\x3b\xaa\x75\x5d\x53\x20\x90\xa4\xdb\x0b\xf4\xfd\x52\xcf\x35\xa1\xff\xfe\x63\xeb\x0a\x10\x71\x49\x21\x17\x8f\xbb\x96\x46\x99\x4c\x4c\x04\xd4\xb9\x34\x1d\x3a\x0b\x35\x5e\xb3\x79\x37\x10\xdb\x22\xfb\x9b\x97\xf9\x24\x0a\x23\x82\x5e\x2d\x0a\xcc\x1b\xeb\x98\x8f\x6b\x70\xf0\x32\xa1\x1a\xc8\x61\x57\x9e\xf1\x29\x07\x88\x0c\x6a\xc4\x24\xfc\x47\x81\xe2\x3a\xb9\xac\xca\xaa\x4b\xb1\xb5\x05\x32\x2f\xd7\x25\x3f\x78\xd0\x75\xc9\x5b\x64\x56\xe2\x14\x33\xdd\xb8\xb4\xc7\xd7\x7d\x15\xfd\x36\x2c\x21\xac\xcc\x71\xba\x14\x64\xbf\xbb\x29\x7b\x95\xe9\x3c\x3f\xe5\x52\xbe\x90\xbc\x50\x0f\x39\xe8\x51\xf9\x98\xc3\x0d\x25\x93\xc4\xd9\xae\x8e\x53\x86\xc7\xee\x47\x99\x13\x64\xdc\x78\x89\xc7\xc9\x6a\x49\xd5\x87\x1e\x00\x56\x2b\x7a\x9f\x6a\x6a\xea\xb0\x9b\xb1\xf7\x33\x35\x9f\xd6\xea\xaf\x23\x53\xfc\x8d\xea\x43\xec\x99\xd0\x47\xa2\x6f\xfb\x93\x67\x51\x0e\x44\x9d\xf0\xab\x3d\x35\x64\xbb\x97\x8a\x9e\x78\xf3\x3f\xa4\x15\x25\x7c\xf2\x94\xb4\xcb\x20\x27\x3d\x28\x56\x3f\xe0\x48\x16\x81\xdf\x67\x53\x2d\x32\xf8\x09\xdd\x26\x3e\xf4\xbf\x2a\xc6\x8a\xe5\xaf\xf6\x94\x1c\xf9\x6d\x25\x73\xc9\x34\xbc\x78\x32\xdf\xc2\x7c\x33\xe2\x9d\xfb\x68\x2b\xa0\x3a\x70\x53\x6b\xf0\x6d\x07\xb7\x87\x54\x14\x7d\x0d\xee\x67\x28\x6e\x0a\x95\x09\x65\x9d\xb8\xe7\xf7\x89\xe3\x04\x5f\x7c\x96\x4c\xb4\x8c\x5b\xf8\xc1\x9d\x33\x9a\x7e\xac\x43\xc1\x3e\x2c\xe0\x6d\x70\xcd\x89\x58\xf3\x56\x3b\x3a\x37\xd7\x35\xd9\x30\x65\xea\x5b\xf4\x72\xf1\x4b\xbf\xe0\x47\x85\x8c\x87\x7b\x10\x08\x42\x9a\x34\x24\x07\x0f\xd2\x20\x27\xa3\x13\x58\x86\x90\x6e\x4e\x24\x09\xbd\xb3\x2d\xcc\x72\x94\x0c\x77\x57\xaf\x0b\xc1\xce\xff\x81\xf0\x08\x35\x9a\xf7\x68\x89\xe0\xc1\x3f\xbd\xee\x73\xbf\xa7\xd0\xfd\xf7\xa4\x41\x8c\x04\x78\x63\x5f\xcf\xd7\xfa\x35\x54\x91\xdf\xbb\x80\xc6\xb6\x9a\x41\xa2\xdd\x4e\xf2\x34\x2b\x22\xa3\x79\x47\x8f\xaa\x42\xf4\x51\x37\x11\xbb\x54\xbe\xf5\x96\x1b\x9d\x15\x39\xed\x8e\xd2\xd9\xde\xea\x66\x2a\xaf\x86\xaa\x4d\xb4\x62\x19\xe1\xe2\x06\x0f\xfd\x10\x62\x0b\x87\x93\xc9\x97\x25\xe6\x86\x35\xfe\x11\x6c\x1a\x9f\x34\xfc\xe7\xc2\x42\x37\x37\x85\x8d\xe3\xa8\x90\xc1\x4a\x54\x2c\xd1\x93\xe6\x63\x67\x3e\x97\x32\x9b\x84\xa3\x1d\x78\xb7\x9c\x78\x05\xdb\xbe\xe6\x08\x7a\x5c\x1b\xfa\xbf\x78\x66\xdd\xc5\x43\x07\xff\x7f\x88\x87\x60\x97\x77\x2b\xda\xac\x3b\xad\x44\x28\x63\x93\x2d\x2f\x9b\x4e\x65\x88\x1c\xcb\x82\x4f\x37\xce\xa8\xd2\xe6\xc4\x02\xce\xca\x0a\xa6\xaa\x75\x74\xac\x46\x8c\x54\xd8\xf1\x33\x1d\xa7\xcc\x3e\xdb\x53\x65\xc4\xbb\xd8\x2b\xd8\x07\x3c\x4a\x03\xb8\xc9\x31\xae\xaa\xe1\x0b\xdf\x41\xb6\x04\xcf\x0b\xdb\x05\x43\x7e\x7f\xaa\x7a\xd1\x8c\x57\xe1\x02\x3c\xcd\xf5\xa0\x9c\xf1\x1d\x5a\x73\x30\x3c\x1b\x4a\xf6\x89\x89\xff\x5c\x63\x79\x51\x82\xa3\xdb\x64\x91\x18\x18\x01\x63\x0b\x33\x8e\x19\x2d\x06\x6d\x05\x8a\xae\x0f\x45\x10\xc0\x54\x77\xaf\x0b\x5e\xcf\x8e\x27\x23\x93\x47\x6f\x49\xeb\xd6\xa1\xbd\x7c\x55\xf6\xfd\xc6\xaa\x38\xb0\x40\xd4\x25\x76\x9c\x26\xc5\xa8\x53\xef\x66\x39\x1a\xa8\x73\x08\x6b\x38\xc7\x62\x70\x0b\xd1\xd0\xb3\xc2\x29\xf6\xe7\x3b\x53\x35\x6c\xf4\x4e\xa3\x42\xb5\xb0\xd0\xed\x47\x54\x20\xd4\xc9\x56\xa0\x6a\x95\x4d\xc9\xa0\xc5\xfd\x5d\x13\x3a\xb8\xab\x34\xe7\xe8\x67\xa4\x73\xd0\x02\xea\xce\xed\xc4\x88\x6a\xfd\xe2\x7e\x47\x30\xd5\x71\xf2\x62\xe7\x6a\x74\x0a\xe3\xb1\x09\x97\x51\xb4\xc4\xb2\x01\xb3\x28\x77\x5b\x95\x26\xd8\xd5\x36\x3a\xf4\xbe\x09\x97\xf3\x22\x9d\xd0\xac\x0c\x5e\xfb\x37\xe9\xfd\xf0\xb1\xca\x7e\xfb\x26\x09\xd3\x6c\x02\xcf\x2e\xda\x61\x1e\xa1\x73\x51\x53\x0c\xda\x8c\x9e\x6e\xb5\x62\x19\xd1\x47\xc9\xa6\xa0\xfb\x04\xe5\xbb\x3a\xb2\x89\x9f\x8a\xff\x5f\x38\x78\x82\x29\xbc\x06\x93\x0e\x5b\xfc\x58\xef\x19\xf5\x0e\x97\xe2\xca\xe2\x24\xc3\x1d\x7e\xe2\x62\xd7\xba\x4a\x25\x09\x38\xb4\xc9\x59\x94\xd0\xaa\x2a\x5d\x8e\x5b\x48\xe3\x84\x7c\x75\xeb\x3b\x78\x65\xfe\x88\x5f\x28\x88\x39\x61\x96\x2e\x61\x13\xf0\x89\x6a\x10\x9b\xa4\x88\x56\x22\xd2\x91\x5f\x14\x31\xc2\x3f\xa5\xd7\xc0\xc7\x0a\x81\xb4\x1a\x65\xb6\x30\x13\xba\x6d\x07\x92\xab\x6e\xdb\x49\x9e\xce\xcd\x3b\x36\x0c\xdf\x54\x2d\xca\xc9\x4c\x8d\xf8\xbf\xe3\x08\x7e\x6f\xd1\x2f\x09\x35\xdb\x33\x8a\x08\x26\x1a\x62\x0e\x56\xcd\x8b\x02\x6e\x2d\x4d\xa3\x16\x8e\xbf\x55\x4b\x24\x46\x9d\xba\xc0\xf6\xc2\x82\x83\x55\x37\x81\x58\x87\xba\x99\x25\x84\x28\xfd\x0e\xf2\x36\x56\x25\xe3\x93\x16\x79\xe9\xbc\x1c\x0e\x6d\xee\xe0\xb9\x52\xeb\xa9\x15\x73\x3d\xc4\xf5\x42\xc3\xb5\x1d\x79\xc9\xe5\x46\xa8\x2e\x0a\x59\x5b\x47\x09\xf6\xb5\x90\xad\x0c\x6d\x52\x70\x99\xb9\x0d\x1e\xf2\x65\x85\x99\x66\x2d\xbc\x34\xc9\xc9\x8f\x0b\x19\x20\xcc\x2d\x92\x83\x6b\xda\xaa\x62\xde\x12\xd8\x33\xe8\x00\x20\x85\xbf\xa9\x38\x6b\x1e\x04\x9e\xcb\xe6\x41\xf5\xae\x37\xf9\xf5\xcb\xf4\x54\x1b\x5f\x95\x89\x92\xd8\x24\x48\x07\x1c\xa6\x71\x61\xc1\xcf\x78\xf9\x8a\xd2\xc9\x86\x49\x39\x78\x50\x84\x8f\xfa\x7c\xdf\x22\x35\xee\x5b\x98\x9b\xd3\x2d\xc5\xc4\x6a\x0f\xbc\xbc\xff\xd0\x76\x55\x13\xf8\xc5\xd4\xa7\xad\x1f\xaa\xb4\xf5\xc3\xa9\x9a\x89\x38\x8e\xac\x40\xc8\xe6\xb6\xca\xe5\xcc\xcd\x53\x77\x32\xc9\xd3\x38\x1a\x18\xe1\x1a\x47\x86\xc3\xa5\x34\x3e\x51\x73\x51\x85\x79\x93\xe5\x84\xb0\x9a\xce\xab\x94\xe4\xd4\xb4\x0a\x8e\x91\x1f\xdc\x56\xd5\xec\xd7\x4d\x3e\xae\x52\x3f\xda\xe8\x92\x32\x77\x1c\xa1\xdb\x39\x2f\x9e\x69\x8b\x54\x32\x4b\x54\x85\xb8\x44\xc5\x27\x0a\x44\x5f\x98\x70\x99\x39\xde\xf1\x2d\xac\x09\xc0\x27\x8d\x24\x9c\x0a\xb2\xae\xb2\xbb\xa6\xc8\x25\x6f\x2b\x72\xc9\xdb\x5a\x59\xca\x64\x61\x6c\xb8\x9b\x2d\x72\x2b\xf4\x40\x45\x14\x9a\x1e\x11\xa2\x9d\xf7\xda\xa8\x60\x63\x43\x9c\x5a\x4e\x9c\x1c\x15\xe8\xe3\xba\x1c\x7d\xbc\x0d\xd4\x93\x56\x7b\x7e\x35\xca\x6d\xc7\x4b\xe0\x5c\x56\x84\x63\x97\xa7\xf5\xc9\xf2\xb5\x5d\x3e\x4e\x61\xf6\x05\x09\x48\xb1\x3d\x10\xaa\x62\x82\x52\xb7\xe2\xa5\xf7\x44\x37\x22\xa5\x3b\xc5\x6e\x08\x3b\x2d\x64\x26\x6d\x05\x89\x49\x6c\x42\x86\x2f\x30\xa6\xb7\xc6\x24\xaf\xe5\xbe\x26\x36\x19\x58\x9a\x97\x77\x5c\xe3\x1b\x8a\xb1\x7d\xa3\x11\xd0\x12\xaf\x27\x43\x51\x65\x6a\x8b\x67\x20\xd6\xd5\x6c\xc9\x36\x27\x59\x17\x9b\xa2\x88\x42\x94\x18\xe0\x4f\x7e\x4c\x1b\x9c\x8f\xdb\xfa\x7d\xfd\xd8\x8e\xa3\x1c\xc2\x7e\xc8\x1b\x4e\x2a\x66\xf3\x93\x81\xe3\xdf\x1e\xff\x0d\xbf\x4a\x90\xf8\xb1\xc2\x38\x45\x75\xb0\x17\x0f\x28\x53\x92\xd1\x6b\x24\x7a\x6e\xe4\x75\xfe\x88\x6b\xb3\x54\x51\x1d\xfa\x22\xb3\xeb\x94\x75\x0a\xc7\x3b\x65\x70\x28\xe0\xdc\x21\xf2\x15\x47\x4d\xfd\xf5\x57\x38\x18\xba\xa3\x1a\x3c\x77\x91\xff\xd1\xe6\xfb\x8f\x9f\xa6\xb9\x6d\x58\x90\xf3\x14\x44\x72\xc9\x14\xcb\x0d\x57\x7e\x0d\x16\x01\x3f\xf1\x6f\x51\x3e\x43\x49\x64\x3b\xc8\xb3\x11\x9d\xec\x02\xad\x2d\x6a\x69\x3c\x3e\x84\x2a\xe5\x8d\x40\x4d\x8c\xec\xa1\x36\x39\xfc\xde\x8f\x03\x35\x86\xf8\xae\xaf\x8f\x6c\xdf\xd7\x53\x70\x90\xff\xff\xba\xd2\xde\xf9\x9f\xfe\xda\x3a\x59\x04\xc1\x78\x35\x13\x93\x51\xda\x4f\x73\xcc\x21\xa3\x76\x78\x4f\xeb\x1c\x63\xda\x08\x6e\xfb\x14\x9e\x1d\x1c\xd7\xbf\xa8\xde\xb4\x9b\x7b\x28\x93\xc2\x66\x4a\x2a\x70\x6e\xce\x93\x25\xf8\x04\xf3\x7c\xa0\xf4\xdd\x26\xc6\xd3\x1b\x09\x31\x85\x6f\x79\x5d\x56\xdd\xbe\x37\x4a\x13\x47\x4b\xc2\x2a\x0a\xd3\x07\x95\x70\xd4\xf7\x20\xc4\x24\x33\x61\x5a\x96\x68\x18\xa5\xc9\x8c\x2a\x47\x5f\x53\xc3\xfd\x3f\xd1\x5d\xc7\x8d\x40\x49\x69\x91\x92\x8b\x52\xd4\x83\x24\x2f\x1f\xbb\xf9\xc0\x28\xaf\x3c\x14\xcf\x30\xc1\x86\x9f\xd4\xf4\xa6\x27\xd5\x57\x92\xfc\xc2\xac\x1f\x2b\x38\x17\xe8\x8a\x8d\x62\x15\x7f\x30\xf5\xb8\xf3\x47\xb5\x8a\xd5\x60\xfc\x02\xe2\x06\x7e\xfb\x6a\x3a\x96\x29\xac\xa5\x39\xd9\x42\xe9\x50\x44\xe3\xbe\xcd\x66\x7c\x13\xf8\x77\x60\xf2\x51\xae\x38\x5f\xe3\x0a\x53\xe4\x8e\x65\x6e\xcb\xf1\x76\x35\xe4\x73\x8c\x43\x01\xc4\x0e\xbf\xa0\xcf\x01\xc3\x75\x52\xd3\x07\x60\xc2\x1b\x76\xf4\xaf\x54\xad\x2a\x4e\x57\xec\x76\x55\xd2\xdc\x08\x54\x6f\xe4\x98\x66\x3c\x62\x29\x54\x6c\x81\xa3\x7a\xb4\xef\xa8\xf2\x79\xd6\xe4\x91\xcd\x8b\x0e\xed\x2a\x79\xb2\x1d\x47\x91\x75\x4e\x41\xfc\x63\x6b\x26\x94\xca\x2c\xca\xd0\xc2\x29\x7a\xd4\x7c\x5c\xa3\x5c\xec\x13\xe5\xe2\xcb\xfb\xbd\x08\x75\x75\x6b\x4e\xca\xca\x0d\xa4\x68\xd8\x00\x8b\x9b\x8b\x52\xf5\xd6\x6d\x36\x37\xd7\x1d\x98\xc2\x6c\xf7\x82\xa0\xe7\x6a\xfd\x80\xc0\x17\x38\xf0\xad\x22\xb9\x42\xdf\x2a\x51\xcf\xd6\x4a\xe2\x6b\xaf\x75\xf3\x65\xb0\xc4\xa3\x0a\x05\xe9\x1a\xd7\x3b\xf8\xad\xdf\x70\x9d\xde\x2f\xa9\x97\x10\x2e\xe7\x24\x40\x27\x6c\x74\x14\xf8\x4a\x00\x5e\x5b\x73\xb6\xdf\xe9\x28\xfd\x45\x4f\x5a\xf1\x91\x6a\x46\x0c\x33\x93\xb8\x11\x03\x18\x3a\x0c\x43\xf0\xb1\xd6\xb1\x8a\x86\xa8\x45\x39\x94\x6e\x6d\x3e\xc4\xa1\x8e\x1e\x34\xb2\xd1\x43\x2f\x1d\xee\x86\x51\x16\xb2\x5a\x26\xfe\xec\x2f\x03\x15\xb8\xfc\xa5\xea\xaf\x16\x59\x19\x2e\xe7\x7b\x94\xd4\x0e\x6b\x2b\xa2\x90\xf8\x87\xf4\x53\xff\x37\x5f\x7f\x1a\x23\x49\x7a\x9f\x89\xe1\xdd\x59\xd5\xe7\x9c\x9c\x83\x14\xff\xcb\xbf\x9d\x12\x64\x0f\x6c\x8f\x06\x96\x0c\xc3\x00\xbf\x44\xaa\xaa\xc8\x61\x17\x34\x35\x8d\xea\x56\x8f\x76\x60\xc0\x7c\x2b\xf3\xad\xca\x98\x8a\x8c\x48\x46\x44\x56\x4d\xf1\x93\xb1\x58\x7f\x33\x0c\x1b\x5e\x18\xb2\x60\x2c\x76\x8d\x35\x65\x4b\x5a\xad\x24\xca\x2b\x69\x29\x31\x8b\xc7\x88\x97\x48\x0e\x87\x73\xf7\x90\xd3\xf7\x7d\x5f\xd5\x67\xb5\x11\xef\xf3\xfb\xbd\xef\x93\x95\x31\xfa\x32\x88\x98\xae\xcc\x8c\xe3\x7d\x7f\xe7\xf3\x7b\x1e\xd8\xf7\x77\xdc\xee\x23\x51\xa2\x19\x3f\x09\x4f\xbd\xe4\xbf\x27\x85\xe4\x1f\x38\x6f\x84\x1f\x3d\x16\x7d\x32\x91\x5e\x68\xbb\x1d\xab\x1b\x7a\x58\xcc\xad\xed\x64\x3d\x52\x23\x7b\x8f\xd4\xc8\xde\xab\x89\x04\xf6\x37\x97\x4c\xa9\xa1\x1b\x6c\xf5\x5f\x32\x7b\xfd\x5f\x12\x74\x25\x89\xbf\x32\xa8\x02\x4e\xcd\x85\x64\x94\xd5\x39\x36\x1d\x6b\xe5\x42\x4c\x5b\xf4\xbc\xf1\xb4\x24\x42\x57\x85\x30\xf7\xe8\x34\xfc\x1c\x9f\x47\x9a\x71\x63\x83\x5e\x1e\x15\xd6\xeb\x1e\x01\xb4\xee\x8d\xd4\x84\x7b\xd9\xc2\x04\x0b\x90\x52\xfe\x72\x07\x2f\x40\x65\x83\x3f\x45\x29\x70\x95\x12\xd8\xce\xce\xc0\xac\x00\x82\x11\xb4\x11\x84\xb9\x0c\xfb\x64\xfb\x7a\x70\x07\xb7\x68\x12\x4a\xa6\x80\xb4\xa3\xa0\x93\x87\x1d\xdb\xcb\xda\x55\xd6\xd8\x9e\xf0\x50\xb9\x5b\x9f\x6b\x85\x00\xe5\x1e\x99\x9f\x27\x3e\xed\x95\x6b\x5f\xb3\x8b\x8b\x36\x2f\xb2\x54\x09\xd7\x51\xfb\x3b\xc5\x1a\x6e\xa7\x28\x39\x4d\xb3\x74\x35\xcb\x97\x61\x84\xa6\x02\x29\x97\xa7\xd9\xb9\x50\x43\x47\xe8\x4c\xa6\xb3\xdb\xa8\x08\x41\xc3\xc1\x4b\x2e\x78\xc0\xc6\x46\x1d\x8c\xbe\x18\x2c\x0c\xf2\x05\x83\x82\x83\x9f\xb2\xf5\xac\xbf\xe7\xd9\x01\xbe\x57\xc7\xaf\xdb\xcf\xb3\xa5\xdc\xf4\x7a\xc6\x61\x00\x02\x2c\xe3\x32\xe1\xb0\x2f\x93\xe9\x4c\xed\xaa\x33\xc7\xd5\x72\x81\x8b\x00\x9a\x47\x8e\xa3\xe0\x09\x3a\xb6\xfd\xc2\x6e\x6a\xe8\xed\x68\x51\x98\x70\x7f\xc8\x65\x4c\x54\xb6\x94\x64\xb5\xe1\x55\x60\x6e\x46\x24\x82\x7f\x8a\x76\xb1\x60\x6d\x95\x9d\x79\x6b\x8d\xea\xb9\xe7\x9a\x5f\x19\xc4\x3a\x91\xa0\x38\x86\xea\xe3\x0a\x70\xd8\x5a\x4c\x77\xad\xcc\xd1\x79\x2d\x95\x38\xad\x2e\x47\xa5\x4f\x1f\x23\x95\xcf\x14\x1c\x0c\x70\xb6\xf7\xa2\x90\x47\xde\xa3\x34\xcf\x59\x00\xe7\x91\x7c\xfc\xb3\x6f\xce\xc7\x3f\x35\xc6\xde\x93\x37\xfa\x46\x5a\x90\x0e\xc4\xcb\x84\xbd\xd9\xde\xaa\xd1\x84\xed\x0f\xf2\x76\xd7\x14\x3e\xe6\x42\x7b\xe3\x26\x11\xdb\xdc\x1c\xb3\xba\xd5\xde\xee\xb9\x4c\xa9\x11\x12\xfd\xb3\x28\x33\xc9\x49\x5d\x23\xb2\x6d\x4a\x48\x91\x34\x68\x00\xc8\x3d\x04\x1d\x06\x0a\xd3\x8f\x4b\xb9\x91\x67\x8a\x64\x0d\x26\x4a\x8e\x09\xe3\x9b\x2d\x2e\xc6\xed\xd8\x24\x7b\x69\x38\x0a\xc1\x29\x1e\x06\x98\x1c\x61\x52\xb6\xa1\xb5\x84\x8a\xeb\x45\x57\x96\x45\x60\xf2\x10\x97\x2e\x9f\x70\x2f\x5d\xc7\x19\xab\x47\xaf\xf2\x11\xee\x19\xcb\xa7\xb9\xbd\xb9\xbb\xf5\x89\x6d\xe7\x24\x5b\x55\x41\x6e\x58\x8d\x87\x34\xb8\x75\x09\xd1\x0c\x0a\x59\x57\xea\xba\x2c\x34\xb2\x88\x8b\x78\x37\xa2\xfd\x76\x9c\xb8\x14\xc7\x19\x24\x5c\xbd\xa4\x1c\xe4\xea\x19\x54\xce\x82\xb5\x2d\x6a\xbc\x09\xfc\xb6\x7c\x06\x88\x88\x37\x22\x22\x70\x7a\x83\xfc\x69\x6e\xcd\x92\x49\xf7\x12\x4b\x89\x88\xf0\x22\xbc\x78\x64\x9d\x66\x8c\x91\x6f\xe2\x1f\x24\x95\x90\xb9\x8e\x28\x0c\xb5\xa0\x40\x34\x82\x0a\x56\x5e\x26\xce\xa6\xdf\xa3\x56\x71\xa3\xb5\xd5\xc4\xcd\xce\x36\xed\x20\xcf\xfa\xca\xca\xec\xcc\xff\xfe\xa7\x5a\x21\x66\xda\xff\xd4\x7a\x0d\x01\x7c\x2f\x2e\x1b\xcc\xee\xf6\x36\x3b\xd1\xb7\xb7\x8e\x1a\x4e\xcf\x34\xa7\xa7\x9f\xa8\x5c\x0a\x62\x35\xe8\xd9\x6a\x25\xa8\xba\x0d\x04\x74\x32\x74\x87\xa8\xe2\xaa\xf3\xfe\xd8\x9a\xdb\xd7\xc9\xa9\xfd\x11\x2a\xb1\x4a\x27\x40\xc0\x2a\xc9\x47\x90\x6a\x6d\xc2\xe7\xaa\x32\x87\x8b\xd0\x04\x6a\xdd\x0a\x7e\xf5\x47\x34\x87\x7e\xdf\xd5\x14\x84\x74\x68\x18\xa8\x08\xc7\x4b\x9e\x87\xa6\x9a\x8b\x71\x6a\xd2\x36\x4b\x88\x9f\xa2\xe5\x7a\x8a\xde\x7c\xe2\xd8\x52\x26\xc3\x3e\xbe\x85\xae\x1e\xe2\x4d\xb8\x57\xa5\xed\xaf\x9e\x85\x12\xe1\xd5\xb8\xa3\xbe\xed\x74\x12\x8d\x13\x91\x4f\xdc\x45\x3b\x41\x4e\x68\x0c\x72\xc9\xe4\x6b\x30\xd0\x68\x35\x9c\x27\x25\x83\x3a\x64\x6c\xb3\xe8\xba\xb0\xd6\x2d\x66\x3f\x46\x54\xbd\x0f\x5d\x7b\xe3\x25\xa0\x57\x9b\x6d\x33\x28\x1d\x64\xc0\x59\x05\x4f\xf0\x31\x3b\xab\xc7\xc4\xa8\x01\x8e\xc5\xe4\x09\xaf\x03\xfa\xdb\x27\x58\x35\xed\x8e\x7b\xe1\xf0\xa5\x02\x14\xf0\xea\x70\xd5\x3b\xf6\xe8\x6e\x3f\xe5\x20\x90\x3f\x84\x23\x82\x91\x93\xcf\x13\xea\x07\x44\x4d\x98\x08\xf9\x18\x45\x02\xd1\x28\x06\x80\x59\x95\x18\xaa\x17\xae\xbf\x1e\x14\xc9\xde\x24\x50\xda\x9e\xf5\xad\x76\x67\xff\xfc\xfe\x2a\x85\x5a\x9b\x68\xbc\x34\x13\x68\xa3\xfd\xfc\x0a\x9a\x5e\xda\xc4\x19\x53\x58\x9e\x3a\xd0\xec\xc6\x65\x83\x66\xb5\x46\xf9\xfa\x6b\x0a\x41\xb9\x29\x4b\xaf\x5d\xa0\xe5\x2b\x1a\x55\x67\x02\x93\xdc\x42\xbf\x7d\x7e\x4a\xa4\x97\x4f\x30\xef\x23\x3e\x06\x2f\x71\x67\xa4\x65\x53\x2c\xdb\xb2\x70\xa9\xb6\x27\x90\x9f\xf7\x64\xf2\xd8\x7c\x30\xf9\x1f\xb9\xab\x95\xe3\x9a\xa8\xf6\x45\xe8\x7f\xab\x55\xad\x65\xf9\xde\xfa\x44\x3f\xdf\xcc\x6d\xdf\x9a\xa4\x11\xa8\x06\x7f\x34\x0c\x21\xcb\x8f\x2a\xdb\x22\x15\x93\x2d\x34\x09\x68\x01\xed\x72\x61\xa7\x1c\xd7\x70\xf2\x54\xcb\x7c\x50\x8a\x98\x3f\x2e\xa2\x01\x05\x1e\xac\xa9\x4b\xcc\x8b\x8a\xf4\x1c\x05\xaa\x73\x34\xcb\xea\x15\x1e\x42\x28\x79\x9a\x14\xbb\x4e\x8f\x55\x59\x5d\x59\xb7\x5c\xcd\x9c\x3e\x54\x83\x32\xbb\x88\x32\x3e\x92\x8c\xe9\x67\x45\x19\xf7\x4d\xba\xbc\x2c\xe4\x4e\xc8\xe9\x81\xc6\x91\x63\x4f\xfc\x91\xdb\x38\x2d\xca\x20\x24\xef\xa9\x7d\xc2\xb8\xd0\xa9\x31\x6b\x02\x26\xa8\x7e\x56\xd8\x1c\xa5\xe3\x71\x82\xbf\x87\x23\xa9\xf0\xd6\x2f\xf8\xf2\x97\x9b\xed\x64\x50\x94\x5a\x36\xde\xbc\x12\x41\x2c\x87\x68\x19\xf2\x41\x07\x64\x84\xb0\xf5\x0f\x49\x61\x4a\x10\xc4\x04\x14\x7f\x51\xd6\xfd\x29\x9a\x75\x5c\xcc\xf2\x45\x1b\x97\xc6\x75\x21\x66\x0e\x06\x6c\xb5\x97\x04\x1d\x27\xa8\x52\xb1\x0e\x78\x34\x69\x71\x91\x10\xf1\xf9\xb1\xb8\xf0\xf9\xe6\x6a\x0c\x63\xf9\x6a\x18\x23\x08\x23\x05\x63\x31\xdd\xf4\x4c\x33\xb7\x5f\x19\xf8\xba\x89\xb7\x20\x3e\x25\xbe\x48\x30\xe3\x05\xd3\x5e\x5e\x72\x14\x39\x85\x5b\xd4\x5e\x92\xbb\x5a\x74\x2a\xdc\x1d\xf6\x9f\x58\xc9\xc7\xe1\x5e\xe1\x8d\xee\xb1\x5c\x91\xd4\x36\x71\x71\x0f\x9c\xcb\x80\x05\x44\xf7\x1c\x35\x71\xd0\x18\xf8\xe1\xc8\xea\x77\xbd\xa7\xde\x42\xf1\x36\xe7\x91\x3d\xe1\xed\xdc\x06\xcc\x68\x04\x72\xa3\x44\x15\x01\xd8\x78\x8c\x35\xc6\xdf\x19\xeb\x89\x4e\x4f\x37\x4b\x9b\xd8\x7e\x37\x4b\x85\x19\x59\x3d\x11\x31\x75\x9c\x1f\x29\xd1\xe5\x0b\x6b\x0d\xaa\x19\x1c\x23\x02\xd4\x63\x54\x96\xec\x9b\x35\xd1\xc9\xd4\xde\xcf\x61\x77\xef\x42\x7a\xea\x5c\x84\x12\xa0\x92\x7c\xe0\xe1\x1a\x42\x88\x03\xcd\xc5\x78\x69\xe0\xc1\xdc\xf0\xf8\x67\x59\xc2\xf6\x2c\xd5\x04\xaa\xd7\x1e\x17\x31\x6a\x02\x33\x07\x03\x7e\x7a\x7f\x38\x21\xf9\xe2\x4e\x5c\x98\xa5\xdc\x5a\x58\x1b\xa5\x21\xad\x5e\x06\x4a\x5e\xd2\x36\x92\x7f\x70\xab\x5a\xfe\xc1\x4f\xdb\xf5\xac\x49\x8b\xbd\x5c\x33\x84\x23\xf7\xe4\x98\x41\x7b\xe5\x32\xb7\x96\xde\x19\x06\xd5\x68\x99\xcd\xd5\x9c\x97\xf0\xc8\xe7\x86\xbc\xc5\x09\xd9\xf5\x39\xe6\x1d\xd9\xb5\x5e\x3b\x29\x97\x9a\x3c\xcf\x56\xdd\x2e\xd3\xe5\xd4\x20\x52\x1f\x6d\x77\xa4\x66\x69\xc9\xcf\x48\x21\x00\xfc\xba\xfb\x59\x26\x88\x10\x18\x82\x2f\x29\x74\xb3\x5e\x96\x64\x4b\xd9\xa0\x98\x08\x10\xd9\xdb\x44\xd7\x27\xe3\xe9\x5a\x52\xd1\xcf\xf5\xb2\x34\x2e\xb3\xbc\x5a\x1d\xc1\x90\x3d\xe1\x02\x3e\xac\x5f\x89\x54\xf1\xf8\xd6\x91\x55\xc0\x5b\x3c\xba\xbe\x35\x6b\xad\x72\x37\xc4\x79\xb1\xcd\xd1\xe5\x42\xb9\xf7\x12\x0f\xbf\x5e\xf2\xd0\x84\x25\x6b\x20\xe4\x03\xbf\x82\x7c\x4d\xf5\x66\x47\x46\x7a\xdd\x5b\x43\xae\x7d\xbd\x26\x2e\x68\xae\x9a\x64\xd9\x19\x0b\xd1\x18\xc0\x6b\x56\xc1\x81\x9a\x6e\x6d\x3b\x1b\xa4\x85\xf5\x50\x13\x3c\xa3\x5b\x1c\x1b\x8e\xeb\x55\xce\x1c\x6c\xbe\x66\x57\xe3\xa2\x0b\x07\xa0\xe3\xbf\xe1\x59\xdd\xa7\x84\xf0\xe7\x75\x7d\xff\x4e\xd6\x2e\xb3\x5c\xab\x37\xe8\xb0\x7c\x13\x6b\x5a\x4e\x6a\x3a\xff\x07\x2a\xd7\xbd\x18\xe7\x3d\x57\x94\xc1\xbc\xe4\x08\x4a\xe2\x1e\x91\x5e\x04\x56\x46\x5b\xb6\x5f\xc0\x3e\xd2\xee\x22\xc9\x3f\xb9\x2d\x01\xf3\xf8\x63\x17\xee\xc1\x22\xde\x1b\xaf\x22\xcf\x38\x68\xb0\x2b\x19\x20\x9d\x38\xe7\x2c\xa8\x1c\x8f\x18\xa3\xfe\x60\xa1\x41\x60\xf7\x77\x48\x87\xea\x1d\x1a\x5d\x4f\x07\xfd\x1d\xa1\xd4\xf5\x00\xd6\x59\x6b\x9e\x34\xfd\x88\x80\xcb\x07\xbe\xa1\xb9\xfa\x77\xb5\x66\x09\x3a\x49\x50\xbf\xf6\x8d\x51\xdf\x88\x07\x25\x89\xe6\x40\x75\xe2\xa7\xdd\x01\xca\x96\xe8\x35\x49\xe8\x27\x27\x35\x53\x2d\x71\xda\x89\x57\xe2\xce\xa0\x8a\xbc\x66\x67\x37\xd1\x8e\xdb\x1c\xc7\xff\x4c\x4f\x37\x4d\x6a\x92\xb5\xaf\xaa\xc5\x54\x80\xbc\x33\x31\x8a\x71\x27\xa6\x64\x37\x22\x66\xd2\x72\x77\x00\xf4\x6e\xf2\x28\xd1\x25\x04\x02\x2a\x40\x43\xd2\x08\x52\xc3\x92\x7f\x61\xd8\xd4\xd5\x61\xa8\x70\x3c\xe0\xa5\x73\x36\x7a\x9c\x68\x7b\x16\x6c\x3e\xe9\x3e\x25\x8b\x8c\x44\xba\x37\x86\x01\xc8\x00\xb4\x28\xa2\xf7\x71\xc2\xec\xb9\xb9\x66\x99\xf5\xe3\x76\x23\xf0\xd1\x5f\x20\x3e\x89\xf1\x09\x9b\xe7\x9b\xf9\x00\xd4\x79\xb4\xfb\xc0\x4b\x24\xc7\xb5\xbc\x44\xed\x7c\xe0\x04\x6b\x47\x98\x85\xc2\xef\x40\x31\x01\x35\xbc\x8f\xeb\xf6\x22\x4a\xfb\x05\x2b\xd8\x6c\x9d\x9d\xf2\x2d\xee\x24\x5b\xd3\xd7\xa7\x1a\x2a\x0d\xaf\x36\x38\x0e\x85\xad\x22\x79\x87\xd5\x31\x6e\xb7\x13\x72\xe4\x32\x45\x62\x97\x47\xc6\xc9\xe3\x3c\x5b\x33\x09\x97\xb3\x4f\xbb\xe6\x87\x1c\x47\x9f\xf6\xc1\xeb\x08\xba\x4e\xa6\x0e\x44\xbd\x1b\xeb\xc4\x03\x05\xab\x75\xa2\xfd\xba\x11\x3d\x98\x65\xfb\x69\x02\x0b\xca\x88\x8a\x50\x51\xa0\x27\xa6\x0d\x67\x82\x97\x1d\x25\x08\x54\xc3\x69\xf2\xc1\xcb\xec\x6c\xe1\x1a\x90\x0f\xdc\x90\x06\x39\x92\xa6\xb3\x11\x89\x8b\x9f\x25\x96\xb3\x1f\x20\x60\x42\x24\x05\x8d\x66\x54\x62\x77\xac\x07\x0a\x03\x59\xaa\xda\x77\xd8\xfe\xeb\x1e\xb8\x12\xea\xf0\xa2\x3a\x82\x7a\xf6\xfd\x61\x58\x74\xc2\x63\x0c\x83\x77\x1d\xdb\x8d\x18\x6f\x02\xcd\xa1\x33\x39\xb8\xaa\x6d\xad\x30\x63\x63\x8b\x85\xc9\xd0\xf0\x94\x98\x4e\x17\x7d\xf5\xfb\x2a\xbb\x13\xf4\x09\x4e\x47\x4f\x8d\x51\x3c\x7f\x7e\xaf\xfb\x65\x54\x6c\xff\x39\x6e\x08\x7d\x6e\x68\x16\xa8\x09\xa7\xee\x07\xe6\x62\x70\x7b\x17\x59\x1e\xf8\x22\xa1\x3a\x3f\x40\x28\xea\x45\xb0\xaa\xc7\x2c\x1f\x91\x7a\x16\x4a\x8e\x27\x6b\xb1\x64\x8b\x20\xa0\x84\xb9\x56\xfc\x4a\xf5\xe5\x0a\x5f\xa9\x49\xa5\x59\x98\x16\x65\xa6\x9d\xad\x00\x40\xde\xb9\x1e\x46\xc0\xe2\x45\x83\x51\x6b\x16\xda\xc2\x64\xe8\x99\x51\x4a\xec\xba\xce\xce\x4a\x9c\x25\x3a\xc0\x83\x10\xec\x1b\x94\x2b\x7e\x83\x54\xd8\x8a\xb5\xb4\x93\x67\x3d\xd4\x72\x05\x6c\x11\xa4\xb0\xd7\x2f\x11\x54\xbc\x1f\x27\x45\x96\xa2\xdc\x89\x85\x7a\xce\x15\x2d\x94\xcb\xd8\x5d\x15\x1e\xff\x9f\x8f\x99\x1b\x17\xbd\x01\xee\xdc\x08\x03\x9e\x27\x23\x92\xec\x3c\x59\x9b\xce\xf7\xcc\xeb\x8e\xfa\xa7\xfa\x90\x32\x93\x35\x68\x04\x9d\xe9\xbd\xec\x33\x44\xf7\xb8\xdd\x8d\xf3\xa9\xaf\xdf\xfe\xeb\x41\x25\xb4\xca\x9f\xd8\x89\x2b\xc4\x99\x64\x04\xdf\x13\x72\x14\xbf\x82\xaa\xad\x8e\x75\xf6\x99\xf5\x6a\xdf\xe2\x01\xbc\x8b\x6d\xe0\x4a\x1d\x83\xa7\x5a\xbe\x13\xb5\xb2\xc7\x41\x4e\xbc\x0c\xed\xfc\x94\xb2\x86\xbd\x25\x1e\x06\xc1\x27\x86\xb1\x50\xe5\x3e\x8a\x88\x1e\x11\xda\x79\x98\x10\x7c\xd9\xbb\x70\xa4\xf8\xb6\xeb\x30\x07\xd8\x79\x2c\xc0\x39\xd9\x7a\x24\xc4\xef\xa0\x02\x95\x21\xa7\x88\x07\x9e\x9e\xd9\xba\xbd\x0e\x34\x0f\x4d\x3d\xd5\xf0\x1a\x4a\x37\xa2\x10\xa7\x7c\x18\x8d\x28\xb1\xf9\xde\xfa\xae\x56\x88\x10\x7e\x8a\x67\x83\x52\xc9\x4e\x30\x4a\xe0\xb7\x6e\x70\x07\x5e\xe2\x42\xbc\xb5\x8f\xd0\x30\x54\x08\x8f\xbb\x21\x7c\xc1\x03\x62\x09\xdf\xbb\xee\x1e\x88\xb2\xe9\x37\xbe\xf0\x7b\xa1\xa2\x16\xf8\xbf\xa1\x9d\xa0\xa8\x05\xf7\xfe\x01\xa9\xf8\xd3\x21\xa9\x77\xbc\x49\x2d\xbd\xd5\x3c\x4b\x97\x3a\x99\x78\xcb\x39\x1f\xcf\x93\xf8\x62\xad\xaa\x74\xcf\xac\x65\x39\x62\x95\xda\x02\x8c\xa7\x5d\x77\xa3\x68\x3e\x53\x87\xdd\x39\x4a\x78\xd6\xa3\x35\xac\x6a\x73\xae\x19\xd1\x08\x58\xfe\xf7\x49\x8f\xe0\xfd\x68\x2b\x40\x71\xe6\x60\xd3\x74\x7a\x71\x1a\x17\x65\xee\xbc\x18\xca\xae\x5e\x43\xc6\x13\x3e\x9f\x89\x82\x24\xec\x8b\x90\x59\x46\x8a\x79\x8f\x67\x48\x2e\x39\x18\x15\x22\xf0\x33\x81\x66\xb7\x9b\xf5\x93\x78\x31\x50\x50\xab\xa8\x7d\x80\xe9\xde\xa1\x41\xdb\x8e\x35\xc9\x63\xce\x93\x20\x10\x97\x14\xd0\x8b\xf6\x54\xef\x0c\xfd\xd0\x0b\xc8\x2d\xf0\x66\xb7\xad\xbb\xf7\xa4\x9c\xef\x9c\x8a\xbb\xdd\x01\xb4\x90\x90\x40\x61\x77\xdc\x19\x86\x79\x95\xfb\x68\x0e\xc9\x17\x0f\xc3\x10\x94\x6c\x14\x65\x99\x6f\x84\xdf\x18\xb3\xcc\xfb\xe7\xf7\x37\x17\x4d\x9c\xeb\x4c\x89\x0a\x30\x54\x3f\xaf\xed\x6e\x52\x3d\xce\x63\x93\x38\x35\x78\x4c\xf1\x7e\xe0\x7e\x54\x8e\xa3\x11\xaa\xbe\x50\x67\xbf\x4e\x74\x75\xdf\x60\xc9\x88\x77\xc7\x4a\x43\x9f\x27\xa2\x37\x25\x08\x27\x56\x87\x23\x64\xbd\x17\xad\xb4\x90\x42\x01\x12\xa2\xf3\xaa\xb1\x11\xae\xda\x2c\xa5\x76\x55\xb2\x26\xec\xaf\x9f\xc3\xac\xc8\xc9\x78\xc5\x69\x1a\x10\x2e\x81\x17\x0a\xe8\x28\xa2\x2c\x34\xa8\x3b\x14\xfd\xd8\x2e\x59\x69\x73\x22\x20\x3f\x42\xf0\xab\x73\x3c\xec\x7d\x93\xf2\x98\x7d\x2b\x6b\x0d\xf2\x00\xea\x76\x95\xcb\x62\xeb\x36\xd9\x37\x27\xa8\xca\xc6\xa1\xa9\x4d\x17\xa9\x6e\x8e\xc7\xc2\x95\xff\x4b\xb2\x4c\x20\xa2\xb0\x3e\x3f\x24\x8c\xda\x0f\xeb\x52\x97\x38\x5b\x35\x8d\x00\x1f\xbc\xc8\x94\x12\x17\xa9\xba\xd2\x36\xc5\xc0\x24\xe5\x1a\x6b\xe9\x49\x13\x57\x4e\x7c\x15\xa5\xe8\x0f\x3a\xc0\xbe\x29\x0b\x7f\xd8\x36\x27\x99\xfb\xe9\x2e\x15\xd0\x7b\x99\x23\x19\xde\x15\x3a\x41\x1b\x11\x8d\xbe\xbe\xcf\xc5\x03\xb4\xbf\x91\x42\xff\x82\xc1\x60\x70\x24\xaa\x1e\x10\x90\xea\xdb\x5a\x01\x4f\x54\xc6\x3d\x5b\x7c\x8a\x8c\x06\xd4\x03\xd0\x78\xbc\x02\x93\x2c\xae\x88\x3b\x1e\x77\x88\xd7\x60\xa7\x9b\x6d\x54\x5a\x3b\x17\x8b\x2a\xe8\xdf\x2d\x57\x6c\xe2\x91\x7a\x13\xa6\x70\x74\x0a\xaa\xba\x7c\x04\xa6\x13\x2d\x22\x1f\xda\xd1\xe2\xb0\x2c\x0a\x43\xf9\x8d\xf5\xca\x07\x08\x00\x28\xa2\x31\xc0\xcb\xce\x67\xc1\xa5\x6e\xf8\xba\x8c\xe9\xbc\x36\x28\xa4\x8e\xeb\x25\x7b\x91\x9f\x68\xc7\xa6\x8e\x10\xab\x48\xb2\xa5\x02\x15\x70\x95\xb7\x73\x4f\x43\x4e\xfc\x14\x5a\xd1\x76\x50\x48\xd4\x98\x04\x07\x48\xa4\xae\x48\xbd\xd1\x66\x3a\x3f\xfc\xb5\x4f\xe8\x40\xf7\x73\x9b\x38\xee\xee\x1c\xe0\x5f\x84\x18\x12\x16\xc9\x89\x67\x7b\xc9\x6d\x62\x5e\x77\x2e\xa2\x96\xa2\x95\xb8\x2c\xb1\x4a\x63\x9d\x1c\x82\x91\xbf\x1d\x85\x78\x72\x7c\x52\x6c\x76\xb6\x69\xd3\xea\x61\x15\x2c\xc8\x7b\x09\x3f\xa1\x7a\x01\x75\xf8\x2e\xb3\x98\x9b\xb8\x43\xd2\x09\x28\x7c\x2b\x49\xdc\x13\xfe\xe2\x97\xe3\xd4\x49\x11\x1f\x9a\x92\x50\x0c\xa8\x3f\x39\xa6\x4e\x44\x9c\x96\x36\x75\x9c\x67\x49\xc3\x2d\x2b\x54\xf0\x84\xcf\x4b\x4e\x28\xdf\xcf\x6d\xdb\xc6\x2b\xae\xfe\xe6\x61\x39\x52\x73\x93\x13\xd8\x4f\x64\xb2\x52\x8c\x94\x93\x51\x91\xcf\xf6\xda\xee\x6a\x89\xf9\x90\xc3\x4f\x90\x5f\x84\x33\x41\xff\xf4\x4a\x44\x62\x24\xff\xc6\xbd\x67\xdc\x04\xa2\x17\x84\x9c\x12\x0a\x21\x16\x39\x86\xdf\x94\x93\x1a\x93\xf5\x6a\xb3\x72\x3f\x92\x1f\xeb\xf4\x4f\x80\xac\xdc\x22\x0e\xeb\x5e\xd6\x89\x17\xe3\xb6\x03\x89\x15\x3b\xc2\xee\xb8\x11\x11\x5d\x32\xc8\x6e\xb0\xe9\xc4\xce\x6b\xa6\x4d\x49\xd8\xe5\xad\xd1\xe0\x4b\x33\x55\x6a\xb3\x3b\xa4\x24\x97\xf0\xcc\x85\x7e\x2f\x1a\x65\x2b\x3f\xa4\x4d\x3e\x68\x90\x8a\x36\x50\xc4\x18\xac\x40\x48\x73\x0e\x3e\x5f\xad\x52\x9d\x4a\xf7\x60\x41\x27\x5e\x80\xb5\xfe\x25\x4d\x85\xfd\x92\xc6\x0f\x8a\x32\x8f\x97\x6d\x31\x19\x0a\xf5\x23\xd2\x5a\xd7\xa8\x32\xf7\x0b\x2e\x43\xff\xa8\x06\x29\xd3\x5c\xb0\x6e\xc4\xda\xf5\x1e\x95\x56\x32\x10\xbf\x4d\xb8\xd6\x9e\x1f\xd6\xf3\xe3\x31\x27\x86\xa1\xd9\x62\x8a\xc2\xf6\x16\x92\xb5\x9e\x00\x1a\x50\x0c\x7f\xc0\x1a\x52\xe3\xf5\x53\x35\x00\x65\xae\x18\x7b\x00\x10\x37\x19\x35\xbb\x49\xec\xf6\xbd\x41\xd1\x1e\xa8\x18\x8d\x98\x18\xc2\x55\x61\x82\x01\xab\xe5\xed\x91\x4a\xc5\xeb\xca\xf8\x2f\x09\x88\xfb\x90\x26\x23\xe4\x79\x06\x69\xc7\xa4\x68\x9d\x79\x7a\xcf\xb0\x82\x51\x0b\xf2\xb3\x81\x61\x35\x8f\xd7\x78\xa7\xa7\x9b\x8b\x59\xbe\x64\xc1\x2a\x88\xf0\xed\x2e\x33\xd5\x5d\xa4\x16\xf5\x29\x16\x17\xcc\x07\xbd\x85\x04\xac\x1a\xda\x00\xad\x2e\xd6\xf3\xea\xce\xeb\xc8\xf1\x9d\x1a\xbd\xe3\x03\xcd\x7e\x36\xc8\x61\xf0\x60\x8e\x21\x39\x24\xc7\xde\x10\x15\xcb\x71\x8e\xc1\x06\x1f\xd5\x6c\xa7\xcc\x6d\xfb\xba\x67\x81\x48\x6c\x1e\xb7\x25\x95\x02\xda\x03\x7f\x28\xc7\x7e\x26\xb4\x6b\xd2\x4e\xdc\x36\xfd\xbe\xed\xec\x64\x6a\x0f\x84\x40\x78\xd4\x9b\x43\x22\xee\x01\xa0\x5d\xbb\x48\x24\x32\x3b\x89\x32\x92\x32\x87\x86\xe8\x2d\x37\x71\xb5\x46\xa7\xa7\xbd\xfe\x6a\xc3\xb3\x86\x6c\x92\x32\x09\x68\x10\x94\x64\x3d\x04\x5a\xcb\x59\xd6\xf0\x83\x07\xff\xc3\x36\xfc\x8c\x9c\xac\x3f\x13\xda\xdb\x8b\xb6\x23\x9a\x94\x0d\x12\x71\x83\xa1\xd6\x5d\x10\x7a\xc0\x7d\x6b\x4a\xdb\x49\xd6\x1c\x97\x93\x17\x86\xad\x36\x1c\x82\xca\xf3\xb8\x69\x25\x1d\xab\x2e\xd3\xf7\x2d\x0f\x69\x21\x1d\xad\x7e\xf7\xe9\x4f\x3d\xdb\xaa\xb3\x0b\xfd\xe0\x67\x7d\x8d\xca\x53\x65\x80\xef\x4e\xa7\x27\xc7\xcb\x88\xaf\x56\xe6\x62\xb0\xb4\xe4\xfb\x14\x7e\xa2\xa4\xfa\x3e\xad\x78\x8c\x5b\xe4\xca\x20\xfb\xc4\x47\x66\x9c\xa8\x37\x71\x9e\x2a\x8f\xb9\x5d\x32\x79\x47\xad\x37\x96\xd1\x5d\x62\x70\xbc\xeb\x1b\x0a\xc5\x20\x2d\xd0\xf9\xc0\xfa\xde\xb5\xce\x8a\x86\x02\x75\xd5\xa8\x32\xbc\xfd\x24\x2e\x20\x56\xf7\x62\x80\x47\xf8\x12\x08\xfc\x04\xa2\xa5\x1f\xd5\x4d\x12\x3a\xbc\x3d\xa0\x80\xc0\x3c\xdd\x81\x37\x92\x93\xb1\x8f\xcc\xce\x36\x13\xd3\x2f\x33\x19\xe4\x64\x80\x0d\x98\xda\xa1\x03\xa0\xa2\xeb\xa1\xdc\x57\x98\x72\x57\x65\x22\xbd\x75\x9a\xdf\xef\xdb\x05\xd5\xfb\x86\xf7\x94\x59\x69\xbc\xb1\x2b\xee\xe5\xcb\x1f\x8d\x9a\x33\xff\x56\xaf\x44\xbf\x12\xe8\x30\xba\x26\x4f\xb2\xb2\xb4\xc5\x4a\x9c\x24\xb6\x31\xa6\xbd\xa7\x05\xfe\x67\xfd\x22\x2d\xe3\x34\x5b\x48\x4c\x51\x66\x3d\x33\xc9\x8c\xef\x23\x5c\xee\x61\x05\xa3\x22\xa7\x84\xef\x61\x1a\xc4\x76\x96\x6c\x67\x67\x75\x4f\x60\x4f\x6a\xac\x57\xdb\xd1\xeb\x3c\x56\x4f\xd4\x43\x5e\x2a\xbb\xa9\xbc\x6f\x81\x96\xe8\xd1\x56\x10\xf4\xbc\x5e\x97\xdc\xf4\xac\x2d\x05\x4f\xe8\xb5\x48\x3c\xbd\x8f\x70\x77\xe8\x50\x4f\xb8\xb0\xc5\x2c\x59\x2e\x26\xaa\x0b\xc3\x32\x02\xf4\x96\xd9\xcf\xb0\xd1\xb6\xb5\x6a\x24\x8a\xdd\xdc\xdf\x04\xa3\xf7\x50\x13\xc3\x55\x9e\xe6\xc4\xed\x1e\xe5\x29\x45\x3b\xb6\x69\x5b\x9a\xcc\x88\xe7\x51\x0c\x41\x1e\xfe\x11\x91\x49\xde\x62\xbd\x96\x1f\x8d\xf2\xb9\x24\xe5\x13\x55\x0e\xe1\x3b\xe0\xf3\x53\x6a\x3b\x4f\x30\xb5\xd6\x65\x1e\x32\x99\x6c\x51\x04\x39\x0c\x02\xe1\x42\x77\x8f\x07\xf7\x0f\xcc\x06\x06\x2d\x20\x1c\x63\x20\x19\xc1\xdf\xf7\x22\xd2\xf5\x3d\x81\x57\x28\xbf\xc1\x02\xdd\x02\x7e\x50\x31\xb1\xea\x7d\x6a\xfc\x5a\xd3\xb8\x59\xed\x66\x12\xc4\xd4\x11\x6f\x8c\x68\x50\xc6\x45\x59\xd9\xd9\x2a\x1e\x53\xd6\x31\x62\x20\xab\x2d\x3a\x67\x7d\xa8\x87\xe1\x85\x21\xc6\x96\x4a\x8e\x9c\x50\x41\xd4\x64\x4e\x6c\x60\x3f\x73\x16\x1f\xd8\xbc\x32\x0c\x41\xea\x1d\x49\xb8\xfd\x13\x0c\xea\x08\x8c\xeb\x5b\x34\x71\x0e\x56\x7c\x40\x8e\x91\x79\x2a\xa3\x17\x31\xf4\xdf\x8d\x08\x1d\xfe\x80\xbc\xdc\x3d\x52\x9d\xbb\xe2\x53\xe4\xc5\x3c\xfb\x2a\xd0\xc6\xea\xee\xdd\x8f\xc8\x49\x10\xf7\xb2\x50\x86\xf1\x54\x20\xe8\x72\xcb\xb1\x77\xec\xa5\x05\x45\xde\x24\xe9\x57\x89\xae\x24\xb0\x40\x28\xe8\x90\xfd\x0f\x60\xe3\x4f\xfb\xf7\x62\xd3\xd2\xf5\x87\x52\x3b\xc8\x25\x15\x52\x5d\x45\x77\x6f\x2a\x34\x1c\xf6\x5f\xc7\x8d\x77\x34\x02\xaf\x0b\xd5\x5b\x43\xd8\xd1\x4f\x8c\xeb\xd0\xed\x18\x65\x8c\x77\xb6\x10\xe9\xd5\xdd\x61\x18\x82\xda\xed\x8c\x10\x3c\x81\x28\xc2\xe2\x1f\x1e\xfa\x49\xb6\x7e\x9e\xf5\xe2\x42\xe7\xd2\x65\x1a\x87\x84\x10\x84\x7d\x09\xe6\xfb\x2f\x7d\xda\xba\x6a\x8a\xa0\xf8\x00\xaf\x81\x9d\x2b\xc7\x24\x49\x98\x40\xae\x0f\xdf\x00\x4d\x1f\x14\xb6\x6e\xe0\xab\xe1\xd7\x1f\xb0\x20\x45\x6e\x16\x4d\x89\x25\xad\x4d\xe0\x6a\x49\x6b\x0f\x58\x81\x74\x71\xba\x98\x18\x61\xb5\x0e\x20\xe0\x37\xdf\xa2\x69\xf1\xb7\x7c\x71\x29\xb7\xa5\x89\x15\x67\x8d\xfd\xf9\xd0\xd9\x45\x6f\x1c\x78\xc6\x41\xab\xb0\xb6\x33\xa8\x72\x24\x71\xfa\x04\x37\x79\x91\xb4\x64\xb7\x16\xde\x06\xfd\xc9\x90\x85\x43\x7f\x59\x01\x39\x95\x7d\x55\x5c\x45\x18\x3b\xb8\x19\xd1\x2e\x89\x93\x84\x5b\xa9\xd0\x9b\x42\xba\xfa\x73\xf7\x62\x60\x42\x1e\x8e\x36\x12\x13\xeb\x6c\x20\xf2\xf2\x2b\x23\x92\xdf\xcc\x7a\x76\x05\xb7\x89\xb4\xec\xad\x21\x99\x7b\xb7\xaa\xd1\x49\x9b\x18\x19\x9a\x45\xd6\xeb\x29\x30\xf6\xcd\xb1\xba\xa9\xe2\x51\x8e\xb8\x2b\xf3\x8a\xf6\x41\xf6\xf4\x81\x74\x2a\xa4\x53\x42\xf3\xc8\x42\x2f\xa8\x7c\x1a\x81\x5f\x62\xb5\x1b\x97\xb6\x5a\x60\xf0\xcb\xca\xbc\x1d\xd0\x3a\xe7\x82\x72\x58\xb5\xcd\xd2\x76\x57\xa3\x26\xac\xa5\xef\x90\xe4\xf0\x77\x68\xa4\x3d\x31\x0b\x36\x91\x08\x48\xe7\xdf\x1a\x34\x25\x1f\x6a\xeb\x77\xc6\x4a\x2d\xb3\xb3\xcd\x62\xd0\xcf\xcd\x0a\x04\x27\xaa\x1c\xaa\x11\x6a\xb1\x88\x4a\x15\x0d\x55\x83\x7f\xce\xed\x62\x9c\xfa\xf8\x53\x87\xb0\xaa\x2f\xf0\x24\x8a\x3e\x30\x0a\xb1\x71\x15\xa7\x98\x76\xe9\x14\x79\x42\x4c\x27\x7c\x38\xe8\xdc\xa9\xe4\x8c\x2a\x6a\x3c\x4e\x2a\xc3\x69\x09\xa9\x6d\x3c\x62\x70\xcf\xe9\xb4\x47\x23\xa8\xad\xd3\x10\x79\x08\xc6\x77\x54\x99\x2c\xde\xe7\x89\x21\x11\xea\x5e\x26\x9d\xf6\xaf\xb9\x8b\xf6\x10\x05\xaf\xde\x79\x82\xc6\x34\x4d\x9c\xf7\xb3\x1c\x49\x9c\xda\xcc\x6a\xd5\xa9\x86\x78\xf5\x29\xd8\x8c\x9b\x51\xe8\x5b\xf6\x4d\xdc\xd9\x13\x54\xb9\xd0\xda\xf5\x0c\x9d\xd5\xb2\x51\x72\x04\xd2\x34\x93\xa2\x84\xa7\x90\x39\x34\xa5\xff\x40\x18\xca\xab\xd4\x3b\xbf\xcc\xd5\x9d\xbb\xd4\x83\xc8\xe3\x62\x79\x27\x01\x17\xef\xa1\xe7\x2c\x9a\x3a\xc3\x7a\xdc\xfb\xe9\x88\xc8\x31\xfe\x8c\x8c\xe1\x37\xc8\xca\x57\xa9\x20\x1a\xb7\x98\x82\x7c\x1f\x97\x20\x27\xd1\xaf\xd6\x4c\x1f\x41\xab\xab\x88\x17\x62\x5f\x45\x17\x58\x4e\x14\x60\x3d\x17\x6b\x68\x0e\x5e\x6c\xe6\xa6\x6f\x0b\x2b\x2c\x0e\xbe\xc8\x19\x94\x20\x7d\x8f\xa6\x93\xdb\xa2\xe8\x39\x12\x2f\xf7\xa6\x14\xb6\x43\x55\xc9\xdb\x04\x4c\xdf\xde\x52\xa7\xda\x8d\x97\xba\x36\x7f\x34\x68\x07\x81\x4c\x0e\x25\xe9\xc7\x1d\xb7\x1d\x02\xe5\x4f\xa3\x90\xe5\xbc\xed\x7f\xf9\x59\xe6\x56\xff\x2f\x5a\xc4\x12\x7f\x97\xb0\x51\x7b\xd6\x69\xa2\x5a\xfc\x90\x97\xc1\xe4\xa0\x79\xbf\x2f\xdb\x5e\x14\xcc\x83\x0e\xcd\x3e\x49\x0a\xf5\x71\xba\x90\xad\x36\x82\x95\x43\xd4\xa7\xa0\x82\xa0\xed\xd8\x5e\x96\xf2\xa2\x66\xad\x24\xe4\x73\x76\xac\x02\x73\xf0\xe5\xa6\x5d\x31\xc9\x40\xa6\x2d\x3d\xef\xf3\x2f\xdd\xe3\x92\xe3\xda\x52\x9d\xeb\xef\x39\x0e\x6b\xec\xa0\x0d\xa2\x5f\xdf\x24\xc0\xd4\x33\x2d\xe2\xa2\x7e\xc0\xa2\xfb\xd9\xa0\xb4\x6e\xaa\xd8\x4f\x1b\x54\xcf\x4b\x73\x17\xca\x63\x86\x21\x17\x39\x46\x58\x96\x9b\x63\x24\x1e\x55\x70\x68\xd3\xd2\xe6\xfd\xdc\xa1\xdf\x61\x5b\xe0\xae\x6f\x73\x53\xea\x36\x81\x72\xda\x49\x9c\xda\x62\x37\xfe\x56\x45\x13\x1a\x5e\x09\x5f\xc2\x31\xe5\x66\x70\x37\xe3\x73\x84\xf9\x29\x6f\xdf\xa9\x3c\xfe\x0c\x52\x58\x9d\xf6\x27\xb5\x93\x4b\x35\x73\x92\x33\xcd\xb6\x11\xed\x70\xb8\xbf\x53\x44\xae\x7b\x8a\x48\x81\x73\x5b\xd9\xff\x1d\xee\x72\xd0\xcb\xb8\x30\xa4\x79\xc5\xf7\x18\x70\x73\x0c\xde\x49\x4e\x86\x24\x7d\x7d\x23\x1a\xe7\xb4\x3e\xd0\xec\x99\x74\xb0\x68\xda\x4e\x35\x18\xd2\x7c\x8a\x26\x75\x1f\x55\xf6\x4a\xf7\xdb\x08\xa4\xef\xd5\x91\xfc\xb4\xb3\xb4\x28\xab\xb5\xea\x96\x92\x30\x41\xba\x57\xa9\xac\x90\x35\x13\x60\x85\x35\x6e\x14\x35\x50\xe2\x4b\x34\xa3\x23\x44\xe3\xa2\x15\xab\x26\x4f\xf5\x42\x35\xab\x20\x16\x46\x81\x11\x23\xe0\xba\xbf\x55\x2f\xfd\x95\xfd\xd5\x42\x39\x80\x50\x4a\x13\x22\x62\x4c\xbb\x43\x21\xcb\x65\x1a\x8d\x5c\x8d\x97\x84\x26\x0b\xb1\xd3\x69\xb7\x03\xe5\x78\x0c\xf0\x38\xe7\xa4\xed\x51\x60\x13\x7b\x3d\x62\xbb\x43\x86\x12\x67\x85\xe3\xf9\xf5\x6a\xbc\x1e\x66\xf1\xef\x84\xe4\xce\x8b\x09\x1f\x52\x29\xe2\x9b\xe2\x37\xf1\xeb\x4f\xd2\xc8\xef\x67\xd7\x89\x95\xfd\x38\xf1\x29\x9b\x76\x89\x6a\x31\xaa\x87\x88\x1e\x71\x7c\x9a\x10\x18\x50\x1d\x40\xbd\x79\x7c\xf8\xfb\xe0\xcb\x55\xc8\xdd\x56\xa3\x8c\x94\xe2\xfc\x30\xb0\x33\x9c\x1f\x0b\x1f\x66\x67\x75\x5e\x5c\x10\x6c\xd2\x18\x77\x4f\x59\x9b\xe4\x35\x68\xc7\x8e\xed\x99\xb4\x33\xda\x0e\x10\xb4\xa3\x8e\xb0\xd6\x30\x78\x77\x6d\x15\x7a\xd3\xea\x21\x5d\x82\x71\x8a\xa9\xe7\x9b\xbd\xd8\xa1\xfe\x29\x18\xfa\x11\xa5\x0f\x3f\xaa\x61\xf9\x3d\xd0\x2c\xaa\xa8\x6d\xa9\x74\x7c\x68\x7e\x5e\x49\xf6\xa2\x4f\x90\x7d\xe6\xf2\xfb\x54\x5f\xee\x66\x83\x42\x5b\x34\xd8\x60\xdf\xa6\x3e\xd1\xb6\x75\xa2\x42\xb9\x12\x51\xad\xef\xc2\xb8\x10\xe3\xfc\xfe\x5f\x6f\x16\x55\xe8\x38\xf0\x63\x49\xc8\xca\xa0\xd5\x27\xc7\x14\x97\xb6\xb3\xb4\x9d\x0c\x3a\x56\x34\x3b\x60\xd0\xae\x90\x9d\xbf\x42\xc4\x08\x65\x15\x2a\x26\xf2\x96\x45\x61\x20\x6a\x90\xda\x80\x4f\x4b\x93\x6c\x55\x85\xbc\x05\x26\x4f\x14\x5d\xe7\xb9\x61\x61\xcb\x05\xd3\xc6\x70\x31\x38\x55\x3f\x72\x86\x5d\x8e\x83\x78\xb9\x79\x3d\xcc\xfe\x63\x7d\x5c\x83\x6b\x90\x93\xb1\xd7\xfe\xca\xcc\xc1\x66\xdf\x96\x30\x07\x3a\x41\x17\x6a\x2f\xdb\xdc\xee\x40\xdd\xed\x36\xf9\xd4\x7e\xee\x54\x40\xa0\xa5\x0a\xbf\x70\x37\xe2\x56\x35\x09\x8a\xde\xc5\x15\xc8\xbf\x10\x3d\xca\x4a\x9c\x0f\xc4\x2a\x28\x76\x8f\x41\xad\x75\x00\x63\x17\xad\xe8\x3b\x83\x2b\x11\xf6\x06\x39\x09\x49\xdf\xa0\xd7\x4f\x6c\x67\x32\x30\x07\xc8\xd8\x25\x42\xfe\x93\xee\x26\x91\xa8\x08\xfd\x80\x86\x6c\x54\xff\xf8\x8d\xdf\x6a\x04\xfc\xb3\xb0\x23\xc8\x49\x5d\xf9\xcd\x0d\x98\xbb\xee\x03\xe2\xc5\xfb\x04\x78\x16\x44\x80\x32\x9e\xd6\x7c\xda\x74\x06\x09\x10\x77\x88\x63\x37\x88\x0a\x71\x83\x81\x18\x9d\xc4\xae\x51\x4f\xe1\x66\x44\x1a\x79\x37\x29\xa4\x57\x62\x1e\x4c\x8e\xcd\x04\xba\x8a\xea\x5d\x07\xba\x0a\x2d\xf7\xdf\x71\x36\x59\x8e\xeb\x32\x99\x2a\xa0\x4f\x4c\x2a\x62\xca\xda\xe3\x09\x98\xe4\x4b\x84\x73\xc8\xed\x8a\x35\xc9\xe8\x74\xd7\xbb\x3c\xdd\xf5\xae\xcf\xe4\xfa\xb6\x28\xe2\x5e\x75\x99\xa8\x96\x88\x22\x15\x93\x84\x9c\x61\x81\x86\x72\xd0\x8f\x3b\xe4\xf1\xce\xf3\xd0\x2c\x13\xd9\xac\xc5\x36\xe9\x14\x8f\xd0\x20\xe6\x61\x24\xae\xb0\xfc\xf7\xa2\x40\x51\xfc\x36\xe5\xc0\xdb\xd6\xc3\x70\xc7\x0e\x0c\xf1\xca\xa7\x81\xfc\x53\x8e\xe8\x50\xc9\xbd\x49\x33\x1e\xf7\xdd\x1a\x96\x6f\xc5\x3d\x68\x18\x1b\x16\x56\x61\xed\xde\xe0\xe5\x27\x09\xc8\x7b\x97\x46\x19\x76\xaf\x93\xdc\xf5\xd3\x82\xf0\x55\x04\x58\x80\x51\xdc\xc5\xf2\x55\xac\x60\x75\x23\x78\xb9\x52\x84\xc4\x1b\x95\x22\x10\x56\xc9\xc3\xe8\x69\x6a\x96\x2f\x26\x03\x9b\xb6\xab\x77\x35\x3f\x75\x40\x30\xa2\x17\x50\xda\x94\x93\x5a\x65\x02\xa7\x40\xd9\x08\x59\xa6\xe8\x04\xc8\x49\x90\x0c\xcf\xad\x81\x2d\xf4\x13\xfb\x61\x7a\x7f\xe8\x27\x23\x6d\x5e\xa2\x2b\x6d\x0b\xa9\x70\x01\x9e\xb5\x0b\x01\x21\x2a\xe3\x68\x55\xf0\xb8\xac\x28\x96\xb1\x20\xfe\xae\x75\x26\x10\xf9\xca\x20\xce\x6d\xb1\x23\x78\x0a\xa9\x05\x7b\x8e\x78\x5f\x2f\x78\x88\xb8\x4f\xfe\xc1\xcd\x55\x6b\x81\x48\x2d\xb6\x1d\x2c\x28\xc7\x03\xd6\xc7\xbf\x66\x29\xc5\x7f\x3d\x52\x9b\x2e\x0c\xd4\x8b\x3d\xe3\xc7\xdc\x9c\x67\xfc\xa0\x24\x79\xd5\x16\x0e\x3d\xeb\x85\x00\xde\x72\xdb\x50\x8e\x6b\xa5\x30\xfa\xdd\x38\x41\x37\x4e\xb1\xca\x0c\x5c\x26\x4f\xe4\xf4\x62\xb3\x1c\xac\x8e\x58\xaa\xf7\xa2\xd1\x61\xe2\xea\x8e\x91\x59\x89\xd2\x9e\x78\x64\xbc\x4b\x9f\xb6\x7b\x92\x59\xd1\x07\x92\x8f\x0c\x83\x6e\xeb\xa9\x61\x20\x6b\xab\x9d\xdc\xcc\xda\xed\x41\xdf\x48\x19\xd6\xf7\x57\x67\x67\x7d\x7f\x95\x00\x72\x71\xcf\x16\x10\xd3\xc4\x13\xfb\x88\x5c\xd2\x87\x28\xa3\x8a\xae\x0d\x27\xd1\x8f\xbb\xc2\x3e\xca\x9c\x08\xc5\xe0\xc9\x8f\x3a\x70\xa2\xe2\xdf\x47\xb2\x90\x80\x67\xfa\xca\xc0\xc9\x4d\x3f\xf7\x5c\x00\xdd\xee\x7f\xf9\x80\x1f\xc5\x1c\xa7\xc9\x3d\xd0\x2c\x92\x30\xbf\x2a\x64\x00\x78\xba\xca\x0c\x30\x0e\x91\x99\x6f\xae\xba\x01\xe7\x46\x80\x0d\x7f\x9f\x68\x6c\xbf\x3f\xc2\xc3\x54\xb6\xbb\xbb\xa9\x4c\x21\x2a\x22\x08\x35\xd1\xc0\xf3\x5a\x23\x81\xeb\xed\x28\x4a\x21\x98\x82\x44\x2c\x85\x4f\x5c\x75\x86\x49\xfe\x3f\x0b\xfa\xb0\x04\x7e\x7b\xad\x9d\xc4\x6d\x93\x20\x1e\x80\xcb\x96\x14\x48\x71\x2c\x01\x30\xfc\x5e\xd8\x17\x69\xa9\x05\x0a\xfc\xd8\x4d\xfa\xe1\x9b\x94\xb8\xf6\xb2\x41\x5a\x4e\x86\x80\xf1\xa6\x5b\x41\x22\xf3\x49\xc1\xe3\xcd\x28\x90\xdf\x1c\x19\x4b\xfc\xbe\xfc\xe5\x66\x9e\x19\x50\x65\x62\xd5\x9f\x24\x86\xb7\x21\xd6\x84\x54\xd4\xc6\x96\xe2\xf3\xcd\x15\xbb\x64\x03\xac\x0b\x9b\x1f\x46\x5f\x8e\x3d\x10\x7a\x31\x31\x7d\x77\x57\xe8\x4e\x20\x8c\x93\xe3\xfa\x89\xb6\xb4\x34\x71\x98\xa3\x11\x45\x44\xf7\x31\x55\x47\x0c\x6c\xd9\x8b\x1d\xd3\x08\x7d\x88\x73\x58\x3b\x72\x42\xce\xe2\x37\x7e\xf3\xbf\x72\xd7\xc0\x26\x50\x8e\x01\xfd\x44\x78\xbc\xd6\xcf\xca\xae\x2d\xe2\xaf\x4a\xe4\x89\x74\x1c\xcd\x71\x39\x1e\xcb\x06\x67\x67\x9b\x25\x96\xa3\xbf\xaf\x23\xc4\xe3\x71\x84\xf6\xc7\xc2\x0b\xe6\x05\x19\xfb\x87\x99\x05\x6d\x9f\x1c\x0f\xc3\xb8\x69\x3f\x4b\xe2\x32\x6e\xc7\x26\x75\x5b\xf8\x55\x79\x43\x12\xff\x08\x33\x0a\xd1\xb5\xc9\x9e\x91\xbf\x82\x0d\x46\x3e\xf4\x31\x6c\x8d\x9c\x44\x44\xcd\x07\x8b\xa4\x3b\xbd\x86\xe6\xb3\x9f\x67\x49\x96\x2e\x55\x79\x6e\xd0\x2b\x90\x3c\x17\x39\xc2\x9b\xc4\xa4\x77\x9d\x82\xd2\xd2\x2c\xdb\xc2\x75\x69\x11\x79\x1d\x1d\x11\x67\xab\x1e\x26\x42\xe9\x53\xc4\x01\xf2\x01\xca\xb2\x2a\x29\xc3\xfa\x32\x23\x2e\xa1\x5d\xbe\xf0\x48\xb5\x66\x79\x8e\x15\x97\x76\x7d\x48\x8d\xe8\x5d\xae\xcd\x8b\xf5\xf2\x13\xd6\x97\x1f\x6d\x69\xa2\xde\xe5\x41\x53\x1e\x40\xb5\x6d\x9d\x65\x2b\x23\x22\x53\x16\x18\xad\xca\xe5\x3d\xcb\xc2\x54\xfd\x3c\xae\xd2\x2b\xd5\x12\x44\x9b\xe0\x3e\x51\x0d\xdd\x1f\x11\x0a\xce\x7a\x59\x95\x68\x80\xcc\xc9\xcf\x43\x56\xdf\xae\xe1\x2e\x9c\x38\x92\x61\x01\xef\xeb\x34\x4c\x28\x7e\x5f\xe4\x2e\xda\x49\xbc\x62\x39\x21\x4a\x8a\xd3\x9e\x40\xd2\xbe\x6e\xdb\x83\x32\x5e\xb1\xbb\xdc\x9f\x62\xf5\xed\x5e\x0f\x15\xf4\x5f\x59\x27\x76\xab\xbd\xad\x30\xad\xb9\x7d\x3d\xb8\xd8\xcd\x50\x25\xfa\x97\xff\x09\x6a\x6c\x8a\x56\xdb\xda\xd2\x79\xbe\x29\x99\xaa\xd7\xaf\xf3\xc1\xcb\x59\xe7\x56\x60\xa3\xee\x12\xd4\xa6\x93\xc7\x2b\xd6\x51\x76\x6b\xb5\xa7\xe1\xb9\x03\xdf\x47\x4b\x05\x45\xb8\xe3\x64\xfc\xee\x63\xd5\x78\xfd\x91\x50\xce\x3b\xe6\x4b\xb5\x6d\xd3\x8f\x4b\x93\x84\x48\x59\x24\xcf\xf1\xd1\xa0\x7f\x2e\x91\x45\x6f\x10\x58\x9f\xe0\x28\x20\x2e\x27\xc7\xad\x27\x7d\x7b\xac\x8a\x13\x32\x91\x88\xf6\x44\x0c\xd5\x77\x2a\x11\x43\x4d\xdf\xbf\x58\xb5\x06\x6e\x4c\x40\x6f\x64\xe4\xc6\x6b\x12\xae\xea\x69\xc9\x5f\x7a\xe6\x5d\xcf\x18\x79\x89\x6a\xe5\x5d\xd3\xef\x83\x20\x43\x1b\x15\x41\x83\xed\x1c\xb5\x18\x5c\x5b\xa7\xfa\xca\xea\x62\x99\xea\x4c\x8e\x7d\x33\xaf\x1b\x77\xec\x42\x36\x48\x01\x33\x15\x39\x15\x42\xd4\x07\x98\xa9\xce\x34\x82\x11\x1a\x71\x3c\x07\xe5\x67\x86\x3c\xd3\xe8\xee\x05\xe9\xc4\xd7\x49\xf3\x7f\x57\x8b\x88\x25\x63\x9b\xe7\x46\xea\xa9\x18\x07\xfa\x7f\xf0\x7e\xe5\xc4\x37\x4c\x7b\x71\x51\xec\x22\x64\xe8\x3f\xe7\xf9\xd7\xfb\x51\x90\xd8\xfd\xa6\xdb\xed\xaa\x64\x1b\x4a\x84\x3f\x43\x26\x84\xa0\x1d\xa4\x90\xf8\xf0\xc4\x7a\x9d\x8c\xfc\x52\x37\x2b\xca\x05\xd0\x61\x4c\x10\x37\xf7\x25\xd9\xbb\xa2\xc5\x3a\x92\xc4\xf8\xe5\x55\x66\x45\x37\x5e\x30\x8d\xd0\xd4\x95\x6e\xa3\x9c\x10\x01\x41\x61\x13\xaf\x9c\x31\x11\x34\xb6\xaf\x47\xa1\x2b\x75\xdd\xa7\x0b\xdd\x38\xf5\xd5\x67\x91\x80\xc6\xf7\xaa\x1e\x74\x80\xed\xae\xd9\xea\xd2\x3b\x66\xed\x71\x9a\xe8\x13\x45\x16\x58\x83\x8b\x2c\xe9\xf2\x80\x8a\xa9\xe8\x3e\xf9\x4c\xce\x33\x85\x3d\x70\xd5\x6b\x14\xd5\xff\x21\x22\x42\x85\x0f\xdc\x84\x36\x75\xc5\x34\x86\xbc\x4e\x88\x74\x90\x8f\x60\xa7\x5f\x70\xeb\x44\x63\x72\xf7\x08\xb5\x91\x4a\xa4\x9c\xd6\xe6\x6b\x8d\xd1\xa7\x5d\x7d\x85\xaa\xe0\x7e\x12\xef\x98\x69\xb7\xf3\x81\x6e\x25\x60\x2f\xe4\x56\xe5\x84\xa6\xee\x56\xe3\xc2\xf1\x4d\xce\x4f\x79\x9e\x8c\x46\xe0\xcc\x18\xd3\x7c\x72\x30\xee\xc4\x0d\x20\xa5\x3d\x1d\x01\x44\x68\x89\xae\xa5\x1c\xd7\x49\x9b\xae\xc6\x69\x27\x5b\x95\x8a\x96\x82\xff\xab\xcf\xe8\x4c\x5a\x68\xc8\x76\xe3\x7e\x3f\xb6\x8d\x51\xdc\x90\xbb\x03\xe5\x17\x7c\x34\x54\xbf\xe2\x54\x54\xfe\x3d\x73\xd8\xfe\xf9\xfd\x7a\x42\x14\x1b\x26\x4f\xb3\xa4\x33\x89\x2f\xc5\x74\x17\xe0\x3a\x9a\xd3\x06\x8d\xe0\x0b\x2c\x88\x76\x6c\xc4\x4b\xc7\xb6\x47\x3a\x02\x67\x99\x7f\x28\x34\x8b\x4c\xc7\xf6\x4b\xb9\x53\xdf\x06\x9d\x0b\xe3\x82\x35\xb2\x1a\xa2\xbb\x0b\x83\x2c\xf0\x2c\x77\x75\x0a\xd5\x52\x63\xd5\x89\x8b\x32\x4e\x12\x45\x66\x88\xaa\x45\x14\xc0\x30\x52\xf2\x52\x72\xfd\x2d\xcc\x65\xb3\xb3\xcd\xf9\xa9\x4f\xbb\x2d\x81\x20\xe4\x9e\x33\x1d\xc2\x34\xe0\xfa\x67\xf0\x76\xdf\x66\x95\xbf\xb7\xd0\x4c\x53\x24\x1d\x49\x95\x1f\x65\x6c\xf4\x0f\x1d\x0f\xbd\xc8\x74\xba\xb0\x67\xf3\xc8\x30\x34\x8c\xaf\xb8\x7d\x85\x08\x09\x57\xec\xb5\x50\xe6\xb5\x92\xf1\x16\xa1\xf6\xaf\xba\x9e\x94\x1f\xac\xac\x9e\x34\x4c\xee\xff\x88\xd8\x4f\x08\x63\xa3\xc6\x17\x7e\xcf\x2b\x49\xba\xe7\x87\x5c\xfe\x3d\x3c\x08\xe5\x65\x72\x99\x8f\x92\xa2\x06\x76\xe5\x77\x6b\x09\x0e\x17\x6d\xe2\x06\xe6\x7c\xe7\x0d\x03\x2c\x72\x5c\x4b\xa7\xec\xea\x69\x2e\x1a\xd0\x0e\x47\xc8\x65\x45\x07\x02\xe6\xe5\xa4\xaf\x6b\x60\xb4\xc0\xe6\x45\x37\x46\x26\xe1\xb1\x6e\x9e\x14\x89\x99\x72\x6d\xbf\xd8\x1b\xf0\xeb\x28\xae\x39\xbf\xf3\xfb\x4f\xaf\x87\xc8\x51\x0d\xb4\xe7\x26\xf6\x63\x66\xa7\x19\x4c\xf5\x54\x2b\x38\xf1\xa5\x5f\x6d\x51\xfc\xbd\x13\x65\x2d\xe0\x3f\x65\xcc\x52\x6d\x7f\x8d\xca\x5a\x9c\x24\x03\x37\x27\x88\xee\x28\xcc\xe9\x69\x38\x1b\x39\x21\xa7\x5c\xd8\x7c\x25\x6e\xdb\xc7\xab\x3f\xf5\x60\xba\x30\x01\xb4\xe1\xde\x0c\x02\xe7\x46\x8b\x7c\x0b\xa4\x34\x65\x69\x0e\x09\x94\xb4\x03\xa0\x14\x2c\xba\x9b\x11\x0d\x14\xdc\xa4\x21\xf4\xab\xdc\x26\x46\x74\xee\xb9\x67\xe6\xf7\xfb\xf9\xa1\xb0\xc6\x9e\x7f\xaa\x45\xc2\x96\xff\x10\x8d\xd0\xce\xda\xde\x82\xcd\x1b\x41\x5a\x18\x4e\x42\xf9\x8b\x19\x7f\x13\x9b\xd2\x29\xc0\x23\x59\xfe\x53\x01\xc4\x79\xe7\x3c\x3f\xe5\x73\x71\xb5\x1d\x79\x96\x9a\x04\x91\x08\x16\xfb\x19\x5e\xf9\x67\xc6\xa2\xad\x83\x2f\x37\xbb\x66\x90\x42\x5a\x09\x7e\x0a\x2c\xf0\x72\x3c\x0c\xf0\x85\x7e\x96\x09\x7f\x81\x4a\x52\xb9\x87\xa2\x5a\x55\x5b\x3b\x21\xea\x4f\x92\x01\xc8\x3e\x3d\x64\x56\x7c\xae\x9c\x90\xcf\x5d\x89\xed\x2a\x08\xc1\x08\x69\x77\xca\xbd\x39\x39\xae\x0b\x16\x17\x8d\x8a\x13\x30\x52\x57\xa1\xbd\x41\x9e\xbe\xd3\x6f\x37\x58\xa7\xec\x02\xeb\x5c\x8f\xf7\xac\x66\x0e\x36\xcb\xae\x29\xdd\x0c\x0b\x6c\xd5\x4d\x67\x8b\x10\xfd\x6d\xc0\x1e\x00\x42\xbd\xb3\x15\x72\x62\xbc\x95\x20\xe8\x27\xa9\xc5\x52\x56\xc6\x05\x42\x5a\x2c\xa2\x0f\xdd\x26\x95\xe3\xb1\x2c\xd3\x3f\x3b\xbb\x12\x37\x02\x9a\x4c\xc8\xe0\xe5\x64\x5c\x73\x67\x7e\xaa\x69\xd2\x34\x1b\xa0\xe0\x1a\xa2\xa1\xe3\x43\xc2\x47\x8e\x0b\x87\x83\x8c\xcd\x17\x2d\xbc\x1a\xbe\x1f\x54\x39\x4b\x34\xbb\x0b\xd6\xe6\x3b\xdc\x96\xc3\x23\xfe\x31\x95\x4a\x7f\x12\x51\x50\xf9\xdf\xbb\xe0\x05\xe6\xf3\xfb\xac\x68\xf2\x7d\x1a\x4f\x29\x73\x93\x16\x6d\x93\x9a\x8e\x69\x84\x3d\x0d\x72\x10\xe5\x19\xad\xe3\xce\xed\x66\x45\x5f\x68\xd0\x9c\x9f\x51\x14\x72\xe8\xd7\x5e\xa6\x01\x83\xe9\x99\xe9\x4f\x56\xf7\x0d\x25\x4d\x9d\x95\xd9\x19\xba\xb6\x3f\x85\x13\xf0\x54\x5f\x1e\xa2\x39\x49\x7a\xbc\x52\x0b\x57\xda\x57\xf7\xed\xf2\xf1\xb1\x5e\xcc\xf4\x74\x73\x31\x4e\x7a\x82\xbc\x42\xbc\x20\x03\x42\x3a\x2a\xd7\x20\x9a\x06\xaa\x6e\x99\x52\xc4\xe0\x11\xea\x09\x72\x59\x4e\xa2\xad\x73\xba\xb3\xb3\xcd\xf6\xa0\x9c\x18\x4d\xa1\x03\xd7\x3f\x9a\xff\x4a\x27\x50\x07\xe6\x35\x9d\xac\xef\x33\x2a\x84\x9d\xa2\xee\x25\x27\xbe\x31\x68\x5f\x37\xbd\xbe\x67\x5a\xc1\x0c\xc5\x1b\xcc\x66\xf7\x06\x8d\xd1\x74\x72\xc7\xfe\xd9\x08\xad\xa1\x77\x9c\x09\x95\xe3\x28\xfc\x65\x91\xe5\x4b\xdd\x41\x6f\x04\x64\x34\x32\xe2\x35\x9e\x07\x56\xb1\xab\x0d\x57\x0d\xa3\x01\x11\x21\x39\x5e\xdf\xba\x67\x1c\xce\x23\xeb\xf5\x6d\x22\x0d\xa5\x19\xef\xb1\xa9\x64\x7d\x82\x16\x93\x5d\x2d\x1e\x09\xec\xb2\xff\x4d\xb3\xc5\xc5\x08\xfc\x18\x62\xff\xed\xeb\x3e\x68\xfb\xfc\x93\x70\x8a\xa8\xff\xef\x59\x1f\x2d\x37\xcd\x4f\x49\xf4\x72\x8d\x15\x0f\x2e\xba\xf0\x05\x7b\xe9\x7d\xe2\xff\xf8\xec\xb3\xec\x6d\xf7\xac\x3f\x15\x9e\x58\xa2\xb3\xfd\xd5\x0f\xc3\xbf\x1d\x71\x1e\x51\x8e\x87\xac\x48\xb1\xac\x03\x98\xda\x60\xa3\x66\x1b\xd5\xcb\x8b\x5e\x5c\x76\x27\x02\xa8\x00\x0a\x46\x28\x08\x0c\xb9\xe6\x73\x9c\x90\x6e\x65\x6c\x3b\x93\x08\xab\xe1\x1e\x3e\x74\x1d\x2d\xe5\x8a\x72\xd1\xa0\xfc\x83\x73\xa6\x4a\x28\x45\xb4\xfe\x59\x6f\x57\xe3\xa5\x19\x2d\x41\x0d\xb9\x64\x4b\x92\xcf\xd2\x70\x64\xc9\x55\x4f\xa5\xb2\x4f\x6c\xf2\x77\xfe\xa3\x16\x6d\xf8\xbd\xeb\xe1\xde\x5e\x33\x3d\x5b\x3c\x32\xae\xeb\x8b\x31\x86\x33\xd8\xfb\x08\xe3\x45\x8e\x45\x85\x4a\xdc\x02\x20\x50\xcb\x8b\x82\x0d\xfb\xb6\x33\xeb\xf8\x87\xab\x23\x84\xbb\xe4\xad\xdf\x88\xa8\x76\x79\x16\x8b\x5a\x3b\x43\x75\x20\xa0\x62\xb0\xd0\xce\x7a\xbd\xb8\x2c\xad\x75\xc5\x73\x8c\x97\x4b\x3d\xe0\x41\x14\xf8\x2e\x46\xc5\x59\x8b\xbe\x81\xdf\x45\x2d\xfe\x61\x44\xca\x70\x0f\xc7\x2c\xd3\xcc\xc1\x66\x12\x07\x1e\x63\x3f\x17\x35\x17\x18\x78\xb7\xe2\x08\x5f\x9a\x69\x16\x83\x3c\xb7\xfd\x32\x76\xa4\xb7\x09\x44\xc4\x90\xd5\xfe\xc0\xdd\xb1\x1c\x53\xf7\xd6\x81\x4e\x7a\x02\x57\xc4\x6d\x4b\x8c\x22\x27\xa1\xca\x04\x90\xe7\x0e\x86\xa2\x5e\x26\x72\xf1\xab\x51\x90\x50\xbc\x4c\x01\xb6\x7c\x1d\x0a\x1d\x77\x29\x7a\x2c\xf3\x6c\xb0\x80\xc1\x9c\x57\xe5\x3b\x2e\x47\xe4\x27\x03\x72\x31\x4e\x57\x6c\x51\x56\x39\xaa\x30\xa3\x6a\x87\x07\xd7\xe2\x89\x97\x03\x3a\x4c\x2a\x14\xca\x5f\xe1\xef\x21\x29\x6d\xae\xd9\x16\xc2\xb8\x6f\x0e\x03\xa8\x19\xc4\x1e\x9b\x67\xa8\xfe\xd9\xee\x9a\x3c\x0e\xe3\xd1\x4a\x57\x12\x20\xfc\x37\x7c\xb0\x97\x66\xbd\x41\x6e\x26\x19\x7a\x19\x00\x43\x1b\x24\x82\x70\x9c\xdb\xf8\x0f\x22\xbd\x4b\xb3\xe4\x30\xc7\xe5\x20\xb7\x93\x04\xe0\x3e\x47\xe2\xd6\x68\xa3\x01\x65\x2f\x6d\x5e\x2c\xe2\x89\x56\x8d\xcb\x59\xb0\x5c\xb6\xfb\x53\xf7\x7e\x94\xf0\x24\x60\x07\x0c\xda\xb1\xb1\x49\xe0\x32\x7c\x91\x2f\x14\xfc\x6a\xf1\x3d\x60\x02\x0d\x94\x5b\x98\xe3\xbb\x4c\xac\x2c\xd5\x0b\xfc\x0d\xdf\x7b\x8e\xcb\xd8\x24\xc9\xda\x04\xa5\x20\xf7\x87\x01\x48\x22\xf1\x2b\x7c\xf0\xe4\xd8\x70\xdf\xa1\xa9\x66\xcf\xa4\x66\x49\x96\x8b\x87\x24\x1c\x0a\x93\xa6\x4f\x10\x3f\x6d\xb2\xd6\x2f\x48\x5f\x0d\x5d\x04\x74\xf8\x00\xb6\x10\x35\xd1\x31\x46\x8d\x83\x2f\x37\xf3\x01\x80\x79\x28\x7f\xdc\x64\x86\xf3\x9b\xa1\x78\xb8\x6a\x4d\x60\x3b\x41\x92\x08\xd1\x2b\x39\x26\x1f\x75\xf0\x4b\x5f\xd8\xc9\x5d\xe9\xb0\x42\xae\xba\x20\x16\xbe\xe3\xb3\x94\xc3\xfd\xa1\xac\x5f\xac\x80\x89\x75\x18\x6f\xfd\xa7\x10\x45\x17\xcb\x52\x67\x03\x6e\x67\x13\xcf\x50\x4e\x46\xe6\xd5\xad\x29\x1e\x73\xff\xe8\xdb\x82\x41\xa8\x0a\xdc\x4c\xaa\x8a\x1a\x6a\xb1\xef\x42\x19\x4b\xfe\x08\xde\x50\xba\xb4\x11\x01\xa7\xf7\xb6\x5c\xf4\xad\x02\x54\x0d\xcf\x3e\xf5\x67\xae\x0f\x89\x0c\x55\x46\xf9\xd0\x0b\x80\x2f\x46\x50\xf6\xf1\x28\x33\x41\xa8\x66\xa5\xd6\x38\xbe\xd5\x20\x24\x72\xd8\x3d\x5f\x39\xf6\x7b\xda\xd1\x7c\x2c\xa0\x4b\xae\xae\xa2\xe1\x25\xad\xce\x0c\x99\xef\x34\xb7\xed\x32\x59\xdb\xe1\x0a\x0e\xda\x77\x27\x66\xfb\x9f\xe1\x1e\x61\x5d\xb6\xb5\x08\x83\xfe\x16\xc5\xdf\x0f\xc8\x1f\xe7\x59\x92\x14\x54\x59\x10\xb9\x65\xb5\x7c\x21\x7e\x32\xfd\xbe\x35\x39\x48\x3e\x50\xce\xba\x1d\x8d\x92\x92\xfb\x59\xb3\xe3\xa4\x8c\x05\xa8\xe8\xa0\x5d\x02\xb1\xe1\x61\x20\xd5\xcb\x93\x93\x4f\x9c\x17\xef\x99\xb5\x05\x3b\x41\xf1\x2f\x1a\x23\x00\xaf\xec\x71\x11\xb3\x1a\xda\xbd\xda\x05\x35\x28\xf3\x7a\x1c\x61\xb0\xdc\x17\x6a\x08\xd6\xf7\x57\xc1\xda\x42\x9c\x6a\x88\xa7\x93\x01\x6c\x51\xc7\xf9\x8b\x9a\xa6\x88\x3b\xc0\x41\x28\xa4\x2e\x64\xd5\x57\x7c\x21\x3f\xb5\x6d\x5b\x14\xda\x6c\xf6\x5c\xbf\xc1\xe6\x9d\x1d\xdb\xbc\x87\xa6\x9a\x85\x35\x44\x31\x7a\x84\xe0\x3a\xdc\xe2\x2c\xba\x26\xb7\x4f\x56\xab\x5e\xc6\xe0\xb1\x9e\xd1\x6b\x3d\x42\x33\x80\x3b\x89\x1f\xef\xb2\x0b\x01\x45\xcb\x2a\x62\x02\x64\x10\x3e\x2a\xbe\x9f\xa8\xac\xee\x47\x44\x3f\x25\x16\x0e\xfa\x4a\xdf\xa7\x66\xe3\xf6\x96\x63\x61\x91\x42\x02\x66\x13\x45\x2e\x30\x22\x31\xa5\xbf\x46\x9c\xa3\xbc\xa0\xee\x49\x20\x2b\xbb\xc6\xe3\xdb\x42\x2d\xe0\xfe\xea\x0f\x9e\x44\xb0\x25\x27\xeb\x9f\xa2\xbe\x9e\x2d\x30\x96\x59\x5d\xa0\x54\xf9\xb0\xfc\x11\xe4\xbd\x47\x91\xe5\x7b\x58\xaa\x5a\x0b\xf4\xd5\x0d\x5b\x64\x89\xcc\xd0\xa9\x62\xa4\xfb\x06\xa4\x9f\x7f\x15\x05\x62\xf6\xbf\xc2\xbd\xab\xc8\xe4\xd6\x45\xf1\xca\xfe\x5f\x77\x44\xd4\x13\x61\x00\x0b\xe1\x84\xaa\xec\x84\xf6\xfd\x61\x8f\xfb\xcb\x56\x6c\xbe\x10\x77\x1a\x34\xb7\xf8\x90\xb1\xd7\x23\xf3\x6f\x2b\xd9\xb2\xed\x4c\x52\xf7\x48\x5a\xc4\xaa\x82\x5f\xfd\x00\xa9\xcb\xcc\xe8\x5f\x45\xc1\x51\xf6\x6c\x27\x2e\x05\x74\xf9\xc5\x57\x3c\x41\x74\x83\x98\xa3\xeb\xf8\x0d\xf2\xec\xab\x16\xaf\xc4\xd7\xa6\x43\x9d\xba\x6e\x7b\x74\x72\xb3\x9a\x36\x68\x15\x9d\x23\x4a\xa2\x51\xfd\x2e\x53\xd8\x67\xaa\x6f\x43\xc2\xf2\x21\x6e\x09\x8b\x05\x31\x0a\x6c\xc4\xed\x61\xa0\x9c\xde\x70\x6a\xf9\x08\x44\x4e\xbb\x3c\x40\x31\x9f\xee\x39\xea\x18\x7a\x75\x87\xaa\x18\xd6\x98\x9e\xf6\x2a\x3c\x6e\x21\x78\x8f\x5d\xd9\x7d\x64\x33\xeb\x9c\x46\x08\x15\x88\x8a\x2f\xbb\xa7\x8e\x75\x00\x3a\x03\x18\xc0\x47\x5b\x3c\xca\x00\x64\x8b\xd7\xc9\x39\x34\x15\x66\xd6\x7c\xa9\x77\xa2\x05\x47\x88\x2d\xb4\x49\xab\xfe\x37\x7e\xeb\x37\xdd\x23\xc6\xbd\x9c\x71\xf7\x28\xc7\xe4\x52\x96\x63\xc8\x9d\xce\x6b\x05\xee\x84\x5b\x64\x72\x3c\x56\xc9\x9f\x9f\x6a\xae\xc6\xc4\x95\x0a\xdf\x77\x82\x14\x9d\x4e\xd4\xe8\xc0\x67\x8b\x8b\x36\x07\xaa\x86\x45\x47\x11\x12\x7d\xc7\x45\x2c\x3a\x1a\xf6\x04\x91\x39\x15\xed\x6c\x75\x2f\x61\x8e\xcf\x71\xad\x43\x38\x31\x34\x34\x73\xcf\x4d\xfe\x65\x18\x9a\x85\x97\x08\xa6\x7c\xce\x19\x2b\xb8\x5b\x4c\x79\xcb\xb1\xb3\xb5\xf0\xb6\xdb\x5b\xd5\xa3\x95\xe3\xf5\x90\x2f\x2e\xf4\xdb\x06\x60\x5d\xdc\xe5\x77\xdd\x67\xe4\x98\xb0\xca\x90\x8e\x42\x52\xe3\x39\xde\x7d\x0e\x70\xdd\x77\x3b\x17\xe3\xa2\x2b\xad\x1a\x0f\x5d\xf4\x78\xd7\x5d\xad\x10\x9a\xdd\x63\xe2\xea\x77\x99\x7a\x12\xca\xca\x05\x40\x52\x28\xf0\x1e\x46\x44\x01\x9b\xed\x10\xda\x9b\x27\x60\x3b\xbd\x76\x8a\xbf\xae\xf3\xee\x0e\xb0\xd2\x7e\x82\xc5\x29\x7f\xe4\x02\x30\xf9\x07\x6f\x2f\xb2\x05\x27\xf7\xdd\x99\x1c\xed\xfe\xf9\x95\xbb\xc9\x32\x72\xef\xc2\x46\x2b\x54\x31\x70\x13\xf5\xe2\xa2\x63\x7b\xd6\xa4\x59\x4e\x92\x52\x37\x48\x52\xea\x46\x9d\xb6\x52\xc7\x26\x71\xbb\xca\xdf\x64\xd4\x1e\x7d\x86\xb3\xa3\xa1\x72\x98\x99\xba\xe3\xaf\xba\xe8\x66\xfd\xbe\x52\x8b\xa3\x64\xf5\x69\x22\x28\xd8\x89\x7c\x41\xf8\xb2\x01\xd3\x40\x09\x70\x0f\xf9\x85\x76\x65\x55\xcd\x12\x48\x6e\xf0\x6c\x2f\x80\x24\x4c\x4e\x60\xe1\xfd\x6a\x9e\x9d\xd5\xe3\x68\x0b\x41\xd0\xbe\xb9\xe6\xec\xec\xfc\x67\x5c\xa8\x82\x62\xc5\xf7\x98\xda\xe8\xbe\xd0\x66\x7a\x33\xea\x4b\xc6\xbf\x18\x92\x74\xf1\x87\x24\x1a\x78\x09\x36\xc6\xd3\xf4\x57\x11\x91\x8a\x54\x55\xef\x57\xb9\xe0\x68\xc6\xe5\x5b\xd8\x38\x0a\x34\x0e\x69\xdb\xad\xa8\x31\x3d\xbd\x29\xb7\xe6\x71\xdb\x95\x71\xc3\xbe\xfa\x2e\x56\x17\x7c\xce\x86\x6b\x85\x79\x49\xb0\x99\x83\xc1\x61\xce\xcd\xb9\xfc\xff\x10\x35\x80\xab\xa5\x01\x8f\x7d\x1f\xb1\xad\x12\x24\x54\x3b\x12\xb1\xe5\xc3\x1a\x8a\xeb\xa5\x81\xc9\x4d\x5a\x5a\x61\xd5\xda\x3c\x81\x19\xfc\x13\x51\x80\x91\x2d\x2f\xe7\xf0\x0b\x5a\x8c\x6d\x78\x1e\x36\x1e\xc7\x2c\x56\x4d\xaf\xaf\x80\x28\xcf\x83\x19\xa8\x44\xee\x4b\xf0\x82\x75\x71\x83\xf6\x99\x59\xc8\x4d\x11\xaf\x58\x17\xa6\x7a\x3f\x3c\x17\x88\x6f\x43\xa7\xfb\x5b\xb5\x2c\xcf\x08\x07\xe1\x92\x7d\x72\xe1\x27\x65\xce\x51\xad\x99\xc0\x63\x93\x01\xe0\xca\x7c\x3f\xa2\x75\xe2\x89\x84\xc2\x5b\xbd\xe8\x73\xe6\xc4\x2e\xc5\x45\x42\x2c\x34\xea\x57\xb9\x17\xfc\x89\x9a\x5e\xe5\x20\x4d\x6d\x67\x22\xe4\xc5\x3f\x19\x21\x9e\xa1\xcc\xea\xda\x88\xca\x42\x61\x4d\xde\xee\xda\xbc\xd8\xc9\x66\x9e\x5a\x23\x22\x68\xca\x3c\xd7\x34\x42\x35\x23\xb9\xd2\xc3\x51\x91\xd8\x47\x09\x14\xd3\x79\x8a\xd8\xb9\x37\xb1\x4a\x61\xa8\x37\xb1\x89\xb4\x78\x11\xf8\x7d\x7f\x55\xa6\x2f\xb1\x7e\xaf\x38\x17\x0a\x47\xb9\x6d\xbd\xf1\xbb\x5f\x92\xdf\xfc\x60\x18\x00\x25\x0f\xf1\x80\xb1\xc6\xef\xc9\x7e\x54\x08\x7b\x88\xe1\x3f\xc2\x4e\x13\x4d\x41\xe4\x1e\x48\x1c\xbe\x83\x47\x84\x4a\xd1\x7f\xec\x32\x0a\x60\x47\xff\x5f\x67\x8e\xcf\x38\x64\x35\xa2\x2a\xf8\x1a\x69\xdd\x8c\x71\x94\xce\x4f\x35\x8b\x76\x37\xcb\x92\x76\x37\x4e\x3a\xb9\x85\xa6\xef\xe6\x2d\x27\xdf\x8c\xc7\x0b\x43\xa0\x2a\x38\x35\xec\x5c\xce\x72\x69\x26\xa2\x4d\x99\xea\x2e\xb4\x5b\x53\x07\xec\x1d\xf4\xbb\x36\x41\x08\xb9\x29\xd5\x9f\x13\xc4\x5d\xb2\x30\x28\x4b\x85\x4b\xe9\x78\x1a\x41\xf0\xc7\xa5\xda\x1c\xb7\xd4\x20\x2f\x06\xd0\x74\x44\x10\xb9\xad\x45\x65\xd1\xab\x43\x2e\x05\x84\xd8\xa4\x13\x17\x3d\x99\xb0\x42\x10\xf4\xe1\x30\x44\x7d\x1f\x12\x92\x64\x31\x4e\x6c\xb1\x83\x60\x88\x1b\xb0\x32\x8a\x9f\xae\x5c\xe0\xe6\x15\xf7\x61\xe1\x43\xe5\xb7\x74\xad\x8e\xae\xd6\xa6\x4b\x0e\x8b\xf3\x89\x75\x1c\x92\x5c\x8e\x3b\x5b\x18\x96\x90\x2e\xe1\x21\x6f\x77\xbd\x37\x01\xc3\x0d\x9f\x65\x06\x93\xc5\x38\xef\x49\xf0\x4c\x5c\xee\xd5\x43\x52\xd2\x37\x2e\xad\x04\x1a\x27\x55\xdf\x0d\xf9\xf1\xbd\x91\x09\xc1\x30\xa9\x14\xa7\x1d\xfb\xba\x15\xad\x2f\xfc\xe9\x46\x44\x04\x7e\x1b\x3e\xcd\x2d\x4c\x67\xa7\xbb\x57\x84\xc1\xa0\x9a\x54\x42\xb4\xf0\xe5\x8f\xb7\x1a\xc4\x8a\xef\xbe\xc9\xb3\xe6\xce\x07\x3c\xf2\xa7\x48\x8f\x1a\xdd\xe4\x5d\x54\x90\xfe\x16\x73\x8d\x7f\xcb\x7d\xd0\x8f\x6f\x86\xce\xbc\x90\xa4\x7b\x75\xf2\x69\x65\xb8\xdc\x20\xc2\x82\x0d\xe2\x59\x29\xe2\x36\x24\x38\xa4\x90\x85\x65\xa9\x55\xad\xa7\xe9\xa1\xac\x80\x20\x11\xb4\x23\xca\x67\xd1\x20\x5d\x95\x47\x89\x94\x61\x6d\x37\x0d\x0d\x6c\x47\x61\x07\x1b\x18\x52\x3e\x58\x71\x28\x5b\x69\xab\x99\xba\x5a\xdb\x5a\xa1\x6d\x78\x63\x84\x14\xe2\xfc\x70\xe2\x15\x5f\x58\xfa\xda\x70\x94\xda\x27\x79\xcc\x3d\x5c\x9a\x65\x51\xbb\x0b\x20\x0f\xf2\xfd\x5f\x44\x81\x54\x4f\xe8\xe6\xfd\x20\xb2\xd7\x30\x7e\x93\x8c\xed\xa6\xcb\x5c\x10\x4d\x3e\xda\x72\x3b\x46\xb1\x6d\x0d\x4f\xf7\x7c\x66\x74\x72\x87\x0a\x68\x32\xab\x28\xec\x30\x94\x6c\xe4\xe5\x57\x51\x56\xc1\xbb\xbb\x1d\xf1\xb8\xe5\x90\xd1\x63\x0a\x75\x73\xad\xa0\xdd\xd5\xad\xc0\x70\x4e\x38\x05\x5b\x82\x04\xa8\x52\xe1\x99\x61\xe8\xfc\x43\x60\xd7\xdd\x7b\xfb\x99\x56\xc0\x87\x3c\x09\x1c\x2b\xee\x71\x12\x46\x5f\xdf\xe5\xa7\x48\xd7\x29\x5d\xce\x07\xfd\x92\xea\x39\x67\x88\x26\x92\xeb\x62\x5d\xd3\x8b\x93\x52\x76\x26\xee\xfd\x08\x1c\x98\x9c\x44\x81\x2e\x7c\xc9\xec\x6c\xcc\xce\x6e\x3e\xd6\x0a\xcd\xf3\xbb\x4c\x24\x47\x08\xa1\xbf\x1c\x12\xcb\xe4\xbb\xcc\x20\x5c\x67\x8b\xf7\x37\x17\xab\xcb\x00\x16\x14\xb0\xbc\x8f\x86\x44\x32\xf4\x51\x2d\xb4\xc7\x21\x70\x25\x59\x86\x81\x43\x4a\x27\xc7\x35\x85\xeb\xfd\x4e\x4b\xa4\x6d\x48\x19\x06\x56\xfa\x1e\x57\xe5\xef\xd5\x8a\x70\x5a\x5b\x7a\xbb\x24\xaa\xe8\x34\x9f\xfb\xee\x88\xf6\xfc\x13\x34\x14\xb5\x6c\x95\x1f\x08\xf8\x06\x79\xe5\x72\x32\x52\xa7\xed\x98\x1c\xb6\x5d\x87\x70\x70\x89\x4a\x5a\xde\xf0\xc4\x10\x77\xdc\x7d\x7a\x01\xf3\xea\xd2\xe5\x8f\xc6\x1e\x94\x1b\x39\x77\x02\xfe\xce\x62\x88\xcc\xa8\xfb\xfc\x3f\x22\x39\xba\x90\xad\x06\x10\x9b\x40\x86\xdc\xdd\x2a\x7c\x28\x18\xa3\x24\x2b\xac\x83\x66\x68\x09\xab\xe1\x85\x41\x26\x1c\xdf\xa7\x67\x74\xf0\xb0\x93\x5b\xcc\xa1\xc5\x03\x73\x5f\xfc\xed\xf9\x89\x00\xde\xbb\x4b\xf2\xce\x17\xb9\x1c\x79\x86\x3e\xd2\x8d\xd3\x3d\xd5\x47\x44\x64\x05\x7b\x58\xef\x8c\x30\xc8\xc0\x16\xa3\x6d\x2b\xec\x03\x30\x1a\xf7\xa9\xcb\x0f\x71\x69\x8f\xec\xf4\x38\xa5\x5d\xa8\x56\xe0\x81\xff\x82\x94\xab\xdb\xb9\x35\xbd\x58\x30\x35\x3a\x7e\x10\x3a\xb4\x97\xc7\xb0\x2c\xd5\xeb\x18\xe4\x0b\x8d\x80\x26\x3d\x1c\x05\xbc\xd8\x61\x3f\x6a\x53\x9a\x81\x23\x8f\x98\x9d\x95\x3e\xd6\x51\xd6\xfd\x82\xd8\xaa\xe0\xf6\x70\x97\x0a\xe2\xab\x41\x24\x26\xd6\x74\xb2\xc5\x45\x2a\xa5\x1e\xa5\x21\xa1\xa3\x7e\xb5\x2e\x0e\xf2\xc1\xb2\x59\x35\x18\xfb\xd7\x99\xed\xd0\x0a\xfa\x09\x83\x29\xc7\x63\x89\xe9\xe9\x66\x3f\x31\x45\x19\xb7\x1b\x01\x81\xbb\xcd\x25\xa1\x72\xbc\xbe\x35\x18\x3f\x34\xb5\xbf\x69\x5f\x6f\x5b\xdb\xc1\x4c\x42\xa8\x5a\x9d\x20\x58\xf3\x89\x11\x0e\xc5\x15\x47\xe1\x4b\xf8\x9d\x4b\x84\xdf\xb9\x34\x56\x53\x9b\x9f\x6a\x2e\x24\x83\xb4\x9c\x08\x48\xfd\xb3\x11\xd1\x0e\x9d\xa2\xd7\xf5\x57\x63\xe5\x74\xc7\xb8\x9b\xb7\xbb\x71\x69\xdb\x00\x66\xa9\xba\x76\x08\x49\xce\x53\x7c\xd6\x35\x69\x67\x0d\xd8\x05\xa9\x1b\xa3\x40\xa0\x45\x64\x9a\x08\x4c\x96\x62\x07\xc8\xae\x22\x6a\x24\x0e\x97\x88\x2e\x0d\x8d\x2a\xec\xf6\xa3\x63\x85\xa6\x2a\xd2\xec\x9a\x0e\x88\x2e\x94\x2c\x40\x62\x3f\xe7\xb7\xbc\x02\x7f\x75\xa3\xb0\xa1\x9b\x11\x6d\x52\x2a\xb4\x67\xfd\xee\x5a\x69\x85\x36\xcb\xc7\x3b\x81\x85\x55\x08\x10\x81\xb4\xde\x20\xf8\x5c\x51\x5a\xeb\x42\xb5\x11\x6c\xe5\xbc\x8e\xbb\x3e\x70\xaf\x05\xdb\xf2\x3a\x55\xbb\x16\xf3\xb8\x63\xd6\x1e\xa5\x3a\xeb\x3d\x26\x42\xc4\x43\x40\x75\xe5\x1a\x1c\xbd\x17\xaa\xaf\xae\x43\x85\xcd\xdc\x52\xf4\x0d\xbe\x43\x53\x23\xfa\x25\xc4\xd7\x33\xe7\x2d\x7c\x40\x37\xbc\xe1\x70\x2e\x88\x5a\x1f\xba\x6d\x2e\x3a\xeb\x63\x6b\xda\x19\xfe\xbc\x3d\xc8\xd7\xb8\x47\x1e\x85\xf8\xfa\x0c\x19\x83\x5e\x96\x96\xb9\xd5\x56\xaa\x50\xe0\x45\xa1\x49\xce\xc0\xe8\x7e\xbc\x6c\x62\x03\xdf\x25\x50\x58\x44\x12\x8a\x8b\x25\xae\xa2\xac\xbd\xec\x28\x5d\x7d\x05\xb0\x7a\x28\x08\xa6\xfe\x3d\xc6\x17\xb9\x04\x28\xff\x10\x3d\x4e\x4c\x05\xb1\xed\xec\x71\x79\x1c\x41\x70\x49\xa1\xdf\x37\x83\x20\x98\x80\x5d\x37\xe9\x8c\x37\xea\x2d\x82\x44\x46\x00\x78\x13\xed\x43\xf9\x2a\x3c\x63\xf9\x17\xf7\x60\x94\x85\x3b\xdc\x6c\x36\x28\xfb\x83\x72\x57\xf0\xcd\xb7\x68\x9a\xe1\xa8\x83\xdc\x23\xf8\x7d\x13\x8e\x01\xc6\xf8\x17\x68\x3c\xc8\x09\x96\xb2\x27\x58\xf5\x04\x4d\x3f\x65\x3c\x50\x3b\x9b\x0c\x52\x9c\xc7\xc5\x7d\x8a\x00\xce\x30\xbc\x40\x51\x1c\x43\xff\x66\x57\x6b\x2b\xd0\x43\x4b\x04\x9d\xb8\x28\xf3\xb8\x8d\x28\x0a\x71\xed\xdb\xdc\x79\x79\x3b\x7a\x66\xab\x09\x9c\x69\xfe\xb7\xff\xf9\xc4\x68\xa7\xe6\xc0\x3f\x7d\xc9\x77\x6a\x1a\xa4\x59\xa7\xe1\x61\xba\x96\xda\xd7\x51\xbf\x10\xb8\x71\xc4\xd0\xe3\x31\x95\xb8\xe9\xe6\x42\x56\x76\x27\xaa\x05\xa1\x2c\x87\x6e\xeb\x7a\xca\xb1\x99\x83\x32\x30\xf5\x4b\x66\x47\x1a\x14\x45\x6c\xd2\xc9\xd0\x30\xb8\xc4\x48\x44\x19\xb0\xf5\x64\xee\x01\x88\x71\x3a\xe0\x27\x52\x93\xac\x15\xe5\x8e\x06\xc9\xc2\x56\x4b\x07\x58\x20\x61\xd2\xd4\xb7\xd5\xf0\xa4\x18\x8d\x16\x01\x2e\x2e\x05\xe6\x33\xd3\x37\x6d\x37\xb6\x3c\x49\xd4\xf1\x10\xaa\x96\x63\x7c\x23\x92\xe0\xbb\x11\x63\xa1\xef\x0e\xc3\x60\x7b\xd9\xb5\xbd\xc2\x26\x2b\xb6\x78\x2c\x0c\x3c\x88\x2a\xb7\x36\xc3\x99\xc9\x1d\x3b\x46\x9a\xd4\x30\x74\x12\x4d\x23\xe3\xf1\x90\xaf\x79\x55\xcf\x3e\x46\x22\x51\x77\x68\x8a\x44\xc8\xde\x91\x9f\x3d\xa4\x5c\x6d\x07\x34\xe6\x11\xc5\x3d\x1c\x12\x4a\xe0\x70\xdd\x3c\x45\x7b\x50\x94\x59\xaf\xd8\xe1\x6e\x17\x49\xe6\x2d\x59\xbb\x5e\xa9\x21\x88\x8d\x41\x31\x12\xc6\x0b\x6e\x08\x85\xdc\x33\x7e\x45\x15\x26\xed\x08\x56\x46\xa1\xdf\x4c\x37\x5d\x22\x69\x43\x5b\xf8\x3c\x4b\x97\x7d\x50\x37\xd0\x5d\x7d\xdb\x6a\x2c\x72\x4c\xc2\xdd\xe2\x7e\x56\x79\x5c\x88\xb2\x22\xee\xd8\x82\x66\x5d\x6f\x51\xc8\x78\x8b\x7c\xdf\x62\x96\x2f\xc4\x1d\xe1\x04\xc1\xce\xbf\xeb\xcc\xb3\x1c\x53\x65\x64\x31\xce\x7b\xc9\x9a\x5b\x73\xca\xc1\xe9\x5e\x19\x5e\xf3\xd7\x50\x14\xd6\xa0\x34\x54\x8b\x05\xb0\x20\x27\x11\xc7\x0f\x45\xb9\x26\xf8\xc2\x57\xc5\x50\x6c\x6b\x91\x6c\xdc\xb6\x31\x61\xe6\x7d\x73\x20\x2c\x94\x12\x89\x67\xd4\xf0\xa3\xea\xe3\x94\x55\xfb\xe6\x9a\xb9\x11\x28\x34\x3a\x1d\x77\x88\xe5\xe3\x4e\x20\x4d\x48\xe2\xbe\x78\x5e\x4f\x5e\x12\xe6\xd1\x6e\x47\x44\x79\x38\xae\xfe\x77\xf0\xe5\x66\x11\x2e\x4b\x75\x57\xaa\xa5\xaa\xb2\x2b\xa1\x06\xe3\xb8\x04\x8a\xac\xdf\xf5\x33\x60\xda\x46\xaf\x2e\x11\x99\xf4\x79\xa2\x0c\xfc\x1a\x93\xc0\x98\xf6\xb2\x59\xb2\xbb\x9c\x35\xc6\x95\xfd\x09\xec\xb4\x9c\xb8\x60\xd4\xb7\xb9\x49\xda\xc5\x5d\x8c\x9f\x06\x9d\x9d\xf5\x13\x57\xd5\x0f\xc1\x65\x1c\x1f\xc3\x8e\xee\x9b\x73\xf3\xd5\xb9\x29\x4a\x37\x5d\x09\xbb\x86\x25\xe7\x22\x81\xaf\x3d\xd9\x72\x0e\x08\xf0\xd9\x8b\x0c\xdb\xc0\xae\x95\xc5\x3c\x24\xdd\xbd\x4b\xc3\x7f\xe2\xef\xa7\x13\xdb\xb2\xbb\x96\x14\x65\x9c\x2c\xd8\xa2\xcc\xb3\xc4\x95\xeb\xd0\x07\x38\x39\x24\x69\xb0\xbb\x23\xa2\xb1\xc1\x23\x2f\x65\xc9\xe2\xae\xd0\xc2\x97\xc2\x01\xfe\xee\x2e\x07\x97\x77\xd1\xcd\x80\x39\xbe\xc6\xe3\x61\x82\x15\xc1\xd6\xfd\x6b\xd9\x9f\x28\xd7\x9f\xa7\x67\x6f\xd3\xa5\x24\x2e\xba\xbb\x42\x30\x7c\xc6\x6d\x14\x94\xd4\x6f\x38\x63\xaf\x3d\x22\xee\x6f\xb3\x18\xcc\x11\x02\x0e\x5e\x47\xdb\x16\x06\x76\x5b\xeb\x19\x2a\x76\x16\x71\xea\x28\x02\x09\x41\x20\x6a\x44\x72\x3c\xf6\xa6\x66\x67\x0f\x8c\x4e\x3b\xc1\x5c\x42\x28\x5e\x8e\xc7\x3e\xf4\x7c\x73\xd5\x24\x49\xdf\xf4\x6d\x3e\xe1\x16\x91\xd4\x77\xa8\x2b\x78\x93\x6a\x3d\x17\x08\x77\xed\x94\x72\x5c\x8e\xa0\xca\x4d\xa4\xe2\xc4\x80\xd5\x35\x0b\x1f\xcc\xe2\x00\x2a\x2a\x14\x68\xb6\x8f\x0e\xb7\x48\x08\x1e\x9a\x6a\x7e\x7e\x67\x83\x38\xbb\x98\x4e\x27\x0a\x19\x1e\x1a\x8a\xa8\x01\x3c\x70\xaf\x40\x2a\xba\xae\xa3\x0e\xb3\xf8\x37\x23\x55\xae\xae\x59\x05\x38\x5e\x15\xec\x1a\x24\x6d\x17\x70\x42\x6e\x82\x48\x68\x9d\x3c\xe9\x4d\xf5\x22\x75\x2e\x9d\xc8\x84\xd7\xda\x59\xaf\xc1\x78\xd9\x6b\x8c\xdc\xbc\x36\x86\x42\x3f\xf8\x72\xd3\x24\x58\xe9\x70\x2a\x1b\x68\x2c\xa0\x8e\x7b\xdb\xb9\x35\x9d\x54\xa5\x21\x67\x9b\xb4\xb3\x06\x29\xfc\x9e\x66\xde\xfe\xd3\xbe\x36\x64\xdb\xdd\x0c\xa5\x0b\x95\x07\x75\x9f\xc1\x02\xbc\x15\x51\xba\x7d\x84\xa7\x32\xb8\x74\x71\x89\x40\xcb\x49\x56\xa0\x62\x26\xe9\x03\xe9\xa7\x5d\x75\xf5\x51\xf4\xb5\x7e\x3a\xd2\x13\x24\x8b\x7c\x8a\x5a\x82\x77\x86\x34\x2a\xfe\xd3\xe1\x48\xe3\xb1\x4e\x39\xfe\x2b\x83\xb8\x48\x5c\x5a\xe3\x95\x6a\x84\x0f\x18\xab\x13\x2b\x15\xab\x6e\x3c\x61\x70\x03\x1c\xed\x3c\x2b\xd0\x37\x80\x9b\xde\xa0\x56\xc4\x46\x1d\x27\xd4\xb2\xb5\x7d\x29\x12\x89\x63\x8f\xc2\xa7\xcf\x93\xa8\xcb\x6b\x83\x3c\x2e\xfa\xf9\xa0\x63\xd3\xb6\x75\x0c\xae\xc8\xd8\xde\x74\x37\xac\x21\xa0\xdb\xe3\xd8\xb5\x57\x23\x1a\x2e\x7c\x17\x61\xbc\x9c\xd4\x0d\x2f\xae\x66\xb9\xab\x57\x61\x61\xe9\xac\x13\x11\x7b\xfd\xe9\x18\xcc\x65\x76\xb6\x59\xf4\x63\x25\x88\x03\x39\x2a\x2a\x37\x72\x4c\xe6\x6c\xc1\xb4\x97\x93\x0c\x4d\x6a\xd4\xf6\x21\x3a\x28\xc7\xee\x26\x60\xd6\x41\x08\x2b\xc7\x63\x4f\xb9\x4a\xea\x33\x53\xf8\xf1\x02\x64\xb5\xe7\x69\xda\xee\xfc\x98\x4f\x9e\x9d\x6d\xa6\xd6\x76\x58\xe9\xe8\x06\x29\x1d\xdd\xa8\x35\x6f\x5d\x93\xaf\x78\x85\xbe\xba\xf6\x62\x50\xcd\x7b\xb9\x0b\x12\x75\x1a\x69\x3a\x10\x06\xfc\x7e\xf7\x4b\x12\xd9\x3d\xda\xe2\x96\xa8\x7b\xb2\xea\xe1\xb6\xf4\xd0\xa7\xa7\x9b\xf3\x53\xf3\x7b\x42\x58\xf9\xe7\x78\x7d\xca\x2e\xe4\x0c\x0a\x42\xba\x7f\xc1\xf8\x4c\x94\xcd\xb5\xc0\x1d\x94\xba\x8f\x23\xcd\x46\xde\x86\xa1\x19\xe5\x54\x25\x2f\x35\xbe\x2c\x66\x0e\x36\x17\x06\xf9\x92\x2d\x0a\x52\xe4\x94\x09\x3b\x39\x19\x2b\x73\x1d\x9a\x6a\x5a\x53\x94\x82\x62\x40\x86\x70\x0b\x61\xf8\x88\xd4\x1b\xaa\x36\xc7\x86\x7b\xe4\xf3\xcd\xe7\x7f\x8d\x70\x45\xd2\x77\x91\xfc\x3f\x72\x4d\x04\x5c\xfe\xdf\x39\x7b\x85\xf0\xee\x2f\xf0\xa8\x95\x11\xb6\xca\x26\x51\xb5\x3b\x16\x39\x0b\xe7\x7b\x03\x5f\xf8\x3d\x79\x90\x0f\x9c\x01\xd7\x9e\x0f\xae\x51\x86\x56\xd9\xe6\xdf\x8a\xb6\xff\xba\x1f\xde\x6c\x3c\xf7\x5c\xa8\xb4\x54\xef\x59\xa4\x44\xa2\x10\x40\xfd\x08\xcf\x11\xc1\xcf\xb5\x28\x20\x8d\x6e\x31\xef\xe8\x2f\x61\x4c\xb4\xb3\x40\xa3\x2d\xdf\xc7\x6c\x2e\x8a\xe9\x28\xf1\xe1\x9d\xfc\x7d\x14\x4a\xb7\xc7\x9d\xfd\x83\xf9\x39\x3d\x6c\xbc\x34\xe3\xc3\xff\xc6\x2b\x3a\xd7\x7b\x12\x50\x18\x8d\x4e\x03\xc5\xd5\x5f\xa1\x9b\x0b\x34\xd0\x49\xb1\x85\x58\xb0\x47\x98\x85\xe0\x7f\x46\x8a\x8f\x64\xeb\x94\x5b\xbd\xb8\x93\x23\x54\x96\xba\x38\x8e\x78\x9b\x69\x16\x7d\x6b\xdb\x5d\x84\xa4\x1e\xf2\x1c\x7a\x9e\xd1\x23\xde\x94\x7d\xf5\x85\x06\x6b\x7a\x10\xa9\xc8\xd9\x3a\x4e\x4d\x0d\x34\x82\xba\xe8\x3b\x78\x90\x72\x32\x66\x23\x9e\x6f\xb6\xbb\x59\x16\xb8\x31\xa4\xc4\x47\x7e\xfc\xaf\x86\x5b\xa7\x28\xaa\x95\x40\x44\xaf\x5b\x74\x5d\x0e\x53\xfe\x7e\xd8\x27\xb2\x69\x96\x56\x56\x73\x0b\x50\x0c\xd5\x63\xdd\x90\x75\x75\xcf\x38\x2d\xe3\x5e\xdc\x09\x5c\x19\x75\xbc\x69\x8f\xfa\x72\xf0\xeb\x16\xf4\xaf\x3a\x1c\xe3\x9e\xb0\x8e\xaa\x6c\x35\x5d\xf3\x53\x07\x9a\xbf\xfa\xa5\x7f\xba\xff\x4b\x5f\x98\x73\x6e\x0c\xa9\xef\x83\x61\x40\x73\x9c\x77\xcb\x48\x8b\x69\x01\x7d\x60\x3a\x1d\x67\x9d\x71\x01\x1b\x54\xb4\x7f\x37\x0a\x3d\xc4\x9f\xbb\x4f\x4b\xe0\x39\x36\x43\xbd\x6f\xae\x59\xc4\xbd\x7e\x62\x79\xe6\xed\x2c\x11\x1e\x23\xae\xc6\x57\x9d\x1f\x06\x0e\x8d\xb2\x6b\xf3\x5e\xe6\xac\x0c\xae\x0c\xc5\x59\x39\xae\x67\x5d\x4f\xed\xaa\x7f\xf4\x3a\x22\x49\xe3\x92\x41\x7a\xb2\x34\x9d\x78\xd0\xfb\x64\xe2\xd3\x3a\xe1\xf3\x1e\x44\x10\xd0\xf4\x41\x4e\xf0\xee\xa8\x3a\xfb\xec\xac\x54\x7a\xc6\xc9\x50\xe6\xa7\xaa\xdd\xe0\x28\xb7\x01\x93\x85\x19\x3c\xc1\x8a\x42\xb7\x23\xdf\xe6\x3b\x8e\x31\x4f\xec\xf8\x7f\xef\xaf\x7b\x29\x4e\x92\x58\x82\x72\x54\x91\x3f\x66\x8a\xc9\x8f\xa3\xa7\x69\x9e\x39\x31\xe0\xdf\xd8\x11\xd8\x66\x4f\xe3\xe7\x14\xde\x1a\x78\x51\x1e\x69\x05\xca\xa8\xab\x8c\x5b\xde\xb9\x1e\xd2\xe5\x8e\xed\x0f\xdc\x00\x4c\x58\x07\x50\x5b\x53\x21\xa5\xa7\x47\x32\x6b\x93\x97\x36\x07\x85\x2e\xa0\xed\x77\x87\xe4\x9f\x1f\x46\x21\xb8\xfe\xc3\x21\x71\x1b\xbc\x39\x12\x2c\xf7\xb3\xf4\x11\xf7\x8f\x5a\x9f\xa4\xca\xdf\x65\xb7\xf0\x3c\xb4\x72\xdf\x9c\x4f\x2f\x49\xf5\xe1\xaa\x33\x97\xac\x14\xa0\xd2\x08\x61\x35\x5d\x1b\x92\xa6\xe5\x47\x60\x7f\x97\xaf\xa2\xca\xcf\xdf\x8f\xbd\xd4\xff\xcc\x61\x35\xe2\xa2\xd0\x32\xaf\x17\x1d\x0b\x02\x64\x5c\x23\xb7\x05\x38\x77\xdc\x3d\x88\xa3\x87\x1b\x57\xaf\x5f\xd7\xa5\xec\xe7\xb6\x88\x3b\x36\x2d\x8b\x51\xc9\x9d\x88\x40\x51\xd2\x8d\x11\x05\xf6\xba\xbe\x47\x3f\xcf\x06\x9d\x89\x00\x69\xb8\xe3\x1e\x18\x42\xdf\xe3\x78\xaa\x0a\xed\x0a\x7b\xd0\x76\xe2\x2a\x05\xe1\xf1\xec\x33\x3c\x9e\x7d\x86\x10\x32\x26\x2d\x56\xab\x68\x31\x24\x8c\xef\x39\x23\xa1\xbc\x71\xe3\x43\x03\xaf\x36\xdb\x5d\xdb\x83\x5a\x5a\x00\x5d\x13\x79\xc8\xe5\xb1\x1b\x79\xbe\x69\xd2\xb5\x55\xb3\xe6\x94\x8b\xd4\x3d\x55\x1e\x49\x15\xf6\xaa\x5f\xfc\x24\x39\xe6\xca\x14\x41\x82\xa8\x41\x34\xd1\xa7\xa8\xd2\x71\x6a\xa8\xb2\x66\x1d\xdb\x03\x37\x77\x18\x6b\xf2\x2e\x37\x8c\x6f\x8d\xdd\x54\xf5\xbe\xfc\x36\x61\x99\x9c\x77\xf0\xb6\xe4\x84\xf5\xaf\xca\x17\x26\x43\xa9\x52\x5a\x19\x88\x46\x1a\x22\xf4\x85\x98\x54\x12\xa7\x80\x9b\x20\x3a\x82\x2c\xfd\x1c\x91\xfb\x09\x48\x5f\x72\x4f\xf7\x9e\x01\x7e\x6d\x60\x90\x45\x08\xd0\x86\xc4\x19\xf0\x6d\x82\x18\x4d\xae\x87\x2e\xfe\x75\xc4\x59\xaa\x0d\xe7\xac\x87\xc2\xbc\xab\xd8\x4a\x79\x8a\x5c\xac\xc2\xb0\x72\x15\x23\x41\x54\xe1\x05\xbd\xa8\xd4\x83\x7b\xc3\x83\xbc\x83\x10\x03\xd5\x90\x8f\x18\x7a\x71\x04\xf1\x15\x36\x20\x26\xfd\x05\x79\xe2\x42\x2a\x64\xaf\xc7\x51\xc6\xc5\xfa\x15\x0d\x45\x84\xb9\xff\xab\x53\x00\x47\x54\xf0\x06\x36\x36\x7a\x57\x47\x11\x9e\x89\xc8\x91\x83\xa7\xe1\xdd\x5c\x47\x54\x84\xa8\xe6\x17\x2e\x62\xc6\x26\xf9\x7a\x4d\x4e\xd0\x2c\xac\x59\xc8\xb3\x0c\xf4\xa0\x1a\x7b\x51\x31\xe7\x8c\x1f\x91\x58\x8d\xd3\x54\xab\x1c\xd8\xa6\x1f\xd1\xb0\xa8\xb0\xde\xab\x77\x24\x74\x4f\x26\x6c\x84\xb0\x47\x17\x29\x20\xb8\x18\xf8\x93\xb2\x85\x4c\x2a\xe7\x00\x5c\x48\xdd\xc9\x97\x42\xfd\x10\xd4\x09\x44\x95\x3a\x2e\xfb\x34\xe5\xf6\xfd\xac\x88\x4b\x95\xd6\xc1\x33\xfe\x18\x57\x25\x27\xc4\x8d\x5d\x0c\x8a\xbe\x05\xd9\x78\xf5\x48\x91\xb1\xa1\xa9\x2e\xc7\xb5\x33\x42\x1d\x5b\x9a\xd8\x13\x04\x23\x14\xbf\x46\x90\x9d\x6b\xbe\x84\xd0\xce\x4d\x7f\x82\xc8\xfa\x51\xdb\x46\x23\x13\x6e\x52\xc3\xd6\xba\x6e\xe8\xa2\xc1\xdc\x9e\x36\x3e\xc3\x67\x2f\x10\x63\xc2\xe2\xc0\x26\x13\x24\xc8\x40\x7d\xa4\xe3\x24\x95\x77\x81\x38\xe1\x8b\x6c\x90\xa0\xcf\xea\x89\x02\x3d\xee\x76\xa2\xe5\x16\x8e\x2e\x75\xca\xc1\x4e\xd0\xf0\xf2\xfb\x23\x8a\x0e\x7e\x3a\xdf\x13\xc3\xcf\x07\x62\x78\x42\x73\x0f\x92\x8e\x88\xf1\x79\xd8\x92\x27\x06\xba\x4c\xbd\xb5\x55\x93\x3b\xe0\xcc\xec\xac\x94\x6f\x4e\x06\xa0\xc3\xff\x7e\x72\x8c\xa5\xe3\x95\xf9\xa9\x66\x6f\xd0\xee\x4e\x04\x00\x02\x82\x02\x94\xde\x6f\x38\xfb\x0d\xb4\xf7\x9b\xb5\x2a\x89\xae\x36\x1b\x2f\x0c\x84\x24\x46\x6d\x18\xd9\x33\xea\x88\x96\x36\xcf\x63\x47\x66\x31\x37\x27\xf5\xfb\xa3\x88\x5c\xe5\x24\x60\x79\x63\xe3\xe4\x4f\x62\x7d\x3c\x3a\xb1\xe0\x76\x8f\x8e\x32\x84\x6f\x4e\x4c\xba\x34\x30\x4b\x76\x8f\xfb\x63\x81\x88\xbb\x87\xee\xdb\x51\x01\x27\x75\x9b\x18\xa1\x6e\x91\x71\xdc\x05\xb6\x08\xb9\x5d\x98\x3a\x19\xa7\x8f\x78\xb4\xbe\x32\x7b\xda\x2e\xa9\x11\x31\x28\x06\xd2\x1d\x11\xde\x11\xd2\x27\x1c\x55\x72\xeb\xf5\x8d\x13\x61\xdf\xa7\x4b\x03\x05\x5c\x39\x8e\x42\x9d\x64\xd5\xda\x65\x9b\x76\x76\x53\x58\x02\x9d\x68\x34\x7a\x6f\x53\xe4\x23\x4d\x28\x19\xc0\xc4\xc3\xd5\x69\x4c\x82\x6b\x9c\x72\x66\x4d\x5a\xec\xee\x02\x91\xd0\xdd\x27\xc3\xd3\x8e\xcb\xb5\xbd\xe1\xa5\x5e\x1b\x8e\x8a\x44\x11\x27\xe8\x90\x04\x14\x30\xab\xe5\x39\x8a\x66\x67\x3d\x99\x77\xc0\xd5\x3c\x60\xe4\xf3\x03\x78\x35\xac\xd0\x1f\xc0\x74\x6a\x5a\x51\x53\x47\x58\xb1\xb9\xcc\x0d\xe3\xbb\xb8\x61\xff\x80\x76\xcf\xe3\x2d\x9a\xf8\xea\x0c\xda\xaa\x90\xa8\xd0\x3c\x2e\x69\x89\xb0\x29\x1c\xe1\x35\x7a\x47\xcb\x59\x99\x2d\x0c\x96\x63\x18\x39\x05\x58\x05\xb1\xca\x93\x81\x83\xdf\x1a\x87\x02\x9f\x24\xb0\xcc\xef\xcb\x8f\xe0\xcd\xc8\x7d\x6a\x23\x97\xd8\xed\xce\x8d\xf9\x95\x99\x83\xcd\x15\x93\xba\xe5\x8f\xf6\x8c\xa6\x2f\xf8\x42\x94\x41\x45\xf7\x02\x45\xb1\x6d\xad\xd0\x24\x6b\x67\x0b\x83\x3c\x25\xd9\x80\xcd\x88\x98\x86\x36\x6b\x14\x55\x9a\x49\xbc\x62\x27\x03\xf6\x1d\x2c\x82\x1e\x10\x30\x3d\xe3\x27\x21\x02\x24\xf1\xe4\x90\x7f\x31\xcf\x52\x83\x5a\x9a\x22\x96\xa9\x5b\xfb\xa1\x27\x39\xcb\x16\x84\x29\x17\x39\x14\x4c\x32\xe4\x06\x94\x47\xb5\xe1\x89\x6e\xae\xd2\x7c\x51\x6a\x96\x96\x5c\x62\x57\x45\x09\x08\x78\xbf\x47\x65\xd4\xef\xd5\x78\x81\x66\x99\x67\xfd\x89\x80\xc9\x43\x15\xd8\xeb\xdb\x7f\xf1\x15\xb9\xc1\x7b\x75\x0c\x43\xfd\x24\x13\x55\x0c\x00\xce\x40\xa6\x23\xc7\x54\xb6\x28\x57\x26\x43\x53\xf3\xdb\x5c\x34\xb9\x25\x2d\x6a\x3f\x50\x12\x98\x64\xde\x66\xe0\x4f\xba\x64\x13\x2b\xd3\x03\xd8\x42\xe7\x51\xb1\x45\x46\x70\x92\x4a\xb9\x27\x29\x93\x11\x7d\x7d\x25\x80\x08\x3d\x9d\x71\xfa\x95\x83\x2f\x37\x17\x93\x4c\x46\xd4\x43\x64\x72\x61\x48\x73\x3f\xcc\x4f\x68\x7b\xfd\x72\xcd\x4d\xc6\x79\x39\x2d\x4f\xef\x76\x8e\xf0\xdf\xb6\xec\xa6\x71\xbb\x11\x66\x33\x91\x82\xe9\xdc\xdf\xb8\xbb\x68\x96\xb6\xd7\xb7\xb9\x29\x07\x39\x7c\x80\xd6\xa1\x1b\x9e\xfc\xec\xdd\x1a\xcc\xd5\x8b\x4d\xd3\x37\x79\xd9\xb5\x71\x07\x80\x6e\x05\x53\x54\x5f\x21\xc7\xc0\x5e\xe8\x62\xec\x67\x50\x23\xde\xe9\x1e\x3a\xe2\x3d\x69\xe5\x79\x0a\x3e\x0f\x4e\xbe\x8b\x27\x59\x27\x2e\xef\xcc\x94\x7c\x3c\x7a\x96\x82\x9f\x85\x2c\xef\xc4\xa9\x53\x70\x74\xdf\xea\x87\x92\xaa\x0f\xa8\xfb\xa1\x89\xef\x41\xd9\xad\xb2\x88\x80\x1c\xb9\xc2\x57\x73\x65\xbc\x6f\xf0\xf2\x81\xa6\x7d\xbd\x6f\xf3\x92\x34\x41\x8f\x93\x26\xe8\xf1\xd1\xd9\xcf\x25\xfb\x99\x6a\x97\x2a\x6f\xb9\xdb\x25\x08\x9f\xb7\xb7\x08\xbc\x75\x12\x31\xaf\x72\xaf\x07\x68\xe6\x11\x17\xcb\xfb\xe5\x17\xd2\x8c\x5b\xee\x41\x09\x7e\x73\xdd\x79\x5f\x0f\x08\xaf\x9e\x1a\xc2\xe7\xdd\xeb\x34\x91\x03\xa4\x90\x4c\xeb\x82\x36\x40\x9b\x77\xee\xed\xa1\x17\x2a\xfc\x04\x5e\x6f\xf3\x15\x2f\xa4\xfe\x4d\x12\x00\xfd\x94\x1b\x15\x81\xb1\xdd\xe6\x04\x13\x94\x56\xcd\x39\x23\x4f\x28\xef\xe5\x5c\x77\xaf\xb3\xc6\xe9\x65\x76\x27\xdf\x19\x99\x38\x2a\x54\x60\x6d\x97\xab\x0a\x4b\x4d\x1c\x6e\x0d\xaf\x1f\x3d\x6a\x2d\x96\x8f\x30\xcb\xf9\x3e\xf6\x45\x07\x1d\x53\x19\x17\x77\x47\xca\xe0\x3c\x92\x9e\x25\xe5\x1e\xd2\x48\xbc\xc8\xdd\x80\x73\x11\x4d\x5a\xdf\x74\x65\x69\x5f\xc2\xf5\x62\xfc\x87\x31\x5d\x76\xdf\xfd\x1c\x16\xcd\x9f\xb8\xd5\xe0\xb9\x84\xbc\x84\xca\xd5\xb1\x20\xef\xd0\x54\xb3\x30\x7e\x10\x75\xa4\x5f\xe0\x67\x00\x7c\x77\xe5\x6f\x3c\xe6\x74\xc5\xa6\x9d\x2c\x9f\x08\x28\x0a\x28\x86\x7b\x29\xaf\x2f\xbe\xe2\xa7\xa3\x34\x68\x2f\xb3\x32\x83\xd5\xfc\xc7\x69\x34\xf3\xa5\x81\x15\x91\x59\x1a\x61\xd7\xaa\x3b\xd8\x4c\x36\xaf\xb8\x9b\xc5\x02\x7b\x03\x0b\xd7\xbd\xe2\xbf\xfb\x54\x8b\xcc\xa7\x72\x29\xf8\x51\xb1\x2b\x14\x6f\x9d\x27\x94\xfb\x26\xc7\x5e\x0e\x62\x83\x27\x32\xe7\xa3\xf7\x06\xa9\x4c\x90\x1c\xd6\x2d\x0a\xd8\xdb\xd9\xa0\x2f\x3c\x0a\x02\x11\x6e\x05\x58\xf0\x5d\xe7\x29\xb5\x9b\xec\x49\xb8\x7a\x0b\x59\x27\xd6\x94\x47\x27\xf4\xdc\xf7\xeb\xe8\x5e\x4d\x25\x73\x29\x5e\xb1\x66\xd5\x20\x92\x47\x46\x05\xbc\x98\x1c\x0f\x99\x0e\x79\xd1\x24\x6d\x4b\x0d\x46\xb9\x7c\x39\xa9\x13\x7d\x5a\x1a\xa8\x04\x91\x87\x69\xfb\x5e\xd9\xb8\x03\xa9\x32\x2a\x37\xca\xac\x77\xa1\xfc\x0c\x24\xf4\x76\xc5\x67\x6e\xc5\x7f\x9a\xa8\x98\x87\x4e\xef\x86\x8e\xcc\xfe\xa7\x08\x47\x78\x99\x48\x3c\x04\x72\x06\xcf\x3f\x39\x86\xba\x39\xf8\xb2\xc3\xfa\xda\xd5\x09\x12\x06\x41\x5e\x87\xd9\xf0\xab\x6e\x57\xa2\x6a\xb4\xad\x15\x4a\x96\xb6\xd7\xef\x9a\x22\x16\x0d\x27\x65\x2b\x6c\x78\xf1\xe0\x53\x35\x15\xa6\xd2\x24\xcb\x60\x06\xd2\x87\x28\x15\x51\xdf\xf2\xf5\x09\xeb\x09\x5a\x55\x8e\xf0\x38\xcf\x52\xe7\x11\x6b\x69\x33\x9e\x22\x27\xe5\x75\xdf\xe6\xe6\x3c\xf3\x53\x83\x28\xa1\xb6\xbe\xb5\x97\x66\x9a\x6e\x3e\x2d\x80\x53\xee\x21\xa6\x90\x93\xb1\x7c\x7b\xe6\x60\x33\x35\x79\x9e\xad\xda\xa2\x04\xae\x18\x35\xe2\x3b\xc4\xe1\x77\x81\x88\x87\x4f\x0d\x55\xfd\xbc\x5f\xac\xb5\xbb\x99\x03\xf8\x95\x71\xdb\x95\x0c\xe1\x04\xd1\x79\x47\xe5\xef\xed\x61\x28\x1f\xb2\x6a\x55\x27\x4b\x5d\x13\x23\x70\x7a\xdc\x20\x4e\x8f\x1b\x54\x22\x76\xa4\x0d\xd9\xc0\x29\x11\x78\x72\xd0\xeb\xc4\xb0\x7f\xbd\x0e\xbe\xde\x1e\x94\xd9\xa0\x84\x2f\x1d\x91\x38\x57\x76\xc1\x71\x75\xed\xfd\xcd\xc5\x41\xda\xc1\xb6\x85\x2b\x42\xdb\x15\xfe\x6a\xd7\xfa\xc8\x66\x0c\xc0\x91\x85\x0c\xfd\x25\xbc\x91\x8f\xb1\x67\xe5\x84\x26\xa5\x3a\x66\xed\x11\xa2\x9b\xda\xd3\xf2\xc9\xf7\x67\x9f\x6e\x05\x30\xff\x71\xd7\x78\x53\x71\x8d\xea\x26\x91\xa8\x3c\x74\x49\x1f\x7c\xc1\x35\x9e\x18\x3e\x82\x35\x27\x27\xce\x19\xc0\xa5\x0b\x8c\x08\xa6\xea\x1e\xe3\x3c\x26\xd7\x9f\xe2\xda\x42\x26\x43\x70\xc1\x2d\x9d\x22\xbe\xf6\x53\x63\xb5\xcb\x57\x66\x0e\x36\x07\xe9\x8a\x8d\x3d\x22\x8e\x26\x27\xfc\x18\x05\xc9\xb6\x26\x56\x49\xe9\x91\x4d\xcb\x30\x8b\x9c\x44\x4f\x05\x83\x9b\x9b\xc5\xb2\xe8\x61\x3c\x47\x43\xaa\x9f\x45\x14\x9e\xfd\x8c\x08\xa2\xb2\x7c\xc9\xa4\xf1\x57\xad\xbc\x32\x45\xa1\x33\x6a\xf1\x0c\x15\xef\x6f\xd5\xea\xe5\x24\xb1\x30\x4c\xbd\x3a\x42\xc1\xe5\x61\x9f\xac\x8b\x44\x9e\x21\x8f\x7b\x71\x2a\xf5\x68\xb8\x23\xc4\x49\x72\x1c\x7d\x26\xc4\x10\x5d\x93\xf7\x4c\xdb\x0e\xca\xb8\x6d\x12\x84\x9a\xc8\xee\x30\xe5\x20\xad\x9b\x88\x7c\xfd\x6d\xfc\xac\x0a\x73\x04\x2c\xf8\x77\xf0\x84\xe5\xe3\xeb\xe3\x28\xa9\x25\x53\x76\x6d\xe8\x40\xc2\xe6\x81\x7c\x5a\x8e\xc7\xec\xd8\xdc\x5c\x73\xd5\xac\xc8\x08\xb9\x2f\x67\xba\xab\x91\x13\x9e\x6e\xcd\x92\x6c\xa9\x4a\xe1\xaa\xeb\x83\x23\xbd\x45\xbc\x83\xb7\x68\xe6\xa2\x17\xb7\xbb\xf1\x92\x49\xd1\xc5\x12\x1d\xe2\x88\x08\xab\xce\xa1\x06\xa1\x9d\xfd\x6a\x0b\xa9\x5a\xf1\x53\x2c\x40\x95\xe5\x3d\x49\x49\x0e\x8c\xc8\x33\x2b\xd7\xc8\xf8\x5b\x6d\xf6\x4d\x51\x58\xa1\xe8\xc4\x2a\x46\xff\x49\x34\x6d\xb0\x31\x10\x3e\x1d\x89\x9e\xde\xc2\xdc\x66\xb4\xf4\x04\x7b\x77\x03\x59\xb1\x9c\x0c\xf7\xc4\xcd\x7e\x6e\x17\x7f\xb3\xb9\xf8\x39\x07\xd2\x46\x0e\x2f\x65\x20\x6c\xaf\x2b\x4c\x01\xbf\x17\x53\x84\x40\xb5\xdc\x0e\x69\xc3\x6f\x3d\xd5\x72\x15\x56\x01\x37\xba\x5d\x8f\x05\x78\xcf\xed\x7a\x04\x43\x0d\x18\x1d\xd8\xee\xc9\x56\x20\x0d\xd8\xde\x22\x2a\xa8\xbd\xad\x20\xf0\xf1\x38\x98\x81\x7c\x85\x7c\x7e\xea\xc0\xe6\x15\xd9\x13\x18\x51\x7a\x7a\xdd\x59\x79\xac\xae\x1d\x88\xfb\x11\x21\x4f\xb4\x48\x85\xf3\xb2\x8b\xab\x44\x04\x0f\xeb\x01\x69\xfa\xde\x56\x60\x25\xd8\x83\x58\x1f\x8d\x14\x61\xb9\xc6\x47\x7e\xc3\xc9\x49\x60\xd1\xed\x76\xe1\xb9\x66\xb8\x8d\xdf\xfd\x92\xc7\x2c\x56\xd1\x21\x16\xc0\xfd\x61\xe3\x77\x0e\x78\x1d\xa1\x4f\x9a\xbf\x4f\xe2\xb4\x9d\x25\xf0\x86\x9e\x7b\xa7\xfa\x51\xed\x09\x05\x7b\x1b\xe7\x05\x09\x67\x5d\x8b\x82\x70\xd6\x35\x1f\x88\x16\x36\x59\x6c\xb8\xd7\x80\x5a\x09\x84\xa1\xe4\x78\xcc\x53\x3a\x41\x9c\x9e\x0d\x0b\xa4\x8e\xdd\xc5\xc3\xa9\x13\xdb\x2f\x61\x57\x7c\x14\x73\x48\xb5\xff\x7e\x88\x7d\xac\x38\xb5\x9a\xba\x4e\xcf\x94\x36\x8f\x4d\x32\x11\x92\x57\x80\x9e\x70\x0b\x1f\x46\x4c\x81\x5b\x87\xae\xea\x65\x65\x96\x6b\x23\x10\x26\xf9\x6a\x34\x82\x3e\x0d\xdc\x07\x7f\x46\x14\x24\x0b\x71\xb6\x94\x1b\x07\xf9\x6d\x50\x7f\xe4\x3a\xf1\x76\x5c\xaf\xd5\x07\x5e\xc8\x33\xd3\x69\x9b\xa2\x94\x02\x34\xb2\xa3\x77\x5c\xce\x20\xc7\x3e\xd8\x8d\xd3\xd7\x08\x27\xe1\x75\x4b\x67\x67\xbd\x6e\xe9\x33\x5b\x41\x96\x2f\x36\x0f\xbe\xfc\xa8\x5b\x9e\x3a\x13\x10\x6a\x4f\x77\x22\xea\xcf\xff\x1c\xc5\x5f\x24\x04\xbf\x40\x42\x74\xcd\x3d\x7b\x19\x95\x76\xeb\x1a\x45\xc5\xff\x85\x09\xd5\x3e\x72\x4b\x04\x15\xe6\x53\xce\xdb\xb2\xd2\xbe\x32\xdc\x4f\xb0\xdc\x55\x9d\xb8\x76\x3b\x5b\xb1\xa9\x4a\x99\xe1\x0f\x31\xd4\x24\xc7\x63\x95\x0b\x07\x1f\x11\x5e\x74\xed\x05\x22\x82\x94\x21\x4d\x39\xa9\xc5\x6b\x98\x9e\xf9\xaa\x03\xb8\x78\x82\x40\xa9\xf8\xe8\x0c\x40\x0d\x4b\xe8\x6b\xd6\x68\x58\xaf\x13\x4c\x01\xe2\xb1\x51\x57\x22\x5b\x88\x53\xa7\x1b\xb5\xf9\x66\xf5\x8c\x36\xdf\x1c\x7e\x9a\x0c\xf4\x8a\x2d\xca\x78\xc9\xf5\x3f\x5d\x91\x0b\xe8\xae\x7b\xee\xc5\x7b\x12\x10\x12\xc6\xa1\x96\xea\xd7\x68\xbf\x2e\x66\xf9\xe7\xdc\xc3\x45\xb6\xb8\x81\x06\x14\x2a\x5a\x1b\x54\xb1\xbd\x89\x22\x00\x12\xde\xc7\x9d\x2d\x92\x97\xe9\x5a\x78\xe8\x59\x9e\x1c\x12\xd8\xfb\x07\xae\x03\xa8\x9c\x15\x95\x99\xf1\xd2\xc6\x41\xec\xef\x0c\x96\x0d\x6a\x08\xc2\x6c\xb1\x79\xc4\x01\xc6\x60\x8a\xbf\x85\xc2\x36\x3e\x7a\xcf\x35\x02\x61\x0f\xdf\x72\x78\x2a\x05\x84\x54\x0b\x0d\xbb\xea\x7d\x2e\xf3\xbd\x39\x24\xb9\xc6\x2b\x24\x6d\xf7\x4b\x38\x23\x38\xb3\x1b\x11\xe9\x5a\xde\x46\x51\x04\xff\x72\x7b\xc8\xac\xae\x37\x51\x93\x83\x87\x99\x5c\x27\xdc\xc3\xcf\x29\x0a\x39\x16\x85\xf9\xfb\xc9\xb1\x29\xca\xb9\xb9\xca\xb9\x56\xbb\xd0\x42\xca\xc3\x6b\xb9\xbe\x1d\x85\xa9\xee\xb7\xa9\x7b\xb2\x98\x0d\xd2\x4e\x9c\x2e\xed\xc2\xa5\xc8\x25\x0f\xb7\xf8\x8c\xa9\x70\xec\x03\xff\xeb\xee\x39\x62\x61\xfc\x98\x27\x99\x27\x50\x52\x57\xab\x48\xea\xaa\xe5\xda\xce\x10\x54\x23\x03\x44\xd9\x6a\xa2\x45\x15\x21\xb4\x0e\x80\xc7\x00\xfb\x8d\xcf\x4e\x89\x2b\xf7\x72\x34\x32\x6e\x57\x98\xb4\xcc\x1a\xee\x6d\xd6\xf2\x52\x8f\x17\x46\x5e\x0c\xd3\x53\xda\x6d\xae\x6e\x08\x4d\xa3\x8f\xa2\x11\xc9\xd3\xad\xdb\x7b\xdf\x5c\x73\x21\x31\xed\xe5\xa2\xcc\x52\x3b\x11\x4a\x73\x72\x85\x80\x43\xdd\xc3\xf2\x40\x94\xb0\xc3\xcb\xe8\x17\x83\x4e\xc7\x62\xfc\x0a\xbf\xfb\xf4\x3a\x01\xa9\x2f\xf3\x80\x0f\x38\x35\xdc\xca\xb3\x9f\x6d\x11\xfd\x73\x69\x7a\x7d\x94\x8d\x59\x97\x51\xc7\x13\xaa\x67\xac\x52\x52\x0d\xaf\x44\xb5\x1d\xcf\x58\x88\x71\x99\xa1\xef\x7c\x8d\xb2\xdd\x81\xe6\x62\x96\x24\xd9\xaa\xaf\xd7\x63\x29\xc2\xea\xa1\x2b\x84\xe0\x18\x06\xf8\xca\x98\xac\x8c\xa3\x55\x49\xcd\xe2\x62\x9c\xc4\x48\x0a\xfd\xf4\xef\x4d\xa4\x3a\x72\x52\x67\x3b\x9b\x95\xf9\xe9\x69\x8d\x55\x81\x94\x47\x46\x47\x4a\xc6\x89\x00\xe6\x00\xbf\xc0\x84\xa6\x28\x36\x45\x01\xf5\xf6\x71\x1d\x34\xc6\xc4\x3d\x65\x02\x46\xd0\x72\x97\x58\x31\x04\xf8\x8f\x94\xf4\x2c\x75\x3d\xca\xdc\x74\x6c\x67\x32\x44\x53\x60\x69\x80\xd3\x41\xf4\x2c\xc7\xee\xcd\xc8\xdf\x8c\xa8\xce\x0c\xda\xe5\xde\x6a\xc1\x09\x33\x93\xfb\x55\x44\x78\x9b\x54\xde\xbb\x0d\x0b\x85\xbf\x39\x1f\x91\xee\xe3\x06\x5e\x21\x9a\x7a\xbf\xe4\xbc\xf0\xbc\x0b\x3c\x3d\xe3\x53\xb5\x4c\x7c\x1b\xc4\xf7\x74\xc7\x39\xeb\xf6\xcd\x35\xfb\xd6\x2c\x4f\x50\x9a\x70\x91\xfa\xa8\xd0\x21\xc4\x32\xff\x98\xb9\xc8\xe3\x8e\x2d\xdc\x54\xaa\xea\x4f\x57\x77\xa5\xf2\xd3\xe4\xb7\x2e\xd3\x17\x8c\x17\x9a\x66\x67\x9b\xaf\x99\xbe\x49\x6d\x61\xdd\xe4\x05\x16\xf0\x7d\xe7\x71\xb4\xbb\xe1\xae\x0c\x65\xa2\x93\x3c\x0e\x71\x73\x24\x16\x86\xd0\x1f\x5e\xe0\x06\xe5\x77\x89\x59\x2d\x06\x71\x09\xfd\x78\xdc\x1f\x24\x32\x65\xdf\x38\x8f\xa2\xd4\xe6\x34\x81\x77\x86\x0d\xf3\x71\x52\x7c\xbf\x01\x4c\x89\x6e\x3b\xc2\xca\xc5\x85\x59\xca\x2d\x94\x1b\x46\xb0\xbe\x72\x32\x56\xa8\xd8\x37\xd7\x8c\x3b\xd6\x88\x07\xaf\xb5\x60\x0a\x4e\x5a\x88\xb3\xd2\xb6\xbb\x69\x95\xb5\xad\xed\x0a\x9e\x61\x2f\xf6\x37\x2b\xb8\x62\xdd\x6e\x6c\x21\x46\x77\x5c\x65\xd2\xa1\xc2\xb5\x7f\xe8\xc2\x27\xad\x4f\xd4\xc1\xfa\x2b\x2f\x21\x7b\x11\xc9\x51\x17\x06\x52\x4e\x6a\xf2\xb5\xfd\xcd\x76\xe6\x75\xeb\x94\x4c\x88\x99\x85\xe8\x79\x65\x2b\x36\x2f\xac\x0f\x94\xd0\x70\x94\xce\xac\x9c\x10\x37\x5d\xe6\xfa\x48\x82\x44\x04\x0b\x02\xd4\x51\xe4\x98\x20\x1b\xfd\x4c\xba\x28\x78\xad\x52\x68\x94\x13\x22\x30\x5d\x18\x08\x29\x02\xcc\x38\xc4\x7a\xe4\x78\x94\xa4\xa6\x83\x78\x48\xa8\x59\x48\xf4\x14\x19\x9e\xaa\xd4\xb8\x85\xa1\xfa\x35\xfa\x3b\x55\x9a\x91\x14\x3b\x1b\x81\x03\x74\x48\x05\x14\x01\xf2\xe2\x8d\x08\x61\x2b\xcf\x19\x10\xb9\xa7\x1f\xcf\xad\x49\xfc\x0f\x34\x4d\x92\xc0\x02\x2a\xc8\xb0\xda\x42\x8a\x31\xac\x19\x22\x5e\xf4\x22\x0b\x08\x94\xae\xc3\xb0\xc8\x89\x8f\xef\x7b\x71\x1a\x17\x65\xbe\x36\x41\x7d\x95\xeb\x24\x17\xb9\xe9\xfa\x48\x70\x69\x27\xa8\x28\xb8\x60\xf2\x5c\x79\x31\xd0\xc1\x81\x2e\x9b\x1c\x07\x58\xae\xa0\xf3\xc2\xa0\xdd\x5b\xd8\x00\x72\x32\xf2\x1e\x3a\xb1\x45\x0d\x02\x90\xa7\x23\xcc\x89\x7b\x8a\xc6\x72\x30\x8b\x2b\xa2\x92\xc4\xfc\xdb\xcf\xf2\x76\xb7\x11\x56\xfd\xa5\x61\xa8\x53\x5e\x1a\x4b\x85\x2a\xcb\x98\xdb\xa2\x9d\xc7\x7d\x2f\xb6\xaf\xb4\xd5\x61\xa5\x7c\x5c\xd3\xf6\x9c\xa9\x6c\x41\x3f\xb1\xc6\x6b\xd8\xc3\x96\x35\xd6\xc3\xec\x74\xa3\x15\x80\xbb\x9d\xb8\x68\x67\x83\xdc\x2c\x59\x22\x1b\x3b\xee\xde\xa0\x1c\xfb\x3c\x77\x29\x4e\x54\x16\x40\x5b\x4b\x01\x5b\x73\x91\xa0\x4e\x36\x29\xc0\xe3\xa8\x0c\x5b\xd5\xb7\x69\xa8\xe5\xae\x49\xd9\x8f\x43\xc7\xe4\xed\x5a\x6a\x9e\x7e\x9e\xf9\xa2\x12\x89\xd0\x1d\xf0\x22\x74\x5b\x5d\xf9\xf4\x34\x3c\x65\xcf\xe4\xcb\x02\xc2\x40\x73\xef\xf8\x90\x4c\x01\x46\x9c\x94\x96\x73\xeb\x77\xcc\x1c\x74\x78\x99\x3c\xeb\xc5\x05\x2c\x2a\xa2\x41\x60\xd8\xe5\x38\x7a\x82\x2a\x88\x1d\x9b\x17\x3b\x42\x0d\xfa\x56\x44\x2e\x10\xa0\x6d\x54\x82\xaf\x10\x49\xf9\x09\x5a\x00\xb7\x98\x0a\xb1\xf3\xda\xa0\x28\x6d\x67\x17\x95\xaa\x76\xb4\xa8\x82\x08\x39\x40\x54\x4e\x8e\x92\x06\xf5\x8f\xb1\x51\xbd\x5e\xd2\xbe\xd0\xaf\xae\xde\x85\xf6\xbe\xb6\x2e\xb5\xe9\x99\x66\x6f\x90\x94\x71\x3f\xb1\x83\xc2\xe6\x34\x1f\x75\x83\xa9\xc7\x44\x68\x1e\xc8\x19\x00\x82\x50\x40\x9c\x6c\x79\x81\xf5\x2c\x2d\xb2\x04\x63\x05\x93\xd4\xfb\x17\xf5\x78\x14\x1f\x77\xac\x93\x28\xcb\x5e\xb7\x28\x21\x95\xf5\xa9\x31\x25\x81\x2a\xe6\x1d\xac\x4d\x12\xe4\x9b\xcd\xf9\x61\x5c\x9d\x16\x8d\xab\x2f\xd2\x15\xa2\xe6\xaf\x1f\x27\x89\x41\x1d\xa1\x4e\x0c\x94\xeb\x83\x1d\xe8\xc2\xbb\x55\xeb\x35\x7f\xaa\x1f\x53\x51\xd5\xea\x71\xaa\x9a\x8f\x5b\x56\xf2\x0f\x35\x06\x71\x7f\xf3\xb5\xac\x50\xe1\x41\x9d\x87\x26\x82\xd9\x73\xfe\x02\x17\xec\x52\x9c\x0a\x94\x12\x61\xb2\x90\x07\x28\x6f\xa8\xfb\x25\x58\x9c\xc7\x5a\xc4\x17\x30\x5e\x4e\x9f\x39\xd8\x4c\xb3\xbc\xec\xba\xd1\xa7\x80\xb4\x47\xce\x83\x64\x58\x94\x3f\xd0\x40\x66\xdc\x75\x2f\x2b\xca\x64\x6d\x22\x8c\xd7\x5c\x27\x15\x6a\xe9\x2a\x21\x24\x7b\xbb\x86\x77\xb8\x28\x4d\x2e\x55\x52\x2c\xc4\x77\x78\x26\x59\x28\x99\x55\xbf\xbf\x66\xc0\xab\xb2\x57\x0e\xd2\xe7\x27\x77\x01\xb9\x94\xe3\x31\x1b\x37\x73\xd0\x51\xdd\xc4\x6d\xd3\xef\xdb\xce\x0e\x2e\xd4\x8b\x55\xd6\x42\xa7\x5b\x69\xc8\xbb\x51\x93\x43\xee\xb2\xc9\x7d\xb2\x23\x9e\x63\x22\x1f\x14\xa5\x52\xca\x20\xc7\xb8\x86\x10\xca\x13\xa7\x7b\x16\x9f\x9b\xd1\x33\x44\x5c\x8b\xf0\x20\x5e\x81\xad\x50\x24\x6e\x63\x3a\x8c\x47\x85\xd8\xb5\xfa\x4f\x81\xfc\x86\x25\xc9\x51\x5e\xfe\x9f\x22\xc6\x2a\x86\xf7\x93\xc4\x8b\xa5\x05\x9a\x1e\xb9\xdd\x2d\x58\x51\x15\x81\x0f\x4f\x6e\x5b\xeb\x71\xbf\x19\x7b\x7d\xd3\x2e\x27\xdd\x4f\xb1\x30\x8e\xbb\xb5\x7f\xf5\x94\x6b\x16\x21\x2e\x91\x9e\x14\xae\x67\x1c\xcd\x3f\x37\xd7\x4c\xcc\x9a\xcd\x27\x42\x22\xf6\xbf\xe1\xa5\x2a\xeb\x5f\xb0\x41\x47\xc9\x0b\xb4\x5d\x3d\x60\x5e\xc9\x40\x31\x3c\x2e\xc7\x23\x64\xce\xd6\x94\x09\x20\x40\x28\x95\x41\xac\x48\x8e\xa9\xf7\xbc\x6a\x3a\x1d\x0f\x61\xf5\x14\xc1\x01\x45\x79\x21\xda\x22\x53\x39\x3f\xd5\x7c\x65\xff\x1e\x12\x4f\xc5\xfb\x64\xd0\xad\x96\x96\x48\xdc\x43\x34\xb0\x61\x4c\xf6\x62\x11\x21\x73\xbc\xc8\xdc\x44\xdb\x5c\xb9\xdc\xab\x34\xee\xf3\x63\x22\x23\x53\xe3\x26\x4e\x27\x03\x93\xc0\x9d\x11\x21\x72\x7c\x9b\x32\x87\xbb\xdf\x81\x85\xd9\xf0\xf5\xdf\x6a\x4d\xae\x4d\x10\xcd\xe6\x05\x82\x00\xdf\x65\xbe\x21\xcf\xaa\xb4\x68\x16\x72\x67\xcc\xdc\x6a\x84\xcb\x00\x8a\x44\x8e\x6b\x75\xbe\xf2\x6c\xc1\xe6\xa5\x00\x00\x91\xe3\x3c\x88\x58\x22\xf7\x12\x53\x31\xd5\xfa\x5d\x53\x14\x59\xbb\xca\xbc\xb5\x5e\x8c\x27\x78\x32\x22\x3a\xe0\xd3\x2c\x43\xf8\x27\xc4\x71\xbf\x60\xf2\xa5\x20\x6b\x3f\xc7\xe1\xea\xcc\x27\xf2\xe9\xce\xce\x36\x4d\xdb\x2d\xf4\x74\x4d\x79\xb9\xb8\xa2\xa3\xe1\xc7\x78\xae\x70\xa0\x59\xfa\xa0\x15\xf5\xf3\xed\xad\x30\xf3\xbd\x7d\x7d\xab\x2b\x42\x2b\x78\x27\x71\x5d\xde\xe4\x7e\xb8\x40\x9d\x48\x00\xf2\x80\xc0\x98\x40\xd1\x8c\xa7\x86\x81\x04\x34\x18\x9f\x69\x85\x2a\x55\x36\x28\x9f\x75\x0b\xd3\x97\xbc\x0e\x29\x15\xd7\x23\xeb\xae\x0f\x83\xa2\xe7\x3b\x81\xe7\xef\xfe\x53\xeb\xd4\x14\xd8\x01\x1c\xd2\xa6\x60\x24\xf0\x35\xf7\x40\x7c\xe9\x79\x08\x66\x0e\x7a\xbc\x49\x65\x9a\x10\x6c\x6f\x60\x0d\xca\x90\x82\xdb\xa1\x0e\x76\xf8\xc4\x73\x2d\x5f\xdf\x3e\xf3\x6b\xad\xa0\x49\x0f\xbb\x01\xc3\xb3\xbb\x15\xaa\x23\x33\x9f\x85\x5f\xc7\x23\xdf\x8e\xe6\x90\xc7\x45\x85\x09\xd4\x49\xcc\x84\xa0\xda\xb4\x9f\x25\xf8\x9e\x1c\x83\x61\x54\xaf\x69\x21\xc9\xb2\x0e\xa9\xf6\x7d\x1d\x3b\x48\x67\x24\x1e\xa3\x69\x27\x6d\x23\xfb\x36\xd2\xfe\x97\x55\xed\xfc\xee\x58\xd4\xb3\x6f\x0e\xa2\x83\x55\xbe\xe6\x2b\x4e\x8a\xb8\x0c\xa3\xc6\x88\x70\x61\xf4\x4e\xd5\x0d\x1b\xb6\xbb\xd6\x16\xf6\x13\xb9\x2e\x83\x35\xec\xdb\x04\x7d\x5e\x3f\xc8\x5b\xdd\xba\x36\x2a\x6a\x50\x33\x71\x92\x88\xa9\x93\x21\xbf\x88\x8a\x9c\x97\xe8\x9b\x97\xe3\xb4\xb3\xa7\xba\x00\x65\xf2\x74\x2f\xc2\x23\x49\x7d\x27\x5f\xb8\x9a\x88\x10\x44\x0b\xe8\xca\xcb\x3d\x02\xe8\xf1\x0f\x63\x9f\x96\x0d\x6f\x60\x61\xcb\x17\x0c\x03\x2e\x35\x2e\x9b\x61\xa2\xea\x81\x5b\xbe\x88\x20\x27\x40\x12\xea\xe7\xb3\x5e\xd2\xca\xd6\x1d\xd4\x95\xf0\x83\x37\x51\xd5\x80\xdb\xdb\x83\x86\xa6\x50\x29\xb5\x02\x81\xf4\xbd\x88\x74\x46\x6f\xbb\xfb\xd2\xf0\xb2\x31\x3d\xad\x12\xc6\x6e\x6d\xab\x26\x48\x75\xe9\xd8\x86\xdb\x5b\x54\x15\xd8\x70\xf1\x30\x02\xa9\x2b\xa4\x9c\xbf\x3e\x0c\x82\x7e\x1b\x57\x87\x34\x8c\xb2\x67\x9d\x04\x12\x4e\xb9\x7e\xa3\xb0\xb9\x21\xd2\xd7\xf6\x6d\xe3\x77\x0e\x04\x72\xd5\x6a\xf7\x61\x07\xdc\x01\xdd\x85\x2f\x2a\xcd\x4f\x1d\xf0\x90\x18\xd7\xfe\x55\x09\x7a\xf7\xe6\xf0\xe8\x6e\xb9\x99\x6a\xf8\x9d\x0d\x57\x28\x92\xb9\x74\xac\x6b\x38\xb4\x47\x04\x80\x88\x0e\xc5\x49\x40\x31\xd1\xbb\xb8\xb9\x45\x85\xa9\x7c\x12\x7f\x8a\x67\x83\xbe\x0a\x5a\x21\xdb\xd7\xdd\x13\x17\x4a\x1b\x61\xe3\x26\x82\x9b\x19\x5f\x73\x21\xed\xa5\x1f\x53\xb9\x07\xf3\xfc\xf0\x7e\x57\x87\x23\x73\x41\xd5\x75\xa3\x33\xb2\x89\x97\x8c\x8d\xf1\x5d\xd8\x4b\xc5\x76\x13\x61\x4c\x23\xa8\x25\xfe\x07\x48\x1f\xea\x0c\x01\xf1\x14\x1f\x19\xab\x66\x7d\xf9\xcb\x6e\x80\xd7\x36\x1a\x5f\xf8\x3d\xad\x24\xba\x5b\xd4\xaa\x62\xc8\xaf\xe2\xb4\xb4\x79\x6a\x92\x3d\x34\x84\x79\x22\x22\xda\x8a\xe3\x24\xb8\xf0\x0f\x04\xc5\x14\xf5\x34\xbc\x86\x0b\xae\x45\xa3\x2d\x83\x50\xfb\x78\x80\xeb\x94\x4f\x8f\x94\x9f\x46\x15\xc0\xdb\xdd\xc7\xdc\x9a\x42\x27\xf6\x1c\xc1\xed\xb6\xb5\xaa\xf5\x25\xcc\x01\x23\x16\x3d\x22\x18\xef\x99\x61\x28\x46\xed\x86\x33\xc0\xc9\x45\xf2\xf5\x23\x38\x37\xa1\xeb\x06\x57\xc1\x87\x2c\xa7\xf0\x60\x18\x64\x4b\xc0\x9b\x0a\xb7\x76\x93\xda\x36\xab\xdd\xb8\x5c\xcc\x72\xb1\xb1\x58\xd7\xe7\x23\x9a\xb5\x3f\x4f\x71\x8f\x1b\x67\xc4\x5f\xea\x50\x98\xbb\x0f\x65\x73\x1d\x79\x12\x39\x34\x5f\x85\x12\x93\x68\x8f\x4e\x51\x94\x98\xdb\xa5\xb8\x27\x72\x36\xc8\x89\x3f\x24\xf8\xc6\x87\xf4\x97\x6d\xd3\x8f\x4b\x93\x3c\x49\xd3\x28\xe0\x9e\x47\x0a\x22\x09\x16\x76\xff\x39\xb8\x26\x55\xec\x72\x17\x0c\xb0\xc1\x75\x31\x89\x98\xfe\xb9\x88\xc0\x11\xbd\xd7\x37\x68\x56\xfa\xae\x5b\x1f\x28\x94\xdc\x24\x44\xdd\x3d\xd8\x37\x2f\x0b\x36\x73\x50\xff\xc8\xad\x1b\x49\xd8\xb1\xea\x46\xc4\xf5\x55\x8b\x95\x9a\x25\xf7\xa2\xcf\x11\xb6\x24\xc9\xf2\x6c\x31\x19\x64\x79\xd6\x36\xf9\x82\xa3\xd7\x0e\x29\x6d\x44\xa9\xee\x90\x15\x95\x33\x95\x2a\x08\x54\x49\xe8\xda\xc8\x31\x4d\x72\x2f\xc6\xa9\x49\xdb\xb1\x49\xfe\xd1\x2e\x72\x5d\x2b\xa4\x68\xe7\xa6\x3f\x42\xe6\x8e\x3a\x92\xa2\x9a\x9f\x1e\xe3\x18\xf9\xe2\x2b\x4e\xd1\xc8\x53\x1b\x11\xff\xd1\xd6\xfc\x76\x7a\xba\xf9\x95\x81\x9b\xf1\x96\x89\x33\xa5\xc5\x0f\x55\xab\xcb\x9f\xa8\x48\xd6\xb5\xed\xc4\x4c\x10\x35\xe6\x71\xb7\x22\xf0\x7a\x2e\xb0\x44\xc5\xed\xb1\x6e\xbc\x03\x02\x95\x95\xcd\xd0\x82\x1a\xdc\xce\x35\x16\x86\xbf\x46\x93\x0a\x89\x59\x5d\xb3\xf9\x64\xe3\xb9\xe7\x58\xd0\x41\x09\xdf\x44\x66\x4b\xfe\x65\xa4\xbd\x4d\x79\x43\xcf\x0a\xa7\x0d\x2c\xcc\x5d\xee\x0e\xdc\xad\x45\x7a\x64\x69\x11\xdb\x41\xde\x18\x21\x15\xe7\x11\xbe\xad\x21\xed\xcc\x41\xaf\x59\x26\x93\x87\x11\x71\x8b\x5f\xa0\x31\xbf\x62\xb0\xe0\x68\x83\x3d\x38\x58\xd8\x11\xe5\xe4\x13\x61\x36\x4b\x55\x26\x62\x93\x86\xf3\x84\x30\x3b\x52\x07\x91\x13\x02\xf7\x65\xed\xf2\x85\x47\x42\xfc\x2e\x39\x98\x06\x24\xf0\x49\xd2\x29\xc1\xde\x40\xf1\x6e\x97\x73\x3d\x8a\x82\xa7\x72\xf6\x39\xd6\xa4\xfd\xe3\x61\x10\xb6\x47\x66\x80\x55\x76\x7d\x18\x10\x4f\xdb\x60\x43\xe5\xd3\x34\xa0\x92\x15\x66\xd9\xb8\x9b\x47\x0d\x0f\xbd\x36\x39\xae\xe3\xaf\x2e\x62\xdb\xb3\xa9\xee\x1e\x65\x9e\x72\x97\x23\x27\x75\xef\xa2\x9f\x83\x7c\xa2\x8e\x1d\x68\xbc\x5f\x79\xa0\x59\xd8\x15\x9b\x9b\xb4\x8d\x66\xb0\x24\xf2\x2d\xee\x5d\xf9\xd2\xda\x9f\x6c\x0e\x99\x39\xd7\xb8\xf6\xbb\x1b\x69\x47\x78\x01\xf3\xa8\xa5\xe8\xea\x81\x0a\x3b\xaa\xaf\x94\x77\x6c\x95\xc9\x02\x9e\xef\x2a\x20\x43\x69\x17\x20\x70\xd9\xbb\x5e\x3d\x5f\x55\xdc\x7d\xcc\x8f\x09\xaf\x9a\x1c\x1d\x4b\x24\x46\x13\xa3\x00\x55\xee\x54\x85\xa4\xf0\x06\xc9\x91\x94\xb1\x6d\xe0\xd5\x23\x69\x7a\x1f\x83\xdf\x72\x42\xc5\x75\xb3\x64\xd3\x92\x81\x7a\xef\xba\xe7\xe7\xcb\x09\x1e\x6b\x7f\x7e\xc8\xa3\x3b\x69\x19\xa7\x03\xe3\x91\x9b\x9e\x48\xdf\x0b\x96\xdf\x86\xc7\x55\x4e\x57\xc2\xf8\x65\xfd\xb5\x3c\x5e\xea\x96\x02\x78\x05\x34\xe9\x28\x4f\x74\x1c\xa5\x71\xe7\x2d\x83\xab\xa2\x3c\x46\x45\x68\xee\xe5\x49\xe1\xb9\x03\xd6\x36\xac\x81\x6b\x80\x18\xc9\x09\x11\x8b\xd8\x80\x93\xf7\x80\x80\xea\x82\xe4\xa4\x06\x9f\x7c\xc0\xcd\xdf\xb9\xb5\x86\x2c\x4a\x50\x03\x72\x52\x83\x46\x7a\xd5\x2f\x1a\xf8\x0f\x80\x2e\xfe\x96\x78\x56\xff\xb6\xc6\x6a\xee\x6f\x2e\xe6\xf6\x2b\x03\x57\x04\xf2\xc5\xc4\x8f\xa2\x60\xd4\x3e\xa2\x1c\xa6\x88\x3b\x56\x2a\x79\x58\x46\x47\x01\xdc\x41\x2f\xee\x04\x49\x02\xde\x89\x68\xca\xe3\x68\x44\x8f\xb3\xb6\x25\x98\x66\x2b\x16\x96\x14\xcf\xee\x94\xb3\xb8\x72\x5c\x5b\xbb\x5d\x34\x3d\xd1\x11\x52\xb8\x79\xc8\x3e\xcf\x87\x62\x61\x96\x24\x71\x3a\x8e\x47\xde\xef\xf1\xc8\xda\xc5\xea\xc6\x4b\xdd\x55\xb3\x56\x4c\x84\x16\x94\x94\x0b\xb4\x3f\xe0\xd6\x2d\x42\xa3\x2b\x84\xda\x2f\xb2\x9e\x5d\xad\x82\xda\x49\xaa\x1d\x6f\x73\x06\x0f\x7f\xfc\x21\xeb\xdc\x8f\x34\xda\x43\xb4\xbb\x12\x17\x8e\xe8\x76\x82\x3a\x6c\x17\x49\x45\xe4\xcf\x69\xa2\xf5\xb2\xaf\x4b\x27\x4e\x9d\x7d\x92\x75\x95\x49\x7d\x06\x4d\x48\x9f\xcd\x54\x5f\xac\xc2\xff\x5b\x31\x19\xcf\x37\x8b\x41\xdf\xe6\x55\xcc\x9d\x76\x14\x1f\x04\xc0\xd3\x0f\x49\x5c\x90\x31\x3b\x49\x62\x76\x55\x6f\x15\x91\xd0\x69\xc2\xec\x3c\xdb\xe2\xf1\x37\x77\xe1\xa2\x39\x34\x24\x06\x16\x99\x28\xc3\xde\x17\xb6\x65\xe4\x26\xd7\x47\x86\xe1\x07\x00\xa3\xc9\xbd\x1f\x8e\xc2\x73\x38\x4c\x9d\x81\x3c\x1b\x94\x71\x6a\x93\x35\x4c\xe5\x0a\x54\x92\xc8\x4c\x2e\xd7\x92\x72\xf4\xb3\x24\xf1\x18\x46\x2d\x34\x87\x49\x8d\x23\x2c\x0e\x6b\xdb\x49\x9c\x5a\x11\x86\xf1\x4a\x64\xd5\x65\xeb\xbc\x25\x36\x06\xb2\xb0\xf7\xdd\x03\x51\x1e\xfc\x2a\x6e\x47\x49\xf8\x48\x44\x75\xf6\xfb\x34\x31\xb0\x96\x0d\x3e\x5d\xfd\x19\xb6\xcf\xf1\x91\xa9\x5e\xc0\x68\x51\x8c\xf9\xf2\x90\xa6\x6d\x8e\xb9\xa7\x0b\x43\x8b\x41\x71\x04\xcc\xd7\x5c\xdf\x1e\xee\xfb\x89\x16\xe1\xb7\xef\x63\xbf\x7a\xa6\x9c\xf9\x29\x49\xaa\xcf\x30\x18\xed\xc2\x70\x94\xe6\xf8\x15\x0d\x22\x36\xdd\x46\x46\x8f\xf9\x06\x48\x40\x3c\xf7\xa5\x67\x14\xf8\x1b\x04\xd5\x32\x07\x1e\x51\x2c\x7b\x8c\xf9\xa4\x2f\x0f\x49\xcf\xfe\x18\xc9\x09\x09\x09\x1d\x3a\x46\xd7\xc7\x5c\xf7\xf3\xcd\x32\x1b\xe4\xb1\x83\x10\x04\xf5\xb4\xe3\x78\xae\xda\x0b\xdd\xea\xb9\x9f\x77\x8c\x06\x6e\xa7\x20\x8e\xff\xb1\xfb\x41\xaf\x0e\xe7\xa1\x40\xd7\x23\x02\x5a\x1c\xf7\x4e\x72\xd1\xa6\xa9\x4d\x78\xf8\x77\x83\x86\x7f\xc7\x39\x1e\xe7\xe6\x9a\x5d\x33\x48\x3d\x71\x57\x2d\xad\xcf\xaf\x7d\x42\x40\xd6\xb1\x2b\xa6\x28\x49\xb4\x0c\x2f\x02\x3d\x75\x39\x8e\xea\x82\x8d\xca\x7f\x99\x78\x4b\x00\x7c\x86\x03\xe0\x33\x23\xcd\x72\x5b\x80\xa2\x44\x06\x41\xdd\xde\xd2\xa1\xd0\xa7\x28\x13\x97\xae\x5b\x23\xa8\x84\x62\xe9\x68\xfc\x1a\x58\x09\x3a\xd9\x60\x29\x31\x05\xb3\x61\x81\xc8\x1d\x26\x0f\x55\x37\x89\xed\x29\x78\xfb\xca\x20\x6e\x2f\x4b\x39\x5a\x23\x00\x62\x6d\xf8\x67\x70\x26\xca\xaf\x50\x43\xf5\xd8\xce\xcd\xaa\xa7\x10\x01\xc0\xea\x0c\x16\x9b\x9c\x10\x05\x7c\x91\xac\xed\xad\xee\x44\xf4\x78\x87\xd4\xa8\x7e\x10\x24\x75\x8e\x3f\x82\x4a\x29\x2a\x2c\x0f\xb9\xc2\x72\x6b\x38\x2a\xeb\x36\x3f\x85\xb2\x96\xfd\xaf\x5b\xe4\xf4\x90\xe0\xbb\x05\xf9\xc2\x93\xae\x5c\xe2\xee\xec\xbf\xfb\xec\xfa\xd6\x4e\xd9\xec\x6c\x33\xb7\xf6\x75\xd3\x8b\x83\x96\x28\x2e\x0e\xad\x03\x39\xae\x63\x77\xb6\xaf\xc7\x05\x44\x27\x14\xbe\x57\x19\x01\xd5\xb8\xdf\x9a\x80\x1c\x9a\x6a\xae\x76\x4d\x59\x85\xa4\x2e\xde\x43\xbb\x16\xa1\xb6\x67\x02\xdc\x47\x15\xca\xca\x0a\x68\xf1\x48\x5d\xea\x6b\x76\xd5\x26\xf9\xda\xce\x80\x72\x16\xd6\x1c\xd5\x36\x21\xea\x12\x81\x4b\xe9\xb0\x4e\x43\x99\x82\xff\x40\xf8\x99\xf5\xaf\xc2\xcb\xe9\x65\x3d\x04\x88\x5e\xa6\x74\x6e\x4e\xe2\xd2\xab\x51\x20\x21\x79\x33\xf0\x63\x0f\xf2\xb4\xd8\x19\x70\x71\x50\x69\x13\x6b\x2b\xb5\x02\x04\x32\x47\x58\xc9\x69\x3b\x5e\x95\xaf\x08\x1e\x9a\xf2\x4a\x1a\x5b\x1f\xf3\x4b\x33\xc0\x2a\xb8\xc7\x8c\x48\xfa\x12\xb1\x43\x5d\x1a\x29\xa8\x98\xa4\xd8\xed\xcc\x9f\xee\xa3\x86\xa7\x65\xbe\x85\x55\xcc\x42\x4e\xd8\x21\xc7\xc4\xd8\xcb\xbf\xb8\xad\x85\x0b\xbb\x4b\x9c\x61\x6f\xc3\x2c\x62\x92\xe3\x01\x81\x5c\x17\x4c\x52\x25\x18\x45\xa3\x31\x3d\x2d\xdf\xf1\x5d\x92\x59\xfa\x6e\xdd\x24\xd4\x01\xc7\x9f\x3b\x51\x65\xf5\xa8\x54\xff\x11\x8f\x5e\x6f\x46\xa4\x17\xf3\x60\x18\xc6\x9b\x8a\xbe\x6d\xc7\x8b\x95\x35\x00\x63\x59\xb5\x3e\x14\xf8\x17\xa6\x8d\x3f\x8e\x42\x60\xb3\x64\x92\x24\x5b\x35\x6b\x0d\x9a\x16\x01\x2c\x41\xf1\x28\xcf\x50\xf1\x08\xaa\xd3\x25\x70\x97\x2f\x8a\x0b\xb9\x42\xf9\xf1\x1d\x62\x12\x39\x56\x87\x08\x19\xa4\xb6\x33\x68\x07\xc6\x44\x04\x3c\xa7\x49\x83\xee\x74\x14\x3a\xb6\xab\x26\x49\x6c\x39\x11\xe8\x9c\x24\x4e\xd2\x46\x10\x4d\xfc\xde\x8f\x46\x28\x7a\x12\xb1\x71\x3e\x1d\xf3\x89\xe7\x19\x22\xdc\xff\xbe\x77\x20\xc9\x5a\x15\x58\x35\x02\x1e\x43\x68\x9b\xe5\x64\xac\x56\x70\x68\x6a\xa6\xd9\x4e\xac\x49\x07\xfd\xc9\x00\xb5\xbc\x0b\xd7\xea\x31\x98\xb3\xb3\xe2\xbe\x4f\x0c\x89\xfe\xe4\xef\x46\x8d\x7c\x8e\xb4\x58\xd3\x31\xda\x91\xef\x8f\xe5\x03\xfb\xe6\x9a\xcb\x89\x8d\xd3\x55\x87\x8f\x23\x8e\x1a\x9a\x51\xbb\x4c\x2c\x34\x2b\x71\xbb\x8c\x7b\xc5\x04\x07\xe2\x44\x9f\xf9\x87\xee\x59\x48\xed\xb4\x8e\x4c\xb8\xcc\xe2\xc0\x0d\xae\xe4\x4d\xd5\x67\xe4\xb8\x8e\xd0\xb1\x67\xf2\x64\x21\x93\x3c\x5c\x43\x69\x77\x7d\x72\x12\x6d\x35\xb0\xd3\xd3\xcd\xbe\xcd\xab\xc5\x8b\xf6\x3f\x11\x46\x36\x88\x48\xf2\xd9\xad\x63\x28\xaf\x36\x67\x67\x0f\x34\x82\x4a\xb9\xe0\x14\xb5\xdc\x51\x53\xdf\x19\xbc\x50\xbc\x50\xbc\x90\xbf\x30\x41\x03\x98\x77\x23\xd2\x39\x3b\x45\x90\xbd\x71\xf8\xb8\x46\x00\x0b\x36\x4e\x97\x76\xb8\x8f\x21\x6b\x7a\x17\x95\x4d\x78\xce\x46\x2b\xe8\x11\x5e\x40\x03\x43\xc0\xe9\x6e\xac\x0a\x6f\xe9\xf8\x48\xd3\xad\x2c\x76\x04\x14\xe2\xc7\xc3\x40\x92\x76\x93\xc5\x59\xaa\x7f\x98\xda\x94\x6e\xae\x92\x7d\x3d\x43\x83\xee\xbd\x5e\xd6\x01\x01\x53\x98\x7c\x10\x1e\x6f\x6d\xfe\xfa\x88\xc9\x04\xbe\xd3\xba\x44\x3a\xfc\x5d\x15\x80\x3b\xf8\x3f\xc3\x1f\xb0\x96\x26\xd6\xc3\xd6\x7f\x0a\x4d\x2a\x54\xe4\xfe\x09\xfa\x93\xf0\x3f\x3b\x5d\x3d\x05\x25\xcf\x8d\x11\x0a\x3c\xd3\x31\x32\xbf\x80\x6a\xfc\x47\x1c\x80\x5d\x67\x92\x85\xf3\xee\x57\xb5\x0e\x4d\x2c\x70\xbf\x88\x08\x77\x7f\x8b\x59\xdc\x8e\x44\x23\x72\x15\xd6\x47\xa4\x70\x51\x17\xc8\x5d\x5d\x20\x78\x44\x3f\x2e\xdb\xdd\x2a\xe5\x98\x9f\x12\x07\xfc\x13\xf7\x97\x72\xec\x8b\x06\x5d\x93\xf7\x16\x07\x09\xcc\x18\x12\xa8\x33\x94\x4c\x31\xc9\x62\xd1\xcb\xca\xae\xa8\xb7\xc1\x9c\x7f\xe8\xa2\x12\x39\x26\xa8\x73\x37\xeb\xd9\xc4\xa4\x1d\xa9\xd7\xa8\x5c\xae\x4b\x0a\x14\xee\x30\x5e\x59\x68\xb6\xf3\x41\x6f\x21\x6c\x54\x41\x1c\x8d\xa0\x8f\xea\x38\x2a\x75\xf8\x3d\x6e\x4b\x95\xcd\x8b\x59\x86\x0a\xe6\x91\x1a\xf7\xd4\x5c\x30\xc5\xb2\x85\x01\x42\x7e\x20\x75\x42\x39\xa1\x35\x89\x89\xa4\x9e\x4d\xcb\x62\x8f\x5b\x12\x5a\xc0\xac\x96\x3b\x1c\xf4\xee\x16\x0b\x65\x9f\x74\xcd\x2e\xac\x22\x2c\x2f\xb4\x24\x8f\x31\x18\xfa\x67\xee\x41\x23\xf9\xba\x13\x51\xea\x8c\x86\x26\x42\xd4\xf7\x48\xd6\xa4\xec\x66\x85\x7d\x34\xd4\xca\x76\xae\x93\x3a\xfb\x19\x90\x4c\xab\x32\x45\xf5\x0d\x48\xd3\x6e\x39\x37\x8d\x5a\xe6\x9e\xf5\xea\x8a\x11\xdd\x3f\xea\x36\x38\x00\x1d\x6f\x21\x81\x62\xe5\x3c\x6c\xf0\x9d\x88\x4f\xfd\x34\x40\xb5\x09\xd1\x80\x7a\x04\x93\x9d\x40\x51\xdd\x1a\x8b\x67\x66\x67\x9b\x89\x19\x2c\x75\xdd\xe3\x15\xa1\x6a\x62\xf1\x18\xa7\x45\xaf\xec\xb4\x49\x97\x1b\xa4\x14\x76\x81\x02\x93\x0b\xa4\x39\x50\xf4\x4c\x92\xec\x22\x58\xfc\xbf\x73\x7f\xa8\xc4\x98\x34\x4d\x71\x89\x22\xa3\x75\x6c\x38\xe5\x52\xa3\xf6\xae\x60\xbd\x95\xc1\x9e\xc0\x18\x4b\x71\x83\x51\xf0\xee\xc1\x28\x22\xfe\x59\x5a\x1e\xa5\xcd\x7b\xb6\x13\x2b\xd0\x06\x7d\x9f\xef\xb9\x30\x42\x8e\xc7\xac\xb0\x23\xe8\x2f\xbb\x71\x1a\x2c\x98\x68\x99\x12\xaa\xf9\x1c\x4d\xb2\xbb\xba\x9b\xc9\x3b\xc5\x5e\xf7\xa2\x3d\x6b\x55\xa0\xed\x73\x2f\xda\xf7\x4f\x0e\x4d\x89\xe5\x3a\x39\x24\xf5\x32\xc9\x31\xd0\x74\x92\xc9\x39\x84\x70\xac\xd6\x0b\x09\x5d\xa4\x42\x37\x51\xf7\x44\xe8\xbe\x39\xa6\x9a\xac\xde\xc4\x03\x0e\x27\xc3\x58\x27\x48\x05\x59\xfd\xc2\xb3\xee\x84\xea\xd8\x24\x91\xaa\xb4\x4d\x69\x92\x4c\xc8\xb6\x3c\x7b\xe9\xfc\x54\x60\x2f\xfd\x24\x8d\xac\xa2\x6b\x3b\x9d\x2d\x14\xc9\x98\x86\x67\x52\x63\xb8\xb6\xeb\x2c\x25\x6c\x02\xe4\x03\x0f\x05\x24\x1b\xa8\x65\xca\xa4\x36\x16\xf9\x39\x4f\xb5\x9d\xdb\x76\x3e\x88\x3d\x40\x10\xcf\x69\xa7\xfb\x35\xb8\x91\xeb\x78\xe4\xb0\xf4\x77\x78\x45\x2d\x8a\xf9\xd6\x82\x48\x40\x1c\x9c\xa1\x4a\x9d\x63\xab\xac\x52\xec\x86\xa7\x0b\x91\xae\xa9\x32\xe7\x85\x80\xd6\x2e\x2e\xc6\xed\xd8\xa6\x65\xb2\xd6\x60\x9a\x23\x44\x71\xca\x79\x44\xe3\x6a\x26\x6f\x67\x85\x2d\x30\xae\xa6\x3a\x2d\x8d\xe7\x9e\xd3\xe3\xb1\xba\xc6\xbe\xb9\x66\xa2\xb3\xef\x78\xb1\x37\x81\xb7\xf5\xad\xa5\x2f\xbe\x22\x45\x91\x06\x11\xa0\x38\x76\xd2\x64\x0d\x98\x37\xac\xe7\xfb\x9c\x9d\x5c\x10\x78\x81\x9c\x31\x27\xec\x7d\xe6\x6e\x34\x7d\x91\xf7\xf3\xa2\x26\x77\x68\x5d\x4d\xb6\x42\x24\x77\x71\xc8\x9c\xc0\x6b\x0b\x59\x67\x6d\x92\x8a\x14\x17\x88\x6d\xe8\x03\xd2\x78\xf8\x20\x0a\x58\xcd\x0b\x54\x88\x5e\x30\x2a\x0a\xc6\x41\x37\x6e\xf4\x01\x79\xc9\x0b\x6e\xf6\x00\xa6\xe8\x1e\xe1\xd8\x40\xd5\xe5\x69\x31\x3d\x1f\xbf\x67\xe4\xbc\x46\x2b\x63\xdf\x6f\xff\xce\x44\x08\xdc\xbf\x1e\x85\x21\xb2\x9d\xeb\x44\xfb\xb3\xa3\xc5\xa1\x47\x62\xf3\x47\xe0\x77\x60\xd3\x6f\x62\x91\xc8\x90\x12\x7c\x0a\x1c\x0c\x98\x75\x15\x0f\xee\x2c\xa1\x54\x3a\x86\x54\xfd\x81\x70\x9e\xb6\xdd\x42\x03\xb9\xd1\x1a\x9d\xe3\xda\xa7\x50\x43\x99\x93\x56\xe2\x84\xd0\x66\x36\x65\x69\x7b\xfd\x52\x96\xb0\xe7\x57\xf6\x9a\x39\x97\x47\xa9\xb6\x6d\xba\xb7\xfa\x37\xc1\x0c\x47\xc4\xc9\x7d\x02\xeb\x18\xb0\x8b\x8f\x89\x2b\xf8\x3f\xb8\xcb\x50\xdb\xde\xf0\x0a\x5e\x17\x9c\xef\x55\x3a\x6a\xc2\x1c\x7d\xcc\xb4\x26\x7f\x1d\x51\x61\xf0\x12\x75\x82\x16\xe3\x74\xd9\x26\x45\x69\x63\x01\x2d\xe0\x25\x88\xde\x8c\x9c\x8c\x15\xc6\xf6\xcd\x11\xe4\x11\x9f\x53\x36\x3a\xf7\x80\x94\xa6\xae\xae\xa0\xd6\x4f\x06\xbd\x9e\xf5\xc9\xa4\xac\xa9\x21\xf9\xf6\x0b\x14\x04\xe6\x18\x67\xc0\xdf\x7a\x26\x0a\x0f\x1b\x66\x26\xf4\x8e\xcd\xe3\x15\x97\x45\xbb\x95\x05\xff\x28\x37\xa2\x88\x5a\xa2\x45\xbf\x5e\x4b\x60\x63\x73\x34\x0c\x66\x02\xf6\xbf\xba\x3b\xe5\x68\x0e\xb3\x21\x75\x73\x9c\xcd\x65\xbb\x96\xda\x22\x36\xbe\x05\x0a\xef\x79\x87\x0b\xa0\x77\x42\x0b\xcb\x9a\xa5\xca\x87\xba\x15\x29\xfd\x89\x28\x08\x2d\x5c\x1c\x59\x33\x65\x19\xbb\xb5\xe5\x51\x97\x41\xb8\x61\x9c\x68\x61\x7a\xa6\xd9\xee\x66\xed\x2c\x31\x02\x2e\x47\x5f\x0e\x9c\xc6\x72\x1c\x94\x10\x6d\x3c\x32\x01\xb3\x41\x06\x6e\xa3\x96\xf2\x65\xc9\x94\x99\xde\xa1\xa7\x9c\x0b\xa4\x3f\x17\x82\x76\x61\x67\x25\x2e\x14\xb6\xec\xb1\x99\xd5\x03\x55\x58\x0f\x6f\xef\x6c\x90\x3f\x4d\x58\x7a\x70\x45\xe3\x3d\x6f\x46\x84\x1c\x3b\x03\xb0\x97\x82\x81\xdc\x9a\xc7\x2f\x83\xbd\xc7\x13\xb5\x57\x3b\x09\x36\xe0\xdb\xae\x5d\x80\x64\xe8\x2a\xbc\x95\x72\xda\x8c\x6c\xb1\x99\x83\x92\x4c\x49\x9f\x1f\x86\x76\xc7\x7a\xf5\x44\x46\x86\x79\x89\x7c\x58\xb3\x1a\xa8\x78\xfa\xbe\xbd\x7b\x3a\x7a\x29\xc1\x2a\xec\x6e\x05\x92\x84\x73\xe4\xd7\x8a\xae\x59\xb6\x45\xdf\x9a\xdc\xba\x34\x06\xde\x09\x25\x20\x39\x8e\xbc\x96\x7e\x5c\x36\x88\x75\x04\x43\x46\x4a\x36\xe8\x47\x9f\x2b\x87\xbd\x46\x7d\x9e\xeb\xd4\xef\xba\x5e\xd7\xb5\x3c\xd0\x5c\x1c\x94\x83\xdc\x8f\x06\xa2\x2b\xfd\xb7\xdc\xa2\x1e\xef\x76\xbe\x32\x3f\xd5\xb4\xaf\xb7\xe3\x10\x57\xe0\xc1\xfe\xd2\xfd\x9a\xd2\x2d\x85\xba\xfe\x49\xf8\x5b\xe9\x5d\x2f\xe5\xb6\x28\x9c\x76\xc2\xce\xc0\xb7\x75\x14\xe1\xb9\x76\xe6\x1a\x81\x93\x1b\x9b\x59\x27\xa2\xc9\xde\x9f\x8d\x42\x9e\x70\x8c\x1a\xca\x71\xba\x18\xa7\x71\x19\xef\x18\xb1\x6d\xb8\xbd\x91\x19\x70\xc4\xc9\xf7\x48\x17\x62\x63\x18\xc4\x9a\x37\x7c\x0a\x5e\x58\x93\xe8\x08\xb3\x24\x39\x51\x80\x03\xfe\x8c\xe9\x85\x7e\x3e\x86\xbc\x9d\x9d\x1d\x19\x14\x82\x51\x53\x6e\x5a\x26\xaa\xf5\x3f\x97\xba\x46\xfb\x0e\xe6\x5a\xbc\xc3\x58\xb6\x5b\x51\xe3\x77\xbf\xe4\x5b\xab\xd5\x32\x50\xe1\x1c\xf7\x75\x8a\xc1\x24\xb0\xb9\x9f\xa4\x87\xd9\x41\x7b\xe9\x03\xe9\xb3\xc9\x19\x35\x1f\x4c\xbb\x6d\xfb\x65\x31\x11\x82\xe5\x8f\x9c\x89\x52\x69\xdd\xd0\x5e\xfe\x90\x52\xb7\x05\x93\xa7\xa8\x67\xf8\x68\x78\x76\x56\x8f\x6b\xd5\x02\x4a\xb3\xb6\x45\xcf\xee\x36\xe9\xd9\xdd\xa6\xb6\x64\xd1\xee\xda\xce\x20\xb1\x9d\xdd\xee\xf1\x69\x31\x2d\x28\x73\xcb\x03\x42\x41\x4f\xf8\x11\x80\x3e\xd9\xde\x62\x60\xca\xf6\x75\x12\xa8\x41\x85\x04\xe1\x23\x06\xf9\xb1\x16\x37\xc6\xc2\xc3\xd9\xd9\xe6\x52\x0a\xa6\x78\x95\x06\x24\x9a\x8a\x33\x43\xa5\xd6\xae\xb2\xe8\xb4\xcc\xf2\xd8\x0a\x59\x31\xde\xd8\xb6\x75\xd2\x47\xdc\xed\xa2\x39\x2f\x07\x55\x7d\x0d\xfa\xdb\x7f\x31\x96\x61\x4e\x4f\x57\xef\x4e\x1a\x13\x0a\x26\xa4\xf6\xf9\x38\x0f\x2c\x74\xf7\xe3\x32\x36\xbe\x42\x87\xa7\x79\x8a\x66\x8c\x4e\x51\x49\xab\xf3\x5a\x6c\x1a\x61\x14\xe0\xdf\x46\xc4\xb1\xf3\x6f\x47\x9c\x51\xbb\x03\x3a\x5a\xed\x09\x8f\x70\xe9\x6c\xb5\x10\x3e\x67\xc9\x56\xc5\x13\x20\x98\x12\x50\xa9\x9c\xd4\x0d\xcb\xa6\xd6\x76\x26\x1b\x2f\xa9\x60\xce\xdd\x28\x08\x4e\xdf\x44\x72\xae\x94\xdb\x0d\xe2\x41\x7f\x9a\xf2\x8a\xc1\x72\xcf\xbe\x16\x9b\x14\xe6\xd2\x2b\x9b\x84\xc6\xf8\xe5\x1a\x2a\x9e\x03\xc0\xc7\x2f\xda\x3c\xd7\x61\x5d\x44\x7c\xdf\x86\xc9\x91\x93\xc0\x49\x9d\xf5\x4c\x99\xa9\x9b\x53\xa8\x56\xc0\x26\x39\x35\x61\xaf\x32\xd0\xef\xc6\x45\xe9\x9a\x7f\x1d\x27\xcd\x0c\xa7\x04\x20\xb1\x36\x99\xdc\x05\x8a\xed\x84\xb7\x42\xc0\xfa\x01\x51\xb6\x02\x33\x88\x72\xd4\x1f\x44\x23\xf0\x80\xad\x6f\x60\x7e\xaa\x4a\x83\x96\x6d\xb0\xd1\x88\x30\xfe\xaf\x28\x94\x02\x51\xae\xd0\x7a\x55\x98\xf0\x2c\x92\x6c\x55\x58\x06\x55\x0d\x25\xd4\x38\x2e\x8f\x54\x06\xdb\x71\xb2\x07\x1b\x0c\xa5\x20\xa0\x45\xb1\xeb\xef\x0f\x49\x8c\x50\x30\x7d\x88\xc8\xaf\x46\xc4\xd0\x75\x11\x65\x1d\xcf\xe5\x5c\xe5\x6c\xfe\x5f\x02\xeb\xb5\x30\x9f\xa9\x4a\xf6\xe3\x64\xae\x72\x4d\xdd\x94\x2c\x36\x80\x6a\xbf\x1d\x11\x78\x92\x96\x49\x6e\x17\x6d\x6e\xd3\x36\x36\xaa\x0e\x02\x9e\x24\xb5\xa4\xcb\xb8\x46\xf9\x07\xae\x0b\x8d\x2f\xf7\xd9\xd9\x66\x9e\x65\xbd\x1e\x4d\x03\x01\x57\x2b\x14\xfc\xb0\xc9\xb2\xf8\xd1\x85\xfb\xe3\x9a\x32\xfe\x81\xa6\x35\x45\x6c\xf3\x49\x1a\x7d\xbc\x84\x90\x46\x45\x06\x42\x7a\xb1\x81\x20\x08\xfd\xb1\x7b\x14\x7e\xf5\xe2\xea\x79\x84\x65\x26\xd3\x5e\x78\x8a\xa2\x73\xa2\x19\x62\x1d\x17\x93\x69\x7f\x65\x10\x7b\x98\x15\xb6\x1e\x9c\xa4\x1c\xd3\xa8\x5e\x91\xad\xda\x32\x6b\x30\x69\xaf\x7b\x6a\x4a\x98\xbf\xb5\x96\x71\x68\x6a\x54\xf3\x6b\x82\xea\x36\x1b\xc4\xfc\xb0\x9d\x58\xfe\x4e\x11\x71\x52\x61\x53\xe1\x16\x8e\x47\xe4\x8f\x2f\xb9\x58\x4f\xad\x62\x4d\x83\x64\x81\x1b\x24\x75\x5a\x33\x21\xaf\x2b\x06\xed\xb6\xb5\x8e\x7d\xc4\x0b\x9c\x8b\x76\x33\x3d\x50\x3f\x65\xe8\x10\x1b\xf2\x57\x23\x06\xb3\xb0\x66\xa7\xfb\x43\xe5\x22\x6e\xb0\x1a\x61\xf5\x94\xe0\x5c\xdf\x46\x74\x29\x27\x34\x68\xf0\x01\xb6\x8c\x9c\x50\xa7\x32\x37\xed\x18\xf3\x5c\x87\xa6\x3c\x5d\x47\xc3\x73\xbb\x9f\x1c\x6b\xdc\x84\x7e\x48\x3b\xeb\xd9\x89\xd0\x80\x3d\x16\x91\xe2\x13\x88\x90\xa5\xa1\xf8\x2d\x9f\xb2\x2c\x24\x26\x5d\xb6\x25\x7a\x53\xf8\x58\xa3\x15\x26\xc9\xc0\xcb\xa0\x20\x40\xb6\x0d\x2b\x36\x77\xcc\xd9\x1e\x3b\xfe\x85\xdf\xf3\x1e\xa8\x11\x64\x49\x38\xed\xfc\x1e\xf6\x0b\x96\xcf\x55\xac\x70\xa1\x2b\xc3\x0e\xc4\xe7\x37\x59\xd0\xe5\x03\xc7\xc6\x82\x2a\xf8\x47\x84\x0b\x03\xc8\x46\x61\x2a\xce\xc6\x48\xa3\x3e\x62\x84\xc4\x65\x6c\x30\xbc\xcd\xdd\x98\x7f\xc4\x70\xc6\x9b\xb0\x38\xf0\x31\xc7\x22\xa2\xd6\x3a\xeb\x12\x70\x71\xdb\x14\xe8\x5e\x74\xcf\x42\xab\xac\x24\x3e\xb6\xc7\x65\x13\x28\x56\xbe\xe3\xb0\x05\xb8\xdf\x1d\x2d\x4f\xef\x6c\x93\xc4\x01\xc1\xd0\x82\x7a\x02\x64\x23\x7e\x8c\x30\x88\xb5\xec\x6e\x85\xc8\x5f\x54\x35\x74\x5c\x33\x48\x14\x5f\x1c\x01\x79\x07\x8a\x09\xbb\x64\x16\xd6\x4a\x51\x8b\x53\x34\x19\xbd\xcb\x28\x14\xb2\x4e\xf9\xac\x22\x4e\x3b\x83\x36\x56\x0d\x8a\x3a\x3b\x51\x2b\xe1\x3e\x93\x92\x4d\x68\xba\xf2\xda\x0b\x2b\x08\x36\x15\xbe\x14\x86\x08\x2e\x91\xfd\xe8\x9b\xdc\xa6\xe5\x8e\x11\x2a\xf9\x50\x5e\x16\x18\x1e\x12\xa7\xb7\x86\xac\xb4\x18\x8d\x30\x55\x79\x98\xa2\xed\x99\x38\x75\x84\xff\xaf\xe2\x95\xfc\xf4\xd3\x2d\x0a\x9d\xaf\xb9\x7b\xc5\xc4\xd0\x1d\x7c\x39\x01\xfe\xf6\x87\x21\x72\x1f\x2b\x5d\xf2\xdb\xa0\x6f\x72\xd3\xc9\x5e\x9f\x20\x24\x04\x34\x86\x90\x93\xde\x22\x51\x7a\xf6\xa5\xfd\x3c\x6e\xdb\xe2\xb1\x6a\xbd\xa0\xe0\xfa\x78\x8b\x88\xec\xff\x4f\x94\x7e\x94\x57\xc7\xad\x77\x81\xa1\xc1\xf7\x61\x59\x0b\xdc\x4c\x83\xc6\x50\x97\x7b\x9b\x54\x01\x3e\x74\xb9\x28\x3e\xdd\x68\x85\x6e\x2b\x26\x7f\x3d\x77\x5f\xf5\xa8\xe1\xc7\xee\x60\x85\xe2\x9d\x6e\x1f\x23\x46\x9d\x9d\x6d\x2e\x26\x59\x16\x80\xb0\x08\xbb\x0f\x0f\x43\xef\xe4\x70\x0d\x1f\xfa\x8b\x4e\xc6\x1e\xd6\x42\x3b\xd6\x61\xd4\x7e\xc3\x79\x30\x9d\x84\x0a\x35\x9f\xd4\xc6\x65\xd7\xc1\x69\xa6\x7c\x29\x80\x64\x65\x20\x63\x20\xc7\xa4\x38\x3c\xae\x50\xf4\xe5\x2f\x37\x4d\xbe\x80\x1c\x58\x4b\xf4\x44\xc9\x38\x8e\x10\x78\x69\xa6\x69\xd2\x34\x1b\x38\x6a\x94\xf9\x29\x19\x2b\x3a\xeb\x1e\xa6\x1c\x7b\xe9\x1c\x65\xb0\x8d\x85\x02\xcb\x93\x07\x86\x0e\x4a\x6d\xdb\xa7\x9d\x15\x2f\x8c\x08\x96\x09\xe2\x51\x4e\x08\x54\xf5\xc2\x4b\x2f\x34\x02\x54\x47\xc2\x56\x39\xa1\x3f\x7b\xf1\x4b\x07\x27\xc2\xb6\xbd\x89\x0b\x40\x1a\x78\x78\x84\xcb\xf7\x02\xcd\x56\x2f\xc4\x2a\x36\x07\x23\xf1\x33\x26\x53\xfb\x19\x4d\x27\xac\x64\xa5\xdd\xe5\x56\x1c\x23\x24\x34\x12\x70\x1b\x00\x7b\xff\x9e\x9b\xa4\xf2\x74\xd7\xbe\xec\xf0\x0d\x4c\x7d\xc0\x1d\xed\x80\x4d\x55\x1e\x06\x76\x91\x79\x8c\x31\x7f\x3c\xba\xef\x8d\x34\x9f\xdc\x92\x53\xc9\xd2\xa7\x89\x4c\x77\x10\x27\x89\x89\x73\x3b\x49\xcd\x2e\x29\xf9\x8d\x18\x3f\x94\x72\x31\x5e\xa6\xf5\x89\x50\x25\x28\x92\xc1\xd2\x52\x5c\x74\x1d\x2a\x44\x5a\x9a\xf8\x9c\x8c\xc9\x44\xd4\x72\x47\xf6\xa4\x0f\xa3\x66\x1a\x8f\xb8\xa5\xf0\x5d\x3f\x70\x9f\x90\xe3\x1a\xd2\xf7\x66\x51\x5a\xd3\x71\x75\x73\xdf\xdd\xba\x4c\x88\x8f\xf1\xe1\x9e\xcf\x37\x5f\xcb\x06\x79\xb5\xf8\x7c\x83\xdc\x2b\x0c\x84\xa0\x95\xb8\x99\x96\xed\x88\x50\xcd\x19\xae\xe9\x8c\x74\xbd\x93\xb8\xdf\xb7\x9d\x49\x72\x38\x23\x05\x12\x7c\xbf\xea\x97\x06\xa0\xc7\xa5\x21\xf5\x2b\xfb\x49\x5c\xee\x0c\x3c\x06\x08\x10\x80\xce\xdd\xb6\x4e\x33\xcc\x0f\x91\x4e\xc9\x09\x51\x7c\x62\x1a\x5b\x81\xa4\xa1\x7b\x65\x1c\x4d\xc5\x64\xb5\x1b\x89\x5b\xc4\x13\x8d\x38\x73\xe2\xf5\x88\xf7\xcd\xe9\x31\x49\xbd\x17\x71\xb2\x62\xf3\x35\x4a\x67\x8e\x13\x95\xd4\xf1\xe8\x09\x2e\x33\x64\x59\xb2\x33\x60\x05\x77\xac\x07\xbc\x13\x66\x6f\x14\xba\x43\x00\x16\x51\x3d\x57\x96\x4a\xec\x30\x65\x4a\x1a\x07\xd0\x16\xdd\x6c\x75\x82\x52\xd3\x3b\x23\x0a\x89\xee\x51\xe9\xa0\x56\x0d\x30\x06\x4c\x5e\x06\xc5\x19\x3c\xad\xab\x6e\xe3\x01\xa8\xf7\x26\xcf\x01\xdd\x1c\x2b\xe4\x4e\x4f\x37\x4d\x6e\x7a\x71\x87\xa8\x9a\xdf\x72\x2f\x41\x8e\x89\x28\x1c\xbc\xce\xb1\xaa\xb0\xc0\x69\x7e\xcb\xc5\x57\x72\x3c\xf6\xf5\xcf\x3d\xd7\x6c\x9b\xc4\xe3\x47\x95\xbe\x99\x80\x84\xb7\x3d\x6f\x43\x36\x28\x97\x08\x63\xeb\x67\xd3\xe8\xfe\xa9\xcf\xd4\xce\xd2\x15\xeb\x46\xd7\x77\xfa\xa1\x9c\xe8\x1d\x77\x31\x78\x8a\xe7\x87\xa4\x01\xb2\x45\xf8\xcc\x3d\x12\xf9\x08\x89\x2f\x9d\x8f\x1e\x25\x24\x1a\x7b\x8c\x9b\xa4\x4e\x72\xb3\x5e\x35\xd4\xcd\x43\x84\x82\x5e\x1d\x01\x5f\x40\xfe\x26\x36\x2e\x06\xb9\xc5\xe0\xcd\x7e\xd9\xe1\x77\x48\x62\x09\x1c\x08\xb0\xa9\xc7\xeb\xc8\x30\x21\x68\x06\x0e\xe5\xc0\x0f\x49\x25\x90\x71\x54\xd8\xa1\xa9\xe6\xa2\xb5\x89\x76\x70\xf1\xfc\x6f\xb8\x98\x58\xf0\xe5\x5c\x65\xb8\x3e\x36\x4e\x72\x68\xaa\xd9\xb1\x8b\xd6\xa0\xfa\x84\x92\x3c\x3c\xb9\x1c\xf3\xc6\x29\x4d\xda\x29\x76\x54\x96\x56\xf2\x5e\xb7\x2f\x51\x1e\xbb\xe0\x2e\x13\x9d\xab\x13\xc4\x08\x75\x0d\xe1\x8e\xfc\xd1\xd8\xef\xcf\x1c\x6c\x26\x71\xba\xac\x4f\x18\xbb\xf5\x0e\x01\x2c\xee\x78\xd7\xd6\xee\xc6\x42\x2e\x8d\x30\xfc\x28\x76\x81\x9c\xd4\xf1\x18\x74\x07\xc5\xb2\xcd\x11\xa1\xa2\x17\x08\xe4\xbc\x1c\x8f\x6d\x5b\xa7\x7b\xd8\x03\x1a\x0d\x69\xc3\xf1\xe1\xd8\x74\x06\xd2\xd8\x3b\xc4\x09\x63\x06\x65\xf6\xa8\xfb\x90\x8c\x92\x0c\x89\xf8\xe2\xb4\xcb\x59\x11\xa2\x63\x00\x01\xb9\xe8\xcf\x49\xc0\x60\x03\xde\x16\xb3\xca\x17\x86\x41\xb0\xe7\x8d\x88\xab\x2e\x17\x09\xda\xf9\x00\xbe\x57\x3e\x82\x41\x2a\x84\xd6\x7f\x03\x20\x32\x90\xdc\x27\x68\x9e\xcc\x16\x7d\x11\x8d\x42\x56\x22\x34\x98\x72\x42\x5a\x4b\x7d\xe3\x60\xab\x12\x45\xe0\x8b\xbe\x8b\x87\x2d\x27\x14\xa3\xa4\x46\x28\x54\x95\x1a\x9c\x50\x13\xb0\x9f\xc2\x08\x3d\x0c\x40\x8e\x8b\xd1\x48\xdc\x16\x6a\x91\x27\xd9\xd9\x24\xa6\xe8\x4e\x90\x02\xf8\x09\xc2\xc0\xfc\xab\x28\xcc\x2f\x1d\x8f\x9e\xa2\xba\xe0\x8a\x4d\xb2\xbe\xcd\x1d\xbc\x97\x26\xf1\x0e\x78\xce\x48\x1a\x48\x4d\xe2\x1e\x70\xca\x48\x59\xd0\xd8\x90\xe3\x7a\x2c\x65\x6a\x07\x2b\x36\x9f\x20\xf0\x13\x00\x98\x3a\xc6\x55\xed\x07\x4d\x12\x89\x8e\xce\x26\xf1\x0a\xb4\x07\x02\xa5\xc4\x69\x12\xe9\x3d\x4d\xa9\x04\xfa\xa2\xd8\x0e\x4a\x74\xe3\x1e\x91\x32\xdd\x50\x85\x20\xeb\xd8\x3c\x6e\x2f\x3b\xa7\x07\x6c\xc7\x87\x0c\xf4\xf8\xd0\xa7\x35\xb6\xd7\xcf\x56\xab\xad\x50\xbd\x71\x2f\xa0\x57\xbd\x36\x39\xa9\xa3\xd2\x5c\x89\x4b\x91\x71\xc0\x92\x3d\x4c\xa5\x94\xc3\x04\x2f\xc8\xd2\xb6\x7d\xdc\x2d\x3a\xbc\x9c\x13\x2e\x6f\x16\xa2\x45\x42\x09\xbc\xc9\x48\x36\x59\xb3\x4a\x16\xeb\xae\xc5\xe3\x86\x5e\x51\x91\xa5\xb7\x89\xe5\xed\x0f\xf0\x1e\x25\x4f\x94\x9d\x81\x33\x74\x6a\x80\x24\xfa\x9e\x0b\x31\x50\x81\x39\x85\xac\x5f\x7e\xc4\x39\x12\x8c\xe6\xdc\xa6\x46\x48\x9c\x24\xd9\x52\xdc\x46\xb0\xe5\x1d\xa0\xcf\x20\xbf\x15\x29\x5a\xc6\xa9\xbb\xc6\x59\xaa\xc2\x36\x1a\x52\xbb\x57\xc5\x02\xa8\xc8\xda\xee\xd3\xb4\xf1\x62\x6e\xd3\x76\x77\x22\xa0\x27\x6e\x51\x48\x73\x8a\xec\xed\xa9\xb1\xd6\xd2\xa1\xa9\x99\x66\x69\xd3\x52\x94\xc8\x1d\xa5\x94\x4e\x45\x56\xdf\xa1\x43\x91\x21\x3b\x2e\xe3\xdc\x76\x76\x06\x0c\x86\xc0\xc2\xd4\xa0\x87\x49\xdf\x0b\x4c\x60\xf0\x17\x88\xd9\x44\xa6\xd8\x85\xfc\xca\x87\x5f\x47\x2d\x5c\xc4\xb6\x17\xdb\xd4\x68\x4b\x51\x69\xbb\xa8\x98\x75\x32\x0a\x01\x9e\x9b\xef\x01\xac\xd6\x93\x27\x54\xcf\x5b\x6a\xc8\xee\xb1\x61\xd1\xa2\x3b\x24\xc7\x9c\x40\x9d\x1d\x7b\x34\xaf\xcc\x4f\x31\x6b\x1a\xf6\x0c\xec\xe3\x61\xaa\xa7\x1f\xae\x93\xa2\xef\xd8\xbe\xc9\xcb\xd1\xfa\xe7\x06\x9e\x87\x9c\x44\xcc\x3a\x96\xd8\xd7\x77\x93\xd8\x05\xb2\x70\x44\x1b\xc8\x9b\xdc\x13\xfd\xf3\x7f\xd2\x0a\xf3\xa3\x52\xf2\x52\x38\x43\xa0\x1b\x12\x96\x61\x2d\x98\x11\x62\xf6\xfe\x96\xca\x5a\xf2\x58\xb5\xfc\x61\xfd\xa5\x23\xed\x9d\x84\x7f\x92\x5a\xe8\xf2\x93\xbe\x5e\x4f\x6d\xe7\x7a\x68\x7d\xbd\xe5\x16\x19\x76\xd5\x47\xf0\xc9\x78\x3a\x0f\x41\xd8\x80\x22\x0b\x86\xad\x71\xc9\x32\x8c\xe6\x47\x57\xab\xcb\x54\x19\x26\xae\xcb\x90\x10\xf7\x82\x4d\x77\x91\x80\xc8\x6d\x38\x00\xad\x0f\xb8\x0f\xa1\xb4\xf6\x03\x49\x5f\xe5\xcc\x6d\x06\xf8\x06\x10\xee\xcb\xe7\x69\xf4\xe1\x64\x1d\x39\xe0\xa2\x05\x9d\xaa\x64\x4a\x08\x92\xbe\x46\x01\xd3\xd7\x08\x48\xd5\x8b\x93\x24\xce\xd2\x5d\xc4\xfc\x87\xb1\x68\x05\xfd\x34\xe6\xa8\x46\x5a\xd9\x0d\xcf\x1b\x3b\x2d\xc3\xd0\xbf\xf5\xe9\x56\x80\x29\x3f\xe2\x30\xa8\x8a\xe4\x56\x23\x01\xee\xae\x24\x2e\xba\x34\x15\x7d\x97\x58\xed\xef\x8e\x05\xfc\x0e\x41\x99\xc7\x2b\x46\xb9\x91\xb4\xe0\xd5\x20\x5d\x96\xfa\x0f\x0d\x42\xb9\x1b\xee\xf4\x3b\xc3\xe0\x5a\xbf\x33\x42\x49\x92\x1b\xb9\x75\xc5\x7f\xe0\x0d\x28\xfd\x23\x67\x7c\x0d\xcf\xfc\xb2\xbd\x45\x7b\xea\xbc\x7b\x10\x3a\x8f\x57\xbd\x32\x58\xdc\xd3\x75\x84\xe0\x0b\xa6\x23\x69\x2f\x16\xfd\x37\x49\xc3\xe2\x9b\xde\x2f\xb9\x51\x21\xaf\xc5\x81\x02\x99\x30\x32\x29\x5f\x1b\xcd\x52\x1c\xaf\x13\xb4\x59\xc8\xad\x59\x96\xce\x90\x62\x4f\xaa\x1b\x20\xf8\xd1\xab\xfe\x06\x82\x02\x65\xcf\x96\x79\xd6\xcf\x92\xb8\x44\x0f\x51\x8b\x1a\xc7\x91\xc8\xe8\x74\x7c\x4d\xef\x72\xc1\x1a\x0c\xc1\xf8\x82\xdc\xdc\xdc\x28\xb5\x10\x3c\xf5\xcd\x71\xf0\xce\x74\x33\xb7\x6d\x87\xa6\x03\xaf\x9b\xd2\xd6\x54\x8f\x46\x8e\xc7\x22\x7c\x37\xef\x56\x0e\xf2\x54\x98\x5f\x45\xf6\x61\x44\x0b\xdf\xdd\x30\x8c\xee\x03\x9a\x92\x4d\xbf\x1a\xe3\xd6\x90\x0a\x9c\x85\x97\x95\x93\xb1\x1f\x9a\x39\xd8\xec\x0f\xf2\x7e\x56\xc8\xa4\x38\xca\x62\x77\xdc\xed\xc9\x71\x5d\x50\x64\xe2\x3c\x89\x53\xed\x91\x7a\x18\xe6\xdc\x9c\x87\x61\x2a\x95\x6a\xd1\x8d\xfb\x0b\x83\x38\xa9\x6e\x3f\xc8\x61\xcc\x7f\xa6\x15\xaa\x7e\x10\x2e\xd4\x9e\x68\x44\xf8\xf9\xc7\xd6\xbd\x1b\xb6\x79\x31\x30\x9d\x2d\x1a\x29\x50\x31\x52\x03\x5b\x33\xf4\x58\x76\xf3\x6c\xb0\xd4\x9d\x08\x93\xc6\xa7\x08\x7d\xf9\x96\x33\xa8\x1a\x0c\x85\x8a\xe5\x42\x3e\x28\xba\xea\x25\xb0\x0a\x31\x59\x27\xc7\xf5\xfb\xb2\x6d\x73\xe5\x3a\x51\xdc\x7e\xf5\x19\x05\xf4\x7b\xc6\x6c\x87\x01\x99\xc4\xe2\x17\xdd\x3e\x14\xb2\x61\xf2\xa1\x4a\xa3\xd3\x2a\xc4\x4d\xb1\x67\xfd\x49\x5f\xb5\x6f\xdb\xb4\x8a\x0c\x26\x82\xf5\xfa\x15\xf7\x40\x9d\xa9\xbe\xfb\xcc\x3a\xb5\xb4\xce\x73\x4d\x7e\xb0\x90\xc4\xed\x47\x1b\x7e\x94\xbb\xc4\xc2\x17\xae\x1e\x04\x03\x8a\x4b\x09\xcf\x09\xc2\x19\xca\xf2\xe9\xae\x55\xb4\x3e\x87\xfe\x47\xbf\xfa\x6f\x22\xd2\xe2\xbd\x8c\x7c\x04\x15\xf8\xe3\xc3\x20\x0e\xf1\x0f\xb8\x23\x7c\xfc\xc7\x78\xd7\xc8\x2f\xfe\xb2\x6e\x13\x14\x83\x7e\x3f\xcb\x4b\x77\x9f\x98\xf7\xfb\x3e\xa9\x28\x80\xf8\x47\x61\x1b\x4f\x10\x43\x75\x69\xca\x6c\x47\xb8\xb6\x7f\x11\x11\xcd\xcb\x25\x42\xa7\x22\x9a\x82\x53\xfe\x7b\xb7\x1a\xe4\x98\xe6\xf3\x7a\xd9\x8a\x28\x82\x04\xbf\x4a\x6d\xe8\xb7\xc6\xae\x7b\x7a\xba\xb9\x38\xc8\xcb\xae\xcd\x77\x3a\x8f\xe2\xe7\x33\x2a\xff\x0b\xd3\x0e\x70\x37\x96\xc6\x0d\x16\x73\x71\x5f\x8c\x6d\xf1\x4b\xd7\xfc\x82\x83\x3c\xfb\x89\x93\xd0\x84\x4b\x99\x20\x01\x5a\xe9\xa2\x50\x94\xf7\xaa\x47\x3a\x06\x88\x48\x32\xc8\x2d\x7c\x37\xde\xd4\x8f\x58\x12\xf0\x47\x2e\xa2\x17\xde\x8a\x88\x7a\x90\xce\x38\xa0\xba\x81\x9a\xbf\xe7\xb6\xd8\x37\xe7\x07\x66\x3f\xc3\x94\x21\x8b\x79\x96\x96\x3a\x11\x59\xbd\x72\xe1\xf1\xa2\xce\xe6\x46\x8d\x9c\x4f\x33\x4e\x0b\x9b\x8f\x55\x62\xdc\x92\xfd\x24\x71\x92\x2a\x4c\x2d\x6d\x1b\xa3\x1b\x23\xe8\x29\x39\xa1\x34\xf6\xc0\x4b\xbf\x8b\x3a\x01\x1a\xe8\x7f\x24\xde\x51\xce\x28\x3d\xeb\x64\xa9\x49\x44\x56\x0f\x0d\x4c\xf5\xa4\xa8\xdf\x33\x03\xeb\x79\x42\xc4\x25\x66\x21\xcb\x0d\xde\x4e\x83\xa4\x40\x90\x54\x69\xd8\x11\xea\xba\x8b\xf1\x8a\x7d\xc2\xa1\x21\xb1\xa8\xff\xcc\x65\x42\x40\x2d\xde\xc4\xc6\x83\x09\xda\xbe\x4e\x00\xcd\x23\xc3\x20\x37\xcf\x85\xa3\x53\x11\xa9\x1a\xfc\x10\xa9\x97\x97\x1f\x99\xd6\xbe\xac\x68\x61\x60\x2d\x8a\x46\xa2\x97\xc7\x26\x31\x99\xea\x45\xe3\x4a\x8e\xba\x17\x8d\x78\xe8\x7d\x24\x94\x98\xf1\xbc\x16\x79\xb5\x2f\x93\xd8\x62\x07\x35\x67\xae\x72\x1e\x87\x61\x03\x3f\x55\xe6\x03\x9e\xe3\xee\xb2\x44\xc5\xde\x93\xb5\x77\x6d\x51\x34\x18\xa4\x42\xf4\x62\x97\x89\xee\xab\x6d\x06\x65\x9c\x0d\x8a\x64\xcd\x39\x6a\xe5\x85\x20\xb9\x5c\xd8\x7b\x04\xf0\xd7\xc9\xde\xaf\x5a\xd3\xcf\xd2\xc2\x45\x4a\xa0\x1e\x7d\x71\xf3\x0a\xb1\xd3\x23\x3c\x45\x99\x4d\x4a\x5b\xa8\x85\x7d\xcb\x5d\xb0\x54\x8d\xdc\x56\x50\x51\xa7\xc7\x39\xe6\x30\x09\xe6\x80\x11\xdd\xa0\x44\x2d\xc7\x34\x78\x06\xc1\x7d\x40\x44\xe6\x46\xa4\x4d\xd0\x81\x7d\x83\xa8\xff\xdf\x18\x52\x49\xff\x63\x06\xf8\xf5\xfb\xd6\x24\x4e\x24\x98\x78\xab\xab\x47\xaf\x31\x78\xc3\xb3\xee\x0a\xca\x57\x4e\x50\x8e\x52\xcd\xdc\x9a\x4e\x57\x95\xf1\xef\x18\x49\x47\x88\x18\x12\xc3\x32\x2a\xd3\x1b\x52\x5b\xd0\xca\x21\x31\xdf\xd9\xaa\x1b\xe1\x35\xe9\x52\x60\xfe\x81\x5f\xd8\xb6\x1e\x80\xcd\xdb\x5a\x8f\xd2\xf0\x47\xba\x37\xf4\x5e\x30\x04\xa1\xf2\xa5\xee\xc2\x04\xc6\xc8\x0a\x85\xff\x2c\x8c\xd4\xff\xff\x7e\xea\x7a\xad\x9b\x37\xb0\xe2\xb5\x5d\x42\x64\x6a\xe7\x25\x43\xf1\x9a\x70\xd5\x53\x44\x92\x7f\xd3\x97\x24\x4d\x6f\x21\x41\xcb\x1c\xb6\x4e\xc6\x0b\x74\x36\xbe\xe1\xa9\xaf\xee\xd7\xcd\xa2\x14\x0a\xb7\x40\xe1\x0e\x2d\x02\x6c\xbe\x33\xa3\xd3\x4d\x4f\x52\x29\xc9\x11\xab\xec\xa6\xf1\x88\xeb\x2c\x0a\x2e\x24\xda\xc8\x40\x31\x1c\x2f\xff\x10\x85\x6e\xc8\x55\x3c\x22\x8f\xfa\x9a\xd7\x3d\x74\x95\xc8\x0d\x8e\x11\xc1\xf7\x22\x02\xbc\xea\x43\x32\xf2\xe7\xae\x55\xc7\xff\xc8\xdd\x0e\x5c\x63\xa0\xf1\xd2\x4c\x88\xbf\x83\xfc\xc8\x85\xe8\x59\x86\x9f\xc6\x1d\x9b\x82\xb1\xd8\x3d\x05\x0f\xbc\xde\x3f\xef\x4f\xb8\xd0\x18\xbf\x3e\x49\x19\xe4\x43\x7e\x59\xa7\x87\x81\x86\xe6\x0c\xb5\xeb\x8f\x6c\x15\xcb\x9b\x39\x58\x79\x85\xc7\xaa\xad\x0a\x93\xbb\x67\x9d\x94\xb1\x0e\x47\x44\xda\x89\x9a\x04\x02\xb1\x7b\x54\xab\x3b\x3e\x5a\xd0\xa6\x4b\x07\xf1\x1d\xda\x61\x40\xfd\xc1\x34\x7c\x10\x91\xaa\x90\xb4\x3c\xb5\xee\xe7\x2c\x3c\xd6\xd8\xe9\x21\x85\x08\xe3\x34\x4e\x33\x07\xab\x14\x6e\x79\xeb\xd4\xac\x2f\xba\x5f\xa8\x03\x96\x76\xb2\xc1\x82\x48\x2d\xc2\x96\x7e\xdd\x39\x08\xe9\xa0\xb2\xa2\xc3\xb9\xb1\x54\xe7\xd0\xd4\xab\xcd\x6e\x5c\x32\xfc\x28\x22\xb2\xd4\x93\x5e\x4a\x67\x90\x76\x6c\x3e\x28\xe3\x24\xfe\xaa\x6e\x5e\xd8\x0e\x3c\x42\x39\xa6\x55\xb2\x9a\xc7\x25\x8c\xdb\xab\x3e\x10\x73\xdf\xac\x93\x1d\x34\xe5\xe1\xf8\x75\xe5\x8f\xa8\xa0\xd6\xb1\x8b\x56\xf1\x07\x08\x66\xbe\x37\x0c\xc5\xd7\xb3\xd4\x00\x3a\x4e\xb3\x49\x2f\xfc\xe6\x6f\x35\x88\xc2\x1e\x4b\x48\xb9\x5e\x6a\x62\xce\x8e\xed\x5b\xaf\xd8\xe3\x5f\xb2\x87\x10\x5f\x24\xf0\x72\x15\x9b\x2e\x66\x49\x9c\xed\x0c\x33\x2c\xff\x92\x2b\xcf\x3f\x19\x12\x87\xc6\xef\x53\x95\xe3\xff\x66\x68\xd4\x71\x96\x12\xb9\x50\xc7\xdb\x58\x94\x06\xb2\xfb\x58\x08\xda\x18\x0b\x51\xc4\xf9\x28\xa0\x8d\x4c\x6f\x47\x83\xe9\xed\xaa\xfb\xf0\xc2\x1a\xaf\x30\x7d\x6f\x75\x09\x9e\xbd\x85\xda\xc2\x63\x65\x97\x97\x66\x1c\x89\x57\x19\xf7\x64\xb0\x5d\x61\x97\x61\x82\xe6\xf2\x18\x10\xbc\x4a\x9b\x73\x11\xaa\xf6\x99\xf3\xb7\x87\x44\x7e\xfc\xed\x50\x6e\xcb\x4d\xd1\x55\x73\x83\xf1\xa7\xdb\xcc\x3e\x7e\x9b\xe0\xe8\x45\xd7\xe4\x60\xe5\x11\xa5\xb1\x11\xd5\xb1\xe0\x0b\xdb\x71\xd2\xce\xf2\x7e\x83\x74\xaa\x99\x74\xfe\xc2\x58\xf7\x68\xff\xfc\xfe\xe6\xaa\x49\x53\xd0\xb8\xea\xc8\x06\x09\x96\x7c\x4c\xee\xba\x34\xa5\x8d\x8b\x6e\xdc\x08\x3d\x56\x41\xfa\xca\xc9\x58\x40\xbb\xff\xe5\x03\xcd\xa5\xdc\xe9\xc2\x35\x46\x20\x10\xd5\x37\xa8\x21\x24\xae\x53\xe3\x49\x44\x82\xff\xfe\x19\x29\x12\xfd\xac\x0e\x7c\x10\xf7\x58\x69\x06\x8b\xe3\x5e\x44\xab\xe6\x5e\x5d\x0d\xa0\x18\x2c\x14\x71\x47\x56\x97\x96\x1e\x1b\x5e\x6f\xe3\x2c\x15\x9a\xab\x35\x5f\xec\x26\xf2\xcb\x4b\xc4\xf2\xae\x83\x32\x28\xdf\x39\x97\xf3\xe2\x26\x60\x68\x78\x8f\xf7\xb9\x7c\x3d\x64\x06\x5e\xbc\x6d\x84\x37\xcf\xb6\xc6\xc1\x47\xcd\x05\x9b\x64\xab\x6e\x8e\x52\x67\x4a\x03\x28\xe0\x96\x6b\x7e\x2a\x45\xc3\x13\x14\x31\x2c\xa5\x71\x3a\x11\xca\x56\xd2\xdb\xd3\xc9\x08\xc6\x04\x13\x45\xd3\x00\xfd\xd8\x51\x15\x9a\xa0\x7d\x5f\x47\x5b\xea\xc6\xa8\xe3\x0c\x5a\x4d\x88\x02\x05\x3d\x20\x27\xb5\xe2\xa8\x4b\xb9\xe9\x0c\x8c\x90\x29\xfa\xa9\x6f\x0f\xed\xbf\xe4\x67\x84\x16\x6c\xe9\xe4\x1f\x50\x24\x91\x98\xdd\x0f\x56\xf9\xf6\xc3\x09\x97\x6a\xa3\x45\x76\x18\x4f\xd4\x33\x0b\xf9\xf8\x0c\xf3\xd1\xa8\x0a\xdf\xc7\x76\x44\x96\x29\xc3\xd2\x42\x34\xbe\x4e\x38\xec\xb4\x68\x67\x52\xf3\x07\x98\xf5\xda\x90\xe8\x3b\xae\x91\x6c\xe9\x0b\x2f\xbc\xf0\x28\x81\x82\x3e\x76\x9d\x50\xa5\x70\x21\x9c\x27\xea\x30\x88\xc1\xfe\x0f\x17\xa6\x78\x05\xba\x99\x83\x12\x4c\x9d\x1d\x92\x6a\xf7\x76\xc7\x44\x80\xda\xd7\xbd\x91\x26\x23\x5a\x9a\x42\x14\x44\xa0\x70\x01\x65\x23\x42\xbc\x3e\x52\x65\xcf\x5f\xcb\x39\xef\xbd\xcc\xb3\x0b\xdf\x21\xda\x77\x55\x8a\xd6\x21\xbb\x50\xbf\xdb\x44\x2f\x76\x64\x1e\x13\xa8\xd7\x0b\x35\x3c\x7a\x07\x9a\xfd\xc4\xa4\x81\xbb\x8a\xd7\x9f\xce\xec\x04\x48\x44\x6a\x97\x92\x78\x09\x8a\x5e\x9e\x96\x06\x51\xb5\xbe\xcd\x3a\xc5\xe1\x38\xed\x0c\x8a\x32\x8f\x4d\x22\x55\x43\x69\x15\x0c\x09\x26\x79\x1f\x39\x21\x3a\x2d\x81\x62\x24\x31\x5e\xf3\x54\x59\xa3\x1b\x5e\xae\xfa\x3a\x55\x17\xbb\xa6\xf3\x2b\x18\x7c\xf6\xe8\xdb\xea\x7e\x90\x11\xfc\x2d\xdc\x8b\xe2\xf7\x42\x7b\x07\x13\x63\x88\x9e\x80\x5f\xc4\xff\xff\x36\x9e\xbb\x47\x93\x54\x31\x96\x62\xe3\xab\x25\x81\xa0\xec\x88\xe4\xda\x58\x45\xd7\x87\xa4\x8d\x70\xc6\xad\x16\xe9\xae\x21\x1f\x91\x3e\x06\x82\x2c\x25\xc1\x75\x37\x2d\xdc\xf8\xd8\x3b\x78\x90\x17\x22\xda\xe3\x13\xeb\xee\x95\xfa\xe1\x4a\x3f\xef\x34\xd1\x6a\x4c\x4f\x7b\xd9\x12\x37\xba\x48\xdc\xbc\x3a\x09\xfa\x3d\x87\x82\xd6\x95\x42\xac\xd9\x6f\x8e\x81\xb6\x5d\x7b\xaf\x9b\x39\xe7\x28\x05\x73\x0f\xf8\xf2\xae\xec\xb2\x7f\x3b\xed\xcc\xe4\xa2\xdf\x85\x30\x0c\x59\x83\x1c\x8f\xd5\xc7\x3f\xdf\xfc\xd5\x99\x7d\x2f\xee\x3b\x78\xa0\x41\xfd\x3c\x3c\x69\x4d\x6c\xb6\xae\xd0\xca\xf3\x41\xb4\x14\xc1\xdc\xfe\x51\x05\x05\xe5\xf6\x79\x34\x14\x75\x06\x0b\x6e\xb5\x88\x90\x80\xbb\x6c\x15\x15\x08\xf1\xbe\xb2\x3e\x68\x8c\xa8\x0c\x68\xa7\x99\x01\xed\xf4\x48\xc7\xe2\x4b\x5f\x98\xfb\xff\x07\x45\xf4\xe1\x70\xab\x60\x9a\xb6\x34\xef\x13\x94\x62\x5b\x0b\x4b\x12\x4b\xfc\xd8\x90\xa6\xe6\x31\x07\x8e\x95\xd3\x58\x77\x0b\x84\x1b\x78\x3a\xa0\xe7\x5e\xbc\x96\xe6\x5c\x2e\x82\x4a\xc5\x8d\x21\xe9\x15\xe0\xa2\x55\xd8\x26\x94\x2a\x4e\x63\x9a\x15\xfb\xf8\x21\x56\x31\x2a\x25\x77\x64\xe5\xe2\x32\x45\xbc\x1e\xdb\xe3\x8e\x1b\xbb\xd7\x84\x82\x46\xfd\x00\x67\x87\x29\x11\xdd\x32\x5c\xa5\x08\x82\xa2\x2a\x7f\x12\x0d\x3c\xf8\x96\x47\xd6\xc3\x5a\xbd\x84\x69\x5a\xdf\xf3\xab\xde\x25\x3c\xec\x7b\xa4\xe1\x7d\xcb\x0d\xe3\xe2\x85\x7d\x73\xe4\xf9\x17\xd9\xeb\xee\xc5\x8e\xc8\xa2\xeb\x1a\x7a\x9c\xd8\x05\x1c\xdb\xe1\xcc\xc1\x20\x8d\x12\x26\x14\x2f\x8f\x4d\x8a\x3b\x35\x3f\x81\x69\x48\xb6\xe0\x87\xcd\x02\x82\x70\x14\x41\x9a\xa5\xd9\x64\xf5\x8c\x5c\xfe\xfd\xf9\x67\x5b\x61\xf9\xef\x5c\x0f\x40\x10\x81\x00\xc3\x9e\xdc\x1d\x43\x74\x1d\x7c\xb9\xb9\x68\x8d\x0c\x96\x60\xaa\x02\xb9\x1a\x30\xad\x72\x3c\x06\x84\x98\x9d\x6d\x2e\xc6\xb9\xf6\x37\x74\xce\xce\xad\xc5\xf1\x41\xbb\xae\x4d\x3a\x4f\xd2\xeb\x38\xca\x32\x10\xc0\x45\xc0\x2a\xa0\x5a\xea\xd9\xe4\xaa\xaf\x46\x71\xe1\xaa\xf0\x82\x4b\xea\x4f\xf2\xe3\x7f\x0c\xc1\x0d\x4f\xae\x55\xad\x2d\x80\x2c\x98\x68\xf4\x87\xc8\x9f\xd1\xb5\xbd\x43\x36\xf1\x02\xa9\xc2\x7f\x03\x7e\x12\x86\xef\x0c\xf7\x92\xb1\xc9\x14\xf9\xb0\x35\x25\x9c\x9f\x6a\x16\xdd\xac\x4f\x01\xf7\xd7\xc9\x4a\x7d\xbd\x4e\x40\xe9\xff\xe3\xec\x4f\x63\x24\x39\xcf\x3c\x31\xbc\x3b\xab\xaa\xbb\xd9\x14\xc9\x26\x45\x72\x76\xb4\xf8\x63\x73\xfe\xb3\x36\x61\x80\xe6\x78\xc7\xf0\x81\xf9\xe0\xc8\xa9\xae\x11\xd5\x65\xa9\x58\xe8\x6e\x35\x77\xe8\x05\xcc\xb7\x22\xdf\xca\x0c\x56\x64\x44\x2a\x8e\x2a\x16\xe1\x05\x06\x0b\xc3\x30\x0c\xc3\xc7\x62\x6d\xaf\x0d\xcf\x81\x85\xb1\xb3\x0b\x8c\x67\x56\xbb\xd2\x1c\xd2\x8e\xb2\x24\x51\x1a\x9d\x23\xb6\x78\x8b\x67\xdf\x47\x75\xf5\x7d\x1f\xd5\x46\x3c\xbf\xe7\x79\xdf\x27\x2a\xa3\xc7\x80\xbf\x65\x76\x57\x55\x46\x46\xbc\xef\xf3\x3e\xc7\xef\x18\x96\x49\x94\xf7\xe9\x48\xa1\x5b\x81\xdc\x0b\x53\x25\x7e\xad\x70\xbf\x79\x95\x39\xa1\x8e\x6c\x39\x63\x8d\xaf\xd1\x05\xf2\x6b\x85\xbb\x5a\x88\x8a\xbc\xe5\xd1\xa8\x50\x58\x12\xc5\x1d\xa9\x81\x16\x4c\x8f\x8f\x40\x51\x29\x55\x74\xb5\xbb\x4a\x1a\xe2\x72\x83\x76\xaa\x9f\x6d\x55\x7f\xc0\x65\x22\x9e\x84\x7a\x46\xa5\x8a\x0b\x69\x9a\x45\x79\xbf\xa5\xa6\x1a\xdb\x68\x75\x4a\xf7\xea\x11\xaf\xa4\x97\xb2\x86\xb8\xe8\x37\x2b\x88\x3e\x46\x45\x62\xd5\xec\xb9\x83\x27\x95\xac\xca\x57\x4a\x93\x14\xd1\x22\x16\x31\x5b\x59\x05\x3e\x88\x9d\x77\x0d\xaa\x6e\x16\x2d\x5b\xe0\xb3\xd8\xe1\xc9\x3b\x79\xfe\xf8\x69\x1a\x60\xeb\xbe\x80\x73\xf0\x96\x70\xfe\xf5\xcf\x76\x6a\xae\xda\x5b\xbb\x58\x55\x1d\x93\xa4\xf4\xac\x9a\xa4\x85\xb6\xde\x51\x1a\x8e\xf5\xfa\x69\x5e\x4c\x50\x68\x12\xc9\x83\x96\xd3\xcf\xbe\xa8\xd0\xd1\xef\x36\x61\x24\x57\xcb\x5e\x9a\xc7\x66\x39\x32\x2d\x05\x20\x39\xaf\x99\x30\xe7\x03\xcf\x00\xec\xd9\xc4\x42\x1a\xa7\xe5\x31\x85\x17\x68\x5b\x48\xfb\xab\x21\x4e\xd8\x57\xc3\xb8\xcc\x19\x6f\xe3\x6f\x31\xc5\x66\xb9\xdd\xe3\x38\x9d\xf9\x2a\x5b\x4b\x89\x95\x2b\xc9\x9d\x13\x31\x72\x5f\x6a\x5d\x3d\xc6\x7c\x90\xa6\x45\x9f\x3f\x43\xf4\x00\x6b\x2a\xdd\x35\x61\xf7\x65\x9b\xc0\xdb\x55\xcf\x1b\x2e\x69\xba\xe1\x25\xd5\x21\x19\x98\x2c\xef\x1b\x25\x4b\xb8\xae\xe6\x96\xeb\x8e\xcc\x1c\xda\xa4\xc8\x8c\x6a\xdd\x30\xe7\x5b\x35\x2f\x7f\xa1\x16\xb9\xd2\xe9\x7d\x89\x81\x1d\xb7\x35\xca\xe3\xb6\x12\x88\xb7\x65\x96\x46\x79\x5e\x82\x7d\x39\xc3\xe1\xf2\xfb\x78\x54\xa8\xee\x3e\xc2\x01\xed\xa8\x81\x4e\x52\x77\x5b\xe7\x31\x65\xa6\x67\xba\xcc\x03\x64\x85\x27\x5a\x64\xa2\xf6\x24\xa9\xd1\x6a\x5a\x16\x7d\x0e\xd3\x5a\x00\x4c\x5c\xef\x3d\x55\x97\x48\xc0\xcb\x36\x2f\x22\x3a\xb9\x9c\xc4\x20\x72\x17\x7e\x3d\xa6\xd0\xb4\x77\x6f\xf5\x10\x7a\x99\x29\xca\xd8\x63\x82\x95\x89\x9e\x63\x26\x38\x92\x7f\x44\x12\xa7\xf4\x09\x38\x0e\x7f\xa6\x99\xa2\x3f\x1b\x3b\x1b\x69\x7f\x2c\x44\x36\x49\x22\x46\xde\x35\x81\xff\x1f\x8b\xd4\x48\xc9\x2d\x35\xa1\x8f\xb4\x94\x4d\xa6\x02\xa0\xd9\x2a\xa3\xc3\x3c\x01\xbd\x6a\x14\x97\x4e\xa9\xaf\xba\x7c\xfe\x8f\xa0\xa5\x54\x58\x65\xd0\x3c\xcc\xd2\x45\x9b\xe7\x12\x0b\xf1\xf8\xd8\xb7\x96\xdf\x8c\xbc\x7f\xa4\x38\xd8\x45\x7c\x7f\x81\xb8\xbd\xab\x54\x79\xee\x36\x40\x99\xe7\x59\xc4\xa0\xa5\x5b\xbb\xf4\xd5\xa5\xcd\xdb\x80\x01\x32\x71\x6c\x7b\xb6\x0e\x36\xf9\x58\x81\x4d\x3e\x56\x47\x41\x88\xf1\x3f\x32\x84\x9f\x8f\x54\x0e\x79\x55\x53\xa6\x2e\x28\xd4\x50\x3e\x4c\x4b\xf7\xad\x05\xd1\x40\x7b\x54\xa0\x0e\x5b\x3b\x00\xcf\xb6\x57\x68\xb0\xef\x88\xaf\x28\x41\x3f\xa1\xfb\x8d\x08\xcb\x88\x3c\xd4\x37\x37\x15\x41\x6a\x21\x65\x85\xf5\xd9\x59\x4e\x0e\x6e\xab\x44\xe1\x76\x53\x40\x6d\xdb\x24\x25\x7d\x3a\x07\xa2\xb8\x18\x78\xd1\xbc\x8b\x0e\x8a\x5f\x05\xc2\x1e\x4e\x56\x37\xe7\x3e\x8f\xed\x27\xec\xbd\xad\xd1\x7d\xef\xde\x76\xba\x92\x50\x74\x42\x09\x7f\x25\xf0\xce\x51\x57\x54\x5f\xf5\xcb\x07\x7e\xb3\xe5\xe7\xf2\x77\x75\xa7\xf3\x6e\xa3\x8b\x42\xde\x27\x09\xfa\x9a\x7c\xf3\x39\x25\xdf\x7c\xce\xf3\x52\xcb\x38\x8e\x84\xac\x8f\x9c\xef\x9a\x9a\x40\x5f\x73\xdf\x2f\x8e\xbe\x52\xda\xc5\x48\xf6\x25\xaa\xb2\xab\x81\x9f\xd4\x5f\x1d\xf9\x9a\x25\x2a\xf2\x27\xb5\xf1\x35\x52\x68\xa4\x3d\xbb\xd6\xbc\x72\xf7\x0d\x8f\xa4\xff\x65\x3a\x0a\x9f\xe7\x61\xe2\xee\x0e\x25\x63\x78\xb4\x8f\x76\xaa\x0a\x40\x74\x76\xab\x4f\xa4\x36\xf4\xff\xf8\x2b\x6b\x55\x6a\xcd\xea\x89\x40\x52\x01\x62\x75\x93\x0e\x20\xfc\xc2\x5d\x4d\xfd\xde\xb9\xe6\x67\xb6\x57\x35\x05\xe6\x31\x92\xbd\x42\x8c\xdd\xb6\x56\xa5\x0e\xe8\x50\xdc\x0b\x14\x37\xf4\xd1\x8e\x02\x4b\x7d\x80\x3d\x4d\xed\xb7\xbf\xfa\x6c\xa7\xf5\xc5\x03\x4e\x2b\xc9\x23\xea\xed\x32\x24\xbd\x1e\x90\xe2\xfb\xe2\x2d\xcd\x56\x09\x44\x81\x8d\xf8\x01\xad\x03\x94\x1f\x3f\xc4\xce\xe1\xff\xa0\x22\x89\x95\xea\x14\x20\xe0\x62\x13\xf0\x7f\x39\x02\xd5\xc1\xfb\x15\x28\x1d\x9b\x0f\x1c\xa2\x2e\xaa\x0e\xa8\xbc\x30\x05\x30\x2e\x50\x2e\xfd\xa9\xf6\x78\xfc\x0b\x05\x1e\x78\x3b\xf0\x6d\xd3\x32\xc9\x57\xc8\xf4\xa1\xa5\x64\xf1\x60\x38\x29\x02\x5d\x8f\x69\x9d\xb5\x15\xb3\x3a\x49\x69\xb5\x24\x91\xf4\x64\x74\x76\x29\x90\x06\x15\x2e\xcf\x36\xa1\x15\x18\xf1\xcd\x91\xcc\x71\xfc\xab\x47\xc5\x6f\x1e\x68\x30\x94\x97\xd9\xb2\x5d\x65\xd3\x52\x2c\xcf\xe3\xda\xa6\x14\x68\x1c\x19\x40\x34\xcc\x7c\x4c\xd6\x2b\xad\x9a\xda\x5c\xd3\x16\x77\xd7\xd4\xed\x59\x89\xf2\x30\x4d\xf2\x28\x51\xd2\xa1\x1f\x6b\xe9\xd0\x8f\xb7\x7a\xcf\x56\x5b\xf7\x37\x58\x09\x02\xc7\xea\xad\x40\x33\x72\x70\x1c\x30\xaf\x7a\xa4\x64\x68\x0e\xd3\x18\xc7\x11\x45\x1d\x0d\x06\x64\x40\x9c\xb8\x37\x71\x57\x41\x61\x45\x27\x9c\xa7\x39\xe3\xb0\x9a\x19\xf2\xd1\x1f\x94\x03\x45\x7d\x43\xe2\xcc\xaf\xc7\xd6\xdb\xbe\xb9\x76\x66\x73\x13\xdb\x09\x6f\xe3\x80\x92\x48\x06\xc2\xbe\x33\xed\xc1\x0b\x61\x66\xcd\x92\x1a\x01\x9c\x0a\x14\xca\xed\xd4\xe8\x97\x7d\x13\xa4\x1f\x99\xe2\x1f\xfc\x5a\xd7\xac\xfe\x83\x5f\x1b\xa4\xaf\x40\x6e\xd9\xb5\x8f\xbc\x4e\x57\xd3\x58\x6f\x60\x4d\xc2\x4a\x32\x68\x7f\xfd\x2b\x8d\x90\xe0\xc2\xdf\x19\x3d\x39\x35\xaf\xed\x1d\xb5\x43\x6c\x96\xb8\xb6\x1d\x03\x0f\x02\xdf\x7e\x3e\x53\xd7\xb8\x7e\xc5\xb4\x54\x45\xc4\xe6\x5d\x92\xb3\x2b\x7a\x81\x35\x61\x91\x66\xac\x5c\x8e\x0b\xb8\x19\x78\x91\xab\x9b\xea\x04\xf8\x3c\xdc\xd1\x0f\x38\x86\xbe\xea\x4a\x83\x26\x88\x10\x75\x0d\xab\x02\x33\x9f\x71\x4d\xf2\xb9\xb9\xb6\x19\x0e\xd3\xea\x0b\xc9\x99\x8b\x11\xca\x49\xed\x70\x70\x32\x68\x10\x9f\x3e\x34\xfd\x3c\xb1\xc6\xb0\xb0\xb6\x53\x9f\x0e\x8d\xe0\xf3\xa8\x76\x1d\xaa\xb9\xda\xe1\xd2\x1a\xac\x16\x03\xb8\x36\xff\xcb\xc8\xb7\x39\x77\x39\xb0\x21\xdb\x60\xa7\x30\x34\x17\x64\xfb\xb5\x91\x6e\xe6\xfc\x61\xa0\xa4\xf2\xd7\x49\x63\x8d\xa1\x39\x9d\xf1\x1c\xe7\xf9\x36\x38\xd0\xc4\x05\x90\x5e\x47\x75\xad\x35\x8f\x3d\x24\x70\xa7\x14\x1e\x28\x2f\x07\x48\x81\xd9\x0f\x44\xa5\x45\x17\x94\x74\x06\x99\x32\x11\x7d\xb0\xca\x20\xab\x0d\xb5\x79\x9c\x4a\x8a\xcd\xe3\xee\x48\x0d\xfb\x26\xe9\xd9\x7c\x47\x6b\x76\x76\xf3\xa2\x46\xf9\x7c\x10\xa8\xd9\xf2\x67\x3b\xaa\xb0\xf8\x40\xd9\x61\xdf\x43\x3c\x01\x88\x6f\x73\x2c\x25\x7b\x71\xfe\xef\xb6\xcd\xc0\x66\x51\x68\x12\x75\xb6\x1c\xd3\x5d\x47\x2d\xb7\xbd\x90\x26\x29\x49\xeb\x8b\x42\x8d\xcf\xd0\x6e\xe3\x77\xd0\xc0\x3a\xad\xe6\x61\x50\x00\x70\xaa\xdf\x40\x3b\x9c\xab\xb9\xfe\x54\x7f\x05\x43\x81\xaf\x8f\x49\x00\x78\xa8\x88\x67\x0a\xdb\xaf\x94\x8e\x07\xf9\xbc\x08\xa5\x2a\x5a\xc2\x59\x85\x9d\xcc\x6c\x2f\x4a\x11\x35\xb9\x13\x4c\x3f\x28\x5d\x61\x07\xef\xb4\x79\x58\x5a\x7a\xd0\x08\x18\xef\x52\xe4\x73\x22\x64\xee\x0a\xef\x29\x4d\xe0\x05\x9b\x65\xab\x58\xf9\x48\xc1\xaf\x6a\x11\xaa\xab\x23\x2f\xe6\xbc\x98\x95\x79\x91\xb1\x2c\xa2\x4b\xd1\x2e\xd4\x14\x5b\x95\xa2\xcf\x31\xaf\x71\x90\x45\xcb\x26\x5c\x45\x9e\xe4\x88\xf0\x0e\xe5\x7b\x46\xc1\x27\x57\x4c\x5c\xa5\xa3\x58\xed\x9c\xc7\x06\x0a\x45\xfe\xc9\xd8\x0e\xae\xb6\xa2\xc9\xf3\x28\x2f\x0c\x87\x23\x7e\x3a\x41\xed\x51\xc9\x30\xab\x6b\x56\x27\x54\x44\xb8\xca\x5d\x52\x34\xe3\xe0\x81\x21\x97\xdf\xd0\x0c\x28\xe3\x22\x1a\x98\xc2\x72\xf2\xef\xf0\xff\x0e\x16\xfa\xcf\x9b\x8c\xdf\x97\x92\x2a\xab\xad\x29\x5b\xd5\xda\x90\x0d\xde\xfc\x43\x9b\x0d\xa2\x3c\x8f\x84\x9a\xd9\x5c\x96\xf9\x54\xa2\x67\x63\xe8\xe5\x34\x09\x1b\xf8\xa8\x69\xa2\xc1\x43\x0a\x55\x83\xb5\x8f\x93\xe2\x31\x24\x98\x22\xfa\xab\x3c\x54\x6e\xaa\xef\xc7\x61\x11\xb1\x63\x8a\x7a\xbf\x42\x8d\xae\x6e\x48\x4d\x91\x56\xe4\xec\x3f\xab\x11\x62\x71\xc4\x6e\x18\x2e\x09\xbb\xa7\x4c\xa3\xee\x8d\x8d\x95\x67\x67\xdb\xc3\x7e\x66\x72\x41\xb0\x2b\x15\xa5\xe7\x1b\xaa\xa7\x15\x13\x81\xce\xbb\x7f\x9a\x63\xf7\x59\xe5\x7d\x04\x2d\x13\x9c\x79\xc7\x69\x7d\x6c\x42\xf4\x54\xac\xfa\x5a\x7b\xf7\x6e\x9e\xd3\xf8\x8d\x83\xcf\xa9\xd1\xc7\x86\x36\x82\xdd\x18\x7b\x6c\x55\x6d\x14\x25\xdd\x68\x39\xea\x96\x88\x85\xe2\xc0\x7c\x54\x19\x60\x1f\x6d\x34\x52\x37\x43\x93\x31\x38\x4b\x20\xa0\x8a\x1e\x06\xf2\x83\xb0\x34\x1e\x57\x49\x80\x0d\x97\xd2\xb2\x50\x06\x59\xc7\x95\x73\xf6\xf1\x46\x21\x26\x19\x8c\x50\x9c\xe0\xbf\x5f\xc3\x0f\xd6\x40\x86\xfe\x74\x1e\xc6\xa6\x3a\xf6\x85\x7f\x85\x0d\xcf\x74\x09\x7e\x53\xef\xa1\x2f\xe4\x3b\x94\x3a\xf7\x79\x25\x54\x74\x11\x4d\x27\x6d\xc8\x8e\xed\xcd\x63\x6b\xf6\xe0\xe5\xbd\x29\xd5\x7e\x83\x31\x8f\x4d\xba\x69\x96\x5b\x97\x89\x60\xd8\xf2\xdd\xc0\x73\xd1\xbe\xab\xc2\x28\x11\x65\x56\x51\x23\x33\x0a\x7c\xe4\x79\x32\x68\xf2\x60\x42\x73\xa6\x61\x1b\x1f\xa0\xc5\x85\xc7\xca\xde\x5b\x41\xeb\x45\xf7\xba\x71\xe5\x66\x76\xd9\x26\x05\x27\x16\x4e\x01\xc2\xf9\xbd\xbf\x7e\xee\x81\x1e\x13\x66\xd9\x66\xab\x13\xbe\xae\x46\xf7\x04\x48\x39\x56\x14\x45\xf8\xbf\xad\xce\x94\xcc\x76\x6d\x1e\xf5\xd8\xa1\xd6\x39\x38\x3b\x99\x94\x0d\xf4\xf7\xea\x22\x13\x83\xd5\x49\x4c\x00\x00\x80\xda\xd1\xd1\x23\x98\x96\x53\xf4\x3e\x57\x73\x44\x19\x3d\x51\x4f\x88\x5e\x9c\x6f\xff\x06\x6e\x0d\x32\x11\x00\xe4\xf8\xb5\x13\x3a\xe9\x46\x68\x82\x95\x19\xa2\x9a\x98\x49\xb5\xc4\x7e\xe9\x93\xf5\x26\xbf\x01\x34\x1c\xa6\x34\x3c\x58\x11\xb5\x1e\xeb\x78\x23\xbe\x3b\xf4\xa7\x90\x25\x41\xf0\x14\x8d\xe4\x53\x5b\x71\x79\xff\x1e\xb5\xbe\x26\xab\x8c\x84\x1f\x08\xaa\xae\xd3\xec\xb1\xd1\x72\xfa\xf9\xa7\x83\xcf\xba\xac\x97\xae\xbe\x67\x8a\x14\x96\x74\xc2\xf6\x53\xcc\x3f\x2d\x77\x97\xc6\x84\x85\x99\x77\x21\x07\xb3\x36\x7e\xdd\x14\xf5\xf3\x41\x54\xf4\xf3\x34\x89\x0c\x84\x87\x85\x25\xd8\x72\x8c\x5f\x86\x04\x89\xd0\x85\xa2\xfc\x46\x79\x18\xa7\x08\x93\xfb\xe6\xfc\xb8\xc1\xcd\xf3\xee\x8e\xcd\xed\xab\x0f\x54\x0c\x99\x09\x0f\xe5\x38\x87\x33\x9d\x8d\x34\x94\xfe\xfc\xf5\x31\xa0\xd5\xcc\x41\x5a\xaa\xa6\x67\x09\xf8\x85\x3c\xe7\x4d\x35\x19\xb9\xab\x15\x8b\xb9\x93\x85\x4e\xcd\x9f\xe3\x53\x04\xbd\xd3\x14\xab\x6c\x99\xa5\x43\xcb\x77\x03\xe7\xc9\x0d\xdc\x01\x2c\xd6\x09\x6a\x84\xe0\xcf\x55\x79\x90\x47\x31\xd8\xee\x23\xde\xa8\xe9\xae\x02\x4f\xec\x5c\xa3\x49\x00\x96\xe6\x0d\xd4\x3a\x35\x6b\x76\x24\x3e\xdc\xa1\x61\x1d\x18\x85\x48\xf8\xea\xc8\x0b\x17\x3c\xd5\x51\x84\x94\x5b\x34\x96\x45\x2c\x39\x8a\xa4\x9f\x25\xc9\x69\x21\x3a\x45\x99\xfd\xd3\xee\xd3\xc7\xe6\x5d\x87\xa6\xdb\x3d\x13\xa1\x03\x86\x6f\x78\x47\x71\xa0\xef\x34\xc5\x18\x46\x5e\x40\x68\x42\x18\x1b\x74\x8b\xf8\x8d\x32\x54\x7a\xad\xcc\xa2\xb0\x0f\x52\x36\x4e\x93\x5b\x81\x62\x86\x8c\x8f\xf3\xc9\xca\xb3\x4c\xba\xc2\x19\x72\x8e\x19\xd5\xd7\x46\xe7\x0c\x32\xf2\x18\x52\x70\x23\x0e\xcf\xfa\x46\x53\x49\x3c\x34\x89\x19\x98\x09\xed\xfa\xf2\xd6\x48\x63\x4a\xe9\x0f\x48\xf3\xaf\x89\x60\x51\xa5\xef\xe4\x77\x5d\x4b\xd9\x65\x06\xdb\x80\x8e\xea\x5a\xd3\x8d\xa3\x04\x7d\x1f\xb4\x50\x8e\xaa\xde\xca\xd1\x91\x66\xf3\x87\x31\xa5\xf9\x93\xb4\x32\x5d\x52\xe8\x80\x30\x30\xdf\x15\x6b\x39\xe5\x13\x70\xb6\x21\x2f\xa5\x06\x40\x14\x47\x72\x38\xb9\xa1\x8e\x9f\x9b\x05\x0f\xa2\xd6\x24\x69\x62\x8b\xbe\x8d\x6d\x9e\x4f\xfa\x26\x14\x17\xb3\xdc\x97\x51\xf8\xd3\xc7\x60\xb8\x23\x51\x5b\x15\x3b\x26\x41\xff\x55\x80\x81\x2d\xa7\xd0\xa2\xbd\xcd\xcd\x82\x29\xe8\x14\x9d\xf0\x68\x93\xaf\xd1\x73\x61\x5c\x11\xdd\x30\x69\xa7\xa8\xdf\x2b\x49\xb1\x54\x1c\xc1\x84\xcf\xa9\x84\x72\xdf\xe0\x43\x5c\xe0\x6b\x0d\x0d\xf5\xdc\x86\x69\x95\x91\xa0\x33\x88\x93\xea\xbe\x3a\xb5\xee\x8f\xbc\xb6\x75\x34\x60\xbb\x90\x78\x75\x87\xe2\x03\x7c\x88\x6c\x89\xdf\x68\x73\xdb\x0d\x64\x8a\x32\xc4\xf6\xf4\xa1\x0b\xd8\x89\x22\xad\xf6\x20\x77\x8e\xa5\x28\xcb\xc3\x7e\x22\xaa\x1e\xf8\x1a\x10\x19\xe0\xd7\x63\x73\x9b\xea\xc9\x17\x36\xec\x27\x69\x9c\xf6\x22\xa7\x81\x2d\x52\xfe\xf4\x77\x44\xcb\xbf\x71\x60\xb9\xe0\xb8\xfb\xc8\x2d\x0e\xe3\xdb\x89\xc3\xb9\x0f\xc7\x57\xc7\x4e\xcb\x99\x83\xed\xc5\x28\x0f\x79\x98\x23\xec\x2f\xdf\x6e\x3b\xab\xb0\xac\x59\x99\x71\xc9\xee\x20\xb5\x8a\xab\xa5\xf3\xcc\x7c\xc5\xda\xa1\x8c\x34\xd1\xb2\xba\x8d\x22\x97\xdf\xa8\x7a\x72\x90\x26\x76\xf5\x11\x35\x9d\xba\x37\xf2\x08\xbb\xd3\x5a\xd3\xec\x5d\x6e\x6a\x48\x70\xab\x96\xa9\xf8\x15\x29\x3d\xeb\xab\x88\xc4\x22\x4a\x5e\xe7\x05\xcd\x33\x86\xf8\x0c\x42\x12\xc6\x16\x67\x35\xfe\xfd\x13\xbd\x00\x6e\x29\x93\xab\x8f\x9b\x52\x0d\xb3\x50\x3a\x95\x79\xa6\x69\x07\x3e\xf1\x3a\x3b\x76\x48\xa1\xcb\x17\xf5\x3c\xbc\x0e\x9b\xeb\x3b\x6a\xa3\x7d\xa7\xb1\x66\xcd\xec\x72\x64\x3d\x1e\x17\x07\x27\x0e\x1a\x7e\xdd\x94\xf0\x46\x71\x5c\xe6\x51\x9a\x90\xaf\xa4\xd3\xdf\x43\xeb\x8d\x5f\x8f\xad\x47\xd2\x63\x8f\x12\x4a\xbc\x0a\xe9\x23\x88\x68\x88\x92\xb4\xd9\x08\x1e\x51\xf8\xe5\x05\xc3\xeb\x16\x08\x0e\x1e\xfb\xf2\x9b\xa6\xae\x62\x91\x95\xf1\xea\x84\x42\xfb\xbe\x39\xf2\x58\x89\xab\x8a\x75\x56\x8b\x4f\x51\x97\x87\xb5\xa8\xe5\xae\x04\xca\x9d\xe8\x82\x9e\x91\x31\xeb\x44\x06\xea\x4e\xc0\xde\x16\x0f\x7b\xd3\x27\x36\xe9\xc1\x0a\xde\x85\x8a\xd6\x89\xb3\x7b\xe2\x04\x60\xab\xa8\x7d\x5a\x20\x64\x08\x59\xc2\xcb\x2c\x80\x0c\x0b\xb8\xf3\x09\x0d\x7a\x7d\x14\xb0\x76\x6c\xa8\x6d\x6b\x35\x38\xf2\xd6\x27\xfd\x6c\xbb\x6b\x33\xdb\xc3\x00\x77\x42\x59\x42\x7d\xaa\x94\xb3\xbf\xaf\x81\xb0\x6f\xab\xf2\xf3\x0b\xbf\x79\x60\x42\xe1\x94\xef\x05\x5a\x13\x01\x8f\x0e\x31\xb9\xc9\xb6\xbb\x5d\x64\xc6\x99\x6b\x33\x5a\x4c\x9b\x37\x9d\x52\x1b\xdc\x24\x45\xd4\x4d\x0b\x4b\x61\x7c\xf3\x9c\x32\x0b\xb9\xab\x46\xdf\x4a\xf5\xcf\x46\x09\x46\xfd\x72\x46\xd2\xc5\xf0\x9b\x26\x18\x8f\x35\xf9\xea\xa4\x6e\x02\x57\x77\x7a\x13\x96\x69\xa0\x8d\x7e\x3f\xf0\x3a\x89\xb7\x9a\xcc\xfd\x97\xec\xea\x94\xfa\xce\x9b\x8a\x07\xcf\xb2\x01\xae\xca\x77\x97\x7f\x9d\xa0\x6e\x38\x3d\xcf\xa8\x3b\x5b\x94\xf9\x0e\x4f\x98\xd9\xd0\x32\xd9\xe7\x95\x94\xf5\x44\x47\x9b\x97\x50\x82\xc7\x3f\x34\xf2\x13\xd3\xb3\x23\x5d\x81\x2d\x46\x49\x55\xb9\xd1\xf5\xe0\x1a\x7e\x4e\x3f\xcb\x98\x55\x7c\x92\xe0\x5e\xfc\x49\xea\x5c\xa0\x68\xea\x85\x0f\xb9\x8b\x35\x8b\x3c\xe5\x1d\xc4\x44\x51\xbe\xf7\xc9\xcc\x3b\xd8\x99\xa2\xa4\xa7\x70\x92\xdd\x1c\x40\xe3\x9a\xa2\x06\x8f\x51\x70\x1d\xc8\x64\x7e\x34\xf2\xa7\xfb\x75\x05\x97\xe5\x49\x21\xb2\xb1\x49\x2a\xb3\xd8\xdf\x75\xec\x09\x93\x3e\xe6\x20\x9f\xa8\xea\x0d\xe4\xc6\x7f\xac\x59\x1d\x9f\xe8\xe8\xf1\xc1\x58\x25\x22\x87\x6d\x98\x59\x2a\xae\x54\x4f\x01\xc4\x2f\x7e\xed\x90\x08\x8b\x99\xcd\xfb\x03\x83\x50\x86\xa7\xcb\x01\x8a\xdf\x8c\x7e\xe5\x01\x1f\xb1\x10\x65\x83\x28\xe9\xf5\xcd\xa0\xe5\xbd\x4a\x59\x2a\x44\x14\xc1\x1b\x66\x5c\x8b\x69\x58\xe6\x53\x5e\xba\x69\x1b\x88\x77\x08\x9c\x4c\x8f\x15\xdf\x1a\xdf\x88\xb8\xe0\x95\x5a\xfe\xde\xcd\x26\xae\x36\xc1\xa5\x32\xd0\x5a\x30\x47\xf8\x04\xb7\x8d\xdf\xa8\x02\x2f\xb3\x03\x3b\x58\x00\x5d\xb1\x4a\x5c\x84\x90\x45\xd5\x8c\x64\xcf\xe3\xd4\xc9\xf9\x76\x66\xbb\x13\xda\xf5\x01\x5e\x8a\x98\x99\x5d\x0e\x14\x5b\xee\x2d\x85\x14\x5a\x89\xb2\xa2\x1f\xf3\xa4\xae\xc9\x7a\xbd\x61\x7f\x2e\x98\x02\x07\x27\xa2\x05\xf2\x7a\x7e\xdd\xe0\xa0\x5a\xe5\x72\x65\x22\x9a\xa7\xb2\xb0\x5a\xca\x44\x78\x6b\x4c\x23\xd3\x8b\x32\xe1\xdf\x70\x6d\x25\xa7\x2d\x7c\x7e\xec\x58\x7a\xe6\x99\x76\xd1\xb7\x03\xab\xcc\x48\x7f\xa0\x0c\xaf\x7f\xa0\x6a\xa3\x85\x48\xf0\x01\x2f\x31\x24\xe8\x30\xa4\x81\xf9\xcd\xb8\xea\xe1\x4c\xbb\x1f\xf5\xfa\x36\x9b\xa2\x83\x49\xfe\xa2\x86\x03\x33\xdc\x41\x54\x18\xab\x0f\xe6\xc1\x07\x76\x16\x56\xc6\xa6\x7a\xca\x24\x10\x12\x85\x91\x49\x26\x7d\x14\xba\x84\xf3\x01\xdb\xf8\xb0\xae\x9a\x2f\xe1\x5c\xe2\xff\x71\x4c\x99\x81\xcd\x22\x69\x52\x20\x53\xe4\x15\xce\x6f\xd4\xd7\xce\x6d\x98\xb1\x97\xa3\xe3\x55\x79\x69\x7b\x07\x2c\xea\xc5\x69\x9e\xaf\x4e\x79\xfc\xde\x05\x4d\xd7\xbf\xe0\x09\x74\xff\x68\x0f\x95\x48\x28\x28\xb9\x5e\xc1\x1d\x3c\xd3\x54\x9c\x0d\xcd\x60\xe8\x29\xb8\xc8\xb2\xae\x2a\x52\xe8\x55\x4f\xeb\xee\xdb\x78\x71\x87\xab\xdb\x7e\xe9\xf1\x35\x2f\xc7\xfc\xc2\x4f\x47\x0e\x78\xf5\xf9\x5f\x46\xcc\x46\x13\xe8\x7f\x43\x08\x15\xdc\x35\x41\x55\x65\xb3\x8c\xcf\xca\x5e\x6a\x0f\x4c\x16\xf1\x18\x49\xba\x1f\xf4\x15\xc4\x53\x74\xeb\x06\x3b\xf8\x02\xd1\xaa\x94\xe1\x2a\xfa\xca\xf2\x46\x3b\xd8\x95\xaf\xb5\x34\x59\x8c\xfe\xae\xb0\xc8\x7c\x9b\x35\xb6\x0b\x26\xb1\x39\x9b\xaa\x88\x2d\xb0\x2f\x41\xc7\x5d\x81\xe7\x5f\x38\x00\xa7\x71\x97\x4c\x62\xa3\x83\xc0\xcd\xaf\x15\x37\x0d\x06\xfd\x83\x96\x72\x9e\xf9\xbe\xb2\xd8\xf9\xbe\xc2\x28\xc4\xe5\xc2\x52\xc4\xa3\x0b\xb4\xbd\x8f\x04\x5a\x3d\xe4\xc8\x58\xc4\xf9\xd2\x4c\xbb\x6f\xe3\x21\xdd\x10\xc7\xf7\x55\x40\xc8\x06\xb4\x33\x81\x97\x68\xb9\xb3\xf2\x28\x05\x1a\xdc\x71\x04\x04\x9c\x40\xef\x6a\xb1\x9b\x71\x81\xa2\x43\xd3\xcf\xb7\x17\x4d\xd1\xf7\xf2\x3e\xe2\x2e\xad\x22\x2a\x97\x5f\x48\x03\x7f\xaa\x3a\x46\x59\xc9\x02\x4a\x32\xc2\xad\x3e\x97\x5f\x8f\x65\xfd\x55\xe4\xb6\xa1\x1d\x92\x1b\x4a\x5d\x49\xce\x05\xa3\x71\x73\x1a\x52\x7b\x4c\xb3\x50\x56\x3b\x0f\x60\xf1\xad\x64\x1a\xfb\x98\x6b\x95\x9a\x78\x35\x8f\x30\x28\x11\x94\x80\x2f\xbf\x2e\xab\x9c\x63\x10\x0e\xc8\xa5\x77\xa2\xa5\xc4\xab\x28\x26\x21\x3f\xe1\x46\x85\x18\x88\x3d\xa8\xd2\xed\xa7\x43\xbb\x58\xc6\x3c\xda\x02\x89\xe0\x86\xf6\xae\xba\xa1\xe2\x54\x91\x45\xbd\x1e\x2b\x0c\xee\x17\xcb\xb1\xaf\xd3\xd7\xe7\xd7\x2e\x18\x2d\x9a\x38\x4e\x4b\x3e\x1a\xa4\x97\xdf\x72\x72\x02\x1b\x6e\x87\x67\x91\xc3\xbd\x21\x47\xe6\xce\x2c\xbf\x19\x79\x32\x7e\x6e\x59\x30\x1d\x9d\xb7\xb7\x03\x05\xb1\xfe\x54\x5b\xc8\xac\x8f\xad\xb7\x67\xab\x8f\x71\x1b\xc5\xd9\xeb\x39\x95\xc4\x0b\x8a\x85\xde\x8b\x6d\x92\x68\x28\xf6\x86\xf6\x03\xda\x78\x60\x1a\x53\xd8\xa4\xeb\xb0\x38\x68\x4c\x73\x76\xc2\x6f\x9a\x54\x55\xf3\x34\x5e\x76\xd7\x05\x06\xd8\x49\x45\x67\x3e\x39\x2e\xfc\xf3\xc2\x81\x76\x61\xb2\x9e\x95\xf9\x42\xcd\x85\x8a\xdf\x04\xbe\xd4\x5a\x4c\xb3\xc1\x04\xad\x04\x19\xaf\xf8\xf3\xf9\x6b\x58\x2f\x82\xc9\x1f\xe7\x76\xce\x1f\xa8\x41\x25\x6b\x75\xf6\x78\x16\x0c\x10\x74\x6c\x27\x6a\x6e\x03\x9e\xaa\xb9\x8e\xa8\x2c\x44\x95\x71\x42\x59\xbb\x6b\x07\x69\x42\xd3\x66\x59\x12\xee\xc0\xf3\xd0\x87\xf1\x32\x74\x6e\xae\x1d\x5b\xd3\xad\x73\xd6\xd1\xd5\x90\x7c\xa9\x49\x5a\x7e\xa1\x8c\x63\x05\x5c\x3e\x05\x62\x88\x4c\x32\x04\xf0\x47\xfa\x16\x1e\xff\x8a\x84\x7e\x5b\xc7\x53\x03\xb7\xad\x79\x6f\x83\x9e\xcd\x21\xda\xa5\x60\x4b\xf3\xde\x8d\xa6\xfa\xfb\x6c\xbe\xd2\xe8\xd8\x92\xf7\xa3\xac\xf8\x9b\xfc\x10\xd5\xb9\x92\xe5\x8f\x54\x1f\x84\x16\x28\xc9\x62\x0b\x19\xe6\xde\xa8\x35\x73\x70\xf3\x22\x7e\x93\x32\xe3\xc3\xbf\x0e\x94\x05\xf6\xd4\xdf\x5a\x43\xa0\x44\xa3\xe5\x99\x8e\xe7\xaa\x02\x17\x48\xc5\xc6\x17\x7f\x75\x4d\x59\x0b\x7c\x86\x20\x86\x62\xbc\x4a\x71\x4c\x1b\x36\xa0\x75\xf8\xf4\x9a\x32\xb3\x7b\xac\xb3\xf5\xf9\xee\x9b\x6b\x17\x76\x40\x40\x97\xd2\x11\x5d\xb4\x05\x9a\x78\x3e\x7b\x19\x8a\xd0\x64\x55\x70\x6a\xf9\xf6\xeb\x49\x8d\x59\x3a\xd9\x44\x00\xff\x95\x2f\xfc\xf6\xfc\x17\x7e\x6b\x6e\x4f\xf5\x3b\xd0\x79\xba\x88\x6c\x59\xca\x41\x3f\xca\x3e\xb7\xa7\xa3\x54\x9a\x3e\x56\x4b\xf5\x4a\xe0\x89\x6c\x68\x68\xb8\xd8\xe4\x6d\x26\x6f\x8e\x5a\xfb\xe6\x04\xda\x22\x2e\x04\xb4\xd5\x54\xf3\x41\x20\xd9\x57\x68\x28\x23\xd9\x05\x1e\x00\xa2\x3f\x9b\xdf\xe2\x03\x2e\x8f\x34\xaf\x5f\x8e\x85\x61\x3a\x2c\x63\x6a\xfe\x38\xc5\x82\x1b\x6a\x42\x30\xde\x73\x7f\xb6\xbd\x98\x45\x36\xe9\xca\x99\x88\x94\x73\x02\x83\x0b\x3c\x2d\xa4\x38\x9b\x9b\x5e\xbc\xf5\xd5\xa2\xaa\x36\xa8\x12\xad\x01\x3d\x59\xdf\x89\xa2\x37\xbe\xc0\x0f\xe8\x96\x08\xfb\x4e\x35\x49\xee\xbb\x0e\x4d\x61\x86\x13\x9e\x2e\x84\xfa\xd2\xf1\xa0\xf6\x3b\x0e\x88\x6a\x0a\x55\x65\xf0\x4e\xff\xd4\x5e\xc7\xde\x91\x49\x9e\x22\x15\x20\xfe\x00\x76\x7d\x5e\x53\xf6\x77\xe1\x7a\x71\x18\x9e\xe1\x9b\x2c\x50\x58\xdd\x1d\x0f\xfb\x93\x1a\x5e\xa1\x72\x32\x6e\x86\x8a\xb0\x2d\x95\x02\x22\x79\xdb\x10\x1f\xdb\x44\x3c\x70\xd3\x71\xe4\xff\xdf\xd1\xf4\xd7\xef\x34\xfc\xda\x01\xc2\x4f\x55\xa1\x82\xbe\x22\x9a\x19\x3f\x04\x7f\x14\xfc\x66\x40\x52\x50\x74\x8e\xa7\x14\x87\xa6\xe7\xdb\xcb\x26\x2e\x25\x48\xe2\x02\x79\x6b\xf0\x9b\xe0\x61\x6f\x95\x0b\x17\x08\x4c\x94\x27\x35\x26\x7c\x72\xed\x41\x83\xe8\x85\xb2\x08\x99\x63\xe4\x10\x06\x1e\x6d\xa0\xa0\xe4\x45\x99\x2d\x44\x89\x45\xe7\x03\x85\x06\x60\xf1\xe2\xd4\xdf\x9a\xf3\xfd\x96\xdd\xee\x19\x04\x34\x37\x14\xd4\x97\x92\x96\x3a\x37\x6a\x3d\xf3\x8c\x63\xf5\xb5\xbe\xfc\x05\xc1\x27\x02\x3e\x28\xdc\xbf\x46\x34\x45\xd2\xcb\x56\x29\x1d\x42\x1a\x7e\x1b\x9b\x15\xab\xee\xf4\x48\xc9\x47\x6f\x34\xfe\x7e\x5e\x98\xac\x00\x77\x41\x6d\x60\xcf\x4a\xf2\x02\x3c\xd7\x47\xca\xbf\xe8\xe1\xce\x1e\xd5\x08\x22\xbb\x2b\x1a\x24\x6d\xb2\x65\x99\xd6\x80\x13\xbd\x47\xdf\x46\xba\xae\x58\xd8\xaf\xd9\xc5\xc5\x28\xb3\x71\xcc\x7a\x8a\x00\x39\x5e\xc7\xd7\xe0\x37\xca\x76\x4c\xb1\xd8\x14\x47\xe4\x88\x32\x8b\x38\xf2\x00\xe5\x05\x28\x52\xbb\xeb\xb9\x50\x83\xb4\x35\xd4\xec\x5d\x33\x30\x3d\x77\x04\x62\x59\x22\x66\xf3\xeb\x91\xe2\x6f\x2c\xa7\xde\xa2\x5d\xb0\x6a\x0a\xb7\x56\xe3\x7e\xda\x28\x7b\xb2\x3a\x59\x04\xca\xad\x8c\xd1\x1e\x82\x61\xbe\xa0\xd7\xab\x9b\x0f\xd0\xed\x54\xa7\xca\x3d\xc5\x95\xc0\xe7\x9e\x4f\xd0\xe1\x85\x0a\xe5\x97\x34\xf1\xf5\x0e\x55\x16\x58\x9b\x93\x6b\x4a\x38\xf6\x5f\xe0\x01\xe1\x78\xbe\x45\x88\x4a\x49\xf2\x94\x36\xd4\xff\x4d\x0d\x40\x8c\x3d\xb9\xe3\xe9\x10\x8a\xf3\x33\x07\x11\xe1\x36\x9f\xea\x28\x47\xa1\xed\x1d\x2d\xec\xa7\xa0\x7e\xad\x4e\x75\x0a\x88\x8c\x9f\xa0\x3f\x57\x4c\x61\xb3\x95\x34\x5b\xca\xa7\x14\x22\xef\x0f\x46\x9a\x84\xce\x6a\x15\x14\xcc\xfe\xb3\x3d\x6b\x7e\xea\xfe\x4b\xf5\x20\xed\x1d\x86\x8a\x42\x3c\x3b\x50\x2d\x3f\xd2\xf1\x58\xe7\x47\x9c\xb2\x63\x91\x59\x93\x97\xd9\xaa\x84\x30\x6c\x5b\x8e\xfc\xfc\x66\xcd\xcf\x4a\xb9\x02\xb0\x5d\xc2\x5a\x61\x9f\xdd\x54\xa2\x16\x97\x30\xb6\x41\xda\x85\xd2\x05\xfb\xf7\xe2\xc8\x63\xf9\x0f\xeb\x2a\xf8\x98\x92\x45\xcb\x53\x03\xeb\xf2\x43\xd3\x1c\x08\x59\xb2\x1b\xbd\x84\x0d\xe5\xce\x3b\xee\x86\xf1\xf2\xcb\xed\xa1\x59\x9d\x54\x89\xd0\x05\xa5\x78\x7d\x97\x16\x81\x3c\x45\x8f\x93\xfb\x7e\x63\xf7\x6c\x55\xf2\x13\xf4\x2e\x7f\x3c\xaa\x02\x11\xbf\x76\xb8\x96\xdc\x26\x39\xe1\x22\x79\xee\x06\x9e\xf6\xbb\xb4\xd1\xf9\x75\x93\x5e\x4a\x37\x8b\x86\x43\xb7\x43\x64\xd2\xa0\xa6\x0e\x4d\x13\x74\x6a\x19\xd6\x14\x82\xce\x68\xdb\xc3\x33\x5a\x80\xb8\xcc\xba\xa9\x04\x6f\xf4\xa7\xde\x0b\x7c\xf7\xeb\x3d\x2f\x2b\x16\x85\xfd\x68\x42\xe1\x65\x39\x8b\xc4\x52\xfd\xd7\x58\x70\x38\xbf\xb7\xab\x18\x17\xa6\x83\x01\x69\xc4\x54\x0f\xda\x0d\x50\xf6\x09\x96\xe7\x42\xb0\x05\x74\x43\xc3\xcd\x67\x1f\xa6\xd3\x0d\x1d\xdd\xaf\x62\x7b\xa1\x29\xb6\x9d\xf2\x4f\x2c\xdf\xb3\x41\x4d\x0e\x86\x6e\x10\xa0\xd0\x1b\x4a\xc9\x68\xd7\x1a\xb5\x42\xf9\x6f\xe9\xc2\xef\xbb\x8a\x01\x79\x8b\x08\xe7\x82\xa4\xa3\xb4\x8c\xed\xbe\x9a\xee\x6f\x1c\x2d\x09\xbc\x53\xbe\x86\x87\x2a\x5d\x50\x45\x68\x91\xa6\xbb\x15\x9a\xe5\xd3\x91\x23\xc2\xfd\xb3\x3d\xb4\xeb\xf1\xe4\xef\x50\xc0\x72\x92\x11\xfb\xa7\x79\xb7\x6e\x47\x9b\x0a\x3b\xfc\x26\xee\x03\x12\x53\x9e\x81\xe1\x84\xfd\x50\x3d\xb0\x89\x35\xad\xd6\xac\x1e\x34\x69\x39\xf3\xfc\xdc\x5d\xb4\xc3\x54\x8d\xb7\x4a\xe6\xe6\xe0\xa7\x9d\x66\x3c\xb0\x73\xe8\x74\x67\xc9\x53\x63\xb4\x3d\xb0\x67\xc0\x85\x1e\xdf\x2f\xce\x92\x35\xf0\xfa\xcd\x26\xc8\x4a\xdf\x66\x51\x61\xd8\x29\x5c\x65\x4a\xf3\x2e\x53\xf2\x64\xff\x6e\x1a\x25\xbd\x87\xbc\xce\xd9\x4d\x35\x0f\x38\x82\xac\x4c\xa6\x8d\xb4\x0c\x19\x47\x18\xa8\x31\x0b\x97\x29\x92\xf9\xfa\x26\xca\xd4\x9a\x12\x2a\x7a\x93\xd2\x72\x81\x21\x36\x8c\xd3\x42\x9b\x14\x36\x23\x73\x69\x44\xfd\x8f\x14\x40\xe2\x3d\xe0\x68\x5c\x1a\x53\x2d\x32\x1c\x58\x27\x47\x2a\xb5\xdb\xd6\x69\x29\x15\x88\x86\xc7\x62\x93\x22\x2a\x62\xd9\xdf\xb8\xe4\xd3\xda\xd5\xff\xb4\x2b\x05\xc2\xd4\x84\x7d\xc7\xf9\x73\xbd\x7d\xe7\x23\x00\x6b\x00\x21\xf4\x34\xe0\x2e\x6c\x9e\x57\x1f\xc7\x31\x0b\x4b\xe0\x5b\x4a\x3f\xf1\x5b\x4a\x4d\x74\x68\xc3\xd0\x74\xa3\x38\x4e\x6d\x8e\x0f\xc4\x5a\x3d\xa2\x66\xbc\x48\xed\x85\x75\xbc\x35\x98\xee\x9b\x6b\x2f\x94\x19\xda\xda\xd8\x31\x6f\x8c\x7c\x74\xbf\x8a\xbb\x84\xef\xc8\x9a\xc4\x82\x66\xf1\xb4\xb0\xa1\x35\xa1\xa5\x29\x0c\x2b\x14\xd0\x74\x0f\x47\x0c\x16\x06\x1e\xec\x45\x8d\x11\xfb\x00\xb7\x4f\x66\xcf\x0a\xd0\x9a\xa5\x0b\xb1\x1d\xe4\xbb\xfd\xcc\xe1\xbd\x40\xb5\x18\x8f\x69\xb5\x96\x4f\xb1\xbc\x70\x6c\x40\xdb\xd0\xb9\x98\x1d\x12\x7e\x0f\x10\x09\xbc\x08\xd4\x88\x6e\x07\xc2\x29\xb6\x23\x24\xef\x05\xb3\xe6\xd9\xcb\xac\x17\x9d\x96\xc5\x0e\x65\x03\x05\x42\xa0\x1c\x3e\x38\x99\x85\xb2\xe8\x81\x09\x0c\xa8\x55\x36\xa0\x22\x48\x79\x6c\x2b\xf2\xb1\xca\x6f\xe7\xe6\xfe\x7f\x3e\x88\xfe\x39\x65\x35\x22\x91\xdc\xfa\x92\x48\xae\xac\x07\x4a\x2b\x10\x39\x2f\x9e\xf9\x89\x60\xe2\xc0\x6f\x7f\x49\x98\x8c\x5a\x6f\x11\xfa\xa5\xa2\xd6\x8c\x6d\x27\x02\xa2\x4a\x39\xef\x9e\xee\x1b\xfd\x02\xa7\x0b\x32\xa1\x8b\x2c\x46\x21\xfa\x7b\xd4\xaf\x47\xdc\xff\x0b\xec\x30\x31\x3e\x51\x26\x2e\x7f\x49\xf1\xdd\x69\xe7\x3b\x03\x03\x48\x5e\x38\x81\xfd\xea\xa4\xc0\x3d\x79\x93\xd4\x72\x70\x9e\x9d\xd5\xde\xfe\xd7\xf1\x90\xb9\x3b\x4c\xfb\x07\x47\xd3\x9b\xb5\x9a\x23\xd0\x08\xe8\x0d\x7a\xe6\x48\x4b\x76\x10\xeb\x11\xd3\xe2\x3f\xd4\x52\xab\x2e\x19\x1b\x44\xdd\x15\x6b\x97\x5a\xbe\x33\x0f\x5b\x61\xd9\xbe\x52\x34\x47\x71\x4c\xe4\x43\xfc\x2d\x40\xbd\xd8\xc9\x92\x2e\x0b\x95\xf1\x39\x65\x19\x91\x14\xf6\xd5\x62\x42\xd9\x12\x00\xf6\x83\x2c\xf8\x9e\xfa\x2e\x17\xd4\x4c\xe2\x3f\x78\xe9\xef\x83\x66\x84\x40\xff\x4b\x1d\x35\xbb\xb8\xa8\x9a\xd9\xb7\x69\x8d\xe0\x0b\xef\x5e\x7b\x42\xd9\xe6\x0d\x16\x4c\xd6\xad\xea\x8e\xea\x17\x9d\x83\xbe\xf3\x10\x3c\x33\x16\x49\xf7\xee\x6d\xe7\x7d\x33\x64\x2f\x61\x25\x07\xf8\x12\xdf\x2c\xd6\x0e\x13\xdb\x92\x2d\x40\xe3\xdf\x68\xef\x9f\x9f\x54\xe2\x81\xef\xe3\x91\x21\xa4\x9e\x50\x10\x6e\x68\x40\xf1\x0f\x05\x4f\x2a\x1f\xff\xc2\xf6\x84\xc5\xe2\xc0\x07\xac\x03\x2f\xb8\xcc\xea\xcf\xa0\x3b\xb9\xa1\x00\x53\xa1\xc9\xd2\x78\xc2\xf7\x8a\x8f\x29\xed\x09\x1e\x75\x61\xe9\x9f\x1e\x1b\x16\xce\xce\x8a\x25\x8b\x9a\x3f\x3c\x46\x5a\xb3\x98\x5a\x3d\xd5\xf1\x63\xe3\x6b\x6a\x58\xb3\x50\x66\x0b\x26\x59\xe2\xee\x8d\x68\x25\xd0\x1d\xc2\x1b\xa6\x76\x63\x54\x71\x7b\x2c\xec\xce\x1c\xa4\xc6\xaf\xe6\x85\x62\x61\xf0\x6b\x35\x79\x0a\xd3\xb8\xbb\x62\xe3\xb8\x55\x97\x97\x56\xac\xac\x63\x0a\x21\xb4\x62\x93\x82\x22\x27\xf2\x85\xeb\xe8\x20\xa3\x42\x7e\x13\xa4\x32\x11\x42\xf0\xb9\xfa\x45\x6d\xca\x44\x97\x81\x74\xed\x4e\xa0\x58\x52\xd7\x94\xa1\xce\x9f\xd2\xc2\x73\x52\x49\x73\x73\x07\x36\xc7\x25\xad\x24\x1b\x19\x2e\x46\xaf\x89\x59\x12\x62\xff\x05\x45\xe8\xf9\x7d\xb4\xb9\x2e\x8e\x75\x80\xab\x4a\x38\xa6\xf1\x8f\x9b\x43\x5f\x54\x73\xe8\x8b\x8a\xc0\x92\x97\xd9\x10\xf3\x83\x29\xd5\x2f\x3c\xcb\x71\x99\x3d\xcf\x28\xec\xa0\x23\x7c\x24\xf0\x0c\xc1\x77\x29\x20\xf0\xbf\x6b\x47\xbc\x34\x1f\xd8\x22\x0a\xf3\x89\x1a\x63\x44\x59\x4a\xdf\x52\x08\xd9\xed\x9d\x86\x93\x3c\x36\x49\x37\x8f\xa3\x2e\x08\xcb\x28\x56\xc1\x86\xc6\x57\x47\xd3\x0c\xa1\xf3\x4f\x1a\x86\x0f\xcf\xb7\xbb\x76\x40\x48\xd1\x43\x22\x90\x88\x4c\x82\x5f\xbb\xa9\x54\x66\x63\xbb\x6c\x92\x62\x52\x39\xce\xfd\x59\xf5\xc7\x37\x77\xd1\xfa\xe5\x1a\x61\xcd\xd3\xc3\x4e\xa9\x24\x22\x4c\x93\x3c\x8d\xa3\xae\x29\x6c\x97\x01\xc5\x58\xb6\x97\x95\x11\xd6\x49\xe5\xe9\xcb\x44\x07\xfe\xa1\xc0\xdf\xb3\x15\x6b\x96\x6c\x22\x9c\x20\x36\xa4\x55\xce\x77\xc7\x94\xf8\x46\x4a\x32\xfe\x65\x42\x5e\xf9\x28\xb5\xd0\x3e\xc0\x01\xca\xaf\x55\x43\xfd\xa0\x65\xb9\x75\x84\x86\xeb\x94\x18\x0a\xfd\xc9\x77\x19\x4e\xa8\x67\x98\xa7\x65\xd1\x5f\xb1\x79\xc1\xfb\x14\x4f\xfc\x94\x02\xb1\xbe\x3d\xd2\x55\x98\xca\x69\x06\x69\xd7\xc6\x0f\xd1\x7f\x8a\x19\x01\xed\x05\xc0\x71\x6e\xe2\xdc\x44\xee\xfb\x61\xe0\x99\xe4\xd7\x34\x16\xec\x62\xe0\xc5\xa5\x3e\x54\xcc\xc9\x6b\x68\x5b\xf1\x9f\x52\xf8\xf4\xf3\x2a\xc2\xe4\x85\x25\xa4\x87\xe2\xf5\xb3\xee\xae\xf8\x97\x36\xa0\xd4\xfb\xe9\xc0\x92\x7b\xa6\x03\xba\x38\xff\x8d\x53\x81\x2f\xe3\x50\xf7\x4b\xbe\xf2\x64\x03\xcc\x21\xdf\xd5\x72\xea\xcb\x27\x28\x52\xf0\x71\xaf\x82\xd4\x5d\xad\xdb\x7a\x15\xb7\x07\x07\xd6\x76\xc0\x70\xd0\x31\xdf\xac\x19\x9d\x56\x9b\x4d\xd0\x7e\xbe\xaf\x10\xc6\xd6\x64\xf1\xea\x54\x95\xe6\x38\xc5\xee\xea\x4f\x88\x08\x77\x1d\xd5\x30\x27\x3e\x5b\xf7\x6b\x1e\x8c\xbe\x08\xec\x47\xf9\x13\x9e\xad\x7d\x0f\x17\x8a\xef\xfb\x29\xda\xb8\xc2\x33\xa4\xfc\x03\xc7\x1d\x27\x96\x58\xaa\xef\xd2\x92\x42\x07\xfd\x1d\x0e\x24\x62\xf5\xad\x24\xbb\xea\x35\xac\xbf\x62\x7c\x51\xf6\x0f\x1d\x79\x36\x44\x1f\xeb\x43\x0e\x31\x5a\xf6\x78\xc3\x7d\x5f\x64\xca\xe7\x94\x8b\xf3\x67\x3a\x14\xc2\xc1\x4f\x39\x8d\x23\x19\x41\x78\x7c\x60\xf9\x6c\xdb\x14\x85\x1d\x0c\x65\x46\xa5\xf5\xbf\xf9\xb5\xe2\x12\x5b\x93\x17\x04\xdd\x90\xf9\x97\x1f\xf6\x73\x83\x8d\x47\x92\xf4\x8d\x25\x70\x78\xe9\x8f\x53\x81\x92\xf2\xda\xd1\x51\x7c\xc6\xa5\xb2\xa5\x7d\xd9\x7e\x54\x83\xb5\x29\xb7\xd6\xa4\xcc\x72\xf1\xac\x14\x62\x98\x27\xca\x9d\xae\xc3\x60\x25\xda\x19\x48\x5a\x02\x0e\x22\x5a\x35\xf4\x93\xa2\x68\xf3\xd9\x1a\x45\x37\x2f\x6c\x66\xbb\x53\xbe\x36\x80\xf1\x39\x9a\x39\x77\xd0\x0f\xe3\xff\xc0\xb7\x76\x07\xa4\x73\x48\x3b\xfd\xc0\xa1\xf2\x2b\x76\xc5\xc6\x55\xbd\x5e\x2d\x2a\xb7\xc8\xe7\xe6\x36\x99\x01\x21\xea\x9c\x4d\x43\x86\xa1\x2d\x7b\x36\x2d\x5a\x7a\x0e\xc2\x88\x20\x31\xbc\xdd\x9a\xb0\xbc\x48\xc0\xfc\x4c\xf0\x0d\x82\x07\x52\xd8\xa0\xb1\x4f\xda\xbb\xb7\x5d\x26\xe8\x09\xb5\x94\x4f\xf7\x79\x85\x2e\x3c\xef\xee\xed\xa2\xcd\xb2\xf2\xb5\xd7\x22\xe5\x95\xf1\xa6\xf6\xca\x78\x73\xec\x94\xc7\xb4\x64\x30\xb0\x49\x61\x98\xee\x82\x7a\x64\x83\xae\x8a\x5f\x8f\x31\xdc\x0e\xbe\xd0\x2e\x31\x80\x72\x2d\xee\xfd\xd3\x1c\x6a\xb7\x51\x9f\x06\x34\x94\xcb\x2e\x47\xa7\x33\x2a\x5e\x9d\xd4\x3a\xb7\xf4\x4b\x28\x65\x70\xd2\xc9\xd0\xa9\xe5\x34\xee\x6e\x8c\x76\xbb\x30\xf3\x0f\x77\x79\xf1\xfb\x4f\x6a\x08\x22\x4a\x80\x30\x4a\xbd\xcd\x75\x84\xdb\xc8\xce\xd7\xe5\x26\xd5\xb5\x62\xc5\x42\xb9\x14\xaa\x2d\xe0\x65\x45\x05\xa0\xc1\x42\x31\x8c\xd3\xdc\x92\xdd\x39\xea\xea\xdd\x1d\x8f\x01\xbb\xac\x9a\x9d\x57\x11\xa9\xb0\xa3\xd6\x9b\xa0\x89\x0b\x51\x17\x20\x06\x0f\x2d\x58\xd7\xd0\x82\x75\x0f\xf0\x00\xa4\x12\x47\x2b\x0e\xb8\x4f\x55\xd7\xea\xd3\x26\xdc\xd7\xa2\x89\xb2\x44\xcc\x35\xf0\x30\x4e\x6b\xc7\xcf\xd3\xca\x04\x47\xe4\x8d\x27\x3d\xc3\x09\xcf\x03\x89\xfe\xd7\x95\xb3\xc6\xd7\x11\xcc\xf9\x87\x02\xef\xbe\xa5\x52\x0f\x48\x47\x0a\xc9\xde\x0b\xc2\x9e\x0d\x3c\x8f\x3e\xb4\x49\x41\xc7\x9b\x33\x42\x75\x10\x26\x3c\x7e\x3c\x72\x76\x77\x41\x62\x75\x43\x8d\xab\x4d\x66\x16\xaa\xc0\xa1\x71\x97\xdc\x93\xe2\x37\x4a\xd7\x36\x2e\x96\x91\xb3\x62\x21\xfe\x11\x5d\x13\x9f\xd3\x81\x6f\x97\x9c\x73\x53\x82\x9e\x4d\xaa\x84\x51\x38\x00\xb2\xb5\xd4\x36\x53\x25\xde\xbf\x5f\x0e\xa9\x67\xe5\x30\xcc\xb3\xb3\x72\x2a\xd4\xdb\x7d\xfb\xa7\x5d\xb1\x48\x57\xe3\xea\x2b\xaf\x41\xfe\xb3\xb1\x6a\x6e\x7e\xff\x7c\x3b\xec\xb3\x85\xd7\x0c\x3f\xbc\xbb\x78\x0a\xfc\x46\x9d\x03\x61\xba\x92\xd3\xbc\x15\xb7\x95\xa7\xb4\x48\x32\x4f\x8d\x34\x68\x8b\x27\xe6\x22\x4c\xa4\xf5\x93\x13\x33\xd8\xa1\x1a\xd2\x9c\x23\x0a\x98\x0a\x7f\x04\x4d\x39\x1e\x19\x38\x03\x39\x67\xd9\xc9\xf5\x26\x0e\x9d\xa9\x8e\x6f\xa4\xa6\x59\xb7\x0a\xe1\x9c\x9c\x02\x01\x70\x6a\xec\x79\x48\x0e\x45\x1f\xcc\x3f\xa4\x18\x30\x2b\x69\x96\x43\x31\x5b\xac\x97\x15\x0e\x13\x8d\x0b\x37\x5c\xaa\x82\xb9\x50\xad\x69\xff\xb0\xaf\x1b\xae\x1c\xfd\x4b\xa8\x98\xe1\x24\xbe\xa7\x8f\x65\xde\x8f\x22\xe4\xe7\xbf\xc6\x30\x36\xab\x36\x63\x13\x1c\x67\x44\x7c\x68\xda\x49\x52\x56\x39\x97\x8c\xb9\x7d\x13\x16\xbd\x51\x34\xff\xae\x2b\x1b\x99\x30\x4e\xcb\xa2\x46\xbf\x45\x6b\x48\x73\x71\xb1\x46\xaf\xd6\xba\xb3\xde\xe7\xe3\x94\x92\xc2\xb2\xdd\x42\xf3\x9a\x95\xe4\x05\x21\x64\x37\xdf\x50\x30\x64\xa7\x5c\xdd\x72\xe2\x80\x70\x54\xe6\xd7\xaa\x07\x1e\x96\x71\x51\x66\x76\x52\x67\x50\xb7\xbd\xde\xce\xff\x01\x5c\xaa\xa0\xe7\x14\x0d\xe9\x5a\xe3\x91\xc9\xf6\xf5\x13\x6a\x88\xb4\xae\x0f\xed\x53\x08\xa0\x38\x75\x6e\x05\xda\x30\x65\x31\x0a\xa3\x62\x52\x51\xb6\x3e\x18\x29\xcf\xcf\x6f\x6a\xcf\xcf\x6f\xa2\x13\x26\x0a\x54\xe3\x59\x56\xb7\x4c\xbb\x56\xc6\x4a\xb8\xc7\xc7\x55\x4c\x38\xae\x36\x57\x46\x05\xdc\xec\xac\xb3\x9a\x54\x0d\x89\x73\x5a\xdc\x8a\xda\x1f\xc2\x46\xc1\x4e\xb9\xae\xec\x96\xde\x0a\x14\xb3\xeb\xae\x13\x17\x59\x34\x49\x62\xf1\x01\x4e\x8d\xba\xfa\x39\x19\xe6\x7a\x99\xd4\xdc\x0c\xec\xc3\x34\x10\x45\x9b\x84\xf5\xa0\x90\x08\x6f\x06\x4a\xc9\x11\xf2\xfd\xc8\x7c\x6e\x6b\xea\xce\xbb\xe8\xea\x08\x39\xcf\x1f\xb2\xc8\x0a\x51\x16\xff\x98\x0a\x33\xfe\x0c\x65\x85\xb2\xa3\xa3\x86\x4a\x6f\x36\x51\xb6\x6c\x0e\x19\x0f\x1e\xed\x35\x29\x89\xfa\x00\xfa\x45\xb9\x55\x48\xb2\xef\x2b\x09\x57\xee\x33\x0b\x97\x7f\xeb\x1c\x72\x76\xb6\x3d\x4c\x87\x13\x5a\x6f\x7a\xa4\xc8\x9c\xaa\x27\xe7\x1b\x84\x2b\x51\xbc\x98\x41\xdb\x48\x16\xe8\x24\xbe\x0f\x23\xf6\xe9\x66\xe0\x08\xde\xbe\xa6\xba\xd5\xa7\x54\x95\x93\x2e\xdb\x2c\x36\x43\x0c\xfe\x44\xf2\x55\x77\x90\x4e\x36\x9d\xf8\x45\x9f\x0c\x33\x26\xd4\xb4\xe1\x36\x45\x0d\xd4\x33\x3f\xa8\x4b\x67\x7a\xcd\x96\xc5\x28\x21\x19\xda\xea\x21\x63\x12\xf0\x96\xe2\xcf\xbf\xa5\xe0\xc4\x0b\xd5\x1a\xcd\x1f\xae\xaa\x14\x1e\xe6\xa9\x74\x88\xed\x5f\x91\x5a\xa3\x0b\x80\x66\x09\x57\x55\x28\x84\x7e\x14\xa8\x4e\xe3\x86\x12\x60\xfe\xca\xdf\x56\x93\x9d\x9d\x84\x52\x13\x47\x11\xba\x6e\xfe\x75\x25\x77\xad\x79\x68\x7d\x13\x65\x48\x60\x84\x35\xdd\x52\x74\x6a\xff\x5d\xe3\xa8\x28\x62\xfb\x68\x15\xd9\x00\xc3\x98\xe8\x78\x65\xbd\xa3\x81\x4e\x07\x02\xe5\xe4\xbe\x49\x1d\x67\x3c\xf7\xdd\x74\x9d\x0e\xe4\xa5\xbc\xa3\xab\x7b\x81\xfd\x0a\x45\x45\x1e\x6c\x8c\x7c\x53\xf3\x7e\xcd\xa6\x29\x50\x95\x30\xdb\xfa\xe2\xf8\x38\xcc\x0f\x5b\x49\x5b\x3b\x21\xdf\xa8\xb0\x93\xaa\x00\x3c\x4e\xcd\x36\xc6\x50\xf0\xe9\xc9\xff\x43\xb7\x4a\xd0\x15\x4f\x2a\x6a\x48\x1c\x47\x49\x0f\xd9\xdb\xcc\x41\xd1\x97\xa6\x6f\x22\x5a\xd3\x0f\xa2\x35\x0f\xb3\x34\x1f\xda\x90\x70\xd3\xbe\xec\x3d\xef\xf5\x7f\xff\xa3\xf3\xca\xe2\xc6\x74\xfb\x36\xa7\x69\x77\xcb\x69\xb0\xdc\x57\xf2\xf3\xf7\x11\xfd\x78\x9f\x3e\x93\xff\x6d\x0a\x2d\x48\x6e\xee\xd1\x1d\xc7\x32\xd9\x03\x21\x45\x19\x2e\x52\x25\x8e\xea\x93\xc5\x4e\x64\x74\x5e\x7d\x61\x3c\xa4\x5d\x18\xb5\xb2\x4f\x57\xf5\xdd\xee\xfd\xce\x9e\x35\x95\x89\xdf\xa6\x41\x03\xee\xfd\x66\xa0\x24\x98\xb7\x77\x70\x13\x41\xed\xdb\xd6\xa9\xc9\x7c\xb6\x66\x67\xef\xfd\xce\x93\x6b\x9e\x6d\xf1\x08\xa6\xc0\x0e\x16\xed\xfa\x6f\x3f\x83\xa3\x00\x2e\xe0\x38\x55\xff\xc2\x37\xa6\x75\x85\xf4\xbe\xd5\xa1\x83\xd8\x69\x12\xcf\xef\x9f\xe7\x51\x14\x83\x66\x78\x02\x4a\x20\x46\x07\xba\x73\xe8\x96\xef\x11\xac\x4a\xf0\xbb\xad\x17\xe5\x97\x5b\x9d\x2d\x3a\x7c\xcf\x55\x89\x5e\x4b\xe3\xb1\x6a\x18\xac\x06\xa5\x24\x11\x30\x62\xba\xa9\xcc\x2b\xd4\xec\x62\xac\x52\x7b\xb6\xbd\x18\xbd\xaa\x1d\x7e\x82\x1a\x37\xd9\x87\x91\x7e\xd9\xb3\x31\x6b\x56\x61\x56\xf1\x07\x98\x04\xf3\x9b\x26\xd7\x58\x09\xf9\x2d\x4f\x1a\xe4\xd4\x56\x46\x04\x8f\x38\xbc\x4c\x66\xba\xd0\x33\x44\xc8\x7d\x4f\x6b\xaa\xbf\xa7\x8e\xfa\x22\x4b\x8b\x82\xf4\x4d\xe7\xbd\x39\xe7\x3e\x6f\xce\xe9\x0c\x54\x16\x92\x9a\x81\xc9\x39\x6d\x60\x72\x4e\x0d\xbb\x09\xf5\x8b\xf3\x02\x50\xec\x5f\xa8\xdc\xea\xa2\x22\xaf\x1f\x1b\x6b\x13\x54\xb7\x3c\x8d\x57\xc3\x34\x49\x07\x51\x28\x18\x1e\x54\x60\xa7\x75\xef\xf1\xf4\x18\xdc\x1a\x0e\xb2\x69\x92\x97\xb1\xd7\x90\xc5\xce\xd9\x49\x49\x13\xf2\xe4\xed\x34\xad\x90\x9c\xd8\xe7\x73\xbd\x74\xa8\x05\x81\xd7\x3d\x0e\xe2\xff\xef\x9d\xa1\xb2\x34\x5c\x02\xfd\x13\x5f\x80\x69\x6e\x32\x94\x6d\x39\xcf\xfe\x56\xc7\x97\x5a\xeb\x2a\xbb\x59\x28\xf3\xd5\x29\x25\x33\x8b\x05\xc8\xc0\xa1\x91\x6f\xce\x41\xf5\x05\xcf\xf4\xc8\x48\x71\x5f\x8f\xa9\x49\x47\x5e\x86\xa1\xb5\x5d\x02\x59\x79\x94\x84\xc7\x2a\x9e\xa0\x3f\x82\xe8\xc9\x35\x1e\xe6\xac\x10\xc7\xe5\xff\x18\x17\x80\x7a\xe1\x40\x3b\x4a\x92\x74\xd9\xb8\x00\x87\xaa\xeb\x13\x65\xfb\xfa\x49\x53\x3b\x35\x4c\x07\x58\x71\xce\x89\xdb\xeb\x3d\x35\x5a\xba\xa4\x8b\x55\x96\xc9\x96\xbf\x62\x09\xee\x01\x8f\x5e\xce\xd6\x64\x4a\x4e\xd8\x29\x12\x6a\xcc\xc7\x38\xfc\x7c\xbe\x1d\x47\xb9\x13\x9c\x16\x1b\x32\x05\x32\xda\x50\x27\x67\x95\xed\xed\xae\x6e\x17\x3a\xbe\x2c\xce\x8d\x88\xb4\xa9\xe6\x96\x0c\x7a\x47\x2f\xff\x63\x9d\x4b\x5c\x51\x5e\xc5\xd7\x47\xaa\x41\x0f\xec\x2b\xca\xa3\x4b\x81\x42\x24\x9d\xd4\xbc\xb2\x6d\x9d\x3d\x8e\xa4\x66\x06\x69\xf5\x7d\x27\x54\xbb\xf0\xda\xc8\x73\xe3\x01\xd6\xe7\xe6\xfc\xe8\x61\xe5\x31\xf4\xb4\x5f\x5a\x57\xb5\x67\xe5\x11\x9c\x16\x78\x73\x8f\x8f\x55\xe7\x41\x59\xc5\x5e\x84\x85\x8b\x88\xca\x68\x1c\x43\x85\x1f\x57\xc7\xc0\x72\x2c\xee\x35\x22\x3d\x6f\xe2\xd0\xc1\x25\x9d\xc0\xa8\x4c\xd1\xcc\x67\xdc\x94\x9a\x22\xb8\x60\x82\xaa\x20\x83\x7c\xe8\x04\x45\x70\x88\x67\x6d\xa8\x2e\xe9\x7d\xdc\x54\x97\x69\xba\x2e\xc7\x51\xec\x03\x84\x11\x8c\x72\xf1\x4c\x76\xe2\x60\xc4\x93\xfb\xd3\xc0\xd3\x94\xef\xab\x74\x3e\x33\x99\x85\xec\x21\x3a\xc3\xdb\x69\x87\x22\x35\x3a\xa2\xd2\x24\xb6\x9e\x40\x8f\xfa\x16\xa7\x12\x72\x01\x4d\xae\x55\x5d\x6b\x62\xe9\x61\x34\xb9\xa9\xf9\x71\x41\x37\xca\xb3\x72\x08\x43\x32\xaf\xf7\x0b\x2f\x58\x7e\xdd\x34\x71\x25\x61\x5a\x5e\xfa\x8a\xb1\x32\xef\x4e\xbc\x06\x9e\xba\x59\x31\x55\x9c\x99\x77\xcd\x3b\x2f\x5e\xbd\x93\xba\x85\xae\x77\x72\x68\x9a\x1f\xf1\x91\x91\x12\x30\xb8\xa0\x04\x13\xbb\x51\x1e\xa6\x45\xdf\x7e\xa5\xd4\xd9\xce\x59\x64\x0b\xfc\xa6\x91\x10\x57\xc6\x52\x9a\x68\x57\x0e\x31\xe7\xf4\x2c\x2c\x28\x52\x0d\x6c\x52\xec\xd6\xcd\x13\xa0\x8c\xc4\xd3\xa0\xfa\x55\x7c\xe1\x1d\x48\x36\xf0\x84\x4e\x8c\xb4\x9c\x3c\xdd\x78\xe4\xe4\x57\x34\x97\xff\xd1\x35\x65\x93\xcd\x4c\x1a\x7c\xc8\x95\x40\x69\x04\xff\x85\xd3\x3c\x8f\x9f\x1b\x02\x64\x8e\xfb\xc4\xd3\x69\x7e\xb3\xa6\x7c\xce\x2c\xba\xcb\x7e\x06\xfc\x6f\x02\xef\x4a\xf0\x6f\xc6\x85\x51\x5e\x38\xd0\x5e\x34\x51\x2c\x51\x49\x04\x74\x94\xcd\xf0\x79\x05\x46\x7f\x25\x8d\x92\x22\x46\x97\x18\xc7\xd7\x11\x2d\x2d\x77\x24\xf0\x3a\x5d\xe0\x50\x4d\xd1\xf7\xc4\xa9\x7b\x1e\xad\x7a\x24\x7a\xaf\x2b\x49\x4b\xc4\x12\x31\xcd\xaa\x56\x03\xff\xcc\xd8\x53\x9c\xdf\x3f\xdf\xce\xad\x65\x27\x10\xec\x55\x4c\x03\xd4\x78\x65\x86\x7b\x33\xe3\x04\xc3\x43\xd3\xcf\x93\x91\x89\x3b\x47\xf8\x07\x03\xdf\x49\x3a\xef\x6c\xee\xc9\x0e\xb3\x17\x91\xcb\x3f\x0e\x6f\x29\x2a\x3d\x85\x18\x9d\x7b\x61\x93\xca\x6f\x8a\x0f\xd4\xa2\xc9\xec\x44\x95\x2f\xcb\x91\x53\xfd\x22\x6a\xcc\x5b\xf4\x54\xc4\x4c\xdd\xe7\x3e\x79\x34\x88\x62\x93\x4d\x61\xdd\x39\x53\x3d\x1f\x39\xaf\xd0\xb5\x8a\x16\xa7\x27\x6d\xbc\x49\xf1\x47\x86\xcc\x8f\xa9\x05\x31\x30\x49\x97\xfc\xe1\x51\xf6\x7f\x06\xd5\xad\x93\xc6\xf6\x54\xa3\x4f\xb0\x8b\x01\x29\xc0\xae\x94\x38\x53\x5d\x2c\x4e\x95\xaf\x2a\x54\xfa\x67\x10\xe7\x50\x4f\x3d\xbc\xa6\x44\xbb\xee\x07\xb5\x1c\xb0\xda\xf8\xe8\x39\xc2\x2a\x0c\x61\x7b\xf7\x5a\x43\xf8\xfa\x7f\x1f\x0e\x35\x20\x1f\x17\x4c\x58\xd8\x2c\x32\x13\x8a\x17\x82\x19\xa9\x58\xb2\xfa\x3b\xff\x81\x2a\xdb\x32\x1b\x71\xe8\xc3\xd5\x3d\x44\x5f\x9a\x5f\x8f\x51\x37\xaa\x04\xa1\x1b\xe5\x43\x9b\xe5\xb2\x5d\x5c\x85\x50\xdd\x52\x71\x2d\x51\x02\xa2\xd4\x74\xd0\x7e\x1c\x47\xb1\xb3\xa4\xcf\xd6\x00\x3a\x58\xb4\x5d\x85\xfd\x6c\x3a\x0f\x24\xa3\x5e\x8e\x92\x2d\x06\x25\x2c\xfc\xce\x6f\x1c\x03\x74\x31\x33\x03\xe8\xd7\xba\x73\xbe\xba\x08\x3c\x68\xa0\x53\xd1\x78\xb9\xdd\x40\xae\x9d\xaf\xb2\x28\xf7\x39\xf8\x03\x37\x95\x11\xdc\xcd\x60\xab\x30\xce\xcb\x2f\xb7\xed\x60\xc1\x64\x99\xc9\x73\x27\x21\xe9\x92\x6d\x9f\x78\x3b\xef\x12\xb6\xd6\x1f\xa4\x99\xdd\xd1\xda\x37\xb7\x79\x5c\x7f\x8d\x1b\x6a\x94\x7a\x18\x47\x3c\xf8\x47\x87\x31\xc1\x11\x4c\x5b\x75\xb7\x90\x34\x7c\xa6\xb3\xf5\xc9\xcd\x1c\xa4\x11\xda\xb2\xf5\x34\x43\x2c\x4d\xc8\xc0\xf1\xeb\x9a\x26\xaf\x49\xc2\x7e\x94\x93\x88\x84\xab\xad\x90\x80\xc8\x8c\x6b\x2c\x36\xbd\x70\xa0\xbd\x60\x0b\x43\xc3\x50\xb1\xdd\x68\x89\x4b\xcf\x7f\xce\x09\xaf\x0c\xff\x1b\x64\x0a\xa3\x2a\x30\x51\x8e\xcb\xa7\x14\x2b\x01\xd3\x35\x8a\x2a\x70\x03\xc5\x35\xb6\xa6\xeb\xbe\x17\x4b\xca\x28\x90\x2a\x19\x0a\x8b\x3a\x72\x6c\xc3\x22\x4b\x07\xa6\x97\xd8\x22\x9f\xf0\x29\xdc\x91\x91\x9e\xf0\x28\x49\x85\x2b\xce\x39\x24\x4c\x93\x6e\x19\x52\xe4\x3c\xe4\x8d\x27\x7c\x34\x38\xaf\x3a\xe5\x19\xe5\x20\x03\xba\x77\x88\x55\xc7\x55\xdc\x3a\xae\x03\x9e\x89\x97\x05\xb3\x8c\x08\xc7\x32\x7b\xfc\x46\x7b\xd6\xa4\x79\x11\xc5\x76\xa7\x82\xc2\x8f\x54\x9f\x77\x3d\x50\xbd\xe1\x75\x0a\x59\x98\x28\x9c\x54\x8a\x36\xbb\x3a\xaa\x0b\xcb\xea\xe6\xd2\xcf\xf2\x08\xe0\x38\x1d\x2c\x44\x10\xe2\x11\x85\x79\xba\x26\x7e\xe3\x6e\xc9\xa0\xcc\x81\xb6\x68\x29\xbb\xad\x33\x5a\x62\xf6\xcc\x58\x02\xb5\x8f\x14\x84\x96\x2d\x80\x88\x48\x57\xfe\x38\x50\x44\x30\xa6\x67\xcb\xba\x76\x52\x11\x2c\x3b\xe4\x3b\xab\xbb\x3b\xaa\x9b\xb9\x7b\xad\xa9\x9e\xc9\x6c\x98\x66\x5d\x74\x5a\x67\x74\xda\x3a\x57\x13\x21\x16\x59\x8d\xcf\x2a\xb9\x84\x5e\x84\xca\x5e\x1f\x7d\x88\xa3\xdc\x19\x0b\xfc\xf0\x60\x3c\x28\x57\x91\x3c\xca\xc2\xcc\x2c\x82\x53\xa9\x29\x8e\xfc\xfa\x81\xdd\xac\x30\x1d\x70\x8f\x83\xbf\x2e\x00\x60\xdf\xc6\x4d\xe2\x37\x5b\xf1\xb7\x7b\x67\xda\x87\xa6\x19\xc2\xc8\xf4\xf5\x91\x9f\x42\xe3\x6b\xb2\x74\x1e\x5d\x84\xc8\xcb\xd6\x9c\x99\x72\x1b\x96\xd5\xfe\x9b\xf0\xf0\x1a\xd0\x5a\x70\x60\x9d\x1e\x29\x96\xf4\x85\xb1\x2d\x2c\xd7\xbf\x18\x47\xd4\xef\xad\xae\x96\xed\x11\x46\xbe\x37\x8b\x78\x86\x95\x74\x5b\x49\x74\x27\x26\xef\x9a\xaf\x4c\x7a\xbf\x87\x23\xda\xef\xe1\x88\x96\x5b\xbb\x32\xf2\x2d\x8b\x2b\x6a\xd7\xb1\x85\x0e\x35\x94\x9c\xc5\x4d\x55\xcf\x8b\xc5\xcd\x1e\x55\x9a\x25\x25\x69\xc4\x38\x25\x7a\x8e\x4f\xe2\xd6\xd3\x94\x79\x55\x49\x3c\x9d\x96\xf8\x26\x67\x14\xae\xe8\x4c\xe0\x49\x2f\x99\x74\xf6\x79\xb6\x10\x78\x32\xde\x6d\x6d\x50\x3d\x2e\xf5\x3c\x73\xb0\x1d\xda\xac\x88\x16\xa3\x50\x7a\x4a\xe2\x49\xda\x52\x5a\x4f\x4d\xd7\x36\x8c\xcd\x2a\xc1\x11\xd0\x25\x3a\xa9\x27\x7d\x1f\x2a\x24\xc8\x1b\x63\xbf\xfd\xf2\xcb\xed\x3c\x8e\x06\x00\xf9\xe1\x0c\xbf\xaa\x84\xcc\x00\x9e\x41\xda\xfe\xd6\xd8\x33\x67\xae\x29\x44\xe0\xac\x1e\x6b\x1d\x53\xa9\x21\xb4\x5e\xb1\x16\xfe\x6c\xe4\x47\x9a\x24\x2f\xa2\xce\x79\x94\x9d\xe2\x81\xeb\xe1\x50\xd1\xc0\x4c\x91\xf8\xff\x39\xac\x40\x66\x68\x05\x24\xaa\x1b\xa8\xfa\xf0\x08\xd7\x87\x92\x3f\x7b\x28\x9d\x45\x0b\x0b\x75\x9b\x18\x92\x68\x15\xb2\xbb\xa3\xa7\x15\x34\xc0\x4b\xf2\xe6\xc4\x57\xc6\x96\xba\x14\xd4\x9a\x0d\xad\xbd\x7b\xb9\xb1\x7e\x5c\x7b\x09\x1c\x47\x03\x5d\xa8\x60\x7e\x87\x95\x89\x59\x36\x51\x0c\xb7\x98\xfd\xd3\x5e\x1e\x7c\x9f\xe7\x56\x7a\xf6\xa5\x7d\x75\x18\xc3\x1d\x80\xbb\x6e\x92\x2d\xd3\xf7\xe5\x37\xae\x13\x36\x88\xe2\xae\x12\x67\x84\x3d\x2d\xbf\x1e\x2b\x48\x5f\x7e\xb9\xbd\x18\x25\x5d\x5a\x60\x0e\x26\x72\x68\xda\x79\x32\x78\x85\xfd\x74\x31\x2a\xb8\xef\xc1\xf4\x8f\x91\x12\xcf\xb8\xad\xf2\xb2\xef\xa9\x4e\x6a\x98\x0e\x6c\x17\x4c\x59\xd4\xb2\x80\x3e\xa3\x46\xe1\xbe\xa7\x28\x6a\xf9\x08\x90\x97\xc3\x61\xbc\xba\x93\x6e\x31\x7e\x94\xdd\xac\xc0\x02\x78\x9d\xba\xcd\x1a\x39\x81\xde\xce\xeb\x18\xfd\xa1\x0d\x79\x11\x87\x07\xbf\xa1\x65\x27\x63\x10\x07\x36\x8d\x7a\x51\xd7\xf9\xce\x3b\xee\xad\x4b\x90\x6b\x5f\x7f\x39\xea\xa5\x3c\xfb\xc5\x30\xe6\x47\xda\xe7\xf5\x98\x8a\x65\xdc\x0d\x15\x2f\x48\x77\x44\x12\xfb\x71\x5c\x42\xc7\x81\xf3\xb5\x84\x4e\x9e\x56\x45\x57\x57\x6d\xfc\x13\x6a\xe3\x9f\x50\xed\xb1\xc5\xd8\xac\x80\x20\x27\xe6\x75\xd5\x22\x12\xef\x3a\x6f\x6d\x6e\xb6\x7e\x34\x00\xb8\xc2\x11\xf0\x8d\xd0\x22\x4d\xe3\x49\xa5\xb6\x7a\x54\x69\x13\x7f\x3b\xf0\xed\xc0\xf7\xb0\xdd\xb8\x7b\xe6\xa8\x7e\xab\xc6\x2c\x98\x89\xd6\x97\xbf\xc0\xfd\xbf\x8f\x47\xfe\x3b\x70\x42\x83\x03\xfd\x6a\xb3\x59\xdc\xaa\x35\x59\x9c\x32\xf0\x56\x94\x59\xfc\x40\xeb\x9c\x6b\xa3\xe7\x51\x5e\xc6\x82\xce\xab\xc9\xec\xf1\x1b\xb5\x83\x56\xfa\x51\x16\xaf\x44\x49\x17\x4a\x68\xce\x71\xc4\xbb\x8f\xb8\xeb\x8f\xad\xcd\x56\x09\x43\x82\xea\xe7\xb1\x8e\x52\x1d\xbf\xa0\x46\x65\xd0\x13\x45\x2c\xbd\x3a\xaa\x65\x7c\x61\xc1\xa6\x64\xf8\x13\x0c\xe4\xe0\x37\x6a\xd2\xd5\x8d\x16\x17\x6d\x66\x93\xd0\x32\x36\xdb\x39\x33\xb9\x8e\xc0\x15\xe5\xb0\xf1\x76\xf0\x84\xc2\x1b\x0d\x16\xa0\x24\xac\x39\x79\x54\x14\xa8\x8c\x70\x46\x33\xfe\x1c\xfd\x4f\xcd\x9e\x6d\x8c\x2c\x9d\xb9\x80\x0a\xad\xf4\x73\x2d\x04\x7e\x4a\xa1\x97\x4d\x36\xd8\xa9\xd4\xec\x2e\xaa\x0b\x3c\xe1\x65\xba\x5a\x90\x6d\x46\xd2\xf1\x04\xa6\x48\x1a\x1f\x87\x74\x69\x73\xa4\x4a\xe5\x09\xa7\x6e\x92\xdb\xaf\x94\x16\xad\x67\xc1\x83\xd4\xe9\x25\x6e\xaa\x9a\x32\x0e\x02\x9f\x09\xaa\x0b\x2a\xdd\x1f\x07\x5e\x0b\x7d\x0d\xd9\x31\xfa\x5b\x1b\x8a\xd7\x6e\xe2\xc8\x26\xe4\x6e\x39\x59\xed\x1a\x99\xc6\xd1\x9f\x74\x6a\x65\x0e\x90\xc3\xbd\x26\x9c\x8c\x3f\x57\x47\x4a\x37\x0d\xcb\xaa\xbe\xcb\xe9\xaf\x20\x2b\x3c\x8b\x1e\x0f\xbf\x19\xd5\xe8\x07\xca\xbe\xe5\x9a\x52\x87\x2e\x93\xdc\x16\x05\x75\xa0\xaa\x5f\x95\x8e\x62\xf5\x37\xa5\xa1\xa8\x19\xed\x8b\xb6\xbb\x43\x6b\x84\x04\x75\x2d\x38\xad\xd5\xe4\xcf\x89\x1f\x8f\x6a\xa8\x7d\x85\xe6\x7f\xc4\xc5\xa9\x38\x4e\x57\x5a\x3e\x64\xa3\xd1\xc2\xaf\xeb\x2a\x1a\xc8\x0f\x31\x82\xfe\xc7\xac\x51\x52\xfd\x30\x26\x4f\x17\x75\x03\x20\x02\xdd\x7a\x9f\xf0\x0c\xc0\x8c\xc6\x89\x71\xab\x26\xde\x2a\x53\xad\x30\x12\x1d\x6f\xe7\x2a\xe4\x4c\x2e\x6e\x6b\x21\x87\xa9\xce\xd6\xc2\x5b\x12\x50\x5b\xf4\x09\xc6\x36\xe1\xf9\x0d\xd7\x55\x9e\xff\x0b\xed\x0d\x76\x5e\x0d\x83\x96\x8d\xe8\xa3\xa1\x17\x86\x32\x9f\x5f\x3f\xa0\x35\x50\x92\x9e\x8e\x6f\xbb\x70\x1b\x96\xdf\x28\xd5\x27\x98\x2f\xb7\x9c\x46\x22\x0a\x42\x7e\xdd\x90\x57\xd5\xbc\x27\x69\x21\xf3\xf4\x2a\xf0\x3c\xfd\x6f\xad\x8f\xcd\x48\x29\x9a\xa6\xd5\x19\x27\xf0\x1e\xa6\x6d\x05\xfe\x36\x8e\x77\x87\x0f\x4d\xbf\x44\xd8\xc9\x96\x6f\x25\x9e\x53\x47\xf6\xb9\xb1\xb9\xe0\xde\x99\xf6\xc0\x16\x59\x4a\x88\x7b\x53\x1b\xc6\x8e\x34\x91\x6c\x6b\xe6\xf1\x2c\xe9\x1a\x27\x13\xbe\x25\x72\xbd\xe6\xf4\x59\xab\x4e\x9b\xb4\x25\x4c\xaf\xe7\xfa\x91\x8c\xb2\xa6\x0b\x45\xa6\xfb\x93\x5a\xc4\xd8\x0a\x9c\x99\x9b\x6b\xa7\x8b\x8b\x24\xd0\x8a\x03\x70\x82\x94\x1e\xb0\x9c\x74\x8e\xfa\x09\xae\x43\xa4\xbb\xaa\xbc\x43\xa2\x48\xb5\x8f\xd0\x89\xfb\x58\x35\x7b\x17\x52\xb2\x14\xad\xfe\x1a\x2b\xa9\x52\x52\x27\xaa\xaa\x0d\x8c\xdc\x45\x6b\xb2\x3c\x1d\xd8\x96\x92\xce\xc5\xac\x50\x44\x63\x1a\x4a\xca\xd8\x86\x45\x99\xd9\x0c\x52\xfb\x18\x9a\x5d\xa3\xeb\xe6\xd7\x35\xed\x8b\x68\x90\x3f\x44\xf7\x09\x00\xf4\x5b\x74\x6f\xf0\x65\x2f\x6a\xfb\xb2\xdb\x14\xcb\x11\x9a\x41\xe2\x42\x68\x99\x44\xfc\x66\xf5\xae\x40\x8d\xd6\xbe\x0a\x48\x80\x08\xaa\xd0\x57\xc0\xe6\xff\x54\xb5\x36\xfa\x26\xeb\x92\x06\xcd\x8b\xfb\xa7\xf9\x5e\xae\x6b\x62\x3e\x54\xef\x01\x19\xb8\xd5\xa8\xbb\x37\xcc\xec\x20\x2a\x07\xad\x2a\xd1\xd6\xa8\x40\x39\x1e\x1e\xad\x21\xfa\xf2\xc7\x94\xfb\xe5\x61\x05\x7b\x11\xec\x04\x90\x9d\x47\xd1\x37\x73\x87\x74\x75\x41\xe8\xcb\x5c\x55\x5d\xa3\xa9\xb5\xd6\xe7\x5f\xe4\x2f\xf5\x93\x91\xb7\x64\x65\x30\x8e\xdb\x23\x33\x07\x9d\x6b\x0b\xdd\x06\x74\xf1\xcf\x10\x48\x11\x57\x82\x40\x8a\x01\x01\xab\xf2\x21\xa9\x79\x83\xd6\x08\x5f\x6e\xd3\xe3\x5e\xb1\x76\xc9\x25\x45\x42\xf8\xf0\xec\xc9\xab\x2a\xe3\x1e\xa6\xb1\x49\xba\x53\xea\xa4\x62\x73\x47\xa4\x05\xe0\xbe\x09\x37\xcf\x0f\x25\xa1\x2c\x88\xb3\xe0\x48\x93\xfa\xf6\x72\x64\x57\x38\xbe\x09\xa3\x49\xb1\x9b\x34\xa1\xd0\xc4\x71\x9a\x26\xd4\x9c\x12\xac\xad\xaf\xd2\x19\x73\xa1\xde\x48\x2c\xe2\x42\xd5\xc1\x73\x5f\x54\xd6\xf0\xd5\xb5\x01\x30\x30\x6e\x51\xf1\x6c\x7b\x60\xb2\x25\x0b\x64\xc1\xdc\xdc\x81\x4d\x26\x09\x53\xe3\xf1\xe8\xe3\x6b\xae\x09\x79\xf4\xa9\x31\xf7\xba\xfd\xd3\xc4\xde\x72\xf3\x6b\xdc\x8b\x93\xea\x1e\x69\x2f\xfc\x3c\x45\x06\x2d\x4b\xf5\x84\xc6\xda\x9e\x18\x3d\x19\x6d\xad\x19\xb7\x68\xb6\x43\x6e\x4f\xec\xff\x1e\x57\x04\x29\x53\xe5\x81\x39\x4e\x73\x94\xed\xbf\x08\x94\xe9\x2b\x50\x1a\xe8\x5d\x5c\x0b\x94\xaf\x22\xef\x38\xb7\x06\x1d\x51\xe8\x9a\x3a\xcc\x96\x1c\x9b\x10\xb1\xf5\x7e\xe0\x25\xb5\xce\x2b\x29\xeb\x1f\x29\xdc\x27\x56\x24\x3e\x5d\x73\xb9\x16\xa3\xbc\x6f\x59\x08\x02\xd9\x24\xbc\x10\xf9\xf5\xda\x63\x0a\xa1\x5e\x54\x25\x3d\x7d\x7d\x3c\xe0\x8f\x75\x1a\xfc\xf1\x58\x5f\x65\x76\xb6\xdd\xb5\x0b\x72\x86\x72\x3b\x4d\x61\x71\xcf\xab\x45\x4e\xd3\xb7\x9c\xba\x1c\xd8\x73\x77\xd4\x01\x8d\x8a\x57\xc6\xb6\xe3\xcd\xc0\x76\xde\x8f\x06\x03\x2f\x0a\x2b\xe2\xc4\x2a\x97\x7a\x4b\xf1\x50\x17\xcb\x57\x22\xaa\x1a\x30\x63\x84\x20\x01\xbf\x1e\x2b\x61\x0e\x4d\xcf\x90\xb1\x79\x94\x84\xd2\xfb\x11\x55\x5d\x1f\x51\x8e\x63\xdd\xe0\x46\xbc\xd3\x44\x60\x5e\x31\x71\x6c\x8b\x96\x1f\x01\x9f\x51\x54\xb1\x33\xae\xa4\x5c\x30\xe1\x12\x79\x39\xb4\x3c\x6d\x06\x9c\x40\x7e\xad\x16\x6f\x91\x95\x96\xd2\x53\x34\x62\xb6\x91\xfd\x2e\xe2\xe0\x6d\x95\x11\xbc\xa3\xe6\x12\xff\x62\xec\xd0\xae\x8e\xab\x2a\x33\xa7\x47\xe4\x4e\x79\x05\xbf\x92\x24\xb2\x5f\x0e\x4c\x62\x26\x3c\xbf\x6c\x53\x8d\x89\xcf\x6b\x51\x9e\x1d\x9d\xa7\x55\x5b\x64\x91\x98\x94\x64\xbf\x01\x34\x8f\xf8\x9e\xd3\xad\xd4\x7e\x5e\x28\xff\x6f\x8d\x14\x4f\x7f\x43\x41\xa7\x06\x26\x8a\x6d\xc6\x65\x95\x00\x87\xe8\x8f\xb0\xc8\x51\xa0\xd4\x51\x5e\x1e\x7f\x06\x33\xed\xbc\xac\x16\x09\xd7\x97\x38\x16\x98\x09\xc5\x6f\x5c\xc9\xb8\x98\x66\x3d\x90\x15\xc5\x81\xab\xba\x40\x01\xed\xb6\x9c\x78\xde\x07\x75\xd5\x08\xcd\x39\x88\xed\xca\x44\x6b\xff\xfc\xe6\xd4\x9a\x87\x08\x02\x24\x84\x62\x79\xf7\xd8\x90\xa5\x4a\x3a\x0b\x1b\xb3\x0d\x9c\x4c\xd9\x15\xc7\x72\x43\x7b\x6d\x5a\xcb\x9c\x06\x76\x0c\xa2\x27\x8e\x9f\x63\x1d\x25\x41\x8b\xf8\x53\x05\xd8\x51\xfe\xf7\x91\x4a\x3c\x7f\x5f\xf9\xa2\xdb\x64\x39\xca\x52\xb2\x6a\x9d\x20\x48\x36\x0a\xe5\x2b\xea\xef\xc0\x9c\x4e\x9a\x60\x8f\xab\xa7\x1d\x2d\x46\x19\x62\xc4\x9c\x76\x08\x71\x90\x3c\xc5\x79\x08\xfb\x26\x4a\x76\xd0\x95\x8a\x9b\x73\xf5\x09\x0e\xc0\xbd\x4f\x59\x8a\x39\x5e\x27\x8f\x23\x31\xbd\x67\xd4\xb6\xc4\xbd\xf1\xf0\xb3\xbf\x9d\xaf\x98\x21\x6d\x25\x01\xe0\xf8\x7c\xf2\x5c\xa3\xb8\x5e\xd7\x2e\xdb\x38\x1d\x62\xa8\x80\x8c\x71\xbd\x26\xd7\x41\x0f\x07\x6b\xf8\x46\x43\xdd\x40\xde\x47\x2e\x8b\x75\x33\x66\x05\x81\xf7\x13\xf6\x1b\x5a\x79\xdf\x0c\x27\x3d\x4c\xfb\x8e\x82\xb7\x7e\x6b\xa4\xc6\xaa\x27\xc7\xe0\xe3\x7e\x16\x2e\xea\xa7\x5d\xa5\x37\xf0\x5d\x6c\x33\x21\x4e\xb6\x9c\x1d\xe8\xe9\x40\xd3\xc9\x93\x45\xb2\x08\x69\x29\x10\xc3\xb9\x91\x07\x2b\x9c\x53\xbd\xfc\xcc\x24\x3d\x09\x84\x08\xad\x77\x47\x7e\x9e\xdd\xea\xa8\xe4\xf3\xe8\x48\x0b\x3f\x95\xc3\x98\x8b\x24\xd4\xad\x20\xbd\xf3\x6b\x6d\x38\x99\x15\x8f\x79\x69\xa0\xc7\xe9\x30\x92\x8e\x28\xdd\x09\x34\x1d\xae\x50\x1a\x86\xbb\x72\x17\xbb\x98\x2d\x10\x02\x3f\xc3\x9b\xe2\xec\x10\xef\x6e\x23\x8d\x70\x6e\x12\x9f\x7f\xd1\xa3\x17\x9c\xfb\xdf\xa9\x40\x2d\xaa\x29\xa8\xb0\x60\x4d\xde\xa2\x24\x42\x69\x7c\xb3\xa8\xed\xdf\x79\x6a\x4d\xc9\xc5\xbe\xd7\x48\x96\x0f\xfb\x76\x45\x4e\x27\x74\x50\x2e\xe2\xb1\xf2\x1b\x0d\x11\x85\xa8\xcb\x67\xfc\xe9\x72\x11\x61\x0e\x31\x0f\x48\x1d\x14\xb8\x7f\x5d\x3b\xd3\xe9\x8a\x80\x21\xbe\x8a\x91\x8a\x53\x3e\x73\x59\xc0\x7b\xf8\x54\x91\xe4\x27\xa4\x1a\x3a\x79\x6f\x03\x9b\xc6\x6f\x02\x2f\x35\x77\x5e\x87\xc8\x9f\xa8\x47\xda\x8d\xc2\x25\x9b\xe4\x1a\x8c\x55\x57\x28\xf7\x8b\x06\x29\xec\x64\x55\x6c\x89\x58\x97\x57\xfb\x5e\x57\xfb\x1b\x93\x37\x64\xb9\xb7\xc7\x2a\xe7\x17\x61\x73\x3a\xb4\x45\x69\x0a\xa6\x99\x62\x46\x73\x84\xfe\x1e\xbf\x56\x8e\x7a\x65\x12\x47\x4b\x76\x87\xef\x3c\xbe\x81\xef\xec\x6a\xd2\xea\x3b\xf3\x1b\xad\xb7\x7c\x02\xc3\x86\xcd\xdb\x35\x86\xc1\xd8\xa1\x52\xd5\xd6\x05\xb0\xbf\x0f\xc8\x87\x75\x67\xce\xc4\x8f\x56\x57\x89\xa2\xeb\x31\x5e\x9a\x4e\xd2\xa6\xfa\x25\x9c\xde\xfc\x28\xf1\xf4\x1e\x5d\xf3\x20\xd3\x47\x51\xb5\xc9\x69\x50\x83\xa2\xd2\x12\x14\xfd\x30\x55\xc7\xa0\x7d\x83\x65\xd1\x82\xbd\x8d\xc3\xa3\x39\x97\xf1\x4f\x03\x1d\x6e\x15\x7d\xf7\x4a\xd3\x8c\x37\xcc\x6c\x37\xc2\xec\x53\x84\x7c\xd5\x40\xd0\x63\x33\xaa\x34\xbc\x3b\xa9\x22\xe9\xb6\xba\x17\x5a\x75\xf9\x38\x3a\x4f\xa9\x10\xf2\x4e\xb3\xc3\x55\x3f\x5d\x58\x58\x6d\xa9\xe8\xf7\x9e\x82\x00\xbf\xd7\x94\x7b\x26\x66\xe0\x9c\xb4\x10\x27\xbe\xa1\x55\x50\xbe\x31\x36\xa2\xab\x52\xbd\x32\x21\xff\x4d\x12\x0e\x76\xd8\x65\x80\x6b\x65\x36\xfa\x58\x4d\x1a\x20\x81\xc7\x87\x54\x4d\x14\x41\xc5\xa5\xd7\xd7\xdb\x57\xe9\x2f\x00\xce\xfb\xae\x82\x0a\x5f\x18\x3d\xec\x9b\x85\xc3\xa7\xe9\x96\x60\x15\xff\x90\xd0\x98\x68\xd8\x7f\x8b\xc6\x23\x88\x2f\xa7\x51\x54\xa1\x44\x61\x6e\x1f\xf0\x04\x3f\x54\x20\xdd\xff\xf4\x71\x04\x62\x94\xac\x8f\xc0\xc0\x10\x15\x33\x4b\x23\x20\xcb\xbe\x15\xb4\x9e\x79\xc6\xb3\x5e\xaa\x8b\xc7\x35\x4e\x76\xbc\x47\x38\xfa\xbb\x0e\x0f\x7b\x48\x04\x78\xef\x42\xc3\x12\x97\x38\xa2\x6f\x85\xac\x71\x13\x81\x96\x7b\x3d\x0a\x64\xfc\xd4\x5a\xeb\xc5\xf9\x4d\x80\x74\x29\xf5\xfb\x74\x0f\xa4\x2f\xf9\x0a\x18\x2d\x2b\xa8\x51\xdf\x03\x18\xa4\xcb\x11\x60\x6d\x22\x01\xef\x2b\x82\x46\x9b\xd7\x61\x96\xd2\xc4\x3b\x15\x51\x75\x27\x8c\xe6\xbb\x8c\xa7\x9b\x5a\x73\x44\x1d\xae\x4a\x63\x9b\x69\xa6\x71\xe0\x29\xe0\xa7\xd5\x0a\xe8\xd9\x6c\x60\x92\x1d\xca\x81\x6a\x5d\x79\x7b\x42\x12\x1b\xcf\xf3\x7d\xb5\x86\x88\xe8\xf3\xd2\x26\x0f\xb4\xc4\x3b\x7c\x6b\x5d\x33\x3b\xdb\x8e\xed\xab\x51\xd2\x2b\x98\x11\x21\x96\xfe\x8a\x5e\xab\xdb\xf8\x5f\x30\x8c\x85\xc0\x3e\xbe\x15\x50\x73\x06\x9f\x8e\xcc\x53\xcc\xf6\x3c\x5f\x26\xcc\x4c\xb8\xd4\x4d\x57\x80\x49\x43\xf0\xbf\xa1\x88\x54\x37\xc6\xae\x8a\x06\xd2\x59\xda\xcb\x6c\x8e\x72\xcd\x1d\xc1\x3e\x6b\x7d\x9f\x58\x99\xd7\x35\x14\x66\x18\x9b\xbc\x0f\x70\x25\x82\x14\x66\xc8\xfc\x5a\x81\xfa\x4c\x16\xf6\x99\x34\xc8\xb1\x41\x89\x55\x9f\x52\xa1\x3d\x4a\x0a\x13\xd6\xa2\x90\x52\xce\xb9\xe0\x44\x65\xfb\x36\x5b\x88\xc2\xa8\x8b\x43\x80\xf2\xa0\xa7\xf6\x20\x71\x74\xf0\xff\xbd\x33\x0e\x5a\x43\xdf\xc2\x65\xeb\x4a\x1c\x44\xe1\x51\xc6\x15\x84\xbf\x34\xd3\xb6\x03\x9b\xf5\xac\x72\x08\x02\x53\x91\x5f\x8f\x01\xc9\xb0\x44\x17\xa3\xc2\x2c\x44\xb1\x38\xda\xe0\x73\xdf\x56\xe2\x04\x6f\x37\x62\xed\x49\x38\x9a\x81\xa2\x4c\xdf\x42\x64\xc3\xed\x3f\x8c\x45\x8e\x13\xff\xd5\xb1\x7a\x79\xdf\x5c\xdb\x0e\xa3\xc4\xc4\x5e\x7b\x1a\x10\x00\x06\xe2\xf3\x1b\x05\x8d\x0d\xab\x84\x04\xe9\x8b\xdc\x03\x4c\x1a\xf8\xb5\xca\x25\xa3\x24\xcc\xac\xc9\x59\xd3\x42\xc4\xa9\x7c\xa4\x46\x25\x85\xac\xe7\x27\xb4\x25\xf8\x67\x70\xcd\xd8\xd1\x97\xdc\xd3\xeb\x46\xb9\x51\x52\x01\xb8\x9b\xdf\x08\xfc\x9d\xfd\xc6\xe8\xf1\xad\x6a\x5f\xbf\x41\x96\x52\x42\x95\xf1\x1b\x87\x1d\xa5\x58\xa2\x67\xac\xeb\xb4\x6f\xae\x6d\x62\x78\x8d\xb7\xfc\xa0\xeb\x2d\x75\xbd\xe4\x76\xa4\x38\xbb\xf8\x51\x97\xd0\x42\xbe\x8f\x5f\x37\x01\xc5\x07\x66\xc9\xe2\x38\x74\x7a\xf4\xd5\x13\xc4\xa8\xfb\x53\xc5\xe4\x02\x11\x70\xf3\x8d\x06\x17\xc0\x99\xf6\xb0\x5c\x88\xa3\x5c\xf6\x08\x1f\x0a\x38\x4c\xe5\x84\x68\xf0\x38\x58\x88\x86\x3c\x7c\x56\x72\xc9\x33\xce\xbb\xdd\x97\x65\xa6\x9b\x2e\x58\x5e\x16\x62\x70\x4c\xf7\x4d\xbc\x8d\x9d\x8d\xde\x22\x3b\x6a\xb8\x56\xba\xeb\xf8\xf2\x7c\x0a\x33\xb6\xdb\x0d\xe7\xec\x7c\xdb\xbe\x3a\xb4\x49\xd7\x88\x59\x3d\xaa\x76\x86\x87\xf1\x9b\xb1\x6f\x7f\xf0\x85\x76\x99\x2c\xc4\x51\xb2\xe4\x0a\x2c\x20\x88\xb0\x53\x91\x2f\x61\xf2\x24\x08\xb3\x26\xff\x20\x9b\x95\xcb\x82\xc2\xc5\x2e\xbb\xaf\x8d\xc0\xee\xab\xf0\x58\xf4\x33\x6b\x0a\x2b\x82\xb5\xae\xab\xb6\x6f\xce\x41\x06\xbc\x9e\x4b\x62\x96\xa9\x45\xc8\xd1\x9a\x67\xea\xb8\x15\x32\x60\x57\x0b\x28\x0a\x0b\xd8\x42\xbb\xb9\x00\x4f\x23\xf9\xcd\x18\xe8\x6d\xdf\x5c\x7b\xa5\x1f\x15\x85\x59\x12\x6b\x51\x84\xde\x9f\xab\x96\xda\xcf\x9b\x96\xf5\x2b\xb6\x88\xa3\x84\xcf\x33\xdc\x99\xa3\xca\x27\xe4\xe8\xd8\x30\xa5\x5a\x66\x26\xa7\x58\x06\x5c\xd9\xd5\x91\x77\x88\xbe\xaa\x66\x23\xc3\x34\x2f\x60\x08\xfa\x92\x83\xcc\x2a\x21\xf9\x9b\x0a\x8f\xbc\x64\x16\xca\xf8\xc1\x9a\x7f\x0e\xd6\x60\xca\x30\x2d\x51\x27\x36\x09\x28\xb8\x0e\x4d\x1c\x85\x4b\x13\x7e\xaa\x7e\xab\x26\x1b\xa5\xe0\x1a\xa7\x6a\x4a\x10\x71\x9c\x3f\xa9\x10\x3c\xe7\x02\xe5\xdf\xfc\x46\x40\x93\x0f\x39\x92\x7c\x3f\x85\x51\x8f\xc8\xde\xd6\x81\xd3\xc5\xa2\xbf\x15\x78\xff\x8b\x77\xa9\x66\x42\x0e\x7b\x56\x83\x37\xf9\xb1\x22\xfb\xda\xb6\xe6\x95\x35\xee\x53\x09\x8b\x31\x21\x0b\xb5\xa3\x70\xfe\x0e\x32\x31\x04\x62\x34\x6d\x04\x16\xa5\x9b\xcf\x18\x76\xb0\xa1\x1c\xa3\xa3\x44\x87\xd4\x1f\x8b\xf7\xd9\x5f\x4c\x8e\xdd\x06\x5c\xb6\x59\x30\x49\x37\x15\xae\x3e\x3e\x96\x45\xb3\xf8\x4d\xc3\xb0\x2f\x8e\x06\x11\x9b\x10\xa8\xaf\x20\x48\x1b\x10\xec\x04\xf5\xea\x8f\x92\xa1\x59\x1d\x58\xa8\xc1\x3d\xef\xdc\x81\xe9\xf7\xb4\x57\x2d\xff\x87\xae\xf7\x7d\x59\x31\x28\xb3\x25\x76\x4b\xc4\xe1\x87\xed\xcf\xf2\x3a\x94\x2a\xe3\x36\xfe\x5c\xf5\x97\x4d\xd7\x0e\x8b\x5c\xcd\xc0\x37\x02\x45\x08\xdb\xa8\xd1\x82\x6d\x38\xa5\x98\x34\x47\x40\xb7\xc2\x9b\x6d\xc4\x64\xe2\xff\xc0\x43\x16\xb6\x81\xcb\x69\x5f\xbe\xd2\x84\x7d\x8f\xa3\xd0\x26\xb9\x0b\x5c\x8e\x59\xeb\xc8\x2c\xd0\x0b\x43\x43\xe2\xd2\x58\xec\xdb\x3f\xdd\xce\x6c\x6e\x93\xc2\xa1\xce\x51\xcf\x62\xc4\xca\xaf\x9b\x5c\x78\xda\x26\x0c\x4b\x06\xf5\xcf\x70\x23\xe8\x88\xee\x0a\x1d\x69\xa0\x92\x20\x3e\x87\x85\xed\x52\x53\x0a\xb7\xf9\x0a\x1e\x87\x13\x7e\x3e\x34\xbd\x79\xb1\x56\xc4\x05\xda\xd4\x32\xb4\xd1\x72\x15\x72\x5c\xc1\x7b\x1e\x7b\x8d\xdf\xa8\xe9\xf9\x72\xd4\x8b\x50\x6d\x09\xe5\xc0\xa3\x15\xcf\x37\xf8\x57\xcc\xb4\x73\x93\x74\x33\xd3\xf2\x3d\xd9\xd3\xba\x2d\x76\x5a\xb9\x22\x90\xdb\x74\x0a\x4e\x8c\x93\x17\x02\x52\x5f\x70\x64\x3e\x81\xfe\xf2\x81\xdf\xda\xa1\xf8\xe0\x7c\x8a\xc9\x74\x13\xfb\x0b\x87\xf5\xb9\xd1\xf6\xbf\xeb\x54\x3d\x7c\xb0\x7f\xa8\xe3\x21\xe3\x7f\xea\x42\x55\x3e\x8c\xa3\xe2\x21\xfa\xc3\xc8\x23\x18\x8e\x82\x13\x04\xd6\x75\x28\x95\x26\xb5\xf3\x00\x23\x7c\xf0\x81\x9b\x14\x68\xd0\xe8\x3f\x47\x99\x82\x78\x66\x55\x9f\x8e\x7f\xdf\xd9\x51\x92\xc1\xa7\x1e\x68\x4f\x5d\x98\x57\x87\xa4\xf5\xa2\x19\x25\xb7\xb1\xc8\x85\x9d\xad\xda\x69\x27\x55\x6e\x40\x34\x83\x9d\x7e\x46\x73\x82\x02\x18\x9e\xe8\xbf\xa6\x2b\xc4\xa5\xc3\x5b\x0f\x38\xac\x3b\xb4\x21\x19\xe6\x37\xaa\x3d\x65\x87\x6a\xfb\x91\x02\xfa\xda\xb8\x6b\xb3\x78\x15\x63\x70\xe7\xc5\xe1\xcf\xd0\xdb\xa3\x47\x94\xae\x40\x0e\xc4\x7e\x63\x65\xe4\x57\x58\xde\x37\x19\x24\x8d\xb0\xd5\xde\xa4\x6b\xe5\xe2\x96\xee\xa0\x08\x4f\x50\x31\xaa\x8d\x2d\xe4\x7c\xa2\xc7\x27\xc2\xc4\x0f\x32\x3e\x29\x6c\x9c\x42\xa4\x16\x25\xd8\xba\xa6\x81\x73\xb5\xc7\xce\xb5\x2a\x95\x24\x39\x47\x82\x82\x52\x9c\x76\x42\x3d\xd5\x61\x24\x42\x3d\x32\x85\x31\x8b\x8b\x36\x2c\xa8\xe3\x80\x7d\xc8\x82\x45\x8c\xc5\x25\x36\x92\x96\xe9\x13\x52\x82\x22\x2b\x80\xc4\x5a\xa5\xca\x2f\xce\x1c\xfc\x5c\xcb\x79\x27\x6d\xd2\xc3\x44\x0a\xb9\x86\x43\x4e\x8c\xb2\xb1\xf4\x81\x3d\xba\x45\x02\x00\x2a\x72\xcf\x88\x44\x10\x6e\x9e\x9b\xf6\xfa\xc5\xf5\x73\x4d\x01\x78\x8b\xa0\xb5\x38\x00\x6f\xa8\xb4\xe2\x53\xac\x40\x81\x4f\x57\x67\xa9\x70\xf3\x29\x60\x2a\x8b\x1d\x21\xac\xfe\x15\x9e\x0a\xb2\x18\x20\x0e\xc4\xb4\xd8\xfb\xd7\xff\xe3\x80\x9a\x14\x8e\x92\x3c\x3b\x7b\xc0\x59\xb8\xe2\x86\x63\x2d\xdf\xc0\x0d\x77\xb2\x99\x8e\x62\xb1\x89\x8e\xa1\x38\xbd\x56\xab\x19\x03\xff\x1f\xe2\xd6\x23\x93\xd8\xd6\xf9\x6c\xed\x11\x45\x69\xc2\x04\x03\x07\x09\x47\x6d\xe9\x94\x32\x14\xcb\xc8\xb9\x28\x7d\xa5\x34\x71\x0c\xac\x37\x8e\x75\xcc\x26\xd1\x7f\xe6\x3c\x02\xf5\xd2\x2d\x85\x4f\x5c\xc8\xd2\x05\x9b\x41\xf1\xc8\xf5\xf0\xbc\xa0\xfe\x85\xc0\x2b\x86\x0f\x6d\x36\xb0\x3c\xc6\x56\x83\xff\x9a\xac\xa9\x13\x69\x4b\xd3\x78\x0b\xf7\xe6\xb8\x32\x68\x3d\xee\x16\x65\xd7\x56\xb9\x3c\x8a\x01\x70\x79\xb8\x8e\xc6\xea\x45\x46\x8e\xdb\x74\x5a\xe5\xcb\x9a\xf7\xbe\x7f\xda\x21\x74\x15\x5a\x77\xec\x64\x7a\x71\xe6\x20\xe9\x56\x67\x69\xcc\xf3\x7d\x44\xf1\x73\x1a\x1a\x3c\xee\x69\x7b\x68\xba\x3d\x28\xc3\xfe\xa4\xd7\xb3\x7a\x77\xe4\xe3\xe9\x65\xac\x3c\xb1\x9b\xf4\xbc\xc3\x1f\xd7\x06\x7a\xb6\xd7\x9b\xd4\x52\xad\x57\x46\x1e\xe7\xbd\xa1\xa6\x6f\x1b\xba\x19\x7a\xc5\xdd\xcd\xd8\xda\x81\x49\xc4\x53\x8b\xa9\xe2\x23\x2d\x26\x34\x52\xb2\xda\x37\x15\x7c\xb7\x5f\x66\xc5\x24\x25\x84\x50\x14\x60\x20\x01\x32\x97\xf7\xe9\x2a\xf8\x35\x15\x26\xfc\x43\xcd\xaa\x8e\x59\xfa\x8a\x0d\x39\x6b\x13\xfd\xf4\x96\x63\xcc\x5f\x53\x88\xe4\xb7\x47\x5a\xa0\xca\x0e\x2d\xd3\xae\xf9\x00\xc4\xa6\x94\xd3\xb0\x01\xcd\x15\x9a\xc2\xc4\x69\x4f\x41\x3e\x6f\x28\x00\xd7\xb8\xeb\x58\x75\x79\x49\xf4\xaa\x74\x19\x1c\xd0\xb1\xda\x40\xfc\x46\xf5\xba\xca\x7c\x75\x87\x72\x56\x53\xd3\x98\xdf\x3f\xe9\xb1\xc5\x13\x9f\xeb\xf8\xd1\x79\x6b\x4d\xa5\x8c\x77\x46\x4a\x39\xf9\xec\xd8\xc5\x10\x1a\x6d\xd5\x2d\x7e\x9c\x58\x27\x55\x5e\x72\xd2\x3d\x57\x66\x25\x4f\xf9\x33\xf9\x5e\xa0\x0c\x64\xbf\x8e\x4b\x63\x9d\xac\x9a\x21\xf7\xc8\x37\x0a\x8f\x8d\x9e\xaa\x77\x31\x66\x67\x0f\xb4\x0f\x4d\xbf\x84\x81\x11\x8a\x5c\x0c\xc9\xf9\xb5\x52\x71\x5f\x26\x05\x51\x85\xb4\xe1\xa9\x38\x3e\xf2\x53\xc5\xff\x3d\x8a\xbb\x89\x2c\xe9\xb8\x82\x05\xbc\x11\x3c\xa1\xea\xd2\xbc\xc8\xa2\x90\x73\x65\xa0\x39\xef\x2b\x2e\xc0\xfd\xa6\xb2\x9c\x44\x36\x33\xa8\x4b\x1c\x52\x79\x8a\x63\x89\x9c\x6b\x9a\x23\x64\x55\xd5\x31\x50\x24\xc4\xd7\xb5\x9e\xe3\xeb\x9e\x76\x13\xc7\x55\xb9\xbe\x7f\x5a\xe8\x27\x23\x25\x8b\x78\x4c\x9d\xf3\x0b\x29\x69\x45\xb9\x6a\xf8\x72\xa0\x48\x70\xe4\x6c\xe8\xb5\xfd\xbd\xc0\xe6\x6d\xd4\x51\xf8\xa9\x75\x45\xad\xdd\xd9\x51\xcf\xee\x9c\xb2\xf0\x7a\x07\xfd\x6d\x4c\xa1\xef\x22\x2d\x46\x7b\x9c\xd5\x81\xf8\x6f\x29\xc9\x93\xe5\xfc\xb9\xc9\xd6\xdc\xdc\xe6\x7b\x0a\x31\x74\x56\xf5\xd5\x0f\xd7\x6a\xd6\x07\xea\x95\x77\xed\x82\xb0\x87\x00\x97\x38\x82\xb3\x95\xdf\x34\x36\xb5\x42\xd3\xb5\x03\xa6\xfc\x61\x27\x7d\x3b\xf0\x58\xe2\x6f\xab\xfc\xae\x40\x0d\xb8\x7f\xde\xe7\x46\x4a\x29\x58\x7a\x72\x71\xb4\x60\x95\x1c\x1c\x52\xa7\x9f\x28\xd6\x06\xbb\x8f\x08\x89\xbe\x49\x73\x34\xcd\x0b\x0c\x0e\xd9\xec\x7d\x54\x73\x7e\x6f\x18\xab\xf7\x4d\x56\x94\x35\x0e\x01\x33\x69\xf9\x8d\x02\x26\xdb\x57\x0b\x9b\x14\x13\xbe\x6f\x77\x0e\x0f\x18\xd4\x1e\x98\x7e\x08\x62\xd9\x67\x61\x51\x2f\x49\xd9\x9c\xd6\x69\x78\x06\x1e\x96\xb2\xa1\x50\xdd\x89\x0d\x6d\x9e\x9b\x6c\x75\x87\x92\x86\x80\x2a\xa1\x88\x32\xb7\x1c\x7b\x03\x42\xdb\x02\x93\xa9\xfe\x38\xff\xfb\xc8\x8f\xf8\xdf\x09\xfc\x20\x7f\x60\xe2\xc5\x32\x09\x59\xb9\xc2\xa1\x3a\xaf\xea\xc1\xc5\x55\xd5\x2f\xe7\xd1\xaa\x5a\xcf\xc7\x31\xd5\x74\x83\x56\xa7\x61\x09\xf3\x01\x31\x48\xaa\x73\xeb\xb2\xde\x2a\x89\xa5\x22\x3d\x41\x99\xcb\x22\x6b\x9a\xdc\x7b\x86\x76\x81\x8c\x52\x3d\xa7\x32\xb7\x43\x93\x71\x5e\x51\xa5\x51\x0e\xe9\x3e\xe7\x91\xee\x0d\x4f\x35\xb3\xb1\xb7\x6b\x15\x1b\x65\x5a\x0a\xe2\xa3\xec\x12\x5f\x12\x01\x03\x35\xc0\xb9\x68\xb8\x61\xe2\x55\xe5\x1a\xf8\x36\x42\x3b\xdb\xbd\x34\x39\xc2\xf7\x4c\xd6\xb5\x68\xd2\x49\xf3\xd9\xcf\xff\xaf\x39\xa9\x83\x30\x1d\x0c\xc5\xa5\x6b\xc2\x47\x9f\x0b\xfa\xb0\x39\xaf\xb0\x52\x9b\x4e\xa9\x98\xc0\x68\x8e\x48\xcf\x94\x32\x65\x0f\xfd\xb1\x52\xb8\x2f\x93\xcc\x86\x69\x2f\x21\x2b\x3e\x0f\x64\x47\x53\x8f\x5f\x8f\x41\xb4\x0f\xbe\xd0\xae\xee\x36\x71\x09\xa5\xdf\xe8\x6c\x0f\x0f\xf9\x2b\x6d\x68\x7f\xe6\xd6\x2c\xa4\x59\x62\x75\xf5\x1c\xf8\xfe\xfc\xe9\x86\x66\x60\x7b\x58\xc2\x98\x16\x49\xf4\x5f\x06\x4a\xa0\x6c\xbd\x66\xd5\xbd\xf5\xf3\xf6\x4f\xef\x6f\x2f\x9b\x2c\xb2\x3c\xe0\x60\xa4\xb5\x2a\x15\xc7\x87\x77\xfb\xe6\x44\x8c\xd0\x1b\x9d\x21\xab\x3c\xa6\xd8\xe2\xc7\x6a\x6d\xbd\x28\x5c\xdd\xad\x04\x6b\xd8\x9b\x4f\x30\x6f\x7a\x4e\x4c\x91\x09\xfb\xe4\x32\x16\x8a\x18\x73\xd0\x97\xe2\xff\x51\x36\x88\xd7\x68\xc5\xf3\x0f\x8d\x94\xd0\xd5\x5f\x82\x9b\x23\x4a\xc0\xa2\x96\x19\xc6\x26\xcf\xb3\x34\x1d\x20\xbe\xa1\x4a\xfb\xe3\x91\xd2\x4f\xfa\xe3\x26\xe1\x19\x0c\x12\x27\xb5\xfa\xef\x3a\xc2\x96\x10\x98\xfd\x12\x5d\x0f\x54\xa6\x78\xde\xd3\xa7\x86\x69\xba\x84\x69\xb4\x0c\x97\x95\x81\xf6\x43\x94\x0a\xb9\xd1\x94\xc3\x56\xbe\x83\xed\x2d\x6d\x99\x26\x84\x03\x01\xb0\x91\xde\x4b\x3e\xa0\x94\x03\xaf\x8c\x94\x34\xfd\x29\xa7\x38\x4c\xa0\xa2\xc2\x14\x51\x3e\xd1\xfa\xfc\x8b\x7c\x4a\x00\x00\x80\xc8\x74\x54\x9f\xc1\x37\xf5\xac\xb0\xb0\xa4\xa3\x5a\x9d\x43\xe8\x1b\xdc\x56\x2c\xa6\xef\xd0\x99\x24\xd4\x43\x1f\xc4\xf2\xf2\x35\x93\x24\x16\xa1\x44\xe8\x77\x7e\x5f\x7c\xd2\xe0\xe2\x3c\x4f\x98\x42\xea\x34\x80\xe5\xb2\x79\x51\x89\x9e\xbe\x52\xe6\x45\x14\x5a\xf0\xcb\x14\x7d\xff\x80\xa3\xef\x6f\xad\x4e\x9e\x79\xa6\x6d\xbb\x51\x91\x66\xa2\xb2\x85\x59\xd0\xa5\xc0\xcf\x88\xc6\xfd\xa7\xf7\xee\x6d\x0f\xd2\x65\x89\x15\xe8\x44\x1f\xd7\x50\xc6\xe3\xaa\x43\xf5\x9b\xcf\xbf\x30\xa1\x9c\x94\x5e\xaf\x6b\x62\xb4\x9c\x9d\xc6\xd9\xba\xfc\x71\x64\x76\xfa\x31\xd8\xb1\x40\x65\xff\x38\xb5\xa4\xe1\xa1\xfc\x21\xfe\x09\xfe\x34\xea\x74\x04\x15\xc1\x19\x61\x8d\xe2\x14\x3b\xaa\x5a\xbb\x36\x61\x9a\x9c\xeb\x18\xfe\x50\x49\x50\xfc\xb0\xc9\x20\x2d\xb7\x26\x0b\xfb\x88\xea\xda\x76\x51\x47\x75\xe9\xe5\x2a\xb5\xe8\xff\x4b\xdd\x92\x2c\x2f\x1e\x57\x80\xf0\xb5\x6a\x75\x30\x2a\x5a\x6b\xe6\x4d\x75\x6a\x76\xac\x74\x42\xe2\x26\x3e\xd1\xa1\xfa\x1e\xa5\xc0\x66\xa0\x20\x5a\x48\x60\x51\x54\x6e\xd2\x2d\x10\xb7\x2c\x5d\x07\xbe\xeb\x2d\x89\xcf\x3e\x85\x8c\x91\xd2\x98\xff\x72\x0f\xd1\x0c\x50\x7c\xf0\x5e\x16\xa5\x0b\x7a\x02\xe8\xc7\x6c\x5f\x6b\x7d\x51\xd4\xa7\xa9\x83\xf7\x92\xd3\x65\x68\xc0\xec\x87\x71\x5a\x76\xa1\xab\xcc\x04\xb9\x91\x37\xfb\x3a\xa6\x6d\x6a\x6f\x28\xf3\xdc\x33\x8a\xf0\x79\xc6\xe5\x71\x65\x12\x5b\x93\xf7\x79\x85\x8b\x05\x43\xcd\x9b\xc1\x83\xbd\x06\x65\x1c\x47\x0c\xf6\x42\xe2\x08\x51\x2f\x7e\xbd\xe6\x19\x7c\x99\x61\x8c\xb8\xb4\x7d\xab\x5f\x91\xf0\xa2\x60\x7e\x5d\x62\xb0\xcc\xf3\x57\xbf\xab\x5a\x83\x8f\xaf\x69\xd2\xe7\xc8\x8f\xb9\xff\x8b\xbf\x8d\xfb\x4b\x99\xe5\x8d\x5f\x25\x28\x8a\xe4\x3c\x0e\xf0\xbc\xf3\x69\x74\x51\xd1\xbd\xd9\x09\x05\x4e\x51\x35\xf4\x9f\x3f\x30\xf9\x0e\xdf\x7c\xbf\xa0\xc0\xdc\x6c\xbd\x5b\x53\x66\x40\x37\xe6\x44\xcd\x7b\x7b\x37\x31\x8c\x10\xd3\xff\x07\x05\xc5\xcc\x8b\xcc\x26\xbd\xa2\x6f\x65\xa0\x82\x6f\x88\x51\x34\xbf\x56\x8c\xc5\xcc\xa2\xe0\x12\xe5\x68\xec\xbf\x89\x8e\x9a\x07\x01\x4a\x80\xe4\xf8\xc6\x58\x77\xe3\xe0\x0b\xed\x9e\x89\x92\x09\x2f\x3f\xa9\x35\xb5\xaf\x28\xd3\x8a\xaf\x35\x08\x03\xb6\x87\x99\xcd\x73\x98\xaa\x57\x37\x5a\x54\x66\x15\x15\xfc\x72\x23\xc9\xc9\xc4\x85\x47\xdc\xa3\x77\xf4\x29\x36\x29\xbf\x19\x4b\xe3\xab\xac\xc5\x16\x99\x35\xc0\xc1\x63\xdc\xfa\xd3\xc0\x23\x1f\xc6\xe5\x0f\xf6\xee\x6d\x27\x55\x79\x3d\xa1\x54\xee\x10\x22\xf0\x44\x91\xa8\x62\x5b\x5e\x56\x48\xe4\xbc\xa8\x6a\xcb\xc5\x45\x2a\x66\x30\x3b\x3b\xab\xe6\x68\x67\x95\xf2\x71\x99\x2c\xc6\x66\x69\x15\x13\x5e\x84\xd2\x2b\x94\xbf\xf3\x6b\x57\x6a\x27\x69\xb6\x92\xa6\x6c\xf4\x83\xbf\xb3\x8d\xdc\xdb\x30\xf5\xf9\x48\xf1\x4a\x6f\xd7\x74\x82\x0d\x65\x31\x8c\xf7\x99\xdf\xbc\xa8\xf0\x43\xdd\x34\x2c\xd2\x8c\xce\x6c\x16\xa0\x0c\x94\xf7\xe3\x91\x91\x87\x4e\xbd\xa7\x10\x64\x9f\x04\xad\x2f\x49\xdb\x75\xdc\x36\x71\xef\x4c\xdb\x3c\x37\x78\x6e\xd2\xf7\x72\xa6\xd6\x6a\x74\x80\xfd\xd3\xbc\xd1\x1e\xee\x28\xc9\x85\x8b\xea\xf6\x15\x99\x49\xf2\x45\x9e\x18\x83\x42\xf4\xbb\x81\xa7\x13\xfd\xae\xaa\x9b\xaa\xed\x44\xeb\xa0\xb5\x57\xb8\xc9\x1f\xe9\x71\xfa\x47\x63\xcf\x74\x6e\x6e\xbe\x9d\xc7\xe5\xa0\xa6\xe2\xa7\xa8\x72\xeb\xde\x56\x63\x45\x35\x61\x78\x28\x43\x97\x21\x03\x1a\x51\x48\xf0\x46\x76\x1a\xe7\x8d\x62\x7d\xaa\xe3\xa7\x83\x77\xd5\x85\x2f\xc4\x65\x06\x06\xeb\xec\x2c\x1f\x12\x97\x15\x24\xb2\x05\x6b\x1b\x84\x84\xcb\xa3\x2d\x9e\x72\x7b\xf7\xb6\x9f\x53\x14\x8d\xbf\xc2\x37\xe6\x37\x4e\x8e\xa0\x88\x0a\x93\x10\xc9\x6d\x76\x96\x8f\xcf\xed\xf4\x28\xf8\x75\x47\x8f\x56\x6c\x89\xdb\xed\xe0\x91\x73\xce\x96\xe6\xbc\x02\xd8\x58\x92\xf1\x74\x23\x54\x27\xb9\xe6\xeb\x35\xd5\x41\xbd\x85\xbf\x22\x85\xdc\xe3\xea\xac\x2e\xa2\x82\xd9\xa7\x1e\x5b\xdf\x72\x66\x1f\xe7\x1d\x23\x65\xc9\x14\x7d\x9b\x45\x5c\x30\x08\x77\x45\xcd\x4e\xc7\x65\x80\x48\x38\x24\x36\xd1\x60\x42\xa1\xa9\x60\xd5\xeb\xb0\xe5\x4e\xa6\xe6\x5a\xc3\xf8\x71\xa6\x9d\x97\xd9\xa2\x09\x25\xba\xb0\x33\x5b\xe0\x41\x61\x17\x1a\x56\x55\x7b\x31\x36\xc3\x5c\x25\x5e\x17\x6a\xd6\x4c\x0d\xee\x30\xf3\xed\x85\x28\x0d\xfb\x76\x10\xe5\xe2\x74\xa3\x2d\x0e\x84\xad\xd9\xf0\x51\x61\xea\x3a\xd0\x9c\x46\x63\x05\x4b\x4e\xbd\x35\xf4\x3d\xf3\x0c\x95\x93\xb1\x65\xcc\x8c\xe6\x74\x8b\x3f\xa5\x9f\xe4\x9d\x6b\x92\xd0\x12\xc7\x76\xb7\x21\x58\xc3\xa5\xa6\xe7\xe2\xc3\x9a\xc9\xf3\x72\x60\xf5\xed\xf8\x40\xe5\xa1\x1f\xa8\x29\xda\x42\x9c\xae\xec\xa2\xab\x72\x8a\x4d\xd5\x9f\xc7\x36\x80\xfb\x33\xbf\x46\x78\xe7\x9f\xc2\x58\x04\x27\xc4\xa7\x98\xab\xf0\x9b\x91\x2a\xa5\x80\xf7\xe2\xd7\x63\xb7\xe5\xe0\x0b\xa4\x1b\xeb\xa6\xe2\x68\x6f\xdc\x55\x8a\x1d\x10\xf7\x15\x21\xaf\xad\x75\x70\x55\x9d\x84\x66\x18\x15\x86\xac\xec\x11\x02\x44\xbe\x8b\xae\x02\x91\x02\x3a\x8a\xd8\xe4\xa7\x1b\x21\x75\xc3\xd8\x2f\x37\xb1\xb0\xa3\x6f\x2b\xb2\x83\x4d\x4f\x64\x68\x6d\x37\x1d\xd8\x82\x03\xa5\x4c\x30\x68\x73\x48\xa6\xe9\x33\x8e\xdc\x24\x3b\x5b\xce\xc4\xf3\x71\xd2\xe3\xab\xe1\xe6\x91\xf0\x4c\x74\xbc\x3f\xee\x69\x65\x42\xfe\xd0\x9a\x52\x03\xe0\xda\x55\x06\x59\x0d\xfd\xf7\xbe\xc9\x8b\x28\x5e\x55\x84\xad\xeb\x81\x86\x64\x54\x7f\x18\x9d\xbd\x63\xa3\xa7\x35\x15\xa4\xc8\xaa\xf2\x3b\x8f\x4c\x3c\xa5\xb5\x6b\x8f\x63\x33\xa1\xe7\x79\x52\xc9\x32\x7c\x53\x35\xbe\xd8\x21\x8a\x7f\xc3\x15\x53\xdd\x68\x40\x82\xff\x82\x06\xc7\x6a\xfd\xb6\x5a\xfd\xcc\xba\x10\x17\xae\x96\x33\xfb\x3a\x33\x7a\x42\x83\x0a\x56\xc3\x58\x2c\xfc\x90\xb8\x1d\x53\x4e\x27\xc7\xc6\x4a\x8c\x97\x5f\x6e\x17\x7d\x3b\x90\x56\x25\xee\xfc\xb5\xc0\x37\x1e\xd7\xb1\xa4\xd9\xb4\xba\xc9\x16\x7e\x60\xc2\x56\x6b\xab\xf2\x82\x0c\x24\xb6\x86\xae\x97\x5f\x6e\xdb\x6e\xa9\x9a\x32\x38\x11\x3e\x51\x26\x58\x9f\xd4\xe6\x2a\xb9\xcd\x6c\x81\x38\xe2\xa0\x68\xf3\x2f\x1c\x70\x50\xb4\x87\x1d\x94\x3e\x4e\x5b\x7e\x8c\xc6\x08\x27\x01\x31\x79\x19\xa2\x28\x8e\x4b\xb0\x80\x18\xb2\x86\x3f\x74\x86\x94\xda\xf9\xb5\xca\x7d\x56\x18\x5c\xa9\x70\x54\xf8\xcb\x02\xaa\x6a\xc2\x8e\x26\xbd\x28\xb1\x1e\x3b\x8a\xe1\x24\xe3\x37\xf9\x4d\xe3\x99\x9f\xae\x08\x66\x55\x8c\xe5\x95\x51\xe1\x5b\x4a\x0a\xf1\xab\x0d\x84\xf1\x39\x5a\x9a\x04\xf8\x75\x16\xc6\x60\xdf\xf2\x6b\x45\x4c\x19\x66\xe9\x20\xca\x2d\x89\x3b\x49\x2d\xd5\x52\x22\x99\xea\xe0\xfc\x00\xb3\x3f\x54\xda\xd0\x43\x63\xa5\x3a\x05\x50\x19\x9a\xc4\xc6\x13\x8a\x6e\x0f\xc0\x91\x33\xde\x72\xa8\x63\x6f\xc6\xbb\xd2\x4f\xa7\xaa\x5b\x4e\xd1\x76\x0a\x63\x28\x67\xc7\x53\x7d\xa2\x14\x44\xd5\x1f\x02\xe5\x84\x0f\x55\x9c\x90\x3b\xd7\x1e\xab\x51\xa7\xd2\x64\xca\x6b\xa0\x5e\xd0\xca\xa6\x37\x94\x96\xc7\x8d\x91\x22\x5b\xdc\x18\xf9\x0e\xdf\x44\xc7\x63\xf6\x62\x43\x3a\x44\xf4\x27\x50\xc8\x00\xab\xc5\xaf\xfd\x30\x3a\x0f\xd3\xac\xc8\x6b\xf6\x94\xc7\xf4\x58\xff\x66\x0d\x98\xe7\xb2\xe4\x28\xec\x57\x67\xa3\x37\xcd\xd8\x62\xd2\xe6\x2d\xcf\xfe\xee\xe7\x94\x2e\xef\x59\x60\xde\x30\x6c\x39\x4e\xf3\x7f\xbc\x7e\x9d\xf0\xd9\xac\x10\x3b\x6a\x7d\xf9\x0b\x4e\xcd\x96\x9e\x08\x56\x1c\x10\xf5\x9c\xf1\x5d\x27\x18\x04\x25\x0a\xff\x68\xcf\x1a\xed\x27\xa9\x83\xb5\x58\xc0\xc9\x40\x99\x33\xec\xea\x78\x50\xe7\xcf\xe9\x7e\xe0\x87\xe0\xfe\x81\x4e\x22\x17\x45\x6e\x6a\xe4\x49\x36\xc7\xa9\x3b\x80\xa8\x70\x06\x80\x03\x71\x7b\xa3\x2c\x12\x47\xd2\x93\xa0\x61\x28\x01\x1f\x61\xfc\x3c\x0a\xe8\x8e\x78\xe7\xb7\x9c\x7e\xcf\xeb\x64\xeb\x86\xb6\xc1\x3d\xb2\x74\xc0\x82\xbe\x38\xa2\x36\x10\xc3\x1d\x14\xb7\x79\x10\xc5\x4b\x54\xd7\x82\x55\xf0\x21\x3e\x45\xe8\x15\xf4\x29\xc2\xf6\xf0\x79\xc3\x04\x90\x05\x6c\x1f\x4e\xc5\x26\x9a\x6d\xd7\x5d\xb3\xa0\xb0\x61\x3f\x89\xbe\x52\xda\x1d\x8a\x3d\xf2\x6d\x3c\x33\x47\xa8\x73\xc3\x8d\xf3\x28\xda\x31\x4c\x38\x3d\xf2\x73\xf7\x0b\xca\x23\xf6\xd1\x8e\x56\xb4\x28\x0b\xfb\x28\xdd\x1e\x59\x50\xd5\x0a\x90\x0c\xcc\x8f\x4a\x1e\x59\x53\xb3\x82\xb3\xb8\xbb\x58\x02\x77\x94\xf9\xf4\x65\x42\xa7\xf1\x90\x9a\xc5\xe4\x03\x85\x5e\x87\xe4\x3f\x72\x83\xdd\x1d\x25\xee\xf0\x2f\x11\xc6\xd0\xff\x11\xb7\x3d\x34\x9d\x8e\x53\x74\xc0\x59\xfc\xce\x58\x6d\x3b\x73\xb0\xfd\x4a\x54\x14\xc2\xa4\x47\x1d\x0e\x4c\x0a\xbf\x5e\x6b\x90\x2a\x30\x71\x98\xf6\x53\x86\xc5\x62\x8d\x1e\xd6\xb9\xc0\x61\x77\x84\x66\x36\x4f\xe3\x92\x46\x11\x74\x03\x9c\xcd\x88\xeb\xa7\x7e\x8c\x4b\x67\xc9\x64\x25\x95\x55\x26\x51\x92\x0f\xa3\x8c\xbb\x11\x98\x38\xaf\xe3\xc0\xe5\x37\x35\x15\x22\x93\x98\x56\xb5\xea\x10\x96\x36\x34\x2d\x6e\xc3\x6d\xf3\x74\x21\x0f\xcb\xcc\x4e\x3a\xf0\xf6\xd1\x27\xa8\x1d\xe3\x9c\x84\x5d\x94\x7e\x72\xcd\xef\xa0\xf7\x9a\xa8\xf1\x89\x21\x66\x28\xee\x35\x4b\x1c\xe2\x26\x88\xde\xa1\x3f\x31\x97\xac\x1d\x46\x49\x6f\x67\xb5\x38\xa4\xfc\xa0\x1f\xe5\x39\xba\x77\x0b\xf9\x87\x70\xef\xc2\x3a\x9e\x24\x73\x1f\x57\xbc\x54\x0b\x01\xcb\xe9\xe8\xc8\x0b\x66\xdc\x6c\xa2\x03\x31\xda\xc4\x03\x61\xf0\x05\x4f\xa8\x6a\xf8\x84\xca\xf1\xca\x57\xa9\x4e\xda\x24\xe7\x8d\x4d\x0d\x2e\x9c\x7b\xee\x0b\x2d\x5f\xfa\x9d\xd5\x5f\xf0\xac\x8b\xb9\xe0\x1d\x31\x63\xc9\xd1\x12\xab\x28\x25\x84\xc5\x66\x1e\x09\x53\x9d\x22\x96\x05\x62\x14\x9e\x92\x80\xff\x69\x63\xf7\x35\x49\x8b\x62\x75\x42\x01\x81\xfe\x68\xe4\x7f\x1d\xce\xe8\x02\x57\xf2\x93\xec\x64\xb5\x24\x82\x05\xba\x1e\x67\x46\x4a\xd9\x8a\x30\x7d\x9b\x77\xc7\xc0\xc2\x04\x7f\x4d\x96\x26\xe8\x9b\x38\xfc\xa8\x9b\xca\x5c\x47\xf5\x00\xee\xc0\x47\x0d\x57\x3a\xdf\xee\x47\x71\x2c\x4b\x04\x9f\x75\x13\xcf\x9d\xdf\xb8\x38\xb5\xd2\x8f\x06\x79\x14\xf2\x8d\x40\x16\x7d\x5b\x41\xfc\x6e\xab\x39\x6e\x66\x87\xc0\xd4\xb6\x7c\x9b\xe5\x0d\x05\xe7\x7c\x43\x01\x4e\x5e\xe8\x76\x81\xb9\xc7\x31\xb9\x4e\x38\x30\x7e\xdd\x04\xf7\x4d\x87\x16\xf3\x50\xe4\x0d\x38\x3e\xef\xd1\x1f\xc7\x30\xf6\x33\x54\xd8\x88\xd6\x85\xb7\x76\x5c\x8e\x72\xda\x7d\xdc\x6a\x56\xc6\xe6\x67\x95\xc0\xc8\x4a\xdf\x5a\x97\x09\x23\x62\xbe\x83\x68\xc7\x6f\x9a\xea\xe3\x7c\x98\x59\x48\x81\x32\xfa\x58\x29\xc7\xfe\xf9\x48\xe1\x83\xcf\xb8\x0e\x46\x1e\x66\xd6\x0c\x24\x5d\x90\x49\xae\x32\xd7\x3a\x3b\x06\x86\xa4\xea\xdf\x24\xa1\xcd\xd2\x92\x15\x39\x91\xf9\xc0\x3e\x97\x5f\x2b\xac\x70\x94\x2c\xc6\xa6\x60\x76\x0a\xca\xd3\x53\x8a\x1b\x7e\xaa\x01\xc9\xe4\x1c\xd0\x5b\x9e\x74\x72\x84\xbe\x0d\xbf\x1e\xab\x14\x67\x0e\xb6\x4d\x62\xf3\xa2\x6f\x0b\x37\x69\x45\xfc\x67\x26\x0c\xbf\x69\xe0\xed\x1c\x68\xcb\x54\x43\x5c\xbc\x69\x21\xf0\x9b\xb1\xee\xc7\xb3\x6d\x9b\xbc\x92\xae\x0a\xe2\x9a\x91\xa0\x0a\x56\xb2\xae\xa2\xc2\x74\xf4\x9a\x32\x1c\x38\xa3\x0d\x07\xce\x34\xde\x59\x9b\x84\x69\x99\x91\xaa\xf4\xa1\x69\xd7\xd9\x54\xe2\xf6\x67\xb5\x79\x9a\xc9\x97\x6c\x41\x73\x7d\x4c\x08\x80\x31\xc7\x18\x77\xfb\x9a\xaa\xd5\xae\x52\x9e\x21\xd8\x4d\xdf\x96\x5a\x48\xd3\x44\xd8\x40\x8d\xdf\xde\x87\xe6\xc5\xcc\x76\xbb\x91\xfc\xb0\x2b\xc2\xab\x1f\x16\x11\x6d\xd5\x9f\x1d\x9a\x2c\x67\x47\x26\x49\xbb\x2e\x2b\xe5\x9a\xcb\x35\x2c\xf9\x6a\x92\xc6\xdd\xbf\xd1\xa0\xa8\xe1\x6c\x05\xb6\x80\x2b\x3f\xec\x54\xc8\xf5\x0a\x30\x42\xa1\xd9\x6f\x36\xad\xb1\x7e\x1a\x77\xa3\xa4\x57\xff\xdc\x2d\x48\xc3\x06\x54\xd3\xa2\xc9\x06\xdc\x10\x70\xdd\x5a\x6f\xeb\xd3\x28\xcf\xf6\x8a\x49\x9e\x6b\xf9\xb9\xed\x77\xb5\x50\xe3\x77\xc7\x6a\xb0\xbd\x7b\x3d\x99\x40\xad\xff\x33\xd8\xff\xfc\x46\x35\x3a\x97\xd3\x41\xe4\xb4\x94\x38\xd0\xff\x57\x9a\xbb\x70\x5a\x03\x59\x4f\x37\x6f\xb7\xc1\x30\xb6\xc0\xb3\xbe\xe4\x00\x82\xd5\x15\x63\x20\xfc\x51\xa0\xb4\xaf\xd6\x5c\xf4\x30\x64\xdb\x16\xf3\x11\xe3\x60\x1b\xce\xa8\xe8\x56\x4d\x01\xf5\x61\xe5\x0f\xf5\x88\x9f\xb6\x9d\xe4\xa1\x8b\xeb\x27\x39\xb5\xc3\x1b\x14\x84\x95\xd3\xe6\x4b\xbc\xcc\xd9\xe5\x14\xa7\xcb\x55\x3d\x2d\x47\x6e\x2d\x86\x81\x74\xd1\xc8\x1c\xae\xa0\xee\x16\xfa\x85\x12\x3b\xfe\xa4\x5a\x96\x9b\x60\x40\xc9\x67\x8d\xf9\x58\xcf\xb4\xed\x57\x4a\xb2\xff\xd4\xcc\x25\xd4\x69\x42\x63\xd2\x39\xd6\x20\x0a\x9f\xa4\xd3\x50\x8c\x24\x09\x35\x83\x22\xe7\x7d\x5c\x3d\x76\x18\xee\x32\xa0\x08\xb7\x02\x05\xb7\xbe\x53\x17\x32\xa8\x4e\x64\xd6\x14\x1d\x29\x01\xbd\xff\x9a\xce\x0f\xac\x3d\xd6\x99\xd2\x38\x57\xee\x8a\x33\x43\x88\x3f\x9e\x6e\x11\x32\xe0\x89\x35\xcd\x02\xaf\x8b\x25\x54\xc7\x3e\xc6\xf3\xe7\x94\xa7\xe2\x25\x0d\x6a\x3b\x11\xa8\xa1\xf6\x3c\x56\x19\x2e\x72\x5b\xe7\x09\xad\x28\x3c\x34\x09\x65\xb6\x5e\x4b\xf6\xa6\x82\x50\x01\xc3\x24\x9a\x62\x92\x11\x97\xc3\xaa\xce\x44\xc6\xed\xeb\xd0\x40\xdf\x7e\x41\x46\x84\x7d\x2b\x89\xb9\x84\x17\x0f\x86\xb8\x3c\xda\xed\xdb\x27\xbb\x5b\x5f\x9a\x71\xbc\x45\x9f\xef\x7f\x0b\xd7\x8e\xba\xe5\xb3\x54\x2a\xe2\x4b\x6d\x62\xd9\x39\xef\xaa\x43\x22\x50\x0a\x3f\x05\x87\xec\xad\x9e\x1b\x6e\x23\x1a\x9a\xd8\x28\x97\x6b\xea\xb6\xd5\xd1\xa3\x67\x82\x65\x58\x90\xba\x30\x22\x18\x52\x92\x4f\x55\x2c\xe1\xde\x15\xba\x9a\x6f\x69\xba\x43\x4c\x18\x41\x6f\x11\xa2\xba\x75\xe3\xa7\xe9\xa1\xe9\xe7\xdb\xdd\xcc\x2c\x3a\xf7\x2e\xc0\xa8\xce\x28\x48\x95\xcf\x07\xba\x51\x3e\x2c\x0b\xe9\xe3\xe0\xab\x7e\xaa\x96\xe8\x06\xd6\x2e\x50\xaa\xe3\xfa\x38\x55\xb0\x33\xdd\x41\x54\x70\xef\xdc\x81\x10\x94\x8c\x89\x4a\xa6\x93\xe2\x31\x3f\x9a\x9e\xec\x54\xbb\x1d\xf7\xea\xab\x5a\xad\x7e\x1b\x1a\xa3\x18\x72\xb0\x62\x0b\xf2\xaa\xed\x1d\x6f\xf7\xc4\xb0\x6c\xe4\xb3\x8f\x77\x5c\x87\xa0\xc5\x84\x3e\x2c\xaf\xef\xd3\xea\x15\x47\x50\x8d\xc6\xc1\x86\x41\x2d\x89\x21\x0e\xd5\xf1\x8f\x7f\x0e\x9a\x1c\x6a\xb2\xff\x12\xdf\xea\x3b\x35\xf9\xd1\x6c\x15\x63\x7b\x2c\x89\x4b\xf8\x02\x62\xbe\x54\x27\xdf\x54\x3b\x8b\xeb\xbb\x40\x8b\xd8\xca\x72\x5e\xb0\x8b\x69\x66\x1f\xad\xae\x01\xf5\xfb\xd3\x6b\xf4\x15\xd8\x6d\x56\xa1\x16\x20\xe2\x43\xa5\xed\xea\xdf\x43\x9d\x8b\x36\xcc\x3d\xdc\x0d\x26\x17\xa1\x25\x85\x32\x7a\x92\xca\x35\xfa\x95\x5f\x7e\xaa\x53\x95\x4d\x0e\x63\xed\xad\xdd\xee\xd3\xee\x74\xb3\x36\x57\xde\xa3\x01\xb5\x79\x1b\xf1\x53\x54\x87\x3c\xd8\x6d\xd8\x8f\x62\xd3\xb5\xf1\xb0\x1f\x19\x6d\xf7\x50\x67\x93\x37\x39\xc7\x98\xbc\xb0\x89\x6f\x3a\xe2\xc6\xbd\xab\xef\xe2\xbb\xaa\xe4\x85\x9f\x07\xc1\x11\x3d\x5a\x08\x6c\x25\x7e\x3d\x46\xc8\x27\x54\x6a\x92\xdb\x0c\x94\x04\xe9\x7b\x21\x46\x6c\xeb\x28\xfb\x70\xd6\x98\x45\x30\xb8\x55\x43\xda\x0c\xf2\xe7\x26\x55\x15\xfe\x48\xa7\xf5\xa2\x77\xcd\xd6\x04\xcd\x75\x52\x1f\x12\x41\x8e\x66\x6c\x74\x4f\xb0\xf0\x22\x89\x45\xdb\x9d\xdf\x04\x9a\x9d\x3f\x18\x9a\x8c\x05\xfa\x9d\x4c\xd6\xec\xec\xfe\x4d\x84\x30\xac\xd9\x13\x8d\x75\x55\x16\x39\x4b\x63\xb4\x54\x4e\x06\xaa\xbf\x72\x52\x4d\x0c\xf3\xd5\xcc\x84\x65\x6e\x79\x28\x80\xe3\xe5\x22\x1e\x80\x6c\xdd\xea\x5e\xb3\xea\x0c\x0e\x5d\x24\x23\xf7\xa9\x9b\x27\x72\x34\x4d\x32\x5d\xf0\x04\x72\xd4\x12\x78\xd9\x8a\xf8\x91\xf4\xc0\xad\xc9\x8b\x47\xaa\x02\xf3\x53\x3c\x00\xf4\xb1\x26\x3b\x3e\xa5\x9d\xa0\xf5\x2a\xde\xf7\x8a\x25\xf1\x43\x2d\xb6\x74\x1c\xcb\x1d\x92\x38\x38\xae\xf0\xa7\x46\xf8\xee\x0e\xab\x5f\x7d\x35\xf4\x93\x76\x53\x6f\x03\xa7\xd1\xf5\x91\x6e\x22\x5e\x56\xf5\xe2\xc4\x9a\x4f\xbd\xe3\x28\xb1\xe5\x50\xa9\x6a\x5c\x52\xaa\x1a\x97\x1a\x34\xa2\xe6\xdb\x79\x49\xdc\x8c\x96\xf8\x8f\x7f\xee\xbe\x06\x5a\xde\x50\x06\xc9\x1f\xd6\xfa\x35\x71\x6c\x48\xf7\xd6\x81\xaf\xe7\x9c\xf9\xe4\xe5\xda\x50\x51\x41\x9b\x3e\x44\x94\xe1\x5f\x51\xc2\xcd\xdf\x1b\x9b\x76\xee\xdd\xdb\xee\x66\x29\x5b\xe3\x28\x6b\x2d\xe7\xb3\x15\x6c\x65\x1a\x56\x0b\xeb\x95\x32\x8b\xf2\x61\x56\x76\x6d\x12\xb2\xf0\x32\x62\xf2\x19\x35\xfb\x3d\xa3\xa8\xe4\xa1\x19\xd8\xcc\xb4\xd4\x74\xf4\xb6\x26\xcc\xdd\xd6\x60\x63\x93\x44\x05\x66\x2c\xf4\x13\x4d\x96\xc0\x0a\x8f\xc4\xd2\xd7\xc0\x4e\x1e\x1b\x79\x5d\x8a\x63\x0d\x15\xd6\x3c\x71\xda\x87\x04\x84\xa7\xfb\x85\xb3\x96\xbd\xdb\xf9\x8d\x3a\x6b\x17\x8d\x50\x25\xf0\xcc\x6e\x29\x8c\xea\x2d\x3d\x8e\x4d\x12\x13\x5b\x96\x04\x16\xdd\x2b\x35\x6a\x59\x6f\x98\x32\x1f\x68\xe7\x69\xcc\xa8\x20\x2c\xca\xbb\x23\x25\x56\xba\x1d\x10\x21\xf6\x96\x1b\x2b\x5c\xab\x82\x3f\x4a\x96\x94\xd0\x25\xc9\xb2\xc8\xeb\xb1\xcf\xdb\x37\xd7\xce\xfb\x46\x54\x8b\xb9\x48\x52\xfd\xc5\xb3\x63\x95\xee\xcc\xc1\xf6\x30\xea\xe5\x6c\xb5\x22\x80\xc0\x96\xe3\x6f\x1f\x55\xf8\xb1\x38\x4a\xc2\x34\x86\x38\x34\xfe\x77\x33\xf0\xc4\x57\xae\x45\x91\x6c\xfd\x75\xe0\x67\x1f\x59\x39\x20\x05\x9f\xea\x16\xa0\xe1\xc4\xf5\x27\xbf\x51\x0b\x28\xb3\x83\x54\x44\xc1\xd0\xd3\x40\x77\x94\x5f\x3b\x70\x36\xe1\x9d\x5c\x3b\x0f\x03\x1d\x0c\xd1\xf9\x75\xa3\xfd\xce\xcc\x23\x74\x5b\x30\xa0\x64\x21\x70\xf4\x85\xaf\xab\x29\xd4\x45\x35\x67\x7a\x13\xd9\x3a\x8a\x98\xeb\x88\x39\x48\xa7\x2e\x21\xce\x20\xf9\x7e\x87\x4e\x25\x01\xf0\x21\x11\x17\xc8\x2f\x02\x0d\x53\xea\x50\xde\x21\xd2\x1c\x47\xce\x82\x5c\xfc\x9b\x14\xc2\xf8\x2f\xa8\x5b\xde\x33\x71\x9c\x32\x64\x4f\xb6\xaa\x52\xf2\x18\x07\x19\x38\x93\x9f\x34\x8e\xd3\x15\xc2\x93\x01\x4b\x08\xd8\x2e\x4e\x9e\x4b\xb4\x81\xc4\x33\xb6\xa9\x9a\xed\xa5\x29\x41\x14\x67\x6a\x5e\xbb\xa2\x64\xa5\x1a\x42\x1f\x60\x35\x3b\x95\x47\x27\xc4\xbc\xa9\x1a\x6f\x69\x12\x4d\x28\x1e\x36\x94\x11\x71\x29\x67\x68\x32\x24\x4a\xd5\xe3\x53\xfd\x03\xb0\xf3\xe4\xa1\x33\x32\xa2\x5d\x90\xfe\xd1\xc1\x5b\x0a\x22\xf5\x29\xe3\x0a\x3f\xfb\xa7\xdb\xd1\x60\x50\x26\x50\x05\x45\x0b\xef\x82\x76\x31\xfa\xa9\x6a\x9d\xde\xa1\xf3\x0b\x0f\xfb\x88\x46\xa5\x0d\xad\xed\x4a\xd5\x8e\x58\x72\x4b\xc1\xba\x6e\x39\xca\xf8\x82\x35\x59\x8e\x7c\x11\x53\xe3\x09\x3a\x80\xb0\xd5\x0f\x6b\x0d\xca\x4b\x1a\xea\xfe\xe7\x23\xcd\xd7\xf1\x08\x8f\x38\xcd\x8b\xdd\x55\xc2\x21\x7f\xa0\xfa\x4c\x99\x9b\xd2\xef\xb3\x0c\x9c\xae\x47\xbe\x4d\x33\x2d\xdc\xdd\x4d\x9e\x84\x48\x67\xca\x3f\x50\xd4\x39\x02\x11\xa3\x55\x29\x42\x97\x4a\xd5\xe1\x96\xdb\x7d\x64\x01\x18\x85\xa9\x92\x3d\xb9\xa0\x55\x03\xb5\xf0\x77\xdf\x64\x5d\xa4\x05\xdc\x27\xd6\x65\xfd\xf5\xa6\x11\x0c\x8c\x39\x39\xa1\xd1\x2a\x6c\xde\xd6\xde\x8d\x88\x7b\x99\x19\x4c\x2a\x9a\xec\x25\x22\x26\x23\x36\xfd\x42\x9f\xea\x94\x60\x20\x5b\x38\xaf\x7c\xf4\x88\x1e\x52\x44\x45\x9a\x11\x90\x55\x14\x16\xfb\xea\xe6\x9c\x0f\x6a\xee\x25\xbe\xd1\xf7\x3e\xc2\x01\xfa\x62\xef\x60\x4f\x88\xec\x8b\x9f\xbe\xdd\x0c\xb6\x58\xa1\xf8\x51\xe2\x3b\xaa\x8d\xdd\xb5\xa6\x5b\xa5\x1b\x39\xf4\x75\x41\x7d\xfb\x11\x0e\x78\xf1\x20\xa8\xd6\x85\x78\x13\x28\x0d\xbc\x1f\xe9\xfe\x1d\xe9\x19\x81\x5b\x86\xec\xee\xa6\x82\x8e\xde\x74\x80\xb0\xbc\x1c\xda\x2c\xb4\x5d\x0e\xb5\x82\x17\xa3\x3d\x26\xd9\x67\x43\x0b\x89\x7e\x2d\x62\xbd\x1b\x04\xab\x2b\xca\x24\xe2\x8a\x2a\x96\xfa\x26\x5e\x04\x9d\x03\x1d\xe0\x5b\x94\x3f\xba\x01\xe2\x21\xe1\x8e\x5c\x53\x3d\x19\xb6\xe0\xe0\xff\x08\xfc\x81\x7c\x2c\x50\xa9\xfb\x55\xad\xc6\x73\x9c\xb6\x81\xf3\xf1\xf4\x80\xaf\x06\xfe\xf0\x7c\xfb\x19\x3b\x00\xb5\x09\x21\x8a\x0c\xaa\xe4\x75\x63\x18\x5c\x4e\xd1\x2f\x9b\xf3\xf8\x53\x47\xb2\xfe\x3f\x47\x4a\xfe\x52\x05\xbb\x9e\xed\x3e\x36\xe1\x1c\x35\x7f\xef\x39\x2a\x79\xf1\xc4\x4f\x8e\xbc\xee\xdf\xaf\x3c\xbe\x56\x1d\x1a\xd8\xc1\x67\x15\x72\xfa\x3a\xb5\x71\x79\xbc\x3d\x52\xb4\xe6\x1a\x65\x72\x07\xec\x4c\xe1\x39\xba\x67\xcd\x8b\xe9\x3f\x4c\x9b\x99\xb6\xfc\x57\xff\xce\x9a\xae\xd0\x47\x9e\x37\xf3\xc6\xaf\x11\x40\x09\x5f\xe4\x61\xc2\xdb\xe3\xd1\x4c\x2a\xaf\xde\x61\x59\x50\xcb\xd1\x7f\xe5\xb7\xd0\x96\x12\x64\x5e\xcb\x09\x12\x5c\x75\x1d\x9d\x34\x33\xc9\x2b\x76\x50\x26\xdd\x29\xef\xbe\x76\x44\xc7\xa4\x16\x25\xf8\x0e\xd3\x32\xe7\x47\x23\xad\x2f\x7f\x41\x4b\x2b\x78\x77\xfc\xe1\xaa\xc9\xba\x93\x4a\x8f\xf0\x2e\x1d\xb8\xee\xf0\x75\x33\xae\xbb\x81\xb7\x7a\x79\x27\x78\xd2\xa3\x3f\x32\xdb\x8d\xc0\xc7\x9b\x6c\x3d\xf3\x0c\xff\xf4\x4f\x94\x64\xf5\x25\xc5\xab\xbb\x04\x57\x3a\xfe\x21\x27\x96\xb5\xd8\x37\x93\xba\x8d\xf9\x9e\xa2\xf3\x68\x31\xfd\x4b\xba\xf5\x3b\xd1\xf1\x63\xa1\xac\x78\xad\xa5\xa4\xf5\xdf\x19\xf9\x96\xd8\x3b\xce\x28\x6c\x31\x36\xbd\x49\x05\x22\x67\xa1\x11\x89\x1f\x2d\xe7\x74\x84\x98\x86\x34\xe3\x64\x03\x28\x7c\xbe\x1d\x9a\x2c\x8b\x78\x14\x29\xad\xbd\xa3\x41\xdd\xa1\x5b\x1d\x6c\xfd\x14\x6c\x2d\xfc\x00\xb2\xfb\xf7\xb5\xa9\xe1\xfb\x9a\xe0\x93\x86\x11\x35\x93\xbd\x38\xc6\x0f\xa8\x1e\x46\x70\xdc\x50\xd6\xf7\xa7\x5c\xc4\x8e\x4d\xb8\xe4\xb2\x36\x64\x30\x68\x86\xf1\x6b\x85\x13\x03\x3f\x93\x6c\xc0\xf6\x4f\x1f\xf0\x82\x67\xb3\xb3\xee\x4d\x13\x33\xae\xb0\x26\xec\xdb\x4c\x2a\x7f\x64\x98\xf7\x02\x71\x20\xa8\x2e\x56\xa0\x2a\x4d\xbc\xba\x30\x33\x03\x92\x33\x73\x77\xf9\x7b\xaa\x85\xf6\x3d\xd7\xbd\x29\x9f\xcb\x9f\x33\xcf\xd1\xce\x60\x8f\xa5\x40\x9d\x42\x6f\x06\xba\xc1\x71\x41\x69\x91\xb1\x74\x83\x78\x09\x31\x85\x98\x16\xad\xd0\x89\x75\x2b\xc2\x88\xa7\xbd\x88\x3e\xe2\xef\x22\xc5\xbe\x8b\xa0\x28\x56\x46\xaa\x17\x6b\xf2\xc2\x24\xb6\x6b\x5a\x9a\x12\x58\x13\xd7\x71\xfd\xd7\x84\x84\x5a\xdc\x88\x13\x3b\xfb\xbe\xd2\xe1\xfa\xc1\xc8\x9f\x25\x77\xd5\x6a\xe1\xc3\x37\xdf\x49\x4b\x15\x3d\xe4\x0f\x03\x35\x47\x86\xe3\x99\x18\xb6\xe2\xc2\x35\xe9\x13\xec\xdd\x9b\x23\xe5\xfc\xc9\xe2\x53\x50\x17\xf8\x40\x15\x5e\x5d\x5b\x05\xe2\x5c\x4d\xd9\x30\xbb\xe7\xd7\x1e\xab\xbd\x92\x0e\xd3\x88\xb5\x95\xd8\x12\x54\x09\x16\x9c\x52\xe7\x53\x91\x45\x83\x09\x7d\x34\x1f\xd1\xc0\x20\x9e\x37\x48\x10\xf6\x70\xa7\x7f\x77\x8f\x6e\x1c\x5c\x55\x85\xe2\xcf\x90\x01\xa0\x9e\xb8\x8a\x93\x1b\xfd\xe5\xcb\x9e\x5c\xf4\x0a\xab\x1c\x20\x8f\x3d\x8e\xf4\x4a\x2c\xd4\x5a\x5f\xf4\xde\x9d\xd5\x61\x89\x32\xf8\xee\xa8\xa6\x35\xa5\x66\x34\xe7\x10\xa6\x98\xce\x4e\xb7\x1b\x3f\xc5\x50\x20\x2c\xc6\xcf\x51\x98\x40\xaa\xb0\x6b\x4d\x21\xac\xde\x69\x1a\x79\x0f\x89\xc2\x28\xe3\x74\x6e\x89\xd3\xb7\x94\xf6\xb8\xc4\xa9\xc4\x64\xab\x93\xd5\x65\x22\x7a\xdf\x04\x62\x0a\x0b\xe1\xa2\x12\xb4\xba\xad\x94\x72\xd7\x6b\x61\x3d\xb3\x5d\x32\xd3\x73\xd4\xcc\x0b\x35\x5b\x9f\x9a\x70\x87\x09\x8b\xc7\x7c\x03\xbc\xb5\xe6\xf9\xd8\x37\x29\xb1\x40\x35\xcd\x1e\x2f\xc8\x64\x59\x2b\x82\x6b\x37\xc5\x82\x9f\xe8\xd4\xd5\x29\x3c\xa0\xe1\x2c\x8a\x3a\xfc\xfe\x5f\x52\x78\xc6\x24\xe3\xba\x9e\xda\xdc\x40\x12\x27\xd3\x53\x7a\xd2\x48\x80\x5a\xd4\x77\x05\xcc\xe6\xdb\x23\xa5\x3a\xfd\xd7\x6a\x14\x0a\xc7\x41\xcb\x74\x6f\x25\x64\x26\xed\x3b\xe8\xfa\x69\xdd\x6f\xfe\x77\x75\xf7\xba\xe9\x20\x4a\xb8\x79\x22\xd5\xcb\x47\xb4\xce\xf8\x75\x63\x2b\xa2\x6f\x96\x81\xf6\x51\x42\x3c\x33\xae\xed\xed\x39\x92\xef\x07\xaa\x28\xba\xd5\x30\x1d\x8f\x06\xc3\x2c\x5d\xb6\x54\x5e\xa2\x1d\x76\x2d\x50\xe3\xb6\x77\xe9\xaa\xe5\x64\x7c\x7c\x4b\xba\x6d\xf9\x40\xc2\x88\xe6\xaf\x15\x02\xf1\xaf\x1d\x04\x04\xc6\xc0\xc2\xec\x40\xe2\x7e\x79\xa4\x9c\xb1\x7f\xa8\x0c\x34\xcf\x57\x4b\x45\xea\x0d\x6b\xb2\x02\xb7\x16\x17\xc6\x0a\x6f\x62\x4f\x44\xdf\x18\x3b\xfe\x8e\x8a\x21\x3f\x54\x50\xd1\x30\x0d\x53\xc4\x4e\x3c\xc9\xc3\x0a\xe0\x79\x58\x69\xba\x54\x47\x00\x68\x8f\x12\xb1\x5a\x4e\xb3\x1f\xf9\x00\x33\x2f\xb5\x28\x4c\xab\xf3\xb4\xba\x1d\x49\x9e\xc6\x51\x57\x59\xd2\xc8\x21\xed\x61\x4f\x47\xdd\x8e\xcb\x97\x22\x2e\x83\x39\xae\xe0\x96\xe3\x3c\xfb\xf9\x48\xb9\x3a\xa3\x49\x24\xab\xa2\x69\x58\xb4\x90\x96\x49\xf8\x37\xba\xc4\x2b\x55\x85\xaa\x66\x26\x79\x5b\x2f\x0b\xa2\xcc\x63\x9b\x89\x0e\x43\x1b\x16\x26\x2c\x63\x83\x29\x3a\x4b\x1f\xd2\x1d\x12\x19\xc4\xad\xd7\x35\xff\xc2\x81\x76\xd8\xaf\x0a\x18\x2e\xfe\x9c\xda\xac\x57\x9e\x6d\xd2\x15\x6f\xa7\x43\xd0\xf4\x5c\x11\x7e\x41\x77\xfa\xb6\x04\x92\x64\xf5\x6f\x21\x84\xcb\x58\x8c\xee\xbb\xa8\x7a\xd3\xfd\xc0\x18\xec\xc6\x48\xb1\xb8\x2e\x51\x94\x71\xd3\xd1\x2f\x29\xaf\xa4\x2a\x16\x20\xb8\xef\x5e\xab\x52\x7d\x24\xeb\x3f\x0b\x54\x5c\x39\x8a\xb8\xe2\xd0\x49\x9f\x7f\x51\x30\x76\x10\xac\x52\x7a\x5b\x22\x0f\xf1\x46\xa0\x65\xde\xa9\x8c\x17\x12\x2b\x7d\x37\x11\x48\xdb\x2a\x16\x86\x86\xfb\xa7\x14\x0a\x40\xb5\x9b\xe8\xd4\xbb\x03\xde\xac\x03\x76\x20\x3c\x00\xc4\xec\x1c\xe7\xf5\x04\xcd\xdc\x70\xb5\x53\x6b\xe3\x95\xd4\x4b\xed\x55\x5b\x10\xb7\x1b\x1f\xb7\x1d\x0d\x19\x1e\x57\xd3\x67\x23\x64\x6d\x5f\x6b\x1a\x58\x2c\x44\x71\xcc\x85\xae\x60\xce\xf0\x48\x6a\xd5\x2d\xda\x56\xdb\x71\x96\x21\x73\xb8\xd7\x28\xf2\x53\x64\xe9\x92\xd5\x5e\xb9\x5b\x1c\x44\x1d\x68\x3a\x2d\x76\x28\x82\x20\x9a\x55\x38\x05\xe0\xf1\xab\x39\xd8\xd8\xc6\xbb\x31\x94\x13\x96\x8e\xb2\x75\xdb\xd1\x19\x8f\x8a\xb9\x2d\x64\x27\xbf\xc4\xbb\x6f\x63\xa4\x24\x6e\x37\x5c\xfd\x6d\xba\xcb\x69\x68\x0a\x29\xf7\xe5\xc6\xd1\xf7\xc6\x15\xc1\xa8\x53\x70\xec\x1a\xd0\x3a\x7a\xd8\x7d\xa3\xe5\xa8\xe5\x43\xd8\xfb\xb5\xde\xc4\xd6\xae\xf8\xec\x2c\x29\x32\x64\x11\x7a\x57\xee\xb7\xb4\xfb\xd9\x15\x6d\x87\x68\xca\xb8\x20\x63\x48\x84\xd1\x3b\x8a\x7e\xbc\xa1\x12\xfd\x33\x4a\xc6\x64\x29\xea\x26\x6c\xd5\x82\x42\xea\x84\x16\xb6\x39\xa1\x00\x72\x43\x93\x4e\x56\xcb\xc7\xb9\xfb\xba\x51\xd1\x87\xca\xe3\xed\x43\x7a\x2a\xc2\xc8\xf1\xc7\xc8\x42\xc6\x2d\x38\x5a\x75\xee\xe1\x78\x56\x0a\x99\x89\x3a\xe0\x7f\x91\x45\x26\x0b\xfb\xe8\x70\xa3\x97\x85\x6a\x8f\x5f\x37\x75\x3a\x56\xaa\xd2\xc9\xe9\xce\x8b\x36\xb9\x82\xec\xeb\x85\x95\x47\xd8\x0c\x88\x28\x37\xa8\xab\x20\x63\xaa\xea\x1b\xe0\x70\x3b\xeb\xc5\x24\xa3\x57\x8b\xd5\x89\xd6\xcc\xc1\xcd\x8b\xd4\xfd\x44\xcf\xfa\x0e\x6e\x16\xce\xba\xf1\x76\x44\xb5\x71\xe2\x32\xe9\x72\x79\xe6\x34\x6a\xab\xdf\xe1\x37\x0e\x82\x6a\xba\xcb\x55\x18\x9d\xf4\x25\x2d\xd8\x0e\xd8\x6d\xad\x8e\x17\x3d\x3b\x41\x17\x20\xfe\x13\x0d\xdd\x38\x56\x1e\xe5\xc2\xd7\x05\x91\xea\x46\x60\x87\xad\xd3\x5f\x76\x12\xd6\x9e\x40\xb2\xad\x23\xd5\x52\x2f\x4e\xd3\x01\xec\xa6\x61\x6c\xb0\x07\xc3\x72\x1c\x9b\xeb\x6a\x28\xf6\xd0\x9a\x7f\xca\xbd\x98\xb1\xd8\x14\x86\xd1\x98\x3b\xad\x6c\x50\x4e\x6b\x6d\xa9\x74\x65\x57\x75\xa7\x45\xbb\x55\x69\x5a\xdf\x1b\xf9\x16\xe8\x1e\xfa\xe6\x58\xb8\x98\xc5\x39\x27\x18\x6f\x19\xc7\x1a\x7f\x28\x7f\x76\x74\xea\xcc\x3c\x79\xe4\xbf\xf2\x85\xdf\x9e\xff\xc2\x6f\xcd\xfd\x12\x05\x69\x67\x31\xe4\xa8\x8d\x68\x1e\xb3\x33\xa3\xb6\x33\xbd\x1e\xf8\x41\xfb\x3d\xba\xf7\x62\x8c\xa9\x27\xcb\x57\xb4\x92\xe7\x15\xed\x52\x7b\x0c\x5f\x0d\xf3\x90\xf7\x10\x30\xb0\xec\xb6\x83\xeb\x2a\x5a\x97\xd5\x7a\xd4\xe5\x16\xd2\xe0\x56\x87\xc2\x91\x50\x74\x34\xb8\x11\x07\x83\x00\x49\xab\xd3\x8e\xef\x1f\x6a\x6e\x20\x54\x8e\x6b\x5f\x91\x75\xd4\x1f\x02\x39\x6b\xed\xdd\xeb\x2a\xf3\xea\x59\xe0\x8b\x9d\xae\x49\x78\xa6\x3c\x67\x63\x69\x6f\xba\x4b\x22\xf3\xad\xcc\xff\xbb\x03\x98\xb1\x1e\x9a\x76\xbb\xcd\x13\x74\x1a\xb9\x9c\x31\x39\x8b\xf8\xc0\x7d\x2a\x50\xa5\xc4\x29\x57\xb7\x67\x51\xbe\x24\x59\x0f\xee\xc8\x9f\x8e\xd4\x84\xe7\x4f\x1b\x54\xab\x0e\xb4\x17\xa3\x6c\x20\x48\x50\x35\xfc\x91\x0e\xc1\x25\x15\x01\xf3\xc2\x0c\x86\x4c\xc8\xc5\xb4\xef\x34\xfe\x3e\xbf\x69\xa0\xd9\xb6\x5f\xb1\x79\x61\x33\x1c\x1a\x02\x46\xae\xbe\x88\x80\x94\x9b\x98\x8e\x5d\x3b\x2c\x8b\xd5\x9d\x4a\xde\xe3\xcf\x78\x01\xb1\x8e\xa7\x12\x6f\xdd\x4d\x23\xc6\xcd\x73\x78\x74\xce\xe8\xc3\x75\x5d\xce\x61\x49\x49\x85\xf6\xa4\xca\x83\x93\x22\xaa\x6a\x41\x13\xef\xf0\x3f\x8e\x90\x86\xe2\xe7\x9a\x9e\x45\x81\x3f\xc3\x61\x45\x69\x29\x9e\xc0\xca\xe2\xdf\x50\x7d\x8a\x85\x34\xcb\x52\x82\xca\xfb\x6c\x75\x43\x09\xe4\x6d\x80\x13\x57\xa7\x9a\xe6\x29\xe5\x79\x62\xf5\x58\x5d\x8b\xe8\xd5\xef\x51\x5e\xbe\x49\x6c\x12\x7e\xce\x0a\x4a\x30\x23\x6f\x9a\x38\x71\x03\x13\x25\x8b\x99\x19\xc0\x3d\x19\x7b\xf7\x24\x6d\x51\x19\xec\xf9\x94\xfe\x9a\x2a\x03\xb2\x28\x34\x13\x2a\x74\x63\xcc\x83\x86\x29\x84\x81\x91\x61\x5d\x56\xa8\xa8\xe7\x7e\xfd\x3f\x6c\x79\xf2\x01\x66\x60\xc2\xba\x68\x82\x6e\x96\xf1\x30\x23\xa3\x7f\x2f\x1a\xf2\x81\xce\x16\x4e\xe8\x46\x44\x83\xfe\xcf\x4c\x3b\xae\xee\x34\x5a\xd9\x32\x99\xa4\x78\x21\xca\x68\x14\x70\x50\x16\xde\x1b\xbb\x84\x2a\xe3\xab\x2a\xb2\x65\x9b\x11\x17\x15\xe4\xad\xb3\x23\xdd\xe3\xab\xbe\x34\x9a\xd9\x37\x95\x76\x33\x15\x8a\x43\x12\x03\xf6\x96\x57\xe0\xfc\x49\x49\xf0\xb8\x8b\xe2\xe2\xfa\x8d\x52\x08\x8f\xea\x9f\x2a\xfb\xcb\x7f\xaa\xa4\xe8\x7b\x59\xba\x92\x40\x51\xd3\xc9\x0f\x54\xd1\x08\x29\x24\x9a\x0e\x8e\x98\x5b\xdd\x35\xfe\x8f\xa6\x01\xb8\xe9\xd9\x84\xbb\x65\xec\x25\xa6\x64\xbc\x2f\xd4\x3a\x72\xe9\x4a\x3c\x51\xd3\xa5\xad\xee\xa1\x88\x1a\xb7\x9c\xf0\xfa\xed\xc0\x97\xea\xe9\xe2\xa2\xcd\xa2\xa4\xa7\x18\x5d\x5f\x0b\x14\xc7\x8f\x55\xab\x9c\x40\xe4\x6f\xfd\x7d\x3e\xc6\xbe\xa7\xc8\x50\xdf\x41\x1e\x89\x0c\xf5\x0f\x1b\x75\x41\x17\xa3\xa2\xd8\xd2\x5c\x3d\x37\xd2\x73\xe3\x3d\x6a\xcc\x6e\x42\xb2\x2d\x70\xc6\x93\x2c\xcf\xcc\x6f\x94\xc0\x6b\x58\x0e\xca\x98\xd0\x54\x13\x4a\x73\xff\x53\x25\x3c\x39\xb5\xa6\x48\x70\xdb\x3b\x4d\x8d\x68\x56\x12\xef\xb6\x54\x19\xc4\x1b\x92\xdf\x04\xda\x90\xa9\x2c\xc2\x3e\x4e\x7d\x24\x36\x47\x29\xdf\xe4\xd7\x63\xa0\xaf\x99\x83\xa4\x77\x19\x25\xbd\xd2\x5b\x6a\xe0\x1c\xdd\x8e\x16\x10\xbf\x19\xcb\xd8\x67\x0e\xb6\x33\x5b\x98\x28\x9e\x74\x50\xc0\xff\xf9\xa1\x35\x55\xac\x9f\xf5\xdb\xf7\x57\x9f\xec\xd4\x06\xdd\xb5\x2a\x9e\x06\xa2\x4c\x18\x76\xfc\x05\x86\xe7\xf1\x1b\x75\xf7\x7b\x51\x3c\x48\x33\x56\xb9\xc2\xe9\xc7\xba\xd2\xfc\x66\x2c\x0f\xdb\xbb\x97\xa6\x20\x43\x3e\xba\x40\x8a\xab\x42\xba\xb4\x06\xc2\x74\x60\x1f\xf2\x98\x6c\x2d\xc0\xff\x14\x79\x8f\xa1\x2f\x37\xb5\xa6\xd4\x0e\x8e\x8e\xd4\x50\x0d\xb0\x57\x24\xc4\x38\x30\x9c\x94\xb0\x9f\x58\xec\x7c\x0a\x9d\x33\xc4\xb3\x4d\xd5\x22\xc8\x6d\x58\x66\x51\xb1\x0a\x13\x25\xad\xa5\x82\x38\xca\x6b\x44\x20\x25\xf4\x27\x1d\xd6\xc4\xf5\xd7\x6f\x68\xd6\xfd\x9d\x60\x2b\xfd\x43\xa0\x0d\x26\x29\xfa\x69\x82\x74\x1e\xe8\x09\x16\x0d\xe7\x37\x8d\xe1\xcb\x14\x85\x1d\x0c\xd1\x19\x46\x37\x1d\xd3\x3f\x7e\x3d\xd2\x54\x96\x30\x2e\xbb\x36\x9f\xf4\x5d\x9f\x2b\xd8\x7d\x35\xe8\x19\x7a\x01\xe7\x95\x5f\xcc\xba\x6a\x43\x15\x36\x8e\xf3\xa9\x2a\x8b\x12\x68\x83\x17\xae\xb9\x48\x45\xbb\x0c\xba\x3c\x27\x85\x49\x2c\x42\xdf\xf1\xa7\x45\xd8\xb7\x0f\xf9\x2f\xfb\x59\xc2\x73\xb3\x4f\x78\xa0\x4c\x90\x8e\x8d\xb4\xbe\xbc\x22\xf9\x32\x83\x03\x59\xdf\xc3\xec\x59\x87\xb9\x13\xa0\x3e\x38\x38\xf6\x74\xaa\x92\xe4\xb8\x62\x8e\x0c\x4d\xb6\x94\x2b\x8d\x45\x46\x3b\x89\x82\x9d\xca\x7b\xac\xc9\xd3\x64\x77\xcb\xf5\x32\xa0\xe9\x23\xdd\x40\x85\xdd\x38\x8d\xd4\x56\x86\xc2\x74\xf9\xc2\x06\xf1\xde\xd4\x40\x24\x30\x4e\x18\x41\x96\x7f\x83\xbe\x23\xbe\x3c\xab\x19\x48\xeb\xd7\x1f\xff\xb1\x35\x8e\x57\x81\xbe\xd1\x45\x3d\xfe\xb8\xa8\x4a\xc9\xa2\x5f\x66\x79\xd7\xac\x4e\xb5\x9c\x8f\xc9\x06\x2e\x4a\x9c\x47\x5a\x4e\x40\x9e\xc1\x9b\x58\xb7\x70\xa8\xc4\x89\x7f\xb1\xc9\xe9\x61\x98\xe6\x51\x15\x11\x38\x20\x49\x8d\xa0\x3d\x49\x6b\x8d\xa9\x67\xe2\x98\xda\xa9\xfc\xc8\xb4\xd1\xc2\xf5\x91\xd7\x33\x1d\x6f\xec\xee\x9b\x6b\xe7\x43\xd1\x76\xc1\x38\xf6\x43\xa5\x1b\xff\x61\xe0\x31\x24\x89\x79\x25\x6a\xe9\x42\xe3\x82\xb2\xb0\x1e\x77\xb4\x27\xcf\xbe\x61\x15\x22\x5f\x6d\xf9\x21\xc2\x6e\xea\x4c\xf0\xeb\xb5\xad\xbf\x33\x3b\xeb\xcc\x09\x10\xc2\x91\x3c\x71\x6f\x8b\xdf\xb8\xca\xed\x95\x34\x4a\xe0\x40\xa6\x08\xd9\x07\x38\x71\xbd\x31\x52\xdd\xf8\x5d\x1d\xc9\x13\xc4\xcf\x07\x82\xc9\x32\x38\xfb\x4e\xe0\xe9\xfc\xbf\x08\x14\xb9\x0d\x15\x17\x16\xc9\x25\x9d\x03\xaf\xeb\x8a\x23\xec\x47\x76\xd9\x4e\xaa\x88\x78\x5e\x25\x1e\x3f\x18\xf9\xed\xf7\x4d\x94\x63\xcc\x27\x1e\x2b\xd3\xf7\x4f\xb7\x17\x4d\x2c\xba\x32\xc0\xf7\xac\x63\x05\xf3\x1b\xcf\xac\x89\xb2\x61\x9a\x09\xd2\x85\xcb\x28\x35\x7a\x3b\x3d\x7a\xca\x13\x87\x87\x69\x92\x47\xca\x66\x4c\x56\xbd\x3f\x6f\x36\xc6\x20\x0f\x33\x07\xdb\x79\xe9\xe4\xca\xd1\xda\x63\x14\x74\x4d\x62\x1e\x27\xdf\x25\xaf\xd3\x0a\x93\x70\x0f\x83\x43\xa3\x90\x5f\xbb\x1e\x7d\x5a\x16\x79\x3f\x4a\x44\x74\xcc\x91\xe4\xf6\x89\xa1\xe5\xba\x9a\x17\x86\x7d\x93\xf5\xa2\xa4\xb7\x93\x52\x36\xa7\x7b\xe7\x14\x8f\x28\x63\xdb\x9c\x58\xab\x42\x26\x5b\x87\x06\x1e\xda\x01\x12\xb6\xb0\x4e\xe9\x01\xe0\xa2\xef\x78\x6d\x76\x33\x58\xb0\x59\x51\x27\x7a\x69\x82\xd9\x39\x87\x5f\xca\xfb\x51\x6e\xa3\x6e\x3a\xe1\x51\xac\x80\x70\xd5\x7e\x4b\x6c\xa9\xb6\x20\x09\xab\x54\xeb\xe5\x97\x77\x55\x8b\x0a\x6b\x00\x12\x0a\xf8\x16\x37\xb1\xf2\xbc\xfd\xc3\x0b\x42\x3d\xb8\x31\x6a\x3d\xf3\x8c\xbc\xc6\xe6\x16\x6a\x94\x67\xa2\x9c\xd3\x42\x75\x13\x6b\xbe\xc6\xe8\x96\x39\x26\x72\x8c\x04\x09\x3c\xe6\xed\x98\xea\x75\x55\x2b\xcf\x84\x11\x79\x2f\x29\x05\xe4\x5a\xa2\xaf\x55\x6b\xf3\x30\x2b\x87\x65\x4c\x1c\xcf\x6a\x55\x08\x4a\xd1\x9f\x09\xeb\x63\x24\x4c\xea\xd2\xa7\x65\x52\x64\xab\x79\xc4\xa6\xa9\xe2\x33\xda\x72\x0a\x29\x57\xd4\xa3\x1f\x98\x2c\x8b\x4c\x8f\x41\xa9\x5a\x3d\x4a\x9c\x89\xc7\x73\xc6\x03\xed\xcc\x26\x5d\xaf\x4d\x87\x05\xc5\xe6\xc1\xfc\xa6\xca\x7e\x38\x78\xfe\xc7\xbf\x3e\x51\x95\x50\x9c\xcb\xd4\x36\x85\xc2\xcc\x34\x69\xdb\xb6\x5f\x49\x97\xa2\xa4\x17\x73\x9b\x49\xc6\x44\xd5\xed\xe3\xd7\x2a\x35\xed\xc5\xe9\x82\x89\x1f\x52\x3e\xf1\x1f\x8f\x1c\x79\x7e\xe1\x72\xa0\xf4\xf6\xd6\x6a\xda\x5f\x5a\xa9\xfe\xe3\x1a\x0e\xef\x04\x52\x0b\xd1\x08\x6b\x39\xaf\xc9\x33\x78\x6c\x32\x42\xfe\x8c\x9f\x70\x99\x42\xe1\x17\x79\x64\x81\xa7\x35\xa1\x34\x4a\xae\x8c\x6a\x92\xe6\x0d\xea\xc3\x03\xd3\x4b\x6c\x11\x85\x00\xee\x1f\x9a\xe6\x7a\xe9\xbb\xf4\xe5\xf9\x75\xe0\x11\x19\xf0\xa6\xa6\xb5\x52\x6d\x61\x1e\xbd\xa9\xbc\xe6\xbc\xe2\x33\x64\x69\x59\x54\x67\x12\x1d\xf6\x58\x7a\x57\xf4\x3a\xbc\x32\x26\xd3\x33\x73\xb0\x1d\x9b\x15\xaa\xbd\x45\x21\xa5\xe5\x04\xef\xbe\x8f\x8d\x21\xa2\xad\x5b\x7f\xf7\xd9\xf6\x30\x36\xf8\x0e\x22\x6e\x47\x37\x5c\x20\x8d\xbe\xf1\x3c\x18\xf6\x81\x23\x12\x5b\x8d\x31\xf4\x2a\xf2\xba\x7f\x46\xdf\x8b\x5f\x8f\xd5\x8c\x87\xa6\xdb\x99\x1d\x9a\x88\x17\x27\xfa\x9d\x87\x03\x6f\xf3\x71\x58\x79\x5c\x2e\x64\x69\x12\xe6\x1a\x01\xfe\xe1\x48\x99\xbe\xe3\x6b\xe2\xd4\xbf\xae\xd8\xb5\x5d\x1b\x9b\x15\x93\x31\xee\x1e\xa1\xef\xf7\x02\x0d\x00\xf9\x3d\x87\xab\x59\x8c\xd3\x15\x87\xe1\x40\x62\x09\x74\x10\xee\xde\xff\xaa\xfc\xca\x5b\x6b\xfe\xca\xba\x65\xb2\x14\x25\xad\x2a\x30\x89\xae\x3a\x45\x2c\x7e\x33\xb6\x5b\x66\x67\xdb\x49\xba\x6c\x63\x39\x1c\x44\x75\xd9\x8f\x3d\x8f\x29\x70\xa6\x1d\x44\x36\x9b\xf4\x7d\xa8\x4b\x6a\x26\x75\xa1\x66\x9d\x42\x8b\x04\x15\xca\xa7\x63\xe5\x9d\x64\xfd\x64\x55\x16\x25\xbd\x6d\x0d\x34\xe1\xb0\xaf\x0c\xcd\x71\xce\x81\xa2\x87\x05\xf0\x11\xb6\x02\x3e\x61\x53\x19\x8a\x11\xe4\x49\xbb\x4a\x6d\x39\x30\x24\xe5\x58\xb1\x24\xa0\x37\x30\x89\x52\xf7\xfb\x39\x7d\x6f\x7e\xdd\x94\x07\x64\x66\xc8\x3e\xee\xa8\xe1\xd9\x1f\x1a\xd9\xd6\xb5\x40\x39\x59\x6c\xb8\x9c\x60\x31\x0d\x4b\x6f\x30\x86\x48\x70\x4d\x29\xb0\x9f\x57\xdd\xf6\xf7\xdc\x49\x1c\x56\xc9\x41\xd7\x66\xf9\xa4\x12\xb0\x3b\x89\x8f\x43\x4f\x86\xc5\x5c\x90\xc2\x4c\x72\x09\x20\x9d\xdf\x06\x1c\x48\x91\x99\x65\xeb\x05\x33\x84\x9d\xec\x03\xeb\x19\xed\x0b\x9f\xa5\x10\x7b\x9e\x39\xc8\xf1\xe6\x1a\x50\x11\x02\x34\xa9\xf6\x92\x24\x9c\x0d\x9e\x9a\x0b\x65\xb8\x44\x21\x4d\xb4\x66\x68\xaf\xe0\x21\xf0\x68\x51\xa9\xd2\xcd\xb8\x9e\xf0\x18\xa9\x7a\xa6\x3d\x28\xe3\x22\x5a\xb5\x26\xa3\xfb\x8e\x9e\x0f\x0e\x68\xa4\x86\x5c\xf4\x0a\xe4\x41\xe1\x94\xc3\xc5\x10\xbd\x69\xe6\x84\xd1\x2f\x79\x7e\x98\xab\x2c\x96\xdd\xd3\xa1\x34\xe5\xbf\xdf\xa3\x34\xb9\x1f\xa2\x01\xb0\x80\x5c\x7d\x41\x92\xa4\x83\x28\xb1\x0f\xa6\x73\xca\x73\x4c\xd2\x64\x39\x75\x98\x4b\x27\x80\x58\x7d\x18\x92\x47\xec\x1b\x94\xe9\xf7\x5d\x3e\x13\x9a\x61\x51\xba\xa3\x12\x2b\xf2\x1b\x81\x32\x29\xfd\x86\x1a\xbd\xf5\xa3\x62\x57\x55\xa7\x39\x4f\x61\x47\x27\x39\x42\x6d\x48\x74\xa8\x6e\x6a\x3c\xf3\x07\x78\x9a\x5c\xd6\x2b\x17\x65\xd8\x1a\xe2\x91\xbf\x1f\xf8\x23\xe4\x03\x25\x9d\x1a\x66\x86\x15\x02\x9c\xbb\x86\x3a\x97\xc6\xaa\x99\x6a\xed\x45\x83\xaa\xfa\xf6\x3e\x35\xba\x76\xd8\xdd\xd1\x82\x76\x0c\x8e\x44\xdf\xe4\xb6\x0a\xba\x83\x28\x5e\xb2\xc9\x14\xfd\x22\xd2\xc9\x5f\x8c\xd4\xa8\x95\xbb\xf2\x4e\x47\xcf\x9d\xe1\x10\xee\x63\x38\x9b\x9a\xf7\x0c\xb3\xb4\x5b\x86\x76\xa7\x6f\x56\x80\x4f\x81\x00\xfb\xdf\x68\x66\xc8\x3d\x9c\x73\xfc\x46\x19\x0c\x4d\xae\xf9\xb3\xf2\x9d\x91\xb6\x6e\x1a\x3b\xd0\xaa\x03\x26\xea\x2a\xad\x99\xbb\x4a\xad\xec\xae\x2b\x9f\xc2\x34\x4e\x93\x29\xdf\xb7\xdc\xdd\xf1\x24\x1e\x2e\xfa\x9d\x41\xdd\xa1\x69\xfd\x1f\x07\x9c\x9b\x5b\x03\x0c\xd2\x74\xd3\xa1\x97\x3d\x71\xfe\x02\x0e\x88\x73\x52\x21\xeb\xff\x55\x8d\xc6\x96\xc7\xab\x7b\xe8\x59\xb3\xf9\x12\xee\x39\x26\xe6\xbb\xe8\xd6\x62\xa9\x4d\x82\x70\xeb\x4c\xb5\xaa\xe5\x85\xa0\x06\xd8\x20\xae\x94\x7b\x71\x42\x58\x50\x21\xf1\x87\x68\x80\xed\x84\xec\xb7\xf8\x8d\xd1\xe1\x25\xa4\x77\x7a\x22\x0e\x03\x3f\xe7\x2d\xd9\xe9\xe9\x08\x20\xbe\xe5\xd4\x14\x1f\x5f\x53\x87\xf2\xa9\xb1\x7c\x69\xdf\x1c\xf9\x18\x53\x05\x16\x39\x66\x29\x0a\xb5\xeb\x0a\x47\x81\xc5\xba\xf9\xa9\xb6\xad\x5c\xb6\x19\x3b\xa5\x38\x46\xd6\xe7\x5f\x74\x8c\x2c\xbf\x55\xf2\xc2\x0e\xc8\x72\x99\x8d\xce\x70\x5f\x9c\xeb\x59\xf5\xf5\xf9\x43\x54\xfb\xf5\xbf\xa5\x2f\xc7\x4e\xc9\xae\x99\x0e\xfc\x8d\x77\x4e\x17\xff\xcd\xea\x11\x88\x52\xfc\x53\xee\x0a\xcb\x24\x2f\xc3\xd0\xe6\x39\x59\xe6\x3b\x4b\x26\x3c\x0b\x81\xf1\x35\x0c\x87\x07\x51\x9e\x4b\xd3\x13\xb7\x77\x43\xdd\xea\x0d\x35\x24\x19\x1a\xb6\x59\x46\x77\xeb\x96\x52\x87\xbc\xe5\x85\x6a\x0a\xc3\x6a\xbe\x2e\x69\x78\x13\xd1\xcf\x35\xce\x66\x67\x37\x4f\x8f\x9e\x76\x7f\x36\xcd\x7a\x26\x89\x5e\xa3\xd6\x6b\xbe\xc3\x33\x1d\x8e\xab\x01\xe6\x9b\xc8\x1d\xc5\x07\xaf\xda\x08\xd8\x2d\xb0\x16\x60\xe9\x42\xd2\x65\xe3\x5f\x18\x23\x8f\xed\x6d\xcf\xce\xee\x7f\xb8\xfa\x4d\xac\xae\x3f\x42\xca\xc2\x02\xb0\x74\x97\x10\x9d\x2e\x61\x75\xe1\x04\x98\xea\x28\x74\xd5\x2f\x68\x03\x8b\x1a\x9e\xf2\x74\xd8\xd0\x72\x9b\xe7\xd4\x7c\xfb\x55\x68\x35\x88\x43\x25\xad\x74\x7e\xa3\xe4\x61\xf2\xaf\x94\xd1\xc2\x42\xab\x26\x68\xb2\x25\x87\x71\x82\xd0\xfd\x34\x4b\xcb\x5e\xbf\xa5\x8c\x1f\xa0\x66\xc4\xaf\xc7\xd4\x75\x67\x67\xdb\x59\xd4\xeb\x17\x7d\x53\xd5\x62\x2d\x7f\x64\x61\x21\x49\xda\xdc\x40\x7d\xee\xda\x81\x49\xba\xca\xec\xff\xed\x91\x07\x4b\xbf\x1d\x6c\xb9\xc1\xcf\x3c\x53\x95\x7c\xbb\xfd\x38\x89\xbd\xe7\x58\xf9\xba\x43\xfb\xc0\xf9\xf9\xec\x9b\xf3\xf8\x10\xff\xef\x23\xc5\x17\x5a\x57\x06\x2a\xf7\x18\x5b\xe4\x6a\xf2\x2a\xf0\x63\x81\xde\x41\xed\x84\x2d\xbf\xbd\xd3\x44\x00\x59\x30\x19\xd4\x96\x70\xe0\x7d\x6d\xe4\x7b\x79\x9f\x60\x11\xc8\xe3\x55\xf6\xb8\x65\x96\x97\x11\xf4\xd1\x95\x94\xde\xbc\xbc\xd1\x36\x47\x71\xf4\x6a\x94\xb5\x14\x26\x0b\xd0\x5f\xb9\xcb\xda\xab\x3c\x24\x7e\xd0\x94\xef\x0f\x6d\xc7\x30\x1f\x89\xe1\x8f\x02\xa5\x30\xa1\xa5\xb3\x41\x23\x17\x73\xc9\x26\xed\x36\x86\xcf\x29\x15\x69\x36\x19\xe3\x37\x6a\x96\xb5\x6c\x58\x17\x55\xd1\x90\xff\xad\xe6\x65\xff\x5b\x45\x84\xf9\xe2\x6f\xbe\xa8\x0c\x63\x1e\x06\x90\x8b\xdf\xac\xf9\x7a\xd6\x24\xab\x8f\x28\x7b\xc2\xc7\xd7\x3c\xb9\x88\xc9\xd3\x78\xc2\x6c\x58\x82\x2d\xf0\x19\xb8\x2c\x08\x91\xaa\xba\xd5\x52\x6a\xb7\x9c\x5f\x48\xab\xa3\x1a\xb6\x13\x10\x6e\xac\x51\xa7\xd1\x21\x85\x85\x3d\x9a\x0a\xa0\x23\xb1\x33\x2a\x61\xfe\x70\x13\xce\xaa\x02\x3c\x4e\xf3\x5d\x8a\x02\xfc\x27\xd8\x6f\xd2\xd1\xc6\x6a\xc3\x16\x3e\x8e\xe8\x25\x61\xa5\xfa\x62\xd8\xe7\xe0\x98\x22\xfe\xb1\x72\x84\x80\x45\xaa\x6b\xc1\xba\xd7\x23\x80\xa5\x08\x73\x6f\xe7\x0e\xe7\xb5\x1e\xbd\xb1\x68\x2f\x8b\xf2\x18\x38\x1b\x1c\xa6\xc8\x51\x84\xb4\xef\x49\xf2\x34\xd3\x94\x4a\xdd\x14\x36\x7f\xb4\xfa\x3f\xa0\x5c\x0e\xe3\x71\xb2\xd8\xd2\x48\x8d\xd0\xdf\x18\x29\xbc\xe9\x6d\x15\x3c\x5f\xa7\x9b\x86\xc4\x71\x1b\xa9\x72\xe0\x06\x5e\xa1\xe7\x22\xd6\x9e\x74\x2b\x10\xd5\x77\xad\x29\x0f\x96\x3b\x88\x99\x02\x84\xf6\x45\xd5\xe5\x40\x69\x8e\xde\x0a\xb4\x61\x46\x83\x56\xd4\xfe\xaa\x0c\x59\xe9\x02\x35\xe2\x1c\xc9\xaa\xdf\x11\x47\xb2\x71\xa2\x38\x11\x52\xe2\x32\x2f\x78\xae\x8d\x93\xf1\x54\xa0\xc4\x44\x3e\x56\x1a\x77\x6f\x8c\x55\x1c\xd4\x21\x5f\x30\x85\x53\xb0\x41\xa5\x07\x5b\x0d\x7e\x3d\xe6\x01\x5f\xc5\x15\x62\xd2\x2d\xc4\xab\x2d\xa5\x99\x7f\x41\x35\x5e\x2e\x8c\x5d\x2d\x7d\x54\x55\xe8\x15\x86\x09\x0e\x72\xe6\xb7\x9c\x2c\xb6\x8e\xf6\x99\xed\x45\x02\x2c\x91\x0c\xff\xdb\x23\x25\x93\xf6\x6d\x65\x18\x68\xba\x36\x49\x43\x93\x01\x8d\x2f\x76\x18\xf4\x9b\xfc\x46\x4d\x11\xf2\x38\x5d\xd9\xe1\xa9\x4f\x6f\xd2\x59\xae\x06\xae\xe2\x33\x86\x86\x08\x96\x0b\xe4\x61\x44\xf7\x5d\xa9\x86\xdc\x52\x83\xd1\xc4\x14\x65\x66\x62\xce\xad\xb0\x39\x59\xc2\x01\x51\xf6\x3b\x58\xf7\xc8\x88\x3e\x1a\x9b\x57\x90\x60\xd8\x30\xcd\xc8\xf2\xfa\x90\xcc\xf6\xd8\x9a\x1c\x9b\xed\x23\xa5\x5f\x77\x09\x25\x12\xfa\x68\x7f\xe5\x93\x6a\x13\x47\x8b\x2d\xbf\x3f\xb7\x88\xa5\x6d\x7d\x2e\x24\x5f\x9e\x26\xa1\xcd\x5c\x10\x45\xac\xbd\xab\x30\xd2\x77\x55\xdb\xd5\x26\x05\x89\x16\x26\x62\x16\xe0\xb4\x5c\xf7\xb9\xd7\x8a\x40\x1b\xaf\x26\x61\x7f\x87\x52\xfa\x62\xde\x8f\xf4\x59\xb5\x08\x8e\x1f\xcc\xfc\x22\xf0\x9a\x98\xe8\xd1\x3d\x68\xe7\x1c\x9a\x6e\xe7\x54\xd4\x72\xa6\xc8\xb4\x68\x65\x39\x77\xc1\x8d\x99\xbb\x65\xb1\xaa\x92\xb3\x29\xca\xe8\xd1\x6f\x01\x70\x07\x7b\xf5\x4e\x83\x34\xc6\x4c\x7b\x21\x33\xaf\x45\xf0\x54\xe2\x09\xcb\x48\x91\x6c\xce\x07\x4f\x28\x31\x94\x38\x4d\xa2\x5c\x04\x86\xc4\x6e\x85\x2e\x4f\x7c\x58\x9c\x61\x96\x4d\xa2\x34\x9b\x50\xa9\xc9\xc8\x53\xf9\x37\x11\x41\x64\x7c\x27\x44\xbe\x81\x4d\x26\x54\x2f\x1a\x02\x1b\x98\xf4\xb2\x3f\x2f\xca\x97\x87\xc6\xd0\xcb\xcf\x56\x85\xe0\x72\xd4\xb5\x93\xd5\x2d\x45\x09\xf5\x96\xd2\xda\xbd\x88\xb2\x19\x0d\xfc\x8f\x14\x83\xfc\x8a\xe2\x6e\xc4\xa6\x4c\xc2\xbe\xed\xee\xd0\x83\x58\x40\x0d\x24\xf1\xaf\x2e\x48\xf2\x7e\x7f\x20\xbc\x1d\x78\x3c\xee\xdb\xb8\x1d\xfc\xcb\x63\x4f\xf5\xd9\x76\x94\x2c\xa6\xc0\xad\x79\x96\xd8\x49\x6c\x05\x61\xbf\x36\x39\xcd\xa7\xcf\x74\x57\x56\x39\xd7\x43\x48\x3e\xac\x8d\x22\x0e\x37\xc2\xd1\x88\xa2\xcf\xe8\x24\xfc\x1c\x83\xce\x31\x32\xba\x31\x62\xcf\x94\x06\xf7\xc0\x7c\x90\x2e\x6d\xb1\x88\xbb\xa0\x66\xd2\x17\x6a\xae\xa6\x99\x0d\xab\x92\x66\x87\x92\xe3\xfc\x33\xfa\x61\x70\xe2\x37\x46\xaa\x01\x82\x06\x28\x1e\xd1\x4d\xda\x01\x2c\x7b\x8f\xaf\x23\x3a\x45\x8f\x3a\xb6\x7e\xbc\x68\xf2\x82\x16\x12\x9b\x59\x8f\x14\x1a\x01\x6c\x64\xc1\x3d\x79\xa9\x66\x6b\xf2\x62\x37\x3d\x73\x5c\xef\xbb\x0a\xd2\xc8\xb4\x7c\xd6\xa8\x09\x14\xf9\xf0\xf6\x48\xb9\x1b\xe1\xb0\xd0\xb4\x11\x7c\xb3\x5b\x5a\x78\xed\x0f\x70\xfc\x39\xbd\x1b\x67\xbd\x33\x2e\x76\x39\x37\x47\x66\x64\x2d\x6f\x37\xc4\x5d\x6e\x41\xf9\xca\x57\xce\xcc\xea\x42\x99\xc1\x73\x48\xcc\xd7\xb1\x24\x91\x3d\x9c\xd3\x59\xc6\xad\x07\xda\x99\xd2\x6e\x45\x58\x40\xd2\x80\x7b\xc5\xfd\xdc\x3a\xe7\xd2\x21\xa0\xe3\x74\xc8\xf3\x20\x3c\xad\x93\xca\x32\xec\xa4\x83\xc9\x2f\x98\x70\x29\x2f\x48\x28\x73\xff\xb4\x38\x82\xd1\x6e\x15\x77\x30\x9f\xc7\xe4\x2b\xd6\x80\x98\x8e\x8d\x03\x60\x3b\xbf\x56\xd9\x5b\x66\x87\x10\x65\xc0\x61\xff\x4d\x24\x35\x28\x72\xaf\x2b\x1f\x23\x48\x51\xb3\x58\x60\xe0\xe7\x41\x1f\xb8\x72\x75\x60\x5e\x8d\x42\x93\xa1\x7f\x8c\x24\xeb\xba\x16\x14\xbf\x3e\xd6\xcb\xae\xce\x8a\x28\x09\xd3\x64\xd9\x26\x91\x90\xec\x10\x33\x7f\x4c\x1f\xcd\xaf\x95\xb9\x50\x1e\xf6\xcb\xf8\xb5\x96\xaf\x67\x3e\x09\x7c\x82\xfb\x89\x52\x10\xb0\xaf\x0e\x6d\x92\x47\xcb\x76\xa7\x77\x1e\xdf\x46\x7c\x34\xb7\xcc\xe6\xe6\x78\x65\xb2\x5b\xb6\x08\xaa\x53\xba\x23\xce\x62\x3e\xff\x3a\x3a\xaa\xd9\x9c\x6c\x3d\xf8\x66\x0e\xb6\x57\x4c\x61\xb3\x95\x34\x5b\xe2\xbd\xcf\x6b\x15\xeb\xde\x1d\x3e\x5e\x43\x2f\x78\x58\x11\xd8\x9e\xf4\x5b\x0d\xb4\x6d\x94\xee\x1f\x82\x12\x23\x10\x89\xea\xcb\xa0\x6a\x84\x05\x9f\x13\x90\xa9\x36\x10\xbe\x25\x4f\xf5\x91\xbe\x82\x82\x87\xf2\x41\x78\xb8\x6c\x96\x3c\x52\x24\x95\x7f\x12\x28\x5f\x46\x96\xad\x67\x98\x66\xd0\x7a\x51\xe6\x2d\xe7\xb5\x22\x3d\x66\xd3\x40\xc0\xaf\x05\x35\x52\xbf\xa7\xab\xdc\x0b\x26\x5e\xdc\x3f\xbd\x79\x9a\xda\x09\x82\x70\x54\xf5\xc1\x05\xc7\xf3\x5e\xb2\x36\x99\xf2\x47\x15\xf0\x24\xf8\x23\x4c\x50\xc4\x7f\x5c\xc5\x65\x6b\x45\x42\x24\x96\x67\xd5\xe0\xd7\x2c\xe4\x69\x36\x04\x00\x6d\xef\x5e\xde\x87\xef\x2a\x4b\x80\x77\x95\xc8\xce\x42\x9a\x39\x25\x51\x9c\x99\x98\x27\x73\x17\x38\x70\x38\xfd\x3f\xbf\xdc\x24\xa1\xd2\x4d\xcb\x85\x18\xab\x0c\x85\xd9\xdb\x23\xc7\xbc\xfa\xef\x9e\xee\x68\xad\xfa\x91\x8a\x8c\x38\x97\xb1\x16\x5b\x6b\x5e\xa8\xff\x1b\x58\x65\x32\x4e\xdc\x1a\xcd\xe6\x5f\x38\xd0\x1e\x96\x28\xa6\xb9\x77\x8b\xb4\x4d\x1a\xb9\x0d\x49\x60\x51\x1b\x1d\xbb\x04\xd4\x27\xa3\x0f\x54\xcd\xe9\xa6\xaf\xd9\x84\x13\x21\x56\xcd\xae\x29\x68\x6f\xbd\x1d\xc8\xff\xd3\x57\x35\xf4\xfc\x8e\xa2\x01\xde\x09\xb4\x52\x75\xaf\x8c\x4d\x16\xb3\x4b\x19\xf2\x37\xb8\x33\xf3\xeb\x1a\xe3\x39\x8c\xba\xb6\x3b\xa5\x68\xc4\xdb\xd7\x3c\x20\xed\xab\x0a\x34\xc0\x0c\x29\xcc\x3a\x2e\xf2\x92\x97\x07\xd0\x78\xc1\x79\x61\xb8\xf0\x10\x35\x75\x7f\xda\x9f\x19\x3b\xe0\xe5\xde\xa4\xec\xf1\x08\xd8\xc2\x79\x52\x6b\xc0\x2c\x68\xaa\xd3\x52\x2a\x0e\x6a\x52\xbb\xa1\x08\xfd\xc3\xcc\x0e\x0d\xcc\x99\x0f\x4d\x8b\x87\xa9\x92\xf0\x3c\x3f\x96\x1d\xec\x9f\x6e\x47\x71\x6c\x7b\xac\x03\xee\xac\xe6\xf6\x3b\xdb\xb9\x06\x6a\xe3\x4c\x3b\xb6\xc6\x71\x9c\xd0\x6d\x60\x35\x55\x7e\x33\x36\x72\x98\x9d\x6d\x2f\x94\x51\x5c\x60\xb9\xb0\x92\x10\x3d\x17\x51\x15\x7a\x54\x29\x7b\x77\x6d\xca\x05\x0a\xc2\xd2\x47\x23\xd5\x60\x3d\xa6\xce\xef\x4b\x6e\xab\xf7\xd3\xbc\xd8\xe5\xa5\x81\xd7\x47\xaa\x6f\x83\xf8\x48\xbf\xfd\xef\x3c\x8e\x76\xb6\x2b\x3b\x3c\xde\x16\xcf\x9e\x99\x81\xd4\x21\x72\x90\xb4\xea\x6e\xa3\x0c\xbf\x19\xf8\x8e\xee\x20\xed\x36\x39\x0b\x83\x0d\xcf\xaf\x47\x4f\xf0\xf5\x91\xe1\x4c\x44\x29\x37\xfd\x2c\x62\xdc\x6d\xfa\x59\x7e\xad\x98\xf3\x5d\x6b\x92\xba\x46\xc4\x48\x6b\x44\x34\x4d\x74\xc2\xac\xb4\x78\x88\x52\xa7\xea\xfa\x75\x8f\x1b\x19\xa7\x43\x1b\xc7\xb2\x6f\xd1\x4f\xe0\x54\x89\xdf\x34\xfd\xf1\xbc\xb0\x66\xa9\xe5\xbb\x11\x30\xfe\xe5\xd7\xea\x80\x1c\x66\x36\x8f\xba\x36\x29\x1e\x53\x24\xf1\xdf\x55\x5a\xb3\xbb\x3a\x34\x40\x40\x9a\xf4\xb3\x40\x29\x37\xad\xd3\x76\x03\xd4\xfe\xb0\x02\xfe\x71\x69\x89\x32\x62\x47\xc7\xcf\xff\x8f\x50\x59\xe6\x9e\xdd\xcc\x41\x37\x39\x51\x4c\xbe\x8b\xda\x26\x50\x6c\x4d\x24\x2b\xf1\xfc\xb4\x6b\xb8\x03\x82\x7f\xf4\x74\x1a\x93\x47\x26\xa1\x6e\x0f\xcb\x38\x75\x9c\xea\xe7\xff\xce\xcf\x04\xe5\xc1\x6d\xa5\x78\x24\x49\x74\x64\x62\xc4\x21\x9c\xfb\xef\xd3\x7a\xe7\xd7\x63\xc3\x0f\xef\x5c\x0f\xaf\xa3\x96\x53\xc0\x67\x04\x99\x14\x8d\x7e\x95\x2c\x44\x71\xbc\x9b\xce\x58\x34\x03\x2e\x05\xca\x0f\xe1\x92\x62\x0b\x9c\x55\xd3\x37\x78\xec\x20\x71\xd8\x49\x07\x39\xf6\xc2\x3d\xba\xff\x48\x8e\x8e\xd1\xf2\x47\x7c\xfb\x93\x40\x49\x93\x7f\x1f\x13\x12\x00\xb1\x8e\x36\x9d\x5c\x43\x53\x58\xee\x9d\xe0\xf4\xc0\x12\xe7\xd7\x6e\x3b\xd0\x54\x23\xcf\xa3\xe1\x30\x6a\x79\xcc\x3e\x67\xc3\xfc\x46\xb5\x43\xfa\x69\x6c\xa7\x54\x39\x79\x1b\x3a\xd0\x92\x0b\x6d\x99\xe4\xce\xd5\x5c\x83\x58\x1f\x7a\x6c\xfe\xb7\x6f\xae\xdd\xb3\x30\x57\x44\xcd\x71\x53\xd5\x1f\x37\x5d\x3d\x3e\x88\x12\xbb\x8b\x3e\x0d\x05\x39\x40\x0f\xf8\x80\x8b\xba\x5d\xca\x8f\x09\xd9\x1f\x5a\x5a\x4e\xb2\xa3\x5a\x5c\xce\x18\x7e\xef\x5e\x8e\xe3\x47\x31\x7d\x10\x6a\xb8\x4b\xdc\x87\xe9\x12\xc3\x24\xb1\x1d\x36\x94\xcf\xce\x79\x05\xea\xba\x8e\x55\x0b\x10\xdd\xee\x8e\x2b\xb3\x4c\x96\xa5\xe9\x40\xc1\x28\xce\xaa\x8e\xdf\xd9\xad\x93\x97\xf9\xfd\xf3\xed\xd9\xd9\x87\x3c\x99\xe8\x0c\x30\x75\xce\xbd\xbb\xda\xa3\xfc\x66\xe4\x45\x12\x37\x14\x2d\xfa\xba\xf6\x61\xfe\x1d\x6c\x39\xe9\x86\x79\x17\x4d\xf4\x48\x90\x0d\x7d\x30\x8e\xbf\x9f\x69\x9b\x2c\x8b\x96\x05\xea\xe8\x06\x8e\x7e\x90\xb2\xd1\x6c\x8d\x1c\xa6\x3c\x05\x11\xe4\x6b\xcb\xa9\x65\x35\xce\x4d\x86\x59\xf4\x9a\xd0\xdf\x1d\xc4\xd3\xc3\x3d\xc7\x0e\x3c\xd9\x99\x03\x83\x0a\x0c\x31\x15\xc4\x59\x07\x97\x9c\x73\xf6\x91\xd7\x35\x44\x3d\x33\x11\xcc\xec\xf0\xc7\x31\xa1\xc1\xc8\x9d\x95\x5c\xc4\xc9\xda\x1f\xb9\xb7\x02\x9f\x78\x1c\xa7\x3b\x2e\x20\x92\xea\x8e\x0b\x29\xf5\x49\x6d\xe3\x55\x58\x08\x2f\x3d\xf0\x36\x6c\x4d\xf9\x66\x67\xdb\x8b\x52\x56\x89\xfc\x7b\xcb\xd9\x60\x5d\xad\xf1\x71\xca\x64\xb5\x46\xd1\xad\xf1\x04\xb7\x86\x31\xc0\x0a\xc9\x25\x70\x20\x81\x00\x63\x32\x4c\x70\xf9\xb5\x17\x5c\x88\xa3\xe1\xa4\x12\x45\x60\xf9\x2e\x7e\x13\xa8\x2a\x07\x54\x28\x7e\x3d\x96\x41\xed\xdd\xdb\xce\x6c\x37\x15\x48\xba\xa2\x52\x3e\x2f\x6f\x6a\xc2\xf2\x76\x11\xfd\x47\x54\x34\x67\x94\x39\xe4\x19\x05\xce\xef\x95\x36\x07\xce\x13\xc2\x5f\xb8\x49\xfc\x7a\x6c\x09\x3f\xdb\x36\xdd\x57\xca\xdc\x09\x84\x0b\x4f\x4f\x6d\xff\x13\x0d\xe9\xd4\x4b\xed\xa1\xc9\x8b\x32\xd3\x20\xa9\xd3\x0a\x2b\x7b\xda\x75\x13\x16\x52\xe3\xff\xba\xe0\x9e\x7d\x7d\x3b\x6e\xbe\x08\x62\xd0\x20\xed\x2a\x9c\x91\x18\xfa\xf9\xb6\xa8\x56\x56\xdb\xb7\xf7\x85\x29\x45\x30\xde\xd3\xa9\x99\x0a\xa8\xae\xd1\x25\x25\xa7\x76\x93\x76\xb9\xe8\xd6\x6e\x5d\x6b\x2f\xbf\x4c\x16\x11\x93\x7e\x68\xc0\x36\x5e\xec\xc7\x44\x59\xae\x1c\x00\x1e\x8e\x31\xb1\xe6\x1b\xed\x26\xcb\x2c\xbe\x79\x75\xda\x89\x78\x0d\xd5\xd4\xd2\xd4\xf1\x48\xa0\x05\x9b\xd8\xc5\xa8\xd8\xe1\x6b\xf4\x23\x74\x7d\xfc\x5a\x89\x9a\x5c\x25\x90\x80\x8b\x54\x4e\xb7\xfc\x5f\x8e\x94\x57\xd2\x0d\x35\x21\x34\x59\x11\x2d\x92\xb9\xde\xec\x2c\x6f\xe3\xd7\x03\xbf\xa5\x5f\x57\xcc\x4b\xf8\xfd\x3a\x06\x3d\xf2\x94\xe3\x88\xd8\xfc\x66\xeb\x88\xf6\xe0\x0b\xed\x43\xd3\xf3\x64\xe9\x80\x12\x44\xbb\x27\xdd\x50\x12\xb3\xff\x9c\xea\x67\xa7\x26\xed\x8a\xf1\x53\x14\x93\x90\xf9\x5c\xa6\x33\x5c\x1a\xbf\xf4\x7d\x10\x52\xfe\x27\x9c\x3a\x82\x47\xa2\x74\x18\x35\xdb\xcd\x40\x2d\xac\x63\x54\x7e\x3b\xe3\x0b\x67\x27\xfe\x9f\x1c\x6e\xe0\x06\xcf\xb7\x97\xec\xb0\x00\x7d\x57\x8a\x2e\xfa\x48\xa9\xba\x94\x0f\x7d\x16\x21\x9a\x20\xd3\xfe\x94\xbe\x16\xbf\x0e\x7e\xf5\x41\x75\x51\x59\xb8\x90\x32\xa1\xf0\xb7\x0a\x30\xc3\x31\x18\x5f\xeb\x70\x93\x88\x45\x91\x99\xae\xc4\x7d\x31\x2e\x6b\x39\x0b\x87\xdb\x75\x6f\xaf\xc1\x70\x17\x7d\x1b\xb4\xfa\xcf\xe3\xce\xb8\xc9\x60\xb5\x7a\xd1\x8d\x3e\x49\xb7\xdf\xa9\xff\x79\x2c\xd4\x49\x8a\xdc\xc8\x7a\x8f\x72\xcf\x4f\xa2\x9a\x2f\x00\xb6\x77\xfc\xba\x4d\xc9\xb1\x38\xa5\x6c\xd3\x6d\x8d\xcf\xbf\xc8\xa1\xf6\x9a\xea\x8f\x35\x7a\x59\xc7\x36\x67\xa5\x30\xed\x33\xe7\x7c\x1d\x9d\x6e\x2f\x2a\x51\x64\x16\xdf\xa6\x6c\x04\x0b\xec\x0e\xda\x35\x38\xa8\xb6\x81\xe9\x8e\x6d\x3f\xde\x54\x9e\x39\x48\xd2\xab\x51\xde\x6f\xf9\x86\x11\x04\x1f\xf8\x75\xd3\x51\xdd\xb3\xc6\x75\x0c\xb8\x2b\x84\xd8\x28\x2d\xa2\x06\x91\x9b\x15\xb3\x6c\x63\xb2\x89\xcf\x35\xb6\xfd\x74\xe0\xd3\xa0\xd3\x63\x6d\xb3\x6a\x41\x46\x49\x98\x59\x93\x0b\x62\x15\xdf\xfd\x06\xa1\x5b\x2e\x8e\x14\xcf\xfc\x23\x6f\x8e\x9d\xa5\xc3\x09\xcf\x8f\xba\x40\x37\x1f\x8b\x03\xf2\x5c\x22\x09\xe6\x1f\xd9\xc0\x66\x59\x14\xc7\x24\x2b\x8e\x93\x69\x7b\xe7\xff\xdb\x18\x09\xa0\x82\xd6\xda\x1e\x2d\x31\x17\x25\xbd\x7c\xc2\x8f\x8d\x91\x07\x6a\xa6\x34\x92\x81\x9b\x4d\x0e\xf2\x61\x3a\xc0\x01\x7c\x48\x96\x27\x48\x45\xfc\x7a\xed\x11\xcf\x7b\x29\xe3\x62\xca\x5f\xcf\x37\x68\x53\x39\xfd\x96\x43\x22\x77\x75\x06\x79\x1d\x7a\xf5\x97\x50\x08\xa8\xe2\xdd\x9b\x94\x44\xe1\xa4\x26\xe7\x07\x1e\x92\x76\x4b\x99\x92\xdf\xaa\x91\xf6\x15\xde\x88\xe6\xaf\x59\x29\x4a\x92\x9f\x7f\xd1\xb9\x4d\xd2\x9d\x95\x31\x44\x75\xcb\x91\x2f\x9d\xd0\x28\xbc\xcd\x06\x66\x22\xd9\x84\x98\xa2\x6e\xe6\x79\x4d\xf1\x8f\xaf\x29\x17\x20\x33\x1c\x66\xe9\xb2\x89\x77\x69\xdd\xae\xa0\xde\x64\xdb\x3f\xed\x80\xe5\x0a\xd0\x76\x89\xaa\x56\x1c\x64\xd7\x91\x79\x60\x8e\x84\x81\xbb\xd0\xfb\x7c\x18\xbf\x3a\x36\xe8\xdc\x3f\xbd\xdf\x1b\x97\xb7\x7c\x93\xf0\x2c\xad\x3f\x7e\xad\x8a\x79\xd3\x1b\x98\x22\x0a\x27\x7c\x81\x7d\x51\x69\xcd\x70\x7b\x03\x0b\xf3\x9d\xf1\x98\xb1\xb7\x3d\x48\x33\xae\x34\x1c\x59\xa9\x8a\x01\x38\xcd\xd0\xcd\x76\x0d\xd6\x2a\x1e\x08\xeb\xd4\x37\xd1\x06\x61\x6f\x25\xe2\xd4\x85\xe9\x8e\xca\x85\xe6\xa8\xea\x9f\xf6\xb2\xa8\x1b\xa7\xe1\x12\x93\xf5\x70\xe4\x1c\x0d\x94\x5b\xf2\xd1\xc6\xfc\x25\xb7\x45\x11\x73\x32\xf9\x20\x36\xea\x63\xaa\x29\x93\x17\xf1\x2a\xf1\x4a\x71\x13\xb6\xaf\x29\x96\xd8\x8f\x75\xc1\xf6\xe3\x91\x57\x2a\x19\x27\x2e\xef\x9b\x63\xc8\x3b\xc2\x8e\x24\xd2\x2a\xa9\x6e\x30\x4a\x27\x43\x0d\xa2\x24\x72\x43\x4d\x1c\x9e\xab\x5f\x13\x7f\x68\xcd\x3f\xc8\xa3\x9e\xc8\x6a\xb9\xec\x7a\x9f\xcf\xae\xd5\xe8\x21\x31\x61\x51\xdd\x84\x9d\x4a\xe9\xe4\x63\x8d\xdc\xfb\x58\x51\x8a\xae\xe0\xbc\x12\xa1\x22\xdf\xb3\x38\x83\x4d\x24\xa8\x16\x65\x0b\x32\x6e\xd6\x54\xdd\x7c\xaa\xd3\x63\x8c\x62\x45\x23\x59\xd1\xaf\xb8\xe6\x75\x12\x0b\x6e\x11\x4c\xfc\x3f\x8c\xfd\x69\x90\x24\x67\x7a\x1f\x86\xcf\x54\x77\xcf\x81\xc1\x00\x18\x1c\x7b\xe8\x08\xd6\xf2\xbf\x41\x48\x22\xfe\x90\xc5\x50\x30\x1c\xf2\x87\x2c\xce\xf4\x12\x3b\x1d\xda\x46\x47\xcf\x2c\xb0\x44\x30\xc2\x78\x2b\xeb\xed\xaa\x44\x67\x65\x16\x32\xb3\xba\xd1\xb0\xfd\xc5\x61\x3b\xfc\xc1\xa1\x08\x2b\x1c\x92\xe9\x83\xa6\x24\x9a\xa4\xc4\x90\xb5\x64\xec\xf2\x92\x97\xd9\xdc\x03\x7b\x11\xbb\x38\x16\xe7\x2c\x80\xb9\xef\xa3\xe7\x9e\xe9\x99\xe9\x71\xe4\xf3\x7b\x9e\xf7\x7d\xaa\x2b\xc1\xd0\x27\x64\x62\xba\xaa\xf2\x78\xdf\xe7\xfc\x3d\xbf\x5f\xeb\x31\xd5\x0d\xea\x0e\x63\xc2\x49\x6e\x57\x31\xc1\x29\x8d\x12\x0c\x3c\x42\xee\x83\x60\x84\x57\x8c\xee\x03\xbf\x0c\x44\x26\x4a\x47\xf7\x4a\xed\xc6\xeb\xa6\x28\x30\x75\x6e\xb3\xc6\x08\x19\xa4\x8f\xb0\x8f\xab\x09\x55\xfb\x4a\x41\x9c\xcb\x93\xde\x31\xaf\x2a\x42\xba\x0b\x04\xda\x96\xae\x04\x5d\x91\x68\x7e\x6e\xc6\x9d\x50\x05\x24\x33\xf1\xca\xab\x62\x6d\x5c\xd1\xd2\x81\xca\x8f\xa9\x70\xbb\x6d\x20\x3b\x87\x71\x90\x47\x5a\xaa\xcd\x81\x59\x0e\xdd\x70\x87\x35\xb9\x5f\xd7\x25\xea\x44\xa4\x45\xbe\x60\x3b\x14\x1e\xc1\x7a\xdf\xd6\x54\x6b\xe8\xd5\xa2\x8c\x73\x56\x4f\x35\x24\x66\xd8\xed\x15\x0d\x4d\xf8\x1c\x78\xec\xf1\x71\xd5\x54\x1f\xc4\x66\x25\x5d\x58\xc8\x1b\x55\x64\x09\xb0\xde\xef\x2a\xa4\xfa\xef\x2a\x5e\x93\xcc\x92\x92\x79\x48\xbb\x76\x7e\xaf\xd4\xf8\xd4\xf4\x5a\xdd\x7a\x23\x2d\xba\x57\xa4\xb0\xcc\x62\x23\xa5\xca\x5a\xca\xb1\x31\xa1\x27\x9f\x6c\xe6\x85\x49\x3a\x5c\x35\x40\x44\xf0\x8d\x40\x85\x0a\xdf\x18\x7b\x5e\x07\x9f\x6d\x76\xec\x92\x8d\xd3\x81\x94\xca\x99\x60\x16\x3f\x25\x6c\xb3\x9b\x7f\x6a\x66\xa6\x99\x17\x69\xe6\x24\x58\x79\x54\x5d\x2b\xe1\x1e\x77\xa9\x5a\x18\x9b\xbc\x67\x59\x94\x02\x8d\xa5\xd3\xa5\x22\xa1\xe0\x41\x67\x6c\xdd\xf5\xe0\x33\x0a\xc5\x9b\xc5\x91\xa9\x76\xba\xc9\x46\x40\xfd\xb7\x69\x0d\xf0\xf1\x48\x2e\xdb\x4e\x79\x28\x05\x30\x91\x33\x30\xe2\x88\xdd\x50\xa9\xe5\x7f\x08\x54\x50\x77\x45\x51\xea\xf4\xa3\x4e\x0c\x14\xd3\x33\x22\x1a\x1d\xf8\xba\xd8\xc5\x1a\xb2\x93\x2a\x6f\xa7\x55\xe3\x81\xe8\x57\xe9\xfa\xf8\x58\x8d\x83\x2d\xf0\x50\x86\xd0\x79\x34\xdc\x24\xe7\x3f\x77\x4f\xab\xca\xef\x8c\xe0\xa8\x5d\xd7\x66\xd6\x77\x6d\xc6\x71\xa3\xd3\xd5\x72\x4c\x14\x8b\xf0\x37\x15\x8b\xf0\x37\xc7\x3e\xf0\xfc\xf4\xc1\x66\x4a\x12\x2b\xd5\x0b\x41\x26\xb4\x4a\x3b\x8c\x8f\x6b\xe0\x1d\x48\xe1\x84\x52\x43\x48\x06\xe8\xbd\xf1\x49\xe0\x7b\xde\x49\x3b\x52\x72\x05\x97\x02\x45\x79\x78\xc9\x95\xf6\xc2\x2c\x45\x90\x3e\xab\x85\x4a\x24\x2a\x3c\xa6\xea\x7c\xec\x18\x85\xc0\x41\x91\x79\x9e\x24\xc3\x89\x6f\x3e\xa6\x9a\xe9\x97\x95\x59\x59\xb4\xd9\xc3\xb4\x08\xc8\x03\xfc\xe9\x2f\xb4\xbc\x90\xc1\x51\xca\x0b\x9d\x56\x97\xb0\x02\xfd\xb3\xbf\x8d\xae\x22\x9c\xd4\x3a\xe9\xe0\x63\xad\x1d\xd1\x08\xbf\x4b\x88\x03\x70\xb2\x15\x69\xbc\xd4\x15\x15\x3f\x0f\x44\x5b\xf1\x2e\xfe\xce\xaa\x02\x98\x32\x84\x18\xef\xff\x01\xa2\x98\x85\x5d\xbd\xc6\x29\x12\x82\x43\x52\x08\xfa\x15\x55\x82\x97\x3d\x27\x84\x57\xf4\x2d\x32\x9f\xf2\xe8\x68\x1a\xfd\xf7\x9b\xb3\xb3\xbb\x7c\xb7\xed\x3a\x71\xbd\x8b\x0a\x2b\xdd\x8b\x14\xea\x54\x1e\x8a\x8e\x0f\x4a\x18\x17\x28\xea\x65\x11\xab\x40\x11\x75\x30\x15\x84\xf0\xa3\xd3\xdd\x23\x04\xb9\x8e\xf6\x36\x7f\x5e\x85\xb9\x77\x3c\xf2\xde\xc4\x36\x97\xf1\x36\x37\x1a\xe9\x49\x84\x2f\x29\x4b\xcb\xdc\xaf\x34\x7d\x2f\x44\x29\x3f\x29\xb7\x7e\x91\x8d\x32\x28\xda\x38\xef\xc5\x77\x20\x76\xc7\x20\x3e\xa2\xb4\xeb\xaa\xa5\x96\x5b\xdb\xcf\x09\xfb\x0d\x57\x8a\x22\xb6\xab\x20\xed\x9f\xf5\x63\x61\x1e\x0e\x7a\xa8\x54\x74\xa9\xa3\xbc\xd8\xef\x92\xd9\x47\x5d\x6d\x9d\x20\xbc\xb8\xb0\xbb\x5a\x68\x8c\x92\x87\x8d\x37\xca\x47\xfd\xf0\x05\x01\xc9\x22\xd1\x52\x96\x21\x09\x7a\xa8\xf0\x4c\x37\xb4\xd6\xe4\x21\xd5\x11\xcb\xd3\xa4\x3b\xa5\x98\x31\x2e\xe3\xe2\xe0\x2a\x6f\xaa\x92\xe4\x23\x74\x6b\x8a\x96\x68\xda\x91\x57\xf9\xe7\x61\xfa\x69\xd2\x65\x9a\x69\xa7\x6e\xe7\xe9\x47\xa6\xa8\x15\x88\xb8\xb9\xd1\xf2\xc0\xdb\xbb\x48\x91\xe1\xfc\x6f\xd2\xb3\xc6\x95\x5e\xd7\x0a\x2d\x5b\x81\xa5\x77\xc5\x74\xff\x7a\xc0\x04\x82\xca\xda\x76\xd0\xb5\x00\xbb\xb8\x81\x32\x0c\x4b\xf3\xb5\x94\xde\x02\x8a\x35\x70\x20\xab\xb0\xdf\x22\x73\xa7\x34\x9d\xd6\xc7\xac\xd7\xfe\xd9\x66\x24\x38\x56\x37\x06\xfa\x16\xfd\x3e\x1f\x2b\xc8\x79\x2f\xaa\x16\xa6\x89\x81\x30\x11\xd1\x18\xe5\x52\xae\x2a\xc4\xf7\x96\x96\x7f\x2b\x26\x8e\x41\xeb\xe1\x08\xee\x3c\xe6\x98\xf9\xae\x9c\xba\x88\xbb\x8a\xbb\xb8\x0d\x89\x20\x55\xc6\x3b\xcc\x72\x57\x30\x73\x5d\x41\x1f\x31\x6c\xae\x97\x3d\xb7\xf7\x99\xe6\xf4\xc1\x87\xaa\xe0\x8c\x53\x69\x55\x8c\x79\x4b\x31\xbe\xff\xb7\x58\x07\xd8\x17\x8c\x71\x77\x62\xd0\xd5\xeb\x91\x39\x21\xac\x08\xb4\x92\x26\x56\xbd\x0c\x1e\xbf\x52\xbc\x93\x23\x81\xca\xed\xee\xc1\x20\xb2\x3d\x85\x7d\xc0\xc6\xdc\x4d\x8b\x88\x1b\x9a\xa5\x8f\x2c\x6f\x39\x5c\xe5\xc0\xa6\x83\xd8\x6e\xaf\xae\x79\x04\xb5\x8b\x27\xf3\xff\x6b\x79\xaa\xda\x3f\xfa\x2c\x6b\x2c\xc2\x58\x61\xfb\xa2\x1f\x75\xbf\xf4\x68\xcf\x06\xcd\x46\xc2\x5c\x8c\xf7\xfa\x41\x35\x12\x57\xc6\x94\xde\xb3\x50\xda\x2a\x24\xc6\xf9\x31\x38\xd5\xc1\x67\x9b\x83\x2c\x5d\x88\x0a\xa3\x88\x31\xb0\x68\x4f\x07\x9e\xac\xf8\xb4\xaa\xf0\x25\x29\x6a\x74\xa2\x8f\x49\xcf\x04\xc0\x80\x0b\x8a\x8d\xe2\xdb\x2a\xbb\x89\x92\x22\x8b\x42\x03\x21\x90\xe9\x51\x92\x18\xbc\xb5\x77\xb4\x6f\x2c\x1f\x8f\x94\x54\x50\x18\x99\x38\x7a\x55\xc8\xbe\xb1\xf8\xae\xe3\xb5\x38\x6e\x1e\x0f\x44\x42\x64\xc3\x7f\x55\xcb\x45\xb8\x44\xa5\x66\xaa\xbb\x8c\x70\xa6\x3b\x5f\xec\xdf\xf1\x2d\x87\x3f\x18\xc4\xd6\x4c\x29\x97\xbd\x41\x4b\xd1\x55\x51\x36\x55\x54\x60\x2d\xdf\xf7\x13\x0a\x5b\xf7\xb4\xfc\x03\x8c\xa3\x64\xbb\xaf\xc7\xa0\xe7\xc0\x29\x10\x5e\x96\x3a\x11\xf2\x2b\x28\xef\xe1\x7a\xcf\x8d\x8c\xe3\x5c\x2a\x35\x69\xb3\xeb\xbb\x84\x29\xc7\xfc\x02\x17\xc0\x67\x04\x30\xb0\xb9\x58\xb0\x7f\xb6\x69\x8a\x5f\x82\x31\x81\x91\x1c\x61\xcc\x3d\x5f\xa7\x2c\xdd\xb6\x3d\xb3\x24\x79\x10\x1c\x07\x0f\x4c\xf3\x49\xa0\x75\x00\x17\x0a\xdb\xd9\xe6\x73\x85\xef\x97\x3e\xb4\xb9\x10\x28\x00\x21\x22\x5a\x45\xe7\x7c\x80\x2d\xd6\x1f\xd1\x7a\x94\x22\x8d\x23\x2e\x1d\x0c\x62\xbb\xcd\x23\x46\x5f\x53\x4b\x70\x43\x8f\xb6\x5e\x54\x18\xb2\xa9\x47\xb9\xef\x81\xbf\x3b\xa9\x5d\xaf\x6a\x34\x10\xc1\x77\x4e\x33\xd9\xf0\x03\xe7\xf4\x98\xe5\x1b\x8a\x20\xef\xf2\x58\x59\x6a\xdf\x3e\x19\x78\x1d\xe1\x76\xb9\x1a\xa8\x72\xcc\x55\xd7\x2f\x1f\x98\xac\x88\xc2\x68\xc0\x5b\x44\xca\x70\x5a\x28\x1f\xd1\x14\xb6\xe3\xe3\x2d\x9d\x1f\xa4\xc3\xec\x33\x6a\xd8\xe8\x2c\x86\x38\x61\x26\x6e\x94\x8e\x65\xe5\xbf\xd9\xd3\x22\xaa\x55\xf8\x97\x2b\x81\x0e\xc8\x4e\x50\x10\x85\x1f\xba\x89\x20\x0a\x15\xd5\xeb\xe4\xfd\xb1\x6a\xae\x91\xc9\xc5\x1e\xdd\x0d\x8b\x29\x55\x87\x86\x23\x36\x6e\x80\xee\xd9\xa9\x93\x57\xee\x4d\xca\x64\x74\x67\x30\x6b\xdf\x09\x3c\x93\xc1\x24\xd2\x62\x38\x41\x68\xca\x62\xc2\xe8\xb3\x18\x5e\x45\x3b\x65\x3b\xc6\x51\xc5\x44\x28\x71\x67\x96\xd8\x42\xc4\xbd\x85\xcc\x3a\x0a\xaa\xb7\x03\xdf\xea\x5b\x32\xc3\x18\xed\x4a\x91\x7c\x52\xf5\xff\x1f\xd5\xa0\xed\x9f\x69\xb6\x2d\xd8\x59\x9c\x22\x35\x34\xdf\xf8\x58\xd5\x17\x5e\x32\x03\x93\xd8\xdc\x3e\xe6\xa1\x10\x0f\xb4\xaa\x07\xea\x64\xf2\xaa\x47\x22\x79\x3a\x9e\x3b\xcc\xc8\x95\x40\x09\x18\xe9\xf1\xb3\xc6\x2a\x3d\x5f\xe0\x10\xd6\xe1\x91\x98\x7d\x68\xd5\x0b\x5b\x30\xb2\x07\x65\xe2\x8f\xf1\xde\xb8\x6f\xa1\xa4\x43\xb6\xaf\x2a\x20\xcb\xc7\xb4\x20\xb0\xee\x2f\x2a\x8a\xd3\x89\x55\xc5\xae\xb1\xab\xe5\xb9\x77\x3f\x44\x50\x84\xb5\xb1\x15\x53\x47\xc2\xc2\xee\xf7\x77\x94\xe7\x43\x9b\x29\x30\xee\xb1\x40\xa9\xb3\x1d\x53\xd3\xff\x0b\x20\x46\x72\xc8\xb2\x07\xa9\x0c\xc9\xc7\xab\x52\xb8\x88\x92\x85\x2c\x4a\xba\xb2\x79\xdc\x13\xaa\x7e\x5d\x40\x2f\xe2\x67\x17\x6c\xdf\xc4\x56\xd5\x04\x6f\x07\x2a\x71\x39\xa9\x47\x65\x90\x11\x89\xb0\x9b\xcf\x90\x07\xb6\xb0\x59\x4e\x75\x56\xec\x9b\x5b\x4a\xb3\xe5\x38\xb5\xca\x58\xd8\xb9\x8e\x7e\x36\xef\xa5\x9d\x0e\xc8\xf4\x10\x9c\x9c\x54\x74\x09\x27\xc7\x68\x5a\x66\x66\x9a\x21\x73\xfa\x0b\xeb\x8f\x2a\x9c\x5d\x1d\x4b\xc7\x67\x66\xe6\xd1\xdc\x6a\x78\x1a\xae\x13\x0a\xd2\x70\x42\xf1\x48\xd8\xce\xb2\xc9\x3a\x39\xab\xd3\x62\xa9\x9e\x28\x95\xe3\x62\xea\x27\x54\xd3\x27\x28\x86\xe1\xe3\x96\x2a\xb3\x8f\x07\x9c\xf3\x7b\x9b\x26\x59\x21\xd2\x45\xcf\xf9\xf7\x97\x74\x15\x7c\x5c\x07\x23\x1d\x26\x36\xe9\xb8\xd6\xb4\x8c\x23\x35\x1c\xcb\xda\xcf\x46\x0b\x1d\x06\x03\xc8\x3a\xf9\xe5\x63\x6a\xd6\x88\xc2\xc5\xe6\x71\x0e\x18\xcb\x43\xa5\x9a\x54\x79\x47\x81\x75\xa3\xa4\x32\xc3\x0d\x8f\xf2\x7a\x57\x5d\xf6\xbb\xce\x06\x87\x69\xbf\x6f\x92\x8e\x83\x35\x20\xdf\xb8\x8f\x77\xc3\x27\xae\xb0\xb6\x30\x4c\x12\xd5\x74\x67\xc4\x94\x2a\x7e\x1c\x55\x79\xd1\x4b\xd6\xc4\xe9\x30\x8f\x57\x26\x3d\x82\xf1\x9e\xae\x0c\x30\x93\x09\x0a\xcf\x87\x34\xf5\xf6\xa5\xa0\xc6\x53\x2f\xc4\xe6\x69\xba\x44\x24\xdd\x9c\x83\xf0\xc9\xc8\x10\x10\xcb\x4e\x4c\xf9\xde\x37\xcf\x83\x8a\xc6\xa7\x22\xb3\x7c\x57\x4f\x51\xaf\x01\x24\xc4\xff\xe2\x58\x5c\x3a\x51\x5e\x64\x26\x2c\x84\xcb\x19\x26\xe2\x8f\x03\x85\xca\xfa\x63\x4f\xa9\x93\xe6\x79\x14\x73\xd5\x07\xdf\xf4\xb1\xaa\x3b\x7d\xec\xfe\x70\x39\xb3\x46\xfa\x06\xae\x8e\x50\x7d\xbd\xcc\x2b\xfb\xb6\x7b\x94\x84\x66\x60\x48\x5f\xca\xcd\xf8\x1e\x53\x93\xd4\xc7\x14\xef\xea\x42\x36\xac\xae\xb6\xe0\x6f\xe6\x5e\xad\xd2\x4a\x39\xaa\x6a\x64\xf6\x95\x70\x98\x43\x8d\x85\xdb\x4e\xc1\x58\x63\x00\x09\xed\xdb\x6e\xe0\x85\x49\x43\x1a\x0a\xba\x4b\xc1\x8b\xc0\x78\x6b\x36\x44\x1e\x75\x13\x13\x8f\x8a\xea\x9e\xd3\x52\x1b\xe7\xc6\x9a\x46\xa4\xc8\xdd\x1f\x98\x2c\xca\x53\x1e\xba\x92\x49\x64\x6f\x03\xd0\x2a\x17\x25\x33\xdd\xaf\x1b\x76\x99\xae\x09\x57\xbf\x9d\xb6\x3c\x76\xec\xa3\x64\x7a\xb1\x7b\x4e\x29\x24\xd2\xa5\xb1\x92\xea\x73\x7b\xa7\x9b\xf9\x30\x1b\x64\x11\x77\x5c\xa7\x1d\xc3\x14\xdd\x08\x43\x29\x94\xf6\xe7\x44\xcb\x11\xab\x9a\x0c\x23\x6b\xf8\xc0\x75\x3d\x3c\x74\x5d\xbd\xda\xb4\x1d\x47\x5d\x53\x14\x29\xfd\x31\xca\x76\x5f\x0f\x3c\xb2\xf1\xeb\xe3\x45\xbf\xb9\xe6\x82\xb5\x42\x14\xc8\xf3\xc2\x81\x22\xa9\x3e\x5e\x57\x4b\xef\x9b\x84\x52\xe7\x15\x5e\x99\x30\x18\x30\xa8\x7c\x5c\xd3\x70\x98\x6f\xb6\xa3\x8e\x13\x2d\x75\x44\x7d\x8e\x8d\xe6\x5c\x5d\x47\x3c\x8e\x92\x45\xa9\x2f\x8a\x2c\x95\x2a\x80\x5c\xaa\x61\x6d\x6b\xb6\xab\xcd\xd0\x49\x97\xa1\x11\x0c\x4f\x0b\x21\x70\x18\x8e\x63\xe5\x84\xd6\xaf\x56\xbb\xdd\x66\x45\xb4\x10\x59\x70\x9e\x30\x18\x20\xd0\xc0\x80\x9a\x2b\xec\x90\xe3\xd3\x4e\xf6\xa2\x76\xb2\x17\x15\x58\x2a\xac\x1c\x0b\x6d\x10\x04\x4d\x98\xb3\x76\x0a\x52\xaa\x97\xe8\x43\x68\x9b\xbc\x94\xae\x88\x7e\xbb\x14\xf7\x7c\xb3\xec\xb4\x56\xb3\xb6\x03\x53\x6d\x56\xee\xee\x21\xb2\xbc\xac\x66\x9a\xf0\x7b\x58\x76\xa7\x34\x7b\xfc\x55\x55\x19\xed\x59\xd3\xd0\x90\xa6\x75\xac\x36\x3e\x71\xa9\xb9\x7d\xc5\xf6\x07\xc5\x76\x9f\x2a\x80\x82\x08\xaf\xe5\x7e\xa9\x46\x50\x99\x49\x09\x8b\xfa\x0c\x5d\xc2\x48\xae\x06\xb0\x18\xe1\xf8\x36\xd6\xc6\x8c\xf5\xf4\xc1\x66\x3b\x95\x85\xe6\x78\x1f\xd4\xa0\xe5\x6e\xb7\x49\xfa\x83\x61\x3e\xe1\xfb\x64\x10\x0b\x71\xec\x3d\x5e\xcb\xe0\x9c\xfb\x4c\xdb\x64\xb1\x45\xc6\x0e\xe4\x89\x14\x38\xf8\x4c\xe5\xec\xf9\x30\x9e\x18\x81\xa9\xe9\xe1\x77\x7a\xc6\x88\xbe\x6f\x8d\xe5\x31\x33\x33\xcd\xd8\x9a\x2c\x91\x95\x8f\x28\xe2\x16\xbe\x80\x4f\x94\xd8\x72\x66\x97\x2a\x13\xa1\x1b\x1b\x17\x34\x5b\xd1\x05\x15\x36\x87\xc3\x98\x86\x95\x21\xd5\x28\xfd\x51\xba\x55\x44\x07\xb7\x14\x2c\xe3\x86\xca\xeb\xce\x8e\x44\x0d\x4b\x76\x65\x24\xdc\xb9\xa0\x08\x40\x0e\x97\x23\x00\x83\xea\x9a\xd1\x92\x44\xd9\x4f\x58\x9c\x7d\x1c\xdb\xce\x00\xca\x98\x3e\xc8\x04\x17\xb7\x91\xf2\x61\x01\x6d\x50\xb8\x21\x7c\x65\xe3\xfd\xe1\x03\x80\x17\x98\xb0\x27\xb8\x14\x66\x1b\xa7\x97\xe9\x4a\x7e\x3e\x57\x7b\x37\x78\x54\xed\xaf\xdc\xc6\xa9\xe1\xf1\x7b\x20\x81\xee\x07\x8a\x52\xf1\xbe\xa3\xa6\x09\xd3\x38\xb6\xdd\xc8\x14\x9a\x10\xe6\x8c\x22\x84\x39\x53\x63\xc1\xe7\xaa\x40\x88\xaa\x30\xfc\x7a\x44\x22\x40\xa1\x8c\x2f\xf8\x81\x86\x24\x4c\xb3\xcc\x86\x05\xd3\xce\xb3\x0a\x21\xae\x47\x24\x09\x9f\x18\x2d\xd8\xcd\xef\x3d\xd0\x9c\x7b\xf6\xc0\x94\xb7\xdf\x73\xb4\x61\x24\xf6\xd6\xc5\x9f\xd2\xc3\xac\x2f\x52\x7c\x2d\x52\xc1\x6a\x2f\x0f\xdb\x0d\x8d\x09\xf5\xe3\xd8\x1a\x1e\x9b\x0f\xdb\xe4\x1e\xc3\x82\x45\x23\xe0\xdb\x99\xa2\x89\x4f\xea\x36\x66\x16\xe5\x8b\x13\x0a\xd3\x8d\x6c\x08\xbb\x7e\x8b\xa2\xbe\x1b\xc7\x3a\x1d\x7c\xb6\x99\xd9\xbe\x89\x30\xf7\x89\xde\x2e\xe5\x68\xb3\x1b\x6b\xa5\x86\xa7\xaa\x61\xa4\x28\x6f\x9b\x04\x54\x76\xcc\xd6\x4a\xaf\x0b\x73\x68\x17\x35\xac\x7d\x7c\x4c\xf0\xb9\xbd\x2f\x34\x5f\x1a\xe6\x6c\xdd\x55\xa8\x38\xa9\x88\x3e\x26\xc7\x20\x0e\x73\xf3\x73\x4d\x33\x30\x59\x81\x92\x82\x97\x6c\x72\x41\x72\xe9\x8b\x60\xd7\x15\x47\x67\x66\x17\xd2\xac\x3f\xa5\xb9\x87\x83\x31\xa5\x04\x07\x64\x75\xd0\xf3\x8b\x5a\x92\xfe\xa6\x33\x53\xf9\xc0\xba\xfe\x2d\xfe\xed\x08\xbe\x8d\x4f\xca\xcf\xa8\xf9\x92\x34\x8e\x16\x1c\x0f\xfc\xbc\x70\x1a\xc3\x67\xf0\xb1\xab\x71\x55\xb9\xe4\x6e\xdf\x77\xff\xc3\xd2\xfb\xa0\x47\x56\x15\x5d\xe1\xdf\x05\x89\x10\x32\x86\xcf\x6a\xf2\xde\x1f\x6b\xef\x70\x9a\x22\x20\xd8\xc1\xa9\x55\xb5\xef\x6e\x63\x9c\x92\x5b\x4c\x8a\x21\xfc\x07\xaa\x02\x74\xa9\x54\xaa\xd3\xa8\x48\x6e\x1c\x1f\x23\xbb\xa8\x76\xa1\x54\x0b\xd8\x4f\x89\x4c\xb9\xef\xae\x8e\xc7\xfc\xd3\x07\x9b\x26\x6b\xaf\xf0\x27\x46\xc2\x75\x89\xd0\x37\x17\x76\xe7\x9e\x3d\xd0\xec\xaf\xe4\x04\x7c\xa8\x52\x8f\x86\x17\xd0\x1c\xf5\xc0\x9a\x3b\xa2\xdb\xe5\x8c\x66\x8e\x0b\x0c\x98\x73\xe0\xe3\x1a\xde\x83\xd9\xe6\x60\xd8\x8e\xa3\x50\x49\xfd\x41\xf9\x94\x8f\x35\x3f\xf4\x60\x60\x4d\x06\x52\x3a\xfc\xf6\xcf\x14\x70\xe5\xdf\xd2\xa3\x94\x14\xa6\xe1\x84\x96\x3e\x54\x08\xa3\x34\x8b\xba\x51\x82\x78\xde\x8d\x2a\xdd\x0a\xf4\xf8\xd6\x58\x88\x38\x33\xd3\x2c\xb2\xa1\x50\xd3\xfa\xc9\x22\x37\x65\xe4\x59\x10\xc2\xcc\xda\x64\x9b\x9f\x98\x01\xaf\x1f\x05\x5d\xbf\xfa\x78\xcb\xc7\x24\x9c\x34\x09\x67\x83\x36\x33\xb4\x82\x10\x94\xdc\xae\x15\xc3\x8e\xd3\x21\x6f\x60\x5d\x30\xe7\xe3\xb1\xd7\x3e\x33\xd3\x6c\x1b\x21\x95\x60\x44\x1a\xbd\x3b\x41\xa7\xd5\x88\xbb\xb4\x7f\x65\xc2\xf7\xad\xd0\x5e\x41\x0c\xc9\xb4\x0c\xc0\xd7\x5c\x55\x71\xdd\x30\x1f\x9a\x78\x62\xf3\xd4\xb7\x9a\x4b\x3b\xe0\x34\x75\xc6\x0d\xd3\x2c\x2b\x96\x0d\x98\xef\x80\x79\x33\xa9\x9c\x28\x1c\x9a\x8a\xfc\xd7\x76\x86\x31\xde\x1e\x62\x8f\x63\x3a\x10\x39\xa6\xea\xc5\x0b\x84\x3f\xd8\xe5\xc1\x74\xaf\x05\xa3\x4a\x4b\x7e\x0e\xf9\x3c\x3d\x75\xee\x96\x70\x04\x84\xd2\xcb\x46\xa9\x74\xaf\x8e\xd3\xb3\x40\x1f\xa4\xd1\x9a\x9c\x9b\x9f\xfb\x22\x7f\x41\x81\x8b\xc0\x7b\x3b\x82\x00\x04\xc6\xf2\xba\x96\x26\x3c\x3f\x82\x20\xee\x44\xe9\x83\xca\x9f\x9d\x28\x47\xf8\xc9\x55\x71\xf4\x02\x75\x9e\x1d\x8b\x6a\xf5\x4b\x62\x89\x71\xad\x78\xea\xf0\xde\x78\x6d\x5b\x5a\x9e\xa0\xeb\x46\xa0\x38\x17\x6f\xc1\x70\xe2\x89\x6c\x5b\xa5\xb4\x4e\x3a\x94\xbe\x7f\xb2\xb5\xb5\xb9\xe2\x34\x3b\xdb\xec\x0d\xfb\x0d\xba\x44\x16\x97\x2e\x3d\x8e\xf0\x82\xf2\xb9\x2b\xb6\xb3\x9b\x1e\x80\xd3\xc7\xad\x7e\x10\x91\xe7\x1d\x5c\xbd\xa0\x79\x1b\xfb\xf6\x71\x77\x9c\x93\x40\xf2\xe0\xbf\xfa\xf7\xfd\x24\xeb\xf7\x3e\x0f\x33\x4c\x5b\xed\x97\x7f\xb1\xa5\x38\x49\xb7\xad\x7a\xa2\xe0\xa9\x55\x2f\x95\x78\x03\x9b\x8b\xeb\x9e\xf4\x66\xb1\xb5\x77\xae\x7a\x74\xe0\xe5\x11\xd6\xff\x34\xc9\x1f\xd7\x92\x00\xf4\xbc\x71\x67\x47\xf0\x88\x37\xd6\x68\x3d\xc2\xcc\x1f\x47\xea\x80\x4e\xdb\x04\xca\xac\xe8\x57\xdc\xd2\xd4\xe1\x08\xf5\x45\xe0\xb2\xe1\xc4\x90\xdf\xd6\x08\x87\xa3\x41\xe3\x4b\x5f\x73\x7d\x6e\x0f\xec\xde\x28\xb5\xca\x50\xe0\x25\x5e\x3f\x42\x25\x17\x05\xc8\xab\xa5\x17\xd4\xbd\x1e\xf8\x6e\xe4\x0f\x03\x35\x06\xc1\x4c\x4a\xdc\xe8\x44\xf8\x85\x4a\xc1\xf6\xd6\xe6\x58\x7d\xff\x6c\x95\xd8\x64\x61\x94\x5b\xc5\xa4\x04\x91\x0e\x3e\x56\x40\xdc\xc4\x46\xdd\x5e\x3b\xcd\x7a\x69\xda\xc9\x27\xa8\x50\xcf\x9c\xf3\x81\xef\x02\x4d\xac\xfa\x60\x6e\x1c\x87\x5c\xa5\x37\x26\xeb\x9a\x08\xfc\x85\xfc\x67\xa5\xfe\x48\x4d\x5f\x64\x21\x4a\x58\xa1\xd4\x03\x4f\x8e\x61\x65\xf3\x49\x8d\xdf\x7c\x06\x71\x84\xab\xb8\x21\x3a\xff\x40\x71\x25\x7e\x30\x56\x9a\xad\x02\xa0\xbe\x75\x0d\x51\xc5\x57\x3d\xfd\xa9\x95\x0e\x19\x49\x20\x4e\x2f\xad\x28\xf6\x9e\x36\x85\xef\x8d\x64\x20\xc3\x18\x81\xaa\x63\x96\xf7\x2c\xf3\xaa\xc2\xf4\xf2\x30\xe5\xd0\xfb\x19\xaf\xab\xe0\x58\x89\x6f\x28\x8c\x72\xde\xb3\x31\xea\xd1\x6e\x68\xef\x5e\xe0\x21\x0b\x1c\x67\x49\x7f\x77\x8f\x92\x10\xe9\xf6\x6d\x52\xc5\xc1\xd5\xfa\x41\x5d\xe7\x6d\xac\x1f\x3e\x51\x88\x0b\x93\x59\x33\xe1\x11\xfd\x0d\x92\x44\xc1\x52\x86\xdb\x40\xb0\xb7\xb3\x6e\x95\xe5\xe9\xb0\xe8\xd9\x0c\x6f\x1d\x2b\xeb\x8f\xb1\x79\xf8\xc4\xd5\x49\xf3\x22\x4b\xfb\x56\xd8\x70\xe4\x2a\x14\x2b\xcc\xdb\xca\xf8\x7c\xe5\x97\x7e\x6d\xa2\xf1\xfc\x9c\x13\xaa\xad\x3e\x82\xaa\x25\x0b\x3b\xe2\x52\xcf\x94\x0f\x6a\xd5\x9c\x49\x56\xa6\x27\x31\x48\xdd\xbb\x07\x04\x9c\x8f\x55\x32\x3c\x28\x56\xa0\x19\xea\xe0\x40\x6e\x2e\x14\xcd\x08\x61\xbb\xab\xf6\x8d\x50\x9e\xee\x76\x41\xa7\x59\x94\xea\x27\x80\x04\xd7\xb5\xb8\xe0\xf5\xc0\x57\x34\x7a\x69\xdf\xa6\xcb\x09\xd5\x57\x2a\x2b\x03\x0b\x07\x5d\x2d\x3e\x1e\x5b\xb2\xfb\x67\x9b\xbd\xa8\xdb\xb3\xd9\x04\xbd\x43\xe0\x52\x76\x51\xf4\x81\xca\xc7\xb6\x55\x45\xbe\x7a\xbc\xf4\x33\xb4\x6d\x6b\x93\xc7\x3c\xf1\x68\x63\x55\x61\x8b\x3e\xa6\xbc\x15\x8f\x75\x9d\xd0\xae\xb0\xc2\x6b\x64\xbf\x90\x6c\x9f\xd7\x72\x7f\xf7\x30\xbc\x08\xbf\xfc\x10\x78\xe7\x90\xe7\xdc\x2d\xa9\x89\x28\x93\x01\x74\x95\x4e\x71\xdd\x51\x0c\x7c\x84\xf7\x85\x4b\x79\x03\x7b\x1b\x51\xd5\x55\xb2\x86\x58\x5b\x37\xd9\x03\xe2\x33\xac\x34\x25\xcf\x91\x62\x6e\xe6\x0a\xa5\x95\x80\x36\xe0\x1a\xb4\x14\x95\xb0\x98\xa7\x14\x84\xde\xe1\x06\x44\x9d\x37\xae\x28\xc6\x66\xd3\xc9\x77\x68\x4a\x34\x3d\xe9\xf6\x53\xe4\xa5\x40\x6f\x6c\xd0\x4d\xc0\x53\xb0\xeb\xc5\x13\x61\xd1\x0f\x8e\xfa\x02\xc5\x47\x32\x41\x8d\x59\x4c\x84\x5c\x09\x3c\xaf\x51\x3b\x4a\x68\xa0\x4d\x24\x3f\x19\x7c\xc5\x27\x8e\xa0\xa7\x63\xfb\x69\x98\x99\x10\xcd\x01\x7c\x25\xfa\xbe\x28\x67\xec\xa0\x97\x8f\x68\x95\xb9\x0a\xe0\x64\xde\x55\xd3\x68\xa0\xd4\xa2\x1a\x8d\xa3\xe8\x80\x5e\x3b\x1f\xeb\x9a\xdc\x2b\x45\x66\xfb\x16\xd1\x00\x1c\xed\x56\xcd\x9f\xb8\x75\xb5\xc6\xcc\xdb\xa4\x1b\x47\x79\x8f\xc2\x44\xbc\xee\xef\x28\xac\xfc\x21\x0d\x0e\x3c\x3a\x36\x40\xf6\xe2\x8b\xc4\x28\xc1\x81\xac\x04\x1d\xbe\x5f\x37\x3e\xf8\x3b\x33\xd3\xb4\x45\x2f\xa9\x12\x8b\x99\x19\x61\xe1\x0c\x1a\x8a\x91\xd3\xa3\xec\x17\xd2\xb4\x68\x9b\x38\x06\xd5\xb2\x14\xc9\x1a\x6e\xf8\xf3\xa6\x92\xc3\x3d\x5e\x87\x4a\x0e\xd3\x24\x1f\xf6\xa5\x62\x83\x25\x47\xa6\x79\xe3\xbc\x9e\xe7\x3b\xac\xeb\x69\x26\x9e\xf2\x63\x10\x4c\x4c\xc5\x01\x02\x2d\x70\x98\xad\x0b\x9a\xc6\x07\xae\x14\x6b\xae\xd1\xf2\x60\xb5\xc2\x10\xcd\x76\xb5\x5b\x91\xff\x1c\x51\x45\xcf\xbb\x0a\xf5\x7a\xa1\xf4\xf0\x09\xae\xa2\x0b\xd3\xe1\xc3\xbe\xae\x19\x0e\x5d\x81\x07\xbd\xfd\xab\x0a\xae\x38\xde\x5c\x9c\x3e\xd8\xec\xa7\x95\x31\x6f\x28\xa6\x01\xa4\x3e\x32\xdf\x2a\x5f\x9e\xd8\x2e\x54\xec\x7c\x6b\x14\xe2\x8c\xbc\x75\xa8\x8c\x83\xd8\xf6\x58\x4d\xad\x79\xae\x99\x10\xa6\xd8\x3f\x05\x9e\xf2\xe0\x13\xa5\x93\x61\xc2\x97\x87\x11\x86\x2b\x3d\x17\x14\xd2\x56\xc1\x5a\x3b\x06\x2e\x3b\x88\x6d\x61\x27\x46\xc8\xe4\x5c\x02\x7a\x93\x3e\x03\xbc\xc6\x95\x1a\x76\x94\xf9\x66\x1c\x2d\xda\x18\xbd\x5b\x38\x24\xc8\xd8\xf0\xb1\x43\x77\x2e\xd9\xa4\x63\x8b\xc2\xa8\xae\xed\x25\x85\x76\xbf\xa4\xfc\xbc\xe9\xa7\xc3\xa4\x78\x60\xf4\xca\xdd\xcc\x27\xeb\xa0\xc9\x6d\xf8\x02\x0c\x2e\x15\xf5\x83\x35\x0d\xaa\xba\xa3\x18\x16\x40\x13\x8a\x84\x6e\x15\x8b\x93\xff\xa8\x54\xf1\xd3\xb8\x48\xcb\x73\x7b\xe7\x9a\xf6\x95\x41\xea\x4a\xb3\x80\xf4\x43\x83\x90\x8f\x55\x2d\x3a\x59\x32\xbc\x59\xf1\x1c\x30\x8d\xc6\xc7\x81\x57\x6d\x36\x39\x44\x07\x9c\x40\x55\x65\xb3\x91\x6e\x6d\x04\x7e\xb0\xed\x0e\x5d\x35\x97\xd0\x35\x65\x66\xbf\x3d\x8c\xab\x50\x90\x9a\x79\xf8\xf7\x8f\x02\xff\xb7\x1f\xd5\x8c\x60\x67\x36\x4c\xb3\x0e\x74\x38\x5f\xe0\xcc\xec\xff\x45\x9e\x07\x7b\x79\x44\xd1\xf1\x9f\x50\x5d\xe0\xd8\x16\x85\xcd\xb6\x2b\x59\xab\x0f\xe1\xb8\xf9\x04\x1e\xcf\xd5\xe6\xf6\xcf\xea\x56\xe4\x0b\xec\xbd\x6e\x12\x1c\x06\x8d\x98\x53\xa5\x72\x6b\x37\x35\x59\x79\xbc\x6c\x56\x10\xbc\x49\x37\xdd\xf7\x89\x2e\x91\xfb\x95\x71\x61\x9d\xc7\xf4\x6d\xe7\x11\x9f\xdc\x1f\x42\xdc\x86\x20\xef\xb0\x1a\xfc\xdd\xd2\xaa\x2e\x01\xee\x66\x12\x98\x18\x20\x7a\xfe\x27\x5c\x8f\x68\x9c\x4d\x78\xd9\xc6\xf7\x90\x8f\x4a\x62\x03\x47\x88\x5d\x77\x3d\x50\xbe\x1d\x84\x1a\x32\x12\xa9\x74\x82\x7e\x4a\xd9\x89\x60\x39\xc8\xa7\x89\x3d\xad\xde\x32\xa2\x94\x9f\xc1\x0a\xe2\x27\x7f\x3a\xf6\xea\xc0\xfe\x4e\x22\x33\xaa\x21\x7c\xa5\xf4\x55\x83\x2b\x75\x28\xd7\xd0\x0c\xa2\x82\xeb\x13\x42\xa3\xd7\x70\x8a\x9c\x0d\x0d\x6d\x39\xa9\xde\x76\x98\x45\x7d\xd0\x29\x4a\x29\xe3\xbe\x0a\x6a\x8f\x68\x42\x8b\x1b\x23\xb1\x7c\x5c\x80\x25\x18\x71\x1f\x13\x37\xf2\xc9\x58\x81\x66\x7e\x6f\xb3\x6f\x3a\x8c\x6a\x44\x56\xb6\x4d\xeb\xf8\x43\x72\x40\xaa\x35\x75\x60\x44\x8c\x67\x52\xc9\x46\x29\x9c\xc8\x6c\xfa\xf5\x11\x97\xe7\xa6\x29\x8a\xd8\x24\x85\x99\x54\x0c\x17\x1f\xa9\xf7\x70\x5e\xa1\x7a\xde\xd6\xe4\x46\xeb\xba\xf7\x12\x15\x51\x98\x66\x03\xd2\x2f\x65\x92\x57\x5a\xdb\x42\xf8\xfa\x98\x04\xf0\xc3\x6c\xc9\x46\x31\x6f\xd3\xd9\x59\x07\xc5\x69\x38\xde\xb5\xb3\x75\xee\x7b\x60\xf2\x9c\x1b\xef\x2e\x71\xae\x9e\x92\x38\xc9\x1a\x71\x80\x28\x29\x6c\xb6\x14\xd9\x65\x97\xe4\x81\xda\xee\x0d\xfa\x2d\x3e\x56\x35\xf5\x70\x25\x8c\xa3\xa4\x8b\xf6\x91\xd3\x52\x72\xb4\x07\xf7\x94\x44\x2e\xb8\x49\xd0\x80\xf9\xf3\xb1\xa0\x1b\xcc\xc7\x51\x7f\xd0\xf0\x04\x72\x98\xcd\x97\xe2\x4e\xdd\xb8\x49\xcf\xc4\x0b\x64\xb8\xb0\x61\xd0\x8d\xe7\xe3\xb1\x10\xe8\xe0\xb3\xcd\x6e\x6c\x4d\xa2\x7e\xe1\x5b\xea\x17\xbe\x35\x52\x5b\x2a\x6c\xb2\xa7\xfa\x3b\x87\x75\xad\x36\x9c\x93\xdf\xf3\x59\x28\x13\x42\xc3\x7e\x7f\x97\x30\xe6\x1b\xcc\xf8\x8c\x64\xe1\x58\xe0\xe5\x32\x1e\x82\xad\x80\xaf\xde\xb9\xea\xfb\x32\x0f\x51\xce\x23\xc3\x54\xa3\xc4\x3b\x33\x33\x5c\xfc\xe5\xba\x0c\x13\x2d\x8d\xb2\xf0\x90\xa1\x92\xfc\x89\x5e\x06\x9a\xa2\xcc\x80\x22\x18\x4f\xc5\x9d\x90\x12\xa6\x77\x04\x06\x76\x26\x50\xdc\xe6\x67\x54\x55\x7a\x39\x8a\x17\x32\x01\x1d\x08\x23\xbf\x47\x8a\xdc\xc6\x0a\x97\xce\x84\xaa\x37\x77\x4d\x94\xe4\xc5\x23\x5e\x72\xe0\xb4\x62\x0f\xdf\x8e\x88\x17\xcf\x91\x1f\x2a\x7c\x2f\xf3\x4b\xc1\xc6\xdf\x84\xb7\x76\x8c\x71\xce\x43\x83\x8c\x59\xa4\x8e\xe9\xa6\xf9\x47\xb8\x02\x09\xaf\xb2\x16\x10\xf0\xdf\xb5\x08\xe6\x9e\x3d\x20\x34\x0d\x81\xe2\xbd\x42\x25\x5c\x30\x59\xf4\x3c\x31\x2f\xf1\x27\x48\x41\xb0\x7f\xd7\x82\xcf\x2a\xd6\x7b\x1b\x56\xa9\x35\xe9\x8f\x81\x17\x86\xc7\x79\xc8\x64\xc8\x68\xcf\x1e\xc5\x9a\xd1\x33\x4b\x51\x0a\x88\x1e\x5e\x3c\x0a\xbd\x7c\xac\x25\x15\x89\x25\x7f\x9b\x4a\x91\x39\xba\x40\xa0\xd2\x40\x21\x19\x16\xae\xc1\xc0\x75\x84\x41\xbb\x68\x29\x69\x5d\x4c\x84\x83\xa7\xc6\x2a\xd5\x4f\x35\x8b\x74\xd0\xf0\x0d\x1b\x40\xde\xf9\x78\xd5\x07\xda\xff\xf8\xff\xff\x9f\x29\xf9\xa7\xbb\x8a\xd0\xe1\x3c\x39\x52\x39\x76\xb8\xe7\x61\xd8\x7b\x90\xae\x1c\xc1\x20\x8f\x51\xa0\xc6\x7a\x5f\xd5\xe7\xc1\xeb\x09\x9f\xfc\x30\x45\xe6\x94\x19\xf6\x1f\x5b\x75\xb3\x89\x77\xfe\x1e\xd5\x61\xc5\x37\x2a\x34\x36\x0f\xb7\xf3\x3c\xc8\x2a\x65\xc4\x64\x9f\x0e\x36\x5b\x13\x07\x7e\xe3\x2b\x32\x49\x50\xaa\x72\xdd\x9d\xb1\x7e\x71\x15\x94\x2d\x90\x38\x84\x17\x0f\x40\x01\xe6\x8e\x1a\x27\xbd\x33\x06\x08\xfa\xca\x74\x15\xf5\x0e\xb3\xb0\x67\x72\x60\x02\x85\x12\x52\x51\xe2\x36\xc6\xea\x36\x95\xbb\xe9\xa6\x9d\x8e\xcd\x73\x74\x43\xb4\x12\x0d\x1f\x2b\x6e\x23\x93\x59\x93\x6f\xa7\x5d\x22\x62\xb5\xb4\x30\x9d\x8c\x6d\x75\xb9\x70\x4d\xc8\x02\xc4\x36\xf8\x6a\xe3\x59\x35\x0c\xbf\x1e\x28\xa8\xea\x35\xa5\x34\x3b\xc8\xd2\x97\x6c\x58\x90\x3a\x2f\x32\x8e\x06\x40\xa6\x48\xa1\x2e\x73\xb8\x82\x02\xfa\xeb\xd8\x8f\x02\x8b\xf0\x45\xce\x29\x2c\x4a\xf4\xe5\x26\x31\xeb\xc6\xd5\x07\x2d\x36\xfa\xbb\x30\x63\x28\xf0\x7c\x38\x66\xd6\x89\x45\x24\xe5\x85\x89\xac\xed\x35\x55\x78\x7b\x4d\x65\xd1\xf9\x20\xca\xa2\x22\x9f\xaa\x1e\xbf\x33\x84\xd5\x0f\x09\x6f\xbe\x97\x0a\x78\x4f\xcf\x14\x22\x24\x40\x8c\xfc\xa0\x13\x64\x8d\x92\x70\xd8\x6f\xa3\x76\x57\x5d\xa0\x03\x86\x55\x0f\x42\x80\x61\xfe\xdd\x74\xd3\xb4\x93\xef\xf4\x24\x7a\x5b\x09\xf4\x8c\x85\x7d\x42\x01\xeb\x1b\x2d\x45\xdf\x79\x56\x91\x84\xdc\xc1\xdb\x10\xb5\x42\x25\xad\x88\xfe\x26\xca\x10\x3b\x68\xfd\xc3\x01\x90\x94\xa6\x2b\x35\xc5\xf1\x76\x2f\x5b\x75\x81\x5a\xca\x82\xef\xa8\x3c\x22\x37\x0f\x02\x25\x8d\xca\xda\x43\xb8\x71\xa4\x72\x80\x1c\xdc\x46\x41\x49\xfa\x0d\x0f\x2b\x92\x44\x3b\x20\xa6\x4f\x90\xc1\x92\x6c\x4d\x4d\x65\x82\x54\xf2\x86\xfd\x86\xbf\x39\x10\x1b\xf0\xf1\x58\x31\x63\x66\xa6\xd9\xb6\xa1\x19\xe6\x76\xca\xf3\x53\x5e\x56\x79\xe2\x71\xd5\x1e\xbc\x89\x52\xbc\x56\x0e\x93\xca\x53\xcd\xf7\xda\x41\x94\xa7\xac\xe7\xe9\x4a\xe9\xbf\xfe\xbc\x93\x72\xfd\xb4\x5a\x73\x98\x86\xa9\x69\xa8\x6c\xe2\x8c\xd2\xb6\x38\xa3\x4a\x4a\x7d\xcb\x18\x76\x04\x43\xef\xab\xc0\xe8\x7d\x9f\xbe\xa5\xc8\x68\xe7\x05\xa8\xf5\x96\x9e\x51\x7b\x4b\xf5\xf9\x07\xf1\x30\xe9\xda\x49\x05\x8b\x41\xdd\x04\x2d\x09\x5d\x75\x3c\x47\xc6\x16\xfd\x8c\x71\x43\xe6\x55\xc5\x93\x21\x13\x23\x20\xbf\x7d\x3f\x50\x59\xf0\xfb\x9e\x01\xaf\x48\xb3\x3e\xc2\x36\x27\xed\x3d\x2b\x8d\xf4\xfb\xaa\x5c\xc1\xd0\x21\x78\xfd\x1f\xa8\x62\x67\x96\xc6\xf1\x0e\x8f\x20\x39\x89\xd7\x84\x2f\xbb\x02\x9f\xe9\x58\x4d\xaa\xc7\x8a\x65\xf7\xbe\xae\x22\xf3\x77\x4b\x9f\x9b\x6c\x1b\x7f\x01\x36\x32\x10\xef\x9f\xb8\xe7\x3a\x88\xf2\x82\x99\x40\xf9\x61\x05\x23\xcd\xd1\x9a\xb5\xc9\x7c\xb5\x4a\x13\xef\x94\xd2\xc4\x3b\xa5\xaa\xf1\x7d\x9b\xe7\x28\xf9\xa2\xc2\x78\x5d\x51\x54\xbf\xa7\xe9\xaa\x2e\xe9\x7a\xbf\x89\x4d\x16\xd9\x1c\xd5\x6c\xd5\x1c\x70\xcc\xd1\x81\x6f\x9a\x5d\x52\xa4\xdf\xe3\x84\x71\xfb\xa6\x9b\x61\x3a\x58\x19\x99\xd0\x2e\x75\xad\x43\x9e\x42\x3a\x2c\xc2\x6c\x65\x4a\x31\xe2\x5f\x54\xd5\xd9\x87\x5a\xbe\x09\x86\x98\xdb\x29\x34\x69\x74\xc4\x38\x90\x60\xae\x99\x17\x66\xd1\x8e\x80\x85\xc1\x37\x2c\x43\xea\x6a\x96\xc8\x0c\x28\x78\x70\xc1\x29\xe8\x7b\xf8\xd8\x65\x2e\x45\x66\x92\xdc\xc9\x6b\x39\xfd\xa1\x9f\xe1\x69\xf2\x49\x0d\x9d\xcc\x9c\xd8\x07\xda\x42\x68\xa9\x82\xfd\x9e\x8f\x83\x47\xdd\x58\x7b\x3b\x2a\x32\x93\x45\xf1\xca\x84\x0f\xe0\x20\xb1\x75\x5e\x09\xbc\xad\xaa\x32\x75\x98\xe6\x92\xba\xb1\x60\xb1\x7a\x7c\xef\x97\x6a\xe0\xe5\xfd\x40\x11\x82\x9f\xaf\x65\xe5\xca\xac\x01\xb4\xd6\x81\x4b\xd5\x42\xa9\xd5\xf0\x6f\x1b\x9f\xc9\x49\x2d\x5b\x2b\x50\x6c\x6e\xbc\xbd\xf8\x62\x33\xef\x99\x0e\x69\xa3\x2a\x41\x83\x0b\xf0\xc3\x22\x38\xf3\xb8\xc2\xff\x39\x7e\x1f\x04\x34\xb0\xfe\x47\xb0\xd9\xf8\xa4\x2e\x3b\xca\x7b\x69\x06\x36\x23\xc4\x6a\xaf\x07\x1e\x91\xf0\xba\x43\xa5\x15\x51\xbf\x6d\xb3\x18\x84\x10\xbe\x33\xcd\x83\x99\x32\xf5\x5e\x37\xcc\xb3\x30\x4c\x3a\xa3\x0a\x4d\x8d\x91\x29\xe0\xdd\x8a\xdb\xc2\xc4\x0f\x51\xa4\x0e\xbb\xd5\x40\xaa\x80\x48\xf8\x48\xa0\xea\xae\xdf\x09\x94\xe8\xd2\x69\x25\x5b\x70\x65\x84\xbe\x8a\x4c\x0b\x7f\xbc\xf4\x24\xdc\xdf\xd5\x17\xfd\x53\x55\xb4\x7c\x93\x53\x08\xec\xd5\x63\xf0\xce\x42\xf4\x45\x6b\x82\x2f\x6c\x55\xcd\xae\xff\xd7\x63\x35\x3f\xa2\x4c\x2c\x86\x5e\x53\x05\x51\xd3\x35\xb8\x7e\x3e\x51\xe9\xf4\x42\xd4\x1d\x66\x36\xdf\x59\x39\x73\x11\xd9\xae\x56\xbd\xf0\xda\x54\x8e\x5d\xcf\x10\xe1\x22\x8e\xc3\x7d\xe3\xf6\x58\x69\x14\xe9\xdf\x95\xd2\x67\x69\xf7\x46\xf9\xa4\x3c\x9a\xf9\xa6\xda\x1a\xdd\xcc\x9a\x62\x47\xe5\x68\x9c\x60\x9b\x2f\x0f\xdf\x09\xb4\xe0\xaa\x62\x36\x78\xe8\x75\x34\xa1\xe0\x31\x98\x03\x83\x4f\x28\x9b\xdd\xc0\xdc\x9a\xe0\xac\x1e\x55\x76\x64\xb9\x6f\x16\x6d\x96\x13\x60\x11\x3d\xf9\xc9\x55\x95\xdc\xac\x2b\x7a\xac\xd7\xf1\xd8\x78\x2e\x51\xd9\xd5\x1d\x63\xb8\xbb\xe7\xf6\x56\x1e\x2e\xb6\x2c\xf1\xe5\x60\xbf\xaa\x06\x58\x83\xf1\x8f\x92\x25\x9b\x17\x8e\x07\x69\x64\x06\x54\x08\x72\xfc\xcb\xaa\x52\x68\x5b\xb0\xb2\x31\x9e\xd0\x27\x8a\x20\xe8\x93\x3a\x21\xfb\x28\x33\xe8\xd8\x3a\x65\xad\xea\xc3\x02\x9b\xf7\x54\x17\x5d\x33\x68\x8c\xbb\x50\x3e\x71\xee\xd0\x26\xa6\x1d\x63\x60\x02\xd1\x22\x63\x55\xb9\x99\xd7\xf2\x23\x81\x8f\x8c\x69\xc0\x3c\xf9\x24\xc3\xc1\x68\xc3\x0b\xbf\x08\x7d\x5c\x08\x46\xc6\x91\xf1\x73\x07\x9a\x2f\x45\x2c\x13\xe5\x0a\xe2\xa0\xc1\x16\x20\x90\x9f\x7b\xe8\xa5\x59\x6e\x27\xfc\x23\xbf\x89\xcd\xa6\xc9\xda\x05\x9e\xf4\x98\xea\x8c\x11\x78\x82\x4c\x9d\x33\xf7\x47\x03\x4f\xb4\x78\xb4\x2e\xea\x0b\x4d\x5e\x38\x31\x80\x11\x7a\x72\xcc\x81\xbc\x46\x97\x88\x2c\xf2\xa4\xf3\x1d\x79\x95\xf7\xe5\xd6\xba\x5a\x17\x72\xfc\xe3\x4a\x13\xec\xb8\x62\xa6\x4c\xdb\xb9\xcd\x96\xb8\x8d\x0e\x3f\xf3\x23\x8a\xc9\xf8\x18\x12\x98\x9c\x34\x3f\xf9\xe4\x13\x3a\x4d\x0a\x7c\x3c\x0a\xb2\x0c\x29\xdb\xd1\x03\x67\xf1\xc6\xd2\x6f\xf5\xd3\xd4\xc8\x11\x39\x13\x9f\x5f\xfe\x84\x2c\x1c\x62\xa4\xf7\x4b\x5f\xb2\x3f\xa3\xb2\xd5\xab\x30\x07\xb2\xd9\x68\xcf\x20\x47\x59\xd3\xb4\x00\xf7\x74\xae\x74\x19\x75\x22\xbc\x1b\x9e\x3e\x45\x19\x72\x3d\x50\x99\xe0\x91\xa0\xf1\x95\x69\x8f\xd5\xdd\xb7\xcf\x95\x8d\x55\xf7\xed\xea\x26\xa9\x42\xa9\x6a\x0c\xb2\xb4\x6d\xda\x1c\x16\x8b\x22\x09\x7d\x4e\x1a\x86\x9b\xd7\xe8\xf3\xd3\x07\x89\xd3\x9e\x87\x17\x60\xf9\x50\xf6\xe1\xe3\xcd\xc4\x24\x4f\x37\xbf\xfa\x65\xa5\x37\xfb\x6d\x22\x3e\xe5\xe3\xc0\x43\x16\x8a\x94\xb8\x27\x5f\x10\xd1\x5f\x0a\xd8\x36\x78\x37\x4a\x19\xae\xba\x55\x94\x90\xfe\x37\x54\x8d\xa4\x31\x54\xbd\x1a\xe4\x26\x57\xd1\x22\x97\xb2\xb1\x47\x02\x9f\x52\x53\x15\x68\x08\x46\x4b\x36\xdf\x41\xb7\xe1\x84\x77\x35\x1e\xdd\x8f\xcd\x1d\xa1\x4e\x15\x7a\xe4\xd7\xc8\x4c\x73\xf5\x83\xd6\x10\x4a\x2a\xe7\xf5\xb8\x12\x83\x1f\x98\x89\x4c\x4d\x54\xf6\x88\x7d\x89\xba\x43\xe8\x1b\x5d\xa2\x7d\xe4\xd2\x09\xd7\x4f\x02\x23\x1a\xff\xff\x1a\x3d\x25\xf2\xc7\x91\xe3\xdb\xc2\x43\x39\x19\xa8\x3e\xce\xc9\xd2\xab\x38\x67\x36\x26\x4a\x5f\x57\x7a\xba\x47\x57\xce\xc7\x9a\xc4\xdd\x0e\x4c\x56\xf4\x25\xe5\x9e\x96\x92\x05\xec\x84\xd4\x2f\x7c\x4b\x92\x62\x8e\xd0\x0c\x50\x70\xe1\xf9\x59\x58\x3c\x19\xa6\xdd\x9c\x16\xbd\xf8\x62\x73\x98\x2c\xa4\x59\x31\x4c\x04\xa9\xef\x28\xf4\x3c\x9d\x9e\x2b\xeb\xf7\x86\x49\x27\xb3\x9d\x6d\xca\x3d\x37\x56\x55\xbc\xb2\x9d\xd8\x1f\x50\xba\xf8\xbb\x2d\x8f\xb5\xb8\x8f\x17\x08\xfb\x0c\x6c\xb6\xc8\x34\xf9\x26\xb3\x5d\xaa\x1c\x0b\xed\x40\x97\xbc\xf8\x02\xe8\x39\xd5\xbe\x1c\x44\x71\x5a\xe4\x0f\xd0\x0a\x45\x52\x7e\x1a\xd6\x4c\xc0\xb9\x6a\x4a\xf9\xb8\x1a\x2f\xfa\x28\xf0\x81\x03\xcf\xed\xf3\xc7\x03\x1f\xf3\x9c\x57\x9c\x7c\x6f\x2a\x54\x1d\x98\x6d\x25\x98\xf3\x16\x19\xf3\x7b\x5d\x29\x15\x8b\x14\x37\xdd\xb0\x88\x74\xd7\xa4\x32\x79\x0f\xec\x07\xa3\x29\x0a\x1f\xbb\x54\x06\x7d\xef\x49\x25\x9d\x0f\xa2\x63\xa0\x3f\x6e\x21\x6e\xd3\x09\x39\xaa\x4b\x0f\x8d\xa9\x9c\xce\xef\x6d\x16\xbd\x28\x59\xa4\x96\x1f\xec\x23\xc0\xe4\x70\x8c\x4c\x28\x8b\xed\x76\x7b\x8c\x04\xf7\xb9\xbd\x52\xcd\xed\x9a\x78\xc9\x24\x7e\xad\xc3\x7f\xbc\x5b\xfa\x99\xc2\x77\xc7\x48\x09\x29\xca\x23\x02\x3e\x22\x08\x87\xf5\xc3\x6e\x62\xc4\x2f\x9f\xac\x2a\x12\x45\x93\xd1\x04\xa5\x22\xb0\xd5\x03\x92\x5f\xfc\xd4\x32\x45\x52\x39\x21\xc2\x00\x70\x9d\x4a\x49\x68\x1c\x70\xb4\x1e\xfe\x87\x32\x93\x74\x41\xdc\x71\xc0\x89\x82\xd0\xb3\x70\xf0\xa1\xca\xf0\x33\xb6\x85\x4c\xab\xe0\x5c\xe4\x1d\x15\x26\x2f\x9c\x54\x34\x16\xeb\x6d\xfc\x9a\x68\x65\x2a\x04\xff\x61\xad\x65\x55\xac\xc4\x76\xaa\x7a\x9d\xf8\x2d\x9e\x09\x17\x26\x2e\x55\x7c\x3f\x4c\x37\x8f\x04\xe8\x8e\x66\x14\xba\x1a\x3c\xa1\x30\x3a\x09\xad\x45\x7a\xc8\x7a\x30\x74\x84\x86\x7d\x73\xd0\x32\x7d\xb0\xb9\x10\x65\x39\x89\xff\x4e\xf8\x01\xcd\x35\xc5\x10\x8c\x1d\x81\x55\xf6\xbd\xcd\x03\x35\x44\xe9\x32\x33\x03\x5e\x45\xc7\x45\x5f\x6d\x46\x46\xc2\x29\xcc\x00\xf1\x55\x4d\x6f\xac\xa1\x5b\x24\xe2\x4b\xde\x10\x5e\xd2\x6c\x90\xe3\xc9\x21\x51\x2a\xbe\x3c\x8c\xa8\xd5\x32\xc6\xde\x04\xe3\xc2\x55\x43\xf8\xe6\x93\x75\xaa\x69\x26\x5f\xe4\x95\x21\xe3\xf2\xd5\x4b\xe5\xe3\x1a\x9e\xb9\x67\x9a\x05\x86\x79\x9d\x00\x1d\xfa\x6e\x7c\xac\xfa\x17\x4b\x51\x15\x51\x87\x76\xca\x67\x56\x3f\xc3\xcb\x82\xf9\xfd\xd7\xf4\x16\x79\xc3\xe9\xbc\xec\x67\x30\x58\x32\xb3\x58\xc3\x41\x9c\x59\x48\x7d\xd3\x85\xcc\xcc\xf0\xca\xfa\x39\x3d\x5b\x3e\x1e\x7b\xb3\x55\xc6\x3a\xb0\x61\xb5\xef\xb0\x91\x5c\xab\xd2\x55\xe7\xde\xa8\x23\x59\xe9\xd8\xf0\xe9\x49\xac\x66\x47\x3e\xa9\x8a\x8a\x3e\x2d\xbf\xaa\x15\x61\x76\xb6\x3c\x5c\xbf\x5a\x4c\x8b\x98\xe8\x71\x7a\xb7\x0e\xc5\xc9\x12\xaf\x9b\x27\x65\xda\x26\xcf\xa7\x14\x9f\xd4\x49\x35\xce\x0c\x99\x1e\x17\x56\x3d\xb7\xd7\xf5\x6c\xe8\x02\x60\x77\x6e\x28\x70\x4e\xdb\x16\xbd\x85\x34\xeb\xe2\xad\x71\x11\x97\xde\x9a\x14\x74\x7d\x8a\x65\xfb\x83\x38\x5d\xb1\x36\x7f\x88\xac\x2c\x8a\x2e\x5b\xc0\x1d\x22\x49\x9e\x47\x0e\xbf\x8f\x17\x8a\xd6\xfe\x5f\xeb\x12\x03\xdc\x1a\xd6\x11\x8f\x67\xb2\xd7\xd1\xb6\xf5\xcf\x29\xc4\x60\xfc\x04\x45\xc7\x1c\x10\x69\x6c\x2a\x94\xff\xd0\xd1\x3f\x43\xf7\x8e\xc7\x78\x85\xc2\x4b\xf4\x27\x8e\x96\x4f\xb8\xdb\x65\xae\x36\x44\x0a\x1e\x8c\x85\xad\x27\xf8\xf0\x1a\xb9\x02\x42\xa9\x30\xb2\x08\x15\x99\x3b\x14\x3f\xf3\x71\xf9\x85\xba\x04\xa7\x6f\x8a\x9e\x25\xce\xdf\x88\x99\xe4\x1c\xdd\x83\x13\x99\x18\x9f\x4e\x9e\x3e\xe8\xc0\xd1\x00\xc1\xe1\x45\x5c\x57\x44\x0b\x18\xa5\x14\xa6\x39\x65\xa1\xd3\x58\x2a\x3b\x23\x43\x5c\x7c\x32\x96\x86\x11\xf3\x74\x36\x48\x33\x59\xf7\x8e\x82\xc5\xa7\xcd\xe7\xeb\xe6\x97\x3a\xe9\x32\xb4\xda\x04\x74\x51\x45\x0b\x4e\x39\x62\x56\x69\xba\x38\x61\x84\x1b\x8a\xa1\xfb\xe7\xaa\x56\xba\x92\x76\x23\x4a\xd0\x44\x12\x4f\x0d\x94\x8f\xdb\xe0\xfd\xb3\xcd\x3c\x24\x79\x61\x71\xab\x0e\x12\xe0\xe1\x01\x1e\x40\x97\xc4\x26\xeb\xca\x5f\xba\xd2\x87\xa2\xfa\x55\x6d\x90\x61\x0c\xa9\xff\x11\xb2\x5c\x21\x44\xab\x41\xf6\x9a\x76\x3e\xcc\xd8\xbc\x62\xf7\x9f\x51\x56\x0b\xaa\x8c\x18\x89\xb8\xa2\x61\x0e\x69\x52\x64\x69\xfc\x50\x75\xc7\xa8\x87\x31\x31\xa3\x13\x39\x70\xd3\x52\xeb\x9a\xba\xe7\x44\x30\xc2\xff\xd4\x98\x57\x3b\x60\x7e\xaf\x1b\xea\x52\x15\x9b\xe3\x7a\x88\xe5\x14\xca\x2a\x88\x52\xaf\x04\x8a\x66\x57\x0f\xca\xad\x2b\x92\x8e\x6d\xa8\x47\xa1\x15\x7f\x47\x4d\x18\xc5\xe9\xb2\x05\xf9\x2e\xe0\x4c\x48\x3f\xf8\x18\x05\x17\x38\xc0\x0b\x1a\x29\x3c\xee\x2f\xf6\xcf\x36\x0b\x22\x9a\x99\x18\x21\x34\xf1\x1e\x61\x23\xf0\x45\xe1\x8b\x8a\x6f\xb1\x13\xe5\x61\x9c\xe6\x76\x9b\x56\xd6\x0b\x5c\xa3\xf7\xbf\xe0\xe1\x3d\x55\x17\x39\xa0\xe9\x04\x9e\x71\x6c\x72\x0d\xc7\x1d\xf1\x6e\x4d\x95\x71\x96\x19\x9f\x69\x3b\x39\x99\x05\x4f\x89\x53\xee\x8c\x9a\x83\xcc\x2e\xfc\xa3\xe6\xec\xe7\x1b\xff\xf4\x80\xa3\xdb\xae\x0c\x0f\x6e\xe6\x2c\x1e\x3a\x16\xc4\x1d\x32\x61\x00\xf2\xc0\x4a\x63\x2f\xaf\x95\x6a\x02\x62\x0f\x70\xde\x48\xd3\xa6\x88\x1b\x08\x2e\xfe\xbe\x02\x54\x3c\xfa\x14\x64\xd1\x1c\x8a\xd8\x3f\x86\x7b\xb8\x75\x82\x9a\xfc\x57\x7b\x68\x08\xc0\x65\xf5\xfb\xf6\xb1\xc9\xdd\xdd\xaa\x52\x59\x04\x92\x10\x2a\xc0\x37\x35\x00\x8a\x96\x99\x4b\xdf\x90\xdc\x86\xb9\x1a\x69\x7c\x79\x80\xfd\x1a\x31\x8f\xca\x74\xda\xd6\x2f\xba\xe9\x53\x5f\x91\x11\xaa\x50\xf0\x96\x3e\xd1\xa2\x78\x06\xb9\xf2\x65\x2d\xdd\xd5\x35\x51\xb2\xa7\x5a\xd5\xc0\xb5\xaf\xc1\x13\x00\x37\xb1\xa6\xc0\x07\x7b\xb4\x52\xfa\x09\x54\x21\xf0\xb4\x7f\x84\xa7\xcd\x27\x94\xa6\xc0\xdf\x8a\x2c\x0a\x66\x07\x98\x67\x1d\x1b\x1b\xc4\x55\xf8\xc8\x43\x2d\xff\xec\xee\xf0\x4c\x3d\x9c\xea\x65\x45\xb1\xbc\xa3\xa5\x18\xb5\xaf\x03\x60\x83\xdb\x39\xa3\xe6\x47\x77\xac\xaa\x97\x3a\x8e\x34\xdb\x37\xdd\xec\x59\x17\x08\xc3\x4b\xfd\xa4\x54\xea\xaf\x1f\x8e\x66\x81\xbe\x02\x90\xd8\x6e\x1c\x75\x23\x89\xb2\x10\x5d\x7c\xa4\x68\x83\x3f\x1a\x33\x99\xb3\x60\x1c\xc9\xa2\x5c\x1a\x32\x12\xf2\xa9\xda\xcc\xc9\x3a\xa2\x92\xcc\xe6\x45\x16\x85\x85\xe0\x75\xe0\x10\x0e\xe3\x01\x62\x35\xbc\x47\x3f\xcd\x62\xe4\x2e\x17\xeb\x90\x34\xd4\xa4\xaa\x6e\xb3\xf8\x96\x0c\x4a\xf8\x32\xdf\x06\x96\x2f\x8f\xcd\x29\x9a\x1d\xb3\x64\xa2\x98\xa2\xb8\xbf\x81\x6e\xc1\xdb\xa4\x74\x71\xb7\x2f\x0d\xec\x02\x88\x43\x84\xa8\x68\x5d\xe0\xed\x1f\x81\x51\x14\x5c\x73\xf5\xf6\x61\x1a\x30\x77\x88\x32\xd9\x31\x6a\x81\x4b\x57\xa0\xba\x41\xf4\x70\xb6\xb5\xaa\xe5\x2e\xba\xa6\x1e\x6b\xb7\xb3\x35\xc2\xca\xdf\xf0\x3f\xad\xe9\x86\xce\xa9\x04\xfe\xd5\xd4\x16\x32\x32\x3c\x02\xba\xe7\x93\xe0\x71\x25\x4d\xd3\xce\xc3\x2c\x6a\xdb\x8c\x01\x90\xd8\xe9\xa7\xd4\xc0\x39\xc4\x9a\x78\x30\x74\xd5\xff\xca\x72\x2f\x0a\x7b\x8f\xa9\x1b\xfe\x44\x73\x23\xde\x00\x8d\x29\x97\x8a\xfc\x16\xdb\xfd\x19\xd4\x29\x50\x10\x3f\xa7\x94\xb3\x6e\x05\x6a\x9a\xf2\x93\xc0\xf3\x01\xaf\x97\x9a\x80\xef\x11\x00\xd9\xb0\x28\x6e\x90\x41\x47\xc9\x7b\x0a\xbb\x5f\xa0\x55\x0a\xe0\xca\x28\x24\xfa\xab\x2f\x3f\x42\x7c\x65\xf4\x57\x7f\xf0\x08\xd9\x30\xc7\xd7\x57\x2d\x28\x44\x69\xf7\x54\xc9\xf2\x48\xe0\x6b\x29\x5b\x5b\xde\xa8\x10\x16\x7f\x17\x19\x12\x98\xf9\x2b\x4a\x11\x8a\xa7\xfa\xb4\x42\x89\xe3\x8d\x55\x62\x12\x48\xc0\xb0\x45\x4f\xa2\x78\x27\x9d\xa0\xea\xfe\xb9\x28\x8c\x47\xa9\x66\x98\xa5\x5c\xb2\x8a\x15\x20\xd3\xe6\x7b\x54\xd6\x9e\x74\x30\xfc\x3c\xbf\xd7\xf1\x79\x7a\xa7\x7a\x5e\x8d\x27\x44\xfd\x7c\x37\x9e\x2f\x22\xbe\x09\xf4\x65\xa4\x6e\x49\xf7\x27\xbd\x58\xdd\x63\xad\x1e\x8a\x53\x8a\xa8\xae\x42\xa0\x4b\xd5\x85\xa3\xcf\x74\x5c\x59\xd6\xc9\x55\xdf\x52\xfe\x5b\x70\xfe\xf8\xbd\xbb\xba\x9d\xce\x3d\x2b\x7c\xef\xdf\xa6\x85\xbf\xf1\x85\xd6\x66\xfc\x27\xa5\xba\x66\x61\x21\xea\x98\xa5\xa8\x60\xb3\xc3\xa0\x1f\x25\x93\xf4\xba\x8a\xcc\xc5\xd8\x54\x39\xf9\x83\x13\x5a\x33\x8b\x16\x1d\x56\xfd\xf5\x72\x34\x72\x71\x72\x36\x13\x60\x43\x04\xe1\xdd\x61\xcd\x7b\x0d\x0f\xc7\xe2\x96\xb8\x78\xdc\xd6\xbb\xda\xc4\x43\xe0\x00\x85\xee\x1f\xd3\x92\x75\x33\xbe\x9e\xcc\x72\x5d\xed\xe0\xc5\x24\x2d\xf2\xff\xb4\xe0\xaf\x2e\x51\xce\xec\x52\x08\x68\x32\xd6\xf6\x31\xdd\xec\x3d\x36\xe6\x30\x9e\xa2\x29\xc2\x85\x29\x55\xf5\xbd\x00\xdf\x23\xca\xe4\x1e\x29\xbb\xa5\xa5\x38\x93\x5e\x29\x55\x0c\xf9\x7a\x39\x4a\x34\xf9\xaa\x9a\xf3\x7c\x31\xf0\x73\x9e\x2f\xba\xae\x3b\x45\xab\x51\x7b\x58\xb8\x64\x04\x3b\xf9\x0d\x05\x68\x00\xd5\x3d\xcc\xc8\x75\xc5\xd1\xd8\x4e\x33\x9b\x50\x82\x8f\xb5\x86\xda\x08\x02\x58\x6e\xdb\x3b\x59\xf5\xea\x1a\xf1\x2f\xa7\xc9\xae\x22\x4c\xba\xae\x47\xc8\xd3\xac\x6f\xb3\x5d\x74\x6b\x30\xae\x97\x03\x65\x0e\xaf\xe2\x69\x48\xa3\xc0\x83\x49\xce\x96\x5e\x59\xf9\xdf\x91\xcd\x80\xcd\xdc\xd2\x52\x53\x1c\xea\x6e\xce\x95\x18\x26\xe7\x6f\x42\x9d\xc9\x81\xb9\xab\x30\x48\xb4\x2b\x1f\x8d\xc6\x9b\xe4\x9e\x75\xeb\x98\xf2\x54\xc7\x1c\x56\x26\x4e\x57\x18\xfd\x0e\x6f\x8d\x31\x11\x94\xb1\x38\x45\x97\x2a\x6d\x9d\x4c\x52\x15\x6e\xda\x2c\x93\xe1\x26\x06\xbe\x69\x40\x35\x6c\x17\xcf\x4b\xd4\xf4\xb7\x0e\x34\x33\xdb\x8d\xfa\xec\x54\xa5\x08\xd5\x70\x7a\x35\xe3\x39\xe2\xf4\xc1\x66\xd8\xb3\x4b\x59\x1a\xdb\x82\x03\x16\xe9\x1c\x78\x87\xfb\xfb\xa5\x02\x87\x5d\x18\x8b\x25\xe8\xda\x87\xed\x38\xca\x7b\x7f\xe3\xa0\xb0\x8f\x73\x20\xaf\x65\x62\x66\xd9\x73\xae\x75\x5e\xa4\x55\x27\x5a\x7e\xf3\xbc\x5d\x7a\xf8\xda\x65\xd5\x01\xac\xde\x4b\x94\x17\x22\x6b\x21\x38\xb6\xea\x71\x09\x40\x4d\xb1\xae\xf7\xac\xcd\x08\x01\x8e\xc2\xf0\x15\x5a\x88\x7c\xac\x78\xe8\x08\x88\x42\xaa\x31\x84\x16\xe4\x08\x80\x6c\x27\x0b\x18\xc3\x60\xc1\xcb\xa0\x73\xca\x91\x27\x7c\x81\x84\xa1\xe3\x00\xd2\x17\x9a\xfd\x34\x89\x8a\x34\x93\x24\x9e\x47\xa0\xe8\x8a\x65\x1c\xca\xdf\x5e\x95\x07\xa5\xc3\xcc\x74\x91\xbb\x03\xdb\x73\x4c\x8d\x95\x1d\x0b\x3c\xf0\xba\x93\x32\xd7\xc6\xfc\x9c\x53\x62\x52\xaa\x4c\xc1\xe3\x91\xfb\x52\x34\x73\x1d\xb0\x84\xe3\x00\xd5\x24\x3f\x57\xea\xfa\xd1\x72\x54\x84\x3d\x19\xa2\x15\x59\x4e\x5a\x9f\xa2\xd7\xe9\x8d\xfc\x30\x21\xc1\x61\xa2\xbe\x99\x50\xb0\x4e\x56\xdb\x90\x10\xd6\x7b\x08\xcd\x06\x96\x99\x64\x97\xc7\x7f\x4f\x12\xe4\xd7\x4d\xeb\x3b\x44\x50\xa3\xe5\x71\x14\x4f\xfd\xad\x96\x92\xa1\xba\xad\x69\xae\x8e\x52\xef\x94\xad\x96\x62\x3c\x58\x62\x87\x2a\x19\x5c\xc3\xc9\x4c\x73\xc0\x82\x16\x60\x15\x66\xc9\x4d\xad\xa4\xc3\xa4\xfb\x80\x52\x93\xbb\x55\x6a\xcd\xf1\xed\xb4\x04\x90\x49\x4d\x21\xd7\x87\x39\xba\x01\x67\x86\xd8\x62\xa3\xf4\xb2\x64\x6b\x81\x57\x04\x47\x39\x05\xcd\xb5\xab\xe5\x68\x1e\x36\x2f\x09\xda\x95\xd2\x4f\x71\x65\x51\x3a\x51\xdd\x9a\x68\x04\x78\x62\xf5\x6b\x58\x7f\xb0\x14\x87\x1d\xfd\x54\x62\xbb\x69\x11\x99\x42\xac\x0a\x2c\xdf\x6d\x15\x2a\x9d\x2e\x55\x7f\xee\xac\x17\xb8\x34\x79\x9e\xa6\x9a\xd9\xee\x16\x5d\xb8\xc3\xc7\x57\x77\xc7\x11\x9a\x4a\xf5\xf2\x5e\xd4\x37\x6a\x94\x84\x83\x13\x3e\x41\x6b\x95\xdf\xf8\x3f\xf9\x8c\xe2\x3a\xe2\xf0\x0f\x10\xb4\x9b\x1a\xb9\xb3\x9b\x28\x27\xf0\x62\x58\xa4\x0e\xc6\xe0\x8f\x28\x06\x42\x06\x7d\x0a\x91\x9c\x63\xc2\xf9\xf5\xe7\x7d\xcd\xd6\x41\xa6\xf7\xb4\x3c\x64\xee\xe9\x3d\x2d\xdf\x3e\xfd\x59\xd9\xf8\xd2\xd7\x5c\xbd\x15\xaf\xd7\x51\x3a\xf8\x60\xe5\xa6\x62\x0b\x38\x55\x8e\x18\x93\x79\xe9\x6b\x80\x6c\x5c\x24\x66\x29\x70\x74\xd5\x9b\x2a\x6c\xc1\x1a\x7a\x0b\x59\x8b\xa3\x9a\xaf\x7c\x2f\xf6\xea\xb6\x55\x29\x6f\x2d\xc4\xf6\x95\x88\x60\x1b\xae\xe8\x7c\x6f\x44\x0a\x86\x9e\x11\xde\xa1\x16\xc2\xeb\xd8\xa5\x28\xe6\x8f\x21\x45\x3e\xa1\xa2\xf4\x1f\x94\x4a\xb9\xe1\xdc\x18\xba\xeb\x29\x82\x6b\xda\x11\xe2\x9b\xdb\x7a\x78\xf1\x76\x5d\xb1\xac\xc8\x22\x61\xf6\xc6\x9d\x37\x5a\xde\xb6\xfc\x98\x8a\x13\xf8\xff\x40\xf9\xc8\x04\x88\x9a\x59\xf9\x4b\x5a\xc9\xc8\x88\x8f\x94\x1a\x20\xd1\x31\x13\x6a\x61\xdf\xdd\x8c\x98\x9e\xe6\xb8\xdc\xaf\x78\x66\x4e\x4b\xb3\x9c\x8b\xf7\x48\xfb\xee\x04\x23\xad\xad\xc6\xac\xd7\xbb\x57\xb3\x70\x77\x4a\x3f\x97\xd6\x1d\xda\x5c\x88\xca\x1c\x6d\x6d\xf5\x8b\x7c\xa2\x3a\xe8\xed\xa8\xdb\xb5\xd9\x14\x6d\x60\x66\xd8\x45\x6c\xe1\x58\xef\xab\x37\xec\x58\xef\x9d\xba\x37\xb3\x09\x33\x8e\xb4\x96\x4a\x23\x1d\x16\x34\x77\x30\xe1\x03\xdd\x13\x4a\xbe\xf7\x78\xa9\xb8\xeb\xfe\xa5\x2a\xe7\xf7\xd3\xac\xe8\x9a\x2e\x06\xeb\x9e\x71\x14\xa0\x1e\xfe\x31\xa5\x06\x40\xee\x28\x57\x19\x9b\xc2\x66\xbb\x35\x29\x10\xfd\x02\xaa\x56\xbb\xb8\xda\xc2\xa2\x1e\x81\xe7\x17\xde\xa9\x24\x0d\xb9\xe5\xcf\x1f\xc1\x90\x0c\xe2\xe5\xc9\x96\x1f\xa9\xdc\x49\xa6\x13\x91\xc9\xc3\x8a\x57\xa6\x41\xc5\x29\xfc\xcd\xba\x9e\x9d\x3e\x87\x5d\x83\x78\x6d\xad\x7c\x42\x2f\x79\x1b\xa7\x03\x45\xa8\x21\x41\x57\xf5\x0b\x7c\x5c\x27\x10\x96\xd9\x65\x93\x79\xa2\x12\xa9\xb9\x35\xfc\x14\xff\xd8\x9c\x23\x25\x3f\x24\xe3\x3b\xa1\x0a\x6a\x3f\xa1\x75\x89\xce\x0c\xe6\xed\x10\xa0\x1e\x55\xd3\x51\x06\xe9\xcf\x14\x3d\x1b\x14\x8f\x2e\x90\x49\xe5\xc8\x02\xae\x89\x25\xe0\x61\x77\xf8\xaf\x94\x38\xd2\xf9\xba\x41\x88\x76\x6c\x72\x80\xcd\x91\xfc\xe0\x0a\xf8\x58\x5d\x41\x66\x97\x6c\x96\xdb\x86\xaa\x16\xbf\xab\x94\xe2\xde\x0d\x7c\xcd\xa5\x18\x26\x56\x2f\xfd\x4b\x81\x86\x81\xa8\xe1\x44\x22\xc3\x1c\x05\x03\xff\x44\xa9\xb7\xff\xa4\x66\x92\x9b\x14\x1a\x1c\xc2\x13\x56\xe2\x26\xb6\x16\x9f\xb8\x1a\xbf\xac\x7e\xf4\xa5\x25\x38\xf7\xf2\xab\x70\xbf\x48\x7d\xef\x8f\x6e\x85\xcd\x11\x18\xbd\xb8\x74\x58\x90\xa6\x3b\xc0\x75\x48\x35\x4e\x28\xc9\xbb\x13\x6a\x07\xa5\x0b\x0b\x36\xc9\xa3\x25\x74\x1a\x85\x79\xc3\x8d\x1f\x5d\x38\x5f\xad\x40\x41\x62\x90\x28\xc0\x30\x36\x59\xbc\xf2\x80\x1f\x24\xdd\xdd\xf2\xdd\xd2\xc6\x6a\x65\x07\x91\xde\x5d\xc7\xbb\x46\x80\xc2\x84\x29\x8e\x8e\xeb\xb9\xbd\xa3\xc8\x5d\x04\x28\x1b\xb8\x3b\xb8\x25\xf0\x9d\xf0\x77\x05\x8a\xed\xe2\xe6\xc8\x80\x6c\xd6\x5f\x99\xf0\xd8\xbe\x3b\xaa\x0c\xf2\x5d\xec\x2b\xa0\xb5\x6e\xbb\x6c\xa7\x13\x91\xcc\x16\x49\x29\x28\x3e\x1d\x1e\x6e\xc1\x7d\xa0\x36\x26\xa2\x0f\x92\xfb\xb4\x33\x62\x3f\xab\x3e\x83\x6a\x1f\x84\xdc\xf9\x58\x99\x97\x41\x4c\x03\xd7\xcf\x7b\x42\x04\xdf\xc7\xfd\x2e\x9e\x04\x5e\xe0\x95\x31\x73\x38\xbf\xb7\x59\x6d\xf1\x28\x4d\x24\x20\x65\xbd\xe8\x40\x51\x28\xfc\x55\x3d\xb9\xef\x22\x91\xd5\xba\x89\xb4\xe3\xa5\x9f\xb6\x44\x77\x09\x57\xfa\x2d\x25\xe1\x7c\x47\xcd\x28\xe7\xd5\xce\xb1\xdb\x54\x0d\xf9\x8c\x86\x36\x7c\x57\x71\xef\xed\x24\x39\x01\x87\xcb\xdf\x27\xd4\xd8\x1f\x8d\xc0\xbe\xfc\x57\x43\x0b\x79\xb2\xb1\x7f\x96\x29\x71\x20\x8a\x2b\x28\xd7\x9b\xb0\xa5\x7c\xe2\x47\xff\xda\xc3\xa4\x23\x92\x42\x88\xcf\xd6\x55\x21\x7b\x7d\x64\x5c\xdd\x64\x51\xc3\x17\x40\x19\xe3\xc2\x27\x75\x83\xdc\x40\xac\x82\xae\x96\x07\x95\xd5\x5b\x3a\xaf\x98\x02\xdb\xb1\xed\x93\xf4\xb0\x33\x22\x1f\x97\x5a\xc1\xa0\x8e\x86\x8a\xc9\x4a\x27\x46\x38\x2b\xfd\x54\xe4\xbf\x52\xc2\xe3\x75\xe3\x07\x62\xed\xe9\x8e\x5c\xc7\x6c\x66\xc6\xe9\xa5\x3c\xac\x78\x66\x92\x4e\x4a\x35\xc2\xd9\x51\xb8\x81\x30\x80\xd3\xa5\x22\x50\xfc\x80\xe3\x3e\x6e\xaf\xd1\x37\xb2\xa6\x2f\x5d\x10\x3e\x32\xb1\xaa\x26\xa3\x0f\x05\xde\x2e\x23\x14\x67\x6d\xf6\x40\xe5\xdf\x8d\x96\x0f\x0e\xcf\xab\xd4\x2a\x5f\xb6\x96\x86\x09\xe1\x46\x04\x5b\xa5\x26\x0b\x2f\x29\xce\xf0\x3b\x41\xb3\x0e\xcd\x9a\x75\xa2\x74\xc9\xe4\xa1\x9b\x5c\x91\xf9\x33\xdf\xe9\x3b\xe7\xb6\x68\x91\x0e\xbb\xbd\x6d\x28\x80\x88\x96\x46\xc3\xcd\xd9\x63\xb4\x18\x5e\x0f\x32\xa5\xae\xf8\xb4\x7f\x76\x54\x58\x4e\x18\x81\x6a\x5a\xc7\x3d\xb3\x64\x61\x39\x90\xc7\x40\x63\x07\x95\x37\x5e\x77\x08\xde\xee\x8d\xad\x8c\x7d\xfb\x64\x50\x0f\x66\x04\xce\xf4\xa4\xd6\x85\x39\x59\x43\x6b\x39\x0d\x3d\x0b\x76\x26\x30\xbb\xc7\x94\xca\xef\xb1\x9a\x59\xfe\xb9\x66\xbe\x92\x17\xb6\xcf\x15\x0f\x44\x90\xa8\x78\x30\x25\x02\x56\x06\xd6\xfb\xf1\xb1\x28\x79\xee\xd9\x03\xcd\xbc\xe0\x47\xae\xa5\xbc\x85\xc9\x5b\x31\x0b\xa5\x99\x05\xb3\x90\x93\x2c\x76\xc8\xef\x71\x64\xcf\xf4\xc1\xe6\x42\x9a\xd9\xd0\xe4\xd0\x6d\x42\x61\xfb\xda\xe6\x31\x2b\x31\x35\xef\xaa\xcc\xd0\xe6\x6d\xba\x1c\xd0\x78\x9c\x81\x3b\xe5\x13\xa7\x09\x30\x4c\x18\xe5\xd1\x69\xa8\xc0\xf3\x9b\x81\xef\x36\x7d\xb3\xee\xad\x2e\x58\x93\x61\xbb\x22\xe1\x39\xaf\xca\x89\x5f\xa7\x35\xc4\x91\x8f\xe2\x8f\x24\xb3\x96\x4d\x78\x8c\xcd\x0f\x82\x51\x94\xdf\xcc\x0c\x77\x03\x4f\x6b\xae\x03\x43\x28\x07\x33\xe5\xeb\x7a\x7f\x51\xaa\xbb\xc7\x7b\xe1\x64\xb0\xf4\x7e\xfb\xcf\xd5\x54\xf6\x5f\xe8\xc9\xf2\x25\x9b\x99\xae\x7d\x40\x69\x0d\xde\x25\x0f\x8b\x28\xfd\x9e\x22\x20\xb9\x4f\x04\x5b\x9a\x1f\x8b\xe2\xc6\x3f\xe4\xac\x11\x56\x62\xdb\xaa\x62\xe6\xe4\xc4\x0d\xb9\xf8\xf1\xc0\x6b\x51\xdf\x23\xb3\x8f\xf0\x77\xbc\xf9\x3c\x3b\xdb\xcc\x07\x26\x73\xd4\x64\x22\x71\xa2\x8c\xfe\x5f\x79\x52\xb6\x95\x24\x1d\x14\x51\x28\xed\x44\x98\x86\xad\xb8\x26\x56\x7d\x29\x55\x17\xe2\xae\x42\x23\x70\x31\x0b\x3b\x03\xd9\xdf\xc7\xb4\x94\xf8\xd8\x21\xf7\xfa\x51\x3f\x0a\x79\xdb\xb1\xf3\x45\xfa\x22\x9e\xb8\xc6\xa5\x16\x36\xe9\x30\xc6\x9d\x9f\x86\xd2\x04\x1e\x87\x76\x54\x9b\x8e\xd1\x11\xfc\x43\x78\x3c\xcc\xd5\xc5\x27\x6a\x9a\x3c\x8d\x9f\x6e\x28\x15\xb1\x0b\xc1\x28\x6f\xf8\xf8\x88\x55\x73\xb9\x17\xc5\x20\x17\x42\x4b\x6e\x1b\xca\x31\xb2\x6f\x1a\x4e\xba\xe6\x9e\x52\xc7\x0d\x7b\x26\xe9\xd8\x38\x62\x66\xfd\x67\x9c\x94\xa3\x2f\x1b\x5c\xac\xa9\xd6\x6a\xd5\xda\x11\x8f\xd2\x50\x9a\x12\xda\x05\xc7\x26\xdf\x8e\x3b\xc0\x16\x7a\x83\xae\x07\xf0\xa9\xc3\x70\xf1\xb0\x36\xdf\xa0\x74\x19\xfb\xe9\x9a\x96\x5d\xbb\xa0\x19\x8c\xb1\x0f\x30\x1c\x70\xab\x56\x2e\x3a\x2f\xec\x92\x75\x28\x53\x19\x18\x56\xbe\xf9\xec\x18\xaf\x07\x15\x72\x4d\x56\x24\x36\xcb\x7b\xd1\x80\x57\x1c\x2e\x0b\x94\x19\x82\xd7\xa2\xaf\x11\xbe\xee\xf1\x0e\xc8\x5c\xb3\x9b\xa5\xcb\x3c\x53\xe3\xc2\x41\x17\x64\x5d\x18\xbb\xe0\x83\xcf\x36\x43\x9b\x2d\x45\xa1\x89\x95\x70\x0e\x46\xeb\xc5\x01\x3a\x25\x8f\x1e\xa1\x7e\x50\xce\xc2\xae\xc4\x28\x23\xcc\x38\xb7\x9c\x65\x76\x41\x97\x12\x4c\xe7\x01\xdc\x92\x90\x9f\xf9\x61\x8f\xed\x58\x2b\x48\x92\x2f\x6b\xb9\x80\xd3\x81\x42\x74\x9e\x2c\x7d\x55\x98\xc9\x34\x1c\x18\xc4\xab\x12\xfe\x50\x31\x98\xfc\x10\x30\x1f\xf6\x24\x63\xdb\x62\x66\x86\x29\x36\x23\x91\xc7\xc6\xde\x44\xd5\x9e\x8f\x95\x7d\x64\x4a\xa5\x0e\xa9\x80\x8b\x9e\xf5\xc8\xd0\x99\x82\xab\x06\xbe\x86\x7a\x4c\xb5\x6e\xc2\x38\x5a\x58\x68\xf8\xb6\xce\x05\x3d\x55\x70\x61\x44\xa0\x61\x79\xca\xc3\xa4\x8f\x97\x1a\x87\xe0\x91\xf5\x7f\x5c\x2a\xf5\x28\x56\x74\x84\x7b\x3a\xeb\x40\x8d\xd9\x30\xc9\xb7\x35\x1c\xef\x34\xa3\x8f\x50\x0f\x5d\xc7\xe7\x81\xa2\xdf\xf0\x86\xf7\x97\xef\x97\x7e\x56\x36\xfa\x0c\xec\x04\x92\xbb\xa9\x3a\xfe\xf4\x2f\x36\xd3\x7e\x12\x35\x1a\x9a\xfc\xb9\xba\x2f\x3e\x51\x9c\x26\x85\xcd\xb2\xa8\x48\xb3\x15\x24\xc2\x88\x93\x7e\xbf\xf4\xf1\xd3\xef\xbb\xc5\xb6\x68\x57\xdc\x90\x02\x93\x98\xd0\xaa\x11\x42\x13\xf9\xbb\x7c\x60\xcd\xa2\xcd\xb6\x55\x8f\x45\xca\xaa\x58\x6b\x9a\xc3\x17\x1e\x93\xb7\xbb\x0b\xaf\x1c\xc9\xc7\x27\xb8\x60\x3c\xd6\x5a\x8e\xf8\x2f\x36\x33\xcb\x72\x54\x70\x60\xe7\x54\x49\x72\x7c\xac\x79\x76\x56\xab\x7a\xcc\x7a\x76\xd4\xea\xf7\x85\x1d\xd5\xb3\xf3\x2d\xda\x95\xb0\x47\x04\xb1\xfb\x67\x1d\x36\x6e\x44\x62\x7e\x73\x6c\x50\x05\x42\x03\x9e\x54\x73\x52\xa3\xda\x68\xcb\xf3\xe9\x9b\xcc\xb7\x11\x64\x4e\x99\xaa\xa3\x92\x28\x3d\x36\x0a\xa7\x9e\x3e\xd8\x9c\x9f\xdb\x39\xba\x5d\xc9\xd0\x62\x23\x1e\xd5\xf3\x4d\x4a\x22\xea\xa2\x66\x5d\xfe\x93\x40\xe1\xd5\xee\xa3\x42\xec\xe8\xcf\xaa\xe7\x81\x58\xe4\xda\x08\x12\x4d\xf1\x52\xa5\x29\x4b\x71\xbf\xe0\x66\x61\xe8\xdb\x65\x00\x66\xbc\xc7\x33\xdb\x8c\xfa\x83\x58\x0b\x37\x60\xa1\xbc\xa3\x58\x70\xde\x51\x41\x92\x35\x59\xc2\x52\x8b\x88\x69\x18\xbc\x07\xbf\xcb\xf9\x89\x33\x2a\xae\xaa\xf4\x96\xca\x0c\xde\x81\x19\xe2\x8f\xd7\x01\xbd\x97\x4d\xbc\xd8\xd0\xa4\x8f\xa5\xa2\x14\x39\x5a\x33\xc6\x33\xd7\x4c\x80\x9e\x47\xe5\x95\xd5\x97\x4b\xcd\x1e\xc3\x6e\x1b\x28\x88\x75\x17\x48\x74\x6c\xbb\x48\xb1\x3e\x99\x55\x91\x6e\x5c\x18\x16\x37\xaf\x68\x62\x47\xe9\xd3\x8a\x73\x21\xd9\x7b\x7a\xea\xe0\xbd\x3a\xd7\x1b\xc5\x31\x8b\x45\x35\x94\xfe\x22\x76\x02\x1f\xd7\x8e\x54\x56\x01\xbf\x12\xc0\x57\x2c\xdc\x50\x82\x60\x0b\x14\x48\xbe\x94\x98\xbe\xed\x90\xfa\x27\xda\x58\x2c\x13\xcc\xc8\xa6\xc0\x73\x87\xad\xff\x42\xcb\x5b\xd3\x47\x56\x47\x35\xec\x5c\xef\x0e\x65\x2b\x54\x70\xc7\xe3\x97\xa7\x9a\x9d\x61\x11\x49\x1d\x4d\x97\x46\xa4\xe1\xb2\x5b\x15\x76\x96\xed\x1e\x42\x44\x30\x59\x58\xe9\x90\xfb\xb7\x1e\xa7\xce\x29\x0a\x1b\x67\x61\x40\x19\xa1\x48\x30\x1a\x9e\x23\x0b\x14\x7d\x01\x17\x32\x04\xc7\x48\xaf\x5c\x8a\x08\x8d\xaf\x4c\xbb\x02\x00\xdd\x2f\x5a\xf7\x4c\x2f\xe3\xa4\xec\x9f\x77\x2a\x87\x1b\xd4\x16\x41\x16\xf9\xaf\x4a\x4f\x95\x06\x2a\x15\xc7\x27\xee\xe6\x30\x18\x1e\x8b\xd8\xf5\xca\xd8\x5a\x24\x98\x5a\x67\x18\xba\x30\x0b\xa9\x27\x56\x15\x1f\x97\x5a\x71\x6c\x09\xf5\xa1\x86\xfa\xf7\x40\xe5\xac\x17\xea\x86\x42\x4d\x18\x66\x43\xe9\x5c\x3b\xc0\x88\x03\xdd\x9f\x52\x65\xbe\x2a\x2c\xa2\x41\x43\xe2\x32\x9b\x7b\xf6\x80\x58\x71\x32\x47\xae\x73\xee\xf8\x2d\xcf\xc3\xfb\x8b\xa9\xff\x9c\x77\x41\x55\x76\xd4\x89\xf2\x22\xcd\x0a\xba\xb9\xca\x36\x21\xc9\x5e\x87\x5d\xe4\x93\x1a\x69\x82\x67\xaa\x90\x81\x47\x1d\xeb\xc4\xad\x6a\x87\xcb\x43\x1b\x39\xfd\x57\x35\x7f\x20\x4a\xcc\xb7\xd5\x38\xce\x20\x5d\x64\xd9\x06\x2c\xa3\xa3\x8a\x9c\xed\xa8\x4b\x4c\x48\xcc\x75\xc5\x64\x9d\x86\x9f\x43\xb8\x34\xc2\x99\xaf\xfa\xd3\x79\xcf\xc6\x31\x09\xf9\x8a\xb4\xd4\x8d\xc0\x93\x9e\x7c\x58\xfa\x68\xe6\x92\x7a\xda\x55\xa4\x67\xc2\xc2\x66\xd1\xab\x3c\x3d\x8d\xec\x08\x78\x7e\x3e\xae\xab\x87\x87\x71\x1a\x2e\x36\xb4\x57\x68\x38\x41\x41\xcf\xcd\x47\xe9\x88\x91\x2e\x11\xca\x12\x3b\x5a\x8a\x27\xe4\xfb\x6a\x72\xfd\x8c\x86\xf0\x6c\x59\x75\xea\x3e\x36\x8e\x87\x71\x1a\x09\xc7\x81\x63\x1c\xf3\xec\x63\xe5\xe6\x30\x7b\x66\xa6\x39\xac\x72\xa7\xe5\x2c\xa2\x77\xdf\xd0\xd4\x77\xee\xa9\x5f\x0c\x1e\x73\xb0\x92\xa4\x9b\x17\x46\xcd\x0c\xa0\xd2\x05\x79\x38\x88\xe4\x7e\xb6\xe5\x63\x82\x6d\xab\x7e\x3e\xbc\x93\x3d\x8d\xa2\x25\xba\x7f\xa7\x95\xfa\x2b\xd8\xc7\xa4\x7b\xa6\x5b\x69\x10\xa5\xe5\x4f\xd0\x7b\xe2\x4f\x8c\x6c\x35\x2a\xd6\x54\x4b\xd7\x47\xc1\x47\x03\x05\xd2\x3d\xea\x6a\x95\x9d\x28\x59\x8c\x6c\x5e\x60\x95\x0b\x8c\xc4\x37\xf2\x2e\x28\x68\xc8\xc0\x66\x8c\xea\xd0\x00\x53\xd6\x36\xe0\x13\x7a\x9b\xb0\x2b\x47\xf5\xb8\x88\x6e\xb6\x10\x41\x01\xe3\x4b\xa4\xad\x48\x3b\x86\x4f\x02\x35\xb5\x07\xbd\x02\x3e\x6e\xf9\x00\x60\xd0\xb3\xb1\x49\x60\x17\x50\xf2\xff\x39\x30\x82\x7c\x32\x22\x6d\xf0\xa5\x5f\x9b\xdf\xa3\x60\x4f\x1c\xe4\xc9\x94\x05\xdd\xb9\xcc\x58\xaa\x31\xdc\x49\x40\xc2\x11\xd4\xfc\x3f\x70\xfe\xa8\x96\xdd\x2f\xd5\xab\x66\x6e\x3a\x81\x53\xf8\xfe\xc7\x21\xd5\x03\xbf\x5e\xfa\xe9\xa0\x6b\x34\x5e\x83\xc8\xe7\x23\xf6\xdc\xa8\xb6\xac\x2a\xf5\x9a\x1f\xab\xa4\xf8\x76\x40\x6c\x68\x28\x8f\x5f\x09\x94\xa4\xed\x51\x15\x3a\x33\x4b\x4e\xbc\xb2\xcd\xd7\x83\x51\x1f\x1d\x21\xd6\x1a\x21\xdb\x03\x6c\x0f\xf5\x11\x35\x18\xf7\x02\xa7\xe9\xf7\x54\xd7\xa9\x6f\x92\x95\x87\xbd\x76\xf2\xfb\x88\x6d\x10\xe8\x30\xe7\x38\x2e\xf0\x5a\xa0\x66\x1a\x99\x5c\x43\xa8\x9f\x3d\x5c\xe0\x2d\xad\xf8\xb2\x0d\xc0\x55\x41\x44\xfb\xc2\xd4\x36\xbc\x03\xe4\xe2\x0f\xb7\x7c\x2c\xfb\x43\x7e\x70\xe8\xb3\xbc\xa3\xc4\xbb\xbf\x8f\x4e\x24\xf6\x0b\x23\x2f\x10\x3e\x9c\x56\x58\x08\xd2\x33\xa0\xb4\x07\x7d\x3c\x10\xe7\x21\xa9\xbb\x46\x97\x89\xeb\x87\x4c\x30\x1f\xb7\x14\x52\xf8\xed\x52\x31\xbe\x9e\x54\x1d\xee\xc2\x24\x1e\x26\x2e\x59\xa2\xff\xf2\x8b\xea\x22\x08\x8c\x4c\xd3\x3c\x8e\xc7\x58\x61\x6e\xab\x8b\x10\x7a\x1d\x95\x05\xa2\x7f\x2f\x5f\xf6\xd8\x08\x8c\xd3\x0c\x33\x83\xdd\x39\xcd\xb6\x7c\x23\x18\xad\x14\xa8\x79\x9c\x8d\x52\x15\x52\x0f\x8f\xc0\x3f\x20\x44\xe4\x70\xa7\xb3\xb3\x8e\x61\x6a\xac\xca\xfb\xfc\xf4\xc1\x66\x51\x65\xfd\x45\x43\x8d\x90\x9d\x08\x14\x5e\xf0\xc4\x58\x70\x59\xe5\x26\x61\x2a\x8d\x51\x1e\x94\x53\x43\x96\xa7\x1c\x0e\x32\x5d\xb2\x59\x68\x06\x26\x8c\x8a\x15\x14\xaf\x15\xfa\xd6\x71\xef\x94\xbe\x5a\xb0\x11\x3c\xae\xe8\xea\x97\x6c\x56\x10\x13\xc5\x94\x42\x3a\x1e\x0e\x14\xe0\xff\x2d\xa5\x87\x76\x71\x5c\x1d\x02\x31\xe1\x99\x91\x7a\x51\x2a\x5a\x94\xa8\xf1\x70\x19\x9c\x4f\x94\x67\xed\x59\x13\x17\x3d\x8c\xae\xe9\x21\x1b\x3e\x1e\x03\xeb\xcd\xcc\x1c\x68\xda\x44\x23\xcb\x10\x94\x6d\x28\x4c\xc1\x46\x0d\x27\xf5\x33\xcd\x5e\x9a\x17\x11\x8f\x5d\x22\x41\xc7\xa0\x0b\x1f\xbb\x36\x43\x94\xd8\x01\x37\x77\x04\x98\xaa\x4a\xf3\xe7\x94\xf9\xb9\xac\xa6\xc7\xfb\x26\xec\x45\x49\x94\xf3\xe0\x1e\x76\xd6\xcf\x95\x8b\xfa\xb9\xc6\x4c\x2f\x2e\x36\x46\x4b\xf7\x8a\x3a\xf7\xbc\xa2\xe2\xc8\xfb\x69\x5a\xf4\xe2\x15\xa2\x3e\x91\xf4\x4b\x5d\xda\xd5\xc0\x0f\x91\xd7\x76\xd6\x93\x28\xec\x61\x97\xb9\xca\xb7\x93\x14\x3b\x3f\xe6\xd9\xab\x04\x30\x1f\x76\xbb\x36\xe7\xe1\xe3\xea\x05\x3a\xd9\xb8\xea\x05\xf2\xc9\x18\x16\xe1\xb9\xbd\x73\x4d\x93\xe7\xb6\x4f\xbc\x17\x8e\xd7\x0d\x19\x80\x30\x74\x3c\xe8\x91\x41\xb6\x98\x50\x38\x74\xd0\xf7\x30\x03\x59\xe0\x0d\xce\x99\xb1\xce\xc5\xfe\xd9\x66\x5e\x98\x2e\x2b\xd7\x6b\x86\x3f\x4c\x0f\xbd\x49\xdf\x84\x84\xe5\x93\x4f\x25\xc1\x6b\x9b\x5c\x72\x79\xd1\x5b\x52\x7b\xfe\xfc\x58\x62\xfc\xe2\x8b\x20\x0c\xb6\xb9\x0b\x78\x64\x1e\xb0\xe1\x68\x4d\x2f\x95\x8f\x6f\x9e\xa3\x8b\xa3\xa4\xbb\xbd\x7a\xe0\xb0\xcd\xe7\x61\x0e\x99\x90\x5b\x93\xd0\x6e\x23\xc8\x08\xde\x69\x83\x21\x2a\x70\xbd\xc0\x66\x61\xbb\x1d\x2d\x7d\x32\xf7\x46\xa0\xdb\x84\x69\x6e\x13\x04\x70\xf2\x4b\xd5\x35\xf2\xb1\xaa\x3c\xda\xfe\x28\xbd\xc1\x45\x45\xff\x7f\x31\xf8\x9c\x8a\x8e\x0a\x9b\x21\x89\x36\x71\xbc\x82\x18\x49\x20\x1f\xe4\x3a\x04\xd9\x51\xa3\x3b\x6c\x5f\x09\x23\x0f\xc9\x46\x53\xf4\xf6\x08\x41\x93\x4f\x24\x5f\xf7\x0a\xce\x26\x0f\xe5\xe2\x60\x12\x77\xb4\x7c\x7f\x64\xc7\xea\xa3\x1a\x59\x4a\x03\xaf\xa0\x3d\xc7\x96\xc7\x98\x1f\x42\xa0\x2b\x08\x06\x79\x98\xad\x7c\x7c\xb4\x30\xb3\x7f\xb6\xb2\x06\x9f\xf5\x20\xce\x7f\x1f\x34\x9e\x97\xe9\x83\xdb\xa5\xa7\x94\xbc\x0b\xac\x17\xf2\x8b\x13\x8a\x31\xe0\xaf\x02\x25\x91\xfa\x1e\xde\xa9\x1b\xf5\x70\x32\xb5\x8c\xfc\x41\xc1\x70\x07\x81\xf5\x00\x0e\x3c\xa1\x58\xd9\x4f\xa3\xec\xca\x3f\x0e\x7f\x80\x10\xe3\xb7\x11\x65\xa1\xf2\x70\x26\x50\xd0\x9a\x9b\x08\x3e\xe0\xae\x61\x61\x00\xaa\xf8\x4e\xa9\x3a\xb1\xdf\xa1\x32\xbc\xf8\x74\x34\x4d\xf9\x56\x10\x94\xb0\xe0\x24\x35\x8d\x44\xf5\x92\x72\x72\x86\x07\xa8\x21\x9f\x97\x86\x9d\x28\x64\x69\x3f\xfa\xac\x44\xf8\xf4\x1c\x24\xf4\xff\x34\xa6\xc6\xde\xb0\x6f\x12\xc8\xff\x08\x50\xc8\x3f\xa5\x8b\xba\xf7\xb3\x11\x48\xbd\xb5\x43\xdc\x8e\xf3\x73\xde\x25\x78\xf7\xa0\x2a\xc1\x79\x68\x12\x03\x2b\x85\x8a\xd9\xef\x95\xaa\x7c\xf6\x7b\xc1\x66\x6d\xb2\x83\xcf\x36\xbb\x09\x1a\xef\xa8\x10\xbc\xa1\xcb\x05\x6f\xd4\x74\x02\x5e\x68\xe6\x66\x69\x89\x34\x7c\x04\xf3\xf6\x36\x5d\xbe\x03\x96\x54\xcf\x03\x1b\x0d\xc9\x09\x70\x62\x1b\x6a\x76\x77\x18\xc6\xcc\xb8\x89\xd8\x1d\xe2\x1c\x7c\xdc\xf2\x93\xa3\xb9\x35\xed\x2c\x4d\x17\x1b\x9e\xc8\x86\x5b\xce\x52\x21\xd2\x25\x94\xb6\x7d\xd0\x0f\x47\x3e\xd8\xaa\xde\xb6\xf3\x6a\x5f\xfa\x9a\x47\x76\x4e\x1f\xe4\x60\x72\x5d\x69\xd7\xed\x58\x9d\x78\x7e\x7e\xaf\x47\xde\x56\x37\x21\x03\x9f\x1e\x90\xf1\x3b\x58\x69\xc2\x48\xaa\x8a\x91\x93\xab\x8d\xaf\x4c\x7b\x49\x55\x97\xcd\x5e\x77\x52\x33\x2f\xd9\x85\x05\x9b\xe5\x4c\x87\x88\x3a\xdb\x51\x7c\x05\x9f\x8c\xd9\xf6\xe7\xf6\x56\xff\x15\x78\x97\x14\x29\x75\xc5\x72\x6c\x90\x5d\xd6\x58\x61\x63\xbb\x14\x09\xfb\xe2\xc6\x06\xd9\xd6\x8d\x0d\x4f\x63\x1f\x86\x00\x79\x55\xf7\x83\x70\xfa\x64\xa0\x62\xeb\x93\x5a\x96\xd7\x2e\x98\x38\x86\x8c\x92\xe3\xb9\xde\xef\x79\xae\x6b\x4a\x73\xb9\x59\x80\x52\x09\x1c\x12\x34\x18\x30\x57\xc2\xa4\xd0\x32\xba\x5e\xd3\x30\x1f\x98\xcc\x24\x69\xd4\x51\x96\xef\x88\x42\x74\x1d\x51\x71\xc3\xb3\xbf\x76\x80\xe3\x06\xd4\xfd\x6e\x94\xaa\xc0\x79\x63\xcc\x29\x3f\x45\x7e\xc8\x44\x89\x2b\x3f\x61\xa1\x1e\x57\xaa\x06\xc7\xcb\x07\x9c\x1f\x79\xea\x17\xe9\xf9\x70\xec\x4e\x10\x74\xc4\xdc\x6f\x50\xed\x8d\xd9\x03\x55\x1e\xf4\xcf\x02\x5a\x46\x8e\x4e\xcc\x11\x99\xfd\x28\x68\x7c\xf5\xcb\x1e\x2f\xfe\xbc\x88\x43\x5d\xa1\x8a\x1c\x8c\xe5\xeb\xb4\x4e\x11\xbc\xff\x1c\xf9\x08\x12\xaa\x3f\x2d\x47\x32\x39\xd8\x2e\x2e\xe2\x06\x1e\xa6\xf8\x9a\x06\x73\xfc\x15\x2d\x6e\x7c\xd9\x69\xf0\x82\xe9\xca\x35\x02\x82\xf7\x4a\x6f\x52\xde\x42\x46\x2a\xb4\x2c\xb4\x03\x78\xd5\x07\x6a\x26\xf8\xa1\xeb\x1a\xfa\xfa\x6d\x6c\x47\x11\x2f\x6f\x38\xb1\xe6\xc3\xa5\xca\x7c\xdf\x26\xd3\x8b\x37\xfe\x0d\x64\xce\x48\xda\x8e\x82\x45\x8b\x53\x30\x58\x7b\x20\x9c\xaf\xc2\xda\xfb\xa7\x3a\x7d\x90\xeb\x17\xd7\xca\xad\x5f\x14\x54\x2a\x92\x77\x58\xf1\xcb\x63\x91\x31\x85\x60\x59\x3f\x2f\xb2\x94\x07\x34\x58\x50\xa3\x54\x2d\xff\x9f\xd6\x45\x54\xd4\x78\xa6\x8e\x1c\x1a\x3c\x0f\xb4\x18\xc6\xd5\x70\x3c\x91\xd7\x69\x96\x5a\x26\xd8\x75\x99\x82\xe8\x3a\x77\x7a\x50\xc8\x7d\x6d\x12\xef\xc2\x45\xc0\x30\x7d\x5f\x95\x62\x3e\x08\x14\xa2\x81\x93\x03\x29\xa2\x6a\x5e\x21\x00\x19\x78\x44\x4b\x77\x93\xcf\x38\xcc\x5f\xd8\x33\x71\x6c\x93\xae\x8b\x38\xe0\x0d\x2f\xab\x8a\x2d\xb0\x41\x30\xd9\xdb\x56\xeb\x36\x70\x91\x0e\x68\x03\x3b\xd2\x1c\x85\xc7\xa2\xfb\xc1\xaf\x7e\x6f\x14\x96\x96\x3c\xdd\xa8\x36\x86\x32\x28\x73\xce\xa0\x28\xb1\xfc\xb4\x4f\xba\x41\x44\xb7\xf5\x0c\xfb\xcb\x5b\x8a\x49\x65\xb2\xe5\xc7\x20\x3e\xa4\x55\xc5\xc7\xa5\x1a\xd0\x9d\x62\xf6\x7b\x96\xab\x1c\xf3\x55\x82\xca\x60\x23\x87\x6d\x71\x46\x17\x8f\xcf\xd4\x09\x52\xa5\x0b\x0b\x79\x2f\xcd\x80\x3b\x60\xa1\x70\x72\x70\x00\xfa\xaf\x29\x21\xa4\xe3\x0a\x36\x4b\xe5\x29\xcb\xb9\x29\x4f\x98\x2b\x0c\x9c\x96\xcd\x33\x49\xe7\xef\xfa\x61\xda\xdf\x7e\x84\x5c\x95\x13\xd3\xa9\x76\x07\x6a\xcd\xdf\x2d\x1b\x4f\x3e\xc9\x3f\x75\x18\x4b\x1d\x6d\x3b\x28\x4b\x60\x3d\x6c\x27\xc7\x23\xfd\x51\x9d\x43\x3d\xc0\x3a\xab\x4e\x8b\xbf\xda\x6a\x70\xc6\x17\x03\x1f\x7d\x5d\x0d\x54\x59\x8e\x79\xb7\xf0\x75\x3c\x99\xc8\x03\x78\xc4\x72\x8e\xfd\xbc\x07\xce\x52\xec\x25\x3d\x51\xd4\xaa\x2f\xa3\xa5\x87\xd4\xe3\xe1\x55\xc5\x94\xb1\xc5\xd7\x36\xff\xfb\xa9\x55\x5f\x5c\xbf\x41\x96\x94\x3b\x38\xd8\x1c\x88\xbe\x59\x86\x09\x17\xfc\x16\x3d\x75\x34\x4e\x3e\x43\x70\x4c\x79\x12\x64\x19\x64\xe2\xc4\x33\xd0\x5c\x52\xe2\xa0\xff\xbb\x82\x37\xf6\x86\x49\xd7\x64\x2b\xdb\xab\xbf\x74\x9a\x50\xde\x8d\x5f\x26\xab\x29\x1d\x76\xdd\xef\x3d\x41\x6b\x60\x7c\x00\x11\x88\x74\x5c\xd9\x3d\xd7\x69\xaa\x76\x20\x17\x90\x85\x81\xdd\x57\x47\xc7\x2b\xdc\x55\x0e\xbf\x30\x4c\x50\xa3\x77\x82\x6b\x5e\x7c\xad\x8e\x57\xa5\x6d\xe2\x22\xea\xa7\x99\x55\xa4\xd8\xdf\xd7\x2a\xfb\xdf\x1f\x1b\x4b\x3d\xf8\x6c\x73\xd9\x44\x18\x7b\x74\xe2\x58\xaa\x8e\x24\x8c\x5b\x79\x18\x61\xea\x2b\xa4\x5c\xc7\x57\xc9\x2e\x29\x18\xe2\x25\x3d\xda\x66\xc3\xcc\x9a\x9c\x0d\x8e\xd0\x9e\x30\x81\xa4\x94\x73\x7c\xd8\x73\xb1\xdc\x2c\x98\x3d\xcb\xec\x05\xc3\xb0\x18\x66\xce\x39\xc3\x31\x5d\x51\xe5\x8f\x2b\x4a\xb2\xbf\x63\xc3\xa8\x63\x3b\xf1\xca\xd4\x48\x8d\xda\xcf\x41\x1d\xd7\xa3\x3e\x87\x4a\x8f\x9d\xf8\x71\x39\x52\xe2\x56\x59\xaa\x19\x14\xd1\x92\xa1\x5c\xcd\x17\x18\xb8\xce\xac\x95\xc2\x44\xbc\xb2\x86\x5b\xb5\x17\xe5\xb9\x80\x59\x5c\x96\xea\x6a\x54\xdf\x47\x2a\x26\x48\x14\x1d\x64\x15\x85\xcd\x68\x60\x0e\x17\xfc\x00\xc1\x4c\xa5\x66\xaf\x00\x06\xc7\x91\xfb\xc0\x08\xbe\x47\xb7\x85\xea\xd6\x06\x9e\x37\x02\x60\xcc\xe2\xc0\x7f\x3e\xb4\xea\xeb\x01\x67\x60\x61\x04\xed\x4d\x97\x29\xd4\xfb\x64\x08\x50\x42\x3d\xae\x44\x22\xc2\x34\x4b\xe8\x89\xcc\x4b\x40\x01\x50\x0a\x62\xbb\x3f\x2b\xd5\x28\xdd\x9a\x42\xea\xf5\x4c\xdb\x66\x31\xcf\x1c\x88\x46\xb7\x12\xc9\xb8\x58\x8b\xfd\x6c\xd3\x38\xe5\xa4\xf2\xfe\x3c\x6b\xc3\xa3\x55\x6a\x12\x01\x82\x24\x78\x8b\x77\x15\xf4\x2d\x19\x16\x08\x3e\x9d\xa2\xf9\xaf\x3f\xef\xf4\xc4\x1a\x33\x33\x1b\xab\x8e\xf9\x82\xd0\x11\x8c\x8c\xc7\x2e\xd8\x82\x6e\x2f\x8c\x26\xe4\x1f\xa5\xc3\xbb\x47\xe7\x7f\x5d\x47\x16\xec\x48\x3d\x3c\xc1\x87\xeb\xa9\xb5\x87\xd5\x5b\x5d\x30\xc5\x84\x0e\x80\x1b\x8e\x46\xf6\xae\xa6\x68\xb8\xe4\xea\xc1\xed\x28\xed\xdb\x0e\xc0\x53\x33\x33\x42\x48\x11\x78\x24\xdc\xb9\x6a\xf3\xf9\x7a\xa5\x49\x0a\xd3\xb5\x79\xc3\x8b\x2f\x7f\x40\xb1\xa7\x30\x83\x8e\xd7\x0c\x9b\xa6\xdb\xcd\x6c\x17\x3a\xbb\x7e\xda\xff\x5b\x74\x17\x7c\xec\x2e\xc7\xeb\xa4\x4c\x4c\x6c\xd6\x49\x71\x35\x10\x45\x0b\xa2\xe0\x4d\xf9\xc0\x86\x95\x21\xd9\x5e\x2d\x6c\x3c\x9d\x23\xa5\x92\x97\xda\xaa\x3a\x35\xbb\x55\x79\x83\xea\x78\x1b\x3c\x6a\xee\xa4\x42\x75\x1f\xfe\x41\xc5\x76\xba\xfc\xf0\xc8\xba\xa2\x0f\xa1\x7d\xbd\x1e\x28\x25\xd6\xbb\xf0\x16\x70\x62\xf7\xb0\x6e\xe1\xc4\x7e\x46\x76\x1f\x7f\x75\x12\x3e\x0c\x83\x2b\xb8\x49\x29\xf2\xf9\x36\xf7\x04\x11\x5d\x08\x9f\x9f\x92\x2c\xb8\xa4\x9b\xef\xd0\xb9\xe1\x89\x3e\x7a\x7d\x28\x5f\x5c\x25\x4f\x85\xd8\x72\x72\x4c\x2b\x86\x60\x41\x0b\xc3\x62\x98\x59\x05\xea\x6a\xd0\x26\x96\x6a\xbe\x2c\xb0\xd0\x24\xa1\xcd\xd2\x21\xab\xca\x30\x4d\x0e\x5d\xb4\x50\xe6\x28\x76\xd1\x61\x36\x90\x0d\x29\xfc\x73\xf4\xe0\xa4\x53\xeb\x45\x08\x87\xdd\x5e\x81\xb9\x26\x84\x57\x1b\x4a\x0c\x0d\x44\x9d\x68\x38\x5c\x85\x05\xa1\x80\xe1\xf3\x7b\x68\xbb\xe0\x2d\xec\x5a\xad\x21\xb6\x89\x12\xf2\x13\x16\x85\x2a\xa5\x5f\xfe\x02\xdb\x8f\x8b\x23\x33\xb6\x35\xf9\x5b\xc7\x0e\x32\x9b\xe7\x2e\xb4\xc5\xc7\x4e\xd2\x0d\x23\xc3\x07\xd9\x9a\xc0\xdb\xe5\x8e\xf2\x5e\xba\x2c\xf4\xae\x14\x52\xbc\xfc\x44\x4b\x0d\x43\xb1\x60\xaf\x34\xd1\xe8\x8a\xb0\xd0\x18\x21\x24\xd7\xda\x50\x7c\xff\x7a\x30\xa7\x97\xbe\x32\xa9\xf4\xcb\x54\x2f\xe8\x04\x56\x07\x9c\xe6\x31\x4d\xdf\x7b\x4c\x8d\xa3\x14\x3d\xdb\xe7\xc7\x22\xa3\x71\x9b\x76\x8c\x04\x52\xa3\x8a\x79\x0b\x69\xf6\xb9\x2a\x80\x72\x41\x8a\xa3\x8d\xba\x43\x23\xb0\x8a\x6d\x7a\xda\x83\x3d\xab\x6f\x83\x85\x7b\x1f\x5b\x02\xd1\xdb\x7d\x4a\x07\xb1\x71\x7e\x42\x8f\x11\x63\x4b\xbb\x5a\x4a\x67\x32\x50\xd2\xb5\xdf\x0e\x34\x91\xcc\xb7\xb1\x71\x98\x28\x94\xac\xae\x70\xb8\x51\xf0\x2a\x0a\x26\x14\x88\xe2\x23\xff\x9c\x32\x20\xa7\xaf\xee\xc1\x7b\xe7\x74\x1b\xf8\x2d\xf8\x2c\x64\xa3\x5f\x2f\x3d\x4e\xe7\xd5\x2b\x0a\x9e\x4b\x5d\xbf\x17\x1c\xf8\xba\x31\x7d\x70\x63\x15\x2f\x8f\xa9\x76\x5a\xde\x64\x0c\xe2\x74\xa2\xda\x82\x42\x4c\x49\x0f\x81\x57\x77\xe0\x07\x17\x4f\x2a\x64\x57\x1c\xf5\xa3\x22\x27\x64\x97\x98\xeb\x86\xa6\x03\xff\xd2\xd7\x1c\x4c\xa2\xba\x26\xa1\x06\x57\xbd\x66\x9e\x48\xe7\x93\x5a\x45\xc2\x65\x6b\x16\x6d\x42\xb1\x07\x9c\x1f\xf3\x84\xe3\xd9\xdf\xc6\x52\x12\x82\xc9\xf1\x28\xb2\xd9\xc9\xd2\x01\x1b\x74\x99\xaf\xf6\xb3\x37\x67\xc7\xc2\xc8\xbf\xdf\x8c\x92\x22\x4b\x3b\xc3\x90\xd5\x02\x61\x94\x79\x80\x9c\x4f\x82\x47\x35\x95\x1b\x91\xbe\xe4\x93\x7e\xa8\xea\x66\xa0\x66\xe4\x01\x97\xe6\x7f\x50\xcf\xe7\xac\x4b\x4e\xf3\x61\xbb\x4a\xff\x4c\x28\x53\x21\xd8\x80\xac\xe7\xc9\x27\x63\xfd\x86\xd9\xd9\xb9\xe6\xb2\x29\x6c\x16\xa6\x31\xc3\xd1\x94\xb1\x77\x96\x7f\x2c\x9f\x7b\xf2\x49\x52\xeb\x6a\xc7\x51\x88\x5f\x73\x99\x82\xeb\x20\x9e\x1b\x2b\x8a\x3e\xd5\x5c\x88\xb2\x3e\xed\x45\x54\x43\x26\x54\x9b\x97\x2b\x4c\x52\x4b\xf7\x20\x9b\x8e\xc9\xda\x2b\x9f\x1a\xc0\x4b\x62\x90\x45\xdd\xa8\xb3\xcd\x43\x3b\x6e\x63\x35\xa3\x98\x73\x51\x65\xe8\x8f\xb7\xd4\x3c\x3e\x63\x30\xa5\x6d\x5c\x2d\x0f\x18\x83\x35\xd5\xca\x0d\xd3\x61\x52\x64\x2b\x7d\x0b\xf0\x1d\x02\x85\x4b\x9a\xd2\xea\xd2\x26\x4a\x57\xf2\xfe\x3e\x95\xc1\xc2\x15\x12\x69\x3f\x88\xf2\x92\xe5\x89\x03\x14\xc2\xdf\xc4\xea\xe0\x13\x85\x2e\x36\x9d\x95\x07\x1b\x8e\xd8\xe1\xbb\x81\x72\x1f\x17\x35\xa4\xf8\x18\xdd\x26\x3d\x98\xa7\x7f\x51\x31\x49\xfd\x00\xc4\x00\xae\x55\xeb\xe7\x4f\x8f\x96\xbe\x1b\x84\xd9\x59\x84\x1d\x0f\x83\xa1\x4a\x88\x01\xe8\x22\x71\xab\x0f\xae\x92\x95\x11\xc7\xe6\x2b\xe4\xfd\x28\xb6\xf9\x03\x7e\x00\x05\x34\x70\xf8\xcd\x3f\x81\xe1\x47\x32\x7a\x3b\xa8\x6c\xa9\xb0\x8d\xd1\xef\x38\x1f\x55\x59\x33\xfe\xab\x52\x71\xfc\x1c\xa1\x4b\xc3\x90\xc9\xdf\xa1\x60\x06\x11\xdf\xee\x55\xa5\x7f\xf0\xc3\xda\xbe\x76\x3f\x2d\xd2\xac\x41\x15\x38\x59\x5a\x0d\x27\x24\x7a\x69\xcc\x11\xce\xcc\x34\xab\x9d\xd0\x6f\x47\x26\x61\x54\xbf\xd0\x26\xf8\x5b\x43\xaa\x02\x9f\x76\xca\xc3\xbc\x5e\x8a\x92\xb4\xfa\x39\xc5\x27\x00\xd9\x5e\xac\xc8\xff\x80\xb5\x86\x58\xe8\x68\x4d\x8c\x2e\x1a\xe6\x13\xbe\xb8\xbf\x0e\xc3\xa4\x61\x91\xc2\xbd\x50\x27\x07\xd3\x37\x49\x64\xc2\x86\x9e\x81\xf6\x60\xea\xf3\x35\xf8\xd5\x03\x8c\x2a\xe5\x48\x1d\xce\x8e\x7b\x40\x2e\x8a\xf0\xe2\x49\xdf\x57\x32\x5b\x2b\x91\x8d\x3b\xf9\x4e\x2a\xa0\xc2\x4f\x5c\xa4\x8a\x03\xd6\xcc\x89\x52\x09\xbe\x5e\x22\x67\x24\xa3\x6d\x78\xaa\x6e\x7a\xc8\x35\x28\xee\x6b\x99\x20\x68\x38\x63\x91\x30\x40\x40\x86\x3c\x5d\x6f\x37\xcd\xba\xe9\x64\xc3\x8b\x66\xe8\x10\x00\x5e\x1e\x8e\x91\x79\xc2\xd0\x6b\x3b\xae\xf4\xb6\x16\xd3\x2c\x6a\xa8\x11\xbc\x73\x6a\x2e\xe7\x9c\x0b\xd2\xfb\x51\x12\x81\x79\x6e\x02\x75\x1f\x8d\x40\x43\x81\x98\xdb\x0d\x5c\xea\x19\x5b\x54\xd2\x3b\xf8\xcd\x7f\xf0\x9b\xff\xa0\x41\x0f\x0c\xa1\xc8\x29\x85\x5a\x3d\x35\x96\xba\x3f\xb7\xf7\x85\xa6\x4d\x0a\x9b\x49\x5d\xdd\x27\xe0\xdc\xde\x95\xf8\xd7\x63\x8a\x17\xac\xc1\x38\x1c\xca\x7d\x24\xcc\xb3\x71\x1c\xcf\x0f\xd6\xe3\x1b\x6e\xbd\x0e\x62\x33\xcc\x23\xa1\x87\xc6\x16\x84\x57\xe3\xe3\x1a\xc2\xae\xe9\x66\x92\x3a\xc0\x36\xfb\x78\xba\x09\xf1\xf7\x35\xb8\xfa\xd0\xf4\x6d\x66\x98\x23\x0c\x6f\x94\x4b\x50\x32\x9a\xe7\x7f\xf3\xa4\x22\x3e\xec\x0e\x4d\x46\x65\x08\x74\x02\x85\x75\xa5\xe1\x78\x61\xcf\x6a\x6c\x49\xb7\x9b\x19\x29\x30\x38\x0d\xdf\x8b\x8a\xbc\xe2\xa7\x78\x66\x22\xae\xb0\x4b\x65\xe1\x34\xba\xc1\xd4\x7e\xa5\x9f\x8a\xe0\x02\x16\x1e\x25\x57\xf3\x64\xa9\x61\x11\xa3\x01\x3a\xd1\x52\xba\x8f\xa6\x88\x48\x93\xc0\xa7\x57\xdc\x58\xe2\x93\x9a\x71\xac\xb9\x66\xcf\x86\x8b\x8d\xc6\x57\xbf\xec\x24\x8d\x3d\x98\x63\x1c\xd6\x7a\xf0\xd9\x66\x3b\x4b\x0d\xd0\xa4\x52\x9c\x19\x61\xf4\xf1\x7a\x10\x04\xf2\x05\x8b\x3e\x3d\x16\x0c\xe0\x01\xb3\x84\xe0\x0d\xe8\xaa\x4f\x73\xf3\x4f\x35\xab\x97\x17\x85\x46\xf8\xe1\x61\xd6\xae\x73\x78\xca\x67\x75\xf2\xfb\x79\x0c\x59\x7c\x67\xca\xa0\x7b\xc6\xc7\x5e\x7e\xce\x26\x89\x85\x77\x87\x13\x7e\x2d\x50\x1e\xf9\xb5\x52\xb3\x1e\xf5\x27\x2b\xc7\x21\x2a\x97\x74\x39\x32\x3f\x56\x7d\x1e\xd1\x1b\xb3\xb6\xc0\x3b\xde\x50\xb0\x19\x13\x92\x1f\x8f\x92\x2e\x41\xbc\x60\x86\xb7\xb4\x9c\x63\xf9\xe5\xdb\xba\x67\x78\x43\x55\x22\x79\xc8\x49\xe4\x39\x6b\xda\x1a\xc3\xc1\xc0\x66\x68\x26\xc2\x7c\x01\x15\xc1\xc7\xb5\x73\x03\x4b\x51\x58\x44\xfd\xbc\xa1\x82\x9e\x43\xf8\x1d\x3e\x09\x3e\xad\x03\xb9\x64\x92\x8e\x4d\xda\x36\x43\xeb\x45\x14\x6d\x14\x35\xcb\xa9\x31\xe7\xf2\x54\xb3\x3f\xcc\x3a\xd6\x31\xa6\x21\x8b\x06\x4b\x8f\xd2\xe0\x9a\xe6\x78\xc1\x63\x97\x47\x58\x04\xa4\xa0\xf5\x75\x5d\x35\xfb\xfa\x66\xd8\xc3\xdc\xfc\x5c\xf3\xab\x5f\x6e\xa8\xae\xcb\x59\x35\x03\x75\x36\xf0\x94\xd7\x71\x64\xf3\xed\xb4\x2b\xdd\xe4\xa1\x7b\x1b\x10\xdd\x75\x00\x16\xcf\x66\x82\xa2\x1f\xaa\xca\xdb\x51\x53\x42\xc1\xfb\x1a\xd5\xde\xff\x06\xdd\xc2\x9e\xe9\x9b\xc5\xa1\x69\x78\x2c\xc7\x56\x04\x49\x7c\xb2\xea\x71\x08\x0b\xb1\xc9\x7b\xb4\x82\x01\xb2\x42\x0c\xc0\xb9\x13\x9f\xb8\x67\x14\xf5\x47\x68\xca\x61\x48\xde\x0d\xfc\x88\x31\xf6\x1b\xb0\x99\x53\xab\x35\x8d\xd9\x34\x09\xd3\xae\x4d\x50\x71\x16\xf0\x41\x95\xe6\x09\x28\xa1\x6e\x30\xdb\x64\xe9\x30\xe9\x50\x37\xc5\x6d\xeb\xf9\xbd\x5c\xe6\xb9\x8e\xf5\x20\x51\x80\x62\x23\xb4\x19\xa2\x4e\xa5\xfa\x35\xbf\xd7\x95\x2d\x5d\xf9\x23\x8d\x63\x0b\xc6\x5b\x2f\x00\xc5\x55\x4d\x18\x8e\x2b\x81\xd2\x7f\xfd\xc1\x48\xb7\x2a\xcf\xed\x76\xaf\x7c\xc2\x3c\xf5\x2c\x98\x5b\xfa\xa1\x8b\x8f\xd5\x04\xde\xd6\xd6\xc8\xf4\x54\x75\xef\xa8\xd0\x62\x96\x4e\x60\x09\x8f\xbb\xfb\x88\x92\xbc\x88\x8a\x21\xf1\xcf\x51\x92\x89\x48\xff\x64\xa0\x26\x29\xdf\xd1\xc5\xb3\x77\xa8\x34\xe4\x7a\xb8\xfb\x67\xdd\x7a\xf2\xc5\x02\xdb\x19\x12\x4c\xdf\x81\xd8\x18\x5a\xc3\x27\x75\x84\x4e\x79\xe1\x4b\x7d\x42\xb7\xa3\xc0\x6c\x6b\x4a\xdd\x6c\x58\x64\x36\xec\x15\xdc\x57\x07\xd6\x97\xf1\x78\x7c\xe2\x50\x29\xcb\x69\xda\x99\xa2\x3b\x81\x23\xfb\x50\x3d\xaa\x87\x5b\xa3\x72\x96\x2e\x2f\x44\x51\x4c\xda\xdc\x75\xfc\x85\xa9\x29\x0a\x13\xc5\x23\x97\x7b\x56\x11\xe8\xfa\x6c\xb2\x9d\x26\x9d\x5e\x1a\x77\x6c\xc6\xf4\xc5\xb8\xc2\x75\x9d\x4d\x02\x35\x25\x59\x45\xf5\xdb\x08\x19\x0f\xd5\xc4\xa6\x2f\x34\xe3\x28\x59\xdc\x1c\x39\xd0\xeb\x91\xd0\xc1\x97\xd3\x56\x68\x04\x82\xfc\x9b\xac\xcb\xea\x97\x64\xbd\x4a\x60\x66\x93\x8e\x49\xba\x64\xd4\xaa\x3f\x75\x2c\xc7\xbe\x2a\xb4\x9b\xf2\x4b\x78\xe9\xa9\xd5\x4d\xc2\x56\xcf\xcf\x35\x9f\xd6\x8a\x70\x17\x14\xb1\xd6\x38\x99\xd1\xbe\xe9\x66\xd1\xcb\xd2\x61\xb7\xd7\xf0\x03\xf7\x88\x78\xf9\xb8\x66\xf4\x7b\xae\x69\x3a\x1d\xc1\xff\x09\xa8\x9c\xae\x8f\x4f\x82\x27\x34\x90\xaf\x43\x74\x8a\xdc\xa5\x99\xf3\x0c\x15\x9e\xad\x62\x0c\x67\x58\x45\xfd\x4e\x0d\xab\xe1\x07\x87\x5f\x57\x9c\x32\xaf\xab\xa1\x01\x93\x24\xe9\x30\x09\x49\xc4\x6a\xfa\xa0\x27\xf7\xf5\xb9\xf2\x8f\xd4\xb4\xd7\x8f\xa8\x64\x23\x14\x0c\x3e\xc7\x05\x33\xa2\xed\x6c\xa7\xc7\xc7\xfa\x6a\x9a\x7e\xe2\x5d\xb2\xc5\xa2\x5c\x5b\x2d\x0d\xb0\x3d\x62\x96\x01\x69\xc6\xf5\x40\x69\xe5\x02\x97\x09\xd7\x77\xcf\x59\x21\x24\x27\xce\xb2\x62\x99\x3f\xd8\xf2\x21\xe0\x86\x82\xaf\x3c\x31\x26\x8a\x3c\x3b\xdb\xec\xd0\x2b\x43\x4c\x0c\x37\xb1\x4e\x97\x03\x67\x7e\x1c\x4e\x4f\x72\x91\xf1\x08\xfc\x99\xa6\xcd\x0b\x43\x84\x9d\xae\x79\x56\x97\x2b\x6c\x7e\x2d\xfb\xf6\x51\xda\xd0\x8f\x5e\x75\x17\x0f\x53\xac\x01\x3b\x48\xce\x44\xd1\xdd\x47\x3a\xbf\xf9\x0f\x7f\xa5\xa1\x09\x02\xaa\x35\x26\xc4\x01\x8f\x29\xe9\xae\x76\x9a\x19\xcc\xe6\xfa\x15\x7f\x39\x50\x49\xd0\x65\x45\xa2\xe2\xb3\xda\xea\xcd\x28\xbe\x32\x21\x12\xbd\x4d\xef\x5a\x82\x01\x5f\x7e\xe9\x87\xa1\x59\x46\xdb\x48\x86\x72\x1b\x8e\x2d\xf7\x30\xcc\x17\x3a\x78\x77\x46\xf8\x00\xef\x04\x4f\x28\x09\x42\xf2\x90\xc5\x30\xe3\xba\x08\xe3\xc4\xe8\x9b\x04\x33\xb6\x29\x8c\x98\x99\x99\x6f\xee\x9f\xdd\x85\xaf\x44\xee\x76\x4d\x01\xf2\xb9\x37\xa0\x24\x56\x04\x2d\xf3\xed\x40\x69\x05\x9f\xd5\xfc\x88\x87\x90\x02\xa0\x5a\x0b\x6b\xa9\x67\xc8\xe9\x19\xff\x97\x7b\x94\x66\xff\x4f\xc8\x24\xf8\xb2\xb4\x77\x71\xb6\xcf\x0a\xd3\x7a\xcc\x0e\xc1\xed\xbf\x26\x53\xe8\xa6\x1a\x5d\x6a\xf1\x97\xaa\x7b\x43\x7c\x13\x0b\x36\x9b\x68\xcc\xef\xdd\xc0\x22\x16\xda\x56\xba\x2d\x54\xb8\x09\xdb\x20\x09\x4e\x3b\x9c\x50\xa4\xf5\x17\x01\x63\x82\xe3\xbf\xa1\x35\xec\x0f\xd5\x81\xb3\x4d\x96\x19\x20\xdf\x51\xb8\x39\xa4\xa4\x72\x0e\x8d\x0e\xcd\x2f\xc6\x36\x47\xbd\xdc\xa9\xea\xb8\x24\xf5\x66\xa0\x00\x9d\x67\x46\xea\xf4\x99\xed\x7c\xce\x8b\x20\x10\x19\xe4\x0b\x1b\x57\xc8\xe7\x32\x19\x16\xd5\xc0\x85\x17\xc9\xd7\x73\x3e\x83\xb9\x46\xa7\xbb\x5a\xf9\x72\x84\x4a\x3b\x5b\x23\xc0\x54\x9f\xa5\xee\x00\xb5\x08\xea\xbd\x93\xab\x1e\x32\x77\x0f\x4f\x05\xdb\xeb\x06\xde\x36\x8c\xcd\xc3\xba\xad\x84\x2e\x35\xd7\x03\x02\x2d\xad\xf8\x36\x40\x54\x4e\x78\xb8\xda\x4b\x88\x95\xaf\x53\x0c\x8b\xb0\xf3\x08\x56\x18\x5e\xf7\x83\x10\xa1\x70\x95\x8e\x7d\x4e\x13\x9f\x5e\x2b\xd6\xc7\xee\x16\x55\xcd\x90\xb0\x5f\xab\x0b\x4e\x3b\xa6\x6f\xba\xb6\x33\xa9\x22\xc0\xd2\x87\xea\x53\x58\x95\xc8\xb7\xa6\x56\x15\xcb\xe4\x09\x05\x91\x6a\x67\x51\x11\xe5\xbd\xdd\x4a\x39\xf6\x42\x30\xaa\xf3\xe8\x20\xbc\xbc\x17\x60\x07\xef\x2a\x66\x9a\x35\x0a\x3c\x61\xae\x5f\x2f\x15\x77\xd8\x05\x2d\x42\x8b\x50\xdd\x8d\x9c\x55\x6e\x00\x5b\xe9\xa4\x7a\x4e\x2c\x1e\x81\xc4\xec\x0f\x4a\x85\xda\xb8\x57\x47\xaf\xfc\xf2\xd0\x64\x85\xcd\x62\x30\xb1\x21\x28\x9f\x68\xf9\xd9\x44\xc4\x8e\xbc\xaf\x9d\x8f\xe8\x66\xa6\x33\xac\x62\xb0\x09\x45\x8b\x7a\x55\x73\xd4\x62\x06\x5c\x50\xc0\x0f\xb8\xc7\xf5\x05\x88\xb5\xbb\xb6\xd0\x57\xbf\xcc\xa1\xed\x61\x85\xb5\x67\xde\x49\xa9\xbb\xa8\xbc\x35\x8c\x98\xd7\xd0\xe9\xd1\xeb\x66\xa5\x0f\xaa\xae\xa9\xa9\x2d\x12\xf9\xc1\x82\x73\xf0\x23\x5f\x39\x3a\x5c\xa7\x5f\x96\x0f\xac\x0d\x1d\x5d\x34\xd3\x5a\x96\xaa\xb5\x7c\x62\x0c\x68\x37\x33\xd3\x0c\x33\x13\x2e\xc2\x31\x38\x55\x0e\x85\x9f\x1a\xe1\x3f\x37\x09\x93\x7d\xe0\xda\x51\xc3\xc7\xba\x6d\xe8\xd2\xd9\x3a\xed\x66\xd7\xdf\xac\xae\x00\x6e\xe9\xb6\x12\x1d\x5a\x87\x03\x42\x15\xf0\x8f\x02\xcd\x4d\x4c\x37\xe0\x48\x97\xaa\xdb\x46\x14\x34\xae\xac\x34\x3b\xdb\x1c\x98\xbc\x20\x6a\x23\xa4\xb4\xac\xc1\x8c\xee\xd1\x59\x65\x55\x3f\xc6\x12\xc5\x02\xff\x1f\x94\xec\xd8\xf8\x74\xef\xf4\xc1\x66\x3b\xb3\x66\xd1\x79\x72\xcd\xf9\xca\xc7\x63\x3d\x8b\x7d\xfb\x9a\xb6\x9b\x4e\x78\x15\x15\xae\x6c\xea\x56\x95\xa0\x72\xbc\x0b\x1f\x26\x96\x1a\xf3\x6e\x35\x38\x0e\xc2\x91\x8a\x30\x7c\x98\xe3\x09\xf6\x43\x97\xaf\xd3\x8d\x38\x8d\x66\x4f\xf5\x37\xd1\x72\xa3\x6d\x6e\xb6\x7f\xd2\x93\x0d\xff\x1b\x7c\x09\x0a\xe2\x18\xa2\x43\x3d\xe3\x96\xe2\x29\x3b\x5d\x8e\x54\x45\xec\xa0\x30\x49\x68\x27\xb4\xf3\xbe\x3d\xa2\x2f\xa2\x24\xd3\x8e\x8e\x4d\xf2\x48\x59\xc2\x9a\xbc\xb0\x59\x32\xd5\xd8\xb7\x6f\x54\x2f\x93\x69\x28\xe8\xbe\xe1\xa1\x21\xee\x84\xcd\xc9\xd2\xd4\x78\x9c\x4f\x8c\xb5\xec\x67\x67\x9b\xb9\x25\x46\x0c\xde\x00\x30\x05\xef\x06\xca\x17\xbe\xab\x52\x07\x1a\x39\xcf\xff\xd3\x18\x7d\x1f\x73\x90\xed\xc5\x24\x5d\x8e\x6d\xa7\x2b\x89\x9c\x2a\x28\xbb\x92\x5f\xa0\x54\x18\x63\x33\x60\xf6\x54\xb4\x84\xf1\x23\x7c\xac\x99\xba\xed\x32\x64\x37\xe0\x2a\xee\xe2\x0b\xdd\x40\x86\xe2\xc7\x0a\x7c\x67\xe9\x3d\x05\x86\x65\x42\x61\x7c\xf3\x2f\x62\x0f\x08\xd5\x92\x1f\xaf\x5a\xd7\xa6\x55\xb0\x8a\x2e\x7a\x74\x80\x80\xab\x8e\x64\x66\xc1\x0e\x35\x24\x6e\x4d\xaf\xb0\xb5\x4d\xe2\x08\x9d\x49\x3f\x72\x79\x13\xee\x99\x4f\x82\x4f\xab\x1b\xef\x76\x49\x64\x51\xa4\xfd\x49\xc5\x37\x7d\x51\x2f\x89\x93\x8a\xb4\x68\xab\xa2\xff\x3c\x32\x96\x49\x91\x14\xa9\x8d\xb2\x9c\x96\x3a\xec\xed\x5f\xc0\xde\x8a\xc6\x57\xf5\x55\xb0\xfd\x97\x81\x7d\x16\x06\x17\x15\xc9\x46\x61\xef\x69\x60\x2f\x60\x54\xca\xc0\xcf\x3f\x9c\x52\x30\x3a\x26\x93\xe2\x3f\x52\x18\xd5\xa3\x63\xa3\x27\x20\xeb\xea\x0f\x6c\x11\x09\x9d\x87\x53\xd2\xf3\xaa\x7a\xa5\x67\xb9\xcb\xd3\x28\x9e\xf4\x25\xa5\x4b\xba\x5e\x81\xc1\x49\x61\x81\xd2\x35\x1a\x37\x20\xbe\x6c\xed\x62\x9c\x72\x33\x80\xfd\xcb\x88\xaf\xa9\x9b\x41\x9a\xfd\x3c\x99\x3b\x69\x00\xa8\x8e\xe1\x25\x02\x5b\xc3\x2b\xfc\xcf\x81\x92\x0b\x3b\x4d\xe0\x60\x60\xbb\xbe\x87\xe5\xe1\x38\x99\xbf\xf4\x35\xf6\x93\xe0\x6f\xc0\xe2\xfa\x43\x45\x0d\xfa\x0e\xc5\xe9\x32\x5d\x54\x45\x44\xf8\xfb\xd3\x8c\xb0\x07\xb8\xfb\x3d\x2c\x26\x97\xe1\xcf\xcf\x39\x44\xa1\x6e\x31\x06\x8a\x3b\x98\x99\xc1\xd1\x3f\x5f\x2f\x55\x01\xea\x06\x56\x03\x52\x71\x20\x7a\x10\xb7\x61\x04\x0c\xf9\xce\x0d\xea\x3c\x22\xb0\x38\x8f\x11\x24\x01\xfb\x63\xcf\x60\x9b\x1e\x45\x14\x89\xed\x74\x5d\x69\x5c\x87\x43\xc0\xc6\x5c\x44\xea\xc8\x5b\xce\xa8\xc2\x99\x89\xa3\x82\xc7\x43\x1c\xcc\x99\x1e\x20\x9f\xd4\xa9\x41\x4b\x42\xdd\xf0\x58\xde\x53\x3a\xfa\x3c\x55\xdb\xbb\x33\x0b\x0b\x26\xca\x50\xa1\xe4\x59\xfa\x72\x64\xb0\xfe\x89\xf1\x94\xea\xb9\xbd\x73\x3b\xaa\xb7\x06\x3f\x7c\x41\x93\xd3\x7f\x44\xef\x40\xc6\x04\xbc\x04\xe0\x21\xe5\x0c\xde\xc6\x55\xb9\xe2\x55\xf5\xd0\xa5\x78\xe5\x31\x7b\xdf\x54\x45\xde\x9e\x35\x9d\x49\x3f\x23\x78\x97\xd7\x00\xcb\x9b\x61\xaf\x8a\xd6\x99\x1f\x16\xb9\x3b\x36\xfc\x72\xf0\x59\xa2\xcc\x6c\x78\x1c\x31\x4b\xf3\xf3\x49\x1d\xcf\x9d\x19\x98\xac\x98\xac\xee\x4a\x88\xdc\xe8\x82\x25\xe5\xf6\x1a\xb5\x17\x80\xb0\x91\xa4\x4d\x67\x7a\x51\xb2\xb2\x5d\x85\x18\xaf\xe1\x9e\x65\xcc\xa8\xe1\x34\x14\x4f\x8f\x2a\xd1\x2a\x16\xa1\x2d\xab\x9a\x9c\x09\x2d\x07\x59\xf5\x23\xa2\xd0\x04\xd2\x35\xf1\x94\xbf\xae\x23\x8a\x49\xec\xa6\xb2\xb1\x1f\xea\xbe\xf9\x87\xd8\x15\x28\xb0\x5e\x54\x85\x04\x1b\xf6\x98\x49\x4f\xd4\x49\xaa\x6f\xc0\x37\xdf\xa1\x30\x1f\x90\xd6\x33\xd8\x89\xb0\xbe\x67\x94\x55\x66\xee\x22\xe5\xce\x3d\xd1\xa1\x0c\x3c\xd9\x57\x06\x71\x9a\x21\x08\xc1\xf5\x6c\x6d\xe9\x3e\x35\xed\x25\xed\x8c\x00\xfd\x18\x2f\x50\x92\x29\x35\xfd\x81\x89\xba\x09\xc7\xc8\x22\xb3\x41\x3f\x2c\xfa\x1b\xb2\xd3\x16\x86\x71\x6c\xb3\x82\x77\x9a\x50\x3f\x69\x1e\xa8\xe0\x73\xa3\xeb\xff\x2b\xd3\x12\xad\x4c\x29\x05\x12\xad\x79\x7a\x41\x91\x65\xfd\x80\xac\x1b\x1f\x07\x5e\x5e\xf5\x8e\x56\xaf\x22\x30\x69\xc6\x83\x64\xb0\x4b\xe7\x95\x0e\x8d\x26\x00\x4e\x4c\xb1\x6c\x73\x29\xff\x22\x20\xe1\xc9\x22\x3e\x51\x18\xdf\xca\xc6\x4b\xcf\x57\x90\xa9\xd5\x65\x0a\x62\x75\x9c\x14\x29\x34\xc3\x5c\xea\xab\xa8\x0d\xb3\x05\xe1\x93\x9a\x29\x9e\xe9\x66\x3e\xcc\x0b\x13\xb9\xf6\x8e\x00\x29\xe8\x73\x7c\x52\xc7\x7d\x78\xa0\xf2\x79\x7d\x9b\x85\x91\x89\x15\x85\xd5\x75\x45\x61\x75\xbd\x66\x3f\x1e\xa0\x71\xe8\x86\x0f\xc8\xce\xd3\x63\xe5\xe3\xda\x2e\xe2\xc0\xda\xce\x8a\x12\x99\xff\x3d\x25\x32\xff\x7b\x6a\xa9\x17\xd6\x50\x8c\xee\xc8\x81\x3d\x05\xde\x29\xa5\xc8\x7e\x53\x05\x67\xdd\x88\xa3\x3d\x61\x7c\xf4\xdf\x7c\x36\xd8\xc9\xd7\x10\xdb\x06\x8d\x64\x38\xc4\xb4\x67\x38\xbc\x38\xf6\x12\x2a\x8b\xd3\x8f\xf2\x1c\x14\xec\xa2\x2f\xd2\x70\xaa\x27\x77\x15\x57\xd2\x25\xcd\x5c\xfd\xe6\xd8\x66\x90\xa8\xba\x6f\x58\x9f\x02\x4b\x1a\x82\x5a\x8e\x4d\xb0\xba\x18\x3c\xbd\x0d\x5d\xe3\x2d\x8a\xcc\x84\x20\x4b\xf2\x42\x0e\xff\x21\xd0\x50\x14\x1f\x31\x17\xd1\xc0\xe4\x46\x49\x70\xbd\x1d\xf8\xa2\xd7\xdb\xea\x6b\x33\xdb\x37\xd9\xa2\x57\x22\xc4\x55\xbc\xa5\xae\xe8\x2d\x15\x6c\x99\xbe\xe9\x01\x37\x8d\xbd\x7f\x13\xa3\x72\x7c\x52\xa7\xa5\x5b\x7d\xfb\x84\x6f\x73\x30\xf4\xc5\x09\xe8\xce\xcc\xb8\x8a\x47\x4d\xf9\x64\x21\x4d\x63\x62\xd7\x76\xdd\x7b\x88\x55\xf2\xf1\xd8\xda\xda\xb7\xaf\xd9\x55\x0b\x5f\x7c\x3d\x2d\x7c\x3e\xa9\xeb\xa0\xb4\x4d\x1c\xa7\x85\xc8\x12\x31\xdb\x28\xad\x7a\x61\x1e\xad\x59\xc4\xdd\x38\x2a\x5e\x5d\xf9\xd4\x4f\x28\x92\xa5\x25\x82\xbe\x3b\x82\x35\x0c\x91\xc8\x64\xb5\xd2\x00\x33\xfd\x28\x5e\x99\xf2\x9d\x9f\x73\xe0\x21\x12\xa2\x9f\xea\x1b\x10\xd8\xac\x6b\x62\xc7\x33\x81\x6a\x4c\x1d\x55\x23\x56\x0b\x99\x7d\x79\x48\x3f\xfd\xe4\x93\x6c\xe4\xae\xe2\x1b\xf9\xc4\x85\x9f\xc3\xbc\x67\xfd\x18\x89\x26\x15\xe4\x63\xcf\x8f\x9f\x86\xc3\xbe\x4d\x0a\x93\xe1\xce\xb1\x42\x30\x3c\xcf\xc7\x63\xf5\xfa\xe9\x83\xcd\x65\x93\x9b\x22\x04\x4b\xba\x00\xee\xe9\x16\x04\x71\xbf\x79\xe1\xcc\xcc\x34\x07\x26\x1a\xb1\x7b\x18\xa6\x91\xfe\x98\x87\xfb\xe4\x83\xb4\xa0\x64\x46\x8c\xe8\x68\xc1\x46\x91\x75\x8c\xa8\x55\x8e\x9b\xda\x6a\x11\x2c\xe7\xba\xc3\x7d\x51\xcd\xd2\x5d\xac\x2b\xc0\xd2\x68\x7a\xc3\x8f\xad\xdd\x56\x35\xdf\xdb\xda\x8e\x0d\xb1\x00\x46\xe0\x89\x7c\x32\xd6\x7e\xac\x0c\xe4\x62\x14\xc7\x39\x86\x83\xa4\xb6\xaa\x8a\x93\x77\x03\x9f\x4b\x5e\x50\xbe\x88\x70\x45\xb6\x33\xa5\x99\x92\xef\x28\xaa\xb8\xbf\x0a\x7c\xa4\xf0\x4e\xe0\x29\x9a\x3f\xd6\x5a\x81\x77\xc6\x2a\x2c\x73\xf3\x73\xcd\xb6\x8d\x23\xbb\x64\xc9\x1a\x23\x32\xfc\x19\x32\x0e\x59\xfb\x1e\x2a\x7e\xf9\x68\x9d\xc4\xf8\x42\x94\x24\xb2\x95\x19\x18\x18\xa8\x49\x98\x8b\x8a\xb6\x79\x40\x0a\xd8\x10\xd7\x73\x92\x87\xd5\x9f\xc2\x9b\x7f\x44\x05\x2b\xd4\xc8\xaf\x29\xcd\x7e\x84\x38\xfc\x01\x35\x8f\xd3\x49\xe3\xd8\x64\xe0\x21\x12\xd5\x4e\x5a\x23\x22\x89\x57\x3d\x08\x16\x82\x0e\x3c\x22\x9f\xc7\x31\x59\x23\x17\x75\x55\xd1\x3d\xdd\xfc\xca\x0e\x3e\x5b\x3d\xfb\x28\x44\x1c\x8b\x7e\x17\x24\xf2\xf8\x58\x8f\xd4\x99\x6c\x39\x4d\x91\x13\xc8\xc5\xea\x3b\x55\x81\x5e\xd4\x6f\x28\x76\xc0\xb3\x9a\xea\xe0\x6c\x5d\x51\xb1\x9f\x26\xd6\x6d\x4d\xd4\x43\xde\xd6\xc5\x91\xb7\x1d\x93\x47\xda\x4f\xa2\xf6\x10\x5d\x1b\x56\x23\x54\xad\xba\xeb\x75\xa5\xbb\xb6\x15\xa5\x4b\x71\x94\xbe\x5c\x77\x71\x73\x9b\x67\x7e\x6f\xf3\xf9\xe9\x83\x0f\x56\x5f\xc9\x98\x60\x22\x28\x41\x22\x39\x45\x42\x20\xc2\x83\x4e\x0e\xc4\x29\x11\x55\xef\x05\x49\xcc\x1d\xac\x2f\xf0\xde\x3f\xde\x52\xe6\xe2\x87\x14\xce\x39\xd1\xbc\xcd\x62\xbb\x94\xde\xfc\xea\x13\x2d\x45\xb1\x35\xd9\x52\x22\xdc\xb7\x80\x46\x53\x77\xf7\xf7\x9a\x86\x7c\x9a\xa3\x57\x73\x23\xab\xe7\x95\x94\x7b\xd7\xe4\xed\x86\xe2\xed\x65\x90\xae\xb0\x1a\xd5\x10\x2b\xf6\x0c\xf5\x5d\xf0\x12\x47\xaa\x67\x82\x20\xf6\xc0\xcb\xbe\x29\x86\x19\x82\x02\x74\x66\xb1\x7e\x90\x28\x32\xec\x59\x38\x63\x7e\xf1\x53\xc2\x0a\x9a\x1e\x32\x71\xf4\xaa\x00\x82\x9c\x86\xba\x03\xb9\x32\x36\x06\x68\xe4\xeb\xb5\x32\x8c\x79\x91\xa5\x7d\xbb\xc2\xdc\xe6\xa8\xa3\xf0\x32\xe2\x13\xa7\x4e\x53\x64\x66\x30\x88\x98\xab\x5f\xd4\x29\x55\x8e\x84\xfe\x2f\x3c\xff\x96\x31\x3e\xdf\xe9\x83\xcd\x6c\xd8\x16\x16\x2f\xbe\xd3\xc0\xe7\xca\xb7\x75\x1e\xb5\x64\xb3\x4e\x9c\x2e\xe5\x8b\xf4\xa6\xb0\xa8\x20\x62\xc8\xc7\x75\x0a\xec\xf9\xb0\xd3\x61\xa9\x1b\x17\x9a\xfa\x30\x75\x2c\x19\x9d\xdf\xdb\x5c\xee\x19\x28\x4d\xe9\x4a\x0a\xcf\xcc\xe9\xb1\xfa\xd3\xaa\x09\x3b\x88\x4d\x68\xdd\x7c\x9b\x68\x9a\x55\x97\x26\x43\x78\x35\x12\x23\x59\xda\x6e\x3b\x97\xeb\xd4\xa4\x5c\x4f\x6e\xbc\xce\x3d\x33\x53\x59\xb2\x4e\x36\xec\xf3\x36\x44\xbe\x8b\x01\x6b\x3e\x2e\x1f\xaf\xa1\x87\x00\xcf\x18\x0a\xbd\x6c\xd4\xf8\x44\xeb\x43\x16\x69\x66\x1f\xf0\xe3\x53\xa8\xdc\x49\xb2\x50\x3d\x72\x66\x4c\x53\xdc\x3b\xdc\xaf\xc0\xeb\x65\x9a\x70\x06\x9a\xaf\x6e\x96\xb5\x44\x79\xe6\x16\xca\x33\x0a\x9b\x36\x2b\x09\x6e\xa0\x9e\x27\x46\x2c\xb2\x9c\x62\x21\xa4\x73\x57\xa9\x01\x05\xff\x72\x12\xc6\x58\x66\x6c\x15\x91\x21\x50\x00\x48\xac\x4f\x8c\x30\x19\x0f\x93\x62\x65\xb4\xb5\x4b\x9b\x52\x58\x51\x1b\x4e\x3a\xea\xe3\x40\x69\x03\x7f\xac\x56\xe0\x30\x2e\xa2\xbe\x29\x6c\xbc\x02\xe8\x0c\x6a\x57\x77\xe9\xd9\x60\xbd\x1e\x03\xd2\x9d\xff\x81\x16\x00\xff\x83\x4a\x01\x8b\x2a\x86\x0f\xf3\x49\x3f\xed\x80\x46\xb1\x53\xd1\x98\x17\x46\xb2\x1f\xa8\x59\xb1\xdf\xba\xe0\xc8\xda\xf2\xe1\x60\x10\xd3\x72\xe3\x71\x47\xb9\x6e\x75\x0f\x75\x2c\xc8\xbd\x61\x56\x4c\xf9\x99\xab\xd7\x4b\x95\xce\xb0\x40\x25\x0b\x0f\xab\xd9\xb5\x2d\x68\x4a\xa2\x1f\xdf\x68\x39\x56\xf0\xa8\xc8\x43\x26\x5d\x13\x00\xa0\x0f\x07\xcf\xaa\x2a\x82\x09\x8b\x78\x85\x66\x87\x1c\x82\xdb\x35\x4d\xee\x29\xc6\xe2\x4b\xee\x33\xdd\x2c\xf2\x02\x7c\x22\x64\xda\xf0\xa2\xa6\x0e\x17\xfd\xf2\xd0\xac\x54\x69\xd4\xfc\x5e\x37\x36\xe2\x67\x08\x7e\x0e\x33\x84\x56\xc2\x0d\x07\x2e\xaa\xb6\x77\x9e\xda\x25\x9b\x4d\x2a\xbe\xfb\x73\xa8\x94\x08\xe2\xc7\x27\x4d\xe8\x53\xe2\xd5\x9c\xf0\xe3\x7e\xe9\xb0\xdb\x1b\x21\x2a\x3e\xa7\xe6\xed\xcf\xd5\x62\xb4\x4c\x16\xb5\xdb\xd6\x4d\x1f\x88\xdc\xa9\xdf\xbb\xe7\xb5\x20\xd5\x55\xd5\xbc\xef\x44\x39\x75\x72\x1a\xa8\xb0\xc1\x2e\x9d\x42\x85\x8d\x4f\x94\xf8\xa1\x7d\x65\x60\xb3\x82\x73\x55\xc7\xab\xe2\xa0\x91\xd0\x52\x47\x19\xe8\xba\xc6\xe4\x6e\x5d\xf5\xb8\x8e\x81\x4d\x92\x7c\x25\x5e\x32\x49\x04\x25\x4b\xc7\x57\x5e\xfd\xbd\x44\xe0\x0f\x29\x8c\x53\x9c\x3e\xcd\x05\x10\x51\x8d\xa3\x3f\x15\x39\xb9\x87\x35\xed\xef\x92\x8d\x89\xed\x03\x4f\x9b\x2b\x49\xb8\xed\x09\x80\x06\xb8\x88\xa9\x28\xc3\xef\xa0\xc5\xc2\xbc\x2f\xba\xff\x7c\x98\x6a\x0d\xaa\xb3\xf3\x8c\xe3\xd9\x51\x35\xd0\xd7\xc7\x22\xb6\xa7\xaa\x57\x92\x45\xb2\xce\x50\x53\x60\x0d\x36\x3e\x51\xd5\xce\x6c\x58\xf4\x1a\x55\xd0\x82\x12\xec\x1b\xba\x1e\xfb\x46\x9d\xc4\x93\x35\x3c\x03\x3e\x3b\xcb\x06\x0c\x43\x51\xc2\x9a\x46\x17\x8a\x7f\xb8\x59\x3b\xe0\x62\xe3\x8e\x60\x8f\x71\x3f\x57\x55\x6a\x71\x55\x25\xfa\x26\x36\xf9\x22\x4b\x44\x32\x96\x59\x0d\x59\xfc\xaf\x8a\xac\xff\x82\xcb\xf7\xf2\x81\x89\xbd\xe8\x5f\xad\x6c\x55\x0d\xea\xed\x80\xaf\xd4\x0a\xc4\x9f\x5e\x17\x9f\x8c\xc5\x8c\xcf\xcf\x35\x17\x13\xbb\x8c\xe8\xc7\xd1\xc7\x56\x0f\x58\xe8\x63\x6b\x1a\x42\x71\x94\x74\xab\xc8\xc3\x89\x26\xbd\x8d\xa5\x24\xcc\x38\x23\x60\x1b\x86\x6f\x55\xef\x59\x68\xed\x1b\x6e\xe4\xf8\x92\x7a\x7f\xfd\x74\xc9\x4e\xfa\xa1\x34\x58\x5c\x04\x6e\x3c\xa0\xc6\x28\x32\x2d\x2e\x74\x45\x59\xed\x24\xb2\x31\x51\xe4\x79\x9a\x82\x8f\x15\x8f\xe5\xc7\xaa\x44\x12\xf6\x86\x49\xb7\xe1\x69\xb3\x3e\x44\xd8\xc0\x27\x6a\x2f\xe4\x51\x7f\xc0\x3c\xb2\xb0\x5f\x3b\x56\x7d\x8a\xcf\xc1\x06\x4c\xca\x55\xea\xce\x88\x84\x46\x65\x9e\xd0\xcf\xbd\x1f\x78\x45\x94\xab\x2e\x47\x37\x03\x30\xf0\x4b\xb7\x02\xc4\x27\x98\x4a\xe1\x63\x95\x64\x3c\xfd\x9f\xff\x63\xd5\x75\x5a\xa3\x64\x48\x40\xae\x9b\xdf\xe8\xbe\x7d\xcd\x76\x9a\xf6\xd5\x12\x40\x12\x20\x5d\xc0\xcf\x78\xb2\x89\x28\x0f\x33\x3b\x20\x5d\x8f\x91\xf8\xf7\x1c\xed\x57\xc9\xbc\x3c\x77\x59\xcf\x24\x49\xba\x64\xb5\xb4\x03\x57\xa6\x45\xb0\x54\xa9\x38\xd2\x40\x48\x3e\xe5\x61\x2f\xdb\xa9\x36\xcd\x91\xcb\xaa\xe2\x65\x3c\x4d\x61\x03\xde\x3a\xcf\x86\x22\xa1\x3b\x17\x68\xf5\xcc\x85\x28\x89\x8a\x68\xc9\xc6\x2b\x6c\xc6\x44\xe0\x50\x21\x92\xce\x6b\x42\xbb\x74\x98\x25\x26\x26\xb6\x4e\x2a\xd9\x23\x50\x7a\x13\x9c\x50\x7c\xe2\xc9\xc3\x96\x4d\x54\x8c\x62\xed\x19\x97\x2f\xe4\xe9\xbb\xbc\x2d\xfd\xe2\x76\x55\xf3\xb8\x8c\x4b\x66\xd8\x05\xbd\x79\xe9\x1c\xf9\xe8\x02\x33\x6c\x9c\x4e\xd1\xfb\x70\xea\x0f\xd5\x6f\xb0\xbe\xac\xc2\x79\x66\x16\x39\x42\xc3\x3b\xad\x3b\x2a\xf4\xbc\x53\xe7\xc0\x8c\xcd\xd2\x7c\x60\x2a\x37\xa4\xd8\xc2\xb9\x92\x21\x8c\xd6\x35\x52\xa1\xcd\x7c\x18\x39\x24\xb5\x44\xac\x64\xcc\x25\x64\x55\x72\x2b\x85\x99\x50\xc8\xdd\x13\xc4\xf5\x85\x80\x92\xa9\x0d\x45\x7f\x7b\x73\x29\x66\xdf\x3e\x10\xca\xd3\x1d\xb1\x3c\xfc\xa8\x56\xbc\x8f\x2e\xa3\x64\xc9\x56\xd1\x6e\xbe\x87\xac\x2b\xd6\x09\xcb\x4e\x30\xfd\x5a\xa9\x3a\xa3\xbc\x6a\x84\x1d\xc0\xb7\xbc\x26\x5a\xe3\x99\x2b\xc2\x8d\xbb\xdc\xab\x17\xf6\x69\x8f\xa9\xba\xa6\x45\xf2\xa8\x8c\x21\x08\x24\x0f\xdf\xdc\xd2\xf2\xd9\xd0\xd5\x52\x31\xeb\xdd\x2a\x3d\xa5\xd0\x04\xb8\x9c\x61\x2b\x26\x81\xb2\xc7\x56\x38\x17\x3c\xe0\xaa\x7a\xe8\x21\xd6\x8e\x92\x78\x3e\x0c\x02\xcf\x74\xd2\xe5\x84\x95\x7e\xdd\x08\x67\xf5\x9d\x7c\xe2\x12\xbe\xb6\xed\x99\xa5\x28\xcd\x08\xd0\x86\xd7\x0e\x15\x5b\x06\x98\x94\x3e\x75\x3a\x87\x6f\x90\x3a\x67\x0d\x6c\xa7\x9f\x26\x45\xb5\x16\x27\x54\x69\xeb\xac\x9a\xbf\x3b\x89\x4b\x46\x40\x77\xcb\xa1\xe8\x8b\x61\x02\xbe\x12\xec\xb3\xfb\xa3\x70\x1b\x1d\x52\x8e\x67\xb7\x07\x9a\x61\x66\x3b\xa0\x9d\x57\xe0\xe3\x53\x8a\xaa\xe2\x94\x8a\x6c\x12\x6b\x3b\x39\x97\xd3\x5c\x8b\xce\x93\xc6\x1c\x09\x7c\xcb\xff\xaa\xa2\x02\x61\x86\x4c\x24\x02\x27\x15\xdc\x33\x89\x7a\x30\x86\xdc\x82\xa7\xe5\x20\xed\xf8\x9a\xf4\x38\x31\x79\xc7\xbc\xdc\xd0\x55\x72\x55\x3a\x3c\xa1\x1c\x54\x68\x88\x2c\x76\x4a\x05\xa5\x37\x03\xa5\xe9\xfb\x81\x6a\x12\x7e\x4f\x91\xc2\x6c\x20\xfe\xe2\x49\x63\xf7\x9e\xf3\x38\x1a\x0c\x1c\xc8\x59\xc8\xaa\xfc\xab\x41\x49\x01\x3b\xe4\xad\x52\x9b\x96\xd8\x13\x56\x48\x98\xe9\x17\x61\x59\xaa\x10\xf2\xaa\x17\x0f\x5a\xe9\xb7\x53\x99\x5f\x70\xa5\x57\x97\x4f\x5c\x1c\xe9\xdc\x0e\x93\x45\x24\x60\xcc\xa1\xac\x07\x00\xff\x5d\xa0\x88\xe0\x7e\xa4\x30\x59\x57\xf5\x82\x8f\xb2\x7e\x94\x74\x7b\xa6\x8f\x6a\x8e\x44\xc6\x2a\x05\xba\x51\x83\xc8\x77\xad\x5c\xb1\xe4\x5c\x21\xa0\x0b\x95\x6a\x41\x4d\x45\x21\x4e\x73\x94\x75\xd0\x24\x39\x55\x7a\x46\xfe\x3b\x94\xae\x0a\x2e\xf4\x11\x05\xdf\x82\x50\xb2\x8f\x1e\x8f\x94\x8a\xac\xe1\x84\xb2\x16\x3f\x09\x54\x4f\xec\x5f\x06\x2a\xc6\x1c\xeb\xf0\xa1\xae\x5c\x14\x51\xde\x4b\x48\xd2\xc9\xc5\x93\xe8\x8f\xf2\x71\x9d\x36\x59\x9c\x4a\x3c\xe1\x3c\xff\x9a\x52\x7c\x5d\x53\x9c\x07\x0b\xd6\x80\x93\x8a\xe2\x2d\x06\x65\xb7\x94\x26\xf5\x39\x8f\xca\xfe\xe4\xa7\x30\x9b\x52\x16\xff\xb4\xd9\xb8\x81\xcd\x42\x4b\x9c\x3d\x0d\x5f\xed\x63\xbe\x76\x3e\x51\x01\x58\x6e\x16\x6c\x36\xa1\x48\x73\xae\x29\xe8\x23\x5a\x15\x02\x0e\xda\xec\xe8\x5e\x7c\x51\xe8\xab\xe5\x25\x8b\x8e\x93\x9a\xe1\xbf\x50\x8a\x85\x5d\xb1\xc9\x0e\x18\x07\x87\x86\x73\x74\x17\xef\x29\x71\xc6\x07\x88\x82\x0d\xbd\xca\x4b\xd8\x70\xa2\x2c\xdf\x70\x5c\xdf\x37\x4a\xcf\x52\xc7\x55\x42\xc4\x2d\x93\xad\xcd\x8b\x71\xff\xec\x48\x37\xd0\xaf\x7f\x40\xef\x85\x3f\x58\x31\x1e\xdb\xce\x30\x74\xba\x30\x78\x2a\x7f\xa6\x14\x00\xfe\x4c\xcb\x9f\xd3\x0a\xf7\x1d\x5c\x46\xe1\xf3\x89\x1a\x7c\x82\xd6\x51\x4e\x3d\x46\x78\x28\x30\x78\xf2\xb1\xcb\xb9\x07\x99\xcd\xa3\x8e\x4d\x42\x09\xae\x78\x1e\x5d\x77\x80\xce\x28\x6a\xaf\x05\x1e\xd0\x73\x6a\xac\x27\x94\x1e\xf9\x09\x97\xfe\x27\xa6\x8a\xd8\x14\x06\xe5\xb4\x1a\xa9\xf8\x29\x3d\x7d\x84\x99\xc0\x0a\x89\x22\x9b\x17\x06\x20\x50\xe1\x84\x67\x4a\x60\x62\x74\xa7\x43\xa5\x18\x9a\x54\x90\xb2\xf7\xd9\x79\x94\x0e\x78\x3a\x1e\x2b\xd8\x09\xfa\x3b\xcc\x16\x57\xda\x64\x83\xd5\x09\x9d\x9a\x28\xa6\xd1\x09\x7a\xd7\x6e\xe2\xc0\x2d\xd5\x0b\x5e\x5b\x3a\xcd\x44\x8c\x1c\x46\xef\x90\xa2\x45\x3f\xa4\xdb\xb3\x9d\x7e\xc4\xba\x21\x58\x54\xe8\x35\x3a\x86\x89\xb9\x67\xa5\x28\x00\x98\x0c\xff\xc3\x18\xfa\x13\xd2\x01\x09\x11\xfb\xcb\x28\x39\xfc\xf3\x15\xba\x40\x3e\x1e\x2b\x37\xfe\xbd\x66\xfe\x4b\x31\xd9\x7e\xa0\xf9\x6e\x05\x0d\x45\x9a\x40\x0f\x44\x66\x01\xfd\x45\x2f\x98\xa5\x14\x4a\xb2\x82\xda\xf1\xae\xea\xc2\xc8\xc8\xaa\x89\x23\x16\x65\xe6\xe2\x01\x9e\xb1\x54\x12\xea\xc0\x54\x61\xcf\x24\x5d\xd9\xcc\x0c\x4c\x2e\xd5\xe0\x56\x15\x7b\x4b\x5e\xf1\x9b\xff\xa0\xa1\x00\x24\xaf\xc3\xe4\xf2\x89\x5b\x76\x79\x91\x45\x8b\x16\xd8\x21\xc1\xe6\x54\xeb\x61\x03\x68\x7b\xc4\x6d\x3b\x57\x3d\x95\x2d\xa3\x0b\xd0\xa3\xba\x5f\x7a\xa8\xe3\x45\xe5\x4f\x7f\xa1\xf5\x69\xec\xd7\xb9\x49\x3a\x19\xa6\x5b\x95\x14\xcc\x9c\xeb\x55\xf8\x46\xe8\x42\x66\xed\x83\x2a\xf7\xf9\x39\x3c\x9a\x54\xf8\xfc\xcc\x1c\xe3\x28\xb0\x53\xee\x50\x42\x86\xb7\x72\x59\x15\x77\x41\x47\x23\x05\xa6\xea\x76\x50\x28\xba\x85\xa8\x82\xbf\x89\xc8\xe5\x79\xc2\x00\x41\x8f\x80\xad\x68\x8f\xe0\x42\xfe\xba\x86\x17\x7b\xba\x39\xc8\x52\xee\x27\xe2\x07\x79\x70\x4c\xe6\x06\xab\x5f\x94\x85\xa3\x54\xf9\xd3\x74\x71\xb7\x56\x70\xbe\x48\x57\x80\x6e\xc3\x54\xcb\x27\x31\xac\x55\x26\x14\xac\x7e\x48\x9d\x69\x9b\x11\xeb\x1d\x0b\x34\x3b\xcd\x88\xc2\x2a\xf6\x32\xc2\xda\x5d\x98\xf3\x70\x02\x0e\xfb\x05\xa0\xba\x6b\x55\x8d\xca\x21\xa0\x07\xeb\xf0\xcf\x5d\x14\xbe\x14\xe5\x93\x7e\x48\xe5\xfe\x88\x3e\x6a\xf5\x0b\x70\xe3\xef\xd2\x97\xca\xff\xdf\x6c\xef\x89\xe1\xac\x1f\xc5\x11\x9a\x7b\x33\x33\x7e\xe8\xcd\x0f\xc0\xa9\x64\x3a\x4c\xe3\x98\x08\xee\x26\xbc\x44\xe8\x09\x85\x3f\x3e\xe1\x62\xe9\x95\x74\x98\xed\xa0\x67\x00\xc7\x73\x9b\x99\xde\x11\x9f\x7c\x86\x1e\xa8\xcc\xfe\xe8\x38\xa7\xb1\x6f\xdf\xa8\xe0\x8d\x54\xe0\x2a\x13\x2c\x59\x5a\xf5\xd0\xa5\x80\xbb\x39\x35\xa4\x8e\xe9\x42\x9a\x71\xcb\x94\xeb\xb0\x6a\x42\xe3\x5c\xa9\x45\x77\xc2\x22\x5a\x88\x2c\xac\x04\xd0\xd1\xa7\xf5\x0c\xef\xe9\xb1\xc1\x93\xfd\xb3\xcd\x7e\xd4\xc9\x87\xfd\x3e\x6b\x30\x63\xaf\xae\x61\xe6\x1c\x6f\xf2\x3b\xb8\x74\xe0\x56\xbd\x4c\x78\x27\x33\x7d\x11\xc5\xc2\x1e\x79\x4f\xcf\x9d\x6c\x57\x34\x0b\xc7\x75\x29\x72\xaa\x0e\xf9\xd0\xb5\x89\xcd\x0c\x6c\x22\x5e\xef\x0d\xe2\x54\xbc\xa1\xd1\x6f\xdb\x5a\x3b\xa3\xca\x4d\x2e\xfc\xa3\xe6\x57\x3f\xef\x7b\xc1\x5b\x69\x96\x0d\x4f\x93\x01\xf5\xb4\x36\xff\xe3\x2f\xb5\x3c\xdb\xe6\x9d\x92\x90\x4c\x6e\x5e\xf7\xab\x5f\xe6\x00\xf0\x1a\x43\x32\x45\x9f\xb5\x5a\x84\x6e\x26\xa1\xba\x1d\x67\x91\xf6\x4b\x97\xef\xf1\x96\x8a\x9a\x76\x12\x83\x2d\x7a\xe1\x77\x83\xad\x5f\x74\x3c\x5a\xb4\x17\x84\xf0\x91\xf6\xbc\x63\x7b\xfb\xd2\xd7\x3c\x43\x8d\xef\xb9\xc1\x90\x4a\xf4\xa7\x2c\xe7\x5d\x5a\x47\x6e\xf4\x68\xdf\xb4\x43\xbe\xeb\x22\xc3\x76\x44\x8f\xd8\xa4\x23\x02\xf1\xff\xb1\x54\xca\xaf\xb7\xc6\xa2\xb9\x7d\x64\x64\xc2\xd8\x10\x23\x83\xe7\xa8\xfb\x44\x2d\xb3\x4f\xd4\xa0\xd5\xcb\xc3\x28\x5c\x8c\x57\x76\x34\x1c\xad\xd3\x55\x25\x65\xf7\x73\x32\x94\x80\x1d\x4c\x10\xd9\x28\x6b\x09\x96\xbe\x03\xb1\xae\x58\x88\xce\x69\x12\xb9\x4d\x83\x2e\x0f\xb9\x16\x46\x64\x5d\xa8\x29\xe9\x27\x7d\x4c\xf2\x52\xef\x26\x89\xaf\x03\xb1\x02\x76\xe4\x65\x3c\x57\x3e\x09\x54\x60\x93\x99\xce\xca\x84\x1a\x79\xf8\xef\xd4\xf0\xef\xc5\x72\x04\xf6\xed\x03\x9b\xc1\xd3\xe0\xf0\x62\xf9\x86\x52\x75\xcc\xaf\xd0\x2d\x62\x9f\xdc\x77\x03\x16\x83\x2c\x0a\x6d\x38\x2c\x7c\x10\x2a\x1c\x6c\x1e\x18\x70\x76\xac\x26\x44\xb4\x6d\x26\xeb\x33\x51\x2e\xde\xc2\x29\x54\x3b\xf9\x44\x35\xdd\x7a\x36\x8e\xc2\x74\x50\x54\x9b\xd8\x99\xbd\xef\x96\xde\x6b\x7c\xa4\xb2\x89\x63\x63\x51\xd6\x73\x7b\x9b\x61\xba\x6c\xb2\x4e\x0c\xb3\x29\x95\x61\x4f\xc7\x76\x69\x0c\xfb\xff\x7c\x95\x27\x0d\x07\xc4\x9b\xc8\xd0\x6d\x6c\xae\x7f\xa1\x67\x92\xfe\xc5\x18\xe7\xda\xfc\xde\x79\x56\x07\xf3\xda\x25\x80\x4f\x81\xc1\x94\x99\x12\x02\x6f\x52\x3d\xd7\x44\xcf\x2c\x17\xbd\x2a\xc8\xa3\x37\xc0\xf3\x80\x2d\x1f\x75\x7d\x5b\x8b\xef\x4d\xac\x6a\x19\x87\xe1\x60\x0f\x3d\x3b\x99\xf9\xc6\xce\x51\xca\xc2\xcf\x38\x6a\x4f\xd7\x4f\xf9\xed\x3d\x84\xc0\x18\x11\xb6\x44\x07\x66\x0b\x59\x16\x1c\xef\x40\x37\x06\x27\x8d\x96\xef\x73\x5e\xc7\xc2\x43\x08\xb0\x13\x80\x02\xe6\x8e\xd5\x55\xa3\x07\x5a\x5e\xb9\x66\xcb\xaa\x8f\x8c\xd7\xb4\xcc\xc8\x16\x8a\x94\x60\xb1\x6e\x50\x81\x0b\x61\x86\xe7\x2a\x19\x90\x0a\x44\x62\xe3\x1d\xae\xc1\xb9\xf2\x18\xbc\x3b\xac\x16\x03\x45\xa4\xb4\x5d\x59\x40\x96\x5f\x53\x44\xc2\x7f\x1a\x28\x5d\x2b\x56\xf9\xc0\xa5\x7d\x81\x6e\x19\x7e\xea\x70\xa9\x9a\x8b\x59\xb6\x32\x31\x12\xb2\xfa\x18\x0c\x6d\x34\xe1\x45\xd8\x1c\xdd\xbc\xf8\x62\xb3\x1b\xa7\x6d\x96\xf2\xc6\xef\x7f\xa2\xae\xe5\x93\x31\x6f\xb5\x6f\x1f\x29\x2d\x44\xc9\xd0\x76\x08\x72\x8d\x4d\xf8\x81\x66\xe6\x00\xe4\x14\x11\xfb\x06\xb2\x13\x26\x11\x56\x60\xb8\x62\x98\x2d\x50\x4c\x25\x84\x35\xf4\x68\x60\x7a\xaf\x07\xca\xcc\x1c\x52\x54\x8d\x9d\x34\xed\x8b\x11\xd2\x65\x34\x11\x61\xdd\x9c\x96\xcf\xce\xce\x35\x33\x22\x16\xad\x62\xf2\x2a\x0b\x03\x52\x0d\x7e\xe3\x86\x5a\xed\x0d\x05\x0c\x3c\xeb\xe5\x9b\x32\x93\x2c\x4e\xe8\x7e\x7e\xc3\x91\x18\xad\x8f\x34\xac\x3e\x15\xe8\xc2\xfb\x53\x5a\x1c\x52\x0f\xd3\xc5\x31\x85\x71\xed\xdb\x2a\x0d\x70\x25\x6f\x19\x0a\xd4\xe3\x64\x9b\x07\x04\xe7\xf7\x36\xc3\x21\x51\xba\x8a\x7f\x39\x8e\x97\x81\xa5\x05\x4e\x3e\x8c\x0b\x30\x5b\x28\x2a\x47\x57\xc8\x4b\x88\x70\xd2\xa7\x4d\xd5\x15\xbd\xc8\x2e\xc9\x6c\xab\x40\xc4\x68\x4d\x22\xa8\xe2\xf9\x76\x49\x44\xea\x26\x41\x7b\x26\x65\x80\x20\x9a\xe9\x27\x34\x38\xfa\x4f\x4b\x0f\xde\x3c\xed\xa0\xf5\x84\xe9\x8f\x0a\xdb\x99\xf0\xf8\xf3\xef\x93\x69\x1f\x29\x62\xa3\xea\x70\xc5\x7d\xac\x9f\x2e\x45\x36\x2f\x58\x76\x1b\x70\x84\xdf\x0a\x14\x02\xf5\xb7\x14\xbd\x57\x3f\x5d\x22\x6c\x42\xde\xf0\x7c\xac\x3c\xd1\xc1\x27\x0a\xe8\x17\xf6\x4c\xbf\x2d\xad\x78\x25\xec\x7f\xc0\x2f\xc3\xf9\xbd\x5e\x0b\x78\xd6\x2f\x4f\xcf\xb6\xb8\x14\x19\x42\xf6\x21\x38\xbb\x45\xa6\x1d\xbd\x10\xc6\xcb\x71\xdc\xc1\xc1\xfd\x08\xd3\x9a\x88\xa7\x79\x78\xf1\x9b\x41\x1d\x5b\xc4\xcb\x43\x08\x9a\x19\xc9\x85\x11\xa6\x40\x06\x85\x8f\x4b\xdd\x6d\xcc\x8b\x27\x68\x4d\x88\x22\x45\xe3\xc9\x27\x1d\xa7\xa4\xd7\x19\xf9\x06\x9e\x0b\xea\xdb\xeb\xba\x4d\x78\xb7\x54\xa5\xf8\xff\x31\xf0\x8e\xf2\x3d\x82\x9b\x48\x4b\x4c\x71\x77\xbd\x19\x34\xbe\x32\xcd\xf7\xfa\x76\x95\x13\x6d\x5c\x53\x00\xde\xb5\xd2\x5b\xd9\x6b\x28\x03\x20\xfa\x9b\x5c\xad\xa2\x2e\x89\xe4\x11\x30\xc2\x74\xac\x97\x0d\x45\x4e\x4c\x31\x1f\xff\x03\xc9\xb1\x28\xa2\xf5\x17\xf8\xcd\x4e\xb6\x14\x48\xf3\x9b\x23\xf3\x86\x51\xb2\xb8\xab\xba\x3e\x11\x1b\x50\x31\xe0\x35\xa4\x8d\xc8\xe6\xd6\x03\x25\x87\x01\xdb\x05\x74\x17\xa4\x44\x5c\x0c\xef\x29\xa3\x0f\xe9\x0c\xee\x36\x3d\x5c\x44\xa0\x6b\xb4\x76\x34\x19\x8e\xc0\x3a\x75\xb5\x7a\x90\x66\x85\xed\xec\xac\x3e\x86\x7f\x3e\xcb\x0e\xd4\xa9\x63\xcd\x0b\x6a\xf1\x5b\x1a\x3f\xfc\x89\x92\x04\x3e\x59\xfa\xb0\xe9\x1e\x86\x76\xa4\xe5\x52\x3d\x75\xa4\x5c\x6f\x6a\x01\xd7\xf7\xc7\x5c\xc6\xcc\x4c\x73\x21\x36\x8b\x36\x57\x0c\xd6\xdc\x5c\xe3\x13\xb7\x1d\x07\x26\x33\xb1\xed\x9a\x18\xb1\x20\xb7\x33\x15\xf3\xc3\x39\xd5\xf8\xee\xa4\x69\x46\x25\x32\xd4\x48\x00\xeb\x77\xb4\x1b\xfb\xa5\x24\xf2\x3e\xee\x0d\x2e\xf9\x98\x17\x00\x07\xd9\x9b\x93\x66\xe1\x1e\x12\x9f\x28\xe1\xfc\xc4\x64\x59\xba\x1c\x33\x67\x09\x6e\xb2\x41\x54\xe5\x7c\xdc\x6a\x7e\x8a\x25\x5c\x48\xd3\xa2\x17\xb1\xfa\xc3\x1c\x67\xcf\x4c\x6d\xc8\x27\x2a\x1c\x74\x9c\x38\xf9\x83\x7e\xa4\xe0\x16\x36\x8b\xd0\xb2\xd1\x8a\x54\xaa\x9a\x07\x9c\xaa\x66\xb5\x02\x9d\x4e\x73\xb5\xff\x05\xbd\x5e\x2d\xc7\x8d\x35\xac\x37\x44\xb9\x65\xe0\x4d\xe4\x56\x0a\x7d\x9c\x34\x90\xd2\xc2\xe1\xb5\x22\xf5\xa7\xcd\x3e\x64\xfa\x60\x33\x33\xcb\xf4\x46\xb9\xc2\xa8\x90\x5e\xef\x8c\xf5\x0a\x9e\xa2\x59\x09\x18\x4e\x19\xdd\x53\xb0\x97\x8f\xc6\xda\xf1\xcf\xed\x6d\x2e\x47\x5d\x7c\x60\x84\x05\x56\x78\x21\x36\x87\xa8\x54\x47\xa0\x46\x69\xf5\x4b\xaa\xfd\x3b\x2a\xb4\x5e\xa7\xf2\x12\x86\xc3\xcc\x75\x3e\x70\x41\x8c\x96\xe1\x13\xd5\x9f\x5f\x8a\xec\x32\x33\x4c\x4d\xb3\x2b\xbc\x05\x84\x15\xd2\x91\xdf\xc5\x0b\xe3\x7f\xa1\x4e\x36\xff\x43\x9d\xb8\x50\xdf\xbc\xc4\xe5\x41\xe4\xcf\x8c\x60\xe5\x93\xd5\x9a\xc9\xfe\xe5\x34\x41\x1f\x0c\x40\xa2\x37\x4b\x55\x07\xbb\xab\x68\x6e\x6e\x69\xb8\xcf\xb1\xc0\x07\x6b\xc7\x74\x70\x64\x07\x36\xe9\xe8\x6c\xea\x30\xed\x35\x7c\x37\x9a\x5b\x42\x02\xe9\x53\x30\x33\xec\x44\xe9\x36\x3f\xe7\xf1\x33\x85\x54\xbd\x41\x36\x5c\xd2\x17\xfa\x62\xc1\xf8\x35\x9c\x34\x09\x2b\xb5\xc8\x3f\x48\x5f\xce\xc6\x76\xc9\xb8\x8c\x11\x93\xd1\xdf\xc3\x6d\xf0\x89\xea\x09\x2e\x26\xc3\x4e\x9e\x26\x84\xa2\xc4\xa5\xaf\xd1\x4f\x3b\x4d\x3c\x67\xdb\x4e\xa8\x98\x0d\xa5\x28\xa1\xab\xf3\x23\xce\xcb\x84\xde\x9f\x3e\xe8\xa7\x5f\xe7\xfc\x49\xa0\xe8\x8f\xd3\xf6\x36\xba\x76\x61\xfc\xf5\x69\xcc\x8d\x40\x0d\xfb\x5f\xa4\x72\x99\x90\x07\x6b\x12\x1c\x55\x62\xbe\xa1\x74\x0b\x16\x73\x21\xd9\x18\x21\xc3\xe3\x93\xb1\x1a\xe3\x3f\x69\x2e\xa4\x99\x8d\xba\x98\x23\xe0\x42\x0e\x3e\x02\xbf\xfa\x03\x3d\x8a\x7b\x88\xf7\xb2\x48\x1c\xaa\x3e\x8a\x1a\x25\x18\x64\x36\x8c\x44\x60\x8e\x39\x49\xe0\xbf\x84\xa0\xa4\xc6\xb0\x47\x79\x6c\x58\xab\xc6\x91\x4c\xb9\x46\xc5\x39\x85\x4c\x48\x87\x45\x1e\x75\x6c\x86\x1d\x0d\x5f\x09\x14\x38\x1f\xd7\x61\x82\x7b\x26\xe9\xf4\x6c\x8c\x44\x15\x6f\xf0\x86\x02\x81\xdc\x70\x19\x4d\x66\x92\x4e\xda\xa7\x87\x81\x0e\xcd\x16\x94\x94\x14\xfd\xb4\x48\xb7\x1d\xd3\xf3\xfc\x68\xf5\x22\x2b\xdb\xd5\x7a\x74\x13\xd9\x51\x9a\xf5\xe9\x97\x65\x14\x9c\xbe\x92\x4f\xc6\x0c\xe2\xfe\xd9\x66\x3b\xea\x34\x34\x6a\x58\x31\xe0\x9d\x56\x8c\x2a\x79\x2f\x5d\x7e\xa4\xe1\xe8\x52\xd7\x4a\x35\x35\xf6\x6d\x58\x45\xc4\x19\x0c\x84\x40\xbd\xf2\x1d\x5a\xba\x58\x10\x4c\x6a\x24\xe0\x34\x5a\x91\x52\x69\xa2\xd7\x87\xfb\xbe\x46\x39\x27\xc2\x84\x29\xc5\x5b\xfe\x9a\x16\x82\x5c\x87\x6b\x40\x8d\xe7\x2c\xe2\x27\x54\x42\x01\x78\x40\xf0\xf2\x23\x5a\xd0\x78\x68\x6b\x23\x0c\xe4\x35\xe3\x14\x73\xcd\x3c\x8d\x79\x39\x4b\xb6\xa3\x12\xe9\x0b\x4a\xa4\xb2\x30\xc9\x22\x63\xa8\x5c\xf9\xd5\x03\xd4\x55\xeb\x35\x1f\xf6\xfb\x20\x9a\xab\xfe\x1d\xd9\xfd\x77\xb1\xb3\xf8\xa4\x86\xc2\x6f\xba\xd9\x8b\x3a\x1d\x9b\x60\x60\x40\x58\xe2\x3d\xe2\xe0\x08\xea\x7d\x88\x32\x3f\xa8\x6b\x70\xe7\xd6\x22\x9b\xc3\x13\xbd\x3b\x42\x8b\xee\x95\x3a\xcf\x8e\x44\x84\x85\x1d\x4c\x7a\x42\xeb\xdf\xa1\xe2\x1f\xf6\x10\x04\xf7\x90\x73\x3f\xd0\xf2\x31\xec\xee\xd5\x1a\x55\x5d\xfb\x4a\x18\x0f\xf3\x68\x29\x2a\x56\xa8\x74\x02\xa4\x02\xcf\x80\x39\x16\x8f\x99\x19\x37\x03\xbb\x79\x49\x3e\xb7\xb7\x99\x0d\xc1\x9e\x06\x93\xb7\xa6\xbd\xc5\xc6\xc8\xa0\x95\xaf\x95\xfd\xd3\x83\xbf\xa1\xf4\x48\xd7\x15\x8b\xff\x25\x6d\x94\x4e\x38\x4c\x5e\xdf\xbe\xfa\x6a\xda\x8d\xd2\x2c\x49\x1b\x3e\xae\xe6\x0c\x85\x4f\x1c\xf8\xc2\x86\xb1\x0d\x8b\x28\x54\x44\xb0\x37\x4b\x0f\xa2\xb8\x19\x68\x60\x7b\xb2\xc0\xb5\x31\x11\x1e\xd1\x93\x22\xa5\x47\x10\x5c\xf8\x54\x8a\x97\x30\x4d\x42\x19\xb7\x42\x45\x01\x5c\x7c\x0e\xa0\x5b\x5d\x23\x42\xfc\xab\x04\xc9\x12\xd1\x0e\x5a\x59\x32\xef\x58\xb7\xb2\x98\x2d\x78\xc2\x0b\x93\x9d\x55\xde\xe0\xac\x92\x5a\xe9\xad\xb4\xb3\xa8\x33\xa9\x15\x6b\x70\x23\xb2\x8a\x35\xf9\x1a\x99\x6d\x59\xd1\x9b\x17\xc5\xcc\x0c\xc6\xe0\x06\x59\x94\x4b\x86\x2d\x8a\x7f\xca\xd7\xfe\x56\xa9\x04\x33\xce\x06\x8f\xcb\x7b\x8a\xf2\x61\x52\x99\xe0\x22\x4d\xd9\xc9\x22\x4c\xb9\xa6\x90\x5f\xd7\x14\x12\xbc\xcf\xea\x4b\xa2\xe3\x81\x47\x47\x2f\xea\xee\xe7\x5a\x0e\x22\x71\xfd\x0b\xab\x6a\x4c\x61\x9c\x50\x7b\xff\x2c\xec\x69\x54\x28\x45\xfb\x8f\x95\xa2\xfd\xc7\x2e\x04\xe8\x66\x66\x30\x70\x00\x79\x19\x47\x56\x0a\x14\x87\x95\xed\x58\xc8\x6c\xde\xdb\xee\x0d\xf4\x6a\xa9\xb4\x9b\x8e\xe3\x81\x88\x00\x89\xd2\xa9\xbc\xa8\xa6\xaa\x6e\x8d\xca\x82\x29\xc8\xef\xc5\xba\x31\x83\xbe\x59\x44\x57\x0f\x46\xf1\xae\x26\xfc\xc7\x50\x09\x12\xe6\xf7\x55\xbf\x8a\x24\x99\x42\xdb\xd9\xa6\x87\xe8\xcf\x62\x9a\x02\xb1\xd5\x3d\x1d\x3f\x5e\x29\x7d\xc8\x78\x25\x50\x9c\xdc\xf7\x02\x35\x77\x3f\x5e\x7a\x7e\x5e\xa8\xa2\x78\x59\xc0\xab\xde\xd1\x84\x95\x2c\xe5\x21\xf7\xf7\x39\xef\x90\xd2\x61\xd2\xf9\xcd\x7f\x58\x3d\xfc\x5e\x14\x72\xe5\x45\xe0\x49\xd5\xf3\xc5\x7a\xdc\xa2\x83\x53\xcf\xa6\x90\x17\x76\xd0\x13\x1b\xeb\x88\x40\x3c\x74\xf2\x8e\x56\xa9\xbd\x54\x7a\x38\xe8\x93\xf9\xe7\x91\x94\xa3\x3a\x76\x37\x50\x48\xbf\x9d\xa8\xcf\xc2\xca\x6d\x23\x88\x89\x6c\x46\x32\xd9\x4e\x31\x6a\x7e\x2f\x87\x59\x0f\xae\xaa\x9f\xd9\x49\x33\x3a\x9c\x52\x6b\x7e\xc2\x2d\xab\xf4\xac\xe1\x79\x1f\x5f\xf5\x55\xb2\xab\x58\x3c\x30\x34\x0d\x6a\x81\xc0\x47\x08\x71\x38\x6d\x8f\x5d\x8f\xb6\x7c\x91\xed\x8e\x1e\x89\xb9\x88\x56\x15\x5e\xdc\xff\x42\x41\x10\x2c\xc1\x2d\x7a\xa1\x40\x7a\x6e\x6d\x35\xbe\xfa\x65\xbe\x92\x8f\x90\xa6\x21\xd4\xfe\x80\xdc\x2b\x5c\xf8\xee\x96\x22\xa8\x64\xaa\x3e\x7c\xfc\x3e\xa8\xfe\xd0\x55\xdd\xbe\x5a\x87\x00\x1c\x64\x69\xe8\x6b\xfb\xb5\x70\x47\xc5\x89\x9a\xe5\x36\x31\x71\xae\xe8\xf7\x2f\x68\x2a\x55\xda\x42\x1b\x57\x82\x5d\xce\x94\xbd\xf8\x62\xb3\x32\x92\xec\x4d\x02\x45\x1f\xce\x19\x26\x80\x2c\xb7\xa9\x71\x8d\xf4\x1b\xc8\x15\x6e\x6e\x04\x8a\x26\xe7\x90\x56\xdb\xc7\x9d\x39\x96\xd5\xea\x1d\xa1\x36\xff\x6f\xd5\x50\xc7\x47\x14\xe1\x63\xb3\x37\x5a\x8d\x2f\x7d\x8d\x43\xa3\xab\xfc\x8a\x14\x36\xf3\x19\xfe\xb3\x35\x9a\x71\x43\x43\x0f\x6c\xdb\x70\xca\x2f\xea\x29\x87\x35\xee\x26\x2a\x56\xb3\x69\x6e\xbb\xbf\xa6\xea\x1f\xd7\x47\xa4\x73\x11\x1a\xa3\x5a\xc5\x4d\x03\x5c\xcd\x65\xa2\x29\xc1\x7d\xfd\xa0\x6c\x1c\x7c\x96\x6f\xeb\x02\xa5\x49\x52\xbd\xa7\x35\x89\xdb\xba\x4a\xda\x9e\x28\xde\xdd\x2d\xe9\x7d\xb3\x0c\x2f\x16\x18\x9e\xe9\x3d\x18\x34\x59\x3c\xd5\x42\x42\x6b\x7e\x2d\xd0\x08\xc2\xa4\x9b\xa2\x1d\x08\x74\xc0\x15\x58\x0d\x3e\x51\xba\xab\x45\x66\x4d\x3e\xcc\x18\x94\xee\x46\xa8\xfd\x38\xb5\x32\x61\x0b\x02\x98\xf4\xb9\xe1\x89\x11\xf8\x2a\xde\x3d\x4c\xd3\xd6\x3a\x44\x57\x3e\x6c\xe7\x51\x07\x45\x6a\xc5\x32\xdf\x70\x7c\xe9\x9a\xef\xdb\x0c\x8a\x78\x65\x82\x5e\x02\xf3\x76\x53\xe9\x8b\x89\xfb\x60\xd1\x10\x0b\x8d\xb7\x27\xa8\x0a\x10\x9a\x18\x1c\x1f\x78\xbe\x27\xd4\x12\x1a\x67\x62\x20\xb9\xc9\x97\x87\x11\x8b\x67\x32\x3d\x69\xe9\xfb\xa1\x37\xea\xc0\x86\x99\x0d\xd3\x6e\x12\xbd\xea\xaa\xa6\xfc\x58\x02\xfd\x88\x6a\x68\x48\x9a\x26\x7c\x79\x18\xe5\xa0\x5b\xfa\x1b\xe0\xf8\xfe\xe1\xf7\xc3\x6e\x66\xbb\x69\x46\x35\xa4\x0d\x9a\x88\xdc\x58\xab\x43\x1c\x77\xd2\xe5\xa4\x48\x97\x13\x35\x20\x8d\xa1\x4b\x81\x76\xf8\x10\x6f\xff\xb4\x48\x65\x73\x49\x5e\x2b\x10\x9c\x55\x74\x35\x59\x12\xe5\x3d\x0b\x32\x24\xd8\xe2\x7b\xba\x3b\x73\x56\xd3\xff\xf3\x9a\xe6\x6d\xab\xc4\x88\xda\x99\x89\x92\xb0\x17\x71\x1e\x27\x8c\x7e\x6a\x03\x9e\xae\x45\xd7\xdb\xe4\xa5\x74\x25\xd7\x5a\x4d\x5c\x5c\x95\x3a\x97\x22\x46\xb1\xc5\xee\xea\x8d\xd1\x8e\x38\xfb\x0b\x2d\x3d\xaf\x85\xf0\x12\x5e\xeb\x21\xea\xc8\xe1\x47\x6f\xe1\xe2\x11\x77\xb2\xf9\x67\xd8\x90\x1e\xce\xb8\xae\x38\xb3\x76\x01\x8c\x8e\x1a\xe3\xe4\xea\x08\xdb\x07\x2d\x4b\xf4\x49\x76\xb5\xc8\x80\xa1\x85\x76\xac\xf4\xba\x7f\x8d\xd5\xcd\xeb\xb5\x72\xdb\x0b\xd6\xc6\x7c\x9b\x32\x7d\x4e\x5f\x26\xe3\xe7\x2a\x89\x5e\x58\x20\x2e\x0b\x86\xd5\x71\x89\x3f\x50\x98\xb8\xf3\xaa\x03\xd1\x36\x45\xd4\x4e\x0b\x0a\x58\x50\x6e\xdc\x0a\xaf\x8a\x28\xf1\x87\xa5\xef\x46\xdd\xf7\x51\x5f\x94\x85\x43\x4c\x70\x8a\x7a\x84\x72\x47\x2c\x0c\xe2\x78\xee\x9d\x6d\x3c\xa1\x8a\x29\x59\xda\xd1\x53\xcf\x37\x61\x82\xf8\xe4\x53\x71\xb0\x79\x1a\x47\x1d\x93\x09\x08\x0e\xbe\x9b\x17\x26\x9f\xd4\xcd\xec\xe4\xa2\xe7\x0d\xc7\x7f\xac\x54\x80\x9f\x63\x9f\x2a\x6b\xf3\xd2\xb0\x83\x9f\x19\x21\x36\xe4\x13\x95\x82\x0c\xd2\x34\x63\x64\x0e\xd7\xea\x69\x35\x48\xdd\xbe\x96\x34\x3e\x35\x1d\x09\x60\xb9\x3c\xae\x12\xad\x37\x15\x9e\x3c\x2f\xb2\xa8\x43\xca\x2b\x1e\x02\x82\x62\xa5\x6c\x28\x17\x16\x53\xc7\x15\x25\x68\x91\xa9\x3c\x5c\xfa\x0e\xf4\x61\x87\x79\xb2\xc9\xd2\x0a\xcd\x2f\x20\x5f\x6d\xb4\x94\x62\x21\xc6\x53\x45\x05\xd0\x6f\x8a\x93\x5e\x2f\xd5\x44\x49\xbc\x32\xa9\xd4\xb6\x4e\x96\x1e\xa6\x03\x05\x54\x01\xfa\xd0\x4e\x10\x92\xac\xcd\x89\xca\x73\x7b\x9b\xc3\xc4\xbe\x32\x88\x15\x61\x8d\x63\xa4\x70\x19\xf4\xb9\x9a\xc9\xc5\x2a\x55\xea\x0a\x73\xa6\x38\x51\xba\x20\x3e\x51\x95\xf9\x4e\x94\x33\x20\xff\xb9\xbd\x22\xa6\x80\x7d\x88\xac\xf3\x96\xd6\xec\x51\xf4\xbb\x66\x18\xa7\x94\x40\xc1\x4c\x00\x78\xce\xc4\x61\xf0\xcf\x97\x35\x26\x61\x9c\x65\x7d\x66\xa6\xfa\x6d\x33\x18\xa4\x51\xe2\xa8\x75\xf4\xf0\x00\x1f\x3b\x4b\xda\x36\x59\xda\xb7\x05\x7b\x5b\xdc\xc9\x61\x15\xff\x1c\xae\x23\x08\xea\x0f\x17\x16\x62\xfe\x88\xe0\xde\xf5\x9c\x65\x0d\x29\xc3\x92\x09\xc3\x88\x45\x39\x10\x22\xbf\xaf\xa8\xbd\xde\x2f\x3d\x1e\xd4\x3e\xad\x92\xb1\x5b\x1a\x92\x7d\xab\x9e\x3e\xcb\xd3\xae\xb2\xeb\x60\xfa\x31\xcd\x5e\x72\xa1\x8e\x24\x29\x49\x0b\xad\x12\x82\xb2\x03\x1f\x8f\xc1\x9a\xaa\xcc\xda\xb4\x3b\xc3\xb0\x60\xaf\x83\x3f\x3c\xa9\x7a\x86\x8f\x3d\xb2\xea\x77\xee\xe3\x84\xc3\x10\xe2\x4c\x95\x73\x47\x59\x1e\xf6\x54\x65\xfd\x64\xe0\x51\x6a\x27\xc7\x72\xbb\xe7\xf6\x12\x6d\x15\xfd\x22\xe2\xbe\xfb\x08\xc4\x94\x52\xf3\x68\xe1\x01\x11\xf9\xce\xd6\xe6\x6f\xda\x3f\xdb\xec\x58\x3b\xa0\x5f\x16\x7c\x7d\x75\x89\x02\xaf\xaf\x79\x69\x9d\x74\xd8\x76\x39\x2f\x17\x79\xb0\xbd\xa4\xe2\xe3\x87\xf3\xa2\x2a\xfd\x8f\xd3\x81\xa8\x52\xf3\x50\x96\x02\x16\x9c\x19\x15\x08\x78\x7c\x64\xd6\x3a\x8b\xda\xc3\x22\x45\x4d\x85\xd5\x6e\x15\x5e\xec\x3d\x8d\xdb\xfb\xc3\x5a\x74\xd3\x30\x89\x53\xb0\x34\x0b\xcc\xea\x64\xe0\xa7\x65\xc6\x25\xde\x28\x69\xce\xc2\x5e\x75\x7b\xd5\xf3\x94\x01\x6b\x45\xf3\x76\x49\xdd\x5e\x6c\xbb\x51\x1e\x1b\x27\x77\x8b\xaa\x19\x63\x1f\xf8\xc4\xed\xe3\x4e\x9a\xf5\x23\x52\x13\x68\x38\x2e\x0f\x8e\x10\x64\x48\xaa\x66\x57\xe5\xfd\x74\xd1\x61\x98\xa4\x78\xe2\x2d\xe6\x86\x22\xf8\xbf\xe2\x4a\x5c\x99\x0d\x0b\x93\x74\x87\xb1\xc9\x14\x9d\xe6\x0f\x55\x68\xf0\xc3\xf2\xb1\xcd\xcc\x95\xcd\xe9\x83\x9f\xa7\x00\x1e\x1c\x4d\xa7\x02\x17\xa1\xbc\x74\x18\xab\x0b\xa1\xf6\x11\x54\x73\xdd\xcc\xf7\x3e\x89\x70\xde\xe3\xbc\x06\x50\x8c\x35\xe4\x48\x8e\x9b\xac\xba\x7e\x21\xfa\xa5\x78\x03\x41\xfe\xe1\x40\x91\x56\x5f\x57\xee\x8a\x1b\x8f\x88\x77\x7e\x8a\x57\x8d\x35\xb0\x16\x78\x24\xe0\x5d\x0d\xcb\xb9\x41\x69\x29\xda\x28\x37\x29\xad\x11\x17\x49\x79\x9c\xb4\x88\x29\xf3\x75\xb4\x5e\xbe\xef\x70\x1f\xc6\x18\x3d\x41\xf0\x42\x22\xbe\xfd\x6b\x2a\x4c\x8b\x84\x54\xb5\x3d\x78\x52\x11\xd5\x6b\x19\x44\x97\xa7\xef\x04\x2d\x6c\x67\x5b\xf5\x0c\xf1\x25\x87\x35\x34\x85\xf5\xdd\xc9\xad\x3c\xfc\x59\x72\x54\xd8\x1a\x0f\xaf\xaa\x72\xc8\x25\x3d\x27\xe8\xdd\x6b\x95\x0b\x79\xa0\x1f\x6c\xe5\x1b\xca\x6e\xbe\x51\x3e\xe0\xdf\xea\x17\x94\x5a\xc5\xef\x53\x76\x29\x5c\x54\xf4\x4c\xb0\x8a\xae\x8c\x12\xc5\xd0\x03\xc2\x47\xde\xd3\x5c\xdc\xef\xe1\xc5\x21\x6f\xbc\x4e\x49\x33\xc2\xc9\x3f\xa6\x37\x82\x9a\xfc\xbb\xa5\x22\x3a\xfc\x00\x6b\xc5\x71\x95\xef\x9b\xe6\x12\xa8\x16\xa7\xbe\x42\xaf\x0a\x99\xe2\xb7\x50\xd1\x87\x6d\xd8\xda\xd2\x1c\xf3\x41\x95\x43\xe2\xf7\xd6\x29\xdf\x41\xbf\xeb\x1a\xd6\x26\x82\xe7\xc6\x6a\x95\x66\x23\xda\x5f\x0f\xb4\x84\x1c\xeb\x0e\x70\x60\xdb\x42\x06\xad\xc0\x58\xcf\xe8\xaa\xda\x0b\x92\x35\x07\x6a\xea\xff\x36\xad\x2e\x04\x96\x97\x90\x5b\x3b\x21\x2a\x27\xb7\x79\x98\xaa\xb2\x08\x38\xd7\x08\x6b\x22\x0d\xb2\x86\x63\xd9\x7f\x37\xf0\xc4\x22\x6f\xa8\x69\x9f\xb6\x49\x16\x73\xb0\x59\x4b\x2c\x5b\x3d\x56\xc4\xf5\xff\x17\xf6\x09\xc2\x86\xa3\x81\x9a\x63\x40\x73\x5f\x80\xae\x0d\x47\x93\xbd\x07\xd1\xbf\x28\x47\xaa\x81\xbe\x2b\xdc\x60\x83\x33\x7f\xa3\x54\xd2\xe2\x97\xd4\xf2\x3e\xac\x6a\x2f\x0b\x99\xb5\x9d\xb4\x9f\x8f\x08\xa2\xa9\x89\x56\xc5\xe1\x3b\x48\x0b\xc5\x72\x73\x4b\xa1\xec\x6f\x95\x23\x7a\xbc\x61\x9c\xe6\xb6\x03\xa2\x50\x99\x7d\xf2\xb3\x4e\x87\x35\x29\xca\x9f\x29\x55\x9b\x6d\xb4\x5d\xb0\x3c\x1b\x75\x8a\x34\xc3\x24\x8c\x2d\x5b\x3e\xd6\x24\x08\x1a\x4a\x9f\x60\x8f\xab\x04\x9a\x6e\x97\x12\x14\x58\x57\xc1\xfb\xf8\x24\x14\xb2\xee\xb0\x34\x1b\x2a\x55\x59\x36\x71\x65\x94\x1f\xa8\xfe\xd5\xd1\x27\xee\x17\x27\xff\x03\x0d\x1f\xbb\x18\xf8\x06\x22\xfb\x11\x16\x83\x85\x09\x10\x65\x58\xda\x27\x02\x49\xa9\xde\x01\x1e\xd9\x9f\xc0\xc4\xc0\x24\xdf\xa4\x2d\xc7\x3f\xa2\x9e\x78\xd4\xee\xa3\xc1\x0f\xfb\xfc\x21\xbe\x99\x4f\x14\xe1\xd4\x07\x58\x36\x7c\x32\x06\x65\x9b\xdf\x4b\x90\xb1\xce\x04\x5d\x8b\x52\xe8\x10\xee\x56\x9e\xe3\x96\xbd\xa1\xd4\xd9\xb3\x28\xb4\xf9\x63\xb4\x11\x1d\xb4\xb9\xba\x6e\x98\xf2\x6b\xb4\x73\x30\x45\xf4\x7f\x97\x8a\x6d\x1a\x75\x0b\x21\xd9\xa6\x2f\x47\x2a\xf4\x53\xec\x2f\x94\xe4\x98\x09\x42\x77\xef\x11\xe1\xa3\x6e\x37\x82\x06\x41\xe2\x08\xdc\xa3\x93\xd2\xab\x36\x3e\x5f\x16\xec\x11\x4f\xfc\x05\xca\x29\x4d\x51\x64\x26\x40\x3c\xda\x84\xb8\xe0\xad\x6a\x4a\xf1\x10\x36\xa1\x48\x1b\x79\x98\xc5\xb2\x09\x7b\x85\x8d\x91\x06\x28\x9b\x2a\x9a\xa0\x57\x6a\x48\x3c\x0e\x34\x4d\x1c\x2d\xda\x49\x25\xe3\x7a\x8a\xde\x3c\x1c\xe3\x64\xcb\x7b\xf6\xb3\x9a\xc1\x4a\x33\xcc\x24\x5d\xd3\x45\xac\x32\xcf\xa6\xed\x0a\x4c\x16\x9f\xd4\xb0\xa9\x1f\xa0\xad\x97\x2e\x59\x07\x21\x91\xbe\x9f\xa2\x17\xfa\x1d\xd5\x68\x37\x59\xf4\x6a\x9a\x18\x78\x1b\x21\xe3\x56\x04\x39\xa3\x5a\x17\x0b\x21\x67\xfb\x12\xf6\xeb\x31\xd8\x9a\x8e\x7c\xdb\xf6\xa2\xa4\x33\xe1\x31\xfc\xb7\x15\x99\x2c\x98\xbb\x10\xac\x4d\xb6\x3c\x10\x24\x49\xb3\xbe\x89\x77\x78\x35\x31\x66\x98\x11\x91\xcd\x6a\x55\xc1\x01\x9d\x28\xbd\x3e\xc6\xc3\xb4\x9b\xe1\x8b\x26\x08\x75\x8d\x65\x74\x06\x35\x7a\x37\x37\xe8\xf8\x8d\xb6\xb4\xfc\x96\xef\xa7\xc4\x22\xb3\xcb\x03\x94\x8f\x2b\x6a\x6a\x6e\x06\x38\x1a\x13\xdd\x98\x51\xda\x54\xac\xe0\xe5\xf8\x3a\xe6\x45\x0c\x13\x06\xca\x71\xea\x54\x6f\x85\x31\xd9\x2d\x3f\x1b\x78\x9a\x9e\x06\x7f\xa0\xdc\xa3\x9a\xd2\x85\x8d\xf2\x9e\x20\x32\x44\xd8\x53\x75\xbd\x5f\x53\xe5\x8e\x41\x94\xe4\x8a\x01\xf5\x96\x62\x40\xbd\x55\x57\x9f\x6c\xe6\x89\x19\x8c\xc0\x63\x6f\x92\xff\x12\x7e\x6e\x1d\xf9\x2b\x16\xfe\x61\x6e\x3b\xbb\xfc\xe0\x09\xc0\xec\xbc\xb9\xb1\xef\x90\xc7\x7e\xa0\xe6\xdc\x20\xa9\x86\x70\xe9\x0a\xbe\x18\xeb\x9f\xf5\x85\x11\x22\xb0\x6e\x35\x56\xc5\x35\x85\x90\x39\x5b\x7a\x44\xcd\xd9\x40\x95\x9f\xaf\xd7\xb5\x9a\x4d\x0c\x1a\x70\x6c\xf9\x3b\x6a\xf4\xe6\x52\xe9\xa1\x35\x53\x60\x96\x40\x8e\x01\xde\x16\x74\x97\x4e\x2b\x84\xd1\x42\x14\xdb\xce\xce\xea\x43\xf0\xbc\x9c\x64\x02\x4a\xf1\xbe\x1a\x78\xbb\xb8\x89\x20\xcd\x4b\xb7\x96\x0a\xd4\xb4\x11\x8c\xaa\x20\xe3\xb5\x72\x3c\x16\x28\xa7\xbe\x3e\x56\x57\xdd\x3f\xdb\xb4\xc3\x2c\x1d\x58\x93\x4c\x8c\xa2\x99\x1c\x34\x8a\xe5\x76\xe0\x4b\xdf\x54\x42\x70\x5d\x93\x75\xa4\x6a\x8e\x38\xe1\xae\xae\x4e\x31\x4e\x0f\xc6\x7f\x5b\xcb\xe3\x43\x06\xc3\xbc\xb7\x9d\x8c\x8e\x2b\x07\x56\xe6\x48\xca\x81\x7e\x9c\xbd\xd1\xaa\x9e\x31\xd6\xf2\x6e\x00\x5e\x5c\xd7\x6e\x7e\xce\xfb\x38\x4f\x36\x50\x67\x30\x32\xcf\xb6\xa6\x99\x54\xa5\x0d\xb0\xcb\x15\x59\xf3\xf4\xc1\xea\xf7\xf0\x14\xbf\x00\x0a\x4a\x01\x57\x57\x8b\x11\x46\x69\xdb\xaa\xaa\x84\x5e\x53\xf4\x2d\x0f\x90\x85\x90\x2b\xa7\x5b\x82\x43\x39\x0e\xd7\xe6\x94\xae\x3c\x41\xff\x76\xea\xef\x51\x20\x78\xa0\x49\xc6\x86\x5a\xf5\x7b\x1f\x5d\x55\xd6\x61\x5d\x6d\x92\xd8\xb4\x31\xb3\x8d\x88\x15\xf8\x3b\x3e\x1e\x9b\x3c\x9c\x3e\xd8\x8c\x4d\xb8\x18\x0f\x73\x19\xc1\x81\x77\x5d\x57\xb2\xbf\x67\x11\x47\xc0\x73\x9d\xd9\xcc\x04\xfa\xfc\x5c\x65\xff\x77\xd0\x0d\xc3\xd6\xa0\x46\x26\x1c\x9a\x8d\xfd\xb3\x1b\x6b\x7a\xd4\x16\xe2\x05\x1b\xc0\xef\xc2\x20\x7d\x47\x71\xdb\x31\xda\x1e\x7d\xd3\x9b\x6a\x6c\xbc\x3d\x2c\x0a\x9b\x21\xed\x76\xd5\x23\x87\xd5\x3e\xac\xf0\xd9\x6d\x93\x00\x67\x8b\xe6\x05\x7a\x2c\x7c\xac\xfc\x6b\xd1\xb3\x99\x8d\x12\xf8\x57\x56\x1f\x0a\x54\x01\xec\x9c\x22\x18\xcc\xac\x89\xe3\x15\xc2\x11\x23\x58\x7f\x08\xb8\x24\x34\xc1\x8f\xaa\xd9\xc9\xfb\xb8\x7e\x94\x18\xaf\xe0\x4d\xc2\x12\xfd\x9f\x8a\x3f\x7a\x52\xcb\xa7\xed\x54\x0a\xa0\xc7\xf1\xa8\xe0\x05\xff\x5c\x99\xd8\x15\x6b\xb2\x27\xaa\xd5\x83\xf8\xe5\x06\x22\x10\x3c\xa6\xcb\xd4\x14\x74\xb8\x8a\x6a\x25\x31\xae\x2a\xf0\xf4\x48\xaf\xe1\x35\xa2\x5d\xf5\x7f\xa8\x01\x10\x2e\xf5\x23\x42\xd8\x8d\x35\x8d\xcb\x5f\xc3\xf6\x44\xf2\x8b\xab\xc4\x0a\xe5\xba\x3f\x5c\xe3\x14\x56\x3b\x3e\xbf\x95\xda\xc6\x92\x5e\x38\xbd\xd6\x7f\xff\x48\xab\xca\xd3\x64\xa2\x4e\xeb\x04\x6c\x5d\xf5\xf0\xfe\xa3\xc1\x48\xcd\x47\xc3\x45\x90\x50\x48\x55\x78\xd3\x22\x7c\x6e\xef\x5c\x73\xdf\xf4\x76\x15\xfc\x5e\x45\x5a\xc9\x99\x15\x3d\x79\x84\x3a\x3f\x26\xa3\xec\x32\x2e\xcf\x0a\xf4\x07\x7a\xee\x7a\x72\x55\x43\x7f\xd7\x15\xbb\x08\xad\x42\x93\x84\x36\x27\x52\x6a\x6c\x91\x2d\xab\x3e\x6d\x81\x21\xe0\x63\xf0\x61\xf2\x1f\xb5\x6a\x68\x93\xf3\xc2\x64\x0e\xef\x29\x96\x8b\x1e\x82\x98\x2b\xc9\x2c\xda\x51\x1a\xf6\x6c\x3f\xca\x8b\x11\x60\x2f\xae\xf3\xd3\xa0\xbd\x44\x4d\x18\xdb\xa4\xc3\xd3\x1d\x42\x70\xdc\x70\xdc\xf4\xe3\x64\x4b\x95\x7f\x5e\xa0\xf6\xa1\x57\xcf\x0a\xd4\x5c\x4d\xed\x8f\xf4\x0c\x94\x0f\x68\xc1\x30\xa0\x2a\xf0\xa1\xd1\x85\x31\xcb\x23\x6d\x08\x93\x2f\xda\xce\x94\x0a\x13\x19\xb6\xc8\x83\xa9\x64\x25\x46\x9a\x6b\xb4\x33\x7e\xe3\x31\x35\x0b\xfe\x6f\x9c\xc3\x31\x0b\x85\xcd\x96\x4d\xd6\x21\xec\x19\x5a\x26\xd0\xbb\x45\x35\xfa\xae\x2a\xc0\x70\x70\x0f\xcf\xfb\xf3\xfa\x9e\xa8\xe9\x44\x3c\xc7\xc8\x81\x9c\x72\x0b\x1e\xfc\x65\x97\x6c\x16\x9b\xdc\x97\x4f\xb0\x64\xd1\x74\xe3\x63\x25\x69\x3e\xc8\xd2\x5e\xd4\x06\x63\x58\xb5\x46\xb1\x23\x4f\xd3\x66\xe1\x63\x85\x4f\x1e\x98\x70\xd1\x66\x93\xd5\x3f\xca\x74\xab\x2a\x54\x03\xc8\xc3\xc7\x70\xc2\x32\xf7\xea\xc7\xa3\xd2\x76\x1c\x75\x49\x73\x74\x42\x4d\xa9\x62\x2a\x8b\x2b\x27\xd8\x77\xb0\x91\xe3\x3d\x9d\xf9\xbd\xcd\x41\x6c\xba\x43\xac\xd3\x17\x74\xbf\xcf\x0d\x97\x8c\x95\xbd\x9f\x6a\x2e\x0c\x93\x6e\xd4\x50\xd2\xc3\xa0\x4f\xe7\x63\x95\xb7\x47\x49\x68\x13\x92\xc2\xa5\x3f\x86\x7f\x44\x35\x87\x8f\x55\xea\x10\x25\xf9\x30\x8e\x20\x8c\xcf\x83\xd9\x40\x8b\x20\x82\x3e\xad\x1a\xe5\xf7\xea\x00\x4c\x85\xad\x76\xd0\x73\x7b\xfd\x18\xbb\xeb\x92\x8f\xd3\x78\x90\x54\x74\x16\xf9\x6a\x29\xc6\x07\xae\x96\x7e\x7c\x00\x37\x25\x71\x59\x1d\xe1\xb2\xe4\x46\xdc\xd1\x71\x04\xb5\x8a\x16\x44\xb5\xc4\x5e\xb2\x26\x4e\x87\xf9\x0a\x96\x92\x53\xde\x74\x41\xe2\x79\x37\xbe\xb1\x80\xb9\x0a\xaf\xe2\x08\xb1\x7e\x59\x19\x1e\x4d\x50\xdd\xc2\x00\xdf\xa7\xc5\x02\xf9\x58\x31\xe5\x89\x7e\x34\xfa\xab\x7e\x10\x1b\x30\x78\x3e\x56\x2d\x86\x2c\x8d\x63\xdb\x99\x54\x46\xfb\x18\xbc\x0c\x62\xc9\x8f\xe1\x8b\xf8\xa4\x54\xc5\xfd\x63\xea\x85\x2e\x45\x4b\x11\x0d\xf0\x7e\x65\xda\x6b\xd7\x79\x80\xc3\x25\x47\x6a\xde\xb1\x79\x91\xfd\x7f\x8c\xfd\x7b\x8c\x24\xd9\x75\x26\x86\x77\x67\x55\x75\xf7\x0c\x67\x86\x3d\x2f\x92\x92\x7e\xd8\x4d\xed\xf2\x67\xda\xd8\x59\x1a\xfe\x67\x61\xf3\x9f\xc8\xad\x2a\x8a\xec\xb2\x58\x6c\xf4\xb4\x7a\xa4\x81\xbd\x98\x5b\x91\x37\x33\x63\x2a\x32\x22\x19\x8f\xaa\xa9\x81\x0d\x18\x32\x6c\x18\x82\x60\x40\x30\xbc\x02\xd6\xeb\x85\x2c\xaf\x29\x79\xd7\xf6\xae\x1e\xab\xdd\x95\xa8\xcd\x14\x49\x71\x28\x3e\xe7\x41\xce\x70\x5e\x3d\xfd\x7e\x77\x57\xbf\xdf\x5d\x6d\xc4\xf9\xce\xb9\xf7\x64\x45\x8c\x57\xff\x0c\x22\xa6\x2b\x33\x23\xee\xe3\xdc\xf3\xf8\xce\xf7\xa5\x1b\x78\x63\xa7\x13\xa7\x8c\x94\xa2\x3b\x06\x47\x50\x35\xc2\x88\x56\xce\x69\x07\x0b\xfe\x20\x96\xfe\xc9\x69\xe1\xb4\x5e\xef\x49\x55\xb6\xbc\x45\x2f\xb0\x75\x37\x50\x30\x43\x1c\xb6\xf0\xaa\xbf\x0d\xb7\x14\x86\x6b\x0b\x21\x9f\xf0\xb7\xc3\xdf\x9e\xa2\x76\x17\x7a\x2e\x25\x63\x78\x8d\x0c\x1c\xce\xac\x0f\x95\x2c\xe1\x9e\x09\x9d\x1c\xa2\x8f\x53\xbd\x25\x9c\xf5\x99\x8e\x22\xae\x79\xb4\xa3\x78\xf7\x8e\xe8\x10\xf1\xb0\x72\x36\x3e\x51\x83\x49\xbd\xf4\x52\x7b\x90\xa6\xdd\x75\x12\xf7\x9e\x51\x13\x0d\x72\x3a\x25\x10\x2a\x4c\xc9\x57\x95\x13\x3c\xff\x45\xcc\xb8\x8b\x90\x0e\xcd\x3b\xf6\x25\x85\x06\xfc\x50\x47\x2c\x67\x9a\x76\xc6\xf3\xed\xae\x1d\x95\x45\x64\x73\x0e\x33\x31\x90\x23\x18\x32\xbe\x69\x54\xa4\xe9\xc5\xa2\xcf\xcd\x82\x45\x81\x7a\xf7\x53\xe3\xff\xa0\xa1\xa1\x32\x2d\x93\xc2\x66\x99\x5d\x4b\x63\xd2\x9f\x17\x1e\x7d\x8c\x3d\x78\xc9\xf9\xba\xb1\x75\x67\x63\x05\x6a\x49\x32\xa3\x5e\x11\x1f\x59\x15\xcd\x51\x2c\xbc\xec\xf5\x7e\xf5\xe5\x76\x1c\xad\xd8\xcc\xc4\xad\x69\x7e\x6a\x17\x79\x5c\xd4\xb8\x17\xe4\x07\x72\x25\x4a\x76\x5b\xb1\x92\xde\x56\xe8\x8f\xaf\xfc\xfd\x65\x15\x64\x5d\xc7\x08\xb2\x62\x9b\xaa\x36\xde\x55\xad\x9c\xf6\x15\xee\x81\xdf\xad\xe8\x22\x2e\xea\x94\xd7\x09\x9a\x5a\xf8\xb5\x60\x59\x72\x14\xca\xee\xa7\x2e\x07\x0a\xb9\xfe\x40\x29\x79\xde\x72\x78\x67\xb3\x92\x13\x99\xd5\x8c\xf7\x07\xde\x55\xfd\x7e\x50\x1a\x17\xca\x2e\x77\xa8\xbe\x62\xb3\x30\xca\xcd\x4a\xcc\xdd\xc7\x48\x27\xdc\x54\x1f\xc4\x62\x45\x1d\xfd\xb8\xcb\xc0\x66\xb6\x88\x32\xea\x51\x9d\xf1\xdb\xe9\xba\x02\x89\x33\x6e\x0b\x0f\xf2\x30\xf8\xb4\x16\xdb\x8e\x4d\xe5\xdd\x11\x7b\x26\x33\x84\x08\x30\x5e\x03\x38\x03\x0f\xb6\xe0\x72\x0a\xff\x95\xb2\x40\xc4\x7a\x84\x3c\x34\x7e\x16\x07\x0d\xc7\xdf\x81\xaa\x30\xc1\xb8\x63\x34\x7f\x77\xac\x30\x5f\x17\x6a\xed\x52\x8b\x07\xdb\x83\x34\x63\xbe\x39\xfc\xfe\x1d\x18\x36\xfc\xc6\x59\xc5\xae\x38\x53\x03\xa1\x89\xcb\xb5\x66\xe2\xd2\xaa\xae\x0e\xa6\x3b\xe6\x9b\xe0\xd3\xee\x1d\xbe\x56\x46\x49\x51\x2d\x91\xa4\x20\xc9\x28\x57\xc1\xd9\x49\x51\x37\x5f\x4f\x1e\x57\x29\xcb\x78\x95\xd2\x6e\xf0\x78\x67\x27\x9e\x57\xe2\x01\xf9\x37\xcc\x82\xee\x38\x26\x8a\x41\x4a\x52\xef\x2b\x99\xed\xce\x29\x88\x5a\xa0\x40\xe9\x77\x30\x58\x08\x61\x77\x4f\x94\x37\x17\xa8\x04\xf5\xd5\x26\x59\x93\xcf\xb6\x4d\x12\x0d\x39\xb2\xc7\xf1\x09\xca\x6f\xbe\x9e\xf8\x5c\x5c\x6c\x57\x4c\x92\x26\xb4\x66\x60\xa7\xaf\x05\xbe\xdb\xe4\xdd\xb1\x82\x9d\x9e\x53\xbe\xd5\xc0\x9a\xb8\x18\x74\x37\xc0\xdf\xa5\x64\xe6\x7d\x37\x50\x53\x9b\x4c\x3a\x5c\xd1\xed\x9d\xa7\xb5\x40\xcb\x69\xd5\x6a\x67\x42\xb2\x5b\x44\xa8\x8d\x7c\x00\x37\xb5\x39\xa7\xf1\xc0\x3c\x07\x81\x47\xe9\x71\x91\x87\xbf\x83\xef\xc3\x2c\xfc\x21\xed\x62\x38\x52\x6f\x28\x39\xef\xcb\x81\x87\x69\x70\x5b\x81\xb8\x9f\x02\xa5\x89\xd3\xc4\xce\xfa\x52\x3f\x12\x9f\x2c\xbe\x38\x9e\x42\x9d\x57\x3f\x87\x7d\x7f\xad\xb6\x6a\x0f\x7e\xb5\x9d\xc7\x51\x17\x4c\x40\xa2\xc5\xad\xd5\xf2\x7c\x4b\xdb\xc8\x14\x59\x9a\x70\x37\x8c\x2b\x94\x57\x03\x25\x85\x72\xef\x19\xf7\x2b\x9f\x2a\x51\xe4\x3f\x87\xc7\xbe\xad\x01\xf6\x19\x91\xdd\x75\xc5\x82\xf2\x39\x3b\x9c\xad\x22\x51\xf1\x65\xaa\x4f\x20\x69\xc8\xa8\x6a\x80\x14\x40\x38\x8c\xa3\xef\x94\x72\xce\x06\x69\x3e\x8a\x0a\x13\xef\xd6\x08\x17\x3f\xd7\x0f\xe0\xe3\xc0\x96\x7d\x6b\xac\xe4\xed\x91\x50\xc1\x52\xe5\x96\x0b\xd8\xfb\x07\xf0\x06\xd8\x97\x6c\x08\x43\x9e\x27\x70\x84\x68\xb3\xb8\xda\xd3\x3e\xad\x8d\xcd\x7e\xbe\x59\x25\xf4\x86\x6a\x8e\x15\xf2\xae\x53\x94\x08\x10\xda\x55\xdf\x74\x73\x41\x39\x7f\xd4\xa0\xc0\xd4\x94\xbb\x54\xde\xe2\x0e\xa1\x97\x75\xcb\x02\x9c\x8f\x1f\xd2\x93\x03\x8e\xc9\xf9\x06\xe6\x66\x16\xac\x7c\x93\xca\x4c\x9c\x86\x78\x13\xd7\x2f\xef\xf4\xf1\x36\xa7\x92\xfe\x89\xed\x7e\x9a\x86\x06\xd1\x1f\x7f\xb5\xf4\xf9\xb4\x5e\x10\x6a\xc8\x02\xce\x19\x52\xc2\x9f\x24\x8b\x83\x65\xfc\x78\x47\xd9\xec\x67\x91\x6d\x43\x76\x6b\x17\x83\x23\x11\x63\x32\x86\x1b\xa3\xf9\x04\x92\x19\x58\x50\xdf\x21\x57\x0f\x49\xe9\x37\x03\xcf\xce\x0b\x92\x6b\x6c\xbb\x3b\x28\x15\xc3\x4c\xdc\x43\xd6\x01\xcb\x0e\x2c\xe4\xf0\x62\x9e\xed\x28\x6d\x9f\x63\x63\xd5\x71\xf1\x7d\x15\x4a\xec\x9e\x50\xa1\xda\x51\x01\x2c\x2c\xfa\x95\x2d\x59\xc7\x5f\x7b\x76\x42\xa6\x48\x9a\xb0\xbd\xad\xb0\x49\x2f\xb2\x31\x87\x68\x30\x16\xd8\xe2\x7c\x5d\x83\x70\x01\xcc\x42\xf8\xbb\xa8\x17\x31\x2e\x19\x7e\x02\x27\x62\xf8\x46\x67\x17\x23\xa6\xf6\x90\x82\xaa\xc7\x3f\xfe\x55\xa0\xfb\x61\xbd\x89\x8c\x92\x35\x93\x45\x66\x45\xb0\x7b\xac\x23\xa3\xda\xc0\xce\x2b\x50\x96\x19\x3e\xa2\xfc\xd1\x2b\x88\x92\x1c\xb3\xa8\x4b\xb1\xbe\x49\xfb\x1b\x05\x7a\xc8\xeb\xc1\xd7\xbd\x31\x56\x42\xe6\xf7\x54\xdd\x05\x5a\x32\x52\xe8\xa0\x85\xc5\xc2\x0c\x35\x84\xe4\xd2\x52\xbb\x6f\x62\x20\x8c\x60\xd5\x81\x11\x01\x1f\x04\x5f\xab\x44\xe2\xd0\x64\xab\xb6\xa0\x2a\xbb\x30\xae\xee\x9c\xd0\x72\x13\xf1\xd1\x6a\xe9\x20\xb8\x3e\xa3\x1e\xe9\x75\xa5\xd0\xca\x42\x1c\xfc\xe9\x8e\x6a\x3f\xf9\xc3\xc0\x47\x08\x77\xe8\x25\x38\x8c\xd0\xf8\x8a\xb7\x61\x45\x10\xeb\xd4\x63\xf1\x43\xf3\x95\x2f\x69\x67\x3d\x46\x80\x79\x81\xb1\x9e\xc1\x5a\x07\x9f\xef\x2e\x02\x38\xae\x9b\x35\xe9\x04\xb4\xf3\x22\x65\x7c\x1d\x7e\xfc\xa6\x7e\x92\x9b\x0a\x9c\xb8\x66\x07\x51\x18\xdb\x7c\x4e\x2d\xa6\xdb\x1a\xfc\x71\x1a\xc7\x0e\x12\x81\x20\x93\x71\xea\x8f\xbf\xf4\x82\x63\x24\x7b\x46\x91\x7b\x17\xd5\x6a\x4d\x13\x38\xd0\x8e\xa7\x50\xd5\xf7\x4e\xd7\xb0\x7b\x87\xe6\xf7\xb7\xcd\x68\x94\xa5\xa3\x2c\x32\x05\x3c\x1f\x7c\xf5\xef\xd3\x0c\xf0\x75\x13\x0d\xcb\x20\x1d\x8a\x4c\x83\x8e\xd1\xf8\xba\x96\x2e\x38\x30\x7f\x40\xba\xe3\x5b\x0a\x75\xca\x39\x59\xa1\x51\x53\xbb\xc9\xf6\x8a\x3d\xea\x0f\xdf\x0f\x7c\x62\xe2\x4a\xa0\x8a\x7c\xfb\x15\x7e\xf6\xdd\xc0\x7b\x30\xe0\xf3\x67\x0a\xc8\xc0\x97\x9e\x5a\x04\xf2\xe6\x9a\xb2\x6a\x21\x2d\x06\x36\x0d\x33\x13\x6e\x68\x8a\x63\xe0\x51\xf9\xba\x46\x2a\xb0\xbc\xdc\xce\xcb\x91\xcd\xd6\xa2\xdc\xed\x87\x26\xa4\xbf\x44\xe9\x65\x12\x5b\x93\x0f\x66\x55\x52\x78\x0b\x69\x50\x66\x2f\x19\x7b\x54\xd1\x09\xdd\x8b\xae\x68\x20\x6d\x1c\xd9\x56\xb5\x02\xb8\x7f\x26\xf0\x54\x16\x67\x54\xa9\x3a\x4b\xf3\x3c\x4a\x22\xe2\x5f\x84\xcd\x45\x73\xaa\xe8\xe3\x56\x9f\xe2\xff\x4f\xa6\x83\xff\x7f\xa0\xd7\x53\xdf\x26\x51\x5a\xe6\x95\x71\xf2\x5c\x12\x47\xd4\x11\x79\x64\xea\x54\x4a\xb9\xc5\x1a\x11\xde\x2e\x98\x75\x27\x84\xe4\x1c\xd8\xb3\x98\x3c\x61\x01\x56\xbc\x3b\x97\x54\x6e\x0f\x32\x80\xa4\xbd\x2f\xfb\xc1\x13\x0c\x9f\x86\xcb\xe9\xba\x13\xaa\xaf\x80\xb9\x84\x84\xbb\x00\xd0\xbd\x1d\xaa\xbe\x8d\xb3\x4c\x3e\x14\x9e\x0a\x92\xeb\x60\xed\x76\x6e\xa3\x57\x4b\x6e\xfc\x70\xa3\xbd\xb4\xe4\x46\xbb\x41\x2d\x75\x98\x26\x16\xb1\x33\x10\x01\x3f\x80\xb7\xce\x37\x4d\x54\x90\x5d\x1b\x47\x6b\x36\x9b\xf1\xc2\xed\xa0\xc6\x86\x0b\x84\x89\x92\x74\x5c\x43\xf2\x31\x36\x65\x7f\xc0\xa4\xc5\xaa\x44\xe6\x74\xd6\x6b\xef\xb5\xb0\xd0\xe6\x84\x2c\xb2\x76\x38\xaa\x1f\x2a\xdc\xf5\x23\xaa\x6e\x7f\x6d\x8a\x5a\x73\x38\x32\x99\x45\xc8\x8d\x80\xe8\xb2\x42\x77\x5e\x56\xc3\x1d\xdb\xa2\x60\x1a\x8c\xfd\x5b\x97\x61\xc9\xe0\x7c\x5e\xa7\xb4\x10\xca\x5e\x8b\xf2\xff\x1c\xc2\xbc\x6b\x93\x48\xd0\xdd\x30\x59\x7b\x3a\x8a\x31\x6d\xcf\xc4\x7b\xab\x69\x6e\xf7\x56\xab\xc3\xe5\x16\x16\x16\x1d\xa6\x8a\x66\x19\x03\xf0\x09\x0a\xc7\xb8\xac\x3d\x51\x30\xae\x77\xe9\xe4\x71\x4c\xf0\xd5\xd3\xe0\x3d\x1e\x41\x99\x07\xde\xd4\x0c\x17\x3b\x80\x24\xe3\xa5\x46\x47\xd4\xcc\xde\x09\x8d\x9f\xc8\x94\x57\x13\x00\xaf\xe5\xe9\x8e\x5b\xa9\x8f\x3f\xa3\xe2\xf0\x59\xb4\x20\xd2\x5a\xf8\xe5\x27\x27\xfe\xb0\x7b\xaa\xf3\x98\x12\x03\xc9\x3f\x53\xbd\x8a\x88\x37\xd0\x83\x49\x43\x61\xe5\xd9\xa1\x7a\x82\x28\x0a\x51\xe6\x53\x18\x22\x1c\x7d\xff\x8a\xab\x1e\x88\x4a\x5a\x13\xa4\xda\xf0\x6d\x57\x90\x8f\x80\xd9\xbc\x89\x6a\x1a\x06\xe0\x2e\x2d\x33\x9c\xb0\xbb\x27\xbe\x87\x8f\x5f\x18\xbf\xb3\x1b\x7d\x2b\xf0\x13\x5a\x13\x8f\xaa\xdf\x81\x13\xdd\xa9\xb7\x78\xf5\xa9\x9d\x9d\x6a\x8a\x5c\x2d\xad\xb2\x74\xf0\x39\x5b\x20\xb6\x84\x19\xd9\x85\x91\x04\x68\xab\xa5\x4a\xa4\x87\xc9\xc9\x14\xb6\x03\x9f\x55\x3a\x4c\xfd\x6d\x42\x68\xf7\xb8\xca\x52\x8c\x36\x66\xbd\x01\x78\x1d\xe7\xb5\x00\x08\x7c\x2c\xb2\x43\xe3\x1b\xae\x6c\xaf\x98\x2d\x2f\xb7\x97\x96\x9e\x57\x02\x8e\x1f\x20\xcc\xe2\xc2\x23\x1c\x24\xa7\x67\xeb\x62\x21\xce\xf9\x23\xb0\xe4\x35\x8f\xcd\xf5\xe1\x58\xe9\x00\x7d\x63\xec\x6b\x7a\x40\xd6\x22\xf4\xf8\x4e\xa0\x9c\x53\xf0\xe9\x8a\x4d\xa6\x01\x85\x6f\x77\x6e\x4a\x0f\xa0\x6f\xbb\x4f\xd0\x38\xc2\x5b\x67\xe7\x59\xf4\x82\x94\xc2\x11\x08\x47\x60\x5e\xd0\xbd\x8a\x45\x30\x33\xf1\x6d\xd6\x97\x88\x91\x54\x0e\x62\x32\xb0\x0e\xdf\xe3\xda\x68\xaf\x68\x95\x81\x19\x02\x99\x00\xcc\x8b\x60\x85\xa5\x9b\x91\xfa\x45\x88\x04\xa1\x1e\x0c\xd7\x5d\x4d\x26\x6e\x60\xf3\x1c\x51\xb9\xdb\x27\x9c\x37\x92\x86\x10\x7f\xa6\xad\x5b\xd0\xa3\xab\x09\x40\x01\x5b\xe0\x9b\x0d\xa2\x4a\x2b\x51\x21\xe5\x7b\x4c\x13\x68\xd2\x34\x7c\x13\x2f\x73\xca\xa5\xd7\xa2\x24\x1f\x59\xc4\x7a\x2d\x25\xa4\xf5\xa1\xc2\x0c\x7d\x38\x95\x19\xef\x1a\x94\x5c\x60\x0a\xee\xab\x4a\x0e\xdb\x62\x98\xff\x33\x4a\xc1\xa9\x8a\x25\x49\x73\xc7\x43\xcb\x6f\x2a\x92\xc3\x9b\x2a\xcf\x31\xca\xa2\xb5\xca\x2b\xa9\xfe\x95\xbb\x73\xe8\x17\xa4\x53\x67\xaf\xd2\x6e\xcf\xf3\xc8\xa0\xad\x01\xe6\x8b\xa9\x73\xf9\xa6\xf3\xac\xee\x8d\x49\x57\x6c\x37\xb2\x49\x68\x67\x69\x5b\x33\x2f\x90\xa6\x88\xde\x54\xd2\x20\x80\x86\x09\x79\x50\x03\x4d\x52\x5e\x18\x35\x64\xae\x21\xc5\x37\xa7\x4c\xcb\x3d\xa7\x65\x0e\xc8\x3f\xd2\x24\x24\x93\xe0\x6e\x26\x7b\x95\x17\x42\xbc\x30\x2d\xc4\xd3\x80\x4c\x34\x31\xca\x17\x51\x61\x92\xa8\x1c\x2a\x69\xe6\x63\x81\x4f\x1e\x1e\x53\xb8\x5f\xbb\x66\xba\x9c\x92\x62\x34\x5b\xe0\x75\x29\x8e\xd6\x0e\xd9\xe7\xda\x79\x6c\xad\x0f\x78\x04\xa8\x59\xfd\x10\x5f\x07\x0d\xf4\x57\xb6\xdf\x6f\xa9\xfe\xa2\x4b\x4a\x33\xe2\x92\x92\xb8\x1b\x99\x0d\xe2\x0c\x44\x84\x84\x38\x03\x59\x4f\x80\x37\x80\x51\x61\xac\x0e\xed\x62\xec\xb1\xd9\x89\x67\xef\xbf\xa1\x40\x3f\x5c\x03\xe1\x2f\x82\xe9\x80\x61\xc6\xaa\x41\x97\x04\x6b\x97\xf3\x57\xe1\xfc\xe0\xfe\x80\x1a\x84\x71\xdf\x72\x3b\x5d\xb3\x59\x2f\x4e\xd7\xdd\x18\x88\x12\x9f\x77\x8e\x4f\x4f\x19\x26\x33\xcc\x09\x2d\x88\x5f\x3b\xcb\xa0\x06\x51\xd9\xf0\x98\xe9\x19\x84\x76\xc2\x98\x4f\x63\x00\xd3\x78\x7d\xac\x3a\xfc\xf7\xe0\xe4\x81\xbf\x77\x5f\xe5\xec\x2f\xb9\x4d\x4b\xd4\x15\xfd\x2c\x2d\x93\xee\xac\x37\xb0\x57\x55\x7f\xda\x49\x44\x1a\x1a\x27\x09\x8b\x7c\x53\x25\xce\x56\xd2\x24\x89\xec\x8c\xea\x77\x65\xca\x3d\x47\x1c\xe5\x5a\x3a\xfe\xed\xd4\x1b\xc7\xb6\x78\x82\x1e\xd2\x19\xed\xfd\x5f\x75\xbd\x63\x48\x9c\x20\x0f\x04\x04\x9d\x34\xd1\x28\x6a\x66\x4e\x4c\xe2\x40\x7e\x04\xc4\x6c\x5c\x37\xc3\xcb\x3c\x82\x79\xc2\x99\x74\x46\x81\x96\xef\x8f\x3d\x8e\xef\x08\x39\x42\x92\xb6\x6b\x39\xa6\xbe\xc3\xe4\xa0\x20\xfb\xb3\xb7\xa3\x2a\xee\x65\x16\x0e\x0c\x85\x2f\xde\xfc\x30\x97\x91\xc0\x20\xa5\x58\x11\x9a\xc2\xf6\xd3\x8c\xf9\x95\xf5\x3e\x40\x46\xe2\xd6\x94\x2c\xdc\x33\xdb\x98\x5a\x2a\x53\xc3\x0e\x38\x1f\x19\x08\x04\xe4\xfc\x68\xe8\x0d\x5b\x37\x6b\x16\x3f\x06\x77\xe6\x2c\x22\x73\x4d\xd4\x81\xe1\xba\xaf\x50\x28\xa1\x4d\xf2\x34\xcb\x07\xd1\xe8\x63\x59\xde\xf4\xc4\xd9\x6c\x88\x9f\x90\xb5\x5a\x7d\x08\xa7\xe6\x9f\x60\x46\x44\x3e\xb7\x21\x06\x1e\x99\x62\xc0\xef\xe4\x58\x67\xab\xef\x92\x0e\xf6\x67\x14\x4a\x8a\xea\xdc\x54\xb3\xa9\xce\x59\xe6\x0a\xa7\x3d\xe9\x62\xb2\x03\xa2\x46\xf0\x47\x4d\xad\x49\xa9\x59\x75\x6c\x5a\xae\xb7\xa6\x7a\x40\xbe\x09\x9e\x56\x8e\x10\x31\xea\x56\x46\xb6\x9a\x76\xb8\x7f\x47\x15\x34\xfd\xa8\x13\x75\xe8\x19\xea\x2e\x6b\x39\x1a\x9f\x7b\x9a\x2b\xf7\xde\xf8\x19\xe5\xff\x27\x6b\x95\x7f\x9e\x84\xbc\x41\x44\x95\xd4\xbf\xc3\x3d\xa5\xa4\x7d\xbe\x49\x1c\x72\xc5\x46\x2f\x4b\x47\x24\x5e\xf5\xb8\xd6\xc6\x38\xee\x0a\xda\xa3\xd8\x6c\xa4\xbd\xde\x8c\x0f\x36\xaf\x2a\xa5\x9e\x93\x63\x45\x02\xf7\x61\x43\x2d\x71\xb1\x3d\xb4\xc3\x15\xce\x35\x48\xb5\x8f\xc5\x1f\xf8\x46\xb1\x86\x0f\xa3\x98\xc9\x07\xa5\x77\xdc\xa7\x5b\x36\x55\x57\xc6\xc0\x9a\x6e\x4c\x0d\x94\x4e\xee\x82\x35\x9f\xf9\xa6\xe9\x95\x4d\x92\x94\xdc\xb6\xbc\x45\xc6\x64\xff\xd6\xe5\xb1\x47\x2e\x39\x41\x26\x5f\x43\xe4\x92\x38\xdf\xd4\xd6\xdd\xc2\x42\x3b\xcd\xcd\xaa\x69\xa9\xca\xc2\xf1\xc0\x57\x17\x8f\xd7\xfc\xa0\xc5\x83\xed\x5e\x96\xbe\xca\x72\xd0\x70\x4a\x01\xfe\xe5\x6b\xc7\x4f\x3c\xb0\x49\xc6\xb9\x48\x41\x5d\xab\xa9\x3e\x51\xcb\x80\x54\x7b\xc0\x66\xf0\x97\x64\xaf\x72\xab\x97\xe2\x83\xbf\xa3\x28\x25\x4f\xd7\x9e\x6e\x79\xb9\x3d\xb2\x66\x75\x5a\x5b\x8a\x5b\x1c\x25\xf3\xe2\xa9\xf0\xc2\x5e\xb8\x0d\xf0\xae\xfa\x5f\x9b\x64\x50\x72\x33\x1c\xb9\x92\x38\x3c\xb1\x23\x58\x3e\x7c\xa3\x74\x7d\x06\x69\xaf\x37\x34\x09\xd8\x25\x98\x16\x77\xac\x30\x15\xdc\x44\x82\x05\x79\x42\xc1\x48\xd6\xd3\x32\xee\x3e\xe6\x55\xdb\x7b\x97\x00\xca\x83\x91\x7c\x9f\x0e\x6e\xd7\x95\xe5\xb8\x23\xe0\x8b\xc2\x84\xdd\x84\x80\x22\xbe\xfa\x67\xf0\xa0\x85\xdf\x42\xf5\xa4\x60\x69\xc2\x8e\x9f\x20\xdf\x00\x61\x13\xa5\xf9\x24\xac\x86\xc5\xba\xee\x79\x53\x6d\x62\x8b\x8c\xf2\x7b\x7f\x4d\x76\xbd\x83\x5f\x6d\x87\xa9\xcd\x42\x11\xbe\x72\x19\x5a\x07\x17\x3d\x33\x5d\x91\x48\x3f\xbf\x5b\x51\xc4\x7f\x5d\x0f\x30\xdc\x19\xb8\x17\xad\x8e\x12\x44\xf8\xfe\xd8\x07\xc4\x3f\xe0\x9a\x0c\x26\xfc\x8a\xf2\xa1\x6f\x8c\xb5\x10\x80\x08\xac\xb1\x04\x0a\x26\x47\x14\xb6\x35\x8d\x65\x03\x9d\xe6\xa0\x1c\xb2\xa7\x8e\x33\xf4\xdb\xf4\x3a\x30\x07\x3f\x0e\x14\x95\xc0\x9f\xb8\xfd\x90\x66\x2b\x51\x81\x65\x0d\xff\x10\xe7\x03\x0c\xcf\x3d\x2a\x43\x48\xde\x5c\x0c\xea\x68\x90\x16\x29\xbb\xc1\x30\x0b\x33\x4a\xd6\x70\xa6\xd6\x41\xf5\x42\xe5\x2c\xbe\x12\x5a\x2c\x51\x2f\x16\x4a\xc3\x29\x41\x50\x13\xd0\xa3\x6f\xa2\x84\x7c\x1d\x26\x49\x0f\x7c\xc7\xef\x8f\xc6\x4a\x83\xe6\x27\x4a\x85\xee\xb8\xca\x45\x52\xf3\x11\xf6\x9c\xf8\x29\xbe\xe4\xa7\x7b\x31\xec\x2b\x45\x66\x87\x56\x21\xa7\xb7\x14\x72\x7a\x4b\xe1\x26\x7a\xb6\x6b\x33\x13\xc7\x8c\xa6\x03\xe8\xfd\x5d\xc5\x1b\xf3\x2e\x5e\x4b\x92\x5b\x75\xc3\xbd\x9f\x55\x0b\x78\x00\x71\xee\x03\x94\xc9\xd7\xb5\xa6\xf0\xe7\xda\x2b\xf6\x6b\xa5\x35\xc5\x40\x5e\x07\x91\xe7\x51\x6c\x06\xbe\x69\x48\x48\xb7\xbb\xe9\x30\x4a\xaa\x6d\x41\xa3\x25\xd4\x6c\xb4\xa4\x04\xdf\xdd\x68\x51\xd6\xad\x97\xe9\x16\xd9\x71\x2d\x9d\xde\x84\xa3\xef\x99\x8c\xf2\xe5\xd5\x5b\x09\x3d\x4a\xcb\xd1\xce\x9d\x73\xc8\xb5\x3c\x4c\x47\x76\x56\x75\x34\x63\xc5\x21\xee\x84\x56\xa9\x13\x20\xf5\xbc\x4d\xaf\x34\x85\x64\x26\xcf\xa3\xbe\x23\x58\x00\xf0\xf8\x38\x26\x80\x6f\x54\xf0\x98\x8f\xd2\x94\x6c\xb0\x8f\xef\x4f\x05\x3a\x3c\x56\xfd\x17\xa5\x8d\xf3\x19\x8f\x93\x7d\x23\xf0\x1e\xfd\x27\x26\x64\xac\xe0\x2e\x3f\xd2\x79\x42\xa5\xd7\xa3\xa4\xbf\xcb\x83\x33\x5e\x1b\x2b\xdf\x77\x33\xf0\xc4\xfd\xdf\x1d\x7b\x30\x35\x60\x2c\x48\xfe\x31\x9f\x96\x60\x9e\x15\xd1\x5b\xf9\xb5\xd2\x30\x4a\x8a\xf5\x45\x03\xa5\x4d\x73\x41\x25\x1d\xd6\x8b\xc1\x8c\x37\x61\x4f\x2a\x8a\x7e\xe6\x07\x83\xf9\x3a\xa5\xbe\x3d\x1c\x98\x08\x00\x61\xcc\x14\x1a\xda\xf9\x5a\xe1\xfd\xba\x36\x59\xe3\x38\x55\xfa\x54\x95\x18\xc8\xdb\xce\x16\xc7\xb6\x72\x03\xfb\xb6\xbb\xc7\x8b\xb4\x3e\xf2\xa9\x89\x22\xd8\xd7\x45\xe5\x53\x4a\x4c\xe6\x33\x94\xca\x94\x64\x0d\x0d\xb3\x4c\xa3\x37\xd1\x17\x94\xfa\xdb\xde\x4e\x83\x23\x60\xc2\x30\xcd\xba\x58\x60\x92\x65\x53\x94\xd3\x30\xf1\xec\x65\xa9\x6d\xf7\xae\xe6\xae\x87\x3c\x1a\xda\xe0\x44\x42\x88\x9e\x87\x6f\x6a\x65\xc3\xe5\xe5\xfd\x14\x44\x0e\x4c\x29\xcc\x9f\x48\x57\x9e\x54\xda\x9c\x27\x6b\xde\xd3\x4b\x2f\xb5\xd3\x91\xca\x2a\x00\xf4\x72\x96\xcc\x2e\x5f\x3b\x3c\x46\x37\x02\xda\x52\xf8\x33\x60\xcc\x44\xe8\x87\x5e\x57\x52\xc5\x5e\x28\xec\xdc\xd3\x1d\xdf\x1b\x51\x39\xd7\x8f\x7a\xf0\xe7\xf1\x40\x85\xe4\x3f\x81\x41\x15\x0d\x72\x0f\xa6\xb8\xaa\x72\x07\x3f\xd5\xdd\xed\x9b\x48\x3e\xe2\x3c\x7b\x4b\x4b\x8d\xbe\x15\xa8\x94\x36\x27\xbb\x90\x61\xbd\x15\x6c\xc7\x25\x2d\x2d\xb5\xf3\xc2\xda\x78\x68\x56\x99\xea\x43\xb1\xcf\xcb\x41\x7f\x46\x25\x37\x56\x93\x74\x1d\xb4\xc7\x48\x75\x22\x99\x2f\x2a\x93\x5e\x5b\x9c\x25\xc7\xf8\x66\xac\xd4\xe3\x5b\x93\xa9\xae\xe1\x22\x82\xad\xab\x1e\xd9\x71\xb0\x7a\x39\xac\x9a\x77\x7a\x68\x7e\xb9\x6d\x4d\x0e\x57\x03\xdb\x04\x69\x20\xbe\x76\xe7\x64\x5e\xc6\xbd\x92\x0d\x22\x5a\xa5\x8e\xd3\x17\xf3\x75\xc3\x17\x03\x38\x46\x1b\x58\xa0\xe3\xbe\xab\xfd\x14\x95\x45\x61\xec\xcf\x7a\x41\xf0\xa4\x88\xc2\x68\x64\x0a\xc1\x72\x8a\x42\xa3\xaf\xe3\xb4\x10\x6a\xeb\xda\x82\x09\xed\xe3\x9a\x13\x16\xb3\xa7\x6a\x00\x2f\x72\xc4\xbb\x49\x5b\x55\xaa\x3b\xaa\x49\x02\xdd\x25\xe2\x0c\xf9\x96\x6c\xe8\x71\xd2\x0a\xbd\xfa\x0b\x48\xd5\x60\xed\xb4\x26\x4a\x09\xe2\x09\xca\x75\x63\x77\xb2\x64\x0c\xa0\xa2\x8f\x70\x39\x82\xd1\x81\x1f\xdb\x39\x90\x99\x6e\x94\xce\x7a\x07\xbc\x85\x84\xb7\xa0\xae\x7c\xcb\xc7\x79\x8d\x84\x39\xa6\xab\xc9\x80\x3e\x6c\x50\xca\x67\x69\x49\x30\x29\xc7\x95\x27\x7f\xbc\x51\x3b\x31\x2f\xd2\x70\x75\x90\x92\x86\xbf\x3f\x3e\xce\x29\x75\x4e\xaf\x01\x65\xba\xc3\x28\x13\xbf\x87\x3d\x6c\x5d\xf1\x68\x24\x8c\xc9\x0b\x3b\x9a\xf1\xb5\xe9\x2d\x85\xbf\x46\x37\xbd\xe8\xb1\x7d\x52\x9d\x3d\xc4\x23\xec\x93\xc0\xe7\xa6\xba\xaa\x7c\xb6\xd1\x26\xfd\xca\x0a\xec\xa6\x07\x62\xf6\x22\xfa\x7e\x18\xb6\x1b\x81\xa2\x01\xe3\x9d\xcb\xf2\xa7\x81\x6f\xd9\x7a\x9f\xe6\x18\x2e\x3a\x03\x85\x45\x23\x75\xfb\x21\xfd\xd2\x4b\xed\xd0\x64\x49\xb4\x06\x49\x03\xe1\xd1\xba\xa7\x04\xf8\xee\x39\x39\x3d\x3b\x0c\x5b\xbe\xdc\xb6\x4d\xcc\xca\x43\x3c\xd3\xac\x4f\x82\x2f\x2d\x4f\xec\x7b\x49\x43\x56\x2e\xb9\xe1\xef\x46\x79\x1c\xad\xb2\xf7\x23\x88\xf2\xea\x8c\x91\xa2\x6d\xbd\x26\xfa\xa5\x76\x5e\x76\xbb\x1c\x48\x32\x78\x93\xc6\x52\x80\x9c\x4f\xb9\xdd\xfd\xd7\x90\xa9\xd1\x11\xc4\xc8\x16\xb3\xad\xcf\x7d\xce\x75\x5d\x53\xf8\x84\x33\x8d\x65\x3b\xf8\x5f\xe8\x09\xf9\x1f\x1a\x7c\xc1\x28\x29\xb2\xb4\x5b\x86\x16\xfa\xa6\x92\x25\x57\x18\xbe\xdf\xc4\x9c\x88\x38\x4a\xdd\x57\x3b\x40\x2c\x30\x1c\xcd\x02\xc0\xf3\xc6\xd8\x07\x1d\xf0\x00\xe0\xf6\xbf\xe7\x10\x66\x85\x01\xf7\xb4\x34\xab\xfb\xba\x84\x97\x83\xad\x0e\xce\x28\x09\x5d\x1a\x15\xb1\xca\x23\x13\x9f\x6d\x78\x44\xa5\xe6\x4c\xbf\x9f\xd9\xbe\x29\xaa\x88\x67\x61\xc1\x43\x65\x17\x0f\xb2\x61\x41\xf8\x28\x20\x5f\x5f\x31\xc8\x2d\x09\x62\x3f\xd6\x3a\x20\x82\x15\x20\x7a\xc1\x4f\xfc\x1e\x6a\x3b\x92\x05\xa9\xbe\x4e\x14\x21\x95\xe2\xdb\x78\x4a\x8b\x86\x66\x8d\xb5\xb4\xc6\x1a\x9e\x48\x31\xab\xcb\xae\xec\xf7\xdf\xa5\xeb\xfa\xd8\xfc\x88\x6c\x6f\x3b\x47\xd7\x66\xeb\x11\x82\x4b\xee\x74\x1c\x2b\x21\x8e\x6f\xa9\xa0\x3c\x2f\x57\x86\x51\x81\xc6\x4d\xe1\x5f\xae\x9e\x94\xaf\x15\x82\xf1\xcb\x51\x81\xc5\x2c\x3d\x35\xf4\x8d\xd2\x54\xd3\x34\xd1\x95\x37\x06\x32\x48\x66\xde\x54\x79\x94\xcd\x86\x4c\xc5\xf3\x6d\x6b\x32\x84\x37\xfb\xbd\xf6\xa5\xa3\xf0\x00\x8d\x3a\xcc\xdc\xfd\x9a\x44\xec\xd2\x52\x3b\x31\xad\x29\xca\x4f\xc7\xb2\x71\x51\xb9\x9c\xd6\x64\x09\x5e\x17\x68\x42\x40\x9b\xf8\xba\x29\x33\xb8\x62\xe3\x7e\x64\xb0\x29\x71\x1a\xde\x0d\x14\xc7\xf3\x5d\xe5\xbb\xe5\x45\x66\x92\x3e\xaf\x6d\x47\x75\x52\x6d\x2f\xd5\x8a\x22\xf4\xa0\x1f\x68\x0d\x84\x81\x4d\x9e\x6e\x7d\x65\xd1\x39\x01\x38\x89\x44\x0a\xd8\x63\xdd\xee\x8d\x7d\x87\xf9\x9d\xc0\xb7\x36\x3e\xc0\xb6\x83\xc7\xc1\xc0\x65\x38\x71\x27\x03\xad\x05\xef\x71\xf5\x4c\xd5\xca\x11\x8e\x9a\x99\x16\x82\x0c\xdc\x30\x7b\x04\xc3\x04\x89\xf7\x95\x1b\x6c\xc9\x5a\x6f\xfd\x6c\xac\xca\x1b\xac\x9c\x0d\x3c\xd6\xfd\xc0\x13\x07\x9f\xc5\xae\xc0\x39\xf2\xcf\x15\xa7\x6d\x37\x7d\x92\xfe\x05\x58\x9e\xa3\xaa\xfd\xa6\xff\xec\x44\x95\x06\xc0\xec\x46\x93\x94\x7f\x7a\xe2\x09\x38\xee\xf1\x40\xc1\xe6\x3d\xc4\xbe\x40\xa5\x70\x8e\x10\x99\xf0\x36\x5f\xa3\x31\x60\x72\x6a\x55\x69\xbc\x02\xd3\x2d\x3d\x54\xb4\xdf\xf8\x51\x50\xcf\xc0\x14\xef\x24\x22\x1e\xc9\xed\x2a\xa9\x09\x56\x26\x42\x43\xcf\x4e\x2f\x9e\xf9\x0f\xfe\x4e\x47\x8e\x81\x30\x33\xeb\x2e\x9c\x75\xec\x1e\xd5\xaf\x4a\x35\xc0\xbb\x05\x6b\x06\x6a\xe8\x96\xc5\xaf\x71\x4e\xdf\x52\x7a\x62\xb7\xc6\xcf\x46\xca\x7e\xe5\x79\xb4\x66\xa1\xb9\xae\xcc\x86\x77\xfa\x8f\x2a\xd1\x8e\x75\xbb\x92\x17\xcc\xa7\xc8\xf1\xae\xd6\xfc\xbf\x17\x78\xaa\xcb\xc4\x86\x36\xcf\x4d\xb6\x31\xa7\xfa\xf3\x4f\x8d\xbd\x35\xc1\x9e\x11\x01\xa1\xea\xf7\x44\x59\xc8\x17\x7e\xea\xd2\xac\x0b\x8b\xed\x38\x1a\x46\xae\xeb\x54\xe3\xb9\xf9\xda\x67\xa8\x07\x1b\x39\xd1\x61\xfb\xe0\xe9\xb2\x4a\x46\xde\x0d\x54\x01\xab\xde\x18\xba\xbc\xdc\xee\xda\x51\x9a\x47\x05\x73\x3d\x30\x7c\x63\xac\x00\xc0\x57\x14\x7c\x7a\x53\x03\x71\x06\x42\xb8\xeb\xa2\xe9\x4d\xbd\x7c\x1f\x4e\x15\xd3\x7d\x88\xba\x6a\x6d\x52\x59\x09\x87\xc2\x98\xeb\x78\xdd\xf5\xb9\xc9\x54\xd3\x61\x56\xf9\xf0\xdd\x3d\x4a\x46\xec\x34\x23\x4b\x90\x95\x38\x4a\xf0\x19\xc7\xdd\xe5\x70\xf0\xb7\x34\xd3\xe9\x05\x95\xac\x7c\xa2\xe3\x9b\x1c\x8e\x06\x8a\x43\xf2\xee\x54\x39\x26\x4d\xb8\xeb\x9c\x2b\x3e\xc1\x54\xf9\xc7\xab\xfd\xc5\x91\x4d\x5a\x4a\xea\x00\xc5\x0d\xbe\xae\xc5\x9f\xcf\x01\xe4\x68\xc2\x81\xe5\x09\xc3\x8a\x79\x5b\x11\xbd\x9c\x87\xe5\x83\xd7\x75\xcd\xb5\x61\x60\xa5\x45\x85\x97\x9e\xc1\xbb\x9d\xd1\xfc\x62\x67\x14\xb2\x33\x0d\x43\x03\xb7\x67\xf1\xa0\xef\x11\x76\x7b\xa5\x4e\x31\xbc\x78\xb0\x3d\xca\xa2\xa1\xc9\x36\x66\x3c\x24\xf9\xaa\xaa\xbd\xbf\x35\x9e\x4a\x67\x3c\xea\x26\xf4\x0b\x9f\x52\x2e\xca\xc5\x80\x78\xc4\xa4\xbb\xda\xab\x9e\xbd\x07\x43\xc1\x55\x60\x4d\x3b\xf3\xdf\xc0\x52\xb0\xc8\x23\x59\x43\xf1\x11\xe9\x2c\x77\x9c\x48\x55\x24\xcb\xde\x03\x49\x49\x49\x63\x2b\xcd\x35\x12\x86\x6f\x04\xbe\xa1\xe5\x23\xcd\x90\xfb\x63\x02\xeb\x88\x70\x96\xc2\x48\x3e\x54\x35\xb9\x16\x07\x36\x38\xab\x1f\xa5\x4e\x16\x18\xc9\x09\x6d\x6a\x24\x69\x6e\x72\xe7\xa0\xd0\x17\xd3\x74\xa0\xac\x7a\x9f\xfc\x22\xf6\x85\x94\xf3\xd0\x33\x49\xcf\x64\xc8\x5d\x4a\x41\xa7\x1a\x1a\x29\xf4\x3c\xad\x04\xe4\xbb\x64\xae\xb8\x12\x8a\xa2\x1a\xab\x11\xf2\x8d\x8a\x14\x86\x51\x1c\x47\x69\xf2\x69\x95\x35\x62\x89\x1f\x64\xae\x8e\xd3\xf3\x88\x8e\x44\xb5\x57\xb0\xc1\x77\x41\x4f\x0e\x7b\xee\x06\x52\x5a\x4c\x18\xdc\xf1\x47\xd3\xe7\x9e\xec\x78\x4e\x9d\xa3\x04\xcc\x81\xef\x79\x13\xef\x0c\xf7\xf7\x07\x63\xa5\x52\x7a\x45\xf5\x6b\x20\xe1\x8c\x3f\xfa\x09\x4a\x09\xf0\x83\x77\x13\xf6\x15\x87\xc9\x0e\x1c\xa2\xa8\x72\x70\x97\x33\x9c\xbf\x9d\x13\x25\xab\xfa\x80\x96\x05\xd3\xa7\x62\xfa\x98\xef\x8d\xce\x79\x57\x8b\x5d\x58\x74\x55\x18\xdd\x77\x7f\x5c\xfb\x1e\x65\x3e\xb2\x09\xef\x22\x89\xda\xe9\x77\xf9\xc6\xd9\xd6\xd0\x50\x1f\x22\xdc\x2c\x38\x06\x4f\xd0\x3b\x31\x0a\x49\x77\x89\xcc\x4d\x7c\x81\x6e\x25\x4e\xc3\x55\x76\xaf\x5f\xe4\x3c\x29\x6b\x5f\xf0\x4d\x2d\x0d\x5c\x79\x81\xbf\xf8\xe5\x5f\xdb\xff\xe5\x2f\x2e\xcf\xf9\x2d\x37\xdb\x51\xc2\x16\x08\x2b\x45\x00\x56\xe1\xcb\x02\x9d\x45\x53\xf1\xe6\x9a\xcd\xa2\xde\x46\x4b\xc5\x1f\x53\x88\x1d\x6d\xef\xa2\x61\xfe\x68\xcb\x11\x84\x83\x16\x07\x87\x35\x9a\x69\xf1\xc2\xaf\x8d\xd5\x29\x7e\x12\x6b\x00\x80\xf6\xeb\x68\xab\x10\x7b\xab\x20\xad\x57\xb1\x3a\xb0\x57\x18\x31\x8d\x71\x06\x27\x07\x40\x05\xa7\x6a\x4e\xee\x17\xda\x2b\xb1\x49\x56\x6d\x31\xa3\xda\x3d\x5a\x1d\x7f\x84\xe2\x21\x25\xc7\xae\x63\xb8\x57\x73\xd3\xf2\x24\x4b\xa7\x14\x6f\xd1\x29\x25\x66\xf5\xf9\xcf\x7f\x9e\x98\x80\x14\xee\xed\x4b\x02\x6b\x54\x68\x82\x2b\xaa\x6c\x74\x81\xbc\x42\x69\xfd\xf3\x7b\xb6\x4c\x7a\x84\x34\x85\x69\xfe\xd2\x94\x5c\xad\x58\x35\x41\x2f\xa4\x65\xd1\x25\x23\xae\x52\xe8\x81\x22\x54\xa9\x17\x16\x16\x16\x28\x01\x46\x3a\x89\x2d\x9f\xf5\x3d\xa7\x9b\xee\xce\xb9\x7c\x56\x61\x13\xc7\xec\x2c\xc9\x4d\xfa\x7a\xc9\x6e\xfa\x04\xfa\x9a\xc9\x19\x46\x8b\x57\x3d\xae\x72\x18\xbe\x42\x53\xd8\x24\xb1\x61\x4a\xe7\x88\xfc\x9b\xea\x85\xab\xd3\x57\x57\xe1\x49\x61\x46\x36\x2f\xb2\x0d\x00\xf3\x9d\x96\xa8\x02\x42\xd4\x6b\x2e\x2f\xb6\xf3\xb2\xdf\x97\xde\x7f\x9c\x3f\x1f\x80\x44\x85\x6f\x9a\xb8\xeb\xf2\x41\x9a\xae\xd2\x27\xa4\x32\x49\x6f\xcb\x37\x8e\x72\x7a\x68\x33\x3b\x47\xdf\x25\xe7\x57\xcb\x75\xec\x02\x59\xe8\x58\xe7\x3c\xea\xef\x8a\xa2\x49\x7e\xaa\xd3\xc4\x66\x9f\x45\x14\xe3\xaa\x41\x3c\xad\x06\xf1\xb4\xce\x56\x97\xd9\x0a\x9b\x04\x29\x25\x20\x03\xc6\xd7\x0d\x44\xb6\xfb\x9f\x6f\xa7\xa4\x48\x09\x4b\x86\x6d\xf7\xa1\xde\x83\x1f\xd6\x06\x9f\xd8\xfc\x8a\x68\xcd\xa7\x1a\x61\xb1\x11\x17\x08\x3e\x40\xd1\x97\xfc\x6e\x43\x7a\x45\x74\xd0\xa8\x51\xd4\xf1\x09\xbb\xae\xde\xaf\x8f\x7d\x90\x70\x59\xf1\xe2\x96\x49\xb4\x66\xb3\x1c\x1c\xe0\xd5\x43\x32\xa5\x2c\x2c\x9f\xf0\xcb\x36\x0c\xe3\xd0\x24\xa6\x2f\x9e\x24\x6b\xde\x8c\x55\x6a\xe2\xb1\x8e\xb7\x14\x3b\x54\x82\x74\x7d\x35\x9f\xf5\xd3\x78\x98\xd5\x53\x45\x0e\x56\xc9\x87\xed\xe8\xd0\x71\x27\xb8\xb6\x06\xc4\xfc\x28\x36\x1b\xec\x02\x0b\xeb\x61\xb5\x28\xb0\x58\x58\xa7\x0e\xa1\xcc\x61\x9d\xa8\x33\x55\xa4\x90\xcc\xd1\xd9\x26\x05\x69\x85\x7c\x43\x97\x02\x1c\x10\xf6\x13\x30\x0c\xef\xd0\x92\x93\x72\xf6\xf6\xfc\xe9\xc2\x42\xdb\x0e\xa3\x7e\x46\x31\x4e\xcb\xe3\x5a\x2e\xaa\xde\x09\x1d\xa9\xaf\x98\xc2\xe6\xb3\x6a\xe1\x6e\x6a\xbd\x5f\xc1\xbd\x39\x58\x6b\xf5\x7c\x52\xc3\x68\x20\x55\xc9\x23\x25\x28\x2f\x4e\x77\xf5\x10\x7c\xed\x2c\x83\x4d\xba\x69\x96\x73\xe2\x8e\x0b\xbb\x78\x7b\xa9\xf2\x7a\x47\x79\x14\x9b\xe4\x49\xfa\x46\xe9\x8b\x55\xd5\xec\x7b\xe8\x3e\x51\x88\x61\x49\xfe\x9d\x0e\x7c\x68\x80\xdd\x88\x13\xaa\x35\x51\x8d\xc5\xe7\x2a\xb3\xcc\x5d\x8e\x98\xfc\xcb\x48\x95\x63\xe9\xb3\x47\x03\xe7\xe9\x11\x30\xed\x02\x8c\x7d\x82\x47\x06\x8e\xd3\x7d\x9a\x71\x6c\xac\x9f\x2a\x51\xba\x63\x74\x02\x0a\xc8\xa7\xf2\x30\x30\x87\x1f\x29\x11\xaa\x5e\xcf\x5a\xd6\x4e\x42\x9e\xe0\x04\x4d\xb0\xc0\x98\x7d\xd6\xee\x71\x4a\xcd\x20\x55\x7f\x59\x47\x59\x8c\xbb\x13\xcc\xe8\x33\x4a\xfe\xb2\xb0\xd9\x30\x4a\x9c\xf1\x70\x82\x91\xae\xcf\xf3\x64\x53\x95\x82\x7a\x52\x5b\xaa\xa9\x94\xc6\x47\x1a\x4c\xb7\x67\xb4\x5f\x7a\x89\x74\xa3\xe8\xef\x31\x86\x2c\xb9\xc7\x37\xb5\x5f\x58\x5e\x6e\xaf\x67\x29\xda\x37\x04\x54\x88\xd6\x39\x8e\xa7\x54\xa3\xcc\x79\xe5\x94\x64\xf6\x65\x1b\x16\x2d\x9f\xac\x02\x2e\x80\xaf\x15\xa1\xd7\x28\xb3\x85\x79\x05\xdd\x21\x48\xe0\x5d\x1f\xab\xaa\xf0\x6f\x28\x5f\xe6\xba\x4a\x10\xbd\x6a\x33\x08\xbc\xb1\x8a\x3d\xfd\x99\x28\xda\xfb\xfe\xa5\x4c\xcc\x1b\x1c\x93\x07\x63\x8f\x2a\x80\xe4\x9d\x70\x4b\x7b\x6b\xf3\xfc\xc2\x3e\x98\x35\xf8\xaa\xa8\xff\xf1\xb5\xe3\x37\x92\x98\x95\x6d\x09\xdc\x8e\xab\x81\xe2\x6f\x38\x4b\x4f\x84\x1d\xf2\x50\x81\x4a\xd6\xa2\x82\xf5\xea\xa5\x9c\xaa\x6b\xab\x53\xf2\x39\xe9\x70\x84\xa5\x20\xdd\xee\xb4\x19\xf8\x46\x09\x43\x0c\xa3\xc4\x66\x39\x71\x62\x20\xd5\x84\xfe\x6b\x2e\x40\xd2\x73\xb0\x4d\xa3\x6d\x26\x1c\xae\xdb\x5d\xb1\x7d\xcb\xd5\x29\x9b\x15\x28\x5d\xe0\x81\xd8\xa8\xf3\x4d\x23\xcf\x69\x5e\xa4\x31\x1b\x07\x91\x67\xa5\xe7\xe4\x1b\xc5\xc4\x30\xb4\x26\xc9\xf7\x78\x81\x39\x4e\xac\x39\x78\x8c\x13\x64\xfe\x73\xa5\xa2\xcd\x5c\x8f\x30\x1a\x0f\xa6\x19\x23\xb4\xea\x3f\x76\x25\xfc\xe9\x9d\x9d\x8f\xd3\xda\x58\x29\xf3\x41\xcb\x67\xa7\x6f\xe1\xfb\xf8\xc6\xa3\x22\x0a\xcb\x3d\x52\x30\x5c\xac\x9a\x2a\x9a\x72\x1e\x8b\xad\x58\x32\x62\x1b\x16\x59\x9a\x44\x61\xbe\xbb\xfa\x20\x96\xe2\xdb\xfc\x58\xae\x97\xd2\x89\x42\x6f\x05\xbe\xaf\xf2\x84\xa2\xcb\xe6\xb6\x1d\x4c\xf2\xdb\x81\xf2\xc0\x1e\x2a\xa6\x9e\x70\x60\x0a\x6b\xca\x96\x82\x99\xe2\x4f\xc5\x05\xfb\x38\x09\xc2\x41\x5a\xe6\xae\x19\x0b\x15\xd8\x5b\xaa\x0e\x3a\xa5\xeb\xf6\x76\xed\x00\x7d\x61\xff\x67\xdb\x83\xa8\x3f\x50\xf8\xcd\x3f\xc3\x08\xf2\x4d\xf0\xac\x2f\xf6\x84\x59\x44\x78\x17\x01\x75\x49\xa9\xc5\x1f\x31\xf5\x76\xb1\xe7\xda\x61\x19\x17\x65\xc6\x44\x11\x28\x64\xfd\x28\xf0\xc8\x86\x1f\x29\x60\x48\x62\xd7\xe3\x0d\xe2\x7e\x13\x60\x3c\xc5\xb7\x4e\x0d\x77\xdf\xb2\xa6\x39\x7e\xd1\x29\xe0\x6e\x5f\x1b\x44\x4f\x31\xb0\x66\x2d\x92\x0e\x53\x67\x53\xbc\x7d\x71\xb0\xe4\xea\x84\x2b\x6c\x26\x7a\x1d\x08\x4c\x40\xa5\xa8\xa5\xca\x84\x9c\xf5\x6a\xf0\x94\xea\xa8\xb6\x59\x14\x9a\xc4\x90\x59\x44\x26\xf8\x43\x7a\x4e\xbe\xae\x21\xfb\x2b\xc7\x57\xaa\x0c\x22\x5e\x59\x7d\x56\x54\x2d\xbd\xd5\xca\x8b\x8d\x3d\xaa\xdf\x0c\x2e\x04\xc5\xb2\xff\xe4\x69\x15\xcb\x7e\x44\x75\x6b\xe6\xe0\x1f\x2b\xf5\xa4\x4b\x48\xe9\x09\xd5\x6b\xf5\x23\x70\x90\xae\xe0\xd5\x10\xf2\xdd\x9f\xce\x9e\x95\xf9\x63\x2a\xd0\xdb\x43\x75\x64\x57\x51\xf3\xcd\x41\xdf\xa7\xd3\x14\xa7\xef\x7f\x8f\xe3\x06\xa9\x0a\x88\xcd\xc3\xb8\x1f\x1b\x7b\xbc\xc9\xb1\xc0\xb7\x1b\x5c\x54\x14\x37\xbf\x8e\x9c\x87\x93\xad\xf7\x5c\xd3\xdc\xff\xc9\xdc\x49\x13\x47\xcc\x95\xa6\xdd\x9c\xf9\x63\x90\x29\xd9\xdd\x51\x24\x16\xaf\x29\xd4\x28\xd7\xa6\x59\x78\x41\x1d\x50\x3d\x13\xc7\x36\x99\xf3\xc8\xe6\xb3\xe4\x34\x20\x1d\x80\x66\x08\xdd\xe3\x8f\x2c\xca\x1b\x8a\x03\xe4\x6c\x13\x7b\x4c\x61\x93\x02\x96\x48\x50\x2c\xbe\xf0\x7b\xde\x25\xb5\xc3\x74\x38\x2c\x93\x08\x59\xf0\x7c\x97\x7e\x11\x64\x5d\xb0\x2b\xc0\x7b\xe4\xd4\x1c\xaa\x31\x72\x4a\x52\xd5\xdb\xc2\x17\x7b\x74\xa2\xd8\x9c\x5e\x52\x19\x5e\xbb\x61\x57\xb2\x74\x9d\x89\xc6\x1c\xe5\xb9\x93\x3a\xbd\xe4\xa2\xda\x0d\x6b\xb2\xd8\xd9\x0f\xcc\x2e\xd8\xf5\x60\xc9\x10\xb8\x0b\x05\x8e\x4f\xf1\x8e\xd2\x62\x94\x96\x59\x16\xd1\xca\x77\x20\x79\x1f\x27\xd6\xa2\x61\x2a\xee\x8f\xa2\xcc\x67\xc7\x91\xeb\xfb\x68\xec\xd1\x26\x1f\x35\x50\xdd\x11\x22\x85\xfa\x90\x1d\x99\x88\x6b\xa2\xfc\x6f\xb7\xa6\x5a\x06\x54\xe3\xea\x47\xda\x85\x8d\xe2\x58\x29\xa6\x00\x6e\x26\x75\x59\xef\xe0\xac\xa6\x55\xa0\xa7\x88\xab\x98\xb0\x49\xf8\xdf\xeb\x8f\xb6\x92\xa6\x39\x04\xb0\x58\xa5\x50\x11\x21\x9c\xd2\x00\xe4\xb7\x14\x50\x6e\xcd\xe6\xb9\x8d\x73\x0c\x38\x4e\xf7\x63\xaa\x2d\x04\x58\x67\xc1\x00\x39\x5c\xb5\xc9\x86\xdc\xd7\xea\x7a\xab\x9c\x2a\x46\x9d\x9b\x92\x34\xf1\x46\xa3\x38\x62\x10\x85\xe8\xa0\x29\xfd\x8b\x33\xb5\x0f\x2d\x2c\xc8\x87\xf8\x97\x84\xa3\x85\x56\x1c\xdf\xd4\x0c\xda\x73\xed\x6e\x19\x33\x71\x1c\xf6\xfd\x25\x25\x04\x75\xc9\xf5\x09\x14\x59\x14\xae\x72\xeb\x87\x6e\xea\x46\xf9\x12\x3d\xcb\x82\x9e\x93\x23\x38\xed\xf5\xa2\x30\x32\x71\x37\x45\x5f\x96\x24\xaa\xb1\x6b\x44\xf3\xe6\x09\x75\x88\x5a\x33\x6a\x69\x8c\x71\xcb\x51\xd5\x9e\x51\x0d\x25\x38\xda\xab\xaf\xe6\x62\x81\x53\xc7\x3a\xe4\x19\x31\x1b\x74\x66\x75\x07\x05\xa2\x68\xee\x56\xe5\x9b\x86\xde\xaf\x30\xcd\x8b\x72\x28\x2b\x1e\xe7\xf3\xd9\x40\x11\x52\x9c\x55\x86\xc9\xf4\x33\x5b\x0d\xfe\x0b\x8b\x07\x3d\x87\xcb\x3e\xcf\xe1\xf2\x94\xc3\x00\x3a\x1d\x1b\x70\x01\xb8\x1e\x3b\x47\x7a\xf1\x67\x34\xb8\x00\x10\x5c\xd5\x24\x54\x3b\x6b\xa0\xbe\x85\x85\x76\x31\x10\x6b\x21\xaa\x58\x1c\x0d\xf3\x8d\x62\x00\x8e\xd3\x14\x54\x38\x5c\x38\x54\xa9\xe2\x9b\x34\xf1\x8e\x31\xcf\x93\x77\xbd\xd1\x50\x3b\x6f\xaf\x94\x19\x31\x5f\xb9\x04\xcc\xf7\x55\x02\xe6\xfb\x35\xf3\x51\x39\xa6\x2c\xb7\x3c\xd5\x86\xff\x23\xcd\xd1\xfe\xa3\x9a\x3f\xbb\x78\x90\x95\x86\x29\x45\xe1\xd4\xc6\x5d\x57\xc8\x27\xd1\x3b\x4c\xa1\xf9\xea\xde\x8e\xcf\x10\x98\xd8\x64\x61\xca\x35\x22\x66\xcb\xc0\x98\x08\x75\xc6\xf6\x5e\x06\xe7\x91\x12\xad\x68\xcb\xd7\x13\xa6\x1a\x52\xb7\x31\xf1\x14\x1b\x9f\xa4\x97\x11\x5e\x64\xda\xa1\xc2\x9e\xd2\x7a\x41\x3c\xe3\xb3\xd3\x41\x26\x3d\xb3\xc3\x2c\x39\x71\xa6\x19\x34\x52\xf3\xc7\x51\x1c\x10\x0e\x67\x35\xb7\x47\x28\x2e\x76\x74\x95\x4b\x4b\x6c\x33\x77\x02\xe5\x85\x83\xe6\x1e\xec\x17\x56\xf6\x96\xea\x22\x64\xee\x60\xdc\xec\x50\x23\xd6\x8f\x56\x56\xd2\x84\xe3\x27\x6e\x56\x0b\x54\x03\xec\x4f\x35\x45\xfc\xa5\x86\x09\x6e\x17\xd1\xd0\x16\xd0\xbc\xf4\xd2\x9d\xb4\x2a\xa4\x3b\xca\x37\x3e\xae\x47\x71\x1c\x99\x61\x3e\xe7\xcb\x64\x17\xb5\xc9\x3d\x0d\x04\x10\xe7\x03\x15\x8b\x34\x32\x13\x42\xdc\xdc\x70\x90\x87\x99\x09\x57\xe9\x58\x93\x5f\xd5\x4f\xb3\x9d\xe9\x87\x7c\xcd\x6e\x14\x9b\x51\xd4\xf5\x35\x3e\x01\xf5\x7b\xa4\xcf\xa5\x86\x50\xff\xc5\x76\x31\x30\xc5\xae\xea\xa7\x50\x37\x9b\x9b\x38\xba\x86\x5f\x7c\xaa\xd3\x72\x08\xa6\xcb\x5a\x36\x89\x5b\x1b\x31\xa8\x67\x91\xbf\x87\x4d\xff\x59\xd3\xeb\xac\xa7\x59\x5e\xcc\x90\x2f\x08\xe2\x81\xa7\xc8\xb7\xc0\x69\x33\x37\x69\x29\x86\x2d\x1f\x8c\xe7\x69\xdc\x7d\x5c\xb3\xc9\x63\xc9\x21\x80\x9b\x51\x74\xd5\x20\x12\x60\x94\x20\x30\x88\x8e\xe0\xd0\xbd\xfb\x9b\x6a\xc1\x01\x43\x00\x9f\xf6\x0e\x36\x14\xaa\xe9\x5b\x54\xa6\xc2\x3f\xdc\x1b\xab\x1e\xb2\xc7\x34\x9b\xfb\x91\x40\x37\xc8\xd5\xf6\xe0\xe2\x41\x50\xc2\x96\x89\xcf\x84\x39\x66\x7b\xe7\x5d\x5d\x52\x32\xdf\xa3\x28\x4e\x8b\x59\x5a\xb3\x62\x72\x35\x87\x56\xe0\x5f\x15\xb6\x58\x78\x31\xfc\x58\xa5\xdd\xae\x38\x72\x98\xa0\xbb\x18\x2c\xf1\x15\x7d\xd7\xdc\x59\xec\x42\xe4\x01\x4f\xea\xba\x12\x27\x87\xb1\x8d\x8f\x7e\xac\x8a\xa5\x8f\x49\xc9\x9f\x71\x7c\xa4\xae\x35\xf8\xb0\x02\xe7\xf5\x3d\x6b\x34\xdc\x89\x2b\x63\xdf\x47\x72\xa5\xb6\x1c\x9f\x6b\x87\x83\xb2\x6f\x44\x96\x02\x67\xf1\x3f\xc4\x73\xf1\x4d\x43\x7f\x94\xd0\xe8\x31\xc2\x5a\x8a\x97\xba\x92\xe9\x5c\x80\x2a\x54\x9d\x16\xa2\x43\xe1\x42\xe8\x6d\x9b\x50\xdf\xe2\x31\xce\xa8\xf1\x61\x0d\x3a\xdd\x6b\xc7\x94\xd6\xc1\xe3\xca\xb6\x86\x7c\x4e\x08\xdc\xc5\x27\x21\xeb\x4d\xda\x07\xe6\xdb\x83\x34\x2f\xa2\x18\x89\x34\x6e\xec\x9d\x6a\xf2\xf5\x4b\xa6\x9b\x45\xc9\x2a\xe2\x4a\xac\xd0\x6b\xa8\x91\xf2\xcd\xf8\x53\x9a\xf2\x64\x18\x11\x88\x91\x00\x2f\x8b\x07\x5d\x26\x9b\xf2\xa6\xd2\x65\x5d\x97\x29\x7c\xb1\xdd\xb5\x61\xec\xd5\x2d\x39\x71\x49\xef\x20\x49\xcc\x26\x0a\x38\x93\x4d\xc1\x41\xfe\x67\xac\x31\x6e\x76\xa2\x75\x22\xe1\x6d\x1d\xe2\xd0\x8d\xc2\xc2\x8c\x06\x69\x22\x12\x8c\xa2\x04\xaa\xb4\xdc\x8e\xb8\x12\x6b\xf5\x1f\xb7\xbe\x74\xcb\x9e\x28\xb5\x79\xb7\x6c\x25\x33\xeb\xb1\xd2\x99\x3c\xa7\x74\x26\xcf\xd5\x4c\xd6\x73\xd4\x98\x24\x2f\xce\x4d\xd4\x9a\x0f\xfb\x72\x83\x27\x4e\xb5\xb3\x19\x05\xd2\xfc\xaf\xc8\x17\x51\xd9\x02\x09\x8b\x2f\x37\x35\xdb\xf7\x2c\x8e\x1c\x87\xab\x73\x8e\xe9\x45\xb7\xa1\xc2\x34\x29\xb2\x34\x7e\x04\x63\xe3\x2a\x85\x07\xe6\xf9\x44\x6b\x21\x41\x8d\x74\xf3\x35\x0c\x9a\x00\x38\x69\x16\x38\xa0\x9a\x38\xa6\x97\xff\xfc\x31\x45\x98\xd9\xea\x28\xd6\x19\xc0\x08\x71\x76\x9d\x56\xa9\xc6\xf5\x01\x1d\x4d\x8e\x14\xf8\xa2\x22\x4d\xbf\x58\x23\xc3\x5c\x3c\xd8\xce\x8a\x50\xb1\x89\x7d\x47\xb3\x89\x7d\x47\x71\x57\x01\xf3\x9b\x0f\xd1\xc4\xea\x34\x6e\xfc\xe1\xe5\xd2\xa4\x43\x13\x46\x49\x91\x72\xce\x4d\x52\x10\xf4\xb5\x7c\x53\x33\x12\x62\xbc\x12\xbb\x4e\xb9\x1d\xc7\xe5\xaf\x28\x9d\xfc\x30\x5e\xd2\x60\x95\xab\x2a\xd7\x38\x30\x59\xb6\xa1\x64\x1b\xd9\x25\xe2\x9b\xe0\x59\x9f\xa8\x36\x45\xd4\xe3\x08\x7b\x46\x25\x5a\xd0\x0b\x83\xc8\xfe\xae\x6e\x8f\xab\x03\x35\x9f\x23\x71\xb7\x6a\xcf\x6a\x94\xe2\xdb\xf8\x45\xbe\x71\x3b\xa1\xc8\x52\x07\x69\xc6\xa2\x39\xa9\x80\x99\x27\x15\xb0\x36\x1c\x98\xac\x6f\xf3\x47\xaa\xbf\x14\x06\x4e\x4f\x9c\x73\x74\xec\x79\x9b\xde\xd0\x42\x93\x7c\x1a\x62\x48\xee\xa3\x42\x84\x70\x0c\x6d\x02\x48\xb1\x9e\x45\xe1\x4d\xc8\x3c\x7d\x03\xe4\xff\x3e\xf6\xcd\xed\x6c\xad\xa9\x95\xca\xe5\x34\xcf\x29\x16\x1a\xb0\x50\x4a\x53\x5a\xf5\x70\x28\xeb\x41\xab\x91\xaf\x03\x95\x0e\x3b\xa7\x01\x1a\x54\x4f\xe9\xfe\xb5\x85\x6f\xb7\xdb\xa0\xc5\x83\xed\xb4\x18\xd8\x6c\x3d\xca\xed\x4c\xf5\x4c\x70\x4c\x90\x0c\xc1\x8e\x7b\x30\xf6\xd0\xfd\x29\x4d\x9f\x92\x8a\x97\x95\x19\x96\xe6\x33\x45\x3d\xe9\x35\x88\x7b\x59\x5a\x0c\xb0\x8c\xb8\x6f\x94\x46\x4a\x7a\x48\x1b\x9e\x88\x32\xe8\xc6\x89\x06\x63\xf3\xb0\x00\x10\xdf\x04\xbe\x3c\x91\x97\x3d\xe6\xe5\x47\x1e\xe4\xbc\xca\x89\x9c\x1f\xb7\x3f\x66\x6b\x6c\x98\xbc\x1c\x46\xe1\x80\x3f\x2a\x70\x44\xb5\xdc\x4e\x4d\xd1\xf4\x17\x36\xe9\xa2\x8f\x95\xf9\xe9\xc6\xfe\x85\x7e\xa0\x45\xad\x2f\x2b\xcc\x63\x2f\x8d\xc1\xc1\xb1\x8b\x16\x0a\x76\xf6\x9c\xaa\x99\xec\x45\x17\x19\xdc\x93\x3f\x50\x45\xbb\x1b\x81\x6a\x7c\xff\x17\x63\xa5\x4a\xf7\x86\x82\x4a\x91\xdf\x6c\xbb\xbc\x65\x30\x34\x3b\x14\x28\xe9\xf7\x74\x05\xf8\xef\x67\x43\x12\x5e\x40\xda\xf0\x98\x22\xd2\x41\xfd\xc9\xb1\xd5\xfb\x4e\xf6\x3f\xad\x1d\x15\x04\x3d\x30\x0c\xb8\x92\x56\x57\xdd\xf7\xaa\x88\x52\x86\x51\x1c\x15\x26\xdb\x78\x5c\x4d\xce\xf1\xc0\xfb\xa2\x6f\x70\x56\x41\x38\x30\x15\x91\x3c\x12\x73\x30\x9a\x7b\x51\xbf\xc4\xb8\xdc\x0a\xbc\x6c\xc6\xbb\x87\x03\x4f\xe2\xcc\xa4\xc3\xfc\x5d\x81\xf7\x50\x58\x6b\x0c\x7f\x05\x24\x19\x7f\x02\x89\x50\x01\x3d\x79\xc4\x6c\x66\xc3\xb4\x9f\x40\xd1\x9f\x7e\x1a\x49\xdc\x3b\x84\xa3\xe3\x6b\xd7\x44\xf0\xb2\x19\xce\x68\xa2\x0a\x25\x6c\xf8\x4d\x15\xc5\x5c\x9d\x96\x80\x8b\xc2\xbd\x8a\x70\x69\x47\x67\x4a\x88\x42\xd3\x81\x9d\x05\x7e\x98\xb9\xab\x10\xab\xf2\x87\xb0\x74\x1c\x42\xce\x45\x34\x6c\xce\x71\xac\x5d\x03\x28\xc4\x71\x5f\x39\xd0\xc0\x55\x5d\x08\x3b\x46\x74\xb0\xaa\xf3\xe4\x4b\x9a\x4f\x68\xeb\x32\x22\x1e\xa7\xde\x70\xc8\xa9\x75\x29\xa8\xaa\xc9\x73\xa6\x0d\x65\xe9\x8d\xff\xe1\xc9\x89\x62\x25\xd0\xf2\x46\xb7\x15\x03\xe2\xcf\x34\x3d\x3e\x23\x19\x10\x66\xdf\x19\x7b\x7e\x85\xab\x34\x94\x2e\x7b\x7f\x68\x9e\x0b\x73\xf7\xb1\x1c\x00\x39\x9a\xeb\xa8\xb2\x4f\x9d\x59\x80\x1a\xe4\x89\x64\x83\x95\x39\x04\x44\xe4\xe9\x6f\x2f\x06\xdb\x1b\x00\xaa\x63\x09\x55\x2c\x84\xe5\x40\x29\x60\x27\xde\x52\x6c\x45\xf5\xe0\xfa\xe0\x57\xdb\x65\x51\xed\x80\xc8\xe2\x8c\x17\x00\x0d\xfd\xb6\xe0\xdd\x3f\xe5\x6b\x9a\x65\x9c\xd8\xcc\xac\x54\x1f\x01\xc9\x94\x43\xa3\x2c\x08\xdf\xce\x39\xed\xe2\x59\x93\xe4\xb3\xba\x43\x4e\x31\x79\x00\x4f\xcc\x6c\x1f\x5a\x81\xe7\xbd\x26\xbd\xea\xa2\x1c\xae\xc4\x52\x86\xc5\xd6\xba\x0f\xfb\x83\xd3\x00\x51\x8c\xd4\xd2\x1b\xc0\xb0\xeb\x96\xb0\x1d\x2d\x8f\x7b\x39\xac\x9b\xf3\x0f\x7f\x4c\x07\x44\x64\x7b\x1c\xc4\xc0\x00\xbe\xab\x78\x49\xde\x75\xf9\xfb\x3c\x1c\xa4\x69\x1c\x0e\xa2\xb8\x9b\xd9\x64\xa6\xf5\x2b\x5f\xf6\xc2\x9d\xcb\xcb\xbe\x45\x74\x79\xf9\xf9\xad\x9b\x4d\x9a\x27\xc3\x28\x2f\xb2\x92\x95\x86\x50\xa3\x83\xb7\xc7\xd7\x2a\xc7\xfe\xb5\xd2\x64\x85\xcd\xe2\x8d\x39\x4f\x5d\x07\xae\x5d\xbe\xae\xc6\x58\x38\x1b\x70\xa6\x3e\xc4\x12\x14\xe7\x62\xaf\x2a\x9b\x57\xce\x47\x17\x75\xf0\xa6\x17\xac\xdb\xd6\xfd\x95\xbb\x59\x20\x1b\xe9\x36\xf6\x0b\xfb\x5d\xdc\xe5\xbf\x9c\x9b\x6c\x77\xb3\xfa\x18\x73\x94\xa8\xe6\x8b\xdb\x34\x38\x7c\x8d\x60\x49\x65\x00\xf6\x6f\x5d\x56\x9a\x68\xc7\x54\x0d\xac\x88\x37\x1e\x27\x00\x90\xa2\xc8\x7b\x91\x57\x18\x83\x30\x80\x87\x61\xa2\x32\x8c\xe1\x8f\x15\x99\xf1\xcc\x44\x01\xea\x1e\xa7\x6c\x07\xd2\x2b\x3f\x37\xa9\x3d\x06\x67\xfa\xd1\x56\x01\x8e\xa6\xbf\x47\x49\x18\x98\xe8\xf3\x6c\x0b\x9d\x28\x9d\x83\x71\xcc\xb8\xf2\x54\x61\xa2\xa4\x50\x39\xcd\xcd\xa9\xee\xc2\xc7\x5d\x93\xdd\xc8\x44\x99\x42\x40\xdd\x54\x47\x04\xf8\x54\x85\x00\x5d\xe5\xda\xea\x11\xdf\xe2\xc1\x76\x12\x1a\xe9\x5d\x67\x51\x46\x18\x5c\x51\x68\xfc\xb8\x4c\x42\x6e\x47\x26\x33\x85\x8d\x37\xd8\x5b\x93\x36\x01\x6f\xe6\x76\x62\x4c\x91\x28\x7a\xa4\x26\x79\xb0\xb0\x50\x59\xb0\xbc\x8c\x7d\xa6\x05\x56\x09\x2d\xe0\x7c\x5d\x8b\xb6\x96\x96\xda\x1b\xe5\x6a\x4b\xb5\x30\x1f\x57\x0c\xc3\xc7\x9b\x70\x4d\xa3\xd8\x6c\xb8\x12\x15\x5c\x95\x13\x4a\xc1\x08\xf5\x44\xe4\x49\xef\xd4\x6c\xe6\xf2\xf2\xfe\xb6\x99\x69\xb9\x13\xe3\x88\x92\xac\xbb\x0d\xbb\x00\x24\xc9\x8e\x9a\x94\x4b\xb5\x5b\xd3\xae\xc5\x30\xb5\x3c\xc9\xfc\x74\xfc\xba\xfd\x81\xbf\xb2\xd8\x1e\xa6\x49\x54\xa4\x19\x19\x5a\x81\x91\x2a\x92\x59\xbd\x75\x58\x87\x64\x4f\xcb\x29\x30\xb3\x8a\x36\x1e\xea\x7d\xf8\x0b\x4e\x4f\xe9\x80\xa8\x99\x5e\x25\xdf\x1c\x3e\xc9\x8e\x8e\xa7\x22\xe5\x2d\x82\xd1\x38\xaa\xfb\xb2\xdf\x50\x12\xa4\x5d\xdb\x8b\xc2\xa8\xe0\x52\x03\xbc\x08\x50\xc5\xf2\x75\x2d\xc4\x3e\x30\xdf\x5e\x31\x95\x57\x7e\x68\xde\x9d\xff\xbe\xb2\x74\x7f\xaa\xed\xf3\xe3\xbc\xdc\xcc\xc6\x65\x58\x98\xa4\x50\x02\x53\x67\x14\xf8\xeb\xf5\xa9\x38\x52\xd5\x1c\x4c\x6c\x5f\xa1\xdd\x02\x8c\xd7\x9f\x07\x53\xd4\xc0\x34\x5c\xfc\x2f\x63\x9f\x4f\xda\xac\xd5\x02\x0e\xcc\xb7\xa1\x61\x3d\xa3\xb0\x9c\x0f\x02\xdf\x05\xc3\xce\x23\xfc\xdc\x4d\xc5\x4b\xf2\x72\x99\x2b\x1e\x77\x87\xea\xde\xe7\xdb\xfe\x3c\x27\x7b\x98\x66\x19\xe8\x8c\x5a\x53\xea\x0a\x3e\x5e\x9e\x26\x10\x33\xeb\xf9\x1e\xdd\xdf\x4e\x8f\xc0\xc9\x5d\xcc\x3e\xb7\x02\xc3\xef\x71\x5a\x35\x4e\x83\xe1\x15\x7a\x10\xd7\x9b\xbd\x78\x50\xda\xe2\xc6\x5a\x96\xaa\x11\xb8\xde\x4b\x43\x9f\x92\x03\x14\x1f\x78\x53\xbe\x56\x82\x39\x7d\x3b\xaa\x0e\x90\x82\x8d\x8d\xd3\x7d\xf6\x39\xe2\x1f\x3b\x8e\x0a\xfb\xca\x28\xcd\xbc\x59\x70\x51\xa6\x03\x5f\xd4\x77\x0d\xac\x09\xd1\x42\x54\x4b\x0c\x0e\xec\x5b\x81\x6a\x6a\x7f\x4b\xe5\x41\x72\x13\xdb\x1c\x4e\x2b\x6c\xd5\x7b\x63\x05\x36\x7f\x3b\x50\x04\xc0\x0c\x30\xc2\xb0\xed\x98\x78\xbd\x8e\xdf\x0a\x74\x6c\xcf\xc2\xb8\x68\x35\xdc\x83\x42\x08\x76\x1d\x63\x9a\x00\x23\xb8\x4e\xbe\x29\x8c\x2b\x8f\x2f\x66\xe7\x1b\x4a\x73\xf3\x9a\xae\x7a\x9c\x54\x5d\xb1\x67\x14\x15\xcb\x0f\x03\x5f\x90\xda\x52\xc1\xdd\xa8\x3a\x41\xb8\x89\x0d\x8b\xeb\x61\xa0\x88\xba\x1e\xd6\xb2\x3c\xcf\xb5\x63\x5b\x9d\x39\xae\x53\xea\x37\xb5\x8c\xc9\x6f\x06\xba\xe7\x24\x29\x0b\x2b\xe8\x09\x6e\xef\xc0\x4b\xe0\xed\xfe\x29\x2d\x52\xbe\xc6\xb8\x49\x13\x48\x03\xc8\xb9\xbd\x66\x8b\xd4\xa2\x1a\x8a\xae\x27\xde\x3f\x7c\xa3\x70\x32\x23\x5b\x64\x69\x6c\x53\xa6\x53\x43\x71\xe8\x2a\x21\x57\xf8\xda\xf5\x38\xdb\x18\x20\x23\xd9\xa5\xf0\xa6\xaf\x2a\xb5\x85\xbb\x5a\x87\xe0\xa8\x43\x32\x64\xa6\xfb\xea\xc6\x30\x4a\x5a\x9a\xe2\xe0\x9c\x0e\x86\xcf\xa9\x70\xb0\x9f\x95\x5d\x9f\x1f\x77\xd9\x34\xaf\x15\x55\xcb\x09\x1d\x9a\xff\x52\xdb\x84\x99\xe4\x01\x1c\xc1\xb1\x6a\xe1\x0c\x9e\x52\x94\x70\x49\x94\x83\xc3\xda\x67\x4f\x99\xdd\x0f\xeb\x0a\xed\x4b\x7c\x4d\x0b\x83\xff\xa8\x96\x0e\xde\xb7\xdc\x0e\xb3\x68\x34\x8a\xa5\x8c\x89\x5c\x3f\x44\x30\xe4\x48\x51\x6b\xb1\x11\x27\x9d\x58\x23\x2a\x79\x1c\xd1\x04\x4a\x25\xe7\x8e\x4b\xf0\x51\x9a\xd3\xe4\x45\x3e\x5d\x19\xa7\xbf\x95\xd2\xf8\x27\x1d\x8e\xb8\x40\x44\xa1\xc4\x7a\x6f\x68\x7c\xe1\x8d\x5a\xb9\x8c\x72\xfa\xe5\x0a\x25\xc6\x8b\xc2\x32\xcc\x50\x77\x01\xf3\xb5\x6a\x7a\x1f\xae\x54\xe6\x97\x01\xd5\x0e\x39\xe9\xc9\x2e\xcf\xd5\x68\x4f\x88\x2f\x66\x54\x9d\xdc\x6e\x8a\x91\x82\x80\x62\x25\x5f\x4f\x9e\x51\x8d\x20\x5d\x9b\x15\x06\xbd\x3f\xd5\xf3\xb3\x1a\x17\x92\x48\x22\xcd\xe5\xa8\x47\xa2\xcc\x26\xfc\xd6\x22\x75\xa7\x4e\x21\xdd\xaa\x11\xe5\xb1\x19\xb6\x54\xf1\xec\x98\xe2\xb4\x3d\xe6\xd8\x67\xc2\x34\x2f\x3e\xe1\xf1\x42\xad\x89\xe7\x2a\xbc\x42\xe6\xdd\x91\xc2\x54\xbf\x29\x99\x45\x72\xb4\x2f\x28\xf6\x9e\x1f\xd0\x97\x23\xb9\xcc\xf4\x20\x98\xdf\x6b\x48\x21\xa2\x7e\x72\x31\x50\x49\x08\x66\x64\x66\xad\x22\x34\x07\x16\xa6\xdf\x5e\x58\x6c\x03\x95\x8f\x2f\xf8\x5f\x28\xf0\x43\xb2\xf5\x0a\x19\x41\xf8\x1e\x3f\x47\x4f\x8a\xeb\xf7\xc7\xad\x2f\xfe\x2a\xa7\xfd\xae\x50\xd7\x9e\x30\x64\xd3\x53\x0b\xa8\x9d\x1e\xcb\xc5\xe1\x2f\x48\xeb\xf5\xf9\xf1\xce\xcf\xb2\x3b\xf1\x3a\x4a\xd7\xc8\x67\xdd\xc5\x03\xe2\x03\x37\x11\x3c\x88\xe6\xb8\xd2\x35\x24\xf4\xa5\x93\xba\x5d\x76\x32\xa7\x3f\x42\xa9\x45\x48\x0b\x29\x81\x81\xed\x7a\x95\x0f\x00\x34\x63\xdd\xc5\xf1\x8a\xd5\x37\x43\x6e\xbf\x48\xe6\xf9\xb2\xc9\xc9\x80\xa2\x11\xec\x83\xf7\x83\xd6\xc2\x82\x57\xa3\xad\xa6\x18\xb0\xf1\xe3\x53\x30\x56\xdf\x47\x7c\x05\x88\x3c\xe0\x56\xb8\x93\x1b\x2b\x98\xc5\xfd\x1c\x61\x97\x0b\x07\x3f\x42\x92\x45\x9a\x09\xb7\x5b\x61\xf1\xac\xca\xc1\x0c\x26\x4b\xf7\x92\xe3\x2c\x3b\xaa\xed\xf8\xcd\x1a\x01\x23\xba\x77\x08\x67\x53\x9d\x22\xaa\xb5\xee\xb6\xc2\xb0\xde\x76\xbb\xb1\x4c\xd2\x95\xdc\x66\x6b\xec\x0a\xe1\x5d\x18\xd0\xc2\x37\x8d\x42\x4b\xa3\xea\x90\xda\x98\xf1\x41\xef\x47\xaa\xf4\xf7\xfe\xd8\x23\xb2\xff\x4f\xb7\x27\x86\x51\xc8\x2e\x14\xb7\xbb\x77\xbc\xc3\x39\x37\x69\xa0\x63\xab\xde\xc3\x66\x72\x70\x20\x14\x3f\xac\x14\xe0\x7e\x5d\x77\x18\x7d\x54\x8b\x14\x5e\x7a\xa9\xdd\x4f\xc9\xc1\x15\x4c\x12\x8d\x9c\x30\x05\x56\xeb\x4b\x8e\xf1\x06\x6c\x10\x62\x3a\xce\x20\x34\xf1\x5f\x4b\x43\xf0\x4a\x96\x9a\x6e\x48\xfd\x27\x02\x39\x95\xea\xa5\xca\x3e\xfc\x05\xa6\x0d\x3f\x78\x57\xa1\xd4\xca\x64\xcd\x46\x31\x7e\x46\x53\x76\x89\x20\xf7\x54\x73\x60\x9a\x53\x9a\x1f\x46\x85\x39\x35\xf8\x26\x50\x5a\x31\x9b\x58\xfb\x58\x7e\x17\x83\xa9\xbe\x4c\x25\x86\xa5\xd1\x7f\x31\x94\x1e\x67\x55\x72\x9f\x39\x57\x90\x33\x05\xeb\x9c\x53\x7c\xdf\x27\x39\xfb\xbb\x8a\x0c\xc0\x56\x8e\xce\x88\x38\x19\x5b\x1e\xee\x08\x7b\xc6\xd7\x6e\xdd\x0d\xa2\xfe\x20\x66\xfa\x76\xdf\x32\xcb\x89\x1d\xbe\xd1\x10\x4f\xca\x75\xcf\x79\xd5\x96\x7f\x1d\x28\x7a\xc8\xb7\x08\xef\xc9\x25\x94\xb1\xa2\xa6\x7a\x4b\xc9\x22\x6c\x06\x5a\xa3\x7c\x98\xae\xd9\x19\x9f\xf6\x3b\xa5\x13\xee\x81\xca\xd3\x1f\xd6\x49\x31\x93\x5b\xb0\x49\x4b\x78\xd1\x52\x52\xd6\x4a\x81\x9b\x3b\x8c\xc4\x94\x34\x88\xbc\x85\xb1\x65\x7e\x0e\x11\xcd\xab\x06\x89\xaf\x6b\xc1\xda\xf2\x72\x7b\x3d\x42\x3e\x4e\xd4\xbb\x5a\x1d\x85\x6a\x78\x67\xac\x1b\xfc\xb5\xdc\x47\x0d\x14\xf8\x5c\xdb\xc4\xb1\xed\xdb\x2e\x47\xc0\x2e\x11\xe4\x09\x6e\x15\x28\x27\x4a\xd6\x22\x92\x06\xa9\x9e\x4e\xea\x79\x9e\x96\x98\xbb\x84\xa5\x8a\x5f\xef\x24\xfc\x52\x7b\x94\x95\x5d\xcb\x11\x22\x0e\x8c\x2b\xdb\xf9\xf0\x85\x46\x7e\xa2\x12\x45\x2b\x69\x31\x57\x6d\x50\x1c\xc0\xdc\x92\x83\x97\x65\xda\x6b\x17\x1f\x39\x82\xb6\x8f\x54\x67\xdd\xf7\x95\x10\x5d\x61\x63\x0b\xb2\x53\xa7\x20\xfd\xc1\xd8\x2b\x48\x7f\xa0\x08\x63\x8a\x74\x9d\x84\x9f\xb0\x73\x1e\x68\x2f\xe9\xb8\x6e\x3f\x55\xb9\xf7\x9f\x39\xee\xde\x35\x93\x74\x6d\xb2\x62\x33\x74\x21\xc2\xfc\x71\x85\x8c\x6f\x82\x4f\x49\x77\xca\x70\x94\xa5\x6b\x51\x6e\x58\xa0\x49\xb7\x09\x28\x00\xae\xf3\x50\x5e\x4e\x63\xe7\x41\xc3\xf9\xc5\x8a\x85\xe7\xc8\x7d\x27\x30\x2e\xb7\x03\x0d\xee\xcb\xf3\x47\xe8\x24\xc3\xe2\x60\x40\x99\xea\x02\x91\x1c\xff\x6f\x63\xb3\x0b\x74\xa3\xe5\x08\xed\x9e\x22\x2b\x2d\x2a\xad\x74\x7a\x21\xc7\x7f\x5d\xb1\xd0\xfc\x74\xac\xe8\x4d\x4f\x37\xa9\x9e\x67\x36\x2f\x36\x62\x79\x05\x99\xfd\xea\x67\x30\x34\x37\x74\xbf\xda\x3b\x8d\x95\xa1\x75\x93\x70\x0f\x32\x92\xfb\x13\x9a\x05\x18\x96\xeb\xb4\x7f\xc4\xa7\xf0\xe9\x98\x97\x0d\xf5\x7f\xcf\x54\x8f\x2a\x84\x36\x95\xad\x60\x7c\x7d\xe0\x19\x9a\xbe\xad\xea\x9e\x94\x1e\x08\x2d\xa4\x7b\x9d\xb4\xa2\xef\x50\xc0\x41\xe0\xa8\x2a\x15\xeb\x86\x78\xd2\xb9\x4d\x4c\x91\x66\x4c\x2e\xa1\x98\xdb\xf6\xbb\xc6\x38\x1c\x15\xf8\xc2\xba\xde\xfd\xbe\xe5\xf6\x28\xb3\x43\x52\x30\xd8\x26\x25\xc1\xd7\x0e\xc8\x10\x85\x96\x16\x9d\x62\x83\x07\xdd\x94\xbc\xa4\x2e\x0e\xe5\x29\x77\xff\xb9\xca\xf6\xd2\x12\xfb\xcf\x57\x51\x0d\xc2\xe9\x70\x7d\xec\xab\x76\x77\xf8\x59\x31\x53\xd7\x02\x15\x8e\xfe\x40\xb9\x91\xb7\x08\x15\xe6\x46\xc5\xf5\x34\xdd\xc4\x3a\x83\x51\x9f\xe2\xbe\x3f\xa1\xb9\xbe\x77\x10\x90\xcc\xb5\x37\x2c\x2c\x70\x51\xee\x22\xbc\x2c\x7e\x2c\x25\x8d\xfa\x10\xec\x0f\x5b\x47\xa6\xce\xc8\xae\xcd\x9e\xf5\x54\x83\x60\x60\x81\x0b\x7b\x0b\xdd\x27\x58\xca\x6f\x06\x95\x3f\x2b\x1c\x18\x78\x3f\x3c\xd4\x94\x6a\xe8\x09\x58\x72\xf8\x1b\x80\xbd\x31\x6e\x1f\x87\x04\xb3\x7e\x21\x41\x01\x9f\xfb\x6d\xc4\x18\xb0\x14\x97\xe1\x47\x3a\xf9\xcb\x5f\x7a\x81\xff\xe1\x07\x63\xd5\x89\x06\xc1\x60\xbc\xe1\x8e\x49\xb5\x3e\x1d\xf2\xda\x31\x7f\xfe\x09\x6d\x16\xe9\x69\x54\x14\x47\x77\xc6\x4a\x86\x07\x6a\x97\x22\x1c\xec\xb3\x3d\x65\x5c\x44\x43\x53\x58\x34\xc8\x02\x35\x77\x0a\x62\x02\xd8\xcd\x8c\x25\x77\xd9\xa8\x43\xf3\xce\x4a\xc0\x13\xe5\x3f\xd3\xfd\x75\xe5\x70\x45\x32\x15\x38\xb9\x76\x91\xad\xe0\xeb\x89\x3f\x46\xd2\x78\x63\x38\x8a\x42\x6e\x5f\x40\x26\xf9\x75\x5a\x79\x7c\x3d\x95\x40\xcb\x4a\xa8\xef\x61\x72\xee\xd2\x4a\xc2\xe2\x79\x3b\xf0\x63\xf0\xfb\xf4\xa6\xc2\xed\xb9\xdd\x0d\x5e\x58\xf8\xf7\xf4\x7b\xc1\x0b\x7c\x73\xac\x01\x3b\xdb\xfb\xbd\x84\x60\x58\xe9\x2a\x5e\x99\x96\x00\xd8\xa6\x14\x54\x1d\x78\x4b\x4b\x8f\xe1\x17\xf0\x6a\x3f\x0b\x14\xcb\xd5\xe9\xf1\x34\x61\x4c\x35\x6f\xd8\x54\x70\xd2\xa4\x7b\x40\x51\x80\x9e\x57\x75\xb7\x5b\x8a\x59\x6f\x16\x20\x4a\x27\xde\xa8\x4d\x71\xb5\x16\x15\xf1\xad\x90\x88\x5f\x57\xe7\xab\x35\xe5\x23\xba\xae\xcf\x27\x88\xab\x33\x57\xcb\x0b\x79\xa3\x9f\xe0\xf5\x99\x16\x04\x8f\x86\xbc\xcd\xa3\xb4\x61\x85\x34\xd1\x0f\x18\xa3\x22\x61\xa4\x71\x54\x62\xcf\xec\xa9\xa9\x9c\x56\x4e\x7e\x5a\x66\x58\x17\xac\x13\x3f\xf6\x65\xe4\x6f\xd7\x02\xa4\x7d\xcb\xed\xd8\x46\xb9\xa8\xb0\xe1\xc4\x03\x7b\x27\x5f\x2b\xaf\x76\x98\x26\xe4\x96\x83\x47\x07\x05\x70\x1e\x5c\xac\xed\x3b\x81\x07\x50\x6e\x2a\xf0\xc9\x7a\xd4\xb5\x28\xe7\x08\x6a\x94\x36\x87\xc3\x93\x7a\x36\x78\xe6\x2d\xe3\x1b\x35\xc0\xa3\xc8\xfe\x7f\xc8\x4d\x48\x92\xa0\x1c\xc5\x96\x1d\x60\x78\x13\xa8\x66\xf0\xb5\xa2\x71\x1d\x95\x71\xcc\xc9\x36\x51\xa3\xad\x4c\x83\xc8\xd7\x6e\xcf\xca\x1c\x9a\x5f\x04\xb8\x3e\x21\x9a\x77\xc4\x76\x42\x9d\x41\x8f\x2f\x8e\x4c\x03\xc1\x6c\x62\xfb\x71\xd4\xb7\x49\x48\x6f\xb0\x75\xa1\x5a\x9a\x5b\x17\x5c\x18\x97\x8f\xca\x6c\xd6\x4b\x04\xa2\xa1\x48\x00\x83\x0a\xe6\x7b\x5e\xc1\xb3\x4e\x4c\xb5\x13\xa7\x6b\xb6\xbb\xab\x32\xa5\xd8\x92\xa7\x02\x55\x30\x3f\xa9\x1a\x63\x6f\x06\x3e\xb9\x33\x37\x99\xc6\x61\xbb\xc3\x69\x67\xa7\x0e\x38\x2c\xd2\xa4\x5f\xb2\x16\x3a\x92\x97\xdf\x52\x0c\x9a\x57\x02\xdf\xdc\x77\x51\x55\x25\xf2\x92\xf9\x23\xd8\x3b\xa1\x39\x13\x4f\xa5\x81\x9b\xa1\xc8\xcc\x68\x24\x1e\x0d\x6b\x0f\x2a\xb9\xf3\xe3\xb4\x29\xc5\xda\x7b\xb1\xa3\x7c\x3d\x4a\xfa\xe8\x05\xc6\x2b\xff\x74\xac\x74\x02\xbe\xa3\xb8\xd0\x6e\x4c\x91\xa4\x7a\xad\x71\x6a\x38\x8b\x46\x26\x76\xc9\xba\x2f\x6d\x11\x3f\xd4\xd6\x55\x3f\x4b\x65\xd6\x6b\xd5\x7a\x62\xf9\xba\x16\x60\xfc\x47\xed\x7c\x94\x96\x85\xc6\xd7\x9e\xc5\x99\xc6\x37\xba\xdf\xc9\x64\x51\x5a\xe6\x73\x0a\x89\x7a\x8a\xe6\x03\xb6\xe8\xc1\xd8\x9f\x5f\xcc\x9d\xee\x68\x32\xf7\x69\x16\x16\xdf\x56\x1f\x0a\x97\x31\x5e\x9b\xb1\xd3\x7c\xd3\x24\x39\xeb\xf8\xc8\x68\x5d\xc3\xd0\x9c\xc0\xda\xe3\x1b\x47\x37\x62\xf2\x55\x52\x68\x16\x0d\x9c\x87\x34\x2b\x4e\xc0\xbf\x7a\x3c\xf8\x7f\x9f\x41\x58\xe1\xd0\x71\x1e\x93\x49\x23\xc7\xe8\x78\x25\x0a\x56\xd8\x8c\xf4\x4b\x79\x01\xe0\xe4\x7c\x7b\xaa\x3e\x4c\xbf\xcb\xe2\x10\x4d\x7d\xfb\x43\x6b\xb8\xba\xcc\x04\x84\xf8\x84\xb0\x11\xd6\x9d\xe0\xc5\x76\x2f\x36\xec\xe9\x39\x4d\x1f\xe7\xe0\x5c\x6c\x60\x80\x69\xe7\x25\xf1\xae\xa6\x19\xb6\x83\xd6\x2d\x82\x23\x89\x54\xbc\xf0\x6b\x78\x0b\xb6\x94\x42\x3b\xdf\x25\xa4\xab\x49\xc1\xd9\xcb\x1a\x48\x38\xa1\x7e\x4f\x69\x2e\x99\x61\x9a\x15\xd1\xab\x53\x06\xe7\x8c\x36\x38\x67\xc6\x8f\xf9\xc2\x5a\x64\xf0\x4c\x22\xcf\xe9\xcb\xcc\xd0\x45\x71\x7e\x8c\x27\xf8\x59\x37\xf9\x20\x4a\xfa\x45\x9a\x3c\xe1\x31\x62\x1f\xa9\x82\xd9\xf1\x29\x24\xf6\x58\xa5\xf6\x8f\xe9\x18\x65\x73\xec\x61\x3e\x97\x34\xc3\xc9\x2d\x5d\xf2\xb8\x35\x56\x5d\x5e\x33\x80\xbe\xe1\x28\x86\xc7\x06\x87\x11\x79\x7b\xd5\x0a\x26\xf5\x89\x53\xe4\x2f\xe2\x47\x7e\xa4\xce\x25\x52\x0f\xef\xa5\xd9\x90\xf2\x19\x4e\x0f\xcc\x75\xe0\x72\xe3\x23\x93\x4d\x2b\x09\x5b\x66\xfb\x12\x16\x6a\x09\x3c\x8b\x81\xcd\xac\xe9\x15\x36\xdb\xe5\xbb\x72\xcf\x7a\x41\xa8\xff\xee\x6f\x77\x7c\x41\xf2\xe7\xe1\x80\x0b\xb6\xd0\x17\x07\xf9\x64\xc4\x97\xdf\x1d\x7b\x09\x4a\x93\x15\xb3\x3a\xce\x57\x52\xcc\x9c\xe8\x90\x04\x80\xcf\x00\x9e\x6f\xe6\x0a\x4e\xd3\xc4\x66\x33\xe4\xb9\xe0\x8c\xbb\xad\xa2\xa7\xe3\x4a\x32\xf0\x82\x2a\xa9\x0f\x4c\x1e\x75\xa3\x70\x46\xf7\xd6\x4e\x89\x5d\xbf\x35\xa5\x8f\x53\x8b\x3e\xa9\xa3\xc7\x74\xd7\x22\x1c\x68\x9e\xa6\xd8\x53\x16\xd7\x8a\x43\x0b\x8b\x24\x55\x0d\x51\x1d\x49\x36\xfc\x98\xfc\x77\xbe\x76\x8e\xf0\xc8\x14\x85\xcd\x1c\xc0\x5d\x80\xce\xaa\xb5\xec\xea\xd8\xd7\x91\xc2\x74\x38\x22\xb5\x08\xe0\xa1\xd8\x9f\x9f\x72\x0f\xe8\x93\xdc\xe0\xef\x40\xc9\xb9\x29\xa2\x9c\x39\xc4\x70\x74\x21\x74\xe3\xeb\x5a\xc0\x4c\x4a\xb2\x54\x77\x74\x41\xd5\x74\x73\x86\xf7\xce\x37\xd2\xd5\x74\x60\x86\xe8\x79\x97\x6e\x3f\x5f\xe4\x3c\xd2\xa4\x94\xd1\xcb\x22\x9b\x50\x0e\xc9\xe5\x94\x77\x50\x73\x39\x5f\x4f\xb6\x0f\x28\xe5\xbc\xd2\x7c\x5a\xd4\xe7\xfb\xba\xc1\xeb\xfb\x53\xd8\xf0\xbc\x90\xae\x05\xc1\x4a\xa8\x52\xdb\xc5\xc0\x97\x8e\x57\x32\x6b\x56\x3f\x51\xbd\x25\x4c\xf7\x11\xb0\x13\xc2\xc7\x7e\x1d\x09\x0b\xbe\xa1\x3d\xeb\xf0\x26\xfb\x04\x6c\x3b\xd3\x51\x56\xe2\x94\x12\xbe\x85\x08\x25\xe7\x27\x10\x85\x4a\x61\x4b\xd5\xf1\xd9\x41\x66\xa5\xf1\x26\x7d\xdd\x62\x90\xa5\x65\x7f\x30\xe3\x2b\xca\xe7\xd5\x29\x0f\x9c\x06\x6a\x85\x77\x55\xc5\x31\x5d\xb3\x59\x98\x0e\x99\x18\x4c\xc2\x6a\x95\x65\xdc\xac\x4d\xfa\xfe\xaf\x3e\xdf\x2e\x4c\x2c\x23\x87\x40\x8c\xbb\x9e\xf9\xa6\x99\xee\x6b\xdd\x6c\xb8\xc2\x1a\x2b\xcd\xaa\x36\xa7\x93\x0a\x69\x12\x9a\xc2\xc4\x1b\xb9\xc0\x06\x60\x01\xd9\x34\xf2\xcd\xc4\xd7\x89\xbb\x51\x0e\x24\x1e\x80\x29\x30\x85\xa7\xe8\x85\xf9\x5a\xe1\x8d\xbf\x56\x9a\x38\xea\xc1\x59\xc7\x2c\xbd\x0e\xf3\x22\x8d\x96\xde\xee\x5c\x6b\x54\x8a\xe9\x67\x4a\x92\x50\xd2\x5a\x2d\x47\x25\xf2\xdb\xb5\x03\xb5\x1a\xaf\x30\xe5\xa6\x55\x57\x77\xf2\x88\x13\xcd\xa1\x5d\x66\x7d\x9b\x21\x67\xea\x5a\xc9\x1c\xf5\xfd\xe6\xf8\x6f\x7d\x4c\x25\x27\x4a\xba\xd1\x5a\xd4\x2d\x4d\xcc\x7e\xbe\x3b\x14\xab\x11\x93\x43\xb1\x41\x07\x3a\xb3\xfd\x32\x36\xd8\xbf\x0e\x2e\xe4\x0a\xcc\x17\x5d\x22\x7d\x25\x36\xe1\x2a\xc9\xcc\xcf\x78\xdf\x93\x4f\x6b\xd5\x7c\x27\x3d\xcd\x73\x4d\xec\x69\x59\x3a\x24\x61\x04\x05\x3a\x40\xe5\x51\x92\x3c\xf5\x06\x9d\xbe\x59\x5f\xdd\x50\x34\x61\x97\xa7\x3c\x5f\xda\xd6\x70\x5c\xdf\x53\x1e\x76\x3f\x33\x1b\xb3\x4a\x86\xf6\xf0\xf8\x63\xf9\x0c\x74\x1d\xa0\xa9\x80\x9e\xa7\x65\x31\xb0\x26\x2f\x14\x3b\xf0\x87\x9a\x1d\xb8\x4e\xd5\xb1\xb4\xd4\x1e\x1a\x14\x9d\xa7\x12\x72\x7c\xa3\x1a\xc2\xfa\x66\x08\x25\x7e\x21\x5d\xfb\x08\x7b\x1c\x9b\xf4\xcc\x58\xb5\x70\x81\xa7\x19\xb6\xe3\x7a\xa0\xea\x51\xaf\x8d\x3d\x84\xc8\x2f\x02\x0e\xba\x91\x09\xbf\x81\xe4\x10\x4e\xdc\x1d\x13\x5f\x0d\xbf\x3d\xf6\xcd\x12\x3b\x50\xf6\x15\x8c\x01\xfd\x34\xbc\x81\xbb\x63\x95\x54\xc7\x03\x62\x8e\x27\x5a\xee\xe6\xcc\x94\xab\x9d\x47\x7d\x28\x5e\x69\xad\x3e\x04\xfa\x7f\x3c\x56\x1a\x7a\x67\x9b\x20\x07\xb9\xed\xf2\xf8\xb9\x08\xe9\xc0\xbc\x8b\x90\x9e\x99\x7a\x5d\x26\xc4\x20\xa0\x1e\x52\x8d\x47\x91\xef\x10\x92\x91\x6a\xd8\x10\xff\x1c\x55\xd6\x9c\xca\x05\x94\xa8\xc7\xd3\xe3\x20\xe2\xeb\x1a\x2c\xe0\xc0\x7c\xdb\x26\x5d\x93\xf4\x85\xf1\x51\x30\xa9\xaf\xab\x44\xd1\xeb\x0d\xb6\xa2\x6d\x93\x97\x53\xdf\x94\x86\x00\xe5\x98\x42\xf0\x1c\x6b\x06\x15\x27\xb6\x17\x71\x0e\x1a\xbc\x43\xac\x95\x2a\x40\x0a\x8f\x7d\xbb\xad\x3c\xe9\xc4\xbe\xa2\x84\xd6\x78\x6f\xf2\x4d\x15\xa8\xf0\x9f\xfd\xbd\xff\x84\xd6\x32\xf3\x9e\x93\x3f\x28\x1c\xe8\x92\x56\xee\x95\x49\x62\x1d\x37\x37\x8e\xaf\x7f\x83\x55\xc7\x37\x4d\x2f\x3b\x28\x93\x6e\x66\xbb\x38\x48\x94\x81\x78\xde\x35\x03\x6f\xdf\xdf\x5f\x59\x6c\xf7\x4c\x14\xd3\x89\xe5\x04\xd5\x5d\x44\xf4\x90\x41\xbe\xb5\x6e\xdd\x03\xf3\xcf\x8b\x83\xe3\xec\xb0\x20\x89\xaa\x57\x13\x20\x51\x03\x63\x41\x2f\xf6\x27\x10\x2b\x97\x06\xbe\x5b\xf3\x88\x4a\x65\x0a\x47\xcf\x5e\x6c\x25\x3c\x1e\xb7\xd0\xe3\xf9\xae\x00\x54\x20\xe5\x6b\x3a\xdd\x31\x5d\x3f\x0c\x14\x9f\x15\x92\x7c\x2c\xb0\x49\x1b\x81\xc9\x70\x02\xa5\xfe\xce\x02\xc8\x18\x5d\xd6\x09\x94\x42\xbc\x66\x97\xa8\x46\x0a\x53\xba\x8b\xd0\x9b\x78\x55\x56\x1c\x00\x78\x66\xe7\x84\xf2\xcf\x70\xf3\x4e\x2b\x6a\x91\x3d\x13\xf1\xf2\x06\xb6\x57\x44\xe2\x21\x4f\x51\x08\x48\xfb\x4f\xcb\x51\xed\x7c\x53\xb5\x81\x55\x06\xab\x48\xc3\xa8\x6b\x67\x94\x48\xd1\x5d\x5d\xa6\xd0\x3c\xcf\x27\x54\x3a\xa2\xda\x3d\xb1\x14\xae\x61\x4c\xd8\xd7\x72\xa4\xc2\x5e\x11\xe6\xaa\x12\x5e\x4c\xa3\xf8\x29\x7c\x8a\xb3\xdb\x14\xf8\xa3\x60\x77\xab\x1a\x8f\xad\xd9\x8e\x0a\x35\xae\x2b\x0a\xcf\x3d\x13\xcf\xd5\xf3\x40\xc1\x31\x9e\xec\x78\xba\xdb\x5b\xa8\x61\x8b\x94\x37\x0d\x02\x30\xf1\xb7\x30\xd7\xd2\x09\x46\xd3\xeb\xf8\xf0\xfd\xc1\xc3\xf2\xc1\x58\x05\x8f\x4e\xb6\x09\xf3\x48\xa4\xff\x13\xb8\x8b\xc0\xb8\xdc\xd6\xef\x7a\x4e\xb9\x26\x23\x43\xbc\xf5\x5a\x18\x62\xac\x2b\xe5\x0d\xc1\xfd\xf3\xe0\x02\x50\x41\xf7\x39\x32\x80\x5b\x3f\xd7\xf1\xca\xd9\x57\x09\xde\x89\x14\xea\xcc\x44\xf7\xfe\x61\x64\x65\xee\x9a\xb0\x6b\xa3\xd8\x84\x38\xf3\xb1\x06\x6f\x04\x8a\xa6\x85\x06\x9b\xb5\x23\x1b\xb8\xe6\xf7\xb7\x87\x26\x1c\x44\xec\x33\xc0\xbf\x62\x78\x04\x96\xfd\x29\x7e\x00\x71\x84\xbc\x5b\x4a\x5d\xc5\x04\x15\xd0\x5d\x8f\x34\xee\x70\xda\x7e\x87\x8a\x07\x52\x28\x53\x3c\x07\xbf\x33\x7e\xd6\xab\x28\x64\x66\x68\x8a\x28\x14\x8a\xd2\xe7\x3d\x97\x8f\xe7\xf5\xa9\x47\x65\x0b\xed\x15\x0b\xfd\x76\xdd\xac\x5a\x4d\x20\xf3\x57\xea\x02\xe5\xce\x4e\x1d\x5a\x99\x26\x5c\xf7\x46\x02\x78\x67\xc7\x43\x73\x76\x2a\x95\xf1\x55\x93\x99\x74\xd5\xce\x7d\x5c\x3b\x8e\x2a\xc4\x1f\x19\xeb\xfe\x1d\x7a\x15\xfe\x87\x5a\x28\x50\xb9\x9b\xe9\xab\x26\x5b\x95\xed\x86\x04\x0a\x03\xf7\xa6\xbc\x75\xb1\x50\x4f\xb8\x0e\x03\xd3\x25\xf0\xe1\x14\x54\xb1\x5a\x5b\x80\x28\x9d\xd7\xa8\x07\x06\x98\x0a\x93\x63\x13\x25\x60\x38\x10\xfe\x3c\x04\x9a\x97\x61\xd2\xd1\xd7\x21\x8c\xbf\xcf\x6a\x1c\x80\xcd\x8b\x88\xc4\x67\xa6\xba\x21\x14\xa7\xd7\xa6\xa6\x9b\x58\x8d\xba\x34\xcc\x98\x49\xe8\xb3\xf0\x75\x6d\x58\x96\x96\xda\xf9\xc6\x70\x25\x15\x0f\x99\x07\x59\x99\xba\x4b\x8a\xe9\x35\xcc\xa2\x70\xd5\x82\xa5\x49\x64\x43\xab\xbf\x44\xb5\x08\x0c\x5f\x92\xf2\x6c\xf8\xa5\x38\x4d\xfa\xae\xf7\x40\xab\xfe\x23\x6b\x72\x4f\x39\xf5\xe7\x1b\x45\x1a\x36\xf2\x22\x1d\x45\xa6\xe5\x2b\x5d\xac\xaf\x21\xa7\x82\xdf\x2a\x66\xcd\x44\xb1\x59\x89\xed\x23\xad\x85\x05\xdf\x00\x50\xc5\x91\xc8\x42\x3d\xa0\x43\x1e\xbf\xbc\x63\xe2\xbb\x85\x4f\xe2\x1b\xf9\x13\x81\xea\xfa\xfb\xc3\x60\xaa\xe1\xb6\x7a\x08\xc4\x10\xb7\x81\x84\x83\x29\x99\x75\x5a\x1e\xf9\xc0\x66\x2b\xb6\x98\x42\xae\x8f\x15\x72\x3d\x78\x7a\x7b\x05\xeb\xc5\xf6\x17\x88\x49\x4d\x30\xe7\xd5\x1f\x03\x02\x04\x26\x35\x38\x73\x67\x71\x12\xc2\xda\xdc\x56\xe9\x8b\x6b\x81\x06\x5e\x50\x66\x8a\xbd\x15\x2c\xc7\x1f\x28\xb5\xbd\x97\x7f\xa0\x1b\x6d\x6d\xb4\xa2\x85\x29\xd9\xa6\xf0\x4d\xa3\xac\xdc\x8a\xe1\x84\xbd\x30\x82\x28\x01\xae\x26\xed\xdf\xfd\x6d\x13\x65\xeb\x66\x43\xba\xc0\x11\x8b\xbf\x15\x28\x9d\x21\x4d\xec\x95\x96\x45\x66\xfa\x10\x77\x86\x45\xf9\x63\x5a\x93\x7c\xdd\xb4\xba\x4c\x9e\xdb\x4c\xa0\xb6\x4e\xb0\xc5\x83\xc7\xaf\x34\xba\xd5\xeb\x42\x5c\xcd\x55\x42\x1a\x4e\xa9\x18\xfa\x7e\xdf\xa1\x49\x06\xa6\x28\x4c\xb2\xcb\x4f\xe0\x6b\x81\x3a\xf1\x7e\x83\xac\xbe\xd0\x63\x29\x8c\xe6\x49\x3c\x03\x16\xda\x49\x9d\x2d\x3b\x56\xf3\xa9\x09\xab\x31\x2a\x57\xe2\xca\xc7\x6a\xf9\xec\xdc\x3b\x18\x26\xbe\x71\xc0\x94\x72\xb4\x6e\xb2\xee\x9c\x67\x91\x7d\x9c\xdc\x1f\x64\x43\xa1\x5b\x86\x45\x72\x53\x01\xf7\x7e\x97\x9c\x1f\xc4\x5d\xc7\x6a\xbd\x8d\x07\xe6\x5d\x2b\x25\x2f\x1d\xc4\x0c\xdf\x19\x2b\x45\xe1\xef\x38\x16\x12\x53\x45\xaf\x39\x51\xc8\x62\xea\xff\xc7\xb1\xaf\xdc\x31\x7a\x19\x36\xfc\xc6\xc7\x76\x4f\xd9\x57\x46\x36\x8b\xa4\xe4\xe5\x7c\x73\xed\xa8\xbb\x37\x5e\x31\xf1\xab\x26\x54\xc5\x3d\xe6\x25\x94\xfe\x70\xf9\xbb\x21\xf1\x79\xed\xae\x46\x06\x2d\x57\xff\x96\x9e\x0b\x67\x21\x77\xaf\x22\xf7\xbb\xa7\xe3\x8f\xd2\xd7\xc6\xca\x06\xfe\xfa\x58\x11\x26\x03\x1f\x01\x87\xe3\x1d\x57\xe7\xe9\xd9\x95\xcf\xcf\xa1\x6d\x50\x41\xdd\x50\xd9\xc7\xcf\xa2\xcb\x48\x00\xca\x0a\xb5\xf0\x89\x8e\x3c\x6a\xd7\x0c\x4d\xdf\xce\x91\x4d\x74\xdc\x38\xae\xb6\x7b\x29\x50\x08\xf0\x7f\x31\xf6\x29\x54\x9c\x89\x80\x85\xdd\x6c\xf4\x32\xb8\x44\xa6\x55\x78\x1f\x04\x4a\x85\xf7\x81\xaa\x0b\x86\x26\x2f\x4d\x4c\xc1\x29\x1e\x9c\xbb\x65\xb8\xdc\xaf\x3a\xca\xeb\x12\xe8\x95\x35\xe8\xa7\x71\xaf\xe5\xf7\xe7\x05\xd5\x8e\x5c\xe7\x01\x38\x30\xdf\xa6\x35\x9e\x0f\xa4\x7e\x83\xd7\xd0\xec\xec\x6c\x81\xb0\x4c\xef\xab\x30\x3a\x4b\x57\x4a\x26\xc7\x77\xa2\x9d\xd5\x5f\xf2\x4d\xa3\xea\x38\x61\x23\x65\x24\xa6\x84\x47\x85\x04\xd8\xe3\x28\x49\x72\xc8\xb0\xce\x69\x35\x27\x80\x78\x22\x43\xc0\xd7\x1d\x95\x9a\x0a\x4d\xd2\x35\xf1\x1c\x6d\x78\x44\xe3\x20\xde\x95\x16\x5f\x9a\x3e\xfe\x07\x25\xc6\x75\x4d\xc9\x70\xd6\x3b\x77\xc1\x34\xb5\x2a\x19\x13\xcc\xfe\x98\x06\x95\xaf\x55\x56\x30\x1a\x56\xfb\x87\x13\x69\x0e\x5d\xe6\x0b\xed\x7e\x57\x0c\x36\x56\xb2\xa8\x3b\xa7\x6c\xc9\xe6\x36\x5f\x77\x2a\xc3\x59\xfd\x9c\xd3\x26\x5a\x5e\x76\xfc\x53\x3e\x63\x90\x66\xab\x76\x38\xa3\x74\x48\x20\xf4\x0a\x28\x02\xa3\x74\x38\xd1\xaa\x5a\x67\x4c\x99\x17\x59\x64\x34\xb9\x17\x77\x0c\xf1\x4d\xa3\x98\x42\xda\xeb\xe5\x83\x34\xb3\xb3\xe4\x72\x8a\x50\x58\x35\xa2\xd8\x10\x68\x01\x91\x90\xc5\xc3\xfc\xdf\x52\xd9\x76\x76\xbc\xf3\xdd\x2d\x27\x91\x05\x26\x5c\xc4\xfa\x73\x13\x85\x17\x04\x2a\x84\xff\xa1\xe3\x2d\xce\x1f\xe1\xf4\xe5\x4f\x07\x53\xcc\xce\xbe\xe7\x3b\x5a\x09\xff\x8b\xff\xb8\x9b\x26\x69\x7f\x50\x4a\x4a\xd8\xa5\xc5\xab\x1f\x91\xb4\xb8\xd7\x8a\x84\x9f\x27\xcb\x14\xe5\xb7\x6b\xf4\x52\x7c\xdd\x10\x89\x2c\x56\xd1\x51\x01\x87\x88\x1d\xaa\xc0\x63\x56\xce\xab\x57\xcf\x6d\xb6\x16\x85\x36\x7f\xa2\x5a\x9c\x0c\x4e\xa6\x6d\x8d\x3c\xe5\x2c\x08\x77\x64\xc5\x28\x21\xd8\xf3\x48\x1d\x49\x9b\xba\xc7\xad\x9e\xa6\xf8\xc9\xad\xf3\xca\xf7\x17\x3d\x06\x05\x95\xfc\x3a\x42\x04\x85\x4e\xf9\x92\x44\xba\xaa\x86\xf2\x10\x86\x89\x3f\x42\xbd\x00\x38\x4f\xee\x2a\x80\x68\xfa\xf9\x15\x45\x59\x73\x34\xf0\x60\xd1\xa3\x5a\x06\x20\x36\xe1\xea\xac\xaa\xbe\xff\xc9\x58\x65\x3d\xff\x84\xf6\x9d\x13\x37\x70\x2d\x4a\x27\xdd\x11\xf3\x6a\x9a\x48\x6b\x90\xd0\xc4\xd3\xe7\xf1\x99\x0f\x03\xbf\xcb\x7e\xac\x8a\x26\xfd\xcc\xac\x59\xd0\x58\xb9\x44\xfb\xb2\x4f\xb4\x6f\xcf\xf1\x7c\xa1\xfa\x00\x1f\x78\x0e\x1a\xe2\x93\xd2\x75\x9b\x79\x68\x7e\x3f\xe3\xb0\x65\x81\x60\x65\x9e\xd4\x28\xe0\x93\xae\x2e\xd6\x8d\x5e\x7d\xb5\x5a\xe8\x39\xb9\xea\x30\x39\x60\xb2\xc6\x16\xbb\xab\x38\x1b\xbe\xab\xaa\xa3\xeb\x26\x8e\x47\x66\x34\x15\xe4\x9d\x56\x03\xfd\xa1\xce\x6d\xbf\xb1\x4d\x33\x94\x83\x49\x07\x4b\x50\x22\x9d\x2a\x1f\xd7\x47\xdd\x8a\x5b\x69\x02\x1f\xd0\x5c\x1b\x3f\xab\x2a\x75\x71\x9a\x44\x26\x8e\x72\xe6\x5b\x17\xf0\x84\x42\x87\x9f\x53\x3d\x8c\xbd\xd8\xac\x33\x65\x02\x2b\x63\x06\x5e\xcd\x64\x4a\x89\xe7\x2e\x1d\xae\xfc\x0f\xc1\xd3\xfa\x17\x63\x6b\xfa\xa5\xcd\x67\x55\x9f\xef\x0d\x25\xa6\x77\x8f\x9e\x15\xc7\x23\x33\xa3\x63\x55\xdf\x71\x91\xe2\x2a\x84\x50\x68\xf0\xa4\x59\x9f\xbe\x0d\x5e\xc4\x0c\xf9\x1a\x5e\xf9\xd5\x0f\x5e\x66\x8a\xb9\x2a\x1c\x41\x24\x0d\xe2\x0a\x97\xa6\x5f\x76\x5a\xb4\x28\x7b\xc0\x29\x82\x8c\x28\x37\x21\x35\x12\x04\x87\x26\x31\x5d\x91\xa2\x14\xee\x0c\xd5\xea\x75\xc9\x23\x66\x07\x26\x1b\xd9\xbc\xa0\x07\x17\x02\x10\x8f\xeb\x3a\xa3\xe3\xa6\x7b\x81\x4f\x36\x0f\x6d\x16\x0e\x4c\xd2\x25\x8a\x21\x57\x0a\xe0\x14\x96\x0e\xf0\x30\x18\xf7\xa7\xba\x18\xb3\x9e\x0d\x8b\x78\x63\x56\x09\x87\xa1\x16\xeb\x68\xbb\x1c\xf4\x83\xcf\x78\x01\xae\x3e\x23\xd5\xdf\x34\xcf\xa3\x15\x61\xe2\x50\xbe\xdb\x9b\x2a\x7e\x7d\xb3\x89\x1c\xd3\x94\x45\x3a\x74\xe0\x2c\x47\x90\x5e\x3d\x89\x84\x77\x1e\x2b\xd1\x4f\xb9\x60\xcc\xbc\xfc\x48\x3b\xe3\xef\x8e\xa3\xbb\x0a\xf0\xbf\x7b\x35\x2c\x98\x63\x08\x28\x87\x51\x91\x0e\xd3\x99\xd6\x2f\x3f\xef\x03\x48\x17\xb8\xb1\x96\x10\x23\x7e\x55\x60\xd6\x13\xbd\x7b\xa4\x62\x3f\xa0\x22\x38\x5f\x6b\x2e\x2c\x10\xe3\xb6\x14\xa2\x2e\xf0\x32\x59\xcd\xda\xa9\xeb\x69\x56\x0c\x76\x79\x8f\x0b\x82\x0f\xc8\xb5\x72\x57\xa8\x68\xac\xd0\x19\x07\x53\x76\x6e\xec\x11\xf2\xc7\x55\x7d\xe0\x8c\x4b\x93\x87\xa6\x1b\xc5\xb1\x09\x69\x2d\x21\xed\xa0\x25\x29\x39\x02\xc2\x22\x3b\xa7\xea\x53\x23\x92\x95\x75\x4e\x3a\x5c\x48\xbe\xae\x2f\xef\x03\xfb\x3f\xdb\xee\xdb\xa4\x8c\x12\xc4\x88\x8c\xb2\xa4\x79\x17\xc4\xe5\x76\x47\x95\x28\x08\xd6\x64\xa5\x68\x40\x85\x60\x28\xfc\x88\x76\x33\xf0\xe6\x55\x91\x8d\x80\x1b\x7d\x89\xfe\x84\x6a\x7e\x35\xa1\xe9\xda\x61\x14\xce\x2a\x92\xba\x0b\x70\x0b\xe0\x13\xf1\xf9\xc1\x37\xdc\x27\x27\x7e\x4a\x7d\x66\xda\x51\x9e\x97\xf2\x90\x12\xaa\xab\x9c\xd2\x0f\xc6\xcf\x4e\xa7\x0d\x2a\x5f\xff\x85\xfd\x9f\xd5\x47\xde\x25\x85\x06\x39\xae\x4a\xb7\xc7\x35\x0b\xd6\xa5\x5a\x3f\xa9\xac\x56\x52\x22\xb2\xc2\x7e\x28\xd0\x08\x3c\xf8\x54\x1a\x57\x5a\xb4\xb7\x93\x14\x00\xf5\x91\x14\xa6\x9f\x26\x51\x2e\xc5\x4d\xd7\xdd\x57\x7d\x54\x3a\x77\xbc\x45\xb0\xc3\x15\x53\x14\x31\x37\x41\xa3\xe6\x76\x03\x6f\xce\x37\x0d\x0e\xd0\xfe\x76\x5e\x10\x8b\xf4\xa1\x79\x07\x97\x9b\x02\xd2\x6d\x4f\x43\x2e\x2f\xb7\xc3\x12\xbc\xd6\x38\xde\x41\xd2\xc6\xd7\x0d\xc8\x99\xc5\xb6\xc9\x37\xe2\x72\x88\x6e\x02\x29\x89\xb4\x1c\x6d\xce\x2d\x45\xf2\x76\xa9\x56\x95\x39\x34\xcf\x5c\x87\x6b\x36\xcb\xf9\x80\x44\xfa\x19\xe0\x5c\xbe\x56\x5d\x13\xdd\x28\x59\x8d\x84\xf9\x17\xa9\xc8\x0b\x70\x39\x85\xb9\x4b\x35\x6b\xe8\xbe\xaa\xb0\xf2\x8e\xf3\x56\xeb\x8b\xbf\xca\xbb\xb8\x45\xa0\x10\xbe\x9e\x7c\x1c\x91\x44\xbf\x34\x99\x49\x0a\xcb\xd5\x0b\xd8\xd8\x0b\x2a\xa0\x65\x80\x01\xd2\x9b\xb7\x54\x6f\x4f\xcf\x84\x36\x8e\x7a\xdc\xe8\x88\x11\x78\x5b\x8d\xc6\xdb\x4d\x1c\x2b\x61\x1a\x77\xe9\xac\x80\x3f\xf5\x50\xe1\xb7\x18\xf1\x25\xb8\xb2\xc7\x14\xf0\x2c\xdb\xe5\x53\xd3\x7f\x45\x1f\xe1\x00\x20\x50\xaa\x6e\xd7\x60\xc0\x9d\x9a\xa8\x2b\xe3\x72\x38\x24\xac\x2c\x0d\x15\xed\x28\x59\x4b\x23\xaf\x05\xee\x44\xef\xbc\x00\x5e\x53\x4a\xeb\xf9\x76\x38\x28\xb3\x70\xa0\x68\xe1\x27\xf8\x29\xbe\x69\x66\xd0\x2e\x47\x31\x8e\x4b\xc7\xdd\xa5\x89\x0c\x7e\xe9\x05\x77\xe8\x09\x13\xd9\x28\xe2\x24\x22\x42\xf0\x37\x55\x38\xfe\x66\x13\xb4\x31\x25\x89\x6e\x5a\x40\x4e\x8e\x54\x69\x93\x36\xa5\x56\x4d\xaf\x3a\x8d\xa7\x38\x39\x18\x49\xc0\x37\xaa\x20\x63\xfa\x26\x4a\xf2\xe2\x49\x8a\x0b\x78\xbd\x60\xe8\xe1\x17\xb6\x26\xbe\x4f\xe4\xa4\x6e\x15\xbc\x31\xf6\xbd\xbc\x9b\x8a\xc1\xe2\x3a\xa8\xcc\x9c\x94\x7f\xe5\x45\xcb\x5c\xeb\xee\x97\x8b\x0a\x39\x09\x73\x8c\xc0\xfa\x7f\xd2\x29\xdb\xd3\x81\xe2\x30\x67\xe2\x24\xd8\x8f\xd9\x8e\x2a\xd6\xce\x76\x2a\x7f\xcb\xd1\xde\x1e\x10\x4e\x88\x7b\x4d\x68\x63\xe4\x68\xa6\x22\x33\x68\x4f\xf2\xb5\xca\xbb\x86\x69\x42\x4a\xcb\x90\xfe\x70\x61\xea\xb2\xe0\x14\x76\x40\xcf\x53\x60\x84\xd5\x4b\xc0\x54\x5d\xa3\x70\x0a\xb5\xb4\xeb\xba\x42\x7c\x5a\xf3\x3c\x7e\x8b\x86\x0d\x75\x87\xb7\xb0\xf8\x91\x14\x9e\xe2\x1b\x3f\x4f\x27\x33\xa2\x94\xa7\x80\xb0\xe2\xef\xd2\x49\xdf\x28\x5c\x05\x90\x18\xf1\xc1\x43\x45\x61\x35\xad\xb1\xa6\x1a\x85\x36\x55\x07\xe2\x94\x0c\x72\x54\x44\x61\x9a\xb1\x22\x93\x9c\xc0\x0a\x83\x7b\xdd\x89\xf8\x56\x9e\x5f\x9a\x0d\x4d\x12\x3a\x51\x3f\x60\x11\xae\x69\x2c\xfa\x35\x18\x0f\x19\x53\x46\xd3\x53\xb2\x76\xf1\xa0\x08\x0f\x01\x6f\x2a\x2a\x44\x4f\x78\xb7\xd0\x53\x15\xc0\xd1\x40\x69\x82\xaf\x55\xb3\x41\x99\xf5\xb9\xa8\x32\xa5\xed\x29\xf9\x5d\x1f\xb6\xfc\xa7\x7f\xf7\x3f\x6b\x55\x0b\x06\xf0\x7a\xb0\xeb\xf3\xb5\x02\x1b\xf4\x4c\xa6\x60\xa5\xcc\x5a\x27\x38\x49\xbf\xde\x2f\xa9\xc0\xfb\x9a\x6e\x4b\xf9\x6e\x93\x4c\x7d\x9e\x52\x07\x1d\x66\x16\x40\x3f\xe4\xa7\x61\x9f\xa4\x24\xba\x3d\x97\x7c\x68\x7e\x79\x7b\x2a\x17\x65\x9a\x63\x4a\x41\xfb\x58\xa0\x89\xc7\x2c\xc9\xab\x55\x7b\xc1\x21\x54\x1c\x47\xd2\x05\x45\x08\x98\x17\x19\x89\x88\x2f\x8b\x68\x3c\x74\x36\xf8\x5a\x51\x36\x77\x6d\x92\x8a\xca\x51\x8e\xc2\x3a\x0e\x4d\x24\x57\xe0\x3e\x7c\x0b\x1b\x1e\xb3\x78\x56\xd5\x29\x4d\xb8\x9a\xa4\xeb\xb1\xed\xf6\x85\xc1\x0e\x4b\x9d\xf1\x36\x2e\x2a\x73\xf2\x91\xc7\xd5\x54\xc4\x51\xf8\x28\x16\x97\x8b\x67\x9c\x57\x71\x72\x1a\x42\xe8\x41\x87\x7f\x8b\xd2\xbc\x4e\xee\xbc\xfa\x49\xd1\x6e\x53\xed\x75\xf8\x79\xec\xda\xc7\x90\x32\x02\x28\x08\x93\x83\x5a\x94\xe6\xe7\x1c\xd9\xfc\xd1\xea\x8b\x85\x51\x44\x53\xce\xd3\xaf\xc3\x37\xdc\x83\x1c\x0c\xb9\x98\xbf\xda\xee\x78\xb6\xb2\x7f\xfe\xff\xef\xd4\xb6\xa0\x24\x3f\x5d\x67\xc1\xdc\x2f\x4e\x94\xd3\xbe\x6b\xa2\x82\x61\xcf\x38\x1c\x9b\xa4\x9b\xc7\xa4\xfa\xe6\xf8\x31\x90\x55\x86\x0d\x00\x79\xb0\x88\x9b\x6d\x97\xc9\x5a\x5a\x6a\xf7\x2b\x47\x26\x19\xda\xa4\xe0\xc6\x59\x71\x78\xab\xef\x10\xa7\xd6\x47\xd5\xd6\x64\xc5\xe0\x6b\xa5\x59\xb5\xe0\x49\x05\x88\x0b\x6e\x3a\xd0\xaa\x5b\x63\x95\x01\xfe\xa6\x42\x85\x5c\x23\x00\x37\xab\x98\xe0\x14\xc1\x12\xb9\xa6\x66\xf9\x97\x16\x72\xa4\x33\x29\x07\xf8\x85\x4f\x23\xb3\xcf\xda\xc7\xec\xb1\xa2\x11\x92\xd5\x13\xe8\x1b\xfe\xef\x9f\xa7\x58\x07\xd5\xf6\xab\x53\xfd\x6f\x71\xf1\xf9\xd6\xb4\x22\x0a\x7d\xbd\x1c\xa3\x3e\xcd\x14\xc6\xe5\xca\x94\x3c\xc3\x09\x3d\xad\xb7\x54\xef\xfb\xf9\xda\x38\xc2\x29\x0c\xe3\x32\x8f\xd6\x2c\xe3\x78\xa5\x19\xaf\x1a\x7f\x69\xd2\xf3\xaa\x3b\x59\x14\xda\x5d\xaa\x1e\x71\x9d\xdf\x8d\xef\x82\x29\x89\x52\xd7\xc4\x74\x42\xc9\x3d\x9c\x98\xca\xed\xaa\x6d\x6f\xba\x6b\x95\x29\x46\xa7\xb2\xcb\xe6\xf9\x6c\xec\x29\x00\x7a\x30\x73\x5b\xaa\x55\x0e\x7c\x06\x5a\xad\x48\x72\x84\xb4\x9f\x5d\xb9\xbe\x3a\xee\x14\xbc\xfa\x45\xa7\xe9\xe3\x33\xc2\x2b\x71\x99\x14\xa2\x1b\x0c\x7b\x79\x4b\x29\xa1\xdd\x6a\x00\xce\x2e\xb7\x8b\x2c\x5a\x93\xb4\xb7\xdb\xa5\xae\x93\xfe\x7c\xf0\xa9\xed\xd5\xd5\x45\xf2\xd9\x1e\xab\x76\xa2\x48\x91\x61\x14\x85\xfa\x8e\x1e\x15\xae\x0a\x73\x00\x61\x8d\x5e\xd5\x2c\xbd\x37\x68\x5d\x62\x97\xdd\xa3\x81\x87\x27\xfb\x97\x34\x75\xc8\xd3\x20\xe6\xc2\x90\xb1\xdc\x84\x6e\xbc\x14\xaf\x47\x85\xcf\xae\xa6\xf4\x72\x1a\x25\xbb\x15\x19\xce\x59\xad\x20\x77\x9e\x1c\x28\x00\x8c\x76\x77\xa6\x34\x91\x68\xf1\xc1\x0c\x11\x19\xec\xd6\x05\x45\x37\x71\x4e\xa5\xf8\x9c\x3e\x2d\x5c\x4a\x37\x72\x7e\x14\x9d\xd0\x5f\x98\x96\x59\x31\xa3\xd5\x18\x7e\xa6\x54\x0f\x38\x2e\x40\x54\xba\x63\xa2\xb6\xc6\xab\x36\x1c\x68\xc0\xed\x07\xaa\x56\xfe\x81\xfb\xf6\x81\x8d\x92\x57\x75\x9f\x9e\x2e\xe5\x6d\x06\x8f\xf9\xa6\x2d\xce\x81\x00\x2d\xc1\x34\x42\x7c\xd3\x2c\xe1\x99\x6c\x50\xbc\x20\x4c\x55\xbe\x13\x64\x8a\xb9\x81\xa3\x61\xa9\xea\xb5\x9c\xa8\xf6\x0d\x82\x06\x48\x73\xa5\x6f\xc6\xc8\xad\x7d\xbc\x9a\x64\xfc\xd5\x35\x1a\x60\xac\xd0\x9d\x54\xf7\xc0\x91\xb0\xb3\xa3\xb0\x3c\xf7\xc7\x8a\x34\xfd\x6d\x62\xe8\xc1\x9e\x3d\x06\x9f\x55\xe8\xe8\xbc\xd8\xf3\x91\x40\xf7\x86\x6e\x01\x6f\x05\x9f\x77\xe7\xc4\x87\xf2\x57\xe0\x71\x8b\x10\xba\xaa\x12\x6e\xd6\xca\xca\x87\xe6\x5f\x6c\x0f\x4d\x94\xf4\x32\x33\xe4\x24\xb5\x1c\x84\xea\x50\x6c\xa2\x29\x5c\x4f\xb3\xd5\x19\xcf\xbc\xc8\xcb\x0c\x37\x58\x33\x98\x87\xab\x0d\x32\x02\x45\x49\xea\x42\x9e\xd2\xeb\x92\xee\x08\xba\x54\x83\xa2\x1c\xfc\x2a\x8a\x6f\x16\xd1\xbc\xae\x42\x89\xd5\x9a\x6a\x2f\xcd\x8b\x2c\x2d\xf3\x16\xb9\x80\x28\x16\x00\x44\xca\xd7\xb5\x50\xbc\x72\xa5\x46\x36\x8c\x4c\xec\x9a\xa4\x70\xba\x5c\xd6\xba\x1c\x97\xa7\x3a\xf6\xd3\xdc\x3e\xab\x38\x4f\x8f\x8e\x55\xea\xef\x21\x16\x22\x06\xe3\x7d\xda\xfd\xc8\x07\xdf\x0a\x3c\xaf\xaf\x60\xb9\xe0\x8b\x3f\xda\xa1\x6c\xa1\x2b\x93\x54\xf6\x06\xee\xc9\x9b\xf0\xe5\xf1\xa1\xab\x88\x87\x60\x7c\x2e\x63\xcc\x55\x01\xf7\x45\x4e\xc2\xdc\x1c\x4f\x73\xea\x1c\x9a\x67\x5f\xfb\x26\x8c\x17\xeb\xd0\xd3\xa0\xd0\x98\xff\xc6\x93\x14\x99\x39\x7e\xba\xc5\x83\x1c\xa0\xec\x9d\x78\xf0\xec\x77\xe1\x54\x53\x64\xf3\xf5\xbd\x90\x8c\x16\xd1\x6d\xa7\x3f\x36\xc8\xca\xbc\x98\xf3\xb4\x29\x17\x75\x52\x82\x19\xce\x11\x71\x9c\x57\x7b\xff\x08\x8e\x71\xac\xf9\xff\xab\x89\xf8\xa7\x17\x65\x76\x68\x12\x34\xdb\xc2\xc1\x9b\x9d\x78\x14\xcc\x6c\x47\xc3\xa2\xf2\xc2\xc4\x31\x14\x34\xe9\x07\x85\x77\xbe\xe5\x39\xe8\xa7\xf0\xd7\x3d\x9b\x74\x1f\x69\xb9\x86\x59\x56\x69\xc6\xd6\xe2\x88\x4b\xa4\x8a\x15\x73\xf5\x85\xb1\xe7\xa9\xd8\x81\x20\x0b\x25\xa3\xb9\x8e\xef\xdd\x9b\xa1\x81\x15\xb6\x1e\x9a\x23\xfe\xaa\xda\x32\x5f\x3c\xd8\x1e\xa4\x45\x61\xf3\xa2\x45\xb3\x8c\x13\x03\x85\x3e\xbe\x6e\x90\x50\xa0\x86\x7a\x9c\x90\x8b\x6c\x28\x7e\x82\x83\x85\x6f\x9c\x59\x1d\x5a\x5b\x30\x56\x0d\x5f\x87\x7a\xb4\x2a\xab\xef\xf7\xbb\xb9\x7a\x67\x69\xe1\x6c\x52\x8c\x71\x45\x57\xdf\x71\x87\xf1\x85\xeb\xf8\x11\x91\x86\x39\x31\x6f\x17\x32\xde\x53\x1c\x8c\x59\xb4\x66\xdd\xd9\xae\x3b\x20\xc5\x0e\x48\x96\xa3\x17\x86\xe4\x95\x4e\x35\xe2\x23\xa6\xdf\xd9\xc1\x2e\x92\xb0\xcf\x7f\x7b\x31\x48\xcb\xfe\xa0\xd8\xd3\x72\x3c\x1d\xcc\x0b\x28\xb2\xca\x8a\xb2\xf0\x3a\x0d\x84\xf0\x7c\xe2\x1b\x05\x68\xdc\x72\x3c\x72\xef\x69\xc5\xe1\x4d\xdd\x1e\x7c\x6e\xaa\x64\x53\xc4\xf6\xe9\xea\xfb\x70\xfa\x33\x0d\x1c\xdf\x50\xb4\x80\x20\xf2\x06\x19\x03\xf7\x6d\xd5\x57\x23\x41\xc5\x5c\x49\x58\x8b\xb7\x50\x25\xe5\x7f\x21\xc7\x00\xa9\xbf\x27\x20\xa9\x86\x8d\x75\x4b\x67\x64\xe6\x28\xd8\xc0\x92\x63\xb3\x20\x31\x3e\xd9\x95\x29\xca\x78\x6c\x39\x39\x5a\xdc\xc2\x5e\x5a\x62\x27\x05\xe4\x26\x9c\x46\x43\x49\x43\x3a\xcc\x69\x91\x49\x67\x9a\x17\xe4\xce\xcb\xbc\x30\x51\x02\x81\xb1\xc5\x83\xde\x39\x3a\x20\xe0\xe2\x7a\xba\x96\x52\x66\x89\x7d\xa5\x50\x15\xc0\xf3\xf4\xb2\x7c\xad\xbe\x3f\x8b\xfa\x83\x62\x60\x92\x2e\xb7\x27\xe3\xa5\x4f\x8f\x7d\x7e\xea\xb4\x0b\xf8\x87\x5c\x76\xa3\xa1\x42\x06\x05\xec\xa0\x78\x6d\x14\x3b\x05\x90\xd3\xd0\x23\x36\xca\x54\xee\x0f\x0b\xe7\x8c\xe2\xb7\x39\x53\xc3\x23\x7c\xa1\x5d\xd8\x70\x90\xa4\x71\xda\x07\xa1\x3b\x7b\xfa\xc1\x14\x79\x44\x43\x66\xce\xc4\xd1\x1a\x62\x2f\x91\x62\x6e\xb9\xd6\x78\x00\x12\xe1\x1d\xbc\xed\xfa\x4b\xed\x9a\x4d\x8a\x92\xa0\xba\xd5\xd0\x36\x62\x3f\xf7\x2a\xe7\x2e\xac\x02\x34\xcd\x21\xf9\x8e\xf6\x0d\xde\x51\x25\xeb\x38\x4a\x6c\xbe\xcb\x1b\xcb\x0f\x68\x98\xa4\x4a\xaa\xf6\xcd\x29\xda\x37\x2e\xf1\xef\xe3\x38\xe4\xe0\x70\x02\xdc\x50\xf4\xb6\xbd\x28\x21\x70\xcf\xac\x13\x60\xe3\xfe\x29\x47\xf9\xbc\xe0\x54\xeb\xc7\xaa\xc7\xaa\x96\xcb\x5c\x5a\x6a\xc7\xd4\x67\x44\x96\x12\x60\x20\xb4\xf9\xf3\xb5\x82\x30\xe5\x69\x2c\xb1\x14\xbb\xf0\x4a\xa7\xce\x93\x03\x75\xd3\xb0\x48\x45\x41\x59\x4c\x90\x32\x47\x4d\x58\x1c\x34\x5c\x4a\xb2\x4a\x08\x90\x94\xf1\x9c\xb8\xa5\x38\xa8\x86\x5f\xec\x34\xe6\xf2\xa6\x16\xb6\xb8\x39\xd6\x1a\x1f\x65\xe5\x8d\xb4\x74\xa6\x3f\x50\x44\x42\x17\xd4\xdf\x66\xd5\x3a\x28\x2d\x72\xae\xd8\xa7\x17\x03\xc5\xea\x7f\x89\x4e\x73\x84\x7a\xbb\xe0\x65\x60\xcf\x7e\x7b\xec\xc9\x8d\x39\x06\x14\x6a\x74\xdd\xa8\xc8\xed\x50\xc0\x2f\x6e\x05\xe4\x02\xc0\xf6\xbe\x85\x63\x06\x5e\x15\x17\xe0\x85\x6c\xa7\x9a\x3b\xac\x11\x50\x27\xb0\xe8\x3d\xcc\x14\xd3\xb9\xa3\x0f\x01\x5e\xce\x1f\x92\xcb\x8c\xa5\xff\x28\xb9\xcc\xd8\x61\x8f\xa9\xb6\xc5\x51\x66\xc2\x22\x0a\x51\x87\x77\x49\x7b\xd8\x34\x6c\xfc\x1b\x4a\xe4\x56\x13\x47\xdf\xf0\x0d\xbb\xc5\x46\x65\x10\x66\x15\xf8\x6a\x53\x37\x9a\xff\x76\xd0\xda\x46\x35\x21\x1d\x8b\x0d\x5d\x4e\xd1\x90\x9a\xf8\xa9\x05\xc1\x61\x73\xaf\xe8\xfe\xaf\x1a\x11\xe4\xd2\x52\x3b\x33\xf9\x6a\x1a\x27\xd1\x6a\xba\xf6\xf1\x70\x45\x9f\x52\xeb\x99\x6c\x68\x99\x8b\x05\x2e\x35\xd6\x39\x5f\xd7\x9e\x0b\x95\x94\xd8\x8c\xbc\x5e\x39\x5e\xe1\xde\x14\x05\x77\xcb\x11\xb4\x9d\x57\x71\x4c\x92\x0d\x5b\xaa\xb3\x86\xfb\x21\x45\xfd\xe6\xe3\xa4\x38\xd7\xc9\x24\xb7\x3c\xde\xfb\x4d\xbc\x0c\xdf\x04\xcf\xf8\x52\x6e\x5a\xd9\x63\xd6\x36\xdf\x27\x6a\x15\xe0\x61\xe5\xeb\x1a\x1b\xcd\xf2\x72\x7b\x60\xe3\x11\x11\xbf\x48\x5b\x90\x5a\x46\x67\xc9\x4e\x60\x8f\x32\x3f\x35\x52\x46\xf5\xc8\xa3\xda\xb0\x69\x8a\x2a\x22\x67\x1b\xf1\xa0\x92\x7a\x94\x55\xb2\x92\x96\x94\x83\x9e\x92\xc8\xa9\xb6\x94\x74\xa3\x6e\x37\x47\x0b\x0b\xed\xae\x1d\x15\x1c\xdb\x36\x49\x21\x36\x95\x0f\x21\x99\x8a\xc3\x05\xcf\xfc\xa6\xc2\x6e\xd6\xe1\x09\xa4\xed\x3c\x88\x46\x23\x41\x26\x63\xbf\x1e\x56\xb2\x06\x87\x55\x32\x36\x4c\x87\x23\xf3\xb5\x59\x0f\x9c\x38\x0f\x5f\x82\xd9\x40\x95\x00\xd0\xfb\x9a\x9d\xf0\xbc\xee\x76\x4e\xc2\xb4\x6f\x13\x9b\x93\xa4\x18\xb6\x05\x57\x7f\x54\xe4\xe6\x3d\xb6\x6a\x4e\xf9\xaf\x94\xa3\xd7\xb5\x50\xdc\xf5\xcb\x16\xc5\x40\x91\xcb\x7f\x5a\x91\xbd\x84\xa1\xcd\xf3\x5e\x19\x3f\xa2\xf6\xe1\xd8\x4b\xfe\xb4\x3a\x8a\x10\xeb\x14\xde\x87\x6f\x02\xd5\x28\x79\x8d\x9e\x04\xf1\x0f\x17\x1b\x9c\x62\xdc\x81\x79\xa9\x31\xdf\x41\x34\xc5\x37\xa0\xfc\xe6\x65\x5a\xf6\x07\xab\xd6\x8e\xf2\xc8\x22\xe2\x10\xf6\x06\x58\x46\xbe\x53\xb5\xfe\x9c\x18\x7d\xfa\x1b\x8f\xd2\x6f\xc1\xcd\xb9\x33\xf6\x76\xec\x0c\x59\x23\x26\x9f\x0f\x94\xe7\xf6\x0e\x6d\x66\x84\x87\xef\xe2\x15\xf8\xd3\x81\x66\xa5\x1f\x7b\xed\x81\xdb\xe3\xe9\xfc\x80\x53\x92\x38\xa6\x0e\x5a\xb3\x62\x0b\x5f\xea\x70\xf1\xde\xb2\xd4\x13\x2e\x34\xb1\x01\x3a\x42\x30\xbc\x25\xcb\x64\x06\x0a\x14\x71\xf4\x63\x71\x2c\xa3\x32\x09\x07\xdb\xda\xbc\xd9\xeb\x91\x44\x92\xcf\xea\x21\xe2\xca\x35\xed\xec\x05\x55\xc1\xbb\xd0\x90\xd5\xfb\x52\x3b\x8c\xa3\xe1\x8a\x1c\xa0\x30\x2d\x10\xcf\xe3\x6b\x25\x45\xbe\x66\x8b\x74\x17\x7d\xb9\xa3\xa7\x3d\x24\x31\xf8\xcc\xa4\xa5\x9a\xf5\x68\x8c\xf9\x1f\x3a\x1e\x0a\xff\x4d\x9c\xa0\xfc\xe9\xc0\xf7\xe5\x15\x99\xe9\xda\xee\x9c\xee\x46\xa7\xdf\x41\xe6\xed\x49\x25\xf3\x05\xaa\x3e\x4e\x20\x62\x20\x10\x03\xec\x76\x7d\x85\x79\x99\x65\x96\x1d\x0e\x34\x92\x20\xdc\xe0\x6b\x4d\x0c\x56\x48\xb6\xcd\x89\x7a\xff\xb2\x84\xb5\x67\xb4\x08\xe2\xfd\x26\xf1\xd0\x61\xda\x8d\x7a\x8e\x40\xdc\x71\x84\x54\x1b\x49\x78\x41\xe4\x91\x1c\xd2\x6d\xd9\xc9\x8c\xfe\x6b\xf5\x4c\x1c\x34\x88\x86\x3f\x1e\x09\x2e\xc4\xce\x1a\x59\xe2\x81\xf9\x76\x68\xb2\x2c\x92\x22\x93\x28\x17\x2a\xfe\xc6\x8f\x14\x3c\x73\x2d\xb2\xeb\x39\xa0\x06\x48\x95\xa3\x76\xa4\x4a\x23\x8b\x4e\x2b\xdd\x6f\xbc\x22\x8b\x86\x43\xc7\x27\x8e\x3f\xfe\xc7\xca\xc5\xff\xc7\x35\x17\x7d\xf1\x60\x7b\x94\xd9\xd0\x76\x2d\xb3\xfc\xb0\xfe\x7f\xe0\x77\xeb\x11\xfd\x03\xe6\x15\x34\xd6\xd1\xe0\x61\x81\xde\x54\x40\xee\xdb\x58\x43\x7c\x13\xa8\x25\x7d\xb3\x96\xde\xaf\x0c\x78\xd7\xae\x99\xbc\x50\x94\xe9\x70\x57\x90\x27\xe4\xeb\xce\x36\x06\xbb\xea\x73\x2f\xec\xc7\x9f\x0b\x63\x44\xcb\xf1\xfb\x5d\x74\xd9\x97\x8d\xc8\xc6\xdd\x7c\x97\x82\x18\xdd\x57\x60\x07\x3e\xc3\x44\x0e\x95\x9e\x94\x4c\xf0\x97\x9f\xea\x4c\xc1\x20\x5a\x8e\x53\xf8\x5e\x93\xfc\xa9\xd7\xb2\x40\xb6\x74\x2f\xf2\xcd\x7c\x33\x69\xe2\x47\x5a\x8f\x72\xab\xc0\x86\xc0\x60\x8a\x4f\x58\xc7\xee\x2c\x23\xc8\x9b\xf1\x85\x7c\x60\x1a\x9d\x7a\x97\xdb\x30\xef\x35\x50\xa5\x3d\xdf\xce\x6c\xdf\x40\x37\xb5\xa5\x59\x52\x7d\xde\xfe\x9c\x72\xb0\xba\xd6\x14\x83\x5c\xcb\x83\x7d\xa8\x7e\xec\xc3\xda\x08\x7c\x65\xb1\x0d\xa6\x3b\x17\x9e\x40\xa9\x99\xaf\x3b\xca\x08\x47\xf1\xd0\x26\x45\x3e\xcd\xd3\xeb\xc8\x55\x01\x1b\x85\xb5\xa8\x3b\x57\xd4\x0f\x18\x65\x61\x19\x7b\xbd\x6b\xe0\xd9\x19\xda\xc2\x37\xea\xc0\x5f\x4d\xd2\x75\x49\xac\x3a\xde\x8c\x05\xc7\xdd\x0e\xd6\x79\xfa\xcb\xff\xfa\x31\xfa\x3e\x64\xa2\x1e\x9d\x28\xbd\x64\x4e\x64\xc2\x77\xbf\x4f\xeb\x9c\x31\x05\xbc\xdb\x45\xc6\x86\xf8\xcd\xd0\xf9\x8c\x94\x0f\xb3\x10\x8a\xb4\x8d\x47\x7d\xee\x44\xd4\x01\xe7\xfe\x2d\x5a\x90\xd8\x9b\xd0\xb3\xc1\x96\x3b\xd1\x94\xf4\xa3\x9e\x3e\x96\x23\x45\xcc\x01\xa1\x47\xbe\x76\xeb\x1e\xc0\xb8\x59\xd5\xf0\xf7\x06\x5e\x83\xe1\xdc\xb4\xa2\x91\x9b\x65\xcc\x04\x32\x9d\x77\x1d\x21\x59\x6c\xd7\x22\x9a\x51\x27\xad\xec\xf5\xf4\x8e\x37\x69\xd9\xae\x8f\x46\x2d\x5f\x5f\xfe\xd6\x58\x75\xab\x7d\x4b\xa9\x41\x86\x83\x2c\xca\x8b\xc8\x24\xb3\x5e\xe9\xfc\x67\x9a\x4f\xec\x9c\xa2\x7a\x3d\xa7\x09\x8c\xa7\x44\x96\x6d\xa2\x9c\xa7\xc3\xca\x79\x3a\xac\xd8\x08\x8b\xcc\x84\x18\x2b\x46\x4d\xe1\xd4\x11\x08\x95\x47\xa2\x88\xda\x33\x15\xf4\x15\x2b\xba\xbb\x51\x74\xa2\xc4\x19\x21\x55\x76\x2c\xf1\x27\x50\x2a\x41\x78\xb9\x6b\xe2\x61\x27\x9b\xdb\x90\xcb\x1b\xbb\xa7\x58\x45\x5a\x8e\xd4\xe2\x48\x50\x63\x18\x11\xe6\xfc\x6a\x45\xe0\x0c\xbe\x4d\x81\x2b\x5f\x63\x7c\x45\x7d\xfb\x93\x4a\xf4\x38\x5d\xb5\xc9\x2e\x5f\x1b\x3d\x41\x0b\xc4\x81\x65\x3c\xcc\x04\x49\x2d\xfe\x23\x58\x42\xc7\xd9\x78\x68\x5e\x3e\xa1\xec\x42\x68\x2a\x43\x37\x47\x4f\x2a\xc2\xef\xd5\x77\x63\x23\xbf\xa7\xfb\x13\xd1\x1b\xc8\xe2\xab\x81\xea\x64\x78\xa0\xfa\xd3\xb2\xcc\xc6\x33\xba\x48\xe6\xb3\x36\xf0\x14\x25\xa2\xf3\x20\x14\xaa\x7a\xb4\x34\x25\xf1\x3b\x1a\x86\xf2\x4e\x2d\x0e\x39\x30\xdf\xee\x46\x09\x9a\xa7\xf6\xbb\xc3\x9d\x5e\x01\x2f\x78\x1b\xb6\x43\x86\xe1\x09\xdd\xe7\x55\xb0\x92\xb7\x86\x54\x49\xc7\x4b\x53\xd7\x41\x3f\x4a\xfa\x36\xe3\xf4\x93\xa8\xaa\xf8\xcc\xe1\xc7\x60\x73\xc3\x38\x2d\x06\x96\x29\x98\x91\x2e\xb8\x1e\x68\x88\xb8\x8f\xce\x7e\xda\xd0\xec\xb0\x38\x1d\x01\x61\xb7\x9f\x54\xa7\xe1\xc9\xc6\x74\xb5\x34\x4f\xb6\x14\xb7\xcc\x39\x4e\x7a\x4a\xc6\x68\xfb\xe7\xbc\x6c\x6c\xcc\x02\x2a\x58\xc9\x97\x74\x55\xe8\x92\x0a\x02\x28\xc3\x16\xb1\x50\x6a\x63\x58\xff\x71\x9d\x8e\x7f\x2d\xde\x7d\xc5\x3b\x1a\xc5\x29\x83\x2b\x31\x41\x6f\x68\xf6\xd3\x37\x6a\x65\x3e\x0a\x1c\xd3\x10\x6d\x13\xad\x29\xa9\x1c\x35\x5f\x0e\x87\x95\x97\x2b\xb9\xfd\x5a\x69\x93\x22\xde\x98\x51\xed\x0c\x20\x15\x15\x0c\x85\x87\x1b\xdd\x68\x82\x73\x5a\x9b\x86\x8a\x95\x86\x2d\x24\xdf\x28\xfa\xfe\x61\x14\xdb\x7c\x66\x3b\xba\x1f\xa8\x9b\x2b\x1a\xe4\xbb\xa3\x26\x46\xe1\xfa\x44\x87\x3c\xaf\x2c\xa7\x40\xab\x41\xa4\x15\x1a\x8e\x95\xf5\x28\x49\xb6\x21\x3a\xef\xa9\x76\x93\x7b\xaa\x7d\xc4\x44\x43\x76\xf7\x51\xe9\xc2\xf2\xe4\xaa\x01\x5e\x09\x35\xfb\xbb\x08\xd7\xa6\x30\x02\x68\x73\xbc\xdd\x10\xcd\x54\x1e\x28\xe9\x7b\xb4\x14\x5b\x89\xea\xcf\xda\x74\x55\xff\xc2\x84\x2c\xe3\xc7\xb4\xac\xf4\x00\x42\xd1\xba\x1d\xba\x4b\x1a\x20\x26\x2b\x88\x88\x54\x5c\x4c\xa9\x97\xbd\x3b\x56\x6a\xbb\xef\x06\x5a\xe7\x2b\x29\xcc\xee\xca\xf2\xa2\x90\x73\x3f\x50\x00\xa7\xe3\x81\x42\x03\x1c\x67\x27\x80\x9b\x4e\xc6\xca\x23\x3d\xaa\xba\x8a\xdf\xa3\x57\x11\xea\xd8\xa6\x16\xd4\x7c\x54\x12\x39\x9f\x2f\x8e\xb3\x62\x8d\xa0\xb3\xeb\x55\xe3\x2e\xe5\xaf\x7d\xa7\xd2\xf7\x74\xd7\xec\xf7\x6a\x80\xda\xa5\xa5\xf6\x4a\xe6\xd5\x46\x61\x9c\xd1\x55\xc4\xd7\xea\x44\x94\x4e\x49\x40\xf5\x61\xa0\x59\x76\x98\x4b\x82\xaa\x03\x95\x8b\x2d\x52\x2b\xd4\xbd\x49\x49\x61\x87\xa3\x34\x33\xd9\xc6\xac\xe7\x52\xb9\x86\x08\x01\xee\xee\x29\x38\x26\x02\x6c\x68\x39\x42\xce\xdd\x4d\x14\x60\x2b\x65\x14\x77\x5d\x1e\x0f\xcf\x8d\x5a\x3f\xc2\xbd\xdd\x4a\xb3\xfb\xb4\xef\x3e\x8e\xcd\xe7\x67\x74\xf7\x82\x47\x66\xbe\x8f\x41\x13\xb6\x74\xe5\xa8\x44\x7d\x93\xd9\xa2\xc0\x8a\x74\xd5\x4e\xcf\x65\xb1\x19\x78\x62\x9b\x6e\x44\x12\x30\x09\xc8\xf8\x05\x56\xf5\x3d\x0c\x98\x50\x45\xd2\x20\x09\x25\xb7\x97\x0a\xfd\x9e\x26\xa4\xb0\x49\x77\x97\xef\x00\xb9\x35\x56\x5e\xc6\x87\x9a\x5a\xf0\x43\x18\x02\x06\x5e\xb0\xdd\xd6\xa2\xd6\x88\xd4\xaf\xaa\xaa\x6e\x98\x0e\x57\x4c\x31\x25\x14\x33\xf6\x25\xde\x4d\x57\x15\x2d\x52\x47\x71\x81\x90\xe9\xb6\x6a\xc0\xbd\xed\xf1\x71\x69\x9a\x5b\x6f\x35\xa4\xbf\xcb\x27\x6f\xee\xd4\x72\xbd\xfb\x96\xdb\xa6\xfb\x72\x5a\x02\x15\xa7\x05\xdc\x02\xd5\xb9\xe5\xc9\x6b\x8b\x2c\x2d\x57\x62\x9b\xa7\x43\x3b\xeb\x5d\x4b\x74\xdf\xc0\x94\x20\x9a\xc3\x2a\x3c\xae\x59\x8f\x2e\xd6\x2c\xf0\xc2\x42\xdb\x64\xc3\xa9\xc5\xbf\xa9\xbc\x14\xcd\xab\x5d\xd8\x6c\x98\xef\xa1\xd7\x42\xfd\x6f\x3f\xbd\x16\x32\xc5\xac\x00\x21\x9e\x2d\x25\xcc\x84\x1e\x73\xc6\xeb\x3b\x7e\x4b\x69\x53\xfc\xa9\x06\x26\x5d\x53\x3a\xab\xa7\xb4\x0f\xba\x6e\x95\x81\x72\xcb\x44\x51\x8d\x6e\x77\xba\xf7\x2d\xb7\xbb\xa6\x50\xbc\x0f\x3f\xc1\xef\xf0\x8d\xeb\x65\x2e\xf3\x32\x37\x31\xc5\x5c\xae\xd5\xde\xf5\x01\x81\xbc\x5a\xb2\x42\xae\xd3\x9e\x42\x40\xda\xb2\xe0\xec\x7d\x77\xac\x60\xf1\x8f\xd1\x0c\xc0\x30\xc3\xdd\xc5\x39\xf1\xbe\xca\x18\x96\x89\x29\x8b\x41\x9a\x11\x80\x44\x6d\xd6\x4d\x8d\xc4\xd5\xc8\x25\xb3\x4e\x29\x55\x1c\xa0\xc7\x01\x30\xe3\x1b\x7a\x44\xb8\xba\xd7\x55\xe5\xed\x7a\x53\xaa\x3f\xb3\x5d\x6b\x87\xa8\xb5\x3a\x8a\x94\x8f\x94\x3e\xd9\x47\x4d\x8d\x44\x99\x89\x5c\x0c\xcf\xd0\x49\x4c\xb3\xe0\x28\x3d\x08\x30\x4a\xa2\x22\x32\xf1\x2e\x45\xb8\xca\x35\x46\xb8\xab\xc7\x34\xed\xd3\x9f\xd2\xdb\xa2\xd8\x3c\x03\x41\x47\x78\xaa\xe7\x15\x7f\xe3\x9f\x05\x9f\xf2\x28\xd0\xa4\xb0\x59\x61\x22\xda\x21\x88\xdf\x44\x38\x49\xeb\x0b\x7e\x5d\x2b\xe3\x1f\xd7\x15\xc8\xaf\x7b\xba\xdd\xf4\x95\x28\xf4\x75\x57\xe1\x50\xd3\x84\x6a\x0a\x95\x0e\x19\x82\x28\xdc\x5d\xc5\xc7\x58\x71\xcc\xfc\x2f\x7d\x93\xfe\x81\x6f\xa9\x46\x70\xce\xe4\x09\xb3\x73\xcb\xf1\xf2\xfc\x04\x15\x7c\x38\xd6\x77\x83\xed\x99\x9f\xc5\x83\xcc\x15\x6b\xc2\x22\xe5\x88\x16\x81\x1e\x0a\xbd\x7c\x3d\x51\x92\xb5\xe6\x95\x75\x1b\xc7\x9c\xf6\x63\x56\xae\xb1\xea\x60\x60\x37\x14\xb9\xe8\x5d\x1d\x9f\x6e\xef\xa1\xe8\xdd\xf2\x39\x4f\x80\xaa\x45\x38\xe1\xe3\xca\x38\xa1\x49\x42\x9b\xb5\xf4\xe4\x2a\x20\xd7\xb1\x5a\x53\x58\xe5\x55\xae\x44\x69\x3f\x33\xa3\x41\x14\x72\x1e\x53\xf1\x70\xed\x77\xeb\x7e\x0a\x38\x65\x0a\xf8\x94\xa8\xf7\xfc\x8c\x06\x1a\x33\xf0\x33\xaa\x73\xc3\x07\x39\xa3\x68\x01\x46\x59\x5a\xd8\xb0\x40\x4b\x02\x0e\x3e\x12\xe5\xe6\x35\x70\x37\xd0\x85\x05\x05\x9a\x3f\x81\xb5\xc9\xfc\x64\xcd\xe1\x88\x09\xc3\xb4\x64\xeb\x2c\x24\xc1\x1e\xbd\x73\xb5\xb1\xdd\x7a\x2d\x4a\x63\xc7\x4a\x82\x34\xcc\xbb\x8a\xb7\xf8\xdd\xa9\xea\x6c\x68\xa3\x35\xbb\x9b\xde\x58\x18\xf4\x68\xab\xe1\x80\xb9\x0b\x2b\xce\x37\x14\xfd\x62\x6d\x31\xd1\xbb\xeb\xa7\x5c\x3c\x28\xff\x30\x56\xc2\x04\xff\x26\xf0\x87\x69\x5c\x66\x0c\xe1\x73\x28\x5c\x47\x61\x7e\x49\x35\x2c\x64\x29\xa8\x6a\xf0\x2f\x77\xa9\xaf\x08\x47\xf3\x9f\x8e\x7d\x2c\xff\xf4\xc4\x0b\x79\x5c\xd0\x3e\xcb\x03\xdd\xa6\xf9\xe9\x8e\xc2\x7d\x8c\x6c\x58\x98\x90\xe8\x51\xe9\xd9\xa7\xf8\x3a\xa4\xf9\xd4\x47\x9c\xc5\x20\xb3\xf6\x93\x74\xa0\x08\xbf\xd2\xb6\x7a\x9b\x20\x7e\xef\x60\xc4\xb8\xf8\x87\x11\xdb\xcb\x74\x17\xd5\x53\x3a\x42\x14\x6f\x3f\x4e\x63\x3b\x3a\xad\x35\x07\x2b\xb8\xa4\x39\x43\x3f\xd0\x5b\xe8\xa7\xf4\xf6\xc8\x8e\x7e\x43\x31\x01\xff\x1f\x63\x2f\xab\xf0\x07\xb0\x11\x70\x9f\x7e\xec\xce\x8f\x30\xca\xc2\xd8\xce\xa8\x3e\xe3\x6f\x8e\x7d\xe6\xf1\x0f\xc7\xca\xab\xfc\xbe\xc7\xa6\x94\x49\xd7\x24\xc0\x7c\x00\xc3\x07\xd9\x4c\x1c\x3a\x3b\x26\x0a\xd4\x7d\x49\x35\x43\x16\x36\x49\x6c\x9e\xa3\x2b\xef\x4b\x0e\x1a\xda\x52\x6c\x20\xaa\x68\x7b\x42\x01\x67\xd2\x95\x97\x49\x31\x39\x2a\x36\x60\x6a\x31\xba\x80\x0e\x8b\x9b\xab\x3a\x7a\xef\x07\x8a\xe3\xf4\xa7\xb5\x73\x64\xf1\x60\xfb\xe5\x32\x89\x52\x88\xe8\xc2\x0d\x47\x3e\x90\xaf\xd5\x69\x9f\xd9\xc2\x64\x5d\x0b\xf6\x31\x64\x22\x2e\xa8\x44\xcd\x05\xe7\x66\x25\x69\xb6\x6e\xfb\xd2\x9a\xce\x0c\x8d\x9d\x29\xba\xc6\x26\xaa\xe4\x28\xc9\x4b\xc7\xe3\xe2\xd2\x3a\xee\xd4\xbf\xa0\x1b\x7b\x92\x28\x4d\x48\x0a\x1a\x4b\xf8\xee\x58\xb9\xb0\x20\x9a\x21\xf3\xfa\x4f\xfe\x36\xed\x00\x44\x5a\xdf\x81\x67\x2a\x99\x02\x9a\x68\x00\x24\x3f\xd1\xf1\x30\xaa\xe7\xfe\x06\xa3\xd1\xb0\x9d\x67\x3a\xdb\x87\xec\x85\xfd\xed\xd8\x84\xab\x78\x50\x91\x0f\x67\x84\x24\xdf\x28\x7a\xb7\x6e\x94\x17\x51\x12\x82\x71\xc6\x83\x28\x10\xde\x4a\xa3\xbe\x37\xfb\xf6\x15\x1b\x96\x05\xb4\xc3\x99\x96\x0c\xf5\x51\x46\xde\x8d\x3d\xe7\xd1\x83\x46\xce\xe5\xbe\xa4\x5a\x5d\x74\xa7\xf9\x05\xf6\x4e\xe5\x19\x45\x77\xdd\xd9\x27\xdf\xfb\x5d\x8b\xc4\x9e\xab\x02\xb1\x22\xca\x07\xf4\xe5\x00\x1d\x70\x1a\x96\x6f\x54\x81\xad\x1c\x0d\xa2\x38\x6e\x79\x1e\x39\x24\x1d\xf8\xfa\x63\x53\x00\xfd\x74\x34\xe3\x57\xcc\x79\x9d\x6b\xd4\x58\xd8\x9b\x2a\xe2\x19\x65\x76\xcd\xc4\xa4\x82\x77\x60\xde\xb5\x9d\x7b\xf0\xcf\x7b\x63\x1f\x07\x5c\x57\x76\x2b\x4e\x43\xf8\x43\x62\xd0\xcf\xe0\x98\x01\xe0\x07\x87\x11\xec\xce\x49\x52\xb3\xe4\x76\x9e\x60\xca\x5d\x6f\x39\xe6\x8a\xbb\x53\x5d\x26\xbd\x1e\xdc\x97\x29\x99\x22\xbe\x51\xe6\xc6\x57\x8f\x10\x2f\x1f\xc5\x9e\xe7\x9b\xa9\xfe\x89\x14\xe5\x03\x25\xb2\x30\x25\xaf\xe3\xf7\xe8\x28\x4b\x7b\x69\x99\x74\xb5\x9a\xf8\xa9\x40\x65\x1b\x54\x51\x2c\xb3\xbd\x28\x71\x71\xa9\xf4\x58\x79\x48\xc2\x4d\x05\xac\xab\x2b\x95\xee\x5b\x16\x2d\xb7\x19\x0f\xc4\x02\x4b\x8f\x92\x6d\x14\x35\xd5\xcb\xaa\x0e\x9a\xdb\xe4\x51\x05\x7a\xfe\x5f\xc7\x1e\xf9\xb0\x03\x55\x0c\xa7\x21\xe2\xcb\x39\xa0\x84\x95\x2e\x49\xec\x50\x78\xb2\x80\xf6\xe3\x5c\x99\x85\xbf\xca\x8a\x31\xba\x2f\xf8\x1d\x4c\x1d\x0e\x96\x5f\xe8\x7c\x5c\x0e\x2f\x36\xb9\xcd\xf2\x30\x1d\x59\x95\x83\xe7\x26\x0d\x91\xa1\xa8\x93\xd3\x3d\xdf\x36\x59\x35\xea\xd4\xc9\x87\xc3\xe7\x08\xed\x26\x64\x05\x76\x74\x3c\xaa\xe6\x76\x63\x66\x93\x38\x23\xa3\x54\x8a\xf6\xd8\x28\xdc\x1d\xcf\x37\xba\x90\x1c\x47\x14\x5b\xe2\xd8\xd8\xdb\xf1\xc7\xdc\x43\x3c\x29\x56\xf1\xcd\x29\x3d\xae\xba\x78\xc3\xf2\x72\x3b\x2d\x8b\x5e\x9c\xae\xe7\x33\xad\xaf\x2c\x3a\x62\x4c\xd5\x34\x7a\x45\xab\xaf\x1d\x6e\x8a\xe6\x32\xb3\xde\xf2\xfd\xde\x67\x15\xff\xce\xd9\x29\x02\xb2\x64\xcd\xe4\x2d\x8d\x15\xf7\x49\x93\x23\xb5\xb5\xf5\x05\xc7\x44\xdc\xf2\xce\x0c\x5b\x1b\xbe\x99\xde\xcb\xab\x80\xf9\xc0\x03\xbd\x4c\x38\x0b\xbe\x56\x1d\xb1\xfd\x34\xb1\x7b\x1c\xd6\x60\x6b\x2f\x91\xc5\xa2\x0a\x75\x4f\x3b\x47\xe7\xe9\xf3\xac\xab\x45\x55\x41\x44\x54\x8f\xd3\x40\x23\x16\x7a\x08\xab\x2c\x60\x1a\xaf\xd4\xf7\xd3\xc0\x2b\xaa\xf4\x6c\x5e\xa4\x69\x22\x69\x6e\xa6\xff\xa6\x37\x17\x2a\xf0\x06\x2d\x87\x2c\x4d\x57\x23\x9c\x00\x98\x91\xeb\xb4\xc0\xe1\x1f\x81\x55\x55\x20\x35\x82\x7a\x1c\x65\x76\x64\x32\xce\x71\xc2\x7f\x7d\x86\x7a\x1d\xe1\xfa\x1d\xd1\x50\x72\x64\x9e\x30\x45\x77\x34\xe2\xf8\x7c\x6d\x65\x2e\x2d\xb5\x8b\x74\x3d\xc9\x07\xd1\x88\x73\x10\x88\x3e\xae\x28\xb8\xcb\x15\xb5\x2e\xcd\xd0\xcc\xe9\x7e\x88\x6b\x63\x55\xc5\x04\xac\x0f\xbd\x35\xb7\x14\xad\xe8\xd5\x40\xf9\x48\x55\x04\xc4\x39\x5b\x5e\x00\xf9\x5c\x6b\x61\x81\xfd\x20\x92\xbb\xdd\x7a\x9d\x97\x35\x6c\x01\x4b\x96\x2a\x30\xac\xe8\xc8\xdc\x53\x66\x71\x18\xe5\x5d\x6b\xbb\xf9\x8c\x4f\xc3\xa0\x81\x0a\xb3\x0c\xdc\x31\x7c\xb6\x3b\xcd\x54\xe8\x22\xbf\x4b\xe7\x8c\x08\xe6\x57\x43\xac\xc5\x52\xd9\x19\x51\x8d\x2c\x79\xd4\x4f\x8c\x23\x0d\xc2\x56\xc6\xaf\xc1\x69\x7a\x5d\x1f\xa1\x9b\x2e\xfd\x11\x25\xe1\x40\x3c\x21\x18\x43\x9e\x2a\xbe\x69\x60\xe9\xdb\xdf\xee\xc5\x9c\x59\x61\xe9\xc5\xc0\x2b\xfd\x4d\x63\xdb\xb3\xc8\x20\x47\x8a\x74\xf8\x4e\xf2\x91\x74\x11\x0c\x96\xee\xb7\xe8\xe4\x83\x87\x74\xcb\xa5\xda\xe2\xb4\x9f\xf2\x6a\xc0\x40\x7e\xa0\x98\x3b\x3f\xa8\xa1\xa2\x29\xbd\xb1\x62\x41\x3e\x88\xef\x02\x2d\x35\x96\x26\x3b\x6e\x58\x81\xaf\x4d\x1f\x64\x23\xaa\x4b\x7d\xec\xa1\x57\x97\xce\xae\xa2\x27\x1a\x37\xed\x34\xea\xea\xa1\x2e\xf3\x98\xb2\x88\xd2\x32\x47\xe3\x2a\xea\xf7\x68\x7f\x44\x50\x76\x41\xd5\xf5\xb7\x34\xfd\x19\x5a\x7a\xf9\x9a\x62\x3d\xfe\x80\x82\x2e\xd9\x70\x90\x2a\x0a\x08\xe4\xab\xdc\x42\x71\xea\x28\x47\xc6\x2e\x7f\x99\x59\xa9\xa6\x21\x7b\x87\x23\x03\xd8\xa0\x23\x63\x25\xf5\x75\x7b\xca\xd3\xf8\xfc\xe0\xf3\x64\x5a\x50\x27\xe1\x03\x8f\x6f\x5c\x8c\x62\xe2\x7e\x64\x45\x6e\x7b\xea\x68\x14\x65\xb5\x29\x91\xcf\xbe\x7d\x52\xa1\x80\x31\x26\xa8\xea\x3c\xd0\x72\x53\x3f\x01\x2b\xae\x62\xa9\x16\xac\xde\x7b\xd4\x36\xe9\xba\xc8\x1c\x8b\xdc\x7b\x9a\xc7\x81\xb9\xd7\x85\x1f\x5a\x03\x21\x29\x3a\xe3\x36\xba\xb1\x46\xb1\x5d\x1c\x2b\x08\x3f\x13\x42\x23\x8b\xf7\x67\x63\x25\xbe\x0b\x1b\x89\xcc\xd9\x69\x1a\x6e\x44\xc9\xdf\x09\x3c\xab\x62\x3f\xb3\x86\x9a\x74\xaa\x1f\xc6\x71\x89\x23\x89\xaf\xc7\xcf\x6c\x67\xe1\x79\xbe\xbd\xb0\xf8\x2c\x2d\x56\x07\x4e\x78\xc1\xc5\xf3\xd7\x48\xce\x9f\xfd\x72\x5a\x20\x94\x18\x99\x61\x76\x06\xb8\xdf\x3b\x00\x7b\x94\x60\x04\x6f\x86\x10\xe0\x1c\xba\x70\x11\xbf\x3d\x86\x68\x04\xc5\xe7\xbf\x1c\xab\x96\xc6\x39\x1a\x27\xec\xce\x2b\x18\x72\x66\x2d\x24\x4e\x3d\xfc\xfe\xbb\x74\x7c\x31\x6b\x22\x0d\xbf\x16\x0b\x47\x98\x7c\x94\xbc\x13\x24\xd4\x1e\x20\x1f\xcc\xb0\x46\x1a\x2f\x14\x80\x4e\xc1\x25\x86\xb1\x63\x46\x4d\x9c\x3c\xef\xd7\xb2\x98\xe2\x3f\xad\x64\x91\x81\x0a\x86\x08\xd4\xfa\x2c\xe6\x6b\x3a\xa5\x7c\xa7\x49\x79\xc4\x8c\x46\x69\x94\x38\xa4\x0c\xc2\x39\xa4\x4f\xf9\x5a\x65\xff\xa2\xae\x4d\x8a\xa8\xb7\x41\x7d\x6a\x98\x60\x14\x00\x05\xe9\x4c\x03\xe7\x54\x0d\x97\x96\x44\x1c\x94\x56\xb4\x08\x85\x3e\xe6\x30\xe5\xe9\x88\x01\x12\xd8\xcf\x57\x03\x45\x43\xc0\xe1\x1d\xde\xe9\x47\xb5\x3c\xfd\xa1\xf9\xc5\xf6\x20\xca\x5b\x90\x73\xc5\xf1\xc3\x65\x4f\xbe\x71\x64\x2f\xfd\x34\x01\xb4\x4b\xe3\x26\xb0\xa3\xee\xe2\x89\x25\x9b\x5c\xbd\xd6\x54\x6c\x82\x8d\xf3\x48\xc7\x83\x67\x4e\x37\x91\xdd\x98\xa4\x88\x8a\xac\x64\xba\x37\x18\x83\xcb\x34\xdf\x88\x21\xdf\x18\xfb\xed\x71\x43\x1d\x55\x99\x8d\x92\x5e\x9a\x85\xb6\xa5\x44\xf7\xee\x06\x8a\xa8\xf5\xae\xca\x89\xc5\xd6\x8c\x84\x4e\x42\xf7\x48\xf2\xb5\x22\x2e\x5a\xa9\x1c\x1a\xdb\x9a\xe2\xaf\x9a\xe2\xa9\xda\xee\x97\xbe\xf4\x52\x3b\xb3\x5f\x2b\x23\x97\x0b\xc0\xb1\x7a\x4a\x91\x7c\xe8\x22\x04\x15\xec\x99\x63\x77\xd1\x8d\xf7\x94\x41\xa9\xbe\x04\xb6\x14\x7c\xda\x18\x7b\xee\xfb\x86\x4b\xf2\xc3\xe0\xa9\xed\x0d\xe5\xed\xff\xb0\xa5\x0e\x87\xd7\x69\xd8\x44\x3c\x49\x65\xe2\x72\xfb\x94\xe7\xf3\xbb\x1a\x4c\x2b\x6b\xb5\x3c\xc5\xb7\x56\xe1\xe6\xba\xcf\x94\xf2\x2b\xbe\xe0\x13\x93\x99\x17\x0e\xcc\xbb\x62\x17\x59\x0c\xec\xe5\x4f\x77\x54\xac\xf8\xee\xb8\xf5\x2b\x5f\x9e\x6a\x61\x44\x26\x76\x6b\xec\x2b\x71\x77\x28\x2b\x88\xff\x7f\x1b\x06\x06\xb1\xd4\x27\x3b\xca\x8e\x5d\x21\x14\xaa\xa0\xb8\x5b\x2f\x08\xe2\xff\x3d\xac\x46\x1c\xd3\x73\x4a\x71\xb8\x5f\x02\x96\x37\xe3\x71\x34\xc8\x66\xa0\x70\xf4\xcf\x82\x29\x02\xda\x6d\xa3\xfa\x85\xf6\xc2\xe2\x27\x55\x5f\x9d\x6e\xdb\xb8\x32\x56\x14\x22\x1f\x92\xe5\x62\x72\x95\x40\xb9\x1b\x7f\x8c\xd1\x42\x38\xfd\x2f\x31\xa8\x68\x8c\x3f\x02\x34\x2c\x7f\x1e\xc7\x88\x53\xb1\xab\x36\xb6\x66\x1a\x47\xfa\xfd\xff\x51\x24\xa5\x57\xa6\x7a\xfc\x94\x90\xe9\x5f\xd2\x79\xc6\x0c\x1a\x5a\xb7\xca\xc6\x31\xd3\xa8\xed\x67\xee\x92\x5b\x0a\x13\xc9\x34\x0b\x70\x01\x4e\x4c\x1d\xdb\x76\x94\x3f\x52\xd9\x59\x69\xb3\x9c\xf1\x42\xd8\xdf\x1c\xab\xf6\xbe\x37\x15\xdd\xd6\x55\x42\x52\xb1\xa3\x88\x31\xf0\x72\xe2\xfb\x1d\xd7\x70\xf5\xfb\x98\xe5\x16\x10\x9d\xc2\xb7\x55\xef\x5d\x78\xb1\x4d\xdb\x9d\x37\x99\x68\xeb\xb4\x1c\x73\xe8\xed\x9a\x97\x79\xf0\xab\x6d\xd3\x4d\x47\x50\x08\xc0\x0c\xc3\xe4\x3a\x32\x48\x27\xb7\x76\x41\xe5\x2f\xb2\x92\xa0\x1a\xbb\x7c\xe6\xe8\x1d\xd5\x56\x71\x33\xf0\x2c\x49\x3b\x26\x3e\x79\xce\xec\xee\x53\x70\x1d\x21\xae\xf1\xf9\xb5\xc1\xc6\xc8\x66\x85\x4d\x72\xea\x13\xf6\x84\x49\x27\x31\xa8\x22\xc5\xfe\xb8\x0a\xca\x6c\xbc\xdb\x97\x46\x4f\x6b\xb2\x98\x6f\x90\x72\x39\xf6\xde\x3d\x05\x25\xbe\x4a\x2f\xc6\x1f\x08\x3c\xd7\xcb\x37\xc6\x5e\x88\x41\xab\x13\xac\xd8\x62\x10\xdb\x81\x1d\xb6\x34\xfa\x40\xb1\x0a\x1d\x77\x15\xaf\x7c\x75\x23\x0f\x33\x33\x92\xae\x3e\x78\x5a\xaf\x29\x61\xd4\xd7\x9c\xeb\xbd\x92\x66\xec\xdc\x22\x2b\xc6\xc5\x5b\xbe\x19\xfb\xb2\x79\x2f\xb6\xb6\xc8\x21\x0c\xc7\xec\xe4\xe4\xa9\x0a\x53\xf9\xd3\x1a\x37\x5b\xad\xe1\x41\xc4\xd4\x4e\x18\xe0\x23\x58\xba\x7c\x53\xab\x19\x1d\x9a\x6f\x77\x6d\x5e\x98\x95\x28\x8e\x5e\x15\x4b\x80\x5c\xce\x0d\x4d\x88\xaa\x19\xbf\x77\xd6\xf2\xa8\xcb\xcb\xed\x7c\x60\x49\x7b\xb9\x7a\x71\x61\x7d\x55\xe7\x44\x9d\x8c\xfc\xb9\x76\x9e\x96\xd4\x74\xe0\x3f\x72\x37\x50\x1f\xb9\xab\x39\x82\xba\x1b\xb3\xd4\xdf\xae\xa9\x4a\x61\x32\x7f\x47\x2f\xa7\x13\x8a\x3e\xff\xb6\x6a\xbf\x28\x4c\x14\x63\xc4\x9d\x8f\x78\x46\xf9\x88\x75\x69\xb9\x85\x85\x76\x5e\x10\xaa\x62\xc6\x57\xa1\x6f\x61\x81\xc1\x05\x3d\x0c\x83\x8e\x07\x7a\x58\x2b\x30\x2e\x2d\xb5\x43\x33\x8a\x0a\x82\x78\x31\xad\x22\x36\xf6\x39\x85\x67\x38\xa7\x56\x5a\x5e\x64\x65\x58\x94\x99\x9d\x53\x56\xf1\x8c\x2a\x7c\x3c\xd1\x51\x7d\x2a\x8c\x22\xc4\x69\x7e\x5d\x41\x36\x2f\x4c\x29\xaa\x91\x02\x70\x94\xf4\x89\x47\x1b\x95\xbc\x0f\x14\xe5\xea\x6d\xda\xb0\xa8\xad\x01\xfd\xeb\x18\x88\x5d\xa7\x30\x43\x77\x05\x2f\x4d\x0f\x87\x4f\x5f\x76\x2e\x57\x18\xad\x45\xf1\xcc\xd4\x71\xd7\xf2\x74\xd8\xba\x07\xf6\xfb\x0e\x15\x13\xa7\x6b\x76\x37\x2d\x4e\xa6\xc9\xc5\xe8\xc2\xaa\xc0\xf1\x47\x68\xb6\x67\xa2\xd0\x20\xd7\x15\x7b\x02\x58\x9c\x24\x66\xf3\x45\xc7\x56\xa7\x81\xc8\xbe\xc8\xa2\x3e\x14\xd0\x7c\x34\xc7\x1a\x75\xc2\xee\x57\x87\x7c\xef\x7f\xbe\xdd\x8b\x12\x93\x50\xf7\xa7\xee\x65\xd4\xf8\xfc\xe0\x33\x1e\xb7\x94\x58\xa2\xe7\x8b\xd6\x6c\x42\xc4\x5b\x3e\x7a\x55\x84\xa7\x17\x94\xeb\x9b\xd9\x9e\xcd\xe4\xa9\x60\x8a\xce\xe8\x4e\xf0\x33\xba\xf5\x90\xd4\xbf\x28\x8b\x22\xcf\xdf\x72\xe2\x4f\x67\xb0\x77\x30\x97\xc8\x7a\x8b\x4e\x95\xab\xa1\xfc\x83\x53\xaa\xf0\xb2\x92\xa5\xeb\x09\x27\x79\xb4\x4a\x32\xfc\x9d\xb3\x94\x31\xc0\x64\x72\xba\x0e\x66\x61\x17\xce\x22\x9c\xf3\xef\xb8\x15\x30\x8c\x42\x0e\x60\x61\x30\x4e\x69\x51\x86\x3a\xad\xf6\xa1\xf9\x7f\x0f\x92\x4e\x71\x98\x0d\xd2\xac\xe0\xa3\x19\x05\x3c\x54\x52\x91\x77\x63\x5f\x4c\x64\x63\x14\x07\x79\x66\x9f\xa5\x1d\x8a\x23\xfc\x33\x9d\xca\x1f\x72\x72\x2d\xfb\x96\xb7\x3e\x43\xbc\x82\x70\x1e\xf8\x69\x29\x91\xf3\x17\xcf\x4c\x34\x57\x02\x06\x48\x96\x68\x35\x28\xd8\x22\x47\xc7\xd5\x3c\x08\xe5\x9a\x22\x45\x7f\xa4\x43\xbe\x0f\xb6\xc8\x2f\x76\xfc\xda\xfd\xcd\xff\xdf\xc4\x69\x2a\xfd\xa3\xbf\xd9\xf1\xae\xcb\xb9\x40\xe5\xd0\x99\x1b\x13\x33\xf2\xd4\x64\x7b\xd0\x87\x53\xf0\xaf\xc8\xd3\xc3\x5c\x5f\xf0\x75\xd2\xdf\xff\x79\x24\xdd\x71\xd0\x3e\x3e\xf1\x65\x9c\xfe\xc0\xbc\x6a\xb1\x84\x5d\xef\xa1\x47\xd4\x9f\xd7\x22\x5e\x51\xb8\x6a\xb3\x9c\xda\x41\x9d\x9a\x4e\x75\xfa\x48\x0d\x4b\x8e\xbb\x68\x08\x56\xe7\xd8\x12\x50\x07\x47\xd7\x55\x18\x0b\x78\x71\x17\xd4\xa1\xb1\xab\xe3\x61\xa4\xa7\x9b\xba\x58\xc2\xb2\x40\x4e\x0f\xdd\xd0\x5b\xf0\xf3\x84\xc5\x55\x71\x14\xcd\x74\x9e\x50\xcd\x40\xc9\x2a\x27\x5b\x90\x60\xbd\x4f\x4b\x03\x83\xd4\xea\xe8\x0e\xa2\x7a\x8e\x69\x7f\x7b\xdd\x14\x79\xca\x1c\x26\xac\x09\xa2\xe8\xc0\x36\x55\x1a\x28\x4e\xd3\xd5\xc7\x5b\x8e\x11\xea\x6d\x2d\x65\x71\x1e\xd3\x87\x47\xfd\x49\x50\x2d\x1e\xd1\x46\xc3\xe2\xd1\x48\x6a\x51\x5b\xa4\x35\x82\xdf\xb9\x02\x67\x97\x6f\xc8\x0f\x41\x34\xf1\x10\x63\x20\xf4\x0b\xf4\x9a\x2c\xdf\x1c\xf8\x12\xca\x15\xcc\x24\xff\x88\xcb\x3b\xf6\x32\x9b\xbc\x8a\xe2\x15\x13\x42\x07\x5e\xa7\xf0\x9c\x63\xe6\x1e\xda\x6e\x54\xd8\x2c\x33\x89\xe5\x14\x3d\x9e\xe3\xda\x58\x8d\xca\xb5\x5a\xa1\xa4\x3a\xf1\x8b\xcc\x16\xe1\x80\x4a\x83\x8e\x65\xc0\x91\x69\x9d\x08\xb6\xa5\x5d\x16\x16\xdb\xfb\xbf\xfa\x3c\x15\x7a\x85\x50\x4f\x39\xfc\xb7\x69\x37\x61\x07\x7c\x88\x2c\x06\xec\xfa\x19\x34\x88\xf2\x8d\x82\x2d\xcd\xaa\x9d\xf5\xd8\x7b\x08\xab\xb1\x74\xae\x7a\xf6\x1b\x88\x60\xd1\x1f\x62\x43\x9d\x54\xcd\x54\x37\x14\x71\x75\x9d\x54\xe5\xa5\x97\xda\x85\xc9\x0b\x1b\x8b\x1d\x87\x29\x83\x65\xe5\xeb\x5a\x8a\xf4\xd0\xfc\xfe\xf6\xc0\x64\xa8\xab\xc3\xa7\xff\x67\xf4\x2b\x7c\x8d\x0f\xa0\xfa\xbf\x66\xb3\xf5\x81\x8d\x87\x51\xd2\x67\x36\x04\x39\x29\x68\xe4\xe5\xa8\x78\xdc\x17\x06\x7a\x36\x43\xfb\x03\xbe\x0d\x66\x10\x09\xa9\xdd\x24\x8b\xc7\xff\x1f\xeb\x11\xe9\x24\x6e\x0e\x11\x12\x42\x39\x7c\x57\x07\x26\x99\x51\x84\xaf\xa8\xf6\x09\x5a\xba\xb2\x72\x72\xad\xa0\x67\x71\x6c\xfb\xc2\x46\x26\xf0\xab\x96\xa2\xb6\x57\xfc\x5b\x51\x36\xe7\x2b\xb7\xc7\x02\xd5\xbe\xc8\xd5\x3b\x1c\xed\x7f\xae\x12\x38\xaf\x6b\xa6\xfe\xb3\x4a\x36\x65\x94\xc6\x51\x11\x85\x30\x49\x8e\x17\xb2\x32\x49\xc2\x87\xd5\x80\xd4\xb5\x61\x9a\xa4\x43\x76\xbc\x84\xc7\x5d\xd1\xb3\x6e\x06\x5a\x6d\x3c\xe9\x45\xd9\xd0\x76\x49\x87\x55\xda\x3e\xaa\x27\x83\x03\xf3\x17\x81\x6a\x9f\x3f\x55\x5b\xd8\x0b\xed\xa5\xa5\xe7\x67\x69\x99\x22\xe2\x9c\xed\xd0\x02\x16\x56\x39\x1f\x97\xc2\x04\xc0\x3a\x1f\x53\x4c\x6f\x03\x9b\xad\x44\xa1\x90\x3d\x22\x96\x02\x0e\x0d\x4e\xc0\x6d\x15\x0b\x7a\xfd\x8b\xd8\xf6\x6d\x02\x97\x16\x83\x76\x94\x26\x91\xaf\x9b\x1a\x8a\xe3\xa8\x67\x8b\x88\xe9\xe7\x5d\x72\xdc\x41\xdf\x2e\x28\x92\xf7\x35\x9b\x6d\x3c\xe2\xdd\x81\xd9\x89\xd2\x19\x3b\x4e\xb3\x86\xd7\xf8\x87\xe4\x35\xc2\xae\xef\xa4\xd3\x4a\xb7\x64\x22\x7f\x77\x9f\xa2\x6e\xb8\xda\xaf\xc3\xcb\x63\x96\x2e\x6c\x5b\xf6\xdd\x6b\x6d\x5d\x0b\x0b\xed\x61\x3a\x6a\x79\x2a\xe2\xd3\xb4\xdc\x44\xd4\xa4\x41\xc1\x9e\x14\x6b\x37\x98\x97\x6c\x8a\xf0\x4a\xda\x34\x7d\xad\x31\x1f\xd8\xcc\xce\xaa\xe6\x57\x06\x27\xca\x8d\xaf\x10\x6e\xea\x26\x9f\xcd\xed\xf9\xe4\x2a\xfa\x5e\x5a\xfa\x24\xbd\x16\x53\xc9\xe1\x8b\xe0\x6c\xfc\x14\x61\x14\xec\xf6\x9b\xaa\x40\xae\x75\x37\xbe\x47\x51\xa9\xe3\x29\x38\x20\x18\xa8\x8b\x38\x01\x10\xe9\x4c\xe0\xea\x20\x33\x0e\xd9\x00\x18\xcc\x1f\x52\x3e\x01\xd5\xd4\xef\x63\xad\xba\x9e\x67\x77\x32\xff\x53\x02\x5d\xc1\x8b\x3f\x45\x27\xfa\xd6\x09\x77\x58\xa4\x65\xd1\x8d\xb8\x4b\x09\xeb\xe7\x01\xb8\x85\xf0\x3d\xff\x52\xcb\xd1\x6d\x79\xd6\xc1\x38\x62\xa4\x9e\x44\x5f\x3a\x14\x53\x40\xfc\x61\x94\x44\x61\x3a\x1c\x95\x24\xb5\xef\x4b\xcc\x63\x55\x62\x6e\xca\x1d\x0e\xcd\xcb\xd6\x45\x4f\x18\x91\x5b\x1a\x22\x76\x2b\xf8\x04\x7f\xa8\xfd\xfc\xaf\x7d\x05\x20\x2a\xbc\xed\xe5\x40\xd1\xd9\x9d\x53\xb4\x31\xe7\x74\xbf\xe1\xe5\x5a\xd1\x76\xdf\x32\x41\x9e\x0c\x0e\x4e\x8c\xfb\x11\x4d\x32\x56\xd7\xab\xa4\xf6\x09\x33\x2c\x2d\x08\x2e\x11\x14\x9c\xd6\x11\xc2\xe9\xda\xca\xfe\x42\x7b\x7d\x60\x0a\x44\xf5\x8e\xeb\xd7\xe5\xeb\x8e\x29\x4c\x5a\x1e\x85\x2c\xf7\x85\x2d\x83\x24\xcd\x14\x2c\x03\x0e\x96\xd6\xc0\xa3\x6e\x16\x9f\x7c\xc7\x51\x72\x44\xc1\xae\x8f\x34\xea\xfe\x65\xd6\xc4\x51\xb1\xa1\xb0\x4d\xe7\xb4\x0a\x89\xe6\xf0\x21\xe9\x99\x1c\xbb\x87\x1b\x98\xc7\xfa\x6d\x60\xe4\xa5\xb5\xb9\x5a\xdc\xf2\x9a\x4f\x2b\x10\x5a\x2f\xb6\x21\x58\xe1\x2a\x07\xc8\xc1\x56\x3c\x4d\x70\x43\xdc\xb0\xbf\xfd\x72\x34\x6c\xb5\xa6\x1b\xfe\xf7\xbb\xfe\x5a\x7f\x6c\xd8\xe1\x28\x4e\x37\x6c\x46\xf1\x92\x10\x64\x57\x9b\x46\xd8\x45\xc8\x05\x83\x0f\x7d\x59\x75\xb9\x5d\x44\x60\x8f\xc4\xeb\x43\x4d\xb1\xd9\x1f\x90\xa7\x8b\x1c\xee\x5f\x61\x85\xf1\xcd\xd8\x77\x56\xa1\xee\xca\xd7\x0d\xd4\x52\xfb\xdb\x2b\x69\x31\x68\x55\x4f\x25\x2a\xda\xbe\xb0\x76\x4c\xa5\xa3\x6d\x3f\xa5\xe4\x83\x93\xe3\xa8\x76\xa7\xe3\x41\x77\xf8\x8b\xbb\x6e\x17\x87\x03\x13\x65\x54\x06\x7d\x91\xfd\xd4\xc3\x81\xe7\x26\xfe\x3b\x4f\x74\x7c\xe8\x8c\x70\x19\xc9\x8b\x07\xf8\x66\x11\x82\xae\x9e\x5e\xf8\x3c\xbc\x03\x3c\xb4\x39\x57\x9a\x11\xe5\x70\xfa\x43\x18\x75\xab\x71\x85\x27\x77\x02\xae\x2d\xa6\xfe\xfe\x34\xd4\xd8\xe6\x7b\x15\x47\xe3\xbf\x1a\xab\xac\x16\x62\x79\x1c\x93\x3b\x90\xe8\xc0\x03\x3d\x1c\x2b\xf7\xfe\xea\x14\x9b\x2e\x1c\x20\xf2\x2a\xd6\x3f\xd5\xa9\x06\x14\xcf\xf6\x36\x5e\xc8\xb1\x95\x2c\x1e\x64\xf3\xff\x50\x57\x55\xbf\x39\xf6\x4d\x30\x6f\x8e\x29\x77\x21\xe4\xc1\x1e\x0d\xb6\x05\xcb\x07\x7f\x1e\x7c\x2a\xf0\x09\x1e\x34\xd1\x4f\x99\x38\x4c\x07\x29\xec\xc0\x54\xbe\x44\x72\xeb\x4f\x29\xe6\x9d\x3c\x22\x24\xa1\xe2\xae\x60\x60\x00\x42\x84\x9f\x8d\x55\x8b\xf9\x49\x1c\x94\xb0\x5a\xa8\x41\x23\xdc\xf8\x46\x93\x66\x5f\x59\x28\xa5\x9d\xfd\x2e\xed\xa4\xb1\x90\x8d\x10\xa2\x95\x34\xce\x0b\x2a\x2f\x57\x2b\x08\x65\x25\x3e\x14\xf9\xa6\x11\x13\x10\xf5\xa3\xee\xac\x4f\xd7\x30\x99\xba\x53\x18\xf2\x7c\xe6\x98\x2f\xa9\xbd\x6f\x27\x50\xaf\xfc\x13\x53\x6d\xec\xad\xbb\x95\x03\xba\x75\xb7\x66\xa3\x98\xe2\x29\x5d\x13\x35\x42\x8c\xd4\x96\xa2\xc0\xe7\x21\x14\xf9\x85\x06\x5e\xa0\xaf\x95\xae\xe7\x12\xe7\xed\xe1\xc0\x27\xb0\x0f\x6b\x09\xdd\xb4\x72\xff\xb3\x19\xfa\x42\x44\x0c\x67\xc7\x53\xf5\x34\xd5\xab\xe9\x08\x3b\x46\x9c\xbf\xae\xc1\x8d\xf9\x26\x50\x64\x23\x7d\x62\xbe\xaa\x26\x16\x1e\xf4\x4f\xe9\x1b\x51\xdd\xba\xab\x90\x15\xb7\xb5\x04\x62\x5d\xf9\xe4\xb9\xf6\x28\x4b\x87\xbe\x83\x04\x51\xd0\x4d\x7c\x88\x6f\x02\x0f\x3b\x06\x41\xbf\xa7\x56\x15\x50\x9d\x3f\xbc\xde\x69\x02\x64\xbc\x9c\xae\xb8\x50\x08\xb1\xc1\x69\x45\xdb\x76\x5a\x65\x5e\x0e\xa6\xc3\x39\x0f\x91\xe1\x0e\x37\x04\xb1\x7b\x3a\xd5\x66\x94\x9e\x4a\xda\x73\xe2\xf4\xa0\xe0\x2a\xb0\x1a\xa9\xb1\xe6\x9f\x1f\xb5\x54\x98\xb2\xc9\x8b\x58\x82\x93\x26\xf9\xc1\x9e\x25\x49\x51\x1e\x0c\xe4\x30\x4f\x8e\x15\x0f\xd0\x49\x15\x23\x97\xc3\xd1\xc6\x8c\xe7\x1b\xff\xbb\xe7\x54\xd1\xe4\xb2\xe2\x9a\xfc\x5e\x6d\xbf\x1c\x98\x6f\xa7\x61\x58\x66\xee\x97\x84\xc8\x87\x7e\x49\x18\x7e\x7c\x22\x7f\x25\xb3\xa6\x18\x90\x41\x47\xed\xf9\x2a\xac\x14\xfe\x72\x47\x47\x15\x67\xbd\xdc\x97\x80\xfa\xe0\xda\x30\x4f\xe5\x58\x89\xb7\xed\xa6\x28\xc1\x9d\x6e\x0a\xfa\xb7\xfd\xe4\xdc\xb7\xdc\x0e\xd3\x5c\x38\xd3\xe1\xb0\x73\xe7\x10\xdf\x68\x8a\x3e\xb3\x11\x25\xfd\x4f\x90\x7d\x76\x64\x9d\xbe\xff\xe1\x5e\xa0\x30\x76\xf7\x54\x7e\xf1\x3d\xf2\x63\x71\xdc\x3c\x20\xaf\x54\x7a\x63\x7c\xa1\x10\x54\xdc\xc2\x1c\xe3\x25\x71\x71\x06\x3b\x80\x60\x75\x88\x60\x2b\x5c\x55\x25\x9f\xf5\x28\x47\x96\x11\x16\xf3\xb4\x6a\x51\x38\xad\x02\xaa\xca\xfb\x89\x86\x36\x29\x60\x27\x00\xb3\x00\x73\x2b\x6c\xc6\x19\x4c\x93\x40\x9d\xb6\x0f\xd6\xc1\xaf\xb6\x73\x6b\x57\x29\x8c\x10\x20\xb8\x4f\x68\x5f\x74\xf3\x93\x95\xb6\x57\x0a\xe3\x23\x23\xf4\xd4\xc6\x3d\xe2\xcc\xc2\xc0\x9a\x6e\xe5\x55\x2a\xd3\x88\x54\x04\x5f\x6b\x9e\x03\x3a\xc5\x5b\x0a\xb8\x73\x49\x09\x1f\x5d\xaa\xc3\x59\xda\x87\xe6\x97\x9f\xa2\xd3\x58\xb4\x8d\x68\x61\x21\x70\xbb\x33\xf6\xe2\x98\x0f\x30\x87\x53\x2b\x4e\xc4\x1c\x14\x5d\xe1\xc3\xc0\x0b\x77\x00\xab\x2b\x38\x66\xac\x1d\x9c\x42\x3f\x41\x5c\x83\x04\xd1\x13\x1d\x8f\x66\xd9\x49\x60\x4c\xf8\x52\x57\x74\x97\xf9\x1f\x51\x60\x23\x4e\x56\xcb\x31\x2c\x30\x58\x02\x1b\xf0\x18\x66\x1e\x00\xc7\x6f\x07\xaa\x25\xee\xac\xde\x4c\x65\x1c\xdb\x82\x3a\xf6\x50\xf5\x38\x12\x78\xc4\x3b\x38\x49\x1c\x00\xf4\x57\xbe\x2c\x7f\x53\xdb\xc3\x2f\x2c\x1e\xac\x86\x9b\xa4\x45\x68\x68\xd4\x53\x8b\x54\xdc\x95\x5a\x69\x87\x24\xb2\xbb\x6b\x36\x2b\x22\xcf\xe9\x87\x9d\x7b\x53\xd1\xc9\x73\x33\x8b\x38\x6c\x8a\x2d\x20\x8d\x4d\xa6\x14\xb9\x7f\x34\x56\xa7\xd1\x8f\x1c\x05\x4a\xcf\x24\xf9\x2e\x8c\xb8\x2e\x71\x88\xeb\xef\xcb\xf4\x9c\x2a\xc5\x3e\xbd\xac\x25\x37\x3e\xdd\xd1\xbe\xb1\xaa\x3a\x74\x6d\x6c\xfb\xa6\xb0\x2a\xe1\xf7\x91\x4e\xf8\x7d\xe4\x4c\x64\xb1\x6e\x93\x62\x63\x46\xe3\x92\xf5\x46\xa8\x62\x4a\x8c\xee\xee\x8e\x9f\x9e\x34\xee\x0a\x20\xcb\xf1\xde\x28\x87\x5d\x11\x6b\x9a\x92\x86\xd0\x73\xd0\xa0\xbd\x00\x6b\xfd\xfe\xd8\xe3\x6b\x8f\x36\x09\x89\xe7\x45\x96\xae\x8a\x02\x9b\xd0\x2b\xb7\x54\x0f\xa0\x17\x40\x0c\x89\x86\xdc\x44\x49\x91\xd3\xae\xc6\xe4\xde\xc1\x56\xe1\x1b\x55\x30\xcc\xd2\xae\xcd\xa2\x70\x95\x96\x98\x90\x0a\x2b\x81\x84\xf3\x8a\xc7\xe9\x23\x32\x7a\xc8\xce\xd4\x6b\xa3\x87\xe6\xbf\xd4\x36\x23\x93\x15\x2d\xbf\xfa\x4f\xaa\x38\xa4\xae\xf4\xbf\x78\xb0\x3d\xb4\x59\xdf\xe1\xfc\x9a\x54\x16\x9d\x17\x11\x0e\x4c\xcf\x66\x6c\xd5\x05\x8b\xa8\x1a\x8e\x8e\x34\xe0\x4b\x5f\x6c\x8f\xe2\x2a\xc2\x3d\x34\xef\xa7\x47\x75\x7a\xd5\x49\xe9\x17\xdb\xc3\x32\x21\x0e\x83\x58\xa5\x7b\x8f\x28\xb2\x8a\x23\x0d\x4a\xc0\xfb\x1d\x57\x57\xcb\xe7\xfe\x39\x5c\x93\xf3\xc7\x43\xba\x07\x29\x10\xa2\x62\xb8\x8e\x06\x3e\xfb\x54\x4f\x66\x7d\xee\x73\xed\x7e\x94\xae\x99\x24\x89\xf0\x21\xc5\xb4\x2a\x2a\x63\x75\x06\xe1\xa5\xa5\x03\xed\x22\x33\x6b\x36\x6e\x29\xe0\x16\xba\x2a\xf9\x5a\xa1\xa8\x56\x6c\x31\xe8\xa5\x59\x1f\x2d\xf8\x48\x1b\xb6\x08\xb6\xc7\xd7\x35\x86\xb5\x7d\xcb\x04\x3e\x1b\x59\xf8\xc3\x4c\x6a\x04\xa7\xd1\xe5\x59\x5d\x06\xeb\xf7\x34\xa0\xf5\xf5\xc6\x74\xd6\x28\x36\x89\xa3\x8f\x71\xfa\xfd\xde\x26\x1e\xd5\x5c\x8a\xb7\x74\x72\xab\x28\xbb\xd8\xb5\xd2\x38\x4f\x7f\x28\xda\x20\xf4\x15\x88\x76\xde\x75\xf9\xc4\xdc\xbe\x52\x72\x99\xd3\x45\xb2\x3e\xaa\x55\x98\x84\x62\x90\x0e\x4d\xae\x62\xf0\x29\x55\xcc\xe3\x4d\x75\x54\xe9\xeb\xac\x3c\x5e\xac\x55\x81\x6b\x93\xf5\x84\x67\x83\x8e\x15\x98\x96\x77\x75\x02\xe5\x9e\x52\x41\x09\xcd\x70\x64\x4d\xa9\x93\x3d\x47\xe0\x8e\xb8\xfe\xa2\x29\x19\x00\xbf\x1e\x8e\x3a\x42\x95\x32\x41\x72\x80\x3c\x04\x8f\x6a\x44\xc1\x48\x54\x81\xe9\xf7\xf1\x0f\x77\xc6\x9f\x70\x81\xdb\xe7\x3e\xf7\x0b\xfe\x29\x1f\xa5\x90\xda\x79\xef\x0b\x8b\x5a\x3e\x59\x34\x82\x5b\x13\x82\x2e\x20\x51\x7f\x87\xea\x43\x98\xbd\x1f\xa2\xd0\x21\xcd\x28\x0e\x6b\x2a\x89\x34\xf8\x51\x8c\x0e\x75\xf5\xa9\x03\xf3\x0e\x08\xa4\x45\x51\x1e\x04\xad\x2f\xfe\xaa\x97\x15\xa8\xdc\x01\x0e\x5a\x02\x9f\xd5\xbe\x8b\xd3\x15\xd0\xf3\x2b\x63\xa5\xbb\xc5\xb2\x06\xa2\x07\x56\xd9\x2a\x69\xaa\x56\x35\xda\x1d\x9d\xea\x38\x45\x3a\x68\x2b\x80\xcb\xee\xa8\x33\x3e\xf7\x39\x3e\x0a\xae\x02\x1d\x0c\xe8\xe9\xce\x49\xeb\x97\x5e\x70\x4c\xb9\x94\x54\xc4\xcf\x03\x20\x24\xfd\x41\x3e\x6f\xd3\xcb\xc0\x75\x83\xf2\x04\x77\xc5\xe2\x54\x73\xed\xa3\x9e\x66\x5c\xf5\x68\x24\xe9\x9a\x19\xda\x22\x8b\x5e\x61\x73\x08\x08\x05\x6b\x19\xf0\xcd\x14\x78\x6b\x64\x13\x02\x46\x20\x95\xbd\x4b\x41\x72\x7f\x8b\xc6\x19\x89\x02\x38\xb5\x48\x7d\xff\x58\xf9\x30\xd0\x97\xc1\x19\x7c\x17\x01\xba\xf0\xd5\x49\xeb\xc3\x8a\x05\xa0\x91\x2a\x9b\x5b\x97\x71\x50\x63\x8e\x99\x96\x1a\xdb\xf3\x6a\xa3\xf9\x1c\x86\xfd\xcc\xf6\x53\xf2\x15\xb6\xa0\x7d\xb1\x75\x59\x79\x41\xf6\x95\x51\x9a\x15\x7b\x94\xf7\x20\x4a\x4a\xae\x93\xd4\x2d\xa9\xcb\x0a\xa6\x75\x0e\x05\x5d\x1c\x92\x80\x1c\x72\x59\x99\x12\x1c\xfc\xff\x03\x75\xaa\xde\x57\xdd\xdf\x71\x9a\x16\x42\xaa\xd4\x44\xe4\xe1\xa4\x8a\xad\xc9\xd3\xc4\xc4\x33\x8a\x16\xe6\x92\xa2\xc6\xbd\xae\x4e\xea\x9d\x13\x4f\xff\x51\x86\x83\x5d\x4a\xbc\xe1\x2f\xc6\xae\x3f\xea\xbf\x7c\x72\x32\x45\x1f\xe0\x93\x71\x20\xef\x12\x99\x28\x87\xb4\xf8\x83\xbd\x1d\x6f\x38\x46\x36\x8b\xd2\x6e\x3e\x43\xef\xce\x2d\x12\xe3\x29\xde\x73\x27\x3e\xa3\xdb\x3e\x46\x59\xfa\xb2\x17\x5c\x84\x8d\xf9\x36\x3d\x3a\x5f\xd7\x93\x0c\x8b\x20\xc0\x6b\x4d\x3f\xac\x22\x41\x50\x78\x3a\x33\x8a\xba\xf1\xc6\x6e\x15\x8d\xdc\x85\x75\xe6\x1b\x7a\x7b\xc4\x74\x5b\xf4\xb4\xec\x68\x6a\x7d\x93\x4d\x8a\xa8\xb4\x07\x8a\xc5\x5e\xe7\x6d\xdd\xb7\xdc\x1e\x56\xd1\xb1\x73\x5b\xe1\x59\xde\x9f\xaa\x7a\xb7\x1c\x23\xe2\xd9\x5a\x80\x7d\xf0\xab\x02\x88\x61\x64\x94\x90\x93\x91\xc1\x81\x4d\xff\x48\x35\xba\xdf\x6c\xaa\x1c\x5b\x93\xf9\x66\x45\x27\x8c\xb5\x8d\xd3\x49\xe8\x08\x9e\xd2\x64\xf5\xf8\x61\x2a\x04\xa2\xe9\x66\x12\xf8\x06\x9c\x49\x03\xac\xe0\xf9\xb6\x11\x0a\x6d\x27\xe4\xe8\xe0\xc4\x97\x6a\x27\xd5\xa1\xf9\xe5\xb6\x4d\x8a\x41\x99\x47\x26\x1f\x2a\x95\xe6\xf7\x95\x4a\xf3\xfb\x9a\xd3\xd9\xc4\xb1\xed\x3e\xa6\xda\xd9\xae\x05\xbe\x7d\xfb\x3c\x8e\x1f\xc9\x8b\x79\x0e\xe4\x63\x34\x63\x3a\xfd\x8b\xf3\xe4\x0d\xdd\xca\x7c\x92\x93\x1d\xa2\x87\x4f\xc3\x05\xab\x07\xd2\x5c\x9c\x9a\xbb\x3b\x8a\x8b\x1c\x2e\x33\x8e\x6c\x62\xaf\x10\xdb\x58\x86\xb1\x35\xd9\x9c\x27\x11\x60\x38\x38\x42\xbb\x8b\x1a\x3f\x7d\x92\x8d\x88\x12\xd6\x58\x96\xbf\x6b\x48\xc8\xbf\xd8\xb6\x7d\x58\x03\xc9\x0c\xb7\x1c\x25\xd7\xe1\x26\xe7\xb6\x6b\x7b\x65\x12\x16\x2a\xa6\x40\xab\x3f\x8e\xce\x1b\x40\x43\x08\xe8\xd8\xbb\x34\x44\xfd\x45\x81\x36\x6c\xc9\x31\xd5\xdb\x7e\xac\x56\xc8\x59\x58\x68\xe7\xd1\x70\x14\xdb\x19\x3a\x63\x71\x16\x81\xd0\x11\x16\xfb\xba\xa2\xf7\x7a\xbf\xc6\x0c\x5b\xf9\xe0\x69\x52\xf4\xd3\xb8\x17\xd9\xcc\xaa\x68\x6d\x96\xce\x33\xbe\xee\x3c\xa6\x58\x3e\x5e\xa1\x32\x0d\xf2\xb2\xb7\xa7\xc0\x16\xd5\xa7\xd1\x0b\x70\x5a\xd5\xd3\xcd\x88\x72\x99\x2d\xef\x7d\x9e\x53\x90\xf6\x73\xae\x07\xdf\xbe\x12\x0e\xaa\x23\x11\x52\xff\x0c\x7b\xc2\x84\x61\xa1\x3c\x0c\x94\x7c\xa5\x96\x56\x8c\x5e\x8e\x68\x62\xa6\x84\x5a\xf8\xa6\x36\x93\xfb\x96\xdb\xfd\x8c\x4b\x2b\xce\x5a\x2f\x2c\xba\xb6\x0b\x7d\x70\xa6\x69\x77\xaf\xea\x00\xd9\xa4\x38\x50\xd8\x50\xab\xe5\xcc\x02\x88\x81\xea\xab\xbf\x43\xf6\x1a\xf9\x20\xf2\xb4\xb6\x4e\xd0\x20\xa1\x94\xf7\x43\xc5\x10\xce\xc8\x51\x3c\xe8\x1c\xf7\xf0\x4b\x11\x4b\x11\x68\xbf\x0e\xb5\x7b\xa1\x9e\x20\x97\x0b\xb9\xa4\xdb\x88\xd5\xe0\xb4\x5c\x9d\x62\x4e\x54\x59\xd1\xbb\x4d\xb0\xcf\x28\x09\xe3\xb2\x8b\xa6\x4d\xb8\x6c\x3b\xa1\x55\x88\x4a\x11\x38\x21\x24\x08\x94\x29\x2a\x06\x36\xb3\xbd\x34\x23\xf1\xc4\x45\xc7\xb0\x4d\xce\x96\x3b\x00\x34\x62\x4b\x5a\x38\x56\x9f\xe9\x28\x74\xca\x45\xa5\xd8\x73\x6b\xaa\xcf\xcf\xc6\x1b\x9f\xa1\x57\xc2\xa0\xb4\xd0\x8c\xc4\xf5\x1b\xed\x55\x7d\x12\xce\xa6\x4a\x41\x48\x63\xd2\x65\x25\x76\xf5\x1e\x86\x51\x22\x4b\xda\xe1\x28\xdf\x7c\xa0\x5a\xe1\xf7\x4e\x2a\x2b\xa5\x19\xdc\xb1\xab\x77\x61\x40\x9c\xd0\xe0\xe2\x41\x0e\x36\x6f\x02\xac\x23\x26\x9d\x5e\x9f\x0e\xf1\xff\xad\x0d\x48\x04\x1c\xa7\x6b\x9c\xec\xe5\x87\x0c\x54\x43\xce\xdb\x0a\x5e\x73\x38\x50\x8d\xc0\x81\x5a\x6e\x37\xc8\xc4\x62\xd6\xef\x05\xba\x33\x7a\x4b\x39\xbe\xaf\xfd\x8d\xc9\xd3\x8a\xb9\xb3\x88\xfa\xa6\x48\x33\x84\x2d\x58\x85\xff\x4e\xb5\x0f\xfc\xbb\xc6\x5c\x72\x5e\x66\x6b\x76\x43\x32\xbc\x78\x2c\x16\x27\xe6\x9b\x49\x43\x23\xf5\x30\x8c\x54\x2b\xdf\xa5\xf1\x14\x17\x62\x1d\xbc\xbf\xdc\x1e\x44\xdd\xae\x05\xfa\xaa\x09\x7d\xd0\x70\x8a\x17\x51\x61\x92\xa8\xc4\x11\x05\x2b\x70\x47\x35\x40\xdc\x51\x4d\x35\xdd\xc8\x0c\xd3\xa4\x9b\xa3\xd2\x80\xf5\x73\x15\x4b\x06\x3b\x16\x12\x98\xfc\x0f\x70\x51\xf9\x1f\xb4\xcc\x7e\x94\x67\xe5\xa8\xa0\x02\xa8\x4b\x33\xee\x5f\x3c\x38\x9d\x32\x13\xe6\x97\x96\xff\x07\xed\x39\x46\x09\x34\xc3\xaa\x9f\xc0\x79\x75\x4a\xd1\x5e\x7f\xf7\x94\xb2\xf6\x3d\xea\x19\xaa\xd6\x1f\x42\xc0\xdd\x1d\x9f\x70\xd9\x3d\xd9\x9e\xa2\x58\x58\x68\x9b\xa1\x29\x6c\x99\x09\xad\x05\x8b\x9d\x04\xfe\x2c\xfa\x4e\x93\x5e\x74\x3f\x4b\xd7\x9d\x2b\x82\x38\xae\xa5\x08\xa0\x2e\x2b\xa9\xac\x6b\x8a\xe6\xd6\x0c\x4d\x99\x21\xbe\x86\x8d\xb8\x12\xb4\x14\x59\x0d\xbd\x93\x80\xb4\x1c\x80\xcb\x64\x8e\x25\x42\xd2\x1f\x3a\x2f\xe2\x8f\x92\x41\x39\x98\x51\x84\x0b\x37\x39\xd0\x12\x00\x43\xcb\x71\xab\x1e\xad\xf9\x9e\x4b\x4b\xed\x9e\x13\xff\x70\xe5\x77\xf7\x68\x75\x0e\xd8\x43\xf3\x44\x59\x30\x04\x61\x94\x1b\x2c\x08\x42\x48\x39\xd5\x83\x86\xc9\xb1\xdd\x5d\x2d\x02\xc4\x49\x6f\xc0\x90\xb8\xb6\xb1\x6d\x72\xf1\x4c\x5b\x3d\x56\xcd\xa6\x67\x14\x0f\xff\x1b\xd3\x88\x1b\x1f\x03\xe6\x89\x19\xb9\x9e\x34\xa7\xe4\x7f\x60\xde\x51\x36\x6d\x2f\x1e\x1e\x9a\x6f\x97\xa3\xdd\x5e\xd3\x01\x0a\x62\x82\xd6\x26\x13\xb1\x05\x32\x01\x9c\x03\x4f\xa8\x72\xf3\x5f\x8e\xa7\x6a\x28\x6e\x13\x3e\x1c\x7b\xa1\x14\xca\x03\x15\x05\x88\xdd\x5c\xa6\x19\x69\x4d\x09\x80\x1b\x6a\xa3\x23\x93\x44\x60\x5d\xc5\xf1\xbf\x09\x68\x1e\xdf\x28\xb2\x18\x72\x34\x98\x23\xcc\xe5\xfb\x3c\x07\xeb\xf8\x19\xef\x71\xc6\xd5\x3a\xb2\x05\x55\x31\xb5\x62\xab\xd6\x78\xad\xeb\xd8\xbe\xc8\xd4\xd7\xe9\x68\x50\x39\xd0\x0e\xf5\x7f\x01\xd6\x89\x6f\x54\xaf\x1f\xc1\xe5\xbb\xaa\x29\x10\xa9\x07\x51\x36\xae\x5b\xcb\x76\x98\x0e\x87\x36\x09\x45\x12\x62\x8a\x67\x45\x20\x9f\xae\xf2\x96\x66\xfd\xb4\x98\x51\x49\x77\xae\xad\x32\x45\x66\xa0\xca\xb8\xff\x28\x10\x46\xc6\xc4\x46\xfd\xc1\x4a\x4a\xe1\x8b\x37\x76\xb7\x02\xd5\x79\x86\x3a\x26\x06\xf8\x81\xa2\x69\xa2\x14\x2c\xf1\x3e\xaa\x5e\xe3\x4d\xc5\x32\xab\x72\xaa\x83\x68\x34\x12\x9b\x0f\xef\x84\x6d\x3e\xdf\xd4\x28\xf5\x0f\x7e\x15\xad\x8b\x34\x7d\xb0\x1c\xdf\x0d\xbc\x15\xf9\xae\x9a\xe8\x61\x94\x44\xc3\x12\x5e\x16\x0e\xfd\x37\xe8\x2f\xf9\x7a\xca\xcb\xca\x6d\x3c\xa7\x52\xfb\xaf\x6b\x31\x03\xe8\x0f\x23\x8e\xf9\x51\xe0\x73\xe6\xe8\xfa\xc5\x61\x73\x4a\xe9\x12\x87\xe9\x68\x03\xe2\x5c\x1a\x41\x22\x0a\xff\xdb\x5f\xe8\xa5\x97\xda\xc5\x20\x4a\x56\x95\x17\xc4\xac\xa9\xc8\x16\x01\xad\x21\x81\xb3\x0c\x5c\xd4\x4f\xd2\xcc\x76\x67\x55\xdd\x83\x23\x20\x05\x60\x13\x48\xc3\xac\xa2\x4a\x7d\xa0\x38\x48\x7b\xa6\x7c\x85\xd6\xa7\x3c\x5b\xcb\x89\x3e\x6d\x36\xf1\x1a\xe7\x83\x14\xa1\x84\x50\x14\xeb\x56\x18\xfa\x3d\xa1\xa7\xf5\x7d\x8f\xc4\xab\xc3\x40\x07\x89\x87\x80\x2d\xe6\x6b\x55\xa2\xe0\x36\x66\x82\x86\x22\xf8\xda\xd1\xa1\x7d\x07\x73\x06\xee\x09\x69\x1d\x17\x6c\x7c\x68\x63\xbb\x92\x99\x42\xea\x4a\x9c\x8f\xd1\x7e\xfa\x79\xcd\x9a\x9e\x96\x59\x6e\x31\x6e\xa8\x4f\x5e\x08\xb4\x96\x07\x7e\x04\x7b\xf4\x04\xa1\x73\xf9\x5a\xd1\x27\xe5\xa1\x4d\x0c\x11\xcf\xd4\x52\x65\x7c\x3d\x7e\x7a\xba\x72\xb8\x6f\xb9\xbd\xbc\xfc\x37\xe9\x5d\x18\xb7\x3a\x69\x2d\x2c\xf0\x70\xbd\x89\x30\x4c\x20\x12\x4a\x19\xa3\x45\x35\x7c\x81\xde\x7a\x93\x7a\x74\x4c\x9e\x27\xdc\x48\x01\xea\xe0\x23\x3f\x46\xa2\x53\x51\x98\x08\x53\x3b\x4b\x18\xa2\xbd\x62\x53\x23\x25\x00\xcf\xc1\x58\x6d\xc2\xaf\x74\x9a\x94\x5f\xfc\xd5\xad\xc7\x26\xad\x17\xf6\xb3\xab\x7c\x07\x61\x06\x32\xec\x77\x02\x8f\xdc\x1b\x8d\xbd\x62\xc5\xce\x09\xb9\x2b\xac\xf2\xc3\x1e\xa8\xe0\x7b\x5b\xbf\xf2\x65\xc7\x85\xe0\xbb\xb8\x6f\x92\xc7\x8c\xd0\xf1\x32\x9c\x79\xac\x5d\x94\x38\xb9\xd7\x94\xe6\x03\x43\xbc\x13\xa1\x38\x50\x99\x27\xc7\x3b\x3f\xcb\xf8\x28\x66\x79\xc7\xe1\xc5\xe8\x50\xe1\xc1\xf0\xe9\xbc\xf5\x6a\xa1\x65\x33\x9a\x8f\xc3\x03\x9c\x6e\xc1\xbd\x83\xd7\x79\xd5\x8b\xe4\x65\xff\x2f\x65\x6f\x1a\x23\x47\x9a\xa6\x87\x91\x59\x55\x64\x37\xd9\xf7\x31\x23\x09\xb2\x95\x92\x06\x1e\x09\x6e\xb4\x56\x30\x64\x18\xeb\x1f\x91\x2a\xd6\xa2\x87\x04\xa6\xa6\x40\x72\x39\xab\x86\x60\xf0\xcb\xc8\x2f\x33\xa3\x2b\x32\x22\x27\x22\xb2\x8a\xd5\xf6\x0f\xdb\xf0\x2f\xff\x90\xe1\x6b\xd7\x0b\x19\xf0\xae\x57\x96\x25\x8d\xf7\x3e\xb4\x33\xeb\x75\xe6\x1c\x3b\xbb\x33\xd3\xab\x99\x69\xf6\x7d\xf3\x26\xab\xc8\xe2\x7d\x93\x45\x23\xde\xe7\x7d\xbf\xef\x8d\xca\xe8\x85\xfd\xab\x23\x9a\x95\x99\x71\x7c\xc7\x7b\x3c\x07\xc4\x25\x67\x15\x9b\xe3\x14\xf6\x64\x3c\x9b\xc7\x27\xbe\x09\xf0\x1c\x4d\x39\x2c\x77\xe7\xd4\xf0\x1b\x44\xe0\x74\x1e\x9c\x67\x90\xae\x36\xff\x81\x0d\x0f\x6a\x5d\x3b\x50\x7f\x43\xda\x71\x4a\xf7\x76\x77\x50\x21\x5c\x88\x7f\x1e\x46\x9c\xa7\x5d\xa3\x43\x9e\x0d\x15\xf2\x6c\xd4\xd9\x4e\x36\x73\x6b\x0a\x11\x4f\x72\x86\x70\xca\x1d\xae\xa6\x52\xda\xcc\xec\x30\xcd\x0a\x17\xc7\xe1\xd1\x6e\x28\xc6\x36\x1e\x1e\x5b\xd4\x6b\x76\x65\x16\x75\xcc\xda\x93\xe5\xb5\xb3\xaf\xc9\x58\x59\x24\x9c\x55\x1e\xea\x68\xfc\xe0\xd9\xfd\x73\x8c\x05\x0c\xc7\x1f\x61\x91\x91\xe2\x85\xaf\xb8\xce\x20\x47\x03\x3b\xeb\x23\x2d\x08\x7f\x26\xf0\x1e\xb4\xd7\x11\x11\x40\xef\x61\x6e\xa2\x76\xf4\x0f\x31\x03\xf9\x57\xd4\x4c\x6f\x9b\x6c\x39\xef\x98\xd8\x36\xb6\xc7\x9f\x7c\x5c\x97\x30\x44\x49\x27\xca\x6c\x08\x55\x19\xa1\xeb\x97\x9f\x17\x1e\xff\x74\xd7\x6f\xb1\x7c\x17\x19\x5c\xa4\x7c\xe7\xf9\xdd\x71\xc5\x2d\xeb\x09\x01\xe0\x96\x2f\xec\x05\xba\x49\x6c\xe1\x7b\x5a\x8d\x2f\x7f\xd9\x59\xda\x95\x0f\x12\xe3\xe9\xb4\x32\x53\x07\xa5\x09\x35\xa0\x8f\x29\xf2\x42\x99\x69\xef\x84\x56\x05\x96\x1e\xa2\x35\x46\x76\x03\xdd\x3c\x9a\x69\x95\x53\x4f\xa8\x15\x0d\x87\x25\x7c\x53\x17\x47\x77\xc0\x97\x95\x1d\x57\xb5\xe5\x30\x5e\x1c\xa0\x79\x8f\x4d\x14\xb5\x73\xae\xa5\x80\x89\x6f\x06\xca\xe3\xfd\x61\xc5\x10\x93\xc6\x3f\x56\x84\x9f\x55\x84\x57\x92\xa8\x3f\xab\x30\x74\x1b\x63\x45\x10\xba\xa5\x01\x75\x1b\x0a\xca\x77\x6b\x6a\x77\x3b\x38\xdf\xec\x8f\xb2\x82\x7a\x89\x0e\x9b\x7a\x64\x7e\x61\xeb\x34\x45\xb7\x5c\xd8\xc7\xa6\x8a\x57\x7f\x6e\x6a\x4a\x91\xa8\x6a\xec\x54\x9f\xf0\x4c\xf0\xb3\x7c\x5c\x97\x43\x84\x59\x2a\x9f\x10\x47\xef\x86\x77\xf7\xd6\x2c\x3b\xd4\xf7\x0f\x55\xbc\xd9\xf1\x48\x1e\x6f\x79\x34\xdb\xae\xa9\x8c\xed\xe0\x7c\xd3\x0c\xda\x11\x14\xff\xd0\x8d\xd5\x92\x4a\x7c\xac\x44\xf1\xdb\xb6\x37\x4a\x76\x79\x1f\xcb\x75\x25\x4d\x03\x82\x37\xf6\x8d\x3b\x74\x09\x28\x0e\xfc\xf6\xd8\x13\x15\x7e\x30\xf6\xed\xa6\x0b\x8e\x07\xd3\x36\xaf\x19\x15\x9f\xef\x00\x60\x82\x4f\x26\xd3\x09\xe3\x52\xb3\x97\x16\x85\x4d\x10\x39\x60\x97\xf9\x1d\xfa\x75\x3e\xae\xab\x98\x9b\x6c\x90\x17\x59\xca\xe1\xbd\x2b\xab\x7a\x11\xcd\xcb\x35\x6a\xf9\x07\x9b\xab\xc4\xa8\xf6\x0b\x0a\xcb\xbe\x0a\x71\xde\xc7\x94\x26\x89\x06\x26\xce\xe7\xf4\xbe\xa2\x00\xc2\x57\xd4\xf5\xfd\x1a\xf1\xac\xc4\xaa\xa8\x9c\x32\x52\xb5\xd3\xe3\xb7\x3d\xca\x1f\xf3\x65\xc0\x2b\xf4\xe4\xb0\xe8\x63\x32\xf2\xb1\x16\x7e\xde\xe4\x99\xa9\x0a\xdf\xaf\x70\xd2\xf9\x7f\xa9\x6e\xc9\x67\x54\x29\xc4\x60\xbd\xad\xb2\x0d\x93\x17\xa3\xc2\x2a\xd0\xfd\x3d\x75\xd1\xf7\x34\xf0\xdc\x66\xcb\x65\x5a\xb2\x7f\xd1\xfb\xa2\xb8\x10\xe4\x92\x76\x00\x4c\xbb\x05\x71\x70\x69\xad\x16\x5d\x34\xdf\x39\xdc\x98\xaa\xc4\x2c\x7d\xed\x50\xd3\x0e\x86\x11\x97\x7b\xb1\x62\x80\xea\xcf\xc7\x0a\x62\x1f\x25\x21\xa9\xd6\xe4\x73\xca\x99\x8e\xed\xc6\xf8\x44\x95\xe2\xef\x2a\x66\xdc\x79\x6d\x20\xbf\x5e\xe3\xe4\xb2\xd0\x24\xa0\x8a\x2c\xbb\x02\x4a\x56\x98\xe8\x4b\x9e\x44\x5d\x06\xe9\x14\x5c\x39\x95\x7e\x1f\xb6\xa1\xd7\xc1\x0a\x82\x75\xde\x34\x7d\x6b\x84\x80\x8f\x8c\x81\x99\x5a\x7c\x52\x23\x8e\x43\xe3\x7f\x46\x81\x29\xa9\x16\x28\xf3\x6d\x57\xcb\x93\x17\x7f\xb5\xc6\x47\xec\x55\xe0\x12\x68\x1a\xb0\xc8\x77\xa0\xf4\xe6\xcf\xeb\xd2\x75\x9a\x3c\x43\x3f\x83\x1d\xe4\x11\x8a\x4d\xe2\xfb\x43\x37\xe9\xec\xd1\x0e\xce\xf3\xf2\xcc\x22\xbd\xf4\xb2\xd2\x17\x29\x24\x71\xa6\x04\xfb\xf6\x69\x42\x8e\xa0\x64\xe7\x26\x8a\x57\x8c\x0e\x0d\xda\x60\x60\xc0\x2b\xba\x37\x57\xa0\x7f\xf7\x8b\x13\x0c\x74\x8c\xed\x3d\xbe\x67\x7c\xfe\x3f\x6c\x29\x88\xe4\xec\xc4\xb7\x34\xae\x4f\xe9\xd0\x1d\x38\xd0\xcc\xd7\xd8\xcb\xa9\x43\xa9\xac\x48\x63\x2a\x2b\x0b\xa6\xf8\x23\x14\xbc\x35\x35\x50\x68\x65\x27\x1c\x57\x52\x28\x1c\xd7\x7d\xd5\xcb\xbb\x5f\xeb\xdc\x6f\xda\x96\x40\x2d\xae\x3e\x73\x4d\x4f\xe4\x6b\xda\x6e\x34\xeb\x50\xcf\x8d\xb5\x8d\x31\xf8\x50\x1f\x63\x75\xd5\xb1\x47\x26\x9e\xd5\xd8\x69\x80\xea\xf6\x7a\x35\x9b\x7b\x63\x1f\x6c\xec\x42\x28\x2e\x34\x28\x9a\xa0\x08\x94\xbf\x4f\xdf\x87\x2d\xf9\xbb\x9a\x61\xf0\x7d\x8a\x1a\x00\x11\x83\x7c\x0a\x42\x31\x76\x77\x12\xb8\x2d\x3d\x30\x84\x0a\x6c\x67\x2c\x6a\xc9\xdb\x43\xa2\x7d\xfb\x9a\xc6\x66\x69\x3b\x0a\x79\x9f\x63\xa4\xc9\xd8\xc3\xa0\xef\x2b\x2e\xc6\xcf\xfd\xdc\xcf\xcd\xf9\x7a\xcc\x17\x27\xe5\x2a\x46\xb3\x64\xe9\x6f\xb5\x94\xfe\x5a\x63\xa2\xc4\xc0\x4f\x2b\xed\x86\xab\xca\xce\xbb\x93\x59\x33\x98\xad\xb8\xc2\x55\x60\x7a\xe5\x7a\x26\xf5\x92\xf2\xae\xa5\x90\x22\x2d\x72\x93\x53\x09\xc7\x01\xd3\x18\xaa\xc2\x27\xea\xa2\xdb\xe9\x32\x65\xc6\x88\xa3\x1e\x6a\xe9\xd3\xf7\x31\xd1\x65\x6d\xa8\x80\x22\xa2\x70\xd6\xd7\x92\x7e\x43\x7b\x86\xfe\x0a\x2f\xf2\xe2\xc1\xac\xa2\xd5\xdf\x50\x4a\x16\x76\x94\xa5\xed\x34\xe9\xc0\x46\x08\x1d\x19\xd0\x19\x91\xa2\xf1\xc6\x81\xa9\xe9\x0b\xa4\x3d\x63\x63\xe6\x7a\x61\x68\xdc\xd1\x26\x68\x77\xea\xb8\x5a\x36\x2e\xd3\xf8\x19\xcd\x6c\xb8\x11\x28\x78\x34\xb7\xbc\x84\xf6\xef\xb7\xcc\x22\x8d\x62\x01\x31\x48\x49\x5c\x57\xc1\xd5\xcd\x1c\x23\x49\x9a\x15\xdb\xf0\x89\x3e\xb4\x81\x44\x14\xc4\x77\xa8\x07\x26\xeb\x51\x75\x0e\x29\x0f\x82\xdc\x9f\xd2\x17\xf3\xb1\xd3\x4b\xe8\xdb\x38\x3a\x86\x91\xe7\xfa\xee\xbe\x07\xaf\x0a\x37\x51\x66\xbe\x81\xaf\xc3\x0b\xfe\x81\x2a\xf6\xfc\x40\x5f\x67\x52\xa4\xa3\xcc\xf4\xf8\xb7\x91\x36\x80\x63\xc8\xc7\x0a\x44\xd5\xb1\x79\xd4\x4b\xf2\x86\xc7\xec\x9c\x46\x47\x80\x4f\x3c\x00\x7d\x68\x33\x23\x0c\xbc\x3a\x60\x9e\x12\x07\xb3\x71\x64\xbb\x33\x0a\x5a\xf2\x80\x86\x2f\x42\xb9\x1f\xd3\xa4\x15\x9f\x5f\x0f\x39\x2b\x8a\xd8\xee\xa6\x89\x2e\xd2\xe3\x34\x6d\x05\x86\xea\x8b\x39\x0c\x01\x72\x22\xf6\x5a\x90\xb8\x5c\xe8\x01\xa9\x7a\x9e\x86\x19\xd6\xf6\xf3\x4a\x09\x45\xc0\x28\xf1\x5a\x43\x69\xed\x1d\x57\xf5\xdb\xe3\x0a\xe3\x55\xac\xd2\xf4\x72\x2e\x80\x4e\x77\x70\xbd\x8e\x6a\x3c\x30\x59\x98\xe6\x56\x86\xa1\x78\x29\x2a\xda\x12\x17\x59\x05\x34\xeb\xdf\x43\x9a\x85\xa0\x8b\xbb\x9e\x14\x7e\x4d\x74\x21\xa4\xbf\x98\xd9\x7c\x94\xf5\xc4\xb5\xc6\x81\x48\x5d\x5e\x70\x46\x09\x38\xe4\x05\x61\x12\xe8\x3b\x85\x2b\x4a\x3f\xcf\x27\x6a\x16\x64\x96\x4d\x5e\xcb\xe7\x8f\x69\xb6\xae\x14\x4d\xef\x60\x3d\xc5\xe6\x78\xb6\x86\x77\x12\xa6\x49\x68\x3b\x52\xe4\x92\xe4\x96\x6e\x9c\x4f\xc6\xcf\x2b\xb9\xfb\x38\xea\x11\x1c\x74\xc6\x21\x7a\x3e\xbe\xa3\xbc\x22\x60\x61\x86\x02\xe3\xc9\xb1\x60\xf5\x86\x51\xaf\xb7\xd6\x36\xe1\xb2\x6b\x9e\x38\x12\xb2\x8b\xf3\x4f\x4d\x2d\xef\x65\x14\xc5\x2a\xe7\x33\x1a\x25\x87\xfa\xbe\x74\xfd\xe9\xb1\x20\x8e\xb9\xa9\x2c\xd0\xc2\xcc\xf2\xf3\x13\x05\x7f\xff\x53\xe3\xa9\x74\xe9\xa5\x66\x94\xf4\x6c\x0e\x25\x2d\xa9\x41\x29\x58\xf1\xa5\x4a\xea\x3f\xf5\x14\x69\x1b\x8f\x56\xc8\x84\xc4\x75\x23\xaf\x29\x9f\x99\x6b\xaa\xf8\x9f\x87\xfd\xd8\xe6\xe4\xf3\x87\x71\xec\xc4\x80\x16\x9d\x8b\xd4\xc6\x54\x67\x7f\xdf\xbe\x66\xbe\x2c\xf4\x5e\x2e\xef\xe9\x48\x58\xd7\x68\xaf\x05\x7f\x37\xaa\xd7\x83\xcc\xfb\xd1\xb0\xea\x7f\xa5\x9d\xa2\x11\xd2\xb3\xce\x35\xe6\xe5\x47\x95\x0e\x76\xc7\x46\x8d\x4a\x3f\x5c\x69\xca\x5c\x9e\x9a\x56\xd4\x88\xcf\xcb\x58\x1c\xe1\x11\x46\x05\x73\x9a\x30\xa9\x88\x80\xb0\xb8\xf5\x40\xc5\xfc\xcb\xe9\xeb\x51\x92\x2f\x47\x0d\x4f\x47\x7c\x8b\xe6\x13\x1f\x2b\x22\x49\x61\x86\xf6\xb1\xf2\xcf\x10\x6c\x9c\x44\xdf\x13\x05\x7e\x66\xd8\x20\xf2\x00\x91\x1d\x55\x1c\x84\x27\xf8\xb2\x3f\x40\x4d\x12\x0b\xd5\x39\x20\x11\x04\x59\x42\x0f\x1a\x2d\xf1\xbf\x70\x78\xfe\x55\xdb\x86\xc0\x89\xa0\x9c\xe8\x47\x84\xc8\x4c\x53\x10\xf8\x9b\x13\xea\x85\x77\xa2\xbc\xc8\xa2\xf6\x48\xf0\x67\x3c\x53\x68\xff\x91\x59\xf3\x84\xee\x52\xfd\x35\x5a\xc6\xb1\xe6\xb2\x14\x36\x38\xdc\x3b\x88\x20\x89\xfc\xf7\x3e\x65\x61\x4e\x5d\xcd\xab\x8f\x6c\x28\xea\x23\xe0\x90\x48\x0f\xd9\x55\x01\x2b\xc1\x9b\xa4\x90\x2a\x88\x1a\x15\xa3\x52\x60\xb6\x35\xa1\x00\x06\x63\xf7\xdf\x91\x6e\xa1\x38\xca\x52\x7d\x18\xba\x38\xff\x03\xdd\x01\x8e\xff\xeb\x40\x19\x34\xdd\xad\xea\xf9\x60\xee\x3a\x13\xf0\xf2\x21\x0b\x25\xdd\xc3\xac\x2e\x03\x69\x80\x10\x8c\xad\xc2\xb1\x39\x7f\x27\x50\xd0\x8d\xf7\x00\x7b\x44\x98\xf5\xa8\xc6\xe0\xb7\xcc\xbb\x92\x7c\x98\x66\x8e\x39\x8d\xf2\xc2\x75\xed\x77\x72\x5d\x35\x95\x44\x64\x82\x92\x40\xc5\xd9\x2f\x7f\x46\xc3\x2e\xf9\x1f\xca\x18\x76\xeb\x1e\x6d\x84\x68\x94\x9f\x54\x45\xd8\xe5\x2c\x4d\xd8\xbb\x03\xe5\xd1\x53\xaa\x54\x7a\xaa\x0e\xdf\x94\xa5\xb4\xce\xd3\x85\xe2\x11\x7f\xa4\x79\xfa\x1f\x29\x70\x7d\x98\x66\x09\xc5\xaf\x18\x61\x0c\xf7\xc2\x43\xfe\xfd\x40\x73\x6a\x6f\x68\xad\xd4\x13\x81\xd7\x96\xbd\x3c\xde\x6e\x6e\x28\x0b\xc3\xb2\x29\xfa\x16\x51\x8f\x2f\x88\x5d\x50\x06\x3c\xd3\x30\xc2\x7d\xfb\x9a\x61\x9a\x0f\x6c\x11\x85\xb2\x6d\x62\xd0\x71\x75\x0c\x97\xf9\x31\x2e\x53\x96\x51\xcf\xce\x88\x4d\xd2\xeb\xa6\x59\x67\xa6\x1c\xd2\xce\xf2\xc2\xed\x86\x77\x15\x01\x48\x0b\x98\x14\x69\xb9\x35\xae\xcd\xa8\x8c\xb5\x41\x69\x1a\xf6\x86\x27\xd1\xe4\xe3\x4a\xae\xa3\x20\x0e\x0d\xd3\x45\xa5\xc1\x58\xd1\xbf\x9a\x2e\x61\x1f\x6a\x76\x63\x93\xf7\x1b\xaa\xd3\x7b\x0e\x9f\x11\x08\xd8\xe7\x79\xf6\x77\xa2\x1c\x94\xd3\x86\x13\xef\xba\x1d\xcc\x1c\xfa\x27\x5f\xad\x6a\x17\x88\x89\xb2\x6b\xbb\x25\x9d\x51\x28\x96\xc0\xaa\xc6\xb0\xe4\x25\x74\x16\x9d\x17\xfb\x7f\x51\xd7\xb9\xed\x98\xac\x68\xa7\x14\x88\x78\x46\x67\xa0\x78\x97\xe7\x54\x43\xac\x13\x11\xf7\xbf\xa1\x90\x8a\x68\x33\x89\xc6\xc9\x76\x44\xcc\xc1\xf9\xa6\xe9\x40\x92\x83\xf5\xbb\x54\xb9\x6e\x53\x35\x0b\xfa\x66\x75\x79\xc7\x8b\xde\xae\x1b\x12\xc2\x64\xd9\xfd\xf9\x5d\x5b\xdf\xa3\x2f\x32\xd3\x21\x4e\xb5\x89\x67\x7d\x0d\x91\xf1\x84\x58\x1c\xc0\x37\x14\x1b\x06\xb5\x6a\x9c\x55\xdc\x9f\x4e\xb4\x12\x51\xc0\x4f\x59\x2a\xeb\x06\x05\xbe\x61\x7b\x66\xea\x0e\x17\x0e\x37\xbb\x05\xfa\xfc\x88\x8b\xff\x6c\xac\x98\x2c\x7f\xa6\x6a\xf7\x66\xd5\x64\x90\x86\x53\xb8\x97\x4f\x68\x8b\x11\x03\x69\x65\x16\x62\x13\xdb\x8d\x8a\xbd\xb4\x3c\x8a\xac\x52\xc3\xb9\x28\x70\x59\x19\xc1\xcc\xf7\xc6\xaa\x07\x76\x9f\x11\x23\x78\xc4\x0c\xbf\x70\xaa\x4b\xe5\x22\x2a\xaa\x8e\xb4\x24\xf3\x9f\x05\xda\x0c\x88\xae\x1f\x95\xfc\xbb\x4a\xb5\x66\x73\xaa\x8c\xb4\x70\xb8\xf9\x8d\x51\x64\x0b\xe5\x36\xf6\xae\x02\xe8\xbf\xab\xcc\x5b\xf3\xd5\x34\x63\x65\x4f\xc4\xa2\x2c\x97\xca\x27\x55\xd0\x75\x68\x73\xb6\x7b\x16\x05\xac\x6f\x62\x1c\x23\xd7\xff\x8b\xb1\x07\xeb\x5f\x50\x12\x4b\xec\x03\x2d\xa0\xc5\xe7\xa6\x44\xa8\xfe\xde\x8c\x2f\x4b\x03\x53\x22\x22\xd1\xbe\x26\x7e\x6a\xaa\xf2\xf5\xf7\xa8\x81\x62\xb8\x2f\x85\x68\x80\x79\x56\x7c\xa2\x18\xd6\x71\xf4\x8d\x51\xd4\x71\x76\x8a\x8b\x9f\x83\x01\x97\x14\xa0\x67\x92\xe8\x75\xdb\x79\xac\x0c\x54\x58\x44\x0c\xd4\x68\x99\x21\x55\xf7\x2e\x9f\x49\x7c\x87\x76\x5a\x21\x3b\x55\x6c\xbd\xe8\x67\xe9\x66\xbe\x8e\xae\x1f\xe2\xb3\xc6\xc4\x97\x21\xac\xe9\xd9\x8c\x17\x5f\xb1\x97\x53\x6a\x11\x37\x55\xe3\xfd\x9c\xea\x9d\xb7\xb3\xb4\x5c\xee\xf3\xdd\x7e\x7d\xd7\xd6\xd4\xff\x1a\xe1\x04\x9e\xef\x5b\x63\xa5\xb1\x01\x91\x08\x94\xcd\x6e\x05\x6a\xab\xb8\xa4\xba\x19\xef\x4d\x3d\xf9\xaf\x1f\x9c\x6f\x0e\xd8\x6f\x9d\xc7\x63\x75\x70\xd6\xec\x2d\xdd\x28\x2f\x77\x24\x49\x4c\xa4\x1f\xa8\x12\xc8\x0d\x57\x4d\xe9\xd8\x30\xcd\x30\x1b\xc5\x00\xb4\xa1\x9c\x41\xa7\x13\x8b\xa5\xa6\x89\x4d\x36\xa8\x2a\x5a\xa3\xd8\xcb\xc7\x53\xd5\xfc\x85\xc3\x65\x56\xe6\xa2\x0a\x61\x27\xfa\x34\xe8\xad\x3a\x7d\xde\x8c\xd2\xd5\xf2\xd9\xb0\x19\x52\xa0\x8d\x91\x6a\xf4\x1b\x4c\xd1\x8f\xad\xc3\x1c\x60\x5c\x72\xd3\x80\x4f\xdc\x5d\x77\xa3\xd8\x76\x76\x7b\x75\x11\xb8\x05\x3b\xb3\x9e\x72\x28\x61\x2a\x3c\x8d\x96\x36\xf5\x27\x7f\xf9\x19\xd4\xd4\xb0\x46\xa0\xf6\x87\xf8\xe4\x19\xe8\x0e\xca\x80\x55\x66\x26\x1d\x0f\x82\x60\xca\x1a\x76\x78\xe1\xaf\xd5\x14\x75\xfa\x66\x38\x64\x34\xa4\xcb\x30\x8e\x48\xfb\xf0\xa2\x03\x03\xa9\xed\x81\x06\x07\xbe\x11\xad\x20\x3e\x9e\xca\xd5\x8e\x1e\x6d\xc6\x86\x76\xd8\x83\xf3\xfc\xe8\xaf\x54\xb8\x0f\x8a\x4b\xf8\x87\x75\x68\x93\xae\x09\x21\xd2\x25\x6a\x7d\xaa\x7c\x7c\x4f\xc9\x0c\x9d\x54\xb5\x87\xc2\xc6\xb6\xdc\x51\xd2\x64\xaf\xdf\x96\x76\x4f\xbc\xc0\xe2\x56\xa0\x7c\xde\x7f\x48\xd3\x04\xdd\x92\xf3\x9a\x88\x7c\x81\xa6\x09\xe6\xcf\xce\x96\x32\xb4\xfe\x03\xc5\x5f\x64\xa5\x68\xfc\xc3\x0d\x2c\xaf\x28\xd6\x71\x6d\x5c\x84\xb3\xfd\xae\xdb\x1d\x01\x66\x24\x0a\x47\xbf\x86\x70\x9c\x65\x40\xd5\xd3\xf9\xb7\x98\x77\xce\xa9\xfc\xc8\xbc\x6b\x2a\xa9\x8e\x3a\x05\x83\x73\x8a\xa3\x78\x57\x6d\x9d\x3c\xb4\xf8\x1f\x94\x53\xf0\x56\x05\x14\x51\xdb\x8c\x2e\x57\x55\xdb\x8d\x64\x12\xf1\x0a\x1e\xe8\xd5\xdc\x6f\x20\xbd\x74\xc5\x66\x49\x2a\x5a\x26\xd8\x30\x4f\xe1\x71\xf2\x89\x63\x03\x76\xec\x00\xe4\xe0\x6d\x61\x3f\xfb\x4a\xf3\xc9\x54\xfd\x7d\xe1\x30\xf4\xf0\xa3\xa4\x27\x31\xac\x4b\x00\x54\x9f\x6e\xac\xf4\xb8\x1e\x4c\x35\x02\x16\x0e\x37\xc9\x08\x3f\xef\xbb\xf2\x06\xd2\xb2\xf7\x95\x90\xe5\xfb\xde\x1c\xd9\x0c\x2d\x8b\x41\x38\x37\x83\xf2\xb7\xb0\x6d\xa0\x32\xef\xda\x62\x6e\x1e\x4c\xcf\xb2\xc5\xc5\xa6\x3d\x66\x07\xc3\x82\xc6\x32\x86\xec\xbd\xed\x8a\x67\x87\xf8\xb9\x6a\x39\xea\xce\xa8\x88\x6c\x3e\x5b\xee\x3b\xe2\xf3\xeb\x01\xdb\x9b\x0a\xa2\x02\x1c\x9a\x18\x03\x4f\x93\x80\x0e\x11\x0b\x88\xb3\x5a\x6c\xdd\x3f\xd2\xda\x2d\x3f\x52\x8a\x08\xb6\x13\x15\x69\x06\x48\xac\x68\x90\x69\x54\x58\xc3\x49\x3a\x5e\x52\xd3\x2e\xb3\xbd\x51\x6c\xc8\xdd\x55\xc1\xae\x7e\x4c\x7f\x2d\x35\x49\x5f\x9d\xb2\x79\x68\x62\x06\x88\xfb\xf9\xa7\x89\xa5\xd3\x22\xd1\xc4\x40\x5f\x73\xee\x88\xec\x86\x12\xa8\xdc\xaa\xd6\x88\x29\x34\x83\xa1\xa1\xf2\xab\xa2\x77\x3f\x54\xf4\xee\x87\x9f\x9b\x6a\x75\x6d\xc7\x66\x62\x20\xb7\xe4\xba\xf9\x7e\xb7\x7f\x77\xa3\x52\xe4\x5e\x35\x59\x87\x3b\xa0\xa2\x22\xea\x63\xe7\x0d\x07\x57\x1b\x66\x36\x0f\xb3\xa8\x6d\x3b\xb3\x0d\x27\xa7\x7e\x1f\xab\x07\xa2\x7a\xe8\x31\xb3\x77\x53\xa0\xc4\xd9\x6f\xd6\xed\xbf\xc3\xcc\x0e\x47\x71\x1e\x21\x9f\xc0\xc3\x9e\x41\x09\x81\x4f\x26\xdb\x47\xe4\xc1\xf9\x66\xd7\xc4\xb1\x74\xd6\x1d\x7c\xed\xe0\xbc\x83\xaf\x3d\xa3\x3c\x23\x61\x14\x46\x89\x36\x3b\x27\x50\x83\x48\x5c\x14\x74\x3f\x23\x0a\xfb\xcf\x6b\xc0\x72\x99\x33\xf2\x0a\x4f\xa9\xb8\x00\x9e\x95\xc7\xc7\x29\xe2\xd2\xb2\x68\x51\xa0\x1c\x83\xee\x22\x16\x03\x76\x6d\x57\x4b\xe1\x31\xef\x71\xa9\x02\x65\x91\x37\xc7\x5e\xe3\xe4\x13\x40\xdc\xb0\x8c\x9c\xc2\x52\x8f\x60\x7a\x8e\xe6\xab\x94\x96\xe8\xa1\x02\x07\xb4\x97\x1a\x91\x20\xf1\xdd\x1a\xfb\x1a\xf5\x23\xbc\x12\x7c\x2f\xcc\xc7\x19\x59\x49\x05\x1d\xac\x9e\xd3\xbb\xde\x91\xf9\xa6\x3d\x56\x64\x86\xc0\xbc\x8e\x63\xe7\xf9\x76\x53\xc1\xc7\xe2\x62\xf9\xdf\xa2\x3f\xe3\xfb\xf1\x40\xc2\x73\x55\x85\xe6\xb6\x58\xbc\xd7\x10\xfc\x06\x51\x9e\xbb\xf5\x8c\x5d\x07\x69\xe0\x89\x03\xa1\xf2\x12\xb6\x59\xdf\x0c\xf3\x27\x15\xed\xe0\xd2\xd8\x4b\x47\xb2\xe3\x22\x7b\x28\x20\xb6\xc4\x0f\x6f\xa2\xe8\xc3\x27\xda\x27\xf5\x0e\x0d\x05\xd4\xf5\xde\x54\x2c\x2f\x5d\x50\x79\x17\x69\x90\x48\xce\x51\x29\x4f\x34\xe7\xfc\x63\xdd\x89\x3d\x53\x3a\xf0\x35\x63\x16\xa2\xfb\x15\x84\x77\xf9\x83\x02\xf0\x7e\x5a\xa9\xf3\xe7\x51\x06\x7f\x45\xc0\x20\x11\x0e\x8b\xfb\xa6\xc7\x7d\xdf\xac\x53\xca\x0f\x8d\x33\x73\xc1\x23\x84\xf3\x0b\x1f\x2b\x94\x4c\x5e\x58\xc6\xf1\x23\x50\x78\x43\x81\xff\xdf\xa8\xe9\xc8\xbf\xd2\x2c\x97\x2f\x04\x50\x0c\x6b\x52\x1e\x3d\xeb\x6a\x39\x0d\xd3\xc1\x30\x26\xfd\x0c\x82\xc2\xba\x7d\xa2\x9c\x82\xd8\x27\xce\xd3\xb0\xc0\xab\xaa\x0a\xbf\x25\x36\x7f\x51\x0d\x6f\x66\xb4\xe3\x2f\x77\x60\x16\x71\xe2\x4a\x5d\x77\xe7\xa1\xeb\x84\x3f\xff\x6d\xa0\x6d\xb7\xcf\xa8\xc8\xf3\x11\x8a\x82\x82\x23\xa6\x31\x81\xd8\xfd\x11\x46\x0b\x80\x56\xbb\x48\xec\x1b\x7b\xe6\x05\x4c\x75\x11\x17\xa2\x2c\x1f\x7f\x75\x8a\xd4\x62\x1c\x52\xc5\x01\xa9\xaf\x60\xd6\x62\x13\x7f\x8f\x06\x08\x8a\xc3\x4c\x97\xc1\x96\x77\x87\x90\xa0\x88\x01\xce\x00\x00\x83\xf9\xf2\xbb\x5a\x8d\x7d\x6a\x14\x91\x94\xb2\x5d\x95\xd8\x43\x1e\xac\x26\x03\x6d\x8f\x1a\x08\xf2\x48\xbb\x5b\x04\xf9\xea\x43\x9e\x1e\x5e\xc3\x64\xcc\xac\xc9\x73\x9b\xe7\x2e\x54\x76\x4b\xa6\x83\xd8\x78\x9d\xe1\xb5\xd1\x70\x18\x01\x1d\x50\x47\x72\xd0\x92\xd8\x09\x94\xbf\xf1\x58\x26\xf4\x58\xb0\xed\x5d\x55\x8e\x6b\x13\x5d\x6b\xbc\xea\x81\x57\x23\x16\x88\x41\xec\xfc\x81\x2a\x09\x7d\xa0\x84\x84\x7b\x23\xde\x10\x18\xd1\x8d\xe5\x40\xe0\xdd\xca\xd0\x38\x4d\x07\xb6\x60\x41\x1b\xad\xaf\xca\xc7\x81\xff\xd3\xbe\x25\x22\x4e\xae\x84\x48\x4f\xe8\xc2\xda\x89\x5a\x60\x50\x2f\xb3\x36\x91\x38\x8f\x8b\x6c\x5a\x6a\xe7\x7e\xa0\x65\x48\x5c\x06\x64\xd8\xe0\x99\x6e\x15\x65\x6c\xb6\x4f\xe6\x13\xe5\xc6\xc3\xcc\xc3\xce\x6e\x25\x90\x7c\x81\x00\x87\xe8\x67\x5e\x54\x6b\xd9\xec\xc4\x43\x52\xfe\x21\x93\xe3\x04\xb4\x5c\xbd\xc6\x86\xa3\x83\x9f\xaf\xdd\xaa\xd3\xc2\x26\x45\xc4\x8b\x06\xf7\x3f\xe8\x87\xa4\x17\xb2\x3d\x0b\x7a\xa9\xd9\x35\xc7\x44\x74\x07\x6d\xf6\xcd\x40\x79\xc6\x6d\x4e\x2d\x33\x2f\x35\x13\x1b\x95\x69\xc1\x6c\xb9\xf7\x22\xbe\xdb\x52\x34\xd1\xef\x05\x3e\x7c\xba\x8a\x7d\x50\x04\xde\x7c\x09\x3b\x5d\x4d\xf2\x39\x6f\xfc\x8f\xd2\x34\xde\xd8\xc7\xd8\xa2\x05\xd8\xdc\x50\x4a\xd6\x2a\xf4\x39\x57\xe3\xf6\xda\x5c\xb5\x8a\x95\xc5\x06\x74\x2a\x44\xfa\x93\xa9\xbd\xf4\xeb\x24\xca\xb2\xc6\x79\x05\x07\xe1\x18\x95\x12\x91\xfb\xa0\x32\x4a\x68\xd5\xb4\x05\xaf\xdd\x08\xc7\x2b\x49\xd0\xf4\xe6\x7b\xe0\x00\x71\x2f\x7a\x6a\x15\xbf\x81\x17\xcc\x27\x53\x64\xe5\x45\xb2\x5b\xcb\x6c\x18\x79\xb5\x1d\xf4\x5f\x3e\x51\x7d\xc4\x4f\x54\x11\x47\x86\xe5\x93\xbe\x04\x71\x83\xd6\x3b\xe4\x46\x97\x95\x34\xf1\x03\xac\x7d\x20\x22\xdc\x40\x0b\x45\xf1\x46\x17\x1c\x00\x56\xb1\xd0\x37\x29\x7e\x72\xb6\x68\x4e\x9c\x98\x1b\xd1\xec\x8b\x38\xf1\x26\x76\x00\xf1\x89\x34\x5b\xf9\x66\x41\x07\x3d\x1b\xec\x75\x68\x96\x7f\xfc\xd5\xb9\xaa\xb8\x85\x22\x2e\xbd\x47\x3f\x82\x21\xff\x16\x62\x01\x90\x5e\x67\x94\x5b\xf5\x86\xca\x0f\x87\x26\x5c\x36\x3d\xf7\xe6\x91\xa7\xfc\x0b\xba\x6d\x3e\x56\x30\xa8\x6c\x94\x17\x31\x96\x8c\x83\xf3\x9e\x4a\x7e\x70\x49\x8e\x15\x16\x33\x36\xab\x6b\x36\xcb\x9f\x50\x64\xfd\xcb\xca\xae\x62\x37\xf2\x73\x29\x5e\xfb\xe6\xc3\x4e\x54\x50\x78\xa6\x8f\x55\xdc\x71\x7b\xec\x9d\x2b\x4e\x60\xb7\x93\x3a\x38\x3d\x72\x71\xb9\xa2\x28\x53\x78\x5c\xe5\xbb\xe4\x8f\xd0\xa3\x41\xcf\xf2\xbc\x8a\x14\xd2\x4e\x87\x75\xeb\x5c\xac\xbd\xdf\x53\x45\x6a\xca\x51\x6b\x91\x8d\x3b\x33\xfe\x9d\x3d\xa7\x7c\x2d\x9f\x98\x28\xb5\x9c\x69\x9a\xce\x81\x03\xcd\xbe\x89\xbb\x73\xde\xf6\x0a\x79\x48\x45\x09\xc5\xf1\xd8\xb4\x53\x8e\xb3\x48\x3f\xa1\x46\xef\x9a\xc9\x3a\xab\x69\xb6\xac\xed\x46\x54\xea\x79\xb6\x02\x3a\x80\xc7\xbe\x85\x7a\x3c\x7e\x63\x66\xe2\x29\x7c\x33\xad\x27\x3c\xb6\xf4\x1f\xfd\x47\x68\xa2\x20\x01\xfa\x14\xd7\x85\xdf\xbf\xad\xb8\xc2\x55\x2e\xfc\xc0\xa0\xf2\x8f\x0c\xf4\x0c\x5e\x1d\x9f\xa8\x81\x91\x76\xd6\xf2\xdc\x42\xe8\x9f\x15\x9b\x83\x8a\x7c\xb3\xb3\x91\x1a\xb5\xf3\x22\x2a\xc4\x3a\xde\x3d\x16\x07\x22\x7a\xa0\x62\xba\xf3\xe3\x2f\x4c\xab\x91\x97\xb3\x84\xde\x2c\x1a\xe5\x88\x64\xf8\x78\x2a\x96\x90\xd4\xf2\x98\xcd\xd2\x63\xb3\xca\x68\x11\xb2\x05\x15\x7b\x78\xfc\xfe\x0c\x11\x80\x04\x2e\x52\x63\x7c\xd4\xb7\xa6\xf3\x8d\x91\xc9\x0a\xb6\x54\x7b\x95\x19\x31\x5c\xac\xc0\xb7\x80\x50\x01\xc8\xc2\xe3\xad\x67\xb5\x0d\x92\x89\x7a\xfd\xe2\x31\x5a\xba\x1d\x00\xb3\x9c\xd2\x4e\x76\xd4\xf5\xa8\xe1\x83\x21\x3d\xaa\x72\x46\x72\x88\x37\xf6\xde\xbe\xff\x92\xc2\x32\x21\x52\xd2\x4e\x01\xae\xe7\x23\x35\x1b\xba\x99\xcd\xfb\xc0\xb5\x3a\x5b\xd5\x72\x72\x89\xc5\x8f\x5f\x27\xbf\x5f\xb3\xbd\xbd\x66\x57\x6d\x9c\xad\x61\x4f\xa8\xe3\xd7\xd5\xc0\x30\x57\xa2\xac\x17\x25\x7f\x85\xc4\x5b\xcd\x67\xa2\x24\x8f\x3a\x36\x83\x5c\xb6\x18\xc5\x36\xbc\x69\x6c\xad\xf2\xd6\x30\x5f\x0b\xfb\x69\x9c\xf6\xd6\x1a\xe5\x83\x70\xab\xb2\xab\x19\x6e\x06\x3a\x06\xe9\xa6\xd9\x80\x55\xc0\xc4\xeb\xb4\x1c\x3e\x7c\x3c\xf9\x82\x62\x14\xc6\xb1\x69\xa7\x19\x20\x3d\xca\xd6\x72\x43\xb5\x62\x6f\xd2\x2d\x01\xde\xfb\x99\xa2\x77\x87\xb1\x89\x06\xe4\xb1\xee\x42\x8e\x85\xc3\x3c\x6b\x4e\x20\xa9\x10\x25\xad\xa7\x95\xc0\x53\x56\xa4\xc9\xac\xb7\x8c\xb8\xa5\xe8\x6d\xd7\x95\x19\xf7\x75\xec\xfb\xfc\x47\xae\x51\x4a\x70\xa5\x8c\xfd\x40\x30\xc8\x3f\x50\xcf\xe1\x56\x25\xd0\x7d\x56\xf5\x15\xd3\x51\x3b\xb6\x39\xa1\x22\x1d\x9e\x78\x51\x6c\x38\xee\x55\xc4\xf3\x14\xb2\xf1\xdb\x9e\xfa\xdd\x8d\x5e\xe7\xb6\x2e\xda\xce\xff\x9b\x44\xeb\xaa\x32\x55\x6b\x83\xdc\xb5\x59\x11\xc5\x08\x6b\xd9\xff\x21\xa8\x7a\x41\x38\x1b\x5c\x5b\xe4\x7b\xcb\x6d\x57\x9a\x83\xe5\x6c\x10\xe0\xa3\xb2\x27\x5a\xd7\x46\x94\x17\x02\x25\x4d\x76\x1c\x17\xcf\xd5\x40\x95\xef\x9f\x51\x88\x3f\x16\x74\xc6\x0e\xb4\xb3\xe5\x7d\xa9\x67\x68\x98\x08\xca\xca\xb7\x8b\x8b\xc8\x66\x89\x05\x57\x1e\x31\xef\xef\xa9\x76\xdd\xba\xee\xa1\x9d\x57\x66\x80\x83\x28\xcf\x2c\xeb\xd8\xd3\xdd\x8b\x91\x6d\xf9\x3d\x7c\xac\xca\x08\xfd\x74\xd5\xae\xd8\xec\x29\x8f\xcf\xf9\xfe\x36\x71\xb5\x83\xf3\x42\xfe\xa0\x8d\x0e\x63\xe3\x1e\x9c\x8f\xf9\x8f\xb4\xd2\xcd\x09\x84\x3d\x58\x29\xf6\xb4\x54\x6f\xfd\x8d\xc0\xfb\xb9\x9f\xc7\x50\xc5\xbd\xcc\x4e\x3c\xc4\xf1\x1c\x96\x3a\x71\x50\xf3\xa0\xc4\x6b\x78\x17\xc8\x31\x6f\xe0\xfd\xf1\x46\x52\xa4\xff\x5e\x39\x41\x39\x8a\x41\x5e\x2a\xdc\x54\x7a\x67\x02\xc2\x2d\x7f\x06\xc8\x17\x36\xfc\x15\xf1\xea\x32\x50\xc0\x86\xfc\x51\xa0\x10\x61\x3b\x5b\x68\x07\x23\x9e\x38\xa3\xeb\xfb\x7f\x16\xa8\x0e\xd9\xa3\xf1\xce\x2f\xf1\x9e\xfc\x53\xa5\xed\x7c\x53\xd7\xb3\xcf\xe3\x89\xe1\xb9\xfc\x3a\xd6\x65\xa0\x35\x9e\x9c\x78\x31\xad\x0b\x5c\x0d\xc3\x7e\x79\x23\x50\x86\x84\x13\x3c\x32\x0c\x39\x68\x07\x23\x3d\x61\xe1\x78\x6c\xfd\x6f\x12\x25\xd3\xb5\x36\x97\x9c\x6b\x27\xa4\x33\xc5\x6d\xd3\xab\x51\xbc\x88\xc0\x0a\x55\x9f\x7b\xca\xf6\xff\x32\x15\xfc\x90\x4d\xbd\x4d\x65\x32\xc1\x05\xb8\xa2\xfa\x9a\x94\x70\xc4\xbb\x9c\x9e\x1d\x9f\x28\x5c\x60\x3f\xcd\x8b\x7c\xb6\xf1\xd5\x05\x87\x05\xf4\x45\x98\x9b\xaa\xbe\x75\x53\x73\x7b\xc6\x35\x56\x0b\xcd\x61\x96\x12\x66\x03\x3b\x46\x8d\xe0\xda\xc5\xa9\x5d\xe6\xe8\xd1\x66\xde\x37\x43\xf9\x0c\x03\x79\x34\x5c\x66\x1a\x79\x71\xf4\x68\xb3\x18\x9a\x86\x72\xaf\x59\xa7\x7c\x52\x9c\xe4\xeb\xea\x7e\xc6\xd9\x38\x3a\x77\xef\xf2\x27\xa4\xb8\x3d\xad\x98\xd5\x1c\x25\x1e\xd5\xd0\x70\x26\x77\xe0\x53\xf3\xf1\xd4\x95\x1d\xfe\x5a\xb3\xc7\xd6\x2e\x4e\x5f\xba\xbc\x4a\x69\xf2\xd5\x3c\xb3\x3c\x1e\xf5\x7a\x51\xde\x6f\x54\xe4\xe5\xcb\x1f\x11\xeb\x2b\xbf\x9d\x9b\x41\x9a\xf4\x1e\xc7\x18\xc4\xde\x78\xaf\xa2\x0b\x40\x63\x58\x10\x99\x0a\xaf\x7a\x57\x3b\xde\xb2\x36\x25\x0b\x6a\x63\xa6\x21\xd8\xbe\x8d\x01\xcd\x94\x9b\xc0\x2f\xce\xb3\x93\x6d\xea\xcc\x5f\x5d\x68\x1e\x99\x7f\xa5\xe1\x4d\x56\x37\x14\x91\x6e\xc3\xfb\x27\xa6\x2b\x36\xdb\xe5\xf1\x76\xdc\x57\x64\x9f\xf9\xc0\x07\x33\x80\x07\xe3\xf8\xac\xd6\x80\x42\x13\x5d\xfc\x4e\x74\x7c\x1a\xa6\x39\xc2\x3a\xac\x12\x27\x51\x8e\x66\x98\x2d\xa6\x7f\x45\x9c\x42\xa6\xcd\xf3\x6a\x09\x1f\xb4\x6d\x16\x9b\xa4\xd3\xf8\x5c\x87\x9c\xe9\x9a\xf3\x42\xd3\x66\x0c\x1c\x17\xb4\xba\xe2\x29\xfc\x40\x11\x22\x86\xd1\xd0\xe6\x33\x0d\xb7\x11\xcd\xb6\x68\xc2\x8b\x81\xa9\xcf\x51\x1e\x29\x30\x49\x67\x54\x84\xc4\xb2\x5c\x72\xfa\x2e\xf4\x52\x70\x2f\xc7\x95\x08\xd9\x0f\x34\xfa\xea\xb8\xd3\x27\xa4\xaa\xd8\x28\xb3\x9a\x94\x17\x28\x97\xa3\xcb\x0a\x9c\x97\xd8\xbc\x88\x2d\xa6\x05\xba\xdf\x2c\xc6\xc0\x27\x53\xb3\x95\x94\xa5\xcb\xe5\xa2\x42\xa2\x1c\xab\xec\xe2\xf2\x94\x17\xeb\x81\x03\x04\xe5\xca\x8b\x2c\x22\xd7\x50\x20\xc8\x64\x2c\xfa\xc6\xcc\xb9\xca\xeb\x8d\xcd\xb1\x86\x2a\x39\xab\x61\x7e\x59\x9b\x3d\xa6\xa3\x04\xe2\x69\xd8\x83\x51\xe5\xe5\x63\xd5\x59\x61\xe0\x0d\x21\x63\x11\x15\xbd\xa9\xe0\x10\xdf\x0b\x14\x31\x16\xfe\xdb\xcc\x96\xa2\x3d\x15\x6c\x92\x2d\x4a\x38\x1d\x58\x4e\x01\x93\x31\x9f\x04\x1c\xec\xc5\x58\xf3\x51\x58\xfe\x68\x77\x84\xb0\x93\x3d\x5e\x2b\x6e\xc4\x02\xc6\x93\xbb\x45\x6d\xf1\xa2\xaa\x33\x5e\xac\x5b\xcd\x46\x49\x27\xea\xcc\xf8\x29\xb3\x8e\x37\x00\x30\xff\x59\x6c\xc5\xc2\x35\xd9\x1e\x7d\x49\x62\x64\xda\x44\x06\x70\x58\x69\xbf\x37\x6c\xa8\x2e\x7a\x9c\xe6\xc5\x9c\x96\xad\xc0\xe2\x23\xc4\x24\x5f\x86\x81\xf1\x3f\x96\x9b\xc7\x5b\xca\x30\x69\x66\x8a\x6e\x7a\xf4\x68\x33\xb1\xa3\x22\xe3\x70\x1c\x73\xe0\x42\xe0\xf5\x06\x2e\x8c\xbf\xa8\xb0\xfc\xf9\x30\x4d\xf2\xa8\x1d\x47\x71\xb1\x46\xad\x1e\x61\x66\x36\x9c\x94\xcf\xa6\x8a\xa6\x0b\x88\x54\x7a\xcc\x02\xfe\x50\x44\x16\x6a\xe8\x82\x59\x3a\xea\xf5\xe9\x9b\x5d\x61\xc3\xab\x7a\x6b\xf1\x6c\xd3\x89\x42\xc3\xdc\x55\x26\xb3\x2b\x79\x9a\x0f\x15\x59\x61\x94\x24\x46\x64\xfd\x10\xac\x5e\x57\xb5\x8b\xeb\x6e\x81\x24\x80\x3c\x35\xab\x31\xc8\xee\xe8\x58\xf5\x83\x40\x23\xe7\xa7\x87\xc1\x21\xe5\xb6\x24\x25\xb8\x32\x54\x92\x0a\x9c\xd4\xa4\x7b\xa3\x82\xcd\x24\x11\x60\x22\xd1\x76\xb5\x9a\x45\x4f\x1f\xf6\x13\x26\x5f\xcb\x0b\x3b\xc8\xf7\xe2\x75\x63\x82\xee\x02\x3a\x03\x61\xcd\x63\x2d\x8a\xdd\xd0\xa1\xff\x88\xbe\xd1\x35\x16\x7d\xe3\x83\xb9\x08\x4e\xb0\xee\x88\x28\xed\x40\xe9\x11\xe3\xad\x01\xae\x25\xd6\xf1\x7f\x86\x2d\x42\x74\x23\xcb\x87\x26\xa1\xa7\x6e\xbd\xac\x1a\x21\x40\x20\x30\x7c\xa3\x22\x22\x4f\x3f\x2a\x24\x45\x0f\x8e\xcf\x6d\x91\xef\x56\xae\xbf\x27\x83\x8a\x20\x8b\xb3\xb1\x3c\x1d\x28\x5f\xf2\xbb\x58\x7f\xf9\x24\xa8\xba\x15\xb9\x66\xe3\xf5\xed\x90\xbc\x85\xc3\xcd\xbf\xdf\xa8\x22\x1a\xca\x4f\x4a\x65\xf5\xc5\xea\x5f\x2f\x1d\x5c\x6a\x1e\x38\x70\x90\xd6\x6c\xc9\x5e\x95\x94\xf7\xe6\x54\x89\x5b\x66\x71\x98\x76\x40\xf4\x46\xe4\xca\xf2\xd2\x7c\x52\xab\xbe\x6b\xf2\xdc\x0e\xda\xf1\xda\xac\x0f\xec\xbe\x35\xf6\x8c\x01\xde\x7d\x59\xc6\xa4\xc2\x7e\xfe\x70\xea\x2a\xca\xed\xa0\x93\x0e\xa2\x84\x34\xf7\x8f\xcc\x3b\x2e\x0e\x5d\xbb\xb0\x74\x3c\x73\x2f\x09\xd7\x1e\xa7\x7f\xc2\x0a\x2d\xb2\xbe\x68\xb9\xa3\xb8\x21\xff\xa2\xdc\xed\x7e\x38\xf6\x5c\xe5\x3d\x13\x95\x5a\x3e\x89\xf2\x1c\x3e\xfe\x28\xf0\xa3\xeb\xba\xa7\x28\xfe\xe3\xbf\xd3\xfa\x82\xef\xca\x9a\xac\x20\xbd\x77\x8f\x61\x74\x62\x76\xe5\xef\x89\x98\x9d\x24\xb8\x59\x14\x52\x79\xdf\x15\x04\x9f\x9c\x28\x42\xc3\x8b\x2d\x4f\xb3\xdb\x44\x30\x2f\x84\x6a\x55\x81\x89\x32\xc4\xb6\xaf\x78\x7f\x0c\x17\xdb\x4d\x5b\x3c\x1e\x99\x5f\x6c\x0e\x4d\x94\xc8\xa6\xc1\x2d\x48\x1a\xa8\xd2\x8e\xac\xc9\xa7\xfb\x26\xe9\x38\xd0\xbc\x54\x6f\xe9\x96\xa4\xac\x5b\x07\x55\xe9\xa7\x71\xcc\xea\x4e\xaa\xf4\xbd\xe4\x4a\x35\x35\x40\xb1\xb6\x69\x63\xbd\x92\x1d\x4c\x11\xab\xbf\xab\x82\x93\x2b\x75\x90\xa0\xcc\x0e\x4c\xb6\x6c\xda\x15\x63\x91\xf3\xca\x58\x64\xba\x95\x53\xc6\x5b\xd1\x60\x60\x33\x67\x03\x24\x0e\x60\x0d\xe7\x5a\xfb\x89\x2b\x48\x0c\xa2\x5e\xbf\x58\x9b\xf3\x2e\x04\xf7\x75\x5a\x77\x41\x59\x3c\x20\x77\x45\x94\xf7\xee\xb8\x52\x2d\xa8\x31\x57\x32\x71\x9c\xae\xce\x78\x66\xc6\x8e\x96\xb2\x14\x84\x15\x09\x56\xf6\x8f\x5d\x23\x30\x8a\xe3\x97\x1b\x5c\x0d\x69\xec\x5f\xdc\xba\x52\xc3\xe5\x7a\xa5\xd9\xb7\x66\x25\xb2\xd9\x0c\xa5\x88\xc8\x90\x21\x5a\x8c\x91\xff\xad\xb1\x5a\x64\xef\xa9\xd0\xb5\x63\x7b\x36\x21\xc8\x0c\x0a\x91\xda\x9d\x1c\x09\xe5\xdd\xc0\xef\x4c\xd3\x34\x8b\x23\xf3\xcd\xdc\x1a\xa1\xd3\xa1\x35\xc0\xab\x1e\x9f\xd4\xea\x46\x76\xd2\xd5\x64\xd5\x64\x1d\xc2\x19\x62\xad\x64\x59\x67\x64\xae\x97\x95\xb3\xc5\x19\x55\x6a\x22\x1f\x75\xc2\x13\x1d\x9c\xf7\x45\x70\x5f\x10\x57\x64\x86\x61\x4c\x5c\x81\x86\x6f\x43\xf0\xdc\xe4\x13\x25\x2c\xd4\xb3\x49\x51\xb5\x98\xf5\x12\xd9\xff\xf0\x62\xa0\x0a\xe0\xab\x06\x4b\xb1\x2a\x22\xc8\xc6\xf1\x91\xea\x9e\xd8\xa4\x9b\x66\xa1\xf0\x67\xeb\x63\x31\xd9\xdf\xc9\x78\x23\x2a\x46\x00\xe6\xd3\x07\x10\x14\x9d\x46\x6c\xc8\x27\x75\x76\xa5\xf2\x14\x67\x3d\xf6\x08\x90\x19\x2c\x64\xb0\x4a\x96\xf2\xb9\xce\x85\x94\x9a\x7c\x3e\xb4\x61\xd4\x8d\xc2\xdd\xb4\xb2\xb0\x48\xb2\x72\xee\x3a\x4d\x97\x8d\x18\xe6\x36\x76\x30\x57\x21\x75\x6b\x3d\x43\xb0\x71\x72\x0d\x4f\x05\x5b\xdb\x9f\xbb\xe2\x62\x7b\xd4\x8b\x6d\x0e\xca\xb3\x17\xae\x99\x77\xbd\x6a\x0f\xf5\x79\x6b\x0a\xde\x78\xe0\x40\xd3\xc6\x36\x2c\x32\xa8\x30\x3a\x0f\xd8\x93\xca\x9a\xec\x64\x0d\xe2\xf7\x50\x79\x90\x45\x62\x87\x06\x20\x3b\x84\x8d\xc5\xe0\x52\x43\xea\xa6\x46\xf7\x81\x03\xcd\x30\x1d\x0d\xb9\xbe\x28\xc6\x0b\x0d\x6f\xc2\x50\x0f\x56\xc8\x46\xe1\xf2\x8c\x92\x74\x64\xf0\x26\x0a\x8f\x40\x75\x02\x1e\xf1\x56\x4d\xab\xf2\x50\xd3\xd5\xf5\x64\xa5\x62\x63\x5d\x5c\xab\xb8\xec\xd6\xd9\x96\x64\x2f\x67\x2f\x37\x3c\x01\xe2\x9b\x63\xa5\xbb\xfd\x4d\x05\xe6\xcb\xac\xc9\x32\x93\xf4\x6c\xae\x70\x0c\x1b\xda\xb4\xca\xa7\xde\xed\x6c\x14\x22\x0a\x56\x12\xdc\x2e\xae\x9a\x7a\x00\xe5\x65\x0c\xac\x81\x66\x8d\x0b\xa4\xe8\x91\x4b\x50\x35\xbd\x34\xbf\xda\x1c\x25\x71\xb4\x6c\x79\x12\x62\xe4\xdd\xa2\xe1\xc1\xc7\x53\x6c\x34\x22\x40\x52\x2d\xbe\x20\xee\xf9\x81\x03\x02\x27\xa3\x31\x21\xd0\xb2\x67\xdd\x82\x9e\x17\x66\xd9\x26\x31\xbb\x99\x49\xc2\xe9\x1b\x5d\x24\xc8\xb9\x75\x65\xbb\x08\xdc\xbe\x7d\xcd\x85\xc3\x4f\x78\x27\xc4\x1f\x61\x67\xc3\x86\xb1\xa9\x0d\xc8\xbf\x49\x75\x47\x89\x80\x15\x1f\xe7\x9b\xc8\xeb\x9c\xdd\xa2\x1b\x7d\xec\x85\x86\xaa\x3e\xfb\xda\x8b\x2c\x3c\x05\xe3\xae\x20\xeb\x48\x39\x3f\xae\x50\xc6\x9d\x32\x40\xb4\x62\x93\x0a\x8a\xfc\x02\xde\x92\x38\x43\xd5\xc9\xa0\x66\x26\x41\x63\x0e\x63\x11\x39\x18\x1f\x7b\x84\xfa\x28\x0b\xfb\x26\xb7\xbb\x7c\xe1\x18\x8a\x69\x00\x05\xbe\xd0\x52\x3e\xef\x78\x9a\xac\xcd\x3e\xae\xd8\x6a\x97\xcf\x8f\xc1\xb2\x15\xe0\x93\xed\x22\x09\xaa\xf0\xd9\xf8\xa4\x0e\x38\xd7\x36\x79\xee\x32\x7f\xd7\xbd\x5b\xf4\xdd\x3b\x9f\x78\x84\x23\x1b\xc7\x86\x51\xb1\x62\xd0\xea\x31\x90\xb7\x02\xdf\xec\x99\x16\x72\xc1\xd2\xc1\x5c\x1c\x94\x65\xb9\xcf\xcf\x27\x15\xe0\x57\xd2\x8d\x3a\x36\x09\x2d\x32\x28\xd9\x8a\xbc\xd8\xea\x7a\xe5\x9e\xbb\x36\x7b\x4e\xd9\x97\xbc\x4b\x7f\xe8\x12\x98\xaf\xfb\x8d\x0d\x85\x28\xce\x3e\xc6\x0a\x81\xbe\x84\x12\x31\x56\xcb\x7b\x98\xb6\xd8\x37\xaf\x07\x53\xba\x42\xd8\xee\xee\x68\xda\xe8\x06\xa2\x01\xec\xbb\xff\x0b\x19\x93\x48\x8e\x83\x38\x1a\xe1\xcc\x46\x65\xa1\xac\xa8\xdf\x39\x2f\xb4\xdb\x64\xd7\x22\xbe\xea\xe5\x6b\xe6\x01\xac\x84\x0f\x5e\x2b\x83\xae\xb5\xdd\x15\xea\x9c\xf7\xb8\x46\x18\xcb\x7c\xab\x40\xed\x23\xcc\xb6\x91\x0c\x4b\x35\x58\xff\x38\x50\xf2\x11\x57\xc6\x7f\x5d\xad\x6b\x9c\xe3\x3b\x7f\x4f\xcf\x2e\x62\x16\x37\x9f\x4c\x63\x98\x0e\x2e\x7d\xa9\x99\xa5\xe1\x32\x3a\x31\x4a\xc2\x4c\x9e\xed\x6f\x8f\x7d\x1c\x7d\x51\x55\x36\xd2\x55\x0b\x1c\x2f\xd6\x84\x7b\x2a\xa0\xbc\xa7\x74\x3b\x57\x5f\x36\x2f\x57\x8d\x43\x1b\xce\x58\xe7\xb2\x46\xe6\xdb\xa4\x5c\xfa\xc3\xbe\xc2\x1c\x02\x5d\xcc\xc7\x93\xa7\x55\xbb\x2e\x1e\x75\x6c\x43\xe9\x45\xb2\x1d\xa9\xcc\xbb\x3a\x03\x26\x52\xfd\x47\xb3\x4d\x5a\xa4\x34\x1c\x50\xd5\x03\xb6\x49\x1a\x92\xca\x15\xd3\x64\x9d\x7e\x1a\x43\x15\xb4\x1c\x7d\x4e\xf7\xcc\x1f\xab\xe8\xab\x0d\xd9\x45\x54\xf7\x44\x13\xb7\xfc\x49\xd1\xca\x75\x02\x4d\x26\xea\xcc\xd2\x6b\xc2\xa8\x9f\x6d\x79\x68\xcd\x07\x58\x5e\x05\xba\xee\x7b\xcc\xd7\xbc\x27\x53\x91\x26\x96\x8b\x12\xc8\x36\x30\x6a\x9d\xc1\x8b\xab\x25\xfd\xea\x54\x54\xb1\x70\xb8\xd9\x1b\x99\xcc\x24\x85\xb5\x1d\x7a\x1e\x98\x1e\xb3\x28\x23\xe0\x63\x37\x15\x81\xe2\xda\x54\x75\x7f\xff\x62\x73\x58\x8e\xee\x70\x54\x38\xac\x0c\xa6\x35\xc0\xb4\x7c\xec\xfd\x10\x6d\x1c\xd9\x15\x51\x00\x96\x24\xcf\x67\xa5\xa7\x94\x45\x55\x98\x45\x03\x3b\xa3\xfc\x99\x78\x4d\xc7\xa6\xf0\x48\x59\x35\xec\x6a\x3d\xad\xe8\x67\x6b\x82\x57\x55\xfd\x09\x87\xb7\xaf\xcb\xa6\xa2\x24\x2a\x22\xbf\x8d\xb2\x47\x11\x7d\xbf\xf8\x15\xd5\xc9\x24\x95\x29\x12\xf7\x85\xb0\x2e\x40\x47\x8d\x8f\x55\x21\x6d\xc5\xc4\x23\xdb\x99\x6b\xec\x5b\x70\x04\x28\x5f\xc2\x82\x52\x2e\xea\x54\xa0\x18\x62\xb6\xdd\x57\x3e\xcb\xd3\xee\x15\x65\xc8\x40\x4d\x95\x19\xbf\x78\xa0\xd9\x8a\x37\x75\x8b\xae\x1e\x9d\xca\x0b\x75\x85\xcf\x30\x1e\xb5\xb9\xf6\x8c\xb1\xbe\xa5\x1a\xf1\x5b\xaa\xb2\x4d\xed\x7b\xfe\x4b\x5c\x31\xae\x8c\x8f\x55\x50\x65\x8a\x22\x23\xdc\x98\xa5\x46\x05\xf6\xc1\x8f\xb5\xd5\x32\x64\x71\xb8\x06\x82\xa5\x4e\x54\xb5\x95\x10\xc1\x69\xda\x2d\x31\x83\xbf\x57\xd7\xe8\xe9\x9a\xbc\x68\x9b\x98\x3d\xda\x34\x86\x4a\x4a\x8d\xaa\x0b\x10\x15\x61\x1f\xcb\xa0\x43\x78\x94\x23\x4a\xd2\xf4\xa7\x95\xa8\x7a\x46\x69\x9c\xeb\xc4\xf0\x96\xc3\x27\x6a\x60\x9a\x4e\x3a\x2c\x40\x9a\x70\xd9\x7e\xb9\x80\xc8\x0f\xd4\x10\x81\xba\x26\xcc\xa3\x81\x34\xea\xb1\x0b\x6c\xa8\x16\xea\x86\x9b\x21\x61\xdf\x0c\xda\x36\xcb\x67\x2b\x6e\xcc\x58\xd5\x44\x0e\x61\x1b\x0f\x47\xd2\x9a\x3f\x73\xde\xc1\x2c\x87\x02\xd0\x05\x8b\x64\x2b\xc8\x1e\x52\x46\xf4\x9e\x2f\xd4\xc8\xb6\xac\x44\x69\x6c\x8b\xc2\x34\x94\x55\xed\xf9\xb1\xca\xc6\xce\xd7\x44\xdf\xcd\xdc\x26\x39\x8a\x57\x22\x19\xda\xf0\xf2\xa1\xb5\xc8\x93\xcc\x16\x51\x66\x9d\xc9\x9a\xec\x53\x9e\x38\x7a\x46\x3b\x92\xdc\xa9\x81\x39\x1f\x6a\x76\x6c\x5e\x64\xe9\x9a\xa4\x38\x88\x7b\x61\x1d\x25\xc5\x36\xc5\x49\xbc\xa8\x52\xff\x9e\x4d\x7b\x99\x19\xf6\xb9\x07\x25\xc6\xf7\x3e\xf3\xfd\xcc\x47\x81\x66\x30\xb4\x59\xb5\x2c\x74\x63\xec\x51\x07\x37\x02\x5f\x1a\x33\x9d\x41\x94\x44\x44\x17\x4b\x59\x84\x45\xf1\x74\xdd\x12\xa0\xe8\x4b\xc3\xcc\xf4\x46\x2c\x8e\xe0\x24\x85\x5c\x41\x6c\xdd\x6d\x15\x69\x6c\x7b\x94\xf8\x3b\xf0\xaa\x36\x3e\x7e\x5a\x05\x64\x65\xca\x36\x53\xae\x37\xe8\x5d\xdc\xd2\xba\xda\xef\x57\x26\x80\x42\xcd\x51\x22\x6e\x12\x86\xbf\x40\x0d\x00\x69\x29\xa2\xc7\x06\x9a\x11\x28\xb8\xdd\x1c\x7b\x1e\x7e\x3e\xcc\xac\xe9\xe4\x7d\x6b\x8b\x7c\xb7\x2f\x68\xfc\xb1\xf2\xaf\xbd\x3b\xd6\xe2\x22\x34\x75\x80\xeb\x79\x5b\x09\xba\xad\x8f\x3d\xfe\x6f\x27\x50\xff\xa2\xe3\xfa\x05\xdf\xa8\x22\xce\x7b\x18\x99\xcc\xc5\x37\xc2\xb6\x2e\xbf\x49\xc8\xd6\x9f\x47\x90\x22\x99\xf7\xbe\x65\xe6\x91\x94\x03\x2a\x7d\x52\x8f\x60\x6f\x9b\xdc\xee\x56\x96\xeb\xac\x08\x8b\x3d\x78\xb6\xa5\xeb\xca\x98\xa0\xce\x22\xff\xab\x0b\xbe\x4a\x70\x64\xde\x91\x2a\x2b\x79\x50\x4d\x29\x89\xd7\x20\xa5\x52\x57\x95\x37\x7f\x4a\x79\x5d\x65\x79\xf1\x34\x7d\x1f\x5a\xce\x9c\x3e\x61\xc9\xaf\xd0\x6d\x6f\x28\x2b\x5d\x52\x63\x5c\xe0\x85\xe4\x7f\x0f\x94\xef\x15\x8b\xd2\x68\x91\x78\xee\x82\x91\xa2\xa7\xb0\xaf\xb5\xbd\xf6\xf5\xb1\x27\x3a\xa0\xf8\x88\x19\xfc\x90\xe2\x60\x36\x5c\x09\x94\x2b\x0d\xeb\xb5\x49\x2b\x7d\xfb\x03\xf8\xc5\xaf\x94\x39\x47\x87\x0b\xa9\x98\xb0\xa7\x03\x35\x7b\x6b\x8b\x40\xe5\x36\xd8\x11\x38\x34\x87\x4a\x78\xd0\x12\x37\xd5\x54\x35\xd6\x4c\xb2\x6c\xed\x8c\x8a\xa9\xa1\xc7\x8f\xae\xc2\x19\xd5\xb9\xdc\xf0\xe8\xb0\xcc\x84\xcb\xb2\xce\xe8\x16\x27\xc8\x5a\xff\x52\x4f\xef\x3b\x15\x04\x68\xc7\xbe\xde\xf0\x5e\x68\x27\x54\x50\x76\x22\xa8\x91\x8a\x28\x22\x40\xb4\x81\xe6\xd9\xa9\x4c\x27\x77\x4e\x9e\xdf\xee\x76\x66\x62\x11\xc3\x16\xc0\x9a\xd2\x37\xf8\xc0\x65\xc8\x7d\x93\xc5\x76\xd0\x00\xce\xa7\x22\x3a\xc6\x27\x35\x3a\xa3\xaf\x36\x07\x51\xd2\x71\xa6\xee\x58\x31\xae\x2a\x0c\xe2\x55\xed\xbe\xd5\x4e\x47\xc5\x8b\xe5\xb0\xc1\x63\x7f\x48\x1d\x34\xb7\x3f\x96\x03\x4d\x94\x34\x70\x11\xd8\xf9\x7f\x17\x25\x63\x3e\x51\x72\x6e\x1f\x61\x3c\x4b\xf9\xb6\x5c\x19\x70\xdc\x20\xa6\x0e\x36\xb5\x93\x81\x17\x0d\xd9\x72\x2e\x1e\x4a\x3c\xf2\x4e\x05\x8f\xae\xa0\x90\x77\xc0\x0e\x63\xf2\xe2\xa4\x22\x05\x49\x9b\xb9\x58\xab\x28\x4d\xc4\x5f\xc7\xb0\x42\xb9\xed\x1d\x25\x46\xf6\x7b\x81\xca\x93\x37\xeb\xaa\xfd\xd6\xe4\x05\x40\x16\x02\x59\x6a\x28\xcd\x66\x9f\x08\x71\x99\x12\x4f\x6a\xb6\xa5\x34\x47\xd2\xd5\xa4\x18\x65\xc9\xac\x5f\x4e\x3e\xc2\xd4\xc0\x48\xbc\x12\x94\x8f\x1b\xd3\xe4\xb3\xf1\x36\x94\x02\xbe\xe2\x1b\x23\x93\x14\x51\x17\x8a\x01\xda\x6e\xf1\xaf\xb8\xee\xff\xef\x1d\xcf\xe9\x18\x73\xa9\x19\x15\x16\x06\x44\x02\x08\xa1\xeb\x92\xc8\x45\xeb\x61\x14\x7d\xec\xc5\xac\xbe\xc7\x4e\x79\xb8\x0f\xb1\xcd\xfb\x82\x92\x51\x4c\x46\x5d\x13\xc2\xa7\x70\xaf\xb7\x01\x38\x4e\x63\xb3\xf2\x61\xa7\x67\x54\xbe\x53\x47\xcb\x29\xc7\x84\xdb\x73\xbc\xea\x51\xe0\x59\x95\xf7\x02\x05\x04\xd0\xef\x7a\x7d\xac\x5a\x0c\xcc\xff\x15\x61\xc9\xa7\x2a\x66\xfe\xcb\x8f\x37\x9c\x37\xd0\xef\x6a\xa5\x3c\xc0\xd6\x71\xbc\x93\x44\x68\xb1\xc1\xc2\x18\x0f\x04\xe6\x8b\x28\x7e\xe0\x1f\x4e\xe2\xf2\xf9\x13\x13\x45\x5f\xf8\x04\x97\xc9\x7f\xa6\x0c\x72\xcc\x08\x52\x37\x0d\xdf\xc2\xb9\x40\xa4\x0b\x31\x53\xf1\xbd\xc4\xe5\xb5\xb4\xe1\x33\x30\x46\x64\xf0\x89\xd2\x8f\x4c\xd2\xac\xe8\x97\x6b\x6d\x43\x11\x39\x00\xab\x17\x77\xa6\x1a\x91\xb6\xae\x89\x12\x9f\x1a\x32\xb5\x47\x81\x63\xb7\x82\x17\x15\x8d\xa2\xdc\xdc\xf3\x6f\x8c\x6c\x8c\x22\x84\xc8\x97\x6a\x5f\xb2\x86\x13\x81\xbf\x3a\xa5\x63\x77\x70\xbe\xd9\xcd\xac\xad\xec\x9f\x63\xb5\x7f\xa2\x68\xc1\xb7\x6d\x5e\x86\x8b\xa8\xf4\x07\xb6\x05\x56\x87\xb4\xb6\xaf\x50\xbf\xae\xd2\x5e\x88\x01\x06\xe6\x08\xfe\xe8\x5c\x8d\x20\xc1\x2b\xa4\x1b\x10\x66\xde\xad\x00\x23\xeb\x3d\x8c\x19\x3e\x51\xf1\x68\x1e\x66\x66\xd0\x8e\x39\x6e\x97\x32\xe0\x55\xe5\x8c\xbe\xa1\xd4\xd3\x7f\xa8\x4a\x26\x85\x4d\x4c\x18\xa5\x23\xac\xd3\xe8\xa3\x03\x93\xcb\xc7\x53\x97\x87\xc8\x59\xf4\x85\x15\x4d\xe4\xc4\xd8\x77\x6c\xae\x04\xca\x13\x7a\xda\x1c\xbf\x9c\xe1\xbd\x28\xa6\x76\x94\x62\x77\x40\x93\x93\x8f\xa7\xf6\xde\x83\x65\x9e\x10\x0a\xaa\x0a\x4b\x01\x00\xfb\x7c\xac\xc0\xd8\xa3\x2c\xb2\x19\xf2\x2c\x67\xc1\xea\x71\xc6\x35\x92\xe8\xcd\x81\xc9\x96\x2d\xab\x71\x21\xc6\x01\x10\x9b\x8f\x7d\xbd\x38\xb3\x36\x64\xff\xd5\xda\x60\x5a\x34\x44\xd6\x4c\x5e\x64\xaf\xdb\x41\xbe\xcc\x36\xe2\xce\x0f\x7d\xbf\xcb\x36\x15\x1b\x71\x60\x2c\xc4\x17\xa4\xa4\xac\x74\x02\x2f\x62\xd9\x41\xfd\x07\xc6\xb2\x7c\x5c\x63\xf9\xb6\xd0\x0c\x4d\xd6\x66\xaa\x16\x57\x1d\x55\x75\xe1\x62\xa5\x2f\x1e\xdb\xce\x2e\x3f\x7a\x41\x44\xc1\xe0\xd9\xd3\x52\xb4\x32\xe4\xed\x48\x8a\x8e\x8f\x55\x8f\x8a\xef\x1d\x9d\xe3\x07\x0a\x34\x5d\xa4\xa3\x5e\x9f\x4b\x1c\x8e\xab\x5e\xce\x63\xe9\x34\x4c\x97\x8d\x9b\x59\x94\x2f\x53\x51\x02\x04\xad\xcd\xf1\x94\xc9\x2d\xe2\xaa\x47\x53\x29\xe4\xbe\x7d\x4d\xd3\xe9\x58\xaa\x86\x2d\x70\xde\xf8\x03\xda\xe0\x5d\x0b\x4f\xe9\xe9\x04\x1e\xef\xa6\x71\x6c\x61\x3f\x8a\x63\xb5\x9c\xfd\x44\xc5\xa5\x3f\xa9\x8a\x3f\x44\x79\x51\xe6\x74\x98\x6c\x02\x1e\x56\x95\x02\xcc\x36\x6c\x8e\x77\x6a\xf0\x05\xaf\x36\x07\xd6\xfa\xb5\x8d\x01\x3c\xf4\x21\x01\xf3\xf8\xf5\x38\x4a\x56\x4c\xc7\x15\x04\x99\xbb\xae\x7d\xf8\xdf\xf3\x9a\xb7\x24\xdf\x39\x47\x4f\x41\xc8\x06\xca\xa6\x71\x13\x9b\x81\x08\xfa\x79\xce\x00\x7b\x13\xb0\xc0\x40\x0d\x64\xe5\x50\xd3\x7e\x63\xa4\xac\xab\x84\x8b\xab\x2a\xe3\x57\x5d\xb4\x90\x0f\xad\x0d\xfb\x82\x26\x76\x8f\xa7\xbc\x0e\x3e\x09\x2a\xb4\x89\x61\x31\xeb\x8b\x57\x8f\xb5\x3c\x5b\x97\x5b\x8c\xbc\x80\x56\xef\xc4\xe3\xbc\xda\x23\xb2\xfc\xd5\xb6\x09\x13\x45\x3f\x9e\xd4\xa8\xaa\xc6\x26\xef\x33\x32\x4c\xc1\x27\x17\x5c\x61\x56\x05\x4f\x99\xe9\x7a\xa0\x8a\x8a\x2f\x17\x1c\xd8\x70\x7b\x18\xfe\xf3\xcd\x76\x9a\x74\x94\x9a\x2e\x93\xc2\x65\xfb\xf4\xae\xe2\x59\xd4\x89\xc2\x51\x5c\xae\xbe\x34\x92\x1c\x29\x5a\x49\x0c\xfa\xdc\x7c\xcd\xc6\x71\xba\x4a\xdf\xeb\x4a\x3b\xe5\xa7\xa4\xe5\x51\x07\x4e\x1b\xa4\x2b\x76\xc6\xb7\xbd\xce\xa9\x6e\xd2\x0d\x0d\xf2\xda\xd1\x9a\xbe\x8b\x41\x9a\x17\xb0\xf5\x92\xc7\x42\x38\x0e\x79\x60\x7e\x0f\x49\xbb\x94\x55\xc7\x39\x69\x10\x81\x8b\xb0\x87\x28\x1b\xc2\xa4\x52\x62\x0d\x37\x71\xd1\x82\x8f\x2b\x17\xb6\xad\x2b\xb4\x4d\xa3\x6c\xc0\xee\xd3\x08\x4d\x6f\x60\x98\x63\xd4\xfc\x29\x4d\x68\x04\x45\x37\x39\x9b\x44\xef\x07\x8b\x03\xbb\x7c\x3a\x3c\x67\x61\x50\x99\x16\x4b\x16\xcf\x8e\xbb\xac\xe4\xc2\xb6\x02\xcd\xa9\x25\xc2\x72\x9a\xe4\x04\x7d\x10\x97\xc5\xf2\x4e\xa4\x4d\xb3\x7d\x2e\x1f\x38\xd0\xec\x44\xf9\x70\xe4\x94\xa8\x98\x32\x89\xbb\x10\xfe\x64\x0d\xab\x96\x5c\xc2\x56\xb3\xa8\x28\x6c\x42\x97\xe9\xec\xa8\x3c\x9f\x01\x55\x61\xe0\xd6\x7f\x47\x15\x56\x87\xb1\x59\xb3\x19\xf5\x15\x31\x1d\xa0\x80\x8f\x85\xfb\x36\xd0\xe4\x6e\xb7\x71\x78\xae\x07\xca\x85\x9c\xb9\x31\xa2\x27\xed\x65\x47\x87\x36\x2b\x46\x79\x1e\x71\xd9\x16\x0b\x3b\x4a\x39\x7c\xac\xc8\xab\xc3\xbe\x4d\xd2\x81\x4d\x4c\x43\x11\xda\x3e\xa5\x07\xcd\xc7\xaa\xa9\x68\x25\xaa\xfc\x9c\x2a\x66\x8d\x5a\x57\x94\x60\x19\x29\xaf\x04\x5d\x21\xa0\x16\xf8\x58\x59\x66\x0c\x6d\x36\x28\x1f\x25\x1b\xc4\xb9\xf6\x98\x2b\x06\x5c\xe4\x01\xc3\xff\xa2\xac\xbd\xa7\xd3\xd7\x32\x3a\xe9\xd8\x30\x22\x35\xe2\x86\x33\xd7\xc0\x08\x72\xa9\xb2\xf7\x06\xb8\xe1\x7d\xe9\x0b\x9b\x45\xb1\xfd\x2b\xec\x6d\xfc\xe6\x9b\xa5\xa6\xc3\x09\x12\xea\x59\x80\x46\x61\x31\xbd\xaf\xe8\xa9\x97\x90\x5d\xe1\x21\x26\x85\xcd\x0a\x13\x25\x03\x9b\x14\xc0\x9d\xe0\x2e\x50\xff\xc7\x44\xe1\xc2\x39\x86\xec\xb7\xb5\x92\xfe\x65\xe5\x91\xcf\xb2\xc4\x15\xad\x27\x56\xc4\x98\x8a\xd7\x9c\x8a\x68\xfc\x5a\x63\x8a\x60\xc5\x27\x2a\x85\xc9\x0b\xb3\x96\xcf\x54\x0a\x29\xbe\x64\xf6\x28\xf0\xfd\xf0\x2b\x8a\x64\xd6\x36\x09\xcb\x4f\x39\xaa\x5e\x79\x49\x7c\x82\x24\x08\x45\xb2\xf7\xb1\xfe\xf2\x49\xbd\xea\x75\x99\x45\x75\x34\x28\x33\xf0\x19\xd5\xfb\x75\x4e\x46\xcd\x74\xe8\x70\x00\xec\xea\x83\x10\x4c\x2c\x7e\x6a\x51\x71\x49\x37\xf6\xd2\x5e\x00\xaf\x5d\x56\x76\x59\xda\x5c\x73\x94\x74\xd3\xac\x17\xad\x08\xb4\x49\x16\x8a\xf2\x1a\x65\x9d\x70\x45\x78\xdb\xc9\xd2\x70\x59\x01\xa8\xd7\x15\x80\x7a\x5d\xc5\x59\xa4\x8f\x19\x03\x93\xed\xc8\x31\xfb\x1d\x51\x46\x25\x61\x04\xbf\xef\x50\xf8\xec\xa0\xd3\x1b\x6a\xab\xd9\x98\xc2\x89\x1c\x99\x5f\x6a\xda\x24\x84\xf4\x7f\x47\xe1\xe7\x39\x1b\xe7\x13\x35\x0d\xd3\x41\x94\xa4\xa3\x3c\x86\x26\x05\x17\x04\x03\x4f\xd3\xd8\x74\x21\x7a\x39\xfa\x57\x0d\x72\x35\xe4\x33\x77\x34\xf7\x56\x69\xa9\x9e\x73\x68\xfe\x74\xc5\x66\x99\x35\x61\x21\x8f\x90\x75\x2c\x30\x17\x45\xd4\xa2\xa6\xdf\xd6\xb1\xc3\x34\x8f\x8a\x19\xc5\x07\x3c\xad\x84\x47\xef\xa8\xbe\xed\x45\x2d\x30\x98\x43\x1e\xd6\xa7\xc9\xac\xbc\xcf\x27\x4a\xb0\x64\x68\xed\x32\xa5\x25\x08\xa1\xee\x61\x06\xf2\x49\x05\xc2\x30\x1c\x02\x11\xc4\xe8\x7d\xdd\x1a\xd1\x16\xa9\xa4\x86\x0e\x88\x11\xe2\x8c\x3b\x98\x0e\x7c\xa2\xed\x8d\x8a\xc2\x84\x30\x26\x96\x2a\x59\xc3\xf1\x4e\xeb\x94\xf5\x45\x0b\x44\x77\x24\x3e\x50\x78\x87\x0f\x94\x6c\x6e\x62\x8a\x94\xb8\xa9\x4e\x0d\xa3\xc2\x83\x71\xc3\xf8\xe3\x71\x85\x07\x53\x67\xbe\x37\xca\x7a\xb2\x47\xb2\x61\x5a\xa0\xe2\xfb\x73\x0a\x57\xc7\xe6\xf5\x9d\xc7\x7c\x7d\x1f\xf7\x24\x88\xb9\xc6\xd7\x97\xb8\x70\x00\xce\x19\x62\xe6\xd3\x58\xe9\xf8\x1f\xc6\x5e\x4f\xe1\x0e\xed\xe0\x0e\xcc\xe1\x35\xf3\x2e\x2a\x20\x23\x39\xa7\xf0\xf5\x49\x03\x43\x77\x33\x94\x5a\xc4\xe1\x23\xbb\xe9\x4b\x68\xdc\xfe\xdd\x67\xd9\xb4\x07\x1b\xee\x87\x63\xdf\xa7\xbc\xac\xe0\x6e\x7f\x87\x4a\x8f\x78\x58\x58\xe8\xb1\xe8\x3f\xc4\x2a\x8c\x42\xf2\xf9\x3a\x77\xbd\x6e\xac\x53\x05\xcc\x89\xb9\x89\x6f\xd4\xcf\xb5\x7c\x1f\x26\xb3\xc3\xd8\x84\x8c\xa9\xc0\xf4\x3c\xa7\x5c\x09\xce\x29\xc2\x61\xdb\x24\xcb\xf9\x53\xf4\xc4\x50\x93\x3b\x1e\x78\x31\x8d\xfb\x98\x52\x6c\x2a\xa1\x3c\xb6\xce\x8f\x2b\x31\xa0\xaf\xe0\xcc\xb6\xbc\x10\x00\x0b\x6d\x23\xb5\x38\xc7\x1b\x2f\x16\x80\x4f\xc6\x95\x80\xb2\x7c\x26\xe8\xc3\x73\xb5\x14\x69\xed\x2c\xc9\x77\x48\xec\x41\x23\x4b\x40\x8b\xdb\xc3\xd4\x97\x88\x7f\x31\x53\x8e\x08\xdc\x06\x2c\x44\x05\xc4\x41\xf7\x87\x4e\xd0\x4d\x07\xcb\x1b\x46\x45\xd8\xd7\x4c\xed\x4d\x65\x65\xf2\xa0\x22\x2e\x5e\x27\x16\x49\x1a\xb5\xab\x51\x0e\xb7\x66\x59\xba\xd5\x32\xae\xb2\xfa\x76\xda\x9e\x51\x05\xe2\x33\x0a\x19\xf0\xc6\xd8\x0f\xa2\xdf\xb8\x38\x35\x65\x5e\x6a\xae\x46\x45\x3f\x2b\x03\xfe\x03\x07\x1c\xb8\x9b\x3e\xc2\x27\x2e\xeb\x33\x59\x6f\x54\xe6\xf1\x2e\x9d\xe3\x6c\x06\xbf\xf3\xb7\x90\xc8\x23\x3a\x7e\x6a\xa2\xd4\x0e\x2e\x57\xe5\x6c\xca\xaf\x96\x6d\x4b\xd9\xb9\xac\x25\x66\x10\x85\x33\x8a\xe6\x87\xc2\x27\x80\xb2\x4f\x51\x29\x0b\xfd\xe0\xdd\x13\x79\xc2\x79\x3f\x4a\xb0\xcc\x61\x55\xfd\x29\xbd\x69\x3e\x56\xad\xa8\xc2\x1e\x33\xf9\x9e\xf2\x31\x62\xa8\x3d\xa4\x5e\x1f\xf2\x53\xb6\x3a\x77\x16\x65\xbe\xc6\x32\x43\x85\x4f\xc0\xae\x4e\xa8\xba\x0e\x2f\x42\xa8\x06\x35\x5a\x4a\xf2\xaa\x81\xdb\x46\x6c\x75\x4e\xd9\x90\xfc\xd4\x95\x6b\x42\x42\xef\xc7\xce\xe0\x1c\x59\xd5\xa6\x42\x48\x6f\x4e\x21\x4e\x5d\x58\x64\x43\xd3\x91\xa8\xaf\x36\xe7\x73\x7a\xea\x83\x01\x5a\xdd\xae\x14\x89\x9a\x0b\x1f\xd7\xe9\x9b\xb7\x47\x28\xbb\x8b\x25\x2c\xdd\x09\x9f\x28\x61\xe8\xbc\x6f\x96\x6d\x3e\xb4\x26\xb3\x5c\x33\x44\xb1\x84\x69\xa7\x7c\xa2\x6a\xb7\x07\xa3\x94\xff\x10\x3d\x81\xef\x8f\x95\x88\xeb\xf7\x55\x34\x57\xf4\x6d\x94\xbd\x40\xf3\x16\x81\xf0\x35\xe4\x28\x9c\x97\xa0\x4d\x82\x25\xf8\x9a\x92\x5a\xb8\x1a\x28\x4a\xe3\x03\x54\x1e\xd8\x39\x29\x50\xc0\xc2\x3b\xd4\xf1\xc4\xe6\xfd\x48\x95\x68\x61\x11\x21\x94\x04\x7a\xb1\x62\xff\x4b\x65\x3d\x34\x87\x1b\x2d\x9f\xdf\x6c\x55\x1c\xa4\x2e\x63\x09\xc3\x97\x3d\x8e\x86\x2b\x67\x98\x94\x47\x02\x0b\x4c\xbc\x00\xa7\x8e\x57\x06\x51\xf0\x2d\x78\x66\xa2\x98\xc9\x3b\x5b\xdb\x8b\x55\x65\x4c\x91\xa6\xa8\x6e\x39\x22\xad\xcb\x7a\x36\xea\x42\xd2\xa6\x3d\x36\x24\x8f\xd4\x23\xf3\x0c\x6d\xbe\x83\x4c\x98\x4f\x74\x59\x40\x40\xcc\x4c\xae\x95\xa0\xcb\x4f\xf0\xeb\x2a\x55\x60\xdd\x11\x0c\xf4\xeb\x2a\x95\xcb\xa3\xa4\x67\x86\x69\x66\x67\xf4\x6b\x2e\x82\x4a\xe9\xb2\xa1\x64\xc3\x7d\x39\x3d\xb6\x3d\x13\x47\xaf\x1b\x97\xb0\x09\xf4\xaf\x02\x0a\xf4\x63\x69\xa5\x63\x66\xb5\x74\x04\xbd\x5f\x64\x9a\xb3\x2d\xaf\x5c\x50\x95\x53\xfd\x3c\xab\x82\x22\x1d\xa4\x59\xc6\x95\x0e\x09\x69\x54\x6f\xeb\xac\x22\x35\x0c\xa2\x24\x0a\x4d\x96\x2b\x0f\xa9\xfb\x4a\x51\xe2\xbe\x0a\xd1\xf2\xc2\x0e\x77\xd3\x13\x17\xba\x51\x79\xc5\x92\xc9\xf8\x1c\x9f\x81\x94\x22\x0a\x57\x8e\x09\x65\xf9\xbd\xc0\x0b\x29\xfb\x17\x89\x64\x47\x9d\x47\xd0\x4a\x14\x92\x42\x6c\xc3\xb9\xc9\xeb\x34\xe8\x92\xca\xa3\x4d\x92\x8c\x08\x74\x39\xa3\xda\x0a\x1f\x8e\x3d\x9f\x01\x62\x24\x98\x30\x57\xc6\xcf\xb8\x6c\xd3\xf4\x7a\x52\x87\xf4\xd6\xd0\xe5\xc7\x18\x9f\x1a\x28\x14\xce\xe9\x3a\xfc\x5a\xd7\x64\x83\x28\xe9\x15\x5c\x2e\x16\x89\x2e\x85\x7d\x9f\x16\x98\x29\xd3\x82\xa8\xe3\x2c\xce\x70\xb5\x6c\x0c\xcd\x27\x15\x16\xf1\x97\x33\xfb\x04\x8d\x39\x54\x86\x3e\x1a\x2b\xc3\xef\x53\x2a\xe8\xbf\x81\xbe\x2a\x32\x97\x6b\x81\x62\xa9\xff\x84\x5e\x15\x36\x99\x19\x92\x82\x70\x4a\x12\x47\xc4\x83\x15\x7b\x38\xeb\x73\x60\x4a\x28\x53\xe1\x45\xe7\x01\x52\xbe\x4f\x01\xa5\x6e\x4f\xe9\xf6\x2f\x36\x6d\x5e\x44\x03\x9f\xd2\xe1\x2b\x50\x93\xe4\xe3\x89\xe0\xe2\x3b\x34\x4d\x73\x51\x45\xc3\x0f\x34\x40\x87\xe3\x93\xd6\x5e\x37\x1b\xd3\x7e\xa3\xf1\x8b\x5f\xe1\xc8\xf0\xc7\x98\x84\x7c\xa2\x34\x90\xa3\x04\xde\x9c\x0b\x87\xf9\x2b\x74\x56\x74\x47\x71\x43\xfb\xe9\x70\x39\x4a\xa4\x3d\x84\x1d\x93\x4d\x03\xf8\xa4\xce\x4e\xac\x1f\xf5\xfa\xab\xa4\x30\xb7\xe8\x7c\xdc\xcf\x28\xa1\x9b\x33\x15\xec\x41\x9a\x0e\x76\xab\xe8\x74\x8b\x9e\x1d\xeb\x44\xa9\x40\xe6\x8e\x96\x07\xdb\xc2\xd3\xd6\xc6\x29\xa2\x3b\xe6\xbd\x99\x1f\x28\xbb\xb8\xb0\x6f\xcd\x10\x96\x53\x4b\x4e\x22\xcc\x5f\xd1\x25\xc5\x5c\x34\x45\x34\xa3\x5c\xed\x20\x49\x8d\x67\x78\x9b\xa3\x4c\xcc\xad\x0b\x75\xed\xc4\x8e\x2d\x4c\x14\xcb\x64\x41\x5b\xfe\xa1\x42\xa8\x5e\xd4\x4a\x36\x9b\xf5\x3e\xd7\x85\xcd\xa2\x94\xaf\x55\xcf\x52\x3e\x9e\xaa\x24\xed\x5f\x24\x6d\x53\x13\xba\x01\xe5\x4a\xfd\x07\x0e\xb8\x52\xbf\x82\x1c\xa6\xaf\xdb\x84\x94\x08\x19\x8c\x86\xb9\x22\xce\x11\x1e\xa4\x89\x1e\x86\xe0\xa0\x54\x54\x78\x56\x7d\xdb\x30\x36\x89\xdd\xed\x5f\x1a\xd4\xef\x10\xcc\x20\xe1\x93\x2e\x12\x5d\x9a\x0e\x0a\xd9\xb4\x41\xf9\x69\x9f\x47\x11\x57\x7a\x50\x75\xde\x34\xed\x4c\xe4\xaa\xc1\x97\x66\x1a\x2b\x9f\xb8\x48\x8b\x1e\x63\x39\xcf\x04\x65\x08\x1c\xc0\x1e\xca\x69\xb0\x83\xfc\x35\x7a\xb5\x50\x08\xda\xb5\x5d\xf7\xa2\x5c\x5b\x7f\xe1\x97\x76\x2b\x78\x39\xaa\x9c\x88\xd9\x4f\xa8\x4e\x38\x0b\xb0\x22\x84\xbc\x3e\x9e\x22\xc9\x61\x27\xfa\xd9\xd8\x93\x4f\x2e\x29\xa6\xf2\x90\x68\xf7\xae\x7f\x75\x2b\x50\xf2\x7a\xc7\x55\x2d\xf0\x86\x96\x2d\x3a\x0e\x3c\x27\xc2\x8e\xef\xa8\x2e\x45\x77\x14\x77\xa9\xbf\xe4\xc4\x82\x2e\xd1\x7c\x12\x5f\x84\xa7\x1d\x1f\x25\x5d\x31\x49\xc2\x3d\x43\x86\x7c\x04\x0a\xca\x7c\xe9\x73\xc3\xd0\x61\x16\x85\xf4\x50\xcb\x4f\xba\xce\x61\xf9\x84\x85\xfb\xa0\x29\x2b\xd3\x14\x91\xa5\x43\x80\xe2\x34\xbc\x35\xfd\xd9\x40\xa1\xb9\x54\x1d\x12\x18\xc5\x7c\xd8\x87\x0e\x87\x43\xdb\x6f\xd2\xdf\xf3\xb1\xc2\x31\xe7\x36\x5b\xb1\x9d\x39\x1f\x4c\x9f\xc4\x62\x8f\x18\xf2\xbc\x82\xb7\x7f\x0f\x4b\x23\x9e\xf9\x59\x2c\xe4\xfc\x57\x53\xd3\xeb\xe0\x7c\x19\x55\xc5\x69\xe4\x3a\xd1\x18\xb7\xd7\x54\x1f\xf9\xcf\x69\xd0\x7b\x40\x8b\xbb\xa2\xc4\x0c\x87\x8c\x19\x11\xfb\xff\xf2\x2a\x04\x62\x37\xdd\x9f\x5c\x6a\xa6\x06\xb9\x41\xc5\x2f\x45\x6c\x51\x6a\x3a\x03\x70\xe6\x16\x51\xb5\xba\x72\xf0\xf6\x9e\xcd\xfe\xc5\x66\xd1\x8f\xd8\xb5\x51\xa4\x55\x55\x9e\x78\x3e\x78\x41\x61\x3f\x53\x12\x20\x4c\x93\x7c\x97\xa2\xc2\x3e\x1c\xfb\xd7\xb7\xae\x5e\xdf\xfa\xd8\xb7\xcd\xe1\x64\xc1\x79\x56\xa0\x2c\xfa\xfe\x4b\xd5\x65\xe8\xbe\x6c\x5e\x4e\x5f\x6e\x78\xaa\x22\xb8\xc5\x7c\xec\x4c\x66\xcc\x70\x58\xe6\x4d\xcb\xe8\x33\x61\xf7\x3e\xad\xa0\x31\x48\x70\x18\xbe\xa2\xf5\xd2\xf2\x28\x2f\x08\x93\x24\xb9\x83\x22\xac\xcf\xb4\x54\xb3\xf3\x8f\x15\x22\x7d\xef\xa4\x06\x22\x6d\x42\xd2\x7c\xe3\x1a\xa5\x78\xda\x96\x17\x2e\xc6\x44\x35\xb6\x85\xae\x6e\xf0\x0c\x8b\x29\x51\x1e\x83\x0a\xd6\x55\x7a\x6e\xe2\x74\xed\xab\xad\x51\x2f\x49\x33\x6e\x1c\xba\x06\x8b\x07\x8f\x4f\x6d\x1a\x84\x2b\x28\x37\x0d\x1b\xeb\xee\x2d\xc6\x3b\x1f\x07\x3e\x9e\xe8\x46\x61\x64\x93\xb0\x02\xb3\x52\x9d\xe4\xcd\xcf\x15\x58\xec\xda\x55\x19\x65\x7c\xd1\x08\x98\xd5\x1d\xb8\x06\x42\x14\xf6\xed\x80\xe3\x06\x14\x75\xb8\xf6\xc2\x27\x75\x18\xf4\xfe\xda\xd0\x66\xa1\xc9\x3a\xfc\x39\x56\xfb\xd2\x52\xa2\xbe\xa7\x9b\xae\xd8\x6c\x94\x23\xfd\x17\x13\xbd\xf2\x71\x4a\x51\xac\x06\xbc\x9a\x45\x2b\x26\xe6\xa8\x44\x94\x45\x68\x66\xca\x6e\x3c\xed\x16\xde\xec\xa5\x29\xd8\xbb\x28\x2b\xec\x6a\x95\xab\xa9\x2e\xaa\xa3\x40\x01\xa4\x29\x62\xd9\x73\x53\x2f\xe8\xe0\x3c\x11\xe2\xa3\x44\x78\x25\x48\x25\xcf\xe2\xd7\xf9\xa4\xee\x53\x79\x68\x0a\xef\xab\x21\x4d\x94\xf2\x72\x44\x5d\xa2\x12\x49\x75\x8b\x19\x85\xb8\x63\x64\x03\x16\x01\x80\x34\xf1\x53\x37\x14\xa6\x7a\x98\x0e\xd1\x1a\xf6\xcc\xb0\x4d\x35\xb5\x37\x03\x05\xb6\x30\x59\xcf\x16\xa8\x16\xcb\xfa\x45\xaf\x46\x16\x36\xe5\xdb\x6c\xf3\x5d\x3e\x3f\x7a\x01\x98\x5e\xd7\xe5\x73\xce\x35\x9f\xa1\x2c\x89\x46\x1b\x4f\x46\x6c\xcd\x2f\xb4\x2a\x26\x58\x4a\x69\xc9\x8c\xe2\xb4\xa1\x8a\xd4\xc0\xf5\xf2\xb1\x5a\x79\xbb\x51\x36\x40\xc0\xb7\xe0\xe5\x4a\x3c\x57\xb7\xf6\x65\xa7\x09\xeb\x15\x38\x19\x7f\xef\x10\x35\xb5\x2d\x1c\x3d\xca\x26\xc4\x2e\xc2\xc0\xa2\x72\x5b\xd1\xe5\xde\xd1\x41\x93\x8e\x47\xc9\xe1\x16\x34\xc9\x57\x5c\xc5\x4a\x57\xb2\xea\xdc\x12\x4d\x94\x4b\x6d\xdb\xf1\xf9\x1c\x4e\x6d\xd3\x7b\x61\x94\xaf\xd4\xe9\x5e\x2c\x39\x92\x8d\xaa\x54\x5c\xd0\xc2\xa1\x71\x9a\x99\x86\x6a\x87\xe3\x5b\x65\x0c\xd5\x9a\xb6\x77\xd3\xa4\x63\xa5\x6f\x8f\x35\xfd\xb4\x02\x43\x9c\x56\xb9\x33\x35\x0e\x96\x6d\xc6\xc8\x5e\x40\x64\x61\x8b\xc1\xc7\xd5\x3f\x8e\x8a\x51\x07\x95\x2b\x94\x71\x1e\x57\x74\xb3\xc7\x27\xbe\xb2\x6c\x8e\x45\xe9\x40\xb9\x5f\x9f\x55\xee\xd7\xd3\x73\xe9\xc0\x81\xe6\xaa\x29\x42\x3f\x97\x50\x43\xfe\x3e\x7d\x88\x8f\x55\x18\x15\xa6\xa3\x24\x8c\xc8\x54\xe8\x15\xce\xbe\xd7\x2b\xaa\xe4\x1f\x8d\x15\xae\xf2\xbb\xf4\xc6\xf9\xcf\xf0\xc6\x25\xb2\xad\x43\x97\xf5\x8d\x23\x6a\x70\xa5\x4b\xc3\xd8\xae\xd5\xed\xd6\xaf\x8d\x06\xed\x54\x6d\x3b\x6f\x07\x9e\xb9\xf0\x76\x85\x21\x11\xc7\xa6\x67\xf3\x59\x5f\x72\xfd\x70\xec\xfd\xb7\x58\xcc\x02\x0f\x13\x84\x51\x54\x44\xcf\x78\x76\x4f\x66\x3b\x51\x9b\x69\x40\x4e\xf0\xcd\x21\x99\xa6\x8b\x4e\x65\x9e\xde\xb6\xfd\x28\x81\xb2\x32\xc2\xf0\xdf\x1a\x2b\x2a\x2e\xa0\x0d\xa0\xf6\x5f\x99\x9a\x46\x65\x00\x13\xf6\x6d\x67\x14\xb3\x51\x2e\xcb\x23\x55\xc8\x97\xca\x6d\x41\x3b\x8e\xf6\xe2\xb4\x6d\x8f\xe1\x51\x22\x8c\xbf\x89\xf4\x8a\x4f\x94\x1f\x5f\x6e\x62\x93\xad\x0d\xd8\x95\x4b\x5c\xfe\x94\x14\xd6\xbb\xca\x9d\x73\x98\xa5\x83\x61\xc1\x5e\x32\xa8\x6b\x5c\x41\xc4\x2d\x2b\x89\x2f\x9a\xc0\xbb\x5b\x16\x15\xbd\x1c\x2f\x47\xc9\x2e\xbd\x75\x8d\x2b\xbb\x5a\xe0\x77\xdc\x2d\xa4\xb6\xa8\x64\xcd\x4c\x1a\x5f\xfe\xb2\x1c\xb7\x7c\xfc\xbf\xa5\x02\x84\x6e\x3a\x4a\x3a\xdc\x7f\xa9\x8d\x12\x6b\xa2\xee\xe6\x68\xd8\x31\xac\xc8\x0c\x44\x34\x13\x2a\xb4\x97\x9b\x6c\x9e\x2a\x80\x0d\x0d\x42\x91\x25\xef\x57\xb5\xdf\x79\x57\xd5\xe9\x40\xb8\x0e\x30\xef\xb4\x0c\x6b\x08\x34\xc4\x41\x79\x7d\xa7\x45\xdf\xb6\xd7\xc8\x8f\xc9\x91\x9a\xdd\x56\xfa\x48\xe1\xa5\x1f\xd1\x30\xe2\xbf\xa9\x9b\xe0\xc3\x0c\x48\xde\x19\xb5\x59\xa2\x15\x82\x2f\x00\x51\x54\xbc\x47\xb7\x3f\xa2\xaf\x2f\x35\x0b\x6b\x3c\xa0\x0c\xfb\xd0\x05\x4c\x4d\x3e\x19\x57\x04\x1a\xf2\x34\x31\xed\xd8\xee\xd6\xc5\x91\x5b\x8a\x91\xbd\xb7\xe5\xe3\xaf\xdd\x13\xdf\x28\xbc\x45\x9d\x45\xd4\x49\x19\x80\x89\xc9\xf1\x99\xae\x8d\x5f\xd4\xfc\xa5\x7e\x9a\x15\x61\x3a\x80\x82\xbb\x93\xc7\x63\x37\x30\x3e\x09\xfe\xba\x6b\x29\x47\x49\x68\x8b\x34\xf9\xa7\xff\x20\xb1\xab\xc3\x34\x2b\x94\x13\xf8\x55\xad\xec\x79\xd5\x45\x85\x83\xb4\x48\xb3\x70\x2d\x8c\xa5\xac\x8f\x7d\x82\x89\x47\x7c\x52\x43\x75\x5c\x6a\x0e\xa3\x70\xd9\xba\x12\x91\x40\x62\x34\x3e\xc6\xd1\xc3\x0a\x6b\xb2\xff\xff\x2b\xd3\xf4\x82\xd3\x6c\xa7\x45\xe1\x68\x48\xe2\x8d\xe8\x2b\x24\x1b\x75\x6a\x0a\xf9\x68\x68\x33\x5a\x60\x40\x6c\x69\xb4\x94\xe5\xc2\x86\x2a\x99\xde\xae\x95\xfc\xe8\x58\x54\x65\x4c\xc1\x6c\x6e\xa1\x03\xfb\xba\xf5\x29\x5d\x06\x4e\xb3\x62\xce\x93\x8c\x4e\x8e\xd5\xed\xfd\x08\xfc\x0f\x11\xc0\xf3\xdb\x16\xda\xcc\x2c\x8b\xae\x5a\x23\xab\x26\xef\xbf\xac\x6c\x4f\x96\xc6\xca\x84\x60\xc9\x35\xe8\x56\x23\x1b\x77\x78\xf4\xa2\xd3\xc1\x4e\x85\x7c\xa2\xc5\xab\xfb\x36\x5c\x9e\xf5\x66\x37\xeb\x68\xaf\x38\x93\xde\xf2\xb9\x4a\x1d\x98\x26\x00\x9f\xa8\x08\x66\x60\x8b\x2c\x0a\x73\x25\x5d\x05\x21\x1a\x71\x5c\xdb\xfe\xda\x48\x14\x6a\x25\xca\x2d\x93\xc9\x11\xb5\x3c\x50\xba\x23\x63\x9a\xf8\xa2\xfc\x48\x3f\x2b\xe4\x5b\xd5\x6e\x18\x65\xc3\xac\xfc\x16\xaa\x5e\xe2\xb9\x7d\xa2\xc8\x60\x9f\xa0\x77\x8b\x10\x21\x5c\x4e\xd2\xd5\xd8\x76\x48\x46\x65\xe1\xb0\xfb\xba\xf2\xcf\xf9\xb8\x0e\xc8\x91\xa4\xab\x7d\x9b\xd9\x19\x6f\x51\x0e\xc9\x00\x0c\xd5\xb3\x9a\xf2\xb9\x59\x91\xaa\x4b\xbb\xc5\xae\xf2\x77\xb0\x31\x3f\xac\xfa\xa8\x21\xfe\xc1\x0a\x0b\x87\x0e\x34\x8a\xae\x29\xef\x10\x88\x0c\xf2\xc7\xc7\x1a\x2f\x57\x64\x69\x6c\x47\x20\xab\xb0\x70\x7d\xa0\xc4\x1f\xd7\x15\xc2\xb8\x0c\xa2\x42\x0e\xb7\xb0\xd2\x9f\x85\x48\x36\x9f\xa8\xfa\xae\x89\x4d\xbe\x6c\x12\xc5\x89\x7d\x27\xf0\x55\xe6\x77\xea\x4c\x14\xf2\xc2\x64\xa8\xdd\x20\xdc\xdd\x18\x7b\x35\xb8\x8d\xcf\x65\x35\xae\xf6\xd3\xd8\xe6\x26\xb6\x0d\xba\x12\xac\x77\x80\xba\xf1\x71\x55\x75\x24\x4b\x1b\x9e\x1d\xc0\x7e\x33\x7c\x32\xf1\xb3\xec\x35\xdb\xed\xa2\x56\xab\x59\xa9\x15\x15\x1c\x4c\xcd\xab\x95\x6f\x37\x45\x1f\x10\x30\xd1\x8f\xf2\x6d\x1d\x26\x29\xa2\x21\x70\x5b\x0d\xe8\x27\x26\x0a\x0a\x6c\xa2\x38\x1d\x15\xb3\x2a\x7b\x7b\x53\x61\xdf\xc1\xd0\xe5\xe3\xb1\xca\xf7\xde\x54\xf0\xee\xf6\x28\x8f\x12\x9b\xe7\x36\x87\x59\x0e\xb6\x89\x5b\x63\xe5\x7a\xfd\xc7\x74\x37\xec\x35\x80\xe4\x48\x20\xeb\x1e\xa2\x8a\x48\x9a\xa5\xea\xf1\x63\x4c\x52\xaf\x15\x12\x18\xa0\x99\xc0\x42\x02\xe2\x26\xe5\x89\x85\x17\x54\x74\x15\x7f\x39\xb5\x51\x3c\x83\x81\x84\x61\xb6\x49\x4e\x04\x18\x47\x5b\x5a\x19\xf5\xb2\x6b\x17\x0d\x33\xbb\xa2\x94\x91\xf0\x18\xde\xc3\x95\xf1\xc9\xd4\x95\xed\x5f\x6c\x16\x6b\x43\xbb\x9a\x45\xa2\x57\xc0\xda\x80\x4a\xe3\x75\x73\x6a\x45\x39\xfc\xb5\x66\x98\x8d\x06\x14\xac\x1e\x99\xe7\x0d\xf8\x0d\x55\x73\x7a\xc3\x5d\xd4\x6b\xa3\x24\x2c\x28\x24\xf1\xed\x1b\x06\xde\xf0\x49\x0d\x5f\x7c\xa1\xdc\x67\xfa\xe4\xf8\x23\xf4\xba\x72\x72\x63\xa8\xef\x6c\xd1\x22\x8e\x38\xed\x96\x8a\x70\xcf\x4f\x25\x96\xfb\x17\x9b\x5d\x33\x3a\x86\x81\x8a\xcd\x9d\xa8\xc0\x5b\x88\x71\xa5\x91\xec\xc4\xbc\xfb\x91\xed\xd2\x75\xe2\xd1\x3e\xd4\xcf\xf9\xa1\x22\xcb\xd9\xbc\x88\xd2\x64\xb7\x07\x6e\x30\xb3\x52\x2b\xa4\xe1\xad\x32\x82\x5e\x52\xba\xf2\x8e\xa0\x8e\xf0\x36\xb6\x22\x54\x3e\xdf\x1b\xab\xf6\xf5\x96\xc2\xd4\x32\x94\x6b\x0f\xb6\x78\x11\x32\x56\xc2\x99\x9f\xa2\xaa\x05\x5f\xa3\x33\x81\xf7\x38\x3a\xa3\xf5\x39\x77\xb5\x7c\x82\x7b\x31\x50\x52\x9b\x9f\xaa\x15\x90\x91\x4a\x02\xd7\x52\xea\x24\xd3\x8a\x30\x18\xd0\x23\x37\xd6\xc4\x6f\xa1\xfc\x36\x3e\x9e\x1a\x6a\x94\xbe\x0e\xd2\x81\x4d\x8a\xd1\x00\x01\xaa\xdb\x15\x16\xfd\xae\xf0\x84\x8a\xe3\xff\x73\xf2\x18\x42\xdf\xf3\x84\xf2\xd8\xbe\x1c\xf8\xc9\xf0\x09\x4a\xc8\x00\x04\xdd\x07\x65\xd4\x6d\xf0\xce\xe2\xf1\xd7\x02\x05\x07\x02\x35\x14\x99\xca\x6d\xfd\x38\x36\xc6\xde\x87\xec\x7b\x34\xb2\x98\x26\xad\x2d\xa7\xd9\x65\x0a\x2f\xeb\x0d\x57\x15\xcb\xc3\x7e\x1a\x9b\x0c\x1d\x7d\xe4\x62\xf0\xd7\x40\xab\xec\x19\x4a\x28\xf0\xa1\x19\x54\x65\xc4\xec\xb4\x86\x29\x33\x34\xf1\x40\x4d\x98\xf3\x74\xbf\x7c\xac\xd0\x47\x69\xb7\xfb\x8c\xe7\xb0\xdd\xe5\x34\x47\x04\xce\x1a\x4e\xff\x8d\x7f\x90\x3d\x81\x02\x0f\xa6\xfa\x13\x8d\x62\xf9\x53\x9a\x64\x62\x05\x3a\xe3\x2d\xfa\x1b\x2d\xaf\x95\x7f\x16\x19\x93\x30\xd8\x67\xbc\xcd\xe7\x0e\x28\x6f\xe3\x5a\x3e\xc5\x60\xc2\x24\xfd\x77\x4a\xc0\xf7\x6a\xa0\x94\x39\x36\x30\x7a\xd1\xee\x7b\x57\xe5\x26\x03\x9b\xe7\xa6\x67\x77\x53\x0f\x01\x59\xe2\x55\xa4\x81\x7c\xa2\x7d\x9a\xce\xe2\x2a\xf0\x2d\xa8\x7c\xbb\xee\x42\x79\x11\xa2\x97\xea\xd9\x94\x67\x5d\x60\xdc\x37\x06\xd4\x0f\x6f\x82\xe7\x1b\x44\xd9\x28\xc9\xe7\x14\x2e\x69\x27\x23\x01\xb1\x63\xdc\x41\xc3\x4c\x36\xd1\x86\x93\xcd\xf8\x8e\x7a\xed\xbf\x5f\xc9\x4b\x5f\x8f\x2c\xdc\x92\x95\x84\xc5\x21\xa7\x97\xd6\x70\x06\x52\x1f\xa9\xd8\xec\x11\xbd\xfb\xcf\xeb\x7b\x96\x01\x72\x98\x66\x99\x0d\x59\xf8\x4b\x9a\x71\xba\x4b\xf7\x94\x2a\x24\xc6\xcb\xf9\x5e\xba\x6e\x66\x56\x04\x7e\xa7\xfb\x6c\xac\x91\x4a\xca\x6a\xe2\xfb\x41\x45\xf2\xd4\xf3\x1c\xbf\x19\x54\xd1\x66\x2e\x7b\xfc\x26\xbd\x71\x67\x80\xb3\x70\xb8\xca\x98\x44\xc1\xe6\x4a\xb0\xc7\xbd\xf0\xff\xf4\x39\xbf\xe1\x7f\x86\x9f\x43\x77\xe1\xba\x92\x00\xbb\x4f\x3f\x2d\xa0\xf9\x32\x62\x97\x5f\xa0\x6f\x45\x80\x37\xd7\x6a\x7c\x75\xc1\xc5\xb2\xe5\x3b\xe7\x18\x57\x83\xc7\x78\x78\x8b\xe9\x17\x5e\xab\x13\x72\x28\x07\x1d\x16\xcb\x5b\x58\x5c\x44\xf3\xa3\xbc\x41\xe5\xc5\xfa\xaa\x57\x07\x2c\x9f\x28\x6b\x75\x8e\x3d\x04\xbf\xd1\x2a\xdf\x9d\xb4\x46\x64\x4b\xec\x8f\xb2\x2c\x0a\x0d\x3b\x20\xca\xed\xd0\x05\xb1\x05\x9a\x62\x7b\xcc\xd2\xba\x81\x4a\xc1\x74\x68\x5f\x46\x85\xd6\xf4\x44\x19\xd8\x79\x5e\xe8\xd6\xa2\xaf\x0d\xa7\x22\xd6\x23\x46\xfa\x0d\xe7\x12\x77\xab\xd6\xdf\x33\xef\xdb\x18\x1b\x22\x86\x3c\x2a\x8d\x7c\x5c\xd7\x73\x49\xd2\x82\x59\x8e\x98\x74\xe0\x23\x21\xe1\xf8\x6f\x31\x67\x11\x2f\x82\xce\x20\x2d\x76\xb7\x01\x67\x26\x4a\x66\x15\x9e\xf2\x92\x66\x6d\xd3\x8f\x57\xca\xdf\x28\x1f\x5e\x1b\x57\x00\xb2\x26\x72\x45\x3e\x64\x7d\x67\xb1\x07\xf3\x89\x0e\xd7\xe3\xb4\x5b\x70\x94\xe5\x7c\xa0\x1c\x80\x69\xa7\x5a\xb1\xa7\x9b\x26\x2e\xbc\x26\x26\x84\x2f\x06\x3c\xc4\x95\x61\x64\x09\x62\x0d\x2b\xf7\x1f\xd4\x2a\xc4\xc6\x29\xb5\x76\xca\x6f\x70\x3e\x40\xe5\x98\x93\xf6\x93\xc7\x8e\xbc\x3e\xca\xa2\xb0\x3f\x47\xff\xca\x29\x3a\x9a\xac\x92\xaf\xd3\x97\xf0\x0e\x89\x35\x11\x08\x62\xc0\x34\x30\x87\xee\xd6\x79\x91\xb3\xd0\x29\x97\x01\xd1\x89\xfc\x0c\xdf\x80\x25\xed\x92\x02\x31\xbe\xaf\xcb\x61\x51\x62\xe2\x78\x8d\x30\x08\xac\x0a\x4d\x51\xb1\xe4\xbd\xe5\xa7\x30\xa6\x6f\x04\x95\x37\xd2\x70\x2e\x64\xd7\x68\x82\x63\x07\x3a\xa3\x33\x87\x0d\x2f\x64\x96\x1a\x07\x82\x42\xc3\x08\x42\xf8\x8e\x01\x59\xbe\x5e\x56\xab\x6e\x3d\xed\x50\x08\x1d\xdb\x76\x01\x0a\x3a\x20\x0d\x82\x20\xf0\x71\xab\x4e\xad\x39\xb3\xc3\x34\xe3\x5e\x0e\x42\xd9\xc6\xa4\xe2\xb3\xd4\x70\xca\x65\x7b\x5a\x4f\x28\x05\xb8\xe4\x79\x7a\x15\xd8\x6f\xaf\x68\x57\x6d\x64\x96\x08\x62\xb8\xb9\x82\x15\xff\x31\x28\xb1\x60\x9e\xfe\x1f\x63\x92\x37\x74\x7d\x00\x87\x93\x64\x32\x0c\x40\x50\x57\xc6\x7e\x99\xbc\x83\xcd\x13\x01\x32\xfc\x83\x24\x40\x2e\x27\x9d\xf8\xd9\x29\x51\x6b\xac\xd6\xd2\x92\x57\xb5\xba\xf7\x2b\xf6\x31\xe0\x97\x61\xe0\xff\xaf\xc0\x83\x8b\xb1\x8c\xf7\x6e\x9f\x56\x91\x2e\x1f\x9f\x49\x0a\x1b\xa7\x43\x2e\xd4\x70\x58\x31\x56\xb0\xd9\x3f\xd5\xfd\x6d\x53\x64\x69\x12\xbd\x4e\x80\x28\xdf\x94\x08\x94\x2a\xf9\x25\x95\x14\xe5\x85\x35\x9d\xb5\x72\xcd\xdc\xc2\xf3\xdd\xba\xa2\x3c\x04\x58\xc2\x90\x4f\x02\xe1\x08\xb6\x47\x39\x5e\x26\xbe\x0f\x9a\xe5\xd8\x17\xb7\x14\x2b\xe4\xb4\xa2\x44\x14\xe2\x74\x0b\x44\x3b\x7e\x84\x8f\xd5\x62\x1a\xc7\xd1\x8c\x56\xbc\xb9\xac\xe2\xad\x4d\x2d\x0c\x30\xcd\x66\x7e\xa9\x49\xc0\xbe\x8e\x16\xb4\xd8\x08\x94\xa0\x85\x97\xfc\x62\x15\x2a\x31\x8f\xc5\x0b\x7e\x37\x50\x41\xe6\xa6\x2e\x8a\x9c\x0c\x5e\x90\xb2\xe2\x28\x2e\xa2\xc4\x28\xe5\x64\xa9\x6e\xf9\x45\xff\xbc\x36\xef\x80\x97\x36\xf4\x0b\x05\x95\x5b\x0e\x5c\x11\x10\xf7\x77\xbe\x96\x66\x73\x0a\x63\xba\x63\xe2\x67\xf9\x93\xb4\x66\x62\xf1\xbb\xa2\x6b\x65\xbf\x13\x28\x65\xfe\xe9\xca\xe2\x81\x03\xcd\xcc\x86\xde\x3e\x88\x75\x54\x02\x05\x4a\x7f\x47\x15\x65\x42\xab\x90\x5a\xaf\x8a\x0b\x3b\x64\x31\xc4\x92\xdd\x17\xd2\x43\x93\xad\x94\xc9\xed\xc2\x61\xde\x53\xff\x94\x6e\x8c\x8f\x15\xa0\x36\x36\xc7\x0c\xfb\x3d\xba\x72\xd8\x71\xfa\x5b\xe1\xbd\xd4\x18\x16\xe6\xfd\x68\x48\x64\x1e\xd1\x19\x12\x1b\x22\x4f\xed\xbc\x38\x05\xfb\xfe\xfa\xc1\xf9\x66\x92\xd2\x25\xb1\xfc\x2a\x2d\x9b\x22\xc5\xaa\x30\x1a\x16\xaa\x92\x5e\x84\xea\xe3\xa0\xa1\x14\xf4\x6a\x34\x96\x7b\x36\x1b\x30\x4c\x4b\x5c\xb9\xe9\xe3\x22\xdb\xb9\x9d\x05\xb6\xf4\xb5\x43\x4d\xd3\x59\xb1\x59\x11\xe5\xbc\x03\xa0\xe3\x84\x22\x0c\xb2\x2c\x8e\xf4\xd1\x78\xf9\xac\x4e\x0e\xa6\xdc\x9b\xe8\x47\xb1\x52\xc1\x33\x89\x8f\xb5\xa5\x5b\xdf\x9a\xc2\x66\x73\xbe\xfb\xf7\x11\xc6\x09\x1a\x7a\x73\x2d\x5a\x7c\x9c\x76\x4e\xb9\xf8\xf0\x89\x2a\x33\xef\x9c\xa8\xb7\x3b\x0a\x97\xd3\x74\xc6\x87\x13\x3b\x5a\xbe\xe6\xce\x71\x02\x16\xec\xab\x35\x14\xbf\xa5\xa6\x29\x0a\x9b\x38\xb6\x94\xc3\x50\x7b\x95\xf6\x42\x71\xec\x4c\xd6\x1b\x95\x09\x6c\x8e\xfe\x24\xb2\xa0\xef\x06\xaa\x42\x74\x43\xbd\xf7\xcf\x14\x3f\x68\x6e\xa2\xda\x19\xf7\xa7\xd4\x11\x0e\x7f\xad\x19\xda\x38\x56\x12\x83\x97\x95\x6b\xcf\x65\x9f\x65\x16\x59\x34\xb4\x95\x30\xee\x7c\xc5\xd2\xb3\x0e\xa8\x5c\x98\xa4\x17\x0b\x00\x42\xe4\xfc\x2b\x3a\xff\xdb\xc7\x04\xe1\x5a\xe2\x21\x69\x36\x42\xe1\x7a\x8b\x28\xf7\x5b\x13\x05\x0a\x4f\x46\xf9\xe3\x3e\x38\x9d\x9b\xf8\x24\x6f\x07\xed\x40\x48\x72\x76\x4f\x1a\xfb\xf6\xf1\x03\x79\x0a\x95\x7f\x3c\x84\xb7\x11\x0f\xaa\x72\x85\x10\x65\x41\x8e\x05\x04\x18\xcc\x67\x60\xe8\xcf\x57\xbd\xa9\xe2\xb5\x3d\x65\x26\x8b\x15\xfc\x3c\x02\x72\x87\xf4\x72\xcf\xf1\x1c\x0d\x44\xec\x3e\x6f\x63\x93\x00\x42\xae\x31\xa1\xb5\x8e\x3f\x3e\xf6\xc5\xbc\xdb\x4a\x77\xee\x03\x9a\xfe\x20\xb3\x73\xa9\x00\xa3\xe2\x56\xf0\xbc\x1b\x15\xaf\xa5\xa3\x2c\x81\xed\x52\xc3\x51\xb6\xaf\x69\x12\xc4\x35\xd5\xd7\xeb\xa5\xe5\x88\xc3\xca\x25\x66\x84\x4a\x46\xe9\xac\xeb\x0c\x15\x7d\x32\xcd\x49\x47\x05\x21\xaf\x10\x44\xde\xa0\x1c\x48\xcc\x97\xca\x1c\x48\x04\x82\x9e\x56\x2d\x90\xd8\xc6\xb4\x53\xba\x3e\xb2\xd2\x88\xdc\x0c\xbc\x2c\x02\x0b\xa0\x4a\x9d\xef\x29\x6d\xa1\x28\x51\x29\xaa\x06\xf0\x72\xe0\xe3\x5a\x81\xf5\x15\xc3\xf7\x8f\x5a\x0a\x30\x9b\x7c\xec\x22\xfc\xee\xc8\xca\x1a\x0f\x9e\x26\xd7\x02\xf9\x64\x6a\x5e\xbc\xd4\xcc\x07\x36\x8e\x95\x9b\xed\xc6\x58\xa1\x73\xaf\x2b\xba\xf8\x3b\x53\xd3\x9b\x76\x95\x15\x33\x18\x3a\xec\x81\x26\xbc\xf1\xf1\xd4\x5e\xb4\x6f\x5f\xb3\x13\xe5\xce\x3b\x52\x77\x33\x45\x02\xce\xf5\xee\x4c\xd6\x2b\x23\xe0\x88\x51\x1c\x40\x42\x63\x8b\xe5\x63\xb7\x93\x93\x4a\x57\x34\xb0\x33\x3e\x82\xdc\xa1\x76\xcb\x3b\x54\xdf\xc5\xff\xff\x54\xe1\xb9\xd2\xac\xb0\x3d\x93\x2b\xbb\x0d\x6e\xd8\x89\x43\xbe\x8f\x68\xcf\xab\x6b\xfc\x19\x95\x1a\x51\x7e\xd9\x74\x4f\xbf\x5c\x7a\xd9\x13\xdf\xc9\x5a\x79\x89\x2b\x1d\x0d\x8c\x0a\xea\xe7\x96\x63\x0d\xd7\xf4\x28\xf0\x82\x7e\x30\x05\xc6\xb4\xbf\x35\xb5\x17\x1c\x9c\x6f\xc6\xa6\xc7\x2f\x59\x14\x2d\x29\x38\x16\xad\x4b\x0d\x9a\x7d\x2d\x2a\xf2\x51\x43\x21\x5a\xcf\x57\x94\x03\xf5\x84\xcf\xcd\x00\xd0\x57\x0c\x84\xfb\x9c\x5c\x39\x17\x70\x07\xc8\x59\xd7\xed\x40\xb3\x96\xbf\xd0\xf8\xc5\xaf\x54\xa9\x2b\x22\xe9\xed\xe3\xd9\x62\xac\xd4\xe0\xb8\x17\xc1\x55\x3c\x2a\xc0\xa0\xac\x75\x73\xac\xd0\xbf\x67\x82\xc6\x97\xbf\xec\x2c\x33\xe8\xa5\x00\x7c\xfc\x13\x65\x79\x04\x4d\x3c\xd9\xcf\xca\x97\x82\x81\x71\x6f\xac\x1a\x84\x73\x2d\x0a\x5d\x94\x15\xc7\xab\xae\xbe\x4d\x2b\x96\x80\x88\xcb\xe7\x8e\x48\xf6\x51\xe0\x05\x31\xe7\x26\xfa\x49\xdc\x55\x76\xd6\xbb\x27\x35\xdd\x7a\x3b\x1a\xf6\xd3\x4c\xc6\x2c\x07\x8e\xaa\x19\x7a\x52\x29\xdf\x0e\x33\x5b\xb0\x23\x98\x4b\x4d\x7c\x9a\xa2\xd1\x04\xa3\x30\xb4\x8c\xdb\x40\xc0\xf6\x5b\xca\x40\x80\xd7\x19\x84\x03\xbf\x4c\x43\x9d\xc7\x66\xf0\xbc\xc2\xbb\xda\x95\x88\xd8\xe5\x73\x9e\x1d\x7e\x53\xf1\xff\xe0\xbe\x8a\xfb\x7f\x38\xf6\xa0\xa7\xcf\x02\x2f\x01\xf8\x50\x55\xcf\x57\xa2\x3c\xa2\x0c\xb0\x7c\xb3\x22\xdf\x54\x7e\x85\x44\xec\x35\x32\x51\xdd\xd8\x0c\x64\x7f\xe5\xa2\x30\xbd\x41\x29\x10\x4b\xe1\x70\x94\x44\x05\xb5\x71\xb1\xf8\xa0\xd4\xcb\x00\xdd\x0a\xda\x41\x51\xa5\xde\x51\x6b\xf4\x6a\x99\x2a\x75\x58\xc9\xd7\xf9\x90\x1f\x14\xfa\xfa\x1d\xba\x4e\x3e\xc6\x77\x48\x42\xe7\x99\xe1\x2b\x69\x3c\x1a\x58\xac\x6c\xe8\x2a\xa0\xa1\xc4\xc7\x6a\x39\x7f\xdd\x20\xaa\x95\x57\x00\x53\x2e\x3e\xae\x72\x42\x62\xa8\x12\x20\x9b\x3f\x4e\xb7\xc2\xc7\x9a\xd7\x69\x8e\xd9\x7c\xce\x13\x09\xa0\xc5\x24\xcb\x1f\x5d\x10\xb6\x8a\x1f\x6a\xe9\xd1\x4b\x6a\x0f\xf9\x61\x1d\x39\xc7\x0c\x87\xd6\x64\x6e\xb5\x66\x29\x20\xc5\x8d\x9a\x6e\x45\x2d\x2e\x36\x3b\x59\x94\x2c\x73\xf7\x4a\xfc\x11\xb4\x59\x42\x15\x1a\x64\x3b\x2f\x96\xbb\x26\x66\xd4\x5d\xcc\x67\xa9\x81\x95\xd3\x13\xd3\x96\x65\xf8\xf1\xd6\xd9\xcc\x13\x19\xf1\xce\x89\xc2\x9f\x09\x34\x0d\xf7\x77\x5d\x55\xab\x36\x14\xb5\x62\x57\x8b\xe2\x58\xe0\x55\x4f\xa0\x45\x21\xda\x0a\x3b\xbf\xe4\x89\xe5\x47\xe6\x1d\x4d\xa7\x7c\x55\xa8\x92\x72\x44\xcc\x1f\xc6\x8d\x61\xa2\xef\x9c\x78\x04\xf4\xdb\x34\x05\xd0\xb9\xb8\xae\x0c\x82\x6e\x63\xe5\x95\x82\x1f\xbd\x0c\xd9\xfa\x9f\x54\x68\xff\x74\x08\xb1\x11\x3f\x12\xe7\xdd\x25\xfa\xae\xe0\x2e\xac\x53\xce\x5c\x62\xdf\x82\x6f\x9c\x38\xc6\xfb\xec\x44\x21\x57\x6e\xd6\x08\x33\x13\x36\x9c\xd2\xd3\x0a\x3f\x04\xa6\xee\x88\x72\x40\xc8\x12\xbb\x0e\x8f\x9e\x78\x2d\xed\x27\x15\x9c\x05\x73\x63\xf8\xa4\x52\xeb\x5c\xde\xeb\x41\x2e\x4f\xb4\x3c\x86\xe3\xb1\x96\xda\xab\xaf\x8c\x2b\x92\x86\x6e\xb4\xff\xc7\xcf\x21\x5e\x47\xf6\xb3\xa3\xa5\x1a\xce\xeb\x08\x40\x00\x6a\xdf\xa2\x27\xc5\x7e\x0f\x0a\x42\x70\x09\x8b\x38\x3e\x7e\x67\x6a\xa1\x59\x38\xdc\x5c\x35\xd1\x8a\xcd\x66\xa8\xea\x83\xd4\xe1\xec\xd8\x37\xde\x2f\x29\x63\xf0\x1f\xd7\x18\xa4\xbe\x42\x28\x6c\x5a\x80\x50\x76\xfe\x29\x0d\x19\x8c\x12\xc0\xad\xd0\x98\x38\xad\x8a\xd6\x1f\x4e\xed\xd5\x47\x8f\x36\x49\x47\x85\x1e\x82\x74\x7e\xca\xc7\xc6\xc7\x35\x6f\x6f\xa9\x59\x64\x26\xc9\x87\x69\x06\x70\xbf\x48\xd2\x60\x22\x08\xce\xa6\xe1\xc5\x6a\x30\x64\xf9\x1f\xa6\x02\xbc\x7d\x0b\xcd\x8c\xb4\xea\x9d\xae\xbb\x36\xd8\x7a\xa8\x14\x65\x37\xea\xb4\xea\xc9\x40\x51\xeb\xea\xcd\xb5\x2a\x2a\x62\xbe\x18\x89\xc5\x07\x2f\x64\x5d\x2b\x0b\x99\xd5\x38\x5d\xcd\x97\xa3\x46\x65\xa3\x76\xa0\x93\xdf\x9b\xfa\x59\xd2\x3e\x8d\x3a\x76\xd6\x67\xbb\x77\x54\x77\x9e\xad\x6a\xd1\x8d\x40\xf6\x21\xbd\x16\xd5\x88\xb1\x49\xf2\xf2\xec\x14\xa0\x18\xf3\x14\x39\xa4\x88\x75\xd0\x38\x44\xcd\xfd\x41\x1d\xb6\x07\x62\xbf\x88\x2b\x39\x69\xa1\x54\xed\x33\x8d\x87\xfd\x23\x05\xce\x39\x16\xff\xd3\x7f\xd0\x31\x85\x09\xd3\xc1\xb0\xa1\x00\x47\xeb\x1a\x70\xb4\x5e\x23\xe0\x77\xa8\x39\x0c\x79\x6b\x64\x93\x1e\x4d\x2c\xb8\x38\x75\x71\x47\x8f\x36\xcd\xc0\xbc\x1e\x25\xbd\x59\x9a\xe7\x52\xaf\x2d\xef\x0e\x91\xd2\x8e\x96\xda\xdd\xc7\x6a\x6d\xfb\x4b\xed\xb2\x53\x8e\x35\x9e\xf5\xe2\xac\xa2\xf4\x72\x6f\xd7\xe4\xbc\xaf\x36\x3b\x36\xcc\x6c\x45\xb3\x9f\x35\x02\x25\x2b\x54\x78\xf5\x51\x92\x08\x7f\x03\x13\x08\x61\x31\x1f\x2b\x74\x6a\x37\x8b\x6c\xd2\x89\xd7\x68\xb4\x22\x3f\xbd\x85\x8d\xc2\x05\xc6\x6e\x99\xb9\x38\x75\x59\x2f\x35\x47\x85\x33\x5f\xf1\xed\xa7\xd3\x01\xad\x01\x7c\xa2\x8a\x0d\xc4\xa3\x5b\x89\xec\xea\x2e\x5f\x4a\xf9\x04\xef\x48\x04\x0b\x66\xbc\xbb\x22\xc3\x64\x51\xa8\x5c\x57\x23\xe8\x86\xce\xf1\xd6\x5d\x25\xc1\x24\xbd\x51\x94\xf7\x1b\x1a\x19\xd0\x50\x32\x39\xdb\x67\xfe\xc1\xf9\xe6\x28\x01\xc7\x5d\x8a\x25\x0e\x13\xe3\x25\x1d\x15\x69\x01\x3e\xe5\xc5\xe3\xf4\xea\x91\xc0\x5f\x54\xe2\x29\x57\x95\xe0\xd1\x93\x2d\x0f\x23\x7b\x67\xec\x5d\x53\xde\xa5\xb5\x08\xd8\x15\x08\xfa\x88\x23\x62\xb9\x53\x23\xf8\x3d\xa7\x85\xd7\x2f\x2a\x53\x99\x34\x89\xd7\xbe\x40\xb7\x2e\x12\x53\xe5\x97\xa1\xdc\xf0\xf1\xd8\xf7\x24\x1f\x2a\x67\x0d\x90\x49\xb0\x35\x3c\x08\x94\x13\xd0\x95\x71\xc5\x53\xde\xf7\x46\x99\x27\x8e\x6d\x6b\x07\x89\xc0\xc8\x72\x05\xcd\xe9\x3b\x28\xa7\x3b\xdc\x73\x19\x8b\x02\x5c\xbd\x7b\x42\x61\x81\x80\xa0\x69\xa3\xc6\xbd\x5e\x43\x8c\xe0\xba\xd8\xe5\x60\x11\xe1\x43\x82\x8d\x88\xb2\x59\xf9\xd8\x9c\x4c\x83\x57\x9a\xbc\xa5\xfc\x07\xde\xc4\x4e\xc4\x14\xd3\x1a\x87\xdb\x66\xc7\xb6\x47\xa8\x78\x73\x8e\x14\x28\x18\xee\x19\x55\xf0\xe9\xf4\xd6\x68\xcd\xc3\xcd\x02\x15\xe0\xb6\xbb\xf2\x59\x49\x40\xd9\x70\x5a\x43\xeb\x75\xa5\xc2\xd1\xcb\xcb\x2f\x23\x93\x63\x6f\x13\xfa\x00\x12\x5a\xc0\x78\xb1\x26\xbe\xa9\x74\xa0\xfb\x86\x0c\x2a\x0b\x1b\x25\x5c\x0b\x97\xfd\x4d\x59\xba\x5f\xd0\x22\x27\xb7\xdd\x50\x77\x79\x80\xe7\x02\x7e\x88\x77\xc8\x27\x53\x6b\xdd\xd7\x17\x0e\x37\x19\x6f\xba\xe0\xb0\x5a\xf4\xdd\x02\xd6\xaa\x49\x1d\x86\x69\x5e\x70\xad\x1d\x51\xd1\x55\x95\x39\x5c\xad\xc0\x15\xb3\x15\xbb\x97\xae\x1b\x8b\xc8\x79\x1a\x9a\x02\xb9\xc7\xed\xc9\x59\xc3\xc9\xab\x9f\x1b\x6b\x55\x2e\xbc\x24\xfe\xbc\x9e\xe2\xf7\x54\x6b\xf5\x14\x26\x87\x44\x72\xb4\x54\x21\x3b\x38\x43\x01\x86\xd8\x2d\xd5\xb4\x72\xbb\xe5\xea\xa9\x4c\x60\xce\x2b\x92\x8c\xe7\xb4\xd9\x63\xe4\xef\x93\x26\xbc\xa4\xd5\x29\x5c\xd6\x4b\x2a\x16\x26\x11\x99\x5d\x47\x26\x77\x1f\x3a\x55\x67\x70\x16\xa6\xc3\x35\x97\x1b\x60\xee\xa2\x0f\xc8\xc7\x53\x12\x97\x2f\x35\x6d\xef\x3f\xe8\xd1\x16\x20\x22\xb3\x2a\xda\xab\x13\x3e\x78\xb5\x19\xc6\xa9\x73\x41\x65\x1d\x3d\x8d\xf6\x3c\x59\x29\x65\xaf\xe5\x36\xee\x36\x94\x71\xc1\x4d\x5a\x3f\xc4\x1d\xe9\x79\x4d\xa7\x1d\x11\x0c\x0e\xcc\x01\x8d\xbd\x10\x85\x4b\x2f\x3f\xb5\xff\x50\x95\x69\xa4\xc4\xfe\xa6\x49\x41\x47\xe6\x9b\xab\xd6\xc4\x45\x3f\x2a\x33\xa0\xaf\x2f\xf9\xc2\xb7\xf7\xad\xba\xec\xb9\x9c\x9d\xd7\x46\x79\xc1\x1d\x85\x43\xba\x76\xe1\xbc\x3f\x55\xed\x29\x5f\x8e\x48\x74\x57\x55\x19\x95\xb8\xf1\x6d\xad\x95\xf6\xc9\xd8\xc7\xab\xb7\xc7\x9a\x63\x9d\xc6\xb3\x8a\x6a\x05\xb9\x03\x6d\x65\x8b\x3c\xe1\x04\xde\x8c\x84\x67\x3e\x58\xc9\xfb\x76\xc5\x64\x9d\xc4\x74\x5e\x07\x72\x12\x51\xd9\x49\xcc\x05\x3e\x09\xfe\xf6\x74\xe4\x51\xf4\xa3\xac\x58\xcb\xd3\x81\x25\x1e\x1f\x32\x0d\xac\xfe\xf7\xc7\x8d\xaa\x8d\x99\x88\xb4\xcc\xb6\x6a\x74\x05\x86\x69\x9e\x47\xed\x78\x0d\x26\xb0\x22\xa0\xe4\x7d\x6a\x81\x7b\xc1\xfe\xf1\xa8\x22\x23\xfe\x5a\xa6\x74\x80\xee\x6a\x40\xff\xb4\xc1\x05\xc6\xb7\x1b\xde\x75\x3e\xf6\x7a\x01\x19\x98\xb5\xe7\x54\x75\x76\x77\xcb\xd3\x62\xb6\xc6\x8d\x5f\xf8\x25\x5e\x59\xdf\xa4\xb8\x14\x2b\xf9\x5f\xe2\x35\x4b\xd9\x53\x8d\xf0\x4d\x2c\x0c\x1c\x61\x04\x1e\x51\xf9\xfc\xc4\x7b\x65\xbf\xe9\xfb\x11\xe9\x33\xa4\xf9\x82\xe4\xf6\x5f\x61\x21\xc2\xab\x3f\xce\x8b\x17\xea\x1d\x6c\xf0\x81\x42\xce\x0c\xf1\x37\xb1\x4e\xf3\xdb\x46\x80\xf5\x43\x5d\x2f\xb8\x4f\x0f\x13\xbb\xd8\x67\x75\x6d\x42\x93\x11\x97\x14\xe3\x57\x9a\xc4\x0d\x67\xe6\x7b\x49\xc5\x75\xb1\x29\x6c\x5e\x3c\xe6\x8b\xb8\xb7\xb1\x15\x4a\xa9\x44\xf9\x56\x6d\xb3\x84\xa4\x0b\xc2\x1b\x05\x3f\xc1\xa9\xd9\x96\x4f\x50\xca\x6c\xf4\xd0\x64\xfa\xea\x97\x13\x75\x0c\x40\x2c\x22\x74\x59\xa1\x13\x7b\xdb\xfb\x71\x25\x3a\xd9\xbe\x33\x53\x5f\x2e\x1b\xac\x35\x54\xac\xfb\xb6\xf7\xdc\xfe\xaf\xde\xae\x23\x74\x95\xa1\x72\x66\x22\xe6\x8a\xa2\x1e\xf5\x3e\xb6\x48\x3e\xf1\x5a\xd2\x66\x40\xee\xad\x4e\x93\x1a\x50\x7b\xf1\x41\x9e\x0e\xaa\x9b\x6b\xe9\x28\x2b\x57\x3c\xe5\x02\x78\x07\x91\x0a\x4e\x66\x5a\xde\xa4\xf9\x92\xaa\x75\x15\x51\x11\x5b\xee\xc3\x4b\x83\x5b\xa9\x4c\x6f\x68\x82\xfa\x51\x85\xcf\x21\x7b\xff\x5d\xbe\x16\x78\x5f\x15\xef\xb8\xa2\x28\xbd\x06\x0c\x3b\xe9\x36\x78\x6e\x22\x36\x08\xe0\xb7\xb6\x82\xe7\x94\x5e\x41\x52\xd8\x24\xb4\xc4\xac\x17\x5d\x68\x08\x70\x08\x7f\xb4\xfc\x2d\x3e\xc6\x10\x17\xb6\xb0\xea\xa5\x9c\x55\x8d\xa6\x53\x0e\x74\xb0\x6c\xd7\xf6\xf8\x79\x77\x01\x91\x9d\xb3\xca\xf2\xfe\x79\x97\x7c\xf1\xfe\xda\xbf\xdf\xaa\xc8\x22\x37\xbc\xd6\x1b\xc6\x99\xac\x35\xe5\x95\x30\x56\x91\xdf\xe8\xdc\xc4\xab\xa5\xfd\x6c\x8a\x41\x73\x64\x7e\xa1\x69\xbb\x5d\x4b\xe6\x6b\xcc\xb1\x65\x8f\x8e\x8a\x5f\x87\x53\xb8\x35\x49\x54\x18\x56\x35\xc2\xda\x0e\x37\x03\x3e\x9e\xd4\x60\x98\xda\x59\xba\x2c\x7d\x05\xad\x80\xc8\xc7\x15\x06\x40\x7f\xd4\x99\xf3\xa5\x2a\x16\xf1\xe2\xf8\x46\x61\x11\x2f\x2a\xe6\xe3\x5d\x7a\x15\xfc\x01\x27\xc5\x0b\x3d\x7f\x61\xc5\x33\x2a\x4f\xe9\x4c\x9c\x52\xc8\x29\x3b\xe8\x13\x75\xc2\x75\x7d\x2e\x04\x9e\xae\xa0\xeb\x4b\x1d\x6b\x8a\xfe\x2e\xba\x26\x3c\xd0\x1f\x8e\x7d\x80\xb1\x03\x86\xae\xd2\x54\xf1\xb4\x32\xae\xd8\xbb\x13\xbd\xb5\x7a\x74\x81\xc9\x7a\x36\x29\x22\x11\x53\x96\x0d\x5d\x99\x2c\x6f\x56\xbd\x50\xa3\x63\x33\x7e\x42\xde\xa1\x78\x4d\xc4\x9d\x3d\x13\xed\x5c\x1d\x9b\xba\x18\xb1\x3a\x9f\x84\x63\x4a\xb3\xe7\xb2\xba\xdd\xae\xc9\x06\x39\x25\xb3\x22\x6c\x46\x63\x0d\xbb\xea\x3d\xfa\x45\xc0\x29\xd6\x95\xce\x6d\x98\x0e\x86\xb6\x20\xad\x67\xd4\x0c\xb9\x02\x8e\xf8\x18\x70\xc6\xf7\xa9\x94\xed\xb4\xda\x0f\xce\xf3\xa2\x79\x53\x2d\xd5\x65\xb2\xb4\x8f\xef\xe2\xba\x32\x4b\xda\x33\xd9\xbe\x12\xfe\x7c\xd3\xc4\x6d\x1b\x31\x2c\x0b\x55\xa2\x0d\xa5\x40\xf1\x31\x0d\x10\x91\x1f\xf7\x19\x68\x1b\xac\xc2\x19\xa5\xfb\x43\xaa\x81\xce\x14\x85\x76\x71\xe4\x71\xf7\x74\xff\x74\x60\x63\xb6\x5b\xc6\xa7\xa0\x4a\xcd\xc7\x35\x18\xdc\x32\xae\x32\xa1\xe0\x86\x50\xba\xba\xaf\xca\x58\xf7\xd5\x30\xe8\xa5\x59\xbb\xbc\xac\x15\x20\x8b\x01\xcd\x22\x5b\xcd\x57\x18\xa9\x7a\x8e\x7c\x63\x19\x70\x86\xb5\x11\x20\xaf\x4b\x81\x52\x2f\xfe\x65\xdf\x59\x8c\xf2\x22\xb3\x39\xc7\x74\xa8\x5f\xff\xca\xd8\x13\x1c\x7e\x45\x9b\xcf\x98\x2c\x5b\xab\x88\x3c\xdc\x0c\x14\x53\xf6\xa6\xa3\xb2\xaf\x46\x71\xc7\x66\x09\x19\x3c\x39\x67\xa4\x5b\x2a\x7a\x9b\x46\x8c\x92\xc3\x43\xd8\x97\x29\x29\x50\x6b\xbf\x78\x9c\x9d\x2a\xa5\x95\x7b\x5c\x5f\x84\x9c\x45\x4c\xbe\xa1\x64\x82\xa7\xad\x01\x0f\x41\x59\x3d\x0f\x53\x76\xb8\x14\x8b\xf9\x72\x0c\x38\x1b\x84\x72\xa0\x20\x04\xba\xa5\x2a\x5f\xda\x45\xa6\xe1\x61\x5d\x0c\x10\x15\x4b\x19\x2d\x10\x1c\x39\x64\x88\x88\x9f\xd3\x9f\x8a\xfa\xb9\x34\x56\x09\xc4\xb9\x77\x5b\x6b\x51\x5a\x80\x3b\x27\x6e\xf4\xfc\x37\x7f\x73\xa2\x1c\xf6\x36\x68\x67\xd8\xfa\x02\x1a\xba\x58\xee\x7f\x9b\xc6\x24\x2e\xe5\x0e\x2a\x10\xb4\x8a\xfe\xe1\xdf\x68\x29\xde\xfa\xd6\xd8\x63\x3e\x1e\x54\x6d\x34\x9e\x74\x2c\x95\xd4\x69\xd6\xe3\xab\x4f\x69\xd9\xd6\x53\x75\xc1\x55\xd8\xb7\x03\x42\x31\x68\xbd\x1f\x87\x23\xf2\xe2\xce\x3d\x9b\xd8\xcc\xc4\x8f\xa9\x1d\xfd\x9c\x52\x85\xdf\x8d\xbd\x0c\xcb\xc8\x16\xf6\x2a\x84\xff\x7b\xa8\x66\xe0\x6c\x39\x9d\x31\xc9\x71\xe5\x73\x75\x1f\x5b\xa4\x18\x7e\xd6\xd4\xa1\xe2\xa8\x88\x7a\xd0\x2e\x54\x22\x6e\x68\x54\x88\xa9\xfa\xf3\xae\x7c\xd8\x8e\xa3\xd0\xf8\x14\x75\xeb\x34\x80\xfe\xa7\x6b\x5d\x30\x06\x26\x4a\x0a\x13\x25\x33\xf4\x66\x98\x82\xa9\x4a\x6f\x02\x4c\xbe\xad\x6a\xb9\x03\x93\xe7\x2f\x53\x98\x82\xe5\xe8\xcc\x58\x79\xdd\x5e\x56\x0d\xfa\x5b\x4a\x5f\xe7\x31\x6c\x26\x6c\xd5\x81\x05\x5a\x7c\x3b\x6a\x16\x98\x22\xed\xd9\x82\xfc\x56\xb4\xbc\x94\xf3\xd8\x22\x49\x5a\x51\x8e\x33\xf9\x17\x28\xee\xa6\x91\xf8\xde\x73\x58\xf1\x30\x14\xff\x4f\xea\x65\x63\x04\x7c\x4a\x9c\x57\x54\x12\xaf\xe1\x46\x2b\x12\x6f\x0e\xc6\x21\x4a\x1c\x3f\xff\xec\x84\x82\x3d\xbc\x99\x27\x5b\xaa\xd6\xf2\x90\x03\x30\xe7\x9f\xe1\x15\x2b\x37\xf0\x34\xf0\x21\xf4\x78\xf0\x3c\x5f\x68\x29\x9b\x54\xf4\x4e\x30\x18\x9e\x9e\x28\x8f\xa3\xbb\x34\x4a\x50\x71\x3a\x8d\x01\xcc\xa6\xa5\x14\x7a\xb9\x1e\xd5\xbe\x7d\x3c\xc4\xae\x50\xfa\x23\x36\xd9\x0d\xc7\xb1\xda\x39\x95\xdb\x95\x8b\x8f\x35\x59\x1c\xd9\x8c\xc4\x2d\x9d\x0a\x64\x79\xf1\x18\xd5\xe8\x43\x21\x42\x3f\x83\x38\x0e\xf3\xec\xf6\xd4\xb6\xfb\xf3\x65\xf0\x10\x57\x44\x42\xd8\xa5\x5b\xfc\xe8\xf4\x88\x79\xbd\x63\x66\x14\x0e\x03\x48\x10\x95\x8d\x79\xd3\x95\xed\xab\xec\xe1\xaf\x35\x87\xf1\x28\xe9\x01\xf1\x8f\xe0\x00\x88\x13\x3e\x56\x43\xa1\x1b\x41\xe0\x4c\x1c\x1a\x55\x7d\x9f\x63\x16\xf7\x79\xe7\x72\x7a\x3a\x50\x72\x8a\x7f\x54\x6b\x58\x0b\x77\x41\x49\x55\xb1\x83\x7f\xa8\x62\x92\x0f\x7d\xbd\xa1\x9d\x99\x9c\x10\x95\x2a\x68\x3e\xa9\xb8\x85\x27\x2b\x89\xd3\xaa\x19\xce\x2a\x07\x9b\x8b\xca\xd6\xfa\x33\x5d\xe6\x05\xcf\x93\xff\x68\xaa\x8c\xb3\x6f\x5f\xd3\x0e\x86\x71\xba\x56\x51\x23\x07\x26\x4c\x56\x49\x45\xc4\xed\xac\x44\xb9\xcd\xf0\x36\xd0\x2a\xfa\x53\xfa\x7a\x41\x43\x97\xd7\x80\xf2\xc0\x95\xba\xf6\xcb\x20\xea\xac\xda\xbc\x98\xa1\x2a\x2f\xbe\x1e\x88\x58\xf6\x3a\xd4\x9e\x69\x3f\xa9\xd3\x6c\x34\x9d\xbe\x05\x2f\x74\x71\xd1\x1b\x4e\xba\x48\xf8\x2f\xaa\xa4\xe1\x2c\x4c\x13\xde\xbf\xc1\x98\xbb\x8e\x1f\xe0\x13\x85\x0e\xe8\x99\x38\x96\x15\x12\x75\x0f\x24\xca\x7c\xac\xf0\x6b\xce\xe9\x3b\x27\x4a\xa3\x73\xa2\x73\x80\x9a\x1b\x04\x5c\x11\x00\x02\x2d\x2e\xcc\x60\xa2\x6d\x0e\xb5\x65\xf8\x56\x61\x9e\xff\x4e\xa0\xaa\x2a\xb7\x14\x70\x20\x86\x12\x53\xf9\x0d\x2e\x3b\xf2\xda\x43\x17\x94\xec\x7d\x9a\x0d\xfb\x06\xca\x9b\xf5\x9c\x26\xe7\xd5\x6b\x06\x96\x38\x4d\xc2\x3d\xdb\x40\x98\x84\x28\xf3\x7d\x65\x0f\xf9\x43\x5c\x95\x70\x7c\xd5\xda\xce\x14\x32\x84\x59\xb7\xc7\xba\x65\x81\x82\x3b\x7f\x41\x45\xd6\xb1\x1c\x4f\xfc\x8b\x5c\xf6\xc0\x2b\xbf\x39\x95\xca\xef\x5f\x6c\x0e\xac\x49\x2a\xbb\x31\xe7\x75\x52\xae\xdb\xbe\xcd\x1d\xfe\x1a\x02\x6d\xb6\x8a\x2f\x2f\x08\x4b\xc5\x4d\x15\xf8\xde\x54\x48\x9d\x3c\xea\x25\x60\xf8\x2f\x79\x4f\xcb\x83\xd2\x78\x45\xba\x22\x96\x9b\x0d\xa7\xf1\x33\x2d\x39\x76\x64\xfe\x15\x92\x32\x26\x38\x30\x46\x4f\x9d\x52\x99\x53\x02\x4f\x47\x45\x7f\x37\x81\xf2\xc7\xdb\xe0\xf0\x4e\xed\x71\xaf\xea\xf2\x3d\x3d\x51\x28\x54\x5c\x15\xa2\x8b\xc7\x5b\xca\x6c\xe4\x47\x2e\xcd\x4b\x57\x6c\x56\x46\x88\x04\x36\x41\x25\x6a\x5d\x73\x39\x3f\xa0\xaf\xc0\xcd\xbc\xa9\xb8\xfd\x6f\x04\x4a\x9b\xe6\xd2\x58\x57\x85\x7a\x69\x39\x2d\xca\x65\x06\x8b\xdc\x49\x2c\xec\x7c\xe2\x1b\x64\x79\x3e\x1a\xd8\xce\x9c\x02\xe9\x43\x73\x02\xb8\x8c\x6f\x07\xaa\x0b\x74\x2d\xd0\x2b\x0d\x02\x05\x51\x1d\x55\x26\x86\x96\x7b\x62\xd1\x8a\x9d\x53\xe8\x5e\x9a\x38\x68\x3a\x7d\x9f\x0a\x76\x7c\x8c\x11\x82\xd8\xe1\xbd\xb1\x4f\xc8\x6f\xb9\xa7\x63\x12\x13\xaf\xe5\x51\x3e\xa7\xf1\x9d\x2a\xca\x78\x8a\xf6\x15\x27\x96\x5f\x3e\x60\x71\x89\xa3\xef\x96\x4f\x6c\xdf\xcc\x0e\x1c\x68\x0e\x46\x09\xab\xb1\xa2\xd9\x84\xea\x90\xa0\xeb\x1b\xce\xd8\xe7\x91\x36\x76\x88\xe3\x9e\xed\x94\xb1\xf5\x2f\xfc\x92\x00\xc7\x69\x85\x10\x10\xb9\xef\x25\x1d\xf9\xc7\xbf\xa4\xb4\x51\xde\xd5\xda\x28\xef\xd6\xf8\xcd\x2e\x50\x9a\x10\xa7\x62\xd4\xe5\x00\xb0\x4e\x1d\x7c\xbd\xb6\x9c\x8f\x59\x81\xcf\xf0\x0b\xc1\x7b\x93\xb7\x53\x73\xe7\x71\xd4\xc5\x62\x0c\x46\xe9\x55\x2d\xb0\x7e\x55\x41\x0b\x5f\xb7\x59\x3a\xe3\x31\x26\xb8\x18\xc4\x9f\x3f\x51\x2e\xc1\xba\x10\x11\x93\x7f\x1b\x7d\x88\xa9\xc0\x88\xfd\xf1\xa9\xbb\xac\x54\xc1\xac\x6b\xf5\x60\xbb\x51\x1c\x0d\xa3\x24\x7d\xcc\x83\xcb\xcf\x2b\xa8\xd7\xdb\x48\x24\x4e\x6b\x09\x05\xce\xe5\x51\x83\x81\xff\xbf\x6b\x03\x1d\x38\x70\x70\x0b\x56\xfa\x08\xdf\xce\x29\xc6\x41\x3f\x8a\x0b\xb7\xc5\x00\xe9\x73\x5e\xb3\xed\xce\x2b\x5d\xeb\xcc\x16\xf0\x66\x43\x6d\x1c\x0b\x2b\x46\x2a\xfe\xf8\xde\x58\xd5\x9c\x77\xb4\x44\x21\x96\x14\x61\x56\xa2\xdc\x2d\x6d\x0e\x50\xe9\x1a\x02\x67\xea\xa2\xe0\x7e\x9a\x0f\x23\xea\xb1\x39\x28\xc7\x27\xf4\xa4\x85\x0a\xee\x73\xff\x3c\x4a\xd6\x4c\xd6\x99\x51\x15\x8a\x6b\x63\x9f\xbd\x6e\xaa\xa7\xf7\x67\x53\xc5\xf8\x23\xf3\xcd\xcc\x86\x69\x86\xbc\x94\xcb\xd4\xf4\xbc\xa4\x64\x3d\x15\x4b\x1e\x5c\x6a\xf6\x47\x49\x27\xb3\x1d\x32\x57\x77\xad\x7d\x5f\x56\x3e\xa3\x07\xde\x8d\x0a\x28\x6d\x14\x77\x67\x68\x41\xd2\xfb\x34\x76\x52\x46\x71\xa0\x1a\x70\xbb\x82\x87\x35\x03\xfb\xbc\x87\xe7\x3d\x0c\x94\xa1\xd7\xee\x89\x42\x25\xdc\xa3\xde\x35\x0a\xd5\xe7\x10\xf6\x09\x1a\x87\x7e\x94\xe5\xc3\xb5\x39\x34\x9b\x43\xe2\x23\xe7\xb0\x3e\xe2\x33\xb7\xb4\x37\xde\x5b\xe8\x6d\xa3\x4f\xfd\x00\xd5\x7e\x0c\xb2\x87\x94\x5c\x48\x50\x52\x3e\x39\x2e\x61\x68\x28\xdd\x69\x5a\xf8\x50\xcd\xfe\x9f\x69\xb3\xc2\x7b\xbc\xa2\xb6\x05\x74\x33\xf1\xd8\x1f\xaa\xd2\x55\x3f\x1d\x65\xf9\xac\x47\x98\xfe\x06\x8a\xf6\xa2\x2b\x42\x57\xcc\xff\x32\xf6\x25\xe0\x8b\xce\x3c\x2e\x5c\x35\x3c\xc6\xf9\xed\x8c\x2b\xaf\x6a\x9b\x24\xf1\x81\x03\x87\x9a\xfb\xf6\xed\xf5\x20\x47\x26\x7f\xa3\x7a\xfa\x63\x45\xfe\x66\xc1\x07\xc7\xb2\xf0\x29\xce\x65\x6d\x07\xf0\x99\xee\x09\x20\x04\x72\xca\xaa\x8b\xa2\x35\xfc\xe3\x71\x95\x93\x52\xbe\x2c\xd9\xda\x75\xd8\x1c\x47\x05\x56\x38\x11\x94\xf5\x2c\xce\x69\x4d\x5d\xcf\x72\x64\xb2\x8f\x93\xac\x2c\xaf\x1b\x49\x2b\xa7\xe0\xd8\x43\xe6\x5a\xce\xd3\xc9\x42\xa7\xaa\x7c\x0c\x52\xba\x2f\xaf\x56\x74\x76\x7c\xf0\xb6\x9a\x66\xcb\xb6\xb3\xdb\xc3\xd3\x4e\x53\x18\x86\x3c\x04\x9a\xfb\xd8\x55\xe0\xef\x80\xe1\x70\x47\xa5\x10\xd7\xc7\x15\xa8\x62\xc3\x99\x41\x5d\x0d\x5e\xf4\x20\xaa\xcc\x24\xb9\x81\x42\xee\x9c\xd2\x72\xc1\x56\x85\x2f\x65\x6b\x09\xe7\xc6\xf4\xb9\xd9\xd9\x0b\x9e\x06\x16\x7d\x63\x14\x75\x8c\xb3\x48\x46\x0c\xf1\x3e\x0d\x56\x3e\x9e\xda\x6b\x0e\x1c\x38\xd8\x8c\xa3\x65\xa9\x2b\x61\x16\x81\xd4\xc5\xc7\x75\x82\xe3\xb6\x33\x0a\xbd\x16\xbd\x8c\x3d\x0f\x7d\xf4\xe2\x80\x2b\x26\x34\xce\x16\xcb\x79\xb4\x7b\x39\xc5\x8b\x2e\x6c\xb1\x71\x64\x92\x22\x6a\xa8\x46\xc1\xd6\x15\xcf\x1f\x22\xfc\x0e\x57\xe8\x50\xaa\xba\xa4\xa0\xcb\xd3\xa2\x4c\xfb\xf6\x35\xdb\x69\xc7\xf6\x4c\x3e\x53\xbe\x41\xe5\xbd\xb1\xa4\x21\xf5\x87\x9c\x17\xd6\xb3\x8e\x7f\x5b\xc6\xaf\xb1\x2d\x74\xdb\xf6\x9a\x42\xc3\x5f\x73\xe5\x24\x38\xfb\xe7\xd8\x44\x58\x8e\x07\xab\x99\x10\xb7\xe8\x1d\x0a\x3e\x68\xba\x26\xb8\xd4\x5c\xed\x47\xf9\xd0\x7a\xe8\xb0\x83\x41\x39\x1e\xe7\x7a\x9d\x62\x9e\x09\xc3\x74\x44\xd2\x75\x68\x52\xa3\x4a\x7d\x42\x71\x09\xb0\x69\x48\x88\x41\x6b\x84\x10\xfc\xfc\x3e\xb8\x9c\xad\x8d\xc2\xfe\x72\xba\x42\xfb\x85\xd2\xa9\x14\x22\xf8\x47\x2a\xb1\x21\x31\xd1\xce\xe3\x1e\x28\x70\x61\xec\x75\xfd\x78\x5d\xd1\x31\xb4\x76\x82\x67\xb5\x19\x2c\x6f\x58\x89\x4e\xa3\x5e\xc1\x27\x41\x63\xe1\xf0\xd6\x79\xad\x2b\x71\x67\xea\x95\x92\x10\x4b\x96\xa6\x05\x67\xe5\x8e\xe6\xe0\x52\xad\x75\xc7\x18\xc9\x0b\x13\x8b\xc2\x9c\x53\x1c\x57\xf2\xe3\x35\x4e\xcb\x07\xc9\xdb\x8c\x57\x24\x2c\xee\x68\xb7\xf0\xf1\x58\x0b\xfe\xf7\xf7\x78\x30\xe0\xa7\x4a\xd9\xfd\xd9\x96\xea\x26\xdd\x56\x12\xdf\x3f\xa1\x87\x85\x44\xe0\x09\x2d\xcd\xf4\xd4\x44\x05\x29\x1f\xd1\x96\x23\xbd\x8b\x6d\x4e\x13\x4b\x5c\x38\xfd\xa8\xc6\xfa\xba\x39\x48\x93\x74\x98\xc6\x0e\xa3\x87\x5d\xf8\x06\xe2\x7b\x3e\xf1\x7a\x05\xe5\x26\xd4\x50\xfc\xf0\x9b\xf4\x10\x85\xb9\xa0\x54\x4d\xe3\x51\x41\x02\x4b\x07\x97\x1c\xda\xb1\xbc\x0f\xe1\x35\xb8\x92\xb3\x29\x48\xc1\x69\x46\xd5\x7a\x2f\xaa\x84\xef\x2e\x76\x17\x09\x91\x2a\x0a\x68\x2b\x2f\xef\xf5\xea\x35\x9a\x8d\x5c\x29\x6f\x33\x06\x9c\xf7\x6f\x3c\x1a\xa4\x04\x30\x23\x05\xc3\xf8\xd3\xb1\xf7\x56\x3e\x3e\xae\x0c\x49\x45\xeb\xf9\x3d\x8c\x33\x31\xed\xd7\x5d\x3a\xed\xff\x10\x85\xa6\x97\xce\x29\x94\xcc\x85\xb1\x36\x30\xba\x4a\xbc\xdd\xad\x2b\xf4\xe8\x38\xb7\xd2\xe8\x8e\x4d\xb7\xa4\x80\xaa\x69\x88\x7e\xe9\x15\x9d\x1e\xd0\x2a\x2b\xd2\x8d\xf4\x33\xa2\xc2\x4d\xd7\x2a\xff\xa2\xb5\x5b\x3c\x80\x89\x80\xcc\xf9\xaa\x35\x19\xba\x4b\xd8\xae\xfe\x95\x66\x13\xd1\x73\x41\x77\x69\x5a\x80\xa5\x4c\x97\xff\xf6\x57\xfe\xc9\xd2\x57\x7e\x61\x71\x4f\x19\xf2\x48\x35\x8c\x2e\x50\x44\x15\xb5\xc7\xfb\x79\x1a\x81\x98\x0b\x7f\xa8\xb0\xf5\xdf\xa5\x9f\x41\x94\xf4\x1d\x2d\x8f\x7a\x15\x41\x96\xc8\x25\x2a\x99\x81\x7f\x86\x4d\x12\xe0\x86\x87\xc1\x5e\xdf\xf8\x5a\xfb\x1b\x14\x8b\x81\x03\xf0\x36\x06\x2f\xae\x6c\x8f\x16\x0a\x40\x3d\xd7\x95\xb7\x97\x16\x0e\xf3\x06\x77\x1d\xcc\x5b\x36\xd3\x27\xa0\xbf\x00\x27\xe9\x62\x9c\xe7\xba\xeb\x20\xc3\xfe\x5e\x5b\x34\xa0\xb2\x7c\x43\xc3\x2c\x76\xb5\x68\x28\xa1\x29\x76\x09\x23\x51\xc2\x3c\xc5\x0f\x7f\x66\xa2\x32\xae\xfb\x81\x2a\xbb\x7e\x4a\x83\xcc\x41\xff\xcb\x41\xc2\x96\xe1\xe3\xc6\x97\xbf\xec\xc2\x67\x62\x29\x88\x2a\xa1\xcf\x7c\xce\x51\xc9\x06\x4f\xf5\xcf\xa9\x64\x8c\xe5\xee\x9d\x8a\x00\x0c\xe3\x3e\x31\x29\x1e\xf3\x39\x4b\x1a\x46\x69\x9c\xf6\xa2\xbc\x98\xf1\xd5\xd2\x9f\x6a\x36\x22\x26\x9d\x50\xc8\xdc\x22\x11\xf5\xfa\xc5\xac\x1f\x43\xa8\x86\x60\x67\x83\x38\x29\xbe\xea\x3d\x0a\x99\x05\xdd\x30\x5d\x96\x59\x6a\x46\x59\x16\x15\x3e\x5e\xc0\xf4\x80\xa6\x05\x1f\xb7\xa6\x99\x02\x8b\xcd\xa8\xc3\xa2\xc2\x62\xcb\x58\xfe\xa6\xc8\x7c\xd5\xec\xf7\xdd\xcc\xda\xd7\xc5\xb1\x45\xe0\xfd\x1a\xd0\x5f\xd3\xf8\x6b\xc7\x5e\x5a\x59\xa0\x47\xf4\x7a\xf8\x64\xaa\x24\x76\x70\xbe\x49\xa2\x73\x14\x4c\xe2\xc1\x7f\x46\x33\x80\x8f\xc7\x2f\x46\x2a\xc8\x2b\x27\x29\x07\x64\x8e\x41\xb4\x63\xa2\x1a\x97\x3b\xa6\xaa\xfb\x8b\x8b\xcd\x7c\x2d\xe9\x64\xe9\x00\xc9\xbc\x78\x9f\x6b\x64\xec\x17\xbc\xcf\x94\x49\x46\x5d\x43\x10\xbd\x0c\x55\x50\xf6\x0f\xa3\xb8\x55\x66\x28\x0d\x65\x94\x65\x39\xb5\x43\x8a\x01\x94\x3f\x06\xfc\x9b\xd4\x62\xe1\x3f\xc2\x9c\xe2\x8f\xbb\x78\xc7\x84\xe1\x28\xb7\x1d\x40\x4f\xc4\x2f\x9f\x1e\x1d\xe6\xcf\x7d\x15\xbf\xee\x22\x5a\x75\x85\xcd\x8e\xac\x6a\x47\x0b\x83\x16\x71\xf4\x67\x53\xad\xd5\x72\x23\x1e\x9a\xa8\xf2\x4e\xd6\xf5\x3b\x59\x57\x7e\x60\x26\x49\xd2\x51\x12\xda\x81\x4d\x8a\x39\x5f\xe3\x3c\xaf\x0d\x5e\xd6\x89\xee\x28\xc6\x89\x0d\x27\x56\xf5\x2f\x30\xdd\xf8\x1f\x02\xff\x4c\xed\xb1\x22\x33\x69\xd6\x89\x12\x93\xad\xa1\xae\xef\xd0\x73\x07\x0e\x70\x78\xf2\x03\x9a\xd1\xce\x59\xf7\xe0\xbc\xfc\x7f\x27\xd1\x35\x1c\xe5\x7d\x12\x74\x75\xc1\x8f\xb7\x52\x67\x1d\x5e\xa7\x87\xe9\x92\x91\xdb\x2a\x25\x7b\x5f\x45\x1c\x69\x6e\x88\xa2\x88\x30\xe1\x0f\x70\x7f\x58\x19\xef\x06\x7a\x87\xf8\x6c\xac\x02\xd0\xcb\x95\x6c\xbd\x6d\xe0\x43\x81\x5f\xfa\x7d\x95\x02\xfd\xbe\x52\x22\xea\xa4\x83\x28\x31\x0c\x09\x40\x56\x7e\x9a\xee\x8f\x8f\x55\x59\xbf\x18\xd9\xbc\x63\xd6\xf6\xf8\x7d\x1e\x6f\x1d\xa1\x10\xaf\xa0\x98\xe1\xdf\x0d\x94\xda\x34\xe4\xea\x50\x9a\xbe\xaa\x94\x61\x1e\x57\x40\x95\x2f\x72\x24\x85\xc8\x96\x7d\x12\x45\x23\xa8\x1c\xdb\xd2\x6a\x79\xce\x75\xbd\xd3\xbc\x88\x8a\xd1\xb6\xe6\x31\x2b\x66\xf1\x49\xa5\x0e\x61\x57\x3b\x9a\x2f\x89\x55\x50\xba\x87\xb5\x9c\xec\x72\x3a\xbb\x50\x9d\x2b\x66\xaa\x7b\xfb\x93\xc0\xeb\xd2\x87\x69\xd2\x19\x09\x9e\xcd\xa9\xce\x79\xb3\xb8\xcd\x3a\x3d\x23\x93\x1c\x8b\xac\xe7\x59\x38\x52\xdb\xe2\xa2\x6b\x62\x6c\xc7\x0a\x97\xeb\x6b\x92\x92\x85\x97\x34\x48\xca\x87\x2b\x3b\x8a\x2f\x2c\xf5\xec\x20\x6f\xa7\xcb\xb3\xaa\x0c\xf2\x46\x45\xe1\x86\x06\x37\x32\xdd\x6b\x4a\xd2\x75\xbd\x32\x86\xb2\xa8\x40\x0e\x26\x22\x80\xb4\xc9\xf1\x49\x9d\x7e\x28\x25\x53\x8c\x31\x71\x54\xbb\x0b\xca\x25\xea\x42\x25\x1a\x4c\xa2\x63\xb3\xfe\xef\xae\x06\x6a\x0c\x5c\xd5\xbc\x5c\xbd\x8a\x6d\x4c\x35\xfb\xc8\x3d\x83\xe4\x2e\x65\x6d\x47\xee\x73\x5a\x89\x5c\x9c\xae\x51\xb5\x5a\x6c\x26\x69\x56\xf4\x2b\x56\xf0\x4a\x47\x6f\x5a\x43\xfc\xe0\xbc\x40\x93\xf9\x77\x64\x9c\xf9\x12\xf1\x34\xfd\xeb\xef\x35\xed\xb1\xd0\x0e\x0b\x45\xfc\xbc\xa4\x94\x5d\x2e\x05\x3e\xfe\xee\x44\xb9\x35\x39\x89\xef\x79\x93\x5e\x0d\x55\xe5\x54\x02\x28\xbb\x9d\x13\x0d\x65\xc3\x95\x73\xf4\x5c\x07\x8b\xcc\xac\xe9\x76\xa3\x6c\xd0\xf0\xe5\x21\xee\x1a\x89\x33\xda\xe7\x39\x21\xe6\x90\x32\x8f\x55\xcd\x60\x53\x97\xe1\xa6\x07\xb7\x73\x24\x8d\xc2\x65\x94\x0c\xd1\x1a\x27\x59\x53\xae\x1a\xbc\xad\x57\xb5\x69\xed\xce\xf2\xf5\xc4\x51\x51\xc4\x56\x69\x72\xff\x6b\x84\x92\x8e\x81\x77\x50\x36\xe5\x2b\xc1\x13\xba\x75\x32\x5b\x2e\x19\x82\x20\xc1\x03\x14\x14\x1d\x3d\x40\x07\xaf\x73\x9b\xd6\xa9\xe0\x59\xa5\x9e\x9f\x0d\x4c\x1c\xaf\x35\x68\xb4\x23\xd6\x47\x0f\x88\x8f\x6b\xf8\x86\x87\x50\x2d\x0e\x6d\x87\xe9\x18\x4a\x90\x66\xc9\x35\x19\xfc\x0a\xff\x9f\xfc\xa3\x9f\x53\xd8\xc5\x4d\x25\x91\xb1\x59\x53\xe7\x7d\xb5\x09\x5f\x21\xba\x7b\xe9\xf8\xf9\x8e\xaf\x77\x0b\x6f\x9b\x70\xb9\x93\xa5\xc3\x86\x8f\x51\xa0\xf3\xca\xc7\x0a\x63\x15\xc6\x23\x96\x10\x42\x65\x16\x99\x11\x1f\xd7\x49\xa9\xae\x44\xe4\x1d\xc1\x69\xb6\x64\xad\x1e\x72\xb6\xee\xfa\xe9\x71\x9a\x0e\x49\xcf\xb9\xa1\x48\x3d\x1b\x5a\xf8\x6d\x43\x95\x25\x5c\xa3\x7e\x8f\x1a\xc2\x3f\x18\xfb\x4d\xe8\x2f\x94\xc2\xd3\x5f\x28\x5b\xcd\x4b\x5a\xce\xf8\x5a\xa0\x3a\xef\x5b\x78\xec\x88\xa7\x8f\xe3\x87\x5d\x01\xb5\x5c\xcd\xc1\xa8\x81\x7d\x02\x8b\xdb\x4e\xa1\xf3\x17\x17\x97\xca\xf5\x6c\x30\x4a\x04\x99\xc3\x94\x1e\xa0\xc3\x6f\x6b\x07\xd3\xdb\x18\xcc\x78\xca\xfd\xf1\x13\x9e\x18\x30\x4a\x58\xff\x1f\xe1\x33\xe7\x16\x48\xed\xff\x6f\xba\x19\x71\x35\xa0\x9b\x41\x8c\xc0\xca\x0e\x7c\x82\x04\xd1\x41\x51\xbd\x84\xef\xae\x89\x72\xf6\xe8\x9b\x28\x1b\x98\x84\x45\x78\x91\x3e\xc0\xc9\x16\x69\xf0\x1d\xcc\x1d\x5c\xfc\x19\x7a\xbc\x48\xf5\xde\x43\x31\x07\x59\x18\xa0\x8f\x80\xeb\x9c\x19\xab\xd0\xef\x64\xa0\x89\x05\xb8\x77\x89\x93\x3c\x75\xf6\x93\x17\xa6\x62\xfb\xc3\x5f\x6b\x46\x1d\xd3\x4f\x69\xdd\x91\x92\x80\x22\x19\x9c\x71\x62\x60\xe9\x8a\xcd\xf2\xbe\xe9\xa4\xab\x6e\xd7\x65\x43\x04\x15\x0e\x4f\x2b\x79\xec\x5f\x6c\x8e\xba\x29\x9b\xd4\xb2\x92\x2c\x14\x7c\xb4\xf5\x38\xc2\x51\x16\xfd\x06\x84\x6b\x1a\x1d\xf3\xf5\x25\x82\x5c\x37\x54\x9b\x9e\x75\xfb\xf8\x44\x91\x65\x32\xcb\xa0\xad\x64\x0e\x8f\x9c\x7b\xc2\xba\x5e\xfb\x23\x7a\xc1\x2c\xfa\x1b\x78\x52\xda\x45\x2a\x5c\x48\x77\xf0\xf3\xd6\xdd\x61\x96\xb6\x4d\x9b\xd1\xd0\xa2\xf2\xa0\xf0\xe4\xb5\x1b\x54\x94\xe4\x43\x2f\x2d\x89\x5c\x0e\x66\xac\x7c\x5c\xe7\x0e\xd9\x5f\x1b\xa6\x61\x16\xe5\x6b\x68\xa5\x62\xb1\xfd\xa1\x2a\x74\xbd\xa5\x50\x0d\xff\x4f\x65\x0b\x5f\x89\xcc\x2e\x0f\xde\xb9\x48\x10\x0c\x4c\xe1\x4d\xca\x14\xa5\xd9\xdc\x70\x9a\xcb\x67\x48\x04\x80\xff\x66\xac\x08\x76\x27\x5d\xc5\x6a\x90\xf6\x46\x31\x96\x5f\xe9\x32\x7a\xc8\xf4\x86\x2b\x13\xb7\x23\xc2\x1d\x78\x55\xad\x39\xe8\x17\x8b\x45\xab\xb2\xaa\xbf\x3b\x55\x8f\x5d\x38\xdc\x1c\x25\x9d\x28\x67\x2a\x95\x22\x3c\x04\x4a\xa3\x4f\x7b\x90\x93\xc9\x5f\x66\x67\x69\xd3\x14\x26\xa7\xaa\x4d\x9e\xc5\x14\x11\xec\x47\xc3\xff\x95\xf2\x99\x31\x83\x61\x4c\x22\x96\x80\x97\xa0\x48\x70\x3d\xf0\x05\x83\xeb\x0e\x1b\x99\x66\x26\xe9\x59\x1e\x5d\xd8\xe6\x4f\x28\xf2\xfd\x75\x95\x3c\x9c\xd1\x52\x7e\xa0\x90\x8a\x31\xf9\xf6\xfb\x26\xfa\xd8\x36\xcc\x06\x22\x80\x6b\xca\x27\xf5\x5a\xf0\x79\xa3\xd2\x0c\x87\x26\x8e\xc5\xa5\x01\xc3\x03\x7d\x13\x01\xe9\xfb\xc1\x06\xaa\x05\xcb\x62\xd5\xb5\x16\x48\x2d\x31\xe2\x76\x84\xf4\xde\xca\xcf\x08\x94\xd8\xb3\x9a\xc3\x51\x5e\xa4\x03\x9b\x3d\x4e\x35\x1f\x17\x18\x96\x0f\x11\xab\xe9\x45\x45\x87\xbe\x4a\x5b\x06\xff\x7f\xb5\x47\xed\x80\x4c\x85\xd2\x68\x52\x2c\x87\x7d\x0b\xae\x5b\xab\xec\x10\x3e\xa9\x11\xf3\x28\x37\x86\x78\x34\x60\x79\x2c\x71\x58\x68\x28\xeb\x05\xc5\xbf\x1b\x65\x83\x34\x8a\x31\x1f\x99\x74\xad\xa9\x24\x17\x15\x48\xa8\x6b\xb2\xd0\x52\x74\xaf\x53\x27\x31\x2d\x79\x4e\x05\x8a\x19\x2c\x17\x69\x51\x85\xfe\x0a\xea\x12\x7c\x0c\xd5\x0c\x67\xb6\xf6\x45\x1a\xb2\xd8\x9d\x8e\x05\xde\xd6\xe3\x24\x39\xcd\x88\x7a\x1b\x0d\x65\xae\x93\x69\xbe\xd9\x0e\xaa\xdd\xa0\x6d\x3e\xd7\xf2\x93\x7d\x0f\x51\x3a\x10\x13\x81\xce\x85\x0f\xff\x73\x54\xdf\x44\xc9\xbe\xea\xeb\xa5\x88\xe1\xcf\x4c\xbc\x60\xf3\xd3\x4d\x22\x5e\xa1\x9a\x30\x47\xf5\x26\x94\x0c\x00\xea\x42\x8d\x19\x9a\x2d\x5b\xbb\x5a\xf4\xd6\x9d\x33\x8b\x93\x03\x7f\x84\x26\x83\xd2\x67\xa6\xde\x52\x39\x5e\x58\x73\x44\x7b\x3b\x5f\x54\x1a\x3c\xab\x66\xd9\x0e\x4c\x02\x92\x24\x57\x8a\xe9\x79\x4a\xd5\x58\xeb\xff\xa4\x04\x3b\xb2\xac\xae\xa7\xfb\x12\xce\x06\xc0\xf9\x7e\xe2\x0d\xca\x08\xa1\x7d\x45\x86\x48\xcd\xe2\x0d\xf3\x05\x99\x95\x2c\x19\x15\xf8\x0c\xe9\xd2\xf8\x85\x1a\xbe\xfb\x90\x04\xb0\x5c\x6a\xe1\x3a\x36\x0f\x15\x62\x67\xd7\x54\xe5\x89\xd4\x39\x46\x45\x1e\x75\x10\x61\xa3\x8d\x0a\x3a\x85\x68\x76\x96\x9f\x17\x3e\x51\x0d\x25\xbb\x1b\xf5\xfa\x05\x9a\x00\x4e\xfa\x69\x51\xc4\x78\xaf\x07\x0a\x20\x7a\x5c\xa1\x44\x48\x86\xd2\x66\x88\x3d\x5d\x74\xbd\x7f\xd1\x45\xd7\x35\xa9\x72\x6f\x64\xb3\xac\x8c\x3f\x67\xb4\x24\xc1\xd8\xa3\x23\xee\x2a\x41\x75\xef\x74\xd7\x89\x86\x71\x3a\x30\x45\x14\xd2\x02\x83\x31\xf8\xb3\xc0\xb3\x3b\x7e\x56\x55\x15\x1a\x0a\xe9\x80\x91\xbc\xda\x01\xe2\xb4\x9a\x7f\x99\xed\xc6\xa4\x30\x40\x55\x28\xa8\x5c\x3e\x42\x72\x2c\x8d\x4e\x5f\x5d\xd8\xd1\x52\xd4\xb8\x3f\xc4\x9a\x23\xbd\x51\x8f\x14\x18\x92\x50\xa8\xae\x49\x94\x93\x4b\x6a\x15\xce\x6b\xbd\x6f\x62\x96\x62\xf6\xd6\xe2\x68\x6f\xf3\xb1\xdb\x3d\x56\x8d\x67\x93\x63\x3c\xb0\xbe\x3e\x9f\x4c\x0d\x88\xfd\x8b\xcd\xd0\x14\xb6\x97\x66\x4c\xe6\x73\xf5\x17\xe5\x68\xe0\x75\x8b\xbb\x51\x12\x89\x13\xb6\xc8\x5d\xab\x68\x07\x0b\x08\xe6\xe8\x5c\x4b\x79\x15\xf5\xa3\x21\x5e\x3d\x8a\x77\x40\x57\xf0\xf1\x54\xea\xf3\x52\x33\x4c\x93\x22\x4b\x63\xd5\xcd\x3f\xae\x0a\x68\xc7\x6b\x9d\xcc\xf2\xc2\x14\x96\xf5\x56\x50\xee\xb8\xca\x59\x20\x16\x9e\x27\xf1\x46\xf0\x12\xde\x0a\x54\xcf\x67\xd7\xe4\xf3\x0c\xcb\x68\x5e\x02\xa7\x03\xad\x92\x75\x25\x3a\xa5\x9f\xd1\xf7\xa6\x26\xf6\x91\xf9\x25\xd7\x7c\xa1\x1f\x96\xbb\xf5\x18\x8a\x9b\x14\x2b\x39\x7b\x18\xa7\x8c\xb6\x3e\xf6\x3a\x8a\x9b\x5a\x81\xf4\x1e\x0d\x0f\xa5\x9d\xf0\x0a\x7f\xfa\x86\x12\xaf\x60\xd1\x09\xcc\xab\x7f\x33\x15\xed\x1e\xfe\x5a\x33\x24\x07\x87\x23\xc2\x09\xf8\x4d\x25\xb4\xf7\x9b\x0a\x28\x31\x4a\x62\x9b\xe7\xbb\xca\x25\xde\x49\x8f\x1c\x9c\x77\xd2\x23\x1e\xbd\x87\x77\xe3\xa0\x3a\x3e\x3d\x3b\xaf\xb3\x8f\xfb\xb5\x70\x8f\x4e\x94\x9b\x5e\x66\x59\x95\xb9\xce\xd7\xb6\xc6\x8a\xa9\x97\x8d\x06\x03\x06\xe0\x32\xbc\x52\xa5\x23\xff\xd9\x9b\x35\xbf\xd4\x2c\x32\xb3\x62\x7d\xf0\xc3\x4c\x50\x05\xb5\xba\xe4\x26\x11\x8c\xfe\x30\xc8\x5d\xcb\xd2\x81\x9e\xe1\xcf\x22\x6a\xb3\x35\xf3\xc9\xd8\x2c\xed\xc6\x69\xa1\x00\x5a\x15\x52\xf1\x09\xdd\x81\x5c\x2b\xf3\xcc\x78\xd7\xf6\xee\x28\xd6\x62\xf6\xe2\xc3\xfe\x08\x2f\x3e\xec\xaf\xdf\xaf\x34\x34\xe9\x42\x85\xc3\xa9\x64\xef\xfa\x36\xcb\x2c\xa2\x05\xa9\x4e\xfa\x06\xf5\xf4\x8a\x4b\x26\xdc\x50\xe8\x95\xa4\x17\x21\xd3\x87\xf8\x05\xe7\x97\xea\x83\xf7\x5b\x5a\x2f\x31\x4b\xa9\x46\xa6\xe9\xae\xa7\x74\xe6\x72\x6a\xec\x61\xdd\x36\x09\xd3\x51\x66\x7a\x5c\x8c\xc0\x62\x7a\x22\xf0\x0b\xeb\x89\xb1\x16\xe3\xce\x8a\x28\x8c\x86\x86\xf1\x1a\x28\x5a\x7e\xa2\x0a\x98\x9f\xb8\x77\x47\x81\x7d\xa1\x81\x98\xb7\x54\x23\xf3\x56\xe0\x09\x08\x9d\xb4\x68\x28\xf5\x12\x60\x16\xf9\x58\x5b\x1d\x16\xb8\x4a\xc7\x0d\x39\xab\xf8\x80\x67\x55\xd2\x9f\xd8\xd5\x27\xe9\x67\x01\x3d\xb9\x1d\x28\xb3\xcb\x07\x0a\x25\xf0\x29\xc5\x9c\xec\xa6\x10\x68\x9c\x17\x03\xd0\x10\x81\x3e\xa0\xeb\x41\x64\xf7\x91\xe6\xb1\xcf\x4d\x54\x5f\x81\x11\xf6\x02\x1f\xf5\x19\xf3\x35\xdd\x58\x7f\xa0\x43\xa4\x37\x9c\x4e\x60\x6e\x58\xf2\x13\x63\x87\xb5\xfc\xd0\x65\x3d\x41\xa3\x0d\xd3\x78\x47\xcb\x6f\x82\xdd\xb4\xdc\x8a\xa2\xa4\xb7\x5b\x31\xa1\x76\x22\x36\x43\xc5\xf9\xb4\x32\x08\x81\xa4\xa1\x18\xd2\x7b\x55\xc8\x4f\x95\x80\x70\x63\xa2\xa4\x43\x36\xb4\xa4\x4b\xb6\xb6\xab\x22\xe3\xe6\x08\xdc\x67\xc6\x0a\xf2\x00\x0c\x02\x96\xe1\x27\x5b\x3e\x63\xbc\x3e\x56\x9e\xd4\xbf\x55\xab\xaf\x3c\x4c\x0b\xae\x58\x95\x4f\x14\xaf\xf4\x8f\x34\x91\xf1\x8f\x6a\x02\xa0\xa5\x66\xcf\xc4\x86\x06\x04\xaa\x27\x1f\xe3\x51\xf3\x49\x05\xce\xdd\x36\x05\x96\x01\xee\x84\xd1\xa3\x91\xae\x98\xb7\x8d\xd4\x06\x5c\x8a\x5c\xdd\x50\x5a\xd1\x53\xec\xc4\x83\x4b\x5f\x6a\xf6\x47\xd0\x48\x72\x1d\x34\x3f\x33\xa7\x21\xc7\x8b\x8b\x0c\x1b\x67\x30\x93\x0c\x33\xba\x77\x89\x23\xca\xd7\x25\x54\x9f\xba\xe5\xba\x30\x51\x9c\xba\x42\x03\xc2\xa9\x6f\x69\x55\xfc\x6f\xb9\xd1\xb5\xfa\xf2\x6b\x2f\x53\x8c\xe9\x74\x91\x5c\x94\xc8\x89\x2b\x8a\x7b\x77\x82\xe7\x5c\x78\x61\xbb\xb0\x21\x47\x23\xa1\xce\xce\xb8\x86\xa4\x92\xdb\xc4\x14\x69\x26\x50\x20\xac\x08\x37\x10\xc5\xf1\x49\x6d\xa1\x59\xb2\xb9\xf2\xef\x9c\x91\x99\xcb\xe6\x36\x9d\x18\xc1\x4a\x14\x16\xd1\x60\xd6\x63\x9c\x76\x28\x45\x0b\x68\xd8\x89\xd5\x63\x39\x5c\x99\x08\x50\xb7\x33\x0c\xd2\x11\x31\xf8\xd4\xc6\xf5\x81\x22\x3c\x7c\x50\xa7\xdc\xd3\x1e\xad\x49\xb5\x03\xf3\xf7\x79\xfa\x75\xcc\x9d\x87\x58\x31\x50\x19\x7d\x6c\xf2\xa4\xc7\xd9\x1d\x8b\x10\x57\xba\x1d\x55\x41\x3a\xbd\xb8\x62\x37\x4d\x3a\x18\x0d\x80\x39\x9d\x52\xb2\x27\xef\x8f\x95\x48\xf4\x15\xc5\xe6\xe8\xa6\xd9\x80\xf1\x99\xae\xde\xed\x2d\x42\x3e\x54\xb8\xf7\x5b\xc1\xf6\xcc\xe5\xe8\xd1\xa6\x59\x9d\x51\x28\x2d\x00\x80\x51\x93\xdc\x52\x9a\x51\x3f\xad\x69\xdd\xbc\xda\x34\x71\xb4\x6c\x69\xc7\x40\xf0\x09\x25\x4b\x3e\x1e\x7b\x98\xa4\xc9\x73\x3b\x68\x93\xe9\x31\x2a\x2e\x75\x5e\xf0\x5f\x74\x7f\x1e\x25\x85\x8d\xcb\xd8\x7e\x64\x62\x56\x50\x73\xc8\xd3\x32\xa9\x15\x4c\x96\xdf\x80\x6f\x05\xca\x36\x33\x5a\x89\x42\xc4\x2f\x28\x3b\x61\xa8\xf3\x71\xe0\x73\xa0\x4e\x64\x06\x69\xd2\xc9\x77\x95\xe1\x9d\x74\xde\xbc\x31\xd1\x6c\x4b\x15\x08\xb8\x70\x8b\x07\x03\x3f\x4c\xa7\x9e\xbc\x5f\xa4\x02\xee\xd7\x74\xd6\x9b\xe1\x28\x6b\xe7\xca\x2e\x6f\x5d\x8b\x42\xac\xab\x0d\x30\xec\x84\xba\x13\x80\x9d\x44\x42\x5b\xef\x39\x31\xca\x2d\xb4\x62\xb8\x64\x42\xd3\x51\xca\x27\x35\x6c\xa2\x6e\x94\xe5\xc0\x94\xe0\x4d\xa2\x1c\x84\xf5\x79\x17\xb1\xcf\x90\x14\x31\xfb\x0c\x41\xd5\xad\xa9\xa6\xe7\xd1\xa3\xe5\xd0\x2f\xc7\xfd\xd6\x7b\x6a\x47\x01\x60\x1b\x29\xdf\xfa\x94\x36\xfc\x7e\x28\x31\x65\x65\x8a\x5a\x4d\x83\x90\x50\xcb\x65\x57\x5c\x25\xa3\x01\x2a\x3a\xa2\xa0\x4d\x8f\x4b\xa4\xb5\xb7\x6b\x56\x48\x41\x2c\x34\x83\xa1\x35\xa3\x59\x75\x35\x9c\x6d\x38\xd3\x49\xb7\xdc\x71\x9f\x00\x15\xf9\xc7\x5b\x35\xaa\x63\xed\xd1\xeb\xaf\x37\x74\xdc\xe7\x0b\xaf\xda\x96\x3f\xb6\xab\x9d\xc4\xe6\xbc\x80\x4b\x95\x42\xb5\xcd\x6f\x2b\xdb\xfb\x69\x89\x9a\xc5\xc5\xe6\xd0\x66\x83\xa8\xe0\x2f\x40\x03\xf9\x91\xf2\x9c\x66\xa4\xb5\x90\x96\xbf\xe0\x83\x9b\x34\xe9\xd8\x41\x1a\x66\x48\xab\x95\x08\xaf\x1a\x35\xc7\x95\xb8\xd2\x6b\xa3\x64\xf9\x71\xfa\x15\x80\x60\x50\x9e\xc4\x55\x5e\x0f\xb6\xe1\xc8\x25\x3d\x7d\x1f\x83\x9e\x3f\x31\x56\x14\xee\x1f\x8f\x3d\xc3\xe7\xca\x58\xa9\x0b\x9d\xc0\x0a\x88\x8a\xe4\xb5\x1a\x2f\x62\x14\x70\x3b\x82\x5b\x44\xfc\x81\x86\x87\x14\x0e\x54\xfc\xd1\xa8\x4b\x90\x87\x71\x5a\x78\x4c\x00\xca\x60\xd8\xca\xf9\xb8\x4e\x46\xac\x97\x99\xce\x48\x22\x56\x54\x84\xaf\x29\xee\xe6\x35\xd5\xb6\xef\x58\x23\x89\x89\x22\x8c\xab\x20\x6a\xfb\xdc\x40\x7a\x3a\x4b\xd6\x07\x63\x1f\x25\x7c\x4a\xf0\x1e\xb6\x48\x0a\x94\x86\xdb\xc5\x9a\x30\xe6\x50\x73\x18\x9b\x64\xd6\x07\x99\x6c\x24\xa8\xd0\xe8\x0b\x4e\x41\x88\xde\x04\xc6\xdb\x29\xb7\x2f\x66\xca\xd0\x93\x05\x02\x54\xc8\xf2\xdb\x4a\xb4\xa2\x1d\xf5\x7a\x36\x7b\xac\x1c\x01\xc2\x6d\xa2\xaf\x17\x89\x37\xfa\x0a\xe5\xea\xbe\xe4\x78\x42\xe5\x5a\x87\x50\x6c\x1d\x31\x1f\x82\x27\xae\xd1\x60\x25\xbf\x8d\x0b\xc7\xb6\xfd\x40\xf5\x18\x9d\x3f\x2e\xed\x9e\x8e\xd6\xe7\xe2\xda\x07\x98\x97\x18\x06\x73\x53\x3d\xac\x85\xc3\xcd\x4e\x66\xcd\xa0\xe1\x4b\xac\x10\x9a\xe3\xe3\x9a\x96\xed\x42\xb3\x58\x8d\x58\xef\x54\x04\x8e\x3c\xb9\xf1\x66\xa0\xb0\x71\xd3\xa1\x4c\x39\x3d\xb3\x34\xb4\x56\xec\x9a\x31\xf4\x99\x82\xc1\x27\x53\x5d\xe8\xa3\x47\xcb\x4f\x91\xf7\x3b\x37\x8d\x84\x64\xe8\x81\x5a\x6f\xa8\x7e\xc6\x6a\x9f\xc8\xfa\x8f\x51\xb1\x1b\xb1\x22\x9e\x09\x76\xbc\x0f\x02\x55\xfd\xfa\x2c\xd0\x86\x61\xbc\xbe\x71\x4a\x82\x79\x27\x3a\xd0\x9e\x54\x7c\x9b\x8a\x1a\x9c\xf2\x2b\xc1\xa4\xb6\xed\x45\x09\x0d\x01\x34\x32\x2e\x10\xc8\x11\x9f\x41\x19\xde\x31\x4e\xca\x0d\x5b\x33\xf4\x9c\x57\xfc\xfe\xc5\x6a\xc4\x81\x4b\xfe\xb6\x4e\x32\xef\x07\x5e\xac\x2e\x31\xb3\x8d\xc3\x5f\xe3\x51\xb2\x8b\x4a\xcd\x2e\x0f\x76\xde\xbe\xa8\x5e\x4a\x51\xc3\x3f\xa7\xa1\x4d\x3a\x51\xd2\x43\xb9\x17\x71\xdf\xc9\xb1\x8f\x4a\xef\x8c\xbd\x88\x06\x90\x9f\x7c\xac\xe4\x58\x76\xb6\x7c\x01\xb9\x1d\x65\x83\x28\xe9\xf5\x0d\xbc\x33\x11\xb2\x9c\xc3\x00\xe4\x93\x1a\xec\xe2\x21\xa9\x10\x3a\x2c\x15\xe0\xea\x7c\xac\x8a\x35\xaf\x8d\x92\x28\x65\xa6\x38\x56\x56\xb4\x1e\xd9\x5e\x0b\xf3\x4d\x44\x51\x6b\x30\x3c\xbd\x38\x2a\x0a\x5b\x2e\xef\xa8\x7b\x00\xba\xda\xa0\x17\xcb\xd3\x8c\xdf\xbf\xd8\x3d\x56\xfa\x81\xb6\xf3\x2c\xdd\x0a\x7e\xe1\x13\x94\xdf\xf1\xa4\xfe\x0d\x30\xd4\xf7\xc6\x0a\xb8\x72\x15\x93\x19\x3f\x82\x00\x01\x5f\xfb\x78\xf9\x83\x5b\xdc\x2a\x41\xc5\xfe\x1a\x06\x04\x42\xe4\xf5\xc0\xbb\x26\xde\xa7\xc7\x8e\x5d\x72\x27\x41\x87\x11\xc4\xde\xc4\x10\xc6\x9c\x13\x27\x06\x54\xd6\x3e\x01\x5e\x99\x2f\x0c\x19\x3a\xd6\x4b\xf8\x6d\xe3\x0b\x9e\xaa\x73\x26\x18\x66\xe9\x30\xcd\x65\x1b\x41\xc2\xfe\x97\xe5\xcb\x16\x25\x0e\xb1\x43\xad\x89\x49\xc4\x95\xd7\xed\x21\x18\xb8\x90\xee\xe1\x63\x35\xf4\xda\x26\xcb\x84\x4f\xc3\x20\x3f\x1a\xfb\x02\xf8\x7b\xc1\xcb\xf0\x76\x2c\xe1\x7e\x43\x13\xcf\xea\x8a\x0d\x6b\x57\x89\xe5\x84\xaf\xef\xcd\x6a\x93\xb7\xb3\x95\x3a\xb8\x5d\x86\x65\x8e\xe3\x35\xb9\x3d\xfa\x21\x1a\x6e\x58\x60\xdf\xa1\x81\xcf\x3e\xe7\x78\xd2\x58\xb9\x1b\x13\xca\xb7\xd1\x13\xe0\x9e\x8b\xe6\xd2\x89\x51\xa5\x5e\xc6\x6b\xaa\xa6\x2c\xdb\x29\x1b\x8b\x93\xdc\xf2\xf2\x5b\x75\xea\xfc\x79\x3f\x5d\xcd\xd2\x74\xc0\xa9\xbc\xb3\xda\x71\x53\x4d\x47\xb4\x45\x34\xb0\xcf\x2a\xf8\xc3\x43\x14\xf1\xb1\x57\xc2\x2b\x88\xd5\xcd\x09\x38\xee\xc4\xae\xcb\xdb\xc3\xfa\xb3\x0b\x8f\x11\xe1\xdd\xc3\x71\xa5\x4c\x7d\x70\x9e\xbb\x2a\xba\xf0\xc4\x3c\x07\x4c\x8f\x93\xaa\x88\xfc\x42\x4b\x09\xda\xee\x98\x28\x3f\xb8\x9f\x8d\x15\xec\xf6\x04\x15\x4f\xd0\x69\x62\x75\x40\xbc\x8e\xb3\x40\xb8\xe2\xda\x1f\xd4\x96\x58\xa3\x24\x1c\x65\x99\xf0\xef\xb1\x34\xb1\x3c\x33\x9f\xd0\xf5\xa8\xd2\xca\x82\x13\x62\xad\x89\x55\xcb\xfc\x42\xe9\x91\x6f\x2a\x3d\xf2\x69\xb2\xf6\xe1\xaf\x35\x07\x51\x02\xa9\x6b\x1e\x74\xca\x16\xe7\xec\x58\x75\x37\x09\x93\x5a\xb0\x0a\x29\x36\x26\x24\xda\x7c\x3c\x55\xa4\x5f\x38\xdc\xb4\xc7\xd2\xac\x1d\x15\x86\x0b\x06\x22\x99\xe4\x99\x55\x67\xa7\x82\xe0\x23\xf3\xaf\x34\xc3\x74\xd4\xeb\x57\x54\x61\x37\x94\x2a\xec\xc6\xf8\xf3\xfc\xea\x61\x79\xed\x5a\x02\x88\x99\xef\x29\xc2\x39\xa3\x62\xc4\x42\xd7\x09\xd7\x8d\xb2\x61\x16\xe5\x96\xa2\x2d\x64\x45\x2c\x89\x8d\x15\xf0\xd3\xb1\x4f\x4e\x38\x59\x10\xcd\xea\x9a\x04\xaf\x63\xa2\x6c\x8d\x9e\x12\x8a\xff\xe7\x95\xcb\xfc\x79\xa5\x1e\x9f\x93\x93\x5f\xc6\x30\x07\xf7\xb6\xfc\x9b\x53\xa5\xaa\x6e\x99\xff\xf2\x94\x93\xf6\x93\xc6\xcd\xba\x16\x10\x05\x1a\x44\x88\xf3\xf5\xf6\x93\xbc\x33\x60\xb6\x5f\xd3\x90\xaf\xfb\x4a\x59\xa6\x9d\x99\xa4\xa3\xb4\x1f\x4f\x68\xa5\xc0\x13\x4a\x86\xac\x6f\x06\xc3\xbc\x1f\x65\x8c\x89\x64\x60\x0a\x16\x21\xd1\x21\xf2\x4d\xe4\xff\xee\x8a\x1a\xbe\xb0\xe4\x15\xe5\xa2\xed\x68\x86\x85\xc3\x4d\x93\xe7\x26\xcf\xd9\x7d\xb0\xe1\x53\xd9\x6f\xa9\xfc\xf0\x5b\x6a\x85\xb5\x26\x2b\xfa\x83\x74\x85\x68\x78\xe5\x7d\x71\x9f\x59\xc5\xe7\xd0\x20\xc4\x3c\xbf\x46\xad\x1b\xc1\x3e\xd4\xb8\x67\x5b\x93\x17\xc0\xe7\xa2\xa8\x70\x5a\xf9\x44\x42\x71\xde\xb5\xd5\xf6\x2f\x6e\x7d\xa6\x28\xfd\xab\xe9\x32\xca\x83\xec\x19\x8d\xa8\x47\x0c\xa4\xeb\x04\x06\x06\x65\x1a\xbc\x36\x53\xae\x48\xa0\x47\x5c\x57\xc1\xc3\x25\xa8\x63\x02\xcd\x75\x5c\xd5\x84\x62\xd3\xed\x62\x20\xc8\x24\x55\xac\xe1\xb3\x8e\x3a\x62\xa2\x0e\x6b\xb2\xe0\xfb\x4e\x68\xc0\x1a\x73\x8c\x68\x3b\xfd\x93\x17\x98\x0d\x20\xa5\x4c\xed\x26\xe8\xc3\x0b\xb6\x8e\x17\xdb\x5d\x1f\xc5\xe7\x76\xc5\x66\x10\x64\xf6\xc9\x21\xc2\x20\x3e\xf6\x8d\x9b\xd8\x24\x85\xf4\x2e\xa4\xa6\xa6\xd8\x4e\x3b\xf4\xee\x77\xaf\xa6\x24\xfc\x4a\x19\x6f\x25\x85\x14\xdc\x9c\x25\x97\x73\x16\xfe\x29\x36\x56\xe9\x14\xfb\x09\x14\xe5\x71\x39\xba\xf1\xd3\x15\xc7\x58\x3e\xa9\x61\x23\x36\x89\xe0\x99\x6b\xa3\x48\xd6\x0f\x11\x9c\xe5\x73\x1a\x24\x57\x98\x6e\x97\xeb\x6e\xe2\x0f\xef\xd5\x7d\xd9\x54\x57\xdc\xb2\xeb\xbc\x31\x4c\xdb\x24\x9d\xd4\x49\x4e\x60\x93\xfa\x2e\x1e\x3b\x9f\x28\xac\x6a\x94\x2f\x3f\x46\xd7\x82\xd8\xf7\x9a\x6e\xb0\xdd\x19\x7b\x69\x89\x5b\x63\x2f\xfe\xf8\xc9\xd8\x17\x36\x1f\x60\xc7\x43\x58\x77\x06\x59\x1d\x0f\x36\x7a\x9e\x88\x20\x1e\x6f\x3d\xab\x28\xd3\xa3\xc1\xd0\x0a\xf3\x53\xf2\x9d\x86\xb3\xad\xb9\xac\x5c\x36\xcd\xa8\x90\x16\xbf\xeb\x3e\xa3\x60\x2e\x30\x61\xc5\xe4\x1c\x44\x33\x55\x14\xa4\xa3\x1f\xde\xa3\x8c\x59\xd0\x6a\x3e\x61\x35\x54\x0a\xdc\xab\x9d\x21\xe8\xcb\x91\xba\xdc\x0f\x54\x6d\x0e\x1e\xc1\x78\x16\x57\x08\xe4\xc6\x3e\xab\x81\xc2\xf7\x33\x22\x98\xbd\x96\xb1\x92\x89\x1d\xab\xcf\x23\xce\xa1\xf5\x20\x8e\xcc\xaa\xf1\x3b\x33\xa9\x13\x1b\x74\x26\x0c\xfc\xc8\x5c\x91\xf3\xc0\x01\x57\xe4\x54\xbe\x48\x51\xdb\x82\x1e\xa6\x64\x56\x5e\x75\x27\x7e\x3f\x79\x30\xb5\xeb\x1f\x3d\xda\x7c\x6d\x94\x17\x33\x1e\x65\x72\x57\x09\xbc\x5d\xd0\x9b\xde\x05\x07\xe7\x6b\x67\x69\xfe\x72\x43\xef\x0c\x5b\x58\xb2\xf8\x44\xd5\xb5\x44\x48\x67\xc6\x5b\x2a\xa0\x04\x86\xb0\xe8\x92\x12\x3a\x7d\x57\xdd\x51\x66\xbb\x5c\x9a\xac\x83\x44\x7c\x1e\x3c\xbd\x5c\x81\xe9\x4e\x10\x57\xdc\x53\x24\xea\xb3\x81\xf2\x4f\xda\x0c\xf4\x2f\x19\x09\x2d\x5d\xc6\x7a\x70\x5e\x8e\x83\xe7\xd5\x22\x5d\xee\x8e\x03\xea\x60\x1c\x11\x6d\xe0\x0f\xc7\xaa\x38\xfc\xa1\x92\x5c\x31\x49\x34\x30\xf1\xac\xcf\x18\xef\x28\x21\x9b\x3b\x94\x20\xa3\x46\x37\x43\xa2\xd6\x7c\x3c\x11\x24\x64\x1c\xb5\x6d\x56\xac\xcd\x69\x08\x18\x3d\x61\x87\x0d\x73\x25\xc8\x47\x81\x9e\x54\xe3\x8a\xe6\xea\x93\x0a\x46\x0e\x4d\xa1\x05\x9e\xf4\x4f\x40\x01\x46\x55\x66\x44\x03\xe1\xee\xd8\x63\xf7\x7e\x17\xaf\x15\xb3\xeb\x6a\x9d\xa9\x42\xe7\xe5\xf0\x65\x45\x3f\x7f\x43\xd3\xcf\xdf\xf0\xa2\xcf\x61\xba\x1a\x73\x69\x12\xd5\xb8\xbb\x5a\x37\x04\xb5\x17\x31\xac\xaf\xc9\x01\x46\xc9\x6a\xa4\xea\x74\xce\xd6\xc3\x23\xe6\x15\xf6\xab\x6f\xb2\x76\x2a\xee\xb5\x4e\x6c\xc0\xc1\x55\x2f\x39\xb8\x69\x98\x66\x99\x0d\x8b\xdd\x0d\xa7\x59\xfa\x10\x0f\x42\x58\x8a\x4a\x50\x09\xe2\x0e\x58\x17\xee\xe8\xdc\xe8\xcf\x95\x72\xe6\x27\x40\x5e\xb3\x79\xf9\x54\xdd\x9b\xaa\xc1\xb9\xb2\x3e\x39\x5d\xf1\x82\x56\x8e\xc0\xe5\xee\x2e\x29\xe5\xab\xde\x53\xdb\x13\x89\x02\x5f\x8e\x2d\xfa\x76\xed\xaf\xd1\xb2\x23\x4a\xc0\x0d\x87\x0d\x84\xd7\xbe\xa4\xaf\x9e\xb0\x3c\x07\x12\x23\x2f\xf3\x41\xe3\x17\x7e\x89\xe1\x80\xf7\xc6\xda\xdb\x89\xc6\x0b\x66\x42\x83\x6a\x2c\x6c\x06\x4a\xb7\xcc\x32\xbb\xe0\x1a\xb2\x95\x54\xa0\xd8\x3a\x13\xc5\x0d\x79\x88\x05\x89\x49\x87\x63\xfd\xea\x91\x4d\x0a\x98\xbf\xb1\x4f\x7e\x90\x3d\xd2\x98\xe9\x88\xbd\x99\xed\x36\x90\xdc\xd3\x8d\xfc\x4f\x2f\xb6\x28\xd6\x71\x42\xcc\xfb\xf6\xf9\x3a\xd2\xc1\xf9\x43\x8e\xe4\x8a\xc5\x8a\x09\xcc\xae\x2d\xe9\xe0\x07\x4c\x98\xc3\x08\x41\x04\xc2\xc7\x63\x6f\xb7\x9e\xa4\xd9\x5e\x7a\x24\xd8\xec\xee\x8e\x95\xf8\x07\x06\xa3\x14\xc4\x95\x59\x11\x2f\xf6\xec\xe1\x42\x35\x0e\x99\xaa\xb8\x26\x71\x77\x29\x2f\xdd\x45\xa0\x0b\x87\x19\x21\x88\x40\x00\xb5\x38\x68\xe1\x03\xab\xd1\x68\x49\x33\xb6\x6b\x6d\x3e\xa3\x14\x09\x76\xb6\x3c\xbe\x90\xe3\x14\x34\xa4\xee\xd4\xcd\xac\x22\xb3\x26\x1f\x65\xe2\xba\x2a\x1e\xf8\xe5\x0f\xf1\xb1\x82\xc8\x17\x99\xe9\x76\xa3\x70\x19\x2c\x5d\xe9\xf6\xcc\xa0\xb9\xc5\x27\x13\x81\xb6\x8d\x12\x13\x17\x65\x8e\x32\xeb\xa1\x1f\xec\x68\x86\x07\xf0\xa1\x66\xec\x61\xac\x89\x6a\x8b\x47\x93\x98\xbc\x28\xd3\x12\x31\x6b\x47\x32\x7c\x9a\x6a\x26\x7c\xac\xad\x81\x0b\xcb\xb5\x12\xac\x25\x6f\x56\x5c\x5e\xb5\x90\xe6\x65\x4d\x56\xda\xd9\x52\x11\x45\xbc\xa6\x94\x87\x4f\x2a\xed\xa6\x93\x0a\xbb\x6c\xf3\xd0\xc4\xa6\x10\xee\x0c\x22\x75\x2e\xf9\xf1\x49\xe0\x8b\x12\xaf\xdb\x2c\x6d\x78\x9c\xf7\xce\x96\x32\x8f\xdb\x39\xf1\xe3\x6b\x68\xd6\x9e\xf4\xe5\xc6\x0d\xad\x45\xf2\xee\xb8\xf1\x55\x21\x9d\x63\x48\x88\xa0\x93\xea\x70\x1c\x27\x68\xad\x72\x82\x93\x86\xf7\x3d\xa5\xe2\xb6\x4e\x85\x0f\x54\x7f\xce\x61\x79\x67\x8e\xbd\x32\x2a\x3a\x81\x85\x8c\xab\xc3\x6a\xb3\xd9\x35\x55\x3f\xdb\xbf\xd8\xec\x98\xc2\xb4\x4d\x6e\x15\xe7\x14\x0c\x0f\xd1\x9f\x7d\x41\xd1\x67\xda\x79\xd4\x21\xf3\x7d\x8c\x59\x59\xf4\xcb\x8f\x62\x75\xfd\x9d\xb1\x47\x52\x5c\x74\x39\x49\x6a\x96\xad\xc0\x00\xf0\xe4\x3e\xd6\x1e\x7c\x1f\x07\x3e\xcb\x49\x87\x36\xd9\x5d\xce\x20\xcc\x9a\x7b\xb8\x17\xc4\x1b\x1f\xd3\x75\xe1\xbe\x20\x77\x8f\x8d\xee\xbf\x57\xf8\xb7\x47\x63\x4f\x23\x83\x70\x07\xe2\xfc\x9b\x2e\x53\x6e\xa7\x59\xe6\x41\x9b\x28\x36\x6b\xc7\xd0\x9b\x3a\x35\xb6\x3d\x93\xec\xf1\xb0\xf9\x2b\x34\x76\x31\x1d\x2e\xa9\xe2\xc0\xfb\xf4\x94\x9d\xf6\xdb\x81\x03\x87\x5c\x51\x8c\xc6\xad\x18\x96\x94\x2f\x09\x49\xf0\x1b\x81\x6a\x5a\x9d\xa6\xd7\x8a\xaa\xe0\xb7\xf5\x02\x7b\x71\xfc\x78\xd4\x1c\x66\xb6\xfb\x0f\x9b\xf9\xdf\x6c\x38\x86\xf9\x1e\x14\xa7\x98\x9f\x4b\x9a\xe8\x58\xd0\x4f\x53\x91\x1f\xfb\xd9\xd3\x93\x72\x67\x50\xe4\xa1\x57\x5c\x47\xa5\xe1\xfc\xa4\x9e\xd1\xce\x94\x4f\xb4\x94\x9e\xd5\xdf\x27\x3c\x39\x7a\x4b\x8f\xb7\x68\x9f\x40\x24\xd9\x80\x33\x25\x2a\xf6\x30\xb1\x13\xab\xed\xf2\x2e\xf0\x7a\x76\x4f\xfc\x22\xf4\x05\xaa\x23\xb3\xf1\x00\x22\x17\xfc\xc4\x2c\x96\x7f\xe4\xc0\xbf\xc9\x2b\x2a\xd0\x2a\x5f\x9a\x34\xbe\x2e\x4b\xdf\x3b\x68\xf6\xb3\x5b\x01\xea\x33\x80\x69\xed\xc2\x8a\x84\xc4\xe6\x09\x80\x9d\x04\x3a\x5a\xbe\x28\x2c\x4f\x4f\x4e\x94\x1e\xfa\xb3\x50\x10\xc6\x2e\xf7\x20\x68\xfc\xe2\x57\x5c\xa1\xa3\x4e\xd5\xb2\x13\xad\x44\xb9\xd7\x81\xbe\xc2\x85\xe5\x67\x55\xf1\x24\x4a\x7a\x94\x97\xba\x1d\xe4\x67\xd8\xe2\x90\x48\xfd\x40\xf9\xc6\x7c\xdb\xb1\xf9\xfb\xd6\x78\x2b\x4b\xc4\xbb\x0f\x54\xbf\xe3\xa1\x2a\x7a\xff\x76\x8d\x3d\xc3\xab\x4d\x33\x1c\x66\xe9\x30\x8b\xa8\x91\xe9\xf6\x18\x54\x94\xf9\x78\x2a\x5b\x38\x70\xa0\xd9\x33\x51\x32\xe3\xf1\x74\x8c\x63\xc4\x34\x66\x6d\x2b\x64\x8c\x1a\x40\x97\xa7\xc9\x2e\xc5\xe0\xbb\x8f\x70\x80\xeb\x9f\x58\xe7\xb4\x86\x07\xb6\x92\x13\x48\x33\x1d\xe8\x5a\x71\x25\x75\x45\xdd\x66\x89\xc9\x3a\x5c\x19\xc0\x4b\xb9\x87\xa5\x01\x3f\xb6\x03\x23\x1d\xb7\xf4\x81\xaa\xff\xac\xa6\xd9\x72\x0e\x7d\x07\xc8\x30\x61\xac\x00\x9d\x27\x9d\x49\xbf\xfe\x7f\x80\x15\x55\x2c\xf7\xea\xec\x19\x33\x6b\x18\x5b\xea\xb4\xc6\x0f\x1c\xc0\x72\xfe\xe4\xb3\x2d\xb5\xd6\xee\x99\xf8\x1d\x27\xef\x9b\x46\x43\xb9\x69\x2b\xfc\xd4\xf9\x3a\xda\x66\x66\x92\x65\xf7\xe2\xf1\x3b\x7b\x89\xd0\x81\x24\xe4\x59\xaa\x34\x21\xcc\x3b\xef\x32\xb6\x30\x33\x79\x7f\x4e\x6b\xde\x8e\x7d\xc1\x72\xae\xe5\x09\x75\xbf\x8e\x96\x8c\xe0\x66\xe9\xa5\xc9\x3a\xb4\xfd\x62\x5e\x6a\xe6\xfd\x74\x38\x24\x5f\xa7\xf2\x11\x63\x44\xbc\xa7\x8d\xe3\xde\x2b\x87\x90\xeb\x85\x87\x69\x02\x4b\x2a\xf1\xf8\x52\x01\xdd\xab\xce\x4c\x4d\xb4\xf2\xba\xd1\xb1\x86\x5f\x40\x98\xc5\x25\xc8\x88\x1a\xd0\x5c\xb3\x1d\x49\x7b\x55\x6f\x75\x52\x8f\xda\x5e\x31\x24\xcc\x9b\x0d\xfb\x09\xb5\x59\x04\x3a\x87\xc5\x8e\x01\x0a\x88\xcc\xdf\xd3\x5e\x6f\x97\x02\xbf\x5f\xbf\xf6\x32\x94\xb7\x18\xf0\xa9\x8d\x2f\x37\x95\xce\x31\x11\x89\x87\xe5\x7e\xa1\x1b\x4c\x40\x61\x62\xe2\xde\x09\x2a\x2d\x79\x3f\xb8\x33\x13\xc7\x51\x19\x41\x2d\x1c\xe6\x8a\xd5\x55\x50\xbc\xf9\x84\x52\x55\x50\xb3\xbe\xa5\xf4\x82\xbe\xa5\x6a\x7e\x2b\x36\x5b\xdb\x5b\x3e\x07\xd5\x3e\x92\xa2\xd0\xa6\xa2\x08\x9f\x1a\x2b\x4e\x3e\x2a\x79\x70\x00\x78\xbe\xe5\xea\xe7\xab\x2f\x4e\x68\x1d\xc5\xbb\x7d\xa0\xed\xca\x77\x4e\x5c\xf9\x61\xe1\x8b\x2d\x45\x77\xf9\x18\x4f\x4f\x44\x40\xeb\xba\x18\x65\xda\xbe\x6a\xb2\x0e\x80\x56\xbc\x0d\xd1\x15\xc8\x96\x54\x17\x74\xd8\x30\xea\xb8\x8c\x50\x90\x91\x1a\x32\x29\x34\xd4\x55\x6b\x8a\xbe\xcd\xda\xb0\xa1\xf7\x8b\x2c\x74\x3f\xf9\x78\x8a\x88\xb3\x70\xb8\xf9\x65\xa6\x1c\x60\xe9\xe5\x0a\xa3\x10\x63\xa8\x37\xc3\xcc\x01\x4a\x5b\xb0\x62\xbc\xa3\x60\xd3\x26\x2e\x93\x78\x43\x95\x54\x2c\x6f\xb7\x95\x62\xfa\x9d\x71\xa5\x56\x3c\x75\xef\x48\x63\x6e\x04\x28\x16\xab\xc5\xe3\x84\x4b\x5f\x32\xdb\x1b\xc5\xa0\x32\x73\xdc\xcb\x4a\xe0\xe0\x43\x88\xa8\x92\x2f\x85\xff\x2a\xbe\x07\xc1\xd5\x9e\x89\x53\xa3\x32\x85\x8d\xe3\xa8\x60\x30\x34\x76\x9d\x1f\x8f\x15\x1f\xfa\xc7\x15\xe9\x8d\xb5\xc4\x6a\x3b\x3c\x14\x67\x04\xd7\xe1\x65\x1b\xf3\x22\xcd\xd0\x18\x41\xc2\x74\x6a\xec\x97\x29\x58\x99\xe1\x33\x3b\xc1\xee\xc5\xee\x7a\x46\x45\x8b\xa3\x64\xd5\x64\xa4\x11\x4e\xcd\x85\xad\x09\x39\xcc\x4e\xea\x24\xf5\xc2\x34\x29\xa2\x64\xe4\x16\x46\xa6\x5b\x28\x40\xff\x3d\xed\xd2\xb8\xa1\x6d\x7a\x8e\x15\x99\x01\x58\x1d\xd0\xb0\x13\x14\xa2\xf1\xb1\x4a\x2f\xfa\x06\xcf\x07\xdf\x77\x6b\xac\xc0\xf9\xb7\xa6\x86\xe8\x4b\xcd\x28\x09\xcb\xe4\x4a\x30\xc8\xc2\xb8\x51\xec\x9b\x3a\xe5\x8b\x30\x4d\x56\x22\x6f\x76\xca\xf8\x44\x9a\xdc\x82\x55\xac\x69\x43\xdb\xd8\xb4\xd3\xcc\xf8\x12\x09\x56\xf3\xef\xd0\xaf\xf1\xf1\x14\xec\xf2\x25\xd2\x65\x8c\x0c\x71\x19\x97\xb6\xae\x94\xaf\x67\xeb\xca\x54\x5f\xea\xc8\xfc\x42\x33\x1f\x8e\x58\xd3\xdd\x41\xe9\xca\x57\x26\x50\x3a\x5f\x8d\x48\x5e\x7e\xed\xe5\x5d\x8a\xa7\x7b\x5d\x91\x8e\xc1\x45\xab\x38\x55\x8b\x0a\x0b\x3d\x21\x91\xd1\xd4\xeb\xa8\xc3\x1c\xdb\x63\x51\x31\xa7\x38\x48\x8f\x4f\x7c\xad\xf7\xb9\xd6\xce\x2f\x55\x8a\x42\xe0\xc8\xc1\x2a\x5c\x2c\x05\x5e\xf4\x79\x56\x96\xf6\x32\x33\xa0\x22\x33\xd5\x25\x31\x39\x7e\x36\xf6\xac\x83\x1b\x58\x91\xa5\xaf\xe1\x7b\x99\xe4\x55\x12\x9a\x38\xdf\xe5\xcd\x78\xdf\xab\xe8\xb0\xdf\xa6\x2c\x0c\x8d\x88\x07\x98\xd6\xfc\x67\x54\x42\xe6\x7f\x08\x94\x09\xdb\x6d\x55\x9e\xee\x98\x38\xe6\x61\xe6\x8c\x21\xca\xbf\xe4\x13\xc5\x43\xcd\x47\x64\x4d\xda\xd0\xf1\x46\x85\x5d\xa3\x62\x24\x72\x50\xab\xd8\xff\xbe\xa5\x0b\x75\x6f\xa9\x7a\x68\x27\xca\x97\xf3\x39\x2f\x9b\xfa\x53\x84\x67\x18\x43\x97\x94\x02\x0b\x60\x32\xfc\x47\xf4\xa4\xc5\xb8\xd2\x49\x90\x65\x26\x5c\xa6\xe7\x84\x3d\xf8\x5a\xe0\x6d\x44\x60\x56\x80\x0c\xe0\x24\x62\x48\xf1\x28\xf4\x5d\x90\x9f\x8d\xb5\x0a\x95\x7a\x48\x96\x78\x45\x9e\x46\x8f\xc2\xb8\x94\x12\x94\x14\x85\x59\x49\x33\xd3\x8e\xed\x2c\x85\xec\xa8\x77\xdd\xd0\xca\x12\x6f\xa1\xcc\xc4\xff\x82\x25\x99\xff\xc5\x89\xf5\x0d\xfb\x36\x49\x07\x36\x49\x93\x19\xc5\xcf\xd0\xb2\x6b\x88\xb6\x45\xf2\xef\x69\x85\x3e\x0e\xfb\xe5\xf6\xed\xf0\x58\x3f\x42\x32\x87\x5f\xf8\x28\xf0\xb5\x6a\x16\x45\xe6\x7f\xa8\xac\x81\x61\xb9\x89\x44\x49\xb1\x36\xab\x4c\x7c\x98\x0a\xe6\x2c\xcc\x0e\xce\x7b\x37\xb9\xfd\x8b\xce\x1b\xee\x19\x05\xd2\x2a\x56\xad\x4d\x9e\xf6\xc8\x93\xc7\x26\x4a\x54\xef\x63\x6d\x45\xc0\x15\x36\xc6\xe2\xe8\xfa\x72\xa3\xa5\xb0\x61\xeb\xca\xc2\xf8\xe9\x96\x72\x43\x3f\xad\x15\x9e\xcf\x8f\x3d\x48\xf8\x2e\x8d\x13\x51\x24\x54\x08\xa9\xab\xb4\x1d\x20\xaa\x79\x1f\x6f\x41\xcc\x2f\xca\xdb\x11\xf9\x61\xb7\x61\x11\x93\x20\xea\x32\x0f\x94\xd5\xf0\xf1\x85\x22\x8d\x2f\xb5\xe7\x41\x94\xc7\xe5\xfe\xe1\x1c\x96\x2f\xe2\x56\x45\x32\x47\x92\xfa\xc4\x94\x49\x3d\x03\xed\x58\x59\x8f\x5e\xab\xa8\xec\xd5\x24\x43\xaf\xd9\x55\x29\x4a\x60\xb9\x3b\x1e\x28\x59\xce\xe3\x8a\xb7\x9a\xa7\x59\xc7\x66\x4c\x8c\xaf\xd3\xe5\xaa\xc8\x34\xc5\x6b\x2f\x96\x63\x46\xfa\x7f\x5e\x5f\xa1\x81\xdc\x13\x15\x22\xf6\x82\xc4\x13\xfc\x1f\x69\xd3\xc2\x7a\xb8\x45\x8f\xd9\xad\xad\xe5\xbb\xc0\xa2\x70\x6a\xac\xdd\x23\x28\x92\xe4\x62\x2d\x5d\x0b\xc6\x05\xa3\xb7\x31\x2e\x76\x4d\xb4\xfe\xc8\x06\x88\xf4\x08\x66\x2e\x69\x8d\xe3\xf3\x81\x5a\x87\xfe\x44\xf7\xf0\x1f\x43\x52\x2d\xa6\x03\x34\x7e\x10\x7e\x5e\xd1\x66\x30\x20\xa5\x6b\xfb\x7a\x8c\x86\x9b\x75\xc0\xdf\xb6\xed\x9b\x95\x28\xcd\x66\x3c\x5c\xf9\x26\xdd\x01\x6b\xdf\xe3\xca\x04\xd8\xb9\x7d\xdf\x5b\xf8\x7f\x19\x7b\xb3\xe0\x4a\xb2\xf4\x3c\xac\xea\x02\xa8\xaa\xae\xde\x97\xe1\x8c\x48\x85\x78\xc7\x1a\xc7\x48\xa1\x66\x5b\x16\xed\xb0\x83\x2f\x79\x09\x60\xd8\x53\x88\x19\x34\x02\x55\x53\x2d\x76\xf8\xa1\x0f\xf2\x1e\xdc\x9b\x8d\xbc\x99\x77\x32\xf3\x02\x8d\xb6\x1f\xfc\xe0\x50\xd8\x11\xf6\x83\x83\x94\x15\x21\x3b\x42\x32\x69\xd1\x62\xd0\x34\x29\x2e\xc3\x6d\x86\x17\xcd\xe1\x70\x36\xce\xb0\xf7\x7d\xa9\x7d\x47\xed\xfb\x82\x72\xe4\xff\xfd\xff\x39\x7f\x22\xb3\x1d\x7a\xbb\xd9\x5d\xb8\x4b\xe6\x39\xff\xf9\x97\x6f\x39\xd0\x2e\xd2\x2c\x92\xb6\xa9\x50\xb1\xe9\x57\x8b\x07\x28\x7e\x35\x12\xae\x1b\xb5\x23\x71\x66\xb6\xbd\x1c\x5b\xcb\x2c\x33\x56\xdd\xa2\x78\x20\x0a\x5c\xb2\xfa\x7a\xac\xc0\xaa\x74\x61\x3c\x0d\xfd\xac\xab\xcf\xd6\xd2\x2c\x67\x6f\x66\xfc\x84\x7b\xf4\x6e\x68\x3c\xed\xdd\xf0\x88\xab\xa7\x1f\xeb\xb4\x9e\x5f\xe0\x26\xce\x07\xe3\xd6\xd7\x24\x09\x7d\x87\x0e\x3e\x84\x26\x6e\xef\x23\x23\x9d\xd8\x68\x7d\xe3\xab\x4e\x9b\x80\x4c\xdf\x9d\xab\x63\xb9\x32\x10\x6a\xff\x21\xba\x2a\x42\x54\x74\x83\x9b\x41\xe4\x64\x7f\xb0\x61\xf8\x41\xf3\x85\x82\x3a\x0f\xd0\x48\x9e\xf2\x33\x37\xf6\x8b\x14\xf5\xad\xf2\xf9\x80\xa2\xcb\x51\x04\x10\xad\xfb\xca\x75\xf2\x56\x13\xb5\x69\xcd\x9a\x15\x9b\x70\x7d\x86\xdd\xcd\x09\x2e\x23\xe3\xb5\xb6\xc1\x31\xe5\x9b\x5f\x16\xf8\x51\xd2\xcb\x5b\x14\xe7\xe4\x74\xa6\xd6\x93\x1c\xbc\x52\x6b\x9a\x2c\x6c\x29\x05\xac\x23\x3c\x2f\xe0\x2b\x2d\x9a\x67\x0d\x00\x7c\x33\x33\xde\x97\xdd\xd3\xc1\x37\x9b\xac\x76\xa2\xa4\xb0\x89\x73\x74\x93\x71\x9e\x1a\xed\xd5\x00\x04\xb3\x07\xda\x79\x04\x9f\x54\xdf\x46\x0d\x54\x7b\xb5\x16\x8c\x16\xa7\xdb\xcb\xb1\x61\x76\xa4\x13\x3f\x77\xa2\x51\xc7\xdc\xa1\xbc\x6a\xb3\x9e\x96\xa6\xe4\x61\xb6\xcc\x8e\x1a\x44\x36\xd7\x23\x1b\x77\xf9\xf6\x8b\x95\x12\x2d\x16\xb1\xaa\x55\x1a\x33\xaf\x2b\x52\x3d\x9f\x5b\xf1\xfa\x54\xf9\xe4\x91\xea\xe3\xd0\xc4\x29\xc7\x39\x10\x2e\x2e\x2a\x23\x37\x50\xe5\x91\xf1\x9c\x52\xa7\x39\x09\xf1\x96\xd5\xce\x83\xca\xb5\xe0\x30\x65\x55\x88\x01\x20\x28\x09\x27\x59\x9d\xf2\x37\x71\xec\xf2\x5f\x8c\xab\x6e\x35\x4a\x08\xc7\xa3\xfd\xbe\x3b\x56\x7a\x45\x6c\x55\xcd\xef\x15\x54\x0a\xe5\x86\xe7\x4d\x29\x3c\xa3\x5a\x64\xc6\x80\xd4\x8c\x5f\xbb\xed\xb5\x92\x66\xd6\xa0\x26\x45\x44\xf8\x42\x47\x29\x56\x7c\x61\x63\xfb\x53\x7e\xba\x3d\x4c\x33\x9b\x4f\xb4\xbe\xf2\xcf\x7d\x8b\xc9\xed\x1e\x76\x59\x90\xdf\xef\x47\xd7\x79\x1a\x47\x5d\x93\x45\xc5\x3a\xd6\x07\x7a\xb5\x2c\xcb\xc9\x17\xb5\x9d\xb7\x6f\xbe\x9d\xa7\xeb\x4b\x96\xc9\xd8\xc8\xba\xdf\x54\xee\xad\x6f\x36\xfa\x2a\x16\xf6\xe5\x42\xa5\xaf\x40\x70\xf1\x6b\x8d\xf2\x28\xca\xec\x90\xca\x9c\xf2\x59\x3a\xba\x40\xf9\x98\x64\x28\xed\x84\x4b\x93\xf5\x41\x9a\xd9\x5d\x6a\xcc\xf4\xef\xf4\xa9\x76\x61\xac\x84\xdd\x8e\xd0\x1a\xa0\x90\x78\xfd\xc9\x8e\x9f\x66\xde\x55\x33\xad\x5b\x2e\xee\xc6\x26\x5c\x61\xa7\x4e\x65\x0d\x2b\x96\x3a\xb7\x2a\xd2\xab\xda\xa2\x7c\x34\x1c\xa6\x59\x31\x59\xbe\xbd\x8b\xac\x5e\xe4\xef\x56\xa0\x00\xd1\xb7\x54\x27\xa3\x2e\x5c\x0e\xe6\x65\xbc\xc2\xc9\xb9\xb3\x4a\x9a\xf7\x49\x8f\xef\xe5\x84\xe9\x1a\x7c\x53\xd1\x61\x6d\x75\x94\x35\x20\xfa\x49\x0c\xd0\xf9\x4c\x09\x2a\x13\x16\xd1\x6a\xb9\x0e\x3c\xaa\xff\x8e\x2e\x45\xee\x54\x7c\x83\xf2\xa8\x97\xb0\x87\x61\xf9\xef\x25\x63\xf2\x15\xd6\xb9\x06\x41\xcb\xf6\xc0\x60\xe4\x87\xc5\x7e\x87\x36\xb3\x70\x10\xe9\x41\x39\x42\xe2\xe2\xb4\x43\x35\xf9\xba\x26\x36\x59\xcf\xc6\xeb\x2c\x93\x24\x49\x2d\xdd\x1d\x84\xf8\xbf\xa5\x27\x89\xf6\xc8\x96\x9a\xe7\xbc\x85\x47\xc0\xd2\x32\xaa\x6e\x1f\xc5\x4b\x2d\xc5\x2b\x42\x9d\x27\x8d\xf6\x26\x16\xb0\x08\xd8\xce\x3a\xf8\x51\x45\xa6\xb0\x41\xcf\x04\x7a\xb3\xb4\xe7\xbd\x77\x11\x90\x37\x32\xc9\x6a\xe0\xe4\xa3\x07\xbf\x6a\xf9\xc3\x50\x7a\x9e\xa7\x44\x8e\x5f\x37\x1a\x05\x99\x02\x0a\x2f\x08\x41\x6f\xaa\x9f\x73\x9a\xee\x29\x5e\x5f\xfa\x4c\x15\xc7\x7e\x9a\x17\x9a\xa8\x79\x93\x1e\x91\x08\x73\xd1\xf9\x88\x5d\x76\xbc\x6a\x17\x93\x47\x08\x1f\xc2\xa8\x50\xc2\x07\x9b\x0a\x90\xd0\x33\x03\xfb\x80\xe2\x9b\x6f\x52\x1b\xd6\xd1\x49\x3c\xf2\x1d\xad\x66\x64\x29\x47\x28\x8c\x23\x55\x80\x5d\xa3\x78\x68\x29\x6e\x17\xb8\xae\x62\xf9\xe0\x65\x8f\x26\x37\xfc\xa1\xcf\xc6\x7a\x39\xdd\x21\xec\xc0\xef\x29\x77\xf7\x8f\xc6\xaa\xb0\x3f\xaa\x18\x9c\x79\x3f\x1a\xae\x73\x13\xf2\x59\x1e\xa5\x5f\xa4\x5b\xcb\xaf\x1d\x6c\xa4\x1b\xe5\xd9\x68\x58\x4c\x78\xfd\x3b\x40\xa6\x58\x44\x01\x01\x44\x84\xda\x94\xde\x55\x66\x06\x03\xcc\xb1\x9d\xe3\x8c\xe2\xbd\x5c\x54\xa9\xd4\x30\x4b\x97\xa3\x82\x4c\xc2\xe5\xcc\xb8\x86\xd0\x28\x58\x91\x96\x13\xc7\xf9\x29\x3d\x3c\x87\xa6\x5a\x9c\xe6\xa5\xc3\xb0\x74\x64\xda\x27\x74\x06\x03\x2c\x5e\x4b\xf1\xfa\xa9\xc9\x28\xaf\x6b\x9d\xd0\xf9\xf9\x76\x37\xc5\xf1\xef\x48\xb0\x07\xa7\x9d\x4c\xbd\x32\xf1\xff\x17\x4d\x87\x48\x98\x0e\xd7\x5d\x5b\x8a\xe7\x44\xb4\x6b\x65\x66\xe4\x72\x60\x1b\xc7\xf9\x94\xe7\xde\x9d\xa3\xd2\x0f\x49\xe2\xa6\xd6\xa0\xde\xab\x55\x53\x8f\x8e\x27\xf6\xff\xea\xd7\xdd\x3f\xf3\x8d\x8c\x41\x9a\x14\xfd\x27\xca\x55\xe5\xd6\x6b\x79\x64\x88\x8f\xb3\xb2\xa9\x9a\xda\x50\x3d\xe4\xcb\x95\x03\x80\xc6\xbf\xac\x08\x3f\x56\x1c\xde\x05\x44\x04\xf4\x2f\x4e\xe0\xd9\xa0\xb3\x83\x7b\x29\x04\x4f\xa5\x07\xe1\xcb\xe0\xe7\x31\xa3\x71\xd6\xec\x3e\xff\x7a\x90\xb6\x07\x0a\x9f\xfb\x81\x52\x86\x3c\x15\xf8\xfa\x58\xd8\x3a\x82\xcf\xf0\x03\x89\x25\xcb\x00\x64\x14\x75\x6c\x5e\xc9\x17\xea\xe4\xfe\x71\xa0\x1a\x69\x3f\x6e\xe2\x0c\xb1\x4a\x8f\x03\x8e\xe3\x74\x00\x30\x86\x5f\xfb\x46\xef\x28\xcf\x23\x93\x4c\xaa\x76\x31\xb2\x2a\xf4\x63\x50\xcc\x89\x74\xa3\x32\x5c\xbb\x50\x03\x71\x1f\x9c\x7e\x01\x36\xcb\xe1\x48\xa1\xbd\x64\x3d\xb7\x9c\x3e\xc8\x89\xc6\x31\x82\x19\x0e\xad\x89\xab\x18\xd8\xf3\x95\x71\x87\xeb\xe8\xc4\x36\x1d\x44\x49\x2e\x95\x19\x9e\xd0\x09\x3d\xc0\x39\xe1\x84\xc0\xd7\xcc\x8a\x45\xa1\x28\x02\x92\xdb\xb0\x77\x5e\x87\x7f\x7b\x63\x76\x71\xba\x3d\x4a\x48\x55\x32\xef\xcb\xf7\xc2\x42\xc5\x69\xcd\xaf\x95\x54\x6d\xd1\x8f\x12\x02\x7e\xf9\x7b\x86\x7b\xc9\xaf\x1b\x3d\xea\xf2\x22\x8b\x86\x43\xf9\x00\x07\x15\x55\x85\x9e\xee\x1a\x66\xc3\x78\xc4\x15\x9d\x64\x18\x34\xcb\x90\xd4\xe3\x67\xfc\x0e\x8a\xc2\xbe\x8d\x4d\xd2\xb3\x71\x2a\x6d\x0e\x67\x4f\xe9\x4b\xae\x73\x55\xce\x75\xd2\x05\x01\x07\xa1\xea\x2a\xc1\x70\x1d\xcb\x7e\x66\x56\xb8\x79\xb4\xa0\x05\xa8\x8c\xf7\x46\x84\x7e\xab\x62\xe3\x4b\xbb\x09\x30\xf4\xe3\x7e\x9a\xfa\xbf\xdc\x09\x3c\xc8\x8d\x35\x1b\x45\x55\x4f\x11\x5a\xbf\x8f\x13\x06\xfb\xff\x96\xe6\xa2\xbe\x8b\x91\x23\xfe\xcf\x15\x2d\x22\x8a\x3a\x55\xbb\x62\x21\x5d\xd9\xbd\xe1\x4f\xb8\x65\xd3\x45\x46\xc4\xf2\x3d\x8a\x8f\xf9\x56\xed\xc4\x9e\x99\x69\xaf\x45\x19\x1c\x07\xf0\x79\xc7\xd5\x9c\xfe\xb8\x3a\x38\xd7\x4c\x8f\x79\x11\x82\x10\x53\x08\x69\x7a\x9e\x28\xef\xd1\x22\x75\x4a\xc3\x4e\x58\xe1\x98\xd6\x0b\x87\x8e\xd2\x84\x7f\x87\xfb\xaa\x99\x75\x6b\xac\xa4\x79\xdf\x69\x32\xfb\x5d\xce\x6c\x12\xf6\x89\x03\xcf\xa0\xc7\xf1\xce\x2f\xf9\xd9\xb1\x9b\x17\xb3\x4e\xb5\xe8\x7d\xe8\x95\xb0\x9e\x66\x14\xcd\x31\x71\x61\x39\x1b\x97\xe3\xb8\xe6\x3d\x74\x12\xb0\xbe\x09\x4e\x3b\xbb\x75\xae\x89\x40\xdb\xb5\xcb\x36\x73\xfa\x24\xd8\xa5\xdc\xa6\xe7\x8b\x06\x98\xc3\xb3\x98\xee\x74\x23\xc7\x09\x41\xd0\x3b\xaa\xa2\xe1\xd1\x4a\x96\x63\x72\xfb\x44\x19\xf4\x45\x5a\x9f\xd6\x09\xd2\x8f\xa3\x81\xca\x0d\x18\xc5\x88\x1c\xec\xbe\x56\xc3\x7a\x1b\xab\x4e\x32\xdb\xf2\xd7\x61\x2f\xbc\x46\x8b\x96\xf1\xf4\xb4\xfe\xd1\xdf\xc1\x93\x41\xa6\xfb\xa9\xf2\xa3\x79\x43\xd7\x14\x1f\xd3\x4e\x40\x5a\x31\xb9\xa1\xa4\xe9\x0e\x61\xc5\x63\x69\xdc\x27\xd9\x46\x6c\xfb\x0f\x03\x65\x29\xcd\x9c\x12\xc9\x9a\x1b\xca\xfc\xe5\xcc\x9a\x15\x6e\x89\xb1\xa3\x38\x7d\x17\x00\xcd\xe0\xdb\x88\x0d\xf7\x3f\xd6\x0a\xbf\x99\x19\x62\xde\x71\x58\x41\xc6\xc2\x32\xcd\x7c\xa1\x2d\x63\x8b\xa8\x37\x30\xad\x96\x53\x4b\xfd\x09\x61\x68\xf8\xb5\x93\xc6\x1b\xd8\x2c\xec\x1b\x47\xa2\x40\x86\xc1\xec\x60\xbe\x50\x84\xf0\x30\x75\x3a\xb9\x2a\x54\x07\x1e\xda\xab\xf1\xf2\xc3\x34\x2f\x30\xf0\x73\x43\xb9\x99\x59\x37\x94\xf3\xf5\xd6\x20\x4a\xba\x18\x66\x09\x8a\xbf\xfc\x1b\x24\x3e\x27\x94\x0c\xf7\x45\xd4\x35\x22\x5d\xee\xc3\x14\xcc\x89\xf9\x0f\x14\x28\x6c\xd5\x66\xdd\x48\x03\xe0\xd8\xdf\x10\xeb\xe1\xb4\x76\x49\x3d\xa2\x88\xd6\xfd\x28\x29\x90\xd8\x62\x41\xa1\x25\x84\x05\xc5\xf0\x03\xe9\xe6\x6f\x3f\x27\xf6\xff\xea\xd7\x99\xe3\x26\x4f\x09\x9d\xb4\x8b\x81\x6a\x9a\x5f\xac\xed\xbb\x17\x5f\x6c\xe7\xc5\x28\x49\xdc\x5c\x55\x4c\xf7\x5a\xce\x22\x0c\xe6\x53\xf8\x42\x8d\xc2\x14\x00\x31\xe0\x53\xb7\x5a\x94\xbb\x6d\xb5\x36\xb6\x17\x8e\xa4\xe3\x96\xf2\x29\xe3\xb0\x48\x6e\x2f\x9c\x51\x78\xca\x65\x6b\x8b\xdd\x74\xf3\x04\xe7\x0f\x49\x52\xa0\xc0\x8e\x2b\xe5\xce\x57\x69\x16\x87\xf0\xf0\x49\x65\x46\xa5\x60\x63\xc7\x55\x9f\xec\x7a\x2d\x83\x25\x47\x64\x2f\x59\x28\xdd\xee\x96\x93\x09\xf2\x20\x9b\x7c\x38\x12\x3b\x39\x60\x3c\x4e\xd3\x0e\xdc\x3a\xa5\x85\xf3\xfe\xad\x1a\x0f\xa5\xab\x36\x8b\x01\xf2\xc7\xbd\xe4\x8e\xbe\xd8\xa1\xd1\x6f\x54\xda\xe8\xf3\xee\x88\xf4\x65\xde\x0f\xc7\xdb\x4c\x23\x9f\x9f\x3d\xd0\x3e\x38\xbd\xcb\x73\x5a\x58\x6f\x1c\xfb\xf8\x32\xed\x63\xbc\x27\x6c\xb4\x59\x76\x35\xf0\xf3\xb8\xdd\x9d\xf2\x4e\x31\xea\xa1\x06\xf8\x5c\x9c\x66\x47\x2c\x09\xc5\xc8\xd6\xd9\x73\x95\x2f\x14\x56\xd6\x94\xfb\x52\x52\x1a\x07\xaf\x29\x7f\x19\x5f\xd4\x34\x30\x66\x66\xda\x26\xca\x26\x3c\x6c\xf8\x34\x7d\x69\x19\xaf\x79\x08\xc5\x6d\x0f\xe4\xce\x6c\x37\x0a\x0b\xb3\xc4\x2d\x53\x2c\x8c\x13\x0a\x0f\x72\x42\x21\xee\xf2\x22\x4a\x12\x5b\x70\xfb\x1e\x29\xeb\x1d\x0a\xd4\xfc\xba\xd6\xc5\x9d\x9b\x2b\x83\x81\xcd\xc8\x6a\xdf\xab\x4f\xbd\xa3\x84\xea\xde\x71\xcd\xe4\x62\x15\xd3\x61\x7c\xc9\x6f\xd3\x17\xc6\x69\x70\x71\xdc\x3a\xf0\x9c\x2c\x0e\xfa\x40\xf6\xca\x1a\x7b\x02\xe2\xd7\x1e\xeb\x28\xf4\xda\xbd\xda\x8e\x5a\x58\x5c\x68\x77\xd3\xd1\x92\x48\xbd\xe0\xf9\xdd\x08\x5a\x5f\x9f\xe5\x60\xc2\x49\x2f\xaa\x85\xc3\x2a\xee\xad\x44\x71\x9c\xb7\x7c\x25\x71\x5c\x09\x0e\x1d\x0f\xf6\xba\x0d\xf6\xa5\xa7\xe8\x0d\xb0\x0c\xb7\xd0\x04\xc3\xc9\x33\x85\x93\xc7\x19\x03\x95\x89\x23\x36\xe8\x75\x3a\x9f\x9c\xbe\xfb\xa2\xc8\xbb\x30\xfc\x8e\x87\x14\x9e\x50\xfb\x2b\x8f\x6d\x54\x06\x02\x73\x73\xfb\x75\x6e\xb6\xe0\x71\xad\x33\xea\x77\x79\x2f\x52\x14\xa1\x48\xba\x38\x88\xa1\x9b\x7e\x8c\x90\xf4\xd2\x62\x28\xb3\x4f\x71\x2a\x51\x34\xba\xeb\x63\xcf\xd3\x3e\x8b\x63\x1d\xd9\x88\x2f\xf3\x07\x26\x8b\x12\x2b\x94\x43\xa5\xc9\x27\x7d\xa4\x4d\x0d\xd5\x7b\x4d\x69\xbe\x51\x77\x30\xb7\xdd\x98\xe5\xd7\x85\x13\xdb\x72\x0e\x40\x80\x47\xe3\x06\xd5\x55\xdf\xcb\x9c\x7e\x39\x25\xb3\xa6\x96\x92\xe2\x03\x5b\x84\x5f\x57\x72\x96\x95\x95\xb4\x02\x8d\xfe\x4e\xa0\xa0\xd1\xdf\x71\xf1\xc9\x0c\xa2\x3c\x9f\xf4\x0c\xbd\xbb\x4a\xac\x87\x29\x40\x32\x77\x57\x78\x8c\x43\xb5\x8c\xb6\x3c\x14\xfa\x23\x10\xce\xd0\x34\xb8\x8e\xbf\x16\x90\xbf\xc7\xba\x1f\x57\xf4\x89\x55\x03\xa6\x10\xde\xf6\x98\xf6\xcc\x3b\xd6\xd4\x38\x78\x29\x5d\x8a\x2d\x7f\x61\x9c\x4f\x4f\x02\x04\xea\x6a\x4c\x67\x68\xb6\x07\x03\x2f\x11\xd8\xf9\x4c\xe3\x93\xbe\xcd\x4c\xc1\x89\xa0\x80\x6b\xe9\x2f\xf9\xa2\xf6\x35\x7e\xa9\x4c\x8b\xf2\xbe\x28\x92\x22\xff\x65\x6b\x6e\xbe\xa8\x6d\x50\xf2\x1a\x5a\xb5\x19\x03\xe2\xb1\xae\xde\xa1\x87\xc7\xaf\x5d\x8e\x63\x5f\x2e\x53\x9c\x9e\x48\x4f\xf0\x18\x22\xf0\xbc\x61\x86\xeb\x89\xf7\xe7\xe3\xaa\x15\xcc\x33\x06\xbf\x26\x20\x73\x29\xf2\xac\x75\xd6\x70\xbb\xe8\x67\xe9\xa8\xd7\xdf\xe5\x2b\xaf\xf3\xd4\xdf\x90\x60\xea\xa5\x48\x70\xa6\xe3\xde\xe2\xac\xe7\x04\x9f\x02\x06\x6a\xdf\xd7\x15\x68\xc4\x14\xd9\x28\xa1\xf5\x80\xc8\x70\x29\xf0\x20\xd4\x63\xb4\x07\x41\x7c\xfb\xa4\x51\xfa\xed\x9b\xa3\xa8\x60\x15\x7e\xed\x60\x8b\xb8\x7d\x51\xd1\x81\x37\xb5\xd0\xc8\xe6\xf6\x83\xaf\xdc\x36\x5f\x9f\xa5\xbc\xd2\x59\x1f\x2f\xf8\x0b\x2d\x48\x10\xc5\x51\xcf\xca\xdd\xc3\x61\x78\x45\x19\x91\x5c\x69\x32\x62\xe0\xf9\x26\x6f\x49\x06\x4d\x2a\xb9\x87\xa3\xb5\x3e\xca\xd3\xed\x25\x93\xac\x98\x81\xcd\xa2\xd0\x60\xbc\x28\xf9\x26\x76\xab\x64\x9c\x0d\x44\xb1\xe5\xbe\x41\x8b\x16\xdf\xfe\x06\xff\x05\xa2\xd7\x7b\x0a\x7a\x72\x49\x05\x9e\x61\x96\x16\xd0\x91\x7f\xc0\xef\xcd\xbb\x63\x25\xec\x0f\xd0\x0e\x4f\xcc\x15\x8d\xeb\x45\x8c\xbb\x58\xb8\x4f\x3b\x37\x9e\x1d\x7b\x0a\xe0\x22\xb0\xa0\xb8\xff\x93\xc0\xc4\xf3\xfb\x06\x0f\x6b\x46\x65\xbc\xd7\xaf\x13\x46\xf7\x32\x0c\x2b\x50\xa7\xe7\xb7\x14\x47\xfc\x28\x8a\x26\xfe\x13\x5a\x72\x48\x58\xb6\x34\x53\xe7\x46\xe0\xcd\x8e\xde\x52\x6b\x17\x88\x49\x41\x8a\x6f\x7f\x0e\x33\xb3\xed\x9e\xc9\x7a\x26\x29\x46\x86\x21\x3c\x9a\xea\x8f\xc3\xe5\xb2\xaa\x15\x8e\xd6\x7a\xa0\x73\x73\xed\x61\x38\xa1\x2a\xd8\x4f\x54\xea\xfd\x09\x92\x77\x51\x75\x7e\x54\x83\xc5\x6c\xce\x50\x49\x47\xf3\x72\xf8\xf6\xcd\x46\xdb\x21\x06\x32\x22\x24\x2c\x54\x29\xe0\x58\x2f\x6f\xe2\xe3\x98\xe1\xa5\x5b\xd8\xa6\x18\x65\x5d\xb3\x4e\x84\x46\xe1\x24\x95\xa5\x15\x92\x0c\x78\xc4\xb8\xa2\xdb\x15\x26\x8c\xda\xe7\x7f\x14\x54\x48\x4c\x5e\xc3\xff\x7a\x2d\x4d\x23\xdb\x04\xa8\x3e\xa0\x15\xcd\xc7\x30\x5f\xa8\x71\xd9\xf2\x28\x2b\xfa\x36\x7b\xc8\xcb\xcb\xec\xa0\x14\x53\x3c\xaa\xcb\xef\x22\x1d\x6c\xa5\xbe\xf2\xbe\xa2\xc7\x90\x94\xec\x0b\xce\x14\x9b\xbe\x31\x3a\x20\x57\x69\x4d\x60\x8a\xb9\xb3\xa3\x34\x78\x6e\x2a\x37\xd5\x3f\xc7\x0d\x74\x31\xbf\xbc\xb5\xd2\xfb\xf6\x83\xa2\xac\x58\xdf\x5d\x7e\x2f\xdd\x23\x60\x01\xdd\x40\xf9\x82\x6c\x69\xd1\xbf\xf3\xb4\x8b\x84\x0b\xef\xa1\xb6\xad\xce\x36\x26\xae\x67\xb4\xad\x98\x4a\x0c\x41\x88\x97\x80\xf2\x84\x07\xcf\x25\x79\x68\x12\xd3\x35\x93\xca\x8b\xa8\xd5\x29\x3f\x8e\x5b\x02\x63\xed\x5f\x84\xa5\x25\xaf\xbd\x7c\x41\x61\xa8\x37\xa8\xd3\x98\xb3\x0a\x2b\x72\x56\xfd\xfe\xe7\x7e\x79\xbe\xe5\xc7\x26\x9b\xda\x83\x64\xb3\x36\x28\x9b\x3d\xd0\xce\xd7\xa2\x65\xc8\xb3\xb0\x0d\x8e\xa2\x9b\x9e\xab\x75\x63\xe6\xe7\x89\x6f\x99\xd8\x2c\x27\xcd\x78\xba\xa3\x8d\x03\x36\xe7\xbc\xbb\xbc\x1c\xc5\x11\x94\x63\x9c\xce\xd1\x3d\xfc\x5b\xbe\x50\xd5\xd4\xc0\x16\x26\x66\x8f\x5e\x2d\x68\xc9\x8e\x4e\x9a\xa1\x7e\x0c\x25\x91\x68\x46\xd2\x72\xc0\xa2\x39\xa3\x8c\x0d\xf2\xb0\x9f\xc6\x26\xc3\xc8\x15\x5d\x9f\x9f\x8e\x55\xb3\xe5\xac\x12\xaf\x3c\xda\x64\x63\x64\x4d\x5e\xf0\x1c\x53\xc4\x37\x95\xdc\x36\x74\xa9\x1c\x8a\xc1\xb5\x5a\x18\x18\x27\x3e\x8f\xfe\x49\xf6\x22\x69\x87\x48\x53\xf2\x53\xc5\xf2\xf9\x54\xcd\x78\xc2\x34\xcb\x46\xc3\xa2\x45\xb3\x3c\x44\xf8\xdf\x0f\x14\x74\xff\xf7\x3f\x33\x45\x8a\x12\xd8\x30\xb6\xf4\x62\x52\x24\xf0\x4d\xd5\xc8\xc9\x6c\x1e\xf1\x68\x98\x6f\x1e\x7d\x1d\xb9\x91\x0d\xde\xab\xb6\xdb\xb3\x0c\xf3\x57\x7c\x75\xd7\xef\x54\xbf\x35\x1b\x25\x2b\x36\x6e\xb5\xbe\xf2\xcf\xf9\xce\x03\x3c\xca\xaf\x9b\xcc\x2b\xfa\x26\x96\x5e\x91\x9a\x19\x49\x5c\xdb\x54\x86\x72\x51\x12\xaa\xbe\xe8\xb5\x40\xe5\x8e\x67\x55\x79\xfc\xf1\xf8\x73\xd5\x04\x63\x71\x7a\xb1\x7d\x70\xfa\xd9\x96\x9f\xd1\xdc\x50\x40\xb5\xba\xfb\xd4\xec\x81\xf6\xd0\xda\x15\xba\x41\xa0\x57\xbf\x46\x37\x88\x5f\xd7\x7a\x34\x07\x9e\x13\xf1\x0b\xc9\x32\x44\xd5\xad\xa2\x1b\xa4\x71\xbd\x94\xd0\x4d\x78\x74\x19\x86\x05\x22\xc5\x5c\xc6\x55\x1c\x51\xb7\x9b\x50\x74\xa2\x7b\x86\xcf\xc2\x9c\xfa\x3d\x1c\x2e\x7c\x31\xf6\x8e\x98\xa6\xcb\x4d\x54\xba\xc3\x72\x8a\x50\x01\xc8\x17\x4d\x32\x28\x79\x91\xb1\xa8\xa9\xa8\xf8\x9d\xac\xd8\x4f\xf8\x08\xfb\x5a\xd5\xec\x34\x32\xbb\x14\xad\x90\x47\x33\x88\xe5\x57\x2b\xf3\xaf\x3d\x94\x92\xa0\x93\xbd\x5b\xf9\xcc\x40\x53\x90\x95\x21\x15\x0e\x36\x4a\xba\xa3\xd0\xe6\x93\x94\x6e\x70\x08\xa7\xa5\x85\xa3\xe5\xb8\x82\x1f\xe3\x06\x4a\x98\x6f\x54\x9b\x32\xd9\xd0\x16\x55\x65\x6f\xa7\x06\xef\x5d\x3e\x86\x59\xfa\x12\xd9\x8b\x50\x8a\xcc\x19\x9d\x96\x96\xbb\x88\xe3\x09\xa9\xc5\x64\xa3\xa9\x70\xdf\xc6\x85\x83\x7b\x33\x36\x4a\x49\xc2\x9e\x6a\xd4\x85\xa9\x24\x13\xb3\x5c\x45\xfd\x75\xa0\x5c\x24\x20\x52\x8d\x6a\xe0\x88\x52\x85\x8d\x92\x30\x4d\x7a\xd9\x28\x2a\xb8\x75\xb7\xe0\x21\xe0\xfb\x84\x52\xb0\xa9\x24\xa9\x86\x29\x81\xb3\x4c\xbc\xdb\xe7\xd4\xc7\x95\x33\x0b\x4b\x89\x8b\x37\xb9\x3a\x1c\x6f\xd1\x3d\x63\xd7\x59\x3c\x68\x76\xcd\x0f\xbc\xb4\xc2\x3b\x15\xca\x5f\x1c\xd9\x55\xc2\x18\x08\x40\xe4\x12\x60\x0b\xb8\xf8\x3e\xd8\x9e\x7c\x01\x49\x16\x0c\x31\xce\x51\x7b\xdc\x95\x4b\x8b\x0a\xf5\x50\xae\x6a\x7e\x2f\x65\x23\x09\xa2\x2b\xd8\x70\x77\xc6\x8f\x28\xb9\x5e\x93\x17\x0f\xd3\xea\x17\x6f\x1d\x35\x03\xbe\x88\x53\x02\xa0\xf2\xdf\xd0\x2e\x62\xe7\xd5\xdd\x13\x2b\x50\x90\x28\x78\x3d\xf0\xdf\xd0\x36\x66\xef\x43\xb4\xf1\xf9\x9d\xb5\x84\xf1\x0d\x9a\x27\xa0\x32\xdb\xd5\xf1\xc0\xba\x2d\x20\x7b\xf1\x6b\xee\x57\xa7\x73\xdd\xf5\xdd\xaa\x41\xce\xd0\x49\x01\x62\x6a\xc7\x82\x5b\x6a\x44\xf3\x09\xbe\x02\x8e\xcb\x3b\x4a\x96\xb6\xd5\x51\x59\xd9\x69\x75\x34\x0c\x47\xaf\xbc\xc2\xad\x38\x2c\x3a\xac\x55\x7e\xad\x5a\xec\x45\x9a\x59\x42\x44\x60\xc5\xdc\xa2\xfb\xc3\xaf\xc7\x4f\x56\xe3\xef\xd3\x65\x89\xf7\xa8\xaa\x3a\xa6\x3a\xca\x3c\x9e\x8d\xdd\xf1\x70\x5f\x1b\x7b\x82\xf2\x9d\xc0\x77\xf6\xa6\x36\x68\x35\x20\xfc\x4c\x10\xc3\x17\x1d\x88\x3f\xad\xf8\xb2\xa2\x33\x82\xbe\xcd\x25\x3c\x4c\x19\xd7\x29\xf0\x1f\xab\x52\xf0\x74\x92\x86\x18\x62\xf9\x59\xfe\x70\x11\x9e\xa7\xfb\x8d\xca\xaa\xde\x60\x2f\x53\xfe\x25\x6b\xb2\x28\xef\x13\x9a\x0c\x08\x0b\x96\x1e\x11\x10\x50\xcb\xd9\x3e\xa3\xb7\x82\xf4\xe3\xdd\x06\xb0\xe6\x42\x7b\x60\x8a\xb0\x8f\x0d\x2b\x82\xba\x1e\x85\x74\x4c\xf1\x47\x56\x4d\x6f\x64\x63\x20\x02\xb7\x2e\x12\x84\x61\xeb\x62\xed\x4c\x22\x33\x82\x22\x83\x47\xae\xef\x29\x7f\x07\x1b\x58\xda\x4d\xdb\x8f\xe3\xa7\xdb\x99\x1d\x9a\x28\xa3\x5e\xa3\xf3\xfd\x72\x5f\xe3\xaa\xaa\x59\xfb\x36\x8f\xd8\x64\xbd\x32\x61\xd6\xa0\xde\x73\xca\x99\x79\xb8\x9e\x99\x41\xd4\xcd\x5b\x8a\x26\x12\x28\xb4\xd1\xeb\x4d\xec\x30\x33\xca\x8b\xcc\xc4\x11\x63\x2d\x85\x10\xa5\x30\x25\xaf\x6a\xf3\xe7\xcc\x96\x95\x14\x96\x2f\xda\x90\xac\xa0\xcc\x17\x6a\x9e\x1e\xa6\x49\x1e\xe5\x85\xf6\x94\x3e\xa9\x3c\xa5\xeb\xca\xaf\x65\x25\x99\x8e\x92\x2e\x47\x72\xae\xef\x14\x93\xe2\x82\x6a\x54\x97\x19\x56\x77\x64\x39\xe7\x13\x6c\x72\xcb\xd9\xf6\x1e\x51\x88\xca\x30\x1d\x0c\xa2\xa2\xb0\xf6\x21\xe5\x6e\x73\x12\xd1\xcf\x8d\xc3\x94\x10\x1e\xed\x5c\x36\x38\x1b\xfb\x62\x96\xfb\xf8\xa2\x7f\x41\x1f\xcc\xe0\x8d\x40\x71\x14\x17\x54\x90\xbc\x12\xf8\x46\xc2\xc2\xb8\xea\xc1\xe3\x8c\x3d\x76\x6e\x3c\xa2\xe6\x6a\x79\x91\x4f\xf8\x80\xf0\x7f\x8d\x15\xb3\x05\xcc\x40\xd1\xff\x7b\xd2\xb1\x38\xc2\x2c\xcd\xd7\xf3\xc2\x0e\x04\x8a\xe0\x0c\x58\xe7\x95\x81\xaa\x3e\xe8\x97\x49\xa2\x83\xee\x06\xfb\x94\xd0\x6d\x16\xcf\x12\x45\xec\x4b\x7b\xd8\x31\x02\x8c\x6d\x39\x5f\xfd\x33\x5a\x74\x3a\x4b\xf3\xa1\x0d\x8b\x7c\x97\x47\x43\xb2\x84\x2d\x8a\xf1\x6b\x63\x4f\x8f\x42\xfe\xc1\xff\x1d\x47\x00\x4e\x59\x36\x56\x17\x7a\x8b\xd0\x4f\x56\xa3\x5e\x99\xcd\xf1\xb2\xc0\xb3\x80\xfc\x08\xbf\x0e\x7c\xa5\x53\x44\x71\x61\xbb\x93\x55\x8c\xfa\x67\xaa\xa3\x56\x70\xed\xf5\x5e\xf3\x0b\xed\x9c\xad\x23\xfd\xb4\xed\xcf\xb5\x04\xf4\x9f\x37\x60\x24\xcb\xf2\xb4\x6b\x3f\x53\xa1\xcd\x49\x4e\x64\x3f\x4f\xb7\x47\x4a\x42\x92\x0b\x06\xa5\x07\xc3\x9f\x16\x38\x48\x48\x01\x1f\x20\xa5\x5f\x67\x30\xba\xb8\x50\xc1\x38\x13\xec\xe8\xfb\x3f\x8b\x0a\x1f\x71\xf6\x91\x4e\xeb\x6b\xfb\x35\x46\x5b\x60\x3f\x53\x9d\xd6\x8b\x2f\x96\x1f\x24\x78\xee\x3f\xfc\x7c\xa7\xf5\x2b\xcf\xbb\xf5\x4a\x28\x83\xdd\x1d\x55\x81\x3e\x82\xa3\x04\x1f\xc8\xaa\xb1\x0a\x81\x28\x8d\xea\xc7\x3a\x3b\xbf\xe4\x30\x75\x74\x63\xa9\xc9\x79\xfb\x9f\x6c\xd0\x40\x51\xcc\x42\xe8\xb8\x74\x8e\x22\xdf\xf8\x2a\x6f\x6d\x96\x41\x42\x7a\xfe\x48\xc7\xa3\x12\xd1\xe4\x44\xec\xbf\x4f\x33\x4b\x1c\x5d\xb0\x1d\x41\x8e\xb2\x67\xa3\xf5\x75\xaf\xa4\xad\xcb\xf9\xcf\x6f\x10\x04\x0e\x15\xf1\x4f\x1a\x7d\x6d\xba\x36\x47\x1d\xe2\x74\x54\x17\xa7\x9d\x8e\xea\x13\x0e\xd8\x68\x7a\x49\x9a\x17\x51\x28\x53\x0f\x54\x2a\xef\x61\xc5\xca\x18\x9b\x7e\x36\xba\x76\x97\xdc\xdf\x26\x76\x94\x11\x91\x3e\x67\x05\x04\x01\x71\x7b\xd4\xf5\x8d\xc0\x43\xfc\x3f\x6d\xb2\x97\xe8\xda\xb8\x80\xfb\x8e\x23\x0b\x95\x1f\x25\x76\x96\x8f\x57\x40\x4c\x59\x94\xb3\x6c\x24\xdb\x6d\x04\x1e\xfb\x78\xc6\xed\xaa\x6e\x1a\x8e\x06\x36\x29\x26\x7c\xd1\xc1\x96\xbb\xac\x44\x11\xf8\x6c\x75\x72\xe3\x11\xe5\x1f\x59\xd8\xec\x01\x25\x7e\x87\xb4\x97\x93\x54\xdc\x0f\x76\x5b\xc6\x56\xe1\xa4\xc9\x03\x33\xd7\xd1\x2b\x15\xfb\x2b\xfa\xa6\xd8\x06\xbb\x20\x05\xec\x5a\x46\xae\x64\xd9\xd9\x24\xae\x33\x1c\x25\x61\xdf\x61\xe1\x84\xad\xee\x21\xbf\xc7\x6b\xbb\xf3\x97\xda\xf9\xfa\x60\x29\x8d\x27\xb4\x8d\x31\x62\x1a\xbe\xe5\x44\x47\x39\x4b\xdd\xac\x15\x36\x24\x8e\x1f\xad\xba\xcf\x44\xb7\x12\x3d\x59\x7e\x5d\x9b\x93\xcc\xcc\xb4\x6d\xd2\x8b\xa3\xbc\x3f\x51\xee\x61\x51\x0f\xf4\x38\x25\x5e\x36\x22\xeb\xbe\xfd\x87\x3a\x7c\x7a\x17\x82\xc2\xc8\x96\xff\x5f\xfc\x11\x5f\x34\x51\x2d\x06\x51\x37\x89\x7a\x7d\x34\xa1\xb0\xcc\xee\xa9\x25\x77\x2f\xa8\x37\xa1\x16\xda\xcb\x69\x66\x43\x93\x7b\x84\xa1\xd6\xc5\xe6\xd7\x2a\x97\x2d\xa2\x81\x65\xf3\xf8\x2d\xb4\x38\xb7\x2e\xba\x99\x5a\x37\x5d\x65\x10\x21\x22\xec\x8f\x74\xb8\xfd\x11\x40\x0b\x4e\xb3\x5e\x4d\x85\x61\x7d\xca\xa7\x34\x49\xa3\xcb\x89\x8d\x70\xa3\xd5\xec\x71\x54\xdc\xd6\x78\x9a\xa3\xd5\xac\xde\x76\x1f\xf7\xc2\x62\x27\x39\x38\x70\xc9\x83\x0c\x00\x31\x64\xa2\xa3\xfa\x23\x77\x28\x47\x76\xda\x55\xe5\xd7\x91\x5e\x9f\xd2\xf7\xc4\xc2\xc7\xae\xbd\xa3\x55\x0a\x30\x2f\x42\x75\x7c\x42\xb3\x57\x99\xc0\xcd\x8c\x43\x95\x0a\x6f\xd1\x0d\xc6\x49\xcd\x83\x64\xfe\x0b\xa4\x19\x48\x14\xee\xe3\x77\x22\xb5\xdc\x5b\xb3\x54\xf9\xa5\x76\x91\x59\xc1\xb0\x08\x1a\x45\x65\x3c\x67\x83\x27\xaa\x55\xc3\xcc\x4c\xfb\xe9\x9f\xa3\x5f\x87\x12\xea\x48\xa0\x94\xb1\x1e\xdd\xa8\x9a\x52\x7f\xe3\xab\x15\x3a\x9d\xdb\x6e\xb3\x07\x9c\xa0\x36\xdd\x02\x04\x46\xc6\xee\xa2\x1a\xdb\x49\x22\x4a\x78\x6e\x57\x35\x86\x91\x51\x88\xe8\xdf\xfe\xe9\x58\x6b\x71\x94\x0f\x0d\x7b\xf2\x12\x6a\x36\x67\xb8\xeb\xd1\x89\xd7\xbc\xdc\xd7\xd7\x1e\xc3\x9c\x1c\xdb\x6b\x57\xa7\x3c\x10\x58\x86\x4f\x7b\x5c\xff\x05\xd6\x20\x9e\xdf\xc7\x20\xbc\x01\x84\x77\x8d\xce\x13\xc1\x33\x7b\xf0\xf9\xdd\x40\x0b\xeb\xde\x56\x5e\x59\x3b\x3a\x65\xc5\xcc\x85\x14\xb9\x0b\xe3\x2e\xea\x74\xae\xa0\x1d\x48\xb7\x02\x30\x96\xc3\x8a\xbc\x78\x58\x35\xf5\x96\xb3\xc8\xb2\x62\xb8\x0c\x15\x3c\x8a\xb2\xee\x13\x34\x37\xd7\x4e\x97\x97\x89\x3d\x8d\xaa\xee\x72\x25\xaf\x29\x6f\x0b\xab\x39\xd0\x4f\x11\x4d\x45\xa7\xa1\x69\x06\xc3\x94\x87\xbd\xca\xff\x75\xc1\xf9\xbf\x3e\xaa\x35\x14\x07\xb6\xaa\x4e\x5b\xc1\x5e\x3e\xac\xe4\xbc\x6c\xf2\x24\x3d\x04\xc6\xf4\xe1\xac\x77\x89\xa3\x32\x61\x2c\x17\x8d\x34\x87\x55\x99\xcd\xbb\x0b\xb7\x77\x62\xa3\x0a\xf8\xf1\x3e\xc8\xff\xbb\x16\x46\x3c\xad\x32\xf7\x7b\x4a\xb6\xe4\x30\x56\x0d\x42\xec\x6d\xf4\x40\xd8\x3a\x0f\xab\x1c\x33\x29\x1e\x8b\x08\x7a\x94\x7e\x26\xee\xdc\x7d\x5a\x82\x02\x13\x2e\xef\xb4\xf4\x26\xfc\xb1\x74\xdb\x91\x59\x87\x66\xdd\xb5\xa0\x00\xe9\xfd\x7f\x78\xe1\xf0\x95\xca\xa9\x17\x0f\xcc\x7c\xf6\x98\xbd\xe1\x49\x17\xd6\x68\xe8\x1e\x8a\x28\x81\xdd\x3d\xee\xe6\xe5\x43\x9b\x74\x09\xe5\xa3\x44\x86\xa0\xf9\x20\x0c\x2b\xff\x15\x6c\x32\x52\x28\xdd\xcb\x0a\xa5\x7b\xd9\xc9\x4a\x0c\x63\xf1\x8a\xc4\xd1\x76\x49\x0d\xe8\x2e\x05\x5e\xcb\xc4\x84\x7d\xdb\xdd\xa5\x44\x0a\x27\x30\xdf\xc1\xd8\x6a\x67\xa7\x42\x88\xf4\xf5\xfa\x35\x44\x08\x04\x82\x93\x4a\x22\xee\x8e\xa2\xf8\xc7\xd1\x80\x4b\x60\xa6\xa2\x39\xd2\x93\x17\x59\x44\xa7\x59\x96\xbb\xef\x65\x27\xe9\xda\x53\x2d\xa7\x01\xbf\x03\xe9\xb4\x68\x0d\x78\xbb\xe7\x33\xb4\x1a\x71\xfa\x5e\x56\xd0\xd3\x9f\xe0\x33\x80\x4a\xb9\xa8\x1a\x25\x18\xfd\x01\x2d\xcc\xe2\xc5\x02\x20\xa3\x05\x8f\xe5\x7b\x11\x2b\x16\x47\xda\x39\x3e\x77\x80\x14\x3a\xad\xb8\x33\x0c\xd3\x65\x13\x49\x2c\x53\xcc\x3d\x8e\x23\xd3\xe6\x77\x43\x6c\x95\xe9\x9b\xc6\x0b\x8f\x15\xd1\x9a\x8f\x4e\x31\x46\xfa\xac\x49\x46\x3f\xcd\x87\x51\x61\xe2\x09\x1f\x8b\xee\x54\xf8\x0b\x65\x30\x13\xef\xc1\x47\x34\x69\xb8\xe8\xef\xf2\x15\xfc\x0d\x14\x0b\xa7\xd0\x53\x14\xb0\x1c\xfd\x04\x67\x58\xee\xf4\x0a\x5f\xc3\x9d\xc2\x63\xba\xa0\xdc\xa0\x4d\xbe\x42\x3a\x10\xd3\xbe\xbc\x71\x64\xde\x53\xca\xec\xe4\x2f\xb1\x39\x59\xc6\xac\x01\xa6\xbb\xd0\x0e\xb3\x51\xd7\x4e\x68\xe7\x71\x7a\x2f\xdd\x79\x12\x3a\x6b\xa3\x8b\x51\x5a\x98\x98\x3a\x6e\x48\xff\x21\x71\xc6\xaf\xb5\x7d\xad\xc9\x2c\x6d\x76\xd5\x57\x45\x4c\x91\x26\xab\xdf\x68\x45\xc1\x33\x4a\x84\x66\xb4\x0e\xb5\xeb\x3a\x4a\xa1\xbb\x15\xc1\x80\xf1\x53\x4a\xcf\xa3\xb0\x59\x94\x66\xa6\xb0\x93\xe5\x01\x85\x10\xc6\x3e\x8f\x7c\x81\xcf\x16\xe9\x1d\x3f\x37\xb8\xae\xcf\x97\x34\xb3\x79\xd1\xf2\x4d\x87\x4d\xe5\x1f\xb0\xa9\xf4\xe8\x46\xf9\xcb\x93\x1e\x42\xf1\x27\x63\x25\x4c\x8c\x66\x06\xa2\xe0\xf1\x80\x3a\xbc\x58\xf8\x77\x2b\x29\x97\x49\x56\x1e\x57\x88\x8e\xbd\x74\x4c\xe2\x67\xe2\x79\x60\x17\x5c\x42\x5e\x85\xb8\xf7\x0e\xe5\x17\x4e\xaa\xdc\x71\xdf\xfe\x37\xac\x2d\xfe\x4c\xe4\x58\xa8\x3d\xef\x8f\xfd\xac\xe9\x3f\x50\x22\x86\xd1\xe1\x89\x40\xcb\xdd\xed\xd1\xa1\x88\x61\x19\x5c\x51\x40\x7b\x01\x71\xe9\xdd\x40\xc1\x1d\x2f\x29\xfe\xc5\x16\x05\x7e\x01\xc3\x36\x21\x78\x6d\xec\x67\x52\x48\x7d\x7e\xa0\x26\x59\x3f\xf0\x16\xbd\xa3\x6c\x09\xff\xee\x05\x6e\xb3\x9c\xc6\x33\xe7\x0b\x7f\x92\xc4\xe9\x9a\xd0\x1e\x25\xfb\x56\x8b\xeb\x6c\x43\x9f\x62\xb6\x9d\xd9\x65\xdf\x38\x93\x62\xae\x2c\xeb\xf9\xb5\x6a\x86\x8d\x92\x51\xce\x8e\x8f\x73\x73\x9c\xd2\x4d\x52\x96\x8d\x93\x8a\x41\x31\xf2\xc0\x1a\x26\x77\x6b\x36\x46\xe8\xc0\x2e\xbf\x1f\x78\x05\xca\xfb\x5a\xb9\xe4\xd7\x34\xae\x74\xb4\xf4\x92\x0d\x8b\x5c\x53\xa1\xce\x2a\x4e\xfa\x69\xda\xe9\x15\xd1\x3b\xfe\x47\x81\xb2\x44\xb6\xe5\x22\xce\xd2\x95\xc8\xb4\x3c\xd7\x17\x33\x2a\x81\x7a\x37\x54\x42\x45\x3f\x1d\xe5\xe2\xc2\x81\xb8\xbd\x73\xa3\xdc\x4c\xfc\xba\xb3\x3d\x18\x2c\x2c\x2e\xb4\x7b\x23\x9b\x63\xbc\xad\x1a\x55\x0b\xdc\x49\xb8\x42\xdf\x1c\xdb\x6f\xc3\x55\xd4\x22\xaa\x30\xa1\xbb\xb5\x9c\x08\xe3\x76\x22\xa9\x93\xf2\x56\x89\xd9\xd9\xb5\x2c\x2a\xe0\xa0\x86\x08\x75\x57\xb1\x30\xb8\x02\xc1\x29\x7e\x51\xcb\x34\x46\xd4\x9d\x4a\x6c\x9e\xb7\x94\xed\xef\x4f\x91\x1f\xf1\x85\x0a\x46\x2b\x11\x23\xa7\x90\x3a\xdd\xc1\x7d\x96\x3b\xa7\xb2\x8a\x26\x0f\x8f\xa5\x68\xc5\x4e\x78\xc2\xf2\xa7\xe3\x8a\xd2\xbf\x6f\xd2\xde\xa8\x79\x41\x51\x5f\x77\x20\x96\x4d\x54\x8f\xb2\xd9\xaa\x6a\x3a\xbe\xef\xea\xc6\xb4\x6b\x5d\xc7\xdb\xe9\xb1\x94\xdf\x5a\xc4\x7f\xe5\x7e\xbf\x64\x8b\x38\x4a\xb8\xc6\x44\x98\x46\x07\x98\x5f\x37\x41\xd5\xf2\x22\x8b\x56\x5c\x75\x8b\x84\xfd\x13\x0a\x25\xfc\xba\x49\x70\xa2\x6b\x92\x28\xef\xb7\x14\xa1\x0d\x27\x9b\xf0\xaa\x1a\x60\x8e\xb9\xcd\x56\xc9\x13\xcf\xa5\x5f\xc7\xf4\x0d\xdb\x52\x8a\x28\x93\xb5\x42\x6e\x66\xa6\x5d\xa4\x59\x42\x77\x5b\x44\x35\x3d\xd3\xed\x9a\x32\x5b\x3b\x53\x25\xe8\x2c\xa3\xef\xc8\x07\x69\xa0\x74\xab\x2f\xd4\x4e\xbc\x99\x99\x76\x16\xad\x12\x6a\xbb\x5c\x05\x58\xa0\x6f\xe8\xd5\xfa\x86\x53\xc6\x58\x32\x6e\x16\x8e\x3e\x0f\x7b\x95\xf1\x85\x12\x39\xeb\xdb\x70\x85\xce\x0f\xd6\x1c\xc1\x77\xc0\x03\xb9\x4c\x73\x20\x69\x78\x7a\x91\x8f\xba\x51\x23\x8d\x56\xb2\x74\x4d\x59\x06\xff\x48\x5b\x71\xfc\x28\xd0\xb2\x60\x03\xd3\xb3\xbb\x95\x63\xdd\x1b\x81\xe7\xa9\x9d\x53\xba\x5f\x6f\x8e\x55\x50\xfd\xbe\xf2\x37\x61\xb5\x1d\x1c\x26\x6c\x34\xc5\x17\x0d\xc4\xa9\xd9\xf6\x28\x49\x6c\x68\xf3\xdc\x64\xeb\xb8\x79\xae\xee\x9a\x9b\x73\x7d\xe6\x87\x2b\xcc\xa9\xcf\x55\x49\xc2\x4e\xf0\x62\x57\x47\x95\x3c\x9c\xa3\x2a\x85\x51\xc9\x15\x78\x54\xeb\xa4\x57\xbf\xf1\x55\xfe\x7b\xd0\x68\x90\x8f\x8d\xa9\x62\xc1\x5f\x9f\xd6\x22\x1d\x97\x51\x0b\xb9\x56\xb3\xd7\xf8\x60\xf5\x00\xe9\x42\xd2\x2d\xc6\xc5\xbb\x7c\x8e\x22\xa5\x07\xab\x03\x15\x71\x8b\xfa\xc5\x38\x13\x3f\x46\xca\x8b\x38\x05\x8d\x11\x27\x57\xec\xbf\x2f\x01\xd5\xf1\xbd\xde\x0e\x7c\x27\x71\x39\x8a\x59\xf5\x49\xce\x40\x1f\x0e\x4e\x37\x61\x87\xc3\x74\x30\x34\xa1\xee\x68\xed\xec\xf8\xf5\xbe\x73\xa3\x01\x87\x65\x86\x43\x0c\xf2\x44\xaa\x1a\xc0\x27\x7e\x5d\xd1\xe1\x7d\xb9\xa5\xfc\xe6\x19\xc0\x2f\xe2\x71\x8d\x52\x26\x83\xa5\x28\x81\xc1\x98\x74\xa8\x3e\xa4\xdb\xa4\x25\xc0\x20\x0e\x75\xbf\xaa\x7f\x5e\x97\x11\x7c\xa1\x3d\x14\x83\x0e\xcc\x9d\x20\x55\x8f\x77\xba\xa8\x6a\xe7\xcb\x63\xef\xae\x18\x9a\x61\x94\x17\x99\x49\x20\xa1\x2e\xc2\x04\x4a\x54\xff\xb8\x2a\xf9\xfe\xab\xa2\xdf\xf2\x29\xdf\x93\x1d\xff\x4c\x9e\x74\x6a\x97\xa3\x24\x62\xae\x98\x42\x2c\xdf\xc2\x5e\x17\x7c\x1c\xfd\x5c\x84\xb4\x53\xe3\x8a\x41\x56\x94\xf4\x26\xfd\x39\xf0\x7b\x63\xd5\xa1\xbc\x89\xe5\x28\xb5\x70\xcb\xf9\xda\xdd\x0e\x9e\x54\x23\xbd\xd5\x34\x1e\x95\xc5\xde\x44\xa5\xbb\xed\x63\xe8\xef\x57\x78\xef\x0e\x0b\xd7\x1d\x44\x49\x04\xca\xb2\x12\xc5\xd5\xd0\x1f\xe7\x49\x66\x56\x57\xa3\x32\x11\xa6\x8d\x86\xda\x0e\xe4\x01\x7e\xdd\xc4\xdf\xcb\x0b\x93\xc0\xa5\x45\x70\xed\xb4\x9e\x30\xa0\xbb\x49\x9f\x23\xbb\xa1\xc1\xd9\xef\x25\x33\x34\x09\x61\x5d\xcb\xdf\x84\xb4\x10\x2a\x05\xfc\xba\x49\x4a\xda\x44\x5d\x99\xe5\x89\xb3\x3a\xfd\x39\x5f\xd4\x56\xd0\x81\xe7\xda\x26\x8e\xcb\x80\xe9\x94\x17\x90\xe0\xf3\x6b\x95\x04\x3c\x9b\x76\x27\x54\x17\xf2\x46\xc5\x03\xae\xfc\x13\xa4\x8c\x47\x6b\x94\x6d\x0a\xca\x76\x18\x85\x36\x29\x44\xe0\xdd\xf9\x6a\x28\xd1\xa4\x86\x4e\x7d\x9e\x0e\xec\x52\xda\x85\xb6\x8a\x13\xac\x50\x72\x17\xf2\x7c\xc8\xf2\x29\x8d\xbb\xa4\x8b\x84\x9a\xfc\x36\xa5\xe0\x68\xb3\x9d\x54\xb4\x37\xc8\xea\x22\x4c\xef\xed\xa8\x96\xce\x55\x35\xaf\x4e\x43\xb8\x00\xd2\x7d\xc1\x71\x7d\x07\x89\x1c\x5f\xa8\x1b\x93\xf5\x44\x2a\x16\xb9\x3f\x2b\x69\x39\x52\xb6\x23\x81\x6d\xe9\x5e\xd9\xc5\x26\x8d\x00\xfb\xcd\x51\x79\xb4\x5a\xf6\xce\x40\x0b\x0c\xb9\x09\xbf\x76\x75\x41\xd7\x2e\x47\x09\x8e\x6d\xd4\xfd\x60\x74\xf1\x6b\x55\x75\xf2\xe0\x61\x52\x0d\x0b\xc0\x51\x60\x30\xba\xb2\xd5\x04\x94\x46\x40\xea\xdb\x9f\xc7\x81\xe7\xca\xdb\x62\x72\xa2\xfd\x1e\x9c\x76\x4d\x39\xb5\xc0\xce\x2b\xf4\xd2\x37\x47\x26\x2b\x6c\x16\xaf\xef\xd6\x35\x3a\x85\x4a\xa1\x8f\xd1\x7d\xe2\x59\x76\x47\x6f\x5d\x6e\x7b\xa0\x95\x7d\x48\xb9\x9e\x5c\x51\x9d\xba\x1f\xaa\x16\xc3\x52\x9a\xe6\xe4\x3a\xb3\x75\x11\x51\x07\x45\xdd\x1b\x88\x3a\x88\x47\x3b\x30\x50\x64\xa7\x82\xc0\xbf\xe9\x44\x07\x64\x47\xe7\x61\x70\x70\xba\x01\xb6\x51\x06\xdb\xcc\x6a\x13\x32\xa7\x10\xaa\xb8\x25\x5e\xa3\x7a\xc9\x64\x3d\x13\x25\x62\x4d\x8a\x34\xf1\xba\xf2\x73\xbc\xee\x25\xe1\x0a\x32\xe7\xa2\xdb\x21\xa8\x56\xcf\x82\xf0\x76\x82\xbd\x6c\x64\x63\x79\x43\xe9\x10\x51\x80\xe4\x8b\x0a\x59\x3c\x8e\xba\x7b\x29\xa1\xc7\x4a\xbc\x84\x72\xdf\x35\x23\x1d\xd6\x03\x6a\x4a\x58\x01\xcc\x8f\x76\x44\x74\x6f\xc6\xc0\x26\xb4\x12\x55\x7c\xef\xeb\x0d\xcc\x6f\x6e\xaa\xec\xf2\xbc\xda\x49\xfd\xf5\x41\xba\x16\x15\xaf\x4c\x78\xab\x4f\x6c\x7b\xa9\x82\xca\x25\xc7\x3e\xb7\xca\x8d\xd8\xbe\x4c\x7f\x20\xd2\x22\x2d\x67\xf4\xf4\x09\x71\x5f\xb0\xad\xaf\x05\x1a\xf4\x62\xe2\xa2\x1f\x9a\x8c\xfb\x98\xba\x57\x22\xd1\xbc\x69\xda\x65\xb2\x5e\x94\x70\x75\xd1\x74\xd2\xfb\xb4\x23\xef\xa7\x43\xd9\xe9\x72\xf3\x3d\x56\x78\xac\x36\x3a\xa3\x4b\x81\x62\xba\xa3\xd1\xf0\xe9\x2f\xa8\x62\xf2\x82\x2a\x06\x2e\x34\x55\x3f\x61\xda\x4b\xd2\xbc\x8c\x9b\x11\x7e\x94\x30\x43\x5a\xf3\x9e\x7d\xd2\x58\xac\x44\x45\xd8\xaf\x0a\x8d\xa0\xe9\xe6\x54\xfa\x1a\x6e\x45\x37\x0d\x8b\x4c\x62\x8a\x94\x28\xaa\x5c\xa9\x55\x02\x73\x73\xd4\x66\x0a\xe1\xde\xc5\x9e\xf8\xc8\x82\xc5\x20\xff\x11\x6d\x21\x95\xf7\x27\x34\xd5\x91\xde\x5b\x0e\x40\x5f\x17\x1f\x1a\x3f\xe4\xe1\xd0\x06\x6b\x1d\xa5\x34\x9a\x60\xfc\x5a\x75\x26\x96\x09\x5b\xe4\x8a\x33\x94\x7b\xff\x4a\x71\xc6\xff\x95\x17\x25\xec\x19\xae\xb2\x71\xfb\x60\x93\x55\xb1\x23\x45\xd7\xaf\x6e\xeb\x76\x70\xba\xbd\x4c\xf8\x2b\xbf\xf7\x94\xf4\xf8\x39\xc5\x51\x59\x89\xe2\xb8\xcc\x84\x1c\x5f\x8b\xe5\x51\x91\xc5\xc0\xf6\x0a\x87\xe5\xc9\x86\xd6\xd0\xfe\x76\xdf\xc6\x43\x21\xab\x08\x9f\xc9\x37\xda\xff\x8f\xb1\x46\x7d\xd6\xca\xce\xf2\xd4\xb4\x26\x8b\xf1\x18\x1d\xcb\x53\xb1\x2b\x14\x72\xb7\x17\x0d\x06\x51\xb8\x42\xbf\x09\x87\xe0\x1b\xf4\x9b\xf8\xf5\x76\xb4\x36\x9d\xe4\x07\x9e\x7b\x90\x22\x81\xd2\x52\x16\x75\xae\x0d\xad\x85\xbe\xa5\xdc\x57\x40\x1a\x95\x1c\x86\x72\x28\xc5\xab\x95\xaf\x09\xe5\x31\xfc\x05\x3c\xc0\x04\xfc\xa2\xfa\x18\x2f\xa2\xd7\x2d\xbf\x45\xc6\x09\xb9\x2d\x0a\x27\xab\x89\x29\x1f\x17\x64\x7c\xa1\xf2\xdf\x6e\x94\xe7\x69\xbc\xea\x08\xf8\x68\x41\x5d\xab\x3c\x97\x96\x33\x06\x3b\xa2\xbd\x90\xfb\x76\xf0\xb0\x9f\x38\x3f\x44\xc9\x36\x46\x3d\x0f\x61\xec\x24\x2e\xb7\x4a\xde\x73\x67\xc7\xcf\xef\x01\xa0\xdf\xba\x8e\x5f\x84\xcd\x08\x3f\x78\xaa\x40\x7f\xe3\xf1\x0d\xc5\x5c\x99\xea\xa8\x4a\xee\x53\xda\x22\xd2\x6a\xf3\xe9\x2c\x17\x5f\x38\xef\xee\xd6\xca\x4e\x69\xdd\x0f\xfb\xa9\x4d\x22\x04\x55\x71\xb2\xa8\x64\x73\xca\x52\xa0\xde\xc6\x59\x9c\x6e\xf7\x32\xb3\x44\xfb\x1c\x25\xe7\x5d\xfc\x35\x5f\x68\xc5\x95\x34\x5b\x79\x48\x81\x07\x6f\xd1\x83\x04\xe2\x03\x2a\x2b\xb8\xad\x34\x78\xdc\x9a\xda\x68\xcd\xcc\xc8\x2f\x19\x2b\x9d\x19\xa6\x75\x88\x84\x80\x92\xa1\x3b\x86\xa2\x14\x2d\xbf\x9f\xc0\x97\x15\xdf\xbb\xd5\x51\xf0\x63\xaa\x23\xf9\x1f\xd5\x1a\x2d\xe5\x59\xde\x35\xd9\x4a\xbc\x3e\x51\xa1\x6e\x2f\xca\x3c\x0d\xd2\x52\xb8\x37\xb7\xd4\x86\x19\x98\xc4\xf4\x58\xd3\x1f\xa9\xd6\xa6\xa2\x9c\x6c\xaa\x29\x52\x37\xea\x3e\xa8\xfc\xa9\xf7\x6c\xf8\x81\x37\xa6\x45\xd4\x68\xfe\xb7\xff\x09\xe6\x88\xc8\xee\xd0\xdd\xa1\x26\xfc\xe8\x73\x1d\xe5\x6c\xb1\x03\x64\x5c\xa6\xc3\xa9\xc2\xe6\xc9\x0d\x65\x40\x7d\x47\xd9\x69\xef\xd9\xf0\xdc\xf1\xbf\x6a\x6a\xc6\x26\xd6\x64\x93\x8a\x07\x88\x10\x83\x6a\xe6\xc1\x8e\x0f\xb4\x98\x69\x63\x53\x9e\x54\x9b\x28\xb1\x6b\x39\xd9\xbf\xe6\x88\xba\xe2\xe2\x5c\xfe\x25\xbf\x56\x49\xe8\x9a\xb5\x2b\x36\xe9\xa2\xdb\x82\x87\x7a\x55\x19\x09\x5c\xa7\x0f\x11\x58\x10\xb5\x2c\xb0\x29\xef\xd1\x48\xc9\x85\x5b\xe7\x3d\x72\x04\xcb\x4f\xac\xfb\x9c\x83\x8f\x49\xba\x11\xf7\x06\x10\x9f\xc0\xce\xe4\xd7\x5a\xf0\xc2\x64\x83\x09\x9d\x86\xd0\x37\xc3\x56\xfe\x71\xe0\x41\xd6\x7f\xa4\x7d\x4e\xcb\x4a\x29\xc7\x4d\x13\xa4\x10\x0e\x13\x8d\x21\xc2\x3d\x87\xb6\x16\xbf\x56\xb7\x2d\xca\xd2\x24\x0a\x4d\x1c\xaf\xb7\x14\x6b\xf2\xa3\xb1\x82\x0f\x7d\xf4\x99\x50\x9e\xdc\x9a\x09\x6d\x62\xeb\x2b\xc8\x3b\x7a\x18\x3c\xd5\xf1\xdf\x39\x1e\x2d\xad\x44\x49\x4b\x29\xca\xf1\x61\x20\x7a\x2f\x35\x66\xe7\x8c\xb8\x2c\x6c\x53\x0b\xab\x0a\x33\x3c\xae\x3c\x68\x86\x69\x1e\x15\x10\x41\x10\x83\x2c\xcf\x6f\x3e\xd7\xa0\x3f\xbc\xd0\x5e\x2e\x8b\x69\x26\xf0\x3a\x66\xb1\x06\xac\xba\x94\x37\x4e\xd3\x41\x64\xb3\xa9\xf2\x00\x71\x2b\xd5\xd5\x46\xe7\xf5\xb0\x13\xbd\x0f\x74\x30\xfe\x25\x1a\x4c\xa2\x80\xf3\x59\xba\x8d\xab\x51\x68\xf1\x40\xb1\xf2\x77\x76\x94\x18\x0e\xcc\xfb\x75\xa9\x2a\xc3\x62\x37\x9c\xc9\x6c\x37\x2a\xa6\xe8\x44\xc2\xe0\xe8\x94\xea\xd1\xc1\x90\xdd\xf9\x81\x7a\x73\x80\x43\x41\xc5\xa8\x6d\x7b\xcc\x9e\x9b\x6b\x27\x29\x49\xb1\x7b\xdf\x6d\x67\x07\xef\x4a\x89\x13\xb5\x5d\xbd\xb0\xb8\x50\xae\xd1\x49\x8f\x3f\xf8\x8b\x71\xc5\xea\x70\xf6\x00\x1f\x49\x7f\x0d\x1a\x37\x0f\xac\x1b\x9e\xd0\xfe\x76\xba\xbc\x9c\xdb\x02\x0b\x47\xda\xb5\x95\x46\x6e\x43\x5f\xb8\xc8\x4c\x58\x66\x9d\xde\x3e\xf2\x82\x66\x62\x5e\x50\xba\x7a\x6b\xc3\x21\xfd\x2e\x56\xc7\xc7\xdd\x11\xa9\xfc\x7a\xef\x14\xa0\xf0\xae\xcd\xcc\x12\xbb\x09\xe2\x91\xe3\x11\xf1\xeb\xe6\x0e\x02\xe9\xed\x72\x62\x20\x86\x2a\x74\xfb\xc5\x69\xa5\xde\x7b\x79\x16\x76\xa1\x36\x9b\xa0\x45\x24\x1d\x27\x4f\x3a\x3b\x86\x65\x27\x79\x63\xfd\x1d\x16\xda\xab\x51\x52\x18\x96\x85\x96\xcc\xc5\xc7\xed\x17\x1b\xb4\x4b\xf7\xb7\x33\xdb\x33\x99\x13\x81\x91\x1d\x4a\x77\x50\xf6\xae\xf0\x9f\xe2\xa8\xb0\x19\xc2\x88\x37\x7a\x00\xc4\x44\x9a\xa2\x15\xa1\xd1\x81\xdd\xa3\x44\xf8\x95\x53\x15\x7b\xe6\x54\x40\x95\xda\x21\x45\xc4\xf4\xbd\x6f\xf3\x1f\x04\x7e\x21\x5d\x44\xdc\x04\x2e\x6e\x4f\xc7\xbb\xe8\x14\x59\x4a\xc2\xb8\x98\x4d\xe1\xae\x5d\xd4\x94\x20\xd4\x74\x3c\x2d\x6d\xc6\x50\x8f\x5e\x31\x49\x02\xca\x00\x88\x6e\x9f\x62\x99\xf0\x85\xf2\x83\x1a\xa4\x49\x3a\x4c\x49\x12\xa9\xe5\x9c\xc6\x18\x1f\xc9\x17\x8d\xcc\x8e\xa2\x1f\x25\x2b\x2a\xab\xb9\x19\x28\x10\xc0\x4d\x15\xe4\x48\xaf\x88\x3a\xad\x2e\xe1\x3b\xaa\x74\xb7\xaf\x22\x75\x41\xa8\xd8\xaa\x10\xf7\x87\xcf\x50\x6f\x13\x13\x86\xf3\x15\x52\x6e\xe0\x51\x26\x7f\xa5\xa5\x3b\xee\xaa\x0f\xb6\x49\xcf\xc6\x2b\x36\x99\xf2\x2d\xd8\x8f\xe9\x83\x59\xe5\x86\x5a\xe4\x08\x31\x9f\xd2\x06\xc7\xad\x3e\xa7\x7c\x41\x5e\x57\xb6\xf8\xdd\x51\x19\x1f\x5c\xf2\x78\x9c\x32\x11\xe1\xb2\x2b\x0f\xbe\x73\x28\xfd\xf9\xa2\x59\x4e\xc5\x10\x03\x9d\x40\x9c\xe2\x67\x16\x78\xfd\xe1\xfa\x70\x66\x71\xba\x6d\x7a\x99\xb5\x53\x4a\xe5\x8d\x8c\xfb\xf5\xe0\xe2\x05\xaf\xb4\x7e\xd0\xa3\xa5\xe8\xee\x0a\xfe\x40\xdd\xdd\x28\x05\x34\x41\x30\x7e\xe5\x9b\x09\xd6\xab\x49\x16\x63\x20\xca\xc0\x4e\xa0\x32\xf0\xc3\xec\x13\x4d\x45\xf1\xb2\x45\x8f\x78\xc2\xb7\x8b\x6e\xd0\xfd\xc7\xb7\xf9\x63\x3c\x37\xa9\xcb\xf7\xf2\x1b\xb4\x0f\x4e\x7f\x11\x99\x81\x23\x52\xf9\xae\xe7\xee\xce\xce\x2f\xc9\x63\x22\xf1\x22\xd4\x75\xff\xb3\x92\x8e\xfa\x1d\x02\x15\x02\xe9\x73\x93\xbc\x84\x71\xcc\xff\x44\x2b\x92\x01\x1d\x89\xb1\xd1\x49\x8c\x1d\x70\x3e\x7d\x17\xc7\x8b\xe4\xa7\x14\xea\xb1\xf1\xdf\xa4\x3a\x0c\xa9\xd5\x9f\x61\xda\x2b\xca\x23\x54\x94\xa1\x56\x7a\x3f\x40\x3f\x0c\xe0\x38\xe8\x6a\xe2\x20\xbd\x15\x90\xd9\x01\x5a\xfa\x47\xa9\x5b\x88\x26\xd0\x09\x1a\xd1\xb9\x41\x98\x6f\x73\x3f\xbc\xa1\xe0\x12\x47\xf1\x84\x91\xf3\xed\xdc\xf0\x0c\x99\x23\x40\xff\x60\xdc\xf7\x37\x3a\xa6\xb0\x08\x38\x95\x37\x5b\x8f\x91\xff\x24\x92\xe8\xdf\xa2\x28\xe4\x84\x46\x16\xe5\x21\x30\x88\x0c\x69\xdd\xef\xa3\x3c\xc0\xfc\xe9\x1d\x5a\xec\xe8\x3d\xee\xa9\xe9\xc0\xcf\x1e\x68\xaf\xba\x06\x3f\x76\xc4\x35\xb5\xd1\xae\xd5\xfa\x33\xf3\xf3\x6d\x13\x86\x36\xb6\x99\x07\x72\xe0\xa4\xfd\x11\x42\x36\x5f\xb8\xf9\xb4\x8d\xbb\xd2\xfe\xc6\x41\x77\x45\xc9\xaa\x5d\xf1\xd2\xec\x51\x3c\x90\x06\x70\x13\x50\xc1\xb7\x54\x4c\x1c\xad\x58\x3d\x48\x3c\xab\x19\x2b\x67\x1b\x84\x4d\x9f\x6d\x53\xff\xd2\x55\xbe\xd8\x6b\xb0\xd9\x70\xdc\x0a\x25\x84\xe9\x64\xd8\xac\x29\x58\xc7\x10\x25\xd5\x43\x1d\xdf\x87\xbd\x35\xd6\x4b\xfd\xbe\x22\x38\xbf\x34\xea\x46\x30\xc3\xf2\xe4\x8d\x33\x58\x76\x02\x13\xa9\x93\xf7\x16\xda\x43\x13\xae\xc8\xd1\x89\x6c\xee\xed\xc0\x67\x76\x6f\xd7\x02\xcb\x3f\x6a\xe7\x45\x9a\x58\xf0\xd7\x64\x54\xaa\x4c\x63\xce\xaa\xf2\x34\x37\xab\x56\x39\x8e\xbd\x56\xa1\x4b\x37\xcc\x70\x96\xac\x11\x2f\x46\x51\x23\xa5\x77\x16\x99\xd2\x86\x3f\xe9\x66\xa3\x64\x05\x42\x62\x68\xd2\x7c\x30\xf6\x23\x8b\x6b\x8a\xde\xbe\xd9\xc4\xb9\x1f\xc6\x26\x02\xa5\x8e\x2d\x3b\x2b\xf6\x9d\x4d\xb9\xb4\xc9\x73\x5b\xc8\xd4\x07\x67\xd3\x0d\xcd\x28\xb9\xe1\xb9\x43\xff\x94\xb0\x60\xf8\xee\x93\x1d\xa5\xc4\x7f\x6a\xdc\x52\x16\x2a\xf4\xc7\x38\x98\xea\xf6\x15\xb3\x07\xda\xb9\x5d\xb5\x19\x30\x0a\xae\xa7\x35\xef\xc3\xb8\x5f\xad\x27\x6a\x00\xe4\xf9\xf9\xf6\x6a\x94\xb7\xca\x30\xe4\x48\x26\x4e\x9b\xfd\x8c\xd2\xfd\x23\x0f\x55\x87\x15\x3a\x59\x81\xb5\x3c\xea\x06\x78\x5d\xe5\xeb\x26\x38\xa7\x96\x53\xfe\x3c\xeb\x30\xa9\x83\xb4\xc8\x35\x6d\xed\x34\x05\x42\xc9\x94\x9e\x72\x69\xcb\xd0\x66\xe1\x28\xf7\xde\xb2\x9c\x3d\xfc\x96\x32\x30\xfd\x2d\xa5\xe7\x1f\xa6\x49\x2f\x4e\x07\x14\x02\x60\x78\xca\xf6\x5b\x4a\x4d\x7c\x4b\xe5\x8d\xef\x69\xc3\xbc\x0b\x0d\xfc\xf7\xf9\x76\x6e\x60\x52\xa2\x14\xf9\x7c\xc7\xf1\x76\x03\x13\x73\x3f\x19\x3f\x44\x4b\x23\xbe\x61\x68\x79\x7e\x4a\x31\x83\x5f\x8f\x1f\x74\xdf\xd8\x86\x53\xb4\x19\xb1\x8d\xb1\xdb\xf1\xfa\x30\x82\x33\x2a\x14\x48\x02\x22\x29\xbc\xa2\xcd\x3a\x0f\xd7\xfa\xa2\x8b\xd3\xed\x25\x31\x25\x43\x3d\x7e\x93\x1a\x29\x5e\xa9\x5e\xda\x3f\xa7\x95\x96\xc9\x75\x9d\x09\x21\x17\xc4\x88\xe8\xa4\x82\x37\xad\x46\x59\x31\x82\x8d\xa8\xc4\x61\xf4\x80\x25\x2f\x51\xfe\xa5\x27\xb5\xca\x88\x0d\x47\x59\x54\xac\xef\x51\xb0\xec\x4b\xca\x34\x61\x3c\x56\x7d\xbf\x3f\x53\xc2\x5a\xec\xbb\x2e\xdd\x8e\x96\x73\x20\x03\xa0\x54\xb1\xd7\x04\x91\x7a\xa9\xb6\x3f\xf6\xcd\xb7\x07\x26\x5b\xe1\x51\x38\xa2\xfb\xeb\x38\x11\x50\x63\xfe\x11\xea\x28\xe4\x7a\x3f\x50\x02\xc3\xf9\x30\xb2\x3d\x1b\x4f\x94\x7b\x14\x77\xe9\x14\xfe\x29\xea\xb4\x8f\xe9\xfb\xa0\x9d\x74\xa5\x16\xdc\x17\xa7\xf7\xb7\x97\xa2\xa2\x80\x23\x96\xdb\x81\xd0\x0f\xe1\xd7\x4d\x01\xae\x6b\x2d\xd3\x72\x31\x84\x39\xad\x25\x6a\x4e\x37\x64\x51\xb3\xed\x81\x35\x09\xdb\xe2\x68\x1a\x1a\xbf\xae\x78\xc5\x85\x70\x85\xda\x5d\xde\x7b\xd1\xb4\xa0\x7b\x8f\x7f\x7c\x27\xf0\xb8\x4e\x16\x93\x77\x7c\x42\x3f\x29\xb8\xa2\xf0\x31\x27\xb5\x45\xf9\x66\xc3\x0e\x7a\xa1\x1d\xa6\xab\x36\xe3\xca\x55\x16\x8a\x26\x91\x4a\xf4\x18\x66\x69\x3f\x5a\x8a\x8a\x96\x52\x8d\x60\x90\x8b\x68\xef\x34\xd8\x42\x96\x6f\xbe\x94\x59\xd3\x2d\xfa\x88\x10\xc0\x22\xe1\x0c\xe5\xd7\x8a\x57\xd7\x4b\xd3\xee\xba\x35\x40\x18\xc8\xde\xa2\xcf\xe0\x8b\xc0\x4f\x3b\x4c\x92\xa8\x23\x8c\x19\x0e\x7c\xd1\x18\xf9\xfb\xc6\x4b\x86\x62\x64\xf7\xba\x9e\xdf\xbd\x1e\xf8\x70\x2a\x73\x1d\xb6\x6c\x50\x31\xe5\x23\x25\x6c\x94\x17\xd6\x74\x31\xb0\x45\x0b\xe3\xca\xd8\x8b\x07\x60\x44\xbb\x75\x51\x29\xa5\x71\x79\xef\x32\xcd\xf2\x8b\x48\x2b\xb4\xcc\x5a\xa5\xb5\x23\x01\x76\x25\x49\xd7\x62\xdb\xed\x59\xa7\x2a\x8a\x16\x38\x08\x18\xfc\x5a\xcd\x90\x4d\x18\x92\x0d\x48\x6f\x17\x4e\x37\x51\xf9\x6a\x39\x6b\xfb\xcf\xa9\x9e\x0f\x37\x6f\x90\x1f\x5e\xd4\xe6\xbb\xbf\xa9\x36\xff\x3f\xd8\xa8\x9b\x76\xc6\xe9\x9a\xcd\x44\xd2\x03\x2c\x94\xbb\xf4\x27\x15\x25\x47\x41\x48\x3d\xa5\xe4\xc5\x57\x6d\x6c\x93\x5e\xd1\x47\xf2\xc1\x0c\x90\xc0\xf3\x68\xee\xbb\x8a\xbd\x30\x59\xcf\x7a\x82\x1c\xb6\x24\x70\x48\xfc\xba\x86\x43\x5a\x9c\x6e\x0f\xa2\x97\xe5\x09\x23\x8b\x05\xb8\x9c\x5f\xab\x5a\xa8\x9f\xc6\xeb\x13\x94\xbc\x6a\xe1\x2c\xe4\xa0\x27\x2a\xb3\x30\x75\x7b\x87\x54\xc3\x45\xdd\x49\xe5\x03\xb4\x83\xe4\xb0\xc4\xaa\x95\x96\xaa\xe3\xe0\x7a\x0e\xd4\x66\x05\xba\x1d\xdb\xee\xe7\x68\xc3\xa2\x43\xfd\x1b\x81\x67\x61\x5d\xe3\x16\x29\x72\x2c\x58\x26\xe0\xa1\xfc\x3d\xa0\xd6\xf0\x1c\xaf\x83\xf6\x80\x55\x07\x6f\x7a\xfc\xfd\x2e\x9a\x9e\x88\x1a\xbb\xe7\xee\xde\x42\x0c\x77\xa1\xd1\x9d\xb1\x8c\xe9\x00\xcf\x88\x67\x0a\x58\x93\x57\x58\xd4\x58\xb0\xa7\x34\x8a\x99\xea\x50\xe5\x84\x68\xfc\x9a\x16\x71\x3f\x13\x28\x33\xa7\xf3\x18\x3b\xe1\xe3\x76\x92\x09\x12\x4a\xaa\x87\x37\x94\xf4\xf3\x1f\xb9\x04\xa6\x1f\xf5\xfa\xd0\x95\xc6\xa3\x42\xff\x10\x68\xaf\x87\x37\xbc\xcd\xed\xe8\x89\x8e\x7f\x86\xf9\x33\xe1\x33\x2d\x35\x95\x81\x88\xb6\x40\x0b\x1a\x3c\x72\x06\x26\x8c\x92\x22\xcd\xfb\xca\x0d\x8f\x9b\x24\x7c\xe1\x42\xc0\x2b\x26\x2a\x0c\xb2\x52\x3e\x81\xa9\xc2\x16\x5a\xa9\x42\xa6\xec\xec\xc8\xb4\x34\x33\x6b\x93\x74\xff\x70\x8a\x81\x8b\x4f\x8f\xe8\xbb\x4f\x75\xfc\xb8\x7f\x37\x86\x10\xd2\x95\xae\x0f\x0d\xdb\xcf\x2f\x4e\xef\xf1\x4b\xe2\x27\xbc\x24\x9c\x66\x44\xf9\xd7\x38\x04\xae\x05\x6a\x64\xfd\x2a\x1e\x9e\xe0\xa1\x3d\x37\xf2\x0f\x30\x5e\xc3\xa7\x9f\xa0\xb6\x07\xf7\x3b\x03\x2f\x83\x92\xa4\xab\xcf\xd0\x51\xaa\xfd\x4c\x31\xd3\x78\x1b\x3f\x57\x9c\x5f\xb6\x47\xf9\xf2\x8c\xeb\x46\x39\x9d\x23\xb2\xf9\xa4\x35\xe9\xcf\xf4\xd3\x15\xa1\x88\x24\xb7\x49\x3e\xca\x77\x6b\x12\xc1\x75\x65\x4c\xfc\x5d\xfc\x16\x71\x48\x2d\x7f\x0b\x6b\x68\xe3\xb7\x70\x12\xa3\x31\xa4\xb7\x74\xb1\x7f\xb8\x09\x2e\xd4\xb7\x83\x28\x1f\xf6\x29\x17\x77\xf6\x3e\xef\xd3\x77\x04\x7e\xf0\xdd\xb1\x47\x06\xfe\x9f\x0e\xf7\x16\xa6\x65\x8a\x59\x58\x9e\x7e\x91\xc3\xf8\x5f\x43\xef\x11\x95\xfd\xde\x8e\x5f\xb8\x93\xb5\xa8\x44\xec\x05\x23\xbe\xf0\xca\xbd\xc2\x0b\x8d\x34\x14\xd7\x03\x13\xc5\x0a\x96\xfb\x01\xfe\x40\x0a\xa4\x47\xd4\xfc\x70\x60\x93\x3d\x74\xb3\x04\x98\xa8\x21\x85\xe5\xc6\x63\x58\x10\x05\x19\x07\x59\xf6\x53\xb4\x0f\x54\x23\xe5\x86\x9a\x15\x7c\x30\x56\x32\x6f\x4d\x4d\xdb\x17\x40\xbb\x94\x22\x1d\x8f\xe4\x9a\xc2\x03\x5e\xab\x04\xbd\x34\x89\x60\x66\x8e\x1a\x88\x0d\x3c\xf4\x11\xc5\xff\x63\xac\xa2\xeb\xa6\xab\xf3\x07\x69\xd7\x3a\x6b\x15\xac\x6b\x26\x75\xf1\x85\x4a\x84\xd7\xb2\x32\xb3\x4b\xa6\xbc\xb6\x34\xeb\x7d\x23\x52\x9d\xd7\x91\xf9\x1a\x35\x43\xf8\x5f\xd1\x5a\x10\x56\xbd\x4f\x90\xcb\xcf\xa6\x9a\x05\xcb\x55\x44\xac\x7c\x6c\x06\xe3\x1b\x11\xee\xc3\x40\x69\xa5\x5d\x0d\xfe\xd3\xcf\x18\xa5\x84\x69\x1c\x1b\x6a\x4a\x47\xaf\xc0\x33\x40\x40\x9c\x27\x14\x83\xea\x84\x06\x6d\x8d\xb2\x84\x1d\x99\x30\xc0\x05\xe9\xd4\xe1\xd2\xdc\x79\xc0\x15\xa9\xab\x28\x64\x7a\xda\xbe\xea\x07\xa6\xd7\x2e\xd7\x9a\xc8\x8b\xd3\xed\x7c\xd4\xeb\xd9\x5c\x00\x5b\x4e\x19\xb1\x3c\x77\x04\x5b\xe0\x97\x9e\x21\x01\x04\x7f\x13\x6e\x29\x88\xe3\x2d\xf5\xef\x46\xd9\x92\x49\x1e\x52\x0d\x14\xf4\x3d\x05\x65\x4f\x07\x21\xce\xa2\x43\xd8\xf5\x6c\x87\x8a\x9d\x8e\xf7\x3b\x3a\xae\xb9\xad\xf0\xff\x08\x3c\x77\x64\x53\x19\x22\x9c\xab\x1a\xaf\x78\x0a\x38\x18\xb2\xe2\xe7\xe2\xb1\x46\x66\xd9\x3e\xe0\x67\x56\xcc\x61\x92\xfb\xe9\x62\xe1\xdf\xfd\x3d\x24\x4d\x4e\x09\xde\xe9\x99\xde\xa5\x12\x19\xc1\x81\xeb\x10\x55\x94\x48\x58\x7e\x2b\x50\x38\x80\x33\x81\x2f\x34\x57\x47\x13\x8a\xe7\x76\x41\xb5\xd2\x30\xa6\x43\x6a\x78\xa5\x96\xc1\x3f\xdd\xce\xec\xc0\x0e\x96\x18\x94\xab\x84\xa8\x5e\x70\xf5\x97\xde\x85\x45\xbc\xfe\x05\xfa\x69\xf8\xd6\xdc\x89\x67\xda\xa8\x8e\xad\x13\x94\xd7\x48\x0d\x8f\x85\x8f\x10\x7c\x9d\x86\xcc\x1c\x06\x69\xf7\xb0\x1c\x09\x3d\x7f\x27\x9c\xb1\xb0\xb8\xe0\xba\xeb\x5e\xa7\xe4\x95\x43\xc8\x0c\x44\xfa\x94\x42\x07\xfd\x8f\x5f\x7f\x6c\x43\xcd\x71\x2e\x06\x4a\x26\xab\x45\x49\x8d\xeb\x08\x2d\x4e\x73\xb7\x65\x17\x1e\x06\xca\xe5\x1b\x74\xfa\x3b\x65\xee\x7d\x1c\x85\x9e\xf9\xc2\x86\x02\x21\xbf\xc5\x39\x8d\xf4\x93\x15\x37\x0e\xa5\x1f\x56\xcf\xe7\x41\xca\x47\xca\xf1\xf9\x8e\xbe\x81\xb9\x89\x1f\xa1\xff\x09\x90\xf2\xe1\x0a\xf1\x9b\x72\x23\x66\x74\xea\x1f\xbd\x13\x6d\x5d\xe7\x9d\x36\x2f\x2e\xf6\x97\x10\xc2\x04\xd3\xeb\x2d\xa2\xdf\xa2\x05\x8f\x15\xf4\x91\xca\x47\x99\x92\x8b\x77\xba\x8c\x07\x26\x14\x52\xba\x97\xfc\xb5\x02\xc5\x5c\x3c\xa4\x98\xbe\x79\xd4\x4b\x68\x54\x9a\x14\xe8\x69\x6a\x13\x52\x34\x28\x5b\x94\xab\x88\x4a\xbd\x9a\x5c\x67\xe0\x41\x21\x8a\xbb\x8e\xfc\xdc\x1c\x83\x19\x51\x71\xfe\x26\xed\x09\x71\x0e\x71\x5a\xb2\x7d\x53\x84\x7d\x9b\x45\xf9\x40\x39\xbf\x32\xda\x9a\x2f\x14\xd9\x24\x4f\xc3\x15\x0b\x02\x02\x1a\xe6\x57\x15\xec\xf6\xaa\xaa\xc0\x96\x63\xb3\x9a\x66\x28\x49\x71\x47\x5f\xc5\x0d\xe2\x8b\x5a\x1d\xb8\xf0\xdc\xfe\xb6\xc9\xc2\x82\x7d\xbb\x65\x45\x2b\xdf\xad\xeb\x4a\xa1\x2c\xb3\xcb\xb1\x0d\x8b\x49\x85\x8a\xac\xe0\xdd\xcb\x2d\x82\x15\x77\x0f\x5d\x7c\xbe\xa8\xba\x16\x9a\x6c\x97\x9f\xb4\x7c\xa8\x5b\xad\x47\xf5\x3c\x04\xd1\x04\x0d\xf7\xf3\x63\x65\x8e\x77\x5d\x41\xff\x6e\x28\x0f\x97\xa2\x3c\x10\xa6\xb4\xab\x1d\x7d\x21\x76\x16\xac\xc4\xfa\xf2\xf3\xb1\xb1\xae\x2a\xc6\xc8\xd5\x5a\x2e\xe7\x54\x50\x06\x5d\xd3\x8f\xd5\x74\xf0\x88\x86\x41\x1c\x09\x1e\x53\x6c\x82\x81\x89\xe4\x5c\x72\x7e\x13\xce\x56\x9c\x95\x6a\xa4\x76\x6e\x39\x3d\xb3\x8d\xb1\xce\xc1\x68\x8b\xca\xb4\xb5\x9e\x41\xed\x6f\xe7\xd6\xae\xa0\x47\x21\x46\xad\xe5\x4f\x15\xb0\xc0\xf6\xa7\xfc\xe2\x8b\xed\xa1\xcd\x96\xe5\xd1\x89\x96\xa8\xd2\xe9\xda\x52\x7f\xcf\x56\x7c\xb8\x57\xc7\x9a\x3a\x54\x45\x34\x70\x95\xa8\xcc\x0e\xfc\x92\xaf\x8f\x0e\x88\xb7\x92\x25\xcb\x91\x8d\x41\x87\x74\x7e\xeb\x6a\x44\xac\x18\x26\x7d\x93\xc5\xa6\x30\x2c\x65\xeb\xe4\xfc\x5c\xff\x4a\xbb\x38\x76\xa3\x7c\x18\x9b\x75\xfc\x53\x86\xe3\x28\x5f\x86\x0d\xaf\xf9\x69\xb3\x7c\x64\xba\x96\x5d\x3a\x64\x38\x42\xcf\x03\x15\xc3\xeb\x14\xbc\x50\xa4\x1d\xaf\xdd\xf6\xb9\xb9\xfd\xed\x35\x6e\x5d\x89\x05\xe1\x59\x85\x39\x3c\x5b\xfb\x8b\xa7\xdb\x4b\xa3\x70\x25\x86\xd3\x18\x97\xff\x81\x42\x5c\x9d\x76\x39\xf5\x6a\x1a\x9b\x22\x8a\xc5\x07\x96\xdd\x83\x11\x32\xc5\x4a\xd8\xe7\x73\x43\xc2\x17\xe4\xad\xf2\xdb\x22\x3b\x3f\x8c\xfd\xc1\x17\xae\x47\x15\xc6\x11\xc1\x85\xa8\x92\x44\xb2\x3c\xd9\x51\xa6\x6b\x17\x14\x31\xfa\x56\x0d\x48\x42\x78\x4d\x93\x97\x21\xd2\x8d\x94\x44\xd2\xa5\xe5\x04\x15\xce\xaa\xa4\x21\x89\xd7\x1f\x9e\xf0\x0e\x87\xad\x0d\x57\x74\xfd\xee\x7f\xd1\xf1\xa3\x5a\x96\x0e\x17\x69\xaf\xf2\xee\x60\xcb\x3f\xb0\x51\x1e\x9f\xca\x5a\x60\xd6\xb9\x54\xd3\x18\x52\x6e\x34\x3d\x01\x51\xd3\xa4\x07\x88\x33\xeb\x21\x00\xdd\x18\x18\x49\x4c\x0d\x44\xa0\xc7\x3a\x8e\x1c\xf8\xc3\xc7\x6a\x1d\x9c\xd9\x03\xed\x3c\xcc\xa2\x21\x0b\x65\x89\xf0\x69\xcb\xd9\xe3\x20\xe7\x40\x0c\xdd\xac\x04\xb3\x7e\x5a\xec\xf2\x30\x9f\xcb\x8a\x01\x51\xf1\x7e\xde\xac\x0e\x94\xca\x5f\x89\xf2\xf3\xc8\xd8\x13\x05\x7f\x5c\x17\x71\x9a\x25\xc5\x6a\x9b\xa1\xb3\x87\x83\x6d\xb2\xa3\xa4\x77\x27\x6b\xb6\x4d\x07\x9e\x6b\x8f\x72\x50\x66\xb1\x03\x20\x44\x8a\xef\x71\xaf\x22\xe0\xa5\xa9\xc0\x26\x59\x89\x92\x1e\x6b\x63\xbb\xae\xb5\x4b\x00\xb5\x2b\xf7\x55\x8a\x67\xe8\x90\xb0\x28\x04\x96\xc2\x44\xa7\x61\xe3\xe7\xa1\x4d\x4c\x16\xa5\xac\x59\x8b\xbc\x99\x09\x80\x7c\xa1\x20\xee\xaf\xd8\x6c\x17\xfd\x3b\x87\xec\x9e\x9b\xe3\x84\xe6\x3e\xed\x4e\x89\x96\x2a\xe7\xe5\x4a\x17\x6f\x76\x4d\xe9\x76\xef\xea\x28\xe4\xdc\x60\x58\xd6\x2c\xd1\x2a\x76\x23\x46\x94\x3f\x55\xbe\x7d\x9a\xb1\x9c\xd9\xec\x21\x65\x6c\x71\x1a\x8f\x12\xc0\x29\x3e\xa4\x59\xa8\x80\x7b\x11\x2e\x31\xfe\x95\xe7\xbd\x04\x8a\x9b\x69\xed\xe9\x50\x2a\x42\x4f\xfc\x7f\xf8\x22\x94\x49\x24\xff\x72\x3d\x91\x99\xbd\x1b\xca\x35\x71\xef\x86\x77\x74\x3d\x31\xd6\xce\x91\x0e\xb2\x3c\xca\x96\x4d\x68\x27\xfd\x11\xf7\x7b\x38\x73\x99\x54\x15\xe8\xc1\x9f\xaf\x81\x6f\x34\x19\xca\x17\x99\xb8\x6e\xbf\xc0\x89\xec\x6b\xd8\x63\xf2\x05\xd4\xea\xbd\xe0\xe1\x92\x69\xdc\xe5\xfc\x87\x27\x57\xff\xf4\xf1\x8e\xef\xca\x3e\xb2\xe1\x79\x95\xcc\x44\x04\x24\xe0\x86\x22\x63\x16\xd9\x28\x5c\x99\xa4\x04\xd2\x49\x94\x39\x53\x9e\xc9\x0d\xba\x6f\xfc\x3f\x14\x5f\x6e\xb2\xa3\x95\x82\xd2\x51\xaf\xff\x88\x22\x94\x02\x33\x8c\x85\xf2\x9a\xba\x0d\xdf\x1b\x2b\x49\xa6\xb3\xda\xef\x73\xec\x4d\x69\xef\x61\x41\x63\xaf\x1f\x1f\xab\xd6\xe9\xdf\xe0\xf6\x62\x3f\xdc\x81\x5f\x19\x66\x40\xb7\x02\x65\xde\xf9\x7d\x7a\x5a\x18\xe4\xbd\x41\xf1\x40\xd8\x0c\xad\x6f\x7c\x95\x81\xd6\x67\xb4\x37\x11\x41\xcf\xcb\x00\xbb\xdb\xa3\xf4\xdf\x0a\xca\x9a\x82\xd1\xe4\xba\x46\xda\x42\x8a\xae\x45\x4a\x19\xb5\x81\x1f\x87\x38\xb8\xb3\xa3\xcc\x15\x76\x6e\x38\xd1\x1c\x13\xe5\xe5\x26\xf7\x69\xda\x1d\xbc\x1d\x16\xe0\xc3\x1d\x1f\x64\xee\xaa\x09\x1e\xcb\xcd\xb3\x8a\x8c\x4a\x07\x97\x6c\xdc\x8b\x46\x83\x49\x65\x32\x31\xd1\x51\xb1\xf9\x82\xf6\x06\x3c\x31\xd6\x86\x48\x75\xa2\xed\xc1\xe9\x85\xb6\xe9\x8e\x62\x99\xb4\x0a\xcd\x43\x51\xb0\x2e\x34\x59\x79\x96\x9b\x80\xb6\xb4\x68\xa2\xb6\x94\xb9\x6d\x53\xea\xb4\x62\xed\xb0\xe5\x77\xd7\xe5\x40\xad\xf4\xcb\x63\x27\x6f\x6a\x92\xd1\xb2\x09\x8b\x51\x66\xb9\xbf\x8d\x58\xc0\x3c\x3e\x65\x66\x2b\x72\x46\x17\x15\x24\xed\x0d\x95\xbc\xc7\x69\xd2\xb3\xd9\x1e\x5a\x22\x38\xc0\x58\xf7\x03\x55\xfa\xce\x8d\x8a\x67\x04\xd5\x3c\xd8\x27\x3f\x54\x67\xc3\x59\xdc\x07\x06\x80\x6a\xe3\x64\x4c\xcf\x90\xd2\x9d\x1a\x6b\x79\xbb\x51\xfe\x90\x47\x90\xf2\xe4\x0b\xbd\x2c\x8c\x58\x11\xc1\x41\x9f\xc6\xba\x9c\xa4\x2d\x8b\xf7\xbd\xa7\x3d\xcb\x26\x08\x2c\x24\x0b\x99\xbe\x0a\x86\x55\x68\x03\xe3\x09\xef\xe8\x28\x5d\xe6\xc9\x8e\x77\x03\x3f\x83\xfd\x81\xdc\xed\x56\x13\xab\xd9\x64\x45\x94\x57\x8b\x90\x23\xf4\x20\xf9\x75\x03\x79\x68\xb1\xbd\x1c\x5b\x96\x7a\x47\xfb\xfd\x9c\xe2\xd6\xd7\xf1\x63\xfb\xe6\x31\xa7\x99\xa8\xc8\x13\x28\x1e\xf9\x1d\xb4\x5e\x64\x1e\xfc\x59\x98\xdf\xb5\xbe\x4d\x26\x08\xc7\x84\x84\x6a\x87\xda\x35\xdc\x49\x43\xf7\xf4\x52\xed\x2d\x16\xa7\xdb\x4b\x36\x09\xfb\x03\x93\x41\xfb\x93\x67\x2d\xf4\xbd\xeb\xf2\x1c\x71\x94\x74\x73\x8b\x8c\x50\xb9\x55\x38\x70\x6c\xf0\x39\x6f\x0c\xec\x57\x6b\x36\xe9\x93\x3d\x48\x70\x8a\x8f\x9a\x62\xd8\x55\x0c\x24\x6a\xb7\xea\xe0\xf4\x7c\x3b\x25\x33\xa6\xc5\x69\x71\x1e\xa5\xc3\x57\x5c\x48\x05\x17\xb1\x4c\xc6\xf7\xde\xb5\x53\x99\x50\xde\x50\xda\x8d\x13\x2a\x5c\xf7\x62\x93\x84\x68\x38\x63\x9d\x71\xac\x72\x73\x0e\x47\x5c\xbc\xa2\x3a\xe4\x39\x13\xbd\x59\x77\x19\x67\xd4\x21\xac\x50\xbe\x50\xc3\xac\xe1\xfa\x60\xd0\x52\x7a\xf6\x67\xf1\x0f\xe5\x60\xac\xff\xdc\xd9\xf6\xc0\x74\x99\xf9\x27\x94\x23\xfa\x7b\xbe\x50\xbb\x79\x69\xb4\x6e\x33\x4c\xa4\x45\xc7\x53\x61\xff\xcf\x2a\x3f\x52\x30\xf1\xf9\xbf\xe3\xed\xd0\xa6\xf9\x00\x21\x04\xbb\x01\x03\x39\x1c\xad\x1f\x2a\xeb\xa0\x6e\x94\x53\xe6\x87\x7a\x56\x94\xcb\x11\x2a\x10\x89\x8e\xeb\x53\x19\x32\xe4\xcc\xa3\x0a\x34\x58\x5c\x75\x1e\xbb\x99\x59\x63\x1c\x96\x96\x84\xc0\xca\xbb\xa7\x9c\xb3\xea\xb2\x1d\x0b\x8b\x0b\xed\x97\x46\x83\x21\x44\xa2\xc5\x75\x98\x6e\x2b\x7e\xed\x1b\xc8\x91\x10\xdd\x2f\xb9\xb9\x51\x91\xae\xac\x8f\xa6\xca\xe3\x55\x94\xe6\xe9\xbb\x21\x46\xdc\x47\x50\x43\x1c\xfc\xc9\xd8\xa5\xe8\xfb\xfe\x96\x26\x75\xa2\xbc\xfe\xb0\x2b\x92\xd6\x5c\xd5\xe9\x30\xc6\xae\x4f\xfe\x91\xc7\xf5\x2c\x2f\xc7\x51\x28\x5d\x5b\xe4\xac\xb7\xb5\x5d\xd0\x6d\x0d\xf6\x60\x33\xd5\x96\xd2\xf2\xd4\x4a\x19\x67\x83\xa7\xb4\x0c\x79\x17\x96\x0a\xa8\x36\x1d\x95\xdd\x31\x78\x6f\x34\x32\xf2\x56\xa2\x6e\x62\x86\x2d\xc5\x57\xde\x54\x9a\x19\x9b\x35\x94\xc4\xd3\xed\xae\x0d\xa3\xae\x4c\x94\xb1\x4d\xd9\x2d\x1b\x33\xb0\xe3\xe3\x2a\xa6\xcf\x7b\x3e\xc4\x71\xae\x27\xfa\x37\x94\x33\xf4\x0d\x05\x16\x18\x8e\x96\x5a\x6a\x3e\xf4\x36\xfd\x33\x7e\x5d\xc3\x2d\x1c\x9c\x7e\xa1\xdd\xb7\xd9\x52\x54\x7e\x29\x3e\x9e\x9d\xee\x5a\x99\x06\x89\xee\x9a\xdf\xb0\xe2\xb1\x9e\x93\xb0\x19\xba\x88\x3f\xa0\x18\xc2\xaf\x1b\xcc\xab\xda\xa9\x41\x58\x74\x1a\x2a\x73\x73\xf2\x5a\x09\xbc\x67\xe9\x52\xea\xf8\xce\x58\x48\x87\x95\x7f\xf7\x61\xa5\x11\x38\x1c\x39\x78\x17\x82\x0d\x40\x39\xfc\x3a\xf0\x5f\xd7\x24\x49\x3a\x4a\x42\xdb\x25\x98\xbb\xab\xed\x9d\x38\xe0\x69\xca\xc7\x30\x39\xba\x39\xf6\xcd\xd0\x6b\xec\xb3\x88\xbd\x76\x0a\x55\x38\x1e\xeb\x61\x7d\x1a\x51\x1e\xc8\xce\x68\x81\x9f\xa0\xa7\x4b\x79\x61\xc2\xd8\x82\xfd\x82\x10\x78\x53\x4d\xe8\x6f\x06\x7e\xe8\x96\x94\x49\x7a\x21\xc6\x84\x62\xdb\xda\x72\x76\x69\x67\xc6\x6a\xb1\x5c\x53\x0e\xf6\xc3\x2c\x5d\x8d\xba\x15\xbd\xa2\xdb\x4a\xaf\xe8\x76\x23\x11\x24\x1f\xae\xa3\x8b\xc8\x27\xf8\xd8\x83\x5f\xcf\x28\x7c\x0a\xe9\x90\xb1\x07\x8d\x84\x9f\x73\x4a\x7e\xef\x5c\x85\x46\x90\x66\xa1\xb6\x8e\xfe\x2d\xa0\x8e\x05\x23\xd7\x74\x0a\x15\x51\x8c\xe6\x85\xfc\x46\x8f\x19\xbe\x48\x55\x34\x02\xe3\x4f\x6b\xbf\xe1\xe0\x74\x7b\xd9\x96\x37\xab\xa2\x05\x3a\x2f\x72\xe4\x17\xb1\x99\x44\x96\xd1\x1f\x1d\x89\x35\xf1\x84\x8a\x64\x62\x09\x82\xda\xef\xa6\x3e\xdf\x5b\x1d\x59\x68\xa3\x24\x1f\x52\x83\xc4\xd1\xb9\x59\xd2\x5a\xe4\x27\x9b\x60\xaa\x39\x7c\x01\x5b\x7e\x48\x74\x49\x5b\x59\x5c\x52\x22\x31\x76\x15\x73\x25\x39\x05\x3c\x81\xe5\xbc\xd2\x31\xc9\xed\xd0\x64\xa6\xb0\xf1\xfa\xa4\xe7\x14\x7e\x6f\xac\xc4\x75\x2e\xe8\x99\xe7\xd8\x93\x10\xbf\xe7\xb6\xcc\x9a\x51\x32\xd3\xce\xb2\xd7\xdb\xf7\xaa\xf6\xf7\x52\x94\x75\x43\xd3\xb3\x5a\x7c\xf4\xba\x8a\xc7\xd7\x15\x92\xb7\x6b\x46\x34\x19\x9d\xf4\x23\x85\xf7\x18\x25\xce\x2e\x4f\x88\x23\xce\xf2\xc9\xcd\xad\xde\xdb\x6e\x39\xf2\x8f\xdb\x0b\xcf\xed\xc7\x13\x92\x82\x96\xbe\x00\x1a\x30\x47\x34\xa7\x5a\xe9\x10\xc6\xd6\x74\x6d\xb6\xc7\x8f\xfe\x76\x80\x38\x29\x2e\xdb\xba\x0d\x46\xcb\x1e\x0d\x0d\x3e\xa0\xf0\xbc\x2f\xd0\xa1\x84\xca\x02\x70\x00\x40\x03\xde\xc5\x17\xc0\x71\x7e\x5e\x13\xcb\xcd\x28\x2e\x62\x52\x49\x2b\x3f\x0b\x3d\x09\xb4\x95\xf8\x75\x20\xbd\xc9\xbc\x9f\x66\x45\x5e\xa4\x60\x35\x89\x74\xa5\x57\x7c\x7d\xad\x49\x47\x2b\x4c\xfb\x36\x11\xe4\xae\xf8\xc8\xd3\xe3\xe6\x0b\x65\xc5\xd6\x8d\x32\x1b\x16\x53\x8a\xe1\xce\xc5\x19\xa6\x48\xef\x2a\xee\xe1\x4e\x45\x4b\xfe\x0b\x8d\x06\xf1\xc8\xd9\x62\x94\x2d\x45\x89\xd5\xa7\x20\xbf\x9d\x20\x4f\x1e\x57\xde\x5e\x79\x51\xa6\x7c\x0f\x68\xcd\x65\x8a\x87\x40\x0b\x5c\x1a\x2b\xb1\xd7\x3b\x81\x02\x37\xbe\x87\x47\x81\x1b\x0b\xb5\x34\x55\x0c\x09\x1d\x8b\x0b\x1b\x2c\x86\xbf\x0b\x7c\xfb\xf4\xef\xd4\x29\xbf\x9c\x99\x64\x25\x8e\x92\x09\x4d\xb8\xfc\x61\xe0\x27\x89\xdf\xd7\x14\xb2\xff\x75\xfc\x0f\xb7\xdd\xed\xe7\x17\xc4\xd0\xfa\xbf\xf9\xcf\x4c\x77\x35\x0d\x09\x5f\xec\x28\xe6\x6f\x8e\x55\x6f\xeb\x4d\x45\x5c\x8d\xed\x2a\x4d\xe9\xcb\x50\xc5\x7d\x65\x7a\xaa\xd2\x63\x76\x08\xbb\xd8\xda\xe1\x14\xbd\x09\x56\x1e\xa0\x8d\x28\xb8\x3e\x50\xfe\x22\x1f\x8c\x55\x60\x81\xe2\x32\x9e\xa0\x4f\x93\x5e\x4a\xa3\x44\x52\x07\x34\xe4\x77\x76\xaa\x46\x3c\x73\x73\x4e\x52\x46\xf9\xde\xc6\xa3\xae\x13\x7a\x71\x62\x7b\xde\xbc\x11\x0e\x3c\x8e\xa7\x3b\x37\xc7\x7d\xd2\x63\x15\x7b\xcd\x34\x67\xb2\x11\x82\xc0\x44\x47\xe1\x9e\x4e\xeb\x31\x30\xa6\x7e\xc8\xdd\xf9\x41\xcb\x04\xb1\x3e\xd3\x0d\xd3\xc1\x30\x72\xfc\x7c\x94\xdb\xdf\x0e\x14\x92\xfe\xdb\xb5\x10\xbb\xf0\xdc\xfe\xf6\x30\x36\x49\xc2\x48\x5a\x96\x45\xc7\xed\xab\xe4\xf8\x62\xb1\x2a\xb7\x22\xec\xdb\xd5\x2c\x8d\x6d\xc1\x8b\x05\x03\xc8\x73\x4a\xa8\xf0\xff\xc6\xbb\xb0\x41\xa6\xcf\x37\xd2\x25\x9b\x81\xe8\x20\x10\xac\x7b\x81\xb6\x04\x61\xd1\x5c\x01\xac\xd6\x7f\xa7\x89\xb2\xa5\x34\x4b\xec\xa4\xaf\xa3\x18\x95\xe8\xc6\x92\xdf\xf8\x2a\x6f\x88\x13\x6a\x6c\x7a\xb8\x91\x9e\x36\x1c\xc5\x31\x37\xf5\x58\x70\x0e\xb7\x8c\x79\x78\x4a\xdb\xef\x82\xea\x7d\xfe\x72\x0f\x75\x9f\x30\xac\xd4\x99\xa4\x1d\x1f\xba\x11\x9c\xe4\x94\xa4\x34\x8b\xf0\x48\xd7\xe9\xc9\x3a\x90\xeb\x1f\xe3\x01\x22\xb6\xbc\x89\xf1\x30\x5f\xa8\x21\x66\x86\x69\xa7\x82\x83\x1e\x0e\x14\x50\xf4\xb0\x56\x54\x30\xe0\x4a\x08\x1a\xeb\xd0\x78\xbb\xea\x2b\x92\xb1\x6b\x15\x69\x9b\x5e\xda\x9d\xa2\x68\xe4\xee\xea\xec\x01\x6e\x54\x62\x04\x84\xde\xc6\x55\xc0\x82\xd0\x90\x65\x0e\x3d\x5f\x74\x54\x7a\x15\x25\xc3\x34\xe2\xf1\x88\xc8\x79\xf9\x56\xe5\xb1\x5a\x5e\xb3\x38\x0d\xdd\x32\x28\xb8\x09\xb7\x9c\x7e\xa0\x6b\xf8\x95\x77\xc9\xc9\x9e\x3b\x2b\x9f\xab\x4d\x83\xbd\x3c\x8d\x57\x25\xf9\x10\x8f\x1e\x1f\xcc\x2f\xba\x7e\xf1\x9a\x8d\xc3\x74\x60\x77\xd3\xcf\xc0\x5d\xb9\x44\xef\xcd\x54\xf9\xc0\x23\x90\x8f\x61\x63\xa0\x83\x7a\x17\xb1\x4d\xd2\x21\x1f\x3c\x1e\xc4\xca\x44\x14\x6f\x66\xb1\xc6\xd1\x92\xcd\x58\x1d\x07\x4d\xe1\xcd\x40\x4d\x68\xaa\x50\x8c\xb5\x2e\x2f\x56\x77\xa0\x94\x69\x36\xce\x3f\x78\x4d\x62\x8a\xfe\x57\x4d\xee\xcc\x4b\xc3\xb0\xa5\x54\x4a\xde\xe0\x7d\xc7\x57\x63\x41\x10\x93\x86\x58\x61\x22\x1a\x68\xf1\xfe\x96\x09\x93\x47\x05\x9f\xd2\x42\x24\x77\x55\xc3\x33\x4e\x43\xaf\xe2\xc9\xd5\x40\xe0\x79\x9c\x37\xab\x82\xc4\xf1\xf2\xde\xf2\xfe\x72\x46\x3e\xf6\x89\xde\x85\x6a\xaa\x5e\xae\x38\xa4\x12\xd7\x68\x18\xed\x30\x2f\xce\xfd\x1b\xa0\x3c\xe1\xcd\xd1\x4d\xc2\x42\x64\xe9\x78\x74\xef\xd8\xaa\x4f\xfc\xe8\x3f\x4b\x86\x9b\x24\xdb\x73\xcb\x89\xc3\x16\x04\x42\xb7\xea\xeb\x74\x66\xa6\xdd\xb7\x6b\x52\x70\x60\x35\xfe\x0e\xfd\x0a\x56\x30\x1f\x57\x9c\xd0\x1d\x4f\xed\xe5\x97\x53\x39\x67\xd9\x11\x79\xec\x2b\x8f\x77\xf4\xad\xbd\xd8\x24\x28\xb7\x1c\x5b\x83\x7a\x88\x31\xbf\x63\x0f\x77\xbd\x76\xa8\x41\x8b\x63\xbe\xfc\x45\x69\x86\x0d\x88\x7e\xe1\x19\xc5\xcb\x3c\xa3\x64\x42\x0b\x9b\x17\x0f\x28\x97\xaf\x93\x3a\x4d\x3f\xa9\xa4\x46\x60\x74\x8c\x74\xf4\x0e\x7d\x7d\x1c\x19\x97\xb4\x55\xc0\x27\x63\xe5\x5b\xf1\x09\x9a\x3a\xfc\xe7\x81\x17\x24\x3a\xd6\xa0\x19\xde\xce\x46\xb1\x5b\x47\x68\xd5\x21\xab\xe7\xd7\x0d\x0e\x32\x61\x36\x4a\xc2\xfe\x54\xcb\x89\x3b\x7e\xbf\xa2\x61\x31\xf6\x99\xf5\x29\xd5\x5b\x98\xc4\xe4\x89\xa5\x31\x1a\xe4\xc7\xdb\xcb\x69\x16\xb2\x91\x9c\xc2\x1b\x3a\xf0\x61\x13\x29\x7e\xdd\x0c\x4c\x61\x98\x5a\x8d\xd2\xff\xc7\xf8\x32\x7c\xd1\x44\xf2\x89\xd3\x9c\x43\xba\xc3\x3d\x95\x77\x92\x2f\x94\xb8\xae\x49\x6c\xc1\x5c\x24\x44\xa6\xd7\xf1\xde\x7c\x51\x09\xe4\x69\x91\x3f\x54\xee\x18\xfc\xbe\x1f\x72\xad\x86\xdd\x70\x04\xc9\x0b\x4e\xef\x89\x8e\xaf\x49\xa7\x3a\x5e\x2d\xe4\x87\xa4\x56\xed\x14\xce\x3c\xa6\x94\x3b\xa4\x28\xb3\xdf\xa7\xba\xc9\xcd\x8d\x9c\x51\x93\x56\x75\x98\x00\x42\x0e\x99\x65\x7d\xba\x51\xa6\x23\x61\x6c\xf2\x1c\xea\x22\x38\x78\xd0\x61\xe0\xd7\xaa\x08\xcd\xfb\xe9\xda\xc3\xf4\xed\x5d\xf7\x61\x71\x5a\xcb\xdc\xcc\xf2\xcf\xba\x19\xa8\x61\xfe\xa5\xb1\x67\xfe\xfc\x35\x1d\x63\x38\x5a\x99\xa9\x87\x6e\xda\x8f\x35\x2d\x64\xcf\x86\xae\x1d\x10\xc9\x9c\x89\x86\xcf\x45\x3f\xac\xc0\x96\x29\xfa\xa0\x03\xf9\xbd\xda\x83\x9e\x9f\x6f\xc7\x91\xcd\x27\x95\x3d\x01\x27\x30\xd8\x0c\xf0\xc9\x17\x83\xce\xf2\x57\x09\xa9\xa5\xde\x73\x7a\x96\x1a\x38\x4b\x71\x14\x1a\x54\xc9\x32\x89\xd6\x24\x38\x35\x4a\x0c\x47\x4b\x51\xa8\xa4\x1e\x6f\xd0\xfd\xe0\xd7\xd5\xce\xea\x30\x4b\xcb\x92\x7a\x9f\x7b\x4f\x8a\xbb\xf2\xfe\xbe\x6e\xed\xd9\xa4\x6b\xb2\x01\x56\x3a\x72\xe9\x3b\x0a\xdb\x75\x47\x91\x95\x4c\x48\xdc\x58\xdb\x25\x94\x2d\x43\xe8\xd0\x0f\x12\x3c\x5d\xd5\x3e\xa1\x7c\xbc\x48\x11\x0e\x55\x64\xac\x1b\x64\xd2\xb2\x28\xec\x0b\xac\x98\x79\x95\xf4\x2d\x84\x63\xf9\x98\x1a\x26\xae\x96\x07\xee\x43\x1e\xc3\x0b\x9e\x34\x92\x01\xa8\xd9\xf0\x7f\x87\xf1\x90\x28\x30\xd1\xd7\x51\x2e\xcd\x7e\xc8\xe0\x47\x48\x47\xab\xa6\x80\xb4\xf4\x70\x71\x89\xb0\x86\x78\xaf\xeb\x81\x72\x67\xbb\xaa\x33\xde\x3f\x53\x4a\x48\xe9\x30\x4a\xa2\x34\xd9\xa5\x22\x20\x3a\xe1\xe8\x26\xc3\x43\x98\xed\xf9\xe8\x5b\x0b\x8f\xa2\xbc\xbb\xfc\x3a\x50\xf3\xf2\x0b\xba\xd8\x1b\x25\xdc\x5a\x59\x9c\xde\x3a\x57\xfe\xc5\x56\x3d\x8e\xcd\xcf\x8b\x53\x24\x57\x15\x38\xd4\xd8\x82\x8e\x2f\x6a\x34\xef\x32\xa9\x09\x47\xc5\xa4\xb3\xb1\xfb\x45\xee\xec\xf3\xbe\x57\xfa\x92\xa7\x75\x23\xe1\xac\x2b\x12\x06\x11\xf1\x43\x27\x7c\x79\xf7\x23\xba\xc5\x08\x6f\x9b\x5a\x88\xe7\x84\x72\x3a\x1c\xd8\x6c\x25\x37\x03\x9b\xb5\xd4\xc0\x16\x30\x1c\xe9\x59\xfb\x14\xfe\xc0\x57\xf6\x33\x90\x03\x4f\x61\x2b\x50\x3e\x2e\x3f\x47\xa1\x50\x27\x3d\x48\x2e\x77\x6e\x78\xfd\xba\x5f\xff\x99\x0d\xcf\x84\x18\x58\x53\x30\x81\x4a\xec\x4a\x14\xb3\xe5\x0c\x42\x90\xb4\xd8\x34\xc6\x43\x19\x10\x32\xb0\x8f\xff\xde\xfb\xdb\xd9\x9e\x4d\x34\x03\x1e\xf9\x1a\x3b\x5e\xf2\x85\xca\xbf\xf2\xc2\x64\x64\x7b\xaa\xe6\xa2\x5e\x69\xeb\x6c\xad\x0b\x38\x37\xd7\x36\x24\x3c\xe6\xf5\x65\x03\xe5\x11\x71\x54\x35\x48\x42\x13\xe5\xb9\x9d\x28\x8f\x03\x07\x4b\x75\x79\x19\xe7\x09\x88\x7a\x7f\xac\x22\x75\x9c\xae\x81\xa6\xe3\x30\x6a\xae\xb8\xff\x0e\xfd\x3d\x18\x54\x47\xd4\xc3\xe9\x99\x21\xd9\x8e\xe0\xe1\x9f\x51\x9d\xeb\x07\xb0\xf6\x5c\xb7\xc9\xad\x8a\x6b\x15\x19\x49\x1b\x2f\x53\x81\x26\xae\x1d\x2d\x47\x41\x3f\xa5\x16\x4c\x98\x66\x43\xf2\xef\xd8\xeb\x81\x3b\x3b\x90\x0d\xe0\x29\x6c\x61\x9f\xca\x9e\xd7\x5e\x7d\xb4\xc4\x44\x67\x4d\x25\x98\x10\x7e\x15\x61\xa6\xf2\x8b\xa3\x2a\xd8\x03\x78\xb0\x1c\x64\x5e\xf4\xf6\x68\x4d\x1f\x6a\x7e\x7e\x7f\xbb\x6b\x57\x6d\x9c\x0e\xc5\x77\xde\x29\x1c\x95\xcf\x5c\xd0\x8c\x0a\x8b\x63\xf2\x07\xca\xa7\x82\x3d\xb1\x03\xad\x0c\xfc\x9e\x77\x80\xaa\xd6\x28\x4b\x14\x30\x87\x14\x3c\x68\xed\x67\x3a\x8a\xcd\xfe\x18\x1f\x79\xa8\xdd\xf7\x54\x70\x5d\x2d\xa7\x78\xf8\x64\x8d\xb5\x72\x70\xba\x3d\x8c\x0d\x8f\x44\x9d\x15\x9c\x97\xec\x2c\xef\xbc\x6b\x78\x95\xf5\x58\x9a\xad\x4f\xfa\xa5\xc9\xc4\x24\xa6\xb5\x2b\x52\xed\x09\x5a\x25\xfc\x8f\x54\x77\x75\x2d\x8b\x0a\x3f\xef\x44\xc8\x66\x1a\x30\x5f\xa8\xfe\x70\xdf\xe4\x4f\x29\x61\xfc\x47\x36\xd4\x84\xe6\x28\xa6\xda\xf8\xa3\x7b\x38\x90\x1c\xad\xf5\xe0\x34\x0f\x84\xdf\x09\x94\x99\x21\x46\xb7\x48\x0a\x2e\xd2\xe0\x03\xe4\x8d\xbf\x1c\x2b\xb1\x88\xdf\x0c\x3c\xc9\xee\x4a\xa0\x08\x37\xb7\x68\x91\x88\x75\x0b\xdd\x7a\x88\x84\x4c\x00\xcd\x83\x42\xa2\x05\x77\x4f\x61\x16\x2b\x9e\xf2\x17\xe9\x99\x48\x21\xea\x01\x99\xbb\x37\xbc\xb7\xf6\x0f\xe8\xbc\xc1\x13\x3d\x19\x78\x8f\xf4\x61\xbe\x1e\xf6\x9d\xe3\x83\x62\x0a\xef\xa0\x53\x90\x5f\x77\x7c\x7f\xee\xa5\x51\x5e\x44\xa1\xe5\x1e\xaa\x08\xde\xa8\xd4\xef\x75\x75\x66\x2d\x65\x51\xb7\x67\x31\x01\x95\x6c\xc8\xc3\x3f\xb9\x59\x26\x3c\x17\xcf\xe4\x23\xf7\xe7\x4a\x0f\xc7\x13\x60\x6b\xa3\xb6\xc5\xe9\xf6\xd0\x14\x59\x9a\x44\xaf\xb8\x02\x01\x75\x38\xc0\xb2\xfc\xba\x89\xce\x95\x7f\x73\x64\x96\x96\x7c\x5d\xa1\xa9\xf8\xc2\x16\xf6\x4a\x77\x79\xd4\x65\xb8\x05\xe2\x0d\x6b\x3e\xf0\xc5\xf8\x8b\x9f\x51\x3c\x0e\x6c\xd8\x37\x49\xf4\x4a\x45\xaa\xfd\x12\xad\x05\x07\x99\x2a\xdf\x47\x00\xce\x4f\xba\x11\x49\xd7\x66\x24\x8a\xcd\x9d\x12\x20\x9d\x5f\x55\xe6\xfe\xaf\xba\x56\x45\x37\x5a\x2d\xab\x12\x8d\x8c\x57\x7a\x78\x67\xc6\x15\x03\x60\x9a\x6d\x81\x3f\x8b\x36\x35\xff\x12\xbe\x50\xce\xe6\x4b\xe9\x7a\xde\x6a\x7d\xf9\xcb\xfc\xf0\x8e\x63\xfc\xc4\x17\x4d\x6e\x1a\x61\xdf\x9a\xa1\x68\x14\x09\xb6\xd6\x3f\xfd\xc3\x0a\xab\x11\x8e\x8a\x72\xbf\x12\x2e\x00\x79\xef\x5b\x58\x0f\xe2\x35\x51\xde\x21\xe4\xe6\x87\xd4\xf6\x82\x18\x23\x4b\xd2\x28\x50\xce\x59\xdd\xa9\xfb\x8d\xda\xd3\x2e\x93\xe3\xc2\x86\xfd\x24\xfa\xe6\x08\xb7\x89\x61\xf2\x81\x86\xcc\xd7\x9d\x36\xdb\x51\xe2\xce\x05\x3e\x71\x25\x71\xa9\x54\x2f\xdb\x73\xd0\xb2\x2c\x1f\x39\x03\x6e\x96\xaa\x53\x44\xaa\x53\x9a\x82\x10\xc5\x84\x31\x9b\x9b\x73\x12\x64\x1e\x79\xff\x9e\xee\xbf\xbe\x3b\x56\xcc\x1b\x8e\x01\x18\xf7\x1e\x0b\xbc\x51\xd7\x30\xcd\xb8\x81\x2e\x76\x1a\x3e\x62\xbe\xe9\xb6\xd9\x5a\x66\xc3\x15\xb5\x60\xce\x53\xdc\x12\xf1\x3d\x0f\xcf\x37\x49\x34\xa0\xf1\xbd\xb7\x1d\x53\xe4\x71\x92\x79\x95\x32\x21\x5d\x4b\x72\xda\x85\x13\x8a\x3d\x74\x0d\x0f\x06\xe7\x32\xba\x04\x22\xf9\xa9\x54\x62\xe2\x74\x6d\x52\x65\xd4\x57\x82\xed\x2b\x19\x8d\x91\x4b\x95\x4c\x5b\xa5\xf1\xcb\x51\x92\x90\x73\xab\x6a\x5c\x97\xbf\xda\x05\x6e\x27\x02\x73\x2b\xf0\x84\xb8\xf0\x15\x1b\xf6\x5b\xca\x32\x90\x3a\x4b\xa2\xd8\xed\xef\xc1\x28\x59\x4e\xe3\x2e\x3a\xb7\x8e\x3d\xa0\xa4\x06\x9f\x52\x84\xfe\x72\xa5\xf4\xca\x24\x79\x4a\x75\xdb\x21\xa5\xe9\x6c\xb3\x1c\x5d\x12\x3d\x2e\xfe\x37\x63\x2f\xcc\xb2\xa3\xf3\xb0\x4a\xfc\x2d\xc2\x8e\x8b\x9a\x7e\x41\x7c\xea\xe7\x61\x43\x1b\x46\xcb\x91\xed\x4e\xb6\xe6\xe6\xb6\x98\x3f\x86\xe5\x04\x38\xb3\xb8\xf7\xd0\x0a\xe2\x0e\x7e\x93\xee\x6c\xdf\xc6\x00\xfb\x09\xdf\xcc\x83\x4c\xde\xaa\xd5\x9c\xfb\xe6\xdb\xa1\x29\x6c\x36\x8c\xe2\xd8\x64\x9f\xad\x6a\xd1\x60\xc8\xb5\x96\x66\x59\x24\x03\x0a\xa7\x3d\xe5\x4d\x89\xcf\x05\x3f\x23\xb3\xb3\xcc\x74\x6d\x37\xca\x8b\x34\x2b\x44\x8c\x1d\xc1\x00\x84\x31\x7e\x5d\x41\x99\x27\xb6\x78\xc0\x4f\xbe\x79\x8c\xe0\x2c\x02\x1d\x77\x9d\x93\x23\x6e\xd5\x06\xbe\x1d\xf0\x16\xbe\x3f\x76\x1a\x43\x48\xd9\xd8\x83\x9e\xbc\x34\x77\xe9\xdb\xf3\xfb\x36\x22\x59\x72\x1b\x77\xd3\x01\x25\x41\x22\xa3\x47\x47\xbf\x08\xec\x69\xf8\xa1\x7d\x66\x8a\xbe\x0e\x7a\x0d\x37\x14\x9a\x63\xab\x3a\xef\x51\xf7\xf6\x3e\x2d\x59\xc1\xb5\xd4\x85\x1c\x17\xda\xa1\x35\xb9\x8d\x6d\x9e\x8b\x76\xa1\xf3\x90\x70\x33\x8b\xb3\x15\xd0\x81\x49\x8a\x27\x95\x6d\x00\x13\x70\x90\x97\x7f\xa0\xac\xe5\x5e\x1d\xfb\x76\xd6\x49\x15\xe5\x79\x24\x89\x5b\xc4\x99\x0e\x6a\xf5\x5b\xc8\xa6\xf0\xc0\x6e\x83\xba\x87\xe3\xff\xa7\x81\x3a\x81\xff\x96\xbe\x1a\x26\xcd\x4f\x6d\xd0\x99\xe3\x24\xcc\x67\x66\x39\xcf\xb8\xc7\xbd\x2b\xe4\x05\x27\xc7\xca\xd7\x72\x07\xb1\xfd\x5c\x94\xf4\xed\xd3\x63\x48\x7f\xf9\x23\xc7\xde\x8c\xee\xb2\x12\xd0\xb7\x61\x6c\x89\xde\xa5\x24\x27\xcf\xe2\xbb\x8a\x1d\x9a\x3f\x4e\xbb\x36\x8f\x7a\x89\xb5\xe2\x25\xe6\x9a\x8b\xae\x35\xfe\x9e\x1e\x7d\x5d\x6a\x72\xad\xea\x65\xe9\x9a\x34\x2b\xf0\x03\x5e\x53\xf3\xfc\xd7\x9a\xfa\x1b\x2b\x70\x8c\xa6\xfb\x8c\x4e\xfa\x31\xa5\x8e\x78\x2c\x78\x90\xff\xa4\xbd\x38\xbd\xf8\x98\xcf\x82\xb8\x9c\x41\xaa\x79\x5f\x89\x57\xee\x46\x6f\x43\x3a\x86\x7e\x80\xb2\x80\x40\xe2\x4c\x12\xf6\x09\x42\xf1\x5a\xa0\x36\xc8\x3b\xf4\xe1\xee\xf5\xaf\x3c\xaf\x69\xe2\xc2\xab\xbb\x37\x56\x60\xd7\xf7\xe9\x49\x4a\x45\x47\x0b\x4c\x4c\x26\x70\x23\x19\x1f\x89\x65\x81\xcd\x32\x59\xf3\x16\x27\xd5\x4a\xe2\xa1\x30\xc6\x4a\x00\x43\x1e\xd3\x70\x4c\x15\x92\x23\x1b\x43\xa1\x08\x4b\xeb\x9c\x76\xe0\x39\x4d\x3f\x1a\x3d\xdc\xbf\x55\x85\xd1\x39\xa5\x74\xb1\x1b\x6a\x45\xb2\xd9\xe8\xe7\xb8\x7f\xe5\x40\x63\xaf\x06\xbe\xce\x28\xcc\x12\xa1\x3d\x91\xcf\xc3\xc2\xc5\x75\xaf\xe7\xe6\xdc\x0c\xae\x5e\xf4\x95\x27\x89\x2d\x94\x6d\xba\x73\xd1\x75\x1e\xe8\xa7\x55\x0e\x31\x8c\x6c\x68\x73\x52\xbe\xc4\x9d\x63\x96\x20\xee\xdc\x2d\xc5\x34\xc7\x94\x04\x4b\xe0\xbb\x8a\x42\x36\x4c\xb3\x62\x39\x8d\x99\x76\x32\xeb\x5b\x5b\xaa\xe6\x6d\x62\x7c\x47\x49\x18\x47\x89\x24\x47\x58\xe6\x10\xae\xe0\xd7\x4d\xc1\x3f\xb3\xe5\xc7\x71\xd7\x53\x9c\x25\xf1\xe0\x9d\x41\xaa\xa7\xdb\x1f\x09\xb4\xa3\x49\x13\x42\x7d\x39\xcd\x06\x4a\x0f\x99\x9b\xb1\x7c\x51\x9b\x0d\x94\x7f\x11\x2e\x87\xcc\xaf\xa9\x1c\x11\xe2\xcb\xb2\xd7\x8d\xbf\xa2\x56\x4b\x19\xa0\xd1\x8a\xe1\x8b\xe0\xc9\x9a\x4b\xf7\xc1\xe9\x47\x95\x1b\xca\xf9\x40\xf1\x7c\xa7\xc8\xc9\x90\x61\x6f\x08\x27\x68\x2f\xdd\xd0\xa4\x35\x5e\xf0\x08\x57\x87\xb4\x80\xc2\x7d\xfc\x26\x64\xbe\x2d\xea\xc8\x63\xb5\x1e\x0a\x3c\x2e\x60\x17\x91\x60\xe8\x3e\x7d\xf9\xf3\x24\xea\x82\xf0\x88\x07\x82\x1e\xdd\x23\xe0\x92\x21\x9e\x33\xca\x13\x83\xb2\x2b\x4e\xbe\xad\x30\xc9\x0a\xc0\x15\x15\xdb\x00\x5d\x20\xa1\x4d\xf7\x48\xc7\x63\x9d\x6e\xea\xfe\xdd\x87\x95\xe3\xd8\x8e\x58\xa0\x00\x31\xf1\x72\xc5\xde\xfd\x72\xed\x01\xcd\xcd\xb5\xfb\x69\x96\x6b\x2d\xdb\xbb\xb8\x65\x1a\xf4\xcc\x22\x67\x63\xc9\x13\x86\x7d\x93\x0d\x4c\x68\x47\x45\x59\xcc\x4a\x44\xc6\xad\xbc\xaa\xbb\x32\x97\xf1\x18\x71\xfb\xbe\x3d\xf6\xf5\x2a\x30\x3f\x5a\xd3\xf6\x5b\x81\x4f\xcb\xbf\xd5\xc0\xc0\x98\x6d\xaf\x45\x71\x97\x15\xc0\x9a\x2a\xb4\xed\x93\xd7\xe7\x17\xda\x03\x5b\x4c\x28\x50\x1f\x07\x12\x51\xdc\xa1\x7b\x88\xed\x79\x4b\xd9\xad\x74\xed\x32\xe0\x6f\xdc\xe0\x10\x72\x13\xfd\x73\xbe\x50\xf0\xcc\x3c\xec\xdb\xee\x08\x40\x1a\xef\xd7\xef\xc3\xe2\xa9\xc6\xdf\x62\x96\x52\x93\xc1\x48\x43\xb7\xf4\x90\x87\xdf\x55\xaa\x12\x97\x55\x54\xed\xdb\xfc\xe1\x8a\xd0\x07\x9d\xb1\xce\x41\x6c\x71\xda\xbb\xee\xed\x9b\xf7\x72\x91\xe5\x0d\xa0\xb0\xf8\xc0\xcf\xd3\x71\x5d\xc1\x64\xd2\xef\x7f\xf3\x31\xe2\x23\xe2\xb4\x7e\x98\xfa\x11\x20\xe4\xff\x83\x0d\x45\x99\xd9\x81\xde\x0d\x25\x05\xff\xf5\x3f\xe9\x68\x27\x04\x65\x12\xad\xfd\xa3\xbe\xf2\xfc\x7e\x25\xf6\xf9\x53\x2c\x06\xbe\x50\x1a\xc7\x66\xc9\x66\x19\x0b\x82\x3b\x17\x05\xc0\xe5\xc4\xa8\xa2\x09\x43\x32\x30\xd9\x4a\x3e\xa1\xd5\xd3\xe9\xfb\xe1\xfd\x6f\x62\xaf\x0b\x89\xaa\xe1\x64\x2f\x22\x10\xd7\x5d\xc1\x7f\x1c\x2b\x97\x2f\xd4\xcf\xf8\x67\xbf\xf0\x8b\x8a\xfc\x71\x93\x66\x37\xfc\xba\x32\xbb\x29\xcb\xfd\x04\x46\x5d\x28\x29\x59\x1f\x05\x87\x08\x70\xcc\x7c\x20\x6a\xc0\xf4\xdb\x81\xef\x74\x2f\x38\x3f\x97\x7c\x34\x00\x42\xd4\x31\xce\x9d\x64\xdf\xaf\x8f\xfd\xd1\xb4\x89\x2d\xcd\x7f\x32\xb4\x59\x98\x26\xdd\x51\x58\xa4\x59\xb5\x86\x5a\xfc\x6c\x06\x76\x79\x2f\x33\x33\xf4\xfe\x6a\x08\xcd\x3f\xd2\x7d\xf1\x1f\xd5\xce\x96\x7f\xe4\xd4\x2c\x26\x14\x61\x83\xa5\x16\xdd\x0c\xf2\xa0\x68\xb4\xdf\x6c\x0a\x3d\x2b\x26\x79\x29\x52\xd8\xdf\xf3\x94\xd1\xf0\xeb\x4a\xa6\x1c\x16\xf9\x13\xad\x99\x19\x66\x79\x6c\x02\x7f\x21\xde\xd2\x94\xea\x72\xd9\x1a\x28\x2f\xa7\x37\x34\xff\x96\x64\x42\x64\xac\xf5\xd7\xaa\x33\xcd\x1a\xcc\xe8\x67\x9c\xa0\xda\x5c\xac\x00\xc8\xcc\xfb\x35\xf0\x7b\x79\x8d\xe1\xc1\x61\x12\x34\x41\xdb\x09\xb9\x08\x9c\xa0\x91\x72\xa1\x49\x09\xa2\x14\x9c\x2b\xf0\x6f\x0e\x53\x05\x51\x11\x71\x43\xd1\xf1\x03\x77\x0a\x0e\x4d\xb6\xdb\x17\xe4\x77\x29\x77\x73\xa0\x58\xa7\x44\x08\xb1\x20\xcc\x49\x18\x66\xe1\x86\x26\x8e\x2a\x3f\xb1\xe1\xa9\x99\x47\x95\x34\x5a\x6e\x4d\xc6\xd9\x8e\xe6\xb2\xf9\x96\xd9\x05\xb7\x06\x97\xe0\xf4\x21\x09\xf6\x54\xc7\x4f\x45\x59\xf1\x1c\x79\x2c\x0c\xda\x70\xd3\xa1\x80\x80\xa0\xb4\xa5\x52\xe5\xbd\x1d\x45\x02\xbc\x4e\x3f\xcc\xf1\xa7\xcb\xfb\x8f\xa7\xfe\x09\x7e\x0d\x62\xe2\xee\x0d\x05\x81\xd0\x71\x25\x8a\x57\x76\x79\x42\xe2\x4d\x05\x10\x7d\x94\x9c\x38\x11\xe1\x5f\xa3\x5b\x0f\xb2\xee\xef\x8e\xd5\x98\x89\xc7\xb4\x38\xd5\x2e\x8d\x7d\x7b\xbc\x37\x32\x99\x49\x0a\x0b\xfc\xa4\xc8\x1a\xa9\x06\xf2\xa6\x1a\xf8\x0c\x47\xe1\x4a\xc4\xfa\x64\xb8\x27\xb7\xe9\x11\xf1\x6b\x25\xfe\x30\x30\x2f\xa5\xd9\x43\xe5\x5b\xf2\xcc\x1c\x55\x2e\x76\xcc\x24\xee\x8b\x68\x7b\xd3\x87\xb9\xc6\x97\xd7\xaf\xd9\xd2\xae\x34\x9f\x04\xad\xaf\xcf\x7a\x7d\x5b\x17\x0c\xd8\xa0\x5f\x3a\x1b\xde\x11\xe7\x5c\xa0\x84\x40\x4e\x29\xd1\xde\x89\xa6\x69\xc2\x52\x3a\x4a\x38\xcb\x74\xc2\x5b\x5e\x00\xa2\xa9\x35\x31\xb4\x79\x1e\x0d\x98\x26\xe7\x72\x24\x7c\x10\xbf\x0e\xda\x0d\x61\x67\xc9\x26\x76\x39\x0a\x23\x83\x06\x45\xf9\x73\x1d\x2b\xc1\x73\xe7\xd4\x93\x4f\x07\x91\xc2\xd2\x9c\xd7\x62\x20\xe7\x9b\x5c\x23\x7b\x69\x8c\x6e\x30\x6a\xf8\x1b\xba\x44\x3c\x5c\x01\x64\xd7\x3b\x92\x0b\xed\xcc\xe6\x11\xb3\x6a\x74\xc7\x5e\x6f\xc5\x0b\x4d\x82\x12\x89\xc9\x32\x45\x08\xc2\x32\x45\x93\x9c\x5f\x37\x69\x0f\xc7\xd1\x60\x18\x01\xee\x82\x47\x8b\xea\x8a\x5f\xab\x16\xdc\xd0\x66\x79\x94\xe3\xe8\x42\x78\x46\xe7\x8e\x5f\x7b\x55\x09\x26\xba\x74\xa7\x3c\xfa\x9f\xb1\x20\x08\x83\x5b\x58\x2f\xd4\x14\xfe\xda\xdf\xef\xf8\x95\xbc\xa5\xa1\x95\x67\x9b\x7d\x2f\x07\x66\x30\x30\x71\x64\x70\x68\x8b\xcb\x82\x27\x6d\xd5\x0f\xdd\x03\xcf\xb5\x8b\x74\x38\x8c\xa1\x00\x80\x74\xe1\x4a\x65\xc2\xec\x71\xff\x6f\xd7\x40\x7b\x33\x33\xed\xcc\xa2\x0b\x40\xdb\x13\xf1\xf5\xb7\x03\x1f\x6b\x7f\x7b\xfc\xa8\x37\x65\x23\xc1\x58\x2a\xd3\x9c\x3d\xbf\xb7\xfc\xdb\x1c\xfb\xf3\xfc\x1d\xdd\x44\xf9\xce\x76\x8d\xbf\xb2\xf0\x9d\x9f\xdf\xff\x78\x6b\x51\x3a\x49\x17\x14\xc0\xf8\x36\x81\x33\x18\x91\x1c\x54\xa4\x77\x55\xa5\x7d\x38\x50\x2a\xe1\x13\x14\xa1\x9c\x74\x4c\xf9\xd1\x20\x70\xb4\x90\x6b\xa1\xc9\x0e\x13\x63\xdc\x8a\x89\x8e\xef\x9c\x1f\x19\x97\xa7\x20\xa3\xed\x10\x82\xf9\x33\xd4\x59\x7b\x46\xf5\x3a\xff\x3b\x8d\xc9\x79\x0b\xe7\x26\x0e\xd1\xef\x28\xc4\xec\x90\x5c\xf5\x32\xde\x82\xf2\x04\xd4\xd3\x50\x43\xcf\x5e\x04\x40\x27\x96\xff\x3d\xa5\x24\x75\x4f\xcd\xfd\x4c\x56\x4c\x2a\xd5\x65\x9e\x7a\x8a\x49\xcc\x67\x0d\xc9\x1b\x88\x57\xa3\x1c\x53\x04\x54\xab\xe7\x10\x20\xf9\xc2\x1d\x54\xdd\x51\x8a\xaf\x8e\xb3\x46\x9f\x3b\x5b\xb5\xcc\x65\xf6\x40\x7b\xc9\xf4\xcd\xc0\x48\xe1\x82\x6f\xff\x68\xc7\xff\x12\x96\x65\xc3\x12\xdd\x53\xeb\x86\xcc\xcf\x8b\x07\x26\xdf\x31\xdc\xde\x43\xda\x1b\xed\x90\x82\x02\x87\x36\x8e\x95\x25\xd3\x31\x25\xd7\x7f\x5e\xa1\x56\xdf\x08\x9e\xaa\xc1\xae\x97\x22\xb4\x61\xb9\x4e\xc1\xf7\x92\xa2\xa5\x82\x37\x4b\x57\x1e\x2d\xd7\x0c\x26\x3c\x87\x54\xda\xff\x3f\xdd\x20\x10\xb1\x3c\x49\x55\x1d\xde\x45\xea\x84\x24\xfb\x3a\x19\x1d\x38\xfa\x53\xf9\xb3\x00\x72\xb9\x1d\xa8\x5e\xde\x65\xac\x65\xc7\xd1\x74\x83\xd6\x3b\x2c\xd7\xc5\x8a\x7b\x63\x8f\xcb\x82\x62\x20\x7a\x56\x9f\x60\xb0\x85\xba\xfe\x54\xa0\x18\xb3\xa7\x82\x47\xd5\x5c\x25\x96\x93\x15\x5f\xf4\xd0\x58\x7d\xeb\x43\x4d\x86\x05\x65\x68\x18\x0c\x0b\x2f\x6f\xde\xa4\x01\xe5\xbb\x89\x34\xf3\x5b\x23\xf5\x62\x87\xde\x7a\x93\x42\x11\xbf\x76\x7c\x92\xb0\x6f\x4d\xf1\xff\x3b\xb8\x6c\xa0\x52\xdb\xd8\x2c\xd1\x24\x6b\xc2\xbb\x0f\xdf\xa3\x5b\x22\x23\xe6\x96\x13\x0f\x7a\xbf\x49\x2b\xbf\x1b\xe5\x2b\xdc\xb1\x47\xf8\x62\x95\x16\xbe\x08\xb4\x91\x24\xb6\xa3\x13\x1f\xf7\x72\xa7\xd7\x1b\x52\xfd\xb6\x09\xc3\x6c\x24\x4d\x24\x55\x8d\xcc\xba\x5e\x5d\xc3\xd7\xc9\xfb\xe9\x1a\x23\xa0\xa1\x48\xf2\x89\xde\xcf\xa0\x56\x09\x0a\xaa\x8e\x29\x5f\x6c\x87\xe9\x70\xbd\x3a\x0b\x74\xbd\x8c\xf3\x6a\x0a\xfa\x92\x09\x57\x5a\xea\x8d\xcf\x69\x6b\xa9\x73\x6e\x02\x23\xce\x25\xcc\x17\x46\xba\xfb\x6e\x45\xc8\xde\x6b\x52\xbf\xa5\x28\xa8\x4b\xe9\xcb\x96\x55\xb8\xb8\x90\x00\x16\x7b\x8b\x68\xc9\xfb\xb7\x36\xc6\xdb\x01\x90\x62\x3e\xa8\xa4\xcc\x6d\xb1\x44\x5f\xb3\xdc\x06\x88\xdc\x9f\xa0\xfb\xc4\x17\x4a\x06\x72\x10\x86\x66\x4d\x4d\xca\xd8\xb4\x17\xb7\x10\x1c\x6c\xdc\xf4\x43\x4d\x92\x00\xbd\xc8\x09\x4e\x88\x7f\x9c\xa7\xb9\x68\xff\xea\x95\x15\x33\x59\x1e\x2a\x0c\x8a\xc7\xd1\xa3\x75\x1a\x9c\xa8\xfc\xbc\xf3\x53\x64\x8f\x2d\x19\xa5\x91\xd2\xb3\x85\xa5\xef\xe2\xb4\x93\xac\x2d\x03\x0a\xbf\x56\xb2\x20\x83\x34\x29\x6c\x37\xca\xd3\x64\xc2\xef\x98\x93\x2a\xa8\x1f\xc5\x82\xc2\xf8\xe0\xda\xd8\xb3\x94\x97\x63\xfb\x72\xb4\x44\x62\x52\xa4\xaa\x8f\xe9\xd8\xa9\xb1\xf2\x8c\xbc\xa4\xaa\xe1\x53\x63\x05\xde\xf9\x14\x82\x08\x7c\x41\x2b\x08\x11\xfe\xa3\x2a\x99\xae\x37\xb2\x53\xa4\x51\x26\x7c\x2f\x6d\x1a\xfe\x07\x1a\x40\x04\xfb\x69\xf4\x4c\x38\x33\x14\x12\x8d\x87\x51\xd9\x75\x2c\x19\xe1\xf6\x60\xb6\x8c\x02\x65\x12\x47\x36\x83\x74\x34\xe9\xe7\x94\x32\x02\xbe\xad\x27\xc6\x66\x68\xb3\xdd\xf4\x57\x08\xd4\xa7\x10\xa8\xf1\x4b\x58\x6b\x16\x71\x01\x7d\x72\x0d\xc5\x42\x34\xbf\x34\x56\x2e\xa9\x9c\x41\x20\xaa\xdc\x6f\xca\x45\xa3\xc1\xc0\x76\x23\xe2\x84\xcd\xcd\xf1\x78\x71\x97\x97\x9c\xda\xb7\x6b\x43\xe6\xd4\x49\xb4\xb2\x02\xdf\x7c\x25\x91\xe2\x3d\xe7\xbd\x83\xf1\x20\x55\xa1\x79\x43\x09\xb1\x6e\x54\x5a\x91\x45\x64\x5a\xaa\xe6\x43\x8e\x2a\xe8\x53\x61\x84\x99\xe1\xd0\x9a\x8c\xe4\x3c\x71\xaa\x1d\x1d\xfb\x12\xe8\xbf\x7d\x9c\xba\xaf\x88\x66\x5b\x63\x45\xd0\x21\x40\xfc\xbd\xff\xfe\x89\x8e\x97\x61\xbc\xad\x07\x53\xe7\xb0\x72\xf4\x04\x40\x74\xbf\x1a\x62\x62\x18\x5b\x93\x8c\x86\xda\x17\xe3\x6f\xc6\x3e\x9c\xfc\x4d\x63\x5f\x7b\x40\x0a\x1f\x07\x85\xea\x4e\xae\x9f\xf2\x5a\x25\xa2\xc3\x78\x94\xf4\xc0\x9a\x42\x80\x80\x05\x65\x05\xcf\xea\x94\x4f\x66\xfc\xcc\x43\x25\x67\x59\x3a\x4c\x73\xdb\xdd\x4b\x31\xea\x22\x22\x3c\x33\x70\x68\xda\x5d\x19\x01\x39\x74\x53\xb9\x05\x84\xa7\xa3\x04\x23\xfe\x64\xec\x19\x7b\x67\x70\x4b\x59\x3c\x69\x4c\x26\xe3\xb8\xfd\xe8\x76\xbc\xa9\x72\x98\xbe\xc9\xba\x7b\xe9\x13\x50\x07\xbe\x8e\xc3\xdb\x55\x2a\x0e\xa3\x07\x75\x15\x11\x6d\x51\xe2\xc9\x7f\x4b\x51\x19\x49\x37\x0c\x71\x91\x11\xbf\xa1\x55\x6e\xb0\xd2\x91\x44\x5f\x21\xf5\x52\xf9\xef\xdb\x66\x00\xf3\xf3\xed\xaf\xcf\x92\x5c\x90\x80\x3d\x5b\x8e\x04\xf7\x27\x94\x97\x08\xfb\xc3\x73\xdd\x8f\x21\x84\x48\xb3\x69\x7b\x7d\xf2\xe2\x8b\xed\x25\x8b\xb2\x61\x51\xc6\x72\xac\x67\x23\xc3\x49\xcf\x71\x60\x0e\x90\xfc\x7e\x75\x40\xc4\x51\xc8\xf9\xc2\xbc\xf7\x79\x9f\xf7\xe2\xce\xea\x3c\xca\xa2\x70\x85\x6a\x14\xfc\xc8\x3f\x57\xd2\x09\x18\x9a\x22\x84\x5e\x52\x53\xa5\x93\x0a\xcc\x31\x30\xd9\xca\x84\xaf\x4c\x90\x8e\xe1\x31\x5f\x53\x10\xd1\x9d\x1d\xd5\x92\x5d\xdc\xbf\xdb\xb7\x42\xbe\xfe\xc5\x8e\x77\xc4\xf9\xe6\xdf\x67\x00\x22\x42\xd8\xc3\x1d\xbf\xc9\x6f\xe3\x2e\xe8\x02\x08\xc7\x02\x5c\x4c\xd9\x1d\x6b\xac\xc7\x71\xbd\x96\xc6\x92\x55\xd0\xd9\x8f\x28\xf1\xd0\xd8\x80\x79\x8d\x36\x0d\xd3\x30\xf9\x42\x99\x0d\x7c\x38\xf6\x88\xf8\x0f\xd5\xcd\x8e\xed\x72\x41\xa5\xf0\xc1\x69\xc7\x72\x2e\x3f\x97\x5f\x2b\xe1\x15\xb3\xf2\x4a\xba\x9b\x96\x3b\x0b\x70\x22\xd6\xa2\x2f\x30\xb9\xe1\xbb\x33\x87\xe9\x2e\xa2\xbe\xfb\x36\xbd\x19\xda\x62\xf7\x68\x7b\xa2\x2b\x3f\xd9\xf1\x55\xeb\xfd\xc0\x6f\xf6\x35\x93\x65\x16\x8c\x80\x8a\xb3\x00\x5f\xa8\x2a\x6a\x29\x4a\xd0\x37\x15\x5d\xca\x6d\x30\x3f\x8f\x3e\x3a\xd2\xe0\xd7\x3f\xdb\x4e\xc3\x70\x34\x8c\x44\x30\xb2\x91\x71\x55\x7e\x45\xa9\xfb\x7c\x9b\xba\xe8\x73\x6b\xa2\x5c\x37\xec\x83\xa6\x84\x9d\x0e\x3b\xdd\x47\x31\x11\x91\x5c\x91\x5b\xda\xca\x56\xea\xdc\xf8\x41\xf7\xb6\x69\xf2\xb3\xe5\x9b\x60\x9f\x30\x21\x51\xcc\x21\xb5\x37\x01\xdb\x2a\x8a\xad\x9d\x02\x53\x6f\x8d\xd5\x18\x8c\x23\x13\x96\xfc\xb5\xb1\xaf\xb2\x4f\xc2\xf4\x8d\x15\x5b\xa8\x64\xc1\x9e\x7f\x97\x2a\x63\x74\x71\x2f\xab\x99\xf7\x09\x2c\x5d\x71\x18\xf7\x35\xed\x3d\xe2\xd7\xb8\xcd\x5c\x96\x38\xa2\xde\x40\x3b\x1b\xd1\xec\x5b\xb4\xf0\x44\xdc\x15\x0f\x09\xff\xe7\x22\x42\x2c\x32\x01\x6e\xe8\xe3\x74\xe3\xb2\x0a\x6d\x10\x2c\x15\x74\xa7\x3f\xa6\xee\x32\x36\xe8\x2d\x64\xd0\xa8\xaa\xb6\xa8\xa1\x27\x63\x0c\xef\xc2\x94\x87\x66\x68\x7b\x29\x0a\x10\x4f\x1f\x81\x1e\x0e\xbf\xae\xa5\x8e\xb3\x07\xda\x45\x54\xb0\xd3\x12\x3a\x02\x57\xe9\x0f\xf8\xb5\xeb\x0f\xad\x9a\x24\x4c\x47\xab\x36\xe3\xbe\xbf\x33\xa9\xf3\x4e\x11\x7f\x53\xa9\x31\x47\xb1\x05\x2b\x02\xb7\x99\x1a\xaf\x5b\x77\xb1\xb9\xa5\x4d\x45\xf7\x01\xdd\xd2\x7f\xa7\xcc\x72\xaf\x06\x4a\xd2\xe5\xb4\xca\xc9\xfb\x51\x1c\xe7\xe0\x9b\x4a\x66\xeb\x03\xf6\x7b\xf8\xab\x0a\xe7\x5e\x72\xe1\xfa\x99\xbc\xd0\xce\xa2\x50\x5c\xf0\x85\xc9\xdc\x72\xce\xa4\xe7\xb4\x15\xc4\x5d\x35\xc2\xeb\x5a\x1a\xac\x67\x3c\xa6\x46\x3d\xba\x41\xdb\x9d\x5f\xab\x88\xc3\xde\x09\x53\xf4\x5d\x04\x84\x42\x8b\x55\x2c\x9b\xd5\x73\x7d\x47\x65\x1e\xe0\x30\x21\x47\xbf\xdc\xe4\x57\x94\xdb\x6c\x15\x05\x23\xfa\x49\xec\xf0\x51\xf1\x6f\x92\x21\xf1\xcf\x78\xd4\x60\x5c\xd8\x2c\x21\xf5\xc8\x78\xbd\xe5\xfd\x4b\x59\xf0\x85\x2f\x02\x01\xbb\xa6\x59\xcf\x24\xd1\x2b\xac\x8c\x52\xde\x0f\x2e\xdf\x15\xdc\xe1\x8e\x8a\xd0\x5d\x9b\x24\xeb\x4a\x92\xee\x8c\x1e\x80\xd4\x0d\x7e\x9f\x9f\x3d\x50\xa6\x74\x99\x0d\x23\x8f\xe3\x14\x1a\x2e\xfd\x02\xbe\xa8\xa1\xef\x09\x40\x95\x26\xcb\x23\xef\xce\x2c\x88\xa1\xf2\x1e\xca\x3c\xd9\x0d\x4a\xfe\xcb\x5f\x24\x33\x1f\xc7\xd7\x72\xf7\xb6\xa5\x91\x66\x6f\xd3\x53\x14\xc5\x8c\xf2\x8d\x24\x89\xf6\x12\x70\x0c\x48\x90\x77\x52\xe3\x80\xcc\xe6\x39\x18\x7f\x8e\xfd\xf3\x23\x0a\x2d\xfc\xda\xed\xa4\x30\xb3\xb6\x8c\xc6\x6c\xb2\x28\x13\x2c\x3d\xd9\xda\xfe\xc0\x9f\x5f\x68\xdb\xe4\xa5\x74\x1d\x01\x1c\x31\x8c\xd5\x63\x5d\xdb\xc5\x0f\x0f\x4f\xbb\x8f\xea\xa6\xe4\x3c\x25\xf7\x48\xa3\x1b\xf9\x75\xc3\xce\xa0\x0c\x37\xa3\x6a\x0d\xc9\x1e\x60\x9f\xa2\x7d\xe0\xb3\xa5\xf7\xb4\x65\x52\xd4\x8d\x59\xe2\x0d\x6c\xd3\x0b\x88\xdd\x7c\xd1\xd0\xac\x5a\x2f\x33\xe2\x99\x19\xde\xfe\x0f\x50\x72\xce\xaf\x37\x94\x54\x55\x3a\x18\xc6\x51\x58\xae\x0f\x38\xb6\xa1\x7e\x62\x20\x23\xc2\xc5\x7b\x8c\x5b\x40\xe0\xe5\xba\x08\xa7\xe8\xa7\x48\xbc\xf8\x8f\x02\x57\x48\xc4\x4b\x36\x2b\x14\x8e\x81\xb7\x3b\xaa\x40\x46\xca\x89\x88\x4b\x13\xa0\xda\xd8\xdc\x64\x32\x02\x45\x83\xea\x2d\x8d\x42\x79\xcb\x23\x40\xa3\x5e\x62\x8a\x51\x86\xcd\x8a\x55\xf7\x9e\x32\x25\xba\x5e\x01\x01\x39\x47\xed\x7e\xb4\x6a\x72\x26\x3f\x31\x94\xba\x3a\x95\xd2\xe4\x02\xc5\x59\x7d\x90\xc6\x8c\xf2\x8f\x9a\x14\x91\xd2\xb5\x44\xd9\xf7\x9e\x0c\x54\x18\x7b\x6d\xec\x05\x7d\x3f\x69\x1a\x83\x87\x26\x2f\xcf\x0a\x55\x78\x82\x13\x2d\xac\x21\x0f\xd7\xeb\xa7\x71\x1c\xf5\x58\xac\xa9\x51\x82\x41\xd9\x16\x9b\x28\xc9\x8b\xcc\x9a\x01\xc0\x7d\x68\x79\x9c\x50\x1e\x02\x4f\x9d\x50\x1d\x8c\x6f\xac\x59\x04\x23\xe1\x34\xb5\x9c\x84\x4d\x5d\xed\xf0\x79\x92\xec\xd6\xfc\x38\x7c\x57\xb4\x47\xf8\xb5\x1a\x97\x2c\x91\x7c\x56\x0e\x2d\x06\x1c\xca\x50\x72\x05\x7e\xeb\x2c\x75\x39\xf0\x13\xfe\xb0\x01\x98\xbe\xd0\x36\xa1\x73\xf7\x6a\x29\x37\xe4\xf3\x15\x43\x80\xda\x9a\x9a\x99\x21\x69\x1f\xb7\x53\x85\x82\xd8\x72\x6a\x49\xd7\x6b\x33\x8e\x7d\xf3\xed\xdc\x9a\x3c\x4d\x58\x98\x00\x91\x00\xa5\x0d\xbf\x56\xf1\x69\xc9\x0e\x52\x93\x48\x6a\x00\xf8\xcd\x0e\xc5\x26\xde\xb1\xe1\xd3\x3e\xfb\xcd\x51\x54\x30\x0a\x58\xec\x4f\x18\xca\xc9\x17\xb5\x09\xd8\xec\x81\x76\x94\x14\x36\xb3\x80\x5a\xd3\x87\x30\x91\x22\xf0\xdc\xa4\xe3\x4d\xf2\x3f\xc3\x2c\x5d\x8e\x90\x95\xbb\x81\x8b\x13\x2c\xdb\x54\x83\x07\x98\x7d\x67\x8c\x97\x95\x3a\xc2\x63\xc8\x4f\xd7\x7a\xbd\x33\x33\xed\x30\x36\x49\xd7\xe6\x45\x94\x60\x07\x6a\x8e\x26\x7e\x0c\x0a\x35\xb6\xec\x6a\x70\x96\x6c\xaf\x46\x5d\x9b\x16\x66\xc8\x3a\x41\xee\x84\x52\xaa\x11\x0d\x27\xd4\xb3\xa4\x75\x16\x25\x23\x89\x5c\x22\x1c\xa8\x48\x49\xb8\xa7\x38\x65\x34\x08\xff\xa6\x96\xf5\x3a\x51\x83\x9a\x1e\x78\xae\x3d\x4a\x56\x6d\x14\x2b\x3b\xbd\xb7\x02\x3f\x4f\xae\x23\xc2\x85\xf6\xb2\x94\x5a\xe7\x7a\x8b\xf8\x06\x3f\x01\x1c\x80\x3f\xd1\x54\xfc\x33\xaa\xc7\x4e\x0b\x62\x1d\xcd\x50\x46\x62\xc3\xc7\x03\xd9\x2d\xc4\xbf\xd9\x83\x4c\xcd\xe8\x4e\x2b\xec\xfc\x11\x55\xcf\xfc\xf2\xec\x57\x38\xf1\x72\x6e\x13\x6e\xf4\x76\x27\x50\xfa\x24\xf5\x69\x62\xb9\x51\xa2\x41\x54\x50\x4e\x22\x33\x19\x44\xac\x33\x9a\xd2\xf0\x67\x55\x55\x81\xc7\x95\x5b\x70\x6c\xb3\x5e\xc4\x02\x6e\xc2\x01\xa4\xbf\xe4\x8b\xa6\xc0\xc7\xa5\x3e\x3d\x47\x8d\xef\x43\xda\x7f\x16\xa7\x0c\x5f\x50\x81\xc4\xff\x48\x45\x96\x30\x8e\x06\x22\x33\xca\xa2\xe0\x28\x4f\xd0\xd8\x00\x99\x8e\xc9\x8a\x63\x1f\x1c\x87\x7d\x9b\xa4\x03\x9b\x30\xd5\x16\x51\x1e\xd9\x09\x4e\xfb\x8f\xc7\xaa\x7e\xba\xa9\x8e\xe4\x41\x54\x6e\xf7\x5d\xda\xa0\x47\x1b\xe9\x04\x2a\x41\x3e\x3c\x56\x39\xf5\x61\x3d\x65\x0d\x94\x66\xc1\x66\x6d\x73\x2c\x3c\xb7\x9f\x68\x82\x79\x91\x66\x39\xbb\x28\xa1\xc3\xce\xe5\xa5\x18\x07\xb6\x9c\x46\x35\x9f\xdc\xa8\xfd\x7e\xac\x16\x85\x79\x19\x9d\x42\xb6\x88\xc7\x3f\x13\xbf\x78\x0f\x06\x0c\xfb\x26\x29\x60\xac\xb4\xdf\x21\xec\xaa\xba\xe2\xbe\x06\x89\xb2\xa2\x85\x82\x92\x73\x61\x4c\xa7\x24\x31\xae\xfb\x1c\xc4\x66\x28\xe2\x65\xe8\x30\x5f\x0b\x3c\xc3\xe6\x9a\xea\xb3\x45\x83\xe1\x28\xce\xa1\x10\x20\x32\x34\xc7\x03\x65\xe2\x84\xdf\xcc\xff\x43\xc3\x07\x2f\x34\x31\xb4\x44\xe1\x49\xa9\xab\x9e\x50\x38\x7e\x56\x3b\x90\xa3\xeb\x11\x55\x60\x64\xc3\x67\x9e\xa4\x47\x8c\x87\x07\x4b\x1d\x94\xdc\x77\xb5\x6f\x5e\xe0\x3d\xce\xa0\x9a\x8c\xce\xd1\x6d\x64\x91\x68\xd3\xed\xd8\x28\xf7\x2b\x4e\xdc\xdb\xa8\x53\x9c\xa6\xa9\xeb\xc0\x9d\x40\xc5\x2b\xc3\x19\x65\xe7\x73\x94\x72\x43\x84\xb6\x96\xf6\x53\x2a\xc6\x0a\x5f\x77\x9a\x0b\x63\xa1\x1b\x95\xf7\x1a\xcd\x4e\x4e\x62\xf1\x5d\xee\x50\x89\x8e\xb2\x95\x7b\x92\x52\x72\x3e\xa4\x64\x93\x5e\x7e\x48\xc1\xb0\x7f\x12\x78\x3c\xc4\x29\x25\xbb\xfc\x2d\xa4\x12\x5c\x7d\xd3\xb7\x74\xf6\xfa\x4e\x30\x9d\x39\x38\xe8\x6c\x1c\xa7\x52\xc0\x39\x9a\x38\x2e\xc7\x45\x4c\x6d\xc5\x4b\x4f\x8d\x9f\xee\x06\x8a\x00\xb4\x73\x43\xd2\xbf\xcc\xae\x9a\xc1\xd0\xc5\x5c\x49\x7e\x7c\xa7\xe8\xdf\x28\xdd\x5c\x2d\xd9\xd0\xb5\xc3\x34\x8f\x18\xf5\x8a\x0f\x9f\xea\x78\xbe\xed\x94\x3a\xae\x5f\x8a\x7a\xbd\xb8\xfc\x88\x96\x43\x78\x7e\xa4\xf4\x05\xae\x06\x9e\x1f\xab\x45\x64\x96\x46\xbd\x1c\x68\x62\xf4\x8e\xae\xab\x6e\x0d\x7a\xb4\xe2\x9c\x42\xbf\x59\xb8\x82\xe5\x9b\x71\xa6\xad\xc6\x3c\x61\x9a\x84\x36\x43\x7e\x31\x7b\xc0\x8f\x28\x16\xfc\x45\x13\x9c\x3e\xb4\x71\x3c\x8a\xd3\xa8\xcb\xb3\x2b\xd1\x8d\xd1\x88\x7c\xdf\x31\xcb\xa2\x5e\xca\x14\x49\xe9\xcb\xb5\x1c\xd7\xf9\x88\x42\x0c\xc7\x69\x4a\x2e\x10\xf4\x9e\x18\xe6\xf0\xb2\xc5\x4f\xda\x0a\x3c\xf3\xe7\x28\x7a\x3e\xb2\xc5\xfd\x84\xfd\x44\x2d\x99\x9c\x9b\x6b\x9b\x24\x91\xdc\xa8\x7c\x6f\x2c\xdc\x23\x78\xf6\x7c\x51\x4b\xee\x66\x0f\xb4\xb3\x51\x62\xd6\x0c\x34\x53\xb0\x5e\xf6\x28\x04\x4d\x1d\x34\x30\x7b\xa0\x3d\xcc\xa2\xc4\xcf\x92\x05\x18\xe9\x0b\x87\x9b\x8a\x65\x6d\xa2\x2c\x8e\x12\x9b\xd3\x9c\x0c\xe7\xfa\xbb\x41\x55\x78\xc5\x89\x7d\xb0\x05\x23\x76\xc9\x21\x85\xba\xe2\xe7\xcc\xa6\x93\x95\x5e\xce\x33\xf9\x33\x4f\x7a\x65\xd7\x4f\x02\x2f\x95\x7d\xc7\xcb\x41\xad\x3d\xb9\x41\x22\x79\xd8\x02\x77\x70\x26\x0a\x0b\x4c\xf1\xa7\x6f\x29\xd3\x95\x4b\x81\x62\xf2\x5f\xa5\x78\x85\x45\x7b\x04\xe9\x95\x1b\x2e\x95\x5b\x13\x4b\x78\x4b\x0b\x35\x5c\x24\x10\xa8\x28\x37\x97\xeb\x1f\x79\xdc\x75\xec\x53\x19\x47\xd1\xad\xc0\x60\xe1\x2a\x3a\x71\x78\xc4\x17\x51\xfd\x60\xcf\x00\x55\xcd\xa8\x4c\x45\x47\x34\xdd\x18\x72\x15\x6a\xd2\x58\x7e\x1d\xbe\x80\x00\xb0\xeb\x0d\x19\x80\x93\x61\x6a\xc3\x5e\xde\x08\x92\xde\xd8\x5b\xfe\xb5\x1d\xd2\x14\x95\x0e\x76\x94\xbe\xff\x12\x55\x33\x5b\x3d\x29\x8c\xc1\x51\xf7\x67\xa3\xc4\x0c\xac\x37\x3c\x76\xf4\x11\x5f\x45\xaa\x11\xe2\x92\x35\x61\x9f\xcb\x48\x39\x08\xb4\xbe\xa5\x12\xa3\xbc\xa0\x84\x10\xde\xc6\x9e\x10\xc9\xf4\x47\xd5\xe9\x4b\x82\x82\xaa\xd1\x76\x93\x2a\x22\x74\x46\x4f\x8e\x3d\x5c\xe9\x8c\xaa\xd8\x06\xc3\x11\x85\x31\x61\xd7\xa9\xea\xed\xd3\xe0\x01\xfe\x5d\xd1\xf2\x84\x37\x99\xb8\xad\xdc\xc8\xb9\x36\x97\xc2\xbf\xa1\x19\x16\x5b\x93\x25\x13\x6a\xee\x0a\x49\x00\x69\x71\xd0\x33\xc6\x6f\xf9\x58\xc5\xbf\xd1\x33\x2b\xcf\x4c\x95\x87\x0c\x92\x2e\x18\x68\xf1\xeb\xb1\xaf\x29\x77\x92\x61\x9e\x73\x8f\x99\x17\xf5\xf8\xba\x67\xdf\xc1\xe9\x76\x3e\x5a\x8a\x23\xd6\xd9\x69\x72\xa0\x17\xa0\xc8\x5a\x3f\x1d\xfa\x53\x81\xbb\x76\x1b\x1e\xb5\x4d\x43\xd7\xad\xf7\xaa\xc9\x4c\x9c\x3f\xec\x47\x9f\xad\x8e\xaa\xc7\xde\xc4\x36\x12\x67\xa4\xf2\x3e\x22\xa6\x43\xe9\x82\x5f\x2b\xd4\xf1\x69\x6c\x09\x71\x82\xf1\xad\xd7\x07\x41\x43\xc1\x4f\xfc\x5d\x8d\x80\xfc\x18\x1b\xda\x21\x4c\x7c\x69\xf8\xa6\xe2\x2c\xfe\xa1\xeb\xb1\x84\xb1\x19\x0c\xd6\x81\xeb\x12\xd2\x97\x32\x7f\xfd\x48\x29\x7d\xc1\x05\x0e\x67\xfd\xf7\xb5\x7d\xcd\xaa\xdd\x5b\x57\x65\x01\x40\xe7\xb1\x8e\x77\xd1\xe1\x0d\x89\xa5\xb3\x35\xd6\x37\x5c\x79\xd4\x5f\xd0\x08\xef\xab\x63\x2f\x85\xf5\x58\xc7\x4f\x3f\x1e\x27\x42\x03\x52\xa0\x9d\x4a\x60\xa1\xc8\xa2\xd5\xc8\xc4\x15\xef\x28\x6c\x2b\x91\xcf\x79\x54\xb7\x41\x8b\x7c\x44\xab\x59\x8c\xfa\xca\x0f\xc0\x0c\x1f\x27\xab\x18\xf0\x6f\x3f\x61\x66\x66\xb7\xcd\xe0\xdd\x78\xdf\x75\x2b\xea\x3b\x60\xdf\x7c\x7b\xe8\x24\x2c\xd1\x61\xe0\xe6\x09\x5f\xb8\xb6\x52\x37\x33\x03\xc3\x47\x17\xce\xf3\x2b\xb4\xa2\xf9\xb5\xf3\x43\x58\xb7\xa6\x3f\xd1\xfa\xc6\x57\xf9\x7f\x4c\x55\xe4\x45\x68\x4d\xa0\xc1\x70\xb7\xe1\x4c\x2f\x2b\x82\x7c\x94\x99\x24\xa4\x06\xc8\x0b\x5b\x40\xaf\x6f\x5d\x74\xb8\xf5\x70\x90\x2b\xee\xc6\x89\x4a\xa5\xd6\x64\xaa\x11\x8f\x56\xec\x9a\xc9\x06\x2d\xcf\x3b\x41\x86\xc0\xaf\x9b\x7c\x76\xbb\x91\x2d\xb8\x20\x01\xa2\xea\xb8\x22\xbf\x9d\xd6\xb6\xae\xf8\x78\xdc\xa9\xad\x26\x21\xb0\xe5\x28\xb6\x58\xc6\x4e\x55\xdf\x11\x31\x5f\x54\xed\xaf\x1b\x81\x9f\x04\x1f\xab\x3d\xa4\x17\x5f\x6c\x9b\x6c\x20\x51\x5b\x98\xdb\x1e\x66\xf1\x56\xad\x79\x31\x7b\xa0\x5d\x64\x26\xc9\xe3\x51\x28\x62\x13\xb2\x8f\x5a\xce\xb6\xfe\x58\xad\x9a\xd8\x37\xdf\x0e\xd3\xd1\x30\x96\x14\x85\x2d\x58\x15\xbd\xfa\x90\xb6\x6e\x8f\x8a\x7e\x37\x33\x6b\xa4\x25\xb0\x38\xed\x78\xe2\xe5\xe2\x15\x9a\xb8\xc6\x69\x44\x8c\x82\x53\xb4\x0f\xc7\x01\x51\xfc\x96\xbc\x6f\xe3\xc2\x66\xac\x21\x8b\x93\xef\xac\x02\x6b\xdc\x79\x7f\xac\xee\xc3\x55\x0d\xca\x49\x73\x9b\xf1\x8c\x07\xbb\xe7\x94\x02\xd0\xdd\x0d\xfc\xd0\xfb\xba\xf2\xb6\x7c\x3f\x10\x29\x26\x93\x24\xd1\xaa\xcd\x72\x93\x21\xdb\x42\xce\x71\x47\x61\x62\xee\x04\x0f\xab\xfa\xc9\xc4\x93\x3e\xc3\x3e\x3f\x56\xce\x4a\x3f\x56\xf2\x36\xe7\x91\x74\xf0\xff\x50\x75\x60\xcf\x2c\x65\x91\x8d\x0d\x51\x8b\x44\xa2\xc0\xcf\x71\xb8\x2a\x10\x97\x9d\xa6\xfa\x79\x60\xb2\x15\x65\x88\xef\x4c\x96\x9c\xae\xd6\xf9\x86\xe6\x52\x3b\x23\x35\x03\x6f\xcc\x8d\xdc\xee\xd7\x14\x48\xe9\xd7\x6a\x00\xd9\xc5\xe9\x76\x6e\x80\x19\x47\xc3\x0c\x32\x4f\xfc\xba\x71\xca\x94\xc6\x3c\x65\x92\x84\xbe\xfc\x63\x00\xb1\x0e\x55\xd4\xcd\xb5\xcc\x56\x9e\xb7\x94\x38\x2b\xc0\x05\x22\x5f\xdb\xa4\x20\x1f\xf6\x4d\xd6\x13\xcd\x01\x0e\x2c\x81\xc2\x94\xde\xf5\x29\x53\xb4\xbc\x6c\x33\x77\x6e\x62\x07\x5f\x52\x60\x32\x0d\x37\xf8\xb3\xca\xe9\xb9\xca\xe2\x7b\x8a\xed\xb3\xe0\xa0\xb4\x7e\xf2\xbf\x64\xc2\x95\xbd\x1e\x06\x7a\x4f\xe9\xb5\x4c\x6e\x54\xf4\x1b\x7d\x0e\xdc\xda\x50\xf2\xd2\x47\xb0\x84\xd0\x9a\x67\x93\x42\xae\x29\x91\x88\x70\xe0\x40\x82\x8a\xe9\xf2\x71\x3a\x99\x91\x43\x7d\xaa\x60\x34\x36\x1f\xf2\x98\x91\x5b\x72\x14\x79\xa4\x3d\xe7\xcf\xc9\xe7\x6c\x97\x3b\x61\x78\xf4\x70\x87\xa0\x6a\xf9\xc4\x63\x1d\x05\xcc\x7a\xd0\xd5\xa5\x4b\x99\x49\x8a\xe5\x34\xeb\xaa\x49\x31\x37\xe8\xf9\xc2\x49\x92\x2c\x65\xd1\x12\x1a\xba\x18\x35\xb2\xf4\x18\x5f\x34\x4d\x94\xb3\x51\x2c\xb2\xac\x7c\xf6\xb2\x0e\x0c\x5f\xa8\xfd\x93\x0e\x8b\x68\x10\xe5\x6c\x73\x03\x86\x13\x9c\x23\xf8\x75\xf0\xb0\xc2\xe1\x46\x2f\xb7\x94\xd3\xca\x25\xef\xdf\xfc\x5c\x23\x85\x3f\x1b\x0d\x52\xc1\xa9\xa3\xc6\x39\xa7\x58\xb9\xe7\xc6\x15\x57\xbd\x34\xcf\xa3\x25\xf6\xb8\x14\x91\x56\xad\xd8\xaa\x00\xc1\xbd\x2c\xb2\xab\x74\xc0\xb5\x9c\x56\xf2\x55\x65\xeb\x76\x55\x15\xc6\xe5\x61\xc8\xde\x12\xad\x79\xe5\x9c\xe3\x90\x34\x97\xb4\xed\x7b\x3f\x2d\x6c\x8c\x96\x1d\xe0\x64\xff\x22\xf0\xc1\x04\xd0\x59\xe5\xca\x28\xd9\xff\x87\x4a\x61\x9f\xb3\x65\x41\x51\xf9\x0c\x66\x60\x12\xd3\xb3\xf9\xa4\xb7\x8c\xbd\x89\x92\x18\x3d\x12\x86\x3e\xf0\x05\xbd\x21\xff\xab\x5a\x92\x32\x3f\xdf\xb6\xab\x26\x1e\x99\x42\xce\x18\x24\x95\x9b\xc8\xb6\xf8\x42\xb1\x64\xa1\x97\x14\x52\xd5\xec\x31\x55\x67\xd4\xc8\x53\xf7\x25\x4c\x6c\x92\x29\xa5\x62\xff\xfa\x58\x9b\x39\x5e\x44\xe6\x8a\x50\x8e\x89\x3d\xbf\x0e\xfc\xc3\x38\xa5\x09\x30\xd9\x28\xcf\x23\x43\x77\x5f\x29\xf1\x2e\xb8\x87\x2c\xd3\xee\xd8\xe4\x61\xb4\x1a\xa5\xa3\x9c\x89\xc3\xa8\xc2\xce\xaa\x66\xcd\x59\x27\xed\x34\xb4\xd9\xf2\x68\x00\x2a\xb4\x78\x05\xf9\xef\xf2\x2a\x15\x42\x22\x36\xd7\x10\x58\x97\x46\x19\x4b\x5d\xeb\x11\x2b\xbf\x56\xf7\x22\x4b\x63\x5e\x0e\x68\x9e\x7d\xac\xc4\xdd\xfe\x0a\xdd\x15\x11\x01\x50\xd3\x51\xdc\x16\xa6\xdb\x8e\x95\x10\xe4\x96\xf2\x6c\x59\x8e\x12\x53\x3e\x93\xac\xa5\xa8\x17\xc7\x34\x88\xfa\x58\x65\xf6\x92\xc3\x02\xa2\xe5\x64\x5e\x78\xba\xcf\x17\x8d\xac\xdb\xa5\xd8\x0c\x2c\x9d\xaf\xc0\x2a\x41\x9e\x4f\x48\xb3\xe5\x4e\x43\xcf\xfc\x43\xa4\x06\xa8\x1c\x77\x74\xb6\xa1\xf7\xbe\x3e\xdb\x7e\x7e\x81\xd0\x7b\xdc\xb5\xa3\x9b\x85\xec\x64\x13\x05\x33\x8e\x24\xb4\xf3\x10\x6d\xaf\xe9\xce\xe4\x87\x4e\xbf\xcb\x24\x85\xe9\xa5\x09\xd8\x67\x74\x67\x64\x5c\xdd\x72\x42\xc9\x17\xd4\x79\x50\x26\x08\x6a\xba\x76\x42\x67\xbf\xf5\x64\x95\xd4\xea\x4d\x56\x24\xe5\x5d\xf5\x42\x1c\xd7\x15\xa9\xe1\x7a\xc3\x76\x5a\x68\xf7\x4c\xd1\xf7\x87\x39\x36\xde\x19\xb4\x43\xf9\xc2\x9d\x81\xf9\x5a\xb4\x6a\xbd\x3a\x1a\xfa\x06\x1f\x2b\x7b\xc8\x8f\x15\x7f\x33\xb3\xc3\x2c\xed\x8e\x42\x3b\xa1\x70\xde\x9a\x3a\x75\x4b\x21\x72\x8f\x35\x96\x23\x49\x98\x59\x93\xcb\x57\x43\xdf\x7e\x27\x88\x61\x7c\xd1\xa9\x17\x01\x0b\xed\x3c\x1d\xd8\x22\x1a\xc8\xb1\xee\xd4\x9f\xc4\x48\xf7\x17\x4e\xd4\x72\xed\xd9\x03\xed\xe5\xd8\xe8\x4c\xf7\x50\xe0\x33\x5d\x3d\x4b\x19\x8e\xb2\x61\xca\x5c\x1f\xd4\xb0\x27\x74\x0b\xee\x44\x93\xb2\x7a\x59\x51\x21\x90\x28\x35\x8a\x59\xa7\x46\xe1\x36\x76\x66\x73\x9b\x68\x65\x54\xd0\x5d\x29\x4b\xfa\xad\x2f\x74\x3c\x38\xf3\xf3\x1b\xca\x06\x42\x8f\x6c\xec\xcb\x7d\x33\xca\x1d\x45\x1d\x58\x91\xbf\xc4\x17\xe4\x0b\x17\x47\xc2\x6c\x94\xf7\x59\x84\x4e\x2b\xb3\x09\x0b\x45\x39\x3b\x7c\x54\x43\x6c\xcf\xcd\x2d\xb6\xf3\x22\x23\xda\x61\xcb\xef\x09\x24\xa0\x3e\x7b\xf7\x92\x9b\x66\x65\xbd\xa5\x9a\xb9\xaf\x06\xaa\x12\x7c\xb5\x69\x28\x9d\x9b\x28\x29\xe2\x75\x1a\x5a\xb1\xb5\xbf\xea\x57\xef\xec\xf8\xe9\x7e\x1d\x27\x71\x70\xfa\xd9\xb6\xc9\xc8\x21\xa0\x3c\x73\xb0\x58\xae\x51\x43\x02\x67\xf6\x7d\x2d\x3c\x49\x2b\x83\x7e\xe8\xcf\x3d\xde\xf1\x07\xe2\x5a\x9a\xad\xf0\x90\x05\x79\xea\x35\x35\x81\xe7\xbe\xa0\x74\xa3\xcb\x47\x86\xc9\xda\x61\x07\xbf\x18\x66\x69\x68\x2d\x77\xcb\x94\xa2\x55\xf9\x77\xa2\x68\xd5\xa0\x26\x1e\xe5\xb9\xe3\xbd\xa0\xbb\xf8\xaf\x03\x8f\xeb\xf9\xd7\xea\x58\x5d\x36\x61\x91\x66\x0c\x18\x40\x59\xff\x7b\x38\xa2\x9c\x97\xe0\x3e\x87\xe0\xae\x94\x52\x79\x94\xc0\x5d\x5d\x5a\x2a\xbe\x2d\x7a\xbf\x72\x92\x8e\xf5\x19\xab\x7d\x8a\xef\x23\x42\x08\xcf\xa7\x41\x9f\x9d\x84\x66\x59\xd0\xc5\x99\x33\x95\xdf\x54\xec\x08\x94\x02\x17\x88\x70\xe8\x0b\xbf\xd7\x84\x7a\xb1\x83\xd4\xe5\x31\x0c\x79\x0d\x3c\xbd\xf1\xdb\x0d\xd2\xd7\xb3\xed\x34\x8b\x7a\x51\x62\x62\xa8\x5c\xcd\x3b\xd8\x62\xf9\xb4\x85\x25\xef\x91\xc0\x59\xca\xff\x0c\x6f\xc9\x7d\x1d\xbe\x50\x63\xaf\x2c\xca\x57\x72\xf8\x2b\xb3\x8f\x1c\x25\x2c\xd8\x97\x17\x75\x87\xf3\x4e\x45\xc6\x85\x16\x1f\x06\x85\x77\xc6\x3b\xbf\xe4\x58\xd1\x0d\x91\x68\x35\x2d\x38\x68\xb2\x5f\xec\xd8\x87\x25\x00\xd2\x91\xc8\x5f\x76\x3d\x3d\x91\x6b\x9e\xf4\x9d\xa5\xbf\x08\x54\xaf\xfd\x9c\x62\xe8\x62\x08\xc5\xff\xa8\x52\xa7\x24\x36\x26\xff\x5c\x94\xea\x93\xb4\xc3\xd0\x69\xfd\xc1\x58\x41\x6b\x5f\xc3\x3b\xbb\x21\x9a\x6b\x79\x1d\xd5\xc2\x19\x17\xf5\x10\x60\x47\x03\x35\x71\xa1\x6d\x13\x72\x63\xd3\xc6\x67\x0c\xd2\xe4\x8b\xa6\x71\x46\xcf\x26\x45\x2c\x16\xa4\x6e\x2f\x96\x09\x88\xc3\xb1\xba\x34\xfb\x66\x03\x47\x6c\xa1\x6d\xf2\x72\x5b\xfb\x11\xe1\x75\x65\x5d\xf5\xdb\x78\xec\x8e\x7f\x5f\x2e\x5e\x34\xfa\x26\x3a\xce\x68\x28\x35\x43\x4e\x3e\xd9\xdc\x57\xb1\x89\x37\x5d\xc3\x6b\x29\x03\xef\xb2\xa2\xcf\xeb\x79\x60\x17\x9a\xf6\x7e\x1c\xad\x58\xce\x00\x71\x46\xb6\xa8\xfd\xc5\xaf\x6b\xa6\xeb\xfb\xe6\xdb\x99\x09\xcb\x12\x46\xe1\xfd\x69\x81\x08\x5c\xb8\xfe\x19\xb3\xed\x61\x16\xa5\x19\xbe\xbf\x13\x43\x54\x34\x04\x1f\x5f\x7a\x36\x1b\x98\x24\x07\x84\x14\x13\xd8\xdd\xd4\x91\x46\xaa\xf7\x2a\x32\x27\xfc\x8f\x23\x81\xb2\x3c\xb8\x8b\x85\xc0\xfd\x74\x55\xbd\x0c\xd2\x84\x1c\x39\xd7\x79\x2e\xc0\xc2\xe3\x55\x15\x72\x05\x0c\xea\x54\x80\x0e\x5e\xd6\xfb\xb2\xd3\x25\xca\xad\x5d\xd9\xe5\x15\xe8\xee\x28\x27\x5f\x06\x6a\x23\x30\x42\x65\x40\xd9\x8d\xbe\xe0\x60\xbc\xf4\xbe\x00\xe2\xff\x65\x6d\xc1\x1c\x78\xae\x2c\x38\xba\xa8\xcd\x30\xfd\x3a\xaf\x40\xca\x9a\xff\x52\x64\x51\x5e\x94\x47\xbd\x0a\x79\xdc\x78\x12\x51\xbd\xc7\x54\xa3\x96\x04\x9c\x1f\x56\xfb\xea\xa6\x46\x55\x9e\x09\x5a\x5f\x13\x89\x65\x06\x34\xb0\xb1\x4a\xe0\xe7\x0b\x27\x91\x81\xe2\xe0\x41\x10\x47\xb1\x7d\x05\xcb\x98\xdf\x17\xf5\xbe\x93\x58\x99\x77\x4e\x24\x34\xf4\xe2\xcf\xa0\x35\xc0\xce\xd9\x74\x6e\x88\x02\xb9\x92\x25\x35\x59\x62\xb1\x3a\x71\x8a\x62\x68\xcf\xaf\x3b\xf5\xfe\xe5\xfe\xf6\x92\x2d\x26\x34\xe1\x5b\x81\x5d\x58\xd8\x08\x33\xbf\x1b\xb5\x7c\xf6\xe0\x74\x7b\x60\x58\xee\xcc\xb7\x4c\x8f\x8e\x55\xf7\x45\xf3\x14\xbe\xc6\x04\x46\xb9\x95\x9e\x5c\xc1\x44\x24\xdc\x98\x4f\x6b\xa0\xd3\x2f\x7f\xb9\xfd\x52\x1a\xae\xf0\x86\x66\x04\xb6\xe2\xf6\xd5\x31\x39\x65\x0c\x89\xa3\x55\xb1\x68\x40\x6e\xbd\xa3\x83\x15\x2d\x22\xa8\x4a\xec\xe4\xdd\xb1\x92\x20\xf2\xf1\x61\x79\x94\x74\xab\xb0\x8b\xdb\x8a\xed\xcf\x38\xea\xba\xa6\x2a\x9b\x24\x44\x49\x8f\x05\xe5\xf1\x9c\x26\x3a\x1e\xff\xfa\x2e\xbd\x0f\xc2\x16\x13\xac\xf1\x25\xef\xe2\x6b\xf1\x85\x76\x69\xbf\xd5\x70\x82\x92\xc8\x69\x56\x8c\x12\x19\x08\x30\x31\x2b\xf0\xec\x9d\x3f\x69\xbc\x39\xe4\x87\xc2\x5d\x21\xf4\xaf\xde\x50\xcf\x83\xf5\x17\x11\x6e\x2e\xd7\x12\x4b\x81\x8b\x2d\x5b\x93\x4d\x6a\x86\xb4\xb2\x6c\xdc\xd1\x51\x74\xb4\x37\x68\xb5\x0a\x9d\xb1\x21\x91\x1c\x58\xd5\xe3\x44\x73\x0c\x77\x8b\x5f\x6f\x48\x2c\x49\x9e\x59\x7d\x66\xa2\xe2\xbd\xee\x71\x1c\x67\xf4\xe4\xf0\x5e\x45\x5b\x77\x94\xa1\x7f\xcd\x46\x27\x8a\x0f\xf5\xbe\xf2\xf0\x83\x92\x58\xf9\xc0\xfd\x19\x00\x8e\x1b\x46\x67\x5a\x47\xea\x93\x06\x72\x72\xfb\x9b\xa3\x28\x5c\x69\x69\x15\x82\x96\x72\xf3\x6b\x50\x2d\xd9\x0f\x7d\x63\xd2\xf2\x76\x3d\x31\xd6\xb2\xd1\x7d\xb4\x0b\xaa\x7e\x08\x4d\x61\x7b\x29\xa9\x9c\xb8\x3e\xde\x36\x80\xf8\xf6\x6d\x4e\x8a\xaf\x19\x93\x12\x65\x22\xa5\x67\x55\x92\xa4\xe4\x45\x79\x22\xca\x92\x17\xb8\x99\x27\x9b\xdf\xc1\xd9\x2f\x42\x0c\xb2\x4f\xd2\x51\x91\xdb\x02\x6f\x2f\xb9\x99\x4f\x03\x4f\xd5\x16\x10\xb5\x75\xd3\x55\xeb\xb1\xe7\x40\x07\x6e\x6a\xad\x84\xcd\xe0\x29\xd5\x77\x4d\x56\xcc\xc0\x66\x51\x68\xf0\x29\x2e\x7b\xf6\xae\xdc\xaa\x15\xb8\x3c\x7a\x29\x02\xba\xc3\x19\xaa\xba\x11\x26\x94\x64\x2b\xba\x54\x2c\x75\x46\x51\x5b\x64\xcf\x3e\x73\xcd\x8f\x2c\xc6\x7c\x42\xb6\xd2\xcc\xab\xda\x56\xdb\x47\x92\x90\xd1\x0a\x6a\x51\xc7\x2e\x9c\x9b\x73\x33\x4b\x0f\xe9\x59\xb3\x59\xd1\xb7\xd1\x00\x67\x93\xa0\x63\xe9\x57\x08\x3c\xd6\x2f\xe9\xe5\xc8\xc6\x6c\xd8\x8f\xf4\xef\x50\x50\x41\x10\x4d\x78\x7f\xc9\x43\x7a\xf8\x5f\x03\x25\x7b\xc5\xf3\x2e\xd4\xe4\xbd\x34\x10\xb8\xae\xe2\xc0\xda\xd0\x40\x05\xec\x71\x97\xea\xe6\xff\x31\x05\x1e\x84\xbb\x2b\x4a\x4f\xf5\x11\x58\x27\x88\x40\x0e\xe5\x82\x74\x31\xf8\xd9\x8e\xff\x90\xc9\x0d\x0f\x48\x4e\xd7\x12\x9b\xe5\xfd\x68\xa8\x5b\xbf\xcc\xcb\xe5\x8b\x86\x82\xb7\xdd\x4d\x57\x6d\x61\xa2\x98\xfb\x0a\x58\xb5\x57\x70\x17\xf9\xc2\xbb\x51\xf6\x59\x23\x40\x88\xa1\x1f\x04\x9e\x3f\xa9\xdb\xae\xbd\x68\xd5\x02\x5f\xa9\xa0\x30\xcf\x0a\x11\x54\x65\xfb\x2f\xd6\x01\xcc\xb3\x9c\xa2\x4d\xf8\xce\xd8\x84\xa2\x4c\xdf\xac\xd8\xfc\x34\x84\xea\xb6\xe9\x65\xd6\x76\x27\x95\x1f\x11\xcb\x48\xe1\x88\x80\x6a\x2d\x46\x9d\xac\xc3\x87\x79\x5a\x99\x0c\x3b\xe7\x84\x74\xed\x21\x6f\xe3\xf9\x5d\x95\x4b\xb6\x3a\x1a\x47\xe7\x31\x89\x0f\xd2\xfc\x1c\x25\xd8\x25\xea\x9b\xf1\x6b\x1e\x6b\xb3\x37\x9a\x16\xbe\xdc\xbd\xe1\x37\xd6\x11\x7c\x45\x61\x5b\xfb\x59\x31\x57\xab\x18\xdd\xd5\xf5\x2e\x64\x35\x8e\x9e\x59\x79\x06\x27\x0b\x0a\xa2\x3f\xad\xc0\xe0\x7c\xc7\x90\x4d\x0c\x90\xd7\x5f\x6b\x48\xd7\x17\x44\x81\xca\x4b\xab\xb0\xcc\xb6\xb0\x99\x1a\xc2\x38\xf1\xa0\x5a\xbe\xe3\x87\x91\xae\x58\xf8\x36\xfc\x41\x66\xa2\x1c\xe9\xa7\xb8\x46\xd0\xcf\xe7\x8b\xc6\x03\x38\x33\x49\xcf\x4e\xa8\x03\x4b\xee\x2c\x06\x48\x3f\xd4\x20\xa2\xba\x8e\x06\xa9\x26\xa5\xa3\x82\x98\x97\x02\xad\x50\x30\x0b\x2d\x73\x95\x66\x7b\xfc\x7a\x3b\x15\x68\xbb\x1e\xba\xab\xe8\x4f\xef\xea\xa8\x74\xe8\x0e\x6e\x2b\x60\x1e\xd7\xf8\x8b\x39\xfd\x5d\x8f\x49\x39\xa6\xa0\x1d\x27\xd5\x67\xce\x2e\xcc\x4c\x68\x55\x70\x35\x76\xbb\x82\xb7\x06\xd8\x72\x47\xe7\x71\x65\xd5\x9e\xf7\xcb\x23\x81\x00\x82\x6e\x04\xe0\x0e\xb8\x33\xb5\xec\xa7\xac\xc2\x4d\x48\xb3\x13\x41\x49\x89\x63\x9f\x07\x6c\xf0\x56\xc5\xe2\xad\xbb\x4e\xed\x9b\x6f\x0f\xa2\x22\x1f\x45\x2d\x65\x44\xc0\xd3\x3f\xbe\x68\xb2\x54\x1a\x58\x93\x8f\x32\x69\x5e\x0a\x24\x8e\xde\x82\x2f\x1a\xc1\x81\xcb\xcb\x51\xd7\xac\x46\x68\xc6\x71\xfd\x1a\x78\x2c\x50\xdd\x5c\xf2\xe9\xf6\x70\x94\x85\x7d\xdf\x5f\xc5\x1a\x64\xd9\x06\xbe\xa8\x0e\xe0\xe3\xf5\x47\xbd\x0e\xfc\x14\x67\xbc\x68\xae\x71\x3f\x0c\xbb\xe8\x43\x4c\x77\x9c\x8e\x6e\xb9\x5e\xc5\xef\xcf\xcf\x91\x26\xc8\x8d\x04\xd9\xcf\x55\xdc\x4a\xb4\x0e\xa0\x77\x81\x10\x34\x85\x4e\x27\xd6\xd4\x0d\x35\x1b\xfa\x16\x14\x7a\x9c\x93\x8e\x63\x91\xbf\x8b\x72\x47\x54\xac\x94\x1c\xcd\x7f\x70\x00\x21\x3a\xe1\xf2\xdd\x7e\xbe\x75\x0e\x69\xb2\xe0\xa7\xfd\xdc\xe2\x3c\x0f\x31\x85\x0c\x5b\xfe\x7e\xdc\xd1\x93\x3c\x1b\xe2\xff\x43\xe1\x1d\x53\x84\xdb\x6a\xb5\xfe\xc2\x7f\xfe\xcf\xa6\x94\xee\xe4\xbd\xb1\x6a\x10\x1d\x55\x5d\x2f\x00\x81\x9c\x02\xcf\xcc\x2c\x97\x55\x6f\xab\x44\x25\xb3\x26\x16\x4a\xa4\x27\xd6\xbe\xab\x10\x4c\xef\xd6\x36\x73\x19\xa5\xd2\xa4\x48\xd5\x20\x01\x06\x60\xfc\xba\xd1\x59\xd1\x86\x26\x8e\xd5\x80\xf1\x1c\x1e\x21\x5f\x80\x50\x87\x53\x6e\x7d\x30\x34\x45\xdf\x8a\x9e\x1e\x52\x75\x78\x6a\xf1\x6b\x35\x53\x5e\x8b\x62\x1e\xb6\xa2\xf1\x7a\x04\xf1\x82\x2f\x1a\x23\x59\x91\x16\xd0\xb4\x93\x4e\x16\x9c\xb5\xf9\xf5\x86\xee\x5e\x65\xd1\x90\x2b\x22\x1c\xa4\x3b\x61\x4f\xae\x5b\x68\x4a\xc7\x41\xb8\x34\x08\x53\x48\xc7\xaf\x68\x05\xf3\x1d\x1b\xf5\xc4\x72\x7f\x3b\x5f\x23\x05\x32\xde\x31\x08\x34\xdc\x2a\xe4\x0b\x55\x1a\xf4\xb2\x74\x2d\x9f\xf4\x4d\xe7\xc3\xea\x6c\x44\x85\xea\xd4\xe8\xf6\xcd\x3b\x3b\x42\x97\x41\x14\x66\x30\x24\x45\x3c\x67\x0a\xb5\x38\xed\x1f\xa1\x73\x9d\xbd\x85\x59\x9c\x80\x7f\x5a\xde\x0e\xb1\x56\x14\x1c\x78\xae\x1d\x25\xcb\x99\xc9\x8b\x6c\x14\xc2\x8b\xc4\x9d\x3d\x10\x03\xe5\xd7\xb5\x73\x68\xdf\x7c\x7b\xcd\x38\x5c\x8f\x13\xc4\x54\x45\x44\xe3\x42\x8a\xf2\x15\xdc\xab\x59\xa1\xa9\x07\x4a\xf9\xf1\x5b\x8a\x23\x96\xd9\xb2\x1e\x16\x33\x87\x26\xe8\x59\x45\x66\x35\xb6\x7b\x75\xae\x80\x25\xed\x90\xdf\x9e\x5e\xf3\x03\x4d\xaf\xf9\xc1\x58\x49\xab\xbe\xa5\x66\xb6\x6f\x8d\x95\x99\xec\xdb\x38\xc2\xf9\x02\xa3\x3c\x81\x91\xd3\x0f\xe6\x8f\x6c\x02\x4d\x85\x69\x52\x64\x69\x1c\x3b\x98\x08\x9a\xbf\x27\x15\xd1\x12\x3d\x2d\x04\x80\x5d\x1b\xdb\xb9\xa9\xf3\xf3\x6d\xc1\xa3\x0b\x10\x57\x35\x91\x8f\x2a\xd8\x40\xf9\x51\x36\x71\xb1\x40\x98\x4e\xea\x5e\x1f\x51\x96\x67\x85\x35\x03\x8d\xe7\x87\x15\x3c\xbf\x6e\xe4\x38\x3b\xf6\x00\x6a\x28\x64\x97\xef\x28\x7b\x8d\x77\x14\x36\xb7\x67\x93\x08\xf9\xfd\xfe\x8a\xa8\xbc\x54\x0c\x0a\xf9\x6f\xe2\x18\xa5\x85\x90\xec\x14\xe1\x8e\xbe\x94\xbc\x56\x3c\xfc\x4d\xd5\xa7\x1f\x2d\xa7\x34\xd5\x45\x2a\xc9\x33\x09\x77\x51\x3e\x2c\xbe\x50\x09\xe7\xa6\xfa\xaa\xab\x26\x1c\x8d\x06\xff\x71\xce\x4b\xfe\x53\xbf\xbc\x6a\x77\xf9\xf1\xf7\x79\xcd\xd7\xb8\x85\xf5\x02\xe5\xea\x2f\x50\x9b\x51\xcc\xb3\x95\xce\xf3\x79\x25\x67\x73\xbb\x02\xe2\xc2\xf4\x75\xd2\x37\x58\x38\x41\x62\x38\x01\x27\x48\x38\x73\x59\x9c\x5d\xb2\x73\xbf\x7d\x62\x93\x74\x49\x84\x81\x78\xcd\xa2\xf0\x55\x7e\x17\x91\xfe\xf2\x28\xa9\xd5\xb4\xb0\x93\xe5\xd1\x8b\x85\x7c\x93\xf6\x0e\xbf\x56\xf5\x2b\x3b\x8c\x88\xd3\x5d\xa3\xd3\x42\x31\xea\x3a\x34\x38\x72\xf0\xf7\x95\xd1\xe9\xfb\x4d\xc3\x8d\x25\x5b\x48\x2f\x42\xfc\x90\x55\x01\xf5\x3b\xb5\xc8\x43\xbb\x6a\x95\xd9\xbc\xd2\x63\x57\x89\xf9\xa6\xeb\x2f\xd8\x97\x87\xb1\x97\x3a\xc4\x03\xbd\x34\x56\x05\xef\x25\x3f\x9a\x33\x99\xe9\x65\x66\xd8\x57\xef\x0a\xb2\x28\xbf\x56\x0b\x66\xad\x1f\x25\x9c\xb1\xe3\x78\x46\x58\xe2\xd7\x63\xcf\xb6\xc9\x87\x69\x92\x4b\x57\x50\x7c\x45\x95\x84\xd6\x39\x5d\x9e\x40\xda\x4a\x94\x66\xb6\x87\x81\xd9\x03\xed\x3c\x55\x0a\xf2\xaf\xd3\x09\xc1\xaf\x55\x76\xf1\x75\x9b\x4c\xa8\x31\x1a\xb4\x9d\x30\xac\xe4\x1e\x19\x52\xad\x07\x36\x1a\xb8\xa5\x66\xb0\x14\xad\x9a\x58\x8c\xcf\xd9\xb9\x90\xde\x42\x5c\x0c\xeb\xde\x9d\xcf\xb6\x07\xd2\x8c\x11\x95\x1d\x7a\xfa\x42\x4b\x7a\x5c\x81\x3c\xf2\xfe\x52\xba\x16\x7f\x76\x63\x68\xfb\x89\xb1\xf0\xdc\xfe\x76\x3e\x24\x87\x40\xad\xb4\x53\xfe\x0c\x51\xda\x69\x32\xd4\xe9\x5a\xc3\x2c\x09\xcf\xdd\xf4\x1d\xe3\xaa\x93\x4d\xba\x92\x2a\x23\xda\x0b\xd5\x16\x8d\xc7\x90\xae\x59\xb3\x92\x10\xe4\xc4\xb9\x4c\x42\xde\x81\x5f\x6b\xaf\xae\xcc\x26\x61\x1f\x52\x69\xc0\x88\xa0\xa7\x25\x0a\x6d\xf4\x09\x5c\x42\x2b\xac\xdd\xa3\x9c\x3d\x4b\x71\xed\xa3\xe0\x9d\x71\x45\x84\xc8\x33\x8b\xf2\x35\x1b\x93\x7e\xbf\xb2\xd8\xae\x18\x66\x2b\xa6\x69\xd6\x1b\x0d\x6c\x22\x9e\xa3\x8e\x78\xec\x94\x02\x6f\xa2\x4d\x22\x24\x15\x4f\x34\xbc\x43\xd1\x00\xc9\xc4\x45\xaa\xcd\xf9\x75\x2d\x00\xbc\xf8\x62\x7b\xad\x6f\x0a\x5b\xee\x4d\x8a\xbb\x68\xc8\xdd\x55\x73\xd9\xbb\x9f\xd9\x11\xea\xa7\x71\xd7\xe9\xb8\xa2\xd7\x71\x4a\x6b\xa8\x9c\x1a\xeb\x0e\xeb\x0a\x58\xf1\xb3\x6a\x60\x2f\x8f\x1a\x6e\x47\x08\xcb\x75\xbf\xa5\x7d\xf3\xed\x61\x6c\xd6\x25\xad\x40\x10\xe5\x2a\x93\x2f\xd4\x7c\x03\xaa\x48\x34\xaf\x10\x60\x6a\xf9\x41\x7a\xd0\x89\x73\xfb\x56\xf0\x39\x35\xf5\x31\x49\x3e\x84\x11\xd5\x94\x57\xfa\x98\xd2\x8e\xd1\x6f\xd2\x8a\x40\x24\x3e\xaf\x3a\x0c\x57\xf4\x58\xf5\x07\xb5\x04\xf8\xf9\x32\xff\x4d\x7a\x23\x9e\x28\x21\xd1\xc2\xda\xe6\xd7\x0e\x3a\x92\x99\x28\x5e\x33\xeb\xe4\x6d\x8e\xfa\xe8\x91\x8e\xea\x92\xb0\x91\x1e\x2b\x20\x8e\xfd\xe1\x77\x6d\xac\x41\xcd\x0d\x0a\xa1\x61\x1a\xc7\x66\xe8\x6a\x44\x71\x34\xa6\xa7\xe1\x4d\xd7\x74\xc6\x6b\xb3\x7c\xc2\x57\x49\x97\xb0\x44\x45\x58\x5e\xb9\x6f\x7a\xa0\xc4\x5a\x6a\x97\x6c\x2f\x65\x37\x74\x74\x98\x80\x4a\xe3\xd7\x5a\x81\x61\xf1\x57\x27\x3c\x84\xe8\x7b\x6a\x58\xc8\xe6\xbb\xd8\x83\xad\x4e\x85\xbe\x12\xe6\x20\xaa\x62\x02\x71\x19\xe5\xa9\xb8\x87\x2a\x19\x96\xc3\x98\x24\xb3\x55\x67\xa0\x4c\x8d\xaf\x6a\xd5\x8f\x07\x59\x80\x0c\x4f\x74\x57\x47\x79\xf9\x12\x96\x51\x3c\x46\x36\x68\x71\x22\x1b\x78\xa4\xa3\x4c\xb3\xee\xa2\x78\xe5\xb7\xa6\xb0\x80\x07\x75\x4a\x29\x8e\x5e\x0d\x88\xd3\xe6\x5c\x8d\xcb\xfb\x88\xf8\x73\x5d\x41\xae\x18\x6c\x06\x82\xda\x6d\x7a\x9c\xd8\xe2\x0f\x6c\xc8\xc1\xb8\x6e\x06\x26\x0a\xfb\xf0\xad\x91\x35\xa0\x5a\x83\x27\x55\x7e\x56\xa4\x49\xbe\x9b\xfe\x9f\xe3\x2e\x38\xda\x11\x33\xe6\x50\x82\x7c\x80\x9b\xc8\x17\xf4\xb9\xd8\x51\xd7\xe9\x47\xf3\x6b\x1c\x79\x78\xe0\xef\xbb\x96\xfe\x30\x8d\xa3\x70\x7d\x52\xdb\xfb\xbc\xa6\x96\x35\x9c\xe6\x05\x5a\x43\x5f\x86\x81\x75\x63\x2f\x86\x34\xcc\x4c\x58\x48\x57\x79\xbf\xeb\x00\x7a\x4a\xc9\x66\xb0\x1d\x89\x75\x70\x7a\xb6\x3d\x1a\x4e\x79\x2b\xb1\x1d\x9d\x72\x7f\x4b\xcd\x43\xeb\x00\x6d\x0a\x74\x79\x70\x2e\x40\x82\x07\xe3\x8a\xdb\x4d\x11\xa6\xe8\xa7\xa3\x5e\xbf\x98\xf4\xcf\x04\x1c\x79\x7c\x67\x96\x8a\x03\xa6\xe2\x07\xb8\x1f\xd2\x66\xa8\x77\x7f\xf6\xc3\x30\x53\x8c\xd9\xb0\x74\xe0\xde\xcd\xaf\xdd\xae\x89\xca\xfc\x3f\x8f\x56\xed\x94\xaa\x5a\x8f\xb0\x88\x99\x32\x83\x11\xfd\x90\x93\x4a\xb7\xe5\x01\x35\x2d\x3c\xab\xca\x84\xe5\xcc\xe6\xfd\x49\x95\xf7\xdd\x04\xf3\x0a\x09\xcc\x16\x9e\x3f\x5f\xe0\xbd\xf9\x9f\x35\x1c\xcc\x0b\xed\x75\xea\xb2\x4c\x28\xc9\x96\xfb\xb4\x70\x65\xbe\x52\x99\x41\x3d\xac\x1a\xca\xc3\x9c\x7a\x8f\x58\xc7\xb7\x95\x2b\x5b\xbd\x2d\xbf\x8f\x44\x7f\xb3\xa2\xb0\x4c\xd2\x61\xd6\x3a\xbe\xaa\x50\xd8\x9b\x60\x20\x45\xdf\x24\xc4\x94\xe4\x47\x1e\xa8\xe9\xc4\x19\x75\xec\xf2\xf8\x70\xaf\x07\x2f\x73\x4f\x4a\x10\x00\xca\x96\xe3\x37\x70\x76\x7b\xb1\xb6\xe7\xf6\x3b\xf7\xfc\x96\x53\x0b\x9b\xec\x28\x66\xda\x47\x74\xc8\x72\x9b\x13\x2d\x6f\x07\xe4\x70\x69\xe6\x71\xa7\x76\x37\x48\xbb\x36\x23\xf3\xd8\x96\xd2\xb5\xfc\xf7\x63\xdf\x15\xf9\xf7\x4a\x3c\x23\xb3\x71\x64\x97\xa7\xb4\x25\xd0\x58\x0d\xd2\x6e\x42\x93\x40\x26\x32\xda\x46\x28\x50\x7e\x44\x47\x14\xc1\x0c\xa2\x7c\x13\x15\x9a\xdf\xcc\x0c\x47\xac\xeb\x54\x4a\x09\xb9\xa9\x2e\x07\xb8\xd0\x0e\x4d\x66\x1d\x96\xd7\x89\x56\x28\x90\x87\x52\xea\x98\x9e\x6e\x79\x67\x88\x53\x58\x2d\x7c\xa1\x91\x85\x65\x69\xab\xac\x13\x3e\x56\x1e\x10\x9b\x5a\xc7\xf8\x93\x86\x0e\xc5\x42\x3b\x4b\x4d\x97\x5b\xad\x38\xb8\xcf\x68\x95\xad\x33\xb5\xf5\xf6\xb4\x1a\xc0\xb7\x94\x5b\xf1\x99\x40\x8f\x4a\xfc\x89\xb8\x1a\x25\x85\xe9\xe1\x64\x73\x90\x10\xe5\x59\xe0\xb6\x73\x9c\xa6\xb9\x8d\xad\x59\x9e\x50\xab\x06\x1d\x42\xe9\x30\xd2\xdf\x89\xdf\xd5\xe3\x5a\xfe\xcb\x14\xa4\xe9\xe5\x25\xed\x38\x89\xe4\x8b\x5a\xee\x36\x37\xc7\xf4\x77\xb6\xe8\x6c\xb2\xcf\xf0\x7d\xbb\x22\x5a\x5e\x6e\x79\x52\xd0\x11\x95\x09\x1f\x69\x88\x61\x0b\xed\x74\x79\xd9\x6b\xcf\xf1\xfc\x7c\x3b\x76\x52\xf4\x44\x80\x02\x66\x35\x78\xfc\x44\x9c\xc5\xf7\x9b\x06\x56\xdf\x1c\xa5\x0e\xf9\x8f\x65\xfb\x53\xac\x54\xbe\x50\x77\x7e\x98\xd9\xc2\x26\xdd\x09\x15\x1d\xd9\x96\x5d\xd6\x5a\xcb\xd9\xc6\xd7\xef\xd0\xc1\xe9\xf9\xf6\x52\x9a\x95\x91\x7d\xc2\x9f\x80\xd8\xc5\xac\x14\xa8\xc8\x45\xdf\x53\xac\x8b\x61\x96\xe6\x43\x9b\x45\x05\x90\x32\x62\xc8\x52\xfe\x63\x71\x6a\xf1\x75\x7b\xb9\xd6\x79\x52\xbd\x30\x7b\xc0\x59\xf7\xb6\xfc\x6b\xd5\x84\x88\xbb\x43\x3a\x64\x54\x69\x3b\xeb\xe1\x4d\x07\xc5\xd5\xeb\xad\xb1\xc2\x31\x1e\xab\x20\xfc\xfa\x4b\x29\x56\x89\xe3\xe6\xbb\x86\xcb\x69\x05\xd3\x4a\x6c\x68\xf3\xdc\x64\xeb\x53\x4a\xea\xe4\x24\x42\x2a\xf3\x41\x54\x2b\x73\xa2\x43\x67\x84\x63\x28\xee\xf3\xd0\x19\x0f\x35\xa6\x25\x3a\xa1\x84\x8b\xcf\xa3\x32\x67\xe2\x2c\xa5\x40\x32\x82\xdb\xde\xb6\x74\xe3\x71\xd0\x06\x4c\x3c\xe1\xd9\xca\xc0\x01\xbb\x46\x6c\xf9\xac\x01\x59\xbe\x3e\xfe\xf9\xcf\x7c\x9b\x38\x1a\x46\x49\xda\x52\xe7\x0f\x94\x73\x24\xc3\x16\x42\x9f\x90\xea\x53\x26\xf4\xe1\x61\x23\xc2\xf0\xeb\x06\x84\xdd\xb3\xed\xa5\x51\xb7\xbb\xde\x52\x7e\x85\x28\xbd\x64\xf0\xd4\x80\x6f\xcd\xd2\x70\xc5\x29\x3b\x88\x5a\x0d\xf2\x23\x91\x2e\xa9\xaf\xd0\x85\xb6\xc9\xfb\x66\x60\xc1\xab\x73\x4c\xeb\xc5\x69\x17\x9a\x1f\x53\x27\xc1\x37\x47\x36\xd7\x50\xed\xe3\x8a\x68\x79\x5c\xa1\xfe\x06\xe1\x8a\x4d\x12\xa3\x63\x22\x6b\x45\xf2\x85\xd2\x49\x4f\x87\x43\x9b\xf4\x6d\x34\x80\x5b\xe9\x7e\xce\xbe\xf9\x41\xf0\x85\xd2\x9d\xed\xaf\x2f\x65\x11\x10\xe7\x6c\x8a\xa5\x6c\x39\x58\xb6\x8f\xc5\xfe\x14\x11\x62\x2d\x8a\xe3\x2f\xa8\x48\xfe\x08\x59\x93\x08\xa6\xb2\xfc\xbd\x48\xa4\x61\xa8\x88\x93\xf8\x2a\x76\x87\xcc\xdb\x95\x1c\xda\x75\xda\x5d\x68\x98\x3c\x81\x26\x09\x46\x01\xf7\x95\x58\x49\x6b\x43\xc3\xb9\x5e\x0d\x90\x55\xb9\x96\xe5\xf3\xa2\xc1\x7a\x77\xec\x47\x83\x3b\x3a\x14\xb9\xc5\xed\xb0\x3c\x16\xf1\x1d\x4f\x22\x55\x56\x5e\x36\x42\x7f\xdf\x42\xf2\x4e\xab\xf7\xab\x4f\x10\x09\x1f\x63\x74\x3e\x7f\xb1\xa7\xae\x8d\x95\x67\xc8\xce\x0d\x8a\x14\x6e\xaa\xee\x72\xd3\x33\xa8\x5d\x70\xfa\xee\xed\xb8\xca\xd0\xf6\x4c\x26\x47\x1c\x12\xf1\x4d\x5d\x86\x6d\xea\x7d\x4f\xb3\x25\x13\xe3\xb8\xc2\xd0\x82\x5b\xa2\x7c\x51\x5b\x85\xfb\xe6\xdb\x6b\x99\x19\xfa\x46\xb1\x13\xfc\x76\x30\xc3\xba\x41\xe7\xcc\x0c\x50\xee\xd4\xca\x40\x29\x8c\xcc\x90\x5f\xd7\x0e\x15\x1a\x49\x2f\x9b\x28\x16\xf4\x10\x42\xf8\x95\x8a\x56\x82\x12\xea\x38\xef\xf0\xa1\xcb\xd6\xc6\x7b\xca\x8f\x41\x38\x7c\xbc\xe3\x33\x85\x7b\x63\x85\xc8\xd0\xa2\xe4\xec\xf4\x05\x2c\x2b\x80\xa3\x9c\xbe\x22\x66\x09\xdf\x93\x9e\x8a\xf4\x69\x94\x5d\x70\x9c\x7e\x73\x64\x93\xa2\x45\xe5\x9b\xd3\x2c\x2b\xb7\x87\x54\xe3\x5e\xe1\x63\x98\x46\x49\xf1\x60\xf9\xa5\x1c\x32\xcb\xcf\xe6\xef\x62\xb4\x23\x3b\x82\x7e\xb9\x38\x4a\x79\x10\xde\x51\x3a\x5b\xd0\xb8\xdc\xb5\x51\x26\xce\x9c\x59\xaa\x94\xe4\x2f\x69\xa4\x28\xe3\xb9\x0a\x8d\xad\x42\x5e\x79\x42\x9b\x37\x2d\xa7\xc4\x1a\xf7\x7d\x6f\xc8\xf4\xf0\xeb\x5a\x73\x70\x7e\xbe\x4d\x91\x92\xde\x10\x1f\x75\x52\x11\x4a\x4e\x36\x19\x76\x24\xa9\x3b\x16\x80\xe0\x63\xbc\x22\x82\xfb\x6d\x0e\x81\x28\xe8\x76\x76\xea\x21\x70\xb6\xfd\xc5\xaf\xfe\xea\xc2\x57\xbf\x32\xbf\x57\x89\xb9\xb0\x0f\xbe\xa2\x4d\x39\xf0\xec\xd8\x63\xf5\xe1\x6d\x82\x30\xfe\x36\x21\x61\x91\x6b\xe3\x8c\x47\x48\xd8\xb3\xa1\xba\x8f\xc7\xb1\x73\xc5\x38\x86\x1e\xa8\x68\xa2\x35\x94\x25\x3d\x9b\xd8\xcc\x8b\xcb\x72\xcf\x3e\x50\x8a\xd9\x27\xb6\xa1\xef\x0d\x6e\x9d\x0b\x6c\xde\x4f\xbe\xc9\x49\x66\x68\xb2\x22\x0a\xa3\xa1\x61\x02\x0e\xeb\xde\x55\x34\xf0\xea\x83\x9d\x17\xda\x45\x16\x8d\x06\x43\x37\xc3\x74\xd2\x68\xde\xe2\xb7\xde\x66\x9d\x3d\x40\x4c\x69\xca\x69\x5c\x42\x8a\xa9\x16\xbf\xae\x6d\x59\xc2\xef\x86\x7d\x5b\x88\xf6\x37\xaa\xe9\x37\xc7\xca\x28\x84\x3a\xe9\x5b\x87\x54\xaf\x6f\x90\xa6\xe5\xc9\x59\xc6\x51\x94\x57\x3f\x0a\x94\x37\xed\x8f\xc6\xbe\xef\xb6\x46\xc2\x8a\xbd\x7e\x3a\xca\x59\x22\x41\x46\x18\x0a\x34\x7a\x52\x69\x24\xdc\xa7\x2d\x80\x80\x7e\xa5\x09\x71\x66\x93\xa8\x37\x30\x6a\x8e\x7d\x4d\xcd\xb1\xaf\x29\x69\xf2\xa5\xd8\x1a\x1a\x02\x7b\x42\xd6\x39\x45\x02\x39\x37\xf6\x05\x98\x49\xf2\x35\x9b\x4d\x2a\x28\xc7\x26\x1d\x3f\x48\x21\x2f\x6b\x58\xc7\x26\xc5\x72\xfe\x1f\x4d\x9e\x64\xa6\xfb\xd2\x88\x25\xe4\x91\xe2\x5c\x55\x94\xf8\xab\xdb\x7d\x07\x9e\x5f\x68\x7f\xf9\xcb\xb8\xf3\x22\x97\x44\x51\x0d\x5d\x2f\x8e\x96\x2c\xf7\x5d\x5b\x27\xcf\x93\x08\x54\x99\xc7\x86\xa2\x5d\x2a\xd2\xfd\xaa\xf5\x7f\x56\xf1\x57\xc9\x46\x88\x80\xa3\xdc\xd6\x41\x5c\xdd\xd3\x51\x33\xc1\x3f\x54\x18\x89\xf3\x9a\x05\xbf\xb3\xc9\xec\xa2\x58\x1f\x52\x7b\xc7\xe7\x36\x57\x15\x97\xf1\xaa\x02\xad\xc6\x51\x11\xf5\xe8\xe8\x9a\xf0\x4c\xdb\xdb\xda\x71\xe4\x9e\x9a\x4a\xd5\xe1\x33\xe5\xae\xe8\x46\xaf\xbc\xb2\xee\xc6\xb6\x0e\xed\xe1\xe1\x83\x14\x2d\x64\x6b\x56\x9c\x8c\x6d\xfe\x04\xdd\x21\xc9\xee\xbd\xd4\xe7\x79\xb2\xbd\xc0\x9d\xe0\x99\x21\xee\xf8\x26\x8e\x03\x41\x9b\xab\xce\xd3\x89\x40\x59\xb5\x3c\xd8\xd1\xf4\xe3\x53\xe8\x07\x3a\x91\xf0\xe7\xdd\x08\x6f\x0b\x4f\x45\x4a\x0d\xba\xb3\xa8\xa8\x90\xa7\xb3\x79\x40\xc7\x63\x6f\x26\x37\x94\x38\xf1\x1e\xa5\xfe\xf3\x96\xf2\xfe\xbc\x89\x83\x02\x27\xdc\x95\x5a\x3e\xbd\x4d\x72\x96\xd7\x89\x33\x72\xf4\x04\x9b\x73\x0d\x47\xc5\x42\x3b\x33\x7c\x54\x70\x03\x30\xa8\xb6\x03\x1b\x98\xdf\xa6\xdb\x25\xa5\x6b\xfe\x24\x11\xb1\x53\xd3\xf2\x7f\x13\x7c\xde\x75\x32\xd3\x57\xd2\xc4\x76\xed\x30\xb6\xc2\x1c\xdb\x3a\x16\xb4\x7e\xe5\xf9\xad\x63\xb5\x71\xdb\xbe\xf9\xb6\xf9\x52\x6b\xe7\x97\x9c\x18\x18\x7d\x2f\xbe\xd0\x53\x74\x33\x64\xff\x64\xb4\xa3\xce\x28\xef\xa5\x33\x75\xe5\xec\xd9\x03\xed\xd4\x86\x4c\xff\xab\xb0\x4d\x3e\x4b\x1b\xbe\x5c\x89\x6b\x36\x8e\xe9\x33\x90\xe3\xbc\xa9\xda\x23\x6f\x8e\x3f\x27\xb3\xce\x6c\xbd\xe8\x67\xe9\x30\x8d\x6c\x11\x25\x88\xe4\x22\x75\xe2\x1b\xe7\x67\xd5\x48\x68\x10\x25\x69\x19\xc0\x09\x51\xc2\x16\xc8\x78\xbe\x4e\x8e\xcd\x29\x59\xc2\x96\x9e\x45\x83\xf4\x8c\x6c\x47\x8d\x82\xf4\x74\x7b\xc9\xc6\xbd\x68\x34\x50\xc2\x95\x3c\x7a\xe4\x8b\x8d\x06\xbb\xcb\xee\x68\xb0\x44\x1b\x9b\x27\x66\xf4\x79\x32\x3d\xab\x31\x81\x67\xda\x79\x6c\xca\xaa\x44\xb2\x3f\x14\x22\xef\x6c\x37\xc7\x9d\xe5\x1d\x7e\x4d\x4d\x6f\x61\xfd\xbb\x47\x79\x97\xb6\x36\xd4\xd0\x45\x8b\xb6\xc3\x42\x1d\x59\xfa\x47\x63\x95\x7f\x33\x3f\x49\xb9\x37\xcb\x44\xef\xf6\x58\x43\x11\x1a\xc0\x7c\x51\x12\xc6\x23\x37\x22\x07\x16\x69\x17\x18\xcc\x7c\xd1\xd9\x1e\xfa\xc8\x41\x7f\x35\x8d\x57\x2d\xb8\xa7\x0c\xa9\xa3\xd3\x01\xa0\x94\xe3\x1a\xa2\x07\xfc\x28\x7e\xf8\x7d\xa7\xa2\xd4\xff\xff\x18\xfb\xd7\x20\x49\xae\xeb\x4e\x0c\x9f\xa9\xee\x1e\x00\x33\x83\xd7\x00\x24\xb5\xfa\xeb\xbf\x5b\xab\xa5\x17\xde\x10\x16\xd6\xca\x8e\x70\x84\x3e\x38\x6b\x7b\x9a\x04\x67\xd6\x6c\x4c\xf4\x8c\x30\x14\xc3\x1f\x70\x2b\xeb\x76\x55\xa2\xb3\x32\x8b\xf9\xe8\x9e\x46\xf8\x83\xc3\xde\x0f\x1b\x0e\x87\xed\xb0\xbd\xde\x70\x30\x56\x1b\x5e\xc9\xd6\x6a\x1d\x92\x97\x7a\x58\x0f\x4a\x5b\x25\x82\xa4\x48\x8a\x24\xde\x6f\x02\x98\xc1\xbc\xdf\xef\xf7\x4c\xc3\x91\xe7\x77\xce\xbd\x27\xbb\x12\x0a\x7f\x41\x64\x62\xba\xaa\x32\xef\xe3\xdc\xf3\xf8\x9d\xdf\x2f\x1d\x71\x21\x1a\x41\x27\xe3\xe0\xb4\x17\x84\xa8\x81\xcd\x12\xce\xd7\x13\x8a\xd7\x2f\x1f\x65\x51\xb2\xc2\xa1\x00\x7a\x84\x7e\x42\x87\x1c\x5f\xab\x0c\x69\x75\x2c\x45\xa1\x9d\xf3\xf4\xdf\xb7\xe1\x2a\x89\xee\x95\xf7\xb9\x21\xe1\xe1\x3a\x3a\xf6\x08\x54\xf1\xf6\x54\x47\xf6\xee\xdd\x6d\x9b\xf4\xe4\x34\x11\x85\x2a\x7a\x0b\x47\x0a\x56\x4d\x04\x0a\x41\xac\xe7\xcc\x12\x9a\x9f\x59\x76\x4c\xcb\x22\x8f\x7a\x76\xce\x27\x8a\x1f\xe8\x78\xe6\xa4\x57\xb5\xa2\x04\x08\x4f\x24\x57\xb1\x29\x7b\x23\xb9\x47\x2a\x4d\x0e\x6d\xd2\x52\xfc\xe8\x5b\x3a\x95\x9f\xc1\xd7\x4d\x2d\x7b\xdd\xf4\xa5\x6a\x8b\xe3\xc5\x10\x11\x1c\xd6\x92\x0f\x87\x15\x3f\x39\x55\x16\x73\x12\x00\x54\xa8\x24\x60\x5b\xf8\x5a\x15\x30\xed\xa1\x91\x49\x7a\x28\xdf\xb0\xca\xbd\x8e\x36\x2f\x28\x95\x98\xab\x81\x8f\x95\x3f\x41\x1a\x98\x6f\x54\x49\x8d\x35\xf2\x85\xb7\x46\x69\x33\x97\xd9\x6a\xb4\x9a\x42\x89\xe2\x59\xd7\xfe\xa9\x5a\x41\x9b\xc8\xb4\xf2\xf5\xe1\xa8\x48\x87\x9c\xe5\xc0\xb7\x9e\x41\x56\x89\x6f\x5c\x43\x6b\x92\x26\xb9\x4d\x72\x3b\xeb\x57\xea\x09\xf8\x2f\xd2\x44\xe4\xdb\xbf\xd1\xf3\x07\xeb\xf1\x03\x17\xf8\x75\x4d\xbc\x82\x22\x0a\x1b\x85\xc0\x97\x86\xb4\x33\x67\x42\xd3\xb3\xc3\x28\xa4\x75\x2e\xa4\x65\x8a\x97\xeb\x84\xb2\xa1\x6b\x83\x34\x45\xa4\x5b\x3d\xb3\x83\x9e\xba\x94\xe0\x39\x0d\x1b\xb1\x26\x2e\x06\x98\x35\xc4\xf4\x28\xc0\xf0\x75\xe0\x53\xea\x83\xa8\x3f\x88\xd7\x67\x14\xc3\x35\x28\x08\xe1\xd8\xcd\x4e\x94\x4e\xfb\x94\x63\x7e\xe0\xb9\xf6\x28\x5d\xb5\x59\x01\xed\x0b\x41\xaf\x68\x54\xcb\x2e\xc5\xeb\x9a\x8f\xac\xa3\x48\xc7\xfa\x7f\x83\x36\x24\x5f\x6b\x06\x67\x9b\xf5\xa5\x59\x09\x91\xe9\x49\xc5\xee\x7e\x45\x95\x29\x37\x5c\xcf\x43\xe5\x0a\x24\xdb\x7d\x25\xe2\x12\xb9\x3f\xcc\x66\x34\xf6\xe7\xc3\x75\xb8\x66\xf0\x5d\x7e\x11\x75\x6a\x95\x7c\x17\x7a\x94\x8d\xb1\x57\x2d\x43\xbc\x8b\x51\xde\xd0\x00\x89\x8f\x89\xee\x44\xd2\xfd\x4d\xf0\x90\xc2\x24\x2b\x42\xa2\x09\x63\xa1\x49\x28\xa6\xad\xf6\xde\xbd\xed\xcc\x2e\x13\x81\xb5\x6e\x19\x03\x81\x35\x5f\x4f\x1d\xdc\x07\x9e\x6b\x67\x36\x36\x87\xb0\xb4\xdd\x27\x9e\x9f\x77\x9f\xf0\xe6\xd2\xe4\x95\xa3\x6c\x14\x0e\xe5\x37\xf5\x19\xfb\x9b\x53\xb1\xc9\xc1\xa5\xf9\x36\xa1\xc4\x5a\xad\x2f\x7d\x8d\x73\x14\x27\x69\xde\xf8\xda\xe5\x59\x81\x4e\x45\x75\x45\xd8\xbc\xe8\x89\x84\xce\x6b\x9a\x28\x61\xb1\x6d\x13\x64\xb9\xdd\xf1\x7f\x52\xc9\x80\xdd\x52\x3a\x00\x67\xa6\x82\xbc\xaf\x2e\xb4\x47\x69\x5e\x8c\xa8\x76\xef\x14\x44\xcf\xd3\xb3\xf1\xb5\xd7\x69\x8a\x12\x4a\x76\xc8\x61\x88\x8d\xf0\x81\xda\x14\x1f\x34\xf6\x72\x8d\x62\x53\x44\x49\x39\x6c\x29\xd1\xa8\x0b\x0a\xca\x72\x41\xb1\xfd\x80\xa6\x1f\x92\x17\x0e\x71\x81\xa6\x2c\xbc\xda\xb7\x31\xd2\x12\xa8\x4d\xe5\x99\x9e\xdb\x4f\x6d\x6a\x09\x57\x6c\xe4\x64\x57\xa7\xbc\x5b\xed\xdf\x28\xc9\x51\x73\xed\x56\xc0\xe4\xf2\xb5\x9a\xee\xcc\x8e\x4c\x94\x31\x80\x45\x40\xd1\xd5\x08\x6c\x20\x9d\x22\xc4\x78\x8f\x68\x33\x93\xdb\x07\xf5\x41\xa9\x08\xbb\xbe\x87\x09\xc5\xef\x5c\x09\x94\xfe\xc6\x75\xce\x96\x08\xf7\x68\xf5\xe5\xd8\x63\xff\x93\x22\xda\x3f\x1f\xe8\x8e\x64\x6f\x2e\x6d\x5e\x50\x89\x13\x91\xcb\xfb\x3a\x83\x7b\x6f\xec\x51\xff\x3f\xd3\xb5\x1b\x24\x5f\xc9\xa9\xf8\x7b\x9f\xeb\x50\x74\x02\x59\x90\x5f\xe8\xa8\xb6\xf7\xd6\xc4\xbb\x10\x5b\xa9\x8f\x07\xc7\xf4\xdf\x9a\x50\x10\x84\xbc\xcf\x96\x29\x3f\xa8\x72\x13\xb3\xf5\x44\x8a\x85\xf8\x79\xe0\x9b\xf9\xfa\x33\x3b\x7c\xd6\x84\x81\x8f\x8b\x65\xf5\xca\xd9\x66\x4f\xe3\x57\xdb\xa6\x8b\x76\x17\xc1\x55\x6d\x25\x4f\x90\xaf\xa7\xfc\xd7\x3d\x8b\xed\x81\x89\x97\x77\xd0\x2b\x4a\xf7\x43\xe5\xfb\x48\xa4\x48\x56\x03\xf0\x05\x30\x82\x8a\xcb\x54\x3d\x3b\x72\x49\xb3\xf0\x01\x5d\x3d\x6c\xdf\xc2\x01\xfe\x97\x87\xa9\x92\x23\x34\x72\xaa\xa4\x77\x5e\x51\xab\xb0\x3b\x27\xe0\xe7\xcf\x79\x02\xab\x10\xaa\x35\xf9\x80\xab\x02\x4e\x0d\xcd\x1f\x22\x0d\xa1\xd5\xfe\xb6\x29\x0a\xca\x69\xcc\xa8\x76\x8b\xa3\xaa\x45\xe6\x23\xdd\xdb\x73\x59\x55\x1f\x43\x93\x98\x5e\x64\x92\x07\x15\x39\xc8\x55\x32\xfc\x98\x7d\x24\x76\xd9\x01\x09\x14\x71\x2c\x36\x81\x77\x4d\x1c\x5c\xf8\x26\x85\xa0\x70\x53\x58\x98\x91\xbf\xd6\x15\x66\xa8\xb1\x35\x0a\x89\xdb\xa3\xfa\x20\x67\x7d\x31\xcf\x92\x02\x9e\x52\x48\x5f\x68\x2f\xcd\xef\x6f\xf9\x6a\xde\x79\x7a\x3f\xbe\x6e\x42\x76\x64\x69\xaf\x6f\xb3\xbc\x26\x18\x71\x0c\xfb\x0f\xce\xd7\x69\x0d\xa3\xb9\x39\xa5\x4c\x22\xeb\xb1\x9a\x13\x93\xac\xcf\xba\x5a\x47\xfa\xb8\xa2\x35\xbd\xaf\xb5\xf7\x6e\x8f\x55\xdd\xe5\x82\x16\x8f\xc8\x32\x9b\x57\xc6\xb3\xf5\x55\x11\x0f\x7d\x35\x50\x4a\xa2\xaf\x4e\x0b\xd1\x2f\xb4\xd3\x51\x65\x9a\x39\x41\x88\x65\x84\x7a\x2b\x5f\x3b\x44\x4e\x31\xc8\xa2\x55\xd8\x70\xd9\x26\xb4\xbc\x65\x03\xf9\x62\xcc\x8b\x69\x94\x3c\x50\x4f\x65\x54\xd3\x88\x25\x7e\x17\xc6\x85\xff\x45\x69\x6b\x73\x43\x3c\xe7\x78\x31\x4f\x92\xf0\xf5\x78\xc6\xf3\xca\x2f\x4b\xe1\xaa\x00\xb4\xee\xc4\x16\x9c\x78\xd0\x74\x51\x61\x69\xbe\x1d\x5b\x9b\xad\xcf\xf8\x94\xdf\x0f\xe9\x09\x10\xaa\x11\xaf\xdc\xc6\xe1\xa6\xac\xf5\xca\xc0\xb0\xc6\x18\xef\x66\x52\xdc\x93\x9d\xbd\xf9\x34\x5e\x9a\x6f\xaf\x19\x7f\x8c\xc1\x4b\xbc\x37\x56\x1a\x3b\xf7\x1a\x8e\xd9\x7d\x55\x40\x65\x0d\x6a\x5f\x28\xde\xf0\x06\x70\x7a\x3b\xae\x58\x7c\xa4\xa1\xf2\xbd\xbf\x3d\x4a\x89\xc9\xc6\x17\xc8\x71\xcc\xf2\xb5\xe7\xe8\x8a\x86\x65\x6c\x0a\xd9\xc9\x18\xfe\x9b\x2a\x93\xc5\xa9\x3f\x44\x36\x27\xa6\x56\xcd\xc2\x81\x76\x37\x4e\xc3\x15\xd3\xb3\xf8\x06\xe4\x92\x8f\x2b\xf6\xb7\x3b\x34\x0f\x22\x63\xf9\x50\xd4\x1e\x65\x76\xf9\x1f\xb5\xd3\x5f\xa8\x76\x3d\xfd\xf9\xbb\x9f\xef\x28\x79\x99\xd7\x02\x4a\xe8\xa2\x2a\x71\x09\x12\x86\x18\x82\x9d\x14\x7d\xa1\xe3\x7b\x7b\x47\xd1\x75\x5c\x0d\xb4\xa2\xc7\x2f\x4c\x5a\xbf\xf6\x15\x07\x80\xf2\x89\xc3\xd1\x3f\x98\x78\x31\xc5\x0b\x94\xdf\xc5\x6b\x5d\xc3\xd0\xc2\x05\x39\x12\x28\x46\xa3\xd3\xc8\xbc\x31\x09\xb2\xe2\xa6\x67\x92\x0d\xa7\x7c\xff\xe5\x83\xbc\x09\x7f\x0f\x35\x3a\xc9\xe2\x55\xab\x15\xf5\xca\x93\xe3\x99\x83\x8e\xca\xff\x2c\x6c\x38\x86\xfb\x3e\x50\x53\xe0\x87\xbd\x3d\xae\x76\x2c\x1e\x7e\x07\x6d\x7b\xd8\xbf\xeb\x94\x08\x06\xb8\x74\x83\x02\x4c\x8c\xf4\x13\x38\x3f\xb0\xcc\x19\x72\x87\xd1\xba\x3a\xd5\xa8\x51\xad\x8b\xc4\xa6\xa3\xc1\x7a\x61\x99\x6a\x86\x33\xeb\xf5\x34\xbb\x82\x2b\xa7\x65\x56\x0c\x30\xb3\x4e\x88\xd4\x65\xb9\x2f\x6a\xb5\x90\x4f\xa7\xec\xd9\xd2\x7c\xbb\x67\x87\x69\x02\xa1\xa5\xbc\x55\x43\x81\xd2\x20\x0b\x3e\xd4\x4b\xa0\xf7\x6c\x56\x99\x69\x72\x2f\x11\xe5\xc1\xa5\x64\x31\x60\x95\x40\x39\xd2\xc8\x02\x66\xa9\x9b\x66\xd6\x87\x7b\x5c\xbe\x62\x02\x56\x78\x52\x97\x14\x19\xe3\x55\x07\x8a\x2d\xca\x61\x37\xb6\x39\x19\x04\x64\xbc\x8e\xe3\x29\xf1\xb2\xac\x13\x02\x87\xe7\x8e\xa3\xe9\xcb\x0b\x93\xf4\x4c\xd6\x8b\x5e\x62\x6e\x34\x9c\xcb\xac\xcc\x26\x82\x68\x2d\xa7\x64\x75\x4e\x55\xd9\x8b\xb4\x44\x61\x60\x49\x90\xf7\x28\xce\xf1\x75\x53\x56\x9f\xb0\x90\x88\xc8\x30\x5b\x37\x03\x35\x75\x37\x9d\xfb\xdc\x8b\x4c\x3f\x49\x89\x3b\xd0\xa7\xac\x5e\x57\x09\xc8\xd7\x6b\x59\xe9\xac\xcf\x74\x6b\x38\x3a\x99\x8a\x91\x6f\x54\x48\x3b\x8a\x46\x36\x8e\x12\x0b\x35\x0e\x71\x3b\x7c\xb3\xc3\xa7\x2a\x14\xbd\xc2\x0e\xa6\x24\x21\x68\x23\xe2\xc7\x7f\xe4\x06\xbd\x0f\x84\xd8\xac\xef\xfe\xbd\x8d\x3f\x64\xa4\xcd\xd8\x7b\x47\xff\x0c\x94\x76\x38\xe9\xb7\x4d\xfc\x22\x45\x57\xfb\x43\xd5\x56\xc3\xee\xba\x8d\x93\x0e\xd1\xf1\x39\x6c\x6e\xa7\x25\xe4\xcf\x92\x6b\x0a\xcf\xf2\xd6\xd8\xf7\x59\x31\x17\x16\xeb\xa8\x91\xab\x21\x90\x78\x85\x24\xba\xe0\xb2\x0f\x4c\x1a\xba\xae\x6a\x41\xef\x04\xaa\xac\xf9\xce\x54\xc1\x64\x69\xbe\x3d\x1a\x44\x71\x34\x1a\x45\x0c\x63\x46\xda\xee\x26\x3e\xc6\x37\x6e\x32\xc9\x49\x33\x8e\x5b\x1b\xe7\xe5\x69\xc5\x29\x7b\x3a\xd8\xa5\x44\x20\x28\xc1\xc6\x3c\x38\x8e\x4f\x42\x75\x31\x34\x1d\x85\xe9\xaa\x9c\x50\x48\xfa\xbd\xab\xd8\x16\xdf\x55\x7c\x86\x43\x53\x14\x03\xbb\xd6\xf2\x30\x9a\x63\xba\x8b\xfa\x98\xdf\xca\x71\xba\x16\x0e\x4c\x86\x47\xd6\x8a\x5b\x7c\xdd\xc4\xd6\x55\x79\x87\xae\xb0\xe9\x7a\xc8\x9c\x67\xfe\xb6\x73\x40\xf2\xf5\x61\x37\x8d\x6b\xb5\xa3\x33\xde\x5f\xfe\x15\xb4\xc7\x62\x96\xef\x8c\x55\x81\x63\x9a\x22\xf6\x69\x6e\xc5\xf1\x8a\x76\x30\x4a\x27\x55\x22\xfd\xa4\x22\x60\xa0\x86\x7c\xfe\x61\x94\xfc\xdf\x1c\xfb\x3a\x13\xf8\xd6\xf8\xff\xeb\xfe\xd0\x8d\xa6\x72\xf6\x72\x94\xe5\xc5\x9c\x6f\x80\x40\x97\xa7\x02\x9a\x2f\xb8\x39\xab\x16\x21\xce\xca\xc7\x3a\xb5\xa6\xca\xcd\xef\x43\xd8\x07\x13\xc7\xb6\x2f\x13\x8a\x33\xe3\x6d\xa5\x53\xff\xb6\x72\x14\xd3\xb2\xc8\xa2\xfe\xa0\x68\x29\x33\x09\x38\x86\x10\x6c\xf9\x77\xa7\xf2\xfb\x4e\xfa\x79\x40\x6b\xae\x68\x1e\xe6\x8f\x79\xbf\x63\xdf\xdc\x0e\xbc\x74\xd3\xdb\xf4\x5e\x98\x8e\x39\x1c\xf5\x8e\x06\xd5\x1d\xe8\x68\x2c\x13\x39\x56\x9f\xa3\xbb\xa1\x99\x25\x8f\x61\x6b\xa2\xe1\xe8\xc2\xb8\xf5\xa5\xaf\x89\x67\xd2\x24\x0f\x4a\xe2\x23\xb3\x8a\x7c\x85\x41\xab\xf4\x24\x4f\x63\x91\xd4\x4e\x32\xd4\x70\xb6\x4c\x7c\xbc\x92\x94\xc3\x2e\xd1\x9d\x56\x6f\x80\xbc\xc3\x59\x95\x83\x38\x3b\x95\x0f\xda\xbd\x1b\xdb\xd5\x16\xa0\xdc\x75\x6c\xdf\xcf\xcf\x73\x6c\x04\xb9\x2c\xc0\x69\xee\x2a\x9a\xdb\x30\x8b\x86\x51\x62\x62\xf4\x43\xb0\x84\x15\x8d\x1c\xd0\x05\x77\x6b\xfe\xec\x93\x0a\xab\x55\x97\x31\x60\x47\xe2\x38\x8c\x15\xdf\x34\xfa\x02\xf9\x7a\xbc\x5a\x45\x09\x19\xd4\x2c\x99\x59\x08\x73\x2a\x34\x43\x8f\x6a\xe8\x6c\x56\xbc\x44\x2f\x85\xaa\xdb\x1d\x2c\x70\x69\x7e\xa1\x11\x94\x65\xd9\xc0\xe8\xde\x8d\xd0\x56\x03\x83\xfb\xa1\xee\xd8\xfc\xd0\x99\x0d\x22\xf9\x1b\xda\x04\x92\xa7\xf0\x2c\x6e\x93\xe7\x2a\x62\x86\xbe\x5b\xea\xa8\x02\x9d\xc6\xd6\xf4\xe6\xbc\xfb\xbe\x9d\xc2\x62\x21\x91\xa5\xa5\x0d\x07\xfd\x03\x1a\x50\x80\x32\xb6\x4d\xbc\x40\xf8\x79\x54\x14\x38\x5d\xdd\xad\x4e\xf5\x22\xaa\x3c\x91\x87\x68\x48\x81\x34\x3a\x1d\xb4\x9e\x9f\xdf\xb8\x14\x78\xa8\xc5\xd6\x89\x5a\x9c\xdf\x05\x70\x4b\xb4\x00\xc8\x15\x13\xbc\x25\xcd\x05\x7f\x0b\x8d\xd4\xc6\x29\x42\xeb\x6c\x5c\x52\x1c\xca\xb1\x65\xea\x77\xa7\x73\xe3\x7a\x88\x2e\xba\xa4\x5d\x3e\xb2\x6b\xce\x56\x71\x57\x7a\xe0\x57\xc9\xd9\xa9\xc3\xc6\x11\x99\x24\xe2\x39\x60\xc3\x9d\xd3\x0c\xca\xe7\x54\x23\x3a\x25\x0f\x77\xd2\x46\x63\xe5\xc5\x40\xe9\x91\x32\x3b\x87\xee\xf7\xa8\x69\x1f\x39\xb8\x53\xe5\xc4\xe3\x08\x9e\xc5\x28\x39\x9a\xac\xa5\x79\xaf\xf5\xb0\x47\xe4\x99\x8f\x04\x9e\x2b\xf0\xbd\x80\x7c\x65\x07\xb6\x74\x0e\xe0\xc7\xca\x37\x2d\xac\xe9\x9b\x84\xca\x48\x4e\x24\xe0\xf9\x79\x1e\xfe\xc9\x58\x0b\x06\xa8\xcd\xcd\x40\x52\x6e\x37\xd2\x9d\x59\x03\xe0\x77\xbb\x44\x6e\x5c\xf9\xf0\xb2\x75\xaa\x67\x94\x3d\xa5\x21\x38\x2f\xf5\x0c\x39\x9a\x42\x4b\x44\xbf\xa2\xd0\xf1\x5f\x67\x2b\xf9\x76\xa0\x4c\x66\x75\x86\xfd\x92\x7f\x03\xe6\xb4\x56\xf9\x01\x97\x2c\x50\x72\x4d\x9a\x99\x8b\xb4\xd3\x80\xf9\x47\x09\x05\x71\xc7\x27\x64\x3e\xd1\x31\x70\xc5\x6d\xa7\xae\x89\x4d\x12\x3a\xa0\x02\xe6\x1a\x62\xaa\x08\xc1\x91\x68\xc7\x81\xf5\x63\x75\x2c\xe4\x45\x96\x26\xa4\x8a\xbb\x34\xcf\xe6\x16\xda\x2a\x7c\x3d\xd5\x8a\xfe\x1f\xb6\x47\xd5\x5f\xef\x59\xf4\xd2\x5b\x5f\x3e\x28\xd7\x1a\x0d\x63\xb3\x15\x1b\xdb\xf5\x19\xd5\x76\x0b\xa8\x01\xa0\x6a\x2c\xb2\x2f\xda\x1b\x0d\xfd\xbd\x79\x61\xb2\x15\x95\x97\xd9\x36\xf1\x79\x99\x6d\x1d\xef\xaa\xc4\xd6\xac\xba\x37\xe7\xa0\x2f\xf0\x7e\x0b\x44\x39\x60\x09\x7e\x16\x6c\x82\xc3\x2c\xcd\xb7\x0f\x3c\xb7\x9d\xb6\x33\x52\x68\xd7\x91\xe0\x00\xe2\xe9\x2e\xf6\x36\xaa\xa0\x00\x23\xd3\x12\xfe\xdd\xbf\xdd\xf1\x29\x5a\xb0\x02\xd6\xc8\x0b\x35\xcf\x2e\xce\x4c\xae\x6d\xe0\x6b\x77\x4e\x7c\x50\x7f\x5a\x63\xeb\xe2\x72\x38\xb4\x05\x1f\x42\xf2\xef\x34\x4c\x7c\xa3\xca\x43\xa3\x2c\xca\xd3\x04\xc5\x5c\xec\xd1\xf7\xc6\x6a\xc3\xbe\x17\x28\x59\x02\x6e\xb0\x13\xba\x89\xa9\x78\x6a\xa1\xbd\x1c\x57\xbe\x41\x4e\x99\x1e\x4c\xc9\x79\x7d\xac\x9c\x57\x40\xe0\x9e\x5d\x8d\x42\x4b\x5c\xb7\xa2\x47\x78\x0a\x91\x3c\xd3\x9c\xe8\x88\xe8\xaf\x83\xd6\x53\x4f\xd5\x30\xb9\x8e\xf3\xd4\x8b\x3a\x1d\x9f\xe2\xd9\x59\x9a\x6f\xdb\x43\xa6\xdf\xd7\x48\x39\xcd\x03\x2a\xee\x4b\xa3\x16\x6b\x7f\x50\xac\xd9\xea\xbf\xb3\xaa\xa3\x02\x9f\x83\x71\x01\xc4\x0f\xf9\xc0\x13\x9a\x73\xfb\xd8\xf8\x0b\x5a\x3e\x30\x2f\xa2\xa2\x04\xf4\x15\x9e\xaa\x23\x66\xf7\x9a\xe2\x0d\xdd\x23\xfb\xdb\xa6\x97\x8e\x40\x70\x09\x77\xe4\x8a\xaa\xa6\x1d\xd5\xb4\x20\x87\x9b\x62\xdb\x9e\x1d\xd9\x44\xa0\xb9\x62\xb5\x95\xae\xe3\xb9\x29\xc8\x0d\xf9\x82\x3d\x12\x99\x89\x96\x23\x19\x30\x1c\x49\x28\x2f\xf2\xb5\x6f\x0c\xb5\xa1\x8d\x56\xed\xac\x67\xe8\xfa\x14\x1e\x17\xdc\x8e\xed\x8a\x5f\xf6\x71\xe8\x6f\x49\xde\x6b\xb3\x1f\xba\x70\xa0\x5d\x26\x99\x8d\xfd\x44\x69\x85\x55\xbe\x0e\x7e\xf1\x33\xce\xaa\xea\x08\x0e\xb3\xa8\xeb\x0e\x3a\x26\x86\x0c\x54\xa9\xf5\x75\x57\x8d\x30\x19\xab\x26\x88\x52\x9b\xc7\xf9\x7e\x5c\x13\xaa\x5c\x86\x1c\x9d\x8f\xe8\xd8\x68\x8b\x80\xa3\x84\x17\x71\x54\x14\xb1\xdd\xe9\x05\x36\x66\x08\x00\xb5\x71\x09\x56\x00\xd6\xf7\xba\xcf\x22\xec\xf9\x22\x7a\xb4\xf0\xc7\xef\x2a\xe8\x20\x9b\x74\xe4\x1a\xd8\xb6\x89\xe2\x45\xf5\x18\x74\xf6\xfd\xf7\x3f\x4f\x2b\x0f\x43\xf9\x79\x1c\x96\xd8\x02\x9f\x6a\xad\x8b\x33\x63\x3f\x4d\x45\x66\x0d\x96\x92\x80\x2d\xea\xa4\xb8\x8b\x9e\x55\x4c\xc7\xf9\x43\x9b\x30\x13\x0a\x66\xfe\x3a\xb2\x23\xf8\x53\x70\x8d\xe0\x51\x67\x26\xaa\x17\xf0\xa2\x62\xa3\xe0\x1e\x4d\x07\x2b\xf3\x1e\xe0\x65\xf2\x71\x39\x30\x08\x54\xd1\xf5\x2a\x96\x10\x0c\xd0\xe5\xcf\x4c\x7b\x0f\xd2\xa1\x5d\x86\xbf\x2e\xf6\x9f\xa1\xec\x28\x8a\xfe\x4c\x33\xad\x60\xaf\x62\x90\x8e\xd4\xe5\x73\x40\x38\x20\x0c\xaa\xdf\x52\x5d\x4a\xdf\x02\x31\xea\x26\x7c\x85\x4a\x19\x73\xd3\x14\xdf\xa8\x53\x8b\xbb\xfa\x70\xf8\x62\x20\xd0\xf4\x89\xa5\x78\x89\x4c\x3a\x02\xdb\xfb\x95\x4f\xe1\x3d\xc9\x34\xeb\x45\x89\x11\xe3\x8d\x38\xef\xb1\x89\x8f\xf9\x1e\xeb\xa8\x5f\x31\x87\xa2\x61\xf4\x12\xcb\xd6\x33\x11\x1f\x3d\xbf\x90\xf2\x3d\x52\x7b\x22\x86\x46\x38\x7c\x8c\x2f\x01\x06\xba\xb1\x29\xed\xc6\x76\x48\x14\x1e\x8e\x66\xe2\xa0\xbf\x51\x75\x7a\x24\x44\xf8\xba\xb1\xdd\x34\xb3\xae\xec\x23\xb9\x57\xce\x4b\x0b\x48\x9e\xe6\x9d\x1b\x2c\xa6\xe4\x16\x28\x38\x8a\x53\xaa\xb9\x1a\x25\x7a\x75\x55\x89\x5e\x5d\x0d\xb4\x24\x4d\x2f\x42\x38\xd0\x52\x99\x38\x06\xbd\xcb\x6b\xab\x4a\x68\x66\xc3\x15\x45\xff\x0b\x5d\x2c\xbe\x6e\x64\xfd\x27\xb6\xbc\x1a\xb4\x99\xbb\x1d\xf8\x46\x0d\x78\x98\x86\xa9\xd1\xf5\x2e\xf4\x9c\x23\x07\x76\x44\xb3\x13\x37\x9e\x5b\xae\xff\x96\x6b\x50\x2c\xf1\x4b\x4f\x28\x72\xbf\x1e\xe7\x3f\x8c\x0e\x15\xf6\xa1\xca\x83\x62\x65\x5f\x72\x42\x9d\x52\x97\xf7\x2d\x2f\x50\x5a\x18\x14\x56\xef\x8e\x15\x1f\xe9\x59\x9d\xf6\xf8\xb1\x66\xe4\x44\x76\x1f\x5e\xe3\x47\xc8\x56\x23\x7e\x39\x55\xe7\x0b\x5a\x05\x5f\x10\xe7\x3a\x60\x22\xb8\x92\x28\x14\xd2\xaa\x3a\x7e\xaf\xee\xf1\x6e\x1e\x01\x82\x49\x0c\xa3\x24\xca\x43\x61\x10\x71\xec\x5f\x9e\x09\x4c\x15\x0a\xcb\x24\x4c\x87\x43\xa6\x2b\x42\x76\xf3\x7e\xe0\xd3\x9e\xf7\x9b\xd2\x47\x1a\x03\x8c\xb1\x82\xb6\x32\x5f\x2b\xa0\x75\xbf\x4c\x12\x4e\xbc\x0a\xf6\xb1\x9a\x14\xc1\x44\x4e\xa1\xcb\x16\xda\x89\x29\xa0\xfa\xed\x08\xec\x74\x05\xc8\x47\xc9\xdd\xb4\x27\x74\xb8\x42\x31\xda\x72\x74\xfc\xd3\xec\x89\xcf\xcf\x2f\xb4\x8b\x81\x60\x32\xa5\x21\xa1\xfa\x34\x5f\x07\x9f\xd5\x97\xd6\xb3\x71\x75\xb2\xaf\xb7\xaa\xc3\xc6\xd5\x95\xfd\x03\x2a\xde\x35\x93\xe7\xe5\x70\x04\xb1\xd7\x19\x2f\xdb\x72\x4b\xcb\xb6\xdc\x9a\xda\xef\x7b\x16\x49\x6c\x2a\x73\x07\xb8\x83\x6b\xb8\x74\xef\xf9\xe9\xf4\xd3\x73\xfb\xdb\xf6\xd0\x28\xcd\xcb\xcc\x6a\x2a\x97\x8b\x8a\xca\xe5\x62\xb0\x4b\x79\x8d\x74\x26\x67\x5c\x8e\x40\xf0\xf8\x81\x22\xcf\xf8\x60\xca\x93\x7a\xba\x9d\xa7\xeb\x5d\x09\x95\x05\xd5\xe1\xb3\xdc\x8d\x32\x46\x6b\x83\x28\x66\x95\x04\x29\x81\xf9\x2e\x9a\x93\x64\xbe\x91\x1b\xbb\xa3\xc4\x1b\xf2\x32\x2a\x72\x92\xf3\x61\x26\x11\x9a\xca\x1a\x5d\x93\x50\x8c\x28\x22\x88\xeb\x6a\x4f\x4f\x3b\x72\xfb\x96\xf6\x09\x63\x9e\x2a\xc0\x9c\xd7\x1a\xf7\xe7\x15\x58\x92\xba\x36\x62\x3b\xa7\xd1\xce\xcc\x0c\x24\x85\x28\x9f\x4d\x3a\xaf\x2c\xd2\xe5\x40\xb1\x8f\xcd\x4d\x1e\xf3\x3b\xdb\x0c\x6d\x66\x72\x74\x90\x22\x5a\xbd\xa6\xea\x7d\xd7\x14\x27\x4f\x65\xb3\xb2\xc4\xc4\x88\x26\x44\xb0\x8a\x7e\x1c\xed\xa6\x1b\x81\x87\xfe\xbc\x49\xd0\x2a\xa1\xe1\xf9\x7b\x9f\x59\xdb\x4e\x72\x4b\xfd\x4e\xb1\x6e\x78\xe5\x83\x57\xea\xcc\xd3\x53\x3e\x34\x49\xcf\x14\x50\xf8\xe3\x96\x3d\xea\x06\x01\x9f\xa7\xe4\x76\x7c\x18\xb4\xc6\x12\x96\x9e\x1a\xeb\x98\x62\x70\x3b\xe6\x5b\x4d\xd3\xbc\x28\x87\x96\xea\x0f\x48\xf6\xde\x55\x6d\x03\xbf\x07\x7f\xcf\x55\x83\xb4\x8b\x35\xa5\x90\xb8\xb4\xaf\x5a\xf9\x04\x39\xef\xb5\x54\x4b\x18\xd3\xc5\x49\x52\xb8\xa9\xad\xbc\xcc\xfa\xd2\xff\xcc\xbf\xc5\x05\x4d\xe0\x76\xbe\x83\x23\x16\xe9\x43\x44\xef\xf0\xbf\x98\xb2\x17\x31\xd5\xe5\xe9\x75\xbf\xd0\x36\xdd\x74\x95\x37\xa2\x4b\xa0\xed\x91\x5c\xd1\x45\xb5\xd6\x7b\x26\x8a\xd7\xc9\x49\xc0\xf9\xf1\x32\xb2\x66\x88\xdd\x3e\x19\xfb\x56\x8c\x4f\xe8\x28\xe2\x3f\x52\xa5\xa1\xbe\xc9\xd3\x58\xca\x19\xcc\x47\x3c\x56\x1c\x3d\xc7\xa6\xde\xfc\x85\x17\xda\x5d\xbb\x9c\x66\x96\xd2\x06\x7c\x06\x05\x4e\x5d\xe7\x9b\xa7\xc6\x4f\xd6\xa3\xf2\xca\xb8\x7c\xe9\x6b\xad\x9a\x4b\xdc\x72\x1c\xf8\x67\x02\x81\xbb\x0f\xac\xc9\x8a\x6a\x05\x44\x49\x9f\x97\x19\xf7\xdd\xd1\x66\xf1\x34\x5a\xbf\xa4\x58\xf2\x87\x23\x93\x50\x4f\x6d\x75\x20\xa2\xb6\x0a\x60\x0f\x5f\x37\x10\x3c\xee\x6b\x77\xcb\x08\xcc\x44\x98\x2e\x64\x33\x8f\x04\x2a\xb5\x79\xa4\xc1\x8f\x6a\x47\x09\x9a\xe5\xe0\x4e\x08\x7f\x4b\xcb\xb1\x80\xfc\xa9\x6e\x47\xbd\x32\xf6\x9b\x37\x21\xcf\x29\x26\xc5\x5b\x31\x06\xd5\xeb\xb9\xcc\xb2\x2a\x50\x3f\xaa\xf2\x4c\x04\x05\xa1\xa7\xc2\x39\x7e\x58\x71\x48\x1e\x6e\x7a\xc2\xdc\x8e\x4c\x26\x4c\xfe\xc2\x1a\xef\x53\x93\x67\x55\x49\x28\x8c\xa3\x61\x17\xb4\xd0\xcf\xd6\xd4\xa7\xa5\x69\xd5\x07\x0f\x2d\x04\x40\x48\xd1\xdd\x98\xc2\x3d\xbc\xf0\x42\x7b\xc5\xae\x3b\xc2\x07\xa7\xfb\xe5\x35\xc0\x1c\x9c\x6e\xcd\x9a\x8c\x3b\xc5\x90\xf1\xbd\x11\x28\x3b\x8d\x6d\x8b\xb0\xf8\x67\xaa\xf5\xc7\x14\x05\xf1\xc0\x30\x3d\x1f\xce\x8b\x13\x68\x94\x11\x54\x0e\x15\xfc\xf9\x06\x85\x79\x66\xd9\x0f\x3c\xb8\xf8\x23\x5d\xcc\x3c\x31\x65\xae\x16\x0e\xb4\x87\xb6\xc8\xb8\xf6\x2a\x28\x73\xfa\x08\xdf\x4c\xbd\xfa\xee\xdd\x6d\x93\x85\xa6\x27\x4d\xdd\xc2\xc9\x49\x6f\x28\x8c\x9e\x4e\x93\xdb\xda\x15\x9b\xf4\xf8\xfd\xf1\xac\x1f\x68\xb1\x06\xac\x25\x99\x2a\x45\xc0\x6c\x88\x22\x7d\xbf\x23\x38\xa8\xc6\x0c\xcb\xef\xb1\x8e\x57\x7b\x06\xa2\x13\x69\xac\x2b\x75\x64\x8f\x8f\x79\x5a\x53\x5d\x58\x7b\x16\xdb\xf9\xc8\x86\x11\x7b\x60\xf8\xf9\x93\x6a\xd5\x9c\x6c\x10\x61\x6e\xe7\xe5\xc8\x66\xab\x51\x9e\x82\xb3\x0f\xa1\xf8\x8f\x74\x5c\xfe\x23\xb0\xbd\xf0\x3b\x74\x9f\xe1\xcd\x86\x2a\x29\xfb\xb9\x7c\xe3\x12\x19\x20\xe7\x12\x2c\x96\x43\x60\x54\xef\x8e\xf5\x32\xd3\x51\xd8\xe1\x3b\x0e\x2a\x56\xb3\x04\xbe\x6d\x88\x55\x41\x45\x5b\xd1\x47\x57\xb9\x35\x79\x9a\xe4\x74\x7e\xa0\x5a\x71\x13\x55\x00\x09\xff\x3d\x0e\xe6\x7d\xb2\xbc\x02\xbf\xf2\x12\x1d\x03\x9b\x75\xa3\x30\xea\x59\x86\xc7\x63\x6e\xde\x56\xac\xc6\x6f\x8f\x95\xfc\x40\x9a\xf4\x84\x0e\xcd\xbb\xc3\xb3\x1d\xef\x26\xcf\x3a\x26\xa7\x2c\x0d\x57\x90\x37\xdc\xbb\xd7\x15\x94\x94\x3c\xcf\x09\x25\x9b\x18\x25\xab\x36\x2f\xd2\xec\xa1\x6a\xba\x37\x2e\xd1\x62\x57\xee\x86\x70\x2a\x9d\xe6\xde\x76\xfe\x27\x9a\x5c\x01\xb4\x72\x8a\xa4\xf2\x47\x85\xcc\xc8\x7b\xe2\xd7\x02\x45\x33\xf1\x66\x43\x53\xdd\xb3\xed\x1e\xd1\xe5\xf3\xe3\x8a\xe4\x99\xd6\x3f\x1b\x6f\x77\x2b\x39\x9e\xa1\x53\xc0\x91\xca\x38\xd4\xc1\x3d\xb2\x03\x9f\xd5\x64\x55\x05\x09\x83\xc8\x82\x9f\x04\xa9\xba\xfb\x81\xca\xe1\xdd\x77\x29\xa0\x30\x1d\xd8\x44\xec\x3a\x56\xff\x86\x06\x86\x6e\xa8\x6d\x15\x15\xf9\xa3\xf4\x9c\x00\xb2\x3f\x42\x79\x5c\x49\x0a\xaa\x80\xe9\xe9\x8e\x52\xf2\xaa\x4c\xb8\x3c\x26\xad\x34\x94\xae\xff\x7e\x87\x5e\x4c\xd1\x64\x4b\xdb\xe3\x1d\x4d\xc4\x4c\x08\x52\x91\xaa\x54\xd4\xed\x8f\x4e\xaa\xd7\x87\xc1\xb8\x3b\xf6\xab\xf2\xa2\xef\x80\x58\xfb\xb9\x89\xe2\x30\xbb\x5f\x1d\xb2\x1c\x71\x2d\x9b\x61\x14\x47\xbe\x71\x97\x39\x41\xf0\xda\x42\x10\xe2\x0b\x30\x09\xc9\xd5\xa1\xed\x08\x09\x96\x23\x8a\x42\x9c\x5d\x3a\xe9\xf0\xa9\x1e\x8b\xff\x48\x95\xed\xd2\x35\xcb\x21\x09\xf2\xe1\x27\x75\x41\xf9\xa4\xa2\x26\x4a\xac\xc9\xe2\xf5\x1d\xbe\xf1\xeb\x9f\x69\x34\xe3\x39\x74\xbe\x63\xa5\x4d\xe8\x21\xf0\x5b\x5b\x3b\x9e\xc2\x9d\x01\x3c\x40\x0f\xdd\xa5\x07\x92\x0c\x46\x35\x5f\x88\xf8\x1f\xec\x28\x3a\x60\xae\xee\x09\xad\x9c\x87\xe6\xcc\x4d\x36\x2f\xac\xbd\x7b\xdb\x79\x61\x59\x8f\x43\x98\x3b\x6a\xfd\x41\x0d\x3d\xab\x79\x61\x3c\x31\x90\x6b\xd2\x75\x4b\xf9\x9a\x3a\x64\xf3\x6f\x94\xd6\xbe\x64\xe1\xb5\x73\x84\x4f\xef\x29\xd1\xbe\x37\x49\x10\xa9\xee\x11\xe9\x12\x60\xc5\xa0\x4e\x47\x8c\x8d\x62\x2a\x12\x06\xa7\x82\xed\xfc\x50\xed\x2f\x7d\x6d\x47\x15\x0c\xd7\x8a\x77\x30\x12\x37\x54\xa7\xdf\x07\xe4\x36\x48\x75\x52\x9d\x3e\x77\x03\x2f\xaa\x05\x79\x59\x04\x08\xaf\x6e\x26\xec\x50\xf5\xc1\x5a\x7d\x51\x97\x14\x77\xf8\x00\xe4\x99\x19\x8f\xe4\x42\x39\x54\x98\x8e\xe8\xe3\x30\x33\xef\xa9\x1c\x6f\x98\x96\x59\x61\xf3\x75\xdd\xd3\x40\xcf\x20\xfd\x0d\x5e\xa0\x3b\x27\xa2\x58\x36\xf3\xf0\x2f\xee\xe2\x41\xf8\x46\x65\x96\x06\x66\x35\x0d\xe1\xad\x49\xb2\xdd\x7b\x28\xe7\xc7\x4a\xfc\xe4\x5e\x63\x2b\x53\x5c\xf6\xfb\x51\x3e\xd0\xfe\x40\xe0\xa1\xed\xc7\x55\x93\xd8\x28\x25\x9e\x66\x13\x3f\xe8\xe1\xb0\xc8\x61\x2a\x93\x20\x02\xbc\x47\x15\xc9\xf7\xad\xc0\xb3\x93\x7d\x12\x28\x30\x17\xf7\x23\x0a\x1a\xaa\x9a\x66\xe9\xd5\x14\x6f\xaa\x67\x92\x10\x70\x05\xc4\x72\xa7\xc6\x5e\x35\xec\x22\xb2\xb7\x5c\xb7\xa9\xa5\x5a\x8b\x41\xbe\xad\x7a\x4a\x14\x70\x77\x76\x3c\x10\x9b\xc9\x59\x84\xd1\xc3\x43\x69\xb8\x9b\x51\x7a\xf2\xaa\xb3\x42\xb2\x5a\x9b\xb7\xd4\xd3\xed\xae\xed\xb3\x26\xde\xd7\xb5\xa2\xf7\x7e\xa7\xe8\xdd\xb0\xa7\x4c\xb2\x3e\x4c\x33\x3b\xe3\xfb\xf4\x6e\x29\x24\xcf\x4d\x4d\x74\xf5\x7f\x4c\x9d\x42\x2f\xbc\xd0\x0e\xd3\xd1\x3a\x01\x62\x66\x5a\x5f\x5d\xa8\xc9\xd0\x8a\x6f\xa4\xac\xe1\x1d\xd5\x2e\xe5\xe0\x1b\xc0\xc6\x61\xf0\x78\x41\xc1\x63\x02\x74\x52\x8e\xde\xd6\x66\x22\x22\x39\xa0\x1f\x12\x3c\x62\x3a\xd3\x3a\xf0\x1c\x87\xf6\x9f\xd2\xe2\xc7\xec\xde\xd3\xda\x76\xdf\x57\x24\x87\xdd\xd4\x64\xbd\x2c\x4d\x87\x34\x95\xd8\xfb\x80\x4f\xc2\xd3\x67\x28\x1c\xb6\xd3\x51\x95\x65\x60\x79\xb9\x59\xdf\xb8\xc1\x39\x86\x26\x65\x08\xcf\xdd\x78\x4e\xc5\x8f\x61\x1a\xa7\x09\xc2\x5e\x0c\xf5\xcb\x63\x1f\x53\xbf\xac\x92\x0a\x03\xaa\xc1\x59\x90\xe9\xb9\x1d\xea\x88\x73\x2f\x78\xa0\x43\x94\xac\x10\x79\xdc\xde\xbd\x1e\xb1\x50\xad\x2a\xb4\xaa\xdd\xa5\x49\x41\x35\x60\xb6\xa3\x1b\x68\xba\x82\x36\xf5\xb4\xcb\x2d\x45\xc7\x2c\x8b\x9e\x6a\x88\x73\x0a\x8d\x04\x3a\x4c\x29\x53\x29\xb4\xf5\x13\xe4\x5d\x21\x1a\xbb\xa6\x59\xa3\x3c\x65\xd5\xd0\x94\x99\xb5\x48\x49\x89\x4a\xaa\x72\xf8\xcf\xab\x01\x08\x07\x51\xb8\x52\xf9\x16\xd5\xaf\xb1\x02\x62\xe0\xab\xf0\xf7\x94\x63\xf1\x2b\xbf\xfc\xcb\x73\xd5\x16\x81\x2b\xfe\x10\xfa\xfb\x2b\x17\xcb\xf1\x16\x9c\xa2\x57\x43\x40\xc5\x6d\xa1\x30\xd5\x67\x1b\x59\x0c\xc3\x34\x7f\x86\x7d\x62\xd8\x2e\xb0\x53\xa9\xd2\xee\x3e\x17\xee\x34\x6c\xae\xa1\x29\x0a\xc7\xc3\xcb\x31\xa7\x3e\xe5\x4e\x4c\xed\xa8\x3d\x8b\xed\xac\x72\xeb\x12\x01\x24\x8a\x12\x9c\x22\x4e\xf8\x63\xc5\xd7\x1e\x71\x5a\x4f\xad\xc2\x7d\x6e\xb5\x29\x58\x96\xed\x9b\x82\xc8\x2c\xab\xaf\x11\x2e\x55\xdf\x5a\xa9\x99\xc9\x11\xe5\x60\x1e\xa8\xac\x25\x93\x32\xd3\xa9\xe5\xbb\xf3\x32\x06\x6c\x52\x71\x8b\x79\x68\xa6\xe6\x7b\x0e\xd3\xa4\x57\x32\xd5\xc5\x3e\xc7\xb8\xda\x72\x4c\x2a\xe7\x15\x98\x66\x60\xb3\x34\x61\x37\x12\x08\xb8\xd9\x8e\xc2\xa0\xce\x4e\xfc\x6c\x7f\xe9\x1f\x2f\xcd\xf8\xe2\x05\xb4\x3c\x95\x17\x29\x2d\x32\xd7\xa7\xe2\xf5\xbd\x7b\xdb\x26\x2e\xa2\xa2\xec\x01\xdf\xd3\x94\xec\xf0\x39\x84\x51\x16\x0d\x4d\xb6\xae\x65\x03\x2e\xaa\x56\x5f\x8f\xc6\x5e\x8d\xb2\x32\xb6\x09\x83\x86\xb0\xfc\xff\x0c\xd3\xcd\x37\x4d\xe8\xc3\xea\x64\x35\xdd\x98\xd1\xd0\x48\x34\xdd\xae\xbb\xf1\xaa\x05\xe4\xb8\x2b\xe2\xc6\x51\x5e\x10\xd9\xaa\x30\x7e\x78\x78\xc6\x0d\x85\x1f\x7c\x12\xb8\x7f\xf8\x64\xac\x8f\x22\x1b\x6e\x9a\xf6\x66\xbf\x44\xa4\x11\x08\x0f\xf7\x79\x49\x77\x57\x15\x3c\xae\x66\x36\x0f\x4d\x16\xda\x78\x9d\x9c\xda\x8d\x1b\x48\x06\x48\x56\x56\xa7\x98\xab\x45\x82\x5c\xe2\x61\xb5\x2c\x47\x59\xba\x5a\x05\x72\xdb\xc8\x87\xc7\x46\xe2\xe6\x02\xc7\x45\xed\xbe\xe4\x41\xac\x03\x2c\x99\xf7\xc6\x5a\x72\x09\xd4\x8a\x12\x44\x4d\xc7\x4a\x0b\xed\x32\xe9\xd9\x2c\x2c\x8b\x5a\xdd\x20\x50\x75\x83\x9a\x4f\x14\x97\xc3\x6e\x64\xd0\x73\x85\xe1\xbd\x12\x78\x96\x2b\x00\x58\x61\xf7\x3e\xc0\xd3\x8a\xcc\x26\x0d\x99\xf4\x7e\xb4\x5c\x13\xef\x15\xf2\x85\x19\x39\x4d\x15\x28\x41\x51\x6f\x2e\xee\xee\xdd\xbb\xdf\x13\xf1\x71\x2e\x0e\x29\xce\x9f\x28\x30\xf0\x4f\xa6\xf0\x82\x7b\xf7\xb6\xbb\x86\x1b\xe5\x45\xf3\xbd\xe5\x34\xdc\x8e\x05\xfa\xed\x58\xbc\x4f\xd5\x49\xe9\xab\x25\x15\xe5\xec\x7d\xd9\x8d\xed\xac\x3a\x8f\x91\x2e\xc3\x9f\x3d\xe6\x31\x51\x8f\x3f\x39\x69\x7d\xf9\x20\x17\x34\xef\x2a\xd1\xd0\x78\xd5\x3e\xe4\x78\x13\x87\x8f\x51\x05\x9a\xe5\xbe\x94\xe9\x79\x78\xf2\xd9\xd4\x0b\xae\xd3\x9f\x9d\x2a\x10\x9e\x6c\xef\x68\xc5\xd5\xb1\x52\xf0\x38\xdb\xc0\x93\xf4\xf5\x76\x99\x50\xeb\x74\x4b\xd1\x56\x61\x5d\x89\x48\xcf\x93\x8a\x30\x52\x92\x2b\x12\xca\x3a\x1a\x7e\xc5\xc9\xdf\x20\x56\xf6\x6c\xdb\x78\x31\x16\x60\xf1\x89\x22\x5c\x28\x30\x1f\x99\xf8\x2a\xad\x89\xe3\x34\x34\x0e\x72\x2e\xa9\xab\x96\xd2\xa2\x91\x18\xd3\x94\xc5\x20\xcd\x9c\x2a\x91\xa3\x1f\x3f\x41\x7f\x2d\x0b\x4d\x0d\x79\xc4\x22\x8b\xd8\x6b\x00\x8a\xf1\xf5\x44\x83\xca\xc2\x74\x18\x25\xfd\x6d\x5e\x9b\xe3\x2f\x6b\xfe\x35\xa5\x64\xb0\x05\xaf\xe8\x1e\x99\x2d\x13\xbd\x52\x54\x26\x49\xe9\x37\x97\x59\x9f\x2b\x47\x70\x1b\xff\x88\x96\x0d\x0a\x9d\xe8\xc9\x85\x6b\x7d\xcd\xab\x0c\x0f\xd2\xb5\x1d\xd5\x4a\xc1\xfc\xee\xe8\x78\x24\x18\x03\x23\x00\x1d\x43\xdd\x05\xe6\xe5\xb6\xa6\x10\xe1\xfe\x0b\x18\x80\xcb\x63\x75\x5e\xdc\x22\x57\x09\x09\xa5\x6d\x08\x4f\xc5\x65\xa7\x15\x85\x44\xc3\xa3\x1d\xcf\x12\x7c\x71\x0a\x16\x74\xe0\xb9\x76\x99\x8c\x32\x1b\xda\x9e\x4d\x24\x3d\x84\x85\xfc\x21\xb2\x34\x7c\xa3\x0a\xa6\x83\xc8\xed\x31\xfc\xf8\xeb\x8a\xdc\xed\xf5\xe6\xe0\xd6\x0e\x5d\x8a\x1b\xe5\xcf\xc3\x63\x8f\x35\xa8\x89\xa2\xdc\x54\xfd\x0b\xd4\xbb\x90\x99\x75\xf6\x32\x70\x02\xfc\x56\xe0\x4f\x83\xdf\xaa\xc5\x20\xc6\xc6\xdb\x7d\x8d\xf7\x06\x26\x57\xe9\xf4\x48\x7a\xea\x9e\x72\xbe\xdf\xa7\xec\x89\xa8\xab\xf8\xf0\xf6\x6a\xa0\xa8\xd9\xef\x05\xad\xdd\xbb\xe5\x1f\xc8\xde\xe1\x59\xb7\x77\x54\x00\xd0\x9a\x3c\xaa\x78\x6f\x8b\xd8\xe6\xa4\x19\x87\xb3\xed\x2d\x64\x25\xf8\x46\xad\xea\x15\x5b\x3c\xec\xb1\xdc\x80\x60\xe2\x69\x7e\x81\xd8\x40\x6a\x1c\xee\x8c\x8e\xa7\xe8\x0e\xb3\x7b\x44\x53\x61\xcf\x10\xd2\x59\xfa\x14\x34\xd1\xfc\xf7\x31\xc2\x4e\xb8\xea\xcb\x07\x9d\x33\xa0\xca\x49\x17\x14\x50\x96\x8f\x53\x34\x7a\xb5\x6a\x72\x59\xbd\xec\x19\x64\x9b\xc5\x96\xd1\xb3\x21\xc4\x38\x8c\x1f\x92\xea\xa7\xe3\x52\x2c\x93\xde\x8e\xea\xa9\x39\x56\xa2\x05\xbe\x71\x69\xac\x14\x6d\x3f\x1d\xab\xee\x65\x85\xda\x7a\x64\xe2\xa2\xa3\xff\xe4\xff\x8f\x86\x01\x64\x6d\x99\x8d\xc7\x6d\xd8\xea\x21\x70\xcc\xa2\x23\x52\x44\x75\xd5\x4e\xde\xde\x51\x9a\xdb\xe6\x90\x27\xfe\xc2\x23\xc0\x02\x88\x02\x0d\x7d\x0e\x5f\x32\x33\xd5\x62\xfe\xfc\x7c\x75\xc0\x7b\x09\x1b\x3c\x12\x43\xc8\xf8\x66\x1a\x3a\xb0\xbb\x3d\x4a\xb3\x95\x4d\x52\xb1\x9e\xd6\xfc\x33\xeb\xfb\x43\x13\x9b\xf5\x3c\x32\xad\xd6\xaf\x7d\xc5\x2b\x91\x7b\xe7\xeb\x4c\x03\xa4\x7f\x5f\xdb\x86\x69\x92\x0e\xa3\x30\x6f\x29\x5f\xfe\x1a\x57\x13\xc5\x21\xf1\x38\x93\x24\x3a\x94\x26\x73\xaa\x5c\x05\x0d\x0b\xac\x99\xa3\xe3\x3a\x51\x94\x63\x8f\xc3\x62\xe4\x3f\x6a\x12\xa6\x5f\x35\x71\x29\x95\x8c\x26\x18\x53\x93\x22\x61\x6f\xb5\x3a\x44\xe4\x53\xc2\x0b\x56\x7d\x4a\x68\xc1\xa6\x35\xa7\x17\xdb\x6b\xb6\x97\xd8\xbc\xe7\xcc\x05\x16\xf2\x75\xdd\x99\x70\xdd\x05\x69\xb6\xb7\x06\x72\x53\x2f\xaa\x37\x8b\x8a\x14\xdf\x74\x9a\x0e\xc2\x81\x35\x59\x8f\xf2\x09\x70\x1b\x98\x2f\xd2\xa5\xd3\x16\x17\x9d\x0a\x49\x43\x56\x30\xb3\xc3\x28\x9c\xd1\x54\x0b\x27\xd5\x48\x72\x80\x03\xe3\x75\x47\xa1\xb6\xf2\x92\xd8\xf4\x28\x48\x46\x79\xf3\x1a\xf9\x59\x7c\xdd\x14\x67\x25\x51\x68\x32\xd3\x2f\x01\x85\x14\x1e\x28\xb5\x13\x3e\x50\x34\x13\xf9\xc8\x9a\x15\x86\x77\x4b\x02\x46\x41\x8c\x9c\xd3\x34\x4a\xd3\x38\xd7\xf5\xe3\x7a\xaf\x81\x72\x02\x46\x23\x93\x51\x59\x9f\x01\x43\x82\x85\xa4\xc1\x72\xf8\x04\x8f\x55\xd0\xdc\x2d\xef\x2a\xbd\xa9\xe5\x32\x8e\x67\x94\xee\x01\x48\xcd\x91\x9d\xbd\xac\xd8\x73\x0e\x37\x2a\x00\x52\x3b\x26\x85\x70\xe2\x0c\xd1\xee\x94\x33\xc7\x0b\xa0\xf4\x1c\x52\x08\xeb\xfb\x1d\xa5\x20\x32\xad\x8b\xb8\xb8\x08\xc6\x75\xd2\xcb\xd2\x1c\x33\x7c\xad\x19\xe6\x49\xca\xb7\xa5\xd4\x7b\xd5\xa6\x7d\x3f\xd8\xee\xe2\xb0\xff\xe0\x0b\x4a\x41\xb8\x35\x99\xd9\xff\xeb\x5f\x95\x90\x02\x00\x3d\x11\x50\xac\xe6\x1d\x36\xf2\x3a\x9c\x04\x1c\x44\xbf\x43\xfe\x24\x85\xfe\x76\x17\x75\x01\x6f\xe0\x90\x43\x34\x7f\x3f\x50\x2c\xc6\xf7\x94\xa2\xfa\xad\xa0\xf5\x9f\x8b\x0e\xe5\x6f\x2b\xad\x08\xa6\x6d\x86\xcb\x74\x1d\x4f\x8d\x61\xbf\x4e\x58\x7e\x29\x27\x2a\x1e\x86\x5b\x81\xa2\xa2\xf8\x5d\x5a\x40\x38\xd3\x8e\x02\x10\x03\x90\xd9\x1d\xd5\xd9\x71\x9a\x88\x8e\x91\x56\xb9\x83\x4a\x19\xf7\x3a\x33\x85\x32\x86\xe3\x92\xaa\x8f\x65\x36\x2f\xb2\xc8\x8b\xa1\x3b\xde\x42\xcf\x25\x75\x56\x25\xe8\xfe\x6f\x85\x02\x79\xb1\xda\x0e\xd9\x4e\xad\x29\x83\xe3\x07\xbd\xb8\x73\x38\xca\xb9\x0b\x3b\xd0\x94\x48\x34\x35\x8e\xc0\xde\xc9\x2d\x73\x33\x1a\x32\x35\x97\x14\x4c\xe9\xdb\xc8\xb8\x62\x54\xaf\x92\x7f\x21\x0c\xbd\x78\x2f\x11\xf5\xf2\x95\xd1\x0f\x54\x4c\x1e\x5b\xd3\xb3\x59\xbe\x93\xbe\x04\x2d\x16\xcc\x5e\xc6\x37\x74\x50\x62\x75\x9e\x54\xd4\x54\x57\x35\x4d\xe4\x4f\x74\x8f\x02\xa8\xd3\x90\x38\xda\xca\xc4\x90\x70\xdd\xef\x63\xe4\xe0\x96\x1c\x51\xcd\x68\x0f\xe1\x70\xc5\xf2\xa9\xe1\x87\x9a\xc1\xa0\xe0\x3b\xb7\x2d\x4d\xe2\x40\xcf\x26\x84\x0e\x3e\x3b\x58\x8e\x72\x5b\x90\x6b\x84\x01\x3e\x3d\xf6\x24\xc4\xa7\x15\x7a\x8e\x72\x83\x4c\x83\x05\x1b\xf3\xca\xd8\xa7\x11\x5e\x51\xc1\x58\x66\xed\xc3\xf4\xee\x72\x3a\x28\xc6\xa6\xbb\x9a\x3e\xe2\x91\x89\xca\x96\x5e\xa3\x71\x44\x09\xe8\x66\x4d\x3f\xfa\x9e\x3a\x94\x41\xa2\x85\x76\xa7\xf7\x02\xcf\xdb\x7f\x1e\xdb\x0f\x5b\x19\xfd\x23\x94\x61\xff\x83\x5d\xe4\xb6\xe1\xff\x3f\xae\x95\x94\x76\x74\x1e\x73\xf5\xc4\x32\x29\xb2\x48\xe8\x8b\x05\xbe\x42\xcf\x26\x18\x52\x5d\xac\xbe\xde\xc4\xaa\x6b\xb2\x2c\x5a\x15\x0d\x1b\x61\x12\xf0\xc0\xf7\xb3\x53\xce\xc4\x9e\xc5\xf6\xd0\x24\xe5\xb2\x09\x8b\x32\x93\x3e\x6b\x91\xeb\x52\x14\x2c\x1f\x60\x4d\x48\x6b\xb8\x2f\xfe\x9d\x73\xd9\x20\xc7\x5e\x37\xa3\xfa\xb3\xcf\x6b\x2a\xd1\x9b\x81\xd2\xc5\x3c\xa2\x1a\x58\x4c\x37\x8d\x23\xf8\x5d\xae\x2b\xef\x35\x7c\x52\xd1\x04\x89\x0a\xde\x89\x29\x25\x9e\xa5\xf9\x76\xba\x96\x6c\xa3\xbf\x11\x2e\x26\x87\xf6\xf8\xe5\xc7\x48\x96\x47\xb9\x84\x22\x28\xc0\xd0\x05\x6e\x2b\x0f\x3c\x24\x73\x76\xe2\x7b\xee\xd6\x9e\x79\x51\x00\x05\xc2\xff\xa4\x28\xae\x2f\x29\x63\x12\x66\x51\x1e\x31\x4d\x22\x0c\x00\xb7\xf5\x88\x40\x95\x3a\xe9\x8e\xa0\x82\xc6\x7f\xa6\x9a\x3c\x97\xd3\xb4\xc8\x0b\x3b\xca\x5b\xa8\xa3\xc3\x10\xbd\x0a\x4a\x3d\xbe\x51\xb4\x8a\xe9\x68\x94\xe6\x51\x01\xaa\x15\x91\x91\xf6\xe0\xfe\x63\x53\x3c\x88\x95\xc7\x61\xa2\xe4\xb3\x5b\xd1\xfd\x0e\xda\x6f\xd1\xe7\x01\xab\xf2\x18\xdb\x08\x6d\x50\xdd\x30\x7a\x67\x6a\xeb\xe4\x09\x95\x06\x1d\x0e\xcb\x24\xca\x0b\x20\x11\x10\x36\xb1\xf0\x3b\xdf\x4c\x81\xfd\x77\xef\x86\x00\x4f\x4e\x45\x00\x76\xa4\xb1\x22\x8e\x8f\x3d\x00\xea\xb8\xb2\x09\xc3\x32\x0f\x63\xe4\x20\xe1\xb2\x1f\x55\x5c\xd7\x47\xbd\x48\x63\x1a\xaf\xa3\x99\x55\xa5\x7e\x6b\x19\xb1\x06\x41\xfc\x7c\x60\x32\x0e\x80\xb1\x61\xaf\x8c\x15\x75\xc0\x95\x46\x01\x41\xe2\x3e\x5a\xa9\x27\x5a\x3d\xc2\xcc\x81\x74\x46\x19\xc1\x27\xd9\x79\x12\xa6\x0b\x5f\x8a\xba\x58\x93\x5b\x58\x2e\x29\x10\x57\x02\x7a\x5a\x58\xef\x31\x95\xed\x1a\x45\x24\x99\xa6\x68\xd6\xb4\xe3\x42\x53\x85\x7a\xdc\xd5\xe0\x09\x05\xb3\x1d\x99\x8c\x80\xf4\x8f\x68\x57\xf4\xdb\x34\x3e\x68\x67\x39\x39\x56\x1a\x3e\x6f\x63\xd1\x48\x8e\x96\x8c\x83\xab\x26\x56\x2b\x1b\xd9\xb1\xd3\xf4\xe6\x2c\x98\x43\x5b\x12\x87\x0f\x5b\x02\x16\x28\x55\x4e\xfc\x61\x1c\xf9\x22\xb1\x43\xfb\x53\x34\xce\xaa\x17\x96\xc6\x6e\xa5\x86\x77\xbf\x49\x16\x74\xc5\xda\x64\xc6\x97\xbf\x99\x6d\xc3\x31\x5f\xb9\x2c\xc5\x19\x57\x4d\x5b\x7b\x06\x8d\x25\xdc\x39\x49\x7c\x96\xae\x05\xcc\x39\x98\xd7\x03\xa5\x92\x72\xd1\x25\x74\x92\x34\xe7\x14\x10\x9e\xfc\x8c\xc2\xb7\x21\xf0\x94\x26\xcc\x26\x8a\xde\x72\x94\x26\x2d\xef\x02\x41\x49\x83\xaf\x55\xe2\xc3\x26\xfd\x28\xb1\x16\xb0\x36\x81\x67\xa0\xe9\xdb\x41\x6f\xab\x87\x13\x81\xc1\x1a\x7f\x47\x3a\xda\x41\x9f\x42\xec\x7a\x7b\xac\x60\xfd\xc7\xf0\x4e\xf8\x8e\x19\x32\x96\x42\x5b\x43\xde\x9b\x74\xb2\xfb\x33\xef\x4f\xe9\x09\x61\x8d\x8e\x91\x2f\x83\xd7\xbe\xa5\x9a\xec\x66\x26\x1e\xe9\xf0\x7d\x4a\x2e\xc0\xd8\x6d\xd4\xfa\x8d\x4c\x62\xb7\xb7\xbe\xba\xe0\xd8\x63\x55\x96\x12\x2f\x83\x94\xce\x9b\x98\x3f\xbe\xa9\xdc\xaa\x8d\x4b\x81\x8a\x01\x3e\xe5\xa3\xda\x11\x8e\x2c\x7a\x29\x2b\x9f\x55\x70\x84\x24\x2a\x9a\x18\x98\x55\xfb\x39\xcf\xb6\x76\x03\xeb\x0f\x75\xe9\x6f\x8f\x15\x27\xdb\xa7\x75\x1c\x59\x35\x00\xf4\x0b\xff\xe3\x13\x13\xd5\x22\x75\x4c\x05\x20\xcc\xa7\x85\x53\xff\x16\xf9\xb5\xf0\x31\x41\xe9\x8a\x5d\xfe\x07\xf0\x0b\x95\xda\xdf\x92\xa3\xe3\xaa\x96\x04\xc0\x9a\x0f\x40\xa5\xc3\xad\xfe\x6a\x30\x08\x61\xf5\x72\xbb\x43\x27\x83\xe0\x69\x75\xbf\x60\xeb\xd7\xbe\xc2\x58\xa4\x13\x14\xb4\x3b\x6d\x6b\xb7\x9a\x99\xfc\x0f\xf6\x6f\x6b\x67\x97\x2e\x60\x31\xd1\x70\x35\x34\x0e\xa1\xbf\xc7\x23\xf4\xa7\x03\xa0\xfd\xed\x2c\x35\x43\x38\x7b\x42\x56\x43\x03\xf0\x59\x6c\x35\x0b\x07\xda\xf6\x50\x28\x60\x4e\xec\x35\x24\x70\xf9\xba\x09\x44\x13\x9b\x82\xa3\x52\x5e\xe6\x64\x3c\x64\xc9\x37\xb5\xf0\x2c\x97\x90\x26\x77\x38\x13\xf0\xb0\xf3\x75\xe3\x8b\x54\x3f\x32\x47\x0b\xc1\x71\x31\xba\x71\xfd\x36\x45\x55\x42\x63\xe0\xdd\xa5\x9d\x1d\x25\x2b\x3f\xdd\x2c\x41\x7d\xc9\xd6\xf4\x22\xae\x71\x60\x25\xbc\x16\x78\xc0\xc7\x6b\x2a\xed\xd2\x4d\xd3\x95\x7c\x9b\xaf\xc0\xcc\x92\x0e\x07\xd0\x8e\xb7\xc8\x34\x71\xe1\x0b\x16\x52\xcb\x04\x3a\xaf\xcf\x91\x2f\xde\x52\x08\x00\x9b\x17\xa6\x1b\x47\xf9\x60\x1b\x2d\x1b\x64\xbc\xb7\x28\x11\xfc\x3f\x61\xfc\x9e\x94\x01\xfc\xa9\xfa\x0e\xf6\xa0\xab\x8f\xed\x5e\x70\xc4\xa4\x9f\xc5\x28\x30\xb0\x59\xf1\xd2\x26\x8c\xfd\x97\x0f\x3a\x8c\x7d\x23\x71\x7e\x15\x33\xe4\xb9\xc5\xc1\xef\x34\x4a\x5d\x2b\xc6\xd9\x40\x00\x78\x90\xba\x26\x4e\x07\x47\x10\xb7\x70\x80\x57\xf6\x5b\x74\xd8\x30\xe9\x1f\x21\x57\x65\x27\xd0\x0e\xc3\x59\x7c\xb4\x4e\xbc\x1f\x2f\xab\xa4\xeb\x75\x75\x28\xfd\xd6\x58\xe5\x08\x00\x77\x82\x2d\x3b\x47\x66\x00\x26\xf5\x32\x3c\x64\xf8\xed\x6f\x53\x4c\x0e\x63\x79\x93\x36\x1f\x02\x84\x3f\x82\xd1\x12\x8e\x40\x7a\x47\x45\x9e\xbe\xcf\xcb\x69\x56\xe6\xd9\x09\xf7\x3d\x2f\x80\xac\x0d\x0f\xf1\xad\xa2\xde\x58\x48\xb3\x94\x6b\xf5\x75\xe7\x5a\x79\x1f\xf6\x45\x13\xc5\x9a\x64\xf8\x12\xac\x1c\xdf\x34\x6d\xcc\x65\x53\x79\x4a\xb3\xde\xef\x39\x87\x81\x43\x79\xed\x96\xca\x85\x1c\x45\xed\x04\x21\xfe\xbf\x6c\x4a\x8c\x0c\xcb\x62\x53\x27\x62\x8d\xb5\x7b\x7a\x15\x2c\xb6\xf3\x22\x5a\x8e\x45\x66\xd7\x29\xa4\x28\xb9\x14\x95\xa9\x2a\x4c\xd2\xa7\x6a\xb2\xa7\xf4\x52\x41\xdc\x91\x7a\x0e\xb8\x81\x7c\x33\x4c\x63\x38\x78\x0c\xb6\xa9\x01\x6f\x36\xaf\x6c\xda\xc6\x59\xd9\xef\x7b\x4d\x7e\xf8\xbd\x73\x9d\x96\xd2\x73\x77\x91\xdf\x7f\x7c\x77\x33\x6f\x64\x65\x5f\x9e\x9f\x7f\xf6\xf1\x6a\x51\x60\x45\x5d\x1a\x7b\x89\xe0\x23\x78\x4b\xa7\x95\x54\x4d\x2e\xa6\x9e\x3d\x23\xb8\x62\x97\xd1\x96\x87\x9b\x37\x88\xe6\xc6\xe9\x60\xf8\xe6\x87\xef\x07\xfe\x1c\x7c\x35\x50\x49\x4d\xce\xce\x63\x47\xa1\x76\x51\xf3\xf1\xe0\xd6\xb1\xf2\x83\x10\xbd\xb4\x9c\xdc\xe7\xcf\x02\x55\x57\x7a\x93\x26\x13\x3b\xed\x53\x55\xea\x66\x85\xb0\x9c\x12\xa3\x42\x8e\xec\xdb\x5a\xff\x7c\xac\x1c\xc8\x26\x65\x99\xb6\x8d\x09\x2f\xe5\x82\x00\x47\x54\xec\x30\xab\x27\x1d\xc9\x5a\x94\xf4\x22\x12\x09\x14\x30\x82\xf4\xb8\xd1\x00\x0a\x30\x4e\x35\xc7\x46\x87\xd0\xef\x20\xc8\xdb\x23\x34\x54\x52\x3e\x69\x50\x37\x67\x04\x94\xf3\xd7\x71\x46\x1f\x56\x4a\x03\x5a\x77\x26\x2f\xa2\x38\x7e\xd4\xeb\xf0\xde\xc2\xee\xc6\x7c\xdf\x09\x7c\x91\xfb\x34\x06\x1c\xab\xfa\x8a\x2a\x62\xbd\x19\xf8\x8e\xd7\xeb\xe4\x3e\xb9\xb6\xcd\x6a\x19\xc0\xfe\xdc\x82\x05\x41\x8e\xf1\x12\xd6\x84\x93\x22\xaf\xd6\x01\x96\xf1\x25\xac\x23\x54\x8d\x7e\x48\x36\x0b\x8f\x75\x4c\x0b\xb1\x5d\xc0\xd2\x13\x32\xc8\x46\xcd\xac\x3c\xea\x27\x06\x18\x56\x27\x11\xef\xdc\xcf\x2b\x8a\xb9\x24\x4e\x0d\x13\x2b\x89\xc8\x99\x7a\x1e\x24\xb9\xa4\xc1\x95\x46\x86\xff\x4a\x15\x14\xf3\x38\x5d\x63\x9d\x7c\x24\x00\x3f\x51\xcd\x75\x9f\x4c\x9d\xf4\x7b\xf7\x72\x07\x2d\x3a\x52\xe0\xe8\xfd\x8e\xea\x77\xfb\x1d\xc5\x88\xd4\xb3\x85\xcd\xa2\x94\xfa\x57\x68\x38\x1d\x43\x4b\xf5\x90\xc2\xd0\xb2\x39\xcb\xf0\x34\x29\x08\x50\x86\x57\xe4\xd2\x68\xf2\xf8\xa6\x49\x03\x68\xbd\x1c\x8d\x22\xac\x48\x87\x51\x75\xbe\xce\x34\xd1\xda\xf3\xf3\xa0\x0f\xa3\x60\x40\xb4\xf2\x7c\x33\x6e\x5d\xe0\x69\x98\xae\xd0\xdf\x61\x75\xdf\xc6\x9e\xe4\x1b\x05\xc2\xce\x4d\x92\x97\xd1\x36\x9a\x5b\xec\x52\xf0\xf0\x32\x7b\x83\xe2\xe7\x69\x75\xd4\x58\xbc\xad\x48\x37\xb8\xf4\x2c\x2b\xa3\xa9\xa5\x73\x68\xb2\x2c\x22\x61\x52\xb7\x34\xce\xa9\xa5\xd1\x40\x8d\x4d\x12\x6c\x51\x2c\x00\x3e\x27\xf7\xb8\x28\x4a\xb8\x97\xc6\xea\x99\xef\x07\xde\x39\x2a\xd2\x43\x11\xe2\x25\x1c\xd5\xad\x89\x62\xa0\x68\xb9\xba\x7c\x9a\x9b\x15\xa3\xc8\x34\x4e\x28\x26\x8f\x9b\xb0\x3e\x30\x67\x5b\x3b\x6a\xb4\xa2\x22\x4c\x87\xad\x6a\xbf\x09\x79\xb9\xc2\xcc\x9d\x6c\x3a\x3f\x52\x23\xa7\x1b\xd2\x95\x30\x25\x7c\xad\x0a\x20\xdd\x32\x8f\x12\xd2\x9b\x79\x98\x36\xaa\x80\x92\xaa\xed\x28\x20\x40\x3f\xef\x77\x54\x28\x04\x7d\x6e\x27\xf7\x5a\xed\x65\xa4\xc5\x0e\x63\xd2\x51\x65\xbd\x82\x2d\x8f\x59\xe2\x90\xdc\x35\x8f\x56\x13\xcb\xff\x82\x0d\x27\x1c\x42\xba\x6c\x55\x1d\x49\x7c\x5d\x23\x8c\xb1\x85\x39\x44\xc8\x09\x57\x65\xd4\x9c\xc2\x95\xa7\x23\x7a\x32\x2d\xc7\x9d\xb5\x81\xd8\xb1\x86\xaf\x90\xba\x64\x03\x15\x48\x68\xb2\x34\x8e\x12\x23\x0d\x39\x88\x27\x01\xa1\xc1\xea\x7c\x47\x23\xff\x1f\x9e\xec\x70\x9b\xf9\xa9\xde\x76\x0d\x89\x27\x44\x96\x43\x07\x2e\xcd\xbb\x1b\x8c\x15\xd9\x99\xef\x3d\xd1\xd1\x80\xd2\x6a\x06\xf0\xde\x48\xa3\xc3\x34\xcf\xa2\xae\xec\x38\x84\x1c\x33\xec\xbf\xc6\xe9\x89\xe4\xc5\x59\xb5\xd5\x4c\x58\x44\x69\xb2\x9d\x3c\x6b\xc7\x47\xea\x02\x84\xff\x0a\x0e\x22\x36\xc4\x0d\x25\x6e\x71\x39\xf0\xf1\xdc\x7f\x73\x85\x1c\x6b\xfe\x74\xa0\x49\xca\x5a\x4e\x19\xf2\x5a\xa0\x38\x74\xae\x04\x4a\x95\xe2\x5b\x9f\x01\xea\x8c\x25\x85\x59\x03\x72\x0a\x47\x8f\xf4\x36\x85\x03\x33\xec\xda\x2c\x36\x11\xf3\x17\xc3\x41\x7c\x57\xc5\xb4\xef\xba\x0a\x59\x37\x35\x85\x93\x2a\x81\xa7\xcb\x9c\x43\x7c\xa3\x68\x1a\x86\x69\x91\x66\xe1\x7a\x18\x73\xa7\x29\x16\xec\x8f\xf1\xe7\x7c\xe3\x60\xb7\x69\xaf\xc7\x31\x12\x4a\xe6\xf7\xe8\xe7\xf9\x5a\xa5\x3e\x6d\xcf\xc6\x43\x93\x20\x95\x29\x7c\x57\xb5\x14\x8e\x82\x5e\x64\xe9\x68\xb0\xae\x24\x12\x4e\x2a\xaa\xde\x93\x2a\x87\x3b\x8c\xb2\x2c\xcd\x54\xd9\xaf\xde\xf7\xbf\x79\x74\xf7\x2c\xb6\x97\x63\x33\xfc\x9b\x50\x95\x0e\xb6\x12\x46\xce\x3b\x91\xb3\xa0\xc6\x33\xa4\x74\x41\xd2\x6c\x65\xcd\xda\x15\xea\xdc\xc7\x46\x45\x61\x93\xaf\x6b\x61\x4b\x2f\x83\x06\x13\x16\x33\x1b\x4d\x24\xe9\x3e\xa2\x97\x84\x8b\x75\x53\x35\x47\xbc\x43\x2b\x5e\x58\x9d\xd4\xa1\x1d\xe5\xa0\xd5\x63\xff\x0f\xde\x05\x02\xa7\x1b\xca\x9a\x1f\xd6\x02\xde\xd1\xaa\x89\x73\xca\x13\x8b\xe2\x58\xcb\x51\x9e\x9d\xa0\x55\x8e\x09\x86\x6c\x0f\x5f\xab\xce\x09\x2a\x1b\xcc\xd2\x9e\xc1\x7a\x84\x42\xa6\xe3\x25\x75\xc4\xb8\x5b\x49\x8e\x55\x98\x78\x94\xa3\x50\x7d\x41\x42\x54\x0d\xd2\x90\x50\xbd\x9e\xc0\xb4\xfd\x2a\x2c\xe3\x22\x1a\x9a\xc2\xc6\xeb\x73\x3e\x3b\x77\x46\x65\x35\xce\xd2\x7e\xc3\x20\x7f\x88\x10\x8c\xff\x01\xa6\x95\xc9\xa0\x03\x89\xc1\x06\x69\x1c\x79\x64\x01\x9e\xfe\x35\x1a\x67\xbe\x6e\xe2\xa0\x18\x99\x22\x8b\x52\xad\x9c\x7b\x44\x0b\x1a\xa9\x9a\x58\x96\x0a\x5b\x09\x6a\x83\x6f\x92\x31\xe1\x6b\x45\xa1\x3e\x4c\xf3\xe2\xb1\x96\x8b\x17\xef\x52\x7e\x40\x28\x37\xc9\x52\xb8\x1a\xe1\x9e\x45\x9f\xcd\xaa\x2c\xb2\x74\xd4\x28\xb6\x5e\x68\xdb\xe1\x05\x78\x43\x0b\x03\xbe\x26\x35\xbd\xa4\x10\xc1\x33\x13\x25\xc4\x7c\x42\x87\x10\xc7\xb1\x84\x60\x37\x7f\xae\x43\x43\x8a\x93\xfe\xe4\xd8\x6b\x92\x5d\x87\xdf\x85\xb8\xf5\x92\xda\xb6\xb1\x29\x7b\x36\x43\x5e\x16\xf9\xd0\x99\x8e\xa7\xf3\x03\x6a\x1f\x07\x2d\xcc\xa3\xd4\x09\x36\x7b\x62\xe4\x6c\xd8\x98\x7d\x43\xbd\xb4\xc4\x5b\xf6\x6d\x1a\xf6\x90\x0d\xcb\x22\x5a\xb5\x0f\xb6\x1c\xd9\xd7\x19\x18\x5c\xd4\x0b\x67\x68\x1d\x22\x50\x7f\x99\x06\x0b\x4b\x8d\x65\xca\x30\xbe\x4f\x10\xea\x4a\xb5\x32\x3d\xeb\xe9\xbb\x97\xe6\x79\x45\x3f\x30\x11\x63\x3a\x28\x7b\x3d\x89\x61\x11\x1f\x9d\xd2\x74\x99\x5b\x81\xac\x44\x34\x70\x53\xd1\x0e\xe5\xe9\xd0\x16\x11\xd3\x13\x30\x40\x27\xf0\xd0\xdb\xe3\xe3\x69\x9e\x63\xbe\x51\xeb\x27\x4c\xe3\x68\x46\x35\x0d\xdd\xac\x49\x10\xa9\x76\x9c\x23\x53\xf6\xef\xcb\x07\xdb\xb1\xc9\xb9\xa4\xc2\x78\x31\xa5\xf2\x70\x61\x6a\x26\xf6\xee\x25\xcd\x75\xc3\xf0\x23\x21\x4c\xa5\xf5\x23\x79\x66\x4d\x19\xd7\x4d\x33\x33\xe0\xb3\x8b\xa9\x1f\xc7\x6a\x39\xbc\xe7\xb2\x41\xc4\x12\xcd\xb5\x53\x18\xdf\xeb\x94\x00\x85\xc1\x61\xa2\x01\x6c\xed\x4f\xa7\x3c\x75\xf0\xa0\xd9\x9c\x51\x58\x58\x14\x67\x55\xb3\xbc\xd7\xd5\x67\xac\xb2\xcd\x1e\xac\x9d\xcd\x9e\x2a\x6d\xec\xa2\x94\xc7\xda\xf0\x20\x44\xae\x89\x16\x39\x56\x01\x98\x45\x5d\x30\xee\x0b\xbe\x17\xea\x3b\xae\xc1\xdd\xcc\xd3\xe5\x62\xa6\xd6\x02\xea\x67\x8b\x1b\x50\xa5\xeb\xcc\x97\xf2\xac\x1d\x3e\xe4\xab\x82\x33\x13\xfa\xbc\x52\x66\x10\x9f\x1d\x60\x47\xd5\x9f\xb2\xdf\xff\x8a\x73\x4d\xd1\x78\xa0\x2a\xde\x42\xb5\xc4\x4d\x77\xb4\xb8\xff\xf2\xe7\x3a\x7e\x1f\xf7\xb3\x68\xc4\xd2\x0b\x0c\xaa\xeb\xf8\x0a\xdd\x96\x89\x2a\x71\x48\x7a\xf2\x41\x7a\x42\xc5\xb8\x24\xad\x80\x80\x0d\x0b\xfb\x12\x99\x1a\x4c\x31\xf3\x8e\xe0\xaf\xd8\x6b\x97\x18\x15\xeb\x07\xaf\xf5\x9e\x02\xb3\x7f\x5b\x9d\x0e\x69\x09\xf6\x3f\x26\xe2\x82\xbf\xf1\x53\xe5\x7b\xfc\x54\x55\xd9\x56\x12\x5a\x6f\x2d\xa5\xc8\x44\x23\x27\xea\x4c\xbb\x14\x4e\x2b\x1b\x65\x51\x2e\x65\x7d\x47\x71\xba\x28\x3b\x11\x9d\xd4\x48\x21\xfc\x9b\x06\x2d\x95\x7d\xed\x2c\x0a\x07\xc3\x34\xe9\xb5\xb4\x7a\x27\x03\xc3\x04\x06\xb7\x53\xd1\x94\xda\x5f\x24\x72\x54\x44\x3d\xd7\x40\x5e\x00\xdb\x0e\xdb\x00\x27\xf2\xbf\x86\x70\x82\x70\xab\xd2\x34\xe2\x48\xfc\x64\xdc\x3a\x28\x55\xf1\xbf\x20\xf7\x9e\xe1\x23\x58\x5d\xf0\xef\xcf\xe1\x00\xc1\x1a\xba\x13\xb4\xbe\xba\xe0\xd9\x6b\x2b\x0f\x5c\x40\xad\xc8\x26\x23\xcf\xfc\x18\x65\xb1\x81\x21\x98\xa1\x1d\xa0\xd4\xc9\x9f\xf5\x9f\xaf\x02\x07\x64\x07\xee\x8c\x15\xd8\xef\xbb\x63\x4f\xee\xc2\x8c\x27\x58\xcf\x6f\x62\x81\x60\x9a\x2e\x51\xb2\x04\x81\xcf\x5d\xca\x8c\x31\x93\x26\xaf\x02\x04\x97\xff\x16\x4b\x07\xa5\xaa\x0f\x14\x83\xc4\x71\x42\xf5\x22\xbf\x74\x9d\x80\x50\x80\xc8\x9c\xc2\x19\x05\xf8\xdb\xe1\x71\xeb\xa9\xa7\xf8\x38\xf8\xef\x02\xc5\x05\xfb\x73\x1d\x9f\x82\xbf\x8a\x12\xbf\xf0\x78\x7a\x35\x89\xff\x33\xa8\x0c\x13\x27\x87\x15\x62\x65\xaf\x01\x99\x95\xeb\x86\xad\x46\x9b\x6f\x1a\xa5\x3d\x13\x6b\x90\x2a\xd0\x02\x88\x92\x62\x7d\x52\x07\x70\xbd\x28\xac\x36\x96\x55\xa1\x36\xaa\xae\x35\x85\x3a\xf1\x44\x25\x1e\x50\x72\xfc\x74\x32\x61\xcb\x5f\x55\x3a\x99\x6c\x57\x59\xb9\x4d\x75\x35\xf5\x6c\x5c\x98\x39\x45\xd9\x74\x57\x57\x0f\x2e\x8f\x7d\x69\x96\x79\x2d\x19\x38\xaa\xa4\xa1\x6e\x35\x35\xca\xda\x9c\x08\x74\xc0\xb4\x25\x25\xe3\x96\x93\x9b\x3d\xec\x9b\x39\x4c\xd2\xb7\x0f\xd0\x03\x60\x08\x2f\x07\x5a\x51\x42\xb7\xc4\x5f\x56\x85\xb6\x97\x6b\x6d\x36\x3f\x1c\xfb\x0e\x84\xff\x55\x2b\xa9\xfb\xbe\xbe\x82\x70\x0a\xd9\xac\x87\x43\xec\x98\x78\x6d\x0a\x64\x82\xe1\x2b\x5c\xc7\x01\x40\x46\xef\xaf\x3f\xdf\xd1\x9a\xa2\x09\x49\x7f\x79\xed\xd7\x40\xb1\x87\xe8\x46\x1d\x02\x0c\xd8\xbc\x78\xc2\xab\xd7\xcd\xd1\x9e\x92\x7d\x50\x6d\x56\x00\x6f\x7e\xa8\x0a\x20\x2c\x71\x01\x9b\xf7\x7f\x61\xe3\x62\x22\x1e\x9c\x28\xba\xaf\x56\xa7\x5a\xfa\x4c\x8f\x1c\x78\x31\xcd\x7f\x81\x15\x8e\x59\xe1\x5e\x54\xf0\x2a\x3c\x4c\xae\x90\x23\x31\xae\xc6\x57\x74\x13\xfd\xfc\x7c\x17\x13\xcc\xe2\x9d\x9a\xee\xf2\x34\x46\x04\x53\xb2\xd5\x53\x87\xfe\xc6\x2e\xd4\xd2\x60\x1d\xae\x4e\xad\x83\xa5\xf9\x36\xd1\x5b\x4a\x81\x00\xc5\xcf\x57\xe1\x66\xf1\x8d\x16\xbd\x24\xaa\xe2\x81\xa4\xf9\x25\x34\xa1\xf7\x90\x98\x45\x09\x50\xc5\x69\x5e\xb9\x12\x2d\xaf\xcc\xc2\x38\x67\xbe\x71\x81\xea\xaa\xe9\x97\x24\xaa\x2a\x4d\x8b\x84\xbe\x7c\x76\xe3\x94\xda\x20\x9f\xeb\x78\xcf\x68\x47\x03\x43\xd0\xfe\x76\x39\xca\xab\x97\x19\x52\x9e\x1c\xc3\x0a\xb2\x0e\x94\x5a\xd8\x02\x4a\x7e\x54\x14\x1f\xfa\x59\xd9\xeb\x13\x7b\x11\xce\x15\xd7\x96\xbd\x24\x09\x41\xec\x6f\x59\x86\x0d\x43\x38\x28\x93\x5e\x66\x05\xed\x8c\xbd\x7d\x1a\x8b\x9c\x6f\xc6\x5f\x50\x5e\x71\x98\x95\x45\x44\x63\x1e\x43\x1c\x52\x64\xc6\x69\xaa\x44\x8c\x5c\x9e\x6f\x98\x26\x85\xed\x45\x39\x37\xf1\xe0\x30\xe1\x70\x82\x6f\xa6\xd2\x40\x07\x9e\x6b\xe7\x65\x18\x56\xdb\x1b\x66\xcd\x29\xa7\x2a\xca\x04\xd5\x64\x59\xc6\xc4\x75\x34\xab\x7c\xb6\x8b\x81\xdf\x63\xff\xe4\xa2\xa2\xae\x3e\xa6\x2d\xdc\x51\xd5\x6c\xbb\x9c\x12\x7c\x94\xd5\x4d\x9c\x94\x98\x27\xf2\x3a\xeb\xe6\x7b\x18\xc5\x71\x0e\x2c\x3c\x02\xaa\xad\x60\xb8\x15\xf7\x1a\x96\x83\xff\x09\x5c\x12\x38\x3b\x6e\x29\x8a\x9b\xa3\x35\xae\x9a\x3c\x7d\xd2\x57\x9b\x36\xc6\xaa\xf1\x08\x72\x3e\x48\x3b\x3e\x38\xf1\x55\x53\x6e\x39\x94\x1a\x9f\x4b\x12\xfe\xe4\x89\x8e\xe2\xf6\xe7\x32\x92\xe8\x58\x2a\x2a\xed\xd6\x84\xfc\x01\x55\x30\x14\xc5\xec\x9d\x93\xea\xb0\x84\xef\x7c\x92\xb6\x3f\x50\x10\x37\x83\xca\x1d\x70\x05\x15\x55\x98\x1c\xfb\x02\xf5\xb5\x40\xb3\x43\x78\x3a\xfe\x47\x3a\xaa\xb1\xf3\x54\xbd\x5f\xe0\xb3\x1a\x1b\xec\xd0\x66\x7d\x57\x5e\x83\x09\xbb\xab\xc4\x4c\xb6\x22\xd0\xe2\xb3\xdb\xd5\x80\x1c\x73\x5c\x28\x3d\x02\x2c\xc5\x43\xa3\x2f\xb2\x3c\x0e\x0d\x96\xa5\xc3\x94\x20\x87\x98\x36\x94\x7e\x38\x2f\x8c\x58\xbc\x85\x11\xc5\xd6\x3b\xed\x2c\x7e\x15\x27\x14\xe9\x88\xd6\x35\x6c\x2d\x4c\x17\x5f\x4f\x7c\x99\xa1\x1b\xa7\x69\x4f\xed\x6e\x81\x1c\x78\xc0\x2a\x62\x0c\x26\xdb\x50\xc9\xa2\xbe\x4d\x6c\x11\x85\x28\x7c\x39\xc4\x74\x35\x92\x7c\xa3\x8a\xbb\xe1\x20\x1d\x6d\xe2\x79\x5d\x5c\xd4\x3c\xaf\x4e\x81\x39\x36\xf9\x00\xc4\x2d\x5c\xba\x45\xf9\x47\xea\xb8\x0d\x6c\x5b\xf9\x20\x0d\x57\x6c\x6f\xd6\xb7\xb7\xff\xd9\x58\xf3\x77\xab\xce\xa4\x0b\xba\x31\xf4\x7e\x03\x8b\x5d\x3b\xb3\x71\x64\x97\xc9\x93\x40\x39\x76\x03\x3e\x81\x83\x1a\x28\xec\x8f\x00\xab\x46\x26\x17\x44\x9a\x40\x2e\x68\x55\x38\x3f\xda\xad\xff\x2f\x74\x1c\x49\xdc\xff\xef\x6f\x77\x14\x72\xfe\x14\x1c\x52\x38\x1e\x2c\xe3\x8f\xb5\xc3\xb3\x8d\xe1\x67\x42\x03\x1c\x66\xb3\x13\x5f\xbb\x83\x67\x8f\x23\x12\xda\x9f\xcc\x29\x30\xa9\xf1\x38\xd1\x4e\x82\x37\x7d\xbe\x49\x41\x27\x8b\xf2\x15\x48\xf6\xa9\x4a\xaf\x2b\xb5\xd2\x56\x12\x45\x40\x1f\x5e\x6d\xe9\x4c\xfb\x7d\xfb\x58\xd2\xdd\x4d\xe3\xc7\x63\x9f\xa2\xfc\x38\x78\x58\x97\x88\xd6\x89\xa2\x1a\xae\xe6\x6c\x87\xfc\x51\x38\xd9\x5b\x70\xc2\xe2\x6d\x7f\x3a\xf6\x5d\x58\x1b\x38\xc6\xf9\xaf\x00\x8d\xd6\x42\x47\xfc\x57\x4a\xb0\xea\x94\xa6\x6d\x39\xab\x73\x86\x9f\x50\x04\xee\x58\x4e\x1d\x45\xc4\x5f\x69\xb9\x9c\x35\x93\xd9\x5a\xa5\x50\x1f\xe3\x58\x60\xf0\x03\xb6\x75\x94\x43\x7c\x59\x91\xb6\x11\xe3\xba\x21\xc2\x48\xc5\x8f\xf5\x1b\x8a\xa6\xf1\x37\x14\xd6\x38\x8c\xb2\xb0\x8c\x99\x1c\x4e\x34\xc5\x0f\x2b\x7e\xe1\x9b\xaa\x71\xf1\x42\x8d\x70\x36\xca\xd2\x75\xae\x7e\x3a\xba\xb3\x25\xaf\x70\xb8\xb9\x6a\x5c\xed\x9f\x35\x6b\x0b\x62\x1b\x9c\x99\xea\xa6\x77\x6e\xb8\xe2\xde\x6a\x40\xeb\xf6\xcb\x75\x44\xce\x0c\x7e\xc6\x32\x15\x24\x74\x93\xb8\x7d\x39\xd2\xa4\xac\x2c\x75\x8e\x49\x12\xdd\xf3\xcd\xa8\x5b\xaa\x12\x0c\xb2\x28\xa7\x0a\xaa\xd0\x11\x60\xc7\xbd\xa3\xbb\x09\xdf\x99\xfa\xe8\xf3\xf3\x8b\x20\x47\x18\x0e\x7d\xad\x1e\x27\xc7\x07\xf4\x6e\x7c\xad\x52\xbe\x86\x84\x23\x68\xf8\x1d\x75\xde\xde\xbd\x8e\x3a\xcf\x83\xa1\x49\xca\x9a\xc4\x87\x5a\x4e\x23\xea\xb4\x6a\x0b\x3f\xad\xa6\x67\x18\x25\x69\x16\x15\xeb\xd4\x81\x2d\x6a\x6e\x95\x43\x8b\x9d\x04\xab\x2b\xb4\x46\xd5\xd9\x2a\x7b\xd5\xbb\x49\xdf\xa1\xd0\x51\xac\x31\x1d\xc6\x2c\xf6\x88\xdd\xcd\xdf\xaa\x14\x03\xff\xdd\x77\x82\xcd\x3a\x17\x84\x6a\x9b\xf1\xc1\x2d\xc0\x4b\x48\xe8\x7c\x44\x3f\xc0\x2c\x0d\x53\x26\x72\xcf\x62\xdb\xc4\x5d\xe9\x7b\x46\x98\xcd\xee\x36\xdf\x04\x9e\x18\x6b\x98\xd6\xa8\x8f\xb9\xe5\x93\x6f\xa6\xd8\x95\xf7\x2c\xb6\x97\xd3\x32\xe9\x19\xc7\xf1\xfb\x75\x0e\x65\xff\x1d\xd6\x13\xdf\x4c\xe1\x99\xe9\x83\x59\xe8\x48\xa8\xa4\x67\xc5\x03\xb2\x2e\x4e\xf9\x96\x4f\x93\x53\x15\x9a\x5c\xea\xa2\x08\xb9\xb9\x6c\xc8\x37\x4d\xde\x5f\x6c\x57\x6d\x66\xfa\x16\xfd\x59\x48\xeb\x00\x2b\xc0\xd7\xcd\x43\x16\xd9\x84\xb3\x2b\x48\xc7\x71\xa8\xe9\x22\x30\x27\x68\x73\xaa\x09\xe9\x94\xd9\x3c\x65\x11\x32\xad\x2d\x25\xa5\xce\x86\x01\x19\x46\x49\x34\xe4\xde\x30\x07\x8e\x71\x2e\xc6\x27\x4d\x39\x4f\x6b\xf2\xa8\x5a\xf2\xde\xbf\x43\xfa\x59\x70\x04\xd3\xf0\x97\x85\xf6\xda\x20\x1a\xe5\x66\xcd\xf6\x14\x8b\x3f\x97\x64\x58\xfa\x52\x75\xcb\xfd\x65\x13\xe0\xb0\x32\x03\x31\xb5\xbb\x39\x4b\x78\x46\x87\x6f\x67\x1a\xb3\x0a\x3d\x53\x18\xf0\xb7\xb3\xc4\x25\x56\x08\xc3\xe2\xaa\xe1\xdc\xd8\xda\xd9\xa5\x62\xd2\xe5\x98\x9c\x2e\xe2\x41\x16\x49\x2e\x9f\xd3\xba\x81\xe0\x13\x37\x38\xdb\xe0\xcb\xdf\x52\x7c\xbb\xe7\x5c\xce\x81\x78\x2b\x0a\xe3\x88\x7d\x70\x0e\x3c\x30\xf1\x98\xfd\x07\x3a\xea\x0b\x0f\x35\x92\x5f\xa4\xab\x36\x1b\x90\x3a\xaa\x43\x5e\x5f\xd3\xf9\x07\x6c\x7a\xa0\x26\xdf\x6a\x22\xea\xfd\x62\xbb\x67\x87\xd6\x24\x69\xa6\x19\x26\x4e\x29\x86\x89\x53\x1a\x90\x20\xdc\x8c\x22\x1b\xf4\x71\xa0\xc8\x91\x3e\xae\xa1\x36\x32\x9b\xec\xf0\x34\x58\xaf\x8c\x6b\x40\x3a\xcf\x32\x7f\x13\x16\x47\xda\xd1\x15\x58\x13\x8c\xb6\x78\xf6\xad\xf0\x50\xb1\x04\xae\xe2\x47\x91\x86\x7e\x47\x3b\xb2\xdf\xa3\x04\x07\x52\x3d\xef\xd7\x32\x72\x67\x5c\xfe\xbc\x9b\x66\x3d\x18\xe5\x7d\xbe\x16\xee\x12\x44\x77\x14\x59\x78\x98\x0e\x47\xb6\x88\x8a\x68\x15\xe9\x24\xf7\x1b\x5f\x3e\xc8\xc5\xa9\x53\x4a\xe8\xe4\xa8\x52\x3b\x30\xa3\x51\x66\xc3\x88\x8c\x10\x79\x42\x42\x4c\xa6\xcb\xc6\x38\xfe\x35\x67\x8e\x30\x7e\xea\xae\x17\x9b\x99\x82\xeb\xb4\x2e\xb6\xa8\xbe\x44\x26\x67\xf3\xb6\x5d\x9a\xaf\xee\x4c\x9c\xf6\x51\x78\x10\x16\x65\x7f\x96\x1c\x57\xdd\x76\x6b\x69\xb6\x62\xb3\x7c\xa7\x47\x92\x5d\x46\xd6\x04\x51\xe6\x51\x5d\xd5\xba\xa2\xfa\x86\x7e\x86\x43\x83\xff\x2a\xd0\xfd\x12\xe4\xe0\x89\xd2\x5e\x4d\x08\xca\x53\x8b\x33\x2d\xad\x03\x23\x79\xc3\xfc\x6e\xa0\x11\xcf\x0d\x6a\x91\xd1\x70\x94\xe6\x79\xd4\x8d\xd1\x09\xa4\xf9\xc4\xf8\xda\xb7\xdd\x9b\xf2\xd0\x8c\x4a\xab\x1e\xae\xfe\x6a\x03\xbb\x51\x28\xbc\x36\xfb\x21\x07\x9e\x6b\xf7\xd3\x54\xf7\xc1\x9c\x0b\xb4\x87\xec\x23\x97\x51\x54\x90\x64\x29\xbd\xbb\xc3\xb8\x55\xbf\x26\xc7\xb7\x4f\x78\x0e\x6d\xf1\xa0\x82\x8b\x6f\x9d\xf8\x8e\xc4\x73\x38\x2c\xb0\x98\xb7\x4d\x54\x59\x07\x6a\x4e\x4e\xa9\xc0\xf5\x15\x6d\xe8\x4a\xc4\xcf\x77\x94\x9b\xff\xb9\x4e\x03\x73\x7d\xcf\x0c\x4d\xdf\x1d\x6b\x8c\xa0\xa3\xf1\x12\x34\x9d\x50\x92\x74\x6d\x62\x97\xa3\x30\x32\x59\x24\x81\x25\xce\x99\xfb\x8a\x84\xe7\xbe\x4b\x3c\x2e\x5b\xe9\x1b\x76\x31\xba\xea\x7d\x6a\x02\xa8\x9b\x30\x4b\xf3\xbc\x55\xc3\x8f\xee\x71\xd7\x8e\xb1\x36\x36\x65\x7f\x20\x8c\x2b\x0e\x6b\xf0\xbc\x6f\x2c\x6a\x60\xf7\x26\xa2\xba\x59\xcf\x5e\xd9\x52\x28\x55\xf4\x02\xc3\x8c\xfe\x09\x56\xb4\x64\xb7\x77\x2a\x8d\xac\xde\x0e\x25\xb1\xc2\xbb\x4c\xa2\x3f\x4d\x3a\x7f\x0a\x76\x1e\x2d\xc4\x57\x54\x37\x3f\xa0\x0b\xcc\x3b\xa8\x1a\x11\x98\x69\x56\x4c\x06\x3d\x00\x73\x96\x01\xaf\x24\xf1\x80\xaf\x59\x9c\x98\xc2\x5f\x91\xec\x51\xd2\xaf\x39\xac\x27\xb5\xc3\x7a\x52\xad\xb7\x28\x8e\x1f\xc3\x1f\xc2\xfa\x7e\x8c\xfd\x26\x62\x52\xd5\xa3\xe1\x31\x7f\x4a\x1a\xcb\x38\x38\x40\xce\x22\xb9\x20\x1a\x0b\x66\x02\x45\xf6\x87\x4b\x18\x34\x98\x4e\x3e\xc5\x57\x6b\x8f\x8c\x55\xd1\xfb\xac\x97\xe9\xfc\x1a\xb7\x40\x61\xf9\x3c\x38\xa1\x92\x8d\xa4\xd4\xaa\x37\xc6\x49\xf5\x1a\x6c\x23\x36\x05\xa8\x3c\x30\xdc\x3b\xa6\xd8\x27\xf6\x2c\xb6\x0b\xb3\x62\xd3\xe5\x65\x02\xcf\xc0\xed\xfd\x50\x09\x22\x7f\xa8\x2a\xeb\x61\x5a\x8e\xd2\x64\xa6\xb5\xdb\xc9\xde\xd1\x8c\xa1\x08\xf9\x11\xbd\x0c\x66\xf2\xa3\xf1\x4e\x67\x16\x87\x65\x8f\x80\x1e\x18\x30\x28\xe2\x62\xfd\x0c\xc6\x0a\xa2\x7b\x56\xb1\xa2\x5d\x9d\x72\x31\xf6\xee\x6d\xe7\x6b\x51\x2e\x40\x2f\x6e\x95\x51\x8a\x16\x5c\xc4\x84\x1b\x7e\x67\x0a\x85\xf9\xd5\x85\x76\xba\x06\xf8\x9f\xec\x10\x1d\xaf\xf9\x73\xaa\x6f\xb2\x9e\x4d\x6c\xe1\xa4\xac\x05\xe2\x5c\x8d\x0e\x5f\x2b\xb5\x40\x22\x06\xc8\xe7\x7c\x63\xd3\xb9\xc0\x57\xea\xb9\x76\xae\x85\xe8\x65\x07\xaa\xde\xa9\x3f\x6c\xc2\x07\xe5\x69\x6c\x32\xc5\x3d\xf5\x81\x2a\x09\x7c\x50\x53\xd2\xce\xf3\x28\x26\x82\x33\x9c\xa8\x50\x5b\x42\x72\xfc\xb6\xf6\x0d\x80\x7b\x90\x62\x8d\x2a\xdc\xdd\x68\x90\xc2\x00\xb9\x5e\x8d\xab\xfa\x62\x50\x8b\x45\xd5\xfe\x48\xf2\x47\xe8\xeb\xf0\x74\x3b\x27\xea\x38\x9a\x9b\x78\x6b\xf1\xc4\x44\xe7\xcc\x1e\xea\xb4\x0e\x2a\xb5\xb4\xe7\xe7\x79\x15\xed\x44\x95\x19\x01\xf6\x31\x5d\x90\x9d\x9b\xb8\x98\x6b\xf4\x8b\xd8\x45\x94\x62\xf8\xc2\x2f\x75\x94\x16\xeb\xd3\x1d\x78\x2a\xee\x45\xab\x7d\xe4\xf2\x3e\x7b\x04\xd7\xab\xcf\xed\x30\x36\x65\x2f\x4a\x67\xbc\xf5\xe5\x7c\x8f\xd4\x41\xaa\xdf\x65\x4b\x36\x55\x55\x20\x76\x88\xb2\xfb\xa2\x0d\x8b\x19\x0f\xa7\x38\xaf\xb0\x97\x7f\x00\x7b\x21\xa9\xbb\x1d\x2e\xf1\xb8\x62\x15\x9c\xe7\x2d\xed\x7a\xbd\xa5\x12\xd6\xdd\xcc\xda\x9e\xd4\x2c\xa4\xae\xa7\x8b\x7c\x8d\x62\x86\x03\xcb\xd5\x37\x06\x08\xa8\xec\xe1\x2b\xba\x25\xed\xa4\xee\xdc\x4d\x59\x78\x4e\x70\xf7\x9a\xd1\xf1\xbc\xcb\x64\x96\x09\x53\x97\xec\x5e\x70\xcf\xde\x72\xfa\x84\x68\xc5\x62\x9a\xe4\x89\x2f\xed\x91\xc8\xef\x0e\xc5\x9c\xf4\x1d\x24\x85\xb9\x1f\x5c\x49\x4e\x6e\x9d\xd4\xe8\x68\xaa\xa5\xa1\x3a\xd8\x64\x99\x5d\xd7\x6a\xda\x1f\x8c\xbd\x98\xe6\x23\x0a\xeb\x83\x9e\x2d\x56\x0a\x57\x8a\x5d\x97\xa7\xe2\x9e\xdd\xbb\xdb\x76\xd5\xc4\xa5\xe1\xa6\x68\x81\xc2\x29\xa6\xba\x8f\x74\x43\x54\x62\xb3\xbe\x2d\xa2\x70\xc6\x23\x1f\xbe\x85\x71\x45\x72\xec\x44\xa0\x6b\x95\x9b\xcf\x9f\x6a\xd1\x98\x84\x39\xae\x6b\x21\x3b\x37\x4d\x51\x0a\x02\x30\xab\x2d\xf4\x3e\x78\x04\x9d\x58\xea\x65\xa6\xdf\x17\x51\x7a\xc4\x46\x97\x14\xfb\xde\xcf\x02\x4d\xf8\x8f\xf5\x0c\xbf\xe8\x68\x13\x5d\xbe\x09\xbf\x51\x9a\x28\x71\xa9\x18\xd7\x44\xe4\x1a\x79\x2f\x36\xc1\xd2\x4c\x18\xc6\x26\xe2\xf6\x3d\x21\x97\xf3\x10\xaf\xb3\x81\x42\x32\x1a\x53\x84\x83\xa8\xa5\xfa\x71\xce\x29\xe4\xef\xb9\x26\xa5\x65\x13\x39\xaa\x2f\x9c\x78\xb0\x6e\x08\x00\xd8\x13\x40\x90\x7f\xc3\xf3\xbb\x16\xd4\xd3\x81\x58\x14\xbe\xef\x47\x70\xb0\xa5\xe9\xd3\x73\x86\xdf\x74\xfe\xd7\xd0\x64\x49\xd4\xd2\xb0\x0d\x9a\x0e\xc1\x73\x34\x14\xc2\x20\x22\x26\xe3\x25\x5a\x16\xb5\xa4\x66\xfb\x33\x4a\x15\x6b\x36\xca\x97\x23\x1b\xf7\xc0\x79\x80\x23\xff\x36\xf6\x83\x98\xa7\x96\xe2\x4f\xd5\x91\xe0\x7f\xf1\x1f\xc1\xe7\x03\x72\x97\x6b\x63\x7c\xa3\x88\xcd\x87\xe9\x6a\x94\xf4\xe7\x3c\x63\xfc\xc3\x1d\x55\xdc\x40\x34\x88\xc1\x39\xa3\x98\x1e\x2e\x93\x37\x23\x10\xed\x86\xb4\x47\x3e\x4c\xd3\x62\xa0\x32\x48\x5b\x69\x42\xf8\x7a\xa2\x34\xd3\x06\x51\x38\xc0\x76\x47\x5c\x73\x9f\xa0\x0c\x58\x9b\x2c\x92\x80\xd2\xd2\xf9\x71\x8d\x9d\xd3\x29\x95\xdf\x0b\x94\xd8\xcd\x29\xd5\x22\x3c\x0b\xdb\x5f\x63\x8a\xc0\x8a\xb8\x12\x28\x71\x19\x46\xdf\xc1\x06\xdf\x0d\xb4\xd6\x7c\xd2\xb3\xb1\xc1\x42\x14\x5c\xa4\xc6\x4b\x36\x55\x34\x84\xd7\xc8\x9d\xad\x2c\x10\xc1\x37\xaa\xb1\x2c\x2d\x8b\xd8\xac\xa3\x3b\x55\x70\xa0\xad\x45\x0f\x16\x6d\x18\xd5\x9e\x4d\x22\xce\x10\xc3\xd8\x02\xdb\xc9\xd7\x0a\xb8\xb7\x6e\x86\xa6\x30\x89\x6d\xd5\xfb\x96\x6b\x4d\xca\x0a\x16\x75\x88\xb5\xe1\x66\x37\x81\x9f\x84\x1c\xfb\x18\x40\x33\x0a\x2f\x25\xce\xbc\x17\xdc\x1f\x99\xcc\xc4\xb1\x8d\x59\x15\x04\x86\xe6\x4a\xa0\xb0\xab\x3f\x1c\xd7\xb8\x90\x14\x23\x6c\x14\xae\xc4\x16\xba\xe3\x92\xd4\xa8\xde\x11\xe9\x64\x88\x89\x30\x52\x72\x8a\xe0\x73\x71\x91\x48\x2a\xb2\x82\x99\x20\xe8\xc7\x9d\x08\x72\xf5\xe3\x12\xef\x36\x7c\x52\xc8\x59\x5f\x72\x91\x9a\xdb\xfa\x4e\xfd\xfb\xd3\xa6\xac\x79\x11\x31\x23\x84\x43\xf6\x7a\x94\xaf\x92\x17\x58\xb6\x71\xfc\x80\xf7\x07\xef\x2b\x8b\xf7\x38\x6a\x48\x88\x48\xce\x29\x97\xef\x61\xac\x5a\x04\xcf\x77\x34\xea\xec\x2a\x4e\x73\x78\xdb\x33\x9d\x46\x89\xbb\xd0\x46\xab\xa6\x1b\x33\x1a\x0e\xde\x2f\x0b\x0f\xf0\xcd\xa4\x89\xd2\xb3\x6b\x88\xeb\x1a\x63\x20\xd0\x4c\xff\x0d\xe7\x34\x3f\xe2\x28\x2d\x38\x69\xfe\xbc\xc8\x98\xce\xa0\xdc\xc3\x37\x13\x3f\x00\xb9\x8d\x97\x15\x8a\x8d\x72\x01\x72\x1d\xe8\x33\x3f\x2b\x06\x73\x8a\xd8\x1a\x3c\x39\x08\xff\x0f\x8f\x15\xa1\x0d\xd0\x38\xe8\x39\x14\x5a\x21\xe9\x94\x78\x4c\xfb\x10\xa6\x1b\xaf\x2b\xd1\x7c\xb8\x74\x82\x07\x6b\xa2\x59\x23\xd5\x71\x0a\x6d\x60\xf2\x4f\x07\xad\x2f\x7d\x4d\xae\xa7\x2c\x74\x35\x68\x90\x2c\x89\xfa\x4a\x44\x41\xe2\xc8\xea\x21\x25\x0c\x55\x82\x15\x69\x41\xb6\xf6\x4b\x5f\xe3\xa2\xce\x19\xd5\xdc\xf8\xaf\x94\x08\x1a\x4c\xad\x12\x0c\x7f\x96\x23\xbc\x26\xa0\xd6\xb3\xed\x30\x4d\x63\x1c\x63\x4e\x8b\xdb\x15\xc3\xd0\x68\x2c\x9a\xf0\x3b\x9c\x0f\xf7\x54\x6f\x1b\x7d\x02\x4f\xf9\x00\x16\x1d\xf2\x81\xb7\x28\x3c\xc5\x89\xb6\xb3\xa3\x92\x49\x77\xc0\xbd\xc1\x9d\xdc\x8a\x3c\xdf\x33\xf9\x87\x29\xf5\x37\xb9\x88\x89\x71\x30\x7c\xd3\x20\x73\xfd\xfc\xfc\x93\x14\x8d\x4b\x63\x33\x9d\x6d\xd2\x1e\xeb\x03\xd5\xab\xb0\x40\xb0\xa2\x47\x15\x08\xfe\x6a\x5d\xaa\x9d\x5e\x43\x3a\xf2\xe8\x30\x87\xe1\x00\xcd\xa2\x40\xb5\x3c\x02\xf3\x8e\xd6\x46\x67\x72\x54\x00\x99\x1e\x06\x76\x09\x28\xbc\x2b\x5a\x1f\xee\x38\x4e\x0f\xee\x71\x54\x42\x1e\x0f\x10\x58\x8a\x29\x15\xb0\x25\x30\xb5\xaf\x13\xe4\xd1\x35\x00\x2f\x1c\xe0\x32\xc5\x05\x4d\xef\x33\xb0\xe1\x0a\x84\x7c\x44\x46\x9a\xd2\xb2\x5a\x52\x17\x23\xff\x03\x3c\x0c\xdf\xb8\x38\xa1\xcc\x2d\xe4\x10\x70\xe0\xdd\x1d\xab\x63\xed\x62\x8d\x5a\x5e\xf7\x2f\xd0\x80\xe1\x80\x7f\x1c\x76\x42\x10\x4e\x8f\x6a\x33\x96\x26\x38\xa8\x70\xca\xfe\x4c\xd3\x90\xfd\x6c\xaa\xd6\xe2\xfa\xf3\xcb\x3e\x20\xf1\xc0\x76\x71\xe4\xcd\x37\x4d\x3d\xb9\xc3\x28\x8f\xad\x71\x41\x0c\x6c\xc1\x15\x25\x49\x72\x45\x45\x21\x2f\x46\xf9\x1c\xcd\xb0\xeb\xbf\x5b\xf4\x1d\xfd\x9e\xc4\xf8\x3f\x7b\x7c\xe2\x83\xf9\x33\x1a\x45\xf3\xbd\x9f\xef\x78\x98\xc3\xc8\x64\xc5\xae\x96\xa3\x16\xbc\x8b\x95\x84\x8c\xc9\x5d\x9a\x32\x51\xa0\xf0\x50\x0b\x0e\xaf\x10\x20\xbd\x01\x37\x44\xa4\x63\xaa\x31\x46\x59\xe8\x4d\xf2\x23\x9d\xbe\x8c\xf7\x6a\x4f\x05\x4a\xb7\xe3\x1c\x16\xb8\xe4\x06\x54\x99\xf3\x62\x9d\x8c\xb7\xe5\x48\x8a\xfe\x37\x72\xfe\x01\x6b\x3d\x0e\x34\x28\x92\xa0\x37\x11\xcc\xf2\xcf\xd3\x3e\x15\x15\x1e\xef\xdd\x64\x69\xd9\x1f\x30\xd3\xb8\x8f\xb4\xaa\xa7\x13\xf6\x19\xef\x59\x82\xfa\x41\xa6\x60\x97\xeb\x2a\x08\x57\xf2\x02\xe4\xd7\xf4\x41\x6c\xa9\x2b\x6a\x7b\x5d\x51\x3f\x58\x0c\xb2\x68\xb9\x00\x75\x90\x24\xba\xab\xb1\xc4\x6f\xb3\xb4\xb6\x34\x7d\xfb\x89\x29\x06\xa6\xf8\x3b\xf4\xf5\xa2\xce\x58\xbd\x35\xaa\xab\x77\xb9\xda\x20\xbc\xa6\xb4\x61\xe0\x25\xbf\xc6\x41\x29\xf2\x3c\xb7\xa8\x7c\x80\xc5\xf1\x0a\x6d\x46\x61\xf1\xf3\x4f\xc0\xac\x05\xb0\x17\x33\x93\xca\x06\xe2\xed\xef\xc2\x28\x21\xb6\xfc\x7f\x08\xf3\xcb\x5d\x21\x00\x4b\x21\x84\x7c\x70\xa2\x76\xcf\x0d\xb4\x06\x62\xf9\xb4\x08\x3a\x22\x25\x5a\x85\x7f\xb8\x47\xeb\x0a\x16\x78\x67\xc7\xb7\x7d\x6c\x99\x28\x8e\xc3\x7b\xe4\x6a\x23\x5b\x80\x74\x1b\x00\x6e\x5b\x26\x34\xe3\xf8\xbd\xb9\x89\x92\x52\x85\x4a\xba\xd8\x3d\x95\xe0\x7b\x75\xec\xf3\xb9\x3b\x3a\xb4\xde\xf0\x1b\xcc\x49\x0d\x1b\x7c\x83\xf0\xc3\x0a\x7c\x21\x7c\x3d\x87\x1b\x18\x5f\x89\x84\x2b\x2a\x0a\x2b\x15\x2a\x69\x59\x50\x6b\xf6\xbc\xab\x02\x8d\x4a\x9b\x15\x69\x4b\xb3\x01\x72\xaf\x20\xdf\x04\x9a\xdd\x4b\x94\x3a\x5b\x8a\xcb\x11\xe9\x6e\xbe\x76\xa1\xdc\x8a\xb5\x23\xb7\x0a\xa5\x3d\x58\x65\x84\xce\xf9\xf4\x79\x9a\x85\x76\x87\x22\x3d\x15\xf4\xbe\x68\xba\xb7\x1c\x77\xe9\xa3\x38\xfa\x78\x0d\x68\x43\x09\xbe\x16\x98\xf3\x57\x75\x81\x1b\xb4\x70\xf0\xd6\x3e\xae\xb5\x41\xd3\x84\x72\x57\xed\x58\xe1\x96\x2f\x6b\xac\x60\x6c\x0f\x51\x89\x85\x7e\x4a\x8e\x6c\xfa\x7a\xbe\x69\x8a\x09\x4c\xe4\xb9\x22\x10\x5e\xbd\xa7\x34\x39\x8e\x69\x8e\x06\x05\x6a\x19\x65\x69\xaf\xa4\x7e\x52\x02\x34\x20\xd5\x76\x35\xd0\x0e\xd5\xc7\x4a\xf5\xe7\x7e\xa0\x08\x29\xdf\xc7\xdb\x60\x2c\x4e\x60\x0f\xe0\x38\x01\xc5\x3c\x23\x4f\x54\xae\xe7\xd5\x40\xb1\x01\x4f\x93\xd7\x1c\x5c\x38\xd0\x8e\xc0\x08\x54\x4b\x24\x8e\x55\xb6\xe0\xa2\x96\xba\x89\x4d\x9e\x67\x29\x3b\x1a\x28\xec\x21\x6b\xc3\xd7\x8d\x6d\xaa\x45\x96\x72\x1d\x9f\xb5\x78\x14\x57\x24\xab\x23\x0a\x92\x60\xb3\xc7\xff\xfc\xfc\xbe\x76\x6c\xfa\x2d\x95\x49\xe2\x2c\xa7\x58\x9e\xa6\xcc\xe8\x72\x75\x22\xe3\x85\x9c\x94\x51\xf5\x19\x39\x7a\x1b\x88\x8b\x73\x6b\xdd\x64\xba\x76\x3b\xe7\xcb\x9d\xa4\xe5\x25\xe8\x53\xef\xee\x2e\x67\xd6\xae\x99\xf5\x7a\xaf\xac\x1f\x8e\xd3\xc1\xdf\x9d\x1e\x8e\xfd\xed\x17\xcb\x2c\xca\x47\x59\xd9\x73\x7d\xa3\x8e\x57\xca\x37\xe7\xbe\xaa\x82\x4a\xbb\x1a\xd1\xdf\x3e\xa4\xb6\xd9\x31\xd8\x46\x94\x7b\x37\xb0\x49\x5c\x88\xee\x3c\x39\x70\x06\x0a\x2f\x0f\x2d\x25\xfe\x07\x1c\x74\xee\xaf\x5c\xd3\xf2\xcd\xc0\x8b\xcd\x6d\xe9\xc8\x89\x93\xd9\x51\x9a\xe7\x50\xb8\xf5\x3e\xe6\x15\x7c\x09\xdf\xe8\xf6\xb5\x2a\x18\x8f\x92\xfe\x36\x55\xb0\x39\xab\xa4\x6e\x58\x19\x97\x7b\xd5\x51\x82\x75\x0e\x84\xd7\xfa\x3f\x8d\x69\x13\x01\xdd\x06\xf5\x93\xbc\x30\xa3\x78\x53\xfc\x74\x4c\xc5\x4f\xd3\xda\xb3\x8b\x8b\x44\x6a\x10\x0e\xb0\xa6\x98\x4c\x26\xf0\xd5\x94\x23\x9e\x2b\xd8\x9a\x38\xea\x27\x2a\xdb\x78\x41\xa9\x15\x4c\x93\x52\x55\x5f\xdd\x35\x84\xab\x54\x14\xc7\x3f\xc0\xbb\x2a\x15\x80\x7d\x5e\xf1\xa1\x7a\x57\x04\x9c\xff\x8b\xab\x07\x86\x51\x1c\xa6\xd9\x48\xe5\x90\x58\x51\x8f\x6f\x54\xbb\x52\x91\x16\x24\xae\xa1\xd4\x9d\xe0\x70\x4a\x23\xb2\xb7\x71\xab\x51\x1a\x13\xcb\xb6\x8a\x90\xe8\xad\x25\x5a\x9a\x7e\x9b\x7d\xed\x51\x1a\x47\xe1\xfa\x8c\x2e\x07\xbe\xaa\x23\x24\xad\x09\x73\x42\xf7\x5a\x72\xa2\xb6\xee\x73\x28\x60\x3e\xaa\xd2\x72\x10\x3d\xa2\x9a\xa9\x0d\x57\xba\x1d\xb2\xdc\x33\x79\x9e\x0e\x76\x48\xfc\xf2\xfc\xfc\xbe\xbf\x43\xc7\x28\x87\x70\xe4\x65\xe0\xeb\xde\x0b\x14\xe8\xf0\x38\xf5\xcc\xe2\x78\xfd\x84\x19\xb0\x60\x84\x3e\xa8\xa9\xd8\x8d\x3d\x68\xe7\xaf\xc8\xcf\xc0\x21\x0e\xb9\x13\x96\xc0\x1b\x6f\xaa\x45\x56\x67\x23\xdc\xbe\x0f\x11\x9e\x21\xbc\x7e\x13\xce\x10\x80\x03\x7f\x8e\x2e\x2d\x1c\x46\xf7\xe1\xe7\x08\xa5\x6d\x75\xd8\x23\xc8\x39\x1c\x28\x51\xa4\xbb\x8a\xa0\xe3\x8f\xc9\xee\x30\x27\x15\xe0\xae\x78\xc8\xb3\x9a\x44\xef\x0e\xbc\x4e\x1c\x25\x7f\x41\xa8\x6e\x27\xc2\xe7\xe4\x0e\x7e\x34\xde\xfa\x45\x2f\x9a\x58\xcd\x04\x0e\xde\x6b\xd4\xe2\xe5\xaa\xc0\xbe\xe9\xe1\xb7\xb1\x54\x51\x3f\xb8\xa9\x50\x76\x97\x08\x12\xce\x38\x97\x29\xcf\x64\xef\x5e\x40\x4e\x0a\x1b\xc7\x46\xa1\xaf\x4e\xd4\xd7\x8a\x4e\x98\xf6\xa3\x58\xf1\x88\x62\x8f\x09\x3f\x5b\x03\x1d\x4c\x98\x95\x24\x35\x4b\xd3\x8c\x67\x45\x95\x96\xaf\xa7\x30\x22\x4f\x13\xc6\x61\xdd\x1a\x86\xc1\x88\xb6\xaa\x42\x4c\xbd\x3d\x55\x80\x5e\x5c\x6c\x77\x4d\x9f\x71\x01\xd2\x21\x42\x4b\x46\x7a\x47\x9a\x8e\xba\xb5\x28\xb1\xfa\xc1\x7e\x9b\x16\x96\x0c\xe8\xe6\xdf\x78\xba\x5d\x44\xc2\x42\xda\x98\x9e\xf6\x3b\x7d\x10\x0d\x73\x1b\x2f\xef\xa4\x7f\x46\x5a\x76\x4b\xc7\x8b\xf8\x5e\x1b\xfb\x7c\x06\xe2\x07\x44\x27\xb3\x60\x11\x74\x90\x14\x07\xbc\x9a\x21\xb1\x1a\x0e\x38\x02\xd5\xee\x70\x0f\xf3\x84\xe0\xff\x2e\xaf\xf9\x1a\x06\x98\x2b\xc3\xb4\xb3\x24\xc5\xa7\xd0\xe8\xe5\x28\xb3\x43\x3e\xaa\x18\xf3\x41\x9b\x1d\x31\x15\xf3\x56\xd7\x58\xd3\xe0\x24\x01\x78\xc2\x10\x32\x6c\x7b\xac\x62\xa0\xf0\x91\xfa\x3d\x8c\x83\x0e\x9b\xeb\xc7\x81\x22\x32\xd6\x3c\x0b\x26\x59\x2f\x06\x51\xd2\x27\x0f\x0b\x55\xf9\x23\x8a\x10\x96\xeb\xf8\x9c\xf8\x50\x5c\xde\x47\xc7\x5e\xe5\x92\x31\xf4\xc2\x59\xdc\x72\xf4\x35\xef\xeb\xad\x77\x25\x50\xbe\xf7\x6b\xaa\x37\xa9\x17\xe5\xa3\xd8\x9a\x9c\x75\x41\x04\x7b\x52\x7d\xbf\x60\x52\x7c\x45\x3b\xb3\x95\x33\x6f\x93\x9e\xed\xcd\xd1\xaf\x0a\x4f\xd7\x26\x80\xe0\xb3\xae\x58\xe4\xe1\xf9\x3f\x52\x89\xe8\xe3\x53\xbb\x71\xdf\x73\xfb\xdb\xdd\x2c\x8a\xe3\xc8\x24\x45\xcb\xf7\x30\xbe\x12\xf8\x92\xc2\x2b\x2e\xae\x2c\x4c\x38\x58\x0f\x4d\xd6\x13\xf1\x1d\x2d\xe3\xc8\xd7\xc1\x93\x1e\xe2\x1d\xc7\xa4\xc6\x96\x26\xf9\x43\xbe\x0e\xbe\x55\x47\x44\x2c\x99\xc0\x37\x0a\x12\xfd\x89\xf6\xfb\x2e\x90\x45\xc1\xc2\xdc\xda\x51\x04\x06\x77\x75\x87\xfd\x0f\x03\x2f\xd8\x72\xb9\x49\xa4\x0e\xfa\xa7\xbc\x65\x11\x83\x5f\xc2\xfc\xf0\x4d\x83\xb3\x48\xec\xdc\x36\x9b\xf1\xb2\x97\x27\xc7\x75\x19\x47\x9f\x98\x9a\x46\xc4\x12\x39\xa6\x5d\x8e\x6d\x58\xcc\x28\x15\x9e\xeb\xf4\xa2\xae\xf1\xdb\x2b\x29\xbd\xa7\x8f\xba\x22\x0d\x57\x1e\x57\xa2\xcc\xaf\x63\xac\x30\xdf\xdb\x27\x8a\x50\x85\xcf\x07\xcc\xc0\x1b\x0a\xde\xf3\x6f\x30\x8a\x88\x7b\xc6\x8a\xa0\xe3\x8e\xae\xbd\xbe\x4c\xcb\x0e\xb1\x15\x7a\x22\x99\xa7\x10\xc1\xa7\x4c\x6c\x35\xba\x2e\xf1\xe1\x19\xb7\x67\x3b\x9e\x08\xe8\xb2\x52\xb2\xfa\x17\x63\xc5\xa8\xca\x55\x7c\xa9\x4b\x49\xd0\x57\xed\xc2\x95\x1d\xaa\x4e\xf7\x09\x1d\x68\xd8\xf0\x0f\x52\xe0\x2d\x45\x6e\x7a\x5e\x1c\x87\x5f\xe8\x54\x27\x30\x06\x05\x34\x1e\x42\x67\xe1\x0d\x1b\x27\xd9\x60\x21\x0e\x63\xe4\x1c\x9d\xe9\xd2\x3c\xe3\x05\x37\x10\xc4\x89\x67\xe4\xb7\xe7\x72\x6c\xf2\x41\xe5\xab\xc1\x1f\x72\x42\xfc\x8b\x4e\x94\xdf\x35\x14\x0d\xd3\xd8\x52\x63\x01\xfd\xa5\xeb\x69\x74\x65\xa6\xad\x93\x06\x7a\x69\x7b\xa8\xc8\x0c\x07\x3d\xb0\xd6\x38\x41\x5d\x41\x6d\x51\x88\x80\x8f\x68\x9c\x86\x89\x1f\xf6\xed\xf8\x48\x6a\x0a\x08\xac\x7a\x29\x24\x42\x18\x10\xe7\xf4\xbc\xaa\x57\x47\x01\x60\x07\xe5\x5a\x11\x38\x3e\x8d\x9c\x22\x7a\x4d\x9f\x98\x78\x5c\x2c\x3a\x44\x36\x2e\x8d\xa7\x44\x5b\x85\xda\x88\x26\x9f\x91\x27\x58\x60\x18\xff\x07\x3a\xbe\x82\x9b\x59\x5b\x88\xb2\x18\x03\xb2\x35\x7c\x7e\x9a\x64\x8d\x74\xdd\x50\x9e\xe3\xbc\x5b\xe0\x4f\x23\xd5\x76\x9b\x46\xde\x9f\x47\x42\xe9\xb8\xea\xe1\x38\xae\x50\xa7\xbd\x68\x79\x39\x0a\xcb\xb8\x88\x2c\x93\xb3\x3b\x18\xc1\x92\xb0\xbd\x9c\xd7\x24\x08\x75\xe2\x32\xad\xcb\x59\x66\xe1\xc0\x82\xec\x86\xd5\x31\xf1\x39\x98\xa7\x13\xaa\xb4\xc9\xb8\x1c\xb8\x27\x5b\x55\xb3\x6f\x18\xa7\xb9\xed\x6d\xf3\xe5\xf2\x1b\x81\x12\x26\xf8\x50\x71\x94\x7d\x3a\x56\x8d\x99\x1f\xea\x4c\xa6\xb8\x98\x4c\xe8\x1b\x7c\x41\x9f\xaa\x36\x0b\xd3\xe1\xa8\x24\x66\xf1\x6a\x47\x72\xae\x80\xa6\x51\xf2\x06\xde\x03\xef\xda\x38\x4d\x04\x07\xf9\x75\x5f\xf8\x5f\xf2\xbd\xc3\x9e\x28\x24\x33\xa1\xdd\xe6\x9b\x93\xfe\x28\xf0\xe5\x9b\x97\x03\xdd\x06\x4a\x9f\x87\x8d\x3b\x0e\xcb\x8a\x4f\x1c\x0f\xd4\x2b\x1d\x57\x6e\xcb\x28\x0a\x8b\x32\x63\xce\x5d\x98\xa6\xad\xd0\x39\x87\x49\xbd\x3a\xf6\xa9\x8e\xeb\xf4\xed\xb0\x0d\xef\xd2\x78\x71\x37\xf1\x54\xe0\x77\xe0\xb9\x76\xb7\x8c\xe2\x9e\x8b\xd8\x59\x63\xa3\xa6\x25\xd7\x72\x0c\x81\x3f\x74\xe4\xaa\x3d\x3b\x24\x8d\x65\x6c\x4c\xd8\x0b\xc8\xcc\xc0\x01\x06\xa5\x37\xf6\xc9\x69\xa5\x08\xbf\xbc\x1c\x25\x33\xea\x58\x61\x83\xe3\xd2\xfa\x8e\x81\xe3\x56\x8d\x04\x3b\xcb\x9f\xa9\xe9\xc8\x33\x09\x88\xf4\x18\x3d\xac\xa4\x6b\xe3\x75\x9a\x54\xb1\x0f\x64\x4d\xf9\x46\x63\xc9\xe2\x32\xcb\x50\x5d\x83\x0b\xc4\xf5\x74\xbe\x19\x3f\x59\xf3\x3f\x4c\x16\x55\x7b\xa3\xa5\xc1\xc2\x1e\xfa\x7d\x61\xac\x3b\xca\xc2\x2f\xb6\x7c\x37\xdc\x27\x74\x60\xf0\xb5\x1b\x86\xfc\x1b\xa5\xc9\x2c\x71\x52\x89\x08\x8c\xd2\xfe\x1e\xfb\xee\xa9\x87\x26\xbe\x4b\x80\x4b\x0f\xe2\xda\x4f\x2b\x39\x2d\xb8\xce\x00\x9b\x68\xf9\x8f\x93\x0a\x0f\x75\xd2\x1d\x28\x6b\x03\x13\xae\xcc\xf8\x7d\xba\x8d\x0c\x31\xca\xe3\x9f\xd2\xfa\x81\x17\x7b\x4a\xd5\x77\x46\xb1\xe9\x97\x16\x18\x15\x38\x80\xef\x2b\x31\xce\x33\xba\x5a\x73\xd5\x81\xa9\x07\xe9\x1a\x82\x92\xa6\xc6\x98\x27\x14\xc5\xce\x70\x18\x11\xbd\x7e\xab\xf5\xd4\x53\xbe\x82\x5f\x85\x83\x52\xb4\x9f\x2e\xfb\x2e\xb4\x07\x26\xeb\xd9\xbc\x68\x51\x74\xc8\xd4\xf2\x8a\x52\xff\x8c\x6a\xa4\x0b\x33\x93\x0f\xc0\x66\x29\x8e\x32\x6d\x20\xbe\x69\xa8\xe6\x2c\xfa\x86\x9b\x19\xbf\x54\xa6\xf4\xa0\x17\xdc\x7e\x7d\x42\xe5\xfc\xd3\xb2\x3f\x28\x96\x4b\x20\x9d\x25\x8d\xec\xf1\xd0\xe7\x15\x19\xaa\xc9\xaa\x71\xad\x96\x2d\xd3\xc7\x62\xd9\xea\xba\x2f\x72\xa1\x37\x1a\x24\xbe\xc9\x35\xc8\x67\xfc\xde\x3b\x47\x1f\x10\x26\x7f\x25\x0b\x72\x2f\xf8\xe2\x67\x94\xb9\xa2\x24\x2f\xa2\xa2\xac\x3c\x50\x86\x66\x23\x0f\xcb\x2a\x60\x7c\x33\xde\x2e\x80\x6f\x93\xcd\x29\xe5\x18\x14\x10\x51\x5b\xf9\x6e\xa0\x78\x23\xe0\x5e\x63\x79\x3c\xd4\xf1\x90\xc1\xfb\x0d\xc2\x53\x18\x04\x4e\x36\xba\x8e\x89\x25\xd7\xa1\xa1\x6c\x61\xd7\x9a\x2c\xca\x07\x73\x0a\x03\x8d\x06\x0e\xa9\x74\x56\x1f\x93\xb8\x97\x56\x2b\x6a\x2d\x3f\x41\xaa\x81\x3f\xd1\x24\x5d\xbe\x9c\xa6\xc5\x20\x8a\x63\x76\x38\xe0\x41\xde\xa5\xf5\x84\x9d\x7a\xa1\xd6\x6d\xa6\x00\x20\x43\x33\x1a\x09\xdf\x8d\x6b\xae\x77\x0c\x3e\x17\x1d\x23\x5a\x5e\xd8\x2c\x8d\x84\x53\x80\xb3\xd1\x4a\x5e\xff\xfd\xa9\xc7\x72\xa5\x48\xa2\x67\x70\xe4\x8b\xa7\x03\xc5\x8d\x7d\xda\xc9\x83\x2e\x67\xd0\x06\x67\x16\x02\x87\xd6\x3f\xa3\xb4\xb6\x34\x77\x65\x1c\xe5\x24\x9b\xe1\x5c\xd6\xab\xaa\x25\xf1\xea\x54\x07\xfa\xf3\xf3\xfb\x88\x63\x23\x8e\xa3\xbe\x4b\xba\x8a\x64\x73\xcb\xcb\x37\x6b\xc2\x40\x10\x65\xd7\xb8\x5a\xe8\xd1\x5d\x1b\xbf\xaf\x46\x62\x37\x09\x21\x4c\x43\x9b\xd8\x8b\x65\xaf\x0a\x4c\x70\x16\x08\xdf\x91\x72\xdd\xcf\x36\xad\xac\xea\xf7\x2d\x08\x51\x34\x62\x91\xaf\xb5\x44\x67\x8a\x39\x5c\x38\xc0\x3b\xe6\x7d\xda\x4a\x7c\x3d\x55\x24\xde\xbb\xb7\x6d\x7b\x65\xe8\x95\x58\x1b\x59\x0b\x35\x96\xa6\xfb\xcc\xac\x88\x2d\x54\xce\x80\x02\xac\x6e\x5c\x52\xf0\x72\x2a\xaa\x3b\xf9\x85\x6c\x64\xb3\x96\x22\x82\x44\x41\x44\x68\xbb\x76\x29\xef\xcb\x24\x3d\x34\x4a\x6c\x2a\x9e\xf0\xb5\xf3\xc4\xe3\x28\xb4\x49\xee\x0e\x7d\xfc\xe8\x86\xef\xb9\x7d\xf9\x71\xda\xac\xa8\x08\xcd\x4e\xbc\x09\x25\xd4\xcc\x2c\x19\x27\xf5\xae\x3e\x2e\xf0\xf8\x8f\x3b\x4a\x6d\xff\x8e\xce\xc0\x1f\x1a\xd9\xb0\xb0\xbd\x07\x31\x85\x8e\x6e\x71\xef\x5e\x76\xca\xaf\x29\x5a\xf9\x37\x75\x4b\xda\x4d\x55\xb2\xda\x4e\xf5\x48\xe0\xef\x37\x28\x4b\x8f\xa3\x98\x83\x61\x61\x69\x52\x90\x9f\xb2\x4b\x35\xbe\xde\x9c\x8f\x52\x4e\x50\x0c\x86\x04\xfd\x3d\xfc\x92\x04\x64\x3e\x89\xfd\x47\x35\x4f\x63\x5c\xeb\xea\xb3\x54\x7d\x6a\xa9\x5e\x4a\x80\x0d\xa5\x73\xac\x41\x75\xa5\x9f\xa5\x6b\x33\x9e\x93\xf8\x72\xa0\xf4\xcf\x5f\x53\x09\xe1\x33\xaa\x36\x92\x9b\x38\x1d\xa6\xc9\xac\x2a\xf9\xcd\x32\x6e\x48\x66\xc8\xf7\x3e\x7d\x5f\x75\x4b\x7d\x5f\x41\xab\x29\x01\x1d\x09\xd0\x1f\xa1\xdf\x6b\x81\x0f\x03\x5f\xab\x51\x66\xe6\xf6\x10\x30\x70\x70\x51\xdf\x0a\x54\x61\xf8\x70\xa0\xd1\x80\x53\xfb\x6d\x69\xbe\x6d\x86\x69\x99\x00\x5c\x85\xe9\xda\x0a\x24\x09\xdf\x4c\x7c\xe4\x31\x28\x87\x26\x89\x0a\x93\x91\x68\xfd\xd2\xbc\xaf\xdb\xb9\x2c\xe4\xc7\xb5\x07\x4b\x57\x9f\x99\xad\x66\x4d\x64\x97\x55\x5f\xdc\x6b\x8a\x00\xe3\x2d\x18\x12\x4c\xa7\x56\x6c\xfa\x95\xff\xf4\x97\x69\xa7\x4a\x0f\x55\xf5\x5d\x92\x5b\xdb\xfc\x26\x07\x17\x0e\xb4\x87\x14\x9d\xd1\xd3\x0b\x83\xaf\x22\x49\x7a\x43\xb9\xfe\x5d\x6a\x23\x75\x6d\x1d\x47\x35\xf2\xfc\x68\xe0\xfd\xe6\x30\xb3\x26\xb7\x33\x9e\x9c\xf9\x03\x9a\x76\x27\xc1\x5a\x99\x02\xd5\x5e\x94\x96\xd9\xae\xd6\x97\x0f\xd6\x97\xa9\xf8\xa0\x94\x92\x74\xbe\xb3\xeb\x61\xba\x8d\x88\x02\xa7\x21\xc4\x0f\x99\x8b\x0e\x49\x98\x1a\xe8\xd4\xd5\x14\xaa\xa3\x11\xd3\xcd\x29\x32\xc1\x1a\x60\xa9\x39\xdf\xc2\x79\x33\x77\xb5\xae\xc1\x79\xca\x62\xc2\x08\xbf\x12\xa8\x1a\xf2\x58\xe5\x7d\xb9\xef\x08\xf6\xe6\x21\x0a\xa5\xa5\x4d\xbf\x46\x77\x5a\xe4\x73\x8a\x69\x1d\x02\xa1\x38\xb5\x6f\x2b\x87\xf3\x4e\xa0\x64\xe9\xd8\xfb\x14\x56\xce\xcd\x49\xad\x03\xcf\xb5\x97\xcb\xac\x18\x54\x07\x51\xf5\xd0\x0e\x0b\xeb\xce\x3d\x68\x8a\x0a\x7d\xb0\x17\x0b\x3b\xe7\xd0\x49\xa9\x59\x91\x93\x07\x0e\x11\x63\x7b\xf9\x66\xe2\xf1\xea\x26\xef\xda\xbc\x48\xf3\x96\xea\x01\x38\x13\xd4\x74\x28\x7c\xd0\x9c\x0f\x6c\x8c\x58\xd4\x15\x9b\x39\x59\xc0\x37\x6a\x91\x2d\x9b\x82\x5d\x13\xe6\x3e\xa2\x17\x00\xab\x16\xa3\xea\x61\xeb\xcf\x39\xd2\x97\x38\xea\xda\x4c\x00\xa2\xd5\x4f\x48\x57\x3f\x8d\x30\xdf\x04\x5a\x2b\x12\x85\x75\x66\xf9\xc3\x7e\xfa\x30\xf0\x7b\xeb\xc3\x26\xd0\xb0\xe9\x96\x79\xb4\x6a\x95\x4e\x0d\xd2\x60\xfe\x10\xfc\x87\x8e\x68\x38\x1a\x92\xb3\x8a\x48\xf8\xaa\x8a\x07\x4e\x06\x0a\x48\xf1\x69\x23\xd3\x1f\xd5\xe9\x5c\x5a\xc3\x75\xeb\x54\x53\x2a\x19\x98\x86\x7c\xa6\x81\x13\x4f\x2f\x24\x99\x7a\x95\xb5\x9f\xfa\x25\xea\x6f\x2e\x32\x86\x71\x39\xc0\x2b\xcc\x92\x74\xc6\xf9\x2c\xb9\x8d\x71\x12\x60\x66\xb4\xf0\x0d\xd6\x26\xd8\xc9\xc5\xa3\xd8\x9c\xcf\x59\x5c\x6c\x0f\xa3\x43\x2d\xa5\xd5\x04\xb7\x99\xaf\xa7\xcc\xd2\xde\xbd\xed\xca\x60\x2e\x2f\xd3\x93\x39\xbe\x86\xdd\x0b\x8a\x25\xc7\x4d\x66\x5a\x16\x51\x62\x91\xd4\x71\x2c\x34\xba\x5b\xd1\x1f\xb6\x70\xd0\x51\x1a\xbd\x59\x33\xba\x2b\xd0\xec\x13\x21\xed\x3b\x81\xef\xcf\x42\xcc\x8f\xd4\xda\x5f\x61\x0b\x4a\x38\xe5\x13\xb4\x2f\xda\xa2\x40\x54\x2e\x70\x75\x7f\x08\x9f\x19\xff\x62\x43\x2a\xb8\x4c\xc2\x34\xe9\x45\x88\x47\x50\x96\xdd\xe7\x3b\xd3\x1d\xc0\xf5\xbc\xb3\xab\x23\x93\x15\x51\xce\xf4\x80\x78\x82\x4b\x0a\x37\x72\x49\x39\x79\xcb\x99\x4d\x5e\x5a\x6f\x91\x13\xe3\x7c\x63\x57\x4d\x38\x53\xcb\x3b\x94\xf9\xfa\x8c\xf7\x84\xce\x29\x2e\xa2\x1b\xd8\x3f\xac\x61\xde\xf9\x2c\xa6\xa6\xe5\xd8\x16\xe1\xc0\x66\x33\xaa\x64\xfb\x36\xed\x0c\x24\x5c\x7f\x40\xcb\x44\x68\xe0\x5c\xbd\x1c\xc0\x36\x3a\x11\x25\x5d\xa7\xda\x27\x8e\xfb\x24\x9f\xc9\x8b\x88\xbb\x9f\x44\xe0\x8a\x36\x83\x60\x05\xc9\xaa\x33\x97\x4f\x63\x4d\xa3\x67\xed\x88\xa2\x85\x19\x9f\xd8\xfc\xe7\xe3\x29\x2d\x04\x99\xed\xe9\x10\xfc\xd9\x76\x6c\x4d\x96\x48\x73\x08\x92\x18\xcc\x92\xc6\x37\xea\x38\x1b\x66\xcf\xfc\x42\x15\xdf\xbb\xf3\xdb\xd3\x93\xce\xa2\x23\x19\xe3\x02\x67\x54\x7a\x4a\x5b\xbb\x77\x4b\xc1\x26\x50\xaf\x77\x2b\x50\x4c\x47\xb7\xa9\x5c\x8b\xc9\x39\x46\x23\x8c\x67\xde\xde\x21\x74\xad\x30\xb9\xab\x2e\x80\xd3\x04\x12\xe6\x6b\x02\x81\x6c\x9c\x53\x1e\xec\x56\x14\x0e\xe0\xcc\xbd\x4f\x1b\x0c\xa9\x92\x59\xaa\xf8\x89\x9a\x7a\xeb\xd7\xbe\xa2\x95\x4a\x24\x93\xfe\xae\x4e\xd7\xf0\x3c\x90\xa7\x75\x6b\x17\x71\x95\xc9\x1b\xe0\x3c\xc1\x08\x5c\x53\x1c\x47\x97\x50\x09\x57\xb9\x69\xa1\x32\x3d\x46\xe1\xad\x30\xe6\x57\xbb\x4a\x1a\x49\x1f\x51\xd2\x32\xa6\x07\xfc\x3c\x7c\xe4\x7f\x1f\xf8\x7e\xd5\x7f\xdf\x24\xd9\x93\xd9\x30\x2b\xa3\xc2\x85\x04\x82\x90\x68\x39\xf2\x85\x6d\x1d\xdf\xe5\x75\xd5\xd7\x25\x0c\x51\x5f\xba\x04\xd3\x4d\xcd\xe1\x7b\x57\x11\x48\xbf\xd1\xd8\x18\x96\x9b\x35\xed\x67\xfe\x04\x08\x52\x0c\x27\xb7\x6f\x60\xfc\xaf\x38\x50\xc7\x9a\x35\x2b\x8e\xce\x04\x8f\xc3\x2c\x55\xc0\xa6\x1d\x1b\x2b\xbd\x98\x2d\x9d\x5a\x99\x28\xc5\x99\x86\x4c\xc5\x29\x85\x08\x3d\x35\xde\x04\xeb\xfe\xf2\xc1\xf6\xd2\x3c\x50\x7b\x0e\x2c\x55\x2d\x3c\x01\x4b\xe9\xaa\xfb\x4b\x26\xa2\xcd\xe3\x7a\x8c\x9c\x1c\xc9\xef\xe1\xc1\x60\x36\xcf\x35\xb1\x12\x48\xfb\x46\x0e\x7e\x15\x8e\x62\x02\x9f\x68\xfc\x44\x05\x78\xa8\x08\x9b\x10\x79\x4b\x07\x7f\xae\x0c\x99\xa0\xb3\x7c\x42\x22\x4a\x48\x4d\x6d\x76\x8a\xd4\x03\x6e\xf5\xe5\xb1\x86\x27\x2b\x76\xf2\x33\xaa\x1d\xbc\x6b\x40\xf2\x58\xeb\x50\xe5\x9b\xa6\x3a\x7f\x98\x0e\xed\x36\xcf\x7c\xc8\x56\xa0\x56\x94\x43\xb4\x71\x04\xbe\x27\x4c\xee\x47\x0a\x66\x78\x14\xa7\x93\xf8\x28\x9f\xa9\xec\x9f\x96\x59\xb2\x89\x9b\x00\x20\x1c\xbe\x76\xa1\x6e\x5e\xa4\x71\xf1\xd2\xd0\xd4\x02\xf4\x1a\x99\x6b\xcd\xe0\x17\x66\x84\x0c\x94\x13\xaa\xaf\x1e\x47\x24\x3f\x1a\x5c\x8b\x9e\x0d\x8d\xe3\x36\x81\xbd\xba\xaa\xc9\x11\xaf\xba\x23\xea\xc5\x74\x05\x49\x19\xc5\xdc\x09\xaf\x5d\x7a\x3a\x84\x1a\x32\x2e\xbb\x59\x14\x9a\xa4\x80\x4f\xc8\x58\x93\xb1\x52\x55\x3a\xa7\xe8\x38\x47\xa6\xf2\x1e\x39\x03\x01\x10\xc6\x47\x1a\x91\xf1\xd1\x54\xce\x70\x69\xbe\xbd\x1c\xc5\xd2\x6d\xc8\xfd\xab\xb4\xbd\xb9\xea\x3a\x56\xaa\x84\xd3\x92\x0e\xa4\xff\x97\xa6\x2b\xb3\x3e\x69\x7d\x3a\x50\x74\x38\x48\x04\x39\x6a\x1c\x7f\x10\x9c\x57\xf9\xb2\xcc\x8e\xe2\x48\xf4\xc8\x9d\x50\xca\xaf\x7d\x45\x2c\x38\x0d\x0c\x4b\x71\x7a\x40\x57\x59\x74\x4d\xb8\x82\xc1\x16\x06\xf0\x96\x23\xa1\x27\x06\x0f\x9e\xc8\x85\x74\x9b\x06\x29\xb1\x9e\x17\x02\x42\x78\x3a\x38\x4b\x19\xbc\x0b\x67\x6b\x86\x70\xf6\xc8\x0b\xdd\x0b\xbc\x67\x73\xb2\xc1\x78\x11\xc7\xdc\x9c\x37\x27\x2d\xdd\x0d\x05\x14\x89\x3b\xba\xab\x9f\x16\x42\xd7\xea\x1d\x01\x00\x3b\x37\xe5\xaa\xee\x5b\xda\xd7\xee\x95\x71\x5c\xf9\x0b\x95\xb5\x81\xc7\xd6\xea\x28\xf2\xff\x2d\x13\x8f\xa5\x7e\x4b\x45\x11\xc3\x32\x2e\xa2\x51\x6c\x67\x94\xf2\x0c\x4a\x37\x38\x8f\x38\x58\x12\x12\x00\x89\x0e\x4c\x18\xa6\xc3\x51\x1c\xe5\x03\xdb\x9b\xa9\xbe\x59\x35\xcd\x0b\xa2\xed\xf7\x69\x3e\xc5\xe3\x52\x45\xd6\x22\x9a\xd1\xcc\xa2\x8a\x89\xee\x2e\x46\x15\x56\x69\xae\xe3\x15\x51\xd6\x4c\x51\xe3\xc2\xe7\x10\x8a\x6f\xa6\xe4\x2c\x7f\xb5\x6d\x7b\xa5\xc9\x7a\x2a\x37\xc0\x31\x24\xdf\x34\x92\x27\x44\xf1\x2a\x00\x53\x42\x07\xa3\xe2\xc4\x0b\x63\xcd\x3c\x9e\x23\x19\x45\xdb\x0c\x18\x78\xa4\xe8\xf9\xba\x91\x3a\x29\x2f\x6c\x56\x85\x20\xb3\x64\x7b\x04\x52\xd6\x72\x34\x39\x00\xe5\xc2\x02\xf2\xc9\xc4\x15\x78\x9d\x8e\xc9\x4c\x58\x44\xa1\x6d\x29\x45\xb2\x3f\xa0\x98\x84\xaf\xc7\x3a\x9a\x0c\xb3\xa8\xcb\x4f\xe9\x38\xde\x1d\x7f\xd0\x59\x77\x18\x77\x3d\x5a\x57\x2a\x53\xca\x7c\x5d\x50\xe5\xaf\x35\x73\x68\xc8\xce\x32\x96\x15\x47\x9c\x7c\x33\x35\xaa\x0b\x07\xda\xc3\xb4\x67\x63\xd5\xc4\x0f\x8e\x07\xbe\x9e\xfa\x00\xe5\x4e\xcc\x0a\x2b\xdb\x73\x4f\x7b\xad\xbf\xdd\x49\xea\xa4\x49\x3f\xb3\x79\x3e\xb4\xc9\x9c\x3a\xd3\xe7\x68\x8f\x2a\x46\xbf\x7d\x1b\x0f\x52\x43\x03\x30\xc5\x67\x39\x2b\x01\x23\x7b\x5f\xf5\xa4\x86\x83\x14\x7d\x80\x3e\x2f\x89\x78\x8a\xaf\xbd\x31\x31\x79\x94\xa4\xf9\xac\xd2\xb8\xdb\xde\xf1\xfb\x99\xdb\x0e\x5c\x1f\xd7\xf3\xf3\xec\x8c\x7d\xac\xd2\x49\x71\x94\x3f\xd0\x72\x9a\x6b\xac\x7c\x8d\xe1\xbe\xa7\xfc\x80\x0b\xfa\x54\x9b\xc3\x92\x17\xf4\x85\x27\x51\x3e\xc9\xef\x84\x08\xfe\xe1\xce\x34\x84\x9b\x84\x4c\x5a\x84\x5e\x74\x10\xcd\xa5\x79\x77\xa3\x96\xf6\x28\x4a\x56\x6c\x56\xa4\x49\x8b\xdc\x48\x17\xf4\xfa\x00\xb8\x16\xe1\x45\xa1\xfd\xbc\xa2\xe9\xb8\xa7\x76\xfc\xfd\xda\x48\xdf\x0c\x14\xf9\xd4\x71\x64\xa3\x14\x4b\xb9\x38\xe0\xd7\xe0\x95\x08\xa8\xa4\xe5\x48\xc1\xde\xa5\xf7\x45\x8e\xf3\x16\xe1\x43\x25\xe5\x54\x39\xb2\x22\xc4\x58\x19\x22\x54\x9c\xdf\xd3\x64\x8e\x4c\x83\x85\x6f\x62\xe9\x2a\x66\x45\x0f\x14\xf9\xd4\x59\xf2\xd5\x5d\xa8\xb9\x47\xb6\xf3\x71\xe0\x3e\xc5\x43\x50\xdc\x34\x57\x15\xd2\xe5\x81\x8e\x62\xa8\x3a\xab\xe6\xba\x4c\x56\xb6\xa9\xf6\x7c\xc8\xd8\x38\x25\xfe\xea\xcb\x80\x1d\x79\x1f\x8f\x2c\x9e\xbf\xdf\x63\x57\xc6\x3e\x4c\x6b\x75\x9a\xa0\xf3\x85\x21\x4a\x5b\xa5\x76\x3e\xf6\x50\x99\xe9\x9e\x4f\x02\x16\xc7\x26\x29\x18\x57\x8c\x57\xfe\x64\xec\x67\x79\xac\xc1\x61\x27\x54\x63\x78\x66\xf3\x34\x5e\x65\x0d\x59\xa6\x70\x84\xb7\x26\x7c\x8e\xb2\x3f\x47\x36\xcf\xa3\x61\x94\x57\x4f\xd6\xd2\x04\x91\x8a\x96\xd7\x17\x7b\xd6\xa2\xb8\x17\xaf\x53\x76\x53\xe4\xb0\x94\xa7\x87\xa6\x50\xa4\x3d\xaf\x2a\xf5\xab\xe5\xcc\x24\xe1\x20\x72\xd6\x0b\xce\xfb\x0c\x80\x37\x7c\x33\xf1\x25\x91\x35\x13\x4b\x83\xba\x2b\x3d\x2b\x3a\xf8\x26\x0a\xa4\xca\x33\x9d\x9b\xf1\x0a\xe7\xb7\xf1\xb2\x22\x31\x40\xbf\x8a\x73\x1f\xc0\x2a\x44\x1d\x33\x13\xd5\x92\xfa\x7b\x53\xa7\xc1\x9e\xc5\x76\xd7\x24\x87\xbe\x51\xa6\x85\x6d\x29\x6b\xf1\xaa\x12\x48\x7d\x75\xec\xb3\xdd\x5d\x93\xac\x64\xe5\xa8\x90\x3c\xbc\x3c\xfe\x27\xb0\x1b\x7c\xe3\x2a\xe7\xeb\x26\x06\x98\x04\x87\x36\x1b\x24\x3c\xcc\xae\x8e\xce\xae\xb5\x1c\xdb\xc7\xb7\xc6\x8a\xc5\x03\x0e\x95\x28\x52\x09\xfa\x60\x10\xe5\xb9\xf8\x7e\x8e\x85\x56\x31\xcf\x6a\xce\x29\x25\xd3\x41\x24\xe0\x51\x58\x20\xac\x64\xaa\x82\xc0\x37\x54\x9e\xf2\x28\x0f\x9b\xad\x46\x4c\xa0\x06\x94\xf2\x7f\xab\x30\x24\xef\x29\xd2\xa0\x77\x1d\x9e\x24\xb3\x3d\xbb\x1c\x25\x40\xac\x0b\xff\x23\x7d\x83\x10\x40\xfa\x35\xd6\x8b\xf2\xa1\x89\x5b\xaa\xb0\xcb\x81\x06\xdf\x34\x95\x00\xbb\x76\x10\x25\xbd\x39\x9a\x67\x58\x9f\xd7\xc7\x1e\xbf\x07\x3d\x79\x24\xee\x3e\x55\x35\xfa\xdf\xc1\x60\x08\x60\x49\xf1\x5b\x13\xda\x58\xe5\x2b\xa0\x6a\xce\xd7\xaa\xe4\x17\x77\xd3\xbc\xa5\x50\x06\x57\x02\x85\x3f\xb8\x32\xde\x4c\x8d\xfa\x74\x3b\x7b\x26\xe2\x1c\x33\xd2\x17\x1c\xab\xf0\x8d\x92\x65\x0f\xcb\x22\x7f\x80\x8c\xb1\xd3\x77\x5a\x92\x50\x13\xa2\xab\x8e\x1c\xc5\x0b\x5c\x71\x39\x1c\x09\x0e\x66\x7c\x71\x87\xf3\xd2\xbc\x03\xe5\x48\xa1\x3f\x79\xe9\x8b\x33\xfe\x80\xba\x38\xde\xfa\x45\xb6\x65\x0c\x6e\x96\xa9\xdf\xdc\x9d\x23\x71\x5a\x66\xfb\x26\xeb\xc5\x96\xc9\xdb\xa4\x85\xb3\xfa\x29\xbe\x76\xab\xdd\xac\x99\xf5\x9d\xbe\xd0\xde\xee\xb8\xa4\xff\xdf\xfd\xdc\xa4\xde\x07\xac\xca\xcc\xd5\xbc\x21\x20\xbd\x07\x1b\xec\x38\x76\x1c\x0c\x15\xea\xd2\xc8\x9d\xfc\x7c\x47\xb7\xa8\x62\x30\x10\x25\x5d\xd0\x40\xe9\x63\x63\x05\xda\x3d\x3b\xb5\xef\xff\x01\xe8\x5b\x09\xa7\x36\x43\x8f\x06\x00\xd4\x07\x63\xd5\x3e\x72\x35\xd0\xcd\xf0\x9b\x03\xd9\x17\x5e\x68\x68\x5e\xc2\x4e\x65\x95\x2c\xbe\x51\xd2\x3f\xbd\x72\x14\x47\x21\xb1\xf6\x2c\x49\x27\xda\xdb\x74\xbe\xf1\xf5\x78\x87\x52\x00\x6d\xd3\xfb\x60\x6c\xbe\x8b\xb1\x81\x3b\x7f\x8b\x72\x46\xae\xcf\x6e\xf7\x6e\x76\x1f\x8e\xf0\x41\x8f\x8f\xb0\x9a\xb5\x74\x0c\x55\x86\x04\x36\xf1\x06\xda\xa5\xf0\x57\x8f\x10\xb3\x15\x8e\x8c\x0b\x81\xd2\xbb\xb9\xa4\x13\x80\x4c\xb7\x01\x40\xd1\x9b\x34\xfb\x28\x67\x3d\xd0\x51\xc5\xd5\x3b\x44\xfd\x2b\xf9\x67\xd5\x92\x78\x18\x4e\x0e\x70\x88\x5b\x98\xf3\x0a\x36\xb1\xd5\xa9\x86\x02\x0f\xf9\xf0\xc4\x83\x5d\xef\x8c\x15\x97\xc1\x46\xb0\xf5\x8b\x1b\x10\xe0\xc1\xd1\xf3\x06\x1c\x01\xa4\xc3\xee\x8d\x3d\x72\xe4\x58\xe0\x09\x01\xa0\x05\x47\x71\xc9\x89\xc7\x27\xad\xa7\x9e\x72\x9d\x79\x1e\x1a\x0a\x39\x4f\xd8\xca\x1f\x23\x61\xc7\x21\xdb\x44\x75\x0b\xbc\xad\x1c\xef\xcc\xae\x5a\x83\xb0\x11\xdb\x96\x65\x10\x5c\xb8\x50\x0d\x21\xeb\xbf\x05\x35\x0f\xb8\x9a\x0d\x11\x86\xf3\x56\x20\x36\x79\xb1\x53\xe9\x1d\x33\x9e\x0e\xc8\xfb\xab\x63\x25\xfb\x7a\xb1\xa6\xdb\x02\x8d\x27\x6c\xfd\x2b\xba\x55\xe2\x2a\x35\x00\x09\x0f\x96\x4b\x3f\x3c\xf1\x18\x61\x8c\x9d\xa8\xaa\x47\xc4\x32\x22\x86\x29\x48\xc7\xaa\xcd\xf9\xae\x4b\xc2\xd8\x43\x23\x93\xf4\x24\xc9\x0c\x3f\xeb\xa1\x89\x4e\xac\x7b\x46\xf3\x03\x8f\x75\x9a\xb8\xb7\x29\xc1\x1f\x46\x23\x53\xa0\x76\x8a\x9c\xe7\x43\x1d\xd5\x7b\x76\x5d\x51\xae\xdf\x73\x27\xcb\x28\x4e\x0b\xcf\x6e\x81\xc8\x1b\x14\x1c\x7c\xdd\x48\x11\x55\x14\x14\xa0\xc9\xc7\x30\x84\x88\xba\xf8\x7a\x2a\x78\x7f\xba\x1d\x66\xa4\xc7\x1d\x2b\x9c\xe0\xfb\x0a\x27\xf8\xbe\x3b\x40\xec\xf2\xb2\x0d\x1d\xea\x57\xe8\x9e\x68\x1c\xf9\x66\xe2\x70\x7a\x66\x3d\xb1\x33\x2a\x9a\x3e\xaa\x68\x48\x3f\x56\xb2\x6a\xe3\x06\x5e\x99\xfd\xed\xc2\xc6\xb6\x9f\x99\x11\xd3\x62\x4a\xeb\x1b\xe7\x56\xf9\x46\x33\xfa\xa0\x18\xf0\x80\xef\x96\xba\xa2\xa4\x39\x2e\x8f\x95\xb5\x7b\x79\xac\x16\x3c\x4a\x3a\xd2\xfa\x4e\xd6\x06\xd6\xf3\xfe\x58\x09\xff\x9e\x6e\x0a\x2c\x5f\x4c\x57\xa4\xd5\xa0\x49\x5f\x5e\xd6\x50\x2f\xca\xa9\xc5\x80\xff\x14\x41\xd2\xab\x81\x87\xba\xbc\x3a\xf6\x45\xcc\xa2\xcc\x12\x93\xa5\x25\x97\xe4\xb9\xd5\x41\xf5\xa0\x5d\x0e\xb6\xfb\x54\xef\xa3\xaa\x49\x17\x2c\xe8\xf8\xa3\xad\x94\xa9\x67\x4e\x27\x58\x37\xc1\x0c\xd1\xaa\xc0\xf6\x41\xde\x11\xbe\xc7\x5b\x30\xb4\x78\xf6\xc3\x14\xd3\x20\x40\x39\xa7\xce\xbc\x93\x64\x74\xa5\x7b\xd4\x69\x32\x7c\xf3\x1c\xb6\x15\x2c\xf3\x0f\xeb\x05\x1f\xaf\x95\x28\x91\xaf\xa4\xa5\xe5\xfc\x5c\x8b\xf2\x67\x5a\xba\xa9\x92\x3e\x2f\xdd\x96\x3e\x8c\xf9\xc7\xbf\xf2\x8f\x66\x7c\x8a\xe3\x38\x3d\x17\xeb\xe7\x13\x1a\x42\x38\x7b\x6b\xa8\x8b\x65\x81\xdf\x02\xce\x76\x56\x13\xb8\x9d\x55\xcc\x3a\x69\x12\xa6\x7d\x9b\xc8\x7c\xc2\x8c\x9c\x1e\xfb\xda\xc9\x69\x95\x03\x29\x4c\x14\xa7\x19\xd7\x99\x05\x71\x4e\x03\x2b\x90\x73\xf1\x28\xb3\x28\x17\xf6\x37\x94\x19\xa0\xb0\xe5\xd4\xf9\x1d\xda\xe0\x1d\x6d\xf7\xb7\x75\x3c\xea\x42\xf3\xfd\x0b\x3b\x21\xad\x65\xbe\x99\x5a\x98\x2f\xbc\xd0\xee\x65\xd6\x0c\x5b\x3e\xa9\x8c\x35\x2e\x91\x8c\xec\xe5\x28\xcf\x4b\x9b\x09\x59\x27\x56\xe2\x77\xc6\xaa\xdd\x16\x1b\x48\x5a\x02\x1a\x30\x64\xdf\x28\x4d\x56\xd8\xac\x0a\x9b\xdc\xce\x7e\xac\xe3\xa1\x24\x73\x13\x4f\x18\x78\xcb\xe9\x1b\x65\x26\xb4\x83\x34\x73\x31\x13\x0a\xba\xc7\x74\x75\xf7\x98\x42\x0e\xf4\x4c\xb6\x32\xab\x5a\xc9\x2e\x05\x4a\x7e\xe7\x94\xea\x2b\xbb\x8d\xb9\x95\x5e\x47\x9f\x61\x34\x45\x91\x66\x89\x6d\x6a\x62\xc5\x78\x6f\xef\xa8\x93\xe0\xc1\xa9\x66\x0e\xd2\xa4\x8a\x46\xb1\x9d\xf5\xb9\x14\x2e\x6c\x09\xb0\xa0\xe5\xb4\xd7\x58\x59\x06\x03\x70\x76\xbc\x19\xed\x0c\x35\x06\x13\xc7\x36\xe9\xcb\x00\xb0\xba\x24\xf6\x8d\x48\x4d\x2a\x31\xa4\x74\x60\x33\x9b\x14\xbc\x90\x11\xf8\xa3\x05\x88\xaf\x35\x06\xa5\x28\x7b\xeb\x44\x64\x03\xc3\x75\x5b\xef\x6b\x26\x34\x60\x26\x68\x1a\x3a\x4c\xee\x75\xb5\xcd\x06\xe9\xea\x8c\x07\x1c\x72\x42\x1e\xb5\x46\x78\x86\x02\xaf\xf6\x28\xe0\x61\xba\x1a\x91\x20\xdb\x02\x7b\x44\xd7\xb4\x54\xc8\xb5\x40\xd1\xe4\x82\x04\x92\xaf\x61\x6e\x79\x0f\x63\x03\x81\xe3\x19\x79\x2f\x6c\xa6\xb7\x14\x61\x5e\x5e\x19\xc6\x9c\x08\xf3\x30\x59\x68\x61\xe1\x5c\x15\x3d\x1d\x90\x37\x0f\x90\x7b\xa5\xaa\x9b\x02\x9c\xda\x32\xd1\x05\xb0\x35\x26\x74\x83\xf3\x7c\x49\x85\x42\x97\xa6\x4e\xc9\xdd\xbb\xdb\xcb\x59\x4a\x98\xd3\xbf\x41\xb3\x74\xf3\x6e\xdc\xf7\xdc\xfe\xf6\x6a\x64\xd7\xc8\xc0\x49\xec\xe8\x4f\xfb\x77\xa7\x98\xd1\xf6\x2c\x82\xae\xd6\x64\xbd\xe8\x25\x46\x6f\x8b\xd7\xef\x0b\x1d\x77\x35\x49\x4d\x53\xa1\x63\x1f\xa1\x6e\x95\xc3\x71\x31\x50\xed\x55\x3f\xc3\x5a\xc3\xcd\x0d\x05\x08\xc9\x47\xd6\x86\x03\x6e\x18\xe0\x2e\x0f\x0c\x9f\xb4\x7c\x34\xa9\xe4\xaf\xda\x6c\x5b\x35\x0f\x18\xfb\x6d\x34\xf6\xb0\xc6\xaf\xd7\x94\x7f\x3c\x98\xe4\x02\x59\x56\x47\x89\xed\x1a\x9b\xde\xae\x91\xd1\x27\xab\x36\x2b\xa2\x6e\x4c\x1d\x07\x1b\x77\xb0\x42\xf0\xa1\xdf\xc7\x53\x71\xd3\x4c\xe0\x4b\x29\x97\x34\x12\xf7\xe2\xd4\xfe\xdb\xbd\xd0\x36\x49\x12\xad\xda\x2c\x37\xdc\x46\xc1\x5b\x35\xf0\x76\x4b\x0b\xbf\x77\xb3\x34\x5d\x61\x6a\x0c\x09\x38\x69\x17\x49\x5c\xaa\x02\xdb\xa8\x58\x7f\xa4\x72\xd6\x85\xca\xc2\xcb\xf4\xdd\xa7\xd3\x12\x7e\xf8\xdc\x44\xa5\xb6\x5e\x0f\x3c\x74\x72\x4b\x47\x39\x29\x77\xc7\x0a\xac\xca\xdc\x5a\x48\x4c\xdd\xab\x4b\x98\xd1\xa0\xe0\xcf\x98\x4a\x18\xef\x7e\x3b\xf0\x5a\xdb\x97\xe1\xe2\x8b\x3e\x07\xad\x04\x79\xc8\x69\xda\xf2\x76\x6e\x63\x0f\x55\x42\xbd\x02\xce\x1b\x5f\xab\x6a\x98\xe9\xa6\x71\x94\x83\x6c\x12\xa6\xeb\xaa\xca\xe2\x5d\x6d\x5a\x2e\x2b\x82\x4d\x42\xc5\xe9\xf0\x58\x31\x25\x1c\x0e\x3c\x25\x75\xf2\xcc\x6a\x6b\x53\x60\xe7\xab\xb8\xe7\xb4\x94\x74\xd4\x1f\x70\xc5\x91\x89\xb9\x03\xdf\x2e\xe6\xb9\x1c\x7a\xa6\xdb\x8d\xc5\x9b\x14\x20\x2d\x8d\x38\xdf\x28\xe2\xa3\x95\x28\xe9\x3d\xa8\xaa\x84\x63\xd5\x7d\x09\x96\x69\x41\xd5\xfb\x7e\xc1\x07\x3b\xaa\x51\xf4\x26\x41\x3f\x74\x2a\x55\xe4\x0b\xe8\x25\x58\xad\xb8\x81\x86\x64\xb1\x9d\x8f\xa2\x58\xf3\x4c\x9e\x57\xed\xbd\xe7\x1b\xe8\x51\x16\xdb\x26\x8e\xa9\x07\x83\x85\x7e\x01\x15\xc1\xd1\xf6\xaf\x69\x15\x20\xd0\xbb\x33\x65\x27\xf6\xee\x6d\xf7\x6c\x28\x4a\x18\x48\xd5\xc0\xf6\xf2\xb5\x72\xb0\xbb\x65\x1c\xdb\x22\x9f\x51\xfc\x33\xc0\x53\x49\xa9\x82\xde\x1e\x41\x5a\x63\x26\x2b\x36\xfd\x7e\xdd\x93\xb9\xa8\x3d\x99\x8b\xc1\xe3\x8a\xc2\x1c\x6d\x6e\x8f\xd2\x1f\x23\x8b\x7c\x1f\x3d\x2f\x38\xc9\xae\x50\xbc\x8b\xa4\xcf\xcf\x18\x8a\x82\x4d\x74\x02\xee\x2e\xff\x99\xd6\x39\xfe\x74\xac\x78\x93\x6f\x07\x5b\xbf\xe8\x69\x7e\xaa\xcd\x85\xff\x7f\x35\xf0\xe7\xc1\xad\xb1\x9a\xd0\x6f\x22\x6b\xaf\x95\x6b\x98\x04\x0f\x6b\x03\x1d\x17\x3f\x41\x80\x2e\x9a\x36\x9b\x8d\x3b\xc1\xf3\x42\x9b\x14\x36\x71\x64\xa2\xf8\x20\x84\x97\xf9\x7a\xd2\x44\xc4\x91\x99\x64\x45\x86\x0f\x79\x8b\x8f\xc6\x2a\xef\xfd\x91\x8a\xd5\x57\x4d\x5c\x32\xf1\x06\x42\x5d\x28\xba\xb3\xca\x5b\xa0\x31\x69\x53\xad\x01\x7b\x16\xff\xbf\x04\x2c\x9b\xa1\x80\x07\x97\xe6\xdb\xbd\x74\xc6\x37\x79\xb0\xb0\x33\x13\x52\x8c\x35\x6c\xce\x03\x5b\xaa\xff\xe4\x2d\x9f\x0f\x3e\x4b\xa7\xb9\x98\xbc\xcd\x29\xc6\x7f\xd0\xee\x5b\x60\xb3\x11\x8d\x1c\xc5\x4f\xf0\x8d\x4a\x5d\x96\xcf\xac\x3c\x33\xa7\xd4\x53\x8e\x4f\x53\x18\x3c\xcb\x4f\x76\x5a\x9d\xa9\xa7\x03\x25\x80\x70\x4b\x0d\xe7\x28\x4b\x57\x19\x7f\x2f\xb2\x07\xf4\x15\x5c\x24\xc2\xba\xd4\xa8\x42\x36\xc0\xc8\x89\xf0\x3f\x4c\xf5\x80\x1d\x24\x4e\xd9\x91\x4d\x7a\xec\x06\x22\x9d\x77\x02\xa7\x0b\xdf\x4c\x03\x3c\x9f\xdb\xdf\x1e\x99\x28\x29\x24\x27\xc1\x5c\xfa\x34\x3b\x38\x39\x98\xe7\x4e\x08\x1f\x36\x4f\xd5\xaf\xb6\x93\x34\xb1\x2d\xb2\x11\xc2\x0a\xe4\x73\x78\xc7\xa6\xb0\x3e\xd5\x73\x8e\x6c\xb6\x9c\x66\x43\x31\x9e\x0c\x0b\xc2\xf2\x13\x8c\x90\xf7\xd2\xfa\x65\x14\x17\x2c\x5e\xca\xea\xe1\x81\xc7\xa2\xbe\x13\x78\xa6\xa1\x8b\x0d\x79\x64\x3b\x4a\x5b\x5a\x89\x82\x76\xba\xa8\x52\x34\x75\xba\x41\x31\xc6\x01\xc0\x9c\x2f\xe7\x9a\x52\xd0\xbc\x8b\xc1\x79\x43\x9d\x5d\x79\x14\xaf\x5a\x76\x02\x18\x32\x38\xf6\x38\xd9\xa3\xc1\xe7\x7d\x0f\x2b\x09\xb0\x44\x31\x37\x53\x3a\x84\xc4\x6d\x5a\xb0\x42\x0d\xdd\x84\x52\x34\x79\x1e\x91\x82\x1d\xfd\x0a\x5e\xe3\x98\x4a\xe2\x1c\xf3\x88\xc8\xc1\x3a\x31\xb6\x52\xfe\x0d\x08\x6e\xce\xac\xf0\xcd\x64\xf3\xf7\xef\xde\xdd\x8e\x12\x13\x86\x65\x66\x42\x26\xa0\x42\x97\xf6\x5f\xd2\x84\xf2\x75\xf0\x39\xdf\xad\x17\x86\x51\xcf\x26\x20\x0c\xd2\x0d\x59\x2d\x25\xbb\xb6\xc3\xfb\x33\x18\x1a\x16\x59\x1a\xab\x22\xce\x35\xd5\x87\x95\x97\xf1\x72\x89\xce\x78\x91\x48\x57\x72\xe9\xea\xeb\x86\x87\xea\xac\xbd\x8a\x7a\xd9\x47\x1f\xcf\x3c\xfb\x4c\x4b\x51\x76\xe0\x47\x85\xbf\xa3\xc1\x99\x58\xa6\xbe\x65\xd7\x00\xca\x84\xf3\xf0\xc6\x8f\x2b\x2b\xfd\xc3\x40\x73\x81\xe1\x58\x70\x70\x00\x97\x71\xbf\xd8\xa8\x1c\x60\xfa\x49\xe5\x10\xb1\x33\x22\xa2\xf9\xf4\x64\x22\x9d\x3a\x0d\x05\xde\xd7\x1e\x0d\x4c\x36\x34\xa1\x2d\x8b\x28\x34\xb1\xe4\xcc\x70\x2c\x73\xdd\x8f\x6f\x54\x71\x24\xb7\xa6\x68\x29\x5a\xaf\xf7\xc9\x71\xe4\xeb\xa9\x44\x99\x54\x2b\xf2\x74\xbd\x6b\x4d\x32\xe3\xa7\x1d\xa8\x28\xc4\x59\x37\x6b\xfa\x49\x8d\xd8\x9d\xbc\x28\x47\x11\xef\x6e\x31\x93\x2d\x45\x49\x23\xf9\x8c\xa2\x0c\xdd\x21\xc4\x5a\xf3\xc8\xc1\x8a\xf0\xbc\x92\x26\x4f\x2b\x27\xd2\x48\xa3\xd1\xd7\x7d\x0b\x5d\xe5\x8a\x4a\x5d\xc6\x47\xae\x36\xcb\x58\x1d\x0e\xfe\xc0\x3b\x5a\x91\xe1\x9d\x29\x04\x5b\xb5\xf3\x57\x53\x9f\xe8\x84\x41\x81\xf3\xc2\xd7\x81\xea\x44\x8a\xa3\xd1\xa8\xb2\xe1\x4b\xf3\x1c\xb3\xdf\x85\xd9\x16\xb5\xd4\x6a\x94\xe1\x40\xfc\x68\xec\x43\x47\x4e\x6b\x8b\x88\xd7\x67\x81\xfa\xba\x26\x8a\xa3\xe5\xe5\x1c\x7b\x57\xa4\x5a\xb5\x6e\xab\x63\xea\xce\xc3\x41\x96\xf6\x6c\x26\xcb\xc1\x35\xe3\xfa\x8d\xde\xdc\xcf\x43\xd4\x30\x35\xa4\xb2\x06\xa8\x9d\x56\x7e\x73\xaf\x17\xb5\x34\x9b\xb7\xc2\x8f\x7d\x5c\x19\x03\xc9\x78\x85\xa1\xc9\x15\x4c\xdd\x2b\x0f\x78\x5f\xfe\xe8\x94\x07\xe3\x70\x8c\xd1\xca\xc0\x44\x71\x0b\x35\x0d\x29\x8f\x29\x44\xda\xc5\x06\x35\x49\xf4\x79\xf7\xa3\xcc\xb7\xed\x0b\x78\xb2\x9a\x36\x49\x0c\x56\xbf\x2f\x35\xf8\x26\x8d\xd4\x5e\xc9\x01\x84\x78\x0a\xda\x0b\xf5\xcc\x6d\xa1\x89\x63\x66\x85\xc0\xcc\x6e\x23\xb6\x24\x21\x74\xa0\xe9\x41\x1e\x99\x61\x83\x92\x20\x9b\xaa\xc2\x2f\xb4\x4d\x2f\x63\xe0\x2e\x8e\xd5\x99\x8e\x4f\xe9\x5d\xd4\x7e\xe5\xcd\x29\xa0\x79\xe5\x50\xd9\xc2\x78\xd8\x22\x23\xdc\x03\x4f\x07\xf1\xca\x58\x55\x3a\x3f\x51\xfd\xc2\x26\x0e\xd3\x41\x1a\xb7\x3c\x55\xe9\xeb\x64\x5c\xf9\x5a\xe5\x8d\x7b\x96\xb0\x56\xd2\x04\x8a\xe8\xe4\x0c\x32\x2f\x7c\x33\xd6\x24\x8e\x36\xeb\xaf\x0b\x90\x8a\x41\x3c\x2a\x1f\x74\xd2\x15\x21\x96\xd3\xac\x1f\xad\xda\x64\x46\xd7\x04\x15\xdf\xc8\x19\xd5\xc7\xb3\x4f\x85\xcd\xa1\xc9\x46\x95\xb7\xb6\x7b\x41\x2b\xd3\xec\xfb\x1b\x7a\x5d\xf6\xb5\xbb\xe5\xba\x84\x86\xe2\x66\xd3\x1a\xf9\x2c\x85\x48\x62\xdb\x42\xaa\xfc\xf9\x79\xce\x3e\xb3\xf4\x12\xdf\x28\xce\xed\xe7\xfe\xc9\x9c\x07\xd6\x7d\x34\x56\x00\xd2\xbb\x8a\x00\xfe\xd1\x8e\xca\x0f\xef\x24\x88\x3c\x2a\x47\xf7\x54\x1f\x74\xd9\xed\xa6\x59\x02\xbc\xa2\x70\x9d\xd0\xf7\xe1\x57\x51\x7c\xe2\x6e\x00\x07\xda\xb2\x49\xdf\xf4\xeb\x52\x82\x77\xb5\x94\xe0\x5d\x75\x08\xee\xfe\xd2\xfe\x39\xda\xb5\xd2\x91\xa3\x5b\x4e\x4f\xe2\x53\xf4\xfd\xdf\x7a\x92\xd6\xa1\xca\xa0\x32\xa7\xdb\xa3\x8f\x4f\x76\x4d\x41\xf6\x7a\x94\x87\x76\x0d\x0c\x95\x65\x73\x2d\x78\x8e\x16\xaa\xc6\x50\xad\x50\xd9\xfd\xcc\xf4\xca\x2a\x64\x71\xe1\xe4\x0d\x32\x9a\x7c\xad\xd2\x20\xd6\x84\x83\x1d\xfa\x89\x99\x5b\xc6\x89\xcb\xb9\xd1\x86\xf4\x23\xce\x98\x07\x3b\x4a\xcd\xe7\x36\xa5\x87\x80\x35\x60\xec\x94\x83\x56\x54\xd3\x8b\x93\x9b\xf1\xa9\xa8\xd9\x7d\x8f\x16\xa2\x50\xfa\xd3\x10\x09\xe0\xce\xaf\x4a\x12\x5b\xe8\xcd\xd6\xd8\x9e\xab\x47\xc0\x7c\x7f\x3c\xd6\x5d\x52\xde\x56\xfc\x99\xea\x4f\x18\xc5\xe9\xba\xd8\x6e\x21\x21\xa7\x1f\xe3\x1b\x45\xb7\x18\xda\xcc\x0e\xd3\x64\x1d\xc9\x6b\xd9\x84\x2d\xa7\xf2\x70\x9a\x7e\x5a\x9d\x16\xbe\xcb\xdc\x27\x7f\xe3\x34\xe9\x17\xd1\xd0\x6e\xf3\xac\xeb\x00\xc3\xe3\x3b\xee\x2a\x06\x1d\x96\xac\x77\x10\x81\xea\xa9\x1c\xa5\xf5\xa2\x93\xdd\x9a\x56\x92\x82\x03\x90\xa6\xbd\x56\xdd\x47\x52\xb4\x57\x81\xef\xdb\xa9\x96\x52\xbe\x19\x93\xee\x1a\xa9\x15\xff\x4c\x66\xd9\xf5\x9d\xf5\x61\xee\x71\x9c\xba\xc0\x82\x43\x19\x8c\xff\x01\x27\x2d\xff\x43\xb0\x99\xf2\x9f\xd2\xe6\x55\xdc\x9c\x91\x24\x8b\xcd\x5a\x3a\xa4\x03\x8e\x88\xaf\x15\x3b\x59\x94\xf4\xca\xbc\xc8\x22\x13\x23\x18\x76\xb9\x47\x47\xce\x00\xc2\x19\xac\xfc\x56\xc7\x2f\x94\x81\x35\x3d\xe1\xf0\xd4\xe9\x34\x41\xed\xf8\xc2\x19\x22\x48\x89\xf8\xe4\x98\x4f\x57\x6d\x96\x47\xfd\x41\x41\xf3\x26\x29\x4b\x9f\xd3\x61\x05\x0a\xf8\xa9\x9c\xa0\x46\x18\x71\x7d\xac\x53\x69\x35\x7e\x63\xd7\x48\x32\x88\x5e\x7a\xc9\xe6\x34\xac\x8e\x81\xbc\x9a\x39\x55\xca\xdb\xe7\x1c\x70\x25\xbb\xb5\xd1\xc4\x61\x4c\x7b\x02\xb2\x58\xcc\x51\xa9\x49\xc8\x8e\xd0\x43\x03\x6c\x34\x33\x05\xfd\x5b\x9a\x6f\x8f\x62\xb3\x6e\xb9\x59\x03\x11\xfe\x1d\xec\x51\x24\x97\xff\x4b\x82\xce\xe2\xe0\xa0\xaa\xc0\xbe\x8d\x77\x1b\x39\x34\xe2\x38\x5d\x63\xf9\x12\x4c\xe4\xcd\x40\xa9\x0e\xc0\x42\xc1\x3f\x3a\xac\x10\x55\x59\xd9\x8d\xab\x91\xd8\x23\xec\x3b\x4c\x6a\xeb\xf8\x06\x96\xa4\x1b\x96\xa9\x6f\x85\x7c\xa0\x69\x0f\x74\x6d\x3f\x02\xd5\x2b\x00\x5f\x57\x61\x5f\xf8\x46\xd9\xe7\xb4\x1c\x6d\x57\x6d\xd0\x81\xea\x4c\xe7\x76\x37\x69\x8c\xd0\x25\x9b\x8b\xea\x9c\x41\x92\x14\x9b\x8b\x11\x7d\x4e\xf4\xe7\xcb\x07\x79\xa3\xdf\x0c\xbc\x68\x26\x97\x6e\x60\x12\x6f\xe8\xda\x8b\x79\x31\xcd\xb6\xe3\x77\x58\xca\x2c\xf0\x61\xc0\x79\xfd\xdd\x1b\x63\x85\x7a\x45\x2d\x47\x88\x67\x55\x21\x66\x03\xa6\x08\xcf\xf9\x29\x4c\x37\x50\xfb\x0c\x30\x55\x44\x46\xfb\x85\x56\x7a\x2a\x34\xdb\xbb\x97\xf0\x0b\x2d\xe5\x04\xc3\x37\xe7\x6b\xb5\x4b\x49\xe3\x3d\x2a\xca\x82\x85\x53\x44\x68\xc1\x37\x44\xfe\x40\x61\xca\xf3\xa1\x8d\x0b\x86\x49\xef\x73\x4d\x25\x2d\x27\x57\x78\x4e\x51\xbc\x65\xb6\x5f\xc6\x26\x8b\x8a\xf5\x56\xad\x74\x52\x7d\x92\x6f\x1a\x1d\x91\xa1\x29\x0a\x08\xe6\x7e\xdd\x81\x26\x14\x80\x42\x15\xcb\x4c\x58\x3c\x52\xad\x04\x0c\xd0\xe3\x1d\xc5\x09\xc5\xe5\x48\xfc\xce\xbf\x24\x9b\xa3\x51\xc5\xd8\x52\x0f\x75\x6a\x42\x99\xd5\x7c\x23\x63\xb7\x45\x2b\x50\xce\xa1\xa1\x0f\x1f\xd9\x36\x21\x4b\x89\x81\x67\xf0\x17\x0e\x80\x1f\x20\x2d\xe5\x48\x5c\x16\x0e\xb8\xae\x2f\x9f\x1b\xff\xfc\x94\x62\x6a\xf5\xc6\x71\x54\x94\x59\x7f\x9d\xad\xaa\x63\x5a\x57\x9d\x08\x4a\x91\x82\x68\x51\x08\x3d\x8e\xcd\xc9\x04\x61\xcc\x2a\xda\xf1\x27\xd2\x15\xc5\xe7\xf3\xcf\x35\x3d\x3b\x8d\x86\xf0\xf8\x7b\x45\xcb\xfb\x53\xee\xfe\xd2\x7c\x3b\x76\xac\x03\x5c\xd1\x0c\x54\x40\x73\x56\xe3\x3a\x4e\x2a\xca\x24\x9b\xbc\x98\xae\x83\x90\x51\x93\x22\x23\x36\x79\x43\x11\x5c\x9f\x68\x70\x2b\x29\x0a\x97\x68\x4b\x25\x1b\x17\x5c\xb2\xb1\x81\x20\x63\x94\xa5\xcb\x58\xee\x8c\x31\xa7\xe1\x13\xbc\xf9\x74\x1c\xd3\x5e\xce\x6c\x3e\x20\x7f\x4a\xb7\x62\xf0\x75\xbd\x16\xd1\x57\xb2\x87\xdf\x21\x99\xee\x77\xb5\x5a\xeb\x61\x95\x3a\x37\xdf\x28\x4d\x16\x95\xc3\x96\x82\x9f\xbf\xae\x2a\x6f\xaf\x4f\xa5\xa9\xaa\x67\x1f\x44\x55\x80\x4c\x30\x56\x57\xaf\xdb\x06\x5f\x98\x6f\x26\x4f\xd6\xfb\x0c\x17\x17\xdb\xfb\x16\x0e\x28\x39\xd2\xd3\x8a\x40\xfb\xb4\x02\xf4\x2f\x47\x89\x49\x42\x42\x41\xb8\x2c\x13\x97\x2f\x5d\x66\xd9\x05\x7f\x3c\x9f\x70\x5b\xae\xa8\x1a\xfe\x28\x4b\xbb\xb1\x1d\xe6\x3b\x69\x4a\xf1\x2d\xd7\x81\x2d\x73\x7c\x31\x0b\x07\x6a\x6c\x55\xa8\x07\x3e\x00\x08\x26\x4e\xb3\xeb\x81\xda\xa0\xd0\x09\xc1\xf5\x75\xb8\x1f\x42\x37\xe3\x3b\x0c\x6f\xd1\xb2\xc5\xc1\xba\x05\xea\xe4\x48\xcd\x5e\xa2\x75\x8b\x73\xfa\xb2\xb2\x08\xfb\x96\x9e\x83\x69\xc2\x70\x03\x1b\xc8\xd7\xc1\x2e\x87\x8d\x5a\xb5\xb1\x4d\xfa\xc5\x80\x73\xec\x48\xbe\x9e\x52\xb2\xe9\xa7\x5c\x73\xcc\xc0\x64\xbd\xf5\x39\x3f\xd0\xe7\x15\x02\xee\x8c\x3e\xd5\x7e\xac\x92\xd9\x5b\x3a\x4a\x98\xf9\x2f\x94\x4d\xb4\xc3\xca\x85\x1d\xda\xa4\x98\xa3\x44\x0c\xf7\x24\x04\xad\xa7\x9e\xf2\xfd\x09\x3e\x32\x3f\xab\x48\x95\x10\xf4\xc2\x67\xd9\x3e\x51\x5e\x75\x31\xa8\x5c\x42\xa5\x23\xf7\x9b\xaa\x7f\xf6\x37\x55\x68\xd0\x8f\x96\x0b\x45\x5d\x77\x98\xc6\x90\xaf\x6b\x6d\x1d\xcb\x45\x48\x4b\x0b\x09\xfc\xd7\x54\x6b\xd3\x6b\x8a\x27\x32\xf5\x55\x4a\x1c\x57\x37\x55\x53\xff\x4d\x15\xbc\x84\x36\x2b\x4c\x94\xec\x50\xfa\xd9\x0a\x2c\xfd\x5e\x50\xc7\x43\xef\x59\x74\x1a\xb2\x4a\x13\xf8\x7b\x63\x0f\x2f\xf8\x89\x6e\x98\xe6\xc6\x75\x04\x7f\x9c\x56\x62\xfa\x46\xb2\x39\x98\xcf\x5b\xe3\x5a\x7b\x53\x13\xd7\x43\xd7\x24\xbd\x34\x99\xd5\x55\xe3\x5a\xa5\xb6\x7a\x62\x44\xda\x97\xc6\xbe\xb6\xfb\x3f\x37\xf6\x7a\x75\xa3\x38\x8e\x52\x11\x87\xc5\x80\xbc\xa1\x3d\xf5\x37\x54\x69\x2f\xab\xbc\xdd\x0c\x02\xb9\xae\xfb\xc4\x93\x1e\x8c\x55\x8b\xe4\x65\x45\xa2\xcc\x9c\x45\xc8\x82\x7c\xac\x92\x11\x86\x74\x02\x88\x12\x4f\x75\xa2\x73\xe3\x0a\xdf\xa8\x84\x95\x89\xe3\xc7\x29\x51\x81\x66\xba\x8f\x74\xe6\x71\xac\x42\x92\xb3\x74\xa4\xc1\x1d\xbb\x3d\x56\x0e\x34\xc3\x74\xe1\xd2\xb3\x97\x82\x25\xfb\x81\x06\xd5\x3c\xa8\x34\x96\x5f\x65\xd7\x0c\xf3\x39\x3b\x51\xd5\xaa\x0f\xc7\x9e\x64\xf8\x3e\xf6\x02\xcb\x6d\xd0\x71\xe6\xb4\xd0\x1c\x03\x3a\x89\x85\x6f\xb0\x06\x0d\x8e\xef\x19\x87\xe0\x5a\xae\xa2\x00\x97\xee\x92\xe4\xac\xea\x28\xfe\xa1\xaa\x4e\x6c\x99\x34\xb1\x23\x46\x49\x21\xc4\x26\x2a\x50\x38\xaf\x8a\xdc\xe7\x95\xbd\xfd\x46\x19\x85\x2b\xab\x91\x5d\x9b\x55\xd5\xc1\x33\x81\xe6\x69\xfd\x4e\xa0\xaa\x88\x9c\x8a\xe6\x7f\x19\x6b\xfd\xb8\x51\xd1\x52\x76\xfa\x18\x8e\x40\xb1\x91\x1a\x47\x13\x85\xc5\x36\x9f\x83\x81\xec\x19\x7c\xce\x5b\xf0\x39\x31\x4f\x7f\x49\xb5\x1c\x5c\xdf\x56\x7c\x3c\xec\x34\x63\x2e\xce\x4f\x1d\xc8\x7b\x16\xdb\xcb\xd1\xa1\x4d\x4a\x47\x3f\x55\x4a\x47\x3f\xd5\x9c\xca\x51\x3f\xc9\xc1\xf1\x27\x4b\xa0\x5a\x35\x0e\xf9\xe9\x65\x8f\x3f\x52\x9d\x40\x60\x1e\xe4\x3f\x6a\x20\x69\x1f\x46\x49\x99\xcf\xb6\x76\xef\x66\x1b\xd9\xa2\xa5\xa4\xd4\x1a\x25\xff\x77\x5c\xe9\x68\x9c\x6c\x24\x82\xa9\x4b\x92\x4a\x9b\x09\x3d\x30\xdf\x34\xd1\x6f\xf5\x4c\xb6\x42\x96\x13\xcb\xef\x0f\xc7\x1e\x89\xf5\x87\x5a\x51\xb4\xcc\x6d\x09\x69\x16\xf4\x13\x6c\x25\xca\x07\xbe\xee\xf8\xc9\xed\x95\x2b\xdc\x43\x85\x7f\xfb\xf3\xb1\xff\xcc\x9f\x37\xf0\x55\x7e\x1d\x54\xdf\xf2\xd8\xd8\x1d\xdf\xc6\x8a\xe0\x9b\x26\xa2\xfe\x28\xc9\x09\x2f\xac\xa8\x94\x90\xdf\x95\xfc\xbf\xe7\x08\xa8\xac\xdf\x9a\xe9\xa7\x09\x88\x2e\x5d\x19\xd9\x6b\x2c\x68\x6e\xbe\xe5\x28\x1f\x08\xb9\x9c\x20\xbb\x5a\x8e\x1e\x6b\x4b\x43\x93\xda\xd7\x51\x97\x9c\x55\x0d\x12\xdf\x1e\xfb\x94\x27\x32\x29\xd8\xbd\x27\x34\x25\xd3\xf9\xda\xc1\x54\x2e\x2f\x3f\xe8\xd9\xe2\x51\xb0\x56\x22\xf9\x42\xb3\x3b\x0e\xbc\x15\x1f\x93\xb7\x2b\x15\x4c\x9f\xa9\x60\xa2\x7f\x3c\xca\x51\x0d\xe8\x3a\x5a\x6f\x71\x4c\x92\x96\xd2\x06\x3b\xab\xf0\x35\x3a\x14\x09\xa3\x74\xce\xbb\x3d\x8c\xdb\x43\x86\xf3\x08\x1e\x8d\x6f\xc8\x23\x41\x90\x70\x1d\xc3\xcb\x47\xbd\x8a\x2a\xcb\x24\x4a\x93\x07\xfc\x81\xc3\x31\x3d\xd2\x08\x6c\x3e\xe0\xa9\xfe\xf9\x58\x81\x38\x39\xdb\xe0\x84\x3b\x3c\x91\xd8\x45\x1a\x10\x34\x2e\x5c\x50\xfd\x48\x61\xd4\xb3\x1c\xf6\x63\x27\xb2\xe3\x02\xdb\x08\xb4\xac\xe4\x3f\x54\x0f\xbe\x89\x3c\x09\xa0\x6b\x74\x75\x4e\x1b\x68\x8b\xa4\xc0\xda\xe0\xdf\xa7\x65\x5e\xd4\xda\x92\x39\xdb\xc5\x37\x6a\x54\xd7\xd2\x74\xd6\x07\xca\xff\x94\xe4\xcb\x1c\x9c\xed\x79\x89\xd6\xee\x61\x1c\x25\x3f\x2e\xb6\x3f\xb1\xe1\x4a\x11\x49\xd2\xd7\xd1\x51\x57\xef\x27\xa8\x61\x8f\x73\xed\x67\xe9\x1a\x36\x17\x8a\x8a\x47\xf1\x48\x7c\xd3\xe4\xb5\x47\x49\x5e\x64\x25\x98\x67\x85\x00\x71\x37\x0e\x68\xbe\xae\x33\xd0\xf5\xa5\x84\x09\x1b\x76\x58\x97\x05\x0f\x6b\x5e\x06\x9b\x14\xd5\x46\xdc\xe6\x75\x40\xd9\x27\x94\x7e\x4b\x6f\x7a\x4f\x28\xc6\xdd\x73\x58\x66\x0a\x17\xe9\x40\x92\x2e\x7f\x38\x2c\xe3\xe5\x34\x03\x72\x5a\xd2\xe5\x8a\x8b\x4c\xf1\x22\x65\x96\x32\x77\x2d\x9f\xe0\xbe\xa6\x14\x4c\xaf\xb9\x8a\x9a\xb1\x59\x9a\x8f\x4c\x68\x55\x44\xca\x7e\xbe\x93\xa2\xad\xec\xb3\x9c\x76\x2d\x27\x96\xcd\xe5\x75\x21\xde\xab\xde\x96\x29\x70\x38\xe1\x2e\xba\x0b\x4a\x47\x2f\xcd\xf2\x02\x22\x22\x8b\xbe\xdb\xc5\x0d\x7e\x23\xdd\x42\x31\x30\x49\x4b\x71\x18\xdc\x20\xa3\xc1\xd7\xaa\x3a\x1f\xa6\x49\x1e\xe5\x85\x4d\x8a\x78\x7d\x4e\xe9\xf8\xde\x08\x14\x3b\x17\x0b\x70\xe0\xa4\x00\xea\x03\x79\x8f\x53\xba\xfd\xf1\x86\x6b\x82\x8d\x92\xe5\x34\x1b\x9a\x42\x28\xce\xb0\x03\x71\xf4\xf1\xb5\xb2\xc1\x65\x62\x86\xaa\xd0\xe8\xf8\xd0\x3c\x37\xda\x94\x91\x5f\x9a\x6f\x77\x53\xc0\x62\xe9\x33\x2e\x9f\x5d\x3d\x8d\x54\x3f\x55\x71\xd2\xac\xef\x54\x0c\x79\xc7\x29\x02\x80\x79\x07\xf4\x0a\x63\xfe\x21\x26\x10\xe5\xb9\xf7\x14\xab\xcc\x2d\x2c\x2b\x41\x49\xfb\x0e\x28\x56\x10\x04\xc4\xf2\x08\x22\x43\x18\x39\xc6\x09\x31\x25\x04\x0d\x3e\x3a\x73\xdf\x84\xe9\xc2\xd4\x5d\x6d\x6a\x92\x2d\x32\x6b\xf2\x32\x73\x19\x7f\xe9\x34\xa2\xd9\x94\x56\xa5\xcd\xb5\xff\xa5\x79\xa2\xde\xce\xd2\x51\x9a\x11\x0f\x18\xab\xd5\x23\x88\x04\x28\x81\xaf\x1b\xe1\xc2\xcb\xd4\x29\xe4\x78\x75\x6f\xd1\x10\xe9\x44\x8e\xd8\x71\xbd\xb9\x63\xbb\x4e\xeb\x5f\xd0\x91\x8a\xe4\xf8\x0f\x31\x96\x9a\xdd\x8d\x51\x39\x63\x45\x62\x75\x4e\xef\xd7\xd9\x4e\x8d\x08\x76\xda\x8d\xa9\xb6\xa7\x76\x63\x58\x21\x57\xd3\xaf\x5c\x54\x55\x93\x22\x33\x65\xb7\x36\x86\x27\xf1\x73\x7c\x33\x85\x42\x7b\xe1\x05\xe2\x5b\x4d\x40\xcd\xe7\x12\x6c\x00\xda\xf3\x75\xb5\xaa\xdc\xfb\x7f\x91\xc8\x35\x91\x6d\x81\x62\x26\x0e\xae\x17\x14\x20\x8b\x8b\x2c\x42\xfa\xe1\x91\xc6\xb9\x89\x6d\x3e\x02\x17\x0d\x0d\x09\xec\xc3\xed\x40\x95\x91\x6e\xab\xe4\x52\xd7\x64\x69\x32\x53\x1d\xa3\xa8\xea\x6c\x21\x52\x57\xe9\x29\xaf\x2d\x0e\xd7\x24\x9a\x96\x49\x4b\xe3\x14\x5f\xc7\xdf\xf1\x4d\xf0\xa4\x42\xf0\x5b\x1b\x0f\xcd\x8a\xcd\x72\xf0\xd5\x0a\x4b\x81\xc7\xdf\x4d\x14\x37\xee\x84\x16\x34\xff\x8d\xaa\xbe\x8c\x62\x13\x12\xd5\xfd\x5c\xe5\xb5\x3a\x3e\xca\x2f\x1f\xdc\x00\xb3\xae\xc3\x5e\xef\xdd\xeb\x24\xe0\x88\xac\xe2\xd8\x67\xf2\x38\x2f\x9b\x08\x84\x6d\x28\xce\xc3\xfa\xe0\xa0\x66\x23\xce\x61\xb3\xe2\xf1\x1b\x95\x04\x25\x9e\xad\x5c\x20\x98\xb3\xd9\x8e\x67\x0e\xa2\x34\xf8\xc6\xab\x63\x4f\x69\x78\x59\x05\x20\x95\x47\x88\x23\x1e\x31\x1f\x5c\x34\xa9\xb8\xb6\x1c\x8f\xc8\xc9\x29\xa3\xb4\x67\xb1\xfd\x77\xbf\xf2\xeb\xfb\xbe\xf2\xa5\xc5\x87\xbd\xb3\x76\x15\xd3\x89\xd5\x79\x54\xb7\x01\x3f\x82\xc4\x0e\x52\xaa\x3f\x4f\xed\x7d\xd2\x15\xd8\x72\xd4\x44\x6f\x13\x00\x74\xe3\x12\x95\x26\x11\x92\xb7\x3a\x0a\xcc\x7a\x7f\xec\x41\x17\x52\xb1\x45\x80\x30\xdb\x21\x50\x28\xbe\x9e\x19\xd5\x90\xf9\xba\x51\x6b\x56\x8a\x87\x9c\x44\x81\xdd\x3a\x89\xdd\xc4\x37\x6a\x37\xd9\x2c\xed\xd9\x99\x3a\x89\x8b\x83\xec\x42\x80\x14\x7b\x7a\x66\xe2\x53\x2f\x03\x52\x09\xad\x4c\x24\x6b\x80\x4c\xbc\xce\xc1\x96\x8e\x42\xca\x14\x26\x89\x2d\x12\xe6\xce\x4c\x54\x43\x25\x48\x3e\xcf\xc3\x1f\xc5\x76\x47\xf5\x14\x1b\x97\xd4\x26\xe3\x4e\x3b\xa7\x63\x7b\x70\x9f\xbb\x56\x6c\x42\xe7\xc7\xc4\x6d\x27\x44\x4d\xd5\xc8\x39\x0b\xb7\x34\xcf\x43\x05\x22\x12\xec\x90\xcf\x51\x1c\x43\xa9\x94\xdb\xff\xb0\xa3\xbc\xcc\xf3\x2a\xbd\x14\x99\xc2\xf0\x26\x73\x24\xf2\xd5\x5f\x8a\xde\xac\xef\xaa\xca\x6d\xb6\x2a\x7e\x19\x0c\x05\xf7\xb0\xf1\xcd\xd4\x1e\xa0\x42\x19\xf7\x82\xc2\x1b\x67\xaf\x34\xa8\x7b\xa8\x4e\x15\xc0\xd0\xba\x9f\xf1\x15\xf7\xfb\x63\xc5\x9e\x72\x3c\xf0\x90\xf0\x2b\x0d\x92\xe8\x0b\xed\xd5\xd4\x19\x57\xa9\xc1\x56\x1f\x91\xe2\xec\x66\x54\xe7\x81\xe7\xda\xa3\xb2\x98\x51\xa2\xc6\x87\x69\x54\xd1\x25\xc0\xfe\x90\x48\xb7\x3e\xaa\x8e\xe3\x78\x25\x4d\xb6\x29\x2c\x0c\x1f\x6e\xac\x5d\xc7\xeb\x58\x94\xec\x5a\x8e\x31\xe6\x06\xcd\x8d\xac\x62\x1a\x47\xfe\xbc\xef\x9d\xcd\x8b\x68\x68\x0a\x9b\xc3\x99\x11\xd1\x3c\x7c\x23\x90\x99\xcc\x52\x46\x6b\xe2\xa1\x5d\x94\x5e\x84\x2f\xf0\x29\x56\x91\x50\xac\x28\x64\xb8\x29\x8b\x28\xad\x62\x71\xc7\x7b\xf2\x2e\x4e\x7e\xec\xbc\x2d\x1d\x3f\xb0\xef\x62\xab\xf1\x3f\x4c\x1a\xa6\x34\x8f\x86\x51\x6c\xa8\x81\x6d\x49\xa8\x33\x36\x94\xf4\x09\x4e\x4b\x2e\xa5\xa9\xf8\x23\x34\x59\x3f\x8a\xe3\x59\x95\x5c\x3a\xca\x2f\x26\xc0\x29\x4f\x6a\xfc\x3d\x32\x6f\x7c\xad\x5a\xb5\x7a\x66\x4d\xf2\x73\x70\x3b\xd1\x6a\xc9\xd7\xaa\xe0\x92\x8f\xa2\xc4\xc4\x18\x45\x87\xb4\xf2\x8d\x9f\x1f\xa3\x9d\x55\x60\x57\xd5\x13\xa3\x44\xf7\x11\xde\x5f\xfe\x41\x81\x73\xe2\x28\x89\xc2\xd6\x66\x1d\xca\x05\xc7\xf9\x3f\xbd\x20\xf7\xb5\xf3\x34\xcb\xd6\x01\x4b\x91\xfa\x10\x4d\x1e\x3b\x59\x4a\xb2\x10\xe7\x2f\x6c\xf6\x91\xa0\x86\x8c\xd9\xa5\x00\x4b\xc4\x42\xbe\xca\x5a\x79\xe8\x36\x43\x56\x96\xaf\x1b\x28\x3b\xbf\x4e\x9d\x01\x26\x59\x57\x94\xf8\x6f\x63\xc1\xf2\x8d\x5a\xdb\x44\xac\x5a\x28\x5e\xd5\x2b\x8a\x57\xf5\xca\x54\xa9\xa9\x5a\x0e\x03\x1b\xc7\xb4\x65\xa5\x53\xa6\xe5\x44\xbc\xbe\x4f\x76\x1f\x09\x92\x63\x8a\x94\xb5\x0a\xdb\x8a\xc1\x4e\xff\x2b\x7f\xa2\x01\x91\xaf\xe3\xf5\x51\xcf\xb8\x41\x5f\x81\x2c\x25\x17\xe9\xe1\xbb\xc3\x7f\xc0\x31\xc2\xdc\x31\xb0\x80\x27\x68\x0f\xc3\xa7\x15\x14\xbb\xb4\xdf\xf9\x82\x24\x40\x0c\xf0\x16\x5f\xc7\x5e\x44\x1a\xe4\x4f\x1a\x32\x59\x99\xaf\x6c\x09\xe7\xb5\x0a\x7d\x5f\x99\x1a\x74\x6a\x7e\x4c\xcb\xae\x83\xaf\x21\x72\xdd\x39\x71\xee\x88\xdd\xd5\xf1\x4d\xbe\x1a\xd1\x99\x16\x03\x9b\x7d\x9e\x3e\xe4\xb2\x6c\x4b\x42\x7a\xfe\x1e\x56\x1c\xac\xc2\xd1\xc0\x07\x5f\x87\x29\x49\xe8\xb8\x3d\x74\xb7\xac\xd3\xb4\xbd\xa6\xba\x91\xce\x62\x19\x22\xcd\x70\x1b\x3c\x9c\xc2\x81\x54\xb9\x68\x58\xac\x57\x00\x85\xe3\x64\x04\x1c\x5f\x84\x1a\x9f\xd2\x56\x05\x8c\x92\x55\x56\x25\xc9\x4e\x1d\x1f\x70\xd5\x2f\x23\xc2\x97\x43\xb0\x7e\x94\x55\xe6\x47\xce\x4a\x9f\x22\xbe\x05\x75\x66\xfe\xfc\x78\x66\xff\xaf\x7f\xd5\x35\x8d\x35\xa4\x38\x6d\x31\xa8\x36\x65\xf5\x92\xe2\x53\x29\xff\x6a\x0a\xff\xfa\xd5\x85\xb6\x35\x7d\x9b\x31\x92\x5b\xea\x0a\xd5\xbb\x48\x85\xc3\x6f\x36\xca\x39\x92\xf4\xab\x4a\xf9\xbd\x89\x89\xe7\x9b\x29\x1f\x8a\x1a\xdc\xcb\x2c\xe1\x10\x1c\x5f\x7a\x43\x85\x62\x37\x6a\x22\x38\x4c\x7a\x8c\x22\x02\x2a\xb5\xf7\x03\x9f\xc8\x67\xbd\x00\x1c\xe6\x37\xd4\x36\xdf\x18\x7b\x86\xbc\xd9\x89\x9c\xd0\x80\xcd\xcb\x92\xc3\xa7\xae\x29\xac\x13\x47\xbb\x52\x3a\x6a\x28\x1b\x7f\xa3\x8c\x0a\x3b\xab\xd9\x74\x7d\xe8\x70\x9d\x66\x49\x58\xa5\xab\xe1\x93\x94\x8e\x3f\xc0\x07\x26\xe9\xb9\x6e\x31\x60\x00\xe1\x66\xf1\xb5\xaa\x2e\xf5\x6c\x16\xb9\x98\x19\x01\xf8\x2d\x9a\x3b\xbe\x9e\x8a\x6e\xa8\x0d\x68\x6d\x90\x7a\xf5\x7e\x84\xe2\x20\xc0\xe2\x6b\x85\x24\xd3\xac\xec\x0b\x1e\xed\x57\xfd\x9c\xf4\x4b\xfb\xd4\x5d\x1e\xc5\xf1\x3a\x65\x02\x51\xb1\x79\x84\x5e\x1c\x45\xa8\x1b\xf8\x10\xa2\x96\x8f\x94\x22\x3d\x43\xf4\x64\x45\x37\x30\x77\x67\xa5\x2f\xb6\xc1\x55\x3b\xa9\x40\xbb\xd3\x11\x1c\x31\x42\x46\x39\x24\x54\x5a\x8e\x06\xff\x6e\xd0\x5a\xaa\x62\x0c\xaf\xb1\x71\x41\x31\x85\xbd\xec\x1a\xe7\xbb\xb1\x09\x57\xf2\x6d\x5a\x6f\x17\x8a\x7b\x8e\x89\xc0\x65\xb9\xb8\x46\x84\xc3\x70\x66\x52\x43\xe9\xd6\x0e\x68\xbf\x5c\x87\x51\x5c\x26\xe9\x6a\x14\x0e\x66\xaa\xe8\x88\xf9\x29\xe8\xa1\xe0\x39\x03\xb9\x00\x4b\x75\x77\xea\xdd\x16\x17\xf7\xb7\x97\xa3\x84\xb8\x27\x75\x3f\xdb\x51\xdd\xcf\x76\x74\xea\x63\xd5\x09\x13\x46\x36\x71\xc7\x12\xe2\xf3\x5b\x8a\xca\x7c\x7a\xad\x1c\x04\xb4\xa0\x40\x1a\xdd\x37\x35\xb1\x30\x36\xdf\xa8\x02\x6f\x98\x26\xa1\x1d\x15\x25\xb3\x79\x30\xd7\x09\xed\x38\xe1\x3d\x99\xe6\x0d\xd9\xdf\x36\xbd\xd5\x34\xf4\x67\x03\x33\x06\x06\x4a\x67\xf0\x63\x2f\xf9\x6f\x32\x93\xae\xa0\x1d\x5e\xe5\x12\xf7\x3b\x4a\xc6\x96\x93\xc0\xfb\x2e\xb1\xb2\x60\x6e\xee\x6a\x9f\xc6\x9a\x3c\x4d\x40\x03\x85\x14\x27\xf2\xf7\x38\x86\x76\x76\x54\xed\x0a\xbd\xc2\x88\x2e\x66\x40\x9b\x82\x34\xef\x31\x05\x5b\x6d\x4d\x14\xbc\xf8\x5f\x4d\x59\xcb\xdd\xbb\xdb\x99\x2d\xca\x4c\x1c\x2e\x07\x9b\xf3\xb9\xe6\xe3\x81\x27\xfb\x8e\xa2\xa8\xe5\xfb\x72\x3f\xd1\xa1\xfa\x27\x0a\x99\xb1\x9c\x96\xd9\x8e\xea\x48\xc3\x61\x0f\x36\x32\xb8\x0e\x33\x13\x9f\x3c\xbf\xa2\x15\x44\xaf\x8f\x15\x46\xe4\x4f\x03\xa5\x57\x71\x12\xbe\x82\x10\xea\x54\x8b\x51\xf2\x94\xd5\x62\x84\xad\x63\x92\x68\x47\x7c\x57\x3d\x18\x4c\xe2\x1d\x15\xfc\xf7\x52\x34\x5e\xe4\xd8\xaf\x6c\xdd\x68\x0d\x88\xa5\x6b\xda\xaf\xf6\x90\xcd\xc2\x28\xb7\x5a\x23\x19\xf4\x5a\x42\x35\xb5\xc3\xbd\xfb\x53\xc3\x87\x7c\xf1\x64\x6b\xc7\xb7\xe4\x7f\xa2\x60\x15\x6f\x50\x95\x14\xe1\x17\xbf\x38\xac\x1b\x7a\xa3\x91\xac\x3a\x35\x56\x15\xfc\x8b\x4a\xa2\xec\xbb\x63\x45\xef\x33\x9d\x85\xa2\x90\x2c\xb4\x71\x6c\x59\xd7\x16\xaf\x76\x45\xbd\xe6\x95\x29\x77\x86\xfa\xe7\x52\xd5\xde\x8c\xd3\xe1\x03\x15\x41\x7f\xa0\x2c\xef\x9a\xc9\xb2\x28\xcd\xf2\x56\xf5\x4e\x0e\x58\xe5\x3c\xdd\x5a\xcf\x6a\x94\x85\x65\x24\x0d\xb2\xfc\x6a\xf4\x36\xc2\x8b\xd2\x52\x44\x62\xd3\x78\xa0\x67\xdb\x69\x14\x73\xa5\x4c\xe0\xfb\xd5\xc2\x17\xe0\xb0\xc7\x04\x47\xc3\x51\x19\x13\x7d\x46\xe5\xd2\x38\xbf\x7f\x8f\xff\xf6\xcd\x1b\x5c\x32\x38\xa3\x2c\x0a\xed\xac\x0a\xf0\xde\x64\xa7\xd2\xf9\x45\xd5\xaf\x63\x13\x01\x4b\x01\x6f\x75\xdb\x14\x68\xec\xf9\xf9\x45\xea\x8b\x8c\x7a\xc8\x55\xe2\x97\xc1\xee\xa0\x9a\x7b\xc5\x97\xba\xe1\x3a\x88\x56\xd3\xc8\x15\xb2\x19\x62\x1a\x78\x18\xf0\x91\xa6\x59\xae\x2c\x75\x11\x51\x1a\xd5\x29\x45\x02\x97\xc2\xd7\x8d\xb3\x3c\xac\x7c\x08\xce\x7a\x0b\xc5\x84\x2f\xf8\x1e\x56\x25\xe3\x2c\x2d\xf9\xbb\xe1\xea\x7f\xa4\xdc\xfe\x8f\x1c\xe1\x70\xe5\x43\x99\xc4\x8c\xd2\x38\x12\xce\x14\xa7\xca\xee\xd9\x1e\xdf\xd4\x1d\x6b\x57\xa7\x0a\xa9\xbb\x77\xb7\x73\x9b\xad\x46\xa1\x93\x02\xc3\x16\xe7\xee\x08\xbe\x69\x12\x81\xe9\xd9\xa1\x49\x7a\x60\x35\x57\xfc\x55\x8e\xcc\x2a\xd0\xf5\xf8\x51\x54\xa8\x5e\x3b\xac\x0d\x91\xc6\xf5\x69\xcf\xc2\xac\x98\x7c\x10\x0d\xcd\xba\x69\x79\x0c\xc2\xcb\x81\xff\xe4\xcb\x0d\x72\xc7\xed\x9c\x04\x99\xe4\x34\xe2\x33\x58\xe7\xd6\xa6\x19\xa6\x96\xf6\x55\x47\xae\x25\x25\x13\x47\xb2\x0e\x80\x1c\x5f\x07\x9a\x60\x9b\x18\x3e\x67\x3c\x42\xf6\x9b\x4a\x3b\x87\xdf\x5a\xba\x18\x34\xc7\x7c\x5e\x98\x28\x01\x16\x59\x62\x54\x98\x64\x96\x0d\x52\xb8\xcb\xeb\x81\xf7\xd3\x2f\x4d\xcd\xd2\x9e\xc5\x76\x3f\x33\x49\x12\x59\x99\x69\x06\x33\x68\x62\x47\xa6\x12\x62\x04\x43\xd3\xba\x0d\xd3\x64\x55\xe5\xc8\x51\x67\xba\xa9\x04\x69\x6e\x2a\x9d\x2f\x43\xcc\x5a\x51\xd2\x9f\x41\x4b\x55\x4d\xdb\x17\x19\x7f\x94\x0e\x50\xd6\xbc\x33\xed\x70\x55\x6b\x9e\xb9\xb4\x69\x3a\x99\x4a\x3b\xf0\x3d\x9c\xd3\xed\xc4\x7b\xf7\xb6\x73\x9b\xe4\x91\xab\x0f\x39\xad\x4b\xaf\x7b\xa9\x1e\x12\x1c\x00\x51\x02\xb2\x05\x51\x7e\x6f\x2d\xfa\x52\xdb\xe6\xa1\xdc\xbb\xb7\x32\x13\xa1\xb5\x22\x1c\xd8\x44\x48\xb6\x83\x3f\xd4\xde\xbb\x77\x69\x97\xdf\xa3\x4c\xa8\x80\x19\xfb\x0b\x04\x10\x30\x5b\xd7\xc6\x4a\x60\xff\x3a\x05\x8f\x12\x62\x2b\xeb\xfb\xdd\xc0\x83\x6e\xdf\xd5\xe7\xe6\x47\x5a\x76\xe1\x14\x9b\x40\x44\x96\x3f\x18\x2b\xda\xb4\xab\x14\x40\xe2\x40\xff\x84\x08\x1d\x9c\xbe\xf4\x1e\x01\x8f\xfd\x90\xe6\x13\x35\xa8\xc3\xc8\x44\x21\xcf\x7d\x07\x11\xa3\x43\xbf\x2e\xcd\x0b\xcb\x7c\x03\x5d\x4b\xbb\x9b\x59\xc3\xf4\xf0\x8e\x08\xd2\x31\x61\x9e\x0b\x76\xd5\xc1\x97\x4f\x3d\xd5\x7e\xfa\xb1\xd6\x57\x17\xf8\xa7\x2e\x28\x2d\x96\x7f\x1a\x28\x4a\xd6\x7b\x53\x32\x25\x22\x14\x7b\x8d\xce\x16\x8c\x13\xc7\xc6\x02\xa0\xaf\x9e\x14\xdf\x85\x14\x22\x5c\xcc\xcb\xc4\xfd\x05\x44\xd8\x8f\xb4\x82\xe3\x7d\xd8\x79\xc6\x6e\xc1\x8e\x61\xf8\xa0\xcc\x8a\xdf\x03\x0e\x85\xb5\x7b\x68\x1b\x6d\x3c\x39\x69\xc0\xb9\xe4\x29\xf7\x12\xe3\x57\xef\x2a\xe4\xdf\x5d\x55\x1a\xe8\x45\x36\xff\xcc\x16\xc0\x5d\x1a\x0c\x44\xe0\xab\x5c\x2b\xdb\x8e\x95\xb2\xed\x54\x82\x64\x69\xbe\x3d\x32\x11\xf3\xad\x6a\x81\x32\xa4\x14\x3e\x1d\x2b\xa8\xe0\x0f\xd4\x09\x79\x5e\xa7\xbd\x1f\xeb\xc8\x69\x37\x4a\xe3\xf5\x51\xae\x1c\x65\xc6\xf1\x63\x50\x1e\xd6\x38\xb0\x23\x2a\xa3\x33\x33\x69\xb0\xbb\x19\xba\x08\x41\x1f\x2c\xaa\x30\xd5\x37\x0b\x4e\xc5\xfb\x22\xc2\x10\x30\xab\xc2\x35\xe4\x32\x5d\x8f\xa5\x33\xbd\xb7\x69\x91\xf3\x75\xa0\x14\x13\xd3\xd0\xc4\x0f\xb4\x94\x5c\xb6\x2a\x03\xbc\x43\x3f\x8c\xb4\xf7\x44\xa9\x27\x1f\x0e\x6a\xba\xb7\x35\x41\xdc\x6a\x95\xf0\x27\x82\x06\x29\xa9\x51\x15\x27\x3a\x47\xe0\xf4\xd8\x97\xd7\x6e\x91\xb1\x96\x34\xbd\x6f\xf0\xbd\xed\xaa\x6b\xb9\x59\xb6\x0f\x2a\xaa\x4e\x20\xe9\xe1\xb4\x32\x5d\x0e\x56\x34\xbf\x04\x03\x35\xbc\x29\x7e\xe5\x6f\x75\x3c\x9a\x0e\xec\x79\xae\x9c\xa7\x15\x25\x14\x3a\x2e\x2e\x87\x8a\xaa\x1f\xdf\x25\x42\x2a\x9b\xfd\xaf\x17\x5e\xa8\x0e\x83\xe5\xb2\x30\x45\x94\x53\xe1\x10\xac\x09\x5b\x3a\x1e\xb1\xc3\x51\x06\x37\xbd\xa9\xa2\xbc\x73\x72\x67\x5b\x5a\x5a\xf7\xa0\xef\x32\xa1\xed\x2b\xf9\x75\x4f\x08\x7c\x52\xe1\x58\xf6\xff\xfd\x7d\xb3\xba\x26\x75\xde\x6b\x66\xee\x86\x50\x12\xd6\xf1\x4d\xd5\x44\xf8\x3f\xdc\x53\x1d\xd4\x03\xcb\x2c\x3b\x0e\x1d\x0b\x9d\x34\x71\x59\x1a\x16\x2c\xc4\x3a\xa5\xcc\x52\xe3\x18\xe7\x1b\x75\xea\x77\xa3\x7e\x5a\x64\xeb\x2d\x45\x83\xf7\x3e\x3d\x17\x5f\xab\x16\x90\x74\x34\x4a\xf3\xa8\xa8\xe1\xd7\xce\xe1\x78\x10\xdb\xd9\x50\xb1\xb6\x5d\x9b\xe4\xdd\x32\xeb\x93\x2d\xa8\xb5\xdd\x09\x4c\x41\x4b\xf9\x45\x31\x13\x35\x3b\x46\x51\x45\xc8\xd3\x70\xd8\x77\xa9\x67\xc4\x81\x92\x50\x9c\x7a\x4b\x79\x9c\xaf\x2a\x85\xcd\xdf\xd7\xc5\x64\xdb\x8f\x92\x87\x5a\x4e\x52\xfb\xfb\xc8\x27\x22\x90\xfd\xb7\x48\xe1\xf3\xcd\x26\xf4\xfa\xd2\x3c\x6f\x96\x47\x48\x5a\x03\x27\xe0\x03\x1d\x6a\x42\x17\x8a\xd0\x6a\xba\x38\xe9\x15\xf8\x22\x5d\x4d\x09\xc0\xae\x6d\xf3\xd9\xd7\x73\x0a\x5c\xbe\x31\xf6\x12\xd1\xf3\x7f\x0b\x91\xb7\xab\xbe\xaa\xfc\x0d\x4d\x2f\xea\xc9\x77\x9a\x68\xd3\xa2\x64\x35\x2a\x64\x19\x70\x53\x66\x50\xeb\xd0\xdc\x6c\x85\x5f\x78\xa1\x9d\x17\xe9\x68\xd6\x37\x59\x31\xdb\xac\x46\x08\xe3\x7d\xef\xd0\x03\xa3\x50\xf4\xbb\x3a\x23\x59\x85\x63\xb1\x29\x6c\x6f\xc6\x67\x21\x6f\xaa\xc4\xe3\x09\x8d\x3b\x3a\xed\x4c\x49\x37\x4e\x31\x1e\xd2\x2d\xd9\x12\xe6\x9c\xbf\xf3\x18\xcc\x35\x4e\xa3\x23\x0a\x30\x39\x37\xf1\x35\xf8\xeb\x18\x0e\xd1\x92\x6b\xa8\x4c\x67\x76\x39\xcd\x86\x79\x4b\x07\x23\xf4\x72\x12\xa5\x68\xf2\x31\x13\x25\xf9\x6c\xad\x35\xb2\xde\x40\xf9\xfc\xbc\xc3\xaf\xd0\xfc\xf0\x4d\x43\x03\x25\x09\x95\x97\x49\x14\x4a\x66\xc0\xe3\x68\x78\x1b\x88\xd6\xc2\x63\x0a\x8b\x60\x0a\x1b\xb3\xe4\x1c\xbc\xad\x3f\xa6\x34\x3c\x5f\x07\x3e\xed\x34\xac\x8e\x1c\xf2\xbf\xe7\x7c\x42\xf7\x62\xa0\x34\xb9\xfe\x77\x9c\x9d\xfc\x2f\xea\xb4\xfb\xeb\xb1\xca\xdd\xbc\x32\xc5\x1b\xb0\x70\x00\xbc\x01\x6b\x19\xc9\x7c\x29\x09\xa9\x6f\xaa\x92\xe8\x37\x1b\x2c\xd0\xfe\x76\xcf\x86\xff\x2f\x65\x7f\x1a\x23\x49\xb6\x9e\x87\xc1\xd3\x59\x55\xbd\x4d\xcf\x3e\x73\x45\x8a\x9f\x84\xa4\x74\xf1\x8d\x61\x8c\x68\xca\xa0\xfd\x43\x7f\x32\x55\x5d\xe4\xbd\x5d\x10\x6b\x1a\xdd\x7d\x7b\xe8\x81\x01\xcf\xa9\xcc\x53\x99\x71\x2b\x32\x22\x19\x11\x59\xd5\x35\x80\x01\x59\xbf\x04\xc1\x30\x6c\x1a\x12\xbc\x08\x10\x2c\x02\x96\x6d\xc9\xa2\x48\x5d\x49\x57\x92\xc9\xcc\xbb\x90\x97\xba\xcb\x70\x96\x3b\x6b\xcf\xd2\x7b\xf7\xf4\xbe\xef\x5d\x6d\xc4\xfb\xbc\xe7\x9c\x27\x2a\x63\x64\xfb\xd7\x44\x4c\x57\x66\xc6\x72\xce\xbb\x3e\xef\xf3\xc4\x51\x82\x4a\x15\x96\xeb\x99\x31\x31\xe3\xc3\xfe\x12\xcf\x9d\x03\x50\x9d\x62\x15\xdb\xa1\x5d\x77\xbf\xeb\x48\x37\x1b\x5e\x37\xec\x02\x0d\xa9\x14\xfd\x74\x94\x9b\xa4\x52\x09\x3e\xd6\xa2\xaf\x3d\xc6\xd2\xe9\x71\x64\x13\xbc\x05\xd2\x38\x7d\xdd\x0f\x79\xb8\x62\xdb\x8a\xe9\x14\x69\xb6\x21\xa5\x6c\xf4\xd4\x2e\x31\xe5\xe0\x35\xaa\xc2\xbe\xd0\x0e\xd3\xc5\x3b\xa6\x24\x69\x16\x0e\x35\xcb\xfd\x90\x41\x7d\x1c\x6d\x1c\x55\xe8\x41\xe1\x03\x35\x27\xaf\xcc\x1b\x50\xa6\xc4\x5f\x36\xd3\xae\x31\xad\x2b\xd6\x14\xa3\x50\xcc\x76\xd8\xc6\x46\x60\x47\xf5\xc3\x2c\x71\xfe\x6b\xbf\x0a\x21\x5b\xf8\xf3\x46\x9b\x3a\x2e\x8d\xc9\x0b\x3c\x15\xa8\x1d\x85\xdd\xf2\x8c\x60\xc4\x4e\x8f\xab\x63\x7f\x87\xe7\xf5\xf8\xc8\x38\x34\x26\x6e\x12\x69\xff\x35\x3c\x7e\x18\x1a\x8d\xde\x50\x6b\xd6\x8e\x04\xc6\xf3\xa0\xd4\xe7\x94\x08\x82\x4e\xe3\xef\xd7\xd4\x7e\xf7\x0b\xbf\x96\x59\xd6\x34\x0b\xb6\xf9\x7f\xc2\x85\xe9\x09\x39\xde\x61\xaa\x3d\x04\x1e\xde\x71\x2f\xbc\x26\x1d\xcb\xac\x59\x59\x89\xb2\x81\x9a\x4b\xd7\x17\xe5\x26\x69\xad\x8d\x8d\x63\xdb\x33\xf1\x4c\x85\xdf\x3a\xb4\x61\x1f\x57\x66\xcd\x69\x7e\x31\xee\xce\x51\x80\x73\x92\xfa\x8d\xba\xca\x10\x9c\x3c\x49\xf4\x64\x58\x71\x28\xbd\x4c\x43\xdc\x4b\x03\x07\xed\xce\xd2\x6e\x2c\x2e\x92\x20\xc8\x81\x79\x2f\x08\xe2\x16\x37\x04\x97\x95\xa5\x03\x89\xde\x8d\xca\xd0\xac\x76\xf7\x14\x5c\x4f\x8c\xce\x57\x2a\xf3\xb8\x47\xa8\xcc\xa3\x31\x9e\x9e\xd4\xf1\xe3\x2e\x9b\x2c\xdb\xa0\x92\xa1\x52\x0e\xbb\x32\x69\xcd\x2d\x0d\xd3\x38\x1e\x79\xb5\x74\x54\xcb\x7e\x42\x8c\x91\x3f\x21\x72\x0d\x23\x22\x4b\xa2\x60\x13\xca\xc6\x97\x89\xe7\xf1\xf2\x78\x4f\xb0\x02\xdd\x1c\xc4\xa9\x5e\x72\xab\xdc\x9c\x9a\xbd\xf1\x5c\xf8\x69\xa6\xc3\xc1\x64\xb0\x23\x5f\x2e\xdf\x19\x36\xd0\x47\x34\xf8\x76\xd9\xbb\xb4\xbe\x19\xc5\x33\x44\x5d\x8b\x85\xef\x85\x22\xf6\x07\x95\xe5\xba\xee\xef\x7a\x9a\x65\x9e\x97\xc3\xcd\xd8\x06\xdc\xe9\xc5\xa9\x58\xfe\xf0\x7c\x73\x43\xa8\x3f\xf6\xfa\x4a\x60\x79\xb5\x8e\xe5\x8f\xb8\x8e\xfa\xa9\x6a\xd6\xe1\xcd\xdf\x69\xd1\x98\xeb\x9d\x31\x2b\x23\x99\xac\x67\xf3\x27\x43\xd2\xf2\x4c\x9b\x64\xb2\x15\x86\x85\x94\xee\x36\x78\x33\x51\x97\x6e\x4c\xc2\x44\x5c\x43\x9c\xb4\xfe\xff\x36\x71\xc0\xcd\x08\x12\xaa\xc2\x0c\xa5\xa4\xfa\xd2\x78\xf0\xe8\x1b\xff\xad\x27\x6b\x61\x9b\xb1\x14\x28\x17\x17\x5d\x29\xb4\x15\xe6\x4d\x8f\x7a\x4c\xcc\x6a\x6c\xa3\x64\x3d\xcd\x18\xb1\xad\xde\xd7\xa1\x26\x03\x22\xbc\xbf\x31\x54\xe2\x51\x7c\x8d\xe2\x11\xf5\x64\xfc\x14\xe9\xe7\x5b\x68\xea\xba\xad\x26\x5f\xf8\x55\xe2\x3b\x07\xe6\x9b\xa6\xd3\xb1\x5d\xd4\xe2\x10\x51\x9d\x91\xab\xd5\xe3\x29\x70\xd1\x2b\xcd\x4e\x06\x79\xc1\xfd\xde\xeb\xb1\x37\xac\x8c\x69\x0e\x6d\x56\x6c\xec\x24\x91\x9a\x2f\xb9\x40\x70\x02\xaf\x07\x41\x3d\xa0\x80\x9e\x84\x6e\x9f\xe3\x94\x9a\x15\xbd\x2c\x04\x0a\xa8\x97\x61\x6b\x7e\xbf\x15\x7c\xff\x51\xcf\x1f\x5e\x8c\xb2\x64\xe7\x56\x7a\x0c\xbc\xc1\x7f\xc2\xb2\xe1\x27\xb0\x9d\xdc\x5f\x11\x49\xc2\x2c\x49\x08\x3e\x1a\x13\x27\xf3\x15\xc2\xf8\xcf\xb5\x43\x05\xbe\x6f\x86\x43\x5b\x86\x3a\xe2\x3d\xdd\xb8\x43\xc3\x13\x6e\x7f\xc0\x23\x81\x8f\x5b\x41\xeb\xe3\x87\xe3\x80\xba\x3b\x3d\xf5\x9c\x25\x38\xec\xce\x05\x13\xa3\x78\x04\x44\xba\x93\x56\x70\x37\x27\xc6\xc4\x12\xf8\xdf\xe0\xc6\xf0\xad\xd7\xbe\xb2\xf8\xdf\xb7\xd1\xba\x69\x04\x81\x23\xe5\x8b\xd1\x13\xe2\x1c\xc9\x6c\x77\x24\x03\xbb\xf2\xef\x18\x49\xc1\xc6\xd8\xbc\x1e\xc2\xe1\x7f\x00\x28\x3d\xee\xf1\x34\x8d\x0f\x44\x09\x70\x5f\xb2\x19\x74\x4c\x5d\x3e\xe6\x46\xd6\xa7\x7b\x09\xcd\x4e\x6c\x4d\xb6\x05\x5a\x87\x72\xbd\x1e\x7b\xf6\xf0\x32\xce\x5c\xc9\xcc\xc0\xaa\xd3\x50\xed\x4f\x5c\x1e\x26\x54\xe1\x26\xaf\xb3\x47\xfe\x84\xac\x49\x1e\x25\x3d\x51\x2d\x0f\x50\x23\x79\xb2\xce\xbb\xba\x82\x7f\x66\x3b\xab\xb1\xcd\xf3\xc4\x89\xc0\xf8\x56\x2a\x95\xe0\x89\x98\x60\x68\x3b\xd1\x4a\xd4\xd9\xd9\xf0\x8c\xb0\x33\x30\x4c\x30\x94\xc7\xe4\x71\x81\xa0\xe6\x23\x59\xec\x4e\x56\x48\xee\x43\x3f\x31\x09\x23\x8e\x1f\xcb\xe2\xf3\x6c\xfb\x07\xe6\xbd\x48\xd3\x34\x0b\xe2\x02\xda\xbe\x41\xcd\x18\xdf\x00\xfb\xa7\xc7\xed\xb0\x4d\x45\xf7\x3b\x03\x04\xec\x75\x3f\x77\x57\x41\x55\x4e\x0f\xa8\x1e\x6c\x42\x98\x40\x10\x1e\x98\x68\x6e\xb4\x29\xe9\xb8\x22\xe8\x1e\xc4\x4d\x37\xc8\x9e\x5c\x65\x2d\xa2\x7b\x61\xf6\x27\xca\x0b\x31\x84\x87\x43\x58\xc0\x36\x8c\x82\x94\x6e\xaa\x65\x78\xa0\x74\x3e\xa6\xa9\xa0\x73\x2c\x54\x1b\xb4\x76\xd7\x6c\x61\x33\x93\xcc\x05\x08\xa4\xb6\xa3\xdc\x48\x6b\xc3\x6b\x46\xdf\x20\x48\xcb\xa6\x74\xab\xb5\x45\x30\xde\x15\x35\x87\x99\x5d\xf9\xab\xcd\x5f\xdb\x49\xdd\x99\x5d\x13\xb9\x16\x05\xbd\x22\xa4\x9a\x9b\x10\x0a\xfe\x86\xb8\x0d\xa9\x2d\xff\xd7\xbf\x20\x96\x05\xe1\xf5\xb3\x6d\x62\x37\xb9\xc2\xc2\x7a\xd7\xfc\x43\xc9\x8b\xcc\x24\x3d\x30\x1a\xe2\x49\xfe\xe2\xa4\x52\xd7\x22\xe1\x23\x64\xc1\x08\xb0\x7f\x99\x01\xfb\xbf\x2b\x2b\x14\x0b\xff\x26\x6b\xaa\x5b\x19\x22\x9d\x0d\x98\xe6\x3f\x12\x73\x84\x9a\xc0\x87\x95\xfa\x20\x69\x84\x1f\xab\x9b\xf9\x28\xb2\xb4\xf0\x9d\x0d\x18\xbd\xcb\x6c\x6c\x2f\xd3\x86\x1b\x0a\x85\x43\x57\xa0\x4d\xe8\xf2\x7e\x01\x2f\xa0\x27\x53\xdd\xfa\x57\x30\x0b\xd3\xb5\x99\x84\x2d\x78\xb9\xdb\xb0\xd6\x60\xfd\xc1\x9f\xe2\xc2\xa9\x90\x54\x75\xfa\x59\xe4\x3a\x6b\x4e\xbf\x42\x9e\x8c\x8b\x95\xea\xf8\xe4\x0a\x93\x60\xb6\x52\xd5\x2f\x5a\x01\x13\x7f\xac\x8e\xe9\xc1\x0a\x1f\xda\x81\x79\x97\x81\x55\xe6\x63\x1a\x5e\x27\xe6\x9f\x51\x4c\x38\x4a\x46\xf9\xc8\x31\xed\x39\x85\x11\x0d\xc4\x9c\x81\x9d\x96\x0a\x68\x76\xa3\x95\x15\x9b\xd9\xa4\xb3\xa5\x7a\x52\xe1\xb7\x9a\x22\xca\x7d\x6d\x7f\xf3\x65\xfd\x7b\xcc\x08\xcc\xb4\xa5\x2a\xab\x27\x53\xfa\x06\x42\xae\x84\x90\xd8\x6f\x17\x15\x45\xd4\x13\x82\x16\xf4\xad\xc9\x8a\x58\x92\xdc\x00\xbb\x84\x2b\xd0\xe3\x5a\x82\x89\x51\xd6\xe9\x9b\xdc\xb1\x40\xb8\x19\x62\xf9\x0a\x9a\x2e\xfe\x86\x6e\x88\xe3\x44\xb0\x74\x7c\x1c\x50\x23\x51\xb6\xa6\x4e\xc2\x05\x82\x5a\x77\xd7\x93\x16\x75\x08\xbc\x84\x34\xba\x2e\xf7\xa8\xef\xf6\x00\x1f\x42\xc1\xe1\x2c\x4f\xc5\x5f\xa8\xab\x3e\x14\x99\x1d\xd8\xa4\x9b\x8e\x72\x55\xb6\xf7\xe6\x2a\x48\x1c\x4e\xbd\xbd\x85\x43\xcd\x2c\x2d\xfa\x79\xa7\x1f\xc5\xdd\x5c\x6b\xaf\x62\x59\x7e\xef\xa5\x36\xd1\x0a\xdc\xa0\x5a\x96\x4e\xe4\x21\x4c\x7f\x6a\xf2\x52\x85\x22\xc7\x66\x6b\x32\xc6\x35\x13\x3a\x9a\x97\x2b\x94\x7d\xe4\xee\x7e\x4c\xc2\xf5\xdf\x8e\x06\x68\x03\x38\xc5\x81\xd0\x0a\xc1\x18\x98\x57\x25\xf0\x6d\x91\xcf\xc7\x21\x0f\x37\x49\x50\x2f\x5a\x5c\xf4\x03\xf7\xe5\x07\x3d\x0f\x65\x19\x04\x01\x84\xf2\x5d\xfa\x64\x91\x59\x53\x0c\xac\x13\x83\x76\x04\x60\x61\xc8\xeb\x34\xc1\x68\xbb\x02\x31\xdd\x49\x85\x20\xb4\x18\xd0\x1b\x41\xed\x12\x01\xda\xfb\xb0\x1d\x4e\x89\x38\x00\xb4\x3f\x0e\xba\x57\x2b\x1f\x48\x95\x0a\xf1\xa7\xce\x7d\xb8\xba\xd3\x74\xf4\xf1\x0d\x29\xe6\x0f\x61\xcd\x16\x34\x7d\x3a\x83\x62\xab\x9e\xd0\x1a\xec\xdb\x6c\x39\x42\x36\x44\x48\xac\xfd\x1e\x89\x55\x19\xb9\x1c\x2c\xcf\x10\x6f\x8c\x26\x2a\xb0\xb7\xb7\x08\xec\xc7\xc0\xc3\x6e\x9a\x0d\x84\x2f\xf8\x80\x13\xc1\x01\xfe\x47\x8f\x27\x14\x6c\xa7\x71\x54\x44\x9d\x7c\x26\x94\x3b\x30\x22\x83\x5e\xd5\xb6\x49\x00\xaa\x7c\x41\xb5\xed\x15\x93\x0d\xc0\x87\x86\x20\xf7\x1e\x25\x8d\xca\xed\x88\x98\x90\x25\x3e\xba\x76\xb9\x40\x17\xcd\x4d\xc3\x94\xd7\xa4\xc7\x54\x31\x8c\xed\x91\xa8\xa3\x69\x32\xe2\x0e\x4c\x0a\xe8\xf1\x94\xfd\xdd\xbb\xb7\xb9\x9c\x45\x9d\x55\x16\x86\xaf\x0c\x3a\x10\x6a\x3d\x8d\xe3\x34\x43\x4d\x01\xcd\x8a\xcf\x64\x2d\xeb\xf1\x14\x3b\xab\xf4\x94\x8a\x2c\xed\xf4\xed\x20\xea\x28\x8c\x75\x5a\xe8\xfb\x12\x99\xe9\xf5\xbe\xb5\x71\x1c\xad\x22\x76\x55\x8a\x95\x56\x83\xe8\x56\x9e\x63\x99\xfa\xd2\x43\xe5\x4f\x4a\xe4\x79\x75\x1c\xcc\xcb\x6c\x19\x85\x6e\x5e\x05\xdb\xd9\x55\x89\xfe\x35\x06\x91\x24\x12\x66\x4d\x79\x69\x94\xd3\x11\x7b\x08\x59\xce\x09\xd4\x00\xf4\x04\x2f\xc4\x9b\x59\xcf\xac\xbc\xd9\xfa\x85\x10\xd1\x8e\x86\x36\xeb\xa4\x49\x77\xd4\x29\x52\x8d\x6c\x55\xb7\x4a\x2e\xcb\x69\x58\x71\x75\x2d\x4b\x46\x9d\x74\x18\x01\xf9\x81\x20\xe2\x67\x54\xb1\xfb\xd9\x38\xa8\x0d\xcb\xac\xc3\x4c\xc0\xc7\x9c\x27\x22\xb3\x2f\x18\xef\x72\xab\x8e\x5f\xae\xe8\x67\xa3\x1c\xf9\xae\x4f\xca\x82\xf8\xc8\x3f\xf1\x81\xfd\x9a\x4d\xec\x9b\x23\x1b\x2b\x29\x29\x62\x29\x1d\xd1\xd5\x13\xe6\xb4\x2c\xdd\xa2\xe7\xd0\x77\xfd\xae\x80\x60\x98\x9e\x09\xdb\xbb\xb7\x19\x0d\x86\x69\x56\xe8\xb8\x39\x5c\xc6\x0d\xae\x39\x00\x60\x81\x6a\xf5\xf1\x32\x0f\xe0\x9e\xfb\x6b\xfb\xbf\xde\x7c\x45\x02\xb3\xca\x58\xa9\x87\x06\x7b\x82\xa6\xf3\x2d\x62\x7a\x51\x9e\x59\x98\x4a\xe5\xb9\xc0\xee\x3a\xc6\xdc\xc7\x47\x3a\x16\x70\x4d\x55\x74\x21\x59\xa3\x69\x15\xc7\xd2\x5f\x77\x37\x12\x33\x10\xd6\x9d\x10\xdd\xcc\xb4\x39\xf0\x99\x99\x04\x9b\x92\x66\x89\x2d\x0a\xcb\xd2\xd2\x5a\x24\x70\x23\xbe\x35\x43\xf2\x85\x59\xdd\x92\x91\x01\xd8\xa9\xc7\x04\xe6\xec\xf4\xa3\x35\xa3\xd8\x72\x27\x2e\x44\xf5\x99\xaa\x62\x73\x61\x60\x3c\x1d\xde\x4f\xfe\xd0\xa1\x90\xa9\x2d\x96\x9a\xac\xfb\x4c\x60\x18\xbd\x8a\xf8\xc0\x0f\xfb\x96\x3e\x00\x3d\xdd\x82\xf9\x77\x9f\x68\x07\x06\xe9\x1b\xad\xd0\xaa\x50\x62\x29\xb8\xd6\x6b\x52\xed\x25\x5e\x40\x17\x5f\xef\x92\x82\x04\x16\xc0\xef\x63\x65\x20\xf8\xfc\xa9\x82\x44\x70\xef\xac\x87\x3c\x37\x09\x35\x9f\xe7\x40\xda\xa6\x1f\xa9\x98\xdc\xa4\x83\xd0\x01\x75\xba\x73\x34\xa1\x3a\x4d\xc8\x2d\x55\xe0\xa2\x1f\x95\x51\xe9\xe1\x79\xaf\x52\xd1\xf0\x33\x9f\xe7\x58\x96\x23\x4b\x4d\x37\xde\x00\x92\xd6\x5b\x37\x1f\x1c\xdf\xc6\x7d\xbb\x39\x13\xb1\x2c\x28\xb8\x7c\x07\x9d\x24\x3d\x19\x53\xa6\xaa\x71\x99\x33\x8f\x9e\x51\x39\x2a\xb3\x2a\x0d\xf9\x1d\x74\x99\xe6\x8c\xef\x52\xf4\x95\xa5\xe5\x96\x0f\xe8\xc4\x2a\x33\x74\xcd\x90\x7c\x1c\xc5\x4a\x36\x83\x9f\x05\x38\x4c\x8f\x3d\x78\x50\x06\x74\xf0\x20\xd1\xc0\xb9\xcf\xac\xf4\xf7\x2b\x18\xb8\x2c\x8d\x21\x8f\x87\x61\xa8\x33\xb8\x43\xa0\xf4\xae\xb7\xa4\x49\xea\x5e\x40\x88\xf7\x1f\x8e\x03\xd4\x00\xb2\x08\x5e\x16\xbc\x7c\x72\xc8\xdd\x4e\x52\x08\x75\x57\x02\x0d\xc5\x23\x60\xc5\xa0\xd2\x73\x5f\xc2\x17\xfc\xf6\x75\x50\x59\xfa\x99\xc4\xc0\x10\x75\xbe\x05\xb4\x97\x5b\x16\xc4\x67\xf2\xa7\x55\x86\x9d\xe4\x4d\xe2\x4c\xb8\x46\xb8\xd2\x6b\x75\x5c\x52\xe9\xa8\x00\xdb\x70\x18\x8d\x39\xdb\x22\x61\xb2\xb3\x1e\x68\x9f\xa7\x9d\x48\xa1\xe2\xa8\xb8\x3f\x33\x21\x06\xcb\x67\x68\x32\xb4\x63\xb2\xb8\x48\xdd\x14\x33\xa2\xce\x3b\xcc\x5b\x7b\x87\xd0\x78\x1d\x93\xd9\x95\x51\x1c\xa3\x6f\x85\x5a\xf3\x97\x82\xc7\xd2\x63\x94\xd9\x7c\xeb\x2d\x48\xd9\x9f\xa6\x72\xe2\xc0\x14\x9d\xbe\xaf\x44\x61\xc3\xde\x97\xf4\x1a\xe1\x0e\xc8\x06\x11\xe6\x5d\xa3\x60\xf8\x51\x1d\x0e\x6d\xbd\x6f\x13\xbb\xa6\xf8\x19\x07\x3d\x93\x31\x54\x87\x49\x0b\x81\xc0\xb7\x47\xdd\x5e\x08\x5d\xbd\x3a\xbb\x27\x35\xbb\x30\x35\x22\xb1\x70\xa8\x99\x58\x93\x2d\xa3\xaf\x80\xcb\x43\xb0\xab\xc7\x14\xc9\x0c\x4d\x62\x06\x06\x96\x15\x9e\x1d\xc5\x04\x3d\xa6\x61\xf0\x61\x96\xf6\x32\x33\x18\xd8\x0c\x74\xaf\x28\x1f\x3d\xac\xf2\x37\x35\x3c\xb5\xed\xbb\x58\x5b\x28\x71\x9e\xae\xe9\x88\xee\x6f\xda\x38\x2a\x43\x7a\xf1\x1b\x9b\x62\x54\x5f\xdf\xbc\x5a\x2b\x20\x36\x30\xab\x8a\x04\x57\xec\x0c\x56\xa7\x03\xd2\xd4\x64\x79\x99\xcd\x0b\x33\xca\x9c\xda\x85\xb2\xf8\xb5\x42\x82\x73\x7d\xbc\xdb\x2f\xa7\x37\x9e\x94\xef\x46\x60\x78\x62\x1c\x6a\xf0\xaa\xad\x2b\xf1\xe8\x07\xcf\x4d\x42\x30\x08\x99\x2f\x45\x20\xe0\x11\xc0\xd5\xfd\x50\x54\x7e\xf1\x9c\xff\x1d\x36\x21\xd2\x03\x78\x03\xa7\x83\xc9\xc3\x24\xf7\x78\x54\xe3\xb1\x6f\x4f\x0a\x5b\xd7\x76\xa2\xb3\xbc\x4b\x9a\x70\x73\x93\xc0\x0d\x8b\x86\x1a\xdc\x56\x03\xcd\x08\x74\x28\x1f\x71\x31\xf6\x16\xa1\x8c\xd3\xf5\xc4\x76\x77\xcb\xaa\x47\x34\x78\x54\xea\x65\xc8\x5d\x8e\x8b\x49\xd1\x63\xe2\x77\x9e\x99\x88\xa3\x73\xd4\xc6\xf2\x60\x00\x32\x7a\x06\xb9\x84\x0b\x19\x1b\x9e\x4c\x0b\x62\xa1\x95\x2a\x13\xac\xcb\x31\x2a\x56\xae\xd9\x7e\xd4\x89\x6d\xbe\xa3\xfc\x59\x27\x7f\x15\x90\x55\x27\xd1\x15\xc2\xab\xc6\x0b\x04\xbe\xe3\x7a\x2b\x70\xc4\x9d\x11\xd3\xa7\x7f\x83\x1f\x72\x5d\x6e\x8e\x3c\xba\x98\x51\xf3\xd1\x31\x78\x22\xf5\x98\x1c\xfe\x7a\x94\xdb\x0c\x8a\xe3\xda\xcc\x82\xcd\x75\x9d\xad\xad\x8b\xf9\xd0\xab\xcd\xbc\x1f\x0d\x87\x52\xca\xf5\x5a\x26\xc7\xc7\xc4\x7b\x78\xbc\x42\x11\xb1\xcc\xd3\xd1\x17\x61\x7f\x9c\xa0\x59\x30\x1d\x77\xc8\xb7\xae\x40\x59\x6c\x7b\x00\x90\x68\x41\x1e\x8b\x76\x06\x95\xc0\x8a\x9e\xa2\xa3\x7c\x92\xfb\x50\x8c\x3d\xe2\x79\x07\xb8\x0f\x51\xc1\xb2\x8d\x11\x8c\x92\x60\x89\x1f\x94\x42\xdf\xc3\x95\x2b\xa7\x2b\x64\x5d\x9b\x47\x3d\x5f\xee\x45\xa8\xf8\x80\x19\xa5\xa6\xa9\x6d\x0f\xcf\xbf\xde\xcc\xe3\x30\xe3\xa3\x74\xd8\xa4\xd6\x7c\x99\xe6\x88\x86\x66\x68\x33\x89\xc2\x1a\x84\xa9\x45\xa0\xeb\x58\x46\xd8\x43\x15\x46\x8b\x5b\x2a\x31\xc8\x9d\xb4\x4f\xeb\x28\xcd\xd6\x23\x6d\xc2\xa2\x8e\x05\x6c\x8e\x1e\x4f\x95\x53\x0e\xcf\x2f\x34\x6d\x52\xf4\x47\x79\x64\x72\xd6\x36\xbd\x4c\xda\xa6\x97\xa7\xec\xd8\xfe\x03\xfb\x65\x12\x50\x00\x20\xb0\x1c\x4f\xb4\x89\xeb\xef\x67\x95\x8e\xb2\x3c\x3d\xc4\x91\xb7\x7c\xf7\x34\x49\x13\xbb\xab\x8c\x17\x11\xd6\x9d\x1a\x57\x95\x93\x7e\xfd\xb7\x3c\x97\x59\x08\x04\xb7\x89\xa5\x70\xd0\xb8\xd0\x08\xbc\x16\x02\xe8\x37\xfe\x72\x9b\x14\x7b\xb4\xd9\x8e\xe5\xd8\x98\x42\x7f\xee\x5b\x6a\x0e\xa2\x38\x2a\x4c\xa5\x6d\x7d\x9e\x26\x5d\xa6\x31\x87\x4b\x4b\x07\x1d\x01\x32\xca\x8e\xfb\x83\x3a\x90\xb7\x35\xdf\x6b\xed\xf1\x2f\xbc\x50\xb3\x0d\xe8\xd2\x29\xe2\x5f\x3e\x55\x37\x1c\x3a\x88\xba\x1b\xd6\x80\x10\x04\x59\x04\xda\x68\x08\xa4\x34\x30\x73\x13\x5c\x5b\xbd\xe5\xde\xbd\xcd\xae\xb5\x43\x9b\x49\x1d\x02\xa1\xea\x79\x6c\x49\xe4\x98\x1f\x8c\x89\xc5\xf1\x46\x5d\x7a\x32\x34\x79\x5e\x25\x2a\x52\x9b\xae\x27\x75\xb9\xe8\xc0\x66\x3d\xd5\xd4\x24\xde\x2f\xb7\x6b\x6f\xd1\x2d\x7f\xe4\x03\xa4\x81\xc9\x56\x6d\xd1\xa0\x0e\xc0\xce\x49\x58\xa9\x3b\xa7\x26\x63\x0e\xcc\x1f\x70\xe4\x23\x22\x19\xe6\xc0\x85\xe5\x43\x47\x6e\xfd\x19\x9e\x0d\x1c\xc9\xbf\x16\x20\xb6\x6a\x51\xcb\xf2\x80\x77\xf8\x49\x4d\x94\x7c\xb0\x69\x55\xec\xc2\x09\x5b\xc9\x6b\xd5\x93\xf2\x03\xa1\x5e\x58\xd8\xc1\x30\x36\x00\x4c\x05\x62\x3b\x1a\x03\x3c\xe3\x33\xef\x51\xd2\xe9\x9b\xa4\xe7\xb1\x8b\x28\x30\xdc\x25\xc2\x19\xf4\xd5\x02\x7a\x41\x7f\x25\xcb\xfc\x80\x84\x9f\xb8\xf6\xdc\x09\x5a\x90\xd4\xb6\x0f\x93\x01\x95\x01\x48\xa3\xd2\x0b\x09\x06\x96\x59\x83\x56\xd2\x51\x22\x35\xdc\x6f\x6c\xde\x87\x35\x71\x4a\x20\x0d\xcf\x2f\x79\x9b\xf4\x0d\x4f\x8d\xbf\xe6\x83\xda\x51\xd2\xfd\xcf\xff\x23\xd1\x0f\xd7\x24\xd9\x71\x5f\x6e\x12\x0c\x73\xd3\x13\xf2\x76\x6d\x16\xa1\xbc\xaa\x85\x73\xf4\x41\x74\x9a\x54\x4f\xda\x75\x3d\xb1\x61\x1a\xfb\xd1\x78\x47\x01\x1b\xea\x17\x6a\x53\x30\x28\x74\x6e\xfc\x97\x6b\x60\xa9\xc9\x5a\x94\xa5\xc9\x40\x64\xb9\xa2\xdc\x8d\xd5\x60\xe3\x28\x76\x59\x4f\x58\xed\x3c\x29\x4c\x16\xa5\x8d\xf0\x8a\x2e\x72\x31\xfd\xa2\x6f\x84\xf5\x4d\xb6\x9c\x66\xfa\xa5\x8e\xb2\xa4\xa2\x2a\x50\x23\x22\x1f\x25\x85\x2d\x63\x39\xa5\xc8\x53\x6a\x66\x44\x5c\x8e\xa7\x39\x94\x6e\xa3\x3c\x33\x36\xde\x4e\xc0\xea\x87\x2c\x39\xae\x84\x37\xae\x39\x40\x04\x9c\x0f\x51\xc9\xc5\xda\xff\x84\x66\xb2\x3f\xa9\xa5\x93\x37\x45\xbf\x41\x82\x29\x3f\x22\xa9\xa7\x1f\x31\x0f\xe2\x6a\xbe\x27\x70\xc8\x5c\x26\xde\xfc\xfd\xff\xa1\x16\x48\x64\x81\x7f\xf2\x9c\x98\x2b\xd4\x6f\x5e\x90\x2d\x8d\x18\xe7\x2f\x4f\xa8\x54\xb0\x1d\xcc\xb0\x30\xf7\xbb\x27\x81\xe2\xe7\x47\x50\x7a\x74\x8e\x27\x08\xb4\x2b\xb9\x80\xe4\x59\x7f\xeb\x2f\xb6\x09\x03\x74\x7f\x2a\x20\xdf\xbb\xd0\xcc\x6d\x62\xa4\x68\x87\x4b\x53\x49\x1a\xbc\x22\xa7\x4f\xe3\x29\x77\xb2\xa8\xb0\x3b\x02\xf6\xe6\x18\x7e\x0a\x21\xd8\x39\x86\x04\x60\xaa\x1d\x1b\x51\xca\x91\xba\x0f\x95\x9d\x87\xc8\xd3\x1d\xc2\xeb\x3e\xa5\x5d\x5d\x6b\xba\xb1\x90\x81\x1f\x98\xd7\x91\x17\xe8\x53\xea\x31\xd5\xe1\x56\xec\x20\x4a\xca\x65\x8b\x38\xa6\x52\xf4\x82\xc3\xfc\x39\x4c\xac\xf6\x82\x49\x46\x27\x5a\x59\xb1\x39\xbb\x9c\x73\x78\xa4\x7a\x32\xd5\x15\x2c\x7d\xf9\x4a\x94\x0d\x62\xe5\x75\x87\x19\xbb\x3d\x0e\x70\xee\x6d\x6d\x12\xff\xf9\x92\x3b\x90\xa6\xb3\x6a\x7a\x5a\xff\xaa\x9b\xd0\x77\xdb\x65\xd9\x14\x45\xec\x6c\x80\x6b\xf3\xc8\xa7\x5c\x9f\x27\xd4\x38\xd6\x4d\x52\xec\x64\xf1\xf4\x87\x72\x29\x58\x50\x9f\xb6\xc2\x50\xc4\x39\xa2\x16\xdd\x1c\x13\xac\xef\xf3\x31\xcd\x93\xdd\x60\x65\xd8\x1d\x92\xb8\x38\x15\x90\x3a\x3e\xd8\xd1\x60\x59\x36\xa7\x83\x12\x12\xac\x90\xa5\xcf\x87\x10\xaf\xdc\xb1\x05\xe7\xba\xa4\x2f\xe7\x26\x15\xc2\xb7\x4d\x68\x86\xfb\x32\xa3\xff\x3e\xd7\xea\x97\xcb\x23\xc4\x4b\xe0\x29\x3f\xd9\xde\x6a\x3f\x84\xf5\xb5\x1b\xad\x45\x90\x0b\xf2\x7b\x14\xd5\x59\xc7\x8c\x5b\x13\xe1\x74\x62\x93\x45\x89\x2d\x66\x2a\x55\xca\x86\x17\x39\xd9\xd5\xa6\xfc\x73\x1b\x86\x87\x5c\x31\x3b\xb3\xf9\x30\x4d\xba\x16\x8e\xe5\x1b\x4e\x0d\x90\x32\xa9\x5b\x34\xda\x92\x63\x1c\xad\x7c\x0c\x5e\x94\xae\x5c\x38\x41\x94\xce\xb9\xfe\x8d\x34\x33\x31\x69\xc7\xdc\xa5\x78\x51\x1d\x1c\x92\x6d\xce\x64\x56\x32\x3b\x42\xb7\x1b\x1f\xfa\x87\xe3\x80\x98\xf8\x87\xc4\xca\x21\x88\x11\x68\x31\x2e\x2e\x3a\xeb\xc1\x94\xba\x57\xc6\x2f\x12\xbe\x3a\xb6\x80\x02\xe7\xf4\xe7\x67\x69\x8e\xee\x6c\xed\x50\x71\x6c\x4d\x97\xe6\x66\x8f\xd2\xdc\xec\x51\x82\x90\x15\x26\x5e\xdd\x51\x5e\xa6\x93\x4c\x2d\x73\x53\x57\xbe\x2d\x6f\x05\x05\xd2\xeb\xe3\x20\xce\xa8\xda\x20\xa8\x66\x6f\x17\x03\x8a\x3a\xdc\xd3\xed\x30\x30\xf5\x74\xfb\x39\x3f\x3f\x5b\xd8\xac\x97\xa5\xa3\x61\xa3\xaa\x8a\x52\x11\x4c\x21\xd8\x75\x3a\xb0\xfd\x74\x5d\x10\x00\x9e\xf1\xda\x97\xe7\xb5\x94\x8e\x95\x71\x8f\x70\xff\xbd\x74\xcd\x66\xe2\x4e\x5f\xa4\x9d\x86\xeb\x76\xb7\x4d\x8a\x00\x9f\xc1\xe6\x60\x51\x7d\xda\x22\xc0\xa5\x92\x47\xc0\xe4\x1d\x85\x11\x40\x65\xee\x6d\x94\xa2\xb5\xfe\x5b\x1a\xc6\x4d\x68\xba\xeb\x08\xa1\x94\xb9\x94\x2e\x5d\x5e\x3d\x1e\xc5\x6c\xbb\xcc\x22\x2a\xaa\x7c\xf8\xa3\xc7\x0c\x59\x44\xba\x00\x04\xc1\xdc\x44\x18\x68\x3c\xb1\x5a\x99\x78\xa0\x14\xf1\x44\xbb\x8c\x1a\x91\xe5\xfe\x4c\xca\xdc\x08\x47\x4f\x92\x00\x63\x66\x13\x13\xe5\xb9\x49\x3a\x76\x36\xd8\xba\x73\x14\x30\x9d\x23\x2f\xf1\x88\x68\xaf\x1e\xd5\x70\xe6\x1e\x14\x96\x78\x4d\x24\x1c\x43\x6d\x58\x4b\xd3\xfa\xb6\xaf\x34\x6d\x27\x4d\xd2\xd0\xa4\xc0\x53\x78\xaf\xc5\x01\xe3\x7b\xe3\x2d\xb2\x12\xfb\x96\xca\xdf\xfa\x0b\x12\x32\xa0\xe7\xf6\x2f\xf1\xb4\xf1\x44\x26\xe3\x6d\x5f\xdf\x9c\xb4\xca\xac\x0b\xe1\xf3\x3b\x58\x07\x3a\x90\xd7\x92\xe7\xe5\xb0\x59\x28\xad\xc2\x55\xfe\x0f\x78\xe9\xa8\x9f\xfd\x69\x8b\x5a\xc8\x18\x5f\xf3\x50\x3d\x8f\xa5\xfd\x9b\x08\x55\xf0\x44\x6e\x49\xc7\xc0\x73\xcf\x94\xd1\x8d\xcb\xd5\x70\x3b\x58\xf9\xd7\x65\xab\x20\xe7\xdd\xde\x6e\xfc\xc6\x6b\xbe\xd6\x1e\x58\x72\xaf\x8f\x49\x9e\xfb\x77\x5a\x04\x91\x56\x02\x08\x45\xa4\xf3\xc0\xea\x5d\xa9\x79\xe2\x52\xde\x43\xed\x5a\x6f\xab\x45\xf0\xe8\xe3\xe3\x00\x34\xbc\x4a\x33\xec\x0f\x5b\x8d\xd7\x5c\xf1\xfd\xc2\x38\xf0\x55\x9c\xa9\x4a\x2e\x98\xec\x85\xf2\xb9\x7a\x6a\x89\xf2\xa9\x7b\xc9\xb9\xf2\x5a\x70\x2f\x57\xd1\x37\x80\x0d\x98\x91\xd6\x34\x82\xa0\xeb\x95\x08\x54\x5d\x06\xfa\xdb\x9b\xf2\xab\x7a\xfd\x32\x48\x0a\xa3\xac\x70\x67\xe7\x8b\xe4\xf6\xf5\x5f\x64\x6d\x61\x81\x5f\x93\xb7\xe2\x46\xbb\x88\x36\x4a\x29\x25\x10\x26\x7d\x8f\xa5\x70\xde\x96\x5d\xa4\x18\x01\x59\xd9\xae\xa8\xde\xd8\xbb\xb0\x79\xd5\x27\x77\x5d\x1b\xbb\x8a\xb0\x03\x47\x07\x41\xb0\x69\xca\x09\x0f\xa5\x1c\xf5\xd2\x06\x21\xaa\x19\xb7\x71\xc5\x87\x38\xa6\x28\x84\x4c\x77\x86\xa0\x34\x9a\x70\xe2\x05\xdc\xc7\xcd\xa0\xae\x3d\xd7\x76\x15\x87\x8d\xb4\x07\xfa\x11\x67\x11\x2a\xda\x70\x35\xdc\x00\xcb\x36\xb1\x2b\x11\xa0\x74\x2e\xfb\x0d\x69\x79\x50\x25\x2b\xd3\x42\x13\x25\x36\xa3\x56\x23\x3c\xac\x03\x24\xd5\xe4\xf9\xc3\x28\x2f\x3c\x31\x85\xa7\x70\xa7\xab\xab\xf9\x4c\x3f\xcd\xa2\x37\x53\x9d\x6e\x71\x92\x8f\xa1\x3c\x36\x2d\xb3\x7b\xe8\xd5\xa6\xe9\x98\xe1\x28\xee\xa4\x3c\x5a\xce\xd3\x9a\x97\x89\xe3\x28\xed\x14\x36\x6e\xf0\x3c\xa3\x0e\x86\xb8\x65\x15\x8a\x6c\x66\x39\x5d\xb3\xbb\x48\x64\x65\x93\xf4\x45\xe7\x26\xe4\x6d\x6f\x8c\xa9\x81\xb9\xad\xdd\xf8\xd6\x37\xd5\x19\xa2\x60\xa2\x01\x74\x8b\x28\x6b\x2e\x90\x42\xd2\x19\xec\x11\x37\x62\xe1\x16\x98\x59\x1e\xe5\x4e\x1e\xcd\xe9\xa1\x34\x3c\x73\xe2\x26\xbc\xbd\xe7\xd8\x26\xc5\xd8\xba\xc9\xb1\xae\xed\x98\xae\xeb\xea\x38\x41\xc4\x06\xf1\xdb\x6e\x0d\x14\xf7\xbf\x7a\xb0\xd9\x4d\x7b\x9c\xff\x82\x38\xd5\x15\xd1\x99\x22\x2c\x2f\x5f\x74\xd2\x6b\x10\x34\x0f\x83\xee\xae\x53\xcb\xd5\x3e\x9b\xd9\x5f\x2a\xad\x05\xd2\xdc\x99\x36\xcd\x79\x7d\x2c\x9b\x1d\x9b\x61\xe7\x24\x78\x18\xcc\xd8\xc0\xa8\x5f\xd5\xbe\x97\xbb\x0e\xbc\x4a\x58\xe7\xed\x6d\xb9\x02\x78\xe1\x9d\xa8\xd6\xe1\x71\xbd\xdb\x22\x8e\xe2\x27\xda\x04\x03\x53\x10\x2d\x2c\xaf\xda\x08\x64\xaa\xb3\x13\x69\xf1\x28\x7b\xb6\x14\x5b\x10\x89\x9d\x61\xa5\x96\xdf\x11\xe0\x27\x1e\xa3\xf6\xb4\xf0\x57\x68\xfc\x29\x8a\x43\x7d\x10\x6c\x36\x0c\x30\x48\x70\x91\x6b\xfe\xff\x04\xbc\x8b\x78\x70\xf7\x24\xb4\xca\xb7\x4b\x3c\x04\x83\xa9\xaa\x76\x08\xc5\x8f\x83\x61\x4e\xbf\xa9\x8e\x16\xa0\x63\x8a\x4e\x5f\x8a\x97\x88\xc4\xff\x04\x46\x0e\x0f\x0a\xd3\x6b\xae\xca\x28\xf7\xec\xb4\xd9\xea\x24\x61\x86\x59\x5a\xa4\x9d\x34\xc6\x6a\x80\xef\x03\xe3\x98\x1e\x4f\x55\xcc\xf6\xee\x6d\x76\xfa\x26\xca\x94\xc1\x13\xa9\x09\x13\xa5\xeb\x92\x75\x7a\x51\x8d\x20\xef\x2d\x8b\xdc\x75\x5e\x9f\xa1\x86\x5e\xb6\x6a\x8b\xe7\xe5\x05\x23\x51\xda\x21\xb3\xab\xc8\x5c\x6e\x10\x70\xf5\xc7\xe2\xe4\x51\xa5\x3c\x2d\xcb\x10\x05\x9f\x87\x63\x6a\x49\x69\xc0\x06\x97\x77\x4c\xb6\x29\xd2\x17\x75\x5f\x08\xfe\x76\xb4\xc3\x74\xed\x09\x26\x26\xff\x11\x37\x0b\xde\x87\xc3\x75\x32\xf1\x04\x6b\x39\x4e\x03\xee\x33\x50\x5f\x73\xfa\x82\xb2\x84\xb4\x1b\xd0\x2e\xdf\xbe\x66\xfa\x2d\x17\xf5\x0a\x34\xc7\xf4\x1c\x47\xbf\x4a\x0c\xb7\x2a\x7a\xc3\xa1\x76\x91\xa5\x47\xe6\xe4\x87\xf1\x4f\x7b\xe4\x2b\xbd\xea\x6e\x78\x6d\xe8\xf9\xb9\x7f\x08\xe5\xcc\x00\x24\xd6\x61\x49\x20\xff\x14\xaf\x4f\x78\xfa\x73\x44\x13\x7a\x9b\xc7\x45\x7e\x40\x1d\xab\x4e\xda\x49\x0d\x11\xb6\x7c\x29\xbe\x51\x8f\x29\xbb\x5e\xb6\x71\x9a\xf4\x94\x8e\x08\xb6\xec\x3e\xf1\xab\xdc\x0f\x50\xa2\x38\xcd\xb7\x4c\x48\x3f\x90\xab\xc7\x85\xfc\xc5\xb6\xcf\x10\x9f\xfa\x85\x09\x8d\x77\x25\xf6\xc5\xf2\x97\xe1\x70\x9e\x14\xcb\xec\xd4\xea\x59\xc5\xe7\x12\x8d\x42\xbe\x84\xc1\x46\x4f\x7a\x7e\x38\x4c\xf4\xc9\xfa\xf1\xa1\xc1\x3e\x87\x53\x53\xc5\x3d\x44\x5f\x8f\x34\x78\x74\x5c\xe1\x12\x72\x69\x9a\xdc\xfe\xca\x06\x80\x2c\x46\xbc\xa1\x1f\xb3\xeb\x52\x69\x20\x2c\xe0\x17\x64\xc1\xe3\x7d\x5d\x18\x73\x63\xa1\xb4\x4d\xf2\x70\x4d\xb3\x1d\x22\xeb\x5b\xde\x97\xac\x44\xbd\x51\x86\x58\x1e\x2b\x7e\x73\x1c\x04\x8d\x26\xd8\x17\x8c\xa4\x07\xec\xfc\xda\x14\xe6\x4e\x88\x6f\xe3\x78\x63\x26\x8c\xd7\x83\x5b\x0f\xf9\xcb\x26\x65\x20\x6f\xd7\x58\x92\xfd\xcd\xb5\x74\x10\x05\xe5\x75\x15\xa8\xa4\x28\xeb\x5c\x2d\x21\x53\xde\x4f\xd7\xfd\x87\x9c\xe1\x6f\x10\xa3\x37\xbd\xf1\xf5\x2e\xa6\x3b\xe0\x45\xfe\x6c\x4c\x40\x69\x45\x6c\xb9\xd1\x97\x86\xe7\x0c\xbe\x34\x66\x8d\xc2\x32\x53\x96\x47\xe5\x09\x7f\x96\x9c\x64\xc9\x4d\x79\xd2\x5e\x7a\xa8\xbc\x1c\x9d\xa9\x27\xbd\xe8\x6f\x7d\x73\x46\xde\x20\x76\xfa\x6d\xf5\x57\x7e\x7c\xc0\xc3\x0e\x8e\xd3\x65\x8f\x92\x7c\x27\x8d\x15\x6d\x92\xec\xe2\x0e\xac\x2e\x49\x33\xfe\xda\x0b\x68\xfd\x48\x44\x7b\xfe\x6b\xc8\x33\x61\xb7\x76\x4c\xb8\x0c\xf8\x6c\x78\x2b\xbf\xf6\xd2\x84\x0c\xfc\xfd\x1a\x4c\xd8\xc1\x66\x77\x3d\xf2\x9c\x95\x4b\x2c\xa0\xb5\xe0\x15\x67\x5e\x9a\xe2\x91\x29\x7f\x0e\x56\xc2\x59\xee\xaf\xa6\x75\x22\xfb\x4e\x9a\x43\x5d\xdb\xcb\x2c\xd0\xc1\xb0\xca\x00\xce\x38\x75\xb2\x30\xb7\x7c\x9a\x26\xdb\x85\x9e\x3e\x6f\x50\x8a\x75\x12\x06\x4e\x4f\x88\x58\x6d\x05\xd2\x84\x3d\xee\x0d\xbf\x4d\x62\x68\x6f\xb7\x5e\x0a\xc4\x8e\xb6\x30\xc3\x32\xfa\xec\x98\x78\x4e\xf6\x29\xee\xfc\xdf\xe2\xcb\xbd\x73\xf2\x6c\x75\xf0\xa1\x28\x5b\x7e\x52\x61\xe8\xae\xc0\x6f\x46\x83\x64\xae\xf1\xf2\xcb\x9e\xfc\x33\x2c\xac\x07\x55\xa9\x91\x86\x17\x2f\x3f\x07\x5a\x66\x87\x0f\x7c\x9a\x22\xad\xae\x3d\xb2\x2b\xa8\x61\xce\xb6\x4b\x83\xa0\x7a\x18\xa4\x0f\xa4\x6c\x92\xc8\x7b\xb6\xb7\x89\x63\xfb\xbf\xc3\x6f\x62\x7f\x3f\x0d\x8f\x04\x2b\x00\xb8\x82\x6b\x35\xcb\x03\xd3\x7f\x60\x86\x48\x33\x34\xcb\x51\x1c\x15\x1b\xb3\x01\x86\x36\x19\x13\xf3\x86\xea\x99\xc3\x00\x21\x72\x77\x08\xb2\x97\xe8\x3e\x8a\x2c\xea\x8d\xa2\xa4\x87\xfe\xa2\x07\x84\xcb\x35\x38\x70\xf8\x0b\xbe\x96\x56\xd8\x2c\x32\x71\xf4\xa6\x5b\xa0\x48\x99\xff\x29\xee\x52\x4f\xa6\x12\x83\xa5\xa5\x66\xde\x31\x49\xd7\xc4\x5a\x94\x75\xe4\xe6\xf2\x3e\xf5\xa4\xe6\x53\x07\x9b\x66\x18\xdb\xa4\x00\xfe\xc8\x39\xbd\xaa\xca\x9b\x57\xc9\xfd\x92\x88\xb5\x8e\xb5\x5e\xf0\xb5\xe0\xac\x63\xe2\x74\x94\xf4\x34\x43\x84\x9d\xfa\x84\xf5\xd2\x3e\x21\x36\xc8\x41\xd4\x01\x8b\x1c\x56\xfe\x3d\x5c\xa2\x9e\x54\x66\x24\xed\x1a\x28\xcc\x97\x1c\xc5\xe8\x3b\x63\x9a\x82\xdf\x8f\x58\xd6\x0f\x2d\x96\xdf\x82\xe4\xe3\xc2\xd4\x68\x45\x69\x57\x33\x1b\x75\xfa\x03\x93\x24\x04\x70\x3e\xcd\x10\xbe\xd3\x15\xe0\x6f\x52\x64\x06\xad\x1d\x8f\x35\xc0\x1b\xd3\xe3\x71\xb5\xa9\x8f\x2a\xb3\x36\x0c\x08\x22\x72\x61\xfc\xf5\xaf\x48\x8e\xbb\x51\xde\xc9\xec\xd0\x24\x9d\xc8\xe5\x2a\x30\xe3\x17\xc4\xdb\xea\xf1\xf8\x6b\x01\x23\xb2\x66\xb3\xbc\x6f\xba\xea\x1e\xf6\xfb\xe0\x1f\x05\x3f\x47\x4a\xfb\x9c\x77\x83\x22\x28\x5a\xae\x08\x96\xe9\xd1\x5b\x76\x63\x06\x5b\x53\xa1\x32\x02\x7e\xd9\x0e\x1a\xa5\xe9\x77\x97\x20\x5e\xdd\x5d\x9b\x6f\x01\xd8\x62\xdd\xda\x64\x26\xe8\xa6\xdd\x24\x99\x1d\xc5\x46\x02\xce\x74\xaa\x6e\xea\x23\x8e\x7e\x7b\x14\x75\x4d\xd0\xfc\x83\x71\x79\x57\xd6\x18\x8a\x2b\x57\x69\x8e\xf5\x2c\x79\xad\x64\xd4\xeb\xa1\xfe\xed\xba\xc3\xf7\xc8\x91\x23\xa6\x06\x62\xe9\x2c\x61\x79\x3a\x7d\x6b\x86\x36\x2f\x80\x8c\xd7\x0d\x2c\x9f\x73\x9b\xd9\x8f\xdc\x65\xd1\x4a\xe1\xc6\x1c\xf0\x45\x4f\xb0\x84\xc5\x13\x93\xad\x13\xa9\x0b\x87\x9a\x83\x62\x40\xa3\x92\xca\x52\xa4\x27\xcc\x98\xe3\x74\xf7\xbe\xa1\x10\x43\xb0\x49\xb8\x59\xf4\x86\x67\x02\x53\x9d\x34\x4f\x34\xe7\xe7\x10\x4e\x4e\x55\x1f\x16\x17\xb5\xb9\x18\xcd\x84\x3e\x24\x1e\x89\x6f\xdf\x87\xea\xdf\x29\x1a\xab\x1f\xfe\xff\x7b\xa2\xd6\xa7\x94\xa4\x52\x96\x73\xf4\xa4\x72\xc3\x2a\x3e\x0c\xe3\xe3\x94\x88\x5d\x9f\x6d\x39\x3d\x62\xf3\x19\x12\xa8\xd9\x23\x5e\x02\x6e\x70\x87\x20\xd2\x80\xfe\x3c\x53\x53\x72\x6f\x16\xe9\xd0\xbc\x39\x53\xda\x74\xa4\x82\x1f\xcb\xcd\xc3\x72\x03\x62\x40\xa4\x18\xba\xcf\xd6\x6c\xf7\xd9\x50\xe4\xda\x33\x09\x14\xf2\x4f\xff\x55\xc9\x1e\x91\xd9\x3e\x3b\x21\xd4\xd2\x53\x00\x6a\x7a\x56\x52\x4f\x8e\xbd\x5b\xae\x56\x10\x68\x7f\xfd\x2f\x4d\x02\x4c\xec\xaf\xfc\x55\x24\xd3\x68\xb0\x7d\x6d\x12\x94\x90\xb6\x4f\x64\xed\x38\x46\x6c\xf1\x1b\xae\xf5\x53\xde\x08\xa2\x8e\x13\x28\x7c\x62\xc3\x3c\x96\x20\x0a\x5d\xbd\x3f\x19\x53\x8b\x6c\xcf\x24\xa8\x3d\x95\x16\xb1\x52\xd4\x28\x7f\xd2\x01\x22\x82\x5e\xe8\x28\x31\xdd\x6f\x8f\xbc\x51\xc2\xed\xa1\x5f\xa4\xc7\xe4\x3e\x57\x4c\x1c\xe7\x3b\xa8\x36\x7f\x52\xab\x07\x7a\x26\xcb\x0e\xeb\xf3\xad\x71\x18\x0e\xb8\x30\x26\xa9\xbb\x3b\xb8\x13\xa4\x77\x0f\x68\x6c\xe0\x42\xe0\x29\x8d\xb2\x5e\x94\x60\x07\x3b\x69\x76\xf9\x06\x5c\xd1\x3f\xa2\x19\x88\x0b\x53\x6c\x3b\x9e\x6f\x75\xb4\x1c\x13\x4b\xb4\x9b\x31\x23\xe4\xfd\x85\xba\xac\x3f\x49\xa3\x1c\xae\xc4\x53\x2c\xee\x0b\x21\x06\xdb\xe7\x38\x4f\x9f\x6d\x78\xb2\xe5\x3d\xa8\x9c\x78\x90\xfb\xc2\x21\xcd\xd6\x14\xc7\x80\x12\xf0\x6e\x4c\x03\xa2\x66\xbc\x6b\x52\xbe\x46\x84\x9b\x0a\x42\x42\x34\xbd\xbd\x1d\x50\x7f\xcf\x60\x3d\xa2\x74\xf3\x27\x92\xf2\xf8\xb6\x48\xb9\x1e\x01\xe6\xbb\x21\x57\xe9\xd4\x12\xf0\x4e\x50\x0c\xbe\x8d\x26\x8b\xd7\xfc\x90\xb9\x98\x71\x50\xc8\xb8\xc3\x3c\x63\x1b\xa3\xa4\x6b\x9c\x52\x1d\xbc\xec\x75\x76\xb9\xd7\x09\x06\xb1\x1e\x15\xfd\x74\x54\x3c\x1b\x88\xc8\x76\xb6\x03\x8c\xe0\x8c\x94\x13\x40\xdf\xf8\x6f\x74\x91\x60\xdf\xfe\x4b\x12\xac\x99\x6d\x13\xc6\xe2\x3a\xac\x03\x16\xc6\xa5\x56\x90\xfa\xd9\x26\x41\x9a\x67\x94\x2b\x1f\x33\x96\xfb\x03\xb1\x2d\x30\x47\x1f\xb2\xae\xc0\x35\x04\x54\x9e\xfd\xc4\x53\x55\xef\x9e\x10\x91\xc2\x2d\xdc\x9a\x5e\x56\x2d\xfb\x77\x5e\x18\x88\xe3\xd3\x58\x89\x56\x03\xf4\x64\x3a\x2c\x38\xb0\xff\xeb\xcd\x95\x34\x2d\xfa\x69\xdc\x25\xe2\xa2\x3f\x43\x3c\xaf\x27\x95\xf2\xbf\x1d\xf6\xe1\x78\x50\x5b\xba\xdb\xa2\x21\x99\xd3\x44\xa9\x70\x71\x6a\xc1\x1e\x7a\xb5\x99\x58\xdb\xdd\x98\x0d\xb3\x31\x1f\x8e\x43\x29\x5a\xe3\x7a\xac\xa4\xf3\x04\x2a\x7a\xe8\xed\x6d\x1c\x25\xab\xf9\x76\xd9\x5d\x84\x19\x70\xd2\x91\x47\xe5\x33\x28\xc5\x5e\x22\x70\x45\x43\x9b\x72\x3a\x4e\x23\x6e\xc1\x41\xdd\x83\x65\xb5\xc5\xc6\xee\x72\x79\xa0\x30\xb3\x29\x77\x22\xa8\xe1\x5f\xfa\xe5\x36\x89\xae\xea\x9c\x15\x21\x01\xf7\x7b\xb2\x4f\x82\x1e\xcd\xc0\xe6\x22\x04\x7a\xd0\x22\x38\xc9\xeb\x40\x46\x62\x23\x3e\x2f\xbb\x0a\xa3\x03\xdb\xda\x84\x86\x4d\xec\x86\x35\x28\xbf\x3b\xe2\x04\x62\x21\x3b\x4d\xe8\x82\x4e\x3f\x1a\xce\x95\xdf\x82\x44\xfc\x26\xf2\x54\xe0\x9d\x1f\x92\xc5\x7a\x44\x1d\x72\x55\xdc\x44\xff\xeb\x93\xa9\x17\xf5\x4a\xd3\xc4\x45\xdf\x9a\x46\x95\x08\x90\x0a\xe7\x41\x22\xc9\xc1\x0d\xb7\xcb\xce\xa5\x5c\xd2\x4f\x71\x84\xc9\xb2\x63\x5f\x6b\x13\xb5\xab\xea\x1c\x61\x21\x60\x4e\x1b\x5e\xe2\xfc\x54\x57\xf1\x95\x66\x5e\x8c\xba\xae\x36\xa6\x2b\x84\xd0\xc6\xd3\xa0\x46\x80\xcc\x53\xe2\xe2\xa9\xa5\x3c\x71\x9d\x94\xa1\xe9\xac\xce\x86\x72\xe5\x55\x24\x00\x1e\x75\xb6\xe4\x9a\x6d\x7f\x46\x23\xdf\x6f\xd7\x4d\x8e\x0d\x05\x1e\x06\x1e\x31\xd4\x38\x8e\x91\x6c\x33\x58\x4a\xd1\x53\xfd\x29\x93\xc5\x87\xd0\xab\x6f\xd7\x63\x5b\x28\x8c\xd0\x77\x62\xff\xc6\x41\xdf\x89\xdd\x1a\x79\x2d\x2e\x36\xd7\x23\xad\xdc\xa3\xea\xf0\x89\x5c\xb0\x1e\xb7\xb6\x4c\xa7\xbd\xf1\x46\x73\xe1\xd0\x8b\x62\x97\xdc\x60\x74\x10\x22\xde\x86\x12\x83\x97\x51\xf8\x8d\xd7\x58\x1a\xd0\xa1\x76\xbe\x3f\x6e\x7c\xeb\x9b\x9e\xf2\x8b\x5a\x06\xef\x8a\x61\x47\x97\xea\xa1\x98\x3b\x37\x1f\x5a\xae\x4f\x98\x85\xbf\x3f\xa6\x19\xe3\x39\x84\x13\x08\x79\x38\xb9\x00\x14\x09\x7e\x60\x7b\x9b\x66\x87\xb4\xa9\x88\x9d\xf4\xc3\x16\x0d\xa1\xaa\x6e\xba\xf3\x96\xe5\x0b\x70\x53\xa7\x0c\x4a\xd9\x39\xa9\xe9\x97\x0c\x4c\xb2\x1a\x25\x30\x80\x6e\xb8\xa4\xe1\x99\x5e\x4e\x4f\xa3\x85\x85\x1c\x5e\xc9\x79\x90\xc0\x5e\xa2\x64\xf6\x52\x45\xdf\x4b\x96\xe0\x5c\x00\x63\x5e\xc6\x4e\x46\x99\x79\x66\x42\x0c\xb9\x5f\xd2\xe8\xd6\x6d\x94\x7e\xf5\x1f\xea\x60\xd1\x1d\x47\x67\xef\xf6\x34\xed\x6f\x6f\x31\x25\xe6\x87\x6c\x97\x43\x3b\x95\x57\x82\xad\x89\x91\x72\xf8\xc0\x5d\xf2\xc4\x61\x43\x76\x4e\x68\x34\x01\xeb\x43\x41\x6e\xed\xdd\x3e\xe7\x4d\x76\x92\xf6\xb1\x0e\x33\x54\x08\xdd\x11\x85\x3f\x20\x55\xca\xb3\x63\x82\x4c\xea\x38\x3d\x7e\xf1\x14\x29\xbb\x9d\xa5\x96\xe4\x34\x94\xf2\xf0\xfc\xeb\x4d\x1b\x15\x7d\x9b\x6d\x2f\xbf\xd8\x6f\xcb\x85\x43\x2e\xfb\x21\x9b\x77\x45\xca\xa6\x9a\x5a\xa0\x85\xec\x44\x5c\x65\x19\x39\x69\xda\x67\x48\xcd\x65\x30\xb4\x19\xf4\xef\xb0\xc2\x55\xfa\x58\x4f\xc6\x84\x52\x51\xad\xf5\x9d\x24\xc1\x0a\x38\x9d\x73\xbd\x61\x09\xdd\x93\x97\xe3\x75\x80\x02\x03\xf0\x1c\xa7\x55\x7b\x24\x82\xf7\xa4\x6c\x3e\xea\xbe\x48\x98\xa1\xbe\x35\x99\xd6\x3c\xf1\x87\xb3\x13\x26\xa1\x94\x67\x0a\xcf\x8c\xd2\xba\xe3\x0c\x76\xd7\x9d\x2e\xc7\x51\x4f\x98\x1d\x05\xdd\x8c\xaa\xd3\x55\x62\x0c\xfa\x3f\x60\x97\x5c\x83\xa8\x4e\x63\xdd\x8c\xe2\x62\x43\x3e\xae\x35\x27\x19\x20\x47\xcb\xf6\xf7\xa8\xa1\xb3\xbd\x1d\xe6\xbc\xba\xd1\x9b\x6f\x46\xc2\x90\x43\xfb\xff\xd8\x38\x8c\xff\x1c\x23\x62\xa1\x4e\x6c\x86\x85\x30\x49\x95\x76\xca\xab\xcb\xee\xf3\x4a\xb3\x3c\xa1\x62\x3a\x40\x2f\x13\x25\xc0\xef\xd1\x88\xc5\xef\x05\xce\x94\xd8\x94\x21\xf6\x0c\x61\xff\xf4\xf1\x63\x0b\x3c\xa4\xa9\xde\x4b\xd4\x8b\x12\x26\x0b\x57\x43\x40\x39\xff\x87\xd8\xc3\x7a\x52\x27\x83\xf3\xed\xd1\x60\x39\xd5\xdc\x10\xf1\x30\x2a\x88\x78\xc8\x57\xf1\x90\x1d\xe1\xf2\xf4\x10\xda\x81\x66\xc7\x0c\xa3\x42\x07\xee\xbc\x2a\xe7\xd2\x92\x3b\xa6\x9c\x70\x69\xdf\x37\xe5\xaf\xe0\x49\x2f\xb0\x5b\xbd\x40\xb0\xfd\xe5\xa8\xfb\x24\x65\x29\x97\x69\x30\xe9\x1e\xb3\xc7\x7f\x0c\x6a\x66\x34\x3b\x3e\x20\x48\xe2\x8f\xc7\x41\x3a\xf5\x63\xac\xb4\x4a\x55\x4a\x29\xad\x24\x98\x76\x2d\xab\x72\x61\x50\x2f\xeb\x75\xf7\xb5\x44\xff\xd0\xc9\xac\x29\xa2\xb5\xa8\xd8\x10\x2a\x03\xdf\x80\xdd\x17\x32\xb2\x9a\xd4\x67\x18\x75\x56\x73\x9e\x23\x39\x05\x17\xe5\x18\xd9\xea\x06\x3c\x06\x69\x66\x67\x1a\x87\xe7\x37\xaf\x22\xad\x83\x15\xdc\x8e\x0e\x10\x3e\xf8\x90\x22\xab\x95\x38\x5d\xa7\x26\xca\x29\x86\x62\x7d\x09\xeb\x85\x3e\xc1\xa7\xb2\x8c\xe1\xf7\x36\xa9\xd0\xd7\x31\x71\xbc\x9b\x94\x63\x2e\xc1\xf7\xa1\x82\x7f\xbf\x55\x91\x36\xf2\x71\x0d\x46\x15\x55\xd6\xad\xc5\xe8\x3a\x0a\x09\x2e\x8e\x03\x51\xe9\x07\x63\xd6\xcb\x3d\x8a\xbe\xb1\xe3\x62\xaf\x89\x8b\x3a\x69\x94\x74\xa2\xae\xf3\x1e\x5e\x87\xd0\xd3\x78\x9e\xf4\x38\x90\x6e\x34\x8c\xd3\x81\x71\xba\xfc\x8a\xf8\x94\x3f\x75\xe8\xcf\x3a\x9e\x9c\x7e\x3a\x80\x2a\x83\x67\x63\xf4\xa5\xfd\x8f\xc7\x34\xbb\xfb\x8e\xef\x58\xf5\xad\xf5\xc2\x58\x44\x06\xe7\x99\xe1\xa8\x30\xb9\x92\x66\x03\xe1\xeb\xd5\xb7\xef\x06\x92\xe4\x0a\xdd\xa4\x92\xdb\xf2\xbd\x98\x5a\x49\x9a\x7d\x12\x01\xc3\x8d\x8a\xac\x6a\x36\x4a\x9e\x0c\xce\xea\x49\x49\x10\x5d\xc5\x88\x10\x9c\xa7\xe5\xd9\xbb\x09\xb6\x60\x38\xef\x52\xf9\x1b\xe2\xaf\x5e\x95\xfa\xc0\x7e\xcf\x4e\x5c\xc6\x54\x70\x3b\x6f\xa1\xac\xe8\xb0\x10\x0c\x9b\xa9\x2b\x17\x2a\x89\x87\x71\x73\xcd\x5c\x17\x73\xde\x2e\xf4\x5a\x96\xed\x4a\x9a\xd9\x5d\x58\x19\x8e\x71\x84\x05\x7a\xca\x9b\xab\x08\x65\x28\xd2\x18\xe9\x03\xca\xdd\x8f\x69\x90\x95\x93\xab\xe3\x12\xdb\x39\x96\x33\xaa\xac\xbd\xcd\x5a\x64\x49\x61\xe3\x74\xb8\x85\x21\xe3\xc0\xbc\x67\xc8\xa8\x81\x6d\x7f\xbd\xb4\xb5\x4e\x00\x02\xb5\xf8\x9b\xd4\x8c\xbe\x39\x85\x5b\x11\x16\x7e\xc5\x86\xeb\x64\xab\xfc\x86\x9b\x72\xad\x31\xcc\x90\xa6\xa0\xb9\xd3\x8b\x34\x77\x3a\x9d\xb4\xbe\xfc\x72\x33\xb6\x6b\x36\x16\x9a\x4a\x44\x18\x27\x49\x03\xe8\xa4\xaf\x03\xd9\x32\x43\x61\xad\x81\x2d\xc4\x09\x5b\xbf\x78\xdf\x52\xf3\xdb\x69\xa4\x9b\x10\xcf\xe4\x3a\x31\x88\x5c\xaf\xf3\xbc\x18\xfe\x68\x84\x48\xf3\x1d\xe2\xd7\x79\x67\x6a\xb3\x1f\x9e\x5f\x28\xb3\xa0\xa8\x97\xf8\x3d\xe0\x67\xb6\xc2\xfc\x56\x90\x52\xcb\xa2\xa4\xa7\x6c\x79\x88\xfd\x7e\x01\x75\x40\x62\x13\x76\x5b\xec\xd9\x49\xc0\x13\xd7\x51\xe5\x2c\x34\xad\xc9\x92\xa8\x57\x99\x2c\xbf\x82\x10\xcc\x69\x08\x71\x7d\xca\xe4\x43\x7a\x10\x57\xe9\x41\x5c\x1d\x33\x3d\xc2\x5a\x9a\xcd\x12\xad\x5e\x8b\x34\xb2\x50\x9e\x43\x20\x34\x8b\xf4\xdb\xf1\x6b\x55\xea\x17\xb9\x81\xe1\x70\x3d\x0f\xf9\x0a\xd7\x0d\x79\xd2\x23\xe0\x32\xd0\x8b\xa0\x79\xa7\xc9\xaf\x9e\xf8\x69\xa0\x4e\x9a\xe4\xc3\xa8\x33\x4a\x47\xc0\x5a\xfb\xae\x5b\xf9\xc7\x7a\x32\xf5\x70\x16\x0e\x35\xbb\x91\x59\xb6\x85\x2b\x1d\xe3\x89\xde\x27\xa2\xeb\x47\xc4\xce\xf3\x03\x1f\xbf\xac\x19\x19\xc9\x96\x5f\xd2\x46\x64\x8b\x9b\x92\xd3\x9d\x0c\x19\x83\x98\x09\x23\xfb\xbb\x68\xc2\xa3\x81\x20\xdf\xad\xfb\x50\x58\x33\xcb\x26\xe9\xa6\xc9\x1c\x8f\x36\xc8\xe6\x87\xe9\x38\x5f\x19\x73\x90\xdd\xa6\x22\xa8\x95\x6e\xae\x5b\x54\x45\x1a\xa6\xef\x1c\x29\x2c\x31\x4d\x5c\xa4\x76\x4a\x1e\x75\x6d\xbe\x3d\x40\xc2\xaf\x04\xa6\xcf\xcb\xcd\x76\x85\x94\x40\x2e\x01\x7c\x3e\xbb\x27\xd4\x12\x9b\x45\xc9\xcc\x55\x2c\xb8\x9d\x15\xa7\x99\x29\x46\x99\x99\x09\xb1\xea\xc9\x0a\xe3\x50\x00\x08\x7c\x49\x83\x11\xb1\x19\xf5\xfa\x71\x84\xc5\x80\x4e\x8c\xd2\x90\xeb\x09\xf9\xfb\xd5\x34\xe9\xed\x22\x8a\xd9\xeb\xe3\x10\xcf\xdf\x16\x2f\xe0\x05\x15\x7d\xa5\xed\x31\xa0\x5d\xf8\x87\x4d\xa4\x25\x88\xc3\x90\x0f\xc3\xcf\xce\x22\x07\x46\x4e\x7f\x1d\x55\x52\xfd\x08\x95\xb0\x96\x5e\xff\xfa\xcc\xb6\xaf\xeb\x47\x1e\xb2\x70\x39\x00\xdc\x61\x6c\xc1\x47\xe5\xe9\x68\xb9\x98\x95\x88\xa1\x22\x8f\xe0\xc6\x73\x82\x3b\xbc\x43\xbb\xeb\xfe\xf8\x19\xda\x00\xa3\x81\xcd\x66\x88\x59\x05\x28\x28\xec\x49\xa8\x2c\xc3\x7a\xdf\xa5\x90\xf5\xaf\xfc\xea\xaf\xcd\x10\x35\xdd\x59\x42\x97\x5d\x26\xda\x86\x07\x74\x73\x89\x2d\x76\xf9\xba\xc6\x1f\x3e\x2f\xa9\x92\x7f\x6a\xa1\x87\xa9\x38\x40\xdf\x47\xf0\x48\xf8\x63\xd4\x20\x9d\x7b\x7e\x12\x12\xe7\x1b\x02\xe9\x43\x6e\xf6\x3d\x84\x27\x48\xa0\x2e\x92\xb6\x86\x89\xcb\xbd\xd7\xb1\xe0\xc3\xf2\x41\x18\x91\x88\x86\x01\xf9\x27\xda\xac\x77\x3a\x18\x44\x45\xe1\xc9\xe8\xb0\xbf\x67\x27\x61\x32\x63\xb6\x5d\x03\xbb\xe9\xc4\x06\x6c\x6c\xae\xcc\x7a\xbd\xa2\x66\x45\x60\x16\x94\xdf\x5d\x97\xa9\x0e\x8e\xdf\x49\xd7\x6c\x36\x13\x7a\x6c\x90\xd4\x83\x29\xfb\x3f\x11\xd3\xba\x98\xfb\x49\x92\x5d\x6c\x6c\xd5\x55\xd1\x63\x7a\x28\xb9\xcd\x22\x25\xbb\x5b\x38\xa4\x85\x4f\x28\x49\xe8\x71\x1d\x4c\x38\x8d\x37\x06\xc3\xa8\xd3\x08\xd3\xd8\xe7\x39\x7d\x38\x5f\x0b\x2d\xce\x46\x3e\x5e\x45\xc6\x7f\xa3\x15\x8a\x72\x37\x98\x83\xbf\x48\x87\x43\xe4\x78\xdf\xd0\x88\x7c\x37\xc1\x0d\x67\x26\xc1\x18\xb2\x48\x4b\x19\x4f\xee\x26\x89\x7a\x15\xa9\x10\x20\xaa\x63\xde\x0a\xed\xed\xe7\xa4\x23\x06\x94\xd1\x3d\x59\x62\x8e\x4f\x87\xca\x67\x6c\x1a\x6f\xa3\x50\x85\xfa\x8f\xf6\x11\x54\xba\x70\x0a\x92\xb0\xb8\xe8\x05\xd1\x67\x08\x75\x78\x89\x0a\xa4\x9b\x84\x25\xbd\x3c\x26\x14\xb9\xc8\x2a\xb0\xad\xfd\xa8\x45\xb6\xf6\xa3\x3a\xb2\x13\x71\xa9\x91\xca\xda\x21\x90\xbd\x4c\xd5\x80\xcb\x53\x6c\x69\xd4\xbd\x37\xcb\x71\x95\xd9\xf3\x3a\xa9\xa8\x5d\x6f\xbd\x44\x66\x66\x50\xde\x93\x04\xaf\x33\xdc\xb0\xb9\x09\x67\xe2\x1c\x08\xb5\x38\x3e\xf7\xf7\x35\x30\x59\xde\x37\xb1\x83\x71\xc3\xec\x5e\x60\x1b\x7c\xa1\x15\x1a\xba\xb9\xd9\x78\x2e\xc4\xb9\x6f\x51\x3f\xf9\xe7\x32\xdd\x00\x63\x00\xd9\x56\xbc\x4d\xf4\xbf\x14\x5b\x3f\x11\x5b\xe8\x8a\x3d\x61\xbd\x7d\x58\xc9\x6a\xe5\xa1\xe2\x1f\x4e\x8e\x69\x16\xe3\x24\xe6\x45\x94\x6a\x18\x09\x2f\x0c\xe1\x35\x5c\x2f\xa6\x1c\x74\xec\x51\xff\x05\x16\xd7\xab\x5a\xfe\xfa\x6f\x85\xb4\xe9\x5b\xdf\xd4\x4a\xca\x6c\x7b\x6b\xd9\x77\xef\xde\xa6\x8d\xa3\x06\x6d\x5f\x8d\x37\xdd\xea\x0b\x25\xc8\xd5\xa8\xe8\xf4\x6d\xd2\x00\x32\x0d\x0e\xff\x6d\x0c\x87\xe8\x09\x73\xe8\x16\x6f\xce\x84\x06\xc9\x51\x51\x57\xf2\x18\x6f\xaf\x5c\x74\x7b\x6a\x97\x2e\x2d\xed\x17\x7b\x80\xa0\x66\xbf\x9f\xea\xe2\x0c\x04\x58\x67\xec\x95\xe3\x95\xf0\x2f\xb1\xc5\xd3\xe5\x2f\x21\x92\x9d\x69\x93\x90\xc9\x47\x68\xa2\x79\x1d\x9e\xf2\x99\x22\xf6\x46\x7c\xe0\xb5\x06\x5c\xb1\xed\x3f\x7e\x0e\x09\xbd\x13\x9f\x2e\xdf\x2e\x32\xae\xfb\xbc\x0d\x6f\xb6\x68\xba\x0b\x3c\xa2\xf0\x01\x37\xc6\x61\xe3\x5e\xe5\x67\xba\x6d\x22\x56\xc5\xf5\xd1\xa7\xc9\xcf\x57\xcc\x40\xea\x0b\xfa\x66\x4f\x93\x74\x12\x9a\xd4\x58\x94\xff\x34\x00\x35\xd3\x75\x93\xa1\xec\xec\xd8\x72\x02\x3a\xee\xe2\x14\xcc\x7a\xff\xab\x07\x9b\x45\xea\x32\x00\xd8\x1f\x58\x37\x3d\xae\x51\x03\xdb\xdf\xec\x99\xac\x6b\x13\x8d\xeb\xb1\x4e\xcf\x6a\xc9\x00\xeb\xf9\xa9\x76\x15\xdd\x1c\x7a\xbb\xb3\x93\x67\x68\x4a\xac\xeb\xc8\xfd\x75\x84\x4c\x6e\x29\x8c\x93\xb9\x1d\x68\xbb\x23\x48\xc7\x98\x18\x78\x41\xbc\x54\x25\x5c\xc1\xd6\xfa\x90\xf2\x96\xe3\x2d\x12\x95\xf9\xd0\x3f\x9b\xc4\x8c\x72\x6b\x66\x48\xcd\x07\x55\x92\x8a\x00\xbb\xce\xf8\xb1\x62\x73\x9a\xd8\xc2\x64\xa2\x9c\x7c\x38\x30\xa8\x7b\xa0\xc3\x7f\x75\xba\x8e\xef\x61\xc5\x0c\x5c\x0c\xef\xc6\x34\x79\x66\x93\x26\x4a\x8a\xbe\x1d\x58\xe2\xb7\xfc\x23\xf9\x6a\x3d\x6e\xf9\x01\x9a\x8d\x84\x52\x75\xa7\xae\x29\x0b\xce\x35\x0b\x6b\x24\x3d\xd2\xa1\xcd\x08\x0f\x84\xf1\x05\xb4\x42\xdc\x38\x6c\xc8\x91\x1e\x4e\xa5\xaa\xfb\x96\x9a\x6b\xa9\xaf\x8b\xa8\x18\x5b\x8b\x26\x5a\x2e\x52\x5f\xa2\x48\x47\xf2\x90\x64\x47\x38\xa2\x07\x52\x04\x3c\x43\x06\x64\x65\x54\x8c\x32\x9b\x3f\x8d\x45\x83\xd5\x79\x5f\xac\xa6\x93\xb3\x0e\x68\x46\xa5\xdf\x83\x99\x40\x45\xb5\x22\xec\xe6\x15\x0a\x82\xca\xfe\x7b\xb2\xe1\x80\xec\xff\x17\x02\x23\xf1\xb1\x68\xf9\x0e\xb0\xd9\xef\x49\xd4\xe2\xba\xf2\x84\x98\xfb\x01\xcc\xac\x72\x49\x48\xa4\xe2\x48\x72\xa8\xfa\x6c\x92\x9e\xcd\xd2\x51\x3e\x2b\x9f\x84\x05\x50\x0d\x48\xd8\xe4\xeb\xb8\x79\x3d\x69\x11\xc3\xc8\xed\xa9\x05\xb3\xb8\xd8\x84\x6c\x32\xed\x86\x2d\xc2\xac\x41\xaf\x2c\x1f\xa4\xab\x36\x43\xdc\xe8\xd8\xc7\x03\x48\xf0\x04\x8f\x79\x9d\xd8\x3a\xe4\xf8\x8a\xa0\x6e\x9f\x29\x1f\x8f\xdb\x9d\xe5\xfd\x69\xef\x5b\xde\x00\x20\x42\x77\xc6\x01\x7d\xff\x3d\xee\x50\x5f\xc0\x9d\xf8\x39\xfe\xf2\xee\x2b\x1c\xc2\x6e\xea\x31\x00\xe8\xbe\xc7\xcb\x00\x20\x0c\xfd\xf5\xd3\x30\xc5\xc8\x57\xcf\x6b\x5b\x0d\x33\x1d\x28\xd3\x20\xfe\xbd\xdd\x22\x76\x90\x9f\xb3\x4a\x95\x90\x3c\xcd\x92\x49\x7d\x8c\x2b\xd2\x93\x0a\xbf\x6c\x99\x05\xe8\xf1\x94\xb3\x39\x30\xdf\x34\xa5\xe5\x74\xd1\x87\xa7\x05\x28\x2f\xdc\xd1\x02\x84\x1a\xe0\x28\x30\x90\x63\xc1\x5e\x23\x84\xdc\x35\xca\x31\xb2\xd1\x60\x26\xd4\x76\xee\x91\x6e\x8b\xa6\x9c\x8e\x69\x33\xec\x8d\xbc\x30\xd9\x9a\xed\x2a\x6f\x33\xec\xc0\x55\x46\x9e\x83\xf0\x15\xcb\xf3\x28\xcd\xce\x1e\xa5\xe5\x99\xd9\x61\x9a\xc9\xc6\x2f\xff\x16\xee\xff\xfd\x16\x31\x35\xa2\xb9\x87\xa2\xe5\x67\x95\xf9\xaa\x74\xdd\x30\x8c\xfb\x1a\xc3\xb8\xaf\x11\x38\x7a\x23\xb2\x31\x0c\xf8\xc2\x21\x6d\x60\x5f\x94\xf0\x56\x8f\xeb\xaa\x07\xd0\xd8\xe4\x6a\x7e\x88\xd9\xa7\x36\xc5\xe1\xf9\xfd\xcd\x7c\xa8\x83\xf5\x6e\xa4\x03\xb5\x35\x37\xb6\xe6\xc5\x2e\x63\xb3\x61\xbb\x3b\x1b\x44\xe3\x24\x57\x0d\x6b\xfe\x5c\x9b\x38\x52\x1e\x4b\x74\xb4\xf9\xd1\x38\xa4\x7b\xa8\x5d\x3a\x29\x7e\x59\xde\xd8\x4b\xf7\xa9\x28\x7e\xb3\x0e\xd4\xd0\x4d\x87\x8e\x36\x05\x6e\xff\x12\xc7\x00\xd3\xa2\x36\xfb\x96\x9a\xcb\x99\x49\x3a\x7d\x07\x4f\xf5\xec\xbc\xbe\x8a\x72\x85\xc6\x5b\xec\x91\x4e\x3c\xea\x5a\x52\xec\xff\xe1\x98\x24\x25\x7f\x38\x25\x80\xf3\xd7\x9a\x45\xdf\x14\x02\x3c\xe6\x31\x3a\x87\x9c\x2f\xdf\x14\xc2\x90\x1f\x63\xe3\xc1\xf0\x7f\xe0\xbd\x4c\x3e\x4c\x93\x3c\xcd\xdc\xda\x76\x1b\xae\xfc\x7d\x3d\xae\x36\x0e\xd7\x36\x76\x05\xf9\x93\x8f\xd1\x8c\x80\x3d\x86\x2f\x07\x16\x01\xe3\x59\xc8\x80\xe6\x26\xe5\x12\x71\x4c\x8c\xe5\xe3\x75\xe3\x2c\x12\xa1\xe9\x37\xb5\xc8\x86\xfd\xce\x98\x78\x50\x4e\x55\x78\xd6\xbf\xad\x85\x37\x4f\xa5\xb0\xff\xd5\x83\x5c\x93\xf0\x6b\xba\x67\xad\x06\xfb\x4e\x85\x50\x4c\x86\x9e\x90\x82\x88\x29\x6c\x1c\x39\x89\x0e\xcf\x1b\x1e\x38\xc4\x09\x32\xfb\x66\x34\xcc\x75\x9e\x55\xc9\x81\xc6\x34\xb6\x71\x91\xbc\xdd\xd0\xe4\xa5\xbb\x23\xf2\xd0\xf3\x24\x8d\x7c\x7e\xbc\x95\xf8\xdd\x25\x44\x36\x8e\xa3\xb4\x40\x92\xea\xc4\xe2\xc9\x81\x05\x1d\x9a\x2c\x1a\xda\x39\xc2\x6b\x9c\x27\x66\x77\x1d\x90\xc4\x4a\x57\x2a\x52\x14\x60\xe0\x64\xf1\x2a\xde\x99\x5a\xdd\x07\xe6\x9b\xeb\xc6\x93\x12\x79\xc9\xa6\xf2\x47\xf4\x64\xca\x88\x1e\x9e\x5f\x6a\x0e\xa2\xdc\xa7\x70\xc8\x80\x2e\x4a\xda\xaa\xc7\xe4\xc6\x0a\x93\x94\x6e\x0c\x55\x64\x05\xe8\xb5\x1a\x44\xf5\xfc\x0c\x09\x6c\x0f\x06\x36\xdb\x11\x00\xac\xef\xc3\x09\x39\xb7\x4c\xb3\x99\x3a\x55\xa3\x31\x1d\x75\x0b\x3f\x27\x69\x36\x4d\x07\x5c\x2b\xe6\x97\xc2\x35\xd9\xd8\x56\xc5\x0a\xff\xfd\x3a\xb6\xae\x36\x49\x09\xca\x7f\xcf\xee\xc9\xf6\xa2\x24\xdf\x1e\x10\x69\xff\x5c\x82\x11\xee\xf1\x39\x16\xf6\xf2\x9b\xf5\x58\x22\x0e\x94\xdc\x34\x9b\x05\xc6\xef\xac\x4f\x60\x63\x29\x85\x27\x3d\x80\x9e\xb1\xa3\xd1\x2c\x72\xc1\x73\xf9\x75\x0a\x25\x1c\x13\x38\xe4\x49\x19\xeb\x73\x81\x71\x1d\x69\x47\x9e\xc6\xfa\xf6\xe0\x42\x4f\xf2\xd4\xfb\xc9\x29\x94\xa0\x87\x9b\xc6\x65\xb0\xbb\x77\xaf\x96\x50\x6f\x21\x76\xd1\x93\xa9\x1f\xda\xbb\xb7\x99\xc7\xe9\xba\xae\x2d\xd4\xbe\xee\xb7\x88\x22\xe7\x7e\x5d\x5f\xa6\x34\x6d\xa2\xb6\xe4\x91\xd1\xbe\x9d\x76\xac\x55\x25\xf5\x5a\x38\xe4\x68\x11\x5a\x1e\x2b\xf6\xc6\x71\x26\x62\xae\x20\xca\x8e\x8e\x89\xd4\x79\x5a\x01\x79\xff\x81\xfd\x4d\xd3\x1d\x44\x6a\x17\x1d\x67\xa2\xc2\x2e\x9c\x2e\x41\xdd\xd3\x1c\xf9\x4a\xb5\xaa\xa8\x90\xf7\x3a\x47\x20\x91\x4e\x3a\xca\x72\xfb\x64\xc0\x78\xdd\x27\xb5\xa6\x7b\xb0\x86\xfa\x0f\x84\x17\x03\x1e\x03\xa1\xed\x39\x59\x59\x5e\x1e\x29\xb0\x5c\x33\xed\xd2\x1d\x10\x40\xa8\x2d\x40\x99\x40\xff\x05\x2f\x0c\xcd\xd1\x5b\xbc\x4b\x33\x3b\x70\xc4\x2f\xa8\xd0\x83\x83\x58\x8f\xfd\x90\x8d\x49\x92\x74\x94\x74\xec\xc0\x56\x28\x58\x27\x15\x19\xa9\xa9\x0c\xb7\x74\xf1\x5d\xdb\xa0\xd6\xca\x31\x1a\x77\x3e\x36\xe5\x3f\xdf\x78\xa3\x39\x30\x47\xa2\x41\xf4\x26\xd2\x62\x80\x4d\x2a\x7a\xe7\xa7\xa9\x97\x76\xa5\x4c\x22\x03\x1f\x91\xc9\x22\x15\x20\x0d\x09\x05\x7a\xcf\x7a\x3c\x7e\x29\xd0\x48\xdb\xae\x5d\x89\x12\xf9\x00\xae\x0f\xbe\xf2\x26\x25\x4c\x37\x6b\x24\x1a\x0f\x36\x57\xd2\x38\x4e\xd7\xdd\x7b\x47\xb0\xa7\xb2\x1f\x7a\x52\x1d\x67\xef\x82\x77\x40\xd7\xa8\x3c\x5c\xb7\x5e\x03\x7e\xa5\x9b\xa5\x32\x89\x36\xe3\xc7\xf2\xbe\x73\x11\x1e\x13\xcb\x02\xd3\x57\x2a\x12\x47\x0b\xab\x6b\x8d\xd3\xed\x76\xcc\x67\x61\x7e\xf7\x21\x01\x64\xba\xe9\x20\x4a\x22\xcf\xb1\xec\x04\x61\xe5\xce\x9d\x54\x6c\x4d\x9a\xbb\x6e\xcd\xaa\xe3\x4e\xc5\xd6\x7d\x48\x88\xc4\x87\x5f\xe9\xda\xfe\x3f\x8d\xba\xf0\xe3\x5a\x5e\xde\xd0\x1e\xb4\xaf\x5c\x7b\x57\x87\xaa\x32\x1e\xc8\x45\x09\x76\xf4\x98\x39\xc0\xaf\xe9\x7c\xad\xa3\xe9\x95\x4b\xc7\x25\x7c\x3a\xae\x68\x5d\x06\xe8\xdc\xa4\xc6\x54\x2e\x08\x28\xa1\x11\x5c\xe8\xdc\x24\xf0\x4d\xcf\xb5\x9f\x0c\xde\xbf\xb3\x5d\x76\x9d\x76\xbd\x05\xd9\xed\xd4\xfc\xca\x4f\x40\x94\xe1\x33\x31\x5a\x6e\x6c\x26\x0c\x79\x7e\xdc\x0a\xbf\xf0\xbf\x4f\x59\x45\x21\xb3\x34\x5d\xe2\xb8\x7d\x40\x1c\xb7\xd3\x3c\xac\xfb\x84\x9f\x3b\x8f\xba\x76\x8e\x28\x90\x2f\x13\xda\x64\xa6\x5d\xd1\xb3\xf3\xc8\xab\xcf\xe5\xd9\x86\x46\xab\xde\x5b\x66\x43\x33\x0e\xf9\xdd\xdd\x16\x25\x7b\x77\xeb\x8a\x12\xa2\x94\x54\x44\x06\x78\x31\x17\xf5\x86\x4a\xc9\xbf\xc3\xeb\xc2\x6f\xd5\x12\x70\x76\xed\x8a\x35\x05\x71\xa7\x20\x5b\xd5\xe3\xa9\x4f\xbc\xe2\x64\x1c\x1b\x34\x33\xa0\x6d\x5a\x3d\xa1\x96\xb5\x35\xb9\x12\x81\xa1\xc6\xf7\x01\x31\x4b\x3e\x26\xc1\xa5\x7b\xe3\x5f\xae\x59\x14\xa3\x24\x5a\xd1\xd8\x21\xca\x07\x0d\xa2\x32\xfb\x80\x92\xd1\x0f\x98\x92\x3b\x33\x6b\x5d\x83\x1a\xa7\x13\x13\x6a\x78\xb9\xc9\x47\xe3\x30\xf9\x7e\x89\xb2\xaf\x4e\x6c\xf2\x3c\xea\x08\xf9\xdd\xd2\x26\xe0\x76\xe8\xf2\x69\x21\x0b\x03\x39\xb3\x75\x72\xfe\xaa\xd7\xa1\x6a\x14\x08\xec\x1f\x72\xe3\xfb\x52\xd5\x53\xee\xf1\x98\x1a\x93\x75\x21\x76\x8f\x02\xf8\x9f\x6b\x57\x9a\xa3\x21\x3a\xda\x2d\xfd\x0c\x24\x5c\x0a\x9c\xf7\xa4\xf5\x9e\xa8\x0e\xfd\x69\x2c\xc1\x87\xf8\x45\xd0\x23\x3e\x3b\xc5\xec\x06\x12\x28\x10\xad\xe9\x10\x19\x5e\xdc\xcf\xe0\x1b\xf5\x84\x55\x7d\x6c\x67\xd5\x66\xb3\x34\xf0\x75\x01\x53\xb1\x1e\x0d\x16\x26\x6f\x38\xc4\x61\x2a\xf6\xc2\x66\x59\x9a\x45\xf9\x40\xb8\xaa\x9d\x76\x46\x79\x67\x1e\xf8\x1f\x84\x5c\x5b\x61\x06\xe1\x5f\x49\x8d\xdb\x51\xf9\xcb\x05\xfa\x39\x9e\xf2\x79\xe1\xb9\x9e\xac\x2b\x1b\xa6\x47\x36\x7a\x36\x21\x81\xee\x8b\xd4\x25\xbd\x48\x0e\xc1\xac\x14\x36\x2b\xcc\x11\x2c\x69\x04\x3b\x7f\x04\xfb\xa5\x27\x3e\xa9\x8b\x47\x47\x46\xd2\x56\xa3\xa9\xfb\xbb\x2d\x4a\x80\xa0\xbd\x0b\x5c\xe9\x25\x62\x66\xcb\x87\xa3\x44\x9b\x2b\xde\xd1\x86\x32\x84\xaa\x98\x3b\xc9\x5e\x9a\x32\x8d\x86\x36\x8e\x12\x2b\xf2\x34\x41\x92\xf9\xf0\xbc\x7a\x65\x94\xd4\x10\xb5\xe2\xb1\x21\xf0\x9a\x9d\x90\x5e\xf5\x5d\x78\x37\x3f\x82\x50\x5a\x69\x3d\xc1\x13\x45\x4c\x8c\x34\x13\xe5\xab\xfb\x63\x22\x05\xd8\x14\xdb\xaa\x03\xd5\x2d\x96\x12\x10\x10\xe4\xd3\xe5\x25\xc0\xb8\xbf\x8d\x9b\x42\xf0\xfd\x16\xd2\x07\x3c\x42\x05\xf5\xe9\x43\x12\x87\xe2\x38\x48\xc9\xc6\x9d\xc0\xfa\x86\xf9\x04\x7c\xcb\x49\xb0\xcb\x55\xbb\x67\xcc\xac\xc4\x5a\xe9\xf2\xad\x23\x7f\xa9\x8c\xc8\xfc\xac\x45\x37\x7a\x67\x2a\xd6\x28\xe3\xcb\x81\x35\xf9\x28\x73\x86\xcd\xf1\x47\x13\x31\xd7\xad\x16\x93\x6a\xf4\x6d\x22\xb3\x89\x6e\x39\x85\x91\x37\x70\xbf\xe1\xb6\xdf\x62\x28\xe9\x13\x53\x78\xe9\xbd\x0b\xcd\x65\x41\xb7\xf7\x88\x29\xea\x2c\xc5\x1f\xd3\xca\xcc\x8b\x8b\xcd\x65\xbb\x26\x6c\x24\x92\x59\x6f\x4a\x17\xe4\xe0\xe6\xd5\xa9\x9b\xda\xbb\xd7\xf7\x2a\xf5\xa6\x10\xac\xea\xca\xd3\x93\x71\x50\xf2\x5d\xb7\x99\xfd\x5a\x19\xfa\x8a\x45\x1a\x3c\x3f\x61\xf6\x2d\x1a\x39\x7a\x0c\x14\x23\xee\xf0\x73\x71\xc2\xb0\x61\xd7\xa9\xc0\xfb\x04\xfa\x31\x28\x47\xee\xd0\x4e\x93\x43\x00\x0a\x44\x02\xce\x5a\xe9\x9e\xe1\xae\x1a\x13\xca\x75\xde\x07\xf8\x02\x27\xf7\x80\x4e\xc2\xc6\xba\x86\xd5\xe0\x27\x13\xf6\xee\x55\x80\xe8\x7d\x99\x6a\xf3\xa8\xa0\xf2\x95\x63\x64\x01\x0a\x8e\x30\xcf\x4f\xb6\x2b\xd0\xc4\x72\x29\x7a\x40\xba\x47\x4d\x83\x24\xd6\xb1\xcd\xbc\x30\x6d\xf8\x5f\x16\xf0\xa9\xab\x00\x35\x5e\x7e\x59\xaf\x0d\x40\x62\xfc\xea\x25\x98\x49\xd7\xac\xfd\x0a\xfa\xec\x18\x8a\x7d\x2e\x6e\x2e\x1f\xba\x8b\xa7\xb7\xc6\x28\xfb\x96\x9a\xd9\x28\xd1\xb7\xe9\x67\x84\xbd\x25\x9a\x06\x7c\x2e\x1c\x6a\x16\x26\xd2\x34\xa2\x4e\x98\xab\x06\xcb\x68\x3a\x1d\x3b\x2c\x04\x4f\x41\xe5\x12\x1d\xa0\xd2\x13\x3f\x61\xd4\xcb\x4c\x77\x64\x0a\xbb\x9d\x34\x4f\x80\x67\xf1\xf7\xe3\xe3\xa1\x3d\xed\x8a\x84\x70\x18\x75\xfd\x08\xdf\xed\x0a\x99\xa1\x2e\x54\x64\xa6\x63\xe1\x97\xd5\x62\x9d\x23\x76\xef\xef\x62\xe9\x28\x05\x08\x51\x23\x8c\x92\xd8\xac\x8b\x6e\x49\xa3\x42\xeb\x20\x7f\xee\x86\x31\x7d\x94\x12\x65\x45\x3f\xe7\x11\x9d\xcb\xad\x00\x17\xb9\x3c\x7e\x9e\xbb\x4b\x69\x26\xcc\x07\xe5\x9a\x71\xff\x1e\xa4\x14\x2e\x93\x6d\x1c\x9a\x8d\x32\x7d\x9b\x2d\xff\x15\x56\x4b\x55\x4a\xf4\xa4\xa6\xd9\xa9\x27\xe3\xaf\x55\xdb\x0c\x8b\x8b\x07\x05\x7d\x39\x17\xf8\xa3\xd4\xf7\xe1\xa5\xff\xad\x2d\x8c\xc1\xa1\x86\x4d\x72\x12\xb7\xa8\x49\xa6\x0c\x90\xe5\xfb\x72\xea\xab\x2c\x8b\x74\x8e\xf5\x5f\xd2\xa4\x88\x92\x91\xab\xb0\x3a\x4e\xc3\x80\xee\xb8\x50\xb7\x44\xdf\xb4\x85\x21\x9d\xf1\xbf\xcd\xbd\x8c\xbf\x3d\x95\xdb\xbf\xfc\x32\x28\xc2\x67\x88\x27\xe3\x7e\x8b\x2a\x65\xba\x91\x51\x69\x39\x4b\xef\x63\x3d\xcd\x72\x9b\x38\x6e\x74\x1f\x8c\xd0\xb0\x30\xa9\x34\xc4\xa6\xb3\xfa\x94\x98\x0d\x6c\x47\x75\xb9\x88\x3e\x2e\xb6\xc8\x58\x7d\x42\x50\xb9\xdf\xc5\x6f\xc3\x01\xa8\x04\xb6\x1f\x9b\x3a\x30\x1f\xf8\xb7\xf6\x05\xfe\x2d\xd2\x06\xfd\xc7\xfa\x64\xf5\x57\xc6\x61\x16\x7a\x0e\x98\x31\x4f\xe6\x5b\xda\x09\x05\x5a\x10\x29\xcb\x72\x1c\x24\x92\xdd\xb8\xb9\x18\x45\x98\xb8\xf7\x81\x35\xd3\x93\x56\x25\x46\xd8\x9a\x2d\x1e\x9e\x2f\xa3\x3e\xc8\x4f\x6a\xde\x1e\x80\x58\x3c\xdd\xdd\x7a\x91\x3b\x1f\xb1\xd1\x3a\x04\x31\xec\xff\x83\x16\x09\x6f\xfe\x03\xa2\x9a\x1a\xa6\x69\x9c\xcf\x04\xbd\xe3\x73\xd4\x61\xac\x72\x20\x84\x96\xf0\x30\x4b\x3b\x36\xcf\x23\x07\xce\x73\x5a\x03\xa1\xe4\xfd\x63\xf6\xfd\x5f\x30\x1c\x09\xbd\x3a\xc4\xd9\xea\x47\x5c\x19\xba\xf4\x09\xc8\x2d\x6e\xc8\xcb\x41\x41\x63\x9b\x10\xae\x62\xfc\xf2\x14\x55\x95\x73\xdb\xc9\x6c\xa1\xc5\x0c\xc7\x6e\x18\xa6\x54\xa6\xcd\xa4\xcb\xbd\x07\x91\x88\x29\x05\x1c\x8b\xe6\xc7\x7a\xe2\xcd\xe4\xb2\xc9\xed\xb2\x89\xe3\xd9\xd2\x72\x00\xbf\xfd\x0e\x0a\x48\xce\x53\x94\x5f\x81\xd8\x6b\x0e\x73\x7e\xa8\x39\xdd\xa9\xe5\x08\xb2\x47\x86\xb6\xe3\xdb\x66\xd8\x33\x77\x99\x68\xe6\x2e\x71\x3a\xc4\x56\x24\x59\xca\xef\xd4\x92\x36\xb5\x03\xcf\x8f\x3d\x5c\xb6\x6f\xa2\x6c\x68\xb3\x5c\xef\x87\x0a\xc2\x5e\xd9\x84\x02\xfa\x32\x5d\x95\x39\x85\xe7\xe4\xa1\x61\x0d\x3e\xc6\x1a\x44\x7e\xf2\x01\xb6\x0b\xf2\xad\x5b\xe3\x40\x6f\x7b\x05\x2f\x94\x49\xd7\xb1\x94\x66\x85\x2f\x1b\xce\xe2\x26\x69\xf1\x3d\x24\x3e\x9d\xa3\x58\x7c\x15\xe1\x07\x6c\xa9\x7f\x85\x4b\x45\xde\xf3\x82\x46\x1c\x58\x70\xb7\x5a\x61\x1c\x6d\x9b\x30\x77\xf9\xde\xf8\x5e\x27\x5b\xa7\x94\x49\xca\xa3\x53\x47\x61\xd3\x8d\x32\xdb\x29\xd2\x6c\x9a\xda\xda\x97\x3e\xc3\x10\xc8\x6d\xef\x60\x44\x41\x75\x63\xbb\x5c\x36\x0b\xed\xfa\xc1\x95\xf2\xdb\x1c\x49\x0f\xf7\xa9\x5b\x15\xf9\x11\x2f\x53\x3d\xd3\x0e\x69\xc5\x8a\xb5\xc5\xce\x60\xfd\x4e\xca\xc3\xc4\x92\x52\x26\x3c\x2f\x94\x13\x98\x76\x2e\xca\x17\xfb\xa6\xd6\x81\x79\xf7\x09\xb2\x9d\x27\x11\xa3\x39\xe0\x53\xdd\x20\x89\x57\xd8\xc4\x0d\x7f\x3a\x0e\x32\x7f\x9f\xb6\x02\x81\xb1\xc9\x44\x0c\x1b\x46\x64\xbf\x1f\x3b\x05\x73\xbb\x1e\x53\x9d\x3f\x37\x83\x61\x6c\xb9\x0a\x02\xdc\x9a\x1e\xb7\x48\xda\x26\xcd\xa5\xa4\x68\xbb\x73\x2c\xa0\x01\x03\xe9\x04\xa9\x24\x6a\x84\x65\xc6\x4c\x0f\x56\xf2\x71\x64\x41\x4e\x0d\x87\xb8\x08\x4c\x21\x1d\xc5\xf2\x49\xc0\x14\xa1\x98\xa6\xc7\xb5\xba\xb3\x9a\x07\x49\x09\x06\x21\xe6\xb6\x49\xa8\x4d\xef\x04\x80\xc7\x8d\x17\x12\x61\x4e\xd6\x33\x49\xf4\x26\xec\x31\x26\xb4\xb1\xf8\xfe\xd9\x38\x20\x88\x8e\x8e\xbf\xb2\x0e\x57\x6e\x3b\xfd\x23\x30\x26\xeb\xa7\x5b\xcc\xb2\x31\x50\x36\x0e\x54\xf5\xee\xd3\x34\xc5\x7d\x12\x8f\x1b\xc5\x2a\x12\x81\x80\x57\x99\x0d\xf5\xc4\xc3\xee\x07\x51\x11\x91\xc2\xf6\xdb\x58\xac\x4e\xce\x9e\x54\x3d\xd3\xc2\x26\x45\x04\x84\x91\x03\x6a\xe8\x20\x8b\x0e\x91\xcb\x4a\x83\x1d\x7c\x00\xdf\x0b\x5f\x7f\x2f\x98\x23\x53\xd8\x6c\x18\xc5\xb1\x8a\xd3\xa0\x8e\xab\x44\x0b\x88\xf6\x77\xb7\x43\x05\xe9\xf1\x38\xd4\x73\x96\x4d\xd6\x33\x51\xa2\x41\x8b\xa3\x1c\x68\x78\xa9\xdf\x4b\x53\x9b\x1b\xd2\xfb\x03\x5f\x70\x87\x41\xf9\x82\xb8\x4b\xbe\xa8\x12\x89\xc5\xa3\x06\x27\x69\x44\xed\x7b\xb6\x32\xb5\x94\x1e\xd9\x90\x2f\x44\xcd\x02\xd0\x50\x3d\xa6\x30\x77\x68\x32\xd3\xb5\xe0\x8c\x74\xce\x89\x45\x40\x4f\x8d\x89\x98\xf5\xf7\xc7\x01\xd9\x05\x27\xe5\x24\x1e\x03\x54\xe2\x3f\xf9\xd5\x7c\xa6\xb4\x6c\xfa\x84\xf1\xe8\x91\x09\xcf\xb6\xa9\x87\x75\x9e\x54\x73\x33\xbb\x2c\x4d\x52\x80\xe9\x3d\xd4\x26\x00\x23\xaf\x53\x49\x68\x68\xb3\x41\x54\xcc\xc8\x26\x42\xe6\x8d\x5a\xb5\x47\x13\x95\xdb\xce\x81\x54\xf8\xc9\x6d\xc4\x96\xc9\xf5\x2e\x62\xcc\x0a\xd9\xc8\x2d\x22\xf0\x7a\xc8\xf2\xb2\xe7\x94\xb7\x4f\xff\x4c\x9f\x8d\xfe\xdb\x16\x82\x0e\x3f\x3a\xf3\xdd\x9a\xb7\xbc\x24\x7c\xf4\x5d\x03\xe4\x97\xc3\xa2\x84\x8c\xe2\x1c\x3d\xc3\x6f\xdb\x42\xb8\x30\x10\x65\xef\x24\x24\xf7\x6d\x56\x55\x38\xcf\x33\xf6\xe7\xc7\x95\x0c\xc0\x2c\xc7\x9a\x18\xe1\x09\xca\xf4\xa0\x82\x98\xd1\x83\x3f\xc6\x44\xa6\xb0\xc5\x70\x7f\xb0\xa6\x7a\x3c\x75\x27\x32\x8d\x95\x17\xa6\xb0\x5d\x29\x44\x39\xa7\xcf\xb1\xef\x4c\x10\xca\x3c\x45\x7c\xf2\x9d\x74\x94\x14\x36\x1b\xa4\x6b\x16\xe6\x98\xc1\x6b\x4e\xe3\x21\x00\x03\xfa\xe9\x28\xdb\x21\xb6\x49\xd9\x39\xe5\x69\xa1\xd0\xfc\xb8\x45\x81\xca\x15\xbc\x07\x94\x43\xce\x11\xc9\xc1\xc3\x31\x91\xf2\xa2\x72\x00\x34\xd9\x97\xd4\x5b\xb1\x47\x86\x26\xe9\x42\x38\x1c\xff\x3a\xab\x1c\x8a\x7a\xd6\xde\xda\x2e\x76\x35\x2f\x6a\xc2\x5f\x21\x6c\xe8\x65\x78\x3f\x38\x36\x05\x32\xe9\x09\x95\x71\x46\x49\x54\xe4\xbb\xe4\x15\x00\x52\xa1\x5c\xd5\x58\x0d\x7f\x2a\x7e\x12\x41\x19\xee\xc8\xe9\x88\xcb\x03\xf1\x1c\x2e\xe5\x15\x78\x89\xd0\x72\x6d\xe3\x6d\x9f\x27\x29\x31\x95\x82\xf9\x2a\xe2\xec\xa5\xa5\xfd\xcd\x34\x8b\xad\x49\x72\x00\xb0\x50\x5b\x79\xae\x4d\x64\xb6\x57\x34\x97\x80\x39\x9d\x63\x2e\xa0\x93\x01\x66\x9e\x07\x3d\x39\xc7\x93\x7f\x97\xc7\x26\xee\x92\xe0\x6f\x54\xe4\x36\x5e\xd9\x5d\xde\x24\x70\xb0\xb7\x60\x8a\x71\x2f\x30\x56\x4a\x9c\x29\x77\x8f\x12\xdf\xec\x84\xe2\xf4\xeb\xf0\x14\x58\x1b\x8f\x70\xf7\xfa\x5d\xe3\x50\xe8\xbd\x58\x51\xb8\xc1\xa3\x70\xb4\xb7\x94\x6c\xc6\x69\x6e\x65\x08\x9d\x62\xff\x16\xf1\x70\xfc\xb8\x46\x4f\xae\x69\x3a\xbf\x3d\x8a\x10\x08\x50\x6b\xee\x03\x26\x6e\xfd\x80\x65\xab\x24\x45\x91\xdb\xc4\x84\xc7\x4f\x88\x43\xf7\x32\xff\xda\xf5\x1a\xe5\xbd\xa6\x89\x4d\xbe\xaa\xda\xd6\x0a\x78\x62\xc2\x88\xa0\xaa\xb5\x92\xd9\xbc\x2f\xe3\x52\x40\x28\x5c\xe4\x7a\x32\xb2\x1b\x59\xd9\xf3\x7f\x4e\xea\x45\x58\xe5\xb7\xf0\xa6\x5c\x2d\x4b\xac\x2b\x1e\xfa\x65\x3f\xf5\x3b\x88\x3a\x59\xba\x6e\xd6\xd0\x2e\xd3\xfa\x49\x8b\x6b\x29\x35\xc4\x27\x79\x3f\x1d\x79\xca\x38\x17\x4c\x50\x27\xfc\x62\x4d\x96\xd1\x34\x1d\xd8\x0a\xcd\x32\x60\xe1\x54\x89\x58\x4f\x48\xe3\x34\x1f\x5a\xdb\x4d\x07\xb6\x28\x73\x8d\xc3\xf3\x4b\x9b\x92\xfc\x6d\x9e\xa3\x2c\x6b\x2d\xb2\x45\x62\x06\xb3\x15\xe1\xaa\x30\x6b\x73\x85\x74\xa9\x2f\x56\x04\x54\xea\xc6\x33\xf3\xc2\xac\xac\x90\x1e\xf9\x45\x8e\x0c\xaa\x9a\x86\x1b\xb6\x78\xb2\xb4\xa6\x70\x4e\x4f\x4c\x88\x55\xe0\x2e\x96\xac\xce\x0b\x4b\x80\xa8\x92\x5f\xad\x50\xc6\x7b\x84\x8b\xc1\x9b\x38\x23\xe0\x00\x18\x9c\x1f\xb4\x68\x7e\x12\xac\x26\xe8\xd3\x1c\x87\x31\xf4\x1c\x95\x8b\x8b\xba\xf5\x3f\x9c\x6a\xdb\xef\x5b\x6a\x9a\x38\x96\x95\xa2\xe4\xa1\x64\xc5\x9f\xc6\xc4\x03\x5a\x32\x98\x3d\x07\xd8\x13\x2d\x4e\x67\xa6\x48\xb1\xe1\xea\xd4\xb3\x5a\x5c\x6c\xf6\x07\x69\xd2\xd3\x6e\x34\x5c\xcd\x59\x7c\x46\x4f\x18\x10\x5b\xc6\x00\x49\x4f\x9e\x17\x42\xae\x6b\x34\xe3\x7b\x9d\x2b\x6e\xff\x5a\x62\xe8\x4d\xa5\xe3\xf1\xed\x56\x3f\x54\xa7\xa4\x97\xc8\xb4\xbe\x50\xa7\xad\x8f\x04\x86\xc6\xc9\x9c\x85\x7e\xe5\xb6\x09\xcb\x93\x4d\x95\xb4\x65\x3a\x33\xcf\xc3\x7c\xbc\xaf\x98\x87\xea\x79\xb5\x1d\xb8\xa1\x1d\x7b\x24\x92\x9f\xd0\xd4\xde\x27\x53\x6b\xfe\xd0\xab\xcd\x8e\x8d\xed\x72\x66\x0a\x2b\x25\x59\xad\x43\xcb\xb7\xbb\x9a\x74\x08\xae\x63\x4c\x43\x07\x4e\xe3\xb3\x72\xf3\x7a\x4c\xc3\xd6\x99\x2d\xa2\xcc\xba\x22\xbc\xab\x8b\xca\x07\x5d\xa1\x97\xe1\xdc\x59\xd1\xb7\xd9\x9e\x32\x7c\xc3\x82\x7d\x9f\x82\xf6\x9b\x78\x01\x88\x91\x50\x82\x42\x20\xa5\xd6\xc2\x0f\x9b\x94\x4f\x11\x91\xf9\x75\x5e\xe2\xf7\x25\xac\x80\x81\x7b\x57\xd6\x10\xde\xc1\xb1\x71\xc0\xcb\x3c\x27\x24\x69\xda\x65\x93\x7b\x47\xc7\xea\x18\x15\xa6\xf2\x32\x32\xcf\x85\x1e\x11\xbf\x02\x05\x3f\x44\xa5\x17\xe4\x47\xf0\x42\x8f\x7b\xd7\xd4\x8b\x92\x9e\x17\x91\x85\x53\xbd\x28\x37\xa0\xc7\x75\xcd\xe9\x81\x01\xac\xad\x5c\x47\xc8\xa6\x4e\x61\xe1\xea\x09\x85\x5b\x83\x28\xb1\x99\x89\xa5\x34\xeb\x36\x24\xc1\xd8\x2f\x90\xdf\xcb\x3b\x59\x34\x2c\xa8\xc8\x81\x76\xab\x03\x1f\x3d\x43\x2f\xae\xcc\x23\xf0\xf3\x8e\x3c\xa8\x41\xa4\x42\xcf\x50\x4d\xf5\xdb\xb6\x53\x34\xc8\x27\x63\x4d\xea\x71\xe0\x6c\x18\x15\x11\x0a\xd3\x41\x29\xf9\x0a\xf1\x88\x5e\xa1\xa9\x58\x02\xcd\x84\xe6\xee\xe5\xca\x74\x59\x1d\xba\x2a\x2f\x46\x2b\x2b\x30\xda\xaf\x33\x1b\xf4\x82\x87\xae\xf2\x80\xb4\xed\x8c\x8a\x68\xcd\x92\x04\x21\x46\x1a\xf4\x78\x42\xd6\xdb\xe6\xb9\x8d\xe1\x9c\x55\x46\x18\x26\xd7\x69\x0a\x3f\x4f\x35\x3d\xdb\x8d\x3a\x4e\x78\x10\x39\x8c\xda\x67\x3d\xe1\xa5\x94\x8e\x7a\x7d\xe0\x6c\x9d\x96\x54\x90\x99\xc1\xb3\xd1\xda\x36\x4d\xe9\x5c\xa6\xe7\x24\xd2\x75\x9d\x2c\x5a\x06\xa9\x3a\x7c\xc6\x7b\x24\xa9\xf5\xde\x38\xf0\xc3\x6b\x5c\xe8\x1e\x66\x8d\x0c\x4b\xc7\x64\xa6\x63\x72\x66\xcc\x1f\x13\xa0\xe0\xcb\x4a\x0d\x2c\x5a\x8b\x62\xdb\xb3\x73\xe5\xaa\x43\x79\x69\x0e\x18\x51\x47\xf0\x1a\xda\x4e\x28\x56\x2a\xe3\xa2\x5c\x91\x7e\x60\x12\x28\x34\xed\x91\xa1\xcd\x22\x2b\x5a\x4f\x07\xe6\x35\x8e\x04\x14\x47\x8f\x71\xf9\x08\xeb\x35\x92\xd2\x13\x7a\x22\xe9\x72\xb9\x1a\x45\x06\xb3\xbc\x8b\x3a\x4a\xb6\x9a\x39\x4e\x91\x0f\xb5\x8a\x64\x80\x2f\xd2\x9a\xb2\xf2\x07\xb6\xd0\x6e\x0c\x51\xbb\x13\x32\xf3\xac\x4a\xb7\xc7\x34\xa0\x7c\xbb\xf5\xb5\x80\x2f\xae\xb0\x09\x87\x72\x29\x7a\xbc\x7a\xdc\x7a\x71\x1a\xa2\x36\x1a\xce\x04\xd9\xb5\x87\x32\xa6\xcd\x8d\x32\xc7\x73\xb6\x15\xe4\xf0\x4a\x33\xb7\x49\xae\x83\x4e\x8d\xca\xa4\xa0\xef\x5d\x7c\xc8\x6e\x6f\xd4\xe9\xd8\x3c\xdf\x25\x16\x83\x32\xa8\x6f\xa8\x49\xbb\xc6\x3e\x16\xb2\x44\x4e\xc7\x29\x54\x97\xff\x58\xea\x33\x6e\x9a\xa3\xbc\x54\x3c\xed\x33\x84\x6d\xc0\x24\x3b\xc2\xe2\xfb\x53\x97\x2d\x1d\xc1\x41\xda\xc9\x4c\xa1\x43\xb8\xf0\x55\x9a\x71\xea\x49\x8d\xa6\x6c\x73\x68\x62\xcb\xbe\x08\x7d\x10\x37\x11\x51\x83\x5d\xea\xf4\xa3\xce\xaa\x4d\x88\x65\x06\x22\x0e\x7a\x1c\x28\x04\x6d\x9e\x1b\xbf\x2c\x90\x00\xab\x67\x77\x59\xa7\xa4\xf0\xae\xc7\x56\xfb\x53\x66\xb0\x6c\xb3\x19\xa2\x80\x53\x16\x32\x47\x72\x11\x72\xab\xfb\xb5\x0a\xe1\xa3\xe1\x30\xcd\x6d\x97\xc4\x9a\x34\xbf\x75\xb4\xcf\x5b\xe7\x60\x45\xa9\x60\xb4\x9c\x66\xdd\x28\x09\x52\xd9\x88\xbe\x81\xef\xd3\x63\xef\x9e\xec\x11\x3b\x18\xfa\xbf\xf4\x04\x0a\x1e\xaa\x79\xa5\x8e\xe7\x28\x2f\x4c\x0f\x64\x3a\x88\x14\x6f\x20\x52\x74\xf9\x6d\x79\xb9\x6e\x54\x33\xd4\xe3\x87\x51\x9c\x16\x62\xaa\x00\x71\xf9\x42\x8c\x81\x0e\x2e\x8a\x1b\xf5\x64\xc0\x1e\x06\xf3\x85\xaf\x26\x67\xb6\x18\x65\x09\x72\x56\x6f\xd2\x4a\xd7\x0f\xa7\xf4\xbf\xe0\xb9\x38\xf0\xaa\x3c\x65\x47\x7c\xd1\xf0\x6a\x14\x3f\x69\x11\x7f\xc4\x51\x6a\xd7\xde\xa7\xe9\x89\x6d\x6d\x22\xdf\x78\x54\x77\xfb\x85\xcd\x1d\xf2\x09\xcb\x66\xdc\x0a\xfc\x75\xda\x55\xd2\x90\xa0\x4e\x95\x06\xf8\x30\xb1\x06\x5e\x06\x69\x71\xd1\xcb\x20\xd5\x2c\x84\xcc\xe6\x76\xb0\x1c\x5b\xea\x31\x3d\xa4\x91\x02\x35\xd4\xae\x20\x51\x37\xba\x9f\x99\xbc\xdf\x08\xf3\x45\xf0\x2f\x8e\x19\x2f\xb0\x06\xdb\x24\x31\xf0\xe6\xbe\xba\x41\xdf\x3c\x35\x2b\xb2\xb8\xd8\x1c\x8e\x0a\x50\x02\x38\x06\x1d\x79\x0f\x48\x26\xe0\x8c\xf4\x78\x4c\x2c\xbc\xe7\xa9\xd9\xb6\x9e\x66\xab\x79\xa1\x93\x6b\xbe\xd6\xf4\x2f\xe5\xa3\x6e\xb2\xce\xf7\xac\x6d\x12\xf5\x92\x39\xcf\xc0\x91\xa0\x9b\x8e\x4a\xdc\xb3\xd2\x45\xf1\xed\x69\x5f\x7d\x6c\x08\x9e\x43\x15\xd3\xa7\x82\xdf\x32\xa5\x32\x49\x47\x9b\x83\xe5\x9d\xa3\xa5\xf3\x25\xa9\x24\x7c\x39\x95\x80\x2f\x2e\xaa\x3a\xb9\x7c\x6e\x26\xe0\x2b\xff\x47\xf6\x99\x37\xc6\xa4\xf0\x76\xa3\x92\x9b\x45\x45\xff\x17\x03\x61\xd2\x17\xb0\x25\x1e\xb3\x73\x60\xfe\x80\x27\x44\x93\xef\x83\xe5\x9e\x99\x50\x9d\x02\x2c\x16\x30\xcc\x37\xc7\x8d\xbf\x71\x90\x08\xd1\xf6\x56\xa6\x92\xb0\x0f\xee\x68\x31\x51\x99\x45\x10\x24\xfa\xe6\x6a\x18\x78\xbf\x4f\x2a\x82\x6f\x08\xc8\x05\xd6\x54\x68\x31\x0f\x68\x03\xea\x1e\xa3\xd0\x3e\x6c\x31\x71\xb0\xf8\x2a\xac\xfe\x5b\xc4\xdf\xd5\x40\xe3\xd7\x91\xa8\x20\x2b\xc2\x3d\x7e\x82\xba\x12\xa2\xed\x53\x52\x36\x53\x65\x83\x16\x11\x4f\x3f\x16\x2f\x83\x67\x79\xa7\x46\xf7\x79\xbf\x4c\x70\xf5\xd3\x51\x8e\x29\x99\xca\xd6\xd0\x93\x16\x79\xbe\x28\xe9\x58\x1d\xa8\x71\xe9\x36\xe7\xe4\x5b\x97\xfa\xd2\x52\xb3\x6f\x74\xd3\x23\x98\x51\x29\x17\x37\x23\x4d\x80\xa7\xf7\x88\x09\x30\xef\x47\x92\x59\x56\xd8\xfe\x2f\xf1\x55\x4d\xc3\xfe\x17\x0e\x35\x13\xbb\x1e\x6f\x90\xc6\xc2\x23\x9a\x35\xdb\xdd\x26\x72\xf7\xa3\x04\xb0\xad\x0d\x8c\xbf\xde\x34\x51\xec\xc7\x77\xb1\x90\x80\xf0\x75\x0c\x4a\xd4\x00\xf1\x6e\xa1\x4c\x01\xb2\xae\x93\x06\x47\xa8\x85\x86\x14\x30\x01\x2a\x56\x8c\x0d\x7a\x99\x7a\xe1\xeb\xa6\xb0\x19\x60\x7b\x30\xe1\x3f\x6a\x11\x81\xc2\x9f\xc8\xe2\xd2\x9c\x8e\xc8\x6d\x3e\x1b\x07\x26\xab\x0b\x98\xae\x7b\x1b\xab\x4a\xbf\x04\x41\x89\x7f\xa7\x87\xe7\x17\x36\xdf\x96\x26\x26\xab\x0b\xe8\x6f\xd4\x34\xab\x96\x9a\x9d\x51\xb6\xec\x09\xa7\x94\x99\x84\x6c\xcc\x19\x6a\x4b\x74\xd3\xae\x88\x66\x78\xa1\xa3\x5b\xb2\x8d\xf4\xb8\x55\x07\x1d\xea\xae\xd9\xac\x88\x82\x3c\x14\xab\xd5\xa9\x74\x32\x03\x3d\xeb\x64\xcb\xd7\xfb\xa6\xc8\x53\xbb\x06\xc4\xa9\x6b\xab\x68\x32\xe7\x8a\xbb\x81\xfa\x06\xa2\xf6\x0e\x7a\xec\xfb\xed\xe9\x68\xa3\xe7\x71\x2b\x28\xc1\xdd\x67\xce\x9d\xfb\xd4\xcc\x58\xcd\xcc\x5a\xe4\x28\x24\x11\x9a\x9d\x62\x74\xc8\xa9\x1a\x3e\x85\x66\x6c\x7b\x7e\x84\x5c\x11\x4d\xf2\x18\x1d\xba\xa9\xd2\x2e\x42\x4d\xac\x5e\x71\xb5\x86\x49\x2c\x4a\xba\x91\x16\x19\x55\x16\x0a\x97\xee\x34\xa2\x6a\x7a\xd3\xd1\x00\x12\xd1\x08\x5f\x50\xad\x69\x00\x04\xaa\x27\xed\xad\x3f\xf4\xda\x81\xf9\xa6\x8d\x97\xd3\x75\xca\xc8\x3f\x25\x1c\xc2\xa7\x5e\xfe\xac\xe8\x4b\x8e\xb6\x32\x42\x28\xad\xb0\x1c\x42\xd3\x5f\x22\x29\xce\x42\xe6\x52\x7d\x7b\x0f\x73\xba\x7a\x4c\xed\x95\x8e\x59\x6e\xd0\x78\x68\x55\xd0\xb0\xae\xf9\x9e\xa9\xfd\x90\x75\x85\x6c\x08\x3b\x47\x8f\x29\x9a\x1f\x25\x9d\xd8\x9a\x6c\x36\x60\x41\x51\x3b\xd3\x63\x21\xba\x40\xad\x43\xdf\xb3\x9e\x50\xea\xdf\xe9\x47\x5d\xdb\xd5\x35\xa1\xea\x5a\x28\xb9\x3b\xa9\xad\xa7\x49\x0e\xef\x4d\xab\xd8\x11\x05\x7a\xca\x2f\x38\xd0\x67\xf8\xc3\xcc\x2c\x47\xfa\x86\x5c\xdd\x35\x5c\xca\xc5\x9a\x55\x76\x50\x93\xb2\x99\x50\x5a\x7c\x07\xe5\x1c\xa5\xaa\x97\x07\xe0\x58\x7a\xeb\x42\xef\x34\x0b\xf4\x72\xe8\x1c\x68\x69\x5c\x4f\x3c\xb2\xd9\x1e\xe9\x1b\x88\x37\x54\x48\x96\xa8\x8f\x10\xd0\x2c\x43\x9b\xe5\x51\x5e\x54\xe6\x19\xef\xb5\x68\x9e\xf1\x5e\x5d\xec\xd5\xcb\x46\x5a\xb1\x85\x25\xb8\x4a\x7d\xfd\xab\x54\xa2\xdf\x30\x59\x37\x6f\x04\xe5\x8d\x6d\x34\x46\xb1\x6d\x52\x03\xf4\xce\x8b\x51\xa7\x93\xca\x37\xd7\x0d\x36\x87\xe7\x6f\x20\x71\xe5\x8b\x74\x47\xa5\x02\x06\x1c\xca\x6d\xb1\xc8\x70\x0b\x57\xa8\x2d\xba\x62\xbb\x36\x43\x0a\x51\x1a\x20\xc4\x03\xdb\x04\x93\xaf\xc7\xed\xb0\xf0\xba\xa3\xc1\x50\x1f\xf7\xeb\x61\x60\x3f\xb4\xff\xbf\x57\x57\xe4\x2a\x32\xd3\xad\x4e\xc0\x2b\x19\x85\x0b\x4b\xe9\xfb\xb3\x68\xcd\x17\xc4\x5c\x29\x45\xfe\xd6\x15\x59\x42\x17\xfc\x4d\x13\x8f\x96\x45\xba\x23\x28\xe5\x7d\x24\x06\x5c\x8f\x5b\x4f\x85\xae\x88\x89\x57\xe1\xab\x5c\x19\xaa\x7c\xfc\x30\xaa\x4f\x4c\xc2\x06\x7e\x34\xa6\xc5\x37\x26\x66\x88\x9d\xe8\x54\x29\x2a\x07\xd6\xca\x47\xa6\x5e\x23\x6b\x8c\x38\x46\x2d\x3a\x46\x8c\x11\x36\x14\x92\x46\xbb\x3a\x23\xab\x31\xad\xda\xd9\xaf\xaa\x7e\xc9\x4f\xe2\x33\xca\xad\xac\x27\xbe\x0b\x93\xd8\x6c\xcd\xce\xca\x03\xf2\x49\x49\x79\x03\xb8\xe8\xd3\x44\x6c\x06\x2c\x01\x4c\xc9\x7d\x70\x4f\xa9\xa1\x1a\x9a\x06\x09\x4e\x01\x4d\xa6\xc7\xdc\x57\xea\xdb\xcc\xbe\x48\x98\x3e\x90\x41\xb8\xde\x04\xec\x88\xe7\xba\x2e\x77\xa3\x9f\x5b\xf2\x75\xaa\x7f\xcb\x93\x9e\xca\x00\x88\xb4\xec\xf3\xd6\xcc\xc1\xff\xec\x37\x7d\xfa\x21\xd7\x83\xd5\x77\x91\x4a\x22\x57\xc1\xdb\x81\x9b\xd3\x58\x16\xa5\xde\x87\xf2\x12\x70\x31\x10\x06\x44\x92\x25\xec\xba\x2e\x82\xba\x22\x81\xa5\x7f\x39\x65\x90\xeb\x79\x6f\xfe\x86\x63\xc9\xbd\x45\xe8\x83\x93\x88\x4c\x70\xbd\xff\x82\x06\x6a\x14\xf2\x93\x37\xc2\x02\x81\x64\x8e\x6b\x73\xb9\xf7\x93\x47\xab\x36\x9f\x61\x21\xf9\x1f\x8c\x09\xc5\xa8\xe0\x33\x47\x6d\x58\xc7\x9f\x36\xb0\xc6\xe5\x2b\x3e\xa4\x64\x0a\x81\xe9\xbe\xd6\xfe\xa6\x49\x8a\x28\x8e\xad\xf3\xf8\x58\xe6\xc7\x79\x86\xe9\xf8\x38\xec\x8d\x28\x5d\x37\xb2\x04\x5d\x91\x87\x3b\x92\xda\xd5\xf0\x40\xc5\xf2\xc5\xea\xdf\x7d\xe5\xbc\xde\xc0\x74\xfa\x51\x82\xb2\x01\x7a\x76\xdb\x64\xf1\x61\x75\x68\x51\x15\xf1\xfd\xb5\x29\xcc\xf8\xcb\x2f\x2b\x3e\x5b\x5c\x02\xac\xed\x23\xee\xc0\x7c\x42\xd4\xe4\xb7\x2b\x51\x48\x64\x92\xa7\xa8\x09\x79\x46\x17\x25\x2a\x17\xa7\x65\x55\x20\x88\x04\x7d\x1b\x3a\xf9\x77\x99\xa3\xec\xe2\x98\x14\xeb\xee\xc9\x4a\xc0\xc6\x7e\x2c\xdb\x17\xe1\xec\x55\x3c\x05\x7c\xe2\x76\x8b\x24\x40\xce\x8a\x34\x01\x30\x57\x3f\x1c\x07\x2c\xd3\x77\x79\x80\xe6\x0b\xa2\xef\x58\x33\xbd\x48\xea\x77\x87\x1d\x44\xed\x81\xfc\xa8\x1e\x53\xf7\x71\x90\x0a\xfb\x6a\x16\xc5\x1b\xd0\xe9\xc6\xae\x7e\x97\x06\xb9\xb5\x08\x8e\x6d\x73\x9d\x5c\x7d\x91\x99\x5e\xd4\xc1\x26\xf7\x59\xf3\xe2\x22\x83\xba\x5d\x0e\xd3\xe9\xa7\x69\x9c\x6f\x97\x3f\xc5\x0d\x02\x3d\x02\x08\xea\xbf\xc3\x7d\x20\x15\xfd\x3e\x31\x78\x2b\xef\x87\x13\xa1\x97\x87\xa8\x27\x53\x8e\xb2\xcc\xa8\xa3\x5e\x04\xd4\x16\xb2\xe2\x0f\xc7\x01\xe1\xf7\x21\xf5\x95\xd6\xd3\x54\xc4\x22\x71\xe9\x9e\x88\xdd\x63\xa2\xae\x6c\x65\xac\x39\x30\x7f\xa0\xb9\xb8\xb8\x3d\x80\x0f\x8f\xb5\x98\x66\x82\x04\xb2\x51\x17\x21\x62\x6c\x22\xbe\xd8\xbb\xe0\xf5\x6b\xc3\x8c\x6f\x5e\x64\x36\xe9\x15\x7d\x9b\x68\xd5\xbf\x56\x66\xef\x49\x1f\x73\x47\xf9\x2f\x85\xc9\xf8\xff\xe2\x45\xb8\x0f\xfc\xde\x03\x5d\x98\xe8\x58\x9d\x1a\x07\x0d\xda\xef\x8c\x49\x0f\xf8\x85\x36\x85\xd4\xbb\x27\x8d\xd7\xf6\x7b\x72\xde\xf2\x3e\xf0\xe9\x9b\x00\x9c\xe0\xe4\xaa\x70\x49\x7a\x3c\xd8\xde\xbd\xfa\xe1\xb3\x3a\xc6\x8a\x9f\x7f\x87\xd0\xb1\xb3\x13\x01\xd6\xa1\x3e\x7d\x55\x22\x04\xec\xd8\xdb\x40\x38\x61\x84\x65\x56\x50\xc5\x4e\x9c\xa4\xf1\xeb\xbf\xe5\xc5\x27\xe5\xb5\xa3\x76\xf2\xe2\x84\x58\x38\x4f\xb7\x48\x84\xea\x43\x98\x6d\xfc\xc8\x7d\xf1\xbc\xb0\x5e\xf7\x08\x02\xfb\x4c\xbb\xb1\x70\x68\x53\x47\x77\x50\xc8\x78\x30\xa6\x31\x9a\xf7\x6b\x64\x59\x86\xb1\x95\xc8\xa2\xe1\x09\x03\x95\x44\x4a\x4f\xa6\x02\xce\xfd\x07\xf6\xab\x7c\xc3\x4c\x18\x61\xfa\x23\x71\x0b\xe8\x05\x7f\x89\xed\x8c\x9b\xb8\x54\x17\x70\x42\xd6\xcf\x92\x7c\xc1\xa9\x16\x93\xc6\xca\x43\x40\x8e\xf4\x41\x8b\x7b\x5d\x83\x74\x39\x8a\xa3\x37\xad\x7a\x03\x34\xe3\xb4\xb4\x80\x97\xf1\x6e\x05\x5a\x3d\x76\x62\x17\x3d\xe3\x0c\xb9\x13\xa8\xa1\xdf\x38\xdf\x62\x80\xdb\x5a\x94\x4b\x79\x2b\x54\x0a\x4e\x88\xe1\x72\xc2\x68\x6e\x14\x37\x95\x72\xb3\x86\xb7\x2a\x7f\x4d\x7f\x78\x66\xaa\x0c\xf6\x8a\xcc\x81\x4a\xaf\xce\x47\xdb\x9e\x36\x83\x68\xd1\x88\x54\x28\x1d\x15\x51\x62\x63\xc0\x03\xeb\x8a\xbf\xc1\xec\x2c\x9b\x2c\x0b\x95\x13\x14\x0a\xee\x30\x13\xdc\x1d\xea\x1f\xdb\xd8\x23\xc3\x17\x02\xc6\x37\x70\x18\xd0\x35\xe4\xa3\x2c\xb3\x49\x57\x3b\xe4\x2e\x1f\xa5\xdc\xd4\xa7\xd3\x2b\x56\x9a\x6c\x85\x80\xcd\x10\x6c\x9c\x20\x98\xc2\x13\x58\xdb\xae\x1f\xe0\x99\x84\x6c\xbc\xa6\x6d\x0c\x6c\xd9\x4d\xf9\x8c\x1e\xd7\x31\xa4\xa5\x2b\x2b\x2e\x55\x86\x17\xbd\x43\xdc\x70\xd3\xc3\xc8\x7b\x17\xa4\x86\xdc\xe9\x37\x48\x74\xf6\x68\x65\x04\x86\x04\x68\xb3\xc8\x26\x5d\xa5\x43\xf5\x93\x7a\xfb\xfc\xd4\x5e\x4d\xa8\xf0\xff\x86\xc3\xe7\x19\x9a\x7e\x88\xf2\x34\x99\x23\x38\x37\x82\x3b\xec\x96\x3f\x26\xa6\xa9\x2b\x0c\xaa\x3f\x8e\x80\x05\xdb\xf8\x5a\x6b\x8b\xc9\x3e\x3c\xbf\xd0\x3c\x30\xff\xe7\x68\x46\xee\x4b\xc2\x65\x01\x11\x0c\x97\xb6\x09\x9b\xe2\xc6\x6c\x48\xdc\xec\xca\xb8\xd2\x0b\x2e\x0d\x0c\xe2\x83\x27\x26\x34\x3a\x74\x82\x4a\x52\x6f\xcb\x83\xf1\x42\xb0\xdf\xfa\xa6\x7e\xd3\x35\x8d\x77\x1c\xd7\x3e\xec\x26\xaa\x97\xf7\xc7\x24\x10\x70\x89\x26\x33\x8e\x03\xe3\x89\x97\x08\xf5\x71\x07\xfe\x91\xc7\x80\x20\xf3\x18\xaa\xbd\x68\x1d\xde\x85\xa1\x47\xc5\xfc\x0e\xd5\xc4\x54\xb6\x5b\x81\x23\xe3\x60\x77\x6f\x53\x7f\x7f\x79\xb4\x11\x25\xbd\xdd\x0d\x2f\x9f\x03\x1a\x46\xad\x2a\xc3\x04\x22\x62\x3b\x2f\xcf\x0f\x2f\xeb\x42\x55\xf5\xa3\xfc\x4d\xc7\x73\x5c\x01\x62\xc9\x5d\x7a\x45\xb5\x03\xf3\x3e\xa0\x21\x81\xb4\x87\x54\xe8\xc8\xad\x63\x55\x05\x9a\x13\x48\xc2\x0a\x29\x04\x3c\xc4\xcf\x5a\x41\x66\x2a\x1e\x8c\x8a\x7e\x23\x04\xed\x9f\x32\xba\xe9\x53\xc6\x32\x14\xa6\x18\xe5\xb3\x15\x40\xbf\x6f\x47\x3d\xa6\x5a\xdb\x19\xfc\x14\x2e\xf6\x7e\x2d\x45\x51\x9a\x15\x7d\xe9\x4b\x61\xa5\xdc\xa3\x79\xe2\x8b\x15\x2f\x1c\xda\x70\x27\x6b\x98\xc9\xbe\xd1\x2c\x1d\x08\x96\x86\xf6\x67\x51\xd6\xd7\x2c\x07\xed\x2a\x5c\xed\x59\x26\xab\xee\x65\x02\xfe\xf3\xb5\xc8\xcf\x5b\xa1\x98\xf9\xf9\x38\xe8\x51\x76\x46\x31\x46\x30\xf0\x7e\x40\xbf\x86\xd4\xe2\x9e\xb8\x78\x44\xc2\x01\xb8\x5e\xa4\xb1\xa8\xab\xa8\x82\xe6\xcf\x9e\x6f\x13\x79\xf3\xae\x49\xf0\x4f\xe8\xcb\x3b\x66\x86\xf2\x36\xbd\xbe\x5f\x20\x17\xfd\x10\x2b\x08\x6b\xf0\xeb\xed\x2d\x13\xa7\x9e\x04\x60\x1c\x3a\xab\xb3\x52\x0f\xc2\x92\xdb\x33\xf1\x80\x98\x34\x8e\x8c\x1f\x3d\xc4\xbe\x39\xcd\xdc\x31\xcc\x91\xe8\xb8\xbc\xf3\x3d\x61\x36\x00\xa2\x71\x28\x89\xbe\x8b\x8b\x42\xf4\xf6\x1e\x1e\xb1\x23\xcb\x2c\xef\xcf\xf7\xe7\xc3\xe8\xca\xef\x62\x4d\xe9\xe4\x09\xa9\x2c\xbe\x2b\x39\x25\x7a\xb3\x4a\xef\xe4\x4c\x0f\x0d\xc0\x29\x0d\xa3\xab\x7c\x4f\x4f\x88\xbc\xde\xec\x65\xe9\xba\x2c\x62\x54\x3f\x4e\x23\xf9\xd6\x93\x29\xb9\xc3\xc5\xc5\x66\x2f\x8b\xec\x9a\x4e\x9e\x7a\x42\x8a\x2b\x15\x76\xed\x3a\xb1\xad\x81\x89\xed\x0c\x2d\xef\x9f\xb7\x78\x82\x2f\xcc\xc7\xbe\x4b\xdb\xf2\xd5\x85\x5f\x6f\x10\xa3\xc1\x2d\x26\x2e\xb8\xd5\xda\xe3\xad\xfa\xb2\x19\xcc\x4a\xf2\xed\x69\xc5\xbf\xf5\x4d\x7d\xdf\x8f\x08\x7d\xff\x31\x1e\x26\x96\xd4\xb1\x2a\xcd\x8a\xcd\x95\x80\xd0\xcd\xf7\xcb\xfd\x78\xbe\x00\xdf\xfe\x3c\xc9\x2f\xff\x52\xeb\x29\x9a\x23\x58\x1b\xcd\x34\x02\x77\x71\x55\x8e\x24\xe0\x20\x1e\x4d\x45\x74\xaf\x34\xd3\xe5\xdc\x66\x6b\x1a\x05\xc2\xee\x3e\xd1\xa6\xba\xf0\x13\x93\xa7\x48\x0e\x2d\xb3\xbb\x83\xcb\x7a\x24\xb6\xda\x15\x0a\xc3\x94\xbf\x62\x59\xdd\xd8\x41\xf9\x82\xe1\x43\xaf\x31\x50\xf2\x3c\xf2\x1c\x3d\x19\x53\xcd\x42\xa5\xb1\x1d\x2d\x77\xe8\xb1\x37\x26\xfc\xdc\xfa\x26\xae\x04\x76\xda\x02\x74\x74\xb3\x5b\x17\x9c\x88\x6c\x46\x5d\xad\x77\x21\xb3\xfc\x88\xea\xab\x1f\x11\xaa\xbd\x93\x0e\xec\x6e\xe2\xa5\xff\x72\xdc\xf8\x4d\xc7\xd1\xf1\x05\xbb\x2e\x5c\x29\x42\xf0\x13\x3c\x01\x7d\xa7\x45\xf3\x6c\xb2\x77\x9c\x48\x2a\x2e\x59\xbf\xb7\x45\xe4\x1f\x5f\x8c\x79\x9a\x3a\x68\xb5\x75\x67\x82\xa1\x41\xff\x06\x81\xd4\xa9\x6a\xa5\x21\x04\x1a\xcb\x59\xba\x6a\xb3\x1d\xe5\xa7\xb0\xae\xaf\x23\x8d\x73\xf1\x36\x55\x03\xd0\xaa\xf2\x1d\x45\x4f\x4f\x7a\x0a\xc3\xc8\x48\x98\x54\x25\xd4\x89\xf3\x3d\x47\x0d\xa0\xf5\x64\xdd\x64\xdd\x1d\xe1\xfe\x74\x52\xd6\x83\x64\x3d\x60\xb6\x41\x12\x75\xf7\xe1\xcb\x1d\xb0\x4f\x8c\x91\x23\xb1\xf1\x58\xc6\xef\xbd\xe8\x2d\xe1\x7a\xd4\x95\x39\x5e\xf4\x8c\x5c\xaa\x12\x50\x97\x77\x88\x61\xe4\xec\xf8\x79\x62\x64\x5a\xb1\x49\xd7\xb8\xe9\x54\x37\x87\x46\xd4\x17\x9f\xd6\x11\xd6\x0f\xcc\x4a\x94\xe6\x51\x83\x48\xd2\xaa\x4c\x4b\x5b\x4d\x8c\xc0\xea\xac\xf6\xf7\xb1\xd4\x1f\xf1\xe0\xc1\xd9\x31\xa1\x95\x15\x5b\x81\x9b\xbf\x49\x08\xc5\x4e\x6a\x3a\x7d\x2b\xea\xda\x4b\x61\x88\x78\xc9\xd5\x91\xb5\xd6\xae\xff\xd0\x0a\x92\x10\x67\xb1\x77\x5c\x13\x6b\x6b\x6f\xa4\xf4\xdc\xd6\xac\x5a\x4f\x2e\xaf\x80\x73\x79\x66\x0e\x7c\x1e\xa6\xe6\x7a\x1b\x83\xc4\xe4\x45\xd4\xc9\x2b\x20\xf6\xf2\x3a\x5c\xaf\x3c\xf4\x3e\x1d\x6e\x35\xb4\x59\x51\x18\x70\xe4\x70\xf5\x73\x29\x9e\x68\xfc\xa0\xcf\xac\xc2\x08\xda\xdb\x4c\xbb\x78\x81\xe2\xf3\x61\x96\xae\x45\x49\xc7\x92\x52\xfd\x8f\xf0\xb7\x7a\x52\x07\x21\x59\xb3\x59\xb4\xb2\x41\x08\x34\x15\x40\x71\xb3\x19\xd3\xa0\x95\xfd\xcd\x7c\x94\xb8\x9a\x23\xf2\xec\x27\xd0\x47\xc6\x0a\x7d\x97\x79\xee\x1f\xd6\xcc\x00\xec\x57\xa8\x10\xec\x0c\x0a\x95\x5f\xca\xb2\xd6\xe3\x3a\x01\xf4\xae\x5d\xb3\x71\x3a\x6c\x10\x4d\x1c\x24\xf3\x9c\x7c\xd8\x33\x34\xb3\x97\x24\x3a\xb4\x87\x54\xf7\xa7\xad\x80\x91\xfb\x29\xee\x08\x25\x94\xa4\xb0\x59\xa2\x18\x37\x9d\x1e\x83\xd3\xde\x84\xd9\xf1\x93\x30\xa1\xb0\x7f\x94\xb0\x46\x1f\x0a\xc2\x00\xd1\xe1\xf7\x7d\xac\x94\xfd\x4a\xf6\x2b\xc4\x60\xfe\x8f\xf1\x38\xf4\x64\x2a\x47\x92\x17\xde\x49\x07\x83\x81\xa2\x56\xe0\xc9\x50\x41\xd4\x63\xda\x02\xfd\xa8\xd7\xb7\x79\x31\x17\x66\xf1\xbe\x87\xf7\xa5\xa0\x39\x6c\x2a\x3c\xc7\x5b\xf4\x4c\x95\x03\xd1\xc5\xe6\x54\x91\x2b\x32\x33\xca\x95\xd5\xde\x4f\xe4\xfa\xa0\xfc\x89\x76\xe0\x4e\xba\xc6\xa9\x5a\x16\xbd\xa9\x31\x86\x57\x4b\x2f\xbf\x41\x4f\xa6\x94\xc0\x0f\xcf\x37\x07\x51\x2e\x0f\x7c\x98\xd9\xa2\xaa\xab\x80\xa6\x84\x9b\x66\x76\x9b\x27\xb7\x66\x39\x75\xfc\xf1\xca\xbe\x26\xc1\xa9\x63\x62\x9b\x0e\x9c\x5f\x6f\xf6\x8d\x7e\x33\x16\xe6\x8d\x31\x31\xe0\xde\x68\x85\xa1\xf9\xd8\x8c\xca\xbc\xdd\x2a\x99\x20\x32\x9b\x2f\x25\xb3\xd3\xe3\x9a\x48\x20\xef\xd8\xc4\x64\x51\x2a\xb5\x19\xc7\x3c\x51\x7e\xdc\x01\x28\x08\x61\x73\xa1\x06\x3b\xf0\x7a\x69\x67\x8a\xbe\x96\x0b\x3c\x76\xff\x80\x77\x0d\x53\x98\xa2\x32\x79\x05\xbf\x98\x7b\x62\x6e\x93\x36\xbc\x4a\xd2\xf9\x40\x3c\x1c\x75\x56\x55\xfb\xcb\x3b\xfc\xf2\x33\xce\xe1\xbf\x44\x58\x12\xbb\x66\xb2\x6e\x62\xba\x6f\x5a\x61\xca\x84\x83\x06\x57\xa3\x1e\x93\x65\xc9\x87\x26\x49\xaa\x1c\x3b\x57\x78\x64\xf3\x0a\x15\x83\xa3\x81\x10\xeb\xf0\x84\x37\x29\x9e\x4e\x13\xc3\x2f\x1c\x02\x81\x48\xd7\x6c\xe8\xa7\x3c\x7a\xc8\xc7\xe6\xf7\xc7\x7b\x88\xd1\xc4\x65\x83\xf0\x23\xca\xfa\xed\xa0\x49\x14\x91\x9f\x24\x24\x46\xde\x8f\x56\x1c\x3d\x81\xc7\x97\x7a\x33\x79\xa1\xce\xc9\xc5\x26\x05\x2f\x9c\x9f\xa5\xba\x49\xd2\x80\xe7\x79\xd0\xfc\x8b\x29\x2b\xb7\xb4\xd4\x1c\xa6\xeb\xd6\x17\x3e\x9c\xed\x27\xfa\xea\x2b\x15\x04\x76\x2f\x31\x89\x8d\xe3\x48\x96\xa3\x6b\x16\x34\x3c\x05\xc8\xc5\xaf\x24\x3b\x5d\x89\xd6\x54\x49\xc5\x4d\xc0\x87\x04\xf4\x91\xe4\xf7\x70\xa4\xdb\xdb\xcf\x6c\xe9\x82\xe2\x69\x28\xdb\x60\x2b\x84\x4d\x9f\xfa\x05\x15\x5b\xd3\x1b\xa9\x61\x84\x99\x73\xb4\xe8\x15\xb8\x17\x0b\x49\xa3\xba\x0b\x48\x99\xfb\xff\x81\x20\x69\xd9\x2c\x6f\xcc\x91\xf2\xef\xad\xca\x50\xcb\x25\x1a\x7a\xbc\x4c\xb3\x7f\xba\xb1\xf4\x8f\x08\xf9\xbe\x12\xe5\x1d\x13\x4b\x39\x1e\x83\x38\xe0\x58\xc7\x4b\x99\x01\xcc\x0c\x35\xd8\x13\x54\xe9\x98\x6d\x07\x0d\x3d\x70\x3f\xf9\x1a\x41\x00\x13\xf6\x4d\xd2\x8d\x3a\x66\x38\x54\xb2\x1a\xc7\xea\x15\xe6\x2d\xee\x53\xf3\xb2\x6b\x0b\x9b\xcd\x06\xb8\xc9\xb6\x36\x61\xa4\x60\x4f\xf5\x1f\x26\x01\x3e\x7d\xc5\xc3\x43\x72\x3b\x88\x4c\x92\x8c\x2a\x48\xeb\x2b\x44\xb9\xf0\xd5\xfc\x19\xeb\x26\x2e\x6c\x36\x43\x8a\xbe\x58\x00\x28\x8f\xdc\x64\x61\xb7\x46\x7b\x0f\x4f\x98\x63\x61\xfa\x91\xc2\x20\x42\x7d\x6e\x6a\x35\x1f\x98\x2f\xa3\xb7\xc2\x73\x29\x23\x25\xb9\xca\xc9\xca\x55\x7a\xcb\x79\x62\x86\xb3\xa5\x29\x75\x37\x42\xab\xe4\x42\xe5\xae\x4a\x73\xee\x44\xd5\xbd\xb8\x44\x3a\x4a\x8a\xd8\x4d\x31\x62\xea\xeb\x0e\x71\x89\xdc\x61\xf9\xe9\x34\x29\x64\xc0\xe4\xc0\xbc\x23\x26\x9e\x41\x47\x56\x4f\xa6\xd0\x0e\x7b\xf7\x36\x97\x6d\x5f\xd4\xb0\x3d\x0c\x6e\xa6\x1d\x04\xa0\x66\x26\x01\x71\xb7\x3c\xca\x45\xd3\xf7\x05\x79\x99\x58\xf2\xd7\xc6\x24\x20\xf8\x77\x5b\x04\x45\x7d\x7a\x42\xe4\x7a\xbb\x51\x20\x41\x15\xe9\x0e\xa9\x67\xdd\x95\xb8\x54\xd9\xbe\x24\x96\xc0\x8e\xd1\x85\x08\xe3\xb2\x13\x53\x6b\xa8\x45\x1c\x45\x9b\xdf\x0f\x47\x94\x2f\x14\x85\xc5\x9d\x32\x67\x84\x63\x38\x7b\xbc\x0b\x30\x68\x79\xcd\xa2\xbd\x7b\x35\xb0\xbe\xd3\x62\xc5\xfb\x3f\x46\x8e\x81\xd8\x79\x28\xdd\x44\x44\x14\xa7\x3d\x85\xc0\x28\x2e\x32\xb3\x16\xa5\xb1\x55\x12\x4a\xdc\xf6\x67\xb2\x4f\x55\x5d\x9a\x00\x05\x6f\x11\x7a\x6f\x25\x4b\x5d\x56\x81\x5d\xa7\x30\x0b\x3d\xa1\x78\x3a\x4f\xe3\xa8\x6b\xb2\xa8\xd8\x90\x21\x10\xf8\xea\x07\x28\xbf\xea\x89\x3c\x3f\xe7\x96\x42\x67\xf1\x0c\xd3\xd8\xfd\x11\x71\x05\x2e\x9b\xdc\xee\x22\x86\xb3\xe3\xe3\x50\x99\x3d\x26\xb5\x19\x87\x99\x22\xc5\x46\x50\x9c\x28\x49\xd6\xb8\xf1\xda\xfe\xa0\x24\x51\x5e\x38\x02\x38\x00\xf8\x1c\xca\x4a\x6e\x4f\xff\xc1\x6b\x92\xf7\xd3\xa1\x95\x0e\xa7\x4b\xd0\x7f\x11\xd1\xb1\x2a\x9d\xc9\x4a\xc6\xea\x9c\x03\xbc\x0c\x2f\x70\xfb\x84\x10\xf6\x97\x09\xe0\x76\x85\x8a\x58\x32\xce\x64\xe2\x78\x43\xea\x95\x2a\x7c\x8a\x74\xd5\xab\xa0\x06\x91\x67\xf9\x29\x27\xf8\xec\xf5\x22\xec\x20\x5f\x4e\x57\xe1\x6a\x9d\xae\x76\x28\xa8\xde\xa6\xc6\x7d\x37\xca\x57\xe7\xca\xef\x43\xb1\x7b\x3b\x8c\x9a\x8e\xb1\x73\x4f\x13\x02\x77\x2a\xec\x80\xc7\xe5\x58\xfd\x6a\xe4\x21\xa3\x64\x25\xcd\x06\x6a\xeb\x98\x86\xc1\x31\xb5\x30\xff\x43\x7f\x94\x80\xd0\x17\xeb\xf4\x6d\xca\xf7\xde\x0e\x73\x58\x99\xed\x46\x85\x30\x8f\x34\xc2\x95\xdc\x18\x53\xc3\xf0\x06\xb9\x8d\x4e\x3a\xca\x8a\x7c\x27\xc5\x53\x0d\x6c\x57\xf8\x84\x13\xe3\x30\x5a\x76\x92\xa3\xf7\x6b\xe3\x30\x0c\x74\x5d\xf7\x12\x56\xe5\xf7\xc7\x01\xf5\x5f\xc9\x65\xdf\x0b\x69\x81\x49\x50\xa7\x80\x23\x38\xc6\xac\x07\xcf\x90\x08\xce\x93\x93\x70\xa1\xa3\xac\x17\x25\xbd\xd9\x50\xd0\xfd\x7b\xb2\xfa\xc1\x7c\xf0\x29\x0d\xd1\x5c\x40\xdc\x83\x32\xc5\xa7\x75\x8d\x21\xb3\x9c\x8e\x8a\xb9\x0a\x55\xdf\xbe\x25\xcf\xd1\x1c\x60\x26\x4f\xb5\x83\x83\x82\xaa\xd7\xe6\x55\xaf\xae\x3e\x34\x59\x1c\x19\xa1\x65\x93\xdf\x83\x21\xd9\xa6\x4c\x41\xcc\x01\xa8\x5a\x1e\xe3\xb0\x7a\x78\xbc\x0a\x9d\xa4\xbc\x1f\x0d\xc1\xaa\x84\x82\xc5\x27\xfa\x48\xf5\x8c\xb2\x8d\x6c\x34\x48\xb3\x1c\x81\x03\x4a\xe8\xca\xbb\x89\xe0\x68\x1b\x78\x93\xf1\x28\x30\x6d\xeb\x49\x7b\xca\xfd\xad\xff\x50\x83\x95\x3d\xd8\x34\x2b\x2b\xb6\x53\xf8\x9e\x23\x36\xe9\x47\x92\x59\xea\xf1\x38\x80\x24\x6c\xd2\x37\x9e\x56\xfc\xf0\x7c\x60\xdd\xf0\xe3\x87\xb7\x30\xd9\xe0\xb6\x8f\x19\x0e\xd3\x48\x26\xc0\xa9\xf9\x29\x85\x2f\xd7\x08\xad\xbb\xa6\x4e\x9a\xac\x44\xd9\xc0\x76\x67\x4a\xdb\xed\x4b\x86\x81\x88\xef\x36\x2f\xb1\x46\x3b\x4c\xb6\xc7\xeb\x66\xb4\x6a\x2d\x8d\x3b\x7e\x8e\x05\xac\x27\xd4\xcc\x5d\x89\x32\x21\xd4\xd2\x01\xdc\xda\x00\x75\x6b\x1c\xf0\xf2\xcb\xa5\x69\x5d\xb5\x4e\x31\x1b\x2d\xb7\x2f\xe5\x89\xeb\xf1\x14\x68\x67\x69\x69\x7f\xd3\x8e\xb2\xb4\x9b\xc6\xb1\xc9\xf2\x8a\xf2\xc5\x05\xc6\xad\x5c\xa8\x91\x77\xdc\xdf\xec\x97\x1e\xb8\x41\xb9\xe5\x19\x5d\x25\x7a\x46\x00\xf9\xc4\x16\x32\x02\x02\x9c\xa1\x17\x75\xd9\xb7\xf4\x95\xa2\x2e\xe5\xc3\xce\xfb\x69\x56\xcc\x84\x88\xf0\x0f\x5a\x5b\xc7\x5a\x95\x99\x64\x0a\x5c\xbf\x77\xa1\x99\x0b\xef\x5e\xf9\x96\xdc\x3c\x6d\xf9\x61\xd4\xfa\xa1\x72\xeb\x34\x1c\x5d\x48\xdd\xe9\x5b\x9b\x29\x47\x05\x2c\xe9\x83\x16\xab\x95\x69\x69\x1a\xed\xb1\x8f\x25\x40\x72\x43\x4e\x7f\xa9\xe6\xf1\x48\x46\xdd\x49\xe3\xd8\xf6\x22\x19\xba\x5e\x5c\x0c\xb8\x36\xaa\x8c\x6d\xcd\x95\x0f\xbd\x2a\x4a\xe3\x8d\x29\xb1\x61\x27\x9a\xed\xb2\xf0\x74\x54\xc4\x78\x05\x3c\xf5\xc9\xe3\xa0\x9e\x7e\xdb\x1a\xcf\xc3\xea\x4a\xfd\xb2\xa7\xf4\xa4\x15\xa6\x34\xcb\x2f\x2d\xe3\xeb\xbc\x2f\xd9\x15\x82\x87\x2f\xf0\xd7\x2e\xa9\x0d\x03\x1f\xb7\xa6\x2a\x76\x0b\x87\xca\x88\xdb\x44\x3e\x20\x75\x95\xd7\x00\xdd\xb9\x40\x18\xc8\x6f\xa7\x71\x31\x17\x78\x24\x51\x9f\xc6\xdb\x6e\xb4\x03\x84\xf6\x89\x49\xc0\xf5\x29\x4b\x9e\x8e\x28\x8e\x99\x33\x4b\x74\xca\x05\x5d\x4e\xf8\xab\xf2\x93\x7a\x3c\x66\x92\xdb\xbc\x30\x15\xda\x67\x3c\x64\xf7\x56\x42\xa3\x51\xe7\xf9\x1d\x86\xdc\x3d\xd3\x7c\x98\xba\x9b\xdc\xef\x0b\xdc\x04\x6d\xbd\x40\x39\xc8\x72\x94\xf4\x2c\x5e\x13\x5c\xd4\xbb\x20\x45\xd4\x13\x6a\x79\x9a\x35\x9b\x8c\x80\x30\x61\xa2\x15\x0d\x0b\x71\xe7\xf0\x31\x57\x89\x05\xaf\x0c\x86\x7b\x3b\xb7\x88\x07\x1e\x0c\x7d\x74\xcf\xf1\x75\x9b\xd3\x38\x18\x14\xa7\x04\x22\xa1\xb9\x4b\xf0\xe4\xcd\x21\x6f\xbb\x87\x18\x06\x79\xca\xf1\xa9\xc6\xd6\xd2\x92\xab\x9c\x0c\x0c\x66\xb9\x75\x00\x9f\x74\x7d\xde\xf5\x51\x6b\x66\xf2\xd5\x34\x4e\xa2\xd5\x74\x8d\xf4\xca\xb5\x3b\xed\x56\x47\xcd\x92\xca\x6c\xb9\x25\xb4\x3a\x83\xce\x28\xa0\xbb\x7a\x3c\x45\x04\x2e\xe3\x70\xb2\x1a\xf2\x41\x85\xff\xb4\xca\x0f\xb8\xcb\x0d\xc5\x8d\xb8\x7e\x22\x4b\xc6\xd5\x52\xb6\x26\xf7\x07\xf6\x37\x97\x6d\x1c\xd9\x35\xef\x98\x54\x0a\x90\x42\x3a\x96\xff\xc9\x87\xe9\xaa\x96\xe3\x1c\xcb\x74\x80\xeb\x9f\xae\x04\x54\xb9\x2d\x76\x31\x50\x19\x59\x00\x16\xc9\x27\x12\x1b\xc3\xfa\xef\x68\xd3\xba\x55\x6e\x22\xa4\x40\xb3\x93\x20\x07\x72\x4d\xde\xb5\x52\x47\xb7\x2a\x53\x77\x9e\xff\x82\x79\xb5\xec\x60\x63\x86\xb8\xdd\x21\xa6\x8c\x88\x08\x1f\xc7\x7a\x38\x49\xcd\xea\x81\x48\x9e\xba\xc5\x71\x8d\x9a\x4b\xb7\x80\x4d\x53\xca\xac\x16\xc9\xe8\x6c\x9f\x50\x5a\x0f\xb6\x3e\x18\xe8\x1d\x92\xfb\x63\x11\xcc\x20\xfc\x56\x08\x1b\xc1\x76\xb6\xa1\x72\x80\xd8\x76\x07\xa2\x5e\x94\x43\x67\xdb\xa5\xad\x77\xb0\x72\x59\xb3\x1e\xe3\xe1\x7d\xce\xd5\x31\xf1\xa3\x3c\x31\x09\x39\x9e\x66\xe3\x2e\x61\x0b\xc5\x06\x6b\xb2\xa2\x3f\x48\xf1\xb6\x4b\xe7\x85\x8c\xe6\x9a\x3c\x44\x3d\xe6\xac\xb7\x6f\xb2\xc2\xf1\xc9\xbb\xa0\x82\x47\xc8\x64\x6d\x31\xee\xc0\x45\x1b\x81\x7b\x23\x1d\xd8\x9e\xa9\x30\x9a\x68\x45\xcf\x91\x98\xd6\x08\xa6\xf5\x4d\xd6\x9d\x25\xec\x05\x15\x43\xae\xa3\x47\xe5\x1b\xff\x5e\x43\xe4\x7d\xd2\x9f\xeb\x2a\xc5\x1f\x4a\x49\x0f\x61\x3f\x30\x84\xfa\x11\x35\xfb\xb7\xb5\xb7\x6e\xce\xd7\x16\x0e\x09\xcd\xb7\xcd\x5c\xdf\x01\xe8\xde\x4b\x2c\xba\x79\x85\x27\x8e\x36\xeb\x26\x8e\xf2\xdf\x1e\x59\xfb\xa6\x25\x6a\xc2\xcb\x52\x50\x76\x8c\xa9\xcf\xd3\xb4\xfd\xca\x8a\xcd\x6c\x52\x88\xa2\x18\xb2\xea\x9d\x6d\x79\x35\xac\x2f\x80\x68\xec\x7e\x25\x2d\x68\x78\xad\xae\x27\xb0\xbe\x70\x83\xc7\xa4\x00\xc5\x8d\x0b\xbf\x6c\x43\x87\xe6\x4a\xa5\xed\x9d\x8e\x56\x67\x1a\xbf\xb9\xa0\xb7\x87\x31\x20\x24\x22\xaa\x0b\xe7\x10\xf9\x5b\x6b\x43\x87\x5e\x6d\x9a\xe1\x30\x4b\x8f\x08\x75\x79\x23\xe0\x12\x6e\xcb\x55\x3b\xd1\xe6\xc0\xdf\x6f\x63\x89\x69\x73\x38\x53\x6d\xfb\xb7\x68\xcc\xf2\x77\x59\x42\xb7\x1f\x13\xc4\xe4\x04\x77\x7b\x4e\x50\x8f\x75\xdd\x64\x83\x58\x59\x92\xeb\x68\xd9\xa7\x99\xa8\x16\x9a\x26\xcf\xd3\x4e\x24\x74\xeb\xdc\xef\xff\x98\xc9\xfd\x3f\x26\x47\x56\xa0\xe0\x2d\xfb\x90\x65\xc4\xf4\xd8\xc3\x81\x06\x26\x4f\x93\x0c\x48\x41\x54\x11\x1f\xc8\xb5\xe8\xf1\x98\xea\x62\x36\x9b\x0b\xa3\x71\x17\xc6\x15\x95\x70\x5f\x72\x57\xd8\x17\x1e\xe4\x09\x92\x2b\x7f\x4c\x2d\xf2\x81\x89\xf1\xa0\x60\x4f\xcf\x52\xa7\xe0\x2c\xf1\x65\x66\xa6\x1b\x75\x4c\x3c\x2b\x25\x2c\x0c\xa1\xfc\x10\xd4\xa1\x7a\x82\x1c\x06\xb9\xe5\x4f\xb0\xcd\xf4\xc4\x7b\x96\xb4\xbf\xbd\xd2\x01\xf7\x29\xf0\x03\xd8\x28\x87\xf8\x6c\x7c\xeb\x9b\x58\xcc\xfb\x5f\x42\x4d\x02\x95\xab\xcb\xac\x06\x7b\x89\x74\xc3\x21\x6c\xb2\x70\xc8\xa9\x79\xb6\x42\xf1\xe3\x84\x4f\x0a\x4d\xb6\x1c\x15\x99\x71\x83\x8e\xca\xc1\x34\x0e\x80\xb1\xd3\x53\xe4\x02\xae\x78\xd9\x49\x93\x22\x33\x19\x18\x6d\x5c\x18\x1a\xe6\x9b\xa6\x09\xdf\xf7\x2d\x35\x87\x91\xed\xfc\xfb\xfa\x0b\xd4\x0f\xb5\x36\x8b\x6d\x9e\x0b\x65\x30\x93\xb5\x02\xb7\x81\x39\x4a\xb8\xb1\xe3\xe3\xb0\x23\xdf\x9f\xca\xc9\x0e\xcf\xbf\xee\x85\x00\x74\x8e\x15\x7b\x12\x43\x71\xf0\x13\x2a\xf2\xe8\xd0\x3c\x75\x04\x75\x9d\x74\x30\x34\x1d\x60\x40\x71\x0d\x0f\x09\x67\x73\x85\xdb\xee\xe7\x38\x8a\xcc\x46\x5d\x3b\x13\xe2\xab\x27\xda\x41\xdb\xe7\x63\xde\x7e\xf7\xb9\x04\x66\x6d\xb6\x8b\xc1\x1f\x58\xbf\xc8\x25\x6e\x60\x59\x60\x5e\xa2\xd1\x0e\x03\x39\x0a\xa5\x74\xf3\x22\x0d\xcf\x59\xf7\xae\x3c\x38\xe2\xd8\x75\xa0\x47\xed\x83\x20\x15\x0d\x34\x3d\x99\xed\xa4\xbd\xc4\x29\x63\x39\xaa\x12\x1a\x1d\xba\x05\xf3\xe2\x92\x1e\x57\x25\xe9\xc4\xa3\xe5\x59\x6a\x68\xa2\x9a\x00\xc0\xd3\x03\x62\x13\xd5\x68\x0e\xdd\xf9\xff\xcb\x17\xd2\xbb\xb6\x70\xbc\x2d\x72\x23\x9e\xbf\x2f\x14\xe0\xee\xd6\xb0\x5a\x36\x73\x3b\x34\x9e\xb4\x0a\x0e\xf7\x0b\x22\x1d\xfb\xc2\xff\x40\x34\x80\x88\xf1\x1a\x86\xaa\xe0\xe3\xaf\xb6\x2a\x1a\x97\xfe\x31\xff\x48\x02\x0f\xa0\x75\xdf\xa2\x1c\xa2\xd3\xcf\xd2\x41\x9a\x8b\x62\xd3\x81\xaf\x1a\x99\x08\xe5\xd1\x81\x4d\x13\xbb\x5d\x9c\x0f\xea\x86\x17\x68\x7c\xfa\x92\x54\x2a\xf5\xff\x4b\x10\xe2\x84\x37\x82\x15\xb8\x24\xfb\xd6\x69\x70\x84\xf1\x07\xd7\xfa\x7e\x32\x00\x1d\xa0\x78\xe6\x9a\x02\x81\x8b\xe2\x24\x61\x2e\x15\x67\xa1\xda\x2d\xcc\x54\xfa\x10\x91\x8f\x52\xb8\x31\x8f\xbb\x4e\xb4\x39\xd2\x69\xee\xfa\x3c\x96\xa7\x07\x4b\xc4\xf9\xc6\xea\x46\x1c\x1d\x69\x84\x5e\xc6\x6d\xd6\xff\xba\x4d\x20\x16\x7b\x44\xf8\xcf\xd7\x40\xf9\xe3\x1b\xe1\xd4\x15\x27\x09\x05\x8c\x9b\x38\x20\xa9\xab\xd9\xda\x3c\x37\x1b\xcc\x85\x27\x7f\xe5\x66\xcf\x9e\xa6\xc2\x95\x49\x3a\x54\x5d\x79\xab\x52\xfd\x0e\xa6\x27\xcd\x22\x1d\xbc\xf1\xe4\x18\xb0\x15\x7a\x3c\xf1\x09\x5e\x7f\x54\x14\x31\xf2\x76\xac\x4f\x94\x10\xf4\xd8\x0f\x97\x76\xa3\x5c\x66\x2f\xf3\x39\x66\x96\x18\x13\xe7\x00\xf3\x6a\x61\x17\x63\xe2\x70\xb7\x90\x59\xb8\x09\xd7\xe0\xc6\x87\x45\x7f\x66\x4a\xf7\x00\x89\xe9\x47\x14\xc8\x9f\xa8\x03\x63\x0c\x63\x01\xc0\xc8\x55\x7b\x89\xc0\xa5\xa0\x0a\x58\xc7\xa9\xa0\x41\x6b\x99\xcc\x2e\x79\x81\x3d\x6d\x0a\xe8\xc9\xd6\x69\x9b\xf2\x63\x07\xf6\xcf\xc9\xcd\xf8\x41\x13\x59\x39\x1e\x28\x14\x58\x31\xde\x69\x85\x06\xc8\xf7\x61\x1d\xd4\x44\x4e\x95\x7d\x0e\xbd\xda\xcc\x64\xc4\xbe\x11\x26\x2b\x3f\x44\x86\xe3\xa6\x82\x6b\xd0\xbd\xc2\x3a\xf3\x95\xc3\x06\x35\x6c\x20\x66\x25\x36\x45\x7a\x24\x4a\xc4\x54\x20\x4e\x56\x4a\x18\x27\x58\xd8\xd8\xc2\xe4\x06\x0f\x14\x04\xc0\x44\x58\x0b\xee\x51\x39\xd6\x69\x28\xea\xc2\x54\x0c\x05\xc1\x1a\xb3\x1c\x47\x79\x5f\xc9\x7e\xc8\xf4\x2e\x78\x9a\xa8\xad\xb1\xfd\xe2\x62\x33\x4e\xd7\x95\x93\x02\x79\xa1\x2a\x42\x23\x92\x65\x8a\x80\x07\x54\x71\x73\x98\x5a\xd1\x3a\x46\x00\xac\x52\x1c\x8e\x68\x56\xc2\x15\x47\x99\x15\xac\xe4\x03\xbc\x20\x27\x9b\xc5\xf3\x8b\x37\x98\xa0\xe1\x38\xe3\xd6\x2a\xbc\xd0\xfd\xa8\xd8\x49\xa2\xc5\xaa\x33\xa6\x84\x7d\xe3\x30\x65\x81\x80\x9c\x14\xaf\x96\xfc\x6a\x0b\x45\xef\x6b\xa4\x5d\xb9\x39\x0e\xd3\x3a\x97\x7c\x04\x99\xd9\x74\x68\x9d\x6e\x8c\xe3\x5c\x97\xdf\x77\x64\xec\x2f\xd0\x98\x4c\x5e\x98\x51\x66\xb4\x48\xec\x6a\xec\x34\xb9\x3b\x2d\x5d\x2a\xb0\xaa\x3e\x64\x15\x91\xf0\xc3\x06\x7f\x87\x11\xfe\xdf\x99\xa2\xcd\x79\xf9\xe5\x66\x62\x0b\xd2\xc3\x84\x04\xb7\xa3\x25\xda\xba\xf0\x0f\xcc\x2b\xe7\x71\x83\x3a\xb7\xca\x6e\xab\x27\xa4\xc0\xb2\x12\x1b\x99\x9a\x29\x7d\x14\x4c\x1c\x04\xd3\xf4\x98\x05\x51\x4c\x94\xdb\xdd\xf2\xae\x51\xad\x3e\x25\xf2\x11\xa4\x42\xed\xa1\xc8\x8c\xe7\x44\x0f\x02\x7e\xe4\x0f\x90\xbe\xeb\xc7\x11\x29\xb8\x10\xa7\xfc\x51\xfd\x2b\x79\xb3\x1e\xf7\xba\x14\xe6\x34\x19\x25\x18\xc7\x91\xce\x28\x11\x57\xd6\x82\x8f\x16\x39\xc7\x8a\x47\xf6\xa9\xf2\x25\xc1\x91\xff\x98\x00\xa6\x3f\x18\x87\x42\x83\x4a\xd0\xa1\x0e\xf4\x0e\x9e\x17\x4c\xe5\x7f\x8b\xe6\xac\xcb\x7b\x29\xa8\xbe\x3e\x26\x78\x85\xb2\xa4\x3a\x45\x88\xf2\x86\x90\x04\xdf\x1d\x07\x7c\xd5\x0c\x2a\x2e\xfa\x5d\xd8\x3a\x80\x86\x4e\x93\x3f\x2d\x2e\x36\xd7\x6c\x2e\xe1\x68\x18\x52\x46\x08\x81\x04\x1e\x8c\x39\xae\x85\x11\xa0\x1f\xa3\x61\xdf\xc6\x5d\x16\x97\x21\xa9\xcb\xbf\xed\x15\x54\x8b\xcc\x24\x39\xab\xb6\x3b\xc0\x47\xc8\xfc\xce\xa0\x64\xe9\xf6\x70\xc8\x26\x07\x26\x0b\xce\x0f\x4e\x48\xc3\x54\x3d\xf1\x34\x08\x71\xd4\xeb\x17\x1e\xb6\x8a\x32\xd0\xdb\xc4\xef\x76\x93\xc9\x25\xae\x52\x72\x19\xdb\x41\xaa\x4c\xf3\x78\xda\x9f\xb7\xe8\xd1\x7f\x5e\x67\x18\x05\xef\x15\x56\xbf\x0b\x72\xae\x8e\x09\xf9\x70\x95\x26\xfa\xb3\x28\xb7\x3b\x03\xa8\x53\x59\x87\x48\xbc\x3e\xb0\x2a\xca\xbb\x75\x7a\x70\xe5\xbb\x45\x5d\xe0\x2d\x79\xb7\x8e\x2e\xb6\xdc\x45\x08\xfa\x8f\x11\x4f\x4e\x63\xb2\x75\x4b\x2f\x1c\x6a\xe6\xab\x88\x45\xb4\x9f\x48\x84\xe1\xd3\x69\xf3\xa1\x57\x81\xfb\xcc\x03\x51\x1f\xbe\xf9\x03\x42\xa4\x7e\x40\x3d\x2c\x8d\xcc\xcb\xc8\x4f\x8a\x31\x6e\x85\x85\x7c\xf8\x38\x86\x1f\x10\xb8\xbd\x57\x93\x0d\x2d\x35\xed\x11\xa5\xbd\x9c\x09\xef\x18\xb0\x1a\x5f\x75\xf2\x43\xbd\x0f\xa6\x5a\x42\x7b\xf7\xca\xb4\xab\x19\xc4\x91\x17\x1f\x42\xda\xf3\x53\xee\x18\xfc\x94\x4a\x47\x07\x7f\xe5\xaf\xcf\x70\xd0\xf8\x87\x63\x06\x18\xd1\xe2\xba\xc6\x1a\x73\xf1\x68\x39\x6f\x70\xdd\xa5\x52\x6b\x09\x26\x23\xef\xcb\x85\xcc\x06\x83\xb2\xab\x4d\x20\x63\xbc\x30\x9d\xc7\x66\x44\xcd\x2d\xda\x58\xbd\x2c\x5d\x2f\xfa\x7b\x48\xbb\xf9\x1c\x25\x98\xc0\x0d\xc0\xab\x9c\xa6\x79\x50\xb4\x94\xd1\xf4\x9f\x6d\x13\x01\xfc\x5d\xc1\x6d\xa8\xb6\x0d\x0f\x02\x40\x13\x15\xd1\x7a\x63\x12\x40\xae\x8a\xda\x86\x7f\xbd\x37\xae\x08\x9c\x6d\x8d\x66\xfe\x5a\x33\x36\xcb\x36\xce\x2b\xc4\xac\x72\xb5\x2e\x80\xac\x51\xbc\xee\xa7\x8e\x20\xb1\x02\x7f\x70\x48\x8a\x00\x29\x5d\x8d\xe2\xd8\x01\x2b\x51\x2f\x51\x04\xad\x9e\x4c\x85\x87\x6f\xbc\xa1\x2c\x51\x40\xfd\x1c\x70\x39\xd3\x5d\x9a\x76\xbc\xeb\x63\xf5\xe5\x51\x16\x6b\x11\x19\xb6\xe7\x4b\x42\xbc\x3d\x90\xa0\xcc\xf1\x51\xd5\xe0\x98\xec\x11\x21\x42\x44\x16\xef\xa7\x75\x42\xf4\xdd\xa2\x41\xc1\x4b\xc4\xfa\x1f\x25\x49\xea\x94\x9f\x82\x78\xd9\x79\x48\x10\xb9\xaa\x7f\xe8\x70\x99\xc4\xc4\x1b\x45\xd4\xf1\x13\x18\x7e\x9a\x7f\xc9\x2b\x79\xdd\xa6\x68\xbc\xe8\xfc\xca\x6c\xe0\xff\x45\x30\x8f\x8e\xea\xcf\xa4\x44\x89\xed\xff\x00\x29\x95\xb3\xf6\x94\x97\x58\x53\x70\xf9\xff\x1e\x95\xff\xef\xd5\x29\x20\x42\xa6\x28\xb1\x31\x96\x00\x53\x76\xeb\x71\xa8\xef\x08\xb1\x67\xb4\xac\x59\x8a\x57\x91\x23\xb0\xcc\xd6\xe7\xfc\xc6\x1b\xaa\xcd\x82\x14\x01\x76\xf2\x03\x62\xa2\xfd\xa0\x8e\x63\x7d\x98\xa5\x83\x28\xd7\x35\x86\x3a\x3e\x40\xa0\x7a\x4c\xaa\x9e\x4e\xd6\x7a\x56\x5e\x23\x1b\x3c\xb8\xe5\x63\x44\x53\x7d\x9e\xc5\x26\xfe\xd7\x10\x5a\xa7\x45\x91\x26\xdb\x99\x6e\xd1\x67\xf4\xed\xbf\xd0\x0e\x71\xa7\xa0\x74\xdc\x43\xff\x04\x2b\xd9\x73\x6d\x07\xc3\x73\xa9\x0e\x75\xd1\x1f\x0d\x22\x0c\x0e\x01\x4b\x04\xa4\x8d\x1e\xd3\x96\x19\x9a\xa2\xb0\x59\x32\x1b\x26\x2e\x75\xcb\x38\x3c\xf5\x96\x26\x8d\x2b\x37\x7f\x42\x4b\xe8\x3f\xfd\xd5\xbf\x4e\x88\x39\x2d\x90\xe8\x09\x59\x52\xbb\x9a\xef\x62\x2d\x49\x8c\x14\xab\x18\x01\x6c\x08\x66\x46\x54\xf3\x01\x68\x8c\x3d\xc0\x9d\x21\xcd\x9f\x11\x69\x47\x2f\xe5\x51\xbe\x2e\x47\x1f\x16\xd0\x47\xb3\x78\x6c\xf8\xf8\xf3\xc4\xe1\x24\x48\x94\xaf\xc9\x0f\xa1\xc9\xf8\x73\x60\xbd\x48\x0a\xe6\xa0\x8e\x00\xee\x92\xdc\x15\xde\xf4\xae\xf0\x26\xc0\xc1\x9f\x80\x9b\x40\x40\x77\x92\x85\x3a\xa0\x1b\xe4\x8a\x09\x72\x05\x70\xba\x57\xa9\xa1\xac\x52\x98\x7e\xda\xd9\x0f\x66\x9e\x1b\x13\x90\xe4\xa8\xb8\x6c\xc7\x87\x27\x61\x1e\xde\xf4\xf1\x71\xb0\x31\xff\x1a\x8f\x19\xb7\xfc\x8e\xd8\x6c\x94\x6d\x3f\x85\xa2\x10\xfa\xf8\x77\x24\xa7\xc0\x6e\xf9\x48\x53\x58\xdc\xe1\x29\x94\x7a\x11\x0c\x5e\xad\x64\x38\x51\x3e\xd8\x43\xbc\xdd\x17\xc5\x53\xa0\x5e\x76\x86\xa5\x1f\xe5\xfd\x21\xca\xd8\x36\x21\x6c\xed\x67\x63\x9a\x05\xb8\xd7\x0a\x2a\x55\x9f\x11\x55\xd0\xb9\x16\xd1\xd8\xdd\x44\x24\x83\x87\xf4\x21\xcf\x3c\x83\xd9\xc6\x91\x56\x4c\x2b\xe3\x7d\xa3\xd9\x4d\x3b\x23\x30\x88\x20\x76\xe1\xb0\x42\x8f\xa9\xa7\x67\x37\xec\x5c\x88\x1c\xe0\x1c\x1d\xd3\x47\x79\x9b\xce\x80\xcb\xc2\xd0\x7f\x20\x6a\xd3\x46\x9b\xd6\x73\x94\xec\xa8\x0e\x07\x86\x70\x02\x9d\x68\xdf\x33\x09\xb9\xe8\x09\x62\xb8\x98\x69\x13\x35\xdc\x26\x49\x86\x5d\xf0\x20\x88\x22\x33\x6b\xd6\x83\x0d\x9c\x73\x60\x4f\xc1\x1b\x2c\x4b\x77\xcb\x3f\xa1\x65\xf8\xa9\x34\x7e\xe4\x5d\x1d\x7a\x1e\xd9\x3f\x16\xc2\x5d\x22\x25\xb9\xc7\x28\x9d\xb7\x5a\xa1\x98\x7f\x4f\x57\x8b\x2b\xba\x87\xb9\x8f\xed\xed\x99\x8a\x32\x67\xb9\xa2\xf1\x4e\x2f\x52\x19\x78\xdd\xe6\xda\xee\x45\x8c\x71\x5e\xbc\x89\x33\xf1\x41\xce\xeb\x0e\xde\xb6\xdb\x83\xa1\xf0\xab\x82\xb2\x28\x51\xdf\x90\x2b\x43\xce\xfc\xd9\x98\x14\x1f\x51\x5c\x76\x85\xae\x1a\x8a\xae\xcc\x96\xc9\xc4\x6c\xf8\xf8\x3d\xaa\xc9\x61\x88\x02\x61\x99\x02\xee\xd4\xc5\x51\xb1\xb2\x93\xa5\xa3\x4e\xbf\x22\xc6\xf5\xb6\x2c\x6a\x37\x15\x45\xce\xb7\x97\x59\x34\xb4\x66\xb7\x28\x4a\xec\xe7\xda\x64\x85\x9e\x65\xc1\x9d\xd4\x72\x7a\x2c\xdb\x95\x54\x29\x3e\x5d\x8c\x4c\x45\xf3\xba\x5e\xe3\xc0\x14\xf9\xa8\x0b\x15\x4f\xd7\x27\x92\x3b\xd3\x93\x3a\x86\xbe\x74\xcd\x66\xb9\x35\xf9\x6c\x40\x23\xed\x69\x53\xa7\x09\x36\xcc\xa9\x81\x35\xbc\x12\xd6\x7d\x1f\x1b\xc5\x51\x0c\xfe\x9e\xd7\x2b\xc3\xad\x58\xdb\xb3\x13\xb2\xe1\x7b\x88\x74\x2d\x1d\x15\x71\x9a\xae\xce\x85\x49\x94\x7f\x26\xb7\xe7\xe4\x4c\x03\x8e\xe9\x02\x31\x34\x9e\x97\x76\x12\x96\xd2\xd9\xa9\x52\xc3\xe2\x62\x33\x5d\xf7\x33\x23\xc8\x04\x1a\x08\x70\xf5\x64\xf2\x2c\xe9\x8d\xe5\xb9\x90\x63\x1c\x9e\xaf\xa8\x02\x62\x41\x3d\x20\x35\xd9\x33\x75\x9a\x32\x2b\x26\x1b\x78\x52\x37\xd8\xbb\xe3\x78\xd8\x7a\x52\x27\x6e\xde\x31\x99\x55\xac\x47\xdd\x14\xd2\x8b\x01\x84\x99\x98\x41\x99\x08\xbf\xa9\x6b\xcf\x19\xce\x30\x17\x7a\xae\x2e\xc2\xca\x35\xb7\xcd\x69\xc1\x2a\xe8\xd3\x01\x91\xb7\xb6\xc5\x0e\xcc\x97\xaf\x22\x2f\x4c\xd2\x8d\x92\x5e\x85\x1a\x13\x17\xe7\x06\x79\xfc\x7c\x86\x44\xf1\x33\x1c\xb8\x93\xc7\x80\x67\x0f\xd9\x8e\xef\x9a\xa6\xa3\xcc\x51\x91\x28\x41\x03\x6d\xc6\x8b\x08\x51\x55\x67\x91\x8a\x3c\xf9\xd0\x26\xdd\xdd\x62\x91\xe1\xee\x10\x64\x2a\xc7\x9d\x54\x08\xe1\xed\x8e\xb3\xb8\x34\x5e\x1e\xea\xb5\x8f\x64\x55\xa1\x5c\xfb\x80\x00\xe7\xef\xc8\xdc\x15\x22\xc3\xcf\x81\xe9\xd0\x7f\x80\xa3\x76\x6c\x3d\x5b\xb7\xcc\xe2\x62\xf9\xdf\x55\x79\xc8\xac\x0c\x7f\x6e\x4c\x5c\x76\xe7\xea\xf4\x5c\x3a\x66\xd9\xc4\x8d\x29\x15\xca\x4a\x85\x48\x9f\x55\xe2\x94\x20\x9c\xd1\x24\x89\xa6\x2b\x0c\xbf\xca\xa2\x7c\x95\xb4\xf2\x11\x82\x3a\xa4\x44\xcd\x02\x89\x92\xc2\xc6\xb1\xed\xa0\x7c\x87\x54\xed\x77\xe4\x32\xf4\xb8\xc6\xac\xec\x6f\x16\x69\x61\x62\xad\x43\x22\xf1\xfb\x39\xee\x56\x4f\xea\xa6\xfb\x3b\xe9\xaa\x25\x11\x3d\xa5\x94\xd2\x93\xaa\xda\x5e\x91\xef\x6c\xbc\xfc\xb2\x9f\xbd\x95\x7b\x85\x5f\xbd\x41\x32\x4f\xe7\xc7\x61\x5e\x14\x34\x36\x9e\x68\x20\x70\x28\x5c\x81\x8d\xd5\x13\x04\x50\xfa\xbd\xad\x30\x2b\xd2\xb7\xa6\xbb\x2b\xac\xbe\xeb\x4c\x50\x05\x42\x15\x15\xf8\x97\x68\x4c\x31\x25\x54\x49\x3e\xd9\x0a\xf2\xd1\x3a\xba\x8a\xa8\xf2\x9c\xf4\xee\x1d\x8e\x52\xd6\x11\x02\xa6\xef\xd6\x0c\x6b\x1d\x6c\xc6\x91\x59\xae\xe6\xb7\x7f\x40\xe0\xcf\x3f\xa0\xb2\xe8\x6f\x8f\x4c\x56\x00\x75\xe0\xc9\xf8\x5b\x5c\x60\x9c\x4a\x04\x0e\xbd\xda\xcc\xd3\x51\xd1\x2f\xed\xdb\xe6\x55\x8a\xdd\x6e\xb6\xa8\x79\xfa\x5e\x40\x52\xc6\x26\xa0\x5e\x81\xaf\xfb\x54\x6b\xe4\x7a\x16\xb2\x18\xbb\x12\x65\x29\x35\x62\xbe\xcb\x25\xb3\xef\xb6\x58\x22\xb1\xb0\x49\xb1\x53\xc2\x4d\x34\x2d\x4e\x22\x44\xd5\x13\xbc\x6b\x44\xd1\x3f\xa7\xf0\x68\x93\x54\x49\x11\x1d\xe9\xdf\xc8\x7a\xf0\x11\x65\x40\x32\x56\xc6\xbd\x2a\x10\x08\x90\x62\x3a\xa4\xf1\xb3\xac\xde\x18\x2d\x9b\x7c\x3b\x55\x56\xde\xa7\x5e\x2f\x48\x80\xf4\x58\xde\xaa\xaf\xaf\x79\xcd\xa7\xf7\x65\x19\x38\x0e\x92\xb0\x2b\xfb\x69\xae\x89\xb1\x53\x56\xa7\xc7\x73\x6e\x6a\xb3\xbc\xd2\x04\x90\x4e\xde\x2d\xbe\x4d\x69\x59\xf5\x64\xbc\xd5\x66\x1f\x9e\x7f\xbd\x34\xda\x43\x9b\x09\x78\xb0\x4b\x18\x88\x3f\x44\x00\xae\x27\x35\x6d\xe7\xd7\x9b\x79\x54\x04\xec\xb9\x0a\x3a\x12\x39\xd2\xc5\xf1\xd6\x39\x5a\x87\x9c\x88\xcd\x3a\x4b\xfb\x20\xd3\x55\x7e\x07\x3d\x09\xbd\xf8\xb4\xb3\x6a\xc3\xcf\x20\x43\xfe\x9b\x94\x2d\xff\xcd\xba\x04\x3e\x33\x34\xf0\x05\x87\xf2\x90\x58\x61\x1f\x4e\x3d\x09\x21\x86\xec\xac\x26\xe9\x7a\x6c\xbb\x3d\x94\x58\xf6\xfb\xed\x1f\xda\x56\x6a\x24\xd0\x66\x7a\x5c\x35\x3f\x03\x33\x5b\x65\x11\xf4\x7d\xa5\x77\xc7\xc1\x3b\xbf\x85\xfb\x74\x12\x13\x7b\xc2\xb6\x49\x2c\x49\xd8\x3d\xd5\x0e\x18\xad\xa7\x26\x35\x42\x35\x83\x34\x89\x8a\x34\x6b\x04\x9a\xfa\xb7\xe9\xa9\xbc\x3d\x0e\x1c\x26\x45\x96\x36\xa8\x62\x74\x9e\x70\x54\xe7\xa7\x84\xc2\xdd\x3b\xb2\x26\x2f\x06\xca\x42\xed\x49\x3c\x02\xbf\x61\x0d\xa0\x7c\x6f\x73\x39\x4e\x3b\xab\x8d\x20\x27\xf1\x27\xf2\x08\xf4\xb8\x2e\xce\x1c\x8e\xe2\x38\x1d\xa1\x14\xee\x00\x52\xe5\x56\x70\xc8\x29\x4f\x14\x1a\x8f\x54\xb7\x81\xf3\x61\x3d\x6e\xbd\xe8\x80\x44\xc3\x32\x4c\x1f\x25\x11\xda\xbb\x87\xe7\x7d\xfd\xbe\xe1\x29\x6c\x3f\xa6\xa0\xbc\x6f\xd6\x4d\x14\x99\x04\x1b\xc6\x25\xaa\x9c\xb5\xb6\x5e\xaa\xf6\x74\x7f\x73\xa1\x5c\x28\x07\x05\x33\xef\xf4\x3f\xcb\xdf\x41\xa5\xf5\x23\xd9\xd2\x6e\x62\xa7\x86\x1d\x2f\xb7\x26\xac\x64\x95\xa0\xa6\xdc\xe3\x64\x95\x35\x7c\x90\xcf\x85\x02\xc2\x79\x64\xb7\x68\xea\xff\xfd\x71\x08\x64\x67\x49\x05\x57\x4b\x3a\x6e\x62\x24\x44\x3f\xcb\x99\x45\xeb\xba\x7e\xea\xe1\x69\x62\x49\x33\x03\x4b\x02\x8c\x58\xc4\x2e\x9f\xa9\x29\x7b\xf5\xd3\x51\xe2\x48\x06\xfd\x6c\x50\xd0\x28\x3b\x46\x0a\x17\x89\x29\x46\x99\x89\x11\x8a\x7a\xd1\x49\xb4\xd1\x5c\x44\x52\x53\x5c\x0d\x13\x76\xc4\x53\xf7\x88\xc9\x8b\x1e\x51\xe9\xb2\x93\x0e\x86\x69\x02\x38\x60\xc0\xa2\x5e\x21\x2c\xea\x15\x66\xe9\x8f\x92\x2e\x18\x43\x55\x96\x15\x2d\xd8\xab\xcc\xd5\x1f\x8a\x6e\x51\xb6\xe6\xdb\x3d\x78\xc6\x60\xfa\xd6\x7e\x3e\x2e\x09\x0e\xa9\x31\x85\x02\x5d\x5c\x6c\x0e\x6c\xd6\xe9\x9b\x44\xa7\x11\x3d\x97\xbd\x0f\x3d\xe7\xda\xa1\x57\xf2\x60\xcc\x02\x72\x83\xd2\xa5\x02\xbd\x8a\xb6\xe4\x67\xdc\x67\xfe\x4c\xa2\x54\xe7\x6a\x1b\x9e\x1e\xee\xd3\xa9\x42\xf8\xc2\xa1\x66\x61\x8e\x44\x34\xe5\x00\x7a\x46\xc7\xb5\xe9\x81\x1d\x03\x60\x74\xcb\xd7\x04\xdf\x01\x08\x0d\x82\xd2\xc6\x44\x02\x12\xe4\x68\xb0\x53\x4e\x69\xa8\x06\x77\xbb\x6a\x87\x3a\x4a\xa9\xf3\x97\xb2\xf4\xdc\x2c\x66\x4d\x77\x65\x94\xa8\x1c\x93\x23\x9c\x47\x85\xf3\x02\x29\xaa\x5d\xa0\xa9\xc2\xcc\xae\x58\x21\x48\xdc\x1e\x8a\x44\xa7\x5b\x41\x08\xfd\xf4\x38\x00\xa8\x67\xa4\xc0\x86\xf6\xbe\x62\xb8\xf0\xa8\xce\xc1\xdb\xc1\xac\x57\xd7\x53\x1c\x9b\x42\xa4\xe5\xc4\x4a\xa0\xd6\xa5\x44\x9c\x7a\x32\x95\x3e\x0a\x2d\xc6\x9a\x55\x68\xa0\xa3\x95\x09\x0f\xfa\x61\x0d\x86\xe1\x40\x73\x65\xa4\x5a\x73\x0e\x45\x1e\x4a\x63\x27\xa7\xfc\xef\xbe\x25\xcf\x68\x88\xe5\xa4\x48\xa5\x71\x40\x43\xdd\x95\x57\xab\x53\x09\x84\x7b\xb0\x49\x2f\x4a\x24\x7b\xf4\x90\x2d\x25\x6b\x72\x6d\x81\xd0\xaa\x5c\xc1\x54\x8c\xfc\x2b\x12\x3f\x05\xbd\xe8\x09\xcd\x3d\x27\x65\x84\x56\xa5\xc6\x38\x4f\x6e\xef\x3c\x49\xb7\xaf\x9b\xbc\x1f\x25\xbd\x22\x4d\xe6\x48\xb3\xea\x01\xe9\x50\xfc\x3d\xf9\x24\x8a\x05\xf7\x69\x0a\xea\x32\x21\xd5\xa7\x01\x96\x0b\x87\x9a\xeb\xd6\xae\xc6\x1b\x52\x8a\x46\x16\xb6\xad\x4d\x16\x4c\xde\x01\x32\xf8\x77\x98\x84\xf1\x12\x3d\x9e\xe5\xcc\x24\x9d\xbe\x27\xed\x42\xa2\xa1\x04\xe3\x2c\x15\xe2\xb5\x6d\x03\x5f\xf3\xc7\xad\x17\xaa\xfe\xe2\xb5\xfd\xcd\x03\xf3\x0d\x89\x5a\x91\xc9\x7e\x88\xa8\x55\x4f\x78\x32\xc7\x69\xc9\x41\x45\xc7\xc9\xd8\x96\x4b\xd7\x55\x8d\x1b\x9e\xea\x23\x20\x3b\x7a\x36\xcd\x7a\x91\x83\xc2\xe3\xce\x54\xeb\x45\x4f\xea\x66\x45\xfe\x1f\xc9\xf6\x42\x10\x1c\x25\x9d\x5f\xd9\x53\x5e\x05\x75\xab\xd4\x56\x3a\xa4\x81\x18\x03\x3c\xec\x07\x63\x6a\x69\x7c\x8e\xa0\x1c\xa5\x3b\x08\x44\xea\x5f\x11\x99\xd8\x04\x25\x5c\xf8\xb5\x7f\xc2\x5b\x72\xae\x4d\x12\xce\x7f\xcc\xcc\xb7\x8f\xc9\x61\x59\x93\x25\xf9\x8e\xa0\x78\x74\x9e\xec\xd4\xc5\xf2\x77\x36\x15\x8e\xe1\xaa\x8b\xe5\x65\xc0\xca\x9f\x12\xf0\x21\x0a\x67\xa0\xde\xd8\x3c\x55\x09\xe8\x8a\x34\x79\x86\x58\x1d\xff\xa0\x15\x34\x01\x4f\x6b\x65\x53\x05\x89\xda\x92\x1f\x2a\x92\x1f\x7b\x09\x49\xe0\x6d\xb9\x55\x25\x36\x26\xd3\xfc\x14\x6a\xdd\x0e\xc9\x47\x5c\x42\x97\xc6\xa1\x11\x7d\x9f\x85\xdf\xc1\x73\xe8\x81\xb3\x21\xa9\x7f\xa2\x4d\xe5\x57\xcc\x04\x00\xb7\x71\xce\x7b\xae\x5e\x56\xba\x69\xcc\x0c\x3b\x7e\xf8\xf2\x62\x7c\x71\x31\x74\x96\xa1\x63\x0b\x57\xe9\xa8\x98\x19\x7e\xcc\x7a\xd8\xa0\x1b\xfa\x25\x80\x0b\xb4\xdb\x5b\x2b\x4a\xb9\x9c\x9a\x80\x94\x00\x4c\x0c\x11\x08\xcb\x00\x22\xe8\x7b\x87\x4c\x7b\x37\xca\xac\x68\x0c\xce\x51\xb5\xf8\xf3\x56\x70\xd4\xa7\xb8\xe5\xf3\x3e\x85\x52\x8f\xc5\x66\x20\xc7\x7f\x38\x55\x40\x13\x92\xca\x91\x8b\x6e\x7d\xb1\x3f\x14\xfe\xc7\x8c\xa4\xe8\xf4\x77\x84\xf2\x0a\x54\x79\xc2\x44\xc2\xbe\xa5\xe0\x9e\x16\x0e\x79\xf7\x44\x95\x72\x65\x74\x47\x2b\xe9\x5d\xe2\x59\xbc\xdd\x0a\x46\x67\x18\x5b\x93\x2b\x93\xd9\xeb\x5e\x02\x8d\x88\x02\xaf\x10\x0f\xb9\x89\xb2\x75\xb3\xe1\xaa\x46\x58\x2a\x3f\x64\xa8\xd5\x0f\x69\x52\x36\xef\x64\x66\xb0\x1c\x6b\xf9\x8f\x24\x04\x02\x3d\xb0\x8f\xb2\x57\xa3\x4c\xe7\x11\x9c\x1c\x7a\x48\x61\x2e\x53\x93\xc0\x1c\x89\x66\x1b\x7b\x17\xdc\xcc\x29\x2f\x9f\xb3\x04\x3c\xba\x53\x89\x2d\xb6\xc0\x23\xcb\x65\xf1\xf2\xcb\x3b\xe4\x16\x49\x5d\x62\x21\x28\x14\x97\xaf\xdc\x51\x79\x92\x25\x41\xe2\x8c\x6d\xa8\x48\x01\xa7\x66\x40\x50\xf9\xa9\x48\xf2\xf0\xfc\xfe\xa6\x19\x0e\xad\xf1\x2a\x32\x9b\x57\x55\xd1\xb2\xa6\xfa\x9b\x17\x36\xb3\xd0\x14\xf1\xaf\x37\x44\x22\x75\xad\xf9\x68\x60\x4a\xb7\xda\x08\x55\x45\x04\x1e\x7a\xec\x31\xd8\x9d\x28\xeb\x8c\x06\x6b\x6e\x08\x1b\xd1\x15\xbe\x5d\x8f\x29\x73\x4b\xec\xfa\x4b\x0d\x4f\x67\x7c\x4f\x3a\x74\xb0\x32\x7f\x56\x4d\xcf\x03\xbe\xfd\xb1\x94\x9a\x10\x7d\xab\xfd\xc0\x8e\x77\xfc\x19\xb0\x20\xe0\x86\x85\xdb\xda\x31\xa1\xe5\xf0\xaf\xa4\xe3\x03\x8b\x75\x0d\x2d\x2c\x25\xd3\x92\xbe\x29\xde\xe6\xb6\x36\x41\xf0\x4f\x08\xe7\xb9\xcb\x11\xca\x1d\x81\xf5\x7d\x57\x8a\xa4\xee\xa5\xc9\x8b\x42\xe4\x75\x74\x0b\xa3\x6e\xc0\x56\x3f\xd1\xae\xce\x58\x96\x8b\x03\xb7\x78\x2f\x80\xd8\x13\xd3\xb5\xbf\x3d\x32\x85\x9d\xf3\x28\x9a\xde\xf3\xd2\x6b\x65\xc0\x34\xf2\xeb\x6d\x32\xed\xe7\xb0\xc9\xf2\x4b\x4e\xde\xd3\x4b\xb5\x9b\x51\x5c\xcc\xc8\xef\x32\x18\x19\xe6\x74\xb3\x45\xf4\x41\x97\xa7\xc2\xdb\xbd\x0b\xcd\xc4\x9a\x4c\x8a\xd1\x3e\x1f\xe4\x01\xec\x7d\x4b\x1e\xfc\x50\x03\x95\x5a\x31\x47\x64\x89\xa1\x2e\x79\x9d\x6a\x94\xd7\x6b\x08\x55\xbf\xd1\x5c\xb1\xb1\x86\xd2\x7e\x0c\x93\x28\xad\x68\x7f\xc6\xf6\x69\x2a\x0f\x3f\x06\x03\xb3\xd3\x1c\x22\x22\x82\x53\x63\x0a\x47\x7e\x34\xa6\xb0\x1e\xf4\xb7\xd8\x8b\x77\x78\xee\x64\xbc\x85\xcb\xb4\x5c\x07\x15\xed\x37\xac\x96\x87\x01\xc3\x71\xf7\xcf\xb7\x43\x7e\xaf\x8d\x3f\xff\x23\xdf\xfa\xa6\x56\x3c\x8f\x51\x08\x66\x92\xbe\x1d\xe5\x36\x9b\xa3\x21\xae\xa3\x04\x7d\x7f\x48\x70\xf1\x99\x36\x8d\x7d\x1d\x95\x2b\xc5\x5a\x0a\xe3\x1c\xfd\x74\x68\x83\xea\x32\xc6\x31\x94\x40\x5d\x4f\x88\x15\xbd\x9f\xe6\xc3\xa8\x30\x71\x8e\x01\x45\xe2\x6a\x71\xeb\xf2\x0c\x89\xc8\x5e\xe0\xf6\x12\xbd\x81\xd7\xfa\xe9\x1c\xa5\x83\x17\x24\xd4\x80\x83\x7f\xae\x1d\x96\xe7\x23\x34\x1b\xbc\x06\x96\x8f\x5a\xbf\xac\x1d\xc1\x81\xf4\x87\x22\x9d\x11\x3f\xa9\x40\x87\xaa\x24\xca\x82\xc3\x2a\x3e\x49\x00\x0d\x3b\x8c\xf2\xb4\x6b\x05\xfa\x83\xf6\xfa\xcf\x00\xfd\xd1\x13\x52\x17\xcd\x85\x4f\x60\xcb\x38\x16\xda\xe8\xa8\x34\x60\x5f\xdc\xa7\x10\xb1\x6f\xe2\x18\x0f\x8b\x27\x56\xb1\xe7\x66\x98\x6a\x79\xa6\x32\xd7\x4a\x9c\x87\xdf\x36\x6e\x12\xce\x99\xba\x93\x2d\x92\xcc\x38\x39\xd5\x80\x10\xee\x8b\xee\x5a\x94\xa7\x9a\x63\x79\xc9\xef\xf2\x99\x3b\xc9\xef\x1a\x00\xf1\x4a\x24\x73\x7d\x01\x93\x0b\x46\x1e\xe7\x66\x42\x5c\x39\x18\x15\x05\x40\x60\x7e\x00\xc9\x97\x5c\xee\xd2\xec\x72\x3a\x2a\x4c\x0f\x75\x3b\x18\xb7\x1f\xb4\x42\x8a\xf9\x83\x3a\x1d\xac\xe5\x34\x71\xf4\x98\x8e\x2d\xa8\xbc\x1c\xd4\x62\x2e\x31\x87\xdd\x94\x63\x2a\x7d\x58\x5e\x98\xac\x40\x75\x12\x7b\xf8\x3a\x3c\x25\xfc\xcc\x25\x12\x72\x7f\xbb\x2a\xff\x32\xcc\x9f\x0c\x48\xfe\x5d\x13\xf9\x06\xc7\x5d\x51\x5e\x00\xa2\xcc\xdf\x67\x8f\xaa\x0c\x17\x0e\x61\x04\x4e\x6f\x3d\x6b\x11\xe1\x0f\x14\x30\xb4\xbc\x39\xae\x50\xcf\x97\x0b\x92\xd5\x74\x5d\x34\xc3\x71\xb6\xb5\x83\x9d\xb2\x0f\x10\x4f\x9c\xc1\x57\x3b\x62\x6a\x9a\x53\x46\x6c\x8c\xd5\xf8\x58\x56\x99\x7e\x82\xe6\x6f\xff\x4c\x5e\x94\xe7\x91\x2f\x2d\x9a\xfb\xa3\xe9\x7a\x79\xe9\x47\x62\xa9\x72\xe0\x1a\x7f\x00\x7b\x06\x73\x7f\x93\x5a\x28\xc8\x22\x1d\x5b\x70\x10\xb6\xee\xa7\x59\x11\x75\x46\xb1\x54\xb6\x1a\xa1\xcc\x78\x9a\x51\x9d\xa7\x59\x74\x61\x63\xb0\x9c\xc6\x51\x3e\x20\xd2\x52\x84\x59\x0e\x5f\xe8\xac\x56\x19\x82\x88\x24\x46\x83\x67\xed\x03\x26\xff\x8a\x4f\x02\x3b\xa6\xbb\x3c\x52\xe4\x8a\xd3\x1e\x96\x9f\xd7\x13\x6e\x83\x96\xab\x67\x47\xb8\x4e\xb8\x28\x3f\x12\x50\x46\x0b\xc8\x71\x8f\xd3\x42\x9a\x11\xa6\x2e\x37\x2a\x10\xf6\x0e\x00\x1d\xb8\x9a\x0f\xeb\x48\x04\xe3\xb4\x13\x10\xcb\xfa\x83\xd8\xd8\xee\xd7\x6b\x02\xa9\x4e\x36\x1a\x08\x5c\xcf\xdf\xe9\x17\x34\x7a\xfb\x45\xa8\x51\x15\x69\x66\x7a\x76\x36\x34\x75\x2e\xe2\xed\x01\x22\x70\x86\x86\xf3\x61\xb9\xdc\xc3\xfe\xc5\x6a\x20\xba\xb8\x78\xd0\x15\xbd\x77\x96\xdf\x85\x3d\xfe\x27\xea\xe7\x78\x90\xcf\x21\x9a\xe5\x57\xf4\xcf\x5a\x01\xc8\xf0\x63\xe6\x51\x3e\x09\x8f\x81\x3c\x4a\xe7\x3b\x5c\xc5\xaf\x66\x80\xa5\x30\x43\x18\x91\x3a\x86\xcc\x40\xfc\x99\x0f\x6d\x27\x32\x71\xa4\xb2\xc9\xa8\x8f\x9c\xa7\x5a\xc9\x79\x9a\xf9\xc8\xd3\x78\xcd\x56\x38\x52\x1a\x34\x9c\x5a\xd3\x57\x5e\x4e\x47\x8e\x1b\xc7\x8d\x77\x97\x9f\x70\x33\xe3\xc4\x80\xb2\x66\xb3\x75\x1b\xf5\xfa\x9a\x2d\xd4\xf1\x6f\x06\x13\x09\x49\x99\x27\xcb\x85\xe6\x66\x9a\xe4\x41\x39\x68\x6c\x79\xf5\x2e\x60\x92\xc5\xe1\x88\xa0\x08\xe5\x72\x1a\x0f\x1d\x84\x1f\x27\xc4\x60\x22\xc7\x3d\x26\x41\x26\x8d\x93\x1e\x0c\xfd\x7d\x3f\x39\xf6\x90\x1a\xd3\x8d\x76\xc0\xfa\x0f\xa3\x4e\x31\xca\xfc\xbc\xb6\x67\x8b\x08\x61\x22\x77\xd3\xfb\xe9\xc0\xe6\x3b\xe4\x0a\x9d\x8c\xbf\x5c\x21\x6c\x13\x44\xbc\xfc\x60\x2c\x95\x9b\x09\x12\x74\x9b\x7a\xbf\x1f\x8e\x43\x02\x7c\x6e\x6a\x4d\x2c\x2d\x35\x97\xa3\xae\xbe\x0d\xc7\x1f\x4b\x95\xb7\x69\xb9\xc7\xa5\x25\xe9\x21\x25\x0e\x1e\xac\x90\x7e\x59\x49\x9e\x24\xa7\xfc\x02\x98\xc3\x6d\x13\x67\x68\x56\xa3\x6e\x52\x66\x46\x80\x93\xe0\xad\x9c\x91\x32\x82\x1e\x4f\x81\xe8\x17\x0e\x35\xe3\x74\x14\xe5\x6b\x51\x1c\x63\xd9\x7a\x46\xba\x20\xf7\x74\x79\xca\xff\xfe\x07\xcd\x5e\x56\x7e\x42\x0d\x02\xf6\x26\xc0\xf6\x7a\x5c\xc7\xf1\x6c\xe2\x78\x94\xd9\x46\x95\xf3\x9e\x98\x48\xea\xea\x0d\x79\x32\x5a\x5e\x76\xcc\x33\x08\x62\x2f\x70\x76\x79\xa1\xf5\xe2\x74\xef\xb4\xa3\x5e\x19\xeb\x5d\xab\x2a\x0e\x8a\x27\xdf\x84\x70\xa9\xca\x48\x32\xc8\x7e\x65\x67\xf9\xac\x90\xf2\xca\xd2\x5e\xd8\xbc\x2a\x66\x15\x40\xbc\xb3\xf0\xa8\x88\x72\xbf\x33\xae\xc0\x36\xe4\x27\xc4\x78\xfd\x97\x7f\xbe\xcd\x5a\x72\x10\x29\x45\xf8\xf3\x80\xb8\x36\x46\x49\xc7\x66\x85\x89\x92\x02\x71\x0f\xaa\x49\x18\x13\xd3\xe3\xa9\xc8\xf1\xc0\x7c\x73\x94\x44\x2b\x51\x56\x5a\x8d\x03\xf3\xf5\x84\x19\xd3\xc0\xa4\xd7\x9b\xcb\xb6\x93\x0e\x30\x97\xea\x99\x76\x0e\xcf\x6b\x77\xf7\x3a\x22\x48\xa7\x3b\x4c\x68\xfa\xed\xed\x97\x08\x78\x5e\xd8\xac\x4c\x76\x45\xd6\xdc\x0f\x17\x7c\x67\x1c\x06\x75\xbf\xe3\x33\xbb\x41\x9a\xd8\xc2\x64\xce\xba\xa1\xee\x09\x8a\x46\x3d\xf6\x93\xd6\x79\xda\x35\x33\x54\x3b\xb8\x46\x88\x2b\x20\x7b\x50\x13\xfa\x8c\xa2\x4c\x9b\xa4\xa3\x5e\x7f\x97\x38\x39\x44\x5b\x77\x68\x96\x05\xf4\xb8\x9e\xa6\x65\x9f\x8b\xa8\x76\xb6\x49\x9f\xe3\x38\x01\x2c\xcf\xe2\x9e\xbd\x0d\xf6\xfa\x79\x8f\xc5\x24\xb9\xd1\xca\xe9\x20\xf4\x00\x40\xc4\xc4\x97\x0d\x08\xa9\x1e\xb7\x02\xd8\xb8\x6b\x92\x0e\x46\xb5\x55\xd3\x1c\x42\x2a\x5e\xa4\xd3\x57\x24\x7e\x80\x35\xe6\xa4\x23\x9e\x21\x65\xcf\xce\x6a\xb9\xb1\xf7\xee\xf5\x48\x89\x86\x9f\x01\x3d\x49\x05\xa8\xdc\x76\xcc\xa8\x33\x72\xa6\x10\xd5\xaa\xbf\xd3\xa2\xd2\xd5\xdf\x99\xb2\x51\x6f\xbc\xd1\xec\x98\x2c\x66\x96\x8c\x5b\x94\x91\xde\x22\x04\x6a\x24\xb3\x4b\x24\x6c\xff\x01\x15\xfb\xa7\xf1\xf4\x4b\x4b\xa2\xd2\xf8\xdb\x23\x58\x17\x94\x29\xc1\x0a\xa4\xc7\x81\x2f\xc9\x9a\x3c\x1f\x65\x50\x1d\xf3\xac\x76\x17\xe8\x36\xaf\x90\x84\xfd\x1f\x52\x6f\xc3\x1e\x19\xda\xac\xf8\x4a\x0c\x5d\x80\xa1\xe6\x26\x59\x95\x9d\xe3\xe4\xb6\xca\x3f\x73\x3a\x5c\xbf\x3c\xdd\x98\xc9\xec\x30\xb3\xb9\x4d\x0a\x19\xb5\x77\xa4\x2f\x1e\xbb\x19\x54\x24\x2e\xb0\xbd\x7c\x77\xaa\xa3\xbe\xb4\xd4\xcc\x3b\x26\xc6\x98\x92\x43\x85\x87\x7c\xf3\xc3\x6a\x26\x5f\x87\xb7\xea\x98\x6c\xa8\x9c\xda\xae\x11\x4a\xc0\xfa\x2b\x35\x74\x77\x07\x9b\xa3\x64\x5d\x04\x3c\x3d\x5b\x04\x7c\xf3\x97\xd4\x44\x7f\xd0\xaa\xb0\x45\xd4\xe4\x59\x45\x3a\xf2\x81\x5f\x45\x7f\x51\x4f\x6a\x4b\xb2\x26\x8f\xba\xd0\xe7\xc5\xa6\x02\x7f\x15\x02\x8a\x77\x05\x7d\x03\x18\xcd\x4c\xbb\x02\xbb\xc8\x36\x50\xa5\xc7\x3e\xd6\xde\x2d\x22\x82\x6b\x95\x9a\x17\x8c\x04\x02\x8a\xe3\x3c\xd3\xf8\x00\x39\x0b\xbe\xfd\x1f\x11\xf1\xfc\x13\x28\x2e\xc0\x23\x3c\x6e\x11\x79\xee\x35\xb9\x1e\x5f\xe7\xf9\x8d\xd7\xd4\xdf\x82\x82\x00\x26\xf2\x87\x62\x2e\x9d\xac\x02\xc1\x74\x51\x50\x71\x0d\x90\xe7\xc3\x24\xaa\x1d\x66\x69\x77\x04\xd1\x5e\x97\x50\xbe\x47\x09\xe5\x7b\x34\xf6\xd5\xcb\x8c\xe8\x99\x7d\xf5\x33\x0e\x9c\x4b\x51\x2f\x11\x19\xb3\xd2\x30\xc1\x94\xa3\x30\xa6\xc7\xed\xd0\x6b\x1e\x66\x76\x10\x8d\x06\xe8\x42\xf9\x41\x57\x8f\xe4\xfc\xa0\x15\x98\xa8\x4f\x55\x34\xb7\x32\x6b\x46\xdb\xc3\x30\x86\xca\x91\xf9\x97\xe7\x85\xa8\x66\x51\x04\x50\x15\x39\x06\x34\xfd\xe9\x98\x99\xd1\x1f\xd4\x61\x01\x6d\x9c\x63\x81\x38\x09\xd0\x86\x9f\x1d\xc6\x8e\x77\x15\xc0\xad\x05\x03\x19\xd2\x92\xc0\x59\xa7\x7a\x5c\x35\x9f\x2a\xfb\x34\x2f\xb5\x62\xb3\x42\x72\x2f\x07\x51\xc2\x26\x3b\x46\x10\xa2\x69\x54\xe4\xc2\xa1\xe6\x30\x4b\x3b\x36\xcf\x53\x84\x52\x30\x11\x97\xc8\x5c\x5c\x22\xe2\x87\xcc\xe6\xa3\xb8\xf0\xdd\x55\x5c\xf9\x2d\x02\x93\xdf\x9a\xda\x9e\xaf\x34\x87\xb6\xc8\xd2\x4e\xdf\x0e\x64\x38\xab\x02\x26\xf7\x63\x3a\x6f\x73\x53\xb6\x33\xca\x3c\x8d\x3b\x76\xfd\x49\x2c\x12\x3d\xa1\xaa\x7e\xd2\x31\x33\x5b\xa7\xb8\x1c\xa2\x8e\xd4\x8d\x6e\x4e\x41\x86\xb4\x34\x95\x8e\x92\xc2\x24\xc5\x56\x76\x9b\x7d\x81\xdd\xe6\x29\xd2\x3f\x8c\xed\x93\xc1\xb4\xcf\x4c\x28\x92\xfe\x18\xc1\x16\x02\xa1\x7f\x83\xda\x25\xfa\x32\x8f\xb1\xb7\x11\xc0\x7e\xbf\x45\x40\x0c\xd0\x19\xc0\x90\xea\x50\xac\xcf\x1d\x7f\xe3\x35\x3d\xe6\x06\x1c\x70\xa7\x9b\x57\x09\x24\x53\x98\x55\x9b\xec\x0c\x74\xe9\xc7\x60\xaa\x9d\x1a\x7e\xb9\xdf\x11\xad\xa3\x97\xa9\xac\x35\xad\xd0\x0a\xd5\x9e\x05\xfe\x08\x02\x60\xf8\xb1\x9f\x8a\x7f\xc7\x66\x9b\x9b\xbc\xc8\x60\x95\x81\xcd\xde\x5c\x16\xff\xb2\x70\x48\x9b\x5a\x9b\xd4\xa3\xdc\xa4\xb6\xcf\x7a\x24\xc8\xea\x06\xca\x30\x9e\x97\xba\x7c\x3c\xc4\x4b\xed\x39\xf9\x93\x34\x8b\x8a\xc8\x2a\x5b\x27\xee\x62\xb3\x45\xda\x94\x58\x6b\x78\x66\x73\x93\xd0\xe9\x39\x31\xde\xd2\xc5\xde\xb7\xd4\x3c\x30\xff\x0b\x8d\xd7\x5c\xc1\xff\x4c\x8b\x88\x04\x40\xd1\x8d\xe1\x9a\xdb\x80\x3f\xe3\x9d\x7e\xcc\x72\xc8\x7f\x97\xd4\x82\xbf\x90\x95\xe5\x85\xed\xca\xeb\x77\xf4\xd4\x95\x2a\x2b\xc5\xdf\x3f\x95\xb8\x0b\x9d\x80\x19\x29\x36\x39\xfd\x38\x3c\x0c\xa7\x58\x47\x83\xee\x97\xc6\x44\x83\xf7\xcf\xd5\x0f\x28\x19\x29\xc6\x96\x9c\x21\xdf\xf6\xf5\x4a\x73\x18\xe9\xe3\xc7\x88\xee\x10\x77\xcd\x49\x67\x09\xb5\x62\x50\xe2\x21\x24\xd2\xb4\xc0\x8b\xa3\x1e\x98\x3f\xe8\xb1\xdf\x35\x72\x92\xe5\x76\xb4\x99\x4f\xd0\x94\x7c\x59\xde\x82\x52\x97\x60\xe5\x02\xfd\xfa\x16\x55\x8d\x30\xc2\xe3\xe6\x11\x10\x98\xbe\x2f\xab\x50\x8f\xa7\xbc\xff\xe2\x62\x73\x68\x36\x8c\x9b\x7b\x64\x4e\x24\x47\x7d\xf4\x2c\x45\xc6\xe0\x36\x09\x48\x55\xec\x27\x27\x93\xb9\xb5\x75\xb1\x6f\xa9\x99\x77\x23\x2a\x7a\x1e\x65\xf1\xc4\xa3\x75\x90\x03\x13\x65\xc2\xc4\x8a\xda\x35\x72\xf7\x8b\x3c\x8e\x78\x8f\x2c\xdf\xf4\x40\xc6\x2b\xcd\x6e\xb4\x16\x79\x9d\x7c\x74\x82\xaf\xe3\x7d\xeb\x49\xa5\xda\x59\xac\xa7\x2f\x94\xcb\x04\x08\xf6\x6d\x6d\x59\x65\x70\x14\x77\x5a\x5c\xe1\xc0\x85\x23\xde\xd8\x36\x61\xca\xa9\x0f\x68\x34\xed\x02\xe5\x73\x6a\x3f\x11\x78\xdf\xc3\x4b\x47\x40\xa6\xb3\x7c\xc8\x0e\x7e\xd2\x0a\x8a\x6d\x10\xc1\x87\xcf\x7a\x1f\x5b\xd0\x37\x35\x0e\xcc\x3b\xe2\x51\xac\x4a\x07\x25\x94\x95\xe5\x30\x8b\x21\x4d\xf9\x1c\x91\xbe\x1b\xd9\xc3\xf2\xd7\x1b\xa3\x8a\x7f\x3f\xea\xf5\xd7\xcd\x46\x23\x78\xeb\x8b\x34\x8c\x7a\xd1\x37\xbf\xcc\xa8\x1b\x15\xb3\xc1\x59\x01\x82\xe6\x54\x22\x03\x12\xe0\xcf\x70\x3d\xb8\x86\xf3\x54\xff\x5e\x4d\x87\x43\x8b\xca\x27\xf6\x93\x56\x3e\xf5\xa4\x4e\x9a\x24\x4a\xf2\x42\xe8\x45\xfc\x08\xca\xb1\x56\x00\x6d\x1c\x23\x8b\x2c\x39\xeb\xb3\xf2\xbc\xd0\x2c\x44\xc5\x11\x61\xc9\x59\x69\x54\x62\xc9\xdd\xc1\xe5\xa1\x3e\x7b\x47\x5e\x96\x6b\xd9\xe1\x95\xaa\x72\x1e\x0b\x23\xbd\x8b\xe7\xed\xf4\xa0\xe5\xd5\x79\xa5\x94\x85\x43\x1a\x70\x3f\xc4\x6a\x41\x4b\xe1\x91\x3c\x11\xf4\x57\x74\x9a\xd9\x23\x5a\x3c\xb3\xf9\x55\xae\x4e\xb5\x08\x64\x74\xc3\x97\x2e\x8b\x34\x89\x7a\xfd\x62\x7b\x69\x39\xbd\x4a\xe3\xaf\xff\x96\x1a\x92\x3f\x1e\x87\x10\x58\x2b\x2a\x0a\x3a\xa1\xe4\xea\x11\x6e\x05\xd7\x35\xdd\x20\x59\x5c\x6c\x16\xe5\x4f\xd8\x44\xcb\x3a\x2e\x26\x6c\x78\xd6\xfa\x0b\x34\x54\xb3\xde\x8f\xde\x7c\x13\x9b\x73\x7f\x50\xaf\x2e\x6f\x1c\x50\xb2\xab\x04\x03\xbd\x4f\xf3\x0f\x2b\x51\xb2\xaa\x19\xa3\x8b\x43\xe4\x7a\x5d\x20\x12\x38\xa5\xd6\xa2\x3c\x2a\xd2\x4c\x4b\x2c\x8c\x41\xc1\x46\x7a\x80\x0f\x22\x26\x3e\x37\x0e\x31\x71\x19\x90\x9a\x62\xa4\xf3\x6b\x4e\x7a\x43\xbe\xc5\x09\x74\xec\xf1\xa9\xa0\x5d\xd1\xe8\xc3\x53\x98\xf9\x2c\xf0\x47\x53\x55\xac\x7d\x4b\xcd\x24\xcd\xd6\x6d\x2f\x32\x89\xcb\x7b\x5d\x17\x9b\xc7\xf8\xc6\x2f\x51\x80\x9e\x17\x59\xd4\x91\x41\xfa\x39\x52\xb2\xa5\x66\xfa\x3b\xe3\x30\xd2\x71\x06\xcb\xd2\xcf\x28\xbc\xe6\xa7\xed\xcf\x4c\xe1\x13\xf6\x2d\x35\x63\xdb\x8b\x0a\x65\xbd\x5c\x5c\xf4\xac\x1e\x8d\xa5\x40\xf7\x11\xa2\xb5\xdf\x5c\xda\xdb\xa8\x88\x56\x31\xb1\xf8\x65\xa2\x76\x88\x92\xae\xb5\xdd\xdd\xd2\x09\xc1\x3a\xd2\xc9\x54\xef\x8d\xbd\xec\xbb\x52\x52\xf9\xd0\xed\xb5\x30\x41\xdc\xf0\xa3\x9b\xbf\x0f\xc7\xaa\x5f\x25\xf1\x9d\xab\x8b\x95\xdb\x06\x26\x02\xd5\x50\x57\x29\x7a\x29\x74\x22\x07\xcb\x65\x72\x99\xe7\x8e\x39\x03\x06\xe9\x2e\x19\xa7\xbb\xb5\x13\x2e\x80\x02\x49\x86\x4f\x10\xa8\xfd\xbe\x7e\x1a\xcc\xd6\x75\x2a\xa0\x0c\x4c\x94\xa8\xcb\xf1\x20\x2a\x5f\x23\xf8\x9f\x99\xf0\xe6\xbc\xef\xbb\x0c\x4c\x2f\x49\xe3\xc8\xe4\x2c\x1a\x72\x03\x2b\x02\x5b\xe3\x86\x1a\x15\x38\xed\x37\x98\xc9\xd8\x5a\x27\xb9\x03\x6c\xd4\xff\x86\xe9\x70\x3d\xa9\x69\xea\x37\x43\x5d\x0e\x66\x0d\x5b\x54\x8f\x7d\x05\x65\xd9\xe4\x4a\xdc\xbf\x44\xa4\x2c\x9e\x2f\xe7\x2c\xbd\xef\xc4\x0c\x63\xab\x62\x51\x4a\xc7\x48\xea\x86\x81\x35\x4e\x44\xd0\x84\xd9\xdf\xeb\x87\x79\xd2\xcb\x2f\x5b\x2f\x11\x06\x25\xea\xf5\x97\xd3\xac\x9f\xa6\xdd\x19\x89\xef\x3c\x4c\xe2\xf0\xbc\x3a\x3b\x65\xc0\x56\xe1\xca\xda\x9a\x57\x37\x5d\xef\xa2\x66\xe9\x67\x79\xbd\xc6\xfc\x79\x32\x14\x79\x3c\xea\xf5\xa2\xbc\x3f\x3b\xcd\xc4\xe5\x88\xc3\x42\x3e\x7c\x05\x0d\x3e\xc7\x2e\xf6\x0c\xe9\xe5\xc6\x69\x02\x61\x40\x47\x98\xf5\x7f\x73\xf6\xa7\x31\x92\x9c\xe9\x7d\x20\xde\x9d\x55\xd5\xd5\x64\xb3\xc9\x66\x93\x9c\x19\xdb\x32\x9c\xb0\xc7\x7f\xca\x06\x45\xc9\x63\xc8\x7f\x69\xbe\x44\xaa\xba\x3c\x34\x1b\x9a\x62\xa3\xba\xd5\x5c\x11\x36\xc0\xc8\xc8\xb7\x32\x83\x15\x19\x91\x8c\xa3\x8a\xc5\x4f\x8b\xfd\x60\x2c\x8c\xfd\xb4\xde\x85\x01\x2f\x60\x2c\xec\x5d\xdb\xa3\x95\xa5\xd5\xe8\xb2\xce\x4c\x8e\xe6\xd0\xcc\x48\x33\xbc\x86\xc7\xf0\xea\xfb\xaa\xee\xea\xfb\xee\xae\x5e\xc4\xf3\x7b\x9e\xf7\x7d\xa2\x22\xb8\x30\xf6\x13\x23\xd8\x95\x99\x11\xef\xf1\xbc\xcf\xf1\x7b\x7e\x3f\xc5\x73\x73\x5e\x67\xc8\x92\x30\xaa\xa4\x48\x30\xae\x7c\xdd\x98\x55\x89\x42\xd3\x35\x69\x4b\xf3\x7e\xad\x6b\xc6\xf5\x7a\x76\x63\x61\xa1\x1d\xf9\x45\x7f\x90\xa9\x1a\x1d\xf3\xdc\xf1\x4d\xa5\x20\x3a\xf2\xe3\xdd\xe5\x1f\x22\xd2\x7c\x17\x67\x13\x12\x58\x57\xd1\x8a\xc6\x8c\x85\xbc\xe9\x61\x85\x50\x49\xe1\x96\xe6\xb1\xc2\x17\x5e\xc2\xec\xe0\x0c\xdc\xd5\x71\xfc\xd7\xbf\xaf\xf8\x12\x6f\xe1\x71\x10\x97\x6f\x68\x42\xa2\xcd\x31\x75\x7e\x79\xaa\xd1\xfc\xcd\xcf\x55\x74\x0a\xfc\xb8\x17\xf6\xa6\x5c\x96\x0a\xe2\x47\x16\x7b\x52\x7e\x87\xa8\x42\x36\x98\xc0\xac\x18\x99\x94\xb4\xc7\xa0\x9b\x02\x9b\x0a\x3a\x48\xbe\xae\x01\x69\x16\xe7\xda\x49\x6c\x66\x2b\x5c\x18\x8b\x73\xe2\x95\x2b\x66\x40\xc6\x9e\xc8\xf1\x57\xba\x0f\xd8\x3e\x9f\x21\x0a\x61\x10\x85\xaa\x36\x1e\x6f\x54\x90\x4c\x93\x1e\x53\xd5\x57\x1a\x07\x85\x23\xcc\x99\x9f\x6e\xd2\x2f\xd8\x8c\xd8\x7a\xb8\x6d\xbd\xb9\xa3\x0c\x7b\x7d\xcb\x94\xbf\x43\x7a\x10\x33\xae\x39\xed\x24\x7e\x07\xc1\x26\xb3\x28\x8b\x58\x1c\x0d\x2c\x72\xde\x17\x3c\xcd\x2b\xed\xe4\xf8\xfd\x55\xdb\x7b\x62\xfb\x06\x54\x43\x81\xa4\xd6\xbb\xc9\x6b\x6b\x80\x73\x58\x40\xaa\x4d\xde\x3c\xda\x71\x18\x54\x26\x88\x16\x7d\x14\xb1\x54\xaf\x24\x03\x3f\xce\x92\xb8\x5a\xb0\xa9\xc8\xed\x39\x07\xcf\x1f\x8d\x22\x83\x92\x1a\x88\x27\x4e\x20\x84\xe6\x9b\xb1\x6a\xc2\xfa\xe1\xd8\x71\xb6\x9c\xc7\xbb\x5b\x59\x69\xa7\x45\xf3\xad\x0a\x76\xcb\xbe\x52\x94\x04\xb3\x64\x88\xed\x02\xb1\xdd\x7f\xbc\x0d\x11\x9c\x33\xe4\xcc\x52\xcb\xb9\x7e\x27\x94\x58\x10\xff\xee\xea\x28\x0e\xb5\x89\x83\x4f\xae\xfa\xa3\x6c\xda\x6d\xf0\x4f\x2a\x2c\xdb\xca\x8d\xdc\xd9\x51\x14\x5e\xe7\xed\xc0\x0f\x8c\x9f\xcf\xaa\x60\x7d\x1b\x95\xdd\xe5\xc1\x1c\xac\xf2\x2e\xc6\xc8\xe6\x31\xca\x31\x12\x6e\x53\x87\x83\x38\x5e\x55\xb7\x73\x49\x87\x7c\x90\x1a\x3f\x37\xb6\xbb\x5d\xb4\x18\xca\xe1\x15\xd0\x8f\x73\x33\x7e\x25\x5e\x23\x06\x62\x5a\x5a\xe3\x2f\x74\x94\x83\x80\x52\x02\x4c\xde\xf5\xb1\x6a\x6a\xdb\xad\x9a\xe3\xc3\x38\x2b\x52\x93\x4e\xeb\xc8\xea\x14\x32\x03\x3a\x6f\xc7\xd7\xaa\x4f\xfc\x94\x6a\xb1\x1c\x9a\x7c\x90\xf4\x00\xc7\xb1\x38\xda\x05\x89\xc2\xdf\xb6\xf9\xae\xcc\xcf\x4d\x14\x85\xb9\x41\x5b\x01\xc7\xfe\x63\x25\xf4\x0b\xd5\x0a\x9c\x53\xbb\x3a\xae\x3b\x03\xb1\x0e\x1c\x08\xb7\x96\xa3\xa4\xdb\x5d\x93\x72\x14\xaa\xf1\x9c\x96\xe0\x1b\x85\x13\x5e\x0e\x83\x65\x6c\x75\xf1\x9f\x5b\xfb\xf7\x6f\xde\x51\x65\x8e\x8d\x26\x9a\xcd\x30\x7e\xb5\x08\x53\xbb\x31\x85\x94\xcd\xc5\xe9\xda\x95\x4b\xcd\x2b\x49\x08\xd0\xb2\xf0\xb4\x94\x7f\xc8\xd7\x6a\x21\x45\xc3\x96\x73\xd8\xd8\x1e\x48\xa0\xe3\xe6\xf6\xd7\x9e\x7b\xa1\xe5\xb4\xfc\x79\x93\x8a\x15\xdb\x6d\xdd\xa1\x34\x1f\xf8\x53\xee\x4c\x54\x4c\x43\x13\xd6\x30\xc3\x8a\xab\x67\x6c\xf7\xef\x27\x6d\x76\x7a\x16\x04\x12\x57\x54\x7f\xca\x15\x25\xb3\xde\x1b\x05\xd3\xe5\x59\xa4\x4a\xf0\x07\x2b\xb0\x05\x29\xc7\x2b\x12\x88\x8d\x5a\x5e\x62\xfe\x50\xbb\x18\xae\x2a\xed\x5c\xa6\xe0\xe3\x1b\xd5\xef\xde\x37\x66\x59\x0a\x33\x88\x1a\xaf\x7b\x2a\xde\xf9\x18\x9f\x93\x3e\x56\x97\xb7\xf4\x23\xff\x59\x85\x0a\x66\xbb\xcb\x37\x4a\x3d\x49\x3b\x4d\x68\x44\x83\x4d\xf8\x0e\x45\x07\x7c\xdd\xc0\x8b\x78\x10\xbd\xd6\x5a\x58\x0a\xf0\x0e\xbe\x56\xe8\xa0\xd4\xc4\xfd\x7c\xc0\xf1\x0e\x8e\x65\x38\x7a\x7c\x3d\x76\x38\x87\x9e\x19\xfa\x71\xcf\xf4\xa6\xdc\x93\xbf\xe3\x94\xb8\x7f\xe5\x0e\x3c\x7a\x46\xce\x7b\x5b\x8f\xf6\xe7\x17\x2c\xb5\x3d\x55\x71\x6d\xd6\xe7\xa2\xa7\x3d\x31\x85\x9d\x4b\x56\x4c\xb6\xcb\xb5\x34\xf3\x74\x22\xc9\x77\x9b\x76\x1a\x8b\x0c\xb1\x23\x2d\x32\xd5\x0a\x4c\x7a\x04\x31\x0a\x7f\x81\xa7\xf8\xb2\x59\x82\x1c\xde\xc0\x65\x05\xcb\xbb\x44\xb5\x09\xab\x53\xad\xb4\x8f\x1a\xd8\x4a\xba\xa9\xe1\x0e\x64\xc7\x45\x70\x46\x73\x11\x9c\x51\xe7\x78\x66\x46\xf9\xb3\x84\x36\xc6\x5a\xe1\xa3\x0f\xa7\xc1\xa7\x9e\x2a\xa4\x9f\xf6\xb4\x28\x05\xc0\xf0\x42\x32\xb3\xd5\xdd\x59\x9c\x6b\x0f\x4d\x30\xf0\xe3\xf0\x75\x49\x09\xe2\x00\x3f\xa9\x98\x30\x19\xaa\x0f\xcb\xf4\x6e\xcd\xed\x2a\xdd\x84\x5e\x98\x05\xc9\x8a\x49\xf1\x25\x2f\x39\x2c\xc6\x96\xd2\xd5\x3c\x5b\xad\x4b\xb5\xe6\xe7\xfd\xfb\x17\x4b\xdb\x19\x66\x4b\x7e\x90\x0b\xa4\x52\xc8\xb7\x9c\x67\xbc\xae\x97\x54\x98\x8d\x8a\x1c\x71\xc6\x81\x4d\x12\xc0\xd8\xfc\x40\x49\x14\x87\x71\x96\x87\x39\xfd\x85\x43\x8d\xf2\x50\x89\xb6\xd7\xe7\x11\xeb\x87\x51\x14\xc6\x49\x98\xa1\x5d\x84\x3d\x52\x45\x3c\x70\x42\xb3\x83\xdd\xf6\xb6\xe2\x58\x20\x8e\x69\xc9\x34\xca\x51\x10\x32\x8d\x5a\x60\x72\xa0\xa2\xf8\xdb\x64\x7d\x1b\x12\xab\x91\xa1\x44\x3c\x1e\xcf\x0a\x6b\x5b\x88\xf3\x75\x25\x61\x7a\xaf\xb6\x9b\xe4\x25\xd7\x8c\x9f\x46\x6b\xe4\x2e\x58\x11\x71\x2b\xdc\xf7\x0e\xde\x10\xab\xed\xe8\xd8\x41\x54\xef\xa8\xf6\xe5\xdc\x7f\x6d\xe4\xaf\x95\x9e\x72\xf9\xec\x4c\x75\xa5\xf0\xba\xda\x13\x0d\x52\x7f\x09\x19\x37\x89\x37\x74\x20\xe2\xb2\x2d\x45\x1c\xae\x98\x34\xe3\xda\x92\x90\x3b\x2b\xa7\xe4\xbc\x02\x44\x45\x45\x1a\x0c\x30\x0a\xf8\x45\xb4\xc3\xe2\x2c\x87\x36\x95\x38\x29\x4a\x9c\x04\x52\xe8\x26\x9d\xd2\xc2\x61\xa7\x94\x47\x76\x55\x47\x09\x9b\x4d\xfc\xd7\x7d\x52\x53\x9a\x6a\x59\x41\x93\x9f\x8c\x5d\xdb\xc5\x05\x55\x75\xbd\xd6\x24\x7b\x46\xd0\x25\x65\x0a\x4f\xeb\x6e\x1d\x34\x4d\x22\xa1\x71\xb6\x19\x63\x55\xc4\x7d\x70\xf7\x49\xea\x99\xab\xc4\xb2\xe2\x1c\x5e\xe3\x6d\x45\x0d\x76\x11\xca\x14\x7c\xf4\xf6\x93\xdd\x14\xc7\x21\x16\xb9\x4c\xb1\x88\xc4\xfc\xf4\xf6\x70\xfb\x3e\xf5\x5c\x03\xe0\x29\x36\x96\xc8\x25\x40\x25\x47\xf4\x65\x55\xac\x7c\x15\x79\x49\xc4\xe8\xdc\x88\xc4\x72\xba\x9e\x83\x3a\x9c\x42\x48\x88\x9f\x24\xb1\x80\xcd\x6b\xf4\xb0\xf2\x10\x92\xaa\xec\x25\xb1\xd3\x8d\x40\xd4\x88\x3e\x2b\xac\x1d\x0e\x49\x00\x14\x7b\x4f\xe1\x49\xfc\xc0\xef\x99\x61\xe8\xb7\x14\xd0\xf9\xac\x8a\x37\xce\x2a\x20\x46\xcf\xc4\x71\x98\x11\x48\x05\x71\xe2\x09\xcf\xa9\x93\x9d\xb0\xde\xdd\x28\xc9\x4d\x9c\x87\x0c\xd8\x15\xb2\xf1\xaa\x78\xb4\x55\x27\x1d\x7b\x2e\x23\x74\xab\xa9\x18\x23\xa9\x3c\x8e\xcf\x30\x93\xa7\xf0\x3a\x4a\x36\xea\x25\x4b\xe3\xb4\x47\xf1\x37\xa6\x81\x30\x0b\x4b\x03\x8e\x8a\x08\xce\xa8\x4e\xf2\x13\x4d\x09\x70\x3f\xcf\xcd\x70\x04\xaf\x12\x3f\x75\x5f\x31\x85\xdf\x6f\xe4\xac\xfd\xff\x40\x83\xb1\x7f\x7f\x3b\x2b\xd2\x15\xb3\xc6\xaf\x68\xf9\xa8\xec\x4f\xc1\xf7\x66\x82\x81\x86\x9a\x4b\x96\x87\x4b\x91\xd4\x6c\xb0\xa3\xb8\xf3\x19\xee\x08\x8c\x32\x4e\xe2\x93\x5b\x1b\xbc\xe6\x0f\xb5\x0f\xcf\xbd\xf4\xa4\x93\x5c\x6b\xa1\xb9\x07\x7f\x7e\x14\x6b\x16\x21\xdc\x59\xa4\x71\x58\xe8\x05\x4b\x93\x65\x71\x3d\x05\x6c\xfa\x50\x43\xd6\x24\x09\x87\x05\x7b\x57\x77\x4a\xbe\x41\x35\x5f\xe1\x5d\x2e\x57\x35\x3c\x07\xa6\xaf\xc7\xd6\xfa\x73\xe4\x94\x84\x01\xaf\x65\xe3\x7f\x80\xdc\x70\xea\x40\x18\x80\xe5\x41\x50\xea\xc1\x57\x9d\xc0\xb9\xc2\xca\xc4\x34\x0c\x08\x53\xd7\xc9\x09\x11\xc5\x55\x41\xb6\xe5\x04\x69\xee\x25\xab\x70\xde\xb9\x55\x48\x85\x94\xe7\xd4\xd1\x1a\x0e\x47\x49\x26\xeb\x0b\x11\x23\x03\x6e\x30\x40\xac\xd0\x25\x0f\xd2\xd0\xbd\x96\x06\xff\xe4\x2b\xbf\xf4\x0b\xaa\xbb\x77\x43\x13\x1a\x6c\x58\xec\x14\x6b\xd9\x5a\xb7\x0e\x29\x13\x46\x2b\xf3\x4d\xd3\xb2\x1a\xfa\xe9\x6b\x04\x61\xb7\xec\x1e\x5c\xa7\x90\xec\xd1\x23\x16\xf8\x65\xe2\x1e\x27\xca\x6c\x0e\xa3\xfc\x43\x69\xd3\xaf\xe1\x3d\xe7\x2d\x5b\x9d\xd5\x30\x3d\xaf\x18\x6e\xcf\xdb\x21\x4d\xcd\x28\xc9\x32\x93\x49\x49\x50\x7a\x98\x5c\x15\xf1\x7b\xf6\x31\xb2\xbc\x58\x5a\xc2\x26\x10\x99\xdf\xd6\x82\xd3\x3e\x2e\x97\xa8\xe4\x67\x76\xdb\x19\x4b\xfb\x61\x4f\x09\x26\xac\x2b\x69\x94\x75\xcf\x31\x52\x07\xc9\xb0\x1b\x42\x8b\x04\x8d\xde\x96\xc1\xd4\x41\x2e\xd6\x6d\x34\x05\x65\x54\x3c\x31\xd3\x66\xc2\xe4\x08\x87\xa6\x3b\x28\x57\x93\xb8\x67\x10\x19\x3a\x92\xf4\xb7\x69\xa1\x8a\x66\x60\x3d\x9d\xbc\xd0\xee\xf9\xb9\xaf\x71\xac\xc8\x9d\x89\x46\x2d\x0d\xbe\xa8\x87\xd5\x67\xf6\x60\x3b\x0d\x57\x2c\x43\x97\xb0\x48\x28\xa5\xc4\x8f\x1b\x80\x5b\x07\xda\x81\x28\xb1\xbe\x64\xd1\xc9\x15\xdc\xb2\x58\xf0\xa4\x9b\x99\x74\xc5\x82\x6a\xb0\x43\xaf\xd1\x2b\xf1\x75\x0d\xbc\xba\x6f\xbe\x3d\xf4\x63\xbf\x6f\x2d\x5f\x93\x5b\xea\x06\x8d\x39\x46\xa2\x35\xaa\x14\x30\x07\xf1\x58\xb1\x61\x5f\xf1\x74\xea\xc7\xc5\xc2\x03\xd3\xdb\x53\x3e\x87\x45\xe6\x96\x53\x29\xb0\x00\x85\xd2\xdb\x3e\x71\x4d\x9d\x37\x11\x37\x59\x1e\x6f\xc7\xfd\xf3\x08\xa1\xab\xb0\x77\x67\x08\x30\x00\x50\x02\x60\xbd\x94\x7e\xf8\x8d\xbf\x37\x71\xfd\x4e\x4f\xfd\x7c\x47\xf1\x34\x3d\x50\x66\x75\xa6\xe3\x18\xde\xbf\xfa\x73\x1d\x32\x41\x16\xc0\xeb\x14\xf4\x1e\x9b\xb4\x2c\x09\x6d\x5d\xce\x83\x00\x3a\x79\xe4\xc7\x79\x18\x28\xcd\x52\x8e\xf8\x91\xa7\xbd\xcf\x91\x8b\x34\xa1\xba\xac\x43\xe4\x07\xcb\xc2\x1e\xd3\xd4\x49\xf0\x98\xc5\xe4\x2e\xe5\xb1\xb0\x0a\x70\xb9\x85\x46\x5b\x4a\x2f\xce\x1d\x1d\x85\x51\x94\xcd\x50\x84\xc7\xf8\x9d\xb1\x6a\xfe\x42\xf0\x26\xff\x50\x8e\x1e\x72\x70\x37\xa8\xc0\x84\xb1\x9f\xea\x38\x3f\x74\xd5\x84\x29\x62\x5b\xd1\xd8\x6f\x3d\xfd\x34\x1f\x3a\x3f\xf0\x5c\x29\xad\x8e\x5c\x12\x67\x7c\xa9\xa0\x3e\x00\xce\x52\xc1\x16\xb0\x5b\x08\x9c\x4a\xab\xe3\x8a\xba\xe7\xb5\x6a\x15\x75\x15\x59\x62\x8d\x20\x29\x52\xbf\x8f\x4a\x0d\xad\x0d\xec\xbb\x63\x60\x02\xe4\x1b\x95\x4e\x08\x92\x55\x50\x86\x63\x2c\xa7\x49\xcc\x8a\xaf\x27\x0d\x1d\x80\x07\xdb\x41\x94\x64\xa2\x80\x21\x2d\x1f\x15\x1c\xb2\x25\xd3\x2c\xbd\x5c\xaa\x51\x22\xbc\xb8\xbb\xc5\xcb\x55\xee\xaf\xdb\x11\x27\x35\x9b\xc5\x6d\x85\x0d\xfb\xe5\x5f\xfe\x0a\x8c\x0a\x22\xd4\xef\x8c\x5d\xde\xe9\x84\x42\xcd\x7e\x5a\x4b\xc9\xec\xdb\xd7\x4e\x43\xf0\xfd\xc0\x7b\xe4\x06\x20\xbe\x69\xea\x7b\xf0\xd3\x21\x1b\x13\x1c\x27\x2c\x2a\xcc\x37\x56\x7e\x21\x2b\xba\x79\x18\xb1\x27\xcf\x49\xda\xb1\x0a\x73\xef\xe9\xbc\xf0\x6c\xe7\x71\x0d\x8d\x0a\xb3\x3c\x5d\x9b\x52\xcd\xff\x4a\x04\xfb\xff\x52\xa8\xfc\xfb\xe7\x9b\xea\xb4\x7e\xef\x95\x22\xcb\x6d\x39\xce\x62\x18\x1c\x9e\xa1\x66\xc6\x64\xa1\xbd\xba\x02\x01\x26\x61\x6b\xa1\x9f\x12\x91\x29\x87\xd7\x64\x7f\x61\xda\x51\xb6\xfe\x99\xa2\x6c\xfd\x33\x4f\x15\x7e\x4f\xe9\x74\x5c\x2d\x03\xf7\xf2\xcb\xed\xa1\x8f\x6a\xc5\xc2\x26\xe0\x45\x9b\x1f\x34\x11\x8a\x2e\x71\x48\x65\xd3\xfb\xe8\x4a\xd4\xf9\x72\x16\xb2\x69\xe0\x30\x7d\xa9\x3d\xf2\xd3\x65\x39\xd7\xa4\x03\xa8\xa5\x48\xcc\xb7\xfe\xe2\xd3\x4f\xb7\x93\xa5\x25\x9b\x7f\x81\xe1\xba\xea\xa9\x9a\xc1\xd5\x4a\x97\xc5\x5a\x6e\x80\x63\x83\xb3\x0a\x32\x14\x44\x42\x60\xdd\x92\x0e\x30\x57\x1f\xbd\xaf\xf0\x53\x96\x15\x4a\xc7\xec\x78\x2b\x64\x6b\xbf\x4f\x1b\x02\x8b\xfb\x6c\x2d\x5c\x20\x01\xcf\x20\x37\x69\xc8\x4d\x7e\xcc\xfd\xa2\xc4\x3e\xce\x37\xa6\x66\xfc\xa5\xa5\x30\x82\x24\x24\xbd\x27\xf2\x17\xac\xe8\xc6\x37\x0d\xad\x17\x0b\xed\x2c\x59\x09\x59\x1a\x07\x0f\xf8\x96\x2e\x40\xbf\xa5\xac\x73\xd7\xef\x86\x92\xbf\xb0\x32\xe8\xe5\xe1\x25\xc7\x92\x4b\xb2\x3e\x1d\x45\x3b\x55\x1b\xd5\x23\x1d\x67\x66\xaf\x8e\x35\xa4\x0f\xf3\x00\xf4\x17\x67\xf6\xe1\x33\x1c\x53\x35\xdf\x1d\x13\xb7\x40\xd0\x1e\x29\x90\x15\x89\x1d\xbb\x45\xb2\xe6\xf3\x26\x11\x02\xc3\x96\xe5\x7a\x3c\xa3\x58\x29\xd3\x22\xcb\x42\x3f\x86\x89\x11\x90\x82\xda\x27\x4a\xdf\xe3\xbf\xd4\xd6\xd2\xd7\x49\x7a\x93\x10\x22\xb6\x15\x10\x30\x6c\xbe\x56\x88\xa2\x51\x38\x32\x2c\x14\x0a\x2b\x7f\x19\xe6\x88\x6f\x1a\xcb\x70\x41\x12\x25\xe9\x74\x45\xde\x10\xe7\x04\x42\xe0\xdf\x1f\xab\xea\xba\xa7\xfa\x2e\x7f\xdf\x7b\xc4\x95\x41\x56\x98\xa6\x49\x6a\x6a\xf4\x08\x38\x5b\xee\x54\x24\x52\xd4\x21\x09\x4b\xef\x20\x72\x8c\x91\xe1\x1b\xa5\x56\xb8\x14\x99\x20\x37\xbd\x69\x25\x28\xf6\x3b\xf8\x05\x20\x3a\xbf\xa5\x24\x40\xce\x68\xf8\x5a\x55\x4e\x28\x37\xd1\x4c\x19\xbd\xc0\xd2\x72\x6e\xdf\x82\x98\x2d\xce\x03\x05\x41\xcc\xc6\x4e\x9a\x78\xe0\x9b\xa6\x26\x8f\x59\xdc\x71\x54\x0c\xbb\x45\xa6\x5a\x94\x98\xba\x92\x6f\xac\x67\xee\xaf\xf8\x21\x72\x4d\x36\x83\x6d\xbb\xc1\xea\xca\x0c\xcf\x2f\xb4\x03\x7f\xd8\x4d\x43\xbf\x55\xd9\xc7\xf4\xd5\xa2\x08\xbd\x57\xa1\x3f\xb2\x9c\x94\x22\x14\xbf\xe0\x55\x4f\xb3\xc2\x36\x74\xd9\x1f\x6c\x8f\x92\xd0\x11\x59\xc1\x2f\x3f\xa7\x9d\x74\xdd\xdb\x98\xf9\xc3\xc2\x44\x8a\x9e\xf6\x98\x6a\x08\x3d\xa6\x17\x5e\xe4\xe7\x5c\x34\x16\x72\x22\x45\xf3\x7b\xbe\x16\xf3\xcb\x81\xd1\x33\x51\xee\x53\xc2\x03\x49\x1c\x24\x17\x2c\x91\xad\xf5\xe5\xfe\x50\x6b\x92\xdd\xad\xa5\xbd\x0e\xcf\xb5\xf3\x22\x96\x97\x92\x3d\xa2\x0a\xb8\x47\xac\x1b\xd7\x37\xb1\x49\xfd\x1c\x9a\x9d\x38\xd6\xaf\x8d\x5d\xdb\xd3\x71\x4f\xe9\x60\xd6\xf1\x7d\x8b\x73\xed\xa5\x24\x5d\x32\x21\x53\xd9\xc0\xd4\x80\xc8\x8a\xaf\x15\xbb\xda\xaa\x9f\x9b\x94\xca\xdc\x2d\x27\xf2\xf8\x89\xa7\xc4\x8a\x5c\x5d\xba\x2f\xcc\x84\xb6\x6e\xeb\x02\xc9\x3a\xef\xf9\xe1\xb9\xf9\x76\xe0\x17\xfd\x41\x3e\xe5\xc2\x3b\x0e\xca\xd0\x68\x75\x59\x39\xb1\x3f\xa8\xb5\xf1\x38\x91\xd7\x72\x21\xdb\x08\x59\xc4\xcb\x95\x6e\xc2\xc9\x06\x6e\xd4\x05\x68\xdf\x85\x01\x0a\x39\xd8\xdb\xad\x89\xdb\xe7\xad\x8e\xa3\x5c\x18\x26\xa9\x3f\xe5\xf2\x0c\x5c\x2d\xb1\x62\x0f\xe5\x42\x17\xfa\xd8\x06\x6f\x69\x2d\x29\xd2\x56\xa5\x9e\xec\x1c\xde\xf3\x8e\x75\x26\x89\x63\x13\x20\x48\x75\xf5\xcb\x73\xaa\xf1\xbc\x5e\x25\x79\x7e\xa1\x9d\x27\xa3\x7e\x5a\xfa\x0f\xae\x25\x06\x20\x44\xbe\xfe\xdc\x65\xbb\x6c\x84\x6e\x03\x07\xc7\x35\x7d\x8a\x5c\xab\xd2\xa6\xa6\xf9\x5e\xd8\x53\x05\x3c\x94\xfe\xea\x4f\x55\xef\xc9\x39\x95\xa0\x3c\x4e\xa1\x00\x70\xec\x15\xd8\xf7\x2c\x74\xae\x2d\x63\x69\x39\x30\x92\x3a\xa8\x52\xfe\xef\x9b\x77\x1d\xba\xa5\xab\x0e\xb7\xe7\x24\x45\xa3\x70\x1a\xaf\x28\xcf\x78\x1b\x38\x0f\xf9\x8f\x34\xf6\xec\xaf\x70\x74\x22\x0b\x77\x45\x81\x3a\xbe\x8d\x89\x84\x5d\xba\xeb\x3d\x14\xb6\x47\xa9\x59\xfa\x47\xed\x67\x67\xca\x67\x47\xde\xe7\xbb\x63\xd7\x2e\x74\x1e\x25\x2f\x3c\xe0\xa5\x0a\x6c\xa6\x7c\x58\xbe\xf6\xb6\xae\xd4\x72\xa5\x13\xf7\x7e\xd1\xcd\x82\x34\xec\x1a\xa0\x6f\x84\x4f\x42\x1d\x03\xe8\x5b\x10\x4f\xdd\x95\xd7\xfd\xf8\xb5\x30\x29\xb2\x16\x05\x97\xc2\x57\x44\x3e\x84\x10\x19\x6d\x8d\x9b\xf6\xef\x2f\xdf\x25\x4d\xfa\x3e\xcb\xd5\xaa\x9e\x36\xd5\x10\xb1\xde\xcc\x8c\xb8\x4a\x45\x51\xc7\x74\x78\x51\x79\x6d\x9a\x94\x3c\x19\xe5\x5c\xcc\x41\xb4\x80\xe2\x29\x5f\x7f\xae\x2c\xf3\x2b\xc6\x8f\x4d\x9e\x1b\x45\xdd\xff\x96\x66\xc4\x7b\x4b\x55\xa9\xd6\x92\x22\xee\xd3\x21\x31\x45\x6b\x40\x6b\xf3\xd9\x86\xdd\x72\xde\xb9\x92\x58\x0b\x6f\x08\xd8\xb5\x36\xa5\x54\x64\x37\x94\x02\x2a\x53\xa1\xa2\x1f\xe2\xa6\xa3\xfa\x1d\xf8\x19\x9a\xfa\xb0\x36\x2e\x2b\xf5\xfe\x77\xb4\x69\x39\xab\xb2\x82\xaf\xf8\x41\xd2\xcd\x92\x78\x5a\x61\xb9\xce\x29\xbd\xf0\x75\x55\x8c\x5d\x1f\x3b\xec\x79\x7d\x5f\x1f\x78\xe1\x60\x3b\xcc\x86\x7e\x18\x85\xb4\xaf\x05\x8e\xa5\xb1\x59\x95\xa6\x34\x46\x28\x3c\xe2\xda\x03\xde\xd7\xe7\xe1\x06\x75\x80\xe0\x74\x00\xb5\x1f\x3c\x5b\x76\x86\xe0\xe4\xa0\x4f\x9f\x95\x5f\x71\xf4\xe1\xe0\xd9\xd6\x21\x4c\xa1\x68\xc2\x2a\xf1\x36\x6e\xb0\xe5\x1f\x01\x90\x92\xbf\x59\xc5\x23\xdb\x27\x0e\xd0\x98\x24\x4b\x33\xaa\xe0\x71\x5e\xa9\x08\xb7\x14\xb7\x2a\x23\xf8\xe1\xb2\xbd\x8b\xed\x2b\x72\x3a\x75\x61\xf7\x97\x08\xa5\x14\x06\xc2\xb0\xae\xc8\x8b\x2c\x4e\xec\xa2\xf6\x65\x93\x60\x39\x14\x27\x13\x99\xc8\xab\xb0\x50\x7c\xd3\xa4\x1e\xd5\x4d\xa2\x72\x19\x52\xd6\x0a\x39\xf1\xeb\x9e\xa2\x56\xd8\x18\xab\x64\xf5\x87\xd6\xf3\x5b\x35\x7e\x94\x0f\x42\x93\x4e\xbb\xe2\xe8\x79\xad\x02\x34\x43\x69\x0b\xac\xbf\xb3\xc4\x41\x24\x26\x6f\xeb\xee\xa1\x45\x11\xf7\xcc\xc8\xc4\x3d\x13\x07\xb0\xf8\x9a\x93\x86\xaf\x2b\xa6\x3b\x16\x98\x97\x78\x93\x2e\xab\xa0\x59\x76\x03\xe3\x67\x70\xce\x45\x1d\xb2\xfc\x3b\x51\x9d\x54\x42\xfe\xf1\xc0\x8f\x03\xae\x29\xf3\x69\x70\x56\xf5\x6c\x9e\xf5\x1e\x57\x2a\xd4\x7e\x1c\x5b\x11\x38\x21\x66\x69\x39\x92\x16\x05\xf1\x84\x3e\x07\xa7\xa1\x05\x6f\xaf\x5c\xe9\xb3\x5a\xf7\xfe\xd9\x57\x9e\x85\xe7\x22\x2f\x8c\x8f\xc9\x50\xb8\xec\xc3\x70\x48\xea\x0a\xae\x54\xbe\xa5\xb1\xae\x81\x34\x61\x94\x26\x99\x09\x8a\x9c\xfb\x03\x99\x3e\xcf\x73\xb0\xcd\x6f\x36\xa4\xee\xda\x7e\x1a\x0c\xc2\xdc\x04\x4c\xb6\x21\xfd\x49\xce\x1d\xf9\x50\xd5\xa6\xd0\x55\x98\xed\xa6\x57\xc0\x71\xdb\x42\x6e\x91\x6f\x26\xb4\x3c\x84\xbf\x5c\x95\xf5\x66\x26\x4e\x52\xf6\x24\x59\x5a\x04\x0c\x0c\xcb\xe0\x64\x11\x55\xe6\xf8\x1f\x3c\x85\x79\xdd\xd6\x71\x45\x39\xf4\xed\x22\x8c\xdb\xd3\x71\x45\x47\x3e\x43\x11\x26\xd6\x53\xbd\x87\xe7\x9e\x6b\x67\x83\x64\xc5\xce\x2a\x72\xb1\xa7\x55\x8f\xe6\x69\x95\xb1\x8d\x97\xd7\x66\x14\xdf\xc7\x5b\x4a\x36\xf7\x53\x25\xf4\x79\x89\x9a\x73\x71\x88\xb3\xb6\x87\xa4\xf4\x9e\x70\x00\x8f\x20\x34\x71\x1e\x66\x79\x36\xeb\x12\x96\x0f\xb4\x0a\x0b\xb0\x92\xdc\x0b\x88\x89\xc6\x7e\x63\x50\x29\xaa\x31\xac\x39\x01\x3c\xee\x09\xea\xe9\x90\x1e\xf4\x06\x66\x8b\x28\x89\xfb\x02\x74\x95\xfc\x3f\x8d\x90\x54\x06\x9c\xe4\xd4\x5a\x52\x3c\x41\xee\x0b\xf2\xcb\x9b\x4a\x48\xf9\xb1\x49\xe9\xb1\xc0\x18\x7e\x36\x56\x7a\x47\x3b\x26\x84\x6a\xc5\x5f\x7d\xe6\x55\x16\xaa\x4b\xbf\xb3\xce\x98\x75\x1e\x6d\x7c\xff\x48\xc7\x35\x29\xdf\xa2\x8c\xaa\xd0\x2b\xa8\xd2\xd7\x03\x5a\x0f\x22\x42\x5d\xba\x29\xc0\x4d\x5c\x82\xc5\x83\x55\x9f\xc1\x9a\x83\x87\x34\xdb\x51\x8e\xd4\xcc\x44\x9d\x66\xb7\x14\x1a\x39\xaf\x04\xa6\xa6\x4f\x20\x51\xe1\x4c\x3f\x4d\x4e\xa1\xc4\x58\xce\xe1\xba\xa6\x30\x4d\x67\xe8\xcb\xb0\x6b\xa1\xd6\x82\x34\xf7\x4c\x47\x4d\xea\x59\x5b\x97\xf1\xbb\x59\x92\x76\xa7\xdc\xf7\x9e\x53\xb8\xe1\x33\x63\x87\x92\xbb\xed\x42\xd7\xbe\x1f\xc6\x3b\xe8\xf9\x2d\xd1\xf4\xa2\x60\x08\x79\xcf\x59\xa4\xb7\xf3\xb9\x8f\xb1\x41\xb1\x62\xf8\x0b\xc2\xa2\xf5\xa9\x4d\x9c\x2c\x19\xd2\x2e\x9e\x52\x90\x40\x68\x54\x49\xb9\xb4\x65\x55\x29\xea\xad\x72\x0b\x0b\xed\x34\x01\x34\xc7\x55\x3b\x37\xbc\x0a\xca\xd5\xc5\xc8\xe6\xb5\x91\x1f\x67\x61\x12\xcf\x96\x0f\x0f\xa7\xf4\x0f\xe8\xfb\xb1\x97\x21\x9c\x82\x71\x84\x6c\x14\x56\xc4\x79\xad\xd6\x70\x8a\x60\x0a\x28\xec\x4b\x5d\x56\x4a\xf2\x0d\x8c\xee\xfd\xd4\x98\x78\x90\x14\x99\xa1\x73\x0b\x4b\xfa\x8a\xa2\xe9\xfe\x36\xb6\x91\xee\xf9\x92\x75\xff\x98\x02\x85\x46\x11\x47\x65\x88\xee\xde\xd1\x18\xd4\x77\x54\xf2\xc5\xa4\x7e\xcb\x9d\xfe\x9c\x2e\x10\x99\x17\x77\x4c\x2d\x25\x69\x1f\xc7\x94\x75\x1f\x16\xed\x75\xcd\x8b\xda\xb7\xaf\x3c\x2f\xc3\x80\xc3\x7a\x87\x8f\x29\xbf\x40\x80\x33\x8d\x72\x36\xd9\x16\x1d\x76\x5b\x56\xbc\xd8\x24\x5c\x3a\x8a\x7c\xf4\x31\x08\xee\x83\x7e\x8c\x6f\x54\x1e\xb0\x67\xfc\xc8\xa4\x2d\x05\x4b\x61\x89\x53\xd1\x58\x73\xe7\x61\x16\x24\x29\xfa\x82\x95\x80\x90\x4d\x5e\xcf\x76\x9c\x13\x72\x15\x13\x21\x3c\x40\xb2\x3e\xa3\xb0\x34\x5c\x9c\xd3\xc4\xcc\x5c\xf3\x54\xef\xee\xb5\x46\x2c\x42\x9e\x0c\xfd\x60\x80\x55\x69\x5d\x12\xdb\x02\x7e\x56\x81\x47\x96\x22\xf3\x1a\x24\x3b\x6d\x62\xe8\x84\xa7\x54\x96\x4f\xd8\xa4\xc0\xaa\x1f\xe7\x0f\x97\xab\x52\xbc\x89\xf2\xd9\x69\x73\x2f\xee\xe9\x58\x72\x80\x7f\xf2\xf8\xa4\x74\x51\xad\xce\x75\x19\xda\x20\x7f\x75\x12\x3e\xa6\x1d\x85\xc5\x39\x0b\xfe\x28\x7f\x1b\xa3\x30\x3d\x51\x8a\x06\x6c\xb2\x68\x44\x9e\xfd\x72\xe7\x11\xc5\x18\xc8\xd9\x95\x26\xc2\x58\x77\x6c\xcd\x3f\xf7\xeb\xb4\x18\x11\x8c\x70\x47\x3b\xdf\xa8\xca\x50\x3e\xf0\xe3\x2f\xd2\x50\x01\xf8\x85\x36\x6b\xec\x3d\xee\xe2\x86\x0d\x63\x35\x67\x04\x5c\x00\x77\xe0\x3d\x67\xc1\x9f\xcd\x6c\xcb\x8a\x3e\xe3\x3f\x79\x8e\x06\xf3\x51\x98\x66\xc9\x27\xa9\xf2\xc9\x39\x25\x71\xf5\xc6\x58\xf5\x62\x4b\xf6\xd3\xb2\x0f\x96\x87\x8c\x6d\x9a\x2e\x6d\xbb\x55\x0c\x78\x7e\xc1\xaa\x5c\xd0\x98\x63\x29\xde\xc0\x12\xd6\x20\x72\x1b\xb6\xd8\x34\xd3\xc3\x08\x0b\x60\x80\x4f\xd0\xc9\x02\x8b\x32\x35\x69\x7d\x7d\x5e\x1a\x6e\x15\xc2\x6d\xe4\xa7\xf9\xda\x43\xca\x1c\x5f\xa7\xd9\x14\x74\x6a\x39\x2e\x80\xe4\xcc\xe0\x00\x12\xa6\x08\x7a\x7f\x61\x85\x52\xcd\x07\xd7\x68\x23\x63\x60\xde\xa3\x87\x14\x95\x71\xd5\xae\x70\xad\xa9\xa3\xeb\xd5\x22\xcc\xc1\x52\x21\xb8\x68\x07\x14\xe2\x78\x5c\x28\x55\x1a\x00\xd3\xab\x26\x8a\x28\xe6\xc5\x4f\x7f\xaa\xf2\x7d\x9f\x36\x09\xa9\x13\x0d\xdb\x40\x65\x5a\x4f\x50\x6a\x83\xaf\x55\xf6\x7f\xc9\x7f\x0d\x7b\xcf\xb6\xb9\xd8\xa4\xe5\x86\x5a\x9f\xbf\xf4\xec\x2f\xe2\xcf\xb0\x40\xde\xa0\xa1\xe7\x6b\x55\x10\xec\x86\x84\x32\x10\xae\x44\xe9\x44\x92\x4c\x46\xcb\x32\x53\x9c\x57\xdf\x3d\xfa\xc5\x7f\x3c\x5b\x7e\x9d\x65\x70\xb4\x47\xda\x65\xd5\x35\xc9\x4d\x18\x38\x14\x41\xd9\x6f\xaf\xad\x3d\x68\x75\x14\xff\xf1\x4f\x9a\xb8\x38\xfc\x38\x0f\xf3\xb4\xc8\xa8\x8a\xb2\x49\xd0\xe8\xcd\x33\x63\xe7\xf3\x0d\xc3\x2c\x48\xe2\x5e\xc1\x5d\x85\xf0\x88\x4f\xc3\xe0\x49\xce\x46\x69\xfd\x5c\x54\x6d\x7e\x81\x9f\x0d\x58\xc4\x04\x2b\xe7\x7b\x63\xc5\x34\xe6\x70\x27\x71\x38\x60\x9d\x72\xa9\x64\xba\xfe\xb7\xdf\xda\x8a\xaa\xb4\xa4\x10\x03\xb3\x84\x74\xa8\xad\xf3\x97\x91\xaf\xa4\x47\x76\x2b\x3e\xba\xa8\xf7\x30\x86\x1d\x7e\xdd\xfb\x4a\x08\xef\x1e\x3c\x49\x4b\x5e\x6a\x35\x53\xef\x20\xde\x45\x54\x7c\x12\xe6\x07\x9b\x74\x27\xed\x2c\x1b\xa2\x59\xb1\xcb\xb3\x78\x00\xfe\xb8\x22\x06\x68\xea\x8e\x6b\x07\x91\x1f\x5a\x88\x0b\x62\x0e\xb6\x2b\x7c\xa3\x4e\xdc\xd5\x41\x12\x99\x87\xcb\x31\xb1\xa9\x4f\xe7\x28\x72\xca\xd0\x36\x27\xda\x0a\xf2\x65\x5a\x12\xd8\x8d\xd7\x30\x45\xe2\x70\xd3\x8f\xc2\xb2\xb3\x4c\x2e\x8c\xe4\x75\x52\x02\xd8\x0e\x8b\xc8\xff\xde\x18\x7f\x2c\xfb\xa9\x9f\x2c\x83\x49\x8a\x09\x7d\xb0\x1a\x71\x2a\xc0\x5a\x01\x8f\x79\xa5\xd6\x88\xf6\xf2\xcb\x6d\x3f\x35\x04\x4b\x85\x73\xb6\xae\x9b\x0e\x21\x05\x00\x54\xd5\xd1\x26\xce\xa4\xcc\xac\x98\x14\x81\x37\x6a\x38\x17\x68\xac\xf9\xba\x02\xe7\x0f\x88\x4b\x61\x5a\x89\xf9\xad\xc3\xf4\x62\x84\x50\xbb\x15\x5e\x7b\x1a\x53\xfe\x07\xe5\x05\xbc\x62\x56\x49\x7e\xf1\xf0\x9c\x33\xbf\x8b\xd2\xb8\x0f\x06\x34\x91\xb5\xaf\x90\xb5\x16\x43\xea\xd4\x00\x16\x02\x7d\xbe\x7c\x3d\x51\x68\x42\x4d\xcd\xa0\xc1\x6d\x23\x7f\x0d\xda\xa6\x4a\x42\x79\x86\x60\x0f\xb2\x3c\x68\x0e\xe1\x1d\xdf\xa5\x99\x46\x5b\xf0\x3d\xd7\xe5\x43\x80\x94\x98\xf3\x9c\xc8\xb4\xdd\xf1\x54\x48\xc6\xa0\x6f\x2c\xf1\xba\x20\xc1\xfe\xfd\x82\x4e\x0d\xb4\x33\xf2\x96\x52\x44\x78\xab\x51\xbd\x30\x18\x84\x66\x49\xba\x46\x6c\xdb\x94\xe5\x32\x61\x5c\x08\xf2\xd0\xdf\xa8\x15\x91\x5f\x7e\xb9\x4d\x5d\xff\xe5\xd4\x4d\xb9\x72\xe9\x31\xdd\xba\x77\xb3\x42\x68\xd4\xa8\xdc\x11\x25\x71\xe8\x47\x53\xaa\xef\x66\x5d\x61\xb9\xaf\xaa\xa6\xe0\x6d\x13\x8b\x95\x2b\xb2\x3c\x54\x54\xac\x36\x5d\x63\x3d\x14\xad\xb0\xd9\x03\x49\x23\x8d\xae\x38\xb2\xae\x3c\xf1\x4e\x45\xe4\xca\x2d\xa7\x60\xb0\x96\x26\x71\x4b\x75\x76\x1d\x57\x9d\x5d\xc7\x2b\xd0\xe0\xa0\x48\xfd\x00\x5e\x2d\x3c\x9f\xa3\x9e\x4b\xd6\x6a\xa9\x9a\xb0\x57\x86\xe5\xcc\x75\x68\xd1\x37\xe5\x4c\xf3\x8d\x56\x2e\x36\xf1\x23\xb4\x21\xe0\xbf\x5c\x1b\xbb\xc4\xf1\xc9\x4a\xab\x2d\x06\x5c\x14\x1b\x5d\x47\xf9\x37\xaa\x70\xae\xf2\xa0\x42\x90\xf0\x8e\xe7\x16\x3c\xfb\xb9\xe2\x54\x5b\x4f\xee\x83\xbf\xa9\x5a\x23\xbf\x3f\x56\x0c\x9c\xdb\x26\x2e\xdf\x1c\x24\xc3\x91\x89\x40\xe4\x22\x8e\xea\xdb\x9f\x78\x4a\xfe\xe3\x93\x3a\x02\x6e\x5f\x3b\x30\x71\x96\x58\x1a\x27\xa0\xff\x8e\x61\xc5\xf3\x8d\xc5\x2d\x9a\xe1\x28\x4a\xd6\x08\x4b\x6d\x5b\x1a\x5d\xc9\x7f\x43\x65\xd0\x06\x7e\xdc\x1b\x98\xa8\x07\xd4\xa2\x75\xfa\x1c\xef\xac\xeb\x35\x2a\xba\xaf\x50\x81\xb9\xa5\xc8\x4f\xb7\x03\xbe\xc6\x37\x9d\xcf\x2b\x04\x75\xfd\x78\x19\x46\x46\x69\x8d\x88\x0f\x72\xcf\x53\xdc\xff\x57\x15\x37\xd6\x28\x35\xfd\xd8\x8f\x79\x8d\x08\x28\x9c\x5e\x44\x50\xe1\x96\x06\x38\x8c\x03\x93\xa2\x5a\x29\x3d\x12\x4e\xb4\xf5\x22\xe5\x60\xa4\xb0\x64\x3f\x13\xa4\xe1\x48\x88\xaa\x50\xc5\x39\xa1\xe4\x48\xb4\xd7\x14\x09\x0f\x00\xf6\xc9\xb6\x89\x3b\x7b\xee\xa8\x12\xcd\x07\x95\xbc\xe8\x6b\x61\x8c\xa6\x2f\x1c\xf5\x57\xc8\xb9\xe1\x6b\xef\x29\x85\x4a\x89\xf3\x34\xec\x16\x79\x98\xc4\xd3\x54\x7c\x41\x41\x4b\x53\xed\x41\xfa\x1c\x63\x77\x01\xc3\x85\xf3\xeb\x6e\x13\xf0\xb7\x6b\xcc\x08\x0d\x21\x07\x5c\xc7\xf1\x82\x63\xe0\x96\xec\xe5\xc0\x64\x21\x08\x19\xad\x0b\xf3\xbe\xa2\xbb\x79\xbf\xb1\x2e\x9e\x9a\x5e\x11\x08\x92\x45\x90\x7a\x34\x27\x02\xd5\xb3\x6c\x05\x69\x18\xf7\x6d\x02\x03\xa6\xed\xaa\xea\x84\x04\x7c\x47\x02\x00\x9d\xe9\x89\xfc\xb5\xdd\xa5\x17\x22\x48\x16\xd8\x5a\xc1\x48\x2b\x8c\x37\x8a\xa9\xd8\xc4\x37\xe8\xab\x51\xe3\xfa\x29\xcc\x83\x2d\xa6\x38\x5c\xf9\x15\x1a\x49\xbe\xc6\x2a\x14\x1c\x36\xad\x64\xe4\x2b\x39\xed\xce\xd2\x2d\xc8\x9a\x58\x80\xe7\x82\x95\x3b\x5d\xb7\x1b\x2e\x0b\x7c\xee\xbc\x9a\xb7\x0c\x20\xaa\xea\x88\x1a\x22\x4e\xfd\x9b\x9e\x66\x7f\x0b\x0c\xb5\xda\xb4\x2a\x75\x11\x5d\x0a\xd1\xe3\x12\x27\xf9\x53\xf4\x60\x96\xe8\xdf\x26\x3b\xef\xd0\xb1\x8d\xc7\x62\x65\x0d\x4b\x2b\x6e\x19\x4a\xae\x20\x00\xc3\x06\xf9\xa6\x57\xed\x85\xb6\x6e\x09\x14\x54\x60\xe8\x5a\x13\x95\xc1\xbb\xee\x51\xb7\x0a\x12\x32\x4f\x4e\x68\x54\x90\xf1\x9c\xea\xd4\x12\x30\x00\x5e\xfe\x14\xb3\x25\xb6\x84\x96\x37\x0c\xfc\x05\x0d\x58\x3c\x86\xd6\x7b\x66\x30\xf0\x54\x1b\xd6\x9f\x7b\xe5\x42\xc0\x3f\xec\xec\xb8\x60\xec\x8a\x02\xbe\xe4\x7e\x18\x51\xf1\xae\x7c\x20\x0c\xb8\x84\xa7\x98\xc1\x89\x3e\x93\xb5\xce\x7d\x38\x84\x6d\xd1\xd2\x0b\xc2\x5b\xec\x0e\xb5\xae\xe9\x33\x81\xc8\x81\x6a\x75\x1e\x8f\xf8\x5b\x9e\x2b\x4e\xd4\x21\x08\xe5\x71\x1d\x25\xfd\x3e\x1f\xa5\x98\x2d\x14\x88\x05\x48\xa3\x62\x98\xbf\x6e\x3a\xee\x93\x6e\x4e\xca\x7f\x30\xfc\x52\x91\x50\xe5\x18\x65\x33\xbb\xe5\xb1\x1d\x12\xde\xca\xf6\x45\x6d\x43\x35\x5c\xd2\xf2\xee\xf5\x7f\xee\x97\x7e\x79\xaa\x3c\xe0\x90\x78\x82\x17\xc7\x56\x4d\x03\x75\x8e\x28\xb7\xa0\x9b\x84\x96\x81\x0c\x5f\xf8\x1d\x72\x20\xf8\x5a\xe9\x15\x66\x45\xbf\x6f\xb2\x9c\xfb\xf7\xf0\x13\x7f\x38\x76\x00\xbb\xcb\x15\x7c\xaf\x36\x9c\x81\xc9\x9e\x72\xad\x3f\xbc\x4b\xe1\x6b\x70\x36\x1e\x2b\xf8\x6d\x55\x69\xfa\x0b\xac\x4d\xf8\x60\x27\xb0\xb4\xb1\xb6\x4e\x29\x1e\x08\x14\x26\x01\x93\x9c\x42\xd2\x03\x37\xdb\x3a\x8a\x45\xf5\xbc\xe7\x9a\x90\x2a\x99\x8d\x0b\x94\x00\x97\x34\x1d\xad\x07\xa1\x5e\xa6\xb5\x87\x6d\x72\x92\xb6\x22\xda\x1b\x77\xd0\x98\xc2\xa9\xfd\x73\xac\x78\xe6\xfd\xf6\x5c\xb8\xf9\x27\x30\x50\x78\xc4\xcb\xd8\x31\xd8\x57\x37\x1a\x98\x27\x0e\xb6\xb3\xdc\x0c\x91\x6d\x44\xd8\x7c\xdb\x73\x59\xaa\xdb\x63\x17\x1a\xfa\xbd\x5e\x36\xab\x38\x1b\xcf\xb0\x21\x95\x2d\x52\x7e\x0a\xe7\xcb\x1b\xb0\x39\xdc\x6d\x83\x48\x4f\xaa\x62\xee\x14\x7a\x63\xec\x20\x0b\xa7\x9a\xc0\x9c\xf9\x20\x4d\x56\x63\x8d\x2e\x82\x51\xe6\xeb\xcf\x55\x02\x36\x19\x08\x8f\x2a\x24\x3d\x17\x78\x0b\x0b\xa4\x59\xc9\x65\xde\x53\x5b\xf8\x85\xaf\xcf\xb5\x14\xf2\xeb\xb4\xa7\xe0\x16\xa7\xc7\x95\x63\x36\x33\xaf\x16\x26\xce\x23\xec\x79\x24\xaa\xd1\x33\xc8\xd7\x4d\x6a\xb6\xb9\xf1\xa5\x53\xa1\xa9\xbe\xd9\x14\x21\xc4\xe5\xca\xcf\xa7\x74\x82\xec\x84\x62\x3b\xfc\x2b\xac\x61\x0e\x0e\x6b\xbf\xf9\xd5\xf6\x52\x12\x45\xc9\x2a\x3d\x24\xb3\x38\xd0\x4f\x0a\xa3\x83\x82\x93\xf9\xb9\x61\x45\xca\xc6\xb7\x6f\xc0\xf2\xa4\x66\xa9\xc8\x6c\x1b\x05\x86\x13\x52\x36\x7c\xad\x08\x01\x47\x69\x32\x4c\x58\x60\x89\x15\x10\xb4\x90\x34\x9c\x0a\xac\xed\x7b\x74\xac\x4a\xb1\x96\x36\x96\x68\x26\x28\x90\x6a\x91\xe5\xcc\x8b\x64\xc9\x4f\xac\x4e\xd4\x9d\x06\xe8\xec\xc1\x76\x90\x86\x79\x18\x90\x58\xac\xaa\xa9\xbd\x39\x56\xf1\xfe\x9b\x0a\x31\x9d\x26\x59\x16\xc6\x21\x16\x04\x2c\xd9\x3d\xaa\xfc\xf1\x75\x13\x27\x61\x9f\x88\x30\xb2\x9c\xcc\xb3\xa0\x37\x94\x00\xd5\x3d\x9c\x5a\x52\x31\x56\xa1\x46\x9e\x50\x9d\x10\x89\x80\x1b\x63\x95\xa7\xbd\x81\x29\x86\xff\xf1\x43\xda\xea\x12\x10\x62\x55\x48\x4c\xdd\xb2\x5a\xb6\xbb\x91\xca\x92\xec\xf4\xd6\x55\xf1\x4c\x7b\xd5\x8f\x96\x65\x18\x54\xb3\x89\xf3\x92\xdc\xba\x78\xb5\xf0\x97\xa1\xf3\x83\x53\xe5\x24\x76\x34\xdf\xa8\xcd\xf3\x2b\x0b\x07\x67\x68\xf9\x60\x03\x30\x81\x13\xa6\x97\x3b\x1f\x30\xbf\x7b\x3b\xba\xd7\x83\x5e\x8e\x72\x9f\x7f\x6b\xaf\x8a\x6b\xcc\x8a\x49\xd7\xf2\x41\x18\xf7\x77\x3a\xd3\x7e\x5a\x09\xf5\x4d\x4f\xc8\x48\xa3\x36\xdf\xea\xa8\xaa\xdf\x1f\x90\x91\x46\xf9\x7b\x63\xac\x00\x92\xef\x7a\x0a\xbf\x0f\x7e\x0e\xb8\x19\x0f\x6a\x28\xf7\xc5\xb9\xf6\x8a\x8f\x44\x1f\xef\x80\xe3\x9e\x6b\xa6\x3e\x6e\x7b\xc6\x8a\x67\xb3\x67\xbb\xd4\xcd\x82\x7e\x56\xd8\xdd\x0b\x8a\x37\x69\x53\xf3\xd7\x5d\xaa\xb8\x60\xe9\x1a\xf4\xe0\x90\x52\x83\xc7\xc0\xd7\x9e\xcb\x6f\x30\x0f\x6e\x36\x55\xae\x6f\xa4\x37\x4e\x8c\x15\x07\xd8\x1d\xaf\x02\x21\x51\xc2\x30\x45\x77\x18\xe6\x36\x44\xc7\xa3\x81\xa2\x95\xaf\x1b\xb9\x88\x48\x08\x50\x25\xca\x2e\xb3\xed\xe4\x3b\x2d\x31\x98\x26\xdd\xc8\x0c\xb3\x87\x9d\xe2\xcb\x5f\xe2\xe8\x14\x8e\x55\xd5\x82\xd3\xa2\x38\x87\xff\x4a\xeb\x52\xd1\x9c\x8a\x5c\xb5\x26\x00\x82\xe7\x29\x6c\x40\x4a\x51\xfb\x0c\xaa\x15\xc8\xe2\x5c\x69\x4a\x61\x67\x79\x1a\x2e\x19\x4d\xb4\x0c\xa3\xc9\xd7\xb5\x4c\x4a\x19\x11\xfb\xb1\xdf\x53\xbc\x7d\x82\x81\x52\x34\xa4\xeb\x4d\x12\x27\x2b\x61\x8f\x65\xfd\xa4\x4c\xe8\x12\x2e\xef\x28\x83\x35\x34\x43\xe1\x41\xb0\x1e\x87\xd5\xbd\x79\xbb\xa1\x43\x77\xbe\x1d\x0e\x47\xa9\xc9\x32\x86\x84\xc0\xef\xdd\x8e\xad\xcd\x37\x13\xd7\xb2\x54\xc4\x3d\x93\xee\x76\x65\xc0\xfb\x1a\x21\x74\x1b\x7e\x21\xaa\x6e\x8f\x77\x14\x32\x1f\xd3\x82\xc3\xfa\x2a\xdc\x05\x5b\x2e\x51\xa4\x7c\x34\x61\x58\x7c\x0f\x4f\x5c\x1d\x1c\xc2\x04\x4c\x94\x84\xdd\x85\xdf\x38\xa7\x91\x1c\xef\x90\xd1\x42\x5c\x7f\xbc\x31\x0f\x96\x0f\xcc\x92\x44\xcf\x2c\xf5\xa7\x05\x6e\x6e\x35\x9d\x3e\xfd\x24\xe9\xad\x19\x3f\xd5\x80\xd8\x8f\x34\xbf\xd3\x47\x2a\x2f\xec\xa7\xc6\xcf\x76\xb8\x96\xfe\x4f\xc8\xaf\xc2\x06\x3a\x43\x13\xc1\xd7\x63\x77\x3a\x32\xf7\xb9\x08\xd7\xa0\xe1\x45\x71\x08\x75\x4b\xef\x38\x89\xa7\x1c\xeb\xd7\x83\x8a\x7a\x5e\xcb\x0a\x30\x6a\x48\x12\x01\x04\x4d\x96\xb7\x74\x67\x02\x7d\x4e\x86\xba\xa9\x3d\x36\x8c\xc3\x61\x31\xa4\x75\x00\xe7\x15\x51\x12\x5f\x2b\x02\xe8\xa5\x22\xee\xf9\x43\x13\xe7\x4c\xb8\x00\x63\x7c\x01\xc6\x98\x6f\x9a\x20\x41\x79\x58\xe9\x06\x87\xb9\x42\x68\xc1\xd7\x35\x27\xed\xd0\x0b\xed\xa5\xd4\x98\xd7\x8d\x4a\xbb\xfd\x91\x4a\xbb\xfd\x91\xad\xa9\x06\x7e\x66\xd8\x85\xd1\xdd\x51\x48\x3b\x70\x0e\x42\xa8\x95\x74\x40\x2b\xf4\xea\xb4\x5e\x51\xa0\x3b\x0d\xb6\x3a\xbe\xa9\x60\x3a\x7e\xe9\x17\xd0\xf9\x66\x7b\xa1\x95\x84\xe2\x13\xda\x11\x59\x0a\x73\xbf\xcb\x9e\x9b\x82\x71\x5b\xfe\x28\xd5\x8b\x9b\x1a\xa2\x9b\xf2\xe3\xc0\x68\xef\x17\xa8\x16\xb8\x28\xcc\x4a\x6d\x3b\x8b\x2d\xba\x18\xc5\x25\xd4\xaf\x6e\x61\x02\xe0\xc8\x5f\x53\x1d\xa3\x37\xab\x24\xc3\x21\x70\x05\xd2\x99\xa6\x0b\x3d\x0e\x78\x2d\xfa\xe1\x53\xb6\xf5\xf3\xdc\x97\x3a\x6e\x6d\x3f\x85\x60\x44\xc0\x7b\x3a\x57\x18\x67\x45\x94\x4b\x40\xc7\xba\xd8\x15\x8d\x6c\xf7\xc7\xbd\xd0\xef\xc7\x89\x0c\xff\x82\x25\x05\xa5\x3d\x21\x9c\xa0\x9f\xd7\xfd\x18\x24\x71\x90\xa4\x68\x76\xc6\x1a\x65\x78\x1c\xdf\xa8\xb4\xc5\xc0\xf8\x3d\x3f\x18\x98\x0c\xce\x43\x25\x20\x42\xae\x18\x2c\x13\x9c\x38\xe5\xc3\x88\x5f\x8e\x82\x2b\x79\xd1\xa6\x1e\x55\x2a\x49\x98\xb4\x4a\xc6\x7a\xc3\xab\x08\x28\x6d\x2d\xba\x3c\xd3\x8e\xc2\x65\x43\xca\x03\x80\x6a\x1c\xd1\x25\x3c\xec\x6b\x38\xa7\x37\x14\xa8\x6d\x47\xc7\x25\x16\xb1\x0a\x04\xea\xe3\x82\xa8\xa5\x30\x1a\xee\xa0\xd1\x44\xd9\x1d\x1c\xfb\xa8\x77\x7e\x4b\x37\xd4\xdf\x60\xd7\x8e\xd9\xe1\xb1\xc2\x70\x78\x81\x11\x45\x42\xd0\x3d\xca\xfe\x17\x59\xe1\x47\xc4\x36\x8f\x62\x30\x97\xe2\x10\xcb\x5d\x50\x02\xdb\xec\xeb\xf1\x3f\xa0\xaa\x25\x42\x2f\xb4\x74\x44\x8a\xd3\xb5\xc1\x9d\xa0\x37\x15\x26\xef\xbd\x8a\xeb\x32\x32\x29\x34\x65\x14\x2b\xbf\xaa\x80\xdf\x1c\x3b\xac\xdd\x45\xfc\x14\xff\x43\x53\x1f\x64\x18\x13\x29\x77\x81\x72\x44\x15\x4b\x62\x51\x4b\x56\xeb\xff\xa8\x42\x84\x2e\xa5\xfe\xd0\x60\x09\xb1\x84\x06\x1d\x3a\x56\x05\xcc\xf9\xe0\x90\xff\xc1\xe9\x77\x46\x77\xa7\xfe\x8e\x4d\x66\x96\x81\x4d\xdf\x48\x62\x12\xd8\xe1\x75\x4d\x39\xb5\x5e\xf3\x20\x08\xbf\x9e\x64\x23\x13\xc8\x39\x06\x4b\x77\x51\x89\x40\x5f\x6c\x4c\x82\xb2\xea\x5c\xab\xa6\x34\xc7\xd7\xb5\xa0\xee\xe9\xa7\xdb\x71\x62\x1b\x00\x2d\x6b\xb8\x8b\x2a\x6f\x2b\xf2\xd3\x55\x3f\x4d\xc3\x24\x45\x4f\x2b\xde\xf3\xee\xd8\xb5\xa9\xfe\x90\x22\x1a\x56\x19\x52\x4c\x40\x08\x6f\x19\xb4\x6b\x45\x38\x55\x61\xca\x89\x20\x65\x83\x30\xcd\x19\x9c\xcc\x39\x08\x5d\xe5\xfe\x13\xcb\x0d\x51\xc4\x23\x93\x2e\x25\x8e\xae\x40\xd8\xcf\x5b\x96\x41\xfa\xb8\xf7\xa4\x54\x1d\xfc\x15\x93\xf5\xd2\x64\x34\xb2\x59\x5f\xec\xad\x1d\x13\x07\xa3\x9b\xed\x28\x32\xec\x37\x6a\x07\xe7\xa1\x17\xa8\x8d\xc1\x8f\x22\x32\xf5\x02\x3e\x75\x99\xa9\xf3\x4d\x41\xfa\xb0\xf4\xb6\xa9\xbe\x00\x5c\x00\x83\x4b\x00\xcf\x38\xa2\x40\x7c\xe7\x95\xd8\x3e\x79\x5f\xd1\x9a\x64\xb3\x70\xb2\xa1\xc4\xcc\xd7\x95\xa3\x2a\x0b\x06\x8a\x29\xf1\xc7\xba\x66\xfe\x63\xcd\x5c\x5b\xa4\x2b\xe1\x8a\xe1\x82\x0a\x9a\xbd\x7f\x03\x21\x24\xdf\x34\xae\x28\xbf\x9b\x14\x71\x2f\xd3\xc7\xe6\x45\xa5\x30\x7b\x51\x29\xad\x8e\xfc\x48\x4e\x66\x1b\xa1\xba\xd0\xf3\x9b\x3a\xd7\x79\x77\xec\x62\xe3\xae\x1f\x2f\x9b\x54\xba\xdb\x61\xb3\xfe\xa3\xa7\xba\xef\xd7\x29\x1a\xaf\x30\xd9\xf2\x5f\x35\x72\x31\xa7\xa6\xef\xa7\x1c\x8f\xa2\x6a\xf5\xd7\x9e\x6b\x34\xaf\x27\x32\x0f\xcf\x91\xcf\x98\x9a\xee\xda\x54\xa5\x5e\x50\x7e\x88\xa5\xad\x15\xfb\x7f\x9d\x74\xb5\x8c\x11\x56\x0d\xf7\xc3\xe2\xd8\xdf\xa6\xf2\xce\xdb\x26\x4a\xe4\xab\x17\x66\x79\xd2\x52\x20\xcf\xa3\x6c\x9d\xf9\x4e\x0d\xe7\x92\x9f\xa1\x3b\x0c\x56\xf3\xdb\x8a\xb7\xeb\x4d\xb2\xa0\xd8\x75\x1f\xd5\xe2\xcd\x7d\xfb\xda\x99\x89\x39\xe9\x2f\x06\xc7\x61\x44\xb9\xec\x8f\x4f\xdf\xad\x45\x3c\xcf\x2f\xb4\xb3\x57\x0b\x3f\xd5\x5d\x55\x68\xa0\xe5\xeb\x89\x5e\x7c\xc9\xd0\x3c\xd5\xb2\xea\xf8\x27\xb1\x59\xf1\xd5\x3b\x80\x64\x02\x34\xe1\x3a\xc2\x37\xa9\x65\xab\x13\xf9\x04\xd9\x56\x24\x1f\xbf\xc7\x83\x01\xf3\xfc\xef\xc8\xaf\xc6\xe2\xfc\xb7\xb4\xe6\x58\xf3\x6c\x42\x8b\x03\x8c\x3f\x8f\x52\xba\x7f\xf3\xa1\x4e\xeb\xeb\xc2\x51\xf5\x19\x92\x86\x28\x14\x9c\x51\x2d\x4c\xef\x52\x84\x21\x2d\x6e\x8a\x31\x62\x56\xc9\x0d\x31\xf3\x0e\xa2\x98\xeb\x38\x2d\x91\x18\xb8\xab\x09\x7e\xbe\x47\x88\x37\xb8\x20\x33\x1d\x95\xb9\xf7\x53\xea\x87\xc4\x16\x67\xfe\x53\x1d\xa9\xe2\x4d\xc1\x3b\x2c\xac\x68\x2e\xf2\x22\x7c\xca\x94\x6b\xac\xe6\x71\x93\x1c\x6a\x4b\x49\xea\x6c\x3d\x35\x0e\xbd\xd0\xee\x85\x99\x9f\x0e\xa5\x7e\x8b\x78\xe7\x8f\xc7\x2a\xa3\xf6\xc7\x8e\x74\x36\x49\x72\x45\xaf\x79\x59\x49\x17\x5c\x56\x65\x58\x6a\xf5\x17\x4b\x04\x4f\x0d\xce\x30\x5f\xab\x86\xe0\x60\x10\x8e\x32\x62\x63\xb5\xd5\x1e\x97\xa7\x39\xa7\x60\xb2\xec\x32\x49\x05\xd0\x61\x14\x9f\x2e\x8d\xeb\xfc\x21\x27\x07\xf2\xbc\x93\x03\xd9\xea\x58\xfd\x6c\x3b\x1f\xf8\xf0\x3d\x45\xdf\xba\xfc\x73\xd1\xbd\xde\x9a\xb3\xdb\xbf\x7f\xb1\x3d\xa2\x6e\x5b\x3f\x8a\xd6\x5a\x55\x87\x60\x71\xce\x3a\x15\xaa\x3d\x37\xec\xf5\x22\x33\xf4\xe3\x29\x57\x0b\xbf\x09\xf3\x8d\x8c\xc4\x11\x9a\x4e\x91\x89\xdf\x65\xf7\x6d\xec\x4f\xa9\xd2\x0d\xdc\x14\xee\xdc\x52\x22\x50\xff\x69\xfc\x88\x3b\xf5\x4c\x3e\x4b\x7f\xc6\x45\x42\xc5\xd7\x7f\x95\xde\x0a\x1f\xb9\x8f\xbc\x85\x45\x80\x2e\x4a\xbe\x6d\xb6\xa3\x58\xe1\x3c\xd7\x79\xf1\x46\x63\x96\x7e\xd5\x64\x2c\x28\x2f\xdd\x3b\x0e\x89\x88\x65\x29\xed\x08\x0d\x7d\x75\xe6\xb5\x41\x18\xf9\xa9\xef\xa2\x3b\x8b\xe0\xb4\xc5\x96\xb3\x2a\xf1\xf9\x4a\xd2\x8d\x4c\xc6\x27\x3a\x36\x1b\x83\x6f\xf8\x46\xc1\x29\x92\xa5\xa5\x30\x30\x69\x36\x53\xbe\xb2\xad\x91\x58\x6c\xf1\x9b\x5a\x3f\x17\x5d\xe9\x88\x88\xff\xb5\xa7\x54\x52\x4e\x39\xac\x01\x09\xbb\xee\x2e\xbf\x00\x29\x3b\x88\x03\x23\x8a\xdb\x8e\x8c\x04\xe5\xa1\x2e\xed\x9d\x28\x21\xe6\xed\x40\xd0\x22\x52\xba\xa6\xa9\x9c\x2f\x38\x31\xd7\x5f\xff\x7b\x1d\x1d\xa8\x8d\x5d\xa9\xfd\x11\xc2\xf2\x52\xe2\xe2\x7f\xf9\x3b\x10\x76\xd1\x29\x39\xdb\x72\x50\x2e\x40\x69\x50\x6b\x70\x5e\xa1\xbd\x14\x84\x65\x60\x66\x73\x6c\x57\x55\x25\x99\x84\xca\x04\x38\x71\xcd\x76\x0a\x64\x83\x90\x40\x13\x8e\x13\x09\xb9\x5c\xbe\x56\x09\x37\xfa\x05\x4a\x05\xfe\xea\x41\xd7\x64\x57\x4e\x13\x07\x93\x18\x55\x71\x4f\xb6\x3e\x23\xd1\xbd\x24\xd1\xda\x70\x14\x06\x12\x11\xe1\xac\x79\x47\xd3\x86\xbc\xa3\x92\xba\xbf\x3a\xff\x2b\x84\xfc\xb0\x9a\x26\xe5\x9f\x09\x09\x70\xc5\xa3\x09\x7d\x04\xc8\xa2\xa5\x50\xce\x21\x12\x46\x67\xc6\x0e\xb9\xfa\xdb\xaa\xa1\xea\x2a\xc1\x4a\xad\x60\xb8\x96\x6e\x78\x5e\x1c\xcd\x13\xb5\xa8\x6e\xdf\x7c\x69\x32\xbb\x45\x6a\x79\xba\x2c\xa4\x46\x45\x89\x0d\x30\xc2\xd4\x50\x98\xd9\x52\x24\xe7\x4c\x0f\xc2\x37\x2a\x50\xcb\x92\xa1\x79\x9c\xd6\x94\x14\x17\xaa\xc7\x57\xf9\xa2\x92\x86\x76\x62\x17\xc7\x75\x26\x96\xa9\x9c\x24\xe5\x52\xee\x7c\x0b\x5b\x10\x62\xe8\x7f\xf1\xc5\x8e\xc3\x57\xde\xa8\x9c\x4e\xae\xdf\xe9\x49\xca\xb7\x61\x41\x4e\x53\x39\x1d\xf3\xdb\x9a\x28\xc2\xf8\xd3\x48\x89\xa2\x7c\xc0\x0c\x4f\x38\x79\x39\x32\x40\xf0\xb8\x39\x7e\x98\x07\x64\x99\xa9\xc8\x78\xad\x28\xc9\xa8\xf3\x4d\xe2\x4c\xcb\x06\xa9\x4b\xb8\xda\xbb\x14\x47\xc3\xae\x89\x2a\xf2\x14\x69\x56\x98\x4c\x71\xf3\xfc\x9f\x34\xaf\x7c\x6d\xe1\x3f\x83\xb5\x51\x12\xa4\x61\xc6\x0c\x16\x02\x71\xb2\xe9\x8c\x57\xde\xf5\x1c\xac\xf5\xcf\x75\x5f\xf1\xaa\x9f\xf6\xb8\x83\x57\xd8\x19\x2a\x88\xda\x27\xb7\x2a\x71\x97\xe6\x73\x37\xfd\x89\x15\x6e\x2a\xa7\x55\x78\xc4\xca\xa1\x65\x2d\x1d\xaf\xce\xdb\x0b\xa7\xe8\x3e\x56\xbd\xd5\x30\x39\x2c\xa1\xfd\xff\x8d\x41\x97\xbd\x51\x3e\x32\x5e\x05\x45\x54\x84\x34\xbb\x26\x8a\xca\xf3\x06\x12\xf7\xc8\x3c\xfc\xd4\x73\xda\x78\x57\x1d\x34\xca\xc4\x61\x92\x0a\x42\x0d\x69\xd6\xcb\xaa\x5f\xf2\xb2\xda\x9d\x49\x18\xcf\xd2\x53\x0b\xa4\x55\x81\x9f\x7e\x4c\x3b\x10\xa5\xdf\xd9\x4e\x15\xc2\xe2\xa4\xfe\xcf\x28\xe6\x4d\xa8\x1c\x09\x45\xf4\x13\x36\xdd\x54\xc4\xb9\x49\x47\x7e\x2a\x81\x2d\xb7\x33\x29\xb4\xf7\x39\x6b\xc0\xd3\xa4\x5b\x64\xf9\x0e\x97\xf8\x62\x1d\x3e\xd1\x36\xa5\x3d\x81\xb8\x6a\x32\x76\x34\x55\x00\xcd\xe1\x2d\x40\x4e\x0b\x23\xf9\x85\xce\x5e\xdd\x87\x38\x4a\x62\x16\xec\x7a\xce\xa6\x32\x54\x5a\xc3\xd3\x7f\xdc\x35\x94\x9d\x05\x6a\x0a\xe0\xba\xf7\x68\xba\xf9\xda\xf5\x5d\x8e\x8c\xbf\x1c\xc6\xfd\x19\xe5\x27\x9c\x18\x2b\x92\x84\x9b\x8a\x89\x77\x67\x47\x9d\x99\x63\x45\x9a\xf4\x83\xb1\x53\x7b\x09\x63\x64\x23\x4a\xf3\x06\xbf\xea\x38\x5e\x5c\x89\x2e\x1c\xb0\xa5\x9c\x96\xe5\x5e\x3f\xa2\x8a\xa0\x53\x9d\x06\x00\x7a\x9e\x26\x05\xb9\x76\x08\x88\xb1\x56\x8f\x28\x3e\x32\xf4\xf8\x8b\x60\x87\x80\xc6\x4d\x14\x19\xae\xa4\x73\xeb\x1e\x9e\x5c\xfa\xf8\x1a\x0a\x99\xc3\x30\xee\x95\x4e\xc0\x54\x4b\x71\x9d\xb9\xa4\x16\x4e\x4f\xc4\x85\x1f\x2a\x04\xbc\x89\x4c\x90\xa7\x49\x1c\x06\xb3\xf4\x73\x56\x6c\xc3\x0a\x13\x7f\xa6\xa1\xf8\x5c\x25\x40\xb0\x79\x0e\x81\xc4\xe6\xa4\xd2\x6a\xa9\x50\x50\xd7\x55\x3e\x3f\xcb\xfd\xb4\xaa\x2c\xcc\xe4\x32\x7c\xe3\x3d\xa9\xd5\x8a\x38\xa7\x94\xcd\xd0\x2c\x48\x76\xcc\x05\xe0\xad\x8e\x2a\x28\x7d\x00\xf7\x8f\xff\x8a\x1e\x1d\xc5\xe1\x99\xc9\xa3\x76\x8a\xa3\xdc\x64\x88\xb6\x80\x0a\xe2\xce\x74\xbe\x19\x57\xd9\x28\x96\x9f\xa4\xaf\xc7\x68\x1d\x83\x3d\xb6\xd8\xb2\x17\x45\x0a\xc1\xbb\x4f\xcb\x13\x4e\x1d\x1a\x5e\xf1\xbb\x77\xf0\x40\xc8\x23\x70\x73\x8e\x75\x67\xad\x1f\xbc\x83\xb4\x1d\x70\xb2\x7e\x48\x40\x27\xde\x66\xf4\x9e\xc2\x5b\xde\xfa\xda\x8b\x56\xcf\x58\x61\x90\xfe\x84\x9a\x2e\x25\xcf\x43\x26\x05\x9f\x9e\x9a\x28\xba\xfb\x77\xc9\xf6\x89\x3e\x88\xce\xe7\x5f\xc6\x3c\xd9\x7e\x96\x72\x98\x61\x1a\x36\x95\x84\x5c\xcf\x44\xa2\xf0\xff\x9c\x25\x63\x71\x29\xe2\x4f\xbc\x2f\xa9\xbc\x7b\x45\xf0\x78\x87\xee\x00\x04\x80\x51\x44\x70\x35\x61\x4d\x39\x7e\xfc\xff\x31\xca\x42\x05\xad\x78\x87\xce\xda\xaa\x44\xb2\x6a\x7a\x3b\xca\x8f\x08\xb8\x8d\xde\x5b\x13\x48\x60\x61\x5e\xc3\xcb\x61\x68\x19\x8a\x07\x41\x89\xc7\xc9\x1a\xc0\xde\x5e\xd4\x79\xde\x24\x89\xa6\x2a\xd8\x52\xfa\x90\xfa\xea\xcd\x3b\xaa\xef\x30\xec\x19\x3f\x42\xed\xa2\x22\xe3\x2e\x27\x8e\x42\x8f\x45\x7e\xb0\xcc\x99\x72\x3c\xcf\x49\xb2\x9c\xf0\x3f\x1e\x78\xaa\x75\xfd\xa4\x3a\x42\xaf\x8c\x2b\xec\xff\x5b\x03\xad\xc5\xb9\xb6\xc9\x72\xbf\x1b\x85\xd4\x84\xa2\x90\xc6\x38\x1e\x64\x55\xcb\xc0\xf5\x42\x16\xb9\xe6\x7e\x1c\xa5\x14\x5b\x77\x1e\x9e\x69\xc7\xa6\x3c\xb1\xbf\x3e\x6f\x4b\x6c\xaa\xdf\xf0\x8c\xe7\x24\x72\x23\xd3\x0f\xb3\x88\x78\x4f\x67\x5d\x3d\x0c\xfa\xf7\x96\x4d\x41\xad\xfe\x8f\xe9\x77\x71\xcc\x1c\xc1\xa2\xb5\x4c\x55\x2e\x87\xf5\xad\xb1\x52\xfb\x3b\xa5\x88\xc9\xfd\xa1\x89\x7b\xa5\x3b\x3d\x53\x3e\x1b\x3c\xa7\x63\x1e\xe6\x86\x7e\x05\x0b\xf8\x07\x0a\xfb\x7b\x15\x2b\x01\xc7\xc2\xd5\x86\x82\xc3\x41\x70\xd0\x49\xa0\xb5\x49\xec\x9c\x9b\x53\x9d\xad\x60\xa5\x85\x85\x03\x10\x26\x0a\x92\xe1\xa8\xc8\x59\x51\xaf\x91\xce\x70\xb7\x65\x66\x28\xf7\xce\x6c\x45\x78\x43\x49\x45\xac\x7b\xee\xb8\x87\xa5\x96\xfe\xf1\x96\x65\xb0\x9e\x02\x5d\x32\x57\x68\xc7\xce\x9f\xbb\x5d\x6b\x1b\x3b\x3c\xb7\x50\xbe\xca\x8c\x6b\x17\xb9\x49\x34\x36\x38\xa2\xa7\x5d\x23\x24\xc3\x81\x25\xc1\x5d\x6e\x27\x98\xee\x6d\x93\x3d\x4a\xb5\x28\xf6\xe3\xd7\x99\x62\x8b\xfb\x5e\x94\x06\xc7\xf1\x4a\x5c\x1d\x3c\xe4\x72\xaf\xb7\x34\xa1\xd4\xbb\x5a\x7f\x80\x21\xee\x56\x79\xc9\xca\x59\x22\x77\xce\x79\x21\x6c\x69\x9c\xae\x97\x34\xde\xe8\x3f\xd0\xd8\x6d\x5e\xb2\xa7\x76\x6c\x56\x83\x64\x68\x5b\x50\x45\xb6\x46\xd1\x5c\xd7\x13\x14\x52\xed\x1a\x25\x51\x18\x18\x74\xbf\x62\x27\x22\xea\x83\x29\x3f\x4e\x46\x1a\x89\x33\x86\x6b\x09\xcd\xe0\x17\x14\xe7\x6f\xbc\x14\xf6\x8b\x94\x56\xff\x94\xcb\xd5\x4e\x75\x5c\x93\xfd\xba\x96\x53\xb9\xad\xb2\xb1\xac\x9c\x30\xab\xbc\xe2\xb1\x4b\xfe\xb1\xb8\x8f\xae\x5e\x59\xd7\xd9\x91\xec\x5c\xd5\x94\xb4\xb7\x2a\x1d\xd7\x0f\x54\x4f\x64\xaf\x88\x45\x09\x0e\xc3\x0d\x4d\x53\xbe\x56\x9a\x40\x7e\x14\x99\x3e\xbd\x4d\x06\x57\x00\x40\x74\x6e\xff\x45\xf9\xeb\x03\x44\x55\x42\x46\xaf\x9d\x7a\x07\xad\x7c\x9b\x0c\x1c\x7f\x00\xfb\x8f\xbf\xaa\x89\xea\x59\xb1\x1c\x56\xfa\xd1\xf8\xa6\x8a\x0c\x5f\x01\x49\x96\x90\x17\xbb\xc2\x2b\xa3\x92\x70\x9c\xbd\xd6\x40\x7d\xf6\x5c\x1b\x19\x92\xf2\x9c\x63\xf3\x8f\x43\x5a\xce\x82\x4a\x7f\x53\xda\x9f\x51\x28\xbd\x8b\x3c\xb8\x56\x56\xc4\xe6\x7e\x6e\x6a\xe6\xc0\xe3\x54\x99\x91\x75\xd8\xa0\xa0\x12\xa4\xa6\x17\x76\xc3\x88\x42\x85\x7d\xfb\x2c\x31\x66\xf9\x7d\x42\x98\xd9\x20\x0f\x14\x13\x85\x59\x28\x2c\x11\xac\xbe\x46\x16\x43\x94\xd8\x54\x9e\x3f\xec\x27\x79\xba\x46\xd6\x09\x99\x8f\x53\xaa\x64\x79\xaa\x66\x01\x0f\xcf\xbd\x64\x2d\xe0\x94\xe2\x57\x78\xa0\x14\xd0\xd6\x15\x0d\xe3\x65\x95\x8b\xec\x25\x49\x0a\xa6\x5f\xa1\x46\x6a\x29\xc1\x95\xba\xc0\x08\xf8\xf6\x8b\x20\x2f\xdc\xaf\x49\xe8\xed\x22\x49\x00\x91\x85\x83\xe4\x71\x25\x1a\xb1\x64\xe2\xcc\x64\x28\xad\xd8\xfc\x9c\x25\x01\xba\x58\x63\xf6\x25\xc0\x23\x43\xec\x07\xe1\xa8\xe5\xe0\x76\xa7\x15\xdb\xd2\x69\x45\x1d\xdd\x35\x4b\x61\x9e\xd3\xc3\xb9\x5c\xd5\x15\xd5\x15\xc1\x95\x52\x14\xb0\xff\xd2\xda\xa2\x22\x8e\xc2\x61\x68\x81\x5b\xb0\x16\xb7\x14\x41\x69\x5d\x7e\x60\x71\xae\xdd\x4b\x56\xe3\x54\xfc\x2b\xa1\xa4\xbb\x4d\xbb\x8a\xaf\x95\x53\xdc\x37\xb1\xc9\xc3\x80\x12\xab\xee\x24\xbf\xa4\x4e\xf2\x4b\x2a\xc9\x3b\xf4\xe3\x9d\xb4\x82\x19\x47\x87\x23\x55\x77\xfd\x0a\x95\x05\x8d\xa6\xb0\x22\x94\x5f\x06\xeb\xf2\x17\xb4\xa1\x61\xb9\x8f\x52\x4a\xce\x76\x71\x3b\x44\xde\x0d\x2d\x1f\x6b\xfc\x51\x12\x53\x4f\xdf\x73\x9c\xfe\x7b\xcf\x73\x03\x70\xa7\xce\xae\x8b\x93\xe0\x7a\x95\x4d\x28\x1f\x3c\xe6\x82\xc9\xf7\xe8\x04\xb3\x5c\x7f\xe5\x94\x88\xbc\x5d\xf9\x74\x96\xc3\x6f\xfe\x90\x4d\xd1\x29\x8a\xb9\xf7\xc6\xae\xd9\x63\x53\x81\xa4\x8f\x8e\x15\xce\x6a\xbb\xd6\x61\xe3\x44\x24\xff\x06\x99\x31\xab\x77\x5a\xbe\x16\xdc\x3b\x86\x2c\xf1\xbf\xc0\x22\xc2\xf6\x3f\x3c\xd9\xba\xe8\xa9\x5d\x2f\x5e\x32\x3d\x93\x3a\x8a\x7d\xdb\x52\xeb\x78\x42\xab\xc5\xc6\x41\x81\x0e\x52\x4c\xcb\x6d\xfc\x84\xa8\x9d\x97\x6f\x2e\x70\xa7\xc7\xac\x7f\xb7\x12\x66\xf2\xf5\x38\xb8\xce\xe8\xde\xe2\x33\x8d\x11\xa3\x89\x72\xc8\x11\xd8\xe5\x74\x4b\x2d\xa7\x5b\xd6\x7b\x8c\x92\x60\x99\xca\x2d\x7a\xfd\xa8\xd2\xcb\x42\xa5\x23\x85\xff\x01\xa8\x31\xce\xd5\x67\x3d\xff\xd5\x7f\xfe\xf3\x60\xc8\x67\x98\x93\x48\x33\x2a\x9d\x81\xb3\x9f\xcb\xe7\x46\xdc\x76\xc6\x07\x99\x28\x37\x48\x91\x01\x94\x66\xa9\x0a\x99\x89\x89\xb3\x70\xc5\xec\x2c\x9f\x58\x44\xc2\xdd\xe1\xfa\x93\xaa\x68\xb2\x8a\x2f\xb9\x15\x03\xe5\x22\x50\x37\x30\x65\x3e\x96\x05\xbc\x5b\x64\x20\x37\xef\x34\x74\xfd\x1f\x70\x3c\xcb\xbc\x36\x39\x2c\xe0\x1b\xcf\x95\x28\x21\xc8\xbb\xc3\x01\x50\x60\x2c\x10\xf0\x5c\xc7\x23\x32\x89\xcd\x58\x85\x25\x50\xa6\xc1\x53\x5d\xa2\x5d\x09\xab\xfc\x51\x95\x4d\x31\xf7\xa7\x75\x6a\x8c\x1c\x4d\x2b\x92\x6b\x69\x63\x8e\xd3\x2b\xf2\x75\xed\x75\x08\x60\x99\xa6\x6b\x9a\xb6\x1b\x8f\x22\x4e\xaf\x0d\x2e\x4c\x17\xf0\x69\x0b\xa3\xb3\xdd\x2d\x90\x91\xd8\x6c\x14\xa8\x88\xfc\xa2\x67\x15\x54\x05\x85\xab\x56\xc3\x85\x26\xb1\x2c\x50\x6a\x2e\x85\x8c\xb0\x44\x4a\xec\x06\xfc\x25\xbe\x51\xe6\x3c\x1c\x0e\x4d\x2f\x24\x1e\xd3\xf9\x43\x0e\x4d\x6f\xe1\x93\x0f\x54\xa7\xec\xf4\xe4\x29\x6d\x3d\xc3\x51\x11\xb9\x1d\x8b\x90\xe5\x86\x0a\x5f\x6e\xd4\xea\x36\xa8\x27\x50\x6c\x10\xf9\x71\x0f\x89\x52\x18\xbf\x23\x1a\x28\xac\xe5\xf2\x6e\x96\xfb\x52\xf5\x85\xa6\x66\x80\xc5\x1b\x9b\x2c\x43\x69\x19\xc6\x88\xe1\xa0\x70\x85\xa1\x14\x83\x33\xe8\xcd\xf1\x2e\x55\xda\xf9\x3b\x04\xb5\xb3\x2c\x31\x0e\xd4\x73\x17\xce\x37\x7e\xf5\x34\x42\x2f\x4c\xd1\x27\x40\x27\x70\x1a\x62\xec\xa8\x19\x2e\x7a\xad\xa7\x9f\xb6\xe5\x0d\x32\x41\xb8\x79\x08\x19\x06\x8c\xc3\xa6\xee\x57\xfb\x2f\xd4\x69\x29\xd9\x8a\xd2\x76\x23\xd4\x61\x16\x2a\xfc\xc3\x75\xc5\xd6\x74\x6f\xec\x44\x8f\x6f\x52\x36\xdd\x56\xcf\x1d\xf5\xe4\x55\x0f\x0a\xf7\x30\x80\xf7\xbd\xed\x5f\xb6\x8c\xb9\xa5\xc3\x85\x7c\x3d\xa2\x6a\x18\xfe\x5b\xb0\xd6\xc0\x34\x6e\xeb\xb4\x5e\xb4\x25\xbc\x89\x43\x79\xdf\xc3\x26\x43\x76\xec\x06\x4e\x35\x14\x68\x6e\xe1\xa4\xc1\x77\x6d\xd2\x49\x83\xd7\xbb\xcc\x85\x73\xfc\xfa\x25\x4f\x49\x4a\x9c\xa7\xcd\x88\x6a\xf2\x54\xe7\x11\x9b\xaf\x88\x4d\x0f\xb1\x3f\x0c\x15\x27\x12\x2b\xbc\x9c\x2c\x83\xe7\xb9\x72\x0a\xe7\xd0\x70\x3e\x9e\xd6\x3a\xc5\x7e\xb8\xea\x43\x3e\x86\xa9\x95\x68\x31\x0b\xcd\x52\xdd\x22\xbd\xd4\xce\x93\x88\x81\xee\x20\xa5\xfa\xf6\x58\x79\x86\xf8\x1d\x11\xad\x69\xc0\x98\x96\x76\x97\x54\x11\x5a\x95\x0a\x9d\xe2\x06\xb9\x50\xf3\xb5\xf7\xef\x6f\x2f\x99\x95\x32\x40\x5e\x14\xd9\xaa\x63\x8a\x32\xe1\x98\xad\xa2\xad\x98\x34\x16\x2e\x5a\xa4\x7d\x36\x68\xb0\xf9\x5a\x71\x6d\x0c\xfd\xd7\xc2\x21\x70\x96\xc8\xc1\x7e\xac\xd8\x39\x3f\xd6\x7c\x1e\x44\xa4\x1b\xf7\x0a\xd2\xa5\xd9\xfc\x00\x31\xe3\x07\x4a\x14\xda\xc4\x7d\xbf\x8f\x3c\x20\x12\x14\x37\x95\x82\xe9\xcd\xda\xcb\x3c\xd3\x0e\xfc\x2c\x8c\x13\x45\x24\xca\xaa\x45\xd2\xa8\xde\xc0\xa3\x1f\x19\xdf\x96\xba\x60\x13\xc1\x3c\xc9\xd7\x93\xad\x96\x63\xdf\x3e\x52\x6c\x19\xa5\x49\xaf\x08\x72\x49\x92\x62\x87\xb0\x0a\x25\xdf\x34\x50\x1c\x1f\x68\xf7\x4d\xd8\x37\xcc\xff\x8b\x63\x8d\xe3\x4e\xbe\x51\x5a\xfd\xab\x61\xcf\x54\x45\x79\x15\xfc\x59\x01\x12\x4c\xdc\x2f\xa2\x25\x16\x8b\x14\x38\x94\xb3\x9b\xa7\x95\xc6\xec\x6f\x7f\x3e\xa4\xd4\x4f\xfb\x61\x84\xd3\x5e\xb5\x71\x1d\xb0\x9a\x15\x0d\xcd\x92\x2c\xc2\xc1\x00\x27\x2d\x44\xbd\x09\x18\x18\xcc\xe1\xef\x7f\x2e\xe9\x70\x90\xfa\xb1\xc1\x82\xd7\x27\x9e\x5a\xb9\x52\xd5\xbb\xeb\x39\xe1\xd6\xa4\x90\x34\x02\x13\xb4\x61\x89\x0b\x5b\x5b\x5d\x15\x2b\x4d\xba\x09\x03\x6d\x9f\xab\xf0\x0b\x89\x2a\x66\xa3\xb4\x7f\x32\x0c\xe3\x4c\x72\x47\x52\x49\xd7\x65\xf5\x1a\xca\xe8\x99\x76\x91\x4a\xf3\x28\xa6\xe9\x34\x36\x2d\xf7\xfd\x7a\x95\x1e\x96\xa6\x1e\xaa\xad\xf2\x03\xc8\x69\x33\xbf\x0e\xdf\x34\xa8\x00\xb5\x5f\x2d\xfc\x32\x50\xd5\xa2\xaf\xb4\xe9\x10\x62\x0f\x2a\x7c\xeb\x1a\xac\x5d\x74\x23\xd7\xb2\xf5\x12\x9f\x25\xdc\x4d\xc4\x37\x2a\x83\x68\xca\xb8\x29\xb6\x40\x87\x79\xce\x4b\x70\x3b\x36\xdf\xa8\x9e\x0c\x3f\xcf\xfd\x60\x79\xd6\xf5\x64\x80\x10\x5a\x75\x44\xbd\xb4\xf9\x26\xd9\x62\xd6\xf4\xf5\x14\x01\x1e\x12\x4d\xc0\xba\xdc\x83\x53\x2d\x0c\x60\x4f\xd6\x11\xc5\xb2\x83\x01\xa7\x61\xaa\x05\xbe\x69\x20\x6d\x3a\xd8\x4e\x62\x90\x95\x59\x79\x8a\x7d\x42\x7e\x72\x4c\x21\x02\x56\xc3\x7c\xd0\x4b\xfd\xd5\x96\x52\x57\x47\x26\x83\xaf\xc7\x4f\x2a\xd9\xfd\x22\x4d\xa2\xa4\x1f\x66\xcc\xa4\x2e\x7c\x71\xf4\x59\x01\x5e\xd7\x43\xfa\xf9\xf6\x92\x1f\xe6\x83\xa5\x82\x41\xb9\x36\xbc\xb3\x34\x9c\x9b\x0a\xfd\x72\x41\x81\x72\x5f\xf7\x57\x0c\xf2\xda\x22\x3a\xe6\x88\xd5\xee\x8e\x77\xf2\x2f\x2c\x4d\x3b\x4e\x96\x13\xaa\xd6\x76\x74\x3c\x75\xf0\xd7\xbf\xce\x4b\xe4\x4d\xaf\xf5\xab\x96\xfd\x50\xf1\x48\x04\x81\xc9\xb2\x04\xf8\x2d\x4b\xea\x6d\x7d\xac\xed\xc0\xb3\x21\xd8\xbc\xa8\x6a\x05\xef\x37\x11\xe3\xf5\xfc\xe1\xa8\xe5\x58\x8a\x4e\x56\x54\x09\x1b\x2c\x73\x19\x3e\x4b\xe3\x17\x6a\x27\xbf\xa9\xd4\x28\x98\x56\x04\x00\x82\x0d\x8b\x2d\x1e\x25\x59\x16\x76\xa3\x35\x7a\x62\x2c\x80\x3b\x63\x67\x0c\x1f\xe9\xb8\xd2\x31\xeb\x31\x49\xa5\xb3\x81\xaa\x5d\xce\xe3\x79\xce\xf8\xdc\x83\x2f\x06\x9f\xfa\x2c\xdc\x03\x39\x00\x95\x76\x89\x3f\xec\x26\xbd\xd0\xe7\xd3\xd2\xb6\xa2\x3e\xef\x5a\x51\x1b\x10\x86\x91\x82\x4f\x30\x30\x7f\xec\x02\xc4\x6b\x0d\x9c\xf5\x07\xda\x99\x1f\x25\xc3\x8a\xd7\x3b\xd5\x51\xee\xde\x54\x83\x22\xd1\x96\xfc\x91\x65\x58\x74\x0d\xfe\xe8\xab\x40\xc0\xfc\xa0\xb1\x9d\x28\xcb\x93\x5e\x7f\xed\xf3\x49\xf1\x94\x0f\x34\x00\x9f\x97\x62\x7b\x28\xe7\x42\x40\x5d\x0e\xe4\x87\xec\x14\xbd\x3c\x1c\x05\xd0\x32\xf2\x75\x45\x89\xd3\xcf\x7e\x86\x7c\x65\xf8\xb7\xe7\xc7\xf0\x37\xb1\x8c\xa7\x27\x0a\x5c\xf8\x01\x66\x4b\xdc\xe8\xf2\x87\x71\x98\xcc\x74\x94\xc6\xe5\x55\xf6\x13\xf1\xf0\x37\x61\x69\x90\x1b\xdd\x3e\xd1\xd5\x7b\x85\x5a\xbb\x4e\xbe\x2c\x26\xf3\x3e\x19\x30\xa4\xd0\x67\x88\xd9\x15\xa6\x7f\xaa\x43\xee\xbd\xe5\xb6\x2a\x1d\x6f\x58\xe0\x19\x10\x35\xc0\x95\x64\x34\x23\xec\xe3\xb6\x4e\xe9\x55\xc3\x97\x9d\xe9\x38\xf7\x1c\x89\x7f\xce\xf5\xc0\x5f\xc6\x2b\xde\x22\x47\x1a\x4b\xfb\xb7\xd1\xfe\x0e\x33\x8c\x66\x6e\xe9\xde\x2c\x8d\x9b\x10\x1b\x92\xaf\x8e\x7c\xed\xec\x44\x31\x88\x7f\x77\x4c\xa1\x05\x7c\xab\x46\x4d\xe9\x2c\x0f\x87\x14\x67\xc5\x7d\x72\x35\x60\x68\xde\xc1\xf3\x60\x4f\x60\xc4\x80\xbf\x98\xea\x38\xe4\x4a\x96\x14\xd1\x52\x11\xc1\x8c\x4a\x2f\x84\x33\x45\x17\x14\xdc\xf3\xd5\x22\x34\x79\x4b\xe1\xe1\x98\x15\x53\x1a\x5a\xf5\x52\x18\x98\x2f\xea\x1e\xdd\x13\xc8\x8f\x59\xd6\xa0\xf2\x3b\x90\xfa\xbd\x8f\x69\x85\x11\x9c\x02\xd4\x0c\x4f\xfc\x89\xe7\x68\x90\xaf\x52\xbf\x0b\x16\xe7\x14\x4c\x1b\x33\x9a\x12\x94\x0a\x51\xc1\xf4\xa4\x9c\x17\x81\x85\x5a\x58\xea\xad\x3d\x13\xd5\x9d\xbb\x9d\x80\x44\x48\xf8\x3e\x4e\xa3\xfc\x80\x60\x46\xa8\x73\x3d\xde\x69\xfd\xda\x3f\x73\x47\xe2\x8b\x0a\xfc\x62\xf9\x4b\x6f\x51\x8d\xd9\x62\x2c\xcb\x05\x8f\xdf\xbf\x3b\x56\x48\x83\xbb\x63\xd5\x78\x76\x54\x65\xed\xa6\x3b\x4d\x5a\x81\x45\x9c\x52\x6b\x9c\x53\xf5\x7c\x63\xec\x1a\x17\xde\x50\x9c\xe8\xe1\x70\x94\x26\x2b\x86\x72\x1e\x2a\xb5\xf1\x1c\x87\xab\x37\x14\x58\xe1\x1e\x7d\x05\x8a\x98\x77\x14\xd0\xe9\x1a\xdc\x08\x6e\xd3\x51\x34\x78\x7d\x13\x1b\x14\xda\xe0\x0a\xfd\x64\xac\x70\x3e\xbf\xa3\xd4\x0f\xff\x15\x12\x3e\x4c\x59\x8b\xf7\x86\x39\xe4\xa6\x01\xa1\x1f\x74\x28\x8a\x13\x35\xa7\xec\xd0\x0b\xed\x81\xf1\x53\x3a\x78\x6c\x9f\x8c\x2a\xff\x36\xb1\x78\xe4\xa9\x3f\x1a\x85\xdc\x67\x8e\xd7\xd7\xf0\xf5\x75\xad\x9d\x79\x65\xfc\x25\x9b\x57\xee\x99\x34\xcb\xfd\xb8\xf7\xcf\x7f\xde\xef\x25\xa3\x5c\xb1\xc0\x82\xdd\x58\x2a\xb4\xae\x5d\x71\xd9\xc4\x79\x11\x2c\xaf\xd1\x86\x42\x92\x80\xb1\xc0\x1c\xf0\x93\xa5\x11\xce\x93\x7a\x8e\x65\xb1\xdd\x4f\xfd\x5e\xe1\x8b\x78\x07\x83\xe1\x3d\xd7\x5d\xf5\xe6\x58\x17\x0a\xd3\xa4\xe8\x0f\xa6\x54\x14\x07\xee\x25\x5d\x95\x87\xf7\x7d\xb2\x52\x63\x89\x97\x59\x17\xd8\xe2\x63\x6d\x15\x64\xa3\x96\xc9\x3f\xb0\x48\x12\xe7\x7e\x96\x99\x21\x71\xc2\x5a\x30\x3b\x16\xb8\x68\x19\x6a\xd6\x96\x81\x1f\x2d\x4d\x3b\xbf\x8a\x13\xbd\x2c\xca\x4c\x6f\x23\xca\xad\x2a\x0a\xae\x9f\xa3\xc4\x43\xe0\x52\xfb\x15\xf5\x00\x01\x11\x6a\x2d\xa0\x22\x30\xcc\x16\x05\xff\x0c\xfa\xef\x82\xec\x6b\x29\x3e\xd8\xc7\x15\x76\x82\xaa\x14\xbd\x29\x2d\x85\x7f\x43\x49\xc3\xea\xa6\xfb\xff\xed\x63\x9b\xf6\x35\xaf\x95\xbe\x14\x13\x67\x6c\xbe\xa9\x59\x0a\x2f\x57\xc4\x31\x9b\xe4\xda\xfc\x7e\x6a\xe4\xad\x2c\x99\xbb\xc3\x84\x9c\xaf\x54\xde\x8a\x74\xa9\xe5\xc6\x12\x48\x32\xbe\xb6\xa0\xa5\xcc\x98\x61\x86\xc4\x23\x52\xf6\x7c\x28\x8a\x5f\xbb\xb5\x02\x2d\x79\x6a\x2b\xb7\x4a\xfc\x21\x34\x65\xba\x03\x4e\xe8\x43\xca\x79\xb6\xd1\x84\x03\x67\xec\x54\x22\x90\xb9\xff\x9a\xc9\x76\x91\x95\x65\x42\x1e\x05\xf1\x03\xc3\xa0\x34\x7d\x92\x7d\x90\x94\x7a\xa5\x63\xdc\xad\xc3\x63\x54\x7e\x90\x16\x1c\x55\x58\x87\x11\x11\xce\x1f\x7a\x49\x9c\x5c\x97\xc7\xae\x6f\x5a\x37\xdd\x85\xc3\x51\x04\x45\xc8\xf2\xdf\x51\xce\xff\x11\x3d\x1b\x5f\x7b\x3a\x81\x9d\xa7\x66\x68\xa2\x35\x4c\x0d\x92\x3b\xeb\x8a\x2b\x62\xbd\x46\x3a\x79\xe0\x85\x83\xed\x22\x6b\xd1\x61\x0d\x47\x94\x71\xc5\x7c\xe3\x88\xaa\xca\x68\x92\x79\x56\xf8\x78\xc5\x1c\x61\x2b\x5c\xc7\xb2\x96\xea\x82\xdb\xe5\xcb\x71\x42\xfa\x9f\x2d\x47\x86\x43\xfb\x4e\xb8\x5a\x1a\x14\xa0\x56\x93\x34\x0d\x39\x83\xa0\xc2\x33\xc9\xfc\xfd\x9e\x4a\x21\x5c\x56\x4d\x91\x02\x65\x2f\xff\x55\xe4\x17\xdd\x2a\x38\xaf\xc9\x12\xc2\xbc\x60\xe8\xc9\xf3\x56\x0d\xcb\x53\xe0\xfd\x1f\x8f\x15\x1d\xf5\x4f\x69\x66\x2c\x9f\x9a\xad\x78\x4c\xa3\xcd\xc5\x8a\x69\x59\xce\x4c\x5d\x7b\xa3\x06\xde\x6e\x92\xfa\xac\x28\xc3\xb2\x30\x9e\x4b\x48\xfd\x9e\xdd\x93\x43\x3f\xf5\xf3\x41\x12\x4f\xbb\xa7\xbe\xa4\x18\x99\x6f\xea\x7c\xce\x19\x78\x17\x52\x2a\x77\xcc\xcf\x61\x6e\xd0\x2b\x0c\xaf\x11\x2e\x2e\x3c\x0a\xd0\x43\x62\x89\x5d\x56\x91\x71\x3f\x4a\x92\x21\x8c\xbe\x34\x1d\x95\x1f\xb2\x64\x2d\xb6\xb2\x77\x5a\xcd\xeb\xd0\x4f\xc3\xdc\x8f\x10\x10\xc1\xb8\x43\x1c\x57\xaa\xe2\xb4\x1e\xe0\xe3\xfc\x65\x93\x90\x4f\xb9\xe9\x97\x01\x1f\x06\xba\xfa\x08\x22\x20\xbe\x71\x9a\xc7\x91\xbf\x92\xa4\x5a\x93\xf8\x82\x22\x7d\xbe\xa9\xe2\xb6\xa3\x76\xb1\xf6\x4c\x9c\x67\x85\x12\x98\xbe\xa5\x0f\xc9\x5b\xb5\x5c\xdd\xa1\x17\xda\x41\x79\x16\xb5\x1c\xd3\xe0\xf7\x3d\x45\xee\xf9\x7d\x75\x3c\x98\xb8\xfc\xcb\x87\x4b\xbf\x0b\xa3\x7f\x06\x2b\xc7\x2a\x0b\xdb\x06\xc7\xfb\x1a\xae\xcc\x9e\x12\x2a\x41\x6f\xc0\x7f\x57\x9c\xec\xcf\x71\x51\xf1\xdf\x78\x4e\x36\xe1\x0c\x8c\x85\x90\xb5\xd3\xf3\x88\x59\xae\x0b\xcd\xcc\x53\xcb\x77\xd8\x33\x69\x55\xa7\xed\x9e\xe7\x36\xc4\x3d\x7d\xfc\xfa\x99\x19\xfa\x71\xab\x02\x50\xd0\x0c\x43\x17\x55\xea\xa1\x17\xa6\x26\xc8\xa3\xb5\xd9\x9a\x0b\x66\xf5\x12\x6c\x82\x67\x13\x2e\xb2\xfd\xc6\x17\x2d\x41\x14\xc2\x4e\x2b\x9b\x55\xfe\x94\xf0\x20\xb8\xee\xca\xd1\x20\x8c\xc2\xd1\x28\x8c\x91\x6a\x45\x95\xea\x87\xb4\x8c\xf9\xba\x36\x7d\x8b\x73\xed\x51\x1a\x26\x9c\xc8\xb4\xe2\xf2\xb6\xde\xb5\x51\x8b\x57\x9f\x29\x7d\x82\x3c\x74\x21\x3d\xcc\xc9\x67\xe5\x62\xdf\x6c\x75\xd4\xda\xbd\x57\x4b\x92\x48\xbe\x30\x4f\xd0\x29\xe8\x78\x17\xe9\x8d\xa4\xc6\xe8\xf6\x57\x9e\xfa\x3d\x93\xee\xa4\x81\x10\x16\x52\xd7\x95\x8b\x70\x0a\x27\xd2\x6d\x2a\x48\xa3\xca\x70\x0a\x13\x8e\x84\x3f\x1b\x65\x24\xdf\xaf\x70\x90\xc8\x77\x63\x57\x18\xfe\xa4\x96\x37\xf8\x6a\x9b\x1a\x55\xa9\xe3\xc9\xf2\xcc\x96\xf3\x86\x93\xed\x3e\xcd\x9b\x60\x22\x6b\xbb\xf4\x85\x83\xed\xa5\x34\x89\x81\xb1\xe1\x8c\x0b\x7d\x42\xb2\x2f\x8e\x3c\xc1\xbc\x16\x44\x45\x16\xae\x08\x98\x9d\xbf\xb3\xf2\xfd\x5b\x17\xed\xfc\xa1\xf6\xd0\xef\xc7\xe1\x52\x18\x18\xfe\x11\x8b\x8e\xb5\x74\x6f\xf7\xd5\x8f\x64\x45\x16\x98\x51\x1e\xb2\x96\xd2\x01\x57\xc1\xb1\xec\x17\x27\x55\x8a\xb0\x5b\x64\x61\x6c\xb2\x6c\x68\x62\x6a\x44\x83\x0b\x01\x16\x14\xbe\xae\xa1\xf5\x2c\xce\x2b\x4d\x96\x28\xdb\xa4\xd4\x16\xb6\x21\x44\xe5\x9b\x8e\xeb\xa0\x0e\x0c\x91\xdb\xc1\x9a\xa9\xfa\xed\x41\x5b\xbf\xad\x23\x25\x47\x42\x39\x04\x83\x79\x9a\xf6\x06\x5f\x2b\xe3\x9c\x27\x71\xbf\x00\xa3\x34\x16\xf3\x0f\x60\x98\x10\x72\x1f\x51\x25\x88\x77\x54\x4b\xb7\x40\xba\x91\x65\x66\x84\x83\xc2\xda\x5f\xab\xa5\x52\xca\xb9\xf6\x53\x17\x91\x89\x04\x5e\xcb\xca\x23\x9f\xab\x65\xa6\x29\x5d\x48\x9c\x63\xb6\xdb\x0c\xa1\xe8\xfb\x64\x73\xf8\xba\xb1\xc9\xcd\xef\xcb\xce\x83\x63\x34\x4b\x65\x0e\xd8\x7e\x2e\x62\xe1\x75\x37\x6b\xe4\x6f\x8b\x73\xe5\xe6\x0d\x52\x4e\xff\x72\xc6\x49\x13\x8f\x0b\x17\x96\xb4\x35\xf8\xfd\x34\x09\x06\x66\x18\x06\xbe\x56\x0b\x05\x5c\x88\xaf\x27\x5b\x9f\x72\xfe\x90\xa2\xfb\x61\x32\x68\xcf\x61\xcd\xea\xda\xd3\x2f\xbf\xdc\xce\x07\x05\x52\xa0\xb6\x60\xfc\xbc\xa3\x5f\x6b\xfc\x7b\x3f\xdf\x41\x76\x01\x15\xe8\xdf\x23\xeb\x8f\xd4\xfa\x15\xaf\x8c\xc5\x05\x68\xe4\xd2\x3a\x0f\x23\xa9\x66\x7b\x8d\x9e\x97\xae\xdd\xd9\x89\x0e\x92\x8a\x38\x7b\xd4\x71\xdf\x5f\xc2\x19\x23\x88\x37\xdd\x71\xa6\x3a\x82\x4f\xc3\x72\x8b\xa6\x31\xfd\x0e\xfc\x9e\x93\x5c\x48\xb5\x5c\x4f\xa5\xbf\x68\xb9\xc8\x16\x5d\xb3\xb4\x02\x3f\x6d\x6c\x21\x44\x7e\xbe\xda\x0b\xc6\x5f\x8c\x43\x5f\xea\x20\x0d\x89\xd7\x2c\xec\xc7\x7e\x44\xbe\x3d\x4e\xc8\x2b\x9a\xc2\xf9\xaf\x90\x73\xe0\x1b\xcf\xa5\xa9\xaf\xd4\x6c\xfe\xe2\x5c\x3b\x8c\x57\x92\x68\xc5\xf4\x40\x1f\x8e\x4c\xf1\x67\x78\x66\xa4\x89\x36\xc6\xea\xe4\x04\x2e\x1f\x6f\x36\xdd\xf9\xbc\x5a\x95\x79\x6d\x10\x76\xc3\x7c\xca\x75\x18\x5c\xc5\xc8\x09\xdf\x61\xb9\x22\x71\x96\x1c\xa9\xeb\xa6\x2d\x1e\xf8\x72\x79\x6e\xaf\x98\x14\x56\xad\xe5\x54\xaf\x3d\x05\xee\xb3\x9e\x4d\x3f\x4a\xba\x7e\x34\xe3\x16\xf1\x79\x5d\x98\xba\xa0\xe8\x15\x66\x88\xa3\x04\x5e\xc5\x67\x78\x2d\x26\x1b\x6e\x48\x2e\x1f\x68\xaf\x0e\x92\x56\xb9\xe0\xa4\xa1\x5e\x51\x3a\xdd\xb6\x1e\x6a\xf2\x5a\xd8\x0b\x5f\x67\xa1\x6f\x58\xf5\x4b\xca\xbd\x38\x4f\x93\x2c\x1d\x3f\x5b\x4d\xde\xe2\x5c\x7b\x68\x72\xb0\xce\xab\x6a\xbb\x44\xb8\x8f\x52\x93\xac\x4e\xa7\x6f\xde\xa8\x84\xfd\xcb\x26\xde\xe5\x82\x3f\xe0\x8d\x2c\xef\xf9\xfc\x21\xfe\xff\x47\xb4\xb2\xd0\x4f\x69\x6d\xc2\x6d\xd8\xd9\x51\x89\xce\xb3\x63\x55\xe7\xbb\x37\x76\x9c\x66\xbb\x90\x38\x83\xef\xfb\x17\x63\x15\xe1\x5c\x54\x2e\xc8\xe5\x0a\x0d\x73\x3a\x4a\x00\xd1\xca\x76\x38\x4b\xc4\xc5\x36\x4e\xe4\xe2\xe7\x24\xab\xab\x94\x45\x54\x1b\x08\x9f\x18\xfc\x71\x25\x33\xd9\x33\xc3\x24\x28\x7f\x21\x40\x9a\x1c\x16\x13\x8d\xc4\xc8\x74\x01\x95\x8f\xb3\xe6\x6e\x25\xfa\x1e\x86\xf9\x2c\xbc\x05\x8c\x08\x08\x85\x31\xaf\xa0\x95\xc2\x69\x06\x08\x05\x82\xb2\xdb\x2a\x40\xbb\x8d\x87\xb2\x35\x8a\x72\x6c\x25\x4d\xf0\xa4\x62\x96\xc8\xd3\xd0\x4f\x83\x81\xcf\x59\x55\xdb\xef\x64\x43\x9e\x13\xde\x17\xaa\xed\x7a\xe5\xe1\x51\x2e\xff\x69\x15\xd5\x80\x4b\x47\xc4\xc4\x94\x24\x01\xa4\x7e\xf8\x5a\x25\x4d\xf2\x41\xe9\x8c\x53\x4d\x89\x1b\x94\x14\x18\x02\xd4\x02\xb0\x33\x4c\xcc\x2c\xb5\x6b\xd7\x56\xf7\x8b\xcf\xfe\xa3\x56\xe5\x23\xfb\xc4\xf3\x3b\x53\x41\x46\xe5\x7e\xb4\x87\x72\xe8\xe2\x52\x4e\x39\xdd\xb6\x4d\x32\xcf\x92\x05\x50\x45\xf2\xf7\xe1\x6b\x59\xaa\x64\x5b\xbb\xdd\xc4\xe3\x20\x3d\x3e\x35\x51\xd0\x2c\x4f\x41\xd2\x2f\xc3\x82\x62\x5e\x8f\x2b\x81\x81\xcb\x1a\x48\xd0\xea\x60\x82\xf1\xa2\x1f\xc2\x9c\xf1\x67\x68\x79\x59\xb2\x58\x07\x47\xff\xcf\xaa\xad\x3b\xcb\xd3\x70\x59\x28\x04\xb0\x3d\x4e\xd2\x0b\xf1\x75\xcd\x55\xd8\x37\xdf\x5e\x31\x69\x2f\x0c\x72\x9c\xe0\x9a\xaf\xdf\xfa\xb1\x0a\x9e\xde\x40\xd5\x62\x04\x21\x75\x78\xae\x22\xd8\x2e\x14\x69\x0e\x77\xb0\x1c\xae\x86\x9f\xaf\xf6\x2a\x1d\xae\x49\x6c\x1e\x6d\x59\x9a\xc1\xa7\x26\x55\xfe\x80\xc3\x73\x6c\xac\xa8\x45\x83\xa3\xab\x2b\x74\x0a\xa1\xeb\xf4\x2b\x1d\x35\x1d\x7c\x6e\xb9\x36\x7e\x8e\x9f\x83\x27\x26\xca\xd4\x3e\x34\x29\x87\x48\xd6\x93\x3a\x37\xef\x83\x92\x1a\xad\x56\x8f\x77\x5c\x11\xf4\xc1\x58\x33\x16\x35\x89\x7b\xad\x86\x11\xaa\xe6\x78\x5a\x64\x43\x85\x1b\xb8\x82\x2a\x6f\xe0\x72\x2c\xdd\xb7\xbc\xa5\xc8\x65\x3e\xf3\xb4\xd4\xc4\x67\x0a\x14\xe3\x47\x61\xb6\xbc\x86\xa4\x8f\xb5\x56\x0e\xf6\x71\x5a\xf1\x03\x64\xc5\x68\x94\xa4\xf9\x1e\x7a\x74\xc4\x7a\x13\xa5\xef\x76\x9b\x8a\x14\xf6\x90\x29\xf7\x07\x6b\xee\x63\x48\xd0\x3d\x73\x1f\x87\xb4\x10\x72\x95\x43\x82\x8c\x01\x54\x92\xe0\x20\xbd\x0f\x17\x85\x9b\x54\xf8\xd9\x11\x4c\x31\xaa\x11\x89\xe7\x4b\x8a\xd2\x09\xa9\x3d\xe6\xd7\xa2\x35\x8b\x2e\xba\x0f\xc6\x4a\x2d\xff\x28\xde\x0d\x2e\xc2\x8c\xc2\xea\x0d\x8c\xdf\x7b\xb5\xf0\xd3\x9c\x38\x0d\x16\x84\x4a\x9b\x3b\xf7\xb1\xb9\xee\x12\x94\x0d\xe1\xce\x29\x95\x0a\x59\x07\xf7\x25\xff\x83\xb7\xa7\x8a\x62\xc8\x06\x24\xd2\x8c\xac\xf9\x9f\xc1\x61\xe7\xbc\x0d\x7d\x07\x9e\x18\xf3\x8b\xd3\x0f\x8e\x1c\x7f\x40\x4d\x95\x3a\xef\xf1\x87\x90\x56\xb1\xc2\x79\xf3\x87\x5c\x45\x62\xc1\xca\xe5\x6e\x8e\x95\xf6\x5f\x23\x5a\x66\x94\x26\x23\x9f\x43\x6c\x80\xd2\x10\x47\xf2\x75\x05\x53\xbc\x92\x04\x53\xaa\xdc\x81\xe0\x55\xbc\x60\x25\x9c\x72\xaf\x62\x30\xc3\x38\x68\x39\x29\xb8\x0f\x55\x36\xff\x43\x5b\xd2\x1f\x99\x74\x89\xf2\x0a\x2d\x95\x8a\xf7\x5c\xe5\xbe\x5e\x07\x3f\x3c\x77\xa0\xdd\x2b\xf0\xdc\x5a\x8f\x8c\xaf\x6b\xf5\x93\x97\x5f\x2e\x3d\x61\x72\xfa\x54\x4f\x3b\xa3\x79\x84\x3c\x4c\xd2\xd0\xd4\xf0\x32\xe3\x22\xaa\xbf\xc0\x9f\x89\x1a\x35\xed\x01\x49\x5d\x63\x7d\x62\xb8\x19\x03\x28\x06\xd8\xf1\xe9\xbe\x52\xf4\xfa\x86\xfb\x19\x2b\x03\xc6\x1a\x63\x00\x50\xda\xfe\x00\xa7\x25\x07\x63\x2f\x65\x00\x7a\x0a\x2c\xb5\x4d\xcd\x80\xe2\xa7\xcb\xa6\x5c\xbc\x3b\xe9\x6b\x60\x8b\xbe\x87\x9a\x2a\xdf\xe8\x0a\x98\x5e\x86\x47\xc6\x8e\xc6\xf1\x82\xa7\x5a\xb5\xd6\x69\x47\xf1\x3f\x28\xee\xe9\x3f\x55\x10\xaf\x62\x94\xe5\x7e\x98\x72\x70\x29\x20\x97\x96\xe5\x8f\x39\xa6\x70\xb4\x43\xbf\xef\xbf\x5e\x06\xe1\x64\xd7\x90\x10\xbf\xa9\xa8\x0e\x8f\xe9\xee\x1b\x2d\xf6\xb5\xff\xd9\xc3\x0a\xeb\xb4\xa1\xb1\x4e\x9a\x30\x37\xa5\x93\x64\x85\xa1\x69\x9a\x5f\x9a\xaf\x6b\x25\xb8\xf9\x43\x6d\x3f\xf5\xbb\x2a\x49\xc1\x11\x15\xdf\x4c\x1e\x57\x3d\xac\xac\x94\x54\x8e\x09\x4c\x2f\xc0\x96\xf0\x35\xc0\x7f\xc9\xd7\x0a\x4c\x74\xbf\xc1\x3c\x13\x7e\x8e\xdb\x70\x10\xa0\x1c\x53\xc1\xca\x31\x55\x72\xee\x86\x51\x94\xed\x6a\x29\x95\x7c\x9a\x5d\x09\x04\x14\x31\x0c\x88\x7e\xb8\xa9\x1e\xb3\x8b\xc3\x02\x74\x78\x58\x49\xff\x61\xac\x38\x64\xcf\xc1\xed\xb0\xbd\xf7\x16\x7e\xcb\x1b\x02\xf3\xf7\xf6\x58\x61\xd3\x3e\x6a\x00\x09\x59\x24\x52\xac\xa1\x83\xc7\x55\xae\xfa\x78\x03\x2c\xaa\x9f\xe4\xe8\x93\x85\x59\xd2\xdd\xbc\x9c\x2d\x46\x14\xfa\x40\x55\x3f\x46\xc6\x0f\x4c\x1e\x0e\x19\x97\x87\x95\x7c\x49\x09\x00\x30\x6f\xab\x20\x54\xa5\x69\xbb\x9b\x26\x71\x90\x30\x87\x01\xfc\xf7\xe9\x8e\x12\xe0\x98\xae\x85\xfb\xfb\xe6\xdb\xd9\x28\x59\x46\x96\x5e\x9a\x12\xe8\xbb\xa5\x75\x41\x42\x30\xc2\xac\x48\x97\xb2\x55\x52\xdf\xbf\x7f\x13\x8a\x9f\x56\x9b\xd2\xfa\x9e\x17\x60\x39\x50\x28\xf8\x12\xaa\x26\x30\xe6\x3b\xf4\x62\x4b\xfd\x61\xe9\xe3\xcf\x28\xc6\x06\x16\x60\x90\xaa\x8a\x43\x0b\x5d\x55\x69\x66\x50\x10\x01\xbb\x70\xb5\x31\xb6\xcb\x0d\xa3\x7f\x70\xea\x6e\x9b\x94\x9e\x0f\x5f\x77\xea\x99\xa9\xbe\x1f\xf2\xc4\x8a\xa0\x4d\xcb\x89\xdb\x34\xb1\x99\x2d\x11\x33\x6f\xf9\xd8\xf0\xdf\xce\x2a\x5f\xee\xac\x05\x43\xf5\x92\x55\xca\x4f\xb7\x5c\x13\x21\xd0\x6b\xe2\x76\x39\x71\x6c\x30\xe1\xed\x50\xfd\xa0\xf7\xe0\x6f\x4b\x95\x57\x05\x91\x50\x83\xa9\x48\x13\x0b\xbc\x4c\xf1\x3d\xd6\xfd\xad\xaf\xb6\x7b\x7e\x8e\x54\xc0\x82\x3b\x84\x2d\x4f\x10\x53\xc5\x63\x58\x3f\x54\xdc\x40\xb7\x55\xc9\x29\x8b\x8d\xbf\x6c\x52\x95\xc6\xfb\x8c\x76\x35\x5f\x5b\x02\x96\x28\x34\x04\x3c\x44\x32\x97\x13\xc5\xac\x8d\x42\x96\x18\xa9\x5c\xd4\x6d\x15\x45\xc9\x3c\x8f\xfa\x9f\xc2\x25\xc5\x0b\x7f\x0a\x6f\x8a\xff\x45\xf5\x6b\x66\x03\x3f\x62\x69\x2f\xbc\xf4\x51\xfa\x6e\xc4\x45\xa7\x14\x90\xfa\x9a\x02\x86\x67\xfe\x92\xc9\xd7\x28\xbf\x68\xe3\xae\xf2\xeb\xf1\x0a\x70\xe4\x85\xa8\xb2\x21\x3b\xd3\xf7\x4d\x14\x06\x34\x00\x00\x2c\x32\x97\x33\xdf\xd4\x10\xbe\x0b\x0b\x65\xcc\x46\x85\xff\xae\x2d\x54\x34\xc9\xb9\x36\xb1\x95\xa7\xc6\xef\xa1\x02\x29\xe4\x54\xe5\x63\xc3\x1f\x3f\xa9\x09\x9c\x6f\xaa\x7e\x19\x3f\x08\xcc\x28\x9f\x26\xc8\x13\x2f\x0c\x20\x58\x6c\x2e\xab\x8c\x97\x6c\x2e\xcb\xfd\x95\x0a\x91\xfa\x7e\xda\x0b\x63\x46\xdf\x4a\x58\xa3\x61\xac\xde\xe7\xa5\x91\x83\x64\x38\xf2\xe3\xd0\xe2\x92\x61\x4c\x38\xb7\x8f\xe8\xf1\x8e\x86\x58\x5c\xa8\x0d\xf2\x33\xed\x30\xcb\x0a\x23\x5a\x12\x4d\x14\x8f\x0d\x47\x5c\x6e\x49\xc4\xe0\x1c\x4f\x53\xe4\x83\xf5\xb7\xb7\xe3\x9a\xad\x36\x75\x20\x58\x8c\x46\x51\x28\xca\xcf\xd6\xa8\xdb\x94\xc6\x71\xd5\xb3\x97\x15\xdd\x34\xc9\x13\x9a\xf8\x46\x38\xb2\x45\x6d\x52\xfa\xce\xe6\x87\x2d\x9a\xc1\x21\x1b\x1a\x25\xcb\xfc\x1c\x9d\xf5\xe5\xdf\x21\x96\x3d\x8d\x53\x89\x6f\x6a\xd9\xbd\xe7\x17\xda\xa5\x71\x21\x42\x7b\xe7\xe8\xbd\xa1\x76\xd4\x1b\xca\xad\x5e\x8e\x93\x3c\x5f\xc3\x71\x0c\x67\xfc\x04\xd6\x01\xdf\x58\x64\x42\x6a\x96\x4c\x3a\xe5\x3a\xd8\xce\x61\x77\x60\xe4\xd1\xf9\x8d\x15\xfb\xa1\x3d\x7b\x72\x63\x62\x69\x14\xc0\x36\xb8\xe7\x39\x70\xef\xbd\x4a\x4e\x2b\xcc\x7d\x3e\x48\xb8\x1e\x33\x76\xae\xd1\x26\x42\x0c\x84\x40\xbf\x83\xbc\x00\x26\xf0\x7a\xb5\x04\xa0\xb2\x8d\x1b\xe3\xbf\xb1\x35\xcb\xb2\x20\x6b\x71\x27\x3d\xb9\x54\xdf\x5a\x56\x54\x76\x07\x4e\x24\xd5\x38\x2f\xb6\xe9\xc1\x58\xf3\x86\xa1\xfd\x09\x06\xf1\xac\xc2\x57\xdc\xc2\xce\x13\x0e\xfd\x47\x95\xc2\x68\xdc\xf3\xd5\x0a\xf9\xae\x5e\x21\xdf\xf5\xbe\xe0\x30\x0e\xb1\xcd\xe6\x03\x0a\x2a\x51\x32\xcb\xbd\x49\x87\xe1\x94\xd3\x76\xd4\xf2\x20\x41\x32\x1c\x26\xf1\x6e\x3c\xab\xf4\x35\x13\x25\x03\x42\x15\x64\x56\x1e\x51\xd9\xae\xf7\xc7\xae\xd8\x32\xa6\x20\x4a\xe2\x07\x7a\x42\x64\xac\x8e\x70\xce\xdb\xb2\x25\x97\x6f\x09\xf7\x81\x89\x8e\xe0\xee\xfd\x10\x01\xbf\xe6\x51\x86\x3b\xf2\x31\xe6\x0c\x8e\xfb\xa7\x0a\xb4\x33\x4a\xc2\x98\x70\xeb\x1a\x80\x44\x5f\x2f\x21\x50\x53\x9f\x47\x98\xb1\xdc\x1b\x23\x1e\x11\x4c\xa1\x00\x0e\x98\xe0\x06\xb6\x08\x7e\xfd\x88\xc3\x15\x14\x51\x9a\xc4\x06\xcd\xbf\x22\x16\x4f\x2f\xca\x37\x76\xb3\x76\xa3\xc2\x8c\xd2\x30\xce\x15\x61\x2d\x2a\xda\xd2\x9b\xee\x80\x06\xab\xc6\x5f\xde\xa1\x1a\x55\xd0\x5e\x6a\x65\xc9\xe7\x0f\x69\x7a\xef\x79\xf9\x23\xc0\x16\x6c\xe0\xa1\x64\xbd\x9c\x2e\x97\x1f\x98\x41\x92\x66\x70\x14\xa4\xaf\x51\xf5\x38\x6e\x69\xb8\x0f\x66\x5c\x48\xcd\x38\x6c\x2b\x32\x5f\x8e\x3f\xc6\xe6\x1a\x76\x13\x6c\xce\xf6\x89\xcb\x1b\x9c\xaf\x44\xad\xab\x83\xe4\x71\xc5\x20\xb6\x1b\x89\x21\xa0\x23\xf7\x02\x07\xc6\xdd\x5d\x98\x75\xab\x1c\x51\x5a\x12\x69\x05\x2e\xdd\x2b\xab\x29\x5b\x8e\xb3\x3d\xae\xac\x03\x07\x5a\x54\xfe\xab\x47\x08\xa0\x29\x2d\x2b\x2d\xcb\x06\xf7\x40\xf7\x3e\x80\x03\x95\x9b\xc1\x28\x09\x60\x15\x66\x4b\xc3\x85\xcc\xd7\x4d\xbc\x25\x8c\xc9\xdd\xb1\xd3\xa1\x7d\xb3\x16\x93\x7c\xb5\xdd\x4d\x8c\xb5\xcb\xcc\x10\x86\xc7\x15\xba\x30\x9d\x04\x18\x85\xbd\x16\xfd\x90\xe4\x8e\xe9\x8d\xf9\x66\xd2\xd4\x5c\x14\x25\x71\xdf\xa4\xd3\x2e\xa3\xfb\x6d\x5d\x69\x41\x79\x03\x19\x85\x77\xe1\xde\xc0\x90\x9e\xb4\xb5\x8e\x81\xf1\xd3\x9c\x21\x47\x2c\xb1\xcd\x06\x09\x2f\x7b\xd7\xab\x30\xdd\x3c\xae\x09\x36\xb2\x30\xcb\xc1\x83\x0d\xe3\x85\x6d\x82\xe1\x7e\x78\xa2\x68\x22\xee\x7b\x4f\x54\x2d\xe6\xe2\x5c\x7b\xdf\xbe\x2f\x96\x7f\x6d\xa5\xe9\xcb\x89\x66\x0d\xc5\xb1\x2b\xc4\x4e\x13\x70\x96\xe9\xdd\xc6\x8a\x6b\x73\x7a\xa2\xda\x65\x4e\x8d\x5d\xe5\xf9\x38\x51\x32\x21\xb1\xfe\x96\xa7\xf8\x6d\xb7\x13\x28\xda\x32\x8d\x95\x5b\x44\x48\x8e\x1d\x99\xdb\xd7\xf6\x60\xfd\xe1\x5f\x38\xa7\x86\xf8\x83\x19\x77\x99\x88\x98\x16\x07\x86\xe8\x3a\xe1\xd0\xec\xb3\x5b\xfa\xb4\x75\xcf\xc9\x9b\x9e\x1d\x93\x6f\x64\xdb\x0c\xcb\x39\x92\x34\x30\x86\x9b\xeb\x79\x58\xe4\x88\x77\xbf\xef\x3d\x61\x1b\xc8\xcb\x78\xc8\xc4\x79\xc8\xc5\x55\x61\x4d\x77\xe8\x8d\xf5\xcf\xc7\x50\xf8\x59\xa6\x7a\xba\xef\xea\x2e\xde\xbb\xea\x28\x19\x26\x2b\x22\x61\x24\xed\x8b\x8a\xcd\xf1\xa2\x62\x96\x58\x4e\x52\xe3\xcf\x94\xb3\x84\xb3\x92\x4e\xd4\xcd\x69\xb0\xe1\x48\xf3\xa7\xea\x9e\x84\x4e\x19\x0b\xc2\xd7\x52\xd5\xf3\x87\xda\xc1\x20\x09\x03\x71\x8a\xac\xdc\x84\xc5\x57\x9e\xab\xbd\xdb\xf3\x0b\x10\x34\xea\x26\x3d\x98\x5c\xc9\x44\xb4\x94\x46\x88\xac\xf1\x20\x19\x8d\x4c\x3a\xab\x6a\x06\xa7\xf5\x79\x0e\xe1\x22\x4c\xb2\x6e\x85\xf8\xdb\x1d\x45\x82\x7c\x93\x4e\x39\xf8\x27\xb7\x14\x2b\xcf\xc6\x96\x2d\x51\x0c\x4d\xfa\x30\xbd\x3a\x73\x6f\xd2\xd2\xd4\x80\x49\xc6\x33\x8f\x1d\xf7\xea\xe8\xac\xa7\x3a\xb7\xc1\x90\x86\x41\xdf\x43\xa9\x6d\xab\x2b\xe0\x52\x54\xb3\x93\xf2\x99\xc5\x4f\x55\x5e\xdf\xd1\x9a\xd3\xf6\xf2\xcb\xa0\x44\x4e\xfd\x35\x74\xb6\x48\xff\x4a\xcb\x52\xe2\xa3\xce\x87\x6f\x3e\xd6\x34\xd6\xb1\x9f\x17\xa9\x85\x1c\x4b\x43\x22\x3d\x8f\x64\xe7\x1b\x1c\xcc\xcc\x8c\x7c\x80\xf2\x2c\x95\xf3\x59\x25\xc7\x78\x76\xac\x8b\x5b\x69\x1e\x06\xe1\x88\xfe\xda\xb6\xcd\x60\x07\x39\x40\xae\xe0\x2e\x7a\xab\x26\xcb\x4d\x1a\x4f\x29\xb6\xbb\x63\x8a\x5c\x79\x5b\xc7\x41\x7f\x6e\xea\x75\x6b\xcc\x28\x9b\x6e\x55\xd4\xbb\x0f\x54\x9c\x70\x09\x64\x5d\x8b\xd5\xf1\x06\xc8\xf1\x81\x76\x1e\x0e\x6d\xb8\x81\x59\x60\x2e\x6d\x11\x6a\xa3\x27\xe3\xd8\xa3\xe1\x1b\xda\x79\x6a\x2c\xa3\x3c\x86\xf0\x33\x5d\xd4\xfa\xac\x09\x63\xfd\xe5\x76\x6a\xd0\xc0\xc7\x5d\xc6\x82\x0b\x9b\x72\x82\x58\x67\x1a\x7a\xdf\xda\xa6\xdf\x97\x87\xd5\x81\xaa\x48\xf6\x2b\x36\xf9\x3b\xde\x5e\xbb\x69\xe2\x3c\xf5\x83\xbc\x60\x8b\x83\x14\xe5\xff\x44\x8b\x93\xaf\x55\x12\x16\x2d\xc5\xb4\xee\xe1\x82\xff\x48\xab\x8b\xff\x68\xfc\x54\xd5\xfe\x3f\xbf\x40\xd5\x94\x59\x07\xff\xfd\x06\x19\x54\x51\xf8\xa0\x91\x80\x0f\xfb\x07\x9a\x28\xe3\x1a\x1b\x4b\xec\xf0\x6d\x1d\xa7\x33\x04\xa5\x5f\x66\x0b\x55\x29\xce\x41\x31\xa4\x13\x4a\xb8\x62\xaa\x4c\xd4\x36\x0d\xfb\x96\x22\x9b\x5b\xf5\x53\xc8\x21\x8b\x17\x5c\x7e\x1e\xce\x3a\x32\x93\x7c\xb8\xaa\x8f\xbc\x62\x72\x98\x58\x01\x5c\xb4\xac\x2e\xe3\x49\xd5\xc7\xba\x14\xa6\xc3\xdd\x74\x10\xc0\x48\x5e\xd3\x90\x01\x56\xb4\xc1\xd9\xf1\x0e\x99\x18\x76\x32\x3d\x45\x4f\x07\xfe\x65\xbc\xff\x76\x64\xdb\x60\xa0\xde\x1f\x3b\x74\xe0\x19\x9d\x6d\x26\xbc\x9d\xcb\x71\x94\xb3\xc2\xbf\xe1\x39\x37\xfa\x08\x0f\x2c\xdc\xb5\x6b\x56\x62\xc2\xcf\xf2\x24\x0e\xb3\x81\xf5\x61\xc4\x37\x2f\xbf\x93\xaf\x3b\x8f\xa9\xec\x48\x68\x22\x6e\xa9\x67\x35\x66\x38\x77\x2c\xc9\x82\x89\xc5\xe1\x7c\x75\x5c\x1e\xed\xda\x6b\x13\xdd\x16\x0d\x89\x7c\xfd\x75\x82\xd6\xd1\xd1\x0b\x67\xe2\x28\xb1\x18\x88\xdf\xeb\xd6\xf1\x2d\x4f\x93\x11\x89\x28\xab\x4b\x01\xb0\x6e\x9c\x54\x93\x5d\x4f\x6c\x19\x92\xa7\x80\xa1\x29\x66\xdf\x6b\x9e\x12\x48\xbb\x66\x1d\xe7\xa0\x48\x53\x96\xa9\xb4\x10\xa4\xf7\x35\x67\xc4\xfb\x4d\xdd\xba\x1a\x36\xcd\x84\xd7\x9e\x7b\xe3\x8d\x86\x06\x80\x03\xed\x6e\x52\x58\xee\x21\xac\x10\xc6\x6c\xf1\x8d\xb7\x35\xfb\xfb\xb5\x17\xdb\x4f\xb3\x45\xb1\x62\xbf\xa5\xa3\x2a\x32\x6a\x0d\x25\x62\x2e\xa4\xb5\x5c\x66\xea\x8c\x22\x3f\x3d\xe3\x4c\xae\x09\x06\x7e\x1c\xbe\x6e\x7a\x33\x6e\x65\x6f\xeb\x28\x2a\xcb\x8f\xb1\x94\x25\x4f\x54\x0e\x8e\x10\x7e\xaa\xe4\xf1\xbb\x8a\x2e\x30\x29\xf2\x28\x8c\x79\x61\xbd\xc4\x93\x7b\x5d\xeb\xc9\x5e\xb7\x45\xa3\xae\x89\x92\xd5\x87\xcb\x2f\x85\xc3\x81\x66\x01\xfa\x81\xef\xfe\xc3\x8e\x42\x93\xe8\x86\x96\xcb\x70\xf2\x14\xba\x5d\xb2\xf2\xbb\xa8\xa3\x4b\xba\xe0\xca\x97\x47\xba\xfc\x51\xea\xe6\xb3\x1d\x2f\xfb\xf7\xf3\xa6\xdb\x3b\x69\x20\x5f\xf0\xbb\x89\xe6\x77\x94\xe6\x2e\x7a\x5b\x21\x60\xdd\x0a\xe6\x9b\x3f\xd4\x76\x64\x43\x64\x97\x30\x2e\x88\xa1\x2b\x65\x18\x14\x26\xee\xd7\xbe\x62\x61\xa1\xfd\x4a\x91\xe5\xe1\xd2\x9a\xdd\x93\xb6\x97\xcc\x09\x03\x69\xca\xb1\x34\x59\x36\x69\xb6\xd3\x35\x65\xdf\x53\x61\xc1\x09\xdd\x2a\xf3\x43\xad\x6a\xb7\x49\x93\x08\x07\xee\x68\x69\x9d\x37\xcf\x6b\xed\xe7\x0d\x4f\x71\xaf\xdf\x18\xef\xb2\x16\xf7\xc0\xbe\x19\xe7\xbf\xf3\x41\x48\xbe\xc9\x8f\xf7\x4c\x1c\xe2\xf4\x6f\x75\xdc\xf3\x6c\xe8\x41\xdb\x70\x2c\xbb\x69\xd2\x63\x05\x22\xdb\xa3\x62\x5b\x7c\x6f\x68\xac\x09\xa0\xac\x88\xeb\x1f\x8c\x55\x4e\xf7\xdd\x5a\x03\xd5\xbe\x7d\x6d\x26\x42\xb5\xd4\x84\x8a\x22\xd4\xe2\x19\x6a\x6c\x1b\x87\xe7\x5e\x6a\x2f\x99\xd2\x0d\x92\x09\x17\xf9\xe5\xf2\x3d\xf8\xba\x86\x40\x3d\x3c\x47\x15\x99\xf2\xb1\x65\x7d\xaa\x86\x9e\x4b\x9e\xc2\x60\xfe\x46\x03\xbb\x7c\xdb\x0f\x5e\x2d\x42\x93\x05\x5c\x58\x15\x5b\xad\x76\xd4\x11\x4f\x4b\x36\x99\x6c\xb0\xa3\x5c\xc2\x72\xb2\x3b\x70\xe2\xc6\x56\x51\xeb\x79\x2b\x93\x4e\x4f\xc4\x37\x2a\x05\xe0\x9a\xc2\x5f\x2d\x92\xdc\x87\x02\x7e\x39\xe6\x08\x62\x8e\x2a\xfd\xc7\x1b\xaa\x04\x7a\x00\x33\xce\xac\x25\x6a\x1d\x9a\xd7\x58\xcb\xc9\xc9\x5d\x83\x20\x5b\xd2\xc9\x7b\x14\x91\x4a\x96\x19\x22\x70\xb5\xfe\xa5\xa7\x1c\xcf\xa6\x06\x3e\xb2\xe0\x45\x6a\x68\x53\x21\x4d\x84\x70\xd4\x72\x5f\x7d\xed\x45\x4b\x0a\xa2\x50\x1a\x69\xbf\xb0\x8d\x5d\xd2\x07\xa7\xf0\xe6\xb7\xc7\x0a\xa7\xd0\x52\x12\x27\xc5\xb0\x0b\x7e\x4a\x6e\x36\x56\xe5\xd0\x75\x25\xf3\x85\x8d\x8d\xef\x2a\x0f\x4a\x3e\x44\x22\xe3\xc7\x76\xfb\x22\xda\x00\x6c\x86\xaf\x3b\x92\xe7\xcc\x06\xe1\x52\x2e\x28\x5e\x4d\x64\x01\xe7\xf4\x87\x98\x49\x1c\x86\x57\x95\xcc\x5e\xb2\x62\xd2\xd7\x8d\x1f\x25\x85\x96\xf0\xdb\x50\x12\x7e\x1b\x4d\x12\x90\xc3\xb0\x17\x87\xfd\x41\x4e\xdd\x31\x00\x73\xec\xe8\x38\xe0\xd7\x05\xe5\xd7\x5c\x40\x00\x23\x36\xab\xc1\xeb\xcc\x8b\x34\x46\x38\x09\xe7\x4b\x73\x69\x5f\x52\x61\x93\x94\xaf\x19\x43\xc7\x3a\xf3\x6a\x40\xf7\xa0\xc7\x1b\x71\x2e\xaa\x72\x38\x5b\x2e\x8f\x15\x63\xff\x8f\xb5\xd7\xf8\xa9\x86\x87\x3e\xd5\x79\x42\x09\xb4\x24\xaf\xc4\xc9\x6a\xb6\x1c\x62\xf0\xb9\x5a\xa4\x04\xdb\xcf\x36\xf1\x02\xf8\x61\x0f\x03\x69\x9b\xaa\x9d\x3a\xd8\xba\xc2\x84\xfb\xf9\x20\x32\x39\x73\x34\x60\xe9\x1d\xa3\x45\xce\xd7\xf6\x44\x1b\x15\x51\x66\x88\xb2\x00\x93\xc7\x55\x35\x64\xc4\x40\x8a\x82\x45\x07\xe5\x02\x51\xe2\x50\xad\x25\x61\xb0\x16\x44\x00\xad\xf3\x21\xe2\xb5\xb6\x30\x9f\xc3\xcc\x7c\x50\x27\x0f\x9b\x6f\x2f\x85\x96\x41\x83\x11\x47\x9a\xd5\x6c\x62\xf3\x9a\x7e\xb7\x57\x04\xb9\xe9\x4d\xbb\xaa\xdd\x93\x1d\x47\xb3\xff\xfe\xd8\x25\x71\x4e\x29\xdb\xf6\xc4\x9e\x89\xf0\x8f\x0d\xfc\xb8\xcf\x0d\x30\xc0\x53\x73\x69\x8e\x6f\x2a\x09\xb0\x3c\x31\x2d\x24\x84\x2d\x02\xf0\x80\x95\x3f\xaa\x77\xc3\x1e\x9e\x9b\x6f\x0f\xfc\x61\x96\xa7\x05\x36\x93\x30\x19\xb7\xc8\x3f\xe5\xeb\x1a\xf1\xfb\x33\x60\x2c\x0a\x5f\xb7\x5b\x10\x50\x91\x9f\x28\x19\xc9\x9f\x58\xdf\x87\xaa\x13\x26\x0e\x84\xaa\x01\xeb\xf3\x12\xe6\x8b\x6f\x94\x11\x0e\x06\xa1\x59\xda\xed\xc4\xfb\x2e\x7b\x5a\xbc\xae\x92\xec\xdf\x4e\x32\x29\xc2\x50\x45\x79\xda\x4a\x5b\xbb\x50\xe7\xbb\x05\x70\x4e\x13\x6f\xef\x24\xf0\x31\xcc\xfb\x6f\x8d\x9d\x4c\xe6\x77\x15\x83\x17\xf7\x8c\x8a\xfc\xa5\xea\xf0\x3b\xdf\x94\x87\x49\x96\x96\xba\xc6\xcf\x55\x59\xe5\x98\x2a\xab\x1c\xdb\xaa\x06\x51\x1e\x8a\x2f\xbf\x4c\x1a\xb9\x70\x0a\x6e\x80\xf5\x80\x01\xb3\x58\x0f\x68\xe9\x3c\x01\xff\x0b\x29\xc6\xab\x04\xbb\x97\x05\x40\xa3\x6a\x4f\x2c\xcb\xde\x7e\x53\xa1\x4c\x6f\x78\x4a\xbf\xe9\x1a\x5a\xfb\x65\x31\x95\x2f\x8e\x48\xed\xa6\xae\xf9\xde\x27\x67\x41\x74\x35\x9b\x7a\xe3\x73\x3f\x32\x9c\x85\x67\x10\x90\xa7\x01\x41\x7a\x5d\xfa\xa3\x1c\x54\xf7\xd2\x29\xa5\xd4\x5d\x24\x5f\x8a\x82\x06\xcb\xbd\x49\xad\x9b\xc2\x4d\x69\xa9\xaa\xb4\x0e\x84\xf9\xc3\x34\x22\x02\x43\xd4\x5a\xbf\xf8\x7a\xa1\x3a\x77\xd0\xca\x3b\x30\xf7\xc2\x5a\xa7\xd0\x7f\x9f\x8d\x15\x93\xc6\x0e\xb0\xef\xc3\x96\x5c\x52\xc4\xeb\xdf\xa4\x17\xe4\xef\xd5\x78\x3a\x93\x06\x32\x14\x00\x00\xbe\x0d\xf7\x8a\x6f\x9a\xd8\x07\xb3\xa4\xc8\x07\xb4\x50\xf0\x3b\x1f\x78\x0a\xfd\x50\x87\xbf\xef\xdf\xdf\x0e\x92\x55\xde\x42\x38\x1b\xff\x0f\x6c\x21\xbe\xf1\x1e\x76\x35\xad\x96\x83\x87\x9d\xd6\x20\xf9\xd3\x4d\x3e\xd2\x28\x4d\xfa\xa4\xea\xcc\x5f\x8e\x3f\xe5\xf2\x1d\xdf\x28\x59\xfe\xa1\x9f\x86\xa6\xa5\x52\x69\x60\x35\x13\xf6\x3f\xc5\x64\x92\xfa\xc1\x32\xd2\xdb\xc8\x57\x3d\x50\x45\x9a\x8b\xba\x1e\x57\x47\xdf\xce\x1f\x6a\xf7\x4c\x16\xa6\xec\xb7\x59\xac\x84\xcb\x0b\xd6\x31\x1e\x0b\x0b\x04\x96\x9c\x52\x71\xca\x55\xa5\xfd\xff\x53\xfc\x22\x0e\xdf\xb3\x8a\x13\x28\x1b\x19\xd3\xdb\x45\x5b\xc2\x0a\x14\xa8\x0e\x81\x96\x25\x31\x60\x40\xb3\xb0\xaf\xd2\xc3\x48\x4e\xd6\x85\xf3\x3f\xc4\x4a\xc2\x1a\xfb\xaf\x9e\x42\xa6\x33\x09\x02\xa7\xdb\x3c\xb7\xbd\xa4\x57\x4e\x16\x7d\x85\x13\xba\x37\x6a\x29\x52\xea\x73\xb4\xf3\x05\xdf\xf7\x98\xca\x8c\x44\x61\xdc\x27\x3d\x69\x44\x1c\x57\xc7\x5a\x1d\x4a\x2f\x82\x75\x45\x75\xf0\x01\x5e\x09\x26\xe6\x0c\xcc\x1b\xec\xf7\x5d\x65\xbf\x83\xd4\x70\xc0\x65\xa5\x46\xae\x6a\x70\xe2\x6d\xe5\x6b\xec\xe8\x34\xe0\xca\x96\xa2\x44\x60\x58\xfc\x8e\xaa\xb6\x7e\x41\xb9\x93\x81\x1f\xf7\x12\x46\xa0\x09\xcc\x9a\x4c\x80\xe0\xaf\x5d\x2e\xb2\x5b\xac\x31\xa8\x05\xee\xcb\x45\x45\xfb\xdb\x44\x73\x70\xa0\x9d\xfa\xbd\x30\x99\x2e\xfd\x58\x8c\xca\x4f\xb5\xb9\xfb\x44\xeb\x21\xbf\xa7\x68\x44\xdf\xa9\x2d\xb4\x97\x5f\x6e\x0f\x92\x21\x3c\x07\x89\x01\x5a\x96\xb6\x9b\xc1\x82\xac\xc7\xab\x60\x62\x66\x69\xc9\x04\x79\xb8\x62\x76\xd2\x40\x08\xab\xb3\x32\xeb\xef\x93\x2d\x16\x69\xb7\x32\x62\xbc\x44\x0b\x0b\x2e\xdf\x37\x55\xa3\xc2\x11\x84\xe6\xb6\x7e\x57\x1e\x7d\x92\xc7\x7b\x44\x55\x3f\x71\x12\x61\x29\x73\x0d\x9e\x6f\xbc\xbd\x5b\xd1\xc0\xa5\x8f\xe2\xb8\xa2\x70\x82\xc2\x96\xaf\x7b\x2a\x89\x02\xa5\x15\xfe\x87\x26\x19\xcb\x6e\x91\xc6\x5c\x89\xc0\x6f\x9d\xf0\x5c\x27\xd0\x89\xcf\xa5\xd3\xeb\xfa\x29\x61\xba\xca\x67\x60\x02\x74\x35\xaa\x1b\x4d\xcc\xe1\xc3\xa4\x67\xd2\x38\xe4\x16\x45\x16\xf2\x56\xf2\xb6\xeb\xb5\x1f\x2b\x0f\x5c\x22\x22\x4d\x86\x61\xc6\x78\x4f\xf1\x2c\x68\xdb\x2a\xa4\xb9\x78\x19\x77\xab\xdc\xc5\xcb\x5f\x86\xcb\x23\x9c\x12\xce\x4f\x3c\xaf\xf7\x63\x92\x06\x06\x39\x03\x38\x5f\x6f\x8f\x5d\x39\xe6\xe1\x8e\xae\xa3\x53\x53\x8b\x24\x3c\x9c\x02\x3f\x98\xdf\x3e\x17\x43\xcd\x26\xb5\x49\x8d\x6c\x94\x86\x71\x10\x8e\x58\xf5\x4d\xc5\xbc\x55\xbe\x2a\x61\xca\xd9\xfa\x0d\x2f\x82\xd4\x79\x25\x8c\x03\x6e\x60\x15\xc4\xbd\x6e\x1c\x72\xa5\x87\x72\xcf\x46\x26\xcb\xc3\x60\x99\xdd\x54\x29\x02\x68\x68\x9b\x82\xc3\x0a\x4f\xf2\x23\xad\xaf\x8b\x3d\xde\xde\xd1\x79\xe9\x69\x9c\xbf\x02\xd2\x77\xf1\xca\x7d\x55\x73\xb9\xa4\x59\x7d\xb0\x73\x84\xe5\x80\x66\x12\x34\x52\x77\x61\xf5\x2d\xb5\xfd\xf3\x0b\x96\xdd\x5f\xc5\x0b\x97\x74\xca\x68\xa6\x53\xd1\xb7\x23\xc6\xdb\x47\x69\x37\xc0\x5a\xf3\x27\x05\xb7\x8e\x07\x67\x72\x29\xcf\xc5\xa0\xb7\x01\x1c\xe0\xcf\xc0\x8a\x21\x38\x00\x6d\x27\x3f\xc7\xa5\xb1\xeb\x2e\xb8\x4d\x9d\x60\xcc\x21\x82\x42\x26\x7f\x42\xe9\x67\xcc\x52\xea\x0e\xd3\x4f\x8a\x6b\xd2\xde\x0e\x3f\x17\x86\xb2\x55\x2b\x76\xcf\x1f\x6a\x67\xc3\xd0\x61\x9c\xd8\x6b\xa6\x07\x16\x0f\xba\x41\xaa\xf1\xbf\x4d\x6c\xcb\x85\xf5\x26\xca\x76\x61\x44\x70\x02\x3f\xdc\x71\x35\x82\x16\x58\xbc\xf0\x0f\xb7\xe1\xcf\x02\xf7\x80\x26\x46\xe1\xab\xa2\xe9\xc3\xae\x9c\x46\x51\x88\x7c\xb4\x7f\xf5\xb3\x1d\x0b\xf8\xf8\xb7\x7f\x17\x92\xf2\x56\x6d\xc3\xd6\x3e\x26\x5a\x03\x4b\x17\x17\xb3\xdc\xa4\x61\x64\x32\x55\xf8\xb9\xa4\xa4\x50\x2f\x79\x0e\x0f\x1e\x0c\xc2\xa8\x37\x48\x12\x4d\xc2\xcc\xa0\x0d\xbe\x69\x12\xbc\x7d\x3d\x4a\xf2\x35\xe6\xc6\x11\x91\x3e\xc7\x5a\xf5\x3f\x8f\x5d\x8a\xed\xb6\x0a\x43\xb3\xbc\xe8\x85\x09\xc3\xd4\x99\x7e\x54\x71\xdb\x9c\x6e\x4c\x0c\x50\x03\x74\xf9\x3b\xd6\x84\xd8\xef\xbe\x58\xed\x6f\xe8\x65\xbb\xd4\x37\xb3\x26\x84\x25\x37\x28\x37\x90\x92\xa5\x3d\xc8\xc2\x7f\x47\xb4\xfc\xf3\xf5\xb1\xaa\x46\xac\x2b\x77\x68\xa6\x53\x1e\xa5\x56\xe8\xcd\x55\x46\xa7\x3b\x0a\xc4\xf5\x63\x5a\x95\x22\xb4\xe0\x02\x7d\xb0\xc1\x9a\xde\x74\x39\x8f\x7c\xce\xf1\x0c\x7a\xaa\xbe\xfe\x89\xe7\xbc\xef\x9f\x36\xe4\x72\x0f\xb4\x83\x30\x0d\x8a\xc8\x97\x64\x24\xac\x2d\x13\x9c\xf2\x4d\x53\xe6\x3e\x2f\xbd\x01\x51\xc5\xa1\x33\x6d\xf3\x7c\x43\xd2\x72\xa1\x4d\xf4\x54\x7e\xda\x53\xf8\x59\x94\x55\xf9\xba\xda\xfe\xf9\x7a\xd2\x52\x64\xea\x37\xe1\xfe\xf1\x8d\x7a\xfb\x5e\x12\xe4\x29\xb1\x47\x58\xad\x24\x96\xbf\x12\xb6\x62\xd7\x5c\x96\x26\x99\xd9\x49\xf3\x06\x8b\xf1\x5d\xb2\x75\x02\x5c\x76\xba\x24\x77\xb4\x60\xca\x25\xb6\x4b\x7c\x37\xfe\xdc\xbe\x77\xda\x46\x30\x9c\x97\xbc\x27\xd4\x6e\x49\xfd\xdc\xf4\x43\xc3\x8a\x07\xd8\xe9\x7f\x3c\x76\x50\x47\x94\xf2\xe0\x39\xb2\x2d\x46\x92\xeb\xa4\x25\xd6\x0f\x92\xc8\xa7\x50\xc4\xa2\x69\x54\xf1\xaf\x42\x96\x15\x2e\x4f\x2b\x44\xdd\x5d\x0c\x1b\xac\xc6\xed\x6a\x11\xc6\x1d\x00\x3f\xd5\xb2\xc1\x51\x12\x2c\x53\xba\x13\x31\x3f\x7a\x34\xf9\x5a\x99\xa7\xa4\xcb\xaa\x38\x56\x78\xde\x7a\x18\xbb\x3a\xee\x7d\x18\x7c\x23\x0c\x6d\xbb\x1d\xe8\x2b\xcc\x88\x7a\x59\x7a\x4d\x15\xc2\xfd\xa2\x7d\xed\xbc\xe8\x1a\x15\x0a\x22\x69\x28\x84\x64\x5f\xac\x30\xf9\xa7\xe1\xd0\xc4\xb9\x1f\x45\x6b\x53\xe5\xc3\x0b\xa2\xd1\x4d\xf0\x36\xb2\xf6\x70\x1b\xfe\xa0\x4a\x59\xb5\x94\xd0\xf9\x2e\x0c\xa4\x4e\x82\x4c\xc3\x2b\x8e\x29\x7c\x4a\x14\xd2\xef\xcc\x1f\x62\x0a\x03\x06\x51\x4b\x0f\xa1\x3a\x94\x36\x6b\x3b\xad\x74\x0a\x7a\x09\xc1\x1f\x39\x26\x93\x79\xa4\x8d\x2f\x13\xec\xcc\x6d\x18\x67\x45\x6a\xd2\x6c\x9a\x82\x17\x2b\x71\xbb\x7f\x3f\xdb\x18\x28\x56\xf0\xf5\x58\x53\x57\x49\xea\x96\xa2\x0e\xd4\x14\x0f\x58\x3c\x52\xcb\x6a\xd3\xbc\x55\x4d\x30\xbc\xfe\x3a\x79\xaf\xc8\xb9\xe2\xcb\xe1\x48\x9f\x56\xf8\xeb\xef\xd0\x01\x2b\xf5\x0a\xd5\xc0\x96\x26\xab\x1c\x4c\xe0\x0f\x8f\x52\xdf\x25\x5f\xd7\x82\xe6\xfd\xfb\xc5\x67\xb6\xc7\xa9\x25\x8e\x76\x96\xbb\x16\x37\x50\x09\xa4\x40\xd9\x4a\xf4\x03\x5a\x8a\x34\x4c\x47\xb7\x0d\x52\x5e\x07\x4a\x9b\xf9\x8a\x71\x0c\xda\x48\xb7\xb7\x50\x45\xe4\x1b\xd5\xab\x91\x9a\x3c\x4c\x05\xc0\x29\xe0\x56\xa7\x8a\xfc\xdd\x0a\x97\x68\x14\x21\x52\x57\x0d\xbe\x0b\x36\x56\x2e\x1f\x12\xee\xd4\x5f\x37\x34\xcc\x1f\xa4\xaa\x69\xb9\x47\xa5\xf5\xb9\x65\x15\x56\xcf\xd6\x22\xfb\x67\xda\xfe\xd0\xa4\x16\x81\x81\x78\x6b\x37\xf6\x1b\xdf\x74\x2c\xee\xc8\xc4\x79\x6a\xf8\x6d\x85\xeb\x83\xfe\x52\xc8\x3e\x1a\x4a\xc5\x7e\x8f\xc4\x34\x54\xf3\xdd\x5d\x5a\x0d\x7c\xad\x98\x04\xfd\xd1\xc8\x4f\x4d\xcc\x47\xa9\xa6\x9d\x10\x94\xa3\xb6\x51\x7e\x6e\xbe\xe0\x5e\xec\x3b\x84\x92\xe3\xc0\x4c\x35\x12\xcf\x12\x69\x25\x47\x82\x48\xba\xc1\x55\x7b\x04\x39\x78\x04\xd7\xdb\x14\xd0\xfd\x2e\xd0\x90\x56\x8f\xd4\x1e\xeb\x0b\x7b\x29\x3f\x69\xe5\x61\x4a\x43\x0d\x77\x69\x13\x7c\x45\x28\x1d\xde\xd2\xa0\xeb\x9f\x50\xa0\x80\x71\xfc\x91\xa7\x7a\x89\xfe\x84\xa2\x0c\xa4\x8a\x4e\x20\xab\x66\x49\x45\xf7\xcd\x73\x54\x79\x85\x33\x71\x78\x45\x16\x7f\xe2\xca\x05\x56\x04\x4e\xfb\xfb\x04\xfb\x01\xc2\xea\x23\xab\x93\x91\x9a\x95\x67\xa7\xd4\xe8\xa9\x56\xf0\xa3\x1a\xc9\x7b\xab\x26\x83\x72\xe0\x85\x83\x65\xc4\x11\x10\x91\x77\x92\x6a\x6e\x9e\x2b\x8a\x9b\xe7\x8a\x82\xf6\x0f\x7d\x10\xa9\xab\x4c\xe6\x4d\x3a\x0b\xe1\x24\x9f\x18\x3b\xd1\x9c\x73\x16\xf4\x1e\x27\xf9\x80\xc0\x10\xce\xbb\xb9\x8d\x93\x11\x49\xff\x47\x69\x5a\x20\xbb\xfd\x54\x67\xcf\x96\x1e\xc6\xec\x31\x1a\xb6\x8a\x66\x2d\xec\xd7\x35\x45\xb9\x82\x13\x19\x3e\xe5\x15\x4c\x0d\xb2\xfb\x2d\xc2\xcf\x4a\x8d\xb6\x9c\x59\xfe\xb0\x6e\x19\x58\xc7\xc9\x87\x78\xf2\x1a\x46\x0d\xb6\x95\x09\x45\xf0\xd4\xdb\x80\x14\x54\xa8\x6c\x99\x9a\x9f\xd0\xd9\xc1\x25\x5e\x2d\x86\x32\xd6\x64\x10\x71\x96\x87\x79\x41\xcd\xed\x0a\x7d\x7c\x49\x0b\x81\x5e\x6a\x62\x5c\xce\xfd\xb4\x6f\x90\xe6\x64\x25\x62\xcf\x45\xd0\xf7\xff\x5f\x98\xf2\x47\x44\xc3\xe6\xb2\x44\x8f\x75\x1c\xa0\xf1\xbe\x6e\x52\xd9\x36\xd1\x74\x87\xdd\x04\xcd\x1b\x42\x50\xe4\xbc\x8f\x3a\x2d\xf8\x3f\x68\xf7\x4c\x6e\xd2\x21\x60\x2b\x8e\x2e\x0b\x67\x34\x5f\x37\x09\xb5\x74\x53\xff\xf5\x30\x42\xce\xa9\xa2\xb6\x26\x56\xc0\xd5\x55\x09\x65\x67\xb2\xd9\x72\xf9\x63\xc3\x02\xa9\xa1\xc9\x05\x60\x13\x8e\x01\xaf\x8a\x38\xe0\x9c\xca\xe2\x1c\xf3\x5c\x0f\xf5\x49\xda\xad\x92\x29\x6a\x00\xb9\x65\x61\xdc\xe7\x86\x1e\x4b\xc4\x5a\xae\x02\x39\xc1\x14\x60\x27\x0d\x63\xe2\x47\xa0\xd7\xc0\xc9\x87\xc8\x99\xaf\x6b\x78\xb8\x85\x85\x83\x9a\xaa\x0a\x69\x53\x1c\xff\x9f\x8e\x5d\xe2\xe0\x86\x57\xc1\x3c\x3e\xb9\x85\xd4\xd3\xef\x46\x9c\x46\xb1\xe2\x22\x8e\x7d\x0a\x13\x26\x8e\x88\xe4\x13\x47\x49\x14\xb1\x1f\xa1\x2a\x4e\x28\x81\xf3\xf5\x78\xb7\x4e\x37\xe7\xf0\x0d\x65\x87\x94\x5b\x07\x53\xf3\x5d\x65\xac\xbf\x8b\xe7\x14\xf1\x76\x37\x67\x69\x42\x44\x7b\x1a\x41\x7e\x5e\x95\xde\xcf\xab\x2e\xac\xa5\x34\xec\xf9\x6b\x3b\x14\x41\x1b\xd3\xb5\xc3\x13\x65\x75\x13\x29\xe5\xd2\x48\xf3\xbf\x60\xa3\x2b\x53\x29\xa8\x84\xed\x93\xbd\x2a\x51\x92\x9a\xa5\x22\x8a\xd6\xa6\x15\xcb\x1e\xe8\x9a\x60\x8b\x5b\x04\x4a\x05\x06\x6f\x5b\x45\x16\x7c\xbc\xb7\x86\xff\xfe\xea\xa3\x8a\xcf\x01\xec\x1c\x56\x1d\xfa\xf0\x1c\x7b\x53\x47\x08\xeb\x85\xf2\xf9\x05\x4f\x91\xb7\x1f\xf7\x14\x9a\x9d\xcd\x33\xb2\x89\x5c\xf1\x82\x3f\xc1\xc0\x5a\x1c\x2e\x7f\x4d\xcb\x15\x08\xb7\x09\x2d\x11\x5a\x86\xef\xec\x99\xd0\x20\xf1\x77\xd1\xfa\xc6\x09\xb2\xa3\xe3\x56\xee\x94\xae\xfd\x87\xf9\x2e\xfa\x5e\xd1\xc5\x72\x35\x50\x16\xdf\x81\xcd\xbb\xc3\x41\x8c\xb4\xff\x96\xef\x68\x95\xc1\x2d\xaf\xcc\xdf\xec\x28\xc8\x16\x1f\xa0\xb0\x2c\xbb\x27\x0e\x62\xfd\x00\xaf\x85\xa3\xf1\x9a\xa7\x0a\xb7\x77\x54\x1c\xd1\x4f\xfd\x6c\xd4\x72\xfe\x3a\x98\x29\xf9\xda\x7a\xa6\x03\xbf\x70\x89\x14\x4c\xfa\x37\x54\x9b\xf5\x37\xc6\x6e\x49\x65\x79\x9a\xc4\xfd\x5d\x4a\xb0\xe7\x2e\x21\x29\x2c\x15\xd2\x3e\xc9\x03\xfe\xa1\xa2\xdb\xe4\xe2\xa8\xa5\xf3\xb4\x80\xc7\x3b\x8a\xef\xfa\x9a\xe7\x40\x06\x97\x88\xe2\x42\xe4\xaf\xd5\xa1\x08\xca\x06\x49\xda\xb9\xfc\x64\x98\x67\x26\x5a\x7a\x44\x11\xd8\x9e\x1b\x6f\xd5\x6b\xb5\xbd\x92\x4e\x29\xfc\x93\xb1\xa2\x43\x43\x6f\xb6\x74\x36\xd0\x24\xc0\x7b\x3d\xaf\xf4\xc8\x38\xd7\xc9\xab\xc6\x53\xbd\xd5\xef\x29\x96\x89\xc7\xc8\x6d\x12\x82\x6d\xa7\xf3\xf7\x4a\xfa\x6c\x4b\x33\x89\xd1\x18\xc9\x9b\xd5\x89\xf6\xcb\xff\x2e\xf7\x7c\x20\xda\x45\xfc\x43\xcd\xfb\x46\xad\xe3\x7b\xdf\xbe\x76\x31\xa2\xb2\x89\x64\x8c\xca\x07\x61\x48\xed\xb8\x02\xdf\x77\x04\xab\x67\x95\xf6\xd3\x7d\x5a\x21\x48\xf1\xec\xed\xec\x55\xe6\xb1\x57\x04\x84\xf9\x71\x6e\xd0\x83\xb1\xab\x05\xbf\x87\x3d\x87\x82\xe5\x7b\x9e\xca\xe6\x3c\x50\x8d\xaf\x7e\xdf\xc4\xc1\xda\xee\x72\x9c\x61\x8e\x19\x33\x28\xbd\x49\xba\x75\x96\xd6\x98\xe4\x8b\xe9\xf4\xc1\x5f\x6d\x87\xe7\x29\x92\xb5\x0e\x10\xff\xd6\xd8\xf5\x5d\x7c\xc8\xae\x9f\x26\x11\x61\x26\x77\xa5\x7e\xfe\x2f\x3d\x97\x66\xbd\xa1\xd5\x6b\xff\xb5\xca\x57\x44\x26\xcb\x1e\x29\xcd\x8e\x95\xe5\x78\x5e\x62\xb1\xcf\x3c\x47\xbe\x0f\xd2\x1a\x54\x05\x00\x3e\x46\x1c\xbd\x0b\x6d\x6b\x92\x5e\x55\xe5\x11\x6e\xae\x84\x99\x7a\x13\xf3\x8a\xb6\xa3\xeb\x30\xc6\x5a\xe6\x11\x6e\xcf\x17\x3b\x8a\xe9\xe9\x8c\x4a\xbb\xa5\x61\xb7\x9b\xc4\xd9\x74\x39\x02\x5c\xfc\xf6\x2a\x1a\x2e\xba\x2a\xde\xb2\x8c\xb4\x7a\x0b\x8d\x4c\x32\x8a\xcc\x13\xe5\x9b\x62\x29\x9c\xa6\x8d\x8a\x4d\xc8\x14\x5d\xf0\x40\x37\xe9\xdb\x98\xb1\x4e\xe7\x3d\xaf\xd0\x0c\x48\x05\xba\xb4\x05\x70\x44\x21\x69\x87\xfc\x77\xab\xe3\x62\xb6\xf7\xc6\x4a\x33\xed\x3b\x98\x64\x98\xda\xdb\xb0\x68\x08\x8d\xaf\x23\xf0\x10\x59\x13\xd5\xa1\x36\x76\x31\x17\x37\x47\xe1\xc7\x5b\x93\x4a\x41\x5e\x0d\x1a\x33\x5c\xf1\x38\xd7\x30\xb3\xff\xa0\xdd\x2d\x32\x54\x09\xa4\xb9\xdf\x01\xc8\xae\x5a\x04\x5c\x6a\xb2\x51\x12\xf7\x4c\x0f\xd9\x97\x0a\x61\x32\x9e\x60\x76\xe2\xc2\x4f\xc6\x33\x62\xa3\x3c\x51\xe3\xe5\x9f\x3f\xd4\x36\x71\x56\x58\x45\x0e\x6b\xb3\x2c\xe7\x39\x96\x00\x1e\x82\x90\xe9\x2e\xe9\x08\x64\x11\x22\x11\x70\x2b\xf2\xf5\xc4\x9d\x4f\xfe\x72\xf6\x90\x92\xf9\x7f\x18\x1b\x48\xc8\xb7\xd4\x06\x04\x8c\x1b\xa1\xf1\xcd\xb1\x3a\x86\x1e\xc6\xba\x03\xe5\xcc\xcf\x50\x1c\x27\x52\xf4\x5a\x3b\x03\xe4\x66\xf4\xf8\x1f\x3f\x31\xd9\x1a\x5a\x97\x21\xbf\x8f\x90\x8a\xde\x64\xed\x67\x3a\x8a\xed\xf0\x89\x89\x6e\xd6\xa6\xc7\xc7\x11\xe6\xe7\x89\x64\x08\xd8\x1c\xe3\x91\xc5\x36\xcb\x29\xd6\x33\x0a\x02\x6b\xfb\x39\x2a\xb2\x39\x52\x20\xf7\x57\xad\x53\x8d\x57\xfa\x40\x53\xea\x7c\xa0\x0c\xd6\x28\xf2\xd7\x4c\x0a\x6d\x56\x3c\xd9\x4f\x95\x3b\xf2\x26\x2d\x0e\x7c\x6a\x6f\x87\xea\x23\x78\x19\x86\x1a\xdb\x58\xb7\x3c\xc0\x2c\x27\xa3\x1d\xe2\xcb\x64\x4a\x70\xe2\xfd\x69\x93\x96\x59\x52\x8c\x4a\x4f\xd6\x29\xb8\x6e\x28\x1a\xa8\xbb\x8a\x15\xe5\x6c\x2d\x56\x99\x3f\xd4\x1e\x86\x41\x9a\x74\xc3\x24\x4a\xfa\x6b\x4a\x20\xe6\xdb\x63\x25\x10\xf3\xed\xaa\xd6\x5a\x18\x9b\x69\xc5\xed\x78\xa5\xaa\x57\xe5\xce\x67\x8e\xde\x44\xf9\x51\xe9\x49\xa5\xc9\x52\x98\xfb\xc4\xaa\xb8\x38\xc7\x38\x58\xe8\xc8\xf3\xb5\x72\x65\xa1\x25\x4d\x6b\x73\x81\x73\x78\x67\x74\xd9\xf2\x87\xba\x5d\x0f\x31\x26\x6c\xf5\xa7\xf4\x28\x7c\xad\x39\x1b\xfe\x0a\x61\x0a\xd2\xf3\xc8\x3b\x02\x92\x71\xd7\x73\xcc\x61\x0f\x3c\x67\x37\x73\xe3\xa7\x42\xd5\x2b\xaa\x99\xae\x6f\x03\x90\x23\x9c\x69\xc7\xc6\x0e\x1f\xd3\x35\xfd\x7e\x18\xf7\xa7\xab\x6a\x4d\x8b\x73\x6c\xee\xee\xa8\x54\x32\x83\x3c\x98\x68\x5a\x79\x52\xe1\x70\xe4\x07\x39\xa5\x2f\x2d\xe4\xe7\x45\x4b\xa6\xf5\xa6\xca\x79\xde\xb0\x08\xe8\xa0\x48\x86\xe0\x46\xc5\xe9\x7e\x4c\x17\x87\x8e\x29\x81\x8d\xe5\x81\x1f\x33\x88\x15\x13\x76\x46\x11\xd2\x5f\xd4\x47\xf5\xbd\x06\x82\xd9\xe7\xda\xa9\xe9\x26\x45\x69\xdf\x5a\x0a\x22\xc2\xf4\x7b\x52\xcc\x6e\xa0\x17\xff\x72\x3b\x5b\x0e\xb9\x64\x04\x38\xf9\x1d\x55\x64\xbd\xac\xa8\xbc\x8e\xab\x58\xaf\x88\xa3\x30\xa3\x34\xec\xe2\x5c\x15\x4e\xc3\x37\xb5\x50\x72\x71\x0e\x05\x69\xc6\xc1\xc2\x98\x7f\xe4\xb9\xa8\xf4\xdf\x57\xf6\xb3\x02\xc7\x44\x49\xc6\x25\x33\xac\x37\xb0\x7f\xf0\xb5\x6d\x10\x1c\x25\xb9\x9f\x27\x0a\x3e\x70\x82\x9c\x5c\x61\x66\x51\x5e\xe6\x29\x45\x04\xfd\xc0\x26\xd6\xb3\xb0\x17\x71\xeb\x37\xfc\xc1\xff\x1d\x43\xce\x37\x35\x69\x9d\xfd\xfb\x17\x99\x55\x31\x5f\x2a\xa2\x96\xeb\x82\xba\xa0\xba\x98\xea\x0e\xe2\xbe\xf9\x76\xe2\x2f\x47\x7e\xdc\x6b\xe9\xd6\xbb\x0a\x34\x7a\xeb\x67\x9e\x5f\x68\x27\x23\xe3\xc0\xc6\x48\xb3\x60\xd1\xf3\xb5\x32\x09\x61\xbc\x62\xb2\x7c\xa6\xb4\x6c\x9b\xec\xc4\x63\x25\x1f\xd7\x0c\xa4\x0a\x0f\xf1\x01\x9d\xfa\x42\xb8\xbe\xd7\xb6\xab\x66\xd4\x3b\x46\x3b\xcd\x42\x7a\xde\xf2\x14\x51\xf2\xa9\x4a\xb7\x42\x25\x15\xbe\xea\xab\x16\xd7\xd3\x1a\x6a\x77\xda\x72\x11\x16\x50\x68\x3b\xc0\x6b\x01\xcd\x7b\x7c\xad\xd8\x36\x52\x03\xe1\xe5\x1d\xaa\xb6\x86\xc4\x9e\x25\x8e\xb5\x9f\xbb\x08\x4f\x01\xfb\x87\xe1\x8a\x56\x6a\xd5\xea\x0e\xb4\x3a\x2e\x20\xce\x02\x52\x8d\x61\x06\x0d\x81\x55\x97\x03\x22\x70\x6b\xf7\xb7\x56\x4c\x9c\x06\x04\x36\xe4\x7e\x55\x02\xc0\xa6\xfc\xd7\xed\x40\x06\x51\x69\xae\x4c\x1e\x66\xf9\x54\x95\x6e\xd1\xd2\x48\x02\x95\xe6\x6a\x02\x3f\x67\x55\x95\x92\x5c\x48\x78\x59\xb5\x95\x7e\x0e\x59\xbb\x6f\xab\xcd\x83\x98\x41\xc8\x19\x1a\x10\x31\xd9\x20\x64\xed\x3c\x6c\x9c\x37\x29\xe7\xca\xd7\x6a\xb4\x45\xda\x86\xd9\x36\x90\x2b\xfc\xf7\x4a\xde\x67\x43\x73\x0c\x72\xa1\x5c\x8a\x4c\xf4\x7a\x42\xd8\xaa\xf2\x57\x9b\x48\xd9\xc3\x7a\xa7\x66\x68\xe2\x5e\x52\x64\x50\x59\xdf\xbc\x41\x9c\x50\x37\x1a\xa5\xd2\xf2\x41\x18\xdb\x63\x5f\x8a\xcb\x15\xe0\x8a\x4e\x8f\x0f\x92\xa8\x8a\x04\x5d\x9c\xb3\x48\xd0\xad\xa9\xba\xfd\xfb\xdb\xc1\xc0\x8f\x22\x13\xf7\x59\x4e\x1a\x2e\x29\xba\xd8\xf8\xda\x22\xbd\xb3\x22\x1b\x84\xe4\x05\x09\x31\x10\xbd\xaa\x90\x92\xd1\xe7\x25\x19\xd7\x80\xb3\x24\x18\x22\xd5\x59\xe1\xd7\xbc\xa5\x7c\x9c\xb7\xc6\xbb\xdc\x19\x95\xb3\xd3\x84\x63\xf2\x8a\x86\x71\xd5\x79\x9a\xe7\x0f\xb5\x47\x7e\x5a\xbe\x03\xcc\x0f\xb2\x17\x9b\x8a\x60\x6e\x73\xbc\xa5\x67\xff\x9f\xfe\x77\xed\x7d\xfb\x66\x69\xce\xb8\x9a\xaa\xa2\x21\x54\x82\xe0\xbd\x7e\xa4\x55\x4b\x51\xfd\xc4\x24\x33\xaf\x0b\x42\xa3\x3f\xa7\x21\xe6\x4f\xd4\x2c\xe4\x33\xed\xd8\x04\x26\xcb\xc2\xdc\x25\xda\x18\xe5\x37\xae\x40\xfe\x1a\x12\xa2\xb9\xbf\x6c\xcd\x9d\x00\xc0\x1c\xb0\x77\x5d\xe5\x00\xfd\x20\x28\x32\xb0\x0a\x4f\xa9\x8a\x11\xf8\x6d\x25\x09\xa9\x96\x2c\xc1\xf7\x79\xc1\x04\x83\xb5\x69\xd7\xc0\xf5\xae\xa7\x85\xce\x54\xeb\xd8\x55\x4f\xb7\x12\x37\xcc\x6f\x17\x28\x53\x4b\x23\xfd\xbd\xb1\xca\x62\x73\x5a\x02\xae\xd4\x25\x75\xe0\x0f\x8c\x9f\xcf\xa8\xdc\xf7\x29\x4f\xc5\x3c\xe8\x9d\x40\x2d\x1a\x31\x02\x5f\x4f\x68\x32\x04\x89\x59\xa9\x60\x5b\x91\x0a\x38\x27\x8c\xd2\xe2\x9b\x46\xa2\xa8\x25\x3f\x44\x4a\xdc\x82\xb2\x6c\xb5\xe7\x27\x98\x68\x64\x43\xaf\x29\x70\xfc\x5a\x52\xe4\x83\x69\x25\xe5\x71\x51\xe5\xf8\x61\x66\xe1\x47\x68\xba\xe8\x7b\x35\x5c\x43\xe9\xec\x26\x71\x96\xa7\xd4\xde\x62\x43\x42\xf4\x38\x49\xaa\xc4\xf5\x7c\xe4\x03\x33\xcc\x4c\xb4\x62\xb2\x87\x1c\x4a\x7e\x03\x58\x12\x54\x3d\x4e\x22\x49\xc4\x37\x63\x97\xca\xbd\xe7\x29\x45\x2f\xc4\xef\x30\x94\xc7\x55\x5a\x61\xc7\x44\x75\x30\x7e\x07\xf3\xc7\xba\xe0\x0d\x69\xeb\x03\x65\x34\x99\xfb\x45\xea\xc7\x39\xeb\x31\x49\x82\x50\x73\xc9\x5e\xad\x92\x0d\xaa\x9a\xcf\xd5\xaa\x38\x22\xd7\x83\xb0\xf4\x2e\xe3\x8c\x15\x17\xd6\xf5\x33\x1c\x55\x47\xc3\xaa\x09\xfb\x83\x0c\xa9\x76\x39\xd2\x69\x30\xa4\x67\xa9\x81\x8d\x70\xa9\x48\xe3\x30\x2f\x52\x9c\x03\x36\x4f\x66\x75\x46\xcf\x57\xac\xa9\xdf\x43\xc3\x08\x02\x06\x64\x20\x60\xf0\xde\xa3\xcf\xe0\xb8\x7a\x87\xce\x11\x21\x06\x90\xfc\x7a\x6c\xfa\x49\x4e\x85\x34\xb0\x92\x60\xbc\x35\x31\xdf\xfd\x8a\xac\xb6\x2b\xb8\xac\xd0\x89\x87\x41\x14\x11\x36\xa5\xa3\x0b\xf3\x8c\x50\xec\xcf\xb0\xbe\x71\x84\x7e\xdf\x73\x19\xbb\xae\xdf\x9b\x55\x34\xbd\xe8\xe5\xe2\x24\x43\x47\xf5\xfd\x5d\xd2\x74\xbb\x1b\xd4\xca\x8c\xf3\xea\x94\xa2\x43\xfa\x0d\xa5\xe2\x78\xbd\x89\x4d\x6b\xe4\x07\xcb\xbe\x95\x7c\x42\x9c\xc7\xc8\x75\x58\x03\x22\xb7\x5e\xd8\xbc\xa4\x30\x20\x99\xbf\xf6\xa8\xa2\x61\x9b\xc2\xe2\xd3\x7c\x8f\x28\x22\x80\x8d\x8c\x13\x54\x54\x3e\x95\x7e\x12\x7a\x72\x80\x95\x7e\x86\xf8\x55\xe0\x8e\x4c\x77\x1c\x91\x35\x77\x43\x22\x1d\xb7\x39\xb6\xe1\xd2\xf6\x3d\x1d\xd5\x53\x38\xd6\x9c\x02\x1b\x55\x5e\x1b\x45\xdd\x7d\x43\x3d\xfd\x57\xfe\xf1\x57\x5a\x8e\x19\xf1\xbc\x6e\x1a\xa8\x2e\xa1\x24\x83\x43\x2d\x62\xad\xf4\x3c\x7c\x53\x33\x08\x8b\x73\xed\x51\x91\x06\x03\x27\xec\xcd\x3c\x2f\x9e\x83\x7c\x9f\x55\x3b\x20\x18\x84\x2b\x7e\xa6\x82\xe4\x13\x3a\x48\x3e\x51\x3b\x55\x48\xb8\xa3\x6f\x4f\x15\x6c\x4a\x34\x8d\xf1\x75\x83\xba\xfb\x73\xc4\x12\x41\x3f\x82\x54\xe4\x3d\x4f\x15\xff\xef\xd5\xfa\xef\x9e\x69\xf7\xcc\xc8\xc4\x16\xd6\x65\xf5\x1e\x5c\x36\xda\xa9\x2f\xf9\xa9\xdf\x0d\x7d\xb6\xd9\x78\xec\xf3\xfa\x1d\xce\x57\x51\xbf\x66\x65\xa6\x5c\x01\x22\xe0\x81\x1e\x2b\xa1\x4c\x57\xfc\x0f\xff\x12\xf3\x26\xe5\x32\x5d\x3b\xb3\x85\xf2\x67\xbf\xf2\xff\xff\x05\x9a\x43\x81\x5a\xbb\xd6\xb0\xf3\x8a\xbb\x6a\x64\x82\x65\x40\x13\x10\xaf\xfe\xc0\x73\x81\xec\x0f\x9a\xaa\xb3\xab\xe0\x79\x24\xb3\xd4\xa4\x83\x23\xbe\x7f\x37\xe9\x93\x3f\x04\x63\xf0\x99\xa7\xd4\xf8\x3f\x43\xe5\x8d\xdf\xfa\xe9\xe1\x4e\x57\x3b\x7d\xb4\xa3\xe9\x88\xc7\x2a\x14\xb9\x47\xe6\xc4\x6e\x20\x5b\xaf\x7f\x1b\x02\x09\x2d\x24\x74\xe5\xc1\x69\xf3\x48\x11\x57\x66\x63\xb8\x96\x86\x7e\x8f\x4e\x71\x1b\xcf\xdb\xe2\x00\x30\x00\xa2\x51\xea\xb6\x42\x94\xbf\xde\x52\x4e\xda\x86\xa7\xfd\xb7\x8d\xca\x66\x78\x7a\xc5\x80\xa8\x53\x08\x2e\xe8\x91\x28\x0d\xfe\xd0\x97\x68\x47\x2a\x78\xc9\x41\xc7\xf0\x62\xeb\x02\x77\xe8\xbd\x84\xc1\xcc\x99\xbb\x38\x59\x7d\x5c\x15\x9b\x6f\x7b\x4a\xb7\xe8\x24\x65\x77\x25\x38\x2a\x03\x62\x4d\x88\x81\xd2\x30\x88\xc6\xe1\x1d\x6d\xe7\x8c\x1e\x52\x88\x70\x7c\x88\x29\xe4\x99\x3d\x1d\x97\xba\xba\x39\x76\x58\xf0\x6f\xe9\x9c\xe3\x45\xcd\x52\xbc\x7d\xe2\x32\x34\xdf\x41\x3e\xcd\x16\x10\x1c\x55\xce\xff\x0a\x53\x09\x3a\x92\x77\x3d\xd5\x16\x7d\x5e\xe5\xca\xc3\xdc\x8f\x42\xc6\xeb\x58\x6e\x53\xa7\x5f\x51\x0e\x87\xf5\x14\x56\x93\xbd\x2a\x93\x30\xdd\xa1\xf6\x43\xf1\x5e\xcb\x47\x12\x6d\x29\xfa\x61\xd1\x51\xc4\x76\xe2\x3f\xf3\xb4\x40\x2d\x84\x5b\xb0\xed\x18\xab\xa1\x98\xa8\x5f\x62\xcb\xfb\x11\xf2\xff\x0c\x75\x51\x14\x80\xdf\xd7\x5d\x3a\x97\x15\xfd\xf1\xc3\x1d\x57\xe2\x3e\xa1\x36\xf0\xac\xee\xb1\xbf\x8e\x88\x96\x3b\x42\x75\xed\x6a\x5b\xa7\x81\x66\x34\x1f\x98\x74\x08\xc0\x02\xec\xf6\x6f\x6a\x16\x9b\xdf\xd4\x78\xab\xb4\x48\xd7\xb0\x76\x6d\x15\xf8\x6b\x2f\xda\x26\x97\x7a\x61\xeb\x60\x3b\xf7\x89\xcd\xc2\x39\xc6\x47\x61\x5c\xf8\xc6\xa5\x52\x48\x69\x9a\x50\xb5\x52\x79\x1f\xbb\x26\xb3\x5d\xba\x7c\xf4\x80\x26\x04\x86\xf1\x42\xcd\x9a\x2e\x94\x06\x25\xcb\x57\x09\xfa\xba\x28\x28\x55\x94\xf4\x25\x85\xe7\x12\x1f\x91\xc9\x32\x96\x5c\x11\xf1\x88\xf2\x60\x94\x78\xdc\x25\x3f\x2e\x69\x10\x4f\x42\xa1\x03\x59\x78\x61\xae\x71\x38\xe0\x7a\x6c\x72\xe8\x85\x76\x11\x9b\x2c\x48\xc8\x7c\x61\xc7\x5e\xd1\x80\xb0\x2b\x9e\x56\x8c\x28\x7a\x6b\x02\x7f\xc3\x21\x83\x0c\x30\x5f\xd7\x90\x6c\x87\xe7\x16\xda\x3d\x7c\x35\xbc\x12\xee\xe1\xe3\x1b\x95\x80\x8b\x4d\xbe\x9a\xa4\xcb\xc0\x3d\x48\x12\x88\x16\x34\x36\xfe\x1f\x29\x2a\xa5\x73\xe3\xbf\x5b\xb7\xd4\x61\x9c\x9b\x34\x48\xe2\x3c\x8c\x09\xfe\xd9\xd2\x69\xf7\x4a\xd7\x84\x35\x90\xd4\xea\x32\xe5\xda\xc7\xa7\xa9\x74\x00\x67\x7f\xd7\x44\x7b\x5c\xd6\x11\x7c\xa5\xe8\xf5\x87\xfc\xfd\x87\xe7\x1c\x4f\xb2\x65\xb3\x39\x61\xff\xd4\xa4\x61\x3e\x20\x66\xe7\x29\xd7\x7f\xf3\x23\x4d\x85\xb9\xa9\xda\x7e\xb6\x77\xdc\x29\x65\x56\x4c\xbc\x17\x3b\x16\x16\xed\x8f\x3d\x55\x27\x38\x32\x56\x4e\xf2\x2d\xcf\xd5\x56\xbf\x4f\x56\xcc\xa2\xd2\x5d\x20\xf6\x36\x06\x52\xd5\x8b\x9f\xab\xe4\x9d\x60\x04\xef\x2b\x99\x92\x63\xe4\x62\x5a\xba\x70\x55\x60\xac\x76\x04\xbb\xdd\x76\x53\x83\x56\x6f\x55\x7b\x85\x69\xca\x2d\x7c\x7f\x51\x98\x77\xce\x29\x6c\x74\x6a\xfa\x45\x44\x40\xb5\x69\x57\x13\x3e\x8a\x4f\xc2\x87\xfd\x14\xaf\x0d\xff\x00\x09\x26\x61\x30\x73\xa0\xd3\x6e\x12\xf5\x4c\xda\x72\x87\x0f\x28\xc3\xf9\xda\x12\xe6\x08\xfe\x5c\x08\xa8\x90\x7f\x9a\xed\xb8\xfe\x0b\x8e\x35\x45\x4f\xbc\xa9\xf3\x63\x60\xac\xb8\x00\x77\xd5\x60\x96\xa4\xc5\xc6\x3d\xd5\xaa\x31\xcb\x11\x10\x78\x38\x71\x51\xa3\xe2\xeb\x89\x53\x21\xc8\x58\x43\xcf\x6a\x80\x3a\x3d\x50\xeb\x69\xf4\x4c\x48\xfd\x76\xa8\x31\xdf\x57\x2c\x76\x17\x35\x65\xc9\x37\x61\xcb\x19\x72\xa2\x68\xe7\xa2\x62\x18\x23\xc2\x43\x2d\x90\x13\x20\x08\xe3\xde\xc7\x19\x82\x7f\x81\xdf\x01\xa8\xc7\xf6\x4e\xdd\x96\x1d\x2c\x67\x2d\x4d\x8a\x11\x6d\x05\x18\xc3\x23\xf8\x36\xbe\xb1\x14\xe0\xe1\x70\x94\x64\x5b\xf2\xbd\x47\x3d\xb7\xd5\x8f\xd6\x4c\x25\x65\xf2\xbb\xe1\x72\x18\x87\xca\xe5\x7e\xc7\x73\xe9\xfb\x77\x9a\xe8\x8f\x03\x13\x21\x67\xc6\xa2\xdc\x0a\x06\x53\xaf\x16\x2c\xce\xb5\x7b\xfe\x90\x28\x7b\xed\x8b\x9e\x1c\x3b\x7c\xcb\x49\xd5\x8e\x9c\xe5\x6b\x11\xa5\x8e\x17\x0f\x54\x04\x52\xb1\x74\x2e\x79\xae\xcb\xf0\xdf\x54\x32\xc7\x4b\x45\xf4\x58\xf9\x8d\x32\x2b\x4e\x92\xf8\x21\xe2\x7e\x94\x94\x54\xcb\x72\x04\x82\x4f\x15\x7f\x0f\x6d\xfc\xcd\x4d\x2d\x6c\x80\x03\x14\x21\xe3\xee\x8e\x62\xb4\x9e\x99\xa8\x28\x83\x69\xc4\x6d\x67\xe9\xfe\xfd\x07\x37\xef\xe9\xdd\xfb\x30\x61\x27\x81\xfb\xb8\xcb\xce\x37\xa6\x6d\xa2\x92\xef\x4b\x26\x2a\x4f\x13\x45\xa2\x86\x21\x95\x15\xb2\x5b\xc9\x58\x87\xbd\x27\x69\xf2\x61\x67\xc1\x4e\x0f\x98\xd4\xf6\x89\x4a\x65\x5c\x70\x48\xb8\x7f\xf1\xb7\x27\xba\xf8\xae\xd4\x1c\x77\x80\x00\x9f\x89\x55\x3d\xb5\x96\x41\x6e\x8a\xd7\x9f\x46\xaf\x16\xc6\xea\x9a\x66\x77\x6c\x75\x5c\x38\x0e\xd9\x39\x34\xc6\xfe\x44\x4b\x2f\xb3\xfb\x8d\xe8\xf0\xa1\x0e\x25\xa2\x60\x2a\xbe\x85\x41\x46\xca\x02\x4c\x9e\x00\x0b\x9d\x61\x4f\x0a\x89\xf7\x47\xe0\x8b\x09\xda\xdf\xb9\x77\x4b\x54\xb9\x4a\xa7\x74\x61\x1a\xef\x2d\xdc\x62\xf4\xcb\xf0\x9b\xee\xaa\x65\x36\x34\x69\x1a\x46\x51\x4b\x35\x0e\x70\x82\x5a\xe8\x86\xea\x20\xf6\x83\xed\x30\x1e\x18\xa0\xae\x1d\xb2\x0c\x19\x23\x59\xc8\x5b\xe1\xc1\xf3\x87\xda\xa9\x01\xb3\x70\x90\xdb\xaa\x3f\xc6\xe8\xa4\xe2\x63\x47\xf5\x51\x20\x97\x4f\x29\x93\xb6\x66\xd2\x81\x6f\x8a\xd2\x43\x51\xa4\xfc\x9f\xd2\x02\x97\x50\xa4\x5c\x01\x58\xec\x37\x6b\xe9\xba\xd2\x35\x58\x22\x29\x4c\xab\x7c\x88\xa5\x25\x91\xbb\x84\x76\x3d\x7f\x15\xca\xc8\x88\xb9\xa6\x3a\x4a\x0f\xf7\xf8\x58\x33\x29\x3b\x67\xfa\x5c\xa5\x1b\x2c\x19\x8d\x98\x2c\x04\x13\x3a\x43\x10\x03\x78\x72\x7f\xa0\x89\x0a\x4f\xe8\xb3\x71\xb3\x86\x84\x17\xec\xad\xff\xe5\xa9\xed\x5f\x96\x66\x48\xa5\xe5\xc3\x24\x22\x18\xad\x0d\x45\x2b\x26\xad\x9f\x3d\x2a\xb5\x5a\x3e\x15\x4b\xd6\xf6\x19\x8d\x14\x92\x56\xd7\x14\x63\x4e\x36\x32\x01\x8e\x45\xee\xc4\x92\x83\x46\x1d\x3a\xb6\xa7\xfc\xbf\x85\x97\xa9\xce\xe9\xd6\x1e\x26\x71\x98\x27\xa9\x8a\x5e\xd7\x15\x72\x68\xbd\x66\x64\x9f\x69\x67\xab\xc2\x44\x2d\x71\x8d\x82\xdf\x70\x9f\x29\xcc\xda\xed\xf1\x2e\xd7\xbc\xb2\xf4\x84\xda\xac\xff\x03\x8a\xe4\x02\xe0\xd0\xdd\x0d\xe5\x10\x55\xb8\x33\xb0\x4b\xa6\x27\x4e\x16\x93\x1b\x39\x31\x4f\x7f\xac\xca\xbb\x77\xb1\x57\x90\xbe\x9b\x86\x3d\xc4\x74\xfc\x00\x8e\x27\xe2\x8e\x2b\x28\x73\x63\xec\x21\x0b\x6b\xd5\x26\xca\x7d\x8f\xb5\x7c\x87\x66\x45\x84\x69\x69\xd5\x21\xcf\x76\x9e\x12\xb0\x68\x0c\xda\xd6\xd1\x4c\x1b\xd7\xc8\xbd\x11\x87\xe5\x71\x0d\x49\x18\x8e\xf2\x68\x6d\x46\xd1\xc2\xfd\x2e\x7d\x8b\xe5\x1f\x2f\x9f\x1b\x53\xfa\x27\x84\x13\x50\xa2\xbd\x0b\xd6\xf8\xd8\x76\xa8\x24\x62\xc1\x3d\x5d\x5a\xe7\xeb\x5a\x7e\x57\xd6\xed\x30\xec\x19\x3f\xcb\xa7\x55\xd2\xe1\x2d\x80\x44\xb4\x7c\x07\x02\x48\xc8\x4d\xc9\xd3\xa9\x12\x83\xe9\xed\x69\x59\x91\x8f\xbf\x3f\x29\x5d\x11\x2b\x12\x58\x8e\x30\x19\xf9\x7f\xf7\x38\x81\x0f\x71\xb8\xcf\x4c\x74\xfa\x93\x65\x88\x31\x5f\x1f\xe1\xf5\x28\xb0\xfc\x5b\xcf\xc2\x9a\x56\x22\x6f\x0c\x38\x13\x98\xc0\x33\x7f\x88\xc2\x70\x54\xa7\x30\x77\xb4\xa9\x9f\xdd\x33\x71\x45\x98\x5f\xfc\x05\x9c\x1f\x96\x46\xcd\x51\x32\x3d\x45\x9b\x1f\xab\xf0\xb1\x8e\xe2\x66\xe7\xb4\xe7\x4e\x57\xe7\xbd\x48\x08\x50\x2c\x86\x53\x78\x3b\xc4\x9d\x7f\x8a\xe8\x1f\x5f\x08\x5f\x14\x2e\xed\x76\x7a\x6d\xfe\xff\xf0\xa5\xb0\xc8\x6e\x7b\x0e\xaf\xf4\x41\xcd\x16\xee\xdb\xd7\xf6\x03\x5b\x53\x12\x12\x5f\x7a\x1d\xbe\xd9\x4a\x56\x5d\x5a\xfd\x67\x1e\xa7\xa7\x10\x82\x2f\xfa\x2c\xeb\xb8\xd3\xca\xb5\x9a\x40\x2f\x56\x52\x4c\x4c\x7d\xf5\xea\x1e\x72\x00\xc4\xb4\x2b\x75\xaa\x59\x00\xb4\xad\xba\x43\x39\x5d\x18\xfa\x72\xb8\x0f\x6c\xc2\xd9\xc1\x04\xa0\xeb\x06\xb1\xeb\x55\xcd\x17\xc3\x50\x38\x78\xd3\x6f\xab\x14\xf0\xe9\x71\x45\xf8\xd5\xe9\x8a\x5f\xd9\x5a\xdc\x7b\xf1\x40\xfb\x6b\x2f\xb6\xaa\x07\xf1\xe2\x9c\x5c\x37\x60\xfb\x0f\xb4\x57\x42\xb3\x9a\xa1\xbe\x0c\xef\xfa\xec\x58\x9d\x16\xef\x7b\x15\x6e\x52\x7a\x0e\xfe\x33\xef\x29\xd5\x9f\x9e\x8c\x88\x0d\x71\xc5\x64\xdb\xdc\x16\xee\xfb\xf9\x80\x24\xd6\xcb\x17\x46\x86\xe0\x24\x0d\x04\x5f\x37\xa1\x9f\x4c\x9c\x0f\x8a\x2c\xf4\xb3\x9c\xa5\x52\x9a\x02\x7e\xe7\x42\xa5\x7e\x6e\x48\xbb\x17\xe9\xd2\x1b\x63\xc5\xed\x34\xf1\x5a\x5f\x9f\xb7\x10\x67\x85\xbf\xbd\x82\xb5\xc8\xd4\x57\x98\x02\xa4\xc2\x91\x5f\xc3\x81\x78\x8f\x7c\x20\xe1\xc7\x50\x60\x03\x4f\x91\xf7\x63\x09\xc1\xbb\xbe\x0b\x7b\x89\xf4\xcf\x3b\xba\xd7\xe8\x94\x4e\x19\xdd\x54\x9a\x9c\x7e\x3f\x35\xa6\xb7\xd3\x35\x86\x9d\xc6\x72\x93\xe6\x7b\x57\xdd\xdf\xc4\x9b\xd9\x7c\x52\xf9\xcc\xb0\xd9\x8c\xc5\x15\x5a\x35\x18\x0e\x9c\xb4\x9f\xe0\x77\x05\xa9\xbc\x47\x95\x8e\x88\x78\x79\xa7\x6a\xbd\x7e\x8b\x16\x1c\x0c\xce\x35\xdd\x6c\xcd\x39\x7b\x24\x20\x67\xf1\x63\x08\x0f\x6e\x29\xed\x2c\xa1\x4f\x12\x38\x81\x0b\x40\xd6\x2d\x82\xcf\xcf\x06\xfe\x90\x01\x43\xba\xd0\x21\x4c\x94\x5b\xcf\xcd\x03\x8b\x07\xda\xdd\x62\x8d\xce\x59\x25\x61\xe5\x18\x64\x1a\x78\x39\xc3\xf8\x95\x22\x0e\xa4\xa7\x48\xfa\x79\xd0\x11\xc9\xd7\x4d\x2d\x2e\xbd\xb4\x5c\xbb\x5b\xba\xe6\x6d\xcb\x30\x63\x1c\x50\x06\x3b\xd9\x44\x2c\x97\x45\x61\x0f\x21\xa2\x15\xa0\xb2\x28\x24\x34\x40\x09\x8b\x2f\xad\x43\x58\x82\x99\x8e\xc4\xb1\xaf\x18\x3f\x46\xe7\x23\x9e\xf1\xe6\x58\xe7\x60\xd7\xf5\x0c\xb4\x3a\x7b\x14\x53\xb9\x9f\x0b\x6e\x45\xba\xda\x1c\x96\xf4\x96\x02\x50\xe5\xc9\xf2\x5a\x41\xb5\x03\xd0\x42\x6c\x07\x1e\x1e\xae\x3b\x23\xc4\xf8\x66\xec\x1c\xc7\x6b\xe3\xd2\x10\x8a\x58\xeb\x13\xb5\x96\xc5\x68\x6d\xa7\xca\x4d\xa1\xbf\x08\x49\xf7\x1d\x1d\xd5\x73\xf6\x53\x6c\x31\xbe\x21\xfb\xa5\x65\x5e\xe1\x05\x4d\xe1\x2c\x62\xfe\x7d\x4f\xc5\x65\x9f\x68\x60\xa7\x1f\xf9\x01\xba\x2a\x11\x46\x9e\x57\x0d\xbc\xe7\x1b\xaa\x37\x07\x88\x43\x91\x62\x50\xe1\xee\x73\x6c\xd3\xff\x59\xd3\x33\x8f\x9d\x3d\x2b\xe2\xac\x08\x02\x93\x65\x4b\x45\x34\xa3\x04\x0a\xee\x29\x82\x75\x16\xc9\xe0\x7f\xa0\x17\xb1\xa4\x82\xe5\xb3\x8b\xd8\x81\x4c\x71\x64\xfc\x15\xb3\xc3\xb9\x8c\x50\xf6\x63\xe2\x53\xaa\xeb\x09\xf4\x9f\x86\x14\x53\x38\x45\x31\x99\x6a\x07\x13\x64\xf8\xef\xd6\x22\xf3\x7d\xfb\xda\xb9\x9f\xe6\x7e\xac\x7a\xbe\xaf\xa8\x9e\xef\x2b\xaa\xc2\x9a\x0d\x12\x93\xcd\xb8\x6c\x1f\xf2\x55\x42\x39\x48\x36\x03\xbf\xff\x23\xbc\x0b\x2f\x43\x7a\x62\xf8\x55\x1f\xdb\x94\x60\xb4\x96\x86\x01\xef\x1c\x44\x6a\x37\x5c\xc9\xe0\x37\x3f\xae\xf4\xb0\x55\x8b\xcb\xab\xc0\xc3\x88\xa9\x72\x55\xdd\x4f\x9a\x84\xd3\x86\x7e\x18\x29\xf2\x03\x2c\x1d\xbe\xb6\x60\xe2\x55\x7f\x6d\x55\x48\x12\x30\xb4\x57\xd5\x30\x5f\xad\x0d\xda\xe1\xb9\x97\xda\xc3\x22\x5d\x5e\x9b\x72\x4e\xd5\x47\x27\x95\xf8\xff\x06\x1d\x02\x9c\x13\x74\xec\xd1\x83\x34\xcc\xf2\xa1\x2f\xc9\x30\xa1\xc4\x71\x80\x03\xc6\x67\xc3\x9b\xbb\xa9\xc9\x90\xfc\xec\x6f\x20\x73\x20\x84\xe9\x8a\xd4\xe8\xbf\xe2\x04\x81\x5d\x87\x7e\x06\x1e\xe3\x61\xf4\x36\x31\xe3\xc5\xc4\xb2\x26\xef\x38\xea\xa9\x08\xe1\x94\x3e\xe4\x3e\x25\x97\x18\xf9\x83\x4f\xc8\xc7\x16\x45\x40\x9a\x2a\xdc\x4c\x4d\x28\xa6\x90\x33\x96\x1c\x5b\x6e\xc2\x45\xbc\x80\x38\x71\x67\xc7\xd9\xc2\x63\xc8\x88\xc0\x23\x18\xe3\x24\x45\x78\x76\x42\x91\x48\xce\x76\x4a\xcb\xc1\xff\x9f\xaa\x0a\xa2\x4a\xa2\x15\x42\x68\xa1\xe0\xf7\x98\xd6\x1b\x19\x61\x48\x4b\x63\xa5\x6d\x9b\xb4\x7e\xed\x9f\xb1\x07\xb3\xa1\x8a\x17\x79\x98\x1a\x00\x6e\xec\x97\xd9\x5e\x2c\xb4\x85\x61\x80\xcf\x6e\xf5\x91\x9e\x69\xef\xdf\xbf\xb8\x9b\xde\x0e\x8b\xfc\x0a\xd8\x29\x35\x39\x8f\x90\x38\x29\x56\xc9\xb3\xf4\x4c\xb6\x65\xc0\x61\x49\x37\xbc\xa9\x17\x2d\xae\x70\x5d\x47\x25\x77\x35\x7b\x27\xc2\x24\xd8\xa0\x4d\xa5\xdb\x3a\x4b\xb0\x7c\xe4\x12\x6f\x8e\x9d\x77\xb4\xab\x26\xbb\xf8\xfc\x42\xbb\x9b\x1a\x7f\x99\x5e\x5a\x0e\x29\x9a\x3f\xdb\x64\x65\x19\x26\x4f\xd5\x4c\xe1\x81\x17\x0e\xb6\xfb\x49\xd2\x9b\x52\xad\x0f\x3f\x54\xe9\xa3\xbf\xa6\x67\x12\x79\x80\x86\xec\xad\xbf\x6a\xb2\x64\x08\xdb\x2b\x9a\xd2\x2d\xa7\x2f\xdd\xd4\xd3\x9a\x16\xb1\x28\xc1\xb1\x80\x14\xb6\x85\xa8\x49\x6d\x3d\xbf\x17\xe7\x48\xe3\x82\x11\x41\x53\x4e\x56\xf1\x63\x55\x2e\xf8\xb8\x86\x32\x9b\x3f\xd4\x8e\x93\x78\x25\x4c\x0b\x30\x41\xda\xe6\x2c\xd4\xdc\xf9\x5a\xc5\x96\xfd\xd4\x8f\xad\x36\x94\x96\xd2\xb5\x05\xb3\x72\x12\xa5\xae\x68\x77\x7d\x5a\xc4\xc1\x20\x34\xe9\x14\x2d\x1e\xec\xb9\x4b\x8a\xef\x6d\x1d\x29\x30\x9c\x5a\xdf\x19\x6b\x5d\xbd\xf2\xd7\x66\x5d\xd5\x6c\xc7\xc4\x9d\x5a\x9b\x58\x19\x70\x09\x7e\x82\x6d\xc7\x37\xb4\x1c\xe0\xc0\xfe\x3e\xad\x4b\x64\xad\xd7\x75\x95\xe7\x1b\x36\x51\x9d\x0d\x92\x1e\xcb\xa8\x20\xb4\x82\x41\xe2\x6b\x65\x83\xfc\xff\x1f\xe3\x1d\x59\xef\x08\x19\x00\x11\x3f\x52\x2c\x4a\xf1\xeb\x3b\x68\xbe\x80\xd2\xdb\x5b\xd1\xc0\xa7\xcf\xb0\x91\xa4\xad\x81\xd8\xe9\x28\xfd\xa6\x65\xe5\x70\xe8\x93\x3a\xb7\xf0\xfc\xa1\xf6\xc0\x44\xd1\xb4\xf2\x78\x81\x39\xc4\x41\x08\x59\x08\xa9\xb7\xd3\x16\xc5\x30\x9f\xb6\x0e\x65\x3f\x4d\xb2\x8c\x39\xfc\x39\x53\xaa\x7a\xe0\x2f\xa8\xc2\x60\xb7\x48\x7b\x26\x46\xca\x8e\x1b\x06\x3c\x45\x35\x74\x86\x66\x11\xa6\xfb\x4e\x85\x08\x30\xcd\xb9\x38\x02\x7b\xfb\xa1\x26\x1c\xfc\xb0\x06\x60\xd9\xbf\x1f\x7c\x21\x45\x2a\x34\x96\xf6\xf9\xcb\x1f\x13\x92\x94\x06\x26\x8f\xd5\x34\x89\x7b\xfd\xc4\x26\xfc\x59\x16\x6d\xec\x72\x46\x1f\xab\x7e\x8d\x15\x33\x30\x43\x72\xc0\xa6\x95\xe4\x13\x0b\xfd\x28\xf1\xf7\x4d\x68\x0d\x6c\x5e\x52\x86\x33\x48\x8a\x60\xd0\xd2\x68\xa3\x0a\x1f\x7c\x8d\x66\x64\x71\x0e\x22\x51\x3d\x63\x39\xd3\x31\x59\xa7\xb1\x6e\xf8\xa6\x02\xd9\xe8\xae\xed\x9d\x72\x52\xba\x9b\x54\x3d\x47\x29\x0e\xe4\x2b\x36\x77\x78\xc0\x52\x4a\xf2\xb9\x62\xdb\xbd\xca\x6d\x80\xf1\x3a\xa9\xfa\xb7\x11\x48\xa3\x68\x70\x83\x96\x1d\x72\x4a\x57\x34\xca\xfd\x34\x1d\x38\xd8\x69\x67\xb1\x27\x61\x2e\xef\x61\xf6\x60\xaa\x3f\x52\x24\x15\x42\x7d\xc9\xbd\x5a\xb0\xfb\x38\x7f\xf6\x80\xe4\x00\x5f\x00\x24\x18\x76\xe1\xfb\x6a\x4c\xa1\xf1\xa0\x93\x6a\x2d\x4b\xee\x7d\x57\x35\xf6\xe6\x61\xd7\xe4\xe4\xf5\xc0\xa5\xb8\xa1\xf3\x80\x37\x1a\x7b\x3a\x80\xe5\xb7\xeb\x82\x5f\x5d\x09\x22\xdf\xb0\x30\xf3\xd2\x6a\xe6\x7e\x37\x29\x2c\x37\x0b\x52\x74\xac\x9a\xc9\x37\x6a\x83\xe7\xc1\x1a\xe3\xec\xc4\xa9\x52\xf2\x86\x90\xb2\xe5\xca\x84\xa7\xd8\xfe\x3e\xac\x65\xcb\x4a\x37\x8a\xb2\xf7\x4b\xb6\xfb\x44\xec\xea\x71\x75\xd4\xd5\x35\xa3\x0e\xcf\x2d\xb4\xfd\xa0\xdc\xc5\xe4\xa1\x73\xe7\xb0\x0a\xb0\x8f\xd3\x24\x49\xe6\xc3\xc5\x01\xc3\x24\xed\xfb\xf1\xac\xa2\xb0\xbc\x0c\xdf\x49\xd3\xf9\xf3\x3f\xd0\x9c\xc1\xb3\x3c\x8a\xb2\x88\x70\x66\x95\xbf\xc9\xff\x00\x7b\x06\xaf\xe6\xba\x92\xad\x0d\x03\xd3\x35\x69\x7f\x4a\xaf\x0f\x1c\xb4\xa8\x81\x00\x15\x24\x95\x6a\xd5\x7e\xea\xc7\xdc\x65\x28\x60\x37\x7a\x56\xc9\x99\x56\x20\x71\x4a\xba\xd7\xb1\x37\x25\xa9\xd1\x1c\xb2\x97\x15\x0f\x23\xa7\x9e\x58\x5c\xaf\x01\xd5\x7b\xb0\x9d\x9b\xb8\x37\xe5\x9e\x0c\xd0\x3f\x21\x92\xa4\xaf\x85\xaf\xfe\x83\x66\xcd\xef\x10\xbd\x1b\xb0\xb7\x9f\x29\xa6\xae\xcf\xd4\xea\x89\xe3\x67\x5b\x95\x22\x5b\xb9\x44\x44\xc0\xab\xde\x16\x97\xa7\xfe\x8a\x89\xa6\x14\xf0\x0a\xa0\x66\xe4\x37\xce\x29\x4b\x77\xad\x52\x0e\x0c\xd3\xe1\xc3\xb4\xf4\x61\x40\xa0\xbd\x8f\x22\xd9\x1b\x9e\x92\x61\xf8\x1f\x55\x5f\x04\xa5\x9b\x37\x2f\x91\x81\x50\x5d\xbb\x32\xf3\xcc\x31\x8f\x4c\x0d\x53\x13\x23\x22\xfc\x80\xa6\x16\x59\xe1\x7b\x8d\xf9\x32\xbf\xef\x87\xf1\x94\x62\xd1\x41\xed\x07\xeb\xee\xaf\xc6\x8a\xb1\xeb\x7c\x6d\x6c\xf7\xef\x6f\xe7\x56\x34\x56\xce\xf2\x96\x55\xa7\x5d\x57\x83\xdb\x37\xd9\xa3\xe5\x9c\xe1\x45\x1f\x9a\x30\x7e\xd4\x91\x12\x4e\xfd\x7d\x4e\xa3\xe3\x7c\x7f\xb2\xa3\xf0\x73\xf7\x35\x70\x9b\xd5\x17\x6d\x81\xba\x1a\x50\x8a\x0e\xc4\xcc\xc4\x86\xfd\xff\xf1\xef\x51\x8a\x5a\xba\x20\xcb\x75\x27\x85\x13\x75\x64\xfe\xc3\x8e\xad\x08\xcd\x3e\xde\x54\xed\x1f\x98\xa5\xdc\x3a\x4b\x48\x9d\x5d\x52\x34\x7a\x5c\x2f\x94\x9a\xc9\x56\xd3\x57\xba\xab\xa9\xf1\x7b\x61\x6c\x58\xf6\x8e\xfb\x09\x95\x90\x7b\xdd\xa5\x28\x97\xbe\x3f\xe2\xa2\x9e\x15\xaa\xde\xbf\xdf\xf2\xfd\xaa\x18\xd8\xa4\x2b\xe8\x76\xb4\x2c\x21\x96\xc5\xff\xa2\xe2\xc8\xa3\xc6\x8d\x30\xee\x53\xb8\x2c\x13\xeb\x12\x3a\x53\x00\xbd\xe0\x35\xee\xf2\x31\x02\x0f\x90\xd1\x89\x02\x61\xdd\x5a\x4f\x94\x12\x43\xcf\xc4\xe1\xeb\x46\xb8\x6a\x61\x07\xae\x68\x8b\xad\x09\x87\x92\xee\x4a\x48\xbe\x71\x39\x76\x2c\xa8\xee\x29\x94\xd5\x39\xeb\xad\xfa\x79\x1e\xe6\x45\xcf\x64\x3b\x54\x68\x0b\xf2\x0a\x5b\x42\x7a\xde\xfd\xff\x72\x61\x6d\x9e\xd0\xfb\x82\x41\x5a\xd2\x69\x56\xc7\xea\x2e\xb6\xc3\x78\x29\x49\x87\x5c\x3d\xc3\x69\xb4\xad\xa3\x90\xa7\xdb\x26\x8f\xab\x82\xde\x8a\xc9\xe9\xd1\x15\x63\xa4\x12\x7c\xb9\xa8\xb3\x55\x7e\x36\x08\x2b\x7c\x33\xba\x39\x4a\xbd\x21\x89\xbc\x9a\x69\xa5\x3d\xcf\xd8\x0c\x4d\x0f\x6a\x9b\xfe\x2d\xde\xe0\xb3\x5a\x74\xf4\xfc\x42\x7b\x14\xfa\x71\xa2\x44\x94\x39\x31\xcc\x37\x0d\x1c\xbe\xa5\xc3\x9d\xe5\xfe\x72\xb2\x12\x06\xa0\x50\x57\x12\x34\x96\xdf\x4d\x61\xc1\x86\x7e\xe0\xa7\x49\x1c\xb6\xdc\x91\xc8\x64\xdc\x7c\xa3\xfa\x52\x0e\xfd\xd3\xf9\x19\x27\x3e\xf1\x03\xb2\x64\x88\xd9\x5f\x1e\xab\x46\x01\x30\x90\xa8\x96\x1a\x81\x3c\x4d\x75\x9a\x5a\x16\xe0\x4c\x94\x9e\x23\x63\xd5\x45\x4e\x1c\xeb\x16\x25\x0b\xe6\xdd\xe4\x3a\x44\x53\x6b\x4e\x54\x0c\xbb\x86\x65\xec\x2d\x21\xb8\xed\x8c\x3a\x57\x43\xa6\x1c\x9e\x83\x7b\x10\x14\x2c\x84\x85\x1a\xfb\x27\xaa\xde\xfe\x49\xd3\xef\x8c\xfc\x94\xa0\xc4\xba\x65\x6e\xcb\xd8\xca\x36\x4d\x8a\x3c\xf2\x57\x79\x29\x32\xed\xba\xce\xc1\x5c\xad\xf6\xc9\xac\x19\x8d\xd9\x3d\x57\xc1\xec\x9e\x6b\xca\xad\x95\xdb\x29\xe0\xc5\x2b\x6e\x73\xcb\x0a\x26\x6c\xd8\x90\xc4\x64\x99\x89\x72\x18\x16\x38\x90\x4c\x78\xcd\x37\x55\xf5\x80\x51\x4e\xb9\x7f\xa1\xea\x23\x77\x18\xb1\xdf\x65\x25\xd5\x7f\x9a\x0a\xbc\xfc\xff\xb1\x2a\x25\x3b\x55\xa1\xe6\x72\xf9\x22\x81\xf4\xf3\xbf\x34\xb1\x56\x27\xf9\xc0\xa4\xab\x21\xab\x97\xc0\x8b\xfe\x54\x49\xe9\x81\xae\x8e\x85\x3f\xe1\x8e\xb3\xdf\x3c\xde\xab\x99\x0c\x48\xba\xb6\x5a\x86\xf3\x74\x19\xce\x8e\x4c\x18\xaf\x84\xb6\x60\x07\x86\x08\xe0\xfa\xf9\x7a\xab\x2a\xc5\x02\x89\x0b\x7e\xa9\x65\x85\x43\x4e\x8d\xb7\x7f\xd9\x26\xa3\x29\xf9\x8a\xd5\xfb\x96\x57\x01\xcc\x93\xbb\x6e\x4b\x59\x0e\x07\xbd\xb3\xa3\xb0\x5e\x2c\x72\x22\x3c\x0d\x34\xa6\x48\x2f\xdc\xf1\x74\x53\x39\xa5\xb7\xf0\x26\x60\xbf\xc6\x16\x41\xfc\x8e\xc3\xe2\x2e\x18\x96\xa5\x2a\x56\x61\x58\x76\x44\x01\x77\x78\x46\x38\x7c\x86\xcd\xc6\xa8\x7f\xd7\x53\x95\x0a\x40\x32\x44\xa8\x83\x4e\x6e\xc5\x34\x22\xdd\x49\x9f\xd0\x44\x71\xa2\x81\x52\x94\x48\xeb\x9f\x44\x8c\xa8\x66\xfa\x67\xdb\x01\xb7\x19\x5b\x22\x5c\xbb\xe0\x7e\x6c\xf3\xa6\x59\x6e\x56\xca\x23\x08\xcf\x28\x47\x89\x6a\x28\x38\x57\xdb\x9e\x2f\xbf\xdc\x4e\x4d\x69\xfe\x5b\xba\x5b\xd2\xa1\x51\xea\x62\xaf\xa5\xc5\x2c\xba\xc3\x30\xb7\xab\xa0\xe9\x53\x5b\x93\x3b\x87\xe7\xda\x7e\x91\x27\xfd\xd4\x1f\x0d\xb8\x73\x7c\xf3\x9a\x52\x28\x7e\x13\x6b\x53\x12\x73\x5f\xfe\x9c\x53\x96\xe8\xd6\xcd\xc0\xc4\x59\xb8\x62\x08\x5d\x8a\x95\x74\x55\x75\xd8\x73\x93\x32\xb3\xe4\xd4\x36\xcd\xc2\x42\x9b\x04\xc7\x9c\x86\x0c\xc2\x5b\x4e\xcc\xf3\x4d\xed\x9c\x7f\x71\x71\xae\xdd\x4b\x7d\x82\xb5\x42\x7b\xf5\x73\x78\x9d\x9c\xa8\x77\x18\xa5\x89\xdf\x63\x6b\x03\xff\x0c\x5b\x85\xaf\xc7\x8e\xe0\x67\x44\x0d\xda\x81\xc9\xa6\x5d\x06\x83\x95\x44\xc5\x15\xa7\x3d\x00\xc7\x77\x9b\x12\x7c\x7c\xc7\xce\x3e\x55\x69\xbb\x6b\x3b\x1c\xda\xf2\xb6\x0e\xa7\xd7\xc9\xb0\x58\x1a\x17\x4b\x97\xf3\xa5\x8e\xd2\x1f\xbb\xa8\x2b\x73\x17\xc7\xed\x86\x40\xaf\x88\x47\xa9\x09\x4c\xaf\x1c\x43\x5e\x00\x22\x94\xe2\xf8\x1a\xce\x79\x5a\x36\x3d\x35\x5f\xa0\xd9\xc5\x01\xb7\xe9\xe9\x56\xe3\xb1\xc5\x31\xfc\xd6\xfb\x9e\xf2\x87\x36\x2a\x0c\x36\xb4\x81\x31\xd5\x0f\x94\x90\x18\xd3\x95\x4a\x1b\x80\x03\xdb\x5f\x1e\x3b\x78\xc6\xfb\xe3\xca\x04\xd0\x36\x47\xa2\x16\x50\x0f\xa6\x62\x18\xab\xc0\xfc\x9e\x86\x1d\x3f\xd2\x51\xa9\xad\xdf\xad\xa4\x18\xbe\xef\x39\x9a\xab\x8f\x01\x28\x11\x79\x05\x1a\x54\x6c\xf3\xc7\x27\x8e\x99\xef\xd4\xd8\x51\xf3\xee\x9a\xd4\x23\x93\x83\xed\x6c\xd5\x44\x11\x16\xa6\x48\xd0\x2b\x9c\xea\x7a\xad\x71\xed\x99\x76\x9c\xa4\xf9\xc0\x10\xa2\xcc\x86\xfa\x6f\x69\xe4\xf7\x5b\xca\x61\x5e\x1d\x88\xa4\x10\xa6\x5f\xf3\x07\x9c\x1f\x3f\xa1\x58\x5c\x57\xe3\x8c\x44\x99\x14\x30\x1d\xa7\x49\x25\xee\x10\xa1\xdb\x86\xae\xd0\x6c\x94\xfa\xab\x91\xc5\xd8\x59\x65\x54\xdb\xfd\x7b\x5f\x65\x5d\x6f\x6e\x65\xa5\x7b\xa6\xfd\xf5\x79\xca\x91\xa3\xa8\x72\x47\x07\x1a\x60\xe8\x47\x9e\x61\x5b\x47\x31\x37\xa7\xc9\x88\x33\xce\x22\x9b\xd7\x72\x12\x7a\x2a\xae\x4f\xfd\xdc\xec\x52\x0c\x76\xef\xd0\xe6\xc0\xc9\x78\x5b\x95\x59\x90\xa1\x81\x5d\x61\xf6\x7f\x61\xd7\x57\xfa\xe3\xb7\xc6\x2e\x5d\xf9\x1d\x72\x50\xb1\xd2\xb7\x01\x87\x85\x67\xbe\x4a\x8b\xcd\xf2\x88\x39\xf2\x92\x07\x8a\x34\x70\x68\xd2\xbe\x49\xa7\x15\xea\x13\xf5\x23\x1c\xe6\x0c\x18\x10\x05\xea\x96\x95\x25\xfb\x7e\x2d\x99\x2e\x06\x33\xf6\x8b\xcc\xf8\xa8\x16\x88\xaa\x8e\x8b\xbc\x6f\x7b\x8a\x0f\xf9\x64\x13\x5d\xc5\x52\x6a\x4c\x2f\xc1\xe9\x60\x19\x2e\x6c\x59\xae\x4e\x9c\xb9\x6f\x5f\x7b\x10\x66\x23\x3f\x0e\x03\x29\xab\xe1\x40\x66\x86\x2f\x40\xfd\xae\x68\x32\xd2\xb7\x55\x49\x33\x2d\xb2\x0c\x4d\x2f\xc8\xd4\xbd\xad\x34\x77\xde\xfe\x5c\x4d\x75\xb3\xda\xeb\x12\x03\x01\xea\x75\x9b\x67\x6a\x79\x8b\xf9\x43\xed\x28\xec\x9a\x48\x15\x31\xd0\x86\x2e\x39\xa4\xdd\x16\x64\x1e\x87\xa6\xb7\x43\x07\x34\x2e\x2c\xf9\x94\xf5\xe8\xb1\xf0\xde\xf2\x54\x8c\xb2\xa1\xba\x52\x00\x9f\x93\x62\x82\x23\xf2\x4e\x97\x66\x34\x53\xc8\x58\xa5\x79\x81\x6c\x10\x1c\x64\xcb\x4a\x8e\x1f\xa7\x45\x23\x7a\xbd\x0e\xb3\xd5\x4d\xfd\x38\xb0\x6a\xa7\x82\x71\x72\x09\x6e\x1d\x22\x8f\x22\x3f\x46\xbd\x07\x85\xb2\xf7\x3c\x07\x34\x78\x4f\x69\x31\xa5\x45\x64\x32\x7a\xf3\x8a\x56\xac\x74\xc0\xd1\xcb\x5a\x49\x8d\x72\xf1\x63\x13\x7f\x8f\x1e\x17\xa7\xed\x65\xa5\x9d\xf0\xdf\xd7\x7a\x62\x7e\xb6\x1d\x3e\x6b\x9e\xa5\xbc\x29\xde\xe8\xc6\xd8\xe9\xe7\xdc\xa8\x2d\xe1\xc5\x39\x4b\xec\x40\xe8\x88\xfd\xfb\x2d\xf4\x43\xc1\x40\x1a\xc4\x79\x0e\xb6\x47\x51\xb2\x96\x21\xbb\x63\x89\x03\xca\xc1\x86\xa7\xc6\x89\x54\x64\xfe\x4e\xd4\x56\xfd\xe2\x81\x76\xd7\xf8\x29\x29\xf1\xaa\x26\x35\x07\x29\xd2\x42\x10\xfe\xb0\x5b\x64\x03\x2b\x5a\x09\x17\xf7\x0e\x7e\x0d\x4f\xc8\xf2\x64\x52\x25\x72\xfc\x19\x95\xb8\x93\x3e\xc0\x92\xf3\x64\x41\x44\x7e\x7e\x6b\x6e\xe4\xd0\x0b\xed\x51\x92\x21\xfb\x6c\xe9\xc5\xed\xb9\xd7\xd0\x4e\xf0\xc2\xc1\x76\x92\xe6\xa6\x6f\xcb\xdc\x68\x31\x79\xa0\x72\xcf\x6c\xca\x45\x0a\xc5\x56\xca\x22\x3f\xcb\x4a\x6f\x47\x51\xb4\xcf\xa8\x1a\xf2\xcc\xff\xc3\xd9\xbf\xc6\x48\x92\x5d\x77\x62\x78\x77\x56\x55\x77\xcf\xb3\xe7\x49\xae\xb0\xfb\x5f\x24\xff\xa0\x31\x2b\x60\x96\xc0\xae\xb1\xf0\x9a\x5f\x22\xdd\x5d\xe4\x70\x7a\xc5\x9a\x42\x77\xb3\x87\x9a\x0f\xc6\xdc\x8c\xbc\x99\x19\xac\xc8\x88\x9c\x88\xc8\xaa\xae\x01\x16\x10\x0c\x41\x30\xf4\x49\xde\x5d\x2f\x0c\xaf\x6c\x4b\x36\xbc\x86\xbc\x4b\x58\xde\x25\x45\x51\xd2\x2a\x8b\xa4\x38\x12\xc9\xa1\x34\x0f\x0e\x39\xef\xe9\xf7\xbb\xab\xdf\xef\xee\x6a\x23\xce\xef\x9c\x7b\x4f\x54\xc4\xd0\x82\x3f\x4d\xc4\x74\x65\x66\xc4\x7d\x9c\x7b\x1e\xbf\xf3\xfb\xd5\xf2\x45\x28\x32\xf4\xa3\x6c\x84\xa8\x92\x8b\x49\xaa\x53\xea\xb0\x82\x2f\x0d\xd3\xa2\xb0\x79\x41\x4c\x3f\x88\x50\xde\x9b\x56\xda\xa7\x6b\x61\x1a\xff\x95\x82\x5e\xc5\xd4\x5d\x31\xe7\x19\x90\xb7\xac\x55\x5b\xc1\x5d\x53\x30\x9a\xf4\x90\xa3\xbf\xaa\x7b\x76\xd6\x6b\xe0\xe0\x97\x5f\x86\x10\x44\x54\xa8\x44\x02\xec\x85\x50\xc2\x3e\xe8\xcb\x70\x7f\x4f\xf1\x9d\x5e\x46\x15\x19\xc1\x30\x00\x88\xe2\x5d\x96\x87\x0a\x4c\x0a\x43\x6a\x71\xe6\xee\x58\x53\x84\xcb\x57\x94\x7b\x38\x4b\x28\x45\xe4\xb5\xff\x27\x78\x46\x82\x14\x03\xf2\xc0\xf5\xd1\x1f\xd8\x25\xd9\x82\xb5\xd2\x67\x82\xa3\x72\x2b\x68\x7d\xe9\xeb\x9c\x37\xfe\x73\xb8\x26\x4e\xd1\x78\xdf\xaf\x7f\x55\x98\x36\xe1\x56\x4a\x07\x97\x4a\x26\xdc\x50\x47\xec\x9b\x1c\xf5\x00\x14\x70\x17\x47\x1f\x3d\x57\xfa\x58\xc7\xa3\xde\x1e\x42\x23\x01\x36\x19\xe7\xb3\xf0\xfc\xa7\x03\xa5\x74\xfe\x77\x30\x43\x78\xe4\xa7\x29\x49\x89\x6e\x87\x02\xbe\x19\x6e\xfe\x95\x32\x25\xd7\x83\xa7\x5c\x17\x4f\xb2\x6c\x33\x66\x09\xc1\xa6\xc1\x2f\x7c\x33\xf0\xc0\x93\x6f\x56\x00\x2a\x99\x1d\xcf\x94\xaf\x22\x12\x8c\xe5\xdf\x61\x73\x7d\x7b\xaa\x18\xf0\x4e\xd7\x42\x16\x39\x5d\xf2\x30\xcd\x24\xdb\x8b\xe7\x61\x75\x3d\xbe\xf1\x7d\xc7\x26\x5b\x5a\x32\xd4\xa3\x84\xb9\xbd\xab\x2b\xbc\x3f\xa2\xb5\xc8\xb4\xb8\x7a\xc3\x9d\xa8\x27\x2a\xe6\xdb\xb9\xcd\x22\x9b\xcf\x6a\x0a\xf5\xd3\x9a\xc7\xf5\xbc\x3a\x30\x1e\xd2\xdd\x1c\xb7\x9d\x58\x68\x2f\x32\x5d\x5b\xd8\x7c\x0e\x5f\x22\x4f\x41\x5f\x02\x2f\x15\x38\x49\x78\xfe\xe8\xa7\x82\x7d\xff\x01\x1e\x8f\x3f\x11\x3c\xe1\x3b\x0a\x42\x53\x14\xbe\x80\x88\x45\xfb\xd3\xa9\x52\xe2\xf9\x69\x8d\xd4\xf1\x8b\x6d\x2a\x62\x1c\x90\x40\xf7\x3c\x8e\x4d\xd4\x08\x4e\x11\x64\x8a\x59\x90\xd4\x59\x34\xc8\xd2\x95\x84\x32\x67\xdc\x53\x10\x28\xa8\xe4\xa5\x4a\xb7\x84\xcf\x9c\xfd\x15\xb2\x01\x82\x64\x6c\x42\x09\xad\x0c\xa3\x18\x4d\x4f\x4e\xe6\xc8\x11\xac\x1f\x73\xab\x8c\x98\xb9\xc3\x68\x6c\x1c\xba\x00\xee\xfe\x2c\x56\xae\xab\x21\x97\x5b\x07\x26\x69\x7b\x2d\x4f\x47\x72\x47\x49\x6e\xb3\x65\x02\xd4\xb6\x7c\xd0\xf2\xe3\xa9\x4a\xcc\xfd\xf8\x53\x3d\xb7\x38\x4d\x7a\x69\x42\x03\x27\x1d\x30\x0a\x56\xcd\x19\x34\xec\xcf\xfb\x2e\xe8\x0c\xd3\xd1\x28\xed\x45\xc5\xaa\x32\x5c\x77\xf0\xa7\x7c\xa3\x94\x89\x7a\x36\x34\xbd\x32\x0e\x6e\x79\x77\xe7\x13\xd8\x00\xbe\x69\x14\x8e\x18\x4d\xe2\x2c\x4d\x98\x61\x0d\x6e\xc4\xc7\x1a\x26\xfb\x71\xcd\x9e\x3e\xbf\x50\x3a\x85\x45\x9a\xad\xce\xf8\x6c\xf0\x9d\x0a\x1b\x44\xa5\x05\x5c\x5c\xa6\x38\x1d\x20\x95\x2b\xe4\xeb\x4a\xe3\xb9\x8e\x54\x99\xdf\x4f\x59\x7e\x46\xaa\x48\xa1\x84\xbe\x58\x1a\xb8\x54\xbb\x7f\x44\xca\x79\x42\x5d\xf8\x67\x48\x3f\x48\x2b\x0f\x4d\x33\xff\x0b\x60\x45\x88\xf1\x50\xf6\x46\xe4\x7a\x57\x5b\x8f\x87\x3a\xca\xab\x51\x26\xe6\x8e\x3a\xee\xfa\x51\x8c\x46\xba\xf9\xfd\xc2\x03\x80\xb8\xd6\x75\x49\x39\xc5\x81\x53\x4d\x98\xea\x28\x31\x3d\xfb\xca\xc4\x14\x96\xb1\x12\xc2\x54\xd0\x72\x84\xe9\xeb\x6e\xf3\x8f\xa3\x22\x1c\x8e\x6c\x02\xb3\x85\x83\xee\xc7\x0a\x0b\xfb\xe3\x7a\xa9\x86\x18\x04\x87\xd1\x78\x95\xa0\x77\x8e\xe9\xf2\x1d\x35\x4f\xef\xd4\x32\xee\x0b\x0b\xed\xe5\x48\x9a\x8e\x39\xb3\x4d\x3f\x23\x59\x6e\x25\x7f\x36\x34\xe4\xc9\xd1\x79\xcf\xe0\x38\xc4\xd9\xce\x07\xde\xbb\x4b\x6c\xa2\xd6\x3f\x3e\xe7\xd0\x97\xa3\x74\x92\x14\x74\xd8\xe3\x28\xf9\x00\xb6\x04\x45\x3f\x94\xa5\xd0\x9e\x31\xc3\x9d\x17\xa2\xe0\xa8\xaa\x3b\xf7\x03\xdf\x37\x14\x4e\xf2\x22\x1d\x09\x93\x21\xc2\xbf\xb7\x69\x8e\x71\x88\x31\xbe\x16\x0f\x7b\xaf\x51\xf1\xd8\x24\x49\x3a\x49\x98\x0d\x71\xde\x69\xd3\x28\x80\x05\xb4\x80\xb0\xb4\x66\xd7\x14\x6b\xb0\xcd\xc7\x36\x2c\x28\x71\xeb\x48\xef\x5e\x74\x8a\xbb\xc7\x95\xfa\xee\x71\x9a\x03\xe1\xbf\xdb\xa9\x5a\xff\xed\x41\xe6\x0c\xfb\xa5\x7d\xfc\x99\x89\x72\xdb\xa3\x81\xd3\x74\xa2\x6e\x74\xbc\x9a\x1f\x04\xae\x31\x88\x8f\xae\x29\xb6\xad\xed\x1d\x45\xcb\x93\x1e\xa4\xdf\x74\x5c\xdf\xbe\x68\xe0\xa9\x03\xc6\xc6\x9d\x9a\xd2\xbb\xd4\x52\x2c\x98\x4f\x46\xae\x30\x97\xe4\xf1\x24\x0f\x05\xf3\xe5\x3a\x0c\x7c\xb7\x41\xe5\x3c\xb7\x71\xc4\xc7\xa2\xd4\x5e\x3c\x29\x10\x4f\x34\xdc\x00\x06\x2f\x4b\xb4\x55\x97\xfb\xda\xd7\xce\x63\x13\x2e\x59\xc7\x4b\x07\x5b\xce\x63\xc8\x37\xb5\x8c\xe9\x81\x5d\xed\x65\x5b\xa4\xf2\x19\xd7\x6b\xe2\x88\x01\xce\x57\xdd\x8f\x32\xf6\xda\xbb\xc8\x0b\x6a\x5d\x29\x2b\xad\x2b\x28\x5b\x66\x4d\x1c\xbd\x6a\xf3\xd9\xd2\x06\x00\xc1\x7d\x9b\xe6\x9f\xaf\x69\x34\x70\xc0\x1f\x0a\x3c\x6c\xe1\x50\xb5\xc4\x1e\xae\x82\xc6\x1f\xae\xce\xcf\xb0\x9a\x04\x8a\x53\x7e\x33\x0a\x9f\xa7\xe8\x9b\x61\x07\x88\x5b\x78\x71\x63\xdb\x9a\x92\x74\xc6\x84\x22\xf5\xf6\x78\xa7\x3c\xa0\x51\xf5\x80\xf8\x31\xd2\x65\x7f\x4d\xbb\x04\xe5\x72\xd6\xd5\x53\x24\x69\xb2\x73\xaf\x2a\x24\xe4\x69\xf8\xf6\xd2\xb1\xdd\xc0\x81\x17\x8d\xc6\x59\xba\x5c\x0e\xac\xd7\x47\xd4\xb4\x29\xeb\xc1\x83\x7e\xc0\x5a\xad\x67\x9e\x71\x75\x1f\xf2\x3b\xa5\xec\xf3\xb8\x3f\x0b\x59\x9a\x93\xb6\x18\x9e\x82\x89\xb9\xd1\xdf\x00\xff\x07\x89\x35\x2c\x7c\xec\x88\x99\xb5\xcd\x4f\x47\x1c\xa1\x29\xa9\xf1\x93\x69\x64\x57\x3a\xf0\x6a\x48\xeb\xca\xd2\x2d\x47\x69\x5c\x9e\xab\x73\x1e\xec\x71\x9b\xc6\xce\x41\x82\x05\x2c\xf0\xff\x7b\xbc\xa3\x2c\xe0\x59\x95\x0c\xad\xab\xa1\xee\xde\xdd\xee\x4e\xf2\x5f\x9a\xb4\x7e\x54\x21\x6b\x8a\x34\xdb\x56\x86\x03\x4e\xd5\xd0\x89\x8b\x9d\xc5\x19\x2f\x6c\xf1\x2d\x97\xc7\xfa\x50\xf7\x31\xfd\x5c\x89\xfc\x7c\xa8\x7b\x75\xa2\x7c\xe9\x21\x55\x39\x87\x89\x94\x04\x22\xc5\x29\xf0\xed\x6e\xa2\xba\xa3\xf2\xd7\x92\x7a\xb9\x45\xe3\x26\x70\x6c\xd5\x19\x78\x41\xa5\xe1\xae\x4c\x7d\x92\x72\x03\xc7\x33\x7f\x2f\x62\x16\xe1\x31\xda\xec\x6f\xfe\x83\x76\x91\xc1\x6b\xe0\xd5\x1c\xa8\xde\xd4\x7a\x51\x93\xf4\x49\x47\xa3\x34\x01\x89\xa5\x63\x2d\x2f\x9f\x90\xaf\x9b\xf4\x19\xcb\x18\x97\x29\x4a\x10\x15\xdd\x9e\xaa\x14\xf7\x96\x8e\x6f\x88\xf9\x58\x71\x2e\xf7\x6c\x1c\x4f\x46\x9c\xa1\xe4\xae\x30\x2d\x35\x72\xb2\x09\xb1\xdb\x4d\xd3\x91\x4b\xa2\xba\x58\xc2\xc9\x3b\x80\xbb\x03\x30\x8f\x56\x2d\xa3\xbc\x67\x0f\x98\x9c\x92\x96\x4f\x23\x1e\xc6\xa9\xc9\x37\xce\xdb\xfa\x86\x19\xb1\xbd\x16\xed\x0e\x1d\xb0\xec\x54\x5c\x28\xd6\xf4\x18\xb1\x88\x3a\xda\x39\xdd\xa5\x78\x0e\x66\x07\x36\xf8\x78\xe0\x51\x5b\x75\x42\xcd\xf2\xe5\xb2\x49\x52\x60\xc3\x0b\xf9\xb0\xdf\x93\x17\xd4\x82\xce\xa3\x24\xb4\x8f\x29\x40\xcc\xb9\xa9\xa6\xdb\xba\x0d\x6f\x5c\xb2\xb9\xf4\x85\x48\xaf\xde\x51\x32\x0f\x60\x15\x10\xea\x02\x58\x2a\x6e\x6c\x44\x84\xcd\x85\xd2\x40\x43\xbe\xca\xa5\xb0\x71\x5d\x49\x94\xde\x46\x9c\x2a\x55\x1c\x9a\x77\x57\x61\x2d\x67\x16\x30\x19\xb0\x31\x61\xfb\x5f\xd7\x72\x29\xfa\x04\x2f\xd2\x91\xc9\x87\xaa\x37\x8a\x63\x2f\xbe\xf1\xfd\x19\xe9\xb2\x05\x4c\xd4\x0b\xf6\xf8\xbc\xdb\xce\x8e\x57\x18\xb8\x5f\xa9\xad\xab\x5e\xec\xc4\x84\xaf\xda\xf8\xff\xa3\x3a\xe2\xe6\xd3\x73\xff\x0b\xed\x28\x8e\x27\x50\x76\x6c\xf9\x73\xe1\x84\x22\xed\x3e\xa1\xa5\x4b\xc6\xd6\xf6\xf2\x96\x96\xa4\x2d\x47\x47\x5a\x5e\x1b\x9d\xd1\xc2\x1e\x2c\x48\x64\x55\xc9\x58\xa1\x33\x8a\xaf\x6b\x21\x3b\xc0\x11\xd0\xa3\x72\xd1\x33\xb6\xe1\x36\x1c\x52\xa2\x4e\xeb\xe1\x5a\x17\x34\xe7\xcf\xba\x82\xaf\xa4\x03\xc6\x1a\x4b\xd6\x1e\x67\x9e\x14\xa8\x4b\xdb\x8a\xf3\xb4\x9e\x42\x9c\xdf\xdf\xee\xad\x26\x26\xe7\x38\x0c\x1b\x15\x0d\x14\x7c\xad\xce\xfe\x38\x2a\x6c\x66\x32\xfc\x29\x0a\xa0\x20\x70\xe5\x6b\x55\x94\x89\x12\x7b\x30\xcd\x4c\x37\x5e\xc5\x21\x20\x60\x2a\x05\x05\xfc\x14\x6a\xf0\xd8\x0e\x78\x1c\x61\x69\x6e\x29\xf9\xab\x5b\xaa\x10\x69\x7a\xcb\x26\x09\x6d\xc6\x36\x0a\xe6\x97\x59\x5e\xf9\xa6\xce\xc7\xb7\x77\xb1\xbd\x92\x4e\x12\x56\xcb\xaf\x7c\x46\xb0\xd2\xf4\xb8\x38\x4c\xfe\x42\xd1\xd2\x95\x87\xc9\x8e\x96\xeb\xe5\xbd\x30\xad\xc0\x8a\x14\xcd\x26\x37\x71\x60\xc6\x8e\x2a\x26\xba\xcb\x34\x29\xe2\xf1\x94\x6b\x4a\x1d\x38\x2f\xb9\x24\xfe\xe6\x53\xe2\xc5\xc5\xf6\xaa\x01\x78\xc6\x01\xd9\x3c\xc7\xf4\x49\x94\xec\x19\xa5\x10\x28\x8f\x62\x64\x88\x12\xb0\x22\x4d\x47\x4f\xc6\x4d\xf1\x6b\xba\x25\xa4\xe1\xac\xe9\x45\xcb\x36\x77\x85\x53\x64\xd0\x3f\x51\x25\xb1\x4f\x1c\x53\xf1\x8a\xa1\xb4\xc1\x81\x5d\x6c\x4e\x7e\xae\x9a\x57\x7f\x3e\xdd\x5c\x9e\x5e\x58\xf8\xdb\xe6\xc6\x24\x42\xec\xa6\x59\x96\xae\x48\xec\x83\x95\xb0\xad\xa3\x5a\xae\x30\x81\x18\xe5\x9b\xce\xab\xca\x27\xdd\xdc\xbe\x32\xb1\x49\xa1\x1a\x1d\x1f\x5d\x53\x75\x24\x92\x78\xbc\xf7\x1b\x4f\x74\xe4\x97\x88\xe1\xb4\x90\x5f\xe2\xee\x32\x7a\x67\xc0\x1d\x40\x0a\x24\xbb\xd1\x13\x27\xa4\x4b\x73\x2a\xfc\xba\xa2\x30\xe3\xeb\xd5\xe4\xb5\x67\x65\x3b\xa9\x9a\x67\x3e\x6e\xdc\x96\x36\xb7\x99\x15\x76\x66\xa1\xeb\x50\x09\x92\x3a\xe6\xf5\xe5\x97\x09\xd6\x3f\x50\xbc\x5a\xd8\x3d\x7c\xed\x3b\x37\xa2\x41\x62\x62\xd4\x78\x40\x84\xc6\x8a\x57\xa8\x4f\xbf\x4e\x1f\x02\x84\xf1\x01\x1a\x68\x34\x56\xed\x44\x98\xc5\x7f\xa4\x04\x46\x72\x9b\x10\xfd\xe9\x3e\xe7\x94\xe0\xa9\x9d\xb0\xca\x8b\x0e\x4f\x74\x3a\xd0\xfe\x4a\xb9\x0b\x84\xfa\x47\xb1\x67\x9c\x25\x57\x8f\xe9\xe1\x6b\xbb\xf8\xd9\x76\xd7\x9a\x70\x28\xe6\xd6\x49\xc4\xe9\xc3\xa4\x81\x8e\x7c\x18\xc5\x31\xbb\xa4\xd2\x58\x4b\x1f\xe1\x1b\xa5\x77\x57\x64\x51\xb8\x14\x73\xcf\x0a\x36\xec\x6f\x4e\x7d\x66\xf6\x37\x15\x3f\x7b\x3a\xec\x9a\x55\x42\x0f\xd2\x1f\x63\x91\x71\x53\x16\xdf\xd4\x92\x4c\x7b\x77\xb5\x4d\x51\xd8\xd1\xb8\x50\xa4\xb8\xa7\x14\x29\xee\x29\xe7\xe9\x24\x36\x5c\x9a\xf5\x01\xf0\x0e\xf8\xe0\xae\xb1\xd5\x25\x17\xd9\xa7\x93\x7d\xfe\xb0\xcb\xad\xc4\x31\x03\xef\x94\x8a\xbe\x08\xb4\x40\x7f\x42\x10\x14\xb2\x07\x4c\x0c\x1c\xa7\x02\x0d\x56\x85\xb6\x15\x41\xb9\xe1\xa6\x67\xc7\x50\xa0\xfc\xd7\x5a\xf9\x7f\xcf\x9e\x76\x6e\x4d\x37\xcd\x12\xab\xd8\xfd\x6f\xa8\xaa\x3e\x33\xa1\x08\x57\xc5\xe6\x82\xd2\xf3\x0b\x44\x1e\xd0\xf2\xb2\xa3\x17\x54\x9b\xf5\x85\x1a\xfa\x79\x61\xa1\x6d\x56\x0c\x32\x79\xf8\x81\xad\x6b\xe5\xb1\x0e\x17\xe2\xda\xd4\x07\xc2\x0f\x77\x74\x20\x5c\x98\x1e\xc5\x43\xee\xe5\xbf\xfc\x22\xfb\x5e\x1b\x8a\xf2\xf3\xa6\x2a\x66\xdd\xa9\x70\x43\x6d\xae\x26\x3e\xdb\x0e\x87\x76\x85\x42\x3b\xc9\xa3\xd3\xa8\x21\xc1\x70\x5f\xf3\x01\x00\x99\x82\xa3\xe8\x23\x15\xa7\xe5\x36\x9c\x64\x51\xb1\xba\x43\x79\x00\xd7\x2b\x20\x4a\x38\x0a\xe0\x8f\xe3\x71\x44\xe1\xe4\xc7\x9a\xb7\x17\x0d\xc5\x70\x2d\x2e\x06\x9b\x59\x34\xf7\x39\x62\xaa\xcd\xd9\xd4\x17\xa9\x2c\x1d\xda\x84\xa3\xba\x79\xd7\x22\xa1\x99\x22\x9a\x08\xb7\xa3\x24\x9c\x8c\xba\x92\x32\x61\x46\x4b\x45\x07\x73\x4b\x61\xd0\x33\xd3\xa5\xcc\x8f\x24\x80\xe9\xc1\x31\x18\x97\x54\x07\x03\xb2\xea\x78\xd5\x3f\xc4\xb6\x87\x03\xbd\x73\xad\x29\x0b\x1c\x0e\xed\x28\x0a\x59\x87\x93\x25\xb1\x82\xaa\xb8\xae\xcf\x53\x7c\x4b\x65\x5e\x9f\xfb\x87\xff\xc5\x8c\x6f\xfc\xbe\xaa\x54\x17\x6f\x6a\xcb\xb1\xad\xe3\x2d\x47\x94\xf4\xec\x41\xcb\x1c\xd9\x4e\x0e\xa5\x1c\x59\x91\x43\xf1\xd0\xea\x22\x33\x3d\x9b\xe5\x3b\x7c\xa2\x96\x49\x00\x1d\xb2\xcf\x77\x7e\xcd\x20\xeb\x01\xfb\x83\x46\x19\xe6\x40\x44\x50\x8b\x4e\xf0\x3b\x3a\x99\x77\x81\xfc\x3e\xc1\x25\x7a\x3f\x3e\x1d\x97\xc7\xee\x76\x85\x40\xe4\x9e\x69\xa7\xec\x79\x40\xf8\xf5\x7f\x82\x1a\x21\x50\x1c\xdf\x53\xbd\xf3\x3b\x61\x87\xf8\xe8\xa0\xe1\x43\xae\x7b\xcb\x9a\x58\xae\x25\x6b\xc7\xdb\x7d\x3c\xc3\xa9\x7d\x04\x44\x37\x15\x52\xe4\x29\xee\x2a\xd0\xbc\xee\xae\x8a\xe4\xdb\xbd\xae\x4d\x15\xc4\xfe\x9a\xd3\xf3\x18\x76\xbf\xd1\xf2\x69\x40\x4e\xce\x8b\x46\xbc\x94\x1a\xba\x59\x14\xc7\x91\x49\x58\x0b\xc3\x45\x6f\x8e\x60\x0a\xfa\x05\x2c\x17\x59\x33\x3b\xbb\x77\x53\x77\x0b\x39\x38\xa8\xae\xf0\xc3\xf0\x4d\x53\x77\x5d\x3f\xcd\xba\x51\xcf\x53\x32\x33\xd0\x40\xe5\x9b\x7f\xa3\x09\xb4\xbc\x1c\xa5\xb1\x17\x2e\xd0\x19\x55\xc9\xb4\xee\x54\x89\xb8\x91\x89\x92\xed\x14\x0c\x4a\x42\x89\x3e\x86\xd1\x83\x34\x26\x36\xcc\x7d\x3a\x67\x85\xef\x89\xd2\x68\x17\xe1\xfa\xfc\x4a\xc7\x57\x20\x66\xd6\xa4\xaf\x6b\x9c\x8e\xd2\x38\x1d\xb8\x82\xba\x93\x37\x70\x8a\x47\xef\xe9\xe6\xfe\xc4\x0c\x58\x0b\x0d\xab\xed\x87\xda\xa1\xfe\x61\xf0\xf4\x26\xca\x98\xf9\xfd\xed\x03\xbb\x16\x68\xa3\xab\x26\x16\xa7\x82\x55\xbe\xee\x06\x32\xe4\xfc\xcf\xb0\x53\xd2\x5c\xe2\xbd\x8e\x5e\x64\x7b\xb3\xbe\x5a\x75\x04\x3f\xcb\x4a\x3c\x30\x1e\x4e\x96\xc7\x85\xc4\x47\x14\x86\xbb\x67\xc7\x69\x26\x8a\x42\x48\x66\x61\xa8\xf8\xba\x16\xec\x49\xc5\xab\x18\xda\x28\x9b\x43\x71\x1b\x3b\xe2\xb3\x1d\xbf\x6d\xb0\x88\x61\xea\x2f\xeb\x84\xfe\x1c\xc1\xeb\x84\x8a\xc2\x1b\x9a\xff\x6a\xe1\x9f\x6d\xdb\xdc\x38\xc0\xbd\x42\x0d\x95\x34\x24\x9d\x7e\x12\x68\xc7\x10\x49\x33\xac\xe0\x7b\xc1\x67\x54\xef\x65\x26\x1a\x74\x89\xb8\x92\x8e\x67\x48\xf1\x5a\x37\xf9\x28\x61\x6c\x72\x07\xdc\x51\x64\xc0\xf3\x8e\xb8\xc1\x4f\x85\x09\x0b\xf0\x3b\x48\x36\x00\x63\xc3\xe3\x11\x6c\x1e\x1b\x64\xc4\xde\x47\xa6\x4d\xda\x31\x1b\xe0\xaf\x84\x17\x5c\xb1\x79\x31\x43\x69\x12\x44\x2e\x47\x14\x41\xe3\x56\x5a\xbf\x18\xd1\x5b\x8a\x50\x6e\x90\x19\xdb\x43\xf3\x97\xe7\x54\xf1\x50\xd4\x5b\x78\x0f\xd1\x88\xf6\x6b\x39\xb6\xcb\x36\x7e\x70\xc6\x2b\xe1\xfe\x8f\x53\x4f\x6e\xff\x6f\xa6\x2a\xfe\x83\x75\x06\x92\x0e\x7d\xd3\x8e\x3d\xdb\x09\x18\xb0\x70\x06\x2c\xe0\x69\xc0\x0c\x5c\x16\xde\x29\xf5\xdd\xc2\xfa\xe6\xbf\xda\x94\x9c\x25\x6b\xd0\x72\x98\xf0\xf5\xc0\xeb\x7d\xad\xd7\xa2\x86\xaf\xce\xb7\xed\xc1\x71\x6c\x22\xe4\xd0\x44\x22\xc7\x63\x7e\xeb\xd4\x84\x07\x76\xb5\xed\x41\x9b\x85\x91\x63\xc0\x47\x90\xf9\x3e\x3d\x20\x5f\xab\xbe\x66\x13\x77\x27\x92\x7c\xd3\xaa\xa7\xa2\xe6\xf0\x98\x6a\x3e\x29\x0a\x9b\xe5\xaa\x9e\x7e\x03\x7b\x12\xa1\xd4\x79\xa5\xef\x73\x44\x5b\x93\xc2\x2c\x59\x5a\x4a\xa8\x18\xff\x08\xe1\xb4\x4b\x4c\x38\x76\xa9\x75\x75\x0a\xde\xd4\xc5\xd3\xdb\x4d\x55\xdd\x74\xd9\x66\xbd\xc9\x26\x32\x01\xb7\xeb\x2f\xe8\xbc\x42\xbf\xb0\x99\xa3\x7f\x16\xaa\x5e\xdf\x1c\x71\xc1\x35\x18\x40\x16\x3c\x07\x61\x8b\x08\x8a\x95\xf3\x23\xec\x82\x34\x4a\xb0\xcd\x58\xa8\xce\xd7\x2a\x57\x1f\x8e\xa9\x37\x1b\x38\x64\xe6\xdb\xe3\x09\xa7\xda\x74\x0f\x22\x5f\x6f\x02\xcc\xb1\x2e\x1e\x96\xa5\x56\xa2\xfb\x98\xfd\x43\xa7\x71\xe8\xc8\x54\xce\xe1\x01\x50\x04\xbe\x58\xc9\x3a\x63\xb4\xe1\xe5\x5c\x9c\x56\x98\xe3\x7c\x45\xfb\xac\xa6\x6e\x8c\x7a\xc3\xf1\x04\x95\xec\x26\x24\x6b\x93\x47\x56\xa4\x93\x2c\xca\x0b\x0e\xc6\x10\xb7\xbf\x36\x55\xc8\xcf\xd7\x02\x39\x8a\xba\x26\x8e\xd3\x34\xf1\x7f\xed\xb0\x8e\x3a\xfd\xb2\xf9\x28\x15\x3b\x3d\xc9\x23\xf4\xc4\xa2\xa4\x02\xdc\x21\xf7\x6c\x4f\x3d\xff\xc2\xeb\x9a\xc4\xf0\x5e\xa0\x55\xb8\x97\xec\x4e\x0a\x5e\xc1\x53\xf1\xbb\x53\x9f\x0a\xbc\x32\x85\x8d\xd3\x70\x79\x64\x46\x66\xc0\xaf\x28\x32\x8a\x1e\xc8\xc9\x5c\xa4\xf0\x34\xef\x92\x35\x11\x11\x4f\x7a\x00\xf8\xe5\xdb\xd6\x54\x92\xec\xe2\xd4\x53\x96\xdc\x54\xf2\xf9\x1f\x12\xf4\x17\xd6\xec\x28\x32\xc2\x30\x20\x37\xa6\x4a\x08\xa1\x0e\x18\x5b\x58\x20\x59\x2e\xe7\x98\x88\x4c\xba\x3f\x7e\xea\xb1\xf3\xee\xf9\x76\xd7\xc6\xe9\xca\x4c\xb5\xfe\xe1\x44\x13\x2f\x28\x1b\x59\xef\x62\xf0\x67\xa6\x29\xb6\xd1\x58\x6a\x89\x14\x18\xcd\x33\xaa\x65\xfa\x9b\x14\xfb\xc3\xf2\x3c\x0d\xbc\x10\xf6\x16\x28\x41\x7d\x53\x9e\xe7\x60\x2f\x0a\xd1\x66\x64\xc6\x7b\x18\x1a\x6d\x90\x61\xff\xbe\xaf\x92\xcc\x68\x0f\xb6\x19\xed\x5f\x39\x85\xc0\x45\xad\xc8\xfa\x1d\x64\x1f\x27\x06\x43\xb3\xa6\x4a\xa4\x7c\x4d\x25\x48\x47\x11\x99\xaf\x7c\xce\xf7\xbc\xf0\x66\x77\xd2\xc3\x8e\x4a\x65\x5d\x73\x6e\xaf\x6b\x65\xee\xab\xc1\xc3\xee\x1b\xa9\x80\xfd\xbc\xe2\x4a\xde\xbb\xcb\x25\x4c\x36\xaf\xfa\xbd\x8b\xed\xbc\x22\x04\x22\xe0\x31\x05\x24\xab\x4d\x4f\xe9\xdd\x0e\x2d\x75\xd6\x70\x5f\xa3\x34\x61\xd0\xc6\x11\x76\xf6\xf2\x77\x71\xec\x20\x07\x86\xe8\xeb\x58\x53\xa1\x84\x98\xbb\x55\x66\xe3\xea\x54\xe9\xc8\x5e\xd5\x8c\x3a\xe9\xc1\x88\x61\x1f\x3a\xd9\xcd\xd7\x8d\x5c\x17\xe9\x68\x3c\x01\x17\x6e\xf9\x29\x65\x4e\x9f\x63\xf7\x0e\x51\x39\x73\x15\x29\x06\xb1\x91\x29\x48\x50\xad\x10\xed\x13\xc7\xa7\xb7\xa0\x74\xfb\x9b\x08\xb4\x57\x4c\x96\x51\xec\xe0\xab\x48\xa7\xa6\x2a\x7d\x7c\x35\xf0\x92\x53\x87\x54\xf5\xb1\xc8\xa2\x31\x03\xda\x90\x3d\xdb\xda\x51\xc2\xe9\x08\x9a\xf0\xa9\x77\x15\x3e\x9e\x7b\xcb\x58\x6e\xa1\x06\x5b\x2d\xad\x67\x5e\x44\xe1\x12\x67\x75\xf0\x21\xc6\xdb\xb9\x7c\xff\xc2\x02\x03\x4d\xfe\x58\x85\x9b\xa1\xc9\x6c\xb9\xda\xfd\x31\xf0\x33\x2c\x4d\xc4\xce\x27\x95\xf6\xf5\xfb\x18\x51\xc9\xf3\x55\x28\x07\xc5\x30\x17\x36\x1c\x26\x51\x18\x99\x84\xb9\xb8\x98\xcc\x24\xf0\x45\xe7\x33\x7c\x00\xc9\x9d\x07\xcd\x8d\xd2\xa4\x60\x54\x93\x23\xdd\xfe\x74\xbe\x74\x4f\x91\x4e\x3f\xa4\x94\x07\x16\x1d\x56\x12\xbf\xa4\x55\x2a\x65\xab\xfa\x88\x69\x29\xea\xf5\x6c\xf6\x00\xf9\x64\x8e\x75\x7f\x33\x30\x1e\xd3\x73\x7c\xaa\xb9\xf9\x31\x1c\xc8\x19\x7f\x4f\xb3\xf5\xde\x25\x5b\x05\xef\xe6\xb0\xa2\xaf\xb8\x86\xed\x2c\xc0\xfa\x4d\x84\x50\xfb\x5f\x68\xef\x5d\x7c\x70\xeb\xe7\x9d\xcb\xe7\xcb\x29\xf7\xe1\x24\x3a\xfc\x84\x43\xe7\xff\x82\x4e\x0b\xc4\x01\x47\xb1\x68\x99\x97\x98\x9c\x6b\x0c\x3e\x0e\x0b\xfe\x00\x0e\x05\x41\x5f\xf8\x5a\xd4\x7f\xeb\xfc\x97\xc4\x2e\xa5\x69\x6e\xb8\xf8\xe4\x94\x0b\x7c\xe9\x05\xce\x3a\x0e\x9f\x6f\xe9\xe0\xe3\x96\x92\x94\xeb\xa5\x93\x01\x55\xcb\xb4\xd6\x31\x5f\x37\xb1\xa8\x92\xb5\x99\xad\xb4\x17\xb4\xbe\xf4\x75\xae\xb8\x80\x83\x47\x48\xb5\x68\xa4\x25\xf6\xf1\x4d\xa0\xfd\x28\xcb\x8b\x21\xc9\x99\x96\x93\xc4\xe8\x78\x40\x2b\x04\x2a\xdf\x90\x89\xea\xd9\x51\x1a\x66\xa6\x10\x98\x29\x8e\xde\xad\x1d\xc5\xd1\xcb\xa2\xff\x2e\x17\xe1\x9c\x3e\x6e\x9b\x16\xd2\x0c\x7f\xf8\x8c\xcd\x6a\x96\x0a\x19\xb8\xe8\xa0\x95\x33\x22\x02\x69\x4e\x2b\x36\x36\xae\x8d\xcf\x69\x02\x69\x95\xa3\xa7\x05\x01\x65\xc7\x99\xcd\x6d\x52\x10\x1a\x73\x46\x21\x90\xc1\xeb\x88\x9c\x0d\xea\xf6\x52\xbd\xd4\xad\x11\x99\x89\xe7\xb4\x67\xeb\x3b\x17\xcf\xe9\x29\xd4\x5a\xa0\x3c\x06\x48\x8c\x1c\x55\xb2\xc7\xbd\xb4\x37\xb0\x59\xde\xf2\x1d\xbb\xe8\x82\x13\x88\x90\x4b\x18\x64\xb6\x17\x85\x05\x95\xfb\xfc\xbf\xa3\x47\x9b\xaf\xd5\x3e\xec\xc6\x46\x7a\xf8\x85\xa4\xd2\xa3\x34\x3e\x09\x7c\x54\xb9\x6a\x4d\xf6\x34\x0d\x00\xb2\x0e\xf7\xe8\xc7\x31\x55\xd7\x79\xcb\xc3\x84\x42\x91\x1c\x5b\xfe\x33\x6b\x8a\x43\xea\x32\x36\x32\x76\xf5\x2d\xf8\x46\xb2\xa2\xca\xb7\x82\x6d\xba\xae\x7a\xdd\x98\x5a\x17\x91\xc9\x13\x04\x6d\x67\x59\x3c\x4a\xa8\x21\x8f\xfe\x08\x46\x0c\x1e\xf4\x83\x74\x22\x22\x20\x9d\x85\xbc\x37\x5e\x7a\x03\x86\x43\xe4\x21\xc8\xf9\xc1\xf7\x5e\x27\x87\x07\x86\xe3\x38\x5c\x0b\xd4\xcb\x5a\x6b\x2a\xd2\xdd\xd0\xba\xda\x3f\xd4\x10\x83\x61\x3a\xce\xe7\xca\xc7\x11\x29\x72\x5f\x4c\x7a\x8d\xbe\x9a\x95\xb1\xa7\xde\x29\x3a\x0a\x5b\xc7\x37\x9b\x9b\x9f\x77\xef\x6e\x2f\xee\x5d\xa4\xb4\xb7\x3b\xff\xcb\x81\x93\x82\x84\x5f\x01\xdb\x3b\xca\xf9\xd9\xb2\xa6\x22\xc1\x53\x81\x6e\x8f\x8a\x6d\xd6\xf2\xed\x41\x67\x15\xa4\xee\xac\xab\x35\x84\x36\x71\x20\x6d\x91\x9d\xe7\x4a\x14\xdf\xa8\x03\x75\x1c\xb1\x6e\x04\x57\x2c\x2a\xd5\x8b\xcd\x27\xf7\xee\xdd\x6d\x86\x54\xf1\x9e\xc3\xc9\xcd\xe2\xc4\x7c\xd3\xd0\x71\xbb\xd8\x9e\x64\x03\x22\xba\xaa\x50\x75\x68\x2f\xa1\x02\x9a\x9b\x74\x8b\x07\x68\x5e\x45\xff\xb2\x1c\x41\x11\xea\xf6\x0f\x7b\x14\xb6\x0c\xc7\xfa\x5f\x63\x5a\xf9\x66\xea\xb1\xe3\xdb\x88\x36\x1b\x79\xb3\x7b\x18\x06\x4e\x0c\x93\x89\x14\x51\xd2\xa7\xdc\xfe\x24\x92\x03\xf2\xb7\xc0\xd0\xb1\x71\x8c\x0c\xd8\xc6\xb1\x5a\xe6\x6a\xcf\x9e\x76\x2f\xca\xc3\x32\x0c\xb6\x6c\x37\x2b\x8a\x24\x7c\xa3\x64\x25\x0a\x33\x62\x47\x52\x02\x3b\x1c\x54\x52\xc6\xf3\xbd\x8c\xf9\xd8\x64\x4b\x73\x3e\xa1\xf1\x26\xb0\x55\xd2\xe3\x5c\xbe\x13\x62\xdd\x6b\x53\x8f\x50\x7f\x13\xa6\x16\xc3\xb3\xa5\x23\x09\x5d\x3b\x18\x78\x0f\xe5\x47\x4f\x21\xcf\x2c\xb2\x81\x3e\xcf\x8c\xec\x26\x16\xff\x29\x5d\x14\xbd\xd4\xd4\xe7\x67\xc2\x30\x9d\x24\xae\xae\x8b\x75\xfc\x73\xc5\xad\xca\x44\xde\xc8\x23\x1d\x55\x83\x60\xf2\xdc\xe6\xbc\x82\x5c\x53\x4a\xb9\x82\x04\x56\xd7\xe4\xff\xc6\x51\x0f\x15\x2e\xae\x0f\xac\x69\x69\x0e\x75\x3c\x3e\xd2\x79\x48\x89\x35\x80\x29\x1c\xaf\xba\x41\xa7\x3d\x22\xcb\xdf\xd7\xd4\x64\xa7\xa7\x9e\xcb\xeb\x2e\xf8\xf9\x59\x4b\x1e\x63\x2e\xa5\x83\xd2\x34\x60\x9c\xdf\x23\x52\x6a\x1c\x8b\xe7\xb0\xf0\x98\x36\x96\xbc\x0b\xaa\x58\xdf\x7c\xaa\xa3\x54\xc5\xee\x60\xb5\xc3\xc3\xd7\x8d\x17\x5b\xb1\xf3\x61\xc1\x2e\x07\x5e\x14\x02\x05\x14\xbc\xd4\xb6\x35\xd5\x30\x7a\xa7\xa9\x51\xd3\xc4\x61\x5a\x93\x4d\xfe\xf2\x8b\x4e\x36\x59\xd5\x83\xec\xab\xec\xad\xe3\x00\x63\x66\x0b\xbe\xa9\x8d\xfd\xe2\x0b\xfb\xc8\x32\x22\xa4\x80\x07\x7c\x68\xea\xbd\xe1\xfa\x27\x0e\xec\x9a\x6f\x8f\xd2\xbc\x98\x25\xa3\x8b\x72\xc6\xb5\xc0\x3f\xd8\x59\x45\x7b\x70\x1a\x7c\x71\x22\x72\xe3\x9f\xf2\xd7\xf6\x7f\x85\xde\x05\x1f\xbf\x11\xa8\xaa\xfa\x8d\x06\x79\xb1\xc5\x76\xda\xef\x47\x02\xfe\xaf\x68\x8d\xf0\x4d\xa0\x75\xe8\x07\xa9\xb0\x24\x08\xb3\x5f\xcb\xab\x02\xd6\x4a\x0f\x0b\x0b\xe5\x62\xb7\x79\x1e\x75\x63\x24\xbb\x18\x48\x1b\x78\xbf\xea\xd4\xd4\xb3\x30\x44\xa3\x49\x1c\xc1\x7f\xc7\xf9\xb3\x45\xe5\xa9\x50\xd5\x94\x34\x55\x4d\x55\x7e\x77\xbb\x67\xe3\x88\xc8\x8e\x5d\xcd\x0e\xbe\x7b\x45\x57\x12\x2e\x46\xbd\xac\x72\x60\xd7\x42\x7b\xfc\x4f\xfe\xf3\x59\xdf\x35\xf1\x7f\x4d\xb5\x46\xa8\x86\x06\x94\xcb\x19\xe7\xeb\x7d\x47\x22\xf0\xca\x84\xb8\x12\x67\x3d\x7d\x05\x8f\x22\x52\x35\x97\x95\x7f\xd3\xc2\x91\xce\xc4\xa8\xb5\x98\xf5\xc5\xf9\xfd\xd4\xc6\x83\x6d\xee\x48\xb6\x9c\x2c\xf1\x71\x65\xeb\x86\x36\x8e\xa5\x3d\x11\x06\xee\x5e\x65\x42\x54\xa7\xc5\xf9\x26\xf5\xec\x7e\x66\x92\x25\x87\x91\x84\xc7\x75\x52\xed\x31\xf4\xd5\x89\x2a\xa5\xca\xf4\xd9\x22\x2a\x5a\x54\x8e\x53\x3d\x87\x8b\xae\xe7\x50\x6a\x5d\x36\xe9\xa5\x99\x97\x71\xc2\x41\x07\x48\x20\x5f\xd7\xca\xd3\x0b\x0b\xed\xdc\x14\x4a\x84\x12\xe5\x12\x98\x8c\xeb\x1a\x5b\xb3\xa5\xd3\x00\xab\x08\x87\xd6\x42\x9a\x44\x13\xda\x0a\x3d\x46\x03\x11\x0c\xc0\xd3\x6e\x0c\xf0\x06\x97\x2b\x0c\x75\x2d\xc7\xa6\xfb\xa3\x26\x45\x28\xd3\xef\xa7\x59\x4f\xf3\xad\x1f\xa5\xe9\xe2\x6b\x75\x40\x86\xe9\xa8\x1b\x25\x04\x34\xda\xe6\x17\xca\x3a\x32\xee\x02\xa3\xa9\x44\x3c\x95\x8d\x58\xd9\xa1\xda\x88\xab\xca\x7c\xcc\x5a\xfe\xaa\xc7\xea\xb8\x5a\x7b\xc7\x91\xcc\x61\x5b\xf1\xcf\x1f\x51\x9a\x49\xc8\x66\x23\xac\xe4\x72\x8c\x94\xa7\xf5\x00\x94\xdf\x25\x8a\xfb\x2a\x3c\xb9\x15\x28\x02\x8c\x1f\xd0\xa0\x73\xa4\x86\xb7\x43\x42\xeb\x35\xbc\x9d\xf3\x3a\x0f\x48\x1a\xe7\x5f\x63\x62\x31\xe3\x7f\x88\x83\x01\x9e\xdf\xff\x51\x03\x52\xec\x7f\xa1\x9d\x91\x04\x97\x73\x26\x2f\x04\x1a\x08\xb5\xd9\x34\xec\xd9\xb3\xb7\x3d\xb2\xa3\x94\x91\x82\xd8\x0e\xa8\x63\xf2\x75\x03\xbb\x57\x19\x44\xe4\x61\x16\x75\x2d\x26\x56\x92\xc9\x8a\xbf\xfe\xfc\x54\x57\xda\xa3\x22\xe2\xfa\xa4\xa0\xb9\x34\xb4\xab\x41\xdb\xff\x25\xe2\x44\x77\x73\xd5\xd4\xb7\xff\x40\x54\x3e\x46\xff\x1f\xb5\x8b\xbf\xaf\xe5\x38\x7f\x65\xcd\x07\xc2\x4f\x75\xe8\xd8\x75\x4c\xb4\x5f\xfa\x3a\xa6\xf3\xf6\xe3\x9d\xf2\xa4\xc5\xd4\xde\xc4\xe8\xba\x2e\x6e\xcf\x4d\x7a\x46\xcb\xd7\x3c\x8a\x54\x2f\xa7\xd8\x31\x6f\xb0\x52\x17\xe9\x08\x47\xd8\xc2\x31\x01\x0a\x09\x88\x74\x60\xa0\xef\x51\x12\x18\xae\xc8\x03\x48\x95\x52\xbb\x40\xf1\xcc\x1a\x25\x9a\x31\xd3\x1f\xc3\xd3\x62\xf9\x7c\xb2\xab\x48\x3c\x3c\x40\xc1\x0d\xca\xd1\x8b\xb4\x4e\x36\x1e\xec\xf8\x14\xf3\x6c\xa7\x3c\x95\x59\x5b\x87\x94\xaa\x91\x36\xda\xe0\xc4\x37\xce\xfb\x9b\x88\x71\xb0\xda\xb6\x74\x54\x8c\xb3\xad\xd3\xda\xbd\x7b\xe3\x14\xb5\x16\xbb\xd6\xfc\x32\x46\x17\x72\x3f\xef\x60\xcf\x74\x1e\x77\x08\xbc\x5e\x62\xf3\x9e\x59\xe5\x1a\x13\x8a\x45\xd7\x60\x57\xf9\x46\x69\x5c\xd9\x83\xa5\x97\xca\x40\x42\x5f\x69\x3a\xae\x99\xf0\x8e\xab\x80\x36\x99\xc4\x71\xd4\x07\x25\x0e\x8e\xe8\x4b\x4a\x26\xf9\x92\x3b\x19\xc3\x38\x1d\x0c\x6c\x6f\xc6\x87\x55\x30\x50\xb2\x0e\x2b\x4d\xa5\x3e\xfa\x0e\xd3\x49\xdc\x7b\x80\x26\xd8\xf1\xfc\x1e\xd8\xc5\x3d\x1c\xdb\x3b\xaa\xb6\xa2\xe3\xe8\x9b\x81\x86\x6d\x4c\x75\x2c\x44\x9d\x0d\x98\x8d\x33\x53\x5d\x83\x2a\x67\x4e\xc8\x30\x7c\xc0\x3c\xb2\x03\xd3\x52\x9e\x31\x6d\x39\xf1\x92\x55\x7f\xdf\x84\x08\x83\x1f\xf6\xcd\x33\xbc\x44\xb1\x16\xde\xa0\xb5\x27\x42\xb4\xaa\x18\x71\x02\x31\x21\x0c\x13\xeb\x8d\xe3\xcf\x3e\x9c\x7a\x74\x04\x57\xec\x9c\x5e\x91\x9b\x65\xa6\x3b\x02\x86\xe3\x52\xa0\x75\x1d\x3f\x9c\x6a\xfc\x64\xa3\x6a\x60\x9a\xd9\x96\x92\x94\x3a\xa1\xea\x87\x27\x54\x4d\xdf\x26\xf9\x24\x8b\x92\xc1\x9c\x12\x66\xf9\x43\xf8\xec\x95\x3a\xac\x63\xad\x70\x85\x8f\x93\x3a\x6c\x39\x5a\x89\xf2\x56\x4d\x3c\xa3\xe1\x89\x9c\xd8\x14\x61\x27\xd5\x3a\x76\xab\x56\x71\x21\x7a\x99\xd8\xe4\x43\xac\x3a\x8c\xf7\xd5\xc0\x8f\xfd\xd5\x06\x62\x88\xc5\x76\xdf\xae\x80\x89\x4e\x72\x9c\xa7\x60\xfc\xf9\xa6\xf6\x33\xcf\xb6\x63\x33\x51\x4c\x1b\xae\xdd\xb5\x1c\x57\x69\x77\xd5\xef\x34\x2c\xf2\x87\xe8\x2f\x91\xc4\xb8\x8a\x0e\x4f\xa4\x63\x21\x59\xea\xb4\x45\xdd\x89\xc5\xba\xeb\x98\xf3\x43\x2a\x5f\x7a\x4d\xdb\xbb\x33\x1a\x1e\x73\x98\x16\x80\x92\x9f\x12\xed\xb6\x9b\x8a\x08\x6b\xb6\xf3\x64\x2d\xa6\x2d\xac\x16\x4d\x7f\x47\xf1\x23\xbc\xa3\x21\x1c\xa6\xdb\x8d\x85\x74\x03\x13\xcc\xc6\x82\x6f\xa6\x9f\x71\xbb\x83\x92\x0d\x85\x89\x92\x91\x4d\x8a\x1d\x1e\xfe\x03\x16\x14\x05\x8b\xd8\x84\x91\x10\xdf\xae\x34\xb6\x82\x97\xf0\x99\xad\xdb\x81\x52\x3b\x3f\xa3\x2b\x4f\x67\x1a\xa8\xad\xf7\xb6\x33\x1b\x4f\xc2\xc2\x30\x20\xae\x49\x6d\xa8\x71\x39\xa4\xa9\x93\x42\x45\x6e\xa7\xd5\x51\xe4\xa8\x3f\xd3\xf9\xc9\x8d\x9a\x87\xfb\x6c\xbb\x18\x66\xd1\x98\x33\xf5\x70\x04\xaf\xaa\xf1\xbf\x4f\x01\x98\x6c\xf2\x9d\x2e\x13\xd9\xa7\x4a\x21\xfc\x34\x94\x50\x77\xd0\x49\x08\xd8\xc3\x93\x1d\xcf\x3a\x72\x57\x85\x6d\xff\xf0\x9f\xfc\xe3\x96\x06\x54\x79\x68\xca\x79\xe5\x9a\xf5\xd3\xac\x6f\x23\x32\x44\x33\x1e\x32\x71\x1a\x6b\x07\x85\x45\x34\xb8\xc2\xab\xbb\xd4\x28\xae\x1f\x47\xc9\x52\xae\x55\xd6\x00\x5d\x96\xca\x85\x77\x17\x86\xa9\x0d\x87\x39\x57\x71\x60\xe6\xc6\x15\x51\x85\xa9\xca\x06\x04\x9b\x92\x63\x7b\x17\x4b\x97\x86\xe6\x0b\xc6\xeb\x23\x6d\xc9\x3e\xd2\x49\x93\xc9\xa8\xcb\x6d\xfb\xb0\xda\xff\x56\x61\xe1\xff\xed\xf4\x09\x05\x3d\xea\x5b\x5a\xe8\x2d\x9f\xbe\xff\x50\xb3\xe8\x7e\x18\x3c\xe9\x13\xde\xc4\xb9\x96\x32\x64\xdb\x55\xb3\x61\xb3\x11\xa7\x9f\x52\x34\xe7\x6f\x28\x22\xa0\xff\x1a\xd4\xcf\xc8\x92\xde\x56\xe5\xa0\x9e\x1d\xa7\x79\x54\x6c\xc3\x59\xee\x52\xa2\x3a\x61\xf7\xbc\xf8\xbb\xdb\xe0\x5b\x48\x1d\xa7\x7c\x62\x9c\x3d\x6f\x2a\x12\xe5\x9b\x53\xbf\x87\xc9\xc1\xcf\xcb\x43\x79\x9b\x52\x5a\x67\x9e\x4f\xbe\x81\x2d\xc0\x8f\xbd\x1d\x28\x75\xa0\x8b\x53\xa5\x0e\x74\x51\x51\x0c\xbd\xad\x1e\x7f\x68\x92\x5e\x5c\xae\x9c\xf9\xfd\x3e\x87\xf3\xa2\x93\x2b\xbc\x4b\x4f\x8f\xd4\xfa\x99\x5a\x4b\xc5\xde\xc5\xb6\xc9\x5b\x1e\x45\x74\x2b\xf0\x2a\x98\xb7\xd4\x24\x85\xe9\x68\x34\x49\xa2\x62\xf5\x81\x8a\xe7\xeb\x84\x10\xff\x7b\xf8\x72\x70\x05\x91\xc8\xc3\xde\x64\x57\x0e\xce\xee\x25\xad\x6f\xc6\x85\x04\x45\x99\xef\xb9\xf4\x4b\xf3\xce\xdf\xa5\x2c\xdc\x24\xe1\x92\x6e\xcb\xb5\xc4\x83\xc0\x50\x34\x0f\x1e\xf6\x3e\x4b\x6e\x1f\xf2\xb0\xba\x73\x14\x36\x4b\xb6\x9f\x96\x16\x7a\x8f\xb7\xad\xb9\xb8\xe3\x1f\x7c\x1e\x56\x04\xfe\xcf\x3d\x4a\x83\x8b\xad\x6e\x39\xce\xc2\x87\x29\x29\x80\x29\x7f\x4f\x07\x84\xb7\x31\x55\xd8\x6e\x8f\x00\xa3\x2a\xa9\x9a\x26\x45\x8f\x91\x79\xd5\xd9\x13\x1c\xa5\x1f\xd0\xcf\xe0\x00\x86\x74\x8e\xd4\xfa\xea\x74\xb2\xa4\xb5\x19\xf5\x85\xd5\xd0\x8b\x98\xaa\x0e\x21\x8f\x63\x2f\x6c\x1c\x17\x26\x26\xde\xd5\x7d\xc0\x3b\x6e\x5c\x0c\x3e\xab\x3a\x1c\xc7\x59\x3a\xc8\xcc\x68\x14\x25\x83\x5c\x75\x3f\x7d\xa8\x62\xa9\x0f\x95\x1e\x75\x36\x19\x0c\xca\x25\x47\x53\x2b\x1d\x8d\x2a\x75\x72\x5b\x57\x06\xcf\xa9\x7a\xd5\xc8\xc6\xdd\x74\x22\xed\xd5\x5c\xf3\x9d\xfa\xaa\xf1\xbb\xc1\xc3\xba\xef\x72\x56\x1f\x98\x1e\xf7\xf3\xc7\x58\x39\x28\x3a\xbf\xab\xc0\x6c\x37\x2a\xc7\xfa\x60\x62\x1f\xf0\x14\xa6\x48\x37\xc2\x6f\x46\xab\x16\x92\x7f\x6f\xd3\xcf\x23\xfd\x30\x83\xe4\x1f\x7f\x19\x9d\xf6\x48\xe0\x7c\xa8\x94\xb3\x8e\xea\xda\xeb\x69\xf8\x0a\x92\x7b\x7f\xd0\xe1\xa1\xba\x33\x3e\xd1\x00\xe7\x53\x50\x74\x8a\x11\xf4\x64\x53\x71\x0e\xe5\xe4\x57\x26\x08\x32\x5d\x61\x50\x71\xb9\x3d\xa1\xc6\x08\x71\x62\xaf\xa5\x90\xd5\x1f\x2b\x5e\xfc\x8f\x1b\x16\xcf\x62\x3b\xb3\x79\x91\x66\x14\x2b\xb4\x7c\xc1\x86\x37\x24\xdf\xb8\xe6\x86\x7e\x6c\x06\x3c\xd5\x4a\xa0\x7e\x1f\xa7\xd0\xb6\x75\xbc\x51\xdd\x50\x76\xcf\x14\x05\x99\xea\x65\x3b\xa7\x38\xde\x6f\x4f\x3d\xad\xc2\x46\xe0\xa1\xcf\x5b\xd7\x7c\x77\x3b\xc2\x0b\xd8\xbc\x13\x81\xa6\x5e\xe8\x4d\x42\xdb\x23\x1d\x2f\xfc\xf6\xbb\x30\x9c\x30\xfb\x17\x95\x0e\x18\x73\xbc\xf2\x5f\x29\xfd\xd9\x3f\xd5\x4c\x3a\x6f\x69\x7b\x31\xc1\x17\x63\x7d\xbc\xa7\x5a\x85\x98\x06\x09\xf9\xaf\x77\xa6\xca\xa9\x41\x07\x81\x84\x27\x34\x40\x42\x3a\xa1\x82\xf3\x3c\x9f\x90\xc9\x72\x08\xb6\x73\x53\x1f\x96\x9c\x53\x72\x07\xc8\xe2\xa1\x43\x0b\xbe\x3a\x2a\x9b\x4a\x15\xf4\x39\x5e\x9a\x3e\x3a\x1b\x9b\x6c\x69\xc5\x20\xb9\x80\xa8\xfa\xfb\xf4\x54\x7c\x5d\x6b\x39\xa3\xbe\x42\xf4\xb3\x91\xc3\xd1\xf2\xe5\x46\x70\x65\xf1\xf5\xd4\xe3\x6e\x56\xd2\xa4\xda\xc2\x5a\x69\x35\xf2\x7a\xc2\x38\x3a\xf8\x5a\xa1\x8b\x32\x3b\x8e\x4d\x48\xb9\x06\x1f\x7c\xc3\x6e\xf3\x75\xcd\x39\x7c\x7e\xa1\x3d\xb4\x26\x2e\x86\xe5\x73\xa2\xd1\x58\x28\x2b\x35\x7f\x65\x93\x80\xc2\x52\x82\xec\xa5\x84\xc8\xdf\xc3\xf4\xf1\x8d\x0a\x10\x0b\x9b\x00\x32\xcd\x14\x08\x08\xd5\xe0\xc2\x5d\x86\x31\x17\x72\x84\x96\x63\x91\xbb\xec\xb2\x8b\xaf\x4c\x4c\x1c\xf5\x9d\xa2\x80\x84\x6b\x6a\x15\x5c\xa9\xe5\xd8\x5f\x5c\x2c\xff\x2b\x80\x95\x8a\x02\x0c\x86\xf3\x7f\x0b\x2a\x03\xdd\xd0\xc2\x3e\x8c\x3c\xa6\x09\x5b\xe7\xd2\xd4\x43\x66\x2e\xb9\x1a\x7b\x77\x92\x51\x4a\xc8\xf5\x04\xfd\x24\xf0\x0e\xe4\x4f\x5c\x63\x60\xaf\xdc\x53\x85\xcb\x90\xa3\x86\x81\x1e\x00\xbe\xd6\xbd\xb5\xfd\xbe\xcd\x1e\x25\x22\x32\x1d\xd0\x20\xa4\xbf\x4e\xbb\x59\x94\x2a\x7c\x3d\xf2\xed\x40\xe1\x93\x2e\x81\x21\x1a\x71\xff\xf5\xa9\x22\x70\xe1\x0e\x17\x70\xb0\x31\x39\x15\x67\x00\x51\x6c\xe0\xcf\xc0\x9b\xc0\x21\xc9\x02\xa9\x30\xc4\xa0\x85\x46\x00\x77\x06\x6c\xde\x42\x6f\xa0\x55\x73\x8b\x22\xca\x4b\xa3\xe7\x77\x20\x56\x94\x6c\xc7\x3a\x55\xce\x62\x3b\x4f\xd9\xe5\x80\x65\xbc\x14\x28\x33\x79\xa9\x56\xd6\xd8\xb3\xa7\x9d\x2f\xd9\x62\x73\x53\x1e\xaa\xbe\x42\x73\xe5\x7d\x9a\x95\xa8\x18\xf6\x32\xbb\x42\x3f\x00\x8c\xfe\x21\x0c\x19\xdf\x68\x3c\xee\xc8\x66\x51\x68\x92\xfc\x91\x96\xd3\x0b\xdd\xd2\x29\x77\x9d\x64\x08\x11\x15\x61\xac\x36\x2a\x24\xe9\x34\xa2\x8e\x7f\xa2\x1c\x51\x4e\x3e\x4c\x95\x68\xc0\x65\xdd\x9e\x78\x7e\x13\xaf\x5f\xb9\xe4\xdc\xbf\x94\xd3\x28\xd9\x0b\xb5\xad\xb9\xab\x19\xce\xd5\x77\x54\x65\x28\x32\x90\x2a\xc6\x3a\x65\x91\x0c\x18\xee\xdf\xa3\x55\x24\xa8\x40\xfa\x4d\xa1\x10\xa2\x71\x40\xf6\x9d\x59\x83\x91\x16\xff\x01\xbf\xa8\xf0\x15\xb5\x1c\x93\xeb\xe1\xe0\x71\xd5\x78\x9d\x4f\x62\x0a\x9e\xbd\xe4\x2c\x7c\x79\xa1\xd7\x68\xe8\x1a\xa5\xaa\x04\x55\x00\x70\x48\x9c\x50\x9c\x29\x28\x63\x8b\xc2\xd5\x93\x4a\xb3\xb2\x67\xb3\x78\xd5\x6d\x4c\x49\x3e\x7b\xbe\x87\x6f\xd5\x7e\x6a\xff\x0b\x74\x34\xe0\x90\x77\xcc\x24\x9e\xa5\x64\xea\x77\x72\x1e\xc5\xab\xc4\x86\x27\x19\x09\x95\x23\x43\xb7\x03\x92\x01\xc7\x2b\xc4\x32\x07\xa3\x82\x88\x69\x18\xe7\x1c\x78\x56\x7c\x26\x3a\xc2\xbe\xbd\x4a\x5f\xc0\xd7\x4a\x30\x21\x36\x2b\xf9\x24\x2a\xc0\x2d\xca\x1d\x4d\x10\x49\xae\x20\x6d\xf9\x06\xdf\xd8\x84\x46\xa0\x01\x91\x8e\x28\xe1\x0f\x8a\x92\x7e\x6c\x46\x23\x53\xa4\x19\x73\x52\x38\x1f\xcd\xb5\x9f\xdd\x54\xea\xa2\x87\x34\x45\xc3\x1f\x35\xb0\x02\x2d\xb6\xc7\x69\x1c\x11\xcb\xf7\x8c\xa2\xfc\x17\x46\x29\x29\x1f\xfb\x93\x71\xa6\xa3\xc1\x97\x4b\xab\x93\x96\x17\x3b\xfa\x01\x79\x84\x7c\x1d\x88\x13\x4d\x59\xfc\x48\x84\x6a\x9d\x64\x70\xf9\x63\x08\xb4\x66\xf9\xc7\xb0\xc4\x1f\xec\xb8\x0e\x63\x9b\x2d\x0b\xf4\xe2\x6f\x53\x32\x98\xdf\xdf\x1e\x59\x93\x4f\x32\x4b\xae\x00\xcc\x1b\xaa\x89\xd2\xaf\x45\xbf\x2a\x08\x12\x6f\xa0\xcd\x8a\xc9\x6c\x85\xd4\xf4\xb7\xe9\x70\x40\x24\x76\x54\xf7\xdf\x1c\xf5\x34\x53\x76\xd2\xb5\x09\x99\x7f\x9c\x5b\xdc\x0b\xcc\x37\x0d\xc5\x83\xb6\x3d\x18\x46\x5e\x16\x0b\x81\xf1\x09\x45\x9e\x7f\xa2\x66\x46\xf7\xec\x69\x93\x9a\x3b\x06\x0f\x19\x34\x90\xf7\x60\xb9\x43\xc4\x15\x16\xef\x9c\xca\x9f\xc4\xcb\x29\x8c\xa8\x03\x4a\xbb\xd7\x39\xab\xa4\x69\x29\xd3\x89\xf0\xc6\xa5\x82\x7d\x9c\x76\x3c\x78\xca\x2f\xeb\xa8\x6b\x33\xa2\x6d\x02\x2e\x57\x36\xb3\x6a\x61\xa9\x77\x00\x51\xef\xe6\x2b\x93\x28\x5b\x05\x06\x4d\xc3\xc6\x60\x04\x19\x28\x20\x22\x79\x9b\x5f\xff\x8b\xed\x6f\xa4\xf9\x70\x62\x28\x89\x2e\x6f\xe9\xd3\xad\x3c\x33\x58\x0f\x37\x94\xd6\x5c\x94\xf4\xa2\x10\x3a\xc3\x8a\x01\x09\x1f\xe5\x6b\xe7\x90\x8c\x4c\x94\x14\x26\x4a\xd8\xbb\xc0\x49\x7a\x2b\x50\x94\x02\xdc\x45\x28\xa9\xda\xcd\xc5\x4f\x12\xfd\x58\x6d\x29\x4c\x07\x12\xcb\x7c\xad\x3a\xbd\x0d\xf5\x10\x86\x96\xb4\xcb\x17\x9c\x0d\xf0\xdd\xf1\xdc\x75\x8b\x9a\xf5\x96\x4e\x85\x00\xe6\x31\xe5\x18\x12\x08\x67\xd6\xa3\x27\x8e\x4c\x3d\xdd\xf6\x11\x92\xb3\x77\xe1\x97\x0f\xc5\x6a\x50\xa5\x03\xbb\x16\xda\x7d\x13\xda\x38\xea\x17\x2d\x45\x02\x73\x56\x2b\x61\xab\xb3\x28\x8d\xf3\xed\xbe\x46\x7a\x52\xb5\x61\xfd\xff\xd1\xd5\x0f\xbf\x8f\x51\xe9\x68\xac\xb8\xa4\x32\xbc\xf7\xa6\xaa\x3a\xfe\x99\x8e\x02\x87\xb7\x3b\x5e\xc8\x38\x9f\x64\xcb\x36\x8a\xe3\x72\xa0\x66\x7d\xf4\x76\x03\xa6\xcc\x29\xef\x3a\x6d\xcd\xd7\x29\xc4\x44\x77\xc4\x56\x47\xc3\xf0\xb7\x50\x28\xda\xec\xe2\x13\xee\x3c\xb3\xc9\xa0\x18\x5a\xdf\xdd\xe0\xdc\x6e\xe7\x13\x9c\x51\x35\xf5\x5e\x66\xcd\x68\xce\x7b\x88\xf7\xb9\x6b\x0d\x71\xdd\x29\xb8\x6d\x80\xb6\x5d\xa7\xb9\xe0\x7f\x50\x15\xd9\x23\xba\x13\x26\x34\x99\x64\xa2\x19\xfb\xa4\x40\x6f\x27\x9b\xda\xd9\xbb\xc6\xfc\xe3\x19\x0d\x98\x56\x7d\x28\xdb\xa8\xd0\x07\x17\xe5\x91\x1a\x41\xc7\xc2\xc2\xbe\x76\xd7\xd0\x38\xcf\x78\x50\x24\x22\x76\x1c\x25\xe8\x38\xe2\x24\xa0\xea\xe0\x1a\xdb\x22\x8b\xec\x6c\xcb\xf9\x8a\x87\x68\xfd\xf1\xb5\xaa\x18\xbd\x3b\xd5\x00\x43\xbf\x92\x4c\x6c\x14\xe9\xe2\x47\xf0\xde\xf9\xa6\xa9\x5a\xdf\xcd\x08\x9f\xa6\x31\x13\x0c\xa8\x13\x86\xbd\x7a\xe3\xfe\x62\x7b\x55\x18\x21\x59\xb3\x64\xea\x33\xee\xaf\xd5\x36\xc3\xcb\x2f\x53\x6b\x40\x6c\x0b\xf1\x3f\x85\x7a\x53\x49\xa4\x5f\xa8\xa1\x65\x9e\x5f\xa0\xa2\x73\xd4\xb3\x89\x53\x30\xc4\x19\xc7\xdd\x0f\x7c\xd3\xd0\x45\xb3\xd8\xee\xa6\xa3\xae\xcd\x60\x1b\x61\x72\xff\xbb\xa9\xf7\x76\xb9\x08\x81\x15\x7f\x4d\x71\x52\xd9\x3c\x64\xa8\xc9\x82\xa3\x1c\x6e\x39\xd2\x93\xd3\x4d\x80\xa9\x38\x22\xc8\x08\x96\x34\x5c\x46\x10\x55\xf3\x75\x13\xbf\x68\xd7\x64\x5d\x66\xfd\x12\xee\x68\x0f\xd0\x63\xcb\x2f\x9e\xa8\xb4\x6c\x8f\x6d\x61\x67\xb5\x8e\xcf\x11\x8c\x02\x3c\xeb\x33\x4a\x6d\xf9\x2a\xbe\x00\x59\xd0\x39\x77\xe8\x8f\x6d\x36\xc9\xed\x8c\xc2\x92\x01\x97\x81\x84\xd0\xe5\x8a\x38\xee\xa3\x2a\x9d\xd3\x2d\x72\xc5\x3a\xbb\xae\xfb\x39\xd6\x55\x72\x3d\x4b\x89\x2b\x69\xe6\xd3\x64\x7a\x15\x59\xd4\x69\x5d\xc6\x39\x5d\x49\x90\x59\x33\x81\xf7\x25\x45\x31\x95\xd7\xb9\xae\x3b\xa8\x99\x5d\x91\x75\xaf\x82\xbf\x53\xad\x09\x3c\xf3\x8c\x74\x36\xcd\x94\xdb\x44\x62\x04\xdf\x6a\x73\x5c\xc3\xe8\xde\x08\x36\x69\x46\xfc\x6a\xfb\xf9\x05\xf2\x82\x91\x7a\x38\xa9\x91\xc9\x27\x83\x87\xdc\xf1\x16\xc2\x09\x76\x7c\x35\x0b\xa2\x65\x75\x49\xd7\xa6\xee\x35\x69\xc7\x64\x76\x39\x8d\x97\x25\x73\x8c\x5a\xe3\x39\x8c\x2d\xdf\x38\x77\x28\x49\xbd\x67\x83\x3c\x2a\xba\x7c\xf8\x7a\x4d\xe1\xcb\xad\x09\x87\x50\xd0\x65\x4c\x21\xe5\x8c\xa5\x93\x81\xde\x42\x67\x49\xc4\x37\x52\x7d\x28\x71\x94\x44\x61\xae\x2b\x44\x8a\x4b\xfc\x3c\x92\xf5\x70\x51\x33\xd3\x8b\xa4\xee\x51\x4e\x45\xa5\xf7\x0f\x36\xfb\xdf\xd1\x90\xe0\x88\xfa\x6e\xe0\x0b\xac\x5b\xc1\x16\x79\x55\x43\xa8\x52\xce\xde\x3e\xc7\x75\xbf\x23\x8a\xd1\xe0\xba\x42\xa7\x9c\x56\xb4\x4f\x4b\x49\xba\x02\xae\x04\x84\x1b\xdf\xa4\xbf\x43\xcd\x08\x0b\x1a\xd3\xb1\x75\x8d\xe2\x2d\x34\xc7\xfd\x47\x0a\xee\x50\xd0\x3a\x4c\xd6\x55\xaa\xcd\xb4\xf0\x78\x13\x2a\x93\xfa\xe5\xfd\xbb\xd9\x83\xc5\x72\x81\xb3\x83\xb3\xf6\x87\x53\x85\x7d\xb8\xe4\x3c\x9f\x22\x32\x89\x49\x46\x36\x99\xd1\x95\x3f\x25\x3e\x7f\x61\xea\xe1\xea\x75\xaa\x2d\x62\x61\x4a\x63\x46\x21\x0a\x2b\xa3\x42\x32\x7f\x8a\x7c\xb2\xe9\xcd\xf9\xc4\x10\x38\xa4\x50\xcf\xb9\x49\xa0\x01\x24\x39\x8f\xe8\x46\x83\x2d\x1d\xcd\xac\x5a\xcb\x1c\x3c\xbf\xd0\xb6\x07\x23\x25\x38\x0b\xac\xc0\x15\xc5\x34\x75\xc5\x61\xfe\xc6\x65\x64\x6b\x26\x08\x2b\xe0\x75\x61\xa8\xf8\xba\xe6\xb7\x53\x8d\x10\xf5\x13\xcc\x3c\x1e\x16\xf2\xcb\x70\x7f\x8e\x28\x55\x88\x6b\x8d\xcd\xb8\x5d\x13\x2e\xcd\x96\xab\x1c\xb3\xbb\x83\x7a\x54\x10\x1c\xa3\x8e\x8f\xe8\xe2\x86\xe2\x6e\xd9\xb6\xa6\x88\xf3\x86\x76\x84\x50\xe8\x39\xb1\x8a\xaa\xdc\x7b\x54\x51\x73\xc4\xd1\x92\x8d\x57\x1f\x2e\x17\x0c\xbe\xfe\xba\x6e\x43\x62\xe4\x31\xdf\x28\x0a\xe1\xfb\x00\x2e\xa0\x4b\x61\x3b\x20\x38\xfc\x79\x2d\xf6\x7f\x4a\xab\x35\xa8\x1e\xab\x5b\x53\xc5\x62\xfa\x16\xd2\x24\xd8\x20\x57\x91\xe5\xc0\x77\xdd\x55\x5b\xa9\x18\x46\x59\x6f\x9b\x47\x2a\x22\x0b\xca\x04\x22\x54\x27\x77\x64\x22\xca\x55\xa2\x3d\xac\xaa\x7f\x3e\x5d\xaf\x1a\xf0\xd3\x74\x04\x6d\x5e\x16\x41\x9b\x7a\xb6\x1f\xd4\x87\xc4\xd9\xfe\x34\x6e\x86\x70\x18\xd9\x3e\xc5\x1c\xa2\x2e\xe8\x23\x16\x3e\xf8\x70\x6e\xbe\x57\x5b\x2d\xfb\x5f\x28\x9d\xc8\x34\x19\xc4\xab\x64\x9b\x51\x99\x3b\xaa\xb8\x4e\x8f\xaa\xc6\xa7\x61\x9a\x2e\x29\x52\x1b\x26\x27\x96\x02\x60\x43\x11\x7f\x5f\x3b\xf9\xc2\xf2\x17\x90\xa7\x55\xca\x2a\xee\xc6\x2d\xf3\xe5\x34\x0e\xab\xda\x90\x27\x95\xa4\x43\xbd\x7e\x22\xaf\x3e\x9a\x24\xd1\x0c\x61\x44\xa5\x08\xd5\x72\x7a\xec\x2c\x25\x22\x25\x98\x27\x95\x45\xa7\x6c\x28\x31\xb1\x95\x2b\x07\x27\x21\x0a\xa8\x7c\xdd\xb0\x2b\xda\xa6\x37\x89\x91\xb6\x47\xd2\xa3\xd5\xf1\x89\xf4\x1b\x64\xf3\x04\x04\xd1\x20\xe4\x36\x48\xe3\x1e\x87\xdf\x70\x28\x36\xf0\x74\x7c\x33\xd5\xf5\x8f\x57\x26\xa4\xbc\x71\xc0\x29\xae\xd3\x9a\x42\x12\xec\x1c\x0d\x0b\x5f\x4f\x5b\x2f\xfa\x68\x56\x03\x05\x0b\x9b\xf4\x72\x9c\xf9\x4e\xdd\x72\x7e\xbf\xa3\xb5\xff\xd4\xb7\x76\x98\xda\x57\x26\x51\x61\x24\x5d\x2c\xe4\x0b\x4a\xac\x6e\xbd\x01\x87\xbd\xd8\x36\xe3\xb1\x8d\x29\x15\xd7\x72\x1c\x2b\x17\x55\xc2\xe0\xa2\x9b\xef\x38\x5d\xb1\x99\xed\xcd\xfa\xf8\x8c\x17\x13\x52\x82\x87\x14\xa8\x9a\xf1\xb8\xb0\xbf\x75\x29\xe6\xe7\x17\xda\xc3\x34\xcb\xf1\x93\x18\x4d\x9c\x6c\x7c\xed\xde\x69\x9c\x66\x45\x3f\x8d\x23\x2c\x32\xd8\x11\xf6\x58\xf8\x66\x73\xd7\xe2\x57\xe7\xdb\xf3\xfb\x29\x47\x88\x30\x08\xf8\x1d\x61\xc3\x28\xb7\x08\xe3\x85\x54\x17\xd0\x30\xed\x76\x57\x67\x10\x55\x21\xc0\xd8\xd2\x69\xa0\x3b\x47\xfd\xea\x92\x06\xb2\x99\xd8\x52\xb8\x0a\x5f\xe2\x03\xb2\x29\x70\xe3\x2f\xd1\x6f\xe1\xfa\x17\xea\x04\xe7\xc8\x15\x36\xed\x6f\x68\x9c\xdd\x41\xe8\x56\xe3\x45\x95\x29\x1d\x45\x89\xcd\x4c\x0c\xd7\x93\x89\x89\x82\x0a\x4b\x51\x43\x4a\xa4\x0c\xdf\xb3\x1e\x2b\xf6\x54\xa8\x11\x60\x58\xef\x57\x3a\xe9\x1b\x71\x6c\x93\xf1\x8c\x4f\xe8\xa0\xda\x05\x8f\xe0\x0a\x19\x1a\x36\xd6\x1e\xa4\xbf\x62\x46\x63\x41\x75\xb9\x9e\x4f\xd7\x09\xf3\x89\x2b\x6b\x8c\x6c\x19\x90\xe4\xc3\x68\xdc\x52\xd9\xfd\x43\xaa\x84\x7c\x28\xd8\x2c\x93\xe7\x74\xa9\x0e\x8e\x4d\x92\x4b\x65\x94\x19\x3a\x34\xe8\xf2\xbc\xaa\x6d\xe5\xc3\x34\xb3\x71\x94\xd8\x4a\x32\xa9\x1c\x64\xd9\x7d\xf5\x64\xc5\x73\x6d\x12\x50\x8f\x5e\x45\xee\x57\x9c\xfb\xf2\x43\xe2\xf5\xd7\x41\x4b\x99\x09\x97\xe4\xcd\x85\x0b\xc8\x27\xa6\x5f\xf7\x40\xa5\xd4\xf4\x56\xcc\x2a\xb8\x46\x84\xab\x45\x81\x7b\xce\xc0\xef\x12\x27\xba\x91\x24\x2c\x4d\x72\x4f\x32\xc1\x89\xce\xa0\x92\xf5\xf4\x4e\x70\x6a\x96\x2c\xd3\x8e\xc2\xd0\x5e\xd4\xa5\xff\x8b\x4d\x4d\x41\xd6\x64\xf1\x2a\x9d\x4a\xe4\xd5\x7d\xee\x49\x72\x22\x90\xaf\x7c\x94\xaa\x38\x62\x57\x7c\x35\x79\x68\x32\x93\xe7\x23\x9b\x70\x82\xa7\x49\xdf\x69\xa7\xa6\x1d\x1e\x44\xcc\x02\x8b\xc4\xcc\xa5\xa9\x62\xeb\xb9\x89\xed\x81\x8a\xf0\x5c\xe7\x49\xb5\xd5\x12\x33\xb0\xe5\xaf\x90\xfe\x37\xbe\xf8\x81\x8e\xe2\xc0\xf9\x6d\xda\x71\xb0\x3f\x77\x31\xae\x2c\x68\x07\xc4\x07\xfc\x3c\xd4\x7a\xdc\x4a\x76\x6d\x70\x47\x14\xa8\x68\x76\x4d\x75\x9c\xdf\xc7\xac\xa0\xa2\xc3\x12\x92\x38\xab\x44\x4d\x56\x84\xf6\x3d\x2b\x3d\xb7\x20\x31\x94\x5a\xe1\x81\x26\x49\x18\x5b\x93\xb5\xd4\x63\x63\xa0\x24\xc7\xae\xc4\x9c\x48\xe5\x7b\x40\x4e\x06\xf2\x64\xd0\x73\x70\x94\xe7\xcf\x0b\x1b\xc4\x6d\x17\x20\x85\x26\x8f\x92\x74\x4e\x55\x63\x38\x43\x20\xe5\xba\x96\xeb\x19\xda\xde\xf1\xbe\x07\x53\xcb\x0a\x7f\xb5\xcf\xc8\x86\xe9\x88\x3a\x3a\xa2\x34\x79\x98\xbe\x54\x38\xdf\xbd\xe7\xf3\xaf\x03\x8f\x78\xfc\x08\x25\x2a\x00\x6f\x41\x1d\x80\x50\xe5\x7b\x74\xe8\x39\x26\x70\x07\xe7\xfe\x1d\x2c\x5d\x67\x00\x1d\x57\x79\x8b\x2a\x67\x42\x56\x43\xa3\xc5\xdf\x14\xa8\xb6\xce\x63\x53\x5f\xb4\x08\xd3\x6c\x9c\x66\xc6\x65\x56\x5c\x3a\xde\xeb\x3e\x5e\x08\x1e\xaf\x9e\x15\x5f\x6c\x3f\x3b\xeb\xe1\x18\x7f\x0e\x8e\x5a\x64\x38\x10\xec\x09\xd1\x7e\x19\x33\x30\x96\xaa\xa9\x2e\x95\xd8\x65\x9b\xcd\xa8\x82\xe7\x35\x55\x70\xd5\x72\x0a\x9f\xa8\x8d\x30\xce\x6c\xbf\x8c\x6b\x5c\xe7\xd6\x47\xaa\xd9\xf6\x23\x15\x75\x59\xd3\x9f\x21\x40\x3a\xfc\xaa\xa3\x34\x89\xf8\x3e\x96\x1b\x14\xd8\xfa\x66\x17\x66\xff\x0b\xed\xb4\xdf\xcf\x2d\xc4\xcd\xb8\x39\x83\x5e\x4c\x1a\x35\x04\x13\x13\x32\xe7\x10\x82\xe5\x53\xaa\xb3\xe6\x94\x22\xeb\x4d\x8a\xcc\x78\xae\x5d\x46\x42\x22\xb1\x26\xb0\x48\x57\x58\x09\xcb\x5f\x9e\x53\xac\x19\xb0\xf0\x00\x8e\xfd\x39\x16\x9c\x13\xe9\x28\xe7\x08\x06\xfc\x1e\x8d\x1c\x56\xca\x4f\xa6\x1e\x86\x69\x0f\x9a\xc1\xc0\x66\xe0\x99\xd2\x02\xe8\xcf\x2f\x54\xc9\x54\xe9\xaf\x07\x36\xcb\x56\x47\x26\xe9\xd9\xcc\x35\x87\x3a\x15\x2d\x8d\x00\xde\xec\x5a\x93\x7a\xaf\x89\x61\x62\x3d\xd3\x24\x63\x18\x45\xbf\x7e\xa7\xc2\x6b\x66\xb9\x05\x0b\x37\x02\x6c\xee\xee\xe0\x1b\x2f\x24\x3c\xe9\xf6\x26\x32\x70\x00\xa5\x9d\x51\x8d\x9d\x67\x1a\x85\xd7\xc1\x90\xe5\x1a\x47\x10\x57\xf0\x75\xed\xcc\xfe\xea\x7c\xb9\x5b\x71\x6c\x49\x36\x43\xf5\x02\x9d\xa8\xe4\xf6\x47\xa4\x0a\xd1\x52\x72\xeb\x2d\xc7\x9c\x7a\x36\xf0\x44\x31\xe3\xe1\x2a\xe9\xd5\x29\x11\x5d\xe6\x61\x82\xf3\xf9\x87\x5a\x45\xea\x47\xd8\xa7\xf0\xcb\xce\x4f\x35\x25\x7b\x21\xe9\x1d\xde\x68\x8a\xa7\x6a\x3a\x7d\xc2\x15\xbb\x90\xe2\x8c\x4c\xbc\x8d\x0c\xb6\x14\xe1\x7c\xe7\x03\x5a\xfd\xd0\xb1\xc4\xfc\xe3\xae\x96\xe9\x23\xa6\x5b\xb4\x86\xa4\x25\xfc\x71\x07\xb4\xcb\x8b\xa8\xbf\xca\xac\x2c\xc2\xd6\x73\x46\xf7\x85\x5c\x54\x34\xd8\xaf\xa9\x68\xaf\x6b\xb3\xcc\x68\xc5\xce\x6a\x3c\x24\x48\xa5\x6f\xd8\x15\x16\xc4\x74\xe2\xef\x4a\xd3\xa5\x09\xbd\x30\x4e\xf3\x62\xce\xe3\x40\x3e\x20\x7c\xb3\x13\xa9\x2d\x7f\x03\x65\xe5\x59\xd0\x67\xc2\x4e\x5d\xe6\x63\x47\x70\xd8\xce\xf8\xa7\x71\x9a\xf1\xb2\x45\xf8\xca\xb9\x46\xbe\x51\x04\x40\x05\x89\x23\x9b\x98\xba\xb1\x3d\x65\x82\x4b\x5d\xaf\x37\x29\x34\x98\xcc\x8c\x22\xec\x3e\xe6\x43\x53\xd0\x39\xcd\x8d\xd6\x8d\x27\x49\x41\x86\x0d\xc9\xb2\x6b\xb4\x4b\xf9\xba\xe6\xad\x1e\xd8\x35\xdf\xee\x93\x2a\x65\xcb\x63\xc1\x4e\x62\x2d\xf1\x4d\x2d\x6e\x99\xdf\xdf\xce\xd3\x30\xc2\x46\xe5\x94\x14\xd2\x50\x33\x58\x15\x70\x71\x98\xd5\x10\x13\x7a\xd5\x21\xca\x32\xd3\x8d\x7a\xaa\xa8\x8a\xde\x1a\xbe\x6e\xa4\xc0\x2f\xdd\xe9\x41\xe9\x15\xb2\xe3\xc5\x54\x2a\x81\x32\x11\x87\x2b\x32\x29\xb1\xf5\x99\x22\x39\x7c\x74\x91\xf8\x31\x7d\x0c\x8c\xa2\xc9\x68\xc6\x23\xf5\x00\x9a\xc4\xa4\x31\x02\x06\xff\x70\x55\x81\x0b\xfb\x26\x2c\xa8\xe4\x3d\xe7\x73\x78\x5b\xd7\x7c\xbe\xe6\xac\x16\xd3\x3a\x3e\xf5\x6d\xde\x4c\xa2\xc1\x04\xb1\x8e\x1a\x83\x54\x26\xf3\xd0\xb8\xee\x73\x14\xbb\x40\x7b\xac\xe8\xa4\xe6\x19\x7e\x7f\xa4\x81\x17\xf4\xb9\x76\x85\x4c\x14\x13\xf2\x11\x79\x65\x7c\xdd\x2c\x16\x92\x84\x36\x93\x2a\x9a\x83\x29\x78\x02\x05\x5d\xbb\x1a\x9b\x24\xca\x87\x2d\xcd\xa1\x1d\x68\x1c\x9e\x5f\xe2\x83\xcc\x24\x93\x58\x5c\x2d\xc4\x95\x6f\xa9\x18\xf3\xad\xcd\x81\xe3\xee\xdd\xed\xdd\xf3\x8f\x29\x3c\x24\x0b\xec\x72\xe3\xd9\xb4\xa5\xb4\xb0\x14\x2f\x1d\x03\x2f\x90\x3e\xdf\x06\xbf\x0f\x4f\xf3\x83\x40\x01\xc4\x1f\x5c\xf3\x89\x42\xe6\xbc\xc1\xcd\xe3\x6b\x9e\xab\xf9\x32\x25\x27\xb1\x51\xde\x54\x2e\xc4\x2d\xb5\x81\x18\xc6\xc6\x00\x98\x60\xeb\xe7\xa5\x0b\x17\x18\x39\x1c\xa9\x6f\xab\x72\xc4\x20\x4e\xbb\x26\xde\xee\x4b\x61\xc7\x35\x2d\x14\x72\x2f\xf0\x73\xf0\x33\x42\x43\xa9\xc0\x5c\x9f\x60\x24\xf8\x46\x4b\x0d\xaf\x37\x70\x51\x2d\xee\x6b\xc7\x51\x51\x70\x1e\x42\x32\x20\xf4\x21\x49\x81\x48\x44\x64\x93\xde\xc4\x15\x23\x11\xa3\xff\xcb\xc0\xc7\xeb\xff\xb2\x31\x1f\x5c\xda\x0a\x5e\xa4\x08\xe4\x1e\xe9\xf8\x5e\x43\xee\x4b\x83\x3f\x3a\xb7\xd6\x10\xe2\x14\xe9\x8a\x8d\x67\x94\x8e\xe4\x9b\xca\x2b\x06\xce\x52\x96\xb8\xc3\x68\x47\xe1\x92\x75\x7e\x0f\x90\x2e\x27\x34\x1d\x4a\x5d\x71\x72\xef\xae\x76\x66\x0b\x13\xe1\x3c\x70\x1c\x13\xaa\xe6\xfa\x84\x06\x97\x02\xae\x48\x6d\x02\x58\x9e\x67\xe0\x4a\xc3\x1b\x86\x01\x05\x6c\xe6\x90\x16\x7b\x30\xa1\xdd\xde\x12\xe9\xd0\x0b\x97\x2a\x8a\xd0\xb4\x7e\x90\x4f\x3c\xac\xa2\xfd\x4b\x28\x7e\xc8\x29\xed\x0d\xc3\x3b\x8a\x7d\xf7\x92\x7b\xf5\x61\x1a\x97\x3b\x3a\x9f\x51\x1b\xe3\x09\x06\xd3\x90\x89\x7a\xf6\xb1\x8e\x0a\x61\x3f\x6e\x58\x0f\xed\x5e\x3a\x8a\x12\xe9\x24\x82\x31\x3e\xa2\x4e\xda\x23\xbe\x9d\x31\xe3\xbe\x94\x3d\x7b\x7c\xc8\xe3\xb4\xe9\x4e\xaa\xfe\xf6\x2c\x5a\x36\x31\x17\x01\x61\x9d\x2e\x23\xd0\x69\xe2\x76\x54\xdd\x69\x97\x3f\x35\xb5\x10\x46\xcb\x11\x41\x4f\x66\xd4\xae\x05\x77\x3d\x8a\x1d\x97\xf5\x12\x3e\x35\xfd\x4c\xd5\x7a\x94\xa7\xc4\xe2\xde\xc5\xcf\xef\x70\xce\xf9\x6f\x3f\x06\x63\xc0\x21\x93\x96\x67\x58\xa3\xbd\x55\x29\x5e\x0a\x86\x46\x45\x59\xc7\x03\x2d\xb7\x72\x1d\xfb\x1b\xeb\x6d\x5d\xc1\xf6\x33\x62\x07\xa6\x56\xc2\xd2\xaa\x38\x45\x9d\x72\x96\x51\x72\xe4\xf0\xce\xb9\x7a\x07\x76\xf1\x22\xfc\x40\x13\xbc\x7f\xa0\x40\x24\xe3\x8c\xf0\xa4\xec\x6b\x3b\x52\xc9\xdd\x92\x17\xff\xdd\x26\xd6\x7c\x22\xa0\x1b\xc8\x2e\x71\xd6\xd9\x3b\xeb\x4d\xb2\xac\xd4\x0d\xc2\x1f\x11\xe9\x70\x7a\x5a\xd1\x14\xf7\xf2\xce\x93\xa4\x7c\x2c\x95\xe2\x64\xb0\x4e\xa0\xe1\x49\x3b\x2b\xef\x10\x15\x0f\xd0\xa8\xa1\x6c\x72\x85\x36\x3a\x06\xf7\x5e\xa0\x2a\x99\xb7\x68\x72\x10\x9a\x1c\x81\xe1\x93\xd6\x77\x85\x89\x3a\x86\x07\xe3\x46\xa6\x6a\x57\x13\x0d\x3d\x7f\x59\x93\xfa\x71\x92\x16\x43\x77\x30\x0a\xe9\x40\xcb\xf1\xa9\x5d\x50\xc9\xc8\xd5\xc8\xc6\xa4\x52\x21\x4c\x4f\x3f\xa5\x17\x74\xb8\x5c\x4f\xbc\x76\x4c\x73\xa7\x1d\xa3\x77\x80\x5b\xbe\x1d\xad\x12\x02\x42\x53\x0d\xb0\xe7\x6a\xee\x57\xb9\x70\x7b\x93\x22\x12\xd7\x46\x4c\x95\xaa\x86\x9d\x74\x1e\x6e\x94\x24\x36\x43\xcb\xaa\x54\x4e\x6a\x02\x4a\x64\x93\xff\xe7\xcf\x76\x7c\x11\xe4\x81\x35\xe6\xf2\xf6\x31\x6d\xd7\xc6\x04\x5e\x44\x71\x7b\x2b\x88\x2f\x94\x05\x97\xa4\xe5\x5f\x2a\x95\xb5\xbf\x9c\x2a\x31\x35\x16\x0b\x15\x1d\x3b\x1f\x91\x99\x81\x4d\x8a\x7c\x87\xcf\xde\x01\x22\x2e\x14\x64\xf4\xb8\xc2\xf1\xac\x38\xbb\x60\x31\x18\xb7\xd9\xc0\xbb\xe0\x04\x9d\x15\x71\x86\x8a\x03\x7b\x36\x8f\x40\x4c\xf9\x92\x2b\x7f\xa8\x98\xfd\x24\x39\x41\x6c\x22\x55\xe6\xe6\x63\xc5\x22\x16\x9b\x70\x69\xce\xf7\x6e\xde\x57\xa0\x50\x68\xbb\xc0\x41\x3d\xac\xc8\x89\x58\xf9\x57\xd0\x12\x0d\x21\x61\x2e\xed\x0d\xc8\xae\x1d\x0b\x54\x5d\xbd\xce\x8a\xb9\x7b\x77\x7b\xd5\x64\x3d\x5e\x09\x0a\x83\xbd\xef\x53\x31\xd8\xa5\x27\x3e\x8c\x12\x34\x0d\x4b\x09\xc7\xa3\xbd\x6f\x2b\x4f\x37\x8c\xcd\xa4\x17\xa5\x04\x29\x93\xe6\x3d\x9a\x0e\x59\xa7\x48\xc0\xbb\x7f\x5a\xdc\xeb\x71\x94\xbe\xd9\x2d\x4a\x86\x36\x8b\xdc\x61\x8c\xb8\x90\xb9\xc9\xf8\x66\xfa\x90\x07\xe9\x15\x9f\x2d\xdf\x5e\x24\x5a\x09\x7a\x2e\x71\x67\x39\x0d\xc2\x9b\x4c\xeb\x0f\x41\xfb\x7d\x62\x22\xc2\x39\xc8\x92\x30\x30\xdb\x37\x02\x95\xa7\x78\xb8\x53\x4e\x95\xe3\xc0\x2a\xa7\x1a\x3b\x74\x0e\x9c\x06\xce\x9d\xd8\xbb\x4b\xc4\x94\xc9\xb9\x03\x32\xf0\x0d\xd4\x32\x11\xdc\xfd\xaf\x3a\x19\x32\x87\x8c\x26\x8c\xd4\x23\xd4\x79\x83\xec\x0e\x90\x45\x00\xbe\x5e\xd2\x25\x56\x96\x0a\xc2\x81\x7e\x07\x66\xcd\xc5\x27\x1e\x00\xb1\x9d\x1c\x50\x66\xd4\x0c\x34\xf4\xf6\x7b\xaa\xf7\x78\x9c\xaf\x86\x43\x21\xd5\xa7\x1d\x5a\xd1\x35\x80\x1b\x7f\x5a\xed\x15\xb8\x26\x52\x4d\xf4\x64\x34\xa7\x75\x9b\xa1\x0a\x8d\xe2\xd8\x86\x4e\xbe\x19\xff\x7c\x52\xc9\x6c\xd4\xf5\xfa\xca\xb0\xa2\x6f\xf2\xc2\x66\x33\xbe\x26\xc5\x0c\x23\xa2\x07\x48\xb3\xc7\xe4\x83\x41\x5d\xd6\x64\xc5\x24\xc5\x9c\xf2\x79\x21\x5c\xef\x44\x61\x9d\xf0\xd1\xc7\x44\x63\x20\xcf\x5c\xbe\x0b\xfe\xe6\x8a\x83\x1e\x15\xa9\xc1\x91\x28\x2d\xb5\xba\xd7\x76\xf3\x0f\xff\x6a\x7b\x68\x96\x99\x25\x04\xa5\x00\xe8\x7d\xf2\xb5\xcb\x0d\xad\x44\xc5\x30\x4b\x57\x68\x44\xe0\x76\x7c\x5f\x2b\xa8\x7d\xdf\xa9\x48\x8c\x22\xe1\xc6\x47\x3a\xf7\x67\x9a\x8c\xe5\x67\x81\x47\xa4\xc4\x76\x10\xe5\x31\x64\xb2\x69\xa5\x80\x37\x04\x90\x51\xbe\x76\x3f\x9f\x2e\xdb\x2c\x36\xe3\xd9\x96\x22\xbe\x2b\xe7\x0e\xd1\xd7\x07\x38\x0e\x91\x9f\xf8\x53\x1d\x39\x5c\xaf\xb3\x66\xce\xb7\x4d\x96\xe6\xfc\x9b\x9c\x6e\xc7\xe2\x96\xdc\xfb\xa7\x55\xc3\xfb\xe5\xa1\x37\xe3\x01\x40\xd7\x95\x26\xeb\xb7\x74\x17\xf3\x35\x5f\x70\x32\x51\xec\x8e\x54\xe6\x33\xad\x70\x9b\x2a\x2c\xa1\xc9\x8b\x6c\x15\x4b\x00\x05\xf2\xad\x80\x1f\x38\x8a\x75\xb7\x06\x50\xc8\x77\x19\x4b\x47\xf7\x5c\x17\x59\xa0\x72\xcc\x6a\xa2\xda\x3c\x45\x4e\xb8\x92\xdb\xf4\xc1\x6b\x37\xb3\xa6\x57\x0c\x31\x3a\xd2\xb9\xa1\xda\x40\x6a\x1d\x53\x07\x76\xb5\x63\x53\x00\x38\x89\x90\xe4\xae\x82\xff\xc0\x9b\x11\xf2\x03\x7f\xb4\x16\xab\x8c\xe4\xc6\x44\xdf\x0e\x5a\x5f\xfb\x0a\x5b\x9a\x7f\xa1\xd2\x7c\xb7\x94\x65\xee\x5b\x1b\x4b\x86\x8e\x9b\xce\x51\x6e\x96\x0e\xf4\xcd\x4f\xf6\xf2\xcb\xed\x15\x33\x60\xa2\x0b\xc7\x93\xe2\xc4\x3e\xeb\x10\xc6\xf9\xfd\xed\x78\xd2\xa5\x06\x99\xa2\x22\x3f\x78\x4e\xc9\x0f\x9e\x6b\x4a\xc7\x4a\x5f\x0d\x6d\x0f\x82\x8f\x9e\x79\x7a\xcd\x33\x5e\x9f\x79\xba\x23\xb5\x62\x53\x14\x36\xe9\x49\x9c\xe1\x04\x60\x5d\xeb\xf2\x59\xa5\x12\x99\x4f\xe2\xc2\x24\x2d\xa5\x2d\x81\x1c\x09\x5f\x7b\x5e\x77\x1b\x5b\x33\x98\x78\x85\x7e\x20\xc8\x10\x37\xf1\xb5\x5a\x68\xdd\x49\x6f\x60\x8b\xed\x34\x76\xdc\x2e\x15\xf8\x2c\xeb\x5f\x92\xad\x54\x6d\x54\x2f\xb9\xbc\x9f\x82\x8a\x7d\x40\x46\x02\x86\xfa\xf5\xa9\x87\x9f\xfd\xbe\xdb\xb1\xe1\x44\x51\x67\x61\x79\xc2\x2b\xe0\xeb\xda\xe8\x1f\x80\x4a\x46\x5e\x06\x99\xfc\x1e\x72\x0e\xf9\x06\x93\x37\x80\x19\x91\x9e\xa0\xfe\x93\xbe\x81\xfc\x34\x95\x6c\x38\x23\x34\xd5\x26\xe8\x2a\x8e\x18\x6c\xda\xcb\x58\x34\x70\x83\x5b\x6b\xad\x17\x17\x35\x8e\x76\x9f\xf4\x7b\x07\x8a\x1e\xe5\x4f\x34\xcd\x10\xb7\x69\x63\xdd\xfe\x98\x06\x8b\x69\x7d\xe8\x18\x65\x56\xdb\x40\x51\xb0\xcc\xae\xd1\x89\x2e\x8c\xc1\xe5\x91\x2c\x52\x75\x0a\xa2\x3c\xbb\xe6\x69\x41\xb7\x80\xdd\x06\xfb\xe1\xbf\x51\x2d\x0b\x77\x36\x0b\xc0\xec\xdd\xb5\xb7\xdc\xe3\xdb\x55\xa9\xee\xae\x56\x6b\x39\x44\x0f\x05\x4c\xc0\x07\x74\xf2\x49\x53\x98\x6a\x06\x05\xf0\xde\x81\x27\x95\xdc\x9a\x4a\x55\xe5\x85\x62\x06\xc2\x96\xfb\x3d\xad\x86\xf5\x7b\x0d\x1c\xe3\xfb\xda\x23\xdb\x8b\x42\xa9\x6e\xe3\x7d\x8e\x04\x2a\x67\xec\xc3\xea\x71\x66\x97\x2d\x8e\xc0\x79\xde\xa1\x00\xbc\xa2\x56\x3a\x83\x38\x15\x1e\xf2\xc3\xaa\xd0\xbf\x73\xcd\x67\xe1\xae\xb9\x8c\xc0\x24\xe9\x9b\x28\x63\x93\x47\x9f\xf9\xc2\x13\x1d\xb7\xe3\xbe\xf0\xc4\x9a\x2a\x71\xa5\x79\xc2\xe8\x5e\x9c\x19\x97\xb5\xb8\xc8\x71\xc5\x14\xf4\x49\x2d\xed\x5a\x5a\x0c\x3e\xc6\xa4\xdb\x06\xe8\x73\xe8\x53\xf2\x22\x99\x56\xf2\x75\x3e\xf8\xeb\x5b\x93\xd9\xde\xac\xe2\x21\x3b\xa9\xe1\x98\x6f\x2b\xba\xe1\x0d\x15\x5e\x9d\x71\x63\x16\x8d\xcc\x80\x06\xd7\x1d\xf0\xa0\xda\xe3\x6b\x2f\x23\x6b\x0d\xe5\x2e\x95\x44\x59\x45\x87\xd5\xdb\xe5\x7f\xf6\xa5\xfd\x34\x55\xc0\x43\xdc\x0b\x14\x39\xf6\x3d\x37\xb8\xe3\x2c\x1d\x97\x01\x31\xa5\xeb\x70\xfe\xdf\x9d\x2a\xe4\xfa\x71\xa0\xfd\x1d\x49\x83\x63\x43\x3a\xf2\x74\x47\x81\x1c\x55\x88\xb1\x5e\x3e\xf6\xc6\x45\x05\x0b\xe8\xda\x6e\x3a\xd6\x45\xb4\x8a\xbe\x6d\x2d\xb2\xa7\x4c\x56\x1e\xe5\x2e\x33\x8c\x3f\x44\x32\x4b\x98\xf0\x94\x78\xc0\x1d\x37\x36\xa3\x74\x52\x0c\xd9\xda\x8b\xba\x07\x3d\xbe\xb4\xaa\x37\x2d\xeb\xcc\x26\xe9\x8a\x13\x90\x87\xb1\x7c\x87\x7e\x8b\xaf\x95\x9f\x93\xd8\x41\x5a\x44\xa6\x70\xb0\x49\xe1\x04\x2e\x5f\x4e\xcb\xdb\x22\xd1\x77\x5c\xd5\x28\x56\xd2\x2c\xee\xed\x80\x29\x43\x16\x91\x51\x02\xa2\x03\xd6\x52\xdc\x28\xf4\x76\x0a\xa3\xb1\x50\x39\xbc\x50\x8b\x66\x9e\x1b\xe6\x30\xc0\x90\x62\x7f\x5d\x0d\x1e\x72\x8b\x60\xff\xae\x59\xef\x6b\x6c\xe9\x54\x59\x6b\xf7\xee\xe2\xa8\xe9\x7d\x0d\x4c\xd5\xed\xde\xdd\x68\xf0\x50\x19\x45\x60\x03\x71\x5f\xae\x1c\x9e\x64\x7c\x25\xcc\xf7\x55\x81\xe3\xb4\x18\xf8\xff\x6b\x3d\xf2\x6d\x8c\x71\x12\x30\x83\xc2\xed\xdf\x50\x88\xbc\x13\xaa\xfe\x36\x83\x46\x4f\xe1\x7b\xab\xbb\xda\xfd\xcc\xc2\x5f\xc1\x4b\x5d\xa3\x3d\x83\x00\xe6\x76\xa0\x92\x4d\x6f\xab\x8d\x31\xe9\x42\x5c\x4e\x52\x92\xb4\x97\xc4\xae\xd2\xf3\xe2\x00\xdc\x89\x1f\x17\x09\x1f\x2f\xff\xfe\x26\x1f\x49\x5a\xe8\x07\x8d\x26\xdb\xd6\x14\x61\xee\x07\xae\x00\xd4\x37\xcb\x69\xb6\x43\xd5\x41\x6e\x2b\x92\x21\xd6\x5f\x47\x73\xe3\x31\x22\xfc\x57\x2d\x5a\x0b\x4e\x15\x58\x75\xc9\x42\xe5\x15\xe1\x18\x93\x8f\xe1\x9d\x8f\x28\xa9\x61\xd3\xef\x47\x71\x44\x00\x05\xbf\x04\xd0\xad\x20\xa4\x4c\x9b\xcf\xed\x67\xdb\xf9\xea\x68\x6c\x8a\xa1\x2d\xa2\xb0\xe5\xcf\xe3\x6f\x07\x1e\xbf\xff\x6d\x45\xfd\x91\x86\x4b\xe3\x28\x46\x0d\x18\x4b\x1e\x99\x5f\xbe\x56\x25\x60\xd3\x27\xa7\x6a\x4e\xf5\x77\x32\x1d\x96\xab\xc9\x7b\x3e\xc6\x33\xba\xc4\x12\xf8\xbd\xf5\x3f\x68\xb2\x74\x9b\x44\x83\x64\xc6\xf3\x3f\x30\xdd\x18\x06\xe8\xaa\x6a\xce\x3d\x5c\x63\xbd\xd8\xbb\x8b\x8a\x40\x34\x3a\x44\xc6\xe8\x30\xbf\x67\x55\x33\xe6\xd9\xda\xe7\xa8\x58\xdf\x4f\xb3\xd1\x44\xa9\xd1\x21\x7d\xce\xd9\x79\xbe\x51\xae\x6e\x79\x74\x45\x89\xdd\x5e\xee\x09\xac\x97\x9b\x78\x50\x6c\x96\x2b\x30\xcb\xf0\x15\xc0\x43\x89\xbd\x76\x83\x9c\x0b\xd6\x00\x0b\x14\x8c\xea\x32\x0d\x0e\x7f\xa0\x16\x7c\x3e\xf3\x4c\x7b\x68\x7a\x55\x63\xab\x12\x66\x81\x57\xf4\xcd\x8a\xa1\x8d\x46\x2d\x45\x5d\xcc\x6d\x56\x32\x07\x35\xc2\xe8\x79\x92\x01\xcb\xcc\xa0\x3c\xe8\xbc\x46\xc5\x06\xed\x77\xc7\x02\x5d\x8e\x09\x66\x64\x46\xad\xd2\xf7\x03\xbf\x6a\xca\x25\x39\x92\x36\x26\x56\x7d\x0b\xd4\xbe\xf1\xcc\x29\xfd\xa8\xd8\x41\x0f\x28\x2a\xf5\xe5\x17\x62\x18\x5a\x48\x39\x4a\x6a\x93\xbe\x4b\xf4\xd7\xca\x51\x84\x3d\x00\x1f\x02\x6c\xcc\x15\x3c\x9b\x43\x34\x7a\x6c\xf8\xba\xa2\xf6\xa2\xc7\xeb\x69\xed\xec\xab\xf4\xab\x7c\xdd\xd4\x87\x34\x32\x79\x9a\x30\xa7\xa7\xf0\xa5\x94\x1f\x11\x22\x15\xb1\x02\x24\x47\x4e\x8b\x0d\x60\x1a\x6e\x55\xe1\x9b\x60\x33\x1b\xd3\xb3\xed\x6e\xc4\x0f\x02\xb3\x03\x0e\x62\xbe\xae\x49\x7a\x1e\xd8\xf5\x5c\x3b\x1a\x8d\xa2\x44\x34\x45\xb9\xae\x13\x78\xc8\x6b\x1d\x73\x5c\xc6\x94\x4b\x49\x1a\xa2\xc9\x9d\x35\xe4\x31\x34\x32\x17\x2d\xa7\xb2\x7b\xb4\x16\x92\xbe\x88\x72\x6a\x11\x25\x13\x61\x4f\x87\x1d\xda\xc0\xaa\xe3\x9b\x40\xb7\xa2\xc7\xcb\x2c\x7d\x0e\x23\xf4\x73\xa4\x2d\xf9\xa6\x16\x92\xee\xde\xdd\xee\xa6\x07\x57\xd1\x3b\x85\x33\xe1\xbc\x0a\x9c\xae\x29\x95\xdc\x77\x2b\xd4\x84\x66\xd9\x7e\x06\xf9\x3d\x47\x13\xe8\x59\xf3\xae\x61\x29\x60\xf1\x7c\x8e\x32\x6b\x4c\x82\x0c\xfb\x8f\xf4\x1d\x67\x89\x85\x2c\xa6\x3c\x07\xe1\x65\xfd\xc7\x40\x79\xb6\xd7\x54\xc9\xe6\xd0\xb4\xaa\x29\xbc\xe8\xd4\x13\xfe\x13\xf6\x39\xb2\xba\x77\xc9\x7b\x47\xc9\x71\x3b\x22\x0a\xe7\x3b\xb9\x26\xd5\xa3\xd4\xf2\x8a\x93\x88\x6b\xbe\x78\xc6\x37\x28\xc0\xc6\xd0\x56\x15\x73\x29\x6a\x42\xc2\xea\xba\x52\x71\xbb\x43\x1b\x94\x7c\xd6\xdf\x79\x72\x4d\x56\x63\x6c\x56\xd1\xa6\xf7\x92\xb3\x93\xfe\xdc\x45\x1f\x9d\x30\xe2\x3e\xaa\x24\x46\x62\xdb\x83\xd8\xae\x10\x79\x6a\xba\x4a\xb0\xad\x21\xf8\xfc\x0e\x7d\x1d\x0a\x21\x9c\x2e\x45\x58\x72\x0f\x83\xcf\x7d\x15\xf4\x9c\x88\xba\xb8\x39\x0d\xb9\x90\xbb\xc1\x66\xeb\x4b\x1a\x29\x69\x96\x4e\x06\xc3\xbe\x29\x3d\xf4\x2f\x7d\xbd\x42\x07\x85\xf1\x04\x16\x47\x7a\x48\x6a\x54\xe8\x7b\x17\xdb\x43\x1b\x33\x47\x32\xe6\xe9\x7d\x0d\x1d\x7f\xbf\x49\x5e\xc9\x4e\xb2\x74\x6c\x4d\x22\xbd\x90\x22\x77\xad\xea\x7c\xbf\xd9\x00\xb7\x69\x77\x53\x12\x20\x50\x1a\x22\xd8\xf1\x22\x28\x22\x59\xca\x34\x0c\x4d\x4e\xfd\x5c\xb4\x71\x61\x4a\x5f\x53\x04\x10\xaf\xa9\xac\x0e\xd2\x67\xab\x0a\x4c\xf5\x49\xe0\xb3\x2c\x9f\xd4\x52\x27\x5f\xa4\x02\x36\x47\x0c\x38\xc2\xcf\x07\x0a\x99\x7d\xbe\x46\x03\xf7\x6c\x3b\x49\xbf\x30\xa3\xa8\xed\x6e\x2b\x7d\x56\x86\xf4\xa2\xd0\x72\xac\xf6\x6b\xfb\x5f\x68\x4f\xbe\x90\x7c\x41\xe9\x2c\x72\xd3\x13\xdf\xd4\xac\xdc\x9e\x3d\xed\x5e\x4a\xd6\x87\x01\x28\xf0\xda\xb0\xf4\x7e\x4b\xa9\x56\x69\x8e\x8d\xb4\x1b\x47\x03\x3e\xbb\xb5\x18\xa1\x52\x17\x7b\xa4\x12\x9a\x51\xa1\xdb\xe1\x07\x4b\xbf\x15\x79\xac\xad\x6b\xfe\x5c\xbe\x1e\x68\xb5\x45\xbb\x6c\x67\xca\x0d\xe8\x78\xb4\x5d\x6f\xd3\x65\xda\x4e\x88\x58\xef\x28\x42\xba\x71\x3c\x19\x75\x5d\x9a\xc4\xc9\x59\xb9\x36\xbc\xd3\xaa\x02\x1f\x91\xbe\x47\x5e\xe4\xdb\x94\x20\x12\xda\xc6\x18\x0e\x3a\x55\x86\x48\x23\xa5\x58\xd8\xd8\x29\x14\x97\xe1\x0d\xb3\x14\xba\x23\x56\xb8\x4e\xf8\xf4\xc0\x01\xf3\x97\x81\x3f\x79\xfe\xb2\x09\xc2\x3f\xb0\x89\xcd\xd8\xed\x13\x40\x9f\xef\xd0\x38\x51\x0b\x98\x0f\xec\xc2\x6b\x2c\x47\x76\x45\x7e\x4a\x24\xc7\x5b\xae\x79\xfc\x82\x02\xc8\x3b\x82\xb2\x99\x96\x12\xc0\x29\x47\x13\xb9\xf4\x63\x34\xca\x02\x04\xf2\x5c\x06\xb1\x59\xcd\x23\xce\xc8\x31\x95\x63\xa0\xa8\x9f\xde\x68\xe0\xd0\x5f\x04\x7d\x41\xb9\x94\x84\x4a\x94\x1e\x50\x30\x6c\x4d\xa0\xab\x30\x4d\x12\x1b\x3a\x1e\x34\xc7\x4b\x5d\xfe\x92\x20\xab\x15\x22\xc0\x46\xe1\x10\xad\x41\x0c\x2b\xa7\x38\x5c\x20\xe6\x9b\x1f\xe9\xd9\x36\xc1\x6f\x67\x74\x9d\x50\x35\x66\x00\x6b\x09\x6b\xf9\x5e\x53\xe3\xf2\x38\x8d\xa3\x7c\xa8\x74\xb7\x19\x1e\x80\xb9\x07\x12\x4b\x18\x41\xb5\xf0\x5e\x1c\x15\x26\x5b\xdd\xa1\x68\xcb\x2e\x61\x24\xf8\x66\xea\xd1\xb9\x47\x2a\xe0\x56\x5a\x7f\x98\x8b\x4f\x2a\x94\x14\x1c\xfc\xf0\x3f\x29\x1a\xcd\x8d\x06\xf2\xdd\x28\xe9\x4d\xe2\x81\xd4\x7a\x39\x8d\x10\x54\x88\x1f\x9f\xf2\xe2\x38\xb6\x67\x47\x63\xee\xb9\x2a\x9f\x11\x52\x54\xe7\x94\x24\xe5\x39\xc5\x54\xc8\x30\x96\x50\x92\x59\x4e\x24\x01\x64\xde\x7c\xad\x76\x5d\x1e\x46\x36\x29\xa2\xbc\x50\x79\x91\x6a\xcf\x88\x22\xd2\xb4\xcc\x5a\xe0\xa8\xfe\xce\xc2\x32\xf1\x8d\xaa\x10\xe6\xe3\x34\xc9\xd3\x8c\x01\xae\xf0\x77\xd9\xea\xf1\x8d\xe2\x2c\x1d\x67\x51\x9a\x45\x85\xe3\x0a\x73\x64\xb0\xaa\xed\x77\x33\x50\x6c\xbe\x7d\x60\xd7\xc3\xda\xaa\xd0\x33\x23\x87\xf9\xd7\xca\x41\x3b\x4b\xf5\x24\xc7\xb8\xeb\x5b\x88\xae\x69\xb7\xe6\xc7\xe4\x1f\x8b\xfc\x04\xb9\x38\x5c\x6f\x44\x91\x0b\xd6\xf0\x10\x56\x89\xb0\x56\x96\x83\x8b\x1a\x21\xb3\x32\x61\x11\xd6\x7b\x3a\x16\x5f\xd8\x47\x9d\xeb\x2d\xdd\x68\x54\x41\xaf\xca\xa9\x67\xba\x79\x51\x7a\xab\x21\x32\x8a\x22\xc5\x52\xfe\x92\xb4\x50\x3f\xe9\xb2\xe2\xc3\x72\x32\x56\x6c\xb6\x84\x0c\x19\x4e\xd0\x4f\xf4\x71\xfa\x89\x42\xeb\x8c\xd3\xac\xa0\xce\xb6\xe7\x78\xd9\x5c\xd7\xae\xc5\x5f\xd1\x9a\xe5\x7f\x40\x8d\x95\xff\x41\xc5\x97\x79\x3a\x89\x19\x8e\xe2\x48\x2b\x76\xcf\x3b\xb4\x82\x2f\xa3\xaf\x98\xd5\x7c\xbb\x87\x42\x20\xfa\x10\x38\x76\xcb\x35\x42\x33\xdf\x0a\x03\xfc\x91\x96\x72\x02\x54\x7b\x77\xb9\x1b\x38\x47\x98\x90\x37\x1d\xd4\x36\x36\xab\x23\x93\xa8\xee\xb5\x13\x0a\x59\x78\xa2\x09\xe5\xd8\x8b\x72\xd3\x95\x37\xc0\x5e\x05\x5c\x82\xaf\x9b\x0a\xeb\xfd\x88\x98\x1b\xd4\xa3\x4d\x55\x65\xed\x27\x53\x9f\xf8\x3d\x13\xf8\xf4\x5e\x6e\x8d\x88\x85\xc2\x87\x02\xf9\xa2\x68\x8f\x94\x5b\x11\x1f\x3a\xa1\x87\xe0\x9e\xe6\xd5\x3e\x51\x61\x22\x08\x97\xa2\x59\xa5\x61\x01\xef\xce\x5d\xbb\xb6\x57\x08\xf9\xcb\xf5\xa3\x95\xfe\xb5\x5c\x33\x3c\xd0\x6b\xbb\x53\xc0\xfb\x6c\xff\xca\x45\x66\xa3\x49\xd2\x4b\x15\xe9\xda\xbb\x58\x58\x7c\xa3\xce\xf8\xbe\xa5\xec\xf0\xa6\x96\x00\x85\x07\x6d\x18\xd5\x61\xea\xb2\x8b\x52\x2b\x68\x39\xfa\xfc\x8f\x95\xb1\x36\xbd\xe5\x28\x2f\x7d\x1a\x18\x58\x94\x1f\x0e\x69\x7e\x97\x43\x95\x10\xa7\xf7\xaa\x85\x40\x98\x33\xdf\xde\x94\x2b\x52\xb9\x68\x90\xa4\xbe\x2b\xc1\xcd\xe5\x9e\x3d\x4e\x31\xbd\x89\x92\x16\x8c\x9d\x2d\x0f\x6c\x3f\x44\x3d\x38\x7c\xad\xe0\x60\xa6\x28\xd2\x2c\xb1\xab\x39\xf1\x27\x0a\x13\xb9\xef\xd1\x79\x47\xb5\xa3\x7c\x27\x50\x11\xef\x77\xa6\x9f\xfb\x94\xe2\x6c\xd7\x24\x4b\xd9\x64\x5c\x84\xab\x33\x2a\xae\x3f\xa6\x10\xb1\x9c\xcd\x06\x82\xea\x72\x23\xc4\xbb\x3b\x59\x75\x69\x5a\x80\x23\xbe\xa3\x12\x75\xc7\x68\xb0\x84\xa2\xc9\x3b\x8b\x48\x67\xb9\x78\x10\xe6\x48\x12\x9e\x7a\xf0\xc7\x36\x26\xae\x18\xf9\x3a\xda\x35\x4e\x67\xf3\x79\xf7\x3b\xe8\x1b\x17\x6d\xce\x4d\x04\xda\x2f\xbf\x0c\x02\xed\x03\x1e\xb0\xec\x5a\xe1\x7e\xff\xa3\xda\xbc\x94\xe1\xf6\x4a\x9a\x52\xf9\xd7\xa5\xac\x8e\xd2\x23\xca\x7e\xdd\x1c\x34\xb9\x16\x68\x9b\x45\x76\x72\x90\xd6\xad\x50\x0c\xa9\x88\xf4\xf5\xc0\x83\x3c\xed\xb2\xcd\x40\x26\x22\x85\x7e\x5f\x6b\x7e\x5b\x93\x31\xfe\x8c\x4c\x9d\x00\x80\x1b\x08\x0c\xf2\x61\x44\x1a\x30\x98\x04\x44\x00\x68\x79\x80\x11\x3a\xaa\xf0\xa9\x1f\x34\x4c\xe2\x02\x77\xfe\xb7\xbc\xf0\xff\x7d\x9a\x37\xbe\x6e\xc0\x96\xed\x6b\x8f\x55\x73\x24\x16\x0b\x53\x33\xf3\x4d\xf0\xb4\x3a\x8b\x53\x82\x32\x22\xf2\x72\x72\x6c\x5c\x9f\x12\xec\xb5\x92\x17\x2c\x4c\xbf\xbf\xcd\x1b\xb7\xab\xc8\x5d\x68\x3b\x20\x94\x3a\x74\xaa\x54\xca\x1d\x30\x46\x57\xd9\x7b\x42\x86\xf4\x56\x13\x7a\x35\x1c\x9a\x24\xb1\x71\xae\xf3\x63\xc8\x4b\x8a\xeb\xe1\xb3\x55\xff\xaf\x9d\x43\x7a\xc9\xf6\xa3\x62\x67\x05\x37\x58\xe5\x49\x77\x71\xf8\x0c\x55\x52\x2b\x32\xcd\x0e\x83\xe8\x89\xa7\x8e\x91\x3d\x80\x13\xf2\x73\x4d\x70\x72\x74\xfa\xa9\x10\x48\x8f\xc1\xb9\x47\xbe\x26\x7f\x1a\x9b\x59\xd8\xa2\x31\x40\x7c\x87\x81\xe4\x5f\xac\x21\x5e\xf6\x2e\xb6\x4d\x1c\xb7\x7c\xb1\xf8\x6f\x40\xf6\xc9\x37\x0d\x2a\x63\x4a\xfd\xb0\x7c\x15\xe9\x7b\xd7\x4d\xf0\xce\x41\x49\xa2\xc1\xb0\x08\xe3\x49\x97\xff\x98\x89\x28\x69\x2a\x84\x94\xd2\x3b\x0c\x2b\x69\xd2\xb3\x19\x29\x45\xa2\x8e\xc1\xd5\x69\x41\x0c\xb6\xfc\x35\xa5\x76\xc5\xd7\xf7\x01\x6c\x9d\x0a\xab\x3c\x3d\xa2\xc1\x50\x89\xe6\xed\xa0\x1c\x20\x8c\xfc\x56\x42\xf2\x8b\x00\x9e\x5f\xa6\xdd\x6c\x22\xba\xcc\xaa\x29\x71\xd1\x71\x61\x29\xbe\x89\xeb\xae\x76\x96\x0f\xcd\xd8\xf6\xe6\x14\xd5\xed\x45\xcc\xb6\xd8\xc8\xf2\x19\xa4\x22\xee\x91\x94\x67\x34\xed\x79\x3d\x3b\x7a\x60\xd7\x4b\xed\x30\x9e\x8c\xf2\x55\xe5\x0f\x5e\x53\x6c\x2c\xd7\x94\xcb\x6d\x0f\x8e\x33\x52\x15\x74\xbd\xe6\xbf\xf6\xd9\x8e\x6b\x42\xff\xb5\xcf\xae\xf9\xc1\x4e\x4c\x96\xa5\x2b\xb3\x4a\x7b\x84\xc9\x9c\xf9\x46\x81\x20\xce\xaa\xec\xc8\x59\xad\x7c\x60\x46\x23\x5b\x14\x8a\x6f\x87\x79\xfb\xf8\x46\x55\xc1\x96\xec\xea\xac\x6e\xc6\x2a\xe7\x58\x3a\x0b\x74\x3f\xa9\xc6\xb0\x9c\x6b\x60\xba\xd8\xd7\xce\x8b\x49\x6f\x75\xc6\x97\xc2\x2f\x22\xa6\xd0\x88\x3b\x9c\x69\xbe\x30\x6c\x5f\xb5\x4b\x11\xb7\x79\x61\x9d\x1c\xd5\xac\xe1\x47\x55\xe3\xe6\x60\x62\x1f\x29\xf7\xde\x06\xf2\x70\x0a\x43\x30\xaf\x95\x46\x24\x23\x70\x6d\xea\xf9\x9a\xef\xd1\x4b\x49\x2b\x4f\xf9\x80\x0c\x60\xe5\xfc\x9e\x4b\xbd\xba\x0c\xf4\xce\x8e\x0a\x87\x38\x1b\x2f\x7c\xd1\x2a\xbe\xbb\x3f\x55\x0d\xcc\x67\x5c\xfd\xc1\x1e\x1c\xc7\x51\x18\x15\xd5\x56\x79\xc7\xdc\x7a\x5e\x51\x7d\x77\x4d\x51\x30\x43\x91\x44\x9a\x6f\x28\x1e\x56\x08\x2e\x02\xa7\x78\x56\xe5\xc9\xec\x41\x1b\x4e\x0a\xc6\x86\xa1\x7e\x00\x06\x7b\xbe\xae\xf0\xa3\xf6\xe3\x55\x42\xf0\x22\xad\x75\x71\xaa\x7b\x28\x68\xf8\x44\x08\x8b\xde\x19\x6f\xc6\x90\x2e\x58\x82\xeb\x15\x81\xbf\xf2\x67\xf8\xff\x57\x71\xcd\x8f\x55\xce\x1e\xc3\xd4\xf7\xae\xf4\xf7\xbc\x70\x9c\x1e\x53\x25\xdc\xdd\xab\x2d\x25\xdc\xf2\x8e\x62\x0b\x7b\x47\x01\x29\xa3\x2c\xb3\x14\x88\x46\xdd\xd8\xe2\xf8\x76\xf2\xbc\xae\xa3\xf3\x7c\x85\x85\xa1\xf5\xe5\x17\x9d\xd0\xb0\x0f\x92\xc7\x59\x1a\xa7\x02\xab\x7f\x8e\x33\xde\x47\x15\x02\xf3\x68\x83\x6e\xf7\x81\x5d\x3b\xcb\xe1\x83\x9f\x85\x8c\x38\xd2\x3b\x17\x15\x58\xfe\x3a\x82\x4d\xe9\xb2\xf2\xb4\xcb\xb7\x69\x5e\x30\x78\xa7\x74\xef\x33\x2c\x10\x4e\x7b\xee\xd0\xc3\x27\xfe\x4a\x43\xf4\x7e\x3a\xd5\x92\xc7\xe7\x28\x08\x46\x3e\xfd\x04\x00\xb8\x58\xb0\x2d\x92\xf5\x42\x64\x75\x25\xa8\x30\x72\x3d\xa6\xa0\x89\xb9\xeb\xc9\xe0\x6d\x04\xa3\xcd\x72\x36\x92\x33\xdd\x6c\xe8\xf6\xee\x6a\xf7\xec\xb2\x8d\xd3\x31\x39\x12\x92\x67\xf5\x25\xd4\xf3\xca\x40\x0f\x6c\x36\xaa\xf0\x24\x1c\xd2\x3c\x09\x87\xd4\x2a\xe9\xc7\x26\x59\xb2\x19\xd2\x4c\xd8\x43\x6f\x4d\xfd\x11\xf3\xd6\x26\x06\xb7\xf8\x29\xaf\x56\x78\x17\xd0\x6b\x3c\xfd\xfb\x18\x3c\x80\xc3\xaf\x05\xbe\x21\xfe\x3a\xad\x02\x41\x3d\xd0\xea\x06\xe3\xe6\xf6\x35\x1a\x21\x29\xe3\xa3\x94\x82\x05\x80\x62\x3d\x73\xb5\xea\xba\xe7\x03\x6b\x34\xc1\x02\x09\x50\x47\x37\xb7\xb6\x21\xae\xdf\xd0\x1c\x80\x2d\xee\xed\xc1\xdd\x7f\x52\xee\xc2\x9b\x00\x18\xf0\x6f\x02\x9e\xcd\x38\x49\x05\x55\xbf\x1c\x78\x58\xf5\xa5\x9a\xc7\xbc\xf8\xc2\xbe\xf6\x8a\xf1\xc4\x97\xd8\x37\x3f\x55\x7b\xe8\xa7\x2e\x08\x1c\x4c\x22\x96\xa8\x71\x82\x8d\x7b\xf6\xb8\x02\xe3\x66\x62\xcd\xd2\x9a\x87\x29\x6f\xba\x9e\x38\x9c\x4e\x12\xd5\x23\x68\x4e\xd7\x0e\x82\x17\x17\xdb\xc5\x10\x02\x3d\xe5\x08\x39\x89\xcc\xf2\x33\x22\x66\xba\x39\x3f\x29\x7e\x7c\x5c\xfa\x24\xec\x8f\xc0\x87\xfc\x2e\x0d\x06\x5f\x37\x55\x21\xc6\x59\x34\xb2\x5a\x0f\x50\xb5\x75\xd7\x49\x3f\xca\x13\x3b\x9f\x8c\xc7\xb1\x43\xee\x21\xfa\x3a\xa5\x48\xe4\x4e\xa9\xe4\x57\x3f\x4a\x06\x68\x7a\xf7\x00\x16\x08\x3b\x88\x07\xe7\x0a\xbf\x93\x30\xb4\xd6\x0d\x95\xf8\x02\xf4\xda\xe2\x0c\x3c\x24\x36\x65\xdf\xaf\x7f\x75\xbb\xdf\x7c\x97\x35\xff\xcc\xb9\x69\xeb\xab\xc2\x95\x71\x52\x51\x4b\x7e\x80\x51\x57\xab\xcf\xa3\x50\x5a\x5f\xfb\x8a\xbb\xde\xfc\xc6\x28\x62\xc6\xb1\x75\x69\x4a\xa5\xd3\xba\x4f\x6e\x7c\x67\xfd\x4a\xf9\xb7\xc9\x8c\x4f\xc1\x31\xac\xc6\xd1\x41\x3a\x00\xc4\x95\xca\x71\x64\x46\xe3\x98\xce\x67\x51\xc1\x45\x64\xcc\xd6\x98\xca\x56\x70\xd7\xae\x28\xca\xfd\x23\x78\x0f\xd7\xa2\xb9\x7b\x5e\xd8\x62\x03\xa5\x43\x7e\x9b\x76\xb4\x7b\xf3\xf2\xb1\xa5\x40\x43\xcb\x9e\xb9\x44\x14\xf8\xf2\xb6\x6e\x4c\xf9\x20\xf0\x15\xfc\x3f\xf2\x78\xe7\x61\x3a\x71\x35\x04\x69\x77\xa2\x4f\x49\x1f\x94\xcc\x6c\x9f\x84\xf9\xa3\x09\x80\x26\x58\x59\x5b\xd6\x94\xea\xe4\x96\xce\xe6\xed\x53\x2e\xb3\xa1\x35\x3d\x56\xab\x65\x04\x31\x80\xc6\xef\x69\x2d\x80\xb7\x69\x3c\x99\xf4\xcc\xb9\x0f\x79\x9a\xd9\xa4\xf4\x15\x5b\xae\xe1\xfd\x8f\xe8\x0f\xf9\x5a\xd3\xb2\x2e\x1b\x95\x37\x63\xa4\x13\xdf\x04\xbe\xeb\x30\xe9\x4d\x32\xc3\x1b\x0b\x87\xe2\x7d\x9d\x60\xbf\xef\x86\x25\x1d\x45\x49\x3a\xe1\x95\x82\xc1\x7c\x57\x0d\xec\xbb\x0a\xf4\x3b\x36\x59\x11\xaf\x42\xb2\xc2\xb5\xa5\xee\xdd\xe5\x6e\x9a\xba\x4d\x4d\x37\x4f\xb3\xee\x4c\xa5\x17\x77\x6f\xb5\xb5\x48\x3a\x02\xeb\x26\x09\x94\x19\x38\xc5\x64\x31\x3b\xc6\x57\x45\xff\x5a\xe9\xbc\x8b\x46\x11\x1a\x24\x36\x35\xa5\x8a\xd4\x73\x93\x4f\x3f\x52\x42\xb5\x38\x84\xef\x57\xaa\x6f\x2d\xa7\xc3\xb4\x3e\x7d\x62\x73\xe3\x62\xfb\x57\xb7\xf9\xf6\xe2\xe3\x81\xe2\x42\x67\xcf\x51\x63\x71\xb0\xc5\x4e\xe0\x2c\xe0\x8f\x28\xdd\x98\x13\x8a\xa5\xde\xe4\xf9\x64\x14\x25\x03\x78\x3f\x4e\x72\xd6\x11\xc4\x71\x2c\xcb\x1b\x40\xd5\x34\x7f\xa3\x29\x81\x6a\xfa\xfd\x78\x22\x58\x0a\x20\xe6\x1f\xec\x78\xf4\xfc\x83\x6b\x0d\x45\x9a\x38\x4a\xac\x81\xbc\xbf\xc6\x86\x09\x82\x4c\x21\x70\x27\x49\xcf\x24\xa1\xe5\x54\x1f\x7c\xfe\x13\x3a\xa9\x75\xa2\xc1\x32\xcf\x6f\xea\x5d\x77\xa1\xa5\x33\x94\xeb\x95\xc6\x25\x7a\x81\xd0\x12\x21\x21\xfc\xa6\x59\x74\x82\x3a\x14\xa5\x3f\x94\xcf\xa9\xc6\xd7\x0b\xec\xf4\xbb\x94\xbc\x63\xca\x9a\xed\xf8\xe1\x0e\x27\x71\x31\xc9\x4c\x8c\x93\x15\xee\xde\x09\x25\x00\x58\xef\x51\x26\x06\x8a\x32\xc4\x63\x06\x05\x29\xec\x7a\xc8\xfc\x8d\xa9\xc2\x16\xcc\x74\x9e\x54\x03\x36\x18\x58\x62\xc3\xa4\x52\x2e\xf2\x69\x97\xc8\x80\x22\x92\x85\xf7\x8c\xe3\xf3\x8e\x82\x6c\x8e\x27\xdd\x98\x4b\x44\xb3\x0a\x2d\x8e\x83\x03\xce\x09\xfc\x75\xe1\x98\x55\xe9\xd6\x73\x4d\x70\x94\x94\x0a\x16\xae\x85\xfe\x04\xd9\x4e\xbe\x6e\xd8\x92\x8b\xed\xc2\xc6\x76\x1c\x85\xa4\xe8\xc7\xf3\x0d\xdb\xce\xd4\x83\x7c\x53\xfb\xac\x6b\x14\x36\x45\xe8\x7b\x39\x85\x83\xac\xe5\xf9\xc8\xa6\x9f\xd6\x62\x3c\x49\x56\xa2\x38\xe6\x1d\x21\x53\x84\xec\x33\x7c\x93\x1b\x15\x70\x9d\xae\xd2\x4c\x7d\x1b\x6c\x1e\x9a\xa4\x17\x25\x66\x39\x32\x49\x4b\x4b\x6d\x30\xdb\x05\xdf\x04\x9e\xa0\x2b\xea\x21\x31\x15\x85\xfc\xf7\x52\xa7\x50\xb6\xf7\x44\x43\xf7\xc9\x42\xdb\x08\xe2\xa9\x89\x26\xa6\xa1\xe5\x3d\x8e\x5e\x99\x30\x45\x08\x00\x5f\xef\xa8\x46\xec\x77\x1a\x04\x98\xf7\x91\xf3\xcd\xb5\x64\x04\x75\xeb\x98\x06\xbe\xd1\x7c\x6e\x76\x5c\x10\x77\xdc\x03\x5e\x6f\xe3\x5f\x28\x6d\x02\xb4\xeb\x88\x49\x6d\x39\x92\xd3\xd3\x30\x69\x30\xdf\xbf\xd0\xc1\xf0\x05\x8e\x54\x60\x32\xdf\x99\x2a\xd9\xcf\x3f\xa1\xb3\x9d\xff\xa1\xaa\x5c\x66\x92\x07\xe9\x0f\xf1\x1d\x8f\x77\xbc\xf5\x63\xd1\x64\x96\xca\xa2\xdd\xa0\x28\x0b\x85\x40\xe1\x8e\xd6\x7f\xbf\x3e\x75\xc9\x9b\x6f\x3f\x06\xb4\xaa\x90\xe2\x57\x92\x99\x2a\xb5\x72\xd2\x1d\x93\x51\xd2\x37\xa3\xf2\xf0\xf3\xc9\x73\x46\xee\x09\x6f\x61\x83\x84\x59\x94\x84\x36\x29\x4f\x98\x19\x5f\xe6\x03\x34\x10\x6e\x10\x63\x97\xe5\xb8\xd9\xbc\x98\xf7\xec\x69\x60\x57\x12\x05\xf7\x9f\xd1\xdb\xf0\x75\xe0\x33\x36\x61\x17\xac\xfe\x72\xce\x63\xd8\xb1\xe8\x5b\x1d\xef\x28\xfc\x1c\xf9\x17\x89\x88\x95\x84\xdd\xb7\x30\x6f\x30\x4b\x57\xf0\x88\x72\x08\x6f\x5e\x56\xfb\x5f\x68\x73\x1c\x40\xc1\x1f\xb2\x2b\x80\xa3\xf0\x75\x23\xb7\x9e\x3d\x38\xb6\x61\xb1\xd9\xcd\x56\xdc\x74\xa7\x6a\x16\x74\xcf\x9e\xf6\xd0\x64\xdd\x94\xaa\x74\x7b\x1d\x7b\xab\xcf\x61\x1d\xd7\xa0\x82\x5b\x35\x5f\x17\x8a\x5f\x76\x94\x26\x0c\xf4\x40\x26\x11\xf2\x2a\x7c\xad\x6a\x9b\x39\x49\xd8\xbb\x4a\x11\xf8\x79\xf9\x7a\xea\xb5\x50\x7c\x5f\xc8\x06\x1a\x96\x37\x8e\x35\xb9\x36\x79\x38\xb4\x23\xf8\x19\xee\xb4\x70\x89\x82\x13\xaa\xcf\x2e\x11\x19\xfb\x4d\xfc\xb4\x7c\xa3\x3c\xac\x70\x68\xa2\x44\xbb\x9d\x77\x54\xb6\xe3\xce\xf4\x33\x15\x57\x2c\x0a\xa3\x31\x0e\x02\x68\x1e\x96\x73\x25\x12\xe3\xad\xbd\xbb\x36\x90\xf6\x91\x44\x99\x4e\x0f\x99\x70\x95\x05\x41\xa5\x8c\xa8\x59\xa9\x59\x79\x4e\x5a\x5d\xfd\xb4\x9f\x54\x55\xb6\x0f\x60\x65\x60\xcb\x8e\xfa\x56\x19\x9b\x41\x1c\xaa\x5c\x79\xae\xd7\xb4\xfc\x4b\x91\xe4\xdf\x8c\xb9\xdc\xb3\x67\xaf\x6f\x6d\x6b\x79\xfb\x5d\x6d\x6c\x6b\x20\x8d\x1b\xc7\x86\x59\x88\x38\xcb\xa5\x68\x83\x2f\x36\x4a\xf2\x12\x45\x6c\x2e\x05\x18\x47\xc5\xe7\xf8\x5b\x6e\x54\x68\x85\xd2\x6f\xd8\xb0\xd8\x4e\xcb\x0f\x0d\xc8\x20\x75\x45\x6e\xb3\x92\xe3\x5f\x0f\x7c\xaf\xeb\xb7\x31\x78\x22\xee\xda\x72\xd4\xbe\x5c\x9e\x40\x66\x79\x6b\x0d\xee\xba\xb8\xb7\xf4\x25\x52\x52\x01\x6c\x29\x63\xc7\x4e\x9e\x44\x55\xbe\x4c\xfd\xca\x24\xb2\x20\x89\xc2\x0f\xff\x70\xea\xfb\xbd\x7e\x58\x03\x1b\x2e\xbe\xb0\xaf\xdd\x2f\x9d\xb4\x91\x4d\x0a\xc6\xe5\x89\xac\x5a\xcb\x4b\xac\x35\xd5\x7b\xfb\x93\x2c\xcd\x14\x2b\xd7\x75\xc5\xca\x75\x5d\xf3\x45\x90\xe0\x04\x10\xf1\xa8\xc2\x9d\xe3\xe3\xc1\xe9\x16\x7a\xf5\x95\xeb\x28\x35\xf1\xdf\xe9\x44\xf5\xef\xbb\x8d\x38\x88\x4d\x9e\xa4\x79\xb1\xdd\x17\xf9\x66\xd6\x5a\x5f\x7e\x91\x7d\xc3\xbf\xdf\xa1\x40\x44\x13\xb1\x54\xb0\x3e\x22\x30\x4a\xdf\xcd\x50\xe0\xa9\x56\x2a\xdc\x5c\x7d\x21\xe6\x9d\x67\x5a\xad\x67\x9e\xe1\x29\x3b\xab\x29\x08\xea\xe7\x75\x19\x38\x14\xe9\x44\x28\xc3\x5c\x96\xc5\x67\x5c\xb4\xd8\x4f\x3a\x06\xf4\x1b\xe9\x33\x88\x74\x62\xbf\xdd\xa5\x99\x73\xd3\x5d\x7e\x17\x0e\x0f\xae\xb4\x21\xb1\xf3\x11\x3d\x3b\x39\x57\xbf\xfe\x64\xc7\xc3\xc0\x59\x92\x5b\x8e\x9b\xcd\x5e\xc8\x9e\x3d\xed\x6f\x98\x57\x5f\xa5\xb3\x0a\x30\x81\xeb\x41\x6d\xa8\x30\xf2\xef\x29\xca\xb9\x57\x26\x76\x22\x45\x25\x80\x74\x8e\xa3\x26\xc6\x37\x15\x08\xf4\x7f\xf9\x4f\xff\x69\xcb\x67\x48\xc0\xc7\x29\x3c\x2b\x3b\x75\xb5\x31\xe9\xe5\x0f\x96\xef\x2a\xfc\x11\xbe\x49\x8b\x55\xed\x98\xba\x0d\x5b\x05\x3b\xed\x63\x9c\x00\x8e\xf3\xc3\x11\x10\xdc\xa1\x01\xc1\x3b\xfd\x45\xa0\xf0\xd9\x1f\xa3\x6e\xc1\x3f\x42\xe1\xa6\x44\xab\x9e\x15\x38\x4f\x27\xc5\xd0\x66\x89\xe2\x92\xdd\xde\x51\xf9\x0b\x05\xb2\xb8\xef\xda\xef\xfb\x26\x8e\x4d\x18\x51\xb8\x5c\x8e\x8c\xf8\x81\x0a\xbb\xa2\x79\x27\x33\x43\xaa\x33\x00\xf2\xce\xad\xf9\x4e\x98\xc3\x58\xf0\x48\xf2\xdf\xe1\x5d\xa2\x75\x7d\x90\x39\x7d\xa2\xe3\x8f\x2e\xbb\x6c\xb3\x87\xbc\x43\x84\x9a\xbc\x24\x2e\x74\xff\x19\x8d\x8a\xa3\x2d\x73\x2d\xc5\x8f\x00\x72\x8d\x65\xf2\x30\xf1\x22\xb8\x1c\x48\xf9\x2a\xc8\x48\xbc\x36\xf5\x1d\x09\x5b\x91\xfd\xc4\xce\x79\x1a\x05\x11\x94\x28\x3e\x54\x00\x03\x93\x59\x33\xe7\x53\x96\x47\xc9\x14\x22\xdb\x7d\x05\x33\x27\x45\xd1\xf2\xe1\x25\x5b\xed\xcf\xc9\x75\x15\x45\x86\x51\x01\x3d\xa0\xf2\xb1\xd9\xce\x4e\x15\x41\xe7\xcf\x9b\xc8\xb2\xc4\x52\x73\x0c\xe6\x22\x76\x47\xb8\xc8\x14\x70\x30\x58\x1b\xc1\xe3\x9b\x63\xb0\x7c\xae\x1c\x0c\x38\x0b\xdf\xc7\xd2\x61\xf2\x7c\x55\x1d\xc2\x7e\xe5\x6b\x1a\x7b\xe6\xa7\xf7\xe9\x40\x3b\x36\x44\xaf\x49\x05\x75\x9c\x18\xa7\xa6\xca\xe6\x9f\x20\x8f\xd8\xa9\xfa\xb9\x24\x08\xf7\x60\xb2\xfe\x88\xca\x05\xdc\x55\x69\x0d\xe9\x4a\x00\x2c\x50\xf8\xe4\xca\xe7\x10\xc5\xfe\x9d\x4a\x06\x6c\x39\x4a\x06\xdb\xbd\xd8\xfd\x7b\x81\x6a\x09\x63\x8a\x24\x11\xba\x2b\xa7\xcb\xb5\xda\x3a\xf2\x94\xf7\xe8\xd5\x91\x01\x5c\x57\x2c\x85\x7f\xa2\x2c\xda\xc8\xc6\x1c\x0e\x89\xed\xd1\x7e\x6f\x2d\x1c\x7a\x71\xb1\xbd\x12\x49\xa7\x27\x16\xd5\x9b\x38\x11\xf8\xa6\x29\xd7\x3b\xf2\x5c\xcd\x70\x01\x4f\xea\x8c\xca\x49\xf5\xd2\x23\x1b\xc7\xe9\xca\x8c\x2f\xc2\x40\x3b\xd2\x6d\x0a\x47\x56\x70\xa9\x82\x21\x48\x73\xb3\x4d\xf9\xc2\xb7\xd9\x11\xe2\x3b\x98\x56\x00\x3d\xde\x87\x51\xe2\x9b\xcd\x69\x18\xcf\x76\xb3\xd3\x7b\x42\xcb\x96\x28\xda\xdd\x84\xae\xab\x0c\xd0\x7a\x0d\xa6\xbe\xb0\xd0\x66\xa1\x01\x20\x1e\x39\x8e\xe3\x1b\xd5\x7b\x36\x8a\x62\x6b\x06\x70\x3c\x61\x34\xb6\x68\xfd\xc8\x2d\xb5\x4c\xce\xcb\x2f\xb7\x87\xe5\x5a\x47\x60\x09\xbf\x8e\xc9\x98\xf8\xa6\x49\x32\x89\x46\x88\x10\xa6\xf4\x50\xd2\x21\xed\x41\x73\x47\x6a\x27\xe8\xee\xf9\xf6\x38\x64\xdb\x88\x1a\xcc\x1d\x05\x19\xbc\x53\xf1\x41\x87\x36\x79\x5c\x81\x62\xff\x3d\x2a\x58\xae\x01\x75\x7e\xbf\xeb\x07\x2c\x97\xa8\x1c\x3b\x0a\xae\xc3\x35\x18\x78\x88\xd7\x35\xf5\xf7\xef\x4f\xbd\xb4\xf6\x15\x6a\x3b\x71\xef\x5c\xee\x6e\xd4\x11\xb7\xac\x79\xf4\xd4\x4d\x84\x4d\x98\xdb\xef\x6b\x19\x67\xda\x62\xc8\xb0\xfd\x15\x0a\x50\xb0\xf3\x3f\xc6\xe4\xa0\x34\x35\xbb\x56\xee\x1c\x3c\xee\xd6\x4e\x43\x8e\x25\x34\x99\xa1\x41\x04\x48\x82\x7d\x12\xbe\x09\x36\xd7\x46\xf6\xee\x6a\xf7\xd3\x6c\x60\x0b\xcf\xd4\x85\x31\x7a\x5d\x01\x3d\x5f\x6f\x08\xc1\xda\xbd\x28\x27\xd5\x39\xde\x32\x6c\x84\x30\x4e\x62\x91\x9e\x52\x36\x65\x90\xa4\x39\x05\xb3\x2d\x35\xae\x55\x5d\x74\x0f\x42\xed\x99\x28\x5b\x45\x14\x03\x5b\xf5\xdd\x40\x09\x27\x7d\xd7\xcb\x28\x00\xf6\x00\xf0\xc5\x22\x3f\xee\xcf\xa6\xaa\xf4\xc9\x55\x7b\xdc\x40\x50\xc2\x1d\x39\xe5\x37\xe2\x90\xbc\xa2\x90\x4d\x51\x1c\x4f\xf2\x42\x44\xbd\x37\x37\x57\x08\xd5\x67\x43\xab\x0b\x17\x31\x39\xec\x13\xa7\x44\x39\x28\x4d\x44\x6c\x5d\x93\x65\x91\x15\xbf\x4e\xc0\x10\x1a\x31\xa1\x31\x54\x93\x7e\xbf\xe2\x00\x4e\x55\x99\xad\x41\x60\xf2\xa5\xf6\x24\xe9\xa7\xb1\x90\x44\xc1\xb9\xe3\xfc\x06\xdf\x38\x46\xdf\x49\xc2\x18\x7e\x69\x1d\xc7\x7a\xbb\xa8\xe2\xb0\x3b\xba\xb9\xfa\xc4\x74\x13\x07\xc3\x81\x5d\x8b\xe5\x4f\x6e\xf7\x59\x5b\xe6\x5d\x63\x89\x25\x1c\x77\x2c\xa1\xa9\xec\x3c\x1a\xe0\xb1\xb5\x4e\x51\x31\x06\x1e\xc5\x35\x8d\x4a\xf9\x49\x45\x14\x2f\x8b\xc6\x05\x18\x18\x24\x0d\xaa\xa4\xb9\x2a\x1c\x1f\x0e\xbd\x39\xcf\x79\xc9\x53\x0a\x8c\x73\x4a\x21\xf7\x86\x36\x4a\x2a\xf4\x8f\x4a\x4d\xee\xa4\x0a\x85\xba\xe5\x17\x92\xab\x85\x45\xfe\xae\x42\xf6\xbe\x15\x38\x22\xf4\x57\x9e\x5a\xf3\x64\xfc\x37\x09\xee\x85\x25\xf8\x48\xa7\x61\x0b\x66\x76\x4c\x65\x20\x37\xf6\x70\x97\x36\x02\x9f\x69\x3b\xa3\xb9\x79\x2e\x35\x32\xc3\x99\x9e\x1d\x4b\x7d\x13\xfb\xfd\xbc\xea\x8c\x38\xef\x8a\xb5\x43\x6b\x96\x57\x1f\xf0\x84\x18\xac\x5c\x0c\xc3\x79\x1e\xae\x37\xd3\x2d\x4c\x5b\x5f\xfb\x8a\x57\xcd\x71\x8e\xd4\xdf\x85\x87\x06\x1b\xc6\x1a\x42\xa8\x93\x01\x68\x8a\x00\x8a\x15\xdd\x44\xc2\xa7\xe9\x91\x33\x2a\xc9\xb2\x3b\x85\x83\x96\x93\x7e\x2c\x7a\x8d\xaf\x60\x4a\x80\x9a\xf5\x2a\xbf\xc2\xa5\xea\x7b\x2d\xc5\x2f\x71\x8e\x0f\x57\xbe\xab\x85\x2a\x2f\x2e\x82\xf0\xc9\x6b\xc0\x5c\xc1\xfe\xe6\x1b\xe5\x29\x66\xf6\x95\x49\x94\x59\x88\x54\x61\x90\xae\x90\x83\x29\xc4\x00\xe5\xa4\x63\xa2\x99\x96\x00\xab\xe1\x36\x5e\x04\x89\xba\x8f\x02\x45\xf0\x91\x1b\x2e\x96\x8b\x00\xab\xc7\xf6\x69\x45\xeb\x7c\x98\x66\x85\x1c\xbe\xf8\x4e\xe0\xb1\xf9\xba\x12\x17\x4d\xe2\xde\x67\xe8\x05\xc8\x65\x37\x4f\x81\xd9\x0c\xbe\xc5\x4d\xe5\xfb\xbc\xfb\x44\xc7\xb3\x8e\xff\x9c\xdc\x44\x49\x63\x60\xc4\x98\x54\x00\x5b\x1d\x4b\x87\x85\xc8\x68\xd3\xfc\xf3\x27\x3b\x65\x6c\xe1\xe4\x5e\xcb\x75\x00\x78\xdd\x76\x72\xf4\x59\x3e\x4a\xf5\x96\x42\x96\x02\xc9\x82\xfb\x01\x49\x09\xe1\x84\x9d\xe9\x38\x9f\xf2\x8b\x9f\xc3\xc8\x09\x54\x5b\x41\xe9\x20\xc3\x4f\x63\xfd\xd9\xcf\x10\xba\x12\xdb\x9c\xd5\xc3\xb1\x53\xee\x22\x99\xcb\xad\xce\xd3\xd6\x97\xbe\xee\xba\x27\x1f\x72\xab\x3e\x4b\x67\x7d\x0e\xae\xd5\x51\xb0\x91\x0f\x81\xae\xa9\xa8\x3a\x4b\x42\x49\x7b\x70\x91\x5d\x79\x10\xa3\xc4\xc7\x77\xa0\xa8\xbe\x99\x6d\x82\x6f\x30\x32\x0c\xdd\xd2\x6d\x7c\xdf\xa7\x1d\x22\xaa\x70\x34\x65\xb0\x0c\x33\xc0\x44\x21\xa8\x80\xdc\x11\x53\xed\x60\xfa\x44\x38\xc0\xe7\x8d\x46\x93\x24\xb7\x31\xe0\xb7\x8e\xf4\xab\xfc\x25\xbe\x69\x10\x61\x6f\x27\x69\x56\x00\x14\x89\xef\x43\xb3\x2b\x9a\x0f\x8e\x28\x5d\xb9\xba\xa6\xf7\xb3\xed\xb8\x3c\x6a\x33\x10\x49\x49\xf4\xec\x3b\x4a\xce\x4e\x9f\x8a\xe4\xb0\x77\xd8\x0e\x4e\xb3\x21\xb8\xbd\x14\xf8\x40\xb7\xae\xf7\xbe\xb0\xb0\xaf\x9d\x58\xeb\x39\xa9\x9b\xe0\x53\x3b\x5d\xd9\xdc\x24\x4b\x31\x9b\x6c\xce\x12\x6a\x22\x8e\x0f\x7e\x89\x2c\x4d\x18\x4f\x36\x8b\xb7\x5d\x56\x86\x92\x65\x9b\xa5\xad\xe9\x49\x55\xee\x85\x8d\x86\xcb\xe3\x49\x58\x68\x76\xc4\xf9\x17\x23\x6b\xe2\x38\x5d\x9d\xf1\x75\xd2\xab\xc1\x26\x9f\x4c\x60\xba\x1f\x2b\x1d\xd5\x30\x1d\x95\xd1\x14\xad\x03\x81\x2a\xb4\x1c\x27\xd1\x2d\x45\x71\xf6\x91\xee\x71\xe4\xf5\x05\x0b\x72\x8d\x26\x54\xce\x5c\xef\xb7\xff\x40\xc9\xfc\x8d\x2c\xbb\x7b\x4e\xfe\xf8\x81\x8e\x2f\xc3\x3f\xa0\xc0\xa2\xac\x00\xd3\x7a\xe6\x19\x76\x97\x99\x58\x51\x0a\x9f\x94\xb4\x12\x6a\xe0\xa6\xaa\x2b\x8d\x98\xf4\x29\xa1\xae\x7c\x9a\x9e\x90\xaf\x95\xa1\x1d\x9b\x22\x8b\xc2\xb4\x5f\xe9\x14\xbe\xa8\xbb\x4e\x2e\x36\xb1\xd2\x76\xd3\xc9\x60\x58\xe0\xdc\x84\xf1\x42\x52\x1f\x3d\x45\x1c\x7b\xc0\xe2\xdc\xaa\xf6\xca\x8c\xc6\x33\x8a\x84\xf9\xae\x12\x96\x9b\xc3\x01\x27\x2e\x64\x5d\x4c\x76\x5f\xdb\xe6\x5d\x2c\x03\x98\x90\x63\x98\x03\xbe\x69\x4c\x1e\xc4\x2c\x12\x53\xad\x5c\xa9\xd2\x57\xcb\xf5\xbb\xd6\xf9\x41\x77\xef\xa6\xb6\xba\x96\x17\xb0\x3a\x3b\x55\xab\xf0\x6c\xf0\x77\xaa\x0d\xb2\x40\xe5\x44\xa4\xda\x5f\xfe\x1e\x0e\xab\x23\x3a\xce\xab\xd3\xc2\x53\x65\x25\xe9\x4d\x1c\x83\x9a\x28\xdd\xd0\x18\x8a\x04\x8e\x17\xfa\x28\x32\x93\xe4\xa1\x49\x4c\xcf\x50\x69\x59\x98\x4e\xbd\xdb\x72\x75\xea\x7b\xd2\x7e\x56\x2b\xa9\x3c\xbf\xd0\x7e\x65\x12\x85\x4b\xcb\x91\x5d\x69\xf9\x78\x95\xd7\xb3\x98\x55\xf1\x50\xf3\x51\x54\x0c\xf3\x34\x89\x0c\x10\x44\xf0\x7b\x6f\x4c\x55\x43\x22\x3e\x08\x63\x71\x5f\xf5\x1e\x95\xb1\xbd\x59\x62\x02\x7e\xf8\x04\x6f\xd0\x6e\x92\x2a\x84\xef\x8c\xb8\x02\x3f\x95\xff\x21\x50\xfd\xf6\xeb\xea\x6c\x0e\xcd\x38\x2a\x4c\x8c\x5e\x29\xfc\x38\x82\x0b\xf9\x72\x1a\x74\x04\x36\x5b\xd6\xea\x05\x82\xb6\x09\x43\x3b\xf6\x41\x17\x1b\xf7\xc0\x67\xa3\xd6\x1d\x91\xe5\x8a\xc9\x58\x6a\x4e\xd8\x2b\x69\xd5\x32\x57\xbd\x02\xb5\x33\x73\x84\xd0\x15\xd6\x99\xe5\x9e\x6b\x9b\xae\x49\x7a\xd4\x54\x55\xba\xa4\x8a\x4d\x48\x60\x91\x8d\x24\xf1\xae\x05\x46\x89\x80\x09\x7b\x01\xdf\x39\xcb\x1c\xa6\x49\x3f\x8e\xc2\x62\x46\xd5\x00\x91\x22\x43\x42\x6e\x9b\xaa\xc1\xde\xad\xf9\xb1\xbb\x77\x43\x8d\x86\x95\xeb\x2a\xea\xac\x38\x38\xde\x9e\xd6\x1a\x03\xd1\x37\xbc\xa5\xd3\xa8\xda\x11\x9b\x04\xca\x6a\xae\xc1\xc8\x0d\xf1\xd5\x40\xbd\xcf\xbb\x8d\xf8\x3f\x53\x86\x73\x8a\xf0\xa2\x4a\x04\xad\x1a\xc5\xb8\x29\xfd\x89\xf2\xa9\xf1\x4b\xf7\x94\x30\xcf\x0e\xe4\x37\xb1\x27\xfe\xcf\xa9\x62\xf2\x41\x43\x03\x3c\x28\x66\x33\x02\x6a\xee\x90\x2e\x7e\x5f\xc2\x5e\x87\x49\xbb\x88\xd4\x82\x4c\x03\xbd\x03\xba\x36\x50\xc1\xc3\x09\x01\x0f\x82\x53\x8d\x53\xd5\xb6\xbc\xad\x53\xba\x47\x0e\x36\xef\x32\xd6\xdb\x90\xb5\x95\xb4\x06\x15\x3c\x1c\x45\x4c\xb9\x9a\xf1\xeb\x75\x70\xfe\xf3\x0b\xed\xa1\x4d\x62\xcb\x58\x6b\x78\x64\x48\x79\xf0\x75\x47\xb6\x30\x19\x8c\xbe\xcd\x32\x04\x3a\xf3\x22\x4d\x33\x55\xfc\xc0\x68\x53\x82\x53\xba\xa1\x6b\x3e\x51\xf9\x39\x45\x72\x7e\x4c\xd7\xe6\x8f\x39\x33\x31\xa6\x89\xc8\xd2\x68\xc9\xcc\xa8\x2a\x50\x8b\x1e\x88\xb2\xad\x5b\x1f\xa3\xfc\x38\x8e\xad\x5f\xe9\x7c\x1a\xcf\xe9\x4a\xe9\x2a\x29\xa6\x57\x28\x39\x0a\xd1\x9b\xac\x77\x13\x86\x91\xf3\x73\x70\xbe\xdf\x53\x67\xfd\xbd\x26\x5c\xcb\xa6\xfa\x98\xe3\x58\xbe\xa0\x9a\xba\xea\xbc\x9c\x0b\x0b\xed\x28\x31\x3d\xfb\xca\x84\x04\x20\x1d\x1f\xdf\x15\x05\x1f\xbb\x52\xc9\x7b\x65\x36\xa5\x50\x15\x34\x58\x6f\x61\xbc\xa4\xe2\x5f\x1a\x6c\x09\x4e\xa8\x20\x82\x9e\x43\xd0\x2e\xf0\x27\x6a\x73\x4d\x45\xf0\x24\xcd\xed\x8c\x22\x27\x3b\xa3\x38\x16\xe0\x4f\xa2\xc1\xe5\x88\xeb\xc1\xed\x47\x26\x0f\x53\x64\x21\x10\x5a\x42\x63\x97\xaf\x11\xd8\x49\x1a\x62\x68\x32\x13\x16\x36\x23\x14\x8c\x23\x6c\x75\xd0\xf7\x3d\x7b\x9c\xf0\x88\xdf\x7f\xbd\x68\x39\xca\xa3\x34\x79\x48\xf1\x91\x5c\x0c\x1c\x77\xcb\x63\x7f\xac\xa5\xd5\x98\xa4\x16\xa1\xca\xa5\x40\x01\x44\x2e\x28\x9a\x43\x54\x47\x98\x59\x97\x41\xdc\x92\x4f\x55\x16\xe1\x4f\xa7\x1e\x50\xfd\xfa\x54\x91\x2a\xab\x9e\x6a\x6b\x88\x37\xff\x45\x47\x10\xbd\x4e\x9b\x53\x8c\xbe\x77\x31\x6d\x6c\xc3\x22\x4b\x93\x28\x64\xbd\x04\xd6\xa4\x0c\xfc\xaa\xff\xf7\xb4\xb8\xf8\x5a\xbb\xaa\xbf\x50\xf5\xaf\xf2\xc8\x30\xdc\xe3\xe3\x28\x53\x5d\xba\x44\xc4\x0a\x44\xef\x4d\xf1\xa4\x7f\x4f\x3d\x75\x3f\x4e\x53\xe0\x77\x5c\xb1\x6d\x7e\x3f\xbf\xe9\x87\xf4\x75\xd8\x59\x27\x38\x72\x14\xb5\x08\x9a\x02\xc7\x21\xe9\x19\xb2\x0f\xc3\x88\x31\xc5\x8d\xc2\x9e\x7f\xa2\xa5\x7f\x8e\xd4\xec\x70\x79\x5a\xc6\x71\xba\x42\xbe\x8f\x83\xfc\xaa\xf2\xd9\xa3\x8a\xc4\x32\x8e\xf3\x56\xf9\xcd\x4e\xd8\xd0\x45\x37\x1a\x9e\x14\x25\xe1\x64\xd4\x25\x15\xc4\x72\x88\x5c\x8f\x75\xb9\x46\xa4\xad\xda\x5b\x9e\x90\xbc\xfe\x6d\xbe\xf2\xf6\x16\x9c\x60\x06\xb8\x68\xb5\xf7\x0a\x74\xf7\x0a\x0f\x0c\x2a\x59\x1b\xaa\xf8\xfd\xdd\x9a\x23\xfb\xfc\x02\xf9\xda\x90\xa6\xdb\xe7\xc8\xb5\xc8\x24\x4b\xf3\x99\xde\x65\xe2\x1c\x84\x66\x34\xde\x7c\x54\x2e\x7a\x8e\xef\x05\x95\x7e\x2b\xa7\x45\x08\xb3\x7d\xcf\x4a\x77\x92\xe7\x51\x69\x32\x59\x53\x55\xa4\xb6\x74\x8f\x2f\x7d\x27\x12\x71\x55\x17\x3a\xcf\xd3\x96\xe6\x65\x64\x0c\x22\xdf\x28\x09\x24\x9b\x97\x07\xb1\xe9\xc1\x6e\x61\xc1\xfe\x4d\xe0\x9d\xa7\xbf\x69\x3a\x7d\xc3\x34\x12\xb8\xa6\x13\xe9\xf2\x82\x5d\xce\xb8\xa4\x2b\x89\x4b\xa0\x36\x26\xbd\x1d\x17\x6f\x3a\x49\xc2\x28\x9e\x6b\x7d\x75\xde\x67\xd5\x3c\xc1\xf3\x9f\x4f\x7d\x35\x0d\x54\x94\x82\x71\xa4\x6f\xc3\x2a\x7a\xab\x96\xc7\xfa\x55\x85\x2c\x2d\x57\x85\x48\x54\xd2\x37\xf3\x8d\x2a\x06\x17\x43\x4b\x5a\x50\xdb\x94\x87\x78\x4c\xe9\x5c\x7e\x17\xc6\x05\xf9\x92\xf3\x4a\xb2\x1c\xf2\xf3\xec\xef\x5f\xa1\xfd\x27\xe9\x92\x8a\xc6\x5d\x91\xa2\xd0\xac\xa5\x8d\x61\xaa\x58\x81\x10\x79\x88\x13\x8a\x65\xd4\xf6\x56\x22\xc1\x27\x8a\x79\x56\x35\x87\x3a\xee\x9f\x98\xdb\xe2\x68\xe0\x94\x62\x04\x01\x5a\xfe\x98\xa0\x44\x1b\x96\xf8\xca\xd0\xba\xee\x5c\xd4\x4c\xce\xa2\x16\xc3\x37\x6e\x4e\x07\x71\x54\xbc\x0a\x5a\x38\x24\xff\xfe\x40\x71\x83\xfe\x41\x13\x01\xed\xd0\xc4\xfd\x32\x42\x72\xa0\x30\x54\x64\x91\xef\xe5\x6b\x17\x02\x8f\x33\xbb\x6c\x62\x29\x37\x61\x66\xaf\x2a\x11\xd4\xab\xce\xf9\x1e\xa6\x23\xb0\x1b\xc0\xab\xe2\xea\x17\xdf\xac\x35\xa8\x87\xd8\x64\x60\x9c\xb0\x0a\x72\x9f\x77\xe0\xa6\xf2\x8d\xaf\xda\x31\xe9\x11\xc5\x10\x48\x76\x21\x86\x40\x49\xf8\x7f\x87\xd7\x85\xc2\xfd\xd6\x35\x45\x67\x91\x4e\xe0\x6d\x60\x76\x18\xf6\xc6\x37\x35\xaf\x7f\xf1\x85\x7d\xed\x30\x33\xe1\x52\x2f\x5d\x41\x3d\xc3\x31\x5a\x78\x76\x0b\x27\x1a\xf2\xca\x24\x1a\x73\xb0\xc1\x3f\xdc\xf1\x7c\x30\xbc\x5b\x60\xcd\xaf\xe8\xd6\xec\x1f\xab\xda\xcd\x38\x1a\x4b\x03\x1c\xce\x8d\x33\xaa\x06\x72\x46\x9d\xd9\x71\x14\xda\x24\xb7\xf9\xac\x57\xb2\xba\x09\xd7\x96\x6f\x68\x42\x90\xc2\x7c\x5f\xa3\x08\xdf\x6f\x2a\x21\x8e\x33\xdb\x8b\xbc\x5c\x01\x80\x10\x6f\x2b\x81\xaa\xb7\x5d\xd5\xc8\x74\x89\x10\x48\x92\xed\xf0\x10\xde\x55\x3d\xe8\x57\xa6\x8a\xa3\xf1\x4c\x2d\xed\xbc\x7b\x37\xb4\x17\x22\x4a\x58\xd0\xcf\x21\x9b\x81\xee\x5c\xbe\xae\x45\xd7\xbb\x77\xb7\xd3\x30\x9c\x64\xc2\x76\x23\xe4\xd2\x9a\x69\xba\x66\x5d\xf6\xbf\xd0\x2e\x1d\xa2\x81\x45\xbd\x03\x8f\x74\x5d\x9f\x54\xd7\x1b\x01\x58\x23\x3b\x4a\x33\xd3\x8d\xe2\xc8\x60\xbb\xe1\x74\xbd\xab\xb4\x9c\xea\xd1\xd7\xc2\x42\xbb\x58\x21\xf6\x60\x7a\x40\xc4\x31\x2c\x1a\xca\x37\x35\x3b\xbd\x67\x0f\xd7\xa5\x5a\x4e\x80\x02\xa7\xb3\xb0\x2a\x7b\xe3\x84\x4c\xcd\x36\x9d\xed\x07\x8a\x1a\x09\xc4\xbf\xa1\x6c\xb4\x6b\x3b\x72\xdb\xf6\x9c\xae\xc3\xdf\xd0\xbc\x35\x4d\x5d\xea\x8b\xed\xcc\xe6\x93\x91\x4c\xae\x64\x14\xbc\x1d\x3d\x8a\x01\xc7\x1a\xbb\xae\xd6\x23\x39\xd6\x51\x9a\xcc\x54\x60\x65\x95\xde\x0f\xbf\x53\xff\xc3\xe6\x4e\xce\x67\xdb\x07\x76\x2d\x3c\xae\xb2\x26\xdc\x19\x0f\x8e\x87\x16\x65\xdd\x31\x24\x77\xe0\x71\x62\x4f\xfd\x35\xd5\x8c\xa5\xd2\xaf\x21\xce\xe7\x15\x15\xcc\x75\x4d\xda\x7c\x5a\xf3\x8d\xdf\x0e\xca\x68\x8e\xe5\xca\xc9\x41\x13\xd8\x4f\xb9\xab\x84\xcb\x5e\xc5\x41\x7f\xa4\x79\xc7\x37\xa6\x5e\xeb\xe6\x0c\x1a\x3e\x59\xf4\x55\xb1\x70\x5e\xab\xe4\xc0\x73\xc3\x4a\xe5\xc8\x54\x7d\xb7\x42\xf7\xdc\x52\xbd\x81\x8f\xe8\x4e\xcc\x62\xbb\xef\xb4\xfb\x83\xc0\xb7\x82\xfc\x75\xa0\x78\x6d\xae\x28\x7d\x3b\xf6\xaa\x9c\x4f\x59\x3e\x33\x7f\x04\xa3\xb4\x71\x4c\x33\x44\x5b\xbb\x94\xcf\x78\xd8\xcc\x1c\x98\xe3\x85\xdb\x91\xbe\x4a\xb8\xd8\x6a\x7d\x8e\x7b\x17\xdb\x26\xcc\xd2\x9c\xcf\x6f\xa7\xf6\xf0\xbc\x57\x7b\x68\xc0\x12\x8f\x26\x79\x18\xeb\xce\x9f\x0b\xaa\xf3\xe7\xc2\xd4\xf7\x7a\x8c\x6d\x06\x19\xf0\x96\xeb\x50\x07\x2c\x8e\xaf\x1b\xe0\xa3\xed\x7c\xd2\xcd\xa3\x9e\xd7\xb0\xc4\x30\xac\x2b\x15\xda\xf5\x4a\x47\x4c\x1c\x47\xcb\x26\xd1\x60\x88\xc3\x58\x7d\x7c\x53\xe3\xba\xdd\xb3\xa7\xbd\x2a\x34\xb2\x08\xb5\xdf\x55\x90\xd6\x77\x2b\x51\xe4\xc8\xd8\x19\x25\x71\x75\x5f\x91\x2b\xae\x53\xc7\xb1\x68\xbf\x3e\xa9\xd8\xc8\xfa\x36\xb3\x49\x58\x3e\x7f\x69\xd0\x51\x98\x07\xfb\x1f\x5f\x07\x1e\xd7\xd5\x35\xb9\xdd\x4e\x13\x86\x75\x0c\x09\x25\x64\x75\xfe\x6f\x05\x6b\xdd\xd2\xf1\xb8\x2e\x2e\x3d\x61\x82\xf8\x60\x42\xdb\xf8\x45\x9d\x3d\x6c\x4a\x0a\xb5\xfb\x86\x3b\x29\xa5\x27\xf9\x38\xc2\x14\x81\x62\xf9\xf7\x18\xc7\x66\x75\x85\x8a\x94\x33\xbe\x37\xe2\x16\x3d\x92\xc0\xcc\x2b\xec\xdf\x3e\x95\x6f\x96\x6d\x32\xb1\xb3\x15\x99\xb7\x96\x52\x60\xf5\x3c\xbb\x68\x65\x14\x29\xd5\x86\x26\x80\xcc\x96\x87\x86\x2b\x8b\x38\xd8\xb5\x02\x5c\xfb\x58\x25\x9b\x8c\xd2\x2c\x9f\xa1\x51\x47\x32\x7a\xcb\x9a\x57\xc4\xdf\x41\x7d\xdc\xc2\x5f\xf6\x98\x5a\x41\x61\x68\xf3\x7c\x9b\x76\x7a\x7d\x55\xfe\x0d\x8c\x35\x9a\x6d\xd6\xb1\x31\x91\x20\xf8\xf1\xd4\xf3\xdb\xfc\x80\x2c\x99\xf0\xac\x7a\x95\xf3\xac\xb0\x80\xf4\x32\xf8\x06\x23\x26\x48\x1c\xc7\xa1\x41\xdc\xc1\xb3\x7e\x94\x7f\x3a\x55\x14\xd1\x73\x1d\xef\x58\xf2\x81\x89\x3c\xcc\x4d\x35\xe4\x39\xf1\x36\x92\xef\xab\x33\xea\x52\x3c\x6e\x39\xa1\x91\x1b\x0d\xa4\x87\x2f\xb5\xc3\x49\x51\x91\xd5\xa6\x9f\x17\x5d\xed\x7a\x2e\x75\x1e\xed\x58\x93\xac\x7c\x6a\xf7\x76\x2c\xfe\xcb\x94\x01\x9a\xa6\xfd\x4d\x7c\x21\x4e\x92\x6b\xce\x17\x59\x19\x46\xe1\xd0\x2e\x4b\x9f\xba\x48\xbd\x7a\x48\xdc\x4d\x05\x80\xcc\x27\xe1\x70\x27\xce\x08\x49\x18\xd1\x2f\x48\xef\xa7\xc7\xf2\x5f\x02\x81\xae\x38\x85\xf4\x50\x70\x83\x40\xc1\x81\xfc\xc1\x55\xac\x7b\x1c\x4b\x57\xe8\xf8\x55\xfc\xe2\x2f\x55\xf5\x9a\x59\x49\x48\xa1\xd1\x1e\x07\x8d\x85\x63\x39\x71\x47\xc9\x09\x5d\xc3\x9f\x43\x5e\x51\x74\xf9\xb4\x70\xc9\xe8\x20\x6d\x2b\x04\xbb\xf0\xbf\x91\x6a\x3f\x43\xad\xf5\xa2\xeb\xd8\x94\x24\x66\x71\x59\xdf\x2e\xc8\xd9\x40\xbe\x69\xe2\xe5\x8a\xa3\x24\x4c\xe3\x44\x35\x65\x9c\xad\xec\x5e\x05\xa7\x9d\xc4\x4b\xdb\xbc\xf3\xc9\xc2\x29\xf0\x60\x7f\xae\xe8\xf6\x2f\x07\x9e\x16\xe1\x7b\x78\x67\xa6\x6e\x98\xfa\x55\xa8\xd9\x0b\x8c\x2d\x12\x43\x68\x49\xfc\xdd\x91\x40\xd1\x06\x9e\x23\x98\x08\xff\x03\xcd\x25\x73\xfb\xa2\xb8\x2d\x9d\x90\x34\x65\x48\x7d\x7c\x27\x50\xed\x92\xb5\x45\xbd\x77\x57\x7b\x29\x89\x0a\x24\x5a\xd9\x43\xd0\x4c\xf8\xc7\xa6\xaa\x66\x76\xcb\x65\x14\xba\x93\x2c\x99\xf5\x42\x6c\xef\xe3\x23\xf8\x91\xd9\x4e\x15\x7d\xe4\xe2\xa2\x4b\x6e\x41\x67\x36\x4c\x47\x23\xcb\xfd\x3c\xc2\xd4\x46\xdf\x21\x14\x6e\x0d\xc0\xff\x41\x94\xc5\xdc\xc8\x8c\xd9\x00\x61\x37\x6b\x29\x2b\x12\x4b\xdd\x3f\x9f\xaf\x26\xc5\xd0\xe6\x11\x8e\x56\xe6\xfa\x57\xa2\xb0\xeb\x4d\x55\xb4\x3c\x8d\x7b\x73\xe5\xa3\xa1\x08\x86\xaa\x9f\x12\xb7\x17\x83\xf1\x1e\x7d\x11\x4b\x09\x4e\x55\x88\xb5\xa3\xe3\x5d\xc6\xa5\x34\x4b\x8b\x28\x1c\x2a\xe7\xb7\x5a\xaf\x56\x25\x28\x93\x85\x69\x6e\x99\xbb\xc2\x65\x40\x7c\x36\xa4\xa1\xe0\x3e\x8e\xad\xc9\xe1\x63\x48\xc1\x43\x33\x24\xfa\xf4\x4a\x94\x2c\xa7\xf1\xb2\xeb\x56\xc4\x94\x82\x9f\x14\xbb\xfe\x07\x2a\x73\xf2\x47\x5a\x1b\xe1\x62\xd3\x4e\xe9\x9b\x70\x12\x17\xab\x2d\x25\x46\x79\x4a\xa1\x9c\x4f\xd5\x00\xb7\xcf\xb6\x0b\x93\x17\x78\x52\xac\x34\xe8\x10\xf0\x75\x43\x72\x67\x5f\x3b\xb3\x31\xb3\xcc\x8a\x3e\x72\x69\x40\xf8\xba\x32\x70\xcb\x36\x8b\xc2\x25\xa5\x48\x7b\x3d\x50\x09\xc3\xeb\x9f\x4a\xdc\x16\xdb\xae\x49\x98\x91\x56\xbc\x3f\xd5\x1f\x74\x22\x78\xd8\x0b\x79\xda\x7c\x8e\xfe\x49\xce\x46\x0f\xfc\x3b\x56\x49\x3a\xb5\xbe\xf6\x15\x47\x12\xe2\x13\xb1\xc7\xd4\x1e\x9f\xe4\x36\xcb\x89\xdf\x4e\x68\xa5\xc9\xb2\x0b\xdf\x34\x6d\x78\xa1\xc3\xa2\x8d\x2d\x7c\x58\x0d\x8c\x5b\x76\x34\x8e\xd3\x55\xc9\x26\x48\x61\xc0\xc3\xd4\x2e\x4c\x3d\xd7\xcd\xaa\x99\x51\xc9\xcc\xef\x6b\x85\x88\x93\x38\x0d\x98\xe8\xc7\x6b\xbe\x44\x71\xcf\xae\x60\x96\x25\xc2\x6f\x79\x7a\xaa\x26\x3a\x6f\x88\x66\x19\x66\xec\x67\x2b\x58\xb1\x88\x0a\x26\x6d\xf2\x9c\x23\x49\xc9\xc0\xaa\x44\xda\x7a\xe0\xd9\xab\x46\x26\x99\x48\x31\x15\x07\xc0\x45\x95\x7f\x63\xcb\x2e\x68\x71\x8f\x7f\x29\xca\xb8\xb8\xc0\xc7\x9c\x6a\x9e\x13\x27\x79\x13\x67\xa3\xb8\xf0\x8f\x3b\xfb\x94\x8f\x95\xac\x21\xda\x51\xe0\x65\xf2\xb5\xf2\xa6\x46\x69\x31\x64\x3c\x27\xec\xf2\x86\x6a\xd2\xde\x50\x8e\x22\xc9\x42\xe5\x45\x14\xd2\x32\x92\x42\xc3\x5f\x28\xcd\x99\x53\x88\xfa\x1c\xb1\x96\xa3\x8f\x3a\xaf\x1b\x75\x15\xcc\x31\xcc\xac\x29\x6c\x8e\x6e\x45\xd4\x04\x19\xa7\x24\x24\xc6\x3e\xad\x52\xef\x17\x27\x29\xc6\xe8\x20\xf3\x45\x4b\x4c\xa3\x64\xd1\x50\x2b\x14\x3e\x04\xff\xca\xac\xd4\x57\x7e\xca\x55\xff\xbd\xb4\x45\x3d\x14\x7a\x96\x64\x81\x9d\x77\x8a\xb8\x60\xb6\xe3\x63\x84\xd9\x1a\x46\xbc\xb4\xc2\x23\x2b\x85\x1d\x64\x69\x41\xe0\xcd\xd7\x9d\x26\xac\xe0\x20\x8b\xc6\xa0\xb2\x12\xa5\x84\x2d\x1d\xc5\xe5\x72\x6b\xea\x0f\x8c\x43\x35\xb4\xf8\xb3\xed\x62\x68\x8a\x6d\xe5\xae\x84\xa7\xfd\xef\x02\xcf\x18\xf5\x17\xb4\x57\x36\xb8\xae\x8a\x2d\xb3\xa3\xe3\x21\x7e\xeb\xd3\xd6\x8b\x8b\xae\x72\x53\xb7\x7d\x43\x1b\x4b\x52\x13\xa9\x7e\xe6\x87\xe4\x1b\xc5\x49\x44\x99\xe2\x9e\x9d\xf3\x0d\x59\xe7\xb4\x0b\x72\x14\x6e\x17\x4c\x36\x13\x3a\xf0\x0d\x4d\x36\x32\x55\x37\x6b\xb8\xae\xbd\xbb\xf6\xb6\xc3\x34\x87\xff\xea\x48\x09\x17\x1c\x41\x61\xf0\x98\xaa\x7c\xf4\x26\x21\x86\xf1\x39\xce\x25\x6f\xed\xf8\x1c\xcc\x2d\x15\x7a\x1d\x57\x5b\xad\x67\xfb\xb1\x0d\xb9\x5c\xc2\x64\xf0\x5a\x8b\xa5\x8e\x2c\x27\x1e\xf1\x34\x8f\x8a\xc8\x73\xb8\x4a\xbd\x88\x4e\x53\xbe\x51\x05\xa7\x57\x26\x51\xc1\xfc\x5b\x92\xe7\xf2\xc9\x85\xf3\x60\x31\x82\x7b\x0b\x19\x78\x56\xa7\xa8\xe5\xbf\xf6\xec\x01\x3a\x9d\xc5\x35\x90\x08\x12\xdc\x94\xaf\x1f\xa2\x1b\x11\x3b\xeb\x98\x8a\x23\xc6\x43\xe3\xce\x69\x84\xb6\xdc\xf7\xc6\x37\xca\xc4\x0d\x86\x69\x5e\xe4\xb3\x34\x10\x8c\x86\xd5\xad\x1b\x80\x6b\x3a\x98\xac\x6f\xf0\x58\x0f\x9e\xd0\x18\xe5\x2c\x5d\xb1\x19\xda\x6d\x10\x3f\xa1\x74\xc9\xd7\x1a\x76\x92\xf6\xc6\x91\x0d\xed\x2f\xa1\x04\x6f\xa2\xce\x5b\x89\x8a\xd2\x47\x39\x20\xc1\xf3\x69\x85\xc7\x38\xad\x0a\x5d\xf9\x24\xa3\xd4\x75\x69\x64\x44\x87\x86\xcc\x0f\xdf\xac\xf9\x8c\x4b\x19\x6b\x65\x0f\x7b\x34\xea\x43\x14\x65\xe2\x44\x3e\x43\x6e\x31\x32\x21\xdb\xd6\x54\x16\x1b\xc4\x65\x18\xc6\x9d\x60\xfe\xc1\x63\xff\x2f\x00\xdd\xf0\xc7\xa7\x0a\xa0\xce\xed\x6b\x82\xc6\x6c\x39\x2a\xcf\xc7\x10\x69\xf1\xe7\x71\xda\x61\x6b\x7f\x50\xcb\xa8\x08\x4b\xd1\x2f\x57\xb3\x6d\xc8\x14\xe4\x91\x10\xc6\x32\x0c\x3d\xf0\xb1\xfa\x4f\x1a\x41\xd8\x63\x9b\x24\x16\xa7\xa3\x93\xb1\x2e\x5f\x40\x28\x01\x9f\x52\xd4\xe7\x36\x9c\x88\xf0\xab\x47\x9c\x72\x46\x8c\x6f\xa6\xaa\x2f\x61\x34\x8e\x3d\x61\xbb\xab\xd7\x1f\x9e\xaa\xe2\xfd\x61\x45\xe9\x92\xd9\x3c\x8d\x97\xb9\x11\x07\xa6\x08\x29\x08\xbe\x6e\xf0\x37\xf3\xb4\x5f\x40\xd8\x64\xd1\xb1\xa0\xd2\xfc\xb3\xae\xa0\xca\x60\xd4\xa3\xb2\x97\x5f\x6e\x17\xf9\x24\x31\xa3\x48\x1d\x39\xb7\x83\x32\x90\x93\x04\x91\x56\x81\xae\xb6\x46\x99\x18\x9b\xc8\xb5\x23\x95\x63\x20\xd6\x97\xd6\x06\x1e\xe1\x2c\x6d\x0c\xbe\x56\xf6\x69\x90\x52\x81\x51\x13\x60\x7c\x12\x28\x25\xfd\x4f\x9a\x90\x83\x63\x38\x28\xf4\x19\x61\x19\x56\xb9\xee\xf3\x6a\xe3\x8d\x6d\x52\x98\x01\xda\xdf\x19\xd5\x72\x55\xf3\x1f\x7c\x47\x8b\x37\x9d\x52\xda\xbd\xef\xab\x32\x5b\x98\x99\x7c\x88\x9f\x83\x8b\xc5\x80\x2d\xbe\xa9\x4a\xfd\xe4\x96\xdb\xe6\x5d\xd8\xee\xbc\xbe\xad\x1d\xc5\x1b\xc1\x0d\xac\x9e\xc5\x5e\x8d\x9b\xe7\xe6\x78\xcb\xf5\x79\xd8\x3c\xb7\x49\x11\x39\x5c\x05\x8b\x67\xd3\xb8\x8a\x90\x76\x05\x58\x3e\x40\x62\xd5\x21\xe5\x5c\x16\xf3\xe3\x40\xf5\x2a\xfc\x71\x53\xb9\x6f\x68\xf2\xdc\x24\x2d\xdf\x1c\xc7\x01\xb7\x60\x16\x1b\x98\x00\xcb\x59\x2c\xaa\x3c\x67\x17\x34\xcf\xd9\x85\xca\xba\xb1\x71\x8a\x62\x15\xab\x54\xc2\x14\x3a\xc9\xca\x4f\x13\x2f\x97\x82\x70\xdf\xc6\x71\x94\x44\x5a\xa8\x60\xaa\xa8\xff\x9b\xdb\xb0\x97\xd3\x28\x64\x6a\x4c\x66\xa4\x57\xc4\x7b\xa7\x6b\xa1\x51\x69\x7b\x24\x88\x63\x7d\x12\xcd\xe1\x77\x5e\x91\xb8\xf6\x4d\x4c\xe8\x62\xed\x1d\xf8\x53\x5c\xb7\x5d\x12\x4b\x0c\xfe\x10\x3e\xc1\x6d\xe5\x1f\xdc\x56\x89\xf1\x91\xc9\xf2\x61\xcb\x37\x32\x9f\x55\x4a\xea\x67\x83\x47\x95\x63\x62\x38\x8a\x85\x9b\x7d\x5a\xfb\xdc\xa7\x95\x55\xb1\x07\xc3\xa8\x10\x71\x07\x11\xd8\x6c\x29\xe1\xcd\xba\x7f\x38\x34\xc9\x40\x5c\x4a\x2c\xd3\x4f\xe0\x9a\xf3\x4d\x13\xc8\xa8\x1d\xe5\xf9\xc4\x2a\x62\xe9\xf7\xa6\x8a\x58\xfa\xbd\xa0\xa2\x20\x51\x10\xb3\x1f\x78\x27\xef\x2a\x26\xf7\xeb\x55\xc6\xed\x2a\x71\x97\xc9\xa2\x78\x75\x4e\x01\x26\x6f\x62\x0b\xc3\x5b\x9f\xe9\x78\xd1\x1a\xd0\x23\x89\x12\xb8\xf7\x1f\xce\x22\x97\x05\xaf\x39\x1b\xad\x22\x49\xce\x48\x63\xe5\x47\xa1\x2f\x11\x99\xc4\xbf\xd0\xda\x9e\xe9\x4a\x8c\x43\x9f\xe1\xf7\xaa\x00\x7d\x44\x25\x67\x33\xdb\x9f\x50\x20\xe5\x76\x2b\x4a\x0d\xb2\x21\x1a\xd2\x63\x2b\x06\x93\x44\xc3\x8c\xc4\xdd\x39\xd5\x92\x71\xae\x41\xc3\xa5\xf4\x4d\x97\x6d\x56\x44\x02\x49\xc5\xfa\xbc\xa5\x92\x3c\x75\xca\xed\x32\x22\xcc\xd2\x74\x29\x5e\x45\x94\x8d\xe0\x8d\xbb\x8c\xf9\xc6\xc1\x2f\x06\x36\x33\x71\x2f\x25\x69\x20\x41\x56\x23\x99\x09\xdc\xf9\x31\x1d\x1e\xde\x56\xd9\xb8\xa2\x48\x67\xd5\xd8\xde\x53\x04\x4e\xc7\x95\x1e\xc0\x19\x32\x7e\x8c\x35\x56\xe5\x11\x7b\x70\x4c\x75\xe6\x39\x5d\x9c\x53\xc0\xeb\xc3\x58\x26\xc8\x8d\x9c\x55\xfa\x27\x5b\x3b\x2a\xef\xa7\xbb\x62\xbb\x69\xba\x24\x74\x5a\xc8\x85\x9d\xa5\xe7\x40\x86\x1c\x89\x4c\x91\x64\xaf\x1c\x73\x71\x82\x63\x4e\x94\x35\xca\x3f\x84\x6b\xd4\xea\x28\x0a\xa9\x93\x3c\x2e\x00\xfe\xbc\x5e\x9b\xad\x3d\x7b\xda\xcb\x69\x3c\x49\x0a\x5a\xc4\x74\xdc\xba\x6e\x47\x1f\xcc\x43\x1e\x1d\x29\x9b\xdb\x8d\x94\xca\x2b\x51\x32\xc8\x5b\xad\xaf\xce\x4b\x6e\x1f\x1f\x97\x44\x7f\x13\x6f\x48\x61\x93\x9e\x28\x6c\xcf\x0b\x4c\x29\x50\xa2\xc4\x9a\x86\x21\x4b\x07\x16\xd8\x65\x71\x9e\x99\xef\x51\xa4\x53\x2b\x9d\xcd\xfe\xb4\xaa\xab\x72\x94\x4f\x1b\x8d\x48\x6e\x77\x46\x51\xfe\x5c\x57\x3c\xa3\xcc\x36\x2c\x76\xc8\x2f\x9f\xfd\xd1\xb8\x55\x69\x17\x2f\x97\x89\xf4\x91\x2b\x46\x00\x33\x36\x61\x54\xac\xce\xf9\x9c\xdc\x2d\x4a\x43\xe3\x00\xe6\xd8\x0c\xcd\x14\x37\x02\x4f\x5f\x75\x2b\x50\x18\xa2\x33\xea\x77\xc7\xe9\x78\x4e\x21\x8f\xaf\x68\x5e\xa9\x93\x2a\x9d\x06\x55\x4a\xc0\x32\x4f\x29\xad\xe7\x73\xee\x9c\xe2\x2e\xec\x99\x4a\xe7\xb5\xb7\x8d\x20\x0f\x80\xf3\x3c\xd7\x11\x28\x47\x61\xf2\x61\x44\x46\xa3\x51\x3a\xd8\xc7\x3b\x83\xcc\x12\x11\x82\x7f\x08\x5a\xc0\xf2\x40\x2a\x3c\x08\xd3\xcc\xe6\xea\x38\xaf\xea\x77\x3c\x51\x2f\x88\x3f\x4e\x06\x08\x49\xd4\x3f\x9b\x2a\xf5\xad\x3f\x0b\x14\xa0\xf9\x14\x3c\x3c\x4d\xa6\x87\xe9\x79\x04\x2a\x82\x2e\x6c\x2c\xc7\x4f\xea\xd3\xe4\xf5\xc2\x97\xfc\xa9\x5a\x47\xb3\xe0\xde\x95\xe0\xd2\xf7\xe6\xb1\xa8\x8f\x88\x58\x79\x13\x72\x98\x5c\x54\xd9\x26\xad\xaf\x7d\x85\xb1\x18\xff\x86\x7c\x7d\xe9\x6d\x2a\xb7\x3a\x7e\xe1\x68\xe9\x93\x4b\x34\xad\x7b\x85\xe9\x5d\x75\x0b\x04\x5f\x37\x64\x0c\x4c\xcf\x71\xb9\x22\x88\xe5\xf6\x7f\xbe\x51\x93\x93\x47\xc9\x20\xb6\xdb\x14\xe3\xe8\x4f\x90\x35\x74\xc1\x9f\x97\xcd\x66\x8d\x69\x47\x07\xec\x49\x67\x15\x20\xa3\xde\xd8\xb5\xff\x85\x76\x61\xcd\x08\x00\x13\xa1\x3b\x55\x3d\x9d\xa7\x82\x07\xf8\x2f\x7b\x66\xb6\x42\x60\xe0\x1b\x56\xde\x0c\xbc\x1d\x46\xe9\x5c\x92\x47\x9b\x33\x31\xf3\xfb\xdb\x99\x29\x14\xed\x06\x98\xac\x44\x93\xf1\x51\xdd\x5c\x12\x15\x15\x3f\x70\xea\x7d\xd4\x0b\x8a\xe4\x7c\x9c\x45\xcb\xa6\xb0\x0f\x79\x01\xd8\x6f\xd2\x40\x6c\x00\x44\x22\xa6\xcd\x73\x54\x7c\x6f\xaa\xea\x56\xf7\x02\xc5\x6e\x7c\x18\xef\xed\x8e\x82\xbd\x8b\xbe\x20\xe5\x74\x34\x6e\x28\x26\x70\x2e\x46\x32\xc8\x78\xb3\x2c\xfd\x8b\x7b\x77\xb5\x0f\xec\x5a\x68\x95\x27\x9e\x98\x39\x65\xf2\x94\xff\x65\xc6\xe3\xd8\xee\x28\x1f\x11\x69\xf9\x13\x40\x98\xc2\x81\x60\xee\x0a\xbe\x99\x2a\x84\xe9\x7b\x4a\x5f\x55\xd3\x85\x1f\x42\x50\x28\x65\xc8\xf2\xd9\xf9\x7b\x6b\x05\x66\x40\xa7\x42\x42\x4f\xc3\xab\x95\x62\x88\x2a\x8c\xf8\x32\x6d\x68\x13\xe1\xea\x91\xa6\x67\x95\x75\x7e\x4b\xb9\x37\x84\x75\x6a\x79\x03\x81\x93\x55\x5c\xff\x06\xee\xa0\x71\x34\xb6\x1a\xab\x74\x46\x99\xb5\x33\x8d\x82\x2e\x45\x66\x7a\x02\x91\xc0\x59\xc9\x5d\xfa\x7c\xd3\x10\xd2\x7b\x0d\x4b\x29\xf4\xdc\xc0\x14\xf2\x8d\xda\x7a\xe1\xd0\x24\xa1\x9d\xab\x90\x24\x95\x6b\x4c\xa4\xd3\xe9\x97\x84\xb9\x56\x49\x8c\xdd\x53\xcc\x90\xdb\x6b\xbd\x3f\xac\x96\xd7\xb7\x99\x95\x81\xc4\xa1\x07\xf7\x8f\xaf\x9b\x6a\x64\x45\xe9\xe5\xb6\xbc\x5f\x89\xee\x6e\xd1\x67\x7f\x4c\x69\x58\x44\xb6\x1f\x23\x07\x01\x13\x74\x4f\x99\xa3\x7b\x1a\x9a\x92\xd9\xdc\x66\xcb\x76\xae\x5c\xe8\x8a\x54\xda\x33\xe2\xb4\xf6\xee\xda\x38\xa7\x05\x69\x7f\x5e\xc1\x6d\x37\xa0\x15\xc6\x26\x31\x79\x9a\x44\xe1\x8c\x6a\xdc\xbb\xad\xa8\x3c\x90\x14\x93\xa6\xf2\x47\xdc\x69\xb5\x6c\xb3\x44\x45\x49\xdf\x54\xbd\x2c\xdf\xd4\xe5\xa0\x34\xc9\x23\x3b\x61\x9c\x34\xb6\xed\x69\x75\x9a\x5e\x24\x5b\x87\x12\xcd\x1b\x4a\xf7\xb2\x17\xe5\x69\xd6\xb3\x59\xcc\xbc\x12\xd2\x8d\xab\xb2\x72\xdf\xaf\x39\x49\x5f\x84\xb0\x94\xd8\x6a\xd8\x85\x1f\xa8\x0a\xdf\x0f\x7c\xc3\xe7\x68\x60\x93\x19\xdf\xf4\x7f\x46\x31\x4e\xb1\xa2\x1d\x5c\x84\xeb\x15\x04\x75\x5c\xac\x3e\x00\x67\x4f\xd0\x27\xb4\x92\x70\xc8\x63\x25\xe1\xc4\x23\x32\x80\x8d\x35\xec\x36\xe6\x7f\x0b\x14\xda\xba\xb5\xa6\x21\xf1\x74\x44\x08\xb1\x39\x8d\x14\x46\xe4\x0f\xab\xf4\x98\x49\xbe\x8d\x3a\x38\x5d\xa0\xf3\xcc\x33\x2e\xd0\x51\xea\xb8\x47\x75\x66\x1c\x66\x58\x0c\x83\xcf\x4a\x1c\x55\x05\x9d\x9e\xed\xdb\xb0\xc8\x69\x38\x04\xaf\xe4\x87\x63\x4b\xc7\xe7\x0d\x2f\x4f\x9f\x54\x49\x96\x6c\x1c\xdb\x83\x14\x2b\xce\xef\x77\xdd\x4e\xe5\xcf\xf1\x75\xcd\x0a\x94\x66\x23\x4b\xbd\x74\x28\x72\x79\x97\x54\x5e\xef\x52\x25\x9b\xb1\xb4\x64\x66\x7c\xd9\x87\x23\x71\x31\x8d\x6a\x45\xfd\xb4\x89\x05\xb0\x6b\x63\x8e\x8d\x04\x6c\x5f\x7a\x0e\x82\xaf\x7f\xdc\x21\x59\xa8\xcf\x93\xd4\x58\xca\xb3\x19\x35\xd0\xb7\xa6\xbe\x36\xfa\x56\xcd\xb3\xa6\xcc\xa1\x29\x83\x7f\x2e\x57\x82\x04\x91\xb3\x11\x7c\x53\xfb\xd4\xfc\xfe\x76\x77\x52\x14\x36\xeb\x9b\x42\x15\xc1\xee\x6a\x7a\x1b\x1c\x38\xa8\x52\x9e\x72\xe2\xe0\x45\x3a\x9a\xf3\x43\xf4\x81\xee\x1a\x07\x44\x48\x14\xac\xa9\x5d\x5f\xaa\x47\xc8\x47\x49\xba\x54\x33\x24\x8c\x63\x13\x96\x9e\x79\xb9\xea\x60\x66\xde\x53\xaa\xaf\x87\xc8\x7b\x12\x5e\x60\xff\xb9\x9e\x29\x4c\xd7\xe4\x56\x1f\x27\xeb\x8a\x4f\x63\x5d\xb1\x55\x92\x37\x00\x27\x15\xc6\x1d\x42\x06\x7c\xad\x22\xf1\x6e\x9c\x86\x04\x5f\xc0\x44\x9e\xf7\x82\x0b\x5f\x79\x9c\x0a\x1d\x58\x4a\x37\x75\xab\xe8\xbd\xe9\x7f\xf6\x29\x25\x64\xd3\x1b\x45\x49\xe4\xe9\x60\x5c\x82\x84\xc5\xe7\xf9\xa6\x29\x06\x1f\xd8\x51\xde\x4d\x97\x34\xc6\xee\xba\xc2\xd8\x5d\x6f\xec\x2a\x8e\x0d\xe0\xe0\xe8\x42\xd8\xda\xd1\x0c\x5c\xf4\x83\x40\x30\x5d\x73\xa1\xc1\x8a\x49\x7c\xa4\xcf\x54\x6c\xf4\x2b\x42\xcb\x56\xcf\xc7\xf4\xec\xc8\x24\xbd\x0a\x5f\x3f\xf3\xf6\x88\x8c\xc8\xe3\xbe\x95\x2e\x27\x25\x98\x9e\x46\x2d\x54\x65\x3f\x37\x2f\xca\xbd\xbb\xf6\xb6\x4d\xbf\xaf\xd8\x59\x81\xe7\x82\x3f\xca\xd7\x2e\x27\x60\xa8\x18\x9b\xab\xe6\x39\x46\x6b\xf2\x4d\x25\x27\xba\x9a\x2e\xcd\x96\xc1\x2a\xd3\xd2\x81\x4b\x42\x73\x32\xca\x3f\xb4\x9c\xd8\xdd\x79\x7f\xc0\x0c\xed\xc8\x32\xb4\x5d\xda\xc4\x55\x2c\xbe\x8d\xd6\x06\x32\xfb\x28\x53\x88\xd7\x22\x8f\x9a\xa4\xd9\x48\xfa\xfc\x60\x59\xcf\x6b\x76\x92\xf3\xbe\xb9\x20\x8d\xa3\xa2\x3b\xc9\xd2\x19\x85\x94\xd3\xeb\xfa\x2d\xcd\xc2\x76\x45\xc1\x38\xcc\xd8\x64\xc5\xd0\x46\xc0\xc1\x09\x21\x4b\x69\x64\xe4\x94\x2f\x1f\xcc\xd5\xc3\xca\xc1\x15\x57\x40\x9a\x0a\xba\x99\x2d\x86\x99\x40\x3b\x05\x04\xd9\x72\xbd\xd5\x5b\xd6\x36\x27\x13\x9e\x5f\x68\x9b\x41\x16\x81\x92\xdc\x92\x75\x74\x60\x07\x97\x8f\xe2\x2a\x06\xec\xd7\x4d\xe5\x7c\x73\x23\xf4\x43\x3e\x68\x3b\xcb\xc9\x0b\x98\x93\x9f\x04\x4a\x32\x8b\x09\x81\xc4\x1a\x95\x2f\x23\xbd\x0e\xa5\x91\xe7\x6b\x5a\x5e\x40\x36\x1e\x9d\x7a\x57\xea\x8f\x71\x22\xa1\xc2\x7b\x13\x73\x87\xa3\x8f\xfb\x5a\xb0\x97\x2f\x29\x0f\xae\x9f\x66\xa1\x54\xf2\x2a\x6d\x50\x62\xbf\x9d\xa0\x7b\xd4\x2f\xf2\x39\xd5\xf6\xc0\x7a\x56\x0e\x17\xe4\x4f\xd0\x37\x02\xdf\x7a\xf1\x06\xbc\x07\x3c\xd2\xa9\x5a\x9a\xe6\xf9\x85\x76\xcf\x52\x70\x12\x2d\x8b\x9b\x2a\x42\x3b\x4a\x53\xf5\x5c\x55\x89\x26\xca\x1e\xf6\x1e\xcc\xdc\x1a\xf5\xe1\xc2\x1c\xb0\x02\x82\x20\xd3\x7d\x0f\xc1\xc9\x8a\x92\xfc\x6d\x1d\xd1\x3c\xb8\xe6\x81\x64\x3b\x50\x37\x90\x7c\x16\x0d\x8b\x28\xbf\xab\x32\xcf\xdb\x9a\x20\xea\x8e\x26\x7c\xdc\xb2\xf6\x69\xac\x1a\x03\x9b\xd8\xa4\xb0\xe1\x10\x44\xf1\xd8\x12\xa7\xa7\x3e\x3a\xb9\x3c\xf5\x88\x00\x26\xb4\x15\xa2\xe5\x87\x3d\x02\x7f\x6c\xc8\x74\xb3\x88\x0d\x59\x78\xa7\x8a\xe9\x15\x32\x2b\x42\x37\x4d\xa8\x99\x83\x63\x85\x48\x68\x62\xd7\x6f\x0a\x26\xd0\xb8\x43\xdb\xdb\xd5\xbe\x54\x21\x4c\xa5\x9c\x43\x33\xe1\xaa\x76\xeb\x4b\x5f\x67\xf3\xfc\xad\xc0\x9b\xea\x6f\xd5\x9c\x87\x03\xbb\x5e\x6a\xaf\x44\xa2\x9d\x0f\x8f\x08\xfc\x97\x7c\xdd\x80\xa8\x2a\x43\xc2\x55\xd5\xf4\xf1\x7d\xac\x7f\x81\xf7\x34\xb4\x40\x99\xf1\x38\x4b\x0f\x46\x23\x69\x0f\x46\x76\x04\xed\xc1\x7c\x3d\x55\x8c\x57\x51\xc1\x48\x7e\xd5\xe5\x2d\xef\x7e\x58\x6b\x17\xde\x54\x0a\xb1\xe5\x79\x9d\x6f\x53\x60\xb2\x40\xc9\x63\x9f\xc7\x57\x70\xef\x36\x4d\x19\x30\xc8\x1b\x53\xa5\x7e\xc8\x6d\xf7\xdc\x7b\x5c\x9b\x40\x04\xa4\xa3\x68\x32\xe2\xf0\x08\xa1\x02\x42\x08\xbe\x56\x20\xc0\xc2\xa6\xbd\x34\x33\x49\xa4\xd8\xbb\x2e\x28\xbd\xe1\x2a\x1b\x75\xcf\x66\x4f\x2b\x99\x84\xab\x14\xd0\xc1\x86\x7e\x4f\xb5\x1b\xbd\x05\x43\x85\x5e\xd7\xdb\x28\x4e\x3b\x13\x56\xee\x14\x06\xa7\x53\x86\x00\x27\xcd\x61\x2a\x7a\x23\x69\xf6\x3a\xef\x47\x55\x1b\x9c\x67\x2b\x36\xa4\xf8\x09\x15\xba\x8f\xe1\xcc\x4b\xdf\x5f\xb9\x80\x04\xcb\xda\x7a\x71\x91\x5b\x19\x0e\x53\x56\x1b\xc3\x78\x0e\x3b\x1b\x01\x01\x2a\x1d\xc2\x7d\x40\x23\x25\x82\xbe\xe4\x87\xe1\x5f\xee\x63\x11\xc3\x00\x3c\xb1\xd6\xfa\xda\x57\xb8\xc2\x71\x6c\xfa\x19\x85\xd8\x4c\xf2\xa8\x67\x95\x93\x83\x34\xd9\x51\x9d\x33\x3b\xea\x4a\x88\x99\x4d\xb3\x81\x49\x7c\x7b\x82\x34\x40\x28\x76\xe0\x0b\xaa\x08\x95\xdb\x1e\x53\x76\x38\xe4\x9c\xeb\xca\xba\xa0\x95\x87\x4e\xa9\xec\xe9\x97\xed\x0a\x01\x65\x05\x42\xa8\xb4\xe0\xd8\x2d\x46\xd2\x65\x76\xcd\x43\x88\x7f\xa5\xe3\xcb\x65\x6f\x00\xf3\x26\xe4\xfa\xe5\xe0\x4a\x99\xc0\x37\x63\x66\x26\xe9\xa5\xa3\x78\x15\x39\x65\x27\x14\xe3\xc8\x40\x2e\xe8\x5e\xa1\xbb\xb5\xf2\x47\x19\xee\x66\xe9\x80\x94\x17\x5b\x8e\xea\xe7\x9c\x42\x56\x9d\x53\x6f\xb4\x5a\x70\x32\x81\xf5\xbf\xe9\x99\x9c\xce\xb2\x13\xfd\xbd\x53\x91\xd1\x50\x75\x85\xcb\x0d\xe5\xc8\xe7\xda\x23\x02\x79\x29\xc2\xac\x13\x28\xd9\x3b\x0d\x69\x87\x40\xbb\xa9\xe4\xdc\x43\x33\x1a\x9b\x68\x90\x40\x79\x58\xa8\x3f\x68\x75\x61\x8b\xfd\x56\x85\x14\x44\x09\x09\xfd\x96\xf3\xdd\xba\x36\xb1\xa6\x18\x92\xc5\x76\x9d\x7e\xcf\x0b\x92\xe8\x0e\xa1\x99\xe1\x5c\x7d\x88\x09\x13\x9e\xc7\x27\x3c\xf6\x7d\x94\xab\x16\x7f\xc7\x09\xb9\x67\x8f\xfb\x5b\x71\x45\xc3\x74\x34\xa6\x6a\xed\xc0\xcb\x4f\xfc\xee\x63\x68\xf3\xe1\x9b\x5a\x37\xe6\xb3\x14\x0c\x2c\xb9\x93\xc0\xb1\x34\xab\x7a\x49\x43\xb3\x79\x6c\x8d\x78\xc7\xbc\x46\x83\x0a\x7e\xbe\xce\xb3\x38\xdf\x36\x71\x6c\x1c\x4e\x53\x78\x08\xcb\x77\x12\x82\xc2\x86\x56\xbb\xd8\x1a\x7f\x4a\x61\x01\x7f\x1c\x78\xe0\xc8\xc7\xce\x75\xcd\xd2\x49\x21\xc8\x37\xec\xfd\x75\xdd\x00\x38\x43\xab\x1e\x38\xac\x1b\x2a\x2c\xeb\x66\x26\x21\x82\xfc\xf2\x39\x10\x1a\xfe\x09\x59\x1f\xbe\x6e\x00\xc9\xf5\x63\xf3\x85\x96\xcf\x15\x7f\xa0\x83\xa4\x0f\x6a\x4d\x44\x07\x76\xb5\xd3\x28\x56\x4c\x76\x6f\xeb\xee\xf3\xb7\xfd\x42\xc9\xa2\x7c\x29\x5e\x9d\xf1\xf8\x26\xd4\x6d\x70\xd4\x7c\xa4\x2a\x6e\xeb\x68\x76\x90\x72\xd9\xb0\xa5\x98\x3c\x7f\x42\xd8\x5b\xc9\x81\x3f\xe5\x97\x72\xb9\x32\x0a\xc2\x99\xed\xf0\xd0\x9e\x6b\xba\xff\xe9\x74\xe0\xbb\xef\xae\xe8\xb6\xda\x93\x2a\x2f\xf5\x56\xa0\x8e\xbc\xdf\x9b\x2a\xe2\x9f\x33\xb0\xf9\x28\x2a\xff\x87\x5a\x44\x35\xbf\xbf\xdd\x33\xbe\x75\xdf\x59\x8e\xd2\x08\x23\x1d\x0b\x40\x08\xec\xfc\x9d\x40\x94\xf9\xbd\xd7\x6d\x62\xea\x5a\x11\xf8\x12\x7d\x8d\x43\x4c\x39\x5e\xae\xeb\x1a\x3c\x34\x19\xdb\x2c\x4a\xb3\xa8\x58\x25\x26\x1f\xd0\x0a\x9c\x26\x93\xc2\xd7\x7a\x88\x4c\x5e\x44\x03\x83\xba\xbd\x03\x02\xa3\x88\xc5\xd7\xae\xe1\x79\x29\x49\x57\x48\xff\x43\x92\xd4\x2d\xc7\x45\x3a\x0b\xca\x54\xd7\xef\xe0\x39\x65\xd8\x55\x02\x25\xcd\xe3\x20\xcf\x42\x6b\x31\xa3\x18\xf1\x06\xe7\x14\x23\x6c\x3e\x34\x99\x1d\xa6\x71\xcf\x66\x68\x85\xe7\x66\x87\x6a\xe3\x43\xf9\x7b\xcc\xa1\x1f\x28\x0d\xcb\x73\xb5\xfe\x94\x7d\x8e\x14\xc4\xc7\x26\x49\x5a\x0c\xa3\x64\xb0\x43\xa9\x61\x9c\x26\xcf\x40\x12\xbf\x2d\xcd\x53\xa5\x38\xce\x5b\xae\x07\xf9\x4f\x68\xe5\x60\xe6\x0e\x2b\x17\xf2\x3a\xea\x4f\x42\x6f\xe4\xf8\x68\xc7\x11\xc8\x22\x68\x53\xa0\xf9\x7f\x1d\xab\x87\x6f\xdc\x38\x27\xa1\x31\x48\x91\x62\x1b\x5c\x0a\xb4\x98\xe3\x4f\x69\x26\xa5\x0e\xf8\xa4\x4a\xac\x31\xc7\x6c\x3e\xa7\xfa\xb2\xe9\xc1\x10\x5a\xef\x80\x49\x44\xe6\xff\xc6\xd4\x93\xb1\xe0\x24\x40\x30\x7a\x5b\x37\x0f\xda\xe8\x55\x92\x57\x52\xb8\xa4\xdb\x1a\x97\x74\x5b\x67\x61\xca\xf1\xcc\x1f\xa0\x9f\x80\xfb\x0e\xef\x12\x83\x3b\x03\x9e\x48\x51\xe8\xf1\xfc\x5a\xbf\xa7\x32\x06\x47\xe1\x9d\x38\x4d\x5d\xdf\xfd\x7f\x81\x5a\x59\x11\x13\x1d\x9b\xfa\xd4\xa1\x76\x3f\xf3\xb1\x4d\x48\x28\xe3\x25\xce\x10\x1c\xd6\xe9\x82\x37\x75\x8e\x44\xc0\x05\xf0\x53\xaf\x06\x4a\xc8\x7c\x6b\x47\xa5\x33\x2e\x90\x83\x05\xcf\x44\xe3\xf8\x57\x4c\x11\x0e\xb7\x95\xdb\x05\x6b\x0e\xba\x3b\xf0\x02\x81\x6f\x46\x46\xfc\x2e\x3d\x2a\x5e\x14\xb2\x46\x48\x2e\x5e\x9a\x2a\x2d\xef\x5b\x4d\xc2\x37\xa6\xd7\x83\xeb\x70\x40\x20\x20\x1b\x0a\x02\xb2\x51\x33\x34\xff\xa0\x1d\x47\x49\xcf\x26\x39\x93\xc3\x20\x93\xb5\x15\xbe\x1f\xc2\xac\x35\xa5\xee\x7b\x53\x37\x3b\x1c\x71\xec\x8c\xcb\x51\xcf\xa6\xa1\xc9\x73\x5b\x14\x0c\x24\x75\xda\xda\x0e\xc2\xb1\xae\xe0\x17\x2f\xec\xdd\xaf\xfd\x0b\xe4\xef\xe1\x9c\xbe\x87\x9f\x40\x81\xfb\x5a\xf0\x2b\xd5\xf2\xd7\xe2\xde\x45\x09\x10\x1f\xa3\xed\x82\xb2\xc1\x74\xaa\x98\x94\xc1\x2f\xe0\x0a\x7c\x7b\x77\xb1\xab\x8b\x11\x96\xfa\xae\x42\x10\x7c\x32\xf5\xc4\x45\xc7\x69\xea\xe0\x73\x1f\xa3\x9d\x8a\xd8\xf8\x22\x78\x09\xf1\xe6\x97\xb5\x2f\xff\x21\x0c\x07\x23\x87\x75\x5c\xbf\x46\xd2\x98\x72\x74\xd3\x1a\xd5\x20\x5e\x9c\xc9\xb7\x15\x1d\xa4\xc9\xf3\x34\x8c\x4c\x21\x5b\x07\x46\xe2\x47\x53\x45\x54\xfd\x23\x77\x04\xf6\xa3\xd0\xf9\xd6\xf0\xa9\x50\xf6\xe4\x6b\x55\xbd\x09\xe3\x34\xb7\xf1\xea\x9c\x6f\xc4\xb8\x4b\x8e\x04\x5b\xd0\x40\x69\x27\xa2\x54\x8e\xd5\x36\x07\x9c\xad\x34\xaa\x37\x16\xbe\xd2\x11\x74\xa4\xb8\x73\x3b\x50\x20\x75\x61\x73\x13\x31\x12\x2f\x07\x65\xb8\xad\xa7\xc2\xba\xca\x37\xaa\x5b\xe1\x73\x5f\xf9\xf5\xc5\xaf\x7c\x69\xe1\xef\x96\x8f\x8a\xac\xcc\x1d\xad\x68\x72\x81\xbc\x41\x24\xb2\xbf\x13\xb4\x9e\x79\x86\xed\xe1\x19\x9a\x4d\x24\x7e\xae\x4d\xbd\xc4\xf4\xa9\xa0\x9c\x0d\x26\x82\x86\x01\xe5\x5d\x05\x27\x15\x21\xe6\x39\xf8\xf8\x78\xe9\x0a\x74\xef\x6d\x6a\x46\x45\x60\x7b\x14\x27\x15\xd6\x15\x93\x83\xe3\xd8\x3a\x8c\x79\x66\x98\x4d\xa0\x5a\x37\xd1\x8a\x2e\x64\x3d\x2a\x53\x0a\x8d\x22\xb8\x12\x6f\x13\x72\x40\x7e\x90\xb2\x91\x78\xc3\x5f\x60\x85\xe3\xe6\xde\x54\x69\x5d\xbf\x4b\x2b\x16\x56\x78\xb6\x83\x31\x67\x96\xc0\x8e\x5f\xbf\x3f\x0b\x28\xeb\x23\xc5\x2d\x9f\xd0\x4a\x57\x92\x4d\x4d\x5e\x3c\x38\x98\x90\xc3\xb4\xa6\x9c\x56\x4b\xf9\x6e\xfc\x0f\x53\x0d\xf5\x5b\x36\x08\x57\xa4\x5c\x4f\xe3\x26\x02\x0c\x75\xc9\xca\xf9\xb6\x8d\x8a\xa1\xcd\x66\xcb\x21\x15\x1d\xa9\x96\x83\x6b\x33\x49\x11\x90\x06\x87\x68\x0b\x0b\x05\xc1\xd3\x9a\x65\x88\x4a\x22\x71\xb4\x04\x05\x40\xd1\xd0\xf7\x36\xf5\x7a\x93\x62\x57\x19\x9b\x4e\xc6\x8a\xa6\x19\x89\x20\xbe\xd6\x69\xff\x34\xe9\x3d\xea\x41\x1d\x6f\xd2\x38\xf3\x00\x62\x6a\x38\x84\xa6\x89\x75\x08\xd9\x72\x61\xe0\x44\x9f\x05\xd2\x9d\x19\x55\x03\xef\x8f\x61\xe9\xb2\x4a\x3f\x32\x70\x02\x56\x28\x5f\x44\x16\x5f\x4b\xa5\xbd\x68\x21\x89\x7a\x74\xb9\xa8\x9d\x4c\x9c\xa7\x25\x6a\xad\x3d\xa1\x41\x95\x43\x43\xba\xe1\x2d\xa7\x84\x7e\x08\xd3\xc2\x37\x9a\x81\x3c\xcd\x58\xfb\x9c\x55\x4d\xc8\x3c\x88\xc2\x49\x83\x76\x58\xdf\x44\xb1\x84\x88\xbc\xdb\x95\x0a\xf5\x6b\x58\xf6\x88\x7d\x8f\x34\x15\xd8\x56\xd2\x6c\xc9\xf1\x96\x62\xdb\x5e\x56\xf4\x50\xd0\x84\xc3\xef\x5f\x56\x8e\xc5\xc8\x9a\xbc\x74\x2c\xb6\x6b\xdd\xc6\x13\x81\xea\xfd\xf8\x78\xaa\xba\x42\x58\x49\x07\x0e\xfb\xfd\xa9\x2f\xee\x5c\x25\x37\x55\x69\xf3\x89\xec\xe3\x89\xa9\x62\xd2\x01\xc4\x54\xc1\x4a\x41\xdf\x26\x18\xe9\xcd\x24\x7c\xc4\x63\x97\x8f\x6d\x18\x99\x38\x7a\x55\x02\x37\x9c\x04\xc0\x63\xf1\xb5\xaf\x85\x10\xad\x88\xe9\xa2\x7e\xfc\x92\xe3\xeb\x2e\x1f\x54\x78\xbc\x2b\x79\x5c\x57\xd8\x95\x62\xb9\x77\x09\xbf\x8f\xb9\xe5\x7f\x08\x7c\xaf\xe1\xeb\x53\xd5\x75\xf2\x8b\x40\xe9\xd1\xfd\x02\xc3\xe3\xc4\xe4\xf6\xec\x71\x7c\xe9\x2d\xff\xff\xeb\xec\x3f\xf4\x9e\x85\x89\x57\x4c\x06\xec\x00\x46\xfb\xaa\x22\x71\xb8\xea\x55\xb0\x6c\x5e\x88\x2f\xf8\x12\x7b\x14\xef\x4e\x95\x7b\xf1\xae\x57\x11\xb6\xe1\xa4\x8c\x3e\x66\x55\x5d\xe0\x2a\x0e\x27\x21\x7e\xf1\xb5\xae\x37\xe8\x79\xc5\x14\x35\x64\x2e\xc7\x99\xed\xd9\xd0\xe6\x79\x0a\xc4\x08\x0e\x0d\x80\xe4\xf8\x3a\xd0\x91\xa1\xed\xfd\x32\x75\x4c\x07\x9b\xb3\xb1\x49\x22\x14\xe5\x61\x9e\x38\xef\x2e\x37\xe5\xd7\x73\x1b\x70\xad\xb8\xfa\xc5\xf6\x60\x62\x32\x93\x14\xd6\xf6\x80\x60\x84\x85\x7c\x6d\xaa\x9c\xf6\x8f\x30\x5f\xb0\x39\x88\x27\xa4\x85\x4d\x91\x2b\xd8\x3c\x8f\xd2\x84\xc8\x15\x24\xaa\xa3\x2f\xe4\x1b\xda\xbf\x08\xdf\xb7\x75\x3c\x69\x27\x33\x88\x89\x2a\x5d\xb9\xe1\x39\x7f\xfa\xa9\x0a\xe7\x26\x4b\xd2\x18\x46\x04\xfb\xe5\x8a\x66\x3a\xbc\x52\xcb\x5f\xbd\xb8\xf8\x79\x39\xb8\xe9\x43\xae\xf7\xd2\xf7\x61\x2a\xf8\x5f\x62\x8a\x28\x5c\x02\x94\x12\x6f\xfc\x9e\x42\xe2\xbe\xd7\xa4\xeb\x5f\x06\xfe\x6e\x5f\x22\x23\xf6\x3b\x2a\x3b\xf6\x3b\x0d\x6d\x8b\xed\x61\x34\x18\xda\x0c\x4d\x48\xf0\xba\x6e\xe2\x8c\xe3\x1b\x65\xf4\xc7\x61\x17\x25\x61\xf8\x43\x87\xe8\x71\xf8\xda\x13\x74\x82\xf2\x96\xf3\x27\x4e\x57\xce\x91\x64\x33\x84\x0b\xe8\xc3\x43\x53\x1f\x35\x53\x8c\xbd\xcc\xc0\xa8\x72\x9a\xb1\x07\xde\x50\x55\x8d\x37\x02\xff\x30\x45\x3a\xe6\x7c\xba\xf3\x93\x5d\x29\x81\xa5\xda\x51\x4e\xfa\xa0\x56\xf9\x7d\x7e\xa1\x1d\xa7\xc9\x60\x4e\x73\xbd\x80\x80\xd5\x01\x0d\x5c\x3a\x1f\x31\x3e\x02\xe4\x07\x69\xb9\xc0\x67\x38\xe4\x8a\xfb\x23\x93\xb0\xa2\x82\x50\x53\xfb\x10\x6d\x7b\x47\x65\xbf\x5b\x6b\x9b\x3b\xe7\xe6\xf7\xb7\xd3\x65\x9b\x09\x14\x16\x76\x00\x79\x3f\x9d\x03\xd4\xd1\x41\x12\x2d\xcd\xf8\xaa\xfc\xd6\x35\x9f\xc0\xda\xa0\xca\x25\xed\x87\x2f\x3e\x06\xa9\x1a\xfa\x91\x28\x29\x0d\x52\x8c\x4e\x26\x8c\x98\xb4\x40\xd3\x30\x23\xc5\x75\x55\xa5\xe9\x3e\xa8\xad\x93\xfd\x2f\xb4\x7b\x26\x5e\x62\x85\x16\xf8\x53\x4c\x1b\xcd\x37\xea\xc4\x0c\x4d\x1c\x33\xdf\x1e\xd6\xdd\x21\x55\x56\xdc\x80\x61\x15\x57\xb1\x1c\x50\xbe\x86\x35\x13\x16\x04\xdf\x23\x72\xa1\x49\x9c\x79\x5f\x3b\x4f\xcc\x18\xf5\x1d\xd7\x8c\x52\xce\xb9\x34\xa3\x78\x16\x8f\x51\x94\xd8\x6d\x9a\xd5\x10\xcf\x2d\xa1\x00\xa6\xce\x05\x09\xbe\xf7\x1c\x22\xb3\xca\x59\x7d\xc9\x01\xc4\x7d\x55\x67\xc5\xc6\xf1\x4e\x45\x5e\xfe\x01\xad\x74\xd6\x6f\x99\x2a\x25\xb9\xab\xe4\xc2\x01\xab\x74\x11\x4e\xb5\x90\x9d\x50\xac\x06\xbb\xc8\xa2\x06\x02\x2c\x69\x7d\xed\x2b\x4e\x63\xbb\xf5\xe2\xa2\x6f\x47\x70\x10\x9d\xdb\x34\xb4\x02\xac\x6f\x39\x46\xa4\xd6\x1a\x0d\x8d\xd0\xa9\xd2\x98\x3b\x06\xa9\x03\xbb\x5c\x70\xd7\x44\xb4\x52\x64\x70\x25\x32\xd5\xb1\xad\x85\x5b\xcf\x37\x51\x12\xa7\x07\x57\x07\x55\x86\xa3\x73\xea\x44\x3a\x17\x3c\x10\x95\xa7\x4e\xff\x1f\xb5\xff\xf1\x03\xf4\x64\x42\x95\xe2\x39\x13\xfe\x1e\x02\x6b\xc9\x38\xb9\x0f\xcf\x7f\x76\x8d\x06\x05\x69\x86\x3b\xe4\x69\xc2\x94\x7f\xae\xa3\xb8\x6d\x1e\x23\x84\xb6\x2b\xa5\xef\x15\xe0\xe0\xfd\xc6\xbe\xc1\x3c\x1a\x24\x42\x8a\x0c\x9b\xc1\x00\x43\x29\x60\xd0\x4f\x62\xbe\x4f\xe9\x56\x04\x1b\x9a\x49\x6e\x1f\x05\x36\x47\x78\xc0\xe8\x8f\xa5\xb3\x55\x61\x0c\x67\x10\x25\xe2\xc9\x8f\xc2\xc4\x20\x14\xfa\x08\xed\xb5\x15\x9a\x10\x78\xd9\x87\x55\xcb\xec\x3d\x45\x0e\x7c\x19\xbe\x30\x7f\x9c\x34\x37\x58\xf9\x12\xe6\x1a\xf8\x10\x9c\x6e\x2c\xfa\x18\x28\xe3\xb3\xa1\x44\xaf\xbb\x51\x3a\xc8\xcc\xb8\x34\xfb\x58\xfd\xa8\x38\x71\x44\xc7\x37\x4d\xae\x69\x3e\x49\xba\x51\x86\x16\x47\x2e\x7e\x69\x2c\xd3\x05\x97\x6b\x0d\xd3\xa4\xb0\xa3\x71\x9a\x99\x6c\x75\x56\xab\x37\x94\x2f\xb7\x01\x12\x75\x9c\xef\x27\x14\xf5\xc3\xcd\xe9\x13\x9a\xcd\x40\xf0\x59\x7b\xf6\x34\x77\x8b\x3d\xa2\x2c\x4e\x3e\x7c\xb0\xb4\x7e\x42\x18\x5c\x6e\x10\x91\x5f\x72\x98\xca\x97\x1c\x96\x9f\xa6\x08\x51\x30\xc0\x71\x8e\xed\xd8\x97\x6e\x03\x45\x58\xf5\xed\x69\x19\x8b\x55\x14\x2c\xf9\x1f\x6a\x67\xfc\xde\x5d\xed\xc9\xb8\xc7\xb9\x5f\x25\x85\xa8\x6a\xe3\xeb\x4d\x5a\xed\x85\xcd\x0b\x45\x6c\xb4\x81\x90\x54\xad\x9c\xbd\xae\xc4\xe5\xcf\xc3\x77\xab\xf5\x9a\x22\x2a\x58\xce\x55\x12\xba\xe5\x9f\x4a\xa2\x57\xb5\x5e\xa4\x09\x15\xd1\x48\x74\x52\x9a\xcf\x69\x80\x34\xb1\x1d\xc6\xe4\x68\xa5\x8d\x61\xea\xbb\x20\xee\x6b\x7c\xc8\xd5\x40\x35\x8d\x1e\x25\xfb\x84\xc5\x79\x3e\x50\x85\x44\x8c\x2f\x5e\xf0\xc1\xaa\xa0\xb7\x7a\xb8\xcc\xda\xb1\x64\xce\x99\xa2\x9c\xb6\xb3\xd0\x95\xfb\x5c\x49\x96\xca\xc9\xeb\x86\xc6\x9d\x99\xaf\xe9\xda\x88\x06\xa9\x30\x56\xc1\x37\x19\x73\x98\xc8\x37\x95\x06\xa2\x01\x0b\xb6\xbb\xc8\xd4\x7d\xe8\xc2\xa7\xb2\xa0\xac\x0c\x6d\x69\x3f\x67\x35\xd3\x5f\xcb\xe9\x57\xa1\xb9\xcd\xe9\x7b\x79\x02\xb9\x9f\x36\x11\xe5\x7d\xbe\x9d\xa7\x83\x81\xee\x88\x46\x05\x45\xd8\xcb\x1a\x9a\x1f\x7b\xa6\x30\x9f\x4e\x31\x22\x00\x9c\xcc\xc4\xe3\xe1\xac\x0f\xcd\x4f\x50\xb1\x07\x27\x15\x3c\x0f\xf8\xec\x5c\x49\x44\xe0\xb2\xa5\xf3\x94\x6a\x02\x40\x1d\x96\x02\xd5\x72\x71\xba\x42\x59\xe9\x47\xe2\x4b\x81\x48\x90\x2f\xad\x03\xe3\x32\x3b\x32\x4e\x36\x52\xd4\xaa\x69\x55\x48\xd7\x88\x2f\x5f\xf4\xd3\xcc\x66\x93\x24\xf9\x7f\x48\xfb\xd7\x18\x49\xae\x33\x3d\x10\xee\xce\xaa\xea\x6e\x36\x2f\x62\x4b\x94\x34\x63\x7f\xf6\xe4\xcc\x08\xa6\x0c\xc8\xfc\xc6\x9f\xfd\xe3\x83\xb1\xd8\xc8\xad\x2a\x89\xd3\x85\x51\xb1\x51\xdd\x43\x8e\x89\x5d\x80\xa7\x32\x4f\x65\x06\x2b\x32\x22\x15\x11\x59\xc5\x22\xfc\xc3\x30\x16\x8b\xfd\xb1\xf0\xae\xe1\x5d\xd8\x58\xc3\xc0\x8e\xc7\x0b\xc3\x6b\xc3\xf6\xec\x78\x76\xbc\x9e\xb1\xb2\x28\xcd\x8c\x24\xcb\x23\x51\x12\x45\x89\xe2\x45\x7d\x6f\xf6\xfd\x7e\xbf\x2d\xe2\x3c\xef\x7b\xce\x13\x95\xc1\xc5\x02\xfb\x8b\x11\xec\xca\xcc\xb8\x9c\xcb\x7b\x79\x2e\xe2\x06\xb3\xcc\xc6\x0f\xca\x07\x78\xbb\x86\x5e\x4b\x45\xcf\x16\x7d\x11\x70\xa9\xe5\x78\x6a\xd7\xfb\x92\x5b\xb0\xf2\x78\x75\xec\x2d\xc1\x98\x67\xe6\x6d\x5f\x02\x2b\xe4\xfe\x54\xc9\x6f\x61\xa1\xfd\x7a\x16\xa7\x65\xdd\x3a\xa2\x9a\x2f\xaa\x70\x16\x5a\xcb\x7b\xab\x05\xf0\xd1\x03\x32\xfd\x36\x6b\x6b\x59\xde\x73\x02\xa2\xe5\xd6\x0c\x39\xda\x8b\xed\x08\xf2\x95\x3f\xc1\x25\xe0\x91\x36\x4a\x09\xad\x9a\xee\xfa\x20\x03\x1e\xc5\x17\x1f\x3c\x21\xfd\x63\xd2\x3e\x4f\x5d\x40\xb8\x19\x8b\x46\x34\x02\xa0\x3b\x93\x50\x31\xbd\x13\x71\x0c\x95\xac\xe3\xb9\x60\x76\xa1\x07\xaa\x05\x7d\x22\x71\x37\x69\xbd\x2d\xb6\xd7\x62\x24\xc3\x9e\xbf\x16\x92\x8d\x4b\x53\xe3\x7e\xf1\x48\x3b\x8f\x37\x62\x9b\x9b\x56\xdd\x3d\x97\xe8\x58\xd3\x54\xe1\x2a\xab\x8d\xbb\xeb\xe3\x51\x2b\x34\xd0\xce\x13\x6f\x73\x9a\x87\xe3\x98\x01\x26\x2f\x6a\xa9\xad\xf0\x02\xe5\x64\xfb\x19\xb2\x34\x49\x8c\x6a\x36\x63\xf1\x3d\xca\x3a\x6d\x47\x1b\x0a\x79\xcb\xed\x55\x5b\x8d\xdb\xb9\x10\x3a\x9d\x45\x5c\xe1\x57\x53\xbf\x4d\x1d\x73\xfb\x36\x0a\xb0\xbb\x41\xc3\x52\x22\x4d\xcd\x59\xb3\x14\x42\xbb\x0a\xb2\xb6\xbc\x1f\xd4\xf7\xa3\xa0\x00\xba\x6a\xd2\x75\x11\xae\x43\x3c\x7c\xd7\x2d\xc9\x58\x0c\x1f\xbb\x02\x88\x4c\x4b\xc4\x0e\xda\x0f\x20\xb5\xb2\xa3\x28\xa3\x22\x8e\x91\xed\x4b\x9f\x64\x00\x52\x21\xff\x40\x34\x26\xbe\x76\x88\x3f\xf7\x6e\x53\x2f\xf1\xd6\x24\x94\x32\x1f\xba\x1b\x45\xc0\xda\xc2\x46\x8c\xbb\x9e\xeb\x10\x04\xf0\xc0\x94\x4b\xc4\xd2\x52\x35\x47\xe2\x9e\xd9\x88\xd5\x74\x0f\x4b\xce\xf1\x88\x1a\xf5\x8d\x1e\x3b\x87\xdb\xb9\x1d\x65\x79\xd9\x22\x55\xb4\x77\xb9\x0a\xfb\x6e\x6d\xe1\x88\x6d\xf9\xa4\xbb\x77\x51\xae\x71\x9b\x8f\x8f\xb6\x0f\x2e\xd7\xcc\x3f\x88\xd2\xaa\x82\x89\xdf\x8f\xa8\x7d\x02\x91\x5d\x62\xad\x28\x8e\x46\x50\x59\xf2\x2f\x6e\x9d\x40\x09\xe0\x87\xe4\x12\x7d\x81\xd2\x63\x58\x7c\x15\xf1\x6a\x62\xf7\x05\x5c\xb5\xa8\x51\xa3\xf4\x2d\x4d\x70\x11\xe5\xc1\xab\x05\xd2\xe7\xa8\x8b\x9a\xbd\x5c\xc2\xca\xbc\x47\x97\xb8\x87\x27\x7e\x36\x11\x19\xdd\x30\xff\x36\xb1\x06\xfc\xdb\xa5\x25\x6f\x35\xe1\x6e\x18\x91\x18\x7a\x92\xda\x48\x6c\xc2\xda\x17\x03\xdb\xeb\x29\x27\x9d\x56\xd3\x17\x7d\xfd\x77\x67\xc1\x50\x77\xd3\x2a\xae\x49\xac\x36\xce\x54\xd8\x22\x94\xe3\x2e\x47\xac\x4f\xd5\x2d\xe3\x6e\x41\x1c\x28\x44\xc3\x3a\xdb\xc2\x72\x96\xc7\x5d\x83\x6f\x54\x08\x91\xbb\x73\x8d\x22\xc2\x9d\x67\xc9\xd6\x70\x14\x77\x5b\x8c\x2f\xfb\x07\x18\x3a\x72\x32\xb5\x0f\x2c\x1e\x69\x77\xf3\x71\x31\x70\xad\x1f\x4c\x06\x0c\x15\x5f\x59\x5a\x50\xc7\x8c\xa0\xa9\x0f\xda\x0b\xed\x57\x88\xb4\x54\x2e\x5c\x2b\x6c\x36\xb5\xc3\xd8\xea\x8a\xa5\xb4\x63\xe6\x20\x4f\xd7\x9c\x00\x9a\xea\x5a\xd5\xdb\x85\xe2\xda\x77\x30\xd7\xe5\x84\x3a\x07\xe3\x14\x22\x68\x43\x9b\x96\x8e\x70\xed\xaf\xc7\x6f\x12\xa8\x40\x0b\xf9\x9a\xca\x43\x5d\x93\xdb\x27\x78\xf0\x92\x35\xb5\xa0\xac\x50\x3b\x99\x73\xbd\x17\x5f\x9f\x5a\x99\x67\x31\x9f\x43\x41\xa7\xcb\xe3\x92\xd1\xaa\xf2\xa9\x59\x50\x2e\xb9\xe1\xc1\x4d\xa3\x41\x56\x22\xab\x91\xd5\x41\xdc\x05\xdd\xc2\xa7\x4e\x83\x3b\x37\x8d\x95\x79\x57\x08\xb2\xf9\x9e\xd0\x65\x7a\x1f\x93\x08\x33\x4a\x4c\x7a\x54\xc0\x31\x5c\x51\x6b\x3b\x18\x02\xa0\x23\x8d\x75\x7c\xa6\x43\x7e\x81\xce\x6b\xb6\xe7\x54\xb0\xbc\xb2\x6b\xc0\x11\x1d\x47\xe2\xaf\x0a\xae\xee\x87\xd4\x7d\xb9\xfa\x42\x6c\x2c\x1f\xbb\x1b\x90\x63\x0f\x7c\xe8\x66\x69\x37\x19\xf7\x34\x58\xc1\x3f\xdf\x61\xf9\xa6\x09\x05\x52\x33\x9d\x06\x24\xdd\x96\x35\x79\xe2\xfb\x0c\x88\x48\x51\x52\xc5\x02\x85\xb7\xac\x06\x0f\x8d\x6d\x2a\x53\xc4\x36\x9f\xad\xcd\xe9\xea\xd1\x89\x66\x14\xe1\xb1\x1e\xf2\x36\x73\x9d\x86\xcc\x30\xcb\xed\x73\xd5\xdf\xb9\xd5\xe3\xda\xa7\x3b\x0c\x3a\xad\x12\x00\x40\x44\xee\x21\x01\x22\xa9\xd8\x17\x25\xbf\x38\xe5\x7a\x82\xbe\xcc\x5b\x3d\x5d\x7c\xe4\x1a\x1e\x00\xd6\xd7\x16\xbc\x1e\x49\x96\x4d\x1d\x94\xf7\xba\xa1\x88\x85\x71\x0e\x30\x05\xbc\xd4\x3b\x98\x20\xb8\x17\x6c\x9f\x98\xcc\x8f\xa3\x9a\x7f\xcb\x0e\x09\xf1\x85\x45\xb9\xfc\x77\x23\xea\x95\xde\x0c\x32\x16\x3f\x6e\x6f\x87\x59\x75\x86\xd9\xde\x36\xe9\x65\xc3\x99\xc0\x78\x3c\xc5\x82\x37\xff\xcc\xed\x23\xca\x05\x6a\x40\xbe\x57\xa1\x74\x69\x53\xe3\xbc\xff\x5e\xae\xb3\xe2\x94\x91\x1d\xd6\x35\x93\x3a\xa5\xbd\x27\x88\x2c\xf0\xb7\x90\xd7\xe2\x81\xbd\x8d\x7d\x01\xcd\xe1\x07\xee\x8e\x1f\x3d\xc0\x73\xd7\x42\x75\x08\x02\x8e\x93\xe7\xc5\x6c\x87\xb8\x1c\x58\x55\xb1\x00\xec\x9e\x62\x66\x2e\x2c\x68\x57\x23\x2c\x69\x78\xaa\xd7\xd9\x22\xe7\x7a\x93\x1a\x78\x2f\xb7\x66\x28\x25\x66\x44\x0c\x8f\x23\x92\x4a\x45\x33\x4a\xcd\x7b\x35\x47\x16\xf7\x6a\x5f\x20\xc7\x0a\xf6\x11\xb1\x96\x3f\xf2\x55\xec\xe2\x6b\x63\xb3\xaa\x9e\x8d\x02\x46\x88\x18\x98\xd0\xd8\xf9\x79\xdd\x8c\x4c\x6a\xc5\x18\x5e\x04\x89\x22\x12\x5a\xf8\x59\x03\x98\xf1\x50\xbb\x58\xdf\xda\x34\x39\x04\x47\x44\xbc\xd8\xed\xa8\x2a\x64\x1c\xe0\x38\x50\xfd\x74\x73\xc1\x8b\x08\xfb\x85\xeb\xfa\x27\xa6\xa4\x90\x55\x2c\xd0\x4a\x50\x4b\xfe\xe0\x51\xfb\x5b\x3f\xf0\x7c\x63\x08\xb3\x3f\x5d\xcd\x3c\xac\x79\x58\x05\x30\x80\x04\x8f\xa6\xfd\x26\x37\x3a\xd1\x4c\x87\xd2\xb8\x8b\x85\xfe\xce\xaf\x38\x42\x9b\x87\xd3\xbd\xac\xed\xe9\xb3\x53\x73\xd8\xa3\xbf\xa9\x08\x78\x79\x52\x13\x85\xaf\x89\x54\x04\x4c\xf1\x2d\xbf\xec\xa7\x59\xba\x11\xe7\x63\xef\x2d\xe2\xa3\x69\xaf\x8c\x7f\x8c\xf6\xfd\x37\x6d\x69\x90\x9f\x79\x70\x54\xb0\x1b\xa8\xe1\x16\x2e\x44\xe4\x57\x7b\xa1\xb9\x84\x58\xe6\xe3\xee\xba\x1b\x20\xea\x75\xcd\xc6\xd7\x24\xe2\x53\xda\xc4\xe6\xa6\x04\x1a\x44\x19\x20\xd5\xd5\x7a\xcf\xcc\xea\x36\x51\x2c\xb8\x44\x08\xe6\xdf\xfc\x8d\xc5\x99\xd6\x57\x17\xe5\xfa\xae\x62\x3d\x50\xc0\x1a\x26\x8c\x12\x17\x77\x5e\xe0\xc1\x65\x95\xeb\x64\x43\x1f\x59\xfa\xe4\x24\x7a\x6e\xaa\x07\x97\x67\x9b\x6e\x05\x42\x21\xe7\x9b\x2c\x6a\x0a\x6e\x10\x8a\x89\x1f\x47\x04\x2c\x54\x5d\xb5\x2c\xdd\xe3\x56\x59\x2f\x5c\xed\x9d\x87\xdf\xa3\xed\xfb\x49\x37\x3c\xb0\x13\xdc\xc5\x03\x03\x08\x7f\x37\xaa\xbc\x72\xd2\x09\x55\x9e\xc1\x78\xe8\xa6\x86\x12\x43\xaa\xef\x52\xc6\x48\x78\x56\xaf\xfc\xfa\xdf\x9c\x75\xb8\x03\x8c\xbc\x39\xac\xf8\xfa\x78\x42\x4d\xec\xc3\x09\xb5\xb4\x6f\xd5\x3d\xbc\x52\xdb\x13\xa8\x17\x06\xbf\x5c\x12\x5b\x34\xc9\x31\x26\xb5\xfc\x55\x83\x7c\x66\xbb\x37\xce\xbd\xe5\x2b\x2a\x06\xe7\x09\xe7\x7e\xbe\xc1\xf5\xf1\x70\xbb\x28\xc9\x4e\x07\x6d\xd8\x9f\xe3\x09\xc9\x49\x53\xc2\xbf\x6e\xd3\xd4\xf6\x50\x22\xc2\xce\x27\xc3\x49\x4e\xbc\xce\x74\x12\xab\x24\x8f\x9a\x0e\xb8\xb1\xe0\x5a\x41\x6f\x7d\xbe\x43\xa2\x2a\x4f\x6f\x87\x92\xd1\x25\xf7\x1a\xd5\xe8\x79\x1a\xf1\xed\xe6\x80\x5f\x51\xf1\x88\xef\xd3\xe3\xbe\xdf\xa4\x3c\xb0\x6a\xba\xeb\xae\x3e\x86\x54\x63\x8e\xd6\x18\x51\x85\x42\xd6\x7a\xd1\x85\x00\x8a\x35\xdc\x99\x22\x2c\x2d\xb5\x6d\x5a\x3a\x2f\xf7\xd4\x8e\xd5\x91\x4a\x7d\x6f\x5a\xc1\x03\x87\xd1\x5e\x03\x93\x27\xfa\x1c\x82\xec\x84\x17\xeb\x70\xd8\x13\x0f\x35\xf0\x38\x8b\x8f\xc8\x16\xf8\x27\xd4\x83\x7c\xdd\x6c\xe9\xce\xe5\x81\xb9\xd5\xb3\x97\x93\xa9\xf7\xf5\xa5\x76\x37\x1b\x77\x07\x5a\x7f\x14\xfc\x2b\xf6\x55\x05\xc3\x7a\xe9\x87\x41\x3e\xee\x4b\xcc\x8e\x64\xfd\x5c\x44\xd5\x9f\x73\xb5\xba\xc0\x46\x2c\x26\xc9\x98\x7c\x27\xb9\x34\x71\xd2\x83\x08\xb2\x0d\x9b\x0f\xcc\x38\x99\x0b\xa9\xc9\xb3\x1d\x1a\x95\x35\xe3\xb1\xc9\x0e\x9a\x3c\x4b\x55\x4c\x59\xed\x2c\xb6\xcb\x41\x36\x2e\x4c\x8a\x7a\x29\xfe\x0e\xea\x78\x72\xec\xef\x6b\x33\x2e\x4b\xed\x37\xab\x0b\x20\xc1\x33\x9a\xb0\x74\xed\xa2\xcc\x72\xcb\x36\x49\x78\x39\xd8\x8b\x51\xc1\xf7\x1a\xe9\x2b\xf3\x92\xa6\x7c\x83\xf2\xb8\x37\xad\x49\x4c\x0a\xe7\x00\xe4\x1d\x77\xd0\x83\xd3\x22\xf7\x4e\xe0\xae\xb8\xe6\xd5\x1e\x72\x5c\xd8\xe7\x5c\x0f\xc6\x3f\xe4\xd0\xd8\xb8\xea\x96\x25\x34\xb5\xae\x4c\x82\x50\x95\xc4\xa4\xa2\x99\x1b\x85\xf2\x39\xc8\x7a\x18\xf4\xd7\x1c\x7a\x4e\x09\xd4\x24\xe6\x25\x18\x79\x4c\xa5\xab\xe8\x1f\xa1\xcd\x74\x07\x05\x77\xf9\x41\x44\x6b\x28\x31\xdd\x06\x0e\xd0\xab\x20\x57\x9b\xae\xd6\x8b\x09\x38\x09\xfe\x93\x62\xa1\xdd\xb3\x40\xc9\xf7\x1a\x19\xbe\x5e\x44\x40\x8f\xbf\xba\x5e\x17\x52\x18\xdb\x27\x69\xb9\x6f\xb9\x65\x5d\x66\x8b\x0c\x1d\xdc\xe8\x4d\xa2\x07\x0b\x54\x8b\x44\x44\xf5\x5f\x90\x22\x7b\x72\xf1\x41\x2d\x40\x3f\xc0\x2a\x25\xf0\x0f\x6c\xd7\x52\x48\xc2\x83\xd2\x3a\xc6\xce\x51\xe3\xc4\xb3\x4c\xb2\x3e\xc3\x02\x4f\xa4\x2f\xf6\x28\x22\x1f\xa8\xcb\x24\x78\x91\xdb\x6c\x64\x9d\x84\x6e\x48\x26\x8e\x46\x61\xba\x3a\xfb\x37\x2f\x43\xd7\x1f\x5b\xe8\x35\x72\xbc\x8d\xf7\xf5\x27\x13\x92\x18\xbb\xec\xd7\xe1\xd7\x5f\xe8\xbd\xd0\xaa\x35\xda\xea\x3d\xb8\x67\x03\xac\xa0\x67\xca\x2c\xdf\x72\x84\x1f\x44\xda\x50\x6d\x76\x21\xd0\x57\x7e\xa1\x13\x7a\xd5\xfb\xb6\x5d\xb2\xa1\x65\x73\xad\xf2\x6f\xe6\xa6\x14\x4e\x87\x47\xfc\x2e\x07\x49\x9f\x4f\x93\x76\xe9\x6a\x36\x4e\xab\x74\xb2\x1a\x14\x02\x2f\x9e\x10\xa5\xf9\x12\xe1\x33\x5b\x1d\x12\xec\x36\x71\xaa\x74\x2e\x6f\xe4\xe3\xd5\x09\x3f\x64\xb5\x8f\x5b\x4d\xbb\x97\xe9\x6d\x20\x63\xf1\x4f\x90\x03\xce\xd6\x76\x78\xd4\x55\x00\x2b\xda\xb0\x35\x82\xbe\x9c\x10\x66\xbd\x9b\x8d\x93\xde\x01\x37\x36\x75\xc5\xae\xc6\x13\x5e\xbb\x24\x31\xc2\x85\xe5\x05\xef\x7d\xc0\x16\xbd\xa0\x94\xc7\x6b\x3d\xdd\xa1\x12\x9b\x08\x8f\x22\x0c\xba\x10\x05\xfb\xe1\xbb\x35\x93\xcf\xdb\x13\xe2\xa2\x3f\x03\x82\x86\x0a\x50\x06\xce\xc8\xb1\x88\xf8\xa9\x07\xb6\x43\x3d\xf1\x09\x97\x23\x22\x0f\xbf\xe5\x32\x3f\x14\x4e\xfe\x53\x28\x00\x24\xd9\xea\xaa\xcd\xc5\xc2\x45\x5a\x9d\x1c\x7f\x5e\x8b\x48\x5b\xee\x7b\xb8\x6a\x15\x73\x6e\xaa\x84\x0f\xb3\x0d\xeb\x46\x1a\x16\xd8\xf7\x31\x57\x04\xa6\x38\x09\x84\x07\x81\xd6\xa8\x07\x6a\x08\xc0\xcc\xa6\x08\xe2\xfb\x3a\x57\x70\x9d\xc2\x73\x16\xcc\x22\x81\x59\x0e\x1f\x2a\xe6\x78\x9b\xd9\xd3\x21\xc4\xc4\x39\x57\x40\x50\xb1\xb9\x80\x1d\x3b\xce\x20\xf8\x69\x4c\x8d\x26\x3d\xab\xb6\x88\x7b\xb6\x00\x60\x0e\x6b\xfe\xac\x13\x4d\x46\xf8\x23\x11\x0f\x2a\x43\x33\x4e\xcc\x45\x33\x90\xa6\x0a\xa6\x9a\xe7\xb5\xb8\x9d\x89\x65\x97\xac\x01\xb0\x71\x9b\xad\x62\x0f\x09\x89\xdc\x94\xe5\xd0\xeb\x0b\x2c\x2c\x06\xbb\xc9\x95\xf9\xd0\x48\xaf\xbe\x4c\x89\x95\x64\x6e\xb2\x7b\x7b\xfa\x82\x5c\xbb\x38\x5e\x8b\x15\x3b\x28\xa5\x31\xbc\x73\xad\x93\x35\x99\xb5\xf5\xac\x49\xac\xef\x79\xa0\xdc\x74\x8f\x2d\xca\xee\xf9\xd5\x63\x90\xad\xae\x6e\xf1\x4a\x05\xeb\x77\x39\x9e\x12\x20\x5f\x5a\x72\xae\xdc\x7d\x62\xb5\x8a\xee\x03\xa1\xa4\x59\xe3\x77\x90\xe5\xf1\x9b\x4e\x5c\xd9\xa3\x09\xfe\x30\x0a\x24\xfb\x3f\xa4\xbc\x6d\xcb\x9a\xfc\xb9\xd0\xb5\xb8\x81\x6d\x49\x1e\x4f\xa7\x7a\xa0\x4a\x69\x21\xc4\xc3\xae\x6d\x1e\x5a\xc7\x26\x64\x51\x26\xc9\xab\xc6\x47\x6e\x72\x78\xb0\xfc\xc1\x60\xb2\x52\x45\x83\x5e\x4e\xc3\x23\x64\x3f\xef\x96\x28\xb0\x1d\xde\xc5\x74\xc0\x28\x7d\xe8\xf6\x71\xcf\xee\x58\x5a\x92\xa2\xf8\xcc\x36\x11\x1f\x1e\x60\x7f\x46\xa7\xfd\x1a\xb6\x71\xd4\xa2\xbe\x3d\x21\x11\xb2\xdf\x45\xba\xac\x74\x96\x86\x28\xba\x28\xed\x08\x14\x38\x2c\x0e\x68\xf4\x79\x4d\x8e\xa5\x25\x99\xef\x6f\x11\x6d\x60\xc3\x54\x1b\x56\xd9\xaa\x45\x9c\x2d\xaf\x63\x76\x81\x90\x4d\xa6\x1f\x8f\x5c\x0f\x5e\x70\x2d\xee\xc1\x28\xc6\xa5\xa1\x9e\x58\x94\x79\x1c\x70\xcb\x18\x25\x67\x88\xbb\x82\x85\x5d\xda\x51\x4d\xd8\xf3\xd5\x71\x6e\xcd\x78\x86\xfc\x1c\xb8\x9f\xff\x7f\x70\xfb\xef\x72\x14\x28\x5a\xc6\x59\x69\xc5\xab\x09\xd2\x6b\xac\xbf\x88\x09\xd5\xdc\x84\xaa\x08\xb7\xa6\x2e\x7d\x69\x69\x45\x09\xf0\x6e\x24\x2a\xe4\xa2\xe5\xfd\xab\x4e\x90\x12\xb0\xc9\xab\x8d\xf2\x80\x7b\x51\xb2\xbb\xb8\x1a\x87\x70\x99\x59\x3a\xf9\x04\x00\x64\xb8\xa0\x63\x44\x14\x82\xde\x23\x2a\x80\x27\x22\x36\x69\xc6\x32\x8d\x6c\x0b\x5e\x81\x5e\x5b\x3b\x54\xcf\x9f\x90\x71\x8d\x1b\x12\x2a\x3a\x76\x9a\x9f\x21\x44\xf4\xf6\x75\x9e\x11\xfc\x47\x8e\x6d\xa3\x02\xc0\xee\x0d\xa9\x12\x0d\xe9\xc8\x13\x53\x7b\x2d\xcb\x6d\xd7\x14\xe5\x3e\xd2\x9c\x3e\x89\x60\x12\x30\xa5\xb3\x11\x67\x9c\xd5\x97\x28\x2e\x35\x78\x34\x09\x00\x49\x95\x49\xc2\x62\xf7\x5d\xf7\x62\xe5\x8b\x1a\xb7\xa3\x22\x89\x05\xdd\x27\x82\x28\x11\x39\x8d\x07\x24\x7a\x9a\x95\x71\x37\x36\xb2\x2c\x23\xd0\x90\xfd\x41\x4e\xa6\xfb\xf4\x8b\xed\xac\x5b\xda\x64\x26\xa4\x77\xe2\x32\x2b\xc1\xb0\x6b\x56\xaa\x15\xa6\xb7\x81\xcd\x4c\x0f\xc0\xe4\xe5\xc0\x03\x58\x5a\x92\x1b\x45\x8c\xeb\x3d\x6f\xaa\x2b\xc5\x6a\x7f\x97\x16\xb1\xcd\xb8\x1c\xfc\x22\x15\x54\x2e\xbb\x27\x85\x05\x09\x7e\x95\x0a\x2d\x71\x7d\x01\x3c\xda\x07\x6e\xf7\x47\x90\xf3\x5f\xe3\xf9\x4b\x4d\x05\x4d\x74\xd4\xc3\xee\xb9\xb7\x88\xbd\x63\xef\x36\xb0\x69\x0a\xd5\x0e\x72\x36\xbf\x8b\xc5\x46\x09\xb3\xd5\xe5\x63\x3a\xed\xee\xb8\xf0\x51\xf1\xdc\xd5\xfd\x7b\x36\x69\x95\xef\x68\xab\x11\xe3\x0e\xa3\xe8\x27\x51\xdd\x41\xd0\xab\x8d\x09\xf3\x0f\xc9\x14\x54\xd2\xb0\xb3\x88\x86\x0c\x42\xc3\xdb\x11\x41\xf7\x9c\x65\xd9\xe1\xa0\x4e\xca\x46\xa2\xc4\x6d\xbd\x5d\xcb\xc6\x4c\xb9\x35\x13\xf8\xc7\xb3\xdb\xad\xe5\xe5\x47\xd7\xf0\xad\x08\xf5\x6e\x45\x3b\xd5\x53\x80\xa8\x19\xc4\xa3\xd5\x71\x9c\xf4\xea\x1a\xd9\x27\x22\x22\x33\x9c\x20\x37\xcd\x24\x4e\xe1\x85\x24\xa5\x65\x8a\x4a\xce\x4f\x85\x0a\x0b\x0b\xd5\x0e\xdb\x4b\xe2\xd4\x8a\xbd\x16\x62\xc8\x07\x51\x3d\x34\xf2\xbd\x23\x16\x2c\x18\xd8\x35\x44\x50\x3e\x0d\xf2\xe0\xbf\x47\xa4\x81\x77\x39\x0c\xca\x78\x75\xcb\xa4\x14\x13\x3f\x8a\x28\x26\x7e\x34\x75\x75\x2f\xcf\xbf\xe8\xd4\x99\xbb\x1e\xe5\xe2\xd5\x36\x3d\xca\x45\x5e\x1f\x1e\xe1\x47\xa4\x96\xee\xda\x0b\xd2\xa3\xc4\x10\x84\x47\xb4\x1c\x53\x95\xda\x55\xd9\x67\x03\xfc\xfe\x89\x4e\x00\x14\x3d\x9a\x90\x86\xde\xa9\x5a\x64\x74\x6a\x12\xec\xa2\xb3\x61\x5c\xa8\x55\xb3\x00\xc9\x18\x82\xb0\x7f\x3b\x20\xa2\x0e\x4c\x95\xdf\x0e\x2e\xb7\xcb\x3c\x1e\x79\x12\x8e\xce\xcb\x96\x97\x4c\xbd\x33\xa1\x5d\x7b\xf7\x54\x77\xac\x5a\x80\x36\x07\xa6\xbb\x2e\xc4\x62\xec\xa3\xc7\xa2\xd6\x2b\xda\x10\x3a\xd6\xd0\x10\xf3\x86\x77\x14\xfb\xa1\x01\xad\xdd\xf9\x30\xa8\x6c\x2a\x9a\x31\x92\x99\x46\x44\x3e\xba\x40\x09\x26\xec\x2d\x5c\x0e\xeb\x5b\xfc\x01\x64\x21\x85\x13\x54\x07\x1f\x4f\x45\x64\xcb\xcb\x87\xab\x47\xb9\x16\x97\xa0\xd1\xd4\xd2\xb9\x95\x79\x3d\x8e\x58\xa8\x3d\x2b\xa1\x24\xc6\x79\x62\x8b\xc4\xcf\x1b\xf8\x4e\xe5\x38\x5f\x35\x29\x09\x72\x7c\x5c\xb3\x3a\xaa\x91\x74\xb2\xa2\x55\xad\x47\x52\x69\xc0\x5d\x6b\xd9\x21\x54\xe9\x36\x09\x2d\x80\x05\xe6\x67\x64\x6f\xf6\x33\x9a\x32\x76\xad\x7c\x26\x8c\x11\x81\x80\x23\xfc\xfb\x0b\x9d\xd6\x6f\xfe\xba\x37\x28\x22\x05\x93\x8f\x27\x24\xb5\xe8\x10\xba\xaf\xca\xf6\x2d\x32\x0f\x28\x1f\x3d\x00\xd9\xd1\xe7\xf5\xa1\x4d\xb8\x1d\x52\xc0\x7f\x78\xa0\xe3\xbb\x97\xf9\xb7\x49\x71\xf5\x32\xf5\x62\x8f\xb9\x50\xee\xd1\x49\x9a\x4c\x49\xd6\x35\x89\x75\x8a\x85\x87\x95\x68\x00\x7c\xaf\xb2\x0e\xf8\xb1\xe5\x7d\x88\x4a\x68\x8d\xb1\xfa\x19\x2d\x31\x4e\xf3\x68\x8a\x41\x66\x87\x66\x7d\x87\x1e\xfd\x1d\xd2\xa3\xbf\xd3\x00\xfb\x7e\xb5\x3d\x30\xf9\x86\x2d\x7c\x01\x1a\x3b\xf5\xfb\x14\x91\xbf\xef\xb5\xd9\xfa\x89\xe9\xc6\x26\x71\x23\x58\x01\xde\x04\xf6\xa6\x20\xbf\x97\xa5\xaa\x83\xa0\xa0\x73\x78\x5f\xc8\x31\xbd\xcb\x6c\x35\x26\xeb\xb8\x4b\xcc\xa6\xbe\x34\xe5\x39\xf4\xf2\x7c\x7b\x9c\xf6\x6c\xbe\x99\x8b\x3d\x42\xe8\x55\x47\x81\x16\x74\x96\xe2\xd9\xd7\xc7\xa9\xa0\x48\xf0\x1a\x11\x5c\xca\xb1\x17\x93\xfb\xda\xd8\x19\xa8\x26\x5b\x7b\xaa\x17\x8e\xf5\x1a\xec\x3b\x37\x59\xfe\xf3\x3f\xd7\x09\xa9\xb0\x43\xc0\x2e\x3e\xba\xe2\x32\x3a\x25\xc1\x7b\x2d\xb1\xff\xe5\xb3\xdb\x0d\x2e\xc0\x79\xdc\x6f\x11\xc1\x0b\x17\xa1\x8e\x01\x3b\xfb\x31\x5f\x6a\x67\xa9\xdd\x1b\xf0\x52\xd7\x49\x21\x0e\x56\xc0\x18\x6c\xb7\x11\x44\x62\x51\xf8\x16\xc6\x2d\x12\xa2\x59\x17\x07\xab\x6f\x86\xbb\x7b\x55\x48\xd1\x3b\x8e\xd3\x81\xcd\x63\xff\xda\xa5\xec\xcf\x9b\x78\x1d\x82\x56\x14\x76\x4f\x70\xfa\x90\x25\x08\x0f\xe4\xa1\xab\x87\xf8\xd8\x7d\x87\x39\x96\x67\x81\x91\xfc\x37\xcd\xe4\x5e\xf1\x54\x10\x4b\x91\x46\x15\x7e\xff\x97\x50\x80\x11\x93\xd9\x49\x4d\xa2\xda\x39\x89\x49\x3e\xa8\x1f\x0d\x80\x12\xd1\xc1\x42\xcf\xf1\x8b\x2c\xf9\xff\x10\xdb\x89\x16\xa0\x5b\x5e\xb5\x67\xd7\xb6\x5f\x4f\x7e\xda\xde\xd6\x01\x9f\x0d\xe3\x52\x6d\xda\x11\x33\xdd\xc7\x75\xc8\x09\xb5\xd6\x47\xd9\x68\x9c\x18\x20\x4a\x58\x5c\x42\xd5\xcc\x49\xd9\x9c\xd9\x95\xe7\x22\xd2\xa5\xe1\x22\xda\x8f\x1b\x20\xe6\x2b\xca\x43\x68\x05\xc9\x36\x54\xa0\xe5\xb8\xb6\x7c\x98\xf5\x4c\xf2\x7d\xa5\xc9\x93\x1e\xe2\x77\x48\x66\x6a\x2d\xb1\x6f\xc4\x1b\x56\x64\xd0\x7c\x9d\xda\xab\x3e\x3a\x63\x12\x25\x42\xc4\x4e\x1d\x08\x68\x2b\xa1\xf9\x44\x61\x0f\x38\x5a\xbb\x82\xf5\x64\x6b\x3f\x35\x98\xfe\xae\x1b\x27\x48\x86\x66\x3a\x55\x96\xe2\x45\x4c\xbd\x34\xf9\x93\xee\x3d\x20\x83\xbb\xc7\x74\x2e\x11\x93\x40\xb0\x09\xa2\x07\xf2\x22\x80\xf3\xb0\xf8\x7f\x80\x5b\xc4\x2b\x7d\x9b\x16\x99\x78\x5d\x72\x05\x24\xa5\x30\xd7\x96\xe3\xda\x25\x3f\x9f\x3e\xdf\x0a\x40\xfb\x1d\x58\xcf\x9d\x81\xa5\x2b\xa0\xc5\x69\xdc\xcd\x86\xa3\x71\x19\xea\x2b\xa4\x5b\x79\x98\x74\x2b\x59\xf1\xba\x6f\x8b\xfd\x6e\xf4\x02\xe1\x7b\x91\xfb\x5f\x77\x27\xa4\xbc\x21\xe2\xb9\x28\x52\x5d\x75\x33\x0a\x4f\x6a\xa6\x43\x28\x0e\xc9\xd1\xe4\xcb\xdc\x73\x16\x03\xfd\x28\x80\x94\x00\xad\x42\x01\xed\x58\x43\x94\xb8\xb8\x43\x51\x14\xe9\xc3\x8c\x0b\xba\xe4\xb8\x13\x8a\xc7\xaf\x67\x85\x1d\x0d\x8a\x2c\x75\xd1\x1a\x8a\x1c\x20\x9a\xab\xa1\x30\x0d\xf3\x4b\x53\xd9\xde\xd2\x52\x7b\xcd\x24\x89\x80\x39\x14\xb8\xeb\x9e\x98\x00\x2d\xeb\xaa\xbc\x3b\xb7\xae\x57\x16\x8f\x28\xe7\x50\xaf\x57\x61\x32\xee\xb9\xa8\xf5\x58\xd8\x09\xf2\x71\x21\x3c\x38\x5c\xd3\xbb\xee\x61\x7a\x21\x84\xaf\xbc\xe2\xfd\x32\x1a\x78\x1a\x6b\x46\x5b\xea\x6a\x13\xd4\x22\xfb\xa0\x9d\x2b\xf8\xcb\xf3\xed\x51\xd7\x6d\x4e\x2a\xb1\x4b\xa5\x36\x6e\xf5\xff\xda\xaf\xfd\xd5\x56\xdd\xeb\x77\x41\xe3\xd3\xcb\x53\x42\x50\x8b\x47\xda\x83\x0c\x78\x07\xc0\x5e\xcf\x91\x70\xf5\xb9\xc9\x53\xfe\xd5\xa4\x2f\xbc\x8e\x2c\x84\xfb\xe0\x0d\x5a\xc7\xf7\x6b\x00\xd8\x71\x1e\x73\x6c\xca\xc4\xf8\x0b\x53\xed\xdc\xe5\xe5\x76\xb1\x69\xa4\x10\xa5\xb5\xe3\xea\x67\xb0\x35\x01\xf9\xa4\x12\x98\xe1\xca\x32\xc3\x06\xb3\x52\xa2\x91\x93\x88\x35\xb5\xe0\x76\x33\xc3\x2e\xdc\x37\x23\x6a\xcd\xc8\xe5\x21\x96\xfd\x68\xa2\x04\x24\xcf\x35\xf7\x61\x10\xf6\x12\x87\xbc\xd7\xe3\x29\x05\xb3\x85\xc5\xb6\xd9\xb0\xb9\xea\x52\xaa\xfd\x6e\x75\xa1\xaa\x98\xa7\xab\xe5\x30\x4b\x6d\x69\xf2\xb8\x28\xa5\x04\xeb\xad\x5f\x43\xa3\xf4\x0c\x99\x2d\x9a\xd5\x71\x61\x91\x8f\x78\xfc\xb0\x97\x11\x43\x33\x50\x57\x8b\x69\x8c\xd0\xb2\x6b\xaf\xf6\x07\xe2\xcf\x20\x2a\x57\x51\x4d\xf2\xaa\xc1\x2b\xa8\x18\x8f\x46\x59\xae\x17\x28\xba\x89\xb8\x40\x15\x51\x0c\x82\xed\x89\x4d\xfb\xe5\x20\x74\xbe\x14\xa9\xc0\x08\x86\xcf\x50\x36\xd8\xb5\x29\x74\x56\x03\xdc\xf6\xf7\xa2\xf0\xe2\x7f\x8f\xb8\x5c\xc5\xd7\xc6\x56\x02\xd2\xea\x9b\xd5\xd1\x2e\x34\x7a\x7e\x46\x54\x83\xd4\x6e\x16\x4f\x11\x2e\x44\x94\xd1\xbd\x63\xce\x2b\x8c\x2e\xf2\xdb\x45\xcd\x41\x5d\x18\x3d\xda\x06\x26\x5f\x5a\x69\x84\x78\xd9\xc7\x83\xea\x44\x77\x2a\xaa\x09\x4a\x54\x97\x89\xad\xf8\x01\x51\x42\x4f\x4f\x2d\x3e\x2e\xc5\xb2\xf9\x5a\x96\x0f\x75\xf1\xd1\x8e\xa1\xbb\x05\x6d\x19\x06\xe7\xe3\x8d\xd8\xec\xa9\x89\x79\x04\xba\xc1\xf1\x5a\x30\xd8\x5a\x58\x08\x85\xbc\x85\xc5\x1a\xf6\x59\xd3\x9d\x26\x58\xd2\x5a\x6c\x93\x9e\x6e\x40\x98\xde\x22\xd8\x2b\x27\x41\x95\xdc\xf6\x1c\xc2\x57\xbd\x01\xaa\x6f\xa6\x76\x7f\xa8\xa3\xe8\xa4\x1a\xa7\x71\xaf\x7a\xeb\x6b\xb1\xf8\xdc\x62\x24\x3f\x64\x56\xca\x71\x02\x0a\x33\x18\x76\xc3\xa6\xe5\x38\xb7\x7b\x09\x68\xbd\x8d\x5f\x41\x74\x7a\x8c\x20\x6f\x6f\x4d\x48\xb5\xe2\x1c\x60\xb2\x8a\xbb\x9b\x32\x06\x40\xa0\xfb\x13\x1f\xc1\x17\x23\x93\xc7\x69\x5f\x34\x0e\x91\xf2\x5d\x20\xbb\xb6\x60\xf3\x53\xe6\xa6\x1b\xf6\x6a\x0c\x1d\x81\x1e\xca\x49\x40\x4e\xac\xbe\x4e\xfb\x21\x30\x92\xf7\x18\x61\x7a\xaf\x69\x91\x2e\xcd\xea\x4c\x6d\x6b\xf1\x5d\xce\xff\x99\x21\x0f\x67\x02\x0c\x3c\x49\x62\x5b\xc8\x62\xa7\x5c\x74\x82\xb5\x3c\x8a\x02\x66\xe7\xbf\xb8\x40\x42\x35\xb9\x19\xc5\x45\xd9\x0a\xa1\x14\xd4\x10\xd5\x11\x27\x84\x1c\x85\x4d\x4d\x99\xe5\xb3\x01\xad\x70\x41\xca\x7a\x0a\x82\x6b\x79\x31\x0e\x59\x5a\x15\x2a\xf7\x14\xb9\x3f\xf6\xf6\x52\xf7\xfc\x1f\x4d\x28\x61\xfc\x47\x98\xae\x5e\x34\xf9\x37\x7f\x5d\x8f\x23\xda\x35\x6f\xb9\x7c\x5a\x35\xa2\xc3\xaa\xf1\x7e\x13\xb5\xb8\x30\xc9\x50\x3a\x4a\xc8\x33\xe0\x80\x27\xc7\x4d\x60\x94\xa2\xcc\x8d\x73\xef\x70\x3f\xc9\xf5\x1f\xb5\x22\x0f\xfa\x3c\xc5\xa6\x19\x8e\xf0\x5e\x3d\x3f\xbc\xba\x37\x65\x81\x7b\x5d\x83\xde\xc0\x16\xce\xcf\xd4\x0f\xa5\x6f\x47\x01\x2e\xfd\xed\x06\x11\xe2\x43\xed\xe1\xb8\x3b\x68\x85\x14\xec\x3b\x2e\x5c\x95\xe3\x1a\x9c\x62\xad\x04\x5b\xcd\x6b\x54\x78\xa9\xc0\xcb\x93\x9d\xd1\xe6\xc1\x65\xd1\x90\x2d\xf3\x71\xb7\xdc\x21\x15\x03\x35\x09\x4d\xf2\x42\x70\xbe\xdd\x54\xab\x8c\xd3\x6a\x5a\x66\x62\x2f\xae\x3e\x64\x2d\x72\xf1\x09\x23\x67\x60\xd7\xd6\x52\xe1\x84\x63\x00\xc2\x11\x5b\x8e\x9b\x4c\x60\x47\xb9\x5d\xb3\xb9\x75\x0d\x7e\xdf\x9a\x3a\x46\x48\x8f\x63\x93\x20\x46\xdd\xcf\xe4\x2d\x20\xe9\xbe\xc7\x2a\xbe\xf7\x1a\xbd\xd1\x4c\xf7\x6b\xe3\x38\xd7\x49\xe9\x31\x4c\x81\xa4\x77\x3e\x80\xdf\xac\x01\x31\x4c\xd2\x06\x0a\x4f\xcf\x51\x59\x6e\x10\x27\x49\x8b\xba\x81\x20\x90\x69\xc0\xb4\x73\xa0\xbd\xf6\x5a\x7b\x23\xce\x12\xe3\xd7\x05\x3c\xe9\x93\xb8\x04\x39\x89\x9e\x0b\x23\xad\x5a\x3b\x87\x36\x2d\x4d\x82\xd6\x86\x17\xc4\xf3\x6a\x7d\x12\xeb\xc9\x35\xf7\xe3\xd2\xa9\x4b\xab\x87\x0a\xa6\xb3\xc8\x34\xca\xc9\xd4\x73\x77\xa3\xc3\x17\xb8\xdd\xc8\xf0\x22\x52\x3e\xa9\xbc\x38\xf9\x95\x86\xad\x23\xcd\xca\xcd\xb8\x1c\x14\xa5\x49\x7b\xae\xfa\xba\x32\x1f\x4c\xbb\x3c\xc4\xfb\xa1\xdb\x36\x81\xea\xbe\xd9\xa8\x7c\xb6\x9a\x1b\x51\x02\x60\xfb\x2f\x65\x78\x36\x22\xa7\x7b\x79\x9c\x78\x23\x74\x64\x3f\x67\x91\x11\xcb\x49\x83\x7d\xae\x49\x56\xad\x10\x0b\xb1\x71\x9f\x72\x57\x26\xc7\x0d\xa6\x1f\xed\x32\x8f\xfb\x7d\xeb\x87\x0c\x66\xae\x6c\xd5\x72\xd2\x54\xd8\x1d\x58\xb7\xa5\xb4\xc8\x74\xe8\x9f\x93\x19\xd7\x3f\x9f\x7a\x07\x8a\x41\x48\x62\xd5\xda\xc5\xcd\xdf\x65\x86\xfd\x5d\xaa\x7e\x7c\x39\x37\xb2\xea\x63\xe6\x9e\x22\xe7\xe5\x19\xd4\x2d\xb4\x7b\xdc\xe0\x4a\x92\x8d\xcb\x62\x94\xad\x5b\x88\x3e\x23\x14\x86\x9e\x07\xf8\x77\x57\xb0\x40\x2b\xd1\x38\x28\x75\x14\xe3\xbe\x11\x39\x50\x6c\xfc\xff\x93\xfb\x94\x1c\x23\xa4\x52\x9b\x38\xaa\xa4\x48\xb9\x5a\x4f\x70\xe1\xfa\x77\xa4\xdb\xee\xb8\x5b\x6f\x00\xa3\xf0\xa2\x24\x3d\xa7\xc9\x98\xe1\x34\x41\x90\xac\xb3\x8b\xce\x52\x27\x1c\xa2\x74\xc9\x53\x68\x82\x7b\x41\x5a\x0f\x13\xbf\x89\x2b\x40\x32\x0a\xee\xa4\x8a\x85\x84\x82\xfd\xdf\x6b\x48\x6d\x91\x18\xb8\x00\x86\xea\x37\xa8\x71\x23\x12\x14\xf5\x43\xd4\xf3\xce\x90\x00\xe1\xd0\xe6\xdd\x78\x6d\x9c\x24\xa8\xc7\xab\x45\x04\xa9\xb8\xc3\x1d\x13\x75\xaa\xbb\x9e\xb4\x35\x4a\x6c\x58\x22\x30\x9a\x21\x77\x27\xc7\x54\x10\xe8\xbb\xee\x32\xf4\xde\x11\xef\x49\x12\x4b\x48\xd1\x20\x9b\xea\x42\x61\x20\x49\x7e\xec\xc2\x57\x39\x9e\x90\xdc\xff\x99\xa9\x09\x5a\x65\x13\x43\xd3\x13\x13\x6c\xec\x45\xe2\xc3\x2c\x27\x3e\x1c\x19\x25\x26\xd5\x7a\x89\x54\xf5\xdc\xf8\xd0\x0a\xdf\x2f\x7f\xc2\xb0\x1f\xe5\x59\x6f\x1c\x04\x18\xa5\x70\x87\x57\xa6\x55\xbc\x40\x6c\x74\x02\xae\xa3\x3c\x2e\x04\x49\xe7\xfd\xa8\x3c\xc3\x58\x34\x08\x14\x34\x45\xf4\xbc\x61\x1a\xaf\x8e\x65\x7c\xa1\x97\xf8\x2f\xdd\xe7\xe4\xb8\x11\xb7\x3f\xb4\x79\x5f\x1a\x3b\x6a\x30\xe7\xbe\x5e\x4e\x26\xbf\xfa\x09\x77\xd5\x33\xa5\x91\x3b\xd3\x10\x4d\xcb\x62\x24\x5c\xe2\xb0\x1e\x8a\x21\xbe\xef\xa3\x52\xd3\xb3\x69\xd6\x35\xa2\x9d\xa1\xdc\xc5\x50\x14\xaf\xfb\x2c\xf7\x07\xe5\x2f\x06\xe6\xb8\xd4\x74\xd0\x76\x3e\x8e\x74\x06\xc4\xbd\x99\x4e\xeb\x95\x60\x31\xd9\xfa\xca\x2b\xc2\x16\xfa\x39\x59\x91\x5e\x71\x43\x03\x0f\x75\x37\x80\x28\xb8\xb8\x87\x32\x71\xdd\x64\xf9\xf8\x40\xc7\xa1\x15\xd0\x95\x3c\xea\xb2\x0f\xfc\xc6\x59\xb4\xa3\x11\x72\x9f\x70\x9a\xb1\x24\xe7\x77\xc8\x4b\x96\x93\xa7\x24\x98\x32\x00\x3e\xec\xd9\xae\x29\xe7\x90\x80\x87\xb0\x55\x59\x5a\x54\xb9\x29\x41\x23\x41\x28\x02\xe8\x17\xee\xdb\xa6\x7e\xde\xa5\x49\x10\x88\x80\x71\x97\x36\xa6\x9f\xab\xcb\xa2\x56\x39\xda\x6f\xfe\x3a\x00\xc7\x5e\xb9\xa8\x7a\xa0\xaa\x5c\xd4\x84\x08\x51\xef\xb2\x00\xa3\x71\x42\x22\x7a\xdc\x24\x4a\x6d\xd2\xbe\x4d\x74\x64\x68\xea\xe4\x9e\x37\xfa\xb1\xa2\xa5\x80\x09\x70\xb1\x41\x8a\x6b\x11\x62\xa4\x33\xa1\x73\x0a\x64\xbc\xdf\x44\xbd\xb2\xcb\x7d\x32\x95\x1b\x98\xe1\x08\x5b\x5a\xf5\x53\x28\xaa\xbe\x33\x21\xad\xd1\x77\x48\xc7\xba\x67\x4b\xa7\x63\x6d\x4a\xcb\xb1\x31\x6a\xe6\xda\x6b\x79\x96\xfe\xbc\xb0\xb9\x85\xd9\x15\x6a\x26\xef\xe2\x7d\xa8\xb6\x1c\xc9\xf8\x05\xe4\x7a\x7f\x90\x15\xa5\xd4\xf3\x90\xd0\x9d\x75\xe1\xbe\xea\xbb\x92\x40\xce\x03\x22\x92\x8c\xf2\x38\xed\xc6\x23\x93\x24\x5b\x8e\x1c\x80\xc4\xee\x5b\x6e\x30\xc8\x71\xc4\x8a\x15\xee\xb7\xe5\x84\x58\xc0\x06\xdb\x88\xb3\x95\x45\x8c\x24\x9b\x05\x96\x5b\x48\x32\x60\x3c\xa1\x93\x16\xec\x8d\x16\x8f\xf8\xd6\xfb\x74\x0d\xa6\x6d\xc7\x79\x36\xb2\xd2\x6f\x97\x2f\xab\x7f\x73\x53\x2c\xe4\x28\x02\xe4\x3b\xf1\xde\x84\x4b\xf1\xef\x55\xb9\x35\x0f\xd6\x85\x85\xf6\xf3\xcf\x3f\xed\x26\x16\x46\x4d\xe9\x52\xbe\x47\x17\x08\x2c\x72\xdf\xdd\x02\xd0\x47\xb0\x5e\xc3\x08\xb9\x8f\x09\x85\xce\xe0\x6c\x87\x94\xa4\xfe\xb7\x49\xd0\x00\x7d\x07\x83\x5f\x21\x3f\x94\x8f\x1f\xc2\x2e\xa0\xcb\x6c\x80\xc1\x7c\xe0\x9e\x93\xfc\x78\x93\x2b\xc3\x30\x2e\x4a\xb3\xae\xe8\x48\x05\xf2\xbb\x7e\xa6\x76\x58\x1a\xa3\xbe\x51\x9e\x39\x8f\x61\xec\x45\x78\xc9\xfb\x3b\x21\xab\xdf\xbf\x3d\xad\x26\xd1\x36\x89\xc1\xea\x8d\x0c\xed\x23\x66\x4f\x7d\x14\x05\x6c\xf2\x6a\xb5\xed\xa6\x2e\x27\x46\xa4\xff\x43\x97\x55\xc9\xb1\x87\x39\xe6\xb6\x1f\x5b\xf4\xec\x9b\xfc\xd5\xb9\x30\x9a\x27\x85\xdb\xfa\x59\x98\x0e\x95\x3e\x14\xf3\xc4\xac\x78\x6a\x1c\x1c\x7a\xe9\x70\x7b\x64\xa5\xe2\xe9\xa5\x29\x82\x4c\xc5\x64\xc7\x8a\x75\x70\xb9\xbd\x32\xbf\xf2\x29\xb7\xd0\xab\x1f\x67\xe8\x53\x3c\xc4\x82\x8c\x68\x05\x1b\xbf\xc8\xd8\xba\x71\xa1\xa0\xb7\xea\x8d\x4b\xa1\x80\x15\x8b\xee\xba\x85\xd6\x63\x5e\x02\x5c\x12\x56\xeb\x22\x29\x35\x21\x4d\x96\x5d\x1d\xf2\x70\x3a\x13\x11\x6f\xfc\x18\x0b\x05\x7e\x34\x21\x2c\xe2\x1f\xf9\xf6\xe2\xc0\x24\x49\xb6\x69\x2d\x42\x01\x7c\x4e\x38\x0e\x72\x42\xc2\x54\xe3\xb4\x6b\xd3\x22\x53\x58\x33\xca\x74\x77\xa2\x9a\x66\x5d\xa8\x9a\x7e\x38\x09\xad\xd1\x3f\xa1\x5a\x7a\xd7\x16\x4f\x79\x52\xf2\x6f\xff\xca\x36\xd1\x0c\x30\xe3\x7d\x65\xc5\xb7\xfe\xff\xe2\xaf\x22\xc8\x76\xdb\xd4\xb9\xbf\xb0\x1d\x48\x03\x4f\x6e\x53\x5c\xfe\xdf\xfc\x6a\x27\x98\x2a\x5c\x61\xdd\xd9\xbd\xdb\x54\xf6\x78\x72\x3b\xa4\xb8\xbf\xb0\x1d\xac\x78\xfe\xab\x5f\xeb\x84\xd8\x7b\x38\x2e\xe2\x2e\x24\x08\xf1\x5e\xc5\xd8\x1a\x3b\xcc\xef\x62\x2e\x7a\x2b\xe9\x50\xc2\x84\x3c\x0f\xb0\x2f\x3f\xfa\x44\xdd\x04\xbb\x61\xf3\xad\x2c\xb5\xb3\x64\x6e\x72\xc5\x7d\x12\xeb\x06\xac\xee\xf0\x1c\x4f\x91\x22\xfb\xd1\x9a\xa1\x76\xe9\xba\xe0\x78\x4f\xa7\x68\x88\xef\xef\x50\xfe\x0a\x11\x12\xe4\x89\x73\xb8\x5b\x8c\x41\x29\x6e\xa2\x2d\xfd\x07\x53\x4b\xea\xca\x7c\xdb\xa6\xce\xf3\x55\x16\x48\x3c\x06\x89\xa6\xe4\xa4\x49\xfb\xaf\xbd\x9a\x67\xeb\x60\x39\x6b\xf0\x44\x8a\x1b\x97\x49\x3f\x7f\xb0\x65\x53\x83\x0a\x35\x52\x9a\x33\xee\xfd\xcb\x71\xd3\x4a\x66\xe2\x5c\x04\x7f\x7d\xd1\x06\x64\x5c\xf5\xbf\x3a\x40\xe9\x7c\xe2\x6a\x82\xb0\xe0\x52\x4e\x65\x08\x18\x7e\x3b\x0a\xa9\xc8\x6f\xbb\xdf\x55\x12\xe6\x01\x1a\xf0\xab\xb1\x91\x05\xf0\xc5\x9a\x21\x8e\x02\x4a\xa9\x3b\x3b\xce\x57\xe3\x62\xa0\x99\x0b\xd2\x3c\xd4\x60\x90\x7e\x88\x3a\x90\xc2\xd8\x1b\xc4\x26\xcb\xdc\xa4\x85\xb3\xee\x10\xf0\x86\x77\x02\x58\x5e\xf6\x16\x01\x0d\xa5\x96\x2f\x54\x47\x79\x2c\x0d\x70\x2c\x24\x67\x59\x20\x6d\x5a\x20\x60\xf1\x48\x15\xcd\x94\xe3\x1c\xb5\x1f\x01\x2d\xb8\xc7\xa3\x00\x86\x50\xf3\x1f\x38\xaf\xc9\x85\x05\x8f\x6a\x21\x84\x0b\x89\x40\x8d\xd3\x78\x2d\xee\x3a\x7c\xf9\x2c\xe9\xb9\x9d\xc1\x88\x91\x13\xae\x35\x70\xba\x1d\x4c\x95\xcb\xc1\x78\xb8\x2a\x7b\x55\x53\x7d\x38\xbc\x1e\xfb\xc6\xc8\xa1\xfe\x67\xa9\x8c\xf2\xa1\xfb\x5b\x94\x31\x6f\x90\xd5\x33\x5e\x1b\x76\x97\x7b\xd4\xc2\x5a\xb3\x25\x18\x7f\x6e\xad\xf4\x18\xc9\x6a\xa7\x96\x13\x1a\x53\xa2\x81\xbb\x45\xc6\xbc\x52\x33\x90\x93\x9d\xf1\xc2\xcb\xf3\x2f\xb6\xbf\x88\x66\xa6\x2a\xb3\x54\x97\x81\x34\xe0\x26\x5d\xea\xc7\x93\xcf\x93\x24\x79\xba\x96\x67\x69\x09\x49\xd0\x56\x80\xa8\xdd\x9f\x84\x7a\xd7\xf4\x46\x7f\x70\xb9\xad\xa5\x21\x8c\x57\xae\xdf\x92\xc5\x9f\x2c\x1f\x7f\xe5\xc8\xcb\x58\x7d\x3c\xf9\xcd\x3b\x83\x3e\xbb\x1d\xd2\xc8\x27\x1c\x7e\x5f\xed\x33\x3f\x89\xcd\x51\x65\xc6\x85\x0a\x36\xa2\x8b\xfd\x30\x22\xb4\xf4\x15\x72\x0d\x38\x47\x40\xab\x61\xb7\x6b\x72\x79\x9e\x08\xa8\x4e\x32\x6f\xe8\x24\x21\x1a\x7a\x79\x3c\x1a\x69\x09\x0a\xcf\xe0\xe7\x54\xff\xfb\xf9\xa4\xb6\x4f\x65\x1b\x36\xf7\xda\xf0\x58\x53\x77\xf4\xfe\x02\x65\x14\xa2\x6d\xda\x20\x7c\x96\x23\xde\xa1\xc9\x91\x64\xe0\x36\x76\x77\x42\xbf\x60\xf7\x76\x43\x2d\x7c\x94\x25\x5b\x23\x81\x96\x22\x84\xbc\x8d\xc7\xe0\xdd\xcb\x96\x97\xbd\xe4\x9a\x96\xae\x5d\x69\x2d\x8b\x0b\xd4\x89\xbd\x6b\xfc\xd2\x92\xe4\xac\x27\xb9\x1b\x71\x77\x6a\x4f\x71\x5a\x1f\x6f\x8c\x6c\xae\xc5\xcb\xb0\x72\x9c\xa7\x95\x63\x5a\x61\x6b\x69\xc9\x01\x31\x65\xaa\x29\xe0\xbd\xe5\x85\xd8\x4e\xb0\xfd\xbc\x29\x06\x31\xf6\x01\x9f\xcf\x06\x1d\x9f\x09\x53\xce\xf2\x38\xc5\xa2\x82\x35\xf2\xce\x84\x16\xcf\x3b\xb4\xfa\xaf\x9a\xee\x7a\xb5\x3c\x57\x3f\xee\x01\x11\x5e\xfa\x08\x49\xaa\x6a\x8d\xb8\x07\xa0\x10\x8c\x50\xb2\xed\xd9\x91\xc9\xcb\xea\xb6\x0b\xe7\x91\xec\x59\xbe\x87\xc2\x49\xf4\x39\x12\x09\x2b\xba\x26\x71\x74\x78\x4d\xc8\xb0\x69\x43\x58\x56\x8e\xe9\x66\x7a\x76\x34\x2e\xb7\xa6\x39\x0f\xea\x1e\xdd\xf2\x8a\x4b\xe7\x48\xa3\xa7\x9b\x65\x79\x2f\x86\x80\x1b\x96\x15\x2d\x44\x10\x56\x87\x45\x4b\x4d\xba\x1e\xa7\xfd\xbd\xc1\xf4\xeb\x8f\x49\xe7\xed\x78\xdd\xa3\x33\x94\x10\x21\xa3\x49\x15\xa2\x20\xc0\xe4\x2e\x58\x97\x24\x3f\xcc\x86\xc3\x38\x75\xb2\x41\xbe\x86\x38\x8b\x6a\x88\x68\x93\x12\x1b\xe4\xa9\x29\xd0\xed\xc2\x42\x15\x70\x98\x32\xb3\xff\xb7\x4c\x6e\x79\x02\xd5\x32\xd4\x33\xa5\x9d\x21\x57\xf8\xa3\x24\xbc\x7c\xdb\x3d\x3a\xd5\xae\x7d\xc6\x53\x9a\x86\x76\x4d\x61\xfc\x28\x1d\x80\x96\x82\x8b\xba\xc9\xae\xab\xa2\x07\x8e\x28\xf0\x03\x42\xa7\x9a\xd1\x28\xd1\xad\x10\x6f\xf4\x38\xbd\xdd\xe3\xc1\x01\xd7\xba\xa6\x70\x15\xa6\x90\x31\xc6\xa2\x97\x3b\xfe\x0c\x49\x7b\x8d\x5c\x89\x30\xd9\x82\x43\x11\xde\x91\x28\xc9\xa2\xc6\x7c\xd7\xbd\x5a\xb4\xbc\x2e\x92\x6a\x41\x37\xb7\xbd\xb8\x7c\xaa\xe5\xa5\xfc\x85\xcb\x80\xb0\x63\xd6\xd1\x0a\xf4\xe9\x90\x99\xe1\x39\xaa\xae\xdd\x65\x0b\x95\xf7\x48\x65\xe3\xdd\xc9\xee\x2f\x04\x3c\x5e\x35\xe2\x85\xf6\x38\x21\x87\xa7\x0f\xc9\x31\x6b\xce\xf1\xeb\xb0\xf7\xcc\x74\x9e\x26\x21\xa4\x71\xc2\x3e\xde\x48\x3b\x74\xc0\x85\xed\x76\x14\x27\x76\xa3\x58\x47\xc5\x1c\x93\xf1\x98\x1b\x83\x72\xdc\x60\xc8\xb7\xd8\xae\xe6\x1a\x44\x88\xbc\x0a\x50\xb5\xb7\x62\xc4\xb4\x5c\x98\x8b\xca\xde\x8f\x70\xd9\xea\x0f\xdc\x04\xfa\xce\xb3\x5e\xdf\xe6\x5a\xc3\xd1\x3d\x89\xf4\xa6\x44\x3b\x5a\x13\x93\x9d\x0b\xde\x2b\x87\xda\x6b\x71\x62\xc5\x77\x14\x21\xb1\xb0\x32\xe5\x84\xf2\xd3\x62\xdc\xeb\x59\x80\xa6\x10\x90\xde\x25\xe4\x2a\xa8\x81\x82\x4d\xe0\x8a\x7d\x37\xcb\x2d\x81\x69\x7f\x1e\x85\x7a\xe2\xb4\x39\xf4\xc2\x62\x35\xa7\x6c\x5a\x2a\x58\x17\xb1\xe1\x43\x32\x84\x7c\xc8\x74\x66\xe7\x0e\xed\x96\x56\xf6\xe2\x51\x71\xae\xe7\x08\xe1\x9f\xbd\x2e\xe5\x7a\xc7\x19\x25\x60\xb5\xca\x5a\x43\x05\x1d\xd2\x84\x00\x01\xe1\xff\xff\xdb\x29\x04\xd1\xe2\x91\x6a\x57\x83\xaf\x9d\xf7\x8f\xf3\xe0\xe9\xe9\xc6\x8f\x53\x6f\xcf\xd6\x8b\xd9\xd0\x10\xfe\x31\x52\x39\xc4\x53\xb3\x1d\x92\x55\xbd\x3d\x21\x53\xf8\x73\xa8\xe6\xef\xd0\x90\x20\x88\xff\xc3\x88\x26\xcf\x43\xbf\x7f\xbe\x6e\x12\x33\xb2\x69\xe6\x1e\xa1\xb8\x2e\xbb\x47\xa8\x0e\xcc\x21\xe8\x49\xec\xd6\x1e\x8c\x1e\x31\xb1\xa4\x2a\xe5\x31\xf2\xe4\xbd\x46\xea\x81\x82\x0f\xc4\x22\xf9\x98\xd9\xad\xcf\x76\x3e\xe5\xc3\xff\xc4\xbc\xe1\x5b\xbd\x08\x75\x1f\xd6\xa0\x16\x21\x3b\x3b\xf1\x89\x86\x05\xab\x59\x9a\xc6\xc8\x6d\x3c\x9e\x86\xb0\x79\x0d\x0c\x82\x43\xed\x35\xd3\x8d\x13\x68\x34\xd1\x73\x15\x84\x88\x9c\x44\x41\x86\xd8\xe9\x92\xa9\xc0\x05\x06\xbd\x50\x37\xe4\x84\xba\x5e\x07\xbf\xbc\x38\x43\x6a\x07\xd2\xf2\xc5\x73\xd8\xd5\x21\x75\x85\xf7\xd9\xdd\x74\xd3\x26\xf0\xef\xf3\xc6\xca\x41\xaf\xed\xcc\x84\x37\xf8\x9d\xb7\xf3\xf2\xfc\xa1\x76\x6e\xe3\x94\x61\xee\x52\x7e\x76\xaf\x43\x4b\xd1\x4d\x80\xdb\x1c\x04\xf9\x16\xe9\x1e\x62\x3f\x93\x63\x92\xfb\x29\x4a\x6b\x54\x59\x4d\x03\xe3\xfb\xcc\x13\x45\x16\xaa\x95\x31\x2e\xfc\x67\xc3\x82\xac\xbd\xaf\x13\xf6\xe8\xf8\x84\x64\xd3\xdf\x76\xf2\xdf\x7e\xa2\xf9\x36\xed\xef\xba\x27\xf8\xe8\x6d\x50\x4c\xd1\x64\xbb\x31\x69\x3d\xff\xbc\x1e\xbb\xc4\x4a\xec\x74\xb0\xa3\xab\x4f\x5e\xcb\xe7\xb0\xe7\xa6\xc0\xf6\x20\x40\xaf\xda\x9c\xcd\x5b\xa4\x2a\x80\x77\xa6\x25\x82\xb0\x4b\xf6\xe2\x62\x94\x18\xb1\x34\xf0\x64\xae\x40\x41\x99\xfe\x95\x2a\x95\xa9\xc2\xdb\xa2\xdc\xca\xad\x44\x78\xbe\xeb\xe0\xd9\x4f\x27\x28\xb8\xef\x1a\x5b\x98\x1c\xf9\xbd\x67\xe4\x7b\x91\xa2\x0b\x9e\x91\x3d\x30\x69\x8c\x81\x26\xdd\xd5\x08\x14\x39\x3c\x88\x3f\x25\x6e\xf9\x47\xc1\xe8\x5f\x54\xa8\x49\xc0\x1d\x89\x8e\x02\xfd\x43\xfd\x30\xb5\x10\x4d\x42\xa4\x74\x8a\xac\xb3\xff\xc3\x84\xf2\x95\x63\x84\xd7\x29\x06\x26\x47\x77\xec\xd1\x51\xa8\xab\x1d\xa5\x21\xde\xcf\x33\x71\xb8\x45\x00\xf3\xd6\x24\x04\x33\x6f\x35\xad\x9f\x03\x9b\x8c\xb8\x4d\x87\xc5\x57\x8e\xa7\x76\xcd\xe5\x65\x91\xee\x9b\x21\xdb\x35\xe9\x89\x68\xb4\x17\x3e\xff\x6f\x27\xc1\xc6\xb6\x6f\xca\x01\xd2\x9e\xc0\x0a\xb9\xee\xaa\x8e\x5a\xc9\x74\x17\x81\x45\xf9\x76\x14\x7a\xd8\x27\x9a\xd4\xe4\x73\xdb\xaf\x32\x8a\x56\xd8\x01\x25\x93\xd7\x5a\x4d\x43\x7d\xe6\xf5\x71\x2f\xee\xc6\x26\x21\xcd\x8d\xdd\xd4\x24\x91\x08\x4e\xd9\x8b\x7e\x59\xf2\x41\xf9\x4c\x08\xfa\xaf\x20\x71\x42\xce\xc8\x12\x07\x1f\x12\xce\x51\x5b\x99\x1b\x76\x4f\xdd\x0e\x62\x69\x49\x9b\x2d\x22\xcc\x2f\x27\x58\x8d\xb0\x6c\x7d\x13\xf5\x51\x39\x99\xd4\x1a\x61\x14\xc2\x25\xb1\x0b\x9a\x0f\x6a\xdb\xf2\x1d\xb7\x67\xe8\x13\xa9\x66\x37\xd6\xf5\xf7\xa7\xd6\x75\x57\x9a\xf1\xb2\xb8\xad\xf0\xbc\x91\x7d\xca\x31\xed\xf0\xab\x59\x51\x8a\x35\x8e\x2a\x59\x31\x24\x78\x27\x97\x49\x4c\x8d\x5d\x8d\x59\x0d\x8e\x49\xb6\xf6\xdb\x04\xa3\x32\xc3\x71\x61\x11\xf7\xa0\x9b\xf0\xb7\x89\x0d\xf0\xb7\xa7\xf2\x7a\xa7\x0a\x9d\x64\xe3\x3c\x2e\x06\x7e\x9a\x21\x8c\xb8\x43\xa8\xaa\x3b\x54\x1b\xd9\xc8\x12\x53\xc6\x89\x9d\x09\x9c\x07\x34\x89\x15\xad\x56\x5d\x31\x76\xc3\x73\xb4\x10\x55\x5b\x92\x55\xf1\x5f\x55\x3d\xe6\x2c\x79\x9a\x0b\x75\xa8\xfa\xd0\x86\x0d\x62\x5c\xda\x4b\x6f\x79\xdd\xd9\x33\x94\xba\xe6\xf1\x46\x15\x81\xfa\xd6\xf5\x7d\x32\x2e\x15\x8e\x1b\x96\xe7\x5d\xdb\xb4\x7b\x9f\xe7\x52\x62\x39\xee\x55\x39\xe6\x4c\x78\x6b\x37\xb9\x33\x83\x65\x0d\x65\x81\x0f\x7c\x1d\xab\x67\xfb\xb9\xb5\x48\x1e\xbd\x96\x95\xaf\x0d\xc3\x3f\x13\xc3\xed\x0e\x2d\x3d\xdd\x41\xbc\x61\xa4\x82\x20\xec\xe5\x49\x08\xdb\xa5\x28\x8e\x35\xba\x35\x45\xad\xfc\xea\x62\xdb\x99\x97\x17\xa5\xcb\x6b\xd0\x12\xfa\x6e\x44\x84\xba\xef\x52\x59\xef\xf5\xac\x78\xa1\x16\x4d\x12\x31\x7b\xda\xf9\xee\x95\xc5\x23\x0e\xb1\x9c\x6c\xcd\x52\x19\xe0\x3c\xab\x2c\x21\xea\xc2\xb2\x2d\x14\x25\x39\x21\x77\x03\x93\xa6\x63\x78\x5c\x2f\x2c\xf8\x74\x87\x34\xea\xcf\xb1\xe9\x68\x96\x17\x82\x84\xf0\xe2\xbe\xd5\xb7\xaa\xb8\x2f\xe1\xb7\x93\x78\x43\x9e\x35\xaa\xe9\xff\x94\x0c\x25\x2f\x51\x14\x3e\xad\xbb\xe1\x1c\xf6\xd5\xb6\xdc\xd7\xda\x6a\x60\xfc\x1a\x16\xb0\x97\x6c\x7d\x8a\x74\xfa\x84\xd4\xab\xab\xb9\x1b\x42\x98\xbc\x77\x38\xd5\x39\x8d\xb7\x80\x81\x20\x36\x85\x40\x8a\xdc\x99\x04\xfe\xa8\x88\x1c\x02\xbc\xf2\x9e\x0b\x23\xf4\x71\x06\x78\x24\xbc\xff\xf1\x08\x9e\xdd\xae\x19\x38\x20\xb6\xd5\x12\x73\x70\x9f\x14\x0c\x30\xb2\xe5\xcf\x4c\x25\xf7\x2b\xf3\x6d\x35\xbd\xaf\xb6\xca\x47\xdb\x78\xab\xd0\xbd\xf8\x29\xde\x24\x4e\xde\x6e\xea\x13\xac\x26\xb1\xab\x60\xa0\xda\x86\x97\x03\x6d\x09\xa6\x4a\x7b\xa5\x05\xaf\x33\xb0\xbb\x43\xbd\x00\xe7\x7d\xdc\x0a\x58\xd3\xdf\xa1\x02\xd3\xef\x50\x4d\x26\x89\xfb\x83\xb2\x68\xed\xe4\xe1\x2c\x7a\x29\xf5\xb0\x1f\xa2\x3e\x1c\x6f\xd8\x27\xdc\xe3\x56\x33\x3d\xb7\x1f\x20\x6f\xbf\x8e\x4d\x46\x6c\xe7\xf1\x8a\xbc\x07\xbd\xe7\x23\xef\xde\x0e\x2a\xc5\x90\xe7\xc6\x50\xba\x8f\x7d\xc6\xc7\xea\xd5\xdb\xc6\xb3\xdf\xdb\xf9\x0c\x69\x52\x74\x07\x71\x69\xbb\x25\x62\x06\xa5\x93\xb6\xc8\xc3\x6a\xe7\x33\xd5\x84\xa0\x58\x5f\x63\x27\xfd\x09\x89\xe5\x5c\xf0\xe0\xc9\x7e\xb5\xfb\xb5\x3c\x17\x77\x37\x5a\x5d\xd8\x44\x9f\x71\xab\x0c\x30\xcd\x9f\xdf\x66\x13\x77\xfe\xae\xa7\x5c\x43\x0d\x9f\xf8\xe5\xce\x01\x0e\x12\x5d\x21\xb5\x15\xf2\x51\x94\xfd\xf4\x3b\xa6\x36\xbc\x97\x0e\xb7\x8b\xad\xb4\x17\x77\x61\x04\x5b\x0d\x4d\x6e\x4f\x69\x50\x4a\x90\x2a\x9b\xda\x32\xee\xee\x77\xaf\xc1\xb3\xe4\xab\x1b\xf0\x14\xc2\x57\x16\x8f\xc8\x78\xf9\x17\x13\xe6\x3a\x53\xb4\xfa\x11\x55\x78\x9e\x40\x3f\x14\xf3\x71\xef\x76\x4d\xe4\x2b\x58\x10\x9d\x76\x8b\xaa\xee\x31\x4d\xc5\x86\xec\xf9\xf5\xb8\xbb\x1e\xb7\x6a\x06\x3a\x9f\x20\x4a\xd6\xb3\xd5\xf2\x93\x6f\xed\x0b\x6b\xce\xbd\x1a\x0d\xb8\xfa\x61\x4f\x48\x62\xaa\xb0\x2f\xf3\x09\x89\xce\x57\xba\x42\xd1\xf8\x66\x44\xba\xff\x17\x6a\x1d\xef\x51\xdc\x27\xa0\x3f\xe0\xb0\x35\xef\x79\x69\x04\xfb\x54\xd9\x75\x35\x63\xa1\x83\x23\x98\x44\xf6\x2f\xc7\x53\x6f\x74\x79\xf9\xb0\x6c\xd1\xa9\x8f\x03\x14\xe7\x1a\x20\x1c\x4d\x7d\xc0\x76\xcf\x76\x73\x2b\x9c\x5e\x64\xd2\x3f\x26\x37\xac\x26\xde\x64\xbb\x18\x66\x59\x39\x10\x4c\xa6\xd7\x7c\xf4\xc9\xc5\xb4\x8e\xea\xf2\x72\x3b\x37\x71\xd0\x0c\x56\x7b\xb1\x00\x53\x3d\x35\x05\x68\xf5\xb2\xbb\x26\x4f\xc1\xa4\xc2\x20\xfa\x1e\x53\x95\xbe\xc7\xb4\x7b\x47\x19\x55\x7e\x69\x13\xa1\x9a\xdf\xc9\x5a\xb7\x3b\xcb\x32\x95\x6e\xe9\x11\x7c\x57\x27\xe4\x1e\x67\xd9\x8a\xe5\x38\x31\x50\xd6\xd7\x73\x57\xcb\xc6\x1e\x02\xc3\x54\x39\x26\xe8\xcf\x20\x1e\x16\x36\x59\xdb\xef\xea\x7e\x42\x1b\x74\xd9\x23\xa6\xe6\xf9\x28\x30\x47\x6e\x4c\x82\x42\xdd\x69\x17\xbb\xca\xdf\xb8\xd9\xa4\xe2\x85\xa1\x42\xf7\x4d\x8c\xc4\x9a\x23\x86\x9c\xb8\xb1\x8b\x0a\xd8\xe3\xa9\xf7\xe7\x00\xeb\x69\xd6\xd5\x12\xb3\xd7\x5b\xa1\x09\xe4\x7e\x12\x1b\xf4\x3d\x02\x16\x14\xa5\xb5\xc9\xd0\xac\x4b\xa5\xb0\xd1\x4e\xaa\xba\x39\x5f\xf6\x22\x4d\xfa\x67\x3c\x39\xc3\xe4\x43\xed\xbe\x62\x38\x43\x8f\x0f\x2f\x69\xb6\x13\x1c\xe2\x8f\x37\x0d\x57\x40\x1b\xdc\xc4\xc0\x6e\x7a\x82\x85\x08\x4e\x78\x6f\x9e\xe1\x56\xa9\x1a\xf6\xa8\x02\x21\x1b\x93\xe3\x26\x18\x7f\x6e\xbb\xd9\x70\x68\x53\x14\x9b\xb1\xa5\x7c\x14\x91\xdb\xc5\x0e\x5e\xdc\x5a\xdc\x05\xca\x6a\x79\x59\x76\x5d\xf1\x2e\x07\x45\x5b\x04\x12\x74\xd7\x09\x7a\x75\xfb\x3b\x7a\x8d\xd9\xa8\xd4\x2a\xa7\x50\xae\xb0\x45\x2a\xff\xea\xd9\x40\xb1\xd9\xb0\x89\x4b\x18\xfd\xc4\x04\x2b\x01\x0b\xd4\xd9\x09\x15\xdc\x44\xa2\x0b\x7d\xb2\x56\xa7\xee\xc9\x51\xfc\xf9\x40\x9d\x38\xb0\xed\xb6\x45\x8c\xa6\x1f\x71\x1b\xf0\x1d\x57\xec\x50\x74\x97\xbb\x24\x2c\x6b\x0f\x26\x84\xa1\x14\xd3\x7e\xd4\x4f\x66\x3a\x55\x9c\x88\x77\xb8\x5b\x2c\xa2\xb1\xd0\xcf\x6d\xbb\x94\xcf\x1b\x18\x54\xbb\xba\x28\xd1\x44\x81\x0a\x7b\xc0\x11\x98\x01\x09\xf9\x76\x14\xe2\x90\x27\x3b\xb5\xb0\xad\x1a\x1c\x88\x3f\x45\xb1\x09\x59\xc0\xcc\x76\x6b\x61\x51\x56\xe8\x2b\x13\x94\x25\x10\x39\xdc\x07\x20\x0d\xe5\x86\xf3\x50\x93\xd7\x84\xce\xcd\x6c\x5c\xca\xe7\xdc\x6e\xfc\x68\xf7\x36\x79\xc1\xde\x74\xd5\x1c\xdc\xc4\x1d\xe2\xdb\x3f\xa0\x89\xba\xab\x13\x22\xe6\x3c\x1b\x9a\xb4\x8c\xbb\x33\xa1\x90\xf2\xc7\xd8\xfd\xa4\x0e\x35\x09\x1d\xde\x9b\xd1\x4e\xd4\xef\xd2\x52\xbb\xc8\xc6\x69\xef\xbf\xfc\xff\x3a\xfb\x85\xb8\x5b\x53\x63\x7a\x44\x25\xe4\x47\x8d\x84\xb5\xcd\x38\x2d\xbd\x13\x5d\xa3\xc5\x06\x79\xbb\x96\xd6\xe6\xd5\x1c\xac\x7e\xc0\x33\xe2\xbc\x92\x30\x72\x1e\x8c\x8b\xdb\x44\x40\x8c\x87\xa3\x3c\xdb\xf0\xe5\x53\x75\x56\x98\x09\x46\xf5\xa0\xf1\xe2\xd1\xdc\x6b\xf2\x89\x80\x28\x28\x26\x3f\x5e\x10\xf8\x14\x2a\xe3\x43\x6c\x95\x81\xaf\x3b\xac\xe5\x26\xed\x9a\xd8\xeb\x06\xea\x20\x75\x77\x27\x27\x64\xc9\x94\xdb\x78\xb8\x3a\xce\x0b\xd9\x08\x24\x23\x8b\x38\x3b\x6b\x68\xb1\x16\x5d\x23\x42\xd3\xb8\x96\x0f\xe8\xba\x3e\xa0\x6c\xac\x6f\xe2\x74\x5f\xf5\x5d\x2a\x1d\xef\x66\x84\xaa\x0f\x54\x23\x03\xc0\x8c\x9f\x51\x0d\x15\x65\x11\x51\xb4\x8b\x48\x32\x48\x82\x51\xf9\xf4\x24\xf4\x74\xbf\xdf\x44\x44\x35\x65\xe2\x06\x58\x2b\x84\xbc\xe7\xd8\x80\xe7\x9c\x5f\x64\xbb\x59\x92\x38\x4f\xb0\xe5\x65\x02\x36\x07\x90\x73\x33\xb6\x2e\x4b\xb2\x16\x89\x5e\xd7\x25\xed\xa8\xdf\x1e\x67\xa9\xf5\x43\x4d\x89\x72\x24\x86\x10\xa0\xef\x6b\x79\x6c\xd3\x9e\x03\x91\x22\x9d\x7e\xec\xe6\x8e\x88\x72\x61\x81\x44\x4d\xf5\xef\x4c\x6a\x02\xeb\xa1\x44\xf8\xe9\xce\x01\xea\xf0\x81\x3f\xe8\xf0\x54\xaa\x2d\x46\x36\x16\xa2\x04\x2a\xff\x12\x05\xa3\xf3\xef\x47\x24\x57\xff\xfd\x1a\x0e\xbe\x56\x38\x8e\x4b\x69\x9e\xd7\xa2\x6f\x0d\xa9\x3f\xe5\x97\xe3\x71\x35\x83\x64\x34\xe2\xc6\xc4\x77\x55\x4e\x26\x3b\xf0\x25\xaf\xbd\xd6\x5e\x58\x7c\xa2\xba\x6a\x14\x8a\x21\xb8\xe0\x61\x03\xd5\x45\x63\x83\x87\xc0\x9d\x4a\xa3\xf1\xaa\x8e\x8c\x55\x97\xf8\x00\xc4\xf8\xc0\xad\x4c\xaa\xaa\x45\x10\xfa\x93\x24\xe6\x5a\x0c\xb3\x75\x8b\xb4\xcf\xdb\x2f\x86\x54\x1e\xa2\x36\xf2\x0f\x18\x91\xf2\x0f\x9f\x48\xc9\x29\xec\x86\x4d\x67\xaa\x45\x17\xe3\x55\xe4\x24\x3c\x12\x6e\x69\x49\x56\x84\x3b\xd4\xf2\x5d\xcb\xf2\x2a\x09\x62\x5b\xe2\x5b\x98\xf1\x72\xc2\x0a\x81\x69\xdf\x26\xd9\x0c\x96\x72\xec\xed\xe7\x21\xc9\x82\xdb\xbe\x13\x85\xfa\xd5\x29\xea\x1c\x7d\xc5\xe4\x73\xc1\x59\xfe\x1c\x3f\xc2\x1f\x90\x81\xa0\xe8\xba\xca\x5f\x4d\x98\xc4\xf1\x09\xaa\x8c\x99\x27\xc3\x8a\x11\x43\x14\x4a\x55\x67\xe9\x02\xbe\x7c\xf8\xc8\x9c\xbb\x27\x34\x76\xcf\x72\x29\x75\x76\x9b\x8c\x12\xc0\x2e\xc0\xe5\x80\x66\x84\x21\x30\x3b\x95\xf6\xbf\x3c\x7f\xa8\xbd\x39\x88\xdf\x7c\xd3\xd6\x54\x37\x4e\x11\x9a\xf5\xd4\x94\xc8\xc2\x2b\xce\xf6\x30\x25\x84\xc7\xf1\x28\x20\xe2\x8e\x4f\xbd\x59\x57\x49\xee\xda\x78\xc3\x0b\xee\x4b\x4f\xc3\x7d\x4a\xfb\x1b\xcf\x50\x7e\xbf\x01\x05\xf8\xc5\xc0\xa4\xa9\xc6\xb1\xae\x17\xd5\x76\xee\x6b\x22\x9e\x44\x0b\x52\x82\x72\x4e\x49\xb5\x68\xb8\x35\xe7\x6e\x0d\x73\xed\x3a\xe2\x0c\x0d\x8a\x5a\x5e\xf9\x54\x0c\x90\x54\xa7\xa0\xe5\x0d\x50\xcf\xf9\x60\x69\x9c\x6e\x82\x04\x87\xf1\x8e\x87\xfd\x9c\x0b\x31\x71\x6d\x90\x7c\xc6\x26\xf3\x0f\x6b\xea\xd2\x9e\xd3\x6d\x7b\x25\x3a\x1d\xa2\x30\x5b\x6b\x53\xb6\x54\xc6\xe8\xeb\xff\xba\x81\xad\xfa\x62\xbb\x18\xc7\x42\x99\x55\x09\xd9\x40\xab\xb8\xec\xe3\xd3\x24\x5e\x07\x22\xee\x55\x29\x03\x0b\xb3\x17\x15\xdb\x7f\x47\x50\xba\x7f\xc7\x0c\xe9\x0b\xec\x75\x63\xd2\x62\x1c\x53\x1b\x1b\x46\xd0\x72\x1c\x7d\x3e\x94\xdf\x8b\xad\xee\x20\x33\xa9\x49\xb6\x74\xfb\xf0\x59\xdb\x72\x50\xf0\x6f\x4a\xaf\xcb\x3c\x1b\x55\xb1\x08\x16\x7b\x95\xd2\xa8\x69\x6c\x7c\x96\xbc\xc7\x57\x8b\xb8\x17\x9b\x3c\x56\xb0\x1f\xde\xfa\x31\xe2\x6c\xff\x47\x62\xd4\x9d\xc4\xc4\x43\x4c\xfe\x1f\x1a\xbc\x2d\x57\xc7\x49\xdf\x27\x8d\xa2\xdb\x47\x97\x7c\x79\xf2\xe9\xfa\x3a\xfb\xc5\xf6\xc2\x82\x23\x65\x23\xfa\xfd\xa6\x1b\x79\x72\xcc\x4a\x1d\x7f\x10\x85\x5a\xde\x1f\x50\x99\x63\x94\x67\xab\x89\x1d\xee\xa3\x28\xfc\x7e\x44\xee\x15\x0f\x50\xe6\x00\xa9\x06\xa5\x33\x85\x17\x56\xbf\x8a\x68\x61\xd6\xc9\x4e\x23\xce\xdb\xef\x90\x13\xbe\x09\xe1\x95\x08\x2f\x91\x54\x83\x4d\x7b\x85\xc3\xd7\xab\x91\x6a\xf5\x55\x6a\x5b\x19\x78\x80\xc3\x6e\x77\x60\x8b\xd4\x6e\xb5\x6a\x2e\x4c\xd5\x1f\xcb\x71\x13\xd4\xb0\x1b\x97\x71\x37\xcb\x41\xdb\x55\x21\x1f\x56\xf5\xa9\xd5\x4c\xc7\x6f\xd8\x9a\x51\x30\x65\x79\x51\xe8\xa1\xa7\xd9\x66\x5a\x6f\xfc\x3e\x26\xab\xf7\xc7\x53\x2d\x49\x70\x98\x0b\xa8\x1e\x08\x84\x42\x2f\x39\x14\x84\x2e\xf9\x5e\xa0\xe9\xd9\x51\x89\xe0\x94\x24\xb9\x97\x6b\x92\xc0\xe8\xf1\xdc\xa3\xd2\xf2\x30\x2b\xb3\x1c\xa3\x4e\xfd\xde\x67\x82\xfb\xf4\x07\x93\xd0\xb2\xba\x84\x09\x25\xff\x30\x15\x4d\xa3\x1d\x14\xf7\x44\x94\x43\x86\xf0\x84\xc0\x82\xc7\xa6\x75\xf2\x5f\x3a\xdc\x7e\xdd\xa4\x2f\xb4\x42\x46\xf3\xd6\x84\xc8\x95\x6f\x35\x18\x5b\xb6\x7b\x76\x68\xaa\x77\x4f\x3e\xca\x17\x9d\xda\xac\x1c\x4f\x3e\x4b\x24\xd0\x74\x2d\xce\x87\x82\x55\xab\xde\x3f\x68\x28\x68\xd7\xc8\x31\xa1\x30\x87\x36\xef\x0e\x4c\x5a\xce\x56\x59\x19\x8b\xcf\xe3\x4f\xf7\x75\x02\x86\x42\x42\x48\xbc\x84\x1b\x34\xe0\xca\xb8\xbb\x6e\xab\x8d\x8f\xe5\x8b\x20\x09\x2c\xc7\x53\xbc\x12\x27\xa9\x33\xb2\xae\x8f\xab\x22\x03\x6e\x57\xf0\xd2\xa9\xd5\xad\xe2\xdd\x7d\x4c\x8c\xf1\x22\x1b\xda\x4f\x53\x25\x6c\x8f\x64\x90\x98\x68\x73\xdb\x41\x40\x79\x1f\x5c\x3d\xb1\x60\xef\x03\xba\x01\x69\xd1\x0f\x5d\xba\xa6\x5d\x33\xf7\x86\x11\x82\x7c\x10\x11\xf4\xe8\x23\xcc\x60\x2f\x1e\xf3\xe5\xdf\x92\x2d\xe7\x44\xc4\x9e\x61\x21\x62\xdd\xbf\x4d\xbe\xf4\x70\xb8\x70\x87\x7f\xf8\x69\x87\xbe\x25\x72\x85\xda\xc3\xde\x71\x13\x18\x41\xa8\xf4\xaa\x50\x11\xb8\xd5\xc0\xa4\x7d\xd5\x03\xe0\xf1\x94\xd1\x80\xbd\xea\x2e\x40\x8e\x9b\xb2\x95\xc4\xac\xda\x04\x64\x3c\x5d\x0a\x69\x59\x24\x14\x85\x86\xcc\x7b\xdd\xd3\x45\x48\xfd\x13\xa1\x2c\x62\x4d\x3b\x4e\x50\x6f\x21\xa9\x50\x68\xbd\x1c\xa2\xe9\x85\xda\x3f\xbc\xea\x3d\xb9\xa7\xe1\x64\xcb\xed\xd5\x24\xdb\x94\x71\x23\x22\x9b\xe4\xfd\x36\xdd\xdb\x71\xc9\xef\xd0\x6e\x0e\x4c\x89\xd1\x0d\x69\xb7\xcb\x24\xf9\x76\x79\xaa\x01\xff\xa5\x76\x39\xb0\xb9\x5d\xdd\x9a\x09\x06\xdc\x8f\x6b\x32\x9b\x24\x62\x30\x9d\xf2\x54\x51\x55\x92\x6d\x48\xb7\x15\x91\xe4\x31\x42\x1d\x1c\xa3\x66\xd8\x38\x4d\xcc\xe6\xda\x38\xa1\xfc\xf0\x28\xe5\x87\x47\xa9\x17\x06\xb9\x7c\x06\xe8\x87\x46\xca\x79\x37\x5b\xe5\x98\xa5\x98\x2f\x51\x37\x24\xb7\x69\xcf\xa1\x03\xdc\x5a\x22\x12\x14\x35\x39\x8a\x9d\xb3\xee\xe0\x72\xbb\x48\x32\x34\xae\x3d\x50\xd6\xaf\xb1\x0c\x94\x5d\xb3\x49\x92\x6d\xee\xa1\x90\xf4\xea\x84\xe5\x88\xd1\x73\x15\x3b\x15\x06\x34\x0a\x41\x1b\x55\x20\xc8\xe8\xc2\xd4\xeb\x83\x06\xba\xde\xe1\xf6\x9a\xb5\x00\x17\x21\x7e\x3a\xc5\xf2\xdc\xa0\x1f\xaa\xb7\xcd\x74\xac\xfb\xa2\x32\xde\xdd\xfd\xa8\x04\x76\xc0\x41\xbd\x37\xe1\x84\x70\x23\x2e\x62\x71\xb7\x47\xce\xf2\x75\x12\xf1\xfa\x7a\xc3\x4b\x5f\x6c\x17\x59\x02\x87\x0e\x8f\x74\xac\x6e\xcd\x3f\x00\xaf\xe1\x7b\x9a\x72\xde\xae\xc9\xfb\x71\x92\x60\x53\x12\x35\x71\xac\x9b\xd8\xcf\x4f\xcb\x63\xc4\x6d\x5d\x6f\x32\xe9\x18\xa7\xf1\x5a\x96\x0f\x09\xa6\xfe\x0e\xf5\xa3\xdf\xf9\xa4\x27\x31\xb4\x69\xc9\xc8\x6f\x4c\x74\xb5\x34\x3d\xc0\x1e\x90\x65\xdf\xf4\xed\x5e\x78\x62\x93\x7e\xdd\x59\x28\xa8\x2b\x0a\xc1\xdd\x2d\x6e\x1d\x5a\x74\x88\x17\xaf\x23\x81\xad\xe1\x13\xb0\x5c\xec\xee\x3c\xe9\x29\x1f\x66\xd3\xbd\x15\x14\xcd\xbf\x1b\x11\x0f\xfa\xbb\x93\x9d\xd2\x3d\xaf\xbd\xd6\x36\x49\xe2\xb4\x91\xd4\xbb\xc4\x95\xc1\xb1\xbb\xfd\xaf\xd5\xbc\x78\x74\xcb\x87\xdc\xb9\x41\x8f\x04\x83\x4f\x50\x25\xa8\x01\x9e\xa5\x40\xeb\xcf\xa6\x0c\xac\x42\x4a\xea\x5c\x10\x41\x52\xc0\x62\x0f\xcb\x45\x3d\x61\xf4\xdb\x20\xdb\x34\x58\x9e\x10\xc5\x5e\x65\x50\xf1\x55\xca\x9c\xf3\xb8\x58\x2f\xf6\x12\xb1\xf2\x04\x19\x98\xdd\x63\x62\x32\x20\xe7\xd2\x7e\xc5\xe4\x06\x8f\xed\x03\xa4\xd4\xd8\x99\x5e\xc3\x9b\x91\x93\x28\xe4\x53\x83\x6c\x68\x8b\xba\x6a\x0a\x19\xa6\x9c\x9f\x5a\x65\xab\xd8\xce\x61\x10\x48\x64\xee\x24\x8b\xcc\x9d\x9c\x1a\x84\xfa\xa4\xca\x17\x5c\xce\x80\x31\xf4\x73\x4e\x50\x7f\xce\xc4\xcf\x2c\x5b\x17\xa4\x0f\x32\x63\xa8\x90\xe3\x6d\xdf\x74\xcb\xb9\x02\x1e\x83\xda\x4a\x9c\x24\xe3\x61\xac\x62\xb5\xbe\x1d\x79\x86\x39\x55\x67\xa2\x1a\x72\x60\xbd\xd8\xdf\xf2\x1e\x73\xf7\x51\xce\xc1\x46\x8a\x02\x14\x7a\x01\xdf\x8b\xc8\x1e\x5d\x18\xd3\xba\x86\xb8\xc5\x45\x8d\x24\x5a\x5e\xe1\xf8\x87\xa4\x8f\xf9\x9f\xdc\xca\xab\x94\x1c\xd2\xaf\x9d\x16\xf4\x39\xf2\x52\x30\x0d\x72\x9d\x00\x14\x0d\xef\x13\x23\xe8\x7e\xd3\xfc\x1e\xe5\x36\x19\xf7\x84\x10\xee\x1d\x68\xbd\x4a\xc7\xf1\xc8\x0b\x86\xe5\xd9\x0c\x7b\x0f\xb0\xdb\xd1\x53\x1d\x0a\xc6\xe6\xb6\x83\xae\x4f\xfa\xc2\xeb\x4c\x35\x17\x83\x75\x39\xf1\x02\xab\x03\x33\x1a\xc5\x70\x12\x3a\xe4\xd5\x98\x43\x19\xec\xa1\x7b\x3a\x0a\xf4\x21\x50\x6c\xd6\x35\x25\xa8\x80\x52\x88\x8d\xc2\x46\x37\xed\xf7\x0b\xdb\xc6\x71\x77\x1d\xb5\x32\x3c\x6d\x09\xaa\xe5\x24\xfa\x5c\xa8\x1a\xa7\x45\x19\x97\x63\xd0\xe5\x66\xc2\xce\xf1\x24\x99\xdf\x5f\x75\x17\x89\x47\x30\x33\xa5\x27\x58\xad\x84\x89\x1b\x8d\x2d\x96\x28\x71\xbf\xa7\xb8\xd1\xcf\x71\xa8\x5c\xe6\xf1\xea\x58\x70\xd5\x9f\x44\x37\x09\xbc\x1d\xf1\x10\x97\x13\x92\xd4\x48\x6d\x3f\x2b\xe3\x6a\x20\x60\x92\x21\x36\x7d\x8f\x5b\xb6\xef\x35\xd4\xe2\xdb\xe5\x78\xb8\x9a\x68\xad\x86\x38\xfe\xaa\x1a\x3c\x9d\x3e\xbc\x3c\xdf\xee\xe7\x66\x43\x06\x0f\xb0\x74\xa7\x89\x8b\x75\x9a\xdd\x7e\x72\xa4\xfc\x58\xc2\xcf\xe0\x6a\xe4\x84\x02\xbf\xee\xa0\xda\xb2\x54\x2c\xd0\x3b\x48\x7a\xa9\xf9\xf7\x68\xef\x18\xa7\x71\x62\x37\x6c\x3e\x17\x4c\x92\x4f\xb2\xf8\xdf\xad\x09\x79\x94\x9d\xa4\x12\xe5\x3d\x97\x60\xab\x28\x20\xe9\xc3\x26\xe5\x93\xad\xaf\xbc\xc2\x88\x76\xf5\x2b\x93\x4a\xa1\xeb\x54\xae\xff\xf9\x0e\x43\x78\x09\xe3\x35\xb7\xcd\x96\xa7\x98\x2d\x68\xa9\xdc\xa1\xfd\xef\x36\x39\x3c\xdf\x98\x84\x26\xe2\x6e\xf4\x86\x30\x59\x1f\x4e\xcd\xf0\x95\x79\xe7\xe1\xd7\xcb\xcd\x26\xb4\x7e\x10\x9e\xdf\xc3\x9e\x83\xbc\xe5\x2c\x79\xdf\x06\x04\xe4\xd0\x54\xa3\x39\xb7\x66\x88\x48\x80\x8b\xb6\x28\x28\x3d\xd5\x09\x9f\xdb\x37\x95\x1f\x1d\x79\xa9\x9d\xc7\x3d\xe4\x47\x9e\x3f\x45\x9c\x8b\xd0\xe9\x3d\xd5\x18\xaf\x8e\x92\x31\x18\x9e\xbe\x95\xec\x0d\x5a\x2f\x12\xdc\xb2\x9b\xa5\x45\x96\x97\xce\x8b\xc5\xe7\xca\x0f\x48\xd2\xe5\x01\xbd\xab\xc5\xb1\x9d\x23\xdd\x0a\xa7\x35\x87\x7b\x39\x4a\xa5\xae\x27\x3a\x24\x78\x29\xdd\x66\xe4\x8f\x97\x6a\xf1\x98\xe3\x3e\x14\x08\xe2\xf1\xfa\xfe\x31\x79\x01\xfd\xe3\x29\x64\xc0\xc2\x82\xb4\x95\x2c\x81\xd1\xaf\x44\xa4\x89\x02\xd2\x17\x92\x80\xfb\x53\xc0\x87\xc5\x23\x6d\x93\x94\x36\xaf\xb6\x1c\x51\x95\x6b\xd2\xe9\x7a\x86\x8d\x28\x7a\x86\xec\x15\xcf\x50\x38\x3a\x8d\x95\x5d\x5a\xaa\xd6\xf5\x7e\x6a\xc4\x18\x57\x2a\xd1\x51\x68\x3f\x9f\x27\x24\xf5\xa0\x1a\x56\x42\x56\xf2\x56\xe5\xd5\x9d\xa8\x3b\x79\xf0\xbc\x2c\xba\x59\xd9\x22\xe1\xc6\xef\xa0\xbe\xaf\x02\x77\x9f\xaf\xbd\xcb\xb0\x7e\x92\x4e\xf4\x49\x42\x86\x9e\xa4\x2a\x7b\x9a\xa5\x5d\x53\x0c\x90\xd6\x20\xad\x3b\xe1\x5e\x81\x1c\x13\x1e\xa6\xd8\xb4\xa6\xb4\x79\x31\x13\xda\x53\xb7\xd0\x18\x40\x29\x07\xf4\x19\xf1\xbb\xa1\x67\x58\xe6\xb1\x49\xf6\x86\xaa\xae\x68\x8c\x79\x7c\x37\x01\x4e\x5a\x5e\x1f\xe8\xbb\xcc\xe0\xb9\x88\xb9\x46\xcc\x06\x5d\x80\x3f\xae\xdb\x93\x8c\x93\x7d\xd5\x80\x54\xdd\xd8\x96\x27\x92\x5e\xe5\xd6\xea\x65\xb6\xba\xbe\xeb\x7a\x4c\x2a\xa7\x10\x94\x06\xfe\xdb\x20\xa8\xbb\xf9\x6c\x87\x2a\x8f\x67\xeb\xb8\xc1\xbf\xb4\x8a\x7d\x4d\x0b\xcb\xee\x77\xb4\xdd\xc6\x6d\x46\x37\xd6\xdd\xa8\xf3\x78\x9e\x5d\x9d\x10\x1e\xef\x9a\x62\x9e\x2e\x2c\xb6\xcb\xb8\xf4\x8e\x1a\x58\x25\x6e\x52\x23\xe1\x43\x56\xcd\x3a\x5f\x6b\x4d\xad\x66\xab\x2d\xaa\x7d\x9f\x93\x1c\x5e\x39\x01\x81\xde\x0d\x62\x86\x23\x5b\xa2\x8e\x89\xaf\x96\x98\x49\x4e\x30\xc1\x14\x42\xeb\x66\xab\xaa\x0d\x84\xcc\xf1\x5d\x17\x34\x89\x2d\x96\x0b\xa6\xe4\x03\xa4\xe1\x73\xac\xc9\x99\xb6\x57\x05\xf3\xee\x17\x80\x55\x90\x5e\x3d\x6a\x25\x90\xb1\x47\x30\x7d\xb3\x46\xe2\x5c\x75\xe6\xce\x3e\x23\x41\xa6\xa3\x03\xbc\xba\x14\xec\xb9\x77\x7d\xa9\xbf\x9b\xdb\xa2\x6b\xd3\x5e\xd6\x22\xf7\xa6\x4b\x13\x2e\xb3\x36\xd4\x4e\x06\x36\x89\xdf\x68\x91\xa0\xf3\x65\xc2\x90\x06\x87\xc9\xd1\x20\x4e\xa4\xec\x8d\xd2\xfb\x49\x06\x6d\x9f\xa4\xad\x76\x18\x17\xae\x25\xe8\x56\x15\xad\xc5\xb9\x19\xa1\x45\xba\x9d\x3b\xd0\x17\xdb\xb9\xed\xd9\xe1\xc8\x8b\x7b\xa9\x92\x48\x75\xf7\x6a\x9e\x13\x7e\x60\x34\xb0\xf9\xa6\x49\xa5\x37\x29\x0e\x78\x51\xdd\x0f\xaf\x81\x19\xd0\xdb\x4a\xcd\x50\xea\xfd\x62\x5e\x40\x22\x0c\x67\x9b\x34\xf0\xd4\x86\xda\x32\x2a\x05\x14\x04\x39\x9e\xda\x97\x16\x16\x80\x0b\x92\x67\x45\x8a\x38\x87\xbc\xec\xca\x53\x1e\x37\x13\x27\x89\xe3\xba\x49\xf3\x92\x35\x07\xae\x93\x70\x2f\x68\xc5\x8a\x40\xa9\xb5\x68\x8b\xee\x2c\x77\x9e\x05\xe1\xed\x9b\x03\x64\xf0\x43\x2d\xe9\x9b\x94\x73\xe4\x71\x22\xa5\x5d\x6f\x19\x52\x4d\x13\x05\x79\x86\xdd\xac\x18\x89\xde\x72\xa0\xb6\x41\x72\x4e\x8e\x6b\xcb\xc6\x46\x26\x62\x8d\xea\x73\xed\x7e\x5d\xe9\x01\x3b\x1f\xda\x91\x97\xda\xdd\x2c\xa9\x5e\xbe\xb7\xe3\xbb\xc4\xa4\x73\x5f\x6d\xb7\x6f\x40\xde\xde\x21\x47\xdd\x33\xfb\x1f\x7f\xa9\x43\x48\x6b\xf1\xe0\xc3\x3c\xfb\xfd\xc8\x87\x66\xff\xf4\x33\x2e\x82\x42\x86\xf1\x43\xb7\x0a\x8a\x87\xd2\x94\xba\xfa\x97\xda\xbd\x2a\x04\x58\x5e\x16\xd2\xc2\xdc\x36\x31\x9c\x91\x2b\x21\x29\xbf\x44\x9e\xbe\x07\x50\x7a\x45\xd3\x98\x89\xe5\xa3\xc4\x6c\xd9\x9e\xdb\x1c\xd4\x21\x3b\xdc\xd7\x5c\x87\xea\xa4\x08\x24\xbd\x52\xfb\xc1\xe5\x47\xf7\x26\x24\x49\x7e\xcd\xb5\x10\x91\x83\xec\xf2\x25\x88\xde\x58\xde\x87\x87\xb2\x7b\xf4\xf1\xf9\x4f\x24\xec\x25\x5b\x79\xdc\x15\xb0\x3e\x16\x86\x5b\x51\x90\x72\xfa\x80\x31\x14\x97\xea\x9e\x55\x76\xbf\xab\x9d\xa0\x61\x8b\x1f\xc3\xc8\x95\x07\x23\xff\xe0\x2e\x15\x0f\xe9\x06\xb5\x75\xb1\x45\xe3\x6f\xee\xd7\x39\x82\x68\x6c\x63\x45\xbc\x10\x05\x71\xae\x33\x11\x75\xe9\x7f\xe2\x79\x54\xf6\x8d\x58\xc9\x76\x8b\xaa\xcf\xc0\xc4\x9b\x73\x14\xd0\xa5\x59\xfe\x84\xeb\x94\xcb\xb7\x4f\x88\x70\xf8\xe3\x28\x88\xfd\x00\xd6\x8a\x6c\xe0\xac\x93\xbd\x43\xc5\xfb\xbb\x40\x5e\xfb\x4f\x07\xfa\x1d\x3b\x7c\xcc\x38\x52\x34\x72\xc9\x9f\x7a\xe6\xe2\x30\x4b\xcb\x7e\x36\xb4\xa2\x85\xab\x51\x00\xcd\xc4\xb3\x8d\x5a\xa7\x03\x23\x01\x20\x1e\xc2\xfb\x1c\x11\xdc\x42\x2a\xa2\xb3\x3a\xc8\xb0\x39\x0a\x79\x57\x7a\x22\xa1\x9d\x7f\x89\x7d\x52\x2f\x45\x9f\x25\x0e\x4b\x3e\xca\x60\xac\xc9\xe2\x90\x92\x49\xe2\xb6\xb6\x71\xbf\x72\x12\xd1\x2a\x28\x5d\x4f\x84\xe7\xbf\x1f\x51\x7b\xf8\xf7\x7d\x2a\xdd\xcf\xad\x4d\xe3\x62\xe0\xa6\x35\x1b\x61\xab\xfa\x80\xf7\xe6\xb2\xbd\xd8\x94\xb9\x2c\xce\x28\x50\xdd\x21\xbe\xc0\x1d\x0a\x34\xcc\xb8\xcc\x1c\xe8\x52\xbb\xb0\xc4\x03\x0c\xe1\x40\x8d\x9d\xe4\x44\x20\xbd\x5e\xcc\x39\xf6\x6d\x3a\x49\x96\x4a\xb7\xa9\xec\x5c\x98\x32\x2e\x60\x85\x5a\x45\x03\x18\x22\xe0\xb4\xc8\xf1\x94\x14\xac\x4e\xaf\x6e\x56\x94\x88\x68\xd4\x81\x33\xe0\x49\xae\x82\x97\xc7\x96\x98\xb9\x29\xed\xa7\xdd\xec\x51\xb8\x08\x95\x4c\x1e\x4d\x76\x7f\xe1\xd1\xbd\x28\x78\x01\xa1\x1d\xea\x2e\x61\xfe\x59\x07\x32\xc4\x40\x90\xa5\x04\xc9\xcf\xf5\x7a\xa5\xa8\xca\xf3\x51\x01\xbe\x01\xf8\x1f\x1e\xea\xbb\x64\xd6\x07\x6f\x60\xc4\x39\x5f\xaf\x09\xdd\x63\x02\x32\x84\x55\xcb\x5f\xc4\x42\x04\x5d\x4f\x45\x1b\xf1\x5a\x54\x42\x3f\xac\x85\x65\x6e\x7a\x36\xdf\x53\x2d\x0e\x1a\x84\x05\x00\xa7\xb8\x78\xab\xac\x67\x48\x92\x8e\x61\x69\xc1\xed\x8b\x9c\x95\x9c\x4c\xed\xf2\x5e\x55\xb3\xd7\x22\x79\xdb\x7f\x43\x75\x9e\x7f\xc3\x1a\xa1\x6f\x8c\x12\x93\x4a\x65\x6b\x69\x29\xa0\x2a\x03\xcd\x91\x8a\xa4\x1b\x26\x89\x7b\x4e\x43\x10\xf5\xf0\x1f\xa2\x74\x89\x02\xca\x55\xd7\x6d\x93\x7f\x88\x48\x31\xef\x6a\x14\x3a\x88\xe3\x52\x38\xcf\x6e\x77\x01\xe0\xea\x3d\x42\xf7\x5f\xc3\x34\x17\xa5\x08\xdc\xa9\xc2\xae\x5b\xde\x94\xe0\x92\x0f\x1f\x56\x6d\xda\x1d\x60\x19\xf7\x40\x65\x6f\x60\x7f\x23\x0a\xfd\x92\x1f\xd0\x70\x1b\x58\x93\xcf\x85\xd6\xe7\x7f\x17\x91\x04\xaf\x80\x17\x45\xdb\xc7\x3d\x07\xd4\x02\x04\xc9\xab\x32\xf3\x3b\x63\xdc\xd7\x5e\x6b\xe7\x26\xb7\xd4\x76\x38\x4d\x6d\x87\xd3\x9f\xb8\x11\xe5\x16\xb0\x6b\x4f\xfb\xbc\x4f\xc6\x10\x52\xca\xd1\x0d\x71\xe7\xab\x5e\x99\x6f\x6f\x1a\x82\xf7\x7b\x4b\x52\x9f\xd5\xff\x51\x14\x52\xd1\x32\xcf\xc6\xab\x89\x75\x37\x8e\xcc\xee\xb8\x7b\xf0\x78\x49\x1f\xe2\xbe\x91\x6d\x5f\x9b\x04\xaa\x83\x24\x20\xaa\x31\x1e\x1a\x20\xc3\xb8\x28\x04\xf9\xf9\x6a\x50\xdc\xf6\xb4\xc1\x3d\xae\x2d\x8c\x92\x2a\x17\x17\x96\xc7\x6f\xb4\x88\x32\xdc\xda\x0e\x7d\xac\x56\x27\xf4\xee\x8b\xd1\x38\x17\x3b\x5d\xd4\x88\xef\x92\xb6\xc2\xdd\xa9\x40\xd5\x61\x95\xca\x3c\xb6\x1b\x26\xc1\xca\x8f\xc8\x05\x84\x5d\x39\x6e\xdc\x67\xde\xb4\x79\x46\xae\x7c\xe7\x9d\x66\x9b\x6a\x09\x72\xe2\x39\xb4\x42\x29\xd1\xc5\xbf\xe5\xd5\xcf\x2e\x53\x63\x70\xdd\xa4\x65\x96\xe3\x6f\x0f\x7b\x2c\x7e\x6b\x39\x40\xf1\x9f\xf6\xb0\xa4\xac\x6b\x92\x19\x42\x64\x3e\xa4\xf1\x76\x81\x49\xf0\xc4\x34\x7d\xdd\xe6\x85\xdd\x72\x3d\x14\xdf\xfe\xf1\x8e\xba\x3f\x61\x84\xc1\x4d\x62\x1d\x88\x1f\x3c\xc0\x10\x2a\x8f\xe5\xe6\x28\x92\x97\x1b\x24\xdc\x7e\x03\x09\xbf\xfc\x43\x53\x01\x44\xd2\x08\xa9\x67\x7a\xf9\xf9\x20\x45\x3f\x35\x3d\x5c\x97\xcd\x88\xcd\x0a\x5e\xe2\x37\xe9\x85\x7e\xd3\xef\x97\x89\x19\xa7\xdd\x01\x70\x64\x5a\x1d\x7d\xcc\x20\x81\x7f\x09\xc4\xb6\x0a\x11\xb3\xbf\xb8\x1b\xa8\x1a\x98\x12\x0f\xd8\x94\x65\x22\x85\x54\xd9\xfe\x22\xde\x0a\x9f\xa5\x8e\x4b\xd2\xb3\xb9\x78\x18\x21\xe9\xba\x3e\xa9\x75\x19\x82\x28\xc7\x03\xf6\x6d\x30\xc5\x13\xee\xc1\x83\x61\x71\x9b\x32\x63\x89\xde\xfc\xde\x53\xdd\xbf\xdf\x49\x17\x94\x66\xf9\x2e\x8a\xc1\x08\x1e\x3e\xc4\xed\xa2\x16\x70\x9b\xec\xde\xd1\xca\x40\xb8\x7a\x8d\x78\xb2\xf6\x0d\xd3\x2d\x5d\x05\x18\x95\xb9\x13\x24\x83\x70\x82\x07\x41\x51\xd8\xbc\xd4\x98\x01\xb7\xf4\x21\xcb\x62\x7c\xd8\xa4\xdc\x57\xe6\xd6\x14\x63\x09\xdf\xc8\x46\xea\x90\x9f\x31\x0d\x9c\x8c\xa2\xdc\xf2\xf5\x6e\xdc\xe2\x71\xa2\x98\x1e\x27\x84\xd8\x70\xab\x70\xd2\xb9\xe3\x42\x54\x81\x29\x8b\x59\xf4\x50\x6d\xaa\xa8\xd9\x5e\x5f\x5b\xe1\xd2\xcf\x88\x02\xa2\xf1\x52\xad\x1c\x53\xc6\xb9\x1d\xda\xb4\x9c\x65\x55\x69\xa9\x5b\xa2\xd0\xf4\x03\xdc\x09\x5e\x8f\x60\xfd\xb1\xf6\x5f\xf3\x43\x72\x33\x2e\x07\xbd\xdc\x6c\xb6\x82\x55\xe5\x4f\xdd\x4f\xca\xf1\xd4\xfd\x3f\xff\x7c\x95\xca\x8d\x87\x69\x8b\x32\xa2\x9f\x50\x08\xf4\x13\xe2\x28\xd9\xb4\x97\xd8\x42\x6f\x1e\x89\xce\xbf\x73\x2f\x50\x8e\xa9\x01\x57\x66\x5b\x59\x69\x90\xf3\x73\x11\x46\x7d\xca\x43\x1d\xcf\xa4\x69\x36\x76\x13\x3e\x74\x26\x80\x4f\xc5\x42\xf1\x2d\x92\x5c\xf8\x96\xc3\x0b\xab\x28\x75\x58\xa9\xcd\x5f\xf9\x6b\x54\xc7\x42\x85\x53\xb9\x51\xcf\xd4\x44\x39\x86\x33\x55\x40\x83\xa9\x7f\xc5\xe5\x13\xc8\x1b\xde\x77\xf7\xa1\xa6\x40\x53\xa6\x5f\x8b\xed\x24\x53\xd3\x2f\xf5\x8b\xac\x3e\xa0\x3e\x92\x24\x68\xb2\x7c\xb8\x45\x0a\x08\xd2\xeb\x92\x93\xed\xcf\xd5\x21\x7f\x0e\xad\xf5\xf2\xfc\xe2\x53\x64\x85\x52\x13\x07\xbe\x49\xc6\xf9\x7b\x3a\x4c\xc1\x70\x73\x55\x6d\x94\xdc\x00\xf4\xd6\xd1\x4b\x4b\x5e\xab\x28\xa2\xba\xd9\x59\x37\x8b\x91\x59\xa0\xb4\x88\x22\xb0\x28\x82\x63\xfc\x22\xe4\x95\x5f\xbc\x5b\x2b\x67\xda\xbc\x7c\xd2\xfd\x10\x3e\x06\xb3\x41\x20\x78\x6f\x47\x54\xc7\xf8\x26\xa3\xda\x2f\x4e\x6a\x0a\x7d\x04\xfa\x91\xca\x9d\x7c\xc1\x24\x94\xce\x6e\x4e\x88\xc7\xf2\x4d\x56\xf9\xbf\x4f\x92\x55\x37\x69\x7f\x97\x6a\xe6\x4c\xa0\x5b\xa2\xb7\x83\xa6\xcb\xc7\x35\x4a\xeb\x84\x3f\xb6\x11\x6f\x88\x8d\x91\x98\x58\x93\xba\x34\xc2\x67\xd4\x9d\xdf\xa7\xc4\x3a\x8f\x8b\xf5\x7d\xac\xe8\x55\x7d\x5c\x7d\x74\x6b\xea\x5e\xad\x1d\x32\x6a\xd8\xa6\x76\x61\xea\x7a\xa5\x90\xc5\x23\xfa\x0f\x98\xed\xf2\x0f\x0d\xc8\xa4\xf6\x00\x5d\x6d\xa4\xdf\x9e\x84\x11\x34\xb0\x3f\x9a\x84\x28\xf2\x76\x93\x8d\x8e\x7d\xa3\x6b\x0b\x48\x0c\x60\xe9\xf8\x37\x54\x3d\x84\xce\x04\x26\xe8\x49\x52\xfc\x18\x66\xdd\x75\x71\x53\xf2\x61\x52\xdd\x39\x95\x30\x3a\xa6\x5b\x66\xf9\x5e\xf7\x66\xd1\x29\x05\xab\x06\xb0\x89\xdf\xa7\x46\xf6\x5d\x07\x16\x54\x3f\xaa\x56\xf8\x7b\x8c\x1e\xdc\x1d\x9c\x6c\xb0\xd7\x5f\x9a\x0a\x2a\x0f\x2e\xb7\xbb\x66\x68\x73\xf5\x7e\xc7\x22\x74\x8e\x60\x99\xe7\x30\x93\xdd\x5f\x67\xce\x08\x6d\x9c\x8a\x8e\x51\xb5\xdc\xc9\x8c\x71\x1f\xd0\xd9\x43\xba\x91\x71\x6a\x73\xe9\x5a\x20\x59\x42\x92\x2b\xc7\x2c\xe5\x62\xb6\xe2\xb4\xff\x54\x75\x43\x18\xce\xd7\xdd\xa3\xc4\xf1\xc5\xa8\xf5\xd5\x45\xcf\xc1\x6c\x79\x2b\xbc\x07\x64\x80\xff\x63\x0c\x1c\x68\xb8\xde\x8c\x68\x96\xdc\x45\xde\x22\x27\x48\xe9\xb5\xf0\x42\xb6\x13\x37\xdd\x76\x8f\x46\xd0\x8f\x26\x81\x68\x36\x1d\xcd\x1f\x5c\x6e\x97\x03\x53\x76\x07\x36\x8f\x8b\x21\x61\xe5\x25\xd1\x96\x13\x96\x73\x2a\x4a\x93\x96\xe2\x08\xea\x15\x56\x57\x42\xd8\xd0\x14\xab\xf6\x0d\x42\x7d\x8d\x41\x31\x4d\xe4\x78\x8a\x2e\xbb\x78\x84\xda\x7e\x33\x24\xba\x87\x71\xe6\x25\x09\xfc\xb6\xf3\x31\xf9\x08\x3e\x9f\xdb\xfd\x01\xcd\xb8\xdb\x69\x89\xca\xf1\x76\x20\x71\x7e\x63\x42\x24\xe1\x8b\x53\x2e\xb5\xe8\xb5\x5d\x8f\x48\x7e\x4a\x08\xd2\x64\x49\x7f\x28\x58\x60\x78\xa2\xe8\x37\x3c\x6f\x69\xd5\x6e\xd8\x3c\x01\xa0\xcf\xeb\x3b\x2c\x2d\x71\xa1\x40\x15\x5a\xef\x50\xa8\x53\xc6\xfd\x41\x59\x7d\x6c\x07\xff\x1d\x1f\xfb\x93\x88\x24\xc0\xaf\x35\x09\x23\xe4\x16\x92\x4c\x73\x44\xe7\xbe\x1d\x6a\xa9\x5f\x38\x3d\x21\xaa\x2d\x6e\xdc\x53\x52\x82\x14\xc1\xb9\x26\xc2\x9b\x29\x8a\xb8\x9f\x62\x13\xd7\x8a\x5a\xf5\x79\x1d\x80\x9a\x1e\x74\x4d\x9e\x64\x2a\x99\xa7\x4d\xad\xd0\x71\x7c\x7f\x42\x48\xa6\x5b\x44\x76\x2b\xcc\x9a\xed\x8f\x4d\xde\x93\xba\x8d\x44\x98\xa4\x50\xf5\x2e\x37\x12\x4c\x6e\x92\xc4\x62\x42\xe2\x9f\x3f\x22\x0f\xd4\x8f\xd8\xd0\xcb\x6e\xd8\xd4\xf1\x4d\x3d\x8a\x29\xa8\xf0\xa0\x0c\x2e\xff\x10\x91\x56\xcf\x75\x02\x2a\xf4\x53\x3b\x43\x93\x9d\xfc\x1f\x8f\x4e\x6a\x5a\x99\xfa\x0c\x8a\x41\xd6\x5d\x17\x15\x6b\xcf\x65\x0d\x62\xde\xc7\xa2\x27\x03\xa3\xc1\x60\x66\x60\x5b\xbe\x3e\x09\xd5\x93\xe0\x36\xd7\xdb\x8c\xab\x68\x4b\x80\xb5\x68\x20\xcf\xa2\x88\x23\x27\x9d\x26\x3f\x2c\xb0\x60\xf0\xb1\x57\x83\x3f\x73\xd8\xb5\x2f\x13\xb3\xa2\x8a\x3a\xd3\x6c\x35\x31\x45\x99\x0d\x8d\x23\x84\x6b\xc5\x3a\x10\x02\x76\x6d\x07\x95\x2b\x53\xed\xb1\x3e\x0f\x3f\x1b\x91\xd4\xcf\x21\xb7\x34\x6a\xa0\x41\xad\xe2\x71\xbe\x46\x4a\xfd\x28\x28\xaa\xc8\x58\x78\xdc\xab\xb9\x69\x51\xf9\x1c\xb9\xb0\x1c\x13\xd6\x23\xb1\x28\x22\xcc\xd6\x0a\xfb\xe4\x28\x09\xc2\x0f\x62\x80\x3b\x6c\xac\x38\x2d\xd4\x78\x70\x19\x15\x4f\x37\x9c\xb0\x03\x03\x65\x20\xc7\x6c\x31\x9f\xda\x27\xdc\x8f\x60\xf6\xee\x81\xe0\x03\x76\xd0\x27\x5c\x54\x86\x27\x72\x17\xcb\x07\xaa\xd2\xdf\x71\xb1\xaa\xb6\x47\x6a\xf2\x38\x61\xc1\x39\x15\x05\x4a\xe1\x49\x0a\x38\xce\x34\x1a\x49\xe4\x71\xcf\xe2\xd6\x3d\x31\xfb\xe5\x20\xe7\xea\x7e\x02\x73\xfe\x11\xb5\xd7\x3f\xf6\xd9\x41\x37\xcb\xb3\xd4\x96\xc2\xac\xd4\x8f\x61\xd6\x6a\xc7\xc4\xfb\xfe\x98\xbc\x6b\xc5\xa3\x8c\xf6\x9b\x45\xbf\x0e\x4c\x23\x3c\x5e\x6d\x57\xd9\xc1\x1e\x52\xd9\xf8\xc0\xdd\x91\x2e\xa0\xdc\xdd\x6a\x2d\x2c\x04\xd7\xce\x6a\x06\x62\x3a\xce\x74\xdc\x3c\xc5\x22\x7d\xac\x11\x9e\x64\xed\xd0\x57\x91\xd4\x2c\xb6\xba\x59\xd5\x1e\x68\x08\x12\xc4\x20\x7e\x26\x10\x42\x80\xb4\x56\x9b\x04\xd2\x6f\xbe\xde\x80\xb7\x59\x69\x9b\xd5\x71\xda\x53\x14\x85\x0f\xcc\x7d\x8b\xe0\x66\x90\xbe\x30\xa9\xe9\xab\x36\x1a\x42\xca\x7d\xdb\xd4\x3a\x11\xe7\x1e\xa4\xe5\x8f\x88\x0c\x74\xdf\x03\xec\x36\xcd\x16\xc9\xbe\x09\x35\x55\x45\x6c\xeb\x60\x95\x2c\x2d\x50\x23\x43\x79\xe0\x06\x7b\x77\x5c\x24\x5c\xde\x31\x0a\xf6\x77\xc1\x0a\x01\x8b\x52\xab\x69\x0d\xf9\x42\x35\xcb\x7a\x9e\x28\x8d\x92\xf1\x55\xb2\x8b\x86\x5c\xae\x6c\x98\x0d\xc8\xdf\x57\xdb\x85\x89\x13\xff\x92\xa4\xc2\xe3\xae\x47\xab\x3d\xde\x17\x2b\x77\xa2\x57\x33\x01\xb7\x8c\xe9\x84\xbf\xdb\x8d\x6b\x45\x6d\xfd\x8a\x17\xfe\x1d\x25\xa6\xeb\x72\x65\xf7\x9c\x94\xd5\xc5\xed\xb8\x9d\x63\xe0\xb5\xd7\xda\x45\x69\xca\x58\xba\xdc\x78\x31\x0f\x26\xe1\x25\x3d\x98\x0a\x96\x17\x8f\xb4\xf3\xd0\xd3\x97\x82\x2b\xa6\x98\x57\x3e\xf2\x32\x83\x0f\xbc\x3d\x6a\x6e\xbb\x59\x3f\x8d\xdf\x34\xab\xc2\xb7\x14\x34\x76\x0d\x99\xfd\x29\x46\x66\x5b\x9b\xcf\xb1\xbc\xd5\x64\x67\x06\x82\xcc\x17\x85\x12\xb4\x79\x6f\x33\x32\xf8\x52\x13\x86\x61\x73\x60\xca\xd9\xd6\x2b\xaa\xbb\x7e\x96\x1b\x09\x88\xa9\x51\x72\x39\x4f\x01\xf9\x65\xa2\x92\x65\xae\xb9\x5f\x3c\xe9\x7e\x07\xfb\xcd\x5d\x59\x28\xe4\xac\xfa\x92\x47\x22\x03\x84\x38\x10\xf2\xc4\x02\xc4\x80\x63\xcd\x15\xb7\x3e\x21\x5f\xbb\x5d\xc5\xfb\x8f\xae\xf0\x22\x22\x63\x11\xb9\xe1\x35\x94\xf2\x54\x26\xba\x21\x79\xd9\x88\x8b\x58\x73\x70\x75\xc5\xa5\x46\x3d\x1b\x55\xae\xe5\xb6\x8a\xaa\xc8\xa4\xed\x14\xc5\x23\xd7\xc9\x30\x61\xda\xfb\x7c\x69\x29\x48\x4b\xb7\xa6\xa4\xa5\xe5\xd8\x4f\xd7\xbe\x2d\xf7\x87\x8e\x33\xc2\x55\x84\xe1\x77\x11\x3e\x7a\xdd\xb3\xea\x9b\xb0\xa5\x3e\xe7\xb6\x57\x1d\xac\x24\x09\x78\x81\x69\x7e\xb3\xae\x07\x8e\xb7\xff\x59\x57\xa1\x56\x32\x88\x7b\x84\x68\x8e\x3f\x9a\x30\xf7\xa2\x28\x33\x70\x2f\x0e\x2e\x4b\x36\x75\xd4\xbd\x14\x39\x9e\xba\xd5\x2a\x81\xca\xba\xeb\xa6\xcc\x32\x79\xae\xa8\x55\xde\x22\xb4\xdd\x2d\x3f\xef\xd6\xac\x29\xc7\xc1\x04\x51\x50\x56\xee\x4f\x15\x71\xf5\xac\x0f\x85\x93\x37\x57\x6d\xde\xd7\x98\x10\x51\x14\xf0\x45\x35\xc0\x24\x26\xd6\x95\x26\x64\x5c\x20\xf4\x42\xd3\xca\xd7\x25\xab\xeb\x94\x93\xa9\x42\xcd\xe2\x91\xf6\x6a\x16\x27\x64\xd0\x7a\x81\xa4\x04\x2f\x34\x68\x10\x3a\xde\x27\x30\x6a\xf5\x15\x0b\x0c\x65\x1d\x3d\x3b\xf9\x01\x5f\x6a\x0f\xe2\xfe\x60\x26\x54\x39\x8f\x23\x1d\xd3\xbb\x0b\xa6\x10\x3f\x8b\x9e\x53\xec\xb4\xed\x0e\xd2\x2c\xc9\xfa\x71\x57\xc0\xc4\x58\xab\x51\xd6\x50\x43\x78\x37\x0d\xd0\xc2\xfd\xb8\xd1\x52\x63\x60\xcd\xc8\xe6\x04\x7b\x13\xdd\x4e\x49\x93\xa3\xd0\xe6\xde\xa6\x18\x66\x35\x4b\xe7\x08\x4d\x7b\x9f\x60\x9f\xfb\xb6\x43\x92\x35\xd7\xa9\xa2\x16\xed\x86\x71\x4f\x67\xaa\xe0\xfa\xf2\xfc\xa2\xca\xca\xb7\x28\x67\x67\xbd\x88\xe3\x53\x46\x02\x0b\x0b\xed\xac\x6b\x4d\x9a\x89\x50\x08\x59\x87\xc3\x0b\x2f\xa8\xfd\x87\x96\x30\x14\x8b\xbd\x99\xd1\x3d\x97\x20\xc8\x71\x33\xc0\x7b\x90\x8d\x20\x4b\xad\x15\x3d\x8c\x43\x24\xb7\x73\x8c\xe8\x12\xac\xb0\xfc\xcb\xf6\x3e\x2d\xee\xcf\xb8\x67\xca\x7e\x3b\x68\x76\x3c\x70\x11\x9b\xfa\x7d\x90\x4d\xfd\xb8\x88\x53\x5b\x14\x4f\x07\xf9\xa2\x1f\x10\xa9\x42\xa2\x27\x24\x75\x7b\xd1\xfe\x45\x91\xad\xb5\xed\x16\x67\xe4\xbb\x1f\x93\xa2\x20\x14\xe1\xf0\x2a\x76\x8b\x05\x91\x32\xf6\xaa\x58\x1d\x3f\x72\x16\x0d\x57\xac\xbb\xc2\xd1\x07\x75\x50\x44\x03\xd1\x7a\x71\xcd\x81\x17\x3b\x9f\x22\x18\xa4\xd9\xb0\xc9\x93\x01\x30\xf7\x77\x27\x33\xaf\x78\xc7\xc0\x0f\x26\x44\x68\x3f\x13\xb1\x9c\xf5\x2e\x28\xe7\x20\x90\x42\x2c\xe0\x8d\xcc\xa9\xff\x10\xb5\x7e\x43\x1b\x03\x27\x26\x01\x34\x75\x81\x59\xd3\xc7\xb0\x08\x60\xe0\xee\xde\x9e\x02\x67\x2d\xb6\xd3\x6c\x43\x12\x3e\x6c\xd4\x70\x8c\x97\x63\x42\xa4\x96\xb6\x28\x67\x43\x5a\xb7\xdf\x8d\x62\x84\x2e\x67\x99\xa1\xb0\x4d\x82\x27\x97\x1a\xad\xdc\xd7\xc6\x79\xea\x2c\x76\x98\xd2\xf8\x3e\xde\x9e\x16\x03\x1b\x82\x85\x71\xba\x66\xe2\x9c\xbc\x71\x2e\x92\x8d\xea\x45\x66\x8b\xc6\x6f\xda\x3d\xd5\xd5\xa1\xa3\xfb\xb7\xb0\x31\x60\x57\x05\x46\x07\x0b\xc1\x0f\xb1\x31\x48\xf3\x9f\x59\xa0\xef\x4e\x42\xaa\x75\xac\x81\x77\x3e\x84\x82\xc0\x4c\x80\xcb\x8b\xfa\xb6\x2e\x2a\x01\xe9\x77\xaf\xc1\xf8\xb0\x1d\x17\x89\x49\x55\x27\x11\xe0\xee\x13\x0c\xd4\x9f\x2e\xdf\xac\xcc\xb7\x47\x71\x3a\xca\xe2\xd4\x53\x41\x51\xe3\xba\x41\xf5\xae\x1b\xd4\x85\x5a\x13\x0b\x3d\x54\x2b\xae\x92\x16\xc4\x55\x9f\x50\xbf\x6e\x86\xde\x50\x1f\xf1\xef\x7b\x2c\x1a\xf6\x5e\xb0\x36\x49\x8b\x71\xee\x7b\x61\x32\xdd\x30\x7e\x31\xb2\xae\xb0\x09\xd5\x63\x9f\xe2\x40\x74\x68\x5f\x35\x5f\xc9\xe0\xf6\x90\x6c\xdf\xbb\xb6\x59\xd1\x8c\x29\x2f\x4f\x76\x02\xd0\x11\x9a\x66\x58\x21\x9f\x00\xbb\x17\xdb\xe6\x51\xac\xc9\xca\x9d\xe5\x3a\x7a\x2f\x4b\xf7\x91\x77\xd6\x09\x04\x67\xaa\x1d\x5c\x7d\xb7\xf4\xd3\xdc\x32\x87\x08\xf3\x9e\x9b\xf1\xea\xcf\x15\x20\xda\x08\x38\xb0\x8d\x08\xd1\x5c\x8d\x00\xf8\x27\x07\x63\x6c\x55\x44\x07\x57\x6b\xc8\x5b\x82\xe6\x42\xa2\x7a\x6e\xa7\x0f\xdd\xe2\x91\x6a\x56\x3c\x8b\xfb\x57\xe9\x0e\x77\x9f\x4a\xd4\x0a\x49\xeb\xe5\x88\xdc\x91\x6f\xa2\x0f\x81\x8c\x59\x0c\xfa\x30\xca\x4f\x90\xcb\x1c\x9e\x9f\x8a\x0e\xb9\xd7\x8b\x90\x55\x44\xfb\x95\x80\x4e\x88\x2a\x61\x3a\x78\x36\x7c\x20\xb1\x1d\x75\x4b\x33\x89\x13\xf9\x9f\x8f\x48\xf9\x20\xa8\x58\x14\x63\xdd\x47\xb1\x2c\xa3\x09\x81\xdf\x6f\x21\x13\x55\xea\x6b\x83\xc3\xb6\x29\x0a\x3b\x5c\x0d\x79\x0e\x22\xd7\x13\x84\x9a\x3b\x41\xc0\xf6\x55\x93\x98\xb4\x6b\xf7\x11\x5b\x07\x0d\x31\x3c\x2d\x6c\x15\x04\xe9\x5a\xf6\x85\x00\x77\xeb\x58\xd1\xc1\x69\xc0\xb2\x26\x44\x30\x02\x49\x85\x96\x31\xd9\x69\x64\x45\x5c\xc6\x1b\xae\x96\xf5\x68\x9b\x78\x43\xf8\x71\x1c\x5f\x68\xb2\x97\x27\xa3\xad\xb8\x28\x49\x95\x18\x19\x1a\x16\x36\x29\x6a\xa2\xbb\x35\xb3\x1d\x5a\x2b\xa6\xef\xc8\x26\x4f\x11\x62\xf2\x63\x74\xc3\xd5\x9a\x9a\x8a\xbc\xd7\x58\x14\xf8\xb8\x8c\x47\x84\xca\xba\x71\x7b\x65\x41\xbf\x74\xa1\x9f\x8e\x5e\xc7\x7b\x6e\xa6\x68\xcb\xab\xe5\x53\x9d\x73\x58\xf7\x94\x7c\x19\x90\x2b\xdf\xad\xcd\x8e\x71\xb1\x4e\x30\xe3\x53\x04\x33\x3e\xf5\x89\x60\x18\x67\x0e\x0b\xff\x09\xd1\x9b\xc6\x4d\xa8\xc3\x35\x2e\x1b\xe3\xf2\x9f\x4e\x88\x4c\x75\x97\x7c\xc1\x86\x2e\xa0\x2e\xb7\x66\x02\x55\x05\x91\xa3\x70\x00\x5d\x76\x86\xd4\xe0\x46\x14\xda\x0d\xa5\x4d\xc7\x39\x12\x53\x6f\xa6\x58\x0d\x56\x24\x52\x40\x87\xea\xbc\xd3\xb1\x5e\x65\x33\x70\x54\x54\x09\x5b\xe2\xa8\xbe\x45\xe5\xb6\xb7\x31\x0b\xb1\xd7\x5f\xdb\xe1\x4c\x60\x3f\x53\x5d\x91\x18\xba\xba\x06\x8e\x87\xc9\x2e\xe8\x67\xee\x51\xcb\x52\xdc\x21\x31\x7a\x05\x20\x8b\x29\x7d\x37\x0a\x0c\xeb\x96\x04\x37\xc8\x7b\x80\xa4\x46\x03\xfc\x61\x44\xd4\xcb\xbf\xef\x0a\x6a\x2a\xdc\xeb\xd6\x20\x8c\xdf\x6f\xbb\x3b\xc6\xc0\x3a\xce\x98\x5f\x27\xd2\xf5\xe2\xa3\x99\x6d\x12\xa9\x7a\x8c\xb5\x00\xb5\xb1\xff\x01\x53\x0d\x6b\xec\x51\xde\x26\x2e\xd7\xf0\xd1\x71\xb2\x3e\x43\xab\xce\x0c\xb1\xff\x2e\x73\xd4\x73\xbb\x89\xde\xbe\x6e\x47\x22\x3d\xae\xc2\x00\x54\xc6\xbd\xec\x4b\x07\x3d\x0b\x7f\x05\x4f\xca\x60\xbd\x6b\x2d\x0e\x84\xf8\x6d\xd5\xb9\x8f\x09\x40\xc2\x1b\x91\x87\x5e\xe9\x45\x32\x17\x2a\xc6\xdd\xae\xb5\x3d\x45\x83\x2b\xd5\x80\x79\x07\x54\x8b\x2d\x4d\xbe\x97\x60\x25\xe7\x49\xbd\xef\xce\x24\xe8\xd3\x88\x38\x2e\x82\x8a\x2b\xac\xc0\xf9\x7e\x44\x86\x30\x04\x3f\x78\xa2\xa3\x4d\x25\xf1\xb8\xb3\x16\x33\x48\x6a\x60\x88\x78\xc4\x6d\xc8\x7d\x07\xd6\xe2\x1f\x4c\x08\x68\x7f\x75\xca\xd2\x43\x6c\x64\xed\x9a\xcd\xc5\x03\x59\x87\x25\x1c\x56\xe4\x78\xa2\x36\x8a\x6b\xd9\x38\xed\x01\x48\x0b\x44\x98\x62\x0d\x49\xb4\x05\x5c\x03\x55\x99\x26\xd8\x8d\x35\x1b\x71\xb2\x35\xeb\x46\x9f\x8a\x38\x93\x17\xc6\x77\xa2\x10\xf0\xdc\x63\x25\xdf\xf3\x93\xfd\xfe\x75\xc4\xcf\x50\x9c\x71\xdf\x4d\x9d\x1a\xbc\x0f\x01\xce\x6f\x47\x41\x04\x5a\x6c\xa3\x10\x5a\x48\xe3\x0f\xcb\xc9\x5b\x13\x32\x1d\xbd\x85\xb1\x0d\xac\xfc\x1d\x42\x21\xde\x40\x6c\xaf\x12\xd4\x01\x84\xb2\xdb\x95\x22\x10\xd7\xdd\x75\x2b\x27\x2e\x17\x52\x77\x62\x8e\x51\x9b\x0a\xdd\xd5\x62\x6f\xa8\xe7\xbf\x8b\x9d\xb9\x26\x1c\xaf\x9e\x11\x84\xfd\xbc\x8e\xe1\xe1\xcd\x2d\x3d\x6f\xe0\x67\x92\x5a\xa0\x18\xd3\xea\x84\x88\x7e\x64\x4b\x4c\x03\xc4\x66\x1f\x38\x54\xad\x1c\xd7\x56\xa5\xb4\x87\x4e\x0d\x82\xb0\x87\x64\xd7\x27\x35\x06\x15\xd0\xf5\xc5\x09\x53\x40\xfc\xd4\x75\xea\xa4\xee\x1b\x85\x70\xf4\x22\x09\xd4\xbd\x33\x35\xa1\x57\xe6\xdb\x5d\x03\xc8\xf0\xab\x7e\x5b\x26\x15\x8e\xdb\x4c\xed\x7d\x4c\xad\x71\x47\xed\x35\x33\x84\xf8\x43\x99\xc5\x1b\x00\x05\x05\x83\x8f\x76\x46\x61\x2f\xcf\x1f\x6a\x2f\x2c\x3c\x8d\x67\xa5\x72\x8d\x6e\x6f\xc3\xa2\x86\xbb\x06\x09\xe0\x8a\xdb\x41\xb0\x6b\xcc\x6d\x87\xb0\xf1\x11\x5e\x88\xaa\x12\xb8\x47\x83\xc2\xd0\x3b\x35\x9d\x61\x66\x68\x92\xd4\xe5\xc3\xa8\x9e\xa6\x7a\x0f\xdd\xf3\x6e\x1f\xc0\x7e\xf3\xaf\x08\xba\xaa\x88\xcb\x45\x36\x1f\x53\xa8\xee\x2d\x2a\x3f\x3c\x22\xe5\xbc\xcd\x38\xed\x65\x9b\x7b\xaa\x6f\xf7\x4c\xe9\xea\xaa\xb5\xf4\x15\x5c\xaf\x4f\x38\xda\x02\x42\x8b\x47\x04\x44\xbd\x1c\x71\x02\xfe\x2b\x9f\xb0\x7d\x6f\xc6\xe5\x60\x90\x25\xae\xcc\xdd\xfa\x6a\xe0\xcf\x84\x07\x71\xc3\x91\x0a\xc0\x6b\xf8\xf9\xe4\x29\xff\x1a\xd3\x78\x80\x16\x8c\x2a\xaa\xd5\xe7\x5f\xa0\xf5\x61\xe1\x96\x7f\x60\x62\x4e\x99\x25\x6f\x0e\x4d\xda\x22\xb9\x5d\xa1\x12\xc9\x09\x85\x8d\xdd\x81\x5d\x1f\x64\x1b\x6e\xd9\x56\xd4\x2f\x17\xa4\x7d\x6f\x2e\x5b\x55\x0c\x1b\xd6\x4c\xe4\x54\x72\x5c\x8b\x76\xd2\x6e\x31\xe7\x7e\x5a\xed\xb2\x79\xf3\xbd\x5c\xcf\x3f\xfc\x3a\xf1\xc8\xad\x52\xc0\x2a\x4f\xdb\x36\x2c\x2f\x3b\x05\x9c\x9e\x41\xcd\x5b\x61\xba\xa1\x31\xf6\x21\xd5\xbc\x37\xab\x85\xbf\x87\x36\x91\x17\x0d\xf3\x8a\x45\x77\xc9\x8f\xfd\xba\x83\x85\xc8\x31\x09\x62\x5e\xa6\x2a\xeb\x7d\x62\x01\x74\x07\x26\x4f\xb2\xb2\xb4\x2d\xb2\xe3\x3d\x4d\xb6\xbb\xec\x11\xbf\x9e\xc7\xc5\x20\x35\x35\xd9\x79\x16\xcc\x64\x46\xb2\x96\x83\x81\x9c\xc1\xf2\xfa\x51\x0d\xe4\xeb\x3e\x89\x99\x7c\x75\xaa\x97\xb0\xb4\xd4\xce\xc6\x81\x01\x83\xc8\x56\xd0\xdb\x72\x12\x92\x59\xa7\x33\xb6\x06\xb0\x85\x8a\xae\x06\x1c\xf4\xb4\x8c\xfc\xd2\x52\x7b\x75\x9c\x24\xb6\x8c\x99\x8c\x77\x3e\x0a\x16\xdf\x8d\xa6\x9c\xa3\xf1\x50\x4d\x39\xa5\x96\x45\x02\x6f\xe7\x6a\x0b\x6c\x6e\x92\x4f\xb3\x82\x1e\xf4\xfe\xb1\x4d\xdf\x42\xe4\x89\xc4\x63\xd7\x36\x89\xbb\xfd\x5d\xb7\x9b\x28\x08\x2f\x8c\x9e\x56\x27\xf0\xc7\x6f\x4c\xc8\x46\x00\xb1\x85\x2a\xc8\x52\xf1\xe3\x34\x6b\x16\xdc\xc6\xb2\x87\x4c\xe9\x2a\xa9\x3f\x9d\x40\x44\x88\x95\x15\xc8\x3e\x7c\xd7\x04\xdb\xb0\x8a\x40\x52\x46\x72\x05\x6b\x0b\xfe\xe5\x1e\xc9\x99\x98\x24\xee\x8a\x1f\xbc\x52\xf3\x98\xa7\x37\xf5\x0e\x8e\xbc\xd4\x4e\xcc\xb8\x3f\x48\xe2\x94\x40\x32\xa2\x2d\xae\xb4\x53\xc2\x95\xdb\x72\x2e\x80\xef\x67\x3b\x01\xdf\x78\x37\x22\x0d\x94\x96\x5b\xbc\x55\xc2\xc8\xbd\x81\x47\x57\x1a\xe0\xca\xaf\xb6\xd7\xe2\x92\xd2\x58\xe8\x40\x21\xa2\xf8\x23\xdc\xaf\xc4\x65\xf5\x32\x84\x98\xd1\xa3\x46\x72\x8e\x4b\x71\xe7\xa6\xca\x42\xae\xa8\xda\x8d\x6d\xda\xb5\xa4\x5e\x7e\x06\x97\x2b\x27\x4d\xb1\xef\xaa\x31\x7f\xcd\x4d\x1a\x30\x23\x05\x0d\x89\xfb\x7b\x20\x49\x92\x6a\xd9\xfa\x3e\x43\xdc\xeb\xdb\x50\x8d\xf7\xfb\x7f\x88\x05\xa6\x5e\xc0\x17\xdb\x6b\x71\x6a\xd2\x6e\x6c\x73\x98\xa1\x62\x97\xf9\x98\x3c\xb0\x3e\x8e\x82\x16\xf4\x30\x4b\xe3\x32\xcb\x2d\xc4\x7d\xb1\xea\x42\xc5\x14\xf5\xd5\xb7\x99\xff\x78\x07\x8f\x50\xa1\xa5\x35\x11\xe7\x90\x93\x8d\xc6\x79\x31\xb6\x68\x99\xaa\xbf\x53\x78\x50\xc0\xe3\xe0\x42\x6e\x50\x9f\xaa\xca\x91\x4d\x92\xcc\x52\x9a\x2a\xf2\x0f\x18\xa1\x1f\xd4\xf6\x90\x96\x57\x58\xbe\x3e\x35\xa5\x17\x8f\xb4\x87\xb6\x28\x0c\x46\x2d\x36\xd6\x07\x2e\x61\x92\x63\x16\xe1\xf8\x4b\xbf\x21\x30\x63\x1d\xa8\x1e\x05\xf6\xa9\x4f\xbb\xc9\x8d\xa8\xe2\x36\xf7\x68\x76\x6f\x37\x19\x71\x8c\x06\x59\x89\x52\x7e\x8b\x6c\xbb\xde\x27\xb0\xd7\xfb\x35\x66\x42\xfc\x86\x52\x6d\x11\x73\xde\x8c\xa8\xb0\x78\xf3\x13\x1c\xc4\x0b\xad\x66\x22\x4a\x14\x99\x1d\x0c\xf6\x1f\x53\xe1\x64\x57\xe7\x93\x14\x7f\x05\x76\xee\x35\xe7\xff\x84\xf6\xa6\x3f\x99\x2a\xa1\x2e\x2d\xb5\xcb\xd8\x0e\x47\x20\x5b\xa8\xbe\x35\xb5\xf1\xcf\xf9\x1a\xa2\xd0\xd5\x6a\xa5\x18\x56\x4a\x76\x0f\x45\xcd\x37\x48\x20\x38\x31\xc5\xba\x99\x0b\x02\x3d\x67\xc8\x97\xff\xfb\xf8\x94\xd6\xd4\x42\x0f\xf8\x2a\xa1\xa2\xaf\x4e\x6a\x16\x2a\xa5\x71\x33\xd3\xc7\x54\x83\x09\x8d\x83\x01\xf4\x3a\xd5\xcf\xa3\x8b\xf8\x05\x95\x8a\x07\x11\xf1\xd7\x1e\x90\xe4\xcf\x25\x17\xe2\x69\x53\xaa\x01\x6c\xbf\x96\x64\x26\xcc\x52\x44\x6b\xdf\x24\x26\xc8\x37\x6b\xb2\x70\x5d\x1b\x6f\x68\xfe\x89\x81\x7e\x8a\xa4\x03\x4e\x4d\xbd\xf9\x6a\x59\x5b\x35\x69\x2a\x22\x4e\xd8\x5a\xc5\x69\xd0\x67\xbb\xd5\xbc\x54\x64\xe4\xce\xd1\xb9\xb4\xd4\x76\xda\x84\x79\x96\x7a\xfa\x2c\xc0\x31\x10\x61\xc1\x04\x9b\x75\xc3\x5d\x9b\xce\xba\x09\xa7\x59\x19\xaf\xc5\x6a\x35\xae\x04\x2b\x02\xb6\x3c\x20\x6c\xef\xec\xb6\x2e\x5c\xaf\x8f\x7b\x7d\xf8\x44\x93\xc4\xec\xf9\x88\x24\xae\x9b\x40\x76\xb9\x4d\xbc\xb1\x26\xa2\xe8\x4b\xd8\xfd\xe4\xa4\x61\x2d\x6e\x67\x23\x9b\x1b\x5f\x6b\x47\x71\x40\x54\xc0\xe4\x84\xc5\xb9\x9c\x4f\x0e\xaa\x6a\xa8\x8b\x9c\x86\x18\xb5\x9c\x4c\x01\x08\x96\x97\xdb\x6b\x59\xc6\x7a\x81\x7f\x1c\x91\xeb\xd5\x1f\x03\xde\xa5\x45\xa1\xf4\x17\xeb\x78\xe4\x6a\xd3\x42\x51\x00\x28\x2e\x04\x0a\x73\x1d\xf7\x93\x98\x3f\xa7\x81\xf9\xc1\x16\x75\x4d\x02\x50\x84\x55\xc7\x91\x66\xe0\x0b\xb0\x80\xe9\xfe\xd0\xfa\xf2\x6f\x49\x3c\x7e\x9f\x0d\x4f\x4e\x21\x22\x40\xf9\x4c\x0c\xe1\x91\x28\xef\x75\xa1\x06\x1e\xc8\x7d\x37\x9c\xf1\xd2\x6f\x30\x3f\xee\x01\x1e\x9b\x4f\xc0\x43\x61\xfe\x26\xd9\x27\x89\x90\x26\x22\xfb\x13\x2e\xe3\xc1\xf1\x1f\x10\x12\xf6\x04\x9e\x12\x02\xd3\xdd\x1d\xc6\x38\x05\xfe\xcc\x2d\xd4\xc5\xd1\x66\xbb\x36\x09\x22\x59\x65\x36\xda\x17\x9a\x69\x1f\xe1\xb2\x10\xb7\x8a\xa0\x1c\xe2\x85\x7b\xee\x17\xc1\x81\x85\x92\x99\x6a\xe8\xb4\xd8\xa6\x65\x25\xe8\xe5\x87\xb1\xca\x4c\xdb\x6e\x36\x1a\xd9\xdc\xb1\x2e\x1e\x7d\xcc\xde\x05\x17\xb8\xa0\x71\x9f\x62\xf3\x3f\x24\xc6\x4a\x39\xb0\x8e\x02\x6c\x30\x4c\xd4\x63\xce\x3d\x00\x39\x89\x9e\xf4\x3b\x8e\xb4\x1f\xa4\x81\xb8\x1d\x78\xa9\x17\x9d\x62\x0f\x76\xdd\x7d\xc4\xa9\x4b\xe2\x54\xc1\x94\x48\xab\xc5\x20\x57\x4e\x48\x39\xb7\x18\xe7\x7d\xeb\xaa\x48\xd8\x1a\xe1\xa0\x8c\x8b\xff\x01\x42\x3f\xc5\x8f\xb3\x05\x6d\xd3\x8a\xd6\x35\xa5\xed\x67\x42\x1f\x52\x50\x29\x83\x4d\xbd\x33\x40\x92\x8d\x46\x80\xc3\x8b\x1a\x40\x14\x96\x94\x93\x0d\x42\xa9\x87\xda\xf6\x0d\xdb\x1d\xef\xe8\x8e\xbd\x4b\xc5\xa2\x77\x77\xaa\xee\x2f\x2f\xb7\x8f\xbc\x74\xc0\xfd\x35\x16\x82\x77\x27\xd4\x91\x3e\x1e\x69\x3c\x48\x0c\x21\x90\x09\xc4\x2c\x7c\x42\x3a\x71\x17\x88\x99\xf5\xaf\x5c\x98\x8d\x01\x7b\x1b\xf3\x50\x5d\xcb\xdd\xcc\xc3\xc0\x7c\x07\xc5\x7a\x0c\x88\x37\xf0\xe4\x90\x17\x1f\x15\x87\x12\xad\x45\x05\xa3\x08\x90\x27\xa4\x64\xe7\x06\xa0\x08\xc7\x43\x97\x15\x2f\xfc\x07\x0d\x2b\xfd\x72\xbb\xb0\xc1\x54\xd6\x17\xe0\x7c\xab\xe3\x6c\xcd\x26\x31\xcf\xd2\xbe\xcd\xe7\xaa\xef\x67\x0b\x3b\x76\x4e\xc3\xee\x7b\x0d\xb3\x46\x55\x1e\xdc\x45\xc8\xc9\x27\xb2\xc1\x4d\xaf\x27\xbb\x39\x82\x83\xa7\x09\xaa\x33\xb3\x4d\xf9\xe1\xf5\xa9\x68\xf7\xc8\x4b\xed\x35\x57\xba\x5d\x58\x54\x71\xbf\x88\xea\x7c\xe7\xbd\xff\x8e\xa7\xcf\xab\x47\x16\x2a\x79\x67\x89\x02\x7c\x96\x22\xcb\x35\x67\x46\xc7\x12\xb8\x00\xfb\x23\x31\x47\x29\x1a\x21\xec\x23\x68\x65\xaa\x79\x14\x79\x01\x62\xca\x51\x07\xfe\x55\x5f\xee\xd9\xf9\x3a\xfe\x46\x3b\x1d\x0f\x57\x9d\x12\x14\x29\x75\x7c\x8b\x39\x6e\xdf\x22\x08\xb7\x4d\x62\x27\x99\x68\x7b\xee\xc6\x59\xfb\x50\x8e\xbd\x0c\xc4\x46\x9c\x97\x63\xdd\xe9\x44\xc7\xaf\xa6\xe9\xb7\x33\xa6\xfd\x52\xdb\xe4\xfd\x31\xb6\xe1\x43\x0c\x66\x56\xfc\xe2\x7d\x5c\x15\xea\x5e\x73\x9d\x90\xdc\x17\x03\x93\x8f\x84\xb0\x82\xc0\x5d\xde\xbf\x9c\x4c\x6d\x79\x0b\x8b\xed\x5e\xb6\x99\x3a\x25\x73\xc5\xda\x57\x6f\x5e\x8e\xbd\xae\xce\xc0\xe6\xab\xe4\x86\x76\x93\x41\x3f\x90\x54\x97\xa6\xee\x14\x60\xe8\x2f\xb7\x7b\xe3\x04\xa8\x1f\x0d\x59\x5a\x9e\x81\xfc\x31\x17\x0d\xa7\xf3\xf5\x83\xcb\xed\x35\xb3\x91\xe5\x2d\x02\x65\xa0\x08\xa2\x95\x8b\xcf\xd6\x17\x8f\x95\xf9\x2a\x63\x3b\xbc\x3f\x74\xea\x84\x1c\x2a\xbc\xae\x88\xcc\xe9\xc1\xde\xf7\xf2\x03\xd5\x1a\x23\x6b\x80\x1b\x66\x48\xa8\x25\xfa\x51\x5a\x58\x35\x9a\x30\xfe\xae\xa1\xdf\x22\x7f\x85\xf5\x44\xb5\x1a\x76\x0e\xad\x23\x2f\x39\x29\x75\x87\xdc\xf4\x6c\x95\xcb\x24\x61\x36\x0d\xfb\x73\xb5\xfd\xe1\xb8\x3b\x70\xaf\x12\x1b\xcb\x3b\x51\x28\x70\xbe\x33\xd5\x99\x5d\x99\x5f\x71\xca\xb3\x71\x59\xee\xb4\xa9\x0e\x1b\xc3\x29\xc2\x94\x77\xb3\x71\x0e\xc5\xcf\x60\x79\xe3\xae\x49\xed\x6f\x74\xd5\x37\xfd\x2a\xb6\x43\xf0\xac\x91\x50\x75\x1f\xaa\x6c\xcc\x2d\xbf\x0b\x5c\xb6\x7c\x4c\xc8\x87\xf5\xfe\x2a\x07\x6d\x97\x49\x02\x66\xfa\xee\xff\x86\x4a\xa7\xa3\x7d\xe4\x97\x5c\x0f\xce\xbb\x30\x09\xec\x4c\x93\x97\x83\x71\x1e\x1b\x91\x13\x41\x04\x75\xd4\xfd\xb1\x1c\x4f\x82\x19\xda\xc8\x16\x65\xdc\x75\x32\xf1\xdc\xea\xc1\x7e\xa9\x65\xa3\x50\x8c\xdf\xb4\x45\x09\x9a\xb3\x84\x08\x88\x74\x3c\x06\x41\xfd\x1f\xff\x1c\x68\x3e\xba\xd4\x53\x60\x76\xde\xa7\x4c\x49\x1c\x64\x00\xb8\xe0\xae\x6c\x29\x82\x28\x0d\xac\xc8\xca\x12\xb9\x31\x18\xd5\x5c\x8e\x82\xff\xe5\xda\x38\x59\x0b\xc6\x19\xaf\x7a\x8f\x74\x5a\x6b\xde\x26\x4b\x5e\xf0\xf1\x54\x64\x45\xb1\x9c\xc5\x5f\x1a\xcd\x4e\x65\xbf\xd8\x4b\x1e\xd4\xfa\x14\x17\x49\x5f\xf1\x44\xad\x3b\x62\x92\xf5\x3d\xee\x02\x30\x0c\x6e\x70\x43\xe7\xa2\xab\x58\x63\xa4\x3f\xb1\xcd\x58\xff\x96\xd7\xca\x84\x6a\x19\x8e\x3f\xd5\x09\x72\x16\x66\xc3\xc4\x09\xd5\x04\x01\xac\x91\x63\x72\x4e\x1a\xda\x9e\x60\xea\x98\x40\x27\xc7\x84\x15\x1d\x6c\xf5\x72\x33\x4e\xe2\x6e\x8b\x1e\xe8\x6c\xc7\xed\x1f\x72\xb2\x1d\x98\x70\x36\x2d\x73\x21\xcd\xbd\x18\xc4\x33\xfd\xd3\xbc\x47\xa4\xb9\xe2\x6b\x63\x93\x54\x2b\x55\x35\xc6\x91\x57\xfd\x7c\x12\x72\xac\x9f\x93\x75\x44\x61\xd3\x17\x5a\x8c\x2c\x3b\x8e\x27\x2e\x27\x41\x45\x2a\x1d\x54\xd9\xad\x84\x83\x18\x26\x67\x23\xf2\x92\x39\x4b\x04\xf3\x9e\x2d\x6d\x3e\x57\x47\x9d\x52\x95\x0f\x48\x3e\xdf\x6a\x0f\xe6\x30\x51\x0d\x8e\xda\x50\xe0\xee\xc5\xc5\x68\xac\x88\x60\x04\x04\xdf\x25\xf0\xcf\x77\x1b\x58\x70\x87\xdb\x3d\x9b\xa2\x92\x8b\xbb\x17\x30\x87\x9c\xf8\x71\x97\xe6\xdd\x16\x0b\x99\x8b\xc7\x93\x9c\x44\x84\x1d\x1b\x8e\xfb\x2d\x27\x10\x83\xda\xca\x8f\x48\xd8\xe1\x47\x53\xbb\xc6\x91\x97\xda\x26\x49\x0c\x2e\x00\x2b\xf7\x7b\xd4\x9b\x7f\xcf\x2f\x6c\xa9\x19\x25\x56\xb9\xf6\x0a\x60\x60\x34\x43\x93\xe4\xeb\x5a\x92\x49\x37\xeb\xd1\x1d\x42\xb7\x5f\x22\x56\xe3\xb1\x06\xd4\xac\xed\xf7\x25\x02\x40\xdc\x8b\xb2\xb3\x1c\x4f\xc9\x63\x8b\x33\x68\x69\x87\xa3\x2c\x37\x22\xfc\xa2\x2b\x27\xa1\xe6\xa7\x05\xf2\xbf\xd4\xde\x30\xc9\x58\x77\x00\x90\x15\xfe\x6c\x42\xde\x46\x7f\xe6\x67\x4d\x61\xcb\x6a\xfd\x9f\x0b\x15\x98\xdb\x64\x40\x7b\x66\xc2\xba\x75\x58\x50\x90\x85\x5e\xc6\xfa\x06\xf0\xc0\xb5\x7a\x99\x6b\xcd\x3e\xe9\x76\x52\x6c\xb1\xbf\xeb\xbe\x0f\xed\xb2\x3d\x1d\x72\xf6\x39\x13\xd5\x38\x97\x6e\xf7\x94\x8f\xe0\x97\x44\x67\x55\xf6\x16\xc4\x07\xef\xbb\x75\x44\x5c\x8f\xdd\x5e\xc8\x0e\xc8\xc2\xd1\x00\x55\x0c\x61\xd2\xdf\xa3\xf9\xa9\xb2\x7a\xee\x77\x91\x2a\xdc\x26\x61\xdd\x9a\xa8\x92\x4d\x01\x1e\x9a\x0d\x7d\xd2\xcb\x08\x10\xd4\x5c\x9f\x8b\x27\x64\x48\x58\xf7\xb2\x2e\x0a\xd3\xe2\x42\x64\xb5\xc2\x69\x81\x32\x14\x25\xf3\x78\x34\x17\x96\x94\x3b\xac\xce\x2e\x69\x0a\x50\x46\xb0\x8e\xd4\xbe\x9c\xbb\x0d\xd4\x01\x6e\x92\x58\x96\xc9\x73\x93\xf6\x2d\x8a\x31\x55\x1e\xae\x5c\x09\x82\x51\x5e\x9a\x84\x22\x5e\x56\x94\x12\xf6\xeb\x92\x4a\x08\xe1\x9f\x4e\xe8\x59\x5e\xf4\x9a\xef\x09\x28\x97\x8b\x9e\x94\xd1\xf2\x42\x7b\x42\x6c\x00\x14\xf1\x09\x57\x62\x42\xc5\xf8\x41\xbd\x23\xbd\x73\x7a\x2c\x1e\x69\x17\x56\x96\x18\x4c\xbd\x73\x84\x08\x9d\xa6\x68\x2e\x1e\x69\x67\x6b\x6b\xb1\xd4\xe4\x51\xe4\x3f\xc1\x48\x8c\x69\xa8\xe6\xf2\xf2\xa1\x76\x37\xce\x45\x27\x91\xab\xcb\xb5\x3e\x66\x83\xef\x6a\x6e\x87\x26\x4e\xc5\x97\x90\xdc\x07\x16\xf5\xa4\x36\x03\xcc\x2a\xcb\x4e\x63\x98\x2a\x58\x89\x07\x47\x69\xcd\x4c\x5d\x69\xc4\xd3\x34\x04\xfc\x83\x34\xe2\xa8\x87\x6f\x6c\x3a\x6d\x90\xa2\xb4\x31\x30\xa4\x1e\x54\x13\x10\x86\x97\xa9\xcc\x51\x64\xa9\x29\x0d\x6d\x89\xb2\xcb\x28\x40\x9d\xe4\x3d\x4c\x9c\x96\xd5\x2d\x6a\x29\xb5\x89\x42\xf1\x94\x6f\x52\xe4\x45\xf9\x4c\xb5\xb2\x7a\x73\xa5\xf0\xfc\x76\x6f\xb7\x7e\x43\x17\xf3\xb9\x0e\x15\x8e\xbf\x17\x30\x1d\xd9\x2f\x39\x8c\xb2\xaa\xa5\x52\xa1\x78\xff\x76\x68\x08\x7d\x0e\x80\x65\xca\x61\x5f\x95\x68\x0e\x51\x97\xfb\x8d\x0f\xda\x1d\x82\x49\x89\x00\x84\xc2\xe3\x29\x07\x3e\xef\x53\xb1\xa2\xcc\x6d\x59\x05\xd5\xde\xc2\xe1\xa4\xc3\xdb\xc8\xf1\x14\x4d\x62\x61\xa1\x9d\xda\xb8\x3f\x58\xcd\xf2\x41\x96\xf5\x88\x78\xf5\xbe\xbb\x23\x15\xbe\x9b\x5e\xef\x37\xe2\x0d\x33\x53\xdd\x28\x82\xb0\x3b\x51\xa0\xe4\x5c\x0c\x6d\x87\xff\xfe\xf8\xd4\x47\x17\x16\xdb\x83\x18\x7c\x2d\xa4\xe2\xa7\x30\x1c\xe4\x84\x4a\x51\x0e\xc6\x3b\xca\x6d\x29\x08\x60\x55\x20\x77\x8f\x94\x6b\x60\xaa\xa0\x3f\x4d\x64\x68\x8f\x6c\x5e\x8c\x4d\xcf\xd2\x5e\x79\x91\xf6\xca\x8b\x53\x69\x46\x35\x8f\xd6\x9c\x78\xb3\x0f\x66\x31\x10\xbe\xe1\xd6\x01\x39\x6e\x28\x76\xb4\xd7\xb2\x7c\xd3\xe4\x30\xf1\x40\xf8\x02\xa4\x8e\xa0\x24\xdd\xe2\x8e\x6a\x5d\xab\xd3\xd0\x99\x28\xac\x33\x28\x6b\x79\x7b\x91\xdd\x1d\x6a\x8f\x7e\xa7\xd6\x53\x7b\x6f\x42\xba\x08\x77\x9a\x44\xb9\x72\xbb\x36\x2e\x74\x97\xd4\x68\xce\x3d\x67\x0d\xf3\x76\xbe\x97\x6a\x4b\x4e\x33\x27\xea\xa4\x72\xf9\xee\xa9\x7b\x4d\xb3\x15\xed\x69\xfc\xb3\xa9\x46\xf8\x57\x5e\x69\x9b\x0d\xa7\xeb\xe3\x06\x32\x6a\xae\x1f\x63\xad\x95\x13\x7a\xaf\xe3\xa4\x8c\x87\xa6\x1c\x0f\x85\x1d\x0e\x28\x14\x54\xfd\xe4\xd8\x43\x79\x47\xd9\xa6\xcd\x67\x77\x80\xe1\xaa\x99\x83\x69\x77\x97\x1a\x81\x4f\xe0\x79\xa9\xe9\x9c\x67\xee\x65\x45\x69\xd3\xf5\x6c\xb3\x50\x3f\x76\xad\x15\x70\xe1\x60\x6a\x98\x7e\x75\xd1\xfb\x84\xe0\xa5\x3d\x62\x9f\x90\x8b\x2e\x41\xd4\x70\xa1\x16\x21\xbc\x09\xd1\x02\x11\x69\x8b\x42\xb1\xe1\xb8\xab\xe3\x22\xaa\x90\x7d\xc8\xc7\x07\xe1\xb2\xce\x50\x9b\xe9\x12\x15\xbd\x2e\xa1\x7e\x0e\x94\xcf\x29\x92\x6f\x3c\x8d\x44\x5d\x1b\x53\xcf\x90\xee\xf7\xb8\xb0\x4f\xb5\xbc\x0c\xc8\x6d\xee\x23\xdc\x9d\xb8\x94\x40\x75\x1b\x5a\xcf\x3f\xef\xf5\x1c\xdc\xef\xf8\x06\xe2\xca\xbc\x24\xbb\x62\x46\xae\xb2\xd9\xa1\xc1\x7a\x0d\x97\x8f\x3a\x1d\xa2\x00\xcf\x09\x5f\x3c\x22\x23\x56\xea\xf7\xe8\x16\x5f\x89\x74\xcd\x1f\xa7\x3d\x9b\x6f\xe6\x71\xa9\x59\x80\x30\xa9\xf1\x78\x94\x56\x4d\x6e\xea\x79\x06\x6f\x9d\xbd\xa1\xd8\xf9\x3e\x57\x44\x65\xd0\xa9\x1a\x51\xc0\xc5\xde\xc4\xeb\x56\x49\x75\xb2\xea\x80\x3c\x0a\x56\xc8\xe9\xb2\xd9\xca\x7c\xdb\xf4\xb3\x34\x7e\xd3\xce\xd4\x0a\x22\xe4\x04\xc0\x01\xeb\xef\x50\x13\xb8\xe8\x9a\xb4\x27\x3a\x23\x32\x8b\xa2\xb0\x9f\x5f\xa6\xac\xcd\x71\x53\xca\x71\x6e\x59\x57\xe9\x02\xdf\x4a\xa8\xb6\x75\xb3\xd1\x96\xf7\x91\xc4\x13\xc2\x2c\x90\xfd\x8a\x0a\x0f\x57\xb1\x23\xa2\x72\x7b\x91\x1a\xc5\x1b\xc5\x0b\xfb\x02\xf1\x70\x97\xdb\x97\x10\x08\x1f\x73\x9d\x19\x44\x3b\x4f\x61\xf7\xf1\x12\xfc\x2b\x41\x5b\xb2\x7a\xfa\xe8\xff\x38\xb7\x33\xcd\xcb\xaf\x71\x6a\x7d\xc9\x1b\x14\x64\xab\xaf\x43\x93\x5c\x62\x31\x6c\xe6\xd7\xb1\x88\x61\x48\xc0\xbd\x09\x78\xcd\xd3\x53\x35\xfc\x2f\xb5\x4d\x51\x64\xdd\xd8\x94\x76\xb6\x56\x68\x7b\x59\x11\x61\x70\xed\xf7\x66\x98\xde\x60\xf1\xf7\x26\x41\x9e\xc1\xa4\xbf\xe8\xe2\x4d\x24\x97\xdf\x41\xc4\x8b\x6a\x97\x50\x14\x80\x5d\xdc\xd3\x71\x53\x00\x85\xa8\x2b\x93\x00\x9e\x3c\x0f\x9f\x70\x2f\x73\x74\x48\x01\xe9\x9f\xff\x5c\xc7\xed\xcd\x98\xe8\xbb\xb7\x67\x0e\xff\xcd\xaf\x06\x4e\x46\x48\x0d\xef\x92\x35\xc2\x43\xcc\x40\x2c\x57\xe0\x84\xaa\xed\xaa\x2b\xd1\xab\x11\x60\xf5\xa8\x45\xcf\xa9\x43\x10\x99\xfd\x1d\x1a\xc2\x77\xdd\x40\x77\x6b\xc3\xd2\xe7\x9d\x2f\x9d\xc8\xfb\x46\xa4\x90\xa4\xc9\x86\xd4\xfe\x05\x8e\xaf\x46\x84\x84\xcb\xb9\x43\x48\x3b\x11\xb4\x17\x7a\x1a\x91\xf7\xdc\xc2\x0c\xdc\x14\x46\x91\x58\x52\x6a\x57\x27\xa0\xd4\xce\xd2\xa7\x6c\x9e\x67\x79\x01\xab\x2f\x61\x6d\x4c\x82\x7a\xd8\x49\x24\x5e\x7e\x24\xfa\x2c\xfe\x19\x57\x0c\x57\x85\xd9\xb0\x28\xb2\xc2\xbc\xe9\x76\xc7\x05\xd0\xbf\xd8\xb6\xd5\x02\xb9\xe5\x45\x80\x4e\x34\xd2\x4a\xe3\x52\x84\xf9\x54\xf0\x32\x60\x0e\xcf\x90\x6c\x28\x24\x96\xe2\x0d\x2b\xf9\x34\x6a\x3f\x42\xb9\x91\x93\xc6\x5a\x41\xd7\xe4\xa3\x19\x7a\xbc\xe7\x30\x22\x90\xf3\xdd\x26\x4b\xd5\x93\x93\xcf\x90\x43\xde\x5a\x52\xcd\x99\x2a\x7d\x5d\x99\xf7\x12\x2b\xee\x3a\x91\x90\xff\x47\x64\x95\x52\xdf\x75\x17\x2d\xff\xe0\x66\x27\x7a\x63\xd7\x6a\x5a\x74\x1b\x59\xe2\x1c\x1b\x66\x68\xed\x80\xff\xa7\x32\xd8\x43\xe7\xfe\x1f\x07\x5a\x7e\x96\xe0\x63\x54\x75\x47\x85\x44\x0d\xb7\x1a\xc5\x06\xf2\xcc\x84\x10\xca\x7b\xe6\x7a\xf8\xc8\xf9\xa9\x4f\xbd\x3c\xff\x6a\x3b\xb7\xa3\x2c\x2f\xeb\x2d\x0a\xa0\x08\xe5\xb8\xa6\xa9\x98\x76\x2d\x44\x54\xc5\x62\x01\x4b\xbc\x57\x38\x3e\xa8\x84\x42\x74\x56\xd1\x65\x15\xff\x4d\xac\x57\xdb\x93\x5f\xfd\x84\x7e\x51\x51\x66\xdd\x75\xd1\x62\xe4\xea\xfc\xfb\x52\x2f\x94\x33\xba\x9c\xc1\xb8\x58\xb7\x52\x1f\xf3\x58\xbd\x80\xdb\xdb\x89\xfc\x5d\x58\x6c\xbf\x3c\xbf\x3c\x17\x1a\xe9\xb7\x98\x99\xf9\x23\x2c\x4e\x5e\x86\x7c\x69\xc9\xc3\x25\xdd\x78\x53\x84\x2e\x69\xf8\xbd\xd1\x4d\xc6\x3d\x27\x51\x11\x0c\xae\xf0\xc7\x2a\xcd\x4f\x02\xad\x27\xc9\xae\xf4\x8a\x0f\x95\x7a\x71\x61\x56\x45\x1c\x57\x08\xde\xe0\x8e\xa0\x03\xa8\x3d\x47\xd7\x59\x3e\xda\xd4\xcc\xc8\x6d\xdc\x1d\x7c\xb2\xbf\x7b\x28\x78\x75\x73\x8b\x24\xd5\xfb\x7b\x57\x9f\x51\x17\x70\xce\x23\xd7\xc7\xa3\xd9\x50\xda\xfb\xd7\xee\xba\x43\xd9\x75\xde\x23\xd4\xab\xb7\x8d\x25\x8b\xb1\xd9\x3d\x27\x6d\xdb\x0a\x01\xd9\x39\xb7\xb6\xc9\xf1\x54\x43\x77\x61\xa1\xbd\x39\xc8\x12\x5b\x38\xd7\x7d\x5f\x31\x46\x2f\x4e\x8d\xa0\xc8\xa9\xc4\xda\x72\xe0\xc6\x78\xf5\xb2\x14\xd0\xd7\xf2\xfa\x21\x17\x19\x7a\x38\x1a\x89\x72\x84\x47\x80\xf9\xdc\xe0\x03\xaa\x73\x76\x93\x6c\x8c\x3c\x0c\x85\x9b\xab\x6e\x43\x96\xe3\x86\xf5\x85\x11\xc2\x58\x14\x91\xa8\xc8\xf1\x54\x5c\xbb\x32\x7f\xb8\xbd\x31\x26\x21\xcd\xcb\x44\x47\xb8\x4c\xed\xc9\xd4\x16\x65\xc2\x05\x88\x1f\x31\xed\xe1\x47\xc4\x90\x36\x1b\xb1\x5b\x77\x67\xdd\xba\x56\xeb\x93\x34\xb5\xb4\xdc\xab\x96\xbf\xf2\xd2\xe3\x1b\x71\xb7\xcc\xb4\xc9\xa1\x40\x42\x20\xe3\xe4\x98\x64\x01\xe3\xb4\x88\x7b\x60\xf8\x49\xa3\xdc\x6d\x86\x8f\xae\x34\xd9\x40\x6c\x9a\x52\x28\xaf\xd8\x9d\xff\x94\x4d\x20\xfe\x94\xb0\x0c\x47\x5e\x9a\x69\x1d\x79\x49\x92\xaf\xc7\x51\x70\x1f\x7a\xc0\x52\xfc\x7f\xea\x2b\x05\x83\xf1\x30\x46\xd1\x04\x29\xf9\x2d\x6a\xc9\xdc\x6a\x9a\x1d\x45\x62\xed\x3a\x79\xf1\xde\x26\x21\x82\xdb\xa4\x7b\xb6\x6a\x6a\x42\xa7\x6c\x06\x7e\x9e\x0b\x20\xdd\xdc\x8c\x8a\x19\x92\xb3\x65\xc9\xc2\xef\x91\xac\xf8\xf9\x29\x10\x95\xa3\xf8\xc7\x23\x93\x97\x71\x61\xd2\x56\x5d\x77\xd9\x63\x17\xae\x4d\x99\x26\x7b\x71\x75\x93\x66\x8e\xbb\xef\x4b\x63\xb2\x11\x7e\x92\xff\x4a\xb5\x98\xb4\xc7\x23\xd7\x87\x55\x41\x55\xf7\x01\x9d\xbf\x61\x25\xeb\xc5\x45\xd7\xe4\x3d\xdb\x9b\xab\x22\x2f\x44\x1e\x62\xd2\xa8\x20\x60\x17\x9f\x79\x9f\xba\x15\x25\x5b\x9e\xa5\x26\xcb\xb9\x86\x91\xdf\xde\x8c\x45\x0f\x55\xfd\xd6\xa8\xf2\x30\x6d\x56\xb2\x78\xa4\x9d\xc4\xc3\xd8\xf1\xeb\xbc\x5a\x61\x4d\x93\x01\xaa\x57\xa4\xd3\xb4\xec\xd3\x9d\x46\x53\xdd\xd2\x52\x59\x41\xa5\x4e\xaa\xaf\x50\xa2\x7d\xcd\xbb\xc3\x76\xd9\x6e\x1a\x1c\x06\x74\x70\x01\x83\xd6\x5e\x98\x66\x06\x10\x36\xdf\x82\x9a\x33\xae\x03\x43\x4c\xe5\x32\x03\x99\xf2\x74\x93\xcd\xca\xd0\xe4\x59\xea\x52\x31\xac\xfd\xd8\x30\xaf\xb1\x3c\xed\x35\xc2\xfb\xe7\xd6\xf4\x4d\x0a\xfc\x02\x92\xfc\x5b\x54\x37\xfe\x49\x14\x30\x96\xa7\xf1\x9c\x75\x30\xba\xb8\x97\xa5\x21\x84\xe5\x8b\x18\x34\x6c\x16\x32\xd9\x87\x55\x48\x30\x17\x46\xe5\x23\x1e\x69\xb0\x55\x42\x20\x22\xfe\x0c\x6c\xd0\x85\xe4\xe2\x89\xce\x93\xfe\xaa\xb3\xfc\x17\x5a\x0b\x0b\x5e\x64\xde\xc5\x50\xc8\x63\x4f\x3a\x30\x97\x80\x69\x9c\x07\xb3\x0f\x87\x0f\x6a\x40\x78\x15\x2f\x19\xf4\x44\x29\xd0\xa0\x4d\xbc\xdb\x81\xba\x95\x97\x11\x24\xa1\xff\x3e\xf8\xca\x1a\x6c\x71\x15\xe7\x14\x27\xe4\x10\xaf\xf3\x92\x5a\x2b\x87\xbc\x51\x6e\x75\x83\x28\x2c\xef\x42\x96\xe1\x25\x9a\x83\x0a\xa3\xe4\xc0\x2a\x3a\xd9\xf2\x3a\x53\xef\xb9\xed\x43\x2d\x6b\x28\xa1\x7c\x07\x11\x06\x32\x75\xe5\xe6\x52\x07\xe6\x45\x4f\xd1\x6e\x44\x7f\x77\xa5\x1d\x8a\xd5\xf2\x2d\x77\xc1\xcc\x65\x76\xaf\xf4\xde\x81\x4e\x68\x00\x8b\xa6\x90\x7c\xc0\xbd\x77\x4c\xa2\x07\xbe\x02\x5c\x8c\x8b\xd2\xc4\xa9\x59\x4d\x40\x82\xd5\xfc\xdc\xfd\x92\x12\x7c\xab\xc7\x11\xfa\xde\x61\x73\x15\x4e\xb3\x6c\x85\x4d\xce\x3b\x8a\xf5\xc8\xe3\xc2\xee\xc3\x8b\xc0\x82\x72\x81\xfa\x7d\x7b\x3b\x35\x15\xc0\x9a\xf6\xcb\x54\xfd\x5e\x2d\xf7\xa9\x31\x0f\x21\x45\x25\xd4\xef\x9c\x65\xaf\xac\xcc\xb7\x47\x79\x36\xb2\xb9\x04\x03\x9e\xe0\xee\x3d\x5c\x8e\xee\x8c\x14\x0f\xad\x1c\x6a\xaf\xcc\xef\x6f\x7d\x75\x31\xec\x1b\x2f\xcf\x0b\x2a\xf9\x74\xf5\x20\xa1\xd7\xb4\xc8\x8a\x20\xde\x1b\x9c\xf2\x8b\x47\xc8\x38\xa5\xd9\x14\x51\xc3\x73\xa6\x13\xa6\xd7\x47\x6e\x99\x50\xf1\xbf\x10\x98\x98\xdc\x95\xfe\x57\xe6\x3d\xfe\x3b\xf4\x28\xdf\x6f\x4a\xac\xd2\x71\x59\xd6\xdd\x56\x03\xca\xea\x8c\x6f\xd2\x89\xcf\x9e\x73\x3e\xc1\x8f\xce\xe1\x66\x54\xd6\xbe\x5a\xf8\xab\x5d\x3e\x98\x87\x5e\x8b\xc8\x01\x6c\xe2\xeb\xce\x7f\xf9\x00\xf5\xd5\x9d\xc9\xc5\xa7\xdc\xdb\xc3\xda\x74\x72\x42\x4a\x1f\xdf\xc5\xe0\xf7\xae\xb1\x9e\xb1\xfc\x21\x0b\x6a\x5c\x8b\xa8\x18\xbb\xed\xa6\x9e\xd7\x1e\xaf\x1e\xa4\x8c\x11\xf2\x1d\x7b\x2b\x22\xe2\xcd\x1d\xc9\xb7\x11\x37\xa0\xb1\x8f\x3d\x6b\xb6\x43\x3d\xb5\x9f\xe0\x75\xf9\x01\x57\x3d\x24\x34\x11\xbf\x4f\x7c\x7f\x84\xf7\xa2\x98\x24\x3c\x84\x28\x40\x67\xfe\x53\xad\x06\x59\x66\x78\x51\xba\x94\xd6\x02\xf2\xe9\x56\xec\xa1\xf6\x20\x76\x0a\x53\x8e\x3c\xe9\x3e\x89\xa9\x0c\xf4\xa3\x1c\xfb\x6a\x8e\x77\xd3\x45\x51\xbd\x49\x59\xaa\xc9\x49\x3d\xee\xd9\x4d\xb3\x85\x0b\xc3\x78\xfc\x29\x8d\xcd\x9f\x4e\x82\x40\x61\xec\x31\x6a\x5a\x9e\xa4\x01\x71\x62\x42\x31\xf5\x70\x35\x81\x7e\x10\x9e\xf8\xac\x03\xf5\xc9\xf1\x76\x08\x65\x07\xe3\x7e\x5f\xbf\x52\x91\x29\xee\x2b\x15\x9a\xc2\x0f\xaf\x9b\x43\xb2\x15\xcf\xeb\xf7\xa2\x90\x70\xbc\x87\xd5\x40\xd7\xcf\x9d\xe1\xc2\xa1\x97\x0e\xb7\xd7\x92\x2d\xbf\xbf\xab\x6b\xa2\x7b\xfa\xea\xa7\xb8\x33\x28\xa9\x16\x84\x55\xa1\x24\x79\x19\x17\xbf\xc2\x7d\x3c\xd5\xe6\xd3\x00\xac\x1f\x9b\x14\xdc\x20\x34\xe9\xc0\x73\xc5\x76\x27\x55\x38\xb5\x01\x0a\x05\xc9\x24\xcb\x0a\x9b\x20\xb8\x94\xda\x75\x14\x9a\xae\x97\x09\xb3\x5c\xc4\x00\x10\xcb\xe0\xbd\x87\x25\x58\x6d\x5f\x79\x5c\x0b\xf9\x5f\x7b\x33\xe1\xe5\x24\x4e\xae\x34\x24\xde\x77\xdc\x1e\x21\xc7\xc4\xd7\xeb\x99\xa1\xe9\x8b\x3d\x25\x89\x6a\x2e\x7a\xd3\xb1\xe7\xc8\x11\xd6\xa4\xf1\x10\x32\xfd\xd4\xfe\x82\x59\xa6\x1c\x4f\x3e\x17\xfa\x7e\x36\xef\x0e\x4c\xda\x8b\x8b\xba\x58\xff\x8d\x28\xc0\xdc\x6e\x10\x81\x33\x4e\xbb\xb9\x35\x85\x75\xa2\xed\x6a\xad\x18\xc8\x73\xc7\xd9\x6f\x16\x92\x1b\xc2\xa1\x8c\x82\x43\xed\xf6\x64\xc7\xb6\xe8\xbb\x4e\xe8\x75\xab\x7d\x63\x15\x6a\x48\xc1\x3f\x22\x39\xb9\x6f\x30\xec\xf7\xad\x88\x54\xe3\xdc\xf6\x25\x43\xf4\xcb\x48\x10\xf1\x80\x4e\xb3\x1a\xea\x69\x5f\x59\x77\x78\x99\xa1\x83\x64\xcd\xb0\x12\xd1\x84\x6a\x3f\xc8\x6b\xb5\x21\xf0\x1c\x79\x21\x15\xeb\x59\x92\xc6\xeb\xd9\x06\x0a\xd2\xaa\x69\xea\xbe\x48\x4e\xa6\x26\xf9\xf2\x72\xdb\xc4\xf9\x6a\x96\xa7\x52\x4f\x63\x7b\x2e\x5d\x2b\x1b\xf4\x56\xba\x59\x5a\xc6\xe9\xd8\x0b\x53\x62\x83\x7d\x72\x3b\x94\x34\x0f\x10\x16\xf6\xc2\xe4\xb3\x4d\x26\xce\x85\xeb\xd4\x80\x6a\x70\xcb\x3d\x76\xd0\x88\x2e\x46\x41\xfe\xff\x68\x53\xfa\xdc\xcd\xcd\x50\xca\xd2\x1e\x09\x11\x78\x5a\x17\xc8\x78\xf2\xeb\x3e\xf3\x7b\xdd\xbc\xf9\xe6\xd6\xcc\x54\x1b\x12\x51\x16\x44\xdf\x94\xa3\xfa\x29\xdf\x98\x1d\xa7\xa9\xbf\x45\x3c\x42\x18\xdd\xbb\x17\xff\x6b\xcf\xb9\x5b\x44\x84\x3c\x37\xe5\xd0\x7b\x70\xb9\x3d\xc8\x86\x19\x91\x6c\x76\x75\x08\x21\xb1\x6b\x4a\x61\x4b\x10\x99\xa8\xcf\x7a\x76\xbe\x2f\xbe\x5d\xa5\xa0\xf2\x91\x87\x2b\xb9\xae\xc0\xff\xa3\xc2\xfe\xff\xab\xde\xc1\xe7\xd8\x45\xb6\xac\x36\xff\xbc\x88\xc5\xfb\x10\x83\xf4\x0c\x99\xeb\x9e\x99\xca\x54\x1c\xd2\x21\x8f\x4b\x9b\xc7\x86\xdd\x5f\x6e\x92\xfb\xcb\x4d\x2a\xa5\x3a\x7a\x63\x19\x17\x65\x31\xcb\xaf\x8c\xe4\x37\xd0\xdc\xf4\xec\xee\x83\xa1\x91\xf0\x49\xb6\xfe\x26\x49\x6c\xdf\xa4\x5b\x4e\x5b\x19\x49\xce\x47\x4c\x24\xfb\xc8\xcb\xac\xdb\xe1\x68\x60\x8a\xf8\x4d\xed\x7d\x00\x68\xf8\x10\x83\x4c\x95\xf1\x83\xa0\x68\x3d\x05\xcc\xe2\xde\x3e\x32\xc2\x11\xd8\x23\x1a\x3d\xd7\x26\x41\x48\xe3\x3d\x46\x64\xe2\xe9\xe1\x95\x3c\xc6\xe2\x82\x3d\xf6\x6d\x2c\x41\xbe\x61\xb2\xb4\xa4\x5c\x17\xaa\x53\x39\xcc\xcc\x5c\x40\x46\x20\x36\x56\x79\x3a\x62\xd1\x9c\x67\xf1\x0e\xf0\xc3\xd0\xbf\xf8\x69\x33\x36\x65\x60\x87\x55\x80\xa1\xc9\xa5\x54\x66\xb1\xc4\x69\x99\xb6\xa1\x2d\x3e\x1e\x55\x91\xc3\x2c\x53\x69\xb9\x16\x59\x5d\xa8\x40\x30\x5c\xdc\xaa\x31\x2c\x3f\xc5\x37\x6c\xb1\x37\x00\x3a\xfe\xc9\x84\x92\xfe\xbb\x4c\xd6\x3e\x89\x20\x53\xe4\x8a\xb0\xda\x63\x6b\xbc\x4a\x32\xe1\xef\x4c\x82\x2f\xe2\x55\xc2\x39\x8d\xfb\xc5\x3e\xda\xb9\x69\x48\xa1\x2c\x83\x07\xf5\xec\x36\xed\x6d\xe7\x08\x1f\x20\xe8\x7d\xf9\x07\x0c\x0f\x2c\x67\x7f\xb1\x43\x55\xdc\xdb\x54\xd0\xb7\x1b\x36\x2d\xc7\x55\xcc\xf6\x84\xbb\x70\xad\xe1\x55\x57\x81\xb0\x10\x75\x5b\x24\x39\xa2\xff\x03\xb0\xd5\x6d\x04\xc0\xa8\x9b\x4b\x5c\xa3\x48\x98\x90\x99\x9d\x66\x88\x9c\x20\x33\xe5\x84\x0a\x85\x03\x9b\x8c\x6c\x6f\x7f\xe0\x47\x83\x6a\xaa\xa2\x4b\x14\xb8\xff\x6c\x12\xd8\xdb\x0f\xdd\x63\x54\x35\xa6\x2a\x34\xf0\x1f\x08\x4e\x6a\xb2\x5b\xe1\xd3\xff\x9e\x24\x02\xaf\xe1\x66\x74\x65\xd3\xd8\x71\x60\xd2\x42\xbc\x6b\x71\xd3\x3f\xc5\xa4\x94\x13\x8f\x2a\x48\xb2\xbc\xa7\x15\x6e\xe0\x93\xc0\x17\x54\x37\x2b\x62\x3f\x4f\xbb\xdb\x55\xa3\x79\x48\x58\x67\xac\x71\xdf\x23\x43\x83\xef\xd5\x61\x72\xb1\xb6\x8c\xb0\xec\x9f\xc5\x98\x97\x93\x00\xdd\xe9\x0e\x36\xe3\x14\x4d\x16\x55\x01\xa7\x15\xe5\x52\x14\xd6\x4d\xe4\x4c\x31\xba\x5d\xad\x30\x35\xd8\x86\xeb\x72\x30\x7a\x48\x4c\xbe\x5e\xac\x8e\xf3\xbe\x5c\x06\x41\x93\x0e\x79\x3f\xc3\x86\x04\xae\x30\x43\x4b\x96\x22\x50\x79\xc5\x1c\xbf\xc3\x8a\x44\xd3\x52\xbb\x80\xd5\x76\x93\xcc\x43\x50\x84\x6b\x39\xa9\x11\x2f\xc3\x18\x1a\xc6\xbd\x9e\x91\xa0\xce\x4b\xa0\x87\x07\x31\xb5\x71\x3b\x53\xe0\x24\x16\x83\x47\x44\xba\x00\x10\x6a\xa7\x8f\x57\xad\x86\xed\x74\x64\x8a\x92\x94\x0a\x1f\x93\x52\xe1\x63\xd6\x71\x76\xbd\x90\xd9\x20\x5b\xd2\x02\x02\x10\xf5\x3a\xf0\xbc\x54\x30\xd3\xdd\x9a\xfc\x03\x29\x7d\xa0\xa3\x02\x84\x2b\xd6\x19\x90\xbf\xe5\x78\x4a\x88\x6c\x65\x7e\xc5\xc9\x34\x0f\xe3\xa2\x14\xc8\x37\xde\xd1\x19\x4c\x25\x39\x21\x10\x7f\x3f\xeb\x15\x33\x24\xfd\x7e\x92\xca\x70\xe8\x38\x0b\xe5\x98\x60\x62\xa6\x1c\x4b\xfe\xa6\xbe\xcb\x01\xdf\x7f\x96\x64\xbc\xb3\x61\x5c\x58\x36\x42\x7b\x6f\x42\xd2\xf1\xf7\xc8\x72\xfe\xbb\x13\x86\x51\xb4\xbc\x21\xf1\x5b\x4d\x8c\x3c\xfb\x46\x69\xd3\x5e\x5d\x8b\x13\x15\x30\x39\xf6\xa3\x37\xb7\x6b\xb9\x2d\x06\x7e\xb6\x21\x1e\xd9\xbd\x1d\xf8\x45\xbb\x3b\x9c\xbe\x6d\x66\xd2\x42\xd0\xf8\x0f\x63\x5e\xce\x58\x4a\x3a\xee\x8f\x9d\x2d\xfe\xe2\x11\xe9\xd1\x09\x06\x56\x4e\x58\x03\x20\xcf\x86\xa3\x12\xa1\x9b\x12\x5a\x5a\x9e\x92\x8d\x87\xa0\x5c\x14\xd5\x04\x1e\x9a\x74\xbc\x66\xba\x10\x56\x06\x58\x43\x65\x02\x02\xa8\xfa\x80\x8b\x9e\x1c\x38\xfd\x3f\xfb\x6c\x87\x48\x65\xef\x93\x8f\x48\x2f\xce\x6d\xb7\x14\xa6\xb3\xa8\xec\x91\xc4\x79\x8b\xdc\xa3\x18\x53\x52\xc5\x55\xbd\xdc\x38\xee\x93\x66\xdc\x6f\xbb\xe0\x46\xa3\x81\x06\xae\xd4\xa6\x95\x69\x21\x06\x64\x11\x19\x22\x04\x37\xb2\xdc\x16\x71\x6f\xac\x90\x1d\x2c\xd5\xff\x62\x42\xeb\xf6\xbf\xa8\x7b\xd7\x9b\xd4\x81\xe2\x3c\x6e\x82\x71\x57\x84\x88\x7f\x48\x14\x91\xdc\x6e\xc4\x05\xc0\x1e\x00\x3e\xdf\xc7\xbe\xa0\x1b\xa7\x1b\x37\xaa\x61\x1a\xb0\x06\x3f\x98\x04\x72\x41\x7f\x9c\xac\xd9\x1e\x68\x23\x4a\xe4\x72\xef\x81\x53\x3b\xc4\x32\xff\x7a\x42\xea\xe5\xf7\x08\x98\x9f\x67\x45\xe1\x44\x8b\x7c\xcf\x22\x50\x15\x2e\x32\x55\xe1\x22\x77\x69\x04\x5a\xe6\x5b\x93\x4b\x4b\x7e\x6f\x6e\x50\x18\xe9\xdb\xd4\x91\xbe\x5b\x01\x52\x76\x82\xd2\xf2\x13\x53\xa0\xcd\xd0\x84\xe9\xad\x8e\xf3\xad\x16\x69\xd4\x9c\x25\xe5\xa9\xb3\x93\xcf\xee\x64\x9e\x1e\x6e\xaf\xcc\x1f\x06\xf9\x5d\x90\xfc\x11\xb5\x43\xc4\x7f\x73\xba\x15\x98\x6d\xa6\x36\x2f\x9e\x70\xff\x4a\xe2\xc4\xda\xb0\x3d\x11\x85\xb8\xe7\xd6\x0e\x79\xce\x1d\x52\xa1\x87\xbd\x20\x13\xcd\xd1\x63\xb5\x39\x7a\x8c\x4b\x33\x67\xc9\xfb\xe5\x4d\x3b\x14\x29\x1c\xd4\xe5\xbf\x47\x9e\x5e\xdf\x6b\xd2\xcd\x18\x18\x25\xf3\x7a\x71\xab\xe5\x65\x3d\x66\x4b\xd9\xd8\x6e\x22\xfd\xc0\x83\x13\xd4\x8c\x9c\x34\x80\x91\x46\xe3\xd5\x24\xee\xaa\xeb\x80\x56\x34\xab\x87\xa0\xa5\xce\x86\xdc\x38\xb7\xc5\x38\xf1\xd0\x06\xd5\xde\x70\xf7\x2a\x27\x9d\x10\x4c\xae\x25\x18\xfb\x08\x39\xa5\x76\xe9\xeb\xeb\x2b\xf3\x32\x63\x76\x77\x42\x48\x74\x85\x2c\x75\xcb\x78\xb8\x6a\xf3\xc4\xa4\x3d\x64\x80\x18\x89\xb7\xa3\xf0\x49\x99\x78\x0a\xb7\x0f\x01\x54\xb2\x61\x7b\x7b\x42\xbb\xeb\x87\x13\x1a\x2d\x67\x27\x35\xe2\x6d\x6b\x61\xd1\xf7\x54\x03\x56\x67\x0e\x02\xab\x21\x10\xd7\x09\xdd\x1f\x27\x26\x9f\xf5\xc5\x80\xe5\x67\x3b\xc1\x72\x46\x34\x1f\xbc\xa9\x9a\x7f\xc9\xbb\xb7\x3f\x29\x05\x53\x5d\xee\x16\x69\x5e\x41\xf0\x5c\x8e\x3b\x9a\xd7\x0e\xb2\x6e\x8d\x03\x53\x53\xf4\x3c\xc7\xde\x86\x79\x5c\x25\x28\x84\x3d\xb9\xc9\xf4\xd8\x9b\xa4\xf0\xd9\xcb\x63\x27\x90\x3e\x13\xf4\xd2\x2e\x93\x22\x22\x9a\x20\xca\xf8\xf7\xdb\xee\x30\x5b\xf7\x78\x12\xfc\xfc\x71\xec\x39\x72\x32\x35\x8a\xbf\xf2\x4a\x7b\xc3\x31\xb4\xaa\x37\x57\x2b\x11\xeb\x6f\xea\x4d\xda\x91\x91\x80\x16\xef\xf4\x27\x84\x09\x94\x12\x11\x02\x95\xab\x84\x03\xfc\xeb\x7f\xfd\xff\xcf\xd6\x87\x47\xdd\x2b\x95\xe3\x68\xa7\x76\xac\x3e\xf8\x61\xdc\xcd\xb3\x22\x5b\x2b\x67\x49\x8a\x64\x37\x4b\xaf\xbf\xed\x86\xa8\x1f\x26\xcb\x61\xc8\x68\x0b\x66\xcd\xa8\x98\x06\xf6\x16\xf0\x85\xe5\xb8\x49\xd6\xaa\x6b\xbc\xac\x15\x56\x20\xc8\x70\xcb\x71\x53\x37\x33\xcd\xf2\x4d\xdb\x8f\x45\x90\x5a\x72\xd6\x88\xca\xeb\xd3\xe2\xbf\x2f\xcf\x1f\x6a\x8f\xd3\x71\x31\x46\x1d\xdc\x47\x93\xa8\x0f\x28\x39\x91\x10\x48\x8e\x8e\xda\x62\xdd\xf8\x50\x2e\x3c\x37\xd5\x74\xd7\x07\x38\x4a\xac\xa9\xf6\xb6\x97\xb5\x95\xb2\x0f\x0f\x0f\xd0\xe2\xbb\x94\x48\x48\x06\x80\x50\xf1\x68\x13\xad\xa4\x34\x6f\xc8\x6b\x57\x94\x6e\xf5\x69\xf4\x27\x4f\xe2\xd3\x28\xe7\xdc\xf1\x3c\x4d\x33\x2e\xc7\xc3\x74\x26\x94\xf6\x91\x25\xaa\xe5\x64\x35\xa0\x15\x9a\xc7\xe2\x76\xf9\xb8\xdf\x17\xeb\x66\xa4\x8d\x42\x03\x55\x92\x3b\x45\xe2\x57\xc9\x6e\x49\x4c\x1a\x51\xf6\x38\x4b\xc5\x9f\x22\xab\xd6\xd0\x52\x9a\x76\xa1\xcc\xf6\x2e\xd9\xfc\xbd\x3b\xf5\x8a\xbc\x67\x75\xdc\x17\xf0\x85\x98\xa1\xe1\xcd\xaa\x33\x5a\x83\x1d\x2c\x58\xbe\xad\x1a\xcb\x97\xc5\x4f\xa2\x67\xc8\x75\x3e\xed\xe1\x92\x90\xed\xde\xa5\x8a\xca\xdd\xa6\x9d\x26\x35\x6f\xc6\x5a\xd8\x50\xfc\x88\xbb\x1e\x39\x99\x90\xd5\x56\x6f\x6b\x1f\x35\xd4\x8f\xbb\x6c\x1d\xb9\xe0\x45\x8a\xea\x7e\xc9\xad\xec\x3a\x21\xdc\x22\x44\x86\x23\x5a\xa0\x7a\x6a\x9b\x18\xf4\x27\xc8\x16\x7e\x5a\x8d\x61\x79\xb9\x5d\x8e\xf3\x61\x16\x27\x33\x24\xe8\x84\xe1\x82\x2d\xe1\x3e\xb9\xa6\x9e\x27\x69\xd4\x51\x5c\x76\x07\xd5\x12\xe4\x0d\xe6\xce\xb0\xeb\xd5\x19\x12\x0d\xe8\x67\x59\x61\x57\x6d\x9e\x4b\x75\xd4\x3f\xe7\x95\xf9\x95\x90\xa3\x7a\x8c\xca\xb5\x26\xe4\x60\x15\x6d\xf7\xc6\x9e\x16\xaa\x7d\x0a\xf7\x08\xb4\x51\x11\xc4\x28\x47\x26\x4e\xe7\xdc\xd7\xab\x11\x53\x78\x6e\xf7\xd0\xc7\x96\x13\xe0\x36\xd4\x43\x93\xd6\x84\xa6\x17\xea\x3a\x25\x6e\xd1\xf5\xbe\x82\xa4\xe8\xf9\x19\x12\x29\x59\x2d\xe2\x5e\x6c\xf2\xad\x3d\x78\xfb\xda\xb7\x71\x97\x8b\x16\xed\x0f\x23\x82\xe8\x80\x5a\xe7\xd7\xfe\x30\x46\x8e\xb9\xf8\x41\x0d\xaf\x89\x20\xbc\xba\x1a\x0b\x2c\x5c\xaa\xdb\x5c\x1b\xba\xd5\xc0\xcc\x49\x62\x7d\x76\x08\xa8\xa4\x70\x23\x27\xd4\x46\xe8\x8d\xd9\x38\x1d\x61\xb4\xaf\x08\x55\x57\x86\xa6\xce\x15\xbf\x72\xac\xe5\xd6\x4a\x83\x10\x5b\xdb\x15\x02\xaf\x4c\x2b\xd8\x1d\x79\xa9\x6d\x8d\x48\x8c\x8b\x6c\xf4\x84\x98\x0e\x8f\xa3\xd0\xf2\xb9\xe5\x23\x90\x7e\x92\x6d\x22\x48\x3a\xc4\x0a\xaa\x8b\xfe\x45\x84\x80\xd0\x91\x07\x0e\x04\xf9\xc8\x9f\x63\x2f\x15\xf6\x8a\xab\x29\xa1\x3e\xfe\xd0\x3d\x74\x60\xf2\x44\x3a\x46\xb5\xc6\x1d\xac\x08\x9d\x1b\xd5\xf6\xc6\xcb\xb9\x13\x91\x44\xcb\x0d\xe0\x44\xc4\x8c\xd5\xa9\xb1\x78\x4e\x56\xb0\xd8\xbd\xcb\xc9\xcc\x9c\x43\x74\xe3\x5a\xbe\x81\xf9\xa2\x6a\xd4\x01\xaa\xf8\x34\x10\xdd\x18\x27\xe8\xc6\xe0\x41\x9d\xda\xa9\x1a\x73\x70\xb9\xbd\xb0\xf0\x99\x60\xea\xf4\x2d\x77\x11\xc8\x22\xef\x4c\xa8\x98\x27\xaa\x49\xc8\xc3\x3f\x98\x04\x1c\xd9\x7d\x5c\x2a\x16\xe2\xbb\x35\x3a\x4f\xeb\x15\xf5\x37\x3d\xe6\x54\x62\x3d\xd1\xa6\x0a\xe5\xd5\x00\xc9\x3d\x01\xa5\x9f\x38\x84\xba\xb7\xbe\xf6\x95\xb3\x5d\x28\x82\x88\x85\x45\x44\x3e\xc0\xc7\x90\x39\x09\xa6\x84\x43\x98\x33\x48\x12\x30\xb5\x85\x26\xa2\x04\xa4\x9d\x33\x73\x65\xbe\xed\x44\x53\x08\x89\x0c\xf6\x86\x72\x67\x9e\x0b\x65\x97\xee\xd7\xc6\x71\x11\x57\xbb\xcb\x13\xee\x07\x90\xa0\xdf\x24\xe0\xeb\x03\xe6\xdd\xc0\xcb\x44\x90\x1e\x51\xa8\x20\x3e\xc2\xe8\xf3\x09\x64\xf5\x48\xe4\xab\x6a\x1a\x21\x18\x21\x2a\xb5\x1e\x62\xca\xc1\x38\xef\x25\x32\x81\xc5\x74\x26\x22\xf2\xd6\x25\x6a\xbb\x8d\xf2\x4c\xd4\xbc\x0b\x8a\x59\x66\x9d\x5b\x8c\x1c\x77\xa6\xd8\x74\x0b\xed\x32\xdf\x72\x7e\x58\x78\x37\xb7\x91\x99\x79\x7d\xaa\xe5\x00\x80\x38\xc0\x00\xca\x71\x12\xa7\xc5\x1c\xd5\xf3\xa5\x14\x8e\x15\xe8\x02\x79\x62\xc9\xf6\x23\x27\x6e\xd2\xaa\x6a\x1b\x93\x8d\x72\xd9\xc5\xfd\x6b\xf1\x00\xf1\x33\x53\x8b\xd4\xf3\xcf\xb7\xb3\x14\xe8\x41\x8c\xfd\x07\x2e\xf2\x94\x63\x5f\xa6\x1d\x98\x8d\xac\xdb\xa2\x19\x06\x6c\xbe\x1c\x53\x1c\x6b\x86\xa8\x72\x60\x1f\x45\x87\x40\x8e\xe9\x55\x14\x5f\x1b\x9b\xdc\xee\x0d\xf8\x5c\x38\x9b\x61\x46\x7c\x48\xfa\xb4\x3f\xc0\x60\x45\xd7\xff\x07\x51\x10\xab\x15\xc1\x72\x4c\xe4\x3f\x9e\x10\x54\xf5\x46\x93\x37\xdd\xaa\x29\xe3\xd5\x4c\xe2\x64\xec\xd8\xe2\xfc\x8e\xf5\xea\x3c\xed\x85\xa7\x5d\xf3\x0c\xb5\x8e\xbb\xe4\xa2\xae\x4d\xe9\xfd\xee\x55\x79\xfd\xb5\x15\x55\xb1\xfc\x21\x2e\x09\xbd\xbc\x8f\xa9\x5d\xb9\xb7\x43\xb5\xf3\x2b\x84\xc6\x7b\xc6\x95\x30\x1f\x01\x14\x8f\x6d\xe4\x12\x49\xc5\xdc\x70\x6f\x58\xf5\x94\x0e\xb0\x10\x66\x77\x60\x0a\xfb\x74\xf5\xa7\xf8\xe7\xdb\x11\x15\x57\x26\x13\x02\x94\x7d\x84\xa9\x25\x10\x36\xa7\x19\xe5\x61\x38\xd5\x3c\x91\xbf\x9a\xd4\xbb\xf8\x2b\xf3\xd2\x45\xff\xa9\x7b\xe6\x18\x0e\x32\x5d\xe4\x47\xa8\xa1\xf1\x88\xb8\x7f\xbb\xb7\xab\xf1\x23\x36\x2a\x64\x1f\xd4\xcb\x36\xd3\x4f\xb9\x39\xab\xd1\x87\x43\xee\x88\x8a\x34\xa6\x0a\x12\x98\x4f\xb9\x06\x00\x7e\x52\xc8\xb9\x3e\x80\xad\x6e\x12\xef\xfc\x16\x56\x57\x0c\x9f\xb9\x4e\x75\xc5\x98\xf2\x30\x91\x73\x1d\xcb\xbd\x07\x1c\x14\x50\x6d\x43\xa8\xca\x7e\x82\xb5\x7a\x5a\x20\xf0\xa8\x2c\x57\xa8\x1e\xcc\x76\x48\x46\xe1\xce\x24\xa8\x9b\xf6\xec\x30\xeb\xe6\xa6\xcb\xf2\x47\x27\x78\x47\x3d\x41\xb0\x8a\xee\xd8\x89\x1f\xec\x0f\xf0\x15\xf4\x47\x45\x03\x25\xaa\x81\x61\xc2\xf2\xf1\x1e\xde\x0f\xf2\xfd\xeb\x78\xa5\x72\x42\xac\xa0\x63\x13\x8a\xcd\xa4\x11\xa8\xea\x0b\x34\x29\xde\xa1\x22\x75\x95\xf4\xec\x75\xdf\xad\xfb\xb3\xbb\x02\xa4\xff\x0f\x41\x79\x42\xda\xb1\x8b\x3c\xf1\x7e\x24\xc0\x44\x3c\x99\xab\x13\x22\xf6\x60\x2d\x50\x92\x7b\x63\x93\x78\x60\xf2\xbe\x6a\x53\x22\xd5\x79\x07\xdf\x20\x27\xd1\x81\xfa\x26\xfb\x85\xf6\x17\x5b\x5c\xac\xab\xc6\x94\x56\xf4\x9e\x88\x9d\x15\xc1\x5f\x6d\xbf\xf8\x79\xb7\xad\x29\xb7\xa9\xe5\x25\x79\xf7\x6e\x93\x83\xeb\x71\xf7\x42\xb5\xc8\x56\x7d\x11\x66\x9a\xfa\x7d\x61\xd2\x7f\x1e\x73\x14\x37\x31\xeb\x78\xe3\xf2\xda\x1d\xc2\x4c\x55\xe0\xb0\xb9\x1e\xd8\x0e\x2d\xff\xff\xdf\x0b\x1d\x17\xb9\x78\x69\xd2\x83\x21\xc0\x74\x83\x1a\x33\xef\xda\xc4\x5b\x18\xfe\x9f\xd2\x79\xf4\xe6\xac\xaf\xf8\x36\xdf\x39\xb7\xe9\x7b\x25\xf6\xaf\x6a\x55\x47\xa0\xce\xbe\xe4\xfc\x9b\xbf\xee\x89\x9d\xe4\x99\x71\x8e\x04\xc9\xf7\x6d\x93\x54\x97\x2d\x40\xd4\x5c\x39\x24\x13\x13\x62\x65\x78\x58\x4f\x52\x7e\x83\x55\x0b\x61\xf0\x5d\xb7\x12\x61\x7f\xb9\x8b\x97\xa5\xa3\xac\x7a\xa0\x80\x42\xff\xd9\x54\xde\xb0\xbc\x7c\xb8\x5a\x29\x93\xb1\xef\x29\x68\x57\x8e\x60\x08\xdf\xa3\x36\xf7\x30\x4b\xcb\x81\xa3\xf9\x7b\x59\x8e\xa0\x02\x2a\xf2\xd5\x5e\xe3\xe3\xa0\x82\x11\xc4\x38\x0f\x4f\xe4\x5d\xae\x0d\xed\x06\xa4\x4f\x3a\x51\x64\xb8\xff\xa8\xd6\x80\x71\x43\x47\x08\x7c\xae\x85\x81\x7d\xe8\x5d\x2c\xa4\xbe\x8f\xb5\x78\xc4\xbb\x22\x56\x8f\x4f\x6b\x64\x53\xe1\xd0\xa1\xf6\x5a\x9e\xa9\xee\x8a\x22\x80\xaa\xdf\x56\x68\xd0\xb3\x1e\x0d\xd4\x4d\x1c\x1d\x8b\x21\x36\xbb\x28\xe0\xbc\xce\x8a\x6b\xd3\x82\x14\x0b\x0b\x0e\x87\x5d\xa0\x48\x8d\x09\x78\x93\x14\x24\x6f\x36\x06\xff\x1b\x16\xb2\xd9\x98\xf1\xa0\xde\xc8\x31\x29\x97\xac\xe5\xc6\x39\xff\x56\x77\xed\x81\x24\x07\x3d\xa8\x84\x20\xa8\xdd\x2c\xc9\x72\x72\x7a\x05\x08\x57\xbf\x91\x54\x78\xbb\xdd\x2c\x87\x06\xb4\x78\x56\x45\x01\x90\x7d\x19\x54\x02\x6f\x66\x15\xa2\xe5\x77\xdc\x8a\x02\x02\xe3\xa9\xa9\x15\xe5\xd0\x4b\x87\xdb\xc5\x38\x1f\xe5\x71\x61\x49\x5f\x1b\xd6\xd2\x8a\x64\x0e\x89\x69\xfa\xc2\xc6\x0b\x73\x54\xfa\xf8\x10\x03\x0c\x63\x0a\xca\x2c\x40\x81\xef\x23\x6e\xe3\x25\x7e\x0b\x7f\x3a\xf5\x16\x5e\x9e\x3f\xd4\x5e\xb3\x9b\xaa\x85\x2d\x56\x4d\xe4\x47\x77\x8a\x8a\xf6\x85\x59\x1f\xe7\x90\xc1\x47\x54\x01\x3d\x38\x39\x26\xa0\x5e\x9e\x6d\x99\x64\x86\xe4\xa2\xce\x4b\x22\x04\x0c\xc1\xc7\x13\xe2\x62\xdf\x25\x2d\x96\x5e\x5c\x74\xe3\x51\x12\xa7\x46\x10\x93\x1e\x40\xe3\x5f\xf3\xff\x8e\xfb\x51\xed\x43\x52\x7b\xb4\xf9\x86\x49\xcb\x62\x26\x40\xed\x64\x43\xd0\x8a\x65\xcb\x0b\xf2\xdf\x9b\x92\x1b\x58\x58\xa8\xfe\xbb\xae\x53\x5d\x28\x17\x13\x72\x49\x7e\xc8\x4a\x86\xc3\x55\xfb\xe6\x9b\x89\xe7\x69\x49\x71\x8c\x8d\x86\xa6\x25\xed\x96\x97\xdb\x49\xdc\xb5\xa9\xbc\x6b\xcc\xc6\xaf\xbb\x01\x22\xc7\x24\x3b\x6e\x8a\x62\x9c\x9b\xb4\x8b\x9a\x9e\x27\x9a\x79\xa9\x39\xe0\x9f\x94\x74\xe6\x06\x85\xfc\x83\xd7\x1f\x5c\x35\xdd\xf5\xa7\x49\xe2\x76\x0f\x2a\x3b\xf8\xcc\xbf\x47\x08\x24\xd6\x23\xf8\x02\x34\xf1\xe6\x1c\xd9\xd7\xbd\xfb\x1f\xff\x72\x15\x8e\x3c\xec\x7c\xb1\x43\xac\x82\xd6\x36\x7b\x95\x87\x2c\x18\xf6\x30\xa8\x15\xdd\xc6\x66\x2e\x45\x20\xb7\xcc\x62\xfb\x06\xb6\xcb\xad\x62\x0f\xfe\x82\x77\x8b\x2f\x92\xac\x2e\x84\x8c\x6c\x49\xa9\x8a\x54\x45\x73\x99\x9a\xbb\x0d\x91\xd8\x21\xa4\x74\xa3\x4e\xab\x49\xcb\xb8\x3b\x4e\xd0\x56\xc1\x52\x7c\x85\x90\xf1\x57\xc8\xf0\x7c\xb8\x1a\xa7\xaa\xd3\x83\x02\xe7\x7e\x74\xe6\x81\x21\x07\xa0\x1d\xd9\x26\x96\x39\xec\x22\x8f\x99\x68\x78\xc6\x83\x25\xcd\x68\x94\xdb\x6e\x0c\x73\x67\xef\x81\x0d\x82\xa1\x1c\x53\xb6\x91\xe5\x6b\x33\xb4\x0f\x80\x8c\xe3\x0d\xd0\xbd\xc0\xd4\xef\xd0\x1a\xf7\xcb\x8b\x07\x5f\x3c\x78\xe4\xf0\xff\x87\x5a\x9f\xc2\x32\x07\xaa\xb1\xb5\x1d\xe2\xf3\xe3\x6e\x3b\xf6\x40\xa0\x6a\x94\x7a\x21\xe0\xaf\x06\xe8\x90\x4b\x6a\x65\x6d\xc1\xf6\x01\x00\xcf\x2e\xae\xc4\xab\xa8\xab\xee\x3f\xd5\x68\xc1\x00\xbb\x31\xd9\xfd\x05\xa9\x54\x3f\x05\x79\x38\x74\xe6\xee\x63\x79\xd4\x3e\xbe\x9b\x31\x98\x93\x3f\xc3\xae\x88\x3d\xfb\x8a\x8b\xd0\x3d\x16\xd6\x8b\x21\x1c\x43\x60\x89\x8b\xbc\x87\x3a\x01\x50\x41\x88\xef\x11\x65\xee\xea\xb8\x98\x1c\x61\xc6\x0d\x59\x6e\x10\x5a\xee\x71\xdb\xa2\xea\xce\xb8\xd5\xb9\x26\x33\x81\x45\x66\x5f\x15\xef\x3f\xda\x8e\xc2\x3e\x71\x8a\xfa\x38\xb6\xe8\x66\x79\x89\x9c\x9b\xc8\x07\xc1\xf6\xb4\x09\xa0\x06\x21\xdf\x78\xc3\xce\x92\xa3\xf3\x35\x22\x83\xb7\xdc\x98\x12\x63\xf0\x09\x99\xbc\x9c\x9c\x82\x82\x2f\x2c\xb4\x7b\x76\xcd\xb8\xa1\x4c\x3b\x14\xef\x5c\x07\xc8\x1a\x27\xb7\x89\x2d\x90\x3d\xa3\xa2\x73\x8e\x05\xf3\xce\x79\x38\x86\x40\xa5\xe7\x88\x87\x79\x7b\x12\x90\xc0\x62\xfc\x45\x5a\xe3\xcb\x81\x87\xe3\x93\x9b\x6b\x34\x45\xd7\x32\x6d\x74\xa8\xb0\x6d\xcb\x1b\xb0\x9c\xf7\x80\xff\x32\x37\x69\xb1\x96\xe5\x8a\x93\x15\x0b\x39\x64\x4f\xca\x1a\xe4\xee\xff\xd4\xde\x79\xe4\xa5\x76\xdf\xe4\x3d\xbb\x53\x20\xf2\x31\x09\x44\x3e\x9e\xea\x97\x54\x6f\x25\xcb\xbb\x03\x5b\x94\xb9\x11\xf0\x26\xe0\x47\xb7\x90\x2f\x20\xc2\xfa\x23\x37\x4d\xb1\x64\x1d\x75\x59\x34\x30\x6e\x67\xa7\xe2\xa5\xe5\x65\x27\xe5\x6e\x19\x32\x45\x32\xfc\xdc\xef\x28\x4d\xde\xb7\xca\xfc\x53\x1d\x2c\x77\xe5\xaa\x90\xc5\xf6\x98\x01\xb8\x72\xb9\x09\x0b\x95\xdb\xb5\x71\xea\x5d\xda\x54\x73\x9b\x72\x99\x3f\xa4\xaa\xa6\x19\x66\xdd\x0c\x3d\xfa\x9a\xa3\x1f\xa6\x27\x74\x2e\x74\x76\x36\x34\xca\x7a\x71\xb1\x2e\xcb\xb3\xba\xfa\x54\x9f\x90\x63\x4f\xb5\xea\x66\xe3\xb4\xb4\xf9\x30\xdb\x10\xb0\x36\x3a\x27\xb0\xa0\x95\xe3\xc6\x69\x92\x9a\x37\xe3\x2c\x55\x7e\x34\x9e\xfa\x05\xae\x84\x5c\x98\xda\xae\x0f\x2e\xb7\x47\x59\x96\xdb\x1c\xd6\xcb\xc8\x46\xef\xd6\xa4\xf8\xaa\xb7\x86\x95\x7b\xda\xca\xfb\xc8\x4b\xc1\x42\xcf\x95\x9f\x5f\x56\x17\xc4\xd3\x93\xe0\x88\x78\x9a\xf0\x71\xd9\x68\x94\xe5\xe5\x38\x05\x78\x8b\xcc\x47\xff\xf9\x84\xf6\x88\xb7\x89\xf5\x05\x8d\x01\x3c\xa4\xe3\x4d\x1e\xf5\xfd\x2c\xe9\x59\xb4\x12\xf1\x69\x31\x15\x94\x93\xa0\x39\xe8\x1a\x02\x5b\xb3\x81\x76\x39\x83\xf5\xb8\xd6\x41\x57\x5b\xda\x10\x22\x9c\x6e\xea\x42\x14\x65\x96\x0f\x67\x09\x6f\x85\xb2\x1c\xb6\xf6\xc7\x35\x19\x2b\x77\x93\x98\x1c\xdf\xf6\x5d\x56\x33\xac\x2e\xf9\x37\x7f\x5d\xb9\x92\x51\x8d\x38\x19\x52\xb5\x91\x35\xe9\xb8\x2c\x88\x49\x83\x36\xa0\xfa\x9c\x3f\x15\xba\x11\x6f\x96\x7b\xa8\xeb\xf7\x9e\x1b\x5b\x0a\x0c\xab\x3e\x82\x9a\xc9\xc9\x88\x38\x4d\x28\x55\xcb\x3f\x4c\x88\x19\xf0\x2d\xdf\x16\x5b\xcd\xe3\x62\xdd\xc5\x82\x62\x35\x39\x09\xdb\xf7\xd3\x9d\x50\xe6\xd9\xb5\xed\xb9\xae\x29\xd0\x1d\xee\xe1\xa8\x14\x47\xa8\x75\x1c\xa3\xe8\xac\xc8\x86\x76\x73\x60\x73\x3b\x43\x53\x96\x1f\xd8\xc9\x09\xef\x59\xf4\xc9\x7e\x62\x86\x59\x9e\x8d\x8b\x96\xdb\x85\xc5\xa4\x0a\x5d\x06\x75\xac\xd2\xfe\x7b\x77\x23\xad\x75\x8c\xdd\xa3\xd6\x96\xb1\xde\xa7\xeb\x62\xcf\xd0\xb3\x39\xcf\xd5\xbb\x07\xb5\x96\x76\x83\x26\xa0\xcc\xa2\xd0\xd8\x97\x0c\x1d\x6f\x14\x4d\x2d\x35\x51\xdb\x99\x8f\xbd\xf6\x5a\xb5\x04\x63\xb1\x57\x49\x75\xd2\x6d\xfa\x78\x8a\x99\x74\x70\xb9\x9d\x9a\x61\x2b\x20\xf1\x77\x28\xf1\x35\xc4\x6f\x5f\x1b\xc7\xdd\x75\x5b\x94\x2d\x17\x9b\x78\xa2\xa4\xb7\x1e\x39\xe7\x5f\xf8\xd0\xbc\x9e\xe5\x73\x35\x72\x20\x09\x0e\xb2\x2f\x94\x16\x4c\x94\xb7\x5c\x5d\x3f\x1e\xd1\xa7\x3b\x4d\x1b\x46\x37\x83\xd6\x5f\x2e\x80\x39\x0c\x28\xb1\xb1\x44\x81\xe9\x7c\xc4\xae\xcf\xff\x91\xd4\x86\xed\x70\x94\x64\x5b\x43\x27\x19\xb1\x32\x2f\x57\x7d\x85\xa4\x1a\xaf\x4c\xc2\x42\xdd\x1f\xaf\xda\x7c\x96\xf5\x86\x5d\x40\xa7\x42\xc4\x6e\x64\x22\x42\xfc\x3a\x5a\x1c\x72\x32\xd5\xd3\x5e\x58\x6c\x9b\x71\xb5\xc7\x25\x5e\xff\x00\x55\x9a\x77\xc9\xa4\xe0\xdd\xa9\x8d\x65\x69\xa9\x6d\xd2\x34\x1b\xa7\x5d\x4d\x84\x7c\xf0\x10\x8c\x5e\xcf\x4d\xad\xc6\x2b\xf3\x2b\xed\x0d\x93\x48\xf7\xdc\x9b\x72\xae\xcc\xeb\x31\xe1\x88\x72\xdb\xb5\xa3\x32\xde\x88\xcb\x2d\xd6\x71\x41\xc4\xaf\x04\xcd\xcf\x4c\x49\x94\xaf\xcc\x7f\xae\x9a\xf2\xa8\xf4\xb4\x5c\xd5\x07\xb7\xfe\x7d\xce\x5d\x6e\xb9\x54\x43\xd1\x09\xad\x2f\xff\x96\x56\xc2\x23\x06\x66\x43\x3d\x5f\x82\x1d\xf7\xbb\x88\x79\x4f\xb9\xa2\x9a\xb4\xa0\x5c\x5c\x4b\x80\xa5\x65\xaf\x7a\xea\xde\x82\xe6\xbf\x64\xa8\xff\x4f\x10\x9a\xa2\x78\xf3\x0f\x5c\xc4\x8d\x14\xfa\x43\x44\xdc\x3a\x36\x42\x5d\xfc\x78\x44\xee\x44\x17\x19\xb6\xf3\x33\xbc\x78\x6f\x96\x1f\xba\xad\x8f\xf1\x2a\x10\xd7\x3f\x68\x9a\xd2\x6b\x76\x68\x84\xed\x2c\x1a\x3c\xc8\xf5\x7c\x09\xd2\x87\x8c\x3f\x64\x6f\x8c\x32\x37\x98\xca\xa8\x25\x9d\x77\x6b\xaf\x1c\x47\xcc\x68\x73\x42\x19\x2e\xb4\x04\x87\x76\xf1\xd1\x15\xaa\xe9\x97\xb9\x71\x40\xf6\xd9\xe9\xd5\x50\x4e\x22\x4e\xf4\x9c\x1f\x83\x26\x7d\xe1\x6a\xd6\xb2\x64\xbd\x70\xab\x12\x56\xec\xb3\xee\xef\x90\x63\x5d\x8d\x82\x3c\xc3\x0f\xa8\x00\xb0\x66\x7b\x36\x8f\xbb\x59\x5d\xf8\x97\x78\xaa\xe4\xc9\x61\x8a\x01\x0a\x0c\x5e\x25\xaa\xfa\x3b\x1d\x7e\x2d\x2f\xc0\x71\x8f\xd4\x9a\x72\x3b\xb2\x79\x99\xe5\x82\x29\x97\xb6\x02\x5e\x87\xf6\x18\x34\x9b\xec\xc5\x45\xe2\x6a\x20\x3b\x61\xd3\x88\x23\x4f\xb1\x09\xe0\xc5\x29\x4a\xd0\xe2\x11\x07\xb5\x2d\x06\xa6\x97\x6d\x2a\xd1\x10\x50\xb8\x5b\x88\xf1\xe4\x84\xe0\xee\x9b\x71\x9a\xda\x9c\x71\x60\xdf\x20\x87\xa6\x6f\x44\xbf\xfc\x49\xaa\x44\x36\x2d\x6d\xda\xf5\x51\x34\x26\xd2\x95\x88\x66\xd5\x95\xc9\x2f\x10\x3f\xae\xb4\x79\x37\x4b\x12\xdb\x8f\x4d\x69\xb1\x2c\x4b\x98\x05\x29\x33\x8d\xb9\x1a\x54\xef\xd2\xac\x8c\xfd\xca\x22\xb5\x65\x8a\xd9\xce\x07\x81\x86\x74\xe4\x82\x87\xe5\x65\x1f\x96\x51\x1e\x72\xda\x3f\xe6\xc4\x76\xcb\x71\xae\xc5\x2b\x3c\xdb\x9b\x93\xf0\x9c\x6f\xd2\xce\x9b\xdb\x6c\xe4\xb3\x05\x6d\xd7\xc1\x58\x4a\x8e\x69\x95\x8a\xd3\x9e\x1d\xd9\xb4\x67\xd3\x72\x6f\x20\xd4\x7c\x40\x90\x8d\x53\x75\x08\x46\x3d\x68\x58\x51\xd8\xc5\x2d\xc6\x10\x89\xab\x0c\xa2\xb3\x3f\x25\xdc\xf8\x86\xc9\x63\x5b\x0a\xc0\x05\xbd\xa3\x7f\x48\x42\x4f\x68\x30\x23\x7b\xbc\x31\x85\xa1\x73\xca\x58\x76\xb8\x6a\xf2\xdc\x14\x85\x7f\x8f\xea\x02\xdd\x22\x77\xe8\xa7\x08\x7b\xf5\xc2\x6c\xe0\x3c\xed\x43\xdf\xc8\x4f\x49\x8f\x4c\xfa\xd0\xf5\x2b\x30\x0a\xee\x85\x52\x49\x5c\xc6\xdd\xec\xff\x22\xed\x4d\x63\x24\x39\xd3\x33\xb1\xee\xac\xaa\x66\x93\x1c\x72\x78\x0c\x47\xd2\xe8\x40\xae\x77\x0c\xca\xc0\x88\x86\x65\xc0\x0b\xe8\x4f\xa4\xba\x5a\x43\x75\x41\x53\x2c\x54\xb7\x48\x99\xbb\x3f\xf8\x65\xe4\x97\x99\xc1\x8a\x8c\x48\x45\x44\x56\x75\xd1\xfe\x65\x18\xf0\xc2\x3f\x84\x85\xbd\x0b\x7b\xb5\x96\xe0\xb5\x16\x5a\xcb\x5a\x59\x33\x3a\x57\x96\x46\x59\x33\xa3\xb9\x35\x33\x1c\x1e\x43\x0e\xcf\xbe\xef\xee\xea\xbb\xab\x9b\xdd\xd5\x46\xbc\xcf\xfb\x7e\xdf\x1b\x15\xc1\xb5\x81\xfd\x17\xd1\x5d\x99\x19\xc7\x77\xbc\xc7\x73\x64\xe3\x39\x2f\x03\xcb\x11\xa9\x13\x4b\x77\x90\xc9\x0f\xa6\x3e\xbe\x5d\x9a\xaa\x74\x5b\x97\x75\x80\x47\xa4\xff\x44\xef\xea\x2e\x19\x61\xf1\x71\xa3\xdf\x97\x3d\x5c\x6e\x23\x33\x9e\x66\x7f\x51\xa9\xdc\x43\xae\x0c\x43\xe0\x8a\x83\x9a\x14\xc3\x32\x39\x99\xd1\xee\x26\xbe\x71\xff\xef\x34\xe5\xf5\x52\xad\x19\xb0\xb0\xd0\x96\x74\xa1\x07\x82\x08\xee\xfb\xef\xa7\x1a\x0b\xac\xbc\x6b\x8e\xaa\xc4\xcf\x84\x21\x59\x75\xd2\x62\x80\x21\xbc\xa7\xe3\x8b\x00\x1c\x9b\xa0\xbd\x72\xb7\x46\xde\xf8\xcf\xda\x63\x93\x15\x65\xf4\x31\x8c\x24\xd2\x13\x68\xa0\x1a\x30\xf0\x24\x44\x65\xe9\xfd\xa9\x57\xce\xcf\x26\xc5\x90\x61\x64\xaa\xe1\xbc\xe4\xda\xd2\xde\xba\x34\xb1\x83\xb4\x88\x4c\x91\x66\x74\xa1\xc8\x14\xef\x29\x73\xeb\xff\x05\x9f\x44\x7d\xf3\x6e\x13\x23\x9f\xfc\x31\x6c\x8e\x8a\x97\x13\x4d\x59\x58\x90\x63\x35\xe6\x8b\xb4\x30\x31\x3b\xc1\x60\x63\x80\x5b\x2d\x1f\x37\x88\xb4\xe7\x71\xba\x16\xc3\xff\xde\xd9\x7c\x3d\xbf\x8f\x6f\xff\x04\x4d\x3a\x7c\xf8\xaa\xaa\xdb\x98\xf1\xd8\x9a\xec\xe1\xf2\x3f\x31\x09\xe1\xd5\x82\xb7\xb7\xab\x53\x53\x28\x47\x7d\xf8\x47\x81\xe2\x82\x5d\x02\x42\xc3\x11\x96\xcb\xbd\x5c\x78\x28\x0a\x38\x07\xd2\x04\xda\x42\xa7\x50\x4a\x13\x5a\xb3\xf6\xe6\xac\x0b\x0a\xbf\xd8\xe6\x54\x1e\x8d\x14\x0d\x3a\x73\x28\x60\x25\x18\xa0\x4c\x11\x9e\x31\xcf\xe0\x33\x88\x46\xae\xa8\xd2\xc7\xb7\xb1\xf0\x60\x5f\xba\x50\xab\x26\x2d\xef\x6b\xaf\x99\x78\xc5\xad\x16\xa8\x97\x7f\x40\x5f\xc0\xc7\x4d\x39\xf7\xcb\x76\xad\x9b\xe2\xed\x3a\x3c\x9c\x67\x73\xdc\x71\x59\xe2\x9a\x38\x50\xa0\x7e\x08\x94\x3c\x1f\x2b\x7e\xe3\x2b\x29\x32\x0f\xd4\xf9\x90\xbe\x63\xd8\x9d\xd5\xb6\x76\xe7\x1a\x8d\x4c\x87\x91\x18\xd5\x09\xd5\x46\xfb\x22\x6c\x2a\x19\xc7\xcc\xa6\xd9\xc0\x24\xd1\x2b\xcc\x08\x46\xaf\xff\x88\x42\xe4\x1c\x51\xb3\xf5\x65\x13\xa6\xdd\x3c\x4d\x18\x03\x8b\xd1\x7e\x47\xe9\x76\x7c\x49\x6f\xde\xb7\x1b\x70\xf9\x94\x31\xf4\xd3\x6c\x34\xe3\x17\x48\x12\xda\x14\xe0\xec\x75\x7a\xce\x22\x39\xd7\xf4\x05\x26\xa4\x6a\x4a\x4b\x89\x54\xc3\x70\x91\x8f\x9b\x8c\xfe\x04\x4d\x41\xaf\x07\xc1\xe2\xc9\xc0\xd3\xd6\xeb\xec\xfa\x85\x85\x76\x2f\x4b\xc7\x63\x37\x0a\x5c\x4d\xdd\x49\x70\x55\x05\xd8\x47\xa6\x47\xb9\xbf\x6b\x3b\x94\x93\x44\x7a\x13\x92\x87\x99\xac\x7c\x78\x15\x27\x6e\x45\x18\x86\xcf\x1f\xb2\xad\xdb\x4d\xe6\xd0\xd9\x64\x94\x66\x62\x7f\x8c\x99\x79\x1c\x5f\xc0\x27\x0a\x31\x4f\x68\xbd\x70\x52\x40\xf3\x59\x52\xca\xf2\x96\x25\xa3\xdc\xf9\x03\x2f\x2c\xef\x6b\x87\xc3\xf2\x41\xb5\x54\x0f\xb5\x52\x6c\xd3\x00\x65\x13\xc7\x69\x62\x91\xaa\x63\x31\x60\x45\x78\x3e\x51\x05\xa2\x9e\x1d\xa5\x49\x19\x44\x17\x69\x86\xc8\x85\x33\x43\xe5\x92\x7d\x3e\xd8\x91\xd8\x3c\xfd\x74\xfb\xf3\x2f\xa0\xa8\xec\x8c\xcf\xcb\x07\xc7\x27\xea\x56\xe3\x34\x19\x0c\xcd\x24\xc6\x8b\x12\xda\x53\xf9\x33\x7c\x1c\x3c\x51\xfd\xea\x9f\x6f\x3f\xbf\x6f\xc6\xaf\xdd\x70\x7d\x77\xb2\xcb\x8b\xde\xae\x58\xcd\xc7\x5f\x99\xdf\x8f\x5d\x58\xf0\xf0\x74\x65\x52\x3d\xd0\xa1\x14\x49\x6a\x66\xac\x8a\xca\xe5\xa6\xc0\xc1\x55\xfe\x87\x53\xca\x04\x3d\x1f\x12\xd0\xe8\x45\x8e\xd8\x1f\x42\x67\x40\xa0\x6a\x4a\xa8\x02\xb3\x42\x94\xc9\xe8\xfd\x23\x3c\x79\x0c\x73\x07\x8b\xc1\x9d\xaa\x0a\x20\x5d\xae\x93\x49\xfc\xc2\x7e\xce\x6c\x20\x71\x85\x82\xca\xb4\x36\xf0\x29\x64\x5a\x35\xe1\x64\x32\x42\xc0\x2c\x38\xe8\xf2\x02\xf8\xb8\xe2\x83\x9a\x26\x9f\xf1\x96\x90\x37\x91\x7a\x0b\x78\x8d\x2e\x14\xbf\xba\x8d\xdb\xc1\x02\xca\x2a\xff\x52\xa8\xa7\x21\x8a\x99\x38\x0b\x7f\x4b\x2e\x23\xd0\x14\x45\x2b\x74\xd7\x06\x16\x34\x6c\x01\x97\xb5\x78\xd9\x0d\xda\x44\x9c\x13\x48\xb9\x6d\x21\x17\xfe\xdf\xe8\xae\x05\x5d\x8f\x35\x4b\x39\x41\x3e\xcb\x79\xee\xbf\x9a\x7a\x00\xdb\xfb\xca\xae\x9e\xd1\xa6\x15\x3d\x72\x31\x1d\x2f\xb7\x66\xc1\xb1\x96\xd3\x1e\x23\xe9\xad\x69\xeb\x05\x51\x10\xb9\xad\x1c\x5c\xee\x69\x61\xe0\x97\x28\xfd\x65\x55\x81\x40\xe1\xb3\xfe\xa2\x49\x12\x6f\xcd\x64\x99\x4d\x2a\x74\xc4\x19\x50\x17\xb1\xa1\x8b\xcc\x30\x32\xd8\xd3\x8e\xfc\x52\x4c\xb2\x64\xc5\xae\x2b\x6b\x82\xab\x34\xcc\xf9\x78\xea\x73\xb7\x71\x6c\x26\x79\xd4\x65\xf1\x49\xac\x0e\x6f\xe9\xe2\xd3\x5b\x4d\x42\x1e\xd6\x64\x09\xe3\x9e\x19\x9b\x13\x28\xdb\xfc\xb3\xb5\x5b\xf9\xc2\xfe\xf6\x20\xb3\xa6\xe0\x8a\x32\x60\x5c\x10\x14\xe0\x63\xc7\xad\xc9\x9e\x89\x5a\xda\x57\x99\x47\x32\x9f\x38\x0d\x4b\x57\x68\xdc\xeb\xc3\xd6\x9f\xea\xf8\x69\x7d\x0b\x23\x0e\x6f\xe3\xf8\xb4\x62\x7e\xe7\xcb\x5a\x17\xf5\x6e\x7a\x49\xd3\x0a\xbf\x19\x78\xdb\xd3\xdb\xb5\x62\xc2\x0b\x4b\x9f\x6d\x77\x27\xf9\x90\x33\x5e\x37\x4b\x9c\xac\x76\x1d\x4e\xfb\xb9\x76\xdf\x26\x89\x8d\x5b\xaa\xbd\x0c\x58\x15\x1f\xab\x2e\x7a\x3e\xe9\x42\x6c\x05\x6f\x05\x2f\xfe\x03\x4a\x39\xf8\xb8\xf6\xf5\x70\xb0\xef\x72\x37\x02\x15\x5c\x68\x6a\xf1\x71\x2d\x6e\x7c\x7e\xdf\x62\x3b\xb6\xfd\x02\xb7\xc0\x82\x21\x81\x16\x0f\x71\x76\xfa\xb4\x67\xb3\xb8\xba\xd3\x32\xf2\xba\x46\x0a\x41\x99\x59\x13\xd2\x3a\x4f\x0f\x9c\xed\x14\xb0\x5a\x8a\xb7\xc2\x63\xae\x0b\xdf\xb5\x71\x94\x17\xa2\x0d\x20\x60\x6c\xba\x01\x16\xf7\xc6\x58\x17\x74\x9e\x07\xb8\x75\xd3\x74\x34\xe3\x9b\x71\x0f\x77\x3c\xa9\x86\xbb\x85\xa8\x6e\x6a\x70\xe7\x38\x4b\x07\x99\xcd\x73\x4a\xce\xb0\x89\x33\xab\x86\x31\xdb\x81\x8f\xcd\xb7\x2b\xb6\xca\x0a\x44\x30\x57\x33\xf0\xde\x7f\xa8\x9d\xd9\x7c\x9c\x52\x4a\x2c\xbc\x94\x8a\x7b\x86\x28\x39\x35\xe9\x82\x4a\x6a\x51\x75\x21\xbe\xad\x92\xd3\xdb\x2e\x7e\xc8\xc7\xe9\x84\x1b\xad\xe8\xec\x9e\xc5\xb0\xe6\x13\xd5\x34\xff\x35\xcb\xa5\x4d\xc7\x70\xf5\x6c\xd7\x86\x71\xf0\xff\x81\xf3\x96\xdf\x5f\x8d\x06\x11\x8c\x6a\x85\x02\xa0\xe8\x00\xae\x81\xb9\x96\xa5\xc9\xa0\x97\x8a\x38\x32\xb2\x29\x40\x04\x9c\xbb\xc5\xf3\xfb\x38\x07\xfd\x1e\x5e\x80\xf4\x7f\xfd\x9d\x9a\x6c\x05\x09\x9d\x44\x5b\xe5\x67\x50\xb1\x01\xc8\x4b\xb6\xb9\x4f\x55\x7b\x6c\x6b\xd6\xdd\x8a\xf3\x4d\x73\x8e\x54\x1f\x06\x1a\x14\xb3\x6a\x33\x2e\xb5\x8a\x93\xd2\x91\xa9\x32\xf0\xf5\x6d\xa6\xe1\x64\x30\xf8\x0f\x9a\xed\x35\x3c\xd1\xee\x24\x13\x75\x44\x96\x30\x9b\x2a\xb7\x81\x37\x6a\x51\xea\xc2\x42\x7b\x94\x8e\x6c\x52\x4c\xd0\x05\x70\xd8\xb6\xcf\xbf\xe0\xd2\x78\x5f\x16\x48\xcc\x6a\xc5\xea\xe0\xaf\xb5\x5d\xd1\x5f\x6b\x60\x2a\xc9\x76\xe7\x2d\x65\xa3\x75\x52\x1b\x64\x9d\xac\x25\x10\x07\x16\xdb\x85\x19\xdb\x19\xbf\xee\x80\xb1\x26\x1a\xf0\x5e\xcd\xeb\x58\x43\x7c\x7e\xb0\x6d\x7a\x69\x96\xc8\x68\x46\xfe\xc7\xfd\x06\x3e\xd1\x64\xfb\x2c\x4a\x56\x58\x2f\x98\xbd\x74\x03\xb5\xd8\xdf\x52\x4a\xcd\x45\x66\x93\xde\x43\xf4\x3d\x4c\x2d\x99\x2a\x19\x96\x2b\x81\x17\x8d\x38\x8f\x07\xed\x3a\xc7\xfb\x0f\xc9\x7f\x04\x9e\x9f\x71\x8d\xee\x03\x13\x93\xd1\x84\xce\x06\xd7\x89\xcc\x1e\xa1\x69\x23\x18\xce\xc7\x95\x3b\xde\xc8\x90\x9e\x42\xf9\xdf\xa2\xad\xac\xfc\x0a\x2f\x28\x3e\x17\x5b\x2a\x12\xde\xce\x25\xf3\x07\x16\x5d\x32\xdf\x10\xe7\xa7\x93\x22\x8f\x7a\xb6\x2a\x0b\xe4\xba\x07\xec\xc7\xeb\x0a\xb2\x07\x04\xd5\xff\x10\x6d\x7e\x98\x49\x33\x1b\x0d\x1c\xcd\x5e\x94\xa4\xb9\x99\x08\x25\x16\xf7\x85\xd8\x94\x8f\xdd\xd2\x5c\x98\x2c\x89\xf2\x21\xdb\x54\x09\x6b\x54\x69\x8b\xe8\x5b\x0c\xd3\x55\x5b\xf0\x9f\x02\x7b\xca\xd6\xe0\x7c\x12\x28\xc5\xf3\xb4\x6b\x7b\x11\x59\x43\xd1\xdb\x73\x30\x58\x5f\xf2\x71\x45\xa9\xae\xed\x9b\x38\xd6\x90\xa6\xa3\x08\xc2\x44\x02\xd9\x49\xae\x90\xb0\x55\x1c\xf3\x40\x52\x2f\xc4\x9d\x34\xe1\x9f\xc6\x99\x25\x0a\x32\x95\xeb\x29\xe5\xdd\x3e\xa2\x60\x8d\xd0\xc8\x6e\xf9\x25\xec\xa2\xae\x0e\x5d\x0c\x3c\x93\x24\xb6\x83\x28\x8f\x89\x5a\xf9\x00\x56\x7f\xf4\x06\x76\x69\xad\x08\x04\xc3\x88\xed\x6f\xa2\x51\x22\x96\x5c\xbe\x1d\xc1\x71\xad\x54\x5d\xe8\xf7\xf8\xbb\x36\xea\xf4\x59\x61\x2b\xb8\xa5\x49\x64\x76\xfd\x08\x3e\x51\xbb\xf1\xf9\x79\x82\x12\x52\x0a\xed\x6d\x57\x01\x74\xe0\x63\xa5\x73\x5f\xd8\xd8\x8e\x87\x69\x62\xf7\x94\x7f\x8b\xad\xf1\xab\x4a\x60\xe9\x7c\x85\x2c\x19\x28\x45\xa7\x4b\x1a\xe7\xc6\xa1\x34\xf2\xc8\xfb\x81\xc7\xc9\x8e\x2d\x90\x1a\x4a\xda\x67\xb7\x2a\x16\xed\xde\xf0\x75\xe7\xd0\x14\x26\x2f\xb2\x74\x3c\xa4\xd2\xfa\xf2\xf6\xab\xb4\x8e\x6d\xbf\x3a\x7d\x2a\x92\x2a\xdd\x5a\xbe\x96\x66\xc5\x10\x4c\x75\x8f\xf1\x02\x69\x4a\x94\x6e\x1a\xb4\xc2\x47\xa6\x1f\xc1\xdc\x4c\x3a\xff\xf4\xe8\xf9\xa4\x61\xdf\x7e\xd1\x0f\xba\x9e\x2a\x9c\x6c\x21\xe6\xe4\x93\x40\xb1\xf1\xc5\x28\x63\x49\x77\x5d\x0f\x3a\xac\xcb\x27\xb4\xe7\xdb\xcf\x52\x42\x04\x99\x97\x27\x08\xa0\x45\x90\xe4\x7f\xf0\x99\x0d\xc5\x29\xbb\x47\x69\x04\xab\x72\x07\x4a\x42\xe9\xd1\x0d\xca\x22\xd1\xa4\xd9\xbd\x41\xf9\x14\xa2\xfe\xeb\xe8\x42\xd4\x1d\xf7\xdf\x05\x0d\x01\x29\xe5\x4d\x4a\x6e\x10\x7a\x9c\x9e\x2a\xdf\x6e\xc8\x21\x23\x5a\x3f\x81\x56\xb8\x88\x4f\xd3\xeb\x03\x80\xf5\x11\x08\xd9\x21\x7c\x7b\xb8\x43\xc0\x77\xc4\x65\x77\xb8\x0a\x85\xf0\xfc\x13\x9c\xd0\xf1\xa5\x11\x26\x05\xb1\xfa\xf9\xa0\xf5\x6b\x07\xc5\x16\x16\x94\x41\xec\xfb\x9f\x56\x95\xe1\xf3\x78\xd2\xec\xd4\x31\x55\x20\xb2\x5d\x9d\x96\x4b\xd4\x1e\x23\xc0\x26\x1e\xd2\x9e\x8e\x52\x7f\x78\x88\xd4\x10\xf0\x7e\x1f\xec\x3c\xa5\x34\x2f\xc5\x21\x29\xcb\x49\x3d\x5d\x7c\x3c\xcb\xe7\x20\x36\x9e\x5e\xf5\x65\x94\x26\x51\x41\x35\x99\x32\xf1\xc3\xcb\x64\x1b\x08\x3e\x71\x2b\x6a\x5e\x4c\x46\xdd\x98\x34\x0c\x9c\xdb\xc0\xad\xa9\xb2\xbe\xbc\x3c\xf5\x02\x1b\x33\x9d\x06\x8c\x1b\x33\x75\xe7\xca\x85\xea\x8c\x62\x42\x40\x03\x19\x31\xc2\xbd\x40\xd5\xd2\xce\x55\x15\x46\x54\xf0\x1c\x15\x5c\x9f\x60\x68\x93\x4a\x0d\xeb\xdd\xa9\x43\xcf\xb9\x9a\x5b\xf9\x43\x22\x27\xa5\x19\x05\x9e\xe5\xfa\x8f\x7e\x51\x95\xad\xdf\x0e\x54\xa6\xfa\x76\xa5\x5e\xf6\x4a\x34\x9e\xab\x82\x10\xca\xeb\x96\x4d\xb1\xe5\xf8\x8e\x5b\xb4\xd8\x60\x34\xc1\xed\x8a\xff\x5d\xf5\x5d\xe3\x34\x34\xce\x31\x85\x71\x95\xf4\x31\xc1\x58\x3a\x67\xa4\x7e\x9f\x5d\x4a\x51\x1b\xc6\xe2\x74\x45\xd1\x93\x7f\x30\xf5\xbb\xe1\x39\x2f\xf5\x3e\x26\xeb\xd4\x4a\xf7\xb4\xa5\xf4\x0c\x1f\xd7\xad\x62\x9b\x0c\x8a\x21\x45\xbe\x28\x10\xb4\x3a\x9a\xea\x48\xbf\xcb\xff\xa1\x5a\xf5\x75\xd3\xea\x97\x5e\x6a\x17\xe9\x9a\xc9\x7a\xad\xf2\xa6\xf1\xa0\x6f\xea\x92\xf2\x4d\xa5\x4d\x97\x17\xa6\x20\x01\x2b\xf6\xee\xc3\x8c\xbd\x16\x78\xc6\x01\x63\x96\x00\xa1\x7c\xa3\x16\xf4\x2d\xef\x6b\x0f\xa3\xc1\x90\x2c\x4a\xf1\x37\x80\x23\x3b\x24\xab\x5b\xe2\x3e\xd9\x51\xd1\xd5\x79\x55\xf9\xb2\xbd\x28\xe9\x4e\xb2\xc1\x10\xd1\x05\xfa\x10\xbb\x36\x94\x3c\xfe\xae\x4e\x03\xea\xaa\x97\x91\xdb\xbf\x93\x33\xbe\x13\xf8\xce\xd3\x1d\x5d\xa6\xc8\xa2\x90\x81\x9b\xae\xb2\xc7\x3d\x6c\xa9\xd6\x29\x2f\xb0\xb1\x0d\x8b\xcc\xb4\x94\x9e\xc3\x09\x2e\x94\xf0\x59\xad\x84\xff\xfc\xbe\xf6\x5a\x99\xc2\x65\x34\xc8\xa5\xed\xae\x9e\xe6\x66\xed\xa1\x2d\x2e\xb6\x87\xa9\xf4\x9d\xb0\x96\xb0\x21\x1a\xde\xd0\x17\xa7\x0a\x30\x7d\xaa\x32\xfc\x73\x6b\x1f\xa5\x35\xd7\xd9\x32\x89\x0b\xe5\x3f\xe1\xf2\x0e\x6a\xc2\x5b\xb4\x4a\xa3\x58\x74\x87\x86\x3f\x2a\x68\x57\x09\xe5\x25\xd2\xf4\x7e\x6f\xe6\x5d\x17\x31\xca\x8f\xf1\xfb\xce\x45\x4c\x49\x46\x2b\xa6\xd9\x2d\xe0\x29\xc4\x10\x52\x15\x27\x8e\x63\x79\x42\x99\xff\x55\xe5\x08\xd2\x8f\x58\x22\xcc\x27\xea\xe7\xd4\x3c\x3d\xa7\x14\xcd\xa2\xd0\x09\x72\x61\xe2\xce\x6c\x78\x40\xd5\x4f\x50\x52\x88\x7f\x9f\xdb\x50\x18\xdf\xfa\x22\xb4\xb8\xb8\x04\x95\xf1\x9e\xce\xd7\x86\x81\xca\xd7\x86\x0d\x0a\x23\x2f\xb6\xcd\xa4\x18\xa6\x94\xe7\x7d\x8c\x4a\x8a\x26\xb6\x8e\xb9\xd1\x8c\xbc\x1f\x8b\x08\xd0\xaa\x50\x2c\x94\x04\xe3\x63\x1a\x1b\xbd\x49\x58\x60\x02\x32\xe5\x71\xaa\x98\xad\x67\xa7\xbe\xec\x70\x45\xc3\xa7\x27\x59\x3a\xb6\x0f\xd3\xdd\xcb\x5c\x2d\x7f\x97\x37\xda\x40\x11\xa2\xb9\x97\xee\x8c\x35\xdd\xde\x7c\x5c\x8b\xf6\x03\x37\x80\x67\x72\x13\xc5\x55\xb7\x1e\x38\xe5\xd3\x53\x34\x80\x50\x57\xb9\x34\xad\x88\x40\xee\x9c\xa4\xbf\xd4\xee\x4e\xd6\x19\x6a\xb1\x7d\x79\x4a\x36\x30\x55\x63\x14\x6b\x21\x70\x52\x41\xd9\x09\x47\xa6\xbc\x18\x0c\xda\xad\x40\xeb\x55\x27\xb6\x37\xe3\x7d\x0c\xe0\x82\xe6\xc4\x08\x1d\x67\xff\xe8\xf4\xd3\x0a\x60\x11\xa6\x49\x68\xa3\x55\xd3\x8d\x19\x47\xcb\x42\x27\x0a\xa9\x54\x2f\x3d\x96\xf1\x5d\xd4\x73\xda\x08\xb2\x7f\xf8\xf0\xf0\x94\x2e\x95\x9f\x75\x3b\x76\x68\x46\xdd\x2c\x22\x00\xf3\xc2\x82\xfb\x76\xad\xaf\x52\x53\x77\x7f\x7e\x1f\xb9\x3a\x8d\xc7\x69\x94\x14\x82\x4e\x11\x58\xa2\x47\x23\x6f\xd6\xae\x71\x61\xa1\xdd\x37\x59\x31\x2c\x97\x9f\xe5\x7d\x8d\xfe\x85\x7e\x98\x3e\xf7\xdc\xfe\x96\x6f\xcb\x60\x94\xf2\x31\x4a\x88\x55\xb4\xdb\xd3\xad\xd6\xd3\x4f\xf3\xcc\xbf\x00\x2d\x7d\x3e\xa9\x2c\x49\x66\xdd\xd0\x4b\xc4\x1e\x8c\xac\x04\xd8\xf4\xaf\x61\x99\xc5\x80\x7c\x5b\xcd\x97\xc5\xe5\xf9\xff\x90\xe3\x7a\x1d\xd0\xec\x8d\x05\x7b\x1a\x6a\x32\xd7\x51\x79\xfd\xdc\x46\x5d\x97\xf6\x60\x7b\x3d\xb2\x71\xaf\xa5\x22\x2b\xcc\x61\x89\x9f\xfd\xd2\x6f\xe2\x38\x32\xc9\x2b\xb3\xbe\x3c\xc3\xaa\x52\x22\xcf\xd1\x72\x32\x94\x2c\x29\x20\x52\x1d\x3b\x5f\xe6\x81\xc5\x76\x1e\x0e\xa3\x57\xd2\xf1\x30\xb3\x49\x64\x50\x43\x11\x67\x34\x5f\x68\x3e\xaf\x84\x4e\x47\x26\x57\x40\xb1\x4d\x9d\xc1\x6d\x36\x14\x84\x4d\x37\x9b\x8c\x11\x56\xa1\xb9\xf3\x26\x3d\x76\x3e\xae\x08\xe5\x1f\x2e\x58\x2a\xcb\x39\x73\xb8\xe2\x0f\x99\xe6\xff\xe2\x8e\x86\x2e\x45\x44\x7b\xe8\xce\x01\x89\xb8\x8e\xbb\x15\xcd\x1e\x65\xea\x83\xf4\x08\xff\x71\x9d\xea\x25\x82\x4d\x2c\x2f\x0c\x0d\xf4\x93\x81\x27\xdb\xc5\x26\xe9\x3d\x40\x0b\x0e\xe6\x2e\x5b\x67\xf2\x89\x42\x1e\xb4\x3a\x7e\x82\x5f\x50\xc8\x42\x5d\xf5\x86\x36\x86\x7c\xb6\x8e\x67\x59\xc4\xb2\xcf\x35\x0b\x21\xa9\x7b\xfd\x82\x4b\x4d\xf8\xf1\xe1\xba\x4d\x4c\x85\x36\x75\x5e\xd1\xa6\xce\xbb\x32\x63\xcf\x8e\x0b\x8e\x57\xa4\xeb\xd6\x72\x72\x48\x9e\x2e\x36\xb6\x36\x03\x30\x1c\xaf\x12\xc8\x0f\x84\xea\xb3\xe0\x21\xe3\x62\xbe\x4a\x37\x2f\x22\xaf\x6a\x8d\x2c\xd6\x63\x60\xe3\x9f\x75\xf2\x8e\xbe\xef\x7f\x57\xb9\x09\x70\xc8\x8c\x17\x70\xb9\x49\x69\xab\x9f\x45\xab\x69\x9c\x4e\x30\xd0\xb8\xa3\xa1\x94\x41\x37\x55\xd1\x2c\xcd\x7a\x36\x7b\x50\x39\xe5\xff\xb1\x72\x12\xbc\x86\x74\x10\xef\xf7\x4d\xc0\x32\xf8\x44\x99\x8d\xf0\x18\x46\x89\xf9\x3e\xdd\x9f\xb4\x4d\x69\x08\x21\x79\x39\x41\x9b\x11\x1f\xab\x3a\x65\xd7\x46\xc9\xe0\x01\xff\xb6\xd1\x4f\x16\xe3\xf6\xf2\x33\x58\x55\xbe\x85\x0d\xcc\xf9\xc5\x96\x6f\xc4\xfb\xc5\xca\xcf\x1f\x0d\x3c\x4e\xd8\x47\xe7\x66\x90\xd8\x38\x96\x9e\x91\x3c\x04\x95\x11\xd7\x7b\xdd\xfb\x0f\x51\xfe\x6e\x0f\xc3\xd4\x01\x88\xae\x7b\x3b\xef\xfa\xa0\x70\xae\xd5\xda\x3b\xff\xcb\x4b\x2d\x6d\xc8\x70\x49\xbb\x95\x5d\x72\x99\x46\x3f\xcd\x6c\x34\x20\x5c\xb4\x17\x1e\xe3\x8d\x11\x2d\xb2\x7b\xa8\xc2\xca\x42\xe1\x77\xc6\xb1\x29\x86\x39\x05\xfd\xc2\x0c\xf2\xfe\xaa\xe7\x95\x1c\x5a\xdf\x94\xa1\xd5\x9c\x92\xff\x03\x74\x9a\x8f\xb5\x08\x1d\xe7\xf7\x8e\xda\xed\x7a\x82\xd7\x55\xcb\x69\x3c\x5c\xcf\xa3\x34\x4e\x07\x2c\x71\xc9\x45\x28\x9a\x6a\x52\x90\xfa\xa4\x8a\xf6\x27\x26\xeb\xed\x50\xe5\xd7\x16\x54\x1e\x32\xf6\x5a\x6d\xe1\xa3\xdc\x86\x14\x88\x7d\xab\xea\x8c\xd2\x97\x38\xe3\x6a\x80\x68\xa7\x93\xd2\x37\xe2\x89\x3f\xa7\xa7\x21\x6d\x27\xdf\x8a\x98\x45\x23\x1c\xb5\x8d\x8f\x94\x80\xf8\xcc\x86\xea\xb0\xdf\xc7\x1b\xa8\xa8\xa1\x22\xb4\xda\xdd\xf1\x9d\x81\xae\x8d\x23\xbb\x6a\xab\x92\xd5\x73\x9d\x6a\x2d\xdf\x63\x17\x67\x36\x9e\x54\x44\xf7\x1e\x13\x67\x66\xe9\xc5\x20\xf6\xbe\x89\x62\x05\x3b\x43\xd2\xca\xed\x5c\x22\xcb\x17\xc3\x7f\x15\x78\x06\x23\x79\xc5\x61\xc5\x78\xd1\xb9\x36\x96\x4f\x41\x14\x8f\x5b\x4e\x5b\x13\x6e\x46\x0c\x9e\xad\x28\xc1\x46\x61\x3a\xe7\x75\xd1\xd9\x69\x01\xc9\xd2\x2d\x45\x3d\xfb\x5a\xe0\x8b\xcb\x4c\x85\x43\x03\xbf\x0e\xa1\xa6\x8e\x21\x39\xfc\x29\x11\xb0\xeb\x4a\x16\xfe\x7a\x6d\xd3\x7f\x7e\xdf\xb3\xa4\x0b\x92\x45\x83\x61\x31\xe3\xbb\x4a\xb7\x71\xeb\x1a\x6e\x28\xfd\xbf\x86\x00\x8e\x7a\xc7\x02\x66\xc5\x20\xe1\x77\xc0\x27\x0d\xc1\xc6\xc1\x72\xfb\xb6\xbd\x49\x2c\x90\x19\xd9\x30\xe8\x65\xc8\x4e\x52\xdf\x71\xf6\xb7\xd7\x8c\xef\x60\xe8\x75\x8b\x8f\xeb\xca\x00\xfb\xda\x83\xcc\x44\xc9\x8c\xef\xb2\xb1\xe7\x35\x30\x73\xe7\x54\xbe\x71\xbb\x16\x34\x2a\x97\x83\x32\x8f\x47\x32\x8c\xfa\x27\xbf\x0e\x3e\x51\xe3\x83\x0c\x84\x6c\x3e\xa7\xfb\xe4\x2c\xdf\x8e\xa7\x88\x38\x07\x88\x83\xeb\x2a\x37\xfb\x40\xf7\x57\xce\x37\x71\xce\x0e\xb6\x73\x93\x44\xc5\x0e\xf6\x8a\xf2\x26\x3a\x53\x09\x1b\x7b\x4f\x63\x23\x42\x46\xb7\x15\x28\x0f\xff\x2d\x45\xc9\x9d\x24\xfd\x34\xee\x31\x62\x00\xf1\xcd\x49\x05\x6a\x39\xa9\x36\xcb\xb5\x28\xe9\xa5\x6b\xb4\x30\x63\x75\x04\xfa\x0d\x7b\x25\x2b\x82\xcb\x3a\xe1\x21\x9a\xf9\xfa\x68\x9c\xe6\xd1\x64\x84\xcb\x41\x69\xec\xba\x52\x64\xba\xde\xc0\xcd\x60\x99\x58\x0a\xc0\x10\xb5\x7e\xa8\xc0\xc5\x1f\xd6\xf2\x3c\x32\x5d\x0d\xd7\xc3\x58\x46\x07\xd2\xd5\x33\xca\x9f\xfd\x4c\xad\x5a\x3c\x3f\xdf\x0e\xc9\xe6\xb4\xb0\x59\x8a\xf6\x29\x0a\x4c\x57\x15\xe1\xe4\xaa\x03\x08\xe6\x86\x29\x93\x8e\xef\xbd\xec\xea\x11\xb5\x78\xa0\xcc\x70\xd3\xac\x47\xaa\x00\x2d\x5f\x43\xd8\xac\x68\xcf\xfa\xc8\x2d\x4f\xb3\x62\x8f\x97\x21\xff\xb1\x72\xea\x3d\xa6\x06\xc9\x83\x00\x7f\x0a\xfc\xa2\xe5\x64\xa1\xbf\x37\x55\x6a\x86\x9b\x5a\xb9\x3d\x8e\x46\x5d\xee\x32\xf2\x98\xc7\xfc\x96\x09\xe0\xf8\x05\xd1\x61\xaa\x81\x2a\x00\x46\x4b\xb9\x68\xd2\xe8\xc1\xfb\xba\xaa\xda\x10\xe3\x49\x36\x86\x99\xd2\xce\xe6\xf7\x7e\xd7\xfc\x7e\x54\x55\xc3\x26\xe1\x4a\xa5\xbe\xa9\x69\x9c\x6a\x16\xf5\xd2\x49\x37\x66\xe4\x63\x05\xc7\xcb\x27\x0d\xc0\x97\xa5\xf6\xd8\xac\x73\xc9\x07\xeb\xef\x36\x95\x5f\xd8\xcd\x06\x97\x84\x8a\xc9\x85\xa9\xc6\x49\xf5\x9e\xc1\xb6\xca\xbc\x19\x7a\xf5\xc2\xa1\x69\x40\x2c\x72\x7b\x81\x7f\x49\xb0\xa2\x8a\xec\xf2\x75\x8d\xae\xba\x54\x1b\x18\xb2\xa8\xf4\x4d\x36\x9a\xf3\x69\xe4\x93\x54\xc6\x50\x12\x75\xc2\x23\xbd\x4b\xbb\x0b\x62\x07\x06\x4f\xe3\x19\x1c\x53\x34\x12\x33\x1a\xa5\x49\x34\x19\xd1\x7c\x41\x21\xed\x82\x52\xd7\xbf\x50\xb1\x45\x33\xaf\x14\x7b\x5a\xff\x51\x7c\xc5\x0a\xf5\x51\xad\x7d\x51\x6f\x38\x9e\x64\x2d\x1d\x0b\xfa\xf2\xfc\xb9\x1a\x40\x5d\x1e\x45\xf1\x4c\xf1\x8c\x92\x19\xe5\x76\x9e\x6c\xc4\xfe\x2e\x47\x26\xe9\x19\xe9\x67\xe2\xb1\x41\x30\x80\x8f\x3b\x4d\xfe\x0b\x69\x36\x8a\x88\x00\xd3\xd2\xde\xbb\xe5\x1b\x12\x9c\x42\x8d\x87\x36\x4f\x8a\xb6\x9a\x60\xd2\x54\x29\xf0\xa1\xe7\x2f\x1f\xfa\x95\x07\xb1\xde\x23\xae\xba\xaa\x56\x9d\xad\x40\x81\xf5\xb8\x9e\x81\x68\xfc\x81\x8d\x0a\x11\x60\x51\xcc\xb8\x1f\xed\x94\x81\x9d\x0c\xdb\xf2\x59\x62\x47\x6c\x75\x2a\xe2\x38\x4f\x2a\x39\x98\x24\xb1\x21\x65\x95\x7e\xec\xbe\xa3\x43\xf5\x59\xad\xa9\x3f\xbb\xe1\x8b\xcf\xbb\x48\x6b\x49\x00\x04\x4a\x36\xd2\xaf\x0b\x99\x5d\x8d\xec\xda\x9e\xd6\x4b\x2f\xa1\xc4\xc4\x25\x4c\xe8\x74\x62\x21\xda\x85\x2b\x73\xd2\x62\x9e\xa0\x7e\x41\x0b\x68\xfe\xc8\x23\xc4\xd8\x55\x7c\xc4\x11\x3b\x32\x2c\xa6\x12\xf3\x49\xe0\x31\xe3\x2b\xa6\x78\x05\x73\x14\xab\xa0\x30\xe3\xf8\x4c\xb3\x16\x46\xdd\x08\xce\xee\x2a\xf6\xa7\xb7\x21\x92\xe6\x1a\xd4\xed\xda\xd4\x43\x13\xc7\x36\x19\x08\x4d\x82\x05\x19\xa7\x1e\x53\xf5\x4d\x2c\x1f\x2c\x08\xd9\x64\xa4\x31\x88\xe2\xa2\x42\x59\xb8\xa8\x1e\xd6\x45\xd5\x13\xe9\xa5\x49\x3a\x18\x4e\x2c\x19\x75\xa1\x38\x74\x1b\x09\x9b\xfb\x59\xa7\x73\x58\x73\x4b\x5f\x58\x68\x2f\x2c\x1c\xdc\xe3\x19\x3d\xb7\x51\x08\x77\x61\xf7\xc2\x02\xf7\xd1\xfe\x6e\x5a\x19\x2d\xf4\x4e\x04\xb9\x42\x0f\x07\x2d\x98\xf7\xd5\x1e\x64\x32\x6b\x90\x92\x22\x3a\xc1\xdc\xc2\x2a\x74\x62\xea\x05\xbe\xff\x12\x5f\x80\xdf\x39\x13\xf8\x5e\xf5\x45\x80\x4c\xb1\x46\x5f\x53\x39\xcf\x39\xed\x91\x04\x61\x1c\xfe\x2a\xbf\xb9\x0e\xd3\xe2\xc1\xf2\x3f\xd0\xeb\xdc\xc0\x27\xd8\xab\x5e\xd9\x74\xc1\x5b\x17\x03\x0a\x23\x19\xab\xe1\xa3\x1d\xa5\x42\xc9\xe6\xa5\x88\xeb\x7e\x10\x28\xdf\xb7\x2b\x78\x2c\xb8\xf9\x8b\x4a\x26\x68\x92\x8c\x4d\xd4\xa3\xd8\x06\x3f\xc4\x0e\x76\xd8\xf2\xde\x50\xa9\xc1\xfb\x2a\x35\x1b\xd9\xd0\x24\xd1\x6f\x4e\x2c\x1b\x8f\xb0\x70\x50\xe0\xfd\x97\x8f\x51\xff\x14\x31\x7c\xe3\x7e\x92\x8f\xa1\x75\xd9\xf2\x3f\x7d\x04\xb1\x1a\x9f\x68\xab\xff\x34\xa5\x00\xc7\x83\x44\x2e\xa9\xb6\x58\xa3\x4e\xa8\x35\x03\x9b\xcd\xa8\x64\x03\x95\x6a\xed\x60\x86\x4f\x6f\x37\xe9\x4e\x1c\x6c\x67\x66\x6c\x73\x6b\x7b\x5c\xb3\x51\xc6\x0e\xbe\x7f\xa9\x37\x17\xdb\x2f\x1e\x6e\x2d\xef\xdb\x86\xc5\x86\x0b\x96\xcb\xfb\xe1\x5a\x37\x98\x29\xc8\x76\x4e\xa3\xb8\xe1\x54\x68\xcb\x4b\xc3\x28\xfd\x3a\xea\x60\x12\x60\x2b\xa5\xfa\xcb\x4a\x5c\x7c\x06\x2f\x5a\x5e\x27\x05\x36\xc2\x91\x6d\x50\x09\x0f\x6d\xda\x52\x61\xc4\x2d\x55\x2b\xbc\x15\x78\xf4\xf7\x84\xbd\x0f\x75\x35\x04\x21\xdb\xf1\xaa\x8a\x77\xf9\x58\xc5\xbf\xa6\xb5\xbc\xc4\x99\xf0\x45\xed\x42\x86\x39\x89\x24\x17\x00\x0a\x5c\xec\x9b\x84\x1f\xc3\x5a\xc7\x05\x40\x2c\x67\xc7\x82\xd6\xa1\xe7\x38\x0c\xe4\x79\xcb\x04\x8c\x5a\x46\x74\x60\xb1\x6d\x47\xe3\x94\x84\xb0\xca\x27\xc7\x9e\x2c\x40\x5a\x8b\x41\x4b\x93\x22\xa0\x19\xd9\x2c\x0a\x8d\x40\x22\x71\x0b\xdc\xc3\xe4\x13\x57\x6c\x1f\x67\x26\x2c\xa2\xd0\xb9\x61\xe3\x92\xcf\x68\xaa\x8e\xa6\xc7\xc4\x51\xef\xa1\x96\x28\x8b\xfe\xe3\xc7\x49\x77\x09\xc0\x80\x77\x91\x78\xa1\xca\x7f\xb7\x22\x9d\xeb\x31\x95\x6b\x3f\xd9\x51\x00\x70\x8e\xda\xf0\x60\x3e\xd1\x51\x2a\xcd\x5c\xb1\x91\x6d\xd5\xaf\x28\x6f\x39\x9e\x65\x68\xb2\xb8\x48\x13\xb9\x6e\xb4\xed\xee\x6a\x8e\xe8\x5d\x75\xdd\x69\x94\xcf\x28\x56\x11\x2e\xa9\xa2\x1f\x8f\xf7\x79\x5b\x75\xdb\x12\x5b\xac\xa5\xd9\xca\x83\xe5\xf8\x70\xe9\xf2\x17\xf6\x7b\x39\x20\x57\x37\xb9\x33\x55\x75\xf4\x93\x58\xee\x15\x1a\x4a\x00\x42\x77\x68\x69\x04\x1a\x97\xd9\x44\x4e\x68\xd2\x4b\xfe\x1f\xfd\x58\x4b\x02\xc7\x83\x9f\x51\x82\xa2\x20\x73\x60\x23\xe2\x40\x00\xf1\x44\xdd\xd2\xe3\xa5\x97\xda\x85\x1d\x8d\x5d\x83\x04\x81\x07\xeb\x87\xf3\x89\x6a\x2c\x77\x4d\x51\x58\xd8\x32\x38\xe2\x02\xf3\x5e\xf8\xa4\x89\xf2\x33\x49\x12\x9b\xad\x22\x8a\xdb\xde\x02\x19\xdb\xab\xf2\xf7\xd3\x6c\x84\xeb\xdf\xef\x5d\x1b\x3c\xd1\xf3\x9e\x12\x21\xb8\xda\x98\x74\x45\xa3\x31\x09\xea\xb7\x54\x65\xe7\x96\x5a\xbe\x6f\xa9\x17\x68\xe2\xc2\x12\x46\x44\xf4\xbd\xfe\xdb\x4d\xa5\xe2\xbc\xe9\xaa\xd1\x6b\x59\x5a\xd8\x19\xcd\xd4\xa0\xeb\xc3\xe6\xc6\x74\x32\xe1\x73\x54\xb8\x47\x36\x7f\x92\xd6\x24\xd6\xa7\x0c\xd4\x34\xbd\x5f\x71\x35\x55\xd1\x14\xec\x49\x50\xd1\x80\x16\x36\xb6\xe0\xc7\x37\x68\xe1\x04\xd7\xec\x4d\x2c\x8f\x40\xc7\xff\xdf\x74\xd1\xd8\xe0\x5a\xc8\x10\xb1\x74\xbd\x4a\x35\x42\xa5\xa5\x74\x90\x7f\xef\x1e\x2d\x57\x48\x01\xaf\x23\x1a\xc6\x57\x71\x41\x0c\xb8\xa0\x53\xd5\xcd\xb2\x35\x3f\xef\x36\x64\x5a\xb6\xc5\x26\xcb\xc7\xf8\x97\x2a\x9b\x55\x3c\x19\x25\xb3\x9e\x60\xc3\x15\x0e\xa4\x85\x57\xb8\xeb\xef\x34\x85\xca\x8b\xc3\x80\x7d\xcb\x93\x76\x87\x86\x40\x21\x9a\xef\x07\x1d\x1f\x99\xa5\x7e\x02\xe7\x2b\x86\x67\x3a\x1e\xd7\x7b\x3a\x89\x7a\xaf\x16\xb2\x7d\xae\x9d\xa7\x93\x62\x38\x53\xad\x4d\xfb\x7a\xdb\x77\xa6\x4a\x94\xfe\x5a\x6d\x6f\x5c\x58\x70\xf8\x70\x77\x7d\x78\x82\xd8\x9e\xf8\x58\x61\x11\xc9\x2c\xca\x26\x45\x64\x18\x39\xe9\x3a\x51\xe5\x03\x97\x4e\xd4\x27\x95\xe6\x44\x1c\xd9\xfe\x9c\x12\x2b\xdd\xa2\xcb\x93\x32\xa1\xaa\xe3\xb2\x0e\x29\x5a\x3b\x87\x95\xf3\xc5\x85\x5a\x19\xc9\x81\x0c\x33\x2a\x66\x3c\xbf\x4f\x6c\x17\xe9\xa9\x8a\x05\xa3\x04\x65\x03\x93\x24\x15\xb3\xbc\xb7\xb4\x59\xde\x5b\xea\x6a\xe3\x74\xd5\xc6\xeb\x73\xde\xfa\xec\x88\xd2\x83\xdc\xae\xe8\x53\xd2\xf8\x74\x1e\x2e\xe5\xec\x00\x42\xe3\x44\x65\x17\xe9\xa2\x82\x8d\x0d\x02\x72\x27\x22\x8b\x51\x7e\xb1\x00\x0b\x3e\xa9\xea\x58\x51\x0a\x25\xef\x17\xdd\xb6\x84\x4b\xc7\x6a\x7c\x49\xcb\xf3\xbe\xa9\x7a\x5e\xef\xe2\x51\xf2\x5f\x35\x8a\x3d\x99\x62\x18\xdb\x22\x0a\x65\x2f\x61\xd3\x4c\x3c\x0c\x71\xd0\x54\x4a\x3b\x85\x5d\xb5\xe4\xc0\x88\x3f\x97\x1a\x11\xfd\xb9\x14\x8f\x1e\xf1\xfb\x6b\xc4\x1e\x0b\x58\x76\xc0\x88\xe5\xe3\x5a\x69\xec\xd0\x73\x6d\x3b\xb2\x19\xbf\x3c\x4c\x4d\xc0\x89\xf8\xb8\x01\x0c\xb3\xd4\x1e\x58\xd0\xce\x31\xe3\x4f\x61\x1d\xc2\xc9\x37\x70\xfb\xb2\x7f\xf9\xac\xab\x97\x99\x35\x04\x7d\x32\x38\x7d\xe1\x4f\x33\x55\x47\x66\x90\x44\xfd\x28\xb4\x49\x81\x9a\x88\x13\xc7\x2d\x3f\x2b\xa4\xc6\x96\x53\x4a\xf9\x9a\x7a\xcf\x83\x41\xbe\x47\x51\x38\x04\x88\x28\xdd\x7f\x0f\xc8\x7b\x78\x43\xd1\xe9\x2e\x29\xbd\x2b\x7e\xad\x68\x56\x3d\x5e\x43\xe7\x2d\xef\x6b\xc7\xd6\xf4\x76\x28\x0c\x5c\x51\x24\x8e\x2b\xaa\x80\x11\xa6\x49\x3f\xca\x98\x5f\x27\x2b\x53\xf9\xa7\xd2\xd9\x6e\xb0\x6d\xee\x45\xe3\x61\x31\xf4\x26\xbc\x00\x63\xa1\xb0\xc5\xc7\xaa\x43\xdb\x9d\xe4\xeb\x2d\x0a\x7d\x80\x3d\xd9\xd5\x01\xd8\x92\xcf\x6a\x14\x16\xd9\xd9\xa1\x60\xd2\xf2\x49\x18\x5b\xf8\x08\xb0\xa3\x9e\x27\x2e\x2d\x2f\x3d\x58\x5e\x83\xf3\x46\x50\x88\xa3\xc0\xd3\x4d\x3f\xa4\x2e\x9e\x80\x76\x3c\x9e\xe2\x1a\x56\x64\xb4\x6a\xfe\x5e\x93\xe8\xcf\x60\xd2\x02\xa9\x00\x17\x07\xe4\x8b\x6f\x3b\x74\x51\x37\x9e\x38\xc0\x16\x46\x03\xab\x97\xf3\x49\xad\x7d\x41\x9e\xf1\x51\xbf\x18\xd2\x3c\xc0\xd7\xc1\x75\x9f\x8f\x9b\xcd\x13\xc3\xa1\x49\xb8\x26\xdb\xe4\x9f\xd4\x00\xd5\x64\x04\x3f\x5d\x19\xa2\x20\x68\xc6\xf0\x71\x2d\x5e\x59\xde\xd7\x8e\xf2\x34\xf6\xb8\x08\x3c\x1d\x68\x6c\xf1\x71\xe0\x4b\x31\x63\x9b\xe5\x51\x5e\x88\x70\x92\x73\xe7\x3d\x20\x86\x58\x17\x3e\x36\x76\x2b\xd6\xc7\x51\x08\xc3\x25\x57\xfa\xe5\xbc\x87\x4f\x9a\x6c\x81\x8b\x49\x56\xc4\x76\xa6\x26\xa6\x8f\xe3\x8f\x94\x14\xd6\xf9\xe9\xc7\xa9\xa9\x94\xef\xaa\xb0\x59\x26\x61\x23\x46\x4c\x8b\xf0\xcd\x48\xc6\xe6\x3a\x4a\x87\xf1\xb5\xa9\x2f\xff\x92\xb3\xa3\x73\x89\x92\x8e\x84\x72\x69\x3b\x53\x7b\x71\xf2\xab\xc3\x61\xfe\xf1\xa2\x5a\x1e\x35\x12\x0e\xad\x19\xdb\x8c\x14\x65\x31\xfe\x6e\x22\xbf\x41\x94\x3c\x4b\x01\x12\x7b\x0a\x00\xa8\x06\xb4\x73\x9d\x58\x30\x3f\x5f\xee\xc1\x24\xf5\x83\x0d\x18\x11\x1b\x04\x19\xf8\x58\x69\x60\xf5\xa2\x51\x04\xa6\xc5\xac\x8f\xc7\xc0\xea\x70\xf3\xa0\x0c\xc1\xf8\x24\xd0\xad\x74\x1d\x03\x16\xbd\x67\x30\x72\x80\xfb\x66\xfb\x61\x3e\x69\x8a\x8f\xf3\x30\x8b\x46\x63\x19\x6f\x58\x33\x59\x31\x9f\x4f\x82\x9f\x54\xde\x2f\x99\x35\x31\x21\x4c\xcb\xd7\x30\xeb\x1d\x08\xb1\xa3\xf3\x31\x02\x04\x84\x11\xdf\x50\xcd\x8d\x6f\x7c\xac\xb1\xd4\x60\x98\xe6\x45\x4b\x6b\x9d\xb7\x9c\x3e\x8a\xf6\x8a\xcb\xac\xc9\xd3\x04\xed\x50\x6c\xd0\x77\x35\x3b\x17\x08\x0a\x44\x51\x30\x56\xe2\x63\x25\xbb\x17\xa6\xa3\x71\x6c\x0f\x43\x25\xda\xd5\x43\x7d\x6d\x14\xd9\xb1\xb0\x8d\x7d\x4f\x75\xaf\x0a\x8e\x2f\xab\x22\x60\x77\x12\xc5\xe5\x8a\xff\xa0\x07\x6f\x1c\x41\x65\xca\xc9\x76\xcd\x8b\x16\xfa\x31\x1d\xe6\x7d\x09\x57\x8e\x32\xec\xdb\x4a\x6a\x01\x7c\x67\xc4\x22\xdb\x34\x04\x64\xbc\xd0\x7d\x03\x94\x58\x97\xaa\x5b\x58\x20\xfd\x0f\xe9\x8e\x0a\xaa\xb3\xe5\xe8\xc7\xb7\x3c\x08\xdd\x84\x19\x6d\xa2\xb4\x32\xe1\x0a\xa0\x2d\xc2\xc7\xaa\x63\x47\xfc\x38\x13\x3f\x82\x9d\xc3\x81\xae\x1c\x91\xe2\x32\xde\x36\x12\x85\x3f\x0a\x3c\x6a\xf6\x8a\xb2\x93\xb8\x3e\x55\x95\xbe\xb7\xeb\x2c\x76\xba\xc0\xdf\x65\x16\xbb\x98\x2c\x79\x23\xa8\x93\x8a\xde\x74\x3d\x50\x95\xb2\xf7\xf0\x0c\xf9\xa4\x41\x2c\x61\x89\x80\x60\xae\x9c\xa0\xcc\xfc\xdc\x49\xf0\xb0\x32\xd5\xfe\x69\x0f\x8d\xbc\x8c\xce\x15\x33\xaf\xd8\x12\x01\x2f\x78\x17\xca\x06\x40\x70\xdc\xc2\xcc\x74\x25\xe8\xf2\xd5\x63\x98\x6c\xd1\x13\x40\x76\x33\xb3\x51\x8e\x6e\x7c\xf3\x3b\x4a\x3f\x88\x73\x6d\x64\x18\x9f\x40\xd2\xc5\x9f\xe6\x80\x12\xb1\xd9\x0d\x22\xfd\xba\x92\x68\xf9\xc8\x45\x0e\x47\xef\x7b\xad\x5f\xf9\x0d\x7e\x15\xdf\xa3\xad\x16\x4f\x7c\x0f\xe8\xf4\x08\x6e\xfe\x00\x2b\x1a\xfe\xe7\x8b\x81\xea\x54\xa1\x11\x29\xde\x25\xaa\x41\x7c\x9a\xb2\x31\x04\xb0\x37\x40\xbe\x62\xc0\x72\xa0\x04\xf7\x18\x02\x85\x84\x13\x5a\xd7\x80\x49\x5c\x70\xe1\xe7\x24\x31\xdd\x18\x9c\x42\x8c\xf5\x6f\x69\x7c\xca\x35\xa5\x84\x74\x53\x29\x3b\xe4\x69\xd7\x66\x0e\x68\xcc\x1d\x81\x4a\x77\x40\xe7\x81\x93\x71\x6c\xf7\x28\x4e\x20\x80\x33\xae\x68\x57\xbe\x38\x71\x01\xf7\x3b\xc2\xed\xa0\xbc\x43\x24\x13\x27\x74\x56\x5a\xd7\x41\x5f\x5c\x3c\xd8\x2e\xb2\x48\x96\x4c\xfc\xd9\x6b\x5a\xe9\xe3\x35\x85\x8d\x7c\xee\xe0\xa1\x96\xaa\x53\x33\x54\x5d\x4c\x6a\x1d\xc7\xcd\xc4\x71\x5a\xa8\x4e\xd3\x77\xa7\xbe\xd3\xf4\xdd\x46\x30\x45\x3e\xc9\x49\x72\xb1\xa7\xe8\xba\xdc\x6a\x12\x5c\x8b\xdf\x39\x5f\x9e\xf4\xa2\x30\x32\xd9\xba\xa6\xea\x5f\xd4\x38\xa4\x8b\xea\x19\x16\x66\x25\x4a\x06\x0f\xd1\xed\x31\x34\x18\x45\x24\x94\x48\x80\x13\x94\xbe\x1f\x06\xa9\x26\x11\xe2\x89\x9e\x0e\x54\xd5\x82\xe3\x66\xa1\x17\xd2\x4b\xe0\x3f\x43\x7c\x27\x9d\xc3\x96\xff\x15\xd5\x56\xee\x43\x77\xbe\x1c\x51\x18\x90\xb7\xa9\xa2\xc0\xc7\xba\x41\x3c\x5c\xcf\xcb\x1b\xe5\x3d\xd7\x59\xf4\x39\x54\xdc\xf1\xda\xb3\x3c\xb0\xd8\x1e\x0f\xa3\x38\xcd\xd3\xf1\x70\x5d\xd3\xfc\x02\x5f\xc8\xd2\xca\x1e\x84\xcd\x18\x91\xea\xd9\xf2\x3e\x91\xc6\x52\xc5\x37\xb6\x8d\x05\xc0\x9b\x25\xd0\xf8\x04\x0b\x85\x6b\xd8\x78\x76\x1e\xad\x13\x02\xb4\x6a\x28\x93\x85\x29\x24\x05\x5b\x3e\xd8\x02\x79\x9a\x8f\x83\x4f\xa9\xae\x65\x2c\x35\xd4\x96\xda\x26\x5b\x1d\xb5\x4d\xb6\x36\x74\x47\xfa\xe9\xfc\x67\xe8\xff\xb0\x3a\xfc\x15\x7d\x2f\x8e\xcf\xd2\xb4\x17\x83\x01\x85\x53\xbb\xc7\x02\xe7\x0e\x1f\xea\x60\x56\xb3\x1d\xb1\x50\x29\xd7\x18\x2c\x64\x33\xa4\x3b\xbe\x7d\x06\x85\x3d\x44\xa6\x27\x68\x8f\xc3\xaa\xf7\x23\x5e\xe8\xf0\xa3\x47\x31\x6e\x70\xf2\x20\x12\x31\x84\xa4\x1f\x90\xac\x06\x57\xbd\xb1\x0a\x21\x11\xfb\xf7\x81\x1f\x19\xf7\xb1\x00\xa3\xe4\x0a\x7a\x84\xd0\xc9\x68\x0d\x74\x44\xf8\xf9\xfd\x22\x59\x87\xd7\x22\xd5\x74\x0d\x46\x51\xf1\xf0\x07\x81\x02\x9c\x50\x23\xe0\xc5\xfb\xc4\x2a\x13\x05\x95\xd6\xe7\x5f\x70\xc2\xcc\x9a\x22\x91\x0c\xc0\x21\xf3\xf8\xab\xf2\x62\xa5\x3d\xb2\xb3\x87\xb2\xb4\xbc\xd4\x5e\xb1\x76\x4c\x1b\x33\x0a\xb0\xec\xfd\xce\x27\x8a\x75\xc6\xce\x44\x45\xbe\x47\xc1\x25\xa0\x49\x82\xad\xf9\x1c\x66\x2d\x9a\x09\x88\xb0\xc5\x0a\xce\x37\x19\x5a\x9d\x4a\x8f\xa2\x81\xdc\x92\x9b\x04\x45\x4b\x67\xe0\xe4\x05\x70\x7e\xa8\x38\x5f\x36\xa1\x96\x1a\x42\x84\xaf\x61\xc6\x63\x45\x05\x30\x46\x00\xd6\x2d\xe5\xb4\xea\x45\xec\xee\x20\x68\x72\x16\xac\x7e\x01\xff\x90\xae\x16\x2d\x64\x10\xf6\xc4\x1d\xcf\x5b\x86\xe7\x26\xea\x3d\xa5\xaa\xde\x67\x31\x0c\x5c\x3d\xe0\xf3\x2f\x30\xd8\xfb\x1a\x76\x2c\xd1\x1d\x53\x0e\x48\xaf\x07\xde\xb2\x1d\x0f\x0b\x83\x5d\x5b\x34\xee\xea\x78\xb5\xbf\x59\xda\xe1\xb0\xac\x70\x0c\xc0\x77\xa2\x6b\xe9\x27\xa7\xde\xd8\xeb\x06\x36\x3b\x14\x32\xd9\x89\x0a\xb9\xf0\x16\xda\x54\x2e\x3b\xf1\x46\x23\xff\x42\x47\x21\x8c\xfc\xc0\x2e\x73\xb9\xd2\x97\xde\xc6\xec\xc2\x25\x5f\xa9\x34\xc9\xe2\x38\x9d\x51\x4d\xd8\xa3\x78\xb6\xae\xf3\x70\x40\xc4\x33\xb6\x2a\x99\x84\x49\x7a\xed\x32\x64\xc1\xb2\x34\xe5\xf8\x47\x66\x2c\xdd\x2e\x4a\x1a\x5f\x9b\x2a\x3f\x37\x5c\x2d\x5a\x30\xdf\xa5\x68\x04\x21\x00\x34\xe5\xd8\xba\x01\xf7\x87\x1a\xd0\x7f\x8f\xcd\x16\xb8\xa2\xf7\x29\x66\xc1\xe3\xbd\x40\x3b\xb2\x30\x70\x68\xb6\x23\x6e\xfe\x21\x75\x3d\x70\xa3\x6f\x29\x8e\xf3\x2e\xd0\x62\x2b\x9e\xc3\x98\xc8\xf7\x02\x9f\x74\x9d\xc4\x30\x43\x7b\xe5\x8f\x69\xfc\x21\x86\x38\x36\xf5\x7c\xd1\x37\xa6\xbb\x3f\xcb\xa8\x4e\x16\xbd\xc7\x48\x7c\x0b\x50\x69\x5c\xe0\xdb\x53\xcd\x63\xfd\xb7\x78\xfe\x68\x11\x9d\x23\x73\x47\x5c\x09\x0a\x6c\xb8\xd9\x7f\x0e\xda\x05\x32\x0d\x5e\xe8\xc4\xd8\x44\x8b\x15\xd0\x1c\x76\x11\xae\x17\x38\x3b\xa6\xf2\x98\x9e\xcd\xa3\x81\x48\x4b\xa8\xb2\x8b\x38\x05\xf8\x26\x47\x2f\x4d\xba\x26\x57\x62\x73\xdc\x62\xe2\x13\xf7\x77\xab\x26\x9e\xd8\xde\x1e\xe5\x64\x88\xd2\x97\x34\x26\xe9\x97\x5c\x2b\x57\xb9\x8f\xd0\x7d\x60\xf9\x9d\xd9\xf0\x22\x32\xdf\xfb\xc9\xce\x13\x0e\xd6\x91\x17\x66\x92\x99\xa4\x60\x2c\x2b\x62\xd4\x8b\xfc\x08\x31\x3d\xb8\x08\xc4\xff\x15\x28\xcf\x90\x7a\x99\xf1\xa5\x97\xda\x5d\xa7\x79\x8d\xed\xf5\xac\x12\x65\x6b\x72\x21\x38\xd8\x5e\x33\xab\xac\x37\x00\x9c\xd1\xdb\xca\x6f\xf1\xed\xe0\x53\x4a\xc8\x60\x34\x36\x59\x41\x8a\xd4\x4a\xd6\x67\x2b\x50\x24\xf7\x2d\xb5\xc8\x17\x69\x22\xae\x2b\x62\xff\xfa\x75\x58\xde\x09\x46\x4b\x4f\xc7\x6e\x9a\x31\x7e\x07\x2f\x60\x5b\xe1\x7c\x58\xac\xc8\x89\x8b\x79\x2b\x4f\x78\x9e\x61\xe4\x61\xbf\xc3\xd8\x3e\xaa\x03\xf8\xb7\x69\x0c\xb3\xea\x73\xa0\x9a\xc7\x57\x9c\x05\xc1\x24\xb1\x87\xc7\x31\x05\x8e\xa8\xbf\x60\x17\x38\xaf\x7a\x56\x37\xf0\x95\xf8\xfe\xf7\xa7\x7e\xc3\xb1\xfd\xbe\x0d\x8b\x68\xd5\x3e\xec\xb9\x7b\x7f\x82\x3f\x76\x68\x1c\x2f\x76\x7b\x67\xaa\xc4\x6e\xef\x60\x61\x60\xb5\xe6\xc0\x53\x16\x58\xa9\xcb\xc9\x38\x7b\x6e\xca\x37\xca\xbb\xdc\xbe\x1c\x28\xb9\x94\x6d\x8c\x41\x6e\x7e\x69\xfb\x86\x32\x3c\x9a\x55\x65\x23\xb6\xc6\x68\x82\x41\xfa\x32\xe5\x55\x85\xf6\xb2\x87\xc7\x36\xc9\x6d\x8e\xa8\x17\x0b\xd8\x47\xf4\x50\x04\xbd\x5e\x7e\x4e\x7c\x8e\xb4\xac\xdf\x54\x79\xac\x5e\x53\x74\x3a\xb6\x0c\xc6\x80\xfc\xf1\xb4\xa2\x4a\x47\xcb\x19\xff\x99\xf2\xbb\x79\x5f\x99\x28\xe6\x85\x1d\xcd\x78\x3e\xf6\x96\x02\xd8\x71\x79\x95\xd5\xcd\x94\xc2\x71\x6c\x26\x3d\x50\x54\x5e\x74\xcd\x9a\x96\x73\xd7\xda\x4d\xa0\x3f\xbc\x29\x76\x1e\x93\x98\x4f\x5a\x60\xb6\x18\xae\xc7\x36\xe1\x59\x22\x9a\x32\x3e\x15\xd1\x96\x19\xb1\x35\x3d\x16\x24\x73\xf2\xfb\x3b\x4d\x0a\xb0\x5d\x1c\x2b\x53\x6c\x9a\x8d\x65\xe6\xf2\xb3\xbe\xe2\x78\x3d\xa8\xec\x74\xe5\x76\x23\x2e\x22\xd8\x6e\xdc\x62\xee\x53\x89\xbb\x18\x10\x78\x43\x5c\x84\x43\xc2\xd3\x82\xb7\x0f\x7e\xff\x1a\x05\x8b\x40\x0d\xfd\x19\x2d\xf3\x2e\xf7\xf7\x9a\x73\xd7\x91\x7c\x20\xb4\x40\xc6\x8a\x19\x7b\x1b\xab\x39\x56\xed\xf7\x54\x99\xf7\x04\x22\x06\xec\xda\x57\xb1\x1d\x20\xa0\x3f\xab\xd9\x93\xff\x0a\x6f\x18\x7d\x86\xdf\xa7\xe5\x9c\xed\xe4\x03\x67\x1d\xf5\x2f\x5e\xa7\xfd\x11\x75\x03\x49\xf6\xf1\x5d\x0f\x6f\xa8\x8e\x27\x9b\xfb\xa0\xb6\xb6\x4d\x03\x0c\x29\xfa\x77\xa6\x1e\x64\x08\x65\x27\x26\x08\x53\xd8\xce\x3b\xb5\xea\x3f\xe7\x93\x6c\x35\x5a\x85\x84\x07\xcb\xae\x4f\x77\x52\xd9\xb1\xc0\xbc\x3a\x55\x1a\x54\x5a\x2e\xf2\x96\x4e\x5f\x4f\x2b\xd4\x5e\x6e\x38\xad\x47\x26\x8f\xe2\x9b\x94\x03\x7d\x55\xe1\x5c\x93\xaa\xc0\xc0\x26\x36\x33\xb1\x26\x5c\xd3\x47\x7c\xef\xca\xe7\x5e\xe9\x78\xaf\x2e\x3a\xea\xc4\xe1\x87\x53\x45\x99\x9c\xfa\x9b\x39\x13\x68\x38\xb2\x5a\x46\x99\xaf\xc6\x85\x08\xdc\x19\x20\x72\xc7\x1d\x58\x8f\xea\xb2\x64\x50\x44\x69\x36\x46\xdd\x5f\xd3\xa3\xe2\x63\x85\xea\xea\xc6\x66\x44\x6c\x56\x4f\x30\x56\x60\x02\x50\xf5\x90\x8c\x5c\x53\x72\xf0\x66\x02\x25\x9c\x3d\xd5\x67\xee\x00\x11\x70\x05\x71\x6a\xed\xe5\xe0\xc7\x10\x87\xb5\x28\x56\xa1\xff\x0b\x31\x95\x2c\xe6\x3b\xdd\x5c\xe6\xe7\xb1\xc0\xf5\xa2\x62\x92\xd9\x5c\x77\xce\xee\x04\x8a\xa7\x0f\x2c\xbe\x80\x79\x3e\x8e\xa1\x20\xc2\x31\xb3\xbe\x63\x06\x08\xb9\x7e\x7b\xe2\x42\xab\x92\x85\x93\x81\x97\x71\x19\xaf\xe7\xaf\xac\x44\x76\x2d\x0a\x5f\xa1\xdc\x42\x41\xf7\x44\xe7\xed\x5c\x43\x3d\xef\x20\xd9\xcc\xe4\xbc\x40\x49\x11\xaa\xfc\x6d\x61\xd0\xeb\xb2\x51\xbf\x58\x33\x19\xfa\x58\xd8\x40\xb8\x8a\xce\x27\x8a\x36\x30\x4a\x8b\x68\x15\xea\x11\x58\x79\x9c\x4d\xb6\xef\x7b\x9d\x56\x28\xd8\x9e\xed\xdb\xa4\x47\xf1\x8c\x2f\xd0\x9e\x55\x71\xe6\x59\xba\x28\x49\x46\x1c\x46\xe9\xdd\xb3\x4a\xf7\x33\xed\xf5\x66\x31\x82\x25\xd6\xd4\x86\x89\x2d\xa7\xfa\xbe\xa9\x69\x46\x37\x9b\x3c\x6b\x4c\x9c\x82\x5e\xef\x85\xd4\xcb\xaf\x42\x97\x19\x90\x7e\xb7\x14\x1e\x58\x74\xe0\xa2\xba\xd2\xf2\xfe\x76\x3e\xce\xca\x85\xbd\xa5\x70\xb5\x3c\x83\x3e\x4e\x77\x7a\xe9\xb9\x83\xed\x38\x1d\xa4\x4a\x11\x8e\x11\x16\x62\xd7\xe2\xfb\xe6\x24\xdf\xd0\x53\x90\xd2\xa3\x0a\x14\xc8\x55\x22\x8c\x1c\xce\x4b\x11\x6f\xde\xa5\x7a\x8f\x74\x83\xfd\xeb\xbe\xdf\x08\x42\x3c\x1c\xe5\xcc\xbf\xc7\x05\xdc\xd0\xf4\x2a\x54\x2b\x98\xc4\xec\x2b\xe2\x13\xd2\x8a\x90\xa0\x08\x69\xc7\x1f\xa9\x6e\x2c\x97\xb3\xf0\x1f\x67\xa7\x4f\x55\x3b\xa0\x8b\x8b\x4b\xe5\xc3\x7b\x9c\x2e\x19\xa3\xeb\xef\xf1\xd0\x78\x5e\xe1\xd3\xb8\xfe\x19\x64\x7e\x08\xe9\xcf\x29\x05\x97\xbf\x09\xfc\xcb\x39\xad\x98\x36\x37\xa9\xf6\xcb\xb9\x0c\xc2\x0d\xdc\xfe\x77\xf1\xc0\x50\xd3\xd8\x8d\xa2\x34\xae\xf0\x56\xe0\xcd\x9d\x5e\x9a\x56\xcc\x35\x68\x06\x60\x64\xbc\xc3\xbb\x8e\xf0\x12\xcb\x07\x8b\xbd\xfc\x1e\xf6\x39\xac\x27\xa7\x9b\x08\x30\x79\x61\x92\x9e\xc9\x7a\x14\xa3\x20\xf8\x07\x32\x00\x2b\xdc\x7d\xad\xa1\x79\x5a\xc5\x35\x43\x93\xa0\xc7\xc5\x96\xfa\x53\xdd\xf8\xf3\xa8\xd4\xad\xa9\xaf\x80\x5c\x9c\xfa\x89\x3a\xb4\xa3\x28\x1f\x0f\x6d\x86\x05\x19\x71\x13\x87\x01\x7c\xd2\xa9\xd3\xf1\xf7\x83\x48\x11\x75\x27\x0e\x40\xb3\x4d\xee\xdc\xdb\x97\x95\x7b\xfd\x38\x4b\x73\xb2\xa3\x4b\x93\x19\xda\xbf\xa5\xfe\xa0\x40\x66\xa7\x69\x4c\xf0\x2b\xae\xf5\x60\xca\x05\xaa\x97\x99\xb5\xa4\xa5\x29\xe5\xf4\x58\xa4\xfa\x51\xff\x48\xbb\x1b\x79\x99\x71\x27\x7d\xa0\x54\xab\x1a\x74\x57\xd3\x6c\xc5\x82\x7f\x21\x7a\xa8\x5a\x1c\xb5\x66\xfd\xbe\xb0\xd0\x8e\x92\x95\x96\x02\xe9\x6f\xea\x95\x5e\xd5\xda\x0d\x05\xf8\x0c\xae\x91\xfa\x5e\x55\xb0\xaa\xbc\x33\x0e\xb2\xe8\x61\x88\x09\x1c\x0d\x71\xd1\x7a\xdb\x09\xe8\xec\x61\x42\x56\x0c\xb9\x30\x03\x3e\xc0\xdc\x40\x25\xf5\x0d\x35\x52\x40\xa5\x13\xd9\xab\x7f\x0d\xe3\x6f\xf1\x5e\x56\x80\xa4\xed\x06\xc1\x8f\xc5\xf6\x38\xb6\x49\x54\x4c\x7a\x55\xe5\x54\xfa\x98\x48\xa7\x0a\xe0\x6e\x1c\x9b\xa4\x98\xd5\x9c\x8a\x63\xca\xe0\xaf\xa5\x24\x3f\x58\x9d\x04\x20\x70\x4f\xf3\x2d\x07\x57\x94\x4c\x9c\xc4\x09\x20\x46\x8f\x76\x14\xf7\x4e\x69\xf0\x7c\x06\x5f\x22\x91\x66\x03\x29\x39\x2f\x4c\xe6\x30\x00\x82\xec\x55\x02\x20\x9b\x81\x77\x94\x4b\xc2\x74\x14\x15\x26\x81\x7f\x27\xdb\xd3\x07\x9e\x8a\xf7\xda\xd4\xa3\xc2\xc6\x65\xde\xb7\x66\xbb\x5d\xd2\x97\x10\x4a\xfe\x1d\x45\xbd\xbf\xd3\x54\x1f\x37\x85\xc7\x69\xaa\x8d\x4c\x99\xb2\x9f\x55\x26\x30\x7d\xb3\x9a\x66\x51\xc1\x7c\x2a\xdc\xf2\xd1\xa9\xd2\x35\x39\xaa\x87\x5b\x94\xc5\x51\x62\xf3\xbd\x3e\xc7\xb8\x82\xf1\x20\xbe\x76\x33\xde\x32\x1d\x40\x1a\xe9\xb8\x7b\x74\x0a\x13\xc5\x05\x54\x44\xd7\xc5\x21\x6a\xa0\xbc\x2c\xbc\x1c\xcd\x24\x1b\xb3\x55\xa5\xe0\x23\xdf\xc5\xef\xf0\x89\xf3\x17\xcb\x87\xeb\x33\x0a\x0a\xc4\x7a\xee\xc8\x51\xbe\x4c\x2b\x14\x4b\xd4\x2b\xd0\xcd\x4a\x14\xc7\xb3\xbe\x57\xfc\x1e\x2d\xde\x18\x05\x1b\x58\x55\x31\xae\xde\x99\xfa\x88\x72\xb3\x91\xb7\xca\x02\x22\x55\xc7\xdd\x1f\x06\xca\x71\xf7\x87\xaa\x11\x4d\x8d\x6d\x82\x1b\x78\x8d\xbd\xd3\x1c\x21\xf3\x59\x2d\x2e\x5c\x58\x58\xc6\xe7\xa2\xd0\x83\x4e\xc4\x45\xd8\xc3\xe8\xfe\xa4\x01\x39\xb0\xd4\x5e\x23\x40\x6b\x5e\xe1\xc1\xdf\xd1\x3c\xf8\x3b\x4d\x2b\xd7\x4a\x92\xae\x31\xff\x53\xaa\xb3\xf4\xab\x52\xfb\x6c\xb0\x1d\x36\x49\x34\x32\x31\xd2\x5a\x31\xa2\xa1\xb7\xe2\x1c\x5c\xdc\x0c\xdf\xdb\xf1\x3c\x90\xad\x06\x53\x84\xfd\xed\x98\x39\xa5\xee\x25\x3a\x77\xdc\x7b\xca\xdb\xef\xa3\x9a\xc9\x08\x29\x0f\xd9\x70\x98\x80\x1b\xdf\x52\x32\x12\x0a\x69\xa7\x1d\x64\x4c\x01\xda\x0d\x12\x8c\x57\x11\x7a\x3a\x83\xa6\x03\x8b\x0e\x7a\xad\x2c\x3f\x6c\x6c\x0f\xf3\xcc\x01\x6f\x0b\xd5\x21\x3e\x56\x81\x54\x37\x1a\x0c\x6c\x46\x6e\xdb\xf8\xfe\xb7\xe9\x4e\xb0\x91\xfe\x39\x05\xa2\x08\xb0\xee\xa3\xe0\xcd\x27\xda\xff\xf2\xf5\x5a\x6b\x73\xff\xa1\xf6\xd8\x14\xe2\xc3\xa2\xd8\x3c\x0a\x39\xec\x88\xb4\xff\x4e\x99\x01\xd9\xc3\xe3\x0c\xce\xf3\xac\x4e\xc2\xf6\x05\x4a\x61\xfb\x76\x8d\x90\xb7\xb4\xbc\xd4\x4e\xc7\xc4\x93\xe7\x01\x21\xdb\x51\xb9\x36\xc9\x36\xa5\x6b\xd2\x99\x5d\x7b\xa8\xe5\xbc\x52\xb8\x34\x84\x2c\xf9\x76\xd5\xc7\x4a\x51\xee\x7e\x6f\xaa\xf0\x37\x17\x95\xbc\xc0\x4d\x5a\x42\x70\x97\x5c\x3c\xf6\x4e\x29\xb2\x3e\xdf\xa7\x15\x04\x91\xe7\xad\xe0\x29\x0d\xde\x23\x3b\x6d\x08\xce\x39\xae\x30\xc2\x76\x29\x35\xed\x7c\xbe\x9f\x6b\xaf\x46\x69\x4c\x78\x2d\x35\xf5\x5b\xca\xe7\xa6\x8a\x53\x31\x21\xfe\x12\x31\xdd\x7d\xfa\x4b\x3e\x76\x25\x9b\x74\x25\x36\xc3\x74\x64\x18\x5b\x8c\x35\x14\x3d\x0b\x04\x89\xb7\xf0\x02\xc5\xcf\xc5\x0f\xb6\x71\x9a\xac\x3b\x7f\x6e\x3c\x9e\x8f\x10\x29\xf3\x89\xea\x7a\xae\xda\x81\x2d\x8c\xa8\xc3\x33\x42\x58\x41\x7b\xb6\x14\x14\x3b\xb3\xbd\x49\x68\x29\x4f\x47\x32\x72\x8e\x57\x21\xd4\xef\x61\x9e\x81\xb6\x02\x33\x72\xf0\x0e\xee\xa3\x9c\xc2\x27\x2a\x2e\xfc\xf3\xa9\xaa\xa4\xf1\x56\x82\xcf\xbf\xa5\xb2\xef\x34\xee\xd9\xbc\x98\xa5\xef\x40\xa7\x03\xf9\x98\xcb\xa1\xca\x5f\xe2\xff\xd0\xe3\x63\x33\xa8\xe8\xf6\xa5\xc9\xa0\xdc\x1d\x17\x16\x74\xc1\xc8\xcb\xb7\x3e\xa5\x38\x5c\x79\x18\xd9\xa4\x88\xfa\x51\xd8\x52\x35\xa9\xe3\x6a\x5d\x3f\xae\xbe\x3b\x34\xe3\x32\xf9\x06\xeb\x4b\xcc\x23\x95\x90\xc1\x19\x25\xfc\x78\xaa\x46\x36\x98\x9f\x6f\x8f\xec\x28\xcd\xca\xa0\x1b\x45\x37\xb4\x4c\xee\x51\xd5\x8c\x3d\x79\x94\x73\xc8\x2d\x35\x3b\xbb\x59\x6a\x7a\xa1\xc9\x0b\xee\x20\x0b\x14\x51\xd5\xce\xce\x37\x25\x52\x45\x66\xc2\x15\x0a\x32\xb5\x70\xb2\x88\x9f\xf9\x12\x49\xbf\x4f\x06\xe2\xb0\x8b\x43\x84\xf7\x60\xc7\xd7\x59\x18\xe5\x8f\xad\xe4\x6e\x23\x8d\xa2\x67\xc4\x2b\xbe\x5c\x9e\xc4\xc7\xda\x57\x5f\xef\x38\x9e\x0d\xb9\xb3\x46\x55\x90\xd3\x59\x05\x72\x3a\xab\x41\xda\x71\xc8\x36\x7c\x32\xb1\x15\x9a\x5b\x03\xc0\xd3\x35\x0c\x57\x16\xc7\xe1\xe1\x8a\x50\xf6\x84\x26\x63\x72\xef\x0c\x93\x0c\xf7\xe8\xea\xe7\xae\xa3\xba\x39\x55\x4a\x80\x17\xb4\x04\xf2\x09\x85\xf8\x1b\x97\xeb\xe5\x88\x64\xef\xcb\x15\x06\x29\xd8\x6d\xc5\x11\xfb\xcb\xa9\xf7\xd9\xfe\xa8\x89\x51\x10\xda\xc4\x2a\xed\xfb\x63\x81\xe7\x74\xbf\xa5\xcb\xbb\xdf\xae\xc5\xc7\x65\x70\x11\x9a\xa4\x17\xf5\x44\x67\x42\xc2\x98\x96\xb3\x51\x6a\x76\xdd\x19\x95\x57\x6d\xb4\x35\x0c\x0f\x23\x3e\xa9\xf1\xe0\xca\xcc\xc3\x2d\x4e\x1a\x69\x0d\x1c\xc0\xdb\x53\xd5\xa7\xbb\xa2\xec\x0d\x63\x53\x44\x49\xcb\xcf\x5f\x76\x6e\x90\x6a\x67\xbd\x4d\x7d\xb0\x9d\x4d\xa0\xbc\x01\x50\xc4\x15\xec\x7b\x78\x6f\x57\x34\xa4\xe7\x7f\x6c\xc8\xc1\x96\x48\xb2\x25\x46\xb0\x27\x54\x48\x0f\x69\xdc\xc0\x65\xa2\xbf\x7b\x42\x4d\xea\xb1\xed\xf5\x62\x21\x30\x89\x86\x51\xcb\xc9\xf6\x7d\x4b\x2d\xe8\x45\x3a\x09\x87\x4c\xff\x61\x55\x5b\x54\x99\x45\xe2\x56\x99\xf8\x8f\x4d\x16\x62\x23\x45\x58\x73\x0e\x41\x1f\x9f\xd4\xe2\x9a\xf9\xf9\xb6\x35\x79\xa1\xc2\x86\x13\x81\xe2\x7e\x9f\xa8\xc5\x7d\x44\x8c\x32\x61\x68\xc7\xbc\xa8\x3b\xa3\xbb\x0b\x81\x86\x12\x37\x50\xdc\xc7\x69\x94\xa7\xde\x52\xdc\xd9\xc9\x39\xa1\xd3\xef\xe8\x35\xcf\xc6\xd1\x88\xfb\x09\x8b\x2e\xe3\xf6\xe1\x7f\x91\x45\x71\x1c\xa5\xc9\x1c\x3d\x77\xde\x1f\x74\xa3\xf1\x41\x2a\x09\xa0\x22\x04\x34\xa6\xcb\xa9\x3f\xff\x82\x13\xa0\x68\x58\xbb\x5e\x36\x89\xc5\x03\xa9\xa8\x68\x0b\xc8\xa6\x16\x8b\x3c\x77\xb0\x4c\xff\xc7\x69\x2e\x25\x20\x44\x55\x44\xae\xdf\x66\x86\xaf\x84\x86\x7e\xe1\x48\x12\x43\x2e\x12\xf8\xda\x0f\xb9\x9c\xa2\x6c\x57\x3d\xe4\xd0\xb3\x69\xce\xeb\xc1\x34\xdb\x51\x66\x5f\xd1\x78\xa6\x35\x3f\xef\x3f\xe2\x78\x16\xf7\x83\x8a\xe4\x9d\x24\x32\x83\x68\x34\x8a\x42\x36\x48\x00\x27\xea\x35\xfa\x14\x62\xa2\x6b\x14\x65\x0a\xb9\x53\x49\x4d\x82\xd2\x41\xf1\xa8\xd3\x8a\x3c\xb0\xe8\x94\x1f\xa5\xac\x9f\x26\x36\xea\x99\x56\xeb\xd7\xa4\x26\x77\x4e\xfb\xf0\xd5\xcb\xb3\x65\x78\x6d\xd8\x25\xd5\xa1\x7b\x8e\xe9\x46\x90\x7a\x74\xbf\x7e\xf0\x00\xcc\xe5\xe5\xfa\xca\x8f\x48\x63\xa1\xe5\xb4\x5f\xff\x5e\x47\xd7\xf7\x9c\x39\x4c\x3e\x61\x88\x97\x76\x64\x94\x86\x41\x13\x0c\x14\xc2\x02\x34\xf9\x58\x1f\xa0\x2a\x16\xe0\x76\x33\x31\xb5\xe4\x0a\x68\x53\x90\xe6\x4b\x14\x7d\x93\x17\x73\xde\x72\xe0\x9a\x22\xd3\x5d\x9b\xaa\xbd\xec\x26\x7d\x5e\x6a\x17\xe5\xdd\x31\xfd\x56\xc5\xfe\x3d\x3b\x4e\xf3\xa8\xd0\x5e\x57\xdc\xa1\xe0\x93\x26\x41\xa4\xdc\xc6\x7e\xdf\x14\x3d\x37\xbf\xc7\x5f\x6b\x32\xf9\xb0\x87\x0d\xf4\x49\x17\x2b\xd1\x22\x26\xdc\x3b\x8a\xfc\x74\xb9\xd2\xb7\x36\x59\xf1\x84\x77\x81\xbf\x1e\xf8\x36\xc7\x7d\xe5\x24\x7f\x66\xaa\x10\x5b\xdf\x0f\x94\x12\xc4\xad\x40\x37\xfb\x3f\xc4\x0e\x85\x19\xf1\xa7\x08\xce\x50\x82\xd8\x45\x7d\x38\x8c\x84\x59\x12\xf1\xc6\xe6\xf9\x6a\xe0\x99\xd8\x4f\x01\x28\xcb\x1f\xd8\xf0\x73\x8b\x91\xb9\xa8\x11\xbc\x41\x09\xc2\xf6\xe5\x32\x9c\xdf\x66\x38\xaf\xd3\xe7\x2d\x6f\x1f\x0f\xe9\x75\x17\x4b\x8f\x26\xc2\x2f\xf0\xfd\x62\x25\x04\x54\xd7\xeb\x3c\xb0\x28\x12\x6f\x2d\x9f\x77\xfe\x85\x6e\x62\xfc\x85\xab\x3a\x84\x59\x94\x0c\x24\xc7\x16\xa6\x99\x32\x51\x3c\xe5\xfd\x5d\xd2\xd8\x20\x04\x65\x5d\x76\xba\x06\xd1\x68\xff\x84\x6f\x87\x4d\x92\x19\x9a\xc4\xfc\xea\x94\x1f\xca\xeb\x81\xe7\x99\x9c\x6e\xde\xff\x53\x13\x47\x2e\x7b\x11\xbb\x6b\xba\x72\xf1\xc1\x6e\x12\x1f\x8f\x8a\x72\x13\x9b\x51\x08\xff\x3b\x15\xd5\x70\xba\x21\xe9\x88\x2a\x97\x95\xd0\x26\x26\x8b\x52\x45\xf4\x65\xba\x89\x4c\x0a\xdf\xe5\x0b\xe3\x49\x77\x56\xa9\xac\x41\x19\x02\x51\x1b\xc8\x7d\xe8\x65\xbc\x81\x2f\x60\x01\x05\xd5\xe8\xcc\x52\x9a\x14\x0f\x28\x1a\xff\x39\xca\x29\xd1\x07\x87\xcd\xb0\x23\x5e\x96\xa3\x02\x2b\xda\x6f\xd1\xd8\x07\x1e\xf6\x0f\xe8\x01\xf2\x07\xb4\x39\xcd\x89\xda\x94\x82\x26\xfb\x2a\xc0\xf4\x08\xec\xbf\xa4\xb0\x28\x5f\x6a\x32\xc1\x2a\x86\x59\x3a\x19\x0c\x15\xcc\xef\x96\x52\xbb\xbd\x55\xab\xb7\x1c\x7a\x8e\x89\x0b\x05\x7e\x06\x9b\xc7\x96\x12\xb8\xdb\x6a\xf4\xae\xcf\xcc\x3a\x2c\x8f\x97\x38\x71\x7c\x73\xea\x93\xc8\x37\x15\xfe\xa1\x1c\xc6\x65\x8a\xf0\x00\xbd\x59\xbc\xc0\xaf\xa0\x64\xc1\x34\x3e\xba\x3e\x47\xe9\xf3\x26\xca\xef\xe8\xa2\x2a\x8c\xe7\x65\x29\x51\x83\xe1\x2b\xaa\x8d\xfb\xb2\x09\x57\x00\xd6\x60\x25\x0f\xfc\x21\x67\xe5\x41\x25\x43\x5f\x58\x70\x72\x1f\x1f\xc7\x65\x1a\x4d\x92\x28\x8c\xc6\x06\x55\x37\x2c\x16\x97\xa7\x33\x07\xff\xeb\x2f\x78\xaf\x51\xaf\x3e\xfe\x57\xf4\x9d\xa2\xb8\xe9\x97\x5f\xbb\x6a\xc5\x94\xfb\x45\xcd\xb5\x3e\x28\x27\x18\x29\x0e\x1a\x5a\xa6\x1f\x22\x60\xe6\x53\x0e\x60\xa8\x54\x75\xe8\x46\xe0\x5b\xd9\x37\xd4\xf6\x37\x89\x2b\xba\xa4\xa0\x5e\xf3\xf1\x46\x7d\xd1\x5e\x6a\x0f\xd2\x14\xad\x65\x4c\x70\xd6\x37\x00\x84\x15\x82\x21\xd2\x38\xf2\x15\xa8\xec\xe5\x6c\x56\xbd\x7b\x60\x8e\xf9\x38\xf0\xcd\xdb\xb3\x3a\x5b\x38\x5b\x2b\x45\x3a\x1f\xec\x74\x92\xf4\x66\x3c\x25\xe9\x88\x72\xf6\xc5\x5b\x13\xee\x57\x93\xf4\x59\x94\x85\x93\x11\x35\xd9\x5a\x3e\x62\x42\xae\x2c\xb6\x95\x4f\xa8\xe2\x47\x36\x4e\x33\x53\x90\x2f\xe2\xb3\x02\xfc\x0b\x2a\x0a\xad\x15\x4d\xdd\x72\x76\x63\xcf\xf9\x11\x96\x76\xc4\xfd\xac\xfa\x28\x42\xae\x1e\x79\xf2\x23\x25\x65\x8f\x67\x8f\xdc\xe4\xfb\x54\xad\x95\x46\xe3\xe3\xca\x3f\xa9\x30\xe3\x49\x5c\xb4\x14\x33\x0a\x41\x87\xb0\x7c\x1a\x81\xb3\x7d\xab\xcc\x02\x6e\x2b\xb3\x80\xdb\x6a\x28\xfc\x82\xc1\x80\x41\x89\xed\x56\xe0\x61\x02\xb7\x1a\x33\x95\xc2\xeb\x5e\x6b\xc3\x7a\x11\x4b\x79\xcc\x81\x32\xc2\x49\x96\xb9\xe0\x00\xeb\x2c\x58\x4c\x7c\xbc\xe1\x0d\x49\x47\x61\xca\x39\x9a\xd0\xff\xe8\xfb\x65\x78\x29\xd2\xee\xd5\xda\x9d\x3e\xbf\xaf\xdc\xb1\x52\x6a\xea\x61\x95\xbe\x1b\x28\x25\x91\xef\x28\x57\xd6\x2d\x05\x38\xf9\xd3\x46\x71\xf7\x95\x28\x76\xaa\x7a\x4e\xa3\xb8\x7c\xe6\x7c\xd2\xc8\x85\x30\x45\x41\xad\x1e\x9e\x52\xb8\x88\x7f\x1a\xf8\x0b\xfa\xa7\xea\x71\x5b\x5b\xec\xd5\xe9\xe8\x07\xca\xee\xff\x31\x52\xa8\x72\x76\x6f\x65\x24\xc3\x65\xc0\xa9\x67\x96\x5d\xd3\x62\x57\x2d\x34\x73\x10\x14\x7d\x40\x05\x27\x71\xfd\xf1\x68\x01\x6f\xee\x36\xa3\xd0\x6c\x15\x99\xb3\xbf\x54\x11\xec\x69\xb5\x97\x15\x59\x34\x1a\xd9\xde\x2c\x2d\x3e\x8e\xb7\x51\x2e\x3e\xc2\xdb\x28\xef\x12\x51\xcd\x16\xed\x59\x7c\xac\xee\x38\xcb\xcc\x8c\x42\x1e\x5f\xe3\x40\x0c\x49\x1e\x66\x31\xe0\xcd\x27\x15\x38\xa1\x9f\x66\x9f\xd1\x5a\x26\x47\xb0\xe4\x61\xcf\x67\x0d\x19\xc7\xda\x50\x4a\xa6\xe5\xe5\x20\x16\x7b\x17\xf5\x3c\x21\x61\xd0\x1d\x60\xcb\xf8\xef\xa6\x4a\x80\xe1\x07\x1a\xdd\xf0\x01\x61\xa5\xf8\xaf\x18\x73\x2c\xb3\x97\x86\x01\xfe\x8b\x9d\x5e\x5c\xed\xe5\x05\x11\xc7\xbc\x13\x28\x41\xea\xcb\x08\x2b\x55\x49\xe4\x59\xde\xa6\xb6\xd0\x05\x47\x1d\xf9\x1d\x42\x4d\x22\x20\xbf\x0e\xb8\xaf\xc0\x53\xcb\xd7\xa9\xb3\x31\x74\xda\x6f\x53\xf2\x89\x81\xf1\x3e\x81\xad\xc4\xc5\x91\xba\xc6\x7c\xf7\xb4\x5f\x62\x1f\xbb\xae\xca\x94\x26\x8e\x6c\x92\xcf\x96\x3f\x89\x9a\xfc\x45\x5d\xa0\xbf\xa8\x58\x6f\xbc\x2d\xca\x5f\xed\x5c\x0a\x9e\x7e\xba\xdd\x4b\x93\x89\x24\x2a\x78\xfe\x67\xb5\x9a\xdd\x59\xd5\x68\x1b\x46\xf9\xd8\x24\x51\xc8\xb3\x9c\x6f\x04\xef\x01\xe1\xd4\x2e\x6d\x38\x71\x44\xc1\x3e\x0b\x9b\x98\x30\x22\xa5\x69\x97\xd5\x01\xc2\x29\x18\x72\x05\xa3\x2c\x63\xca\x5c\x34\xca\xb1\x8a\x9d\x56\xb0\x80\xd3\xda\xd3\x3e\x0d\x4d\x4c\xdf\x89\xa8\xa2\xd5\xf1\x11\x46\xcb\xad\x4d\xfd\x28\xb6\x39\x42\x39\x31\xf8\x68\x3d\xbf\x8f\xd5\xe1\x50\xd0\xe1\x40\xc3\x55\x97\x1c\x2e\xe0\xcd\xa9\xb2\x0e\xfc\x28\x50\x44\xfb\x8f\x6a\x15\x80\xf9\xfd\xed\x7e\x1a\xc7\xe9\x9a\xb3\x85\x61\x25\xf4\x40\xf1\xab\x54\xa2\xf4\x9a\x4a\xdd\xa2\x24\x2a\x22\x74\xa8\x9e\x75\x15\x5c\x7a\x02\x28\x4a\x02\x56\xc5\xff\x11\x78\xc6\xe3\xcf\x9d\x44\xbb\x5b\x84\x7a\x45\xbc\x5a\xe8\xbf\x8a\x1b\x57\xa5\xf9\xae\xf5\xd6\xb1\xaa\x37\xd9\x87\x7a\xb2\x5d\x37\xcd\x10\xde\x4b\x06\xd6\x72\x62\xfe\xb7\x5c\x8f\xb3\xb0\xc9\x6c\x39\xe9\x50\xc1\x7b\x8c\x8a\x9a\x8e\xc8\xeb\x65\x67\x67\x48\x40\x50\xc4\xfb\xea\x16\xfc\xae\x37\x16\x49\x37\x07\x75\xad\x77\x31\xc6\xf8\xa4\x22\x51\x12\xda\x71\x11\xad\x92\x27\x87\xfb\x4d\xf0\x57\xf8\xb8\xc9\x96\xb8\xfc\x9c\x89\x63\xfe\x0d\x27\xb1\xa8\x1d\x8f\x75\xd6\x1a\x16\x29\x42\x20\x11\x04\x29\xa7\x2e\x46\x07\xc6\x1b\x5a\xcb\x47\x2b\x5c\xb8\xca\x37\x24\xa1\xfd\x4c\x39\x48\x71\xeb\xdb\x34\xdf\x91\x8b\x21\x7a\xc1\xaf\xee\xa1\x8d\x55\x54\x3d\x09\xfc\x8d\x6f\xbe\xaf\x25\x23\x08\x49\x75\x70\x7b\x43\x23\x4a\xee\x53\xf0\x82\x61\xf9\xc0\x06\xad\x4b\x12\x47\xa9\xe0\xe5\x14\xad\x39\xd2\xd7\xa0\x45\x0a\x33\xe5\xea\x54\xa5\x51\x20\x83\x62\x9b\xfa\x0a\xaa\x8b\x8c\xcc\x0e\xd4\x5a\xb2\x9b\x58\x2c\xac\x09\x4e\x7b\x06\x7a\x09\xbb\x36\x30\xfc\x44\xce\x87\x4c\xbb\xf0\x67\xf7\xb0\x7c\xe3\x19\xc0\x1c\x00\xf7\xfd\x40\x47\xd9\x21\xec\x65\x7d\x09\xe6\x34\x60\x91\x46\x05\xe4\xd4\xf4\x63\xa5\x08\xb2\x49\x5e\x94\x01\x5f\x4b\xad\x89\xb8\xa9\x8f\x5b\xfa\xca\x61\x30\x4c\xc7\x32\xd0\x00\xb3\xdd\xc6\x2d\xf2\xc9\xf4\xd3\x55\x84\x56\x19\x42\x97\x37\xf7\x50\xf9\xb0\x25\x49\x53\xcd\xae\xbf\xc2\x8e\x86\x27\x3f\xd7\x51\x3d\xb1\xbf\xd2\xbe\xd2\xf4\x7c\x99\x3e\x4a\x5b\x1d\xde\xf8\x25\xac\x40\x28\x3b\xec\xdd\xa8\xa4\xee\x07\x3c\x74\x48\x66\xa6\x1d\x0d\x4d\x56\xf0\x52\x8c\x48\xf5\x64\x05\x25\xab\x0a\x08\x5b\xae\x34\xd5\x9d\x64\x03\x4b\xa5\x57\xac\x4f\xd8\xb1\xa0\x49\x80\xad\xf4\x23\xd5\x7a\x3a\xaf\x02\x80\xa2\xb0\x0f\x79\x1a\x12\xd3\xfb\x11\x27\xb0\x9d\xba\x20\xb8\xbd\xc6\xfc\xa6\xb2\xfa\x7e\x84\xc2\x22\xd7\x5b\x2d\x9f\x9a\xe0\xb4\xcb\x1f\xc4\x40\x64\xda\x93\xd2\xbf\x59\x62\x88\xe9\xa3\xaa\xe9\x98\x17\x99\xb5\xce\x1e\xd7\x19\x06\x96\x7f\x2c\x86\x81\x1f\xa7\x4a\xd2\xb5\x65\x92\x3a\xe3\xf1\x96\x7b\x3b\xbe\x4e\x73\x4d\x0b\x30\x6d\x6b\x4d\xa7\x24\xb4\xd9\x3a\xff\x1e\xe6\xd2\xef\xea\x32\xe6\xef\x2a\x1b\x42\xd2\xa5\x60\x24\x0d\xc6\xd1\x8f\x68\xc9\xe4\x63\x55\x7a\x89\x42\xa6\x1b\x38\x72\x4c\xf9\x48\xf9\x04\x43\xc9\xe9\xf9\x39\x4c\xdb\x85\xda\xa6\x53\x8e\x4a\x9b\x0c\xcc\x40\x5a\x08\x18\x29\x0c\x3f\xe7\x93\x26\xcc\x74\x3e\x19\x13\x84\xa5\x7c\xab\x58\xb4\xbe\x4d\xbb\x2c\x1f\xd7\x16\xce\xe5\x7d\x64\x86\x25\xbd\x4a\x89\x34\xdf\x55\x40\xeb\x77\x03\x5d\x97\x9f\x24\x3d\x92\x44\x5e\xf6\x15\x1a\x05\xbf\xaa\xe5\x00\xcb\xfb\xc8\x0e\x84\xfa\x2f\xe0\x36\x7e\x13\xb3\x1f\x49\xe9\x3d\xa5\xcf\x74\xa7\xa9\x5c\x1f\xc6\xd6\x24\xba\xd5\x38\xf5\xa0\xab\x3a\x25\x96\xe0\x87\x51\x3f\x16\x44\x92\xe0\xe1\x95\xbf\xd4\x77\x6a\x1f\xfa\x1c\x54\xf9\x93\xe8\x15\x94\x50\xa4\x8a\xed\xc1\xca\xe7\x54\x22\x3f\x32\xa1\xc9\xa2\x96\xbf\xec\xeb\x81\xd2\x6d\xbe\xae\x04\x12\x8a\x2c\x9a\x8c\xc6\xc3\x96\x2f\x42\x1e\xa7\xbb\xe5\xe3\x46\x26\x52\x3e\x09\x87\x24\x9f\x4b\xb2\xbd\x3f\xfd\x29\xf4\x17\x50\xe7\x7d\x15\x51\x24\x88\x3b\x17\xf1\x14\x85\x2f\x5e\xbe\x02\x87\x03\xd5\x9e\x0b\x0d\x8f\x34\x36\x52\x60\x42\x04\x7e\x5f\xd1\xa0\xef\x6b\x9d\xe3\xb4\x67\xf3\x22\x5e\x9f\xf3\x01\xee\x79\xda\x92\xf4\x14\x77\x9e\x11\xcb\xfb\x7c\x49\xfc\xc0\x22\x43\xf3\xbe\xae\x9a\xcd\xe3\xd8\xac\xaf\x91\xca\x7f\xae\xdc\x89\x76\x6f\xa8\x2e\xa1\x36\x59\x08\xa3\x82\x31\x14\xf3\xfb\x9d\xdf\x11\x3d\x0d\x41\xf2\x7b\x64\x55\xcf\xac\x25\x95\xce\x7c\x4b\xf9\xaa\xfa\xa6\xd3\x20\x33\x79\x1e\x5b\x8e\x90\x98\x09\xac\x70\xff\x57\x1b\x28\xfd\xed\xcc\xe6\x32\x9f\x9c\x90\xa1\x5b\x57\xcf\x37\xa9\x95\xb6\x07\x13\x93\x99\xa4\xb0\xb2\x0d\x39\xc9\xb1\xf2\xc5\xf0\x89\x12\x2d\x5b\xb5\x89\x28\x6e\x48\x2e\x4b\xbb\x8c\x64\xb9\x4e\xce\x28\xa5\xd2\x20\x5a\x62\xc2\x74\x75\x6d\xde\x2f\x3f\xd5\xf1\x9c\x3c\xa4\xd3\xc8\xea\xee\x53\xbe\x21\x9a\x1c\x4d\xb6\xd2\x51\x4c\x72\xfe\x33\xbe\x82\x7a\x53\x39\x4b\x9d\xd6\x06\x2f\x27\x55\xf8\x1f\x25\xa1\x4d\x8a\x68\xd5\x52\x6f\x4a\x9a\xc3\x74\xe9\xa8\xcc\xdd\xc7\x3e\x8a\x87\x7b\x59\x85\xc5\x99\x0d\xd3\x55\x9b\xed\xf1\x94\xdd\x9b\x8a\xb2\xc2\x4d\x35\xc9\x21\x69\x55\x42\x15\xb9\x05\x23\x66\xa4\xee\xff\xab\x0a\xb2\x1e\xd8\x78\x5c\x21\xc9\xd3\x22\x0d\x53\x0e\xba\x71\x0f\x7f\x18\x28\xba\xde\x4d\x05\x4e\xe5\xf5\x59\xf0\xf0\xf2\xa8\x7b\xf4\xa4\x61\xfe\x82\x56\x29\x34\x31\x45\x85\xb8\xe2\x4c\xd9\x54\xd4\x4a\x93\x55\x9b\x15\x91\xb4\x50\x11\x29\xb3\xf2\x20\x9f\x4c\x9f\xac\x06\x22\x9f\x7f\xa1\xbd\xb8\x38\xab\xbd\xf6\x14\xac\xe7\x0a\xfd\x3c\x1f\x4f\xfd\x04\x3b\x59\x89\x48\xf3\x1c\x75\x74\xd6\xf9\x55\xe5\xec\xd7\xdc\xad\x8d\xcc\x68\x94\x16\x43\xb2\x56\xe3\xc2\xe0\xd4\x03\x21\xae\xab\xfa\xf4\x51\x27\xc0\xd7\x7d\x66\xf5\x19\xe5\xc1\xcd\x7d\x4a\xd1\x51\xfe\xb8\x6d\x39\x34\x49\x91\x72\x8d\x59\x84\x00\x5b\x5e\x14\xb0\x89\xae\x30\x8e\x4d\x04\xdd\x0a\xac\x2b\x60\xb2\xf0\xb1\xf2\x2d\x8a\xed\x5a\x94\xcf\x78\x58\xc3\x2d\x65\x52\xcd\x5c\x41\xb1\x29\xab\x50\x97\xbb\x30\xce\xc1\xf6\xf1\x3a\x2d\x66\x7c\x5c\xdb\x4b\x5f\x58\x6a\x5b\x93\xc5\x91\x78\x99\x70\xf0\x14\xf8\x85\x4e\xdb\xdd\x8c\xa2\x3c\xb7\x50\x92\xc2\x88\xe3\xc6\x2c\x9f\xa8\x90\x6b\x35\x0a\x67\x94\xc9\xcc\x79\x15\x28\x01\xe6\x8e\x82\xd8\xb6\xba\xdb\x71\x64\x92\x74\xd6\x3b\x2b\x31\xac\x15\xb9\x3c\x8a\x87\xa8\x4b\x7c\x59\x71\x26\x4e\xd5\xa6\x7a\x19\x53\xa4\xdd\x38\x72\xbd\x26\x84\xab\xc0\x76\xf0\xb1\xe3\x3d\x0c\xd3\x49\x6e\x87\x69\xdc\xdb\xe3\x03\x5b\x60\xe4\x50\xc5\xfa\xb9\x8e\xb2\x0e\xe3\x47\x2e\xe6\x91\x1e\xf2\xf0\xf0\x86\xc2\x9c\x6e\x56\x30\xa9\x79\x61\x92\x57\x0c\x49\x3b\x21\x11\xb8\xa4\xa1\xdb\x97\xb4\x04\x65\x9a\x98\x98\xe5\xa6\x45\xb9\xad\xe5\x54\xa0\x2e\x29\x9a\xe3\x80\x88\xc4\x74\xc5\xd8\xff\x90\x88\x81\xa1\x77\x97\x1e\x14\x62\x90\xb7\xb0\x4c\xa1\x03\xf1\x43\x7a\xa7\x7c\x5c\x59\xa4\x95\x86\xc1\x7f\xf5\x8f\x70\x01\x92\xb4\x94\xbb\x12\x1f\x2b\x37\xfd\x71\x66\x57\x6d\x52\xec\x51\x42\xc0\xea\x52\x77\x77\x94\xe8\xd6\x99\xa9\x62\xef\x9d\x41\xa9\x87\xd5\x19\xa6\x7e\xc9\xb8\x54\x99\xdf\x6b\x66\xfd\x27\xcb\xf1\x8b\x04\x60\x37\xa9\x1a\xe3\x0b\x4e\xa0\x6e\x25\x12\xc7\x3e\x3a\xbb\xa3\x09\x26\xcc\x5a\x72\xfb\xf7\xfc\x3c\xaf\x9f\xff\x33\x25\xd7\x88\xef\x5f\x07\x11\x1e\x45\x89\x73\x08\x38\x99\x92\x83\x55\x14\x8d\x94\x2f\xd2\x55\x0a\xc9\xac\xcc\x84\x90\x37\x7c\xa2\xe3\x59\x5b\xac\xd2\x81\xc0\xeb\xff\x41\x05\x0e\x93\x99\x6b\x2e\x58\xc4\x66\x36\xb4\x9e\xe5\x15\x60\xa1\xf9\x62\x28\xb0\xc0\xe8\xfe\x88\x72\x2c\x08\x2d\x3d\x40\xd2\x21\x72\x91\xc8\x3c\x5c\xa7\xb1\x7c\xb5\x62\xe6\xf1\xa4\x06\x66\x26\x36\x2c\x52\xd8\xdb\xbb\x52\x1e\x8d\x7e\x29\xeb\x29\x4e\x24\x90\xf6\x7b\x94\x65\xce\x13\xe4\x56\x87\xa6\x1a\xf6\x10\xbc\xd6\x87\x36\x7c\x95\x7d\x37\x79\xf6\xe2\x46\xde\xa7\x40\x48\x2a\xf1\x7e\xec\x0f\x4c\x37\x8b\x6c\xcc\x42\x8d\xa8\x48\xbe\x37\xf5\xac\x9e\xf7\xb4\xf9\x27\xa9\xca\x90\x94\x35\x66\xd7\x75\x0c\x1b\xfc\xc2\x51\xbc\x75\x3c\x78\xae\x70\xca\xdb\xa1\x2f\x47\x48\x88\x72\xa5\x33\x70\x2d\xc7\x03\x7f\x5e\x4b\x9d\x03\xd0\x2a\xac\x11\x5f\x30\xbe\xa3\x9b\x53\x49\x34\xa7\xc2\xcb\xdb\xa8\x04\xb0\x12\x16\x0d\x08\xc4\x1f\xc8\x3d\x91\x73\xcc\x6e\x28\xdd\xea\xd3\xaa\xe0\x59\x18\x20\x5e\x1d\x6d\xf3\xf2\xd4\x93\x43\x2f\x37\x80\x48\x96\xca\xfd\x21\x94\xd5\x4b\x94\x2f\x7c\xd7\xee\x8c\x03\xa8\x24\xd1\x78\x2c\xf6\x0b\x02\xb4\x50\x45\x7b\xc8\x86\x21\x84\x3b\xad\xf0\x2f\xf9\x24\x12\x4b\x7f\x80\x16\x2e\x60\xf6\xf0\xc9\x54\x81\xf4\xd2\xf1\x24\x36\x64\x1b\xeb\x75\x0d\xbe\x70\x47\xcb\x5b\xde\x51\x6e\x0b\x99\x35\x7d\x92\xf4\x2c\x6f\x10\x01\xc5\x05\x6a\x09\xf0\xb1\xe2\x1a\xa5\xe3\xb1\x4d\x86\x36\x1a\xd9\xac\x92\x0b\xb3\x44\x1c\x9f\xe8\x30\x3d\x4a\xa2\xbc\xb0\xd9\x03\x5e\x0c\x85\x35\x12\x60\xfd\xb1\x57\xb1\x4d\xb6\x94\x2a\x2f\x93\xc5\x99\xca\xa4\xa5\xf4\x3f\xa4\xf7\x20\x5e\xb3\x5e\x44\x29\x49\x93\xd5\x54\x78\x52\x02\xcc\xff\x90\x5e\xbb\xa8\x78\xee\x7c\x69\x9f\x23\xc8\x9a\x67\x31\xe1\xf9\x5f\x54\xc4\xa7\x8b\x2a\x2e\xa4\x8c\x17\xbd\x90\x67\xb9\xa4\xf5\x3d\xba\x62\x74\x68\xa1\x9f\x8d\x11\xfa\x91\x22\x9c\x77\x33\x32\xba\xf3\x46\x38\x20\xae\x80\xca\xcc\xe2\x11\xfc\x1f\x81\x07\x0f\x7f\x5d\x51\xa9\x1a\x8d\x14\xcb\x10\xb5\x3b\x89\x62\xa0\xc5\x10\xfa\xdd\x09\x3c\x81\xe3\x4e\x0d\x6e\xf7\x4b\xed\xc2\x10\x4a\x7f\xff\x21\xe7\x58\xa9\xad\x2f\xb5\x46\x8f\x80\x63\x1f\x56\xab\xe2\x35\xed\xbe\xfa\xf7\x34\x6b\x85\x57\x58\x5e\x02\x9e\x02\x87\xd8\xc8\xd7\x66\x37\x7c\x5c\x78\x56\x13\x76\x2f\x62\xe4\x3a\xa8\x72\xb9\xa4\xa3\x4f\x77\x02\xf2\x0b\x7c\x82\x10\x9d\xbf\xac\xa3\xd4\x80\x57\x7b\x66\xd6\xab\x4f\x6d\x6a\x1b\x11\x95\x6d\x9e\x9c\x2a\xde\xd3\x6c\xcd\xbf\xbb\x4c\xe0\x23\xc7\x1f\x71\x92\x5f\x4a\xff\xcb\x95\xbe\x46\x04\x43\xa6\x4e\x3d\x02\xeb\xbd\xa8\xb5\x21\xf7\xbd\xac\xfc\x0b\xae\x54\xbc\x1b\x55\x6a\x1e\x4f\x46\x5d\xfe\x0a\x51\x88\xf4\xab\xf4\x39\x8d\xb7\x7d\x75\xaa\x91\xbc\xaf\x06\x3b\x61\x90\x44\x16\x1d\xdb\x2c\xd2\xee\x3b\xd8\xc6\x8e\x29\x2d\xbc\x63\xca\x7c\xb8\x17\x85\x85\x29\x77\x97\x61\x34\xce\x5b\xf4\x88\xf1\x5a\x8e\x62\x3f\xe5\x13\x57\x80\x22\x65\xb7\x54\x74\x5a\x90\x5d\x7d\x85\x46\x17\x1f\x2b\x34\x24\xd4\x47\xf3\xa2\xa5\xdc\x06\xfe\x24\xf0\x65\xb8\x3f\xa9\x01\x79\x16\x16\xda\x99\x5d\x4d\xe3\x89\x03\xf2\x48\x40\xa4\xd8\x10\xc7\x5d\x05\x71\xcd\xc6\x31\xaf\xad\x3e\x1c\xdd\x0d\x3a\x2a\x9f\x6c\xa8\x28\xc7\x50\xbd\x68\x8f\xd2\x0e\xfa\x1e\x0d\x56\xb4\x72\x8e\x73\x1b\x51\x58\x2c\x7e\x39\x5d\xc2\x7e\x83\xc8\xf7\xb8\x62\x83\x5f\x56\xc2\x78\x59\x3a\x7e\xb0\xfc\x32\xa6\x76\x61\x50\x23\xbb\xbc\xa7\xca\x0c\xa7\x15\xcf\x6b\x53\xf1\xbf\x60\xe9\x86\x1a\xcb\xa3\x54\x9e\xc4\x74\xda\xc6\x0a\xe7\xf4\x48\xca\x0b\x61\xba\xde\xf4\x29\xd7\x18\x29\xef\x8b\xca\x0e\x11\xbb\x41\x23\x3d\x00\xda\x54\x1c\xab\x55\x10\x35\xb3\xb1\xf3\xc9\xef\x3f\xd4\x1e\x59\x93\x44\xc9\xa0\x3f\x81\x99\x1b\x82\xc9\xd7\x14\x6d\xea\x35\x45\x66\x2c\x86\x76\xfd\xa7\x68\x1b\x95\x46\x25\x9e\x1e\x02\xb3\x7b\x98\xb9\xd2\xea\x51\x8a\x9a\xb7\xa9\xb9\x89\x97\xb3\xa5\x94\x62\xee\xe1\x81\x31\x8d\x22\xf0\x9d\xb3\x27\x08\x32\x27\xbd\x87\xd6\xaf\x09\x4c\xe7\x7f\xa2\x58\x16\x7b\xfd\xee\x8d\xd6\xaf\xfc\x86\xb7\x48\x2d\x97\x06\x01\x14\xd1\x14\x10\x61\x3d\x9a\xc1\x08\xb1\x6e\xea\x18\x84\xed\xfc\x59\xc4\x83\xc6\x04\x4b\x6a\x53\xb0\x89\x90\xf4\x35\xd2\x69\x72\xe5\x60\xaf\xc1\x70\x07\x6f\x05\x2b\x13\x96\x6a\xa7\xe6\x51\x2e\x92\xd8\xb7\x76\x51\x9d\x43\x10\x75\x0d\x44\xb2\x5e\x66\x06\xac\x64\x80\x60\x71\x2b\x50\x4a\xf7\xc7\xb5\x0c\xdf\x45\x15\xdb\x1c\xda\xf7\xcb\xb4\x3d\x63\x91\xe1\x46\x03\x9f\x28\x0d\xc4\xcc\x14\x43\x9b\x7d\x42\xa9\xb6\xbc\x8b\x72\x0d\x86\x1f\xa3\x81\xf8\x24\x50\xe8\xf2\xdf\x0e\x7c\x1d\xf7\x8f\x69\xf0\x0a\x1a\xae\x7c\x4c\xe8\xb9\xb7\x68\x9c\x29\xd1\x26\xf1\xf2\x61\x13\x7e\xfe\xc4\x0e\xf8\x91\x57\x22\xd0\x10\xd4\xde\x24\x66\x6a\x5c\xc5\xdc\xc0\x09\xb5\x2a\x6d\xae\x96\x53\x91\x7e\xff\x63\x80\x25\x63\xd1\x86\x70\xc0\x2c\xaf\x62\x7f\x4f\x15\x98\xa9\x43\xe6\x14\x07\x49\x8d\x5c\x35\x05\x28\xc2\x94\xec\xa3\x0e\xf2\x68\x43\x48\x9b\x7f\x89\x01\xf6\x41\xd5\xa4\x99\x2c\xe6\x65\x0d\x35\xf1\x78\x68\xba\x16\x75\x1a\x2c\x9b\x37\x94\x33\x07\x54\xe4\xa4\x97\xdf\xe4\xf1\x6b\xe2\x91\xb8\x0d\xa2\x69\xb2\xa5\x40\x66\x4c\x18\x15\x56\x88\x97\x81\x4a\x26\x45\x46\x08\x49\x13\xb7\xf4\x3e\x52\xa1\x74\x5c\x68\xf2\xc9\xc9\xec\x6a\x94\xcb\x76\x88\x96\x12\xe2\x27\x3e\x56\xcb\xa0\x09\x79\x6b\x90\xe6\xb6\xee\x74\x2b\x5d\xc7\x28\x29\x6c\xb6\x1a\xd9\x35\x26\x27\x71\xdf\x49\x17\xa5\x2f\xa9\xad\x24\x8e\x92\x15\x33\xb0\x39\x40\xde\xce\x9f\xe3\x80\xb4\x22\x5e\x9d\x3e\xa5\xc0\x56\x49\x5f\xcc\x22\x66\x7c\x9a\xf4\xa6\x8a\xde\x98\x74\xc5\xaa\x03\x35\xae\xd0\xc2\x02\xe9\xae\xf2\x9d\x48\x64\xa2\x63\x19\x1f\x5d\xf6\xa2\x0c\xe9\xd9\x1c\x5d\x1a\x67\xac\x48\x77\x80\xa2\x69\x51\xb0\xe3\x52\x59\xaf\xb9\x75\x5d\xdb\xa5\xd4\x7a\x29\xcb\xfb\xda\x5d\x13\xae\xf4\xa3\x4c\x0a\xb2\x82\x0c\xa5\xab\x12\x9f\x2d\xa5\x26\x93\x46\x31\xd2\x1c\x34\xe3\x6f\xe3\x22\xb0\x62\xbd\xa6\xbb\x89\x1f\x20\xe7\xe2\x3f\xc3\x32\x83\x99\x7c\x46\xa5\x15\xdd\x49\x5e\xd8\xde\x9c\x82\x3c\x43\xa4\x13\x5b\xe7\x49\xcc\x25\xe7\x4c\xec\xf0\xe4\xa8\xcb\xf1\x1f\xa9\x15\x68\x6c\x33\xa7\x75\x8d\x95\xf6\x94\xb6\x29\x3b\xa5\xb0\xe6\xe7\x95\x2d\xed\xf9\x5a\xb8\xba\xbc\x8f\x48\xb7\xf8\x26\x61\x43\xf8\x54\x91\xf1\x27\xc2\x8c\x50\x79\xe7\xc5\xda\xb2\xbb\xb0\x50\x8e\x2c\xcb\x1c\x63\x11\x51\x2c\xef\x85\x8f\x95\xfd\x66\x66\x7a\x26\xa3\x29\x2b\x9e\x15\x3e\x5a\x3f\x89\x5e\xa1\x34\x7b\x1b\x7c\x14\xfa\x26\xf2\xc0\x76\x14\x37\x4f\x29\x83\xe2\x53\x95\x74\x6e\x3c\x8e\xd7\x89\x0a\x2b\x92\xe5\x3e\xcb\x7e\x83\x06\x3d\xd6\xf7\xdb\x15\x4d\x09\xbf\x09\xdc\x0e\xfc\x64\x18\x0f\xa3\xd8\xf4\x6c\x3c\x1e\x46\xe2\xf0\x82\xcc\xf2\xba\xf6\x40\xb9\xde\xd4\x60\x13\x25\x70\x5c\x33\x9b\xe4\xa9\xca\x66\xdd\x1d\x6b\x61\xa1\x6d\x13\x13\x42\x69\x4e\xcb\x06\xf9\xd6\xc3\xa6\x4a\x80\xa8\x58\xb1\x57\x41\x07\xa6\x00\xe8\x0a\xee\xa1\x7c\x02\x88\xc6\x60\xb3\x89\x64\x68\x4b\x75\xeb\x59\x26\xc2\x49\xcc\x68\x57\xe8\x72\xb8\xf3\xd7\xaa\x66\x4a\x9c\x8e\xf3\xa8\x27\x36\x70\x88\x12\xe0\xd1\xcd\xc7\xaa\xf4\xd2\xcf\x4c\x12\x9a\x28\xb7\x5c\x7a\x41\xe4\xf0\x06\x21\x17\xf8\x58\xc1\x7f\x8a\x61\x94\xac\xec\x51\x5d\x0e\xd4\x05\x30\xaf\xd8\xc8\x12\x15\xc5\x77\x83\x32\x92\x70\xe4\xe0\xe7\xbd\x2c\xb8\x4a\x31\xae\x4f\x3d\x45\xd0\x8e\xb0\xde\xbb\x60\xee\x4d\x5a\xbf\xb6\x2f\x63\xa9\x47\xc7\xf8\x46\x83\xfc\x4d\x1b\xeb\x60\x01\x7e\xb7\xa3\x1a\x29\xf1\xd2\x47\x54\xb9\x36\x8e\x95\x02\xfe\xdd\xa0\x0a\x0d\x75\x91\x1e\x80\xd3\x22\xbf\xf3\xb0\x1b\xb6\x2f\xbd\xd4\xf6\x6c\xbb\x2b\x81\xd2\x68\x39\x35\xa5\x40\x91\xa5\xc4\xa0\x74\xeb\x58\x4c\xde\xcf\xe6\x2d\x0d\x59\x78\x2b\x50\xc2\x86\xaf\x62\xbd\x72\x19\xc4\xaf\x49\x3c\xf0\x3a\x8d\x05\xa6\x3d\x04\x7e\xde\x1e\x45\x31\x0e\x65\x8a\x33\x53\x3f\x65\x58\x5e\xd0\x45\x27\x65\xbe\x83\x47\x7a\xaf\x82\x6b\xc1\xfe\x20\xe6\xdf\x34\x2a\x59\x5b\x4e\x39\x36\x9e\x24\x49\x4f\x60\x4a\x8f\x54\x39\xc1\xac\xf7\x86\x55\xf0\x8a\x72\x0c\x79\x8b\xc2\x56\x84\x56\xdf\x21\xc1\x34\x3c\xb0\x1f\xd2\x98\x90\x20\x83\xa2\x67\xe7\x7e\xff\xeb\xbf\xca\x43\xff\x8d\x40\xf1\x62\xae\x50\x24\x2d\x0a\xdd\xad\xe5\x25\x9e\x2b\xbb\x36\x3c\xb8\xe1\xb4\x62\x20\x86\x43\xbb\xba\x3e\xe3\x59\x49\x9b\x0a\xa0\x0f\x2a\xb6\x70\x8f\xb4\xbc\x91\xed\x97\xa9\xe9\x17\xe4\x92\x2f\xe1\xb5\xf0\x09\x9e\x12\x5e\xf2\x5d\xce\x4d\xf9\x2c\x90\x26\xcc\x28\x62\x92\xb5\xe8\xf5\xb4\x94\x4b\x94\xb2\x1d\x88\x6d\x9e\x0b\x6a\x00\x03\x6d\x4b\xf7\x9d\xb6\x34\x4b\x29\xca\x87\x2d\x65\xa5\x74\x9e\x46\x01\x1f\x37\x69\x34\x14\x26\x5e\xc9\x67\x7c\x8c\xca\x1a\x87\x78\x8e\x2c\x3a\x84\xe9\x7f\x59\x2d\x4f\x84\x7d\x7f\x50\x4d\xe8\x33\x18\x08\x48\xcc\x8f\x4d\xfd\xae\xfe\xd6\xd4\xd3\xcd\x8e\xd3\x0d\x02\x04\x33\xb7\xe1\x41\xe9\x3f\xc4\x5c\xc5\xb8\xbf\x45\xa3\xc8\xb9\x6c\x2f\x2f\x71\x1c\x7a\xaf\x49\xc2\xc0\xe6\x61\x96\xae\xa9\xd6\xfd\x39\xe5\xb2\x7c\x6e\xa7\x79\xcd\xa1\xe7\xda\xcf\xef\x7b\x91\xe0\x31\x18\x71\x0f\x82\x42\x84\x9c\x02\x7d\x63\x51\x7f\x2d\xbf\x12\x01\xf4\xd7\xb5\xc0\xf5\x6e\x88\x9e\x3a\x60\x7e\x39\x93\xd1\xb5\x01\x21\x8c\x1f\x22\x96\x34\xac\x6f\xaf\x06\x0a\x94\xb6\xad\x82\xb1\x49\xd2\x8f\x61\x74\x57\xbe\xdb\xfd\x87\x9c\x6e\x01\xad\x02\x5e\xf9\xd2\xc1\x74\x33\x5b\xa0\x12\x25\x02\x85\xe5\xa3\xe5\x63\x45\x6f\x30\x89\x89\xd7\xf3\x02\x85\x6e\xf1\x7b\x69\x39\xad\x6b\x60\x96\x90\x11\x7e\x97\xbe\x42\xcc\x6f\x3d\x36\xf6\x94\x36\xc5\x9e\xe9\x34\xec\x80\x93\x64\x60\xa2\x84\xfd\x59\x38\x72\xa4\x27\x20\x51\x64\x13\x90\xab\x2b\x18\xf5\x25\xe7\x60\x44\x6b\x8e\x58\x1b\xf9\xd9\x95\xa7\x61\xc8\xe1\xaf\x5b\x9d\x7c\xf6\x76\xb4\xee\xc0\x43\x16\xfe\x99\x49\x90\x39\x60\xa9\xb9\x87\x34\xce\x69\x89\x2d\x2c\x88\x68\x6f\xa3\xe4\xc7\x78\xd2\x8d\xa3\x7c\x68\xa5\x9d\x80\xc7\xf5\x3d\x9e\xbc\x7c\xd6\xb0\x93\x2c\xb5\xbb\x56\xb9\xc9\x89\x67\xaa\xee\x5f\xfa\x4d\xf6\x37\x27\x26\x29\xa2\xfe\xfa\x6c\xcb\xa9\x1d\x71\xf2\x27\x3e\x61\x2a\x32\x45\x57\x8c\xff\xca\xf5\x7b\x23\x1a\x37\xda\x64\xed\xae\x32\x59\xbb\xeb\xcc\x05\xb3\x09\x75\x8f\x1d\x93\x8e\xd7\x24\x3e\xa9\xe1\x7a\x16\x16\x0e\xb6\xd7\x22\x8a\x42\xf7\xbb\xa8\xd0\x83\x7c\x98\x95\x8d\x34\x18\xee\x2b\x78\xb0\x3f\x50\x09\xe2\xd8\x26\xa1\xdd\x5b\x0e\x03\xfc\xdd\x7b\xaa\x57\xc6\x68\x58\x40\x18\x6e\xe1\x36\xf9\x44\x61\x1b\x60\xfa\xe7\xf8\x11\x0e\x21\xb9\xa9\xbd\x4f\x6f\xd5\xaa\x63\xcb\xfb\x0e\x7a\x3e\xa7\x12\xd2\xd0\x1d\xf7\x93\xb5\xb7\xbe\xbc\x4f\xbc\x15\x40\x8d\x76\x3b\x3c\x90\xf2\x7c\xac\x02\xf5\x55\x13\xaf\x0a\xf5\x40\x16\xd5\xf2\x07\x64\xb1\x95\x57\xd4\xcf\xcc\xc8\xeb\xe5\x88\xca\x8e\x6a\x44\xfe\x49\x6d\x2d\x26\x99\xe3\x6e\x3a\x56\x2c\x92\x4d\x5d\xda\xdb\x0c\xfc\x97\x5b\x2b\x39\x2e\xd6\xc6\x1f\xab\x28\xed\x0d\x3c\x28\x84\x50\xa7\xeb\xd8\xe7\xf9\x76\x77\x12\xc7\xbd\xf4\x15\x56\x88\x10\x67\x60\xdf\xea\x39\xd2\xc0\x21\x5f\x6a\xdb\xa4\x9f\x66\xa1\x1d\x09\x68\x4e\x2c\x43\xe9\xa5\x8a\x99\xa8\x9f\xc0\xd4\x35\x25\x0f\xb6\x83\x5c\x0b\x3a\xa6\x0b\xcb\xec\xdc\x2b\xe4\x2b\x5f\x23\x06\xfb\xc2\xa9\x44\x97\x7b\x11\x7f\xdc\x81\xf7\x26\x2b\x99\x89\x92\xc8\x00\x20\x24\x02\x5d\x5a\xad\xcb\x4d\x81\xbc\x48\x53\xf4\xbb\x59\x20\xd4\x13\x54\xfe\xf9\xa7\x37\xe8\xd2\x11\xd5\xfc\x2c\x2a\xa3\x8e\xf2\xa5\x2d\x25\xe8\x22\x04\xa2\xa4\x78\x8e\x93\x7e\xdf\x66\xb6\x37\x57\x0e\x52\x41\xc4\xd0\x07\x01\x54\xb8\x8a\x88\x9d\xff\x47\x31\x75\x5f\xa7\xd6\x2c\x6b\x5b\x69\x0a\x97\x59\x23\x62\x8d\x48\x29\xb6\xbc\x84\xaf\x1a\x64\xd7\x94\x8d\xf7\xa6\x12\x99\x60\x72\xaa\xcd\xf2\x07\xfc\xdc\xd4\xb6\x52\x6f\xd3\x6c\x12\xf5\x68\x7a\xfc\xce\x49\xda\x81\x14\x8e\xe1\x7d\x62\xca\xdf\x40\x96\x8c\x5d\xa0\xd5\x91\x87\x5a\xa4\xb1\x30\xda\xd8\x6a\x45\xd9\x04\x5e\x9c\x7e\x5a\xc1\x89\x7a\x93\xbc\xc8\x22\xf2\x91\x6a\xf9\xda\xf0\x6f\x05\x0a\x94\xf9\x5b\x4d\xca\x03\x51\xd2\x67\x0a\x6d\xcb\x59\xb0\x31\x46\x47\xf6\x3b\x57\x31\xb2\x59\xda\x27\x47\x15\x47\x86\x3f\xaa\xc5\xf7\x8f\x36\x99\xaa\xf7\xac\x41\x25\x57\x28\x5d\x74\x37\x12\xd0\x2b\x19\xec\xc3\x64\xba\x16\xda\x19\x65\x35\x71\x41\x51\xf0\x6e\x4c\x7d\xa0\xb0\xbb\xe3\x95\xd1\x6c\xbf\x1f\x91\x64\xcc\x8c\x07\x5b\x7c\x34\x55\x7e\x04\x33\x1d\xdf\x6c\x3f\xa5\xe6\xcd\x1a\xeb\xa9\x39\xad\x0f\x54\x42\x24\x17\x7d\x44\x65\x6b\xab\x96\x05\x4c\x71\x59\x77\x10\xd8\xf3\x49\xf0\xa0\x34\x7e\xc2\x39\xaf\x98\xf8\x83\xc7\x28\xec\x42\xbb\xec\xa7\x3b\xba\xb0\xa6\x28\x37\xb0\x45\x97\x6b\xf3\x1d\xf4\xd8\x0c\x80\x5e\x5d\x5e\x62\x61\x28\x48\xb3\xf1\x71\x50\xd5\x6f\xb2\x8f\x2b\x55\x8b\xbf\xa5\x3f\x44\x74\xc4\x6d\x6d\x11\x38\x57\x0a\x37\x57\x30\x30\x64\xf3\xd9\x49\x1b\x5f\xf6\x16\x82\x3e\xd6\xbf\x1d\xf8\x79\xf2\x11\xbd\x0d\x05\xb9\x13\x95\xe5\x93\xc8\xb9\x40\xc6\xba\x3e\xf5\xe6\xb5\x97\x30\x49\x11\xb4\xdc\x08\xbc\xcc\xdb\x97\xa6\x1e\xa2\x8e\x26\x85\x7c\x78\xe7\x26\xf2\x39\x12\x88\x4a\x63\x52\x58\x61\xba\x34\x66\x1f\x0a\x81\xd8\x6f\x19\x29\x82\xf8\xe5\x23\xed\x86\x19\xe5\x2b\x7b\x15\x87\xee\x4e\xe0\xe3\xd3\xd3\xca\x50\xa0\xd0\x10\xb5\x2b\xd8\x3e\xf9\x04\xe3\x0a\xf5\x2b\x54\x4e\x30\x99\x2f\x4d\x95\x4c\xfd\xc9\x0a\x6e\x2a\x2d\xec\xa3\x15\x22\x85\x87\xb4\xfe\x29\x96\x00\x14\x5f\x59\x98\x1e\xe9\xcf\x5f\x2b\x5e\xf0\x5c\x87\x95\x35\xe9\xbd\x70\x3d\x5c\x4b\xb5\xc1\xfd\x74\xfb\x32\xdd\x8e\x38\x80\x95\xcf\x11\xab\xe3\xb7\x68\x35\x42\xf2\xb0\x77\xc3\x03\x4c\xbe\x41\x21\xbf\x38\xba\xfb\xb5\x24\x1f\x9a\x8c\xd0\x4b\x51\x82\x56\xc0\x7e\xad\x52\x29\x15\xf1\xd3\x5a\xbf\xf2\xa3\x06\x29\xbb\x83\x40\x14\x55\x0b\xb6\x2c\x3a\x2e\x54\x0c\xe9\x5f\x86\x69\x52\xd8\x98\xa1\xfb\x52\xdd\xf4\xec\x1b\x34\x2d\x3b\x8f\x29\x31\xac\xbc\x48\x33\x3b\xe7\x5d\x75\xfe\x20\x50\xdc\xb5\x1f\x04\x3e\x98\x43\xc5\x14\xa9\x36\x6a\xa0\x08\xf8\x2e\x3b\xd5\x8b\xee\x38\xac\x44\x0f\xaf\x4d\x55\x16\xf1\x5a\xb0\x53\xf7\x74\xe9\xb9\x83\xd0\x6a\x26\x75\x4a\x19\x86\x28\x11\x5c\x55\xdd\x80\x37\x95\x80\x5e\x5d\xa1\x9b\xd4\x53\xcd\xc4\xd5\xb3\xb9\xaa\x11\xf8\xc4\xf3\x54\x2d\xae\x5f\xde\xd7\x26\x8d\x11\xfe\x49\xb7\xa5\xb8\x12\xf8\xe9\xa9\x32\xbf\xb8\x5e\xcb\xe2\x9e\xdf\x87\xc0\x3b\xa4\x0d\x82\x99\x0a\xf4\xa8\x84\xb5\xd0\x00\xe1\xed\xa5\x93\x6e\xc1\xa5\x5f\xa8\xfe\x5c\xc6\x3a\xc2\x27\x4d\xae\x9e\xa6\x67\xc6\x3e\x4a\xc7\x82\xf3\x65\x7a\x1c\x7c\xdc\x80\x4f\x79\xb6\x3d\x4c\xb3\x5c\x22\x3e\x94\x36\xbe\x12\x28\x3e\xfb\x57\x6a\x75\xd3\xcf\xb5\x0b\x9b\x17\x3b\x3b\x02\x6a\x80\x7d\xd8\xc0\x6b\x6d\x87\xe9\x68\x34\x49\x88\x4e\x87\xb7\x2e\xba\xd8\xaa\x2f\x74\x4e\xe5\x8e\x0e\x6c\x10\xd9\x7c\x8f\x27\xa7\x5c\x47\xf1\xeb\x2a\x4d\x3a\x61\x5c\xf8\xa9\x7d\x0d\xcb\x06\x9f\x4c\x5b\x87\x9e\x73\x5c\x42\x5f\x2b\xef\x9b\x38\xde\xeb\x7b\x03\xef\x4f\xb5\x99\x33\x2e\xce\x59\xd1\x3a\x75\xe6\x5b\x8a\xd3\xfa\xd7\xb8\x5b\xe7\xe1\xb7\xe4\x3c\xe9\x77\x21\xca\x42\xbe\x7d\xbd\xa9\x7a\x3d\x4c\x47\x10\xba\x02\x56\x18\xa0\x2c\x7c\xf8\xcc\x54\x17\x95\x7d\x5a\x9c\x87\x26\x29\x88\xd6\x26\x72\x0e\xca\xf2\xe4\x82\xca\xfa\x2e\x55\xb4\xdc\x3d\x15\x24\x2f\xb2\x74\xdd\xf6\xa0\xa9\x5d\xf1\xb5\x74\x9e\x5d\xee\x73\xef\x4e\x55\xbc\x7b\xb2\x51\x16\xa7\x18\x66\xa9\xa8\x02\x0b\x78\xa7\xe5\xd4\x26\x2f\xaa\x2d\xbc\x9f\xa6\xbd\x07\x3d\xfa\x8f\x4b\x2f\x60\x5a\x9e\xd2\xb1\x3f\x6f\x78\x88\xe9\xef\xd1\xa3\x56\xab\xb0\xf8\xd9\xc3\xf4\x01\x09\xfc\x55\xad\x19\x70\x86\xf6\x32\xd9\xf0\x24\x8c\xeb\xda\x68\xc0\x06\xaf\xd8\x3a\x8e\xa9\x7e\xf6\x4d\x85\x5b\x38\xab\x5a\xaa\xbf\xfc\x85\xe5\x56\x05\x74\x59\x5e\x24\x9f\x28\x52\xc9\x38\x4b\x5f\xb6\x61\x91\x3f\xa0\x2a\xdd\x8a\x12\x5f\x51\xb8\x7d\x6b\xaa\xd6\xaa\xb7\xb1\x62\x22\x95\x79\x80\x6e\x08\xfb\xee\x2e\x34\x8c\x05\xb0\xdf\x24\x17\x1f\xc6\x36\x5b\xc9\x51\x5e\x10\xf2\xa2\xd2\x97\xaa\x8b\x18\x2d\xef\x6b\x87\x59\xba\xd6\x93\xc9\x8a\x34\xf1\x77\x94\x74\xc2\xef\xb8\x30\x13\x2d\x1a\x13\xcf\x7a\x88\x3a\x20\xca\xce\x79\xd0\x63\xb5\x34\x31\xf7\xcd\x26\x3d\xd5\x83\xed\xcc\x16\x93\x8c\x75\x8d\xc4\x75\xac\xfc\x36\xb1\x3f\x6b\x58\xf3\xfa\x26\x24\xf0\xb5\x57\xcf\x3c\xaf\x84\x9d\xcf\x7b\xbd\xa4\xe8\xf0\x1e\x5f\x95\xfc\xed\xaa\x55\xc2\xbc\xc4\xf6\x0f\xc2\x27\x12\x6f\x1b\x4a\x40\x28\xcc\xf1\xd5\x63\xbb\x68\xea\xe9\x2e\xb5\xf3\x28\x9f\xc4\x93\x96\xe6\xb4\xf1\xa7\xf8\xa4\xf6\xa4\x17\x16\xda\x63\x53\x44\x92\x3b\x0a\xd5\xc2\xa7\x7a\xe7\xdd\xb0\x1c\x99\xf5\x2e\x4a\x08\xb4\x4c\xcc\x7f\xb6\xe3\x47\xe2\xad\xa9\x2a\x21\x40\xe2\x02\x77\x76\x6f\xea\x41\xe0\x6c\xf9\x89\x7a\xf1\x45\x4d\x99\x7c\x70\xc3\xc7\xb5\xe7\xa6\x9f\x50\x02\x74\x90\x01\xc2\x32\xf1\x55\xfa\x2e\x3e\xae\x25\x0f\x24\xce\x68\x80\x71\x44\xa1\xff\x3d\xa5\xb9\xff\x5e\xed\x6d\x97\x01\x7a\x3b\x8b\xc2\xa1\xe8\x18\x22\x1a\xbb\xa6\x3a\xae\xd7\x54\xcb\x34\x4f\x47\xb6\x18\x46\xc9\xd3\x58\x8d\x50\x39\xf9\x40\x11\x06\x77\x77\x3c\x48\x08\x71\x3a\x06\xea\xe9\xda\x9b\x7a\xe9\xa5\x76\x6e\x32\xb3\x12\x25\x33\xbe\x2b\xb3\x55\x69\xbe\x2b\x01\xb1\x93\x4a\x78\xdd\x14\xd0\x4f\xb7\xf9\xac\xea\x39\x9f\x42\xd8\xee\x66\xf0\xd2\x73\x07\xbd\x9f\x88\xdb\x81\x4e\xa9\xd0\x76\x9c\xa6\x19\xba\xae\x28\xbf\x5f\x0c\xd4\x87\x40\x04\xe0\xff\xc0\x5b\x62\xe0\x33\x96\x41\x6c\x52\xa7\x5d\x49\x65\xcd\xf4\x88\xa6\x46\xff\xe9\x0c\xbb\xca\x2f\x17\xb3\x84\x86\x52\x47\x3f\xb3\xf9\x30\xb1\x39\x2c\xb1\x1c\x2f\xd8\x41\x78\xce\x05\x5e\x05\x61\x64\xd6\x1f\x2e\xff\x0a\x89\xf9\x27\x3b\x95\x68\xcd\x41\x96\x8f\x06\x1e\x68\x7a\x3c\x50\x3a\xbf\xc7\x69\x91\xad\x58\x16\x8a\xcf\x20\xbd\x77\xa7\x65\x52\x26\x22\x58\xec\x4e\x68\xd9\x89\x3d\x1b\x2a\xd9\xde\x9c\x7a\xf9\x59\x92\x5e\x4e\x4c\x11\xad\xda\x9c\x9a\x50\x18\xd9\x6f\xea\x06\x97\xd6\xfa\x80\xa1\x1d\xfb\xd9\xa8\x36\x02\xc9\xbd\x47\x79\x31\xab\x84\x48\x2f\xe0\x72\xf8\x44\xd7\xce\x35\xda\xe0\x5c\xed\xd1\x2e\x2d\x2f\x95\x6b\xfc\x68\x5c\xc4\xeb\x58\xc4\x1c\x6c\xcb\xe1\xe4\x37\x51\xda\xe0\x8d\xe3\x3f\xa5\x1d\x1a\xb9\xef\x27\x3b\x8a\x27\x8e\xd4\x03\x3f\xb4\xa5\x83\xdc\x9b\x35\x1a\x31\x41\xe0\xf2\x71\x9a\xe4\x51\x37\x8e\xe2\x62\xbd\xa5\xa2\x23\xd4\x4a\x05\x83\xf8\x29\xe5\x17\x95\xdb\x3c\x1f\x59\xf6\x23\x13\x73\x05\xd4\x19\xdd\x25\x2c\x2f\x69\x9b\x5b\x6f\x59\xac\xe4\x0e\x56\xa3\x9e\x4d\x42\xfb\x20\x8d\x61\x4c\xba\x99\x8e\x1f\xf8\x77\xb4\x3b\x35\xeb\xe8\xf3\x96\x1b\xf8\xae\xe0\x7b\x7a\x70\xcf\xd0\x9b\x72\x96\x48\xf3\xf3\x9c\xd2\x32\x4c\x8f\xff\xa3\x81\xe0\xb5\x5c\x25\xb2\x38\x17\x3d\x67\x6a\x58\x17\x90\x5b\x5c\x84\x2f\x42\x8a\x46\x26\x0a\x65\x3f\xc2\x65\x3a\x8d\x1f\xa7\xf4\x89\x06\xbe\xd0\x4e\xea\x21\xee\x7a\x64\xe3\x1e\xfb\xbb\xa9\x06\xad\x8f\xba\xd4\x2a\x83\x06\x9a\x60\x76\x94\x1e\x7c\x9e\xdb\x51\x37\x66\x9f\x5a\x81\x7d\x28\x3c\xe4\x75\xd5\xf8\x1f\x4c\x92\x91\xe5\xa0\x4a\x8a\x7c\xf4\x36\xa5\xfc\xd7\xc0\x82\x1b\x67\x76\x6c\x32\xd9\xdc\xc5\x61\xc1\x43\x84\x2f\x35\xe4\x3f\x8b\x34\x4d\x24\x49\x40\x17\x0a\xc5\x60\x3e\x0e\x76\xf4\x94\x5e\xd8\x7f\xa8\xfd\xf4\xd3\x54\x72\x13\x17\x7b\xe5\x7a\xf7\xe5\xa0\xb2\x17\x95\x4f\x1e\x89\x24\x3c\x8d\x31\x61\xbf\xaa\xa5\xe1\xb8\x8b\x28\x6e\x58\x8f\x2a\x78\x71\x11\x42\x8c\x15\x23\x89\xa1\x49\x7c\xa2\xc4\x8a\xa3\x38\x9e\xe4\x45\xc6\x54\xcb\x03\x22\xa7\xc6\x7d\x5b\x3e\x69\xd4\xd6\x71\xea\x5a\xca\x9d\xf8\x0f\x15\x6f\xf0\x0f\xdd\x26\xdd\xcb\x26\x83\x8a\x18\x09\xbb\x45\xf1\x49\x63\x7b\x25\x2f\xcc\x60\x60\xbd\x4a\x11\xf6\x9d\x2b\x81\xdf\x83\xae\x34\x71\x19\xcd\x78\x9c\xa5\x26\x1c\xce\x2a\xdd\xd0\xb3\x55\x46\x6c\xcb\xc9\x83\xcc\x75\x7c\x3b\xea\xe2\xf4\xd3\xd2\x08\x31\x80\x76\x45\xaf\x78\x0d\xef\x26\x38\x71\x43\xd0\x35\xb4\xc6\x85\x87\x68\x99\xbf\x87\x62\x01\x9f\xb8\xed\x29\x8f\x06\x9e\xae\x8f\xf5\xf4\xae\x72\xa6\x42\xb9\x0f\x0b\xe3\x71\x55\x52\x23\xcb\x29\x9b\x93\x05\x87\x10\xe4\x68\x4e\x63\x1e\x7e\x14\x78\xa6\xe7\x75\x5a\xa5\x64\xe8\x2a\xc7\x99\xb3\xaa\x01\x33\x4c\x93\x9e\xa1\x60\x46\x3c\xf7\x7c\xb3\xef\xb4\x92\xfc\xb1\x23\x50\x76\x11\x1a\xdf\x51\x52\x6e\x77\xa6\x5a\xb7\xc3\xe6\x85\xa1\xae\x18\xec\x17\x99\x06\xa3\xda\x52\xef\x2b\xae\xd4\xd0\x64\xa3\x34\x59\x6f\x29\x2c\x29\xf2\x2f\xa1\xee\x68\x13\xd7\xbe\xdd\x53\x6e\x98\x28\x2b\x9c\xa3\xa9\x21\xe6\x0d\x2d\x67\xd5\x78\x41\x43\x1d\x50\x6c\xe4\x0f\x20\x18\x11\x1f\x88\x27\x54\xf6\x9a\x17\x5d\x12\x0d\xf1\x46\xff\x5c\xcf\xe7\x13\x95\xea\xae\x46\x76\x8d\x90\xc9\x4e\x4f\xc6\x3f\xe1\x40\x3b\xa8\x04\x55\xa4\x97\xd3\xc3\xb9\xa3\x0a\xf3\x1f\x21\x8f\x51\x2c\xd4\x25\x67\x2c\x5e\xbe\x10\x79\x73\x3b\xc7\xf8\xfc\xbc\x6b\x0a\xd2\x35\x4b\x1f\xb0\xfc\x15\x69\x03\x2a\xea\x5c\x04\x28\x80\x73\xdf\xdd\xac\x50\x57\x55\x43\xc0\x4c\x8a\x21\xc0\xeb\x33\xaa\x67\x0d\xe7\x03\xac\xf8\xaf\xe2\xa3\x78\x2e\xb7\x55\x93\xd2\xad\x9c\xfe\xad\x20\x09\x16\xbe\x81\x64\x45\x62\x16\x32\xe3\x29\xd7\x8f\x52\x28\x82\x91\xce\x6a\x8a\x80\x6b\xef\xde\xf0\x99\x6f\x98\x26\x20\x7b\x8a\xa6\x70\xcd\xae\x06\x29\x6d\x9d\xbf\xbd\xff\x50\x7b\x2d\x4d\x7b\x16\xcd\x1f\x0c\x2c\x94\x8b\xf8\x58\x53\x38\x6d\x62\xe3\x18\xcd\x5c\xd4\xda\x66\xc8\xc7\x99\x8f\x3b\x8f\x28\xc1\xe6\xc4\xce\x28\xb4\xd5\x87\x34\x1e\x91\xce\xdd\x42\x30\x27\x85\xd2\x06\x7b\xd2\x9e\x59\x65\x89\x08\xc6\x27\x51\xf9\x05\x2b\xed\x61\x0c\x04\x64\xe5\xe7\x94\x23\xe5\x3b\x0d\x6c\xce\x76\x1e\x4f\x06\x83\x72\xb6\x79\x40\x25\xab\x95\x88\xa2\xe1\x63\xea\xee\x0e\x47\xa1\xe1\x3d\x11\xd8\x89\x2b\x78\xa1\x7c\x52\xdb\x13\xf7\x1f\x6a\x87\xe9\xd0\xe6\x62\x71\xa7\x13\x73\x81\xa3\xe9\x22\xf1\x68\x5c\x00\xb8\x8b\x40\xe0\x1c\xdd\x16\xca\xd9\xef\x4c\x75\x4d\xc4\x87\xfc\x2f\x4f\x12\x8b\xb0\x80\xb7\xb3\x69\x85\xec\x5f\xbe\x65\xb7\xcf\x79\x36\xed\xa6\x12\x15\xc8\x6d\x51\xc4\xd4\x66\xcc\x49\x28\x00\x83\xe7\x3d\xa5\x13\xfc\x5e\x23\x0e\x37\xca\x57\x9c\x56\x3c\x0a\x4c\x88\x67\xf9\x58\xa5\x37\xa1\x99\x14\x51\x3a\xc9\x19\xbc\x80\xe2\x07\x87\x13\x7c\x52\x6b\x9b\x2e\x2e\x3a\x78\x00\x54\xfd\x25\x03\xa3\x4f\x61\xc3\x61\x47\x57\x44\xe4\x33\x9d\x06\xfe\x51\x66\x07\x93\x98\xdc\x57\x3c\xd4\xe4\xbc\xa6\x73\x9e\xaf\x90\x43\xd3\xd8\xcc\x29\x33\x7e\xc8\x72\x38\x99\x00\x17\x53\x5e\xa5\xcc\x03\xdd\x03\x56\xf6\x92\x80\xde\x43\x9c\x06\xa9\x89\xb9\x1d\x5b\x71\x9a\xf3\xf8\xc0\x25\xb7\x4c\x7b\x04\xc5\x35\xdc\x12\x9f\xd0\x66\x24\xeb\x7a\x03\x5e\xb4\x98\x64\x09\x27\x68\x5c\x3e\x50\x30\x9a\x7a\x29\xe1\xf9\x7d\x2f\xb6\x4d\x06\xa5\xc9\xe5\x25\x27\x29\x5e\xde\xa4\xa8\xaf\x97\x3f\x28\x70\x38\x57\xb0\x8b\xf2\x91\x59\x77\x7b\xad\xb6\x1d\x17\xbe\x45\xcb\x89\x83\x6a\x4c\x49\x1a\x47\xab\x8e\x82\x57\x49\x3c\x25\x3d\x75\x6d\xe3\x61\x1a\xae\xcc\x78\x80\x12\x7c\xa1\xa4\xec\xa0\xc0\x21\x37\xdc\x55\xc5\x26\x61\xdb\x05\x5d\x22\x65\xfb\x65\x3e\x51\xfb\xdf\x9a\xc9\x38\xb9\x66\xcf\x7d\x5a\x29\xb7\x51\xc2\xc3\xca\xa1\x45\x90\xb7\x1a\x7c\xaf\xda\xdd\x34\xcb\x48\xc3\x2c\xaf\x28\x44\x62\x62\x09\x49\x55\x6e\x69\x68\x12\xa1\x50\x60\x16\x71\x25\xa0\xe2\x76\x24\x98\xc4\x27\x1c\x69\x2c\x5d\x8d\x72\xc0\xe2\x7d\xdc\x0c\x3a\x38\x1f\x37\xca\xab\x8f\x4c\x94\xe4\x85\x01\xb4\x52\x90\x3e\x2d\xa7\xc2\x79\x01\x8b\x28\xef\x04\x54\xf8\x06\x45\x87\x7b\x2d\x98\xb2\x9c\x50\xa1\x28\x30\x4b\xe3\x7a\xfb\x82\x6b\xce\x8c\xa2\xc1\xb0\x30\xb8\x21\x44\x9d\x27\x89\x84\x82\x75\x92\xf9\x2c\xd2\x48\x6c\xd0\xd3\xc3\xc0\xa3\x7d\x54\x8c\xb6\xbc\x23\xdf\xe6\xf4\x21\xf7\xa6\x9e\x7e\xdc\xeb\x6c\x7d\x29\xa8\xec\xb5\x9e\x0c\xcc\xe4\x67\x8c\xc5\x6d\xd0\xf1\x30\x9e\xcf\x4d\xd5\xfa\x7c\x7c\xaa\xc4\x20\x3e\xa2\x68\x03\x49\xde\x0d\x06\x19\x01\x76\xfe\xe6\xd4\x77\x87\xfe\x10\x6d\x4c\xfe\xb2\x40\x49\xbc\xfe\x0e\x8a\xc2\x5a\x33\xc0\xe1\x7c\xca\x14\x15\xe1\xdc\xa9\x69\xeb\xe9\xa7\xe5\x58\xe1\xc8\x67\x5c\x3b\x7f\x92\x0d\x6c\x6f\x2f\xed\x52\x58\x67\x8e\x69\xe9\x97\xa9\xd7\x46\xfe\xa3\xa9\xda\x49\xaf\xf0\x15\x4b\x0a\x53\x5e\x31\xa5\x39\xf9\x93\x1b\x8a\x32\xfb\xc9\x8e\x6a\x24\x3d\xda\xd9\x69\x19\x41\x11\x76\xc6\x6d\x6c\xbe\x61\xb4\xb1\xe5\xee\x7d\x9d\x7f\x3c\xa1\xa8\xce\xd5\xbe\x71\x99\x02\x0e\xf1\xf5\x92\xdc\x14\x51\xde\x2f\xd3\xb8\x34\x99\xf3\xc2\x13\xb7\x2a\xeb\xac\x26\xc7\x9e\x57\xf2\x57\xcc\x29\xc4\x14\x39\xe1\x46\xdb\x38\xb2\x61\xb5\xa5\x73\x5c\xf7\x0c\x8f\xab\xa2\xfe\x30\x1d\xdb\xbd\xad\x17\x96\x9c\x07\xa5\xe2\x70\x5f\xc6\x90\xe6\x93\xc0\xb3\x84\x00\xe0\x72\x5c\xa0\x32\xde\x10\x93\x2c\x7a\x31\xf8\xc4\x1d\x45\xcc\xdd\x54\x36\x64\x45\x36\xb1\x2d\xe5\xf6\x04\x91\x77\x3e\xae\x45\x01\xf3\xf3\xc0\xe1\xb9\x44\x8c\x1b\xb2\xf4\x21\x69\xce\x2a\x5a\xab\xcd\xc3\x2c\xea\x5a\x69\x4c\x39\x90\x62\xf9\x9c\x04\xa4\xf8\x94\x4a\x19\xfa\x59\x34\xb0\x99\xe1\x5a\xb5\x8c\xd6\xf7\x95\x18\xf5\xfb\xb5\xa8\xee\x73\xed\xd8\x9a\xdc\x5d\x11\xe6\xfc\xdb\xca\x95\xe3\xed\x46\x59\x9e\x38\xea\xdb\xdc\xac\x7a\xa4\x95\xb8\x7b\xd1\xc5\xf1\x89\x0a\x08\x07\x71\x9a\xe7\x50\xc5\xd1\xd2\xf6\x80\x94\x70\x34\x2c\x49\xa5\x7f\xbc\xd6\x84\xc3\xc7\xe8\xff\x64\xa1\x51\x8a\xf2\x00\x30\xa3\xcf\xc2\xcd\x70\x27\x95\xe3\x21\x94\xd7\x68\xae\x23\x7a\xfe\x3b\x7a\x8b\x4e\x8f\xd4\x15\xb7\xaf\x4c\x2b\xa2\x3b\x5a\x67\x87\x9e\x23\x76\x85\xcb\x7a\xd9\x46\x01\x18\x4c\xcc\x57\x69\xa6\xba\x07\x50\xae\x40\x52\xbf\xa1\x11\x88\xc1\x75\x54\xa5\x6b\x66\x34\x71\xb0\x62\xcc\x84\x6b\xaa\xa3\x71\x6d\xfa\xb0\x67\x24\xf5\x9f\xa2\x25\x05\xfb\xe4\x6c\x87\xae\x07\x95\xae\xef\xa3\x06\x0a\x06\xc6\x91\xa9\xf7\xb7\x99\xe9\xa8\x11\x72\x16\xd7\xc0\xab\x28\x2f\x1d\x4a\x3e\xee\xa0\x93\x53\x6c\xfd\xfa\xaf\x8a\x4f\x17\x25\x12\x80\x67\xf1\xbb\x41\x61\x70\x76\xc3\x83\xd6\xff\x80\x60\x04\x98\xbb\x57\x69\x03\x70\x76\x95\x0e\x45\x7c\x82\x82\x1b\x61\xc3\xd1\x83\xc5\x38\xbc\x11\x28\x12\x33\xbf\x3c\xd7\xd8\x2a\xc7\x21\x17\x15\x36\x3c\xdd\x7e\xd7\xc6\xce\x25\xec\xa5\x97\xda\xc9\xe4\x70\x4b\xf5\x84\x21\x62\xcf\xc7\x9d\xa6\x71\x3b\xb2\x59\x58\x66\x7c\xb1\xe5\x71\xeb\x30\x8e\xe5\xb7\xf0\x89\x46\xfe\xc6\xd6\x16\x33\xba\xe6\xa1\x6a\x6a\x5f\xfd\x18\x25\x40\x3b\x19\x91\xf9\x2e\xad\x30\xff\xf0\x27\xf4\x42\x0c\x63\x5c\xd4\xcd\xf7\x6e\x28\x19\x96\x3b\xba\xa1\x27\x8e\x82\x68\xc0\x5d\xd0\x7c\x0e\x3b\x1a\xcb\xa5\xb3\xe8\xfe\xb4\xa2\xc0\xef\xdc\xc2\xd3\xd4\xb5\xc2\x9d\xa0\x65\xf9\x26\xc5\x9c\xcb\xc1\x1d\x92\x78\xc6\x23\x9b\x51\x8a\xc4\xab\xe7\x10\x0a\xaf\xb2\x51\xcf\x2b\x9d\x14\x61\xc6\x65\x44\x97\x75\x38\xa9\xb8\x4b\x8d\x1e\x21\x09\xa9\x96\xcd\xea\x81\xc8\x4a\xf7\x18\x27\x27\x69\x20\xf2\x31\xae\x80\xff\xaa\x66\x95\x7d\x60\xb1\x3d\x36\x59\x41\x95\xb3\x1d\xc6\x99\xb3\x1b\xca\x38\x73\xb6\x23\xdc\x6c\x6b\xb2\x62\xf8\x9b\x13\xb3\x62\x09\x3b\x88\x51\x06\x14\x1e\xe2\x0f\x44\x3b\x22\xdb\xc9\x84\x09\x31\x99\xc2\x35\x33\xda\xa7\x92\x2f\x8c\xba\xe9\x8c\x47\xff\x5c\x56\x19\xfb\x7b\xb8\x05\x2c\x2e\x47\xd5\x8a\x58\x64\x26\x14\x7a\x26\xda\xe7\x27\x15\x8f\xf4\xac\xee\xd3\xde\xf2\xf6\x16\xc3\x28\x34\x83\x74\xc6\x87\x1c\xe7\xa0\xc1\x8f\xb4\xe3\xef\x34\x78\x7c\x13\x36\x51\x08\xc0\xb3\x81\x49\xb8\x08\x37\xeb\x61\xbe\x9b\x88\x8a\xc4\x76\x50\xd1\x03\x77\xa1\xbd\xcd\x27\x1b\x0a\xe2\x1e\xc7\x76\x60\x7b\xd0\x0a\x96\x48\x45\xed\x80\x00\x4e\x61\x34\xb6\x3a\x4a\xf1\xe3\x66\xa0\xc2\x31\x54\x72\x50\x69\xbb\x57\x6d\x15\x37\xb6\xf1\x4c\x92\xaf\x31\x6a\x96\x75\x13\x28\xa8\x15\x0d\x05\xbf\xb2\xf6\xd2\x64\x27\x16\xec\x7c\x05\x88\xa0\x4a\xb1\xff\x5e\xd5\xa3\xd6\xd3\x6c\x65\x8f\xef\x35\xcd\xd1\x42\x87\xc9\xf8\x97\xb4\xd0\x61\x95\xbc\xaa\xf4\x9d\x50\x6e\x41\xa5\xe2\x1e\xb1\x63\xb1\x48\x1f\x75\xa6\x6d\x24\x85\x68\x0a\xcb\xe9\xae\xd0\x3c\x34\x5b\x41\x09\x82\xd8\xb5\x7c\x6c\xc6\x36\xdb\x4b\x0f\xcd\xb5\xb3\xca\x45\x13\xb9\xfa\x77\xa7\xaa\x39\x71\x51\x41\x40\x4e\x63\x8d\xc7\xa0\xbd\x8d\xc9\xc4\x27\x78\x35\x3c\x54\x14\x22\xfb\xcb\x0d\x02\xf3\xcf\xb6\xd7\x85\x74\xd8\xd4\x2a\xf5\xa5\xce\xb5\x61\x9a\x5b\x8c\x00\x81\x59\x68\x9a\xcd\x39\xe5\xab\x0f\x12\x36\xbe\xe2\x0a\x71\xd4\x54\xfa\xbe\xc4\xf8\x9f\x8f\xa6\x5e\x6d\xef\x8c\xae\xb3\x70\x89\x56\xd1\xb1\x36\x95\x5f\x1b\x02\x00\x31\x79\xf1\x38\x6c\x24\x3c\xd8\x8f\x7f\xd8\xe0\x84\xb7\xbf\x6d\x0f\x17\x36\x71\xd5\x65\xd0\xf8\x7f\x4c\x9f\xe2\x63\x05\x44\xed\xa5\xbd\x1e\x13\x45\x1c\xb8\x17\xdc\x47\xe1\xc0\x0b\xa9\x28\x4f\xcc\x18\xb5\x72\x0c\xa2\x93\xca\x5d\xfe\xbc\xb2\x8d\x39\x8f\xb9\xcd\x7f\xa4\x2a\xa8\x61\x66\x4d\x31\xc9\xd8\x9a\x54\xe6\xbe\x5f\x9c\x6e\x35\x30\xf4\xe1\x16\x47\x33\xc3\xd5\x67\x3d\x41\xe9\x9c\xea\xfa\xac\x45\x96\x30\x7c\x7a\x37\x83\x6a\x38\x36\xcc\xb3\x4a\xdf\xeb\x7f\x6f\x24\x5b\x84\x36\x33\xa3\x28\x6c\xa9\x5a\xc6\xeb\x4a\x38\xf0\xf5\xe0\x49\x59\x66\x0f\x8f\x6d\xd2\x8b\xe8\x5e\xe6\x14\x53\x1e\x03\x4a\x17\x73\x1d\x67\xab\x7c\x11\x28\xd5\x71\xdc\xce\xdb\xa2\xa3\x6c\xf5\xa3\xc4\xd2\x0c\x15\x18\xbb\x17\x3c\x44\x09\x02\xeb\xf2\x53\x1d\x0f\x92\x99\xdb\xa0\x0c\x0e\x23\xe7\xfc\x54\x09\xc6\xbe\x5a\x4b\x4c\x7f\xa9\xea\x07\x2d\x1e\x01\xf4\xa6\xf8\x44\x3d\x4b\xc8\xf2\xfd\xe2\x2f\xfc\x27\xad\x79\x11\x57\xfc\x37\x48\x17\xd9\x35\x67\xea\xa3\xa9\x3f\xa7\x20\x48\x36\xeb\x72\x0a\x88\x72\x73\x19\x75\x62\x85\xfd\xdb\x40\x89\x9c\xbc\x89\x49\x0f\x7d\x88\xaf\xf1\xd4\xc2\x1a\x7d\x03\xab\x3d\xe2\xa6\x1f\x21\x00\x44\x8b\xe1\xdd\x40\xb1\xc7\xde\xa5\xd9\x20\x31\x18\xbd\x00\xc6\x2a\x40\x64\x0a\xa9\xdb\x5f\xb0\xf4\x3f\x2e\xf3\x4d\x55\x9e\xfe\x16\xc5\x70\xd8\xf6\x40\x68\x57\x94\xc7\xfd\x3c\x49\xce\x52\xf1\x8b\x31\x53\xe5\x54\xdc\x3e\x83\xfc\x09\xb3\xf0\x3d\x34\x4a\x50\x77\xf8\x16\x69\x64\x88\x14\x23\xad\x49\x8c\x71\xc3\xae\x20\x2d\xbe\xd6\xa1\xe7\x38\x76\xfe\x06\x51\x0f\x1d\x98\x73\xd1\x79\x79\x5f\xd4\x0d\xde\xab\x44\x37\x94\xa1\xb8\xfb\xb3\x62\x3e\x08\xed\x6e\x5c\xf4\x91\x26\xb5\x02\xd3\x4d\xfd\xcb\xc6\xfd\x00\xd5\xc2\xc7\x4a\x3c\x20\x19\xe4\x8f\x29\x16\x3d\x87\x8a\xb8\xfc\x27\x20\xca\xe6\xaa\x0f\x5e\x92\x6e\x6e\x83\x5e\x22\xc3\xd5\x30\xf6\x10\xaa\x6f\xd1\xd8\x40\xde\x72\x82\x56\x3e\x6c\xff\xd7\x38\xbe\x00\xa6\xfb\xa9\x8e\xdf\x69\x00\xae\xc6\xa2\xf7\xd3\x40\x63\x51\x14\xb7\xfc\x54\xa7\x7c\x48\x95\xc6\x94\x73\x93\x77\xe8\xb2\x67\x9f\xe9\x94\x6f\x13\x00\xa1\x1b\x8d\xfe\x66\x66\x94\x4f\xca\x0c\xb0\xbc\x31\x79\x00\xf4\x05\xf2\x64\x9e\xf4\xed\xe0\x2c\x9d\x8c\xc1\x45\xa1\xdf\xc3\x56\x7a\x41\xb7\x38\x2f\x28\x0c\x40\x98\x26\x79\x84\xf5\x73\x46\xb5\x31\x94\x74\xd4\x9b\x53\x6f\x66\xf1\x7a\x6d\x81\xfb\xf9\x76\x6e\xb3\xc8\xa5\xc0\xe2\x9b\xe2\x01\x5b\xe7\x9c\x4b\x7b\x62\x8b\xa1\xcd\x62\x93\xf4\xb8\xbe\x87\x28\xfb\x32\x4f\x20\x4c\x62\xde\x1d\x59\xde\x65\xaa\xe4\xde\x9b\xd4\x4f\xf2\xb1\x95\x58\x42\xa2\x7c\x0f\xe2\x65\x25\x14\xec\x80\x27\x2b\x0c\xba\xc9\x60\x58\xf0\x15\x33\x29\x77\xaa\xb2\x94\x93\x4d\xad\x95\x2c\x8d\x63\x0b\x26\x3f\x26\xc3\x65\x15\xe1\xb0\x95\xbf\x58\x1e\xee\x4c\x84\x96\xf7\xb5\x27\xfd\x94\x7f\xf0\xff\x97\xb6\x3b\x99\x08\xf6\xdc\x0e\x88\xec\xf0\x28\xfd\x22\x1f\x4f\x2b\xae\x55\x23\x32\x6c\xc3\x0f\x08\xd4\x4e\x21\x2b\x15\xfe\x30\xb3\x79\xb1\x1e\x83\xca\x2e\x42\x75\xb7\x89\x76\xc3\xc7\xb5\x0d\xf9\xc0\x62\x7b\x64\xb2\x81\xc9\xa2\xc4\x2a\x66\x08\x28\xab\x7c\xec\x8a\xbd\xd1\x68\x6c\xb3\xbe\x65\xcb\x66\xc6\xe3\x04\x1a\x9b\x53\x09\xcb\x53\x6c\xa5\x5a\xb1\x40\xbe\xb1\xf1\x75\xa7\x2b\xb8\x04\x69\x7d\xd0\x84\x96\xde\x87\xbf\x49\x7b\x18\xea\x2a\x0f\xfa\x36\xc7\x5c\x47\x43\x72\x15\x9c\x94\xf1\xa0\xf8\x1f\x76\xb5\x61\xab\x25\xa5\xe9\x73\x49\xb9\x0a\x73\xec\x8d\xb9\xff\x3d\x20\xb7\x50\x1f\xfc\x3f\x02\x8d\x79\x4f\xd2\xc8\x95\x5f\x2a\x7d\x1e\x69\xed\x34\x25\xc0\x66\xd4\x35\x79\x6e\x7a\x69\x86\xd4\x03\xc1\xf9\x3f\xc3\x75\x39\x4d\x32\x57\x1a\xb9\xa8\x94\x07\x2c\x89\x9b\x97\x23\x61\x56\xa9\xe9\x70\x41\x8f\x4f\x94\x26\xde\x36\xbd\x75\x3e\x76\x31\xb1\x29\xa4\x73\x89\x82\x13\x6a\x6a\x08\x0c\xf8\xb8\x41\x67\xfb\x60\x7b\x64\x7a\x30\x38\xf5\x45\xe3\x45\x5f\x34\xf6\x9a\xf1\x5d\xf3\x5f\xb6\x54\x36\xf9\x7e\xa0\x30\x95\xef\xbb\x61\xd4\xcf\xa2\xd5\x34\x26\xb7\x15\xd7\xa4\xc7\x37\x8a\x5e\xd3\x63\x9e\x8a\x90\x4f\x46\x36\xcb\xb9\x42\xee\x84\x31\x3d\xa3\x90\x93\x0a\x91\xef\x94\x20\xa8\x9c\x09\xd9\x24\x44\x40\x47\x7f\x8e\xc8\xe5\x32\x46\x07\x9f\x78\x4f\xcc\x74\x2d\xc9\xa3\x57\x64\xa1\xc4\x7e\x8f\xae\x84\x38\xc0\xa8\x64\xf8\xaa\xca\x24\xfb\x93\xf2\x37\xa8\x63\xcc\xdd\x65\x25\x0d\xfc\xea\xd4\x67\x81\x71\x3a\xe9\xe5\x63\x6b\x56\x88\x68\xeb\x8d\x7b\x99\xef\x23\x10\x52\x3d\x83\x16\xf7\xff\xc2\x13\xe5\x6b\x54\xa6\xaa\xb2\x43\x71\xc3\x0b\xb7\xdd\xa2\xf6\xae\xa8\xc6\x28\xac\x3b\xb2\x2f\x57\x34\x73\x56\xa9\x47\x03\xe5\xbb\xb1\x4d\xa1\x84\x53\x00\x70\x7e\xc4\x00\x43\x49\x07\xc0\xcf\x90\x99\x8e\x62\xc4\x1e\xc1\x0c\x71\x19\x6d\x19\x20\xa1\x3e\x73\x3d\x68\x3d\xfd\xb4\x2b\xac\xe2\xfd\xb1\xe2\xa1\x66\x38\x9d\x77\xe9\x75\xd7\x9a\x70\x28\x6f\x4b\xea\x3d\x9a\x09\xaa\x36\x42\xb6\x9b\xea\xc6\x16\x36\x8a\x42\x36\x6a\x39\xa3\xe7\x93\x5a\xf6\xea\x1e\xef\xee\x88\x58\xdf\x50\xb2\xa4\xa8\x97\x3f\xa0\x52\xe5\x7f\x46\x5b\xa2\xd0\x3c\xbd\x20\xc2\x51\x8c\x1c\x26\xf8\x06\xca\x3a\xf5\x5d\xe4\x79\xae\x82\xe2\x7a\x7f\x27\x1d\x4c\x26\x35\x2b\x30\x0f\x70\x02\x01\x9b\x0a\xc4\x7c\x45\xdf\x66\xdd\x34\xec\x73\xed\xb1\xc9\x56\x86\xe6\x65\x88\xf5\x57\x10\xbe\x7c\x12\x3c\xec\x6b\x04\xd1\xac\x12\x4c\xfc\x30\xd0\x9e\x36\x2d\xa7\xd4\x72\x4d\x99\x6a\xd5\x51\x73\xfb\x0f\xb5\x5f\x9e\xe4\x45\x14\xda\x96\xc2\x37\xbd\x1f\xf8\x48\xe8\xfd\x1a\x20\x60\xff\xa1\x32\x07\x1b\x28\x61\x07\xb8\xd1\x49\x4c\xa4\xc0\xbe\x36\xcc\x6c\x61\xb2\xf5\x3d\x5e\x7a\xe2\x1a\xc5\xe9\xcc\xde\x9d\x7a\x34\xd3\x0d\xf5\x98\xbe\x36\x55\x72\xea\xac\x48\x26\xf4\x9c\x06\x09\xee\xf0\x15\x1b\x0e\x09\x03\x8c\x11\x81\x14\x0b\x2d\x85\xbb\x78\xe2\xd2\xab\xf8\xa4\xe6\x5b\xc5\xcc\x43\x94\x68\x9e\xfe\x92\x4f\x1c\x19\xd7\x1e\x0e\x6d\x9e\x47\xab\x96\x60\x85\x4e\x22\xd3\x37\x2d\x5e\x9d\x7a\xe4\x13\x74\xc5\xa4\x5c\xd0\x54\x97\x0b\xd3\x71\x54\x25\x58\x6f\x2a\x88\x4d\xdd\xfc\x60\xff\xa1\x76\x9c\x76\xbb\xeb\x1f\x0b\x2b\xf7\x35\xa3\xe1\x24\xef\x9a\xa4\x47\xee\xef\xc8\x2f\xb7\x82\x8a\x11\xf1\xa2\x30\x19\xcf\x4c\x55\xf1\xe3\x24\x21\x18\x58\x4b\x5d\x39\xe6\x6a\xef\xda\xd3\xda\x8a\xec\x42\x05\xa3\x91\x0d\x6c\x96\xcf\xfa\xf1\xc2\x62\x7e\x7c\x32\xf5\x8a\x1f\x77\xd4\x20\xb9\xa3\xe8\x2d\x45\x96\xa6\xe3\x96\x77\x42\x01\xd7\x9b\x8f\x95\x7a\x4f\x5e\x64\x51\x58\xc4\xeb\x2a\x72\x80\x92\x2e\x1f\xd7\xf6\xe1\x03\x8b\x50\xf1\x19\x46\xb9\x95\x47\xce\x48\x50\xb5\x72\x1f\xd1\xde\xf9\x69\xfc\x09\x7a\x32\xf2\x5f\x94\x5c\x54\xf4\x17\x51\xb3\x85\x59\xa9\x58\x30\xa8\x75\xec\xda\x54\x6b\x8f\x83\x41\x48\xf7\x83\x67\xfd\x89\x8e\x92\x2e\xe1\x05\xdc\xf1\x78\x9c\x7c\x31\x03\xc4\x85\xe1\xac\xbc\x6f\x0c\xb0\x19\x5c\x80\x51\xd5\x3d\xe0\x92\x45\x36\xf2\x51\x45\x1d\xee\x46\x21\xd5\x4c\x45\x8b\xa8\xe5\xdc\xbb\x8e\x29\x1e\x40\x65\x66\xd8\x55\x9b\xd9\x39\xba\x77\xfc\xe5\xb6\x82\xb2\x9f\x45\x02\x84\xb4\x00\x75\x76\x27\x86\x5e\x2e\x8e\xfc\x57\x2a\x39\x81\x2c\x29\x03\x5e\x1c\xed\xea\xac\x12\x81\x3f\xab\x94\xe3\xa9\x5b\xbb\xc7\xa7\x52\x17\xa7\x1a\x6f\x70\x15\xa9\xb1\xd8\x76\xa8\x9c\x01\x25\x2b\xd9\x5c\xe9\x95\x88\xed\xb9\x83\x30\x96\xdf\x9d\xad\xcf\x28\xf1\xb2\x4d\x45\x40\x7d\x80\x62\x4b\xbc\xbb\xfb\x0d\xe0\xa5\xfd\xed\xbc\x30\xdd\xae\x44\xf3\x78\x3d\x6f\x29\xa1\x88\xb7\xea\x66\xf6\xfb\xdb\xd9\x44\x20\x23\x62\xbb\x44\x3f\x2f\x36\x4a\xb2\xcc\xbc\x9c\x0e\x93\xbc\x48\xd7\x12\x7a\x59\x1c\x87\xea\x9e\xc3\xe5\x40\xf3\x5c\x84\xfc\x6c\xa1\x72\x27\xed\x15\x1f\xac\xfd\x40\x7b\x8d\x5f\x6b\x42\x0f\x33\x5a\x9a\x27\x86\x88\x66\xe8\x2e\xfb\x27\x15\x81\x64\x92\x84\x43\xe4\x7b\xac\x41\xad\xa6\xde\x16\xde\x83\x88\x53\xfb\xf9\xb9\xe5\xd0\x19\x85\xc9\x57\x18\x4e\x8d\x55\xf3\x0c\x1e\x03\xb0\x44\x78\xf2\x8e\xa9\xbb\xb8\xc8\x2d\x99\xab\x50\x30\xac\xec\x90\x64\x85\xef\xd9\xb4\x74\x19\xc2\xac\xad\x7b\xcd\x2e\xb6\x87\x26\xee\x53\xe7\x45\xc4\x3c\xa8\x78\x82\xf4\x04\xd7\x2a\xe1\x54\x13\x7c\xa7\x3b\xc9\x22\xbc\xf0\xfd\xae\x7d\x40\x37\xcb\x27\x0d\xe4\xa7\xb6\x3d\x6c\x46\x51\xc2\x75\x74\x57\xf4\x2f\x1f\x9d\x04\x4f\x8d\x89\xe9\x9a\xb4\x56\x30\x86\xbf\xa2\xb4\x84\xbe\xe2\xe3\xfa\x49\x91\x8e\x52\x38\x98\x2c\x0a\xd1\x90\x91\xcf\x88\x6a\xe0\x2a\x8d\x87\x7c\x55\xc5\xd7\xa3\xb1\x09\x5d\x29\x06\x8f\x17\x98\x33\x3e\x6e\xa2\x34\xad\xa5\xd9\x4a\x3a\x61\x0d\x5f\xb1\x8c\x6e\x39\xf2\xe2\x09\x85\xde\xee\x4f\x92\x64\x9d\xb4\x00\x44\xec\x5a\xb5\x03\x94\x53\x4a\x7d\x57\x7c\x7e\x5f\x7b\x35\xca\x8a\x89\x2c\xd1\xa2\x45\xe9\x6f\xe3\x42\x13\xdb\x35\x4f\xd7\xbb\xd6\x24\xf9\x4e\xfd\x17\x3f\x94\xdd\x2a\x38\x1e\x9b\xcc\x02\xe0\xa3\xa5\xf0\xf9\x58\xed\x66\xdc\x75\xe1\xae\x99\x38\x91\xab\x2c\xec\xb4\x6e\xa2\xbc\xa3\x50\x08\xa7\x55\xa4\x39\xc8\xac\x2d\x73\x6c\xa7\x72\xcd\x81\xbf\x98\x15\x6b\x04\x62\x34\x32\x65\x6c\xb4\xcd\xee\xf8\x0c\xd3\xd5\xa3\xe5\x2f\x2b\x11\xed\xdf\xd1\x6f\xa2\x96\xf2\x3e\xed\x48\xdb\x8d\xae\x24\x71\x34\xea\xe2\xd1\x54\x3c\x01\xf9\x44\x49\xb1\xe7\x71\x34\x1e\x47\xa8\x4a\x1d\x14\xaa\x54\xa0\x69\x53\x4f\xd4\x08\x36\x58\xc6\x91\xb9\xde\x53\x3c\xca\x7b\x0e\x57\xb5\x16\x25\xbd\x7c\x48\x1c\x8a\x19\x25\x86\xbc\x7b\x47\x8f\xd6\x05\x24\xd7\x6b\xc5\x96\x03\x8b\xed\x6e\x34\x50\xc6\xf1\xb7\x03\xe5\xe0\x72\xdb\x01\x57\x72\x6b\xc7\x18\xd5\x2f\x32\x32\x99\xcb\x09\x7c\x52\x83\x6f\x89\xd5\x4b\x94\x19\x49\x36\xb1\xa7\xef\xea\xa8\x57\x70\x55\x5b\x32\x9f\x57\x78\xf6\xb4\xdf\x8f\x42\x9b\x21\xab\xc6\xbe\xf1\x86\xe2\xf0\xbe\x51\xeb\x9e\x2e\x2e\x1e\x6c\x4f\x12\x9b\x84\xa4\xf4\x2d\x13\x10\xfb\xde\xb5\xa9\xdf\x0f\xaf\x35\xba\x07\x90\x4f\x9e\x96\xf7\x7f\x15\x5d\x7c\x81\x44\x78\x85\x57\x1b\xdb\xb0\xc8\xd2\x24\x0a\x79\xbb\x41\x81\x54\x64\xc3\xf9\x4c\x0d\xd3\x91\x59\x59\x33\xc3\x96\xce\xb7\x79\x21\xe1\x93\x4a\x86\x3a\x29\xd2\xbd\x3e\x7e\x3b\xa5\x28\x09\x37\xa7\xbe\x3a\x8f\x80\x8c\x52\xc1\xc9\x63\x14\x3f\x3a\xf0\xa9\x5f\x42\xb6\x35\xb1\xe3\xcf\xa6\xaa\x3e\xf1\x4d\x6d\x31\x15\xe5\x11\x8f\x34\x59\xa1\xfc\xc6\xf0\x9e\xee\xf0\x46\xe5\x83\x6d\x29\x68\x2a\xb6\x10\x3e\xde\xc9\x67\x99\xdf\xdf\x7e\x7e\xdf\xb3\x0f\x7b\x08\x28\x63\x8a\x45\x3e\x13\xcf\x83\xc5\xbf\x51\x43\x47\x7c\x73\x8e\xee\x53\x74\xf2\x7c\x41\x63\x8e\xee\x53\x7e\xad\x4c\x6e\x04\x33\xa5\x8b\x17\xaa\x23\xf1\x23\xec\x20\xe2\xb9\xab\x74\x9a\x99\x45\x59\x6e\x50\xf2\xb6\xcb\x67\x2e\x2f\xbb\x81\xf2\x14\x47\xdd\xcc\x64\x88\x89\x19\x98\x5f\xb1\x8a\x7a\x4c\x33\x96\x57\xa3\x41\x8a\x3d\x18\x51\xfd\x71\x2c\x6d\x40\x14\xb2\xa6\x2b\xff\x8f\xb2\x30\x38\xa9\x8a\xf4\x76\xf5\x19\xda\x77\xa4\x54\x52\xfe\x94\x4b\x9a\x17\x9d\x77\xf4\x96\xe3\xea\x8e\xcc\xfa\x8c\x0a\x62\x6e\x2a\x35\xd3\xf7\x28\x60\x13\xd6\xa0\xa7\xf1\xa5\x63\x06\x57\xb5\x1c\xe1\xfe\x53\x54\x9f\xe1\x63\xd5\x25\x2f\xd2\x34\xa6\x56\xdb\xc2\x82\x64\x53\xc7\x2b\xfe\xe1\xbe\x70\xf8\x76\x2d\x36\xfb\x5c\xbb\x90\xbd\xdd\x81\x69\x11\x5d\xca\xae\xb3\x33\xa1\x78\x7e\x5f\x3b\x1c\xa6\xb1\xcd\x0b\x9b\xa5\xb1\x8e\x65\xa7\x2a\x96\x55\x86\xd7\x49\x9a\xad\xa5\x69\x8f\xe7\x98\x88\xf1\xd3\xf3\x10\x35\x7e\xff\x6c\xc3\xd8\x3e\xe0\x46\xd5\xe7\x1f\xdb\x50\x1d\x62\xb6\x0f\x40\x19\xf8\xc7\x94\xe8\x0b\x29\x1a\x5f\xcd\x55\x44\xba\x0c\xca\xfc\x96\x3e\x0d\x2b\x02\xb1\x30\x91\xf8\xc1\xf9\xbc\xf5\x1e\x2c\x47\x96\x34\x1e\x68\x50\x20\x67\xdc\xa0\x0c\x06\x0f\xf0\xb6\xe2\xcf\x7e\x1a\xf4\x4d\x4a\x56\xfe\xcd\x4f\xa1\x32\x24\xee\x37\x3e\x01\x66\xbe\x3e\xd6\x4d\x5e\xb2\xb1\x04\xdc\xf4\x3e\x4d\x26\xeb\x91\x99\x1a\x0d\x25\x44\xb4\xb7\xb0\xac\x69\x83\x29\x8c\x92\x13\x7a\x08\xc7\xb6\x37\x10\x86\xac\xab\x10\xfa\xce\xd0\x85\xe0\x1f\x34\x50\x84\x87\x69\x56\x98\x81\xed\xc7\x9e\x1b\x85\x50\xe4\xb8\x16\x90\xf5\xfd\xe5\x91\xc9\xa5\xdc\xeb\x3c\xca\xcb\xbf\x13\x8f\x72\xaf\x81\x34\x5c\x1f\xa7\x61\x16\xe5\xeb\x7a\xfb\x39\x83\x9d\x9c\x4f\xdc\x8e\x98\x9b\x30\x8b\xfa\x51\xe8\x60\xdd\x78\x2a\x68\xdc\x63\x21\x81\xe3\x29\x62\x8b\x63\xb5\x90\xe7\xc0\x62\xdb\x26\xf9\x24\x93\x28\x11\x8b\x12\xab\xc0\xf2\x89\x12\xb0\x0c\x27\xa3\x88\x51\x06\x4d\xbe\xca\x0d\x75\xa0\x9e\x1d\x99\xa4\xc7\x41\x98\xa8\x0a\xf9\xe6\xc8\xc9\x46\x49\x82\x2e\x35\x61\x1a\x94\x25\xd0\x57\x7e\xa4\xe3\xbd\x85\x58\xe1\x16\x51\xd7\xae\x8d\xc7\x7d\x64\x3a\xd2\x96\x15\xec\xde\xaa\xec\x01\x36\xa7\x4f\x28\xf7\xf9\xb5\x7c\x9c\x45\x49\x41\x0e\x8f\xae\xde\xe9\xc0\xeb\xd7\xb4\x06\x1f\x92\x71\xac\x3c\xa7\xf0\xa0\xc4\xe7\xc6\x93\xae\x33\xcf\x6a\xc3\xd7\x7d\x9f\x7e\x1a\xc3\xf9\x86\xea\x8e\x68\xfe\x10\x84\xbf\xe3\xf5\x3d\xad\xc5\xc5\xed\x13\x81\x9a\x6a\x58\x73\xa4\x18\xd9\x7a\x61\xc9\x15\xcf\x75\x95\xb2\x9c\xc2\xdb\x27\x1a\x3a\x07\x5c\x08\x1f\xbb\xa1\xea\x48\xd9\x6e\xb1\x39\x5a\x8b\x95\x0e\x3d\xd7\x0e\x27\xd0\x85\xc4\xa5\xde\xa0\x1b\x07\x34\xa3\xd5\x51\x2a\x55\x97\x7c\x42\x90\x45\xa3\x28\x31\xe2\x3d\xed\x1e\x52\xf9\xf2\xf9\xc4\xc3\xa1\xd2\xd1\xd8\x16\x76\x8f\x6f\xf9\xb3\xe4\x8d\x72\xaf\x13\x06\xd0\x2e\x5a\xaa\x51\x04\xb8\x8d\x75\xc5\x49\x6b\x3f\xbf\x8f\x13\xdb\x6d\x05\xc8\x31\x5d\x93\xf4\xd2\xa4\x5c\x88\x97\x9c\x9e\xef\x69\x65\x54\x7e\xba\x81\x9e\x4b\xf8\xde\x4a\x5a\x7d\x23\x50\x69\xf5\x8d\x86\x4c\xf0\xc5\x72\x9d\x8d\x66\x54\xf4\x75\x74\xea\x7f\x64\x37\x0a\x33\x62\x25\xaf\xed\xd1\xd2\x7e\x54\xe4\x0f\x94\x17\x8f\x67\xd8\x82\xa6\x2a\xc3\x1d\x90\xfa\x0a\x2a\x4f\xa9\x21\xdd\x50\x5e\x21\xbf\x85\xf2\x99\x64\x50\x2a\xcd\x79\x55\xd5\x5d\x4c\xbf\x6f\xa2\x6c\x56\xa3\x45\x69\xce\x62\xe1\xb9\x42\x8f\x04\x5f\x71\x55\x27\x7c\x6f\x37\xe9\xbf\xe5\xa6\x8f\x16\x9b\x70\x02\x7d\x27\xf8\xa4\xab\x39\x00\x48\xee\x3c\xce\x45\x78\xce\xe3\x53\x4e\x28\x96\x7e\x3f\x9e\x84\xc5\x84\xd6\x50\xcd\xac\x04\x88\x95\x8f\x37\x76\x5e\xc9\xe2\x62\x7b\x64\xa2\x78\x46\xc9\x80\xfc\xad\xee\x81\x61\xe3\x04\x29\xe0\xa2\x93\x22\xe9\x03\x9f\xd3\x83\x0a\x16\xb2\x05\x0e\x9a\xb0\x58\x7f\x8d\x6e\x47\xc4\x97\x77\x32\x47\xe6\xe7\xdb\xbd\x88\x40\x4d\xc2\x03\x63\x49\x9c\x1d\xf2\x38\xbe\x5f\xb3\x56\x06\xe6\xa8\x6e\xf0\x3c\xa1\x38\x0e\xb0\xa9\xa3\x53\x6f\xa3\x79\x87\x62\x16\x41\xd9\xc8\x8e\x61\x7a\x91\xa1\xdf\x41\xe6\x79\x4a\xcb\x90\x9e\x52\x11\x77\x6e\x46\xe3\xd8\x62\x81\x15\x60\xb9\xaf\x75\x6a\x1f\x8a\x22\x9b\x84\x2b\x2a\x7d\x3b\x4b\xb1\x27\x1f\x2b\x25\xdc\xbe\x89\xe2\x49\x66\x67\xbc\xec\xc7\x55\xac\x73\x68\x5f\xdd\x54\xc0\xff\xd9\x1a\x5f\xeb\xf9\x7d\x8b\xed\x68\x54\xc6\x85\x12\x05\xa1\x6a\xf3\x37\x8a\x8a\xf6\x37\x6e\x11\x48\x27\x45\x1e\xf5\x2c\x29\x48\x00\xdd\x23\xaa\xcf\xa2\x4a\x52\x3e\x32\x07\xde\x28\x5f\x38\x0b\xb1\x6c\xa8\xa9\xf5\x91\xff\xee\xff\xf3\x67\x68\xe8\xe0\x61\x1e\xc7\xeb\xd5\x8a\xe3\x48\x19\x6f\x2b\x2b\xd8\x4f\x51\x86\xb6\x7d\xa4\xb9\xe3\x9a\xe7\x69\x18\x19\xd2\xf4\xf0\x60\xcf\xfb\x7c\x8d\x58\x77\x1e\x46\x8a\xc7\xcd\x00\x2d\xd2\x38\xb3\xe1\x25\xa6\x13\x33\xb2\x73\x7e\x84\x6f\x4d\xb5\x40\xda\x59\x2d\x9f\x70\x5b\x11\xb1\xbe\x88\xb7\x2e\x8c\x65\x19\x1b\x71\x64\xb1\x90\x63\x13\xbc\x45\xb3\x8b\x8f\x6b\x9c\x27\xe2\x2f\xc6\xb1\x29\x6c\xc6\x1c\x75\xb4\x12\x76\x6d\xf8\xb6\xc2\xae\xce\x93\x1a\xf6\x11\xc6\x93\x9e\x4b\xdf\x91\x4c\xdf\xc1\x8d\xf1\x49\x2d\x90\x28\x63\xa2\xdf\x9c\x58\xfb\x8a\xbc\x75\xcc\xf5\xcb\x6a\xde\x5f\xd6\xa5\x3f\x3b\x28\xf7\x22\xdd\xb0\x98\xaa\x86\x45\xe0\xa9\x91\x85\x39\x1c\xa9\x22\xcb\x09\x55\x64\x69\xda\xea\x0e\xaa\x60\xb4\xa5\x0b\xb9\x6a\x9a\x36\xf6\x43\xf2\xe8\x70\x31\x9c\x71\x3d\x90\xdf\x7e\x8c\xc6\x11\x9a\x8c\x0f\x6e\xd0\x5e\x2c\xe4\x37\xa5\x57\xd9\x9b\x84\x8c\xcb\x7d\x7e\x9f\x6b\x5c\x2a\x11\x84\x37\xa6\x4a\x45\x01\x18\x4e\xf4\x44\xee\xd6\xca\x75\x0b\x0b\xed\x7c\x1c\x65\x51\xd1\x52\x16\x98\x97\x94\x37\xdb\x25\x0d\x62\x20\x21\x8b\xbc\xa0\x11\x85\x64\xf0\x32\x8d\x69\xc4\xc8\xd7\x08\xf6\x8a\x55\xe7\x03\xe0\x84\x19\x33\xa8\x54\x5c\x2e\xbb\x25\x3b\x4a\x56\x6d\x5e\x44\xc9\x40\x5b\x05\xdf\xa7\x27\x8d\xf2\xd2\x35\x35\x77\x8e\xaa\x5c\xe8\x9b\x4d\xbc\xde\x3c\x4e\xd7\x66\xbc\x64\xe1\x19\xda\xa2\xf1\xc6\xd0\x12\xc7\xca\x7c\xab\xc9\xd4\x62\x64\xf3\x3c\xcb\x9f\xa9\xc0\x61\xce\x06\x0a\x0e\xa3\x55\xb5\xe2\x94\x4d\xe3\x98\x68\x3b\x55\x36\x31\xbb\xd8\x4a\x13\x5b\xdb\x11\x4a\x94\x1d\xcc\xc1\x35\x2e\xee\xa2\x17\x23\xd5\xac\xf2\x01\x02\x78\xf4\x8d\xaa\x16\x6a\x79\x07\x5a\xaa\x45\xa2\x03\x97\x77\x7e\xfb\x27\x6a\x0b\xe1\xfc\x7c\xdb\x1e\xb6\xa1\xdf\x2f\xd0\xd8\x79\x55\xc9\x1b\xbc\xaa\x16\xdd\xdc\x0e\x46\x36\x29\x08\xe0\xad\xf4\x15\x65\x17\x7c\x8d\x7e\x57\xb4\x16\x69\x0b\xe3\xff\x50\xb0\x92\x35\x93\x03\x4a\xef\x4c\x3c\x6e\x69\xa1\xe1\x5b\xd3\x9f\x74\x0c\x45\xdb\x8b\xc2\xe2\x9f\xfc\xe7\xa6\xb7\x9a\x86\xa2\x8a\x8d\x75\xf2\x75\x2c\xb3\x7c\xa2\x36\x9a\xcc\x8e\x4d\x94\xed\xa9\x08\x63\x39\xbd\x41\x0e\xd0\x11\x0c\xa0\x55\x8a\x46\x09\x1a\x7e\x15\x88\x0b\x9e\xfd\xdb\x2e\x7d\x7c\x39\x9d\x64\x89\x89\xa3\x7c\x34\xe3\x37\x27\x94\x7a\x1d\x59\x5f\xf5\x08\x6a\x33\xa7\x0c\xc3\xb2\x28\x17\xa1\x13\x67\x4a\xe1\x0d\x2a\x94\x24\xca\x6f\x4e\x4c\x96\xc1\xb5\x40\x13\x66\x30\x6a\x6e\x2b\x0a\xe1\xbb\xae\xc3\x53\x60\x72\x20\x93\x40\xe0\x80\x92\x03\x1f\xd7\x16\xc3\xa5\xe5\xa5\x76\x91\x99\xf1\x58\xd6\x20\x04\x6f\xcc\x59\xe6\x93\xa9\x97\x30\x8e\xd3\x7c\x8f\x7a\xe8\xe7\x31\x63\xb1\xdc\xc0\xa2\x93\x8f\x03\xff\x9a\xce\x63\x99\x11\x25\x5e\x1f\xa6\xd7\x57\xb7\x85\x85\x76\xd7\xe4\xb6\x22\xfc\xf8\xce\x54\x09\x3f\xbe\xa3\x2a\x64\xdd\xcc\x44\x1c\x8b\xa1\x32\xc0\xd4\x13\x3e\x51\x8b\xdf\xd8\x26\xb6\xc8\x68\xf0\x38\xa9\xc4\x4d\x65\xec\xbf\xa9\x6c\x42\x63\x6b\x7a\x96\x55\x15\xca\xdf\x15\xde\x3c\xbd\x57\x8c\x87\xd9\x0e\x66\x2c\xc6\xea\x6d\xc5\x6d\xa7\xec\x25\x2e\x8c\xb4\xfa\x9c\x3c\x45\xf9\x61\x09\x45\x1b\x72\xcf\xea\x62\xc2\x6e\x1b\x3a\x63\xfa\xab\x5a\x94\xb7\xb8\xd8\xa6\x0d\x3f\x56\x9a\x92\xdc\x94\xc4\xcf\x49\x87\xd2\xf3\xdc\xf2\x61\x99\x25\x2d\x2f\x71\xe4\x78\xb3\x82\x5a\x28\xdf\x1d\x2a\x4c\xef\xd6\xf6\xe5\x72\xb3\xea\xd9\x51\x1a\x66\xc6\xfd\x56\xa5\x54\x2f\xf2\x1a\x3b\x05\x9d\xc8\x57\x5d\xf1\x7f\xb9\x1a\x8e\xbd\x13\x92\x92\x58\x28\xb0\x84\x33\xd2\x46\xc5\xa6\x66\x3c\x2e\x77\x8f\x96\x9f\xbe\x10\x32\x17\xe9\xd0\x06\xe3\x82\x71\x66\x73\xea\xb5\xd2\x18\x12\x32\x25\xfd\xae\x50\x2e\x3f\xa9\x1a\xa2\x51\xc8\xdc\x67\x4c\xfc\x77\x95\xe8\xdc\xbb\x4d\x65\x82\x35\x13\xf7\xd2\xac\xdf\xf2\x80\xf4\xdf\xd3\x44\xfb\xdf\x0b\x9e\xf4\x59\x32\x98\x95\x22\xe7\xe1\xec\x9a\x3c\xe7\x5d\x8d\xe6\xbe\x1d\x99\xd8\xaa\x3f\xc4\x00\x15\x22\x8b\xc6\x0b\x98\x28\x99\x53\xe0\xae\x73\x9a\xd3\x75\x5b\x5b\x53\xdd\xd6\xdb\x78\x50\x26\xe3\x58\x89\x2f\xa9\xad\xe9\x17\xf6\x7f\x41\xf9\x8e\x5c\x56\xab\xc5\x65\xd5\xfa\x18\x67\xd1\xc8\x64\x51\xbc\x3e\xa7\x94\xd3\x99\x29\xc2\x76\x81\x81\xdf\xac\xd8\xa2\x1f\xf9\x19\x76\x55\xfe\x84\x17\x31\x4c\x0f\xa3\x30\xca\x85\x06\x0e\x32\x81\xb7\x46\x55\x48\x4a\xcd\x0d\x52\x0d\x50\x78\x48\x04\x35\xeb\xd6\x1f\xe5\xcf\x44\x57\x00\x68\xf6\x1d\x47\x57\xcb\x57\xa2\x38\xce\x91\x8e\x29\x95\x25\x59\x5d\xee\x2a\x68\xea\xc5\x8a\x01\x7c\x3e\x5b\x6e\xcb\xb8\xd6\xfb\x15\x4d\xa1\x96\x93\x56\xff\x11\xbd\x59\xf9\xf7\x9d\xe1\xc6\xa1\xe7\xda\x23\xb3\x82\x54\x45\x7f\x8f\x2b\xa8\x2b\x10\xcc\xa3\xba\x97\x66\x0a\xa8\x3a\x20\x51\xbf\x3f\x55\x70\xb8\x4b\x15\xeb\x0a\xa0\x1b\x81\x93\x3a\x89\xa5\x10\x21\x02\x98\x32\xc0\x74\xdc\x55\x02\x32\x99\x09\xcb\x65\x31\x84\xa6\xa6\xc0\xbf\xce\xea\x8d\xf8\xac\x9b\x2b\x99\x35\x71\xf4\x8a\x2c\xcd\x0c\x47\xae\x62\x93\x2b\x94\x9a\x28\x34\x28\x61\x23\xfe\xba\xa1\xcc\x57\x6e\x38\x30\xf5\xd0\x9a\xd5\xf5\x35\x1b\x0d\x86\x85\x0a\xf7\x37\x15\x8a\x68\xb3\x56\xed\x59\x58\x68\x0f\x53\xfc\x39\x3a\x84\x20\xbd\xf0\xb1\x6b\x8c\x75\x27\x45\x91\x42\x44\x06\x31\x10\x2a\xe3\x7c\xac\x82\x85\x35\x13\xaf\x44\x49\xab\xf5\xf4\xd3\xa2\xaa\x0d\xa4\x9f\x48\x6c\x37\x00\x89\x63\x7b\x38\x4a\x06\x45\x45\x69\xea\x03\xbc\x18\x3e\x29\x43\x9d\xff\xc2\x95\x7b\x8b\x09\x17\x2d\x51\x8b\x67\xc6\x23\x9f\xb8\xc1\xb9\x96\xe1\x39\xb8\x7e\xee\x6b\x3a\x91\x7e\x4d\x5d\xf2\xba\x49\x56\x6c\xaf\xe5\xb1\x90\xd5\x45\xe5\x09\x55\xa7\x63\x15\xe1\xbd\xb4\x05\x63\xf6\x7f\x95\x02\x34\x0d\x08\x66\x37\x15\x6c\xe6\x48\xe7\x4e\xa8\xde\xf8\x11\x02\x07\xf2\xbf\x07\x15\x4a\x5e\x39\x9a\x31\xfb\x1e\xea\x28\x8d\x7b\x52\xe0\x46\x1e\x8a\xbe\xed\x9f\x4d\x95\x6c\xc9\x9f\x11\xe9\x42\x54\x89\xb4\x44\x51\x23\x95\x73\x32\x1e\xda\x98\x67\x3a\xe0\x86\x1f\x29\xa5\x6d\x6e\x5f\x89\x70\x51\x13\x0f\x0b\xe1\xa0\x44\x38\xcc\xe4\x52\x9e\xc0\xa7\x1a\x3e\xd5\x2e\xf3\xca\x30\x4b\x27\x3c\x37\x80\xe7\xfa\x1e\x3d\x15\x3e\x6e\xe0\xb6\xb5\xcb\x2b\x9d\xa5\x0f\xa0\xfa\x08\x59\x30\x65\x94\xb7\xbf\x42\x2c\x12\x92\x9d\xc4\x6f\x23\x1b\xc7\xa9\xc1\xb0\x72\xfa\xf5\xe5\x83\x13\xa1\xc1\xba\x4a\xc8\x52\xbb\x1f\x25\x46\x15\x90\x51\x8e\x78\x5d\x95\xbb\x5f\x57\xdb\x8c\xcd\xc7\x26\x31\xad\x72\x35\xe3\x75\x0e\x2f\x54\x16\xbd\x7a\xe1\xf0\xd9\xb6\x59\x33\xeb\xb3\x9e\x5d\x74\x77\xea\x2d\xd1\x1f\xe9\xa8\x56\xa3\x82\x70\x5d\x70\xc4\xdf\xd8\x50\x95\x98\xb3\xba\xfb\x78\x06\x28\x3a\xfc\x44\x87\x72\x1a\x07\x5e\x28\xd7\x12\x64\x6e\xb7\x76\x72\x54\x3d\x79\xb5\x41\x05\xb5\x17\xe5\x45\x9a\x61\xe6\x48\x40\x57\x3e\x5d\x09\xf4\x1a\x76\xf1\x78\x32\x1a\x3b\x35\x21\xcc\xf4\x53\x81\x5f\xca\x4f\x35\xb5\x1f\x86\x66\x30\xf0\x3e\x86\x62\xf2\xe8\xf1\x08\x27\x15\x99\xa1\xc8\x4c\x92\xf7\xb9\x73\xcd\xfd\x7e\xa5\xb2\x7e\x69\xfa\x0f\x3f\xa6\x2d\x9f\xd8\x55\x9b\x15\x43\x1b\xdb\x3c\x9f\x6d\xcd\xcf\x7b\x61\x29\x91\xec\x38\xf1\x78\xc7\x67\xc6\xdb\xba\xed\x58\xcf\xd4\xa9\x43\xea\xc5\xca\xdd\x7b\x5a\x58\x70\x0d\xdb\x06\x2c\xce\xd0\x14\x19\xab\x20\x39\xdf\x04\x1f\x37\x4f\x95\x0c\xfc\x8f\x1c\x0c\x7d\x92\x98\x30\xb4\xe3\x02\x3e\x3b\x3e\x12\x08\xbc\x0f\xe0\x05\x65\x63\x96\x3c\xb3\xfa\x4c\x45\x08\x9d\x89\xe9\xe2\x17\xf3\x84\x16\xdd\x27\x23\xbf\x1c\x3d\x0a\x81\x16\xb6\x9c\x6d\x08\x70\x95\x22\x21\xfe\x98\xb2\xf6\x18\x97\x93\x9e\xea\x1d\x42\xab\xa1\x21\xc6\x27\x81\x2a\x36\xbc\x4b\x2b\x1c\x1f\x37\xc1\x93\x7a\x76\x90\x59\x16\xd3\xc6\x5c\xfc\x4e\x45\x9b\xd9\x23\x20\x4e\xd4\x10\x10\xf2\x6a\xf1\x80\x24\x66\xc1\xf3\x87\xf4\x00\xa2\x8f\xc7\x3b\x0a\x82\x7c\x4f\x25\x82\xa3\x34\x29\x86\xf9\x5e\x65\xcb\x3b\xb7\x41\x17\x2f\x6a\x1b\xad\x5f\xf9\x0d\x46\x4a\xfd\x90\xc6\x09\xf6\xc2\x6f\xd2\x4d\x21\x6c\x98\xe9\xf8\x58\x9b\x63\x23\x5c\x3a\x1b\xa5\x22\x82\x98\xed\x34\x94\x7a\xc2\x74\x64\x7b\xa0\x16\x03\x6b\x79\x43\xe9\x88\xde\xd0\x9e\xfe\x36\xb3\xc5\x8c\x17\x88\x60\x16\x8a\xf6\xfb\x46\x59\x76\x77\xcd\x6f\xec\xa5\x97\x60\x8a\x6b\x73\xcc\x62\x97\xcf\xf9\xb6\xef\x59\x25\x42\x16\x4e\xba\xa8\xee\x8b\x4c\xb6\xba\xa1\xf3\x81\x97\xb5\x78\xfa\xe9\x9f\xa3\x41\x23\x5e\x88\xea\xcf\x1e\xe8\xd0\x13\x74\x62\x5b\x4e\xc2\x7e\x2f\x19\x90\xe3\xdf\x5b\x1d\xcf\xfb\xfb\x1a\x96\x21\xa9\x5b\xd3\xcb\x70\xe6\x5c\xbf\xfe\xab\x3c\x30\x59\xb8\x52\x28\x88\xe5\x0b\x90\xb9\x09\x16\xa4\xa3\x2b\x2c\x4b\x00\xd0\x82\x50\x37\xe2\xc0\xd9\x8e\xf7\xf1\xfc\x08\x56\x88\x92\xc7\xd1\xd8\x45\x48\xbd\xa5\x14\xdd\xb8\xc9\x4c\xd1\xdd\xa1\xc7\x37\x88\xe0\x09\x52\x34\xb6\x18\x4c\x92\x2f\xa2\x42\x83\x89\xf8\x45\xee\x9a\xa3\x7a\x80\x4a\x02\x8b\xd9\x05\xad\x97\x5e\x12\x39\xbf\x4e\x6b\x5e\xf6\xd5\x27\x36\xca\x1d\x1b\x4b\xce\x29\xa8\x0f\x89\xac\x55\x39\xf6\x9c\x60\x6b\xb9\x9a\xf2\xe0\x73\xd0\xc7\xbe\xc9\x46\xb9\x16\xf2\x3d\x17\x28\xab\xcf\xba\x28\xe7\xf3\xfb\x16\xdb\x7d\xd2\x6e\x52\x05\x49\x6c\xd7\x92\x66\x4a\xc4\xd4\x4f\x63\x47\x2e\x43\xdc\xff\x21\xbe\x9b\x4f\xd4\x90\x59\xb3\x49\xb1\xb7\x7c\xe8\x28\xce\xcd\x6c\xa8\x26\xd6\xa6\xaa\x1f\x9e\x54\x6e\xd2\x6c\x0c\x8e\x6a\xff\x65\x4c\x14\xc1\x6b\x78\xc7\xd9\x6f\x7b\x11\xb3\xbb\x8f\x75\x1e\x53\xb2\xce\x71\xba\x56\xae\x3f\x9a\xd3\xa9\x08\x9e\xf4\x43\x80\x73\x31\xc7\x85\x4f\x6a\x5d\xa4\xfd\x87\xda\x93\x9c\xf7\x12\x57\xbc\x50\x0b\xf2\x13\xca\x59\x3a\x8f\x5c\x05\x48\x00\x4a\x50\x21\xe6\xe3\x8e\x06\x35\x0d\x6c\xf6\x78\xf9\xa5\x6c\xc3\x1f\x28\x5d\xa7\x63\x18\x6f\xe2\x2f\xa0\x4a\x66\x17\x15\xe4\xf4\xae\x92\x38\x62\xcb\x29\xbc\xfe\xbd\x1b\xce\x18\xe0\xb7\x3f\x85\xbb\xe3\xba\x15\x66\x8e\x58\x60\xd1\x50\x72\x22\xdc\x07\xbc\x53\xae\x2f\x53\xdc\xe1\x24\x07\x0b\xce\x79\x92\xbb\x72\xee\x75\xfb\x0f\xa1\x78\x77\xf5\xf1\x0d\xed\xbc\x1d\x78\x5c\x58\x2f\xca\xcd\x78\x6c\xa1\x76\x79\x40\xea\x99\x67\xe8\x07\xc4\x33\xec\x11\x05\x1b\xc8\x8a\x19\x0d\x57\xb9\xa9\x0d\x3a\x7e\x7f\xaa\xe4\xb9\x6e\x68\x57\xce\xd4\x8c\xd4\xeb\x39\xae\x5e\xcf\x71\x95\x47\x1e\xb6\xbd\x87\xbd\x11\x41\xd6\xee\xf8\x9a\xf8\x43\xc0\xab\x08\x9f\x5e\xc1\xc5\x1e\xe2\xfa\xb0\x18\x83\xb7\x9c\xae\xf0\xa7\x41\xfe\x55\x32\xa1\x4b\xcc\xb9\xbe\x89\xc5\x0a\xdf\xb6\xad\x10\x2d\x9f\xd8\x50\x36\x50\x3f\xd3\xd9\x19\xed\x2d\x2d\x2f\x11\x00\x1d\x85\x7d\x3c\x9e\x6f\x61\x58\xf0\x89\x03\x74\xd8\xc3\x61\x3c\xc9\xa3\xd5\xa8\x80\xd5\x21\x06\x07\x73\x87\xa4\xcc\xd0\x72\x2a\x2f\x0c\x7d\x44\xc5\xf4\xa4\x82\x3b\xd9\xd1\x78\x68\xf2\x28\x6f\x29\xa1\xf2\xb9\x0d\x25\x61\x3e\xd7\xf1\x0f\x70\x60\x7a\xe8\x0f\x63\xb7\xbb\x46\x1c\x67\x2c\x5d\xdb\x4a\x55\xf6\x84\x56\x43\xf9\xd7\xea\xc7\x32\x6b\xc2\xa1\xd4\x9d\x9d\xad\xbe\x6b\x69\x6e\x06\xfe\x95\xc6\x51\x62\x1f\xa6\x95\x59\xb0\x64\xbe\xff\x7c\x99\x9a\x16\xc2\x36\x50\x96\x56\x37\xa6\xda\x93\x93\x6e\x9f\x19\xd8\xc0\x48\xb0\x0a\x3a\xe6\x00\x32\xb0\x73\xf4\xfb\xfc\x5d\x3c\xd4\x71\x35\xb7\x41\xf5\x17\x90\x47\xc5\xdd\x29\x1b\x3d\x42\xbf\x24\x61\x3b\xbd\x22\x20\x86\xce\xc0\x71\xd8\x29\xd8\x97\xef\x03\x41\xf9\x16\x2e\x82\x65\x0e\x03\x5f\xed\x86\x89\x2c\x4a\x34\xe7\x95\x3a\xe4\x2d\x0c\x7e\x54\x4a\x4e\x4c\x15\x40\xe1\x0a\x96\x46\xa7\xa9\x56\xbe\x5b\xc1\x1d\xab\x04\xf1\x9a\xcb\x6c\x06\x59\xd4\xeb\x49\xec\xe3\xdc\x2d\x5c\x40\x7c\x13\x83\x4c\x3a\xce\x3b\xd3\x1c\x09\xa1\x6c\x1c\x43\x3b\x64\xc9\xb1\xbe\xe8\x0b\xf9\x64\xfa\x94\x87\x3c\x67\xe9\x38\x8b\x50\x74\x24\x11\x1e\x60\x1e\x84\x4d\xc1\xd0\x47\xdc\x1f\x87\x07\x81\xef\xc5\x9f\xd5\x00\x83\x8d\x26\x70\xee\xd0\x66\x73\xd8\xd1\xb1\x1a\x40\x41\x12\xcf\xf9\x2e\x14\xee\xb0\x2b\xb6\x3a\xe5\xaf\xbb\x6d\xc3\x55\x2a\xee\x2b\xe0\x63\x94\x13\x67\x8e\x7e\x13\x2b\xe3\xb5\x40\xb1\x6d\x8e\xf0\x45\xb3\xef\x59\x43\xb6\xfa\x6c\x9b\x94\x46\x5c\x8e\x8b\x64\xe9\x5f\x06\x0a\xb7\xff\x2f\x6b\x99\xd3\xc2\x42\x3b\xb6\x26\x4b\xd8\x84\x4f\x0a\x51\x4a\x98\x62\xb3\x41\x94\x4d\x4f\xfc\x56\x6d\xb2\xf3\x71\x05\x3a\x9b\x16\x29\x5e\x3b\xb6\x5e\x54\x82\x78\x4c\x61\xb0\x60\xd1\x3a\x55\x4b\xd4\x5e\xd8\x7f\xa8\x1d\x9a\x38\x96\xdb\x92\x72\x96\xae\x6d\x39\x1f\xbc\xa7\x13\x3c\x40\x60\x01\x6f\xa0\x88\x83\x25\xe4\x08\xc1\x07\x7c\x37\xc3\xa1\xcf\xbb\x76\x8f\xd6\x7c\x60\xa5\x0a\xdd\xd0\x04\x1e\xf4\xdf\xe2\x49\x6a\x99\x77\x8c\x0d\xd6\xaf\x16\x63\x22\xa7\x2f\x9a\x0a\x4d\x03\x33\x9e\xad\x31\xf9\xa4\x66\x0d\xfa\xf3\xed\xd8\xac\x5a\x86\xb1\x8a\x33\x1c\x7d\x82\x4f\x94\xde\x56\x1c\x47\x48\xb0\x50\x60\xe0\x91\xca\x27\x8d\x86\x68\x94\x3e\xc4\xeb\xa8\x7a\x0a\x01\xce\xf7\xa6\x77\x75\x7c\x87\xe9\x46\x6d\x6c\x7d\xce\x15\xfe\xd9\xc0\x0b\x6b\xdb\x96\xee\x31\x6c\xd5\xba\xdb\x24\x85\x0b\x64\x9b\x0b\xd0\x70\x2b\x68\x96\xf1\xb1\x42\x7c\x0c\xe2\xa8\x78\xa5\xa5\x94\xd1\xef\x21\x9a\xe4\x93\x9a\x1f\x9a\x5b\x11\x0e\x13\xa8\x84\x03\x4c\xcc\xde\xaf\xe3\xe2\xf8\x44\xe9\xa9\xe4\x63\x13\x46\x5c\xd2\x79\xd6\xc9\x8f\xf9\x4d\xea\x84\xd2\xd3\xcd\xc7\x36\xe9\xed\xf5\x3b\xdb\xec\x86\xd6\x9e\xa0\x21\x80\xb7\x7e\x63\xba\xfb\xb3\x4e\x92\xc2\xa3\x2b\x1f\xe9\xa8\x9e\xe8\xb1\x40\x99\x16\x41\xd7\x12\x3b\xe1\xb7\x1b\xa5\x8e\xad\xe9\x45\x31\x2c\x6b\xc4\x45\xd4\xb7\x47\x2e\x34\x2d\x47\xa3\xb4\x3b\x83\xc1\xeb\x2a\x73\x8b\x12\xac\x82\xac\x87\x90\xe1\x58\x93\x20\x41\x04\xb7\x4c\x07\xe0\xc1\xc8\x97\xe5\xbc\x21\x1b\xee\xa6\x80\x9c\x7b\x07\xf9\xb3\x8a\xe4\x77\x56\x15\x20\xf3\x74\x52\x0c\xad\xc9\x19\x2a\xe0\xc4\xe0\x95\x8e\x90\xfa\xe3\xa1\xed\xf7\x23\x1b\x33\x9d\x41\x18\x6a\xca\xb0\x74\x53\x55\xb2\x32\x53\x0c\x6d\xf6\xb0\x4f\xa4\x38\xbf\x13\x02\x1b\xfd\x20\xb0\x0d\x77\xb1\xce\xa3\xf9\xde\x42\x38\x0a\x08\xf7\x75\x2a\x45\xf2\xea\x4c\xc1\x2c\x76\x62\x38\x16\x0a\x5d\xa4\x8a\xcd\x39\xe0\x78\x47\x81\x02\x93\x6b\x94\xa6\x8d\x09\x5c\x58\x58\xa8\x3b\x8b\x15\x8d\xe2\x07\x5e\x53\x9d\x86\x93\x53\xbd\x50\x94\x5f\x2f\x3e\x36\x8e\xb4\x6f\x0b\x9b\x8d\xa2\x04\x35\xd5\x67\x9d\x60\x1f\x5d\x17\x16\xa2\x97\xe8\x0b\x51\x01\xfe\x50\x07\xf2\xef\xa8\x5a\x4a\x1e\x25\x03\x33\x4e\x33\x70\x79\xb1\xd3\xdc\x53\x9a\xb1\xda\xaa\xe5\x14\xbe\x1d\x38\xb5\xaf\xd4\xda\x19\x0b\x0b\xed\x3c\xed\x33\x35\x4a\x4a\x95\x2d\x27\x3f\x76\xa9\xc9\xfe\x78\x1c\x9b\x28\x99\xf1\xa8\x04\x14\x47\x45\x98\xb0\x4c\xbb\xa5\x63\xe4\x0b\x69\x49\x9a\x95\xaf\x39\xc1\x94\xc5\xd4\xda\xbd\xe1\xa7\xd9\x6e\x95\x71\xf5\x0d\xfd\xed\xac\x82\x44\xdf\x51\x62\x64\x67\x03\x5f\xf7\xe2\xb2\xb3\x98\xa9\x34\xf4\x18\x4c\x0c\xc1\x42\xac\xf9\x5f\x86\xe6\x10\x06\xc7\x05\x1a\x28\xb2\x5f\x36\x50\x0b\x47\xb6\x30\xe3\x21\x43\xf8\x91\x8b\x9e\xc7\x10\xe4\x93\xe9\xc3\x6e\x4d\x9a\x0c\x15\x9c\x99\x5b\x79\x7c\xd2\x54\x60\x1e\x45\x63\xe9\xc0\x62\x29\xe7\x58\x97\x4f\x14\x57\xe1\x79\x96\xd0\x77\x8a\x05\x8a\x81\xe7\x24\xb4\xc6\xe9\x64\x30\x5c\xb1\x76\x9c\xf3\xae\x22\x02\xce\x4a\xd6\xfa\x82\x9a\xa2\xa6\xdf\xb7\xe4\x9f\x02\x59\x0f\xf4\x68\x5a\x1d\xda\x6b\xb1\xa8\xef\x22\x4d\x3b\xd1\xbf\xf2\xeb\x69\xdf\x9a\x0c\x7d\x5c\xf1\x4f\xaf\x40\x68\x5d\x87\x2e\x1c\xa6\x29\x1a\xb2\x8e\x77\xac\x29\xc3\x3b\xdf\x54\x99\xb1\xf4\x52\x8a\xe7\x31\x2b\x2e\x63\xa9\xe5\x93\xa6\xb5\x72\x92\x83\x3c\x88\x86\x18\xb4\xf6\x5c\x72\xb9\x2c\x1c\xf7\x37\x6a\x2f\xf6\x85\xe5\x7d\xed\x7c\xd5\x26\x85\x5d\x69\x69\xe4\x1f\x13\xe7\xf9\x44\x4b\x3a\xd9\xf8\x21\xef\x15\xfa\x6d\x85\xa5\xde\xbb\xa1\x34\x2f\xb7\xb8\x1c\x83\xe5\x1d\xfb\x91\x84\xa4\xf4\x8c\x30\xd2\xd9\x5d\x58\xdc\xc0\xca\xcc\x47\xf5\x3a\x5f\x74\xaa\x78\x34\xce\x60\xf2\xff\x54\xc7\x17\x11\x7b\x36\x89\x6c\x6f\xd6\x97\x02\x7e\x5b\xb5\x0b\x6f\x51\x3a\x2c\x95\x3a\xfa\x06\x6e\xfd\xd4\xf6\x8b\xf9\xfd\xed\x70\x18\xd9\xbe\xaa\xd3\xdd\x52\xf6\x87\xb7\xa6\x5a\x3b\xc6\xe4\xae\xe7\xef\xc4\x20\x96\x15\x45\xd2\x61\xd8\x4f\xa9\x1c\x7c\x38\x19\xd8\x87\xe9\xc6\xb1\x4c\xbc\x15\x28\xe3\x86\xb7\xa6\xbe\xa8\xf9\xae\x86\x6b\x43\x2a\x17\x33\xfd\x8f\x14\x72\xe9\x5b\x08\x04\x99\x9e\x81\xba\xa9\x68\x1c\x38\x0c\xdd\x67\x7e\x30\xf5\x79\xd2\x97\x9e\xa0\x88\x48\xe0\xfc\x1e\x8c\x90\x17\x69\xc6\x68\x61\x29\xd6\x70\xe9\x91\x4f\x94\x14\x66\x94\x80\xf6\x6d\x93\xd0\x62\x3b\xe3\x96\x2d\xd6\x01\xe9\xdf\xea\xa4\xae\x6b\xa8\xbb\x2e\x1e\x05\xbf\xcf\x51\x3f\x72\xac\x9b\x58\x8e\x11\x29\x9f\xd3\x70\x26\x04\x3b\xfc\x57\x0a\x58\x3e\x34\xe3\xb1\x25\x70\xbf\xb7\xc4\x78\x97\x1e\xbf\x18\x3f\x97\x4f\x12\x03\xad\x2e\xbb\x5a\x8e\x75\x1b\xf7\xd2\x51\xab\x22\xd7\xaf\x10\x8d\x4a\xe6\x62\x32\x18\xc0\x12\xb5\xe5\x65\x3e\xa7\x4a\xff\xb3\x41\xe6\x6f\x7f\xdb\x24\xc5\x30\x4d\xd6\xa9\x28\x23\xb5\x0d\x15\x25\x5f\x72\x70\xe8\x74\xd5\x66\x60\x91\x7b\x85\xb9\xdb\x4a\x1a\xf1\xf6\xf4\x49\x45\xd4\x0e\x57\xe2\x09\xc9\xf4\xd3\x9b\xe6\xee\x09\xe5\xba\xd2\x49\x51\x0d\x70\xd8\x35\xa4\xd9\xfa\x03\xde\x4f\xf5\x2e\x64\x0b\xb6\x68\x37\x43\x88\x07\x75\x44\xe4\xfe\x2c\x9b\xa4\x38\xff\x12\xf7\xbc\xa9\x76\xd2\xd7\xeb\x02\xa3\xcf\x1d\x6c\xe7\x93\x6c\x1c\x4f\xb0\x0a\x02\x72\x88\xaa\x02\x1f\x6b\xa8\x74\x9a\x98\xc2\xcc\xf8\xce\xc6\x1b\xf4\x87\xee\x76\x1c\xc5\xfc\x08\xaa\x50\x3c\x84\xcc\x68\x46\xf5\x83\xce\x29\xe7\xec\xdb\xc4\xc5\x60\x77\xa5\xba\xa6\xff\xf2\xd2\x67\xdb\xfd\x98\x38\xd8\xe8\xb3\x60\x1b\xdf\x52\xdf\xb0\xa9\x5d\xe4\x55\x9f\xa5\xa0\xfe\xf9\x60\x8f\x5f\xe9\x20\xb9\x82\xe5\xf5\x4c\x50\xa9\x16\xd3\xd4\xe1\xbf\x52\xa8\x84\x33\x53\x15\xf1\x9d\x57\x62\x50\x99\x0d\x6d\xb4\x8a\xa6\x92\x4a\x2f\x3d\x3a\xf9\x92\xca\x21\xe2\x34\x34\xf1\x5e\x7a\x00\xe2\x9a\x47\xf7\xe2\xd8\x7a\xcb\xfb\x38\x63\xf9\x3e\xdd\x0b\x9a\x1e\xdc\x40\x16\x77\x7b\x25\x65\x7c\xb1\x7a\xf7\x07\x44\x0c\xee\xfb\x81\xef\xd7\x9a\x7c\x92\xd9\x39\xc5\x68\x40\x6a\x85\x11\xf1\x00\x05\x2a\x14\xf1\xfd\x37\x4f\x74\x94\x36\xdb\x03\x64\x54\x89\x92\xc4\x7d\x95\x74\xac\x98\x2c\x1a\x69\xb1\x28\xcc\x08\x51\x8e\x52\xb6\x52\x69\x66\xe2\x18\xe0\x40\xe7\xd4\xee\x50\xeb\x37\x75\xbd\xb6\xd5\xf9\xb8\x6a\x0a\xe9\xc0\xce\xf8\x56\xc2\x7d\x05\x81\xbe\xa0\xc3\x8a\xcb\x0e\xce\x5d\x44\xb6\xb7\xc7\x73\x9a\x2e\x2a\xab\xda\x73\xd3\x8a\xf0\x33\x5d\x01\xd6\xd0\xc7\x95\x37\xd6\xe9\xa9\xef\xb4\xd5\xa1\x3d\x87\x9e\x6b\x8f\x6d\x91\xa5\xb1\x4d\xe1\xef\x84\x4d\x8d\x81\x10\x7c\xa2\x21\x80\x93\x7e\xbf\x0c\xf8\x5e\x58\xde\xe7\x9b\x1e\x8b\xde\x41\xae\xfc\x2d\xfe\x77\x84\x05\xe2\x26\xb7\x73\x57\x7b\x01\x75\x4f\xf8\x45\x28\xbd\x61\x2f\xb5\xd1\xd0\x5a\xed\x9a\x38\x4e\x0b\x05\x1e\xfb\x6e\xe0\xc1\x63\xdf\x75\x0d\x10\x12\x82\x9e\x75\x44\x87\x7f\xfc\x58\xc7\xb3\x37\xae\xeb\x80\x6f\x76\x43\x63\x5b\x7d\xd0\xe5\x7c\x40\x68\x7d\x95\xd2\x27\xad\x6f\x7c\xa2\x86\x50\x37\xcd\x6c\xb2\x47\xe9\x7f\x1c\xc1\x4f\xe0\xaa\x8e\x07\x5a\xc8\xed\x38\xca\x95\x62\x5b\xdd\x72\x4a\x1a\x1f\x62\x3e\xf2\x17\xb8\x95\x38\x8c\xcd\xb8\xc8\xcc\xb8\xe5\x1b\xfa\xe8\x44\xc8\xfb\x6c\x50\x83\x18\x4f\xb2\x71\xea\x20\x9d\x8d\xb6\xbd\x8f\x3a\xae\x40\xfc\xff\x72\xf6\xe7\x41\x72\x9c\x69\x7a\x18\x0e\x54\x35\x00\x12\xe0\x4d\xce\xec\xa1\xdf\x4f\x5b\x63\xaf\xc4\xb0\xc5\xa0\x14\xd6\xf1\xc7\xda\x11\x59\x06\x7a\x87\xc3\xf6\x4e\xb3\x0d\x62\x40\x89\xe1\x08\xf3\xeb\xac\xaf\xab\x72\x3a\x2b\xb3\x98\x99\xd5\xcd\x66\xf8\x0f\x45\xd8\xe1\x50\xd8\x0e\x85\x43\x52\xec\x3a\x6c\x87\xed\x95\x64\x87\x25\x6b\x43\xda\xd1\x5a\xde\xd9\xd5\x2a\x6b\xce\xbd\xe6\xe0\x3d\x04\x6f\x80\xb8\x81\x46\xe3\x68\x5c\x0d\xa0\xe1\xc8\xf7\x79\xdf\xef\x7b\xb3\x2b\x69\x6f\xf8\x2f\x66\x12\x5d\x55\x79\x7c\xdf\x7b\x3e\xef\xf3\x14\xc2\x80\xdb\xa4\x99\xeb\x13\x99\xa1\x49\x7a\x64\xb7\x5b\xfe\x9a\xd1\x50\x91\x16\xa7\xf7\xc4\x8b\x51\x58\xc5\x6c\x49\x12\x55\x49\xee\xe1\x83\x9e\x31\xc6\x75\x31\xbf\xc0\x41\xad\x9a\xcc\x95\x2c\x79\x9c\xa2\x36\x1c\x44\xeb\x03\x26\xf5\xba\x0a\x7b\x8a\x74\x34\xa2\x92\x55\xf5\x82\x9a\x8a\x63\x6a\x64\xc0\xc6\x48\xbc\x1d\x37\xa8\x1b\x73\x59\x57\xd4\x3f\x22\x4d\xb9\xdf\x4f\x43\xbf\xa2\x2a\x10\x88\x2c\x91\x34\x7e\x4b\x87\x3e\x2a\xa7\xe2\x34\x01\xf5\xf1\xcb\x88\x2b\x5d\x66\xe0\x27\x80\x27\x78\xf1\x08\xdf\x19\x1b\x87\x2f\xd8\xfa\xc2\x12\x0c\xf1\xf5\x2d\x71\x79\x48\x5c\x19\xfd\x9a\xf8\x38\x25\xd6\xd9\x5b\xb1\x59\x11\xe5\x36\xcb\x01\x93\x81\x3d\xbc\x13\xd4\x70\x12\x87\x0f\x3a\x9c\x04\x5d\x28\xff\xd1\x54\x99\x69\x6e\xee\xb0\xf8\x70\x87\xcb\x60\x19\x04\x7a\x0c\x22\x89\xb0\xb3\xc6\x42\xea\xa6\x26\x0b\x6d\x8c\x58\xce\x45\x52\xd5\x8f\x09\x80\xc5\xe3\x66\x4d\x18\x8f\xc9\x1a\x49\x5b\xd1\xa7\x75\x9f\x2a\x95\x0e\xdb\xff\x8b\x9a\xbd\x19\x0b\x8c\x8f\xd5\x06\xcd\x4c\x2f\x4a\xb1\x1b\x50\x76\x44\x9b\x98\x8f\x15\x98\xd8\x54\x71\xf6\x8a\x23\x41\x7d\x91\xdf\x0a\xc8\x9b\xf8\xd8\xcd\x33\x26\x51\xb8\x9c\x98\xa1\xed\xb5\xbd\x68\x0d\x4f\x29\x4a\xdc\xa3\xaa\x70\xb7\x15\x03\x46\x18\xdb\x15\x9b\xc5\x6b\x3b\xe8\xe8\xb4\x54\x86\x58\x32\xb3\x92\x46\xe0\x26\xc2\x98\x0f\x02\x7f\x2d\x86\x08\x24\xc3\xb7\xf0\xc3\xf0\xbb\xb5\x4e\x22\xf4\x38\x64\x50\x40\x59\x2d\x93\xdb\xde\x3e\xd8\x26\x5c\x22\xba\x03\x22\x8f\xee\x7b\xa5\x57\x94\x2a\xcc\x2d\x32\xf0\x0a\x2c\x27\xdd\x72\x86\x25\xc3\xda\xdf\x6d\xb0\xdd\x55\x2c\x16\x15\x16\xa5\x02\x27\x53\x5e\x7d\x81\xe0\x08\x3d\xc2\x0c\x15\x12\xa9\x16\xee\x4c\x28\x0f\x1d\xea\x14\x23\xd3\x52\x48\xbd\xf3\xc4\x48\x29\xbc\xf9\x0d\x7e\x63\x64\xb2\x65\x21\xd5\xa9\xcd\x24\xc8\x3a\xd4\x29\x24\x3a\xb4\xc8\x14\xf7\x74\x69\x1d\xe0\x41\x7c\x4e\xc6\x02\x2f\x77\x0b\xc5\x52\x14\xd5\xff\x5c\x57\xe5\x83\x6d\xf4\x45\x45\x91\x9f\x2e\x13\x55\xa2\xdd\x5d\xff\x22\xdb\x13\x8d\x3c\x3f\x05\x7d\x23\xf8\x88\xff\xa1\xf4\x0d\xdb\xdf\x87\xeb\xa2\x77\xf2\xf6\x63\x20\x25\x46\x95\xf5\x94\x62\x18\xbe\x4d\xc9\xa4\x13\xd3\xd2\x0b\x49\x75\xf4\xef\x36\x21\x64\x8b\x70\x38\x6a\x79\x60\x1c\x53\x1b\xf2\xc9\x54\xee\x7f\x68\xb6\xb3\x14\x15\x68\x08\x3a\x25\x57\x97\x18\x5d\x55\x35\xee\xb3\x58\x83\xf0\x67\xed\xae\x14\x1b\x62\x5b\x0c\x4c\xdc\xf6\xf5\x17\x26\x05\xc7\x43\x85\x2a\x37\x2c\xe6\x0d\x15\x74\xe4\x51\x9f\x74\xe2\x67\x8f\x78\x49\xe1\x05\x7f\xa2\x09\xc7\x69\xdd\xfa\x5c\xcf\xb7\x8b\xc7\x49\x0f\x81\xaa\x93\xc4\x74\xd5\x57\xa8\x8b\x20\x14\x6e\x81\x67\x40\x54\x30\x2b\x8f\xb2\x0d\xbc\x13\x93\x98\x93\xe9\xc0\x32\x9f\xc1\x9b\x96\xd6\x4f\x03\x88\x60\x90\xc6\xa8\x7c\x20\x47\xb9\xa9\x30\x15\x27\x34\x56\xe7\x82\x02\x20\xe7\x66\xdc\x8b\xda\xaa\xed\x7d\x8f\x23\x08\xdd\x15\x15\x47\xe2\xa7\x65\x07\x6b\xa3\xb4\x18\xd8\x82\xd0\xf5\x28\x4c\x3b\xcd\x3e\x51\x7e\xff\xcf\x2f\x3a\xeb\x65\xc7\x59\x3a\xb2\x26\x11\x46\x1a\x94\xd3\x79\x5c\x51\x9a\x82\x2a\xb3\xd9\x37\xf1\x5b\x64\xbc\x58\x3c\xe0\x13\xf9\xfb\x6a\x64\xf8\x11\xa4\x6a\x20\x98\xdb\xc2\x12\x40\xd5\x0e\x9c\xfe\x8e\xc3\xd8\xcb\x1a\x30\x69\x09\x50\x3e\xf7\x4a\x3f\x57\xba\xab\xfb\xe7\x1b\x26\xf1\xc6\xd9\x08\x7a\x9d\x5c\xad\x6f\xc2\x2f\xfb\xc0\x20\xb1\xfd\xd8\x86\x05\x58\x2b\x19\x59\x81\xda\x86\xc0\x2c\x7c\x78\xf2\x39\x99\x36\x3e\x56\xc3\x57\x61\x9c\x56\xbf\x37\xa3\xe5\xc4\x4e\x29\x12\xb7\x8b\x0a\x8a\xc6\x31\x3c\xff\xd1\x4e\x22\x98\xb9\xb9\xce\xd1\x83\x0b\x4f\x90\xe1\x00\xd2\x12\x09\x2c\xea\xe7\xcc\x0e\x8f\x2f\x2a\xd4\x32\x43\x3f\x13\xa9\x13\xe2\x15\x78\x67\xec\x7a\x9e\x05\xd5\x75\x2b\x2e\x4f\x39\xae\xe3\x79\x27\xd7\x8f\xed\x81\x14\xe3\x47\x9a\x7b\x9a\xdf\x02\xd0\x62\x1f\x50\x14\x03\xc7\xf2\x16\xa2\x78\x14\x48\x7e\x1d\x05\x75\x7c\xd7\x65\x7a\x57\x1a\xa5\x8b\xcc\xf2\xb2\x6a\xf7\x65\x31\x23\xf8\xa4\x72\xea\x71\x94\x5c\x7a\xe0\xf9\x77\x5f\x7a\x58\xcc\xd3\xd8\x16\x5c\xc1\x71\xd8\x43\x47\x99\xbe\xee\x66\xa0\x57\x33\x33\x9a\x21\x56\x03\xe0\x0a\x01\x9f\x3f\xa6\xf8\x96\x8f\x05\xad\x97\x16\xb6\x4f\x2a\x8d\xde\xd1\xb8\x78\xc8\xb3\x92\x5f\x2f\x15\x8d\xc2\x3f\xc7\xe3\x70\x24\x7d\xbe\x85\xac\x85\xe8\x2e\x12\x8c\x0c\x0b\xf4\x51\x35\x88\x7e\x1e\xad\x7a\xc0\x08\x18\xe8\xe8\x3a\xd0\x4a\x75\xd6\xcb\xed\x9e\x28\x15\x40\xfc\x7c\xf0\x64\x7d\xa9\x1c\x79\xa1\x73\xe4\x05\xb2\xcb\xb8\xa0\xb6\x32\x51\x6d\x3d\x8f\x3b\x30\x49\x68\xe3\x18\xca\x60\x2f\xf3\x8d\xaf\x07\x7e\xca\x6f\x7d\xaa\xb5\x3f\x37\xf7\x62\x27\x2f\x32\x5b\x78\x4a\x5c\x87\xca\x72\x3c\x14\x1b\x1a\x30\xf2\x2a\xa6\xf0\xdb\x4a\xc1\xe9\x84\xc2\x65\x63\x4a\x4e\xc8\xcd\x76\x12\xe8\xcd\xcd\x75\x92\x94\xf2\x28\x84\x19\x9f\xd3\x9a\xe7\x63\xc5\x70\x31\x8c\xc2\x2c\x5d\x11\xf5\x55\x21\x8f\xa4\x65\xcd\x27\xf5\xda\x9d\x2d\x5a\x1e\xec\x77\x09\x8f\x5c\x90\x1b\x0f\xb9\xe1\xd5\xd1\x98\x55\x9e\xe0\x5b\xef\xe1\x2d\xb3\xb8\x81\xea\xba\xcd\x28\xe9\xda\x61\x9a\x26\x14\xd4\xc9\x38\x36\x7d\x46\x12\x17\xef\x76\x8f\xab\x18\x33\xcc\xc6\xc2\x63\x8d\xaa\xf2\x8f\xe0\x87\xf9\xa4\x32\x05\xd2\xe4\x0c\x0b\x13\x8e\x63\x93\xb1\x05\xe3\x1e\x3d\x59\x11\xe9\xd7\xbb\x91\x0a\x82\xcf\xb4\x7d\x24\xcc\xa5\x62\x64\xac\x5a\x0d\xe2\x46\x93\xbe\x4e\x27\x1c\x58\xaa\x38\xd0\xa5\x48\x6e\xa0\x20\x4c\x6f\x63\x07\xc0\xde\x4f\xf3\x81\x3d\x3f\x4f\x15\x58\xd3\x47\xa7\x42\xc6\xce\x5b\x7e\x04\x3d\xd8\x39\xef\x9c\x66\xf9\x1e\x58\x4a\xd7\x4c\xf4\xf2\xf3\xbc\xe7\x11\x31\x6e\xc3\xb2\xa0\x67\x06\x21\x5c\x3e\x56\xac\xdf\x4f\xaf\xd8\x7d\xf5\x19\x89\xe7\x5d\x06\x53\xd6\x28\x6d\x15\x8f\x58\x8b\xe2\x2c\x44\x40\xff\x28\xf0\x6d\xd9\x6d\x38\x24\x71\x8b\x4f\xa9\xa4\x30\xa3\xee\x61\xb5\xc6\xab\x8f\xba\x54\xc8\x8f\xb0\xb1\x14\x0f\xe2\xbd\xad\x40\x0b\x7a\x93\x8a\x6d\x48\xc4\x80\xb3\x47\x1c\x27\x4f\x75\xa1\x42\xc9\xe3\xab\x8c\xa3\x34\x4a\x8a\x7c\x9f\x87\x0c\xdf\x56\x18\xbc\xeb\xaa\xa0\x7e\x4e\xc9\xdb\x5d\x85\x67\x10\x35\x0c\x7a\x65\xb0\x60\x57\x02\xc5\x97\x7d\x43\x17\xce\x47\x26\x89\x72\xe1\x5a\xd3\xaa\xee\x92\x6e\x4c\x13\x67\xbc\xd8\xc9\xcd\x2a\x30\x0b\xe8\x51\xfc\xb8\xd4\x10\xd0\x9a\xa2\xbe\xa3\x2e\x1a\xe7\x4c\x2f\xa1\xc7\x7e\x65\xa2\x77\x7a\x8e\x6c\x41\x18\x04\xf8\x53\xd2\xe2\x55\x13\xae\xd3\xd3\x03\x92\xf6\x2e\x62\x14\x59\xc8\xbd\xab\x07\x27\xe0\xde\x06\x2d\x57\x1f\x2a\x20\x4d\xc5\x73\x05\x75\x14\x1f\xab\x99\xa1\x91\x49\x6c\x1c\x47\x6d\x2a\x6c\x89\xe5\xa6\x35\xc5\xc1\x0c\x23\x55\x84\x21\xa6\x01\xda\x33\xb2\xd9\x52\x9a\x0d\x5b\xea\x09\x9e\xd2\x03\x62\x5f\x88\xb1\xea\x99\x68\xd5\x28\x44\xd0\x19\xcd\xa4\x7a\xa6\x86\xec\x49\xa2\x62\x9f\x77\x70\xa7\x54\xff\x97\xe5\xdb\x51\x87\xb8\xa5\xb9\x4e\x2f\x04\x0a\xa5\xf3\x1d\xee\x71\x28\xdd\x97\xe7\x38\x3d\xf9\xd9\xd4\xac\x8b\x5c\xe0\x1a\x41\x04\x3c\xdb\xf7\x69\x55\x5c\x39\x5d\xad\x05\xbe\xba\x17\xbe\x3a\x83\xa7\x54\x13\xdf\x43\xc5\x0c\x12\x83\xa8\x55\x3e\xda\x55\x63\xc3\xc7\x9a\xc6\x73\x33\x5b\x44\x34\x11\xe1\x68\xb9\x36\x83\xd6\xce\x81\x72\x64\xe4\xef\x97\xfe\x02\x9e\x9e\xff\x33\x22\x92\xa6\x99\x0f\x67\x3b\x61\x9a\xc6\x6c\x93\x01\x30\xf8\x8d\xc0\xe3\x91\x7e\x43\x75\x5f\x32\x4b\x7d\x29\x59\x58\x82\xb0\xf4\xf8\x85\x53\x81\x47\x9a\xbd\x3a\x4e\x1d\x43\x88\xfc\x7a\xf5\x24\x61\x8d\x19\xa5\xc8\x27\x8a\x45\xf0\xc2\xd4\x06\x3d\x74\xa8\x93\x19\x96\x03\x80\x9f\x00\x9d\x10\x1f\xab\x29\x58\x3b\x8c\xf2\xdc\x48\xe3\xcc\xd5\x63\xb1\xc9\xa4\x38\xeb\x31\x3a\x4b\x36\x5c\x8e\x6d\xce\xe3\x1e\x32\x5a\xd8\x72\x74\xf7\x6f\xea\xa1\xb8\x69\x74\x0a\x0d\x87\x66\x85\x8d\x5b\x4a\x5c\xf8\xa2\x12\x1a\xbd\xd8\x30\x49\xfd\x62\x27\x1f\x2f\x0e\xa3\xa2\x10\xce\x1d\x44\x0f\x57\x03\x05\x81\x38\xa6\x3a\x35\x67\x15\x6b\x51\x2f\x1d\x2f\x56\x69\xd5\xec\x11\x07\xb4\xf3\x0c\x14\x77\x02\x1f\xc5\xdf\x29\x77\x66\x10\x95\x4f\x54\xf2\x0d\x2d\xff\x22\x2e\x06\xaa\x96\xd6\x4c\x93\x32\x4e\x0a\x9b\x15\xe9\x48\x51\xe6\x1e\x57\x94\xb9\xc7\xfd\x90\xf3\x6a\x34\x1c\x8a\xde\x83\x8b\xe1\x1d\x12\x82\x21\xab\xd2\xe5\x10\x53\x4a\xdd\x7a\x7a\x84\xf0\x6f\xf8\x6e\x3e\x6e\x1a\xc2\x5a\xb4\x71\x3f\x1a\x03\x05\x8d\xed\x7c\x57\x97\x1c\xef\xaa\xaa\xe7\x72\x14\xc7\x7b\x2b\x87\x02\x3f\x7c\x5a\xd1\x14\xc2\x53\xf1\xff\xd7\x32\x10\xc0\x5c\x08\xd0\x47\x03\x20\x2e\x3a\x98\xcc\x38\x81\xd7\x17\xc4\x19\xa2\x0a\xe0\x0d\xf9\xd8\xe9\x60\x8c\xb2\x94\x78\xed\x85\x49\x04\x45\xce\x99\x89\xef\xf8\xdc\x53\xf1\xcc\x81\x6e\x8d\x1c\xc9\x87\x19\x51\x92\xa4\x2b\xf8\xc5\x2f\x62\xb4\x6f\x58\xa1\x99\xcd\x0d\x77\xb4\x98\x8a\x9c\x1e\x81\xd0\x92\x3f\xe2\x60\x3f\x8b\xa6\xd8\x49\x0b\xac\x38\xa4\x2f\x4e\xad\xa8\xa3\x07\x17\x3a\xc3\x74\x68\x93\x82\x86\xb5\xf1\x18\x10\xed\x83\x96\x83\x8f\x1b\xb6\xcd\x42\xa7\x18\x64\x76\x15\x3f\x26\xe9\x1d\x6d\x06\x3e\x51\x38\xa2\x9e\xc9\x8a\xc5\xd4\x64\x3d\x4e\xed\x79\x18\x0c\x96\x7d\xe7\x64\xd8\xc0\x9a\xde\xab\xe3\x6a\x4f\x66\x39\xc6\xd6\x81\xdc\xdc\xc7\x35\x27\xec\xb5\xbb\x6a\x0e\xfb\xd5\x9f\x9f\x28\x31\x9b\xb7\xbd\x6e\xf1\x5f\xff\x8b\x53\xdc\x25\xd5\x85\x67\xe9\xd0\x24\x05\x14\xe3\xa4\x5a\x74\x5b\xb5\xe1\xa6\xc7\x4a\x67\x8f\x74\xc6\x49\xb4\x14\xfd\x3f\x69\xf3\x29\x96\x29\x4b\x1c\x43\x6d\x0f\x71\xbb\x02\xcb\xe0\x5a\x83\xae\xe2\xf3\x7b\xee\xe5\x25\xd6\xf6\x9c\x51\x6e\x1a\x0b\xf0\x6f\x39\xcf\x6d\x56\xb4\xd4\x90\x04\xe2\x96\x2f\x1a\x5f\xa4\x4e\x72\x11\x25\x7d\x74\x3f\x10\xde\xa0\x44\xca\xc7\x8a\xbe\x28\x87\x26\xbe\xaa\x6a\x9c\x52\xfa\x02\xa7\x5c\xef\x25\xd7\xcd\x5f\xf4\x1b\xb5\xc8\xc8\x6f\x06\x3e\xc1\x6a\xa9\xe2\x8b\xcd\xec\x13\xb4\x48\x84\xad\x8a\x0a\x94\x02\xab\x6a\x7b\xd1\xb5\x87\x27\x4a\x38\x0e\x7d\x51\x7a\x94\xbb\xff\xff\x28\x23\x02\x07\x74\x60\xe2\xd9\xae\xb6\x4a\x45\x1b\xf2\xbd\x52\x79\xd2\x63\x04\x7e\x41\xc5\xee\xad\xd2\x77\x80\x6e\x12\x98\xcf\x25\xb7\xae\x1e\x70\x05\x88\x78\x84\xe3\x3f\x4f\xe0\x0e\x8a\x66\xfa\xbf\x8c\x02\x13\xf5\x61\xff\xf9\xe3\x93\xd6\x57\x5f\xe2\xf8\xea\x2e\x8d\xd4\xd1\x07\xfe\xa3\x7f\xab\xab\xaa\x2f\x59\x54\x44\x61\x4e\xa0\x43\xbc\xfc\x3f\x04\x48\x5f\x21\x71\x64\x4c\xf6\x5b\x94\x9b\xf1\x5f\x29\x6a\x80\xbb\xa5\x62\x1c\xfc\x96\xaa\x72\xdf\x54\x18\xca\x9b\x35\xcc\x21\x8d\x1b\xf0\xa7\xb5\xb4\xe8\x7f\x17\x4c\x1b\x80\x2a\x49\xb2\x59\x14\x93\xc6\x4f\x4b\x3d\xc2\x0b\x0a\x7f\x34\x1d\xa2\x4a\x70\x35\x4e\x7a\x36\xa3\x74\x13\xfb\x00\xbd\x7c\x17\xec\x7b\x72\xc9\xf5\x26\xbd\x89\xd0\xc4\x61\xad\x1b\x83\x82\x32\x18\x6e\xf8\x58\x55\xfd\x87\x90\x20\xf1\x7c\xbd\xf4\x77\x52\x59\xf4\x51\x0b\xbc\x73\xbb\xd6\x7b\x9b\x77\x42\xca\xbb\x94\x16\xe3\x4d\x55\xee\xf9\xc6\xd1\x83\x88\xbf\x80\x71\xf9\x88\x1e\xaf\x53\x8f\x9e\x9b\xdb\x3e\xdb\x14\xeb\xe5\x66\x25\x4a\xfa\x0c\x5a\xe2\xa9\xd2\xc0\x77\xb9\xdf\x2b\x7d\xaf\xed\x03\x75\x2b\x61\x3a\x8e\x7b\x4f\x12\xee\x5f\x98\x94\x95\x2a\xf7\x31\x58\x37\xf8\x8f\x13\x8a\xf7\x84\x8b\xe8\x2e\x82\x3a\x2c\x7c\x9d\x1f\x04\xba\x6a\x7a\x96\xf2\x2f\xdc\xfb\x2e\x00\x8b\x11\x87\xde\xa0\xa5\x81\xef\xfa\x59\xa9\x90\x40\x00\xb3\x3a\xa9\x89\x43\x87\x38\xd8\xbd\x13\x28\xfe\xff\x6b\x48\xe5\x5c\x18\x5b\x05\x7f\xe8\x73\x9c\x55\xb5\x21\x14\xd2\x25\xbc\x55\xb1\xf2\x77\x6a\x23\x0c\xf9\xd8\xe6\x0f\xd7\x52\x46\xa7\x52\xb0\x8d\x7a\x94\x54\x33\xe9\x47\x6b\x2f\x52\xc8\x8f\xe8\x0a\x1c\x0f\xa3\xd3\x5d\x67\x3e\x11\xd8\x2c\x16\xf5\x46\x63\xed\x9e\xaa\x67\xcd\x10\x7f\x93\x4c\xae\xb4\xfc\x0f\x52\xac\x2d\x5c\x4b\x4d\x9e\x6f\xb5\x5a\x87\x5c\x7a\x96\x62\x8c\xf2\x65\x5b\x81\xe2\xbc\x58\x6f\x92\x36\x34\xab\x36\x4f\x87\xa8\x4b\x20\x29\x85\xe0\x3f\x1f\xbb\x58\x6c\xd5\xda\xe5\x9e\x59\x63\x97\x0e\x44\xdb\x4f\x03\x8f\x88\xfd\x69\xb9\xa3\x48\x5b\x85\x88\x5f\x7d\xa9\xf5\x45\xdd\x51\xd5\xc5\x33\x59\x91\xa6\x2c\x07\x80\x0c\xaa\xd4\xdd\x9e\x32\x78\xc8\xfb\x84\x71\xb2\xa7\x7a\x54\xac\x90\x4a\x76\x01\xb5\xaa\x99\x89\x47\x83\xdc\x41\xb5\x0b\x7e\xed\x3c\x3d\x4f\x91\x54\x9d\xd6\x6d\x0a\x07\x76\xe8\x98\x74\x98\xe1\x40\xc5\x34\x1e\xca\x4c\xaa\x1b\x26\x8b\x8c\xa6\xe6\x40\xc0\x24\x33\x81\x5e\xfc\xca\xae\xd8\x6c\xad\x18\x44\x49\x9f\xb8\xd7\x01\x0c\xd3\x14\x35\x3f\xd1\xf0\x3b\xb6\x99\x30\xc5\xbb\x26\xbe\x35\xb9\x0d\x8b\xcb\x8a\xda\x9a\xb1\x68\x93\x9b\x19\x42\x81\xe7\x6b\xf5\x36\xf9\x66\xba\xc6\x78\x49\x06\x87\x06\x8a\xb5\xe3\x7d\xcd\xe0\x76\x4d\x49\x7e\x9c\x6d\x10\x41\xa4\x58\x40\x42\x0d\xd4\x6c\x6e\xa8\x21\x98\x1b\x81\xae\x94\xa4\x49\x8e\xf2\xe9\xac\x2b\xbe\xd3\xe7\xf8\x44\x95\x28\xf3\xf1\xe2\x28\xb5\x89\x01\x89\x81\xa8\xc0\xd2\xe6\xe2\x13\x65\x0c\xfb\x02\x0a\x51\xad\xfd\x05\x0f\x85\x70\x2a\x87\x10\x01\x45\xcc\xfe\x14\x70\xbd\x52\x72\xf1\xd0\xc1\xf3\x5a\x16\x2e\xea\x8f\x33\x4b\x4d\x61\xac\xb4\x9f\xd2\x1f\xc2\xa5\xa1\x8d\x2a\x9a\xa0\x64\xea\xb4\x86\x13\xdc\x79\x1b\xfd\xca\x69\x41\xa7\xa1\x01\x3b\x13\x79\x12\xb4\xb4\x6f\x2a\x1a\x99\x9b\xaa\x4f\x9a\x45\xe1\x7e\x15\x87\x1c\xa3\x9e\x01\xf3\xaa\xa2\xc4\x88\x86\xd9\x69\xfa\x3c\x39\xf6\x03\xbf\x84\xdf\x75\x92\x50\x1e\x32\x83\xfa\x36\x36\xef\x16\xa2\x18\x98\x45\xa6\xdb\x76\xb5\x4b\xcf\x09\x76\x31\xf8\x92\xa6\xa5\x5c\xb1\x59\xce\x7c\xdb\x87\x0f\xd6\x84\xb1\xa5\x2f\x2c\xfc\x18\xab\x11\x93\x57\x22\x9e\x81\xa8\x06\x1f\x37\x0a\x6a\xe6\x89\xe9\xb3\x01\x61\x9b\xac\x00\x01\xef\xab\x69\x97\xa2\xda\x65\xfd\x58\x74\xfc\xc5\x98\xd3\x45\xf3\x89\xc2\x98\x98\xc5\x6c\x3c\x2a\xe2\xb5\xb6\x5f\x98\x9b\x58\x4c\xb0\xae\x60\xa0\x40\x6d\xf6\xe3\x69\x54\xf0\xa1\x4e\x68\xc6\x39\x72\x58\x04\x08\xb7\x35\x15\xf5\x6d\x17\xee\xb2\x3a\x8c\xa2\xf1\x3b\xa3\x02\x93\x33\x35\xaf\x9f\xf5\x6d\x6f\x8f\x17\xa6\x3b\xa7\x0b\xb6\xe0\x76\x95\x19\x78\x3f\xc2\x74\xad\x96\xa8\x36\xd0\x78\x54\x29\x5b\x68\x13\x30\x08\xa1\xad\x74\x22\xf0\xd8\x85\xe9\x09\x99\x43\x87\x3a\xb1\x47\x30\xe1\xc9\xf1\x44\x09\x9f\x28\x48\xe9\x28\xcd\x8a\xcc\xac\xb9\x11\x6c\xad\x00\x23\x9e\x79\x1a\xc6\xd2\xe9\x65\x36\xcf\x87\x66\x59\xd8\xcd\xdd\x2c\xa5\xd7\x55\xd7\x12\x55\x85\xc9\xfa\xb6\x98\xf1\xa1\xc8\xf9\x9a\x96\x55\x65\xab\x5d\x18\x70\xf8\xa0\x1b\x40\xf1\x58\x95\xc4\x0c\xed\x5e\xba\x1f\xc4\x0e\x3f\x0d\x54\xb9\xe4\x6a\xa0\xc2\xa6\xef\x53\x20\x81\x05\x89\xc8\x85\xd5\x92\x55\xe9\xd2\x13\xd8\xd0\x7d\x08\xb6\x01\xc6\x82\x37\x10\x9f\xb8\x5a\x6d\x98\x99\x45\x05\x9d\xbb\xa9\xa0\x73\x37\x55\xff\x79\x68\xb2\xe5\x1c\x5a\x5c\xdc\x34\xa4\xdf\x65\x5c\x62\xa0\xb8\xd6\xb7\xe0\x0b\x44\xd0\xdb\x73\xdb\xfd\xde\x54\x0a\xfe\xfc\x3c\xe1\x65\x58\x13\x07\xef\x1d\xee\x8a\x8f\xb5\xd4\xbf\x4d\xd6\x08\xde\xea\xd0\x62\x3c\x3b\xc2\x0a\x99\xb8\x04\x3c\x61\x44\x4a\x82\x6e\xa7\x27\x8a\x5c\x97\xb5\xc1\x98\xd0\x66\xaa\x98\x76\xe4\x85\xce\x4a\x5a\x80\x1b\x0c\x11\xcf\xee\xae\x92\xf2\xc4\xea\x11\x45\x4e\x0f\x23\x18\x9a\x24\x32\x7f\xc6\xb1\xaf\x26\xf2\xfa\xa5\xc8\x8f\x56\x22\xe8\x3a\xab\xf0\x6d\x9a\x4b\xa5\x88\xfa\x83\x22\x5e\xc3\x7c\x9e\x3c\x2f\x72\x3b\xfe\x81\xe1\x2f\x57\xa2\x54\xc7\xff\x68\x93\xa2\x78\xc4\xc7\xaa\x2f\x10\xc6\x26\xcf\x39\x03\x70\x33\xd3\xcf\x6b\xcd\x65\xc7\x03\x38\xee\x11\x94\x3e\x27\x30\xbb\x9b\xf8\x76\x8e\x06\xf0\x5c\x99\xf1\x7d\xc8\xad\xc6\x28\x59\x26\x4b\x03\xdb\x00\x98\x19\x1f\x37\xad\x0a\x93\x17\x63\x66\x89\x94\xe6\x69\xf5\x1b\x7c\x5c\x7e\x49\xd5\x7d\x3c\xbc\x5f\xb3\xc2\xa0\x2e\x8c\x35\x08\x3e\x38\x41\x7f\x4c\x43\x23\x17\x3a\xb1\xb5\x43\x93\xc8\x3c\x0f\x26\xc3\x18\xe7\xc0\x27\xaa\x30\x1a\x9a\x2c\x8d\xa3\xc4\xec\x55\x34\x0b\x98\x84\x12\x81\xb4\x1a\x11\x56\x8d\x2e\x8b\x76\x7a\xad\xb7\xce\x27\x53\x98\x9a\x67\x3a\xd1\xb3\xf6\x59\xc2\x15\xc3\x82\x5c\x56\x6d\xc9\xd3\xe4\x56\xe1\x7d\xef\x4c\xf5\x53\xaa\xdc\xb3\x97\xa5\x2c\xa7\xe4\xc7\xb5\x10\x60\x0a\x18\xe0\xcb\x6a\xdc\xcf\x64\x36\xac\x3e\x60\x33\xac\x01\xa6\xe4\xa3\x67\x28\xf4\x7c\x8d\xe5\xb3\x95\xc8\xae\xc2\x1c\x37\x51\x32\xef\x34\xe0\xcf\xcf\x77\x16\xc7\x11\xf7\x0c\x9c\x50\x8f\x43\xf4\x9f\x6d\x66\xcb\xa7\xda\xea\xd1\x83\x3e\x63\xf4\xd9\xa3\xab\x92\x0e\x6c\x1c\xcf\xf8\xcd\x89\x51\x5a\x07\x2b\xa9\x92\x41\x14\x59\xcf\x20\x6e\x40\xb8\xf8\xa1\x6b\xa8\x16\x69\x61\x40\x47\x28\x25\xbd\xcd\x40\xa1\xd8\xde\x23\x97\x2b\x01\xdb\xce\x54\xbf\x7a\x10\xe3\x45\x9b\xd8\xfc\xd5\xb1\x8d\x51\x0b\xe2\x20\x07\xf6\x5b\x22\x9e\x86\xd1\x8e\x51\x66\x8b\x82\x27\x82\xdd\xf0\xde\x61\x81\x5d\xdd\xa3\x17\x06\xf3\xaf\x30\x3a\xa0\x08\xae\xef\x6c\x3c\x16\x3e\x56\x33\x3c\x51\xcf\x9a\x7d\x9e\x76\xe2\x82\x0f\xbb\xfe\xeb\xad\x40\x49\x4c\xfe\x11\xcc\x27\x9f\x68\x0a\x30\xa0\xee\xf8\x23\x8a\x9d\x54\xab\x30\xd3\x5c\x69\xf5\xbc\x24\x4d\x54\x29\xa3\xea\xa6\x2d\xc5\x26\x59\x46\xdf\x79\xc1\x77\x3d\x9c\xeb\xb9\x1d\xf8\x98\xf2\x8c\x6f\x76\x47\xcb\x51\x12\xb5\x7d\x21\xee\x43\x65\xdc\xdf\x2e\x15\xc9\xc1\x99\x29\x7b\x3e\x37\xd7\x49\xcc\x0a\x5e\x09\xae\xfa\x82\x6e\xa2\x5d\x08\xa6\x65\xfd\x86\x7d\xe0\xfe\x65\x9c\x56\x95\x32\xa7\xfd\x45\xb5\x3e\x8b\x74\x48\x1d\x5e\x99\xdc\x54\x33\x68\x8d\x60\xf5\x30\x8d\x53\x29\xe9\xc3\x7b\x7e\x14\xa8\xf8\xf7\x23\x27\xa9\xd8\x4f\xf7\xd3\x3b\x61\x61\x70\x7a\x50\x30\x80\xfb\xa9\x42\x56\x23\x53\x52\x02\x6f\x0c\x44\xf9\x25\x88\x15\x21\xe6\xdf\x83\xaa\x9f\xea\xb7\x4b\x71\x70\xab\xf4\x33\x94\xbf\xd0\x55\x92\x40\x97\x9a\x8a\x32\xa3\xd8\x24\x3c\xfd\x3a\xef\x39\x42\x9d\x55\xf9\x50\x49\x11\xef\x9d\x28\xbd\xa5\x6f\x29\x9c\xab\x98\x26\x4a\x55\x34\x50\x4b\x3a\x66\x74\x0f\x1a\xc4\x07\x77\xf2\x63\x35\x51\xb7\xc4\x83\xfc\x08\x56\x75\x02\xf2\x37\xfe\x4a\x4e\x73\x11\xf0\xbd\xe7\x75\xad\x89\xca\x0f\x28\x84\x3c\x30\xf1\x66\xee\xb3\x52\xe9\xf8\x7c\x86\x1f\xc1\xaf\xff\xbc\x62\x3c\xb1\x61\xf1\xa8\x0b\x95\xbf\xf4\xa5\xae\xa7\x53\x63\xc5\x77\xca\x47\xdb\x4f\xa1\x8e\x04\x33\xf4\xe7\xbb\x6e\xc6\xfe\xff\xf8\xff\x75\xfd\xbc\xf2\x56\xe9\x59\x75\x2e\x72\x0f\x85\xcd\x4e\x75\xbd\xdb\xfb\xbb\x7e\x82\xe3\xf0\x63\x13\xb5\x3a\x1e\x9d\xa8\x6e\xdc\x7a\xa9\x14\x6e\x1f\x9d\x78\xdd\xee\x0d\x3d\xbf\xf5\x81\x76\x5d\xe9\x90\x66\x7f\xf7\xd4\xea\x98\xd5\x05\xbb\x34\x51\x21\x46\xab\x5b\xc4\xf2\x01\xa3\x34\x70\x18\xa7\x55\x03\x69\xc9\xc6\x31\x55\x04\xe0\xc5\x40\xdc\x2d\x91\x48\xf5\x55\x08\xc7\xd0\x55\x11\xb1\x86\x96\x12\x72\xa7\x38\xc6\x91\x87\x55\x71\x8c\x23\x72\x3b\xe4\x70\xf1\x8d\x82\x98\x66\x29\x33\x51\xaf\xe5\x3b\xc1\x27\x95\xa4\xd7\x34\xfd\x64\x15\x66\x45\xc9\x4a\x1a\xaf\xc8\x20\x81\x4c\xa4\x57\xdf\x80\x62\xf3\xae\x89\xc2\xe6\xbc\xa3\xd6\x54\x11\x8d\x6a\x62\x19\xaa\x70\xbf\x3e\x95\x44\xd0\x08\x97\xa2\x71\x77\x53\x00\x77\x95\x56\xef\x34\x43\x20\x17\x8c\x47\x28\x1c\x61\x31\x7e\x54\x2a\x8c\xd9\x47\x0d\x21\xc2\x60\x9c\x41\x6e\x07\xd6\x90\x64\xc1\xe7\xb7\x51\xb1\x43\xe0\xf2\xc7\xa5\x9e\x3c\xcd\x6d\x56\xcc\x50\x2d\x81\xd9\x71\xe1\xa0\x04\x17\x47\x0b\x4d\x78\x73\x35\xb5\xf6\xb1\x29\x8c\x70\x95\x00\xa7\x63\x70\xcf\x4b\x71\xbf\x7a\xe1\x28\xd4\x5d\x56\xd9\xce\x65\x55\x80\xd3\x7c\xc7\x7d\x93\x81\xc1\x1c\x35\x0e\x00\x58\x51\x72\x7e\xa7\xd4\x83\x9a\x78\x08\x88\x85\x37\xb5\x64\x1f\xe2\x13\xa1\x02\xf7\x31\x2a\xb5\xdd\x62\xa2\x45\x79\x69\xf6\x88\xa3\x22\xaa\x2e\x95\x8f\x55\x23\x7e\x30\xee\x5b\xd6\x72\xae\x09\xc8\x89\x1c\xbb\x1f\x81\xa3\x8a\x7c\x1c\x11\xd9\x71\xb5\x6c\x45\xee\xd9\x33\x45\x23\xac\x95\x19\x4a\x29\x2c\x44\x21\x4b\xc6\x0b\xf2\xce\x17\x16\x60\x3b\xb1\xfa\x18\x91\x29\x51\x86\x22\xc0\xb0\xd9\x0a\xc7\xb6\xee\x89\x54\x0b\x18\xcd\x21\x38\x4d\x0c\x09\x9f\xac\x8d\x54\x86\x69\x92\x47\x3d\x9b\xed\x69\x7d\x7d\x96\xcb\x8a\x27\x4a\x4f\x13\x76\x43\x73\x06\xaf\x2b\x60\xff\x05\x2d\xf2\xb6\xee\xc2\x8e\x91\xcd\x8b\x28\x8c\x7a\x90\x24\x81\x39\x6a\x4d\x7c\xb9\xe9\x5a\x39\xe5\xd6\xb1\x30\x60\x2b\xe5\xff\x4f\x4d\x3c\xbe\xf0\x62\xbd\x68\x09\x43\x08\xd9\x07\x3e\x9e\x28\x15\x90\xb1\x30\x0b\xcc\x72\x23\x00\x1c\xd5\xa2\x11\xdf\x72\x8c\x97\x6f\xe0\x36\x90\xf7\x6d\x95\x1a\xb9\x6b\x0d\xa9\xe2\xce\x1e\x61\x54\xe3\xe7\x98\xe1\xe2\x13\xdf\x8a\xfb\x7f\x9f\x31\xdf\xd9\xbd\x11\xfe\xc4\xbc\x10\x85\x04\x78\xec\x3b\xf8\x18\x9f\x4c\x19\xb4\x43\xb3\x02\x6d\x51\xa1\xca\x46\xa0\x75\x1e\x1b\x68\x1c\xa8\x2a\x4b\xf0\x77\x94\x0b\x1e\xf6\xee\xe6\x2f\x6d\xa8\x70\x81\x5f\x28\xbc\xe0\x3d\x0d\x07\x8b\x8a\x2a\x8e\xdc\x57\x6d\x5c\x99\xe9\xf3\x81\xf3\x0f\x82\xda\x04\x9f\xc3\x41\xbc\x11\xf8\x9d\xb4\xad\x45\xe6\xc4\x95\xa1\x36\x75\xae\x29\xaf\xeb\x8f\x5f\x7f\x3d\xb6\x2a\x13\x44\x6f\x93\x8f\x27\x3b\x3f\xf1\x4c\xe7\x2b\x5f\xfb\x5b\x0b\x5f\xfb\xd5\xf9\x47\x54\x6f\xf2\x84\xa6\x50\x7c\x9f\xb6\xb5\x13\xc6\x74\x7d\xd2\x63\x5c\x50\xc6\x26\xb9\x12\x28\xa8\xe3\x9e\x89\x52\xf0\xb8\x4d\x0f\x19\xde\x0f\x10\x54\xdc\x18\xc7\x01\x22\x7f\x45\x5e\xd7\xb1\x41\x56\xc6\x09\xcf\x88\x59\xc0\x11\xa0\xdc\x53\xd4\x1f\x2d\x05\x1c\x8d\xcd\x2a\x37\xdc\xdd\x50\x8c\x1f\xd8\xb8\x4e\x70\x6d\x37\xd0\xe4\x86\x72\x74\x02\x7e\xba\x06\x71\xcd\xed\xda\x3e\xba\x1e\xb8\x92\xcb\x75\xb1\xed\xea\x9b\x9d\x9e\xbe\xc3\xe9\x31\x0c\xcc\x51\x0a\x7a\xf5\x21\x96\x81\xc4\xf6\xbc\xd2\x54\x11\x49\x47\x16\xf8\x47\x98\xa6\x99\xae\xa7\xbb\x46\x78\x86\xea\xf1\xed\x06\x79\xb4\xd8\x24\xa1\xe5\x8e\xba\x8c\x21\xb7\xbe\xf1\x35\x37\x6c\xdc\xa4\x9f\x94\x8f\x47\xa3\x94\x40\x0a\xba\xce\xf7\x49\xa9\xea\x7c\x9f\x38\x7e\x27\x33\xfa\x1b\x7f\xe5\xaf\x90\xd9\x10\x21\x24\xfa\x2d\x3e\x51\x79\xd0\x28\x15\x6d\x22\x11\x44\xf1\xbd\xbf\x0b\xaa\xee\x3f\x32\x59\x91\xd8\x6c\x8f\x02\xec\x5f\x0f\xb4\xf0\xfb\xc5\x52\x61\xe3\xea\xd2\x00\xb4\xc6\x04\x83\xeb\x0b\xba\xa3\x2c\x1d\x8e\x0a\x26\xf7\xc2\x3f\xdf\x53\x95\xd6\x7b\xca\x34\xe5\x69\x18\x11\xca\xdd\xa3\x56\xdf\x09\xaa\x58\x9f\x8f\x55\x9f\x69\xc5\x66\x39\x84\x1c\xaa\x37\xce\x53\x33\xa8\x13\xc3\x4b\xfc\x57\x88\xa7\x64\x9c\x5a\x51\x2b\x0e\xec\x2a\xbd\x4f\xa7\x12\xe6\x19\x81\x58\x41\x9d\xc7\xd6\x5d\x0e\x16\x0e\xd2\x6c\x5c\xd3\x8c\x40\x7b\x02\x7f\x07\x2f\x26\x8a\x38\x8f\xa9\xe8\xb0\x67\x33\x13\x1f\x50\x50\xdf\x5d\xdd\xd6\xd1\x83\xdb\x97\xb5\x1a\xcd\xa5\x52\xcd\x67\x32\x1a\x8d\x45\x74\x6a\xb2\xe0\xb4\x18\x60\x5a\x58\x08\x13\x89\xd1\x6e\x16\x01\x71\x5e\xb4\x7a\x3d\xd8\x90\x0f\x4e\xbc\x43\x79\xb0\xeb\x7d\xfe\xa2\x89\x5f\x37\xe1\x0c\x3d\x1f\x38\x32\xae\xb4\x72\x14\x1c\xa8\x09\xbc\x0b\x88\x51\xf9\xcf\x5c\xc1\x61\x39\x89\x0a\xc4\x91\xf0\x93\x5c\x64\x77\x43\x0c\xd5\x5d\x48\x67\xb5\xc6\xc1\x96\x3f\xdb\x56\xdd\x0a\x3c\x3a\x4e\xb4\xe9\x91\x4a\x61\xdf\x07\x4a\xe9\xb2\x7d\xb4\x5a\x03\xd8\xe2\xdc\x0d\x24\xc3\xf0\xed\xbf\x40\x01\xb7\xb4\x75\x2a\x4f\xe0\x6a\x1e\xbe\x6a\x79\x60\xa2\x54\x4f\xde\x55\xcd\x40\xd6\xa8\x92\xac\x5a\xb1\x69\xb0\x43\x14\xc9\x95\xca\x2a\x49\x57\xad\x5a\x38\x8e\xa4\xc8\x4d\x8d\xfc\x33\x3d\xbb\x03\x05\x36\xe9\x23\x34\x48\xa6\xa7\x8b\xbd\xb1\x53\x81\xd1\x6c\x87\x7c\xac\x4a\xab\xb9\x4d\x72\x4b\xdd\x6c\xc4\xa5\xfc\x68\xf9\x24\xa0\xd2\x8e\x66\x31\x64\xbd\x64\xac\x7d\x56\x6f\x22\x13\x2f\x4d\xc7\xea\x67\xf8\x18\x18\x19\x96\x75\x0a\x68\xd4\x4e\x34\x9e\x50\xcb\x95\xb8\x9d\x56\x80\x48\x41\xa9\x49\x01\x96\x1a\x10\x4a\x8f\x9d\xf1\xf9\x2b\xaf\x74\x7a\xa6\xa7\x7a\xd1\xdc\xcc\x16\xe2\xfb\x47\x74\xd3\x38\x8d\x29\x20\x01\x4c\xe1\x3a\xfe\x90\x4f\x82\x9f\xd3\x24\xdc\xa3\x2a\xac\x5b\x8c\x28\xbe\xad\x9e\x0b\x63\x7c\x02\xc5\x14\xaa\x21\x1b\xbd\xcc\xbe\x66\xe3\xb6\x96\xb6\xda\x52\x0a\x61\x37\x34\x8c\xe5\x0d\x37\x6f\x53\xd9\xac\xd4\xe1\xf7\x98\x9c\x12\x2b\x4f\x98\x2a\x1b\x04\xd1\xa8\xb4\xd1\x52\xf9\x1d\x2d\x36\xc9\xf5\xbc\x78\xd1\x28\xed\xa1\x57\x2a\xab\xd5\x03\x56\xd7\x55\xad\xd9\xbe\x36\x8a\xd3\x9c\x44\xdf\xaa\xab\xc0\xbd\x6d\x6a\xc2\xa8\xcd\xc0\x8f\xa3\x50\x69\x82\x60\x84\x7e\xfa\xee\x98\x82\x1c\x6e\xa8\x81\xb4\x63\x81\x0a\xc7\xa6\x87\xce\x09\xd8\x05\x1c\x16\x6a\x6c\x0e\xfa\xe8\x22\xdf\x8b\x4d\x23\xf6\x43\xdb\xeb\xc5\xd2\x39\x52\xcc\x41\x9e\xf8\xba\x69\x00\xda\x26\xbd\x31\x33\x81\x21\x8e\xba\x85\x77\x89\x65\xf2\x81\x02\x26\x5d\x28\x75\xc7\xfd\x4b\xae\x1e\x18\xe5\x85\x4d\x0a\x48\x10\xb5\x7c\x05\x06\x3c\x5b\x42\xde\xdf\x04\xb1\x19\xd9\x30\x62\xc6\x39\x04\x00\x7b\x95\x8c\xc0\xde\x06\x15\xcd\x85\x4e\x38\x66\x0a\x39\x19\x1d\xa4\xd7\x21\xc3\x13\x5f\xaa\xa3\x26\x5e\x3a\x7c\xb0\xca\xbc\xf7\xd1\xd3\x86\x6d\x44\x84\x89\x34\x11\x01\x1b\xe2\x90\x1b\x18\xd5\xd1\x56\x8a\xff\x81\xec\x1a\x42\xbf\x4f\x02\x25\x65\xfe\x96\x9e\x12\xb2\x7d\x93\xf5\x6d\x3c\xa3\xa4\xa2\x5a\x28\x9c\xb0\x12\x2d\xe1\x26\x84\xaa\x8c\x50\x30\x0c\x20\x57\xdd\xbc\x2a\xd2\xb1\x3d\x52\xd6\xd9\xde\x52\xd4\xde\x17\x94\xe4\xe9\x66\xe9\x23\xe4\x8f\x49\x3e\x77\x4b\x9b\xab\xc2\x24\x50\xb4\x46\x50\x74\x0e\xaf\x12\x11\xc2\x75\xdc\xa2\x74\xe7\xe9\x52\x5d\x1c\x75\x54\xf8\xae\xf6\xa2\x0a\x01\x53\x7a\x5b\x85\x94\x40\x9f\xf1\xa7\xb1\x80\x59\x40\xb2\x51\x27\x6a\x34\xce\xc2\x81\xc9\x65\x0f\xcb\x92\xa0\x2f\x97\x35\xe1\x91\xa4\x26\x49\xd2\x71\x12\xda\xde\xfe\xca\xa3\x20\x9f\xd8\xaf\xa5\xbf\x99\x76\x11\x39\xd2\x3d\xa5\xb6\xf0\x31\xb8\xa3\xe1\x1f\xda\x13\x0f\x4e\xb8\xa1\xfa\x5e\xa7\x03\x35\x7b\xd8\x66\x8f\x8d\xb3\x93\x14\x00\xc3\x86\xdf\x51\x45\x97\x15\x0b\xfb\x26\x2c\x0c\xbe\x42\xb8\x3e\xb5\xf7\x9e\xe9\x54\xd9\x6e\x3a\x8c\x00\xd2\x5d\xd0\xac\x2d\x2f\x3a\xd6\x96\x9d\xf6\xf9\xf0\xc1\x4e\x6e\x0a\x04\x50\x42\xe2\xa9\xe6\x54\x4a\xc5\x01\x75\x77\x2a\x65\x9b\x9b\xeb\x2c\x8e\xb3\x9e\x15\x3a\x24\xcd\x5d\x2b\xbb\xbd\x61\xf4\xb7\x1f\x47\x8b\x88\xa3\xc4\x25\x54\x0f\x09\x78\xb4\xd3\x4a\x25\x6a\xd0\x34\x4a\x92\xdb\xb0\x60\x0d\xcc\x85\x9a\xcc\x3c\x1f\xab\xd9\x25\x61\xf1\x17\x6b\xc4\x92\xbf\xb4\xf9\x44\xfe\xb7\xa1\x3d\x53\x64\x63\x36\x21\x9a\xaa\x4f\x80\x64\x0e\x3a\x90\xf4\xa3\x44\xf0\xd0\xae\xb7\xe4\xa8\x00\x37\x94\xfb\x61\x51\x1f\x45\x79\xb0\xa1\x09\x55\x37\x6a\x63\x2c\x86\x99\xf2\x74\x2b\x51\x06\x93\x74\x06\x34\x18\x17\x7b\xaa\x45\x83\x05\xd8\xea\x7a\x9d\x43\x18\x79\x98\x51\x8c\x76\xf0\xb1\x1a\x0b\xba\xde\xd4\xca\x02\xa0\xb4\xe5\xab\xc5\xeb\x0a\xbe\xb0\x5e\xfe\x42\xdd\xae\x1d\x3d\xf8\x9c\x00\x35\x1f\x56\x0a\x5b\x27\x81\xe9\x43\xda\x80\xe8\x15\x7e\xea\x7f\xa7\x5b\xc1\xde\xb9\x42\xeb\x1d\x1d\x8b\xcf\xc9\xb6\x89\x7c\x72\x75\x1b\x52\xc7\xaf\x2e\x44\x11\x86\x08\x12\x9c\x03\x03\xd4\x2e\x2f\x6b\x3e\xb6\x0d\xce\x52\x84\x36\x81\xdc\x0e\x78\x13\xce\x05\x7f\xa1\x09\x65\x6e\x63\x5b\xd7\x84\xe3\x59\x66\x94\x52\x8e\xc3\xd4\xf2\xf6\x55\x02\x9e\xd7\x61\x7a\x78\x38\x50\x51\x8a\xd8\x6a\xc9\x8d\xb2\x28\x97\x01\x13\x26\x69\xc4\x3e\x12\xc6\xc6\x9d\xf5\x9f\xd9\x23\x44\x26\x9d\x0f\x6d\xc6\x79\x0f\xee\x07\x60\x14\x3e\xf6\x6a\xe1\x69\xb2\x64\x73\x87\x01\x11\xbe\x62\xba\x54\x3e\x99\xea\xcf\xcd\x1e\x21\xf1\x6c\x9b\x57\xa1\x84\x89\xdb\x7e\x2e\xfb\x1f\x2b\xa5\x99\x4b\xb5\xf2\x9b\x12\xe7\xe2\xc9\x02\xd7\xb3\x61\x96\x3b\xba\x3c\x61\xbc\x53\x4c\xc6\x95\x0f\x7a\xc9\x61\xe4\x98\x60\x47\xf2\x5d\xbf\x38\xbf\x1f\xa8\x08\xef\xa6\x86\xf4\x47\x2b\x11\x25\x76\xfb\x14\x4f\xcf\x77\xe9\x6b\xb6\x2f\x07\x5e\x43\xe5\x0c\xf9\x21\x60\xc5\x8e\x03\xd6\x89\xdd\x07\x6e\xaf\xed\xcb\xb4\xfc\x60\xbb\x5b\xdd\x06\xfa\x68\x2a\x67\xae\x66\x51\xc1\x82\x06\xc2\x06\x59\x7d\xad\x90\x41\x4a\xb6\x33\x32\x6b\xdc\x1d\xc5\xd5\x6f\xd3\x85\xd4\x54\x4c\x70\x8b\x17\x15\x68\x50\xea\x8f\xf0\xa8\xcf\xf9\x0a\xd3\xbc\x2a\xde\x38\x66\xdd\xb3\x3a\x65\x39\xa1\x44\x35\x6f\x36\x70\x29\x77\x96\x52\x88\x3a\xb4\xeb\xd8\x9e\xc3\x07\x35\x09\xff\x2c\xb7\x71\xee\xab\x48\x3b\x0d\xc3\x71\xd6\xd6\x00\xbc\xc0\x6f\xb5\x11\xdd\xbc\xf0\x6e\x4d\x3b\x99\x2c\xcd\x09\x31\xc9\xab\x4f\x28\x59\x95\x8e\xf8\x77\x9a\x3a\x7e\x36\x2a\x06\xd5\x43\x3e\x74\x88\x9f\xc1\x07\xb4\xed\xf9\x78\xaa\xe4\x52\xc5\x84\xb1\x2d\xda\x3e\x20\xdc\x0a\x94\x6e\x39\x8f\x5c\x4a\x31\x59\x76\x06\x71\x15\x27\x36\xcf\x6b\xb0\xa5\x96\xe2\x12\x56\x14\xa0\x51\x96\x17\x4f\x55\x26\x89\x05\x27\xe8\xc9\xa1\x86\xf0\x00\x45\x80\xe8\x4d\x6d\x6b\x8c\x32\xd3\x07\x30\x9d\x3d\x76\x0b\x52\xeb\x1b\xb4\x1a\xb0\xfa\x5a\x24\xe7\xb2\x7d\x12\x09\x98\x08\x74\xd1\xe5\xc3\x62\xfc\x01\x72\x36\xb8\xc8\x5d\xc4\x61\x00\x8f\xb7\x59\x2a\xa5\xd7\x93\xc8\xba\x85\x46\x80\xde\x32\x18\x52\xee\xa9\x20\xfc\x5f\x07\x0a\xff\x5f\xea\xa0\xe2\xc0\x44\xf1\xf3\x7e\x84\xa0\x07\x55\xb1\xc7\x26\x4d\x93\x2b\x79\x65\x0c\x5d\xbe\x83\xd6\xce\x1f\x6b\xb0\xf3\x1f\x3b\xa9\xbc\xa5\x8c\x64\xf2\x56\xcd\x9a\xe0\x45\x5c\x74\xe7\x51\xbe\xd7\xa7\xdc\xb7\xe0\xfa\xa3\x25\x02\xf5\xa3\x41\x88\x20\xb3\x46\x12\x01\x8f\xa3\xe5\x67\xa9\x96\x9c\xcf\xd4\x52\xc7\xea\x81\xcb\x48\x9e\x96\xfe\x0b\xb4\x64\xc6\x69\x35\x7e\x62\x5f\x1d\x47\x05\xd5\x0d\x65\xf3\xf1\xa2\x72\x6c\x6d\x6e\xac\x84\x7d\x0c\x47\x77\x6a\x02\xfb\x86\x2a\x0e\x1f\xc7\xc3\xe1\x21\x53\xc5\xfd\xb7\x38\x4e\x78\x34\x5d\x84\xad\x34\x31\x3b\x0c\x95\xa4\x7d\x1e\x40\x90\x9b\x21\x4a\x6e\xa8\xfc\x60\x40\x56\x54\x48\x69\x5d\x20\x40\xfc\x1e\x96\x02\x90\x6f\x6f\xd2\x45\xf3\x71\x03\x44\x73\xbe\xb3\x5a\xd9\x1f\x80\xa5\x58\x33\x07\x60\x29\x11\xd0\xf1\x97\x5d\x79\x41\x3b\xa3\x5b\xb1\x30\x4e\x78\x92\xba\x1b\xf1\x3e\x85\x12\xfc\xff\x27\x4d\x70\xae\x3c\xea\x27\x02\xbd\x43\x21\xea\xb7\x70\xd9\x7c\x12\xf8\x7c\xa1\x6f\x86\x36\xdf\xa7\x7a\x8b\x5c\xc0\x44\x38\xfa\xe0\x44\x2b\xae\xa0\xbc\x0f\xab\x01\x78\x93\xca\x88\x25\xc0\xff\x98\xae\x1a\xe5\x89\xad\x06\x81\x82\x05\x60\xb1\x5c\x66\x8b\x36\xf9\x26\x6d\x2a\x3e\x56\x6a\xa3\x85\x79\x6d\x64\xd6\x6c\x96\xef\x53\x94\x18\x1b\xf4\x00\xe0\x79\x3e\x0e\x3c\x35\xf3\xc7\x8a\x8e\xff\xbf\x45\xda\xeb\x80\xed\x5a\x10\xee\xa5\x05\x57\x12\x68\x52\x19\x5c\xcc\x4c\xd2\xe3\xc9\x58\xa9\xb9\xe0\x31\x20\x37\xfc\x38\x50\x8e\x62\x33\xd0\xd0\x5f\xa7\x89\x32\xb4\xc3\x34\x33\x8b\x51\x1c\x61\x80\x1a\x98\x81\xbb\x1a\x40\x70\xb7\x26\x6d\x16\xa6\xfd\x24\x7a\xdd\xb6\xeb\xa5\xc8\xea\xaf\x79\xd8\x35\xf0\xc5\x83\xe3\x53\x0e\x69\xf6\x48\xc7\xc4\xe3\x61\x94\xf0\xd8\xa5\x13\x16\x72\x70\x16\x4f\xdd\x15\x9a\x65\x31\x33\x0e\x67\x56\x2d\x14\xc1\x99\x35\xb0\xbc\x67\x76\x31\xcd\xa0\x45\x88\x78\x08\xa5\x2e\x3e\xae\x45\xd0\xab\x83\xf4\x89\xea\x2d\x20\x6b\xd9\xa4\xe9\x29\x58\xec\x2b\x81\x82\x69\x7d\xae\x0b\x94\x6f\x60\xfd\x20\xe1\xc4\xfc\x3c\x4c\xed\x29\x6c\x16\x51\x54\x69\x39\xaa\xe6\x03\x24\xcd\x25\x0a\x7d\xca\x1d\xdd\xa1\x5c\x70\xfb\x32\x2c\x08\xd6\xd3\xe5\x6a\x45\x6e\x6f\x53\x30\x8e\x8a\xed\x3d\x7e\x9f\x58\x1d\xa0\xb2\xa2\x7f\x78\xf8\x09\xb4\x66\x84\xd3\x52\xb9\xe9\xc7\xbb\x8f\x2b\xd2\xc1\xd8\xac\xe5\x91\x81\x17\x86\xf5\xbc\x51\xaa\x39\xa1\x1b\xaa\xbf\x3b\x8a\x6c\x16\xda\x96\x9e\x9a\xd0\x23\x17\x0a\xca\x3b\xb0\xd9\x30\xa5\xfc\x43\xc6\xd9\x55\x95\xfa\x74\xe0\x65\xb4\xe2\xdc\x12\xe2\x97\x2e\xf3\x2b\x4f\x01\x21\x2a\xc1\xae\xe7\x70\xb8\xa7\x86\x07\x5b\x53\x5e\xe7\xe8\x41\x95\xa1\x57\xdf\x86\xee\xd2\xe7\x9a\x6f\xe6\xf3\xc0\x6f\x45\x93\x2d\x46\x45\x66\xb2\x35\xb0\xfd\xe3\x46\xff\x01\x86\xde\xf8\xc4\x75\x9c\x0b\xc3\x21\x0e\xf2\xca\xf7\xe8\x42\x60\x59\xaf\x07\xea\xee\x51\x92\x93\xa4\x4a\xf5\x27\xce\x04\x0a\x5d\x73\x46\x81\x70\x99\xf5\x08\x26\x95\x55\xaa\x03\x37\xc7\x77\xe6\x43\x25\xf4\xb5\x38\x7e\xfd\x75\xca\xd2\x94\x57\x79\x91\x5b\x70\xb0\xad\x70\x3d\xd0\x45\xe7\xff\x4f\x57\x27\xcc\x3b\xbe\xbc\xb3\x62\x92\xfe\xd8\x64\x68\xa1\xc0\x1a\x9e\xd1\x83\x13\x67\x14\xc8\x6c\xd1\xda\x70\x60\x86\x2d\x0a\x33\xb0\xdc\x3f\xd5\xd4\xe5\x9f\x7a\xce\x75\x9b\x45\x69\x2f\x0a\x0d\xcd\xf7\xff\x5a\x7d\xc0\x42\xe4\xce\x76\x96\x56\x16\x5e\x78\xb1\x33\x34\x85\xe9\xa7\x59\x0f\x6c\x73\xdb\x27\xe1\x75\xb7\x4f\xaa\x52\x92\xe9\xdb\xa4\xc8\x21\xd2\x8c\x7c\xfb\x1f\x23\x25\x83\xe3\xdf\x54\x51\xe7\xbf\x50\xc4\xe7\xdc\x5e\x96\x88\xa0\x61\xe0\x3c\x1f\xa6\x71\xcf\x7a\x9a\x01\xe1\x05\xf0\x75\xbb\x0b\x0d\xd8\x12\x1e\x61\xa6\x82\x8a\xa3\xa9\x75\xd5\xfb\x8b\x53\x16\xed\x95\x57\x3a\x45\x66\x56\x22\x53\x98\xb6\x62\x6b\x58\x57\xc4\x15\x7f\x40\x18\x54\x98\xc7\x73\x0a\x49\x39\x1a\xc5\x00\x50\xe3\xcf\x30\x06\x00\x83\x82\xb4\x16\xe9\xf1\xbb\x8a\x7f\x69\x18\x46\x20\xdc\x16\x32\x1d\x85\xbc\x15\xa1\x20\x21\x3d\xa3\x55\x04\xf7\xb8\x5e\x63\xe0\x99\x72\x26\xbf\xc2\x82\xac\x96\x1b\x57\x08\x14\x30\xa4\x88\x2c\xe1\x9a\x1e\x8c\xd7\x7c\x2c\x59\xba\x68\xb3\x62\x8f\xe6\xf6\xba\x5d\xfa\x06\xc5\x9f\xd2\x0a\x71\x5a\x72\xd5\x77\x20\x56\x39\xd0\x55\x50\xb2\x93\x53\xef\xe1\xc8\x0b\x9d\xa5\x94\x38\xb1\x3d\x85\xd3\x06\x8c\xac\xd0\xe2\x3c\xa2\xd6\x71\x51\xd8\x19\x4f\x34\x7b\x4a\xa7\xfe\xa8\x33\xf1\x71\xe9\x9b\x40\xa7\x9c\x99\x1a\x46\x45\x26\x13\x27\x35\x31\x2e\x81\xc0\xf8\x01\xfc\x68\xc5\x14\xd1\xeb\xe2\x95\x9c\x96\xa5\x2b\xfc\x7c\xdc\x34\xbd\x11\x9a\x62\x90\xc6\x4c\x36\x8a\x7c\x71\x0b\xef\x8d\x4f\x54\x52\xfc\xfc\x73\xf3\x7b\xfc\xdc\xc5\xd5\x52\xbd\x6b\x5e\xf0\x30\x48\x1f\xf2\xbb\x16\x0a\xce\xea\xab\xe1\xc9\xf6\x74\x1d\x28\x63\x9c\xf5\x2d\x6a\x60\x8a\x80\xd1\x81\x57\x3e\x6f\x62\x14\x1e\x58\xd3\xe3\xfc\x15\x65\xa7\x7b\x08\x4a\x85\xe0\x52\xc9\x51\x6e\xb8\x95\xdc\xb3\xc9\x0a\xa7\xc6\x4c\x5f\x59\xd6\xb8\x2c\x1f\x52\x5c\x3f\xbd\x03\xd5\x0b\xc5\xf8\x26\xb6\xb6\x4c\x83\x50\x6d\x54\xf0\x1c\x14\x5d\x48\x6f\xba\xe5\xc4\x1e\xc1\x81\x82\x5c\x85\xa5\x4c\x78\xcc\x43\x8d\x5e\xee\xee\xaa\xf6\x32\x7b\x09\x3e\xd1\xed\xca\x33\x2e\x67\xcf\x4d\xb8\xac\x75\x8c\x94\xde\xcf\x99\xf2\x4b\x3b\xeb\x59\x0b\x55\xda\xf9\xf3\x8a\x44\x7d\xbd\x6c\x1d\x79\xc1\x0d\xaf\x28\xd4\x15\x6b\xc2\x31\xfe\x16\xa9\x15\xcc\xc8\x7f\x43\x69\x2d\xac\x5d\x1b\x62\x9a\x70\x3a\xc7\x54\x07\x71\x5f\xd7\xe3\x4d\x3f\x47\x3a\x20\xd5\x4f\x25\x17\xd2\x9a\xb4\x94\xf5\xae\x32\x67\x29\x49\xa8\x41\xd9\xab\xa4\x79\x89\x76\xc8\x16\x02\x4e\xec\x55\xd6\x14\x75\x94\xbf\xae\x0b\xf2\x98\x9e\x34\xbb\xa5\x96\xcd\x1e\x94\xba\x71\xeb\xff\x2b\x35\x0c\xd1\x4f\x7e\x87\x3c\x12\x1b\x6a\x5e\x9e\x08\xe3\xef\x28\xb0\x55\x3e\x5e\xcc\xa3\x5e\xb5\x87\xda\x7a\xcc\xc7\x17\xc9\xc1\x7d\x21\x32\x36\x0a\x0b\x6b\x0b\x13\x0e\x84\xb5\xc2\x05\x28\xf3\x3e\x40\xf1\x8e\x2d\x4c\x4d\x65\x3b\xda\x7e\xe7\x5f\xa6\x77\x8a\xca\xc3\x39\xcd\xdb\xf7\x53\x15\xc3\x57\x8b\xdf\x10\xa7\x9b\x02\x8a\xd1\xa5\x09\x68\xcc\x91\xa8\x47\x89\xcd\xb8\x1d\x84\xda\xce\xc3\x13\x8f\x92\x78\xb8\x2b\xe1\x85\xc9\xec\x03\x9e\x64\x91\xb9\xe4\xc9\x1a\xa6\x4f\x74\x3d\x5e\xf7\x5c\xe9\xe9\x74\x8f\xd3\xd2\xa8\x41\xb0\x1d\x89\xdf\x51\xa7\x93\x5b\xdb\xfe\x1f\x37\x60\x38\x31\xff\x62\x93\xba\x84\xf8\x96\x26\xa1\xda\x52\xc5\x9e\xca\xfe\xc7\x40\xde\xc0\xf8\xaf\x07\x8a\xf7\x7e\x1d\x0e\x19\xfb\xf1\x63\x45\x08\xf6\x09\xbd\x73\x19\x18\xd2\xa3\xa8\x76\x18\x55\xde\xa4\x8a\xb9\x9c\x08\x81\x57\x41\x5c\x57\x1a\xee\xd7\x9a\xa6\x93\xc3\x74\x38\x32\x21\xea\xeb\x08\x7e\xde\x52\x3d\x92\xb7\xdc\x8b\x60\x35\xb8\xb6\x9a\xd7\xc2\x62\x02\x6b\xc3\xf5\x52\xc1\xdf\x3e\x69\x22\x18\x2d\x32\x0b\xe4\xa9\xf8\x18\x1f\x60\x6e\x94\x5f\xf6\x2d\xd3\xcc\xe6\x36\x29\x50\xfd\x6d\x29\xca\x04\xec\x19\xa9\x74\x4e\x87\x13\x2f\x8b\x54\xd5\xbc\x7f\x4e\xd5\x27\xf8\x78\x8a\x0d\xc1\x29\x2f\xc7\x99\x35\xbd\xb5\xbd\x0a\x99\xb7\x77\xe2\x84\x48\xfe\xde\xcf\x2b\xc6\xc0\x77\x30\xb6\xe1\xf8\xc3\x1c\x61\xc7\x15\x5a\x56\xa2\x9a\xef\xa6\x04\x62\xe3\x44\xf7\x84\x90\x42\xe9\x43\xbc\x35\xe5\x16\x40\x3a\xd6\xc3\x63\x92\x46\x30\x7d\x42\x2a\x88\x8f\xaa\xa8\xd7\x44\x43\x1a\x7e\x13\xc8\xfe\x59\x04\xde\x6e\x64\xd5\x83\xbb\x30\x9a\x27\x84\x68\xaa\x30\xfd\x9e\x2e\xe9\x8c\x87\xc3\xa8\xd8\xe3\x47\x94\x76\xa1\x5e\xc5\x54\x99\x81\x2f\xdd\x82\xcf\x17\xe3\xd3\x80\xb0\xa2\x37\xd7\xea\x3a\x5c\x66\x66\x47\xe3\x38\x8f\x10\x1c\x8b\xca\x34\x3d\x61\x3e\x99\x78\x00\xf8\x38\x59\x4e\xd2\xd5\x24\xa7\x00\x8d\x25\xf5\x4a\x85\xc2\xbd\x4c\x15\x35\xc1\x1c\xd6\x6a\xb9\x3d\x3b\x4c\x5c\xe8\x2f\xe3\xc7\xad\x79\xbf\x40\x7d\x3c\xb7\x68\xd6\xf6\xfc\x7f\xd1\x4c\xa9\x89\xae\x4c\x63\x01\x87\xd6\x24\x3b\x08\x2d\x8e\xa9\x41\xc8\x63\xca\x56\xe6\xe9\xd0\xf6\xcc\x5a\x5b\x01\x07\xce\x92\xa5\x91\xb1\x00\x25\x40\x7e\xbb\x41\xcc\xff\x39\x12\xd5\xb2\xfe\xe7\xb4\xe0\x87\xf0\x78\xfb\x00\xe7\xd7\x66\x17\x5a\xfe\x51\x7c\x00\x03\xc7\x27\xea\xaa\x96\xa3\x58\x74\xeb\x17\x84\xea\xb5\x54\x0d\xd9\x77\x03\x79\xa9\x4b\x69\x5a\x0c\xa2\x38\xe6\xd0\x15\x25\xdc\x5b\xb4\x16\xdc\x20\xa3\xef\x73\xb6\x95\xbc\x50\x54\xe4\x36\x5e\x7a\x98\x6e\x5c\xb8\xaf\x14\xb2\x07\x6d\x03\x27\x5e\xfc\xbc\x0c\xad\x6d\xc2\x18\xfa\x36\xa1\x70\x61\x00\xa1\xe4\x8a\x53\x7e\xb2\x13\x7d\x79\xfc\xc3\xcd\xd2\xf3\xb7\xfc\x65\x98\x74\xa4\xed\xdb\xf4\x7e\x6a\x28\x5b\x66\x68\x09\x7c\xf1\x2f\x5c\xe1\x70\x0e\xe5\x9e\x0d\x8d\xaa\xd9\xa8\x11\xa4\x47\x4b\x4b\x69\x06\x25\x67\x71\x74\x3e\x77\x6a\x77\xfd\x94\xd6\x49\x4d\xc1\x71\x4b\xcd\x62\x9b\x38\xb6\x7d\x6a\x8a\x3a\x22\xc6\x77\x02\x4f\xd0\xf8\x4e\xa9\x78\xa9\x72\x1b\x8e\x0b\x06\xb4\x30\x9f\xba\x9a\x4d\xfd\x96\x1a\x8e\x0d\x4d\xd2\x1b\xd3\xdf\x49\x19\xa7\xfa\x3b\xa9\xef\xf8\x5f\x87\x10\x93\x65\x5d\x3d\x16\xba\xc6\xb3\x13\xd5\x6b\x4f\x3b\x1f\x0e\xcc\xa8\x67\x63\x43\x43\xda\xae\xb9\xfa\x8f\x4a\x3f\x6e\xf3\x8f\xea\x5d\x51\x9b\x7d\x99\x5e\xbb\x93\x56\x71\xf4\xd4\x9f\x04\x9a\xe2\xe9\x1d\x7a\xbd\x18\xa4\xbf\x0a\x33\x0b\xa7\xf5\x1d\xdd\x6a\x7c\x97\x5e\x1d\x5e\x69\xab\x4b\xbb\x1e\x21\xd1\x49\x45\x49\x72\x1a\xcb\x06\x61\xe5\x4d\x2c\x34\x38\xf3\x9b\x30\x8a\x28\x67\x33\x57\x9c\x33\x00\x0e\x34\xfe\x33\xc0\xae\x30\x94\xf3\x09\xc5\x5d\xf8\xa3\xab\x00\x67\x21\x20\xfb\x01\xd6\x1d\xd3\x11\xa9\xa0\x07\xa8\x0e\xc4\x79\x77\xd1\x72\x40\x94\x79\x95\x60\xa6\x35\xc2\x6f\x7e\x4a\xa3\x2c\x6d\xfb\xd4\x06\x78\x17\x74\x26\xee\xe9\xd1\xb0\x0d\xa5\x65\x34\x34\xd9\x38\x49\xc7\xe1\x20\x6a\xd7\xd8\x29\xab\xe7\x2b\x1b\xa3\xe5\x88\x27\x4e\x2a\xc7\x11\x9b\x95\x28\x1f\xb4\x15\xd8\xe8\x4c\xe9\x53\xe3\x73\xa5\x1f\xf2\xbd\xd5\xd4\x18\x5d\x4d\xed\xa2\xed\xa7\x89\x55\x6a\x06\xd7\x94\xe0\xd2\x35\xc5\x71\xf8\xd2\xb3\x33\x1e\xc9\x8c\x10\x12\x46\xe5\x7a\xa0\x24\xbc\x36\x34\xbd\xb2\x47\xba\xf7\xd2\x5e\xdf\x66\xc2\xbc\x82\x50\xfb\x2a\x9c\x97\xe3\x5b\xf0\x0e\xe5\x6d\xf5\x6c\x56\x6c\xdf\x16\x66\xd1\x09\x7f\x8a\xb2\x7c\xcb\x71\xce\x9c\x57\xb5\x81\xd5\xea\x47\xd4\xb4\xfb\x85\x52\x7d\xe8\x5f\xe1\x37\x58\x24\x48\x33\x22\x84\x45\xb4\x12\xe5\x05\x41\xa4\x10\x6a\x7d\x47\x83\x56\x4f\xab\xbb\x05\xd1\x9f\xb4\xed\x1b\x74\xfb\xd2\x15\x9b\xcd\x78\xb2\xde\xbd\x8a\x7f\xf2\xba\x06\x81\x02\xc4\x88\x0c\xa4\xdd\x6d\x9e\xda\x4e\x44\x2a\x56\x93\x00\x4b\x39\xe2\x31\xdd\xdc\x20\x1d\x92\xea\x2f\x85\x60\x47\x33\xe1\xe8\xf1\xee\x70\xd9\x16\xf9\xde\x1a\xd9\xbc\x9f\x54\x7b\xa4\xab\xbc\xc1\x5d\x5a\x49\x8e\x6c\xdc\x51\x52\xde\xd4\xe4\xfe\x27\xd4\x62\x5c\x1c\x17\x55\xfa\x30\xc5\x8f\x87\x8a\x14\x5a\xae\xc2\xda\xe1\x21\xc9\xd1\x70\x94\xe6\x88\x45\x9f\x73\xc2\xd6\xde\x25\xbc\x59\xea\x74\xc4\xe3\x4f\xf2\x41\x34\xa2\x59\x5f\x9b\x21\x28\x63\xc7\x8b\xc5\x28\x5e\x58\x45\x44\x89\x19\x8d\xd6\x94\x9d\xab\x0f\x2b\x37\x6c\x0e\x12\xa4\x5c\xb5\x79\x31\x43\x96\x02\x11\xd7\xef\xa9\xe8\x6b\xa6\xeb\x8d\x30\x23\x86\xd1\x75\xbc\xd5\x30\xc2\xfb\x62\x27\x4a\x2c\x34\x15\x57\x58\x75\xdd\xc9\xd2\xce\xcd\x39\x59\xda\x06\x10\x1d\xb5\xb9\x73\x86\x11\x21\x80\x9b\xe9\xaa\xae\xff\xef\x2a\x21\x98\x99\xc9\x4e\xed\x16\x9a\xd5\x8e\x96\x96\xa2\x70\x1c\x17\x51\x5d\x9d\xe7\xb4\x56\xe7\x39\xad\x6a\xda\x45\x3a\x8a\x42\xc4\x70\x58\xe9\xa7\x4a\x8f\xc9\xbf\xa0\xa2\xc4\x5b\xaa\xd5\x44\xd9\xdd\x8c\x9a\x5d\x38\xc5\xe9\x16\x2c\x03\x57\x11\xd0\x2c\xe0\xe2\xaa\xc0\x47\x1a\xa4\x6a\x69\x2f\xeb\x21\xd6\x7a\x3d\x51\x5d\xeb\x38\x5b\xb6\x6b\x35\x54\x56\xa0\x51\x59\x53\x7b\x94\xe6\xca\x4d\xa6\x86\x70\x31\x88\xc2\xc7\xe5\x01\xa5\x61\xb3\x97\xea\x07\x5c\x5c\x54\x34\x6f\x18\x44\x64\x1d\x47\xf2\x11\xae\x00\x79\x78\xa1\xa6\xef\xc8\x7f\x3f\x51\x02\xc8\xe9\xd0\xbe\x8e\x15\xe0\x28\x62\xe7\xe7\xe5\xb8\xe6\x71\x8b\x74\xf4\x20\xdd\x18\x67\xc2\xa8\x41\x08\x3d\x6a\xf5\x29\x3c\xe9\xc7\xba\xca\xcc\x6d\x06\x9a\x71\xb6\xa6\xf9\x7a\xf4\x20\xff\x8d\x56\x70\xdd\x33\xa9\xd1\xd5\xee\x7c\x5c\xcf\xcf\x77\x72\x13\xf5\x5a\x75\xfc\x7a\xb5\xe3\x04\x33\xaa\xf2\x61\x33\x8e\x8b\x96\xaa\x37\x5e\x01\xb4\x99\x4f\x5c\xec\x93\x87\x99\xa5\xd8\x17\xda\x5f\xaa\x52\x27\xbd\xc8\x0f\xb5\x76\xd2\x38\x31\xb0\x2a\x8e\x20\x79\x27\x63\x2c\x3a\xa7\x5b\x81\xd2\x1f\xca\xf3\x34\x84\x2c\xfc\x5e\x5f\x6e\xe7\x29\x0f\x2c\xde\x1b\x58\x84\x78\x22\xbf\xd8\xd5\x3d\xa3\xb7\x15\x8a\x1d\x0a\xc1\x88\x68\xef\x29\x90\x83\xc9\xa3\x1e\x54\x36\xb0\xeb\x3f\xa3\xcf\xf0\xbe\xc0\x25\x62\x7c\xe1\xf2\x94\xeb\x7d\x86\xe8\xa8\xc7\x59\x26\xec\x34\x2c\xaf\x1f\xf8\x22\xe6\xf9\xf2\xdf\xfe\x82\x1c\x37\xb4\x59\x11\x2d\x45\xa1\x29\x6c\x8e\x9e\x36\x16\xc1\x1d\xde\x6e\xa8\x76\x6d\x05\xaa\x1d\x72\x43\x29\x7e\x6d\x28\x70\xf6\x7b\x0e\xdd\x31\x18\x0f\x47\x03\xa2\xee\xd5\x8f\xe1\x73\x5d\x3c\xfd\xdc\x8b\x9e\xbf\x6e\x8b\xb4\xad\x23\xbe\x1f\x95\xb5\x39\x95\xea\x43\xd8\x10\xd7\xa6\x92\xfb\x43\xb3\x1d\x03\x4a\xd1\x6a\x0b\xb1\xc8\x29\x1c\xa3\x28\x9e\xaa\x10\x35\x4d\x72\xfb\xea\x18\xda\x9a\x55\x1c\x89\xfd\xff\x0e\xb9\x37\x3e\x6e\xa0\xfb\xee\xf4\x2b\x2f\x9c\x08\x36\x11\xa1\xfc\x19\xec\x1e\x3e\x99\x6a\x7d\x3c\x23\x68\x65\xaa\x54\xe3\xe6\x44\x1f\x5e\x11\x89\x5d\x72\x32\xf4\xff\xc9\xbf\xab\x67\x26\xcf\x97\xed\x17\xff\xd6\xd7\xb9\x02\x77\x5f\x85\x6b\x57\x5d\xd5\x65\x35\x22\xfc\x38\x3c\x1d\xd2\x01\xf4\xa6\xa4\xb2\xea\x1d\xf1\x49\x2d\x66\xb1\x8c\xf0\x0c\x96\x93\x5b\x4d\x7c\xd2\x28\x67\xc6\x55\x97\x96\xdf\xe2\x00\x7e\xf2\xb1\x6a\x01\xac\x56\x2e\xae\xe5\x33\xdc\x2b\x81\x07\x3c\x5c\x71\xcd\xee\x9e\x35\xb1\xcd\x2a\x87\x0b\x97\xe0\xd4\x3e\xaa\xbb\x17\x7a\x35\x8f\x33\x79\xa7\xc9\x99\x2e\xc5\x36\x1f\x8c\xd2\x82\xf3\x4d\xd4\x3b\x71\xf7\x6e\xe6\x79\x6e\xce\x21\x7e\x3d\x77\x88\xd3\x11\x1b\xca\x2d\xe1\x79\x6f\x2a\xc5\x9d\xcd\x46\xc0\x65\x3a\x4e\x0a\x76\x77\x70\x94\x27\x03\xe5\x35\x4f\xaa\xee\x5f\x31\x10\xd5\x3d\xc7\x85\xce\x5d\x13\x89\xd5\xfd\x14\x80\x89\xb2\x30\x33\x4b\xc5\x7e\xef\x32\x1e\x44\x35\x58\xfc\x4d\x4b\xc9\xde\x57\x4b\xdc\x71\xa4\xfa\x86\x29\xab\x3f\x23\x42\x3c\x47\x36\x1a\x85\xec\x37\x69\x61\x3b\x6d\xdb\xd9\x23\xdc\x04\xba\x17\xd4\x5a\x27\x4a\x82\x2e\xb3\x2b\x51\x92\xaa\x41\x97\x0f\x75\xe2\xfe\xa1\x9a\x76\x08\xd3\x2c\x23\x0c\x12\x30\xec\xc2\x99\x4c\xab\x11\xbb\xf8\x23\x25\xf2\xf8\x60\xd7\x37\x47\x6e\x78\x60\xae\xc9\x23\x9b\x03\x3a\x86\xf7\x76\x0e\x79\x14\xca\x2d\x37\xd4\xf4\xcb\x34\x13\xd1\x2b\xaf\x74\x56\xa3\x62\x90\x8e\xa1\xa0\xe1\x44\x4b\x7c\xf2\x72\xa1\xd4\xd5\xe8\xa4\xc8\xd2\xf8\x91\xea\xa7\x5c\xc2\x50\x79\x63\xd7\x3e\x98\x3d\xc2\x11\xe9\x6d\xa6\xd0\x64\x51\x71\xbc\x66\xe1\xcf\x57\x9d\xe4\xcf\x01\x0d\x13\xed\xf1\xea\xb1\xe3\x5a\x21\x2f\x26\x70\xd8\xea\xc6\x99\x62\x4c\xd3\xbc\x6e\x29\x6a\xaf\x6f\x61\x79\xe0\xae\xef\xea\xb6\xd4\x25\xf7\xac\xbe\x69\x97\x96\x32\x8b\x90\xd3\x41\x19\x3c\xd7\xe4\x69\x35\x5a\x62\x0d\x19\xab\xfc\xa1\x96\xf0\xe1\xfc\x07\x8f\x4d\x94\x6a\xf6\x79\x0a\x3d\xe0\x4d\x3e\x41\x1a\xca\x44\xad\x81\xc2\xb4\x4d\x38\x09\x67\xbc\x29\xcc\x9d\xf3\x47\x35\x29\x87\xa3\x07\xe7\xb7\x77\x77\xd5\xd5\x80\x45\x97\x0b\x89\x8a\x4d\x61\xa6\xeb\xbd\x7b\x61\xb3\x6c\x8d\x2d\xa3\x24\x40\x0a\x52\xb6\x1e\xf8\x7a\xc5\xaa\x4d\x7a\x6b\x48\xc4\x98\xbf\x08\x0c\x83\x38\xb9\x83\x9a\x80\x08\x05\x4d\x57\xc7\x88\xa8\x53\xcf\xc7\xc0\xca\xfc\x24\xf0\xae\xeb\x27\x6a\x4d\x66\xde\xac\xe2\xf5\x7c\x37\xf0\x7d\xa9\x3d\x5d\xdf\x1f\xde\x3b\xf1\xee\xfb\xd5\x31\x65\x7c\x4e\xca\xe5\x34\x3f\x3d\x94\xbf\x4e\x94\xfe\x89\x9f\xd6\x83\xde\x27\x82\x87\xfd\xc0\x7e\x6e\x7b\x48\xa5\x58\x4e\x0b\x0d\x38\x27\x80\xed\xc2\x81\xab\xa5\xd2\xb7\x82\x4a\x8e\x08\x70\x79\x33\x72\x4d\x45\x2f\x61\x3a\x1c\xd9\x22\x2a\xd2\x2c\x7f\x90\x9e\xa2\x38\x1f\x85\xa9\x42\x9d\x13\xaf\xf4\x7b\xa8\xf2\x21\x8b\x78\x03\xc6\x82\x51\xdf\x58\xc2\x4e\x1e\xc4\x51\x83\xdf\x52\x64\xd6\xff\x94\xd6\xbf\x70\x10\xfb\x01\xcb\xd5\x28\x8e\x23\x33\x6c\xfb\x12\x36\xd3\x33\x23\x4f\xbb\xcc\x8f\x4c\xa8\x86\x9f\x54\xb1\x11\xa2\x2f\x9b\x13\x2d\x22\x17\x48\x03\x6f\x0e\xcf\x36\xa9\xe9\x8f\xac\xc9\x0d\x19\x6d\x8f\x0c\x67\x53\x29\xf2\x01\x3b\x5d\x4b\x15\x9d\xc2\x6d\x17\xd8\x69\xb0\x08\x68\x87\xf1\xb1\x9e\xe1\xca\x6c\x91\xc9\x44\x12\xb3\x46\x06\x9a\x41\x52\x2b\xe0\x2c\xf3\x50\xb5\x68\x25\x29\x05\x49\x06\x13\xc3\x71\xdf\x51\x33\x19\x0c\x46\x17\x41\x20\x9f\xe6\xa6\xe3\x62\x29\x2a\x00\x9e\x65\x08\x3d\x6d\x33\x81\xd3\xcb\x60\xdc\x38\x89\xa3\x65\xcb\x82\xbf\x14\xb1\xfd\xa7\x7f\x6e\xa2\x92\x2a\xf8\x49\xba\xb1\x9f\xfb\xa5\xae\xd2\x55\xb4\x26\xc9\x41\x5b\x20\x33\x45\x9a\x85\xb3\x54\x70\x55\x24\x26\xd2\xa8\xf3\x9b\x36\x8e\xd3\x35\xae\x1c\xa2\x7e\xc4\x42\x16\x7c\xa2\x41\xe8\x26\xdc\xa3\xb4\x64\x4a\x1f\xc2\x1e\xe8\xb6\xbe\x3e\xeb\xea\x62\xde\xa6\xa0\x6b\x01\x6b\xfb\x5e\x13\xa1\x34\x78\xd6\x92\x9c\x28\x4d\x5c\x6f\x08\x1b\x99\x8f\x95\x3a\xa5\xcd\xf0\x80\xc4\xe6\xfa\x56\xd4\x75\xcd\x33\xdc\x52\xa0\x2e\x9b\xa7\x85\xcd\xa2\x10\x56\x09\x00\x8f\xe3\xa5\x27\xe2\x63\xc6\x4f\xec\xad\x1b\xc1\xa3\xaa\xfb\x3e\x34\x51\x42\x64\x42\xc8\x57\x8f\xd7\x49\x6c\x5c\xdf\x15\x45\x3a\x47\xc2\xe1\x58\x6b\x10\x06\x60\xcb\xcc\x74\x7d\xb1\x36\x5f\x1b\x8e\x8a\x74\x08\xfd\x1e\xc7\x97\xe2\xa7\x4f\x7d\x61\x6b\x29\x4d\x7a\x20\xf9\x5f\xe0\x45\x8d\xc4\x8e\x8f\x1b\x84\x2e\x3a\x61\x1a\xc7\x66\xe4\x65\x68\x1c\x60\xcf\xbd\x86\xcd\xa6\xc9\x59\x9b\xe4\x76\x48\x22\xdc\xae\x28\xb1\x8b\xf2\x1f\x3e\x76\x8a\x8a\x6b\xd6\x64\xf1\xda\x8c\x7f\x55\x5b\xaa\x1b\x8d\x90\x06\xad\x35\x66\xd0\x92\x89\x6b\x8f\x60\xea\x67\xd6\x54\xf1\xa0\xf7\xcf\x1b\x8a\x7f\x7a\x37\x65\xd8\xa8\x14\x5f\xd3\x9a\xbb\x03\xfa\x58\x4b\x49\x9d\xfd\x84\xec\x0a\x1f\x2b\x23\x44\x8a\x1b\x91\xa0\xae\x17\xbc\x94\x9d\x9b\xe6\x5f\x57\x7a\x7b\x03\x70\x55\xb4\x34\x1d\x63\x8d\xa0\xc2\xbd\x8c\x38\x5d\xb5\xd9\x8c\xc2\x9f\x5f\x53\x64\x24\xd7\xc8\x9c\x60\x49\x71\x93\x80\x4f\x02\x5f\x58\x58\xb4\xbf\xa8\xb0\x5a\xfb\x41\xe9\x84\x12\xf9\x1d\x34\x31\x1c\x25\xdf\xe1\x05\x47\x14\xef\x3a\xff\xbf\xf5\xd8\xc4\x6b\xee\x5f\x23\x98\x14\x97\xc1\x61\xf9\x45\x86\xa6\x5a\x57\x5a\x45\x1f\x19\xf3\x9b\x28\x89\xa3\x9c\x79\xbc\xac\xf6\x2b\x16\xc4\x7f\xc9\xe6\xdc\xf1\x81\xb9\x71\xe7\xb3\x04\xaa\xc5\x4e\xbe\x11\x28\xee\x9c\xff\x1e\x11\x15\xe3\x91\x02\xc5\x42\x73\x4c\x8d\x92\xcc\xd0\x3c\xe4\xf6\x65\x84\x8a\xfc\xc3\x88\xa0\x58\xe3\x18\x55\x3b\xa0\xc0\xb7\x34\x61\xc4\x6d\x0a\x88\x85\x25\xb7\xf5\xab\x7f\x93\xaf\x75\x5f\xd7\x67\x31\x66\x54\xc8\xe6\x10\x94\xa0\x42\x0c\xba\x1a\x74\x48\xdc\xae\xc5\x8c\xde\xa4\x74\x41\xf0\x2d\x80\x60\xbb\x22\xba\xa3\x99\xfd\x58\x25\x0a\x55\x56\x99\x49\xd6\x2f\xd2\x1c\x9e\x35\x95\x99\x0e\xd0\xd2\xb8\x1d\xd4\x18\x1a\x0a\x9b\x17\x79\x5b\xe9\xe2\x60\x10\x86\x71\x49\x81\x2a\x12\xd7\xb8\x38\xc6\xe1\xe0\xf1\xea\x09\xb8\x24\xd3\x23\x56\x31\x15\x81\x2f\x38\x53\x63\x23\xd1\x29\xfe\x4f\x74\x4b\xed\x2e\x4a\xb7\x32\xb6\x4e\x57\x0b\xbc\xf7\x16\xbd\x6d\xd4\x80\x3e\x0a\x5c\xc7\xfc\x89\x36\xfa\xc6\xc0\xf1\xb6\x26\xf4\xb6\x45\xfe\x5e\xd1\x82\xee\xa7\xdd\x8a\x30\xf4\x00\x7a\x39\x58\x13\xbb\xbb\x3b\x79\x41\x64\xb0\xf7\x86\x73\x79\x83\x74\x64\x21\x04\xe4\xe7\xf6\x2e\x28\x91\xfb\x99\xae\x87\x4e\x6c\x95\x1e\x16\xb5\x3a\x48\x7f\x51\x91\x22\x6c\x06\xaa\xed\x79\x07\xa1\x98\x0c\x3b\xb4\x1c\x29\xe1\x26\x2d\x65\x69\xe8\x56\x3b\x84\xcb\x93\x9a\xeb\x6c\x9d\x13\x0a\x7c\xf1\x77\xe9\x79\x88\xb8\x66\xeb\xd0\x21\xb6\xbb\x67\x68\x23\x6d\xbf\x4f\x62\x14\x62\xc1\xaa\x15\xb5\xfd\x7e\xa9\x74\x97\x7e\x86\x4d\x89\x40\xed\x26\xed\x68\x34\xcd\xde\x43\x18\x8c\xfa\xd3\x0f\x69\x1d\xe1\xe2\xb9\x6a\xe6\xa0\x09\x87\x66\x79\x4b\x9f\x2a\x95\x8c\xfb\x3d\xdd\x32\x79\x90\x5e\x00\x8c\xac\x10\x56\xa0\x94\x70\xab\x46\x7b\xa6\xb8\xa1\x2e\x37\x52\xc5\x66\xa9\xa7\x8a\x15\x79\x28\xc5\x6d\x73\x32\x70\x66\x30\xea\x0f\x24\xbf\x86\x37\xbd\x89\xa5\xc6\x27\x53\x39\xf9\xaf\x74\x16\x6d\x9c\x26\x7d\xfe\x0c\x4a\xfa\xb7\x60\x33\xf8\x44\x35\x13\xec\x6b\x05\xc9\x61\x7b\x35\xdf\x37\xc8\x86\xf1\xf1\x14\x17\x42\x95\x34\x8c\x47\x6d\xdf\x78\x9c\xe9\xfa\x59\xab\x09\x79\x60\x14\x51\xdb\x53\x23\x15\xcf\xcf\x77\xb2\x71\x9e\x47\x26\xa1\xc6\x9d\xc6\xeb\xa0\x72\xca\xd5\x6a\x19\x04\xd9\xe9\x36\x0f\x1f\xec\xf4\xa2\x9c\xba\x18\x7a\xbc\xe7\x9c\xea\x62\x9c\xdb\x51\xd6\x1d\x72\xf5\x4c\x86\x97\xfd\x02\xbf\xa4\xab\x67\x6f\x22\xd9\x10\x5e\x9e\xf4\xa9\x1a\x92\x9f\x9e\x1c\xa2\x9e\x3d\xdd\xd6\xd3\x4f\xf3\x52\x00\xc2\x1e\x6b\xef\x53\x5a\x6e\x0c\xe4\x51\x42\xf2\xc7\x90\x0f\x0a\x83\xa6\x27\x75\xfc\x9f\x79\x90\x1a\x25\xec\xab\xf5\xd9\xb5\xb9\x39\x5e\x3a\x4f\x41\xb6\x47\x67\x3d\xdb\x5b\x30\xe8\x4e\x07\xa2\x5a\xa8\x32\x85\x4f\x61\x24\x02\xff\xed\xd2\x9b\xbd\x2b\xb4\xff\x90\xa8\x9f\x85\xd5\x77\x20\xc5\xca\x30\xfb\x11\x34\x67\xea\x81\xef\x39\x50\x6d\x09\x98\xa1\xcf\xd4\x60\xd1\x8f\xe9\x35\xbb\x69\xa7\xea\x3e\x04\xf1\xa6\x10\x61\x3f\x2e\x77\x3c\x7b\x37\xe8\x0b\x26\x52\x4d\xb0\x2c\x7d\x4c\x7a\x40\x7c\x52\x2a\x22\xd2\xcd\x46\xd8\x4f\x2f\x1b\xf7\x39\x4f\xae\xc5\x40\x7c\xd2\x04\xa8\xaa\x62\x15\xe0\xbe\x60\x8e\xf6\x4e\x7c\x4f\xe0\x91\xae\x9e\x59\x7e\x42\x79\x95\x28\x29\xd2\x71\x81\xaa\x1c\x93\x27\xc2\x05\xa1\xeb\x00\x49\x17\x1e\xb7\xf5\xf1\xcb\x38\x2e\x52\x2c\x75\x78\x38\x44\x44\xce\x26\xcd\x3b\xf1\xe5\xcd\xa9\x76\xd4\x33\x1d\x9b\xc4\x51\xee\x06\xd9\x44\xb4\x95\xd6\xa5\xa8\xb9\xfa\x3c\xe1\xe0\x0b\x5c\xef\xd3\xd5\x4e\x54\x89\xcf\xe8\xb0\xf0\x94\x4b\xe6\x49\xa8\x12\xfc\x9f\x0b\x2e\xaf\xa4\x9f\x72\x24\x80\xbe\x5c\x8e\x9f\x45\xe2\xb5\xb7\x2b\xe5\xca\x28\xe9\x45\x4b\x4b\x36\xb3\x09\xea\x54\x82\xe4\x6a\x39\xfd\x90\x6d\xba\x0e\x34\xd6\xa7\xb9\x0d\x66\x8f\x74\x7a\x76\xc9\x0c\x4d\x91\x66\x60\x76\xe5\xbe\x97\xba\xfa\x0b\x9e\xb5\x2e\x8b\x42\xf2\x5e\x2d\x3f\x67\x0f\x49\x10\x3e\x56\x30\xf4\x55\xb3\xf6\xb0\xb7\x09\xf7\xe0\xa2\x90\x17\x7c\x04\x25\x76\xd7\x5f\xa9\x56\x82\xe3\x07\xf2\x36\xf0\x8f\x08\x91\x2a\x41\x83\x16\x47\xbb\xaa\xa6\xbe\xff\x54\x31\x76\xdd\x2b\x6b\xba\xec\xd5\x82\x40\x2c\x70\x82\x36\x0b\xb3\x8c\x61\xf3\x09\x07\xd1\xe3\x6e\x12\x25\x5b\x22\xb9\x5e\x7e\xdb\x08\x44\x77\x4f\x7c\xe7\x6c\x77\x57\xdb\xb5\x24\x12\x40\xb8\xf3\x86\x0a\xf0\xd0\x34\x66\x9b\x59\x50\x71\x51\x5a\xcc\x70\xda\xc0\x73\x94\x5d\x72\x8f\xb9\x97\x26\x82\x22\xdc\x39\x34\x25\xed\x30\x0d\xc2\xc8\x87\xd8\x14\x4c\x4e\x46\xef\x1e\xcf\xe6\x26\x6e\x15\x35\x9a\xcf\x15\xdf\x95\x08\xaa\xce\xa8\xad\xfa\x39\x3f\x62\x86\x5c\x06\xaa\x8a\xf3\x2e\x7d\x27\xac\xe9\x4d\x17\xca\x80\xb8\x40\x18\x88\xe1\xf2\xff\x7e\xe9\xfd\xd6\x67\x7a\x48\xea\xd3\x26\x0d\x98\xc3\x0b\xd4\x12\x73\xb8\xe8\xea\xe5\xc9\xf8\x71\x23\x43\x76\x98\x8e\x41\x5f\x8d\xa6\x34\x37\xc0\xf9\x44\x91\x65\xa5\xa3\x71\x5c\x79\x54\x2d\xea\xfe\x0e\x5e\x90\xc0\x94\x9e\x50\xf8\xc1\x91\xcd\x56\xa2\x1c\x79\x20\x1c\x0e\xb4\x9d\xf8\xb8\xdc\xd9\x67\x9e\xaf\x52\xf8\x22\x4b\x7b\xe3\xd0\xa1\x3d\x5f\x76\x68\xcf\xda\x60\xfb\x13\x0e\x69\xbf\x18\xa6\xc3\x61\x54\x58\x8b\x74\x0e\xbe\xec\x82\xca\xe6\x2f\x4c\xb1\x9f\x1e\x3d\xf8\x32\x78\x09\x57\x07\x36\xb3\x54\x04\x60\x04\x49\xa0\x38\x20\xd0\x4b\x41\x54\xf1\xfd\x06\x16\xb8\x8e\xcd\x0b\xb3\x18\x47\xf9\x40\x3a\xe2\x30\x85\x3f\x80\xa5\xe7\x13\x55\xf1\xf8\xba\x81\x29\xc0\xd6\xbd\xa2\x1a\x17\x57\x9a\xda\x1d\x3d\x1b\x46\x3d\xdb\x63\x59\xcf\x26\x6e\x7c\x35\x40\x16\x9b\xd0\xe6\x33\xb4\xff\x5d\x15\xa0\xda\xff\x52\x05\xa8\x3e\x86\x02\x3d\x60\xd5\x7c\x5c\x7a\x31\xe0\x5e\x94\x87\x55\x6e\x12\x31\x08\x5b\x8a\xc3\xbe\x40\xf8\x76\xe9\x99\x97\x6c\x5e\x44\x7d\x40\xbe\xb8\x51\xaf\x44\xa0\x4f\xed\x5c\x94\xb3\x47\x3a\x47\x0f\xce\x3f\xaa\x18\x05\xef\xc0\x20\xc3\xbe\xb1\xe4\x2b\xe2\x15\x94\xdd\x70\xbc\x6b\x42\x77\x84\x93\x2b\xb8\x23\x04\x28\x9f\x23\x22\xc5\xbe\xe5\x58\x17\x11\xf5\xae\x6e\x65\xde\x5c\xd0\x7e\x58\xe6\xd3\xa5\xd0\x88\xe8\xe3\x4f\x50\x05\x85\x9f\x07\xfb\x2b\x32\x9a\xb7\xb1\xbb\x80\xe0\x39\xa7\x1d\xcc\x7d\x35\xe8\x96\xd8\xd5\x7c\x44\xf2\xd4\x2d\x2d\x28\xe7\xc8\x78\x7e\xaa\x79\xf9\xaf\x4d\x6d\xba\xb9\xb9\x4e\x98\x8e\x33\xa9\x52\xe2\x2a\x3e\x0a\xd4\x58\xd5\x47\x53\xc4\x27\x44\xdd\xe4\xc6\xfa\x71\x7d\x6f\x06\x0a\xd9\xfd\x66\x93\x16\xc9\x92\x49\x42\xa6\x6e\xd7\xa8\x69\x54\x20\xb7\xd5\xa4\xd4\xfa\x54\x34\xfc\x4c\x67\x14\x85\xcb\x28\x75\xc1\xc1\x20\x4f\x15\x2c\x98\x9a\x57\x9f\xd6\x07\x3e\x7c\xf0\x70\xa7\x6f\xc6\x71\x0a\xa6\x0d\x45\x64\xc5\x91\x93\xa0\x99\x55\x57\x4c\xed\x7a\xc9\x1b\x36\x15\xa5\xe7\xa6\x53\x03\xc9\xc7\x43\x9e\xbd\x15\xb1\x5b\x85\x4e\x3c\x4e\x37\xc5\xc7\x70\x5c\x22\x83\xeb\x0a\xb3\x36\x34\x39\xe6\xbf\x04\x0d\xaa\xa2\xd7\xb7\xc8\xa9\x89\x3e\xcc\xce\x38\x8b\x26\x75\x56\x19\x20\xc6\x64\x9b\xd8\xf0\x8c\x09\xc3\x4f\x0a\x41\xfc\x93\x4a\x04\xa2\xa8\xcc\xa1\x5d\xe5\x97\x8e\x34\x6d\x5d\xc1\xc2\xd6\x9b\xa8\xe1\x17\x6d\x5e\x60\x9a\x12\x37\x71\x1a\xbb\x80\x4f\xbc\x6f\x1b\x8f\xe2\x28\x8c\x6a\x05\xec\x0d\x72\xe7\x7c\xac\x10\x16\x23\x6b\x42\x4b\x25\x0c\x37\x12\xe0\xc2\x0e\x4e\x80\x65\x92\x4e\xf5\x1b\x37\x15\x6c\x21\x1a\x9a\xbe\x45\xd7\x02\x51\xef\x29\x44\xca\x82\x8a\xa2\x8f\xc1\x8a\xfe\x61\xe9\x45\x7f\x6f\x63\xd3\x09\x68\xd6\x83\xb2\xf6\x4c\x3c\x89\xa3\xc9\xfa\x76\x7f\xcb\x13\xcc\x52\xae\x2d\xa1\x07\xfd\x8a\xb0\x45\xfa\xca\xf0\x25\x95\x63\x3c\xda\x55\x33\x26\xac\xb1\x28\x0a\x45\x95\x35\x00\x28\x93\x01\xad\x52\xaa\x51\x9c\x2e\x17\xdc\x70\x92\x79\xdd\x62\x54\xba\x91\x66\xff\x09\x35\x96\x3f\xce\xc7\x98\xcf\x3c\x7a\x90\xc7\xa5\x48\x77\x4f\x28\xeb\x76\x35\xd2\x39\x44\xc9\x37\x15\x9d\x83\x53\xae\xf4\x03\x54\xdf\x53\x08\x25\xd0\x73\x3c\x54\xbd\x50\xd4\x67\x30\x4f\x86\xf2\xdd\xa7\xba\x68\x76\x1f\x96\x55\x88\x0d\xaa\xb5\xcc\x53\x2c\xb0\x6c\x42\x16\x80\x6d\xa8\x1b\xe7\xfc\x11\x14\x0f\x59\xe8\x41\x35\x0d\x19\x7d\x2d\xba\xa0\xaa\x9f\x75\xa9\x36\xde\x6d\x93\xfc\x80\x87\xe9\xfd\xa6\x52\x69\xdc\xdf\xad\x0d\x49\x2d\xcc\x1e\xe1\x77\xf9\x63\xfc\x26\xee\xe6\xf3\xd2\x73\x0c\xfd\x41\xe9\xb9\x37\x06\x6c\xc0\x91\x35\xfd\x88\xd6\x05\xf2\xec\x73\x8a\x38\xe9\x0a\xac\x28\x4c\xf2\x03\x13\xc5\xa8\x1c\x65\x21\x09\x48\xce\x1e\xe1\x70\xfe\xd7\x55\x21\xfb\xd7\x9b\xa8\x02\x47\xd1\x70\xc4\xc9\x07\xd6\xec\x6d\xc5\x15\x78\xa1\x26\x75\xe2\x79\x03\x57\xcd\xda\x23\xb8\x50\x54\xfa\x91\x6d\x20\x41\x7d\x02\x5d\x7e\x44\x91\x1f\x96\x6a\x27\xa3\x3b\x4b\xc5\xd5\x07\x9f\xa0\xca\x2c\x92\xe0\xdd\x93\xea\x91\x71\x10\xa8\x99\x24\xdf\xd6\xed\xff\x7f\xa2\xf4\x5c\x7f\xbf\x54\xd6\xe2\x3c\x16\x83\xdb\x31\x87\x66\x3d\x38\x69\xf6\x88\x68\x99\x76\x77\x42\x0d\x5f\x3a\x7c\x50\x45\x37\xbc\x42\x45\x56\xab\xba\x1d\x3e\x56\x1e\xd1\xbe\x36\x4a\xf3\x71\x86\x50\xe8\x39\x11\x3f\x2e\x7d\x12\x73\xa9\x61\x82\x81\x18\xa5\xc7\x99\x9f\x60\x80\xf3\xfb\x4c\x21\x41\x3e\x53\xb8\x89\xcc\xc6\x51\x9f\x64\xd2\x9c\x02\xdd\x6e\x30\xbe\xf1\x49\x77\xa7\x01\x7d\xa6\xb3\x94\x8e\x93\xda\x16\xe3\xf9\x00\x3e\x51\xc1\x6d\x2f\x8d\x63\x93\xe5\x04\xca\x00\xbe\x63\x4b\x53\xff\xa3\x20\x2c\x83\x01\xb4\x28\x50\x50\xc3\xe6\x81\x87\xe4\x01\x48\xd4\x3d\x37\x74\xd5\xec\x43\x5d\x29\xfd\xa7\x78\x2d\xfc\x67\x81\x2f\xc4\x7f\x5a\x1e\x50\xd7\xf3\xa8\xc2\x9a\x5c\x46\x8c\x03\x7b\x79\xa3\x54\xe4\x8b\x7b\x27\x4a\x81\xe3\x5c\xa9\x6a\x96\x40\x12\xca\x25\x7b\xe3\xf4\x10\x95\xb5\xf0\xbd\xe0\xb6\x76\xac\x7e\xd5\x05\x63\xef\x60\xa6\x02\xf5\xaa\x7b\xa5\x1a\xf8\x04\xe9\xb3\xc8\x52\x54\xcb\x08\xb5\xe4\x07\x80\x05\x10\xc1\xb5\x06\x6a\xb8\x9e\xcd\x97\x45\x84\x5c\xca\x8c\xd5\x8f\xf0\xf1\x44\x0c\x6f\x16\xe5\x61\xdb\x0f\x53\x6d\xe8\x71\x10\x2c\x7b\x9c\xdc\x9f\x8a\xec\x05\xdf\x96\x0f\xd2\x71\xdc\x6b\xb7\xbe\x3e\xcb\x4f\xfc\x6e\x4d\x26\xa8\xba\x01\x49\xc2\x15\x2b\x0c\xc9\x98\xb7\x1c\x39\xfb\xa6\x62\x81\xda\x74\xd5\x85\x74\x39\x5d\x34\x09\xa6\x56\xd1\x18\xe1\x6b\xe2\x13\xd5\xfa\x1e\x46\xaf\x91\x54\x3b\x3d\x3c\xcc\x2e\xbd\x4f\x8b\x85\x8f\x9b\x3a\xd1\xd5\x3e\xca\xbc\x70\x0e\x0c\x2c\xe4\xc6\xf8\x58\xc5\x14\xa4\x93\x51\x44\x4b\x4b\x39\x74\xc9\x99\xf7\x08\x59\x0c\xca\x60\x9f\x29\xe5\xbb\xcf\xe1\x5d\xf8\x1f\xa6\x7e\xfd\xf0\xc1\x4e\x94\x2c\xc5\x40\xca\x79\x41\xe4\xe3\x58\x6c\xc2\xb8\xa6\x93\xf5\xac\x78\x5d\xf3\x5b\x5c\x0c\x54\x38\x7b\x51\x8d\x94\xe4\xab\x96\x87\x8a\xf4\x60\x7c\x75\x61\x7c\x3c\x55\x24\x7a\xe5\x95\x4e\x3f\x9b\x02\x6f\x5c\x52\xe0\x8d\xda\xd0\x23\x81\xa2\xf3\x7d\xd5\xbf\x32\x1e\x58\xeb\xc8\x5d\xc5\xde\x73\x6f\xab\xda\x21\x68\x0b\x00\xd4\xe8\x98\xd5\x9f\x77\xf4\x29\xb5\x39\xac\x86\x9c\xb9\x6f\x92\xde\x20\x6a\xd7\x05\x41\x95\x81\xd0\x70\xbf\x29\x02\x58\x52\xb0\x72\x54\x2d\x6f\x06\xbe\x0a\xf0\xa6\xea\x6d\x82\x0d\x61\xbf\x57\x54\xbe\x5d\x53\xbc\xa5\x2b\x44\x89\xa3\xc5\xce\x1c\xa9\xd1\xfd\x1a\x3b\x07\xad\x37\x8c\x20\x3c\xd8\x55\xae\x8c\x31\x53\x28\x29\x5c\x55\xd0\xfc\x33\x58\x24\x0c\x42\x9c\xba\xf7\x43\x87\xaa\xff\x2e\x73\xe6\xe3\x68\xe0\x8f\x1e\xf4\xf4\xf0\x2e\x97\xba\x3e\xb5\xc4\x5e\x79\xa5\xb3\x3a\x88\x0a\xbb\x6a\x72\x60\x06\x9d\x09\x74\xdd\xa2\x0d\xad\x47\x3e\x48\x7b\xbd\x35\x05\x2e\xfc\x27\x0a\x5c\xf8\x4f\x1c\x95\x48\x9e\xc6\x2d\x4d\x83\xc0\x90\x22\xc1\x66\xd4\x56\x6c\xdc\x7b\x58\x53\x71\x9f\x54\xa8\xd6\x9b\x6a\x34\xf6\x76\xa0\x05\x7e\x02\x9f\x46\x5e\x54\xf5\xe1\xdf\x41\x44\x25\x3a\x4d\xf4\x74\xe1\xdb\xef\x23\x56\xc2\xc2\xd8\x02\x04\x02\x3f\xc2\xbd\x59\x27\x46\x3d\x7b\x44\x56\x89\xa6\x53\x3e\xde\xb0\xe6\x16\x3a\x8b\x46\xaa\x01\x5c\x95\x08\x74\x85\xa2\x21\x61\xcc\xd2\x74\x89\xd3\x0d\x80\x88\x40\xc9\xc0\xc7\xc8\xf8\x04\x28\x97\x17\x51\x31\xae\x12\xb0\x19\x95\xf1\xbd\x83\x9b\xe2\x13\x5c\xba\x53\x4c\x79\x5e\x18\x04\x2e\x4f\xa5\x7f\x34\x47\x9c\x14\x51\x32\x4e\xc7\x79\xdb\xf7\x8d\x8f\x6b\x06\x9c\x7f\xa0\xd4\xb1\x09\x12\xe5\xd1\xf8\xc9\x03\xf4\xf8\x1d\x37\xb6\x1b\x59\x01\x0e\x02\x45\xc6\xb6\x12\x64\xff\xcb\x1f\xab\x91\xb3\xbf\xaf\x06\xfa\xfe\x90\x5a\xdb\x4c\x3d\x5f\xaa\x2e\xda\xdf\x57\xbd\x55\xe8\x10\x32\xc7\x8d\x23\x1b\x3b\x34\xeb\x20\x43\x52\xcd\x5c\x1d\x44\xf9\x48\x11\x9b\x88\x66\x64\xf5\x7b\x7c\xec\x9a\x5b\xb1\x4d\xfa\xc5\xa0\xad\x24\x1a\x2e\x29\x00\xcb\xb6\x12\x52\x9e\xae\x1f\x8b\x1f\x4b\xa2\xbe\x05\xd0\x48\xa9\x29\x79\x3d\x94\x69\xcd\xa1\x85\xce\x20\xea\x0f\xaa\xdd\x79\xe8\x90\x1f\x55\xac\x22\x07\xd7\x88\xab\x6c\x08\xee\x6b\xab\xa9\x8b\xb0\x6c\xc3\x65\x2c\x99\x06\x8f\xbb\x31\x15\xc4\x1d\x79\xa1\x72\x59\xb6\x17\x81\xc5\x55\xa1\xd2\xe8\x01\x49\x7b\xc7\xc7\xe1\x8b\xb1\xe9\xf5\xb8\x5a\x8b\x2e\x2e\x88\xbd\xf8\xd8\x25\xe9\xf9\x20\xca\xa4\x37\x88\x6b\xdf\xd2\xec\x3c\x5b\xb5\x6d\x1d\xe6\x8b\x6d\x5f\x9b\xdf\xa4\x77\x87\xf7\xc1\xbd\x30\x18\xcd\xdd\x0a\x89\x48\xc5\xae\x07\x7c\xe3\x87\x75\x0f\x45\x39\x98\x7e\x4a\x72\x67\x8f\x58\x7e\x5b\x91\x8c\xde\xd4\x6d\x71\xe6\x39\x75\x75\x23\xaf\xe0\xf7\xf9\xd4\x24\x4f\x15\x5d\xbf\x36\x88\x62\x93\x29\xf1\x4b\x4d\x2a\xc9\xc7\xaa\x98\x9a\xd9\x3c\x1d\x67\xa1\xb0\x96\xb2\x50\x5e\xa0\x6a\x0d\x17\x40\x6b\xc4\x0f\x64\xcd\x50\x82\xcf\x9d\xfd\xd2\xab\x98\x31\xab\x88\x13\x59\xab\x7e\x5a\x61\xa3\xfc\xd0\xc8\x81\xd6\xf3\xf3\xdb\x97\x15\xe7\xda\x3e\x35\xf8\xfe\x23\xac\x29\x20\xa4\x7e\x40\x8e\x0f\x46\xe5\x8d\x52\x31\x98\x5c\xa3\xe8\xb0\x36\xb6\x89\xa4\xf0\x51\x92\xe4\x81\x0b\x7e\x84\xa4\x3a\x84\x7c\xb4\x36\x4f\xef\xb3\x8b\x7c\x9c\x8f\xa2\x90\x59\xd6\x1d\xfe\x5e\x65\x63\x67\x54\x25\x33\x4b\xc3\x65\xbb\x64\xe3\xd8\x66\xfb\x3c\xc9\x3f\xea\x0d\x6c\x14\xc8\xa2\xd4\x28\x23\xc5\x5a\xd0\x55\xa2\xf8\xc3\x39\x2e\x42\x94\x6b\xa5\xce\x3e\xb7\x9b\x84\xbb\x97\xd2\x6c\x58\x6f\x6a\xfd\x21\x5d\xa1\x7c\x75\x2d\x59\x12\xe9\x5b\x35\x9c\x14\xa8\xe1\x24\x15\x07\xe4\x45\x1a\x2e\xe7\x8f\xf9\xe0\xe2\x02\xba\xa4\xe8\x5d\x4e\x70\x91\x78\x96\x8f\x4e\x14\xa3\x28\x37\x7d\xdc\xf0\xa7\x13\x45\x64\x02\x20\x24\x0c\xb7\x29\x11\x64\x51\xd0\x52\x91\xfc\x5d\xa3\x84\x01\xee\xe8\x58\xd9\xfa\xc6\xd7\xbc\x18\x78\xf5\x0a\x44\x91\xc0\x3b\xf1\xfb\x94\xd1\x6f\x9f\xd5\x46\x16\x12\x76\xd8\xb1\xad\x6e\x83\x87\xca\x07\x36\x06\x45\x03\x93\x0d\x07\xbe\xcd\xf2\x79\x83\xd4\xe6\x7c\x27\x1f\x87\x83\x16\xd5\x0e\xe4\x6b\xd5\x4f\x4c\x1a\x48\x80\xbe\x39\xee\x45\x8e\x41\x1e\x0d\xe4\x93\x8a\x99\xf0\xa4\x16\xc1\xb6\xb1\x25\xcd\x07\x1d\x22\xec\x42\x8a\xc9\x27\x0a\x7b\x37\x1e\xe5\x45\x66\x0d\x6a\x44\xb0\xe4\xbb\xba\xde\xaa\xef\x6a\xe6\x5d\x34\xfd\xbe\xf0\x2e\x4a\xc1\x52\xe1\xf2\x8f\x7b\x39\x5a\xbb\x58\xd4\x3a\x9f\xfb\xe8\xbb\xb5\x84\x29\x2e\x69\xbb\x51\x9b\x36\x0c\xed\x08\xc3\xa8\x88\xfd\x77\xd1\x36\x13\x51\x09\x9f\xff\xbd\x8f\x70\x4f\x34\x4b\xe4\xd7\xbf\x99\xc6\x52\x9d\xc6\x8a\x47\xdf\x95\x8f\x15\x26\x75\x39\x8b\xf2\x81\x4c\xd9\x21\xce\xbc\xa4\x14\x00\x2e\xa9\x1a\xd6\x92\xc9\x86\x4c\x0d\xe3\x86\xac\x9f\x97\xae\xd6\xfb\x4a\x52\xf4\x9a\xa3\x18\xa0\xa2\xe9\x92\xcd\xec\x9e\xea\x4e\x70\xef\x18\x87\x46\x30\x7f\x41\xd1\xa0\x9d\x57\xdd\xb4\x63\x58\x84\xd8\x2f\x67\x5c\x33\x32\x4a\x4c\x18\x92\xaa\xc7\x8c\x2f\x21\x1c\xa0\xef\x93\xd8\xb9\xfa\x1d\x55\x3b\x59\x70\x26\x54\x97\xb8\x9e\x4d\x9f\xa5\x97\x8e\x7e\x39\xb0\x3d\x7c\x5c\x7a\xd9\xec\x7c\x39\x62\x68\x22\x5e\x01\xa0\x01\x3c\x66\x06\x3f\x2c\xa6\xc1\x53\x47\xaf\xd8\xcc\xf4\x65\x50\x19\xfd\x83\x53\xf0\x4c\x7c\xf2\x05\xa2\x7c\x66\x88\xbc\x5a\x1c\xae\x37\x3c\x17\x1a\xa6\x17\x17\x3a\x2b\xf9\xb3\xfb\x2a\x0b\xbf\x1f\xc6\x00\x99\xf1\xf7\x61\x4c\x1c\x27\x91\x13\x8a\xbb\x4c\x88\x44\x99\x94\xa1\x15\xe3\xde\xb5\xbb\xf7\x4b\x4d\x63\x92\xab\x26\xe3\x5a\x3d\xec\xcd\xc7\xb0\x31\x78\xf4\x90\x45\x73\x0d\x3e\x3f\x75\x7b\x49\xd1\xae\x86\xe3\xe2\x61\x8d\xb6\xf8\x2e\xbd\x67\x78\xdd\x2f\x4f\x54\x73\xf3\x32\x66\x3b\x24\x66\xa7\x07\x2c\x1a\x2c\xbe\x67\xcd\x8d\x44\x16\x4a\x42\x45\x1a\xff\xb2\x57\xc9\x7c\x5d\x2f\x15\xfe\xfd\x6c\xa0\x5a\xb1\x1c\x27\xb0\x6e\xa5\xce\xf3\x4e\x2b\x07\x9a\x14\xf9\xc3\x2e\x55\xf9\xf5\xa7\x48\x0b\x55\x98\x85\xaa\x6b\x71\x73\xd3\x9e\x3d\x1e\x7e\x88\xfe\xff\x91\xaf\x74\x95\xeb\xf9\xb9\x89\xb7\x02\xbf\xf2\xef\x11\x35\x15\x62\xfe\x87\x99\x7a\x95\xba\x39\xbf\xfd\x95\xae\x83\x7b\xac\x3d\x3d\x51\xdd\x99\x7d\x28\x10\x61\x11\xee\x01\x50\x54\x72\xe8\x26\xa1\xe9\xb4\xb7\x96\xe7\x3c\x74\x02\x9b\xff\x59\xa0\x78\xc7\x3f\x2b\x3b\xd3\x31\x20\x35\x7b\xc3\x34\xe9\x8d\x43\x62\xa3\x38\x2a\xac\x0e\x9b\x0a\x18\xb2\xe9\xa5\x5b\x06\x6b\x79\x14\x9a\xb8\xad\x38\xe6\x4a\x1f\xe6\x72\x11\x17\x76\xf4\xdf\x68\x7d\xf5\x28\x0f\xc7\x79\xfe\x80\xa2\x6d\x58\xd7\x62\xf4\x9b\xa5\xe7\x38\x3b\x59\xfa\x59\x5b\x66\xcd\x91\xae\xa7\x62\x5c\x61\x86\x61\xd7\x1b\x75\x3e\x62\x4b\x81\x2e\x0a\xd3\xdb\xe3\xc9\xf1\x37\x28\xa5\x80\xc7\x85\xac\xb8\xd3\x50\x57\x82\xe1\x3e\x1d\x99\x96\x17\x7a\xa6\xba\x91\x6c\x3c\x72\xd5\x7f\x29\x91\xd2\x55\x4a\xed\xf4\x51\x07\xa1\x58\x49\xb3\x88\x6d\x16\x42\x2e\x8a\xc5\x44\xa2\xca\x0d\x33\x1d\xf5\x02\xe7\x3e\x87\xfe\xa6\xe9\x8f\x4d\xf6\x98\xaf\x37\x5c\x43\x1a\x87\x87\xf4\x59\x59\xd3\x69\x50\x1d\xda\x6b\x78\x4a\x12\x96\x2a\x95\x8d\x77\x29\x32\xc0\x06\xd8\xac\x0d\x20\x28\xd8\xc0\x07\xa5\xe7\x38\x60\x03\xc6\xb8\x48\x0a\x0a\xe1\x48\x6e\x61\xfb\x01\xff\xb9\x89\x1d\x8b\x3b\x00\x61\x27\xfe\xe1\x2a\x4a\x9f\xfc\x0f\xb5\x96\x75\x58\x98\x22\xa5\x61\x0c\xfa\x05\x85\x76\x99\x75\x38\x98\xe9\xf1\xc6\x4e\x38\xb0\x2a\x89\x63\x29\x46\x55\xed\x7b\x43\xf5\xba\x6c\x66\x43\x0c\x0d\x3a\x50\xdf\xa1\x59\x39\xd6\x3b\xde\xf6\x1e\xf1\xe3\x04\xfb\xb0\x67\x81\x17\x7d\x9c\x64\x6f\x1d\xab\xa8\xab\xf6\x82\xbe\x41\x8c\xa7\xea\x28\x3e\x3e\xf1\x38\xe2\x5f\xec\xfa\x39\xa4\x67\xb0\xad\x69\x93\xfc\xf1\x5f\x85\x8d\xa0\x67\xf4\xea\x2f\x52\x44\x8d\x58\x78\x8f\xe6\x15\xbf\x88\xd7\x08\x1a\xd8\xbf\x86\xae\x14\xac\x47\x67\xaa\x2b\x35\x37\xd7\x89\x92\x15\x16\xe4\xa0\xef\x40\x24\x8e\x40\x9b\x8f\xa7\x16\xf3\xd1\x83\xb3\x9d\xc4\x02\xf8\xde\x72\x8c\xf8\x6f\x97\xaa\xd7\xf7\xb6\x6b\xdd\x86\x26\x2f\x40\xf0\x8d\xa5\xd1\xea\x2a\xb8\xf3\xcd\xd2\x23\x45\xda\x13\x55\x86\xe0\x55\x8a\x20\xe5\x3e\x59\x14\x78\x13\xe2\x91\x98\xbd\xf7\xb7\xbf\xdc\x6d\x08\xfc\x7a\x51\x6e\xb2\xcc\xac\xb5\x15\x1c\x1f\x34\x1c\xa8\xb1\x6c\x29\xb6\xc1\x0d\x15\xd2\x8c\x4c\x94\x2c\x8d\x11\x95\xc2\x2e\x9c\xc5\xef\xf3\x89\x1a\x2b\xcf\x49\xe5\xe3\x0b\x14\x3c\xfe\x2c\xea\x1f\x0d\xa5\xc5\xa5\xc8\xa7\x11\x8a\x43\x74\xd6\xd5\x4a\x9f\x50\xa3\x48\xe9\x28\x4d\x64\xa8\xd5\x11\x22\x7b\xf0\xe7\xa9\x52\xeb\x2a\x27\x85\x4d\x7a\xf9\x1e\x9f\x09\x00\x3c\x29\x01\x18\x99\x05\xa1\xd3\x6d\xfd\xea\xdf\x64\x43\x74\x95\xb6\x22\x1f\x4f\xe1\x60\x66\x8f\x40\xa4\xa1\x30\x9e\xaf\x1b\x71\xc2\x2d\x45\xbc\x75\xcb\xcf\x7d\x17\xc2\xc9\x86\xb7\x89\x4a\x2b\x1f\x6b\x2a\xe1\x30\x4c\xb3\x1e\xcf\xe4\xcd\x3a\x32\x74\xc5\xac\x4e\xcd\xb8\xed\x8b\x6a\x0b\xf6\xd2\xe1\x01\x5f\x6b\x7a\xa0\xab\xd2\xf3\xf3\x64\xb3\x95\x08\xa2\x94\x3b\x3f\x57\x53\x5e\x9f\xea\x51\x75\xd1\x2a\x11\x6e\x8e\xea\x21\x60\x5e\xe1\xf1\xae\xf2\x38\x7b\xe1\x4f\x79\x52\x1d\x9b\x58\xd2\x97\x47\x14\x47\xf9\x88\x61\x35\xb0\xc1\xeb\x81\xea\xde\xad\x4f\x3d\xd4\x23\x2f\x54\x09\x7f\xd4\x83\x60\x56\xcb\x23\x36\x20\x6d\x27\xf3\x63\xd3\xc8\xca\xea\x53\xfd\xa4\xce\x31\x77\x57\x73\xcc\xdd\x0d\x3c\xf6\x73\x98\xae\x44\x36\x2f\x4c\x06\xe3\xe9\xb2\xc6\x79\xa7\x2d\x7e\x21\x78\x44\x4d\xc2\xc4\xe6\x35\x92\xd5\x75\xb8\xde\xa3\x07\xb7\x69\x4e\x70\x61\xfb\x0d\xe2\xcf\xbe\x5c\x9b\x26\xf4\x2d\xd1\x5e\xf6\x2c\xf0\x12\xd2\x73\xa1\x47\x06\x17\xf0\x19\xae\x0e\x96\xeb\x7a\xb0\xdf\xe1\xf9\x99\x81\xcc\x55\xe3\x1c\x1d\xe1\x79\x97\x1d\x54\xc1\x72\x2f\x33\x4b\x20\x2b\x04\xd0\xf5\x6c\xe0\x87\x10\xce\xaa\xb1\x0b\x12\xd4\xe5\x15\x2a\xe8\x80\x9b\xaa\x80\x70\x73\xaa\x4a\x43\x20\x9d\xe1\x68\x5c\xd8\x8c\xc6\xf9\xfd\x90\xd6\xa9\x9a\x12\xbc\xae\x43\xc5\xe9\xea\x63\x3e\x3e\x3b\xab\xe8\x6a\x76\x4f\x94\x26\xdf\x25\x72\x02\x88\x5a\x5b\x13\x3d\x71\xfb\x20\xb5\xc8\xd1\xe9\xb9\xab\xdc\xc3\x09\x25\x50\x7d\x19\x8e\x12\x5f\x75\xbe\xf4\x52\x65\x97\x03\xc5\x3a\xc7\xd5\x0b\xd4\x13\x6e\x94\x8a\x02\x75\x7b\x87\xa8\xc2\xec\x11\xf6\x95\x7b\x35\x4b\xf8\xe6\x54\x73\x8d\x60\xc9\x51\x3e\x8a\xcd\x9a\xdb\xea\x88\x02\x4e\x23\x70\xe1\x13\x1d\xaf\xd9\x7c\x14\x15\xf6\x41\xdc\x22\x4c\xf0\x0d\x15\x26\xbd\xab\x26\xdd\xf7\x4c\x3c\x65\x17\x6b\xa8\xa9\xa2\xf1\x82\xaf\xed\x1d\x16\x40\x07\xcc\xaa\x50\xc7\x57\xf7\x21\x3a\xac\x8a\x14\x70\x60\x32\x13\x8a\x52\xeb\x82\x48\x9e\xc1\x3b\x89\xfe\x59\x83\xf3\x88\xcd\xb8\x3f\x10\x26\x53\x20\x43\x6e\xe3\xb9\xbb\xde\xea\xdc\x1c\xdb\xad\x53\x2e\x7f\x33\x79\x1e\x29\xf7\x89\xa4\x72\x43\xd1\x62\x6e\x94\x7e\xf4\x37\x4f\xcc\xa8\xad\x66\xaf\xff\x05\x7d\xa5\x74\xa9\x34\x7b\xc4\x65\xd5\x54\xcc\x8b\x71\x65\x17\x90\x53\x01\x38\x74\x2d\x50\x4c\x21\x78\xbc\x7c\x5c\x2a\xa8\xd1\xb5\x06\xed\xdb\xd0\x64\x71\x9a\x7f\xf1\xe4\xbf\x9a\xb4\xb3\x69\xd6\xb7\xfb\x5a\x4e\x12\xf6\x7a\xa9\x10\x58\x6d\xd4\x48\x18\xf6\x1e\x78\x24\x2e\x37\xc4\x5d\x80\xb8\xf0\x82\x54\x55\xdb\x5d\x45\x6f\xb8\xe1\x69\xe1\x7b\x68\xad\xd6\x00\x78\x7c\xe2\x48\xd1\x7b\x51\x5e\x64\xd1\xe2\x98\x04\x8f\xf0\xa0\x50\xe5\xe2\xb9\x2f\x3e\x69\x22\x67\x1d\x9a\x38\xea\x27\x86\x5d\x26\x6c\xd0\x47\xaa\xb6\xf1\x91\x0a\x9d\xa3\xca\x61\x16\x6d\x0f\x46\xba\xa0\x29\xe2\xde\xc3\x53\x47\xdd\xfa\xb3\x1a\x04\xa6\x97\x66\x7b\x28\x66\x45\xf9\x6c\x5d\xad\xf2\x33\x58\x44\xfc\x0f\x41\x4b\xcb\x22\x57\xdf\x0d\x3f\xfb\x89\x62\x9d\x0a\x6d\x92\x8f\x73\x52\xe6\x11\x24\x82\x1a\x4b\xf8\xb0\x51\x53\x24\x2f\xcc\x1a\xd7\x10\xf4\x2f\xc9\xe5\x34\x49\x5a\x50\x2f\x59\x9e\xa6\xd8\x47\xba\x24\x31\x90\x8a\xbe\x3e\x4e\xd1\x2e\x71\xc4\x3b\x75\x5a\xb1\x06\x1d\x70\x9a\xb9\x80\xf1\x65\x68\x91\xa2\x0f\xba\x34\xd5\x88\x98\x9f\xa7\x76\x7c\x5b\x39\x23\x04\x4e\x3c\xc2\xa5\xba\x27\xa7\x15\x0e\x76\x18\xf5\x7a\x2c\xdd\x2d\x7e\x5f\x0f\xc3\x2a\x9e\xc6\x45\x3b\x30\x2b\x51\xca\x28\x6b\x21\x61\x68\x39\x46\xb8\xcb\x4a\xea\xff\x6c\x83\x46\xc9\xcb\x1d\x33\x1a\x59\xcf\xe7\xea\x04\xa2\xaa\xe5\xce\x27\x6a\x00\xd8\x64\xfd\x31\x0f\xb2\x3b\xb5\x16\xa5\xd0\x32\x8d\x5b\x29\xac\x19\xf2\x1b\x64\xa5\x09\xba\x65\x51\x9d\xd8\xf9\x06\x0f\x1f\xac\x6c\xad\xcd\x84\x17\x4c\x5c\xa5\x1a\x16\x3c\xdf\x34\x2e\x9f\x2e\xc7\x66\x90\x0e\x21\x12\xc0\xb7\x7e\x42\x3d\x86\x13\x2a\x13\x4a\x47\xd1\x78\xd8\xae\x05\x2e\x58\x2d\xa8\x0b\xdc\xad\x2b\x12\x3b\x96\xd0\x28\x61\x3e\x1c\xba\x16\x24\x35\x28\xf3\xf2\x71\xf9\x64\x1d\x2d\x3c\x37\xd7\x79\xe5\x95\x9f\x6b\x3d\xfd\x34\x97\x0d\x4e\xc0\x5f\x49\x47\xb2\xba\x38\x00\x28\xb6\x50\xf0\x11\xd5\x36\x2f\xb2\xfe\x27\x81\x5e\xc6\x17\x88\x67\x11\x55\xa6\x0f\x34\x9f\xf2\xbb\xd8\x48\xf0\xc3\x33\xb0\x54\xb8\x97\x09\x5a\xb6\x2c\x9a\x4b\xc5\x2f\x64\xaf\xef\x22\x76\x14\x04\x57\xcb\xff\x3c\x4c\x2d\x0f\x01\x29\xa0\xec\x59\x6a\x46\xc1\x8b\xbf\x85\xaa\x1f\x97\x25\x79\x40\xd0\x8d\x55\x1c\x79\x41\x06\xc2\x03\xdf\xf4\xdf\xd0\x06\xf9\xb6\x12\x13\x3a\xa6\x90\x2b\x43\x9b\xe7\x86\x6a\x29\xc8\x11\xae\xe0\x89\x01\xa5\xf5\x26\xee\x52\x44\x10\x7c\x88\xbd\x94\xa6\x45\x5e\xd8\x11\x1a\xb4\x82\x98\xa6\xdb\x70\x62\x65\xee\x2d\xdd\x99\x9a\x52\xaa\xe2\xa3\xd8\xe4\x62\x32\x84\xbb\xa0\xe5\x79\x0c\x1a\x58\x95\x16\x3a\x83\xb4\x0a\x09\x38\x07\xc0\x23\x7a\x3f\x50\x3d\xba\xf7\xa7\x96\x29\xad\xed\x30\x8e\x5c\x5c\x2b\x7a\x1a\x2d\x47\xab\x7a\xa6\x59\x89\x92\x40\x27\x20\xf5\xe0\xc9\x0d\x45\x93\xd6\x52\x52\x45\xe7\x9b\x5c\x45\x98\x26\x89\x43\x68\xce\x3a\x02\x6c\xb5\xa5\xde\x6a\x42\xf0\xf4\xec\x92\xe2\x20\xc0\x86\x05\x3b\x1c\x1f\xbb\x16\xe7\x68\xec\x67\x07\x78\xfa\x37\x50\xb1\xfa\x69\xe7\x14\x87\x05\xef\x3b\x37\x95\xed\x46\xba\xa1\x06\x8a\xf8\x6f\x9a\x2e\x67\x6e\xee\xc5\x8e\xe9\x8d\x5d\x2d\xbf\xc9\x19\x7c\x51\xef\xd9\xc4\x69\xd2\x9f\xf1\x23\xa1\x8f\x43\x91\x56\x02\x28\xdf\x8f\x62\xd5\x55\xe9\x65\x37\x3c\xc9\xca\x91\xf6\x33\x46\x27\x6f\x5f\xe4\xc4\xed\x71\x05\x75\x31\xbd\xea\xfd\xe2\x55\x09\x5c\xb5\x7a\x7c\xf0\xe4\xff\x46\xa9\x8e\x9f\xd3\x11\x54\x1a\xf7\x0e\x60\xf9\x29\x9d\x3f\x19\x6e\x05\x44\x56\x98\x37\xaa\x3d\x8c\x90\xf9\xb4\x66\x7d\xc5\x8d\xa0\xe4\x35\xd3\xf5\x63\xb2\xdc\xc2\x15\x7a\x5c\x55\x9b\xc4\x0e\x41\x2a\x33\xd3\x55\x98\xe0\x77\x6b\xa9\x40\x3f\xe2\x37\x8b\x1a\x10\x70\x58\x7c\x3c\xd5\xb8\x7f\x7e\xde\xe9\xa6\x7a\x58\x2f\x33\xa7\xf1\x89\x6a\xa1\x2f\x8d\xb3\x62\x60\xb3\x19\xd8\x0f\x9e\xca\x0d\x6a\x14\xd0\x75\xcd\x71\xc5\x07\x5d\x97\xfc\x8f\x72\x9b\xcf\x28\x81\x6e\x80\x72\x45\xad\xdb\x4f\xaf\xc2\x5e\xf3\x71\x93\x26\x6b\x18\x8f\xa5\x69\xc1\x82\xec\xf4\x09\x11\x67\x6f\xd8\x26\xa3\x2c\x5d\x89\x7a\xc2\x98\xd5\x08\x1a\x90\x02\xa8\x09\x5f\x1d\x47\x99\xed\xed\xa3\xab\x73\x48\x88\x6a\x1f\xc2\x71\xef\xa3\x17\x07\x8f\xf5\xbf\x29\xc4\xd3\xc3\x13\x35\x3c\x76\x41\xa1\x2f\x2e\x69\x90\xd3\x43\x5d\xff\x50\x62\x93\xf4\x86\x26\x5b\x6e\x57\xcb\x05\x71\xde\x65\x35\xa8\x73\xac\xf4\x33\xea\x27\xdd\x3e\xce\xa2\x70\xd9\xae\xb5\x7d\x6e\x0c\x55\x57\xa5\x10\x25\xfc\x46\x37\x15\xf1\x7f\x61\xe2\xe5\x7c\x8f\xcf\x40\x1f\x52\x85\x3e\x2e\x51\xa0\xfe\xc9\x13\xfb\x0e\x59\x56\x3d\x22\xd9\x0b\x0d\x66\xcf\x2c\x2d\x99\xc8\xc5\xc5\xce\x9f\xf9\x02\xfe\x44\xf9\xf4\x55\xb3\x22\xd2\x97\x8a\xb3\xfb\xc5\x9a\x94\x0e\xca\x5e\x80\xca\xb1\xc4\x75\xa9\x86\x50\xd6\xd5\xd7\x8d\xb2\x34\x01\xb3\x01\x7a\xc2\xd7\xe9\x43\xb0\x4e\x3f\x21\xa7\x88\xcd\x7d\x45\xf1\x52\x2f\xc6\xd1\xa8\x8a\x8c\x24\xc3\x23\x2d\x2e\x39\x6e\x80\xb8\xcc\x76\xb2\xc8\x73\x92\x08\x98\x47\xa3\x7f\xa6\xa4\xd2\x0f\x2f\xfc\x72\x67\x64\xd3\x51\x2c\x9d\x5d\xe6\xad\x0f\x14\xcf\xcb\xa9\xa9\x71\xb4\xa3\x07\xa9\x1c\x9a\x14\xd1\x8a\x4d\x98\x5b\xc0\x49\x09\x2b\x64\xf3\x5d\x72\xd7\x58\x4b\xe7\x9a\x46\x41\xc7\x49\x38\x30\x49\xdf\x5d\x33\xaa\x03\x27\xd5\x7c\xd9\x49\x57\xd3\xe8\xaf\x65\x7a\x48\x51\x78\x3f\x7c\x82\x72\x52\x4d\xef\xf6\x6c\x08\x1d\xd6\x19\xca\x36\x44\xd3\x97\x7e\x04\x9b\xf5\x3e\x22\x0e\xfe\x17\xb5\xa3\xef\x2b\x46\xdf\xcc\x12\xfa\x69\x5f\x8d\xa2\xb0\x7a\x59\x5c\x42\xa6\x8f\x89\x5e\x06\x99\x45\xa9\x2d\xfb\xf1\xf8\x93\x14\x7e\x21\x34\x61\x19\x2d\x64\xcd\x9f\x4e\x05\x0e\xcf\xeb\xb6\x3f\x7b\x8d\x1a\x1a\xaa\x41\x5e\xae\xb0\x09\xb1\xf4\x7a\xba\x08\x54\x72\xf9\xd8\xcd\x03\x8a\x4a\x9e\x7b\xd6\x6e\x8e\x61\xde\x27\x1e\xbe\x26\x3a\x34\x7d\xf3\x7a\x94\xd8\x07\x3c\xe2\xfe\x93\x60\x0a\x2f\x87\x02\xe9\xc9\x40\x49\xad\xdd\x25\xbd\x17\x01\xd2\xd1\x66\xe5\x7f\xc0\x44\x2e\x7f\x17\x3d\x20\xfe\xb8\x56\x28\x33\xc3\x91\x35\xe3\x7d\xf4\x85\xce\x4c\xb8\x3a\xfd\x6f\x6a\xdf\xa7\x9b\xe4\xac\xc0\xe0\x8c\xcc\xe1\x83\xde\x00\x7a\x2d\x4a\xf5\x66\x4d\x36\x4c\x33\xae\x5d\xc9\x68\xb5\x9e\xb3\x56\x10\xc0\xc1\xda\x28\xed\xc7\x6b\xa1\x1d\x46\xa6\xad\xd4\x16\xf0\xf6\x75\xeb\x55\xca\x8f\x7e\x0b\x93\x76\xd1\x8c\x02\xd9\x5e\x08\x6a\x3d\x7a\x15\xb4\x2a\x16\x84\x63\xaa\xba\xf8\xcd\x34\x81\xc6\xa4\xeb\x05\x70\x08\x2f\xea\xb8\x7e\xe5\xf2\x34\x72\x0d\xeb\x2c\x6a\x2c\x5e\xd8\x9d\xfb\x29\xd8\x33\x67\x5d\x36\x32\x4c\x8b\x68\xa5\x5a\xec\x6d\xa5\xcd\x72\x5e\x11\xf4\x33\xa6\x0a\xd9\xc2\x3f\x9c\x32\x25\xaf\xbc\xd2\x31\xf1\x68\x60\x16\x2d\xea\x02\x6e\xa8\xee\xab\x2f\x71\x8c\xff\x01\xad\x4b\x09\xd4\xfc\x1d\x26\x66\x68\x7b\x33\xbe\x3c\x7d\xac\xf4\x63\xe1\xbb\x26\xad\xa3\x07\xb7\xb9\x19\x8d\x52\xf2\x6d\x55\xf2\x19\x54\xa9\x66\x82\x32\x8d\x74\x52\x3d\x6f\xfe\x66\x53\x4d\xbe\x17\x65\x36\xe4\xd6\x98\xda\x27\xf4\x9b\x7e\xcf\x38\xd6\xae\xa8\xb0\x99\x89\xe3\xb5\x19\x2f\x74\x73\xb3\xd4\x44\xf9\x81\x87\xeb\x4d\x14\x5c\x6f\xa2\xaa\xef\x47\x16\xfe\x43\x64\x91\x98\x89\xd9\xa2\x3e\x19\x1f\x37\xcd\xb7\x2e\x66\x69\xb2\x34\x34\x89\x30\xba\xc3\xa6\x30\x06\x49\xe6\xe7\x54\x62\x70\x77\x4a\xb1\xe5\x95\x57\x3a\xfd\x41\x9a\x17\x8b\xe3\x1c\x05\xbe\xea\x93\x8c\xdf\xc5\x27\x05\xcc\xab\xc5\x01\x29\x69\x07\x7f\xa5\x16\x6e\x71\x78\x60\x07\xc2\xfa\xcf\xb0\x25\xb1\x95\xdf\x9b\x42\x3e\x12\x5c\xbe\xa8\x52\xee\x84\x4b\x21\x8a\xc9\xc0\xf5\x8a\x1b\x78\x7b\x65\xd2\x56\xd2\x19\xa7\xb1\x56\x2d\x3c\x69\x86\x3f\xa5\xfa\x36\xc3\xa5\x34\x2b\xcc\x22\x0f\x98\x21\x91\x5b\x27\x7b\xcb\xc7\x2a\xa9\x5b\xb5\x51\xbe\x14\xd9\x18\x57\xe4\x9a\x17\x6e\xea\xba\x0e\x87\x8e\x4c\x8e\xbd\xce\x43\x65\x0a\x17\xd5\x9a\x78\xe0\xec\x56\xc3\xdc\xfd\x8b\x52\x0b\x6e\xab\x3a\x1e\xf3\xf8\x63\xcc\xe4\x7d\x72\xf8\xa2\xec\xec\xa3\x76\xd3\x1b\x3e\xdb\x56\x24\x27\x90\xc8\xc5\x8e\x39\xae\x55\x39\xcf\x4f\xbd\xf1\xb9\xb9\xea\x57\xd3\x45\xdb\x8b\xc0\xe7\xab\x4b\x88\x1e\x45\xb6\xa1\xa6\xf3\xf2\x31\xf4\xde\x7b\x5a\xef\x1d\x5d\x02\x3e\xae\x29\x4c\x3e\xfb\x4b\x88\xaa\x99\x5f\xa1\x54\x0a\xc2\xdb\x34\x72\x26\xed\x0d\x3f\xc4\xf2\x60\x57\x41\x4d\xde\x2b\x7d\x1d\xfa\x04\x5c\x09\xf6\xdb\x5d\xf2\xa8\x52\xa0\x6e\xfd\xea\xdf\x64\xa3\x75\x80\xeb\xff\x78\x95\x7b\xbb\xad\x6f\x7c\x8d\x93\x52\xc8\x54\x7b\x22\xbc\xaf\xbe\xe4\x0a\xd6\xad\x5f\x93\xb1\xcc\x16\x34\xcc\x50\x9d\x38\x47\xcc\x42\x08\x14\x79\x76\x1a\x21\xdf\x1b\x68\xa1\xe3\x23\x97\x69\x67\x22\x67\xb9\x83\x60\x41\x58\x64\x15\x0b\xfe\x09\x4a\x32\x65\x8c\xd2\x93\x61\xdd\x43\xd1\x45\x70\x68\x6a\x83\xde\x08\x54\x6c\xf0\x99\x8a\x6e\xb6\xc8\x85\x21\x9a\xde\x3d\xa1\xa9\x37\x2c\xc6\x63\x00\x06\x38\xd9\x87\x85\x17\x5e\x74\x50\x88\x69\x59\x84\xd9\xce\xc0\xf4\xd0\x0e\x44\x34\x7d\xbd\x54\x7c\xce\x8c\xea\x80\xf5\xbc\xaf\x0c\xaf\x7d\x2d\xca\x51\xed\x15\xb6\x2d\x7a\x2b\x7c\xd2\x00\x0f\x58\x20\x36\xa9\xa5\x71\xdc\x52\x02\x7c\x9a\x93\x77\xc3\x65\x26\xe9\xb8\xc8\x6d\x1c\x73\xa6\x87\x26\xe5\x25\x85\x8c\xd7\xaa\xfb\x99\x5d\x6e\x79\xb4\xda\x0e\x42\xe8\x47\xdd\x68\x73\x44\x4a\x15\x2d\x55\x1f\xa3\x4d\x29\xb5\xb2\x06\xc5\x21\x93\x98\xbe\xe5\x89\x64\x58\xb1\xdd\x04\x12\x12\x76\x41\xba\x5d\x44\x80\xd7\x15\xae\x6a\xd1\x24\x7b\xfd\xd8\xc7\x6f\x04\xaa\xc8\x71\xa9\xac\x91\x8c\xd1\x63\x10\x4d\x29\xdf\x2e\xfd\x8d\xd2\x2b\x75\x9e\x55\xd5\x61\x4b\x12\x70\x04\xe1\x9f\x75\x2c\x3d\xf4\x85\x02\xc9\xf6\x88\xcd\x76\x57\xa1\xa9\x78\xbf\xf0\x09\x1e\x10\x60\x91\x3c\x4f\x01\x2b\x75\x46\x0d\x31\xdc\xd8\xa9\x12\x38\x37\x77\xb8\x5a\x2a\xd4\xa8\x40\x31\x0c\xd3\xa1\x22\x36\xaf\xf8\xe1\xdf\x2e\xb5\x72\xf5\xdb\x81\xca\x3d\xc1\x57\x88\x78\xf4\x27\xb8\x76\x16\x14\x0d\x94\x00\x27\xb1\x57\xed\x9b\x6a\x79\x23\x4c\x79\x10\xf5\x44\x3c\xf7\xf6\x44\xd9\xbb\x87\xbb\x6a\xb8\xe1\x4f\xd5\x44\x0b\xf3\x4e\xe2\x12\xee\xed\xbc\xb3\xca\xe4\xce\xcd\xbd\xf8\x60\xb5\x2d\x51\xbb\x01\x9d\x1f\x62\x98\xb7\xe8\x2e\x99\x51\xa8\x54\xd3\x60\x18\xfc\x93\xae\x52\xf5\x63\xd8\x3c\x57\xe8\x5a\x91\xf4\xfd\x10\xbe\x1e\x66\xee\x4f\x4a\x25\x6b\x3d\x0d\xf8\x27\x90\x88\xc0\x28\x5b\x3e\x14\xb8\xa5\x42\x84\x5b\x5a\x64\x36\x4b\xc7\x49\xef\x51\x25\x34\xce\x73\x4c\x32\xb7\xa2\x34\x70\x3f\xa7\x1b\xd2\x61\x23\x00\x78\xad\x09\x8c\xb2\x82\x29\xc9\x88\xe9\x03\x58\x40\xb0\x53\x3f\xa3\x26\x20\xb0\x75\xfb\x81\xc0\x71\x22\x8e\xd5\xf3\xd7\xe5\x2f\xe6\x52\xc3\xe2\x86\x95\xdc\xd3\x55\x9a\x58\x14\x93\xb1\xd6\x54\xab\xeb\x36\x7c\x48\x94\xfb\x1c\x3e\x22\x38\x02\x5a\x07\xc1\x18\xcb\xfc\xa1\x42\xf0\x73\xdd\xa9\x57\xb8\xd0\x39\x7a\xf0\xb9\x87\x5b\x6e\x5a\xfd\xaa\x76\x98\xbf\x5b\x2a\x2b\xcd\x7b\x10\xff\x72\xb1\xac\x51\x38\x90\x5f\x00\x7e\xf7\xb3\x52\x71\xfb\xbe\xa7\x86\xc2\xce\x73\x00\x8d\x62\xe7\x3b\x0a\xc4\x71\x49\x83\x43\x03\xd5\x21\xe4\x7c\x18\x57\x76\xd9\x95\x37\xf0\x06\x1f\xaa\xbe\x80\x6c\xf8\xdf\xe9\x74\xdd\x8c\xec\x91\xaf\x00\x92\x84\x14\xff\x00\x96\x39\x62\xf6\x16\x90\x11\xd8\xe7\x60\xc7\x26\x43\xff\xfb\x7f\xa1\xab\x7e\x06\x9c\x12\x80\xcc\xec\xa7\x07\x49\xfe\x63\xf8\xd8\xa4\x7a\x95\xb0\xb7\x9f\xc2\x84\x21\xe2\x3c\x4d\x0d\x60\x2a\x3d\xfc\x3b\xbf\x30\x05\x29\x3f\xf2\x42\x67\x68\xb3\x3e\x5a\x40\x8e\x9c\xd7\x09\xfa\xae\x97\x4f\x2a\x72\xf0\xe1\xd0\x66\x61\x64\xe2\x7d\x0a\x5d\x74\x8e\x8d\x02\x9f\x05\x9e\xc4\x11\x51\x14\x4a\x88\x27\x30\xbb\x8d\xc5\x05\xa2\x18\xd4\xbc\x37\xe1\xd1\x64\x16\xf4\x2b\x5f\x50\x5b\x8d\x92\x5e\xb4\x12\xf5\xc6\x0c\xee\xe0\xed\x1f\xa8\xe4\xe8\xba\x36\xa8\x55\x98\xc9\x59\x1c\xfc\xc0\x87\xa5\xf7\x09\x1f\x2a\x5f\xb7\x18\x25\x7d\x6c\x4a\xf8\x9f\xb7\x94\xce\xeb\x5b\xea\xde\xf3\x22\x33\x11\xfa\xdb\xca\xc7\x61\x1a\x57\x8a\x4e\x1e\x61\xbe\x39\x55\x66\xaa\x9c\xf1\x52\x94\x87\x7c\xfd\x52\xc4\x68\x39\x46\x87\x93\x0e\xbd\xb8\x62\xb3\x5e\x14\xca\x24\x8f\x94\xd1\xd4\xa0\xc1\x31\x8d\xfa\x89\x47\x83\x14\xed\xce\x79\x0f\x96\xa8\x49\x2e\x09\x90\xa8\x18\x98\x64\x99\x44\x92\x84\xc9\xab\xe5\xa4\x0f\x3e\xd2\x02\x07\x1b\x4a\xbd\xb3\xe5\x24\x7a\x4d\x48\xe4\xfe\x07\x94\xf8\xf5\x97\x00\x7f\x70\x78\xbc\xea\x2b\x9c\x78\xd3\xd1\x83\x0e\xfe\xe5\x2b\x3f\xbb\x41\x53\x89\x9a\xe2\x0f\xb1\x61\x1d\xca\xcb\xf5\xd4\xef\xd1\xda\x17\xbe\x0f\x35\x32\x78\xa7\xf4\x1a\x4f\x57\x94\xe4\x25\x83\xf0\xfa\xa6\x90\x61\x77\xec\x95\x37\x4a\xb5\x71\xde\x70\xa4\xa4\x8b\x36\x34\xe3\xdc\x1e\x70\xc0\xfa\xbf\xf3\xcb\xd8\x7a\x08\x00\x5a\x13\x85\x2c\x64\x78\x8f\x9b\x22\x98\x9b\x73\x75\xc5\xea\x22\xc9\x58\x7c\xfb\x2f\xd1\x58\xa2\x20\xb1\x3d\x2f\xd4\xfe\x89\x6b\xf2\xee\xf9\xa5\x6e\x8d\x13\x8c\x2c\xba\x30\x87\x4e\x77\x4b\x9f\xeb\x8c\x88\xd6\x49\xa2\x70\x98\xeb\x2b\x81\xc2\xfe\x5c\x99\x42\x8f\x1f\x3a\xd4\x59\x1a\x7f\x33\x6a\x29\x35\xb0\x0b\x14\xba\xf2\x71\x13\x78\x2e\x37\x91\xa3\x9e\x74\xd8\x3d\x0f\xfd\x3d\xab\x75\xac\x06\x51\xb2\xcc\x83\x68\xe0\x27\xc1\x0c\x21\x1f\x4f\x95\xad\x5e\x79\x45\xd6\xdc\x9f\x65\x9d\xe9\x85\xf9\xb8\x2a\x4e\x11\xa6\x8d\x37\x03\x3b\x2d\xbc\x12\xf1\x60\x3b\x69\x78\x2a\x9f\xf1\xcd\x0c\x0f\x41\xf4\x8c\x61\xa2\xf8\xcc\xed\x34\xb3\x44\xc3\xdb\x88\x75\x91\x4e\x3c\x4c\x96\x9a\x8f\x1b\x59\x48\xf2\xc2\xa8\x71\x73\xbc\xe7\x4d\x05\x36\xda\xf4\x14\x33\xdc\xa4\xe1\x48\x53\x1c\x93\xf7\x92\x1c\x58\x23\xce\xbf\xdb\x80\x4b\x98\xed\x90\x58\x08\xcb\x6e\x72\x74\x56\xaa\xe8\x6a\x5d\x91\x20\x43\x99\x97\x09\x16\x15\x32\xe6\xc1\xae\x67\x6f\x1d\x8c\x87\x14\x52\x8b\xb4\x5f\xf5\x09\x3e\x9e\xaa\xc3\xce\xcd\x75\x46\xe3\x2c\x1c\x18\x5f\x3b\x96\xf9\x48\x3f\xb1\xbc\xd1\xc0\x15\xf6\x5c\x65\x2d\xc7\x61\x31\x76\x09\xbb\x2b\x8b\x3a\xad\xe2\x8b\x53\x16\x72\xf6\x48\x67\x68\x72\xd7\x06\x84\xb7\xfd\x54\xcd\xa0\x7d\xda\xc4\x38\x52\x64\xd6\xd6\xf8\x81\xde\xa5\x4f\x88\x0c\x67\x03\x4e\x69\x14\xd1\x95\xf1\x87\x78\x3b\xaa\xa9\xf6\x0d\xc5\x70\x31\xca\xd2\xd0\x56\x7e\xe4\xf0\xc1\xed\xad\xea\x61\x6d\x6f\x35\x8d\x6c\x0c\xd3\x14\x3a\x70\x88\x07\x41\x3e\xc0\xc7\xaa\x88\xb9\x9a\x45\x45\x61\x93\x19\xbc\x4d\xf4\x02\xee\x68\x42\x2a\x60\xe0\x61\x46\x2e\x2b\x7a\xd2\xcb\xaa\x72\x48\x37\x4c\x9d\x6b\x91\x62\x22\xcb\xa5\x19\xb5\x10\x85\x9f\xd7\xf4\x43\x49\x2f\x32\x54\xaa\x02\x6d\xdb\xef\x6a\x76\x47\xac\x21\xfe\x87\xc0\xcf\x77\x4e\x4f\xcb\xce\xcf\x77\xfa\xd1\x70\x18\x85\xcb\x9a\x68\xee\xad\xd2\xcf\xa4\xbc\xa5\xa6\x92\x63\x93\x58\x3c\x64\x91\x4d\xf7\x6e\xf6\x7c\xd3\x20\x6d\x9e\x66\x45\xbb\x56\xcc\x6a\x39\x62\xaa\x3b\x81\xb6\xbc\x8e\x5d\x7a\x4c\x54\x9c\x2d\x95\xa3\x00\x4b\xe5\xe5\xfa\x5c\x9f\xca\x16\x54\xf2\xaa\x1e\x82\x94\xcd\xe9\x63\x52\x4f\x6f\x98\x09\x2b\x4c\xb4\x6a\x12\xee\x80\x20\x7d\x62\xc9\x44\x3e\x99\xca\x85\xdd\x18\x72\x36\x6c\x29\x9d\xa2\x4b\x5a\x3b\xf6\x92\x16\x3f\xcd\xa2\x61\x94\x98\xf8\x01\x0f\x20\xf9\xa4\x54\x00\xb0\x0d\x5d\x53\xc4\x2a\x45\x85\x6e\x9d\x36\x7b\x2d\xd7\xe3\x7f\x08\x94\x2a\xd9\x27\x54\x92\xe0\xbf\x9a\x7a\x9d\x87\x66\xb9\xf5\x6e\x35\xb3\x40\xa9\x0c\xe7\x74\x31\x6e\x6e\xae\xb3\x3a\xb0\x36\x8e\x23\x16\x48\x92\x81\x05\x8f\x88\x38\xa5\x8a\x6b\xb1\x7d\x2d\x4a\xfa\x05\x3b\xe5\x1a\x09\x29\x9f\x7c\x21\x23\x49\x96\x26\x26\x66\x05\x34\x9d\x4a\x4b\xfa\x3c\x6d\xf6\x3b\x89\x2d\x88\x9b\xd0\x59\x5a\x17\x5d\xdd\x55\x83\xff\x17\x55\x58\x27\xd4\x91\x2c\xf1\x0e\xe3\x89\xc6\x9d\x13\x14\x71\x9b\xe3\x7d\x8f\x43\x20\xbe\xe6\xb6\xe2\x7d\x87\xe0\x09\xee\xe9\x3e\xde\xa0\x14\xcb\x3c\xa8\x79\x64\xb2\x28\xa7\x46\x29\xd3\xb5\xd3\x4b\x54\x3c\xee\x0b\x8e\x50\x5f\x7e\xc9\x56\x41\xe7\x60\xc6\x2f\xfe\x47\xba\xde\xd0\xcc\xd0\x98\x84\xa2\xbd\xf7\x42\x2a\x4d\x86\xcf\xf4\xc7\x59\x64\xf0\x2a\x84\x9f\x4e\x09\x8b\x5c\x0c\x3c\xbd\x2a\x77\x9a\xdb\x4a\xf3\xed\x4e\xa0\xdb\xce\xd5\x77\x08\xfe\xf9\x61\xc5\xaa\x68\x4d\x6b\x27\xf5\x03\x1f\x7b\x32\xba\x55\x83\xba\xac\xac\x80\x96\xe2\xa7\x75\xc1\xaa\x35\xc3\x7c\xaf\x6f\xb4\x9f\xa5\xf7\x80\x17\xcb\x01\x8a\x96\x2f\x50\x2d\xa1\x97\x7d\x49\xa6\x7a\x20\x08\x35\x1f\xef\x7a\x33\x3c\x4c\x7b\x36\x96\x49\x62\xf7\x25\x4a\x84\x6a\xba\x62\xc4\x50\x03\x28\x93\x34\x50\xa0\xa1\xdb\xef\x84\x92\x5d\x0b\xf8\x2e\xe2\x35\xae\xc2\xa8\x95\x90\xae\x98\xc2\xb4\x7c\xe5\xbc\xd5\x55\xeb\xbc\x35\xf1\x30\xb8\x55\x6b\x96\x6d\xd2\xd2\xc3\x99\xca\x12\x9e\x51\xd5\xb2\x17\xcd\x9a\x9a\xe8\x3f\xaf\xcb\xc2\x97\x03\x95\x0e\xfe\x49\x93\x86\x7d\x91\x99\xbe\xed\xad\xb5\x14\x3f\xc4\x6f\x29\xa5\xe0\xdf\x9a\x2a\x6a\xc8\x2e\x5d\x4a\xb3\x02\x24\x9d\x4c\xde\x4a\x8d\x7c\x21\x72\x6d\x40\xb6\xb8\x49\xee\xb6\xdf\xcc\xac\xdf\xa2\x8a\x15\x92\x82\x69\xa9\x4b\x63\x8b\xc4\xe0\x49\xc8\x30\x11\x7d\x4c\xa6\x8c\x1a\x4c\x95\x89\x17\x4d\x12\x19\x87\xd2\x14\xce\x28\xba\x4d\xa1\x82\x7b\xc8\x81\x8b\xfa\x16\xc0\x78\x91\x92\xa4\x47\x28\x7a\x93\x4f\xba\x89\x53\xcf\xfc\x41\x7f\x8d\x02\xea\xb7\x35\x85\xf8\xb7\x1b\x25\x45\xe3\x2a\xbc\x09\x15\x57\xe8\x1d\x55\x57\xb9\x53\x8a\xc4\x5d\x11\xd1\x9f\xa8\x10\x51\xf2\xad\x8b\x81\x16\x9b\x8f\xf2\xdc\xb6\x7d\x7b\x71\x57\x77\x87\xe2\xa2\x2c\xa7\x5b\x8e\x9f\x6f\x64\x62\xee\x00\x08\x83\x83\x8f\x1e\xef\x28\x96\xa4\x5e\x34\x8a\xd3\xa1\x29\xaa\x8b\x7d\xde\x17\x81\xa8\x88\x22\x20\x28\xe5\x59\xcd\xea\x9a\xcd\x72\x72\x61\xae\xc8\xed\x53\x1d\x6e\x38\x22\x31\x7e\xa7\x54\xaa\xe5\x6f\x2b\x24\xd1\xfd\xc0\xfb\xb3\x7b\x81\x2f\xca\x5c\x2a\xbd\x07\xbb\xa7\xf9\x0d\xd2\xa1\x2d\xa2\xa1\x88\x31\xe2\x8f\x37\xf1\x62\x51\x41\x65\xee\x44\x26\x58\x27\x2b\xc1\xff\x40\x0b\x1b\x01\xd3\x7d\xd5\xf7\x20\x4a\xd8\x21\xf3\xdf\x0b\x9e\x1a\x13\x56\x7c\xdc\xa4\xe6\x3c\x4e\x96\xd2\xb8\x27\xa3\x5c\x30\x8f\x67\x34\x2a\xe7\x8c\xca\xa0\x06\x66\xd1\x66\x5c\xab\x46\xd6\x0c\x22\x21\x3e\x2e\xfd\xc5\x84\x36\xb6\x8b\x99\x29\x2c\x9c\x0c\xaa\x45\xdb\x94\x3b\xe0\x8e\x78\x26\x01\x39\xc1\x6f\xaa\x98\x35\x34\x89\x49\x2c\xc0\x8d\x30\x55\x5c\xb2\x43\x7c\x70\xbc\x06\xea\x79\x42\x15\xfd\x99\x8e\x8e\x3e\xe8\x84\x9c\x7d\xad\xe3\x5e\x7d\xd6\x72\x07\x61\xed\xe1\x83\x87\x3b\x87\x0f\xee\xf7\xfa\x3b\xbb\xba\xbe\xbb\xc4\x5b\xda\x89\xb8\x57\xa9\xaf\x44\x68\x7a\x9e\x95\x9e\x1a\x2a\x5b\xfc\xd3\x22\xe6\xe0\x9f\x2d\x16\x8a\x00\xb5\x54\x37\xe4\x53\x45\x81\x6e\x53\xa1\x5c\xae\x49\xff\xf1\xc9\x94\x81\x5f\x38\xbc\xd0\x89\x0d\xd7\x76\x5e\xf6\x34\x17\x9e\xb1\xe3\x5a\xe9\xf9\x2f\x76\x77\x1f\x55\xf1\x43\x98\x66\x78\x9f\xf8\x43\x20\x46\xf8\x78\x2a\xaf\xaf\x4c\x52\xbf\x9f\x99\x15\x53\xf0\x46\x44\xb9\xe4\xbc\x6a\x75\x9d\x6f\x82\x28\x8d\xd2\xbc\x58\x65\xf9\x5c\xa7\xeb\x35\xef\x75\xbd\x7c\xa8\x5f\xa4\xe3\x0c\xef\x10\xf5\x55\xac\x7c\x96\xb9\x09\x94\x9b\x53\x20\x70\xb3\x38\xce\x85\x28\x45\xe4\x60\xfc\x12\xdd\x72\xc1\xc8\xc0\xac\x9a\x88\xe5\xd2\x59\x24\x08\x51\x0b\xd3\x0e\xa1\x12\xb8\xfd\x7e\x53\xa2\xd6\x1f\x27\x09\x26\xa4\x1d\x85\xf0\xdc\x9c\x1c\x2b\x64\x63\x1e\x66\xe3\x22\x4a\xd6\xda\x3e\xf6\x27\x4c\xd4\xf6\x67\x14\x4c\x60\x41\x5d\x98\x7a\x46\x87\x66\x3b\xe9\xd3\x61\x9c\x86\xa8\x36\x30\x0e\xb9\x54\x00\x14\xcc\xfd\xa0\x0f\xd3\xa6\xc5\x89\x2a\xc4\xb5\x52\x29\xc0\x0d\xb2\x74\x98\x56\xb6\x85\x73\x0a\x9e\xa7\x51\x42\x3e\xc7\xd5\x98\x56\x6c\xfa\x54\x4f\x13\x6a\x5e\x0f\x58\x64\x95\x5b\x3e\xc1\xfe\x13\x3a\x5f\x1f\x2e\x2d\x8f\x86\x9c\x58\xc3\x35\x83\x40\x80\x8f\x95\xad\x0f\xd3\x54\xc8\x52\x9d\x86\x74\xf5\x8d\x5e\x43\x9a\xed\x76\x1a\xf7\xb2\xf1\x10\xf0\x64\x9e\xd6\xa3\xc7\xcc\xa4\xaf\x5a\x0d\xf3\x3d\x64\x60\x6c\x4c\x47\x83\x28\x2f\x48\xdd\xb6\xb7\xc7\x23\xa7\x6e\x04\x1e\xb3\xca\xf1\x0e\xb2\xf7\x77\x14\x73\xc4\xed\x40\x01\xa0\xb7\x9b\x54\xc6\x86\xe3\xb8\x88\x96\xcc\x30\x8a\x79\xb2\xd4\x71\x5d\xba\x19\x4c\x94\x7f\x50\x42\xbe\xae\x7c\xcb\x8a\x1d\x44\x61\x6c\x67\xaa\xa5\xb9\x0d\xe9\x6f\x14\x92\x38\x06\x14\x30\x72\x15\x53\x4b\x62\xd4\xc0\x09\x6c\xd2\xb1\xa4\x71\x88\x9c\xdf\xc2\xdd\xf0\x49\xe0\x5d\xdf\x52\x46\xca\xb7\x05\xab\x6c\x89\x1d\xf4\x03\x36\xd7\xe1\x56\xf8\x44\x57\x30\x2f\x78\xe1\x7d\x9b\x45\x2b\x82\x53\x16\x6c\x28\xdd\xb9\xa0\x46\xc5\x23\x27\x66\x05\x2b\xdd\xe1\x0e\xdc\x2c\x1e\x4f\x08\x21\x82\xdb\xdf\xd5\xd3\x32\x71\x64\x94\x25\xe0\x10\x41\x7e\xc7\x97\x0a\xc2\x2c\x1d\x01\x03\xc3\xb9\x4c\xa0\x92\xeb\x8d\x29\xf4\x1e\xa9\x9e\x0f\x47\x69\x1e\x55\xa1\x0d\x17\xaa\x5d\x7d\x64\x7e\xbe\xa1\x3e\x92\xa4\xc5\x20\x4a\xfa\x0f\x2a\x42\xa0\xeb\xb4\x66\x98\x68\x45\x81\x9a\x7e\x86\x17\xc6\xd6\x1d\x31\x41\xcd\xd4\xcb\x04\x20\xf5\xb4\xb1\xb4\xee\x2b\x69\x32\x16\x18\x15\x70\xc4\x8e\x3e\xd1\x4b\xb3\x47\x3a\x73\x73\x87\x5b\xaa\xd7\x7d\x2e\x50\x30\xd2\x69\xdc\xe7\xd1\x83\x2f\x77\xf2\xd5\xa8\x08\x07\xb4\xaf\x60\xda\xef\xd1\x05\xf3\xb1\xf2\xc6\xab\x83\x28\x1c\xd8\x15\x9b\x11\xea\xd2\xa1\x7d\x0f\x7b\x18\xf0\xce\x45\x57\xb9\x94\xb0\xca\xb5\xbe\x3e\xcb\xed\x4d\x56\x7e\xe2\x13\x57\xc2\x88\x92\x9e\x7d\x4d\x4a\x84\x35\xc2\x0d\x84\x72\x00\xb9\x22\xea\xda\x33\x69\x28\x52\x24\xd6\x64\x8b\x08\xfd\x61\x4d\xe1\x79\x99\x6e\xa8\x26\x73\xeb\x0d\x5d\xf5\xab\x23\x9b\xf4\x6c\x52\x90\x50\x37\x32\x40\xf8\x14\xb8\xa1\x1b\xf4\xec\x99\x48\xb8\xac\x85\x81\x5e\x3b\xe8\x46\xa0\xa2\xd3\x2d\x5f\x96\x49\x93\x15\x9b\x15\x7b\xbd\xf4\xcd\x71\x25\xfe\x71\x5e\xf3\x96\x7c\x82\x97\x8f\x68\x1f\x89\x37\x2c\xc2\xf1\x52\x21\x04\xbe\xd5\xa8\x9a\x54\x8c\x33\x37\xe1\xc0\x41\x11\xbe\x5a\x22\xa4\x86\xfa\x15\xc2\x35\x7e\xdc\x68\x08\x5e\xd5\x3c\x84\x6f\x97\x7e\xd5\xfb\x97\xd4\x4f\xe3\x78\x9c\x23\x39\x90\x09\x27\x25\xe2\x70\x36\xd0\xac\xe5\xb5\x56\xaf\x74\xd4\x54\x6b\x7b\xdd\xeb\xae\x98\xcc\xf4\xb9\x36\x22\xf1\x10\x7d\xad\x94\xb2\x1a\x8a\x64\x03\x13\x2f\xcd\x10\xa0\x04\x65\x77\xd0\x0b\xc3\x51\xc2\xad\x01\xf9\x78\x80\xda\x81\xe8\x7c\x4c\x97\x96\x69\xae\xc4\x9a\xac\xd7\xf6\x88\xff\x4b\xea\x8d\x9f\xd5\xa9\xd5\x9d\xa9\x12\xfb\xdc\x5c\xc7\x66\x46\xcf\xfb\xd3\xb4\x80\xf4\x0f\x9e\xf4\x31\x75\x96\x12\x3b\x6b\x75\x93\x87\x05\x89\x75\x4a\x29\x88\x9c\x9a\x8a\x91\xaa\xad\x9c\x8f\x47\xd5\xc7\xd8\x82\x4a\x5b\x5e\xa1\x18\x37\xca\x5f\xfe\x82\x84\xb4\xc8\x4c\x8f\x0d\x18\x53\x3f\x62\x3d\x1d\xd3\x53\xfe\xc7\x94\x13\x2e\xb2\x68\xd4\xd2\x05\x05\xd8\x26\x89\x92\x9e\x54\x7b\x66\x29\xea\xd9\x98\x86\x32\x1c\x2e\xfb\x1c\x76\xb5\x70\x09\x7b\xcc\x56\x36\x86\xdb\x12\xb2\x8e\x5b\xb5\x91\x46\x1f\x24\x32\x27\x9e\x50\x6b\x79\xd7\xc7\x0a\xbb\xad\x2f\x64\xea\xf7\xbc\x49\x89\x5d\x79\xb6\x55\x57\x4d\xad\x3e\x24\x71\x4f\x43\x61\xbf\x17\xe5\x61\x34\x8a\xa3\x04\x7d\x5f\x47\x28\x33\xef\xc1\x75\x3b\xdf\xf9\xec\x91\x4e\x92\x85\x2d\x25\x13\xf8\x53\x6e\xab\xf0\xd9\x34\x8a\xfc\x85\x17\x3b\x45\x6a\x72\x06\x8f\xca\xf4\x40\xbb\xab\x12\xc2\x5d\xbe\x83\xbd\xfe\x4e\x33\x0e\x7d\xc9\xc6\x71\xba\x4a\x9b\x04\x40\x17\x0c\xec\xf2\xb1\x27\x9f\xcf\x97\x4d\x4d\x67\xe5\x23\xbd\x45\x3f\x52\xd9\xc1\xeb\xaf\x73\x8b\x0c\x75\x19\x28\x76\xf0\x71\x53\xf4\x30\x32\x19\xb6\x3e\x76\x16\xf3\x8e\xf2\x49\x93\x04\x41\x18\x8f\xad\x2a\x0d\x5c\x57\x66\xed\x7a\x13\xf6\x34\xb3\x2e\xf7\x6c\x7b\xa4\x03\x08\x2f\x81\x14\xe3\x4e\x91\xb4\x4a\x3d\x9f\x46\xc6\xf9\xea\xcb\x6e\x3e\x5c\xf1\xf1\xbd\xeb\x6a\x1b\x6b\xe9\xb8\x18\xb4\x7d\xd7\xfd\xa4\x06\x8d\x5e\x57\x68\x47\x8d\x03\x1b\x45\x23\x61\x27\x77\x3c\xd0\x9e\x13\xba\x36\xbf\x1b\xa6\x4b\x2d\x25\x8c\x77\x81\xf2\x19\x3e\x76\xe6\x6e\x71\x9c\x2d\xc6\x12\x16\x21\x3b\xb9\x44\x32\x7e\x7c\xac\x5a\x25\x89\xb5\x6e\xd2\x85\xb5\x6c\x03\x35\x49\x7c\xc2\x7d\x67\x1e\x0e\xac\x8b\xd6\x81\xbf\x7e\x43\x0d\x3c\xbe\xa1\x32\x8b\x28\x61\xbe\x41\x9f\x07\x00\x64\xc1\xc7\xaa\x14\x50\xfd\x21\xf7\x92\x8f\x1e\xf4\xe2\xaf\x0e\xc8\x75\xa1\xd1\xa0\x86\x69\x98\x1a\xdc\x9d\xa3\x6b\xf3\xd4\x6d\x2e\x4a\x8f\xb8\x7e\x84\x07\xc6\x4c\xf3\x4a\xc7\x75\x5d\x61\xcc\xa9\x7f\x9a\xf7\xa3\x95\xea\x61\x68\xee\x64\x2e\x4e\x09\x8e\xe0\x49\x85\xde\xcc\x49\xd1\x37\x4d\x5a\x4a\x7d\x9c\xc9\xbd\x64\x14\xc3\xd7\x17\x17\xb3\x34\x5d\x66\x7a\x28\x29\xd4\xb6\x9c\xcc\xc0\xba\x66\x9f\xe5\x9f\x74\xd4\xf8\x87\x0f\xd6\x2e\x1e\x35\xf2\x4d\xf8\x73\x37\x08\xe4\x0b\x59\x8d\x6c\xf6\xe3\xa4\x06\xec\x85\x03\x01\x45\x12\x1f\x2b\xb1\xa8\x51\x66\xc2\x22\x0a\xed\x03\xb4\x24\x11\xd4\xdc\xa3\x47\x8c\x37\xb8\xa7\xab\xa0\x41\x27\x61\xc6\x6b\x04\x1a\x88\x24\xdf\x57\xe8\x13\xde\x57\x52\xf0\xab\xde\x36\xf6\xc4\xb5\x86\xda\xe5\x8b\x82\x81\xc8\xdb\x8a\x46\x74\x43\x0f\x97\x7f\x0f\xdf\x87\x4e\xf0\x55\x57\x33\xcc\x07\x95\x37\x23\xfc\x08\xdf\x29\xc0\x94\x7b\x26\x1e\x65\xb9\x47\x97\xa8\x6d\x96\x45\x71\xbc\xa7\x8a\x36\x85\x31\xc1\xe7\x3e\x20\x81\x83\x5b\xe1\xe9\x4a\x97\x3f\x3a\xfc\xf0\x07\x2a\xbf\x1f\xd8\x2c\xb5\x52\x03\x55\x98\xce\x05\x87\xe9\x74\x14\xbc\xe3\xd7\xc6\xd9\xda\x8c\x4f\x01\x99\xba\xc5\xcd\xf0\xb8\x90\xa6\x3d\x51\x2a\x50\x1a\xb4\x19\xa5\x0f\x38\xf3\xbc\xf0\xe5\xae\x52\x9f\xd5\x53\xfd\x4c\xfc\x82\x9b\xe0\x80\x57\xa6\x4d\xe8\xca\x44\xb5\x5a\x4d\x1f\x63\xf2\x10\xfe\xe9\x67\x53\xe9\xcb\xaf\x10\x5f\x8f\x89\x12\x9b\x2d\xa6\x26\xe3\xfa\xbe\xc3\xa2\xfa\x49\xb1\xa9\x8e\x13\x79\x19\x92\x4e\x8f\x05\xf8\x8a\x9c\xe5\x8a\xca\x5f\xae\x34\xd1\x9d\xe4\x51\x3f\x89\x96\xa2\xd0\x10\xb4\xda\x53\x81\xa0\x5b\x21\xc8\xe9\x9d\xbf\x47\xc3\xfd\xf9\x28\x4d\xf2\x48\x80\xab\x78\xbe\x5c\x4d\xe1\x93\xa9\xc8\xe8\xd0\xa1\x4e\x5e\xd9\x71\x6b\xf8\x2a\xf1\x8c\x98\xc2\x81\x4f\xd4\xbc\xe2\x6a\x14\xf7\xe2\x68\xc9\xb6\x7c\x16\x0f\x68\xac\x68\x2a\x3a\x0c\xed\xab\x63\x12\x00\x6c\x69\x52\x12\xec\x1f\x61\x28\x69\xa2\xbd\x1b\xa4\xa3\xe5\x48\xf4\x95\x44\xa0\x4d\x21\xc3\xde\x55\x09\xb1\x89\x6d\x26\x73\x0b\xa8\xd7\xb5\xb0\xb2\xb0\x8d\xef\x04\x4a\xf1\xe8\xd1\xc9\x23\x0a\x73\x96\x8d\x9e\xdd\xef\x11\xe2\xe7\xeb\x4b\xa5\x5a\xef\x4e\xf6\xae\x4a\x1c\x25\xc4\xf6\xa3\x26\x8f\x01\xcd\x83\xc6\xd8\x76\xa0\xd8\xdb\x9e\x62\x16\x78\x84\x25\x4f\xd0\xae\xc2\x4c\xda\x83\x04\xe5\x47\x1e\x7e\x52\x4d\x16\x2c\xda\x24\x4f\x93\xc1\x38\xe3\x5c\x40\x9a\xde\xd5\x5f\x4b\x33\x7c\x67\xdc\x54\xc5\xb3\x4f\xe7\x33\x8a\x0f\xeb\x22\x10\x9c\x2e\x1b\xaa\xae\x1b\xd1\x01\x2b\xce\xe0\xab\xce\x37\x0d\xbd\x66\xb6\x3f\x8e\x41\x40\x34\x5f\xab\xa3\x08\x52\x51\xc2\xa1\x61\x14\xc7\xf8\x51\x89\xe8\xbd\x34\xf4\x86\xe2\x64\x06\x84\x4d\xe8\x9c\x7c\x60\x31\xe2\x37\x3b\xcb\x79\x06\xb3\xdb\xf1\xc9\x54\xe3\x9b\xc6\x53\xc6\x79\x6e\x63\xb1\x33\x0e\x87\xe9\xaf\x61\xda\x07\x1c\x3a\xd4\x59\x49\xe3\xe5\x7c\xd5\xf4\x6d\xd2\xf6\x73\x53\x18\x35\xc7\x56\xe7\xca\x13\x1e\xca\xad\xa9\x68\xf6\xc8\x0b\x50\x7a\x0e\x1d\x9f\xb6\x22\xb2\x78\xce\x11\x59\x38\x6c\x66\x9e\x93\x6e\xa4\xd7\xa8\xa4\x3c\x5e\x0a\xe2\xf2\xf8\x6c\x3f\xe5\xa0\x42\x94\x52\x5a\x4e\xf9\x6b\xf7\xe4\x8b\x50\x8a\xf6\x35\x1b\x8e\x8b\x68\xc5\xf2\xe8\x23\x82\x90\x36\x9a\x7b\x70\x52\x5b\x65\x4d\x2e\xad\x41\xe8\x2c\x1f\x98\x6c\xb9\x56\x7f\xd4\x42\xe2\xb7\x35\x28\x71\x2d\xe9\xa1\x68\x07\x7e\x5f\x4d\xb4\x23\x5c\x8f\x72\x43\xb1\x19\xc2\xd4\x20\x7d\x58\x57\xa9\x44\x33\xbd\xc9\x8a\xed\xfb\xc6\x19\xde\x1f\xb3\x5a\xf2\x89\xda\x17\x99\x4d\x4c\x94\xe7\x86\x27\x4c\x1c\x35\x56\xa0\xa9\xb1\x9a\x22\xdf\x2a\x57\xce\x79\x7c\x13\xbf\x24\xb3\x5e\xea\xf6\x8f\x29\x3b\x32\x4c\x13\x6e\xa1\xa1\xc4\x0b\x99\x6a\x3e\x9e\x28\xc9\x2e\x93\x15\xf9\x43\xe4\xf5\x61\x8c\xae\x94\x7e\x69\x00\x16\x81\xfa\xca\xad\xd2\xf3\xb0\x60\x08\x0f\x95\xcc\xef\x42\x36\x0c\xd8\xd2\x75\xa8\xb7\xf3\x89\xe6\x79\xbc\x14\xd4\xfa\x73\xb4\x61\x98\xbf\x5b\xa9\x54\xdc\xc4\x5a\x94\xc8\x64\x67\x79\xfc\xf0\xc1\xce\xd0\xf4\xab\xfb\x72\xe4\x36\x60\x59\xe3\xe3\xa9\xdd\x46\x1e\xab\xda\x32\x3d\xd3\x52\xf1\x3e\x7a\x3b\x7c\x1c\xf8\x28\xd2\x8c\x46\x71\xb5\x4e\x30\xf8\x5a\x5d\x09\x3a\x83\xbb\x80\x3e\x46\x26\x0e\x19\x41\xfe\x07\x44\x52\xfc\x0f\x6e\xef\xac\xa6\x49\xcf\x66\x0f\x28\x19\xb3\x3d\x54\xb7\x45\x90\x55\xd2\xb4\x8f\xb4\x02\xaa\xa7\x8d\xea\xec\x03\xb4\x97\x65\x08\xdd\x01\xa1\xdf\xb9\xa5\x61\x12\x4c\xef\x8b\x47\x77\x4a\xd1\x51\x0d\xcd\x6b\xd1\x90\xc7\x53\xab\x3b\x75\xfa\x17\x0a\xb1\xe2\xe7\xf2\x16\x4d\xb8\xbc\x68\x93\x10\x5a\x19\x30\xf3\x67\x34\x63\xe7\x19\x77\x33\x43\x93\x2d\xdb\xde\x8c\x1f\x0b\x64\xfc\x38\x00\xf9\xef\x07\xaa\x97\x8e\xd7\x8a\xfa\xd7\x9b\x0d\x9b\xa5\x63\x5f\x1b\x45\x99\x64\x36\xb0\x5a\xb7\xb5\x52\xf4\x6d\x55\x4b\x1c\x65\x36\x8c\x72\x1b\xa3\x64\x07\x7b\xfa\x83\xfa\x28\x5b\xf5\xec\x44\xc2\xba\x69\x8e\x2c\x4a\x12\x60\x22\xab\x5f\x70\x92\xfd\xf3\xa2\x61\x76\xbb\xc9\x71\xf0\x8c\x49\xdb\xc3\x54\xee\x29\x68\x4b\x2d\xb6\x6f\x77\x1f\x57\x45\x8f\x22\x1a\x9a\x90\x91\x01\x58\xe6\x27\xe9\x83\x7c\xac\xa6\x2e\xb1\x3c\x72\xc8\x8a\x22\xb2\xbb\x11\x54\x6b\x82\x8f\x6b\x8c\xd0\xcb\xfd\x45\xb8\x27\x05\x03\x9f\xf7\xcc\xac\x1e\x1f\x5e\xa3\x6c\x0d\x1a\xe6\x03\x16\x0e\x2f\xb4\x95\x84\xd9\x6d\x4d\x56\x7b\x36\x50\xc3\x12\x17\xa6\x62\xfa\x85\xc3\x0b\xb4\x39\xcc\xb8\xc7\xce\xce\xe9\x81\x57\x6f\x92\x4f\x9a\xb8\x96\x46\xe3\x18\xf4\xd1\xb0\x1c\x7f\xaa\xeb\x76\x7f\xea\xd6\x58\x61\x48\xfd\xd5\x83\x43\x81\x43\xe2\xe3\xa9\x95\xb4\xf0\xc2\x8b\xae\xda\xe1\xf4\x31\xda\x8a\x75\xa5\xad\x90\x21\x45\x66\x56\x6c\xbc\xb7\xe5\xa8\x9d\xcf\xc3\x14\xc9\x2c\x01\xcc\x29\x1e\x03\x78\x9a\x44\x7d\x8b\x9e\x8f\x14\xf6\x15\xbe\xec\x67\x2e\xab\x36\xf1\xa2\xcd\x0a\x29\xa7\x88\xe4\x1d\x7d\x3d\x9f\xa8\xee\xd4\x72\x52\x25\x36\x7b\x7d\xce\xc0\xc5\x43\x38\xbf\x3f\x42\xea\x05\x77\xf4\x1d\xc5\x30\xcc\xcd\x5b\xa0\x0f\x38\xf2\xe5\xcf\xab\x5a\xcd\x5f\x7f\xf6\xaf\xa9\xf2\xe8\x87\x84\x2e\xe1\xe3\x26\x69\xe3\x61\x95\x9e\x39\xb8\x2a\xf3\x84\x29\xd2\xc2\xe9\x22\xd5\x33\x9d\x25\x9b\x8c\xfb\x99\xb5\xa0\x51\x73\xdc\xb6\x4e\xd5\xea\x8d\x1a\x4b\x49\x94\xcb\x63\x41\x30\xf0\x71\xa9\xf4\xd4\x3e\x76\x6f\x5e\x5a\x76\x87\x0f\xba\x71\x31\x35\x3a\xa6\xf0\x9c\xab\xd6\x2e\xe7\x7b\x5b\xcf\xcf\x7b\x7e\xe1\xea\xb1\x70\xa4\x08\x23\x82\x3d\xba\x8d\x86\x34\x06\x4c\x4f\x00\x8d\x81\xa0\xf8\x3d\x35\x35\xbf\x19\xec\xd4\x37\x7e\xe1\xc5\xce\xa1\xd9\x19\x5f\xb9\xf9\x1d\x45\x1c\x7f\x4a\xb3\xaa\x5f\x50\xb5\xef\xdb\x53\x4e\xaa\xfa\x9e\x38\x35\x9c\x57\x09\x79\x43\xcb\xf1\x3a\x9e\x9b\xb2\x3a\x87\x0f\x1e\xee\x8c\xd2\x42\x00\xd6\x92\x57\xf8\xe2\xdd\x69\xad\xcc\x95\x59\x92\x0f\x47\x04\xf1\x5c\x8d\xbc\x4a\xd4\x74\x1e\x53\x8a\x15\xd5\x02\x05\x3d\x18\x0b\xd6\xd3\x1b\x13\xf1\xfa\x69\x1d\x84\xd9\xce\x80\xca\xdd\x6e\xde\x9d\xa9\xbe\x44\x0b\xc4\x57\x2a\xfe\xf1\xb4\x99\xa8\xf6\x25\x73\x4a\x2b\x8e\xa2\x6b\x8a\xa3\xe8\x9a\x02\x77\x59\x93\x63\x5e\x7a\xc1\xf9\x62\xda\x10\xd2\xbb\x6a\xcd\xfb\xe9\x3a\x3f\x2d\x73\x7c\x2a\xa3\x05\x45\x59\x61\x16\xa3\x58\xf1\x33\x48\xe4\xe8\x71\x29\xe7\xd4\xb4\xf6\xa2\x8d\x23\xbb\x62\xf7\xaa\xe4\xf7\x0c\xf6\x96\xd3\x68\xf6\x42\xd7\x88\x4a\xb0\x4d\x01\x44\xe1\xe3\x52\x4b\x9e\x34\xcd\x14\x9b\x7e\x16\x85\xe3\xb8\x18\x67\x26\x6e\x29\x61\xd0\x0d\x45\x80\xb5\xa1\xf4\x82\x4c\x41\x7c\x14\xbd\x2f\x44\x4a\x48\x2a\x8a\xc1\x7a\x96\x80\x07\xf8\x8c\x79\x39\xf9\x44\x13\x3b\xda\x15\x9b\x99\xf8\x00\x6d\x0b\x41\x3b\xd0\x4b\x85\x1d\x01\x23\x9d\xb0\x5d\xaa\x38\xed\x77\x02\x1f\x9d\xbc\xc5\xe3\x4b\x42\x0e\x4a\x8f\x04\x81\xc5\x35\x15\x76\x3f\x0a\xa5\x3f\xfe\x15\x1a\xaa\x00\x26\x87\xd3\x58\xb8\xee\x9b\x6e\xff\x2f\x66\x26\xe9\xe5\x33\x4a\x8d\x62\x37\xb2\x00\xac\xb7\x5d\x13\xc5\x61\x35\xc3\xb6\x5a\xbc\x6f\x93\xfa\xc0\x2a\x64\xa6\x84\x71\x8e\x63\x15\x57\xb7\x52\xe3\x9d\xb4\xd4\xb0\xd3\xf7\x4d\x4d\x7b\xd1\x18\x52\x6c\x40\xc5\x80\x30\xec\xe2\x8e\x7d\xe0\x30\x89\xff\xa3\xa6\x54\xcc\xc6\x3d\xcb\x84\xa0\x8e\x9e\xe9\xf0\x41\x47\xcf\x24\x6c\x22\xe3\x24\x4f\x49\x56\xd7\xf6\x48\x50\xa9\x46\xce\xc3\x8a\x8f\x54\xf3\x12\xf2\xd6\xe9\xc9\x97\xd9\x4e\x98\x0e\x17\x3d\x77\x19\x6e\x18\x93\x6e\x7c\xdc\xf5\x35\xea\xa1\x59\x33\x49\xbb\xf5\x8d\xaf\x71\x33\xf9\x43\x95\xf9\xd7\x9e\xf8\x9d\xa9\xf4\x63\x6e\x0e\x44\xcc\xab\xd5\xb6\x06\x6d\xa9\x26\xee\x71\xc1\x98\x53\x0f\xfb\x68\xca\x61\xbf\xf2\x4a\x67\x60\x92\x1e\x17\xb5\x67\x39\xa5\xe7\xe8\x81\x4f\xd4\x2e\xe8\xa5\x43\x9b\x17\x51\xf8\x80\xfe\x77\x64\x3a\xf2\xc7\x8a\x55\xf0\x2a\xb7\x57\x64\xe2\xb4\xe5\xe8\xdf\x4e\x96\x4a\x34\x93\x7b\xe9\xf8\xcc\x0f\x4b\x9f\x1a\x6d\xa8\xa0\xd3\xc1\xe5\xc8\xc7\x21\xb2\x3a\x1b\xa8\xf8\xeb\xac\x9b\xb9\x21\x0c\x40\x62\x93\x22\x9f\xf1\xe9\xc8\x86\x06\xb0\xbf\xc5\x17\x26\xea\xcf\x6a\x1a\x67\x43\xc5\x05\xbd\xb4\xd7\xe7\x69\x21\x56\xb2\x50\x5a\xec\x1f\x6b\xbd\x1e\xa2\xc7\xdd\xab\x91\xf9\xbe\x59\xa8\x5d\x0c\xc4\xdc\xf9\xb8\xf4\x74\x0e\xe7\x82\x1a\x92\x5f\x61\xe1\xa2\x38\x4c\xb3\x91\x62\xce\x43\x61\x81\x8f\xa7\xe6\x7b\x0e\xcd\x76\xd2\x91\xd5\x22\x53\x48\xf9\xa0\xc2\xcf\xc7\xaa\xb0\xba\x6c\x92\xfe\x5a\x8a\x80\x57\x48\x91\xaa\xcb\x12\xb6\x24\x3f\xc7\x94\xa7\xe3\xc4\x23\xaa\x51\x01\xbb\x5e\x5b\xab\xd5\x2f\x48\xa6\xec\x85\x14\x4c\x12\x52\x39\x15\x21\x1e\x0b\xe3\xe1\x95\x7d\xbf\xb2\x42\xdb\xd8\x87\xfc\xcf\x58\x78\x68\x65\xed\x82\x61\x82\x25\xb8\x1a\x28\x54\xff\x6e\xb6\x37\x48\x68\xce\xd5\xc2\x9b\x24\x64\x7e\x0b\xb4\xe7\x3e\xd2\x88\xca\x0d\xa5\x6f\x72\xa3\xc6\x8a\x91\x8c\xed\x23\x6d\x2f\x42\x7e\x11\x91\x0a\x4c\xea\x0f\x11\xa9\x20\x96\x26\x76\xdb\xe7\x1c\xc8\x8c\xbe\xdc\x51\x29\x78\x8e\xe6\x1f\x92\x97\xc2\xd5\xde\x54\x78\xe7\xeb\x70\x4c\xf2\x22\x7c\xee\x76\x5a\x49\xc2\xde\x54\x50\x71\xa6\xf2\xe6\xcb\xa2\xce\x06\x92\x91\xef\x2a\x60\x71\x92\x16\x36\x3f\x50\x7d\x19\xfa\x90\x3f\xa2\x5f\x77\xa5\x69\x4f\x77\x0a\x43\xcb\x71\x2d\x7c\x3a\xee\xe4\x16\x0c\x1c\x56\xe6\x35\xfa\x19\xa7\xaa\xe9\x09\x2d\xb8\xb2\x8d\x00\xeb\x7b\xa5\xd2\x0b\xd8\x50\x13\x07\x7b\xbb\x6a\x60\xa0\x32\xbb\x0a\xda\xf1\x7d\x7c\x88\xb5\xbf\x68\x51\x8a\x64\x5a\x03\xd4\x30\x1f\xd9\x30\x32\x31\x4b\x9c\x63\x9d\x9d\x0e\xfc\x9a\x3b\xad\xbb\xcd\xc3\x51\x9c\xae\x01\x2d\x04\x88\xca\x86\x62\x10\x52\x13\x37\x66\xb8\x98\x45\x46\x8b\x1d\xb0\x6d\x90\x3b\xd9\x19\x2d\x48\x6d\x4c\xba\x52\x1e\x70\x70\x2b\x50\xd8\xdd\x5b\x53\x9d\xd7\x97\x16\x88\x05\x1e\x4e\xc7\xb1\xc0\x57\x0f\x5d\xc8\x54\x77\x96\xe1\xaa\x38\x2d\x4c\x93\x25\xdb\xb3\x59\xad\xa8\x84\xea\x2a\x9b\x09\x3e\x69\x62\x84\x7d\x75\x6c\xe2\x68\x09\xfd\x7d\x49\x74\xaa\x75\x21\x19\x50\x03\x55\xd9\x52\x66\x92\x70\x10\xe5\xc2\xb5\x05\x6b\x7d\x5a\x71\x05\x9c\x56\x00\xe0\x9e\x5d\xaa\xbc\x23\x5c\xb9\x70\xd1\xf8\x4a\xdc\x39\x35\x47\xc0\xa5\x74\xac\xa3\x8f\x15\xc2\xa4\x32\xd0\x26\x8b\xf2\x34\x69\x2b\x85\xb8\x73\xaa\x7c\xf3\x91\x8e\xf8\x7e\xa6\x18\xf4\xcc\x62\xba\x62\xf7\xfa\x34\xe7\xa2\x1e\xbe\xbf\x08\xca\x13\xa7\xa0\x50\xdd\x8d\x28\x28\x28\xfc\xee\x1b\x0a\x94\xf5\x86\x22\xec\x5d\x32\x61\x94\xf4\xf7\xd0\xc7\x50\xd4\xe7\xaa\x97\x88\x20\xd3\xc5\x8a\x6c\x0c\xfd\x14\xff\x19\x2d\x34\x29\x84\x48\x24\x61\xc2\x90\xb5\xc5\x6a\xac\x90\x27\x03\x25\x13\x72\xd2\x2d\xcb\x25\x13\x17\x36\x63\x58\x0f\xbc\xf5\xee\xae\xe2\x83\xbb\xab\x86\x32\x3e\x9a\x2a\xba\x92\xbc\x20\x0d\xfa\x29\x30\x12\x57\x7d\x64\x76\xcd\x61\x60\xa3\x2c\x4a\xfa\xe4\x1a\x51\x40\x44\x4a\x8f\x0b\xba\xa8\xa7\x2e\x36\x75\xd1\xef\xfd\xe0\x80\xa7\xee\x7a\x16\x1e\x03\xe6\x02\x93\x5c\x7c\xec\x1a\xf6\x54\x0f\x6c\xfb\xc4\xf5\xa6\x2a\x78\x7d\xaf\x54\x20\x8c\xeb\x53\x8b\xf2\xe8\xc1\x97\x3b\x23\x13\x2e\x9b\xbe\x74\xd0\x59\x40\x5e\xf1\x11\x5e\x52\x19\xe8\xd0\x1a\x60\x08\x9e\x63\xd3\x76\x4b\x35\xd0\x6f\x29\x1b\x61\x62\xe2\xa4\x7e\xac\x8a\xb6\x1c\xb7\x62\xf5\xba\x91\xfc\x1e\x27\x1b\x2c\xc9\xb9\xe6\x13\xfe\x14\x98\x49\xdc\xe3\x6e\x2a\x19\x22\x0a\x60\x75\x53\xd8\x70\x36\x07\x88\x82\xe1\xea\xb1\x28\x4e\x95\x3e\x10\xb9\x86\x15\x8b\x90\xfa\x2e\xd8\x37\xf1\xb8\xff\x2e\xd6\x14\x5f\x0b\x0c\x32\xbe\xeb\x5d\xcd\xc7\xf2\x4e\xe9\x47\xb5\xff\xae\x42\xc4\x65\x36\xb7\xc3\xc5\x98\x4a\xd8\xd5\x4f\xbb\x04\xcd\x27\x6b\xcd\x18\xc2\xb5\xe1\x62\x0a\xca\x30\xd8\xca\x33\x8a\xf9\xf3\x4c\xd3\xc4\x75\x2f\x33\x43\x93\x6b\x65\xe7\x6b\x4a\xd9\x79\xba\xb5\x42\x45\xaa\x64\x6d\x48\x40\x73\x3f\x5b\x15\xa8\xd9\x2a\xc5\x6c\x4c\xca\xd1\x30\x45\x68\x5c\xde\xc6\x63\xe5\x93\x06\x3a\x1c\xd3\x5b\xf1\x6c\x4f\xbc\x0d\x4b\xd5\xf9\xf9\x41\xc3\x64\xcd\xe1\x4e\xcc\xf8\x24\x04\x34\x08\x10\x40\x02\x03\x8f\x84\x40\x0b\xbb\xef\x1d\x1d\x89\xae\x0d\x17\xa3\xb4\xe0\x22\xfe\x9f\xe5\x29\x1f\x3a\x44\x02\x33\xa2\x36\x8b\xaf\xbc\x1a\xa8\x44\xef\x6a\xc3\x9b\x79\xae\xb3\x94\x66\x6e\x7c\xbe\x11\x86\xa7\xe6\x05\xd6\xf2\xbd\xb4\x46\x04\xfa\x5f\x3d\x67\x00\x62\x6e\x2a\x2a\x8d\x2e\xab\x8c\x21\x25\xc4\x68\x08\xb2\xc8\x99\x89\xaf\xbc\xef\x9e\x34\xa9\x30\xa6\xab\x62\xc8\x1c\x06\xcc\xcd\x5e\x37\x2e\x13\xba\x7c\xfe\x08\x22\xed\x0f\x02\x35\x52\xfa\x81\x2f\xd6\x15\x85\x1d\x8e\x8a\x07\xe8\x1f\x11\x1a\xfd\x31\x45\x30\xa8\x0e\xdc\x26\x0f\x86\x88\xf4\x0e\x2d\x34\xba\xff\xff\xe9\x09\xd4\xf8\x59\xa1\x0a\xfb\xc5\xf1\x4a\x79\x8e\x87\x77\x68\x39\x23\x80\xda\xaf\x1a\xb3\x66\x94\x45\xf1\x5e\xdf\xe6\x3e\xa9\xc7\x56\xaf\x94\x8a\xed\xe5\x0a\x5d\x80\xe6\x66\x74\x0a\x9b\x2e\x14\xf9\x6e\x83\x18\xf3\x42\x27\x37\x4b\xd8\x8c\xaa\xf7\xeb\x47\x26\x5c\xc2\x32\x30\xd9\x14\x07\xd4\x4d\xc5\x01\x75\xb3\x71\xe3\x66\xe9\xe2\x38\x2f\x30\x5e\x83\x80\xe2\x94\x82\x52\x9e\x03\x60\x46\x48\xfb\x1e\xd1\x0a\xf2\xa1\xdd\xe7\x9b\x81\xbc\xa6\x10\x66\x6f\xe2\xbe\xf9\x44\xa5\x91\x4c\xf0\x09\x87\xc7\x50\x44\xc4\xec\x52\xa8\xe5\x33\xc7\x9b\x83\x80\xcc\x02\xa0\x29\x3c\x11\xf4\x25\xee\xa4\xfa\x29\x9c\xdc\x0f\xfc\x88\x7f\x5c\xac\xec\xd1\x7a\x83\x4a\xde\xe5\x9d\x40\xf1\x23\xf3\x17\xa0\x0e\x08\x6e\x23\x8e\xc4\xdd\x93\xed\xd9\x30\xad\x02\x29\x1e\xc9\xc7\x52\xff\x20\xf0\xb5\xe9\x0f\x6a\xb9\x43\x3a\xb2\x07\x14\x3f\xc5\x05\xb0\xee\xc8\x88\x87\x5f\xee\xfb\xf4\x2e\x5a\x57\xa8\xd3\x1b\x0a\xa6\xf1\x33\x2c\x42\x11\x6e\xae\x96\x10\x9a\xfe\xa7\xd1\x23\xc7\x8b\xb9\x4b\xb1\xb6\xab\x89\xe8\x74\xe2\x61\x0d\x42\x05\xe8\x8b\x39\xe5\xd5\x6c\xcb\x5b\xca\x08\x1c\xfd\xd5\x5f\x53\x32\x4b\xcc\x2d\x23\x23\x09\xba\x75\x31\xfa\xeb\x7f\x95\x58\x88\xb1\x5b\x78\xd8\x0b\x10\x17\x96\x26\x45\x1b\xeb\x9a\xa2\x22\x38\x8e\xed\x81\x88\xf0\x13\x55\x2c\xcc\x47\x99\xd1\x82\xed\x77\x14\xbd\xd5\x9d\xa6\x31\xde\x5e\x94\xc7\xe9\x9a\x89\xdb\x7e\x3e\x01\xfd\x61\xac\x47\xae\x96\xc1\x74\xaf\x37\x2a\x9d\x8e\x46\xd6\xc4\x7b\x7c\xbf\xe8\x8a\x8a\x3a\xff\xa0\x36\xfe\x5d\x7f\x07\x35\x32\x69\xff\xdc\xbe\xf1\xf5\x97\xe8\xfa\x91\x3c\x6d\xea\x39\x91\x69\x74\x64\x65\xcc\xc7\x49\x8d\xce\xa3\xd4\x05\x84\xb2\x06\x2b\x34\xd9\xda\x97\xaa\x17\x87\x4c\x95\x23\x3a\xa0\x23\xff\x36\x5a\xb2\x2c\x8c\x4e\xc6\x14\x69\xd1\x5d\x78\x7b\x56\x3f\xa7\xf5\x81\xc2\xc0\x6e\xe2\xbc\x46\xfc\x43\x75\xc2\xe7\xb6\x4f\xaa\x58\xf6\x22\x1a\xbe\xa2\xb4\xae\x39\xe6\x4b\xc5\xd2\x79\x9a\x23\x1b\x58\xbd\x87\x26\x14\x74\x48\x90\xa9\x86\x53\x4f\x69\xe9\x96\x33\xd8\x0a\x32\xc6\x4e\xa6\x45\x46\x5f\x2b\x4b\x8d\x2b\xb8\xa1\x88\x14\x4e\x94\x4a\x17\xe3\xc6\x54\x31\xfe\xe8\x41\x61\x9b\x3f\x2c\x98\x4b\xc4\x55\x3c\xff\xad\x10\x74\xe0\x12\x64\xcd\xed\xda\x3a\x8e\x0a\xfb\x38\xad\x5d\x66\xf2\x54\x02\x1e\x97\x71\xc1\xa8\x9d\x5e\xa7\x6b\xc4\x1f\x61\x0a\x0b\x65\x76\x96\x93\x97\x99\x4f\x4d\x93\x70\x15\x85\x0a\x69\x32\x78\x31\xb7\xcf\xb5\xb6\x02\x32\x65\x81\x0f\xab\x74\x67\x77\xb7\xa6\xf4\x10\x78\xbc\xdb\x0c\x1e\x38\xf2\xf1\x1b\x1a\x7c\xcd\x7d\x2d\x38\xbd\xef\x38\xdc\x43\xcf\x86\xcf\xee\xdf\xfd\xcb\x6e\xf6\xbf\xe5\xa6\x1f\xff\x55\xa9\xba\xf5\xbf\x8d\xa5\xee\xaa\xc8\xd5\xb5\x20\x02\x9e\xe9\x7a\x69\x8a\x5d\x8c\x18\x72\x1c\x0c\x2e\x1c\xbb\x5c\x2a\xe4\xce\x3f\xac\xd1\x04\x35\x34\x63\x43\x93\x47\x49\x9a\x2b\xdd\x9e\x6b\x9a\x45\xfc\x9a\xd2\x00\x36\x59\x16\xad\xa0\x06\xa0\xe8\xd1\x5f\xf4\x64\xfc\xae\xbc\x76\x27\xf0\xc4\x33\x4b\x36\xe9\x19\x46\x13\xbb\x02\x93\xc3\xee\x5d\xd3\x0c\x0c\xd3\xec\x43\xb3\x47\x3a\x26\x27\x3c\x5c\x61\x55\xef\x12\x38\x23\x3e\x0e\x34\x03\x3c\x84\x9f\x10\xd1\x36\x17\x0f\xbc\x93\xc8\x21\x6d\x36\xeb\xd5\xb8\x9c\xb0\xf9\x3f\xc3\x3b\xc0\x9a\x9f\xe6\xd6\x20\x06\xd5\x2c\x1d\x8d\x24\x4f\x63\xa1\xaf\x52\x15\x62\x4e\xa8\x84\x94\x50\x79\xb1\x86\x01\x9e\x51\xfe\xe5\x4c\xcd\xd0\x8c\x6d\xbc\xcf\xdf\x1d\x8b\x77\x3a\x52\xdb\xea\x61\x09\xd2\xb1\xba\x5c\x58\xa0\xff\x05\x86\x9f\x0b\x3d\x4a\x21\xe2\x14\x96\x25\xff\x95\x62\x0d\x4e\xec\x6a\x3e\xca\xa2\xea\xbd\xec\xc0\x62\x21\xee\xbc\x19\x68\x2c\x56\xc3\x10\x65\x6e\x5f\x13\xac\x33\x9e\x12\xfa\x63\x7c\xdc\xd0\xf5\x5a\xe8\x0c\x6c\x3c\x42\x0c\x8c\xe0\xe3\x94\xe2\x61\xd5\xcd\x14\x66\x1d\x6b\x79\x4d\xdd\xa7\x98\xfb\x91\x4f\x6a\xe2\xf2\x61\x68\xf3\x9c\xab\xc9\xb0\xa8\x88\xf7\xf9\x78\xb2\xb3\x95\x55\xad\x79\x2a\x5b\x50\x34\x11\xaf\xd5\xc4\x35\x4a\x6f\xe2\xd7\x95\x80\xd6\x62\x6c\xc2\xe5\x9c\x5e\x8b\x74\xec\x2a\xdb\x23\x3d\xaf\xca\x74\xb8\x5e\x98\x6b\xe7\x9c\xaf\xd5\xa6\xcf\xef\xe0\x75\x74\xf2\x8a\x77\xeb\x86\x30\x79\xba\xa5\xe6\xaf\x3e\x81\xf1\xe2\x13\x4d\x2b\xd7\x8b\x8a\x34\xc3\x78\x25\x42\x58\xec\x2a\x98\xb9\xe3\x5a\x0c\x71\xda\x75\x13\x7e\x18\xa1\xfa\x8c\xe7\x21\x7f\xa3\xf4\x22\x34\x2c\xed\x89\x58\xe8\xb5\xd2\x0f\x10\xec\x9a\xec\x10\xfc\xa1\x69\x37\x0a\x42\x11\x06\xbd\xa5\xa9\x5c\xd7\x15\x5b\xe8\xad\xa0\x66\x96\x14\x45\xc8\x7b\x1a\x55\xf7\x0f\x91\xa0\x63\xc5\x8e\x5c\xad\xa3\x48\xa3\x98\x29\x11\x90\x26\xa0\xc9\xca\xc7\x5a\xad\xd1\x26\xbd\x5c\x55\xd9\x2f\x6a\x7d\x9a\x8b\x6a\x60\x30\x5d\x5c\x89\xd2\x71\x5e\x33\x15\x8a\x02\x74\x43\x4d\x2f\x2e\x9a\x65\x21\xe9\x40\x14\x7e\x51\xf1\x65\x5e\x6c\xe2\x19\x1f\x65\xe9\x30\x95\x56\x0e\xcf\xa4\xd5\xa8\x5c\xc8\xef\x0a\x41\x56\xc3\x6c\xd5\xaa\x89\xe3\xb6\x02\x9e\xa1\x34\x87\xb6\xd5\x0d\x25\xcc\xf0\xc9\xd4\x87\xab\x84\x62\x31\xe2\x64\xd3\x51\x4b\xba\x1a\xd1\x7b\x0d\xaa\x0c\x9d\x45\x1b\x2f\x99\x1c\xad\x38\x7c\xef\x79\x85\x8e\x62\x05\x57\x60\x81\x35\x2d\xfa\x20\xcd\x7a\x0c\x36\x46\xac\xf2\x5f\xd0\x73\xe1\xe3\xf2\x29\x4d\xd7\x38\xb2\x05\xad\xd8\x7d\x74\xe7\xd8\x06\x60\x84\x93\xd2\xa4\x0f\x8b\x79\x64\x19\xcb\xf2\x8f\x02\x4f\xd0\x82\x36\x05\xfc\x3a\x80\x24\x22\x16\xd9\x28\x01\x34\x1c\x46\x85\x83\xb9\x23\x36\xf8\x34\x50\xfc\x1e\x9f\x36\xaa\xab\x0f\x0c\xc7\x84\x8c\x47\x0a\x94\xd1\x3d\xd9\x84\x84\xce\x6c\x61\xa2\xd8\xf5\x69\x9c\x37\x71\x2c\x88\xe7\x9b\x44\x0a\xa9\x5b\xe7\x3e\xc4\x0a\x0d\x2a\xfc\xad\x37\x43\x86\x69\x36\x43\x71\x90\x52\xb8\xf1\x7c\x19\x95\x31\x12\x7a\x69\xba\x3f\x21\xd5\xf0\xfb\x62\x29\x33\xc9\xf2\x3e\x7a\x57\xd8\xd5\xb7\x34\x82\x52\x93\xdf\xde\xd4\x69\xe4\xe5\x40\x75\x77\xff\x75\xa9\xe6\x46\x6f\x2a\x81\xcc\x2f\x16\x22\xea\x67\xd6\x14\x44\xf7\x05\x4c\x08\x64\x35\x71\x87\xd7\xe9\x0d\x22\x98\xbb\xa8\xb1\x2b\xef\x2a\xd3\x1b\x0d\x87\xe3\x84\xa9\x27\x24\x92\xaf\xbe\x42\xf8\xf9\x54\x7e\xa9\x73\x99\x7e\x9a\xf6\xf2\xbd\x14\x46\x3b\x48\x92\xef\x2d\x7f\xaa\x26\xfe\x19\xb3\x8e\xdd\x71\x02\x56\x5a\xe6\x16\x3c\x4e\xe6\xbe\x12\x9e\x70\xe2\x3b\xf4\xdb\x32\x91\x52\x39\x01\xa9\x1e\x56\xef\x83\x8f\xf1\xa2\xf8\x8f\x94\xfa\xf0\x62\x66\x99\x51\xca\xd1\x7f\x7b\x2a\xf0\xa9\xc7\x39\x3f\x2f\x03\x1f\x51\xd2\x67\xd6\x36\x14\xb7\x98\xaa\x42\x46\x18\x5b\x7e\x9c\x11\xf7\xc5\x7f\xa5\x9e\xe8\x28\x4b\x57\x58\xcd\x40\x46\xa0\x1d\xbf\xeb\xbf\x7f\x5d\x51\xba\x5e\xa0\x7b\xe2\xff\x3f\x35\x84\xf7\x4c\x67\xd5\x64\x43\x35\x59\x7a\x5b\x71\xb5\xde\x56\x74\x1e\x66\xc5\x44\xb1\x59\x8c\x51\xed\x47\x61\xea\xff\xa4\x31\x79\x19\x55\x6c\x39\x19\x72\xe6\xc3\xc1\x32\xe0\xb1\x69\xbc\x80\x9b\x64\x06\x90\xd0\x4c\x2f\xb7\xf9\xf9\x4e\x42\x6d\x96\xd5\x88\xbb\x54\x80\xe2\xdf\x56\x14\x6c\x10\xef\xe7\xf1\x62\x95\x34\xfe\xc7\x47\x0f\xb5\x15\x75\xc4\x7d\x84\x1a\x0d\xfc\x82\x53\x6d\x7b\x59\xe4\x8b\x69\x2e\x55\x44\x21\xbd\xa2\x2f\x94\x0c\xc8\xff\x56\x3c\x24\x96\x18\xe9\xfc\xfc\x42\xd7\xf7\xc0\xf7\xd2\x14\x8b\x0c\xaa\xd1\xaa\x71\xd4\x55\x0a\x28\xe9\xc6\x63\x88\xc0\xba\xa5\xea\x0c\xdf\x0e\x3c\x23\xe9\xb7\x9b\xb2\xed\x7c\x1c\x2f\x8d\x33\x2d\xf4\x04\x95\x2d\x51\xe3\x90\xaf\x5e\x8a\x92\x3e\xbb\x2e\x6c\x4e\xe0\xfe\x70\x69\xf7\x75\x37\xe6\xb8\x2e\x6d\x98\xac\x78\x94\x36\x1c\x6a\x6a\x77\xc8\xb8\xc3\x00\xde\x2d\x55\x72\xc7\xe3\xf3\xf8\xd5\x99\x6e\xb5\xec\xf1\x80\xcf\xc0\xf0\xc0\xf5\xef\x9a\x78\x38\x6f\x6b\xa2\xb8\x0d\x20\xbe\xc8\x9f\xd0\xcc\x57\xff\x5c\x25\x8d\x9b\xa5\xaf\x55\x9d\x41\x7a\x8e\x62\xda\x1f\x04\xaa\xa5\xfc\x4e\x50\x43\x3f\xf8\x56\xf7\xd2\x80\x87\xe7\xa4\xdb\xac\xe8\xd0\x37\x54\x46\x94\x66\x26\xe9\x33\x4a\x0c\x75\xfc\xf7\xc8\xb2\xf0\xb1\x6a\xcf\x87\xe9\x30\x4a\xfa\x8f\xd2\x95\x20\xe7\x3b\x5f\x2a\x5a\xf1\x75\x70\x12\xf3\xbf\x20\xe8\x73\xda\x84\x5e\x0e\xf0\x1a\xbd\x62\xd1\xd3\xae\x9e\x83\x30\x68\xa8\x50\xe1\x7e\xa0\x7a\x32\x77\x38\x17\x46\x02\x89\xc8\x01\x35\xaa\x2d\x25\xab\xb3\x55\xb6\x9e\x7e\xda\x6b\x31\x1e\x15\x24\xdb\x35\xa2\x3c\xe2\xdf\xa8\xf9\xf3\x84\x11\x72\x79\x8d\x9a\x41\x35\x95\x37\x14\x5b\xfd\x78\x29\x6d\x7b\x48\xdc\x9b\x4a\xfc\x87\xc1\x43\xd8\xac\xd7\xb4\xc4\x67\x96\x9a\xde\xaa\x61\xd5\x51\x78\x1c\x16\xa8\xe0\x13\xd5\x68\x30\xa3\x51\xbc\xf6\x00\x65\xe3\x30\x29\x9c\xf6\xa0\xe7\x82\x5a\xaa\xf3\x17\x3e\x8a\x63\xd4\x09\x9f\x94\xad\xaf\xcf\x7a\x8d\x3e\x27\x8e\x7a\xbd\x54\x6c\xb0\x53\x1d\xe5\xe7\xe7\x21\x10\x15\xc7\x36\xe9\x4b\xa4\x21\x44\x0c\x2d\xcf\x8b\xa1\x94\xbb\xa3\x24\x2f\xaa\xbf\x07\xde\x5b\x48\x5b\x69\x53\x61\x04\x0e\x13\x5b\x7c\x1c\x78\xa5\xd1\xcd\xa6\x09\x8d\xe5\x34\xb3\xcc\xa3\x87\xd7\xc4\x15\x4d\x3e\x51\x20\x5d\xd3\xcf\xac\xed\xed\xdd\x29\x0d\x85\x8d\xfc\x1d\x3c\x5a\xf4\x19\x76\x77\xd5\x43\xbf\xa3\x64\x83\x18\x9a\x2d\x39\xb8\xd2\xb2\xb7\x59\x11\x91\x96\xbd\x52\xce\xbd\xa9\xd5\x72\x6f\x4e\x0d\x23\x1d\x9a\xed\x24\x1c\xd1\xa3\xed\xfe\x01\x2d\x4e\x3e\x6e\xb2\x5f\x99\x2d\xc6\x59\x82\xee\x08\x3c\xd4\xbf\xa4\x8b\x83\x4b\xe1\xba\xb6\xc0\x2e\xbd\x1b\xfb\x97\x0a\x9c\xf0\x40\x57\x51\x34\x4c\xd3\x1b\x55\x59\xea\xa2\x09\x97\xb9\xbf\xe3\xd8\x97\xaa\xcf\xf0\x89\x1b\x00\x59\x89\xb2\x7e\x24\x52\x5f\x22\x18\xd3\x72\xbc\x84\x1b\xce\x52\xf7\xb2\x68\xc5\x26\x33\x1e\xe9\x8a\x0e\x0d\xf6\xe7\x05\x55\xc9\xe0\xd4\x09\x59\xfc\xc3\xdd\x2f\x0a\xa9\x56\x33\xaa\xb6\xcd\xcd\x71\xda\x0e\x7d\x25\x19\x1c\xf0\xea\xa3\x6f\x93\x81\x10\xd9\xc4\x86\xc9\xfb\xbe\x89\x57\x4c\xe2\xe5\x5d\xb1\x71\xaf\x28\xe8\xed\x15\x2f\xe3\x57\x0c\x62\x5b\x58\x99\x9b\x43\x4c\x75\x1a\x8f\x1c\x7b\xee\x76\xa0\x27\x77\x1b\x0a\x00\xcf\x75\x06\x51\x7f\x40\xb0\x57\x6c\x7e\xd6\x73\x45\xcc\xf3\x63\x35\x55\x7a\x52\xc5\xad\xf9\x38\xeb\xb3\xb6\x24\x5a\x28\xb7\x95\xf9\x40\x4e\x85\x78\xe7\xb7\xa7\xa6\x22\x17\x0e\x93\xe6\x79\x61\xf2\x42\x14\x41\x5e\x6e\x1c\x4c\xf2\x69\x75\x6e\x57\x6c\x52\x0c\xa8\x44\x2f\xe5\xd9\xea\x29\xf2\xb1\x7a\xf9\xb6\x48\xcc\x90\x56\x2f\xbf\x05\xec\x0d\x79\x25\xf2\xf2\x57\x4c\x3c\xb6\xf9\x3e\xdf\x31\x67\x46\x4e\xd8\xdd\x4d\x74\x8d\x81\xc4\x06\x29\xad\x94\x38\xe8\x62\x85\xd0\x53\x35\x68\x5b\xdd\x2a\x72\x92\xc4\x5c\x91\xf0\xd9\xc4\x14\x16\x70\x3e\x6c\x63\x06\xfc\x48\x72\xaf\xb2\x98\x56\xb7\x8e\xba\xf2\x85\x9b\x8b\x40\x48\x89\x3f\x6e\x39\xbe\xae\xeb\xa5\xf6\xba\x8e\x33\xc8\xae\xe6\xfb\x94\x22\x0b\xff\x0a\xf2\xda\xad\x40\x57\x28\xf7\x4c\x7c\x63\xf5\x00\x95\xbf\xe1\xe7\x31\x02\xad\x5c\xe2\xcb\x8e\x3a\x7e\xa7\x09\x38\xf2\x42\x27\x1f\xa6\x69\x01\x9a\x1c\x94\x1b\x3e\xa0\xe2\x0b\x1f\x4f\x7d\xa2\xca\x85\x57\x4c\x2c\xd9\xb0\xb0\xc3\xfb\xa6\xcb\xa5\x40\x6b\xbc\x98\xb6\xea\x4f\x23\xbf\x81\x39\xb9\x4f\xb1\x0c\x72\xcd\xcf\x14\x52\x3c\x0f\x33\x6b\xc3\x81\x50\xee\x89\x70\xb3\xe7\x6f\x3d\xaf\x8c\x64\xcf\x16\x36\x03\x49\x42\xf5\x8c\x99\xe9\x44\x19\xbd\x4b\x3b\x4a\xe2\xf9\x97\xe9\xaa\x05\x3b\xe3\x01\xe6\xfb\x26\xad\x43\x87\x64\xf8\x19\x34\xf6\x4e\x0d\xeb\xe8\x41\x7e\x95\x4c\xf8\x09\xd3\xb2\x0b\x72\x44\x58\x75\x0f\x01\xf1\x8b\xe7\xbf\x45\x79\x07\x43\x6e\xb5\x86\xcb\x03\x20\x7d\x42\x85\xe5\xbe\x62\xd9\xba\x42\x0a\x46\x02\xbd\x55\x82\x42\x8f\x50\x64\x86\x7b\xf9\xae\x9e\xf2\xbf\x59\xa2\x86\x2e\x65\x46\xa5\xf3\xba\x1f\x85\x26\x2e\x06\xd3\xcb\x44\xf5\x0c\x30\x19\x5c\xe3\x82\x02\x39\xdf\x68\x64\xa8\x0f\xe3\x28\x89\x42\x13\xd7\x44\xb9\x4a\x85\x9d\xad\x95\x58\xd3\xc2\x20\x99\xd6\xb3\xe4\xb8\x87\x9f\xe1\xe2\xf8\x04\x26\x4d\x78\x0b\x76\xda\x17\x12\x6b\x07\xb0\x8d\x8c\x68\xcb\x51\x6d\xef\xe0\xf4\x52\x94\x78\x66\xd9\xe6\x0f\xd0\x6f\xc3\x09\x23\x1f\x96\x19\x04\xaf\x64\x08\x29\x2a\x37\x32\x7e\xf4\xa0\x6b\xa3\x55\xcb\x40\x60\x95\x3e\x39\xf9\x7d\x84\xe5\xd8\xf9\xd3\x7a\xcf\xf3\xf3\x0b\x1d\x13\x0d\x6b\x42\x0e\xd7\xb5\x90\xc3\x75\x95\x20\x2e\x67\x66\x25\x62\x84\x35\x82\x23\x76\xfc\x7c\x52\x7b\x96\xcf\x3e\xfb\xec\x63\xaa\x82\xca\xef\x13\x4f\x9d\x47\x69\x10\x48\xb5\xf5\xaa\x3b\x4b\x81\x25\x8c\x06\x2c\x00\x9c\x48\x6b\x52\x05\xa2\xa8\x04\x42\x27\x4f\x64\x4f\xab\x47\x00\x47\x0f\x3d\x66\x3c\xbe\x7d\x00\x71\x22\x79\xbc\x50\x7a\xe4\xe5\x1f\x96\x35\xd2\x45\xec\x05\x6e\x83\xa0\x12\x80\xb7\xda\x9e\x50\xac\xcd\xbf\xe8\x0c\x5b\x98\xa6\x31\x14\x1e\x95\x52\x8b\xaa\x55\x54\xf7\x08\x5b\x7a\x4b\xb5\xd6\x9f\xec\x2a\x54\xc4\xef\x29\xc9\xd4\x75\x35\x84\xcf\x23\xe5\xd2\x56\x0c\xed\x93\xf4\x90\x60\x25\x59\xb8\xcf\x61\x57\x7d\xd5\x83\xd1\xf4\x8e\xa3\xee\xab\x2f\x71\x06\x75\x1b\x60\x23\xa7\xf8\x70\x58\x6a\xb8\xa0\xd4\xc7\xce\xbe\x42\xd3\x4a\x48\xab\x5b\x13\x3f\x7e\x0a\xb8\x0b\x56\xfb\x35\xed\x2f\xce\x62\x1f\x20\x30\xbf\xa9\x58\x63\xf6\x40\x30\x0d\x0f\xec\xef\xc1\x60\xe3\x72\xcf\xd2\x92\xe5\xdf\x63\xdb\x8f\xf5\xf8\x26\x49\x9b\x61\x61\x9f\x77\x9a\x04\x5c\x80\x8d\xd7\x28\x24\x40\x91\xf4\xb3\x40\x0d\x62\x7e\x84\x87\x81\xfc\xff\xff\x9a\x0a\x20\xab\xed\x37\x1e\xb5\xab\x9b\x74\xdc\x78\x87\x45\x38\xe3\xb1\xae\xd7\xcc\x79\x70\xf2\x98\x03\x3f\xbf\x3a\xb6\xf9\x0e\xe6\x8b\x93\x74\x77\x7c\xac\xc6\x3d\xa9\x45\x62\x46\x34\x46\x58\xfd\xb5\x10\xad\xd3\x15\x0a\x05\xbb\x92\xeb\x4c\xd6\x8a\x68\xc8\xe5\x50\xe9\xe3\x56\x4f\x97\x8f\x1b\xc0\x71\xf3\x9d\x74\x9c\xe5\x36\x5e\xb1\xd0\xd0\x85\xbd\xf8\x00\x33\xf9\x7c\xa2\x94\x42\xa2\x6f\x3a\x90\x13\x62\xc4\x47\x27\xbe\x59\x7f\x4d\xa9\x73\xfe\xfa\x53\x4e\x2a\x65\x60\xcd\x4a\x64\x33\xaa\xf6\xc8\x88\x07\xbd\x40\x64\xf3\xe0\x03\x72\x45\x8b\x6a\x21\xc1\xb0\xdf\xad\xf7\xa4\x7a\x6b\x7b\x7c\xb9\xfd\x76\xf9\x7f\xf3\xf5\xa7\x41\x96\x9c\xd9\x79\x18\xdc\x7d\xab\x7a\xc1\x36\xc0\x60\x99\xf9\x48\x7d\x8a\xb8\x92\x26\x0c\x4a\x01\xc1\x92\x65\xd9\x0a\xfd\xc9\xeb\xaa\x12\x31\x5d\xc1\x29\x94\xab\x7b\x1a\x12\x42\x3f\x90\x95\xf7\xbd\xf7\x26\x3a\x6f\xe6\x9d\x5c\xaa\x50\x70\x38\xc2\xe1\x1f\x0e\x87\x82\xa1\x30\x6d\x52\x0e\x33\x1c\x0e\x51\x66\x90\xa2\x6c\xd1\xe4\x90\x12\x65\x8e\x86\x59\x1c\x0e\x39\x9c\xc1\x00\x83\x65\xb0\x6f\xbd\x6f\xd5\xdd\xd5\xfb\xde\xd5\x8e\x3c\xcf\x39\xef\x7b\xb2\x32\x31\xbf\x90\x89\xae\x7b\x6f\xe6\xbb\x9c\xf7\x2c\xcf\x79\x9e\xba\x7c\x48\xb5\x04\x10\x5f\x9e\xc6\x12\xc2\x8c\x69\xa6\xbe\x4e\xa3\xfd\xa3\xb2\x48\xb1\x31\xfd\x5d\x6e\x63\xdf\x41\xd4\xc6\x8c\xfb\xf4\xe9\x9a\x98\xb6\x12\x8f\x9e\xb3\x71\xb3\x1d\x9e\x2a\x60\x34\xe9\xb4\x4b\x2f\xff\x7a\xb7\xe7\x0e\xad\xce\xba\x45\x95\xfc\xdc\x93\xeb\x35\xea\xc7\x16\x6d\xfc\x28\x49\x0e\x31\x82\x13\x3b\xfb\x58\xa9\x5a\x6b\x76\x2a\xd2\x93\x9b\x1a\xbd\x98\xe4\x49\x4a\x01\x16\x46\xfa\x42\xa9\x49\x26\x58\xd7\x9f\xff\x09\x27\x0b\xf3\x09\x96\x6a\xcd\x70\x50\xca\x9f\xd1\xf4\x4a\x49\x14\x51\x73\x1e\x06\xeb\x3e\xc6\x5d\x9c\x4f\x47\x9d\x75\x89\x76\x81\x30\x23\x55\x4f\xca\x89\x1b\xcf\xa5\xbf\x76\xf6\x5a\x10\xc7\xa9\x19\xb8\x56\x17\x41\xf6\x29\x88\xa3\xa6\x56\xc9\xb3\x82\x7c\x5f\xb8\x1d\xf7\x34\xec\xfa\x9e\x3a\x49\xfa\xe1\x60\x20\xd5\x58\xbb\x25\xac\x51\xd7\xd5\x98\x28\x8c\x0f\xd1\xea\x76\xcc\x25\x3f\x2e\x5d\x80\x7c\x56\x97\xc1\x2f\xaa\x7e\xf2\x20\x89\x22\x13\x48\x25\xcf\x61\x7c\xe1\x57\xc9\x3c\x3c\xa2\x54\x97\xcd\x84\x72\x11\xc8\x24\x62\x2a\x19\x23\x03\x93\xe7\xd2\x17\xd6\x5d\x18\xe4\x0f\xb8\xce\x7c\x3e\xe1\x10\x0e\x42\x3e\x8a\x7e\xe6\xbb\x4f\xd2\x77\x61\x55\x3d\x4a\xac\x1d\xf8\x8d\x77\xeb\x02\x3b\x8a\x44\x6d\xe7\xba\x62\x63\xb8\x4a\x49\x07\xe1\x85\x56\xc2\x1f\x49\x86\x1e\x90\xea\x4b\x70\x16\x30\x66\x99\x6f\x14\x2c\xb6\x1f\x66\xc6\xcf\xd8\x06\xc1\xa7\xba\x83\x75\xc2\x37\xde\x93\x2d\x1e\xb2\xaf\xc4\x9c\x4f\x62\xf9\xf1\x4d\x9b\x32\x4a\x36\x09\xd3\x50\x32\x8f\xf0\xc9\x8e\xaa\x82\xd4\x51\x05\x50\x1b\xa4\x09\x17\xfe\xb1\x8f\xd9\x46\xa1\xb5\xe4\x9a\x62\x03\x9e\xee\x39\x0e\xca\x2c\xf7\xb9\x4b\x13\x7f\xf7\x9a\xe7\xda\x51\x5e\x53\xef\x9a\x8f\xd2\xa4\x18\x8e\x00\xf3\x12\xce\x8c\xea\x94\x93\x5a\xbc\x8b\x90\xaf\xc0\xaf\x45\x3a\xe8\xbe\xa7\x36\xce\xa6\x6e\xe8\xdb\xcb\x61\x11\x5c\xf7\x69\xe8\x35\xa3\xb4\xb0\x87\xcc\x87\x40\x75\xab\xb9\x55\x8a\xee\x92\x4f\xd8\xd5\x30\x72\xf3\xf3\xdd\x20\x4d\xb2\x6c\x17\x2d\x19\xec\x43\x36\x25\xdc\x3b\xab\xa2\x1f\xb8\x73\xb0\x7e\x37\x94\x1e\xd1\x31\xe5\x3f\x66\x93\xa4\x60\x61\x12\x21\x5d\xea\xd8\x76\xea\x33\xf4\x60\x38\x1a\x2e\x29\x0a\x31\xbf\xda\x1f\x61\x26\x73\x26\x8d\xed\xf4\xe6\xd2\xcc\xae\x5a\xa0\x26\xc9\x21\x03\xb6\x31\xbc\xe3\x0f\x70\x0c\xf3\x4d\x93\xb1\xfa\xf9\xfd\x95\xf1\x5d\x8d\x3b\xca\x9d\x44\x7c\x2d\x7d\x0b\x4a\xb7\x2d\x0d\xf3\x30\xa8\xbc\x65\x3a\xf4\xe1\x90\xdc\x82\x43\x86\x29\xde\x54\xcd\x03\xc7\x15\xe5\xe1\x38\x8c\xc3\x2c\x4f\x43\x83\x9a\x37\x16\xdb\x7b\xf4\xc6\x88\x17\x2f\xd3\x22\x14\xc2\x95\x96\x85\x4b\xca\x33\x31\xe8\x6a\x15\xe6\x5b\x40\x3b\x47\x5a\x50\x1e\x8b\xdd\xcc\x9f\x84\x26\xe6\xb3\x00\xf8\x39\x8e\xab\x25\xb1\xe2\x7e\xf5\xa6\x7a\xd1\xdc\x44\x66\x85\xf4\xdd\xf7\x56\x5e\x11\x0e\xa1\x2b\x1a\x56\x7e\xa5\x9a\xe2\x2d\x64\x61\x39\xcc\xc1\xc9\x06\x4f\xe4\x30\x8e\x0b\x69\xc0\x70\xc3\x89\x6e\x33\xfe\x42\xc5\x00\x9d\xe4\xc1\x1e\x97\xaa\xbb\x4a\xce\x1f\x66\xf7\xd7\xf4\x9e\x7e\x43\xc9\x0c\xbe\x0d\x8b\x27\x52\x99\xae\x16\xb0\x09\xcc\x15\x7f\x5c\x99\xcf\xa0\xc8\x33\xec\x38\xa0\x11\xb9\x37\x83\x9b\x95\x28\x94\xc4\x62\x86\xea\x1a\xbe\x6d\x87\x76\xd2\x01\x7c\x41\x8c\x77\x99\x2c\x7c\x4d\x34\x44\x72\xec\xce\x36\xec\xe9\x29\x63\xf7\x63\xac\x45\x94\xd3\xee\xe2\x74\x14\x34\xcf\xb3\x54\x4e\xdb\x22\xb5\xa2\xad\x8b\x6d\x98\x95\x71\x18\x27\x69\x47\xb7\x05\x3b\x64\xee\x66\xa3\x8c\x3f\x3b\xdb\xf5\x0b\x10\x78\x76\x9c\x58\xea\x65\x25\x32\x7d\x59\x75\x0e\x2e\x27\xa9\xa4\x01\x60\xf6\x8f\x68\xde\xd2\x23\x0a\x0c\xe4\x67\x59\x31\x36\x53\x0e\xe5\xfa\xbf\x61\x19\x62\x4c\x2e\x22\x70\x16\xf3\xa4\xec\x5d\x1a\xae\x90\x22\xf8\x3e\x29\xb2\x7d\xaa\x31\xe4\x9f\x36\x9e\x9f\xc2\xd3\x71\x72\xc8\xd6\x98\x91\x34\x7a\x53\xf5\xa4\xbd\xd9\x46\xeb\x9a\xaf\x1d\x32\x4a\x58\xed\x08\x8c\x27\xdf\xb4\x14\xda\x17\xf7\x77\xb3\x51\x38\xb0\x5e\xb5\x8c\x27\x3d\x9c\x0c\xb4\x2d\x5b\xf9\xd4\x7b\x4d\x7f\x88\xa4\x1a\x8b\x0c\xf1\x8d\x73\x77\xfd\x74\xe8\x87\x20\x09\x41\x46\x75\x8a\xe2\x16\x64\x0b\x6f\x29\xf8\xd4\x63\x0d\x67\x06\x0c\x88\x71\x56\x44\x48\xe8\x58\x4e\x01\xdb\x6d\x74\xd3\x53\x2c\xa0\x4d\xe2\xd7\xb9\x03\xdd\x61\xea\xc7\xfd\x30\xc9\x8c\x6a\xff\x06\x09\x1b\x5f\xb7\xd5\x20\xfb\x26\x87\x33\xc2\xa6\xb6\x86\x7c\x11\x31\x4d\x17\x61\x18\xce\x1e\x44\x6b\x0f\xd0\xe3\x08\x98\x9f\x46\x87\x11\x30\x9e\x2a\xd9\x7f\xa0\x9a\x13\x3e\x22\x93\x80\xad\xbb\x45\x4e\x15\xd6\xcf\x51\xda\xf8\x70\x94\x3e\xc0\x0f\x4b\x8b\x7d\x35\x7c\xa2\xee\x2d\xcd\x3d\x87\xcc\x9a\x4c\x07\xeb\x76\x95\x0e\xcc\x7b\x43\x9d\x3c\x03\xbf\x88\x35\xd5\xf7\x4d\xd8\x0e\xbe\x69\x9c\x0a\xbf\xf8\x42\x37\xf2\x57\xfc\x34\x51\xf4\x21\x4c\xd1\xcc\x37\x35\x78\xc3\x2b\xa2\xea\xde\xc6\x2e\xeb\x9c\x8b\x37\x4a\x97\x08\x7a\xc3\x2e\x95\x49\x9a\x2c\xdb\x45\x8e\xaa\x05\xce\x52\xbe\x5e\x77\xad\x35\x51\x48\x14\x06\x79\x28\xed\x0c\x16\x99\xbe\x4f\xd8\xa6\x2f\x68\x14\x41\x4a\x4b\xd0\xa2\x9f\xde\xa2\x81\x96\xc6\x14\x67\x93\xff\x5f\xe5\xaf\x85\xd9\xd8\x0f\xa3\x90\xdb\xfd\xd8\xeb\xf3\x14\xc9\xeb\xa6\xa2\xcd\xb2\x2d\x7b\x66\x97\x42\xbb\x31\xd5\xa0\x65\xdc\xb2\x6a\x94\x9a\x16\xf7\x18\x50\xbd\xfc\x09\xbb\xc1\xc0\xff\x43\x88\x0b\x3c\x33\xc7\x1d\x88\xf1\xc0\xf2\xa0\xe1\x7e\x22\xeb\xd6\x06\x0d\x8d\x92\xcc\x46\x9c\xc0\xb7\xfd\x3e\x3d\x8c\xa5\xab\xb2\xbd\x50\x37\x54\x67\xdf\xd8\x4f\x83\xd1\x23\xd5\x03\x20\xe2\xdf\xf2\x94\x8a\xce\xf7\x90\x60\x86\x55\xa4\xbc\xc2\xd6\x07\x94\xf5\xb3\x14\x74\xd5\x2a\x80\x0f\x73\x4d\x29\x79\xdd\xf7\xd4\xa9\xb3\x03\x3a\xe4\x96\x73\xbe\x3a\x1f\x44\x82\xbe\x9a\x48\xd5\x06\xf2\xa2\x7c\x17\x6c\xac\xfc\xca\xf6\x54\xde\xd2\x0c\x84\x5a\x73\x3f\x8c\xed\x52\x82\x5f\x0e\x92\x00\xbe\xee\x29\xf2\x24\x3f\x4f\xc3\xea\x55\x69\x85\x5b\xa2\x37\xd7\x4e\x71\x56\x8d\x49\x30\x0a\xa3\x3e\xf2\xbe\xb6\x63\x78\x9f\x6d\xe3\x6e\x83\xa6\x67\x7e\x0c\x21\x3f\x2b\x7e\xad\x79\x3b\x9a\x89\x6e\x26\xd1\xa6\x32\x93\x64\x5a\x54\x1f\x34\x4a\xf8\xd2\x60\xef\x80\xd3\xe7\x15\xd3\x6d\x38\x9e\x98\xbc\xe0\x6c\x07\x46\xea\x72\xa9\xc8\x04\x2e\x37\x76\xf9\xd2\x4c\x77\xb9\x72\xc2\xf3\xa9\x9a\xac\x04\x7d\x01\x93\x5d\xe0\x0b\x10\x3a\xed\x68\x70\x2c\x2c\xa0\x07\x20\x8a\xfc\x1c\x27\xa2\x28\x5b\x54\xaf\xc1\x25\x09\x85\x21\xbc\xde\x20\xb0\x5c\x9a\x21\x1e\xf5\x94\x79\x69\x69\xde\xac\xe4\xaf\xad\x0d\xba\x66\x46\x3f\xc8\x13\x10\x01\x48\xf1\x47\x15\x82\x1a\x3e\xc3\x4b\x2f\x75\xf3\x24\xe7\x06\x07\x81\x59\xd6\xfa\x2a\x3b\xb3\xb3\x36\x91\xe0\x32\x01\x3e\xf1\x34\xd3\x41\x6e\x8b\xc1\x8e\xa1\xbf\xd6\xaf\x3e\x9e\xe0\xb0\x45\xfa\xf4\x16\x39\xb4\x7c\xdd\x70\x48\xa9\x41\x2e\x09\x5c\x23\xaa\x6d\x9d\xad\x36\x8d\xb4\xce\xd6\xb2\xb3\xab\xcf\xaa\x38\x7d\x5b\x7b\xf4\x93\x2a\x2a\x1e\x27\x41\xea\x07\x21\xd7\xf3\x75\xb7\x94\xb4\x51\xb9\xc5\x3c\x8c\x8c\x1f\xeb\xc2\xfc\x29\x5d\x98\x3f\x55\xfe\xcd\x2f\x6a\xbb\x4e\xc3\x38\x30\x79\x12\xff\xd3\xff\x34\x36\xab\x93\x24\x65\xde\x61\x11\x94\x75\x2d\xa6\x97\x1a\xce\xcc\xdc\x01\x52\x74\xcb\x24\x36\x6c\xc3\x61\x7e\x55\x75\x84\x4d\xd2\x64\x92\x86\xcc\x33\xd7\xb1\x8a\x86\x17\xb1\x36\x91\xba\xbd\x4d\x2b\x04\x71\xd4\xc3\x94\x2f\x14\xef\xb7\x85\x70\x5c\x98\xb0\xe4\x64\xad\x3e\xca\xd7\xca\x3f\x9e\xf8\x59\xb6\xab\xda\x5d\xb0\xbd\x77\x28\x17\x63\xe9\x1e\x6c\x1f\xf6\x5d\xcf\xb5\xf8\x1f\xd7\x58\xa1\xbb\x8a\x63\xd8\x0f\xfc\xbe\x19\x87\x41\xa7\x96\x0e\xd4\x79\x42\x57\x5b\x2a\xe2\x00\xc6\x8b\x2a\x97\x28\x2d\x5f\xa1\x67\xe4\x6b\x5b\x8d\x26\xa6\x1a\xec\x35\xec\xaf\x9b\x4a\x9f\xf5\x2b\x34\x0a\x18\xcf\xc7\xd6\xb7\x3b\x38\x94\x23\x1a\x86\x19\x09\x5a\x03\x91\x67\x09\x58\xec\x40\xb2\xa1\x92\xfe\xe6\xed\x3b\x6a\x76\x16\x86\x16\x06\x83\x13\xcf\x34\x1a\x70\xec\x8e\x90\x97\x82\x10\xbe\x99\x7e\x20\x8d\x89\x74\x25\x29\xb0\x4c\x71\x0e\x21\x70\xe1\xeb\xd6\x2c\x6b\x90\xfa\xf1\xa1\xc0\x67\x71\x49\xdd\x8c\xe6\x8e\x7c\xf1\x72\xe2\x20\x94\xfe\x79\xe1\x5c\x73\xc7\xe4\x05\x37\x8c\x41\x92\x4c\x78\x17\x5a\x49\x13\xcd\xc4\xbc\x3d\xd1\x52\x05\xa0\xcf\xaa\x9d\xce\xb1\x27\xdf\x28\xda\xa4\xb1\xff\x0a\xfa\x66\xab\x53\xcd\x02\xf1\x14\x58\x4f\x4c\x59\x9a\x44\x11\x3f\x01\x5e\xfe\xac\x16\xeb\x70\x24\xdf\x59\x31\x31\xe9\xb2\x00\xdd\x25\xbd\x55\x0d\xb9\xc0\x76\x6c\xa3\x7b\x3a\x34\x71\x1e\xc6\xa2\xcc\x68\xb3\x4d\xae\x8d\xea\x78\xdb\xce\xcc\x8a\x74\x92\x86\x99\xa1\x8d\x06\x9f\x7a\x37\xca\x04\x82\xea\x73\xbe\xea\x83\xeb\x0a\x9f\x72\xc1\xfa\x70\x63\x5f\xa1\x29\x18\xe0\x84\xdf\x15\xb4\x93\xcb\xc7\x8d\x97\x93\x69\xd5\xba\x73\x44\x33\x83\xdf\x2d\x5d\x2f\xef\x83\xbd\x8e\x62\x66\xb4\x74\x68\xa9\xdf\x8f\x8c\xe6\xb7\x54\x86\xe7\x98\xf2\xcd\xc2\x38\xcc\x43\x6a\x12\x60\xc0\xa5\xc8\x19\x76\x2c\xbd\x1c\x58\xc5\x85\xe2\x89\x1e\x57\x78\x1a\x9b\xd1\xd8\x73\xd5\x09\x9d\x5b\x87\x4a\xf3\xb2\xdb\xdc\xa8\x6d\xe5\xfb\x7f\xca\x6d\x38\xfb\xd9\xb9\xee\x81\xe7\x1f\x72\xdd\x05\x47\x15\x65\xe2\x8e\x9e\xd2\x07\xbb\x46\xbe\x2c\x46\x6d\xab\x54\xb1\xdb\xc3\x3d\x95\x87\x7c\xad\x74\x00\x97\x3b\x74\x8a\xd9\x4e\x49\x07\x05\xf9\x3f\x3d\x97\xa4\x39\xa3\x4b\xfb\x17\xb4\xf2\x94\xe9\xef\x21\x4f\x14\x95\xb2\x37\x91\x3a\x80\xcd\x03\x21\x81\xd5\x40\xdd\x27\xa0\xfc\xbb\xa5\x12\x3d\x79\xd3\xab\xf5\x6e\x39\xf0\xd3\x96\xf7\x94\x32\xac\x69\x1e\x06\x45\xe4\xa7\xd1\xda\xde\xce\x3f\xfa\xc7\x7c\x88\x01\xd3\x89\xa5\xf9\x1f\x35\xe3\xc1\x6d\xb4\x11\x08\x77\x5d\xc7\x32\x94\xdd\x57\xcd\x0c\x1f\x22\x7b\x21\x74\x4d\x34\x88\xf0\x30\xaf\x78\x4f\x68\xb8\xef\x20\x29\xe2\x3e\xeb\x30\x31\xbb\x91\xc6\x91\x6f\x68\x02\x15\x1e\x41\xbc\xe8\xcd\x36\xe1\x97\x51\x38\xce\x4c\x34\x80\x5d\x67\xe0\x84\xa7\x38\xd0\xdf\xb4\x14\x64\xd5\xae\x48\xa2\x50\xb8\x43\xe0\xca\x9e\xd0\xed\x69\x27\xbc\x87\x15\x79\x4c\xff\x0b\x9b\x63\x2d\xe7\x70\x7f\xc5\xb0\x84\x04\x93\x61\xd0\x1c\x0b\x31\x86\x35\x6f\xd5\x59\x3d\xa4\xda\x0c\x9e\x69\x1a\x39\x1c\xa8\x31\xff\x8d\x75\x9b\xd3\xfd\xd1\x5f\x27\xc7\x12\x1e\xf7\xe5\x52\x71\x46\x9d\x55\x5c\xa8\xfd\x30\x85\x6c\x29\x65\x2f\xe4\xf9\x68\xa1\xa8\xee\x5d\xdb\x2c\x95\xae\x80\x5e\x00\xf9\xb6\x4b\x9e\x93\xe0\xbf\xa4\x21\x95\x3e\xf5\x5f\xb9\x70\x75\x93\xa2\x43\xbe\x76\xd1\xa1\x9f\x65\xfe\x10\xe2\x22\x72\x60\xeb\x83\xbc\xa5\x12\x92\x15\xc3\xa1\xc9\xd0\x1a\xa5\x52\x2d\x8b\x5b\xd7\xd1\x98\x09\xa3\x7d\xaf\x7c\xdc\x56\x8b\xe3\x2c\xaf\x42\x45\xe9\x12\x11\xf9\x55\x5a\x09\x7c\xa3\x90\x26\xf1\xcb\xe1\x94\x6b\xe7\xe8\x50\x80\x81\x32\xfe\x35\xf2\xff\x10\x54\x3e\xdc\xfb\x8a\x26\x5a\x19\x17\x31\x13\xe7\x2a\x4e\x98\x23\x08\xee\x24\x33\xf8\x33\x08\x6f\xfa\xd6\x3d\x16\x1e\x58\x9a\x2b\x61\x88\x7d\xaa\xc9\xd4\xb8\xb0\xb0\xff\x11\x97\xc4\x63\xd4\x86\x48\xcd\xb8\xfe\xa5\x3d\x30\x2b\x8c\x48\xf2\x94\x20\xc9\x9b\x4a\xa6\x62\xf7\xba\xe2\x5c\x39\xc7\xd5\x61\x04\x55\x6f\x20\x44\x60\xe9\xc4\x92\x20\xb2\x38\x15\x8f\x62\xb8\xf9\x06\xa3\x89\x78\xf7\x36\xde\x1b\x37\x4d\xbe\x9e\xa7\x9f\xee\x2e\x93\xf0\x89\x85\x2d\x6f\xa8\x4a\xd8\x86\xc6\xf2\x57\xdb\x6b\xc4\xbd\xed\xb0\xa6\x97\x6b\x0a\xec\x4a\x51\xee\x7b\x6d\x82\xeb\xcb\x49\x8a\x0c\x81\x74\x90\x29\x6d\x30\x06\xf4\x21\xb1\xad\x3b\x29\x63\x63\xfa\xa6\xbf\xab\x66\x82\xad\xd3\xf8\x21\xec\xa1\x6d\xdc\x76\x0d\xaf\xd8\x31\x62\xbb\x5a\x16\xee\x38\x89\xc3\x3c\x49\x69\xdf\x72\x51\x5e\x13\x8e\xb0\x10\x05\x4e\x9e\xf7\x14\x3f\x1b\xab\x13\x4a\xd6\xfd\x31\xcd\x10\x9c\x11\x21\x47\x35\xc5\xf0\xef\x19\x6f\xc0\x37\x0a\xe7\xdf\x37\x59\x90\x86\xcb\x46\x77\x5f\x1d\xd7\xdd\x57\xcd\xe6\x99\x2a\x6c\xcd\xf2\x62\xb9\x1a\x44\x04\x14\x16\xbe\xe9\x18\x34\x95\x8e\x7b\x9c\x70\x6f\x17\xa3\x48\x68\xa6\x04\x51\xb2\x7d\x72\x9e\xe9\xa6\xe1\x8a\x49\xa7\x14\x12\x14\x67\x93\x56\x90\x91\x7c\xb3\xab\xb3\x66\x49\x18\x91\xf5\x41\x3c\x85\x9e\x65\xbe\x56\xf9\xb0\xb4\x88\x0c\xa7\xc2\x91\xcf\x3f\x03\x08\x77\x4d\x22\x06\xae\xd8\x49\xae\x03\xb3\x5d\x54\x11\xe7\x25\xc5\x71\x78\xd1\x73\x30\x88\xbb\x58\x45\x58\x1b\x97\x14\x4f\xe6\x47\xc0\xb2\x8b\xf4\x8c\x12\x38\x79\xa0\xc1\xd5\x38\x77\xa0\x72\x67\xb3\x9a\xb8\x34\x1e\x4b\x64\x0a\xb6\x4f\x07\x5a\x23\x2b\x43\xc3\xaa\x0e\xf6\x89\x6d\x00\xa5\xa5\xfc\x49\x01\xe2\x61\xbc\x1b\xec\xc2\xeb\x14\xef\x28\x32\x82\x39\x6b\x72\xc9\x45\x60\xad\x54\xac\x49\x85\xad\x7f\x91\x3d\xfe\xef\xe1\xf9\x90\xf8\xfb\xb7\xf4\xb3\x70\x38\x78\x27\xe1\x10\xb8\xe3\x75\x9e\x7e\xda\xea\xae\x3a\x58\xdc\x0f\xb1\x71\xe0\x0d\x7c\x02\x96\x23\x52\xe4\x5b\xfc\xda\x83\xd5\x10\x5a\x0f\xc3\x6e\xbb\x77\x14\x7d\xf4\x6f\xd2\xf8\x63\x68\x36\x74\xd7\xed\x96\x4e\xea\x70\x78\x23\x87\xaf\xaa\xfe\xfd\x3a\xde\x0a\x3b\xff\x3a\x32\xaf\xfc\x8b\x6a\x05\x87\xc1\xb6\x4e\xc2\x52\x45\xb0\x9e\xd3\xec\x12\xcd\x83\xe7\xac\xcc\x81\xcb\xc8\x5f\x69\xf8\xe0\x62\xe7\x03\x56\x42\x03\x18\x98\xa5\x97\xf9\xa6\x91\xbc\xa1\x26\xde\x6f\x15\x06\x8c\x41\x02\x6f\xd6\xb8\xe7\xc7\x6b\x35\x8b\x14\x9c\xfa\xd5\x0e\x42\xac\xb5\x63\xbd\xda\x1a\x7c\xdd\x56\xfb\x1c\x24\x91\xa8\x07\xc0\x3b\xbf\xaa\xfa\x03\xaf\xb6\x0a\x79\x64\xe1\x2b\x83\x24\xea\xc3\xbf\x47\x29\xe9\x5f\x94\x8e\xba\x18\x41\x34\x36\xcf\x5b\x58\x60\xc8\xf0\xec\x58\x77\xc7\xeb\xcf\xcc\x3a\x6f\x5f\xf3\xb6\x87\x27\xf4\x33\x95\x17\x62\x77\x57\xf4\x1b\x9b\xb9\xfe\x45\x81\x1e\xc8\x7c\xaa\x76\xac\x39\xdb\x75\xa5\x0b\x54\xff\xf4\x6f\x75\x14\x8f\xc7\xeb\xa5\xd2\x2a\x79\xfd\x0b\xa9\xea\x56\x0d\x71\xa5\x23\x39\x2e\x35\x67\xe7\xcd\x9e\x51\xc1\xc8\x71\x1d\x51\x4e\xf5\x1e\xdb\xee\x9c\x90\xdb\x60\xd9\x2b\x1d\x93\x65\x23\x46\xdf\xb7\x50\x59\x4e\x3f\x9a\x52\xfa\x09\xf8\x51\x1c\x90\x87\x15\x99\xc8\xa7\xca\x24\x7e\xab\x08\x0d\x2b\x56\x33\x08\xb4\x54\xa2\xb7\xdf\x6b\x23\xef\x0d\x12\x52\xb2\x8b\x73\xaa\x6c\xa9\x3a\xbf\x02\x0a\xbc\xa6\x8a\xd3\xfe\x72\xe5\x89\x4f\x39\xfc\xfc\xfb\xd8\xa9\x96\x38\x78\x7e\xde\x56\x69\xb7\x91\x4f\x1f\x9c\x79\xb1\x7b\x70\xe6\x81\xce\xdc\x01\x36\x36\xc0\x5b\xa3\xee\x04\x32\x20\xa6\xb0\xc6\x31\xcb\x56\xdd\xab\x82\x0d\xc1\xab\x38\x2e\x26\x10\xe7\x6c\x5d\xc4\x61\x68\x69\xda\xaa\x63\x52\x68\xda\x5c\x79\xc2\xf4\xc3\x20\xdf\x55\x1f\xcd\x83\x33\xa2\x84\x0c\x2b\x8e\xe0\xe1\x4b\xaa\x21\xec\x9c\x06\x3a\xbd\xd5\x48\xf9\xce\x1d\xe8\x9a\x57\x82\x82\x85\xd7\xb9\xa5\x83\x9e\x10\x66\xeb\xc7\xa5\x33\x9f\x97\x5b\x58\x3b\x9e\xeb\xae\x86\x29\xe2\x60\x86\x9c\xaa\xe6\xa0\xf7\x54\x1e\x2a\xa3\x56\xb3\x2a\xec\xda\x27\xd9\xe4\xe3\x9e\x83\xfa\x31\xa8\x43\xb3\x65\x62\xf5\x5f\xa3\x5c\x15\x8c\xeb\x55\x1a\x6b\xcb\xdb\xa1\xe8\x63\x1d\x4c\x6f\xcb\x7b\x50\x60\xe5\xc9\x6a\xc7\xc1\xa8\x8e\x96\x2e\x42\x39\xaa\x0e\xea\xdc\x3f\x64\x40\xb8\xcc\x34\x2c\xba\xc9\xec\x22\x3d\x88\x9c\xbf\xae\x6a\xc3\xdc\x9e\x30\xb8\x58\x2f\x40\x4b\x5e\x52\xe1\xe9\x8e\x75\x85\xe3\x64\x22\x5c\x78\xc1\x9d\xf5\xea\x9d\x00\x1d\xdd\x4d\x73\x85\xe5\xb0\xb7\xb7\x3d\x31\x0d\x0b\x21\xfc\xb5\x9d\x06\x4d\xad\x63\xb0\x6d\xe1\x8e\xcf\xfc\xb8\xbf\x1a\x06\x23\x58\x16\x0b\xed\x74\x79\x28\x75\xa2\xf4\xfd\x68\x0d\x56\x19\x30\x2d\xd0\xa2\xf0\xb5\xf7\x95\x6d\x7e\xfd\xd2\xe2\xd7\xaa\x47\xdb\xa5\x88\xb2\x37\x3c\x07\x29\xd6\x8c\x71\xef\xe0\x31\x61\xad\xcf\xa9\xae\x8b\x8f\x54\x2e\x66\x12\x82\x46\x13\xe9\xcb\xeb\x0a\x4e\x78\xdd\x46\xb1\x23\x3f\xf5\xc9\x8b\x74\x30\x6b\x36\x93\x72\x3e\x2a\xac\x4a\x14\x24\xa3\x24\x0a\x03\xb2\x23\x5b\x17\x4b\x2a\xe6\x37\x96\xef\xec\x2c\x49\x02\xb2\x4c\x14\x80\xf9\xac\xdb\xc0\x37\x6d\xb0\x3e\xea\x44\xed\xb8\x03\x17\xfe\xa3\xf4\x7f\xd9\xca\x73\xd8\xef\x0b\xaf\x22\x46\xe5\x09\x4a\x8b\x32\xfd\xa5\x2a\x2b\x9c\xc1\x8a\xc3\x31\xf5\xc8\xfa\x5f\xff\x02\x1b\xae\x14\x6e\xd5\x10\xdc\xd0\xfa\x4f\x37\xb4\xec\xf8\x28\x99\x4c\xc2\x78\xb8\x5b\xa3\x91\xb0\x86\x75\x21\x9b\xed\x82\xe7\xea\x3a\x87\x09\x80\xcb\x7f\x83\x6f\x07\x18\xf6\xbc\xad\x0e\xf6\x8d\x99\x98\xf4\x41\x87\xc1\xbb\xac\x1a\xbf\x11\x84\x58\x6a\x17\x9d\xdf\x55\x4a\x82\xef\xc1\xe2\xb2\xac\x32\x92\x26\xc8\xdd\x32\x69\x84\x48\x7a\x39\x28\xc4\x2d\x6c\x3a\xf2\xd2\xfe\xe1\xcf\xf7\xb6\x2f\xf8\xf9\xf9\xfd\xd0\x4a\x95\x08\x95\x41\x70\x9e\x73\xd0\x6f\x29\xa0\x6d\x4a\x65\xf3\x7c\x97\x0b\x8c\x7e\xea\xa9\x47\x82\x20\x38\x36\xd7\x8e\x9e\x4b\x73\x7e\x8c\xe5\x0c\x3b\x72\xbb\x95\xe4\x2d\x36\xaf\xe4\x04\xb1\x84\x13\xc7\xed\x28\xd2\x24\x50\x53\xd7\xd1\xcd\x4a\x0e\xdb\x7d\x58\xd1\xf0\x9c\x6e\x70\x15\xce\xce\x0a\x95\x5a\x9a\xc1\x15\x90\x39\xc0\x4c\xf3\x5d\x0b\xc7\x61\x77\xb8\x26\x2c\xb2\x8a\x49\x14\xbf\x2c\x87\xbf\x0b\xda\x46\x6b\xcb\x69\xd8\xe7\x3a\x5e\x6b\x72\x5a\x7c\x83\xb1\x19\xfa\xcb\x6b\xb9\xa9\xa1\xf9\x90\xf0\x96\x3e\xa4\xed\xc7\xce\xec\x6c\x37\x8c\x03\x93\xa1\xa9\xdf\x26\x9e\xab\xd0\x07\x66\xfc\xb3\xb2\xf3\xcd\xaf\xdb\x76\xcb\xea\xab\x80\x48\xda\xd9\x28\xfe\x1d\x78\xbe\x9b\xac\x98\x94\xc4\x08\x3b\xae\xf8\x77\x0d\xfb\x98\x6f\x6a\x3d\x31\xb1\x3f\x9e\x76\x70\x8c\x23\x1a\xbc\xc7\xc2\x06\x38\xbe\x38\x57\xc0\x37\x9e\x03\xd1\x2c\x9b\x2c\xec\x9b\x8c\x18\xc7\xac\x1c\x65\xf5\x25\x42\x5f\xaf\xc6\xe1\x3d\x0a\x66\x84\xa2\x57\xb1\x9a\x34\xeb\xb5\x0b\x0b\xdd\x15\x93\x82\x3b\x0d\x07\xc2\x09\xe5\x2b\x9c\x50\x7d\xad\x59\xb2\x6c\x52\x0b\x74\x45\xfd\xf7\x06\x82\x05\x24\x4d\x8e\xeb\x7e\xdf\x33\x8d\xa0\x76\x69\xa6\xfb\xf4\x3f\xf8\x3b\x19\x72\x87\x36\x58\x9e\x9d\xb3\xc1\xf2\x97\x2c\xd4\x3d\x0b\x8a\x5a\x7a\x6c\x03\x36\x57\x14\xe2\x1f\xaf\x9f\x0c\x7f\xb3\x3b\x3f\x4f\x7f\xac\x19\x9d\xf9\x5a\xd9\xfb\xbf\xfd\x0f\xfe\xce\xb4\x1a\x75\xd0\x6c\xf2\xb5\xea\x12\xbf\x46\xcf\x24\x18\xf3\xc7\x14\xb5\x69\x1e\xc6\x7e\x84\xf3\x0a\xe9\xaf\x1f\x53\x7a\x8f\xaf\xdb\x90\x38\x7d\xb3\x62\xa2\x64\x22\x55\x19\x78\x4d\x1f\x96\x0e\xb8\xfb\xa1\xc2\x03\x23\x4f\x1c\x4e\x7c\x22\x8d\x3f\xa8\x8a\x6c\xd5\xa8\xda\x82\x46\x35\x99\x16\xb2\xee\xc2\xd4\xd3\xb5\xe2\xe9\x72\x18\xa3\xca\x65\xa9\xe0\xed\x41\xc7\xc9\x7e\x86\x62\xab\x17\x1c\x99\x88\x6c\x77\xb5\x74\xb0\x33\x3f\xf1\x5c\x2a\x13\x7e\x37\x5c\xbd\xd7\x68\x88\x98\xee\x51\x1d\x44\x77\xf1\xd5\x62\xd9\xac\xa6\x70\x64\x5e\x61\x2f\xc2\x4a\xf7\x2d\x38\x1d\x3f\x95\x5d\xfc\x7a\x12\xf0\x1f\xb2\x78\x9f\xa6\xd7\x39\x6b\x17\x48\x36\x49\x8a\x4c\xd4\xe1\xd0\xce\x70\x53\x0b\x95\x72\x60\x8e\x08\xe8\x88\x32\x2f\x59\x52\xa4\x81\xc9\xa6\xdc\x61\x73\x4a\x27\x22\xde\xa3\xf9\x64\x7d\xd3\x16\x71\xda\xee\xcb\x45\x7f\x88\xdf\x95\xd6\xa0\x63\xd8\x00\x42\xb1\x8b\x87\x17\xc0\x89\xd2\x2c\x20\x74\x95\x01\x2c\x02\xa1\xc8\x07\x9e\x93\xfe\xfc\xa0\xc5\xa6\x13\x8c\x2b\x27\x67\x12\x47\xf9\x86\x22\x06\xd8\x50\x9c\x53\x43\x13\x17\x61\xcc\x8d\xa6\xd8\x4b\xb7\x6a\x49\x28\x07\x48\x3a\xd1\x30\xd0\x36\xfc\x4e\x18\x39\x87\x3f\xbc\xa7\xb3\x19\xf7\x94\x47\x1d\xa4\x49\xbc\x16\x66\x63\xfc\x9a\x4d\x96\xda\x4e\xe8\xb7\x55\x5e\xeb\x5f\x96\x8e\x87\x39\x92\xe9\xc2\x3a\xbe\x5d\x9f\xae\x8e\xa5\x47\x3b\x59\x23\xc8\x8a\xe3\xb5\x15\x3f\x42\xc9\x57\x05\xa9\x72\xd2\xdf\x50\xf2\x6e\x53\xbd\x86\xb9\x9f\xeb\x1e\x4a\x93\x38\x49\x29\xca\x40\x2d\xed\x56\xa9\xa4\x80\xe0\x05\xe3\x9c\xbf\xd2\x26\x48\x36\x0e\x63\x93\x72\x74\x27\xe2\x57\xce\x0b\xda\xb0\x67\x51\x66\x82\x24\xee\xfb\xe9\x1a\x3d\x28\x9e\x8d\x9b\x6a\x25\xa2\x72\xf5\xec\xdd\x3d\x05\xe9\x2f\xc6\x93\x5d\x0e\x8b\x85\x4c\x09\x5f\x97\x8a\x51\xe2\x25\xac\x52\x51\x85\xa3\x21\x90\x84\xd4\xa3\xd6\x3f\xca\x26\x7e\x28\xec\xdd\x42\x0e\x4b\x9f\xd3\xeb\x87\x5b\x54\x94\x53\x32\x31\x69\x40\x9a\xd9\x73\x07\x2a\xa7\x75\x76\xce\x32\xe1\xa9\xe8\xe8\x64\xed\x30\x1b\x18\x33\xdd\x99\x9d\xb5\x46\xc9\x81\x77\x6f\xab\x13\xf8\x26\x7d\x19\x0c\xdd\x99\xf2\x29\x0d\xf5\xcf\xd3\x70\xb9\xa8\xbc\x82\xdd\xae\x00\x7e\x96\x5a\xad\x84\xd1\xc3\x15\xc9\xd9\x97\x41\xb4\xcb\x74\x11\x7c\xa3\x90\xba\xc7\x5a\x26\x70\x7f\x37\x32\xe0\xbf\xaa\x06\x8c\x49\x11\x3c\x85\xea\xb9\xa6\x6c\x43\x50\x50\x87\xeb\xc3\x8e\x57\x9b\xb5\x1f\x6a\x12\x06\x48\x3c\xec\xe8\x75\x2c\xf3\xf8\x5b\xa5\x42\xee\x5c\xc3\xb3\x5a\xf6\xf7\x6a\x00\x2d\xa8\xff\xe0\x0c\xdb\x19\x34\xae\xea\x34\x08\x06\x6f\xab\x74\x31\xc8\x65\xf2\x68\x51\x3f\xd8\xd1\x53\xbd\x34\x3e\x43\x20\x60\x14\x01\x8e\x62\x24\x5b\x59\x33\xf9\x6d\xe2\xda\x83\x24\x1d\x62\x9f\xe3\x80\x63\xcf\x92\x6f\x3c\x57\x5c\x20\xca\x05\x41\x05\xb3\xd6\x82\xe7\x3c\xd2\x3f\xd3\xc2\x23\x81\x1f\x4d\x38\xe3\x27\x24\x48\x1d\xcb\xa4\xfa\x6e\xdb\xc6\xca\x46\xe8\x1c\xd3\x74\x35\x30\xa4\xc2\x57\xe3\xcc\xdb\x28\xcc\x73\xdb\xc8\x66\x79\x80\x9d\xd0\xdf\x35\xd5\x71\xbf\x3a\x4a\x22\x94\xf2\x01\x0a\x61\xb2\x32\xa6\x0f\xf5\x1c\x5a\x64\x13\xc9\x0f\xe1\x15\x75\x87\x70\x18\x67\x79\x5a\x04\xec\xb0\x56\x3f\x29\x76\xa7\x9a\x0e\xc9\x8d\x09\xb5\x6f\x96\xa7\x7e\x6e\x86\xa1\xa9\xa9\x08\x6e\x7a\x0e\xc9\xa2\x55\xc2\xc3\xbe\xf1\x23\x36\x83\x16\xcb\x30\x3f\xcf\x69\xaf\x3b\x34\x68\xa8\x2b\x9d\x2c\x9f\xb2\xeb\x72\xd5\xac\x99\x74\xe4\x9b\x22\x63\x19\x18\xbc\xf6\x0f\x74\x11\xec\x07\x36\xff\xd0\x0f\xcd\x2e\xe7\x8f\x9e\x28\x15\xcb\x21\x58\x17\x45\xc0\x82\x56\x33\x1b\x45\x5a\x8e\x08\x3b\x4e\xda\x3a\xea\x8a\x49\x2d\x2d\x08\x97\x81\x30\xec\x52\x13\xda\x8e\x34\x5a\x9a\xe9\x8e\xf8\x11\x45\x26\x8e\x5c\x3d\xd1\x8f\x6b\xa1\x00\x59\x0d\x63\xa2\xbc\xac\xe6\xc2\x86\x21\x2e\x24\xb1\xb6\xad\xf2\xb5\x0b\xcb\xae\xce\xae\x27\x8d\x9d\xb8\xa1\x5f\x74\xae\x15\x71\x98\x4f\xa9\x24\x38\x18\x94\xb1\xc5\xce\xaa\x7a\xfa\xbd\xc6\x37\xec\x5b\xe8\x0e\xc3\xf1\x38\x0c\x0e\xb1\x77\x6c\xf9\x0f\xad\x1c\xd6\x66\xa9\x74\x16\x8a\x71\x11\xf9\x16\x49\x0e\x9c\xea\x3b\x30\x36\x7c\xa3\xba\xef\xc3\x34\x0d\x73\xae\x88\x2e\x49\x4f\x03\x4e\x09\xbe\x6e\xe4\x56\x96\x66\xba\x99\x1f\x0f\xab\xa3\xbe\xe3\xd8\x6e\xcf\xd5\xb8\x77\x65\x5d\xfa\xf9\x38\xc9\x26\x23\x93\x9a\x69\x87\x46\x04\x5a\x0a\x55\x02\xb4\x32\x48\xef\x3b\x2d\x12\xd8\x80\x5b\xa5\xf3\xc2\x5f\x4e\xac\x2e\x35\x8e\xa1\xab\x38\x11\xf8\xa6\xfc\x8a\x22\x86\x71\xb0\x35\x94\x2e\x45\x25\x5c\x49\x68\x6c\xb6\x52\xd6\x85\x01\xcc\x19\xca\x54\x97\x55\x85\xe9\xad\x52\x05\x9a\xe7\x6c\x4a\x66\x60\x4c\xe4\x74\x3b\x95\x00\xa3\x6b\xeb\x7c\xd4\xd6\xcf\x83\x43\xfe\x10\x6c\x67\x2f\x72\x36\xe8\x0f\xb1\x25\x80\xee\xa1\xf6\x0e\x4a\xd5\xd8\xee\xa3\xf3\xf6\x54\xf7\xfb\xd5\x00\xd8\xc8\x5e\x70\x06\xae\x39\xef\xac\xe7\x32\x1f\xa6\x98\x8c\x92\x34\x64\x1a\x06\xb8\xe4\x00\xe9\x49\x23\x8b\x63\xc3\xb9\x6d\x71\x50\xcb\x69\x11\x73\x4f\x94\x62\x57\xdc\x6f\x97\x57\xc7\x32\x80\xdd\x57\x90\xc7\x20\x89\xb3\x24\x72\xf5\x74\x04\xed\x9f\x78\x4a\x26\xed\x13\x25\x60\x6e\xf9\x88\x14\x81\xbc\xe7\x50\xa1\xcd\x86\xa3\x7d\x0b\xdd\x6c\xe2\xc7\x61\x36\xea\xb8\xb5\x7e\x43\xe7\x12\x6f\xa8\x4e\x80\xca\x06\xae\x2e\x9b\x34\x5d\xeb\x28\x5e\xf4\x5b\xec\x0a\xf3\x9d\x72\x57\x27\x26\x1d\x98\x00\x51\x33\x3c\xd4\x4b\x98\x68\xbe\x69\xe0\x64\xe7\xe7\xbb\xa6\x5f\x00\x3f\x50\x39\x63\x96\x93\x99\xf9\x31\x25\xa6\x68\xc9\x9a\x99\xd8\x8c\x19\x3c\x86\x6d\x7e\x44\x6d\xf9\x23\x2d\x74\x92\x8b\xdd\xe5\xa2\x3a\x6e\x3a\xca\x16\x7b\x0e\x44\x7d\x52\xd5\x95\x08\xff\x1e\x66\x41\xb2\x57\xf5\x4b\x5c\x57\x9d\x90\x7f\x56\xd6\x6a\x32\xd5\x02\x45\x64\x74\x9d\x96\x9b\xc5\x26\xb9\xea\x60\xa7\x47\x06\x53\x30\x41\x2e\x21\x73\xb8\x11\x5c\x2e\xcd\x74\x27\x49\x14\x85\xb1\x9f\x03\x31\x8f\x84\xe8\xc7\xb0\xeb\x4c\x7c\x82\x5d\x21\xb4\x71\x1a\xf0\xd7\xf8\xbe\x6f\xcc\x91\x91\x5d\x1d\x99\x68\x4c\x8b\x0a\x8f\xf7\x5d\x05\xa3\xfa\x6e\x6b\xe2\x29\x2f\xd2\x98\xea\xd4\x78\xd1\x2b\x78\x00\x9c\xb2\x3f\xa1\x11\x80\x0b\x7c\xa1\x4d\xf9\xbf\x6f\xa2\x70\xd9\x28\x72\x7c\xec\xe0\x0d\xd5\x7e\xbd\x51\x7e\xa5\xc6\xc5\x99\x9a\x91\x89\xb3\xea\xef\xa7\x9c\xb2\x3e\x73\x29\xf2\x4d\x23\xe5\xba\x6f\xa1\x1b\x87\xc1\xc8\x90\x8b\x0b\xf9\x29\xbc\x12\xd8\x01\xa4\x70\xea\xe2\xd0\xb5\x00\xb4\x8d\x5b\x17\x15\xfc\x8f\xb9\x5e\xe1\x33\x5c\xab\x85\xdb\xd9\x04\x5a\xe8\xe2\xc8\xd2\x18\x88\xf7\xda\x92\x71\xc9\x12\x1f\xc5\x7d\xa4\x79\x50\x1a\xb4\x56\x7a\x69\xc6\xd6\xa1\x1f\xd7\xfc\xd0\x31\xd3\xb5\x58\xe6\x61\x20\xc0\xf9\xba\x8d\x47\xb4\x3a\x5e\x31\x58\x1d\xcb\xc3\x87\xc1\xe5\x6b\xe5\x9d\xc4\x7e\x36\x2a\x7c\x8c\xaa\x50\x63\x2a\xfd\xea\xf3\xde\x76\x36\x62\x4a\xc8\x4f\x92\x8c\xda\xcc\xe4\xc1\x90\xe4\xff\x4c\x51\xc9\xd5\x68\xfa\x8d\x9f\x67\xd3\x55\x54\x20\xe0\x76\xe7\xfe\xbf\xa7\x4e\xbf\x2d\x8d\x13\xbb\xa6\x12\x04\xe1\x78\x42\xab\x5d\x64\x2c\x69\xeb\x49\xe4\x58\x7d\x17\xd2\xb9\xd0\xc8\x13\x89\x8f\x56\x46\x91\x74\x0c\x75\x4c\xd5\xdb\x6c\xbb\x5c\x1a\x35\x53\x5a\xaa\x94\xca\x09\xe3\xe1\x94\x2e\x67\x77\x2c\xb5\xc0\x89\x52\x85\xc4\x5b\x8d\xe3\x7b\x7e\xbe\xeb\x47\x43\x93\x0a\x40\x55\x91\x46\x8a\xcd\xfc\xdc\x7b\x62\xbb\x2e\x73\x77\x7e\xfe\xe7\x3b\x4f\x3f\xcd\x01\xc5\x09\xc4\x20\x48\xda\xff\x05\x10\x21\x00\xe6\x1f\x07\xdc\x08\x6f\xcf\x9d\x8d\x36\xcd\xf0\xcd\xaf\xdb\x8a\x3d\x4d\x28\x52\xee\x5b\x9e\xeb\x88\xda\x82\x71\x40\x76\xe7\x1d\xca\xc5\xc3\x6a\xa0\x5e\x8a\x6c\xf1\xf7\xc9\x7f\xc4\xf2\xbf\x44\xb5\x45\x45\x2b\xb1\xe0\x40\x3b\x8b\xcf\xef\xe7\xda\xf0\x77\x15\x40\xef\x7a\xa9\xa8\x13\xdf\x57\xb2\x2d\xef\x93\xf7\x29\x39\xf9\xca\x32\xe2\xc4\xbb\xa2\x93\x49\x7b\x7a\x55\x6c\xc8\xb2\x57\x48\xdc\xc3\x79\xb9\xe7\x75\xbe\x21\xab\xe9\xcf\xf9\xcc\x81\xbb\x75\x0b\xf3\x21\x04\x93\x5a\xa9\x29\xf7\x23\xae\x50\x58\xce\xe9\xea\x4f\x11\x33\xdf\x50\x41\xf8\x0d\xc5\xef\xf2\xae\x66\x0c\x7b\xd7\x53\x2d\xc8\x47\xda\x5c\xdb\x7c\x35\xcc\x03\xd0\x3d\xb5\x91\xb9\xb7\x15\xb7\x5e\x98\x3b\x00\x57\xc3\x2a\x4d\x39\xd5\xa9\xa6\xca\xf5\xd2\x62\x37\xf7\xe3\x61\x64\x3a\xd5\x08\x28\x2d\x5a\x27\x39\xeb\x0e\xdd\xe5\x22\x0f\x46\x42\x67\x20\xfc\x4e\x34\xe7\x42\xfc\xd4\xa6\x97\x94\x15\xe9\x0a\x5b\xda\xc5\x56\x94\x85\xee\x06\xf1\xe3\x43\x4f\xa8\x76\xa6\x3f\xad\xa6\x78\x6b\x8a\x02\x65\xb8\x43\xbc\xc8\x50\xe2\x3d\x8c\x35\x8a\xb5\xf1\xb6\xe7\x2a\x44\x9f\xd7\xd6\xab\x0b\x4c\xae\xeb\xd6\xc2\x97\xf4\x7b\x9e\xa5\x34\x03\xf6\x1d\x67\x16\x81\x7c\xbc\x84\x1d\x02\x5b\xf1\x6f\x55\x8f\xf5\x14\x77\xcb\x23\xba\xbe\x5c\xaa\x41\x3f\xab\x00\x02\xef\xe2\xfc\x44\xcc\x7e\xd1\xd3\x14\xf8\x6d\xda\xf0\xd5\x49\x68\xbd\x45\xce\x6c\x29\x5b\xbb\xa9\x3a\xc2\x93\x22\xe7\x52\x1d\xec\x2d\xb3\xa8\xe1\xf7\x84\x52\x4d\xc1\x78\xc3\x3c\xcf\x96\x8b\x74\x38\xc2\x54\x60\xdf\x1d\x47\xc4\xcc\x37\x0a\xfd\x5d\x1d\x93\x91\x1f\xc6\x79\xa6\x32\x57\xc7\x54\xe6\xea\x98\x82\xa2\x4e\x92\x7e\x58\x8c\xa7\x1c\xf9\xd6\x4f\x4b\x07\x66\x38\x56\xba\x56\xec\xf3\x1a\x41\x96\x24\x79\x46\x69\x35\x14\x95\xbe\x4f\x13\x88\x63\x92\x73\xb6\x52\x6d\x7f\x44\x25\x5f\xfd\x49\xc7\xf9\x52\x17\x54\xbc\xdb\x26\x0a\xd6\x0d\xfc\x54\xb8\xef\x1c\x44\xd1\xc5\xcb\xe7\x55\xb6\x22\xad\x8c\x33\x27\x09\x44\xb5\x85\x5b\xb7\xf9\x66\x5d\xa9\xf0\x92\xd2\xc2\x94\x73\x6d\x7f\xa2\x58\x08\x6f\x97\xae\x8d\xe4\x7a\x5b\x5b\xfd\xfe\x6e\xdf\x8c\xfd\x98\x91\x33\x92\x66\x50\x29\x07\xdb\x92\x50\xf9\x53\xcb\xa9\xf1\xfb\x39\x17\xc3\xe1\xcb\xa1\x6c\xc9\xd7\x8a\x5c\x73\xd5\xf8\x51\x3e\x0a\xd9\xf7\x64\x55\x61\xd8\x1c\x91\x18\xde\x56\xf7\x78\xa6\x3b\x3b\xfb\x20\x81\xea\x58\x37\x0f\x49\x0d\x18\xc3\x77\x69\x1f\x21\x90\x06\x1d\x15\xe6\x1e\x18\x7b\x39\xa6\x69\x05\x09\x97\x95\x6a\xc1\x40\xc1\x00\xfb\x6b\xcf\xba\x6a\x5c\x3f\x8e\x7d\x8b\x57\x3d\xe6\x3d\xae\x5a\x0e\x72\x93\x2e\xfb\xf1\xa1\x8e\xa2\x68\xaa\xc3\xcf\xbe\xe2\xa0\x64\xf1\x8a\xc9\xf2\x70\x48\x3e\x3d\xd0\x25\x12\x97\x2a\xc8\x1f\x78\x74\xe0\x11\x80\xa7\x03\x0e\xde\xcd\x9a\xba\x8e\xe7\xb8\x5d\xf3\xd4\x8f\xb3\x41\x41\x02\x99\x2a\x0a\xff\x8e\xe2\xd3\xf8\x4e\x23\xbc\x70\x74\xdf\xfe\x88\x69\x11\x71\x72\x9e\xd6\xbc\x83\xa7\x41\x3f\xc2\x39\x16\x2a\xfd\x0d\x42\xce\xe7\x73\xd1\x14\x66\x44\x2a\xa8\x0d\xce\xd0\xd9\x6e\x91\x99\xdd\x35\xd6\xde\x6a\xa4\x90\x62\xef\x10\x97\xb0\x6e\x6e\x15\xb2\x69\x95\x75\x3c\xa1\xc8\xae\x37\x6b\xf9\xd8\x61\x01\x86\x6a\xe6\x2e\xa3\xf7\x45\x90\xf3\x43\x85\x0e\xe2\xae\x14\xa4\x86\x1e\x66\x1b\x08\x53\x7e\x9f\x96\x3d\x8c\xeb\x39\xc5\x8c\xdc\x0f\x87\xd8\xe7\x38\xd0\x91\xa3\x12\x92\x43\xfa\x36\x98\x1f\x27\x7c\xbc\x9a\xa4\x87\x7c\x82\x41\x4c\x39\xa0\x16\xda\xa4\xf0\xaa\xe7\x55\x9b\xcb\xdb\x36\x54\x5f\x4e\xc0\x15\x83\xba\x02\xf6\x1f\x28\x32\x61\xa4\xcf\xaa\x0a\xd6\xd9\x36\x7a\xc5\xd4\x50\x57\x5e\x35\xa4\xc8\x64\x9c\x52\xb0\xe9\x53\x0d\xe7\xf8\x99\xae\x59\xf1\xa3\x82\x83\xe8\xf9\x79\x1e\x15\x64\x63\xf9\xba\x61\xe4\xe7\x0e\x74\xf3\x34\xe9\xf7\x0d\x3e\x22\xf2\x1f\xce\x21\x3f\xa1\xb0\x10\x93\x34\xc9\x4d\x50\xb9\xbb\x4b\x33\x76\xad\x56\x93\x21\x1a\x3a\x4a\x7d\x9a\x49\x2b\xf8\x5f\x6c\xda\x2b\x1c\x4f\x8a\x28\x93\x8e\x49\x61\xda\x53\x44\x87\x27\x1b\x9e\xea\xec\x6c\x37\x48\x92\xb4\x4f\x81\x21\x8d\x06\x43\x08\x10\x93\x08\x9e\xe0\x2b\x0e\x8a\x94\xfa\x20\x8a\xf0\xa3\x68\x4d\x67\x3c\xb9\x33\x92\x6f\x94\xb0\x75\x9c\x85\x7d\x93\x9a\xfe\xee\x29\x2b\x75\xf8\xdf\x77\x81\x9f\xe0\x73\xd3\xb5\xe5\xfd\xd5\xc7\x09\x8f\xb4\xc5\x45\x47\x61\x2a\xa3\x6f\x46\x91\xe0\x6e\x83\x9a\xbc\xf2\x3c\x8a\x28\x0f\xc7\x7e\xce\xcc\x48\x8b\x35\xc4\xac\x14\x3e\x5c\x19\x65\x50\xc4\x7d\x52\x1e\x66\x30\x89\x8a\xea\xee\xe0\x2d\x70\x64\x5c\x02\x42\xdf\x62\x84\xaa\xe7\x97\xec\x24\x35\x49\x7c\xe0\x39\x95\xa2\xd3\xe4\x97\xb2\x74\x9d\xf2\x0a\x00\x1d\x65\xaa\x92\xb2\xa6\xd6\xe3\x72\x2e\xc3\xd4\x8f\x8b\xc8\x4f\x35\xbe\xb2\xde\x0a\xd7\x42\x46\xd1\x9d\xa4\x66\x1c\x16\x42\x75\xa8\x88\x8b\x85\xda\xee\x78\x0b\x18\xee\xc5\xee\xc8\x8f\x06\xbb\x2a\x3f\xcb\xd1\x62\xce\x58\x60\x51\xc7\xea\x00\x6c\x30\x95\x25\x12\xd3\x68\x6c\x83\x25\xba\x59\xd7\x16\xf2\x81\xc4\xc5\xfc\x9c\x54\x04\x49\x27\xbf\x90\x46\x7e\x94\x50\xe3\x5f\xc7\x36\xad\xbd\xa3\x6d\xf4\x3b\xb6\x14\x9c\x8d\x8c\xcf\x15\xde\x9a\x2a\x18\xdf\x78\x4f\xca\xd9\x99\x0e\xfd\x38\x7c\x95\x9b\x60\x15\x23\xa5\x00\x4e\xf8\xce\xab\x25\x01\x75\xf3\x83\x9c\xc2\xab\x61\x3e\x1a\x25\x51\x9f\x54\x75\x2b\xdb\x22\x75\x5f\x97\x05\x80\xfc\x0c\x3c\xfe\x1f\x2a\x86\xa4\xcf\x89\x57\x5b\x20\xf2\x6d\x04\xad\xc1\x28\x34\x03\x7a\x6b\x49\xbf\x74\x2c\x43\xcb\xc7\x0d\x61\xe5\x83\x33\x73\xdd\x22\x46\xf6\x2e\xec\xfb\x22\xc5\x29\x94\xd6\xb4\x50\x05\x0c\xe9\xfc\x82\xd4\x64\x79\x1a\x06\x79\xa6\xdb\x85\x68\x5a\xa5\x75\xe8\x8b\x00\xb8\x91\x49\x62\x3f\xd5\x90\xd3\x4d\xa5\x57\xb0\xa9\x85\x76\x6a\xe9\x45\x7f\xec\xa7\x7e\xdf\xa4\xa1\xe9\x54\xab\x4a\x20\xf7\x35\x30\xfe\x63\xf5\xf6\x36\x93\xed\xad\xc6\x4d\xa0\x1f\xb4\xb3\x44\x4a\x88\x4c\x1b\x42\x80\xc3\x4a\x78\xe3\x37\x4a\x17\x1a\x1c\x46\xcb\x1b\x72\xc0\xa0\x0a\x91\x40\x9e\x46\x85\xbf\x4a\x51\xca\x4c\x92\x49\xb5\xbf\xf6\xa8\xfd\x77\x8f\x3e\x87\xa3\xee\xa8\x76\xa5\x2f\xc0\xba\x0a\x4d\xa5\x4b\x4d\x1c\xa5\xc3\x91\xff\xbf\x86\xbd\x6f\x34\x7a\x71\xf7\x2d\x54\x06\x3d\x30\x99\xa3\x95\x40\xe8\x8c\x76\x6a\xdb\xd2\x67\xa9\x5d\x3e\x57\x14\x0a\xc3\xd0\x8f\xf3\x69\xc5\xe7\xf2\x79\xa9\x0c\x2d\x08\x6a\x25\xfa\x51\x46\xf7\xbe\xeb\x6e\x2d\xf2\x51\x92\x12\xf7\x07\xca\xbb\x68\x59\x62\xf6\x3d\x61\x24\x52\x90\xf9\x2d\x15\xef\xfa\x51\xe4\xaf\xa9\xa4\xfc\x31\x9d\x94\x3f\xd6\xc2\x76\xfd\x62\x37\x1b\x25\x38\x4a\xd5\x84\x0a\x4e\xa7\x79\x2c\xce\xce\x76\xcd\xcb\x04\x6f\x00\xe6\x04\xc9\x8a\x3b\xf5\x5e\xa4\xea\x0b\x04\xd3\xba\xfd\x27\x9f\xe9\x66\x63\x63\x3b\x82\x45\x66\x5e\xa5\x55\xcf\xd9\xaa\x44\x36\xf6\xa3\x48\xf0\x34\xad\xd2\xbc\x4f\x84\xba\x92\x37\x36\xb1\x90\x20\xc8\x4a\xef\xd4\x85\xbb\x05\x39\x7b\x51\x35\x48\xfb\xd1\x84\xeb\x74\x2c\x29\xe4\xa9\x46\xb1\x51\xe9\xb0\x52\x67\xac\x03\x63\xa2\xe4\x5b\x85\xc0\x24\xdb\x54\x45\x5a\x40\xd0\x24\x67\xc2\x6f\xcd\x62\x78\x8a\x3d\xea\x7c\x3d\xbc\xf6\x63\x40\x8f\x24\xdd\x57\x2d\x5d\x49\x03\xd6\xb2\xd2\xc3\xea\x9d\x33\xac\x51\xab\xd8\x66\xdf\x1f\xe9\x3f\x1c\xc4\xeb\xaa\x8a\x9b\x1a\x7f\xe8\xc7\xd3\x1d\xcb\xe9\xfd\x99\x4a\x2e\xde\x52\x08\x0f\x8e\xef\x30\x97\x5b\x2a\xc7\x90\x8d\x93\x9c\x72\x0c\xd5\x81\x6d\xb3\xdb\x8b\x4b\xf6\xc6\x73\x01\x70\x10\xc6\x41\x18\xc7\x7e\x1e\x4e\x3b\x0e\xe7\x53\x4a\x31\xfb\xb8\x62\x29\x00\xd2\x5a\x80\x0b\xb6\xf6\x1a\x84\x26\xce\xc3\x2c\x67\x3c\x8e\x10\x26\xd2\x68\x0a\x3d\xb8\xea\x21\xbe\xe3\xd5\x7a\x1e\xc3\xbc\xb0\xc5\x3a\xbc\x24\x57\x95\xf9\xc6\x53\xfc\xe4\xa3\xd4\xac\xf6\x6b\x15\xde\x52\xd9\x54\x05\xa1\xf2\xc7\x49\x11\xe7\xd9\x5e\xca\x81\xc1\x5d\x60\x3d\x07\x54\xb1\x6e\xd2\xd1\x8c\x34\x16\x53\x2b\xf1\x5f\x61\x50\xad\x14\x8e\xad\xef\xdd\x54\x88\xf3\x75\x4f\x29\x4e\x34\x99\x1e\x9e\xe9\x86\x39\x94\xfa\x16\x2d\x74\xd2\x61\xdd\x1d\x72\x32\x35\x51\x11\xe4\x7e\x9c\xef\x71\x78\x90\x2b\x9a\x5c\xe2\x7a\xa9\xf8\x93\x81\xcb\xb7\xd0\x67\x87\xfb\xfd\x5c\xf1\xfc\xe1\x5c\xa1\x14\xcc\xe5\xaf\xf6\x9c\x0f\x0c\xe6\x3b\x93\xee\x52\x28\x8f\x52\x11\xc9\x7d\xca\xa7\xb9\xb0\xfe\x37\x4a\xe3\xc8\xfe\x4d\x37\x70\xb7\x72\xc4\xe5\xe9\x1a\xe8\x18\xa4\xc5\xcb\xad\x20\x94\xbb\x59\x4a\x44\x05\x89\x7e\xba\x1c\xe6\xa9\x3f\x34\x29\xd2\x23\x4a\x11\x7f\xd1\x2a\xe2\x6f\xf7\x73\xf6\x2d\x74\x73\x13\x8c\x88\xa8\x3b\x42\x25\x8d\xe5\x72\x3d\xd5\x37\x7c\x41\xa1\x6a\xb2\xa2\xf2\xe6\x80\xb5\x10\x55\x2c\x85\x3e\x3c\xd3\x46\x48\x13\x66\x59\x21\x46\x14\x4b\x01\x3c\x26\xf2\x42\xaa\xd3\xf1\xc7\x8a\xd4\x24\x4a\x56\x44\xcc\x91\x1b\xc8\x4a\xe5\x4b\x7c\xa2\xaa\x94\x7e\x9e\xb3\x44\x84\x8d\xd1\xdf\xc3\x64\xf3\x4d\x83\x64\xb3\x0a\x79\xc2\x8e\xcb\xf4\x9c\xab\x63\x89\xdb\x30\x37\x03\x3f\x8c\x64\x67\x21\x58\xbd\xaf\xdb\x64\xef\xb7\x29\x8a\xe5\x23\x90\xa8\x22\x79\x86\x9c\xe4\x5d\xd5\x05\x72\xd7\x95\xb6\xa3\x3c\x19\x9a\xca\xd0\xec\x21\x97\xfd\x22\xad\x4f\x4a\x4e\xdc\xfe\xb9\x9e\x53\xb2\x7a\x4f\xeb\xeb\x40\xb1\x1b\x31\xe7\x56\x59\x23\xb7\xa1\x94\x09\x6c\xf4\x09\x9d\xa1\x9b\x18\x86\x2d\x3f\x4c\xe3\xa3\x45\x01\x05\x79\x43\x2f\x85\x7c\xf0\x3d\xa4\xbd\x11\x6d\x6e\x52\x93\x1f\x5f\x2b\xdb\x75\x0b\xb6\x09\xe9\x40\xce\x74\x88\x4c\x73\x35\x21\x92\x69\x50\xaa\x6a\x3b\x5d\xbb\xfa\x83\xbb\x7a\x6a\x61\xdc\x6b\xab\x08\xf6\xc3\x8c\x70\x3b\x35\x8a\x9d\xe3\x14\xd3\xf0\x75\x29\x38\x91\x2c\xec\x2b\x45\xc2\x4f\x4b\x45\x98\xff\x69\x1b\xb3\xde\x80\xda\x0f\x0e\xce\x70\x8c\xfa\x09\x99\x6a\xbe\x6e\x13\x01\x5c\x31\x79\x42\x8e\xa7\x28\x53\x75\x2c\x2b\x2a\x43\xf8\x64\x7c\xb6\x25\xb5\x5e\x58\xec\x3e\x83\xd6\x18\x40\x3b\x20\xc8\x8b\xc8\x66\xdd\xab\x35\x95\xd0\x4b\xc2\x55\x87\x1c\x9f\x84\x97\x8e\xbd\x1c\x09\x0b\x0b\x06\x72\xac\x86\xb7\x70\xa2\x4b\x3f\x1f\xcd\x31\x2a\x98\x8f\x51\x7c\x87\x05\x7e\x5d\xf5\xec\x0c\x92\xb4\x4f\x49\x16\x2c\xa9\x1b\x68\x0b\x15\xc1\x05\xfa\x02\xdb\xcb\x6f\x99\x35\x38\x47\x8b\xba\xd2\x54\x4f\x79\x68\xcd\x2a\x65\xe5\x78\xad\x86\x71\x9f\x60\xe2\x62\xb4\xab\x97\x67\xc8\x0e\xd6\xad\x25\xef\xb5\x89\xe5\x26\xf2\xf1\xc0\xf3\xdd\x60\x44\xf2\x4e\xae\xd1\x60\x4b\x29\xd6\x6d\x29\x6e\xe6\x41\x98\x8d\xa6\x14\xfb\xc4\x67\x65\x33\x23\x2d\x2a\x4a\x35\x5e\xed\x68\xb2\xdb\xe1\x45\xd9\x4f\x17\xa0\x87\x6a\xa4\xfb\x08\x43\x23\x78\x10\xed\xff\xab\x56\xa2\x7f\x56\xfb\xee\x84\x99\xc9\xb0\x76\x2e\xc1\xc4\xf2\x4d\x0b\x9c\x6c\x91\x4d\xce\xb4\xe2\x94\x94\x14\xbf\x06\xf3\x23\xd4\xdf\xd4\x6c\x20\x47\x1b\xa7\x68\xf5\x75\xfd\xb0\xa3\x97\x4d\x15\xd9\x48\x72\xd7\x21\x61\xcd\x2b\x18\xe3\x2f\xe1\x87\x60\x96\xef\x12\x86\x91\x85\xa8\xc9\x76\x23\x36\xb9\x84\xe4\xa0\x40\xdd\x6c\x48\xfd\xab\x4f\xae\x93\x0a\x85\x10\x61\xd2\x58\x61\x5b\x71\xe7\x8a\x15\x8f\xb6\x44\x73\xac\xd0\x8e\x65\x74\xbd\x74\x9b\xf2\xb0\x92\xc5\x7a\x68\xdd\xe1\x4d\xf8\x8c\x22\x8b\x92\xfc\xb5\x9e\xab\xa6\x06\x45\xf6\x80\x6b\x7a\xfb\x12\x0f\x99\xa2\x42\x5b\x14\xc9\x7b\x8c\x19\xd6\xf4\x55\x4f\x75\x74\xde\x52\xad\xe8\x9c\x6b\xc1\xc6\x06\x46\x5c\xa5\xfc\xb6\x76\xaf\x37\x3d\x96\x41\xc4\x12\x8b\xc2\x0e\xa7\x28\x23\xff\xc7\xd2\xd9\x8c\x1b\x34\x96\x48\x6f\x7e\xde\xea\x4a\x27\x49\xca\x07\x33\x72\x0e\x40\xea\xf2\x75\x23\xe2\xa0\x7a\x5b\xd0\x97\xe6\x36\xf9\x41\xfd\xeb\xb5\x02\xff\xc4\xa4\x4f\x38\xf1\x9a\x9b\x68\x65\x87\xc7\x79\xb5\x54\x74\x41\x9b\x18\x1b\x1c\x2e\x87\x15\x3d\xd5\x4f\x60\x08\x80\x85\xb8\xe8\x29\x85\x0c\x4c\x0e\x3c\xa0\x3f\x28\x5d\xce\x94\x44\x27\x64\x4b\xc1\x3f\xdb\x62\xa9\x6e\x78\xb7\x1f\x92\xcd\xb3\x8a\xdc\x07\x45\xfd\xf7\xc3\x52\x53\x54\x40\xa3\xdd\xf5\xe0\xcf\xcf\xef\xb7\x6a\x74\x64\x66\xad\x07\x67\x25\xfc\x4e\xb5\xe4\x3a\x16\xa0\xdd\x44\xd4\xc7\x08\x4f\x90\x35\x61\xca\x66\x8a\x46\x98\x0c\x60\x9b\x28\x70\x02\x61\x1f\x4b\x63\xe0\x18\xc3\x3a\xa8\xd0\xa0\xbc\x04\x4e\x6d\xf8\x9c\x5b\x34\x0c\x58\xed\x17\xbd\x6a\xdc\x81\xc1\x3d\xa9\x24\xd0\xa1\x98\x81\x50\xf3\x56\x5d\xee\x3e\x5e\xfb\xff\xd1\x4f\x5a\xc9\x59\x2b\xd3\xb7\x89\x63\x1a\xdf\x70\x8a\xc6\x0c\x89\xb5\x8b\x58\xba\x58\xe0\xac\xb4\x25\xdf\x4d\x51\x17\x39\xa5\xab\x8f\x11\xdf\x09\x26\xf1\x32\x92\x89\x48\x8c\xbf\xcb\x63\x8e\xe0\x61\xcf\x3a\x32\x6d\x8c\x28\x53\xbd\x4e\x3b\x88\x5c\x1d\xbb\x9d\xf9\x36\x30\x81\x3f\x55\xf8\xd2\x8f\x31\x4b\xfc\xcd\x98\x72\xc4\x0c\x38\x0c\x31\x97\x2c\xfe\x89\x94\xe7\x27\xde\xd4\x0b\x4b\x33\x9a\xc6\xe7\x39\x8b\x72\xaa\xd6\x1a\x6b\xcd\xd2\x8a\xc1\x19\xf0\x7d\x2c\x5b\xa4\x37\xef\xd6\x42\x4d\xd3\x37\x24\x05\x80\x03\xe1\x6c\xe9\xa8\xf4\x70\xec\x00\x0e\x80\x86\x49\x7c\x1e\x89\x14\xec\x61\x2c\x6e\x04\x29\xef\xa8\x22\x66\xe0\x47\xe1\x20\x49\xe3\xd0\xdf\xad\x74\xc7\x59\x1d\x1b\x29\x8c\x9b\x9a\x72\xe3\xae\xa2\x53\x13\x39\x02\xdb\x55\x6b\xb5\xca\x1c\xfe\x3d\x48\xa2\x24\x0e\xab\x58\xdf\x32\x9a\xec\xed\x39\x88\xe8\xa3\xeb\xca\x1f\xdc\x50\x9c\xc6\xcb\x45\x1a\x73\x21\x07\xc3\xf7\x1d\x95\xd1\xf9\x8e\x75\x98\x8a\xcc\x47\x68\x05\x13\x00\x09\x5f\xbe\x6e\x64\x8b\x96\x66\x2a\x8b\x31\x89\xcc\x2b\xd6\xa7\x45\x54\x73\x43\x29\x94\x69\x8a\xda\x7c\x94\x26\xab\xd3\x0a\x0e\xbd\xa1\x4a\xdf\x98\x01\x84\x26\x53\x24\x54\x84\x4a\xed\x69\x9b\xeb\x88\xc2\x7c\x94\xe4\x69\x38\xc9\x25\x35\xd2\xa6\xc7\xd7\x6d\x9a\x4d\x8b\xf9\x0a\xe3\x21\x9b\x4f\x6c\x08\xd0\x13\xf2\x75\x6d\x47\x8f\x27\xa0\x31\x87\xb3\x08\xd9\x5f\x20\x36\x5e\x43\x7c\x2a\x6d\x46\x6e\x88\x27\x26\xcd\x92\x78\xda\xcd\x1a\x08\x13\xf9\xba\xec\xfc\xa3\x7f\x2c\x35\x25\x32\xf3\x52\x5f\x72\x5f\xb0\x12\x9a\x38\xf6\x29\x55\x80\x85\xf5\x1a\x2d\x38\xbe\xf6\x14\xcc\xfe\x24\xf3\xf3\x08\x0d\x9f\x42\xb4\x87\x11\x25\x46\x90\x45\xc1\x13\x9f\xa2\xaf\xe1\x6b\xcd\x72\x94\xaf\x3d\x44\xef\x02\x2c\xc3\x7d\xec\x54\x84\x61\x8f\x60\x21\xa1\x56\x77\x4c\x47\x5a\xc7\xe9\xc8\xc3\xa6\xdf\x8d\x82\x08\x7b\x47\x4a\x4f\xf1\x2a\x0e\x02\xa4\x37\xef\x2b\x46\x73\x04\x32\x70\xfb\x41\xff\x86\x0d\xdc\xde\x9f\x8d\x0a\x6a\xf5\x42\x53\x5a\xae\x06\x6a\x3d\xb0\xfc\x5c\x26\xc5\x2b\x4c\x35\xbe\xe5\x1b\x73\x60\xb5\x0c\x27\x08\x69\x0f\xce\xd8\x9c\x96\xeb\xff\x3b\xd3\x86\xa5\x4b\x6d\xd7\xa3\xa8\xa2\x56\x1f\xe0\xeb\x9a\x25\x19\x16\x31\x56\x3f\x16\xf2\x4d\xc5\xbd\x74\xb3\x11\x63\xcf\x1d\xe8\x06\x49\xf5\x40\x7d\x13\x07\x08\x9c\x31\x96\x58\x63\x7c\x6d\xf3\x3f\x91\x19\xfa\x51\xf8\xaa\x4d\xc7\xc2\x12\xe1\x27\xe0\x24\x5f\xab\xd5\x41\x9d\x25\x72\xb1\x9d\x92\xc5\xff\x11\x66\x12\x4d\x19\x37\xe8\xd0\xb1\xd0\xaa\x6a\x25\x20\xaf\x7c\xb5\x74\x74\xd5\x3f\xa2\x6a\x1e\xff\x11\x6d\x57\xfe\xff\xaa\x5d\x2a\x27\xa1\x07\x36\x2f\x52\x34\x77\xfe\xfd\x31\xc5\xc3\x55\xc4\x79\xba\x96\x85\x7d\xa3\x40\x1b\x57\x14\x68\xe3\x4a\xe9\x28\x56\x06\x61\x4a\xac\xcb\xb6\x2d\xa9\x74\xed\x32\x97\x3d\x1c\x3e\x42\x02\x41\x19\x38\x29\x62\xb8\x93\xe8\xa7\x6d\x78\xc1\xd4\x10\x49\x45\x1d\x68\xcf\x30\x40\xbe\x51\xdd\x16\x41\xe2\xe7\x0c\xb9\xc0\xf7\x23\x29\xc9\xd7\xaa\x44\x90\x17\x26\xeb\xfb\x6b\x7b\x55\xa3\xcc\x0d\xc5\x90\xd3\x81\xa7\x23\xb4\x73\xaa\xc1\xeb\xcf\x55\x91\xea\x4f\xb0\x71\xa4\x1c\x4c\x3b\x92\x6f\x3c\xa5\x45\x72\xd2\xe6\xb9\x4c\x3c\x0c\x63\x63\x52\x71\xf2\x10\x76\x5c\xf3\x54\xa6\xed\x9a\x9a\xaa\x22\x8e\x4d\xca\x89\x94\x17\x6d\x46\x80\xfc\x05\xbe\xb1\x55\xac\x89\x1f\xa6\xb4\x61\xe0\xae\x7c\xa0\x5a\x20\x3f\x50\x28\xd2\x28\xcc\x1f\xec\x58\x8d\x8c\xf7\x54\x4f\xf8\x1f\x78\x2a\x5e\x3c\x55\xba\x9e\xf6\xdb\x70\xfa\x01\xdb\x38\x4d\xd6\x01\xee\xd1\xbf\x83\x83\x82\xc3\x61\x2f\x69\x68\xd5\x28\x8b\x01\x3b\xd8\xd2\xa7\xe9\xd5\xf2\x61\x3b\x03\xe3\x10\x62\x26\x38\x40\xb7\x14\xf2\x60\xba\xa7\x4e\xe3\x93\xdb\x99\x47\x16\x97\x16\xbb\x2f\xbd\xf4\xb0\x06\x4a\x56\x53\x0c\xa7\x9c\xf3\x19\xd2\x4b\xae\xba\xf6\x99\xdf\x06\xc9\xb7\x87\xf1\x0b\xf0\x70\x3f\xf6\xdc\x19\xb3\xb7\xe7\xca\x25\x7b\x20\x66\x86\x1f\x79\x60\xbd\x72\x21\x98\xbd\x81\x00\x7e\x78\xee\x8b\x94\xca\xc0\x72\x38\xea\x88\x4f\x89\x42\x19\xb1\x2e\x16\x17\xe0\x9f\x7c\xad\x15\x74\x9e\x0d\x9e\x9d\x52\xec\x6b\xd7\xe9\xe8\x11\x08\x71\xf5\x30\x30\x22\x3b\x7b\x8f\x5a\x23\xb3\x62\x52\x7f\x88\x16\x05\xec\x80\x4b\xaa\x35\xed\x3d\x4d\x9c\x79\xb2\xd9\x70\x3e\x57\x79\x3d\x36\x19\x26\x0e\x99\x52\x43\x3b\xa2\x64\x30\x27\xc5\x64\xc2\xaa\xb2\x88\xf8\x3f\xc2\xd4\xf2\x4d\xe3\xf8\x26\x30\x52\x90\xc4\x81\x89\xa9\x0d\x89\x7f\x45\xfa\xf5\xe8\x57\xf8\x46\x27\xb3\x69\x91\x43\x71\x58\xf4\xd1\xc9\x63\x10\x11\x75\x45\xa2\xb9\xa9\xfc\xed\xcf\x4b\xa7\x56\xf6\x39\xb9\x78\x48\x29\xa1\x4c\x6e\x2b\xb0\xb3\xb3\xf2\xff\xd5\x46\x08\x46\xa0\x8f\x95\xfa\x8f\x26\x18\xab\xb9\xee\x61\x94\xef\xa9\x7e\x92\x23\x75\xcf\x81\x71\x58\x5b\x02\x1b\xe3\x66\xa9\x3a\x86\x6e\x2a\x60\xdf\xbf\x87\x8d\xc0\x47\x38\x55\x89\x38\xf5\xca\x17\x96\xae\x27\xc5\x72\xc4\x0a\xe8\xf8\x0e\xa6\x17\xe4\x1b\x55\xc6\x1b\x25\x63\x93\x4d\xd5\x9e\xcf\x06\xa8\x1f\x6b\x21\x8c\xa3\xaa\xad\xb0\x6f\x06\x7e\x11\xe5\xd3\x0a\x63\xe2\x39\x42\xed\xab\xa5\x3b\x43\xae\x7a\x8a\x3a\xff\x8c\x6a\xe0\x98\xa4\x49\xbf\x08\xf2\x0c\x12\xdc\x42\xa1\x5f\x7d\xb0\xa6\x3f\x02\x87\xec\xbc\xa7\x41\xb0\xc7\x68\x08\x71\x7d\x03\x61\x05\x7f\xde\x53\xc7\x07\x67\xc6\x30\x71\xbf\x87\xc0\x40\x5e\x91\x46\x5a\xd2\xdb\xaa\x21\x67\x9d\xd6\x06\xf6\xce\x34\x10\x62\x92\xa4\x73\x35\xf0\x63\x08\x9e\x24\x17\xe6\x4e\x84\x20\x4a\x32\x13\xad\xed\x56\x01\x37\x3b\xff\xb6\xfc\x63\x65\x4b\x6e\xd2\xd9\x0a\x70\x21\x5c\x7f\x86\x33\xd5\xf2\x6c\x96\x32\x38\x18\x85\xaf\x26\x61\x5f\xc9\x30\x6d\x28\x19\xa6\x8d\xf2\x2b\xf2\x87\x45\x9a\x9a\x49\x1e\xe6\x50\xf2\x23\xf3\x01\xeb\xf5\x43\x7a\x35\xbe\x56\x85\xf1\xb1\x49\x83\x91\x1f\xf7\xc3\x8c\x9b\x0f\x24\xbe\x53\xbc\x6a\xe7\x1b\xd4\x60\x04\xa4\xcd\xfd\xe5\x65\xc9\xd1\x23\xb5\xc8\xcd\xfb\x7c\xd3\xc6\xa4\x63\xe2\x61\x11\x0d\xf0\xa9\xe7\x78\x27\x9f\xd5\xdb\xfa\xac\xb7\x1d\x61\x20\x6b\x3a\x5b\xcb\x72\x33\x5e\xad\x9c\x09\x85\x53\x3e\xef\x39\x21\xe7\xf3\x6d\x49\xdb\x89\xcf\x94\x38\xc2\x2f\x51\x8d\xa1\x70\x88\xb8\xc3\x64\x35\x8c\x49\x54\x4c\xf1\x4b\x88\xdc\xfc\x74\x4f\xc5\x48\xff\x9a\x26\xcb\x2a\x89\x55\xef\x2e\xac\x12\x0e\x56\x7a\x42\x8b\xe7\x4c\xaf\x3b\xd2\x71\x30\xdc\x08\x24\xc0\x19\x13\xd3\x37\x7b\xab\xef\xe5\x2c\xa2\xa7\x24\x58\x18\xfe\x8c\x99\x06\x2d\xba\xe0\xf4\xe9\x19\x11\x05\x33\x43\xa1\x08\xd7\xba\xec\x13\x32\x1a\x92\x31\x14\x3f\xd3\x8c\x97\xcd\xab\xaf\x46\x36\x90\x03\xa0\xfc\x77\x68\x4d\xf1\xb5\xf2\x2d\x53\x13\x98\x70\xc5\x5f\x8e\xcc\x74\xed\x57\xd4\x6e\xdb\xd1\x53\xba\x5f\x7f\x51\x3a\xe1\xd9\x0b\xd6\x75\x09\x22\xea\x42\xaa\xcb\xd2\xc0\xc9\x13\xe2\xa3\x27\x54\x22\xd2\x04\x05\x29\xb7\x3c\x4c\x5f\x6c\xb5\x6f\x2a\x6b\x21\x35\xca\xa9\x9a\x1c\xef\xec\x1c\x63\x82\xe0\x60\x22\xbf\x7b\xbb\x54\x75\xf4\xfb\x84\x7d\x61\x7a\xc0\xd2\x71\x37\xff\x31\x2a\xba\x48\x81\x7c\x44\x0f\xcf\x5b\x5d\xf5\x31\x93\xd0\xa6\xab\x95\x6e\x3f\xb8\x64\x95\x0a\x75\xff\x5a\x8d\xc9\x4b\xd5\xd3\xde\x53\xa8\xb3\x71\xb5\xfb\x42\x3f\xa2\x76\x79\xfc\xeb\x57\x7a\xd5\x73\x09\xf0\x5b\xb1\x82\x3b\x6a\xca\x67\xbe\x8c\x68\x0d\xd6\xa3\x95\x48\x70\x92\x98\x9c\x3b\x3c\xa5\xdc\x5c\x33\x44\x8f\xa9\xb8\x21\x8c\x2d\x5e\x55\xc8\x7d\x68\x96\xb1\x16\x6f\x28\x8a\xc0\x3f\xa4\x25\xce\xc9\x7a\x58\x41\xc9\xdc\x2b\xbe\x4e\x63\xe2\x07\xdd\x7e\xbb\xe5\xb9\x38\xff\x36\xbe\x58\x4a\x66\xf4\x44\x2e\x3c\x5b\xb4\xf4\x26\x9d\xf9\xf9\xad\xd3\x58\x5d\x58\xc4\x48\xc5\x08\x25\x56\x0d\x92\x4a\xcf\x8d\xe8\xfc\x33\x9b\xd7\x48\xf3\xa0\xe3\x40\x9d\x7f\x51\x63\x44\x6b\x2d\xef\x51\xe8\xc4\xdd\x97\xf0\xbf\x2f\xa8\xbc\xf3\x05\x85\xd1\x89\x8c\x2f\x35\x3d\x45\x11\x53\x7d\x8e\x6f\x5a\xac\xde\xfe\x6e\x30\x32\xfe\x44\x9a\x82\x6d\x9f\x4f\x75\x24\xf1\x4d\x23\x70\x99\x9d\xed\x8e\xfd\xb8\xef\xe7\x49\xba\x46\x40\x76\x18\x55\xb0\x29\x09\x98\x51\xbb\x55\x5f\x52\xa5\x7d\x63\xf2\x69\x05\xa9\x39\xae\x73\xc0\xc7\x75\xc1\xfd\x18\x2c\x0d\xdf\x34\x52\x3e\xb2\xa8\xfd\x7e\xdf\xf4\x77\xd1\x9f\xa2\xb4\xcf\x8d\x93\xd8\x4a\x17\xb5\x80\x2f\x70\xba\x56\x28\xd9\x86\x4e\xef\xaa\xcc\x47\x12\x04\x45\x0a\xa7\xc3\xaa\x43\xda\x94\xce\x55\x75\x02\xfe\xb4\xa5\x9e\xd4\x1d\x27\xb1\x59\x53\xac\xb3\x1f\xe8\x06\xde\x0f\x54\x40\x19\x85\x59\xbe\xa7\x1a\x3a\xe9\xec\x50\x02\x82\x6f\xa8\x33\xf7\x0d\x2c\x65\x39\xeb\xaa\x9f\xb7\x74\xe9\xee\xff\x23\x0a\x91\x76\x80\x16\xb2\xdf\x55\x9f\x85\x21\xab\x5f\x61\xca\x40\xc5\x06\x76\x4e\xf1\x6f\xaf\x11\x8b\x64\xdf\x5f\x7b\xb4\x7a\x0a\x2c\x9c\xdb\x8a\x7a\xef\x82\x26\xa3\x44\xbb\x09\xdc\x29\x04\x0b\x5c\xe6\xc1\xdc\xe1\xd3\x9d\x1e\x85\x1a\x38\x32\x2e\xe3\xc8\xc0\x66\xdf\xd1\x73\x02\x54\x9c\x9c\x16\xe0\x68\xc7\xf2\x2d\xde\xc4\x6e\xc3\x8f\xec\x5c\xa7\xf1\x80\x83\xb5\x13\xf2\xb4\xc8\x55\x9f\x85\x8f\xca\x37\xca\x8b\x7c\x39\x09\x0e\x01\x79\xc0\xb0\x4c\x7a\x71\x81\x68\x2a\x0d\x8d\x95\x24\xec\x4b\x5b\x1d\xe2\xe4\x77\xe8\x4f\xf9\x5a\x6d\xb4\x71\x18\x87\xe3\x62\x8c\xcc\x96\x54\xaa\xaa\x57\x91\x0a\x96\x66\x31\x22\x19\xe1\x69\x97\xc7\xd5\x84\x60\xe7\x14\x55\xdb\x31\xce\x23\xf0\x9d\x0a\x54\x4c\x9c\x87\xa9\xd1\xd9\xca\x77\x68\x51\x22\x77\x02\xdc\x17\xc3\xf7\x34\xe4\xe1\x56\x63\x25\x3c\xfd\x74\xe5\x19\xe5\x05\x23\x95\xe1\x71\x21\x49\xc1\xd7\x8d\x45\xfd\x0b\xdd\x24\x0a\x57\x0c\xc2\x6f\x24\xa5\xff\x48\xf7\xd0\xfd\x51\x8d\x0d\x22\xcc\xcd\x1e\xb8\xc3\x8c\x5f\x57\x26\x01\x3a\x5b\x30\x74\x9d\x75\x87\xe8\xf8\x2d\x1a\x39\xb8\x0a\xc7\x3d\xc5\xa1\xfd\x51\xa9\x38\x50\xef\xb4\xa8\x24\x74\x4d\x14\x0e\xc3\xe5\x08\xdd\x96\x22\x73\xe8\xfc\x84\x2b\x0d\xb4\xf6\xbe\x85\x6e\x9c\xc4\x83\x90\x09\xe6\xbf\x20\x05\xdd\x8a\xd0\x2b\x52\x33\xed\x9a\x0f\xef\x2b\xec\xe3\x55\x25\xa4\xfd\x16\xec\x0d\x02\xd4\x0b\x95\x0f\x27\xed\x1a\x69\xf6\x40\x75\xc2\x63\x85\xbc\xef\xa9\xfe\x1f\xcf\xa1\x62\xb8\xde\x24\xec\x74\xb4\xd3\x44\x5f\x55\x1d\x00\x27\xb5\xe7\xf0\x3e\x5c\x54\xbb\x0c\x6d\xeb\xc5\xa6\xfa\x79\x3f\x24\xf8\xf8\x73\x4e\x25\xdf\xe2\xa9\x2e\x61\xaf\x0a\xb5\xa5\x2a\xc5\x5c\xf2\x54\x45\xf4\x27\x78\x00\xe9\x61\xdf\xee\xcd\x1e\x9c\xe9\xfa\xb1\x59\x25\xa6\x3d\xf1\xd2\x1c\xb3\xcb\x7d\x4f\x51\xaf\x9e\x85\x4b\x83\x6a\x11\xba\x83\x61\xe4\x3f\x6e\xa5\xf9\x1d\xfb\xe9\x21\x93\x33\xa7\x00\x6c\xef\x69\x2e\x4f\xc0\x94\xf3\x97\x23\x78\xb9\xaa\x9b\x48\xfe\x83\x25\x33\xf4\x63\x3f\x4a\xd0\x49\xaa\xfb\xea\x04\x6c\x5f\xad\x40\x14\xf7\x7f\xd2\x86\xf3\x48\xcd\xc0\xa4\xa9\x35\xa0\xd8\xa1\x88\x96\xf9\xba\xad\xe0\xd9\xcd\x4c\x14\xd1\xf9\x08\xa3\x74\xb1\x54\x2d\x01\xf7\xc8\xf7\x90\xce\xc0\x1a\x8b\xfa\x58\x7a\x92\x6c\x08\xe2\x5c\x84\x26\x8a\x61\xee\x40\x77\xec\x0f\xb9\xfb\x03\xc0\xbf\x4f\x71\xea\x60\x7a\xaf\x29\xce\xa6\x0d\xef\x29\x05\x62\x8a\x87\x59\xee\x13\xd9\xff\x2e\x87\x79\x7b\xb3\x74\x15\xaf\x6f\x97\x2a\x73\x02\xa4\x24\x56\x26\xb2\xaf\xfc\x47\xaa\x27\x69\x5c\x85\x41\x29\x83\x66\x9f\x73\xe9\xb6\xf9\x79\xae\xba\x7d\x5f\x53\x25\x9f\x6f\xbc\x4b\x35\xdd\x51\x38\x40\x46\xd6\xc6\x31\xd5\x27\xf8\x66\x7b\xc3\xee\xbe\x85\xee\xd2\xe2\xa3\x2e\x45\x7c\xd9\x53\x6a\x3c\x4c\x5d\x64\x0b\x8e\x4e\x6d\xe0\x34\xc7\xec\x78\x8e\x13\x28\x2c\x32\x85\x2b\x36\x00\xfe\x05\xed\xea\xdc\xd1\x4a\x0b\x15\xdd\x37\xeb\x9e\xa2\xc7\xdb\x54\x35\x8d\x3b\xa5\x12\xd8\x67\x69\x3e\x38\x41\xdf\xa6\x54\x0d\x36\xc0\x67\xa5\x4a\x0c\xbc\xdf\xc2\x10\xb8\xd8\x9d\x14\xc0\x03\x73\xb5\x51\xf7\x11\x7f\xd2\xc6\x70\x1a\x25\xc3\xa4\x46\x9f\xfd\x89\xf2\x8d\x3f\x51\x0d\x46\x51\xde\x7f\xf6\x01\xc7\x99\xb0\xc9\x3b\x09\xa8\x89\x0d\x15\x80\xde\xa3\xe2\x8a\x6d\x70\x7e\xc1\xd6\x18\x6f\xa8\x86\x79\xc6\x76\x50\x64\xb9\xf3\x89\x9e\xab\x11\xdd\xa8\xa3\x89\xb7\x1f\x44\xf3\xf3\xdd\xcc\x04\x85\xd5\x86\x42\xce\x68\x4f\xcf\xfd\xfc\x7d\x64\x45\x30\x60\x17\xda\x6a\x17\x63\x93\xbf\x6a\xe2\x65\xbf\x18\x4b\xc2\x19\xfe\xc2\x16\x66\x9a\x6f\x74\x7a\x38\x5d\x43\x3b\x18\x6b\xce\x97\x5a\x80\xbe\x54\xcb\x03\x36\x09\xa1\xd8\x63\x08\xad\xe4\xaf\xaa\x07\x14\x79\xd3\x5a\x87\xb3\xe9\x77\x74\x60\x59\xed\x0f\xbe\x6e\x59\xe5\xfb\xbb\x83\xd4\x18\x0d\xdc\xfd\x54\xf1\x3e\x7c\x6a\x31\xce\xab\x26\x1c\x8e\xac\xd9\xc1\xfe\x84\x3f\xca\xd7\x2a\xd7\x9a\x27\xb1\xa1\xa6\x14\xc5\xd0\xf2\x1c\xa7\xec\xae\xe3\x54\x92\x9c\xb3\x3b\x22\xae\xd0\x24\x0b\x05\xbc\xaa\xf4\x84\x59\xe4\xe7\x2c\x80\x2b\x50\x36\x87\xe3\x3e\xae\x59\x2a\xa9\x67\xd9\x8f\xe8\x70\xc4\x7a\x03\x95\x2a\x5f\xaf\xab\x58\xc5\xd3\x41\x8c\x22\xab\x7b\x55\xf8\x9c\x10\xa3\xa3\x27\x98\xaf\x6b\x90\xe9\xb1\x1f\xc6\xdc\x49\x8e\x12\x60\xa7\x57\xbd\x80\x46\xb0\x32\x7b\x62\x3d\xaf\x4f\x5f\x2e\x32\x13\xd5\xea\x97\xda\x85\xab\x08\xfb\x2b\x26\xf6\x15\x17\x3c\xf4\x9a\xf8\x5a\xf7\x06\x67\x6b\xc1\x28\x89\x92\x21\x6b\xc8\xc3\x21\x43\x28\xca\xd7\xad\x0e\x44\x1a\x4e\x0c\x3e\x81\x88\xf0\xa4\xe2\x1e\x3b\xa9\xca\xe3\xab\x7e\x28\x8d\x2a\xb0\x1c\xc0\x30\xf3\xb5\xca\x52\xa6\x66\xb9\x18\x0c\x84\x52\x5e\x68\x10\xd4\x32\xde\x6a\x79\x8e\x85\x6e\x98\xfa\xcc\x28\x2b\xb6\x5c\x11\xe2\x1e\x6f\x6b\xc1\x0b\xfc\x49\x98\x27\x51\x47\xab\x37\xb0\xa3\xc9\x37\xaa\x11\xab\x3a\x68\xd7\xb2\x3c\xfb\xb2\xc2\x9d\x5c\xa5\x7c\x86\x68\x6f\x90\x29\x83\x37\x7f\x1a\xeb\x12\x67\x03\x7b\xf3\x30\xd7\xa7\x35\xf3\xc2\x45\xf2\x10\x6d\x27\x7a\x65\xac\xa5\x15\x90\x36\xa7\xf4\x02\x92\x91\x42\xd3\x04\xcf\x3f\x12\x40\x3f\x20\x30\x17\x2c\x34\x63\x35\x60\x70\xae\xa9\x59\xbb\xe2\x78\xa6\x7e\x5d\x93\x38\xb3\x1a\x0d\x7f\x93\x82\x10\x1c\x8a\x4c\x18\x93\x80\x1f\x8c\xd4\xbf\xf7\xd4\x90\xec\x5c\xa7\xd1\xda\x3a\xe7\x39\xb8\xfd\x25\x32\x9c\x38\xc9\x3a\x0d\x84\xf5\xdc\x81\xae\x19\xae\x4d\x72\xe1\xab\x80\x73\xff\x16\xbe\x94\x6f\xb4\xa0\x86\xf1\x53\x80\xc9\x04\xad\xe8\x4a\xbd\x17\x4b\xa5\x61\xff\xae\xa7\x15\xc9\x3e\xa2\x67\x80\xdf\x7a\x16\x63\x2c\x04\x65\xd5\x8f\xa2\x76\x7d\x0f\x7e\x9f\x04\xc7\xaa\xe4\xf2\x51\xc3\x98\x2d\xcd\x74\xb3\xa4\x88\x81\x70\x86\xdb\xf8\x21\xad\x6c\xbe\xae\x95\x1b\x8a\xb1\x79\x8c\x62\x41\x01\xc1\x77\xbe\xf9\x75\x3e\x7a\x8e\xf1\x41\x04\x1f\x1c\xb8\x17\x4c\xcc\x74\x4f\x33\x88\x91\xeb\x88\x0c\xd8\x1d\xac\x1e\xee\xa6\xf6\x9c\x13\x7e\xbe\x54\x19\x10\x14\xf5\xe0\x1d\x7f\xae\x99\x07\x76\xac\x3b\x0f\x90\x13\x68\x98\x1b\x76\x88\x51\xae\xfb\xae\xa7\x8a\x13\x8c\x21\x86\x33\x55\xb6\xa8\x68\xbf\xd8\xcd\xfd\xe5\x28\x09\xfb\x53\x8e\xb5\xe1\x8e\x12\x6b\x81\x9c\xaa\x10\xf4\xb8\xfe\xec\x06\xd1\xce\x8b\x56\x6d\x86\x9e\x45\x0e\x6b\x31\x99\x93\x34\xec\x83\xcc\x1f\x51\x18\xe8\xb8\x31\x12\xa0\x5f\xc7\x81\x35\xdd\xdb\xde\xab\x56\x3d\x23\xb5\x8e\x1b\x95\x11\x40\x64\x0f\x8b\xc4\xd7\x0d\x05\x06\x88\xd2\x45\x61\x90\x4c\x72\x57\xe3\x45\x18\x7b\x1a\x83\xc4\x37\x8d\xd3\x7e\x76\xb6\xb2\xae\xa9\x3f\x04\x55\x20\x7c\x28\x80\xf5\x98\x2b\xa2\x74\xab\xe7\x96\xc6\x41\xee\xec\xe9\xfe\xde\x30\x4b\x62\xe0\x6d\xf6\x3b\x49\x56\x27\xcf\xda\x88\x49\x5e\x98\x3b\xd0\xf5\x2b\x17\x7c\xee\x80\x50\xfa\x23\xbe\x42\xc9\xe7\x7c\xe9\x48\x14\xfe\xc4\x46\x0a\xaf\x16\x69\x18\x8c\xa6\x5c\x12\xe0\x98\x66\xcb\xba\xc1\xbb\x49\x92\xa0\x56\xab\x3c\x1c\x87\x79\xb6\x5b\xa9\xe6\x6d\x2a\xbf\x9b\xf9\x71\x55\xa7\xa6\xec\xce\xc7\x7a\x4e\x3e\x08\x13\x87\xf1\xbf\xa8\xb8\xeb\xfa\x26\x0b\x20\xca\x45\x69\x29\x9c\x69\x5b\xaa\xd0\x74\x47\x1d\x25\x7f\xf1\x85\x75\xb7\x22\x1d\xda\x09\xc7\xe3\xdf\xd5\x4e\xcf\xdd\x36\xfe\xdd\x15\x93\x66\x05\xb2\x61\xac\x18\xa8\x38\x4d\x8f\x29\x21\xaa\xfb\x75\xa1\xda\x88\x3c\x2d\xc9\xc8\x9d\xf1\x6a\x6d\x6a\xca\xb2\xff\x16\xd0\x12\x56\x75\xdc\xf6\x62\x9d\xa0\xdf\x11\x56\x03\x9b\x3b\xf5\xd7\x00\x9d\x46\xac\x76\x85\x27\x03\x48\x80\x37\x4b\x47\xb4\x70\x41\x25\xb4\xd2\xca\xd1\xac\x82\x37\x44\x90\x32\xf7\x34\x09\x7c\x43\x63\x09\xef\xe8\x3a\x25\xeb\xf9\x5a\x7d\x8b\xd2\x78\x77\xe2\x06\x64\x33\x45\xe8\xe0\x8b\x12\x94\xcb\x7e\x1e\x30\xe2\x1b\x5e\x1b\x98\x49\xb1\x9e\xf0\x9e\x08\x85\xaf\xaa\xc6\xa6\xa1\x9f\x8e\x4d\x9c\xc3\x14\xd8\x06\x62\x1b\xb3\x7f\xae\x4e\xdc\x41\x18\x93\x2c\x19\x25\xea\x85\x83\x88\xc2\x10\xe4\xaf\x6f\xa9\xaa\xee\x07\x88\x6e\x44\x99\x91\x96\xab\xf4\x40\x35\x31\xa8\xdd\x81\x9f\x59\xba\x48\x86\x3a\x2a\x56\xea\x8d\x46\xc3\xad\xbc\xb2\x59\x31\xe9\x5a\x3e\xb2\x50\x21\xec\x88\x5b\x4a\x86\xf2\x2e\x2c\x06\x32\xe5\xdf\x57\x4e\xfa\x6a\x18\x3f\xa8\xaa\x76\x3b\xa9\xe4\x80\x98\x62\x2f\xed\x15\x49\xad\x28\xa0\x1d\xde\xc3\x9e\x10\x0b\x56\xb7\x78\x83\x17\x08\x0e\x68\x2e\xd1\xe3\x9f\xee\x69\xac\x30\xad\x1c\x29\x62\x3f\xe2\x60\x0e\x63\x93\x92\x5b\x8b\xf9\xd9\x45\xbe\xa6\xe8\x2a\x28\x30\x28\x77\xa5\x03\xb5\x72\x44\x51\x12\x8c\x8d\x9f\x55\x41\x0e\xe1\xfc\x64\x31\x57\xbf\x25\x0c\x1d\x16\x8d\x44\x42\xb7\x93\xd0\x00\x87\xb5\x45\xb5\xb8\xad\xd3\x9a\xc9\x6b\x62\x75\xe8\xb1\xc4\xff\x84\xac\x17\x5f\x37\xba\xdb\x97\x66\xba\x83\x28\x0c\x0e\xb9\x9a\x96\x44\xb1\x34\x06\x8a\xa4\xc9\xfa\x13\x2b\x86\xa5\x83\x70\x74\xfc\xaf\x34\x40\x30\xc3\x37\x15\x2b\xd5\x14\x0a\x3c\xdc\x5a\x62\xdf\x00\xb2\x8d\x49\x1a\x32\x63\x20\xcc\x02\xd6\x1e\x5f\xab\x8c\x66\x6a\xd2\x42\xf8\x5e\x05\xbe\xa4\xf4\xd1\xce\xab\x9a\xcd\xc4\xf8\x39\x1f\x36\x18\xb5\x93\x9a\xe4\xe4\xa4\x12\xdf\x84\x60\x42\xb5\x6d\xa6\x15\x62\x10\xa8\x63\x21\x5b\x55\xd5\xa3\xb7\x94\x20\x34\xf1\xc2\x58\xb6\x91\x2c\x28\xac\x06\x89\x78\x27\xb4\x8e\xf9\x46\xd5\xd5\x4d\xd4\x37\x69\xb4\xb6\xbb\x3a\x62\x2c\x90\xf4\xa0\x00\x83\xd1\x06\x85\x40\xe8\xb4\xa7\x56\xdf\x1d\xa4\xf5\xf9\x13\x9e\x0b\x9d\x4e\x2b\x3a\xd0\x61\x38\x36\x71\x47\xa9\xbb\xc1\x2b\x92\x1a\x97\xfc\xe1\x4a\x48\x88\x14\x58\x18\xd1\x08\x76\x1c\x02\x9f\x95\x2e\x55\xfc\xfb\xae\xad\x37\x29\x52\xc9\x75\xb7\x75\xc2\xb6\xd4\x10\xfa\xa9\x3f\xb0\xa0\x17\xae\x6a\x29\x0d\x97\xcf\x14\x85\x70\xdf\xe4\x69\x12\xe6\x40\x1b\x58\x8a\x78\x97\xf9\x79\x8b\xf7\xa5\xe5\xc9\xb5\x70\x81\x5b\x18\x25\xcb\xe6\x64\xe1\x82\x17\x14\x4f\x39\xf0\x19\x26\x05\x9c\x10\x7f\x5b\xaa\x4e\xc4\x37\xb1\xc8\x2d\xd9\xd0\xec\xac\xe5\x22\x75\x5d\x0d\x57\x68\x23\xa2\xee\xc4\x1d\x16\x30\x8b\xdf\x6b\x6d\xc7\xaa\x56\xa1\xee\xe5\x77\x6d\x62\x9b\x8d\x83\xb3\x0a\xb3\x0a\x47\xe6\xdb\x46\xe4\xd5\x42\xbf\x24\x45\x85\xce\x36\x9e\x24\x49\xbf\x3a\x8b\x6f\x5e\x31\x69\x10\x66\x66\x2f\x7d\x3d\xf2\xe3\x9c\xa2\xb1\x3a\xd4\x16\xa2\x73\x91\x82\x1f\xab\x0b\xf4\x8d\x39\x76\x20\x6e\x2b\x3d\xbb\x2d\x4f\x61\x31\xef\x00\xb3\x8f\x08\xed\x3f\x94\x56\x54\x20\xec\xc3\x7d\x83\x23\x30\x4d\xb9\x1a\x0e\x9d\x68\x58\xc5\xc5\xae\x86\x95\x9b\xc4\x14\x1a\x38\x9b\xe0\x10\x9e\x52\x1d\xc2\xa0\x5f\x17\x92\x39\x4d\x13\xf0\x84\x96\x67\xf7\x53\x13\xe7\xd1\xda\x2e\x7a\x41\x16\x43\xa4\x4f\xc2\xa1\xb8\xaf\x94\x99\xee\xd3\xaf\x63\x9b\xee\x5e\x77\x15\xb2\x3b\x0d\x32\x45\xc7\xc3\x3f\xae\x7e\x80\xf3\x50\xc0\x48\x5d\xf5\x5c\x9a\x87\x9b\x48\xe1\xf1\x7c\xae\x68\xa2\x49\x20\xc8\x5f\x0e\xa3\x30\xa7\x96\xd8\x39\x3e\x99\xde\xd6\xd0\x07\xd6\x92\x90\x32\x5d\x0d\xaa\x6b\xf2\xa7\x3a\x96\x06\xeb\x2f\x4a\xa5\xbd\x79\x0e\x73\x89\xaf\xf8\xbe\xe7\x5a\xc4\x2f\x7b\xee\x04\xda\xa4\x1c\x13\xdc\x81\x9f\x50\x59\x7a\xba\xa7\x40\x0f\xb7\x3c\x55\x4e\xbb\x83\x13\x12\xfe\xc0\x0f\xb9\xce\x24\x07\xa9\x92\xe8\xdc\xa0\xdc\x88\x05\xf6\xfe\xa3\x7f\x6c\x1b\x54\xe8\x9d\x90\xef\x64\x96\x69\x0c\x38\x33\x15\xc0\x07\xba\x4a\xf1\x9c\xe5\xf5\xb0\x9c\xdc\x60\x1f\x04\x9a\xef\x2d\x6c\x35\x38\x58\x1f\xa9\xc2\x2b\x0e\x10\xf8\x68\x08\xe8\xa7\xc0\x93\xcc\x37\xeb\xae\x1c\x89\xd4\x0c\x5f\xb7\x08\x85\xce\x55\x06\x48\x35\xc5\x6a\x2e\x0e\xc1\x67\xb8\x8c\xe8\xcb\x45\x7c\xe8\xc1\x6a\x2c\xe1\x9e\x7f\xac\x28\xe4\xae\x51\xe8\x06\x5c\x23\x5a\x6e\x90\xd0\xbc\xec\xa9\x66\xdb\x0d\x4c\x1d\x97\x33\x68\x04\xf1\x4d\x08\x30\x31\x73\xef\x21\x53\x81\xa4\xd5\x75\xe4\x30\xf8\xa6\xc1\x5c\x55\x85\x68\x71\x42\xcc\x00\x98\xbe\x87\x7a\xce\x34\xdf\x53\x22\x96\xd7\x68\xbc\x45\x23\xd0\xe1\x85\x86\x66\x0c\x4f\x41\xf4\x6c\xe9\x01\x45\xd0\x76\x1b\xe2\xf4\xa5\x97\xaa\x11\x7b\xac\xfa\x35\xcb\x70\x6d\xdd\xd3\x0f\x71\xee\xc1\xd0\xfd\xb6\xce\x58\xd1\xea\x13\x1a\x48\x97\x35\xbb\xa9\x19\x42\x2f\xe8\x2e\xd7\xce\xba\x62\xd6\x3a\xaf\x50\x38\x68\x32\xc2\xbe\xbe\xe7\xd5\x40\x5a\x9d\x5f\x7c\x81\x7d\xbc\xc3\x9e\xea\x92\xbc\x88\xd3\x13\x47\xe9\x8e\x5e\x35\x08\x78\xf4\xe3\x6d\xb2\x1e\x7e\x94\x0c\x72\xf2\xc0\xf4\xe1\x28\xca\xfa\xad\x8c\x73\x83\xc8\x3f\x64\x24\xc4\xc5\x93\x41\xc4\x4f\x6e\xb4\x2a\x70\x9a\x4c\x4c\x9a\xaf\xc1\x77\xd2\x74\x31\xb0\xb3\xe7\x3c\xc5\x47\x55\x6a\xc2\x0d\xe5\xf5\xa6\xfe\xb7\x28\x81\x22\xaa\x8d\x0a\x48\xd9\x3c\x5e\x9e\x81\xd1\x0a\x72\xad\xd1\x8c\xd5\xcd\xd7\x5a\xa2\xf6\x50\xc8\xbb\x40\x98\x30\x5d\x93\xe4\xa6\x23\xbe\x8a\x83\xd1\x6a\x92\x8e\x95\x2a\x11\x86\x89\xaf\x95\x23\xba\x9c\xfa\x2c\x97\x03\xfb\xf4\x89\xda\x56\x28\xf1\xb2\x2d\x41\xa8\x21\x05\xbb\x16\xf0\x7b\x30\x32\xc1\xa1\xe5\x24\x39\xd4\x51\x79\x28\x38\xf6\x7c\x6d\x9f\x2f\x35\xb9\x9f\xf6\xc5\x4a\x63\x25\xdf\x50\xaa\x61\x1d\x40\xbc\x98\x1f\x55\x59\x69\xd0\x1d\xa3\x6d\xa1\xe3\x7a\xbe\xcf\xa9\x50\xe4\x5c\x63\x03\x3e\xd3\x35\xc1\x28\xa1\x25\x23\xb9\x6a\xc5\x88\x74\xa1\x96\xd2\xca\xc3\xe0\x29\x9a\x54\xc9\xf6\x57\xde\x06\x4e\xf9\x7b\xd8\xf3\x2c\xce\x0c\x2b\x21\x93\x05\x13\x8c\x44\xd4\x49\x2c\x67\x2c\xfa\x3a\xb6\x94\x1e\x13\xd9\xae\xdd\xeb\xaa\xed\xf1\xd1\x75\x1a\x08\x80\x92\x20\xa6\xc4\x94\x15\x30\x2d\xc2\xb1\xaf\xe2\xfb\xdd\xe0\xba\xe6\x9f\x2c\x1d\x1f\xec\x15\xc5\xdb\xc0\xd9\x51\xcc\xfa\xee\x75\xd7\x97\xc2\xad\xa6\x12\x6e\x38\xc2\xda\xe9\x75\x3a\x3f\xc8\x2a\xfc\xe6\xcf\xf7\x1e\xd5\x07\x77\x64\xb2\xdd\x4e\x0a\xfe\x6f\x9f\x55\x95\x0b\xae\x85\x6a\xaa\x4c\x61\x99\x54\x74\x15\x20\xe6\x10\x0e\xcd\xed\x5b\x75\x76\xae\xeb\x8f\x4d\x1a\x06\x9c\x31\x95\xba\x0c\x7d\x81\x80\xf2\xb6\x6f\x9e\xc5\xa5\xc5\x6e\x6a\xfc\x80\x99\x3d\x39\x15\x87\xb7\x93\xbc\x9c\xf3\xb4\x46\x7e\x11\xe7\xe2\x27\x63\xfa\x2f\x2a\x92\xbc\x8b\x4e\x08\xb0\xe8\x0f\x4d\x9e\x69\x6a\x79\xd0\x23\xc9\x89\x5e\xbd\x88\x20\x8f\x9a\x89\x96\xfd\xdd\x41\x98\x66\xf9\x94\x5a\x23\xc7\x54\xa6\xf6\xa2\x6a\xfd\x6b\xd2\x2b\xbf\x30\x77\xa0\x3b\x2a\xd2\xbc\xa3\x5c\x88\x5f\xd6\xdc\x15\xbf\xac\xb2\x05\x87\x92\x51\xb4\x6c\xd2\x61\x47\xe7\xb1\x8e\xd7\xaa\x5f\x0a\xfb\xb9\x94\xac\x52\x96\x51\x67\x16\x61\xdb\x7f\x54\xaa\x1a\xf3\x25\xef\x21\x3b\xef\xa3\x67\x3b\x0e\xbb\xc3\x1b\x47\xf8\x75\xb5\xc4\xad\x89\xd1\x96\x08\xe0\xc3\xe9\xd2\x71\xa8\x31\x09\x27\x5e\x1d\x78\x51\x6c\x01\x10\xbc\xe3\xd4\xbd\x44\x87\x03\x7c\xc7\xdb\x2d\x3c\xce\x07\x67\x9e\xa0\xa5\x07\xc7\xff\x57\x4b\x27\xd8\x7c\x0c\xad\x9b\x98\x8c\x0d\x4f\x11\x1b\xbd\xaf\xd1\x5a\x8b\x64\x5e\x6c\x12\xb8\x7a\x54\x44\xcd\x6f\x29\xe3\xfe\x7f\x63\x98\x91\xc6\xe0\x34\x80\x95\x78\xae\xb6\x1b\xce\xa8\xcd\xd2\xb1\xc5\x81\x63\x17\x73\x79\x19\xce\x97\xdd\xf9\x4e\x71\xfd\x33\xd8\x04\xd8\xc1\xdb\xe4\x3f\x21\x0e\xa0\x5e\xd9\x17\x2d\x99\x54\xe7\xe0\xcc\xd6\xdd\xb6\x68\x2d\x33\xc0\xb8\xd4\xbb\x0b\x2c\xcb\xbb\x76\x80\xfc\x34\xe7\x8a\x10\x92\x72\xe0\xc0\xe0\xeb\xde\xdf\x68\x96\x6e\x29\x7f\x3c\x34\x31\x77\x75\x71\xc4\xcf\x69\x5d\x4f\xa7\x78\x25\x97\x92\x2c\x27\xa4\x13\xee\x24\x08\x68\x45\x8b\x1c\x41\xd3\x03\xea\x8e\x42\xf4\xa9\x23\xe9\xb0\xa3\x57\xf3\x39\xab\xcf\xf2\xe9\x5a\x2a\x56\xfa\x8f\x1a\x03\x71\xe0\xf9\xee\x38\x89\xa2\x70\x00\xb8\x39\x87\x4a\xf4\x88\x12\x36\xd5\x54\xdc\xcc\x2b\x18\x30\x44\x42\xd7\x74\x8b\xda\x35\x75\xa8\x1e\x32\x66\xf2\xe0\xf6\xc2\x8e\xa4\x47\xaa\x87\xc3\xd1\xfd\x03\xb2\xb2\xf8\x1b\x8e\xf8\x61\x34\xcf\x95\xae\x65\x97\x45\x8f\x44\xde\x54\x71\x91\x7c\x57\x11\x63\xdf\xf3\x14\xbf\xea\xce\xf5\xed\x11\xea\xbe\x85\xee\x24\x32\x3e\x92\x05\x12\xc3\xeb\xd8\x5e\x25\x92\xf2\x70\x30\x20\xe7\x52\x91\xce\xab\x86\xb5\x83\x33\x4e\xce\x78\x9f\x65\xa6\x6f\xd4\x05\x7f\xa1\x9b\x9a\x89\x71\x5d\x30\xa8\x1c\x71\xe9\x84\x6f\xca\x87\x55\x2b\x07\xc2\x67\xbc\xf3\x54\xcf\x81\x7e\xa6\xd6\xdb\xea\xe3\xc3\xb4\xb2\x3c\x96\x4c\xe3\xb6\xa7\x88\x1a\xbe\xaf\x72\xa6\x37\xdb\x3c\xbe\x55\x3f\x96\xc7\x82\x45\x39\x5c\x2a\xed\xd7\xc3\xaa\x78\x3d\x4c\x8a\xa8\x4f\xe5\x1a\x57\x3c\x53\x1a\x7c\x67\x68\x02\xc5\xc1\xde\x4e\xd5\xf3\x4c\xd7\xe4\xc1\x74\x65\x86\x30\xc5\x53\xe4\x89\x4a\x6d\xad\xfa\x16\x7c\xf2\x44\x59\x13\x4b\x71\x90\xa4\x43\x91\xa4\xf4\x18\x9e\xa3\xcb\x4b\x1b\x5e\xd3\x51\x5f\x7c\x7e\xff\x03\xaa\x4e\xde\xe9\xb9\x7d\xb7\x77\xdd\x95\xe7\xd7\x35\x39\xc8\x1d\xec\x10\xdb\x39\x7a\x70\x86\x43\xce\xab\xc4\xb3\x81\x3f\x42\xc5\x9e\x55\x2c\x60\xb3\x71\x74\xec\xe8\x39\x1a\xde\x34\xc9\x47\x59\x30\x0a\xa3\x7e\xb6\xdb\xcd\xc0\x65\xaf\xd6\xf8\x44\x3f\x86\x0c\x22\x57\x72\xb0\x7d\x20\x72\x69\xb1\xe3\xfb\x84\x6e\xe0\xaa\x12\xb2\x4f\xcd\xe4\xd9\xdd\x2e\xb1\xb2\x81\x6f\xd6\xe5\x14\x9c\x3d\x47\xe1\x46\x23\xe8\xfc\x9e\x57\x4b\xbe\xd2\xb3\x63\x04\x2f\x29\x64\x52\x6a\x82\x64\x18\x87\xaf\x72\x71\x4d\x31\xab\xed\xb7\x02\x40\x2d\x7a\x19\xc4\x41\x95\x44\x09\x29\x4e\xe1\xc4\x94\x6e\x2b\xfa\xa8\xb4\x64\x59\x56\xdd\x22\x8d\x93\x22\x67\xd2\x40\x71\x90\x15\x81\xec\x75\x62\x89\x46\x29\xba\x4d\x9f\xa7\x9b\x19\x06\x7f\x59\xc8\x44\x35\x06\xe2\x86\xb6\x49\x24\x52\xa0\x3b\xa5\xe4\xfd\x90\x4f\xc4\x84\x7c\xa6\xc1\x7d\xd7\xca\xa7\x9a\xdd\x86\x07\x67\x9e\x7b\xb4\x32\x65\x58\x14\x97\x55\x97\xd1\x75\xda\x67\xd6\x47\x75\x7a\xbd\xb0\x6b\x30\xc0\x97\x3d\x47\xea\xf0\xa6\xa7\xf2\x6e\xd7\x4a\x5d\x36\x28\x55\xc0\x7c\x8c\x3a\x0c\x11\xca\x1d\x05\x14\x0a\xe7\xdc\xbf\x42\xf7\x27\x4e\x85\xb7\x14\xa9\xec\x97\x70\xe8\xa1\xb4\x7e\x05\xc9\x0c\x98\xdb\x3f\xb4\x25\xd1\x51\x91\x1d\x5a\x83\xd6\x69\x0b\x79\xda\x66\x8d\x17\x7d\x90\x4f\x29\xbc\x35\xfc\x52\x78\xdc\xbc\x66\xb9\xdf\xdf\x16\x05\x27\x7e\x96\x19\xb4\xe1\xdb\x10\xad\x7a\x22\xe6\x1d\xd1\x34\x49\x9f\x29\x72\xc0\x30\x0e\x22\xb0\x63\x77\xac\x30\xd1\x19\xfa\x35\xbe\x6e\x95\xca\x48\xe2\x88\xe8\x23\xb7\xee\x56\xa6\x68\xeb\xae\xd6\xd3\x2c\x82\xc0\x64\x19\x11\xc9\xa1\x68\xf6\x3d\x8c\xb9\xf4\x6b\xd2\x30\xf3\x0d\x5e\xc5\x06\x3c\x4b\x33\x96\xde\x40\xf1\x60\x5c\xf6\x14\x03\xd8\x47\x8d\x3d\x60\x1b\x9c\x56\x4d\x3f\xcc\x46\x54\x0d\x41\xce\x94\xbb\x57\xb0\x79\x1e\x22\x83\x2e\xd8\xd0\x9d\x5f\xe3\x6c\xc0\x85\xba\x22\x6f\xb0\xf6\x58\xc7\xca\xc6\x7f\x89\xaa\x29\xb0\xb3\x9f\x22\xa5\x24\xfd\x16\x8a\x5e\xe0\x2c\x27\xab\x60\x38\x3e\xe0\xbc\xb1\xa5\xc2\x59\x9a\xe1\xbc\x31\x43\x55\xad\x66\xa5\x3b\x07\x51\xb1\xc4\x78\xf3\x21\x8c\x07\x98\x5a\xaf\x56\x2e\xfc\xc3\xdf\xa4\x15\x6d\x49\x45\xe7\x0e\x70\x8c\xc9\xa0\x74\x94\xdf\x19\x1b\x2b\x4c\x7a\x2d\x34\xca\x5f\x73\x1d\xfe\x1d\xe7\x36\xaf\xd7\x18\x20\xb7\xb9\xaa\xbf\x50\x6d\x40\xa2\x7d\x85\x0f\x0a\x9a\x15\xbe\x6e\xe0\x97\xe7\x0e\x90\x98\x63\x18\x07\x39\xb3\x47\x20\x03\xfb\x9a\xe7\xb2\xb1\xaf\xb5\xb1\x75\xf7\x8d\xdf\xc7\xaa\xe2\x8d\x03\x66\x13\xbe\x5e\xff\xf2\xb6\x5e\x7d\x2e\x59\x21\x92\xff\x58\x25\x55\x3f\xb6\x5b\x22\x1c\xc6\x21\xe3\xc8\x71\x54\x80\x41\x92\xaf\xdb\xc4\x88\x07\xc2\xb5\x25\xdc\x43\x2a\x1e\x87\x79\x91\x86\x7d\x47\x74\xfd\xbd\x23\x4e\x80\x3a\x59\x31\x20\x94\x50\xd1\x22\x66\x5a\x42\x47\x17\x7d\x06\xa3\x64\x32\xc1\x08\x21\xef\x08\xd9\x5c\xbe\x2e\x9d\x88\x7c\x10\xf9\xe3\x65\x93\x9a\x3e\xe5\xb6\xb1\x7e\x98\x4b\x19\xcb\xe4\xb3\x52\x63\x7e\x4b\xdb\x0d\x75\xb0\xb5\x60\x9e\xe5\x7e\x6e\x98\x40\x19\x06\xf2\xa7\x9e\x52\xa8\xfc\x95\x52\x8b\xfb\xf3\x46\xc4\x43\x1d\x69\x49\x43\x8c\x93\xd4\x4c\x91\x19\xc5\x21\xfa\xa1\xe7\xd2\x58\x6f\xc1\x0c\x4a\x73\x68\x8b\x7a\xdd\xea\xc8\xa4\x46\xa0\xfb\x56\xd7\xf9\x05\xc7\xe8\xe3\x3d\xa9\xda\x14\x86\x05\x14\xce\x70\xb6\x5b\x32\x83\x6a\x5a\x18\x1f\x88\xcd\x23\x72\xf6\x2e\x05\x7b\x93\xd6\x07\x4a\xa1\x2c\xaf\x8e\x74\xd7\x29\xcf\xd1\x33\xbe\x9c\x8c\xe2\x2c\x89\xa7\x54\xeb\xc0\x3d\xcf\xe1\xf5\x20\x4c\x2d\xf4\x27\xae\x50\xe8\x4f\x26\xc6\x8f\xa6\xe9\x97\x95\x3c\xb9\x60\xc6\xb8\xb5\x8f\x6f\xd6\x9d\xbb\x5d\x97\x4a\x09\x57\xcc\x57\xab\x33\x0e\xe6\x1a\x59\x2a\xbc\xd4\x23\x08\x2c\x58\x23\x45\x11\x88\xf1\xf1\xc5\xb0\x7c\xce\xd7\x58\x29\x15\xa7\x14\xcb\x54\x76\x16\x3d\x5f\xbd\x3d\x8e\xb6\x3d\x3d\x62\x1a\x93\x9c\x14\xad\x22\x9b\x17\x75\x48\xb5\x2b\xb5\x38\xd3\x41\x89\x5f\x63\x5b\x07\x5f\xe6\x0e\xe2\x54\x9c\x80\xd7\x28\xff\x82\x47\xfb\x04\x6b\x95\x41\xc6\x34\x8a\x38\x18\xae\x2b\xce\x01\x26\x88\x56\xed\xb3\x2f\xd6\x9c\x40\x84\xd1\xa7\xdb\xdc\x8b\xc0\xcf\xf2\x34\xe9\x38\x7f\x9d\x8f\x55\xe1\xa5\x6e\xc1\x83\x19\x47\x68\x81\x54\x06\x17\xf5\xf8\xa6\x35\x7f\x11\x19\xbf\x0f\xa7\x09\x59\x71\xc6\xff\x59\x29\x18\xc7\x29\xff\x56\x6d\x66\x47\x66\xed\x09\xd5\x33\x76\xa7\xd4\x4b\x80\x86\x5c\xc4\xa2\x1c\xab\x2a\xba\xe9\xb1\x07\xee\x60\x30\xac\x60\x4e\x35\xc8\xa8\x9b\x7d\xa6\x88\xde\xbe\xbf\x0d\x2a\xbc\x34\xb3\xdf\x4a\xc9\x57\xeb\xca\x5a\x0a\xc7\xc8\x70\x4f\x2b\xe6\x3c\xd9\x73\x8d\x67\x53\xeb\x95\xf7\x83\x33\xf4\x9c\xa7\x59\xac\x90\x30\x42\xaa\xe3\x81\x75\xa5\x5f\xf7\x08\x88\xc3\xf8\xb9\x54\x7a\xe6\xbf\x5a\x3a\xd0\x71\x45\xec\x0f\xf0\xfb\xc2\x91\xe1\x9c\xdf\xd8\x24\x93\x11\xa4\xfb\xab\x97\x15\x5a\x69\x7a\x27\x21\x9c\x76\x02\x35\x60\x15\x26\x42\x2a\x58\x1d\x56\x6b\x42\xec\x79\x49\xe1\x8e\x2e\x61\x23\x88\x52\xb3\xca\xe8\x6d\xc0\x3d\xe2\xcf\xdb\x52\xf5\xb2\xc9\x1d\xe8\xac\x4d\x74\x69\xfb\xa9\x31\x3f\xdf\x4d\xc3\x2c\xe8\x28\x0c\x9e\x6e\xdc\xd8\x54\x00\x1d\x70\x1e\xc5\x26\xda\x5d\x2d\x01\x4b\x99\x75\x70\xa6\x96\x61\xc2\x11\x79\x0c\x9b\x9b\x45\xbe\x74\xcf\xcd\xf7\x4b\x9d\xf5\x76\xe7\x09\x31\xc5\x66\x0f\xd1\x90\xc1\x97\xf8\x73\x24\x8b\x18\x71\xe8\xa9\x56\xe5\x7b\xa5\xcb\x82\x33\xd5\x8a\x80\xa7\x68\x7d\xe1\x65\x21\x24\x0c\x83\x70\x16\x78\x1d\xa9\x9a\xd2\x82\x96\x62\x1d\x0d\xa4\xe4\xf5\x1d\xe9\xe6\xe9\x46\x44\xbe\xf8\xfc\xfe\x6e\x90\x8c\x4d\x9f\x05\x18\x85\x3f\xd6\x95\x79\xcf\xd5\x69\xdb\xfa\xfe\x43\xd5\x46\xc0\x83\x32\xb4\x11\xcf\xb6\x73\x5d\xa1\x4e\x79\x7c\x00\xcb\x3f\xa6\x70\xea\xaf\x7b\xce\xee\x83\x40\x89\x89\x96\xf1\x02\xdc\x6e\x4e\x53\xc0\x1f\x2e\x75\x45\x65\x5a\xf1\xd9\xed\x5e\x6f\x91\x6f\x33\x6b\x66\x39\x4d\x56\x79\xd5\xa2\x34\xfb\x86\x16\xcd\x79\x43\x01\xa6\x26\x7e\x35\xfd\xf0\x0d\x60\xa6\x4f\xeb\x38\xd6\x85\x68\x99\x1f\x15\xf9\xcf\x6c\xe5\x51\xea\x77\xc3\xd1\x23\x8a\xd3\xe9\x43\xcf\x41\x3b\xc0\xab\x02\xfc\xd8\x74\xaf\x53\x17\xef\x51\x9a\xe4\xd5\xd0\x59\xae\x18\x07\xe6\xba\x86\xf7\xb0\x55\xeb\x6f\xcc\xf1\xa0\x9e\xc7\x66\x43\xdf\xc5\xeb\xa5\xa2\xbc\xc5\x91\x4b\x47\xe4\xef\xff\x5c\xcf\xf1\xbf\xdd\xd4\x6d\xa5\x7e\x70\x88\x72\x3b\xa8\x0c\x5c\xf7\xbe\x88\x94\xa1\xfa\x38\xff\x8d\xad\xf0\xaf\x89\x76\x01\xf6\xf0\x29\x95\x08\x61\xb8\xb7\x08\x70\xb7\xe5\x1b\xa3\x64\x75\x1b\x9e\xf4\xac\xea\x75\x3f\xab\x46\xf5\xbf\xfc\xcf\xff\x8b\x8e\xeb\xac\xdf\xa4\x33\x8b\xaf\x15\x20\x69\xec\xaf\x2d\x9b\x69\x1a\x3f\xe1\x46\xc5\xea\xb1\xac\xbd\x4a\x2c\xa8\xac\x09\x79\xb9\x6d\x9b\x17\x60\x5f\xb6\xad\x51\x67\xf0\x31\x61\x4b\x6f\x41\x7a\x04\x45\xce\x2b\xce\xf6\x74\x57\x33\xc5\x37\xca\xe0\xf8\xc1\x08\xed\x27\xa4\xaf\x28\x35\x66\xfa\x7a\xd8\x81\x3b\xbc\xdc\xf9\x4e\x8b\x54\x5b\x8b\x18\x24\x51\xc4\x65\x6f\xe9\x0c\x3b\xa6\x38\x5b\x91\xc4\x43\xa2\xe3\x26\x1d\x48\xcc\x46\x5c\x13\x82\xca\x8a\xd4\x8f\x03\xf3\x48\xc7\x72\x59\x32\x14\x00\xa7\x7f\x0d\x18\x7f\x82\xa6\x1e\xbf\xf4\x07\x14\xe9\x60\x2c\x2e\xd1\x41\x86\x5f\x7a\xbb\x86\xc5\xfe\xbf\x4a\x07\x5c\xf9\xb8\x74\xcc\x63\xc7\xb1\x52\xf1\x1b\xaf\x97\x5a\x76\x06\x4e\xe9\x55\x8e\xdd\x9c\x57\xe7\x38\x5a\xe2\x9c\x83\x62\xd1\x5e\x55\xb4\x6e\xff\xb1\x49\x1e\x9e\x86\x1c\xbc\x58\xfa\x43\xcb\x1d\x74\xb4\x66\xd4\x4c\xfc\x2c\x05\xc7\x48\x07\xbd\x8b\x37\xb7\xa5\x39\x0b\x8a\x7a\xc3\xd3\xcd\x3a\xca\x5b\xbf\x5c\x3a\x2d\x56\x81\x97\x8a\xeb\xbe\xdd\x44\xbd\xb0\xd8\x0d\x46\xfe\x78\xc2\x69\xf6\x45\x0b\xd9\xee\x58\xde\xa9\x26\xd0\x67\x7e\xbe\x3b\x4c\xa2\x81\x28\xbd\xdb\xb0\xc2\xd9\x1f\xcf\x05\x27\x7e\x96\x99\xd4\xd6\x9f\x98\x67\x9b\x5e\x43\x38\xb7\x1f\x55\x22\xc5\x45\x2c\x5d\x92\xd2\x03\xe1\x0a\xf9\xf0\x53\x44\x7b\xb0\x7a\x79\x69\x3d\x6c\xd3\xc5\xe9\x87\xfe\xb2\xc9\x99\xa4\xc7\x92\xa1\x3b\x92\x86\x73\xde\x53\x3a\x69\x07\xba\x1c\x49\x73\x48\x29\x5e\xad\x84\xe3\xde\x03\x61\x77\x92\x9a\xc1\xdf\xed\xfe\xfd\xdd\xae\x7c\xf6\x60\x4f\x59\x68\xb0\x8f\x23\xf1\xf2\x30\x4e\x4d\xe5\xc7\xc9\xbf\x5c\x26\x6b\x81\xf4\xe7\x63\xbd\xc7\x95\xd3\xc2\xc1\x21\x06\x40\x71\xcc\xef\xb7\x1c\xf3\xea\x58\xe5\x94\xac\xb0\xa3\x48\x4c\x9b\x26\xc2\x1a\xb3\x60\xe9\xe6\x3b\x96\x2a\xe3\x82\xad\xf6\x4d\xc2\x3c\x18\x19\x80\xfc\x59\x0a\x4e\xe3\x60\x58\x3a\x11\xbe\x63\xa7\xe7\xd6\xbd\x4f\xd2\xd0\xb4\x40\xb1\x87\x6e\xc2\xb3\x55\xa4\x25\x8b\xb5\xd5\x0a\xf3\xf6\x97\x9e\x02\x01\x02\xa3\x03\xb3\x2c\x16\x86\xff\x45\xd9\xd8\xc4\xc7\x51\x88\x92\xe6\xdb\x98\x0c\xbe\x69\x6b\x21\xcd\x7d\x6a\xa3\xb6\x34\x2f\xbb\x7b\xce\x08\xed\x5e\x57\x32\x30\xa9\xc9\x18\x60\xb9\xdf\x29\x40\x54\xce\x0b\x17\xda\x68\xbc\x84\x39\x41\x51\x7e\xff\xaa\xca\x62\x0d\xf8\xac\xe8\x58\x9e\x84\xbb\x64\x63\xf8\xda\xd2\xbe\xe5\x49\x12\x4d\xbb\x5c\x28\x1a\x41\xac\x4a\xd3\xc1\x99\xe7\xb6\xb8\xd3\x45\x8c\xef\x13\x0a\x81\x28\xea\xb1\xbb\xe8\xe9\x74\x12\x19\x9e\xfb\x79\x8f\xc2\x33\x41\x42\x28\x8e\xfa\xdb\xf4\x0e\xe8\x0b\x98\x5e\x77\x87\xeb\xcb\x45\xb4\xb6\x4b\x31\x2e\xdf\xa7\x15\x6b\x9b\x40\x97\x66\x38\xd6\x7b\xb3\x74\x69\xf9\x37\x11\xad\xe2\x10\xdc\xd3\x68\xfa\xa1\x62\x5a\x56\x44\xa4\xfb\xee\x28\x2f\xcf\x29\x61\x8e\x73\x8d\xa8\x6c\xdf\x42\xb7\x98\xac\xfa\x69\x5f\x15\x5a\x8f\xd2\x9e\xe6\x6b\x75\x00\x2e\x9b\xc0\xcf\x8c\xca\x14\x1d\x53\x99\xa2\x26\xa9\xc6\x81\xe7\x29\xbf\x94\x1a\x8b\x7f\x45\xcc\x73\x4a\xe7\xf5\x4f\xa9\xa9\xb4\x1e\xbd\x8a\x25\x3c\xd5\x2f\x71\xa6\xf1\x13\x73\x07\x88\x84\x3a\x37\xa9\xd8\x40\xe4\x4d\xff\x0f\x7a\x67\xbe\xfe\x42\x64\xf9\xd8\xe4\x69\xe5\xe3\x86\x5c\xeb\xb2\x9c\x7c\xd5\x4f\x8a\x13\xb1\x7d\x94\x0f\x3c\xdf\x0d\x52\x93\x41\x31\xcb\x7a\x70\xdf\xd1\x48\xf1\xef\x28\xc6\xb6\x20\x0a\xe3\xca\xf6\x2d\x49\xa5\x04\x98\x6d\xbe\xd6\xe6\x39\x36\x41\x3f\xc9\x7d\xd6\x00\x41\xde\x1b\xf8\x5f\xbe\xde\x5e\xc3\x39\x38\x33\xd7\x7d\x61\xf1\x49\x9c\x8b\xa8\xec\xb1\xc3\x07\x9f\xeb\x86\x12\xcb\xf9\xc0\x53\xa5\xcd\xb7\x61\x1b\x24\xaf\xe2\x28\x92\x6f\x6c\x92\x5f\x01\x1f\xe3\x43\x8a\x6c\x39\xcb\xae\xba\xb0\xfe\x14\x66\x46\x04\x99\x54\x62\x1e\xcd\xcb\xcc\x04\x59\xdf\x4c\x8e\x83\xe8\x6d\x2a\x59\x23\x1f\xc7\x42\xbc\x9c\xc2\x23\xb4\x8b\x5d\x22\x4b\x33\xfb\xb7\x3e\x20\xd0\xcb\xd6\x07\xc8\xe8\xf2\x2b\x36\xe0\xe9\xfb\x16\xd0\x28\xf8\xaa\x75\x19\x11\xb5\x9e\x56\xcc\x8e\x9a\xd0\xee\x15\x93\xed\xed\xa8\xf2\x29\x3d\x28\x41\x7f\xfe\xeb\xbf\x86\x43\x44\x06\x13\x06\x11\x7f\x77\xdb\x71\x5e\xfe\xf2\x57\xe1\x97\x4b\x02\xa6\x63\x69\x22\x4f\x22\x54\x15\x74\xbe\x2a\x13\x44\x0c\xc6\xb5\x3d\xd8\x9a\xfe\xd9\x3d\x9b\x9f\xae\x3d\xae\xe6\xff\x9e\xe7\xe6\x9f\xa2\xbf\xe7\x6c\x31\x91\x26\xc1\x0a\xa7\x2c\xcd\xf0\x43\x13\x9b\xdb\x8b\x96\xf7\x8b\x0a\x22\x22\x91\x4e\xb3\x8e\x84\xd0\x3d\xd8\x28\x84\x55\xbf\x56\x92\xf5\xc2\xd3\x00\x1e\x42\x97\xdf\xff\x05\x8a\x45\x10\x97\x5c\x2b\x6b\xb4\x95\x8e\xa9\xf2\x21\x0c\x06\xec\xed\x1e\x20\x78\x2c\xe2\xc6\xd2\x62\x23\x11\x8e\x81\xb9\xd9\x08\x37\x97\x66\xba\x26\x22\x11\x2a\x9c\x97\x0c\x62\xa0\x47\x11\x40\xc3\x63\x0e\x5e\x16\xf6\xc1\x05\xac\x08\x2c\xf1\x44\xc2\x66\xe9\x10\x24\xfe\x98\x0e\x56\xc6\xb1\x96\x9d\x17\x44\x5f\x9f\x2d\x0b\xf3\xdc\x28\x14\xbe\x9f\x65\xc5\x18\x45\x30\x01\xe9\x5f\xd3\x07\x11\x4d\x37\xc2\x9d\x0f\x1a\x06\xe9\xe0\xcc\x62\x77\x58\x10\xbc\x8c\x73\xea\xd8\x0e\x50\x35\xe4\xeb\x16\x15\x84\xfd\xdd\x65\x3f\x3a\x24\xaf\x8f\xa3\xf2\x4a\xa9\x14\xdc\xaf\x34\x32\xba\x73\x07\xba\x7d\x83\x26\x63\x89\x69\x1c\x44\xf4\xac\x12\xb3\x59\x2e\xa2\x28\x09\x0e\xd1\x5f\x62\xab\xdd\xd6\xfb\xee\xb6\x13\x65\x32\x7e\xc6\x52\x92\x0e\x17\x7a\xc4\x73\x40\x8b\x23\x2a\x3a\xcc\xc3\x3c\x99\x72\x04\x1d\x2c\x5b\x8e\xa2\x21\xba\x8b\x50\x34\xbc\xde\xc8\x6c\x3f\xfd\x74\x77\x62\x62\x5b\x55\xc7\x2e\xfa\x63\x58\x15\xbe\x51\xbd\xa9\x2b\x66\xe8\x33\xf2\x4b\xe8\x57\x9d\x4b\xfc\x07\x70\x8e\x90\x3a\xbe\xac\xcd\xda\x86\xca\x29\x5f\xd6\x79\xe4\x8d\x16\xee\x97\x17\xbb\x59\x31\x81\x02\xa9\x05\xb5\xc0\xf4\xf2\x75\xe3\x1d\xf6\x2d\x74\x27\x49\x14\x66\xa3\x29\x07\x3d\x79\x4b\x81\x24\x7e\xbf\x54\xa1\xe1\xbb\x8d\xd2\x4b\x75\x88\x24\xe3\x49\x64\x48\x24\xd3\x09\x46\x1d\x57\x6c\xb2\xc7\x1b\x86\x6e\x7e\xbe\x9b\x9a\x6c\x92\xc4\x99\xb4\xb8\xb7\x65\x1c\xb6\x7f\xca\xaa\x2d\x8d\x8a\x6c\x4f\xe7\x9b\x5f\x77\x74\xbf\xf3\xf3\xb6\x69\x42\x71\xf0\x6e\x95\x9d\x5f\xda\x6f\xf5\x3f\x6c\xa6\xf3\xd9\xbf\xd2\x73\xd9\xc1\xbb\xa5\x92\xc0\xdb\x68\x23\x54\xf0\xd3\xd4\x8f\x87\xe4\x46\x77\x1c\xd0\xeb\xae\xe7\xf2\x54\x77\x1b\x4f\x3a\x77\x40\xe8\xf0\xc4\x90\x73\x91\x96\xde\x4f\x0a\xb6\xae\x97\x71\x58\x98\x34\x0d\xa3\x48\x7a\xd0\x85\x43\xd3\x75\x18\x9e\x6f\x6c\xd0\x6a\xab\x15\x79\x18\x91\x1c\x5f\x47\xa5\xa9\xe0\x23\x7f\x51\xee\x90\x24\xa4\xfc\x94\x16\x3c\x0c\xed\x15\xaf\x0e\x75\xb1\x24\xbb\x1f\xab\x27\x2c\x62\xa8\x0d\xe7\x6b\x74\xe2\x70\xdb\x67\xa9\xd1\xbd\x18\x7a\xdc\x4c\xf7\x54\x1e\xe9\x56\xe9\xea\xbc\xdc\xd0\xc4\x2c\xbc\xa5\xf2\x9f\x3e\x57\x10\xee\x1b\x9e\xf6\x59\x73\x93\xa6\xa8\x70\x59\x66\x72\xc0\x70\xf9\x5a\x69\x50\x11\xa1\xe7\xc3\x75\x49\xdb\xea\xe5\x80\x2d\x3e\xac\x44\xa7\xff\x44\x53\x21\x1c\xd6\xfd\xe4\x47\x3c\xc7\x77\x8c\x46\x44\x25\x67\x25\xeb\x06\x24\x8d\xf8\xa3\x1d\xe8\x85\xb7\x5a\xe5\x4b\xe2\xe6\x81\xcf\x09\x58\xdc\x87\x7a\x36\xd8\xfb\xa5\xaf\xba\xf4\xc5\x23\xeb\x4e\x59\xeb\xae\x16\x1e\x7b\x82\xea\xb0\x88\x4d\xbe\x5d\x3a\x42\xb0\xdb\x7c\x96\xa3\xe0\xf4\x28\x32\x1a\x38\xf0\x6e\x7a\x4e\x34\xf4\x12\x80\x76\xb6\xa2\xf6\x82\xed\x8a\xbb\x40\xb1\xa2\x9d\xb3\xca\xd6\xa1\x72\xc7\xb6\x94\xde\xf5\xee\xdf\x42\x09\x89\x53\x16\xa5\xc2\x24\x76\xd6\x1d\xec\xfe\x4c\x59\x79\x3a\xc2\xa7\x5b\x6d\x49\x21\x04\xa4\xe9\xb7\x7a\x7a\x73\x07\x9c\x72\xd5\x2f\xed\x77\x3d\x89\xd5\x09\x8b\x9c\xde\x19\x9d\xd1\xfd\xbc\x35\x3f\x90\xaa\x54\x1a\x16\xeb\xeb\xa5\x2b\xca\xbd\xde\xb0\x86\x73\x07\xba\xc9\x2b\x61\x3f\x7c\xd5\xa4\x53\xd5\xf8\xb1\x86\xae\xd2\x10\xbc\xa8\x8e\xe5\x73\x6a\xb1\x07\xc9\x78\x1c\x66\x59\x98\xc4\x7b\xd4\x91\xeb\xd5\xba\x4e\x15\x23\xd7\xb7\xb1\xf2\x11\xd8\x5e\x2d\x15\xa1\xd4\x69\x15\xbd\x5f\x26\xb7\x03\x8b\x64\x67\xef\x31\x95\x8c\x4b\x97\xc3\xd8\x28\x40\xe9\x4d\xcc\x0a\xbe\xe2\x70\xe9\x70\x95\x3b\x1a\x12\x4b\x2f\xbd\xd4\x9d\xa4\xc9\x78\x02\x5a\x6d\x5e\xe5\x9a\xca\x74\x53\x71\xfe\x37\xbd\x15\x42\x85\xa5\xb1\x1d\x56\x54\x20\xdf\x57\x6d\x5c\xef\x2b\x84\xc8\x28\x99\x80\x31\x0e\xcb\x1e\xf4\xd6\x7c\xdd\x98\x31\x12\xa9\xf6\x87\xa6\xbf\xd6\xd1\x5c\x3a\x9b\xaa\x0a\xb0\xd9\x38\x4d\x16\x16\xba\xc6\x4f\xc7\x7e\x6a\x45\xd8\xb6\x8e\x57\x26\x73\xeb\x78\xb9\x57\x52\x83\xbb\xa6\xf6\xff\x93\x6f\x70\x0a\xe0\xb6\xb7\xf3\x6b\xbc\xac\x6f\x2a\x00\x09\x96\xa8\x25\xb8\x55\xcc\x57\xca\x54\x8c\xc3\x3c\x45\x6c\xaf\xe0\x11\xae\x9c\xf2\x94\x73\xa3\xdc\x01\x80\xd7\x47\x5d\xea\x88\xae\x6b\x1d\x51\x42\xa7\xb1\x9f\xe5\x60\x3b\xb4\xad\x0e\x0a\x98\xb9\x7d\x06\xe7\xe7\xbb\xd9\x28\x1c\xf0\x57\x5b\x6f\xb7\x9a\x41\xa1\xbf\x55\x12\x7b\x45\x10\xa2\xea\x68\x4d\x95\xe5\xc4\x38\xd2\xa8\x20\xce\xcf\x77\xcd\x2b\x79\xea\x77\x1c\xf6\x12\x44\xcc\x7c\xad\x02\xe2\x98\x8a\xdc\x7b\x69\xcf\x5b\x3f\xb4\xf2\xb8\xb1\x08\xa6\x7a\xb4\x22\x85\x29\x87\x6c\x0e\x3c\xe0\xb3\x5a\x46\x5d\xf3\x83\xde\xc1\x3e\xe0\xbf\x52\x2d\x6d\x3f\xb5\x1a\x7a\x55\x44\xed\x8f\xa3\x30\x46\x07\x1d\x4c\x12\x34\xe8\x90\x26\xe8\x10\x1a\x43\x60\x61\xae\xaf\xa1\xc9\x6e\xbc\x6f\xa1\xbb\x3a\x4a\x28\xb3\xa1\x41\xef\xa8\x3f\x09\x64\x62\xfb\x87\x5e\x7a\xa9\xfa\x6f\xba\x66\x97\xbf\xf5\xad\xd5\xa6\x6f\x01\x52\xc6\x61\x30\x32\x1d\x05\x5f\x43\x77\x86\x10\x11\xe9\x42\xec\x20\xcf\x76\xa9\x52\xc9\xf9\xd2\x01\x0d\x2f\xe2\xd8\xc5\x11\xf9\x47\x48\xc9\xb2\x4e\xaa\xe7\xda\x10\x4e\xd5\x7a\x6a\x08\x62\x9c\x29\xfa\xa1\x37\xe9\x4f\xf9\xba\x7c\x52\x09\xe6\x67\x41\xb2\x42\xa4\x63\x1d\xb2\xfd\x88\x0e\x20\x6c\xc2\xd7\xa5\xc3\x30\x06\xc9\x64\x8d\xe4\x34\xaa\x68\xa1\x7a\x2f\x71\x85\x5d\xd2\xf8\x96\xe2\x41\x3e\x5e\x6e\x87\x3f\x8b\x6b\x46\x0f\xb8\x62\xe2\x6a\x35\x4d\xb9\xae\x19\xd6\x4e\x63\x1c\x66\xa9\x3d\x3e\x15\xce\x3e\xfb\xc2\xb3\x8a\x7c\x70\x53\x27\x22\x36\x6d\x32\x32\x4f\x26\x13\x4e\xc2\x28\xe2\x67\xa1\x63\x3b\xe3\xb9\xb4\xe2\x4a\x48\xfc\xc7\xd5\x88\x63\x6a\x2e\x63\xc4\xf9\x46\xb1\x6b\xd7\x55\x6c\x1f\xab\xf5\x6e\x87\x2b\x66\xaa\xee\x8d\xdb\xa9\xbe\xae\xc2\x94\xa3\x5f\xe8\xad\x66\xfe\x5a\xc6\xe4\x4c\x42\x1b\x56\x1d\xc0\x38\xbf\x41\xb6\x61\x5f\xb8\x3a\x60\x90\x8a\xff\x39\xe0\x9f\x71\x52\x72\xe1\x11\x16\xf9\x9a\x8d\x72\x72\x9f\xb2\x4c\x8e\x76\x04\x8f\x78\x49\x07\x09\x97\x74\x56\xaa\x08\xa3\xbe\x49\xb7\xad\xdc\xf9\x79\xbb\x72\x5d\xe8\x98\x44\x6b\xe3\x49\xc8\x15\x66\x61\x8c\xd1\xbd\x11\xa7\x95\x55\xa2\x8e\x25\xb4\x2d\xc0\xca\xfe\x2e\x56\x33\xe2\x3d\x0d\x98\x66\x10\x1b\xde\xfd\xdd\xd2\xa9\x3b\xfd\x2e\x19\x08\xfe\xff\x0d\xb8\xdd\xbe\x85\xee\xc8\x8c\x93\x34\x1d\xf9\x8e\xac\x43\x02\xd7\xea\x83\x7c\xad\x1a\x3a\x82\xd4\xf4\xc3\x3c\x49\xa9\xec\x67\x51\xb0\x2f\xb8\x1b\xcf\xd1\xe3\x5d\xa0\x27\x14\x6c\x5e\x1b\x19\x70\x3e\x22\x01\x95\xa9\xca\xb5\x43\xd6\xf5\xa8\x92\x04\x39\x4b\xcb\x47\xfa\x16\xb5\x9a\x52\x18\x1f\x42\xbf\x05\x0b\x65\xd3\x82\x81\xef\xd1\x59\x77\x31\x16\x23\x06\x60\x00\x19\xe7\x65\x75\x3b\xf7\x2d\xb0\x17\x86\x15\x0b\x67\xf9\x07\xe4\x53\x31\x9d\x34\xd5\x49\x39\xf5\xed\x39\xca\x18\x30\x34\xa3\xd3\xec\x1c\x12\x23\xc2\x3f\xad\xb8\x46\x76\xf4\x34\xd8\xe2\x43\xac\x41\x2c\x08\xc6\xe0\x63\x41\xde\x44\x9e\xc5\x26\x86\x17\x9f\x17\x28\xe1\x9f\xea\x1e\xc0\xe9\xf5\x56\x6e\xeb\x28\x0c\x0c\x2c\x0b\x20\x39\x17\x55\xa7\x19\x5c\x69\x3c\xda\x65\x4b\xf2\x66\x11\x77\xa4\x38\x87\x52\xe6\xd6\x69\x35\xc3\x2b\x49\xe4\xe7\x61\x64\xd0\x00\x8d\xb3\xe5\x9c\xea\x97\xd1\xc0\xbb\x5f\x56\x6c\xd4\xc7\x28\x7f\xc3\x7f\xaf\x18\xc6\xaa\xf5\x15\x52\x7c\x2e\x88\x5c\x8d\xc4\x62\x7a\x79\xab\xdf\xe6\x48\x67\xe1\xd1\x28\x4a\x17\x51\x98\xbd\x57\xba\x82\xdd\xd8\x8f\x7d\x71\x21\x68\x41\xf0\xb4\x28\x4d\xb6\x73\x2a\xc9\x76\xc8\x18\x2a\x9e\xcd\xe9\xa8\x69\xc1\x72\xe6\xb7\x00\x92\x72\x3f\x1d\x9a\x7c\xca\x1d\x2f\xef\x95\x8a\x4b\xe1\x98\xe2\x4e\xbe\xa0\x93\x74\x2f\x23\xed\x02\xaf\x74\x47\x4f\x71\x58\xec\x58\xd7\x05\xff\x6c\xb7\xab\x76\xde\xd3\x28\x96\x6b\x18\x0a\x64\x16\xff\x2a\xd1\x92\x60\x5d\x5d\x70\xed\xaf\xff\xfb\x13\xc8\xa5\xc9\x92\x7e\x4c\x11\x3c\x15\x59\xc8\xf0\x04\x06\xc1\x7b\xae\xa1\xf9\x5c\x63\x2f\xce\x1d\xa8\xc2\x80\x22\xee\x17\x93\x8e\x02\x2e\xd2\x67\x04\xc4\xd8\x82\x1e\xff\x56\xc1\x6d\x33\xd8\xe3\x1f\xb1\x25\xe3\x8a\x47\xe9\x7e\xf1\xb4\xee\x0f\xdb\xd1\x73\x0f\xba\xe2\xa7\x61\xc2\x32\x95\xec\x8f\x90\x6f\xb1\x75\x4e\x09\xb0\x5d\x2e\x15\xab\x36\x83\x6a\x05\x74\x5d\xad\x39\xcb\xeb\xee\x22\xe0\x3b\x0a\xbf\x8f\xee\x43\x14\x72\x6e\x7b\xdb\x30\xe9\x4b\x33\x84\xa4\xdd\x43\xbf\x80\xc5\x7b\x17\xdb\x18\xd9\x84\xd7\xe9\x8b\xa4\x0f\xd7\xe5\x0d\x8e\x54\x6f\xb7\x75\x51\xf3\x65\x5d\xd2\x6d\xef\x9a\xaf\x71\xd9\xfc\x4c\xa1\x2c\xe7\x2e\x84\x63\x92\x8c\xaf\x96\xf3\x2e\xe7\x40\x6f\xc0\xdb\xc2\xf4\xff\x0f\x65\x5d\x17\x6a\x69\x86\xd1\x51\x1b\x75\x74\x54\x1b\xd2\x7b\x10\xf9\x43\x94\x8e\x85\xfd\xa3\xa3\xf8\x42\x5a\x24\x2a\x40\x44\x2b\x69\x38\x86\xfb\x97\x8a\x32\x63\xc3\x1e\xea\x41\xea\xc7\x87\x50\xfc\xb1\x90\xd5\x0b\xb5\xdd\x51\x6b\x63\xcd\x93\x69\x57\x82\xfb\xbd\x52\x09\x1b\x7c\x5a\xba\x3a\xdd\xef\x69\x68\xee\xa7\x6a\x7f\x2d\x17\x50\x5c\xb1\x30\xd3\x6a\xe3\xc0\x87\x3d\xa1\x70\x0b\xe0\x9a\x46\x18\xdd\xa4\xc0\x9b\x9d\xed\x06\x51\x42\xbc\x41\xd3\xae\xab\x80\xa1\x93\x02\xab\x73\xe6\xf4\xc1\x9e\xeb\x73\x38\xda\x66\x2a\x46\x8e\xcf\x9b\xc9\x03\x3d\xf7\x8e\x2f\x35\x3e\x41\x00\xee\x41\xc8\x5d\xd0\xbc\xaa\xe8\x13\xb2\xc2\x14\x10\xdf\xe4\x39\x29\xe0\x56\xa1\x83\xf6\xdb\x61\xe2\x80\x08\x82\x1b\x73\x45\x2b\x78\xff\xb4\x2d\x7c\x5c\x0e\xfb\x7d\xcb\x95\x84\xed\x02\xef\x4b\x34\xe1\x5c\x21\xee\xb7\x6d\x4c\xb1\x5c\xa4\x7d\x13\x67\xc9\x98\x41\x32\x96\x5e\x68\x49\xb2\x82\xef\x95\xae\x7c\xbf\xa5\xb0\x85\xc7\x14\xbd\x46\x6a\x20\xc7\xe3\xc7\xd3\x4a\xa6\xeb\x0e\x16\x38\xef\x3e\xfa\x1a\x5c\xe3\xbd\x80\x67\x9a\x5e\xb7\xf2\x5c\x45\x8a\x55\x06\xf0\xc9\x9e\x9e\x03\xa2\xec\x59\xd7\x18\xe3\x2c\xf7\x8b\xd4\xa7\x2a\xbd\xa3\xe8\x3f\xab\x98\x0b\xcf\x7a\x4e\x7c\xfa\xb4\x9a\xac\xd3\x8e\x12\x75\x14\x4e\x22\x3f\x1b\x29\x96\xf6\xd7\x60\x99\x45\x06\xb7\x85\x99\x7a\xe0\x67\xc8\x1b\x38\x99\xa5\x45\x6b\x46\x95\x06\x84\xf7\x55\x57\xdb\xeb\xaf\x98\x34\x0f\x33\x41\x15\x54\xcf\x2b\x8a\x78\x0e\x35\xf3\x3a\xbc\x0d\x8d\x87\x13\x09\x3d\x17\xcd\xbc\x9c\xc4\x7e\x3e\xf2\xe3\x29\x0d\x27\xb9\xa5\xa1\xc2\x4c\x5a\x85\x71\x9d\x6a\xec\x8b\x03\xcf\x77\xb3\x71\x92\xe4\xa3\x08\x72\x0b\xc8\xb9\x9d\x57\xad\x3a\x57\x95\xbe\xe3\xfb\x2a\xd0\xf8\x7b\xcf\xfe\xfd\x4e\xe5\x83\xe3\xd4\x42\x45\x83\xaf\x6b\xad\x19\x93\xd0\x74\x34\xdc\x78\x53\xf7\x51\x6d\x7a\xae\x8e\x93\xe5\x4a\x5f\x4b\x0c\x55\x47\xd1\x17\x3d\xa1\xb6\x88\x94\x26\xd0\x9c\xa4\x65\x82\x91\x4e\x7a\x1b\x66\x46\x0a\x15\xca\xcf\x4e\xfd\x70\x48\x07\x31\xac\xda\x4e\x5a\x51\x56\xdd\x75\xd6\x89\xff\x74\xbe\xf9\x75\x8b\x5e\xae\x86\x03\xa6\xe5\x33\x4d\xd9\x77\x5e\xa1\xfd\xc7\x26\xcb\x4c\x15\x48\x74\x1c\x63\x4d\xbd\xe3\xa2\x8d\x81\x3c\xf6\x97\xab\x28\x93\x47\x48\x24\x96\xe9\x27\xf8\xc6\xb3\xc4\x8c\x66\x92\x85\xb4\xd4\x10\xa6\x7d\xa8\xd1\xd2\xf7\x35\x4f\xd8\x54\x4f\xe9\xf5\x25\x93\xd0\x4f\xd7\x10\x40\x23\xb7\x75\x9d\x36\x2c\xa2\xa2\x1d\xc8\x7d\xe2\x50\xdb\x50\x2c\x1c\x3b\xd6\x15\xf1\x4c\x33\x30\x3b\xf0\x7c\xf7\x5b\x85\x9f\xe6\x26\xad\x16\x8e\xed\x95\x01\x23\x96\x9c\xe4\x16\x54\xf8\x77\xb7\x1a\x59\xb3\x2a\x1c\x29\xc6\x45\xc4\x2a\x45\xb0\x67\x97\x34\xfd\xff\x25\xef\xcb\x4a\x9e\x30\xce\x4d\xdc\x27\x08\xce\x73\x7c\x42\xd3\xa9\x6c\x31\x62\xce\x1e\xfd\x65\xa9\x2c\xc0\x05\xd5\x91\x39\x31\x7e\x56\x59\x88\x3d\x9d\xd9\x59\xf6\xe9\xae\x79\xea\x2d\x2f\x2b\xae\x80\x7b\x9e\xa3\xdd\xba\x56\x6a\xb7\xc7\x85\xae\x77\x29\x19\xc9\xda\xa9\x0a\x82\x16\xf8\x45\x66\x90\x8a\xe2\xa2\xb2\xda\x1c\xe7\xac\x4c\x64\x96\x1b\x13\x8d\xfd\x43\x55\xe8\x49\x67\x9a\x98\x50\x85\x3e\x38\xd6\x38\xdb\x9f\xe9\x4e\x8a\x6c\x84\x6d\x62\xa7\x47\x2b\x03\x1c\x55\x7b\x34\x37\xc1\x54\xb5\x8c\x59\x8b\xb8\xb4\x19\xbd\xff\xf6\x89\x9e\xa2\x32\xf8\x72\x03\x22\x3b\x77\xa0\x3b\x32\xd1\x24\x32\x19\x18\x1a\x25\x8f\xe2\x52\x82\x77\x15\x4d\xd2\xa5\x96\x16\x91\xa5\xae\x9f\xe7\x45\xcc\x48\x26\xac\x2f\x10\xd3\xdb\x56\xac\xea\x99\x11\xb1\x5c\x6c\xa4\xdd\x0e\x3c\xdf\x35\xdf\x2a\x7c\x80\x2a\x2c\x80\xc1\xa6\x94\x6e\x58\xa3\x1d\x27\xb1\x59\xa1\xb2\xd2\x36\x2e\x01\xbe\x6e\x0c\xe0\xfc\x7c\x37\x36\xe1\x50\x4b\x73\x42\x16\x5e\xba\xf9\x5a\x32\x5c\x79\x38\x0e\xfb\x21\x27\x24\x51\x73\xf8\xb6\x22\x68\xfc\x76\x5b\x42\x32\x35\x99\x94\x10\xdb\x54\xcc\x15\x7d\x55\x32\x36\xab\x23\x3f\xdf\xab\x6a\xf0\xbb\x00\xcb\xb7\x9d\x48\xce\x33\xd2\xdd\x06\x4c\xa9\xa1\xe5\x88\x11\x19\x3e\x41\x46\x0d\x40\x81\x5d\xd8\xc8\x02\x37\x69\x13\xa0\xcd\x26\x26\x08\xfd\x88\xda\xe8\x5d\x32\xc6\x73\xb5\xe4\xa3\x8a\x80\x2d\x89\x4d\x1e\x8e\xa1\xa2\x68\x5b\xa0\x5d\x4f\x13\x72\x99\xdc\xa7\xa9\x04\xd7\x72\x13\x99\x61\xea\x4f\x46\x9c\x77\x42\x40\x7c\x94\x56\x04\x5f\x97\xdb\x89\xb4\xaa\x67\x5b\x0e\x89\xc0\x30\x8e\x85\xfd\x4f\x22\x87\xea\xf7\xc5\x3b\xfa\x22\x5e\xd2\x70\x4c\x65\x5c\x85\xa6\x07\x51\xa4\xc8\x81\xb7\xa0\xd5\x48\x1a\x9d\x7e\x08\x1d\xd6\x47\x54\x47\xbf\xe6\x5f\x5c\xa5\x8c\xb6\x64\x26\xb1\xbe\x6f\xa8\xc4\xc1\x5b\x35\x31\x33\x9d\xf7\x53\xfa\x2a\x0f\xae\x37\x90\xf6\x4b\x8b\x04\x7c\x32\x29\x5a\x56\x30\xe9\x5c\x4e\xc7\x1c\xde\xf6\x94\xd6\xfb\xa9\x72\x7b\x9e\x67\xee\x40\x97\x18\x1f\x73\x3f\x8c\xad\xe7\x27\xd9\x5b\x07\xfc\xeb\xd0\x12\xe1\x0e\x20\x85\xf5\x8c\xaa\x18\x38\xdd\x4d\x3f\x81\x42\x12\x6b\x4a\xf2\x0d\xd6\x22\xcb\xb8\xa2\xa4\x05\xc7\xee\x96\xda\x10\x67\x4b\x27\xdd\x74\xbc\x31\x3b\xb3\xb3\xdd\xe5\x24\xee\x8f\x92\xa8\x6f\x6d\x9f\xc4\xbb\xaa\x05\x5d\xc7\xd8\x0b\xd5\xaa\xb1\x14\x6d\xe7\xeb\x52\x0f\xcd\x25\x5d\x9d\x17\x83\x30\x0b\xfc\xbc\xde\xbe\xac\x55\xbd\x18\x56\x29\x4a\x5b\xdb\xd7\xde\x81\xe7\xbb\x63\x3f\x2e\x06\x7e\x90\x17\xa9\x49\x99\x7e\x45\xd4\x0a\xd5\x82\xbf\xec\xe9\xd2\x4c\x53\x67\x64\xee\x40\x37\xf5\xe3\x7e\x32\x66\x1c\x05\x6a\x5f\xc7\x94\x4a\xca\x31\xc5\xaf\x15\x99\xfe\x5e\x17\x86\xbc\x59\x2a\x02\x84\x6b\x0e\x8a\x33\x7d\xb7\x86\x9f\x51\x78\x7f\x2e\xa8\xc0\xca\x5c\xf3\x1c\x3f\xf5\xbd\x9a\xec\xfa\x8f\x54\x0e\x68\xec\x87\x51\x9a\x24\xcc\xeb\x25\xbc\x91\x35\xfd\xf2\xbf\x62\x21\xe5\x45\x4c\x85\xe4\x95\x24\x2a\x88\x9f\x23\x05\x76\x5a\xb8\xdc\x9c\xe7\x7c\xca\xfa\x2d\x7e\xbf\x88\xe0\x22\x0b\x2f\x4a\xc7\x4a\x31\xfc\x2f\xe4\x20\x89\xa7\xfa\x55\x15\x3b\x8c\xc0\x7f\x47\x25\x95\x69\x07\x89\x38\x5c\xe7\x3a\x72\xbd\x63\xbb\x7a\xae\xe6\x7e\xa5\x11\x09\xed\x5b\xe8\x0e\xfc\x28\x33\x0c\xf5\x16\x36\x9e\x6a\x3e\x84\xa6\xc7\x85\xf0\x43\x13\x9b\x6c\x0f\xfd\x8e\x45\x9b\xbe\x30\x77\x80\xc3\x0e\x34\xd7\x58\xf4\x8f\x65\x1b\xb8\x5e\x6a\xe0\x2a\x2f\x0a\x81\x19\x6b\xc0\x90\x84\x36\x2b\xe1\x8a\x3f\xed\x5a\xa1\xce\xd3\x21\x84\xc9\x82\x9a\x2e\x72\x9c\x47\x4b\x85\x00\xbb\xd5\xd8\x4c\x07\x67\x16\xba\xfd\x30\xa3\x56\xba\x02\x49\x20\xf6\x4d\x15\x52\xe7\xbc\xb2\xdf\xcb\x61\xb0\x16\x44\xe2\x93\xc3\x4b\x7a\x5b\xbb\x4c\x6f\xeb\xec\x6b\x1a\xfa\xd1\x6e\xe7\xfe\x5c\x57\xb2\x93\xbf\xa6\x90\xe5\x97\x90\x46\x41\x32\xe8\x9e\x82\x2a\xfc\x9a\xa7\xba\x3b\x9a\x79\xa5\xa5\x99\x6e\x1e\x8a\xcf\x2f\x8c\xc9\xb4\x2f\x85\x4b\xb9\x85\xf0\xbb\x6f\xaa\x97\x5d\xc3\x7a\x15\x9d\x95\xea\x19\xf9\xba\x41\xb2\xb9\x6f\xa1\x3b\x4c\xa2\xfe\xb4\x66\xda\x52\x82\x0e\x08\x01\x6c\x7f\x6e\xf5\xeb\x92\xd8\xdf\x96\x40\x9a\x9f\x5f\xaa\x0e\xa5\x69\xd5\x17\x79\xb6\x54\xd9\xa4\xcb\x4a\xac\xf8\x5d\xcd\x57\x72\xa2\x6d\x45\xf6\x4d\x06\xf5\x69\x9b\xc3\xe6\xe4\x21\xdf\x34\xd8\x4b\x66\x67\x51\xe6\x9c\x72\x14\x69\xcc\x5e\x62\x63\x16\xeb\x9c\x3a\xed\xec\xbe\x99\x28\xd0\x2d\x66\x65\x67\x4f\xd1\x87\xee\x54\x59\xca\x45\x9f\x8f\x4b\xe4\x04\xde\xc7\x4b\xf0\x8d\x4a\xae\x56\x61\xef\x74\xe5\x47\xc3\x9b\xbb\xe1\xe9\xd3\x0a\xc6\x83\xff\x85\x9e\x49\x8e\xb1\x16\xe3\x38\x48\x43\x13\xf7\xab\x28\xc2\x8a\x6b\x01\x8c\x84\x1f\xdd\x4d\xe5\x4b\x14\x4d\xb7\x14\x77\xef\xa1\x62\x8c\xc4\x80\xad\xf6\xba\x84\xa0\xa3\x0e\x0e\xc2\x34\x28\xc6\x2b\x0e\x1f\x88\xea\xd1\x15\x3c\x21\xdf\x34\xf6\xd4\xfc\xfc\xfe\xee\xc4\xa4\x83\x24\x1d\xdb\x4a\x09\xca\x4b\xaf\x29\x8e\xea\xd7\xd4\x70\x8c\x7c\x42\xd6\xb8\x4a\x9b\xae\x48\xb5\xf4\x4f\x27\x45\x4e\x02\x2c\xbb\xd4\xb0\x7d\x4a\x6b\x18\xcb\x90\xe1\x44\xfa\x64\x15\x16\x35\xdd\x9d\xe5\xc2\xda\x49\x91\x66\x3f\xa3\x10\xaf\x84\xd4\x2a\xa7\xe5\x81\x2a\xce\x65\xc0\x6f\xa9\x54\xef\xf0\x4b\x38\x7e\x77\x53\xcb\x33\xff\x7f\x85\x8a\xfd\x15\xd6\x46\xd0\x24\xe3\x70\x4c\xa6\xb0\x7a\x2d\xf3\xb0\x92\x26\x90\xc2\x63\x10\x25\xb1\x00\xad\x84\x88\xaf\xc6\xd0\xf7\xb0\xad\x50\xae\xc6\xd9\x34\x6c\x14\x97\x74\xf0\x0c\xac\x6f\x4a\xf3\x50\xd3\x3a\x95\xc2\x8f\xb2\x74\x49\x32\x96\x5a\x36\x8a\x5b\xf0\xbd\xf8\xba\x0d\x3e\x9e\x0c\x06\x99\x6e\x24\x05\xe6\x03\xf1\x1b\x5f\xb7\xd2\x0f\xf8\xac\xc6\x25\x45\x40\x7a\x27\xc4\x36\xbf\xab\x94\x15\x9b\xc8\x85\x85\x85\x6e\x31\x19\x85\xfc\x71\x58\x91\xc3\xaa\x9e\x89\xa0\x47\x58\x0d\xbe\xac\x92\xfe\x2b\xc6\x11\xcf\x8b\x36\x20\xc6\x0b\x69\xcb\xab\xf4\xae\x22\xdd\xa6\x74\xbe\xae\xb6\xb5\xc2\xc6\xe6\x95\x7c\xda\xb1\x90\xfe\xa5\x22\xbe\x45\x95\x8f\xbb\x49\x35\x03\xde\xbf\xb3\x47\xbc\xf1\xd3\x98\x37\x98\x2c\x59\xc5\x86\x7d\x4b\x45\xa4\x71\x18\x4f\x29\x8a\x10\x84\x6a\x38\xff\x89\x92\xc4\xfe\x7f\x95\x51\xf7\xb3\x10\xb0\x35\x2c\xcc\xcf\x28\x17\xc6\xd7\xaa\x9f\x7f\x25\x34\xab\x02\xd4\x15\x12\x9e\x8e\x6d\x9e\xbc\x50\xaf\x9e\x37\x79\x95\x5f\xec\xbe\x5c\xf4\x87\x0c\x49\x10\x32\x20\x87\x55\x3c\xaa\x30\x3c\x93\xc8\x5f\x7b\x58\x8d\xe8\x51\xc4\x61\x40\x02\xde\x50\x7d\x75\x0f\xf6\x94\x04\xd5\xce\x9e\xea\xc4\x43\x53\x07\xab\x50\x52\xda\x09\x2f\x3e\xbd\xae\xfa\x8a\xb6\x3c\x07\x3a\x45\x6f\x32\xd2\x78\x3b\xd7\x15\x7b\x11\xb3\x09\x48\xc2\xb3\x25\x12\x1d\x24\x51\x94\xac\xa2\x18\x60\x4b\x8f\xd5\xaf\x08\x9a\xa8\x0d\x4e\x53\x84\xa4\xd1\x64\xb3\xd5\x27\xb0\xeb\xa5\xe5\xdd\x26\x31\x26\x26\xc8\xfd\xa0\x88\x7c\x08\x3a\x89\x12\x7c\x47\x49\xc4\xb7\x14\x93\x8c\x9f\x46\x18\xe9\xd6\xce\xff\x16\x70\xf3\xc8\xef\x2b\x8e\xb7\x33\x3a\xbd\x77\xc6\x36\xe0\xfa\x79\x9e\xa4\xb1\x59\x9b\xd2\xe2\x0d\x58\x63\xe2\xf2\xd1\xef\x08\x87\xa5\x3b\x4e\xfc\x61\x38\xc1\x08\x49\xab\x05\x4d\xa9\xf4\x5a\x48\x66\x9c\x11\x6d\xe2\xf6\x62\x06\xee\xd0\xdb\xf2\xb5\x6d\xe4\xf2\x03\xea\x75\xa1\x63\x0d\x73\x0b\xa8\x83\xe0\x6d\xe9\x41\x44\xb4\xed\x61\xdb\x25\xd6\x37\xc9\x54\x1d\x7a\x66\xd9\x6f\x18\x5b\x88\x34\xcf\xc9\x36\x92\x98\x2a\xee\xc9\xc2\xbe\x30\xf3\x2f\xb2\x83\xf3\x6e\xa9\x14\x33\xde\x55\xed\x28\xfd\xa2\x1f\xb1\xa8\x2c\xd7\x15\xf1\x13\x52\x64\x74\xd5\x2a\x14\x25\x6c\xed\x75\x41\x57\x63\xe6\x2c\xe9\x87\x3b\x66\xfc\xfe\x38\xcc\x3b\x95\x83\x20\xb1\xb6\xd3\xd0\xb9\xa5\x93\x1f\xb9\x49\xa3\x30\x1e\x02\x35\x55\xcb\x49\x62\xd7\x70\x9f\x33\xcb\x4a\xd0\x08\xda\x06\x4c\x07\x6d\x79\xc7\x73\xf2\xd1\x12\x90\xf1\xbf\x94\x2e\x03\x73\x4f\x75\x71\xad\x84\x26\x8f\xfd\xb1\xc9\x6a\xe2\xa7\x1b\x4a\xb5\x69\x43\xb5\x33\x6d\xe8\xca\xf5\x46\x23\x5b\xb5\x34\xd3\x1d\xf9\x44\x0a\x73\x50\x70\xa8\xa7\x55\x46\xf2\xb4\x4a\x42\x0a\x64\x9b\x3a\xf5\xe0\xe2\x70\x23\x3f\x8a\x06\xb7\xb0\xcf\xf8\x86\xbe\xc4\xd6\x06\x6c\x1b\x16\xcb\xff\xc1\x47\x06\xc0\x8b\x73\xae\xaa\x85\xa8\x6f\x02\xbf\x6f\x62\xc8\x3e\xf0\x17\x9e\x51\x54\x35\x67\x5a\xc9\x42\xfd\xa2\xcf\xe8\x38\xf6\xc5\xc8\xda\x8a\x5f\xf6\xe4\x76\x32\xcc\xc5\xee\xd3\x4f\xef\xad\x02\x17\x9c\xc5\x9f\x81\x66\x0b\x6b\xf7\x8a\xe7\x30\x3a\x47\xbc\xce\xd3\x4f\xeb\xcd\xfb\xa2\x23\x2e\x70\xf8\x08\x36\xd2\x08\x1d\x44\x5d\x8a\xfb\x8f\xb4\xda\x5e\x9e\x81\x9f\x5e\x49\xe0\xc8\xc6\x65\x00\x10\x6a\x3b\xff\x1d\x65\x71\x2d\xf3\xb9\x13\x23\xfb\x4f\xe0\xaa\x20\x13\x30\xbd\xee\x04\x68\x7f\x9b\x96\x0b\x59\xd9\xe3\x5f\x5d\x17\xb7\x25\x5b\x0d\xf3\x60\x44\x47\x34\x10\x2a\x88\x36\x99\x69\x43\x49\x27\xdc\xab\x95\x3e\xb2\x22\x9e\xa6\xa9\xc5\xfe\x3d\x49\x41\xbb\x5c\xd3\x33\xf3\x8d\xe7\xc2\xc8\x93\xea\x9c\xa9\x42\xa3\x69\x97\xf4\xfc\x1c\x4b\x43\x54\xe8\x5c\xfe\xf2\x73\xbd\xbf\x8f\x28\xea\x9d\x22\xee\x9b\x74\xc5\x8f\x8a\xca\x1e\x54\x6e\x1e\xf2\x58\xb7\x3c\xc7\x3d\x78\xab\x7c\x5c\x41\x76\xe3\x3c\x8c\x0b\x3f\xc2\x1f\xdb\xe3\x7f\xdf\x82\xcd\x2e\x38\xef\x0a\xd0\xa0\x6c\xca\xc5\xe6\x4c\xac\x82\x4d\x7c\xb7\x96\xa0\xfb\xb2\x6a\x29\xcf\x4d\x1a\xfb\x11\xa5\x85\x31\x98\x53\x68\x19\xb2\x38\x22\x1b\xc3\xdc\xb4\x0e\x46\x30\xf2\x07\x2c\x6a\x88\x34\x3a\x94\x6d\xf9\xba\x0d\xe9\x3c\x4e\x62\x2a\x6a\x29\xdd\x4a\x6c\x49\x5b\x95\x5f\x72\xcf\xed\x1e\x6f\x40\xa2\xca\x71\xde\x69\x0a\x38\xf2\x8d\xe7\x74\x11\x57\x93\x43\x80\x1c\x23\xbc\x85\x22\x89\x1c\xaa\xf4\x4e\xb0\x41\xc7\xec\xa1\x90\x10\x0a\x96\x1d\x60\xd6\xb9\xa4\x4f\x89\xe6\xe5\x23\x2a\x4e\x8f\xa2\x2f\xa9\xf2\x34\xc7\xc5\xb6\xf6\x53\x7d\x3d\xdc\x9c\xdb\x48\x4f\x60\x3f\xfd\xb9\x82\xf0\x22\x8e\x12\xed\x00\xec\x26\x89\xca\x14\xfb\xc1\x1b\xe5\xf6\xd0\x68\xd1\x86\x75\xd5\xec\xc2\xea\x9d\x2a\x9d\x99\xb9\x48\xb6\x88\xe5\x6a\xea\xb1\x54\x4b\xb0\x33\x4c\x92\x7e\x6c\x32\x54\x44\xe0\x8d\x9d\xf5\x14\x85\xcd\x59\x1b\xaa\x06\xc9\x78\x5c\x59\xac\xbe\x96\x6f\xe1\xb3\x5e\x68\xa3\x5c\x84\xf0\x4a\x18\x6b\x81\xc2\x73\x0a\x83\x72\x4e\xe3\x73\x5e\x7d\x95\x00\x16\x38\x6b\xf7\xf6\x94\x67\x0a\x39\x39\xed\x91\x21\x49\x73\x52\x75\xfb\x6c\x2a\x75\x90\xd5\x30\xaf\x5e\xc4\x20\xcf\xc2\x79\xc4\x5a\x4e\xb1\x8d\x1f\x2d\x09\xc8\x95\xb2\x38\xbd\x7f\xee\xb9\xd6\xd4\x7f\xde\xd6\xf6\xe2\xc7\x71\x52\xc4\x01\x97\x12\xdb\x30\xdf\xae\xf1\x6a\x79\x2d\x85\x63\x84\x53\x91\xfd\x0a\xbe\xf1\xbe\xa2\x32\x39\x49\xb1\x1c\x19\xa9\x37\x29\xf5\x14\x25\x4a\xb0\x59\xd6\x09\x0f\xf2\xff\xbf\xea\x65\xff\x61\x59\x99\x70\x4b\xf2\xbd\xb4\xb8\xb5\x8b\xfa\x2e\x44\x47\x95\xbe\x13\x3b\x6a\x2f\xc5\x8e\xd2\xd8\xa3\xf8\xc4\xdf\xa4\xae\x4e\xb1\x42\x0a\xaa\xb9\x6b\x9d\x5a\x2d\x70\x8a\xfc\x89\x86\xf8\xf5\x3a\x2f\x2c\xda\x9c\x46\x75\xd2\x00\xab\xd3\x81\x05\x97\x1e\xba\xea\xa4\x81\xbb\x37\x0d\xbd\x3d\xe4\x46\xb7\x98\x5d\x0b\xb6\x95\xf3\x78\x88\xa6\x76\x93\xbe\x3c\x1e\x7e\x0b\x29\x75\x78\x09\xd3\x04\xc0\x82\x67\xcf\xa2\xbf\xb4\x3b\xbf\xf3\xe5\x75\x62\x67\x52\xc0\x21\x11\xbc\xbf\x8b\xed\xc4\x02\xea\xa5\x1b\xd0\x5b\x38\x0f\x91\xf8\xec\x30\x4a\x10\x9f\x39\xae\x74\x81\x72\x82\x0d\x93\x00\x5d\x35\x24\x96\xf0\xb6\x1a\x51\x21\xbc\x75\x58\xfa\x2a\x5e\x4c\xb2\x64\x32\x0a\x0d\xcc\xaf\x12\xfa\x97\x38\xf8\x86\x62\x92\x3e\xac\xfa\xe7\x26\xd5\xf6\x9a\x76\xf2\xbf\x90\x10\x40\x4e\xec\xb2\xd7\xd1\x4d\xe7\xfb\xa4\xf1\xf2\xa2\x05\xcb\x9a\x57\x92\x58\x21\x0a\xd9\xc3\xbf\x8c\x0d\xca\x37\xad\x65\xee\x41\x52\x08\x73\x97\x30\x86\xd6\x94\xdb\xce\x58\x0b\x99\xfb\xaf\xf8\xcb\x91\x99\x52\x6c\x93\x67\x55\xfb\xc5\xae\x9e\x73\x56\xef\xd9\x0f\x85\x71\x9c\x4c\xfc\xa0\xe3\x4a\x1a\xc7\x34\xca\xe0\x98\xf2\xbf\xc6\x7e\x1e\x00\x05\xb4\x24\xb8\xf1\x53\x0a\x65\xf0\x53\xb5\x9b\x7f\xaa\xac\xdc\xa9\xb6\x6c\x01\x69\x5c\x67\x79\x18\x45\x8a\x84\x13\x7c\x95\x7c\xbd\x6e\x45\x91\x8a\xc1\xc0\x6e\x3c\x09\xe7\x69\xb2\xa5\xdd\xd9\xe5\x72\xe8\x6b\xa7\x1d\xa8\x91\xbb\x2f\xf8\x86\x8e\x63\x0c\xc0\x1d\x62\xde\xe0\xeb\x46\x05\x83\x14\x59\xe3\x2c\x4f\x8b\xca\x6d\xaf\x0e\xf5\x6a\x48\x71\xe4\xfe\xb8\x74\xc7\xef\x8f\x55\xea\x7b\x94\x10\x03\xef\x92\x84\x62\xa7\x14\xe8\xec\x8e\x12\xb5\xba\x5e\xba\x60\xef\x82\x02\x7e\xbf\x55\xba\x4d\x75\x5b\xf5\x9f\x05\xfe\x78\xe2\xc7\x26\x0d\xb3\x5a\xd4\xc7\x1e\x9e\xc4\x80\xee\xf0\x1b\x44\x3e\x40\x5f\x22\x37\x4f\x0b\x07\x51\xf1\xe1\x52\xf9\x7e\x37\x14\x13\xfe\x2f\xab\x17\xc9\x93\xdc\x8f\x1e\x56\x1d\xa5\x37\x15\xb6\x61\xba\xa7\x24\x4c\x5e\xc3\xe8\xa2\x59\xe2\xb8\x42\x4e\xb2\xd4\x93\xd5\x99\x5d\x12\xca\xbb\x23\xd8\x68\x78\xfb\xa3\xf4\xf6\xfc\x0f\x35\xb4\x10\xbf\x1c\xf6\xe0\x45\xaf\x86\x5c\x50\xd5\x17\x93\x65\xfe\xd0\x30\xa2\x15\x79\x4e\x60\xe9\xf8\xda\x22\x64\x52\xe3\xab\x3e\xc5\x2d\xa8\x8e\x6f\x5d\x74\x5a\xc7\x45\x9e\xa3\x5a\x6f\xab\xda\x56\x3b\xe5\x8f\x61\x9d\xe1\xa7\x5c\x6a\xc4\xd7\x0b\x0b\xdd\xd4\x8f\x51\x71\x84\xbb\x8d\x3a\xa9\x34\x5c\xd0\x40\xc0\x91\x9f\xee\x6d\x3f\xb0\x66\x67\xbb\x43\x3f\xed\x1b\xd7\x01\x85\x83\xf3\x9a\xe2\x84\xbf\xa6\xf8\x33\xcd\x2b\x81\x31\x7d\x52\xce\x84\xcb\xce\x29\x48\x69\x16\xa9\xc6\x53\xb0\x12\x4f\x2a\x04\xc8\x78\x5c\xc4\xf4\xfe\xd3\xae\xb8\xcd\x6e\x16\x2b\xb4\xd3\x14\x8b\x5a\x7b\x75\x22\xf0\x1f\x79\x2e\x8e\xf5\x03\x12\x38\x89\xab\x61\xac\x9e\x00\xb3\x7b\x14\x58\x2b\xbe\x69\x6b\xef\xcd\x56\x8d\xc9\x79\xf1\x5a\xb2\x38\x95\x6d\x6d\x49\xa1\xa0\xf5\x81\x6c\x12\x16\xee\x4e\xea\xa8\xe2\xeb\xc6\x30\x4a\xcd\xba\x6f\x58\x73\xc2\xca\x66\x38\x31\x84\x0d\x4f\x37\x93\xf6\x4d\x4a\xa6\x62\x97\xdb\x28\x97\x4a\x17\x07\x73\xa9\x8c\x49\xc1\x3c\xa5\xfd\x01\xed\x38\xa4\x06\xef\x5b\x4a\x94\x49\x54\x00\x1b\x09\xc8\xd9\x09\x4d\xde\xfe\xba\xe2\x23\x61\xe9\x0f\x59\xaa\x2e\x5c\x59\xf5\xd3\xf1\x5e\x55\x2f\xd8\xd4\x44\x8b\x27\x3d\x27\xc5\xc3\x22\xba\xe2\x50\xd3\xd7\xc1\x27\xf8\x94\x1c\x4e\xd1\x54\x74\x2d\x5f\x37\xe9\xf7\x71\xf2\xd7\xf5\x40\xd3\x64\xf5\x11\xfa\x36\x2c\xb4\x77\xf0\x9e\x7c\x7a\xa3\x6c\x6e\x8f\xc7\xea\x77\x90\x48\xd8\x03\x0d\x65\xb9\xeb\x55\x16\x0f\x01\xe0\x31\xd5\x3d\xbd\x81\xd3\x5b\xc6\xde\x29\x25\x6c\x30\xfd\x94\xed\x0c\xad\xbc\x07\xd1\x62\xd3\x3d\xa3\x9e\x03\xc8\x6a\x5c\x8e\x9f\x99\xc7\x68\xa7\x38\x9e\xb2\x59\x57\xee\xdb\xff\x4f\xbe\x61\x91\x15\xce\x3f\xfd\x83\x52\x85\xac\x0f\x52\xcc\xcf\x6d\xc2\xe4\x6c\x59\x62\xba\x1a\xdf\x43\x35\x16\xe4\xfb\xac\x3d\xc5\x6f\x2c\x2c\x6d\x34\x35\xc8\x59\xbd\x46\xfd\xa4\x36\xfe\xb5\xf1\xdc\xa3\xbd\x9d\x5f\x73\xc2\xee\x82\x70\xff\xb3\xc7\x7b\x4a\xc3\xf8\x8e\xea\xf1\x9b\xa4\xc9\xc0\x20\x3f\x16\xa1\x05\x00\xe1\xdf\xc7\x9e\x22\x4e\xe2\xc6\x4a\xbe\xf1\x14\x93\x13\x1c\x69\x11\x8a\xa2\xdf\xe0\xcf\xab\x83\xc1\x8f\xfc\x78\x5a\xf9\x8d\x27\x3d\x9d\xf3\xbe\xad\x93\x09\x5c\xa5\xe7\x7f\xb1\xcb\x3c\x28\xf2\x6c\x97\x62\xe6\x64\x81\x3e\xbc\xfe\x03\x48\x3d\xe1\x30\x03\xa2\x18\xe7\xcc\x2e\x4d\xb6\x58\x57\x76\x08\xc2\xbe\x96\xef\xf3\x5c\x32\x61\x53\x65\xa7\x07\x95\x57\xd3\xd7\x22\x48\xa5\x0a\xb4\x9a\x62\x32\x73\x07\xba\xa9\xc9\x8b\x34\x9e\x76\x45\xae\x53\x5a\x55\xf5\x37\x68\xa6\x60\x28\x3f\x29\x5d\xa2\xf6\x8a\x56\x4c\x9f\x4c\x22\xbf\xe8\x67\x53\x0e\x3b\x71\x4d\xd7\x7b\x76\x10\xed\x91\x50\xef\x38\x7c\x65\x9e\xfa\x71\x36\x48\xd2\x31\xf2\xee\x58\x5b\x3b\x7b\x2e\x99\xb2\x73\x5d\xef\xc1\x57\xfb\x3e\x92\x68\x88\x0e\xd9\x35\x87\xf3\xf8\x87\xa5\x12\x16\xfd\xe7\x64\x95\xe1\xc8\x74\xd6\x1f\x53\x59\xc0\xd4\x0f\xe3\x0c\x4e\x1f\xb6\x18\x38\xed\x14\x4d\xd7\x9c\xd5\xe8\x6c\x41\x74\xad\x9a\x30\x05\xd2\x4c\x7a\xd1\x3b\x96\x15\xe2\x9d\xd2\x75\x29\xfd\xa8\x11\x9f\x12\x32\x3b\x18\x85\x2b\x7e\xf6\x33\x62\xfe\x36\x9f\x36\x35\x03\xc2\xf9\xd1\xfb\xa1\x64\xfb\xa1\xa7\xd8\xc1\x3f\x54\x6e\xf7\x72\x92\x48\xe2\x54\x94\x7a\xe8\xfb\xf9\xa6\x51\xb1\x26\xae\xf6\xc1\x80\x7a\xa5\x30\x8e\x9a\x40\x18\x45\x40\xcc\xc4\x4f\x1b\xbc\x10\x07\x67\x5e\xec\x26\x69\x3f\xf6\x25\xf5\xc7\xaa\x3a\xaa\x8c\xf3\x23\x05\xd3\x1e\x87\x71\x98\xe5\xd4\xe4\xe8\x56\xda\x31\x6c\x4c\xe1\xd6\xfc\x92\xea\xc1\x59\x4b\x52\x60\x9e\x44\x68\xb6\x63\xb9\x95\xce\x96\x9a\xd9\x9b\x9a\x8d\xce\x95\x0e\xf4\x76\x45\xf9\x67\x91\x59\xf1\x23\xa5\xc2\xc2\xb9\x23\xab\xf9\xed\xac\xc7\x86\x36\x05\x1b\xb6\x85\x31\x2b\x5e\x36\x01\x60\x25\xc2\x56\xec\x80\x67\xf7\x3d\xa5\x4d\x73\xc3\x56\x1f\x27\x61\x96\x27\x5c\x77\x40\x44\xf8\x86\x4a\xaf\xbf\xe1\x6d\x57\xe1\x78\xe9\xa5\x6e\x3f\xd9\xa5\xb6\xe9\x25\xda\xdc\x82\x71\xa2\x27\x86\x03\x80\xc2\xa9\xd5\xfe\xfe\xc5\x17\x2c\xcc\x40\xcc\x4e\x15\x35\xed\xa9\x3e\x2d\x3d\x8b\x1a\x8e\x73\xd9\xe9\x2f\x7f\xf2\x18\xca\x44\xf8\x11\xc0\x14\x04\x43\xa0\xda\xe5\xd9\xb8\x49\xb5\xce\xe1\xb7\x46\x49\x6e\xa2\x0c\xa9\x32\x39\xc8\x3b\x96\xa3\xf2\x44\x4b\xf7\xfa\x22\x41\x3d\xab\xe0\x4c\x4b\x23\xd1\xa0\x37\x9b\x9d\xa8\xb9\xa5\xfa\x3b\xe9\xb7\x72\x61\xca\xb9\xc6\x4a\x9c\x3b\x00\xac\x7b\x46\xf5\x92\x05\x45\x9d\x6b\xb9\xe2\xaf\xeb\x5a\xc0\xd8\x8f\x22\x93\xe5\x53\x0e\x86\x7b\x5f\x51\xa1\x02\xdd\x80\xba\xdf\xc5\x1a\x1f\xdb\x20\x8c\xc3\xdc\x00\x0c\x2e\x65\xd7\xa3\x1a\x34\x79\x5e\x11\x27\xbd\xdf\x92\xf6\x5e\xdc\xdf\x1d\xf8\x71\x36\xe5\xe0\x71\xe7\x60\xb6\x50\xd2\xfb\x50\xab\x2f\x5d\xfd\x62\x21\x83\xc4\x4f\xad\x0f\x2c\x24\x3c\x8a\x4a\xe5\xac\x05\xad\x06\xe1\x4a\x18\x85\xec\xe7\xb1\x54\xa1\xe7\x20\x3f\xcd\x92\xd9\xdc\x81\x6e\xe4\xe7\x66\x57\x35\x1a\x98\xf3\x37\x3d\x85\x66\xb9\x49\x23\x2a\x04\x16\x94\xff\xc0\x93\xe3\x08\x43\x5e\x62\x7a\x7d\x9b\x3e\xc0\x0b\x4b\x33\xdd\x7f\xb8\xdb\x39\x76\xd7\xb0\xa2\x45\x3b\xc8\x05\xc5\x5b\x14\xd5\x09\x82\x94\x7e\x17\x48\x9f\x13\x9e\xd3\x76\xb9\xa1\xe1\xda\x26\x35\xe3\x24\xc6\xa4\xc3\x97\x3a\xa6\xda\x08\x8e\x29\xcb\xd8\x4f\x93\x15\x00\x39\x98\xed\xd0\x73\x5b\xfa\x9c\xea\x8a\xe9\x1b\x22\xac\xa4\xbf\x44\x96\xe8\xae\xc2\x00\x34\xd9\x63\xaa\xa8\xc4\xc4\x26\xce\x4d\x80\x86\x0e\x66\x3e\x2b\x55\x19\xf8\x03\x5b\x38\x8c\xfc\x15\x13\x53\x5b\xaf\xa3\x42\x3f\xa3\x7c\xce\x33\xad\x27\xc0\xd8\x44\x51\xe2\xc7\x5a\x53\xa5\xae\xe6\xd7\x42\x6c\xe5\xf7\xfb\xa9\xc9\xb2\x5d\x0e\xd7\x7c\x4d\xe7\x62\x2f\xd2\x4b\xa1\x48\x01\x7a\x1c\x1c\x62\xc7\x6a\x3a\xe2\x1a\xbc\x97\x66\x23\x3f\x8a\x3a\x4a\x5c\x0f\xc8\x2f\xbe\xd6\x05\x72\x3f\xcb\xa5\x63\x42\x9a\x0b\x5c\x1f\x0c\xb7\xd4\x09\x20\xcc\xb9\xf5\x91\x5f\xad\xe9\xca\x69\x90\xdd\xd0\x79\x41\x48\xd1\x3e\x54\x08\xdf\x49\x6a\xfa\x61\x90\xfb\xcb\x11\x58\xa2\xb7\x8e\x93\xdf\xb7\x75\x5c\x39\xbe\xff\x59\xdc\x9f\x52\x20\x11\x48\x75\x21\x90\x86\x3a\x3e\x0e\xbb\xa9\x86\x0a\xd5\xec\x6c\x77\x10\x32\xc7\x1e\x02\x97\x63\x48\x21\xf3\x8d\x3a\xd0\x26\x69\x32\xf1\x87\x7e\xdc\x07\x67\x83\x20\x5b\xe8\x67\x05\xce\xd2\x54\x05\x5b\xe8\x66\x09\x0d\xcd\xd6\x45\x3a\xc5\xa4\x01\xd1\x15\xdd\x4e\xb6\x74\x35\x77\x33\x3f\x32\xd9\x98\xd7\x80\x64\x35\x74\x2d\xbb\x4d\x05\xb4\x3b\x0c\x97\x97\x93\x38\xab\x61\xf0\x4e\x6a\x0c\xde\x49\x75\x54\x1e\x8a\x4c\x18\xc3\xcb\xc0\x3f\x6e\x79\xea\x2f\xb7\xec\x09\xb3\x6a\xcc\xa1\xa9\xce\x37\xe4\xa8\x04\x18\x13\xf9\xd1\xdb\x4a\xb4\xf9\x82\x23\xf8\x5a\xcb\x72\x33\x5e\x0d\xfb\x20\x71\x94\x9a\x81\x2a\xc1\x9d\x57\x39\x4a\x7f\x39\x49\x49\xc4\xa1\xe3\xa4\xf2\xd1\x6d\xc9\xd7\xf5\xb0\x6c\x79\x4d\xbb\xe9\xef\xc1\x82\x62\xf8\x3f\x46\x58\xc5\xff\xa2\x48\xdf\x3f\x56\x19\xa3\x41\x11\x13\xef\xab\xe9\x53\x07\x03\x1c\x41\x30\xaf\xb1\xfc\x10\x1e\x54\x6a\x70\xdb\x67\x74\xdf\x42\x37\xe8\x33\x6a\x17\xdb\x66\x37\x25\xe6\x6a\xac\x8e\x70\x5b\xee\xda\x14\xca\xb2\xa9\xac\x05\xfd\x13\xea\x19\x9f\xd2\x0f\xf2\xb5\x82\xdf\xf4\x4d\x16\x0e\x63\x03\xcc\x03\x26\xe2\xa8\xea\xf3\xd4\xb1\x5e\x9a\x3d\xbb\x5b\x29\x89\x74\x14\xc4\xef\xb7\x1e\xe7\xa0\x0c\xab\x1e\x99\x43\x89\x1c\xc9\x8a\x0b\x01\x55\x47\xe9\x7b\x2b\x8e\xfe\x6f\xd4\x21\x52\xef\x6b\x01\x64\xb4\xca\x61\xfe\x99\x31\x97\x53\xa8\xeb\x4a\xee\xbc\x48\x83\x91\x9f\x01\xee\x2a\x05\xe5\x33\xba\xa1\x0f\x55\x27\x44\xe4\x8c\x75\x14\x4e\x1d\x8a\x7a\x05\xd8\xd4\xb1\x1c\x2a\xbf\x8f\x28\x85\xff\x41\xa5\x5e\x93\x34\x44\x22\xd2\xe5\xa5\xde\xf6\x5c\xca\xe6\x6d\xeb\xa7\x65\x93\x30\xe6\x3f\xe3\xde\x7e\x25\x20\xdf\x6c\x36\x39\x38\xb3\xd8\x1d\x17\x59\x14\x8e\x33\x06\x7e\xe0\x0b\x6f\x7b\x2a\x28\xf9\xd7\x1a\xf9\xd1\x84\xd1\xca\x19\x0e\xc9\xab\x69\xd7\xa2\x7c\x0a\xef\x8c\x95\x02\x2d\x33\x09\x64\xab\xb5\x8f\xc2\xc4\xd9\x36\xa9\xb8\xe4\xd5\x24\x36\x35\xbd\xad\xea\x03\x72\x4e\xb8\x3a\xbd\x59\x2e\xa2\x28\x94\x16\x16\x24\x0f\xdf\xa1\x83\x95\xaf\x15\x79\x5f\x64\xfc\x94\xb6\x84\x25\xde\xff\x4d\xa5\x65\x85\x12\x16\x0e\x12\x0d\x68\x1e\x99\x70\x15\x3d\xea\xad\x9c\xa6\x8f\x6f\x97\x0d\x5a\x58\x78\xc0\xf5\xc8\x1e\xd7\x92\x24\xff\x12\x8e\xb5\x30\x31\x50\xaa\x43\x42\x79\x87\x2c\xb8\x87\x64\x27\x6e\x7e\x87\xec\x10\x17\x85\x4b\x95\x20\xe5\xcc\x16\x46\xf0\x7b\x2a\x6a\x4d\x4d\x56\x44\xb9\x40\xb9\x10\x7f\xef\x26\xa6\x07\x91\x2d\x76\x4e\xf1\x3d\x95\x11\x8b\xfc\xb8\x9f\xac\xc6\x42\xee\x22\x7c\x86\x1d\x45\x74\xe8\x6a\xb7\xcb\x86\xb3\xf6\xb0\x2c\x3f\x28\x15\x2d\xf4\x0f\x5a\xe4\x77\x2a\x17\xd1\x18\x1c\x40\x08\xba\xaf\x7a\xaa\x1e\x7d\xb5\x7c\x48\x95\xe4\xbe\x8a\x65\x88\xa2\x2e\x8b\x8a\x61\x73\x40\x7a\x0c\x68\xc7\xff\x99\x0e\x52\xc9\xa3\x91\xb5\x84\x29\xbd\xad\x34\x3d\x6f\x53\x69\x0b\xee\xd6\x1d\x0d\x00\xda\x01\x3e\x00\x0c\xdf\x6d\xc5\xcd\xf0\x9a\xa7\xd0\x68\xdc\xc6\x87\x68\xe2\x89\x75\x85\x40\xbb\x44\x03\x83\x39\x7e\x88\xd6\xb5\xa0\x99\x14\x4b\x28\xa7\x66\xb1\xf3\x6e\x95\x0e\xe1\xba\xa3\xe7\xb8\xef\x4e\x10\x3d\xab\x1d\x3b\x55\x66\xf8\xb9\x5e\x15\x0a\xc1\xa2\xfd\x1b\x1d\xbe\xec\xed\xb9\x5e\xe3\xb8\x6f\xb2\x65\x3f\x3e\xd4\xd1\x09\x2a\x5e\xa2\x7c\xa3\x02\x90\x67\xc7\xcf\xee\x52\xf8\xa8\x3d\xeb\x0e\x11\xb4\x87\xd6\x08\x12\x96\xd7\x68\xb3\x49\x63\x91\x73\x9b\x9f\xe8\x29\xf2\x2a\x7f\x18\x06\x53\x35\x0f\xc4\x91\xf9\xd3\x67\xa4\x96\xd4\x42\xd8\x58\x1d\x9b\xd9\x24\x35\x7e\xbf\xe3\x98\xee\x34\xf2\xfd\x9e\x62\xd1\xc9\x72\x3f\x2f\xb2\x07\x54\x26\xf7\x98\xe7\xea\x4f\x9b\x0a\xb6\xcd\xf4\x07\x56\x40\x5f\x33\x46\x39\x13\x7b\xbf\x54\xee\xc0\x3f\xf3\x14\x19\xc0\xae\x5e\x8d\x71\xaa\x85\x14\x3a\x28\xa2\x49\x1a\x4a\x2e\x5b\xdc\x0d\x77\xf2\x9c\x54\xdd\x28\x93\x34\x21\x11\x4a\x91\xfd\xac\x21\xf6\x5c\xa5\x64\x17\xce\x34\x89\xe4\xb5\x7e\x40\x5e\x84\x79\xb8\x62\x3a\x4a\xf1\xe8\x34\x6a\xaa\x22\x9d\xd2\xe4\x4c\x7d\xb1\x3b\x0a\xb3\x89\x1f\x87\x81\x78\x48\xb0\xe7\x77\xb1\xfc\xf9\xa6\xe5\x83\x5d\x62\x82\x0d\x07\xb6\xa3\xc0\x12\x62\x2a\x3a\xfc\x6d\xd6\xee\xd9\xee\xec\x9c\x12\x70\xe5\xe3\x99\x6f\xd6\xf5\x89\x1f\x85\x2b\x26\x65\x96\x6e\xa1\xf8\x54\x48\xe8\xb7\xb0\xed\x04\x96\xaf\x1a\xe9\x14\xfd\xe1\xc5\xc6\x53\xdb\x56\xb5\x6a\x8d\xc0\x5d\xb1\x04\x14\x96\xcd\xe7\x04\x76\x03\xc2\x82\x8b\xca\x54\x0a\x45\xd5\x94\x4b\x63\xa0\xa5\xce\x4a\x85\xda\x46\xb6\xd7\xf5\x49\x3c\x18\x84\x41\xe8\x47\x0f\x29\x0e\x61\x10\x65\x22\x94\xdf\x52\xfc\x7e\x68\xfb\x87\x83\x76\x4d\xb1\xd5\x75\x40\x2d\x2c\x5a\xb7\x8a\x1b\xe3\x8e\xc6\x29\x9d\xd7\xdc\x91\xa7\xc9\x4c\x89\x56\x3e\xbd\x13\x0e\x86\x07\x7b\x2a\xde\x30\x59\xf6\x28\x79\x88\x42\x76\x51\x7d\x08\x47\x0e\x0b\x43\xb0\x74\x16\xad\x5a\x44\x32\x3b\xd6\x15\xb9\xcb\xa7\xd8\x1e\x70\x5a\xde\xf3\x5c\x3f\x36\x8b\xf3\x08\x5c\x47\x31\x04\x7e\x40\x19\x02\x46\x8d\xd1\x1b\xc3\x4a\xb2\xbe\x14\x9c\x99\x1d\x48\xcd\xc0\x4b\x02\x76\x04\x6b\x9e\x75\x38\xb9\x3e\xd1\x52\x89\x7d\xb1\x1b\x24\x71\x60\xe2\x5c\x15\xcf\x85\x63\xb2\x63\x89\xe5\x2e\x95\xee\x7c\xca\x8a\xd4\x10\x4c\x1f\x03\x7c\x07\xa4\xd7\x76\x45\x59\xe6\xae\x13\x48\xae\x73\x7a\xd3\x53\x9c\x77\xb7\x28\x41\x2c\x10\x1f\x27\x57\xf7\x3b\xaa\xba\xb8\x05\x0e\x22\xcc\xf4\x75\x15\xc1\xfb\x79\xee\x93\x0e\x81\x12\xf4\xfa\x0c\xdf\x8e\xb1\xf8\xc0\x53\xf0\xcb\x8d\xd2\xf2\x72\xfe\xbd\x87\x9c\xa8\x36\xf4\x57\x80\x59\x7e\xb2\xd7\xf9\x25\x47\xb8\x59\xcd\xa8\x64\xb8\x14\xbf\x3b\x53\x9c\x21\x29\x76\x97\x53\x64\xc8\xf8\xfc\x8b\xd2\xe1\x9f\x6f\x2b\xbd\x99\x2e\x0e\x38\xa4\x01\x4e\xd2\x6b\x72\x32\x52\x29\xc4\x4d\xfc\x34\x0f\xfd\x88\x8a\xa3\xa2\xbf\x49\x53\x89\x8e\x06\x90\x27\x21\x9f\xba\x67\xbd\x26\x64\x94\x27\xd8\xf0\xf8\xb1\x77\x34\x8e\x1e\xbc\xf8\x78\xa3\x4f\xb1\xe4\xf9\xaf\x4a\xd7\xed\x79\xb1\x74\xad\xf8\xd9\xa1\x30\x8a\x4c\x1f\xc5\x07\x7c\x07\x3c\x7b\x74\xb3\x4d\x63\x75\x61\x3d\x7f\xaa\x5a\xe9\x2e\x29\x81\xcd\x7f\xd3\xda\xc0\x1b\x24\x71\x96\x87\x79\x91\x1b\xc2\x83\x28\x01\x71\xd1\x1b\x3d\xa7\xa5\x74\xcf\x2a\x74\x3d\x75\x78\xed\x55\x4a\x02\x4c\x5a\xae\xf0\xd2\xfb\x9d\x94\x7d\xf5\xf6\x8c\xf4\xe4\xc2\x8b\xc5\x7d\x56\xfb\x12\x9b\xf9\xa4\xe2\x17\x38\x59\xea\xe9\xd1\x2c\x8c\x7e\x3a\x34\x8f\xaa\xe9\xc2\xcf\xc2\x33\x3a\xa9\xd9\xb8\xb1\xda\x91\x30\xd0\xba\x08\x2c\x1c\x80\x52\x0b\x2a\x19\xa2\xe9\x56\xb9\x4f\x22\x75\xac\x48\x54\x37\x81\xff\x11\x53\x5c\xed\x72\x8b\x13\x3d\x38\x63\xa5\x38\x94\x8f\xba\x89\xc2\xb0\x15\xec\x98\x75\xca\x21\xdb\x33\x14\xdf\x98\xeb\x16\xd4\x64\x55\x67\x97\x11\x17\xeb\x5c\x1b\x03\x42\x96\x44\xa1\x30\x83\xdb\xee\x60\xc5\x10\x28\xa5\xff\x6d\xf5\x75\x8c\xd8\x83\xeb\x2e\xf3\xfe\x60\xaf\x85\xfb\x65\x98\x64\x59\x38\x59\x53\xe2\xd8\x80\x37\x0b\x01\xbc\xa6\x9c\xf1\x73\xe9\x94\xc1\x16\x3b\x4e\x03\xcd\xd7\x9e\x4b\xae\x0c\xfc\x80\xd9\x92\x77\xbb\xea\xfe\x83\x60\xb6\x94\x7d\xa7\xca\x1c\x1b\xaa\x8f\x04\x64\xbc\xb0\x47\xbc\x5e\x44\xf5\x5e\xba\x09\xfc\xc9\x24\x4d\x5e\x09\xc7\x3e\x2f\x64\x6e\x3a\xa4\x05\x80\x13\x04\x2c\x31\xf0\xf1\xae\x34\x82\xfe\x67\xba\xb1\xf1\x53\xc8\x5a\x5a\x37\xc5\xea\xc6\xec\xa4\x35\x82\x2d\xdf\x04\x2a\x1e\x9c\x99\xe3\x71\x96\x28\xd2\xea\xb9\xb8\x7e\x95\x9b\x08\x79\x84\x2e\x43\x9b\x8a\x34\x1b\xed\x52\x0c\xef\x38\x69\x84\xe5\xa4\x63\x75\x18\x3f\xa5\xd3\x4c\x16\xa7\x5a\xa8\x6d\x74\x9c\x2b\x26\x37\xa9\x1f\x67\x53\xaa\x2d\xf0\x1a\x6f\x3c\xec\x49\xd6\xf9\x04\xd9\xc1\xe1\x36\xe3\xb0\xbf\xb2\xe5\x26\xee\xfb\x4c\xbd\x6d\x51\x8b\x0e\xc1\xd8\x2a\x15\xbc\x96\x0c\x43\xa4\x42\x64\xf3\x54\x9f\x96\xd5\xdf\x2c\x3a\x3d\xd7\xcd\x46\xa9\xe9\xf7\xb9\xcf\x90\x99\xa3\xbd\x1a\x8d\x74\x4b\xbf\xfd\x38\x8c\x38\x0f\x2e\x3a\x2a\xf4\x9b\x7c\xd3\xd6\xca\x19\xf8\x29\xb8\x4e\xb1\x0a\x20\x27\xa3\x54\x4f\xc5\x3e\x6f\x13\x70\xa9\x91\x89\x04\xa9\xc9\xcd\x6e\xa5\xb3\x7d\x53\xd1\xf5\x72\xc5\x89\xc1\x67\x5e\x03\x89\xa6\x24\xc4\x5f\x94\x8f\x6b\xdc\x7d\x98\x8d\x43\xf4\x5b\x5a\x88\x32\x4e\x18\xbe\x5e\x7f\xca\x5a\xdf\xea\x60\xaa\x02\xd6\x51\x38\xc9\x28\xe9\xa0\x18\x04\x85\x16\xf7\x43\x58\x2d\x11\x14\xaa\x96\x8f\xac\x4c\x09\xa2\x06\xa9\x3f\x1c\x9b\xd8\xba\x16\x48\x15\xdd\x52\x69\xa3\x5b\x8d\xe2\x0c\x9d\x1b\x7e\x1c\x18\xcb\xb9\x03\x8b\xfd\x99\x86\x3d\x7d\xd6\xb0\x5a\x07\x9e\xef\x86\xe8\x31\xa1\xd7\x13\xca\x3e\x27\x1c\x74\xc6\x56\x39\xa4\xb7\x03\xa4\x2d\xe4\xcb\xfd\x37\x7f\x63\xdd\xe1\x12\x7f\xbe\xe7\xea\x2d\x0f\xf4\x54\x4f\xed\xbf\x6a\x43\xe0\x08\x2b\x42\x65\x69\x60\x97\x1e\x20\x5b\x80\x0a\xcf\x2d\xec\x37\x91\x33\x93\x47\x18\x84\x2b\x66\x90\x44\x7d\x3a\xf9\x11\x3b\xdd\x52\xc8\x71\xb6\xd0\xd2\x09\x69\x95\xd3\x4c\xea\x8f\xab\xd0\x70\x61\x41\x93\x16\x89\x63\xf5\x8e\xf2\xfc\xae\x7a\x9a\xf1\x3a\x1e\x84\xe8\xb8\xa0\x87\x11\x56\x63\x7a\x64\xe1\x3b\x96\x6c\xed\xb0\x88\x06\x08\xc1\x24\xb7\xe6\x30\xca\x67\x95\xf8\x20\xb5\x89\x9a\x3e\x07\x42\x62\x78\x14\xe9\x44\x93\x57\x48\x42\x8a\x49\x9a\x74\xaa\xe8\x0d\x83\xc2\xdd\x43\x7c\xd3\x96\xb0\xf2\x97\x93\x22\xdf\x5d\x8d\x94\x60\xad\xab\xb5\x86\xe4\xe7\x6e\x60\x57\xb7\x70\x6a\x72\xb7\x06\x8d\x83\xf4\x1e\x76\x2c\x15\xda\xf1\xb6\x44\x79\x90\xc4\xfd\xc2\x86\x9d\x30\x5e\x7c\xcc\xf3\x4d\x03\xc5\x7f\x70\x86\x1a\x0b\xc3\x78\x48\x33\x81\x1c\x08\x1a\x22\xa5\x25\x86\x56\x96\x70\x2d\xeb\xfc\xb3\x5f\xf4\x3b\x8a\x0c\x7d\x83\x8d\x26\xdf\xb9\x4c\xe3\x28\xf5\xe3\x43\xa8\x1b\x02\x01\x78\x55\x09\x7a\x1c\xd6\x4c\x86\x77\x1b\xb6\x68\x71\x69\xb1\x3a\xf2\xa7\x5d\xe7\x26\x73\xbc\xb3\x38\x3f\x12\x29\x2c\x7f\x4e\xe3\xc3\x3f\x61\xcb\x4e\xc4\xb9\x67\x04\x43\xd0\xea\x72\xb9\x4a\x59\x5a\x0c\x06\x49\xc7\x69\xea\x1c\xa7\xd3\x43\x12\xbc\x5f\x52\x5c\xe8\xe3\x24\x9d\xd2\xf4\x05\xa5\x63\x2c\xd8\xaa\x69\x97\x7c\x59\xeb\x77\xf8\x71\x58\x80\x9f\x8e\xf5\xd1\xeb\x62\xe9\xae\x54\x16\xf7\xc7\x7e\x7a\x88\x70\x29\xd8\x1d\xa7\xb4\x80\xdb\x9b\x0a\x4f\x7e\xc3\xab\x01\xb0\xdc\xbb\x0c\x22\x7f\xc2\x4b\xa1\x8d\xcf\xe5\x21\xd7\x8f\xbe\x7f\x5a\xb1\x5b\xfc\x0a\x8d\xa2\xa5\xb1\xb3\x49\xbe\x93\x9a\x12\xf7\x56\x63\xa2\xa8\xbf\x95\x1b\x14\xb1\xfe\xef\x96\x2e\x02\xb9\xab\xc2\x9e\x7e\xb8\x52\xed\xe0\xfe\xee\xca\xd3\xb3\x30\xca\xa5\x19\x0e\x19\x99\x87\x45\x78\x17\x3b\xdb\x14\x30\xf1\x47\x37\x60\x54\xe0\xe8\xdc\x56\xc0\xc7\xd4\x04\x49\xda\x7f\xc0\x99\xf9\x1f\x62\xfd\xe2\x84\x02\x3a\x10\x5e\xcb\x6b\x58\x03\xd2\xd5\xaf\x98\xf1\x77\xac\x3b\xc6\xe5\x1f\xd2\x8f\x52\x52\xff\x7f\xfa\x72\xcf\x11\x04\xff\x06\x2d\x0c\x49\x3a\xb7\xa4\x49\xfa\x61\x15\xff\x17\x51\xbe\x06\xc3\x8f\xb5\x76\x57\xf5\x49\xde\xb5\x2a\x92\x7d\x13\x84\x7d\xd3\x07\x11\xa0\x88\xc1\xd1\xa7\x90\x28\x83\xf6\x02\xe7\x9c\x35\x50\xf4\x2b\x3d\x57\xd9\x2f\xe2\x81\x1f\xa6\x11\x53\x36\xc0\x1b\x43\xcd\x9a\xaf\x6b\x1d\x81\x3e\x43\xa5\xab\x1f\x69\xcd\xce\xb6\x71\x89\x25\x59\x1e\x46\x28\x24\xb3\x86\xa4\xaa\xa4\x3a\x4f\x9a\xdb\xfa\xe5\x85\xe0\x0c\xde\x2a\x55\xb6\x08\x06\x46\x08\x46\x14\x60\xfd\x92\x6a\x6f\x1c\x86\x2b\x26\x06\x45\x08\x32\x26\x53\xeb\x74\x48\xc3\x1b\x80\xc3\x2a\xe2\xb7\x8e\x5c\x1c\x9a\xc1\xfc\x01\x3a\xbc\x90\xea\xb9\xa1\xf9\xbb\x4e\xaa\xf3\x33\x0d\x83\x43\x06\xde\x11\x6b\xa3\x2b\x8a\xe7\x33\x2d\xc2\x41\x8b\x4c\xed\x3a\xa5\x38\x43\x50\x34\x13\x4c\x12\xbd\x90\x2c\x2c\x97\x48\x1a\x18\x3f\x2f\x52\xc8\xcb\xef\x07\xd5\x29\x55\x42\x2d\x08\xf8\x43\x85\x44\xf9\xb0\xd5\x99\x60\x3a\x0b\x74\xbc\xb2\x6a\x85\x46\x51\xdc\xf2\x14\xe6\x70\xa3\x45\x8a\xa5\x1b\x52\x8a\x24\x5c\x11\x83\x68\x25\x2e\x1c\x8b\xb7\x8e\xea\x33\x43\x7c\xb2\x0f\x51\xf6\x19\x4e\xd9\x0f\x74\x4c\xf8\x47\x4a\xce\xf9\x58\xe9\xe4\x9a\x99\xf5\x93\xff\x81\x46\x47\x12\xf2\x34\x3a\xfc\x69\x70\xf7\xf3\xf7\x96\x8a\x73\x89\x15\xfd\x04\xe3\x47\x6f\x25\x0d\x37\x2d\x6f\xe5\x47\x79\x32\x34\xf9\xc8\xa4\xe4\x85\x00\x40\x7f\x5b\x45\x62\x9b\xf8\x72\x7c\x45\x93\x29\x04\x63\x1b\x58\x39\x28\xb8\xba\x3b\x7b\xaa\x5c\xbf\x73\x7d\xfb\xef\xbe\xf4\x52\x77\x1c\xe6\xe1\x90\xe2\x3a\x14\x52\x60\xa9\x5e\x2b\x5d\xae\x03\x58\x0b\x4e\xe2\xab\xd6\x3e\x62\xdb\x7b\x25\x57\x84\x90\x67\xf0\x96\x52\x08\xa7\xe7\x80\xe3\x76\x53\x19\xb8\xc0\x95\xb1\x84\x3c\x4b\x65\x53\x8f\xb4\x04\x0d\x0b\xdd\xa4\xc8\x9d\x37\x29\x35\x43\x17\x47\x9d\x73\x34\x26\x49\x90\xa7\x61\xcc\xc4\x7a\x35\x05\x11\xbe\x69\x10\x41\xcd\xcf\x57\x0e\x44\x3e\x1a\x27\x2b\xe2\x44\x88\x1f\x4f\x23\x62\x3d\x2f\x2b\x0c\x77\x5b\xe5\x56\x07\x61\x14\x4e\xc2\x38\x01\x29\x3b\x6c\xfb\x11\x0d\x98\xa0\xdd\xcc\xff\x1f\x5f\x28\xf1\x94\x63\x1a\x3d\x5e\xea\x98\x4b\x7b\x28\x59\x10\xd2\x9b\x20\xb7\xf0\xd0\xba\xa2\x94\x7a\xa8\xe7\x1a\x5b\x56\x42\x2b\xae\xce\x1a\xde\xc8\xc2\x89\xa0\xf7\x97\x34\x2b\x41\x60\x1e\xa2\x55\x81\xb8\xfa\x0a\xd6\x95\x4d\xef\x5a\xf9\x9b\xc3\xf4\xe4\xe2\xf5\x76\xe6\xe7\xb7\xb6\x30\xa5\xfc\x39\xaf\x29\x08\x08\x8b\xb1\xb3\xe7\xa8\x1e\x41\xc7\x2c\x62\xa1\xf4\x4c\xf2\x4b\xdb\x7d\xcb\x6f\xcc\x75\x07\xe1\x2b\x9c\x1b\x11\x46\x22\x95\x3a\x3f\xaf\x5a\xd2\xb3\xdc\xf8\xfd\xb5\x69\x57\x67\x3d\x87\x2d\x2d\x5b\xb7\xb3\xd0\x9e\xd6\x77\xc8\x81\x89\x49\xb9\x4d\x9f\xf2\x2a\xac\x17\x40\x7f\x2c\xda\x01\xea\x8f\xd3\x84\x28\x0c\x0a\x1e\x63\xa1\xa5\x53\x38\xe2\xa3\x8a\x49\x67\x6c\x7c\xf8\xa3\xb6\x70\xb8\xa3\xe7\xc0\x36\x2c\xd7\x21\x6c\x39\xce\xdd\x09\x57\x92\x94\x0f\xbf\x36\x6f\x5f\xe0\x07\xc3\x24\x3d\x24\x4a\x2f\x82\x41\xa2\x65\x21\x20\x24\x37\x4c\xfe\x60\x90\xa4\x7d\x22\xe6\x67\x9d\x2e\x68\x8e\xa2\xe4\xf8\xbe\x8a\xfc\xde\xa1\x03\x08\x96\xe6\x4a\x83\x2d\x6e\x61\x61\x3f\x6d\xf7\x34\x5c\x2e\x6c\xf8\x88\xb4\x0b\xa7\xee\xf8\xc6\xb6\xa1\x8c\xcd\x38\x49\xfd\xb8\xef\xd3\x7e\xaa\x69\x58\x61\x9f\xdf\xf3\x3a\xdf\xfc\xba\x24\xdf\xdb\xd8\x52\x52\x51\x39\x43\x4e\x1f\xbc\x1f\x7c\xad\x70\x3c\xc9\x72\x44\xf6\x2b\x89\xe9\x35\xb9\x82\xa0\x00\x03\x80\x9e\x8a\xe4\x80\x23\x2f\xd1\x15\xa8\xd4\xef\x87\xf4\x1d\xbb\x14\x8e\xe1\xa8\x86\x43\x1c\xa7\x88\x06\x13\xf8\xa1\xf2\x2f\x1f\xee\xb9\x72\xfc\xfd\x56\x8a\x8c\xc0\xc4\xb2\x35\x71\x7e\xbc\x5d\x2a\x62\x9b\xb7\x95\x29\x59\x4e\xfc\x3c\x4a\x7c\xd4\xed\x11\x86\x82\xb4\xdc\xda\xe4\x5f\x7c\x81\xf7\xdb\x7d\xeb\x79\x99\x6a\x8a\x25\x60\x82\x03\x71\x4e\x93\x98\x34\x99\xdd\xe7\xe7\xbb\x7e\xf0\xad\x22\x4c\x45\x9f\x02\xbe\xfb\x51\x95\xf0\x3f\x6a\x01\xb4\x93\x24\xcc\x84\x1d\x0f\x5f\x08\xa6\x5f\x69\xbe\xa8\xb1\xe3\xd5\xba\xda\xc3\x08\x07\x0a\x52\xb2\x1f\x2b\xb2\x26\x48\xb3\x31\x8a\xc4\x66\x27\x92\x15\x93\xa6\xa1\xa3\xa1\x16\x3a\xf1\x8e\x65\xe0\x7a\x97\x3e\x07\xaf\xf6\x8a\xee\xc6\x36\x7d\x93\x86\x41\xa2\x84\xf8\xa4\x67\x4c\x9a\x73\xdd\xa9\x05\xa8\xa9\x51\x1c\x9d\xa0\x6a\xe3\xeb\xc6\x11\x79\x70\x06\x38\xf7\x09\x46\xb9\x9a\x46\x9b\xcc\xaf\x06\x8f\x6f\xda\x18\xc8\xb2\x64\x6d\xd9\x30\xe8\x0b\x45\x95\x6b\x0a\xfe\x70\x4d\xa5\xd7\xc7\x61\xc6\x67\x9b\xb4\x22\xba\xb0\x49\xc3\x20\x09\x6c\xbf\x47\x35\x40\x78\xca\x90\x9f\x80\xb1\x14\x4e\x61\x85\xed\x3d\xaf\x42\x70\x3e\x18\xa4\x81\xa2\xda\x60\xf0\xb5\x9a\x01\xd1\x33\x24\xc6\xb1\x3a\xa5\x09\x2e\xaa\xbf\x17\x79\x57\x25\x39\x7e\xa3\x81\x8a\xa6\x96\x66\xda\xbf\x16\x8e\xe1\xa0\x19\xe5\x53\xb2\x7a\x23\x13\xe4\x69\xf2\xff\x11\xf6\xa7\x31\x96\x5c\x57\x7e\x20\x5e\xf5\x32\x6b\x67\x51\x24\x45\xb5\xdb\xee\x36\xfc\xba\x2d\x37\xfb\x0f\x08\xfc\x8f\xc7\xb3\x78\xf4\x25\xde\x54\xa5\x44\x55\xa2\x99\x4c\x64\x95\xaa\x64\x7d\x19\xde\x8c\x77\xf3\xbd\x60\xc5\x8b\x78\x8a\x25\xb3\x92\xf0\x00\x86\x31\x30\x0c\xc3\x1f\x0c\xd8\x33\x1f\x64\x1b\x30\x6c\x0d\xec\xf1\x02\xcb\x6a\xb9\xad\x76\xb7\xfd\x52\x4b\x6b\x69\xa9\x25\x51\xa4\x8a\x4b\x51\x24\x8b\xb5\xef\x7b\x55\xd6\x96\x1c\xc4\xf9\x9d\x73\xef\x89\x8c\xa0\xe7\x5b\x44\x55\xbe\xf7\x22\xee\x72\xee\x59\x7e\xe7\xf7\x4b\xa2\x90\x14\x24\x95\x38\x27\xd8\x94\x05\xe9\xed\x91\xcb\xf9\x30\x2d\xe3\xfe\x53\x2a\x92\xbb\x15\x78\x94\xe4\x43\x15\x20\xbe\x8e\x03\x0a\x78\xd7\x1d\x6b\x95\x75\xe0\xba\x81\x2a\xa7\x6c\x47\x61\x08\x43\x7d\x0b\x2e\x1b\xf2\x4e\xb7\xb5\xbb\x8d\x48\x10\xbe\xd7\xad\x40\x39\x86\xf7\x30\x9c\xcc\x60\x45\xe5\x7a\x04\xf9\x7b\xc1\xcd\x0a\xcb\x77\x0b\x00\x09\x29\x83\x55\x6f\x86\x1f\xd9\xa6\xda\x1b\x16\x6d\xe5\xe2\xb0\x6c\xa5\x66\xab\x47\x92\xfc\x7d\x92\x9c\x73\x38\xf8\xea\x41\x59\x87\x54\xd5\xf9\x6e\x69\x24\xf1\x59\x95\x20\x8a\xe2\xd8\x0e\x4c\xbc\x83\x9e\x16\x39\xe6\xff\x12\x78\x68\xc7\x03\x6c\x64\xb8\x29\xdc\x73\xcb\x37\x98\x66\x58\xc1\x7f\xa5\xc8\x9a\x1f\x04\x4a\x9b\xe2\x3f\x28\x91\xcf\x45\x93\x59\xcc\x24\xc2\xaa\xcb\x81\xa2\xd4\xb8\xfc\xb1\x98\xaa\xbc\xb0\xcb\x16\x87\x31\x32\x23\x2c\x30\xc9\x37\xca\x4e\xe6\x45\xd9\x5f\x15\x5e\x7d\xc4\x49\x6f\x28\xea\xfb\x37\xd4\x6a\x09\x8d\x93\x30\xe2\x8e\xe5\x5a\xf7\xb2\x1f\xfc\xcc\x8e\x4c\x76\x34\x27\xf5\x3a\x71\x9d\xab\x15\x83\x05\xcb\x00\x17\x98\xac\x7b\x8d\x82\x02\x51\x74\xa7\x53\x1e\x8e\x03\xdf\x8e\x89\x85\x02\x9f\xf3\x1a\x2b\x1d\xb0\x15\xe2\xb8\x20\x8e\x71\xac\x57\xb0\xc6\x61\xbd\x5d\xc7\x04\x8b\x31\x53\x5d\x0f\x97\x95\x6e\xef\x1f\x6a\x09\xce\x8b\x8d\xa8\x82\x9a\x83\x28\x3c\x74\x67\x36\x8a\x5a\x28\x1f\xf1\xb5\x1a\x84\xc2\x26\x89\x65\x3b\x2a\x9c\x14\xaa\x7e\x7b\x4a\x39\xf1\x7d\x5b\xc5\x82\x35\x31\xd6\x89\x16\x63\x55\x30\x82\x57\x4c\x6c\xc6\x36\xc1\xd7\xc2\xb5\x44\x54\xcf\xd7\x6d\xa4\x87\x68\x75\xcf\xa6\xfd\x91\x84\xd6\x5a\x66\xe9\x52\xed\x22\x77\x30\x52\x70\xee\x9f\x70\x2e\xf1\xd1\x28\x59\x4a\xe3\xa3\xd3\x4a\x35\xf3\x23\xfa\x51\xb1\x95\x1d\xa7\x25\xf2\x16\x1e\x5c\xf4\x9b\x3f\xe1\x72\x00\xe1\x30\x4a\x98\xf7\xc8\xd1\xc5\x57\xa3\xc1\x37\xc1\x6e\x37\x1a\xff\xfb\x5e\x1f\x35\xb0\x94\x0f\xbc\x1c\xa4\xbc\xb1\x47\xee\x05\x2a\x4f\xf8\x13\x98\x1a\x57\xdd\xae\xc6\x11\x05\x89\xef\xa3\x86\x2f\x69\xf2\xea\xad\x61\x63\xbf\xab\x94\xb2\xcf\x63\xf3\xe1\x24\x81\x79\x87\x31\xfc\x93\x89\xaa\x8d\xdf\x26\xe7\x5b\x0e\x84\x36\xdd\x07\xab\x7a\x11\x04\x89\xe1\x13\xf6\x57\xd4\xa6\x4b\xca\x28\x37\x49\x88\x8a\x1b\x0a\x49\x37\x03\x85\x50\x00\xeb\xb7\xb0\xf0\xb4\xa4\x76\xfb\x51\x6e\x8d\xeb\x84\x42\xde\x89\x5d\x21\xbe\x69\xd3\x1b\x31\xfd\xe5\xea\x6c\xcc\xa7\x14\xb3\xd2\x1f\x4d\x14\x2f\xd9\x25\x8d\xd1\xbd\xaa\x78\xfd\xe2\x68\x71\xd5\x24\xdc\x31\xed\x94\xd1\x5d\xf3\x8f\xea\x11\xb2\xd1\xab\xe2\xe2\x20\xff\x71\x52\x09\xe0\x31\xaf\x88\xf4\xc7\x7e\x9c\x2c\xbc\x49\x92\xd2\xc4\xd5\x17\x4d\x7b\xce\x5d\x9e\x57\x98\x66\x14\x77\xb0\x68\xb9\x71\x8a\x71\x90\x0a\xe5\xb9\x12\x15\xc3\x7e\x66\x56\xb8\x7d\xa6\x8d\x27\xd2\x31\x9b\x94\x8b\x42\x11\x23\x8a\x0f\x1d\xa7\x51\x70\x61\xb2\xc7\x0b\x8c\x1d\xa5\x39\x83\x55\x03\xe4\xa8\xa6\xdb\x82\xd2\xc8\x85\xc6\x9c\x1d\x59\xd8\xd7\xfd\xad\x2f\xfc\x8d\xf9\x2f\x7c\x6e\x8e\xf1\xc3\xcc\x65\xaa\xfb\xd7\xcf\x29\x3d\x15\xcd\xbb\xd5\xc4\xdf\xce\x1c\xea\xe6\x69\xbc\x6c\x93\x10\xb5\x66\x0c\xf5\x2d\xa5\x7f\x7c\x4b\xcd\x5e\x3f\xcd\x96\x46\x86\x01\xed\xdc\xd7\xa8\x61\x2b\xe7\x1a\x69\x82\xf9\x97\x0e\x76\x0b\x93\x0c\xa2\x45\x4e\xf0\x21\x3b\xff\x2d\x45\xe6\xa8\x35\x29\xa9\xb9\x66\xa7\x3f\x0c\x4e\xe9\x72\xde\xae\x35\x55\xce\xdb\x45\x13\xa7\x80\xce\x2f\x38\x58\x86\x82\xab\x43\xae\x9e\xff\x23\x20\x21\x40\xfe\x8f\x46\x99\xea\xf0\xbe\xb9\xee\xa2\xe9\xc7\x9c\x57\x85\x8b\xf0\xb6\xd2\xe4\x7d\x5b\xb1\x3b\x99\xe7\x07\xcf\x77\x14\x3a\x01\xa5\x6d\xbe\x6e\x10\x83\x57\x3b\x66\x4c\x8a\x41\x0a\xe2\xc1\xec\xaf\x8c\x04\x52\x90\x11\x9d\x6b\xcf\x47\x44\x53\x74\x58\xb1\xf8\xbb\x9e\x20\xf4\xad\xc9\x1e\x72\xfb\xa6\x48\x29\x15\x58\xcd\x10\x5c\x82\x9b\x8c\xc5\x81\xbd\xdb\xd3\x53\x69\x97\x37\xb1\x4d\xb9\x5f\x4b\x75\xec\x6f\x16\x38\x42\x51\x69\x6b\x4f\x8d\xf3\x45\xdd\xa7\x77\x4d\x65\x18\x5f\xc3\x97\x22\xe8\x7f\xa4\xb2\xc3\x76\xd9\x66\xab\x7d\xb3\x3a\xed\x71\xf9\x77\x30\x73\x7c\x33\xf1\x1d\xd7\xc7\x15\x12\xee\xb8\x2b\xbc\x0d\xcb\x01\x52\x48\x8e\xa8\x49\x51\x21\xb6\xb4\xc7\x1d\xec\xc6\xd6\x38\x79\xf2\x9a\xe9\xe0\x9b\xcd\x32\x53\x2f\xbf\x4c\x5d\xa5\x7b\x3c\x35\xcb\x8d\xa0\xae\x1d\xec\xb4\x85\xee\x06\xca\x49\xbd\xa4\x2a\x0d\x77\x30\x00\x28\x53\x82\xab\x1d\xb9\xa1\x75\xad\x09\x75\x07\xbc\x35\x6e\x05\x57\x07\x4f\x4d\x45\x02\xa3\x79\xaf\x11\xbe\x2e\xec\xeb\xae\xa4\x49\xdf\x66\xdb\x34\x27\x25\x6d\x28\x27\x24\xad\x1b\x1a\x8f\xcc\xd7\xe2\x04\x3e\x84\x1a\x7e\xc9\x81\xb9\xee\x28\x4d\xa2\x22\xcd\x36\xf1\xe6\xfe\x1b\xc5\x9b\xfb\x6f\x3e\x46\x83\x20\xb2\xf1\x72\x3a\xb0\x71\x47\xc1\x64\xaf\x11\xe4\x46\x4a\xf8\x9b\xf3\x4a\x2f\xbf\xdc\x0d\xb3\x68\xc4\xa2\x78\x4e\xa8\xdd\x39\xd6\xdc\xf4\x23\xca\x60\x2d\xac\x7d\x66\xc5\x64\xe8\xaa\x63\xb9\x10\xa5\x29\xc2\x0a\x15\xd2\x58\xef\xcb\x8e\x4f\x11\xf6\x19\x75\xbd\x07\x0a\xdf\x45\xcc\x12\x21\xd2\xa6\x4e\xce\xd9\x05\xfc\x70\x52\xe0\xf3\xde\x56\x4d\x1c\x51\x68\x9f\xf2\x0f\xf0\x34\x4d\x35\x7e\xf3\xd9\x1e\xa5\x74\x98\xbb\x88\x06\x1e\x8b\xfc\x0c\xf9\x0b\x28\x26\x6e\x59\xab\x46\xa8\xd6\x9b\x87\x4a\xd1\xd3\xcc\x36\x84\x9c\xc8\x06\x56\x2c\x3c\xc3\xbd\x6b\xb4\x52\x84\x73\x57\x11\xe6\x9d\x26\x19\x44\x95\x24\x9d\x77\xec\xe6\x1e\xa2\xc1\xc4\x44\x08\x1c\x50\x2a\x60\x8b\xf8\x91\xd2\x7f\x4e\xec\x4a\x3e\x36\x63\x9b\xb1\x21\x61\x34\x29\xb9\x4d\xec\xea\xe0\x07\x9c\xdf\x53\x7d\xa9\x60\x4e\x9f\x51\x31\x01\x31\xc1\xbf\x0a\xd3\x2f\x84\xbc\x2a\x81\xd3\x64\xe4\x7d\x71\xa6\x3b\x48\x33\x4b\x31\x2a\x83\xa7\x03\xcf\x22\x7d\x56\x0d\xfe\xe7\xbf\xf8\x7b\x1d\x8f\xcc\x98\xee\xa9\x4d\x37\xed\xd8\xff\xec\xb1\x71\x9a\xd5\xb5\xef\x68\x69\x63\x43\xbe\xa7\xe8\xff\x90\x33\x82\x59\xd8\xb6\xe6\xf3\x18\x39\xe1\x3e\x07\xab\x3b\x75\x2a\xae\xf2\x26\xf8\x3a\xd0\x5b\x85\xac\x80\x14\x03\x7c\xb9\xe7\x64\x50\xed\x42\x64\x92\xd7\x11\xb5\xf0\x0d\x2d\x2c\xac\x80\xef\xb7\x01\x66\xb2\x88\x9d\x3b\x27\x26\xe6\xd2\x11\x58\x94\x02\xea\xa9\xe9\x69\x11\xb1\x6b\x75\xe2\xd2\xc2\x51\x5d\x0a\x9e\x99\xc6\x9b\xe5\x91\x89\x92\xc2\x44\xc9\xf6\x8e\x23\xa2\xd3\x96\x18\x19\x28\x66\xdb\xdb\xa4\xe9\xb7\xb0\x8f\x7d\xcb\x1f\x4d\x3c\xd3\x64\xa7\xb7\x5b\xd2\x8d\xbf\x63\x50\xcc\x12\x9d\x9d\x6a\x14\x5c\x8e\xc3\xe5\x5f\x1e\xaa\xd6\x8e\xc4\x2c\x83\x4d\x9c\xe5\x30\x03\x4f\xf3\x7f\x56\x93\x68\xbc\xab\x9c\x86\x41\x6a\xe2\xbc\xf3\xf1\xd6\xf4\x93\x82\x50\x0b\xc3\x72\x54\xc6\x0c\x97\x3b\xe0\xcf\x5b\x9a\x41\x21\x51\xdd\x3c\x09\x9f\xfb\x52\x37\x4d\x18\xe7\x27\xad\x6e\xbe\x37\xf1\x84\x03\x9e\x8c\x6c\x16\x96\xd9\xea\xb4\xa6\xc4\x54\x99\x62\xa8\xae\x61\x79\x32\x29\x14\x82\x91\x2d\x0d\xa0\xff\xe1\x7d\x40\x1c\x67\x49\xde\xf1\xe7\xd0\x39\x9c\x0a\x7c\xa3\xa0\x2b\x00\x22\x24\xa1\x65\xa8\x99\xf0\xa8\x7b\x3d\x93\xc7\x98\x7a\xe1\x42\xf1\x6e\x4c\x6e\x96\x2d\xce\x46\x21\xc4\xaf\x86\x45\x1c\xca\xbd\x6a\x89\xc4\x76\x87\x22\xb2\x3a\xcd\x89\x3c\xbe\xa3\x2c\xac\x93\x4b\x70\x89\x7d\x14\x2f\x61\x6b\x81\xee\x15\xe5\x3f\x7a\x13\x81\xa6\xb5\x74\x9e\x8f\xcc\x20\x89\x8a\xb2\x6f\x19\xcd\x07\x73\xc9\x2c\xa0\x30\xc9\xd8\x5e\x30\x90\x4d\x5d\xf7\x99\x43\x94\xb9\x34\x71\x3c\x55\x03\x92\xf9\x86\x91\x69\x75\x2e\x3f\x68\xe4\x0e\x0e\xbd\xd4\x35\x7d\xd4\x3c\xdc\x70\xba\xc6\xd2\x66\x5f\xe8\xfe\xfd\xdd\x28\x79\xa5\xcc\x04\x87\x29\x66\x9f\x16\x96\xf0\xd7\x6d\x3e\x70\x49\x67\x08\xac\x89\x7d\x8e\xbf\xa4\xc4\x43\xcf\xcc\x37\x13\x4f\xd4\x3d\xb0\x19\xea\xd6\x1e\xdd\xbf\x8f\x0d\xe9\xc6\xa4\x86\xe8\x77\x07\xde\x6f\xfd\x65\x25\x39\xb8\x75\x4d\xd1\xf9\x71\xb6\x0a\x69\xc3\x1d\x6b\xbe\x71\x64\x58\x26\x64\x71\xb8\xdd\x0e\x6e\x8a\x26\x32\x14\xe5\x13\x1f\x17\xfc\xd6\xcc\x81\x17\x0e\x1c\x3a\xf8\xeb\xf4\xbe\x70\x82\x5e\x83\xa9\x40\x28\x0d\x76\x27\x29\xc5\x7b\x57\xf7\x5e\xd0\x79\xf9\xe5\x8d\xeb\x13\xaa\x02\xc3\x61\x79\x0d\xbf\x87\x58\x68\x82\x67\x94\xc0\xa8\x7a\x2a\x2c\xce\x29\x34\x30\x08\x36\x91\x80\xf0\x2e\xf9\xea\xc9\x99\x2f\x12\x88\x1d\xab\xe7\x2e\xaf\x59\xbc\xfd\x6d\x66\x01\x12\xb1\x08\x55\x9d\x7d\x87\x20\x18\x58\xc2\xef\xab\x06\x0a\x76\xcb\x60\x40\x6f\x12\x19\x22\x96\xf0\x9b\x3a\xdf\xfb\x36\xdc\x7a\x47\x91\xee\x24\x92\xee\x06\x9e\xf8\xe3\xef\xab\x52\xc9\x62\x99\x59\x53\x86\x99\x41\xf1\x95\x51\x39\x81\xb7\xf3\xe7\x5a\x1b\x14\x57\x12\x01\xf8\x23\x29\xc9\x79\x66\x7e\x54\x3c\x11\x1c\x96\x6f\xd6\x6c\xc5\xd8\x66\x45\x1a\x49\x2e\xd0\xa5\xb2\xbc\x13\xd6\x74\xd5\x66\x67\xbb\x61\x9c\xe6\xe8\x34\xc6\xaa\x04\x02\x82\xaf\xd7\x64\x85\x0e\xd3\xa4\x6f\x14\xe7\xcd\x35\x24\x4d\x44\x68\xcb\x17\xdb\xee\x04\xea\xb0\x7e\x03\x3f\x88\x00\x33\xca\x2b\xaf\x30\x4a\x4c\xc1\x55\x37\x4f\x6f\xe9\xa1\x49\x4d\x92\xf1\xb9\xb9\x6e\x91\x8e\xa7\x94\xbc\x28\x32\x26\x48\x96\xde\xad\x09\x1c\xfa\x1c\x98\x3d\x56\xd8\x2c\x4a\x33\x62\x13\x83\xa7\x09\x76\x54\xbe\x6e\x33\x2b\xf9\x51\x5b\x84\x43\x04\xcb\x8e\x82\x70\xce\x53\x0d\x2a\x88\x43\x51\x8e\x16\x9d\x58\x0b\x0e\xa3\x4b\x81\xea\xde\xbc\x34\xd1\xd4\xd2\x83\x28\x31\x31\xaa\x4c\xc2\xc1\xe7\x1b\x76\xd0\x46\x20\x2c\x53\x7f\xae\x46\xd5\x4d\x14\x30\x54\x27\x23\xb1\x17\x81\x2a\xe3\x67\x45\x92\x95\x76\xa6\x6b\x2c\x72\x74\x1e\x0f\x26\x0a\xdd\x8c\x67\x83\x41\xd8\xd2\x7b\x42\x7b\x83\x9f\xa2\xcd\x8c\xed\x06\x4e\x1e\x47\xcb\x7b\x60\xce\x21\xee\xaa\xcd\xc6\x5e\xae\x6e\xa8\xda\x4a\xb8\x51\xb4\x11\x30\x63\x13\xf6\xfa\x49\x4a\x9e\xbb\xfc\xfb\xcc\x21\x97\x02\xa6\x89\x84\xc3\xbb\x45\x37\xa8\x9d\x9e\xf8\x56\x1f\x6e\x8f\x44\xde\x8f\x7b\xef\x10\xc9\xee\xee\xd1\xba\x13\x87\x5b\xc1\x1f\x1e\xc0\x33\x40\x22\xed\x7e\xa0\x95\x37\xf7\xac\x79\x54\xf5\x34\xca\x04\xf8\xcd\x9b\x30\x2f\xc2\xf8\xdb\x96\x37\x18\xa4\x23\xfb\xaa\x2e\x74\xe1\x80\x97\xdd\xb5\xb9\x70\x7b\x78\xdf\x4c\xb3\x70\xab\xf8\xb0\x67\x1c\xf6\x7c\x73\x37\xd2\x81\xb9\x6e\x61\xc3\x61\x92\xc6\xe9\x20\x0a\x4d\x0c\xce\x0b\x18\x38\x84\x39\x7c\xdd\x78\xcc\x97\x5f\x46\xa2\x87\x4f\x1a\xf6\xed\x02\xc5\x1b\xd3\xd4\xca\x3d\xf4\x12\xe1\x98\x8e\xc2\x1b\x47\x69\x06\x98\x1b\xbe\x76\xce\x0f\x91\x47\x14\x80\x53\xc2\xf4\x7d\x0f\xc3\x0e\xa3\xf8\x50\x55\x27\x2f\x7a\x3a\xb2\xfd\xe7\x54\x1f\x83\x4b\x73\xef\xdf\xcf\x78\x21\x9c\x6f\x7c\xdd\x48\x43\xce\x2f\xcc\x77\xf3\x72\x0c\x91\x38\xcf\x7d\x72\x0e\xa6\x4f\x5a\x60\x7d\xc2\x6d\x1c\xee\xe8\x38\x42\xb6\xd7\x15\xbf\xe1\xeb\xf8\x04\x8a\x45\x97\x27\x35\x49\x13\xaf\x9f\x78\x2f\xf0\x84\xa2\xef\x63\x7d\xf2\x27\x3e\x96\x53\x26\xb1\x47\xd3\x34\x47\xad\x1d\x81\xd2\xba\xce\x03\x4f\x23\x13\x23\x9c\x52\x1f\xd7\x5c\x38\x4e\xe3\x98\x33\x8a\x38\xea\xcf\xeb\x00\xea\x7c\xab\xa8\x54\x66\x07\x26\xeb\xc7\xc4\xdb\xec\x86\xf0\xba\x6a\xed\xb9\xee\x44\x20\x92\x34\xb1\xc7\xa2\xbc\xb0\x49\xa1\xda\x69\x21\x40\x02\x5f\xf3\x84\x8a\x76\x2e\x35\x12\x7c\x07\xe6\xba\xa3\x28\x5e\x31\xe5\x51\x8b\xf2\x6d\x4d\x6a\x95\x6f\x5c\x93\x88\x3d\x66\x06\x03\xb0\xd0\x4e\xd5\x6b\xc1\xaa\x05\x10\x3b\x11\x5b\xe0\xe9\x5e\xb7\x39\xef\x9f\xee\x46\x89\x3d\x36\xb6\x59\xe4\x28\xf2\xe1\x08\xa2\x84\xc2\xd7\x2d\x60\xac\x83\x9c\x39\x99\xf6\xfe\xcd\x8f\x02\x15\x29\x83\x59\xdc\xf9\x1e\xd5\xb2\xe0\x64\x9d\x96\x6f\x29\x8b\x45\x13\x1e\x95\x4e\x13\x51\x25\x51\xb9\xe3\x2b\xa8\x03\x08\xa2\x61\xaf\xaa\x2e\x2d\x21\x14\x16\xbd\xca\x8e\xd2\xb1\xdc\x3c\xb2\x47\xe6\xbb\xe3\xcc\x84\x45\x14\x8a\x22\x04\x02\x4b\x4e\x60\xf1\x8d\x83\x1c\x8c\xd2\x94\x98\x31\xf1\x54\x38\x73\x7f\x81\xfd\xcd\x37\x2a\x64\x8a\xcb\x24\x1c\x76\xea\xb8\x27\x85\x75\xda\x6c\x08\x64\x2d\x1e\x9b\xea\xfc\xde\x41\x46\xf0\xbf\x1b\x10\xd9\x21\x0a\xae\xbf\x3f\xf1\x35\xe5\x37\xdb\x04\x67\xa3\x64\xd9\xe6\x5e\x9b\x47\xa0\x27\x0a\x86\xe2\x15\xca\x87\x51\xdc\x1f\xa6\x29\x7a\x30\x84\xe7\xd6\xd7\xc6\x7e\xd2\x46\x19\x0f\x25\x2a\xde\x27\x3a\x25\x26\xeb\xab\xc5\xfb\x1e\x9b\x22\x8b\x4c\x56\x9d\xe6\xf4\x31\xa9\x35\x79\x60\xdd\x15\xb7\x70\x13\x3b\x48\x8b\x08\x88\xbc\xea\x51\x70\xae\x6e\x5b\xeb\x28\x0a\x2d\x7a\x33\x69\x20\x7f\xba\xce\x7e\x5a\x80\x1f\xfa\x05\x5e\x75\xc0\xa2\xf1\xb5\x92\x9f\xb5\xfd\x15\x93\xa1\x32\x8a\xb8\xe9\xae\x66\xbe\xbc\xdb\x92\xe2\x64\xd0\x28\x97\x62\xb8\x61\x90\x0f\x7f\xa6\x1c\xd2\x54\x1a\xc3\xb6\x70\x8b\x33\x06\x72\x12\x39\xd0\x99\xc3\x78\x5c\x51\xa8\x1c\x91\x29\xc9\x15\xc7\xc7\x6b\x13\xcf\x25\xf5\x9a\x5b\x91\x65\xb2\x94\xc6\xf2\x64\x48\xbf\x3d\xc6\xb3\x38\x09\x40\x67\x90\x2f\x4d\xb4\x70\x1d\x75\xe6\xcf\xce\xb2\x6b\x70\x42\x55\x5a\x4e\x68\x76\x16\xb3\xb2\x83\xbe\xdb\x71\xfe\x56\xdf\xcd\xab\x73\xe2\xd9\xde\x1e\xa9\x62\xc3\xb4\x96\xdf\x79\x0c\x63\x8f\x4d\xfb\xa3\x89\x6f\xe6\x7d\xa2\xe7\x5d\x66\x9b\x0c\xa2\xc4\x42\x96\x45\x87\xad\x3a\xf9\xe2\xd9\x17\x5f\xb1\xe9\xd8\x64\x7d\x4a\x79\x39\x6c\xea\x59\xf2\x8c\xa4\x3d\xd2\x27\x0c\x8a\x61\x2a\x4b\x96\x93\x80\x2a\x1d\x74\xd5\xa5\xf4\x97\x22\x9b\x17\x06\xb9\x1c\x81\xcc\xd1\xaa\x10\x2c\x9d\x86\x26\xae\xda\x6c\x1b\x39\x2f\x9c\xe2\x53\xd2\xfe\xc7\x11\x4d\x01\xb7\xfc\x11\x05\x30\x88\x1d\x20\x19\x2e\x89\xf7\xb6\xa6\xfe\xcc\x0e\xca\xd8\x64\xcc\x0e\x55\x4b\x00\x89\x29\x6b\x6e\xb0\x85\xee\xc0\x94\x71\x1a\xe5\xce\x2a\x49\xdb\xb4\x42\x41\xde\x68\x84\x1b\xfb\xf7\x77\x29\x47\xd3\xf1\xe0\x81\x9b\x81\x4a\x3e\xdc\x54\x69\xdb\xc2\xc4\x47\x59\x81\xe6\x05\x4e\x19\x21\x5d\x28\x65\xe8\x8e\xe3\x1c\x02\xa0\xc8\x95\x1c\x0f\xcc\x39\xa1\x4d\x55\x2b\xe1\x14\x83\xb4\x7d\xaa\xbe\xa6\x8e\x12\xda\x0b\x4b\xe4\xe4\xb0\x39\x60\xc5\x1c\xc5\xb9\xf3\xc1\x6e\xba\xa2\xf5\xc8\x64\xab\xb1\x49\xfa\x1d\xa5\xeb\x76\x49\x01\x9c\x9b\xa7\xea\xfe\xfd\xdd\x61\x5a\xe6\x76\x98\x72\x48\x20\x2c\xef\xb4\x41\x85\x5a\xdc\x47\x5a\x27\x34\x02\xd8\xc4\x31\x48\xd2\xe5\xe4\xff\x3e\xbd\xae\xb4\x1c\x55\x11\x2d\xff\xbb\x22\x29\xbb\xa4\xc8\xc6\x8a\xcc\x26\x7d\x84\x38\xd8\x5a\xec\x72\xf0\x8d\x3a\xd0\x86\xe5\x60\xa8\x25\x7a\x5f\x53\xca\xd2\xaf\xb9\x05\x9c\x45\x24\x55\xa4\xaa\xfe\xd7\xb4\xee\xdb\xb5\x06\xe8\xf4\xd0\x4b\xdd\xc5\xcc\x9a\xa3\xe4\x77\x72\xb3\x64\xe0\x3b\x1c\x2e\xea\xe6\x97\xcc\x9a\xbc\xcc\x56\x77\xa8\x72\xc1\xce\x9e\xe7\xde\xfc\x9a\x6a\xde\x99\x5a\x53\x92\x08\x2c\x8a\x25\xed\x78\xde\xf9\x3f\xad\xe8\xf3\xbf\xa6\xfa\x06\x8a\xcc\x84\x47\xb7\x53\x20\x04\xf4\xd2\xf7\xaa\xf5\xbf\x01\x2e\x21\xfe\x17\x9c\x01\x4e\xf7\xdf\x25\x3d\x5e\x53\x54\xe7\x7f\xd3\x81\xeb\x16\xed\x57\x4a\x6b\x0a\xa7\x08\xee\x98\xc8\x3d\xcb\xdb\xc9\xc6\xc1\x75\x80\x8a\xf6\xd5\xc3\x38\x83\x8d\x10\xe8\x1b\x13\x15\x0f\x7d\xc3\xbb\x5c\x49\x31\x2c\xf3\xc8\xe4\x02\x94\x53\x26\xe4\xa0\x33\x21\x2d\x14\xb6\x63\x5b\x44\x85\x55\x7d\xc5\x70\x0a\xf9\xba\x71\x08\x1f\x59\xd8\xc7\x30\xb0\x4e\xe7\x45\x79\x97\x3f\x0b\x54\x5f\xfc\x9f\xb5\x74\x89\xcd\x75\xf3\xa1\xe1\x3e\x89\x8d\xeb\x13\xb4\x2e\x34\x7c\xfd\x85\x7d\xdd\x28\x41\xef\xc7\x94\x92\x66\x66\x9e\x48\x2c\x4b\xa4\xd2\x85\x39\xaf\xe5\x7d\x46\xd1\x60\x58\xac\x4e\x79\x2c\xf1\x05\xb2\x14\x80\x49\xbe\xa3\x24\x79\xde\xf4\xa4\xa3\x69\x5e\x58\xd6\x1e\x85\xd3\xfe\x60\xa2\xda\xed\xdf\xa3\x9f\x44\x3e\x92\x49\x86\xe1\x47\x3e\xd9\x6b\x49\xd9\x2c\x99\x4c\x26\x0c\x01\xec\x79\xcd\xce\xa4\x75\xa6\x0a\x6b\x48\xe7\x00\x1e\x83\x50\xa9\x7a\x0c\x5d\xb3\x6d\xf0\xe5\x97\xbb\xc3\x74\x64\x49\x0a\xd8\x3b\x72\x0f\x74\xc6\xfc\x41\xe3\xe4\xa7\xf0\x2e\x0d\x8f\x8e\xa9\xf9\xe6\xb0\xe4\xf2\xa1\x9a\xcd\xd7\xaa\x26\xbc\x6c\x93\x22\x8a\x29\xd1\xd0\xf1\x87\xca\x55\x45\x93\x7d\xb5\xb5\x19\xb9\x30\x1c\x40\x4a\x26\x95\x96\x84\x64\x88\x9e\xd6\x2d\x21\xcb\x51\x68\xf3\xdd\xd5\xdf\xa2\xf8\x09\x79\x2c\xd1\xd7\x51\x62\x62\xd0\x50\x46\x4d\xf6\x43\x2d\x3c\xfd\x5e\xa0\xda\x9e\x45\xb4\x83\xf3\x13\x81\x02\xd4\xa0\xc2\x81\x69\xdc\xb9\xe6\xcb\x8e\x5b\x1a\xcd\xf8\xb3\xb3\x5d\x7b\xac\xc8\xec\xc8\x2a\xc8\x3f\xd3\x29\x08\xeb\x80\xaa\x5f\x08\x6f\x18\xca\xdf\x08\x48\xf8\xda\x95\xb1\xfb\xa9\x28\x2e\x22\x27\x75\x17\x07\x22\xdf\x28\x6f\x62\x39\xca\x23\x92\x52\x16\x64\xb9\x43\x35\x28\x20\xc3\x33\x9a\xf2\x67\x94\x16\x4e\xaa\x42\x28\x0d\x75\xb7\xca\x5e\x4d\xde\x39\xde\x55\x43\xa8\x6f\x52\x83\x7a\xc1\xf5\x31\xfa\xb0\xee\x38\x96\x3f\xf2\x57\x1f\x69\x72\x2c\xf8\x10\x9c\x5a\x56\x52\xba\x1f\x51\x36\x15\x99\xab\x77\x5c\x2e\x3b\x2e\xb3\x7a\x4b\xcc\x3b\x81\xef\x04\x7f\x47\x2d\x8a\xc5\x32\x8e\x2d\x39\x03\x2e\xeb\xa0\x9b\xbc\xee\xd5\xfe\x34\x8f\x12\x9b\xe7\x9f\xa4\x5d\x05\xef\xe2\x31\x19\x67\xc7\x5e\x5e\xf9\x45\x35\x58\x2e\xf6\xd3\x43\xbd\x4f\xee\xe2\xdd\x05\x4c\x55\xfd\x16\x16\xe0\x04\x85\x3b\xd7\xd8\x34\xbf\x30\x5f\x23\x9c\x62\xa5\x6f\x0c\x0a\x96\xf7\xbf\x60\x09\x1b\xfe\x33\x1a\x61\xa4\xa8\xb6\x40\x8f\x06\x19\xd4\x0d\x2c\x6d\x80\x0c\xa7\x08\xe1\x88\xd0\x80\x99\xff\x1d\x4f\xb1\x43\x3e\x3c\x03\xaa\x28\xac\xd9\x3b\x6d\x61\x81\x1d\xd9\x6c\x20\x00\x2a\x27\xef\xaf\xfa\x47\x55\x83\xc0\xa3\xc6\x01\x3c\x3b\xdb\xcd\x52\x93\x17\x2a\x04\x3b\x4d\xd6\x52\xe0\x89\x3e\x3b\xb8\x1c\x81\x7b\x17\xe0\x2a\xfc\x86\x10\x47\x76\x3e\x7f\xc4\x89\xf1\xb4\xa8\xa7\xe6\xe5\x78\x1c\xaf\xaa\xbc\xd9\x29\xfa\x0d\xbe\x6e\xd8\x70\x89\x42\x97\xa6\x7d\x84\x76\x12\x94\xfb\x08\x6e\x7e\x1e\x54\xe1\xa9\xa3\x0d\x5e\xf0\x34\x78\x6d\x44\x9e\x8b\x69\x5e\x08\x8f\xaf\xe4\x8c\x69\x1d\xf0\x8d\xea\xd8\x58\x8c\xab\x80\x5f\x09\x7e\x33\xfe\x96\x6f\x70\x60\x63\xc5\xb0\x51\xe7\x1b\x2d\x9d\x51\x94\x7d\xe6\xe9\x6e\x4d\x12\xb6\x40\xd5\xed\xb1\x71\x94\x49\xc6\x4e\xa8\xd5\x69\x45\xf0\x8d\xea\x1c\x5e\x4a\x33\x83\xa1\x84\x2b\x02\xf9\x01\xbe\x6e\x7c\x39\xa9\x84\x2e\x96\xd9\x22\xb3\x6c\x02\xdf\xc3\xd4\xdb\x4e\x0e\x66\xce\x6f\x90\xcd\x89\xc8\x99\x43\x10\xb1\x28\x0b\xaa\xef\xf3\x5e\x46\xe4\xf2\x48\x45\x31\x4d\xaa\xaf\xea\xd4\x09\x33\x4b\x94\x28\xa8\x6f\x8a\x52\x80\x6a\x29\x3e\x51\x8b\x9f\xe3\x34\x89\x4c\xdc\xa1\x34\x2c\x13\x6c\x05\x4a\x40\xfc\xed\x36\x10\xe5\xd0\x64\xcb\x36\x2f\x3a\xb4\x4f\xda\x1a\x77\x1c\x93\xaa\x0d\xcb\x8c\x58\x51\xb6\x75\xe6\xe6\x36\xae\x4f\x94\x8a\xe6\xa5\xa0\xb3\x7f\x66\xe3\x3a\x87\xd3\x30\x62\x4f\xf6\x14\x5f\xd4\x36\x57\xfb\x58\x19\x5a\x03\xac\x14\x36\xe5\x63\xc0\x86\x90\x0c\x3d\x3d\xe9\x7c\xf1\x0b\x52\xd2\x56\xbd\xcf\x35\x42\xe6\x66\x03\xe2\xcc\x21\x90\x84\x95\x9e\x1d\x42\xb4\xfc\x3a\x4a\xe2\x77\xf3\xdb\xcf\x2f\xcc\x77\xa3\x3c\x2f\x2d\xb7\xd1\x23\x0f\xf5\x08\x0b\x93\x6f\x1a\x3b\x9e\x3a\x15\x23\x5b\x3b\x97\x6e\xea\x32\xcd\xcd\xc9\x1e\xfe\x48\xf7\xc8\xcc\xa1\xbf\x50\x19\x29\x69\x06\x51\x22\x0c\xef\x4f\xbc\x76\xcb\x96\xb5\xce\xe7\xbe\xc4\x3b\xe1\xe7\x81\xef\x71\x66\x19\x03\x95\xf9\x93\xd6\xaa\xef\x13\x42\x00\x1e\xe6\x79\xd0\x5b\xc1\x10\x5e\x51\x86\xe1\x86\x66\x1e\x00\x26\xc5\xd5\x87\xe7\xdd\x59\x73\x36\x50\xc5\xa3\x5b\x13\xa5\x32\x39\x4d\xd1\x01\x1c\xb5\xf7\x54\xd3\xd0\x8d\x89\x3e\x63\x6f\x60\xb8\x80\x16\x07\x41\xa6\x40\x02\xc9\x72\x4b\x37\x52\xe5\xeb\x3a\x52\x91\x6a\xad\xb9\xb2\xa9\x27\x52\xfd\xfa\x44\x09\xa4\xfd\x94\x04\x43\x90\x26\xfa\x8f\x6d\x73\xf7\x69\x4a\xba\x8f\x3b\xbe\x33\xe3\x7d\xc5\x33\xf6\xbe\x3a\xf1\xfa\x36\x8c\xc5\xa9\x54\xc5\xd0\x6a\x36\x84\xc2\xa5\x85\x98\x26\x8c\x8a\xe8\x55\x9b\xe4\x2a\x6f\xca\xa9\x13\x61\x27\x7f\x46\xe3\x00\xd3\xac\x30\x49\xb1\x9b\xce\x4e\xe0\xcb\xb6\xf6\x68\xfe\x70\x90\x5d\xd1\x0e\x31\x68\xb5\xc4\x8b\xa6\x71\xc2\x6c\x3c\xdd\x53\x54\x52\x1f\xa2\x3b\x17\xae\xfa\x1e\xe0\x99\xf8\x9b\xa9\x21\x1d\x68\xb5\x3b\x8a\x21\xee\xca\xc4\x8b\xe1\xe5\xd1\x20\x89\x96\xa2\xd0\x24\x05\xa3\x32\x84\x25\xab\xfa\x7b\x49\x80\x29\xc1\x51\x93\xec\xa6\xd9\xc7\xbc\x42\x93\x5e\x4a\xd8\x8a\x9a\xef\xf4\x44\x0b\x0f\xc3\x7c\x3a\xe5\x5a\x87\xad\x7b\x12\x2f\x82\x64\xd4\xf6\x35\x0f\x26\x3b\x0b\x8b\x54\xe3\x1d\x42\xce\x6b\xc7\x5a\xdb\xe9\x53\x05\x70\x95\xa7\x86\x1f\x45\xa6\xfd\x16\x9e\x87\x6f\x1a\x5b\xb4\x8a\x96\xfa\xe9\x4a\x42\x98\x37\xf8\x3f\x3f\x50\x2a\x62\xd7\x02\xc5\x04\xf3\x68\x52\x2b\x76\x38\xc9\xd0\x2b\x9a\x59\x2d\x4b\x97\xa3\xbe\x9d\xa6\xd9\x94\x28\x5b\xe3\xe6\x02\xdf\x6e\x8c\x42\x9f\x0f\xbf\x79\x79\x24\x39\xf5\x29\xd7\x69\xf1\xb8\x86\x25\x1d\x46\x2d\xb1\x4a\x15\xde\xd8\x65\xf9\x94\x74\xd5\xd0\xa7\xf8\x46\x81\x4f\xc6\x36\x93\x22\xaa\x74\xd9\x2b\x2a\xd5\xb3\x5a\xb8\x18\xee\x84\x4b\xe1\x73\xb3\xb7\x14\x90\x7d\x9a\x75\x60\x13\xbb\x6c\xd4\x69\xc9\x88\x1c\xbe\x69\x65\x0b\x49\x57\xec\x74\x2d\x53\xe4\xf1\x35\xec\x0d\x20\x96\xe6\xe6\x6e\xb8\x06\x27\xdb\xfa\xfc\xca\x24\x4e\x97\xa9\x8f\x72\x76\x96\x17\x2c\x14\x42\xf8\xba\xd1\xe8\xf9\x99\x6e\x38\x34\x14\xf0\x67\x72\xd6\xce\x38\xf9\x11\x7a\x26\x29\x22\xc9\x69\xb4\x14\x47\x96\x13\xaf\x42\x9f\xab\x1a\xf8\xd9\x46\xe0\x9c\x3f\xa3\x0c\x4a\x5a\x16\x7d\x9a\x4d\xdf\xd5\x79\x5e\x31\x38\x9e\x6f\x84\x90\xf3\x2f\x1d\xec\x96\x89\x4d\xfa\x82\x7c\xc1\x80\x9c\x51\x69\xa0\x33\x2d\x41\xe1\xc1\x6e\x16\x8d\x0c\x8a\x1a\x42\xeb\x42\x13\x20\x8c\x2f\x2d\x64\x53\x79\x68\x16\x39\xb0\x91\x02\x84\x4f\x47\xbc\xdb\xe6\x02\xe4\x96\x0a\x35\x34\xcd\x22\xee\x5f\x3d\xa3\x60\x3e\x3e\x4e\xc5\xcb\x27\xb5\x90\x9f\x7a\x9f\xac\x1a\x5f\x37\xfc\x19\x28\x77\xd7\xf2\x31\x2e\x63\x35\x3b\xeb\xb6\x8c\x37\x48\x2b\x19\x5a\xa4\x51\xc0\x79\xcc\x45\x68\x89\x87\x7d\x8c\x09\xee\x3c\x46\xd3\x28\x5c\xc1\x52\x94\x87\x43\xa6\x2f\x87\x1d\x3b\xa7\x75\xc6\xce\x35\x5a\xe9\x0f\xef\xf3\x20\x93\x70\x55\xa5\xed\xaf\x68\xc9\x9b\x2b\x2a\xad\x37\xb6\x59\x49\xdf\xef\x7a\xd9\x0e\x08\x22\xef\xa2\xa2\xc6\x5d\x32\x71\xc8\x9d\xda\x88\x2f\xef\x69\x29\xf8\x7b\x0a\xd6\x27\x8c\x49\xc2\xd4\xf3\x56\xa0\x81\x5d\x6f\xb5\x2e\x11\x70\x82\xb8\xe3\xf9\x75\x9a\x05\x61\x71\xf2\xa5\xac\xa5\x38\x5d\xed\x77\x7c\x33\x35\xf2\xbf\x7c\xed\xc1\x53\x79\x61\x2d\x35\x81\xe0\x6d\x2f\xd0\xe0\x8a\x24\x94\x4f\x78\x30\x5b\x2b\x1c\xcb\xa9\x5e\xb3\xf9\x32\x7f\xd5\x16\x29\x97\xfe\xd0\x53\xf8\x13\x8d\x4c\xd1\x4c\xe5\xb7\x1a\x76\x64\xff\xfe\xee\x2b\xe6\xd5\x57\xa7\xb4\x42\x6d\x67\xae\x2e\x9b\x24\x2a\xb6\x2d\x05\x2b\x2a\xbd\x50\xa9\x96\xc6\xc5\x49\xe4\x3b\x0a\x84\xcb\x8a\x84\xbf\x88\x46\x8b\x36\xa3\xb4\xb3\xaa\x38\x4e\xfc\x01\x7d\x4d\xcd\xe4\xa2\xc9\x16\x6d\x06\x83\xa1\x30\x18\x73\x9a\x22\x41\x9a\xa4\xd6\x9d\x1c\xd7\xc8\xf4\xed\xee\xea\x99\x71\xea\xb1\x36\x38\x62\xda\x07\x5a\xb2\x7b\x43\x07\xd8\xff\x07\xb9\x6c\x08\x17\x9f\xa4\xd4\x0b\xb9\x4f\x47\xfe\x22\x32\x68\xe4\x31\x9f\xf8\xed\x9e\x5f\x7e\x4f\x00\xb6\x46\x5e\xf2\xb5\xdf\x05\xd3\x26\x86\x7e\xfb\xda\x53\xae\xb0\x1c\xda\x38\xb6\x09\xa0\xbe\x62\x53\xaa\x67\x13\x02\xa3\x8e\x53\xd9\x9a\x5a\xf3\x67\xfb\xd3\x6d\x99\x3a\x13\xa7\x89\x55\xf2\x44\x8f\xb4\xb8\x0a\xbe\x15\x0b\x77\x5b\xcf\x67\x0a\xb3\xb4\xcc\x15\x2a\xe8\x9a\x42\x05\xe9\x2c\x57\x1c\x85\x36\xc9\xd1\x23\x24\xf9\xea\x77\xe8\x6f\xf9\xba\x85\x69\xe3\xcb\xdd\x1a\x0b\x09\x62\x8a\xdb\x74\xf4\x23\xc9\xf2\x4b\x24\x1d\x04\x16\xd8\x04\x94\x7e\xb9\x8a\x0f\xa9\xb4\x48\x43\x29\x3c\x2e\x9e\x39\xfc\x92\x23\x32\xc8\xac\xe9\xd7\xa2\x80\xcb\x3a\x3b\x75\xb9\xc6\xd4\x95\xd9\xd5\x69\x0f\x52\x82\xf8\xae\xc8\xcd\x77\x9c\x32\xf6\xf4\x9a\xee\xbb\xdc\x1c\xd5\x57\x7b\x22\x8d\x5c\x93\x06\xa6\xe5\x22\x16\x1c\xdf\xa8\x28\x7a\x50\x46\x7d\x19\x3c\xd4\x44\x3e\x64\x53\xc2\x77\x2d\x39\xe6\xf9\x6e\x1c\xb9\xf3\x56\x7c\xf5\xea\x91\x84\x32\x50\x49\x5b\xa5\x8b\x8b\xc0\x1f\x03\xa0\xf2\xb0\x06\xfb\xf4\xad\x62\xe7\x26\x9a\x20\x3c\x15\x66\x13\x21\xc7\xf7\xec\x03\x97\x14\xfd\x79\x6e\xe3\x6d\x3e\xcb\x0c\xf2\x60\x94\x8d\x7e\x4e\x51\x13\x22\xa5\xb7\x74\x23\x00\x43\x41\x25\x7b\xd7\x46\xc2\xb2\x62\xed\xd1\xbe\x59\xad\xe9\x92\xff\x2c\xf0\x79\xd3\x9f\xb5\x15\xd8\x8a\x61\x66\x57\xe8\x91\x6b\x22\xad\x92\x52\xf4\xe0\xf0\xb4\x2c\x32\x33\x60\x8f\x00\xff\x0d\x56\x24\xbe\x6e\x74\x98\x7f\xa6\xfb\xea\xe2\x62\xc7\x57\x3b\xb8\x5f\x58\x48\x6b\xa4\x24\x36\x24\xb6\x4e\x99\x74\x98\xdb\x1b\x00\xe2\xf0\x4d\x5b\xdf\x4b\xdf\x2e\xd9\xa4\x3f\xe5\xf3\x30\xff\x01\x3b\x53\x7c\x21\x1f\xd1\xe8\x08\x60\x39\x4c\xe9\xc0\x45\x98\x7d\x5f\x83\xa1\x7f\xa6\xce\xdb\xab\x9a\x59\x62\x7b\xef\x69\xad\x8d\x89\x64\x05\x7d\xd0\xa5\xd6\xab\x67\x95\xd4\xfa\xd3\xea\x4c\x5c\x4e\x33\xaa\x9b\x78\x1b\x1f\xe8\xa4\x4f\x0b\x1b\x45\xe5\xb7\x4a\xe4\x2d\xf4\xb1\x8a\x39\xe2\x74\xc3\xed\x7a\xee\xb9\x6e\x3a\xb6\x99\xf1\x80\x0a\xdd\x99\x2e\x2e\x74\xcb\xe9\x93\x96\xd2\xb4\x89\x0a\x0a\xf3\x33\x49\x64\x4a\x61\x2a\x56\xfe\x0d\xd7\x89\x19\xa6\xc9\xb2\x05\xe9\x07\x33\xa9\x29\xc2\xb4\x2b\x8d\xd5\x75\x64\xe6\x50\x37\x4e\xf3\x02\x5e\x2a\x92\xa2\x17\xe0\x7d\xf2\xcd\x44\x09\xd3\x14\x0c\x82\xeb\x78\x5f\xe9\xb6\xc2\xfc\xdf\x56\x7f\x9b\x2e\x2d\xd9\x24\x8f\x96\xe1\x14\x08\xc9\x68\x47\xb1\x8f\xaa\x6e\x77\xf2\x09\xdc\x7f\x5d\xd2\xc4\xa4\x1a\x00\xbf\x68\xe2\xa3\x53\x3e\xb5\x00\x42\x18\xce\x26\x04\xbe\xfe\xbc\x73\xed\x59\xc9\x16\x15\x99\x29\xd2\x7c\x3c\xb4\x59\x14\xd2\x2f\x38\x81\x10\x25\x24\xe5\xd7\x5e\x1a\x83\x29\x08\xe9\x82\xf5\x89\x62\x8d\x5c\x57\x02\x3d\xa3\x34\x2b\x06\x24\x25\xec\x45\x92\xae\x69\xe6\x88\x66\x5f\xc2\x91\x85\x7d\x5d\x3a\xa6\xf6\xcf\x28\xc9\x53\x97\xd9\x40\xfb\x92\x08\x28\x6d\x3e\x11\x0e\xbd\xd4\x4d\xd2\xa4\x4c\xa8\x96\xe3\xf2\x84\x40\x88\xf1\x75\x9b\xd4\x5a\x37\x2c\xd3\x51\xda\x51\xe1\xd7\x87\xaa\x3d\xfe\xc3\x3a\x4a\x64\xa9\xcc\xa3\x34\x99\x52\x90\x73\x0c\x29\xe2\x27\xfc\x16\xac\xdc\x86\xaa\x32\xe5\x65\x46\x80\x16\x61\x12\x40\xf5\xfd\xae\x92\xde\xb8\xdb\x78\x32\x22\xb0\x1d\x5b\x41\x68\x08\x43\x5a\xc7\x35\xde\x5e\x51\x3d\xac\xe3\x2c\x1d\x64\x66\xb4\xdb\x97\xc4\x7f\x5f\x33\x20\x3d\x56\x72\x73\xd7\x6a\x35\x37\x5a\xcf\x9c\x68\x9e\xa8\x50\x9b\xd3\x21\x8c\x69\x51\x56\xfd\x5b\x58\x75\xfc\xee\x28\x2b\xa0\xd8\xf7\xc4\x5a\x73\x70\x0f\x76\xf3\x71\x7a\x94\x5b\x76\x44\x58\x5c\xa7\x0a\x9f\x52\xa5\x9b\x68\x99\x2a\xfc\x0a\xa0\xa3\xb5\xcb\x26\x6a\x2d\xd6\xf8\xfc\x1b\x71\xd5\x81\xb9\xae\x89\xc2\x61\xa4\xe9\x1c\x19\xa3\x2c\x65\xc7\xcd\x1f\x21\xdc\x65\x61\x47\xb4\x52\x91\xe4\x3d\x8b\xed\xcd\x37\x93\x27\x3c\x9c\xdb\x2e\x76\x74\xee\x94\xc5\x26\xf8\x66\xcd\x1f\x33\xd1\x68\x14\x25\xe2\xd7\x2a\xf2\xde\x17\x5c\x3f\x5b\xc3\x6d\x98\xe9\x66\x16\x60\x29\x8f\x54\xa4\xf1\x12\xd4\xa2\x5a\x8c\x43\xbb\x9c\xa5\xb1\x2d\x60\x62\x45\x3d\x5f\x85\xfc\x97\x5d\xc9\x37\x1a\xd9\xb8\x6f\x08\x85\xaa\x94\x33\xe6\x5d\xc4\xe4\x81\x41\xa3\x34\xb1\x85\xc9\x22\x31\x75\x38\xbe\x6f\x4f\x54\x31\xa0\xc6\x30\x9b\xa5\x79\x9e\xa5\x95\x73\x55\x85\x21\x08\x8e\xbf\x4d\x67\x29\x5f\x07\xd2\x37\x95\x98\xd1\x94\xcf\x24\x5f\x6b\x92\x65\xa2\x18\xf7\xc0\x43\x89\x4c\xe2\x00\x73\xd2\x0d\xeb\xe5\x3c\xaf\xb5\x70\x6d\xc7\x69\x7a\x74\x5a\xf3\xc2\x05\xde\x39\x42\x79\x91\x75\x03\x28\xcd\xc1\x74\x88\x0d\xd8\xfd\xfe\xfd\xdd\x28\x33\xb5\x1c\xd6\x25\x9d\xc3\xba\xa4\xb8\x4e\x38\xed\xa8\x93\x12\xe8\x8b\x44\xe1\xf6\xfb\x9a\xd1\xe4\x66\x63\xa1\x56\xd6\xae\x48\x63\xce\x7d\x20\xde\xe0\x93\x9c\x6f\x1a\x87\xa4\x84\xf3\x8b\x69\xd2\x9f\xf6\x85\xfa\x27\xd6\xd4\xae\x04\xd6\x03\x09\x47\xec\x76\x64\xcc\x9e\xed\x35\x51\x50\x33\xdd\x22\x8b\xca\xd1\x78\x28\x5e\x0b\xf2\x08\x1f\xc2\x13\xe0\x9b\x36\xb6\x04\xef\x12\xcc\xcd\x39\x71\x36\xfa\x90\xc8\xb6\x29\x16\x95\x95\xa8\x08\x87\xcc\x3f\x0d\xef\xe2\xa6\xa2\xfb\xbe\xa9\xce\xb8\x38\x2d\x72\xd5\x52\xff\x96\x42\xb9\xbd\xa5\x8e\xcd\xbe\x2d\x6c\x86\xce\xa4\xfd\xfb\x7d\x34\xe4\x45\xc9\x54\x9d\x2b\xac\xce\x58\x6e\x0d\x91\x4c\xaa\xca\xaa\x2a\xc1\xc0\xa4\x1c\x55\x27\xa0\xf0\x03\x09\xe6\xe5\xbe\x92\xe1\xb9\xaf\x2c\xd6\x20\x31\x2b\x62\xd1\x85\xef\xbc\x7a\x04\xbe\xd6\xe2\xb2\xa9\x49\x48\xe3\x79\xae\xc6\x5d\x0e\x28\xe3\x79\x45\xbc\xf1\xfb\x64\xa8\x95\xc8\xb0\xd3\x4c\x55\x8b\x6e\x29\x4e\xb3\xa8\x6f\xa0\x68\xcd\x85\xea\xa0\x46\x23\xe1\x4b\x09\x17\x37\x91\xb3\x57\x3f\x2b\x5d\xe2\x2a\xa5\x77\xa5\x05\x57\x4c\x6e\x41\x32\x00\x2a\x0c\x07\xf6\x39\x3c\x12\xc2\xdc\xf7\x26\xbe\x63\xf0\x96\x72\x16\x07\x66\xb4\x18\x47\xc9\x80\xf8\x66\x9c\x78\xa9\x47\xd8\x9d\xaa\x1e\x62\x63\x5d\xeb\xb8\x9d\xd5\x04\xae\x1d\x04\xc3\xcc\x7f\xd8\x30\xd5\x55\xdc\x97\xa7\x59\x81\x8d\xce\x65\x15\xbf\xca\x0f\x42\xa1\xd5\xa9\xe9\x1e\xf0\xb2\x31\x6d\xac\x24\x65\x78\xd4\xd1\x8d\x33\xc2\x89\x5e\x4b\xd0\x4e\x9f\xf4\xfe\xe2\x52\x94\x87\x00\x8a\x68\x7e\x9b\x89\x2e\x26\xb7\x56\x64\x4d\x14\xa7\x65\x41\xbd\x99\x22\xce\xdf\xf1\x42\xfd\x2a\x2c\x19\x67\xe9\x38\xcd\x4d\xbc\xbb\xe3\xa8\x22\xb6\xaa\xf4\xc1\x3f\xde\x40\xad\x5f\x5e\x4d\x11\x7e\x5c\x41\x5f\x9a\x96\xf0\x00\xe6\xe1\x74\xe0\x5b\x59\x36\x54\xd8\xc7\xe5\x2d\xd8\x68\x56\xbf\x87\x5f\xbe\x11\xfc\xe5\x8f\x31\x39\x51\x12\x66\xd6\xe4\x51\x32\xe0\x7c\x34\xc6\xf5\x17\x81\x3a\xfe\x7e\x51\x8b\xa4\x23\xdb\x7f\xd2\xc7\x28\x04\x26\x92\xf6\x99\xef\xf1\xba\x94\x63\xcb\x65\x4c\xde\x7c\x0c\x45\x03\x2c\xd8\x77\xa8\x55\x8d\x51\x2c\x24\x2b\x8f\xe2\xfe\x34\xe1\x09\x10\xe2\x7c\x9f\xbb\xde\xf8\x13\xb4\x13\x60\xff\x6f\x83\x82\x50\x64\xfa\x68\xf4\x60\x9d\x2e\x68\x4e\xeb\xef\x4c\x94\x6f\xf0\xe3\xb6\xc6\xb4\x3c\x34\x4c\x23\x2a\x90\x56\x9a\x16\xc1\xb4\x36\x97\xe8\x7c\xb7\x20\x7e\x67\x47\x86\xf2\xd5\xc0\xb7\xd4\x7f\x75\xb3\xe4\xd3\xa1\x97\xba\x9f\xa5\x5d\x06\x7b\xf8\xcd\x89\x17\xb4\xfc\x85\xe2\x74\xfe\x71\x6d\x70\xd3\xd5\x7c\x57\xe7\xb9\xe7\x5c\x42\xba\x1a\x28\x57\xae\x74\x34\x84\xef\x68\x06\xd9\x73\x68\xfa\x71\xe9\xec\x05\xa1\xd7\x39\x0d\x87\xca\x2d\x4f\xb7\x01\xa0\x62\x02\x17\xf5\x3b\xaa\x07\x3e\x34\xc5\x30\x8d\xa3\x90\x8d\x1a\xbb\xea\xf4\x8d\xcc\x4f\xa6\xe5\xd2\x98\xfd\x45\x1c\x7a\xcc\x3c\xfc\x4c\x4d\x47\xbd\x12\xc5\x71\x54\x47\x60\x2b\x2f\xe5\xb5\xcd\xac\x16\x95\x21\x98\x5f\x98\xff\x0b\x54\x91\x43\x32\xe1\x04\xe6\x18\xf9\xa3\x3b\x93\xce\xe7\xbe\x24\xa4\xb0\x70\x54\x91\xe7\xb8\xa7\x79\x76\x6e\x50\x17\xbb\x4c\x4c\x35\x88\x52\xcf\xad\x4e\x16\x1c\xe3\x8f\x02\x45\x4f\xc0\x45\x07\xf8\xe0\x0c\xb2\x71\x62\x82\x6a\xb9\xd1\x60\x20\xd7\x77\x3c\xf0\x54\x09\x0f\x51\x27\xc4\x27\x3e\x64\x28\x0d\x7e\xfe\x26\x4a\xc8\x68\xd0\x7a\x03\x9b\xd2\xf5\xf8\xba\x84\x2a\xef\x0f\xe0\xbb\xcf\x10\xb5\x25\xeb\x69\xe9\x7e\xcf\xbb\xea\x40\xb8\x41\x68\x25\x18\x84\xeb\x81\x6a\xb8\x86\x98\xac\x90\xf5\x3d\xe9\x00\x9c\xf1\x20\x2a\x47\x53\x0a\x9d\x7c\x5b\x49\x14\xbc\x4b\x00\x18\x09\xcd\xdb\xb2\x72\x79\x9c\xae\xb8\x18\x1e\x20\xba\xb3\x0a\x50\x77\x56\xa5\xa6\x72\x9b\xe4\x76\xda\xbb\x2b\x6c\x97\x30\x6c\xb7\x31\xb8\xc2\xf3\x41\xe3\xc1\xff\x13\x68\x75\x5d\x22\xb3\x4b\x8a\x1c\x9a\xc0\x30\x36\x7f\x46\x96\x9f\xaf\xf5\x49\x6c\xb2\x8c\x41\xbb\xc0\xf3\xb0\xf3\xc9\x37\x8d\x44\xde\xa1\x97\xba\xc3\x34\x26\x3a\x60\x27\x0d\x7f\x57\xf5\x1a\xde\x0d\x24\x88\x26\xea\x46\x53\xc4\x26\x29\xaa\x20\xda\x15\x57\x6f\xd1\xab\xf3\x75\xd3\xe3\xdf\xdf\xcd\x0b\xb3\x2a\x47\x90\xc8\xab\x2a\x3c\xe8\xd5\xc6\x33\x2d\xec\xeb\x96\xe3\xa1\x8d\xb9\x55\x56\x31\x21\xcc\x7b\xe9\x5e\x5f\x99\x7e\xa0\x28\xfb\x07\xd6\x1e\x45\x38\x2e\x7c\x0e\xaa\x07\xe7\x4c\x50\x53\x9a\x1a\x45\x04\x81\x72\xfc\xf4\x2e\xf5\x79\x4a\x13\xec\x4c\xf5\x7c\x76\x7e\x39\x8d\x4d\x41\xc8\xbe\x9d\xbe\x3c\xb5\x3e\x51\x82\x65\xeb\x9a\xe9\xf0\x22\xd6\x3b\x56\xef\x2d\xc5\xa3\xfa\xaf\x03\x5f\xdb\xbd\x85\x79\x87\x01\x9b\x02\x4c\x05\xd9\xd8\xfb\x2a\x23\x31\xf3\x3b\xfb\x3a\x3e\xac\xbd\xa5\x83\x3d\x4d\xdf\x19\x9b\x95\xcc\x75\x57\x39\x24\xe1\x01\x8f\x24\x7c\x5a\x09\xd1\x2e\xc6\x51\x18\x93\x68\xb0\xd0\x31\xde\x23\xcb\x88\x2c\xfd\x69\xdd\xb0\x74\x8f\xf6\x07\xff\x47\xa3\x54\x35\x73\x08\x04\xd6\x79\x61\x12\xa1\x4f\x6d\xa3\x08\xf4\xdc\x5c\x61\x6c\xa2\xc5\x34\x4b\xa4\x44\xec\xb4\x6b\xaa\xd7\x12\x48\x44\x93\xd9\xfb\xa0\x9c\xd1\x92\x77\x13\x91\x62\xd5\xe3\x71\xc7\x05\x85\x83\x38\x35\x02\x9f\x16\x45\x3e\x7a\x27\x31\x27\x7e\xd9\x98\x38\x4e\x51\x63\x73\xec\xdb\x5e\x23\xed\x42\xdb\xa6\x29\xb2\x32\x2f\xb0\xd2\x84\x36\x42\x73\x48\xa8\xfa\x76\x99\x0d\x6c\x1f\x0c\x00\xc2\xa8\xee\x6b\x3f\x6b\x13\xd5\x48\xc2\x4d\xb3\x7c\x43\x30\x05\xc1\x2d\x7a\xa2\xc2\x1b\x58\x61\x12\x12\x34\x8f\xe6\xee\x28\x4a\xd2\x6c\x93\xb0\xe1\xec\xac\xac\xc9\xc0\xc7\x28\xef\xb6\xf5\x05\x0e\x4a\x93\x99\xa4\x40\x40\x31\xef\xba\x91\xb4\xaf\xfb\x29\xf7\x6e\x09\xf9\x8b\x26\x8e\x72\x8e\x6a\x44\x0a\x57\x91\x29\x5e\xd5\xe6\x30\x2d\x8b\xe1\x76\xcc\x39\xd0\x18\x90\x60\xd6\x4c\x0f\x58\xd5\x1f\x05\x8a\xc3\x86\xcb\x52\x38\xb2\x7f\x89\xdd\x09\x83\x33\xb5\xa6\xd5\x60\x46\xa3\xa8\x18\xd9\xa4\xd8\xee\xfb\x8d\x39\x83\x83\x7d\x77\x51\xf1\x47\x32\xdf\x2b\xf2\x5a\x4c\x50\xca\x37\x13\xbf\x53\x2f\x36\x86\x88\x79\x88\x4d\x16\xa5\xbc\xd4\x99\xb3\x49\x31\xf1\x5e\x51\x43\x44\x89\xd8\x2c\x6f\x38\xd6\x7f\xac\x9a\xe3\xfe\xb8\x31\x8d\x9f\xe9\x66\x65\xec\xce\x18\xf1\x69\x3b\x4a\x8b\x43\x49\x52\x5a\xec\x89\x29\xef\x75\xbf\xae\x28\x82\xff\x13\xc6\x4b\x88\x0e\x36\xaf\xe5\xcf\xb2\xfa\x2f\xbf\x8c\xa8\x88\xd1\x67\xf8\xa6\xee\x96\xf5\xfb\xd3\xda\xc1\xb9\xab\x8b\x2d\x41\x8d\x46\xc0\x7b\x0e\x77\xdb\x7a\x65\xfa\x51\x6e\x06\x99\x15\xb8\x2b\xa2\x9b\x87\x64\x87\x59\xb0\x72\xa2\xf2\x06\x5b\x1b\xc1\x3d\x81\x05\x04\x06\xc8\xcf\x84\xd8\xe1\x93\x30\xa3\xc0\x94\x12\x50\x5c\x10\x82\x30\x61\x97\x55\x63\xe8\xb2\x89\xa3\x7e\x54\xac\x42\xbf\xc5\x65\x07\x2a\x47\x47\x4a\x3b\x3a\x31\xf7\xa4\x2b\xb8\x0d\xb2\xb4\x1c\x53\xe1\x12\x8b\xf4\x3b\x81\x52\xa7\x58\xdf\xd4\x32\xa7\x80\x15\xaa\x79\x3a\xcd\xd2\x04\x7a\x87\xe2\x11\x5e\xa0\x06\x2f\x91\x58\xef\x28\xed\x75\x2f\x18\x8f\x1a\x14\xf2\xdd\x1f\xb4\x38\x28\x73\x94\x74\xcf\xa8\xfc\xe3\xad\xe9\x94\xd7\x5d\xba\xe6\x60\x94\xf6\x58\x9a\x2d\x46\x85\x28\x95\x49\x2e\xd0\x07\x02\x67\x1b\x19\xec\xc3\xfb\xba\x71\xf4\xdf\x24\xc8\x57\xc9\x8e\xa2\xff\xfc\x76\xfa\xc3\x9a\x59\xc5\x20\x33\x03\x28\x1c\xad\x6f\x73\xb8\x04\x5f\x0d\x34\x2f\xf0\x00\x2f\x4c\x3a\xbf\x77\xd0\x49\x16\xb6\xf4\x98\x88\x70\x66\xa7\x06\x82\x52\xa5\xef\xa6\xe2\xed\xdc\x5c\x57\x77\x22\x1f\xde\x57\x73\x43\x85\x08\x4d\x12\x7b\x03\x3b\x82\x35\x95\x21\xf7\xd1\xc7\x16\x2a\x78\xc3\xe6\xaf\xb7\x86\x49\xb1\x4d\x98\xda\x15\x41\xea\xcf\x03\x9f\xfc\xf9\x79\x6d\x63\xc5\xd1\x31\x3e\x0d\x85\x5d\x50\xa1\x12\xce\xb4\x81\x81\xe3\x34\xcd\x2d\xc7\xaa\x6d\xcc\xd0\x2d\x14\x45\x79\x48\xef\x2c\x08\x36\x29\x53\xd0\x2f\x49\x01\xc3\xa3\x34\x5e\x49\x99\x6f\xdd\x87\x48\x34\xae\x7c\xe3\x9a\x7f\x73\x13\x9b\x6c\x75\x64\x99\x6a\x93\xfb\xf0\x95\xce\xc7\x55\x55\x79\x85\xe3\xf1\x94\xd6\x19\x66\x4a\x33\x09\x89\x69\xc5\x60\x27\x1f\x87\xf9\x06\xa0\xf0\x4e\xa0\xeb\x9d\xd4\x4c\x52\x5b\x57\x52\x5d\xf4\x92\x09\xe0\x01\xc6\xbc\x3d\xd0\xb9\x9d\x75\xc2\xf6\x4a\x7a\xc0\xaf\xf7\xbb\x81\x5a\x94\x67\x28\xd3\x89\x0c\xcc\x06\x32\x10\xe2\x11\x54\x3e\x95\x20\x57\x9a\x60\xb1\x85\x6e\x1e\x47\xc4\x96\x4c\xef\x25\x54\x2a\x4a\x18\xfc\x1b\x1e\x8e\x61\x2d\xe0\x0f\x38\x5d\xb7\xf7\x34\xe8\x42\xe9\x54\x6f\x59\xab\xc2\x12\x0c\xc4\x19\x5d\x56\x88\xf2\x41\x99\x17\xba\x45\xe9\x9f\x4d\x6a\x02\xf2\x7a\x91\x95\x59\xb2\x97\x62\x3d\xd8\xb3\x07\x35\xd9\x61\x45\x62\xc1\x59\x5a\xbe\x21\x13\xcf\xa4\x24\x98\x10\x38\x13\xef\x60\xe3\xa3\xdb\xfe\x0d\x5d\x33\xde\x98\x78\xc1\x8b\x5b\x14\x75\xd2\xe1\x9d\x3f\xd3\xf3\x78\xb3\x7b\x20\x0d\xe2\x27\xa1\x21\xc5\x24\x3c\x68\xdf\xb0\x69\x62\x95\x98\x2f\xb2\xe9\x37\xf1\xd0\x7c\xe3\xec\x5a\x99\xa0\xb5\x9c\xe1\x03\xc8\xcb\xed\xed\xf9\xce\xd7\xbd\xaa\x31\x34\x5a\xb6\xcf\x78\x99\xa0\xf5\x40\xa1\x28\x9e\x5c\xf3\x14\x0e\xff\xe0\xd9\x35\x45\x04\xb9\x67\xad\x5a\x40\xa8\x73\x80\x7e\x06\xe6\xea\x86\x66\xda\x16\x12\x4f\xc4\xd2\x37\x68\x1c\x1c\x2f\x98\xe7\xb3\xfc\x08\x21\xb3\x83\xf0\x78\xc5\xab\x6b\x9e\x6d\xfe\x2f\x3e\x47\x46\x11\x43\xfa\x5d\x82\x1e\x90\x69\x78\xeb\xcf\x23\x9d\x88\x95\xf9\x74\xcf\x2b\xb9\x6c\x25\x9e\x76\xe9\x7a\xd4\xa1\xcf\xf3\xaf\x3c\x4f\x6e\xff\x06\x0a\xe2\x1b\xcc\x3f\x2e\xc2\x1d\x78\x68\x91\xee\xd8\xec\x30\x1c\x99\xef\xa6\xe3\x71\x9a\x5b\x9c\x98\x48\x87\xd0\xf4\xa1\x15\xd0\xb5\x6a\xaa\xde\x54\x7c\xa0\x43\xa7\x2a\x6b\x4c\x2b\x3a\xb6\x4b\x75\x77\xc9\xa9\x36\x33\x60\x0b\x63\xc9\xed\x56\x98\xa4\x0f\x26\xaa\xb5\xf5\xb2\xda\x0d\x71\x9a\x1e\x8d\x92\xc1\x0e\x5a\xa4\x38\x46\xff\xae\x12\x07\xfe\x3a\xd9\x03\x04\xdc\xff\x06\x87\xbc\xf3\xde\x16\x14\x0a\xc6\xff\xbb\x76\x9e\xae\xb8\xd3\xdf\x64\x59\xb4\x6c\xe2\x8e\xaf\x86\x3e\x0a\x94\x68\xe9\x23\x4d\xda\x90\x96\x11\x67\x91\xb4\x8e\x3b\x33\x5e\xc2\xdc\x70\xde\x58\x1d\x0d\x3f\xe4\x49\x90\x8c\x72\x8b\x3c\x63\xdf\xc6\x0e\x40\x22\x05\x53\x55\x3c\x6d\xfb\xc8\x38\x8d\x63\x9b\x4c\xa9\x56\x88\x7b\x13\xad\xd6\x4b\x4f\x86\x91\x6a\x2a\xd9\x53\x7b\xc6\x68\xa4\x48\x34\xf0\xa8\x5b\x7b\xba\xfb\x5a\x37\xe3\xdc\x51\x9d\x2e\x8b\x71\x9a\x8e\x3a\xaa\xa0\x0f\x4a\x1a\xbe\x56\xa1\xd8\x20\x33\x49\x7f\x77\x9d\x41\xae\xda\x5e\x6a\x3e\xc4\xd2\x33\x70\xd1\x55\xfe\x1d\xab\xc3\x4f\xb0\x0e\x85\xfb\x46\x25\xbf\xcf\x04\x8a\x7d\xfe\x8a\x02\x0b\xbc\x3b\x51\xfd\x3a\x97\xda\x4e\x5b\xf2\x33\x8e\xf2\x80\x3b\x96\xe6\x05\x61\x1e\xbd\xaa\x96\x7b\xdf\x9a\x65\x16\xa1\xc0\x04\x9e\xd3\xf3\x7c\x6e\x22\x9e\xc5\x62\x39\x80\x1f\xc5\x64\x14\x93\x8e\x22\xa6\x68\xe3\x02\xaa\x3c\x7d\xe4\x69\x61\xb3\x2f\xea\xdc\xf4\xc5\x06\x2d\xe7\x67\xba\x23\xb3\x9a\xe2\x41\x70\x1a\x7c\x1d\x43\xc6\x37\x6e\x3d\x17\x26\xf2\xdd\x2a\xae\xc9\xc2\x71\xe2\xbd\xd7\x28\xd3\x1d\xde\x37\x43\x5c\x7d\x79\x1a\x03\x65\xc4\x79\xb4\x89\x6a\x75\xbf\xdd\xa8\x3c\x1e\xde\xd7\x1d\x1a\xfe\x15\x49\x2f\xd1\x4c\x49\xde\x49\xc1\x7f\xd2\x10\x23\x8d\x20\x06\x14\xca\x7c\x5d\x6f\x9e\xec\x97\x21\x49\x9e\x7a\xeb\x70\x59\x49\xcb\xbe\x39\xd9\x94\xd5\x96\x4a\x75\x93\x22\xbd\x8a\x27\x8a\xac\x1c\x0c\x62\xab\xd9\x7f\x68\x8e\x1d\xe5\x82\x53\x0c\x3c\xa5\x62\x88\x22\x8b\xe2\x58\xe4\x8f\x70\x00\xfe\x93\x89\x27\x8e\xfb\x27\x0e\x95\x63\xc2\xd0\xf6\x6d\xad\x08\xef\xab\xb6\x67\x55\x68\xc0\xe4\x1e\xbc\xd1\x5c\x28\xab\xe0\xee\x58\xaf\xdc\xdf\xec\x7c\xd5\x15\x93\x21\xaf\x89\xb0\x61\x03\x31\x89\xf4\x57\xe3\xdb\xa4\xbe\x5c\xd3\x52\x5e\x5e\x45\xbc\xcf\x5d\x97\x81\xc7\x51\x7e\xf0\xb1\x90\xeb\x95\x28\x8e\xb7\x53\xc3\x94\x74\x95\x54\xef\x8c\x90\x96\x9f\x4f\xd2\x14\xf4\x4c\x02\x5d\xef\xbc\x38\xc3\x79\xce\x3d\x04\x3e\xc4\x28\xfd\xdb\xc9\x13\xca\x68\xae\x3c\x41\x0b\x03\x7f\xf6\x53\x8a\x8a\x60\x98\x98\x01\x91\x91\x76\x13\x1f\x44\x9f\x57\x5d\xa3\xe7\x35\x7b\xca\x3a\x30\x09\x40\xb8\x5e\x57\x70\xb3\x3d\x6b\xf4\xca\x48\xa2\xfe\xbb\x89\xa2\xc5\x47\x21\x1e\x8e\x17\xe7\x06\xf8\x49\x5a\x04\x2b\xaa\x78\x68\xca\x03\x58\xb1\x54\xe1\x83\x3f\x0c\x54\xae\xe2\x5a\xa3\x1f\xaf\xda\x45\x51\x52\x2d\xba\x91\x4d\x0a\x13\x4f\xf9\x02\x2f\xd4\x57\x44\x77\x88\x9e\x40\x76\xb9\x8f\xfc\x87\xa4\x0c\x1a\x89\x56\xad\x50\xe1\xd0\x6f\x0a\x17\xce\x5e\x35\xa8\x26\xd9\xa9\x72\xd6\x77\xe9\x27\x50\xd4\xdf\xb9\xa6\x5c\xc6\x47\xf8\x3d\xc4\xf1\xb7\x94\x8e\x17\xab\x4e\x71\x36\xbf\xc6\x68\x15\x68\x05\xef\x87\x4a\x76\x3e\x43\xe6\xba\x1a\x5b\xf8\xe4\x27\x30\x37\x7c\xa3\x51\x57\x4b\x4b\x4f\x7b\xc9\x92\x9d\x90\x38\x47\xfd\xf4\x2a\xb9\x4e\xd8\x25\xbf\xc5\xfd\xe1\x32\xa8\x95\x5b\x2c\xc1\x42\xb5\x02\x68\xd6\xe6\x3f\xd5\xa3\x9f\x14\xad\xe2\xca\x5d\xc2\xcb\xdd\x56\xd4\x12\xdb\x7b\xea\x9c\x78\x4c\x05\x91\x9a\x8a\x84\x64\x45\x69\x99\x08\x32\xd2\x13\x16\x3c\xbb\xa6\x0e\xa3\xbd\x6b\x7a\xaa\xa9\x20\x82\xd9\x7b\xa4\xf2\x9e\x66\xd1\x24\xfd\x34\xb1\x7d\xb4\xef\x08\xf5\xae\x57\xf8\x05\x83\xba\xeb\xc4\xf5\xf4\xbc\x6b\x7b\x15\x84\x25\x2f\xf6\x7a\x34\xb6\x40\x69\x9d\x20\xb7\xa7\x1f\x80\x22\x00\xf0\xb8\x1f\x6a\xec\xe3\x4d\x2c\x76\x9c\x89\xbf\xc2\xac\x32\x6f\x1e\x66\x95\xe5\x79\x26\x1e\x70\x7b\x07\xdb\x40\xd8\x1f\x15\x4f\xdc\x8e\x9e\xea\x5a\x0a\x7c\xc7\xd1\x87\x6d\xb9\xb3\x61\x34\x18\xc6\xd1\x60\x58\xa8\xde\xf0\x4b\xaa\x37\xfc\xd2\x44\xf3\x5e\x7e\xa5\x64\xfe\x29\x65\xd0\xf1\x80\x62\xdd\xbd\xb2\x77\x5e\x2e\x22\x03\x58\x58\x4b\xc5\x68\x27\x1c\x71\xc4\xab\x48\xa8\x46\xaa\xa1\xc9\x72\xea\xc8\x58\xd8\xe7\xf8\x01\xaa\xe7\x10\x5c\xe9\xe6\x8d\x3e\x3b\xdb\xcd\xcd\x4a\x47\xf5\xdc\xbd\xa5\xd8\x6c\xdf\x6a\x4d\x94\x98\x84\xf8\x37\x39\xfb\xb4\x71\x5d\xc9\xe9\x8c\xa3\x38\x4f\x13\x10\xa0\x30\xbf\x26\xc5\x4c\x02\x59\xd2\xfb\x49\x0b\x8a\x5e\xc1\xfb\xc8\x21\x54\xbd\x28\xca\x81\xf7\x02\xdf\x4e\x71\xb1\x81\x05\x38\xf4\x52\x77\xb1\xe4\xb1\x3c\xec\xc5\x5f\x68\xb1\xf0\x8d\x2a\xa3\x84\x59\x99\x17\x68\x9c\x12\x69\x90\xea\x53\x70\x2d\x4f\xea\x9c\x35\x37\x4e\x89\x6d\x56\xe2\x52\x65\x94\xe7\x96\x60\x9a\x28\xd3\xa0\x6c\x2f\xd0\xe9\x9a\xe8\x94\xa6\xdf\x4c\x33\x33\xb0\x38\xcd\x61\x8b\x1f\xab\x8e\x9c\xef\x4c\x38\x97\xe7\x23\x9e\x33\xad\xe4\x76\x26\x3b\x6a\x3d\xce\x16\xa8\xee\x87\x8a\xc3\xf6\xa1\x96\x6b\x58\x49\x59\xf1\x0e\x7d\x0f\xe7\xc9\x10\x60\xa3\x7c\x6d\xe2\xbb\xff\xaf\x20\x60\x40\x86\xf5\xa1\x83\xde\x2f\x99\xd0\xf6\xb7\xab\x36\x5d\x3e\x30\x90\x7b\x47\x86\x08\x83\x78\x82\x66\x4b\x50\x8a\x4a\xf9\xe3\x5a\xad\xc7\xff\xcf\xd5\xcb\xc0\xbf\x2b\xe7\x2d\x51\x6c\xe0\x18\x5a\xa7\x57\xe1\x54\x46\xe0\x61\xe8\x1f\x28\x8d\x3b\x2e\x2c\xd5\x88\xea\x61\x0a\x76\xae\x61\x71\xe1\x7c\xfb\x0e\x16\x01\x2c\x25\x4a\xa9\x4a\xfb\x4e\xfa\x65\x34\xd3\xc9\x8a\x35\x47\x09\x06\xae\x8a\x3b\xf4\x10\x12\xc1\xfa\x3f\x85\x7f\x56\xe4\x4f\x51\x84\xcb\x87\x33\x8c\xab\x1c\x42\x34\x97\xd8\xce\x37\xe0\x9d\x23\x29\x74\x57\x1f\x36\x5f\x0d\x7c\xa2\x0d\x49\x0b\x1e\xde\x35\x4f\x82\x75\x56\x4b\x8e\x55\xff\x21\x4d\xa2\xef\x06\x54\x42\x17\xd7\xc0\x17\x07\xd8\xfb\xac\x31\x4d\x20\xd3\x08\xde\x5f\x40\x9f\xaf\x04\x8a\x0e\xfd\x4f\x1a\xec\x9e\x73\x73\xf3\x22\x72\x6c\x54\x6a\x0d\x63\xc1\x42\x2b\x7c\xd3\xc8\xc8\x1d\x98\xeb\x0e\xcd\x8a\x89\x22\x93\x74\x14\x02\xef\x86\x42\x7a\xdd\x00\x58\x9f\xd3\x1a\x26\x89\x46\x69\x99\x8b\xde\x09\xeb\x9e\x4f\x14\x71\xf0\xbb\xaa\x77\x61\x1c\xaf\xee\xf1\x27\xea\xaf\x11\xd6\x01\x99\x1b\xd6\x20\xd0\x0a\x0e\x88\xe6\xae\x63\x3e\xe0\x39\xf1\xf8\xb8\xa2\xad\xe7\x67\xe7\x7c\x32\xea\xa5\x1f\x4d\x54\xaf\xc9\x8e\x35\x2f\xde\xf2\x09\x5a\xfc\xc0\x18\xec\x56\x19\x17\xb3\x92\xec\xa8\xfe\x4a\x9a\x8e\xaa\x67\xc4\x54\x6d\x5f\xf3\x35\x8e\xdd\x3d\xfa\x0d\x7a\x94\x4f\x7e\x0a\xe4\xae\xc2\x32\xe1\xfb\xc0\xa6\x71\x08\x0b\x22\x54\x27\xbb\xc6\x36\xdf\xe9\xf9\x4d\x90\xb7\x75\xfd\x0d\x9e\xba\xe9\x97\x13\xd5\x74\xfe\x38\x50\x59\xc2\xb3\x9a\xf5\x1f\x27\x3f\x1e\xf9\x87\xb4\x93\x61\x90\x1f\x36\x22\xb5\x23\x33\x87\xba\x4b\x99\x15\x02\x48\x97\xb2\xa8\x7e\x92\x6f\x1c\xd1\x53\x91\x99\x7e\x84\x22\x9a\xd2\x45\x58\xd7\x3d\xfc\xeb\xb5\x42\x65\x9a\x58\x1a\x3b\x18\xc7\x73\xd8\xbc\x0e\x3e\xea\x7a\x5d\xc0\xf5\x0c\x2f\xf4\xa3\x89\xea\xf3\x05\x5b\x87\x16\x65\x17\xa2\x1d\x1d\x0f\x8c\x7e\xc7\x60\x41\x22\x52\x3e\x43\xdf\xcc\xd7\x6d\x4c\x8e\x99\x25\x3d\x45\x9c\x8e\x0e\x07\xed\xdc\xcb\xe6\x69\x3a\x73\xa8\x6b\xc7\x29\xbd\xb2\xc3\x83\x78\xc6\xe0\x37\x3c\x58\xa3\xcc\x87\x56\xa8\x54\x85\x17\xb9\xfa\x62\x49\x47\xca\x1f\x0e\xd2\x3c\x8f\xc6\xc8\xf7\x71\xcf\x97\xe2\xd0\xb9\xd4\x96\x0e\xb1\x51\x31\x04\x39\xfb\x0b\xae\x01\xa5\xe3\xe4\x94\xc0\x55\x8f\xad\xf3\x88\x8e\x04\x97\x09\xae\xf6\x01\x86\xf9\xf1\x44\xb3\x1c\x56\xb6\x13\x6b\x77\x6f\xaf\x19\x31\xcf\x77\xa3\xd1\xb8\x8c\x5d\xf1\x1a\x6f\xc0\x5d\xe7\x7c\x53\x4b\xd6\xbe\x92\x52\x75\xfe\x05\xae\xc3\x31\x03\x9f\x68\x3b\x13\x4a\x46\x54\x9f\x3d\xf0\xf8\x86\x27\x2c\x8a\x32\x3b\xe5\xcf\x4e\x54\x5a\x71\x94\x4d\x53\x32\x59\xb0\xbf\xcd\xba\xc5\x0b\x24\xef\xde\x51\xc1\xfc\x03\x95\x9b\x78\xa0\x7a\x10\x51\xc1\xe3\x92\x2e\xec\xf3\xf5\x89\x07\x5e\x5d\x0e\x54\x17\x3f\xb2\x99\x30\x2d\x37\x75\xcd\x9e\x5b\x61\x85\x0a\x50\x4e\x56\x12\x76\x9a\xf6\x04\x36\xeb\x8a\x1b\xf4\x92\x6a\xf5\xff\x05\xd6\xb7\x30\x3d\x38\x71\xdf\xd8\x1c\x4b\x75\x1f\x31\x7e\x45\x9a\x8a\xf7\xaa\xe5\x3e\xce\x31\xd0\x30\xf8\x40\x8e\x09\x11\x6c\xc7\x29\xb2\x9f\xd1\x92\xb7\x8d\xf4\x81\x44\xc5\xaf\xa4\xb6\xa3\x5c\xd4\x7f\xa9\x89\x36\xfe\xe5\x64\x33\x31\xae\x7c\x8a\x88\x94\xf3\xdc\x82\xaf\x5d\xcc\x9c\xe2\x9a\x39\xd5\x40\x57\x83\x4b\x39\x83\x8f\x05\x1b\xbd\x11\x78\x47\x19\xa3\x2d\xf1\x93\xea\x1a\xb5\xab\x69\xd2\xdf\xee\xd5\x47\xff\xfd\xc4\xbb\xe2\xcc\xf3\xc5\xff\x81\xe3\x58\x37\xed\xb8\x82\xe6\x01\xd7\xcc\xe3\x76\xe0\x52\x66\xca\xca\xb1\x57\x1d\x81\xbb\x54\xd3\xe6\xae\x9e\x6f\xe7\xc8\x57\xa2\xa5\x42\x0e\x31\x17\x85\x54\xf6\x91\x6f\x5c\xcb\x19\xba\xb4\xb3\xd5\x8e\xae\x1b\xf8\x72\xea\xbd\x8f\xd5\xc0\x84\x45\x9a\xf2\x45\xf9\x0b\xaa\x1b\x85\x6b\x8f\x28\xb9\x7c\xd0\xc8\x9b\xcd\xcd\x75\xfb\xa6\x00\x07\x34\x4e\xb2\x3d\x3a\xba\x7b\x5f\x13\x3c\xed\xe8\x79\xd2\x83\x81\x59\x86\xb6\x11\x97\x47\x26\x3e\x8b\x72\x1e\xa8\x36\x26\x60\x67\x44\xa7\xa3\x63\x5f\x98\x77\x6c\x9f\x6d\x45\xc4\x61\x09\x25\xdf\x2f\x3b\x5d\x0e\x55\x57\xba\xaa\x34\xe5\x5f\x53\x89\xe7\x7e\x66\x56\x40\xf2\xe4\x1a\x1c\x5d\x6f\x2b\x4b\x88\x49\x84\xff\xa4\x6a\x8b\x8c\xe2\x78\x2f\x76\x33\xaa\xcd\x67\x34\xb2\x10\xbb\x0e\xce\xd3\x06\xaa\x16\x8c\x92\x5a\x53\x94\x55\x77\x71\x6c\x3a\xfd\xaa\x03\x02\xc9\x7e\x58\x79\x97\x1b\x0c\x96\xc6\x52\x82\x53\x0e\xa7\x6b\x77\x8f\xfc\x34\xc1\x5d\x79\x40\xe9\x7f\xc6\x71\x88\x35\x7e\xdc\xa5\x4f\xb3\x28\x65\x67\x0b\x03\xf9\x3d\xdd\xb0\xfc\xbd\x1a\x19\x51\x52\x98\xb0\xe0\x0e\x54\xfd\x2a\x7c\xdd\x26\xf3\x11\xa6\x49\x62\xc3\x22\x75\x74\x1f\x42\xf8\x43\x4f\xcf\x37\xad\x1c\x55\x61\x99\x15\x26\x4a\x3a\xba\xf8\xc3\x62\x92\x7c\xe3\x61\xd7\x66\x1c\x15\x26\x1e\x98\x28\xe1\x33\x4e\x70\x82\x1d\xa5\x14\xdc\xec\x04\x49\x49\x3e\x72\xff\x8c\xcf\xdc\x2f\x08\x0d\x1c\x2a\x69\xf8\xa1\x33\x8a\x96\x2e\x2f\x4c\x11\xe5\x45\x14\xe6\xdb\xb5\x87\x8a\x8f\x3a\x2f\xde\xc1\xfb\xbf\x4e\x5f\x83\x1d\xf2\xad\x40\xf9\x02\x57\x26\x1e\xc9\xdb\xb4\x82\x48\xa2\xa6\xc9\xc0\x66\xb4\xf6\x74\x4f\x16\x96\xdb\xd6\x35\x25\x61\xb2\xab\xd1\xc9\xfd\x99\x6e\xdf\x26\x0e\x60\x20\xbd\x8b\x34\x34\xd2\xbc\xe8\xdb\x24\x16\xed\x20\x4a\x12\xe1\x4d\x95\xfd\x40\x0b\x16\xf6\xe1\xbe\x12\x31\x9e\x5e\xf3\xde\xe8\xdf\x69\x80\xd8\xe6\xe6\x0e\x92\xd6\x50\x5e\xa4\x23\xc9\x84\xe3\x07\x1f\x07\x4a\xd0\xf7\xb1\x02\x09\x9b\x28\x1b\x57\x21\x7e\x4e\x40\x0b\x94\xcf\xef\xd1\xd9\xc1\xd7\x35\x42\x9b\x90\xcc\x09\x02\x7a\xb0\xe1\x21\x84\xe1\x3a\x3f\x1e\xfe\x62\x63\xff\xcf\x1c\xea\x16\x2b\x96\x83\x2d\x89\xd4\xab\x4f\x4b\x08\xaf\xac\x6a\x61\xc7\x43\xcb\x91\x84\xe3\x26\x76\xb8\x8e\xab\xca\x8f\x1c\x45\x49\xa9\x45\xf9\x6e\x51\xfc\xc6\xd7\xba\x7a\x65\x07\x26\xfe\x84\xe7\x51\x3a\x59\x17\x7b\xf3\x4e\x34\x6b\xb7\x49\x59\xab\x5a\x22\xc2\xe8\x4e\x86\x0f\x8b\x8a\x8b\xab\xc2\xd5\xee\x33\xeb\x37\xc0\x1b\x25\x71\x92\x92\x32\xfd\xcf\x6c\x2b\xf9\x0b\x28\xdd\x27\x64\xbc\x74\x56\x09\x89\xbc\xa2\x90\xbc\xa1\x70\xce\x37\xda\x88\xcd\xc7\x69\x61\x93\x22\xaa\x7c\x6e\xc7\x08\x0c\x36\x59\xbe\x76\x3e\x48\x5e\x98\x81\xa5\xc3\x52\x84\xe4\x3a\x8e\x8f\x7f\x23\xa8\x89\x7e\xd6\x48\x53\x3b\x4e\x1a\xf4\x4e\x0d\x42\xdd\xa8\x2c\x1d\xde\xd7\x1d\xa7\xaa\xfa\x82\x69\xbd\xa8\xa6\xf8\xe2\xe4\xd9\x7a\x46\x60\x61\x5f\x77\x76\xf6\xe0\x76\x05\x7c\xbf\x84\xd8\x55\x64\x02\x68\x83\x89\x7e\x00\x7d\xab\x6b\xa0\x77\x33\x79\x85\xf6\x37\x5f\xab\xa4\x5b\x1e\x0e\x6d\x5f\x61\xcf\xb0\x26\xee\xa8\x06\x94\x3b\xcd\x80\x67\xfe\xd3\xdd\x70\x18\xd9\x25\xc5\x81\x7e\xb6\xa6\x23\xd5\x54\x02\x3c\xd8\x8d\x23\x56\xc9\x14\x1d\x7e\x6f\x7c\x50\xf2\xc3\xb9\x75\x43\x73\x1c\x9b\x68\x45\x42\x65\x38\x9b\xb7\x27\xda\xf5\xbc\xad\xb2\x14\x63\xb3\x3a\xb2\x49\x91\xef\xaa\x7e\x02\x91\x14\x63\x5a\x91\x48\xdf\x82\x0c\x31\x43\x21\x03\xdd\xba\xad\x7a\x0d\x7e\xa0\x28\x66\xb9\x61\x09\x21\xe0\x5b\x34\x7e\xf8\x00\x27\x4d\x71\x06\xdf\x57\xac\x2f\xe9\xd2\x52\x14\xda\x7c\x9b\xd7\x40\xe2\x94\x1b\x68\x23\x80\x34\x44\x15\xfb\x87\xaa\xf5\x97\xf1\xbd\x9c\xc7\x51\x9d\x51\x79\x34\x8a\x62\x93\xed\xf2\xe8\x3e\x66\x47\x16\xfa\x40\x95\xb8\x3f\x45\x0f\x58\x63\x3e\x15\x74\xa6\x8f\xd0\x6f\xd3\xbe\xc7\xa7\x4f\x4f\x54\xe8\x7f\x5e\xe9\xc4\x9d\xac\x43\x48\x5e\x89\x3a\x3e\xa7\xf5\x3a\x56\x37\xdf\x28\xf2\x18\x93\x47\x66\x67\xf5\x77\xa8\xfa\x70\xd3\x16\xd0\x02\x1f\x4c\x7c\x5f\xfa\x6b\x3c\x81\xfc\x3f\x30\xde\x98\xae\x47\x8a\x3b\x93\xb9\x0e\xf0\x1f\xcc\xe7\x2b\x0d\x3d\x4f\xbb\x80\x27\x1f\xda\x65\xeb\xfa\x9d\xe0\xeb\x9c\x52\xe2\x66\xa7\xda\xd4\xfa\xfa\x65\x78\x54\xf1\x86\x80\x72\x5c\xe4\x15\xab\xb8\x0f\x3e\xf4\x7b\x9a\xf5\xb6\x88\x46\x65\xcc\xd4\x21\x88\xc1\x10\x34\xf0\xb5\x32\xfc\x36\x5e\xfd\x04\x6d\x4e\x97\x8e\xf6\x47\x19\xb2\x1d\x48\x49\xfc\x06\x65\xb2\xa8\x2a\xff\xb3\xbf\xde\xf3\x07\xca\x35\xb8\x59\xd2\xba\x42\x53\x84\xea\xc5\xcf\x27\x8a\x47\xbf\x03\x07\x15\x6b\xf3\xae\x1f\xdf\xf5\x4f\xad\xd5\x4f\x7b\x85\x61\xf9\x04\x35\x1c\x49\xf9\xda\xbf\xca\xa7\x90\xd3\xc5\xf6\xdb\xaa\x64\xf5\x97\xd3\x38\x3c\x0a\x4d\x84\x19\x6e\x2f\x5c\x87\x11\xe6\x9b\xc9\x2e\xe1\x3a\xe8\x6f\x27\x83\x2e\x3d\xd5\x3e\x45\x79\x5a\x6b\xb5\xec\x80\x22\x98\x00\xe9\x3b\x2f\x0a\xa6\xff\x09\x3c\x02\x9c\xe2\x07\x6d\x9d\xf0\xe3\x32\x0b\x87\x26\x47\x31\x15\x2b\xe1\x03\x55\x33\x6b\x02\x23\x17\xf6\x41\xc2\xbd\xf2\xcc\xaa\xcf\x88\x19\x54\xb9\xe4\x2b\x13\x5d\x59\x8e\x92\x30\x1a\x33\xc9\x32\xea\x21\x00\x58\xf0\x75\x23\x6a\xf8\x6c\xd7\xe4\x47\x2d\x88\x2e\x64\x6d\xd7\xd6\x69\x6d\x05\x7b\x68\xc4\x72\xb4\x1c\xf5\xa1\x84\x88\x14\xf0\x4d\x64\x18\xf8\xa6\xf2\xfe\x1c\xc2\x39\xc9\xd3\x38\xea\x9b\x82\x39\x49\xc5\x69\xd0\x1e\x84\xae\xbd\x55\x7f\xf8\x0c\x7d\x33\xe0\x1e\x37\xc8\xae\x62\x91\x6c\x87\xfd\xc3\x2a\x9b\xea\xa9\x6e\x98\x8d\x89\xd2\x18\x61\x1d\x53\x3c\xcc\x9f\x6a\x21\xa8\x1d\x6b\x8a\xea\xe0\xfd\xc0\xeb\x4b\x7d\x8f\x12\x21\xf0\x40\xb7\xac\x51\x2c\xe0\x24\x14\xab\x17\x43\x34\x7d\x2b\x50\xd4\xd0\x67\xd9\x0a\x08\xe2\xb8\x96\x59\x3e\x2c\xdd\xa3\x40\xbe\x22\x03\xb9\x8d\xf6\x08\x2c\xd7\x1b\x4a\x5c\x7d\xd9\x26\x45\x99\x31\xb5\x8b\xa3\x3b\x70\xf8\xf7\x0f\x5b\xd9\xae\x73\x22\x5c\x72\xfc\x18\xac\x74\x26\xc2\xc0\x9f\x6c\xa8\x0d\x7f\xfe\x08\xcd\xb2\xe4\x96\xe8\x45\x1c\x56\xce\xa5\x6e\xcf\x35\x96\xc8\xcb\x2f\x77\xfb\xe9\xa0\x26\x78\x72\xa9\x96\xd4\xf0\xa6\x7e\x31\x8b\xfa\x03\x51\x25\x67\x9a\x5e\x95\xf5\xbf\xe8\x74\x0a\x8a\x34\x1b\xf9\x1a\x2b\xfc\xcb\x1f\x61\x9e\xf8\x66\xb2\x57\xa9\x6e\xae\x1a\xc8\x4f\xc1\xa0\xdc\x0a\x3c\x68\xfc\x96\xaa\xde\x8c\xa2\x84\xc4\x42\x66\x0e\x49\x43\x21\x5a\x0d\xa5\xbb\xd0\x21\x3f\x13\x53\x84\x43\x26\xaf\x76\x72\xfe\x3c\x99\x22\xee\xdf\x06\x5e\x4a\xcb\xc5\xd8\x4e\xfb\xe4\xfd\x56\xca\x4e\x21\x53\x05\xb2\x55\xf8\x5b\xe7\xc9\x94\xb1\xca\x60\x83\x63\x6f\x61\xdf\x82\x67\xbb\x64\x24\xac\x48\x7e\xf9\x7e\x9e\x26\x05\x0f\x65\x2c\x0b\x13\x79\x37\x47\xa4\x52\x3b\x5e\x36\x55\xb9\xc1\x59\x34\x88\xf8\x50\x91\x73\xaa\x7a\x44\x39\xcd\x9a\xa5\xbf\x99\xee\xa8\x18\x51\x58\xa0\xfa\x31\xdd\x8d\x02\xb0\x54\x9e\x5f\x42\x28\x5e\x25\x80\x7e\x49\xf9\x02\x97\x82\x4d\xde\x5f\x15\xa8\xec\xdf\xff\x8c\x52\x73\x3f\x81\xe5\x0a\x3a\x60\x56\x8d\x83\x3f\xf4\x53\x40\x2c\x1d\x5f\xa8\xc7\xd9\xd7\x9c\xe7\xb7\xe8\x98\xc3\x61\x7f\x83\xdc\x06\xac\x9c\x1b\xaa\x1a\xfd\x21\x39\x45\x38\x20\x40\xb7\x21\xa9\x51\x5a\x4e\x8e\xca\xc6\x2d\x12\x2e\x54\xea\xd4\x9f\x30\x77\x74\x1c\xf5\xda\xcf\x60\x14\x11\xf2\xbf\x4d\x67\xe3\xc6\xda\xa4\xae\xe3\x5b\xc5\x92\x8a\xd7\x6e\x5b\xcf\x37\x1e\x6e\x5b\xf3\x7d\x72\x62\xdc\x0b\x6c\x7d\x18\x39\xc0\xad\xf9\xba\xad\x41\x7a\x89\xd6\x00\x6f\x33\x21\xa0\xec\x28\x6a\xb8\x96\xcf\xac\xd8\x38\x4c\x47\x16\x0d\xda\x78\xf1\xff\x30\x51\x0c\xcf\x5a\xb1\xf4\x81\xe2\x3b\xf4\x5c\xf2\x23\x9b\x85\x8c\xed\x01\xca\x08\x90\x25\x91\x4b\x56\x70\xec\x26\x43\x42\x15\x61\x97\xd9\x32\x91\x89\x4c\xd1\x5c\xc3\x13\x44\xa8\xeb\xf0\x12\xae\x5f\xa7\xc9\xa3\xbd\x7f\x7f\xb7\x6f\x97\xa2\x30\x2a\x98\x56\xc8\x49\x71\x1f\x96\x5e\x66\x46\x54\xc3\xc0\x69\xa9\xdf\x61\x1a\xf7\x77\xd0\x8c\x63\x06\xae\x2a\x4d\x24\xd6\x09\x82\x21\xe4\x3a\x3d\xdf\xd0\xeb\x61\xfa\xb7\xaf\xd1\x9a\xe4\x8f\x63\x4d\xa2\xe2\x77\x55\xe5\x95\x47\x69\x16\xdb\xd5\x5a\x1f\x9b\xa2\x73\xbb\xe6\x94\xd0\xca\x24\x1f\xdb\x30\x5a\x8a\xa0\xf8\x20\x34\x93\x0c\x99\x81\x6b\x05\xbd\x44\x00\x14\x77\xc2\xb1\x40\x70\xa4\x5d\x3a\x42\xb3\x59\xcb\x4d\x96\x70\x5a\x1f\xd3\x5e\xe0\xeb\x89\xef\x03\x5c\x89\xfa\x36\x1f\x93\xe0\x11\x4d\x00\xa0\xbf\x77\x94\x3a\xf2\x1d\x55\xe9\x0f\xe3\xc8\x26\x05\x9a\x5c\x44\xb6\xc5\x43\xe6\xce\x7b\x88\xef\x3f\xbd\xdf\x70\x4f\x3f\xd3\x2d\x4c\x72\x94\x6d\x3b\x96\xc7\x45\xad\x68\x7a\xb1\x81\xb1\xfb\xdd\xee\xd8\x64\x05\x30\x9e\xd8\xa1\x58\x5b\x28\xe3\xae\xeb\x5a\xe6\x19\x47\x09\x9b\x0f\xd3\x6a\xf7\xb8\x15\x05\x27\xec\xac\x62\x53\x78\xac\x1a\x5c\xbd\x46\xce\x38\x4b\x8b\x34\x4c\x59\xaf\x57\x4e\x58\xef\x4b\x5f\x0f\x7c\x81\xe7\xdd\x9a\xfe\x0b\xd9\x7f\x1e\x3e\x91\x18\xef\x38\x45\x9e\xcb\xee\x17\x72\x6b\xf2\x34\x91\x1e\x21\x58\x96\x7b\x8a\x5b\x65\xaa\xa7\x14\x3c\xae\x36\x80\xe3\x95\x25\x36\xe3\x5a\x80\x8d\xb4\xf5\x39\xc5\x41\x75\xae\x2d\x45\x60\x40\x95\x91\xf0\xc9\x26\xce\x78\xbd\x6f\x42\x70\x7d\xb1\x29\x07\x43\xde\x4c\x8e\xb1\xd8\x65\x13\x1e\x4f\x7c\xc1\xaa\x49\x44\x71\x60\xae\x9b\xd9\x65\x9b\x94\xa2\x9b\xec\xf4\xdf\x1d\x5b\x24\xb3\xcb\x49\x7f\xb4\xee\x28\xcf\xfb\xe9\x48\x51\xd2\x6e\x85\x1f\xc7\x37\x6b\x0a\xe4\x30\x34\x23\x28\x3d\x8a\xac\x00\x0d\xbd\xf3\x41\x9c\xae\xc6\x87\x24\xef\x89\x2f\xf0\x06\x2b\x2e\x59\xdd\x9d\xf1\x25\x81\x6f\xf6\x6b\x62\x4d\x0e\xef\xeb\xe6\xa3\xf4\xa8\x93\xb4\x80\xaf\xff\xa1\x6e\x32\x6f\xba\x61\xb3\xb3\xdd\xca\x7c\xf3\xca\xd5\x80\x64\xcd\xbc\x87\xc1\xfd\xa3\x86\x49\x9b\x7f\xe9\x60\x37\x8e\x46\x91\x9b\x65\xae\x25\x4d\xfc\xb9\xd1\x6c\x65\x7a\x71\xc6\xe7\x20\x50\x77\x60\x09\x51\x01\x81\x55\xbb\x1f\x23\xf1\x40\x73\x97\x9a\xd0\xe6\x94\x12\x42\xcd\x1a\x85\x65\x58\x09\xa0\xe5\xe0\xc5\xbe\x89\x64\x97\x53\x18\xf0\xf8\xf0\x2d\x3a\x58\x7b\xe4\x92\xc1\x69\x18\x9a\x9c\x4a\xc1\x35\x02\x8a\xb3\x1a\xe4\x7b\x56\x89\x10\x13\x91\x73\x51\x16\x25\xf0\xaa\x38\x70\xf0\xca\xac\x1a\xae\xd7\xcd\xfd\x36\xa6\x7a\x9b\xf4\xe9\x7c\x95\x61\xc3\x7a\x43\x08\xcc\xd7\x6b\x4d\xe6\x94\xf9\xee\xa2\x49\x8e\xda\x8c\x17\x2c\xd2\xd4\xa7\x94\xd3\xce\x78\x67\x8c\xe3\x77\x5a\x48\xc9\x0e\x76\x8b\x61\x96\xae\x28\x02\x89\x9b\xba\xbf\xfb\x66\x93\x06\x6f\xa6\x3b\x36\x11\x64\xb5\x24\x2f\x44\x3b\x1f\x99\x94\x0f\x03\xc5\x0f\xf8\xbe\xeb\x59\xcf\xec\x72\x1a\x97\x54\x5e\xcf\x70\x98\x38\xda\x0d\x57\x17\x7d\x47\x75\xcf\x0f\xed\x52\x81\xbf\x63\x98\x03\x1d\x00\x02\x79\x78\x5a\x65\x5a\xab\xd0\x6a\xb0\x0a\x88\x14\x06\xfe\x62\xe0\x81\x55\x37\x03\x9f\xad\xad\xb5\xa8\x68\x4a\xe1\x17\x5f\x78\x91\x07\x50\xfc\x93\x8e\x63\xe5\x64\x7f\x11\x75\xcf\xeb\x6d\x4a\x1f\x43\x33\x1e\xb3\x6e\xbd\xc3\xd5\x3a\x6d\x32\x34\xd0\x89\xbe\x8f\x62\x6c\xd6\x2f\x51\xd9\xc4\x2c\x31\xb1\xd2\x7e\xe6\xbe\x4f\xd7\x71\xef\xf9\xc5\xb0\x15\xe1\x1c\xdc\x68\x78\xf4\xf3\x0b\xf3\xdd\xa5\xe8\x98\x90\xda\x4b\x34\x4d\x2f\x2e\x71\xb6\x86\x84\xc6\xe6\xd8\x14\x44\x1a\x7c\xf5\x87\x8f\x26\x29\x6f\xb7\xb0\x94\xc4\x96\xe2\xfd\xb9\x39\x4e\xe2\x1f\x0f\x7c\x42\xff\xb8\x12\xc9\x31\xd9\x08\xb2\x1f\xc8\x71\x5d\x9c\xf8\xac\xe7\x7d\xd5\xa5\x7b\x2f\x50\xe5\x55\xb2\x95\x2e\xc7\xb5\x62\x86\x5c\xbd\x71\x90\xa5\xea\x4f\xa5\x94\xa7\xf4\x41\xbe\x52\x46\xc5\xea\xee\x3a\x8a\xcf\xb5\xe3\xbd\x1f\x28\x3e\x92\x1b\x30\x07\x7c\x43\x8e\xb2\x6e\x7d\x42\x58\x77\x3c\xa8\x79\x74\x9a\x98\x1a\xee\x34\x62\xe7\x7b\x0a\x88\x7e\x42\xf5\x57\x2f\x99\x10\xfd\xa4\xae\x65\x65\xa2\x08\x05\xd0\xef\xa0\x89\xf7\xc5\x79\xad\x4c\xbe\xfc\x4c\x1b\x83\xe0\xc0\x8c\x6c\x0e\x60\x39\x9e\xff\x31\x72\x4f\x72\x02\x60\xac\xe0\x7a\x6d\xeb\xf9\x25\x7e\xc8\x26\xd0\xe1\xc2\x52\x9c\x5a\xf3\xed\xb2\x50\x79\xc7\xe2\x7a\x4a\x09\xf0\x5d\xd6\xa5\xea\x72\x35\x4a\x06\xbb\x55\x57\xc2\xcd\x89\xd6\x09\x54\x65\xf6\xc7\x34\x22\x58\xb8\xa8\xbb\xc2\xf3\x7c\xaa\xa7\x08\x86\xa6\x74\xab\xca\x79\xec\x0b\x6d\xeb\xb1\x5e\x8e\x63\xa2\xa4\x07\xf9\x49\x57\x09\x28\x93\xca\x11\xe9\x38\xfa\x48\x36\x3a\x52\xb9\xad\x9e\x0c\x4b\xf9\xa7\xad\x64\x87\x2b\x59\xca\x7c\xeb\x5e\xd4\x6f\x9f\xf3\x08\x5b\x89\x1b\x33\x6b\xc1\x84\x5e\xeb\xae\x11\xa1\x43\x8f\x2b\x76\x78\xc7\xbd\x1a\xf8\xea\x8d\xeb\xbf\x9e\xe8\x9e\xae\x87\x58\x64\x52\x09\xa3\x01\x12\x7c\xec\x94\x17\x58\xba\xa6\x66\x08\x95\x41\x00\x63\xbe\x8d\xa7\x10\xba\x97\xea\x25\xa4\x57\xac\x7a\x54\x9c\xb6\xdc\x79\xe0\xa2\x3c\xdf\xf7\x7b\x5d\x8b\x86\xa6\x7d\xb3\x4a\x18\x2d\x78\x99\xb7\x02\x87\xe0\xfe\x39\xd3\x6e\x22\xc6\x3e\x8d\xdf\x04\xb6\xef\x74\xe0\x19\xbb\x4e\xe1\x5d\x04\x1b\xec\xc1\xd9\xc0\x3e\xcb\x07\x5a\x80\x77\x74\x00\xb9\xf8\xbf\xad\x89\xbf\x0d\x70\x31\x34\x19\x78\xe9\xe0\xc7\xec\xe9\x79\xf6\xef\x75\xdd\x1c\x7b\x95\x06\x4f\x80\x27\x3e\x3d\x45\x88\x66\x1b\x0e\x3b\xbe\xd8\x81\x10\x91\xaf\x55\xae\x26\xb3\x11\x33\x06\x20\xa8\xdb\xba\xe6\x01\x1d\x5b\xd5\x26\xfb\xe2\xef\xfd\xaf\xca\x28\xb2\xf6\x2c\xdf\x34\xce\xd1\xcf\x1f\xe9\x2e\x46\x22\x6a\xe9\x9a\x0c\x7d\x89\xa3\x75\xa4\x94\xb7\x2e\x08\xa2\xad\xb4\x65\xf9\xda\x11\x7a\x87\x29\x75\x33\xc8\x9f\xc2\x19\xe0\x18\x9f\x6f\x1c\x3d\xc7\xa2\x49\x9c\x5f\x8f\x0d\xbd\x4d\x35\x87\x32\x31\x18\xd2\x96\xbf\x52\x25\xa0\x15\x6b\x8f\xc6\xab\xdb\x7c\xb8\xcc\x8a\xdc\xae\x34\xba\xb0\xcf\x33\x6a\xba\x34\x12\xa7\xc7\x25\x71\xee\xaa\x7b\x61\x5a\x40\x41\xdb\x55\x78\x7c\xe1\x45\x48\xfe\xe5\xe4\xd6\x92\x15\x26\x2b\x40\xe9\x81\x48\x8a\xdc\xbe\x0d\x94\x35\x90\x8f\x7f\x0b\xfe\x35\x8c\xed\x1b\x4a\xd6\x0a\x80\x22\x9c\xf8\xa7\x51\xb6\xe3\xff\x50\x9c\x21\x83\x38\x65\xc6\x5c\xec\x8b\x93\xba\xad\xee\xa4\xea\xe9\x48\xc7\x36\xac\xa9\x25\xa9\x24\xc0\xc5\xc9\xb3\x1a\x87\x3b\x8c\x16\x23\x21\xa1\x90\xb6\x8d\x1f\x62\x6a\xf8\x66\xf2\x89\x9a\x5c\x81\x89\xb7\x7b\x5c\xe8\x79\xad\xac\x73\x39\x50\xce\x22\x30\x73\x4e\x43\xee\xc0\x9c\x23\x59\xa8\x8e\x38\xbe\x6e\x64\x31\x66\x67\xbb\x26\xcf\xd3\x30\x32\x4c\xb1\x28\x9c\xc3\xd5\x97\x09\xe5\xb0\x2f\xa4\xad\x64\x51\x65\xde\xb6\x75\x14\x3d\x6e\xc7\xab\xf3\x28\xe0\xe3\xa9\x89\x87\x9c\x83\x1e\x4f\x34\xfa\x7d\x97\xe8\x62\x96\x2e\xda\x8c\x77\xbe\xa3\xc9\x71\x82\x08\x24\xb8\x27\x34\x39\xb1\x49\x9e\x70\x65\x85\xbf\xfc\x2c\x96\xa5\x94\x00\x29\xa2\xc1\x21\x78\x1c\x06\x0f\x3f\x3c\xd5\x53\x54\x4d\xbf\x24\x4c\x35\xa7\x38\x60\xd4\x70\x83\x26\x69\x27\x44\x5d\x2d\x05\x2c\x1e\xae\xe3\x89\x22\x43\xf5\x12\x30\xc3\xa7\x02\x45\x12\xb5\xd1\xa8\x25\x7f\xa6\xbb\x58\x66\x49\x5a\x4a\x5e\xc7\xc1\x83\xbd\xf5\xbd\x4b\x84\x5a\x62\xe0\x5b\x80\x4f\x2b\x43\x53\x74\x3a\x47\xc4\xf7\xbc\x1c\xf8\x9e\xae\xcb\x6a\x42\x6c\x98\x26\xe9\x68\x75\xa7\xa2\xbc\xdb\x45\x4e\x27\xf6\x1e\xeb\x56\x39\xc1\xac\x6a\x85\x22\xd3\xf5\x16\xf2\x85\x58\x17\x6f\x60\x21\x61\xcb\xdf\x52\xf4\x2f\xf7\xe1\x9b\x09\x7b\xe2\x66\xb0\xc6\xec\x2c\xa2\x3d\x62\x55\xe1\x28\x13\xd3\x8c\xb6\x52\xbe\x76\xf9\x8d\x15\x4b\xea\xba\x45\xca\xb5\x63\x47\x52\xb9\xe0\xc9\x28\x55\xf7\x83\xc9\xb2\xd5\x1d\xfe\xd8\xfd\x00\xc0\x7f\x29\x07\x78\x5c\xd2\x9f\xd2\x1a\x94\xc1\xa4\xa7\x10\xb0\x9c\xaa\x9d\x7f\x57\x69\x3d\x3c\xd2\x42\x1c\x69\x1c\xa7\x24\x86\x3d\xe7\x39\x53\x3c\x31\xfa\x9d\xc0\x73\x3b\x5e\xa4\x95\xc2\xe8\x33\x58\x16\x91\xb4\xab\x1e\x53\x29\xda\xcd\x38\x2a\x16\xc5\xd7\x1d\xc7\x76\x30\xb4\xc9\x2a\x87\x1b\x88\x92\xb6\xc0\x6e\xe2\x19\x4f\x69\x5f\xea\x5e\x23\xa2\x5f\xd8\xb7\xd0\x8d\xa3\xaf\x94\x11\xf8\xb9\x99\x85\x40\x69\x3d\xe9\x66\xef\x8c\x7a\xd9\x68\x53\x33\xc0\x2e\xa8\xa1\xed\x5a\x20\x43\x8b\x26\x3c\xda\xcf\x52\xc8\x67\x31\xfb\x49\xe0\xc1\xa2\x97\xd5\xe4\x94\x79\x94\x0c\x76\x79\xc4\x38\xa2\x6f\x20\x70\xff\x31\x55\xb3\x85\xf6\xa6\xe3\x28\xb2\xdf\x08\xd4\x76\x10\x66\x46\x95\x14\x7f\x81\x1d\x98\x3f\x9b\xa8\x6a\xcb\x1f\x04\x8a\x31\xe6\x03\x07\x48\xb4\xc7\x6c\x16\x46\x39\x40\xd8\x48\xb9\xef\xa4\xd2\x2d\xb6\xee\x03\x8f\x0f\xf9\xda\xa7\x00\x60\x17\xc1\x11\x9a\x5b\x1c\x53\xb7\xe9\xe5\xe0\x2c\x32\x14\x5f\xd4\x65\x15\x78\x60\x31\x0f\x09\xde\xe9\x80\xdc\x1c\xcf\x0b\xf2\xa7\x5a\x1f\x78\xf0\xc7\x2d\xb0\x92\x2f\x77\xc3\xa1\xb5\x47\x57\xa7\x54\x0d\x72\x0d\x07\x0e\x12\x72\xc8\x3c\x72\xfe\x59\x35\xff\xac\x0c\xa3\xc2\x3e\x41\x9f\x62\x91\x75\xda\x27\xa2\x81\x4f\x43\x04\x73\xff\x48\xb7\x35\x6b\x78\xd5\x6d\x2c\x45\x49\x9a\x75\x1c\x85\xe8\x4e\x90\x15\x08\xb0\xbd\x7a\x03\x1c\x3e\xeb\x18\x05\x7c\xef\xfa\xc4\x63\x36\xd6\x79\xba\xe0\xe0\xbd\xae\x6a\x54\xd5\xeb\xe5\xe0\xa0\x77\x7d\x64\xbe\xa7\xac\xc5\xb6\xcd\x77\xfb\x36\x82\x65\x64\x48\x28\x05\x3e\xf8\x66\xa6\x0a\x87\xf7\xf6\x0d\x95\xee\x31\x51\xe6\xa8\x08\x50\xfa\xe5\x31\x90\x9e\xc8\xea\x47\xe1\xa5\x5e\x76\x09\xc1\x22\xea\x2f\x46\x85\x12\xc9\xac\xcb\x09\xf8\x54\xf2\x57\xca\x94\xad\xd8\xb4\x62\xc3\xbd\x35\x51\xed\x1d\x4c\x66\xa3\xeb\x61\x18\xd7\x5b\x2a\x73\x11\x66\x26\x1a\xf0\x53\x22\xd8\x61\x40\x3d\x2c\xd5\xed\xa0\x16\xec\x28\x04\x5d\x19\xc5\xfd\x28\x19\xe4\x44\x52\x28\x9b\x59\xb5\x2a\x9c\xd7\x62\xd0\x67\xea\x52\xe6\x6d\x18\xf7\x7e\x94\x1b\xef\x2c\x4a\x75\x57\xe3\x82\x1c\x89\x42\x9e\x97\x99\x78\x80\x92\x03\xf0\xe6\xe5\x82\xe6\x23\x39\xa7\xf2\x26\xe6\xa8\xfd\x84\x87\xfb\xdd\x24\x37\x03\x3e\xda\x6d\x72\xba\xe1\x94\xde\xc1\x7e\xc3\xaa\xfd\x8d\x9e\x6a\xb3\x5f\x67\x52\x4a\x17\x53\x55\x06\x40\x72\x3c\xd5\x8c\x21\x6b\x7b\x3f\xf0\x0c\x8b\x5b\xd6\x14\xf3\xf3\x34\xea\xde\x68\x5e\xe3\x00\x1b\xd0\x9f\xad\x6b\xaa\x6d\xe3\x27\x34\x53\xf8\xfd\xbf\x44\x9e\x2d\xec\xca\x4d\xc5\x9b\x2f\x9a\xe0\xd4\x96\xb7\xd0\x2e\x3d\xd1\xe4\x42\x81\x76\x95\x4d\xfa\x0d\x11\xc1\xea\x21\x85\xe3\x49\x89\x06\x9b\xc2\xec\xf1\xf5\x6a\x0e\x99\xe0\x8f\x77\xd6\x7c\x03\x3a\xf6\x23\x0e\xaa\xdb\x81\xaa\x51\xff\xbe\x06\x18\xa0\x6d\x18\x1e\xcc\xd6\x9e\x42\x44\x5d\x9e\x28\x8a\x9c\x33\x8a\x73\xee\x2a\xcc\xaf\xb8\x85\x7e\x26\x9f\x9f\x79\x9e\xd3\x2c\xc2\x5b\xaf\x49\xec\x15\x96\x2b\x8c\xad\xc9\x38\x56\x9b\xd3\xf0\xbf\x19\x27\xc6\xef\x5f\x37\x8d\xa4\x5f\x44\x6c\x9b\xb2\x73\xae\x72\xbd\x12\xe5\xa4\xcc\x04\x29\x85\x5a\x9f\xba\x50\x6c\xb7\x88\x7e\xc4\x66\xec\xfa\x37\xe4\x7d\x54\x97\xdc\xe5\x46\x8e\xf5\xf0\xbe\x99\xee\xd8\x66\x23\x03\xa2\x7c\x87\x9e\xfe\x07\x8a\x8a\xee\x1f\xa8\xfd\xf8\x8a\xcd\xca\xdc\xc4\x76\x84\x37\x80\x6f\xb9\xae\xb3\x2d\xeb\x0d\x5b\xff\xd9\x6e\x5e\x66\xd4\x86\xd8\xd1\x90\x7f\xc5\x3f\x7d\x55\x95\xa3\x56\xd2\x34\x8e\x57\xa7\xbd\x6e\xf4\x75\x8d\x5f\x40\x5c\xa7\x8a\x68\x22\x37\xfc\x8b\xb6\x4a\x68\x35\x82\x22\x00\xc0\x64\x4a\x4a\x3f\xbf\x1d\x1d\x9d\x17\x25\x49\x96\x62\xe2\x31\x7d\xac\x0e\xca\x37\x6a\x2e\x97\xa3\x1c\x8a\x7f\x4e\xcc\xde\x0b\xdb\xab\xa3\xc0\xf4\xd3\x31\x33\x10\x02\x24\x8e\x98\x9a\xaf\x6b\x4d\x61\x83\x61\x0e\x00\x84\x98\x6c\x3a\x11\xf9\x46\x75\x2e\x56\xbb\x72\x39\x2a\x56\xf7\x54\x7b\x02\x0e\x56\x07\x95\x4b\x58\xd4\x0f\x31\x6a\x08\x15\x4f\xa9\x12\xdb\x16\xd0\x40\x73\x6b\x0a\x1d\x9d\x70\x13\x98\xbf\x56\xc2\x49\x5f\x1f\xda\x86\x56\x77\xfe\x5e\x8a\x16\xf8\x07\x89\x1e\x41\xc2\xc3\x16\x75\xfc\x70\x18\xc5\x31\xd4\xf1\x61\x34\x3f\xaa\x25\x30\x7c\x63\xc8\x75\x5d\x7c\x4b\x47\x69\x96\x89\xe7\xa9\xe9\x9b\x91\x2d\x41\x10\xc7\xd7\x54\xf5\x87\x1b\x70\x05\x96\x52\xf0\x7c\x1d\x27\xfd\xfd\xd5\x89\x6f\x4f\x6e\x76\xc3\xcd\xcd\x75\x97\x32\x9b\xbc\x8a\xbc\xba\xab\x1f\x39\xb9\xb7\x8b\x2a\x30\x23\xd2\x0b\x9b\x01\x0c\xe5\xa8\xbf\xab\xc1\xe1\x1b\x0f\x3c\x29\x4c\x99\x84\x43\xf0\x97\x8a\x0b\xf2\x83\x89\xcf\xc6\x20\x99\x80\xdc\xdc\xba\x2e\x15\x34\x8b\x84\x24\xdf\x6a\x92\x22\x1a\xda\x2c\xed\x28\x20\xe8\xba\x22\xc4\x69\x6e\xbb\x43\x2f\x75\x57\xd3\x12\xe8\x84\xc3\xfb\x5c\xcc\x41\x8f\x2b\xc1\x48\x5b\xed\xc4\x0c\x08\xae\xa3\x3b\x17\xd8\x88\xf0\x8d\xf2\xc5\xf2\x74\xc9\x80\x65\x54\x65\x00\x0f\xea\x0c\xa0\xc4\xa9\x26\xab\xdc\xfc\x38\xd7\xca\x42\xdf\x56\xca\x42\xdf\x6e\x84\xe0\x07\xe6\xba\xb9\x29\xa2\x7c\xc9\xa1\xed\x61\x23\x4f\x2b\x7b\x79\x5a\x09\x72\x44\x49\x61\xe3\xd8\x86\x30\x63\x58\xf8\xe8\x4c\xe7\xeb\x36\x0b\x31\x32\x59\x11\x25\x2c\x55\x22\x6c\x97\xde\x1f\xfc\xe3\xb6\xd2\x86\xe9\xf7\x45\x2f\x93\x5b\xc7\x55\xac\x7f\xd5\x95\xfe\x4d\x18\x92\xca\x72\x94\x0c\xa6\x34\xdc\x81\x06\x40\x40\x7a\xba\xbe\xd0\x12\x78\x8c\xec\x31\x14\x79\x35\x48\x92\xe1\xb7\x7c\xd3\x0a\x18\x7b\xc5\xae\x70\x61\x58\x78\x42\x35\x9f\xdd\x45\x17\x2d\x0c\x32\x93\x94\xb1\x01\x7e\x05\x66\x00\x25\x08\xbe\x76\xeb\xd9\x29\x43\x6d\x57\xe5\xe6\xf7\x29\xd1\xc9\x0c\x1b\x78\x2f\xb1\x97\xd5\x77\x60\xf7\xfd\x36\x72\x0d\x0e\xc3\x31\x3b\x8b\xbd\x3b\xfc\xed\x35\xf1\xb4\xc6\xd6\xe4\xc2\xf1\x28\x1d\x2f\xaa\xfb\x45\xc5\x6e\x79\x91\xd9\x3c\x9f\xaa\x4c\x10\x12\xd3\x27\x26\xaa\x07\x0c\x22\x62\x52\xe2\x6a\x51\xaa\x32\x99\xf0\x88\x22\x0e\xe0\x72\x34\xdf\xac\x29\x83\x3d\x1e\x5b\x13\x6f\x57\x7c\x3c\x17\x15\x2b\xfb\x8d\x9a\x76\xa7\x72\x44\xae\x91\x39\x72\x02\x9f\xae\xc6\x75\x36\xd8\x84\xd1\xfb\x6c\x77\x61\xdf\x41\x0d\xb3\xbb\xa6\x60\x76\x6d\xd2\x2a\x85\x89\x8f\x4e\x29\x64\x2a\x50\x0c\x08\x31\xf9\x2d\x44\xb0\x41\x31\xaa\xd8\xe5\xd5\x69\x85\x7f\x86\xfb\x28\x58\x0e\x7f\x54\x7d\x6f\xe2\xb9\xfb\x7c\xc7\xaa\x3d\x56\x44\x49\x88\xf4\xa3\xe3\xd8\xf0\x8c\x78\x67\x55\xab\xc5\xa9\x16\x82\xd8\x3c\x4d\x13\x9b\x4d\x79\xea\xc0\x07\x08\xee\x10\x2a\xbe\x49\xa6\x10\x86\x7b\x4b\x4f\x75\x33\x44\x19\x5e\x53\x32\x4d\x1d\xc7\xab\x84\x35\xc1\x8c\xee\x6d\x0d\xbb\x83\x32\xe9\x74\x14\x43\x55\x8d\x72\x49\x41\x42\xfa\x25\x31\x22\xf8\xa4\xcc\x47\x13\x9d\x68\x51\xbc\xbb\x4c\x97\x8d\x82\xee\x27\xe0\x4c\x62\xb1\x60\x21\xe3\xac\xb9\xe7\xbe\x7c\x64\xc2\x61\x74\x34\x4a\xa6\x7d\xb2\xee\x92\xea\x08\xd9\x81\x6f\xc0\xb9\x82\x19\x44\x55\x6b\xbd\x85\x0b\x73\x9e\xea\x90\x0e\x30\xe0\xd2\x5d\x8e\x50\xe8\xb2\x22\x24\x5a\x31\xf9\x6f\x6e\xfd\x34\x4f\xe1\xbf\x53\x0a\x53\xe7\x50\xe2\x43\x2c\x78\x12\x33\x80\x07\x43\xba\x1e\x9b\xe5\x3b\x74\xa8\xc3\xa4\xde\x06\x1b\x81\x50\x5e\xd1\xf2\xc1\xf7\xfe\x17\xa2\x39\x92\x56\x85\x6a\xa5\x03\x33\xf2\x27\xf4\x8a\x92\x40\x52\x2d\xe9\xcf\xac\xa9\xd4\xc1\x2e\xf2\xe4\x1d\x07\xe6\xe7\xbe\xc4\x7b\x83\xfb\x95\x11\x14\x72\x47\x3f\x56\xd8\x74\x4f\xa5\x06\xb6\x82\x0c\x09\x49\xae\x1f\x05\xba\x30\xfd\x01\x34\xd2\xb1\x4a\x3e\x42\xf4\x00\x87\xe9\x5d\x74\x35\x22\x2f\x8d\xc6\x30\x81\x24\x57\x91\x18\x83\x8e\x55\x51\xe7\x3a\x77\xf3\xa0\xd2\xf6\x00\x4b\x48\xa8\xc9\x74\xd6\xb5\xcc\x77\xd0\x93\xb2\x0c\x00\x5c\x27\x00\x0d\x7e\x4c\xab\x49\x51\x23\xc9\x08\x7c\x30\x51\x34\xad\x6f\x4d\x7c\x4d\x11\x8d\x04\x1f\xa7\x65\x39\x3b\xdb\xcd\x4c\x18\x71\x03\x3e\x93\x61\xd2\x27\x84\x18\xd3\x87\xd9\xab\x26\xeb\xa3\xa9\x12\x4b\x73\x27\xd5\x7f\xf0\x36\x5b\x09\xcd\x2f\xd6\x6c\xb3\x75\x3c\xf4\x52\xb7\x6f\xb9\xe1\xc8\xd5\xd4\xe6\x7c\xad\x6d\xf3\x7e\x7b\xee\xb9\x6e\x6e\x98\x94\x8b\x55\x9d\x02\xcf\x1b\xf6\x9e\x2f\x4b\x8e\x6d\xf5\xec\xd3\x1d\x47\xb6\xba\x6d\x4d\xd1\xd7\x93\xd3\x36\xbf\x71\x9d\x46\x83\x0c\xe7\xff\xf6\x4c\x4f\x77\xfa\xe7\x85\x99\x52\x54\x5d\xdf\x55\xec\xb6\xd7\xb1\x58\x84\x01\xa6\xe5\xf8\xec\x1b\x9c\xbf\x70\x3a\x30\xdd\x88\x00\xf8\x7a\xb2\x59\x69\xf2\xe5\x97\xbb\xfd\xa8\xe3\x83\xd1\x73\x5a\x7c\xf8\x5c\x23\x7c\x5a\xd8\xd7\x35\x65\x31\x4c\x21\xa1\xdd\x51\xd2\xcc\xba\x34\x1e\x28\x11\xe4\x38\xc5\x39\xe7\x18\xfa\x1c\x14\xf3\xaa\x2b\x3d\x85\xb1\x29\x73\xbb\x5d\x65\x82\xb8\x09\x4f\x0e\xc4\xad\x9f\xf6\x27\x9e\xcb\x69\x3f\x01\xeb\x22\x8e\x51\xf5\xc5\x22\xfb\xdb\x04\x00\x7f\xb9\x9b\x95\xc9\xd4\xa6\xbe\x1f\x49\xb0\x4c\xf5\xb4\x69\x12\x17\xc0\x2c\xdb\xcc\x0c\xdc\x68\x0a\x11\x90\x2f\xbc\x5e\x71\x2f\xb0\x64\x8d\xcb\x9c\x60\x21\xe2\xb8\x11\xc0\x43\x2d\x73\xe2\xe0\x45\xcb\x36\x5b\x2c\xb5\x82\x27\xab\x88\x4d\x7c\xdc\x74\xb6\x81\x27\x9c\x39\xd4\x5d\x5a\x8c\x28\x09\x89\x2d\xcc\xdd\x06\x28\xbe\x49\x76\x4e\x1a\xe4\x75\xa4\x95\x84\x29\x96\xaf\xa8\xaa\xfb\x54\xf5\xc9\x36\x4d\xbb\xaf\x94\x51\x78\x14\x67\x36\x30\x6a\xa0\x20\xe4\x6b\x97\x36\xca\xd3\x32\x0b\x05\x18\xcf\x54\x31\x81\x72\xc5\xee\x36\xaa\x05\x47\x66\x0e\x75\xed\x68\x3c\x34\x79\xb5\x8a\xa6\x54\xdd\xee\x4f\x74\x73\xc3\xf5\x40\x31\xc0\x5d\x9a\xe8\xea\x7a\x38\x8a\xe2\xd8\x30\x73\xa6\xc0\x2e\xaa\x9d\xaf\x85\x0e\x85\x26\xc5\xf7\xcb\xd8\x63\x61\x24\xc2\xec\x92\xa7\xf0\x32\x49\x97\x82\x67\x6b\xbe\xf5\x40\xa4\x41\x3d\x43\xe5\x49\x45\x7d\x79\xb2\x11\x4c\xec\x9f\xe9\xae\x44\x99\x2d\xcc\x18\x9f\x71\xb5\x02\x67\xba\x2e\xb6\x69\xb2\x67\x65\xc6\xb6\x4e\x6a\xbe\xba\xc5\x6d\xf3\x0e\xdc\x3f\x53\x39\xda\xec\x67\x77\x3c\x3c\x1e\x51\x02\x5f\x4f\x7e\x4d\x71\x21\x6a\x99\x10\x3a\x38\x90\x1c\x3b\x49\xb3\xc9\xd7\x2a\xb7\x33\x4a\xfb\xd1\x52\x24\xf0\x12\x78\x9d\xec\x24\xc0\x47\x61\x2a\x41\x64\xe8\x1e\x36\x1a\x77\x67\x67\xab\xfd\x9c\x45\x89\x2d\xa2\x9c\xe1\x83\x5a\xa6\x1b\x70\x80\x8f\x6a\x39\xb5\x16\x0c\x66\x58\x16\x2e\x92\xa8\x95\x06\x60\xa0\x77\xf4\x7c\x8e\x63\xdb\x5a\x03\x51\x3d\xd3\x1d\x99\x3c\x37\x61\x66\xb5\x20\xec\x65\x15\x3f\x5e\x6e\x0b\x3f\xcc\x68\x94\x26\x51\x39\xea\x78\xac\xc2\xbf\x0d\x9c\x07\xff\xbb\xff\x56\x59\x79\x93\x1d\x95\x6d\x8b\x3d\xf4\xed\x89\xd2\x37\xfb\x76\xf0\x84\x4f\xf7\xa5\x2b\xbb\x3c\xce\x86\xf3\x40\x38\xaf\xb7\xaf\x29\x6a\x2a\xd6\x21\x13\x87\x4f\x15\x09\x1f\x29\x9a\xdc\x3f\x9a\xf8\x95\x72\x0e\x33\x21\x6d\xa9\x8a\x4e\xe3\x51\xe0\x89\xd8\x42\x13\x87\x65\xac\x93\xda\xaa\x78\xe9\xca\xb7\x13\x55\xd5\x9c\x28\x5e\xef\xfb\x9e\xfa\x25\x8b\x8a\x28\x1f\x6e\x57\x15\x3b\x90\x0b\xe1\x64\xbb\xc7\x21\x17\x7c\xa4\xff\x48\x43\x8d\x2c\xc1\x47\x13\xd7\x26\x74\xe4\xd9\x9e\x8a\xac\xef\xb6\xe9\x58\x8f\x6d\x56\xb2\x78\x82\x2b\xb6\x57\x6f\x29\xcf\x56\xfd\x22\x80\x5f\x37\x15\xb5\x52\x99\xf4\x9f\xf1\x71\x1c\xe7\x41\x61\xaa\xa0\xe3\x05\xb2\xc2\xdf\xec\xa9\x55\xbd\x85\x5b\xf1\x70\x07\xbe\x41\x58\xf6\x7b\x38\x1d\xe0\x6e\xed\xee\x55\xbe\x93\x68\xc0\x54\x3f\x0f\x7f\xf4\x03\x25\x9b\x75\x35\x50\x2c\xde\x5c\x41\x72\x4c\x8e\x5e\xba\xe4\xd7\x89\x05\x8b\x96\xc8\xff\xef\xcf\xf7\x94\x48\xd5\x74\xaf\xf3\xc5\x2f\x88\xbe\x98\x22\x0a\xe9\x10\x67\x34\x82\x8e\xf7\x5b\x05\xfe\x57\xd2\x8c\xa5\x41\xb0\xbe\xde\xd1\x3d\xb5\xef\x34\x06\xf8\xf0\xbe\x17\xba\x8b\x36\x1a\x68\x26\x1a\x64\x90\xa5\xc8\xaf\xc2\x45\xad\x45\x3b\xce\xd2\x57\x6c\x58\xf0\xa9\x8f\x49\x66\xc4\x1e\xdf\x28\x40\x06\x81\xe4\xa7\x3d\x6e\xf3\xbe\xd2\x60\x45\x0a\x0e\x21\xc6\x39\x8c\x33\xf6\xf7\x4d\xe5\x70\x8e\xca\x70\xb8\x57\xd1\xda\xdd\x9e\xf8\xae\x33\x40\xc5\x31\x6e\x4f\xae\x79\x4e\xaa\x7f\xf8\x16\xdc\x7d\x2c\x8e\xad\x48\xe2\x21\x1c\x7a\x0a\xeb\x01\xe1\xe3\xe5\x89\x7f\x80\x87\xb4\xec\x71\x76\xd2\xa2\x79\x81\x7f\xe4\xa3\x89\x4a\xa4\x04\xca\xf5\x65\x7d\x7e\x84\xf7\xef\xa8\x15\x98\x0e\x56\x77\x3b\x28\xc9\xff\xc0\xb3\x2b\xec\x5e\xbe\x60\xc7\xfc\x42\x98\x6a\x76\x0d\x61\x0c\x76\xf4\x7c\xec\x78\x99\x37\x93\x20\x3f\xab\x65\x03\xc3\xf0\xe1\xc4\x37\x1a\x3e\xa0\x40\x44\xca\x8f\x2d\x34\x50\x23\x33\x5c\x4a\xcb\x57\x3b\xde\xd6\x5e\xd2\x1c\x36\x97\x14\xd3\xdf\x38\x2d\x0a\x9b\x21\x77\xc9\x7c\xe5\x64\x62\x51\x63\xf9\xd5\x44\xe1\xd8\x1f\xa9\x99\xee\x9b\x28\x5e\xdd\x81\x87\x75\x02\xca\xd5\x30\xa2\x02\x0c\xf4\x07\xba\x3b\x8e\x4f\x7c\x0b\x20\x3a\xad\xd1\x0e\xf6\x2c\xf1\xa0\xf1\xdf\x60\x45\xe1\x3f\x3a\x6b\xfe\xcc\x8f\x92\x90\x45\xb7\xaa\x0f\x22\x2a\x7a\x7b\xa2\x58\x21\xde\x6e\xb3\xe7\xc4\x56\x93\xc6\xff\x0d\x1e\xac\xcd\xc7\xeb\x81\x39\xe8\xf5\x90\x88\x09\xce\x0e\x61\xcf\x54\x0a\x7e\x1f\x2a\xf3\xea\xd2\x70\xa5\x89\x3b\x1a\x78\xc9\xe8\x40\xbe\x51\x68\xa2\xbc\x48\xb3\xd5\xed\x08\xbc\x30\x79\x10\x80\xc6\xca\xbb\x47\xa1\x9a\x13\x09\x9f\x9d\x75\x7c\xbc\x1e\xb6\xb2\x3e\x51\x0e\xd6\x7a\x0b\x77\xc6\x3c\x89\xd3\x9b\xc2\xfb\x96\xd2\xa6\xa8\xd0\x85\x17\x1b\x43\xf6\xf2\xcb\x5d\x13\xc7\x91\x11\x19\x0e\xa7\x30\xeb\x47\xac\xd6\x7b\x9e\xf4\xcd\xb4\xca\x54\xfe\xb3\x5a\xef\xf8\x79\x84\xe2\xfc\x5f\x81\x5a\xe9\xe7\x6b\x7e\xa9\x0d\x87\xd3\x9e\x2a\xf3\xaa\x26\xaf\x7b\x97\x7e\x99\xaf\x95\xc8\xc3\x55\xcf\xf6\x68\x57\x6c\xc6\x04\x2a\x42\x80\xe4\x6b\x86\xf7\x60\x11\x1c\xe4\xbf\xb2\x08\x98\x41\x54\x00\x9d\xce\x65\xf5\x6c\xf8\xab\x6d\x6b\x1e\x75\x75\x34\xcd\xac\x49\x88\x2d\x00\xcb\xf9\x75\xa5\x1b\x09\xa2\x16\x71\xea\xe9\x1b\xe8\x8f\xfe\xca\x27\x29\xd1\x40\x9b\xf5\xbd\x5f\xef\x6d\x0e\x45\x16\xf6\x75\x97\xca\xa4\xdf\xf1\x7c\x7b\x97\x15\x02\xed\xb2\x0a\x9d\xf2\x38\x5d\xc1\xdc\xc1\x39\xbe\xa0\x58\xf6\x2e\x6c\x4e\xb0\x1d\x98\xeb\x1e\x98\xfb\x54\x65\x0e\x44\x6d\x84\x30\x32\x82\xf8\xa7\x59\xf7\x12\x97\x92\xbe\xbe\x8e\xbd\x0a\xcb\xf4\x1a\x60\x41\xd2\x8f\x53\xef\x16\xfc\xdc\x97\x84\x83\x2f\x50\x11\xfe\xdf\xc2\x7b\xe3\x7c\xba\x87\xec\x01\xaf\x56\x1a\x29\x58\x84\x8e\x56\x65\x09\x54\x71\x0b\xbc\x55\xc8\xb5\xed\xa2\x13\x10\x8b\x4c\xb2\xb7\x48\x14\x33\xfd\xb1\x70\x65\xd2\x24\xca\xa6\xf2\x22\xd0\x67\x90\xc6\x41\x68\x79\xbd\x11\x01\xce\xce\x76\x9f\xfb\x9f\xfe\x3b\x36\x04\x4c\x9a\xab\x44\x06\xdf\x50\x9d\xbe\x7d\x3b\x32\x49\x3f\xdf\x49\x0f\x2a\xb4\x7e\x3e\xad\x30\xd5\xf3\x20\xb6\x87\x1a\xce\xfd\x23\xd5\xdc\xf2\x5f\x95\xe2\xef\x1b\x5a\x26\xa5\xe6\x74\x9d\x6a\xd8\xec\x2a\x34\x22\x3d\x5b\xec\x3f\x64\x56\x91\x08\xe4\x6b\x87\xa1\x2a\x6c\x6c\xc7\x43\x28\xc2\x78\xfa\xab\x4b\xaa\x81\xf8\x92\x3a\x50\x5f\x79\x3e\x7c\x5e\xf3\x74\x80\x0e\x44\x24\x09\x9f\x52\x95\xbb\xe5\x28\xe7\x6e\x6d\xa6\x5c\x0d\x14\x8b\xd3\xd7\xda\x5c\xf5\x2a\x90\xeb\xb3\x90\x3f\x56\x1f\x3b\x06\x7c\xd3\x68\x13\x16\x4e\xb0\x91\xe9\x47\x39\xd3\xb4\x4b\xde\x5e\x27\xf1\xdd\x2e\x1f\x44\x31\xb7\x91\xba\x56\x06\xef\x54\x5d\x69\x98\xb1\xf9\x97\x0e\xba\x52\x10\x2d\x17\xa1\xa0\xf2\x6f\xf5\xbd\x16\x48\x78\x37\x33\x85\x30\x10\xcb\x08\xaa\x3a\xe8\x25\x75\xd8\xdb\x32\xdb\x55\x6d\x36\x59\xf9\xd5\x3a\xc4\x92\xf8\xd9\xc4\x37\x60\xbe\x8d\x1d\xe1\x28\x3a\xe7\x9c\xe2\x3f\x10\x35\x6e\x17\x38\xb2\x28\xc8\xfb\x22\xce\xda\xd3\xab\x31\xca\xec\x75\x1d\x78\x99\x4d\xec\xb4\xff\x3b\x40\x06\x38\xfd\x39\xf1\x2d\x05\x7b\x95\x3f\xd1\x6c\x3a\x9d\x9b\xeb\xf6\x6d\x15\xa8\xc9\x01\xc1\x5a\x2f\x5a\x69\xb6\x5e\xa9\x8d\xcd\x00\x8e\xa6\x73\x6a\x3c\x7d\xa9\xc2\xbe\x2f\x9a\xcc\x2c\xa6\xb1\xe1\xd4\x01\xfa\x47\xfe\x0b\xbd\x17\x5f\x2b\xcc\xdd\x62\x66\x8e\x5a\x14\xd4\x44\xc4\x48\x25\xfd\xbf\xd3\xd8\xc6\xfb\x67\xba\x8b\xa9\xe1\xa8\x92\x11\x50\x8a\x17\xf2\x6e\x8d\xa6\xab\xa5\x0f\x2e\x2c\xfb\xfd\x58\x76\x8c\x23\x5d\x56\x20\x2e\xfd\x22\xe9\x68\xd1\x64\x54\xfa\xaa\xfe\x1a\x86\x97\xd9\xdc\xf9\xc6\xe1\x8b\xd2\x32\x2f\x6c\x1f\xda\x8d\xd2\xcd\x52\xcd\x8a\xe3\x88\xae\x06\x15\x61\x1e\x20\xb5\x02\x5e\x54\xf0\xc3\x28\x8e\x2d\xb0\xec\xd8\x37\x37\x94\x78\xd4\x0d\x5a\x2f\xce\x85\xab\x86\x48\x5c\x38\xbf\x28\x97\x8a\x7c\x27\x99\x70\x01\xb2\x79\xa3\xc5\x21\x89\x68\x40\xd3\x0b\x21\xc1\xf8\xdb\x3d\x45\x30\x3e\xbd\xe6\xb9\xc4\x70\x2c\x21\x0c\x79\x6a\xad\x16\xff\xbb\x8a\x5f\x31\x4a\xf3\xf1\xd0\x66\xbc\xf9\x45\x94\xcd\xe7\xe8\xae\x6a\x3e\xf9\x24\xff\x84\x37\x6a\xd0\x4f\x82\x83\xbd\x55\x57\x1a\x9e\x5c\xf3\x91\xe8\x2d\x25\xe2\xf8\xc6\x5f\x65\xa2\x79\x1a\xc6\xbf\xf3\x57\x7a\x0e\x9b\x78\xb0\x8b\xc7\x03\x58\xad\xb3\xa6\x62\xb7\x0d\x1a\x03\xa9\x14\xd1\x18\xa0\xea\xbc\x9b\x04\x9d\x11\x2a\x6c\x90\xc7\x85\xb1\xb9\xef\xfb\x56\xf6\x76\xd7\x14\x0d\xe6\x6d\xf5\x26\xe1\xd1\x55\xa2\xd2\x41\x7c\xfa\x9b\xf4\x24\xd8\x31\x1c\xd0\x23\xad\xf8\x4f\xe1\x7d\x60\x68\xff\x84\x9e\x04\xaf\x78\x76\xe2\x2b\xfa\xdc\x56\x21\xb0\x00\x5f\x60\xf4\x25\x9c\xbe\x5d\x32\x65\x5c\x70\x46\xc6\x25\x5c\xab\x8f\xc1\xcd\x41\x7b\x19\x56\xf0\x23\x55\x3d\x1c\xa5\x79\x11\xaf\xee\xa6\xd7\x96\x13\xb3\xd6\x94\x5d\xfd\x9a\x23\x7b\x71\x86\x63\x5b\xaf\x66\x69\x7d\x56\xe3\x35\x1c\x5e\x18\xe7\xdb\x13\x45\xa3\xf3\xe1\x44\x71\x3d\x43\xa2\x03\xdf\xf5\xc7\xad\x47\xdc\x92\x89\x62\x6e\xdd\x41\x15\xf9\x26\xcc\x0e\x2c\xe5\x29\x1c\xf8\x52\xc3\xf1\x1e\xd1\xa2\x35\x99\x56\xe7\x03\xba\x02\xa1\xd4\x56\x5a\x36\x92\xe6\xf6\x5d\x9f\x3f\xa0\x5a\xb5\xa4\xc2\x9f\x52\x08\xfc\x68\xd9\x14\x76\x6f\x15\xf4\xc3\x0e\x5f\x9a\xa8\xde\x87\x4b\xe4\x6d\x62\xc1\xaf\x6b\xc7\x06\x85\x20\xfe\x8f\x89\x5f\xf5\xfc\x06\x92\xb1\xa6\xb1\x11\xd9\x1d\x1a\x1b\xbe\xa1\xb1\x11\x49\x3b\xd5\xa0\x7c\x22\xf0\x24\x38\x3f\x0a\xbc\xf7\x70\xbb\xb5\x13\xc9\xe4\x91\x01\x52\x0a\x45\x25\x16\x9e\xe1\x1b\x15\x9f\x8d\x63\x02\xf4\xcf\xce\x72\xf8\xfa\x9a\x6a\x8a\x7f\xcd\x09\xc6\x2d\xd9\x3e\xb4\xbc\xa6\x5d\xa6\xe6\x4d\x16\xd1\x76\xea\xef\x5e\x5c\x62\x2f\xea\x54\x18\xdf\xe9\x35\xdd\x86\x99\x86\x47\x81\x9d\x9b\x77\x61\x59\xf5\xbe\x12\xaf\x89\xe1\xf8\x4a\x69\xfa\x59\x39\xf6\x74\x1f\xa8\x33\x03\x1e\xc0\xd7\xee\xe1\xc2\xa1\xc9\x0a\xb4\xc4\x56\xcf\xe0\xc8\xd0\x3d\xcf\xfd\xe5\x56\x1d\xc2\xfe\x72\x15\xc7\x20\x5f\xc1\x7a\x85\x81\xc2\x36\x5e\x74\xbc\x95\x51\xc2\xa5\x66\x66\x64\xc6\xd6\x92\xcc\x67\xf5\x48\x58\x3e\xf7\xdb\xb2\xe4\x59\x99\x24\x60\x43\x75\x3e\xa9\x83\x47\x69\x80\xfe\x62\x9a\xf5\x89\xc2\xc5\xd1\x3a\x5d\x08\xfc\x99\xa8\x7b\x2b\xc2\x34\x97\x1a\xce\x97\x9d\x76\x97\xcf\x9c\x9e\x69\x41\xf4\x1c\xec\x66\x76\x6c\xe3\x29\xed\x5b\x6b\x76\x62\x94\x02\x61\x39\xbe\xa1\x56\x87\xed\xaf\x30\xe0\x4e\xa4\x19\x69\x88\x45\xb4\x51\x61\x3c\x8b\x82\x7a\x3d\x50\xbf\x3b\x4d\x06\x13\xc0\x5e\x9c\x4c\xae\x29\xc5\xb7\x65\xde\x55\x04\xb5\x37\x54\x7e\xb9\x9f\x8e\x6c\x5e\x44\xe1\x2e\x55\x30\xb8\xa8\xe2\xa7\xff\xfb\x75\x04\x25\x52\x9d\xf5\x5b\xec\x17\xe0\xbc\x71\x65\xdb\x6a\x7c\xb4\x90\x2c\xa2\xb9\xcb\xf4\x70\x22\x80\x50\xad\x3e\x18\xc9\x2b\xca\x80\x1f\xfc\xfc\x97\xa6\x6a\x48\xcd\xce\x9c\xa7\xe8\x54\x3b\xe9\x41\x03\x54\xf1\xf2\xcb\xdd\x30\x65\x10\x38\x9c\x80\x8f\x02\x2f\x06\x7c\x45\x11\xc8\x5d\x57\xb0\xb9\x57\x6c\x91\xab\x92\xcd\x83\x89\x97\xa7\xf9\x81\x46\xfb\x3d\x76\x40\x95\x45\x93\x85\xb1\x59\x15\x69\x2f\xb6\x11\x9a\xac\xec\x8c\x06\x47\xde\x08\x7e\x4d\xad\x9f\xd1\xd8\x64\xa6\x88\x96\x2d\x28\x7d\x67\x1c\x3e\x89\xde\x59\x90\x4b\x7e\x38\x3e\xf7\xf9\x83\x04\x37\x96\x8e\x1d\xc5\xa8\xfa\x38\xd0\x45\x54\xe5\x9c\xbf\xd3\xe2\x40\xcf\x77\xf3\x94\x62\x5b\x57\x26\x7a\xa0\x2c\xf4\x03\xb7\xfd\xc3\x34\x09\xcb\xcc\x2b\x63\xc3\xe1\xf8\xa6\x0e\x34\xbe\xb9\x49\x8b\x73\x91\xbe\x94\x75\x65\xe8\x4b\x45\x63\xc6\x97\x77\x16\x8d\xb7\x3e\xd8\xb1\x1d\x4f\xe2\xf6\x52\xa7\xe7\x8d\x7f\x58\xc6\x45\x99\xd9\x1d\xbe\x30\xf9\x53\xa2\x59\xc0\x83\xde\x0e\x3c\x0e\x9e\xbb\x52\xb1\x32\xcf\x29\x69\xf5\xf7\x27\x9d\x23\xf3\xbe\xb0\xe1\x5a\x3b\xff\x9e\xea\x46\xce\x87\x69\xbf\xbf\xaa\x94\x55\xea\xa4\xcd\x7e\x02\xfe\xda\x7f\xff\xd7\xa6\xbc\x0f\x82\x02\x10\x9e\xeb\xf8\x44\x41\x98\x4f\xd7\x18\x43\x07\xc3\xe2\xc9\x4d\x68\xc6\x19\xc7\x95\x44\x38\x00\x38\xc8\x17\x74\x17\x05\xf8\x32\x85\x6f\x84\x4e\x29\xd7\xb3\xb5\x20\xe1\xee\x09\x9c\x84\x78\xe9\xc7\x81\x42\xb0\xdd\xa7\x53\x4a\xd4\x26\xbd\x0f\x04\xf6\x4a\x9c\x58\x3f\xa1\x68\x48\x88\x23\xe9\xec\x93\xf6\x2f\xdf\x77\x59\x85\xd8\xa4\x29\xa8\x08\xcc\x4e\x2a\xb8\xce\x63\x55\x28\xbe\xad\x3e\x97\x0f\x33\xeb\xe1\x68\x08\xbc\x19\x8d\xc0\x37\xea\x8c\x5f\x36\x59\x64\x21\x25\x3c\xc3\x73\xfb\x07\xd8\x03\xcc\xc7\x80\xf3\x40\x04\xc3\x9b\xf1\xc2\x7c\x37\x2f\x80\xa1\xf2\x07\x35\xba\x94\x24\x31\x22\xfb\x75\xd5\x8c\x4c\x61\x12\xa6\x1a\xc7\xc8\xfd\x98\xde\x81\xaf\x15\xf3\x6f\x34\x1a\xa7\x79\x1e\x2d\xc6\x76\x5a\x89\x86\x41\x7a\x4c\x6b\xac\xf0\xf5\x84\xd2\x68\x52\xda\x7e\xb6\x5e\xd9\x5b\x2a\x73\x27\x64\x2d\x2c\x31\x0a\xa9\x77\x56\xb1\x2e\xe7\x63\x9b\xf4\xa3\x64\xb0\x57\x25\xa0\xcf\xea\xc6\x06\x06\x8c\x23\x07\xf3\xa7\x0a\xad\xfa\x48\xd1\xd4\xfd\x30\xa8\xc5\x0b\xb4\x36\x18\xeb\xa6\xa0\xc6\xac\xe4\x24\x3c\x52\x9e\x78\xeb\x3f\xc2\x09\x97\xf8\xa9\x5a\x4d\x9c\xe5\x51\x96\xe2\x0f\x1a\x25\x63\xa2\xc0\xb7\xd9\x62\x14\x46\x7d\x09\xdf\xf0\xb9\xe3\xaa\x75\xe7\x78\x5b\x94\xbb\x98\x59\xdb\x77\x4c\x3a\x38\xda\x00\x24\x45\xa6\x0b\xd9\x29\x11\xae\xd5\x50\x8c\x74\xd9\x3e\x49\x1f\xc2\x1f\x92\x53\x27\x76\xf1\x64\xa0\xb4\xca\x58\x18\x1b\x35\xb1\x87\x18\x52\xc4\x5d\xbb\x7b\x9d\x85\x7d\x1b\xac\x95\x89\x51\xde\xc0\x00\xba\xd3\xf3\x45\xa9\x2c\x9c\x0c\x3a\x9a\x66\x6d\x6e\xce\xb3\x92\x7e\xf1\x0b\xae\xd7\xbb\x9a\x09\xec\xc5\xd7\x30\x94\x52\x28\x6e\xc9\x78\x8d\x23\x61\xd2\x6a\x63\x1f\xf6\xb5\x9d\x95\x34\x8b\xfb\x2b\x51\x5f\x18\x6f\x60\xfa\x4e\xab\x98\xfd\x8c\x56\x83\xb8\x1d\x78\xce\x93\x38\x3a\x6a\xe3\x68\x98\xa6\xfd\x4e\xe5\x49\x63\xbd\x5c\xc4\xae\xe7\x9b\xb6\x16\x66\x4a\x33\x39\xef\xaf\x8d\x70\xc8\x1b\xc7\x7d\xf3\xfb\x39\xaf\x0e\x07\x86\xc9\xe2\xf9\x46\x21\xe9\x6d\x99\xa5\x63\xbb\x4b\x25\x08\x1f\xc1\xf4\x61\x7c\x1f\x6a\x1f\xf6\x5f\x29\x7e\x44\x80\xee\x84\x2d\x41\xd9\x12\xa4\xdf\x9d\x26\x90\x4b\xfb\xdd\x0a\x54\xdd\xf5\x1b\xad\x35\x7d\x9b\xdb\x42\xd5\x30\xc1\x96\x53\x13\x33\x83\xa5\x5e\x73\x70\x90\x24\xcd\x8a\xa1\x35\x79\x61\x33\xb8\x64\x92\x30\xf4\x3d\xb6\xa7\x5c\xa3\xf4\x58\xe8\xd3\xa5\x94\xfa\x8f\x02\xc5\x9e\xfb\x8f\x5a\x6b\x41\x69\x96\xb8\x6d\xa0\xf1\x91\x38\xc3\xb8\xc3\x13\x3e\xd4\xe9\xb6\x34\x5f\x44\xc2\xf9\x08\x26\x50\x56\x7b\x43\x69\x7c\xbe\xe1\xb8\x89\x92\x28\x04\x93\x20\x0c\xc6\xba\xf2\xa0\x91\x1a\x07\xff\xcd\x5f\xec\x79\x52\xea\xcb\x6d\xf4\x22\xaf\xa4\x4e\x05\xbf\x8d\x4f\x54\x65\x4e\x48\x5b\x58\x31\x39\xdc\x51\xe5\x94\x3b\x6a\x25\x65\xe9\x2a\xa5\x9a\x98\xe8\x1b\x43\x26\xac\xdf\x4d\x44\x67\x68\x4a\xd7\x5c\xc2\xd2\xb6\xd8\xc8\xa2\x73\xbb\x19\x9b\xf3\x59\x72\x2c\xa6\x54\x35\xe1\xad\x89\xc2\x97\x29\xe9\x8a\x3b\xc1\x13\x2a\x4a\x5f\x9c\x52\x64\x83\xf8\x33\x2c\x3a\xa6\xf4\x96\x0e\x07\x2d\xf9\x64\x8f\xc6\x29\x66\x53\x14\x5c\x5f\x87\x15\x42\xd8\x4c\x85\xea\x8d\x8d\x36\xf4\xbf\xea\x07\xc5\x72\x7e\x9f\x16\x27\x5f\x2b\x3e\xa3\x91\x1d\x2d\xda\x2c\x1f\x46\xe3\x6d\x75\x1a\x8a\x05\x51\xe1\x7e\x03\x3f\x89\xe3\xfb\x6d\x8f\x69\x13\xc2\x21\xa9\xd6\x78\xc0\x1e\x31\x4c\xec\xa1\x13\x0d\x5e\xc4\x45\x0d\x39\x3d\x81\x29\xe1\xff\xa1\x82\x97\x2c\x48\x05\xf5\x81\xbb\x85\xf7\xe4\xde\x38\x49\xce\x55\x7b\x14\xae\xf8\x8f\x74\x28\x03\xa5\x12\x14\x9f\x1e\xc1\xa3\x43\xbd\x71\x77\x4f\xb6\x5f\x66\x4d\x9e\xdb\x3c\x1f\x49\xff\x0c\x8b\x7c\x06\xbe\x47\xe8\x72\xa3\xc1\x6e\xfe\xa5\x83\x8e\x98\x4c\x21\x78\x4e\xd5\x64\x84\x95\x87\xda\x8f\xd2\x63\x51\x9f\x31\x29\xb0\xf4\xeb\xfa\x6c\x58\x6f\x83\xec\x93\x0b\xc2\x94\x8b\x30\x5e\xa8\xcc\xf2\x75\x03\xfc\x72\x78\xdf\x97\xbb\x4b\x11\x1d\xf5\x1d\x15\x49\x9d\x57\x6d\x04\xe7\x9b\x5c\x1a\x2f\x1d\x84\xc6\x86\x8a\x7d\x51\x77\x70\xbd\xa1\xde\x6f\x6c\x63\x83\x1a\xa5\x02\xf6\x71\xd4\x0d\xd5\x69\x29\x2e\x21\xe5\x25\x99\xca\x3a\xd0\xee\x9c\x35\x59\x9e\x26\xc0\xa5\xc0\x48\x5c\x08\x54\xda\x0c\xed\xdd\x7c\x4d\xee\x02\xff\x91\xe7\x8c\x18\x9b\x0c\x4c\x6a\xb0\x25\xeb\x98\x5f\x4c\xd9\xcf\xbd\x00\xdb\x77\x9f\xad\x46\x6d\x63\xcf\xda\x66\xdf\xe2\xc0\x5c\x97\xf0\x54\x95\x7b\xd1\x67\x83\xc3\x0a\xad\x8a\xbf\xe4\x8a\x32\x38\xa3\xe8\x58\x61\xc3\x29\x05\x84\x79\x48\x67\x34\xdc\xf7\x13\xf4\x9b\xc8\x60\x6f\xed\x7d\x52\xf1\x0a\x0f\xd2\x4c\x89\x85\xa1\xa0\x75\x11\x5b\x9c\x6f\x7c\xce\x2f\x5d\x49\x56\x4c\xd6\x47\x94\x0c\x9f\x18\xa2\x7f\x70\x2c\x3e\xd4\x82\x5f\xd7\x54\xf3\xd2\xaf\xf5\x94\xb6\xe7\xb5\x5a\xb6\x5a\xe1\x1e\xc0\x0d\x00\x07\xf3\x69\xca\x9c\x31\x33\x4c\xdb\x02\x1c\xa7\x69\x66\xf3\x42\x31\xf8\xb2\xd6\x08\xdf\xa8\xf9\xb4\x59\x39\x26\x52\x8b\x8e\x63\xe5\x07\x37\x1d\x5f\xb7\x38\x68\x07\xbb\x7d\x9b\x45\xcb\x4c\xd4\xac\x7a\xb0\x1d\xd7\x1b\x46\x48\x6a\x55\x9f\x50\x99\x84\x72\x31\xb6\xe0\xdd\x77\xaa\x1e\xd5\xd2\x61\x62\x4b\x1c\xe5\x58\x2f\x67\x26\x8a\x1b\xe2\x11\x3c\x27\x49\x0a\x79\xf6\x9a\x26\x12\x8d\x44\x7d\x6c\x28\x74\x7b\xf0\xaa\xff\xeb\xc4\x67\x2e\xff\x6b\x0b\x47\x64\x96\x3a\x61\x6a\xe9\xfe\xef\xcc\x79\x52\x81\xcd\x36\xf9\xc5\x99\xee\x80\x2b\x4f\x87\xf7\x39\xe0\xa7\x77\xbf\xcf\xba\xa3\x35\x2d\xb3\x1c\x31\x83\x73\xb4\xaa\x1f\x91\xf0\x8a\x82\x3e\x18\x63\x10\x09\x8b\x4a\xe3\x66\xbb\xb5\xb0\xef\x20\x1d\x21\x36\x91\x05\xef\x24\xba\xbc\x5c\x97\x42\x5c\x8e\xd3\x38\x2a\xa2\xd0\xc4\x4f\x53\x06\x86\xbb\x28\x60\xb9\x91\x12\x42\x4a\x03\x6f\xb8\xa3\xa7\x4e\x85\x2b\x1a\xac\x0e\x27\xca\x29\xa3\x7a\x1d\x86\x1d\x08\x24\xa4\x8d\xbd\xe3\xa8\x06\xb6\x61\x39\x4b\x96\x4c\x69\x73\xdd\x62\xe8\xba\x7c\x5b\xc7\x69\x7f\xb2\x05\x80\xc7\xfc\x36\x46\x85\xff\x8a\x46\x95\xa5\xc7\xe9\x78\x81\x4b\xf6\xcf\x03\x45\x68\x13\xd9\xb8\x9f\x53\x22\x94\xb7\x9d\x92\x10\x01\x13\x30\x06\x08\xda\xaa\x7c\xed\x36\x6e\x68\x92\xc2\xa9\xc7\xb1\x9c\x16\xcd\x85\x48\x6b\x39\x7f\xcf\x46\x83\xe1\x62\x9a\x55\xbe\x33\x55\xf3\x1c\xea\xc6\xf5\x52\x9c\x50\x15\x65\xf6\xa9\xc5\x47\xd8\xe3\x89\xd1\x8d\x82\x35\x3f\x40\x58\x22\xe8\x2a\x8f\xf0\xbc\xd2\xd2\x1c\xfe\x65\x4a\xc4\x64\xb6\xc0\xda\xc6\x57\xff\x58\x71\x1d\xff\x58\x91\xc4\x2d\xa5\x61\x99\xef\x56\x6c\xa4\xc7\x27\x3e\xba\xfd\xc7\x5a\x4d\xe0\xbc\xea\xf5\xbc\x0b\x18\x82\x13\x3b\xaf\x1e\x0e\x4b\xe1\x86\x2e\x42\x5d\xa3\x30\x08\xd1\xc5\xe5\xc0\x97\x46\x2f\x05\x35\x40\x89\xdb\x07\x61\x9a\x3f\x3f\xa5\xc1\x7b\xd8\x60\x62\xa9\x95\x98\xd2\xbf\xf0\xbc\xdc\xb6\xda\x62\x52\xa4\x13\x4a\x1e\xef\xcb\x7c\x0f\x9e\x84\x20\xdf\xbc\x37\xd9\x4c\xfb\x52\xdb\x6c\x24\x69\x01\x51\x0a\xf6\xa5\xaa\x67\x8f\x4f\x9e\xf0\x39\xd6\xbc\x98\xf6\xf9\xaa\xdd\x3d\x25\x3f\x06\xbb\x0d\x54\x1a\x98\xd4\x98\x76\x4b\x1d\x6e\x99\x59\x6d\x52\x70\xc2\x58\x3f\x0c\x7c\xab\xd2\xb9\x5a\xe4\xba\x54\xe4\x3b\x14\x41\xd7\x79\x95\x9f\xba\xae\x19\xed\xb4\x7e\x14\xaa\x3e\x4a\xd7\x40\x62\xbf\x3f\x53\xec\xb8\x97\x95\x51\x08\xd3\xd1\x52\x9a\x15\x52\x1f\x75\x0c\x8d\x0a\x21\xd3\xc2\x67\xb3\x94\x66\x80\xd7\x0a\x0b\xa8\xaa\xb1\x9d\x6d\x2c\xd2\xfd\xfb\xbb\x8b\x51\x3a\xc8\xcc\x78\xc8\x8c\xdc\xd2\x99\xee\x7b\x35\x2e\x39\xc1\x89\x28\xb1\xcb\x51\x61\x08\x3d\xe1\xf2\xb0\x58\x8e\x52\xba\x7c\xca\xd5\xd4\x0a\x9b\x8d\xa2\x04\x6c\xa3\x08\xe3\xa1\x7d\xc5\xb5\x19\x25\xb7\xaf\x93\x2e\xa1\x19\x8d\x4d\x34\x60\x8d\x23\x59\xcc\xff\x29\xa8\xb7\x12\x2f\xec\x73\xac\x27\x9a\x6c\x32\xf0\x4d\x59\x36\xa7\xec\xa7\x62\xf9\xbf\xac\x82\x29\xdd\xf8\x9c\x87\x19\x03\x42\x1c\xa9\xc9\x65\x55\x9c\xaa\x4b\x6c\x66\x7d\xf3\xdf\xc2\xa0\xf9\x6f\xb5\xc7\x0c\x71\xca\x4f\xf9\x3c\xc3\x5d\x25\xb7\x5c\x63\x2d\xfb\xbf\x1a\x28\xb9\xd9\x59\x91\xe6\x77\x4e\x26\x0b\x7e\xd2\x77\x88\xf8\x67\x9b\x34\xeb\xc8\x16\x59\x4a\xe7\x89\x49\xa6\x3b\x9f\x3f\xc2\x16\x04\x2b\x11\x67\xf5\xce\x9e\x07\xe6\x30\xd2\x4d\x82\x34\xaf\xbd\x9a\x54\xd1\x7e\x9c\x0e\x22\xe8\x22\xbe\xe0\xfa\xbf\x3a\x8e\xb4\xe8\x5c\x9b\x66\xf4\xa0\x44\x42\x56\x3c\x3c\xed\xee\xa9\x56\xc2\x57\xac\x1d\x77\x74\xff\x1b\x0d\xb9\xf4\xc2\x29\x6e\xcb\x24\x61\x77\x1e\xa7\xca\x7d\x7c\x21\xdf\x28\x1d\x1f\x96\xa4\x15\xd0\xbe\xe8\x1a\x69\xbd\xa3\xb6\x08\x34\x71\xf8\x1e\x61\x74\xa7\xf1\xe0\x1b\x15\x45\x16\xe6\xd8\x13\x34\x0e\x22\x58\xa6\x52\x52\x2c\x38\x8a\x0c\xdc\xff\x89\x2c\x9f\x50\x26\xfb\xe2\xc5\x8f\xe0\x15\xa1\x58\x0e\x4e\x3f\x81\xbc\x62\x49\xd5\xe8\x6f\x91\x21\x61\x05\x7a\xae\x0f\x28\xc0\x02\x58\xb2\xc4\xab\x52\x18\x05\x1b\xe3\x75\x6a\x0e\x2a\xdf\xa8\xe3\x66\xb5\x3a\x85\xb7\xd3\x93\x62\xf1\xa2\x94\x83\x71\xfd\xe5\xc4\x93\x00\xdc\x50\xab\x16\x1d\x5f\x70\xa5\x6f\x62\x4b\x4a\xb7\xa9\x9c\x1c\x2b\xd1\x00\x70\x13\x99\x4a\x05\x77\xbe\x1a\x7c\xaa\x0e\xaa\xa3\x46\xf4\x03\x73\xcf\xd0\x33\xba\x32\xad\xa3\x3a\xe1\xd0\xd5\xe5\xd6\x66\x67\xbd\x22\x77\xe5\x86\x22\x14\x86\xd8\x3d\x6a\x62\x2c\xa2\x8f\x51\xd9\xca\x78\x06\xa7\xa1\xeb\x42\xd4\x37\x08\xd7\xcb\xed\xf1\xc0\xb5\x21\xeb\xf1\x73\xac\x2e\xd8\x96\x73\x38\x4e\x5d\x2a\xe7\xc0\x9c\x1b\xd4\xca\x32\xc1\xf4\x33\x9d\x8a\x9b\xad\xca\x17\x83\x63\x74\x41\xcb\x85\xdd\x69\x4b\xc0\x84\x99\xc9\x87\x1d\x52\xf8\x26\x3e\xbd\xeb\xda\x2a\x91\x4f\x2c\xa1\x8c\x2e\x8f\xf0\x75\xed\x3c\x1a\xa6\xc5\x36\xc5\x44\x7b\x61\xe2\x5d\xfd\xb3\x81\x82\x72\x5d\x50\x9e\xd2\x0f\x94\x54\xc0\xe5\x96\x62\xd3\x4c\x37\x1f\xa6\x19\x9a\xdf\x9d\x90\x92\x63\x34\xf0\xcd\x65\x79\xb1\xea\xe8\x6f\xe0\xb9\x30\x1b\x12\xdf\xb4\xd6\xd7\xad\x11\x91\x03\xae\x0a\x06\xba\x42\x28\x87\x88\x4d\x0a\x93\x0c\xdc\xb7\x3b\xfc\xae\x73\x1d\xee\x05\x9b\xa1\x6f\x33\x87\xba\x8b\x59\x6a\xfa\xa1\xc9\x7d\xa3\x1e\x92\x14\x20\x29\xe6\x6b\x57\x2b\x1b\x67\x69\x61\xf3\xc2\x24\x85\xd4\x02\x81\x09\xdf\x06\x47\x42\xd2\x4c\xaa\x4a\xd4\x59\xf3\xce\xec\x38\xca\xa4\xfe\xcf\x14\xfb\x81\x8f\xcc\xde\x53\xf3\xd9\x2f\x33\x03\x36\xc2\xea\x5b\xa5\x57\xb1\x5a\xeb\x7c\xdd\x04\xd9\x11\xc7\xf0\x80\xb4\x5d\xe8\x43\x70\xd8\x7f\x08\x2b\xc2\x37\xed\x24\x19\x5e\x5d\x11\xab\xef\x8a\xa2\x19\xba\xe2\xa9\xe6\xcb\xf1\x38\xcd\x6d\x7f\x9b\x82\x86\x00\x25\xa1\xd8\xb4\x0f\xea\x36\x66\x49\xaa\x3e\xd1\x53\x11\xf8\x9a\x2c\x84\x51\x14\x17\x1c\x99\x4a\x43\xb1\x22\x75\x6e\xf6\xa1\xce\x1c\xea\x12\xc5\x2c\x1b\x2c\x47\x4c\x3b\xe7\x95\x3e\xdb\x35\x8d\x6c\xb6\x2c\x4b\x42\xe4\x93\xe9\x15\x44\x58\x79\xf3\xa9\x54\xc5\xc0\x61\xbf\x46\x73\x4d\x0f\x26\x5e\x54\x8b\x5e\xcb\xc8\x14\x25\xab\x09\x63\x1b\x01\x41\x8e\xcc\xea\xfb\xaa\xd7\xfc\x0f\xb5\xf4\x55\x79\x8c\x97\x90\x94\xeb\xfd\x58\xfc\x64\xa2\x5c\x91\xeb\xce\xa3\x1a\x94\x51\xdf\xc6\x51\x62\x65\xf1\xb1\xed\xc0\xd0\x23\x15\xc1\x44\xd1\xe2\x6a\x3e\x5d\xb7\xa1\x9f\xee\x7e\xa6\xe3\xb5\x0c\xef\xd0\xe6\xf8\x38\xdd\xba\xfd\xfb\xbb\x61\x3a\x8e\x04\xb5\x29\x39\x7c\x9f\x9d\x7f\xe4\x00\x77\x43\x92\x02\x55\xfd\x6f\x8c\x3d\x10\xdd\x18\xdf\x7e\x95\x26\xf6\xcf\xd3\x5c\x60\xf7\xde\xa2\xb0\x8f\x6b\xa6\x54\xf4\x15\x5d\x42\xcf\xb8\x72\x57\x37\x2e\x3f\xb3\x46\x06\x58\xa4\xa0\xaa\x77\xc1\x79\xf9\x76\xa0\xea\x8a\xdf\x47\x98\x8b\x1d\x78\x93\xec\x1b\xde\x12\xb4\x55\xb0\xf1\xb7\x38\x9c\x81\xc3\xfd\x72\xa0\x19\x24\x70\x2a\xe3\xef\x76\xd0\xfa\x65\x0a\x70\xaa\x33\x33\xd5\x13\xf6\x16\x32\x9f\xcf\xf4\x28\x8b\xea\x14\x09\xaa\x11\x93\x28\x1e\x91\xb1\xf3\xf1\xe7\x04\x4c\x75\x0f\xfd\xe1\x38\x65\x58\x25\x0f\xcf\xbf\x8e\x23\x4b\x04\xe6\xe8\x64\x91\x83\xd7\x75\xb9\xa6\xd9\xc0\x16\x53\x35\x81\xae\x6a\xd0\x10\x8d\xdc\x53\x18\x93\xa9\x9e\x67\x54\x4b\xb3\x68\x10\x11\x87\xfe\xb4\xe2\x9a\xbb\xac\xc5\x6f\xf6\xf6\x7c\xda\x61\x2f\xb0\x7c\x62\xd1\x5b\x8e\x25\x93\xa5\xb9\x45\xaf\x2d\x42\xa7\x37\xe8\x29\xd0\x77\xcb\x78\x35\xd4\xf4\x6f\xa9\xfe\x96\x3c\x1c\xa6\x69\x9c\xef\xa8\x7e\x49\x3c\x07\xc5\xe3\xff\x0b\x7a\x7a\x8e\x40\x71\x66\xf2\x7f\x04\xde\x43\xfe\xd3\x89\xda\xc7\x97\x71\xfc\x4a\xd0\xea\x25\x84\xaa\x0d\xb3\x5c\x45\x9a\xdb\x75\xbe\xbf\x7a\x44\xd4\xfc\xde\xa4\x15\xc8\xd7\x81\x52\x1e\xd8\x20\xe3\xe6\xba\x18\x1c\x7f\x76\xa7\x85\xf2\xbf\x2e\x52\x09\xee\x33\x66\xe0\xe7\x1b\xb7\x55\x5e\x35\xe3\xff\x2f\xaf\xcb\x51\x45\xa6\x25\xd3\xbf\x3a\x56\x72\xcf\x50\x5e\x0b\x34\x42\x8b\x53\x05\x05\xa7\x75\x85\xac\x5e\x6f\xd8\xb7\xc3\xfb\xe6\xba\x06\x84\x76\x30\x36\x44\x74\xf0\xc2\x06\x84\xc9\x31\x87\xa7\x27\xba\x31\xbc\x2d\xcf\x5e\x9d\x81\xbe\x8e\xcb\x8c\x09\x6b\xde\x00\xec\xe9\x79\xcf\xff\x92\xe2\xa2\xca\x7d\x40\x88\x3c\x28\xf4\xaa\xf9\xda\xab\x93\x47\x4b\x40\x58\x0a\xd0\xef\x6e\x50\xc7\xd2\xce\xc9\x30\xff\xaa\x51\x9d\x5e\xd8\xd7\xed\x47\xb9\x6b\xca\xa5\x07\x94\x90\x42\xc7\x1a\x1e\x02\x50\x26\xd5\x12\xc9\xa3\x62\x75\x97\x0a\x5e\x6e\xd0\x5f\x33\xd1\x39\xd9\x0d\xd8\xa9\x2b\x28\x8b\x08\x93\xa2\x22\x65\xbb\xa6\x18\x69\xbe\x15\x78\x84\xe9\x7b\x81\x62\x15\xfe\x96\x22\x72\x6d\x6a\x6f\xd1\xe9\x93\xe6\x23\x5b\x44\x61\xc7\x8f\x0c\xce\x64\xc9\x1c\x2b\x8c\x5f\xcd\xf1\x83\xf1\x38\xae\x7c\xf0\xe3\x4a\xb3\x2f\x4c\x93\x30\x2e\xfb\x8e\xae\x91\xb3\xaf\x81\x92\xde\xb8\xae\xfb\xd1\xce\xb5\xe8\x92\x76\x07\x99\x59\xe6\x0e\x47\xc9\x02\x2a\xdc\x5c\x4b\xef\x53\xb7\x30\xe1\x70\x35\x34\x59\x3f\x32\x5a\xc3\x19\xa9\x13\xbe\x6e\x30\x1b\x1c\x98\xeb\xae\x44\x71\xdf\x66\x89\xcd\x73\xa5\x52\x8f\xa8\x98\xaf\x6b\x5b\x20\xb2\xd9\x2e\x0f\x05\x79\xbd\x2e\xeb\xa0\x84\x20\x6e\xd4\xaa\xee\x2a\x97\x7d\x15\x46\x5b\xc4\xf4\x35\x16\x25\xf0\xc5\x9e\x1f\x6a\xb1\xed\x0f\x6b\x6e\x75\x16\xda\x3d\xf4\x15\x8e\x8e\xd4\xc7\x23\x8f\x34\x90\x1e\xfa\x1a\x58\x4c\xe8\x61\xc7\x1a\x67\x4b\x87\xb7\xfb\x8e\xa2\xc0\x5b\x27\x1b\xc5\x7f\x84\xf9\x52\xe0\x30\xc9\xda\x6e\xa7\x12\x2e\x6c\x6d\x73\xee\x66\x0e\x75\x4d\x36\x62\x00\x26\x2c\xd9\x5d\x3c\x21\xdf\xb8\x74\x48\x3f\x7a\xf5\xd5\x55\x6a\xf6\x76\x9d\xf2\x1d\x24\x84\x59\x72\x55\x09\x46\x3d\xd1\xf3\xb8\x05\x33\xb2\x49\x7f\x64\x13\x60\x13\xd1\xe9\x70\x1b\x0f\xc8\xcd\xb7\xbd\xce\x73\xcf\xf9\x1c\xbc\xc3\x39\x3e\x02\xa6\x46\x12\xf2\x7b\x9c\x8b\x74\xe0\x40\x47\x11\x93\x9f\xe7\xf3\x9a\xef\x14\x2d\xe0\x78\xb8\x9a\x47\x61\x94\x17\x24\xc9\x07\x7f\xf4\x14\x0d\x2c\x5f\x2b\x88\xc4\x38\x4b\x97\x96\x6c\x96\xb1\x66\x34\x67\x9f\xe9\x69\x24\x13\xdd\x16\x82\x10\x17\x7a\xa7\x4e\x79\x4e\xcf\x26\xc9\x24\x4d\x36\x1a\xe5\xe0\xea\x95\xb6\xd4\x8e\x23\x83\x7b\xc7\x93\xf5\x84\x51\x52\xa4\xf9\x70\x4a\x33\x9d\x9d\x57\x1a\x01\xfc\xfd\x40\x8d\x35\xb3\x9e\x95\x19\xb7\x26\xd7\x60\xd7\x77\x03\x9f\x3f\xd5\x7a\x52\x61\xba\x62\xb2\x7e\xbc\xda\x81\x23\xe2\x80\x53\x87\x35\x70\xca\xa5\xd4\x6c\x52\x64\x9c\x0a\x63\x76\x54\x4e\x38\x08\x57\xaa\x1f\x77\x9b\x2c\x47\x39\x71\x4c\x77\x1c\xaf\xde\x1d\x7a\x5b\xbe\x6e\x2a\x11\x2d\xcc\x77\x8b\xb4\x1c\x0c\xc5\xab\x6c\x83\x55\x34\x19\x1c\x97\xd2\xb4\x58\x34\x71\xac\xb8\xd0\xcf\x60\x23\x0a\xb5\xc6\xe6\x39\x3b\xf4\x52\x77\x90\x2e\x13\x78\xc3\xe5\x74\x60\x44\x3d\xfe\xd4\x57\xd6\x93\x27\xab\xff\x01\x43\x21\x57\xd3\x9c\xa8\xa4\x73\xde\xaf\x68\x32\x16\xe6\x60\x40\x89\xe3\xfc\x44\x11\x07\x3c\xd1\xf3\x12\x81\x5b\xa9\xaf\x41\x3a\xf2\x69\xe3\x4a\xc1\x94\x36\x14\x03\xba\x94\x53\x73\x11\x85\x5a\xd7\x1f\x5a\x8d\x91\xc4\x7c\xe4\x93\x0a\x8a\xb0\xa5\x93\xb1\x6f\xed\x58\x35\x17\x5f\x0b\x6a\x6c\x0f\xfe\x20\xc8\x2c\xb3\x84\xec\x50\x0e\xec\x95\x49\x8d\x0a\xc0\x37\x78\x5f\x0a\xd4\x11\xff\xa1\xea\x26\xf9\x50\xd3\x50\xb0\xff\x25\x8a\x04\x4d\xf0\xde\x5c\x37\x4a\x0a\xc3\xf4\x78\x5c\x11\x09\x3c\xb6\xe2\x5c\x63\xa9\x48\x5b\x9a\x89\xe3\x1d\xd5\x24\x08\xef\x68\xc7\x11\x3c\xb1\x29\x94\x2e\x03\x45\x0d\xb7\x0d\xf6\x4a\x3a\xba\xa8\xea\x81\x9b\xbd\xe0\x83\x13\xfd\x42\x2f\xb7\xe0\xf1\x4f\xdc\xe5\x4d\x0f\x27\x1d\xdf\x2d\xa0\xa9\x38\xca\x8b\x98\x4e\x27\xc7\x48\x01\x7c\x2d\x5f\x37\x96\xe4\xec\x6c\xd7\x24\xab\x2b\x06\xea\x55\x8e\xea\xd1\xd3\x3e\xaa\x29\x2a\x6c\x6c\x97\xa3\x9c\x8d\x94\x6a\x7f\xf3\x9d\x85\x0d\xbe\x93\xfd\xdd\xa5\x28\x1f\x6e\x52\xa9\xbb\xab\xe4\x2b\xc0\x5e\x2a\xcc\x02\x3e\x12\xcd\x0b\xb3\x43\xe3\xea\x95\xcf\x0e\xc7\x17\x96\x99\x29\xd1\x71\xa6\x72\x8f\xad\xd3\x91\x3c\xbc\x8f\x8d\xb9\x58\x0b\x01\x69\x34\x7d\x88\x85\xee\xd0\xc6\x63\xca\xf4\xc3\xf5\x07\x9e\x1e\x73\xfa\xa0\x86\xc9\x6d\xd1\x66\x74\x00\x0f\xfa\x7d\x26\xc0\x0a\x7c\x4b\xc5\x19\x37\xa7\x23\xa2\x3d\x01\x2e\x80\x21\x95\x8a\x14\x6f\x5d\x81\xc3\x4f\x07\xfa\x1c\x3f\x16\x71\xde\x45\x56\xb6\xaf\x58\x54\x81\x85\x73\xa6\x8a\x2c\x25\xde\x7c\x0c\x37\xce\xc3\x0d\xc5\x1c\xf8\x91\xca\x52\x3d\xb9\xe6\x71\xb0\x83\xcc\x26\xa6\x6f\x3a\x8a\x98\xb0\xd3\xf3\x95\xd8\xce\xda\x6e\x89\xd6\x8f\xcc\xff\x46\x67\x41\xd0\x9d\xbf\x22\xfe\x33\x4e\x36\x52\x1a\x72\x83\x24\x16\x0e\x6e\x30\xd3\x02\xc6\x7f\xdb\x9a\xcf\xb6\xdc\x26\xbf\x01\x5f\xcb\x75\x7b\xc4\x33\x20\x37\x80\x9f\x72\x8e\x32\xa2\x62\x47\x3d\xee\xfa\x22\xa2\x53\x61\xc1\xa0\xed\x8d\xc3\xee\x89\x9e\x4a\x6d\xdf\x08\x14\x59\xd2\x71\x18\x2c\x18\xbf\x0b\xf0\x93\x51\x11\xfb\x48\xd5\x53\x4e\xc3\x74\x0b\xcf\x04\xd6\x0b\x02\x8f\xa9\x35\x9c\x51\x5c\x2a\x27\xaf\x1b\x8f\xb9\x1d\x52\xc9\x78\xe4\x1f\x53\x18\x8e\x09\x7f\x5b\xe5\x80\xff\x79\xa0\xf0\x95\x0f\xa8\x8c\x29\xe6\xba\x65\xbb\x98\x24\x29\xa3\x82\x4e\xd0\x0d\x78\xbe\x1b\xd7\x55\xe4\xb8\x64\xe2\xc2\x82\x57\xb9\x7a\x29\xd1\x97\xf4\x66\xe1\x62\xf0\x94\x46\x50\x9b\x81\xcd\x76\xaa\x72\xe6\x1f\x50\x40\x05\x04\x2e\x08\x5d\xf8\x1a\xaf\xcf\x04\xfd\xb4\x75\x50\xa2\x79\x77\xe2\x71\xc6\x53\x55\x2c\xb5\xb1\x8e\x49\x13\xce\x7f\x5f\xe8\x48\x9e\x5f\x7d\x9e\x8a\xe2\x18\x28\x34\x17\x02\x7e\xf2\xa6\xd2\xf6\x7d\x53\xb7\x9a\x5f\x55\x84\xa8\x79\x39\x18\xd8\x5c\xd8\x97\x38\x1f\x32\xd1\xb9\x91\x96\x62\x61\x9e\xc6\x54\xaf\x15\xf2\x73\x4e\xea\x63\xa7\x3f\x52\x5d\x52\x1b\xd5\x37\x6d\x5c\x57\x8d\xcc\xaf\xa4\x65\x96\x98\x78\xbb\x17\x49\x44\xea\x53\x2a\xeb\xf4\xad\x72\x1a\x2a\xf2\x32\x86\x87\xb9\x9c\x86\xf3\xc3\xef\xea\x76\x98\x61\x4a\xd6\xc4\xad\x61\xc7\x75\x73\x41\x2b\xc3\xdc\x0b\x3e\xa5\xde\x7f\x6c\xb3\x70\x68\x32\x4a\x2c\x3b\xd9\xf2\x5f\xd2\x2f\xf0\xb5\x2e\xb7\xc7\xe9\x0a\x0a\x15\x4e\x09\xc9\x39\x39\x57\xd4\x6b\x26\x76\x00\x0a\x58\x97\xfd\x03\x86\x83\xaf\x1b\x87\xf6\xcc\xa1\x6e\x94\x71\x16\x54\x17\x2e\x24\x3c\xd1\x0d\x72\x36\xb7\x49\xb1\xbd\xb2\x07\xee\x9b\x8f\xcc\x3b\xcf\x46\x55\x3c\x8f\xc3\x51\x10\x3f\xc7\x47\xf2\xc7\x69\x82\xe5\x59\xbc\x1b\xb7\x44\xdf\x1d\x95\x70\xe3\xa4\xe9\x5f\x39\xee\x17\x15\x5d\x46\x6c\x16\xd3\x6c\x47\x65\x57\x98\xb0\x9d\xe6\x51\xf2\x89\xaa\xf3\xf3\x2d\x38\x45\x4e\x48\xfe\x88\x13\x09\xb9\xa0\x9a\xb2\x2f\x04\x8a\x6e\xa4\x05\x68\x3e\xdf\xb5\x49\x65\x67\x1d\x10\x10\xce\xf1\x03\xc5\xc6\xf9\xa0\x71\xc6\x90\x7e\x55\x34\xa0\x6a\x09\x1b\xe0\x5f\xa9\x82\xd0\xaf\xda\x3e\x60\x92\x41\xb6\xaa\x7a\x65\xae\x2a\x04\xfc\xd5\xc6\x07\xf6\xef\xef\x2e\xa7\x11\x37\xcc\x20\x19\x09\x1d\x75\xbe\xf6\x59\x3a\x52\x50\x9e\x56\x64\xa0\xc0\x37\xc3\x14\x20\xd5\x06\x07\x8c\x41\x37\x88\xfe\x7e\xa1\xdd\x77\xb3\x18\x25\x96\x3b\xee\xe1\x25\xe2\xf5\xf9\xba\x71\x4a\x2a\x7d\xd6\x29\xe5\xb2\xfe\x78\xb2\x39\xa1\x25\xf2\x4c\x2a\xe5\x64\x97\xc3\x14\xd4\x7f\x52\x85\xab\x95\xe4\x3a\x73\xbe\xec\xaa\x00\x1a\x57\x83\x06\x39\xa9\x5c\x2b\x4e\x9b\xcc\x2e\x9b\x28\xee\x28\x61\x7d\x76\x69\x04\xd9\xa3\xb8\x63\xcd\x0a\xf8\x01\xd1\xde\xc4\x40\x1a\x87\x65\xac\x7e\x19\x35\xbc\xd3\xad\x2a\x3d\x12\x2a\x68\xe4\xa4\x48\xc9\x7d\x1c\xfd\x41\x58\xb9\x80\x69\x3e\xe5\x4b\x1a\xef\x6b\x92\x99\xdb\x3a\x37\x78\x5e\x4d\xcf\x2b\x66\x64\xe0\x90\x54\xcb\x1d\x1b\xe6\xac\x16\xf8\x39\xdb\x88\xdd\x16\xf6\x75\x0d\xe1\x85\x2b\xe3\x0b\xa0\xd1\x16\xf2\x00\xb0\x67\x6f\x4c\x6a\x1e\xd8\xe6\x07\x3e\x32\xff\x69\x51\xed\x75\xbb\x42\xa4\xeb\xfc\x72\x7a\xa8\x5a\x5c\xd8\x2c\x55\xbe\x8a\xae\x1d\xb3\x8a\x01\x36\xe5\xc9\x89\x2e\x17\x7e\x52\x1d\x6c\x51\x92\x17\x99\x35\x23\xc2\xcd\x38\x54\x90\x53\x2e\x06\x81\x13\x4e\x2d\x1c\x73\x7c\xdd\xa2\xba\x32\x2f\x41\x00\xfd\xb0\x78\xa2\xca\x2b\x55\x27\xaa\x5d\x5a\x4a\xb3\x22\xdf\x59\x77\x27\xeb\x90\xa7\x85\x7d\xed\x34\x33\xd5\xf0\x31\xc6\xad\x46\x34\xac\x52\xcc\x67\x27\x3e\x5b\xf2\x44\xaf\x45\xe2\x78\x65\x98\xc6\x36\x37\xcc\xfd\x21\x82\x91\xd5\xb7\x49\x3b\xc2\xc7\xad\xa4\xbc\x24\xa6\x76\x55\xe7\xe3\x2a\x3d\xdf\x34\xcc\x1c\x71\x23\x8d\xc6\xe4\x50\xda\x6c\xaa\x4e\xf2\xe8\x7a\x02\xbe\x8b\x2f\x11\xd1\x9e\x36\xce\xde\xc5\xac\x8a\xad\x0b\x2c\x45\x26\xf9\x0e\xfc\xf1\xd6\x94\x57\x3e\xbc\xef\x85\x6e\x61\xb2\x68\x69\x89\x96\x11\x8a\x2f\x6f\x07\x0a\xd5\xf0\xb6\xce\x20\x46\xcb\x51\x1c\x99\x04\x31\x8f\x40\x45\x68\xb4\xf9\x46\xbb\x28\x69\x16\x4e\x53\x28\x0d\xa7\xe0\x66\xa0\x20\xc8\x37\xe9\xbd\xe0\x27\x9f\x40\x80\xc9\x37\x6d\x98\xcf\x4f\x77\x29\x67\xd3\x51\x15\x76\x08\xcb\xf0\xb5\x02\x5e\x84\xa3\xbc\xa3\xce\xc2\xb3\x1a\xf1\x73\x56\xa5\x2e\x46\x69\x56\x05\x4b\x05\x33\x26\x61\xcf\xdc\xe1\x0c\x93\x40\x2e\x55\x14\xf0\x01\x72\x54\x2c\x09\xaa\xda\x5c\x16\x33\x93\x84\xc3\x5a\x63\xe8\x1f\x29\xd1\x72\x2e\x1e\x4a\x4b\x57\x4b\x8d\xcd\xf4\x5f\x29\xf3\x02\xd5\x18\x38\x2a\x5b\x08\x74\x28\xad\x37\xf4\x02\x92\x52\xac\x96\x22\xfe\xe8\x97\x6d\x79\x6f\x8a\x4a\xa2\xc5\xb2\x10\xfa\x53\xcd\x01\x21\x89\x00\xfa\x42\xe1\x81\x6a\x21\x98\x5f\x8a\x16\xd9\x29\x62\xb9\x1f\xbc\x82\x68\xff\x28\xdd\x91\x34\x59\x8e\x84\x9c\x4a\xe4\x4f\x94\x92\xce\xdd\x26\x61\xc8\xfe\xee\x38\x4a\x70\x6a\xba\x4a\xb1\x96\x1c\x7b\x5a\x25\x65\xfa\x51\x18\x25\x16\x3a\x0c\x52\xcc\xf0\x99\xc7\xf3\x81\xc2\x44\x41\xcd\x53\x29\x97\xce\xb8\x52\x08\x2d\x3a\xd4\x49\xcf\x20\xb3\x23\x24\x78\x2d\xaf\xbe\x6c\x73\x69\x72\x11\xbf\xa5\xa3\xc8\x17\x6a\xd9\xde\xcc\x4e\x53\xd8\x85\xb4\xf2\x1d\x50\x0e\xf2\xcd\x44\x75\x68\xf0\x06\x11\x74\xdc\x26\xa6\xa8\xe7\x9e\xeb\xee\x9f\x51\x26\xfc\x82\x32\xe1\x17\x5a\x50\xa2\x33\xd5\x31\x3a\x48\x4c\x52\x4c\xd1\xcb\x08\x53\x6b\xf5\x29\x69\xa4\xe9\xb8\x0e\xd7\xf7\xbd\x1f\x92\x99\xbc\xda\x41\xd5\x98\xc1\x3f\xdb\xd0\x5a\x55\x1b\x0e\xcc\xb9\x98\x09\x09\x2c\x06\xed\x24\xde\x05\xc1\xe5\xdf\x0f\x94\xc0\xdf\x07\x0d\x13\x44\x58\x8d\xd1\x38\x4e\x57\x59\x62\x0f\x48\xbe\x8f\x54\x03\xd0\x35\x45\x06\xd1\x0c\xca\x3e\xa3\x38\xe2\x3c\xab\x29\xf3\x8e\xf0\x4d\x8b\xae\x9f\x4b\xc5\x28\x82\xf8\x8b\x8a\x0d\xe2\x62\xa3\xb6\x7d\xe8\xa5\xee\xa2\x2d\x0a\x9b\x51\xab\x02\xfc\xc8\xed\x6b\xaa\xd3\xe1\x4a\xe0\xcf\xe6\xd3\x81\x4a\x55\xde\xd2\x61\x41\x14\x8f\xf2\x29\xdd\x90\xab\xd4\xfd\xcf\xab\x4c\xc6\xa5\xb6\xae\xbb\x94\x02\x90\x7e\xde\xa9\xce\x4c\x95\xf3\x3d\x28\x37\x4d\x21\xe9\x97\x0e\x76\x6d\x1c\x15\x76\xba\xa3\x28\xa8\x7c\x82\xe7\x86\x76\xa7\xb6\xf4\x14\xbd\xec\x1f\xb6\x35\x24\xe6\xbf\x13\xe7\xd3\x0a\x2c\xb2\xad\xe7\xb9\x96\xae\x29\xe0\x31\xe7\x7a\x64\x02\x15\x75\x5e\x1c\xf5\x51\xcb\x73\x4d\xb3\xce\x1d\x3e\x3b\xd9\xb4\xd2\x67\x67\x0f\x76\x3f\xdb\xf1\x28\xa2\xb7\xb4\x43\xf5\x56\x63\xa9\x73\x8b\x5b\x52\xa4\xd9\x2a\xf2\x72\x08\x5c\xf0\x60\x7c\x1d\x3c\xab\xba\x40\x92\xc4\x9a\x71\x1a\x47\x22\x57\x21\xe1\x19\xfd\x8c\xc4\x6d\x2d\x65\x91\xa1\x89\x85\x93\x10\xa6\x15\xb8\x27\xbe\x56\xaf\xbb\x64\x97\xab\x05\xe3\xe0\xd4\x57\x6b\x72\xf6\xd5\x2c\x0a\xc9\x71\xb5\xa8\xf8\xdf\x27\x1e\xfb\x10\xa7\xc5\x2e\x4f\x1c\x84\x9d\x20\x3b\x5d\xf7\x8f\xc0\x86\xe2\x06\x65\x0c\x54\x26\xee\x69\x34\xe3\x49\x9c\x9a\xa2\x47\xe5\xcb\x0d\x00\xbc\x62\x0d\xdc\x68\x12\x16\xef\xef\x86\x69\x96\x95\x03\x23\xe4\xa1\x22\xcd\x4f\x3b\x9b\x6f\x5c\x1d\x76\xc5\x1a\x66\xa1\xc4\x0f\x75\x7a\x3e\xb8\xee\x80\xfc\x4d\x70\x8c\x9b\x57\xf8\xec\x6c\xe5\x42\xa5\x63\x97\x57\x75\xe9\x34\x97\x77\xbb\xac\xce\xd1\x7e\x9a\x8e\xb8\xeb\xa4\xc9\x4f\x0c\xc7\x56\x84\xd5\x14\x8c\x60\x68\xb3\x45\x0b\x17\xd8\xd1\x35\x2b\xbd\x5a\xf7\x1a\xc6\x31\x2f\xe2\x24\xfe\x60\xa2\x54\xe3\x3e\x08\x36\xf3\xb0\x3f\xdf\x5d\x31\xab\x1d\xe5\x05\x9d\x51\x82\xe0\x67\xda\xfa\x9a\xab\x9d\xbc\x62\x32\x1c\x6d\x28\x1b\x5e\xd4\x9d\x32\x17\x1d\x4c\x6d\x6c\x4d\x68\x8b\x68\x64\x71\xe4\x4b\x03\x91\xcf\xab\x03\x6f\xe2\x34\x76\x0e\xcc\x71\xea\xbb\x49\xa1\x75\x64\xe6\x50\x37\x89\xc6\x63\x91\xad\x75\x44\x02\xbe\xcd\xe8\x4c\xc3\x5c\x2e\xec\xeb\x8e\xca\xbc\x30\x99\x2e\x80\x5d\x51\x05\xb0\x2b\x2d\x84\xed\x73\xdd\x38\x5d\xa1\xbf\x47\x0d\xf0\x92\xef\xe4\xda\x7f\x29\x78\xb6\xbe\xd3\x17\xf6\x55\x96\x6a\x7b\xb5\x0c\x1d\x6d\x82\xb7\x91\x9a\x95\x03\x54\xef\x2e\x16\xf4\xe4\x18\xcc\x32\x28\xc4\xb6\x9b\x1f\xe8\xc0\x5c\x77\xd1\xe4\xbc\x69\x05\xad\xae\x61\xec\x5a\xb3\x25\x8d\x2d\x27\x74\x59\xf2\x9f\x4c\xbb\xc8\xff\x6f\x02\x99\xce\xcd\x1d\xec\x1e\x59\xd8\xb7\xa3\x1a\x76\xa6\x8a\x0a\x94\x56\x07\x9a\x1d\x45\x82\x84\xde\x4a\xe6\xd7\x67\xdd\x1e\xe3\x4d\x54\x16\x74\xde\xf5\x1b\x78\xc4\xfb\x12\x22\x32\xec\x0d\xe4\xc4\xce\xaa\x6a\xc0\xd9\x66\xce\x61\xa6\x3b\x32\xab\x26\x99\xd6\xef\xa2\x02\x92\x69\xd5\x32\x70\x62\xa2\xd2\xe3\xb7\xbc\x8e\x4e\x12\xa6\x03\xeb\x40\xcc\xc8\xeb\x9f\x42\xa2\x97\x6f\x1a\x16\x83\x64\x8a\xc2\x61\x94\x44\xb9\x03\x3d\x0a\x2a\x5f\x41\xf1\x76\x82\xb9\x0c\x86\x79\x6b\xa3\xad\xaf\xfa\x58\x37\x0f\x87\xb6\x5f\x3a\x84\x26\x42\xb7\x3b\x3a\x31\x7d\x47\xa9\x2c\x87\x43\x9b\xad\xc6\x94\xa0\x14\x30\xa2\xc2\xc8\x5e\x51\x73\x4c\xd1\x41\x4e\xf4\x1b\x0e\x26\xe0\xc8\x72\xd9\xb2\xc1\x34\xaf\x4f\x14\x43\xf1\x31\x34\x23\xb1\x54\xba\x6e\x4e\xbf\xa7\xa4\x6b\x51\xee\xc6\x77\x5d\xa0\xed\x28\x09\x4f\x9a\x58\xa0\x50\xb6\xc2\x16\x4a\x39\x81\x9c\x17\xa7\xae\x55\x79\x15\x0e\x3a\xe2\x71\x65\x27\x3c\x7c\xae\x1c\xd8\x18\x65\x21\x3c\xff\x46\xe0\x21\x0f\x1b\x0a\xee\xb1\x1c\x9b\x7e\x34\x8a\xe0\x9d\xc3\xcd\x78\x57\xb3\xfc\xbc\x1b\x74\x5b\x5c\x32\x52\x72\x89\xd2\x24\x1f\x46\x63\x9e\x79\x86\x29\xab\xdc\xdd\xb5\x3a\x0b\x6c\xf2\x2a\xfe\x10\xeb\xf6\xaa\x66\x9f\xba\xaa\x38\x3d\x8e\xda\x64\x94\xb2\xd5\x13\x71\x15\x7a\x1e\xbe\x69\x3b\x6f\x57\x22\xd7\xe7\xc6\x29\x0e\x45\x21\x7d\x4d\xa3\x9a\x87\xe9\x4a\x68\x72\xf4\x5a\xe0\x64\xfa\x11\x4d\x00\x5f\xb7\xc1\xd1\x96\x70\x98\xfb\xa6\x3c\x56\x51\x11\xb1\xbb\x66\x19\xbd\x9b\x59\xd3\x67\x00\x8d\x96\x46\x97\xd0\xa9\x19\x67\xa3\xfb\xca\xed\x5d\x06\xfd\xd2\x4b\x08\x00\xb8\x4d\x1c\xbf\x6f\x13\x56\x2c\xe1\x7e\xa3\x40\x31\x4a\x36\x71\xa5\xb3\xb3\x0b\xdd\x38\x4d\xb9\xc5\xdf\x35\xb3\x3a\x0f\xed\x44\xe0\x65\x05\xfa\x51\xce\x19\x21\x7e\x2a\xaf\x07\x56\x13\x0a\xdb\xbc\x3a\x5c\x8d\xf5\x95\x28\x49\x47\x69\x91\x4e\xf9\x38\x02\xfc\x2f\x30\x7b\xff\x1e\x93\x8a\xf9\xff\x30\xf0\x0b\x72\x54\x26\x95\x69\x18\x74\x54\x2b\x20\x10\x41\x7c\xad\x12\x02\x2b\xc4\xd4\xb4\x7f\x66\x83\x95\x68\xb8\x76\xae\x93\x0d\xaf\xb5\x28\x11\xcd\xd4\x95\x88\xe0\xf5\xde\x51\xdd\xed\x77\x02\x4f\xac\xba\x64\x6d\xbc\xb7\x1a\x23\x00\xc5\x76\x01\xe1\x8f\x4c\xf5\x83\x89\x3a\x70\xaf\x02\xe1\xa9\xab\x9c\x38\x65\xb7\x50\xc9\x1e\xe9\xa8\xd7\x26\x4a\x81\xe7\xbc\x4a\x18\x01\xd3\xaf\x69\x1b\x58\x95\x7a\xa2\xea\x35\x3f\x9c\xd4\x7a\xe9\x3d\xb5\xf9\x54\x6f\x8f\xf7\x60\x9e\x9f\x22\x48\x3f\x3d\x81\x12\x4d\x15\xee\x87\x0d\x45\xcf\xb9\x6c\xe2\x12\xc1\x59\x1d\x0e\xc9\xbc\x2e\xb4\x00\xc5\x45\x69\xc9\x8a\x8e\x04\x4a\x25\x72\x32\xbe\xb5\xf1\xdc\x64\x57\x54\x05\x96\x4b\x7f\xb5\xbb\xff\x37\xe9\xa9\xa5\x8f\x8d\x86\x0c\xe3\xbc\x67\x4d\xb9\xe1\xe7\x6a\xe9\x5f\xaa\x33\x22\x4a\xfe\x48\xd3\xbe\x5f\x47\xe4\x84\x48\x72\x3b\x75\x36\x0b\x2d\x64\xe7\x45\x69\x13\xde\xd5\xdb\xfa\x69\x27\xd2\xdd\xf9\xfc\x11\xde\xab\xdf\xa7\xf1\x96\xd6\x9a\xce\xfe\x19\xb6\x87\x53\x6b\x9d\x2f\x7e\x81\xed\xf1\x15\x40\x70\xf1\xfd\xf7\x95\x84\xca\xdb\x94\xae\xd9\xb8\x0e\x0b\x2f\x53\xee\x37\xcf\x93\x6b\x53\x47\x14\x6f\xd0\xd4\xc1\xbf\xf1\xa2\x08\x60\xd3\x4c\xa0\xe0\x74\x0a\x60\x0c\x21\xac\xc6\xd9\x47\x5e\xe8\xdf\xfd\xed\x5e\x67\xff\x7e\xaf\xa3\xa7\xc8\xa7\x14\x68\x91\xa9\xac\x69\x28\xff\xdc\xff\xbf\xd7\xd4\xaa\x05\x2d\x5e\x61\x06\x42\x6c\x01\xcb\xf6\xb6\x06\xac\xbd\xed\xa8\xf7\x58\x69\x44\x72\x3b\xc8\x2e\x23\x27\x82\xd3\x93\x1d\x0f\xe4\x5f\xf7\xf4\x5a\x3c\xf2\x7c\xc5\xda\xb1\xab\x59\x63\x93\xdc\x54\x59\x95\x0d\xd5\x2d\x7a\x56\xab\x96\x8d\x22\x47\xbe\x81\xe1\xf8\x7a\xa0\x3a\x1e\xbe\xae\x92\xcd\xb9\xa5\x5c\x33\x29\xcf\x57\x7f\xee\xc0\x28\xd5\xa3\xc9\x20\x39\x95\xe3\x62\x18\x5b\x6e\x89\x40\x62\xf3\x3a\xcd\x22\x5f\xab\x16\xb9\xaf\x94\x76\xd1\x86\x0c\x32\xc7\x54\x9d\xa6\xd5\xc2\xd7\xca\xd7\x2f\xc2\xe1\x36\x7a\x38\x97\xa0\x9e\x13\xc6\x75\x16\xdb\x75\x8d\xfa\x0e\xe5\xf2\xdd\x40\xc9\x17\x9d\x57\xbf\x9b\xc7\xb6\x4f\xe4\x0d\xd5\xdf\x4a\xbc\xe0\x9f\xe1\x83\x36\x72\x97\xa1\x8d\x46\x36\x93\x38\x14\x23\xcb\x4d\x21\x7c\xe3\xb8\x94\xa9\xcf\x83\x92\x25\x1b\x28\x0c\x31\x6d\x7f\xe0\x53\x88\x6f\xb6\xb4\xdb\x7c\xb9\x1b\xc6\x69\x4e\x2d\x07\x1b\x6b\x4a\x60\xf4\xc2\x44\xf1\xdc\x36\x5c\xff\x99\x43\xdd\x38\x8a\x21\x55\xe3\xfa\x29\xdf\x53\xfc\x6d\xef\x4d\x76\x7b\x2d\x01\xf6\xf5\x84\xd7\x57\xc1\x0e\x39\x69\x07\x67\x7b\x5d\x25\xed\xc6\xe9\xb8\x8c\xd3\x92\x12\x31\x07\x1d\x1c\x95\xf2\x10\x82\x47\xf5\xc1\x5b\xdf\x8e\x6d\xd2\x87\x30\x45\x5b\x14\x52\xbd\x09\xd3\x54\xe1\x8c\x10\xce\xaa\x36\xe1\x8d\x71\x99\x0f\x3b\x8a\x89\xf7\x94\x4a\x9c\x9f\x52\x07\x84\x49\xfa\xab\x1f\xdf\xe7\xf9\x29\xa5\x70\x50\xd8\x6c\x64\xfb\x91\x29\x40\x9f\x03\x58\x33\xab\x08\xf2\x8d\x02\xa3\xd6\xf4\x5e\x9a\x24\x4b\xe4\x66\x2c\xa5\x04\xc0\x54\xdd\x49\xd7\x54\x65\xaa\xee\x80\x0d\x4b\x68\x5e\x8b\x6e\x6c\x65\x3a\xf9\x5a\xf5\xbf\x46\x49\x3f\x5a\x8e\xfa\xa5\x89\x51\xb7\x92\x2c\xbc\x96\xc8\xa2\x81\x10\x9a\x25\x4f\x68\x18\x9b\x24\xb4\x9c\xa6\x13\xe9\x7f\x45\xe4\xc5\xa2\x51\x38\x91\xee\xbb\xcd\xb5\x9c\xf6\x8f\x32\x8c\x17\xf9\xe0\xbf\x3d\xf1\x89\xe2\xbf\x5d\x83\xd1\x8c\x6d\xff\x19\x3a\x63\x99\x99\xb4\xe7\x0a\xe1\x5f\x7d\x86\x74\x54\xe4\x99\x54\x82\x7c\x67\x4f\x41\xab\x41\x36\x82\x50\x1e\x44\xea\xc0\x94\x3e\x89\xc4\x16\x6e\xbe\x85\x09\x41\xa2\x71\x0a\x1c\x13\xee\x8c\x3e\x20\x7c\x08\x60\xa1\x84\x6f\x0f\xd1\x18\x94\x8a\x4e\x72\xc2\x1f\x8f\x78\x2b\x50\xda\xc4\x3b\xd0\xf9\x20\x96\x82\x96\x16\xe2\xac\x0e\x34\x64\xb0\x06\x6e\x3b\x44\x90\xe9\x2f\xdb\xac\x88\x72\xbf\xf1\x51\x81\xe2\xc0\x82\x6f\x1a\x48\x67\x74\xe1\x9a\xbc\xcc\x9c\x43\x09\xff\xeb\x6d\x1a\x59\xbe\x56\x2b\x78\x64\x22\x0e\x01\xa5\x7c\xe2\x67\x60\xaa\xe7\xab\xdc\x5b\x21\x7f\x08\x1b\x78\xba\x96\x34\x49\xb3\x42\x20\xe3\x22\x01\x48\x2f\xcb\x37\x0a\x0d\x3a\x34\x31\x75\x4f\x55\x63\x8c\xca\xcd\x79\x1c\xe9\x7c\xa3\x90\xfd\x76\x64\xb3\x81\x25\xec\x2f\x80\x94\xeb\x34\xe8\xf0\x85\x78\x96\x59\x62\x5e\x23\x0a\x1f\x29\x4a\xd1\x47\x0a\x94\xf6\xbf\xfc\xcf\xff\x23\xf6\xa9\x83\xfc\xef\x9f\x91\x6b\x05\xe7\xb5\xc7\x8a\x8c\x48\xf7\xa0\x3b\x88\xb9\x7b\x07\x43\xee\x04\x66\x5c\x8f\xd8\x6d\xb7\x01\xcc\x20\xb1\xb1\xcf\x15\xc2\x5b\xdd\xdb\x53\x0a\x3a\x7b\xd7\x84\x1b\x82\xb8\xfd\xa3\xb0\x90\xe6\x3a\xc1\x41\x3d\x98\x68\x3c\xf0\x83\x46\x38\x02\xb6\x92\x84\xcb\x71\x1c\x66\x2a\xc3\xde\x8c\xb5\xab\xc5\xb0\x58\x46\x71\x75\xe0\x70\x88\xc4\x84\xf3\x34\xc9\x42\x3e\xef\xe9\x26\xa2\xe2\x37\x2a\x3f\x04\x91\x2a\x7c\x4c\xbc\x35\x7b\x5e\xf2\x43\x3e\x9c\x7d\x4c\x00\x4a\xd8\xd8\x8f\xe0\xdf\x30\x5c\x29\x50\xd0\x9e\xeb\xea\x50\xb8\x8d\xd1\x84\x8b\xf1\x70\xa2\xca\xf7\x4f\xf4\xbc\x2c\xc9\x3b\xa4\x4a\x21\x64\xef\x95\x8b\x26\x7c\x05\xaa\x80\xf3\x2e\x96\x81\xb8\xc1\x84\xcb\xe4\x7d\x4c\x68\x16\x8c\x3c\x37\x3c\x41\x23\xea\xa9\xb5\x6a\xe2\x5d\x2b\xed\x8b\x33\xfc\x01\x28\x58\xc2\x4f\x78\xc4\x2d\x56\xd8\x2c\x5b\xd7\x14\xc7\xc8\xdf\x53\xcc\x72\xdf\x04\x95\x11\x5a\x9e\xd8\x8a\xe0\x3c\xde\x0e\xd7\x56\x74\x85\x37\xe7\xa2\x3f\xd3\x1d\x45\x61\x96\xae\x98\x65\xf1\x81\x84\xc8\x57\xb3\xfa\x06\xde\xab\x4f\xd2\xa7\x3c\xf0\xf7\x96\xe6\x89\x65\x4a\x72\x24\x50\x90\x34\xc6\x4b\x7f\x14\x28\x57\x76\x4f\x4f\xb3\xe0\xeb\xb6\x80\x5f\x60\x6c\xd0\xa5\x70\x93\xd2\x14\x80\x92\x7c\x1b\xd3\x07\x43\x78\x8f\x3c\x23\xb1\x83\x54\xb9\x44\xf5\x64\x0a\x28\x3a\xd7\x51\x7a\x58\xa4\x42\x05\x5c\x2f\xfe\x9c\x2f\xcf\x7e\xb7\x15\x95\x93\xd9\x30\x1d\x24\x4e\x77\x52\x99\x49\x9f\xc6\x16\x46\xe7\x57\x6c\x31\xad\x28\xfe\x2f\xaa\x23\x63\x67\xcf\xe7\x11\xef\xe8\x4c\xc6\x65\x85\xaa\x1a\xa5\x59\x1a\x86\x69\x47\xf7\x3c\x72\x90\x24\x9e\x4e\xb3\x50\x36\xdf\x8d\x12\x7d\xe0\xb2\x30\x7b\xe0\x53\xde\x17\x1c\xe5\x74\xdc\x47\xaf\x0d\x1e\xfc\xfd\x89\x52\x3d\x7a\xdf\xb7\x45\x98\x57\x5f\xf5\x70\x4f\x9c\x25\x3b\xd7\x3c\x0e\x62\x37\xa5\xdf\x30\xfe\xbf\x6c\xaf\x62\x17\x51\x11\x5b\x94\xf7\x25\x8a\xf2\x58\x20\xe4\xb8\xa5\xfa\xd2\xe6\xf2\x1d\x35\x99\x85\x3c\x87\xf0\xf7\xd0\x83\x0a\xd0\x41\x45\xda\x51\xc2\x85\x1d\x47\x9f\xe1\x80\xd6\xc8\xdc\xba\x66\x44\xb7\x39\xb6\xf5\x14\x37\xe9\xd0\x1c\xb5\x69\x09\x04\x03\xbe\x42\xb3\x71\x3c\x74\xee\xc0\x52\x9c\x9a\x62\x3b\xed\x2a\x9c\xe6\x3f\x9f\xa8\x3e\x97\xab\x41\x65\x06\x30\x8e\xf8\x29\xec\x49\x40\x2f\x10\x22\xfd\x4d\x85\x56\xbc\xd4\x98\x46\x06\x46\x54\x21\x02\x4f\x23\xb2\xad\x68\x03\xe2\xeb\xc9\xaf\xd7\x84\x22\xb3\x71\x66\x0b\xe4\xbb\x30\x55\xcc\x87\xa7\x8a\x90\xaf\x4f\x3c\x5e\xf8\x0f\xdb\x1c\xf8\x62\xa8\x70\x14\x80\x20\x21\xd4\xe6\xeb\xb6\xfe\xfc\x38\x4d\x85\x66\xca\xf1\xce\x79\x46\xd0\x53\x4a\x26\xd7\x2e\xdb\x6c\x75\xa7\x02\x26\x5c\x55\x22\x53\xdb\xa1\xbe\x00\x23\x07\xc2\x34\x17\x71\x57\xdf\x8d\xc0\x7f\x43\xc3\xf3\xa6\x88\x57\x99\x4d\x02\x4d\x35\x1d\x01\x5f\x7b\xa6\xa7\xa0\x1b\x43\x3b\x8a\x42\x13\xe7\x3b\xab\xbf\xe5\x0a\x25\x79\x48\x52\xad\xa4\x6f\xc7\x17\xde\xd4\xad\xd8\x1f\xf0\x29\x87\x74\x0d\x7c\x5e\x6c\x58\x90\x13\x21\xb8\x66\xc2\x7d\x91\xa8\x6a\x23\x45\x1f\xa5\xcb\xb6\xc6\x6f\x75\x4d\x65\x20\x74\x7f\x42\x99\x8c\x63\x93\x24\x6c\x5a\x10\x7f\xa0\x10\xcf\xd7\xca\x03\xa6\x60\x33\x8b\xc2\xa8\x60\xb7\x9e\xc1\xcb\xfc\xd0\x02\x65\xf6\x59\x65\x00\x75\xa7\x14\x4e\xf9\x6d\x5a\x8e\x32\x13\xb4\x98\x91\x75\x68\xb6\x44\xbf\xfc\x72\x37\xb7\x51\x3e\x4c\xa9\x6c\x2c\x2c\x36\xaa\x3b\x61\xe2\x1b\x00\x4e\x13\x96\x1a\x0e\xc9\x54\xcf\x57\x11\xcd\x20\xb3\x60\xc8\xab\xf3\x79\x70\x86\x18\xb3\x2c\xe9\x62\xdf\x7d\x72\xa1\x91\xbc\x3b\x30\xc7\x30\xd6\x34\xe9\x97\xae\xff\x1a\x8e\xf4\x37\x15\x7b\xed\x37\x15\x89\x64\x5a\x16\x63\x53\x44\xce\x29\x11\x30\xa8\x02\xa9\x6a\x69\xb4\x61\xca\x30\x3c\xe9\xb9\x52\x11\xc2\x4f\xb5\x6c\xb9\x42\xd6\x0c\xd3\x2c\xb7\x43\x6b\x98\x4c\x1a\xc6\xed\x35\x4d\x8f\x7e\x82\xdf\x58\xe0\x71\x2d\xc5\x79\x9b\x87\x66\x0c\x60\x89\x10\x53\x76\x1c\xdf\xdd\x45\xc5\x0c\xb3\x32\x4c\x41\x60\x04\x9b\x7e\x52\xd9\xf7\x93\x2e\xcb\xb0\x94\x66\x36\x1a\x24\xd4\x01\x0c\x1f\x7e\x6a\x4d\x81\x32\x4e\x28\xc0\xe2\x8e\x5e\xad\x69\x86\x9e\x1a\x05\x87\xfb\x7c\x42\x4a\x91\x6d\x73\x5f\xed\xa1\x97\xba\x8b\xe5\x2a\x8d\x96\x13\x23\xaf\x7e\x43\x6a\x91\xd5\x5e\x13\x54\xf2\xe6\x13\xd5\x49\x30\xa5\x49\x31\xe4\xbe\x57\x80\xc5\x80\x05\x42\x29\xe1\xb8\xee\xb9\x78\xe0\x8a\x3a\x79\x19\x86\x36\x5f\x2a\x41\x72\x06\x47\x17\x95\x24\xbe\x6e\xab\xfd\x2f\x9a\x84\x83\x3f\xd4\x7d\x6e\x61\xff\x23\xc4\x3e\xa9\x8e\xa5\x33\xce\xd8\x97\xcf\xe7\xcf\x9b\x8e\xef\x0d\xbf\x56\xeb\x87\x52\x0a\xc4\x23\x3b\x4c\x57\xb6\xd5\x54\x1a\x5d\x4a\xf6\xaf\xff\x85\x9e\xaf\x71\xed\x5a\x53\x76\x06\xf9\x55\x2f\x9b\x22\xdf\xb6\xba\x68\x4d\x92\x83\xb0\x44\x20\x0f\x98\x09\x24\x6b\x2e\x2b\x32\xd2\xc1\xd3\xbd\x8e\x92\x13\xa4\x6f\xc7\x26\xbf\xaf\xec\x6f\x68\x92\xfe\x2a\x70\x5f\x32\x42\xf4\x15\xb0\xb9\x0f\x54\x2d\xfd\xab\xb4\x32\x90\xb2\xbc\xac\xd0\xd8\x79\x38\x34\x0c\x48\x9b\xdb\xa0\xbc\xf2\xcc\xc6\x03\xb5\x07\xc6\x99\xed\x47\x61\x61\xfb\x3b\xbc\x73\x74\x47\x29\x34\x6d\x90\x13\xce\x24\x06\xf5\xf6\x6f\xbc\x9a\xa7\x8e\x11\x7e\xdc\x0b\xaa\xc0\x78\x47\x55\x60\x12\x9b\x2d\xa7\x65\x4e\x2d\x52\x78\x01\x20\xf1\xb1\x68\x77\x61\x9d\xbb\x3e\xd8\x6a\xcf\x63\x75\x7e\x80\x93\x1a\x56\x7d\xab\xc2\x21\xdf\xa3\x8e\x04\xa9\xb5\x6f\x5e\xe5\xfb\xf7\x77\x8d\xd1\xab\x60\x4b\x4f\xad\x82\x2d\x6b\xbe\xbe\x99\x87\x59\xb4\x68\xfb\x3b\xe8\x67\x5c\xff\xf5\x82\xd7\xd9\x6a\x50\xd0\x68\xf9\x07\x29\x25\xa8\x9a\xf0\xba\xe6\x10\xda\xd1\x80\x6c\x56\xd1\x56\x75\xfe\x27\x7d\x24\x48\x05\x7d\x74\x65\xa2\xba\x14\xfe\x16\xf6\xa4\x90\x8c\x78\x97\x47\xf4\x49\x76\x78\x37\xe5\xa2\x0a\x1c\xb9\x8a\x07\x57\xe2\x7e\x50\x13\xdc\x50\xba\x1a\x74\xaa\xf0\x1f\x69\x19\xc3\xa9\x9e\x6c\xa2\x22\x2b\x8b\x21\x7c\x33\xcc\x2b\xf2\x33\x30\x3e\x60\x4a\x11\x27\x8b\x3e\xcf\xb4\x43\x0a\xad\x5f\xb9\x5c\xc3\x6a\x93\x91\xd9\x63\x3e\x41\x32\x7b\xc2\x2d\xa8\x5a\x72\xcb\xbc\xc8\x4c\x1c\x19\x45\x57\x7b\x59\x13\x6f\x5f\x0e\x5c\xe2\x7f\xf6\x19\x0a\x88\x60\xae\x3e\xd2\x52\x82\x9f\xe9\x6d\xfd\x34\x0f\xe6\xaf\x26\x5e\x33\xaa\xb3\xe6\x33\xe5\xdb\x28\x4a\xe3\x56\x7d\xd5\xd2\xcc\xdc\x9e\x08\xf8\xb6\x68\xf1\xdd\xfb\x8a\xf4\x7d\x2b\x56\x29\x9b\x4d\x2c\x4c\x38\xc2\x77\x50\xa6\x81\xd1\xfe\x7f\x90\xcd\x17\x2a\x25\x05\x65\xfe\xc4\x5f\xa2\x74\x3c\x96\xc6\xe3\x89\x62\x61\xf8\xa5\x8a\xff\x9a\x98\xd9\xf9\x97\x0e\x76\x63\x6b\xfa\x22\x6d\xed\xd4\xe2\x45\xcc\xea\x1f\xae\x23\xf8\x12\xbd\x3d\xa7\x91\x9f\xc6\xb1\xc1\x81\x8b\x78\x1b\x1e\x29\x5f\x3b\x56\xc9\x30\x4d\x72\x9b\x2d\x93\xfa\x47\xc7\x77\x01\x77\x7a\xaa\xbd\xb6\xb3\xd6\x02\x44\xac\x4e\x5e\xb6\xcf\x8c\xf0\x83\x7d\xc6\x4b\xa1\xdf\x4d\xba\x06\x7d\xb6\xe6\xff\xe5\xeb\xdd\x82\x24\xb9\xce\x33\xb1\x99\xea\x9e\x19\x00\x83\xcb\x80\x00\x49\xed\x86\xe5\x2d\x39\xe4\x65\x38\x82\x8b\x50\x38\x1c\x1b\x2b\x3f\x6c\xd6\xce\x34\x09\xcd\x84\xd8\x98\xe8\x19\x61\x24\x3c\xe1\x54\xd6\xa9\xaa\x64\x67\x65\x16\xf3\xd2\x3d\x8d\xf0\x8b\x1d\x7e\xb0\x37\xfc\xa0\x50\xd8\x7e\xf2\x83\xed\xb5\x62\xd7\x96\x96\xba\x5f\x28\x4a\xac\x26\x25\x8a\x57\x41\x00\x71\x21\x40\x02\x98\xfb\xfd\xd2\x73\xbf\xcf\xc0\x91\xff\xf7\xff\xe7\xfc\xd9\x99\xb3\x6f\x99\x33\xdd\x5d\x59\x27\xcf\xf9\xaf\xdf\xff\x7d\x5f\x35\x93\x89\x10\x00\x8a\x72\x6d\xf5\x5e\xf8\xba\x6d\x64\x70\x9a\xa5\xa1\xb5\x83\xb9\x2a\xb1\x76\x92\xb6\x2e\x2b\x44\x1f\x5d\x54\x94\x84\x86\x66\xd9\x66\xe1\x38\xb2\xc3\xea\xd7\xf6\xec\xe1\x97\xc3\x10\x26\x44\xfe\xbf\x33\xf3\xb3\x49\xe7\x15\xc8\x67\x64\x26\xae\x59\x28\x33\xef\x1d\x47\xb3\xd4\x24\xfd\x59\xda\xdd\x1d\x47\xa3\x31\x30\xd1\x9e\x82\x87\xce\x22\xb6\xd1\x31\x9c\x39\x11\x25\x95\x47\x34\x79\x91\x96\x20\x5d\xee\x38\x9e\x65\xf0\x62\xf0\x75\x4b\x88\x5a\x2d\x86\xcb\xf0\x59\xa9\x2f\x50\x8b\x79\xd2\xbd\xfe\x38\xa5\x32\x5f\x8d\x69\x91\xbe\xbe\x3c\xe1\xd3\xae\xce\x9a\x47\xe1\x76\x1f\x26\x6f\x41\xfa\x8f\x66\xc4\xdf\xeb\x86\x24\x74\xa6\xf1\x1f\xdb\x7b\xaa\xc2\x7a\x59\x1f\xc5\x13\x8d\x77\xb8\x6f\x5f\x77\x40\xec\x15\xe0\x1f\x42\x89\x08\x3b\x58\x30\xeb\x4a\x74\xf1\x64\x1b\x02\x79\x68\xfa\xa2\x5f\x25\x43\x12\x0a\xf0\xa7\x03\xc2\x49\x64\x26\xd1\x9c\x0f\x33\x1e\x28\xa7\xc4\x5c\x04\x28\x2d\x10\xe5\x8c\xd4\x10\xad\x89\x8b\x71\x68\x44\x19\x5b\x4d\x71\x38\xbd\x84\x06\x02\xeb\xf5\xd7\xbb\xe9\x72\xa7\xca\x1f\xa5\x91\xdc\x71\x42\xd7\xe7\xd4\x78\x02\xe5\x52\xab\x63\x9b\x31\x9c\x0a\x6b\x76\x1e\x15\x46\xd7\xff\xf1\xc3\x0a\xb0\xff\xfc\x53\x8d\xc5\x58\xda\xdd\x9d\xa6\x34\x76\xab\xe6\xf8\x4e\xd3\x47\xf3\x75\xe3\x57\x0e\xed\xef\xda\xa8\xa8\xb6\x68\x75\x16\xdc\x27\x2e\x1c\x64\x17\x7a\x2b\xf0\xba\x7f\x9f\x34\x72\xcd\x6a\x83\x9b\x2c\x27\xb6\xe1\x85\x83\x42\xd7\x8e\x37\x26\xdc\xed\x2f\xb8\x51\xa2\xcc\x4e\xb3\x34\x1d\xba\x42\x31\xaa\x6d\xf7\x15\x93\xc6\xfd\x36\x54\xb3\xe9\xa7\x65\x31\xe7\x69\x43\x6f\x28\x03\xbd\xb5\xd7\x71\xb5\xb2\xa6\xfe\xf2\xd2\xee\x6e\x99\x0c\x6c\x96\x17\x44\x8b\xab\x04\x55\x69\x7d\x60\xfb\x2f\x28\x11\xb5\x23\xaa\xdb\xf0\x96\xaa\xe6\x46\x59\xbe\x53\x8d\x83\xdd\xa5\x40\xc0\x4d\xbc\x57\x1b\x01\x35\xe3\x27\xb1\xf3\xb1\xd9\xff\x89\x36\x93\x4f\xb3\x3c\x3c\xa2\xdf\xa7\x7b\x3e\xcd\x7d\x71\x9d\xde\x3c\x4a\xc8\xf7\xe0\x23\x90\xcb\x40\x73\x53\x66\xbd\xfd\xf9\xda\xd1\x60\x69\x5f\x24\x12\xaf\xd0\x4f\x4f\xbb\x31\x05\x57\x93\x01\xf4\x11\x45\x94\xeb\x0a\x15\xfa\xd5\xca\x15\xa8\xb3\x77\x46\x4f\x99\xf0\x88\x24\x5c\xd6\x47\x2e\x21\x59\x31\x59\x94\x96\x18\xa3\x70\x20\x2c\x4f\x93\x7b\x42\x95\xd5\xa7\x63\x1b\x9b\x64\xbb\x62\x5d\xbb\xae\x4d\x0d\x86\x36\xdd\x84\xf0\xc2\x41\xb9\x86\xdf\x42\xa0\xf3\x91\xa2\x16\xfb\x68\xd3\x08\x73\x65\x3a\xd6\xe6\xbd\xc3\xeb\xa0\x05\xe3\x28\x0f\xaa\xa5\x45\x00\x7c\x54\xa3\x21\x2e\x2a\x54\xd2\x34\xb3\x39\x09\xc1\x54\x8f\xe2\x04\x6d\x97\xf6\x2b\x41\x5b\x0e\x7e\xd2\x7c\x1c\xad\x95\xcb\x91\x22\x2b\x3a\x3a\x53\x3a\x53\x47\x9b\x24\x64\x0b\xdd\xcc\x4e\x4c\x94\xe8\xe6\xde\x46\x6d\x9e\x41\xb3\x4a\x99\x64\x60\xe2\x79\xfa\xea\xd8\x50\x57\x94\x48\x14\x08\x7d\x10\x4c\x7e\x5f\xb7\x30\xdf\x6c\x04\x06\xfb\xf6\x75\x33\x93\x0c\xd2\x09\xc3\xb2\x1c\x67\x86\x03\x45\x6f\x68\x36\xd1\xca\x89\x0e\xca\xcc\x72\xc5\x09\xb6\x02\x1b\xc6\x09\x40\x38\x60\xcd\x39\x95\x48\xac\x44\x76\xd5\xa9\xcb\x09\x43\x2e\x7d\x53\x29\x2e\x78\xbd\xc5\xa9\x09\x97\x61\x97\xb4\xbc\x99\x04\x80\x4a\xe7\xaa\x30\x6b\xb0\x60\x9e\xac\x42\x4d\x42\x2b\x7e\xde\x2a\x47\x71\x23\x64\xc8\x85\xe7\x14\x6f\xd3\xdc\x7a\x0b\x13\xca\x81\x6e\x98\x0e\x10\x7b\xca\xc1\xa2\x95\xe4\x9b\x06\x54\xf3\xe0\x2b\x5e\x61\x1b\xc7\xe0\x9a\x62\x49\xb8\xa6\xe4\x18\x92\x74\x12\x25\x2c\x85\x21\x64\x0f\xf4\x75\xa5\xb6\xf2\xf8\xac\x39\x1b\x19\x0c\xd1\x2a\x65\x36\xcf\x11\xda\x52\x55\xac\x72\xca\xbe\xc7\x7d\xbb\x7a\x94\x43\xc7\xe8\xd7\x4b\x55\x45\x9a\x96\xde\xee\xb1\xe7\x0f\xc1\x2a\xe1\x06\x98\xab\x90\x84\x67\xd1\x10\x92\xe8\x41\x4b\xfe\xa9\x40\x01\x68\x1e\x36\x3c\x39\x35\x7f\x62\x33\x91\x08\x44\xd7\x80\xa4\x38\xd4\x64\xb7\xcf\xd3\x38\x1a\x28\x7a\xf3\x0b\x8a\xb4\xf3\x82\x8a\x0d\xfb\x76\x6c\x56\x6c\x47\xa7\x97\x27\x02\xc5\x42\x76\x42\x3b\xd5\xc3\x61\x99\x31\xb1\xcb\xd2\x6e\x9f\xf5\xb8\x99\xe7\xbb\xad\xac\x62\xd3\xb0\xa3\x26\x85\x2e\xab\x32\xff\x65\x45\xb6\x45\x35\xab\x69\xba\xca\xd2\xce\x2c\x90\xae\xc8\x6a\x5b\x69\xff\x7f\xb9\x3b\x4c\x33\x9e\xb7\x75\x87\xd1\xc9\xf2\x6c\xb4\xa1\x56\x4d\x92\x94\x26\xa6\x16\x05\x6d\x23\xfc\x75\x88\x79\xf1\xb5\x0b\xe8\x46\xa5\xc9\x06\x5c\x78\xd1\x9a\x4f\x52\x1f\xa3\x17\x82\xee\xfa\xdd\xc6\x7e\xaa\x5e\xdc\x57\xcb\x41\x14\x46\x4c\x34\x8f\x1f\xdc\xd0\x32\x8a\x1b\x6a\xb8\x75\xb0\x56\xbd\xe2\x6a\x8f\x88\x38\x64\xc7\x29\xbe\x6c\xb8\x28\xbb\x6f\xe3\x78\xd5\x22\xb2\x70\x2c\x79\x77\x81\xd5\x95\x8a\x44\xf5\x88\xa2\x33\xa6\x5e\x75\x9c\xa6\x2c\x74\x27\x60\x08\x45\xeb\x75\xa2\xf1\xfc\xfb\xf6\x1d\xe8\xda\xc3\x36\x0b\xa3\x1c\x25\x37\xd7\x40\x77\x78\x94\x0d\x0f\x42\x4a\xa2\x89\x71\xa2\x12\x3c\xef\xaf\x88\xe9\x1e\x35\xf6\x28\x89\x34\xc6\xfc\x12\x84\x0f\xb6\x26\x48\xb3\x99\x99\x7a\xe1\x60\x77\x60\x93\x32\x8c\xad\xc9\x5c\x8b\x89\xb9\x23\x10\x79\x08\x91\x44\x13\x67\xb1\xd8\x9d\xa4\xc9\xc0\xac\xe5\xf3\x9e\x7d\xe1\x94\xae\x04\x9d\xc3\xcb\x14\xd2\x55\x7a\xe5\x88\x60\x3f\x55\x9c\x02\xfb\xbf\xb4\x04\x94\x95\xb3\xa0\x0e\xff\x7f\x13\xae\x1a\xe1\xd9\x4f\x1b\xb4\xda\xaf\xee\x5e\x40\xd0\xb4\x9a\x45\x45\x61\x79\x2e\xd8\xa9\x74\xef\xdb\xe7\x54\xba\x6b\xea\x66\x71\xbc\xbd\x0a\x20\xa5\xc3\x4d\x3d\x3b\xdd\xfa\xd6\x23\x27\x48\xa7\x7f\x46\x51\x26\xec\xe8\x16\x54\xd2\xd0\x89\x6c\xe2\xe5\xab\xdc\xc6\x64\xcb\x73\xb5\xd9\x15\x87\x92\xfc\xd6\xcc\xcb\x4d\x5e\xf0\x65\x45\x6b\x32\xc6\x76\x7a\x2e\x1d\x68\x39\xf1\x75\x4d\x25\x95\x2a\x2f\xc8\x58\x65\x84\x5d\xf7\xeb\x4e\xc1\xd6\xc0\x4b\xfc\xd4\x0b\xab\x64\xd1\xd4\x4f\x88\x60\x61\xae\xa9\x52\xef\xb5\xb6\x4e\x4b\x6e\xed\x32\x90\x8c\xf8\xdb\x6f\x6b\x14\xe0\xdb\xae\x61\x57\x26\x51\x91\x96\x19\x0b\x35\xe3\xab\x6e\xe1\x28\x12\xe0\x0d\x94\xbd\x44\xfa\xab\x85\x3e\xb6\x9f\x42\xa5\x00\xef\x50\x0a\xf1\xb5\xca\xa6\x5f\x83\x22\xca\xf3\xd2\x22\xa8\x73\x02\x93\x5e\x6c\xb2\x0d\x7a\x1c\x25\xd3\x92\x75\x7a\x5c\xf9\xdf\xcb\xd5\x61\xa4\x81\x15\x3d\x14\x79\x66\xdf\x92\x16\xd6\x67\xc9\xe7\xc0\x55\x77\x28\x8c\x47\xc2\x76\x15\xcb\xc1\x52\xd0\x81\x46\xec\x23\x5a\x44\xb2\x7c\x14\x7b\x0c\x7b\xe9\x1e\x75\xef\xdd\x44\xaf\x4f\x38\xc1\xd1\x04\xb8\xc0\x93\x3d\xc5\x74\x03\x9e\x19\x9e\x0a\x42\x57\x59\x4d\xac\x4a\xe4\xf1\x4d\x7c\x1f\xfc\x0a\x54\x49\x58\x46\x8f\xd8\x6c\x44\xd5\x49\x4d\x22\xce\x53\xc1\x1b\x6e\xe3\x59\xc0\x77\x45\x22\xb5\xda\xee\x70\x56\x3c\xe2\x8d\x8e\xd9\x75\x35\x62\x35\xc9\x5e\xfa\x0c\x3d\x24\xba\x5a\x73\x3d\x9f\x88\x31\xf6\x40\x58\x00\x15\x21\xf0\xb6\x75\x15\x7e\xbd\x48\x9f\x0f\x6b\x7b\x29\xf0\x75\xa9\xb9\x5d\x60\x78\x45\x39\xe6\x58\xe0\x99\x99\xbf\xf7\x99\x75\xdf\x1b\xfd\xcf\x49\x48\x1d\x36\xf9\x13\x1d\x3d\x6f\xe9\xf9\x49\x0d\xb0\x49\x4a\x01\xa3\x3a\xdd\x08\x7f\xff\xc7\xc0\xab\xda\x9c\xae\xcd\x22\x3f\x44\x1d\x0c\x31\xff\xd5\x36\x78\xf9\x2f\x77\x07\x25\xdc\x23\x6a\xf8\x70\xd7\x7c\x3d\xdb\x9c\x5e\x2f\x2e\x1e\xe8\x9a\x8e\x62\x50\xbb\x14\x78\xd8\xf3\xa5\xd9\x8b\xcd\xa1\x98\xbd\x8b\x9f\xa7\x6f\x83\xba\xf2\xdf\xd0\xd6\x44\xaa\x31\x07\xdb\xe3\xb8\x12\xbf\xe2\xdb\x9a\x5a\xc0\x10\xbd\x4c\xd4\xf7\x6f\xd1\xa7\xb9\xba\xff\x92\xf8\x26\x1e\x60\xc4\x6b\x01\xbb\x2f\x9f\x4e\x80\x08\x85\x41\x83\x5e\x1e\xd0\x29\x3b\x7b\x8a\x65\x68\x2b\x75\x42\xe1\xb4\xb7\xf5\xe8\x7c\x60\x7f\x7f\x87\x36\x3e\x9a\x71\x3f\x41\x18\x86\x54\x6b\x5b\x4f\x9d\xe6\xad\xd8\xc7\x4e\x80\xe1\xcb\x87\xdc\xe4\x49\xf5\x62\x60\x60\x9e\x5c\xaf\x76\xae\x03\x0b\x7f\xe9\x37\x5d\x06\xe7\xbd\x47\xb2\x82\x94\x0a\xd4\xbe\x9d\x9e\xe2\xbd\x44\x23\x1c\xd9\xe1\x79\x95\x93\x9e\x46\x48\x85\xf8\x8b\x58\x52\x41\xe6\xd5\xf1\x45\x56\xf4\x4b\x25\xea\xf6\x29\x62\x62\xf2\x81\xf9\xda\x0e\xfa\xba\x8e\xbe\x52\x71\x59\xd2\xa7\xc0\x13\x32\x77\xa9\xe8\x6e\x2a\x20\xdb\xc5\x40\x75\xe8\x6e\x2b\xf2\x93\x07\x6d\x93\x7d\x2b\x26\xa1\x90\x89\x36\x9c\x7c\x7f\x95\xcd\xb6\x55\xd7\xfa\x76\x98\x66\x00\x53\xe2\x2b\x6f\xc1\xda\x63\x2d\x2e\x2b\x72\x1a\x7c\x3c\x2a\xce\xf3\xeb\x4a\xae\x2e\x33\x03\xfb\x3c\xb1\xd5\x5e\x44\x96\x84\x32\xe5\x35\xc6\xff\x60\x0b\x3e\xc0\x90\x8d\x7b\x2a\x37\xc7\xbb\x4e\x49\x29\x4a\xa8\xc7\x02\x1d\xb1\xcf\x3c\x8e\xe9\x16\x0a\x08\x82\x6f\xf3\x94\x48\xff\x6e\xa6\x3c\xd8\x3f\xd2\x97\x85\x95\x7a\x44\x67\x41\xf4\x58\xab\x4d\x83\xa7\xfa\x43\x18\x29\xc7\x0e\xe3\x9f\x09\x06\x1a\x4b\xfd\x8e\x56\x44\x1c\xad\xcd\xe3\xc8\xb8\x21\x85\xea\x23\x61\x64\xa1\xf9\xc6\x91\x1f\x7d\x3c\xbc\xfd\x5d\xdf\x79\x2b\x8c\xe7\x3a\x17\xbc\x73\xf5\x05\xf8\xba\xf1\x22\xa1\xfd\x5f\x8c\xa9\x77\xb8\x09\x7b\xcc\xd7\x0d\xf6\x91\xa5\xdd\x4b\xdd\xbc\xcc\x0b\x13\x25\xc4\xe4\xab\x22\xe3\x1f\x29\x0a\x91\x1f\xb5\xa6\x37\xc3\xcc\xe6\xa1\xc1\xef\xb4\x62\x58\xe4\xab\xa4\x65\x31\x94\x89\x43\xb8\xab\xb3\x4a\xfe\xee\xac\x8b\x1f\xc6\x26\x1b\x0c\xa2\x7c\xb9\xe3\xf7\xeb\x65\x45\x7f\xdb\x04\x22\x2c\xed\x96\x49\x53\xa5\x69\x76\x52\x05\xe0\xd7\xf1\xd6\x98\x5f\xb5\x51\x8f\xd8\xb7\x8f\xa7\xcd\xe6\x94\x58\xf0\x79\xb6\xd5\xe8\xe2\xf0\x10\xb7\x60\x62\x37\xdb\xea\x83\xaf\x74\xf3\xa9\x35\xcb\x1d\xaf\x02\xf4\x43\xd5\x72\xfc\xa1\xfb\x6e\xcb\x76\xad\x9f\x9a\x6c\x30\x4f\x2b\xe4\xa8\x93\x5c\x7f\xf9\xad\x99\x87\x2e\x6f\x51\x1c\xfb\x97\x1b\x11\xf8\x57\x58\x10\xd0\x93\x24\x7c\x30\x53\x04\xe9\x17\x01\x03\xc4\xff\xdc\x50\xd8\xf7\x7e\x5a\x14\xb1\x2b\xd8\xbb\xec\xd6\xcf\xee\x6d\x6c\xf6\x14\xfb\x97\xf6\x77\xf7\xec\x79\x92\xd6\x86\xd1\x83\x81\x2f\xf5\xcd\xe3\xc0\x0b\xb5\x26\xf9\x53\x37\x4a\x58\x1d\x67\x44\x8e\x77\x94\x36\xe2\x45\x45\xde\xfe\x90\x4e\x23\x5c\xe8\x5d\x8a\x06\x64\x60\xa6\x19\xef\xee\xef\xf6\xa3\x41\x1d\xa5\xe1\xe9\x74\x03\xcd\x41\xa0\x80\x00\x3f\x72\xb1\xa3\x9d\x50\x86\xca\x99\x38\x96\xe9\x5d\xf8\x7c\xbe\x51\x45\x9c\xa4\x24\x65\xce\x8e\x9a\x95\x01\xa1\x29\x5f\xcf\xfc\xa4\x22\x51\x06\x32\xbb\xaa\x14\x1d\x74\x05\x42\xf5\xee\xc2\x28\x0b\xcb\xd8\x48\xfc\x8a\x0d\x7d\x2d\xe8\x68\xd2\x37\xd7\x86\xfc\xde\xec\x69\x05\x1e\xff\xa5\x79\x5f\x03\xb8\x0e\xbb\x8e\x6a\x18\xc7\x66\x30\x68\x40\x69\x62\x99\x8f\xba\xaa\x60\x14\xc7\xd4\x34\x2c\x2c\x6f\x3c\xd6\x16\x45\x28\x04\x9b\x75\x3f\x50\x09\x35\x58\xd9\x60\x3c\xeb\x84\xc8\xab\x36\x7b\xa1\x7a\x44\xbc\x81\x07\x8a\xdd\xee\xf6\xcc\x13\xfb\x01\xbd\xc4\xda\x46\x64\x25\x11\xbb\xdd\x83\x0f\xc3\x2e\xba\x45\xf0\x50\x6c\x9c\xf7\x67\x4a\x81\xe7\x43\x0a\x99\xe0\xd8\x6f\xc1\xb1\x13\xfc\xf9\x97\x76\xa9\x72\xed\x8f\x60\xec\xb9\x8e\xbb\xae\x3c\xc7\x49\xad\xad\x7e\x77\xa6\xa5\xc9\x01\x9b\x74\x50\x87\x43\x75\x26\xc5\x1a\x3f\xd6\x7e\xb6\x96\x7f\xa1\xca\xc2\x2b\xb1\xc9\x23\x15\x8f\x31\x15\x1d\xdf\xa8\x68\x3e\xed\x93\x44\x45\x47\xc9\xfd\x9c\xd5\x76\xff\xac\x2b\xd8\xd9\xc3\x61\x54\xd8\x89\x4d\x18\x4e\x29\x54\xb2\x7e\xec\x09\xea\xd9\x6e\xaa\xa9\xfa\x6a\xcc\x16\xa0\xbc\xcc\x6f\x2c\xfe\x16\x3d\x57\x4d\x4b\x9a\x6f\xd4\xe1\x4f\xd2\x15\x52\x9c\xc5\x67\x39\xd4\xa5\x57\x88\x3e\x4a\x27\x5b\x70\x0b\x1d\x27\x70\x78\xbc\xad\xcb\x61\x42\x33\xb0\x13\x0b\xa1\x78\x29\x21\x77\x94\xb0\xab\x74\xcc\x42\x2a\xc4\xe8\xd8\x97\x47\xaa\x10\x89\x81\x4b\x44\x62\xa0\x16\x45\xa9\x7e\x66\x3a\xb5\x9e\x9d\x1f\x1c\x38\xd9\x60\x6c\xda\xbb\xd8\xcd\x4c\xb8\x6c\x0b\x6b\x3d\xfc\x1e\x16\x75\xdb\xba\xb7\xae\xdb\x7a\x2d\x8c\x4d\x79\xba\x62\x09\x56\x54\xac\xa9\x5c\x14\xf4\xc7\x7c\xad\x0e\x7e\x58\x65\xa2\x76\x7b\xb5\xed\x05\x9d\xd2\x71\xf3\x87\x0f\xb5\xfa\x1e\x08\x3d\x90\xfe\xde\xc1\xbe\x73\x63\x66\x2e\x5a\x9c\xeb\xf9\x0d\xb4\x6a\x58\xc8\xca\x15\xba\x8f\xd0\xa1\xe0\xeb\x16\x92\x95\x81\x8d\xa3\xd0\x14\xe8\x18\x22\x92\x45\xd2\x2d\x3c\x59\x55\x10\x23\x86\xf9\x05\x2d\x31\x37\x8d\x23\x93\x70\x19\x0e\x58\x48\xb8\x5b\xbe\x56\x20\x9b\x89\x35\xf1\xda\x9c\xaf\xc1\x50\x4c\xf7\xe8\x22\x1d\x7c\x98\xf9\xe3\x0a\xc6\x15\x25\xe1\x4b\x4f\xe3\xa5\x63\x27\x3f\x4d\x5c\xe1\xa2\x43\x44\x27\x16\x66\xe1\x86\xc6\x26\xfe\xb3\x5e\x65\x5f\x5c\x35\xcc\x95\x46\x9e\xa1\x51\x43\x04\x90\xa7\xb4\x4a\xf4\x8e\xf5\x6a\x65\x1c\x3f\xe8\x26\xfe\x30\x07\x3a\xa9\x4e\xbe\x20\x53\xbc\xca\x61\x84\x1e\x29\x7c\xc5\x09\x4d\xfc\xdf\x1c\xeb\x20\xe4\x2a\x49\x74\x4b\xa9\x4c\x40\x61\x3e\x6d\x7e\xd0\x36\xe2\x1f\xc6\x86\xc7\x34\x01\x1d\xe9\xac\x2b\x1c\x49\xa7\xd7\xc6\x4d\xde\xcf\xd2\xfc\x25\xae\xec\xf2\xe0\x21\xac\x92\x4c\x21\xb6\x34\x57\xcb\x71\xc7\xcf\x5d\x6c\xa1\x91\x4a\xbe\xee\x79\xe0\x75\x11\x15\x63\x91\x48\x93\xe2\xa7\xaa\x69\xde\x6d\x44\x57\xf4\xad\x57\x2c\xeb\x40\xe1\xe3\xcf\x2a\x21\x25\xaf\x19\x39\xcd\xd2\x21\xce\x29\x30\x71\x9a\xb5\xf3\x94\x92\xb0\x0d\x63\x62\xf1\x2d\x6a\xc4\x20\xaa\x60\x02\xa8\x9a\xf4\xf7\x9f\x57\x98\xf1\x32\xa9\x62\xd4\xed\x5e\xc7\x11\xc3\xfb\x42\xf1\xa2\x88\x41\xcf\xa9\x06\x2f\xf8\x92\x61\x6b\xde\xd3\xa4\xb7\x6d\xe2\x27\x07\xba\xd5\x97\xa5\xa6\x80\x83\x26\x78\xe6\x07\x6e\x9e\x89\x20\x7b\xf5\x20\xc8\x52\xa1\xc6\x86\x73\xb7\x9d\x0a\x37\x38\xf9\x9f\xaa\x98\x62\xd5\x56\xdf\x9b\x89\x23\xe1\x34\xbf\x39\xf3\x5e\x1d\x60\xf1\x1a\xd9\xa0\x7c\x68\x1b\xe5\x7a\x66\xab\x97\xc2\xd1\x8c\x24\x93\xf4\x5b\x3e\x9b\x94\x63\x9b\xe7\x91\x11\xc2\x8c\x1a\x0c\x52\x7a\x6f\x6d\x19\x01\x05\x2b\x13\xa6\xbd\x73\xd8\xc1\x63\x2a\xf3\x3c\xa6\xd2\xe3\x97\x0e\xbc\xb4\x4d\xa1\x9b\xae\xe1\x85\xea\x12\x29\x5c\xd8\x8e\x9e\xef\x9d\xbf\x4f\xd1\x0e\x5e\xd8\xc7\x8d\x80\x6f\xef\x62\xd7\xe4\x91\x51\xe3\xcd\xdf\x0c\x54\x90\xf5\xcd\x9a\x15\x8b\x63\x6b\x46\xa5\xe5\x72\xbf\x30\x4c\x76\x94\x9e\x72\xf5\x08\x32\x61\x2d\x2b\x13\x4d\x26\x65\x12\xb1\xb1\xc7\x71\x7c\x4b\xcd\xfc\xbf\xe5\xb6\xf6\x57\x4d\x14\xcf\xd5\x39\x3a\x9c\x7b\x40\xf7\x41\xe2\xaf\xa6\xc4\xe0\x50\xe1\xce\x79\x8c\xab\xa7\x14\x95\xb7\xae\xbf\xa8\xe5\x3c\x8a\xcc\x84\x90\x09\xab\x7e\xde\x49\x62\x39\x3a\xe4\xcb\x6d\x80\x9a\x70\x9c\x4e\xa7\x6b\x0a\x8d\x04\x8e\x7b\xc1\xbc\xf9\xb6\x6e\x6c\x4d\x96\x44\xc9\xe8\x09\x5a\x48\x79\x8b\x30\x33\xee\xfd\x3a\x85\x92\x87\x33\x45\x41\xf3\x10\x29\xb8\xf4\x7f\xbd\x56\xe6\x3d\x3a\x83\xa2\x24\x5d\x79\x40\x21\x48\xfc\x9c\xa2\xba\x4d\x87\x51\x61\xfa\x51\x1c\x15\x6b\xe8\xe5\xf2\xb4\x37\xe5\xef\x82\x4a\xf7\xa1\x15\x60\x85\xfc\xef\x6a\x9b\x8d\xcb\x6c\xae\xfa\x08\x87\xc0\x75\x9b\xf1\xe1\x4c\x21\x0b\xb6\x2b\x70\xf6\xaa\x8d\xe2\x18\xe1\x39\xd3\xca\x23\xd4\x15\x8e\x79\x0f\xc3\xab\x56\x7e\x25\xca\x0b\x0e\xfb\x45\xc8\xa4\xa6\x70\xf2\xa2\x6a\x91\xa7\xb9\x0d\xcb\xea\x65\xcd\x29\xe1\x00\x0e\x3f\xe1\xf2\xde\x56\x44\x98\x4d\xa2\xaa\xa5\xdd\xdd\xc2\x4c\x25\xbb\xc7\x97\xfd\x6b\xda\x4d\x7c\xdd\x52\x5f\x7e\xad\x5b\x98\x08\x2d\x29\x2e\xf2\xd0\xaa\x49\xc1\x67\x73\x60\xb0\x77\xb1\x1b\x8e\xed\xf2\x38\x5d\x99\xf3\x88\x19\x24\x4e\x78\x93\x9f\x60\xd9\x30\x3b\x79\x3d\x68\x2a\xa7\x75\xa7\x65\xb1\x5d\x45\xe7\xc7\x66\x3e\x10\x41\x5c\x03\xcf\xb1\x05\x80\x3f\xbc\x7b\x9e\xda\xe4\xff\x41\x39\x4f\xb8\xbe\xfc\xd8\x63\x6c\xc2\x65\xe4\xec\x70\xf7\xd7\x1a\xcc\x37\x5c\xb6\x53\x83\x43\xc5\x6a\x04\x8e\xeb\x85\x83\xae\x89\x4c\x1b\x53\xda\xcb\x7e\x64\x26\x2b\x07\xe0\x19\x71\x55\x59\xc7\xfb\x77\x4c\x8d\x1b\x94\x49\x34\xac\x42\x27\x72\xea\x7b\xf6\x70\xdd\xf6\xca\xcc\x8b\x12\x5c\x69\x23\x2b\x1a\x94\x6c\x37\x10\x54\xa1\x7a\xc4\xd7\x33\xe5\xec\x32\x6b\x0a\xd2\xb2\x75\x9d\xd3\x6b\x81\xdf\xdb\x88\x70\xa4\x64\x41\x6b\x21\xba\xb2\x6d\x9a\xc8\x76\xc5\x26\x73\x4a\x5a\xfd\x5b\xd5\x31\x79\x84\xd2\x91\x50\x25\x3e\xef\xe0\xba\x43\x33\x31\xc4\xb5\xe6\xe3\xeb\x0b\x8a\x0a\xa1\xc9\x60\xb7\x6f\x5f\xd7\x0c\x56\xa2\x3c\x65\xda\x64\x3c\x23\x08\x04\xf8\xda\xb5\x57\xa7\x69\x15\x64\x3f\xb6\x79\xfb\xb4\x4b\x70\x8a\xcc\x10\xc5\xb5\xcc\xd7\x55\x3f\x85\x22\xea\x0b\xbd\x1a\x1a\xb7\xda\x3e\x22\xce\x40\x79\xa2\xb4\xaf\x3c\x11\xfa\x99\x46\xe4\x5b\x79\xec\x2c\x0a\xc7\x0c\xea\x60\xe1\x42\x44\x97\xa2\x62\xd8\x26\x39\x9f\xd9\xa2\xcc\x18\x81\x22\xd1\x40\x6d\x7c\xc7\x83\x34\x06\x69\x62\x9f\xa4\xda\x8a\x30\x05\xeb\x81\x28\xc5\xc7\x0f\x68\xb9\x08\x54\x77\x1c\xe1\xdc\x7d\xa4\xbd\x4e\xb0\xc0\x4d\x7b\x89\x8e\x9c\xe3\x26\xae\x52\x5a\xe1\x15\x7d\x46\x25\x1a\x5c\x63\x45\x4e\x7c\x9c\x0c\x2e\x82\xdc\x0b\xaa\x23\x0f\xa8\x31\x92\xeb\x2d\xeb\x9f\x6b\x51\x5a\x7d\x75\xf7\xfe\xed\xbe\xe2\x08\x1c\x8d\xb0\xf4\x92\x19\x70\x28\x94\x57\x5d\x16\xc8\x05\x7f\xc1\xa4\x90\xed\x16\xb8\xee\x0b\xea\x11\x93\x22\x4a\xca\x28\x19\x6d\xeb\x38\x99\xe1\x6d\x68\x2e\xc1\xd9\xdf\x52\x8a\x10\x5b\xd6\x3d\x72\x8d\xc1\x42\xc8\xea\x6f\x2a\x1e\x9a\x41\x94\x13\x21\x02\x6d\x1e\xc7\xee\xb0\x70\xd0\x55\x23\xe9\x8f\x3b\x7e\xbd\x6a\x85\x19\x8c\x13\x68\x60\x4e\xb5\x56\x52\xcb\x54\xf3\x5a\x13\x9b\xad\x6d\xf3\x9d\x5b\x9e\xf5\xc7\xec\xe9\x1d\xd4\x16\x90\xfa\x76\xe8\x59\xf9\x9a\x18\x9d\x25\xc9\xf6\xa9\x4e\xf2\x52\xf8\x12\x9d\x04\x37\xdd\xa9\x46\x3d\x1b\x02\x5a\xa4\x61\x19\x25\x79\x61\x62\xc7\x9b\xd5\x26\xf3\xe5\x37\x40\x31\x36\xc9\x2f\x50\x8d\x9c\xfb\x24\xc2\x83\x58\xbd\x27\xa4\x2b\xf3\xf4\x68\x22\xa7\x4d\xbb\x55\xea\x12\x9d\x43\xfb\xbd\xba\x4a\x65\x3b\x44\x1d\xb2\x5a\x4c\x27\xce\xb7\x67\xc1\xc3\x9e\xf7\xec\xe1\xc2\xca\x19\x20\x62\x1c\x1a\x74\x69\xf7\x01\x5f\xfb\xa8\xd6\x48\xa6\xff\xb0\x8f\x45\xc7\x84\x0e\x12\xaa\x14\xe7\x02\x35\xb4\xc8\x63\x98\xb4\x7e\x7f\xf3\x3c\xf8\xb5\xc4\x39\x52\x89\x1e\x5e\xf6\x47\x74\x44\x58\x36\x11\x47\x99\x69\x4d\x68\x7d\x58\xa8\x94\x7a\x4c\xa8\xd8\xa0\xab\x8a\x67\xf1\xc2\xae\x99\xcd\xd3\xb8\x2c\x9c\x98\x91\x84\x68\x2a\x0c\x6e\xf0\xdc\x2d\x2e\x56\x3e\xf6\x33\x4a\x16\xf9\xef\x70\xda\xf1\xa1\x67\x94\xcc\xd7\xb9\xa0\x4a\x67\x91\x62\x3c\x08\x3c\x61\xf6\xef\xcd\xfc\xc8\xf6\x03\x14\x57\x50\x15\xbb\xaa\x61\x3c\x81\x06\x8b\xcc\x94\x13\xbc\xa8\xa7\x60\x51\x0a\xc3\x0c\xf3\x19\x3e\x89\xc8\x99\xdf\x85\xbd\x44\x38\x7a\x4f\xcb\x02\x9d\x40\x11\x56\x60\x12\xd5\x2a\x09\xb9\x36\xbd\x7d\xd4\x27\x8e\xd4\xca\x7a\x13\x4c\x0e\x2d\x78\xab\xe2\x86\xd4\xfe\xdf\x40\xe3\xbe\x7d\x89\x22\xb3\xc3\x32\x19\xe4\x10\x8f\x40\xe5\xed\x03\x35\xee\xfa\x73\x38\x33\xfe\x0f\x7a\x3f\xc2\x77\xe5\x55\x9a\xe2\x74\xf5\x29\x7a\x26\x47\x50\xea\x94\x43\xaf\x6a\xa2\xf6\x9f\xd0\xf3\xe0\xc1\xe7\x10\x3c\x63\x7d\xe6\xd5\xac\x31\xc6\xb1\x10\x84\x7d\x40\x27\xc3\xcd\x02\x3a\x13\xf9\x3b\x78\x2a\x21\x3c\x94\xd6\xc4\x34\x4a\x13\x6b\x33\x2e\x51\x09\x4e\xd2\x67\xa1\xfc\x4e\xe0\xb5\x1e\x28\x5c\x5e\x56\x4e\x4c\xb8\xdc\xf1\xa0\xbd\x6f\xcc\x94\x1d\xfd\x86\xe7\xe6\xc8\xd2\x74\x39\x5e\x43\xd5\x00\x16\xe7\x87\xf8\x49\xbe\x71\xbc\x71\x93\x74\xc5\x01\x56\x61\x45\x51\xf5\xc4\x29\xdf\xb9\xae\xc2\x85\xcd\x6c\xac\x7b\x16\xba\xfb\xf6\x3d\xed\x57\xfa\x4f\x66\x4a\xc6\xe5\x34\x75\x5e\x85\x0c\x8d\xf6\x37\x4a\x23\x97\x14\xd7\xfb\x05\x35\xbc\xce\x6d\x45\x9e\x92\x50\x26\xf5\x94\x16\x49\x7b\x53\xd3\xd3\xde\xc4\x51\x81\x29\xbf\x1f\xa8\xba\xe0\x7e\xa5\xb6\x6c\xd3\x30\x2c\xa7\x11\x2c\xdf\x82\x93\x88\xa3\x67\x15\x21\x39\x35\xd8\x65\xe3\x38\x07\x0e\x1c\x11\xde\xd5\x99\x32\x98\xe7\x55\xb4\x7c\x0b\x1f\x88\x53\x7b\x4d\x71\xce\xd9\xaf\x95\x51\x11\x59\x62\xa5\xf1\xa2\x30\xea\x2c\xfc\x74\xa6\x98\xeb\x7e\xda\xa4\xe8\xad\x5c\x67\x2c\x2a\xcf\x8c\xe3\x08\xfc\x00\xc0\xe9\x16\xc5\xc7\xfd\x9b\x44\x8d\xe0\xeb\x30\x5e\xc3\xd7\x2d\x75\x9f\x03\x68\x87\xce\xfb\x88\xfe\x46\xe0\x27\xcc\x2e\xeb\x29\x9a\xbf\xd5\xf5\xfa\x23\x6e\x27\x67\x76\x25\xb2\xab\x7c\x2a\x05\x64\x41\x5f\x15\x61\xf5\x7d\xcd\x37\xfb\x5e\xa0\xe1\xcf\x6d\x8f\x13\x66\x76\x5a\x74\x6a\x7c\x73\x35\x26\xba\x9d\x6e\x36\xc3\x9a\x8e\xae\xf5\x5d\xd2\x94\x81\x97\xdc\xee\x8e\x4d\x39\xb0\x59\x47\x4f\x5d\x5e\xd2\xd4\xa6\x97\x82\xa7\x15\xba\x71\xb0\xdd\xcb\xae\x31\x3a\x43\x1c\xac\x9f\x2b\xbc\x8c\x38\x00\x3d\x93\xbf\x50\xe8\x9c\xbf\xa0\x8d\xcd\xbf\xad\x30\xa9\xa1\x99\x46\x45\x1a\xf3\x43\x70\xa7\x1e\xe1\x8f\xb4\xed\xdb\x58\x3f\x26\x65\x38\x46\xe8\x2d\x8a\xe9\x1e\xea\xf8\x3d\xc5\x1a\x74\x5a\x91\x49\x53\x53\x70\xde\xb7\x8d\x2e\x04\xb5\x91\x47\x8f\x64\xff\x47\xad\x89\xf3\x8f\x6e\xb9\xfa\x65\x36\xb2\xd9\xb6\xea\x83\x80\x6a\xe6\xc0\x18\x87\xea\x2d\x55\x6c\x7f\x4b\x71\xd1\x71\xf8\x01\x90\xd1\xa3\x36\xba\xc6\xa9\xc9\x96\xb9\x07\x85\x45\x9c\x63\x0c\x15\x8a\x59\xcf\x00\xdc\x80\xef\x79\xad\x8a\x9a\x9c\xd2\x6b\x15\x89\x2a\xde\xc0\x6f\x05\xaa\xde\x57\x9f\xe7\xf6\xb1\xe8\xb7\x54\xa4\x94\x97\x5c\xd5\x76\x92\x91\x0e\x6c\xb0\xd1\xa6\x7f\x37\x8c\xd3\x55\xaa\x13\xc2\x28\xfd\x19\xd6\x09\x7d\xbe\xab\x38\xf0\x4c\xca\xaf\xaa\x1c\xc3\x2c\xb2\xc9\x20\x46\x7c\x27\x5c\x62\xf4\xa0\x58\xa0\xe3\x30\x21\x32\xf5\xeb\x6b\x7d\xd7\x35\x71\xd1\x49\x45\xd3\x97\x85\xff\xf2\xbf\xfe\x57\xbf\x32\x47\xc1\x90\xf8\x2a\xfa\x1b\x48\x50\x19\xf5\xc0\x34\x2d\xaa\xe4\x67\x92\x22\xfa\x5a\x09\xc3\xc1\xef\x43\x01\xc0\x1e\x35\xd2\x75\x81\x3f\xc7\x66\xee\xf1\x13\x07\x7a\x2e\xa1\x31\xcb\xb9\xd0\xed\x47\x3c\xa6\x2d\x12\x50\xaa\x92\x04\x26\x36\xac\x77\xa7\xb7\x33\xf2\x6c\xab\xbf\xb8\xf5\x97\x5d\x11\x80\x22\x3b\x44\x56\x8f\x28\x30\x54\x83\x36\xfb\x39\x66\xe9\x00\x60\x85\x1a\xd6\x76\xd0\xb3\xc0\xc4\xbc\x4d\x07\x83\xbb\x74\xf4\x79\x68\x54\x6e\xa5\x79\x3e\xd9\x12\xb4\x94\xa2\xdd\x43\xe1\x2a\x76\x22\x93\x0e\xc0\x43\xdf\x27\x16\x3e\xd7\x7e\xfd\xf2\x21\x86\xc3\xfd\x3c\xd0\x63\xc0\xd0\x03\x90\x16\x0c\x22\x51\x26\x7d\x9b\xa9\x85\xc3\x30\x32\xb2\x33\x54\x1a\xf0\xf2\x18\x58\xe3\x38\x6b\x7e\xe3\xd7\x38\xda\x64\x36\x7d\x99\xf9\xa1\x13\xf2\xe8\x81\x22\xe4\xb9\x85\xe8\xce\x31\x4d\x1d\x72\x8d\xce\x8b\x14\x5b\xf3\xc3\x52\x08\xc6\x25\x49\x55\xc9\xb0\xc9\xa0\x14\xc9\x52\xa1\x78\xec\x78\xba\xc7\xb6\x9a\xc3\x28\x92\xa6\xa2\xf2\x9a\xfb\xdd\x59\x52\x05\xd1\x2c\x2a\xa2\x30\xca\x27\x50\xb8\xe2\xb2\x4f\xa0\x4b\x40\x9b\x82\x87\x2f\x1f\xea\xbe\xba\xbb\x53\x2d\x31\x8e\x02\x30\xe7\x7c\xdd\x42\x5d\xb2\xd0\x1d\x46\x59\x5e\xd0\x00\x51\x8d\xb5\x56\x60\xbc\xd5\x26\x90\xda\x7f\x8d\x97\xa0\xa5\xc1\xd0\xcf\xa2\x64\xc4\xf0\x0b\x58\xd4\x4f\x03\xc5\x66\xac\x89\xeb\x37\x1c\xc3\x4b\xc1\x43\x0e\xad\x23\x0b\x4a\x09\xd1\x14\xac\x37\x83\xb1\x8d\x7f\xa0\x3f\x86\xdd\x32\xbf\xee\x65\x87\x76\xbe\x80\x9a\x95\xcb\x47\xaa\x95\x45\x9e\x75\x1f\xc6\x43\xb0\x6d\xf4\x41\xfc\xc7\x28\x3e\x47\xb5\xf8\xa4\x0a\x6c\x33\x0b\xb5\x58\xce\x14\xf0\x2b\x92\x36\x88\x75\xcf\xa3\x51\x62\x59\x7d\x0d\x5b\xf1\xb8\xae\x5b\xb0\x85\x41\x41\xed\x56\x4d\x43\xb1\x49\x8d\xb3\xd8\xcd\xed\x24\x4a\x8c\x4c\x30\xf2\x9f\x08\x14\x33\x51\xf3\xd7\xf6\xed\x5b\xaa\x5c\x54\x18\x0d\xa3\xf0\xb1\x10\xd7\x16\xb4\xcc\xa8\x0a\x52\xf8\x83\x18\x8b\xa7\x94\x35\xbf\xa3\xca\x02\x66\x34\xca\x6c\x9e\xd3\xa8\xac\xc3\xb5\xa3\xbd\x28\x21\xc4\x7f\xf1\x18\x13\x58\x64\x26\xc9\x43\x93\x98\x81\x99\xf3\x4b\xc9\xd1\x02\x2c\x34\x24\x4d\x45\x33\x5c\x8d\xf2\x97\x93\x89\xe1\x12\x16\xa2\xdf\xf3\x8a\x03\xf3\xbc\x12\x7a\x32\x51\xd6\x4f\xb3\x04\x06\x5a\xcc\x81\x2f\x3c\xde\x69\x13\x09\x9d\xa4\x45\x9a\xa5\xb1\xc4\x3b\x8a\x6a\xda\xf1\x4e\xb7\xaa\x68\xc4\x96\x87\x57\xdd\xb9\xfa\x5b\x84\x2e\x7c\xd3\x26\xef\x9c\xdb\x94\x39\x20\x5a\x77\x79\x0b\x90\xba\x9f\x1e\x96\x57\xe3\x08\x18\x3d\x19\xa3\xc2\xa2\x54\x2f\xb1\x34\x71\xbc\xd6\x51\xf4\x87\x17\x61\x0b\xa5\xb2\xec\x4f\x51\xbf\xe4\x20\x1c\x99\xcd\x75\xd5\x5b\x05\x3f\x87\xc3\xc7\x79\x1b\x70\x36\x78\x56\xf1\xbf\x44\x69\xb2\x93\x0e\xb8\xee\x95\xc3\xd0\x7e\x32\xf3\x34\xd9\x78\x53\x28\x8f\x31\x78\x03\x3f\xf4\x20\x20\x97\xc1\xbf\xa1\xc5\xf1\xe6\xd7\x55\x5c\x3c\x4f\xf3\x81\x82\x8e\x53\xd9\xf7\xbc\x02\x86\xdf\xd3\x05\xda\x34\x09\xd3\x90\xa5\xd8\x50\x19\xe1\xc1\x3d\xbe\x51\x81\x45\x99\xe4\x29\xc8\xf3\x3c\x7c\xeb\x2e\xa7\xe5\x7c\xd7\xf2\x4e\xf6\x77\xfb\x69\x02\x3b\x8f\x79\xbc\x31\xfe\x3e\xdf\xb4\xc2\xe1\xa7\x71\x54\xec\xa0\x6f\x8f\x7d\xcf\x03\x82\x28\x00\xa2\xbb\xa3\x44\x7a\x5f\x73\x2e\x4e\xb5\xbf\x6e\x90\xbf\xe3\x86\xb9\x22\xb1\xb9\xd3\x88\x3a\xaa\xf0\xb6\x6f\x47\x91\xd0\xbb\x0a\x48\x45\x4d\xf0\x9f\x6d\x04\x67\xfb\x5f\x39\xd0\x4d\x57\x93\x6d\xb4\xf6\x2e\xe8\xaf\x1c\x39\xfc\xf5\x86\x22\x03\xd8\x50\xb3\xa1\x97\x95\x93\x7b\x56\x11\x54\x95\x49\x98\x4e\x26\x69\x42\xf8\x02\x04\xb5\xa0\xd4\xc0\xaf\x5d\x41\xc4\x20\xac\x9e\xba\x0e\x91\x97\x71\x91\x3f\x4d\xde\x17\xbf\xc7\x64\xed\x4c\x56\x57\x13\xc5\xee\x38\x92\xa8\xe7\x7a\x9e\xf7\xfd\x24\x8a\x59\x8a\x53\x5a\x86\x6f\xc1\xa8\x8c\x42\xf4\x6d\x04\xdf\xa2\x8b\x42\xef\xd0\x61\xf0\x5d\xad\xe0\x16\x36\xad\xe0\x9d\x5b\xbc\x5d\x5c\x1e\x2e\xb9\x28\x8f\xa8\x0c\x6a\xe2\x7c\xed\x27\x2b\xa3\x70\xd9\x16\x22\x25\xe9\xc8\x91\x3d\xe2\xe8\x92\xf2\x72\xd3\x2c\x9d\xf7\x61\xf5\x36\x2a\x19\x20\x2e\xd9\x45\xe8\x75\x84\x63\x8c\x5a\xc6\x2b\xbd\x38\x7b\x51\x69\x13\x4f\xa6\x69\x66\xb2\x88\xcb\xe8\x78\x9f\xdf\xa6\x8a\x0a\x5f\x3b\x1c\x67\x6c\xcd\xc0\x4d\xca\x4b\xda\xa6\x73\xb8\x16\x2d\x8d\x03\xdd\x28\x59\xa9\x8e\x4e\xbd\xe0\xde\x71\x3a\x96\x97\x1b\xce\xa9\x5a\x28\x1b\xe5\x65\x46\x34\xfa\xce\x39\x01\xfc\xcb\xd7\xad\x9f\xa4\xc0\x57\xfb\x3d\x78\x66\xc9\x83\x67\xda\x8c\x73\x98\x9a\xdc\x11\x92\xe1\xfc\xfc\x15\x5e\x24\xdf\x28\x11\xd9\x69\x9a\x47\x54\x55\xdc\xee\x8b\x73\x50\x68\x45\x9d\xf9\xb6\x56\x78\xe5\xd8\x5d\x1a\xca\xf4\x50\x5a\x36\x09\xd6\xf0\x81\xca\x4f\x47\x99\x35\x85\xcd\xe6\xfc\x5b\xff\xae\x66\xb8\x0b\xbc\xde\x6a\x13\x0a\xbb\x77\xb1\x6b\x32\xd3\x8f\xc0\x7d\x87\x83\xc8\x45\x57\xbe\x51\x05\xf6\x61\x34\x1a\x17\x51\x32\xda\x46\x4f\x28\xdc\xab\x5e\x9b\xe1\x26\xf5\x66\xf9\x5a\x9d\xe6\x13\x2a\x8e\x3c\xaa\xda\xa7\xfd\xcc\xbc\x41\x5a\x72\x1d\x9f\xe2\xa0\xc7\xc0\xd7\xae\x77\x64\x27\xfd\x6c\x2d\xad\x49\xa4\xd2\x92\x89\x46\xaa\x66\xcd\x8d\x6c\xb1\xb3\x7a\x26\xd8\x57\xa6\x70\x45\x46\x71\x94\x52\x02\xf6\x27\x41\x9d\x27\xd6\x71\xa6\x7e\x0a\x27\xab\x7b\x80\x82\x0c\xad\x76\x37\xa2\x87\xef\x6a\x5d\xe3\xef\x05\x2a\xdc\x3b\x39\x53\xb6\xfa\x7f\x6a\x1c\xe7\x2a\x10\x0e\xe3\x35\x4c\xcf\xfa\xe2\xd2\xe6\x1f\xfb\x62\x77\x92\x12\x03\x28\xe0\x68\x48\xb4\x3e\x56\x02\x87\x1f\xb7\x19\x8a\x61\x5c\x0e\x87\xd8\xfc\xae\xc0\xba\xe8\x6b\xaa\x9b\x21\x40\x7b\x17\xbb\xc5\xca\x9c\x87\xd9\xef\xec\x79\xf4\xd4\x65\x4d\x40\x3f\xb7\xbe\xab\xc6\x1e\x96\xe6\x00\xf7\xe0\xd7\x1e\xce\xfc\x9f\x78\xa8\x64\xf8\x06\xff\xbc\x0f\xf7\x80\xaa\xd7\x79\xac\x12\xdf\xb4\x81\xb2\xbf\x56\xa6\xee\x48\x21\xf4\xc2\x6e\xe0\x6b\x65\xc3\x13\x5b\xac\xa6\xd9\xf2\x93\x1d\x3f\x8a\x4b\xc5\x75\x57\xc3\x76\x50\xee\x23\xe4\x12\xdc\xd0\x87\x47\xd1\x1e\x0f\xd4\x4c\xf7\xac\xca\x34\xf9\x87\x66\xba\x1a\x8e\x67\x46\x89\xf0\x91\x8a\x18\xc3\xb2\x48\xcb\x82\x65\x06\xb1\x3d\x6a\x28\xe2\x8d\x16\xe1\xcb\x6e\x66\x57\x49\xeb\x4b\xb3\x6c\xd1\xe9\x14\xc6\xad\x16\x98\x78\x9a\x9b\x65\x43\x39\x19\x2a\xdb\xa7\xf1\x5e\xf8\x46\xd5\x3d\x73\xbb\x62\x93\x27\x3b\x4e\xba\xf8\x14\x7d\x71\xd8\x80\x4b\xb3\xda\x20\x38\x79\x3e\x18\x37\xc0\x90\x98\x08\x79\x56\x9b\x83\xa6\xcf\xe1\xbf\x35\x53\x0d\x9a\x9b\x81\xc2\x94\xde\x6c\x7b\x8f\x99\x1d\x99\x6c\x30\xe7\x49\x06\x2f\x2a\x3a\x99\xad\x3d\x55\xf3\xbd\xd9\x5a\x09\x1d\x44\x23\x9b\xa4\x2b\x06\xf9\x1d\xc8\x44\x4e\x69\x8e\x18\xac\x01\x2a\xf7\x77\x02\x9f\x45\xf5\x4d\xa1\x86\x00\xee\xcd\x7c\x73\xec\x5e\xf0\x8c\xfa\xa9\x70\x79\x17\xfd\x69\x60\x58\x65\x72\x44\x86\x68\xa9\x34\x21\x03\x58\x1d\x27\x0a\xf1\x79\xc2\x13\x62\xfb\xf2\xd4\x0c\xf6\xfc\x7f\xf4\xcc\x66\x7f\xf9\xf5\x99\xd2\x7b\xba\xa3\x07\xcc\xe6\x35\xa7\xe3\xf7\x03\x45\x78\xf0\xa7\x88\x3a\x61\xaf\x3e\xac\x57\x97\xaa\x37\x85\xce\xc5\xb7\x69\xa7\xc0\xc6\x3c\x60\x04\x0e\x5c\xcd\x71\x9d\xc9\x34\x79\x9d\x4f\x2a\x8b\x7a\x52\xf5\x08\xb3\x28\x0f\xb1\x15\xb9\x40\x55\xe3\x1e\xf5\x15\xb8\x34\xb1\xf9\x53\x5e\x86\xe1\x12\xa6\xb0\x98\x69\x03\xa5\x14\x47\xbb\x51\x85\x3b\x4e\xa5\xe4\xd7\x85\xbf\x4e\xab\x91\x9d\x50\x8c\xd6\xdc\x12\xc4\xa3\x6d\xc1\xfa\x38\x7d\xa8\x85\x83\x2e\x39\x6a\x51\x90\x04\xf1\xbd\x62\xae\x55\x3a\x3c\x7f\xa6\xea\xb8\xa7\xf4\x44\x3b\xa9\x12\x82\xeb\x60\xaf\x10\x29\x9f\x50\x98\xbc\x13\x0d\x34\xcb\xbe\x7d\xdd\x69\xe5\x59\xf7\x0a\xc1\xcd\xdd\x1a\xfb\x43\xc7\xe9\xfc\xb7\x4a\x26\x4d\x4d\x56\x44\x84\xdf\x57\xe9\xe2\x03\x95\x2e\x36\xc1\x9f\x8b\x8b\xdd\x81\x35\x31\x97\x36\x70\x2e\xdf\x0b\x14\x65\xd6\xdb\x81\xf2\xab\x0a\xd1\x46\xd9\x2f\x4b\xa4\x1c\xf8\xad\xaf\xf0\x07\x9c\x56\x1f\x76\x7a\xf3\x9c\xc6\xc2\xc1\x2a\x26\x27\xb2\x6e\x7c\xff\x9b\xd8\x88\x42\xc9\xe8\x5b\xee\x67\x15\x7b\x0e\x0b\xf7\x8b\x9a\x6a\x8b\x64\x9f\x34\x32\x04\xc1\xad\xc8\x4d\x84\x27\xfb\x0e\xfe\x08\xc6\x28\xb6\xae\x7b\x59\xb4\x22\x8b\x86\x91\x1d\xcc\x79\xb3\x8f\xf5\x42\x91\xe5\xb6\xe6\x91\x7e\x57\x01\xed\x27\x69\x62\xd7\x5e\xa8\x7e\x09\xf1\xf9\x95\xc0\x6b\x10\x6f\x04\x8a\x01\xf6\x3e\x75\xb5\x1c\x29\xbb\xef\x27\x9d\xc1\xe3\xe9\x21\x55\x98\xa8\xf9\x9e\x92\x5b\x47\xbe\xc2\x83\x7b\x48\x7d\xd1\x27\x64\xcd\x53\xd7\xf0\x3a\xe4\x6c\xef\xa9\x99\x57\x0e\xd8\x4e\x9c\xf7\x28\x94\x6e\x55\x21\xf7\x55\x1c\x04\x94\x43\x77\xac\x2b\xe4\xdf\x7b\x88\x33\x14\x57\xc3\x7e\x87\x37\x7a\x56\x49\xce\x57\xf1\x6b\xf5\x95\x45\x8e\x86\x1e\x40\x04\x9e\xda\xf0\xc2\xa4\x40\x47\x27\x48\xa4\x1a\x3b\x6a\xce\x58\x8d\xe8\xd4\x83\xab\xa9\x45\xe1\x47\x98\x90\xe8\x81\x84\x22\x69\x33\x6e\xe1\xe0\x2b\x90\x87\x65\x25\x90\x06\x87\x28\xdf\x34\x70\xd3\x5f\xec\x96\x89\x3d\x3c\x8d\x4d\x24\xfc\xaf\x0c\xf9\xc4\x73\x09\xfe\x73\xf3\xd6\x73\xd2\xcb\x26\x1a\x80\x2b\x47\x54\xc9\x2a\xef\x8e\x0a\xec\xc9\x99\x8f\x5b\x8e\xe1\xe9\x71\xae\x7e\xa0\x66\x8c\x2e\xcc\x74\xf7\xdf\x1b\x90\xcc\x46\xc9\x8a\x75\x68\x32\x84\x8e\x57\x29\xe7\xe1\x6b\x37\xa6\xd1\x2f\xfb\xfd\xd8\xc6\xd1\xb2\x55\xc5\x98\x23\x6a\x6e\xe1\x88\xc2\x96\x2c\x47\xe1\x32\x88\x73\x84\xfb\xa9\xda\x72\x42\xfd\x24\xe5\xcb\xa9\x59\xdb\x59\x3d\x23\xed\xd7\x1b\xbb\xe8\x4b\x61\x29\x2e\xcd\x36\x87\x21\x22\xa6\xbb\xb5\xe7\x29\x21\x4f\x2a\xb9\xa4\x2d\x34\xd8\xc0\xb3\x37\xe8\x45\xa0\x9a\xf2\x40\x33\x32\x72\x40\x50\x7b\xd7\xd8\xe1\xd7\xb5\x34\xbd\x8d\xe3\xca\xc6\x6d\x57\x3e\xe7\xac\x52\xda\xbf\x4a\xb6\xdc\x8d\x9e\x7a\xc6\x9d\x1b\xe4\xd1\xf8\x3f\x90\xad\xcb\xcd\xe6\x1d\xb1\xff\x95\x03\xdd\x70\x9c\x45\x79\x21\x24\x65\x38\xa8\x4c\x79\xc0\x37\x0d\x71\x9d\x57\x77\x77\x8b\x31\x65\x47\x09\xdb\x14\x54\x61\x19\x4f\x0b\xfb\x70\x55\x4f\x12\x5f\x51\x6d\xe0\x2a\xcc\xa5\x32\x73\xc7\x51\xea\x3e\x52\xc4\x21\x1b\x7a\x41\x2e\xe9\xf9\x2e\x1b\x92\xf6\xfc\xab\xbb\x35\xe7\xe6\xcb\xae\x58\xba\x4b\x4b\x76\xe5\x42\xbd\x03\x24\x11\x9c\x35\x5f\xcf\x3e\x53\x93\x22\x49\x72\xcb\xd3\x14\x2c\xc9\xaa\xc6\x08\xd6\x67\xaa\x0b\x72\x42\x99\x06\x82\xe2\xcf\x79\x47\xc5\xb4\x72\x9a\x71\x05\x5b\xe5\x99\x75\xef\xf2\x33\x53\xd8\x5d\x8a\x31\x73\x0e\x80\x4c\x78\x9d\x77\xf0\x0e\x51\x14\x41\xec\x0f\xf7\xf1\x1c\x0d\x45\xc3\x6a\x3e\x44\xf1\xcd\x71\x80\x2f\x89\x8a\xff\x79\xda\x0d\x38\x8c\x1f\xc1\x68\xa2\x8f\xf3\x68\xa6\xe0\xd2\x6f\x92\x99\xc6\x69\xc4\xd7\x04\x94\x62\x0b\xe6\xb9\xf1\x54\xb7\x60\xe5\x18\xa9\x34\x53\xf8\x98\x33\x64\xfe\x65\x36\x45\x0e\x50\xfe\x92\x94\x60\x65\x7e\x5d\x31\xfb\xfe\x8d\xc2\x81\x8e\x4c\x94\xec\xa8\x5e\x9f\x23\x32\x5c\x52\x7d\x20\x07\x87\x3b\x4b\x23\x32\x4e\xaf\xcb\x13\x85\xdc\x56\xc0\x46\x24\x8d\xfc\xcb\x6d\x62\x3c\x26\x29\xc6\x99\x39\xdc\x51\xfa\x00\x6f\xd3\x87\xf0\x75\xe0\x13\x7d\x8a\x27\xc0\x2f\x25\x52\xa7\x3f\xa5\x43\x8d\xaf\xc0\x22\x87\xa2\x38\x2d\x5f\x3b\x1d\x0e\x9f\xab\x5e\x8c\x83\x86\x7f\xf9\x10\x6f\xf6\xf7\xf1\xd0\xb2\x49\xab\x25\x57\x0c\x14\xfb\x3d\x3b\xa3\x9b\xe3\xd8\x8e\x26\x1e\xea\xb8\x5c\x6d\xc5\xaf\x63\x2e\x13\x88\xaa\x5f\xec\x39\xfb\xb9\xfa\x79\x9c\x50\x67\x7d\x85\x4a\xe8\xc9\xe7\xc9\xaf\x42\xdf\xe1\x97\x7a\x8a\x55\xec\x91\x4a\x16\x1e\xa8\x16\x49\x92\x66\x3b\x34\xd4\x59\x19\xaa\x4b\x9a\x16\x7d\xae\xa7\x88\x0b\xef\x73\xb1\x15\x0f\xf6\xff\x69\xda\x8e\x53\x33\x85\xa2\x6e\xa3\x9d\x5c\xaa\x3e\xb2\xc0\x8c\x0c\xb6\x22\xa4\xf7\xf8\x3a\x78\x51\x86\x02\xc8\x29\x44\x23\x53\xa4\x32\x2c\x5a\x63\x25\xe6\x1b\x95\xab\x8d\xa3\xcc\x72\xee\x28\x98\x46\x8f\xf3\x38\xda\x18\xae\x78\x75\x77\x37\x2f\x32\x9b\x8c\x8a\xb1\x75\x1a\xb6\xc8\x19\xd9\x25\xf2\x8d\x6a\x16\x66\x36\x8c\x4d\x34\x79\x3c\xb5\x95\xef\x55\x4f\xd2\x81\x8d\xf3\x79\x2f\x09\xf2\xb1\xc6\x15\xc3\x6d\xf0\x7f\xcc\x14\x62\xe6\xa4\x1b\xd7\x9b\xa4\x2b\x76\xb0\x43\xa7\x12\x33\x1d\x23\x78\x80\x11\xa7\xc8\x38\xcb\x4f\xe3\x2c\xab\xa1\x19\x79\x19\x57\x02\x3d\x94\xe5\xf7\xff\xd0\xc4\x31\x21\xa3\x5d\x38\xfe\x07\x58\x61\xa7\x6a\xb0\x24\x9d\x9e\x77\x03\xaf\x3c\x7b\x5c\x59\xdc\xcc\xc6\x91\x5d\xb1\x08\xaf\x45\xd3\x4f\xc9\xd5\x03\xba\xcc\xb5\x58\xb5\x9c\x83\x28\x3d\x1c\x0d\xb8\x46\xd8\x86\xa3\xf7\x3f\x1a\x9b\xb5\x74\x38\x64\x16\x38\x89\x34\x3b\x4e\x97\xf6\x0a\x8c\x1e\x36\xee\x87\x8d\xd1\x7a\xa8\x1d\x4c\xd2\x64\x95\x18\x33\xd9\x60\x29\x49\xb8\xfd\x4e\x12\xce\xef\xa7\xd5\x2c\xe5\x65\x11\x96\xd7\x8e\x13\x55\xc1\xf1\x85\x59\x85\xa2\x0b\x5f\x2b\xf2\x08\x33\x1c\x8d\x0d\x4f\x90\x38\x90\x4d\xf5\xa6\xa4\x5a\x2b\xb0\x9d\x51\xba\x86\xf9\x1a\x84\xaa\x8c\xec\xe2\x1b\x35\x37\x1a\xa6\x49\x68\xb3\x84\xf9\x1e\x61\x91\xb6\xaf\x6b\x16\xde\xea\x01\x01\x57\x03\x9d\x30\x4c\xd8\x39\xc5\x1f\xc1\xa8\x50\xac\xda\x3d\xf8\x13\x9e\x1c\x0e\x54\x9b\x06\x85\x54\xa7\x59\x50\xad\x2d\x36\x1e\x4f\xe5\x22\xa4\xf8\xb4\xad\x31\x97\xaf\xda\x38\x76\x35\x36\x3c\xe5\x3b\x81\x1f\xef\x7b\xc7\x93\xc7\x67\x29\x85\x7d\x78\x1b\xa2\xcd\xa4\xfc\xff\x87\x6e\x76\x9a\x68\x9f\x26\x51\x22\xd3\x98\x88\x38\x4e\x21\x04\xe0\x9b\x36\xb6\xfb\x55\x93\xe5\x66\xb5\xa3\xc9\x2a\x6b\xad\xbb\x67\x1d\x3e\x7e\x1a\x65\x76\x30\xef\x31\xee\x7c\x76\x10\x07\x9c\x9e\xd5\x80\x77\xd5\x0a\x32\xfe\xa2\xf7\x79\x75\x0a\x06\x51\x5e\x64\x51\xbf\xc4\x10\x83\x23\x55\x80\x12\x9a\x30\x02\xa8\x39\xf4\x2a\x88\x22\xe9\xa3\x8e\xd3\x9a\xc4\xf8\x19\x5f\xb7\x25\xb2\xd3\x34\xaf\xa2\xae\x45\x2f\xa9\xaa\x18\x94\x6e\x2a\xfa\xe2\xf7\xdd\xe4\x59\x98\x45\xc4\xff\xa7\x66\x4f\x3e\xa2\x47\x82\x69\xe7\x18\x54\x10\x4c\xbb\x74\xfe\x17\x15\x69\x46\xf5\x75\x6c\x0b\x20\x52\x11\xf3\x80\x84\x51\x18\xa9\x14\x88\xf8\x18\xf2\x2e\x37\x36\xe0\x30\x59\x3f\x51\x7c\xb7\x89\x59\xe6\xe0\x11\xcb\xdd\xa1\x98\x1a\x6e\x9f\xe5\x6a\x04\xd9\xbf\x4b\xb3\xe7\xc5\x25\xec\xc5\xe2\xa3\x8b\x3c\xf6\xda\xac\x05\x2f\x76\x8b\x68\x62\x91\x1a\x39\x68\xaf\x52\x9a\x6e\xe1\x36\x7b\xad\xf2\x4a\x83\x28\x61\x02\x01\xa9\x53\xfa\xb9\xa6\x53\x33\x5f\x82\x5d\x1d\xaf\xed\xac\x2d\x5f\x75\x3c\xe0\xbd\x3b\x3d\x8a\x9e\x44\x4e\xaa\xfa\x4e\xee\x3c\x3a\x26\xb0\x0d\x8d\x0c\x03\x1e\x86\xe9\x87\x02\x8d\xff\xba\xa0\x59\x4e\x10\xe1\x09\xb2\xbb\xf3\x15\xd1\x4f\xbb\xaa\xba\xbb\xd4\x49\xa0\xfe\x13\x37\x3d\x66\x9e\xf9\x76\x43\xd1\x26\x6c\x68\xa9\xe6\x6b\x9a\xdf\x32\x4e\xcb\x70\xdc\x51\x66\x2e\xf0\x99\xce\x45\xaf\x03\x99\xae\xd8\x64\xce\xef\x53\x0e\xd3\xdc\x06\x76\x9b\xf9\xdc\x4c\xe9\x30\x8f\x45\xe2\x0b\xc6\x8a\xc1\xd2\x7c\xa3\x3b\x89\x51\xbf\xcf\x12\x97\xae\x1e\xaa\xd4\x0b\x6f\xea\x22\x5a\x66\x01\xf8\x47\x99\x90\xa7\x07\xf8\x46\xe1\xc6\x86\x65\x5c\xa4\xc9\x5c\x8d\x0e\xa2\xfa\x35\x54\x2f\x1e\x06\x8a\x95\xeb\x82\x3b\x35\x51\x92\x57\xeb\x29\x3a\x66\x68\x8a\x70\x89\x85\x6f\x5a\xc0\x9a\xfb\xbb\x71\x99\x09\xcf\x24\xfa\x23\x1f\xe1\x9b\xf2\x4d\xa3\x83\x4b\xf9\x3c\x2b\x72\xb0\xdc\x6a\xe0\xc7\x1a\xef\x36\xb2\x36\xe8\xf6\xe6\xd3\x34\x19\x08\x78\x57\x18\x65\x54\xef\xe5\x42\x1b\x9d\x75\x92\x26\x79\x91\x4e\xc9\x34\xf1\x50\x2b\x7d\x94\x0c\xb8\xfa\x6c\xab\xca\xb1\x19\xb9\xc7\x34\x16\xb4\x97\x71\xc0\xef\xd3\x5e\x66\x5c\xfa\xcc\x8f\x1a\x5e\x56\x69\xcb\x53\x3d\x1f\x63\x0e\xb9\xde\x20\x0d\x1f\x35\xde\xfd\xa3\x5a\x1d\x24\x8d\x07\x9f\x45\xd5\x18\x87\xee\xff\xe2\x38\x93\x65\x78\x51\x27\x42\xf9\xee\x5c\xa0\x5a\x38\xf7\x61\x7e\x18\x56\x18\xe8\xc6\xc9\x9c\x57\x36\xbe\x8f\xc2\x2f\xfc\x18\x53\xc9\x70\xc1\x8d\xbe\x1c\x1a\xd5\xe7\x54\x2d\xe3\x63\x4a\x98\x60\xb8\xef\x05\x9e\x22\xe5\x92\x62\x18\xb8\x3b\x53\x74\x35\x97\x29\x58\x82\x73\x79\x06\xe9\xb0\x1b\x56\xf2\x29\xf5\x45\x18\x48\xb8\xad\x2d\x00\xed\xf1\x17\x0e\x3a\x5f\xfa\x4d\x8e\xd2\x2f\x3a\x62\xc8\xcc\x7e\xad\x8c\x3c\x8b\x02\x3e\x0a\x00\x19\xbe\xde\x4c\xa9\x3a\xca\xd2\x72\xda\x51\xec\xe4\x67\x81\x26\xe4\x1b\x75\x84\xfa\xe9\x1a\x0c\x25\x1f\xe5\x40\x51\x8d\x5f\x6a\xc4\x51\x84\xc1\x36\x65\x91\x4e\xd2\x7e\x14\x5b\x35\xcf\x71\x46\x8d\xdf\x9e\x99\x7d\x56\xf1\x9a\xe7\xa1\xc9\xb2\x88\x84\x78\xab\xcf\x41\x1f\x1b\x68\x15\xbe\x6e\xc7\x3c\x7b\xb9\x71\x94\x09\x8f\x04\x4a\xde\xab\xbd\x7d\x0c\x3e\x63\xfe\x2d\xc4\xc3\x2c\xbd\xc9\x37\xaa\xc0\x92\x9b\x2a\x48\x71\x28\x68\xc9\xef\xd4\xde\x6c\x0e\xe6\x55\x47\x2f\x2f\xfb\x83\x52\xd2\x05\xd8\x01\xc0\xdf\xf9\x7a\xe6\x33\xde\xc2\x80\xc5\x49\x20\x59\xa7\x15\x3c\xeb\xb4\x42\xf5\xbc\xb4\xef\xa5\x79\xdf\x5a\xbf\xaf\x44\x75\xaf\xe8\xd8\xf4\xa9\x1e\xce\x06\x82\xba\x63\x9a\x11\xc2\xe4\xcb\x3c\x73\x0d\x70\xc9\xef\xcf\xfc\x84\x0e\x78\x06\x65\x60\xd8\x31\x9e\x0c\x87\x51\x18\xd9\x24\x5c\xc3\xef\xe1\x2b\x43\x35\x0d\x8b\x75\x2f\xf0\x74\x81\x97\x5d\xcc\x56\x98\x2c\x1a\x0e\xf3\x6d\x4a\xae\xe8\x4a\x8d\x61\x16\xcb\x89\x3b\xe6\x34\x70\xd6\xb9\xf2\x93\xd2\xbc\x68\x49\xda\x27\xe5\xa4\x1f\x33\x7f\xd4\xa3\x47\x6a\x51\x6f\xc0\x13\x22\xf9\x3c\xd1\x8e\xf3\x9f\x4e\xad\x71\x7c\x92\xb0\xb5\x3c\x9c\xc3\x37\x81\xb6\x34\x85\xcd\x7e\x81\xac\x89\x53\xf2\xab\x4e\x16\xda\x24\x5b\x28\x87\x96\xd9\x91\x8e\xa3\xe1\x9f\x51\x9f\xdb\x35\x5f\xdc\xcc\x17\x73\xe0\xe0\xe6\x53\x2c\xc0\xa3\x3b\x64\x2e\x90\xa8\xb0\xa2\x37\xba\xbe\x27\x91\xa9\xa0\x8e\x71\x53\x55\x61\x2e\x2a\x28\xd6\xd7\xd5\xe4\x0f\xd7\x0b\xb1\x39\xae\xa3\xa2\x07\xd3\x71\x0e\x66\xcf\x4d\x82\x55\xdf\x1c\x06\xe1\x06\x4c\x1d\xca\x0b\x2c\x79\x88\xf8\xff\x4f\xb8\x2d\x87\xe0\xf1\x87\x33\xc5\x5b\xf0\x10\x3d\x3a\xf8\x9d\x63\x34\x7e\x86\x11\x97\xa3\x2d\x87\xad\x6b\xc2\xca\x28\x09\xc8\xcd\xf1\x5b\x7a\xce\xb2\x0b\x2a\x95\x9a\xda\xcc\xbe\x31\x57\x2d\x1f\xca\x52\xc7\x67\x8a\xd8\xf0\xfc\xcc\x43\x80\x6e\x35\x80\x5b\x5f\xf8\x02\x68\xc1\xe6\x6a\x62\x95\x6e\x12\x96\xd5\x74\x45\x43\xe5\xf3\x2a\x55\x9f\x66\x36\xb7\x49\x01\x89\x10\xed\xc4\x59\xed\x89\x6f\x1a\x8d\xb0\x2a\x59\x14\x02\x3e\xee\xf4\x2a\xe4\xc7\x25\x75\x70\xff\xc5\xaf\xfe\x37\x9d\xea\xb1\x1c\xf9\x84\x83\x84\xdf\x56\xe8\xcb\xa9\xc9\xd2\xc3\x6b\xf9\x84\x29\x8c\xa5\x7f\xd2\x71\xd2\x02\x4d\xfe\xed\xa5\xdd\x9e\x84\x40\xcc\x3e\x50\xbc\x6f\x2b\x74\x7f\x53\xd3\xbf\x4a\xbf\xd6\xf2\xc2\x4e\x18\x49\xca\x70\x40\x85\x57\xf8\xc3\x36\xc9\xaa\x61\x94\x0c\xe6\xbc\x22\xd8\x4f\x66\x4a\x4d\xe2\x88\x9a\xd7\xfe\x41\xe3\xd4\xee\x5d\xec\xc6\x5f\x48\x33\x6b\x64\x90\x03\x25\xa1\x9f\x69\x16\x80\x9f\x35\xec\xe8\xd2\xee\xa5\xee\x80\xde\x0f\x7c\x82\x5b\x12\xbf\x3c\xb5\xf5\xcb\x73\x5b\x99\x6a\xae\xd1\x89\xd4\x57\xf5\xd3\xb5\xfe\x30\xcf\x93\xb9\x76\xc1\xa4\x8c\x8b\x28\xb6\x2b\x16\x0b\x2f\x23\xb6\xbe\xf3\x75\x4e\xe5\x16\x79\x58\x16\x45\x6c\x81\x03\x06\x68\x81\x53\x2b\xbe\x09\x7c\xc6\xcf\xa8\x33\xbe\x51\x1d\xb3\xd8\x8e\x4c\xfc\x84\x9a\x1c\xfc\x76\xa0\x14\x46\x3b\xeb\xbe\x54\xb4\x95\xf0\x60\x6a\x52\x73\xd1\x71\x5b\x57\x9f\x03\x2b\xf3\x64\xcf\x93\x79\x9d\x50\x73\xa2\xe7\x03\x9f\xda\x99\xd5\x61\x9a\x21\x93\x72\x1c\x88\xfe\xe1\x10\x25\xc8\xce\xdd\x04\x36\x3f\xf8\x4a\x77\x69\xf7\xae\xea\x37\x25\x8c\xea\x38\xea\xd1\xdb\x81\x8a\x1e\x1e\xc0\xc2\xc1\xd0\xfc\x6f\xf5\xb9\x6b\x55\x63\xfc\x3f\x29\x5c\x72\x88\x3d\x17\x54\x08\x36\x13\xf5\xd1\x37\xc9\xaf\xc0\x82\x81\x35\xd7\xc9\x48\x2e\x1c\x74\x3d\x1d\x15\x86\xb0\x78\xb4\xf4\x46\x69\xad\x50\x5d\x3f\x41\x3c\x6b\x82\xc9\x73\x63\x84\x76\x64\xf2\x12\x49\x35\x07\x8b\x9a\x5d\xe1\x9c\xd7\x1d\xb5\x43\x9b\xb0\xf8\xfe\x7e\x9f\x1b\x55\x5f\x48\x92\x26\xbf\x0b\x6d\x99\xa5\x13\x93\x2d\xdb\x02\xe1\x05\xeb\x1b\xe0\xc7\x45\xec\xc0\x6f\xa7\x28\xa6\xbd\x30\xaf\x14\xaa\x37\x14\xa6\x16\x53\x92\x78\xa0\xab\x30\xd6\x7c\xa3\xe2\x87\x34\x09\xed\xb3\xd5\x32\x22\x02\x45\x15\x8d\x27\x82\xd9\x8c\xd7\x14\x5f\xf0\xa7\xff\x3d\xcc\xb8\xc8\xbf\x54\x8b\x0a\x63\x7f\x43\x93\xd2\x33\x26\x9d\x7d\x12\xed\x39\xa6\x25\xc6\x59\x82\x2b\x3c\x37\x53\xea\xdc\x10\xcc\xc3\xdf\x7d\x72\xdd\x0f\xbf\x43\x13\xe0\xd1\xb5\xb6\x91\x82\x61\x9a\xd9\xbc\x98\x23\x57\xeb\x4a\xe5\x6e\xf6\xe5\x76\xe0\x85\x0e\x8f\x28\xae\xe1\x69\x98\x3f\xe1\xc1\xe9\xa7\xf1\xed\x6a\x1b\xce\x4d\xfd\xbf\xea\x31\x22\x1e\x60\x7d\x6a\x56\xeb\x93\xd0\x37\x15\xe8\x89\x9a\x5c\xba\xaf\xf4\x93\xfa\x71\x99\x65\x6b\x8a\xa7\x02\x45\x33\xa1\xaa\x6a\x8b\x36\x93\xd4\x73\x38\xe1\x8c\x9e\xc1\xb6\xe5\x9b\xb6\x4c\xaf\x9f\x16\xe3\xf9\xca\xb3\x32\xa1\x1b\xbd\x1e\x96\xb0\x41\x31\x4e\xc8\x3a\xaa\x6f\x86\x82\xd3\x93\x0d\x19\xab\x57\x77\xbf\x46\xea\x4d\x1d\x6f\x92\xde\x0f\xb4\x9a\xa1\x4f\x7d\x57\xd2\xca\x83\x3c\xe1\x47\xd4\xae\xe0\xfd\xaa\x12\x83\x10\x68\x9d\xc4\xcb\xc6\xc9\xbc\x84\x36\x10\xdc\x35\x06\x7f\x71\xfd\xc7\x14\xd8\xf0\xbf\x07\x7e\x26\xec\xa9\xde\x67\x6b\x39\x48\x1c\x47\x23\x9b\x84\x16\x91\x22\x80\x97\x17\xb1\xd3\xd1\xc1\x3c\x45\x7f\x88\xaf\x67\x0a\x39\xf4\x7d\x8d\xf8\x3c\x5d\x1b\x90\x1e\xa7\x28\xff\x69\x00\x36\x5f\x37\x76\xdf\xeb\xaf\x77\xcb\x24\x26\x17\xb3\x77\xd1\x73\x0a\x1e\x72\x94\x88\x97\x6b\x7f\x7a\x25\x8a\x77\xfa\x3f\x7d\x83\x76\x13\x60\xc5\x4c\xa9\x82\x72\xf8\x3b\x58\x31\xa0\xbe\xb7\xf5\xd4\x50\xfa\x7d\x80\x0a\x1c\x8a\xe5\xd5\xdd\x8e\x6b\xd6\x13\x8d\xdc\x53\xf4\xcc\xf7\x66\x2a\xa1\xd9\xd0\x64\x05\x5b\x7a\xbb\x74\xd1\x77\x60\x27\x49\x47\xcb\xe9\xdf\xd5\x15\x8b\xbb\x35\xec\x67\x1a\x8e\x4b\xd7\x06\x51\x24\x6f\x0b\x6e\x2b\x7b\x1b\x65\x06\x83\x88\x20\xf7\x8e\xa2\xf7\xb2\x02\xc3\x5e\x6e\x74\x4c\x04\x0a\x60\x4d\x16\x47\x36\x9b\x27\x0f\x01\x3c\xc9\xb5\x99\x62\x03\x83\xb7\x70\x73\xe2\x7e\xbe\x7a\xcb\xba\x1a\x07\x3e\x3c\x4d\xf3\x12\xe2\x52\xaf\xf1\xc6\x05\x6b\xb3\xa3\x11\xde\xff\x8a\x74\x2e\x31\x8e\xc0\xff\xe1\x0c\xbd\x29\x8b\x72\x92\x70\x04\x2a\xa3\xf1\x6a\x4c\x5e\xd5\x33\x8a\xf1\xaa\x61\xee\x34\x44\xdb\x47\x03\x9f\xe9\x1c\x6d\x52\x93\xbc\x72\xa0\xbb\x12\xe5\x51\xc1\x7f\x1c\x29\xd7\xc7\x4a\xfe\xf1\xe3\xd9\x8b\x3e\xc7\x25\x36\xc7\x7c\x1c\x4d\x73\xd5\xd6\x02\x51\xa9\x4c\x2f\xf8\x58\x38\xcd\x8a\x71\x5a\x9b\x5a\xb9\xa0\xa7\x56\x74\xd8\x1c\x66\xe6\x0d\x20\xd4\x11\xd6\xff\x90\xbc\x06\x5f\x2b\xd8\x79\xdf\x24\x84\x25\x83\x9d\xfe\x86\x4a\x20\xef\x04\x8a\xc1\x8c\xe5\xfb\xdc\x86\xab\xed\xdd\xea\x6b\xb2\x12\x86\x9a\xca\xdb\x49\x36\x5f\x58\x17\xe8\x55\xb9\x9b\xea\x99\x65\x06\xbe\x55\x57\x64\xc5\x8c\x78\xe8\x12\x35\x17\x30\x81\xf1\xf5\xec\x39\xcd\xba\x9f\x4e\xec\x76\xcd\x76\xe2\x7b\xf7\x0f\xd4\x6c\xf9\x59\x3c\x01\x8e\x25\x53\x3b\x02\x0b\xf9\xe3\x99\x62\x5c\xbf\xab\xa0\x7b\xd3\xcc\xba\x92\x31\x47\x8e\xc7\x70\x7a\xf8\x46\x51\x10\x65\x69\x31\xce\xc3\x71\x14\x0f\x72\xa2\x20\xe2\x66\x27\x59\x19\x69\x7c\x6e\x76\x04\x87\x96\x76\xd3\xb4\xb8\x0b\xd3\xd1\xc6\x03\xa5\x34\x5f\xab\x37\xb5\x52\x85\x0f\x9a\xff\xcd\x57\x50\x36\x5c\xe7\x6f\x90\xbe\x61\x81\xde\x76\xee\xbd\x7a\x60\xf1\xe8\x6d\xb3\x0c\x44\xbb\x36\xe7\xe3\x83\xab\xb4\x6a\x35\x35\x59\x54\x06\xfe\xba\x66\xf4\x4c\x16\x6d\x53\x43\x71\xc7\x28\xc3\x85\xdb\x3c\x3d\xd3\xa3\x6e\xbe\xd4\x8f\x51\x78\x9c\xfa\xbf\x6f\x18\xdd\xaf\x2c\x70\xe3\xb6\x32\x2a\x8f\xa8\x32\xf0\xe8\x4a\x1b\x65\x79\x3e\xb1\xae\xbe\x03\x5f\xc4\xb4\x79\x7c\xd3\x36\x88\x90\x5b\x3b\x89\x92\x11\xc3\x35\xf0\xe5\x30\x4f\x84\x40\xe4\xa1\x92\x48\xf3\x44\xd6\x53\x93\x55\x59\x20\x78\xb8\xdb\x74\xeb\x1e\x23\xc5\xb4\x9a\xd7\x14\x5b\x14\x37\xc1\x86\x42\xef\xbb\x32\x12\x7d\x13\xa1\x43\x24\xd3\x25\xd6\xd0\x07\x74\x43\x13\xda\x1d\x9d\x25\x45\x91\x5b\xad\xbd\x8a\x72\x5e\x76\x40\x78\x6f\x3b\xb8\xb8\xc9\x37\x8a\x04\x15\x5a\x07\xfc\xa7\x1a\x90\x41\xd2\x86\x21\x36\x20\x61\xe4\x46\x60\xbe\xad\xe7\xeb\x2a\x0f\x74\x2b\xab\x49\xd0\xb4\x70\x90\x98\xae\xdc\xd6\x6e\xdb\xb3\x2d\x2c\x0d\xdd\x65\x6b\xa7\xfc\x6a\xb9\x47\x45\x71\x82\xf4\xab\x3e\xe7\x73\xae\xb2\x1f\xa6\x93\x49\x54\x14\xd6\xe6\x8a\x87\xf2\x04\x6c\x13\x33\xc5\x2b\x7e\xa4\x6f\xb7\xc5\x98\x71\x9a\x3b\xae\x0e\x69\x00\xfb\x74\xe8\x9d\x99\x6a\xd5\x04\xde\x23\x24\xd6\x0e\xec\x60\x87\x6f\x73\x3e\x00\xea\x16\xab\xf4\x10\x78\x5c\xbe\x21\x10\x87\xc3\xd0\xba\xc1\x97\x0d\x7a\x01\x0e\x8d\x54\x6d\x10\x69\x7a\xf9\x13\xbf\x67\xef\xbf\x61\xc4\xa6\xeb\xe2\x3b\x55\xda\x7b\xba\x2a\xbc\xad\xe7\x03\xe0\x22\x5b\x7b\xca\xcb\xc1\x3e\x44\x02\x84\xf8\xed\xb7\xc9\x07\xd4\x06\xcd\x70\x60\x8f\xc3\xac\xa1\xde\x7c\x43\x09\xc8\x6f\x5d\x57\x3c\x7a\xbf\x87\xb8\x4e\xd3\x03\x00\x20\x71\x8d\x22\x13\xf8\xe9\x7b\x4a\xbe\x37\xcc\xac\x9d\x4a\x98\xdb\xae\x89\xeb\x52\xa4\xc3\x53\x9b\xb8\x29\x53\x04\xb2\x98\x52\xe1\x6b\x47\x54\x91\x98\x37\x22\xd5\x8d\xc4\xa0\x14\xd6\x8e\x15\xc6\x60\xe3\x3b\xeb\xde\x4b\x7c\xad\x34\x19\xcf\x6b\x49\x22\xe7\x53\xd7\x73\x2a\x6d\x02\xbd\xbd\xd3\xb4\xdc\xd2\xf3\x43\x92\x5b\xd6\x3d\xb6\x37\x9a\x4c\xd3\xac\x30\x49\x68\x77\xa8\x56\x00\x52\x0a\xd1\x5e\xaf\xde\x35\xbe\xe7\x43\x3a\x91\x35\x8a\x32\x19\xc9\xf3\x8b\xf1\x10\xfe\x09\x11\xc2\x3f\xa8\x47\x6a\x56\xd9\xab\x37\x22\x55\xf6\x96\x89\xd3\x89\xcd\xa2\x42\xa9\xce\x9f\x0d\x6a\x02\x5a\x4e\x8c\x35\xfc\x5a\x69\xaa\x68\xbb\x26\xc4\xb5\x51\xc3\xd3\x3d\xa3\x50\x6b\x79\xf1\x64\xf5\x95\xb8\x27\x81\x84\x03\x0b\xc8\xd3\xe1\xa2\x65\xaa\x7a\x73\x17\x35\xce\xee\x89\x9e\xcf\x76\x20\xd0\x8c\xa8\x05\x78\x4d\x44\xc5\x9d\x75\x4f\x35\x7e\xa7\x75\x06\x77\x35\xcd\x32\x86\x5c\xbd\xc6\x5b\xf1\x6e\xa0\xf0\x22\xe7\x75\xbb\xf6\x0c\xce\x3c\x17\xf5\x2a\x7b\x61\x93\x01\xf1\x04\xe6\xf3\x3e\xc8\xfe\x44\x27\x2f\x37\x71\x60\x04\x1d\xe9\xc1\x7f\x0f\xda\x0a\x58\x54\x3a\x8e\xb9\x7e\xce\x2a\x1d\x9a\x69\xe8\x4f\x6b\xa2\xe8\xcd\x6f\x54\xfd\x89\x7e\x4e\xc5\x3a\xc5\xa9\x81\x91\x45\xbe\x6e\x7c\xec\x9e\x3d\xdd\x7e\x9a\x94\xb9\x74\x0a\x79\x64\x6d\xa6\x8a\xa9\xb7\x55\x35\x61\x12\x0d\x8a\x74\x35\x99\xf7\xf1\xd3\x27\x74\x5c\x85\x34\x86\x5e\x24\xdf\x04\x4a\x28\xf1\x13\xd7\xb3\x0d\xb3\x74\x35\xa1\x00\x01\x41\xde\x29\x55\xce\x3a\x8e\xb5\x43\xb5\xee\xaf\x14\x56\x33\x2f\x4c\x32\x30\xd9\xe0\x89\xea\xab\xa0\x5d\xcc\x6c\x0c\xc8\x92\x7e\xa6\x69\x96\x6e\xab\x8a\x0f\x08\x37\x51\x15\x79\xa0\x82\x87\xcb\x70\x38\x0e\xea\xa9\xf7\xac\xf7\xa9\x80\xea\xc4\x6b\xdb\x35\x41\x68\x3d\x71\xef\x38\x76\xbb\x4b\xf5\xea\xc0\xe3\x0a\x02\x2d\x88\xfa\xa1\x09\xf3\x68\x22\x6d\x2c\x58\xa2\x5b\x6a\xa8\xee\x56\xe3\x60\xee\xdb\x57\x6d\x96\x58\xaa\xc9\x12\x28\x29\xb4\xc2\xe9\xcd\x4c\x66\xaf\xee\x5e\xec\xbe\xfe\xfa\x36\xd5\x07\xb9\x4c\x6f\x4e\x66\x0d\xe8\xcd\xb9\x81\xbe\x45\x4f\x1e\xe3\xe1\x81\xff\x4b\xbd\x47\x9a\xac\x3d\x5d\x9d\x35\x51\x2a\x68\x2a\x7e\x00\x5e\x84\xb1\x36\x7e\x1d\x81\x42\x0c\xdd\x45\x7a\x86\x93\x76\x4d\x8b\xbd\xf0\xd8\x39\x70\x98\xdf\x9f\x79\x7f\xcc\x35\x21\x38\xa0\x0f\x90\xc4\xf3\xe7\xd3\x7a\xa1\xb0\xa7\x27\xb9\xc6\x26\x19\xc4\x36\x9f\xaf\x1c\xa7\x8c\x13\xd6\x06\xf5\x83\xda\xd4\xa1\x1a\xda\x57\x2d\xba\x91\x99\xf4\xbd\x48\x86\x54\x96\x3b\x8e\x5e\xf7\x67\xaa\x43\x1a\x25\xac\x62\xf8\xea\x6e\x07\x09\x53\xf0\x30\x35\xd3\x91\x0e\x87\xd3\xb2\x28\x9c\x36\x28\x97\x9f\x14\x68\xf7\x88\xb3\xaf\x65\x6e\x87\x65\x9c\x58\xe6\x0d\x77\xec\x65\xfe\x85\xff\x4e\x0b\xfe\xe4\xe5\xee\xd8\xc6\x53\x36\x6f\x70\x64\x77\x95\xf4\xff\x49\x6a\x12\x0b\x85\x52\x73\xa2\x4d\x64\x8f\xa9\x4e\xc4\xda\x4f\xd4\x1b\xc2\x19\x7a\x84\xf7\x27\xd1\x94\x87\x7f\xfd\xaf\x2d\x84\x14\xaf\x75\x4d\x62\xe2\xb5\x3c\xca\x6b\xe2\x9f\x7e\xfe\xaa\x55\xdf\x91\x65\x67\x13\x07\x7e\x80\x47\x3b\x15\x28\x68\xef\x29\xaf\x34\x67\x57\x6c\x9c\x4e\xf3\x79\x35\x58\xf6\x54\xcf\x13\x9e\x5c\xd4\xde\xe4\x01\x21\x65\xa5\x52\xed\x73\x68\x93\x14\x51\x18\x4d\x4d\x21\xb5\x0b\x69\xd3\x7b\x93\x77\x1e\xbd\x21\x36\x88\x61\x96\x92\x38\x6c\x9e\xa7\x2c\xa4\x80\x15\x3d\x3d\x53\xe5\xbe\xf3\x81\x22\xcd\x62\x39\x64\xfe\x31\x85\x45\x1a\xa7\xf1\x20\xdf\x4e\xdf\x0d\xe5\x28\x60\x58\x44\xe7\x87\x4e\x08\xeb\x1c\x51\xc1\x59\x28\x5e\x55\x25\x8a\xde\x8f\xa0\x7b\xbc\x96\x79\xb8\x2c\xc1\x37\x6a\xdc\xdb\xd5\x2c\xe8\xcf\x70\xa8\x80\x02\x9a\x5b\x97\xd0\x28\x8e\x0c\x90\xe5\x02\x06\xac\x16\x12\x65\xda\x77\x67\x0a\x6a\xda\xc0\x77\x7c\xb1\xb2\x9b\xfd\x28\x91\x4f\xc4\xcf\x41\x75\x56\x64\x21\x14\x53\xd3\x5d\x05\x67\x9f\x44\x89\x80\x73\x5c\xa7\xda\x3d\xe7\xe9\x1a\xb8\x60\xc5\x64\x91\xe9\xc7\x6b\x73\x64\x2a\x9c\x2e\x73\xb5\x23\x61\x77\xee\xaa\x2a\xf5\x85\xd9\x67\x54\xac\x3f\x1c\x42\x0a\x42\x3d\x50\xe0\xeb\x92\x17\xd5\xc1\x9f\xda\x24\x79\x23\x8d\xe2\x0e\x59\x1a\x07\x0c\xdd\xeb\x81\xa1\x2d\xaa\x11\x83\x34\x2c\x27\x55\xa6\xc7\x94\x23\x8e\x44\x55\xc5\xad\xbb\x54\x41\x88\xc6\xbb\xb7\xab\xfa\x3c\x06\x54\x84\x12\x56\x85\x78\x1f\xd4\x7a\xa1\xaa\x62\xfa\x01\x9d\x3e\xfe\x0f\xe5\xae\x07\x36\x36\x6b\x76\x80\x3f\xce\xec\x4a\x81\x2f\x6d\x41\x69\xc3\xb1\x2e\x79\xdd\x61\x70\x36\x39\xc8\xe1\x5e\xef\x36\x3d\x60\x63\x6c\xb3\xb4\x53\x19\x10\x38\x87\x93\x81\x57\x1c\x3f\xd9\xe8\x23\xee\xdb\xd7\x9d\x66\xe9\x28\x33\x93\x89\xcb\xe2\x1c\x7f\xb4\x23\x3c\x3a\xd6\x68\x81\x2e\xed\xef\x4e\xd2\xcc\x02\x41\x82\x9c\xea\x3a\x5e\x32\xdf\xb8\x1e\x5b\x66\x57\x98\xdd\x53\x81\x41\xee\x6a\x5a\xfb\xbb\x6d\x6c\xd8\xbc\x42\xba\x5b\x8f\xc1\x52\xbe\x6e\xe3\x54\x49\xb3\x81\xcd\x3a\x3a\xf9\xd4\xe4\xf9\x0a\x78\x9b\x8f\x53\x01\x55\x22\x82\x3b\xab\xc3\xb9\xb3\xae\xff\xb3\x12\xa5\x71\x65\x70\x10\xf9\x39\x9d\x3b\x17\x5a\x70\x55\x1a\xfb\x7a\xbb\xd2\xdd\xaf\x0e\x5a\x99\x7b\x7e\x78\x04\xaa\x7f\xa0\x06\xa4\xff\xa0\xad\x4a\xb3\x3a\x4e\x63\x66\x76\x70\x05\x6c\x65\x42\x7c\x6e\x3a\xb0\x71\x79\xd8\x2a\x2a\x14\x08\x87\xc9\x1c\x55\x9b\xcb\x98\x94\xd5\xea\x50\x0e\x2d\xaa\x6f\xf4\xbe\xd0\x4f\x3b\xa3\xe6\x43\xef\x2b\xcb\x57\x98\xe5\x2a\xf1\x5e\x38\xe8\x48\x79\xe8\xc4\x21\x02\x40\xa5\x47\x40\xf0\x3e\xa3\xb5\x76\x4a\xa3\x0f\x22\xf3\xe4\x65\x19\xdf\xa4\x15\xa0\xdf\xd8\xfa\x42\xcf\x67\x04\x5c\xb7\xc3\x83\x7d\x87\x2c\x1a\x6c\x8b\x96\x21\xd8\xa9\x68\xa8\x7f\xa6\x35\xc4\xe7\x99\x15\x4f\xb1\xb4\x2e\xb0\x81\xb9\x89\xf8\x89\xa1\xcd\xda\xf2\x33\x4b\x23\xac\xeb\x13\x3d\xdf\xa5\xfb\xb3\x17\x54\x4e\x59\x26\x51\xbe\x96\xc3\xcc\xc8\xd4\x97\x97\xb2\xd0\xf6\x62\x6a\x4d\x96\xa7\xc9\xbc\x2a\x07\x5f\x52\x95\x85\x07\x2a\xcd\x3d\x33\xf3\x41\xc8\xb7\x94\x55\x1b\xda\x2c\x31\xc9\x20\xd5\xe3\xfb\x88\x9f\xa4\x4f\xf0\x59\x85\x25\x06\x63\x79\x9a\x98\xb8\xa3\xf8\xcf\xd0\xcf\xe5\xeb\x06\xed\xdc\xc1\x57\xba\xfd\x08\x82\xe0\x58\x05\x54\x5c\xf9\xba\xad\x1f\x35\xb1\x2c\x00\x22\x50\x48\x8f\x15\xba\xac\x0f\xcd\x45\x55\xc0\x2e\xa2\x81\x89\xe7\x3c\x6e\x10\x20\x16\xe1\xff\xa3\x65\x47\x82\xf9\x81\x3a\x93\x61\x1a\x97\x13\xb0\xca\x20\xe1\x63\x68\x9e\x0b\x63\x94\x30\x9e\x5f\xf5\x89\x1d\x44\x21\xba\xa8\x42\xb7\xf2\xbb\x8c\x91\xe5\xbb\x19\x40\xc0\xd5\x9e\x78\xd4\x2c\xe5\xed\x59\xe8\x4e\xd3\x32\x19\x60\xda\x4c\x26\x76\x6b\x03\xf0\xb4\xb8\xa8\x69\xdf\x0c\x5e\x54\xf3\x06\xc9\x20\x0f\x0d\x2a\x1f\xaf\x4a\xb5\xf1\x84\x2a\xab\x9e\x50\x48\xee\x22\x9a\xd8\xc2\xf4\x63\x3b\xef\xb5\x08\x11\x65\x39\x1c\xad\xd3\x4a\x82\x23\x13\x4a\xb5\x9d\x6e\xda\xc3\x24\xf4\x22\x90\xa8\xce\xf5\x14\x13\xe5\x4d\x25\x83\x78\x65\xe6\x63\xde\x7c\x5c\x0e\x87\x9c\xbe\x38\xe5\xd9\xea\x70\xf0\x4d\x1b\x3c\xf5\x40\x37\x4c\xa7\x6b\x9a\x95\x85\xcd\xa8\xa4\x10\x2f\x28\x8f\x9d\x53\x3d\x27\x4d\xb6\xf9\x42\xe8\x4f\xf1\x82\x85\xa4\xd5\xb7\x8b\x40\x2c\xee\x60\xe2\x4e\x71\xb2\xd3\x6b\x8b\x4a\xa3\x84\x90\xdc\x1c\xaa\xa0\x67\xf6\x4d\xda\x04\xc2\x16\x4f\x5f\x44\x66\x0e\x24\x8b\x2d\xac\x2d\xc6\x73\x0a\xd1\x87\xe2\x0e\x92\x3c\xf4\x2d\x58\x41\xcb\x35\x89\xc2\xac\xcc\x0d\xcb\xea\xb3\x22\x6f\xa0\x22\x9d\x7b\x6d\x49\x5e\x39\x9d\x56\x9e\xc6\xe9\x3b\x32\xb0\x58\xd4\xf5\x7c\x82\x3c\xb0\x13\x03\x18\xae\x0f\x40\xff\x98\x16\x42\x9a\xa5\x8a\x85\x74\x6c\xb2\xe9\x0e\x5f\x7c\xfd\x7b\xe5\xb9\x59\xa7\x57\x06\x35\x3d\x5c\x87\x43\x36\xf8\xb8\xbf\x85\x81\x73\x44\x5c\x1e\xe2\x75\xd1\x11\xfb\x7e\x35\x2d\xb3\xc4\xc4\x90\xcf\xf0\x25\x23\xcc\x7b\xf3\x75\x0b\x7b\xff\xfe\xee\x30\x8e\x48\x1f\xa5\xfa\xa2\xd2\xd7\xef\xb8\xa1\xf8\x9f\x3b\xa7\x39\x4a\xd3\xc1\x9a\x35\xd9\xbc\xff\xcf\xeb\x7a\x60\xf9\x13\xc4\xcb\x28\x17\xdd\xad\x21\x23\xeb\xed\xd6\xc1\xd3\x0a\x68\xf0\xb6\x26\x75\xba\x06\xd7\xc5\x37\xb0\x13\xfc\x63\x4a\x50\xe5\x74\xa0\xda\x51\xd0\x9b\xc6\x87\x42\x5f\x0c\xe1\xf3\xd6\x9e\xa2\x05\xf9\x18\xcf\xa9\xa0\x6f\xfb\xdd\x78\x6f\xf5\x2e\x60\xb2\xcf\xab\x60\x6b\x94\x26\x16\xde\x81\xc9\x82\xe8\x9d\x09\x71\xd0\x73\xee\x24\x26\x03\xaf\x65\x2d\x3c\x99\xf4\xed\x44\xa7\xf0\x79\xad\xc1\xb2\x12\x0d\xec\x60\xbb\x4f\xf0\x7f\x7f\xa6\x88\x5e\x3f\x60\xfb\x26\x26\xb4\xe3\x08\x3a\x7e\x3f\x50\xd2\x1e\xdb\x7a\x8a\x96\x70\xdb\xba\xae\x10\x84\x51\x3a\xa7\xda\x07\x35\x0f\xa3\x79\xe1\xda\x48\x46\xfa\x36\xdf\x44\x16\xf3\x09\x3e\x95\x6f\xda\x14\x6b\x07\x76\x18\x85\x91\x68\x20\x61\xf8\x84\x2b\x78\x7c\xd3\x88\x2f\xc1\x94\x58\x54\x79\xce\xa3\x2b\xd8\xd5\x5a\x84\x4e\x7a\xe8\x2d\x31\x94\xa9\xdc\x48\x34\xaf\x8e\x0b\x24\x4a\x84\xf5\xcb\xcf\x85\xff\xa3\xaa\xe4\xb6\xf6\x36\x62\x33\x1a\x49\x3e\xd2\x56\x2a\xf6\x61\x42\x12\x4d\xa7\x55\xac\x57\x6d\x04\x47\x57\xbb\xd7\x51\xd7\x7a\xd6\xf0\x28\x49\x85\x92\xcb\x4d\x07\xaa\x3e\x9c\x0c\x8f\x26\xfd\x88\x7b\x02\xd2\x3f\xad\x3e\x17\xcc\x2b\x17\x35\x10\xe0\x31\xc5\xc6\x32\x19\x18\x1e\x70\x46\x23\xe0\x5d\xfa\xde\x7c\xdd\x98\xfc\x27\xb3\x3f\x88\x56\x22\xa7\x98\x86\xda\xc5\x4f\x74\xe5\xea\x27\xb5\x79\xbe\x95\x28\xb7\x83\x1d\xc4\x79\x01\x68\xe5\x3f\xe0\xb8\xa0\xa3\x79\x2f\xe8\xfc\xba\x0c\x86\x42\x07\x17\xd6\xf8\x0e\x95\xb6\xf8\x9a\x96\x1f\xe3\xb6\xb0\x68\x48\x7e\x6e\xb7\x2a\xaa\xc4\x76\xc8\xda\x4c\xdc\xbe\x83\x8d\x96\x5e\x5e\x1b\xfe\xb4\x18\xc7\xb6\x60\x9c\x23\x3c\xfb\x5f\x29\x5e\x8e\xbf\xd2\xac\x89\x16\xd3\x58\x78\x18\x1e\xaf\xe3\x1b\xad\xc9\x6a\xb3\x65\x1b\xdb\x35\x1a\xf9\x73\xec\x2d\x4b\xfb\x7d\xe3\x66\x49\x4a\x1a\x7f\x8a\xc7\xe3\x9b\xc6\xe3\xed\x59\xe8\xda\x64\x14\x25\x56\xfa\x82\x0c\xa5\x9c\xf9\x9e\xae\x66\x00\x9b\xda\xc1\x20\xa6\x16\x96\x92\xab\x87\x12\x83\xe8\x23\xf8\x2d\xde\x64\x37\xd9\xbb\xd8\x9d\xa6\x69\xcc\xfb\x8e\x39\x35\xe8\x37\x1e\xc7\xf5\x4a\x5a\x55\x26\x19\x59\x2a\xa0\xa3\x6c\xf1\xe9\x4c\x51\xad\x22\x89\x47\x85\x88\x07\xa0\x11\x97\x5c\x54\xd0\xa2\xbe\x72\x7d\xc8\x18\x00\xaa\xe0\xeb\x46\x61\x69\xef\x62\xb7\x4c\xa6\xb1\x35\x39\x6d\x5e\x47\x3a\xf7\xbe\x6a\xad\xbc\xdf\x18\x39\xd8\xb3\xd0\x8d\x92\x41\x99\x17\xd9\xda\x6a\xc4\x7e\x1c\x73\xcf\x48\x18\xf9\x5a\x75\xac\x80\xfb\x0d\x2d\x08\xd5\xb0\x4b\x51\x0c\xac\x31\xe7\xa3\xf6\x8d\x82\xaf\x48\x00\xd3\x12\x08\xdb\x87\x9b\x5d\x4a\xe3\x81\xcd\xe6\x7d\x41\xeb\x96\x92\x8b\x7b\xba\xe7\xd1\x01\x1b\x70\x62\x70\x29\xd7\x1b\xdf\xdf\x51\xaa\x8e\xa3\x6c\x30\x57\x9d\x20\x7c\xea\x23\x45\x2a\xcb\xe0\x4d\x99\x83\x7b\x2c\x02\x67\x38\x4c\x33\xf1\xf0\xae\x78\x5b\xfd\xa6\x84\x0d\x8e\x12\x3e\x8c\x4b\x5a\x33\x94\xdf\x8a\x99\x1a\xc1\x2a\x82\xc7\xb1\xbe\x86\xa6\x30\x79\x91\xa5\xd3\x31\x0f\xc4\xe9\x8c\x87\xaf\x03\x1f\x29\x0e\xd3\x6c\x68\xa3\xa2\xcc\x2c\xe2\x39\xe4\x05\xe7\x94\x8e\xd4\x29\x6c\x22\xec\xae\x6f\xab\x43\x57\x64\x69\x99\xdb\x8c\x73\x70\x37\x12\xe7\xfa\x14\x70\x5f\x52\x59\x6b\xd6\x5a\xbb\xc4\x32\xc8\x1e\x0b\xe1\x08\xe3\xb5\xf8\xa6\x21\x30\x2a\xdf\xb1\x5f\x66\x13\x33\xa6\xe0\x1e\x47\xf2\x82\x86\x59\x5c\x50\xb9\x80\x99\x4e\xd3\x28\x29\x88\xe3\x88\x7e\x04\x49\xea\x1f\x07\x3e\x61\xfd\xe3\xd6\x98\xca\x26\x69\x39\x1a\x77\xfc\xd0\xf4\x3d\xb5\xd5\xef\xb9\x77\xb4\x6c\xc3\xe5\x1a\x67\x14\x1e\x44\x4c\x50\xf3\x2f\x77\x57\x49\x5b\x75\x50\xd7\x7c\x55\xd4\x12\x6d\xa0\x06\x22\x82\x33\x5c\x95\x96\x90\x8c\x3e\x15\xf9\xe1\x03\x35\xf2\x7b\x79\xe6\xeb\x3b\xa3\x32\x86\x7c\x95\x1e\x9a\x3e\xa5\x07\x53\x4e\xb5\xd1\xb2\x4d\x99\x67\xb7\x26\x0f\xa4\x35\x84\x74\x34\x58\x98\x29\xe1\xfb\xb5\x78\x3f\x4a\x7d\x57\xb4\xd8\xe0\x8f\x5a\x4a\x1f\xaf\x75\xc3\x74\x22\xfd\x69\x45\x19\xf9\xb2\xa3\x8c\xf4\x16\x6b\x1a\xdb\xa4\x60\x1a\x2f\xec\x51\xe6\x2c\xe1\x9b\xf5\x96\x2e\xd1\x34\x4b\xbf\x6a\x43\x17\x14\xc1\xe5\x7f\x4a\xbb\x92\xaf\x15\xa2\x6e\x62\xb3\xb0\xcc\xd6\x3a\x6a\xba\xe1\xb2\x52\x79\xbb\xac\xd2\x81\x41\x16\xd9\x01\x15\xf2\x24\x73\xf6\x74\x5e\x4d\x25\x48\xd9\xb4\x43\x13\x56\xef\x62\xde\x77\xf7\x81\xca\x75\x62\x29\xae\x0a\xf1\x4d\x3d\x48\x7d\x55\xe5\xd4\xab\x26\x37\x45\x38\x9e\x53\x6d\x76\x99\x3b\x45\x66\xfe\x83\x59\x6d\x5b\xf9\x1c\x7e\xd5\x0e\x46\x58\x87\x97\x5d\x2e\xe4\x0b\xe5\xe7\x67\x3a\x2f\x42\x4b\xa0\xe3\x31\xfa\xf8\x51\x19\x05\xf2\xce\x39\x35\xcb\x73\xbe\x48\x71\x4b\x69\xa8\x5d\xd4\x61\xf1\xd1\x99\x97\xa4\xb0\x8c\x30\x40\x58\xfc\x7f\x10\x3a\x83\xaf\xdd\x40\xf7\xd8\x46\x13\x9b\x49\xff\xc2\x49\xb3\x7b\xb8\xc5\x07\x0a\xfc\x3b\x36\x2b\x56\x26\x4e\xd1\xcb\xfa\x44\x09\x27\x7c\x12\x3c\xa3\x2a\x73\x76\x3a\xef\x47\x82\xb6\xf4\x54\xee\xfc\x17\xb3\xba\xb2\x67\xb5\x4c\x32\x59\xb9\xb9\x52\xf3\xc5\x6e\x99\x4b\xf6\x8b\x1c\xe1\xfa\xcc\x17\x1e\x6f\xe2\x0d\x20\x7a\x9e\x6f\x28\x94\x2c\xed\xee\x0e\x4d\x24\x93\x52\xfc\x19\x9f\xce\x36\x39\xb2\x05\x7e\xb9\xdb\x7b\x9b\xc3\x93\x83\xaf\x74\xc7\x26\x0b\xd3\x32\x23\x98\x16\xfb\xf9\x77\xb0\x3a\x7c\xa3\x4a\x5f\xe1\xd8\x64\x31\xd7\x53\x1d\x73\xa1\xa2\x31\x6c\x39\xfd\x2f\x77\xb3\x28\x77\xa7\x1f\x95\xee\x73\xaa\xea\x7d\x4e\x23\xf4\xd2\xac\x88\xd2\x04\xdd\x23\x74\x15\xbf\x13\x78\x6a\xc6\xef\xd0\xb9\x80\x61\x00\x43\x2f\x5f\x3f\x96\xb2\xbc\x1f\xa7\xe1\x72\xbf\xcc\x0b\xae\x16\x0b\x7b\x3e\x3d\xb3\xd0\xea\xfb\x83\x58\x58\x13\x8e\x3b\x4a\xb4\x9f\xe8\x70\xdc\xcd\xba\x84\x01\xc3\xcc\xe6\xa1\xe9\x34\xfb\xad\x52\x46\x69\x0e\xf1\x2c\x39\x92\x5a\x9e\x80\x45\xb0\xc2\xa6\x9a\x6f\x82\xcf\xa9\x81\xfb\x81\x13\x41\x64\xf1\x18\xac\xd7\x25\xf4\xfc\x04\xa8\x55\x7d\x2b\xbe\x0e\x14\xad\xd9\x25\xe7\x51\xfa\x26\xc6\x07\x3a\x8a\x33\xcd\x63\xe4\x37\x3e\xb1\x88\x4d\xe6\x54\x17\xff\x12\x2a\x11\xba\x2c\x27\xc3\x1d\x3e\xc2\x5a\x31\x71\x69\xfa\xb1\xdd\xa6\x0a\x29\x5b\x7a\xb4\x84\xf2\x24\xb4\x84\x00\x6d\x31\x0f\x9b\xc8\xeb\x52\x8c\xc4\x37\x0e\x9e\x90\xa7\x59\xb6\xa6\x14\x85\xdf\x53\x53\xe4\x4c\x29\xe3\x48\x69\xaa\x18\xcd\x21\xab\x9d\xee\x01\x53\x30\x49\x18\xe5\xdf\x6f\x3f\x8e\x92\x41\x87\xea\xc4\xc0\xcd\x81\xc8\x94\xaf\x5b\x66\x3c\x5f\xee\xda\xc3\x45\x94\x84\x94\x9e\x0a\x89\x9f\x6e\xba\x82\x7c\x05\xe5\xef\x13\xca\xb2\xe6\x36\xa9\x3c\xe5\x76\xe5\x52\xde\x06\x8e\x0c\x31\xc5\x6d\x20\xcc\xf8\x66\xa6\x0e\xef\xdb\x1a\xbe\x7a\x4a\x4d\x28\x9d\x52\x73\x50\x79\x91\x59\x33\x89\xa3\x84\x30\xd3\x82\x82\xba\xa9\x34\x70\x2f\x29\x44\xd4\xcd\xa0\xa6\x2e\xef\xff\xcc\x28\x5d\xb1\x59\x52\x05\x33\xcf\xcd\x39\x59\x8e\xff\xf0\x99\x75\x9f\xa8\x9e\xd1\x30\xa6\xf7\x02\x15\x91\x3e\xd1\x83\x3d\xe5\xbb\x75\xc2\x39\x3a\x91\x0f\x5f\x8f\xfa\xef\x74\x60\x71\x45\xe1\x1a\x6e\x61\x2f\x48\x3f\x93\xcc\x03\x1c\xfd\xb6\x9e\x42\xd9\x3f\xdb\xf3\x0a\x58\xd7\xc9\x18\x20\xf1\xc4\x14\xba\xd0\x1e\x6d\x36\xaa\xaf\xee\xde\x4f\xd4\xbb\xbe\xec\x8a\xc9\x94\x93\xff\x49\xda\xf5\xd7\x5f\x47\xd1\xcc\x02\x5b\x86\x07\x38\xa3\xe5\x10\xcf\xb4\x80\x98\x0e\x74\xf3\xc2\xf8\xc8\x53\x7a\xc5\xbe\x66\xa8\x7b\x76\xe5\x34\x4d\x76\x78\x81\x7a\x9e\x7e\x84\x79\x7f\xc4\xb8\x08\xd4\x3c\xee\x52\x81\xcb\x81\xf1\xdd\xba\x71\xb5\x8f\x7f\x5f\xe1\xbb\x8e\xb4\xa6\xd3\xab\x51\x66\x95\x2a\x07\x98\xbb\xa4\x15\xe4\xce\x9c\xc8\x98\x2a\x0d\x1e\xc7\x59\x72\x87\xbc\x2a\x7e\x65\x6b\xcf\x73\x5f\xc4\x96\xf2\xaa\xd7\x1c\xc7\xbb\x27\xf8\x63\x73\x88\x4a\x1d\x89\xd2\xcb\x35\xdc\x91\xf0\x6e\xfe\xb3\x96\x79\xcb\x34\xa9\xe2\x78\x1a\xd5\x14\x9f\x8d\xb6\xd8\x3d\x8d\x37\xd2\x34\x11\x61\xb6\x96\x13\xaa\xd7\x8d\xd9\x6e\x28\x7a\xf1\x26\xac\xa1\x7a\x65\xc3\x34\xb3\xa1\x71\xca\xc2\xae\xc4\xaa\xb3\xa8\x17\xbc\x35\x36\x51\x32\xcc\xcc\xc4\xe6\x1d\x3a\xb7\x68\x4d\xde\xc1\x89\xe6\x9b\x56\x31\x0f\x31\x8f\x64\x81\x65\x92\x4c\xb1\x7f\x6f\x28\xeb\x34\xae\xd2\x9f\x67\xab\x2f\xc1\x82\xb3\x14\x23\x0b\x7f\x95\x6e\x75\xdc\xd7\x83\x59\xf3\x3d\x32\x68\x88\x35\x98\x3b\x18\x06\x7c\x2b\xa1\xef\xe0\xfa\x77\x10\x39\x10\xca\x64\x77\x55\x06\xfc\xb0\x16\x9c\x50\x77\x1b\x4d\xe7\x3b\x0a\x58\xf5\x31\xea\xab\x40\xaa\xfe\xef\x7a\x92\xfb\xcd\xb6\x6a\x5a\x11\x0d\x87\x26\xe1\xd0\x17\x9e\xe6\x47\xf4\x91\x7c\x3d\xdb\xfc\xda\x1d\xb1\xe4\x38\x5d\x2d\xa2\x89\x46\x61\xbd\x3b\x53\xe5\x95\x77\x03\x9d\x29\x4c\xd3\x29\xf6\x1f\x90\x7e\xef\xe9\xb2\xd4\x45\x2d\x56\xf8\x48\xa9\xaa\xdd\x56\x7e\xe2\xac\xa2\x90\x9f\x44\x49\x62\xf3\xb4\x30\xf3\x2a\x10\x3b\xa2\xb7\xf1\x87\xba\x8c\x7b\x84\xc3\x64\xfe\x2f\x05\xa0\x30\x79\x64\x38\x82\x71\x42\x24\xd5\x73\xa1\xe0\xce\x83\x77\x4e\xab\x4b\xd3\x42\xb8\x41\xce\xa8\xa0\xfa\x06\xf5\x80\xa4\xec\xd5\x71\xc2\x59\x17\xd5\x08\xef\xba\x12\xc5\x25\x15\x6a\xb2\xc2\x4e\x39\xa4\x7a\x08\x81\x4c\xb4\x11\x2b\xc4\x69\xba\xcc\xb5\x5a\x99\x6e\x26\x9b\x2c\x43\xa2\x0a\xc6\x90\x45\x31\x47\x99\x52\x18\x3a\x37\xf3\x48\xdd\x79\xca\x3c\x60\x3a\x9a\x83\x11\x5f\x14\xba\x2a\x09\x53\x85\x60\xcb\x87\x14\x77\xf4\x52\x3c\x6a\x83\xe8\x8d\xcd\x74\xaa\x00\xe8\xdc\x71\x0e\xbc\xfb\x6d\x9e\xf3\xd7\x5f\xef\x9a\x3c\x4f\xc3\x08\x50\x22\x5f\x9c\x82\x16\x12\x5f\xab\x5c\x85\x25\x11\x10\xdf\x32\xf0\x97\x56\x5e\x40\xc0\x4e\x33\xd1\x66\x36\x2f\xb2\x74\x39\x32\xba\xd4\x0d\x33\xcd\xd7\x48\x15\x64\x3c\xfc\x5f\xfc\x53\x32\x1c\xf2\x47\xc9\x70\x38\x68\xf1\xa1\xfd\xce\x9c\xd3\x5f\x43\x0a\xf7\x36\x95\x50\x71\x94\x4f\xe9\xd9\xf6\x4b\xc4\xa6\x8e\xeb\xbf\x41\x10\x85\x6a\x09\xf7\xfc\x60\x83\xb7\xf6\x54\xac\x84\x79\x5e\x1c\xff\xab\x64\xcf\xb1\x68\xb7\xa9\x78\xcd\xb3\x32\x81\x62\x8b\x3e\x0a\xbb\x80\x42\xf4\xf7\xc9\x12\xe1\x4d\xb1\xb2\x98\xf2\x8d\xe2\xb0\xd0\xec\xc6\x86\xb8\xc9\xe7\x43\xa2\x88\xce\x6f\xfc\x9a\xdf\x62\xd5\x1e\x82\xc1\xb9\xad\x3b\x57\xd0\x92\x15\x31\x0f\x47\x64\xf8\x3f\x7f\x88\xce\xbe\xc8\xc6\x35\x29\x1f\x68\xba\xc1\x0a\x07\x8e\xd4\x7e\x58\xee\x92\x6f\x66\xb5\x31\xba\x61\x9a\x4d\xe6\x7d\xaa\x79\x2d\x50\xd3\x17\xd7\x66\x9a\x55\xf9\xae\x22\x4c\xbb\xdb\x70\xb0\x7b\xf6\x90\xf8\x06\x9f\x21\x9c\x55\xf8\x41\xbe\xd6\xcc\xe1\xd3\x32\xcb\xa4\x48\x0a\x30\xc4\x2d\xda\xbe\x7c\xfd\xd8\x22\x61\x6e\x4d\x21\x54\xcf\xb5\xc9\x64\x4d\x11\xc4\xc0\x7f\x15\x69\x84\x91\x7d\x09\xeb\x21\x4a\x7d\xbe\xa3\xf1\x67\x2d\x73\xf8\xe4\x79\xcb\x89\x94\x92\x10\x59\x1d\x0d\x54\x7e\x72\x74\xf6\x79\x05\xcc\x8d\x63\x53\xd8\xcc\xc4\xd1\x1b\x9c\xd1\x48\xc1\xa2\xfa\x18\x29\x64\x3c\xb6\xaa\x38\x36\x93\xbe\xcd\x62\x13\xa1\x1e\x8f\x35\xe0\xac\x9c\x6f\xda\xf8\x1f\xf2\xa2\x1c\x0e\x55\xfa\xc9\xd4\xdd\x7c\xa3\xc6\xef\xed\xaa\x14\x82\xd0\x22\x3c\xaf\x69\x08\xb4\x6a\xee\xa4\xac\xa2\xb7\x01\x55\xe6\x44\x93\xa9\x3a\x13\xa2\xd5\x24\x55\x84\x91\x89\x63\x93\x14\x73\x75\xa2\x7f\x5f\x56\xc6\x90\x14\x6a\x01\xf7\x83\x9d\xae\xa8\x91\xa4\x3b\x3d\x4e\xe3\x0a\x1d\x04\x24\x46\xe8\x53\xd2\xd6\xff\xe2\x2f\x90\x77\x86\x33\x61\x34\x04\xca\x72\x8f\xe0\x3c\x1c\x1f\xc0\x5e\x87\x94\x45\x60\x8e\x0e\xc7\x0f\x09\x73\x48\x27\xf2\xf7\xfe\x4b\x24\x3f\x58\x7f\x1c\x49\x3c\xe0\x13\xeb\xcf\xa8\x89\x17\xd0\x09\xbf\xcc\x8d\xce\xaf\xd3\x2e\xd7\xb4\x12\xee\x48\x2e\xed\xe6\x70\xf9\x1a\x36\x5d\x4d\x21\x00\xeb\x7e\xcc\x2d\xd2\x34\xb3\x2b\x26\x8a\xe7\x14\xc2\x15\xc7\x5d\x06\x1a\xab\x3f\x0d\xc0\xc0\xed\x86\x47\x3a\xf8\x4a\xd7\x1e\x0e\x6d\x8e\xf1\x1f\xac\x24\x30\x58\x30\x8e\x73\x3d\xaf\xfb\xfd\x93\x86\x93\xd9\xff\xca\x81\xae\x99\x28\x2b\x20\x40\xd5\x8e\xe3\x6f\x3d\xd5\x46\xa2\xd7\xcf\x8c\x54\xcf\xdb\x00\x56\x7e\x10\x27\xea\x4f\x48\x0e\x43\x38\x97\xc8\xee\xba\x99\xe5\x43\x8e\x77\x1c\x48\x2e\xac\x3f\x6b\x26\xbb\x99\xd1\x25\xa9\x3a\x7c\x1a\x78\xb8\x20\x06\xe8\x51\xad\x79\x1f\x96\x08\xa9\xeb\xf7\x14\x39\xeb\x9a\x4d\x90\x62\xbb\xbe\xb8\x67\x19\x06\x47\xad\xf4\xc8\xfd\x29\xff\x98\x0c\xbd\x34\x5e\x5b\x70\x92\xb1\x1d\x45\x79\x0c\x56\x94\x8e\x63\xca\xba\xa4\x68\xaf\x2e\x29\xb9\x91\x7e\x34\xd8\xa1\xe8\x45\xff\x9f\x5a\xbd\x81\xbe\xb4\x2b\x73\xee\x95\xc6\xed\x6d\x6c\x53\xe6\xbe\x0e\x3c\x6b\xc0\x11\xc5\x80\x70\x41\x05\xc1\x34\x6a\xdb\x51\xf9\x7b\x5d\xfb\xae\xa5\x91\xd4\x4f\xe3\xbc\xb0\x9e\x13\xab\x8d\x41\xc4\x1f\xf7\x69\x14\x2e\x8b\x65\xe0\xde\xb2\x22\x13\xde\x50\x16\x64\x3a\x36\x39\xe2\x76\xb8\xcd\x3f\x52\x2e\xf4\x8f\x02\x3f\xea\x44\x13\xee\xe9\x28\x0a\x3b\x5a\x97\xff\x07\x7a\x1e\xe2\x07\x7a\x15\xcb\xe2\x17\xfc\x01\xdb\xb2\xee\x11\x57\x42\xa5\x2b\xd1\x91\x9a\x96\x7f\x4b\x81\x0d\x7e\x0e\xbf\x86\x28\xfd\x46\xa0\xf9\xfb\xb0\x0d\x85\xdd\xd2\x07\xba\xb7\x50\x83\x71\xf2\xfe\x95\x9b\xc7\xc1\x7f\x7f\xd6\xf9\xd2\x6f\xb2\x39\x63\x75\x02\xec\xe2\x2b\x14\x7c\x30\xed\x10\x6d\x5c\x57\xcc\xdc\xef\x78\x6c\x4f\x51\xbe\x80\xbf\xf4\x09\x31\x7e\x38\xa6\xad\x2a\xbe\x41\xb8\xff\x0e\x4e\x0a\x1e\xfe\x0c\xcc\x01\xc2\x8a\x2b\x5a\xe3\x07\x43\x32\x6a\xc4\x49\x52\x9f\x07\x2a\x0f\x1b\xa4\xe9\x24\x37\x6b\x36\x43\x39\x99\x43\xfa\x5a\x78\xef\x98\x09\xcd\x61\xb1\x04\x78\x0e\xcc\xc1\xf2\x75\xdb\x14\x8e\x35\x59\xb2\x69\x17\x7d\x53\xed\xa2\x6f\x6a\x58\x69\x9c\xae\x5a\xc6\x9a\x8b\x00\x1a\x7d\x4b\xbe\x09\xbc\x4f\x7b\x4b\xb3\x04\xbc\xa5\x8a\x8d\x36\x29\xb2\x35\x02\x89\x09\x88\x9c\x7e\x90\xf5\xf3\xe9\x2f\x38\x2d\xfd\xbd\x8b\xf2\x43\xaa\x54\x1d\xc6\x69\x6e\xb3\x8e\xd7\x55\x47\x44\xce\xd7\x8d\x29\x50\x62\x2c\x2b\xb2\x28\x2c\x98\xaf\x9c\xb5\x08\xf0\xe0\xe8\x0f\x7f\xaa\x86\x4d\xdf\x69\x98\xd8\x57\x77\xbf\x56\xef\xe5\xc0\x2d\xbd\xa3\x00\x8f\xef\xa8\x84\x24\x4a\x8a\xf4\xb3\x5e\xca\xfc\x7a\xa0\xfc\xc7\x51\x30\x93\x30\x97\x90\x12\x50\x21\x02\xec\x97\x3d\xd1\xcd\x5e\x41\xbb\xcd\xad\x2b\xa5\xe6\x0d\x8a\xb1\xb0\xeb\xdf\x0a\x3c\x59\xd6\x65\x9a\x5a\x86\x59\xfd\x71\xa0\xbc\x33\x9b\x6b\x78\xb8\xf9\x75\x30\xa6\x38\x61\x82\xa5\xfd\x0e\x90\x4a\x67\x8b\x51\xf9\xd8\xab\x68\xc2\x7f\x8c\x48\x95\x3f\x46\x0b\x1b\x1c\xe3\x63\xeb\x86\x93\xaa\xd3\x05\x51\x9c\x6b\x0a\xd4\x7e\xa3\x55\x25\x22\x2f\xd2\x94\xb3\x2a\x19\x03\xf2\x90\x31\x9e\xc9\x45\x15\x66\xae\xa7\xe8\x84\xcb\x30\xad\x02\x27\x17\x33\xdc\xa4\x85\xe2\xeb\x59\xb7\x09\xcc\xd9\x44\x81\xe5\x07\xbe\x3e\x51\x8c\xc5\x9f\x28\xc4\xdf\x30\x33\xe5\xa0\x8c\x2d\x22\x9e\x97\x6b\x22\x41\x30\x30\xb7\x95\x67\x3d\x57\x9b\x4b\x4a\x32\xa6\xc5\x96\x4c\x48\xd5\xb8\x2e\x6b\x36\x27\x9b\x55\x81\xb8\xcd\xb8\x08\xa3\xea\xd8\x2f\xbb\x02\xf7\x67\x54\x33\x3f\x4a\xc2\x68\x6a\x62\x2a\x0e\x23\xcf\xff\x88\x5e\xbe\x5c\xd3\xe7\xa0\x1e\x3c\x47\x81\x83\xe0\xa8\xaa\xa7\x96\x22\x52\x65\xb2\xf8\x17\x34\x07\xe0\x38\xcd\x0a\x33\xb2\x74\x32\xe0\xd3\x60\x57\xe0\xae\x4e\x10\xb4\x19\x0d\x91\x0b\x8d\x6a\xe3\xd2\xee\x6e\x99\x03\x41\x81\xd3\xf7\xa1\xe6\x49\x7e\x5f\x11\x6b\x7e\x48\x2f\x8a\xff\x7d\xf6\x59\x85\x31\xed\xa7\x99\x29\xd2\x2c\xaa\xb2\x4f\x3f\x56\x3c\x53\x63\xc5\x81\x26\x1f\x1f\x66\x26\x62\x08\x32\x8a\x09\x97\x6b\x2d\x76\xdf\xe6\xbf\x11\xa8\x5e\xce\x86\x92\xd9\x64\xd6\xb6\xc1\x13\xb4\x61\x45\x0e\xbd\xfa\x6c\x51\x43\x57\x7c\x4e\xb7\x34\xd9\xe9\x95\xc0\x13\x84\xc9\x2c\x97\x1c\x19\x8f\xa0\xba\xad\x24\x18\x3f\x68\xd8\xdb\xd7\x5f\xef\x0e\xad\x75\xf2\xab\x0c\x0e\x52\x08\x8c\x4b\x8d\x09\x06\x97\x0f\xf1\x94\xfd\xa2\x93\x4f\x3b\x4b\xdf\x97\xaf\xdb\xa0\x62\xf9\xd7\x4a\x93\x61\xdb\xb3\x71\xa0\x87\x13\x43\xf1\xbc\x9a\x17\x88\xa6\x53\x41\x82\x09\xbf\x92\x9f\x62\x39\xd3\x88\x20\x5f\xdd\xdd\xcd\xa2\xd1\xb8\xd8\xe6\x2b\xd3\x67\xa9\x32\xad\x3b\x5d\xf0\x7d\x37\x67\xaa\x56\xff\xb1\x9a\xb7\x7e\xa0\xde\xec\x28\x33\xc3\x42\xb2\x44\x29\x93\x76\xdc\xa0\xf3\x7b\x6d\x00\x23\x37\xbc\xd0\x98\x57\x40\x65\x8c\xe9\x31\xf0\xf2\xae\xa9\x94\xb4\x9f\x45\x6f\xa4\xb1\xe9\xd4\xfa\x28\xea\x10\x5d\x0e\xbc\x40\x06\x51\x7d\x9a\x22\x0a\x31\xee\x23\xd0\x08\x6f\xe0\xa6\x88\x2b\x24\xa4\x6b\x11\x42\xb4\xc6\x53\xd8\x31\x71\x87\xe2\xd6\x79\xd8\x54\x41\x7d\xe5\x40\x77\xd5\x64\x53\x48\x32\x2f\x7a\x77\xe8\x60\x5e\x40\xe9\x49\xac\x4e\xd6\x12\x79\xc3\x91\x9a\x41\xea\x17\xf9\x9c\x97\x10\x7b\x7f\xe6\xf9\xed\x7f\x1a\xd4\x5a\x15\x6a\x28\xc8\x64\x23\x5b\xe4\x44\xc6\x09\x14\xcf\xd5\x99\x1a\x20\x3b\xae\xf9\x1a\x8e\xeb\x99\xca\xab\xc1\x66\x15\xc0\xff\xaa\x9b\x58\x80\x9c\x58\xd6\x42\x41\xa3\x9a\xbb\xf5\x2b\x0b\x94\x92\xb2\x63\x17\x82\x7d\x45\xb6\xaf\xe0\xf7\x61\x9a\x17\x86\x2b\x03\xba\xed\x8f\x6a\x29\x83\x9b\x65\x53\x3e\xaf\xc4\xfd\xfa\x99\xc9\x97\x4d\xc7\xcf\x37\x30\x1e\x56\x64\x80\xbc\xd1\x1d\xd8\x69\x6c\xdd\x4c\x8f\xe3\x70\xd8\xb7\xcf\xf5\x05\xfd\x16\x19\xa4\x49\x62\xe3\xd8\xae\xed\x50\x9e\xfe\x86\x86\x31\xdd\x25\x5f\x8b\x8e\x0c\xc8\x1c\x50\x9e\xbc\x41\x4b\x82\x6b\x48\xea\x88\x94\xaf\xaf\xe9\x7f\xaf\x11\xd1\xec\xdb\xd7\x35\x83\x15\x9b\xe5\x86\xc9\x00\xda\x38\x58\xdb\x08\x47\x48\xe6\x1b\xb1\x21\x53\x61\x6a\xa5\xaa\x3f\x69\x69\x04\x2e\x76\xf3\xa9\x49\xa2\x1c\x3c\x5b\xad\x43\x47\xd2\x1c\xfe\xaa\x5d\xed\xa7\x5c\xfc\x86\xf5\xbb\xa7\x2c\xe1\x3d\x15\xc0\xad\xa4\x51\x68\xb1\xc5\x90\x13\x9f\x99\x29\xb4\xed\x3d\x55\xd7\xf9\x1f\x68\x1d\xa4\xed\xb9\xd9\x30\x2e\x2e\x56\xa7\x73\x9c\x66\xd1\x1b\xee\x7c\x09\xa3\x89\xaa\x9e\x5f\x54\xcc\xad\xcb\x36\xe5\x3a\x0a\xa7\x8a\xb4\xc3\x24\x6d\xf4\xaf\x74\x1c\x25\x03\x3b\x89\x8a\x71\xc7\xdb\x4b\x0c\xb8\xf0\x75\x2b\xef\x64\x61\xc9\x88\xce\x29\x1a\x13\xd4\xdd\x51\x2f\x78\xa8\x58\x62\x7f\xaa\xf1\x1f\x85\xdd\xe5\x85\xe3\x38\x77\x86\xdf\xdc\x49\x79\x12\xea\x94\xbb\x7a\xde\x00\xfc\x30\x50\xc4\xe8\x3f\x21\x27\x8d\x2a\xf4\x55\xad\x47\xcd\x7c\xb3\x64\x3f\x76\xbc\xd8\xf3\x5b\xe5\x1e\x25\x2d\x72\x04\x3a\xbf\xf1\x6b\x7e\xfe\x6f\x49\xe6\x2f\xee\xcd\x14\xf3\xf0\x99\x59\xe7\x2b\x0b\x4e\x29\xb2\x8a\x3d\x6a\xbc\x3c\x70\xbf\x57\xdb\xea\xd7\x36\xc9\xd2\x38\xb6\xf5\x29\xff\x77\xf4\x94\xff\x3b\xae\x8c\x92\x9b\xcc\x2c\x47\x35\x96\x72\x74\xfa\x9d\xe2\xd9\x97\x0f\x3d\x96\x55\xa1\xda\xac\x3c\x53\x41\x11\x09\xbe\xdd\xb1\x99\x12\x0b\x47\x64\x83\xac\x13\x9d\x3e\xfc\xe1\xb7\xeb\x61\x5c\x9a\x3d\xa1\xf8\x1d\xe1\xdb\xf1\x4b\xc7\x74\x0f\xe8\x78\xe0\xa5\x7c\x7e\x36\x6b\xd0\xc3\x28\x29\xa2\x05\x26\xd6\xa6\x56\xcd\xe2\xa3\xb7\xda\x28\x18\xf2\x34\xf3\x5e\x82\xc7\xf7\x15\x5e\xe8\xeb\x2e\xc1\x1b\x96\x59\x0a\x54\x07\xba\xac\xc0\x0b\xf1\x75\x3b\x0b\x55\x1e\xc5\xcb\x4c\x72\x8c\x08\x1b\x23\xe4\xc8\x23\xae\xa8\xe2\xd4\x89\xd9\x2f\x37\xf3\xc3\xc2\xc6\xc4\x39\x51\x26\x82\xcb\xe8\xe8\x65\xa4\x3f\xcb\x37\xea\x90\x67\xe4\xf4\xa8\xa4\xc5\xa5\x78\x15\x9c\xed\x5c\xf7\x8b\x7f\xbf\xd5\xff\x4d\x0c\xf9\x02\xf2\xb9\x42\xdb\xea\xfb\x3f\x7f\x18\x78\x28\x54\x62\x8b\x67\x55\xb1\xf0\x44\xa0\xb4\xdd\xcf\xe3\x7d\xc1\xf0\x7e\xa0\x06\x40\xe6\xd7\xab\x4d\x8f\x42\xf2\x87\x64\x64\xf0\xea\xfe\x5d\xe0\xb9\xdc\x4f\xd7\x12\x1c\xa6\x90\x63\x1e\x64\xbc\x6e\x9e\xc2\x98\x79\x6e\x88\xb7\x34\x04\x71\x5d\x51\x1b\x6f\x43\x79\x92\x1f\xab\x61\x3d\x96\x76\x57\x79\x71\x44\x12\xd3\xf4\x17\x44\xbd\xc6\x73\x8f\x6d\xd4\xd8\x9b\xed\x6a\xfe\xb4\xdf\x03\xcc\xe9\x28\xfc\x2d\xe4\xdb\xdd\x5f\x70\xe4\x50\x20\xad\xc7\x56\x3c\x85\x65\xe2\xc8\x1e\x81\x12\xca\x58\x0f\x02\xb5\x05\xdf\x9c\x29\x7c\xcb\x77\xea\x6c\x15\xd5\x4a\xe1\xe0\x33\xd8\x0a\xcf\xf2\xe7\x2a\xbc\x37\xa3\x51\x66\xf3\x3c\x5a\xb1\xf1\xda\xbc\x52\x63\x99\x29\x3a\x53\x90\xa1\x3a\x99\x16\x07\x0e\x7d\x53\xb5\xe1\xc2\xac\x8a\x7d\x51\xac\xc6\x1b\xb8\x1e\xf8\xb2\xf3\xf5\x46\x62\xb2\x70\xb0\xbb\x66\x13\x8e\x10\xf8\xb4\x62\xa3\xc2\xd4\xef\x5c\x77\x27\xeb\x5f\xed\xea\xf9\xda\x57\x3f\xed\xf7\xd7\xb6\xa9\xc5\xb8\x8c\x2a\x01\x8c\xfe\x47\xb4\x03\xb1\x39\x6e\x05\x8f\x53\xc5\xf1\x15\xb2\xcc\x7e\xad\xa4\x61\x92\x6d\x8a\x21\x15\x25\x67\xec\x16\x50\xa4\xa1\xd4\xc5\x52\xf1\xfc\x43\x9a\xe3\xfa\x52\x9b\xba\xd7\xaa\x59\x5b\xa5\xf2\xbd\xab\xb9\x5e\x57\xf4\x0d\xd7\x5b\x6a\x18\xdd\x69\x66\xa7\xc4\x0f\xee\xc7\x6e\xb8\x56\xc0\x37\xca\xff\x55\xc1\x78\x96\xa4\x69\xb2\x4d\x0d\x07\x32\x61\xaa\xde\x58\x92\xf6\xf9\x94\xfc\xaa\xde\x8a\xa7\x15\xc5\x9d\xe9\x67\x66\x82\xfa\x55\x8d\xe6\x88\x6f\xd4\x30\x80\x29\x62\xe2\x42\x50\xaa\x2b\x1b\xb5\x74\xeb\x3b\x38\x8b\x22\x64\x46\x4f\x25\x0a\x67\xf4\xbc\x4c\x9b\x85\x0f\x80\x5d\xb8\xab\xc0\xda\x44\xec\x10\x0d\x25\xe7\x14\x1e\x0a\xcf\xea\x79\xd9\x0d\x77\x4f\xb3\x74\x50\x86\xae\x78\x20\xce\xa7\x5a\x6a\xbe\x76\x01\xd0\xc4\x16\xe3\x94\x33\x18\x64\x3e\x70\x5e\x7c\xdd\xa8\x83\x54\x61\x5c\x62\xe2\x14\x99\xa0\x4b\xba\x7c\x02\xa6\x9b\xdc\x63\x03\x42\x27\x54\x65\x4e\xa1\xac\xc3\x37\x0d\x8c\xfc\xde\xca\x13\x7a\x7a\x7b\x5d\xe5\x87\x6f\x7a\x9c\x80\xe7\xc2\xc1\xae\xad\xb2\x3a\x1e\x30\xc4\x56\x3f\x3e\xf3\x0e\xf0\x26\x7d\x73\xa1\x22\x6c\xce\x34\xbd\xd6\x25\x71\x0d\x27\x3d\xfd\xbb\x7e\x1c\xfa\xbf\xff\xdd\xb6\xe6\xdb\x34\x8d\xa3\x22\x0a\x73\x5d\xfa\x3e\xa2\x94\xf5\x8f\xb4\x00\xde\x5f\xab\x2e\x58\x3f\x0d\xb1\xca\x33\xd4\x4a\xe0\xeb\x9e\x1f\x95\x4c\xa4\x45\x89\x64\xe0\x81\x56\xdd\x7e\xa0\x68\xa1\x56\xa3\x6c\x0d\xa8\x70\xa7\x8d\xe2\xc2\x2e\x04\x0a\x02\x5e\x97\x4e\x78\x3f\x4d\x97\x97\x41\x0b\x86\x70\x0f\x69\xc1\x79\x05\x45\xc3\x50\x30\x7e\xf1\x13\x35\x34\x12\x47\x7d\x9b\x41\xed\x0a\xc9\xf2\x31\x25\x12\x7f\x4c\x55\x7d\x4d\xdf\x24\x83\x14\x82\x4f\xae\x1d\x05\xb6\x03\xbe\x6e\xbc\x01\x42\x37\xd8\x62\xbe\x26\x43\x59\x7d\x17\x54\x9e\x6f\x04\x6a\x36\x19\x92\x90\x82\x1b\x69\x43\xb0\x0e\x4b\x1b\x4b\x5f\x14\x79\xdb\x45\x1c\x36\xbe\x69\xc4\x7b\x07\x5f\xe9\xf6\x63\x13\x2e\x4f\x4c\x04\x9d\x4a\x58\xb0\x7f\xa0\x4f\xe2\xeb\xd9\xe7\x55\xa5\x94\xa6\x5a\x22\x34\x53\xe7\x3c\x52\xfa\xb8\x9a\xdd\x39\xa2\x84\x00\xbe\xa1\x3a\x1a\x03\x62\xd3\x80\x41\x11\x52\x42\x3a\xef\x42\x57\xa8\x80\x52\x55\x04\x3a\xb2\xdb\x3c\x69\x10\xf4\xdf\xa5\x48\xa3\xf8\x1f\xe1\x81\x64\x02\xb7\xfa\x64\x04\xdc\xba\xc3\x3c\x89\x84\xdb\x4f\xe6\x13\xd4\x3c\xfe\x86\x0b\xd4\xc6\x76\x58\xac\xcd\xf9\x06\xe3\xb6\x1e\x1d\x5a\x67\x3e\x5d\xe6\x77\x6f\xf6\xa2\xa2\xbd\x33\x83\x08\x43\xef\x3b\xfc\xf0\x5e\xa7\x47\x7b\x0c\x69\xf7\x0d\x65\x55\x36\xf0\x42\xe1\x3d\xc1\x46\xa6\x14\xf1\x5e\x13\xa9\x2b\x58\x45\x99\x66\xdc\x1c\xe3\xb9\xe6\x74\x9a\xc0\x5d\xd3\xc8\xbd\xcf\x5b\x98\xc0\x96\x6f\xd6\x1f\xd7\xaf\x8f\xd3\x89\xc9\x75\x47\x5c\x73\xba\x6e\x28\x4e\xd7\xc1\xaa\xc9\x86\x08\x73\x50\x1c\x3d\xae\xc1\xde\xc7\xdb\xd4\x08\x62\x3b\x2c\x74\x5a\xf0\xa3\x99\x6f\x71\x5f\x53\x4c\x2d\x97\x95\xee\x4a\x3a\x9d\xa6\x59\x51\x26\x34\x08\xec\xe1\x8f\x3f\x0e\xfc\xa0\xe0\x8f\xdd\x90\xc7\xb4\xec\xc7\x51\x48\x3d\x7d\x7a\x30\xf8\x81\x1b\xf4\xb3\x7c\xed\x7f\x36\x36\x51\xe5\x3f\x86\x6c\xb5\xf0\x46\x91\xdd\xf1\x75\x5b\x7a\x38\x35\xa4\x11\xce\xbf\xc4\x9a\x56\x81\x6a\x6e\x9e\x57\x5d\xb8\x7e\x56\x86\x3c\x78\x84\x3a\x27\x26\xae\xf8\xba\xd1\xd4\x7c\x75\x37\x4a\x02\x85\xc2\x9c\x23\x01\xb9\xa2\x92\x91\x2b\x81\x3e\x13\x65\x12\x46\xcc\x2b\x20\x9a\x9f\x70\xb2\xcc\x85\x4d\xdf\x1d\xe7\xee\x07\x6a\xcb\xfd\x49\x1b\x2f\xe9\xd8\x24\x83\xb0\xac\x56\xc4\xa7\x06\x97\x74\x6a\x70\x49\x7d\x74\x3f\x25\xd1\xbb\x39\x55\x4a\x3a\xcf\x1f\x0d\xc7\x74\x57\x6b\x66\x9f\x55\xa5\xf0\x49\xba\x62\xb1\x86\xd5\xc7\x48\xe7\xa1\xa3\x98\xd0\x54\xc3\x31\x4d\xb0\xd2\x22\x74\x50\x25\x8f\x22\x80\x20\x19\xe7\xea\xd8\x66\xb6\xbf\x06\xdc\x9a\x08\x33\x13\x41\x36\x12\xe5\x39\x9c\x59\x21\x04\xaf\x0c\x08\xdc\xfe\x49\x37\xc9\x3a\x34\x87\xe9\x69\x98\x05\x9a\x9e\x46\x18\xa1\x9b\x02\x54\x04\x9a\x15\x60\x24\x42\x1f\x04\x6e\x7c\xed\xa2\x89\xa2\xcc\x12\xa9\xf6\xf2\xe0\x21\x25\xed\x32\x84\xd8\xd4\xf2\x7c\xad\x5b\x26\x79\x49\x9b\x5e\x76\x31\x4a\x73\xf7\x67\xbe\x9a\x77\xdf\x49\x2e\xae\x98\x5c\x70\xa6\xa2\xd4\xad\xf6\xe2\xe9\xc0\x1f\x24\x93\x85\xe3\xa8\xb0\x61\x51\x66\xb6\x53\xe3\xf8\xf4\x0f\x7e\x21\x78\x46\xd5\xc3\x6c\xfe\x82\x0f\x8f\xcf\x22\x86\x46\x21\x97\xc1\xeb\x42\xde\xe9\x47\x4c\xee\xa9\x20\xfa\x86\xe2\x63\x78\xe6\x79\xe6\x3e\x11\xfe\xd2\xea\x35\xc2\x4b\x3c\xd5\x53\xd4\x33\x73\x90\x9d\x63\x3d\x56\x42\x8a\x31\xe3\xba\x26\x56\x87\xd4\x1c\x0c\xcd\x1d\x64\x21\x02\xc1\xa9\x6c\x3d\x7a\x71\x77\x54\x05\xea\xce\xac\x73\x48\xc0\x0b\x7f\x4b\x2f\x40\xa6\x34\x69\x21\x44\x57\xf4\x19\x75\xae\x06\x60\x21\x56\xed\x6c\x19\xb8\x3f\xce\xe8\x30\xe9\x54\xab\x12\x50\xb6\xf6\xac\x87\x4f\xed\xe2\xaf\x8c\x25\xbb\x8d\xe7\x14\xce\x6a\x0f\xd8\x61\xdd\x2d\x7c\xe5\xcb\x9e\xf9\xf7\xb7\xff\xb3\x9e\x2a\xeb\x6d\x68\xe6\x06\x14\x0b\x68\xc5\xfe\xf5\x2f\x62\xf9\xd0\xb2\xfb\xf3\x99\xe2\x2c\x60\x12\x46\xf4\x8c\x3b\x80\xb8\x3b\xb7\xb2\x7f\xc9\x53\x06\x3c\xab\x80\xff\x71\x9c\x6f\xa3\x4a\xb8\x1b\x5a\x59\x94\x0d\x78\x13\xe1\xaa\x9b\x6c\x71\xf5\x8a\xf7\x67\x4a\x53\x7c\xa3\xad\x78\xd1\x1d\x9a\x15\xa7\x7e\x8b\x22\xd5\x43\xb8\x5b\xbe\x69\x9b\x3a\x3c\xd0\x1d\x98\x28\x46\x6d\x54\xb4\xe0\x3a\x8a\x5d\xa5\xa5\x36\x3a\xb1\x85\x95\x8f\xc1\x86\x3c\x3d\x53\x5d\xa6\xd3\x0d\xc8\xf6\xe2\x62\x9d\xbb\x57\x73\x5a\x73\x0d\x42\x98\x7c\x37\xdb\xcb\xea\x6b\x15\xe9\xc8\x16\x63\x9b\x75\x3c\xc2\xf0\x0f\xe9\xd5\xf2\xb5\xee\xcd\x54\xae\xc6\xe6\x3c\x1c\xee\xea\xd6\x4a\xb1\x5e\xa1\x32\xc2\x34\x29\x4c\x94\x60\xea\xfa\x65\x27\x6b\x50\xad\x84\x98\xf5\xcd\xdf\x64\xcf\x82\x28\xed\xd8\xa9\x83\xc4\x60\x97\x77\x7a\x3e\x84\xed\xac\x3b\x3a\x69\x1b\x96\xc4\xd1\x46\x2f\x0f\xe7\xe7\xfb\x33\xef\x84\xb7\xf6\x3c\xc6\xe5\xd3\x46\x88\xba\x70\xb0\xdb\x4f\x07\x20\xb0\x16\x94\x3f\xed\x50\x84\xab\x3f\x57\x19\xc6\x51\x45\x1b\xbe\x66\xf3\x27\x7d\x48\x72\x7f\xa6\x14\xbe\x59\x10\x83\x7e\xff\xff\xfe\x85\x9e\x82\x5f\x5f\x50\xdc\x11\x2f\x92\x8a\xb8\x28\xa5\xd0\x5a\x22\xcc\x3b\x42\x05\x50\xfc\x29\x5d\x84\xbf\xdf\x16\x88\x7c\xe1\x57\x7f\x85\x07\x75\xe1\x07\xae\xa9\xe1\xdc\x0b\x84\x3b\x42\x6f\xeb\x5d\x95\x5d\x4c\x4d\x31\xa6\x6a\x37\xe6\x79\x59\x60\x8e\x6f\x66\x9e\x58\xe6\x02\x0e\xba\xec\xd8\x96\x6d\xf3\xcb\xdd\x91\x4d\x6c\xc6\xd1\x99\x70\x62\xf8\xef\xf8\xfb\x8a\x41\x2b\x34\x65\x6e\x69\x84\x4a\x6c\xdc\x45\x2c\x9a\x94\x99\xab\x9d\x27\xb3\x37\xbe\xb1\xb1\xb5\xe7\xd7\x7c\x79\xad\xdc\xe6\xe9\x0c\xce\xea\x81\xd7\x4f\x03\xc5\x4c\xfa\x0f\xb4\xcc\xe8\xd7\xff\x98\x16\x41\x60\xb2\x4a\x4e\xd1\x8e\xa4\x9b\x82\xc1\x81\xb3\x81\x92\x26\x3b\xab\x0a\x05\x63\xb3\x12\x25\x23\x4a\xfe\x85\x89\xae\xc6\xd8\x5b\xfd\x16\xfa\x74\xc7\xf5\x24\x14\x46\x42\x04\x54\xee\xfb\x27\x17\x14\x7e\x25\x9a\x4c\xd3\xdc\xea\xf7\x77\x51\x55\x3f\xc1\x9e\x83\x77\x79\xa6\x15\x85\x69\xad\xe0\xc6\x85\x8f\xb1\xe3\xa8\xfd\xcf\x2b\x14\x41\x66\xa9\x68\x20\xa5\x52\x09\xbc\x7d\x68\xf0\xc9\x4c\x2b\xf0\x18\xe7\xb0\x45\xdc\xc8\x0f\xf9\x9d\x57\xbc\x9d\x79\x39\x1a\xd9\xbc\x90\x84\x10\xe8\x32\x40\x66\xf8\xda\x25\x1f\x26\x9a\xd8\x01\x01\x06\x24\x1d\xf2\x13\x73\xd7\x61\x3c\x10\xf4\xb1\x22\x02\xea\x62\xff\xa4\xe7\x11\x12\x0f\x66\x4a\xb6\xe2\x78\x5b\xc9\xba\x48\xcb\x2c\xca\x0b\x25\xdd\x7b\x5b\x49\xf7\xde\x06\x8a\x4f\x5a\x91\xe8\xd9\xa3\x0e\x0f\xc0\x0e\xfa\xd6\x60\x67\x94\x84\x92\x3e\x52\x48\x8f\x9b\xf3\x2b\xdd\xc4\x8e\xd2\x22\x32\x05\x57\xc0\x59\xca\xbb\x26\xeb\xed\xb7\x5c\x3a\x1c\x46\xa1\xdd\x49\x27\x00\x01\x07\x86\xa7\x10\x17\x40\xcd\x12\x09\xd2\x96\x75\x55\x1c\xbf\xa5\xbf\xf8\x1d\xc5\x4b\xf2\x7c\x4f\x09\x47\xbf\x89\x0e\xaa\xab\xf8\x7f\xe9\x37\x3d\x43\xc0\xbe\x7d\x75\x55\x22\xfc\xfa\x96\xc6\x14\xeb\xe2\x62\x77\xc5\x16\xa9\xbc\x7c\x6e\xda\xa8\x1a\x68\x5b\x1b\x6f\x7f\x37\x8b\x56\x6c\x36\xa7\x68\xea\x8e\xe2\x89\x71\x00\xaf\x05\x9a\x2b\xee\x44\xb3\x71\xbe\xa7\x1b\x9a\xbc\x34\x71\xb1\xa6\x36\xe7\x79\xb5\x39\x9b\x9f\xba\x67\xa1\x6b\xa6\x91\x0d\x2d\x81\xc7\x51\xf4\x7d\x7a\xdd\xfb\x06\xc0\xd6\x51\xd4\x7c\x06\x95\x6e\x2c\xdf\x79\x75\xf8\x12\x52\x7a\x26\xd2\x1f\xc4\x56\x3c\x7b\x8f\x82\xf4\xc7\xb0\x8a\x22\x3b\x56\x9d\x7e\x19\xaa\xf6\x6e\xf1\x8e\x1a\xa7\x39\xd1\x42\xff\x99\x59\x13\x8e\x5d\x02\x04\xcc\xe2\xb7\x03\x8f\x5f\xfc\xf6\x6c\xa7\x4f\x0f\xb3\xcf\xd1\x27\xe2\x3b\xdf\xa2\x88\x11\xce\xe5\xe3\xc0\xd3\x9f\xdc\x87\x4d\x66\x2c\x12\xb0\x58\x08\xcb\x80\x0e\xc4\xae\xdb\xba\xae\x4e\xd4\xfd\x40\x75\x8f\xbe\xa3\xe6\x47\xe7\x68\x2e\x49\x58\x57\x28\x90\x42\xbc\x05\x03\x07\xc3\xfa\x03\x2c\x0a\xfe\x14\xcd\x5c\x1e\x78\x74\x05\x10\x03\xac\xc7\x83\x40\x37\xbe\xaf\x6b\x6e\xa8\xdb\xb3\xce\x17\xbe\xc0\x81\xe2\x5d\x55\xc8\xe8\x10\x15\x2d\x8a\x0d\x27\xc9\x3e\xa3\x25\xb3\x05\xd9\x8d\xf0\x15\xf9\x7a\x3b\x97\x8a\xb1\x2d\xd1\x72\x01\xd5\x08\x5f\x2b\xa2\x1c\x7b\x78\x1c\xf5\xa3\xa2\xa3\x4d\xa7\x4f\x0b\xce\xd4\xca\xe1\x85\x89\x62\x9b\x91\x4f\x92\xba\x2f\xf7\x2b\xf1\x77\x3f\x50\xd5\x4f\x9e\xf5\x92\x19\xd2\xe7\xdd\x94\x6c\x95\xa6\x17\xae\xec\x06\xdb\x8f\x49\x27\x18\x17\x58\x71\xe4\xaa\xef\xd4\x1a\x7b\xc5\x98\xf8\xb4\x65\xea\x4d\xcf\x5d\x70\x08\x02\x34\x2c\xa2\x06\xe9\xe1\xa8\x69\x8a\x77\x68\xed\x58\xfe\xb2\xb1\xfd\xf6\xec\xe9\x96\x99\x2d\xc6\x99\xa1\xc5\x40\xb8\x75\x43\x85\x5e\x37\x1a\x3e\x65\xdf\xbe\x6e\x61\xfa\x69\x8a\xe0\x51\xeb\xea\x4b\x67\x41\xd1\x2f\xc6\x66\xad\xf2\x8b\xb4\x5e\xcc\x90\xa3\xa6\x15\xb9\xc6\xc3\x6b\x10\xd4\xa4\x94\x9d\x88\xe9\x4f\x14\xfc\xe7\x4e\x4b\x76\xda\xcd\x52\x33\x58\x35\x6b\x73\xbe\xd5\x76\x47\x85\xeb\x38\x8a\xe2\xdb\x5b\x0c\xcb\xc0\x4e\x2b\xe3\xc4\xf6\x0c\xb1\xd6\x5d\xac\x20\xdf\x3c\x76\xda\x23\xb3\xd3\xfc\x25\x85\x54\x3a\xaa\xd5\x75\x8e\xb6\x30\x80\x90\x1d\x34\xc2\xf9\x83\xc4\xe9\x96\xce\xf5\x9a\x42\x9a\x7b\xf6\x74\x33\x54\x60\x54\x78\x1e\xe8\xc0\xdd\xa5\xdf\xa3\x68\x85\x78\xf6\xaa\x1f\x04\xbf\x09\xf3\xa8\xc9\xcc\xa9\x1f\x6e\x78\xa0\x20\x26\x61\x9a\x4f\x6c\x11\x85\x14\xdd\x32\xcd\x3c\x5e\x0c\xda\xf3\x97\x54\x56\x74\xb7\xf1\x7c\x7b\x17\xbb\x43\x6b\x32\x26\x28\x11\x61\x3a\x6a\x05\xe1\x86\x5f\x32\x12\xbb\xab\x4a\xca\x23\x37\x43\x5b\x00\x55\x2b\x23\xee\xe4\x1f\xd4\xf0\xbb\x0c\xa7\xfc\x54\x71\x55\xfe\xb4\x8d\x4e\x26\x8c\x69\x58\x5f\x31\xc2\xf2\xc0\x87\x88\xd4\x3c\xa7\x59\x6f\x46\x69\x01\x6b\xdb\x56\x13\x68\x91\x75\x58\x4d\xb3\x65\x7e\x67\x38\xdb\x98\x54\xe0\x6b\xe5\xbd\x87\x59\x64\x93\x01\xe9\x6f\x4b\x86\x4b\x4f\x21\xf8\xbb\x8e\x12\xba\x51\xc8\xf0\xcb\xc8\xbd\x84\xf9\x6d\x73\x08\xbf\x77\xb1\xdb\x8f\x96\x91\xe3\x70\x68\x43\x9f\x2f\x61\xce\xe6\x9f\xff\xca\x02\xd1\x00\x53\x1f\xdb\x95\x35\x2b\x63\x0c\x53\xf1\x29\x32\x5b\x99\xc4\xdb\xc4\x7c\xbf\x70\xb0\x7b\x68\x69\xf7\x33\x1e\x9d\xc1\x72\xb5\xd8\x43\xdf\xa3\xd3\x04\x8a\x96\x9f\x90\x01\x43\x5a\xff\xde\xac\x46\x23\x50\x99\x1c\x98\x71\x76\x2c\x42\x36\x49\xdf\x53\xc8\x13\xe1\x13\x10\xe5\x5c\xd4\x43\xe5\xeb\xaa\x8c\xf7\x0d\x6c\x1f\x46\x46\x04\x8a\xc8\xe7\x4a\xad\xb9\x1c\x95\x13\xb4\xd4\x9d\x9a\x59\xe5\xab\x78\xe8\x05\x7f\x03\x65\xa8\xb3\x64\x5b\x84\x04\xa3\xf2\x87\x6e\x94\xc8\xa9\x29\x1e\x09\x74\xaa\x8a\x47\x13\xc0\x51\xb5\xaa\x28\x86\x9c\xc0\xaa\x0a\xb9\x86\x9a\x44\x9a\xf9\xee\xd8\x6d\x08\xa2\xc1\x36\x6e\x5b\x57\xd4\xc4\x4d\x86\x90\x7d\xfb\xba\xc3\xb2\x20\x75\x35\x3d\xbe\xe3\xd3\xb0\x9b\xea\x28\xde\xc6\x5a\x20\x4e\x3b\xab\xd2\xe9\x69\x1a\x83\xda\x19\xb9\xae\x84\x5b\xbe\x6d\x7b\x31\xf0\x05\xa5\xf7\x5b\xba\xae\x2f\x77\x87\x65\x56\x25\xfa\xdb\xe8\xcd\x23\xbc\x39\xae\x1a\x5c\x7f\x81\x2f\x8e\x8a\x16\xc8\xfb\xe0\xd3\x1e\xd0\x7a\xc2\xd8\x5e\x68\x98\xcd\x3d\x7b\xba\xe9\x8a\xcd\xfa\x69\x39\x1a\x17\xf3\xbe\xa5\xfc\x97\x04\xd4\x11\x71\xa5\xea\xd9\x6a\x42\xae\xc8\xf1\x9a\xdc\xd2\x0b\x07\xbb\xa6\x9f\x96\x45\xc7\x53\x79\x61\x44\x92\xaf\x15\x61\xf2\x2f\xfd\xd6\x97\xfe\xcd\xd2\xae\xea\x2f\xa3\x45\xfe\x48\x11\x52\xde\x53\x88\x95\x1d\x3d\x55\xa6\xb9\x40\x8f\x25\xbc\x47\xd5\x17\xc3\xf6\xbe\x5b\xc3\x58\x3c\xa4\x20\x0c\xae\xea\x1e\x1e\x58\xb0\x48\x95\x65\xc3\xf1\xfb\x1e\x36\x20\x40\x91\xef\x6b\xc5\x1f\xc6\xd0\x33\xb7\x28\x0c\x20\x3c\x2f\xde\x3b\x8e\xdd\x3c\x11\x2b\xc0\x4f\x3e\xd9\x7b\xc6\xf5\x79\xcd\x1a\xcf\x07\xd4\x84\x3d\x98\x01\x42\xd1\xce\x9f\x09\x5e\x54\x0d\xac\x61\x5c\xda\xa4\x88\x4c\x3c\x4f\xaf\x11\x67\xf3\x67\xb0\x0a\x7c\x83\xe3\xac\x84\x01\xdd\x8d\x6a\xf0\xc6\xe9\x28\xed\x68\xd3\xa9\xcb\x0a\xc2\x77\x6b\xe2\x38\x0d\x7d\xb2\xc8\x65\x44\xfa\x51\x29\x29\xaa\xfe\x18\x11\xb3\xe6\xdb\x3b\x8e\xd2\xea\x1a\x4e\x22\x4f\xad\x06\x8a\x77\xf6\x0c\xe4\xba\xb0\xd8\x7f\xa7\x28\x6d\xaf\xc1\xca\xf0\x7f\xb4\x59\xc7\x15\x9b\xad\x75\x94\x60\xd0\xcc\xeb\x99\xb6\xf2\x76\x41\x73\x88\x5d\xb0\x9b\x14\xaf\xde\xa8\xc8\x62\xf8\x99\x72\xe2\xba\xed\xa8\x42\xc0\x4c\x91\xf6\x5e\x50\x41\xe8\xc0\x86\x71\x94\xd8\x1d\xd5\x67\x23\xd0\x40\x0d\xca\x8d\x8d\x56\x5f\x15\x09\xff\x51\xbc\x1b\x01\x7e\xd1\x1f\x74\x6c\xb4\x4a\xbc\xba\xfa\x54\xd9\x49\xbe\xf0\x45\xc4\x7d\x32\x94\x8a\xd2\xc5\x96\x9e\xd2\x45\xa3\x44\x52\x0a\x7a\xfb\xdb\x8e\xd9\xd8\xda\xb8\xe6\xff\x2e\x29\x98\x7c\x53\x08\x69\xcf\x1e\xad\x25\x86\x03\x74\x1b\x21\x0b\xdf\xb4\xb8\xf0\xfd\xdd\x58\x28\x1e\x5e\x73\x24\xf9\xca\x0c\x9e\x9c\xbd\xe8\x2d\x5c\x96\x4e\xb3\xc8\x92\x66\x00\x1d\x1f\x58\xc7\x73\x8a\x80\xee\x5c\x8d\x59\x30\x9d\x4c\x0b\xae\xad\xb6\x92\xc6\x35\x51\x9a\x07\x68\x56\x2c\xb3\x68\xfa\xf8\xc8\xf0\x3d\xd5\xf7\xbe\x5a\x17\x94\xfa\x8c\x3a\x62\x61\x66\x4d\x6e\xb1\x91\xe1\x2d\x99\xb2\x0c\xd5\x46\x1e\x71\x91\x91\x37\xfa\xfb\xf8\xb1\xe3\x4a\x47\x1a\x19\x25\xec\x77\x53\xa6\x97\x02\xc3\xdc\xc6\x68\x5a\xb3\xf8\x3f\xf6\x06\xdf\xa8\x4a\xa4\x35\x83\x67\xe9\xf3\xe1\x6d\xb7\x83\xf5\x07\x6d\x62\x88\x91\xc0\xbd\x6d\x59\xaf\x5c\xb7\xc2\x4d\x73\xe1\xff\xc1\x0b\xeb\x4a\x85\x03\x08\x4f\x49\x63\xc8\x88\x20\xbf\xe6\x4e\x09\xaa\x40\x3b\x91\xa9\x49\x65\x44\xcd\xf4\xee\xa0\x34\x1c\x9f\xf8\x99\x9e\x6f\x8b\x5d\xd7\xd0\x9e\x6d\x3d\x7f\xa8\xa6\xb1\x49\x8a\x67\xb0\x83\x85\xb9\xcf\x0f\x32\x7d\xaa\x25\x39\xae\xe0\xf4\xb3\x1a\x03\x76\x10\x0a\x4d\xd0\xf6\x07\x96\xee\x23\x32\xce\x7c\x0d\x7b\x8c\x1f\xba\x42\x1e\x0c\x0e\x1a\xd0\x4b\xb4\x21\x29\x8d\x96\xfc\xe2\x01\x82\x1a\x69\x15\xf9\xfa\xcc\x5b\xaa\x1b\x9a\xa7\x49\x02\x49\x0b\x21\x9e\xe8\x38\x6a\x95\x0f\x95\x3d\x16\x58\x34\x21\x7b\xdc\xa0\xdc\x43\x35\x28\xf7\x50\x65\xb9\xe5\x72\x66\xa2\xc4\x2a\x03\x73\x62\xa6\x7c\xd6\x09\x35\x9e\x60\x0f\x4f\x6d\x58\xe4\x4f\x28\x64\xf9\xd1\xc0\xcb\xd3\xf1\xec\x0e\x73\x00\x28\xba\xbb\x37\xb1\x39\xd1\x63\x61\x19\x66\x98\x9e\x73\x8a\xef\xfd\x3a\x76\x07\xff\x47\x0b\xb2\xf5\xb5\xee\x30\x0d\xcb\x5c\x0c\x3f\x03\x23\x70\x64\x04\x25\xe1\x57\x81\x38\x1a\x22\xaa\x3f\x92\xb0\x01\x12\x44\x54\x3a\x45\x75\xaf\xe3\x84\x26\xce\xaa\xad\xfd\xa5\xfd\xa2\xd4\xe7\x26\x6c\x1d\xbf\x23\xb7\x07\x11\x58\x5f\x6d\x61\x3c\x7b\xad\x32\x0e\x43\xd6\x6c\x83\x3f\xba\xaa\x7c\xd3\xd5\xd9\xe7\xb4\xf0\x9c\xcd\x86\x56\x4a\xa4\xaf\x2a\x70\x8b\xeb\xcd\x9f\x54\xdd\x25\x53\x99\x00\xc2\x43\xb8\xd3\xec\x6b\x4f\x9a\x5a\x87\x0b\xfb\x38\x8c\xf7\xb0\xb5\xf8\x57\x02\x3f\x09\x01\xa8\x97\x8c\xce\xb5\x44\x8e\x03\x33\x31\x23\x3b\xa7\xca\xf1\x1b\x0a\x7d\x7a\x2f\xf0\xbc\xbe\xa7\x14\x8d\xc6\xea\x38\x05\xfe\xdb\x17\x16\x3f\x9a\x79\xbe\x47\x00\x59\xc4\xe8\xbf\xa0\x8b\x2d\x2c\x35\x34\xaf\x98\x88\x78\xec\xc2\xa1\xba\x3d\xf9\x19\x5c\x2c\x5f\x2b\x2a\x97\xa9\xc9\xcc\x24\x2d\x93\xa2\x36\x90\xfb\xa1\x1e\xc8\xfd\x50\xbd\xeb\x74\x95\x63\x16\xb4\xd9\xd1\x23\xc2\xc7\xed\xa0\x9a\xac\x10\xe5\x54\x9f\x86\x00\xf7\x13\x55\xcd\x03\x5c\x75\xce\xe7\x6e\x9d\x75\x35\x70\xb5\x85\x00\x96\x28\x8c\x3f\xef\x82\xac\xcc\x8c\x46\x70\x01\x0b\x8e\x18\x60\xce\x6b\xb0\xdf\x52\x95\x8f\xb9\x06\x69\xe9\xc2\xc1\xae\x9d\xf4\x4d\x96\x99\xdc\x1d\x04\xf8\xd9\xb3\xaa\xc6\x76\xd6\x13\xe5\x8f\x33\x4b\xba\x86\xfb\x25\x5f\x26\x17\x00\xab\x79\x7c\xa6\x8b\x68\x70\x76\xd8\x4e\x0f\x28\xe1\x42\x09\xfc\x9f\xf6\x94\x6d\x3a\x3a\xd3\x8b\xa2\xa4\x7b\x23\x37\x58\x8d\x6d\x07\xc0\x38\x5f\xab\x84\xb6\x6f\x0a\x63\x98\x42\x5b\x98\x66\xaa\x9d\x22\xfc\x20\xb5\x52\x55\x9a\x92\xfa\xa5\xb4\x33\x68\x27\x02\x3b\xfd\x51\xe0\x2b\xd2\x6c\x49\x11\x4e\x5e\xc7\x76\x47\x1e\x80\xa7\x45\x4b\x6c\x17\x35\xb5\x90\xe9\xb0\xeb\xe4\x72\x2a\x7d\x3e\xe2\xae\xfb\x7a\xb2\x5e\xc7\x91\xd1\x64\x5a\xad\x78\xc7\xe3\x88\xeb\xf5\xf6\x16\xf6\x99\x49\x94\xc7\x96\x04\x81\x71\x84\x04\xf5\xeb\xdd\xf1\x15\xc5\x53\xfd\xc3\xc7\x72\xfc\x4e\xb3\xb4\xef\xaa\xb9\x6d\x63\xf1\x4f\x6b\x4e\x79\xda\x8b\xc8\x94\x39\xb8\x45\xa5\xfe\xda\xcc\x8f\x41\xfe\x4c\xf3\xee\xda\xc3\x45\x44\xac\x8e\x4b\xe2\xb1\xc0\x5e\xe6\x15\x87\x5c\x2d\x22\x32\x05\x1b\x46\xf9\xda\xd5\x12\xb0\xcd\x09\x3c\x73\xfe\xd7\xd5\x01\xdb\x7b\xe0\xd7\xe6\xea\xfd\x7e\x3f\xf8\xf3\x40\x57\xbb\xcf\x37\x26\x57\x0f\x2d\x1c\xec\xe6\xe9\x74\x1c\xe5\x45\x84\x80\xdf\x63\x1d\x8f\x6a\x32\xea\xa3\xae\x60\x65\xb2\xd0\x24\xba\x77\xfb\x48\xd9\xc8\x47\xda\x4c\x64\xe9\xd0\xe2\x08\x1d\x72\x92\x89\xef\x10\xcc\x81\xaf\x9b\x02\x7e\xaf\x75\xbf\xf4\x9b\x3b\xc9\x58\x68\x6e\x50\x46\x01\x10\x70\x43\x10\x32\xb4\x89\xe0\x98\x31\x25\x2f\x93\x8a\x8a\xf3\x10\xca\x77\x58\xe5\xe3\x50\xe0\x44\x79\xfe\x1c\x6a\x37\x28\x4e\x33\xec\x41\xcf\x16\x32\x44\xaf\x91\x66\x2f\x1c\xec\x86\x36\x8e\xcb\xd8\x64\xba\x92\x7a\x52\xd9\x93\x93\x6a\x62\x60\x62\x92\x79\xcf\x0f\x72\x5e\xd5\x44\x4f\x2a\xa5\xed\x8b\xb4\xcb\x61\xc2\x4e\xbb\x14\xc0\x4c\xa7\x26\x2b\xca\x9c\x6c\xbc\x6b\xe1\x3a\xa1\xeb\x7b\x5a\xc1\xf9\x8c\x02\x78\x64\x13\x53\x43\x2a\xfa\xae\xa3\x9f\xa0\xca\x29\x99\xdf\x41\x5b\x97\x0a\x1e\xff\xf2\x85\x9e\x52\x68\x38\x31\xf3\x9d\x32\x1e\xce\x91\xe9\x56\x5f\x48\xba\xac\x88\xb9\x9f\x45\x57\x02\x91\xd9\x53\xbd\x17\x54\x95\x32\x19\x02\xe7\x07\x7c\x11\x1a\x76\x77\x03\x35\xf1\x7c\x57\x61\x12\xf3\x22\x9a\x94\xb1\x11\xb1\x27\xa1\x81\x81\x58\x09\x5f\x07\x02\x87\x5a\xb3\xf9\x0e\x45\xc3\x7d\x4f\x97\xa5\x3b\xeb\x9d\x5f\x17\xb8\xdc\x3b\xf4\xdb\xee\x0b\xb8\xb8\xf5\x26\x75\xe3\xe9\xdf\x3f\xfb\x42\xcf\x8f\x23\x3d\x6a\xc1\xbc\x2d\x74\x57\x6d\x1c\x47\xc9\xa8\x48\x31\x15\xee\x68\xa6\xaa\x07\x90\x24\x54\x85\x11\x83\x49\x84\x12\x87\x03\xd3\x38\x91\x96\x0d\xd7\x62\xa0\x64\x65\x58\xe5\x2b\xa8\xc3\xe2\x2d\x43\xdb\x53\x7d\xc0\x81\x86\xc0\x68\x56\xc6\x40\xb5\xf9\x13\x4f\xef\x12\x30\xd3\x3f\x9c\xa9\x7e\xf7\x15\x15\x5b\xc6\xa6\x1c\x8d\xeb\x1e\xed\x75\xcd\x3f\xfc\x7a\xa3\x88\xf9\xc5\xae\x29\x07\x11\x98\x6b\x85\xc0\xa3\xa3\x88\x3d\xb4\x27\xc9\x97\x23\xe4\x81\xa2\xb7\x45\x7f\x59\x0c\x8f\x37\xf3\xc3\xa8\x5a\x48\xe8\xc9\x8a\xa0\x70\xf5\x55\x1e\x5d\x51\xf2\x71\xe0\xee\x11\xf8\x7e\x2d\x2b\x8c\xa3\x61\x14\x82\x43\x96\x8f\x2c\x4a\x1d\x72\x7e\x9b\xa5\x80\x03\xdd\x3c\xcc\xac\xc5\x9b\x43\x46\x88\x39\x7b\xbe\x76\x20\xbd\x34\x19\xa5\xce\x97\x60\x5b\x21\xeb\x41\x54\xf2\x3c\x65\x3d\xf0\xe4\xb7\x5b\x10\xd1\xdd\x32\x67\x1a\x5c\xf8\xfe\x7f\xab\x0a\x56\xff\x56\xc1\xf8\x50\x46\x43\x23\xfc\x49\x24\xf5\x30\x5e\x90\x6f\x15\x96\xac\xea\x97\x61\xa1\xde\x56\xb9\x44\x51\x66\x93\x34\x8a\xe7\x55\x37\x0e\xe2\xcc\xc2\xdb\x53\xad\xab\xab\x59\x55\x87\x08\xb5\x6b\x3f\x9c\x38\x28\xfb\x51\x5a\x22\x6f\x71\x22\x95\x5e\xb0\xb2\x36\xfe\x4a\x94\xea\x8e\x42\x8b\xa5\x73\x04\xe4\xd1\x0a\xb8\x49\x27\x1d\xdf\x88\x82\x69\x93\xd2\x98\xec\xfb\xd5\x68\x60\xf3\x69\x66\x0d\xab\xf6\x39\x02\x5c\x87\xe6\x7f\xa8\x0a\x9f\xbb\x10\x7a\x08\xc0\xa8\xfa\x4a\x8f\xce\x7a\x00\xf2\x4a\xb7\xd7\x22\xcd\x55\x64\x00\x44\x0b\xde\xb5\xfa\xd3\x78\x71\x0f\xd5\xf4\x4a\x1b\xc9\xfd\x42\x77\x90\x99\x55\xa8\x67\x21\x1f\xb9\xac\x43\xc7\x3b\x8a\x85\xfb\x78\x2b\x47\x52\x61\x0e\x03\x77\xe9\xe2\x52\x24\x11\xa2\xaf\xe4\x4f\x02\xbf\xca\x39\x0f\x02\x3c\x1f\xf8\xc6\xed\x25\x35\x3a\xf7\x97\x55\xea\xe9\xa2\x89\xc9\x34\xcd\x4c\x16\xc5\x6b\x3b\xe8\xfd\xe2\xa0\x63\xa9\x11\xf4\x00\x71\x80\x5f\x1d\xc3\x80\xf3\x0f\x51\x96\xa0\xc6\x2e\x17\x9c\xea\x05\x7d\x47\x01\xa6\xfa\x19\x82\x71\x99\x8c\xb2\x35\x8a\x5c\x5c\xdd\x6d\xaf\x5b\xbf\xe0\x85\xba\x03\x3f\xf8\x4a\x77\xcf\x9e\x27\xc8\x03\x63\x7b\xbf\x87\x7c\x02\xe9\xf8\xbb\x2a\xe9\xea\xac\xab\x31\x35\x6e\x8a\xe2\x04\xa3\x87\xec\xdc\xbf\x2e\xfb\xbb\x95\xff\xf3\xa6\x8a\xe2\x6e\xea\xa4\xd1\xa6\x86\x55\xd9\x02\x29\x76\xbe\x69\xdb\x24\xe3\x14\x29\x39\xda\x97\xd7\x11\x29\xf1\x8d\x62\xd1\x70\xd4\x1e\x79\x47\x8f\xb4\x74\x1c\x89\x95\x0e\x62\xfb\x59\x64\x87\xf1\x1a\x4d\x7e\xa3\xb6\x71\x0b\xf5\x61\xbe\x69\x08\xc6\x10\x23\xeb\x64\x0a\xf7\x82\x00\xd4\x41\xca\x1c\x9d\xce\x05\x15\xed\x1d\x4c\xd3\x79\x45\xc4\xf9\x2e\xb9\x31\x94\x75\x30\x20\x88\x5f\xd9\x0a\x78\x1a\x9c\xf5\xb5\x46\xf0\xfc\xea\xee\x97\xbb\x49\x9a\x15\x63\x6b\xf2\x82\x76\xa0\xf0\x9b\x56\x7f\x02\x8e\x84\x3b\xa3\x88\x31\xf4\xa6\x48\xb3\xc2\x8e\xcc\x13\x1e\x3a\x21\x24\x15\xdc\x7b\x84\xe9\x47\x74\xf3\x63\x54\x97\x9c\xc0\x6b\xb5\x16\x1c\xf7\xa8\xa6\xf2\x35\xda\x55\x12\x0f\xd1\xc7\xca\x58\xeb\xe6\x37\xbd\x67\xa1\x3b\x8e\x46\xe3\x39\x1f\x80\x02\x6b\x0a\x03\x31\x8f\xe4\x10\xc6\xf0\x5a\x83\xdb\xbf\xfa\xda\x83\xa8\x72\x07\x83\x48\xa2\x5d\x09\x13\xd4\xcc\xd9\x3b\xc1\xe6\xed\x52\x9d\xec\x3c\x25\xab\xe0\x98\x96\x5d\x37\x0f\x04\x42\xf8\x26\xef\xb6\xc9\x36\x8d\xd3\xbc\x30\x23\xc1\x6e\xb2\x74\x21\xed\x67\x91\x31\xf4\xa0\x66\x13\x9b\x97\x3a\x3e\xce\x62\x5e\x3d\xbe\x69\x6d\x4f\xe7\x85\xcd\x6c\x4a\x88\x19\x14\x27\x31\x0b\x8e\x64\xf4\x09\xe4\x61\x4c\xc8\x8a\x78\x42\x7a\x3d\x2d\x3d\xd9\x69\x9a\x66\x96\x83\x5b\x06\xae\xa1\x95\x28\x28\x36\xa7\xd4\x62\xcd\x8a\x85\xca\x39\x06\xd0\x2f\x05\x3e\x86\x3a\xab\x4d\xe6\xdf\x29\xd6\x87\x24\x2d\x9c\x71\x74\x7c\x57\x8a\xc9\x5f\x0d\xe7\x4d\xc2\xd8\x26\x89\x49\x3a\x35\x54\x36\x56\x43\x20\xda\x1e\xb1\x66\x68\x6c\xb8\x88\x04\x8b\xcf\xfa\x83\x2a\xfb\x3b\xad\x32\x64\x13\xc7\x76\x2d\xef\x54\xc6\x56\xbc\x1e\x6d\x4c\x71\x87\x2d\xf0\x89\x49\x3a\xb0\xf1\x9c\xf7\x99\x5c\x8c\x66\xaf\xab\xf4\x3c\x9a\x63\x25\x7b\x17\xbb\xb1\xd8\x26\x19\x17\xf6\x3f\x7f\xbe\x25\x62\xe9\x0e\x2c\xb1\xd9\x2b\xc4\xdb\x25\x85\x78\xbb\xa4\xe2\xfd\xbd\xaf\x2c\x20\xb6\x46\x03\xad\xb3\xee\x07\x28\x3a\x3d\x3f\x67\x19\x66\x36\x0f\x6d\x32\x48\x55\x11\xf2\x8c\xee\x72\x9c\x51\x09\x6b\x99\x44\xc3\x28\xcb\x11\xc1\x32\xc0\x2c\x50\xb5\xf7\x8d\xca\xf5\x3b\x49\x81\x3c\x8f\xfa\x51\x1c\x15\x32\xe5\x08\x9f\x0b\x1f\xc4\xd7\x75\x01\x92\x72\x42\xb2\x4f\xf0\xae\xdf\x41\x5b\x92\x91\x0a\x54\xe1\xe5\xff\x08\x94\xc2\x0f\x0d\x55\x4a\x8d\x36\x8c\x30\x55\x19\x6e\xc7\xd6\x10\x72\xca\x8e\x23\x76\x7a\x82\xc2\x47\xd4\x3b\x18\x63\x8e\x32\x19\x93\x65\xb0\xdb\xa9\xd1\xec\xb4\xcd\xa5\x2d\x47\x03\xe1\x2a\x77\x2f\xce\xbf\xc4\x26\xde\xfa\x95\x03\xdd\xd1\x5a\xa6\x58\x58\x98\x9b\x21\xe8\x28\x4d\xae\xcf\x6a\xa2\x54\x47\xc5\xfd\x14\x9d\x18\x0c\x70\x5d\xa2\x30\x40\xc8\x02\xc1\xa5\xe5\xe8\x18\x7c\x53\xfc\x23\xb4\xcb\x1d\x45\xe5\xd2\x6e\xee\x84\x5f\x57\xc3\x07\x97\xbd\x52\xee\xbf\xfe\x6c\xcf\xc3\x67\x3f\x03\xf7\x28\x39\x49\x9b\xa0\x42\x98\x26\x2b\x36\xa9\x16\x9b\xb6\xae\x56\x0b\xe0\x6b\xd5\xde\x89\x32\x82\x72\x99\xbe\x0c\x96\x33\x73\x3c\x2d\x98\xb0\xc8\x3f\x0e\x93\xb3\x66\x4d\x56\x03\xb6\xc3\xbd\x8a\x85\xf0\x3b\xd3\x24\x49\x5a\x26\xa1\x9d\x57\x7a\xef\x3b\x10\x42\x3b\x1a\xee\x45\xc5\xb7\xeb\x99\xfe\x9b\xdc\xb2\x24\xe5\x9b\xe6\xc5\x1c\xe5\x12\xf0\x72\x47\x40\xe4\x87\x23\x7e\x1b\x7e\x4c\xb8\x41\x75\xb2\x93\x45\x23\x34\x98\x58\x99\x40\x33\x50\xcd\x14\xd3\xf2\xf7\x95\xd7\x1c\x94\xfd\x34\xb7\x14\x4a\xa1\xa8\xf6\x96\x82\x7c\xbe\xd5\x6e\xd9\x27\x54\x37\x52\xad\xd1\xb3\x7a\x03\x34\xc9\x6d\xaa\x64\xc7\xac\xa4\x2c\x4c\x8b\x62\xc7\x29\x1c\x73\xbe\x69\x1b\xc5\xcd\xe3\xb4\x0c\x31\xe6\x8a\xd2\x1f\x54\xa1\xf8\xba\x85\x91\xbf\x1b\x25\x2b\x4a\xbd\x50\xe4\xbf\xe9\x8b\x8b\xb6\x45\x5b\xb7\xb0\x8f\xf7\xec\x41\x47\x3c\x28\x2b\xe9\x8f\xf4\x9f\x2b\x17\x5d\xe6\xb9\xf0\x61\x2b\x9d\x52\xf1\x98\x2c\x1a\x2e\xec\x2d\x8a\xb4\xcf\x4c\xa6\x65\xae\x79\x8a\x7f\x3e\xf3\x55\xc4\x9f\x37\xa1\x5a\x0b\xdd\x61\x96\xf2\x16\x17\x39\x87\xce\xa2\x97\x7c\x68\xc9\xf3\x86\x71\xba\x3a\xaf\x20\xa5\x28\xcc\x20\x6c\x87\x48\x19\xa2\x48\xf0\x20\x48\x27\xa1\x45\xb8\x29\x2f\x33\x27\x8b\x28\x6a\xdc\x64\x37\x44\xa6\x5b\xbc\x6d\x3f\x36\x13\x29\x13\xa0\xce\x84\xcf\x71\x25\xd5\x6a\x31\xa4\x64\xec\xcb\x89\xab\x69\x5a\x13\x76\xbf\xa2\x84\xdd\xaf\x28\xb1\xa6\x7e\x5a\x14\x31\xd8\x4c\xd0\x41\x3a\xaf\xa5\x67\x37\x94\x38\xc2\x79\x3d\x13\xd3\xec\xbb\x2f\x1c\xec\x0e\x4d\x12\x46\xc2\xa8\xe1\x58\x03\x1d\x5a\xa3\xb9\x0e\xa4\x90\x67\xcd\x54\x7e\xc7\x91\x72\xb9\x17\xf2\x9e\x8a\xc6\x87\x76\x40\xa4\xc8\xb9\xd4\x49\xa5\x63\xa0\xca\x21\x33\x58\x79\x74\x43\x4e\x28\xf4\x5a\x94\x0c\x4b\xae\x30\x3b\x4b\xbb\xe8\xac\xae\xda\x45\x99\xcd\xcb\x89\x9d\xaf\xce\x2a\xd2\xe7\x47\x81\x6e\x04\xd6\x1a\x84\x4b\x32\x4d\xf5\x48\xb9\xe5\x5f\xf9\x95\x5f\xed\x78\x88\xcd\x1c\x75\x68\xf9\xba\xa7\xf8\xd0\x27\x93\x28\x61\xa9\xb3\x03\x8c\x43\xe2\x3c\x84\x6f\xda\x84\xa4\xa7\xb1\x35\x74\xbe\x65\xac\xb8\xe3\x79\xe0\x14\x66\xce\x86\xe3\x94\x43\x5c\xc1\x1b\x79\x7b\x73\x56\x95\xb4\xfb\x66\xd4\x51\xc6\xec\x0c\x76\x13\xdf\x04\x72\x26\xcb\x24\x49\x8b\x28\xe4\xf1\x69\x54\x80\xb8\xf7\xeb\x90\x72\x6e\x29\xde\xaa\x31\x7d\x85\x51\x21\x5e\xc1\xf1\x80\x54\x1f\x21\x91\x94\x66\x09\x2c\xab\x9d\x08\xa6\x35\x44\x31\xd7\x03\xcf\x46\x78\x91\xbe\x2a\x8c\xdf\xbb\xae\x1c\x46\xb2\xd3\x1d\x35\xfe\x86\x42\x3c\x5f\x2b\x90\x55\x5e\x94\xd3\x68\x40\x13\x4e\x3e\xf9\x3c\xae\x63\x37\x65\xae\xf3\x32\xb3\x31\x93\xd9\x68\xb8\x2e\xbe\xe0\x7f\x08\x7c\x5d\xfe\x9c\xd2\xaf\x2b\xc6\x99\x35\x05\x78\xf4\x3d\xcb\xf2\x2c\xf0\x84\x22\x33\xa7\x1f\x6c\x0f\x87\x71\x09\xce\x92\x8e\x8e\x44\xaa\x9f\x15\x8c\xa1\x7c\xc7\x51\x95\x42\xcc\x93\xa7\x62\x6a\xd8\x99\xef\x4f\x3c\xd5\xf3\x51\xc9\x03\xca\x07\x05\x46\xeb\xbf\xfb\x28\x8d\x6d\xd2\x4f\xc3\x65\x98\x5f\x27\x16\xef\x0b\x3a\x67\x1b\xb6\x71\x71\x91\x9a\xf8\x56\xc9\xb6\x5e\x52\x24\xe7\x97\x54\x6d\x71\x92\x12\xb7\x2b\x99\x10\x78\xbe\x47\x41\xbd\xab\xe9\x32\xad\x27\xd7\x7d\x09\xb1\xd3\x93\xed\xd5\xcf\xac\x59\x1e\x9a\x1c\xc5\x31\x38\x11\xee\x3a\xc9\xea\xd3\xb3\xc2\x29\x61\x23\x00\x51\xbf\xab\xf7\x8c\x6a\x7d\x25\xcb\xcf\xea\x02\x6d\xf5\x63\x8e\xfe\xf5\x90\x8b\xaa\xfe\x63\x4d\x5c\x5c\x25\x45\x3f\xc2\xe9\x83\x89\xbc\x86\xaf\x20\x83\x0b\xaa\x9d\x78\xb1\x8a\x6e\x1f\xcd\xb1\x44\x0f\xe2\x94\x9f\xc3\x3f\xa1\xa3\xf7\x26\x75\xf7\xa4\x52\x56\xd9\x11\xd4\x01\x19\x4d\x89\xc3\xf5\xbd\x06\xd3\xd8\x17\x89\x20\xb1\x5f\x46\x31\x35\xb5\x7c\xc3\xe0\x9e\xa2\xc9\x3f\x83\x86\x85\x00\x7d\xdd\xb4\xb8\xcd\xf2\x28\x2f\x6c\x02\x95\x79\xd6\x59\x57\x6a\xb5\xcf\x50\xf8\x87\x90\xbc\xb3\xee\x6d\xd5\x82\xb5\x0a\xc4\x70\x42\xcb\xf1\x9c\x68\x24\xc2\x07\x5f\xe9\x16\x2b\x68\xa5\x23\x5d\xff\x6b\xfc\x3c\xdf\x28\xac\x54\x3f\x2e\x93\x82\xb7\xb6\x84\x12\xb4\x84\x12\x63\x3c\xa7\x80\x04\xa1\x89\x63\x4d\xdc\xf5\x4d\x4d\xdc\xf5\x4d\x85\x0b\x2a\x56\x23\x1e\x4c\x7a\x75\x37\xf4\x8c\xf7\x3f\xba\xe2\x8c\xd4\xc0\x16\x96\x48\x54\xe6\xfd\x50\xc2\x96\x9e\xcf\xd4\x6f\xd0\xe1\x12\x31\x3b\x35\xa5\xa6\x33\xf0\x41\x69\xe2\x39\xed\xb9\xa9\x73\x84\xb4\x1f\x0d\x29\x04\x77\xb7\xdc\xc7\x0e\xcb\x38\xce\x43\xc3\xd3\xd6\xc8\x09\x61\x57\xf8\x5a\x55\x88\xf2\x82\x1a\x1c\xdb\x14\x0f\xb9\x80\x13\x65\xae\xc6\x17\x3f\x6f\x28\xbe\xcf\xf7\x68\x4b\xc1\x8b\x7e\x32\xdb\xe9\x63\xe2\xa8\xa3\xf4\x1c\x03\xdd\x70\xf2\xb0\xbf\x3c\x8e\x06\x6a\x34\xf0\x2e\xd4\x9a\xee\x04\x0a\x20\x84\xfe\x94\x20\x48\xdc\xb9\x34\xc9\x60\xd5\x8c\x52\x28\xe6\x0b\x86\xd6\xfb\x73\x00\x74\x04\x42\xdb\x52\x12\x1e\x9a\x28\xa3\x4f\x46\x2d\xfb\x6e\xa0\x4e\xc9\xfb\x33\x3f\x83\xf9\x40\x33\x24\x1e\x6b\x13\x56\xee\x86\xe3\x34\x24\x26\xce\x8e\x22\xa3\xa8\x0b\xa5\x7a\xfb\xfd\xb5\x28\x29\xec\xe1\x39\xdf\x0b\xbb\x4a\x53\xd5\x78\x75\x4c\x9f\x25\x95\x36\x6f\xbf\xfb\x65\x66\x4d\x19\x66\x26\x84\xf0\x23\x92\xab\x3b\x70\x89\x7a\xb4\x1b\xce\xe9\xa9\x5e\x95\xbd\x3e\xba\xa2\x38\x3f\xab\xd0\x38\xcb\x2d\x36\x33\xbe\x0d\x72\x77\xbe\xae\xc5\xaa\x19\xcb\x16\x7b\xd1\xf5\x9a\x50\xfb\xe6\x50\xe9\x0b\x5f\xe8\x9a\xa2\x30\xe1\x18\x93\xdf\x48\x38\xae\xab\xb9\xbc\x9f\x11\xf9\x80\xbc\xfe\xcd\x44\x99\x5f\xec\x66\xc2\xb2\x02\x03\xb4\x65\xdd\xc3\xa7\xb7\xf4\x7c\xed\xa5\x18\xa7\x93\x69\xce\xbd\x2e\xc1\x3b\x28\xec\xc3\xec\x05\xe9\x44\x59\x64\x02\x13\xb2\x3a\x9a\xf6\x6f\xdf\x3e\xce\x2d\xe7\xd6\x15\x3b\xc7\x99\xc6\x7b\xa5\x61\xd3\xb1\x49\x06\xbe\xfe\x09\x13\x0d\xac\x04\x5f\xb7\xa8\x9a\xef\xef\xa6\x89\x9d\xa3\x0c\x18\x47\xf3\x4d\xfa\x05\x69\xdd\xfa\xb3\x72\xa5\x6d\xc2\x72\x39\x0a\x65\x3a\x40\x36\x01\xbd\x30\xa9\xb7\x3e\xa3\x75\x90\xc2\x6d\xbe\x14\xff\x74\xcf\x13\xca\x7f\x88\xbd\x8c\xd2\x02\x06\xf8\xf0\x92\x6f\x6b\xb5\xef\xcb\x2a\xa8\x18\x45\x34\x72\xaa\x0a\x9c\x47\x19\x51\x2f\x0a\x20\x9d\xc5\xc5\x47\x57\x66\x24\xd6\x8e\xc3\x09\xef\xf5\xd6\x4c\x31\x55\xbc\xe5\x4e\x67\x98\x66\xc9\x30\xb2\xf1\x40\x75\x69\x4e\x2a\x72\xf4\x93\x8d\xac\x97\x38\x5f\xab\x10\xa8\xe3\x08\xbd\x8e\x04\xaa\x8d\x79\x44\x1d\x86\xa1\xcd\x8a\x28\x8e\xde\xb0\x92\x9c\xbb\xa1\xd7\xc5\x45\x37\x26\xfb\x59\xdd\xed\x05\xa5\x8c\xa4\x34\x5c\x39\x26\x7b\x26\x55\x64\x3d\xfb\x95\xae\x44\xa3\x74\xae\x11\x26\xc0\x44\xa1\x51\x83\xf2\x4f\xb3\x54\x49\xcc\x64\x51\x21\xdb\x19\xf6\xe7\x1c\xde\x07\xdf\xd4\x8a\x4e\xf9\xb2\x21\x56\x1e\x1e\x6f\xd1\x44\x3a\x3c\xb4\xc2\x37\xf4\xdd\x50\x51\xba\x54\xe7\x6c\xf5\x4a\x15\xcb\x6b\x2f\xcd\xfb\xef\x77\x7f\xa6\x64\x73\xd1\x22\x77\x82\xf4\xee\x8b\xdf\x6f\x9b\x11\x9a\x44\x87\x41\xbd\xbb\xe0\xa0\x20\xb4\xcc\x88\x8b\x4f\xc0\x46\xa1\x7c\xf1\xb6\x82\x4e\x36\x89\x7c\xf7\xec\xe9\xda\xe4\xab\xe9\x9a\x24\xe4\xf8\x1d\xe6\x2f\xe0\x1b\x4d\x58\x93\x8d\x4c\x12\xbd\x61\xa0\x05\xea\xa5\x3a\xdf\x09\x34\x11\x9a\x3f\xc2\x27\x14\xc9\xf2\x9f\xb8\x6e\x69\x0c\x47\x8c\xf7\x87\x6f\xfc\xa9\xea\xaf\xcf\x93\xdb\x45\xd5\xe1\x58\xad\x78\x32\xb1\xa6\x43\xe7\xb6\x95\x11\xd9\xf3\x11\xa4\x2b\x36\x1b\x9b\x12\x33\xe8\x0c\xe3\x0a\x3a\x4a\xeb\xa5\xb1\xb7\x97\xa8\x18\x3e\x25\x57\x85\xc3\xff\x00\x6b\xe0\x34\x98\xbd\x1e\xc2\x86\x2a\xc4\x0d\xa2\xbc\xc8\xa2\x7e\x29\xc8\x83\x97\x5d\xdf\xda\x23\x7a\xce\x37\x4c\x57\x15\x0a\x71\xb8\x5f\x65\x45\xaf\x0a\x27\xf5\x55\x5d\xa8\x78\xa8\xc3\xc6\xb3\x6d\x82\xf2\x69\x6e\x96\x35\x66\x83\x2b\xcb\x32\x9d\xef\xdb\xb1\xe9\x68\x60\xa5\x1c\x2e\x2c\x69\xf4\xa3\x7c\xd3\x56\xaa\xe8\xa7\x93\xbe\xe2\x24\xc2\x14\x89\x4c\xef\xf8\x1c\x2d\xca\xf3\x92\x38\xae\x1c\x70\x8d\x2b\x00\xa2\xe7\xd3\x82\x5d\xac\x8e\x7b\xca\x86\x01\x71\x01\x08\x66\xf8\x5a\x05\x1f\x36\x8e\x98\x62\x48\xfa\xc8\xd5\x51\x94\xe0\xd8\x2b\x36\x10\xd1\xf7\x53\xf4\xb9\xb0\x01\xc0\x07\x4a\xff\x98\x5e\x1e\x2a\x2b\xd8\x68\x3c\x6b\xa8\x71\x4a\xd7\x00\xf3\x11\xc9\x0c\x7a\x11\x12\xd9\x77\xfc\x7f\xd4\x18\xa3\xc8\x9f\x8b\x67\x7b\x4e\x29\xc2\xc4\x54\xe7\xa9\xb6\x83\x14\xcc\x75\x0d\xde\x17\x1a\x8f\xd1\xa1\xc7\xfb\xde\xda\xf3\x1a\xb3\x8e\xd2\xdb\xc4\x92\xff\xa2\x63\x78\x46\x75\x0f\xcf\x28\xca\xf8\x49\x98\x98\x89\x61\xce\x36\xd8\x9d\xbb\x2a\x76\xb8\xdb\x4a\x5c\x62\xf2\xbc\x9c\x70\x48\x24\x53\x5a\xb4\x22\x32\x8a\xe4\xa6\x0a\x4c\x11\x59\x3f\x55\x00\xb8\x0e\x57\xe0\x84\xd6\x48\x11\x64\xf8\x71\x90\xcc\x86\x59\x19\x15\x08\x55\xea\x42\x0a\x7c\xdd\xd6\x8f\xcd\x0b\xb3\xd6\x51\x1d\x86\xdb\xba\x74\x74\xdb\x65\xc1\x85\x8d\x6d\xbe\x96\x17\x76\x92\x6b\x52\xf6\x8f\x03\x4d\x4d\xf3\x71\x8b\x2a\xd9\x7e\xca\x78\x1c\x85\x18\x56\xf3\x84\x06\x0f\x9f\xd0\x28\xd4\x72\xb9\xe3\xe3\x83\x8f\x35\x15\xdb\xc7\xc1\x0b\x6e\x38\x27\x1d\x65\x66\x42\xef\xac\xe3\xea\xe6\xdf\xda\xc0\x1a\x09\x2a\x56\xcb\x04\x24\x66\xc2\x35\x16\x6c\x0b\x76\x06\x7c\xd3\x8a\xb0\x1e\x44\x2b\xd1\x26\x29\x35\x4c\xe1\xf0\x75\xa3\x4a\xfe\x15\xe2\x4d\xc9\x0b\xe3\xd2\x29\x99\x79\xae\xb6\x9d\xcc\x42\x2b\x08\x58\x3f\xdf\x46\x4b\x2d\xa5\x1e\xc5\x0d\xc0\xf5\x63\xb8\xd5\xed\x3d\x85\x13\x7f\x7b\xe6\xe3\xdd\xf9\xf5\xb6\xc2\x5e\xa4\x94\x49\x00\x34\xc6\x31\xe4\xeb\x40\xd3\x30\xfc\x73\xb0\x21\xb0\x16\xd1\xac\x06\x85\x72\x6e\xe1\xae\x26\xee\xe2\x95\xc3\xf9\x7e\xae\x87\xae\x87\x8c\x1f\x63\x2f\x20\x2b\xef\xf4\xfc\xc9\x63\x39\x4e\x69\x95\xfa\x54\xf3\x4f\xf1\xa5\xa5\x0c\xa0\x87\xc3\x19\x03\xdd\xf1\x30\x03\xb6\x75\x7c\x53\x9f\x50\x5c\xb6\xcf\xd3\x47\x68\xbd\x08\x41\x95\xd0\xd3\xe3\xb3\x7f\x88\x0c\x81\x39\x9b\x80\x48\x52\x93\x22\x2f\x3b\x20\x87\x9f\x44\xb9\x39\x53\x32\xdc\x40\xbf\x70\x8d\x75\x33\x1f\x70\xb5\x2e\x2c\xfc\x83\x19\x2f\x2c\xdf\xa7\xb0\x75\x22\xc3\xec\x39\x38\xbe\x47\x6d\x34\x94\x61\x6e\xa9\x30\x8a\xc5\x81\x64\x36\xcf\x89\xd3\xc6\xe9\x28\xef\xa8\x12\xf2\x87\x78\x32\xbe\x69\x9c\x6d\x02\x8d\x82\xfb\x51\xd2\x67\x8e\xa1\x24\x77\xf7\x71\x0f\x0f\x3a\x48\x1e\xdf\xa6\x14\x9b\xd9\x3c\x2d\xb3\x50\xba\xe3\xc2\xb3\x4f\xdf\x9a\x6f\xdc\xa3\xf6\xa3\x65\x2b\xf6\x4b\x08\xc3\x15\x7b\xd2\x3d\x45\x69\x71\x59\x49\x8b\x99\x28\x7b\xc2\x2f\xfc\xdd\x4d\xe2\xf1\xde\xe4\xed\x58\x57\xdd\x51\x36\x40\x08\x8d\x98\x18\x51\x4f\x52\x39\xdd\x1a\x0f\xa3\x69\xf6\xd1\x9c\x50\x7a\x9a\xe7\x16\x7b\x4e\xb2\x33\x7a\x08\xc9\xda\x95\x9e\x7f\xb4\x12\xe5\x51\x9a\x6c\x57\xa7\x96\xd5\x56\x6b\xfa\xb6\x78\xe2\xad\x78\x2e\xc0\xa6\xbe\xab\xc4\x97\x01\x8a\x40\xb8\xbb\x73\xbd\xa6\x6c\x6d\xf2\x37\xc6\x36\x02\x4e\x4b\x75\x82\x5f\x73\x5f\xbc\xc5\xd9\x4f\x4c\xb6\xbc\x6c\xe6\xaa\xec\x12\x7d\x4c\xd6\xbc\x76\xd3\x07\x7e\x50\x75\xe6\xb5\xf9\x06\xf6\x29\xdf\x3a\xd8\xb5\xee\x46\x79\xbe\xf1\x22\x7a\x76\x6e\x00\xc9\x1b\x63\xd2\xa6\x7e\x4d\x8f\x26\x2d\x38\x16\x8f\xea\xd3\xf1\xb5\x9f\xee\xd5\x25\x35\xf6\xbb\x02\xdb\x65\xc5\xad\xb3\x7d\xbd\xa5\x75\x35\x32\x79\x1a\x47\x8c\x60\x46\xb5\x03\x55\x16\xbe\x76\xf5\x34\xee\x35\x3a\x93\x87\x32\x85\x46\xee\x9e\x6c\x13\xe7\x1d\x46\x89\xd3\x31\x80\x8b\xfd\x3b\xbc\x30\xbe\x99\x29\x88\x43\x94\x4f\x4c\x11\x8e\x71\xf6\x98\x7b\x5e\xcf\xee\x9c\x52\xe4\x4e\x45\x3a\xcd\xe7\x7c\x01\x9f\xc5\x9a\xc5\x7a\xd4\xa6\xb6\x94\xd7\x4b\x0a\x50\xcc\x4b\xdc\xe3\xc7\x53\xef\x07\x8a\x1e\x92\x61\x33\x22\x90\xe8\xd5\x30\x2e\xab\x5e\xd8\x77\xf1\x36\x84\x2f\x97\x3e\x52\xea\xf2\x6d\x07\xbb\xc8\xa2\x72\x32\x75\x88\x53\xe1\x33\x54\x78\x94\x93\x0d\x83\x40\x0e\xd2\xc6\x52\xe3\x5b\xac\x89\xb2\xbd\x2c\x37\xea\x1b\x7e\x69\xe9\x2b\x0a\xb3\x8e\x16\x87\x74\x47\xb5\x21\x1f\xa4\x13\x9a\xda\x04\x34\x92\x0b\x5f\x42\xb7\xad\xb8\x9c\x3f\x0a\x7c\x7e\x7f\x4a\x4d\x32\xdd\xa9\xd1\x4d\xa9\xb0\xe6\xdf\xd7\xfc\xc5\xaf\x7d\x69\xf1\xf3\x9e\xea\x99\xc1\x3b\x02\x53\x22\xa4\x83\x54\x37\xe8\x4f\xc8\x60\x63\x65\xaf\xb1\x67\x1f\x2a\xf8\x2f\xc6\x94\x05\x24\x5b\x9d\x1e\xe6\x9b\xd6\x7a\x28\x4c\xc0\x00\xb8\xf6\x5f\xd2\x53\x8a\xec\x8e\x1e\x0a\xb8\x0e\x38\x05\x4a\xa2\xd7\x67\xbe\xde\x7b\x5f\xcf\xba\x73\xac\x80\x3f\xf6\x01\xd5\xad\xe1\x6b\x10\xee\xa2\xad\xd0\xc1\xe1\x85\x1d\xd8\xda\x53\x4e\xe8\x02\xdc\x13\xea\x98\x27\x67\x8a\x1c\xe7\x8f\xf0\xda\x45\x6b\x61\xb3\x85\xa9\xe2\xd8\xc4\xda\x41\x8e\xc6\x3e\x7e\x67\x7b\x4f\x65\xc3\x17\x80\x13\x71\xe0\x73\x2f\x1a\xdc\xc8\xa9\x16\x0e\x76\xb3\x74\xcd\xc4\x9c\x2a\xe1\xd1\x78\x96\x91\x6f\xd4\x98\x79\x91\xd9\x64\xf0\x84\x2f\x68\xbe\x4f\x66\x06\x46\xf4\x23\x25\xf0\x08\x51\x16\xa1\x00\x53\x79\xd7\x39\x76\xd7\x78\x97\x5c\x9c\x47\x75\xe4\x06\x9d\x24\x91\x05\xfc\x8c\x9e\xf2\xcb\x6c\x9e\xf3\x74\xab\xd4\x88\xe9\x17\xa5\x78\xec\xf8\xb5\x92\x91\xcd\xe6\x94\x52\xd4\x6f\xe3\xe0\x49\xcf\xdd\x07\x6d\x97\x1b\x65\x81\x7d\xfb\xba\xe9\xd4\x66\xa6\x00\xce\x11\x21\xc8\xf7\x15\x2f\xfc\xf7\x5d\x6e\xd0\x8f\x4c\x92\x94\x35\x36\x5e\x26\x4a\xe2\x1b\xd7\x6d\x0b\xb3\x74\xca\xaf\x89\xb9\x83\x66\x3e\x6c\x0f\x01\x31\x41\x05\xe6\x53\xf5\x96\x3e\x75\xf0\xe3\xcc\xae\x9a\x6c\xc0\xbd\x6c\xb8\x6d\x08\x5c\xc0\x87\x31\xed\x03\x9f\x2d\x87\x9a\xce\xd2\x01\x2a\xaa\x32\x8b\xe7\x1d\xfd\x69\x57\x0d\xb3\x87\x6d\xc8\x24\x0a\xda\xc1\xab\x27\x0a\xfe\x53\xfb\x66\xcf\x9e\x6e\x3e\x36\x53\x2c\x16\x2c\xcd\x09\xad\xad\x78\xe2\x31\xa2\x86\x71\x54\xbd\xa1\xea\xe7\x10\x7b\xde\x53\xd4\x99\xdb\xa9\x40\xcc\x26\xf7\x7a\xeb\x08\xf5\x34\x8d\x92\x02\x70\x02\x69\xdb\x29\xca\x62\xcc\x59\x20\x53\xbd\x8d\xf8\x4d\x64\x1f\xfd\x64\xdf\xc0\x0e\xcd\xc4\x14\x29\xc8\xc5\x65\x12\xe3\x2c\x6c\x0c\xce\x3f\xa3\x27\x84\xb6\xc7\x27\xdd\xc5\x38\xca\x06\x40\x1f\x09\xef\x41\xf5\x89\x8c\x1e\x46\x88\x89\x56\xd3\x7b\x38\x82\x0c\x3e\x9a\x79\x89\xef\x39\x62\x3a\xc0\xc3\x6f\x5d\x57\x35\x96\x0b\x34\x98\x2b\x72\x67\xd5\xda\x23\x46\xb8\x13\x28\xd2\x97\x0b\x6e\x6b\xe4\x93\x34\x1e\x58\xa6\x7b\x14\x80\x88\x87\xc0\x9d\xd3\x36\x64\xa3\x4d\xa8\x0b\x54\x2e\x31\x26\x78\x85\x3e\xad\x7a\x4e\xbe\x56\x7e\x63\x32\xb5\x73\xc8\x31\xd0\x8a\xb8\x4c\xc7\x1e\xad\xbe\x47\xd8\xf9\x32\x5b\xe1\x3b\x43\x43\x93\x4d\xa8\x26\x2e\x61\x59\xf5\xbd\xf9\xba\x8d\xc4\x71\x60\x4d\xbc\x4d\xb1\x49\x9f\x51\x23\x0e\xa8\x6d\x20\x8d\x79\x72\x5d\xc1\x1a\x1f\x41\xdc\x53\x50\xe0\x3e\x5c\x18\x98\x37\xde\x88\xc5\x2d\x3a\xf9\x33\x2f\x85\xd6\xd8\xd0\x5f\xec\x16\xe3\x2c\x5d\x65\xc4\x8d\x2b\x4a\xbe\xea\x0a\x94\xaa\x2d\x35\xb1\x59\x58\x32\xc3\x02\x50\x2d\x68\x1d\xf2\xb5\x2a\xf3\x26\x29\x81\xef\x30\xa6\xd3\x71\x24\x6b\xbf\xa3\xc8\x6c\x7f\xa7\x05\x6c\xf5\x72\x77\x52\x86\xe3\x39\x0f\xe8\xbe\xaf\xb8\x2e\xf0\x59\x28\xf4\x3c\xd1\xf3\x35\x98\x49\x34\x18\xc4\xb6\xe3\xc5\x49\x50\x39\xe1\x6b\xbf\x71\xa2\x64\x24\x0b\x03\xa3\x7c\x1b\xf1\x02\xdf\x34\xf6\xca\xe2\x22\xe4\xc2\x5d\x70\x07\xe3\xf3\x67\xf4\xd7\xf9\xda\xfd\xf5\x49\x9a\xe5\x8e\x4b\xc1\xe1\xd3\x14\x82\x55\xa7\xde\x6b\x4f\x28\xa2\x10\x29\xee\x0b\xe7\xb2\x17\xf1\x7f\xae\xe7\x77\xc2\x73\xa4\x11\x23\xfc\x94\xde\xcb\x3c\xd1\xf3\x64\x24\x1b\x9a\x8c\xe4\x78\x43\x87\xe4\x8b\xdd\xd8\x8e\xa0\xc1\xc6\xea\x34\x8a\x48\xfb\x84\x9e\xb8\xbc\xae\x20\xb6\xb1\x29\x93\x70\x6c\xd1\x18\x44\xc9\x64\x0b\x05\xe9\x7c\xdd\x53\xe3\x5e\x41\xcd\xfd\xb6\xe8\xa0\x4c\x46\x13\x76\xb8\xae\xc5\xe6\x17\xe2\x2d\x25\xd0\x3b\x8e\xa6\xf4\xa2\xa4\xd5\x52\xeb\xc4\x39\xb7\x97\x45\x2c\xf8\x88\x48\x71\x1e\x01\x3f\x0c\xec\xbb\xb4\x90\x6e\x6c\xc4\xc5\x68\x37\x66\x9b\x29\x67\x9d\xa4\xe1\xd4\x9a\x65\x2a\x56\x7b\xc6\xc5\x1f\xc2\xe1\x22\xf0\xb9\xa2\x78\x91\xea\x9d\x83\x34\x9b\x6e\x57\x29\x26\x87\x74\x42\x0c\xed\x5d\x85\x28\x87\x00\x86\xb1\xb3\xe7\x1d\x33\x34\xb6\x91\x04\x6d\x57\x7d\xf7\xaf\xbc\xb2\x5b\x4d\x0b\x1d\xd7\x64\x0b\xc7\x55\x80\xd2\x37\x61\x75\xd0\x9c\xb6\x02\xcf\x65\xf2\x8d\x2a\x9f\x96\x59\xdf\x24\xf3\x3e\x13\xa3\x36\x52\x7d\xc4\x02\xd3\x93\x57\x61\x7e\x31\xe1\x74\xb1\x1d\x79\x48\x23\x82\xf4\x78\x4e\xa0\xa6\xfa\x54\xbe\x09\x3c\x00\x38\x4c\x93\xd0\x26\x85\x46\xbd\x4a\x33\x56\x35\x66\x5b\x0c\xc2\x62\x77\x6c\xb2\xc1\x7c\xf5\x2a\x61\x64\x80\xda\x65\x4e\x5c\x32\xad\x22\x23\xaa\x68\x1c\x9a\x5a\x10\xfb\xf6\x75\xf3\x32\x9f\xda\xd0\xe1\x11\x85\x12\xa1\xe3\x24\xb3\xdf\x6c\x78\xde\xff\xb6\x9b\xa4\xd9\x84\xb0\xad\x8e\x69\xf2\x92\x16\x19\xbb\x14\xf8\xdc\x6b\xd9\xda\xe9\x53\xb4\x66\xa2\x98\x42\x31\x33\xba\x0a\xa7\x11\x23\xa8\x09\xea\x45\x47\x4a\xd9\xf9\xc2\x17\xe4\xa7\x94\x74\xcd\x25\x18\x27\x81\xf4\x76\x9c\x12\xf1\x1d\x85\x23\x65\xda\x2c\xc4\xf2\x7e\x7a\x6b\x1a\x15\xe1\x58\xa0\x72\x38\x1b\xef\xd2\x11\xe0\xeb\x16\x15\xdc\x6e\x3f\x4b\x97\x2d\x07\x45\x4c\x80\x48\x5b\x03\x33\x29\xd0\x06\x44\x67\xf1\x62\x63\x9d\x96\x76\xb3\x0e\x32\x1d\x46\xf8\xd1\xf3\x33\x3d\x94\xaa\xa8\x44\x98\x3d\x04\x87\xf9\x7e\x1d\x31\x3b\x1a\xc3\x0d\xe1\x43\x31\xc8\x25\x37\x0d\x0a\xe2\x3d\x7b\x3c\x20\xa8\x53\x03\x01\x79\xec\xd0\x05\x60\xc2\xeb\xcd\x14\x43\x44\x14\x58\xb4\x1b\x2a\x74\x7a\xa8\xf5\x55\x8f\x6f\xe6\x4f\xab\xb2\xce\x43\xfb\x5f\xa8\xde\x10\xfe\x36\xc9\x3e\x3c\x7a\x80\x37\x2b\x82\xcf\x9d\x43\x52\x90\xfa\x90\xe2\x1a\x99\x38\xac\xa9\x4f\x68\xc6\x1e\xce\x80\x60\xcd\xef\x01\xad\xad\x15\x34\x5c\x98\xbc\x57\xa6\xfe\xae\x30\xda\x1b\xe9\x3f\x4b\x1c\xa1\xe4\xf1\x23\x4a\x12\xdd\x30\xc0\x9e\x05\x2f\x1b\xe3\x82\xe7\xef\xc2\x34\x20\x1e\xf8\x6e\xa0\x90\xf5\xf7\xf5\x78\xcb\xcf\x5b\x06\x3d\xc3\xd8\x9a\x8c\xdc\x39\x07\xa1\x6a\xdc\xea\x7c\x03\xa7\xb4\x70\xb0\x9b\x97\xfd\x34\x1b\x44\x09\x65\x17\x8e\x31\x07\x24\xc1\x7c\xed\x36\x2d\xe7\x3b\x4f\xfa\x92\xeb\x1d\x0a\x5c\xd0\x02\x3a\x8a\x8c\x46\xd4\x17\x3d\x5a\x07\x70\x55\x99\x39\xa8\x3e\x84\xcb\x4d\x7a\xb0\xf1\x86\x26\x29\xda\xd0\x52\x4f\xd7\x15\x6c\x28\x25\x50\x86\xc9\xe7\xe9\xa3\xfc\x74\x99\x4c\xc3\x9d\x54\xd3\x2b\x27\x95\x5a\xc0\x27\x8a\x18\xf3\xab\x69\x99\x25\x26\x7e\x42\xc1\x94\xb8\x16\x27\x53\x69\x7e\xa0\xe9\xc7\x8a\x9e\x10\xda\xc6\x22\x81\xaa\x08\x5c\x37\x54\xdf\x08\x95\x65\x5c\xdf\x6f\x9c\x87\xca\x24\x27\x69\x61\xfb\x69\xba\x3c\xa7\xe0\xe0\x27\x67\xca\x2a\x6d\xa8\x80\xea\x6e\x20\x99\x5d\x61\xa6\x36\x2f\xb2\x35\x58\x0c\x9d\x13\x49\x28\xe3\x29\x7b\xb2\x32\xae\x4c\x4b\xb5\x6d\xa4\x19\x41\x1f\x26\x5d\x8a\x36\x4f\x11\x9a\x2c\x4e\xf3\x5a\xae\xbd\xa1\x73\xed\x8d\x40\x7b\x53\x13\x65\x4f\x79\x83\xbb\x05\x83\xe3\x78\xab\x7f\x87\x2d\xea\xa4\xd6\x5d\xfb\xe5\xc8\x4c\x11\x02\x61\xc0\xd5\x0d\x23\x2f\x89\xfe\xe2\xa7\x18\x2d\x43\xcd\xfa\x9c\x02\x5e\x9f\xd6\xc1\xfc\x8e\x5e\x8b\xa5\x11\xe6\x27\x20\x5b\xb1\x2a\xdc\xac\xe2\x0d\x1a\x28\x8a\xb8\x2d\xeb\x9f\xd7\x78\xe2\xcc\xe4\x45\x56\x42\xb2\xc2\xbb\x79\x0c\x1e\xf1\xb5\x42\x54\x94\x49\x54\x8c\x29\xc9\xc1\x00\xb4\xab\x0c\x2d\x7a\x35\x6f\xa5\xbf\xf2\x49\x5d\xd9\xfb\x79\xa5\xd8\x34\x20\xbe\x06\x98\x54\x45\x2d\x2b\x05\xbd\xcb\x8a\x9e\xc4\x4e\x98\x89\x5c\xf4\x06\xaa\x0f\x90\x79\xc4\x8e\x93\xdc\x3a\xd5\x56\x48\xe9\xc7\x94\x3f\x54\xbf\xcd\xc8\x33\x85\xe5\xfe\xa4\x6d\x74\xc9\x0c\x56\xa2\x5c\x86\x16\x60\x2e\x4f\x05\xaa\xb2\x7f\x6a\xe6\x67\x59\x9d\x72\x4e\x81\x11\x53\x16\x6b\x08\x7c\x3a\xf9\xbe\x4e\x51\xcc\x5a\x9a\x99\x18\x80\x03\x16\xb3\x53\x21\xce\x1d\xc5\xfc\xd4\x2c\x48\x56\x99\x76\x5e\x66\xd3\x2a\xae\x64\x72\x30\xa4\xb8\x17\x69\x09\x50\x95\xfb\x58\xcf\xc4\xfe\xbc\x91\x35\x1c\xaa\xc2\x5c\x93\x98\x11\xb7\xfc\x5c\x07\x41\x77\x00\x36\x9b\xd6\x7d\xfb\xba\x51\x5a\x32\x97\x3f\x7c\xe6\x93\x6a\x0e\xe7\x0a\xce\x0a\x93\xa6\xac\xfb\x30\x79\x62\x60\x57\xc5\xb1\x68\x62\x50\xdf\x81\xcc\xe3\x68\x3a\x65\xc1\x42\x19\x71\xa8\x56\x4f\x46\x1f\xda\xd8\x93\x06\x76\x12\xe5\xf8\xe3\xd8\x05\x60\xd7\xe4\xeb\xb6\xf8\xaa\x9f\x99\x37\xa2\x38\x32\x89\x9a\x61\x63\xd5\x79\x09\x2f\xb5\x32\x44\x1c\x9b\x69\x5e\x3d\xd4\xc2\x41\x91\x72\xa5\x4f\x10\x59\x57\xc5\x69\x63\xc7\x51\x32\x78\xaa\xfa\x4f\x21\x0e\xf2\x61\xc6\xd7\xbd\x5a\xf9\x9d\xe7\xd7\xbd\x6d\x63\x2a\x67\xee\xa2\x91\x2b\x66\x1e\xca\x40\x85\x9f\x7c\x82\xb9\x90\x17\xa8\x2a\xf8\xd7\x61\xd4\x84\x48\xad\x99\x1b\xee\xef\x16\xd1\xa4\x6f\x33\xb1\x6a\x32\x2f\xa9\x80\xb1\x5a\x86\x66\x1a\x97\xf9\x5c\x67\xcf\x1e\x87\xf0\xd3\xed\x82\x99\x1f\xfd\xba\x5b\xb3\x84\x99\xe9\x6f\xeb\x1c\x7c\x45\x00\x0d\xf8\x4e\xc8\xd1\xd0\xd8\x15\x76\x7c\x5f\xb2\x3f\xa3\x05\xf8\xff\xbe\x39\x7d\xbe\xb4\x9f\x66\x89\x4d\x06\x78\xa0\xa8\x12\xfb\xe6\xc6\x27\x64\x3c\xb1\xd2\x37\x35\x5f\xc5\x2a\xfd\xce\x5e\x25\xe2\xbf\x70\x50\xd4\xdb\x50\x5f\x16\x8b\xbb\xcb\xa3\x8d\x49\x90\x84\xcf\x12\x42\xbe\x87\x8a\xba\xe8\x18\x8e\x05\xb2\xb4\x4e\xef\x19\x0d\x15\xb7\x9f\xa3\xd7\x81\x0f\xfb\x09\x51\xc2\x30\xae\x9b\xce\x30\x22\x81\x9b\xa8\x83\x38\x53\xff\xe5\x43\x9e\x3f\x71\xc9\x1b\x45\xfa\x14\x1c\xdf\x53\x40\xea\x02\xcf\x28\x22\x53\xc8\xce\xce\xa8\xbc\xfa\x1a\x8a\xff\x78\x91\x3f\xa7\xb0\xca\x2d\x8f\x23\x7f\xe1\x22\x37\x36\xc9\x15\x3d\x36\x78\x05\x71\xd5\xff\x4f\xd7\x9f\x05\x49\x72\x5d\xe9\x81\x70\x55\x64\x66\x15\x50\x05\x80\x00\x08\xb2\x45\x4a\xfa\x15\x92\xa8\x1f\x92\x19\x05\x49\x0f\xa3\x31\xf5\x8b\x87\x32\x93\x04\x2b\xd5\x48\xa4\x55\x55\x03\x2d\x98\x1e\xea\x46\xc4\x8d\x0c\x47\x7a\xb8\x07\x7d\xc9\x44\x62\xde\x64\x63\x63\x63\x32\x1b\x33\x99\x4c\x32\xd9\xd8\xcc\xf4\xc8\x7a\x7a\x34\xdd\xd3\xcb\x74\x37\x97\xe9\x6e\xb2\x3b\x92\x64\xb3\xb9\x83\x20\x00\x82\x58\x08\xa0\xf6\x42\xad\x59\xfb\x5e\x59\x63\x7e\xbe\x73\xee\x3d\x9e\xee\xf5\x04\x77\x54\x46\x84\xfb\x5d\xce\x3d\xcb\x77\xbe\x0f\x2f\x76\x75\xe2\x39\xb8\x6e\x62\x0e\x71\xb4\xfd\x60\xe2\x21\xd2\x90\xaa\x10\x56\x4f\x3a\x87\x5d\x8a\xd5\x4b\xfa\xed\xd8\xf8\x07\x0f\x88\x5e\xf3\xd4\xc4\x59\x69\x29\x8d\x13\x0a\x47\xea\xec\x7b\xba\x43\xfb\x7b\x4d\x34\xcf\x61\xdc\x0f\x01\x27\x11\x88\xae\xea\x2e\x39\xaf\x8e\xfe\x61\xb8\x3c\x64\x43\x2f\x22\xe4\xf4\xa0\x12\x65\xd7\x33\x0e\xfd\x64\x2d\xde\x43\xa3\x2f\x4a\x73\x6a\x52\xc1\xf8\xa4\x49\x68\x04\xed\xe2\x14\x06\x7f\xe7\x6f\x75\x5a\xbf\xfe\x25\x17\x5e\xfa\xc3\xf3\x2a\x36\x90\x83\xc4\x95\x93\x25\x95\xbe\x72\xe6\x85\x38\xd2\xef\xc0\x6e\xd8\xc7\x79\x8a\xf2\xc6\x0d\x2d\x3a\x7f\x57\x49\xe0\x83\x6a\x96\xff\xff\x03\x6b\xb5\x71\x92\xa6\xa1\xd6\xfb\x3b\xa6\x11\x59\xc7\x1a\x88\x27\xdb\xa6\xd7\xb3\x11\x65\xda\xf9\xe0\x93\xfa\x96\x6a\xa4\x3e\xae\xc8\x26\x6d\x14\x8e\xd8\x75\xd6\x88\xbb\xfd\xee\x3a\xf0\x36\x72\x10\x25\x6b\x16\xae\x39\xb2\xe2\x1f\x4d\xbc\x6a\xd5\xff\xf4\x51\x0d\x63\xb2\x6f\xb1\x3d\xa6\x5e\x68\x6e\x39\x46\x56\x11\x2d\xca\x7c\xed\xd2\xfe\x79\x5a\x8c\xc6\x36\xe7\xea\xbf\x02\x2c\xbc\x24\x37\x0a\xd0\xdf\x4b\x8a\x34\xb3\x28\x42\x8a\x5c\x9b\xea\x56\x3b\xa7\x02\xd9\x93\x8d\xb8\xd3\x2e\xb5\xde\x94\x9b\x5a\x2a\xd9\x2d\xc5\x9d\xaa\xa8\xfe\x07\x83\x24\xcd\xb3\xbd\xf4\x1c\xa2\x27\xa5\x34\xc3\xae\x2a\xd5\x46\xe6\x91\xc4\x0e\x3c\x3c\xa9\xf3\x5a\x4a\x34\x5f\x6e\x73\xe4\x19\x6e\x4d\xb4\xf0\x70\xe0\xab\x87\xbf\x0c\x3c\x86\xe2\xac\xd2\x30\xf6\xce\x34\x94\x3e\x04\x0e\x8b\x13\x08\x55\x42\xbe\x56\xbe\x5e\x6a\xb3\x71\x12\x67\x61\x37\xb2\xbb\x7d\x82\xed\x1e\x3d\x08\x1c\x5b\xae\xa1\x73\x33\x1d\x19\x0c\x81\x32\x97\x4f\x78\x7f\xc3\xc7\x55\x0c\x51\xc1\x3b\xd7\x25\x5e\x17\x17\xdb\xf6\x95\x9e\x1d\xe7\xd4\x59\x8d\x24\x2c\xa3\x7b\x64\x1b\x55\x70\xad\x1e\x17\x7a\x5e\xf1\x39\xae\xda\xb8\xf4\x63\xb3\x64\x64\x11\x2d\xb0\x84\x33\x46\x55\xf4\x9c\x7d\x40\xb4\x1a\xae\x86\x7d\x20\xdb\x54\x7a\xd9\x35\xd6\xd4\x75\xb6\xe6\xe6\xda\x71\x91\x66\x92\xaa\x75\xfc\x96\x4e\x1e\xf4\xf0\x44\x54\xe3\x86\x66\x5d\x8e\x5f\x29\x13\x68\x36\x0a\xa5\x5e\x4a\x89\x82\xd2\x18\xb1\x8f\xa5\x13\xa0\x08\x8b\x41\x90\x23\x64\xe8\xbe\x0c\x67\xe2\x70\xe4\x4d\xaa\x10\x4c\xf9\x17\xf8\x46\x8d\x2f\xcd\x59\xe4\x24\x1b\x86\xeb\xc5\x4a\xa8\x9a\x66\x99\x2e\x83\x6f\xdc\x92\xe9\x99\x30\xb5\xb1\x43\xad\x28\x5a\xb6\x03\x5e\x08\x50\xa5\x9d\x6a\x39\xcc\xd2\xff\x0a\x93\xdc\xf6\x86\x71\x12\x25\xcb\xeb\x55\xaf\x50\xa9\x60\xba\x6e\x14\x1b\x17\xcb\xa9\xb5\x2b\x84\x49\x45\x2a\xe1\x88\x82\x86\xdc\x55\x4e\x7f\x5d\xc0\x99\xdc\x3d\x6b\x3d\xd4\xab\x49\x62\xd8\xa5\x69\x23\xea\xb5\xd9\x2f\x74\x8c\xa7\x14\xa7\xc7\xee\x8e\x0f\x81\xef\x4d\xb4\xa2\x5d\x1d\x15\x37\xdf\x24\xef\xa1\x42\xe8\x53\x4d\xb5\x4d\xa6\x65\xa1\xf1\x70\x02\xd9\x5e\xd2\xa2\x29\x9c\x19\x5b\xe2\x77\x5d\x94\xea\x1a\x44\x27\x44\xa6\x6f\x7b\xcc\x40\x2a\x8a\xe3\x34\x8c\x57\x5c\x17\x36\xb2\xf7\x1c\xd0\xf0\x8d\x5b\xb3\xfd\xa2\xcb\x96\x14\x7b\xfd\xfd\x89\x92\x08\xd0\xc2\xd3\x99\xcd\xf3\x28\x8c\x97\x09\x92\x8e\x9c\xec\x69\x3a\xda\xe0\x41\x5e\x0b\x94\xbe\xdd\x45\x32\x4a\x38\x25\x8f\x4e\x94\xbe\xdd\xc5\x86\x6a\x62\x19\x7e\xd9\x31\x2b\x98\xe2\xcb\x4e\x6c\x53\x33\x70\xed\x60\xb7\x15\x53\xdd\x78\xcd\x60\xb2\x25\xb5\x56\x51\x29\xf1\x07\xed\x5a\x38\x40\x56\x1e\x2e\xda\x11\x7c\x37\xdf\xd0\x83\x8a\x84\x57\xf9\x66\x7c\x1d\x78\xa1\xda\x70\x0d\x9d\xab\xd2\x9d\xa0\x40\xc1\xc7\x9b\x48\xbc\xcb\x81\x72\x0b\x11\x03\x05\x02\x02\xbe\x6e\xea\x0b\x40\xcd\x08\x05\x55\x18\x3c\x54\x97\x84\x96\xdb\x97\xdc\xff\x04\xbf\x2f\x14\x48\x35\xd5\xe8\x25\x97\x36\xa2\x65\x09\x5f\x10\x35\x7d\xbe\xf6\x60\xa1\xbe\xfd\x72\x61\x72\x6a\xe5\x74\x39\x1d\xa8\xa3\xf0\x75\x45\xb5\xab\x97\x2c\xc7\xa4\x01\x5b\x3e\x0c\x1c\x7d\xf4\xcc\xf0\xb5\x6e\x12\x22\x84\x39\x58\xfd\x75\x2f\x00\x13\xf9\x07\x0a\xb8\x73\x24\xf0\xf0\xfb\x3b\xba\x5d\x32\xaf\x45\xa5\x8b\x8b\xed\x7e\x9a\x8c\xa7\x14\x9b\x00\x7a\x2a\x31\x32\x57\x15\xa5\xce\x3b\xb5\xec\x1f\xf5\xec\x8c\xd3\xb0\xf4\x79\x32\xb0\x22\xe1\xdc\x42\xb0\xc2\xd7\x8a\xb3\x2a\x1c\x8d\xc2\xe5\xd4\x11\xfb\x09\x4f\x0d\x60\xaf\x82\x36\x6e\x28\xc7\x77\xe1\x50\x79\xdd\x15\x5e\x31\x7c\x13\xec\x55\x3d\x7b\x8a\x53\xe6\x92\x62\x8f\xb8\x34\xf1\xbd\x32\x71\x56\x44\x2e\x62\x71\x34\x25\x0e\x26\xc7\xd0\x24\xf1\x47\x3c\x24\xaf\x67\x28\xe7\x8e\x55\xe0\xfa\x3c\xf6\x2d\xba\x33\xaf\x1e\x65\x2f\xb5\x07\x61\x3a\x12\xd4\xb7\x83\x8c\xef\x9f\x75\x19\xdc\x4f\xa9\xea\x3d\x94\xba\x73\xea\x37\xde\x1e\x3b\x3a\x5a\x6b\x27\xca\x7e\xda\xaf\xba\x5e\x79\xe6\x9b\xb8\x67\x67\xaa\x05\xe4\xd2\x57\xc0\xee\x7d\x93\xc3\x20\x26\xe9\xa1\xaf\xc4\xbe\xfc\x2a\xbd\x82\xf4\x9a\x6c\xb7\x7d\xfb\x67\x29\x76\xe8\x19\xe7\x47\x8a\x43\xd8\x72\x3c\x43\xf5\x1a\xfc\xbe\xc5\x76\xb2\x12\x99\x61\x32\x32\x7c\x78\xcb\x69\x3c\xe5\x15\xf2\x8f\xb9\x16\x92\x30\x8b\x4c\xdc\xe7\x73\x1b\x61\xe9\xa5\xca\x59\x4d\xf6\x53\xa0\x2e\x8f\x2a\x0e\x41\x93\x53\xb2\x8e\x43\x5c\x7a\x26\x81\xcc\xd1\x2f\x49\xd9\xa7\x41\x38\x3c\xb5\x2c\x90\x4c\x96\x48\x98\x16\x5a\x4e\x2f\xf0\x76\x25\x4c\x0f\xed\xe0\x13\xe5\xdf\xb9\x32\xda\xd2\xf3\x07\x5c\xdf\xb7\xc2\x70\xed\xec\x28\xa1\x6e\x3e\xd1\x91\x6e\x40\x19\x42\x7a\xf5\x68\x89\x21\xf4\xdc\xb1\x41\x61\x8a\x03\x2f\x3b\x8a\xc8\x87\x49\xbf\x0b\xff\xff\x36\xc2\x30\x24\x38\xfe\x68\xb2\x8d\x34\xdb\x25\x55\xce\x20\xf6\xc4\x02\xf8\xb6\x2a\x92\x4f\x77\xb4\xdd\x31\x51\xb8\xec\xda\xb3\x1c\x43\x8b\x4b\x9b\x1d\x57\x76\xa7\x8c\x50\xf2\x6c\xda\x77\xfd\x1d\x0a\x74\xe0\x59\xfe\x34\x78\x13\xf8\x80\x91\xbc\x48\x83\x5a\x53\x6a\x07\x61\x2c\xfd\xcc\xcc\x3e\xa7\x34\x10\x18\x21\x8d\x44\xc8\x89\xa6\x95\xe8\x19\x03\xa7\x14\xff\x9f\xa8\x13\x79\x84\xe2\xcf\x2b\x88\x80\x48\xea\x81\xcc\xa4\x13\xa8\x54\xc1\xf9\xa6\xd4\x65\x2f\x32\x45\x3f\x84\x3c\x06\x66\xe2\xa7\x98\x48\xbe\x69\x28\x9b\xac\x25\x69\xba\xde\x52\xc2\x0c\x9b\x15\xe6\x0c\x45\x5b\xd4\x0d\xc7\x26\xcd\xc3\xcc\xc4\x5a\xda\xf8\x98\x82\xab\x1e\x53\xdc\x80\x99\xe9\xad\x88\xfc\x22\x17\x46\x02\xdf\x44\x7b\x7e\x7b\x01\xeb\xc5\xf9\x83\xed\x85\x85\x19\xd5\x21\xc3\x8b\x53\x02\x26\xd5\xe9\xf8\xa3\xc0\x27\x98\x5f\xd3\xe9\x93\x1d\x1b\x0d\xb9\xcb\xb5\x24\x5d\x01\x20\x07\x16\xe4\xb4\x8a\x23\xbf\xad\x28\x0a\x8f\x2b\xa0\x4a\x64\x57\x6d\x6a\x96\x21\xc1\x87\x2d\xfa\x16\xb6\xb2\xf3\x25\x5f\x98\xe5\x1f\xfd\xc9\xc4\xf3\xa5\xa0\x7f\x08\xb1\x11\x97\x06\xb0\xf4\x5a\x1d\x5f\xe5\xce\x7a\x69\x31\xd2\x82\x71\x37\x31\xaf\x7c\x53\x6b\x82\xda\xb7\xd8\x4e\x09\xd4\xe5\x40\x4d\x3c\x1a\x7c\x53\x29\xf6\xc7\x79\xf6\xb7\xbc\x4e\xea\x0d\xde\x6e\xb0\x97\x77\x01\x6e\x04\xe4\xa9\xc5\x0d\x0a\xd2\x56\x45\x23\x04\xbf\x17\x8c\xd8\x08\xea\x3e\x41\x10\x0e\x66\x65\x54\x36\x66\x77\xc7\x2b\xae\xaf\x3f\xb1\x41\x42\xe0\x08\xd4\xce\xe8\x9a\xe1\x99\x40\x71\x16\xb0\x2e\x18\xcc\xdc\xcc\x06\xb5\x18\xb8\x1c\xe1\x3e\xb1\x30\xcc\xbb\x8d\x41\xbc\x4f\x99\x32\xac\xde\x3b\x30\x5d\xcc\x1a\x08\x0f\xd3\xa1\x54\xcb\xd1\x94\x13\x82\x26\x8a\x75\xfe\x14\xf7\xc6\x53\x1b\x94\x5c\xc3\xa6\x83\x40\x1d\x92\xd6\x0f\xa1\xe8\x2b\x7d\x8e\xad\x17\x85\x04\xfe\x34\x49\x68\xe3\xff\xff\x5f\xa8\x7e\x4a\xe7\x99\xcf\x84\xc4\x76\x8d\x5c\xec\x7c\xa6\xe5\x14\x00\x2e\x04\x95\xdc\x4b\xf9\xed\x22\xcf\x56\x4e\x8e\xd3\x6d\x2b\x07\x4a\xca\x04\x0d\x4a\x92\x20\xd7\x6f\xf9\x8c\xe2\xbb\x6a\x0b\xbd\xeb\x72\x20\x36\xce\x53\xbb\x12\x32\x45\xb1\x30\x5b\xb6\x14\x4b\xa8\xcf\xc5\x64\x3d\xc7\x03\x89\xf8\xe9\x5b\x2a\x96\xfa\x56\x63\xb6\x3d\x0a\x57\xca\x73\xbd\x1c\x48\xc4\x7e\x9f\x22\x38\x08\x8d\xf6\xe4\x33\x1d\x55\x96\xad\x1f\xa7\xa5\x4d\x4a\xe2\xdc\xf4\x72\xc6\x4b\x22\xd4\x3b\xab\xc9\x6e\xee\x29\xfd\xc5\x4d\x65\xbf\xb3\x2f\x17\x61\xb7\xdb\xd2\xa0\x94\x9b\x3a\x8d\x79\xb3\x29\x89\x00\x2d\x9f\x29\xef\xe1\x5f\xc3\xca\xc6\x36\x3c\xa7\x08\x64\x76\x6e\x28\xf9\x9c\x30\xeb\x0d\x89\xf2\x12\xe0\x0d\xc4\x32\x7c\xdd\xc0\x2a\xb2\xd4\x2e\x5c\x11\x06\x93\xf9\x96\x02\x07\x1e\x86\x4d\xc2\xd2\x3e\x13\x78\x72\x8f\x91\x35\xf1\xae\x72\x3f\x81\x0f\xe1\x03\x45\xec\xcc\xaa\x2e\x32\x0f\xf4\xcd\x8e\x7c\xd5\xe1\x2e\xde\xa5\x7d\x82\xc1\xd6\x94\x9a\x8b\xff\xf2\xd7\xe8\x40\x74\xf4\x95\xe5\x28\x09\xbd\x86\x4f\x17\x74\x4d\x86\x56\xbe\x69\x7f\xbc\x5e\xc3\x2a\xc4\x13\x31\xc6\x5a\xbe\xc6\x3b\x25\xa7\x15\x51\x5a\x66\x7b\xa9\xcd\x21\x1d\x42\x73\xca\x5d\xe2\xb4\xb4\xa5\x63\xbc\x4e\x41\xfd\x12\xd6\x29\xe1\xb5\x60\xfd\x84\xd0\xcb\xf7\x53\x9d\x50\xad\x84\xcb\x61\xbc\x6c\x53\x49\xce\xe0\xf9\xbe\x8b\x75\xc3\x37\x2a\xff\x9f\xe5\xd6\xac\xa0\xee\xeb\xd4\xe0\x5c\x4e\xeb\x7c\x13\x2f\xcc\x72\x91\x16\x8c\x02\x16\x45\x60\x25\x35\x84\x16\x2d\x39\xd0\x75\x79\x4c\xd5\x89\x72\x1b\xe7\xec\x5d\x3a\x2d\xb0\x63\x4a\x0b\xec\x58\x03\x85\xd8\x62\x7b\x90\xa4\xf9\x10\x68\x5b\xa4\x1a\x11\xd2\xb2\xba\x1d\x2d\x3c\x44\x49\x57\x6a\x45\x74\x34\xdf\x99\x51\x12\xf7\x79\xe8\x1d\x01\x7c\xf9\xe8\x7c\xa3\x0e\xe1\x81\x71\xac\xac\xe2\xc3\xff\x0c\x6f\xc3\x37\xb5\x91\x79\x61\xb6\xfd\x72\x12\x32\x9b\x18\x06\xe6\xaa\x22\xa1\xbf\x5a\x3b\x9d\x40\x02\x06\x79\x0b\x84\xe8\xd3\x34\x76\x88\x70\xa6\x37\xca\xa1\xc1\x7c\x7d\x6d\xb2\x1d\xee\xf2\x0f\xdb\x66\x84\x06\x4b\x78\xbb\x53\x1d\xe5\xfa\x4e\xa9\x9e\x9f\x22\x86\xac\x8c\x88\x2d\xa2\xb0\x83\xdd\xcc\xd7\x8a\xf5\x39\xb7\x66\x94\xed\x56\xf3\x8f\x57\xc6\x76\xfa\x3a\xfc\x4c\x51\x0d\xa6\x5f\x87\x41\x98\xee\x28\x1d\xb4\x8d\x8a\xe4\x69\x39\xa7\xfc\xff\x6b\x12\x0c\x65\xa8\x94\x5a\x93\x65\x45\x5a\xc6\x31\x53\x3e\x62\x3e\xab\x18\x8e\x36\x55\x91\xf6\x2f\x9c\xe5\x26\x75\x97\xd0\x80\x96\xd3\x51\xf1\x3b\x60\x38\x77\xf9\x22\x9e\xbb\xe4\x50\xe2\x22\xed\x6c\x67\xe8\xe9\xb1\x5a\x4e\x07\xaa\xd7\x00\x99\x78\xfe\x87\x89\x06\x20\xfb\x3d\x7a\xb7\x61\x79\xb5\x8b\x78\x2d\x54\x44\xbe\x8e\xd4\xd2\x69\x18\xdc\xaa\x15\x0f\x96\x9e\x3f\xd0\x1e\xd9\xc8\xc4\xbd\x61\xc2\xc0\x65\xcc\x3d\x68\x60\xf8\xda\xa5\x98\xc6\x26\x1f\xb6\x54\xd6\x18\x60\x6d\xbe\x56\x26\x2d\xe4\x66\x2d\x54\xcc\x3e\xd3\x51\x3c\xf2\xa0\x08\xa5\xcc\xe8\xce\xc7\x37\xb6\xaf\xe0\x43\x87\xda\xd9\xd0\xac\x70\xbf\x36\xea\x62\x6f\x13\xdc\x88\xaf\x27\x75\xce\xe7\xa7\x9f\x26\x64\x0f\xbc\x89\x6f\xc3\x4d\x72\x8d\x12\xe5\x4e\x75\x6d\x2e\x3a\x35\x32\x7f\x90\x53\x32\x3f\xd6\xf5\x1e\xf0\xea\x8a\x44\x71\xcb\xf1\x92\x5f\x01\x33\xa3\xe8\xb1\xd7\x07\x7f\xbe\x6d\x88\xf9\x87\x33\x30\x92\xad\xf6\x18\xe6\x13\x3e\x38\x28\xed\x0e\x53\x60\x20\x7c\xba\xab\xb2\x42\x77\x15\x9e\xb7\xe8\xdb\x47\x35\x04\x23\xf0\x14\x79\x77\x95\xe1\x7d\x17\xa7\x24\xb2\x4d\x9f\xe9\x78\x54\xca\x09\x78\x53\xd2\x39\x4c\xb3\x40\x4c\x6d\xf6\xd3\x1b\x38\x99\x51\x75\x07\x45\x94\xa6\xdb\x53\x6d\x87\xf3\xee\x28\xab\xb4\x5c\xd1\x46\x14\x5e\x81\x6d\x93\xf2\xc5\x17\xdb\xf3\x07\xf7\x28\xbd\xb2\xb3\x70\xf8\x24\xd7\xa2\xd4\x6b\x91\x33\xc5\x3a\xb9\x40\x6e\x9d\xc4\x2e\x4a\xc8\xed\xe3\x2a\xf5\xd9\x17\x5f\x94\x2e\x30\x34\x0f\x21\xea\x7d\x13\x87\x70\x4d\x6d\x82\x5a\x58\x5a\x3e\xf6\xfb\x25\xf6\xa5\xd4\x5c\x1e\xf1\xad\x38\x89\x6d\xc1\xad\xe6\x5e\xbe\xa0\xd2\xd8\xa7\x58\xc9\x93\x35\x93\xf6\x75\xda\x00\xb0\x31\x05\x8a\x92\x8e\xd9\x9b\x0a\x04\xd6\xb5\xb1\x1d\x84\x39\xd8\xe5\x58\x4a\x35\x50\x6d\xd8\x84\xfa\x73\xcd\x13\xdb\xf3\xf0\x44\x2b\x6f\xc0\x70\x42\x0d\xfd\x3e\xbb\x8e\xcc\x8e\xe8\xeb\x6c\x8b\xcd\x16\x16\xca\xf0\x6c\xba\xa5\xb8\xc3\x69\xf8\xb1\x5a\xbe\x0b\x1b\xca\x3d\x79\x58\x21\xf0\x13\xcf\x05\x7f\xf7\x41\xd5\x87\xa1\x4d\xad\x19\xe4\x20\x6a\x5e\x72\x49\x43\x8f\x1a\xb8\x1d\x38\x92\xb9\x5e\x9e\x8c\x23\x93\x8d\xc2\x1e\xec\x06\x76\x29\x4e\x4d\xbe\xae\x1d\x63\x87\x0e\x81\x8b\x81\x02\x76\x16\xb7\xa1\x65\x02\x94\x1d\x8a\xb8\x22\x3c\xf4\x98\xab\x25\x86\x03\x93\x86\x53\xca\x7b\xba\xa1\x9a\x8f\x61\x54\xb1\xce\x3e\x6c\x38\x07\xe7\xdb\x99\x45\x10\x80\x20\xe1\x9b\xf4\xf7\x0e\xaf\xe6\x9a\xf2\x6e\x04\x2a\x0e\xd9\xd4\xb0\xc6\x63\xee\xa5\x57\x93\xa8\x88\x73\xe2\xc8\xc7\x22\xc1\x3b\x00\x83\x2b\x59\x1e\x8f\x24\xdd\xac\xe4\x66\xb3\x30\xa3\x94\x1a\xfa\x9b\x81\x8b\xbd\xad\x30\xb2\xb7\x51\x0e\xc3\x57\xc2\x0a\xf0\xb5\x4b\x35\xda\x22\x4d\xba\xa5\x9b\xc1\x45\x1f\x0c\xd5\x99\x40\x89\xd6\xb0\x12\x2c\x02\xe9\xd6\x86\x2f\x7e\x16\x63\x62\x12\x23\x5c\xb4\xb8\xd0\xad\x45\xe5\x5a\x7b\x41\x35\xac\x73\x51\x57\x7b\x5c\x73\x32\xe7\x92\x6e\xd1\x85\x11\x31\x9e\x64\x17\xb0\x16\xdf\x74\x27\x4b\x14\x0e\xf2\xe9\xd6\xdc\x9c\xd3\xe0\x2c\x87\x1c\x19\x1e\xc6\xa1\x72\x5b\x21\xdc\x01\xe1\xe3\xf6\x7e\xc3\x20\x29\x08\xca\xb3\xc4\xf6\xf6\x06\x8d\x36\x7e\x73\x07\x9c\x03\xa7\x2b\xb6\x4f\x1a\xf8\x39\x6d\x86\x7f\x38\x46\x58\x0c\x69\x95\x51\x9c\x0b\xc7\xd0\x50\x0f\x87\xf2\x67\x38\x60\xf8\x46\x35\xd4\x5f\xd2\xec\x8d\x49\x12\xb3\xcc\x2a\xb2\x1e\xd7\x26\xda\xdb\xf1\x66\x6e\x67\xc7\xfb\x7b\xcb\x49\xd2\x1f\x99\xb8\x55\xda\xb4\x2d\xea\x08\xd8\xba\xd8\x90\x27\x5a\x6a\xf7\x93\x28\x32\x29\x4f\x2e\xf6\xc4\x59\xc5\x3e\x75\x4d\x43\xb7\x0f\x2b\xa7\x3c\x2b\xc6\x2c\x4a\x5a\xce\x00\x2b\xb4\xa8\xb4\xc0\xc5\xa6\x3c\xbd\x8d\xa5\x5b\x8e\x3b\xe4\xb0\x8c\xb0\xe6\xbf\x43\x83\xcc\xa8\x64\xf5\xfe\xb9\x09\xc7\x36\x84\x9f\x2c\xe2\x9a\x3e\xc0\xfe\xad\x40\xb1\x65\x9e\xa9\x65\xde\xff\x51\x7b\x3d\xb4\x51\x9f\x33\xef\xb2\x7d\xe9\x11\x44\x8a\x49\xa1\x62\xed\x9a\x8d\xd2\xf5\x5d\x3e\xc9\x79\x1e\xf6\x0d\x7e\x17\x37\x9f\x20\x0b\xd0\x82\x87\x8a\x94\x10\x54\x83\x45\x8f\x14\x63\x29\xa5\x70\xbf\x1d\x5e\xb5\x26\x32\x71\x7f\xba\x1a\x9c\x6b\x19\x58\x87\x6e\x02\x47\x2b\x5f\x57\x29\xc7\xd3\x64\xba\x3c\xb4\xb0\xe6\x77\x75\x7c\xb9\x17\x9f\x97\x7a\x02\xfd\x08\x36\xeb\xd4\x86\xfe\x82\x22\x35\x33\xbe\xd4\xfa\xd3\xa0\x52\xe9\x6d\x39\xde\x33\x16\x5e\x14\x2e\x19\x1a\x7d\x39\x59\xbd\x89\x31\x79\x9e\x96\xbe\x0a\xef\x50\x14\x72\xb6\x54\x22\x81\xd5\xad\xe4\x0d\xfd\x16\x1b\xf5\x7a\x66\xad\xe5\xa1\xe3\x3f\xd7\x68\x9e\x9f\x57\x81\xb6\x2b\x1c\xfa\xc1\x43\xf9\x16\x16\x0d\xdf\xd4\x79\x64\x9e\x3f\xd0\xce\x8b\x91\x50\xf3\x0b\xb7\x57\xcb\x71\x1d\xd6\x75\x75\xf6\xcf\x12\x03\x97\x73\x76\x45\xed\xd7\x9b\xd5\x53\x0a\x5a\x50\xc4\x7d\x9b\x85\x29\xc8\xff\x1d\x4b\x07\x72\xcf\x7c\xad\x3a\x59\xb2\xb1\x8d\xf3\x69\x3f\xcb\x28\xe6\x33\xaf\xa8\x6a\x4b\x63\x86\x6f\xf1\x16\x74\xf2\x7a\x95\x86\x77\x61\x81\x57\xfc\x8e\x8e\xff\x25\x44\x55\x48\xd6\xfd\x52\x35\x26\xf5\xc3\xfe\x5e\x97\xea\xdf\xfa\x15\x30\x2b\x88\xc7\xe4\xd5\x55\xae\xc3\xa7\x05\x56\xe9\x02\x4c\x23\xcc\x54\x6b\x43\xf1\x8f\x5d\x22\x22\x56\xd0\xf2\x02\x83\xe7\x04\x3b\xf6\x2d\x56\xb8\x0b\xa5\xd3\x8f\x8e\x15\xfe\xda\xc9\x1e\xe7\x83\x0e\xe8\x28\xd0\xe2\x89\x70\x79\x8e\x4c\xa6\x0e\xfc\xeb\xe7\x38\x8d\xf9\x7a\xd0\xfa\xb5\x03\x8a\x97\xd5\x85\xb0\x05\x91\xb6\xa0\x09\x11\xf9\x15\x24\xcf\x81\x36\xb8\x45\x13\x00\x3b\xf0\x43\xcd\xe1\xf1\x26\x6d\x4e\x9c\xbe\xa7\x1a\x21\x92\x6b\xd6\xae\xd8\xb8\x8f\x00\x14\x91\x19\x2f\x47\xbe\xa9\xf2\xa8\x74\x99\xb3\x5d\xc8\x39\x54\x18\x79\x41\xc5\x6c\x17\x02\xc5\xa3\xe2\x41\xcc\x2f\x87\xa3\x11\xfc\x7a\xc7\x50\x52\xfe\x92\x30\x94\x28\x4d\x1d\x93\x2e\xdb\x3c\x9b\x51\xe6\xe2\x86\x82\x13\x5f\x00\x98\x51\xd4\x48\x7c\x3a\xf0\x07\xea\x78\xb8\xda\x48\x51\x1d\x25\x99\x5b\xeb\x58\x89\x60\xf8\xe4\xeb\x7a\x3b\xea\x1c\xb0\xc2\xee\x43\x70\xb6\x4e\x2a\x99\x82\x93\x75\x01\xbc\xa5\xf6\x17\x7e\x63\x8f\x2f\xa8\x5e\x85\x0d\x41\x06\x77\x1a\xc9\x42\x7c\xf6\x2e\xec\x31\x72\x20\x5f\xd7\x4d\xd3\xc7\x68\x53\x6c\x1d\xdf\x8e\xa8\x9b\x97\x4f\xea\xbe\x10\x2c\x6c\x81\x63\xf9\x44\x67\xb2\x1c\x46\xab\x6c\x41\x44\x74\x9e\x5c\x7d\xbe\x51\xa4\xda\xe3\x24\x15\x39\x29\x1d\xc0\x48\x14\xe1\xd9\x40\x66\xff\x95\x02\xb1\xfd\x67\x0d\x62\xfb\xcf\x2a\x08\x18\x14\x31\x8e\x47\x64\x0c\x5e\x57\x12\x52\xaf\x2b\x3a\x8c\x2c\x89\xb3\x5d\xe5\xc4\x62\x87\x6d\xc0\x12\x70\xdd\x30\x50\x39\xf4\x0b\xaa\x9d\xf9\x78\xa0\xf6\x18\xbc\x41\xc1\xeb\x37\x48\xfd\x0d\x93\x91\x2f\x70\x0b\x3b\x87\x8f\x4e\x7d\x3c\xd9\x35\xbd\x15\x12\x13\x72\xdc\x74\x30\x9d\x12\x9c\xa9\x4c\x69\xb2\x66\x23\xca\x94\x72\xae\x33\xf0\x3a\xc4\x87\x15\x71\xfb\xb8\xc8\x99\xc3\xde\x89\xd5\x2d\x2c\xc8\x75\xad\xdc\x0c\xb2\xad\xd4\xf5\xbf\x09\xc1\xae\x66\xdb\x6d\xfa\x90\x1d\x8d\xa3\x64\x9d\x73\x61\xe2\x6b\xd2\x7e\x16\x67\xb3\x89\xa7\x01\xfa\x02\xf4\xdd\xce\xa1\xf4\x64\x2c\x47\x9b\xc4\x53\xb2\xa8\x18\x8d\x61\x29\x84\xae\xdd\x63\x70\x3e\x54\xcc\x8a\xdd\x70\xf9\x13\x4a\x82\xf4\xab\xb4\x75\xb1\x6c\x8f\x6a\xf1\xb1\xef\x93\x0b\xc0\x5c\xcc\xec\x3b\xb8\x03\xfd\xe9\xa7\x7d\x59\xa6\xdc\xed\x12\xe7\xfa\x92\xcb\xad\x2d\xd8\x1f\xdc\xec\xd9\xa0\x95\x8d\x88\xe2\x2b\x34\xd2\x78\xfd\xab\x30\x46\x30\xbd\xd7\xe1\xd5\xe0\xb4\xbe\x4d\xf3\x86\xf4\x05\x88\x3f\x45\x01\xda\xe7\x0e\xfe\xe5\xbf\xfa\x02\x9d\xef\xc8\xc7\x5d\x0e\x14\x31\xd9\xfb\xfc\xc8\x02\x96\xfc\xa4\x52\x21\x8f\x13\x08\x82\xb4\xc8\xe5\x15\x8f\x87\x5c\x5e\x71\x08\xbc\x2b\xe1\xd9\x57\x3f\x41\xaf\xea\xfe\xbc\xfc\x2d\x9c\x91\x10\xa8\xc7\x11\xd9\x42\x51\x0d\x1e\xce\x27\xa8\x0e\x21\xac\x8e\xb4\x31\x70\xb0\xfc\x2c\x50\x54\x75\x57\x14\x57\xdf\xf7\x27\x8a\x37\xfd\x36\x9d\x10\x48\x73\x30\x87\x08\x23\x6c\xb0\x1c\xe0\xd8\xdd\x0a\x7c\xcf\xf3\xa5\x89\x02\x0a\x5e\x0a\x14\xb1\xde\x47\x8a\x8f\x60\x60\xe2\xa2\xd7\xaa\x34\x8c\x78\xc0\xe9\x09\xa5\x2f\x6a\x0a\x92\x75\xe6\xe6\x07\x4c\xf2\x61\x3a\x5c\xf9\x5a\xa1\x9b\xfb\x36\x32\xeb\x33\x2d\xc5\x49\xaa\x28\x87\x4e\xa8\xce\xf5\x9b\x4a\x76\xef\x08\xbd\xba\x20\x9d\x1a\x92\xe0\xbd\x28\x1c\xb3\x93\xcc\x28\x73\x45\x94\x79\xca\x17\x98\xd6\x6d\x37\x75\x6d\x34\x38\xda\x5e\x0b\xd4\x69\xf8\x5a\xa5\x53\x72\x68\xe2\xcf\x50\xde\x83\xfb\xfe\xf0\xa8\xb0\x11\x3b\x50\x84\x63\x65\x03\xa4\xc4\x18\xe3\x48\x49\xb4\xad\xc3\x35\x30\x3d\x32\xe3\x57\x95\x9f\x7b\x99\x92\x4d\xb2\xf6\xca\xf7\x85\xcf\xcc\xac\x0c\x80\x56\x1d\xe1\x25\x2a\x4c\x6d\xc8\xcb\x30\xbc\x21\xa8\x93\xae\x3a\xcf\xd5\xe3\x94\xce\xc3\x96\x60\xc7\x5c\x26\x91\x56\xd7\x3e\x5b\xae\x36\xac\xc9\x93\x14\x8c\x01\x7f\x70\x9d\x46\x5c\xda\x94\x68\xcd\x0b\x82\x53\x21\xe9\xae\x51\xee\x50\xa0\xcc\xe5\x2a\xc4\x59\x36\xdd\xd9\x6e\xe3\x3e\xdf\xce\x7a\xc3\x24\x72\xa2\x23\x22\xf8\xae\xbc\xa1\xd7\x55\x19\x24\x4d\xba\xac\x61\x84\xe0\xf2\x08\xad\x26\xbe\xae\x10\xdd\x16\x71\x6e\xd3\xb1\x49\xf3\x6c\x1a\x03\xc3\x8a\x69\x48\x58\x89\x7c\x9a\x4f\x0d\xdc\xd4\x80\x90\x9b\x4a\xb7\xaa\x67\xc6\x61\x6e\xa2\xf0\x55\xb8\xc5\x8c\x12\xd1\x3b\xe8\x8a\xe2\x06\x1b\x25\x7d\xd0\xb9\xd0\x28\x23\x18\x39\x86\xad\xcb\x37\x13\x0d\x38\x48\x7a\x43\x3b\x92\x44\x67\x85\xee\x4c\x9a\x95\xea\x7d\x86\x07\xc8\xf9\xf6\xe8\x4f\xd7\xa4\xac\x64\x94\x15\x02\xd8\xa4\x61\x52\x64\xb4\xb3\x00\x5a\xda\x0a\x14\xb3\x17\x12\xe6\x8e\x5b\xd2\x13\xab\xa2\x40\x04\xd7\x69\x4a\xb5\xc4\xf7\x84\x50\x14\x11\xc4\x74\x47\xe1\x10\xa7\x37\x9c\x04\xf1\x78\x6c\x4d\x44\x11\x27\x12\x14\x8f\x80\x84\xc8\xad\xc1\x72\xf4\x60\xce\xdf\xd7\x5c\x56\xba\x39\x74\x53\xc9\xe2\x5f\x52\x15\xde\x22\x5e\xa3\xe6\xa8\xfd\xb3\x5e\x9e\xd7\x4b\xf5\xaa\xf2\x55\x66\xe9\xd5\xa3\x75\x2a\x59\xe0\x7d\xef\x04\x0a\xfc\x81\x2c\x99\x64\x98\xe4\xd9\x93\x22\x1f\x17\xf9\xb4\xca\xdb\x7d\x88\xb3\x48\x60\x67\x3e\x69\x73\x9b\xd2\xee\xdc\xf3\xa2\x5c\x9f\xbe\x59\xcf\xf6\x78\xbf\xfd\xcf\x69\x67\xc9\x66\x2c\x57\x2c\x36\xd3\xe5\x89\xa7\x4f\xb8\x38\x51\x9a\xa6\xaf\x2b\x5b\xf0\x28\x78\x15\xb0\xcb\xee\xd0\x60\xc1\x42\xde\x9b\x28\x4d\x92\xd3\x18\x39\x1c\xc4\x97\x55\x40\x9a\x9a\x7e\x98\xec\x56\xe5\xd6\x0f\xb5\xca\x02\xd8\x49\x04\x8e\x5b\x3e\x99\x23\xbf\xf2\x61\xdb\x7b\x2a\x6a\xff\x30\x50\xe9\xee\x0f\x35\x15\x30\x68\x8c\x80\x97\x94\xe6\x59\xad\x48\xd6\x50\xa3\x2c\x23\xda\x14\xb4\xf5\xc2\xe6\xab\x54\xd6\xaf\xe3\xa7\xe0\x82\x1c\xad\x64\x0b\xd2\x7e\x4e\xd9\x5a\xa0\x02\x81\x54\x42\xca\xe2\xab\xd4\x85\xe4\xc2\x7b\x0f\xb0\xa9\x77\x48\xbf\x30\xfb\x6c\x7b\x5c\x74\xa3\x30\x1b\x3a\x92\x64\x24\x79\xd0\xa7\x28\x68\x6f\xef\x27\x1e\xaf\xd5\xc6\x16\xd1\xbf\x33\x18\xd8\xd4\xc6\x3d\xf8\x97\xa2\x8c\x4e\x4f\x2f\x1a\xe1\x7e\x03\xfd\x37\xff\xf8\x9f\x2a\xac\x2a\x74\x67\xf8\xba\xe3\x13\xe1\xfd\x30\x1b\x17\xb9\xcd\x68\x70\x34\x32\x10\xfe\xf3\x47\x81\x07\x25\xbd\x1f\x68\x61\x04\x78\x71\x82\x8e\x3a\xa5\x68\xde\x4f\x35\xea\x6b\x0d\x4c\x8f\x99\x69\x85\x25\xc7\x23\x08\xce\x29\xbf\xb8\x6f\x22\xcb\x58\x49\xc7\x77\x52\xbe\xa0\xf8\x33\xb5\x38\x69\xbe\x3d\x37\xff\x68\x79\x0c\xb8\x3d\x54\x2e\x06\x1e\xc8\xc0\xf5\x18\xfd\xc3\xdf\x57\xcd\x19\xf7\xe0\x45\xe1\x10\xf9\x8e\x56\x00\x78\x13\x07\x12\x46\xe2\xbb\x34\x27\x58\x9c\x97\xf5\xbe\x79\x07\xe7\x2d\x66\xfc\xb2\x6a\xb3\xdc\x24\x98\x0d\xa2\x82\x2b\x38\x01\x85\xb2\xd0\x1b\x96\x28\xcc\x87\xc9\x2b\xd3\x1e\xf9\x74\x42\xed\x08\x66\xfd\xab\x70\x66\x0a\xb3\xa6\x90\xd3\x16\x31\xd3\x5c\x84\xf1\xf2\xb4\x4a\xb9\xc0\x92\xa1\x1e\x83\x34\x07\xcb\xad\x62\x4c\x58\xa8\x5e\xd9\x8f\x5e\x11\xe5\x2d\xc5\x59\x7e\x5f\xf5\x8d\xdf\x57\x49\x94\x81\x09\x53\x9b\x56\xc4\x9f\xe9\xdd\x44\xfd\x59\x65\x5b\xf3\xa2\x1f\x26\x53\x64\x84\x5d\x37\xcb\xfe\x59\xd7\xbb\xe3\xe1\x49\xef\x4e\x34\xb3\x7e\x9e\xb4\x71\x7c\xb2\x36\x04\xf1\xdd\x21\x35\x72\x0f\x83\x0d\x87\xe1\x7d\x9c\x71\x78\xc4\x1f\x4d\x5a\x5f\xf8\x0d\x9e\xc5\x19\xb0\x4d\x61\x10\xaf\xd0\x34\xe0\x68\x7b\x84\x8a\x9c\x82\x1e\xf3\xd5\xc9\xa3\x81\xf6\xbc\x2f\x63\xd8\x71\xc2\x73\xd7\x98\x23\xc8\x98\x3f\xc8\xeb\xe9\x72\xd0\x3a\xf8\xbc\xab\xf4\x90\x59\xc4\x0f\xde\x51\xf4\x6e\x6f\x05\x7e\xab\x9d\xa4\x17\x16\x07\x45\xad\x87\xcb\x38\x1f\xe0\x40\x9f\xc4\x1e\x86\x97\x7e\x04\x1e\x34\x37\xef\x83\xd0\x12\x4f\xff\x3a\x56\xad\xa4\x7b\x69\xe2\x05\x58\x5f\x4e\x3c\xb2\xcc\x3b\x36\x94\x97\xb8\x45\x66\x8a\x6b\x5a\x41\x19\x0f\xc9\xc6\xa8\x1c\x93\xad\xe7\xe6\xbd\x56\xc9\xaf\x7f\x89\x4f\x84\xa9\xce\x5e\xbf\x66\xcd\x94\xda\x57\xa0\xed\xc6\x69\xfe\x13\xfa\x09\xe9\x10\xf5\x2b\xc1\xbe\x32\x0e\x53\x1c\x9f\x5c\xf4\x98\x78\x73\x74\xa6\x01\x2f\x31\xdf\xee\x9b\xdc\xe0\xd0\x97\x24\xaa\x4a\xa8\xd6\x52\x31\x65\x34\xb9\xb2\xbe\x66\x52\xb8\xfd\xb0\xdf\x20\xab\xe0\x6b\x77\xd4\xae\x99\xb8\x6f\xd3\x69\xa5\xeb\x70\x8c\x8e\x44\x9c\x69\x7f\x01\xfb\x8d\x00\xe6\x8a\xe2\x8d\x3c\xdc\x04\xc3\x22\x45\x77\xc6\x8e\xcf\xf3\x9e\x3a\x06\xa7\x54\x75\x81\x4b\x9a\xe0\xdd\xc0\x03\xdc\xd2\xb0\x9b\x64\xc9\xc8\x44\x2d\xdd\x87\x81\xb9\x97\xa6\x8c\x3a\x7b\xa6\xef\x11\x60\xd7\x15\x67\x3d\xaf\x19\xbe\x99\x7c\xda\x53\xa7\xdb\xd5\x24\x22\xee\x3b\x93\xb2\x21\xc5\x92\xbb\xae\x98\xd2\xaf\x6b\x3e\xec\xf1\xa0\xa5\x20\x0f\x6f\xc2\x58\xf0\x4d\x83\x04\x7e\x3b\x4f\x93\xa2\x1b\xa1\x39\xcc\x23\x6e\x21\x35\xcb\xd7\x4d\x0d\xa8\x91\xe9\x26\x68\x5e\x54\xd8\x35\xa1\x4b\x61\x9d\x0d\x58\xa5\x61\xd8\x6b\x79\x49\xe1\x0f\x15\xff\xc8\x87\xca\xe3\xec\x0d\xcd\x98\x6a\x34\x3e\xc3\x83\x3f\xe5\xeb\xba\x28\xe7\xfe\xa5\xcf\xb5\x6d\x3f\xcc\x93\xb4\x5a\xd0\x08\x3c\x2c\x43\x17\x1c\xc6\x66\x3d\x4d\x22\x10\x21\x0a\xfd\xb0\x0f\x40\xcf\xab\x31\x8f\x93\xb8\x6f\x47\x49\x2f\x05\x5d\xf8\xaf\x7f\xc9\x79\x06\x1e\x34\x5d\xcf\xbb\x2c\x2c\xb4\xfb\xa9\x19\xb8\x64\x8d\xb0\xcb\xd0\xc4\x0a\xf9\x85\x17\x6e\x35\x69\x37\xcc\x53\xb3\x6c\x1f\x26\xeb\x24\x01\x54\xb9\x13\xb9\x81\x91\x2c\x15\x3e\xf8\x03\xb2\x80\xf0\x55\x59\x6c\x09\x56\xe8\x32\x82\x29\x01\x6f\x2a\xd2\xec\x3f\x0f\xbc\x58\x02\xd8\x20\x60\x7f\xff\x40\xc1\xed\xc7\x49\x39\x85\xfb\x67\x3d\x0a\xd3\xd9\x9d\xc3\x9a\xce\xb6\xd7\x33\x69\x3e\x5c\x9f\xaa\x34\x0f\xd1\x2e\x83\x51\xbd\xac\xbd\x96\x37\x6b\x33\xb5\x6f\xb1\x3d\x48\x4d\xbc\x32\x28\x52\x11\xf7\xc3\x8f\x20\x85\x81\xd7\x3a\x1c\xa8\x4e\x82\x99\x8d\xcf\x3d\xa0\x44\x9e\xda\x70\xd4\x2d\xd2\xcc\x3a\x65\x1a\x61\x1e\xf4\xc9\xef\x2b\x5a\x5a\xd9\xf7\xc4\x0e\xcd\x9a\x09\x85\xeb\xc0\xc1\x0b\xfd\xee\xb8\xd4\x98\x0a\x18\x26\x92\x0a\x80\xcf\x72\x4a\x21\x48\xb5\xb8\xd4\xa8\xe8\x0d\x9f\xf4\xf4\x65\xd7\x09\x4c\xe1\x84\x08\x1c\x12\x63\x8b\x66\x18\x71\xfe\x2f\x34\xad\xc1\x15\x15\x89\x71\x5a\xd7\x09\x7e\x97\x53\x8c\x72\xc7\xc9\x89\x52\xdb\xe3\x70\x12\x2e\x2c\xa7\xb1\x10\x37\xdd\xd3\xf2\x9b\x53\x48\x83\x09\xfc\xa1\x3c\x64\x91\x06\x3c\xa1\xf4\xcb\xb6\x68\xb5\x39\xd0\x8a\x38\x33\xff\xcf\x13\xba\xb2\xf7\xd5\x26\xd5\xc2\xcc\x96\x9b\xea\x85\x59\x5e\xc2\x78\x0f\xbe\x9e\xfc\xfd\x07\x4c\xa3\xe9\x7b\xbc\xc5\x54\xeb\xd7\x0e\x38\xa4\x6c\x39\x82\x58\x54\xd7\x75\x2d\xf3\x3d\x27\x2b\x90\xda\x2c\x4f\x52\xdf\xdd\x29\xc8\x73\xfa\x63\x69\x63\xdc\xbe\x37\xf7\x2d\xb6\x7b\x26\x8e\x5d\xf0\x2b\xc4\x28\x1e\xef\x7b\x42\x99\xd0\x61\x2c\x1d\xaa\x0e\x91\xac\xca\xbe\x95\xf2\x87\x1d\x9b\x5d\xfe\x7d\xcf\xea\x4e\x84\xfb\xf0\x3d\x11\x33\x7e\x34\x51\x0d\x0b\x60\x2b\x75\x1d\x25\xa5\x1b\xc1\x7f\xd5\x40\x9b\xfc\x6c\x3b\x8c\x07\x26\xce\x43\x16\x21\x83\x27\x7f\x56\xa7\xc5\xcf\xba\xbe\x21\x86\xc0\x75\x23\x3b\xe3\x4b\x20\x7b\x3b\x5e\x7c\xf9\x82\x62\xf7\xbc\xa9\xb0\xa0\xdf\xc5\x2b\x22\xc1\xf1\x71\x43\x23\xe7\x4b\xed\x97\x4d\xef\xcb\x05\xba\xb6\x96\x1c\x30\x43\x55\xac\x8f\x35\x06\x0a\x99\x61\xc1\x44\x64\x5e\x4f\x62\x65\xf3\x4d\x93\xa2\xf6\x28\x64\x5d\x42\xc0\x29\xae\x29\x7d\xce\x6b\xca\x9a\x0f\x4d\xda\xb7\x59\x0e\xac\x31\x4c\xf8\x34\x30\x55\x2e\xa1\x56\xee\x0d\x6c\xc0\x8f\x6a\x07\x71\xb9\x6e\x4d\xb4\x6a\xfa\x49\x6a\xe2\x29\x0d\xb7\xa0\xb5\xcf\x28\xfd\x49\x4b\xc9\x9b\x35\x75\x31\x22\x09\xd5\x52\x50\x14\x28\xcb\xf0\xb5\xaa\x41\x1a\x3b\x6e\x69\x41\xa8\x2d\x2d\x86\x5f\x2d\x6a\xa7\x5c\xac\x45\x05\xe3\xb2\x2a\xf7\x5c\x56\x29\x23\xfb\xca\x38\x4a\x52\x9b\x4d\x29\x4a\xa6\x8a\xd6\x15\xe4\x71\x91\x31\xbc\xea\x40\x92\x79\x9a\x8c\xc3\x9e\x89\x8d\x1a\x63\x2e\xba\x89\x08\xaa\x54\x3f\xbe\x5c\x98\x34\xb7\xf9\x94\x77\xbe\x37\x15\x4b\xdb\x4e\x18\x06\x84\xf4\x97\x55\xa4\x9a\x15\x31\x22\x43\x97\xb7\xf7\x45\xf9\x9a\x23\x31\x7f\xb0\x3d\x48\x22\x51\xec\xe2\xb7\x08\x94\x30\xc3\x59\xd5\x52\xd0\x4b\x4c\x44\x56\x63\x46\xf7\x8f\x33\xe9\x21\x96\xd4\xdb\x13\xff\x5a\xc8\x45\xb1\xa4\x9f\xee\x48\xbd\xad\x90\x1b\x61\x66\xba\x36\x8a\x0c\xd1\x14\x31\xc3\x07\xb9\xc3\xc2\xf6\x21\x5b\x6b\x54\x44\x79\x98\xe5\xc2\x8a\xc6\xb8\x7c\xda\xc9\x82\xd1\xdf\xbe\xc8\xf6\x2d\xb6\x57\x43\x9b\xc7\x66\x64\x59\x9c\x96\x09\x52\x35\x01\xf3\x9d\x06\xad\xe7\xf6\xcb\x36\x5d\xe1\xa4\x08\x3c\xbc\xf7\x26\xca\xf5\x7b\xcf\x2b\x3c\x0c\x93\x1c\xbc\x0d\xcc\x6e\xa5\x75\xa6\xa6\x3a\x1a\x00\xa8\x5e\xb9\x4f\x32\xeb\x15\x6d\xd2\xc0\xe3\x94\x2f\xa8\x34\xd0\xd8\xe6\x36\x6d\x69\x3d\x5e\xa6\xc9\x14\xf7\xdc\x4f\x7b\x54\x74\xa7\xab\xac\x07\x4e\x32\xe8\x17\x8a\x3f\x8d\x8f\x79\x86\x82\x05\xdb\x33\x23\x72\x3e\x84\x59\x6a\x6c\x14\x52\xa1\x1f\x46\xe9\xb2\xd2\x20\xe2\x14\x91\x80\x49\xeb\x76\xe7\xa5\x76\x36\x4e\x72\x2c\x43\x9c\xb5\x3f\xa5\xe7\xe1\x6b\x45\x32\x90\x15\x69\x9a\x14\x71\xdf\xf6\x89\x60\xd0\x11\xc9\x2c\x79\x4e\xbe\x8a\xfc\xed\x76\xba\x94\xc5\xc5\x76\x9c\x3c\x33\xa5\xac\x1a\xea\x92\x38\x55\x6f\x06\x2a\x1f\x78\x54\xd1\x3b\xf5\x92\xd1\x20\x49\x39\x5a\xc7\x74\x5d\x53\xa0\xd8\x6b\xb5\x81\x29\x03\xaa\x71\x6a\x93\x5e\xaf\x18\x87\xe2\x62\x32\x56\x0e\xa7\x8e\x00\xe7\x7c\xc5\xf5\xd5\x70\x0c\x91\x68\x81\x27\x7a\x0a\xd8\x4d\xe5\xde\x11\xbc\x36\xcc\xd7\x77\x97\xeb\x01\xf1\xf3\x5f\xc3\x4c\x23\xa3\xf6\xa7\x58\x7b\x4c\x06\x02\x9f\x03\xaf\xfa\x21\x22\x6b\x44\x09\x97\xc8\xb3\xe1\x6b\x38\x23\x70\x5e\x4f\x34\xa8\x83\xb4\xf3\xd4\x9a\xac\x48\x3d\x17\x13\x76\x03\x37\xe0\xf3\x4d\xcd\xdd\x28\x7d\x6c\x6b\xc7\xe4\xb3\x32\xa3\x06\xf9\x59\xc2\xae\xf1\x20\x9a\xd8\x28\xe9\xad\x0c\x2d\xef\x28\x51\x70\x57\x34\xb6\xdf\x77\x3b\x2a\x4d\x92\x3c\xab\x18\xf4\x40\x19\x74\x55\xd0\xeb\x87\xe3\x08\x22\x50\x10\x7a\xe3\x95\x49\x4b\xdd\x5d\xef\x9f\xad\xae\x58\xb9\x69\x8c\x1d\xc2\x78\x85\xe1\xb4\x0c\x9f\xc6\xe2\x11\x2c\x75\xad\x8b\x7d\xd6\xa9\x94\xd1\x4e\x66\x9f\xce\x73\x6b\xbd\x72\x42\xf5\xb8\xf4\x86\x26\x35\xbd\x9c\xf9\x66\x50\xfc\x61\xee\x4c\xbe\x71\x7e\xb2\x89\x22\x6f\xe7\xb8\x5b\x67\xa2\xd6\xf1\x19\x25\x1d\xbd\x66\xa3\x9e\x04\x8e\x2e\xd1\xbd\xb0\xe0\x80\x07\x3e\xbe\xe3\x4c\xef\x6e\xdf\x40\xf1\xed\xc0\xb7\x4d\x7f\x8b\x16\x0f\x5f\x07\x2a\x15\x73\x43\x37\x18\xdf\xe0\x24\x0f\x3c\xe6\xff\x8d\xdc\x57\xfe\x2e\xe5\x1a\x74\x01\xd5\x27\x74\x0d\xfe\xf2\xb4\x3a\x43\xdf\x53\x0c\x7e\xef\x29\xc8\xce\xe9\x86\x66\xef\xf6\x20\x49\xed\xaa\x4d\x29\x9d\x2a\xf6\xaf\xfc\x51\xf8\x99\x00\x42\x22\xb9\xd8\x52\x59\xd8\x8c\x23\x76\x1a\x15\x8c\xee\x0d\xa5\x8e\x74\x43\xb9\x05\x71\x92\x7f\x4a\xe1\xe8\xb8\x80\x26\x95\x29\x45\xba\x7a\x6b\xe2\xcf\xd4\xe5\xa7\x88\xcc\x19\xb3\x71\x91\xe2\x3c\x2c\xe3\x87\x01\x6d\xe2\xee\x5b\x9d\xc4\x0d\x4a\xaf\xdf\x21\x84\xf7\x4b\x14\x77\x49\xd7\x20\x59\x97\x52\xd4\xc5\x7c\xa7\xcf\xae\x0d\x4a\x5b\xe9\xe6\x64\x44\x16\xe7\xa8\x60\x27\xf2\x03\x98\x1b\xd5\xb6\x3c\xcf\xe5\x87\xfb\x94\xfe\x13\x52\x30\x32\xad\xf0\x3a\x19\xf8\xc2\xea\x3d\xce\xf1\xe8\xa6\xa6\x4f\x69\x63\xa5\x8d\xa3\x5b\x3e\x36\x55\x2e\x73\x94\xa4\x86\x91\x1c\x8e\xa1\xd1\xb3\x35\xd6\x42\xd1\xcf\xb7\xb3\x62\x79\xd9\x7a\x15\x12\x40\xb2\xb9\xe7\x90\x6f\x6a\xd5\x33\xcf\xd7\x55\x58\xf8\x5b\xb0\x8c\x5b\x4a\xd6\x12\xde\x06\x12\x6a\xbf\x54\x76\xc2\x8c\xc6\x51\x38\x08\x6d\xca\xb8\x0f\x38\x0b\xb7\x02\x95\x6f\xba\xa5\xb2\xc9\xe3\x24\xcc\x92\x58\x81\x2e\x19\x15\x8b\xf3\xe4\x2a\xf0\xb2\x7c\x43\x05\x56\x61\xf7\xf3\xb9\xed\xff\x9b\xec\xbc\x10\xc9\xd4\xfa\x27\xe7\x50\xe6\xe4\xf4\x93\x70\x0b\xd2\x58\x0b\xb9\xa0\x02\x26\x9a\xb4\x37\xc4\x21\x22\xa2\x18\xe5\x97\xf3\xb5\xda\xde\x51\xb2\x1c\xf6\x4c\x34\xe5\x65\x98\xcf\xa9\x3e\x17\x3c\x1e\xbc\x97\x6f\xab\x24\x08\x50\x5d\x1c\x96\x89\x3c\x09\x73\x9f\xf2\x4d\x5d\x58\xf6\xf9\x03\x0e\x07\xbe\xae\xbc\x2a\x64\x73\x84\x09\xa9\x49\x90\xa1\x2b\xb4\xf0\xbe\xba\x54\x7e\x5c\xca\x4e\x75\x7c\xcb\xfe\xf6\xc8\x66\x0c\xea\x75\x8c\x6f\x2e\x63\xf1\xe3\x4a\x24\x98\xe5\xcf\x4c\xf9\x7c\xfd\x47\x5a\x2e\xee\xdd\x8a\x0c\xf4\x39\xe5\x34\x15\x79\x32\xad\x45\xfb\xae\x2b\x85\xad\x9d\x1d\x8f\x07\x3d\xad\x3d\xf4\x3f\x56\xca\xf7\x92\xa7\xca\xf6\x28\xd5\x29\xae\x87\x4a\xeb\x3f\x2d\x6d\xa7\x47\xb7\x28\x3c\x69\x33\x1b\x4a\xf5\x67\xa6\xe3\xd5\x19\xff\xd1\x13\x24\xfb\x80\x7a\x2e\x10\xfa\x80\x41\xb2\xd4\x04\xec\xe5\x09\xb2\x03\x02\xfc\x6e\x08\xe4\xb2\x61\xb2\x86\xc1\x96\x3e\xb7\x96\x53\x98\xff\x5a\x0d\x96\xb5\xb8\xb8\xd4\x7e\xb9\xc8\xf2\xb0\xc7\xdc\xa7\x48\xb3\x01\x17\xc9\xd7\xb5\xa5\xb0\xb0\xd0\x0e\xe3\x2c\x0f\xf3\x22\xb7\x19\x0f\x24\xfe\x76\x8c\x05\x0d\xa4\x05\x1a\xa3\xf8\x1a\x61\x0b\xff\xd5\xc4\xa3\xdd\xd6\xd2\x30\xb7\xe9\x2e\x5f\x3c\xfe\x68\xa2\x70\x41\x4c\x36\x8b\xfd\xfa\x91\x92\x0f\x3a\xa9\x79\x7f\x39\xca\xe7\x9b\x26\xc6\xd0\xf2\xb0\x44\xd7\x3d\x73\xb3\x20\xd6\xc1\x2e\xf9\x53\xfa\x5e\x29\x63\xfb\xd4\x92\x89\xb2\xe4\x93\xf4\x33\x08\xe2\xdf\x98\xf8\xa6\x39\x6e\x44\x02\xb6\xe3\x04\x76\x0e\x96\xe7\x4d\x64\x97\x5c\x87\xb4\xab\x68\xdc\xc4\x21\x83\x7f\xb8\x13\x78\x3a\xb4\x0f\xf0\xf8\x48\x21\x1d\x81\x6f\xe7\x08\x9b\x5d\x0b\xe0\xc5\x40\x65\x84\xae\xd3\xe9\x23\x1d\x75\x98\x01\x1c\x58\x53\x1b\x7e\xa7\xec\xe9\x50\x06\x8a\x1f\x92\xaa\x2e\x12\x25\xa8\x22\x0a\x9a\x94\x84\xce\xb0\xc1\x45\xea\x99\xb4\x1f\x9a\x5e\xcb\x67\x04\xce\xab\x70\xef\x7c\xe0\x05\x3a\xf3\xf5\x71\xb2\x9c\x9a\xf1\xb0\xb4\x49\xe4\x1d\x39\x22\x38\x4f\x0a\xd7\xb0\xe1\xdb\xc3\x24\xb7\x91\xfe\x81\x40\xfd\x80\x62\x8e\x21\x0a\x95\x9c\x21\x4a\x48\x0c\x1d\x57\x42\x4e\x75\xe2\xf3\xcf\x13\x3a\x3c\xec\x16\xae\xd6\x80\x54\xdf\x1b\x1a\x9c\xfb\xbf\xd0\x64\xe0\xf1\xde\x52\x21\xf5\x38\xec\xcf\xf8\xfa\xe2\x35\xe5\x0a\x9c\xe2\x96\x71\x0d\x7a\x47\x15\xea\xb3\x74\x1e\x21\xe0\xdd\xbb\x51\xcf\x2b\xcd\xb7\x7b\x26\x1f\x26\x51\xd8\xab\xea\x86\x5e\xd7\x1a\x02\x87\x2b\x92\xb5\x15\x31\xf4\x2c\x37\x51\x44\x55\xcf\x0a\x77\xb7\x40\xf7\x68\x5e\x5d\x52\xcf\x91\x96\x5e\x6f\xe8\xae\x9c\x6f\x8f\xc2\x38\x1c\x09\x54\xc6\x71\x4b\x2a\xdc\xe9\x76\x6b\xfe\xf9\x76\x2f\x89\x57\x6d\x9a\xcf\x28\xa9\xc5\x3f\x51\x90\xa1\x37\x31\x46\xe8\x05\xbb\xa3\x88\x31\xce\x60\xbf\x0a\xcf\x71\xdd\x0c\x1d\x68\x67\xbd\xd4\xda\x38\x83\xed\x92\x98\x98\x06\x45\x82\x65\x7f\xec\x0d\xc2\xe5\x22\xb5\x10\x3b\x60\x36\x08\x7a\x70\xc7\x0c\xe1\x60\x4f\x70\xbb\xf8\xba\xd1\xfc\x69\x06\x3d\xfc\xdd\x65\x0d\x6d\xbc\x3c\x79\x70\xdb\x58\x9a\x14\xcb\xc3\xa4\xc8\xa7\x3c\x69\xe9\x55\x2a\x19\x38\x85\xbd\x39\x91\x78\xf8\xd0\x49\x71\x74\x4d\xdc\x4b\xe8\x00\x85\x9b\x77\x5e\x0b\x75\x9e\xaf\x3d\xe2\xa1\x43\xed\x9e\x1d\xd9\xdc\xa6\xeb\x2a\xf1\x7a\x4c\x27\x5e\x8f\x29\xf9\x88\x31\xb5\x42\x10\x90\x2f\xd5\xfe\xd9\x05\x0a\xd8\x04\x0d\xef\x1d\xb9\xdc\x84\x6b\x26\x9e\x51\xbd\x77\xec\x50\x0a\x16\xa2\xe5\x44\x1f\x80\xe5\x83\x2d\x64\xc5\x2e\xa9\xd7\x6f\xaf\x6f\x3d\xfd\x74\xbb\x1f\x66\xe4\xf0\xb8\xe4\x2f\xc6\xe4\xdf\xaa\xfa\xd9\xbf\xdd\x46\xe0\x3b\x24\x87\x5f\xd4\x2e\x94\x1e\x22\xbc\x62\x2c\x9e\xdf\x6c\x2a\x17\x84\x71\xdf\xbe\xa2\x9b\xf7\x50\xc3\x12\x30\x43\x83\x9a\x6e\x3f\x4d\xc6\xb4\xee\x5d\xd9\xc6\x61\xfb\xfe\xbc\xf6\x0b\x2f\xce\x1f\x6c\xa7\x36\x62\xf9\x5d\xd8\xe3\xab\x0a\x48\x7d\xb5\x96\x83\x22\x42\xff\x31\xb1\xf4\x27\xa9\x9a\x86\x33\xca\x4d\x3e\xd3\xc0\x6f\x51\x1e\xdf\x69\x2e\xfa\x57\xf0\x63\x6e\x28\x51\x22\x3e\x2b\xe4\xfc\xf7\x1e\xc9\xc0\xa6\x29\x5c\xba\xf2\x8f\x5d\xa7\xf8\xfe\x25\x47\x60\xee\xd1\xd0\x7d\x93\x9b\x47\x7c\xf8\x72\x0e\x7b\x53\x68\x7e\xe9\x07\xe0\x2f\x5c\x53\x5d\x8d\x54\x11\x17\xb4\xc6\xc3\x38\xce\x71\xb6\x5f\xe3\x15\x03\xa3\xf7\x0e\xce\x3f\xfc\xdd\x5d\x5a\x32\x48\xb9\xa3\x79\x11\x07\xd0\xc3\x1d\xa5\x38\x70\x5b\x91\xdb\x5d\xc7\x5c\x71\x82\x64\x25\x4e\xd6\x22\xdb\x5f\xa6\xb0\x72\xfe\xa0\x53\xcf\x2e\xa3\x2a\x16\x67\x0c\xbc\x3b\x84\x2a\x9e\xc8\x6d\x7b\x4c\x60\xd2\x7d\xd9\x12\xb4\x15\x7a\xa1\x70\xa2\xdf\x55\xfd\x41\xef\xea\x7a\x68\x12\xe7\xa9\xc9\xa6\xfd\xd7\xa2\xa7\x43\x00\x6b\xe5\x37\x08\xc3\x20\xbd\x03\x32\x80\x5f\x51\xb9\x2d\xd3\x1f\x85\x59\x86\xdf\x9b\x3f\xe8\xb5\xad\xe6\xe6\x1d\x6a\xc7\x07\x1e\xb1\x49\xd3\x64\x4d\x51\x36\x9c\x0d\x3c\x65\xc3\xd9\xc9\xa7\xb7\x03\x75\x9e\xa5\x02\xec\xee\xf2\x6f\x80\xb6\xfd\x09\x05\x83\x7c\x0d\x7b\x29\xcc\xa8\xaa\x7c\xf2\x4b\xc5\x57\x79\x15\x53\x8c\x48\xe5\x92\xd2\xa5\xdf\x54\xd8\xcd\x41\xf1\xea\xab\xeb\x55\x89\xa6\x0a\xef\x84\xa3\xe3\x4c\x56\x6d\x6c\x98\x35\x12\xab\xe6\x1e\x0d\x2d\x5f\x2b\x9c\x4c\x38\x90\x9c\xbd\x08\xec\xf9\xd2\xdb\x85\x06\x41\x6a\x62\x87\x31\x69\x28\x18\x46\xf6\xd0\x2a\xde\x5a\x43\x76\xa6\x5f\xda\xca\x54\x72\x75\x48\x3d\x5e\xc1\x12\xe7\x1b\x15\xc7\xa6\x21\xd4\x5f\xca\xef\xd7\xf8\x39\xbe\x56\xce\xc0\xab\x91\x55\xf0\x2e\x94\x50\x51\x24\x83\x2e\x90\x0c\xe7\x67\x43\x39\xa2\x08\xa9\xf6\x6f\xfe\xc9\x38\x4d\x7a\x36\xcb\x1c\x6a\x8d\x81\x33\xf4\x21\x2d\x0a\x8a\xd8\xf6\x9d\x06\xf3\x76\xa0\x6d\xd6\xcc\xfa\x94\xea\x9f\x3d\x4e\x3b\x1b\x91\xea\x2e\xea\x8f\x47\xd8\xb9\xb3\x26\x34\x3d\x37\xd7\x8e\xac\x59\xdd\xc6\x3e\xba\xa9\x80\xd5\xf5\x08\x6c\xff\x52\xdb\x74\x93\x22\xa7\x55\x89\x70\xe6\x63\x05\x84\xfc\x58\x03\x16\xd7\x47\x2e\x53\x8d\x4c\x28\x9f\x4c\x7c\xe3\x68\x5b\xc7\x69\xd2\x0f\x97\x59\x10\x11\xa9\x8b\x77\x02\xdf\x49\xf2\x8e\x3b\x1e\x97\x93\x22\x47\x7c\x89\x6e\xa4\x3b\xe4\xea\xf2\x75\xc3\x2a\x39\xd0\xce\x93\x65\x9b\x97\xb3\x58\x3e\xae\xb0\xea\x55\x08\x98\x6b\x2f\x38\xdb\xee\x1b\x42\x00\x3a\x76\x0c\x8c\x88\x68\x87\xd4\x5b\xce\x5f\x98\x5d\x7c\x44\x49\x3e\xfd\xa4\x22\xfb\x46\x23\x8b\xbd\x7d\x71\x52\x4d\x4b\xee\x9f\xf5\xc2\xd1\xfb\x64\xc5\x5c\xd7\x82\xd0\xdf\xaa\xa8\x95\xd2\x4a\x44\xce\x17\x2d\xe2\xba\x29\x42\x08\x7e\x69\x65\x7b\x39\x3d\x97\x6c\x0c\xed\x33\xad\xf2\x98\xc7\x98\xb2\x17\xc9\x37\x0a\x5e\x66\x9d\xb6\xd4\x62\xa5\x00\xcc\xd7\xaa\xf3\x79\x35\x4c\x93\x2f\x17\xa6\x1c\xd9\x2d\xe2\x20\xdd\xfa\x58\x41\x4c\x46\x61\xb4\x32\xed\x13\x8b\x0c\xcd\x92\xd6\x54\x6f\xed\x37\xf5\xee\xd3\x9c\x4a\x76\xd5\xc6\x4c\xd2\xc1\x00\x67\x42\x7d\x09\xd8\x59\xe9\x1a\x98\x28\x4a\x80\xbb\x46\xfc\x74\x45\x11\xdb\x5f\xd1\x4d\xd3\x45\x14\xad\xef\x72\x84\x50\xc1\x07\x34\x6e\x0a\x31\x3d\x5f\xed\x74\x87\xd3\xbf\x15\x28\xe1\x98\xc0\x13\xaa\x1e\xf6\x2a\x9d\xeb\x71\xd8\x43\xef\xbb\xc3\xdf\x7a\xa6\xdb\x0a\xe5\x5f\x4d\x46\xe0\xf9\x03\xc4\xb2\x53\xb0\x46\xb2\x70\xc5\xfb\x34\x43\x9d\xa3\x78\x0e\x12\xf5\x36\x45\xef\x0a\x1b\x40\xd7\x0b\xe5\xfb\xa2\x34\x80\x3a\x5c\x8e\x8d\xd3\x4d\x61\xce\x17\xb5\xaa\xcf\xaa\x53\xce\x44\xa9\x35\xfd\xf5\xc7\x3c\x54\x18\x04\xf3\x22\x81\x5b\x1e\xb0\xd2\xe3\x4f\x8b\x1b\x41\xca\x57\x27\x7e\xc3\x4c\x81\x03\x45\x49\x63\xbe\xc4\xde\xd0\x5d\x72\x81\xe1\xe3\x80\x44\x41\xf6\x3b\x8d\x3f\xce\x9a\x1b\x18\x7f\xc0\xc5\x6e\x05\x2a\xb4\x3a\xa6\x08\x34\x4e\x92\xd7\x2a\x28\x9e\x06\x45\xc8\x6e\x98\xa2\xba\x80\xfd\xf3\x1d\x85\xb4\xfd\x4e\x43\x32\x6a\xbe\xbd\x96\x26\x4c\xd7\x08\x7f\x07\xc9\x64\xbe\x76\x84\x07\xbd\x24\x06\x50\xa2\x7a\x8c\xdc\x09\xd4\x42\xbe\x53\xa9\x1e\x7f\xe1\x5f\xee\x7f\x9c\x46\x4a\xf0\xe5\x8a\xbd\xe7\x9c\x16\x1b\x7c\x3b\x68\x3d\xe7\xf7\x82\x5a\x84\xb7\x95\x32\xc5\xb4\x92\x2a\xfc\x1e\xa5\x71\xe1\x31\x63\x38\x71\x38\xdd\xc6\xc3\x60\x8b\x81\x5e\x1d\xfd\x46\xec\x9c\xc1\xb9\xdb\xb5\xa1\xc5\xef\xef\x29\x47\x7a\x77\xa7\x9c\x26\x91\x70\x2f\x27\x16\x6e\xfe\x56\x53\xb5\x38\x0d\x57\xd9\x76\xc3\x99\xdb\xd3\xf1\xf0\x8b\x3d\x1b\xde\xd7\x1a\x85\x91\xcd\xf2\x24\xb6\x4c\x66\x25\x29\x0a\x9a\x5f\xd8\xbb\x1b\xaa\xb2\xf3\x1a\xbd\x0f\x93\xbe\x54\xba\x76\xc2\xa8\xff\xa8\x4a\x0e\x33\xd4\x09\x2f\xf8\x03\x24\xb3\xf9\x28\x04\x96\x55\x08\x65\xc8\x04\x39\x2d\x0b\x6f\x4c\xaf\x06\x0a\x9c\x74\x54\x89\x62\x9d\xa9\xc8\xb5\x95\xe6\x07\x9e\xcb\x1d\x80\x46\xb9\x79\x26\xf0\xb4\x00\xd7\xe8\xec\x15\x1a\xbe\x86\x60\x24\x1b\xa7\x66\xbd\x55\x69\x39\xf7\xd8\xa5\xcd\x40\xe0\x94\x50\x8b\x44\x24\x8d\x04\xd7\x2f\x94\x16\xd3\x37\x14\xdd\xd9\xb5\x4a\x99\xd8\x77\x41\x7c\xa3\x41\x95\xe7\xd9\xf6\xaa\x8d\x97\xad\x11\x7c\xbb\x30\xdc\x97\x9f\xe2\xeb\xda\x21\x3a\x7f\xb0\xbd\x36\x0c\x73\xbb\x66\xb2\xe1\x94\x92\xac\x38\x4a\xcf\x8d\xbd\x81\x67\x80\xed\x3c\xa5\x29\x18\x6c\x44\x4c\x58\x33\xbe\xc9\xf6\xcc\xc4\x27\xbd\x7e\xac\x58\xf8\xcf\x60\x97\x0b\x4b\x82\x6f\x26\xbf\x18\x68\x29\xe7\xde\xd0\x7e\xb9\x28\x7d\xb2\x8a\x14\x86\x47\xbf\xd4\xd0\xeb\x5f\xf8\x8d\xf6\x0b\xb3\x2f\xb5\x14\x59\xe7\x09\xa0\x7f\x85\x30\x6d\x7b\xf1\x78\x61\xa1\x4d\xe2\x6c\xae\xf7\xe1\xac\x4a\x48\xd7\x89\x93\xcb\x58\x2e\x37\xcb\x96\x82\x64\x3c\x31\x5a\x1f\xb6\xc0\x35\x81\xea\xc8\x0c\xe5\x8d\x1d\x21\x50\xf9\xbc\xd8\xf0\xff\xb5\x91\x9f\xbd\x8c\x33\x2c\x13\x9b\x39\x56\x7d\xcf\xb0\xaf\x1c\xcf\xe5\x02\x04\x3b\x88\x46\x2e\x55\x5a\xfc\x4b\xeb\x28\x5a\x2b\x8f\x29\xf0\xea\xd8\x54\xca\x38\x67\x95\x30\xc4\xd9\x26\x30\x59\x64\xe2\x3e\x39\x43\xce\x1c\x2c\xfa\xfa\x90\x43\x3d\xe4\x76\x9c\xed\x56\xad\x26\xa8\xc3\x48\x27\xb8\x2f\x03\x3c\x8e\x14\xb7\xb4\x96\xfb\x05\x7b\x0a\xc7\x04\xc2\x5a\x56\x6b\xa0\x03\xe4\xcf\x3e\xdb\x79\x90\x34\x40\x6f\x98\x86\x59\x1e\xca\x19\xe8\x44\xbb\x7d\x3a\xf9\xdf\x07\x5e\x24\x82\x56\x63\x9a\xc4\x61\x0f\x02\x26\xaa\xb7\xe5\x80\x67\xf5\x76\xb9\xc5\x23\x15\xf9\xb8\x5a\x92\x6c\x3f\x95\x22\x97\x93\x3c\xb7\xf1\xb4\xea\x6f\xd8\xa9\xb4\x86\x8f\x20\xad\xeb\x12\x15\xfb\x67\x1d\x97\x8b\xf7\xb8\x7a\x69\x98\x59\x90\xff\x62\x4b\xdf\x99\xa8\x96\xbf\x2b\xba\x77\xf3\x14\xbc\x3b\x29\xdb\xf9\xef\x88\x4c\xba\x8c\x6d\xb1\xe8\xbc\x6b\xbf\x27\xeb\x30\xb0\xc5\xc5\xf2\xbf\x11\x8e\x47\x91\x9d\x51\xd8\xbe\x0b\x0a\x54\xdd\x65\x86\x59\xac\x34\x39\x6f\x95\xf8\x27\x5c\x1c\x56\x80\xd3\x18\xd5\x30\x0e\x33\x47\x9c\xd4\xd4\xd4\xad\xa9\x80\x22\x03\x46\xb1\x69\x1f\x2c\x9e\x50\x0c\xfa\x6f\x69\xa5\x94\x6f\x4c\x94\x26\xc8\x25\x45\x4d\x1e\x81\x3a\x04\x66\xe9\x23\x3a\xf7\xa4\xf8\xa3\x67\xbc\xdc\x1a\xb8\x46\xfe\x84\xff\x5e\x71\x1b\x50\xf6\x8e\xbd\x45\xe0\x27\xce\xa3\x27\x9f\x15\xf0\xf0\xfe\xfc\x2f\x4a\xf6\x7a\x17\x9a\x24\x44\x27\xaf\x3c\x0d\xf8\x1f\x3a\xdb\xb7\xd6\xa1\x43\x44\x79\x4f\x91\x09\x4e\xdd\x3f\x54\x50\xe3\x3f\xac\x54\xb2\x56\xc3\x1e\xf2\x4b\x22\x8f\xd5\x5a\xf4\x2c\xd0\x75\x29\xea\x41\x61\x23\xd6\x4d\x83\xd7\x76\x0a\x4b\x8a\x6f\x5c\x55\x77\x6c\x62\x1b\x45\x61\xcb\x1f\xfc\x17\xb4\xe4\x6e\x5d\xe5\xfe\x85\xd9\x76\xe9\x6d\xaf\x09\xa3\xa8\x03\xfa\xee\xaf\x04\x3c\xf3\x4e\x62\x64\xfb\x21\x34\x37\xd7\xb6\xf1\x72\x18\x5b\x9b\xca\x77\xc0\xc3\xb9\x49\x73\xcd\xa2\xee\x38\xd0\xc5\x55\x53\x52\x7c\x83\xd8\x64\x2f\xdb\x55\x7a\x60\x81\x02\xa9\xaa\xde\xf9\x07\x82\x97\xc6\x26\x4f\xc3\xde\x0a\x01\x8a\xe0\x28\x9c\x50\x4a\xae\xe7\x74\xc6\xf4\x56\xa0\xf5\xd5\x46\x63\x13\x33\x95\xfe\x4b\x0e\x03\xe3\xcd\xd9\x89\xa6\x21\x62\xee\xb3\x96\x6f\xc8\xd4\x6a\x01\x47\x94\xfd\x5e\x30\xeb\x04\x15\x43\x19\x92\x49\xa6\x00\x78\xba\xca\x99\x33\x69\x11\xf6\x1f\x5a\x67\xb7\x56\x34\x49\xe9\x43\x7c\xa3\xe2\xb3\x41\x18\x85\xf1\x32\xfa\x45\x51\x0f\x07\x27\xab\xe3\xc6\x98\x9b\x73\xdc\x18\xe5\x76\x02\x0b\x13\xef\x85\x3a\x49\xfd\xc1\xe7\xdb\x43\x6b\xa2\x7c\xb8\x4a\xca\x42\x5e\x1f\xe6\x14\x05\x45\x02\x96\x78\x42\x67\xcb\x7a\x51\xd1\xb7\x34\xe6\xc2\x8b\x44\x9e\xaf\x63\x7e\x74\x8a\xa3\x75\x3d\x2d\x3a\x58\x93\xd4\x2a\xb9\x98\xb3\x4a\x2e\x46\x17\x3e\xf2\xc2\x66\x7d\xb3\xbe\xc7\xb7\x60\xfe\x98\xdc\x30\xd8\xe3\x4d\x55\x1e\x66\x8a\x3f\xe4\xc0\xa6\x00\x47\x45\x8e\xe9\x28\x19\x67\x94\x69\x98\x9c\x05\x8e\x22\xcc\xb9\x60\x6b\xcb\x27\xc6\xff\x7f\x0d\xc3\x2e\x8a\x3f\x7e\xd8\x47\x26\x1e\x26\x09\x87\x06\x0e\xe5\xe5\x34\x89\x36\x15\x3d\x6d\x19\xb9\x8e\x23\xb3\xce\x40\x84\x25\xaf\xeb\xa3\x38\x93\x1e\x75\x7b\x75\x6c\x53\xa9\x0b\x21\x39\x7a\x77\xa2\x68\x1a\xb8\x30\xc1\xed\xea\x2a\xa2\x07\x22\xe9\xa1\x72\x16\xb0\x00\x6f\x91\x59\x02\x5c\x0c\xfe\x18\x13\x35\x04\x95\x9a\xac\xcf\xe8\x1d\x9b\x54\xfa\xc9\xcb\x27\xe5\x5e\x31\x65\xa0\x1f\xde\x50\x7c\xc8\x63\x6b\xfb\xfc\x4e\x42\x5d\xe7\x5b\x93\xde\x53\x0c\x04\x26\x5b\xb1\x7d\xe2\x16\x01\xb6\xe0\xb0\xd6\xd8\xb8\xcf\x5b\xc0\x33\x1d\xcf\x3a\xc8\x9b\x4f\x79\x80\x7c\x05\x4e\xfa\xf7\x15\xaf\x47\x2f\x49\x22\x02\xca\xc2\x8e\x5c\xa2\x8f\x23\x54\xda\x41\xd5\x74\x49\x40\x3c\xaa\x08\xb2\x4d\xba\xd7\x17\xd7\x7f\x4a\x03\x82\x82\xd7\x63\x1d\xef\x67\xed\x21\xac\x8f\xd7\x0f\x14\x21\xb6\xab\x13\x4f\x21\x7b\x5f\x07\xb4\xc7\x02\xc5\xa1\x7e\x11\x9b\x80\xf9\x83\x70\xac\x55\x5c\x11\x69\xc4\xf1\xe3\xb9\x6c\xe3\xd0\x44\x9c\x4a\x6b\x92\x95\xf5\x26\x52\x0e\xd2\x96\xcf\x0f\x9d\xc3\xa3\x88\xa9\x6b\x90\x71\x49\xd2\xbe\x35\xa8\xb1\x62\x62\xbf\xa2\xe0\xf0\x5f\x69\x42\x12\xc4\x26\x5d\xa7\xb4\x3b\x1e\xf6\x26\xd0\x99\x30\xe5\x17\x95\xa0\x09\xf2\xf7\x82\xab\x6f\x00\x1d\x66\x63\xdb\x0b\x4d\x14\x66\xe8\x1c\xc1\xf4\xa2\x39\x06\x2e\x3a\x97\x56\xa5\xfc\xf2\x84\x6a\x09\xca\x6c\x5f\x28\x8d\x1d\x91\x9e\x2b\xd6\xfe\x95\x3b\xe5\x46\x66\x10\x26\x59\xd8\x52\x11\x1f\x38\x48\xf9\xba\x81\xe0\xb4\x3d\x1e\xae\x67\x61\x8f\x3a\x53\x1c\x3a\x03\x42\x2d\x7c\xed\x08\x69\x7a\x49\x3c\x48\xd2\xd1\x74\x15\xa8\xf5\xc2\x2c\x3b\x07\x5c\xcd\x40\x94\x03\x2c\x89\x94\xae\x1b\x08\x89\x5e\x5c\x7a\x0c\x93\x2c\x5f\x44\x33\x87\x58\xe1\x8c\xa2\x0f\xfa\x48\x13\xb2\xb3\x19\x80\x9f\xb1\x45\x9b\xdb\x35\x11\x3a\xb2\xa7\xcb\xf0\x58\x9c\x3e\xb6\x16\xf0\xa5\x47\xc7\x12\x3e\x49\x23\x88\x8f\x9c\x0c\xbc\xe2\xfe\x29\x95\x6f\xfc\x58\xf3\x94\x1f\x6a\x04\x03\x0d\xd7\xfb\xa9\x29\xa2\xb0\x47\xcb\x50\x2a\xa7\xaa\x8a\x5a\xc9\x8f\xbc\x52\x9e\xaf\xe5\x03\x61\xa3\x43\x39\x90\xaf\x9b\xfa\xdc\x7a\x44\x6d\xa6\x88\x4d\xcf\x29\x0c\xc1\xb9\xca\x57\xaf\xdb\x98\x0e\x40\xd7\x48\xec\x9c\xcb\x0f\x28\x9e\x17\xd0\xf4\x94\x57\xbc\xbb\x8c\xe1\x14\x68\x9d\xb4\x04\xdb\x57\x86\x61\x64\xb4\xf4\xbe\xc3\x07\x2d\x2c\xb8\x42\x7d\x7d\x85\x2f\xb5\x47\x66\x39\x4e\xa2\xd0\x88\xf1\xe6\x81\xc3\xcf\x20\xa6\xbb\x82\x07\xc0\x3b\x5f\xf1\x32\x3a\x26\x1f\xda\x34\xe4\xe4\xa0\x70\xb3\x3e\x88\x87\xcd\x0e\x47\x26\x7e\xa8\x9c\x7e\x1c\x57\x48\xa6\xc0\x44\xfc\x1f\x58\x49\x9c\x73\x0a\x54\xad\x12\xc9\x4a\xfe\xab\xc0\x93\xb6\x33\xca\x53\x7a\x44\xf0\xe8\xd2\x24\x22\x99\xfb\xac\xe8\x16\x69\xd7\xc4\xd3\xde\x05\x38\x4b\xdf\x87\xea\x2a\xd8\xff\x9c\xbc\x75\xf9\x7d\x38\x94\x2f\xa9\xe3\x3b\x4a\xd6\x4d\x94\x03\xfa\xce\x26\x39\x50\x7c\x55\x9b\x8d\x82\xe8\x6c\x35\x5e\x65\x2f\x17\x3f\x77\x52\x43\x62\x4f\xba\x64\x0a\x11\x5e\x43\x72\x15\x85\xc4\xc3\x13\x45\xf0\x0f\x34\x15\x32\x92\x37\x55\x04\x40\xc4\x17\x29\xe2\x32\xf8\x05\x6f\xe0\x63\xd2\xe0\x43\x6b\x40\xe0\x71\xe5\x7b\x22\x09\x73\xb7\x52\xb8\x5e\x1e\x99\x19\xaf\x86\xf8\x13\xea\xfd\xe5\xeb\x89\x87\xa2\x7e\x0b\x0f\x0e\xdc\xe0\x5d\x05\xcc\xdb\x7a\x20\xee\x31\xb6\x6b\xcc\xbc\x86\x47\x78\xa7\x42\xb4\x52\x51\xe3\x6f\x39\xa9\x48\x80\x0e\xb0\xfe\xde\x99\xf8\x28\x60\x9d\xda\x93\xca\xb7\xdb\xba\x48\xc3\x21\x6d\x83\x8a\x54\xe6\x8c\x9a\xd7\xbd\x1d\xdd\x18\xe7\xbb\x34\xfb\x61\x8a\x6a\x2a\xa8\xbc\x94\xfc\x99\xaf\x30\xde\x76\x1e\x4d\x14\xc6\xb6\x18\xc3\x2c\xb3\xe0\x89\x52\xf0\x3d\x1d\x3c\x28\xea\x1f\xdb\x3c\x4d\x7a\x49\x2a\xdd\x3b\x6e\x52\x3d\x13\xf1\x61\xd5\x95\x23\x4c\xc4\x7b\x2a\x6a\xc7\xae\x05\xf9\x63\x55\x6c\x7b\x98\x0e\x76\x97\x8f\x78\xd1\x25\x27\xce\x22\x0a\x97\x43\x48\x95\x3e\xaf\x68\x6e\x83\x16\x8c\x3d\x0c\xfc\x2d\xdd\xb2\x7c\xc5\x6b\x84\x27\xb9\x89\x1e\x55\xb2\x0b\xaf\x61\x94\x51\xaf\x98\xea\xf8\x64\xdc\x26\xb9\x16\xc8\x19\x9f\x51\x27\xc7\x0d\x22\x21\xc1\x89\x72\x41\x13\xcc\x6e\xea\xae\x00\xc8\x3c\x60\xde\x3f\x49\xfe\x8e\x08\x82\xf8\x48\xf8\x17\xd8\x68\x58\x6b\x3b\x37\x94\xb4\xce\x3d\x55\x10\xa0\xe4\x42\x96\xcf\x78\x27\xf6\x18\x1d\x45\x95\xd1\x10\x09\x07\x8f\xe0\xf8\x0f\xba\x95\xf2\x96\xf2\xf9\x46\x26\x0d\x13\x98\x6f\xd1\x01\xf0\xc5\x9b\x1b\xae\xac\x32\xb2\x26\xce\x77\xd3\x40\xd1\x2e\xf9\xf8\x53\x80\x26\xc3\x2c\x7c\x16\x43\x8d\xe3\xf0\xde\xc4\xcb\xe1\x1d\xc7\x2e\xc5\x39\x83\x64\x2e\xad\xe6\x2f\x7e\x9a\xd0\x6f\xd8\x7c\x7b\x37\x3c\xca\x30\x1f\xa6\xc9\x1a\x3a\x50\x1d\x81\xaf\xa2\x52\xd9\xee\x2e\xed\x5b\x6c\x0f\x22\x93\x0d\xd7\x55\xcf\xea\xa6\xee\x59\xd5\x0d\xce\x2f\x9b\xde\x4a\x96\x70\xf3\x95\x60\x62\xe9\x95\x04\x14\xeb\x87\x39\xb5\x3d\x13\x45\x19\x79\x55\x0e\xd8\xee\xe2\x8d\x33\x01\xd8\x1b\x1c\x11\xd1\xd2\xfe\x25\x47\x44\xb4\xdd\x41\x7b\x71\xfe\x60\x7b\x4d\x82\xd6\x46\xe5\x74\x45\x7f\xf7\xcc\xe8\x99\x19\x9a\x29\xf8\xc9\x37\x54\xb9\xef\x0a\x4d\x27\x5b\x3f\x3c\x37\x42\x08\x06\xbf\xe2\xbc\x7a\xb8\x53\xd7\xb5\xdc\xdf\x1e\xa7\xb6\x17\x66\xba\x6f\xf0\x92\xea\x1b\xac\x37\xf6\xee\x9f\x6d\x67\x6b\xe1\x00\x5a\x63\x38\xa2\xa1\xe9\x87\xd0\xf1\xbc\xce\xb8\x9c\xd0\x32\x31\x76\x3b\x59\x0d\x4d\x9f\x78\xd4\x3e\x1e\x95\x52\x30\xb2\xea\xa2\x5d\x4f\x33\x23\x0c\xa7\x3e\x8f\x73\x41\x71\xdd\xc2\x27\xe2\xff\xdf\xd0\x0e\xfa\x52\x3b\xb5\x5f\x2e\xc2\x54\x80\x62\xcc\xf3\x80\x03\x42\x48\x1f\x7c\x4e\xc1\xbe\xd2\x1b\x9a\x78\xd9\x66\xbb\x55\xab\xf0\x2e\x0a\x2f\x60\xca\x77\x6f\x94\xaf\x2d\x6e\x9b\x27\x4e\x04\xfa\x40\x34\x9f\x95\x7e\xde\xad\x40\xa9\x66\xd4\x9b\x26\xf6\xcf\x96\x93\xb1\x2a\x2a\x6c\x42\x20\xef\xbd\xfd\x7a\x7b\x78\xe9\xc3\xa5\x49\x6f\xc5\xe6\x7c\xc0\x3a\xe1\x91\xf2\x57\xf9\xa6\x02\xf9\xef\xdb\x34\x26\x41\x5c\xb8\x9e\xac\x2b\x2d\x69\x73\xf2\xee\xf8\x5f\x02\x9d\x5b\xf7\x9b\x3d\x2e\xb2\x29\x5f\xc0\x22\x7b\xb7\xc5\xc5\x31\x56\x59\xc4\xc1\x8a\xb9\x4c\x4d\xcc\x6d\x96\xc2\x80\xea\x8f\xad\x4d\x8d\xc5\x55\x9a\xca\x24\xb5\x6a\xe3\x19\x7a\x07\xa1\x1f\xa5\x39\xc0\xe7\x78\x18\xf9\x5f\x54\xfe\x14\xc4\x9d\xc2\xe8\xba\x7d\x78\xe5\x58\x1a\xad\x33\x3f\x19\xcc\xdf\x63\x1d\x2f\x70\x8c\x27\xaa\xe4\x59\x91\x8a\xbb\x37\xf1\xc2\x8d\x7d\x9b\xd9\x9e\x17\x6e\x5c\x72\xd4\x92\x3e\xa9\xff\xb1\x1a\x82\x7e\x22\x0d\x35\xd8\x2c\xe0\xff\x82\x73\x72\x23\x50\x44\xf7\x37\x26\x5e\xc7\xa7\xa9\xa3\xe6\x25\xe2\x5b\xb5\xe9\x34\xe5\xaa\x59\xfe\x40\x09\xa1\xbe\x86\x23\x46\xaa\x63\x34\xaf\xe8\x35\xf9\x2b\x4d\x02\x3e\xb6\x24\xf5\x52\x4e\xb4\x6c\x80\xd6\x8b\x4b\x6e\xfd\x37\xf4\x3c\x64\xc5\x32\xb5\x0b\xbc\x30\xeb\x55\x68\xbd\x22\x6d\x53\x73\xef\x20\x54\x6c\x69\x4c\xe5\xab\x08\xdb\xcf\x3b\xe4\x11\x71\x10\x3a\x54\x0d\xce\x70\x54\xa9\x34\x12\x1a\xa9\x8e\x4b\x0d\xc8\xcf\xd2\x67\xb4\xa3\x6e\x04\x58\x25\x9c\x7b\x1c\x0b\x7c\xed\x9c\x98\x7c\x98\x92\xd1\x72\x19\x70\x2c\x1c\xd1\x4d\xa7\xb9\x16\xb8\xc1\x93\x0a\x89\x99\x10\xbd\x10\x9c\x24\x4d\x9f\xc6\xd7\xaa\xc5\xb6\x8c\x71\xd3\x65\xda\xbd\xfb\xc5\x1a\x7e\x4b\xfd\xc8\xb7\x9a\x6a\xdf\xe3\x70\x34\xd6\x78\x2a\x50\xe1\x0a\x65\x4e\x83\x0e\x71\x32\x18\x94\x91\xc6\x32\x6a\x7c\xd2\x99\x4e\xc3\x27\x25\x0b\xef\xe3\xde\x0e\xbc\xbc\x47\x32\x32\xbd\xa1\x12\xfe\x62\x75\x17\xbe\x51\x49\x8c\x41\x92\x1a\x10\xa0\x3e\xcb\x91\x27\xc8\x90\xf8\x5a\xc9\xf7\x65\xb9\x49\xc7\x49\x18\xe7\x96\x3d\x3c\x6c\x96\x1f\xe9\x9d\xf3\x23\xc5\x95\x15\x27\xdc\xc4\x86\x34\x2a\xf2\x58\xae\xe9\xa3\x5c\xd5\xd2\x1f\x41\x2b\xd9\xf5\x81\xfa\xc6\x00\x60\x5c\xa4\x5c\xae\xd4\x02\xde\xab\x0d\xee\xdc\x3c\x35\xba\xd3\xc4\xe1\x4c\xf8\x50\x15\xad\x9b\xe0\xcb\xdc\x67\xc7\x58\x4f\x64\xed\xef\xd3\x64\xf3\xb5\xcf\xf1\xa5\xe5\x9f\xee\xf2\x8b\x69\xd7\x86\x4a\x91\x1f\xc7\xe3\xe3\x90\x00\xc9\x24\x79\x11\xbf\xc9\x92\x33\x0e\x50\xe3\x99\xf7\x4e\x35\x51\xb4\x94\xc6\x96\x20\x8f\x60\xba\x07\x08\xf0\x26\x19\x50\xa9\x8a\x62\xd8\xc5\x7a\xeb\x80\xa6\x97\xac\xed\xf1\x2c\x26\xe8\x0f\x70\x6d\x48\x0e\x35\x09\x6e\x3c\xe4\xe7\x76\x12\x5e\x81\xaf\x37\x54\xd4\x7e\x1b\xcb\xab\xa9\xa7\x93\x4c\xb4\xa8\x57\xaa\x20\xe4\x42\x03\x88\xbf\x37\x34\x51\x64\xcb\x03\x75\x4a\xc1\x0a\xb8\xef\x02\xa7\xeb\xed\x4a\x53\x91\x77\xfd\x32\xd3\x4b\x45\xa8\x49\xaa\xc3\x2d\xa5\xa6\xe5\x73\xee\xb9\x89\x67\x14\xd5\xca\xa9\x40\xf5\x43\xbd\xa3\x02\xb6\xbb\x2a\xb2\xb8\x4a\x75\x26\x01\xd8\x3c\xa6\x7a\xe6\x87\x16\xfe\x66\x63\xe5\xcd\xa7\x23\xd7\x4c\x94\xb7\x14\x7d\xc5\x11\xcd\xf9\x7d\xa4\x31\x33\x32\x0c\x99\xa9\x40\x6a\x0d\xf4\x09\x29\x42\x34\x14\xf7\xb3\x3c\x4d\xca\xb1\xcb\x5b\xd4\xd3\xe6\x78\x18\x15\xac\xf5\x29\x9d\xd2\x5f\x4e\x6d\x96\x8d\x2c\xb8\xfe\x00\x33\x63\xde\x19\x6c\x18\x56\x88\x14\x89\xfe\xc7\x74\x99\x73\x64\x77\x29\xa4\x06\xd7\x10\x45\xa3\x88\xbe\x43\x1a\x02\x7c\x67\x26\x67\xa7\x18\x49\x3b\xf1\x5d\xb5\xe7\x9b\x0e\x08\x1b\x2f\x9b\x65\xa1\x71\x12\x9c\x9d\x12\xf0\xab\xb7\x2d\x1c\x3a\xd4\x5e\x0e\x4d\x9c\x4b\xcf\xb3\xf4\xf1\x29\xd4\xe7\x55\x95\x5e\xed\xdb\xa8\x34\xc7\xeb\x54\xef\x67\xc2\x79\x3c\xba\x63\x9f\x77\x2d\x1e\xe7\x54\xe3\x31\x88\xc2\x1d\x25\xc0\x53\x8a\x2d\x37\xcb\x53\xb0\xeb\x6a\x6e\xff\xcd\x8a\x64\x8a\xaa\x80\xf5\x87\x36\xa3\xa4\xa7\x13\x98\x78\x23\xf0\x68\x89\x37\x2a\x38\x99\x34\x1c\x3f\x4c\xdf\x89\x9a\x0e\xb9\x31\x5b\x97\xb5\x1c\x3e\x67\xf3\x11\x47\xdc\x57\x9c\x63\x1f\x94\xb1\xe7\xd6\x65\x0c\xbe\x56\xdd\xc0\x2c\x43\x8a\x45\xe8\x20\x1a\x48\x16\x7a\x58\x54\x92\x88\x76\xf0\x65\xc5\x0e\xa3\x9a\x73\x7b\x49\x9e\x87\xd9\xb0\xa5\x38\xd7\x4f\x2a\x78\xb9\xf6\x34\x3d\x3e\x51\xa8\x23\x40\x91\x24\xa0\x3c\xef\x91\x98\x5e\xcf\x66\xd9\x43\xf4\xb6\x80\x40\x9f\x57\x80\x93\xd7\x54\xaf\xdc\x1d\xc5\xa1\x71\x0f\xc7\x02\x5c\xdc\x9b\x18\x1e\x87\x93\x71\x09\x90\x8b\x01\xf0\x8e\x0d\xb9\xf4\xb1\x8d\x63\x0b\xbf\xc1\x49\xee\xfa\x62\xd9\x66\xb0\x47\xb2\x1f\x16\xd1\x02\xcc\xaf\xe6\x97\xd3\x18\xda\x71\x92\xda\xac\xa5\xf5\xaf\x5b\xfb\x3d\x8d\x87\x9e\xec\x6e\xb2\x36\xad\x21\xd9\x95\xfa\x80\x57\x35\x78\x7d\xa2\x78\xb6\x5f\x0f\x2a\xc7\xf3\xb2\xcd\x41\x76\x88\x73\x14\x56\x13\xc3\xb5\xa5\x74\x03\x4e\xea\x6a\xe9\xa6\x42\x0a\x84\x71\x98\x87\x24\xd7\x44\xcb\x46\x70\xe7\xad\x45\x8f\x47\xf7\x0b\xbf\x67\x23\xdb\x15\xd2\xa0\x85\x05\x3e\x0b\x19\x21\xcc\x37\x81\xa7\xc7\x3b\x74\xe8\x57\x7c\x6b\xfa\x25\x9a\x48\x1c\x29\xc0\xce\xe2\xe0\xd8\xd3\xc1\x26\x06\x2e\xec\x38\x00\x5f\xf2\xde\xe5\x8f\x38\x72\xd2\xa5\xe7\xa5\x6e\xf6\x3a\xb9\xc7\xd2\xd1\x5d\x3e\x2b\x9c\x85\xbf\x20\x78\x21\xf2\xf0\xdf\x0c\x14\x19\xf7\x45\x3a\xf3\x00\x5b\x7c\x85\x88\xfd\xf0\xe1\xb3\x1a\x57\xfc\x7b\x30\x6e\x08\x20\x2f\x90\x60\x04\x72\xa7\x47\x11\x0b\xe1\x2c\x7a\x0c\x68\x01\x7c\x2f\xa0\x91\x58\x5f\xcc\x61\x0c\x7f\xed\x2e\x7c\x18\xd6\xd6\x09\xd4\xa1\xc9\x8a\x18\x48\x11\x5d\xaf\x75\xda\xec\x9f\x6d\x8f\x92\x98\x04\x30\x33\x69\x2e\x16\xc2\xec\x0a\x93\xb6\xea\xf2\x5e\x71\x5e\x33\x0a\xcf\xd7\x54\x12\x19\xa9\x5d\x16\xf3\x50\x21\xf8\x20\x49\x7b\xb6\x3f\x4d\x2f\x86\xd3\xf7\x9e\xaa\x84\x3d\xd1\xf1\x01\xdf\x14\x25\xd8\x84\x14\xf0\xa9\xfa\xee\xe9\xf5\xa7\xb5\xef\x71\x6a\xe2\xb7\x48\x4b\x55\x62\x79\x4f\x49\xa0\xd1\xb0\x0d\x07\x26\x8c\x04\x61\xc0\xa5\x4e\xcd\xb8\x86\xb9\x62\xf1\xaf\xc9\x53\x92\x29\xee\x8f\xc2\x38\xcb\x53\x5f\x41\x63\x2c\x26\x0d\x82\xe0\x32\x3f\x59\x31\x31\xd0\x84\x9f\xf2\x56\x0e\x3b\xcf\xb5\xb6\x95\xcf\x09\x70\xe0\xbd\xda\xf9\xfb\xe2\xfc\xc1\xb6\x09\xd3\x5e\x6a\x06\xb9\xee\xfd\xc6\x57\x48\x03\x95\xf7\x42\xfa\x36\x7b\xbc\x5c\x95\x58\xc6\x5b\x30\x55\xcc\x05\x4d\xab\x12\xff\x70\x41\xa5\x6a\x77\x6e\x38\x86\x91\x37\x9f\x02\xf8\x93\x51\x93\x13\xaf\xef\x8b\xdd\x4d\x47\xc8\x3f\xfb\xbb\x1b\xaa\x4d\xef\x1e\x80\x8e\xe2\xc3\xd0\xa2\x21\xcf\xf4\xb7\xff\xff\x50\x22\x96\x8e\x33\x4c\x9a\xd3\xde\x2b\x07\x17\x89\x9e\xdd\x58\xe2\x14\xfb\xff\x8f\x7f\x9b\x62\x62\x80\xe1\xef\x36\x95\x15\x13\x82\x26\xfa\x26\x25\x1a\x77\x69\x58\xf2\xa9\x9c\xac\x48\xc7\x69\x98\xd9\x56\x8d\xcd\x59\xd8\x08\x1a\x00\x4f\x83\x30\x1d\xc9\x29\xcf\x8d\x6a\x13\x15\xec\x1c\x6d\x0a\x03\x07\x49\x6a\x7b\x26\xcb\x77\x29\xee\xd2\x6f\xe1\x50\x10\xc0\x43\x79\x10\xbc\x4e\x63\x29\x94\xdd\xde\x03\xbc\x18\x28\xd8\xcd\x9b\x2a\x05\x3a\x4c\x8a\x34\xdb\xe5\x5b\x46\x4e\x2b\xe4\xde\x5b\x9a\x87\x60\xb3\x42\x38\xad\x4a\xef\xdc\x72\x25\xbd\xe8\x1e\x74\xd9\x0f\xb3\xbc\xf4\xd1\x66\x7c\x44\xf3\x9f\xf1\x9e\x08\x17\x4f\x10\x5f\x41\xe9\x06\x94\xfe\x9e\xa8\x79\x95\x3f\xcf\xff\x5e\x4b\x70\xbc\xb8\xf4\xb9\x76\x2f\x32\xe1\x88\x4d\x88\xc4\x83\xaa\xbd\xfd\x64\x0d\x78\xb3\xb0\x70\xa0\x6d\x5f\x19\xdb\x34\xb4\x71\x4f\x36\x22\x4c\xca\x15\x05\x8f\x67\xa8\x0f\xa2\x9d\x0f\x2b\x91\xc6\x33\xe3\x67\x78\xb6\x1c\xdd\xb5\x67\xb7\xfa\x50\x1d\x3b\x03\x6b\xf2\xa2\x8c\x5d\x77\x29\xff\xff\x5b\x13\xa5\xe0\x7d\x42\xe9\xc2\x5e\xd6\x2a\x84\xec\xba\xc2\x98\xff\x0e\x3d\x17\xf6\xea\x69\xa7\xd5\x96\x45\x66\x5d\x13\x14\x30\xcd\x9b\xc4\x46\x3e\xbd\x64\xbf\x5c\x90\x60\xb1\x12\xe4\xfa\x88\x01\x0c\x2c\xe1\x0a\xe4\xa9\xab\xe0\x96\x5f\x23\xe2\xae\xf5\xac\xe2\x52\xdb\xc4\x71\x52\x94\x83\xa7\xd5\x49\x7e\x4e\x56\x8c\xaf\x55\x46\x81\xfc\xc8\x64\xdd\xb2\x52\x23\x6a\x3c\xa8\x77\x3a\x26\x72\x27\x2e\x71\x6e\xf2\x88\x7f\xec\xb1\xa1\x14\x8c\xa8\xa2\xd1\xab\x8a\x5c\x9a\x67\x81\x0f\x6d\x0f\x3a\x79\x18\xab\x47\x3b\xaa\xfb\x16\xc5\x09\x74\x66\x3c\xb2\xe1\xcb\x29\x75\x32\xb9\xe7\xe6\xdb\xd6\xa4\x20\xc7\xc1\x9c\x9f\x09\x7c\x9f\xee\x19\xe5\xf8\x18\xbb\x1c\xf2\x7a\x13\xa9\x0b\x8f\xd7\x3a\xac\xda\x7d\x7b\x69\x98\x87\xbd\x0c\x02\xb3\x98\xee\x1b\x81\xaa\xc9\x9c\x52\xec\x6f\x47\x35\x89\xe3\xa9\x4a\x3e\xc7\x17\xfe\x92\x22\x8f\x2c\x0b\x57\xc2\xb6\xde\x0e\x54\x13\x0f\xb2\x0b\xd8\x77\x8f\x38\x9a\xfc\x62\x9c\x26\x15\xd8\xf0\x35\x15\x72\x5e\x6b\x14\xb6\x5b\x4e\x4d\x18\x57\x78\x2c\xb9\x8c\x20\xc0\xf0\xc7\x2b\x64\xe0\x21\x93\xf6\x55\x12\xd7\x7c\x53\x1b\xe7\xcf\xb7\x07\x26\x2d\x4f\x25\x27\x09\x09\x94\xb7\xd3\xd9\x75\x5d\x20\xbf\x57\x2b\xaf\x7a\xc8\x5c\x2a\xe4\x47\x70\x63\x2e\x63\xc9\xf2\x8d\xea\x53\x1c\x9b\x34\xcc\xd7\xa1\xe1\x28\xc4\x6b\x1e\x52\x78\x37\xf0\xf2\x8a\x57\x14\x7d\xdf\xbb\xc1\xa7\x42\xaf\x9a\xcc\x0c\x68\xa1\xed\x4f\xf9\xda\xe5\xa5\xc0\xbb\x11\xe0\x15\x10\x71\xed\x3a\x41\xdb\x52\x9b\x48\xdd\xb0\xfc\x31\x2e\x87\x35\xd1\xee\xd9\x49\xb5\xa5\xfe\x13\xfc\x0d\xf2\xbe\x7f\x4f\x13\xd8\x5d\x83\xfb\x86\x34\xe7\xe1\x4a\xdb\xf6\x4e\x51\x4c\xfd\x77\x44\x9a\x00\xdf\xe2\xaf\xab\x3a\xe6\x74\x68\x22\x8f\x7c\x98\x3c\x44\x18\x95\xdf\x0d\x3c\x9f\x19\x78\xab\xf1\x37\xaf\x6b\xf0\xfb\x65\x64\x79\x9c\x0a\xcc\x81\x7f\xfd\x9c\x97\x06\x7e\x71\x49\xf3\xca\xbe\xc4\x7e\xf2\xfb\xe0\xef\x86\x6b\xf3\x73\xf4\x3c\x48\xcf\x0b\xad\x5c\x64\x0c\x3e\x08\x7c\x8d\xe1\xfb\x74\xae\x60\x57\xfc\x25\xd0\x20\x42\x3b\x53\xfa\x11\x28\xa5\xfd\x36\x95\xab\x71\x42\x7d\x8d\xeb\x4f\xb8\xfb\x39\xcc\xb6\x03\x66\x7d\xf1\x45\x76\x78\xfe\x92\x62\xcc\x8f\x29\x99\x24\x31\x06\xd5\x51\x45\xd2\xba\xe5\xc8\xfe\x8f\x93\x57\xcc\x89\x02\x38\xd8\x98\xf5\x53\x00\x13\xc1\x06\xfd\x12\x5c\x3b\xc8\xe3\xbc\x55\x89\x78\x9e\x79\x59\x0e\x08\xc6\x8e\x4d\x54\x3d\x5c\x9b\x88\x30\x26\x5a\xb3\x96\x6a\xa7\xf8\x08\x21\x80\x90\x87\x3c\x56\xc9\xe6\x66\x90\x70\xa3\x0d\xf2\x0f\xe0\xbe\xa2\x8e\x7a\x1b\xbf\x80\x13\x98\x55\x1a\x85\x76\xd6\x2b\xed\xd5\x6b\x86\x0b\x0b\xed\xde\x30\xb4\x03\xae\xd8\x4b\xe1\xb9\x02\x19\xc2\x9b\xf0\x3f\x61\x38\xa4\x74\xea\xf7\xd2\x49\x95\x4f\x35\xdd\x34\x31\xfd\x87\x54\xa0\xb0\x83\xfb\x79\x24\xbf\xe2\x01\x6f\xff\x41\xb5\xf8\xbe\x05\xd3\xe1\xf4\x1d\x5d\x8c\x77\x54\x29\x40\x7d\x1b\xc7\x27\x92\xfe\x77\x83\xed\x5d\x12\xe5\xf1\xf4\x74\x46\xe2\x9d\xbe\xf6\x5c\x2e\x7a\x01\x3c\x36\x51\x4a\x8c\x23\xcd\xf7\x0a\x53\xf4\xb3\xc0\x23\x59\x7f\xe6\x88\x1d\x4d\x96\x15\xa3\x71\x19\x1a\x4e\x29\x19\x23\x24\x20\x10\x5f\xdd\x09\x3c\x9e\xd0\xb3\x90\x0f\x8d\x67\x51\x12\x6c\x36\xbd\x87\x40\xb8\x65\x9e\xd7\x52\xd3\x5b\x91\x83\x15\x67\x25\xa3\xe4\xf8\xa6\x01\x13\xf6\x52\xdb\x74\xfb\x61\x8f\x58\xd8\x5e\x90\x86\x9f\xdf\xc5\x60\xca\xfe\x56\x55\x65\xfc\x40\x69\x39\x90\x01\xba\xa1\xa8\xe7\x6e\x38\xef\xe2\x65\xbb\x96\x21\x6c\xc7\x56\x7e\x53\x55\xb2\x3f\xd6\x70\x96\x3d\x3c\xb7\x84\xbf\xff\xef\x9e\xe8\x3c\xea\x0a\x67\xa9\x8d\xb8\xff\x17\xce\x38\x48\x46\xc1\x18\x83\x61\x82\x8f\x76\x55\x9d\x71\x59\x18\xaf\x88\x26\xa6\x74\xfe\x78\x95\x2d\x24\xae\xb8\x8b\xa9\x96\xd0\x9e\x3f\xd8\xb6\x59\x1e\x8e\x4c\xce\xb4\x39\x4c\x3c\xa6\xd8\x25\xef\xa9\xd9\xa9\x77\x6f\x2f\x2c\x00\xc2\x11\xd9\x62\x04\x73\x2d\xd0\xc4\x96\x12\x5a\x51\xa9\xce\xd3\x2a\x4d\x31\x36\xd4\x1a\xa3\xa8\x37\xdf\xc0\xa1\xce\x37\xc1\x53\xae\x32\x91\xda\x71\x9e\xac\x84\xb1\xc9\xd0\x9e\x83\xc3\xfc\x97\x1a\x64\x79\x41\xe9\x7f\xef\xd9\xf0\x3d\xc2\x6f\x6a\x0d\xa1\xa7\x3a\xbe\x8d\x36\x32\x6b\x31\x8d\x1a\x33\xf2\x4c\x3c\x24\xf0\x5c\xe0\x69\x6a\xdf\xae\xa6\x66\x0c\x3e\xc3\x6e\x66\xa0\x92\x98\x5a\x7d\xf4\x6c\xf0\x2b\x2a\x47\x1c\xf7\x6c\x9c\x23\x3f\x02\x6e\x82\xc6\x64\xf1\x76\xbf\x51\x0e\xef\x2f\x17\x61\x8e\x9e\x74\xb8\x62\x6f\xa3\x2d\x0e\x08\xa3\xe9\x8e\x97\x87\xde\x59\x53\xa5\x5f\x5c\x6c\xbf\x9c\x84\xdc\xb5\x8f\x60\xff\xae\x62\x0b\xbd\x3b\x79\x38\x6c\x8f\x53\x3b\xf8\x67\xed\x7f\xb1\xcb\x15\x95\x3e\x7c\x1c\x95\x0a\x69\x9d\x29\x0f\x11\x7a\xc3\xf0\xef\x53\xd8\x8e\xe1\xba\xaf\xa1\x75\xa7\x34\xbf\xf1\xce\x0d\xa7\xe0\x65\xd2\x98\x70\xeb\x2a\x2b\x2f\x79\x1d\x77\xac\x2b\xfd\x35\xd5\x8e\x74\x5a\xcf\xda\x85\x9a\x63\x83\xb4\xe4\xaa\x4d\xf3\xb0\xcb\xcc\xcd\xdc\xd3\xaa\xa4\xb3\x8f\x35\xb1\x1c\x15\x79\x18\x85\x39\x92\x7a\x02\xdc\x50\x7c\xb1\x75\x62\x96\x72\x89\x87\x79\x6f\x28\x90\x00\xf8\xfc\x4c\x2e\xce\x37\x8a\x73\x6d\x39\x0d\x63\xbb\x9a\xad\x40\x76\x53\x72\x00\x15\x16\x15\xc7\x10\x43\xaa\x86\xaa\xfd\xe5\x84\x1a\x80\x13\x8d\x24\x36\xb4\x96\xfa\xac\x0d\xc3\x74\x64\x41\x85\x9b\x6c\xfb\xa7\x7e\x95\xda\xc4\xc2\xd4\x19\x6b\x91\x74\xf4\xab\xf8\xb8\x46\x5a\x47\xa6\xdf\xaa\x25\x3d\xf8\x46\xef\xdd\xc8\xf4\x6c\x7f\xda\xe3\x92\xd0\x71\x80\xb5\xf1\x67\x13\xcf\x53\xc7\x27\xb9\xf0\xec\x8a\xad\x5b\x09\xbd\xd1\x96\x94\xb6\xa2\x27\xa9\x77\xc2\xec\x9f\xc5\xb9\x3b\xe5\xe1\x93\x00\x27\xc3\xd8\x9e\x52\x74\xcc\x6f\x35\x84\x60\xf3\x65\x54\xd5\x4b\xc3\x2e\x93\x4a\x55\xd2\x1b\x7c\x53\x1b\x71\xd2\x40\x18\x99\xd2\x9f\x6d\x79\xf8\xb8\x96\xc0\xd2\xe8\x9b\xd4\x8e\x9f\x69\x29\x6e\xcd\xf3\xba\xc4\x73\x5e\xf9\x30\xa3\x04\xcd\xde\x1e\x89\xb0\xb3\xe3\xb5\x2d\x77\x6e\x3c\xee\x10\x99\xc4\xa5\x28\x11\x37\x3c\x47\x14\x54\x30\xdb\x1c\x03\x61\x33\x5f\x77\x9e\x4f\x91\x15\x10\xda\x77\xbd\xac\xe7\x03\x95\xbb\x3a\x5f\x09\xcd\x93\x22\x7b\xaa\xb4\x2d\x34\x04\x7f\x87\xb6\xfe\xb3\x6c\x5b\x8e\x93\x8f\xab\x18\x15\x05\x6a\xb3\xa3\xa3\x4c\xdd\x25\x82\xb6\xe1\x81\x10\x01\xd2\xc8\xac\xfd\x4d\xc5\x0c\x30\xb3\x41\x9e\x1f\xbe\xea\xca\xa4\xd2\x71\x42\x2e\x2e\x9c\xe2\xa7\xc8\xbe\x90\x15\xb1\x4f\x80\x56\x1f\x51\xe9\x49\xa4\x7f\x81\xe3\xfa\x1b\x1b\x2a\x84\x7f\x5c\x91\xe9\x1d\x9b\x78\x56\x81\x5b\x18\x1a\xa1\xd6\x22\xa7\x9a\x7f\x3e\x50\xd6\xed\x86\x2a\x5d\xe4\x36\x1d\x85\xb1\xe1\x1d\x89\x73\x1b\xd5\x33\xbe\xde\x8e\xf2\x3e\x74\xa8\xfd\xc2\xec\xb3\xbb\x7d\x5c\xfe\x0e\x7e\x14\x49\x2e\xd6\x12\x90\x66\xd6\x72\x60\x90\xe3\xbc\x4d\xc3\x5a\xc9\x40\xc0\x69\xba\xa6\xa0\x25\x17\x55\xfc\x9c\x27\xe3\xb0\x07\x38\x86\x20\x80\xcb\x97\x16\x9c\x6f\xbd\xfd\xfd\xa5\x76\x66\xe3\xcc\xc2\xe1\x72\x20\x28\x17\x72\x83\x06\x41\xce\x20\x55\xd6\x4b\x8a\x34\x7f\xa4\xfc\x6a\x20\x99\x7f\x0e\xaf\x56\x3a\xf0\x14\x75\xf0\x69\x0a\xa3\x58\x01\x2b\xa8\xb4\xc7\xd0\xdc\x38\xa1\x1d\x95\x0f\xa0\x17\x85\x4d\x78\xa8\xe3\x56\xdc\xff\x7e\x52\xb5\xc3\x7f\x6f\xe2\xb1\x07\x0f\x6f\x54\xc2\x92\x4f\x79\x6e\xb4\xd1\x38\x4d\x56\x49\xa0\x82\x23\x6e\xd7\x48\xe7\xac\xc1\x59\xc5\x70\xb3\x1c\xae\xda\xf8\x21\xaf\xd0\x76\x6c\xe2\x81\xa1\xb7\xf0\x52\x92\x9f\x53\x5d\x37\xa7\xe8\x0d\x11\xa0\xed\xec\xd0\xf2\x91\x7c\x0b\x2d\x65\x6c\x84\xbf\x0a\x14\xe9\x68\xbd\x20\x49\xf6\x63\x39\x89\x06\x64\x3d\xe0\xa6\x20\x75\xcd\xd7\x4a\x76\x70\x10\xe6\xaf\x2e\xdb\xd4\x44\x7d\x0e\x84\x2a\x9b\x45\x96\x6e\x9d\x17\x65\xe9\x40\xfb\xef\x7e\xe9\x5f\x2f\x7d\xe9\x0b\x8b\xa8\xf7\x88\x61\xf3\xe8\x35\x14\x15\x91\x29\xbe\x49\x21\xa1\xb4\x66\xfb\xa9\x4f\xf2\xa1\x4d\x3f\xe3\x75\x81\x5f\xe7\x18\x06\x10\x00\x56\x00\x73\xad\x5b\x2e\x20\xbc\x0a\x57\xc4\x0d\x46\x39\x4c\x8e\x38\xaf\x5c\xaf\x70\x48\xef\x4c\x3c\x5c\xe7\x7d\x85\xe9\x5c\x7f\x7c\xa3\xdc\x0a\x52\x51\xa4\x0d\x2f\x30\x52\x7a\x19\x3c\xcb\xae\x0d\xd5\x44\xfb\x30\x9c\x13\x84\xfe\xbb\x61\x88\x10\x90\xde\xd6\x7c\xcb\xa7\x29\x28\x46\x5e\xe4\x94\x4e\x84\xed\xe8\x78\xe2\xe2\x1d\x1d\x32\x3e\xd8\xa2\xef\x93\xf5\x70\xf1\xa0\x27\xd8\x7b\x9f\x62\x75\xa7\xed\xbe\x7f\xc9\xc9\x1f\xfa\x78\xa7\x5e\x8f\xdf\x3f\xdb\xce\x7a\x43\xdb\x2f\xa4\x7b\x13\x67\xd3\xcd\x89\x92\x1a\xbe\x59\x69\x0c\x4d\x13\x3b\x55\x46\xdf\x78\x1b\x9c\xa7\x08\xff\xd0\xec\x07\x1b\x73\xdc\x81\x6a\xc7\x24\x8e\x50\x7e\x35\xbc\xf6\x8f\x55\x40\x5e\xd7\x98\x58\xda\xbf\xd4\x1e\xa7\x61\xcc\x02\x3a\x4b\x9e\xcc\xc5\xc3\x00\xdf\x50\xd0\xc6\x41\x6a\xe2\x5e\x98\xf5\x12\x60\x2c\x85\xdc\x58\x93\xc6\x1d\xd3\xb9\x68\xc0\x85\xd1\x87\xc0\xea\x0b\xd2\x30\xe5\xf9\x98\x6d\x6a\x76\xe9\xf2\xc2\x2f\xe8\x43\xdc\xc3\x87\x36\x35\x94\x3d\xae\x4f\x54\x77\x34\x38\x13\xb7\x8e\x6b\x4a\xf1\xeb\xba\x66\x95\xda\xf8\x55\x78\x74\x88\x59\xae\xa9\x6a\xfd\x35\x27\x6d\x32\x4e\x93\x61\xd8\x0d\x1d\x75\x34\xea\x8f\x27\x74\xd3\xe9\x89\x86\x60\xf7\x25\x82\x3b\xd0\xc1\xd0\xd2\xe4\xe3\x8a\x2e\x7f\xfb\xbe\xdf\x3f\x5b\x3a\x03\x16\xda\x55\x2f\xb9\x66\x0f\x6f\xf4\xea\x0c\x85\x20\x1f\x48\x73\x57\xb2\x63\x1d\xe0\xc9\xf6\x4e\x2a\x11\x51\xd8\xee\x11\xcf\xcd\x51\x77\x7f\xd6\x33\x63\xe7\xea\xb9\xae\x88\x45\x4f\x58\xdc\xd0\xb7\xd5\xb7\xe0\x94\x11\x7f\x0c\xa3\x7e\x37\x50\xf3\x71\x57\x57\xca\xf2\xdc\x96\x11\x7d\xbc\x3c\xad\x92\x88\x38\xfa\x9d\x23\xef\xba\x3b\x31\x52\xd2\x6a\xee\x4f\xdb\x9e\x89\xf3\x24\x36\x11\xe5\x66\x81\x4e\xbc\xa8\x73\xa6\xa7\x26\x9a\x6d\xee\xf5\x06\x46\xa8\x25\xf7\x1d\x34\x31\x4d\xfa\x41\x1e\xa8\x63\xa2\x88\x2b\xf9\xac\x08\x17\xf8\x0a\xe4\x77\x14\x19\x6c\x31\x48\xb2\xa9\xca\x16\xf5\xd5\x40\x16\x18\x94\x1c\x66\x03\xfc\x24\x0f\xa3\x1c\x69\x7b\x51\x6e\xbc\x8e\x13\xc2\xc9\xe8\x78\xf9\xb2\xa3\x0a\x8c\x63\x4b\x97\x10\x72\x3d\x94\x98\x17\xc5\x72\x32\x4f\x5a\xca\x5c\xe4\x9c\x95\x2e\xcb\x89\x5a\x70\x74\xe8\x50\x3b\xb2\xcb\x61\x16\x79\x19\x1f\x07\x6f\xf1\x61\xda\xb9\x06\x2f\xb9\x5c\x0b\x23\xa3\x80\x99\xc8\x82\x82\x4a\x81\xaf\x1b\x08\x08\x96\xda\x03\x5b\x20\x6c\x40\x29\x88\x67\x92\x6f\x6a\xb6\x68\x61\xa1\xdd\x0d\xd3\x7c\xd8\x37\x7a\x4a\x98\x2d\x9d\x6f\xb4\x30\x49\xf9\x44\x7d\x93\x5b\xa4\xdc\x1c\x6d\x81\xe7\x7a\x38\xaf\xe8\xd4\x4f\x2b\xd2\xda\x3b\x74\xdc\xa1\x92\x70\x3a\x78\xc2\xf9\xd5\xe3\x71\x44\x0e\x44\x4b\xf7\xa8\xb4\x1c\x9b\xd4\xe9\xc6\x24\x3f\x44\x33\x5a\x5a\x69\x20\xd0\xe0\x24\x05\x31\x0b\xbb\x66\xca\x43\x2c\x2f\xaa\x44\xd0\x39\x0d\x23\xd5\x40\xc9\x91\x89\xcd\x32\x3d\xd4\x63\x8a\x80\xf1\xcc\x44\xa3\x20\x0e\x2b\x45\xa5\x4b\xba\xf7\xe0\xc8\xa4\xd2\x8c\x4d\x3f\x01\x97\xea\x1a\xce\x3e\xd7\xcc\xe8\x90\x8a\x44\x0e\x2f\x1d\x50\x68\x9c\x92\x38\x82\x66\xde\x31\x84\x2c\x2c\x78\x49\x9a\x72\xd5\xe1\x51\xae\xd3\x91\x24\x3c\x31\x0f\x12\x86\xe8\xa5\x66\x6d\x90\xa4\xa8\x03\x88\x12\xa4\x26\xb3\x50\x59\xb1\x9b\x4e\xb1\xd3\x27\x4c\x84\xcc\x57\xc9\x66\x08\x6c\x69\x4b\x73\x56\xd6\xba\x16\x48\x38\x6b\x6c\x52\xc9\xf0\x61\x22\x7e\xa8\xf8\x80\x7e\xa8\x90\x60\x2f\x27\x45\x1a\x9b\x08\x08\x5e\x27\x96\xed\x4e\xa6\x6b\xaa\xad\x38\x1b\x26\x39\xca\x82\x82\x8a\xd5\x10\x59\xfa\x10\xb3\x6d\xd2\x7a\x12\xe6\x4d\x25\x0f\x13\x67\x45\x14\xc6\x19\xa5\x13\x99\x1b\x83\x92\xb5\xc2\x93\xd1\x40\xdb\xd2\x4f\x7a\x2b\xf4\x1a\xb0\x6b\x3b\x36\xbc\x8d\xdb\xd1\xa9\xcb\xb3\xb4\x93\xa8\x6f\xd3\x96\x02\xc8\x9e\x54\x64\x87\x27\x55\xee\xd0\xf4\xfb\x21\x21\x97\x9d\xab\x01\x52\x0f\xa1\x55\xa8\x23\xcc\xe7\xdb\xc9\x78\x9c\x64\x96\x54\x39\xb8\xc3\x0c\x0c\x19\x4c\xfe\x84\x37\x46\x40\x0b\x30\xcc\x7b\x8d\xbb\x29\x4f\xc6\x63\x1c\x38\xf3\x9c\x35\xc0\x0e\xe4\xeb\x26\x76\x9e\xa1\x09\x99\x92\x1e\x7b\xe9\xa6\x0a\xce\x6e\xaa\x1c\x06\x91\x85\xd1\x22\x76\x52\x4d\x8b\x52\x42\x7c\xbf\x29\xb1\xb0\x96\xa4\x2b\x9c\x6a\x16\xa6\x46\x7a\x17\xd1\xbf\x6e\x4a\x99\x27\x2b\x38\x26\x00\x79\xc6\xaa\x66\x09\x68\xd8\x31\xf9\x87\x26\x2a\x43\x33\x18\x10\x9b\x52\x4b\x91\xb0\x7e\x4d\x9f\x2e\x5f\x53\x35\xf1\xb1\x4d\xc7\x36\x2f\x4c\x34\xa5\x40\x96\xc8\x06\x8b\xa8\x16\x7d\x52\xba\xc8\x94\x4a\x7a\x12\xe7\xa6\xe7\xc4\x18\x80\xf1\xbb\x01\xa8\x2e\xdf\xd4\x90\x97\xf3\x07\xdb\x7d\x3b\x28\xc3\x47\xfa\x0c\xc2\xaf\xeb\xba\x81\xf4\xba\xea\xac\xcc\x86\x26\x1d\x47\xeb\x7b\xe8\xc9\xe0\xa0\xb3\x94\x06\x1e\xed\xc7\x81\xea\x22\xb8\x40\x35\x28\x07\x41\xdf\x2f\x02\xd3\xdf\xa6\x55\x24\xb5\x48\xef\xac\x5c\x23\x1b\xc3\x9f\xa5\x2c\x83\xa0\xf7\x54\x3c\x70\x2b\xf8\xb4\x2a\x3d\xa6\x76\x14\xe6\xe5\x0b\x33\xdd\x20\xf3\x34\x29\x36\x84\xb3\x95\x74\x6e\x91\x9a\x19\x0a\x3b\x84\x6b\xc1\x17\x84\x4f\xe8\xc4\xd5\x7f\x08\x14\x7a\x52\x20\x32\x38\x10\x4f\x78\x0a\x96\x34\x19\x1b\x6e\xf0\x85\x2d\xbd\xac\x92\xad\x97\x55\x11\x98\x10\xfa\xb6\xbf\xdb\xeb\x76\x5e\x80\x05\x77\xa4\x60\x8e\xa4\xef\x54\xa0\x0a\xe7\xb7\x27\x5e\x6b\xee\xcc\x44\xe5\xdb\x39\xf6\xe1\xef\x0a\x34\x51\x5b\x16\x59\xd3\xaf\x26\x2f\x3f\x52\x22\x32\x1f\x35\x79\x92\xd4\x93\xd3\x4b\xc3\x71\x8e\x7c\x35\x5c\xb9\x37\x35\x19\xfa\x9b\xaa\x68\x3c\x32\xe9\x8a\xcd\x1f\x2f\x1f\x1a\x4f\xf0\xf5\x89\xe7\x13\xf8\x7a\xe0\xc9\x04\x7f\x8f\xce\xe3\x8a\xa2\x29\xce\xb9\x47\x90\x77\xc2\xcb\x3c\x0a\x3c\x12\x7b\xc0\xf0\x75\x84\xf8\x41\x89\x06\xfc\x21\x23\x32\xf0\x33\x57\x27\xde\xfd\x60\x16\x39\x17\x89\xfa\x94\xc4\x75\xf2\x52\xa5\x71\x84\x5e\x07\xd6\x0b\x21\x2a\x82\xa7\x47\x3b\x3e\x7b\xd0\x35\x69\xba\x0e\x09\x22\x21\xd8\xd6\xe0\x62\x74\x52\x08\xdd\xb6\xea\xe6\x3e\x59\x11\xef\xe8\x19\x69\xbe\x42\xb8\x78\x9e\x56\x36\x5f\xd7\x2c\xd2\xa1\x43\xed\xb5\xa1\x35\xf9\x14\x55\x5b\xb9\xc2\x3a\x29\xf7\x0e\x72\x39\x97\x55\xa8\x75\x57\x41\xca\x4c\x8a\x3c\x87\x64\x5c\xbc\x75\xfc\xab\x40\xb1\xac\x31\x50\x18\x0f\xfd\x50\xc7\x37\x45\x9f\xc1\xe8\xc2\x19\x67\x26\x02\xc9\x12\x95\x73\x28\xc1\x5d\x43\x95\x21\x2f\xba\xc2\xdc\xc5\xf9\xfb\x40\xe7\xf2\xbd\x1f\xde\x0d\xd3\x18\xe7\x2c\x7e\x86\x01\xa8\x7c\x13\x3c\x88\x83\xbd\x5b\x64\x61\x6c\xb3\x4c\x7e\x04\xab\xe6\xa2\xee\xf5\xbf\x58\x3b\x66\x3e\x5f\x1e\xb6\x61\x96\xcb\x31\x83\x75\xc7\x88\x12\xbe\x69\x40\x1f\x1c\x20\x91\xc4\x54\xd1\xea\x71\x79\x43\xc4\x7e\xfc\x88\xff\xe3\x2e\xfc\x75\x61\x73\x6b\x39\x7e\xdf\xd7\x55\x5a\xeb\xac\xde\xa9\x5b\x4d\x2c\x43\xe3\x34\x5c\x25\x57\xc5\x63\xe5\x2b\xc9\x8c\xda\x09\xb4\x6f\xb1\x3d\x4e\xc6\xf4\x88\x18\x3a\x48\xcc\xf1\xb5\x52\x88\xef\x99\xcc\x66\x8f\x78\xd6\xc7\x93\xf0\xee\x80\xe1\xfd\x39\x91\xc1\xc0\x52\x43\x5f\x81\xc1\xd5\x28\x29\x20\xf1\xb7\x93\x50\x40\x48\xf1\x5c\xa4\xed\xe3\x10\xd8\x0e\xd8\x78\x4a\xb3\x3c\x6d\x02\xe3\x8a\x08\xff\x18\x32\xb7\x7c\x83\x95\x27\x86\xbb\x1e\x6b\x2f\x22\xbb\x37\x66\x1d\x2d\x58\xec\x53\x64\x0d\xf9\xba\x42\xb6\x66\x4d\x6e\xf7\x56\x61\x03\x7e\x06\xa6\x37\xe8\x97\x59\x8e\x1f\xae\xa3\x0b\x4f\x5d\x47\xcb\x45\x3a\x57\x90\x5a\x99\x52\x0c\xcb\xdc\x76\x87\xd8\xeb\xc6\xf6\x3e\xb0\x03\x9a\x6d\x69\xc9\xe1\x30\x1a\x14\x2f\x32\xb0\xe7\xf8\x50\xe5\x5d\xd5\x39\xfb\xae\x82\x00\x8c\x53\x3b\xb0\x29\x91\x2f\xb0\xe6\x10\xfd\x21\xda\x59\xef\xe0\xf1\xf1\x0f\xa0\x31\x42\x44\x79\xa5\x4e\x61\x7c\xa0\x7d\xe8\x50\x4b\xc1\x1a\xcf\xaa\x0a\xf0\x59\x57\x7f\x19\x11\xf6\x9e\xfc\x72\xc9\x9e\xf9\x98\xfd\x14\x5c\x04\x49\xec\xf8\x73\xab\x17\x46\xd4\xac\x5f\x8e\x13\x8e\xa7\x1b\xba\x91\xab\xee\x4d\x94\x9e\xd2\xd0\x9a\xbe\xb8\x3a\x40\x0d\x82\x14\x97\xaf\xd5\xd7\xaf\xda\x74\x94\x30\x59\xa2\x73\x19\x5c\xde\x5c\xcb\x19\x8c\x4d\x9a\x0b\x3e\x0f\x9b\x0f\x0d\x01\x92\xa2\x54\x7c\x1c\xe7\x15\x05\x93\xc6\xf8\xa5\x36\xb3\xe9\xaa\x25\xee\x76\x44\x8e\x3f\x43\x36\x93\x6f\x5c\xb8\x68\x8b\x34\xc1\x09\x37\xe5\xa7\x8e\xdf\x1b\xcb\xe0\x36\x9f\x09\x30\xbc\x7f\x5d\x33\x44\x4b\xfb\x97\xda\x5d\x1b\x25\xd2\xec\xc0\xbd\x36\x0a\x45\x70\xb6\x81\x3c\x72\xa9\x74\xc4\x8a\xb8\x97\xa3\xb0\x8e\x6a\xf4\x51\xac\x04\xd1\xdf\xf6\x39\x81\x5b\x9e\x82\xdb\xa4\xa6\x1f\x66\x96\x29\x4a\x04\x90\x51\xe9\xc9\xf2\x9c\x1c\x97\x14\xcd\xd8\xd0\x9a\xd5\x90\x3d\x27\xc6\x53\xd3\xe0\x09\xb6\xfa\x41\xf0\x32\x13\xaf\xaf\x99\xf5\xa9\x8a\x3c\xb3\xa3\xda\x39\xa7\x71\xd3\x47\x54\x93\xbc\x35\x69\x14\xda\x74\x97\xa2\x1f\xbc\xa0\xfa\x32\x3e\xd4\xe0\xcc\x6a\x23\x78\x4b\x69\x3e\x90\xe1\x11\xbb\xb7\x7d\x10\xe7\xe6\xda\x59\x32\xb2\x6b\x43\x93\xd3\x3c\xc3\x45\x86\xef\xc9\xd7\x35\xf7\x47\x5e\xca\xf6\xc3\x8c\xb3\x27\xd8\x21\xcc\x2c\xc3\x37\xd5\xee\x9c\x7c\xf8\x09\x15\x70\x5c\x83\xcf\x86\x5f\x78\x3b\xd0\x68\x34\x00\x5f\x90\x6d\xbc\x07\x43\x09\x07\xe4\x9a\xb6\x8d\x80\x77\xa1\xc9\xfa\x78\xe0\x45\x70\x58\x3d\xc6\x09\xfe\x3b\x4e\x89\x0b\x8a\x1f\xf1\x06\xf0\x50\xfc\xeb\xc8\x64\xf3\x6f\xe0\x0d\xe0\x51\x5c\x55\x7a\x2e\xb7\x1c\xc1\x8a\x7d\x25\xe9\x17\x6c\xb0\x90\xc1\x02\x25\x39\x5f\x37\x49\x3f\xb3\x36\x59\xcb\x63\xfa\x7e\xae\xb8\x79\x34\xb0\xb5\xdc\x49\xdd\x24\xee\x57\x54\x8e\x51\xb7\xe1\xeb\xa6\xef\x4f\x6d\x6c\xd7\xb8\xd6\x2c\xa4\x35\x95\xe2\x5e\xcb\x51\xd2\x5e\xd0\x0a\x51\x97\x02\x7f\x0c\xae\x5b\x93\x66\x4f\x28\xaf\xf0\xe1\x4e\x79\xf4\x89\xa4\x28\x8d\x91\xac\x34\x9a\x3b\xa4\x59\xef\x04\xca\xe3\x9d\xa6\x5e\x7e\x8c\xf1\xff\x3b\x51\xea\x4f\x2c\x86\x8c\x9c\xc6\x57\x10\xf1\xe0\xf3\x10\x37\x45\xf1\xe6\x91\x8e\x22\x86\xd9\x9a\x6c\x23\x00\xf3\x63\xa7\x09\xb3\xcf\x93\x1f\x0d\xac\x17\x08\xa7\xb0\x15\x41\xd3\x0f\xe6\xb8\x26\x87\x62\xbe\xdd\xf5\xca\x95\x78\xc8\x23\xf8\x5e\xbe\xa9\x14\x1e\x92\xb5\xf8\x49\x95\x59\xd9\x81\xc6\x4e\xe9\x44\xf1\x69\x0c\x94\x24\x98\xff\x1e\x23\x03\x0f\xff\x7e\xa0\x08\x3c\xb8\x76\xc2\x32\x39\xd8\x9f\xa2\xbf\x44\xf6\x55\x96\x9f\x6a\x91\x7b\x93\xde\x13\x11\x73\x8b\xf8\xaa\x9d\x30\x5b\xb9\x43\xe0\x7c\xbc\x45\x7a\x20\xae\x37\x6f\xff\x2c\x07\x60\x53\x1d\xef\xb9\xcc\x6c\x94\x01\x86\x30\x3e\x2b\x88\xfb\x05\xd5\xa7\x97\xd9\x5e\x4a\x9d\x34\x60\xaf\x96\x62\xe0\x31\xd5\xfb\x79\x01\xcf\xcd\xff\x10\x78\xf4\x5d\x3d\x73\xbf\x6f\xd1\x37\xbd\xf9\x46\xe2\x0b\x41\x05\xbf\x52\xa9\xb8\xe7\xbd\xdd\xb4\x46\x70\x3e\xfd\x27\xc5\x79\x77\x35\xf0\xd5\xd7\xff\xa4\xbf\xe1\x35\xda\xac\x78\x95\x37\x74\xaf\xed\x6b\x81\x77\x53\xeb\x32\x19\x2f\xcc\x3e\xdb\xee\xa5\x45\x2f\x94\xe4\x81\x6c\x13\xdf\x23\xf0\xc7\x13\xdd\x0a\xe7\x73\x62\xe1\x72\xdf\x44\xc9\x60\xf0\x60\x42\x51\x25\x10\x60\x4d\x0c\xc0\xbe\xf0\x6b\xd3\xe2\xe0\x1b\x8a\xff\x80\x6d\xc0\xb4\x61\x3b\x81\xda\x9f\xff\xbf\x72\x3e\xae\xd4\x52\x3f\x73\x73\x4c\x75\xac\x78\x5f\x15\xf3\x84\xe7\x55\x5c\x33\xe1\xaa\x4d\x11\x36\x39\x53\xef\x9c\xa8\xf3\x8a\xda\xf4\x47\xb5\x33\x7a\xdf\x62\x7b\x98\x44\xfd\x62\xcc\xc6\x8f\x59\xde\x02\x6f\x5c\xae\xd7\x52\x73\x2f\xcc\xbe\xd4\x4e\x8a\x7c\xc6\x83\xf4\x76\x6d\x94\x8b\x97\x36\xec\xef\x3c\x41\x7e\x9a\x80\x10\x75\x62\xa1\x9c\x64\xc1\x1c\x3e\x90\x19\xc9\x64\x99\x8d\x97\x39\x0e\x81\x09\xb9\xa6\x65\xf2\xae\x35\x95\xf8\x3e\xd7\xee\x96\x5e\xf1\xb0\xa5\x44\xbb\x31\xdb\x7c\xed\x7a\x16\xd7\x93\xa2\x45\x30\x4f\xac\xf1\x1b\x81\x6a\x89\xbe\x31\xd9\xeb\xc1\xfb\x6b\xad\x32\xf2\x84\x87\xbc\xa5\x9a\x10\xb6\x6a\xf3\xb4\x6f\xb1\x1d\xdb\xb5\x68\x7d\x4a\x01\x28\x3e\x9e\x78\x7c\xda\x5d\x8a\xfe\xa5\xeb\xab\xa9\xd2\x96\xda\xbc\x48\x1d\x19\x3f\x10\xab\x28\x98\xf3\xb5\xa2\x19\x1e\x25\x71\x98\x27\xc4\x73\x50\xfe\x01\x87\xf1\x9a\x91\x44\xe7\xc1\xcf\xea\xac\xe7\x28\xb6\x59\xbe\x8e\x14\x21\xb7\x59\xc1\x9c\x49\xcf\x55\x03\xed\x4a\x6a\x46\x63\xc3\xbe\xa9\x93\xae\xf2\x7a\x8d\x0d\x14\x80\xf3\xed\xa7\x9f\x7e\xc4\x67\xad\x8e\x4d\x94\x16\xe1\x39\x9c\x12\x5e\xbf\x69\x96\x17\xca\x61\x5a\x1c\xc8\x33\x31\xa5\x13\x2a\x60\xad\x4e\xeb\x85\x59\x66\x22\x97\x86\x97\x72\x38\x31\x30\x3f\x44\x58\x87\x98\xfe\x0d\x05\x30\x41\x29\x14\x16\xe5\x86\xef\x01\x49\x7b\x43\x89\x8a\x51\x49\xff\x25\x59\x1e\xbe\x6e\x6a\xe7\xea\x5b\x83\xe6\x4e\x2c\xf4\x29\x1c\x12\x7c\x53\x4b\x42\x1f\x7c\xbe\x1d\x85\xcb\xc3\x7c\x4a\x8b\xba\xf8\xa9\xb9\xa7\x8a\x2d\xdf\x6d\x10\x18\x9f\x6f\x27\x71\x9e\x4c\x97\x83\x87\x02\xc7\x77\x01\x49\x96\x9e\x4f\x9f\x49\xb9\x42\xe3\x85\x53\x6d\x67\x47\x9b\x59\x1b\xf5\x1f\x57\x94\xdd\x2c\xd4\xe9\xf8\xc0\x17\x16\x04\x33\x77\x06\x07\x96\x28\xdb\xb5\x9e\x9b\xe7\x1c\x0e\x84\x2d\xf1\xdd\xb7\x26\xbe\xa1\xfa\xd6\x44\x79\xa6\xd2\x17\x84\x0a\xfa\xd5\x40\x73\xb3\xd2\x9a\x12\x18\x78\xcb\x09\xe2\x3c\xd4\x51\xfd\x81\x67\xc9\xb2\x6b\x19\x2d\x11\x03\xa0\xd9\x81\xe9\xba\xaf\x60\x66\x5d\xd3\x5b\xd9\xa3\x9c\xba\xd3\x81\xd2\xae\x44\x9a\x54\x30\x00\xbe\x5e\xfc\x3f\xd3\xbe\xc0\x12\xbb\x49\xe7\x28\x96\x0a\x68\x4e\x5d\x8f\xf0\x3e\xdf\x88\xae\x14\xa6\x00\x88\x17\x37\xc2\x11\x1a\x46\xd6\xa4\xd4\x2f\xa9\x14\x0d\x61\xe7\x60\x63\xef\x05\xaa\xfb\x70\x53\x41\x5d\xc6\x49\x96\x53\x40\xd5\x27\xa7\x5c\x9c\xa8\xf2\x49\xf8\xba\xe3\x53\x2c\xfb\x0e\xee\x53\xb2\xe2\xaf\x6b\x0c\xc0\xeb\x81\x87\x5d\x92\x72\xbb\x89\x7b\xeb\x14\x41\xc3\x47\xbf\xaa\xe5\xe1\x91\x0e\xc3\x53\xfe\x11\xf5\x03\x0b\xec\x57\x11\xdf\xf4\x4c\xca\x7a\x0a\xf8\x86\xb7\xb5\xcb\xff\x76\x63\x6f\x2a\x31\x33\x4f\xe9\x94\xfa\xc4\x03\x21\xf7\x74\x7c\xf9\xec\x9e\xdb\x7d\xd9\x30\x1c\x08\x76\x49\x34\xe6\xcb\xcf\x88\x62\x8d\x87\x28\xaf\xf6\xd2\x8c\xb6\x90\x28\x2d\x2a\x2e\xa0\xef\x29\xb2\xca\x9b\x2a\xe3\x53\x9e\x1b\xf9\x5e\x4f\xc3\xfb\x8e\xce\xea\x81\x78\x54\x8a\x86\xe5\x8f\xc2\x87\xba\x54\x25\x0f\x50\xee\x09\x43\x07\x85\x76\x42\xc3\x82\x7e\x46\x01\x88\xd3\x3e\xf1\xa8\xba\x77\x15\xf5\xfe\xbb\x9e\x5e\x47\xe1\xf4\x91\xd7\x62\x76\x7c\xbe\x69\x22\xc1\x88\x92\xb4\x2f\x5c\x9b\xf0\x8f\xa7\x3b\x0a\x85\xa1\x71\xb5\xb7\x1c\x10\x3f\x37\x51\x34\xe5\x11\x57\xbb\x36\xbc\x8e\xf8\x3d\x1a\x34\x3a\x87\xb3\x27\x3b\x3e\x19\x30\x4e\x93\xdc\xf6\xf2\x5d\x4a\xa7\xf9\x94\xa2\x0f\x61\x26\x01\x6e\x47\x0c\x94\x46\xff\x85\x49\xa5\x93\xd9\xef\xeb\x3a\x5d\x0b\xf8\x43\x7b\xc3\x30\xb6\xd2\xbb\x2a\x02\x50\xf4\x1a\x7c\xe3\x88\x8f\x52\x13\x46\x6b\x4c\xb3\xf3\x92\x07\x15\xfa\xf4\xe7\xc9\x8a\x17\xff\xaa\xcd\xf6\x78\x07\xf6\xdf\x92\xbd\x42\x04\xfe\xbf\x06\x9e\xb5\x05\xde\x18\x5f\x2b\xa1\xc7\xbb\x80\x48\xc2\x8b\x3e\xa1\xa9\xd4\xae\xe8\x7e\x56\xd8\x4d\xfe\x2b\xd8\x08\x41\xcc\x37\x14\x92\x98\x5f\x1e\x53\x8e\x35\x73\x4b\x31\xcb\xdc\x72\x3a\x3c\x45\xdc\xb7\xab\x36\x4a\xc6\xf2\xc7\xc0\xf7\x7f\x73\xe2\x1b\xf7\xbe\xa9\x36\x3b\x28\x97\x52\x86\xf2\xc2\x7a\x01\xd0\xcc\xd7\x8a\x17\x66\x1c\xf6\x56\x8a\xf1\x54\x4b\xd1\x70\xfb\x6e\xda\x4d\x75\x7a\xdc\xaf\x01\x29\x71\xea\xe5\xc3\x8a\xbe\x26\x26\x40\x6a\x01\xbe\x8f\xd9\xbe\xc2\x7d\xb5\xde\xe1\xe4\x0a\x12\xdf\x38\x59\x7f\x93\x65\x61\x96\x9b\x38\x27\x2d\x15\xb4\x4b\xc0\x57\x54\x5a\xf4\xf3\x9c\xef\xf9\xeb\x89\xe2\x1b\xbc\xa7\x05\x88\xcf\x35\x79\x29\x99\xde\x64\x28\x86\x7c\x18\xf8\x16\xdd\x0f\x55\x25\x3b\xb2\x59\xf6\x28\x2d\x2d\x07\x75\xad\x78\x24\x62\x65\x21\x78\x82\xd4\xd6\xa7\x81\xc4\x73\x7d\x45\xe5\xaf\x60\x63\x1d\x99\x28\xa5\xc7\xef\x7b\x80\xa9\x01\x5f\x25\x2c\xe8\xd1\x4a\x14\xe3\x73\x04\x57\xc8\x1e\x4b\x7d\xae\xf4\x6a\x24\x51\xdb\x80\x1c\xf1\x68\x2c\xc7\x67\x08\x17\x51\x8a\x18\xae\xdb\x77\x68\xfb\x53\x5e\x3f\x19\x9e\x10\xae\xdf\x9d\xa8\xf7\xb8\xa0\x65\x6e\x72\x6b\xfa\xa1\xf0\x08\x69\xad\x7e\x59\xe6\x7e\x15\x0e\xad\xe9\x47\xe5\x66\x9e\xa2\xb0\x56\x12\x66\x0a\x11\x8a\x0c\x9f\x10\xbc\x7b\x90\x51\x54\xfa\x52\x6a\x8b\xfd\x44\x45\x29\x3f\x09\x3e\x55\x75\x24\x09\xe2\xb9\xb0\xb0\xb7\xd2\x4e\x50\x4e\x9b\x2b\x86\x7a\x84\xfe\x5f\x4e\xd4\x26\xd0\xba\x51\x4c\x6d\x8a\xc0\x78\x67\xa7\xd2\x70\xea\xf1\x11\x47\x27\xba\xe9\xec\x8a\x12\xbd\x3f\xa3\x5b\xb0\xdf\x55\x7c\x5d\xd6\xe4\x00\xb2\xe3\x8d\x41\x51\xc0\xd7\x9d\xed\x55\x8b\xb9\xb9\xd2\x24\x50\xaf\x3c\xbb\xc1\xaa\x7b\x75\x53\x23\xb6\x37\x91\x8a\xc5\x86\xb8\x17\x78\x62\xfb\xb7\x27\x7e\x95\x5e\x77\x59\xab\x6c\x9c\x5a\x83\x72\x2a\x76\xca\x07\x13\x5f\x96\xc1\x39\x87\x6b\x56\xf6\xaa\x70\x2d\x22\xa1\x71\x39\x50\x44\x7d\xf9\xc4\xc7\x1c\x8f\x6c\xfc\x8d\xea\x84\xcc\xcd\x4b\x90\x46\xba\x6a\xd2\x7b\x53\x2e\x5b\xc9\x93\x28\x52\xed\xa5\x40\x59\xbf\x4b\x4a\x0d\x6e\x17\xb0\xab\x4e\xb8\xb2\x74\x55\x2b\xbd\xc3\x30\xcc\xbf\x45\xf3\xe3\x90\x3d\xe5\xc1\x2c\x6e\x2b\x26\x0b\xfd\x70\xdf\xc5\x8b\x21\x55\xb4\xa5\x98\xda\x79\xb1\x20\xd8\xbf\xd7\x94\x5f\x23\x79\xe8\x62\x34\xe5\xbd\x2c\x34\x56\x38\xb2\x95\x2f\xbe\xe8\xa8\x42\x1b\x02\x83\x41\x98\x5a\xb4\xbd\xc1\xc5\x78\x5b\x41\x8f\x8f\xaa\x3c\x26\xb7\x1c\x8b\x34\xaa\x4c\x5d\x3f\xb5\x66\x44\x2d\xdf\x8b\x6e\x3f\x7a\xb8\x06\x17\x7c\x51\xec\xb8\x4f\x43\xa1\xb2\xca\x8e\x0a\x2a\xf0\x61\xa1\x8d\x49\x8e\xd8\x96\x8e\xd3\xdc\x9c\x8b\xbd\xbc\xc0\xfa\xf1\x89\x27\x73\xbc\xd2\xc4\xfa\xc3\x36\xdf\xf7\x8d\xfe\x9f\xef\x07\x7e\x99\xbe\x5f\xe1\xd0\x8a\x22\xdb\x63\xe5\xbe\x72\xca\x59\xb2\x02\x8c\xae\xa2\x5f\xb1\xfd\x27\x0e\x3e\xdf\xee\xda\x5e\x32\x02\x32\x09\x8e\xe2\x35\x85\x7d\xa9\x07\xf6\xf3\x07\xdb\xdd\x24\x4d\xfd\x59\x8a\x39\x07\x2c\x8f\xaf\x95\x7f\x3d\x4c\x8a\xcc\x0e\x93\xa8\x9f\xcd\x78\xb5\xb8\x13\x58\x3b\xd8\xc1\xb7\xc8\xd6\x23\x1a\x39\x37\x51\x6d\x41\xe7\x54\x5b\x50\x3d\xdf\xff\xc2\x6c\x7b\x2d\xcc\x87\xe5\x57\x3b\xa7\x17\x03\x89\xce\x7c\x81\x1f\x78\x08\xd1\x0f\x26\x8f\xf8\xb0\x3b\xb5\x9f\xf1\x47\xd1\x9e\x0d\x0f\x80\xfa\x2e\x12\x83\xae\xa3\x7d\xfe\xa0\x93\x70\x2d\x87\x08\x5f\x75\x1f\x1e\x8a\x84\xc9\x14\x01\x31\x85\x2c\x82\x5f\xf8\x4f\x87\x71\x10\xa1\x06\xb8\x03\x8c\x25\x64\x6c\xfe\xfd\x53\x08\x59\xf1\x2f\x8f\x6f\x94\xab\xc3\xa9\xc9\x95\x9b\x0f\x8d\x3a\x77\xe8\xfc\xc1\x4f\xfe\x59\xe0\xdd\xe8\xcf\xe0\xe8\xa3\x7c\xd5\x7f\xe1\x0e\x39\xec\x50\x56\x48\xc4\x16\xf9\x6c\x47\x57\x5d\x76\x76\x7c\x89\xe7\x23\x52\x5b\x44\xb6\xe0\xc9\x0e\xf9\x51\x80\xb5\x7d\x08\x77\x1b\x5b\xef\x53\xd4\x35\x83\x2f\x7e\xb2\x43\xeb\x08\xa6\x52\xf3\x99\x67\xe1\xab\x44\x9b\xef\xf9\xa3\x4e\xa9\xc4\x9a\xe2\x00\x2a\x96\x4d\x37\x49\x14\xc1\xd8\x49\x20\xf9\xf9\xc6\xf5\xd0\x46\x49\x32\x92\x44\x8a\x40\x0d\x69\x4c\x61\x74\xaf\x07\x1a\xbf\xb7\xdd\xaf\xdd\xb7\xd8\x4e\x8a\x34\xb3\x91\x13\xb0\x94\x6e\x51\x7a\x7c\x11\x01\x96\x63\xf9\xe9\x7f\xf1\x4f\x33\xdd\x2a\x7a\x59\x69\x39\xe2\xf0\x87\xbd\x78\x4b\xf5\x7c\x74\x8b\x3c\xb7\xe9\x20\xa4\x7c\x18\xcd\xa2\xa4\x60\x30\xda\x92\x83\xd9\x6e\x9e\x4a\x97\xbb\x6f\xb3\x5d\x2a\x84\x79\xa8\xa3\x4a\xd5\xb7\x26\x9a\x82\xc7\x97\x50\x7e\x01\xb3\x03\xf8\xc2\x1d\x4d\xc7\x7e\xb5\x39\xeb\x36\x48\x43\x1b\x33\x5f\x87\x6e\x47\xd5\x14\x6b\xc2\x0f\xe2\x3a\xa3\x07\x65\xf0\x68\x72\xe1\xb8\xc3\x0f\x4c\x6f\xa8\x5f\x9b\xee\x6c\xe7\x62\x29\xed\x93\xc9\xcd\x38\x4d\xfa\x45\xcf\x31\xdd\xe1\xd5\x7e\xa2\x43\xb5\x9f\x4c\xb6\x7f\x94\x10\xd3\x61\x1e\xda\xec\xdf\xfc\x13\xd3\xed\xb5\x14\xb7\xe4\x31\x1e\x47\xbe\xab\x79\x96\x07\x9f\x6f\xf7\x8a\x3c\x17\xde\x0a\xa7\x7e\x57\x2e\x11\x81\x58\xe9\xca\x6a\xaf\x0c\xdb\x1e\x6e\x39\x02\xae\x4b\x34\xaf\x28\x76\xbc\x39\xf1\x64\x4c\x8c\x8c\xc0\x6e\x43\x57\x10\xf2\x28\x72\xb8\xc1\x27\xda\x49\x25\x01\xfc\xd5\xf9\xc0\xdb\xb4\xf3\xda\xc1\xde\xb9\xe1\x51\x26\x49\xcf\x9a\x18\x24\x56\x8e\xc8\xc9\xc1\x7b\x98\xb8\x92\x6f\x3a\x5e\x86\x5b\xeb\x62\xaf\x0d\x93\xcc\x3e\x5c\x3e\x90\xf4\xc4\x97\x5f\x80\x6e\x24\x56\xb4\x43\xe4\x7c\x5a\x55\xa8\x91\x6d\x86\xaf\x3b\xdd\xa9\x1c\x69\x64\x94\xe0\x98\x9d\x9b\x6c\xa7\xde\x71\xf4\x77\x3e\xb9\x92\x14\x69\x9e\x26\xc9\x48\x1f\x43\x28\x7c\x8a\x7c\xad\x16\x22\x7f\xb9\xc8\x72\xe0\x99\xf7\x49\x44\x7f\xbe\x4a\x63\xf1\x98\xe2\x26\x1e\xe7\x20\x79\x85\xf9\xf9\xba\x12\x15\xf8\x7a\x53\x0b\x53\x3b\x8b\xec\x18\x99\x3c\x38\x83\x3f\x9c\x28\x22\xcb\x2b\xa8\xb2\x88\xb3\xa1\x4a\xf4\x43\x93\x71\x84\x06\x0b\x0a\xfd\x18\xbe\x56\x95\x06\xea\x4a\x71\xdd\x04\x28\x74\xbe\x15\x78\xc8\xca\x87\x13\x9f\xc2\x04\xef\xb8\xe0\x01\x54\x4a\x29\x32\xe5\x97\x0c\x06\x19\xb0\x5a\xa2\x21\x46\x95\x50\x45\xd6\xee\xa5\xc6\x5a\x4f\x3f\xed\xfa\x7f\x1f\x55\x3d\x80\x66\xf4\x48\x79\xfe\xc0\x36\xed\x62\x6b\x2e\xe4\xec\x7e\x11\x9d\x53\x54\xce\x37\xd1\xf8\x84\x21\x38\x06\x4f\x4e\xea\x7f\x34\xef\x7c\x03\xdb\xcb\x7f\x46\xcb\xc6\xa9\x1e\xed\x93\xde\xbc\x5d\xd8\xfe\xaa\xa5\x5c\x1c\x89\x9b\x0d\xcc\x30\x5d\xb3\x62\xfb\xd3\x2a\x62\x86\x80\x12\x96\xec\xfd\xc0\xc3\xc4\xce\xe9\xc6\xfa\x3a\x11\xee\xe7\xdb\x03\xe3\xc8\x89\x80\xd5\x39\xab\x5b\x63\xcf\x06\x9f\xac\xfa\xc0\x5f\x7c\xb1\x7d\xe8\xd0\x4c\x39\x86\xf0\x38\x8f\x2b\x4d\x83\xd3\xa8\x3f\xf3\x3f\xa8\xa6\x95\x3f\x23\x6b\x8b\x8c\xca\x79\x05\x1f\x84\xc4\x1d\x89\x05\x62\x4d\xdd\xd2\x54\x27\xb7\x30\xa0\x22\xde\xe0\x55\x26\xcf\x6a\xa5\xae\x24\x4a\x56\x0c\xd4\xef\xe0\xbd\xe8\x84\xeb\xc7\x4d\xd4\xb9\x9f\x6b\x0f\x4d\x36\xa4\xaa\xdd\xa2\x40\x6b\xe0\xf8\xf2\xb5\xd2\x27\x1a\xdb\x34\x4b\x62\x83\xd0\x05\x7e\xf1\x75\xb5\x00\x1e\xeb\x94\xe6\x0d\x76\x7f\x6b\xa2\xf4\xdb\x51\x3d\xad\x90\xf9\x0a\x00\xb0\xde\xb5\xd9\xee\x19\xf0\xce\xbb\xed\x88\x33\x84\xaf\x6b\xae\xea\xe2\x62\x3b\x35\xcb\xcb\x95\xf6\xb2\xff\x1e\x61\x00\xdf\x4c\xf6\xb8\x4e\xf3\x58\x93\x41\xbf\xa1\x3a\xd7\xc0\xf8\x22\xf2\x8b\x4d\xd2\x6d\xe1\xf2\x10\x8d\x12\x88\x4e\x6e\x05\xbe\xdb\xe6\x56\x83\x0c\xd4\x81\xb6\x29\xf2\x64\x64\xf2\xb0\x37\xe5\xff\xf2\xac\x62\x3e\xf9\x4d\x5a\xef\xd2\x60\xde\xa0\x64\x9f\x15\xe9\x2a\xb1\xf6\xbd\x30\xeb\x8a\xdf\x34\xaa\x7c\xa3\xfa\xd0\xa9\x97\x63\xfd\x31\x5a\xb8\x8c\x95\x0a\xbc\x2c\x2d\xaa\x29\x2c\x34\x09\x83\x88\x24\xeb\x25\x55\xeb\x85\xd5\x96\x55\x43\xd6\x8c\x99\xd3\x27\xaa\xc6\xfd\x3e\x59\x24\xa6\x3b\x0c\x54\x86\xe6\x42\xa5\x94\x7f\x0f\xbe\xa4\x74\x5a\x97\xa6\xc4\xe9\x5c\x96\x1e\x2b\xac\xf7\x8f\x6a\x93\x59\xda\xd9\xa1\x89\xfb\xeb\x53\x7e\xd9\xde\x56\xa8\x7d\x46\x36\x60\x2d\x68\xea\x98\x6e\xb1\x1e\xc6\xcb\x7b\xbd\x9f\xfb\xf8\x61\x4a\xde\x20\x31\xfc\x16\xce\x68\x57\x7d\x55\x56\x9f\x5e\x41\x2b\x42\x49\x90\xa5\x78\x71\xae\xf1\xbb\xa1\x82\x73\x24\xf0\xfa\x96\xb7\x61\x4d\x59\xaf\x0e\x03\xc5\xb8\xb5\x06\x48\x25\xa5\xfc\x19\x22\x82\x20\xe7\x84\xa2\x0b\x38\xd1\x94\x2a\x3d\x00\x8e\x19\x31\x4a\xce\x20\xfa\xa6\x60\xdd\x52\xdf\x2b\xd2\xd4\xc6\xf9\x43\xbe\x9f\xe7\x12\x80\x87\x8e\x34\x6e\x6e\x9e\xd3\x96\x97\x02\x25\xec\x02\xdc\x3e\xd2\x09\xb7\x83\xca\x16\xa1\x61\xa8\x28\x20\xa0\x92\xb3\xc3\x11\x85\xa5\x26\x5e\x46\x87\x8a\xff\x3a\xd5\xa9\x7f\x17\x0f\x0b\xef\x7f\xa6\xe3\x31\xd9\xa9\x19\x87\x7d\x6a\xf5\x21\xc8\x14\xc7\xec\x8a\x25\x18\x60\x64\x41\x93\xd5\x8b\xfa\x2f\xb5\x23\x1b\xf7\x59\x6a\xf0\x25\x06\x4a\x1f\xc1\x24\xf0\x4d\x6d\x27\xcf\xcd\xb5\x07\x61\x2c\x5c\x02\x28\x76\x5d\x52\xe1\x39\x37\x11\x60\x81\xff\xbc\x51\x45\x02\xdc\xe7\xe2\xae\x22\x6b\xc8\xc1\x0f\xdf\x6c\xd4\x1d\xf0\x76\x3e\x34\xf9\x43\x55\x3a\xd5\x17\x85\x3a\x6b\xb9\xdd\xf1\xc9\xd8\xfb\x13\x2f\xeb\xf4\xd5\x40\x25\xbd\x2f\xd0\x36\xc2\xb4\x5e\x9b\xd4\x88\x71\x11\xf5\xec\xde\x50\xab\xc1\xc6\x79\x01\xd8\xb6\xaf\x69\xb6\x1c\xfb\xff\x2f\x29\xfa\xc5\xbc\xfc\x14\xc1\x17\xdf\xa8\x7d\x95\xda\x51\xd8\xcb\xa6\x14\x5d\x2b\x48\xe6\x44\x35\x87\x56\x17\x3e\x36\x71\x25\x0e\x6b\xd2\x7c\xb8\xae\x8c\x25\x72\x68\x7c\xad\x65\xe7\xa5\xc1\xa9\xe5\x25\x0a\x51\x04\x92\xfe\xed\x06\x50\x38\x75\x0d\xb4\x3c\x59\xf7\x66\xa0\x4b\x21\xfe\xb4\x4a\xd2\x7c\x98\xf4\x93\x57\xe8\x44\x75\xdd\x99\xfb\x54\x8f\x7e\xf9\xca\x8e\xeb\xa9\x1c\x4f\xe1\x96\x68\x12\x89\x8d\xd7\xf3\x70\x64\xa7\x3c\xe0\x06\xcb\x46\xb0\x84\xbe\x4a\xf2\xb3\x46\x9d\xf2\x2f\x17\x26\xcd\x6d\xba\x1d\x56\xb8\x7f\xd6\xc1\x0a\x95\x00\x4c\x11\x12\x5a\xbb\xd2\xf6\xa8\xfa\x21\xb7\x79\x21\xfb\x67\xdb\x73\xf3\x0f\x2b\xf5\xa1\x1f\x04\x0a\xb8\x0a\xd2\x2c\x16\xe7\x0e\x5c\xae\x3d\xfa\xde\x44\x65\xe4\x18\xbb\x05\xa7\x0e\x71\x1a\xd6\x16\x8b\x3e\x4a\xfb\x29\x4d\xb7\xf0\x84\xfa\xde\x9c\x7c\x7d\x1c\xf6\x4c\x14\xad\xef\xf2\xc5\xed\xfb\x94\xcd\x86\x9f\xf9\x2e\x0a\x26\x0e\x9d\x56\xbe\x18\x3c\xe0\x3f\x9d\x28\x8c\x1d\x63\x24\xe1\x66\xfe\xa2\x06\x31\xfa\x3c\x21\x6c\xd6\x86\x61\xc4\x2d\x90\x8e\x5a\x56\xe8\x55\xff\xe2\x33\x1d\xbf\xbe\xf7\x52\x12\x16\x51\xed\x51\x82\x78\xc3\xff\xba\xa1\x30\x10\x36\x0a\x4d\x9c\x87\x2d\x08\x85\x91\xcd\xdf\xba\xa8\x91\xbe\x43\xbb\x9a\x26\x31\xa6\x02\x1d\x83\x9b\xb0\xa8\x7c\x33\xf1\x7c\xce\x2f\x3f\x33\xad\xb2\x74\x9b\x95\x6a\xb1\x0f\x7c\x19\x3d\x84\xbd\x50\x47\x0c\x90\x47\x96\xb2\x33\x83\xe7\x65\x0e\x20\xbe\x51\xf9\x8f\xb8\x18\x75\x29\xc1\xe7\x3a\x00\xef\x56\xbb\x8f\x5d\x36\xbd\xde\xc9\xb9\xb0\x80\xb4\xdd\xb2\x08\x52\x38\x5a\x07\x1f\x87\x9d\xd3\x0e\x86\x2b\x61\x3d\xeb\xd8\x07\xcb\xef\xe7\xeb\x5a\xc7\xc2\xe2\x62\x3b\x4e\xf2\xb5\x30\x1f\x66\x39\x3a\x69\xa7\x15\x05\xf3\x4f\x68\xca\xf0\x46\x97\x94\x94\x2c\x71\xcf\x72\x55\xe9\xdb\x6a\x2b\x67\x51\xb2\x6a\x56\x42\xa3\x3d\xf3\x63\x81\xf2\xcc\x8f\xe9\x76\x2f\x93\x86\x59\x37\x4d\x92\x15\x74\x20\xab\xfe\x17\x17\xf7\xd0\x41\x88\xdd\xfe\x5f\x9b\xc4\x46\xb2\x28\x1c\xb5\xbc\x0b\x52\xa5\x09\x6a\x62\x1a\x19\x5a\xb3\x8a\xad\x0d\x23\x70\x44\x95\x4d\x3d\x58\x60\x9c\x26\xe3\xf5\xc8\xc6\xcc\x5c\x04\x2f\xe8\x1b\x2a\x9e\xfd\x86\xea\xce\x25\xd6\x1b\x37\x70\x7c\x38\xd0\x60\x89\x74\x91\x47\x42\x1e\xd6\x87\xec\xa9\x06\x28\x49\x7b\x90\x5a\x71\x22\x5c\x64\x5c\xae\x63\x89\x8c\x1f\x44\xbb\x55\x8c\x33\x9b\x13\xd9\x98\x13\x97\x73\x4e\x33\x9f\xf3\xec\x10\x74\xbc\xc3\xf9\xe3\x89\x1a\xf9\x6f\xa8\x92\xcf\x4a\x98\xae\x4c\x79\xe5\x7d\xfe\x02\xec\xa5\x4b\x8a\x56\xfd\x7e\x6d\xf3\xbf\x30\xeb\xe4\xae\x48\x02\x17\x0b\xe9\x44\xe0\x8b\xda\x60\x15\x44\x2e\x74\xe7\xc6\x23\xa1\xf2\x32\xe8\x27\x11\x47\xa1\x81\x1c\x11\xe7\xc3\x64\x2d\x44\xb7\xa8\x21\xdd\x9c\x0f\xc1\x2a\x47\x13\x2b\xde\xa3\x76\x25\x1b\x15\x1b\x22\xd5\xd4\x88\xbd\xf8\x11\xa6\x87\x6f\x1c\xf3\xd5\x4a\x6c\x25\x57\xe8\x70\xfe\x2a\xae\x7f\xb2\xca\x9d\x96\xc6\xb6\x3f\x43\x86\x48\x40\x6c\xe5\xbb\x33\x07\x7b\xe0\xeb\xdc\x2c\xaa\xa2\x0b\xf3\xf0\xad\x7e\xbf\xa9\xb4\x8b\xf6\x91\x96\xd7\x45\xdd\x54\x5e\xf0\x66\x43\xcf\x6a\x3b\x8c\x73\xf4\x45\x3a\xbd\x84\x4d\x25\x4f\xb3\xe9\x16\x3b\x51\x67\x0c\x89\xd3\xda\xa3\x87\xb5\xaf\xb2\x59\xd1\x95\x4c\x52\xfb\x69\x3a\x91\x9d\x0e\x8b\x86\x3d\xf9\xfe\x92\x9b\x14\xa9\x09\xd4\xa0\x7c\x6e\x07\x20\x9d\x93\x16\xe9\xb7\x69\x38\xd8\xf6\x05\x2a\x2a\x02\xe2\x0a\x31\xd7\xde\x0d\xef\xff\x9c\xaa\x08\xa0\xd3\x61\x05\x0f\xf2\x12\xa6\x9b\xf9\x27\x35\xab\x29\xd3\x55\x63\x25\x5d\xa5\x78\x67\xeb\x1d\x0e\x14\x1c\x2a\xbf\x9c\x08\x78\x6f\x3f\x84\xb9\x62\x6a\x73\xf8\x75\x38\xa7\x2e\xa3\x4e\x82\x54\xe0\x35\xe5\x12\xdc\x56\xf6\xb7\x67\x8a\xcc\x66\x4a\xa0\x0f\x29\x20\xbe\xae\xf9\xa9\xae\xf3\x3c\xec\x1a\x58\x41\x9c\x83\xe8\x5c\x92\x1e\x7c\x6f\xd4\xfe\x54\xc1\x7f\xc2\x74\x35\x8c\x97\x35\xaf\x27\xf3\x6b\x72\x35\xb7\xc2\xeb\xf9\x56\xe0\x8d\x97\x0e\x89\xeb\x36\x68\xff\x6c\x3b\xb6\xe9\x6a\x55\x64\xb0\x7c\x1a\x29\xea\x79\xbc\xcf\x72\x12\x0d\x08\xc0\x04\xcc\xda\x8e\x8e\xaa\x65\x1c\x87\xc9\x40\x54\x70\x94\xce\x0b\xe1\x28\xf5\x35\x69\xca\x0d\x83\xf1\xcf\xa9\x65\x6f\xd2\x9a\x90\xde\x2c\x2d\xea\xbe\x4a\x32\x51\x0f\xf9\x8e\xdb\x63\x70\x57\x9c\x30\x61\x39\x8b\x2c\x61\x8d\xb8\x56\xf4\xac\x3d\x8a\xe8\x0a\x7d\x3b\x5f\x4f\x14\x72\x5c\x8a\xc9\x7c\xa7\x72\xab\xa9\x8d\xcc\x2b\x2d\x0f\x78\xc0\x2e\x12\x89\xf7\xa6\xc0\x25\x21\x02\x64\x47\xb1\xce\xcd\x59\xae\x33\xd2\x75\xaf\x9f\x9e\xe8\x6e\xc8\x31\xf2\xfe\xa8\x31\xdd\x50\xf2\x03\x3f\xc6\xe7\x71\xf4\xa2\xb9\x8b\xff\x08\xcb\x53\x24\x1b\x95\xb0\xc2\xd9\xc9\x36\xdf\x73\xdf\x62\xfb\xb9\x79\xf2\xf4\x31\x23\xa8\x7a\xf1\xf5\xe4\x53\x6a\x94\xe3\x2c\x0f\xf3\xc2\xc6\xbd\xf5\x29\x1a\x5d\x37\x83\xfb\xc5\xf2\xec\x24\x73\x8c\xc7\xb9\x55\x3b\x65\x9f\x9b\x6f\x77\xd7\xc7\x26\x43\x2b\xae\x23\x93\xf1\xa9\x81\x5a\x0b\xcb\xe2\x22\x51\x66\xc6\xcb\xf9\xd0\xc6\x15\xb1\x88\x63\x81\x7a\xa7\x63\xb5\x9f\xa2\x20\xf1\x15\xb1\xfb\xf0\xe1\xce\xeb\x56\x87\xf3\x4d\x05\xd3\x2c\x59\x0d\x6d\xce\x62\x0f\xf2\xd5\xde\x8d\xfb\x5d\x9a\x5e\x20\x0c\xd8\x09\x44\x76\xec\x66\x13\x0b\x4e\x37\x34\x71\x5c\x70\xae\x80\x8b\xf9\x81\x22\x68\xfc\xa0\x66\x99\x9f\x9b\x6f\xc7\x36\xc4\xf9\x38\x37\xe7\xb4\xac\x7d\x02\x19\xa0\x37\x09\x84\x2a\xbc\xf4\x2b\xcf\x80\xde\xa8\x2a\x96\xa5\x1c\x27\x11\x3d\x05\xab\x08\x5f\xe3\x79\x90\x59\xbd\xe9\x0a\x5b\x69\x32\x1a\xd3\x14\x39\xdd\x8f\x72\x91\x09\xb9\x45\x3d\x32\x3e\xd0\xee\x17\xe0\x61\xc7\x37\x6d\xa8\xe8\x83\x35\xfb\x31\x80\xf7\xf0\x4d\xa2\x4f\xbc\xbd\xae\x23\x26\x2f\x0b\xfb\xc3\x71\x01\xbc\x38\xc2\x78\xce\x1f\xf3\x8d\xaa\xd0\x90\x70\xad\x64\x8e\xa5\x0d\xd9\x1f\x6b\x57\xd4\xb1\x76\x05\x27\xb8\xf8\x3d\x4d\xa8\xed\x28\xe9\x76\xd7\x1d\x65\x8c\x63\x02\x74\xe5\xaf\x33\xb5\x3d\xbd\xb0\xb0\xbf\x9d\x86\xd9\x0a\x0e\x48\x06\x0d\xd1\x92\x16\x00\x91\x64\x2e\x4d\x14\x7d\x82\x8a\xc3\x08\xd7\x9e\x46\x55\x05\x01\x5e\x0b\xd5\x5d\xa9\x4b\x56\xe9\xcf\xa4\x86\xfc\xfe\x3f\xeb\x28\xfd\x27\xce\xce\xc2\xf2\x4e\x13\xbe\x17\x60\xfd\xbf\xbd\x51\x41\x9f\xb4\x1c\x95\xdc\xdf\xd8\x50\x09\x02\x44\x5c\x20\x43\x7d\xa2\xe3\x0b\x51\xbb\x2b\x68\xe8\x0d\xb7\x08\xde\x7e\x62\xe3\x49\x95\x51\xc8\x8a\x28\x97\xcd\x05\xf7\xf3\x8e\xc2\x60\xde\x69\x60\x77\x6b\xdb\x57\x6c\xda\x0b\x33\xf1\xaa\x10\x2e\xbe\x8e\x23\x95\x6f\x6a\xa3\xfb\xdc\x7c\x3b\xcb\x93\x14\xbe\x0d\xab\x45\xc3\x7c\x8b\x74\xf4\xe3\x0a\x1e\xb7\x3c\xb2\x71\xbe\x8b\x5e\x92\x4b\x1b\x64\xd1\x5d\x99\xe3\x85\x59\x97\x27\xa5\x5f\x75\x75\x2b\xdf\x31\x74\x12\xf6\x94\xff\x4c\x31\x27\xbf\x5c\xf4\x97\x2d\x50\x08\x38\xab\xa6\x36\x74\x5d\xef\x03\x45\xda\x39\xd5\x69\x6d\xef\xb7\x86\xcb\x70\xb9\x81\xe0\x70\xb1\x1d\x15\xa9\x8c\x09\x66\xf6\xbd\xc0\xa3\x95\xde\x53\xc1\x69\xbf\x00\x38\x45\x9c\x34\xef\x85\x9d\xda\xde\xf1\xfa\x92\xf3\xea\xfc\x81\x9a\xdb\xd1\x38\x49\x45\xdb\xb2\xc9\xeb\xdb\xae\x7c\xb3\xb8\xd8\xee\x62\xe8\x59\x2b\x12\x83\x23\xc2\x91\xda\xfc\xe4\x36\xd7\xaa\x96\x88\x03\x84\xd2\xc6\x1b\x83\x3a\xc1\xd8\xdc\x5c\x7b\x39\xb5\x26\xc3\xa1\x88\xdd\xf0\x2e\x7d\x9a\x25\xbf\xe8\xd5\xe0\xf7\xff\x81\xe6\x25\xea\x87\x2d\x1f\x05\xbc\x85\x61\xe6\x9b\x46\x39\xd1\xf2\x82\xc7\x79\xeb\x22\x5c\xbd\x8b\x3a\x8b\x40\x3c\x26\xd9\x8c\x66\x01\x57\x80\xd8\x5b\x2a\x81\xfd\xef\xe0\x8d\x32\x17\x13\x2d\x2b\xc9\x5b\x2a\x52\xb0\x28\xf4\x91\x3d\x12\x4c\x6f\x4f\xb4\x3e\x18\xbd\x23\x6b\x3b\xd6\x98\xcc\x3f\xdf\x36\xe9\x88\xc3\x0a\xe6\x35\xa2\xa5\x2c\x1c\x47\x4d\x34\x34\x03\x8b\x3c\xaa\x1f\x88\xe3\x5c\x0b\x97\xda\x9c\x76\xae\xc2\xe5\xd8\x14\x51\x5e\xd5\xaa\xa1\xcf\x8a\x58\xcd\x93\x7a\x6c\xc2\x5e\x68\xe3\x7c\x9a\xdc\x28\xb2\xf1\x53\x4f\x6c\xf8\x76\x18\x86\x9d\xf0\x3f\xd0\x7c\x4b\x33\x67\x03\x70\xae\x3c\xde\xb4\x26\x2d\x44\x1e\x9d\x20\x74\xe9\x48\xa3\x35\xee\xf0\xc4\xf3\xed\x0d\xb2\x57\x5a\x15\xd8\xfb\xc2\x82\x5c\x57\xfa\x57\x57\xc2\xfe\x0c\xde\x5a\xda\x95\x34\xa7\xe7\xc4\xe7\x3d\x19\x9a\x56\x61\xbd\x97\xec\xb9\xc7\x45\x75\x8b\xd4\x9a\xa2\x97\x9a\x1e\x9c\x5e\x3c\x31\xda\x07\xf9\xba\x31\xab\xad\x8f\x71\x78\xd6\xd7\x54\xeb\x1d\xda\x3e\xe4\x25\x85\x2c\x2a\x8c\xf3\xd4\x14\x79\xe9\xc9\x5a\x25\x6f\x7c\x5d\xc9\xc4\x5c\x57\x3b\xe0\x5f\xfc\xb7\xff\xbc\xa5\x50\x12\xa7\x29\x76\xe2\x6b\x05\x6b\x1c\x84\x71\xff\x21\x4f\x62\xfc\xb1\x26\x3f\x3d\x81\x31\xe0\x4a\x0e\xbb\x0c\x88\xac\x2e\xab\x10\xf2\x12\xa5\x5a\x90\xfb\xda\x89\x2c\xa3\xa4\xce\x68\xb6\x00\x06\xb8\xea\xf2\x1e\x43\x9b\x76\xc3\x5e\xd8\xb7\x58\xfd\x08\x06\xdf\x9e\xa8\x4e\xf6\x2b\x41\x45\xc1\xe9\x41\x7e\xc0\x5a\x1a\x7a\x1a\x41\x89\xbc\x5b\x8e\x29\xe2\x6d\x2d\x7c\xf0\x1d\xdf\x3b\x97\x86\xb9\x48\x6e\x48\x8d\x4c\xa5\xdf\xce\x4f\x14\x46\x65\x47\xc7\x9b\xf8\xa1\x49\x23\xcb\x30\x05\x11\xd7\xa5\xcf\x79\x75\x5d\xef\x0a\xaf\x30\x27\x2d\x30\x41\xef\xe1\xe5\x60\xff\xaf\x07\xad\xe7\xe6\x5d\x62\x53\x42\x69\x90\xbd\xba\xb7\x81\x6d\x84\xbb\x8c\xee\x97\x4b\x8a\x8c\xf9\x92\xda\xab\x59\x2f\x0d\x59\x68\x65\xfe\xa0\xcb\x74\x78\x5a\x9d\x7b\xca\xc6\xa7\x96\x42\x21\xd4\x46\x9e\x65\x5f\x10\x61\xa6\x8b\xb6\x17\x16\x78\xc4\xbe\xa2\xd2\xd5\xdd\x24\xc9\x98\x3d\xcb\x31\x10\x7b\xf9\x3b\x0d\x71\xc8\xd6\xa3\x28\x2c\x46\x04\x89\x41\x39\x1f\x95\x7a\x11\xe7\xa1\x96\x45\x71\xda\x5a\x8e\x08\xe8\xd8\xc4\xe7\x6f\xfe\x82\xba\x2d\xf0\x10\x77\x02\x45\x97\x73\x9c\x8c\x9c\xa8\xac\xa8\x16\xcd\xb7\x15\x54\x31\xcb\x4d\x1e\x66\xb9\x6b\xd4\x16\xee\x70\xef\xa5\xd5\xbb\xe7\xe7\x0f\x12\xcf\x42\x98\x71\xe7\x17\x7c\x33\x6c\x63\xbe\x9e\xfc\xbd\x9a\x67\x77\xa0\x9d\xa7\xa6\x6f\xfb\x61\xe9\x83\x38\xee\x29\x6e\xdc\x9e\xe8\x26\x6e\x4d\x20\xb4\x1c\x87\x9a\x95\xf3\x88\x66\xe5\x3c\xe2\xa8\x0d\x88\x49\x27\x4c\x40\xc1\x8f\x88\x76\x07\xa1\x86\x70\x56\x5c\x44\xde\x41\x0c\xf3\xa3\xea\xa8\x1d\x3c\xd3\x52\x02\x32\xef\xc3\x81\xe2\x9b\xc9\x93\x2a\x34\xed\xa5\x45\x98\x43\x60\x44\xb0\x4d\x3f\x52\xf4\x51\x3f\xaa\x79\xc0\x87\x0e\xb5\x63\xd3\x7b\xd5\x46\x71\xb8\x42\x3b\xd7\xf1\x74\x3b\x7f\xe6\x17\x94\xb9\x61\xad\x36\x0f\x5a\x1e\xd9\x28\x62\xa1\x5b\x7c\x66\x2b\xa8\xd6\x04\xca\x67\x14\xe1\x49\xe5\xb2\x41\x00\xfe\xe1\x96\x56\x9c\xfc\xe2\x8b\xec\x21\xdf\x50\x44\x30\x97\xb1\x4c\x44\x8a\xd2\xf3\x08\xfc\x18\xf0\x6a\x61\xe0\x28\xd7\x0f\x6a\xaa\x28\x22\x6e\xdd\xac\x04\xf2\xc1\x27\x54\xe0\xb0\x56\x1e\x97\x7e\xff\x01\x83\xca\xd7\x75\x6c\xdc\xf3\x07\xda\x79\x12\x2f\x3f\x1d\x46\x9c\x6d\x47\x42\xee\x9b\xf8\x7e\xbe\x09\xf6\xf2\xc7\xca\x43\xe0\xef\xb4\x5e\x5c\xf2\x32\x41\x4e\x45\xf1\x11\x60\x21\x59\xb2\x06\x8f\x0f\x3b\xfb\x26\xaa\x2a\x58\xc4\xdf\x0e\x3c\x12\xe3\x68\xe0\x11\x9b\xed\xc7\x37\x7c\x3c\xc9\x51\x3e\xe0\xdd\x53\x0a\xb1\xfe\x0b\x1c\x7b\x2c\x18\x1a\x78\x9e\xf8\x53\xc4\x26\x2c\x24\xcc\xe5\xfe\xd4\x82\x98\x62\x4a\xf5\x49\x70\x01\x99\x14\x27\xaa\xf5\xeb\x5f\x72\x58\x7f\x9c\xe2\x0e\xcd\xf6\xc5\x17\x3d\x2c\xe2\x05\xc1\x4a\x6d\x21\x9a\xe1\x16\xb5\x40\x41\xf5\x58\x20\x08\x16\x94\x41\xeb\x58\x30\xac\xa5\x20\xe9\x05\x25\xe8\xf2\x1d\xac\x2b\xa7\x90\xf0\x85\xdf\xe0\xa9\xe5\x44\x1d\xbc\x88\xdd\x9d\xd6\xd3\x4f\x2b\xa1\x68\x31\x1c\xd6\xa4\xb1\x00\x0d\x45\x7c\x85\x1e\x48\x64\x59\xb6\x1f\x44\x2f\xcc\x92\x50\x41\x9e\x86\xdd\xc2\x91\x2f\xa1\x83\x8d\x9b\x60\xf9\xc6\x01\x55\x47\x49\xdc\x37\xeb\x19\xca\x48\x22\x20\xa7\xe0\xf1\x90\xd8\x46\x9f\x18\x77\xd5\x08\x0b\x68\xc5\x8d\x31\x2c\xbd\x28\x32\x69\x34\x06\x7c\xf3\x40\x6e\xa9\x30\x5e\xb5\x80\xcf\x4d\xf9\x82\x29\xfc\x31\xcc\x3e\x73\xbd\xe0\xa1\x77\x39\x75\x8b\xf5\x64\x25\x19\x9a\x91\x69\xb5\x14\xb7\x62\x85\x02\xac\x21\xeb\x1c\xdb\x35\x93\xae\xb4\x7c\xee\x90\x4f\x59\xbe\x51\x89\x4f\x13\x2f\xdb\x28\x99\x51\x1d\x69\xd0\x75\x61\xfd\x4e\x95\x2c\x38\xab\xf1\x78\x27\x70\x50\x0b\x32\xad\x41\x47\xb4\x88\xcd\x78\x6c\x4d\xe4\x22\x76\x49\x0d\x7a\x1c\xee\xa6\xb3\xb8\x71\x18\xdb\x41\x12\xa1\x53\x13\xef\x85\xcc\x15\x5f\xbb\x40\x3d\x31\x18\x3e\xec\xc3\xdb\xaa\xd1\x01\x24\x18\x18\xbd\x53\x0d\x9a\xea\x4b\xed\x7e\x1a\xc6\xa2\x4f\xc6\x60\xa9\x40\x51\xd4\x6c\x56\xb0\xed\x63\x1b\xd9\x2c\x83\x30\xed\xa2\xa3\x6b\x28\x37\xb1\x30\x34\x78\x58\x18\xf3\xec\x3d\xec\x4f\xaf\xe3\x70\xba\x1d\x33\xf2\x3e\xd5\x95\xef\x40\xd8\xc7\x27\x4a\x78\xef\x90\x2a\xcb\xdf\xc2\xe6\xd3\x52\xbc\x88\xdd\x7f\x1e\x28\x5a\xd8\xfb\x4d\x44\x50\xdd\xe4\x15\x5b\xe1\x55\xa9\xb0\x69\x68\x6e\x40\xe2\xd7\xec\x4f\x97\x8f\x23\x8e\xaf\x12\x70\x3a\x4a\x1f\xe3\x6b\xf5\xda\x67\x1a\xd9\xa7\x86\xd6\x32\x7d\x90\xe4\x8a\x7d\xd7\xd5\x3d\x45\x0c\xb5\xa9\x4a\x55\xcb\xa9\xe9\xce\xf8\x1e\x09\x16\xdd\x46\x6d\x06\xc2\xad\xdc\x99\x42\xdf\x05\x43\x74\x54\x93\xf9\xcd\x6c\x3c\xa1\xfa\xfa\xd2\xd2\xf5\xb0\xad\x8a\x40\x96\xe6\xa4\x6d\x24\xd4\x28\xd2\x55\xbb\x2e\x01\xbe\xe0\x76\xca\x9f\xe6\x6b\xad\x7f\xe4\xe4\x99\x66\xbd\x85\xdb\xe7\x35\x60\xb6\xd7\xf7\xe6\xe6\xda\x3d\x53\xe4\x61\x52\x94\x8b\xa8\x34\xb9\x8e\x03\x77\xbf\xbb\xd6\xb2\x1e\xa6\x67\xa1\x48\xa8\xf6\xb8\x08\x08\xbf\xa1\xe8\x2a\x3f\xa2\xf5\xc0\xd7\xd8\x85\x30\xff\xef\xd5\x0c\xc1\x8b\xf3\x07\xdb\x8a\x74\x54\x46\xa2\x42\xd5\x2b\x2e\x70\x64\xd6\x46\x66\x85\x83\xd4\x03\x9a\xaf\x60\xc9\xf1\x15\x34\x80\x09\xd7\xac\xc3\xed\x31\x06\x39\xf0\xe5\x72\xcd\x86\xd2\x4b\xd2\x71\x02\x71\xa2\x5d\xdb\x09\x36\xe0\x7f\x4d\x23\x19\x29\x6c\x1b\x64\x54\xc5\x9c\x7b\x5d\x85\x4d\xcd\x11\x7a\x41\x51\xfe\x8d\xc3\xb1\x04\x16\x28\x6b\x9c\x53\xa5\xb9\xdb\xaa\x9a\x73\xaa\x09\x39\xb6\x5c\x84\xb1\x35\x18\x27\xd1\x50\xf7\x48\xa9\xba\x3a\xec\xaf\xb6\x33\x1b\x87\x09\x08\xe4\x1a\x89\x9b\xfc\xd4\xe6\x49\xc2\x7c\xce\x4a\xca\xe2\x25\xb9\x99\x7c\xda\xb3\x68\x9a\x2c\x33\xbd\x61\x91\xd9\x3c\x47\x2d\xaa\xe2\xa3\x49\x4f\x53\x43\x9a\x86\x68\x3c\xc0\x5d\xa4\x5a\x0b\x44\x73\x9a\x85\x54\xb0\x9b\x19\xe2\x07\xa7\xfe\x63\x2d\x91\xfb\xe5\xc2\xda\x57\x59\x81\x0c\x53\x8e\x5e\x7d\xbe\xae\xa5\x0b\x4a\x9b\x5a\x8c\x67\x54\xd6\xfc\xb4\xea\x08\xbb\xa6\x0a\x8c\x40\xaf\x63\x61\x5f\x0f\xd4\x31\xf2\x07\x4e\x66\x20\x19\x85\x79\x05\x68\xc6\xec\x80\x7c\xd3\x90\x55\x39\xc0\x0c\x3b\xa8\xf5\xc3\x87\x01\xd0\x8e\xaf\x55\x86\x70\x00\x78\x85\xcf\x8a\xa0\x0d\x83\xaf\x6b\xa9\x4d\xc0\xd1\xcd\x7a\x4b\x31\x30\x30\xc1\xa7\x08\xaa\xe8\x04\xdb\xa8\x60\x13\x02\x3f\xe8\xac\x42\x5c\x9c\xad\x75\x37\xcd\x1f\x6c\xe7\x69\x52\x74\x23\x9b\x51\x73\x96\x93\x3d\xc3\x26\xe7\x6b\x95\xad\x5a\x4e\x4d\xbf\x60\xdb\x26\x8d\x50\xcc\x0d\xc1\x37\x0a\xa1\x88\x0e\x91\xac\x42\x93\x13\xf8\x76\xd8\xf7\xb4\x96\x3b\x1b\x48\xfe\x17\xc0\xb5\x18\x12\x4a\xf3\x28\xf0\x50\xc9\x81\x2c\x97\xe1\x6b\x5c\x7a\x30\x26\x9a\xd2\xbe\x22\xbd\x2f\x10\x07\x1f\xd0\x4b\x48\xe3\xb7\xb7\xf6\x99\x59\xc6\xbb\x6a\xba\x7e\x29\x59\x3f\x88\x1b\x2d\x0e\xc7\xe3\x24\xa6\x6e\x83\x46\x86\xcc\x06\xb8\x75\xdb\xe4\xb9\xf1\xac\x23\x4e\xb2\x70\x9f\x67\x65\xf4\xab\xa2\x9f\xf4\xf2\x24\xc5\xd4\x61\x48\x58\x7e\x99\x6f\x9a\x45\x58\xcd\xab\x36\x87\x37\x86\x8a\xe9\x3b\x13\xd5\xf0\xf5\x4e\x2d\xbf\x39\x37\xd7\x8e\xac\xc9\x9c\x1b\x84\x53\x5d\x8b\xa4\x5f\xab\x25\x77\xff\x51\x3b\x59\xa3\x60\x78\x8b\x20\x6c\x5b\xe7\x9c\xba\x04\xc0\x01\xe1\xaa\x65\xe1\xa5\x26\x16\xf0\xed\x47\x11\x61\x91\xe2\x55\x9b\x66\x61\x12\x63\x49\xe3\x98\xfe\x8f\xaa\xe7\xfe\x3f\x2a\xce\x1b\xb3\xbc\x9c\xda\x65\xc2\x60\xfa\x3f\x98\xea\xa8\x4f\x4e\x6d\xf8\x51\xcc\xc2\x68\xd5\xa6\x40\xd1\x54\x34\xea\x44\x9b\xb3\xfc\x0e\xc1\xd2\xd2\xba\xe4\x7f\xa8\xa5\x96\x7e\xb5\x3d\x32\x71\x31\x30\x3d\x88\x33\xb7\x14\xdd\xc5\x95\x89\xaa\x15\x05\x4f\x2a\x92\x2d\x6a\x8d\x4c\xc0\x41\x86\x50\x01\xd6\x86\xaf\x3d\xcf\x81\xcd\xec\xa8\x1b\xd9\x69\xb5\x73\x36\x55\x82\x98\xdb\x95\x9d\x86\xbd\xcb\x5e\x4c\x6f\x3c\xa9\xa9\xae\x07\x85\xcc\xa5\xb8\x6b\x80\xbc\xf0\x75\x13\xbd\xc4\xb8\x18\x09\xdf\x93\x98\x8f\x96\xe2\x0f\xda\xbe\xfc\x3f\xdf\x0e\x63\xfb\xca\x38\x0a\x7b\xa6\x5b\x4e\xf3\xaf\x7f\xc9\xd1\xf4\x7b\xa1\xf3\x33\x0e\xe6\x69\x7a\xbd\x64\x34\x36\x71\x68\xfb\x33\x9e\xed\xfa\x82\xae\xe3\x3f\xd2\x51\xae\x29\x4c\x00\x1c\x0b\x30\xee\x4a\x7a\xd7\x7b\xb4\x79\x4a\x64\xce\x4f\xd2\x90\x08\x51\x28\x0d\x1c\x5e\x13\x3d\xb2\x0e\xf3\xba\xb0\xc0\x67\x38\xc4\x39\x71\xfa\xef\xdd\x50\x85\x1c\x08\x08\x22\x48\xbe\x4b\xd6\x45\x80\x9d\x88\xf8\xf0\x38\x47\x2b\x7c\x45\x48\x2b\x60\xb3\x7f\x14\x28\x95\x5e\xce\x08\xc3\x23\xfd\x2d\x64\xb5\x10\x8c\xdf\x0c\x94\xd4\xce\x26\x65\x5d\xa5\xf8\x4f\xc3\x21\xaa\x57\xa5\xd7\x2b\x2d\xa5\x2a\xe5\x61\x63\x13\xe5\xeb\x33\xbe\x91\x71\x27\x16\x3d\x92\x32\xb7\x74\x47\x95\x10\x34\x23\x67\x7a\x62\x52\x51\xc7\xdb\x2e\x54\xb0\xb0\xb0\xbf\xdc\xb9\xe1\x28\xec\x13\x21\x6a\x4b\xa9\x43\x7f\xac\x1c\xf4\x8f\x27\x4f\xf9\x8a\x52\x48\x51\x45\xdc\xb3\xd9\xb4\xda\x79\x0c\xb5\xc7\xf1\x79\x04\xd8\x09\x54\x66\xae\xd1\x16\x81\xe9\xba\x5c\x2b\x04\xef\x5b\x6c\x97\x96\x43\xf9\xfb\x95\xbe\x83\x19\x4a\x76\x0a\x89\x8e\xf2\x4f\x4e\x2b\x7b\x69\xd2\xe5\xc2\x66\x53\x5e\x0a\xed\x06\x25\x29\xb0\xd3\x3e\x40\x5e\x40\xa2\x3c\x89\xb9\x1d\x07\xb9\x73\xe8\x91\x0a\x41\x9a\xe2\x9a\x46\xa4\xc2\x63\x70\xec\xbe\xe5\xe2\x41\xd8\x73\x2d\x50\x14\x10\xbf\x42\x5d\x30\x52\x80\xf5\x21\x9b\x19\x0c\xc2\xbe\x59\x0d\xf3\x8c\xd0\x74\xc8\xce\x31\x09\xb5\x14\xd4\xe8\x6b\x50\x06\xd7\x94\x6b\x97\xf1\x63\xbc\xd2\x9a\x30\x59\x2b\x71\x02\xef\xdf\x55\xe7\x8f\xe0\x33\x7c\x53\xb3\xfa\xfb\x67\xdb\x3d\x33\x0e\x73\x26\x90\x70\x69\x18\xd7\xb2\x7c\x5e\xad\x3b\x32\xe9\x49\x0c\x9b\x82\x73\x84\x5d\x3e\xbe\x69\xea\xa7\x5f\x33\xe9\xc8\x2d\x25\x2c\x87\x7b\x81\x6f\x6e\xba\xa7\x12\xc8\xa9\x5d\x0d\xed\x5a\xcb\x17\xeb\x4e\x68\xcd\xc0\x13\x81\xf7\xd2\xfb\xc9\x5a\xbc\x8c\xbd\x8f\xa7\xc1\x9f\xdc\x9f\xf8\xcf\xde\x57\xd6\xd7\xd8\x34\xc9\xc6\xa6\x27\x24\xb0\xe2\xbc\xe8\x3c\x90\xa6\x52\x3a\xe7\x50\x0c\x83\x24\x5a\x99\x2e\x27\x52\x41\x08\x0e\xf0\xc2\xbc\xad\x94\x84\x98\xce\x52\x3a\x13\x1b\x3b\x38\xd8\x58\xe9\xb4\xfa\xbb\x4a\xbd\xf8\x9b\x30\x5c\xa2\x52\xd6\xd4\x4a\x54\x1a\xd0\xc8\x3a\x50\x21\xb3\x77\xc1\x17\x10\x2a\xaf\x27\x55\x72\x20\x8a\xd6\xd7\x92\xa4\xff\x50\x39\x2a\x4e\x99\xc1\x11\x91\xb7\x60\xf8\x5c\xf3\xa8\x87\x66\xff\x25\x96\x23\xcc\x20\x18\x02\x50\xb9\xe1\xa6\x10\xa4\x04\x2f\x04\x3e\xd7\xdc\xea\xf8\xc9\x49\x8a\x5c\xc0\xbe\x44\xb5\x8d\xb4\xc5\xf7\xc8\x9a\xc2\x46\x5f\xc6\xf9\x0a\x90\xe8\xc5\xc0\xb3\x5d\x72\xd7\x06\x3c\xf0\xbb\x6c\x73\x19\x09\x44\x8b\x12\x87\x06\x20\xaf\xea\x00\x99\xe7\xd2\xc1\x2e\x00\x22\x50\x4c\xda\x49\xd5\x45\xfe\x45\x4d\xcc\x7c\xd6\x65\xda\x56\xc3\xd5\xb0\x8f\xe4\xc9\x4b\x15\x42\x1c\x71\xff\x3e\xa9\x84\xf6\xba\x26\x32\x30\x73\xe5\x04\xb2\xf2\x14\x52\x86\x40\xd2\x21\x87\x21\x92\x54\x64\xe1\xf9\x1f\x14\xa8\x6d\x58\x2c\x5b\x54\x88\x51\xbb\xe3\xa0\x07\x5b\x1f\x07\x2e\xd6\xc3\xe5\x89\x42\x56\xea\x82\xfc\x59\xe5\x74\x97\x87\x6a\x11\xe7\xd9\x5e\x1a\x04\xce\xf4\x22\x2d\x23\x15\x27\x9a\x57\x57\x8b\xd2\x02\x7d\xbe\x87\xf7\x34\x79\x9e\x58\x93\x7f\x0c\xcb\x2d\x82\x94\x2d\xc7\x94\x76\x08\x96\x93\xff\x4a\x0b\x79\x33\xd2\x4d\x6a\x78\x0f\xf2\x93\xd3\x62\x6c\x53\x04\xe1\x38\x47\xde\xd1\x24\x18\xef\xd4\x32\xa7\xfb\x00\x32\x4d\x47\xb6\x1f\x0a\x38\x95\x21\x91\x13\xdf\x3d\x71\x3b\x78\x4c\x4b\x2f\xf4\x86\x7b\x68\xac\xa4\xe1\x92\x1e\x53\xda\x32\xd5\x0e\xbb\x3d\x51\x14\x21\xbf\xc4\xc0\x20\x0a\x7c\x98\x7c\x00\x87\xf8\xd8\x27\x59\xbc\x87\x3b\x5e\x75\xf8\xe2\xc4\x17\x57\xa1\xb5\x00\x67\x60\xab\x51\xe0\x84\xd2\xbf\x09\xaa\x1b\xf2\xfb\xdf\xae\xaa\x35\xd3\x33\x23\xa5\x7b\xa9\x29\x72\xee\x99\x28\x92\x7d\x8f\xbd\x72\x09\x2f\xc0\x37\x81\x6f\x69\xce\x92\x68\xd5\x4e\x95\x5e\xf9\x6d\xd5\xf3\x0a\xd9\x25\xa4\xe3\x8f\xaa\x70\x3a\xb5\x91\x5d\x35\x71\x3e\xad\xe8\xf9\x2e\x57\xc0\x47\xbe\x27\xe9\x23\x1a\x0d\x91\xf2\xda\xeb\xd1\xec\xd9\xb4\xaf\xf4\x9e\xd2\x82\xa6\x3b\x37\xbc\x6e\x82\x79\xaa\xe3\xdb\x62\x77\x6e\x6c\x4f\x74\xed\x9f\xdd\xdf\x8e\x6c\x98\x15\xa9\x55\x39\xe4\xa3\x0a\xc8\x72\xb4\x8e\x04\x98\x6f\x9b\x28\xa2\x6c\xac\x48\xbb\xb6\x1c\x07\xf8\x79\xc5\xb5\x6c\x8a\x2c\x4f\x4d\x84\xd6\x81\x67\x25\xb1\xa9\xc2\x91\xe3\x2a\xe7\x98\xa7\x45\x6f\xc5\x22\x0e\xd4\x24\xdb\x92\x0b\x6a\xa8\x0c\x8e\x8a\xdc\xab\xcc\x8a\x80\x66\x6b\xf1\xc1\x62\x98\x73\x73\x44\x5d\x58\x8c\xc9\x69\xda\x3a\x3c\xf1\xd0\x15\x6e\xeb\x43\x82\xe6\xa4\xe2\xde\xd9\xd9\x69\xa0\x52\xff\x5c\xbb\x97\x16\x7d\x3c\x2c\x2c\xe2\xd5\xc0\x5b\xc7\xab\xaa\x9b\x3b\x4d\xa2\x68\x46\x61\x40\x8f\x50\x33\x8c\xf0\xd7\x3a\x5d\xeb\xd3\x17\xd0\x27\xee\xf0\xd7\x0b\x0b\xdc\x8a\xf1\x9e\xae\x28\x8b\x1a\xef\xb4\x17\x20\xff\x26\x4a\xf9\xac\x2d\xa2\x04\x37\xae\x07\x0a\xc1\xf4\x4d\xa5\x18\x51\x44\xe1\x94\xea\xb8\xda\xd1\xf1\x05\xa4\x3b\xda\x5d\x6f\x64\x6f\xe8\x86\x49\xd6\x0b\xc9\xf3\x9c\xd2\x48\x45\x26\x24\x10\x5d\x06\xfa\x69\x84\x0e\xef\xd7\x32\x28\xbf\xda\xee\xa6\x49\xdc\xe3\x84\x1c\x76\xc7\x6d\x2d\x52\x87\x99\x67\xdd\x5d\xd5\x10\x97\x99\xcc\x76\x13\xae\x03\xb9\x7c\x99\x4a\x9e\x35\xd0\xe3\xb6\xad\xc9\xc8\x8a\x6d\xdd\x2d\xbf\x75\xeb\xae\xae\x6f\x84\x69\xb7\xc8\xa6\x14\xed\xec\x59\xe5\x27\xdf\xd6\x10\xb7\x8f\x15\xbd\x61\x7f\x5d\x88\x4a\x90\x05\x19\xe2\xd9\x31\x77\x37\x15\x55\xd7\xcd\x9a\x75\x5d\x58\x68\xdb\x57\xc6\x36\xee\x87\x79\x91\x4a\x32\x5e\x30\xb4\x7e\xd3\xd5\xe9\x5f\xf7\x2d\xb6\x7b\xeb\x3d\x5f\x30\x61\xf9\x69\x85\xc1\xbd\xe8\xd8\xdd\x62\x93\x17\xa9\xdb\x18\x15\x42\x27\xc9\x73\x78\x0d\x86\x74\x35\x8c\xc1\xc2\x2b\x2a\xd6\xf4\x87\x7c\xa3\xd4\x38\x73\xf3\xca\xd8\xac\x5b\x66\x83\x64\x81\x17\xe4\x8b\x61\x42\x35\xa3\xea\xcc\x86\xe7\x86\xe8\xa6\x89\xe9\xf7\x4c\xc6\x69\x4b\x0e\xb3\x68\xbf\x48\xc8\xe5\xc2\xd5\xf1\x38\xb5\xbd\xd0\xeb\x40\x0a\xab\xb4\xf2\xc1\x37\x6b\xe1\x0b\xe1\x7f\x0b\x38\xd3\x2e\x85\xe4\xd3\x49\x4d\x9c\x99\x79\x1a\x0e\x22\x34\x14\x0a\x53\x58\xcb\x31\xfa\xdf\x54\xb8\x88\xe3\x8e\x2b\x25\xb3\x79\xce\x92\x7d\x2a\xee\x03\x82\x4f\x94\x41\xb6\x3f\xd9\xc2\x42\xbb\x1f\x2e\xc3\x50\x4b\xab\x76\xcb\x29\x9b\x5f\xc7\x01\xc4\xff\x10\xa8\xdd\x70\xdd\x15\xbf\xb2\x51\x92\xe4\xc3\x68\x7d\xca\x77\xb4\xa1\x98\x85\x47\x85\x10\x07\x33\x49\xa9\xa6\x95\xd4\x96\xa7\x7e\x92\xa2\x11\x54\x62\x71\x05\x8a\xf9\x65\x0d\xba\xb6\x7f\xb6\xbd\x9c\x80\x63\x03\xaf\xb3\x89\x2c\x01\x33\x02\x06\x9a\x8d\xbc\x02\x21\x2c\xfa\x76\x2f\x3d\x3b\x0a\xfb\x17\x03\x5d\xa7\xbd\x3f\xf1\x38\x89\x7b\x98\x46\xee\x18\x82\x63\x23\x78\x26\xdf\x05\x3c\xdd\xf1\x68\x7e\xae\x24\x4a\x4e\x48\xb1\x91\x7f\xa8\x7b\x43\x6e\xe8\x18\xf0\x96\x3b\x23\x23\x13\xf7\x1f\xf6\x84\x2e\xb0\xea\xc8\xf3\x43\xbf\x0e\xb5\xb2\xc7\x3b\x4a\x02\x8d\xe9\x32\x60\x02\x6f\x04\x5e\xac\xf0\x7d\xfc\x3a\x6b\x13\x23\xb6\x86\x9b\x7b\x6e\x52\x51\x4b\x74\xd8\x0a\x82\xa4\xef\xa6\x7f\x73\x8c\x72\xe5\x57\xa0\x02\x71\x79\xa2\x79\x73\x6e\x29\xc2\xb1\xfb\x93\x1a\x0e\x18\x01\xf1\xff\x0f\xa4\xbd\x42\x1f\xd2\x90\x4c\xca\xc2\x48\xb8\xaf\xf5\xc7\x85\x73\xcf\x77\x7c\x5c\xd1\xd5\x2b\xaa\x74\xb1\x19\x74\xd4\x9d\xae\x50\xf3\x27\x8a\x24\xfd\x8f\x9a\xe2\x5f\x30\x66\x33\x8a\x44\x80\x1e\x8a\xbb\x17\x10\x4c\x19\x1e\x9f\x47\xea\xa6\xa1\x1d\x90\x91\x12\x4c\xcc\x77\xc8\xd5\xe1\xeb\x4a\x16\xbd\x1b\xd9\xcf\x2a\xf1\x80\x1f\x60\x96\x18\x0e\x85\xc0\x06\xfe\x07\x89\x3e\x6d\x7d\x4c\x60\x09\x58\xee\x29\x26\x50\x81\xad\xfe\xfe\x44\x75\xf4\x31\xc1\x31\x82\x07\x50\xc9\x02\xc1\x82\x2d\x06\xc0\xe7\xc7\xd8\x98\x68\xc8\x78\x3b\xf0\x12\x2f\xac\x9d\x81\x64\x42\x1b\xb1\x28\x67\x5b\x94\x43\xb4\x87\x3a\x9d\xf0\x4e\x6f\x06\xad\x5f\x3b\xe0\xd5\xc8\x4b\xa3\xcb\x54\x24\x94\x8d\xc2\x13\xb6\x36\x7c\x1f\xe6\x1b\x08\x24\xe0\x20\x3e\x04\x35\x21\xbc\xf4\x27\x81\x09\x67\x01\x15\x14\xc4\x00\xad\xfe\x1f\x40\x05\x03\x3c\xcc\xa3\x9d\xd6\x73\xf3\xae\x99\xc4\x67\x6b\x22\x62\xed\x98\xf1\xf2\x1b\x9b\x94\x5f\x81\xff\xf8\xbd\x89\x6a\x0d\x0a\x54\xcb\x90\xd2\x80\xbe\xac\x4a\xdc\x6b\x26\x4d\x4d\x9c\xef\x52\x9c\x46\xe7\x82\x9d\x9f\xab\xd0\xd4\xc0\xa4\x5c\x9b\x78\x8f\x87\x11\xdb\x80\xec\x9e\x98\xf8\x9c\xea\x55\x15\x5b\x2c\x17\x26\x85\xaa\x2b\xeb\x0c\x06\x2a\xf0\xfc\x58\xf9\x9a\x23\x33\x1a\x95\xae\x26\x27\x4a\xe0\x46\xbf\x8e\x9d\xc4\x37\xce\xa6\xf6\xed\xb8\xc8\x43\xe7\xc0\x28\x9f\xc5\x89\xb9\xe2\xb4\x44\x08\x36\x56\xee\x9c\x35\x69\x34\x43\x5f\x0a\x14\xf1\xfd\x4a\xad\x82\x7e\x5a\x9f\x40\x9c\x89\xd3\x90\x8c\xeb\x2e\xe9\x9c\xf4\xfb\x44\x85\x85\x40\x58\x52\xd2\xf4\x14\x92\xab\xde\x7e\x72\x3d\xfd\x34\x29\x4d\xf7\x20\xf3\x80\xf4\xc8\x7d\xdd\x61\x71\x5f\x4d\x8b\x19\xa4\x61\xcf\x00\xd2\xe6\xe0\x02\x4e\xb4\x5f\x6b\xc5\x3e\x5f\xe4\x33\x9a\x42\xfc\xcc\x44\x25\xc3\x40\xd1\x8b\xf9\x7b\x13\xbf\x05\x3b\x35\x4d\x0b\x15\x46\xf7\xc9\x4e\x03\xd0\x04\xc4\x28\xe4\xab\x2a\x38\xa7\x90\xae\x9d\xd3\x02\xe7\x9b\xaa\xff\x74\xb7\x82\x76\x8e\x4d\x64\x7a\x8c\xd8\x64\x09\x0e\x25\x20\xcb\x62\x04\xb2\x3a\x9b\xb2\xeb\x69\xd8\xb7\x94\x94\xd4\xfc\x23\xd8\x74\x48\x6e\x08\x6d\x56\x1d\x7a\xbe\xd8\xee\xda\x61\x18\xf7\xa7\xcb\x8f\x63\x97\xff\x62\xe2\x85\x41\x2e\xd1\xe1\x80\xad\x85\xdc\x88\xf4\x34\x3f\x5e\x49\xae\xad\x32\xdc\x91\xd5\x87\x68\xc1\x88\x12\x91\xe2\xee\xed\x25\x71\x32\x0a\x7b\x88\xa3\x85\x43\xb8\xfc\x5b\x38\xf0\x94\x64\x79\x96\x93\xb0\xf7\x35\x4e\x60\xa2\xc4\x09\x59\xdd\xcc\xa1\x09\x1c\x0c\x9e\x39\x2b\x58\x75\xb0\xa3\x8a\xd1\x27\xf9\x1c\xc2\x81\x5b\x67\x20\x5e\xda\xbf\xd4\x8e\x42\xc7\xab\x27\x1f\x52\x1c\x35\x27\x55\x5f\xdd\x20\xb5\x0c\xa2\x11\x92\xad\xf2\x19\x84\x7c\xcb\x67\x1d\x87\xb6\xbf\x8c\xa4\xce\x92\x67\xef\x5d\x5c\x3c\xb0\x45\x2d\xce\x5b\x1f\x2b\x57\xf2\x88\xca\x29\x76\x6d\x3e\x8c\xec\xd0\x8e\xa6\x94\xd4\x11\xb0\x91\x8e\x57\xc3\xd1\x35\x1f\xaf\x28\x6d\x75\x8b\x30\x62\xe6\x11\x18\x69\xc8\x97\xc2\xce\x1e\x9d\x28\x8d\xdf\xcb\x35\x80\xd0\xc1\xe7\x89\xb5\xee\x55\xca\x91\x3b\x6e\xf7\x0f\x27\x9a\xf9\xef\x84\x06\xec\xfc\x17\xec\x13\xd4\x8b\xae\xd4\x6a\x91\x73\x73\xed\x2c\x37\xdd\x30\x0a\x5f\x45\xfb\x04\x12\x12\x97\x75\x4f\x21\xfa\x0c\xe0\xaf\xd7\xd9\xf0\xe6\xe6\xda\x49\x91\x9b\x65\x99\x16\xc4\x1b\xbf\x1f\x28\x2c\xc7\xef\x4f\x3e\x55\x97\x83\x78\x61\xf6\xa5\x99\x72\x09\x23\x77\xfe\x5d\x05\x1f\xfa\x2e\x0e\x46\x64\x5a\x5e\x53\x38\xf9\x9b\x6a\x9c\xee\x6a\xbe\xb3\x34\x19\x27\xb1\x8d\x59\x9f\x93\x15\xef\x74\xbb\xe8\xf4\x86\xdf\x09\x2b\x61\x3c\x48\xa2\x95\x56\x15\x79\x48\x47\xa0\xe4\x42\x1b\x75\x97\x68\xff\x4c\xd5\x74\xb6\x91\x41\x03\x1e\x07\xa7\xe3\x5f\xa9\x86\xc7\x21\x01\x7f\xc1\x8a\x41\x13\xa6\xc2\x08\x69\x9a\xa3\xc1\x5e\xdc\x42\x53\x2e\xf3\xef\x2a\x61\x01\x13\x76\x93\x34\x16\x82\x06\x04\x38\x1c\xd6\xf2\x4d\xf0\x37\x7d\x57\x46\x68\xf3\xe1\x7a\x94\xe5\x61\xd4\xb5\x59\x9e\x26\x88\x45\xe0\xd8\xbf\x1d\x78\xef\xff\x6d\x67\xfc\xb3\x64\x64\xf3\x70\x64\x77\xe1\x07\x70\x50\x9c\xf7\x14\x66\x2b\x4f\x6e\xa8\x2a\x22\xf2\xa3\x74\xf2\xf6\xd8\xd3\x80\xef\x7a\x89\x52\x18\x92\x60\x7a\x5c\xb3\x85\x45\xa3\xd2\xf6\xcf\xcd\xb1\xdd\xbc\x49\x19\x5f\xbe\xae\x25\xcc\x16\x16\xda\x61\x3c\x88\x8a\x32\xb0\x6f\xa9\xde\x6a\xd8\x4b\xe1\x6d\xaf\x63\x63\x96\x28\xbc\xe6\x23\x0c\x59\xb1\x9f\xc1\x5f\xe2\x9b\xda\xac\xce\x1f\x6c\x27\x63\x1b\xbb\x9c\x3c\xec\xef\x5e\xf2\xc7\xe1\x4f\x43\x0f\x94\xe1\xb0\x3a\x5a\xef\x13\x0c\xe4\x41\x51\x5e\x03\xcb\x86\xe9\xaf\x86\xee\xe9\x04\x48\x4d\x4f\x27\x48\x6a\x7f\x5a\xf6\x89\x6d\x00\x8c\x91\x2c\x67\x47\xee\x0e\xf2\x9d\x1b\xd8\x1d\x92\xd1\xf5\x90\xad\xef\x4d\xbc\x00\xc1\x45\x45\x66\x7f\x33\x50\xca\x26\xe7\x2a\xa2\x09\x81\x07\xa0\x1f\x9d\x54\x7a\xf3\xa0\x25\xd3\xf2\x0b\x9c\x6b\x31\x7c\xe3\x1c\x98\x35\x1b\xf5\x92\x91\xed\xd3\xc6\x13\x12\x09\x55\x13\x3b\xbf\x9d\xc0\xfb\x85\xd9\xa5\xf6\x8b\xf3\x07\x1f\x23\xcc\xb2\xa0\xa6\x15\x6e\x17\xfd\x76\xf0\xad\x4f\x90\x1f\x2c\x7a\x43\xf4\xfb\x72\x5c\xd1\x18\x08\x63\xa1\x87\x5d\x7d\xa4\x70\xe6\x3f\xc5\x71\x04\x27\x11\x52\x24\x98\xd5\xc3\x81\x5a\x23\x47\x74\x88\x03\x41\x04\x38\x69\x3b\x3b\xaa\x1d\xf3\x4f\xd5\xf4\xac\x86\x59\x98\x33\x43\x1f\xb2\x06\x7f\x4e\xe3\x88\xb0\xe2\x0d\xd5\xc9\x7c\x36\x50\x6c\x5d\x75\x2d\xf3\xfd\xb3\xed\xc8\x84\x9c\x5e\x80\xfb\x7c\x4a\x51\xe4\x9d\xaa\xa9\x21\x95\x66\x93\x18\x9d\x53\x16\xc7\x57\xb8\x07\x24\x33\xf9\x5a\x25\xaa\x46\x26\xcb\x21\x2b\x28\x45\xf1\x5f\xd0\x13\xba\x36\x7a\x4f\xb0\x78\xaf\x82\x4a\x6a\x39\x16\x0d\xd0\xa4\xc8\x42\xf7\x1e\xe8\xd3\xff\xfc\x9f\x72\xaf\x18\x0a\x4a\x3b\x36\x3c\xc0\x66\x47\x67\x7b\x71\x79\x6e\xae\x3d\x0a\xb3\xd4\x8e\x53\x9b\x91\xa9\x56\xe7\x36\x2b\xf9\xf1\x8d\xe6\x86\x2f\xa2\xa8\x45\x4b\x05\x99\x44\xb4\x14\xf1\x75\x13\x31\x6b\xdf\x46\x40\xfa\xbd\x30\xcb\x16\x06\xe7\x30\x5f\x37\x88\x97\xb7\x33\xd3\x9f\x56\x9c\xc5\x1f\xc0\x19\x94\x12\xbe\xcf\x13\xa1\xc7\x4c\xca\xdb\x0d\x1e\x5e\x37\x4a\x12\x44\x08\xac\xe9\xac\x5a\x51\x3c\x84\xdc\x8c\x4c\x6e\x8b\x14\x21\x0a\x42\xd9\x9b\x13\xc5\x7b\xe5\x69\x35\xff\xe6\xe3\x1d\x9f\xb1\x00\xb8\x10\x26\xe0\x38\x01\x03\xf0\xf7\x3f\x55\xa9\x96\x61\x12\xf5\x93\x55\x6a\x49\x70\xb9\xd3\xf3\xba\x77\xe4\xbc\xa2\x06\x1f\xdb\xb4\x67\xe3\xf2\xe0\x7e\xd8\x27\x20\x36\x39\x63\x82\x8d\x72\x55\xc7\x9e\x08\x31\xe1\x54\x60\xa6\x5d\x17\xb0\xd3\xeb\x3f\x1d\x28\xea\xbb\xab\xb4\x7b\x31\x57\xbf\x8d\x41\xe5\x4f\x77\x94\x3e\x4b\x64\xd2\xd1\x6e\xa5\xd8\x7e\x75\xa2\xa4\xd9\xae\x56\x8b\x7e\xfb\x16\x1d\x77\x26\x79\x68\x87\x95\x95\x43\xd6\x4c\x90\x0d\xde\x0d\x4c\xfa\xfd\x08\x50\x09\x01\x66\xfa\xc6\x8f\xe3\x13\xa5\x63\x3e\x99\x78\x24\xe3\x43\x1d\x65\x63\xaf\x57\xf5\xea\x62\xfb\x99\xd6\x8b\x4a\xb5\xd4\x99\x95\xbb\x8a\xd1\x75\x2f\x12\x39\x58\x51\x90\x41\x93\x24\x9d\xd2\xac\x9c\xa1\xde\x68\x3c\xcb\x34\x64\xbe\xb1\x05\xbe\x0e\xf7\x00\x88\x1f\x10\xfe\xe3\xfa\x67\x08\x33\xa4\x91\x41\xf7\x58\x00\x0a\xcd\x59\x28\x44\xe1\x9c\x75\xd8\x80\xa7\x83\x63\xec\x23\x98\x4e\x04\x0e\x8f\x03\xcb\x8a\x01\xbe\x0e\x54\x0b\x5c\xd2\x23\x8a\x61\x68\x06\x9d\xe5\xae\x11\x64\x6e\xce\x01\xe3\x29\xbe\x07\x1e\x9f\x49\xfb\x9d\xea\xe6\xc2\x82\xb0\x49\x6d\x51\xc3\x07\x5c\xe8\xaf\x35\xa7\x40\x6d\xdc\x5f\x07\x40\xd2\xf5\x0b\xf9\xde\xa1\x1a\xac\xe0\xf3\xed\x6e\x92\x0f\xad\xeb\x79\x66\x16\x21\x9c\x73\x42\x29\xf4\xa4\xea\xb4\x8b\xfb\x76\x14\x97\x87\xd4\xdc\x1c\x37\x03\xbd\x46\x83\xca\xd7\x6e\x6f\xf6\xed\xc0\x14\x51\x4e\x8e\x1a\xf2\x8b\x28\x80\x32\x33\x11\x7d\x06\xab\x05\xdb\x14\x1e\xc3\x19\x15\xbf\x8e\xe2\x90\x52\x19\xcc\xf3\x09\xf3\x8a\x4c\xdd\x5e\x45\x66\xde\xa2\x0d\x24\xe9\x37\xdd\x59\xe8\x1a\xa2\xa2\x24\x73\x9e\x89\x80\x8b\x3c\x0a\x13\xe9\x76\x81\xd7\xd4\x44\x32\x0e\x94\x0e\xd1\x27\x69\x45\xc1\x47\xbc\x31\xf1\xd4\x3e\x6f\x2a\xd0\xfc\x8e\x4e\xb9\x80\x61\xdb\xdf\x0f\xfe\x3f\xc6\xfe\x2c\x48\x92\x2c\x3b\x0f\x83\xab\x3c\x32\xab\xaa\xab\xab\xf7\xee\x19\x62\xf0\xff\x62\xd0\x34\xe4\x40\xd4\xb0\x08\xc2\x28\xa3\x09\x2f\x1e\xcc\x2a\xcc\xa0\xd2\x30\xd9\x69\x59\x85\x6a\xa8\x8c\x0f\x7d\xc3\xe3\x66\x84\x77\x7a\xb8\xc7\xb8\x7b\x64\x76\xb6\xe9\x41\x0f\x92\x1e\x68\x12\x0d\xa2\xa0\x95\x26\x13\x61\x84\xcc\x00\x09\xc4\x26\x80\x30\x0c\x00\x46\x0c\x30\x18\xcc\xd6\x33\xbd\xef\x4b\xed\xfb\xbe\x57\x56\x55\xb6\xcc\xcf\x77\xce\xbd\x27\x32\xbc\x61\x7c\x69\x73\xef\xca\xcc\xf0\x70\xbf\x7e\xee\x39\xdf\xf9\xce\xf7\x29\x02\xcf\x59\xd0\x9a\x54\x6b\x43\x08\xcb\x7f\x88\x75\x82\xf4\xfc\xb4\x92\x8c\xbc\x89\x7d\x15\x4b\xf0\xfd\xd0\x17\x86\x9f\x86\xca\x6f\x63\x03\x6b\x1b\x91\xef\x38\x2d\x0d\xf1\x2a\x09\x7e\xe1\x57\x9c\x02\x92\x02\x57\x4e\x62\x65\xe1\x03\xb5\xc4\xd1\x26\x65\x3c\xd8\xba\xdf\x55\x3a\x61\x65\xcf\x9a\x92\x05\x21\x17\xf8\xaa\x8f\x8e\xfc\x1d\x3f\xaa\xc5\x1f\xac\x01\x3f\xa5\xfa\x82\xd8\x14\x1b\x5a\x1a\xbf\x31\xd5\x74\x5b\x58\x68\xf6\x86\x69\xc7\xad\x3e\xe4\x2a\xef\x13\x9e\xc4\xc7\x6a\xf0\xb9\x6b\x86\x49\x86\xd4\xaf\x7a\x1a\xce\x13\xa3\xfa\x46\x7c\xf2\xb9\xb3\xab\x83\x38\xe9\xe6\x71\x1f\x8e\x2a\xb2\x3d\x28\x33\x72\x26\xad\x00\xd1\xb8\x17\x2a\xa1\xb4\x81\xb5\x1d\x52\xef\xf1\xba\x5a\x57\x54\x82\x70\x13\xb7\x57\x26\x70\x7d\xa2\xf9\xbe\x32\xdf\xbb\x58\x33\x9d\xe2\xd9\xd7\xf4\x97\xf1\x83\xef\x21\x85\xe2\x93\x3a\x03\xff\x9e\x19\x0c\x98\xa5\xcc\x3a\xe1\x23\xaf\xfa\x70\x2e\x7c\xd6\x5d\xb8\xe9\xb7\xab\x2a\x8b\x72\x7f\x1f\x8e\xdf\x0b\x35\x67\xc0\x97\xee\x84\x9e\xad\x37\x34\x1f\xa9\xfa\x92\x9b\x47\x95\x7e\xd6\xed\x1a\x51\xde\xc5\x26\xb1\x26\x72\x0f\xbc\xe1\x75\xbd\xa5\xd3\x90\xf3\x93\x09\xe7\xe7\x49\x2b\x75\xe3\x55\x2a\x9c\x37\x81\x2f\x20\x3a\x7c\xaa\xfb\x03\xd7\x6b\x64\x42\xf6\x37\xe3\x34\x4a\x86\xce\x09\x9c\xe7\xb7\xe8\x4f\xc8\x2c\x97\xaf\x00\x87\x55\x0a\x27\x3f\x2a\x3e\xe6\x6a\x1e\xf2\xc2\x54\x26\xf4\xe2\x8b\xcd\x76\x42\x0b\xbb\xa1\x34\x20\xc1\xe6\xc5\x7e\x83\xb1\x03\xc0\x5c\x1f\xfb\xf9\xb6\x41\x62\x8a\x1e\xe6\xd4\xd9\x99\x96\x7e\x47\x5c\x6a\xbd\x2c\xdd\xc0\xe6\xab\x71\x91\x01\x61\x41\x4c\x62\x6d\x2b\x3e\x99\x5a\x3d\x5f\x6d\x76\x6c\x01\xd1\x54\x10\x21\x10\xa9\x41\x4b\x45\x64\x02\x3e\x2f\x56\x21\x4a\xa5\x3d\x37\x7d\x24\x35\xd2\xa2\xf5\xad\xab\x8d\xa9\x54\xec\xab\xcd\x92\x04\x61\xf1\xc6\x39\x4f\x5d\x37\x26\xf1\x66\xb8\xc5\x9d\x72\x69\xb1\xb9\xb8\xb4\x18\x28\xe2\x0f\x6d\xe5\x92\xf1\x4a\xad\x63\x3a\xab\x26\x8d\x6c\x67\x07\x7d\x4d\xa9\x44\x95\x05\xc9\x9e\xb1\x9f\xef\x7f\xac\xa5\x36\x4d\x16\xfa\x71\x0a\x54\x4e\x17\xff\xb2\x16\x99\xcc\xd2\xe5\x38\xef\x03\x61\xc4\x3b\x7d\x07\x6f\xbb\x63\x51\x7a\x6d\xcf\x69\xe9\xa1\xc5\xa5\xc5\xe6\x5a\x2f\x1e\x70\x62\xcd\x88\x29\x1e\x89\xc0\xa7\x5b\x7f\x67\x7e\xbe\x39\x30\x79\x6c\xd8\x21\xd5\xd5\x53\x4e\x04\xed\xd2\x14\x60\xb4\xff\x50\x33\xb7\x7d\x13\xfb\xb2\x19\x6b\xf0\xd1\x96\x47\x99\xa1\xe3\x82\xac\x79\xa3\x46\xdb\xa0\x19\xa7\x1d\xdb\x76\x9d\x55\xd7\x8e\xf4\xad\xc9\xa9\xc6\xea\xe1\xb9\x66\x64\x93\x24\xf0\xf6\x90\x97\x15\xed\xe6\x72\xdd\x65\x16\xe5\x70\x10\x77\x6c\x51\x06\x94\x8b\xb0\x30\x0e\xbd\x62\x22\x92\x53\xc3\xca\x58\xb5\x69\x87\x57\xb5\xdc\x82\xe0\x6b\x2f\xb8\x5b\xe3\x8b\xe4\xaa\x8e\x89\xf2\xb8\x6d\x95\x46\xe7\x25\xc5\x00\xab\x15\x35\x1f\x0e\x7a\x71\xf5\x2d\x96\xe6\x9c\xd9\x8b\x1f\x41\xfb\xab\xba\x0a\xd1\xac\xe5\xeb\x0c\xfd\x88\x23\x62\xf5\xdb\xe2\x94\xe8\xdf\x11\x42\x46\xb1\x34\x5d\x0e\x75\x78\x72\x41\x3b\xf5\x5b\xb7\xe5\x73\x2f\x5e\x1a\x2f\x48\x14\xf9\x4c\xcd\xa5\xac\xc5\x49\x27\x61\x05\x61\xd7\xa4\x71\xe0\xc7\x09\x65\x49\xd0\x20\x92\x94\x74\x79\x6a\x4d\xff\xb2\xbc\xec\x9a\x2e\x31\x94\xdc\x70\xba\x8f\x31\x17\xf5\xec\xdc\xa6\xd3\x48\x2c\xcc\xb2\xcd\x77\x54\xdf\x9c\xcd\x68\xe8\x57\x80\xb7\x6d\xa0\xb8\xc0\x3f\x3c\x03\xd8\x4f\xcf\x56\xe1\xe5\x7c\x48\xb7\x43\x02\xde\x93\xca\xf9\xcd\xac\x32\x97\xe1\x88\xd7\x0d\xf4\x1a\x82\xa3\x47\x3d\xb3\x31\xfd\x5b\x55\xc2\x41\x88\xc2\x7f\xfc\x4c\xab\x5a\x17\x78\xbf\x3f\xa0\xcd\x1f\xa9\xdd\x5f\x30\x16\x8b\x9b\x7d\x7c\xa4\xec\x11\x99\x0d\x85\x7c\xf9\x87\x94\x48\xbb\xd4\xe7\x80\x34\x39\x8e\xc2\xfe\x47\x1e\x30\x65\xd8\x13\x12\x5c\x48\x8a\xde\xc2\x9b\x2d\x33\x86\x94\x92\x61\x19\xed\x1c\xfb\x46\x3c\xea\x13\x64\x61\x70\xc5\xc1\x4e\x70\x4f\x27\xeb\x8d\x96\x92\xb6\x3b\x1d\xaa\xed\xf4\x71\x04\x31\x80\xc7\xb3\x04\x8c\x01\x4e\x81\x46\xae\x50\xdb\x43\x4f\x8c\xe3\x49\x6f\xe1\x91\x6c\xdd\x7b\x0f\x3d\xdf\x5c\xce\x72\x1b\x77\x53\x61\x6f\x88\x8a\x2c\xdd\x19\x56\xf8\x9a\x9c\x4a\xf5\xb6\x88\xff\x01\x93\xba\x5b\xdf\xb9\xa5\xb9\x66\xc7\xf6\x4d\x0a\x80\x8a\x05\xeb\x95\xfd\xf4\x9f\x4f\x45\x0e\xd9\xd8\xfb\xf1\x8a\x6d\x78\x47\xd6\xf7\x47\x0a\xe9\xf8\x38\xf4\xbe\xc4\xbf\x3b\x95\xbe\x1d\x9e\x5b\x68\xa6\x59\x6a\xcb\x1e\x0d\xe7\x06\x3e\xa5\xfa\xd7\x8a\x4e\xf9\xaf\x15\xb3\xda\x2e\x2f\x67\x79\x59\x00\x86\x10\x4a\x78\xf5\x6b\x7c\xac\x19\x0f\x7f\x8a\x15\xc5\x27\x8e\xca\x3a\x2c\x09\xc3\x0f\x3c\xa9\x1c\xad\x5f\x3e\xae\x8b\xc2\xed\x1c\x59\x62\xa0\x2a\xc2\x73\x6a\x54\xf9\x1c\x6a\xa8\x09\xba\x94\xa1\x5b\x02\x18\x42\xa7\x65\xfc\xda\xa2\x6f\x7c\x74\xea\xb9\xef\xdb\xd7\x6c\xdb\xd4\x2e\xc7\x64\xbe\xee\x87\x29\x59\xd4\x18\xeb\x10\x70\x24\x16\xfe\x09\x2d\x67\x6f\xf3\xd2\xc4\xe9\xa4\x32\xa3\xcf\xbc\xcf\xa9\x0e\xcd\xc7\xa8\xe8\xd1\x75\xe1\xd6\x3f\x8a\xd0\xab\x23\x55\x39\xdf\xe0\xca\x19\x8b\xf9\x2c\xde\x2b\x34\xc3\x37\xdc\x76\xdf\xaf\x72\x44\xb7\xcb\x61\xbf\xde\x54\x1c\x1b\x3d\xeb\x73\x46\x39\x7b\x75\x86\xd9\x8c\xfe\xf3\xec\x07\xc0\x7d\x77\x35\x84\x33\xc2\x25\x21\x70\xde\x9b\x5a\x88\xb4\x74\xb1\xc5\x4c\xe8\x9d\x4d\x90\xc1\x36\xa6\xd2\x5b\x1a\xab\xef\x66\xa5\xa2\x2e\x01\xcb\xba\xad\x80\xb0\xdb\x53\x9b\xd3\xcf\x93\xdf\xaf\x5b\x0d\x62\x77\x1b\x38\xb3\xc0\x69\x6d\x60\xf2\xa6\x68\xd3\x54\x4f\x04\xb6\x8e\xab\x09\x9d\xa1\x3e\x94\x8a\x01\xa4\xdc\x54\x50\x55\x3b\xcf\xa2\xde\x30\x67\x79\x1f\xc4\xa7\x3b\x4a\x97\x87\xb5\x03\xf8\x09\x2b\xba\x80\x4d\x48\xa2\x4a\x0b\xa7\x05\xa8\xd7\xf8\xa4\x25\x05\x74\x3b\xcb\xfa\x62\x48\xa0\x98\x95\x12\xc2\x78\xc0\x48\x1a\xb0\x35\x55\xde\xb2\x49\xc8\x39\x4f\xc1\xf4\x20\xe5\x21\x02\x7f\x84\xb5\x86\x77\xe1\x66\x6d\x47\x62\x90\x98\x94\x75\x1c\x50\xc2\x3f\xd6\xd2\x2d\x4e\x6e\xb1\x63\x17\x3b\xa9\x1d\x51\xb6\x8f\x6b\xbc\x47\xf2\xb8\x58\xc1\xfd\x92\xb5\x44\xbf\xee\x46\xc1\x1c\x75\xfc\xaa\x4a\x9d\x53\xd3\xb7\x9d\x47\xd4\x20\xd2\x69\xcd\x2e\xf8\x36\x3e\xd4\x39\xa5\xbb\x3d\xf5\x3b\x2a\xaa\x9e\xa0\xed\x10\xff\xff\x23\xda\xa9\xb0\x3b\x7c\x2f\xd4\x56\xc4\xf0\xc3\xe0\x7f\x51\x79\x52\x94\xf5\xdb\x94\x2d\x06\x6a\x50\x16\xf5\x9f\x54\x3d\x1e\x3e\xf9\x85\x83\x8b\x94\x7a\x89\x3b\x18\x5d\x1d\x9f\x7c\x6e\xa4\x6e\x9b\xf6\x3a\x41\x3b\x68\xac\xb3\x2b\x36\x9f\x4c\xb1\x75\x5f\xa0\xd4\x30\xce\xf3\xad\xc3\x97\xb4\x50\x84\x95\xe8\x99\xae\xb6\x9f\x95\x71\x96\x4a\xeb\x4f\x83\x85\x4e\xe1\xde\x19\xa3\x3f\x54\xc8\xe3\x32\x2c\xdf\x5d\x4f\xe6\xa6\x52\x7e\x78\x37\xf4\x2a\x33\xd3\x92\x21\xfb\xf6\x35\x5f\x4e\xfe\xd9\x3f\xec\x98\xd2\x44\x24\xa3\xb9\x34\xc7\x89\x02\xbf\x16\x7c\x32\x75\x47\x0e\x2c\x34\x97\xb3\xac\xac\x72\x4c\xee\xc6\xe2\x2e\x6c\xea\x5b\xb2\xe9\xd8\x99\xcc\xfd\x8e\xd6\xf1\xb3\xb2\x83\xfb\x07\x70\xd9\xe7\x5f\x3d\x6b\x99\x23\xae\xb5\x13\x90\xe8\xed\x68\x69\xed\x04\x25\x8e\x7c\x79\x7a\x64\xf9\xf9\x83\x04\x53\xd3\x3e\x85\xac\x08\x16\x99\x7c\xac\xd6\x82\xe9\x94\xca\x7c\x9c\xbf\xb9\xf4\xf9\x6b\x38\xd8\xb9\x2d\x6c\xbe\x2a\x31\x0f\x39\x0f\x3a\xeb\x7c\xac\xc4\xe1\xfb\x96\x94\xf5\x7a\xf1\x60\x46\x4d\xbb\x5e\x51\xd3\xae\xc8\x98\xd9\x0d\x84\xb2\x28\x71\x06\xf1\xfe\xb8\xa5\x69\x27\x59\xdc\x29\x94\xf1\xf2\x5b\xf4\x81\x7c\xac\x67\x55\x07\x26\x27\x55\x95\x02\xf1\x95\xf3\x53\xfa\x40\xc9\x55\xfd\x28\x7e\xcf\x44\x2b\x81\xc7\xb6\x30\x95\xc8\xc7\xca\xd9\xa3\x9b\x98\x6a\x3f\xa5\xbb\xa4\x0c\x77\x8f\xd4\x78\x49\xb4\x73\xb4\x45\x1c\x01\xec\x33\x4d\x58\xf9\x4c\x0d\xa8\x14\xe4\x1c\xb3\x34\xe7\x6c\x2c\xe8\x2f\x62\xb2\xe9\x04\x62\x87\xb0\x5f\xd5\x94\xf3\xa7\x23\x3f\xea\x73\x4f\x59\xee\x60\xe4\x57\x32\x17\xdf\x68\xb8\x51\x27\x74\x11\x65\x49\x96\xca\x17\x02\xf0\xa2\xf9\x6b\xb7\x94\x8c\x42\xd9\x8b\xed\x32\x0a\x7c\x91\xf0\x0b\x94\xb4\x9f\xc3\x33\x6c\x92\x38\xb1\x08\x91\x76\xd5\x9e\x94\xd3\xdc\xc5\xf9\x79\xe2\x84\xbf\xcc\x5b\x0c\x60\x52\x8e\x44\x7c\x32\x75\xed\x55\xac\xaf\xca\xc1\x21\xcf\xde\x21\xe9\x62\x25\x1a\x3e\xa9\xb3\x04\xb7\x9d\x35\x93\x77\xf8\xf2\x44\x0c\x92\x3e\x89\x4f\xb4\xf5\x02\x09\x64\x05\x4a\x14\x88\xbb\x66\x7c\x32\x95\xe1\x2d\xcd\x35\xed\xcb\x03\x93\x3a\x90\x09\x05\x12\xcf\x8d\xf0\x89\x92\x65\xeb\x9b\xb2\xcc\x2d\x0b\x2b\x3b\x8f\x8e\xea\x62\xf8\xc4\xdd\xd5\x6a\x79\x26\xe2\xf2\x2a\x13\x0e\x74\x2d\x32\xfa\x50\x33\xdb\x3d\x30\xa9\xe9\x9b\x34\x66\xf9\x34\xc4\xcb\x1b\x1a\xd3\xb8\x51\x03\x94\x7d\xbd\xba\x2c\x9b\xc7\xcc\x5c\xc2\x26\xb4\xa9\x8a\xbf\xcd\xba\x20\x58\xd8\x68\x48\x0a\x7e\xda\x81\xf3\xb8\x12\x2e\x38\xbe\x55\xc0\x7a\x7e\xbe\x79\xe8\xf9\x3d\x7e\x5a\xf8\xaa\x76\xfc\x04\xce\xcc\x7c\x4c\xdc\x74\x74\x49\x6f\x28\x72\xea\xb6\x96\xd7\x59\xb9\x30\x9a\xd0\xd8\xa8\xde\x26\x71\x8d\x08\x9c\x4f\xf7\x1b\x04\x2c\x08\x70\x80\xd2\xdb\xc5\xa1\x7d\x62\x4f\x77\xb3\x56\x89\x94\xe6\xeb\x11\x1e\xc5\xb5\x35\x70\x66\xb2\x97\xbd\x5a\x85\x1d\x2e\xa3\xcc\x72\x73\x2c\x5f\x7b\x81\x8f\xef\x28\x87\xcf\x4f\x47\x8f\x08\xc6\xb5\x77\xa7\xe3\xf1\xff\xed\x2f\xb5\xd4\x02\xbe\x42\xe3\x22\xb8\xc0\x13\x64\x18\x88\x56\x17\x5a\xa4\xa8\x18\xee\x69\xcf\xcd\xd9\xb1\x4e\x0f\x76\x8d\xb7\xae\x89\xaf\xbd\x50\xe5\x47\x91\x45\x54\xc4\xcf\x8a\xdc\x07\xfd\x19\x3e\x71\xcb\x2e\x37\x69\x97\xf3\xf1\x45\x37\xe3\x33\xc1\xbd\x56\x73\x43\xd3\x3c\xa5\xfd\xcd\xb6\xc9\x73\x9b\x70\x42\xe6\xa8\x7f\x9e\x1e\x0c\xb3\x34\x14\xee\x68\x37\xa2\x54\x1b\x6b\xaa\x30\x0c\xeb\x35\x95\x51\x8f\x98\x5c\x71\xf3\xee\x55\xc0\x4f\xb1\xc7\x30\xc8\xec\x1a\x11\x0b\x32\x5d\xc2\x4c\x6e\x10\xe8\xfd\x66\x6b\x92\xc4\x82\x2e\x0f\xb8\xe2\x18\x75\x52\xf9\x58\x0f\xe1\x90\xd1\x77\x9c\x76\xb9\xde\xe0\x59\xf5\xf0\x73\x33\x78\x85\x4a\x9f\x57\x52\xff\x45\xdc\x27\x76\xa4\x93\xe1\x7a\x53\x79\xd2\x5d\x46\xbb\xc7\x09\xb9\x79\x07\xce\x37\xeb\x50\xb7\x49\xf5\x3f\xa1\xfc\x55\x7f\x1a\x49\x26\x7c\x1b\x90\x58\xee\x9c\xa2\x6a\x7e\xb5\xb9\x16\x27\x09\x27\x8b\xd2\xd9\xc0\x5b\xc6\xc7\x53\x79\x36\xc5\x6b\x6c\x6e\x2a\xa5\xa4\x85\x2b\xb9\xa6\x4f\x46\xe3\x74\x35\x4b\x56\xb9\x33\x72\xc4\x95\xab\x3a\xfd\x51\x51\xe2\x5b\x2a\x4b\x3d\x36\xb1\x03\xd4\x78\xeb\x36\xab\x5a\x7f\xb6\x7a\x47\xb0\xb3\xec\xa2\x76\x1f\x36\xed\x59\xf0\xa5\x91\x87\xec\xa0\xdd\x5c\x26\xed\x08\xea\xc0\xc7\x6d\x1b\x6f\x15\xd8\xf8\x99\xe6\x4b\x7b\x57\x03\x0d\x17\xab\xb8\xe2\x4d\x84\xbb\x26\x5f\x47\x95\x2a\xd4\xdd\xc0\x39\xd0\xcc\x8e\x15\xe3\xf7\x51\xed\xbb\x66\x07\xc3\x92\x84\x8e\xb0\x3b\x00\x7e\xfb\x08\xbb\x03\x9f\x28\xad\xc3\xa2\x5c\x4f\x6c\x31\x43\xe8\x8e\x00\x84\xc1\x82\x82\x03\xe7\xe7\x85\x53\x12\xaa\xf6\xd9\xc9\x9a\x26\xd2\xc1\x66\x6e\x92\x24\x96\xda\x4c\x66\xb3\xe8\x2a\xd4\xbc\x87\x68\x32\xdc\x76\x01\xc0\xa6\xa6\x9d\x08\x89\x8a\x95\x21\x42\xa5\x3f\x75\x79\x42\xff\x2e\xb1\xe9\x2e\xbf\xd3\xbc\x4e\xef\x36\x03\x0d\xb4\xbc\x11\xcf\x99\xb2\x20\xaf\x20\x5d\xba\xdb\x2f\x0e\xcf\xc9\x4f\x31\xa8\x87\x98\xfc\x06\xed\x07\x40\x30\x6e\x69\xe2\x96\xe9\x13\x0f\xb2\xca\xb2\x50\xc6\x42\x8a\x8d\x8f\x1d\xb2\xb0\x9c\x25\x24\xf4\x43\x78\xa6\xb0\x8e\xa7\x9c\xdc\xd0\xb8\x3d\xa6\x9d\xe8\x9e\x6e\x29\xf7\xa2\x1b\xc8\xb4\x65\xba\x42\xa9\x08\x0d\xcb\x61\x6e\x77\xd0\x82\x10\xb9\x97\xea\x0f\xa2\x74\xf9\x49\xe8\x9b\x14\x37\xe9\xf2\xa4\xb1\x4f\xb7\x55\x94\xe9\xd4\x74\xea\x77\xa7\x72\xa4\xfd\x87\x9a\xdd\xdc\xda\x15\x7a\xe5\xf0\xed\xee\xe2\xd6\xf1\x49\x9d\x76\x95\x4d\x5f\xca\xd6\xf9\xe1\xa1\x82\xc6\xbc\x1f\x1f\x8f\x9f\x73\x99\x08\x74\x6e\xb1\x31\xcc\x2a\xad\x60\x06\x40\xb1\x96\xff\xf7\x91\xea\xee\x62\xda\xd0\x61\x9e\xae\xd3\x7b\x5b\x35\x45\xcb\x35\x6b\xc8\xc5\x07\x5b\xad\x93\x40\x57\xfe\x35\x7b\x7c\xd5\x1a\x63\x0a\xb5\xd6\x0f\xab\xc6\x94\xc3\xb4\xb3\x61\x49\xec\x6e\x30\x81\x21\xd5\xac\xa7\xfc\x45\x41\x40\x2f\x51\xd3\x65\x5b\x16\x40\xc2\x00\x4b\x9c\x9d\xd9\xd7\x5e\x70\xc7\x9e\xeb\xda\xb1\xfd\x2c\xca\x4d\x19\x47\xcc\xd7\x44\xf9\x7f\x4f\xb5\xf6\x1e\x60\x61\xa0\xbb\x7c\x54\xcd\x51\x72\x7f\xd3\x75\xd5\xfd\xec\xd8\xff\xa3\x68\x5d\xcb\x59\xd6\x79\xd4\x8b\x5c\x6f\x23\x92\x8a\x68\x0d\xe0\x33\x31\xf8\x81\xb8\x8c\x2d\x12\x89\x0d\x17\xc7\x88\xbe\xae\xd5\x5d\x85\x0c\x27\x64\x58\x3d\x33\xf0\x65\x1e\xa5\x84\x49\x5c\xf2\xe9\x62\xc0\x07\x64\x7d\x68\x19\x40\xad\xd9\x64\x06\xc3\x3c\xea\x99\x02\xfc\xee\xcd\xa3\x55\x22\xb5\x79\x54\xc9\xdc\xb7\xf7\x12\x4c\x89\x8a\xf4\xbe\x6a\x30\x5e\xd0\x22\x48\x33\x53\xdb\x4f\x95\xc7\x27\x71\x6a\x0b\xad\x83\x26\xb6\x9f\x7c\xa6\x9c\xd7\xaa\x42\xd6\xe6\xc5\xa3\x81\xd3\x62\xe5\x1e\x1d\x12\xe6\xc7\xa9\x17\x82\x4c\xf1\x4f\x34\xc6\x78\x5d\xf5\xa7\x1f\x81\x0a\x83\x8c\x2f\xd3\x37\x47\xc4\x42\x82\xe6\x28\xe9\xd5\x8d\x63\x97\x2f\x5a\x26\xb8\x3d\x8f\xa1\xa5\x20\x9a\x4a\x1e\xf7\x59\x4e\xcc\x5a\x81\xfe\xbf\x86\x2c\x50\xc4\xb2\x6c\x87\x34\xcf\xaa\xcf\x91\x1c\x9f\x36\x7b\xa9\x1f\xfd\xc6\x69\x87\x79\x36\xb0\x26\x45\x36\x29\x5a\x88\xb8\x31\x88\x60\x17\x42\xa5\x58\xf4\xd0\xfb\xba\x93\x7f\x49\xfc\x0a\x6b\x38\xaa\x79\x77\x36\x5f\xdd\xf9\x64\xcb\x37\x69\x6e\xe8\xa6\xfb\x43\xd5\xa5\x69\x0f\x93\xa4\xda\xaa\xb4\x0c\xcf\xcd\x50\x81\x21\x37\x47\x7b\x14\x7f\x15\x0e\x84\xce\xb9\xc7\x07\xcd\xf7\x95\x42\xef\x2d\x8a\x7e\xe0\xcc\xdf\xc3\xf3\x41\x8e\xf5\x36\xe5\x5b\xfc\x0f\x75\xd3\xf8\x6b\x59\xda\xb1\xf9\x8c\xf7\x3f\xbe\xa8\xa7\x1d\xb6\xa1\x9f\x22\x2e\x2a\x1e\xf2\x3f\x5a\xd7\xe0\xeb\x65\x03\xa0\xf6\x28\xf9\x8e\xe1\x2f\xf1\x89\x0a\x5f\xa9\x5d\xfb\xe6\xb0\xca\x3c\x29\x80\x3a\xf9\xdb\xea\xe9\x8b\xbe\x99\x2f\x8f\x57\xb2\x8e\x59\x51\x02\xf0\x5c\xbf\xf2\x89\x4b\x34\x4b\xf3\xb2\xf8\x9e\xe0\xb9\x05\x6a\x88\x93\xf5\x41\x90\xeb\xdd\xa7\xcd\x90\x8f\x6b\xa2\xfb\x62\x33\xcb\x3b\x3c\x6f\xe1\x72\x30\xad\x4c\xeb\x6c\x62\xed\x9a\xcc\x51\x89\xfa\xb4\x47\x34\x3f\x9c\x4c\xd5\x60\x7c\x47\xed\x02\xd0\x70\x7f\x73\xe4\x45\x25\x11\xb9\x91\xc5\x5f\xad\xed\x86\x77\xaa\x4d\x04\x45\x2a\x82\xef\xce\xb1\xda\x4b\x77\x4e\x99\x2e\x1e\x9e\xdb\xdf\xec\x66\x49\xa7\xe1\xd3\xcd\xa0\xe5\x1b\xba\xf7\x46\xca\x60\xe3\xf4\xa4\x75\x05\xef\x16\x42\x6e\xd1\x4c\x97\x1a\x25\xd2\xa5\x66\x3f\x8e\xf0\x1b\x80\xe3\xb9\x0a\xe1\x93\xf0\x99\xe9\xcd\xf3\x15\x7d\x67\x27\x34\x7f\x43\x25\x8d\x68\x57\x6d\x6e\x45\x0c\x96\x1d\xe9\x95\x26\xce\x8d\xd0\x13\xdd\x06\xae\xd4\xe7\x94\x4b\x75\x36\xae\x68\x13\xd2\xd2\xf4\x07\xcc\xa4\x42\xf4\xba\xaa\xfc\x78\xaf\x6a\x59\xf7\xc4\x94\xcb\x59\xde\x0f\x3c\xd9\xf2\x8f\x47\x1e\x18\xfc\xe3\xa9\x42\x96\xe4\x0b\x7b\x62\x28\x29\xb3\x5c\x3f\x44\x6c\x92\x81\x1a\x9f\x81\x9a\x22\xb1\x76\x10\xa8\x97\xf9\xf5\x91\xb2\xb7\x7f\x5d\x75\x8c\xf2\x61\x9a\xc6\x69\xf7\x91\xc0\x35\x45\xef\x29\x01\xfb\x0f\x91\x74\x03\x83\x87\x29\x27\xf8\x64\x3f\x52\x54\xd6\x27\x48\x3d\x86\xbe\xe5\x6f\x3c\xdd\x52\xf3\x61\x3c\xbf\xa4\x46\x6d\x16\x9d\x14\x64\xdd\x1c\xac\x35\x25\xc3\x10\xce\xaf\xcf\xc1\x9d\xda\xdc\x8f\x46\xd4\x62\xd1\x13\x47\xcc\x3e\xa1\x38\x45\xda\xdb\x32\x35\xab\x71\x17\x22\xa5\x6a\xe0\xf7\x07\x78\xe3\x50\x0c\xc3\x52\x1a\x3c\xd3\x06\x36\x54\x91\xdc\xf6\xf9\x1f\xa8\x00\x92\x9e\xfa\x14\x60\xc5\x9a\x14\x6a\x5e\x78\xcc\x0f\x10\x42\xa5\x08\x09\x9c\xbc\xd4\xab\x94\xa5\x88\xb9\xaa\x7f\x79\x57\xb2\xb4\x5b\xb4\x6d\xce\x75\x1c\x7b\x2e\xd2\x46\x23\xfe\x8b\x9e\x03\xdc\x23\xdf\x00\x35\xe1\x7d\x81\x3e\x81\x8f\xeb\x34\xab\x8a\x61\x51\x1a\x96\xc8\x47\xf0\x3b\x43\xf8\x23\x1f\xeb\x45\x99\x67\xed\xc4\xf6\x8b\x3d\x4a\xb4\xe7\x3e\x96\x0d\xb0\xc2\xf7\x46\x6a\x10\xeb\x54\xa8\x78\xb3\xef\x21\x21\x9e\x90\xaa\x91\x51\x92\xea\xc3\xb0\xec\x50\xe6\xe1\x18\x04\x51\xb1\x4a\xa9\xbe\x2c\xe8\x2c\x9f\xd0\x6d\xe6\xe3\x91\xa7\xe1\x3d\xa8\xe9\xca\x2e\x36\x07\x89\x35\x05\x03\x89\x80\x96\xce\x23\xa1\xe2\x13\xa5\xc4\xca\x1c\x94\x41\xb5\x12\xb0\x6e\x90\x0d\xce\x50\x18\xe7\xe3\xb1\x82\xbd\xe3\xa2\x88\xb3\x94\xcb\xc5\x05\x4e\x2f\x79\xf6\x98\x3b\x13\x13\x52\x7b\x35\x69\x7c\xd1\x33\x2b\x52\x83\x39\xe5\x4e\xa7\x54\x71\x51\xeb\x85\xc5\x69\x6c\x19\x2a\x11\x97\x1a\x3f\xde\x70\x41\xf9\x31\x54\x5f\xa3\x67\x3b\xc3\xc4\x76\x38\x3b\x77\x34\xd0\xc5\xa5\x45\xe7\x84\x59\x33\xd8\x99\x33\x02\xee\x22\x12\xac\xb6\x64\xb0\x79\x8f\xca\xd5\x30\x14\x80\xb4\xe9\xb4\x32\xe0\x3f\x5d\xf3\x14\xe0\xd1\xee\xba\xa1\x78\x03\x2f\xa8\xb7\xf1\xc2\xe7\x12\x02\xd7\xf7\xbe\xb4\x97\xbf\x84\x93\x60\xab\x96\xce\xe7\x49\xb0\x1d\x9e\x3b\xd2\x6c\x67\xc3\x6e\xaf\xc4\x33\x91\x99\x73\xcf\xf5\x3d\xaf\x7d\xde\x4f\x4d\x75\x8b\x48\x04\x26\x4e\x3b\xf1\x6a\xdc\x11\xab\x38\x24\xe8\x70\xed\xe0\xe3\xd1\x16\xd2\xdb\x0b\x4b\x73\xcd\x17\x5f\x9c\xf1\xd6\x4c\x6c\x6b\x29\x91\x49\xbd\x8f\x98\x4a\xc1\xcb\x73\xac\xba\xa7\xce\x22\xd2\x04\xca\x41\x8c\xf1\x6e\xf1\x02\xae\x2b\x1a\x87\xb6\x28\xe1\xfb\x87\x52\xe5\xa8\xea\xa1\x3f\x9c\x80\xfa\xbd\xc2\xe0\xc0\xe6\x51\x2f\xc9\x88\x37\x58\xfd\x34\x16\xed\x7d\x25\x7d\xc9\xd9\x8d\xf8\x59\xaa\xa1\xd7\xb8\x80\x6f\xab\x93\x30\xba\x80\x12\x48\x96\x60\x8d\x69\x52\x62\xf6\xd2\x8a\x45\x02\x70\x46\x53\x6c\xcf\x28\x3d\xb0\x6c\x50\xc6\x7d\xf2\x10\x99\xf1\x09\xde\x06\xee\x1a\x5e\xd4\xd3\x55\xb2\xb2\xb9\xbb\xe5\xd3\x94\x8b\x75\xa2\x30\xed\x2c\x99\x68\x59\x21\xaf\x11\xe5\xed\x3a\xa3\x3c\x53\xc0\x3c\x17\xe1\x98\xe7\x1c\x45\x93\x4e\x09\x81\x5d\x56\x6f\x18\xb1\x51\xf2\xc4\xa4\x1d\xa1\xbc\x3a\xf7\x07\x3f\xfa\x72\x4c\x3b\x8d\x5d\x54\xad\xcc\x97\xb2\x38\x2d\x77\xe2\xf7\x38\x19\x02\xc8\x08\x4c\x0f\xee\x1e\x6e\x02\xcb\x59\x37\x9d\x1f\x4d\xea\x9c\xfb\x7d\x93\x81\x62\x84\xc4\xef\xaa\xe1\xe3\xb2\x67\xca\xa8\x67\x73\xca\xdf\xc5\x2d\x50\x3b\x3c\x87\x9e\x3f\x71\x62\xa4\xdc\x0a\xdf\xc7\x17\x91\x8a\x5b\xe1\xaa\x77\xa7\x74\x2e\xab\x44\x2f\x89\xdb\x36\xaf\x0a\x13\xf7\x92\xb3\xff\x47\xe8\x43\xe7\xa5\x29\xcd\x53\x92\x24\x13\x83\x04\x01\xad\xd1\x56\xbd\xae\x7b\xac\xd7\x55\x1f\x33\xcf\x10\x02\x51\x81\x22\xc3\xe6\xe3\xf1\xd6\xbf\x4f\xef\x72\x6f\x98\xd3\xb8\xbc\xce\x10\x4f\x2a\xf2\xc6\x49\x97\x4c\x2f\xc7\xa9\xcd\xd7\x95\xd8\x3b\x90\x23\xc1\xe7\xa6\x99\xcf\x64\x10\x95\x75\x86\x91\xf4\x84\x80\x80\x32\x4d\x94\x4f\x1c\x1b\x78\xcd\x12\x23\xa4\xa1\xe4\xea\x50\x7b\xa2\xbb\xfb\x81\x76\xac\x1e\xe9\x46\x52\x6a\xba\x36\x2f\xe8\x19\xa2\xe4\x78\x0e\x19\x94\x63\x30\x3a\xdc\xe0\xbf\xa2\x9c\x00\xc1\x60\x63\xa4\xd4\xa9\xde\x46\x41\x06\x66\x48\x63\x5c\xd3\x3c\xeb\xc7\x9d\x35\xc1\xa0\xd8\x93\x56\x49\x6e\x5d\x70\x4d\x90\xc2\x89\xcf\xc8\xed\xa3\x8f\x91\xfb\xfa\xb4\x7a\xa5\x6d\xce\x86\x3a\x2e\x43\x0a\x80\xb8\x21\xc1\x02\xca\x24\x02\x4f\x75\x4d\x40\x96\xc5\x02\x87\x57\x79\x45\x09\x9a\xc1\x68\x88\xc8\x2c\xd6\x50\x7e\xa2\x0c\xc4\x70\xde\x61\x65\x6e\x8b\x16\xb7\x4c\x74\x4d\x0f\xb1\x2d\x34\x6d\x8a\xb8\xca\x40\xe6\xc8\x43\x8b\x90\x32\x41\x82\x73\x6d\x2a\x2a\x57\x49\xf8\x4a\x6a\xd7\xf0\x71\xd2\xb6\xa7\xe5\xc0\x27\xa1\xdf\x44\x23\x93\x53\x8f\x8c\x31\x27\xba\x1d\x40\x89\x66\x5a\xc1\xbe\x7d\x4e\x33\x8b\xae\x44\x9c\xea\x15\xae\x7b\x01\x4a\x3b\x68\x8f\x43\x5b\x4f\x6c\xe6\xe8\x13\x71\x8d\xa7\x89\x4d\xe9\xc8\xc8\xae\x9f\xfa\x90\xd2\x28\xd4\xee\xdc\x38\x44\x68\xb9\xee\x66\x99\xcb\x5e\x96\x57\x7b\x29\x3d\x41\x9d\xf9\x3b\xb1\x7c\xa7\xbf\x70\x72\x02\x89\xcb\xd6\xec\x8c\x9a\x0a\x85\xed\x94\x1b\x6b\xf1\x53\xc4\x97\x68\xbd\xf2\x3f\xd4\x4d\x14\xf7\x6d\xc7\xd9\x4a\xd5\x82\x87\x5b\xb7\xef\xfd\x87\x9a\x59\xde\x35\x69\xfc\x0a\xc0\xf8\x60\x41\x4d\xca\x54\xbf\xc8\x27\x75\x5e\xb3\x7d\x53\x96\x36\x9f\x55\xe3\x31\xa7\x55\x77\x69\x16\x2f\x9d\x34\x05\x03\xa7\x24\x75\x51\xab\xff\xfc\xa1\x4a\x92\x4c\x1a\xcd\xd0\x83\xc0\x1f\x83\xe3\xf2\xe6\x51\xb5\x80\x2e\x8d\xbc\x23\xd1\xa9\x29\x5c\x78\x61\xa1\xb9\x6e\x8d\xf4\xdb\xf1\xc1\xc7\xf1\xa4\xf8\x64\x6a\xc9\xef\xdb\xdf\xec\xdb\xae\x69\xaf\x8b\x8c\xb7\x00\xe7\xf4\x27\xa4\x34\xa9\xa1\x52\x47\xd9\x30\x97\xca\x4a\x86\x17\xd5\x20\xa3\x7b\xfd\xff\x66\xb7\x69\x0f\x1a\x25\x66\xed\x31\x7a\x53\x41\x68\xb8\x05\x24\xcc\xd9\x3c\x78\x66\xe6\x4f\x46\x4a\xff\xe2\x0a\x16\x2e\x02\xd8\x5d\x38\x31\xa1\xc2\x39\x87\x5c\x40\xb6\x4b\x4d\x52\xf5\x9d\xc5\x5f\x45\x8d\x81\xdd\x1e\x64\x5d\xfe\x6d\xc2\x5b\x64\xe7\xf4\x20\xc4\x36\x25\x64\xd0\x37\xfd\x7e\x56\xf6\x02\xe5\x87\xfb\x3d\x6c\xcb\x7c\xe2\x5e\x8b\x61\x1a\x65\xfd\x36\xd7\x14\xc8\x07\xaf\xa8\xdc\xf0\xca\x54\x5e\xb2\xff\x50\x33\xca\x3a\x56\x69\x75\x42\x07\x43\x14\xe8\xa4\xf3\x54\xac\x99\xc1\x0e\x8f\x0c\x61\xb2\x8c\x29\xc6\x7a\x32\x82\x83\xa0\x4c\x2a\xa9\x29\x6b\xe0\x97\x52\x98\xcb\x43\x8b\x72\x3b\x60\xc7\x04\xc7\x44\xf0\x33\xa2\x97\xc3\x67\xa5\xc1\xed\xb5\x66\x59\x63\x4e\xdc\x24\x03\x65\x20\x59\x53\xc5\x44\xbd\xac\xa8\x42\x66\xf5\xe1\xe2\xd7\xa5\x20\xd6\xbb\x13\x4c\x20\xc5\xb8\xc9\xcd\xaa\x94\x34\x60\x75\xbd\x46\xef\x15\x1f\x7b\xde\x49\xa4\x78\xca\x9c\x69\xa9\xb1\x8a\x3b\xca\x51\xa5\x6f\x6d\x39\xab\xaa\x8c\x7b\x6a\x0e\xa2\xd1\x0a\x96\xe4\x3d\x3d\x8b\xfb\x09\x86\x1f\x94\x70\xf8\x1f\xea\x46\x2a\x07\x99\xd7\x0b\x75\x0f\xdc\x3f\xfc\x89\xd8\x17\xe7\xeb\x33\x6a\xdc\x72\xa4\xd3\xad\x91\x92\x7e\x38\x41\x37\x45\x86\x08\x3e\x6f\x68\x6d\x39\xb7\x9d\x4e\x6c\x1b\xc1\x2f\x1d\xf4\x48\x9d\x1b\xd3\xbd\xac\x65\x7b\x3e\x9b\x2c\xd4\xfb\x03\x1a\xab\x3f\x20\x02\xdf\x9f\xaa\x36\xd8\xff\x40\x7b\x02\x1f\xd3\x7b\xc2\x3f\xa3\x14\x5f\xda\xb9\x49\x3b\x3b\xaa\x7d\x08\xe1\xeb\x13\x5c\x3c\x62\xc8\x55\x24\x8b\xe2\xa1\xa4\x3a\xbe\x9f\x84\x81\x76\x5a\xaa\xbe\x3c\xff\x4a\xf8\x45\x81\xcb\xe2\x82\x34\x46\x72\x62\x02\x96\x16\xb8\xba\x78\xff\x7a\x1a\xfb\x1d\x2c\x73\xac\xe6\x37\x15\x4e\x86\xd9\x4f\xa1\x4a\xfb\xf9\xf6\x5e\x96\x76\x1f\xf3\x36\x00\x6c\x3c\x20\xc3\xea\x8a\xfd\x28\x1a\x6d\x7c\x46\xcf\x12\x4d\x31\x34\xd1\xb0\x54\xcf\x80\x39\xcf\x66\xfe\xa8\xe7\x44\xab\x84\xf6\x02\xb1\xf9\xf7\xaf\xec\x0f\x11\xcd\xb0\xc9\xdc\xc5\xb3\xc7\x42\xbc\x16\x2a\x60\xf8\x9e\x9a\x71\xdd\x6f\xdb\x9c\xf9\x4a\xa5\xa0\xcb\x06\xd7\x95\x4e\xe3\xc4\x2a\xb7\xc3\xe3\xda\x11\xe7\xf8\x84\xa4\x9a\x49\xcb\x2f\x28\xb6\xe2\xef\x85\x5e\x61\xf0\x1c\xb1\x4e\x24\x06\x54\x6b\x00\x0c\x7c\x56\xbd\x06\x2b\x01\xba\x26\xa8\x2c\xfe\x0f\x3c\x67\xdc\xa7\x77\x68\xe5\xa1\x4e\xba\x4e\xbb\x18\x90\xba\x3d\x63\x35\x6c\xbd\x0b\xf2\x26\x08\x16\x68\xcd\x20\xd0\x6f\x6b\x11\x1a\x84\x8a\xf4\x14\x6e\x2d\xc8\x13\xcf\x30\x8d\x17\x23\x22\xb3\x63\x75\xa3\x7f\x1d\x29\x0e\x38\x00\x70\xc7\x13\xed\x2e\x1a\xe5\xa0\x95\xb5\xf7\xb9\x96\x1a\xcb\xfb\x7d\x6d\x23\xfb\x11\x32\x44\xbc\xda\x4f\x8c\x7d\x73\xb9\x28\x87\x1d\x9b\x96\xbb\x3e\x97\xac\xef\x7b\x4a\xfc\x0a\x0b\x03\x96\xbe\x9e\x2c\x1c\xba\x54\xe4\x2f\x54\xa0\xca\xaf\x84\x5e\x80\x6d\xda\x96\x6c\xdf\x3e\xe9\xc9\x52\xcf\x7e\xbf\x8b\xac\x5a\x29\x55\x81\x04\xff\x9b\x16\xa0\x20\xc7\xd2\x5d\x74\xf7\xb0\x96\xe0\xe6\xcc\x93\x14\xf4\x54\x78\xea\x3d\xd4\x66\xc5\x5a\x4b\xec\xcf\x43\x2f\xfc\xf5\x50\x11\x34\xd8\xe2\x92\x5d\xd6\xea\x64\x7b\x56\xe3\x88\xd2\x7f\xfa\xcb\x00\x08\xde\x52\xca\xb4\x6f\xd5\xd2\xb6\x69\x1e\x9d\x97\x38\x2e\xf3\x94\x9e\xfe\x38\xe5\xa5\x8f\xad\xc1\x5e\x80\xe0\xf6\x07\xf8\x29\x3e\x99\x62\xc7\x1c\x9e\xfb\x7a\xb3\x5d\x15\x54\x6e\x67\x70\xfe\x26\x0e\x12\xfc\x35\x57\x7c\x0d\x92\x61\xda\x45\x77\x46\x20\xee\xc7\x51\x8c\x20\x02\xc3\xaf\x9d\xa9\x64\x74\x17\x85\x09\xb0\xb5\xdc\x75\x13\x2d\x26\xea\xc5\xa9\xb8\x4f\xe1\x25\x87\xb8\x80\xeb\x0a\xfa\xa1\x9e\xcb\x7e\xd6\xb3\xcc\x4d\xdc\xed\x95\x36\x6f\xf8\x40\x79\x7f\xa4\x1c\x2c\x60\x48\x88\xf7\xe4\x75\x6d\x60\x6d\xfa\x83\x36\x4d\xed\x29\xd5\x45\x35\xde\x75\x7e\x0a\xde\xf8\x6a\xb3\x34\xc5\x0a\x67\x75\x32\x02\xa5\xe6\xdd\x54\x83\xb3\x17\x77\x7b\xc5\x8e\xc0\xe9\x80\xf3\xd5\xa3\xdd\x8a\xf4\x49\x38\xb1\xd5\xc7\xf3\xff\xd7\xa4\x7f\x2e\x4d\xf8\xa4\x26\x99\x5d\x6c\xae\x98\x32\x53\x8a\x1e\x57\xb4\x0f\x84\x1e\x90\xeb\x9b\x55\x9b\x16\x41\xf0\x8d\xfd\xfc\xe6\xdf\xd2\x92\x82\xb7\x26\x45\x4a\x8b\x9e\x1a\x65\x61\xd0\x0c\x91\x60\x5b\x4b\x0f\x6c\x63\x71\x23\xe2\x5c\x56\x6b\xe4\x0f\xa9\x38\x61\x26\x5e\xa8\x78\x23\x3c\x0f\x2e\xae\x70\xb5\xa2\x5b\x0b\xbb\xe8\xaf\x8a\x18\x44\xf5\x57\x01\xfe\xbc\xad\x2c\x91\x98\x96\xc4\x3f\x14\xaa\xf8\x88\xc2\xd2\x0d\x94\x1c\x58\x98\x64\x06\x4b\xf6\xe5\x8b\x6a\xa7\xe5\x34\x1b\x38\xdb\x0d\x1e\x5e\x76\xe9\xb0\x4f\x8d\xe9\xaf\xe3\x7a\x6e\x28\x64\x60\xdb\xb8\x6e\x92\x50\xc4\xef\x19\xd0\x42\x63\x8e\x2d\x0a\x64\xc2\x93\x6e\x88\x30\xb7\xdd\x64\x48\x6e\xd7\x6c\x1e\x78\x69\xf2\x63\xe7\xd5\xc4\xea\xb4\xde\xc4\xc2\x42\xb3\x47\x06\x72\xbc\x30\xeb\xf8\x4f\x3e\x47\xec\x0c\xdb\x71\x36\x44\x31\x83\x6a\xfc\xc7\x9a\x63\xf4\x63\x85\x76\x55\x2f\x88\x89\xbb\xe9\x4e\xda\xb3\xc4\x96\x4b\x5d\xd7\x65\xc5\x6a\x3e\x8b\x95\x02\x2e\xdf\xff\x85\xd0\x8b\xd4\xf5\x12\x6a\x15\x2c\x9b\xcf\x42\x6f\x7c\xf2\xd9\x56\xd0\x77\x7e\xfe\x60\xf3\xc0\xc2\x93\xdb\xbf\xec\xaa\x73\xd5\x50\xd5\xec\x90\x8b\x9a\x0d\x74\x02\x9f\x8c\xeb\x3b\x81\x22\x07\x25\x20\x06\xe1\xe4\x66\x07\xce\x4c\x3f\xd0\xac\xb3\xf3\x5a\xe8\xf4\x1a\xbd\x99\xd2\x78\xa8\xd2\x5b\x97\x24\x2e\x78\xfa\x57\xb5\xd1\x03\x25\xf8\x11\x5e\x24\x19\x2a\x6f\x78\xdb\xfc\x7b\x53\xd1\xe3\x85\xc5\xe6\x9a\x49\x4b\x8d\x49\x5f\xd1\xde\xc6\xd3\xba\x8c\x0b\x0b\x07\x9b\xa5\x59\xb1\x04\x83\xe3\x96\xfc\x16\x72\x38\x64\x13\x0f\x95\x96\x3a\xb8\x5c\x62\x3e\xba\x75\x8b\x24\xd9\xb2\x22\x16\xff\xfc\x83\x9b\x18\x91\xdc\x9c\x56\x77\xd8\x7f\xa8\x69\x4d\x5e\xf6\x8a\x1e\xd1\x91\x80\xae\x21\xc0\x9f\x9a\xe0\xd2\x7a\x36\xab\x16\xb4\xe9\x66\x71\xda\xdd\xed\x87\xf7\xc1\x3b\x66\x5f\x5f\xcc\x6b\x8a\xad\xa1\x67\xbc\xe1\x7b\x38\x79\xd1\x2a\x02\x00\x92\x0e\xc6\xf4\xa6\x23\x52\xce\xb4\x82\x5f\xf8\x15\xe6\x92\xdc\x25\x8e\x1b\xd2\xa5\xd9\xb1\xaa\xb2\xb7\x29\x4f\xad\xe5\x2c\xef\x5a\x76\x26\x63\x05\x62\xdc\x6f\x91\x23\xae\x01\x08\x7a\x28\xdb\xbd\x83\xde\x7d\xed\xa0\x77\x5f\x35\x11\xdb\xc3\x24\xe9\x65\x79\x8a\xc9\x7f\xac\x4b\x48\x3b\xf0\xb1\xea\x9e\xda\xbe\xcd\xbb\x96\x46\x59\x7c\x62\x05\x2c\x57\x80\x0b\x9f\xc0\xc6\xf9\xfa\xce\xea\xde\x38\xa6\x95\x4b\x52\x81\x78\x88\x19\xd3\xc8\x53\xce\xf9\x7d\x70\x83\xb8\xbe\xeb\xfa\x81\x9e\x7c\x7c\x2d\x9c\x10\xbe\x5b\xce\xf2\xfe\x8c\x92\x51\x45\xae\x8e\xcc\x76\xdb\x58\x71\xa5\x4f\x85\x8a\xa6\x70\x4a\x75\x7a\x8b\x2a\x17\xe9\x96\x3d\x9b\x52\x9b\x41\x8c\xcb\xfc\x4a\xbc\x82\x7c\x93\x4f\x42\x6d\x6f\x56\xd3\x6a\x5a\x64\x72\x60\xe0\xcb\xe3\xe3\xaa\x51\x7c\x7c\x6a\xc6\x0f\x73\x35\x03\x1b\x95\xf1\x2a\x7e\x0b\x69\xee\xef\xd3\x6f\xf1\x71\xed\x6b\x35\x30\x71\x07\xaa\x9a\xa8\xf4\x2f\x6a\x1f\x27\x96\x0a\x45\x0e\xb2\x1d\x34\x73\xd1\x19\xae\x89\xbe\x55\x16\x17\xf7\x39\xfa\x4a\xee\xa0\x13\x09\x45\xc2\x2c\x6c\x5e\x85\xdf\x19\xdf\x06\xc4\xde\xc9\xda\x6f\x78\x5a\x4a\x08\x6e\xbf\xfc\xd4\x48\xfb\xa7\xc1\xa9\xac\x78\x8a\x6e\xae\x4c\x1d\x28\xf3\xac\x0f\x94\x86\xce\xf6\xb1\xb2\x8a\xfc\x18\xf9\x3b\x2a\xe6\xdd\x2d\x7a\xbb\x9c\x91\x55\xf5\x9d\xf1\x16\xdd\x1a\x29\xcd\x3b\x4e\x63\xc5\xb1\xd7\x17\x67\x1f\x2a\x76\x22\xc7\x5d\x07\x2a\xfb\x06\xc7\x55\x3c\x75\xbe\xcd\x14\xd1\x65\x1a\xb6\x5a\x27\x62\x7e\x1c\x38\xf3\x96\x1b\x0a\xd2\x5d\x33\xc5\x17\xfd\xf0\xfa\xf9\x50\xeb\xa1\x6c\x43\x61\xc3\x1e\x04\x28\xac\x70\xf9\x0f\x95\xfc\xd0\x33\xc4\x67\x96\x79\xde\xea\xe2\x05\x50\xf1\x03\x03\x4c\xfc\xd3\x5d\x60\x10\x6b\x9f\xc2\x5b\x80\x17\x7a\x53\x8b\x60\x9f\xa3\x2c\x07\x51\x6a\x0f\xb4\xf8\x80\xa1\x5f\x27\xcb\x6e\x47\x3a\xab\xee\xb6\x23\x39\x55\xb7\x71\x62\xd3\x41\x54\xd9\x36\x0e\xbe\xf2\x15\x81\x4e\xb0\x59\x02\xe5\xdb\xdd\x0a\x5e\x10\x80\xe5\x2d\x34\xff\x1d\xc0\xe2\x04\xa6\x67\x55\x15\x06\x02\x39\xde\x04\x20\xc2\xe7\x34\x33\xe0\x5c\xe8\x5b\x6e\x51\x96\x46\x36\x2d\x73\xf2\xc4\xac\x96\x81\x0c\x18\xd3\x55\xf2\x89\x0a\x61\x65\x1e\x0f\xfb\x83\x5e\x55\x62\x79\xd5\x4b\xb6\x21\xc5\x17\x3c\x3e\x9a\xd0\x67\xae\xd9\x82\x12\x6b\xba\x43\x56\x3e\x3a\xc2\x49\xc0\x0f\xb1\x6e\xf9\x24\x54\xe6\x11\x36\x29\xcd\x8c\xea\xb9\x1c\x63\x90\xc1\xc9\x74\xba\xc6\xe6\x60\xe4\x79\x61\x57\xea\x66\xc9\x61\xba\xc9\x46\xb3\x75\xa6\x29\x35\x2c\xce\x76\x02\xe4\x4e\x12\x38\x31\x52\xa6\xcb\x05\x84\xf9\x9e\xe6\x53\xbe\x33\xda\xed\xde\xd0\x9f\xff\xa2\xe7\x5b\xfd\x95\xb6\xc7\x7e\x74\x5c\xad\x3a\x14\xe6\x97\xc3\x2a\x21\x77\xe5\xb7\xef\x69\x5c\xc5\x72\xc4\xaf\x37\x5a\x2a\x82\x3e\x0c\xb7\x7f\x99\x0f\x99\x03\x8d\x2f\xfd\x29\x8d\xe4\xb8\x49\x98\x25\xb1\xa6\xbf\x4b\xeb\x44\x76\x6f\xb4\xfd\x15\x8f\x49\x40\xbd\x1b\x88\xef\x08\xcc\x77\xe8\x66\x02\xcb\xda\x45\xfa\x5b\x40\x05\x3f\x86\x6a\x9b\x0c\x8f\xe1\xa6\x20\xdc\x1c\xc7\xf6\x23\xef\xbb\x1f\xa1\xb8\x01\x86\x84\x1b\xcb\x39\x2c\xa8\xe0\xce\xf1\xd6\x2e\xd1\xe2\xd2\x62\x73\x38\x98\x51\x56\xcc\xb7\x69\x8f\xc7\x0e\x84\x4c\x90\xdf\x8a\xb1\xb7\x83\x7a\xa2\xa5\x00\x67\x5b\x14\x79\xb1\xb7\xb1\x55\xca\x15\xf9\x35\x0c\xf3\xb8\xf3\xab\xc8\x44\xed\x61\xd2\xa6\x64\xb8\xae\x83\xbb\x55\xe2\xf2\xc0\x42\xb3\x13\x17\x51\x1e\xf7\xe3\xd4\xa0\x71\xe7\x92\xca\xef\xa8\x0a\xe5\x3b\x6a\x3b\x5f\xfa\xa7\xdf\x68\x04\xca\xd6\x82\x56\x03\x1e\x0f\xa0\x73\x9e\xcd\x75\x73\xaf\x34\x8c\xd9\xb3\x71\x07\x9d\x13\x09\x18\xd5\x0d\x40\x88\xf9\x17\x9a\xc1\x87\x11\x1a\xce\xfb\x90\xab\x48\x42\xb8\x75\x51\xff\x8c\x58\x3d\x39\xec\x15\xf5\xf9\x0f\xe8\x3b\xf3\xb1\xe2\x27\x44\x3d\x93\x27\xb6\xd8\xe1\xb1\x7e\xf0\xa8\xb1\xaf\xf0\xbb\x2f\xb6\x39\xd5\x02\x64\x6b\x68\xac\x26\x24\x23\x6f\xd2\xdf\xc6\xca\xd8\xd4\x6e\x2a\x65\x9c\xaa\x19\x1c\x3d\x53\xc0\x68\x06\x86\x3c\x36\x14\x16\x0d\x33\xe1\x45\x67\x6f\xc8\x6d\x7a\x3e\xf9\x7c\x60\xc1\x49\xba\xb8\x1b\x05\x3d\x64\x20\x43\x7f\x39\x31\xb5\x32\x7a\xc6\x83\xaa\x85\x29\xe3\x62\x39\x96\x90\x37\x21\x23\xee\x1c\x46\x1c\xcd\x63\xb3\x6e\x66\xb4\x3f\x2c\x94\x17\x8d\x10\xf1\x3c\x59\xf2\x92\x52\x58\x6a\x9b\xbc\x6d\x72\xc3\xd3\x52\x1e\x04\x5b\xf4\x12\xc3\x07\xbc\xc4\xb0\xca\x2f\x4e\x87\x5a\xf7\x27\xeb\x67\xa5\x88\xe3\xba\x4c\x51\x59\x78\x4e\x87\xc7\x23\xcd\xac\x4d\xc3\xc9\x81\x92\x7d\x3e\x1b\x7a\xd1\x97\xb3\x0a\x35\x29\x86\x79\x17\x2d\xc4\xcf\x51\x12\x9d\x26\xad\x2c\x0f\xd3\x0e\xdd\x7c\xbc\x02\x77\x15\x41\x9c\xf5\xc4\xfd\x64\xa0\x7c\x4c\xb6\xbc\xfc\x24\x5d\x0d\xbb\x98\x84\x8a\x1b\x0b\xd2\x0a\xad\xa9\x77\x9e\x19\x7b\xb4\x81\x71\x73\x0e\x57\x88\x49\x78\x49\xae\xd1\xae\xb6\xb9\x41\xc9\x0b\x98\x20\x0d\x60\x9c\xb2\xea\x7d\x65\xff\xb1\x6a\xa3\x73\xd7\x05\xb1\xe6\x4e\xa8\x34\x46\x37\xe1\x4a\xc1\x2f\x27\xcf\x47\xba\xbd\xdd\x7b\x22\x3c\xf0\xca\xaa\xc5\x20\x76\x32\x69\x32\x3a\x46\xdf\x4a\x66\xc7\x94\x42\x5e\x16\xc5\xf0\x25\x72\x85\xd4\x3d\x55\x23\xdd\x53\xd4\x19\xea\x31\xe5\xf1\x60\x80\x3f\x7d\x84\xcb\xcf\xd7\x47\x0a\x68\x78\x5d\xfd\xe9\x2c\x8f\xbb\x71\x6a\x92\x1d\x3e\xe6\xdd\x1a\xe9\x5d\x1c\x9b\x0f\x38\x3a\xff\x0e\xaf\x32\x52\x1e\x94\x7f\xc8\xbd\xde\x9d\x50\x66\x9a\xb2\xc8\x99\x9f\x6f\x0e\x97\xb3\x40\x31\x19\x8e\x6a\xeb\xd9\xa3\x0a\x8f\x68\x67\xc3\x34\xb2\x9d\x99\xea\x01\xe0\x59\xa3\x49\x8c\x1c\xf8\x24\x7d\xa6\x34\x67\xaa\x77\x01\x48\x59\xd0\xf2\x8e\xc4\x9d\x61\xe4\x0a\x55\xec\x2e\x8d\x96\xe7\x48\x43\xed\x4b\x30\x16\xe9\xe0\x81\xc3\xa8\x8a\x6f\x76\x47\xe5\x13\x35\x7d\xd8\xc9\xe3\x74\x05\x35\x9e\x54\x31\x3e\x8e\x4c\x27\x1b\x0b\x0b\xcd\x41\x6e\xfb\xb1\xcd\xad\xb6\xab\x80\x6a\x99\xb4\x51\x9e\x50\x21\x36\x2b\x2c\xba\xea\x6c\x68\x47\x2b\x51\xcc\xed\x94\xce\xc3\xcb\x03\x9b\x97\x71\x61\x03\x9f\x28\x9f\x52\x53\x3c\xa7\x54\x8d\xd1\xb7\x89\x49\x63\x0c\x32\x3b\xc0\x51\x81\x8c\xd3\x68\x55\x73\x90\x0c\xfb\x7d\xef\xdd\x89\x6d\x92\xe9\x5a\x7c\xa2\xf8\xfb\x51\x92\x0d\x3b\x33\x94\x97\x20\xc9\xbe\xa3\x94\x70\xcf\x2b\x50\xe2\xfc\xc8\xf7\x8c\xef\xe8\xf1\x8f\xdc\x0c\x3b\x4a\x99\xec\x94\x4e\xad\x4f\x4d\xd5\x58\x5f\x6d\x76\x72\x5b\x78\xf7\x6f\xfc\xf1\x0f\xd4\x07\x7d\x50\x87\x63\x44\x59\x5a\x85\x35\xe3\x8a\x43\x90\x84\x78\x16\x8c\x4f\xea\x0a\x3a\x13\xf5\x62\xbb\xca\x6e\x1a\x32\x9d\xea\x4d\xae\x2f\x85\x7a\x2f\x96\x6d\x7b\x90\x25\x71\xd1\x73\xd7\x08\x4a\xc7\x35\x45\xef\xb8\xe6\x56\xdf\x30\x5d\x8e\x4b\xda\xfd\x90\xe9\x40\x62\xdf\x2b\x16\x3b\x3f\x83\xbf\xae\x85\x7d\xb3\x58\xf4\x33\x24\x39\xa2\x58\xc4\x27\x8a\x34\x90\x2d\x2f\x3f\xea\x13\x94\x8f\x46\x7e\x11\x7c\x5f\xeb\x73\xdd\x45\x99\x82\x42\xee\x5d\xfa\x72\x13\x46\x58\x48\x92\xff\x5a\x0f\x33\x8b\x44\x11\x2b\xa8\x22\x4c\x22\x38\xdd\xd2\x0a\x2e\xc7\x94\x6d\xfe\x65\x17\x0a\xfb\x71\x67\xdd\x1a\x00\xf6\x08\xdd\xa0\x04\x03\xdb\xd9\x98\x18\xeb\x77\x37\x6d\x35\xce\x19\xb6\x04\x53\xfc\x1c\xe5\x99\x7c\x3c\x01\x61\x0f\x22\x9e\xcb\x93\x92\x95\xbe\x1e\x0a\x4d\xe8\x6d\x8b\x96\x59\xe0\x06\xf5\xaf\x8e\x54\x0f\xe6\xa2\x67\x67\xad\x59\x5b\x36\x3c\xf6\xf7\xcc\x58\xe5\x36\x40\x60\x30\x8c\xfe\xc5\xa9\x69\x2d\x9a\x1f\x58\x8b\x0b\x2d\x77\x7d\x5f\xcb\x5d\xdf\x9f\x62\x3b\x91\x33\xbe\x35\x79\xa0\xec\x2d\x4e\x62\x1f\xe3\x93\x7a\xef\xde\xa8\x67\xd2\x2e\xf3\x27\x54\x7d\xb9\xdf\x6d\x4f\x4f\x29\xd4\x2a\xa6\xa9\xb0\x19\xda\xcb\x84\xcd\x41\x8f\x0f\x4f\xe2\xff\x45\x01\xa8\x58\x22\xfb\xe5\x5f\xdc\x18\x7e\x5f\xe4\x27\x26\xc6\xd6\x44\x55\xde\x03\xc8\x3d\x30\xf4\x70\x07\x44\xb0\xae\xca\x15\x44\xc8\x4e\x3f\xb5\xfe\xa0\xa7\x08\x20\x27\x14\x01\xe4\x84\x56\x2a\x29\xcb\xdc\xc0\xab\x9e\x9e\xaa\xcc\x7a\x51\xf7\x52\x2a\xc0\xad\x37\xe9\xd0\xf3\xcd\xb8\x3f\x80\x27\x1d\x71\x53\x81\xd7\xa2\x9b\xaa\xe1\x61\x51\x5c\xae\xd1\x6f\xa9\x02\x70\x54\x5a\x76\x46\xe1\xa1\xd4\x91\x2f\xb4\xef\x87\xaa\x53\xf2\x6d\x47\x41\x31\x2b\x71\x16\x78\x7d\x14\xbe\x55\x32\x0a\xaa\xd9\x32\x71\xd2\xb7\x88\xd9\x62\xf5\x46\x3f\x2a\xfe\x6e\xd3\x31\xd1\x14\xc5\xd0\x9b\x57\xe3\x19\x01\xbc\xe0\x63\x95\x5b\xda\xb4\x9b\x90\xcc\x9c\x2b\x51\xde\x52\x78\xf8\x5b\xe1\xa3\x7e\x3f\xb6\x5f\x0c\x5e\x70\x4a\x43\xf4\xfa\x22\xdf\xdf\x44\xd7\x45\x48\xf5\xd5\x87\x6e\xee\x40\x71\x0a\x38\xe8\x82\x9a\xb2\x9e\x6d\xd1\x03\xc1\x92\xb8\x11\x6e\x31\x33\xf1\x43\xfa\xd7\x08\x85\x11\x29\x05\xcf\x5b\x78\xa2\x49\x95\x27\x37\xf0\x46\x9e\xd0\xb2\x5b\xd9\x26\xf3\x84\x1d\x90\xf8\x6d\x63\x02\xa0\x00\x74\xbe\x4c\x20\x0c\x3e\xe2\x5f\x8d\x94\x8a\xf8\x93\x24\x16\xbe\x79\x95\x52\x09\xd4\x34\xb3\x63\xcf\x99\x3b\x3e\x52\xa1\xe2\x28\x00\x1b\x41\x76\xdd\xc8\x60\x51\xe6\x59\x9a\xf5\x79\x9c\x8c\x85\x8f\x55\xd9\xa8\xe5\x99\xaa\x12\xca\x44\xa5\xb4\x73\x10\x49\x2f\x28\xe8\xe1\x82\x32\x8e\x2c\xa2\x5c\xe4\x9e\xab\x3b\x8d\xbf\x76\x0f\xef\x23\x9f\x8c\x76\xbb\x15\xf3\x33\x4f\x35\xbc\xc9\x4a\x03\xc8\x30\x8b\x50\xd3\x3b\x86\x1c\xe2\x28\x40\x19\xec\x40\xf0\x86\x97\xb9\x82\xea\xd1\x0a\x48\x54\x85\x52\x54\xd7\x0f\x35\x16\x86\xb7\x50\x0c\x86\xd5\xc0\xdd\x67\x23\x55\x69\x6e\x07\x8e\xe8\xc8\x68\xde\x4d\x5f\x06\xd3\xf1\x73\xd7\x81\x04\x22\x25\x87\xc6\x38\xd2\xef\x8d\x91\x47\x05\xdf\x9e\xa2\xee\x1c\x9e\xdb\x5f\x95\x35\xbd\xb8\x1d\xbb\x9d\x9c\x15\xca\x42\x4f\x5a\xd2\x3a\x0a\x65\x36\xec\xf6\x52\x5b\x30\xd0\x24\xaa\x59\x7e\x5f\xbd\xa2\x08\xd0\xdf\x30\x69\x43\x03\x4b\xa8\x71\xb1\x99\xee\x6c\x29\xee\x43\x30\x56\xea\x4f\x51\x6f\xb7\x4a\xb0\x67\x80\xb1\x62\x03\xbf\xaf\xa9\x75\x70\xa0\x92\x01\x58\xed\x2a\x46\x7f\x19\xcf\xe2\x66\xe8\xf5\xa6\xa0\x83\x87\x4c\x78\xf7\xd8\x2d\x94\xbd\x4f\xe2\x09\x63\x69\x3e\xdd\xf2\xc9\x58\xdb\x14\x71\xb1\xd3\xa7\x37\x3b\x5a\x9e\xe5\xf6\x0c\xc1\x4d\x28\xd1\xef\xe2\xc1\x62\x67\x27\x8b\xc3\xea\x35\xd8\x7f\x48\xb0\x08\xbc\x96\xfc\xb3\x70\x72\xe3\x2f\xbb\x3a\x6c\xd0\xdb\xac\xef\x23\x52\xd9\x49\x57\xcd\xad\xe8\x3c\xf4\x71\xd2\x8e\x47\x4a\x9c\x66\xad\xd7\xaf\xad\xa5\xbf\xf7\x6c\x3f\xcb\xf3\x9e\xf1\x5c\x04\x74\xf7\x30\xea\xc1\xc7\x93\x6d\xeb\x6e\xef\xb9\xea\x4e\xb3\xe5\x37\xa9\x97\x22\xe9\xdf\xd5\x52\xbd\xdf\xf3\x78\x9b\x1c\x8d\x76\x49\xd4\x1d\xff\x98\xae\x09\xef\xcf\x03\x44\x0c\x14\xb4\x37\x34\x69\xe9\x2c\xda\x19\x6e\x0e\xcc\x4d\x40\x7f\xcc\xf9\x90\xcc\x1d\xea\xd4\x84\xae\x5f\xdc\x34\x69\x41\x62\x5b\x3b\x13\x06\x93\xc2\xe9\x8b\xdc\x4f\x7e\x2b\xdc\x62\x57\x23\xc9\xd0\x71\x65\xe3\x74\x97\x8a\x7a\x47\x2e\xf0\x3d\xae\x6d\xad\x3a\x49\x71\x19\xcc\x17\x34\x13\x61\x9c\xc9\xc3\x20\x4c\x33\x54\x2c\x83\x60\x5b\x9f\x0b\x25\xd4\xc3\xb4\xb4\xf9\x9a\x75\x82\x26\x40\x03\x41\x85\xe3\x63\xb5\xff\x9b\x4e\x36\x28\x9d\x7a\x2d\x96\xe7\xef\x69\xd3\x81\xdf\x9b\x1a\x02\xa0\x8e\x8e\x29\xb2\xd4\xb4\x99\x32\xc9\x9a\xe5\x4a\x23\xe2\x53\xa5\x45\xd6\xcd\xcd\xfa\x6c\xa0\x14\x9b\x7c\x4c\xfe\x74\xa4\x30\x29\xcd\xbb\xfa\xb1\xe6\xd7\xfd\x58\x41\xce\x7d\xb3\x9e\xe5\xb3\x8a\x62\xfc\x0e\x76\x18\xac\x9d\xbb\x23\x25\x08\xc2\x30\x90\x23\x72\xb9\x11\xb3\x99\x56\x8d\xdd\xc1\xe2\xd2\x22\x98\x32\xd8\xe9\x4e\xe2\x55\xe4\x13\x8a\x10\x32\x9f\x56\xed\x5b\xb2\xc5\xd6\xd4\x69\xc3\xb4\x53\xdd\x7f\x49\x11\xeb\xa0\x6c\x1f\x19\x0a\x6b\x3b\x85\x62\xb7\x1c\x57\x46\x40\xc7\x5d\x86\xd2\x89\x8b\x95\x86\xea\xd7\x1c\x57\x04\xa4\x47\x5a\x1e\x0b\x9e\x9d\x12\x7d\x7c\xf1\xc5\x66\x94\x58\x56\xcc\x42\x4a\x87\xe2\x8f\x8f\x95\x16\x5d\x27\x4b\xb3\x6e\x6f\x68\x03\x35\xaf\xb0\xa1\xc7\xfc\x37\x94\x29\xc1\x60\x98\x24\x6d\x13\xad\x14\xca\xe0\x09\xa2\x31\x7c\x1c\xfa\x21\xaf\x0e\x6b\x74\x8a\x01\x49\xe0\xa4\x7c\x18\x69\x95\x0e\xa6\x73\x4e\x8e\xbe\x39\x8c\x8b\xb8\xca\x20\xa9\x09\x87\xde\xc2\x35\xad\xbc\xb0\xa7\x35\xc5\x1f\x3c\xe8\x38\xd4\xcf\x6d\xa5\x2c\x2c\x35\x0f\xcf\x1d\xd9\x45\xdf\xcb\x59\x6f\x56\x11\x43\x78\xb1\xd5\xd3\x45\x99\xc7\x1d\x20\xe1\xc5\x2a\x1b\xe3\xd3\x08\x12\x9a\xcb\xec\xf2\x0a\x05\x36\x3c\xad\x70\x03\xdb\x8f\x8b\x92\xc3\xaa\x8c\x42\x78\x96\xc8\x65\xf7\x78\xfb\xb6\x30\x8a\x04\xb6\xa1\x49\x60\x1b\x75\x52\x71\x07\x9b\x05\x59\xcc\xd3\x2f\xb1\x6f\x01\x9e\x94\x98\x18\x38\x14\x37\xab\xf6\x63\x0c\x76\x68\xa9\x6c\xe6\x60\xa9\x79\xc4\x33\x75\x66\x48\x7f\x67\xff\x81\xaf\x1f\x38\x74\x30\xf0\x02\x1e\x9f\xd1\x1b\xcb\xc7\xa1\x1e\x0f\x8b\x6c\x51\x98\x3c\x4e\x40\x05\x76\x9e\xde\x87\xe7\x38\xca\x42\xb5\x48\xb1\xb9\x17\x5c\x21\xa4\x08\x5f\x59\xbf\x9f\xa5\xc9\x7a\x63\xa2\x9b\x3d\xd1\x00\x57\xed\xbe\xdb\x2a\x8d\x6b\xe7\xd6\xac\x74\xb2\xb5\x14\x6e\x4f\x4e\x63\xd2\x91\x9e\x2e\xaa\x84\xc2\x76\x21\x0a\x80\x74\x97\x47\x74\x98\x27\xe5\xed\x93\xfe\xd5\xed\x3a\x23\xb6\x38\x2d\xb2\x65\x93\x37\x54\x4f\xec\x4d\x8a\x0f\x52\xa9\xfb\x37\xe2\xc6\xc4\xfe\x97\x24\xeb\x5f\x52\xa4\x96\x6d\xc8\xbf\xf1\x1d\x5f\xa5\x6c\x98\x83\x18\xed\x8c\xe0\xe8\x7d\x97\x40\x7b\x6c\xff\x9b\xb4\x99\x21\x2a\x6f\x8c\x74\xc7\x6b\x03\x59\x1b\xe0\xcc\xd7\x74\x5d\xf9\x01\x30\x50\xee\x47\x85\xaa\x81\x7e\x06\xdb\x2c\x6d\x61\x47\x9f\x26\x88\x16\xf8\x3a\x82\x0b\x78\x67\xf7\xe8\x8b\xa1\xd1\xfa\x3a\x8a\x0b\x1e\x6e\x47\xaa\x03\x9c\xf6\x5d\x34\x44\x91\xc0\x42\xca\x13\x79\xc8\x53\x63\x4d\x99\x0e\xbd\x3b\x24\xd7\xfb\x78\xb3\xae\x73\xd7\x8b\x1b\xc8\x58\x1a\x48\x12\x76\x10\x7d\xdd\x61\x8e\x5f\x7b\x41\x44\x38\x14\x9d\xa5\x5f\xad\xbb\xa0\xba\x35\x48\x00\x1e\xd0\xcf\xf1\xf1\x14\xc3\x67\x7e\xbe\x59\x0c\xe0\xac\x2b\xe0\xc3\xbf\x54\x06\x91\xff\x52\xf1\x4e\x57\x63\xbb\x66\xa1\xe5\x20\x5e\x4d\x74\x69\x9a\xf0\x05\x00\xf3\x7f\x54\xea\x97\xc3\x34\x7e\x99\x0c\x7c\xdc\x40\x78\xf5\x49\x02\xef\xd0\x8d\x12\xce\x55\x75\xcd\x7c\xac\x35\x9a\x5e\x9d\xcc\x9a\xda\x10\xd3\x44\x7a\xf1\x63\xfa\x54\xa4\x14\x1b\xba\x21\x09\x74\x46\x5c\x1a\x55\xf3\x16\x29\x0c\x8a\xe1\xbf\xd0\x22\xe9\x80\xcb\xb0\xe4\x4e\x7f\xee\x30\xb2\x2d\x06\x60\x42\xc8\xf8\x8d\x9a\x66\xbd\x33\xd2\x0c\xd7\x1b\xe1\x04\xb9\xc2\x4d\x18\x92\x9d\xda\x4c\xb5\x8c\x81\x6b\xc9\x6f\x69\x15\x58\xe4\xd8\x9c\xca\x0b\xa2\xa0\x1d\x4f\x53\x3c\x8a\xc3\xca\x29\xb6\x5a\x8c\x28\xa0\x1e\x84\x7a\x96\xc1\xbf\xe5\x0b\x87\x0e\xb2\x15\x30\xc0\x84\x0f\xb4\x26\xd5\x73\x2d\x8f\x2c\x60\xe7\x72\xed\x0e\x3f\x5f\xb0\x67\x5c\xd3\x22\x6f\xe7\xb6\xec\xe5\x36\x0d\xd4\x5f\x83\x9f\x08\x1f\xab\xdc\x27\x4b\xcb\x0c\x1b\x2a\x76\xeb\x93\xca\x7e\xee\xe4\xe7\xb6\xc3\x26\x61\x03\x19\x32\x50\x64\xfe\x4f\xb4\xe5\xb9\x49\xb2\x7e\x96\x22\x62\x6a\x2d\x25\x36\xd2\x52\x19\x45\xad\xea\xdc\xb0\xb0\x2c\x68\x88\x3c\x99\x6d\x0b\x45\xcd\xcd\xdf\x99\xd3\x1a\x69\xba\x32\xd5\x44\x5a\x9a\x6b\xda\x4e\x89\x86\x02\x76\xc6\xdf\x55\xbb\xe4\xef\xd6\xc0\x62\x07\xab\x9a\x91\x46\x49\x1b\x8a\xa3\xcc\x6f\x0c\x37\xe0\x11\x0d\x58\x35\xad\x4e\xb4\xb7\x58\xb3\x76\xe0\x9a\x0b\xc0\x41\x3e\xa0\xab\x06\x02\xb8\x93\x9e\x33\x96\x28\x29\x19\x38\x19\xac\xd2\xc4\x49\xd1\x37\x69\xc3\xcf\x7c\x06\x2d\x5f\xa0\x00\x6e\xc2\x0e\x71\x4b\x79\x38\x7c\xa5\xf8\xdb\x74\x81\x48\x3d\x1e\x50\x7d\xa6\x06\x78\xa5\xe1\xbe\x63\xac\xf6\xa1\xff\x1a\xe0\x17\x62\x67\xd0\x52\xde\x4d\x47\x47\x9a\x31\xa7\x5e\xe8\xf3\x61\xf0\xcb\xbf\xe8\xbe\x0f\x85\x4b\x14\xbf\x0d\x4c\x1b\xe0\x99\xbc\x13\x4e\x48\x88\x07\xce\x3c\xf8\x3b\xa1\x12\x03\x3f\xa5\x28\x93\x1f\x86\x9a\x63\x70\x26\xf4\x6a\xdc\xd7\x11\x9d\x26\xac\x22\x70\xf9\xdb\xc7\xde\x4a\xe0\x61\xe8\xc9\x3e\x77\xd1\xb3\x7b\x8f\x8a\x34\xc7\x19\x74\xd0\xd4\xb5\x51\xe3\x05\x37\x50\xf5\x89\x72\xa8\x7e\x40\xc5\x17\xc2\xfa\x4d\x20\xe3\x7c\x39\x84\x35\x21\x83\x0c\x38\xc5\x03\x9d\xe6\x41\x18\x7c\xe5\x2b\x7c\x3b\x7e\xe0\xa6\xa4\xda\x59\xb6\xe2\xde\x13\xee\x0d\x86\x1e\x1b\xf0\xb6\x44\xbc\x69\xcf\xfa\x16\xd6\x6c\x6b\x72\x03\x77\x93\x36\x97\x47\x7a\x03\x57\xb2\xf9\xdf\xab\xeb\x24\x2d\x67\x79\xdf\xe6\x50\xcc\x39\xc2\x6b\xfd\x02\xed\x9a\x7c\xec\xa4\x92\xf2\xac\x6f\xd2\x09\x23\x16\x56\x50\xe6\x13\xd5\x30\x2c\xca\xdc\x9a\x7e\x12\xa7\x68\xf6\xc8\xb2\xfe\x96\x6a\xed\x7f\xcb\x8d\x10\x2c\x0f\x6d\xb2\xb3\x7a\xbe\xec\x72\xa8\x24\x44\x2e\x2a\x9c\xe4\xa9\x96\xda\x88\x90\x17\x21\xd0\xde\x99\x84\xd5\xd5\x25\x5d\x98\x6a\x6d\x1c\x9e\x6b\x16\xa5\xed\x73\xbc\x40\x24\x60\x01\x00\x90\xf7\x7f\x0b\xf9\x06\xee\xe4\x27\x2a\x0c\xd5\xc6\x8b\x81\x05\xdd\x87\x77\xaa\x91\xe7\x1d\x9f\x51\x25\x6a\x94\xdb\x22\xca\xca\x32\xd0\xf5\xfb\xed\x50\xa9\xcb\x4c\x4b\x17\x1f\x58\x68\xc6\xfd\x41\xe6\xfb\x51\xc8\x41\x61\x4a\xc8\xc7\x75\x7a\x16\xf3\xf3\x8a\x65\x8e\xcc\x1e\x4b\xfd\x0d\xd5\x3e\x7b\x8a\x5e\x07\x54\xb3\x4f\x10\x79\x56\xc8\xe7\x3e\x1d\x35\xab\x26\x4e\x4c\x3b\xb1\xbb\x7d\x6f\xf3\x2d\xe4\x0f\x32\xcd\xa7\x58\xc2\xec\x3a\xe1\x7c\x8c\xdc\x7e\xcf\x3e\x6b\x4e\x6a\x61\x6b\x97\x04\x75\xe8\xf7\x46\x13\xc3\x4f\x74\x67\x7c\x1d\xce\x40\xff\x30\xed\xf2\x98\x1e\x22\x04\x0f\xf7\xf2\x14\xea\x48\x09\x5c\x9f\xc2\xaa\x17\x2c\x49\x71\xd7\x8a\x62\x48\x77\xb4\x8a\x13\x5c\x6d\x29\x92\xfd\x5d\xad\x08\x3b\xcc\x57\x2d\x4a\x1f\xe4\x85\xf7\xb0\xb2\xf8\x24\xdc\xe3\x1f\x6f\xba\x16\x28\x34\xee\xfd\x91\xea\x33\xbe\xaf\x2a\xff\xc8\xa6\x65\x41\x0b\x1d\xb9\xdd\x6d\x24\xbd\x4e\x2a\xc3\x89\xdd\x40\x55\x80\x6d\x77\x43\x15\x2c\x71\x63\x11\xb7\x59\x6c\x01\xb7\xe2\x81\xcb\x56\xba\x00\x77\xab\x3f\xc0\xa3\xb3\xf8\x14\x99\xa3\x95\x78\x92\xf0\x3c\x0b\x45\x72\x14\x23\x0f\x50\x3a\xd2\x3b\xf1\x26\x8c\x57\x81\xf6\x34\x6a\x67\x0f\xd2\x2c\xef\x83\x3f\xb0\x34\xc7\x0d\xcc\x3f\xc2\x93\xe3\x93\x6a\xaf\x16\xc6\x88\xc9\xcb\x38\x8a\x07\x34\xdf\x3d\xab\xdc\xa4\x90\x78\x3b\xaf\x63\xa7\xd9\xfa\xfb\x23\xe5\x81\xac\xd9\x7b\x17\x54\xa6\xda\xcb\xd2\xee\x23\xaa\x01\xfe\xb6\xf6\x8f\x20\x18\xec\xeb\x9c\x1f\x41\x96\x88\xad\x8a\xd5\x7c\xf8\x43\xf0\xcd\xf8\xd7\xb1\x6f\x83\xf1\x78\x51\x4d\x9b\xfc\xc6\x48\xeb\xa5\x6f\x6b\xd5\xca\x1e\x94\x26\x5a\x19\x0e\x02\x0f\xd2\x30\xcf\x96\x4f\x6a\x46\xa1\x16\x9b\xa9\xed\xfa\xc6\xb1\xa3\xc4\x2c\x78\x4a\xcc\x14\x10\x40\xf2\x18\x4f\x35\xbc\xb3\xea\x35\xa5\x65\xfa\x08\xf5\x33\x44\x24\x59\xb9\x24\x3e\xa4\x29\x03\xad\xac\x2a\x1e\xbe\xca\xd6\x98\xb2\x69\x91\xc7\xc3\x17\xc6\xc6\x77\x33\x54\xb5\x06\xa2\x33\xfe\xd4\x9b\xc8\x61\x9d\x59\x60\xf5\x24\x90\xbf\xfd\x9e\x1e\xdc\xfc\x31\x5e\x08\xe0\x13\xdb\xc6\xc1\x81\x85\xcd\xeb\xd8\x9c\x81\x7e\xde\x1a\x7d\x41\x89\xda\x43\xbd\xa0\x9d\x13\xac\xe4\x08\x54\xf0\xf6\xe0\xe3\x5a\xf1\xbd\x65\xb3\x9a\x31\x62\xc5\x6e\x22\x88\x3c\x62\x2d\x32\xbd\x13\x2c\x36\x57\x45\x3a\x04\x01\xf5\x92\x0a\xae\x97\x94\x3a\xd7\xb2\xc9\x2d\x2e\x86\xd5\x60\x55\xae\xfc\x5d\x17\x9f\x44\x26\xae\xba\xed\x28\x38\x8f\xd1\xcf\xf1\x71\x9d\xd3\x5a\x34\x2c\xca\x0c\x6a\x71\x72\xe3\xab\xab\x11\x2e\xaf\x76\x24\xb0\x05\x39\xf8\x22\xa8\x3e\xd2\xf2\xae\xe0\xef\x28\xd2\x1e\x4a\x7f\x3c\x8f\xed\x63\xaf\x69\xf9\xce\x54\x17\x78\x69\x6e\xa9\x99\xb4\xb3\x89\x16\xff\xab\x5a\xba\xfc\xd5\x3a\x57\xfa\xfe\x7a\x51\xda\x3c\xb6\x22\xfb\x22\x82\x10\x8a\xfe\xab\x87\x0c\xf6\x1d\x5e\x08\x94\xc2\xea\xa4\xbe\xde\x34\x45\xec\xeb\xcd\xa8\x67\x06\x25\xf7\xbc\x10\x91\x3f\x0a\x15\x66\xfd\x51\x8d\xcf\x61\x94\x98\x7e\x1f\xbb\x02\xa2\x2a\x72\x48\xac\xfb\xbf\xd6\x5e\x48\x27\xb1\x5f\xc9\x64\xf1\x93\x4a\x2b\x73\x90\xe5\x65\xb1\x87\x3e\x09\x51\x66\x27\xf9\x15\x8b\xc0\xba\xbf\xc1\x57\xb1\xa6\x26\xa6\xc2\x84\x5a\x49\x2b\x5a\x66\x82\x14\xfe\x8c\xfc\x1d\x1b\xef\x4d\xbc\x31\x9a\xda\x2e\x08\x44\xf5\xb4\x90\x29\x9e\xa5\x8c\x5c\xe4\x3a\xea\x0c\x4e\x4c\x54\x66\xf4\x18\x7c\x05\x78\x4a\x73\xb1\x4e\x85\xfa\xdb\x99\x24\x2e\xfa\x0d\x5f\x44\xa1\x2b\x27\x7a\xd1\x7e\x94\x74\xa3\x56\x98\x6b\xd5\x24\x43\x91\x62\x41\x02\xce\xa6\x3b\x7c\xa2\x14\x83\x57\xba\x6d\xc5\x07\xba\xaf\xa7\x11\xef\x2b\xec\x6a\x68\x92\x47\xbd\x84\x6a\x83\x6e\xb5\x33\x34\x5c\x9a\xe3\xe0\xb7\x73\xac\xa2\xce\x71\x9f\xbc\xfc\xd2\x7f\x8a\x09\x1f\x94\xf3\x37\x71\x2d\xe8\x63\xdc\xc2\x27\x22\x45\xc7\x3a\x40\x56\xfe\xf4\xb8\xda\x72\xb0\x05\xfe\x97\xc8\x0d\x90\xa2\x7b\xb6\x68\xc7\x0e\xe2\x88\xe7\xa6\xd8\xd3\x0f\xcf\x5a\x0c\xfe\xea\xee\x4d\xc7\x96\x36\xc2\xf8\xab\x73\x02\x38\x2c\xbc\xe8\xb3\xe1\x97\x7c\x58\xb3\x89\x8d\xb2\x7e\x7f\x98\xc6\x91\x13\x1c\x3f\xc2\xa1\x1a\x33\xcc\x7c\x3c\xd2\x04\xbd\xe5\x72\xcd\xe4\x56\xbb\xe3\x5f\x53\xf2\x71\xd7\xa6\x9a\x61\x8b\xcf\x1f\x6c\xda\xa2\x8c\xfb\xde\xf8\x4a\x64\x8f\x3d\x3f\xe4\x96\x82\xcc\xfb\x36\x8f\x7a\x26\x2d\x1f\x71\x4a\x8f\x5f\xde\x0e\x23\x3d\x24\xe9\x18\xf8\x12\x3a\x9c\x97\xfc\x3b\xa7\x99\x6c\x78\xaf\x95\x48\xc5\x11\x81\x8e\xf0\x70\x04\x47\xf2\xe3\x32\xbf\x3e\xa5\x2a\x25\xc0\x41\x94\x2d\x2f\x5b\xb0\x68\x91\xd9\x9c\x45\x00\x90\xac\x40\x49\xa2\x9c\xae\x75\xd6\xe9\x9b\x15\xdb\x50\x4a\xca\xf7\x14\xbb\xe0\x34\x22\x80\x0f\x54\x6e\x5e\x31\x79\x09\x05\x81\x70\x59\xe8\xe7\x1c\x29\xda\xf5\x9d\xce\xe0\x62\xc4\x9e\x6e\x42\x41\xa2\x5c\x7f\x4e\x39\xa6\x5f\x47\x62\x21\x6e\x29\xd5\x12\x87\xfa\xcd\xf5\x51\xf0\x8d\xfd\x4e\x43\xdf\x7b\x79\xd2\x24\x7a\xcb\x33\xe9\xbf\x8d\xba\x98\x71\x1f\xde\x8f\x11\x13\x1e\x86\xde\x25\xfa\x03\xc2\x0a\xd9\x30\x0e\xe5\x2f\x1e\xe3\x77\xb5\xc2\xe7\x29\xfd\x85\x76\x53\x96\x00\x42\xc3\x59\xad\x57\xf7\x70\xa4\xf8\x03\xdc\x60\x66\x37\xad\x50\xcd\x7e\x3f\x54\x85\xc4\xc6\xc8\x73\xa5\xae\x69\x02\x6f\x69\x4d\x27\x66\xd7\xf9\x09\xc1\x09\x79\x39\x35\x7c\x1e\x6a\x4e\x91\x77\x04\x79\x5d\x71\xb9\x0a\xef\x04\x4e\xdf\x68\x16\x92\xc9\x08\xa4\xf7\x14\xfe\xf9\x85\x71\x8d\x3b\x82\x7d\xb9\x8a\xf0\xf4\x9e\x0a\x97\x47\x0f\x73\xc8\xc7\x94\xbd\xdc\x9a\xce\xa4\xec\xd4\x48\xcb\x4e\xa9\x64\x3e\xad\xf2\xe7\x1d\xbe\x9f\xcb\x02\x95\x4e\x43\x5a\xeb\xb6\x04\x4e\x6f\xf9\xbe\x6e\x7f\x3e\x08\x27\x76\x51\xd4\x97\xf4\xc7\xbf\x39\xac\xde\x62\xea\x4f\xda\x59\xe5\xe0\x77\x92\xd2\x03\x91\x39\xa2\xcb\xe4\x7f\x20\x00\xc3\xb1\x8c\x9c\x6d\xd3\x86\x1a\xc6\x6b\x27\x59\xb4\x62\x65\xa8\x1f\x79\x1a\x03\x3e\x7c\x52\xa3\x04\xd0\x5c\xb3\x66\x90\x31\x52\xc8\xea\xf9\x4a\xe7\xfc\x27\x53\x80\xd6\xfc\xfc\xc1\x66\xc7\x46\x55\xe9\x4f\xf7\x5b\xd4\xd5\xfc\x06\x7d\xb1\xd6\x0c\x3a\x31\xc3\x34\xea\x49\xd4\x42\xf7\xfd\x4d\xd5\x89\x7f\x53\xcd\x0c\x0f\x6c\x5e\x64\xa9\x01\x68\x20\x42\x62\xfa\x6b\x5d\x44\x7a\x89\x7b\xf0\x60\xe4\x49\xcd\xf7\x43\xe5\xb0\xff\x8e\x1e\xb3\x09\x34\x74\x3b\xa1\xfe\x6b\xd3\x38\xcb\x1f\xf1\xd8\xcf\x1f\x4c\xa8\xc3\xa0\x0f\x27\xf5\x7f\xc3\x7b\x0d\x7e\x44\xb0\x35\x56\x32\x4f\x8f\x4a\x3d\x4a\x65\x96\x03\xb7\x1d\xd8\xb1\x19\x7a\x31\xee\x73\xa1\x4f\x2b\xad\xe5\x22\x0b\xcf\x77\x3b\x91\x5a\xf8\x58\x8d\xa6\x44\xa6\xec\x65\x1d\x1b\xa8\x8f\x3a\xa3\xe8\x28\x67\xd4\x52\x28\xca\xdc\x96\x51\x0f\xa0\x25\xf2\xbd\x89\x86\xd6\x66\xa8\x68\x2c\x6a\x14\x33\x1a\xf6\x87\x09\x55\x2c\xe8\x34\x23\x3a\x48\x2b\x87\xc7\x44\x75\xe0\xd8\x50\xec\xc7\x8b\x6a\x20\x26\xca\x06\xeb\x8f\x78\x6c\x75\x14\x7a\xad\xb1\xcb\xda\xd2\x69\x83\x5f\x11\x17\x42\xaa\x4f\xc5\xa3\x3c\xa5\xf9\xa0\x2c\x4d\xa2\x6d\x91\x27\x0c\x26\x01\xad\x9f\x74\x6a\x50\xa6\x6b\xd3\xc8\x7b\x9f\xe3\x02\x1f\x68\xfa\x38\x1b\xf0\x88\xb5\xd3\x13\x6a\xfc\x2d\x1b\xae\x5b\xad\x15\x77\x55\x8f\xab\x5f\x9d\x70\xe8\xb2\x7d\xcb\x00\xbe\x4e\x81\x71\x69\x0f\xb5\x00\xe4\x0e\xca\xd6\x9d\xfc\xa5\x73\xac\xbd\x12\x7e\x1e\xc4\xde\xb6\xe9\x4b\x55\xad\x1f\x78\x7c\xfb\xbc\xe6\xfb\x9c\x57\xc4\xbf\xa2\x34\x9d\x78\xd8\x47\x28\x91\x76\x6b\xe0\xb4\xf0\x6f\x8e\x7c\x9d\xc2\x9a\xe5\x78\x55\xff\x57\xbe\xfd\xc8\x51\x6f\xd5\xf5\xa2\xfa\x71\xda\xc1\x92\x13\x55\xf0\xc0\xcd\x6c\x9f\x9e\x2a\x3b\x5e\x58\x9a\x23\x7d\x4b\xf2\x26\x00\x4c\x30\xd3\x52\x60\x0c\x74\xd6\x50\x76\x6e\xab\x33\x80\x7c\x69\xd8\xe1\x21\x1b\x54\xb0\xd0\x92\xc4\xcd\xe5\xf4\x0f\x7b\x82\x76\x03\x89\xab\xc4\x0b\x0a\xf3\x28\x42\xb1\x42\xf8\xb8\x4e\x8e\xae\xcc\x4d\x5a\x24\xc3\x22\x22\x8b\x29\xf7\xba\x9d\x0a\x75\xc2\xbd\x35\xfb\x5a\x9a\x23\x53\xaa\xdc\x16\xe5\xd6\x56\x8f\x97\x8e\xfe\x6e\xe8\x89\x24\xe7\xea\x8c\xbb\x92\x38\xb2\xa9\xdf\xed\x9c\x62\xb5\xf3\x83\x3b\xa5\x3c\x62\x3f\xac\x15\xbe\xea\xe5\xa6\x40\xf4\xc5\x5b\xf8\x23\xfa\x0d\x3e\x9e\xe8\xcd\xd9\x3c\x7d\x12\x8f\x18\xc4\xbc\x6d\x63\xa5\xb3\xfb\x7d\xd5\x78\xdb\x98\x90\xb0\xa3\xa1\x42\xf5\xba\x7f\x5d\x1c\x82\x95\xfc\xdc\x99\x50\x91\x58\x77\x90\x83\x06\x4b\xa5\x02\xf3\x99\xa0\x1e\x39\xbb\x6e\xa7\x52\x0b\x9d\x42\x16\xdc\x45\x2e\xc4\x62\x53\x78\xdb\xc4\xbc\xad\xfa\x66\x88\xe0\x1b\xe1\xd6\xa4\x92\x50\x2a\xbb\x56\x24\xb6\x2c\x6d\xde\xd0\x86\xa9\xf0\x24\xc0\x97\x6e\x50\xcf\x44\x78\x75\x8a\x2a\x59\x9a\x92\xe8\xbc\xa4\x55\xe2\x44\x3e\xaa\x1b\x84\x8b\xff\x0c\x51\x87\x9d\xb3\x46\x6a\xe7\xe2\x91\x74\x5c\x24\xe4\xcc\xf0\xb5\xde\xa5\xaf\x85\xf4\x0f\xbd\x1a\xa0\xb3\x57\xa7\x2e\xfe\xd0\xf3\x18\x48\xe8\x43\x22\x21\x70\xe2\x59\xd7\x29\xa3\x55\xe2\x64\x5f\xe7\x8d\xe9\xf8\x68\xb7\xec\x19\x71\x4a\xb2\x30\xa2\x50\x4e\x77\x4c\x44\x92\x26\x44\xcd\x03\x67\xcb\x02\xaa\xbb\xe8\x98\x4f\x88\x9d\xfb\xe0\x37\xb0\x79\x9c\x75\xf6\x78\x56\xd8\xc9\x50\xc1\x4c\x3c\x7b\x0f\x70\xe8\xdf\x84\xbe\x9f\x7b\x3b\x54\x2a\x49\x1f\x8e\xfc\xb0\xf4\x1d\xad\x0c\xfa\x0e\x2e\x0d\x71\xf4\x0d\x65\x1a\xb1\xa8\x27\x37\x8e\x61\xfb\xc4\x57\xbe\x8b\x2c\x97\x4f\x42\xad\x75\xbd\xf6\xb8\xaa\xce\xc1\xbf\xc5\x24\x11\xc7\x5d\x91\x7e\xac\xbe\xb5\x93\xb6\xa9\x3e\x06\x19\x15\x91\x17\xb9\xad\xb5\x89\x54\x0b\x29\x1c\x4b\x62\x61\x2d\xb3\xf2\xb0\x40\x26\xd5\x83\xc1\x5e\xfe\x14\x21\x34\x00\x0c\x5f\x0f\xf5\xb3\xf0\x77\x7c\xd7\x58\x8d\x74\x3f\x31\xa5\xef\xba\x6f\x7f\x33\xb7\x89\x29\xa5\xb9\x88\xb4\xef\x26\x1e\x8d\xb8\x19\xf8\xcc\xf9\x5b\xae\xa7\x44\x58\x6b\x62\x67\xbc\x42\x02\x4b\x38\x63\x89\xdf\x53\x1d\x78\x2c\x41\x6e\xf1\x8d\x9e\x9e\x44\x1b\xbf\xdc\x3c\xb0\xd0\xa8\x1e\xb5\x48\xb8\x78\x32\xde\x19\xdd\xf8\xb9\xa2\x07\x51\x6d\x87\x67\x0b\x45\x83\x76\x2b\x77\x48\xd0\x46\x35\xbf\x76\xb1\xd6\x18\x32\xed\xc0\x3a\xdc\x71\xcd\x4f\x28\x45\xc2\x13\x13\x61\x2c\x8f\xb3\x86\x2f\x01\xd0\xe9\xc0\x1d\xda\x3e\x56\xc3\xdd\x0f\x31\xe7\xc9\xbf\x94\x66\x4f\xd1\x63\xc5\x6e\x73\x1b\x2f\x09\xf7\x39\xb0\xc6\x9c\xec\x59\xf5\x27\xb0\x14\xb6\xb7\x74\x0f\xe7\x72\xe8\x25\xf9\x9e\x19\x6b\x98\xc8\xa3\xfc\x27\x91\x72\xa2\x2c\x9c\x19\x07\x2f\x2c\x7a\x23\x65\x57\x93\xc3\x40\x17\x2b\x6f\x16\xdd\x55\xc4\xa6\x9f\x6c\xa1\xbf\x68\x48\x9b\x56\x85\x93\x33\xf5\xd3\x15\x17\x46\xda\xe2\x6c\x39\x4e\x4d\x1a\xc9\x4c\x81\x40\xa3\x1e\x69\xff\xf6\xc8\x0f\x59\x7e\xaa\xcd\x18\x20\x22\x91\xac\x43\xb7\x0c\x21\xeb\x78\xe8\xfb\x8f\x97\xc1\xbf\xe1\x7f\x18\xa9\xe2\x17\x03\x75\x8e\x8d\xe4\x6a\xf9\x93\x7a\x92\xff\x81\xde\x1f\x1e\xa8\xac\x69\x39\x31\x03\xb6\x88\x65\xa2\xcf\xc8\x8f\x69\x9c\xa9\xcb\x41\x12\x71\x23\x74\x6e\x3e\x8e\xcc\x74\x79\x0a\x69\xd8\xb7\x8f\xf5\xfb\x07\xd6\xe4\xf6\x6f\x9a\x31\xa9\xf9\xa4\x76\x6c\x18\x32\xc5\x8a\xc2\xe0\x1f\x1f\xbb\x94\x3d\xca\xe3\x32\x8e\xe8\x8a\x70\x13\xc0\x6d\xe1\x63\xc5\xf0\xde\xfb\x73\xff\x59\xe0\x9b\xd1\xec\x00\x25\x83\x88\xb5\x20\x77\x9c\x4a\x7d\xea\x74\x8f\xaa\x5b\x2a\x24\x1c\x2f\xab\x18\x99\x2e\x03\x47\xc8\xac\xf0\x4c\xf8\xb8\x4e\x98\x3e\x35\x7d\xbb\x55\xb7\x47\x34\x46\xa3\x2c\xcf\x6d\x31\xc8\x48\xab\x00\x79\x89\xf8\x6c\xf9\x35\x8c\x8e\x91\x88\x1f\xd5\xb5\x3b\x72\xfb\x12\x8d\xb7\x04\x4a\x66\xf4\x35\x5a\x8a\x7c\xec\x2a\xf1\x4e\x9c\xdb\x48\x34\x72\x9c\x23\xe8\x92\x77\x65\x78\x4c\x09\xdc\x47\x96\xe0\x5f\x96\x77\x56\x1b\x3b\x3f\x4f\xd1\x7d\xae\xde\x49\xfe\x07\x85\x46\x66\x43\xf2\x06\x97\xdc\xe6\x01\x72\x0d\x64\x40\x0f\xf1\x07\x98\x9c\x40\xe1\x5d\xa4\xd6\x7d\x76\xf5\xdb\xd8\x36\x00\x8e\xbc\xad\x2d\xd9\x36\x47\x9e\x8f\x8e\x36\xab\x30\x83\xfc\x8e\xfa\xd2\xb0\xdf\xce\x0a\x72\x3a\x76\x53\xea\xde\x12\x4f\x35\x91\x89\xee\x41\xfd\xf4\xea\xad\xe3\x6c\x24\x54\x70\xf2\x09\x35\xfb\x58\x94\x71\x5e\x04\xc1\x57\xbe\x22\x2e\xad\x10\xf6\x10\xcb\xd6\x69\x88\xe4\x60\xb3\x6f\x4b\xd6\x6c\x06\x4e\x8a\xa2\x80\x8f\x6b\x68\xc2\x07\x45\xe9\x9b\x9f\x92\xe4\x8c\xf4\x76\xf0\xc9\xd4\x07\x1d\x9e\x6b\x26\xaa\xa7\x8d\xba\x02\x84\x7b\x3e\xae\xf9\x95\x23\x72\x6d\xae\xaa\xbb\xa0\xca\xa8\x69\x1d\xaa\x03\x0b\xcd\x28\xc9\x4a\x3f\x26\x89\x80\x09\xf5\x59\x3e\xae\x11\x86\x3f\xd8\xec\x90\x95\x48\xdb\x76\x66\xbc\x93\x0a\x9b\x79\xcb\x24\x7d\x43\xb9\xe7\xe3\xd5\x13\x12\x48\x0d\xc9\xbc\x18\xb6\xfb\x71\x1a\xf7\x87\x40\xdf\x1d\x20\xe9\xb8\x15\xe8\xc5\x01\xd5\x3b\xa1\xd7\xb4\xc9\xed\xae\x2a\x30\xc8\xec\x3d\x5d\x83\x93\x78\x5e\x9a\x13\x9a\x14\x16\xab\x58\x0e\x2b\xfa\xda\xe9\x29\x63\x3a\x19\xfc\xa4\x85\x20\x65\xad\x87\x04\x12\x10\x51\x76\xaa\x56\x2b\xf8\x8e\x3c\xae\xa6\x4c\xac\xaf\xa8\x57\xec\xbe\x1a\x0f\xbe\x43\xcc\x19\x21\x46\x2b\xbf\x97\x3a\x5c\xa9\x17\x97\xd2\xe9\x01\x51\x0a\x10\x3f\x1f\xab\xd9\xed\x65\x53\x94\xa2\x37\xec\x84\xb1\xab\xa7\x2a\xc2\xd8\x42\x23\x29\xf3\x8c\x75\x1d\xb1\xa7\x40\x70\x56\x51\x44\x16\x1d\x03\xd8\x4f\xf1\xac\xf5\xb2\xc4\x16\x59\xdf\x2a\x23\xe1\xd3\xca\x48\xf8\xb4\xba\x92\xea\xc7\x3a\x66\x9d\xea\x48\xb1\x4b\xd4\xfc\x90\x9a\x21\xdf\xe5\xb8\x3b\xcc\xc5\x83\x19\x19\xe0\x7d\x3c\x33\x3e\x51\x84\x83\x64\x48\xf0\x5c\xf5\xd9\x28\x2f\xd0\x3e\xe4\x63\x95\x63\x0d\x6c\xdc\xf0\x83\x6b\x78\x1a\xf8\xca\x6f\x8c\x14\x3d\xf7\x66\x9d\x4f\x6c\x27\xeb\x1b\xc6\x0c\x9c\x6e\x83\xd7\x70\x98\x2a\x42\xf6\xed\x6b\x0e\xd3\x62\x38\x18\x64\x79\xc9\xd7\xe6\x1a\xf7\x9e\xd6\x71\x49\x7d\x8b\xdc\x46\xd9\x70\xa0\xe7\xa7\x46\xea\x27\xcf\xd5\x11\xe0\xca\x3c\xa6\x52\x4b\x4f\x70\x2a\x8a\xff\x3b\x1a\x80\xca\xe0\x50\x60\x31\x65\x08\xbe\x08\x0b\xae\xf1\x89\xc3\x78\xa2\x2c\x49\xfc\x26\x22\x81\xbf\xe1\xdd\xdb\x2f\xd4\xf4\x74\x9a\x49\xdc\x8f\xdd\x16\x25\x22\xef\x81\x93\xd2\x3f\xa5\xe7\xea\xd7\xa3\xc4\x16\x0d\x65\xd2\x80\x8e\x9e\xa3\x31\x39\x2a\xc0\x6b\x53\xb4\xc5\xf9\xf9\xe6\x4b\x4e\x25\x5e\x8b\xac\x48\x59\xac\x1c\x5c\x6c\x64\x92\x04\xbd\x3e\x74\x32\xaf\xd2\x02\xe5\x63\xd5\xc8\x5c\x35\xac\xfb\x75\x60\xc1\x79\xbb\xd3\x07\x88\x4c\x8a\x12\x70\x7b\x53\x8b\xf4\x5e\xaa\x79\x43\x0f\x36\xad\xe9\xda\xbc\x41\xdb\x0d\x0b\x32\x28\x63\x93\x9b\xa1\x57\xc1\xbc\xa8\xf4\x27\x0a\x9b\x97\x45\x43\x8d\xc4\xed\x00\x4d\x0d\xc9\xf0\xb6\xb1\xef\x17\x4c\xab\x37\x1d\x9e\x5b\x68\x76\xf3\x6c\xcd\x05\x6e\x14\xa0\x60\x61\xf1\x71\xe8\x1f\x2f\x13\xed\xab\xeb\x00\x34\x00\xe6\xba\xce\xae\x85\x7f\xaf\x7e\x69\x90\xd0\x0b\xe0\x5a\x59\xb8\xed\x82\xf6\xd7\x25\x5d\xeb\xb1\x4d\x3a\x70\x19\x93\x00\x48\xaf\x99\x88\x69\x55\x7f\x4b\x56\x62\xb0\xd5\x71\x0c\x6f\x56\x03\x3d\x4b\x24\x47\x67\x95\x7d\x55\x94\xa5\xcb\xb6\xc3\xa6\x1b\x9c\x8c\x02\x97\x62\xae\x2f\x9f\x4c\x3d\xa0\x03\x0b\xcd\x2c\xb7\x5d\x76\x4b\x40\x7e\xcd\xa3\x05\x7c\x32\xd5\x08\x39\x3c\xd7\x2c\x7b\x39\x0d\x18\xf8\x6a\x1c\x00\x34\x1f\xab\x0e\xce\x72\x96\x95\x3d\xf2\xe5\x59\x70\xee\xf4\x78\x11\x84\xac\xf3\x94\x12\x38\x5d\x8d\xbd\x53\x14\x78\x11\xb0\xc8\xe3\xe3\x1a\xf3\x82\x85\xa6\x59\x33\xb9\xa5\x40\x26\x16\x46\xc1\x16\x21\x12\xd4\x5f\xd3\xb2\xb4\xfb\x0f\x35\xa3\xc4\x14\x85\xca\x08\x98\x89\xc8\x27\x75\x53\x0f\x9d\x3c\xf6\x9a\x44\x6c\x46\x44\xef\x91\x18\x13\x79\xbc\x70\x25\xcb\xad\x49\x67\x34\xf6\x79\x41\xb5\x98\xfe\x40\x51\x6e\x58\xef\x98\x7f\x68\xaa\xd8\xe0\x9c\xdd\xa4\x11\x8d\xa8\xd3\x22\x70\x8d\xd2\xea\xf1\x4a\xbf\x68\xaa\x93\xbb\xb4\xd8\xcc\xda\xab\xa8\xc0\xd0\x95\x06\x80\xf4\xc7\x0a\x23\xfb\xe3\x5a\xe3\xff\xc8\xa6\x55\x1c\xe0\xbd\x10\x7d\xee\x9b\x74\xc9\x2c\x15\xae\x85\xf3\x2e\xab\x40\x43\x9a\x22\xc3\xfe\xac\xd7\xaf\x7b\x55\x69\x47\x7d\x86\x72\x8f\xff\x41\xb1\xa3\x78\xe6\x13\x31\x75\xcf\xd4\xaa\x23\x3f\x9f\x6e\x96\x61\xf7\x10\xcd\x69\x3f\xfe\xf5\xd6\x34\x31\x66\x7f\x73\x8d\x80\xd4\x09\x55\xdb\x6f\xa9\x12\xf9\xa8\x96\x50\xfe\x60\xaa\x9a\xa9\x6a\x8d\xc4\x16\xc5\x8c\x0f\x93\x0f\x00\x14\x01\x41\xdb\xa4\x35\x8f\xd7\xf7\xcf\x50\xea\x8b\xc4\xbe\x8a\xee\x36\xb7\x26\x69\x6c\xc5\x5d\x39\xa0\x87\x4a\xef\xf0\xd2\x24\x16\xd1\x2f\x9e\x50\xee\x18\x0f\x47\x5e\xb7\xe8\x4e\xa8\x00\x87\x4f\xf0\x1d\x88\xe5\xf7\xab\x5f\x1a\xfb\x5d\xf8\xd1\x96\xea\x22\xdd\xa5\xc7\x2d\x70\xa3\x16\xc0\xbf\x8c\x0b\xc7\xc6\x1f\x68\x75\xc0\x7f\x01\x96\xa5\xc0\x0f\xd5\xe3\x64\x5d\x39\xed\xa8\x16\x2a\xc6\xfa\xb9\x90\xa8\xde\xc2\x80\xf5\xbc\x23\xa9\x22\x8f\xb8\xca\x51\xcd\xa9\x9d\x54\x6b\xa7\x1f\x47\x3d\x63\x13\x1a\x11\xc6\x25\x7d\x40\x5f\x5c\x9c\x5b\xaa\xd7\x7c\xc2\xd2\x45\xbe\x84\xdf\xc6\x59\xeb\x4b\xa8\x58\x74\x13\x84\x8b\x55\x67\xd9\x53\xed\x14\x14\xc7\x27\xe8\x3d\x7c\xa2\x0a\xbc\xff\xfc\x9f\xfc\x1c\x2d\x3d\x3c\xfb\xdb\x44\x79\xe3\xe3\x29\x4d\x21\x52\x3e\x59\xc7\xf6\x85\xf4\xea\x04\x37\xb7\xa4\x77\x49\x17\x8f\x9c\xff\x6e\xa8\x09\x00\x1d\x9b\x3c\x12\x28\xbf\x42\x5f\xd7\x03\xb0\xc5\x38\xc2\x51\xfe\x73\x40\x2c\xdf\x18\xa9\x88\x79\x5e\xf5\xca\xbe\x83\x8c\xdf\x71\x74\x96\x44\xc9\x9b\x57\xbe\x4c\xf4\xe9\xb9\x33\x48\xef\xd2\x76\x28\x83\xaf\x81\x53\x4e\xc6\x2e\x25\x2c\xb1\x3a\x3f\xc9\x9e\x93\x77\x92\x61\x03\xce\xf1\xf8\xa4\x4e\xc8\x96\x30\x83\xc6\x16\xbb\x09\x51\x9e\x38\xa1\x67\x75\xae\x4d\xc8\x70\x74\x87\x3c\xbf\x84\x9e\xd3\xad\x91\xb7\x99\xbf\xa5\x74\x44\x7a\x71\x52\x0e\x53\x2b\xfb\x22\x02\x35\xdf\x01\x3e\xa9\x19\x2e\x3c\xd8\x34\x49\x62\xbb\xf2\x5d\xa4\x9f\x4a\xdf\x85\x4f\x46\xcf\xe8\xec\x2a\x5b\xb5\xb9\x58\xe4\x49\x85\xec\x69\x2f\x37\x26\x9e\x72\xf1\xf7\x50\x87\x3a\x43\x91\x03\xde\x41\x46\xd5\x2c\xe4\x6e\x8f\xaa\x1e\x75\xc4\x2e\x2a\xff\xf9\x78\xec\x1f\x9b\x4d\xcb\x38\x47\x7f\xd7\x01\x00\xa1\xf6\xc4\x7f\xd4\xf1\x75\x39\xff\x66\xce\xba\x1e\x65\xb9\xa3\x34\x9c\xc4\x17\xbc\xd8\x4d\x37\x6d\xf3\xea\x48\x53\x81\xfd\x5c\xde\x5d\x78\x31\xe0\x3b\x5e\x52\xce\x48\x0d\xa0\xd2\xce\x77\xe7\xf0\x9c\xfc\x03\x61\xc5\x28\xe9\x76\xb7\x28\xc4\xf0\x6f\xd3\x5d\x10\xfe\xc6\xd3\xae\x1c\x33\xcb\xcb\x71\xb4\xb2\x65\xba\xfe\x9a\x72\xcc\xba\xe6\x93\x39\x9b\xc4\x7d\x9b\x5a\xc6\x9f\x46\xc0\x9f\xc2\xc7\x94\x6e\x5d\x0a\x02\xa4\xa3\xff\xef\xdb\x27\xef\xca\xc8\x7b\x8c\x5f\xc3\x7b\xe3\x8c\x9a\x9c\xfa\x48\xdd\xa0\xf3\x41\x36\xb2\x93\x95\x82\xc0\xc8\x43\x42\x7c\xa2\x44\x4b\xa2\xbd\xc1\x84\xf4\x3d\x16\xa5\xb4\x0e\x3c\xf6\xb2\x96\x65\x1d\x14\x89\xac\x66\x8e\x05\x2b\xd2\xe6\x1e\xfa\x89\x12\x13\xf7\x8b\x27\x35\x84\xa3\x44\x9f\x8e\x8f\x34\xd0\x43\xac\x21\x86\xce\x55\xf6\xcf\xfd\x07\x71\x55\x51\xf9\xfd\x15\x84\x16\x24\x44\x3c\xd9\x86\x97\xb4\xd1\xf2\x1e\xfd\x3f\x1c\x79\x1c\x6b\x1b\x91\xe4\x64\xd8\x9e\xee\x08\xb2\x13\x08\x6c\x4d\xb4\x87\xa5\x5b\x8b\x7b\x80\x7d\xe3\x9e\x8a\x46\xa5\x4d\x92\xd2\x24\xe8\xb9\x02\x3b\x39\xa5\x14\x09\x4f\xe9\x39\x83\xb2\xcc\xe3\xf6\xb0\xe4\x7d\x46\x3a\xf5\x74\xc1\x7c\x12\x6e\x99\x73\x38\xf4\x7c\x15\xa8\x1f\xf1\x22\xc1\xbb\x21\x1b\x82\x3e\xe0\x51\xb5\x65\xc2\xda\x18\x68\xc7\x09\x35\xc1\x7e\x1f\xc9\x0c\x78\xdf\x8f\x40\x00\x5c\x3c\x3c\xe8\x93\xb1\xcd\x9f\xc4\xb7\x05\xc4\xfd\x60\xaa\xe1\x5b\x2d\xa1\x2a\x7e\x74\xd3\xf8\x15\xab\xb6\xa2\xa3\x7a\x2b\x3a\xea\xe6\x67\xd6\xe2\x32\xea\x35\x3c\x88\x78\x4e\x79\x46\xde\x51\x0f\x75\x9a\xab\x3c\x3f\xdf\xb4\x26\x67\xa9\x3e\xfa\x85\x7f\xfe\x24\xbd\x8d\x7c\xac\x02\xca\x20\x4b\xe2\x32\x8e\x8a\x5d\x74\xe5\x78\x32\x37\xe8\x8e\xa0\x16\xba\x35\xf2\xd3\x64\xd7\x90\x28\x88\x6e\x31\x21\x43\x48\x6b\x6f\x6a\xd9\x70\x7a\xbd\xc1\xf7\xb9\x85\x0c\x86\x7f\x48\xc1\x98\x34\xdf\x02\x9f\x08\x67\xa0\xa7\x34\xfc\x95\x60\xc0\x9a\x4d\x92\x62\xc6\xbf\xb2\xc7\x34\x4d\xf4\x18\x00\x4d\x11\x76\xd1\x2a\x2f\xaa\xf0\x5e\xce\xb3\x57\x6c\x1a\xa8\xe6\xeb\x85\xd0\x8f\x2e\x1c\x9c\x9e\xfa\xd9\xb7\xaf\x19\xf5\x6c\xb4\xd2\xf0\x5c\x09\x26\x2a\x0a\x95\xcf\x63\x3a\xf7\xeb\x60\x93\xa8\x37\x4c\xc5\x93\x83\x93\x3e\x5a\xce\x3e\x01\xf4\x5b\x44\xdf\x82\x17\x86\xa6\xe0\x3d\xa4\x56\xb8\xf9\x77\x94\x5b\xcd\x9f\x53\x4e\xc4\xff\x1f\x37\x0b\x17\xc0\xcd\x3a\xe4\xd3\x7a\x22\xa7\x9f\x75\x6c\x4e\x4b\x4d\xab\x67\x85\x5a\x64\x4b\x21\x5b\x45\x96\x76\x8b\x92\x85\x90\x17\x26\xc6\xa6\x24\x24\x3e\xad\x64\x6d\x3b\x65\x9e\xa5\x71\xb4\xc3\x9b\xe1\xea\xc2\x38\x68\x55\xb1\x01\x19\xed\x19\xfa\x1b\x62\x01\x59\xad\x0d\xc4\xca\xdb\x23\xf5\x02\x7f\x67\x4a\x2b\x8f\x68\x78\x10\x11\x33\x6d\xb6\x45\x12\x0a\x41\xa0\x44\xe6\x1f\xf7\xf0\x4d\x97\x40\x21\xd7\x06\x7e\x4f\xf7\x0c\xdf\x53\x40\x00\xf6\xef\x19\x4f\xf3\x62\x61\x79\xdc\xdc\x4b\xe8\x9a\xc9\x6c\x68\xf5\x59\x12\xb4\x3d\xf9\x77\x35\x8e\x40\x2b\xc1\x82\xb8\xa3\x72\xfd\x9b\xf4\x1d\x85\x87\xb1\x35\x75\x7a\xf1\xc5\x26\x61\xbc\x8c\x4f\x8b\x7d\x50\xf5\xeb\x7c\xbc\x35\x7a\x2d\xcd\x2d\x35\xf7\x1f\x7a\x44\xd5\x08\xb7\xd4\x08\xf1\x8f\x11\x79\x1d\x9e\xe4\x52\x81\x37\x11\x98\x90\x12\x9e\x9f\xa4\xea\x7b\xd6\xff\x55\x6c\x80\x22\xc5\x4f\x4f\x44\x5c\xae\xea\xb0\x8d\xa2\x67\x73\xab\x33\x9a\x91\xa6\xc1\x4d\x95\xa5\x04\xad\x9b\xa2\xc8\xb3\x4c\xb4\xe8\x71\xd9\xbf\xa3\xdc\xa4\x7f\x47\xc1\x81\x76\x79\x39\xcb\xcb\x5d\x1e\x91\x7a\x1f\xd7\xe4\xe8\xa7\xd5\x9f\xe0\x93\x50\xe5\xd6\xbf\xc3\x5b\x0b\x9f\x29\xd2\xcc\x7d\x25\xec\x03\xe1\x23\xd4\x84\xdf\x9b\x0a\xcf\xfb\xf6\x55\x25\xed\x6a\x95\x62\x4d\x02\x4a\xc8\xb4\x65\x6c\xe5\x31\xed\xb6\xb0\x02\xc5\x49\x70\xa4\x20\xbd\x86\xc5\xc2\x1d\x6f\x3e\xa1\x1d\x91\x7f\xc8\x2d\xc4\x81\x89\x53\xd7\xb2\x46\x0e\x8c\xb1\x15\x3e\x56\xe5\x92\x1d\x14\x71\xd6\xb1\x0d\xc5\x9d\x01\xb8\x82\x6d\x0b\xf0\x87\xf0\x42\x1f\xf5\xe6\x94\xc5\xff\x8f\x82\xb4\x73\x10\xae\x9e\x35\xbe\xfe\x7b\xa1\x9a\x5b\xbc\xad\xa4\xc9\x40\xa4\x41\x33\xe3\x2f\x31\x86\x8b\x9b\xb7\x73\xec\x79\x24\xbf\x8b\x28\x85\xdf\x98\x1d\x63\xc0\x16\x8b\x68\x66\xac\x06\x98\xb7\xb5\xbc\x17\x19\x8f\xdf\x39\xe3\xa4\xea\xab\xe0\x5a\x60\x9c\x81\x77\x0c\x59\x23\x5e\xbe\xd9\x56\x55\x14\x49\x90\xc6\x03\xe6\x91\x7a\xa4\xe7\xc8\x0e\xd8\x77\x12\xe5\xe2\x76\x12\x76\x00\x54\x30\x3b\xa6\x9c\x15\x6c\x65\x46\x7c\x80\x6f\x30\xdb\x19\xcd\x9d\x5b\x0a\xaf\xbd\x83\xa0\xc4\x0a\x21\x8a\xbe\x85\x88\x86\x6b\x61\xe2\xb3\xd8\xaa\xfa\x49\xe9\xb5\x8c\x36\x2a\x36\x83\xc3\xae\x2e\x32\x2b\xda\xb2\xce\x7f\xad\x2b\xe1\x4f\xc9\x64\x6f\x9c\x75\x73\x33\xe8\xd9\xfc\x9f\xfd\x43\xd5\x10\x76\xc6\x39\x2e\x40\x5c\xd1\x12\x36\xf1\xaa\xcd\xcb\x2d\x43\xb3\x8a\xc1\xfe\x2d\x3f\x0d\x99\xa5\xb6\x80\xd0\xa0\xdb\x70\xab\x67\x8b\x5c\xee\x23\x25\x1b\x72\x7b\x8a\x5d\x51\xbd\xc5\x64\x83\x65\x1b\x5a\x61\xfd\xfa\xc8\x83\x44\x9f\x84\x13\x6e\x5f\x3e\xbf\x30\x65\x69\xfb\x83\x92\x77\x15\x04\xed\xeb\x4a\x32\xea\xba\xe6\xdd\xe5\xab\xdc\x2f\x16\xba\xec\x4f\x42\x05\xa3\xfe\x10\xa1\x0e\xd0\xcb\xaf\x8f\x7e\x6a\x32\x4c\x2e\xee\x3f\x24\x5c\x47\xd4\x8a\x52\x94\x56\xcb\x59\x6a\x52\x3f\x7b\x62\x3a\xd4\xc6\x75\x0e\x2f\xa1\x77\x7e\x79\x17\x8b\x03\xd9\xe1\x4d\x4d\xed\xd8\xdd\x52\x93\xa6\xb7\x94\xed\xff\x19\x2c\x67\x47\x77\x73\xf4\x39\x4c\x95\x00\x3b\x0b\xc6\xcf\x4e\xab\x30\x2d\x2d\x12\xf3\xca\xe9\x50\x55\xaf\xd5\x84\x01\xa8\x73\x83\xa8\xd6\x38\xbe\x3b\x26\x8c\x90\xa5\xfe\x44\x89\x6a\x9c\x52\x8c\xd9\x32\x33\x9d\x40\xb5\x22\x4f\x8d\xd4\x1b\x73\x2a\x7c\x46\x59\x1a\x0c\x9c\x8e\xad\xb2\x10\x53\x62\x1f\x57\x42\xe1\x89\xf5\xad\xa1\x60\x05\xac\x69\x43\xbb\x42\x6f\x4c\x94\xbd\x26\x5f\xd9\xad\xe4\x63\x2f\x10\x88\xe2\x6a\xe0\x25\xc1\xbf\xef\xaa\xa9\xcd\xef\x8f\x14\xee\x0f\xf6\x81\x2e\x04\x94\x10\xf4\x7e\x5e\x0f\x7f\xaa\x45\xd2\xaf\x73\x7d\x85\x2d\xe5\xdf\x4f\x6d\x5e\x2f\xbe\xa8\x11\x3a\x14\x27\xd8\xb5\xf1\x29\xef\x6b\x60\xf6\xda\xd4\xb6\x4d\xe4\x2a\x13\xf5\x6c\x67\x46\x0d\x3d\x30\x81\xdb\xd5\x0e\x0e\x93\x3b\x33\x52\xa6\x98\xdb\x5a\x35\xa2\x59\x71\xda\x89\x23\x53\xca\xa4\x14\x2b\xd1\x60\xb9\x8b\x2c\x8d\xcf\xb7\x4c\x87\xb8\x7d\xd5\x4f\xbf\xe0\x9c\xa4\x4e\xd1\xa3\x97\x9e\x53\x8d\x73\x79\x14\xe7\xd1\x30\xf1\xb3\x3d\x00\x91\xb8\x60\xe5\x93\x3a\x6a\x47\x3b\x31\xdc\xe0\x44\xe4\x7f\x3b\x54\x1a\xe6\x6f\xab\x26\x70\x27\xeb\x92\x1a\x9e\x9f\xad\xbf\xa5\x24\x52\x6f\xa9\x91\xc8\x35\x23\x63\xab\x08\xc0\xe0\x76\xf1\xf1\x16\xaa\x7e\x8f\x70\x7e\x87\xf3\x6d\xd2\x53\x72\xaa\x62\x4b\x73\x0e\x5b\xfb\x3c\xaa\x73\x99\x75\xc9\xbb\x7f\x56\xd1\x39\xce\x8d\x3c\x13\x69\xa6\x15\xfc\x92\x38\x51\xfe\xb7\x8a\xce\x74\x46\x5b\xec\x78\x28\xc5\xae\xdb\x62\x27\xbd\x4a\x4e\xf1\xc1\xe1\x76\xa7\xb1\x6a\x29\x88\x2c\xfd\x74\xcb\x8b\xaa\xe2\x05\x82\x88\xdd\x0e\x52\x3c\x14\xcd\x66\xfa\x0c\x31\x93\xab\x5d\x19\x55\x35\x6c\x65\xb8\x4c\x38\x5a\x9e\xcb\x76\xc1\x11\x87\x3a\x26\x59\x61\xef\x75\x67\x2f\xb9\xe0\x8c\xb3\x1f\x84\x7e\x6e\xef\xbc\x92\xab\x5d\xcd\xba\x36\x29\x4a\x1b\x73\x63\xc7\x11\xaf\x14\x55\x4b\x3b\x58\x90\x3b\x37\x4c\x34\x81\xec\x6c\x54\x37\x60\x73\xf7\x58\x19\x6c\xdc\x0d\x55\xf0\x38\xa1\x34\x15\x6e\x7e\x91\xc6\xc0\x9c\xb9\xdc\x0b\x4b\x73\xce\xa1\xcb\x93\x19\xfe\x54\x69\x41\xc4\xfd\xea\x23\x4d\x69\x93\xf5\x5d\x0a\xd2\x78\x38\x52\x28\xeb\x87\xaa\x89\xf6\x40\xb3\x3d\xef\x00\x07\xc6\x02\xfc\x10\x81\x5c\xb6\x50\xba\x9d\x7a\xcb\x07\x36\x75\xd5\xd1\x60\xd3\xbd\x3d\x5a\xf5\xcc\x3b\xc6\xb7\x10\x12\xb2\x47\xeb\x7a\xa6\xdf\x37\xd1\x0a\x5e\x45\xe7\x68\x7b\xc0\xb9\xdb\x7a\x5e\x57\x36\x88\x6d\x8e\xea\x0b\x69\x00\x1c\x28\xf9\xb8\xe5\x8b\x2f\xa9\x49\x8a\x49\xf9\x56\x45\xfc\x78\x46\xcd\xe0\x95\xa6\x9d\xb9\x19\x4d\x6c\x16\xd0\x18\x14\x49\x4f\x45\xd9\x7d\xc7\x69\x81\x2f\xc7\xb9\x6d\x53\x67\x58\xf5\x78\xaf\x4c\x70\x2c\xb7\xae\xc6\xc5\xe7\x0f\x36\x07\xd9\x60\x08\xc2\x9c\xcb\x40\x3e\x54\x36\x7e\x1f\xaa\x6c\xa4\xfa\xc1\xf2\x15\x66\x69\xb0\x1e\x65\xe8\xa9\x03\x17\x54\xeb\x99\x89\x0e\x3b\xe9\x69\x09\xb3\x80\x1e\x10\x1e\x2a\xb4\xd3\x44\x67\x98\x51\xbe\xea\x99\xa3\xc6\x82\x1c\x9d\x33\xeb\x77\x72\x36\x93\xfa\x9b\x26\x2f\x9e\xa5\x9b\xcf\x36\xd1\x14\x2f\x1d\xe3\xd2\x4d\xdb\x9c\x0b\xd5\x2c\xdf\x3f\xc7\xcd\x13\x97\x7c\x07\x8a\xee\xdb\xe7\x4c\x96\xe8\x9a\xb1\x51\x30\x25\x17\xa1\x04\xf4\x2d\xc0\x42\x33\x2d\xc5\x24\x3a\x47\xdb\x1f\x96\xf1\x17\xe8\x75\x40\x2c\xb8\x41\x79\x2f\xa7\xdd\x1a\x70\xbe\xa5\x95\xc7\x76\xa1\x31\xec\xbc\xb2\xaa\x55\x87\x97\x1a\xec\x4a\xa7\x61\xed\xc6\x98\xaf\x29\x9b\xcd\x8e\x49\x63\x9b\x6c\x05\x5a\x16\x1d\xd0\x52\x03\x1d\x91\x12\x7c\x30\xa9\xfe\xee\x24\xc1\xae\xa8\xdc\x2e\x1d\xf6\x6d\x9e\x0d\x21\x76\x88\x0c\x09\x43\x9f\xe8\x28\x07\x50\x54\x10\x07\xea\x3d\xea\x0d\xcf\x18\xa2\x47\xf0\x60\xd2\x2d\x9f\x38\x17\x85\x32\xeb\x67\x79\x9e\xad\xd1\x5e\xc0\xe1\x36\x54\x36\x2c\x6f\x8d\xbc\x63\xe9\x7b\x4a\x1f\x8d\x28\x72\x58\xe4\x75\x08\xf9\x53\x13\x9e\x65\x89\x2d\xa1\x58\x22\x32\xab\xb8\x30\x3c\xa0\x53\x80\x02\xb0\x4d\x9d\xc7\x43\xc1\x62\x7d\x08\x00\xc9\x95\x62\xae\x27\xfe\x70\x34\xf1\x76\x29\x7d\x8b\x53\x74\xb9\x1a\x93\xe5\x58\xa4\x90\x89\x74\x35\x4e\x23\xb6\x3c\x01\x2f\xe1\xbe\xe2\x28\xdc\xf7\x06\xb3\xa0\xd8\x10\xd1\xdf\xd9\x90\x83\x81\x87\x0f\xbb\x33\x52\xe3\xe5\xb3\x53\xea\xab\xd5\x8b\x6d\xd2\x32\x2e\xf3\x21\xbf\xd9\x28\x4e\xbf\x47\x9f\xc6\xc7\x5b\xba\x1e\x39\x19\x4f\x91\xa0\x10\x00\x1c\x2d\xe9\x8c\xc9\x00\x14\x7a\xb7\x69\x7c\x95\xff\xbf\x32\xa3\x39\xaf\x68\x15\x69\x27\x4b\xc5\xec\x42\x04\x34\x69\xc5\x89\xb2\x66\x4d\xf7\x88\x68\x2d\xe8\xb5\xe1\xed\xdb\x86\x2e\x26\x83\x93\xf4\xed\x91\x47\x5f\x9c\x42\x93\x24\x35\x78\xc9\x2e\x2f\xe7\x76\x5d\xb1\xc3\x4e\xe3\x7d\xe0\x13\xc5\x52\xb0\x2f\x9b\x7e\x55\xf4\x04\xfe\xb1\xfd\xe9\xc8\x47\xcb\x3f\x55\xf3\x71\x6b\x36\x59\x36\x39\x2c\x31\x81\x67\x5d\x1c\x29\xa2\xff\x9d\x70\xa2\x05\xe4\x5a\x9e\x77\x47\x7e\xa7\xe8\xb7\x4d\x89\x0e\x3c\x34\x54\xce\x2a\x12\xcb\x2c\x81\x50\x40\x94\x3e\x53\xf5\xd2\xc0\xa6\xa9\x85\x96\x81\x63\x04\x57\xf7\x10\x5b\xd6\x5f\xd0\x5f\x70\x1e\xf2\xde\x2f\xf0\x2f\xc2\xad\x16\x52\x87\xe7\x8e\xc0\xc0\x2f\xa7\x61\x3d\x1e\x1f\x14\xc9\x57\x0f\x6d\x5d\x54\x3d\xab\x35\x93\xe7\x26\x2d\xb5\x39\x16\x7f\x3c\xba\x0b\xaf\x85\x6a\x66\x0a\x1f\xcf\xff\x30\x11\xa3\xb3\xc8\x68\xff\x49\x24\xfb\x32\x0e\x2e\xeb\xa5\xda\x1c\x97\x63\x49\x63\xdd\x74\xc0\x92\xaf\x65\xf5\xac\x62\x96\x75\x59\x7e\x03\x71\xe8\xa8\x52\x09\x3b\xaa\x30\xe8\xc4\xae\xda\xa4\x78\x94\xbe\x00\xee\xcc\x4d\xbc\xef\x28\xdd\xee\xaa\x1c\x21\xa0\x7d\x1b\x5d\x0c\x86\xcc\xdc\xbc\xc2\xd2\x1c\xc7\x66\xd8\xc8\x22\x45\x7a\x2b\x54\x48\x15\x76\x2e\x79\x2a\x2a\xa7\xe1\x8a\x16\x6b\xef\xee\x14\x90\xbc\xb8\xb4\xd8\x4c\xed\xaa\x65\x99\x12\xc9\x4b\xbd\x00\xf1\x15\x25\xd4\x5e\xa5\x05\xfd\x61\x14\x27\x81\x02\x90\x27\x64\x16\xa7\xdd\x2d\x5f\xd8\x7f\xa8\x59\xf4\x72\x93\xae\x34\x26\xe6\x5c\xfd\x90\xd4\x51\xfc\x01\xb1\x0e\x7c\x5c\x79\x03\xac\xd8\xe2\x51\xa5\xc2\x84\x8e\xb1\x24\xbf\xf4\xe7\x64\xc2\x51\x85\x28\xcd\x96\x3e\x46\xf1\xc3\xb5\x17\xab\xb7\x10\x7b\xd9\xff\x1c\xaa\x5e\xd4\x05\xe5\xc2\xb5\x8d\x00\x21\x67\x03\xe1\x51\x9f\xc9\xd6\xfa\xde\x7c\x6f\x43\xf9\xdb\xb1\x5f\x34\x1b\x7e\x60\x8d\xb2\x58\x52\x2d\x55\xc8\x94\x11\xf2\x40\xb9\x6d\x1e\x84\xbf\x54\x4b\xda\xcc\xa2\x61\x61\x39\x32\x61\x1b\xfc\x2c\x54\x23\x8e\x48\x74\x3d\x78\xb3\x85\x3f\x53\x10\x81\x06\x3b\x37\xcf\x1b\x23\x86\xff\x4f\x74\xe3\xc0\x41\xbd\xa4\x1c\x57\x59\x00\x1a\x3f\x73\xad\xee\x2b\x0c\x12\x41\xc2\x59\x06\x5d\x8d\xaf\xdf\x98\x90\x99\x2c\xb2\xbc\x44\x84\x13\xd7\xbc\xc0\x89\xeb\x1f\x9f\x62\x21\xee\x3f\xd4\xec\xdb\xdc\xce\xfa\x82\xe3\x69\x34\x76\xc5\xaf\x54\x17\x75\x9e\x84\xb0\xa1\x67\x63\xaf\x29\x66\x6a\xd2\x29\xf6\x28\xd1\x1d\x9e\x4a\x11\xa6\x91\x0f\x94\x8f\xa2\xd4\xa0\x7d\xe9\xf5\xa7\x5a\xbe\x91\x77\x9f\xb7\x6b\xbc\x41\xb0\xd5\x44\xcc\x44\xa6\x0d\x32\xc3\x4f\x8d\xab\x65\x83\x3f\xc5\x9a\x0e\xe0\x5c\x3e\x18\x79\x8c\x7c\xf3\xef\x02\xdc\xc1\xda\xbc\xaf\x06\x4c\x7a\xd6\xac\xae\xef\xf0\xbb\xcb\x06\xa5\x73\x98\xd5\xbc\xa0\x8c\x09\x5f\xc7\xd7\xe4\x7f\x08\x55\xd9\x43\xa1\x0a\xd7\x72\xd5\x35\x2c\xc8\xd1\x98\x7b\x74\x88\x32\xa0\x80\xf2\xf1\x68\xc2\x33\x38\x62\x06\x2b\xc0\x8a\xef\xe3\x93\xf8\x44\x75\xba\xec\x30\xcf\x06\x76\xb7\xb7\x13\x79\xa0\x26\x57\x79\xaa\x5c\x8c\x31\xbc\xda\xd4\xef\x3f\xd9\xd2\x8d\xd9\x3f\xa1\x47\x87\x94\xe3\x1a\x1e\x09\xcb\x35\x62\x75\x82\xed\xfd\xa1\xc2\x9f\x31\x8d\x0c\xc8\xf1\xc9\x96\x2f\x08\x8a\x5e\x6e\xd7\x3a\xc9\x3a\x92\x31\x04\x40\xa8\xed\xf2\x71\x28\xce\x76\x66\x30\xc8\x6d\x14\x83\xd6\x18\x38\x01\x39\xf4\x15\x65\xea\x58\x2a\x99\xc2\xda\x7e\x9c\x76\x93\x75\x6a\xe1\x60\xed\x9d\xa5\x8b\xc6\x00\xa5\x68\x65\x3b\xb3\x62\xe7\x93\xf5\x50\x2d\xbe\x5e\x6e\x94\x8e\xd6\x4d\xe5\xe7\x71\x53\x95\xbf\x49\x5c\x0e\xf3\xee\x7a\x43\xb9\x7a\x08\xd4\x24\xca\xbc\x81\x9f\x99\x57\x7f\x3e\xea\x71\xa1\x85\xf5\x00\x3b\x69\x3e\x56\xdb\x28\x3a\x5c\xc5\x6c\x55\x60\x60\x79\x8d\x71\x97\xf9\x04\xf7\x5f\x28\xff\xc1\xc2\xc2\xe6\xd5\x91\xaa\x14\xee\xa9\x2c\xc4\x44\x91\x25\xa4\x75\x71\x69\xd1\x75\x1a\x7d\xc0\xbc\x14\x3e\xa7\x1e\x8c\xc9\x6d\x2f\x23\xd7\x9d\x5d\xd5\x4d\x10\xbf\x74\x3f\x83\xd4\x68\x29\xdf\xff\x53\x7a\xf8\x8a\xe5\x4e\x58\x31\x82\xee\xbb\x98\xa1\x7a\x8a\xda\x93\xbf\x89\x20\x2e\x1a\xdc\x75\x1a\x68\xd5\x05\xc4\x69\x77\x86\x7e\x10\x38\x32\xec\x9e\xb1\x0d\x20\x77\x54\x82\xe7\x92\xa5\x1d\x77\xc2\xe9\xd9\xb0\x64\xcf\x68\x0e\xbf\xd8\x4d\x36\x50\x4c\xe1\x69\xc2\xe1\x42\x1a\x6d\x75\xf6\x46\x51\xd6\xb7\x30\x67\x42\x31\xcd\xbe\x6b\x28\xb2\x40\x12\xe6\x0f\x56\xde\x3a\x97\x94\x74\xcf\x6d\x97\xa9\x88\x90\x49\xe0\xe7\x24\xd1\x42\x14\x5d\x51\xf7\x83\xbd\x78\xd9\xf7\x99\x58\xeb\x45\x51\x16\xaf\xab\xba\x3a\xb7\x91\x8d\x57\x65\x2c\x80\x75\xae\x95\xd7\xf9\x07\x93\x55\xef\xf2\xf2\x4e\x2c\x50\x81\xb3\x7d\x33\xec\x71\xba\xbd\x8e\x4e\xb0\x6f\xff\xc4\xb0\x14\xca\xaa\xb3\x5a\x34\x67\x43\x0b\x90\xdc\x9c\x02\x08\xaa\xfc\x81\xf4\x2e\xe2\x12\x39\xb5\x14\xb3\x81\x13\x5b\xf1\x72\x29\xcb\x59\xda\xb1\x45\x09\x8f\x24\x19\x48\xd1\x63\x27\x35\x53\x9d\x86\x8c\xb4\x0b\x2d\x52\x71\x65\x42\x6c\x62\x2b\x06\xb8\x6f\x5f\xb3\xc8\x06\xbd\xb8\x28\x09\x5e\x05\x07\xaa\xd6\x68\x7d\x6b\x4d\x74\xe8\xf9\xa6\x7d\x79\x90\xc4\x51\x5c\x26\xe0\xe3\xb8\x76\xf3\x92\x3b\x9e\x1a\xf2\xdb\xb7\xaf\xd9\xc9\x06\x56\xa1\xca\xb7\x26\xec\x8e\xb4\x5f\xa4\xc2\x43\x8b\xbe\x49\x92\xc7\x03\xa7\x45\xc0\xaa\x06\x3c\x7d\x42\xe0\x84\x2b\xb2\x1c\x5c\xce\x7e\x60\x02\x5c\xe2\x21\xe3\xd5\xfb\xa3\xd1\x84\xd9\xba\xc7\x18\xee\x28\x25\x80\xdf\x42\xe4\x10\x29\x2b\xad\x6b\x85\x57\xda\xe5\x1a\x07\x44\x29\xfe\x4f\x42\x85\xf1\x5f\x0c\x1f\x53\x76\x36\x1d\xc6\x08\x9c\x20\x99\x17\x27\x9b\x7a\xdb\x7f\xa6\x59\xd8\xaa\xe8\x33\x6c\x0e\x00\xf0\x99\xbb\xd2\x7c\xa2\xe6\x99\x4a\x6b\xf2\x06\xdd\x10\xe4\xb9\x17\xd4\x15\xdd\xc0\x2d\x45\x99\xb5\xad\xe5\xfa\x5b\xa6\xcc\x65\x68\x15\x4b\x17\x88\x08\x2b\x7d\x85\x1e\xa2\xbe\x52\xc3\xba\x6e\x9a\x6e\x1e\x47\xc3\x84\x8c\xde\x95\xee\x10\xc4\x9c\xe4\x6a\x95\xbe\x5e\x99\x0d\x76\xd2\x9b\xeb\xa8\x93\xf3\xf3\xdc\xb1\x46\xb5\xc7\x06\xd9\xb8\xc9\xd8\x37\xde\xa2\x47\x89\xa8\x02\xc0\x90\x8f\x75\xaa\x50\xab\x1b\xd6\xce\xac\x0b\x15\x4a\x00\x55\xc4\x22\xbf\xe7\x5b\xca\x79\xb6\x9c\x0d\x53\x38\x57\x4a\xef\x85\x2e\x41\xeb\x7e\xe3\x3d\x7f\x84\x62\x81\xd0\x86\x3d\x34\x17\x0d\xf3\xd2\x00\x1b\xfe\xba\xcb\xa0\x03\xa7\x48\x70\xa1\x6e\x3a\xab\x6f\x7c\x2c\x73\x64\x3a\x57\xc8\x69\x1d\x24\x12\x05\x9e\xf5\xe8\xfe\x78\xd2\xba\x56\x8b\x50\x69\xa6\x35\xdb\xea\xf2\xef\x4c\x90\x43\xb3\x95\x62\xb7\xf2\x8d\xbe\x87\x45\x8e\x5b\x7e\x74\xa4\xe0\x32\x48\x51\x32\x4e\x4c\xf7\x1f\x28\x1f\xc0\x44\xfc\xe9\xb3\x6a\x66\xfc\xdf\x60\x08\x52\xd5\x0d\xd2\x01\xb8\xa9\x05\x26\x2e\xd7\xd1\x87\x8a\x58\x9c\x52\x81\x17\x7d\x46\x9f\xcd\xc7\x6a\xec\xb6\xfa\xcf\xac\xca\x48\xcf\x8f\x14\x0b\xff\xbc\x62\xa3\x7d\xaa\x27\x9c\x42\xaf\x7e\x7c\x7e\x4a\x8e\x44\xa0\x8e\xc2\x9a\x6e\x6e\xfa\x4a\x61\x74\x43\x2f\x9a\x0d\x65\xd0\xdb\x36\x49\x92\x01\x90\xf1\xb8\xe3\x39\x40\x5c\x7c\xa2\x08\x8b\x51\x2f\x8f\x51\x5f\x63\xcf\x66\xef\x4a\x3e\x51\x40\x5c\x3b\xcf\x56\x50\x2c\xb8\xc1\x42\x77\xd3\xaf\xd3\x0d\xe1\x82\x93\x00\x23\x64\x29\xff\x96\xbe\x27\x3e\xf4\x92\xfa\xd0\xbe\xc9\xf1\x9c\x8f\xf8\xf9\xbf\xc3\x73\xdc\x16\x9a\x19\xab\xc5\x8a\x02\x19\x1c\x69\x30\x0b\xf0\xff\x6f\x68\xb5\x57\x16\xdd\x75\x33\x6d\x0e\x2c\xf8\x0e\x15\xf1\x58\x3d\x3f\xdd\x52\xb2\x8c\xe3\x50\xf1\x2a\xda\xb4\xbf\xbb\x35\xe6\x73\xc3\xa3\x13\x21\x92\x5b\x63\xd8\x71\x90\x48\xf0\xb1\x12\x93\xcb\xe3\x2e\xc2\x16\x4a\xc0\x13\x8a\xf7\xc8\x57\x89\xec\xfb\x7b\x53\xeb\xec\xd0\xf3\xcd\xc4\x9a\x55\x4b\x5d\x7d\xa4\x0d\x1b\xa1\x27\xdd\xa2\xee\x94\xf9\xce\xc7\x54\x03\xc1\x42\xa2\x04\xbc\xae\x9d\x20\x6c\x20\x59\xb8\x45\xdc\x04\x7c\x1e\x3c\x91\xf1\xed\x1f\x27\x5a\x05\x32\xfc\xbb\x58\xa3\xd2\x8c\xa2\x6f\x8f\x9f\xda\x03\xd4\x9b\x3b\x5d\xa1\x9f\xc3\xab\x82\x7f\xd6\x8f\x8b\xb2\x50\x85\xf5\x43\x55\x58\x3f\x9c\x48\x61\x5e\x8e\x2d\x62\x09\x6e\x2a\x72\x73\x3e\x0e\xbf\xa0\xcb\xd7\x32\x1f\x46\xe5\x30\x8f\xd3\xee\x0e\x0f\xbe\xb3\x30\x87\xcb\x1c\xab\xaf\xc7\x27\x74\x7b\xb0\x02\x8f\xaa\xd5\x78\x14\xc9\xaa\x50\x3a\x3f\xaf\xb1\x38\xa1\xbf\xeb\xdc\xe8\xf6\xed\x97\xe3\x5a\xca\x54\xdb\x76\xe3\x94\x1e\x11\x36\xc7\x3b\x88\x24\x48\xc2\xd0\x34\x16\xe9\xff\x3a\xb5\xff\x61\x7b\x98\xb7\xd9\xcf\x08\x1f\xf3\xbf\xd0\x0a\xe1\x63\x55\x4a\x24\x36\xed\x96\x3d\xe4\x61\x68\xfe\x9c\xa7\x14\x8f\x8f\xc3\xe7\x34\xf2\x10\x25\xd6\xe4\xc6\x81\xcd\xf2\x33\x81\x53\x85\x3f\x5f\x23\xbb\x76\x84\x55\xae\x05\x89\xab\xd3\xa3\xac\x61\x43\x26\x71\xba\x22\xbf\xc2\xa6\x61\x23\xa5\x7e\x77\x7c\x8a\x94\xbf\x34\xd7\x8c\xb2\xa2\x6f\x89\x04\xe3\x88\xa5\xa7\xd4\x96\xe2\xbd\x93\x22\x33\x88\x4b\x93\xc4\xaf\x58\x9e\xb9\x13\x15\x1a\xdf\xf2\x60\xe3\x51\xd1\xe0\x50\x5a\x35\xf8\xc2\x02\x28\x52\x74\x11\x4d\xfc\x9a\x91\xb0\x08\x33\xcf\x04\xb9\x4f\xc8\x58\x68\xc2\xb0\xb8\xe7\x3e\xeb\x93\x85\x61\x51\x15\x66\x71\x9b\xf9\xcd\x28\x32\xee\x2b\xcb\xba\x5a\x0e\xe9\x20\x4b\xe2\xc8\x36\x94\xba\x19\xf0\x01\x36\xbd\x51\x1e\xf6\x97\xa7\xa4\xe6\xe7\xe7\xab\xd2\x88\x06\x3b\x11\xd6\xfe\x90\x02\xa1\x13\xcd\x72\xc9\xea\xa5\x09\x23\x9f\xc7\xd5\xab\xb5\x1a\x65\x33\x2a\xdd\xe4\xdb\x26\x2b\x35\x50\xa2\xd3\x14\x00\x44\x8d\xda\x03\x92\x30\x2c\x76\xbc\x92\x3a\x55\x86\x3a\x3c\x92\xc1\x0e\xfa\x34\xc4\xea\x87\xc8\xdb\xf9\xa4\x4e\x67\x38\x5b\x5e\xb6\x69\x21\x2f\xa6\x38\xc7\xf9\x06\xbc\x57\xc7\xb3\x9d\xa1\xc9\x3b\x81\xe3\x42\xef\x3e\xa3\x79\x1f\x67\xea\x84\x65\xaa\x5c\xaf\x6b\xa0\xd4\x0d\xf6\x19\xb2\x49\x3e\x9e\xba\xf7\x07\x16\xaa\x34\x4c\xcf\x3e\x8f\xb4\x80\xb9\xaf\xd7\x97\xab\x5d\x77\x58\x36\xaa\x27\x03\xd4\xf8\xe4\x84\x23\x77\xf5\xf4\x64\xee\xa7\x06\x76\x4c\xb2\x76\x3b\x96\xa2\x50\x22\x97\x0e\x82\x7e\x23\x36\x79\xdf\x76\x58\x58\x0e\x41\xe8\x16\x00\x4a\xf0\xec\xee\x28\xfa\xe0\x1d\xda\x0b\x11\x15\xff\x3b\xdc\x1b\xfe\x8d\xa9\xb4\x99\x14\x98\xb3\x24\x31\xa5\xcd\x99\x57\x83\xbc\x65\x27\x98\x7e\xec\xe1\x48\x7f\x10\x5b\xd8\xb6\xf1\x63\x4a\xe2\x3d\x49\x02\xb5\xa6\xbe\x8b\x97\x94\x4f\xa6\xc6\x2f\x16\x9f\x3f\xd8\xcc\x6d\x9a\xad\xa5\xb2\x38\x9c\x07\xf6\xfc\xbc\xdb\x71\x6a\x34\xb3\xe3\xb4\x33\x8c\xec\xc4\x10\x3e\x45\x3c\x99\xc2\x9f\x68\x72\xc5\x83\xd8\xa6\xe5\x84\x2c\xc0\x75\x95\x90\x9c\x53\xca\x4c\x9f\x69\x22\x68\x92\x45\x20\x82\x8a\x0a\x1f\x5d\x21\x32\x22\x20\xa1\x7c\x1c\x6a\xd9\x3e\xe5\xe5\x65\x8a\x38\x32\x09\x6c\xc0\x58\xb2\xf4\xbf\x39\xa1\x84\xe7\xef\xa8\x40\xa5\xb9\x1c\x24\x40\xd1\x4e\x98\xb6\xad\x54\x26\xab\xcf\x17\xcd\xaf\xe9\xc5\x73\xb0\x69\x96\x97\x4d\x9c\x2b\x29\xf1\x37\x94\x94\xf8\x1b\x53\x3b\xd1\xfc\xfc\xc1\x66\x69\x5f\x2e\x63\x66\x62\x23\xf0\xdc\x54\x41\xe8\xa6\xc3\x40\x3a\x66\x48\x5e\x01\x81\xd2\xfb\x39\xad\x9c\x3c\x4e\x6b\x3b\xc0\x38\x59\x35\x0d\xdf\x3b\xbc\xac\x54\xc0\xb8\x53\x2d\xee\xb9\x82\xfe\xb5\x4d\x52\xc6\xfd\x2c\x67\xd9\x5e\x81\x55\x15\x49\x8c\x36\x76\x6c\xf8\x1f\xa9\x7e\x4f\x6a\x57\x4d\xc7\x68\x62\xef\x75\x45\xec\xbd\xae\x4c\x8c\xf2\xac\x60\xcc\x52\xfb\x62\x88\xc0\x47\x0d\xc9\xb9\x63\x13\x4a\x0d\xd8\x49\xc1\xb9\x2f\x55\x1f\x25\x92\xbc\x7e\xb9\xc4\x49\xb2\x97\xba\x76\xa2\xf0\x43\x8f\x0e\x78\xda\x47\x23\xa5\xca\x71\x55\x0d\x0d\x7c\xa6\x9a\xfa\x79\xbc\x6a\x92\x02\xfc\x45\x91\x31\xa0\xe5\x87\x24\x10\x88\x97\xf4\x07\x94\xfa\x35\x26\x73\x10\x48\x3f\xa3\xfc\x19\x30\xca\xb6\x96\x56\x44\x50\x0b\xfe\x9e\x2e\xb6\xdf\xaa\xe3\x8a\xe5\xa6\x23\xd6\x70\xae\xcd\xed\xda\x8e\x37\x27\xe0\x9d\xad\xd0\xc9\x57\x9b\xb6\xd3\x95\x26\x30\xd2\x87\x57\x43\x95\x57\xbc\xaa\xa7\x13\xe2\x7e\x9c\x98\x3c\x59\x9f\x51\x9e\x99\x97\x69\x53\x13\x51\xf9\xea\xa3\xf8\xff\xd3\x5b\x36\x21\x93\x3b\xf1\xb1\x51\xc6\x92\x16\xf2\x9e\xd1\x42\xe2\x93\xf0\x99\x89\x61\xfb\x38\x77\xfe\x18\x00\x61\xdf\xd4\xb6\x1e\x6f\xba\x8d\x25\xb5\xf9\xaa\xd8\x4a\xa1\xeb\xc1\x38\x1a\x5a\xc0\x8d\x16\xa1\xb2\x8c\xa6\x52\x44\x10\xe5\xbf\x9a\xea\x71\x90\x98\xb4\x68\x68\x98\x4b\xf9\x9b\xfd\x10\x7f\x57\xa6\x0d\x6b\x08\x1c\xcb\xc3\x97\x62\x91\x2a\x45\xb9\xab\x09\xe2\xe7\x46\x13\xa8\x8b\xea\x62\xc7\x51\x2f\x2e\x0d\x53\x33\x80\x1e\x7c\x8a\x7d\x82\x4f\x14\x51\x3f\x1d\xf6\xdb\x36\xdf\x49\xcf\x0e\x9b\x2c\x4b\x19\xf1\x09\x82\xac\xa8\x8d\x55\xdf\x17\x9f\x7e\x8a\xd6\x26\xd6\xe9\xd9\x91\xb2\x91\xc7\xcc\x2f\xff\x50\xcd\x98\x66\x33\x4e\xa3\xdc\x9a\x82\xa4\x64\xfd\x08\x9b\x6f\x72\x01\x67\x75\x12\x60\xfb\xf6\xb9\x36\x56\xcd\xb2\x2d\x06\xd2\x21\x03\x4a\x79\x46\x21\x96\x5b\x4c\x7c\x0b\xf4\xc7\xd4\x90\xaa\x9b\x58\x9d\x9a\x77\xa8\x52\x64\x33\xec\xc4\x36\x8d\x2c\x47\x64\x65\xad\xec\x93\x20\x65\x1b\xd3\xcb\x86\x49\xe7\x09\xdc\x73\x7c\xa9\x93\x88\x1b\xce\x3f\xcd\x19\xc6\x7e\x18\x2a\x43\xed\xab\x20\xf0\xf3\xbf\xd0\x1d\x56\x52\x79\x32\x68\x38\x8b\xa6\x16\xc3\xe2\x74\xb7\x00\xf2\x31\x1f\x18\x98\x1a\xf6\x35\x27\x2b\xe2\x5e\x9e\x87\xea\x99\x3c\x1c\x79\x03\xe0\x63\x23\xc5\xe6\xde\x50\xc0\x5d\x61\x2d\x1c\x4c\x51\xbf\xf2\x14\x2d\x73\xb6\xf0\xb4\xf9\x5f\x68\x40\x51\xc8\x5c\x8a\x2e\xde\xcd\xad\x75\x39\xa3\xa0\x42\x81\x53\x15\xb8\x54\x23\xc4\xb4\xc8\xf3\xb3\x0e\x81\x12\x17\x73\xcf\x1b\xbd\xa0\x28\xa6\x2f\xd9\x34\xb7\x65\x29\x52\x6e\x08\xcf\x9b\x78\xae\x7c\x12\xfe\xdd\xcf\x29\x00\xa3\x57\x6c\xd4\xcb\x8a\x24\x5b\x35\x2b\x31\x2c\x4c\xb1\x57\x9d\xd7\x38\xf9\xf9\x1a\x88\x6c\xb1\xf9\x52\x16\xb3\x38\x2c\xfb\x3e\x2a\xb3\xa5\xe9\x62\xeb\xd0\xf3\xcd\xde\x30\xcf\xe3\xc8\xb0\x30\x36\x9b\x4b\x50\xd4\x16\xa3\x89\xba\xa6\x4a\x94\xe5\x69\x95\x0e\xe0\xdb\x71\x5e\x89\x22\x5d\x92\x4c\xd7\x47\x2b\xab\xc2\x59\x24\x6b\xb1\x39\x63\xcb\xe1\xe3\xba\xc1\xc2\xd2\x24\x2b\x9c\x20\xb1\x13\xbe\xd2\x79\x04\xf6\x22\x24\x80\x47\x5d\xaf\x23\x63\x54\xd5\x79\xc1\x3b\xc2\xd5\x71\x95\x10\xf7\x6d\xe2\xe8\x83\x62\x96\x48\x17\x3e\xed\x67\xfa\xb5\xfd\xff\x34\xf0\x17\xca\xec\x01\x3e\x51\xc0\x56\xc7\x96\xb6\x0a\xe0\x16\x3d\x26\xa1\xb0\x29\x1f\x43\x88\xc5\xb8\x7d\xd3\x51\x5d\xde\x53\xdb\x6d\xcf\x44\x2b\x36\x6f\x28\x66\xe9\x15\x25\x31\xc8\x68\x83\xa8\x5e\x6c\xdd\xe5\x16\x97\x16\x9b\x85\x59\x43\x99\x8d\x77\x3a\xc0\x86\xcf\x27\x2d\x79\x1c\x65\x55\x26\xe7\xb2\xdb\x88\x2c\x0d\x5d\x38\x9f\x4c\xb0\x1c\xe2\xdc\xcc\xaa\x24\xfe\x9e\x6a\x1e\x7f\x57\x4d\x58\x73\x16\x85\x34\xe9\xf7\x10\x41\x10\x34\x2e\x4c\x6d\x8d\x87\xe7\x16\x9a\x69\xd6\xf0\x16\xe0\x23\x4a\x0a\x31\xcb\x73\x3e\xf4\x5a\xcb\xb5\x50\x85\x1d\xe6\x59\x3b\x4b\xd1\xa8\xc6\x5a\x3b\xaa\x17\xde\x51\x47\xb4\x4d\xb2\xb5\xdd\xde\x5d\x7e\xc7\xd8\x73\x3d\x1b\xad\x60\x61\x61\x93\x6d\x06\x64\xa4\x91\xf2\x48\xe7\x49\x5e\x7d\x01\x5c\x05\x2c\x6b\xd0\x86\x7d\xa8\x8d\xeb\x36\x7d\xe7\xf0\x1f\x7c\xb9\xa5\x19\x4a\x35\x8e\x30\xc3\x34\x8b\x58\xc9\x4e\x14\x46\xe8\xa2\x45\x7a\xc4\x83\xb5\x66\x6f\x7f\x6f\xe0\x61\x4b\xa4\x19\x7c\x5c\x27\xac\x9c\xd0\x1e\xa9\x8c\x8e\x3f\xd0\x8a\x8d\x1f\xa8\xfc\xbf\x6b\x78\xf8\xb2\xa1\x0c\x45\x18\xb9\x17\xf4\x90\x6e\x09\x4b\xc9\xa9\xcc\x28\x4e\xcd\xb0\x3b\xcc\x4d\x02\xec\x56\x66\x35\xb5\x27\xde\xd6\x25\x79\x60\xa1\xb9\x3c\xe4\xe7\x24\x06\xaa\x3e\xed\x7e\x67\xaa\xd0\xdb\x7f\xa8\x99\xda\xb8\xdb\x6b\x67\xb9\xd3\x73\x64\x79\x62\x65\x9a\xf2\x50\x11\x02\xee\x28\x28\xa1\x5d\xc5\xf3\x3d\x08\x47\x58\x49\x1f\x20\xcb\x73\x03\x5b\x4b\x73\x2c\xcf\xb0\x1d\xcf\x0a\x25\x0f\x73\x68\x10\x58\x18\x66\xc4\x3b\xbb\x49\x5b\x11\xf0\x40\x4c\x2e\x39\x8e\xff\x82\xf8\xe9\xdd\xc0\xac\xb2\x70\xa6\x68\x10\x0c\x55\xed\x6d\x35\x9f\x7c\xdf\x31\xf0\xd6\x4c\x9e\x5a\x82\xe2\x8f\x68\x37\xf5\x45\xad\xf5\x2b\xd8\xcb\xaf\x2a\x9f\x81\x2b\xda\xbd\x6d\xe7\x94\xd5\xd7\xe1\xb9\xc5\x66\x9c\xae\x9a\x24\xee\x20\x66\xba\xb1\x81\x89\x79\x79\x67\x76\x50\x05\xaf\x89\x19\xa1\x03\x0b\xcd\xff\x64\x27\x7d\x77\xac\xf9\x77\x28\x20\x6c\x5e\x55\x95\xe8\x76\xa2\xba\x20\xb6\x3d\x42\x0c\x29\x1d\x8c\xd9\x08\x17\x37\x53\x32\xd3\x3a\x47\x85\xc8\xa4\xa6\x13\x33\xd2\x28\x64\xc5\x09\x93\x03\xdf\x23\xca\xf2\x8e\xcd\x6d\x67\x87\x37\xbb\x7e\x55\xc1\xd6\xaf\x63\xb4\x0c\x35\xff\x59\xe5\xd1\xf3\x1a\xd5\x1f\x7c\x1c\xaa\x1d\xf7\xbc\x16\xd8\xb4\xc5\x1e\xdf\xbf\xbc\xa4\x04\x81\xb7\xd3\x1c\x85\x22\x58\x4a\x7b\xef\x63\x84\x08\x67\xb0\xeb\x5a\x6b\xc7\xfd\xa4\xec\xcb\xcd\xb1\xca\x9e\x50\x94\x63\x1f\x3d\x36\xf2\xa6\xcd\x8f\xfd\x2d\x60\xfe\xe8\x3a\x31\x25\x08\x9d\x96\xab\xaa\xc9\x1f\xf7\x87\xc9\xb0\xc0\xa4\x9a\x00\x09\x1e\x9b\x43\x26\x8a\x80\x76\x43\x17\x31\x36\x2d\xe2\x32\x5e\xb5\x3b\xe9\x72\xc5\x63\xd9\x5b\x8d\xf2\xce\xe4\xf2\x03\xa7\xc4\x73\x5e\x49\x32\x32\x9d\x8d\x3d\x08\x46\x6a\x5a\xfb\xec\x14\x7c\x45\x62\x4a\x51\x2f\xb6\xcb\x81\x87\xd0\x61\xa4\x28\xaf\x4f\x4d\x4b\xbf\xb4\x89\x5d\x8d\x0b\x01\x5a\x58\x84\x54\xb5\x50\xb5\x55\xb1\xa1\x61\x66\xe4\xc8\xae\x5a\xd1\xdd\xfa\x3d\x8e\xe3\x5a\x88\xd2\x1b\x7b\xa5\x87\x8a\x2a\x7d\x5f\x79\xa4\xed\x18\x7b\xfe\x4d\x9b\xec\xdd\x4a\x12\x0a\x92\x6d\x84\x02\x1d\x10\xbb\x2b\xd0\x3b\x46\xc7\xf7\x76\xe8\x71\x3d\xbe\x95\xc2\xd2\x54\x59\xf0\x79\x6e\x9c\xf3\x99\x02\x6a\xdb\x89\x89\x56\xfa\x26\x4e\x98\x36\x20\xdf\x80\x7e\x59\xbe\x9b\x4b\x6a\xe2\x68\xa5\xe1\xf3\x98\x1d\x63\x45\xf8\xc5\xa2\x45\x85\xf5\x78\xcb\xa7\xc7\x6b\x71\xd2\x21\x63\x68\x40\x09\x17\xa8\x4a\xe1\xe3\x50\x85\x1e\xf6\x2d\x97\xd9\x42\x9f\x89\x14\x71\xda\x4d\xec\x2c\x45\x33\xe7\x92\x5c\xbd\x6b\xa2\xa7\xe3\xf9\xc9\xe0\xfc\x01\xfd\x85\x6f\x9f\xb8\xfc\x3e\xee\xd3\x3f\x6b\x78\x2c\x7b\x93\xe8\xba\x9b\xaf\xa9\x77\xbc\x6d\xcb\x35\x6b\xd3\x1d\xb8\x5b\x4a\xa9\x42\xf2\xa8\x6b\x8a\x2c\xae\x47\x9f\xb7\x8d\xd5\xb8\xd8\x29\x2d\xbf\xf3\x58\xab\x0e\x8a\xca\x6d\xdf\x76\xc0\x98\xd1\x71\x5c\x74\x1c\x9c\xa9\x4f\x96\x24\xf1\x32\x98\x19\xce\x7f\x6f\xc1\x6b\x3e\xd5\x19\xc4\xe5\xa6\x3f\x30\x13\x59\xf7\xa6\xca\xba\x37\x6b\x2d\x9a\x4d\xe7\xa5\x61\x51\x82\x74\xbb\xc0\xc9\x15\xae\x88\x8f\x95\x7a\x4e\x6e\x4b\x9b\x7a\x7f\x2e\x17\x9a\xbc\x18\xc9\x45\xb5\xbe\xe2\x74\xd5\xa6\x70\x62\x9b\xf1\xaa\x6c\x27\x94\x7b\x27\x97\x7e\x7c\x12\xea\x36\xd3\x33\x8a\xb7\x6c\x3a\x36\x2f\x7a\xf1\x00\x08\x10\x86\x3f\x3f\xd6\x74\x1e\x0a\x81\x1e\x71\x97\x10\xbe\xbd\xa5\xa4\x65\x58\x7d\x5f\xb6\xb1\xc0\x29\xce\x7e\xac\xcb\x4c\x1a\x5c\xde\xbc\x3d\x12\xa2\x5e\x91\x0d\xcb\x9e\x35\xd5\x0d\xc2\x4e\x21\x5f\xd3\x93\x1e\xb4\x34\xde\x9a\xc9\xab\xe4\xd7\x73\xdf\xae\x68\x92\xe4\x15\xe5\x3b\x57\xf4\x4c\x3e\x48\xd6\x55\xad\x03\x01\x35\x3e\xae\xb3\x22\x1e\xd8\x68\x98\xc4\x26\x6f\xa8\xb9\xf6\xef\xd1\x17\x01\xbd\x70\x7b\xcb\x37\xca\x3e\x9b\xca\xfc\x5e\x58\xac\xca\xd5\x15\x1e\xc0\xc4\x8b\xcb\xc6\x57\x7c\xe2\x0a\xa5\x41\x62\xd6\x7b\xd9\xb0\xb0\xb4\x48\x71\x97\x18\x46\xe1\x13\x05\x69\x0e\x4c\xc4\x94\x5a\xb6\x88\x08\xfd\xf4\xcc\xfd\x1a\x10\x2c\xcd\x4a\x41\xf1\x45\x4d\x8a\xae\x48\x00\x1e\x0f\x50\x17\xeb\xfd\x81\x29\x7b\x62\xe4\x27\x01\xc0\x03\x5f\x9f\xb8\x74\x26\x8b\xac\x49\xa5\x08\x44\x72\x72\x4a\xeb\x6b\x9d\x9a\xda\x2a\xa8\x55\x99\x7b\xd9\x41\xa9\x37\xe9\x86\x7c\x5e\xc1\xf9\xc2\xfe\x43\xd5\x2f\xd9\x65\x7e\x70\xce\x83\xad\xda\xa1\xf8\x64\xea\x2b\xbf\xf8\x62\x73\x99\x7a\x35\xee\x45\x3c\x3d\xf2\xea\x67\xa7\xd5\xa4\x5d\x14\xe7\x51\x62\x3b\x0d\x3f\x99\xc8\x46\x60\x9a\x63\x82\x3c\xe1\xed\x3a\x73\xe3\xa5\x45\x2d\xdf\xc8\x97\xc5\x27\x75\x76\x2c\xc5\xb0\x5d\x94\x71\x39\x2c\xd1\x2f\xd0\x06\xa8\xf2\x32\xe9\x0a\xac\x9d\xac\x3f\xa6\xf2\xb8\x9b\x4a\x36\x07\x1c\x2a\xec\x73\xff\x77\xa8\xd4\x5a\x3e\xa5\xdc\x15\x90\x0a\xfa\x48\xd2\x0e\x54\xbb\xfa\xf6\x96\xa2\xe3\xff\x3b\xec\x0c\x6e\xfe\xcb\x0b\xdd\x5f\x50\x01\x78\x63\xa4\x64\xf7\x1b\x68\xc0\xc8\x72\x52\xdc\x1e\x33\x30\xed\x84\x75\x24\xa4\xa8\x0c\x9c\xfb\xc1\x39\x25\x2c\xf2\x3b\x13\x22\x35\x9d\xb8\xb3\xc7\x7b\xfe\xdd\x86\x88\x8c\x48\x37\xd3\xc5\xa2\x3e\x0b\xc6\xc1\x2f\xff\xa2\x9b\xc2\xf1\xfe\x54\x97\xbc\x87\xe4\xe6\x17\x5b\xfa\xe3\x95\x22\xfe\x31\x30\x4e\xf8\xcf\xe2\x49\xe3\x76\x5e\x53\x1a\x32\xcc\xe3\x40\xed\x78\x7c\xea\x31\x0a\x54\xd3\xcd\xe3\x7e\x5f\x75\x16\x40\x38\x71\xb3\x03\xde\xdf\xe2\xdd\xba\x61\xef\xe5\x38\x4d\xe3\xa2\xd7\x50\x42\x0f\xaf\x6a\x3a\x3e\x72\x02\xe1\x72\xd5\x28\x8a\x2f\xe7\x26\x5d\x49\x62\x90\x99\xd9\x67\x02\x9f\x2a\xa6\x13\x3e\x2d\xd8\xfb\x73\xff\xe4\x67\x03\xff\x28\x31\x71\x23\xb6\x4b\x2e\xe9\x34\xfd\x6c\xd5\x49\x00\x4b\xb8\xaa\x7e\x52\xa2\x95\xef\xf7\x75\x89\x2d\x1a\x38\xd5\x6d\x74\x5d\xa5\x9c\xf6\xa9\xf6\x81\x83\xfb\x1a\x9a\x18\x57\xfd\x54\x8d\xae\xcb\x34\xa8\x31\x3f\xdf\xec\x19\xa1\x65\x3a\xcb\x4d\xf7\x4d\x8f\xab\x6b\xe9\x0c\xcb\xa8\x37\xa3\x60\x87\x3b\x2a\x1e\x36\xc6\x3e\x6a\x6c\x90\xa1\x0c\x2b\x48\x4c\x58\x52\x0c\x12\xe6\x72\xd2\x5f\x11\x6e\x90\xe2\x09\x4d\xe1\x6d\x4b\x73\x4b\xcd\xf6\x30\x4e\xca\x86\x6f\xa1\x5d\xd0\xd3\x05\xd7\xd5\xf4\xd0\x1b\xa3\xad\xf3\x50\xb2\x86\xe2\xb4\x44\x5f\x79\x06\x0a\x27\x4e\xce\xb7\xfa\x43\x40\xbf\xce\x28\xe5\x0c\xf6\x84\x13\x3d\xb6\x69\x26\xdf\xd7\xd9\xb6\x2e\x08\x94\x9d\x54\xf5\xfb\x82\x4e\x78\x9e\xdc\x6a\x6c\xd7\x8a\x1d\xf4\x3e\xb0\x18\x28\x5e\x33\xe1\xb1\x7b\xd6\xf5\x39\x7a\xb5\xf8\xff\xd3\x5f\x73\xfc\xad\xea\x25\x15\x29\x51\x65\x4f\x3c\x14\x17\x6e\xd7\xa5\x59\x12\x50\xe2\xe6\xe8\x51\x0f\xc7\xed\x55\x83\xbc\x1f\x62\x41\xf0\x89\x02\xc7\xba\x49\x96\xf5\xd7\xe1\xef\x86\x54\xf6\xcc\x48\x79\xbb\xb3\x69\x9e\x83\x19\x5c\x1f\xed\x4c\xe8\xd7\x08\xa9\xaa\xcf\x4e\x0b\xfd\xa0\x97\x00\x55\x59\xac\x2c\x94\x56\xe2\x1e\x45\x97\x04\x22\xc3\xbd\xba\x89\xc1\x65\xeb\x5e\x18\xd7\xc0\x55\xf7\xad\x46\xd6\x72\x2d\xcb\xc9\x28\x57\xd9\xb5\x5d\xd6\x76\x6d\x97\x5d\x4e\x50\x2d\x4b\x4a\x83\x66\x7c\x68\xc2\xa3\x70\x31\xbc\x7a\x78\x32\x38\x17\x38\xb1\xa9\x8f\xa7\x36\xc4\xc3\x73\x47\x9a\xd9\xf2\x72\xc3\xb9\x7e\x5e\x7f\x72\xec\x3b\x26\xaf\x13\x5e\x81\xca\xfd\x89\x96\x8f\xe5\xbd\x61\xbb\x4d\x5c\x06\x37\x4e\x01\x21\x7a\x3e\xae\x23\xe2\x74\xb2\x24\x31\x39\xbd\x13\xc0\x42\x1e\x84\xbe\xdb\x7f\x51\x4f\x3e\x5f\x74\xba\x8c\x2c\x10\xe7\x9c\xdb\xa5\x52\xd5\xa0\xef\x53\x7a\x9c\x61\x50\xba\x6e\xb4\xa6\xfd\x09\xe1\x5b\xb1\x12\xda\x19\x67\x01\x6c\x76\xac\x8c\x42\x6f\x4e\xc5\xd4\xc5\xe7\x0f\x36\xcb\xaa\x16\xb4\x79\x80\xb7\x51\x2c\x67\x55\x9b\xf9\xb2\x42\xeb\x3a\x66\x2d\x45\x66\x88\x1d\x7f\x43\x69\x2b\x5d\x51\x9e\x52\xa7\x26\x36\x3a\x13\x27\x7b\x74\xfe\x33\xa1\xdc\x54\xfd\x01\x6c\x06\xbb\x5a\x0a\x9b\xdb\xde\x52\xc4\xf2\xed\xe3\x09\xd9\x86\x49\x79\xa8\x25\x19\x03\xbc\x3d\xf2\xd0\xe5\xb1\x50\x49\x3b\x6f\xd2\xcb\xc8\xff\x40\xb1\x05\x4f\xfe\xc1\xe8\x59\xdf\x33\x1a\xb6\xa3\x2c\x2d\x73\x13\xa1\xb2\x51\x0a\xd1\xce\x44\x74\x4a\xaa\x76\xff\xa1\x66\x27\xeb\x6a\x49\xba\x8f\x47\xbe\xbb\xfc\xb1\xb3\x45\xe8\x0c\x21\x20\xed\xe9\xad\x5e\x30\xfd\xb2\xce\xcd\x0c\xbd\x29\x3b\x7d\xf6\x70\x8c\xba\x45\x02\x07\x29\x7b\xe9\x73\xca\x49\x83\xc7\x7c\xf1\x8e\x7c\x14\x4e\x0e\x36\xfe\xf2\x2f\x3a\xdd\x34\x3f\xfd\x40\xcd\xfe\x6c\x58\x68\x55\x50\x34\xe4\xa5\x74\xa9\x03\xdd\xb2\x81\x4d\x1d\x58\x89\xba\xe4\xae\xb2\xca\xbf\xa8\x66\x4b\x4e\xaa\x91\x70\x96\x77\x65\x09\x6d\x3c\x6b\xc4\x1c\x3e\x1e\xfb\x3b\xd0\x37\xa4\x8a\x34\xab\x26\x92\xb9\x70\x77\xbd\x9a\x05\xe1\x30\xbd\x3e\xd2\x94\xa3\xea\xd9\xb3\x62\x64\x5d\x5d\x53\x3d\x5c\x13\xa7\x1c\x85\xa4\xd3\xac\x94\x90\xde\xac\x43\x9b\xdb\x04\xca\x05\x4a\x45\x7e\xd2\xab\x41\x02\x57\x9c\xe7\x71\xe9\x45\x61\x10\xf7\x83\xb1\x2f\x91\x83\xd6\x84\xfc\x7d\x3c\xc9\xc6\x7a\x5f\x51\xdd\xdf\xaf\x6b\xad\xb6\xb3\x35\x9b\x04\x6a\x32\xfb\x94\x92\x90\x3c\x55\xc7\x21\xb0\xa9\xed\xa3\x7e\x70\xe2\xe9\x6e\x96\xe0\xc2\xe8\x19\x8f\x7e\xb8\xa9\xf7\x40\xf5\xd9\xb9\xdc\xe6\x13\x07\x37\x15\x6b\xd6\xf0\xdd\x70\xea\xed\x0b\x4e\xc9\x5d\xe5\xc4\x3d\x93\x46\x59\xb4\x42\x8a\xba\xd8\x2c\x7f\x42\xbb\x04\x1f\xbb\x80\xcf\x7e\xdc\x30\xb7\x5d\xe4\xbd\x09\x18\x08\x1f\x6b\x1d\x1b\x93\x9b\x34\x8b\x3b\x81\x66\xae\x7a\xd8\x6d\x3a\xbc\x2d\x2c\x1c\xa4\xdb\x6d\x4b\x8c\x91\x0b\x5a\x41\x5f\x00\xe9\xc5\xaf\x29\x51\x24\x98\xb2\xe1\xad\x7c\x63\x6a\x43\xa9\xd6\x50\x6e\xd7\x1a\xde\x72\xe1\xa4\x4a\x97\xee\xe1\x15\x14\x92\xcd\xd6\x2b\xf9\x6a\x33\xb7\xcb\x36\xcf\x5d\x3b\x15\x78\xd2\x3d\xa5\x14\xa2\xa5\x5b\x57\xe2\x24\xa9\xaa\xc6\x86\xc7\xc4\x21\x46\x02\xca\x09\xc2\x87\xd8\x5a\x6c\xed\x2c\xcc\xcf\x37\xe3\x14\x25\x97\x0c\xfe\x89\xd0\x93\x9f\xfe\x3c\xae\x32\xd6\x5f\x78\x7e\x5f\xa0\xac\xe4\xfe\x92\x3e\x89\x8f\x47\x8f\xc4\xcd\x41\x6e\x97\xff\x51\xb3\xfb\x25\xfa\x86\x78\x82\x33\x2d\x4f\xc9\xf9\x52\xcb\x5f\xcd\x75\x2d\xee\x10\xb4\xbc\xf6\xf2\x26\x30\x45\xd7\xd5\xd8\xb7\x9f\xd9\x5b\xb7\x47\xd8\x78\x04\x7a\xac\xf2\x55\x74\x1b\x1e\x42\x96\x43\xcd\x1b\x8b\xf9\xfd\x0d\x0a\x8a\xa8\xf1\xde\x86\x64\xaa\xeb\x49\x54\xcb\x16\xa8\xf3\xb3\x2d\x4f\x31\x98\xe5\xe9\x45\x7c\xfe\x53\x63\xda\xde\x44\xbc\x82\x96\x03\xae\xbf\x41\x61\x09\xa4\xf1\x59\xda\x81\x36\x67\x5a\x7e\x0b\xff\xea\xdf\x87\xfa\x9d\xf4\xdb\x55\x77\x08\xcc\x67\xdc\xb5\xc7\xc7\x84\x1f\xe2\xa7\xee\x87\x55\x08\xf6\x28\x8e\x20\xbc\x65\x5c\x64\x29\xc6\x19\xd0\x4f\x07\x63\x90\x8f\x6b\x89\xc2\x71\x4a\x9e\xce\x00\x52\x51\xea\xb1\xbc\x12\x9f\x28\x5c\x63\x30\xac\x6a\xad\xbe\x4d\xcb\x06\x5d\xa5\xa8\x08\x79\xe2\x20\x66\x55\x70\x13\x66\xc6\x7a\xbf\xb6\x39\xac\xfc\xf0\x0a\x5e\x42\x05\x09\x9e\xeb\x45\x95\x9a\xff\xda\xe8\x0b\xb2\xbf\xc5\x85\x19\x0c\xb2\x38\x2d\xab\x0f\xe4\xec\x50\x82\xc7\x44\x58\x11\xe0\x71\x35\x2e\xe2\xaa\x68\xf6\x9b\x31\x58\xf6\x5a\xe8\x49\x84\x40\x7c\xfa\xf1\xcd\x61\x0c\x13\x22\x61\x20\xd0\xa3\x11\x6a\xc2\xa3\x1e\x59\x4a\x77\x51\xf6\x00\xee\x09\xc3\xc8\x08\xf3\x3b\x5a\x8a\xdb\xa8\xd9\x13\x0c\xe5\x20\xa4\xee\x84\x7a\x0a\x36\xce\x60\xec\x47\x43\x40\x17\x06\x32\xf4\xb7\x5a\x12\x17\xcb\x35\xcb\xb3\xc4\xac\x66\x45\x6f\x9a\x28\x5b\x4d\xf3\xfe\x9a\x51\x9c\xda\x41\x62\x5f\x0e\x3c\x98\xc6\x5f\x46\x06\x82\xea\x7c\x59\xe2\x3e\x6d\x32\x08\xc0\x62\xbd\x14\x28\x4f\xa6\xad\x31\xeb\xe7\x9b\x45\xcf\x72\xb7\x14\x54\xac\x37\xa9\x01\xc2\xc7\x23\x3f\xbc\x6a\xf2\xa8\x17\x97\x36\xc2\xb0\x96\x7f\xd1\xcf\x00\xdf\x11\x2d\xaf\xa7\xd4\x60\x6c\x2f\xb6\xab\xb2\x8d\x09\x90\x5f\x3d\x42\x41\xf8\x7d\xe0\xb6\x45\xd4\xb3\x6b\xbc\x6e\xc5\x1c\x20\x70\x56\x3a\x27\xbd\xe5\x9c\x65\xb7\x5f\xf7\x88\xb9\x51\x20\x4a\x65\x7e\x29\x14\x31\x9b\x15\xb1\xac\xe4\x48\xa9\x08\x9e\xa9\x73\x38\x2a\x6c\x34\x74\x23\x95\x92\xb0\x28\x9a\xb5\xdf\xe5\x92\xaa\x9c\x9c\x09\x9c\x21\xf2\x45\xa5\x35\xf0\x4c\xcb\xeb\x91\xc0\x04\x5c\x4c\xf8\x6a\x1c\x8c\xe3\xb4\x33\x2c\xca\x7c\x7d\x2d\xee\xe0\x5a\xd1\x39\x41\x5b\x86\x8f\x3d\x71\xa4\x67\x3a\x8a\x6f\x23\xd4\x1c\x45\xd3\x99\x82\x65\x16\x97\x16\x9b\x26\x4d\xb3\x61\xca\xec\xee\x23\xae\x73\x4e\x4f\x4d\x5a\xea\xf2\x11\xab\x36\xb5\xaf\x0c\x6d\x62\x94\x79\xf3\x47\x23\x5f\xb4\xbe\xa1\x01\x8a\xe9\x9b\xb8\xb0\xd0\x2c\x12\x53\x78\x4f\x37\x11\xcc\x08\x16\xbc\xc0\x9b\xc2\x6c\xf3\xac\xb0\x0d\x8a\x84\x6e\xbf\x74\x2d\x3c\x8c\x6e\xe3\x0d\xb9\xae\x9a\xf6\x6b\xa6\xb4\xf9\xb2\x49\x12\xd5\xfb\xe2\x18\x27\x16\xea\x75\x4e\x23\xcb\x43\x9b\xe0\xb5\x70\x1a\xcb\x5e\xa7\x5e\x2b\x37\xd9\xc8\x74\x2c\xed\xe1\x12\xdc\x3c\x47\xed\x87\xca\x17\xf8\xf4\x54\x16\x76\x78\xae\x69\xd2\x6e\xce\x1c\x56\xd0\x3a\xf1\x8d\xf8\xd8\xab\x26\xf7\x6c\x3e\x6c\x63\x9a\x4b\x3c\x8d\xe8\x97\xc4\xec\xe8\x09\x35\xcd\xb5\x6e\x78\xbd\x23\x89\xf9\x91\x1e\x7c\xfa\xd1\x14\x46\x74\x78\xae\x69\x4d\xb1\xae\x04\x23\x8f\x2a\x0f\xa8\xa3\x75\xa1\x26\xee\x0f\xf2\xcc\xbd\xa8\x40\x4f\x1f\x28\xcf\xda\x07\x0a\x20\x21\xa1\xde\x19\x8f\x58\xa1\x8d\x82\x65\x84\x42\x98\x8f\x47\xca\x48\xb1\x76\x9d\x7c\x73\x68\xda\xa2\x30\xcd\x53\xcf\xf4\xfb\x32\x01\xed\x11\x91\x17\x5f\xfc\xe9\x6a\xcf\xc7\x2b\x75\x56\x29\x5c\x9c\x0d\x27\x6c\x3a\x90\x59\x28\xed\x0a\xa1\xba\x6d\x43\xd9\x28\x0d\x65\x52\x6a\x01\x70\xfa\x69\x48\xbb\x35\x96\x26\x44\x3d\xc1\xf5\x78\x8d\xca\x22\x71\x4b\xa0\x17\x07\x39\x2c\x46\xe5\x71\x91\x9f\xa0\x3a\x70\xfa\x6f\xd5\x42\x46\x05\xfa\x97\x5a\x92\xfe\xba\x72\x19\x39\x1f\xaa\xc4\xe2\x4e\xe8\x51\xe9\x9d\x00\x9f\x91\x30\xdd\xa5\x72\x14\x00\xda\x09\xe4\x10\x4e\xf1\xf4\x05\x67\x01\x83\xa1\x01\x28\x67\x5c\x42\x92\x23\xc4\xb3\x60\xdf\x3e\x07\x3c\x7a\x7b\xf0\x6d\xe3\xe0\xc5\x17\x37\xaf\x2a\x3e\x29\x1e\xfc\x4e\xb5\xfb\xbd\x19\xfa\xf6\xd2\x47\xf8\x7e\x32\xc4\xa5\xf4\x4f\x3e\x1c\x79\xe3\xf4\x6b\x13\x66\x29\xd0\x3f\x12\xf6\xb8\x13\x73\x34\x79\x3a\xab\x15\x9d\xe8\x13\x01\x2e\xc1\xdd\x58\xc6\x9f\x94\xf0\x0d\x23\x5a\x28\xf0\x4f\x42\xab\x70\x4b\x2b\x2a\x52\x40\x2f\x1b\xb3\xf2\x49\x0d\x0e\xb8\xbf\x59\xd8\x97\x45\x53\x0f\x80\xcb\x9f\x85\x1e\x95\xf9\xb3\x5a\xe8\xd0\xbe\x5c\x15\x3f\xf4\x31\xc0\x5d\xde\x55\x18\xcc\xbb\x35\xad\xcc\x45\xb2\x96\xc8\x87\xcb\xcb\x41\xf0\x0d\x19\x0d\x18\x8d\x94\xf1\xd5\x48\x91\x9d\x57\x63\x5b\x92\x3f\x0b\xc2\x3f\xd2\x89\x6d\x3a\xb7\xd8\xd6\xaa\xa3\x35\x26\xc5\x3f\xfe\xd9\x9f\x55\xaa\xeb\x0c\x82\xf2\xc9\x78\x7a\x68\x64\xbf\x8c\x9b\xba\xd8\xcc\x89\x14\x2d\x7a\x49\xaa\x3c\x03\xa0\x63\x29\x93\x04\x67\x42\x19\xbc\x2f\x38\x4a\xae\x7a\x0f\x27\x30\x10\x5a\x95\x10\x73\x02\xad\xd1\x09\xeb\x56\xef\x07\x36\xc9\xfb\x6e\x76\x3a\x31\x9d\xb8\x48\xcc\x6a\xa0\x5e\x18\x8c\x0c\x4b\x98\x55\x8d\xfc\xbd\x66\x6f\x50\x2d\x6d\x34\x75\x10\x7b\xf8\x58\x4f\x37\xf4\xac\x2d\x67\xd5\x0c\xe7\x59\x35\x69\x3a\x0b\xa6\x89\xe3\x31\xf8\xbe\xd6\xfb\x6a\x47\x38\x3a\xf2\x26\xe5\x49\xb9\x3a\xa3\xcc\x0f\x6e\x4c\xcb\xe5\x48\xcf\xb0\xba\x93\xfc\xff\x55\xe3\x98\x25\xbe\x5c\x03\x88\xa7\xca\xe8\x37\xc1\x4c\x7f\x5d\x35\x80\x2e\xab\xce\xb5\x1e\x8f\xf7\x3c\x0d\x26\xbd\x8a\x1d\xd1\xd6\x47\x2d\x28\x7a\xdf\x74\xbb\xb1\xd5\xe2\x15\xe7\xb5\xef\xe4\xf9\xba\xa1\xab\x41\x9e\x91\x40\x69\xe0\x46\xd4\xc1\x5a\xe1\x63\x95\xdc\xb1\x64\x3b\x27\xf2\x20\xed\x61\xc2\x8d\x8f\xfd\xec\x97\x29\xc5\x19\x1f\x80\xdc\x7b\xa1\x9f\xce\xdd\x0c\x95\xc0\x7e\xa0\xe6\x94\x6c\xd4\x13\xb5\x42\xa4\x00\xb7\x71\xf1\x7c\xa2\xde\xa0\x41\x9e\x45\xb6\x33\xcc\x6d\x31\xa3\x91\x54\x94\xf0\xf8\xc4\xa3\xea\x2d\x47\x79\xc2\xff\x7f\xe4\xe7\xe6\x6c\x52\xd8\xb5\x9e\x65\xaf\x3b\xdc\xa3\x1f\xd0\x1a\x97\x09\x11\x3f\xb7\x3a\xed\xcc\xfc\xf3\xcd\x34\x6b\x93\xa1\xcc\xe7\xa8\x71\x28\x59\xa1\x7c\xd8\x35\x09\x7f\x37\xa7\x17\xe6\xad\xff\x2f\x29\x52\x96\x2d\x7b\xc0\xb9\xb0\x79\x6c\x6f\xa9\xcc\x62\x43\xb9\xb3\xed\x1e\x07\xca\x11\x98\x6e\x83\x58\x86\xd5\xcc\x66\x75\x3c\x01\xc5\x5b\x0e\x1d\x9e\x73\x37\xc8\xd9\x44\x56\x99\x50\xdf\x36\xa8\x2e\xd7\xdb\x3d\x36\x52\xe6\x46\xb2\x39\xbc\xca\xd0\x3a\xf1\x20\xc9\xfa\xd4\xa8\xaa\x36\x2b\xf1\xca\xac\xee\x9f\x90\xdd\x7d\x96\x9e\x0f\x4b\x34\x66\xb0\x06\xfe\x9a\x5e\x7d\x3e\x9e\xc2\xdb\x96\xe6\x9a\x9d\x3c\x5e\xb5\xa9\xb6\x02\x7a\x43\xf9\xa5\xbd\xa1\xac\xe1\xd2\x21\x0d\xda\xfa\xb0\xfa\xaa\x22\xae\xbc\x5a\x6b\x02\x68\x87\x79\x16\x17\xc5\x50\x98\x01\x88\x5c\x1f\x63\x63\xe1\x13\xb5\x7b\xf6\xe3\x4e\x62\x73\xaa\x03\xc0\xe8\xbf\xa7\x14\x33\x80\xdc\x28\x71\x17\x11\xd0\x3c\x3b\x35\xe8\x5c\xed\x33\x69\x96\xe6\x55\xfd\xe1\x01\x20\x84\xd0\x93\x2a\x9c\xaa\x04\xd2\x24\x5d\x51\xf5\x70\x06\xae\xd5\x47\x88\x81\xab\xbf\x0d\x6d\x9b\x16\x0c\xf2\x38\xc5\x57\xdf\x53\xba\x12\xfa\x40\xd7\x89\x3b\x8f\xf9\xa0\x0e\xdc\x16\x6d\x9e\x80\x0c\x05\xd0\x6d\xf9\xab\xd0\xd7\x29\x7b\x88\x0a\xcc\x33\xec\x23\x75\xcb\x2e\x85\xda\xb1\x7d\x37\xc1\x3c\x08\x58\xdb\xc6\x13\x6a\xcf\xb4\x42\x10\x5e\x6e\x87\x24\x53\x8c\xd4\xe1\x37\x09\xc0\x41\xa7\xf7\x07\x5a\x77\xeb\xde\xc8\xc7\xc7\x41\x56\xc4\x65\xac\xb6\x34\x84\xd0\x4f\x54\x38\xfd\x44\x15\x99\x45\xcf\x76\x60\x8d\x5e\x5d\x28\x8a\x9b\x93\xca\xe8\xea\x06\xe5\x69\x60\x3c\x1c\xf7\x22\x91\xc9\x30\x5d\x59\x9f\x51\xfc\xc4\xd7\x47\x9e\x05\xfa\x50\x09\x44\x5c\x1d\xf9\x56\xea\xb1\xba\xee\x74\x9c\xae\x66\xc9\x2a\x57\xb9\x4c\xc1\xd4\x3e\x56\xe7\x55\x9b\xa6\x28\x73\x83\x70\x82\xca\xfa\x42\xe8\x1d\x0a\x2f\x68\x29\x0b\x6b\x57\x9e\x6d\x1c\xfc\x2f\xbe\xc1\xf7\xf7\x32\xa5\x8e\xe8\x97\xf3\x56\x85\xac\x63\xa6\x15\x38\x65\x97\xdd\x0a\xb1\xfa\xed\xb7\x10\x83\x91\xde\xb2\x5d\x36\xe7\xda\x94\x47\xe2\xda\x80\x28\x22\x2e\xee\xa0\x1c\x18\x89\xe7\x2d\xed\x67\xbd\x0b\x7a\x3a\xa8\xc3\x58\x4e\x57\x74\xae\x29\x91\xc0\x12\x0a\xc6\x6a\x9c\x6c\x06\xd8\x0b\x1a\x34\x1b\x24\x55\xbd\x79\x56\x99\xb8\x43\x34\x1a\x77\x15\xef\x97\x08\x48\xd7\x28\xa2\x24\x99\xe9\xc8\x6c\x9b\xe3\xdf\x54\xf7\x40\xf8\x37\x75\x73\x5b\x71\x62\x27\xfa\xfb\x6f\xab\xfe\xfe\xdb\x6a\x92\xb1\x6f\x5e\xca\xf2\x62\xb6\x5a\x24\x4e\x68\xb6\xfa\x20\x19\x00\xf2\xd7\xfc\x3a\xf2\x5b\xec\x71\x37\x35\xe1\x52\x5b\x90\x75\xac\x29\x7b\xd4\xc7\x54\x62\x27\x5f\x9f\x54\x4c\x74\xdd\xa0\x05\x7f\xac\x0c\x4a\x4c\x9e\xca\xe4\x02\x83\xa5\xca\x42\xf4\x76\x1d\xe2\xd0\xb3\xfd\x2c\xcf\x7b\xa6\xeb\xda\x34\x6c\x25\x41\xb7\x19\x8f\x11\x0c\x2e\xac\x81\x8d\x3a\x9e\xc6\x84\x75\x1f\x53\x9d\xb1\x90\x85\xf7\x5c\xb3\xed\x0c\x86\x36\x2f\x65\x53\x77\xca\xe4\xd5\x3a\x14\xbd\x3e\x07\x74\x64\x51\x6c\x20\xb5\x7d\x78\xce\xf1\x47\x03\xa7\xe3\x81\xe2\x54\x6c\x17\xeb\x90\x9c\x9e\xcd\x4d\x29\x3d\x03\xac\x40\x88\x0e\xf0\xb1\xda\xad\xe2\x7e\x95\xe0\x9b\xb4\xdc\xe3\x95\xc5\xce\xa2\x9a\x72\xb6\x4f\x5e\xbb\xf2\x35\x7a\x0d\x64\xc0\x4e\x89\x98\x9e\xa6\x80\xa5\x69\x7d\x68\x26\xb2\xee\x3f\xff\x36\x0c\x5c\x90\x89\xb2\xae\x1f\x7f\x22\xa0\x6c\xd7\x67\x73\x92\xa6\x17\x27\xb8\x4f\xc3\x32\xdb\xe1\x5b\x0a\xa7\x46\x8a\xd7\xcb\x9a\xf8\xc8\x56\xd8\xa5\x47\x06\xca\x71\xcf\xd1\x3d\xba\xa5\xcb\xe4\xd3\x0a\xe4\x6f\x67\x03\x65\x5d\xc8\xbb\x84\x10\xb0\xea\x68\x9e\x65\x8f\x58\xc2\x98\x80\x70\x1d\x77\xd7\x64\x9b\x56\xed\x5a\x9a\x5b\x6a\x76\x6c\x1c\x04\xca\xdc\xa9\x0a\x99\xe2\xd5\xe7\x5c\x14\xcd\x1a\xe6\xd9\x50\xe7\x3e\x42\x80\x2c\x62\x6f\x30\x56\xd5\xf0\x09\x7a\xe5\x64\x3e\x53\xd9\x10\x66\xd9\xca\xac\x47\x4c\x90\xf2\x29\x07\x1c\xd1\x29\x42\xda\x83\x90\xf8\x30\x54\x25\xe9\xe5\x89\x46\x55\xbf\x9f\xa5\x1d\xee\x7e\x73\x30\x0c\xbd\x1e\xf3\x65\x87\xd8\xe7\xf6\x9b\x43\xeb\xd8\xd6\x88\x04\x60\x60\xa1\x9e\xbd\x87\x27\x24\x6e\x08\x3e\x25\x34\x51\x94\xe5\x50\x8f\x52\x13\x7c\x5f\x77\xfe\x22\xf4\x95\xdd\x04\x9f\xeb\x86\x9f\x9a\x8a\x80\x07\x16\x9a\xc5\x60\x7d\x8b\xc7\x33\xa8\x8a\x32\x77\xa5\xfa\xd9\xc4\xa7\x37\x65\x96\x17\x81\x37\x81\xc5\x40\x3a\x1f\x3b\xe8\x71\x2d\xcb\x57\x06\x89\xe1\x74\xca\x09\x90\x38\x76\xc5\xb9\x09\x79\xd3\xd4\xae\x99\x84\x3a\x7b\x78\x4e\xb7\x94\xfc\xc4\x2d\xf7\x37\x93\xb8\x28\xd1\x2d\x0e\x9c\xaa\xfc\x15\x35\x17\xf6\x1a\x6e\x82\xa0\xcc\x35\x24\xfb\x66\xdb\x46\x59\x1f\x42\x3c\xd8\xce\xcf\x8e\x94\x4a\xf0\x43\xed\x7e\xaf\xdb\x84\x59\x14\x0d\x07\xb1\xe5\xb1\x1f\x6c\xde\xe7\x95\xda\x0d\x68\x4a\x68\x96\xbf\x35\x15\xff\x7e\xbe\x99\x9b\x38\xc9\x33\xd3\xc1\x28\xbc\x58\xbe\xe2\x25\x93\x71\xf5\xc0\xcd\x7c\xde\xa9\xf5\xe7\x82\xed\xfd\x96\x47\x75\x3e\xd4\x65\x5e\xcd\xfe\x56\x64\x26\x97\xb8\x8b\x58\xcd\x09\x04\x9f\x4c\x54\xc1\x66\x60\x77\xd0\x1f\x97\xfd\xd8\x13\x0f\xde\xd6\xfe\x3a\xe7\x10\x7b\xb0\x41\x9d\x18\x6d\x1d\x4a\xe5\xff\x3f\x55\x68\x92\x3f\x51\xb5\x13\xa4\xdd\x2d\x2d\xff\xa3\xa3\x60\x8b\x2e\x9b\x8c\x7f\x7c\xd1\x3d\x83\x32\x37\x69\x41\x91\xb7\xca\xe0\x66\x82\x03\x0b\x9b\xac\x7a\xac\xf3\x5e\x7c\x36\x30\x37\xb1\xc8\x79\x6e\xab\x9d\xcf\xe2\xc1\xe6\xc2\x02\x66\xc0\x27\x74\xf5\x26\x14\xf7\x1c\x33\xc4\x47\xb5\x0b\xa1\xe7\xe4\x0f\x3b\xb1\xe8\xd8\x61\xc1\xdd\xa3\x35\x80\xc1\xb6\xb3\x13\xf7\x58\x31\xf9\x4d\xde\xc9\x20\xf5\xc5\x13\x0f\xa1\xb7\x08\xba\x50\xef\xe4\x46\xed\x19\xf1\x37\x68\xc0\x40\xd5\x67\x7d\x24\x31\xd0\xf0\x25\x0b\x37\x8d\x35\x69\x13\xd9\xdc\x19\x85\xc9\x96\x66\xc5\xa6\x8f\x56\x8f\x8a\x5d\x8d\x35\x53\xee\x0a\xb2\x30\xd4\x89\xbf\x31\xf2\xa5\x77\x00\xa6\x14\x64\x18\x1e\x6d\xa9\x9c\x78\x66\xec\x5f\xa8\xdb\xa0\xc6\x03\x0a\x3f\xa5\x46\x9b\xde\x08\x3d\x24\xc6\x6a\x07\xa2\x4b\x36\x6d\x23\x7f\xa4\xb9\x9c\x98\x35\x76\xa3\xc2\x63\xb9\xab\x25\xd7\xa6\x7f\x67\x61\xa1\xd9\xb7\x65\x2f\xeb\x68\xa1\x95\x0b\x4a\x9a\xe3\x82\x1a\x5f\xae\x1e\x44\xf5\x2a\xcd\xfa\x52\xe9\xb6\xb2\x06\x39\x4e\x69\xac\x08\x24\xab\xa5\xc1\x39\x16\x9a\x27\xe7\x14\xcb\xa6\x9d\x25\x59\x37\x35\xc8\x23\x95\xca\xfa\xa2\xa3\x0c\xfa\x1c\x8c\xf8\x1f\x2c\x5d\x89\x3d\xea\x54\xa8\x24\xf4\xa6\x2d\x82\xe6\xe7\x9b\xa6\xa0\x14\xc7\xb1\x41\x90\x00\xdd\x51\xf6\x04\x77\x14\x97\x93\xd4\xc6\x66\x54\x3f\xe5\xb3\x09\x71\x41\xe5\xba\xf7\x7d\x6c\xfb\x78\x42\x97\xab\xfd\x94\xf7\xf6\xfd\x9c\xe0\xe2\x9a\x1e\xe2\xc7\xf8\x44\xfb\x83\x0e\x4c\xbe\x02\x0a\x2b\x9a\xf2\x57\xf1\x93\x7c\x32\x85\x76\x1e\x58\x68\x66\x83\x2a\xd5\x72\x01\x80\x00\xb7\x7f\xfc\x1c\x11\x4c\x91\x3e\x3d\xd2\x52\xe6\x38\xdb\x5a\x3e\xdf\xc8\x6d\xf1\x04\xdd\x28\xbc\x2f\x57\x94\x94\x30\xdb\x39\xd0\x72\x1e\xfc\x83\x96\x07\x8e\xf7\x8c\x95\x51\xc4\xf6\xff\xa8\xe5\x20\x96\xbf\xfb\x85\xb1\xca\xc5\xef\x93\x44\x85\xe3\xc1\x09\x55\xef\xb1\xbf\x37\x9e\x60\x73\x2a\x68\xe5\xef\xa3\x45\x20\x73\xb6\xc1\x2f\xfc\x0a\x23\x79\x0f\x94\xdd\xd5\x2f\x3e\x0b\xc5\x3b\xa0\x47\x27\x95\x08\x58\x67\x98\x24\x71\xd1\x43\x87\x0d\x80\xfe\xb7\xf1\x1d\xf8\x44\x05\xe6\x38\xed\xd8\x97\xf7\xd0\x1f\x42\x8e\x00\x36\x0b\xde\x9e\x7f\x4f\xc4\x07\x51\x9c\xf1\x84\x9c\x33\x94\x5e\x22\x3b\xb9\xae\xe7\xd5\x2e\x6b\x19\x8d\xed\x2d\xad\x36\xc4\x43\x92\x88\x24\x6f\x4f\xd0\x00\x46\x4a\xf7\x14\xc4\x28\x76\xe9\x57\x14\x93\x24\xcb\x06\xbd\x4c\x50\x4b\xae\x2e\x95\x4e\xd1\x5d\x45\x2b\x3d\x31\x21\xde\xb0\x6c\x59\x63\xa8\x16\x70\x98\x98\xa6\x2e\x8b\xe7\x3c\xf4\x74\x12\x10\x31\xf2\xd9\xeb\x68\xcd\x28\xc3\xcc\x23\x4c\x5f\x7e\xa8\xec\x90\x7f\x5b\x4f\x17\xdc\xc5\xae\x86\xbb\xfa\x6d\xaa\xe6\xd9\xac\x08\xcf\x02\x5f\xfe\xcd\x09\x6c\xe2\x4d\x64\x57\xa2\xd2\x4e\x97\x8d\xbe\x46\xa3\x35\xd9\x45\x77\xd3\xa2\xb7\x47\xbe\x92\xfe\xdd\x91\xc2\xd2\x11\xfe\x11\x74\x3e\xa0\xa0\xe3\x2c\xda\xab\xdb\x8d\x27\x7c\x95\x6e\x37\x8f\xe4\x6a\x69\xc8\xdb\xca\x05\xa3\xcc\xcd\x6a\x6c\x4a\x83\x7b\x8f\x06\x0c\x50\x6c\xd9\x17\xfc\x0b\x76\xce\x37\x88\xc9\xbb\x78\x4b\x83\xf8\xfb\xaa\x41\xfc\x7d\xad\x85\xeb\xb4\x38\xdc\x9f\xf4\x7f\x7e\x2a\x68\x91\x28\x70\x99\x67\x69\xd6\x67\xb6\x80\xb3\x4b\x9a\x9f\x77\x53\xe2\x5b\xe3\x83\x60\xd1\xcb\x79\xd6\x9f\x09\xbe\xb1\xdf\x73\x0e\x9d\x5f\x39\x58\x31\xc8\x94\x38\x54\xe0\x66\xde\xf7\x3d\xff\x38\x5a\xb1\x29\xab\x1f\x68\x63\x2e\x60\xf5\x1f\xe1\x26\x62\x21\xde\xfa\x5c\x61\xce\xe5\x61\x4e\xee\x64\x5e\x6c\x80\x27\x21\xc5\x5c\x5d\x89\x70\x7e\xac\xdc\x1e\xb8\xb3\x22\x66\x43\x8f\xfb\xc9\xe5\x0e\x5d\x54\xb5\x2e\x45\xa7\x9a\xfe\x9e\x64\x7d\xc1\xa4\xa2\xa6\x5b\xf3\x69\xc7\xec\xf2\x45\xff\x6d\xc5\x33\x3e\x1b\x2a\x81\x87\x37\xf5\x5b\x73\x8f\x2e\xc8\xd9\x15\x7a\x15\xbf\x77\x68\x98\x51\xc4\xeb\x69\xf5\xb2\xe8\x90\x52\x6c\xec\xd9\xd2\xe6\x59\xd7\xa6\x56\x6c\x83\x90\xd7\xc0\x26\x11\xf9\xce\xa7\x5a\xcc\xe1\xbc\x02\xc6\x49\x4e\x34\x37\x5d\x3b\xe3\xd7\x0a\x2a\xb2\x89\x1a\x1e\x70\xdb\x4d\xc4\x54\x69\x3d\x3a\x2e\x8f\x89\xa2\x38\x05\x97\x07\xa9\xe5\x39\xdc\x2b\xa7\x00\xe1\xa8\x1e\x1b\x53\x1a\x64\xd5\xd2\x03\x75\x48\xb6\x4b\x80\x92\xef\xd3\xfb\xc0\xc7\x53\x8f\x9d\x66\x70\xe1\x1c\xdf\x17\xc2\x88\x08\x5a\x68\x75\x8b\x3a\xf9\xeb\x65\x93\x2e\x9b\x5c\x9b\x1a\x5f\x54\x92\x4a\xd3\x36\x37\xfb\xf6\x29\x51\x4c\xb9\x48\x56\xc2\x52\x8e\xe1\x1f\xa9\x0d\xa3\x6d\x93\x6e\x3c\xec\xa3\x02\x41\xa6\x0c\xd4\x05\x4b\xf3\x01\x9e\xb1\xcc\x18\x3e\xa3\xd1\x5c\xbb\x1c\x47\xb1\x49\xd0\x99\x43\xa8\x7a\x57\x71\x9c\x2f\x23\x6e\x22\xcf\x3f\x85\x39\x55\x3e\xc1\xfa\x00\xb0\x75\x03\xeb\x9d\x7f\x9f\xae\x92\x3b\xdf\x0a\x31\x5d\x33\x65\xd4\xb3\x39\xe6\xea\x04\xc7\xa7\x4b\x96\x02\xa1\xc6\xcd\x17\x03\xae\x89\x3c\x6f\x7c\x07\x0c\x8e\x48\xd7\xd4\x3b\x48\xdd\x54\xa2\x3c\xb9\x4d\xd3\x18\x15\x26\x7a\x64\x9f\xd0\xfa\xe4\xe3\x29\xea\xd2\xfc\x7c\xb3\x3f\x8c\x7a\x81\x9f\xe9\x3c\xa3\x46\x37\x27\xe5\x84\xe2\x55\xfb\x53\xbe\xae\x7d\x0c\xd9\x2e\xe2\xf1\x69\x60\x32\xd8\x74\x8e\xd3\xf6\x0b\xa8\xe0\x64\xe8\xc7\x39\x4f\x60\x67\x42\x10\x78\x8a\x2c\xf8\x51\x1e\x7e\x07\x6a\xc5\xa0\xf8\xfc\x08\x89\x1f\xc1\xfc\x3f\xfd\x53\xe3\x2a\x07\xc1\x5b\xfa\x89\x22\x4c\x36\x80\x60\x10\x7a\x7a\xf7\x0b\x2d\xa5\x1f\xf7\x2e\xed\xf1\x80\xbb\xae\xe2\x36\xb3\xcb\xc2\xa4\x21\xf9\xbe\x7d\x4e\x32\x9c\x1e\x35\x05\x99\xb9\xa7\x79\xef\x17\xe7\x5b\x65\xe6\xf2\x7f\x6a\x3b\x83\x5b\x23\x65\xb8\xf1\x3e\x21\x20\x78\x2c\x3f\x41\x52\x80\xe7\xb2\x89\x0d\x17\xb0\xe9\xb5\x91\x17\x31\xcd\x56\x6d\xde\x1e\xc6\x64\x21\xa0\x34\x0b\x4e\x28\xb3\xa5\x13\x35\xcc\x98\xfd\xcd\x6e\x96\x01\xf8\x76\x6a\x61\x4b\x73\xae\x2e\x9c\x90\x7e\xca\xbb\x24\xa1\x89\x38\xb6\x31\xd1\xa1\xf7\x6f\x3c\x4f\x38\x8b\x58\xbc\xa0\xf5\xaf\xc4\x83\x82\x37\x28\x07\xf8\x54\x3f\xc7\x27\xae\xe2\xcb\x6d\x9a\xc5\x4e\xaf\x07\x48\xce\x69\xad\x8d\x70\xda\x8d\x9c\xf7\xcc\xaa\x7d\xc4\xbf\x5f\xd0\x7d\x40\xf2\xf0\x1c\xf5\xdd\x70\x93\x5e\x0f\x15\xc9\xff\xde\x84\x41\x37\xad\x77\xea\x17\xfc\xdc\xb3\x2d\x35\xa4\xc9\xb4\x43\x0a\xc6\x7f\xc4\x8a\x29\x80\x79\x76\x8c\x85\x6a\x96\x66\x71\x81\xd0\x8b\xdd\x2e\x68\x05\xca\xda\xcb\x8b\x3c\x60\x1f\x95\xae\xf4\xe7\x8d\x56\xb5\x73\xf3\x4a\x9c\xc4\x26\x9d\x90\x1b\x9b\x74\x9a\xab\x43\x2b\x7a\x79\xd6\xcf\x8a\xac\x8f\x2b\xc1\xa2\x7a\xac\xa5\x60\x08\x24\x86\xb8\x13\xb3\xe3\xed\x5f\xe6\xf6\xc8\xbf\xad\x91\xaf\x3c\xd2\xec\xd8\x55\x9b\x64\x03\x97\xa8\xb8\x89\xff\xea\x06\x08\x51\x70\x8f\x6a\xa0\xef\x7d\xc2\x13\x51\x59\xdc\x1f\x4f\xe9\x07\x78\x64\x80\x00\x77\xf2\x1b\x80\x9b\xfb\x00\x6f\x00\xee\xc8\x79\xed\xfc\xa6\xad\x04\xe1\x1e\x85\x72\xf0\x01\x2e\x00\x0c\x97\xbf\x54\x22\x5c\xaf\xd3\x03\x54\x32\x61\xfb\xb9\x43\xf9\x19\x12\x3b\x67\x44\xe8\x40\x41\x1e\xc6\x97\x21\x79\x1f\x51\x73\xfb\x92\x8d\x4a\xdb\xa1\x15\x2e\xf6\x57\x7e\x06\xff\x7d\xc5\x56\x67\x79\x25\xbe\x9c\xea\x15\x74\x83\x28\x03\x9b\xc7\xfd\x41\x56\x30\xa5\x94\x67\x5c\xe9\x77\x65\xde\xf5\x09\xb5\xfb\x27\x49\xf5\x4a\x2c\xcd\xb9\xa9\x50\x65\x65\x72\x49\x95\xbd\xeb\xb1\x4d\x3a\x16\x3a\xad\xce\xf5\xe1\x80\xe7\x6e\x3e\xab\x9c\x71\x5f\x1a\x62\x63\x2d\x76\x78\x26\xd0\x99\x50\x8d\x98\x7e\x38\xf2\xcc\xd5\x33\x48\xcc\x51\x77\x01\x61\x72\xae\x2b\x7e\x60\xe5\x52\xdd\x94\x42\x51\x0e\x3b\xeb\x04\xe6\xe2\x49\x32\x7f\xc3\x59\x9f\x54\x8f\x12\xd1\xe1\x47\xca\x71\x66\x76\xac\x92\x92\xf3\x35\xfc\xb3\xc5\x26\x49\x31\xf3\x0d\x54\x56\x98\x4e\x9d\x5c\x29\x47\x2e\xc7\xab\xf6\x09\x95\x52\x1f\xc3\x42\x11\x3c\xa8\xba\x45\x13\xe3\xc0\x22\x07\x45\x17\x87\xe7\x77\x06\xf0\x81\xd0\x1c\xe9\x76\xa0\x55\x7a\xca\x5b\x8a\xfc\xed\xe7\x10\x1d\x50\xf3\x20\xb5\x93\x0a\x02\x4b\x1b\xf5\x29\x64\x68\x18\xb7\x1e\xf9\x86\xf9\xb5\x91\x1a\x69\x62\x3a\x14\x18\x30\x4f\x8c\x25\x40\x16\xc3\xb8\x28\x44\x85\x0d\x0d\xe9\x8b\xba\x3b\x7d\x71\x42\x67\x61\x60\xd6\x29\x7b\x52\xf3\xd6\xd7\x43\x95\x7e\x5e\x9f\xee\x0e\xed\x23\xf8\xdd\xbd\xdb\xc8\x36\x3e\xa6\x2f\xc9\xc7\x53\xbf\x73\xe8\xf9\x66\xd6\x2e\x22\xa2\xb9\x48\xa4\xfc\x03\xad\xfa\x7a\x4e\x99\x32\x4b\x59\xca\x88\x86\xf2\x10\x3e\xe2\xb0\x62\xff\x15\x22\x93\xc0\x8c\x59\x93\x1b\x6f\xe2\x2b\xf0\x89\x9e\x43\x32\x9d\x57\xd6\xfb\x2c\x53\x89\x37\x69\x5b\xcb\x5b\x94\x6f\x73\x51\x99\x92\x62\x82\xdc\xf0\xde\xde\xa2\x92\xd0\xcd\xc8\xba\x69\xc7\x7b\xc8\x08\xc4\x18\xd7\x87\x59\xb6\xaa\x46\x4c\xff\xff\x53\xa5\xb9\xc9\x55\xaa\x73\xf5\x3a\x3c\xe7\xbb\x24\x4e\x73\xf0\xcc\xc8\xbf\x0b\xd7\xeb\x94\xe2\x3a\xd9\xb0\x5d\xe2\xde\x60\x2f\x41\xea\xc5\xc7\x8e\xc2\x3c\xc8\x64\xb4\x10\xa9\x1c\xbb\x81\xf2\x89\x1a\x78\x2c\x86\x79\xf7\x6f\x1c\xcd\x72\x63\x4b\x3d\xd3\x1f\xb0\x28\xc7\xa2\x97\x46\x76\x9b\xe5\x95\x29\x40\x74\xdf\xfe\x66\x97\xca\x28\x25\x6e\x7b\x5a\x89\xdb\x6a\xee\x57\x31\xc8\x4a\x50\x85\x91\xfb\x1c\x0b\xfd\x1c\xc6\x09\x35\x63\x74\x5d\x75\x38\x14\x7f\xaa\x51\x3d\x2b\x80\xa0\xb7\x43\xc5\x31\x3c\x31\x52\xf2\xe3\xe7\x5d\x1a\x51\xe6\x26\x4e\x78\x12\x4c\xec\xd8\x29\xd4\x0b\x08\xed\x55\x6b\x0b\x13\x77\x7e\xba\xba\x8f\xe0\x3f\x6e\x22\x8b\xc2\x17\x80\x64\x16\x73\xe1\x46\x9e\x43\xc1\x38\x83\x8c\x02\xa8\xb1\xd7\x0f\x68\xdb\x01\xdc\x8a\x6e\xb7\x50\x3f\x7c\x5a\x7c\x99\x83\x81\x78\xdd\xab\x95\xb4\x49\x2b\x05\x51\x82\x4d\x2d\x40\xd6\x39\x8e\x2c\x17\x7b\xd8\x06\x30\x0f\xa0\x19\x47\x69\xfa\x04\x9f\x7e\x33\x44\x97\x0b\x9f\xc3\xb3\xb4\xb8\xaf\x47\x09\x13\x03\x9d\x29\x80\xfd\x1c\x16\x00\xbc\x0b\x10\xa6\xfe\x6a\xa4\xbc\x67\x79\x24\xd3\x6d\xc0\x8e\x54\xff\x1e\x26\x7d\xd4\xa4\xb2\x88\xa3\xbc\x89\xda\x85\xff\x70\x1d\x85\x02\xbe\xd8\x5c\x9b\xe1\xe9\x33\xbc\xc4\x27\x53\xb1\x7e\x7e\xbe\x59\x94\x36\xf7\x4d\x7e\xb7\xb3\x79\xad\x21\x95\x6c\x7c\xc5\xf6\x27\xe7\x30\xe9\x8f\x4b\x4f\xfe\x29\x8d\xe2\xd1\x78\x7c\x30\x21\x97\xe6\xa9\xa1\x17\x26\x72\xda\x4e\xd7\x3e\x4a\xb7\x46\x48\x8d\xb4\x48\x50\xeb\xdd\x55\xa9\x13\xb7\x08\x11\x3c\x18\x79\x40\xec\x39\xc3\x0f\x5d\x10\x60\x2f\xde\xf7\xb6\x1a\x3e\x38\x41\xfb\x35\x1e\xe6\x5d\xac\x2b\xb7\x1b\xbb\x55\x79\x53\x6d\xf9\x44\x79\x33\x45\x40\xf7\xdd\xf1\x0b\xab\xa7\x2b\x1d\xa9\x9a\x87\xd0\xcb\xfa\x36\xb1\x05\xf8\xeb\x0c\x42\x4d\x00\x52\xcf\xb8\xe4\xf5\x3f\x84\xd4\x54\xa3\xb2\x4e\x56\x8a\x66\x48\x4f\xb9\x76\x4a\xc8\x3f\xb0\x7e\xb1\x77\x97\x57\x12\xfb\xef\xef\x23\xa3\x60\x1e\x06\xf6\x40\x47\xd0\x50\xdd\xed\xc0\xf9\x14\x6c\x8e\x14\x8f\x6d\x1b\x14\x83\x9d\x09\xab\x1a\x38\xaa\x31\x8d\xcf\xed\x20\xb7\x05\x6f\x90\x02\x15\x9e\x57\x03\x37\xe7\xa7\x58\xcb\x3f\xd3\x2c\xcc\x3a\x75\x2c\x45\x0a\x58\x85\xcb\x13\xc4\x3a\x17\x8e\x63\x4d\x36\x84\x36\x8a\x27\x19\xde\x19\x29\x73\xc1\x3b\xe1\x53\x6e\x68\x32\x2d\xe3\x74\x48\x68\x8f\x23\x71\x1d\x1b\xa9\x1e\xcf\xaf\x29\xad\xac\xe3\x8a\x71\xf8\x8f\xca\x5e\xe0\x59\xe5\xf7\xe8\xdd\xe6\x63\x85\x42\xc4\xe9\x4b\xc3\x34\xc2\xf0\xe0\xfc\x3c\x17\x96\x9f\xd1\xf7\xe6\xe3\x91\xec\x33\xfd\xaf\xb4\xb3\xb5\xcf\xe7\x15\x78\x9a\x2c\xb3\x09\xc8\x40\x61\x7e\xde\xab\x5f\x7a\x25\x4c\xaa\xcd\x91\x34\x5d\xd3\x64\xb3\x6b\xb5\xc2\xaf\xa5\x27\x39\xd6\xb2\x75\xdc\xd8\xe2\x4b\x4f\x28\x33\x38\xd6\x6c\xa5\xad\xb6\xf1\xe5\xb1\x26\xab\x6c\x1b\xfb\x41\xd0\x3b\xa1\x92\xca\xfc\x09\x91\x18\x9c\x09\xd8\x92\xf4\x81\x7e\x9f\xa2\x3f\x4a\xf0\x9f\x20\xe2\xe3\x56\x3e\x44\x9a\x28\x73\xfc\x4a\xf0\xf0\x4c\xe8\x09\x75\xdc\x9f\x90\x89\x00\x45\x5b\x7e\x96\x90\x22\x4a\x3c\xbe\xf9\x77\x5a\xbe\x7d\xf3\x12\x8b\xa8\xb9\x70\x00\x40\x44\x4c\xf8\x9e\x99\x6c\x9c\x1e\x7a\xbe\x79\x60\x61\x97\x62\x9e\x1e\x0b\x15\x49\xfd\x0a\x21\x03\x82\x38\x7a\xb1\xc8\xab\x4a\x93\x6b\x96\xee\x88\x13\x42\x3d\x20\x86\xb1\xbf\x4e\x9b\x18\x4b\xc5\xd4\xb0\x40\x9a\xcb\x36\x29\x1b\x4a\x21\xfd\xf2\xc4\xab\x49\xb7\x16\xfc\xd5\xcf\xc2\x1a\xd6\x7f\x96\x13\x09\x1c\xdb\xd7\x6b\xf4\xb9\x7c\x5c\x6b\xe3\xb5\x9e\x15\xbd\x18\xce\x10\x48\xa1\xae\xe8\xc2\xea\xca\x14\xde\xb8\xb0\xd0\xec\x64\x29\xb5\xa5\xf1\xaa\x21\xe1\x78\x5d\xa3\xbb\xaf\x2b\xd8\x6a\xd9\xb4\x49\xbf\xd1\x89\x8b\x1c\xc7\xdf\xe7\x13\x35\xcb\x13\xe5\x71\x61\x8b\x19\xcf\x18\xbc\x49\x2b\x04\x37\x76\xa6\xa5\x86\x8e\x61\x5a\x26\xe2\x17\x4f\x2b\xa5\x67\x66\x0d\x34\xd4\x56\xf6\xae\x72\x13\x01\xa4\x2b\xd8\x66\xcd\xdc\xcd\x5a\xcf\xb2\xb9\xf1\x0b\xae\x6e\x00\xb7\x90\x8f\xeb\x00\xd1\xf6\x30\xf7\x63\xfd\xf8\xa0\x07\x8a\x75\x7b\x53\xe9\x24\x7e\xaa\xda\x89\xf6\xe5\x92\xa6\x85\xe6\xe7\x5d\x07\x91\x1e\x3a\x72\xe6\x1b\x58\xd2\x7c\x32\xd2\x4d\xc7\xcf\xe3\xb4\x77\x6c\x9a\xc6\x85\x96\x07\x42\x72\xab\xa4\xb6\x24\x47\xbd\x17\xfa\xbb\x96\xb5\x0b\x9b\xaf\xda\xbc\xd8\x51\x7d\x4f\x14\xe5\xe7\xb4\x03\xc9\xa7\x13\x2e\xe6\x94\xf5\x08\xd3\x9b\xde\x54\x69\x4f\x05\x4e\xf6\x81\x32\x64\xa7\xbe\x11\xa7\x34\xc0\xb1\xb4\xc8\x05\x22\x74\x07\xf8\xd8\x31\xe1\xa3\xdc\xf4\x07\x1c\x92\x78\x66\x88\x9e\x96\xcc\x0f\xd5\x58\xac\x38\x4d\xc8\x86\xa2\xda\xa1\xfc\x03\xe4\xf8\x67\x78\x5b\x90\xe4\x4d\xeb\xec\x1e\x9e\x5b\x6c\x26\x76\x99\x0b\x38\xa1\x3d\x04\xca\x29\xd1\x23\x7b\x51\x96\xe7\xb6\x18\x64\x29\x31\x28\xab\x8b\x44\xb5\xca\xb6\x6b\x7c\xe2\x52\xe4\x81\x49\xff\x3f\xce\xde\x34\x46\xb2\x2b\x4b\x0f\xab\x8a\xcc\xac\x85\xc5\x6a\x16\xc9\xee\x59\x84\xb1\x27\x66\xd0\x1e\xea\x07\x41\x01\x32\x6c\xc3\x03\x03\x2f\x26\x33\xbb\x39\x55\x98\x4e\x26\xb2\x4a\xc5\x31\x6d\xc0\x7d\xe3\xc5\x8d\x88\xc7\x7c\xf1\x5e\xf4\x5b\x32\x99\x84\x7f\x08\xb6\x31\x10\x0c\xe8\x87\x04\xcb\xb2\x61\x79\x3c\x8b\x04\x4b\xb6\x34\xea\x9e\x96\xa6\x67\x91\x14\x31\x9c\xa5\x97\xe9\xe9\xe9\xe6\x4e\x16\xd9\xac\x7d\x5f\xb2\xf6\x95\x59\xc6\x3b\xdf\x39\xf7\x9e\xc8\x78\x34\x20\xfd\x7b\xaf\x2a\x23\xe2\x2d\x77\x39\xe7\x3b\xdf\xf9\x3e\x33\x30\xac\x77\x8f\x85\x10\x2f\xd1\x59\x23\xf8\x49\xb6\xa3\xa5\xed\xff\xd7\x6c\xc1\xc2\x12\xaf\xb8\x26\x14\xba\x0b\xd9\x69\x3f\xe7\xc3\x87\xbc\x48\x87\xa4\xd0\x22\x2c\x43\x4f\x3e\xbe\xae\xb4\x4f\xaf\x28\xc2\x16\x4d\x91\x6a\x19\x3c\xea\xbb\x8a\x7c\xf0\x3c\xdd\xf7\x40\x04\x12\x6b\x32\x76\x8e\x13\x8a\xad\x17\x23\xb8\x34\xa5\xea\x71\xe8\x50\x33\x8d\xe2\x86\x87\x3c\xbf\xa9\xf1\xbe\x6f\xd6\xc5\xa0\x03\x93\x28\xce\x25\x88\x37\xb3\x4a\x29\xef\xfe\x48\x97\x54\xbc\x0e\xc7\xab\x65\xa7\x27\x29\xf8\x2b\x9a\x78\xe8\x64\xfe\x5d\x4a\xd7\xb5\x36\xce\x21\x09\x84\xf5\xf0\x34\xa6\x9b\x53\x21\xac\x3e\xc4\x5d\x26\x23\xad\x84\xb8\xfd\xf6\x96\x96\x9a\xa6\x23\xd8\xa8\xb2\x88\x78\x45\x59\x44\x78\x30\x2a\x0c\xad\xed\xf0\xb6\x53\x17\x07\x4f\xcb\x24\x2c\x37\x87\x36\x6b\x54\x9b\x26\xae\xf3\x91\x5a\xc3\x1f\xb9\xc8\xa1\x6b\x92\x10\x5e\xc3\x04\xde\xfe\x9d\x9f\x19\x2b\xed\xfc\xef\x8e\x26\xe8\x7a\x8e\x95\xf6\xf7\x9b\x53\x62\xc0\x4b\x4b\x87\x9b\xe9\x10\x68\x19\x4d\x03\xe6\x1b\x60\xcc\x09\xf9\x60\xfb\xa7\x16\xbc\x34\xef\x2c\x7d\xca\x41\xa5\x4e\x66\x9b\x3b\x2d\xb0\x23\xfc\xa6\x32\x6b\x6c\x4c\x09\x6e\x2e\x1e\x69\x76\x6c\x18\x0d\x58\xf1\xda\x41\x8c\x4b\x4b\x0e\xdf\x7b\xc6\xb7\xca\x15\xfd\x41\xba\xe6\xc6\x0a\x7b\x66\x8d\xfc\x32\x8a\x4a\x11\xd3\x39\x95\xd2\xad\x32\x64\x72\x49\x24\x1b\xb6\x8b\x23\x93\x5f\xb5\xf2\xa8\x27\xc4\xf9\x25\xc7\x75\x53\x6a\x78\x6f\x4f\x6d\x8c\x2b\xf3\xcd\x32\x89\xba\x69\x36\x60\xe4\x40\x44\xae\xfc\xb4\xb9\xeb\xe6\x6e\x6c\x4d\xc7\xdd\x02\x72\x89\x07\xbe\xf1\xe7\x8f\x9f\x69\x39\xf2\xe0\xca\x4f\x8f\xeb\xf0\x39\x13\x92\xbf\x3b\x56\x22\xc1\x03\x68\x10\x0a\x50\xe0\xa4\x55\x92\xc2\x66\xc3\xcc\x16\x34\xe5\x5d\xe8\xee\xea\xbc\x5e\x53\x61\x60\xb3\xd0\x76\xec\x44\xd7\xd2\x1d\xad\x3b\x7e\xc7\x2d\xd6\x6d\xdb\x8f\x92\xce\x93\x4a\xac\x65\x6b\xa4\x3c\xdb\x66\xc6\xba\xcb\x86\xb2\x6e\x94\x93\xf0\x6e\x90\x8d\x3f\x89\x11\x2b\x1e\xf4\x55\xd0\x82\x9d\xea\xbb\x23\xdf\x55\x75\x83\xb2\x7c\x5a\xbf\xff\x87\x9f\x6b\x29\x28\xe0\x4d\x0a\x0e\xf0\x0b\x0f\x69\xbe\x22\x49\xd8\xd1\xd2\x99\xe5\x5a\x04\x17\x5c\xa7\x77\xe0\xe5\x7a\x2e\x29\x93\xa6\x87\x5a\xf3\xb3\xb0\xc3\xbe\x95\x12\x00\xb0\x73\x26\xc6\xf1\x89\x56\xe7\x2d\xf3\x6a\x77\xcb\x07\x36\xe1\xb5\xde\x49\x39\x3b\x7e\x1e\xcb\x84\x63\xf0\x7f\x4b\x89\x90\xe7\x71\x6a\x26\x7f\xe7\x9a\xfe\x9d\x6b\x8a\x15\xd3\x8e\x92\x1e\x53\x4d\xc4\x7d\xcb\x6f\x53\xc7\x26\x66\xca\xb4\xfd\xc7\x52\xb3\x5d\xc5\x34\xa6\x27\xaf\x16\x40\xc3\x18\x8b\x16\x9f\x28\x14\x3e\xb7\x43\x93\x99\xc2\xee\xaa\x32\x0a\xa4\xa1\xbc\xa6\x0a\xde\xd8\x70\x82\x6e\x67\x26\x78\x3c\x23\x5f\x91\x7c\x17\xf8\x2e\x5e\xca\xce\xa9\x65\xe7\xe0\x52\xb3\x4c\xba\x26\xca\x78\xb2\x20\xac\xbe\xa4\xf8\x12\x97\x54\xb3\x52\x6e\xb3\xc8\xe6\xbb\xfc\x7e\xc0\xca\x94\x13\x7d\x8a\x48\x6a\xef\x2b\x62\x0b\x24\xf7\x91\xe2\xb3\x10\x02\xc2\xb3\x6a\xc7\x65\x10\x2c\xaf\x66\xba\xab\x81\x0b\x7b\xae\xe1\x2c\xcb\x2e\x4d\xad\x7d\x4e\x88\x2f\x33\x33\x0a\xc3\xc6\x9e\x28\x54\x40\xfa\x31\x4c\xc5\x7b\x75\x6d\x15\x79\x91\x45\xc3\x19\x1f\xd5\xfd\x20\x50\x5d\x3c\x2c\xbe\x05\xd4\xe8\x82\x5b\x34\x86\x59\x1a\x16\x5c\xbe\x03\xbd\x1f\x1c\x49\x39\xf1\x84\x4d\x7a\xdd\x31\xf5\x62\x08\x65\xa1\xe1\xdc\x34\x7e\xaa\xa5\xbc\x76\x9e\x18\x6b\xef\x3b\xff\xfa\xae\xd6\x19\x12\xf7\xcb\x70\x95\xd0\x22\xc1\x2b\x9c\x8a\xa5\x57\xb4\x54\x94\xf9\xa1\x79\x7d\xd6\x47\x8e\x9b\xca\x91\x91\x59\x11\x88\xcb\xde\xa4\x9e\x1c\x31\x17\x55\x24\x80\xa8\xd3\xa1\xea\xfa\xca\x3c\x03\x8b\x88\xc4\xf9\xd8\x55\x20\xc3\xb8\xb4\xaa\x4e\x01\xa6\x8e\x10\x43\x0e\x78\x8e\x85\x49\x42\x67\x4d\x27\x4d\x88\xf4\xfe\xa4\x0b\xd1\xa9\x8d\x99\xc1\x70\xc6\xb7\xab\xfc\x31\x3d\x3b\xfc\xea\x43\x85\xd4\xdf\xaf\xa3\x20\xb7\x53\xaf\x28\x0e\xa4\x82\x79\x34\xae\xd3\xb9\x1a\xb7\x48\x04\xaf\x28\x3a\x99\x49\x36\x08\x6c\xda\xe5\x57\xb2\x5d\xa8\x20\x72\xca\x13\xa8\x6e\xc1\x13\x4a\x44\xe6\x6d\x5a\x20\xd9\x90\x6d\xe4\xab\x72\x17\xf4\x93\x34\xf9\xaa\x2d\x72\xba\x27\xd0\x5b\x99\x09\x8e\xba\xef\x23\x12\xb9\x94\xf0\xd2\xbf\xbf\xe5\x5f\xfa\xaf\x1b\xbe\x05\xff\x26\x46\x28\x9f\xd4\xf1\x0d\x92\x92\x65\x3a\xb0\xda\x7e\xa2\xf4\x78\x3e\x71\x9b\x4c\x68\xda\x51\x62\x8b\x09\xdf\xf8\x37\x95\x6f\xfc\xb4\x70\xd4\xca\x72\xb3\xe8\x9b\x82\x1a\x09\x81\x8a\x6e\xe1\x61\x00\xdf\xd8\x31\xd6\x36\x43\xd5\xc3\x40\xf8\x78\xd3\x35\x4c\x14\x69\xc2\x1d\x6a\x18\xdb\x27\x95\x70\xeb\xbe\x96\x4f\xce\xf6\x63\xd7\x42\xb4\x3e\x6d\x29\xbd\xb0\xd0\x34\x51\xec\x76\x6d\x51\xf9\xf7\x84\xa1\x3b\xd3\x42\x1e\xfc\x24\x7b\x69\xb2\xcb\x17\xf7\x4f\x62\xa3\x46\x74\xf6\xc6\x84\x64\x33\xcd\x40\xb4\x40\xdc\x09\x14\xf4\x75\x0e\xa0\x30\xd7\x78\x03\x5f\x6a\x0c\x4d\x16\x85\xa6\x28\x33\x0b\xea\x92\xe3\xca\xba\x76\xa0\xf7\x47\xaa\x89\xf8\xba\xa2\x2e\x95\xc9\x30\x1d\x96\xb1\xc9\x54\x3d\x87\x37\x20\x31\x25\x94\x60\xd3\x0c\xa2\xcc\xe0\x8d\x01\x08\x1c\x8f\x54\x43\xfd\xb8\x16\x61\x62\x9d\x4b\x9f\xd1\x5e\xd1\x19\xed\xb4\x6c\x33\x75\x00\x86\x51\x47\x96\x62\x30\x3d\x4e\x2a\xd5\x8c\x93\x4a\x1c\xe5\xd5\x68\x30\x40\x46\x82\x40\x4f\xeb\xda\x5d\xd1\xe2\xf4\xfd\x74\xdd\x76\x76\x7b\x9c\xec\x11\x22\x3e\x5d\x97\x67\x8d\x08\x5a\x5c\x28\x4c\xd9\x78\x86\x5a\x32\xb9\x8a\x3d\xf2\x2e\xc3\xff\x0f\x4a\xb8\x22\x2a\xe1\xf3\x90\x76\x66\xcd\xaa\xe9\xd9\x06\x81\xc3\x8e\x94\xea\xd4\xe3\xce\x29\x4a\xf4\xab\x69\x99\x25\xcc\x63\x57\xa2\x25\x42\xde\x3b\xa5\xee\xe4\x83\x1a\xc8\xa6\x19\xdb\xa4\xe3\x56\x60\x94\x96\xd1\x02\xc0\xc7\x63\xd9\xdb\x3a\x96\x9c\x18\xdd\xdf\x3a\x1f\x1e\xef\xc9\x53\x67\xf4\xb6\x9e\x66\xab\xbc\x82\x61\xbc\x3e\x00\x4d\x4a\x16\x08\x05\xf4\x9c\x51\x85\xf4\xbc\x48\xc3\xd5\xfc\x59\xfa\x25\xe1\x4a\x35\x9c\x3d\xe9\x5e\x48\x7a\xe1\x31\x32\xb1\x13\xfb\xdb\x6d\x6e\x0d\xe1\x62\x15\x48\x3b\xcc\x45\xa0\x57\x82\x89\xfa\x0e\xa1\x66\xec\x35\x4e\xaf\x0d\xf3\xf4\x3e\xfa\x62\x9d\x53\xb9\x22\xd8\xa1\xa8\x23\xf6\xe4\xb4\x98\x8a\xd8\x42\xf5\x7a\x01\x2c\xf0\x34\xc3\xf2\x7e\x1f\x0b\x0b\x82\xc2\x7f\x40\x11\x26\x90\x6a\xc8\x68\x8b\x33\xa9\x2a\x6a\xbc\x57\xa7\x36\x58\x98\x81\xcd\x66\x08\x28\x71\x1a\x66\x8e\xe1\xf4\x96\xba\xf8\xbb\x6e\x59\x8c\x92\xdc\x66\xc5\x36\x39\x28\xe4\x60\x52\x85\x99\x50\x07\xec\x74\xcb\x18\x0d\x36\x40\x27\x3f\x56\x88\xf5\x96\xd2\x06\xba\xe3\x76\xc0\xb4\x6d\xa3\x5c\xcc\x95\x97\xb6\x08\xa9\xdc\xda\x0c\x9e\x70\x53\xe5\x17\xd8\x55\x01\x19\xd5\xc9\x91\x6f\xd6\xb8\xa6\xba\x7f\x8e\x07\x8d\x49\xd5\xeb\xc3\xfc\xb6\xd9\x56\x09\x09\xe8\x43\x97\x7e\x0c\x4c\xb6\x6a\xa9\xfd\x80\x2c\x1d\x36\x47\x5e\x3f\x8b\xc3\x71\x04\x95\x3b\xc6\x0e\x1d\xf9\x8d\x66\xcb\x43\x49\x4f\x8f\xb7\x2f\x2e\x64\x5e\x35\x48\x57\x51\x0e\xc7\xd2\x7b\x1c\x8f\x8a\x4f\xd4\x3a\xd1\x2d\x93\x4e\xbe\x8f\x1e\x2a\xd2\xd2\x7b\xca\x4c\x1c\x2a\x13\x78\x91\xa7\xf0\x0d\x78\x82\x57\x31\x8e\xdc\x5f\x2d\x1e\xd9\xe2\x6d\x1c\x73\x8c\x1d\xf7\x68\x0b\x38\x7e\x80\x1a\x42\x40\x71\x98\x83\x8c\xb8\xf4\x51\x56\xb7\xc4\xb6\x50\xad\xed\x71\xf9\x91\x97\x9a\xa6\x33\x88\x92\x28\x97\x98\x4e\x44\xba\xbc\x87\xfc\xb5\xe0\x80\x72\x82\xfd\x5a\x19\xd9\x81\xc2\x5c\x2f\xe8\x0c\xdb\xdb\x09\xaf\xf7\x5d\xf1\x5a\xec\xf8\x1b\x4e\xc3\xf6\xa2\xaa\xcd\x16\xfd\x28\x7f\xc6\xb3\x38\x7f\x23\x50\x76\x68\x33\x63\xdf\x15\xc8\xf3\xdf\x19\xf8\x2c\x2c\xba\x16\x3b\x5f\x82\x05\xed\xdb\x69\x7c\x3a\xaf\x9c\x7f\x82\x88\x07\xc1\xca\x23\xcc\x42\x0c\xfe\xf7\x02\xc5\x67\x7e\x0f\x4f\x1c\xa1\xe2\xe7\x5b\x93\x8a\x79\x5f\x59\xf4\x65\xe6\xea\xf1\x62\x75\x78\x88\x95\x5c\x08\x29\xb4\x41\x0a\x4f\xdf\x6b\x72\x6d\xaa\xcd\x60\x90\x76\x6c\x96\x00\x20\x75\x7e\x7c\xaa\x19\xde\x97\x03\x6e\x2b\x23\x5d\x13\xe7\xe9\x4f\x10\xd0\x89\xc1\x71\x36\x50\x42\xf6\x6c\xce\xc0\x4d\x32\xca\xab\xed\x3c\x76\x6c\x09\x7f\x14\x7d\xf8\x0f\x03\xdf\x0c\x73\x45\x05\x2c\xdf\xc5\x93\x42\x89\xe8\x53\xd5\xd1\x70\x55\x71\x85\xb8\xb4\xc3\x2b\x14\x56\x38\x87\xcc\xfa\x7e\xe5\x1f\x70\x3d\x54\xfc\x46\x27\x04\xf0\x1d\x87\xf3\x32\x5e\x87\xa4\xe9\xf4\x06\x70\x72\x9b\x62\x72\x64\x4e\xa7\x46\x13\x56\x68\xae\xb6\x70\x63\xaa\x76\x41\x11\xd2\x80\xf7\x0e\xdc\xc7\xdd\x60\xa2\x81\xa1\xba\x76\xa9\xfd\xe9\xa1\x9d\x97\x03\xa0\xb8\x2f\xf2\xdf\xde\x50\xae\x31\x8f\x03\x25\xa0\x73\x51\x37\xe4\x24\x69\x56\x20\xee\xd1\x6d\xd0\xe2\xce\xa1\x94\xb8\xef\x4e\xc1\x35\x0b\x0b\xcd\x98\xb3\x62\x10\x2f\xf1\x72\x7f\x17\x8f\x84\x4f\x14\x7a\x34\x4c\xb3\xa2\x9b\xc6\x51\xfa\x24\x0d\x05\xd7\x83\x72\x50\x86\xcf\xbb\x13\x6e\x8b\x23\xdf\x23\x79\x9e\x37\x38\xb1\xc0\x51\x4d\x0b\xa7\x95\x05\x2a\xf7\x45\xf1\x17\x63\x58\x39\x7b\xd2\x43\x87\x78\x9e\x7c\x42\xd3\x0c\xc3\xed\x7a\xe0\x0b\xa5\x27\x55\x30\x02\x3b\x94\x2c\x99\xc5\xef\x62\x0d\xdf\x01\x80\xd3\xf5\xbe\xf8\xac\x9d\x25\xcb\x11\xa8\xdc\xad\x31\xa3\xeb\xa6\x71\x47\x76\x26\xac\x7f\x9f\x60\xb1\xe4\x13\xb5\xdc\x86\xfd\x92\xdb\x26\x1c\x83\xd6\x05\x58\xd3\xc2\xbc\x2b\xf3\xcd\x5e\x94\xb1\x4f\x13\x06\xd5\xfb\xb8\x32\x3e\x99\x7a\x6b\x47\xe7\x17\xab\xb0\x26\xea\x25\x36\x6b\x28\x59\xe3\xef\xaa\x17\xff\xdd\xa9\xaa\xd8\xd1\xf9\x66\x9e\x36\x7c\x03\x3b\xbc\x5f\xf9\x58\xd5\xaa\xc2\x2c\x1a\xd8\x7c\xb6\xf1\xdc\x73\x0e\xcf\x54\xd2\x68\x57\x41\x66\x76\x7e\x8d\xba\xb2\xe0\xbb\xab\x07\xe6\x75\xdb\xa0\x69\x89\x19\x0e\xa2\x16\x1f\x3b\xb3\xc1\xaf\xad\x85\x33\xaa\xe9\x06\x1b\xac\x1c\xd3\xeb\xc0\xc9\xe3\xe0\x49\x25\x86\x65\xf6\x29\x55\x4e\x28\x3f\x80\x96\xc6\xdc\x4c\x40\x32\x7f\x46\x83\x0a\x77\xf7\xfb\x04\xab\x61\x89\xdc\xdb\x52\xd9\xee\xed\x40\x59\x73\xb0\xfc\x04\x8a\x08\x77\x68\x81\x90\x34\x4f\x6d\x09\x4c\xf6\x40\x38\xf2\x89\x9a\xbe\x51\xd2\xb5\x59\x92\xc2\x5a\x1b\x13\x11\x11\x1a\x1f\x4f\xd5\x14\x8e\xce\xbf\xd2\x5c\xb3\x79\x31\x09\x39\xa3\x82\x2c\xa3\x75\xfb\x67\x0e\x1d\x5a\x01\x03\x93\x33\x47\xe9\x56\xf2\x0f\xee\x2d\x35\x5b\x4d\xd6\x8e\x8a\x4c\x34\x60\x70\x1d\x08\x7c\xf9\xd8\x85\x45\x55\x44\x94\x17\x64\x55\xe8\xa5\xfe\x61\xe0\x27\xce\x64\xca\x0c\xd4\x94\x59\x14\xc2\x71\xa7\x96\x01\xa3\x2c\x26\x4c\x94\x6d\xa8\x44\xe6\x62\xa0\x97\xa9\xcf\xcb\xaf\x97\x45\x3f\xcd\xa2\xc2\x64\x62\x72\xc7\x66\x5d\x54\xd9\x17\xe3\x2e\x49\xc3\xca\xac\x6d\x12\x64\xb2\xae\x50\xe1\x9a\xd7\x91\x7d\xe2\xed\x30\x5e\x09\xaa\xef\x47\x53\xeb\xf4\xf3\xcd\xb0\x9f\xc2\xb4\x58\xf0\x3f\x06\x04\x9c\x48\x99\x53\xaf\xbd\x80\x5d\x09\x90\xe4\x6c\xcb\x3f\x8b\xae\x8d\xe3\x28\x89\x94\x42\xe1\x8f\xf1\xab\xa2\xfe\xe7\x2b\x8c\x36\x4c\x93\x74\x10\xe5\xc5\x8c\xba\x43\x65\xa0\xf0\xbb\xf8\xa0\x08\x1d\xf8\xa2\x9b\x19\xa4\x59\x11\xbd\x6e\xc4\xcd\x4a\x48\x29\x77\x94\xf3\xfc\x1d\x87\x8f\xf5\x4c\xe6\x80\x3c\xd9\xa2\x7c\x5f\xda\x8d\xa9\x0a\x22\x37\xc1\x14\x36\x8b\x10\x56\x01\x9c\x7a\xa8\x80\xaa\x87\x35\x09\xd8\x72\x73\x18\xdb\xa4\x60\x48\xc1\x4d\xda\xea\xea\x70\x3b\x9b\xb4\xbc\x00\x82\x44\x0e\x84\xcc\xee\x61\xed\x44\x48\xd2\x41\x99\x19\xf5\x18\x99\xd8\xc4\x27\xb5\xe1\x6f\xdf\x9a\xac\x43\x95\x63\xe7\xa7\xea\x49\x3a\xfb\x00\x93\x23\xef\xb9\x87\xf7\x2a\x79\xcf\x74\xb5\xe9\x70\xd3\x74\x3a\x68\xb4\xc1\x56\xf9\x18\x3b\xa0\xa2\x5f\x2c\x3a\x8a\xe2\x74\x01\x75\xa9\xd9\x2e\xf3\x8d\x86\xc2\x7a\x81\xab\x0b\x90\xea\x17\xc6\x9e\x2d\xf2\xb9\xea\xc1\x20\xaa\xbe\xa5\x43\xc1\x9b\xbe\x44\xf5\x26\x08\x5b\xc8\x6a\xde\xa1\xfd\x15\x77\x72\x72\xaa\x6e\xb8\xfc\xd2\xe1\xe6\xcf\x2d\x1e\x7c\xf1\xe0\x91\xc3\x64\x60\x27\x76\xb2\x9e\x19\x7b\x5b\xb5\x47\xb0\xca\x14\x28\x52\xa7\xa7\xe0\x4d\x41\x75\x8b\x7e\x16\x75\x61\xd1\x02\xb4\x08\x12\xe9\x62\x02\x47\xdf\x81\xec\xe7\xe3\x09\x88\xe7\xff\x77\x01\x7c\x56\x95\x91\x07\xc3\xac\x9a\x0b\x96\x5e\x1f\xb7\xa3\x04\xbe\x96\x01\x08\x48\xda\x54\xbc\x23\xc4\xb4\x56\xd9\xcb\xcb\x5f\x6c\x16\x69\xc1\x45\x33\xc0\x4e\x97\x14\x04\x75\xc9\x25\x97\x1d\x53\x98\xb6\xc9\xb1\x31\x83\xc9\x83\x19\xc4\xc7\x2a\x44\x26\x63\xd4\x7c\x17\x8d\x07\x54\x63\xfe\x99\x26\xdd\x41\xb0\x03\xab\xdd\x56\xa0\xeb\x61\xd0\x0d\x95\xbf\xd2\x65\x33\x07\x4b\x13\x48\x52\x0e\x67\xbc\xc6\xf8\xdf\xbd\x8f\xbf\x14\x55\x28\xdf\xe2\xb5\xb3\x55\x67\x83\x37\xa9\xc5\x2a\xc6\xd6\x74\x19\x12\x77\xd5\xf4\x93\xaf\xa7\xd9\xaa\xe9\xa7\x71\x14\xaa\x9a\x34\x86\xa9\x78\x56\xd5\xf0\xb4\xf3\x34\xeb\xf5\x4b\x2c\x0c\x88\xf5\x7f\x44\x8b\x32\x1f\xd7\x09\xeb\x84\xb1\xc9\xa2\xc4\x16\xaa\x35\xee\xeb\xaa\x35\xee\xeb\xca\x36\x20\x4c\x07\x03\x93\xb8\x36\x21\xa0\x31\x68\x0a\xe0\xe3\xa9\x6b\x3a\x74\xa8\xd9\x4f\xf3\x22\x62\x55\x58\x5c\xfa\x5e\x65\x30\xbf\x77\xbc\xcd\x6e\xec\xe8\xfc\x8b\xcd\x83\x4b\x3f\x4d\x2f\x13\x65\x86\x93\x00\x38\xf0\xde\x6f\x8c\x1a\x2f\x4b\xab\xd3\x19\x65\x06\x73\x82\xc2\x81\xad\xcb\x08\x11\x84\xb8\xd2\xf8\xd2\xaf\x8a\xd5\x2c\x07\xb4\x48\x28\xce\xb3\x00\x3d\x17\x8a\x30\xad\xb1\x5d\x9c\x0a\x7c\xaf\x04\xbb\x50\x70\x19\x70\x4c\xa3\xc5\xa1\xb9\x55\x44\x8c\x19\xcf\xa2\x3d\xd2\xc3\xa8\x44\xef\xcf\xe9\x8e\xcf\xbf\x50\xa8\xf7\x7d\x15\xe3\x9c\xa3\xec\x9e\x2b\x50\x23\x25\xbd\x7d\x49\xad\x0a\xef\x50\x0c\x8d\xdd\xe3\x0f\x03\x4f\x9f\xd8\x43\xad\xf4\x80\x85\xbe\x53\x63\xc5\xb6\xd2\x1c\x9a\x28\xf1\x4e\x45\x9c\xc2\xa9\x00\xef\x8a\xe3\x7f\xb4\xd3\x8e\x2b\x36\x38\xb6\x99\x67\x9e\x29\xe4\x3f\x0f\xfb\xeb\x26\x2b\x5e\xa7\x71\x20\xd5\x6c\xdf\x55\xff\x9d\x8b\x6a\xf5\x18\x44\x45\x5e\xb6\xa3\xbc\x1f\x11\x9d\x86\xeb\x27\x23\x9f\xea\xbf\x19\x48\x84\x99\x19\x28\xb9\x82\x67\x76\x96\x5e\x2f\x1f\xab\x16\xc6\x61\x9a\xe7\x51\x3b\xde\x20\x74\x1a\x88\x11\x58\x57\x08\xf9\xe6\x5a\x3e\x10\x38\x03\x5a\xde\x84\xa6\x3d\x9f\x8c\x7c\xa3\xd6\xed\xf3\x0a\x12\xb4\x59\x62\x73\x66\xdb\x63\x13\x3e\x1f\xf8\xcd\xf9\xbc\x4a\x59\xc4\x3a\xe6\x29\x1f\xce\xed\xd0\x6a\x69\x9f\x8c\x94\x5d\x1d\xf7\xe8\xb1\x5e\x26\x2e\x4b\x6a\x86\x74\x59\x52\x90\xa3\xa1\xc8\x52\xf5\x34\x14\x31\x48\xee\x12\xac\x88\xa8\xe9\xcf\x75\xd1\xfc\x24\xad\xc3\xae\xf9\xbc\x1a\x95\x18\xc8\xe7\x54\xbc\x71\x03\xc3\xca\x39\x01\x2f\x2c\x38\xe2\xf9\x34\x0c\x7e\xb8\x59\x18\x91\x71\x76\xd2\x7d\x5e\xc6\x4f\xa1\xf1\x79\x61\xda\x51\x1c\xbd\x8e\xbf\x05\x68\x04\x44\x82\x8f\xeb\xe4\x1e\xdb\xb6\x28\x6c\x36\x4b\x4f\x40\x24\xaf\xab\xaf\x47\x93\x04\x33\xd4\x5d\x0f\xc6\xd2\x12\xd4\x8d\x5d\xe9\x20\x8f\x92\x14\x49\x37\xee\x06\x1a\x38\x58\xe0\xd0\x49\x27\x22\x4e\x35\xd2\x16\x99\x4d\xbb\x5d\xeb\x1a\x7a\x51\x0e\xc1\xa7\xf8\x58\x3b\xe6\x9a\x38\x5e\x8f\x58\x71\x8c\x29\x50\x0c\x51\x08\x21\xaa\xce\xd6\xdf\x76\x58\x34\xd4\x19\x46\xf8\x22\xe9\x85\xa9\x56\xbc\x2a\x9a\xb2\xaf\x0d\x63\x13\x25\x42\x09\x43\xa9\xff\x98\xea\x7d\xe2\xca\xb1\x98\x71\xfa\xc1\x6a\x32\xd3\x35\xc5\x5c\xb5\x34\x38\xf1\xc1\x6a\x00\x62\xe1\x84\x9c\x83\x08\x11\x36\x94\x42\x61\x35\x96\x44\x2e\x4c\x90\xf7\xb4\xdb\x1d\x96\x85\xd7\x2f\x62\x1c\x6d\xa4\x31\x35\xcf\xd1\x1e\xbe\x30\x60\xf2\x80\x53\xb1\x3a\x74\x88\x23\x7c\x96\x18\x11\x66\x91\x0f\xbf\x7b\xb1\xc9\x7b\xe9\xfa\x04\xc3\xec\xbe\xae\xb0\x30\xfe\x81\x91\x36\x4d\x9f\x7b\x5e\x94\xef\xdd\x45\x3a\x48\x42\x99\x10\xd5\xb8\xb4\x0f\xd2\xbc\x20\x99\x00\x21\xe6\x55\x03\x8e\x39\xc0\xe8\x7c\xc0\x43\xff\x9c\xa2\xe1\xcc\xc2\xf6\x03\xd7\xd2\x18\x6f\xdf\xd9\x0e\x2e\x35\x4d\x6c\x7a\xa9\xc9\x1b\xaa\x34\x0d\xe5\x52\xa1\x3b\xf8\x10\xa5\x88\x92\x55\xee\xd8\xe3\x6a\x32\x22\x00\x29\x2d\x2b\x7c\xc8\x59\x0a\xbd\xe2\xf2\x2a\x3c\x2f\xc9\x41\x7c\x8e\x32\x30\xd9\x9a\x8d\xd3\x12\xf5\x66\x69\xb9\xd3\xac\x33\x8f\x72\xd8\xa4\x63\x3b\x7b\xaa\x9d\x06\x91\xe0\x6d\x2c\x80\xc8\xac\x8f\xd1\x0c\x14\xa1\x2b\xc5\x19\xfe\x24\x68\x7c\x65\xd1\x6d\x00\xd5\x4a\xc3\x1f\x50\x49\xdc\x55\xd5\x08\xbe\x6f\x2a\x07\x7e\x9e\xac\x39\xbc\xa0\x27\x02\xde\x31\x7d\x86\x8f\x15\x91\xa5\x1b\x47\xbd\x7e\x91\xcf\x56\x3b\x85\x50\x5e\x69\x52\xd4\x71\x80\xaa\x51\x2c\x02\x00\xfe\x01\x86\xfd\x34\x0a\xed\x5c\xe3\xe8\x3c\xea\x05\xb2\x96\x04\xca\xde\xec\x8e\x6a\x35\xba\x84\xc5\x58\x80\x5b\xff\x74\x8b\xcc\x9a\xbc\xcc\x36\xd0\x14\xe1\x0c\x4b\x5c\xa3\xfb\x83\x5a\xf7\x77\xc2\x6b\x0d\xfb\x54\x08\x29\xa6\xe1\xec\xf4\x75\xad\x3a\xe9\x45\xd8\x67\xa4\x90\xe3\x0b\x2e\xf7\xb7\xbb\xb0\x2e\x1e\xa9\x22\xa3\x67\x1a\x5f\x7e\x99\x03\x82\x33\x28\x3a\xe1\x65\x3e\xa6\xd7\xe1\x84\xc0\xaa\xef\xc4\x46\x7c\x67\xa4\xe2\xfb\xb3\x5a\x7e\xed\xaf\xe8\xd7\x94\x7d\x98\xf0\x33\xde\xa4\x70\x04\xcf\xe6\x89\x96\xa2\xd0\x5c\x1f\xa9\x81\x0e\x8e\x13\x1e\xed\x8f\x46\x3b\xbf\xc8\x53\xff\xde\x84\x12\x0b\x03\x36\xac\x10\x1f\xe8\xde\xab\x91\x27\xd0\x3c\x46\x77\x0a\x86\xf7\xe3\xda\xb0\x76\x60\xb2\xc2\x66\xc4\x05\x10\x4f\x1b\xfa\x66\xec\xad\xa0\xab\x89\xa2\x96\xea\x32\xce\x0c\xd6\x79\x5d\x81\x93\xd2\xda\xb4\xa4\xd5\x72\x33\x8f\xad\x1d\x36\xb4\x95\x5a\xa0\x1c\x46\x6a\xba\xdd\x16\x9a\x36\x21\xc1\xc4\x89\xa2\xee\xca\xbc\x2b\xea\xd6\xd0\x46\xbb\x69\x66\x43\x93\x17\x0d\x65\x7a\x7f\x4e\xe9\x9e\x9f\x73\x65\x28\x9b\x50\x53\xb5\x84\x64\x5c\x55\x57\x3c\x9f\x73\x13\x8e\x7b\x71\xda\x63\xf4\x14\xcf\xf5\x61\xa0\x2a\xa8\x0f\x54\x05\xf5\x81\x9e\xe1\x0f\x5d\xf8\x37\x88\xba\x5d\x26\x7d\xba\x76\xb3\xea\x12\xf9\x24\x50\xb8\x72\x96\x86\xb1\x89\x06\xf9\x67\xef\x14\x35\x35\xe0\x28\x59\x8b\x1c\x7c\x56\x07\x34\xfa\x6d\xde\xc4\x26\x5f\x05\xbe\x00\x0c\x1f\x35\x07\x3e\x76\x25\xfe\x41\x9a\x71\x4d\x1a\x90\xc2\x0c\x75\x76\xba\x92\x94\xeb\x5d\xb9\x5b\x47\x0c\x2a\x93\x7c\x68\xc3\xa8\x4b\x2a\x71\xd5\xf3\x75\x2e\x22\x2e\x39\xb9\x8d\x45\x5a\xe4\x2a\xa6\x15\x33\x5f\x69\x86\x66\x18\x51\x3a\xeb\xb2\xd4\xe3\x2a\x4b\x3d\x5e\x8d\x46\xa1\x2e\xe4\x91\x96\x06\xdb\x26\x94\x5a\xe7\xe7\xde\x2d\xa1\x13\x7f\xe8\x90\x57\x8d\x70\x0e\xe7\xe7\xa7\x46\xe3\x57\xbf\xda\x5c\x8f\x8a\x7e\x94\x34\x7c\x9e\xc1\x3c\x3e\x41\x39\x9e\x51\xe6\xda\x43\x9b\x55\x49\x26\xae\x89\x19\x36\x81\xf2\x5f\x9c\xf6\x9b\x86\xd1\xf7\xa0\xa1\xbc\x25\x2e\xa9\x0e\xa1\x4b\x4a\x8a\xa8\x63\x2d\x5f\x39\x62\xfc\x37\xe8\xef\xf8\x78\x6a\xdd\x5c\x3c\xd2\x34\xdd\x6e\x14\x47\xa2\x5f\x24\xe0\xb5\xff\x82\xe9\x70\x6e\x69\x69\xb9\xda\x00\xf3\xbe\x89\x45\x7b\x1d\x7b\x13\x03\x89\x7c\x32\x35\xd1\xa9\x14\x1b\xa6\x19\x5b\x2a\x71\xb5\x29\xf0\x3e\xa1\x57\x94\x53\x40\x96\xae\xef\xd2\x32\xa1\xdf\x1b\x79\x60\xe5\x03\xba\x27\xe0\x95\xe8\x2b\x93\xb0\xd0\x3f\xff\x53\xc1\x04\x53\xc6\xaf\xfd\x69\x3a\x6c\x78\xe4\x60\x53\xed\x6b\x9b\xca\x19\x95\x64\xf0\x64\xca\x38\x49\x0b\x2f\x2f\x7d\x56\xd9\xfb\x7a\x94\x46\x39\xf0\xa1\xe7\x47\x7a\x8e\x6b\x9e\x7b\x66\x73\x9b\xad\xa5\x11\xcc\x4c\x91\x84\x5c\xe7\x45\x5c\x80\x5f\x9a\x1d\x08\x3e\xdf\xac\x71\x87\x3d\xdc\x1c\x98\x32\xa6\xc5\x19\x0f\xe6\x3e\x0a\x41\xdc\xbf\x38\xda\xd6\x08\xe0\xd1\x84\x32\x29\x58\x83\x15\xd1\xd7\x39\xd4\x43\xf9\xa4\x0e\xac\xe8\x5b\xd3\x31\x61\xdf\x6a\xc6\x01\x04\xec\xf9\xb8\x0e\x80\xe8\x9a\x58\x9c\x54\xa5\x58\x7b\x19\x41\xa7\x54\x17\x55\x35\x25\x4e\x43\x96\xcb\x43\x34\x74\x09\x77\xcf\x27\x53\x70\xde\xca\x7c\x33\x4f\xbb\x85\x4d\xe4\x25\x09\xc3\x54\xb1\x4d\x27\xe4\xd1\x92\xd5\xfc\x29\xbf\x56\x60\xb1\x91\x70\x17\xcf\x42\xfc\xaa\x69\xe3\x46\x6d\xf8\x4d\x24\x7c\x4e\x50\xd5\x25\x7c\x6f\x60\x30\x60\xeb\x6b\xb4\x68\x4f\xe4\x8f\xd0\x96\xbe\x75\x07\x68\x84\xf3\xc3\x5e\x99\x77\xc5\x04\x7a\x47\xd8\xff\x6f\x00\x61\x71\xad\x61\x4e\xbe\xea\x34\xa1\x0e\x22\x7f\x55\x6b\xa6\xe2\xf7\x3f\xdd\x61\x29\x21\x5a\xcd\x3b\x1c\x72\xe5\xb4\xe1\xd9\xf5\xdf\xc2\x6d\xf0\x49\xad\x0d\xe9\xba\x8d\xc3\x74\xc0\x2f\x1e\x20\xdf\x15\xd5\x65\x7b\x25\xf0\x59\x69\x94\x84\x55\xe4\x66\xf3\x3d\xda\x02\xa1\xe1\x4c\x9b\xc6\x34\x6f\x59\x6f\x05\xbf\x8c\x3f\xfa\x47\x08\x57\xb0\xdb\x9f\x42\x4c\x24\xe1\x0a\x3d\x2d\x67\xad\xe0\xa4\xc4\x4e\xb9\x3a\x47\xbe\x1a\xd9\x0c\x68\xaa\x70\x84\x1a\xce\xad\xf3\xb6\xe2\x44\x98\x64\x63\x90\x66\x96\x44\x36\xa4\xbb\xd6\x57\x6e\x6e\x28\x24\x19\x26\xcb\x40\x38\xde\x40\xf4\x84\x3d\x8a\x8b\xd2\x88\x65\x1f\xa8\x5b\x1f\xd8\xa4\x88\x52\x37\x18\xc5\x0b\xcc\xc3\xba\xd3\x26\x3a\x5f\x7e\xb9\xd9\x4e\xcb\x2c\xb7\x39\xb5\x6f\xa0\x73\xed\x6d\x2c\xa1\x7c\x32\xd5\xbc\x45\xfd\x1e\x59\x5a\xed\x9f\x45\x89\xd9\x22\x16\x24\x7e\x33\xbe\xa8\xd8\xd9\x71\x3a\xcc\xa3\x8e\xed\xcc\x54\xa1\x25\x5e\xf3\x8e\x96\xcf\xc7\x6e\xa9\x16\x8c\xf3\x75\xe4\x24\x93\x99\x76\xce\xc1\x0d\x60\x36\x16\x0d\xc1\x60\xbf\xa7\x5a\x95\xaf\xe8\xde\xf1\x27\xa6\xd2\xb6\x6a\xc9\x2b\xf3\x5c\x2a\x57\xb5\x46\x72\x75\x7b\x71\x18\xa7\xb9\x98\xc2\x0a\x19\x80\x46\x8b\x74\x08\x7b\x8d\x82\x22\x1a\xb4\x6d\x16\x9b\xa4\xc3\xac\x02\x21\x24\xa9\x60\x62\x67\x4b\x09\x74\xdc\x50\xab\x38\x3b\xd6\x45\x16\xcb\x04\x02\xb6\x1f\x43\xbc\x5c\x31\xac\x44\xa4\x67\x66\xac\x74\x47\xae\xd0\x62\x2f\x42\xcf\xbe\xa3\x8c\x53\x5c\xd7\xa0\xe6\x1c\x50\xa0\x30\xc4\x42\xb2\x81\x4a\x1b\x7e\x8f\xd1\x52\x90\x89\x3f\xc5\x95\x3b\xd3\x1f\x4f\x0b\xd9\x4f\x9c\x43\x51\xa2\xa5\x9b\xc5\x5b\x78\xac\xc4\x6d\x86\x65\x9b\x7c\xe7\xa9\xfb\x52\x95\x73\x2f\x8d\x54\x65\xf8\x92\x4a\x02\x07\x26\x4e\x13\x8b\x32\x28\xb6\x64\x10\xe4\xf9\x58\xb1\x81\xba\x51\x6c\xe7\x34\x0f\xd7\xab\xac\xbf\x4d\x7c\x39\x30\xbb\x98\xc5\xe9\x88\xbb\x2b\x3e\x8d\x50\xe2\xa5\x65\x5b\x0d\x89\xeb\x23\x5f\x94\xb8\xae\x66\x6f\x91\x99\x76\x1a\x77\x1a\x5e\xa3\xef\xaa\xe6\x50\xe8\x6a\x6a\x98\x95\x1d\x92\x6b\x96\x78\xfa\x6c\xa0\x24\x4d\x4e\x8d\x94\xd8\x09\x87\x09\x60\xff\x9c\xe4\xed\x97\xcf\x74\x10\x7e\x56\x93\x3b\xaa\x89\x0e\x2c\xcb\xe7\x90\x88\x7a\x85\x78\x34\xa1\xc1\x15\x77\x67\x55\x53\x3d\x8f\x46\x3e\xa1\x69\x2b\x8e\xbe\x6a\xea\x5f\x0e\xbc\x5c\x47\x3f\xea\xf5\x9f\xc4\x95\x89\x7d\xbf\x7f\x41\xec\x46\x2d\x8b\x71\xf5\x84\xb1\xfd\x3f\xd5\xaa\x5e\x09\x86\xdb\xfe\x71\xb5\x9b\x08\x4d\x42\xdd\xf1\x6f\x05\x4a\xd8\x49\x17\x72\x4f\x8c\x54\x83\xd8\x05\x2c\xc2\x8e\xd0\x58\xdd\x8c\x28\x5c\x2b\x03\x85\x81\xcd\xa8\x69\xa4\xda\xd1\x9c\xd4\x9f\xf3\x4d\x9f\x56\x07\x5c\x5a\x42\x27\x9f\x98\x4c\xb8\xc0\xcd\x97\x07\x4f\x29\xe8\x7b\x98\xa5\x6b\x51\xc7\xe6\xbb\x94\x78\xc8\x37\x03\x2f\xf4\x7e\x46\x79\xc2\x72\x0f\x21\xf2\x1b\x70\xfc\xf1\x24\x00\x4c\xe0\xb6\xfe\x40\x75\x70\x99\x81\xcd\xa2\xd0\xec\x52\x7d\x32\x98\x55\x48\x0d\x27\xb4\xae\x8f\xd1\x6c\x47\xa5\xe3\x12\x16\x08\xfe\x2b\x84\x5f\xfc\x3f\x8a\x62\x67\xc2\x55\x20\x93\x0e\x07\xf6\xae\xa8\xb5\xac\x95\x24\x25\x81\x4d\x2c\x95\x40\x07\x3e\x0c\x7c\x27\xc7\x87\x6a\xf6\x1c\xf9\xd2\xca\x9c\xaa\x33\x9e\x19\x4d\x39\xb2\x60\x44\xcd\xb5\xc8\xd9\xc4\x09\x2d\x29\x7b\x16\xbf\x8d\x55\x71\x6c\x5a\x44\x49\x6f\xd6\x17\xa2\x39\x15\x57\x92\x03\x87\x1d\x83\x8d\x62\x1c\xd1\x7c\xf6\x7d\xa9\x36\x2f\xa2\x01\x09\x7a\x4c\x88\xa1\x2b\x01\x74\xd5\xf7\x51\xe4\x4f\x54\xcf\x13\x6b\xd9\x47\xf8\x7e\xdc\xcb\x17\x21\xe1\x84\x5f\xfe\x74\xe4\xa7\x4a\x83\xbc\x72\x30\x19\x58\x75\x06\xdb\xf3\x01\xac\xee\x00\x24\x1f\x8d\xb4\x32\xd3\x23\x25\x42\x3e\x4b\xf4\x51\xfa\xda\xb7\x7e\x7a\xec\x1b\x30\xed\x60\x18\xa7\x1b\x36\xcb\xe1\x14\x25\xba\x3b\x6a\x5e\x6e\xe2\xfa\xc4\x60\xd8\x5f\xd2\x66\xe0\x4d\x1a\xbf\xe9\x9a\x43\x6c\x96\xf1\x56\x84\x69\x75\x33\xf0\x79\x32\xaf\xc2\xe8\x5c\x7b\xbb\x4e\xd0\xa7\x1b\xa7\xeb\x92\x23\xab\xce\x2a\xc7\x76\xc7\x17\xb0\x81\xa1\x82\x88\x7b\x69\xb1\xaf\x7a\xa4\x88\x9d\x6f\x52\xd1\x0a\xb1\xfd\x75\x15\x1a\x5d\x47\xa0\x0b\x26\x17\x8b\xa3\x03\xf5\xde\xd1\xf2\x10\xd3\x05\xad\x01\x72\x02\xd3\x00\x0f\x1e\x5d\xb6\x58\x1e\xef\x29\x07\xbb\xf7\xb1\xa6\x60\x37\xfc\xde\x94\xc0\xe7\xc1\xa5\x66\x92\x26\x61\x3a\x68\x9b\x82\xdc\x38\x1d\xc9\xe3\x8c\x6a\x97\x39\x33\xf5\xb9\x2a\xf4\x59\x4b\xe3\x32\x29\x4c\x46\x76\x26\x22\xdb\x70\xfd\x01\x5e\x90\xf3\xb4\xfc\xf2\xcb\xce\x30\x42\xa6\x60\x2f\x8b\x8a\x02\xfb\x9a\xc3\x21\x97\xc4\x7d\xf4\xce\x48\x69\x7d\xac\xd9\x2c\x8f\xd2\x64\x46\xe9\x9a\xfe\x2f\x81\xcf\x17\xd1\xaa\x0f\x16\xcc\x23\xe4\xe9\x2e\x07\x64\x07\x25\xc3\xd6\xf1\x32\x7b\xd4\x4c\x52\x3c\xd1\x3c\x5d\x67\x10\x07\x61\xe6\x3d\x45\xc3\xbe\xe7\x1a\x58\xc3\x34\xe9\xf0\x97\x12\xda\x82\x3d\x1e\xee\xe4\x08\x31\x4e\x8f\x54\x47\xed\xa4\x74\xf4\xb0\xbf\x31\xe3\x8b\x7a\x20\x34\x71\x76\x11\xa8\x4e\xb0\x8b\x7a\x6b\xab\x22\x86\xbc\x6f\xb3\x86\x0e\x43\x7e\x84\xd7\x2e\x3a\x30\x75\xb4\x90\x01\xab\x36\x38\x79\x10\xad\x15\xf3\x05\xd5\x81\x9d\x45\x79\x27\x0a\x85\xa2\xf3\xa2\x93\x92\xf7\x15\xc7\xab\x2a\xa2\x8b\x6d\x2f\xca\x63\xe3\x5c\xfb\x80\x9c\xdd\xd4\x30\xda\x4d\x15\x23\xe4\x66\x30\x8c\x2d\xe2\x62\xe9\x8b\x69\x38\xa7\x9a\x3b\x2a\x07\x2e\xb1\x55\x55\x13\x00\x8b\xc5\x2d\xa4\x20\x7c\xa2\xd0\xa3\x61\x96\xee\x52\xc5\xff\x91\xe7\x88\xfc\x73\x1a\x6a\xc8\x0d\x9f\x6a\x69\xb7\x02\x4d\x74\x1f\xa9\xed\xf6\xc1\x54\x88\xbd\xfc\xd2\xe1\x66\x98\x66\xe8\x3b\x65\x35\x85\xc0\x37\x09\xbd\x8f\x29\x8e\x3c\xf0\x03\xb5\xea\xbf\x14\x77\x50\xfd\x70\xd8\xe7\x41\xdf\xd0\x52\xc3\x9c\x2c\xd6\xa3\xd0\xce\xfa\x3a\xf4\x6f\x4e\x32\x7d\x3c\x8a\xfa\x70\xa2\xe6\xfa\x59\xbc\x97\x30\xf2\xe5\x2a\x7c\x8e\x05\x4f\xf8\x44\x15\x6b\x07\x51\x12\x85\xdc\xdc\xf3\x22\x87\x3d\xff\x50\x89\xcb\xfe\xc3\xa9\xb8\x60\x65\xbe\xd9\x89\xaa\x79\x68\xb5\x29\x12\x9a\x12\xf9\x58\x41\xa2\x9d\x34\x2c\x49\x3c\x71\x4e\x61\x1f\x1c\xaa\x03\x72\x7e\x34\xf2\xb3\x80\x8d\xf6\xf0\x9a\xbf\x8f\x50\x46\x7a\x8a\xfd\xd3\x5d\xcb\x57\x1b\x9a\x05\xaf\xfa\x0f\x2f\x2a\x82\x5f\xcf\xc4\x31\xcb\xb9\xbd\xc2\xef\xe8\x1b\x88\x07\xf8\x24\xf0\x8f\xa1\x6f\x4d\x27\x8e\x12\x8b\xc7\x20\x0a\x72\x0d\xa5\xba\xe0\x0c\xb1\xa3\xc4\x26\xda\x43\x0b\x6c\x0b\x59\x23\xb7\xe7\xe8\xcf\x37\xbb\x16\x85\x0f\xce\x3d\x91\x80\x9d\xd3\xd9\xd8\x39\xb5\xdf\x26\x06\x1e\x57\x4c\xe6\x54\xf6\xa0\xd3\x92\x17\x07\x97\x9a\xc6\x16\x89\x99\x51\xc4\xce\x93\x8a\x77\x73\x4f\x83\x6c\x57\xea\xdc\xad\xca\x24\x31\x02\x39\x88\x41\x34\x5d\xa5\x60\xbe\xfe\x69\x0e\x23\x92\x7c\x26\x5d\x11\xd7\x64\x75\x74\xde\xf5\x4f\x55\x93\xcd\x55\x76\xab\xb9\x2a\xab\x33\xcd\x62\x2d\xc5\x24\x25\x5f\xef\xf0\x97\x15\x69\x9a\xcc\xfa\x3e\xc8\x3f\x1d\xa9\xe6\xbd\x4f\x02\x5d\x16\x85\x7e\x09\xff\x99\xab\x08\x98\x76\xa7\x64\x91\x26\x07\x3d\x7e\x44\x93\x8e\x8f\x1d\xaf\x30\x2c\xb3\xb6\xf8\x88\x49\xde\x44\xef\x5c\x12\xaa\x9a\x87\x1c\xf6\x23\xdb\xa5\x2d\x67\xeb\x7d\x65\x82\x87\x4c\x1d\xc7\x33\x63\x1f\xac\x16\x26\xe9\x91\x38\x91\x73\xa7\xbb\x4e\xfb\x2f\x1f\xd7\xb9\x91\x16\x59\x3a\x8c\x42\x96\x7b\xc1\x3a\xf3\xb1\xce\x37\xee\x70\xac\x84\x05\xe1\xd3\x69\xfa\x18\xc9\x87\x9a\xa4\x33\xeb\xb7\x9e\xcd\xc0\xaf\x27\x1f\x20\x0a\xc3\xf4\xe7\x7c\x41\x3a\xc8\x7c\x60\x62\x3a\xf9\x6e\x25\x18\xfb\x50\x19\xa2\xb2\x26\x99\x98\x76\x4d\xc4\x3c\xd5\x28\xc0\xd2\x0a\x79\x1e\x40\x70\xbf\xa5\xec\x06\x1b\x63\x0d\xf5\xad\x45\x9d\x5d\x7e\x37\x3d\x1b\x78\x49\xa9\x9b\xf4\x8b\x32\x5e\x55\x28\xfb\x5d\x3c\x0c\xf6\x60\xe1\x01\x81\xaa\xc7\x63\x85\x4a\xe7\x21\x1c\xb7\x70\xfd\x97\x02\xd5\x57\x7e\x49\xb9\xd1\x15\x99\x85\x85\xaa\x50\x98\xb8\x95\x45\xe8\xca\x0d\xe7\x51\xc1\xe2\xe4\xc2\x69\xae\x01\xfe\x07\x66\xd5\x36\x94\xf6\x08\x23\x62\x7c\xa2\x54\xf4\x06\x26\x4a\x0a\x13\x25\xb3\x2a\x46\xbb\x34\xd2\x79\xe3\x25\xa0\x8d\x60\xa6\x9c\x54\xf2\x76\x27\xeb\x1a\x74\x0d\x31\x97\x1c\xbd\xf0\x91\x32\xb3\x7a\xe4\x02\xab\x2a\x51\x49\x93\x99\x2a\x29\x17\x11\x9d\x86\x6b\xef\xfe\x81\x6e\x6c\x7f\x57\x2d\x9c\x6b\x91\x5d\x77\x51\xb6\x74\xdc\xfb\xb2\xed\x4d\xe4\x51\x9a\xed\xee\xf0\x3a\x07\xf6\xbf\x3f\x25\xb5\x42\x6a\xf3\x46\xab\xd3\x8f\xb4\x3a\x7d\xcd\xca\x19\x25\x44\xa3\xe1\xc8\x90\x7b\xeb\x95\x7a\xd2\x0f\xd4\xba\xb9\x66\xf2\x5d\xaa\xbc\xb1\x8f\x05\x92\xb5\x9d\x10\x43\x1b\x81\x5f\xec\x00\xe3\xba\xc4\xdf\x37\xe3\xdc\x77\x4f\x90\x7a\xfb\x73\xda\x9a\xb5\x0f\x32\x1b\x87\x8e\x94\x52\x1f\xeb\x96\x89\x2b\xb2\x0e\xf5\xe2\x98\xbc\x3f\xb6\x7e\xa8\xec\x34\xff\x4f\x08\x40\xba\x3d\xec\x65\x07\x28\x7f\xae\xa5\x6a\x53\x3b\x5b\xaa\xe5\x8a\x45\x77\x1d\x7f\xb5\x5a\x59\xb5\x7f\x15\x20\xc0\x87\x23\xaf\x9a\x70\x1c\x77\x85\x9f\xfc\xb7\x23\xdd\x44\x72\x0e\xeb\x9e\x20\xf8\xd5\x13\x42\x09\x7b\x06\xb0\x98\x6c\xa8\xc4\xee\xe3\x06\x29\x2d\xed\xd6\x80\xe8\x25\x68\x58\xf0\x03\x61\xc7\xf4\xa0\xf1\xb2\x88\x87\xec\x24\x68\x43\xb6\x26\x47\xa8\xcb\xa2\x4e\x0f\x41\x15\x56\x34\x60\x00\x12\x90\xaa\x96\xcc\x53\x50\x15\xc4\xab\x58\x8f\x8a\xd7\x01\x20\x62\xc6\x21\x0d\x3d\x81\x3d\x9d\x4f\xea\xdd\x11\x12\x1b\xf5\xfa\x04\xe7\xce\xa8\x0d\x02\x3f\x04\xa8\xff\x96\x72\xe4\xbf\x38\xda\x6e\x5b\xbb\x32\xdf\x1c\xda\x22\x4b\xc3\xbe\x1d\x44\x21\x97\x35\x99\x1f\x1b\xf8\x92\x86\xee\x22\xee\x66\x91\x4d\x3a\xf1\xc6\x6c\xb5\x3c\xb2\xb4\xf1\x48\xe9\x12\xa1\xf0\x2c\x40\x0c\xbd\x64\xc6\xad\x55\x40\x4e\xb5\x20\x9b\x0d\x4d\x56\xe4\xfa\x37\x55\x19\x65\x5a\x4a\xfa\xd0\xa1\x66\x2f\x8e\x12\xe6\xea\x89\xd2\x65\xc3\xdb\xad\xa9\x2e\x99\xd8\xae\xd9\x38\x7f\xa2\x1a\x3c\xcc\x95\xc4\x42\xef\x90\x90\xa3\xf3\x3e\x1a\x5a\x59\x76\xdc\xa4\x86\xd3\xc1\x61\xb9\x3f\xe0\x03\x37\x54\x09\xe0\x9a\xc2\x72\x1e\x62\xac\x3a\x24\xba\x7a\x0c\xe2\x01\x3d\x4d\x8c\x79\xd5\x0c\x4d\x62\x73\x3b\xeb\x09\xe3\x57\x79\xe8\xb2\xe7\xa3\x52\x08\xba\xa8\xf1\x0f\x8f\xea\xe4\xd6\x92\xdf\xde\xd1\x79\xdf\x0d\x5f\x0d\x77\xe4\xe6\x90\xf5\xc5\xc3\xbf\x31\xd1\xfa\x9d\x26\xdd\x2a\x59\xa2\x7b\x52\xfa\x4b\x4e\x8c\x29\xf0\x2f\x67\x68\xb3\x6e\x9a\x0d\xa8\xe9\x64\x96\x6e\x09\x5f\xf8\xb7\xb1\x10\xf0\xc4\x18\xf9\xd7\xfc\xb7\xb1\x5c\xc8\x8c\xf1\x41\x72\x3f\x2d\x73\xdb\x4f\xe3\x0e\xc2\x4f\xe6\xab\xd0\x00\x11\xee\x4a\x5d\xed\x27\xb3\x9d\x32\x44\x5c\xe9\xea\x9a\x78\x1b\x52\xe4\x54\xce\x5a\x1b\xf4\x38\x0e\xaa\x22\xd1\x8a\xf0\x85\x4f\xd0\xba\x2d\xcd\x75\x75\xa2\x52\xeb\x69\xb6\x4a\xa5\x42\xbf\x30\x41\x2f\x5d\x9a\x09\xb6\x6f\x50\x47\xe7\x5f\x69\xe6\x11\x3f\x47\x0c\xac\xab\x9a\x08\x7b\xb5\x2e\xce\x5a\x8f\x12\x50\x04\xbd\x5f\x5c\x8d\xac\x1f\x59\x32\x58\x67\x68\x20\x05\x96\x09\xf7\x77\xbd\xf8\x9a\xbc\xf8\xbc\x57\x0d\xdc\x9c\x6c\x7c\xf2\xdd\x9b\x6c\xf9\x0f\xe2\xd9\x0c\xf8\xaa\x28\x3d\x6d\x69\x23\xb5\x5b\xce\xb6\xf7\xa0\x74\x51\xef\x6e\x79\x39\xbc\x1d\xca\x32\xe1\x98\x96\x86\x60\x37\x4f\x61\x36\xd3\x74\x90\xba\x1e\xbd\x74\x96\x28\x1e\x79\xc6\xde\x65\x8a\xa9\x51\x5f\xfe\x90\x76\x2a\xa4\xf8\xb3\xbc\xb7\xf1\x0d\x05\xca\xe6\x73\xb6\xa5\x24\xf7\x8e\xd7\x55\x19\xd9\xc4\x2c\xa4\x2d\x95\xa9\xfa\x81\x47\x9d\x4e\xa8\x68\xaa\xbf\xfa\x45\xc5\x75\xbd\xac\x2f\x73\x7a\xb7\x5e\x5a\x5a\x6e\xc6\x69\x51\x58\x6e\x94\x12\x24\xd1\xaf\xeb\xa7\x7c\x0c\x8e\xba\x1a\x90\x37\x67\xd8\x52\x5d\x38\x26\x19\xe4\xee\x10\xde\x7d\xac\x79\x4b\x91\xe1\x97\x8e\x1b\x3c\x3d\x52\xba\xef\xa7\xeb\x6a\xd0\xac\x0e\x8b\xee\x72\x6e\xa7\x52\x3c\x76\xaf\x3b\x13\xbd\x60\x5f\xa0\x95\x1a\x8f\xfb\xce\xc8\x57\x18\x81\x49\x03\x8c\x39\x4b\xaf\x04\x57\xb6\xb7\xa5\xae\xac\x84\x03\x8c\x03\xb9\xb6\xf7\x51\x61\x9b\xbb\x59\x4b\xe2\x2a\xdb\xaf\xda\xb0\xa0\xa5\x4a\xba\x4f\x1b\xce\xfc\xe3\xb6\x72\x1b\xb9\xa6\xf5\xdb\x6d\x5e\xc6\xc5\x36\x8a\x4e\xe0\x91\x95\xdf\xa1\x27\x2f\xca\x18\xbe\x86\x14\x9a\x2c\x8b\x2c\xf2\x04\xf9\x5f\xa5\xa6\xf0\x50\x11\x00\x1f\x22\xda\xf0\xda\x7b\xae\xaf\xa4\xdc\x78\xaa\x0a\x31\x24\xdb\xaf\xae\x5c\x44\x9d\xf1\x7e\xd0\xe6\x72\x57\xf5\xfd\x3e\x1c\x4d\x0a\x38\x54\xdf\x2c\xba\xe4\xde\x0d\xef\xc4\x68\x42\x18\x62\x65\x79\xb2\xb9\x19\xa4\xa0\x9b\x34\xf7\x54\xbd\xf0\xb0\x08\x0c\xd3\xc5\x63\x73\x3f\x8e\x29\x86\xce\xc9\xef\x4c\x3a\xc7\x29\x7d\xb0\x01\x89\xc0\x68\x49\x8d\xab\x8a\x10\x76\x55\xa9\xff\x55\x6b\x2d\xd5\xea\xd0\x4f\x83\xf0\xe4\x9c\x92\x5b\x3c\x19\x28\x50\xe0\x8a\xba\xf5\x46\x4b\xb1\x94\xd9\xb1\x12\xa0\xf7\x47\xae\x87\x74\x2d\x85\x0d\xb0\xa3\x3f\x38\xcd\x39\x96\x27\x40\xcc\x36\x83\x76\x30\xf1\x27\x92\x09\xd5\x2f\xb3\x0e\x89\x7e\x7b\x5b\x95\x87\x23\xa5\x8b\x3f\xdd\xac\xf6\xd5\xaf\x36\xd7\xad\x89\x8b\x3e\xdc\x1c\xf1\xc2\xbf\x3d\xf2\x2f\xff\xdb\x2a\xb6\x7e\xd1\xb2\xea\x33\x42\x25\x86\x15\xf8\xc4\x01\x23\x1d\x1b\x1b\x44\x3b\xc2\xef\xf0\xfb\x17\x2a\x5f\xca\xca\x79\x51\xfe\x63\x0a\xc3\x5a\x3c\xd2\xb4\xaf\x99\x5e\x8f\x31\x13\x8c\x27\xa7\x69\xe5\xb5\x73\x03\x4f\xaa\xca\x52\x5e\x4d\x24\xf5\x45\xcb\x27\x40\x3d\xd6\xc0\x17\xf2\x5b\x0d\xd5\x07\x44\x15\x37\x0c\x58\x72\x93\x5e\xa0\xc8\x6f\x3a\x55\xbd\x32\x0f\xa1\xb2\xe3\x94\x06\xae\x2a\x82\xf7\xf4\xae\xb6\xb4\xd4\x0c\xfb\xb6\x9b\x2b\xe1\xba\x6b\xd8\x16\x84\x08\xa7\x8c\x10\xee\xb9\xe8\xa5\x6b\x06\x11\x37\xa6\x00\x00\xf8\x48\xa3\x01\x1f\xd5\x76\xcf\x95\xc3\x3c\x34\x31\xc8\x65\x0c\x21\x04\x1e\xb6\xfc\x78\x6a\x33\xf8\xea\x57\x9b\x69\x17\x06\x5b\x0d\x4f\x18\xf9\x03\xfa\x0c\x1f\x8f\x7e\xd2\x7b\x87\x27\x9d\xb2\xca\x85\x4c\x1c\xe5\x05\x78\xd5\xb8\x83\xef\x28\x5a\xdf\x77\x26\x78\x97\xfd\x28\x9c\xad\x96\x4b\xae\x67\x04\x4a\x30\xe0\xdd\x09\x39\xa9\x86\x13\x08\xb9\x3a\xfa\xe9\xed\x5d\x4f\xcb\x82\x6a\x12\x7b\x6f\x02\xb5\x15\xad\x92\x2f\x48\x4b\x6d\x12\xa6\x71\x6c\xda\x29\x86\x8e\x6e\x5d\x54\x15\xcc\x4b\xa3\x9f\xf0\x9c\x13\xb4\xec\x72\x53\x6a\xc3\xb5\xb7\xc3\x49\x90\x8f\xd5\xea\x39\xcc\xec\x20\x2a\x07\xa8\xe8\x29\xaa\x91\xc8\x23\x9e\xc0\x26\xe9\x64\x10\x5d\xef\x36\x22\x56\xec\xfe\x3b\x5b\x9f\x65\xdc\x97\xf7\x53\x47\x6b\x43\xb2\xb8\xf5\x43\x55\xff\xef\xd9\xa4\x8c\x12\x34\x1b\x62\xb9\xc6\x1b\xe6\x63\x5a\x16\x11\x86\x5c\x41\x3e\xc9\x27\x0e\x26\x1b\xf6\x6d\x92\x0e\x6c\x62\x74\x1b\xcf\x3d\x05\x29\xdf\xab\xd1\x51\xae\xe2\xcc\x61\x9a\x15\xf9\x9c\x87\x0e\x18\x73\x45\x75\x89\xdb\x6e\x84\x32\xad\x03\xf5\xb7\xb5\xbc\xce\x5f\x05\x9e\xc8\xda\xb5\x55\xd4\x8c\xc2\x32\xbb\x5c\x61\x89\x17\xcb\xab\x1a\xe3\x14\x54\x3f\xad\xb2\x9f\xfd\x11\x5d\x3a\x1f\xd7\x34\xb4\xbe\xd2\x1c\x44\xab\x56\x69\xec\x7d\x4f\x6b\xec\x7d\xaf\x6e\xb6\x42\xc3\x80\x5e\x69\x2d\xd1\x6d\xba\x25\x71\xc5\x1b\xc3\x36\x94\x60\xcc\x0d\x25\xff\x75\xc3\x31\x73\xc3\xa8\x10\xda\xb2\xd8\x89\x2b\xb5\xd9\x0b\x35\x57\x74\xb8\xb9\x96\x16\xcc\xc9\x74\x5a\x48\x5e\x91\xfd\xda\x44\xef\x7e\xc7\xbe\x66\xb1\xd6\x68\xfb\x1c\x2e\x1d\x8c\x94\x0b\xf2\xd9\x49\x6f\xd2\x92\x43\x7b\x2e\x39\xa9\x5a\xf6\x45\xb7\xbe\xf7\x3d\x7f\x4a\xd8\x37\xd5\x97\xf3\xb1\x2a\xf3\x0c\xfb\x51\x62\x0d\xa4\x3c\xf0\xbf\x77\x14\xd1\xff\xd8\x48\x0b\xd4\xe9\x40\x3d\x4c\x07\x73\xca\x0b\xf0\x8a\x62\xea\x1c\x9f\x54\x2e\x6d\x2c\x2c\x70\x5d\xf5\x36\x49\xab\xf0\xb1\x22\xc0\x98\xd8\xbe\x36\x53\xfd\x10\xb0\x12\x94\x4d\x14\xbe\x20\x08\xdc\xb9\x09\xea\x6f\x95\xe0\x57\xcb\x21\x3d\x28\x6c\xbf\x6c\x1e\xc8\x27\xc1\x7e\xf5\xd4\xb2\x17\xb4\x6a\x05\xf3\x7f\xf8\x44\xb7\xe5\x65\x36\x8c\xd2\x92\x0b\x20\x78\xaa\x57\x31\xa8\xb4\xef\x9b\x44\xf3\xbe\x7f\x84\x27\x99\x90\x31\xb7\x63\xbe\x87\x0e\x35\x37\x6c\x1c\xb3\xe5\x00\xd6\x1f\x94\x2c\xf8\x58\x91\x33\xd6\xcd\x9a\x53\x7a\x14\x25\xea\xc7\x90\xc0\xe0\x93\x5a\xfe\x6a\xde\x4f\x0b\xb4\x93\x3b\xd7\xa5\xea\xf5\x03\x2a\xe7\xb0\x46\x1a\xe9\x9c\xbc\x5c\xa7\x63\x3b\x7b\x15\x47\xf0\x9b\x14\xcc\x30\x72\xad\x38\xa9\xb0\xfa\x71\x22\x05\xae\x30\xc0\xe4\x72\x7c\x78\x96\x6a\xdd\xd2\x4c\x4e\xcf\x03\x39\xde\x66\xe0\xb5\xa7\xce\xa9\x4a\x2f\x23\x3d\x59\x3f\x4d\x3b\x30\xfb\x07\x10\x76\x8b\xe0\x0b\x3e\x56\x73\xa6\x9d\x59\xdb\xb1\x60\xf9\xe2\x26\xd9\xc8\x48\xab\x00\x21\x5a\x3b\xaf\x4a\x50\x5f\xfe\xa5\x5f\xfa\x6c\x24\xd3\xff\x59\xc7\x26\xfb\x3d\x9a\x7c\x8b\x80\x39\x54\xa7\x21\xc2\xba\x35\x06\x47\x83\xc5\x5b\xf0\x35\x08\xab\x51\xca\xa6\xbf\x6d\x1d\xa0\xa7\x80\x05\x96\x23\x06\x20\x0a\x73\x63\x4f\x63\x3e\x45\x99\x29\xc3\xdd\xef\xd1\x2c\x73\xea\x45\xfe\x81\x32\x40\x00\xa4\x71\x4e\x89\x95\xb7\xa3\xac\xe8\x77\xcc\xc6\xac\x32\x47\xba\xc0\xd4\x5b\x87\xa0\x54\xd7\x2a\x7a\x82\xbe\x39\x70\xba\x9d\x7d\x69\xa9\xf9\xb5\xd2\x64\x9c\x0b\xb2\x2f\x8b\xea\x46\x39\xa6\x1e\xe5\x8b\x4b\xcb\x33\xde\x80\xe1\x87\x23\xdf\x9b\x77\x0b\x81\x26\xc2\xeb\x4d\x6c\x09\x9c\xfc\x70\x7b\x01\xef\xdc\x33\xd5\x22\xc0\x85\x0a\xec\x7c\x98\x86\x0f\x09\xa3\x40\x44\x7e\x61\xa4\xf1\x96\xb8\x93\xae\x11\xa0\x51\xbd\x6a\xfc\xf1\x05\x24\x25\x7c\xa2\x40\xa1\xcc\x26\x76\x9d\x26\x4f\xf5\xe0\x35\xb8\x25\xcd\x30\x75\x82\xb8\xc3\x8e\xda\x12\x9c\x88\xa0\x77\xb9\x9e\x62\x50\xb8\xe2\x6d\x16\x15\x51\x28\xac\x4e\x2c\x05\xbf\x87\x97\x0e\x6e\xee\x6c\xcb\x63\xad\xbc\x98\x01\x4b\xbb\x3b\xb5\x46\xfc\xf5\x26\x3d\x25\x26\x75\x0a\x2a\xa4\x05\x3a\x6a\x34\x31\x5e\x6c\x0e\xcb\x38\x96\xb5\x5e\x79\xc2\x2f\xd6\x78\xc2\x87\x26\x8b\xda\x69\xa9\x01\x33\xb8\xd5\xf2\x71\xa0\x3b\xf8\xca\x4e\x94\x52\x0b\x1b\x16\xdf\xb7\x28\x2b\xc0\x3e\xb6\x43\x71\x86\x6e\xa3\x10\xc2\x62\x62\x6e\xef\x8c\xd3\x74\x35\xdf\xe3\x29\xc1\x8f\xb0\x75\x52\x19\xea\x9f\xfe\xb5\x96\x02\xdd\xee\x53\x77\x1e\xea\x5b\xd7\x54\xaf\xdb\xae\xb1\xb2\x09\xbf\x82\xfd\xd0\x79\xd3\x54\x2f\x5f\x5a\x50\x6a\x20\xd5\x61\x6c\x0d\xef\xdc\x88\x5b\x4f\xa9\x18\x76\x5a\x58\xfe\xf9\x66\x37\x2a\x38\x23\x73\xaa\x66\xca\x73\xaf\xae\x1b\x33\x8e\x2c\x7c\x80\x84\xb2\xd5\x70\x76\xf7\x7a\x3c\x9a\x3c\x47\x98\xe8\xd9\xf8\xd7\x74\x90\x72\xad\x0e\x65\xb0\x49\xcf\xf4\xd0\x49\xbb\xe8\x75\x48\xab\xab\x63\x2f\xdd\x91\x7a\xdb\x0f\x5c\x22\x32\x30\x49\x27\x85\x6e\x42\xad\x83\x5e\x8d\x29\x6e\x27\x22\x21\xbc\xbe\xb4\xed\x6a\xd5\x44\xc0\xca\x17\xb4\xad\xf3\xd5\xa9\x41\x5b\xa5\x64\xe5\x60\x10\x41\x7a\x01\xba\x54\x58\x6e\xf8\xb8\x0e\xd7\x4a\x6c\x41\x5a\x97\xf4\x19\xa5\x71\xe4\x04\x8f\x94\xc9\x61\xde\x4f\xd7\x9f\xf4\xed\x34\xdc\x04\x8e\x5b\xbf\xa1\x9f\x03\xf3\xff\x81\xcb\x7f\x6f\xa4\x0c\x64\x26\xc4\x43\xde\xa1\x9d\x0c\xf8\x20\x8a\xc2\x0c\xda\x91\xdf\x98\xe6\xac\xa3\x38\xf5\xff\x52\xa4\x8e\xf5\xea\x4f\x91\x31\xe0\x79\x9e\x56\xcb\xa2\x59\xdb\xc0\x2e\x2a\x7d\xf9\xd5\x77\x01\x19\x39\xeb\x3b\xca\xfe\xce\xd3\x2d\x95\x40\x9e\xa6\xad\x56\xb8\x64\x34\xbc\x45\x3c\x5b\x15\xd4\x0f\x50\x81\x13\x0c\x16\x72\x2e\x13\x75\xe3\xab\x4a\x66\xb8\xc8\x4c\x95\x1c\xa2\x4a\x2a\x4d\xde\x74\x3d\x58\x90\x40\x72\x72\x06\x18\xd5\x03\xe4\xff\x18\x79\x95\xab\x41\xfe\xc2\x13\x5e\xf5\x04\x43\x00\xbf\xbb\xb7\xa5\xf4\x1c\x4e\x8d\x26\xba\x29\x15\xab\x80\x36\x6d\xd1\x85\xa7\x2b\x75\x39\xb4\x57\x6a\xba\xc1\xa0\x93\x36\x77\x17\x87\x3a\x25\x3b\x5e\x64\xd6\x16\x73\xd5\x93\x9f\x20\x6c\x03\x2e\xda\x47\xaf\x0d\xe9\xfe\x29\xa5\x2d\xb5\x63\x5c\x6d\xd9\xd8\xb4\xae\xab\xb7\x63\xf3\x3e\x18\xcc\xe0\x1a\x3d\xd0\xa2\x5b\x70\x9c\x70\x8c\xc0\xea\x01\x22\x0d\xb8\xea\xcb\x36\xf3\x3f\xd9\xf2\xe5\x1c\x2d\x50\xd8\xb1\x26\xde\xa7\x86\xc4\x1d\xd5\x48\xc6\xc6\x7c\x48\xd5\x6e\x29\x13\xfb\x3d\x63\xef\x2a\x71\x8b\x06\x23\xa0\x65\xec\x14\x80\x2b\xff\x4c\x2b\x68\x5c\xa7\xf0\x00\x31\xc4\x79\xb4\x99\x0a\x77\x59\xd5\x0f\xae\x7f\xa6\xc3\x7c\xdb\x46\xaf\x3a\xf1\x64\x44\xe5\xf7\x14\x4c\xca\xb6\x40\xf8\xe1\x9d\xca\xb6\xa9\x9b\x96\xbd\x3e\x94\xa3\xd8\xaf\x59\x91\xf7\x36\xb5\x66\xe2\x35\x65\x26\x54\xac\x9b\xac\xda\xe4\xdd\xcc\xbe\xa5\x6a\x6e\x27\x46\xde\xb7\xf5\x9c\x72\x51\xec\x9a\x28\x06\xb1\x1b\xa0\xc9\xf7\x09\x5a\x14\xdc\x8d\xde\x0a\xff\x07\xa5\x13\xfc\x1f\xc1\xb3\xd3\xf8\xc3\x2f\xee\xf6\x0d\xd5\x05\x7d\x8b\x8c\x13\xba\x7d\xf1\x69\xf3\xf3\xfe\x4d\x65\xf2\xfe\x6f\x34\x9f\xe6\x23\xa5\x01\x74\x45\x49\x81\x64\x76\x60\xb2\x55\x12\x97\xa0\xa2\xb0\x50\x00\xe8\xc5\x08\x07\xe0\x80\xf2\xee\x8c\x63\xc2\x70\x9d\x54\x08\xd7\x56\x44\x5d\x48\xb9\x21\x5e\x55\x19\xc1\x05\x85\x1f\x0f\x6c\x9e\xc3\x44\xa0\x9a\x7a\xe2\xa7\xae\xbc\xd5\x9d\xe0\x90\xc9\xdb\x36\x2f\x52\xb8\xdf\x22\x85\xba\xab\x54\x4a\x2e\x7a\x4f\xbe\xb9\xa7\x5b\x7e\xe7\x67\x13\x29\x16\x9a\xd5\xf0\xd5\x0d\x45\xf4\xcb\x87\x99\x85\x87\x07\x57\xf3\xb4\x4e\xc3\x45\x15\x49\xbf\xf0\x37\xff\x73\x4a\xfc\x9d\x3e\xff\xc2\xa2\x1c\xd7\x30\x1e\x69\x89\xdf\xe5\xf7\xc7\x63\x00\x69\x9c\x94\xeb\xca\xbc\x63\x60\x4c\x8b\xe2\xe1\x6b\x4f\x05\xba\x71\xaf\x66\xc7\x69\x9b\xdc\x3a\xeb\x77\x0c\xe6\xff\x59\x29\x17\x5e\xd1\x7e\x4a\x97\xa7\xe2\x83\x43\x87\x9a\xed\x04\x75\x64\x34\xa1\x9d\xd6\x42\x28\xa7\x3f\xd3\x17\xaa\x9d\xae\xbb\xa8\xd2\x75\xb7\x2c\xf9\x35\xcd\x87\x09\xd1\x60\x68\xb3\xc8\xc4\x1c\x48\x22\x91\x86\x03\x33\x32\xf1\xdb\x1a\xc7\x6d\x8c\x95\xf5\xd1\xdb\x53\x01\xd0\xcb\x2b\xf3\xcd\x8e\xb5\x43\xa2\x92\x88\x19\x65\xe3\xd0\xa1\x2d\x40\xd5\x78\x64\x9f\x3a\x95\xf6\x7e\x54\x30\x7d\x04\x3b\x0b\x3b\xf2\x4c\x14\xf8\x51\xb6\x69\xb4\xfc\x5c\x99\x43\x78\x26\x3b\x6c\x8d\x7b\x51\x73\x90\x16\x7d\xce\xd6\x80\x24\x3e\x40\xb6\x86\x9f\xc1\x9b\x15\xd7\xab\x9a\x61\x31\x28\xc3\x3e\xbd\x2f\x6c\x23\xb7\xd1\x58\x29\x9e\x01\xd5\x87\x11\x62\xbc\x37\x15\x62\x10\x8d\x80\x0c\x67\x39\x08\xd4\xc0\x02\x1f\x2b\x2c\xa1\x13\xe5\xd4\x19\xd5\xd9\x4d\x7f\x0c\x34\xe6\x11\x1e\xb8\xdb\xd0\x1d\x4c\xf3\x88\x94\x67\x30\x54\x6e\x8d\x26\x24\xdb\xaa\x6b\xe2\xe3\xc0\x4f\x93\x9d\x2d\xe7\x85\x10\xb5\x35\xf6\x24\x3e\xab\x9e\x5f\x75\x75\x24\xf0\x68\xf8\xba\x0d\xfb\x69\x1e\xa7\x6b\x66\x35\x02\x11\x47\x84\xb6\xb4\xda\xa9\xb3\x56\xec\x66\x26\x09\xfb\x51\x6e\xc1\xd4\xc0\x9e\x00\x51\x18\xf0\x99\xef\x8e\xbc\xf0\xc0\xa5\x09\xcd\xd2\xb8\x13\xb9\x72\xb1\x5b\x87\x16\xbc\xc4\xa6\x47\x47\x06\x51\x92\x66\x51\xc1\xaa\x73\xee\xae\x9d\x70\x86\xde\x07\xaa\x45\x92\xdb\xea\xd8\xb9\x4f\x33\x8d\xaf\xd5\xb9\x48\x66\x51\xbe\x0a\x9a\x35\x52\x70\x2c\x71\x92\x82\x37\x94\xab\xd5\xd3\x6a\x0b\x5e\x33\x71\x69\xb9\x18\xcf\xbc\xa9\x09\x23\xb2\x29\x69\xae\xc5\xe6\xe2\x91\x03\xd5\x0d\xe2\xc1\xbc\x87\xa0\x0e\x5b\xc6\x71\x7a\x6f\xbc\x09\x6b\x69\xeb\xef\xe8\x9a\xf5\x1f\x62\x85\x42\x71\xe3\x31\x62\x1d\x21\x5c\x57\x1b\x3a\x26\x26\xe0\x21\x24\x46\xa7\x14\x6c\xf4\x3d\xed\x79\xfb\x9d\x09\x1d\x36\x4a\x81\xb1\xbb\x1d\xa7\xf7\xc5\x5e\xdc\x13\x92\xe0\xf4\x18\xf9\xda\xa7\x3a\x5e\x0e\x1d\x6a\xc6\xa9\xf4\xa9\x61\x31\x01\xf2\x7e\x5a\x33\xa9\x4f\xd7\x55\xf4\x21\x1c\xe1\x59\x6a\x1f\x7a\x50\x63\xfc\xa1\x72\xd9\x64\xce\xb9\x68\x7c\x4a\x9c\x4f\x97\x25\x09\x80\x38\xad\xe6\x43\x93\x85\x79\x61\x1c\xdd\x13\xe3\xf6\x86\x1e\xc4\x37\x54\xb7\x8b\x09\x89\x45\x93\xef\xf6\x86\xdb\x90\x25\x74\xea\x1d\xde\x46\x6c\x53\xeb\x25\x9e\x9a\x68\x6e\xa5\xfd\x1d\x2b\xc5\x5b\x9a\x8d\xb8\xb3\xb5\xdf\xb7\xa5\x3b\x7f\x54\x19\x6d\xf4\xdd\x7c\xa2\x02\xe3\x0d\x5b\xcc\x2a\xa1\x34\xac\x05\x88\x66\x1f\xa8\xe6\x7e\x4e\x46\x24\x95\xae\x41\x00\xf3\xb4\x8c\xb9\xd4\x21\xa6\x6f\xaa\x9b\xf2\x62\x9d\x2d\x62\xc7\x86\xd5\xb6\x35\xe1\x0a\xf0\x08\x43\x11\xe9\x05\xcb\x5b\xc8\x2a\x5f\x27\x1b\x54\x86\xfd\x59\x95\x9c\x29\x63\xf6\x4f\x26\x37\xd4\x86\x73\x5b\x99\x69\x79\xc1\xbc\x6e\x5a\x26\x1d\xff\x02\xb1\x18\xbf\x87\x19\xc0\x27\x53\x75\xc1\x95\xf9\xa6\x4d\xc2\xb4\xcc\xc8\x5b\x0e\x73\x13\x71\x23\xe4\xcd\xf9\xb8\xd5\xfc\x8c\x8d\x73\x3d\x2a\x12\x9b\x3b\x9b\x2d\x91\xcc\x50\x81\xea\x95\xa9\xe2\xe0\xca\xfc\x4a\xb3\x93\xae\x27\xeb\x26\xc3\x33\xc6\xe8\x3a\x4b\x8b\x08\x1f\xd7\x59\xca\x65\x06\xa0\xac\x53\x1e\x5a\xf2\xea\x16\xdb\x33\x66\xb2\x18\x68\xc7\x76\x90\x76\x6c\xac\x04\xe1\xbf\x41\xe3\x40\x68\xeb\xb2\x86\x47\x59\x66\x7b\x65\x6c\xd0\x0a\xab\x6c\x8e\xce\x8d\x26\xb4\x50\x6a\x10\xa9\x76\x96\x9a\x0e\x49\xb8\x55\x51\x25\xdb\xe6\x29\x4d\xd5\xd3\x0a\x20\xcb\xcb\x36\xd9\x4d\x20\x34\x73\x5e\x9f\xcb\xfe\x64\x2a\x35\x38\x3a\xff\x0a\xed\x7a\xd5\x5c\x73\xa9\x01\x86\xf7\x75\x25\x39\xf2\x58\xa9\xaf\x5d\x54\x31\x6d\x94\xe4\x85\x35\x9d\x3d\x13\x69\x35\x16\x1b\xe4\x72\x8f\x02\x85\xa4\xfd\xdf\xca\xa6\x15\x7c\x5d\x14\x20\x3f\x37\x56\x4a\xce\x17\x03\x95\xcb\x80\x89\x02\x02\x8d\x4e\xe4\x5e\x38\xf8\x02\xa1\xc4\x78\xd0\x57\xb4\x0a\xff\x95\x09\x0e\x67\x92\xd8\x59\x5f\x12\x66\xd1\x6c\x76\xf9\x0e\x54\x3b\xf3\x27\x98\xb3\xe2\xff\x2d\x9b\xe9\xd0\x66\x83\xa8\xf0\x4f\x06\x8b\xe6\xbd\xc0\x77\x10\xa2\xc9\x46\x0c\x1b\x14\x63\x23\x1d\x0c\x6c\x52\xcc\x4e\x34\x0c\x78\xb8\xfa\xdc\xc8\xef\x68\x3f\xa4\x5c\x88\x8f\x3d\x15\xae\x6c\x17\xb1\x25\x8c\xd5\x85\x1e\xdb\x3a\xad\x80\x32\xfe\x78\xa4\xd5\x3d\x3b\xbc\xae\x38\x37\x33\xaf\x05\x79\x4d\x19\x9f\xb5\x6d\x2f\x4a\x9e\x24\xe8\x59\xea\x0e\x4a\x7b\xe1\x36\x3e\x86\x58\x8f\x19\xb2\xc0\xe5\xae\x63\xea\x89\x74\x3f\x3d\x41\x64\x92\x3b\xc6\x8d\xaf\x2c\xfa\x82\x06\xe9\x55\x61\x24\x20\x35\x81\xfe\x21\x8b\xcd\x06\x8d\x2f\xfd\x2a\x47\x51\xa0\xcd\x70\xbd\xd5\xd5\x3c\x7b\xa6\x8a\x18\x89\xfc\xe6\xea\x71\xbb\x11\x8e\x2a\x56\xe6\x8b\x5c\xf2\x7e\x5c\x17\x35\x76\x33\x8b\x28\x1f\x45\xcd\xef\xd3\xef\x23\xe4\x3d\xa7\x6b\x12\x57\xeb\xfc\xbd\x4d\x9e\x5b\x61\x6f\x3a\x3f\xd6\xea\x66\xa5\x9d\xa8\x0e\xfe\x1a\x56\xcf\x5f\x2d\x06\x27\xd4\x62\x70\x62\xe4\x2d\xeb\x94\x56\x4f\x43\xf5\xdd\x1e\x53\xbd\xb6\xc7\x54\x12\xb5\x68\x36\x66\x74\xd3\x25\x1a\x50\x11\x3e\x9d\xd2\x2a\x56\xb7\x14\x73\x70\x58\x2d\xd6\xbb\xe9\x19\xb9\x51\xb6\xb4\xa4\xad\x1e\x16\x9d\x00\x04\xa5\x3c\x78\x18\x37\x00\x89\xf0\x49\xa0\xc0\x92\xcb\x0a\x1f\x39\xed\xa2\xcd\x41\x94\x4f\x18\x29\x62\x89\x80\x8e\x38\xde\x0d\x8c\x14\x91\x20\xcd\x8e\xf7\x6b\xed\x43\xbb\xaf\xe1\x4c\xce\x37\x29\x9f\x17\xa9\x4c\xba\x08\xac\x59\x67\x51\xbf\x10\x57\x90\xea\x11\x21\x9a\x26\x53\x10\x06\x82\x66\x5a\x28\x79\x60\x18\x6d\x51\x73\x02\x4b\x62\x60\x28\x6b\x2a\x0a\x18\x00\x1c\x79\xb0\xf6\xaa\xb7\x55\x24\xa3\xae\xdd\xf4\x7f\x78\x15\x77\x27\x84\xc0\x3d\x18\xb6\xbb\xa5\x4b\xa2\x2a\x7e\x00\xd0\x87\xbd\x94\xe5\x66\xe4\xaf\x14\x85\xd7\xb4\x6d\xcc\xbb\xb9\x73\x4b\xa8\xbe\x03\x7f\x7a\x17\x8f\x5e\xee\xc1\x7f\xae\x5f\x0e\x4c\x62\x80\x50\x83\xde\xcd\xc0\x01\x9f\x8c\x7e\x6e\x3a\xdc\xc8\x6c\x98\x26\x79\x44\x0d\x4d\xb2\x7b\x8b\x1d\xbf\xa2\x58\x69\xd6\xb6\x09\xc3\x72\x50\xc6\x60\x64\x38\x73\xaf\x3f\x52\xc4\xc0\x3f\x72\xfd\x94\x99\x0d\x8b\xa8\x0a\x4e\x0c\x2b\x4a\x08\xc3\xbb\xe1\x6c\x6a\x4e\xb8\xb6\xa1\xa2\x1c\xb4\x63\x69\x4e\xc7\xc2\xc6\x6d\xb2\x7c\xa2\xba\x04\x4d\x94\xed\xf2\xb5\x97\x6f\x61\x02\x4a\xb9\x4e\x75\x64\xff\xe3\x40\xbd\x4a\x31\x33\xc2\x7f\xed\x54\x89\xea\x03\x27\x45\x34\x28\x93\x28\x8c\x86\x26\xde\x4d\xed\xdb\x62\xde\x59\xfd\x16\xe4\xa2\x3f\x0f\x7c\x16\x4b\x3c\x8f\x14\xd1\x52\xf6\x8e\xd8\xc7\x47\xbe\xad\x68\xe7\x98\xea\xb2\x52\x6a\xf9\x9c\xaf\xab\x66\x36\xcf\x91\x4f\x0a\x1f\xb0\xfa\x06\x70\x0e\x8f\x07\xbe\xca\x7a\x41\xa9\xa6\x3d\x0e\x94\x62\xf0\xa6\xd2\x48\x43\xc3\x37\x13\x2e\xeb\x0a\x1e\xf6\xb5\x28\xe7\x68\x16\x20\x0e\xe8\x85\x7c\x8c\x87\xcb\xeb\x4a\x30\xd7\x78\xee\x39\x67\x36\xdb\xf8\x5b\xbf\xcc\x53\xf1\x16\x4a\xcc\xda\x78\x48\xea\x7f\xf4\x20\x44\x0d\x47\x60\x83\xdc\xc4\x85\x36\x77\xfb\xf1\xc8\x57\x43\xae\xa8\x6a\x08\x6f\xd3\xfc\x47\x4a\x8b\x21\x8d\x30\x13\x5e\xf4\x76\xc8\xce\xb3\x10\x81\xb5\x34\x77\x3f\xa9\x28\xf0\xc8\x6f\x85\x8f\x0e\xbd\x64\xc5\xea\xfa\x1d\xed\x08\x61\x63\xe8\x89\xb3\x90\xdf\x44\x79\x58\x35\x56\xef\x68\x1d\x98\x74\x9b\x0e\x0b\x0a\xa5\x1c\xca\x5a\xdd\xa4\x20\x9d\xcf\x38\x7a\x4e\x14\x47\xc3\x21\x82\x73\x6f\xe3\x31\xc3\xde\xfc\x78\x5a\x07\x30\xa0\x90\xdc\x3f\x70\xc3\x03\xed\x06\x39\x31\x93\xb6\xb6\x30\xc0\x31\xff\xaf\xf3\x30\xc6\x13\x69\xb4\x54\x09\xeb\xe1\x44\xf7\xb3\x6f\xb3\x1e\x54\xa1\x8a\x05\xab\x5d\x20\x9c\x37\x47\x4a\xde\x8c\x6f\x00\x57\xc4\x0d\xde\x18\x6f\xd3\x1e\x5a\xc4\x20\x32\x79\xbf\x31\xb9\xf3\xa8\x32\xd2\x69\x95\xad\xf5\xd2\x35\x9b\x25\x1c\x7a\x60\xd1\xfa\x50\xe9\x12\x7d\xe8\x66\x1e\x25\xe9\xa6\x10\xd6\xa3\x84\xda\x74\x5d\x12\x6b\x6f\x0f\xcd\x8f\xbc\xd4\x1c\x9a\xac\xe1\x9b\x02\x66\xc6\x7e\xa6\xcc\xb4\xb6\xa5\xf5\x2b\xf3\xcd\xa5\xa5\xc3\x4f\xd1\x6d\x63\x73\xd8\xd3\x9a\xa4\x2c\xfb\x40\x6e\x0f\x34\xa6\x58\xcf\x8c\x32\x76\xd9\x74\x3c\x07\x61\x67\xcb\xcb\x05\x7f\x07\xb8\x15\x72\x48\x64\x30\xc8\x47\x77\x8d\x5d\x18\xf8\xcb\x4f\x8f\xd5\xe2\x76\xa0\x55\x0d\x20\xc4\x2c\xef\x28\xf9\xb2\xbf\xd2\x9a\x07\xff\x0a\x2b\x20\x26\xe9\xcc\x78\xc2\xb7\x30\x31\x88\x21\xb1\x9f\x20\xf0\xe3\x63\xda\x91\x11\x7d\x9d\x57\xda\x37\xe7\x55\xec\xb0\x6e\x36\x9e\xf5\xf4\xda\x47\x54\x40\x90\xda\xa9\x2f\x67\x3d\xa2\xea\x03\x70\x12\x2e\xc9\xe2\x8a\x9f\x80\x4a\x38\x24\xf4\x58\x27\x01\x9b\x1c\xd3\xeb\xc5\x82\xa3\xba\x31\xec\x5c\xe7\x08\x15\xc3\xa3\x63\x0e\x83\x53\xb9\xf0\x9d\x4b\xe7\x74\xf7\xfb\xfd\x40\x37\xc6\xa3\x33\x17\x9f\x79\x8b\xf0\x27\xe7\x2c\xf4\xb7\x7e\x99\x07\x2f\x4a\x66\x14\x58\xfe\xdd\x9f\xd7\x66\x0b\x57\x47\xdb\x9d\x67\x9e\x6f\x0e\xcd\x0b\xc0\xa9\xa4\x15\x4c\x35\xd0\x5d\x55\xcb\xd0\x50\x50\x0f\x8c\x87\xbb\x23\xdf\xd6\x78\xd7\x71\x49\x33\xdb\x2e\x0b\xd7\x16\x8c\x77\xf9\x30\x50\x45\x9a\x87\x6a\xdd\x69\xa7\x83\x36\x7d\xa3\xc3\x84\x5c\xcf\xf4\xb4\x74\xd5\xf2\xca\x72\x73\x35\x21\xc1\x36\xba\x21\x27\xf6\xe3\xfb\x58\xae\x68\x81\x1f\x53\xcc\x7a\x92\xca\x0f\x02\xdf\xdf\xb6\x7b\xac\x68\x7e\x7b\x5a\xaa\x68\xf2\x76\xad\x35\x71\x6e\xb3\x28\x2d\xf3\x98\xd1\x3c\x89\x55\xaa\x27\x2c\xee\xf7\x3e\xfe\x88\x06\x43\x13\x16\x7b\xfc\x62\x0a\xdb\x68\x7c\x3f\x03\xc6\x88\xc2\xee\x29\x71\xc1\x4f\x03\xaf\x53\x02\x8b\x54\x6c\xcf\xff\x8a\x66\x04\xf2\x98\xad\xc0\xfb\xe0\x3e\x56\x59\x6d\x91\x99\x0e\x55\x5a\x26\x14\x20\xd4\x20\xd1\xfd\x9a\x85\x8d\x21\x47\xea\x71\x8e\x53\x1a\x90\x3a\xa5\x42\x64\xd2\x35\xc0\x3d\x6b\x91\x4d\xf1\x7d\xdb\x3e\x90\x0e\x56\x4f\x6a\x46\x31\x23\xd1\x24\x24\x8a\x11\xd5\xcc\xc2\x62\x7d\x4f\xcd\xbf\x41\x9a\xcd\x29\xf3\xd9\xbb\xca\x84\x1d\xe5\x18\xc7\xe6\xaf\xd6\x15\x47\xa1\x5f\xe2\x7c\x70\xe6\x69\x55\x86\x1b\xa6\x71\x14\xda\x3d\xf4\x97\x80\xb4\x4e\x4d\xd4\x8c\x46\x93\xc0\xad\xe3\x58\x3e\xc6\x10\x42\xb1\xf9\x87\xa0\x4c\xf0\xe7\x31\xa3\xf9\x7f\x94\x7a\xe9\x63\x25\xb5\x3c\x34\xf1\xe0\x3f\x94\xa7\xfd\x32\x14\xf2\x3a\x7e\xc5\x67\x25\x24\x5c\xb8\xc8\x22\xd5\xe8\xca\x9a\xce\xab\x65\x5e\x08\xf5\x81\xfd\x47\x70\xb9\x08\xbf\xef\x29\x13\xc7\x69\x73\xeb\xc5\x23\x55\xf4\xb8\x6e\xd6\x04\x39\xe2\x9c\x81\x1e\x8b\xe4\x0f\x5a\x2d\x0b\xd6\xd6\x48\x5f\x67\x5a\x13\xcb\x56\xf5\x66\x25\x07\xf4\x64\xe3\x13\xd8\xad\x45\x77\x5c\x51\x73\x4f\x07\xe2\x2d\x94\xa7\xc3\x7e\x94\x17\x51\x58\xc5\xd1\x94\x8b\x12\x66\xf5\xeb\x3f\xdb\x52\x54\x0a\x42\x3f\xb8\x14\x14\x1e\x18\xeb\x08\x24\xb6\xd4\xd5\xa6\x94\x82\x28\xb3\x91\x0b\xab\xc9\x5b\x3b\x36\x8c\x9c\x53\x98\x2c\xee\x4a\x12\xe7\x91\x03\x64\xcd\x70\x98\x46\x49\x41\x2a\x0f\x0d\xd5\x3d\xf8\xb1\xee\xa8\xfd\xb8\x46\x58\xf8\xc5\xe6\x7a\x9f\x1c\x30\x0e\x3a\x49\xbe\x91\x2f\xbd\x5f\xad\x95\xd7\xb3\x83\x61\xdf\xe4\xd1\xeb\xd2\xf6\x26\x61\xb2\xa6\x27\x29\xa3\x9a\x57\x4d\x3f\xa1\xfd\x1e\x81\x23\x2b\xe4\xf0\x89\xf2\x64\xef\x46\x19\xe7\x27\xd8\xf9\xde\x0e\xfc\x2e\xf8\xb6\xf6\x0f\x8c\x3a\xf9\xac\x42\xdd\xb0\xdd\x82\x72\x37\xa9\x40\x4c\x17\xc4\xff\xe1\x42\x2b\x82\xad\xab\xd7\x08\x32\x35\xc8\xce\xd0\xf0\x75\x1e\x3d\x4b\xce\xe8\xee\x19\x0e\xfc\xb0\xf2\x3d\x85\xf5\x17\xf7\x38\xdb\x3a\xa0\xd8\x70\x6b\x36\x29\xed\x3e\x35\xa4\x2f\x63\x6e\x4a\x8b\x3f\x41\x03\x08\x66\xd1\xf9\x88\x2d\x4b\x3b\xde\xed\x1c\xfb\x72\xe7\x43\x25\xdb\x75\x7f\xa2\xc0\xa5\xaa\x17\x9c\x37\x21\x35\xe7\x5e\x64\x31\xa2\xfd\xbc\x76\x03\x24\x17\xe0\xc8\xc4\xe4\x86\xad\xfd\x5a\xa4\x16\xdf\x70\xbd\xd9\x9f\x62\x0d\x10\xd3\xeb\x6a\x84\x22\x76\x3f\xae\x89\xa7\x17\xa6\x2a\x14\x07\x97\x9a\x05\x89\x5a\xa5\xc9\xc6\x4c\xe3\xcb\x2f\x6f\xa1\xb4\x83\xd5\x68\x53\x69\x02\x8d\x5d\x0b\x72\x11\x15\xb1\xed\xcc\xf9\xb8\x8b\xf5\x16\x44\x0d\x8d\x2e\x04\x18\xc5\x4e\x4c\x2b\xa4\xc5\x07\x5a\x8d\x5f\x39\xcc\x3b\xef\x49\xc5\x97\x59\x8f\x48\xcb\x9d\xcc\x89\x51\x48\x01\x91\xc5\x15\x26\x0f\x1d\xe2\xe0\xe7\xb4\xb2\x74\xdb\x0a\x54\x54\x74\x1a\x2f\x8d\xfb\x30\xf1\x44\xa5\x29\xb3\x26\x3f\x33\x65\x31\xd1\x6b\xc7\x43\x47\x24\x7e\x7c\x89\x2d\x1d\x0e\xd3\x84\xbc\xb4\x16\x8f\xf0\xc2\x7b\x1e\x65\x76\x3e\x51\xbb\x8c\x89\xbb\x07\x94\x76\xf5\x16\xd5\xd9\xc1\xc6\x7c\x80\x65\xca\x51\x59\x16\x8f\x30\x2f\xf7\x27\xb0\x57\x23\x35\xde\x3d\xf6\x1c\x82\xb3\xb4\x27\xb3\x07\xd0\xd8\x83\xa7\x4f\xb4\xe8\xae\x29\x12\xf9\x6f\xbe\xd0\xd2\xce\x1e\xf4\x9c\xd0\x71\xc6\x1b\x82\x0b\xf9\x96\x57\x96\x5d\xe1\x0e\x18\x8d\x03\x5c\x7d\xeb\xe0\xae\xb1\x42\xb1\xce\x2a\xa3\x81\xb4\xdb\xcd\x2d\xe4\xac\xf0\x25\x37\xfc\xde\xf8\x3f\xde\x70\x68\x21\x8a\xe6\x69\x09\xf6\x3a\x27\x50\xf4\xc2\x74\x91\x58\xbc\xe4\x85\x99\xd8\xb6\x42\x75\x15\xc9\x6e\xa5\x6f\x77\x41\xc9\xcc\xe4\x65\xb6\x16\xad\xc1\x9f\x4e\x99\x17\xf9\x89\x31\xb5\x4a\xae\xcc\x37\x6d\x84\x9a\xf7\xc2\x82\xdf\x3c\x16\x8f\x28\xc3\xfd\x79\x61\xc9\x4f\xd1\xf1\x48\xd3\xb9\xcc\xb2\xb4\x67\xb8\x71\xc2\xf5\xdc\x1d\x3a\x24\xc7\xc1\x17\x94\x4e\x56\xb2\x06\xa9\x54\x13\xcf\x4c\xe0\x4d\xd5\xdf\x63\x3a\x3c\xd1\xf2\x40\x6a\x63\xbc\xd7\xa5\xee\xca\xb2\x9c\xef\x1f\xb9\x3e\x92\x4c\x41\x9e\x95\xa4\xb0\x49\x36\x52\x2c\xce\x98\xfd\xbf\xad\x74\xfe\x7f\x5b\x6d\xa9\x79\x34\xc4\xce\x2b\xea\x45\x0d\xe7\x45\x71\x42\x35\x51\x9b\xb0\x88\xd6\xa2\xbc\x40\xff\x03\x22\xc1\x07\xca\x06\x16\xaf\x4e\x5c\x38\x6b\xda\xce\x12\x5b\x66\x69\x9c\xf6\x22\x0e\xfa\xb0\x22\x7f\x42\x5f\xc1\xc7\x8a\x52\xff\xb5\x92\xb4\xf7\x31\x50\xb0\xff\x9e\x0c\x54\xe3\xc0\x29\xe5\x89\xf7\x5b\xaa\x88\x6d\x7a\x99\xad\x16\x9e\xc5\x23\xaa\xc6\xbf\xec\x70\x91\x86\x93\x94\x01\x8d\x0c\x53\x0c\xe2\x89\x4c\xf6\x6a\xc9\xc6\x6b\x5f\x1b\x9a\x24\x57\x75\x53\x41\x4a\x68\x74\x09\x54\xe2\xf0\x32\x93\xe7\x36\xe6\x20\x46\x24\x53\x35\x1d\x7f\xbf\x6a\x24\x09\x5f\xd8\xab\xda\xab\x7f\xf6\xf3\x2d\xe5\x2a\x72\x0b\x82\x0b\x42\x93\xf1\x2c\xba\x3f\x78\xba\xe5\x11\x3e\xc4\xb4\x18\xa4\x7b\x28\xbf\xc5\xe6\x00\x0b\x76\xe7\x2d\xe6\xed\xc3\x1e\xbb\x2b\x1d\x66\x76\x68\x58\x52\x0c\x03\x6a\x2f\xed\x4e\x7c\x3c\x65\xa5\x41\x06\x36\xa1\x8d\xd6\xac\xd6\xa1\xbd\xaa\x14\x1d\xae\x7e\x26\xdb\x3a\x2f\x32\x93\xf4\xac\x52\x69\x38\xa1\xba\x0c\x01\xfa\xc9\xda\x44\x8f\x55\x5a\x7c\x6b\x0d\x08\x7b\x59\xd4\x71\x41\x53\x9d\x85\x9e\x5a\x0a\x4c\x3b\x2d\x4c\x4f\xfb\xb8\x9d\x0e\x7c\x5b\xdd\xb4\x5d\xcb\xc2\x42\xb3\x2b\x41\x8a\x52\x7b\xf4\x01\xdd\x74\x0f\xfe\x8b\x4d\x69\x0f\x71\x72\x52\x5e\x5a\xaa\xce\x07\xa8\x4c\xe2\xd4\x78\x43\x7a\x31\xad\xf2\x85\xa9\x8b\x8e\x16\x06\xa0\x26\xcd\xf4\x32\xf1\x9e\x72\x2f\xd9\xdd\xf2\x49\xdb\xec\xb8\x4e\xa4\x3e\xec\x9b\x24\xb4\xd9\x06\x03\x43\x88\x43\x7e\x1d\xf7\xc4\x27\x2a\x5d\xcc\xd3\x90\x82\x88\xa3\x6e\x4e\x28\xbd\xda\x6f\x8e\xfc\xe2\x0b\xc7\x33\xbf\x12\x57\x7b\xaa\x76\x55\x40\xfe\xf4\x2f\xeb\x48\xc4\xe4\x1f\x99\x70\x3f\xa4\x13\x54\x50\x6c\xf9\xc0\x4b\xd0\xaf\x9b\xcc\x3f\x28\xa9\x1e\xfa\x2a\xcd\xb4\x70\xe8\xa1\x43\x2b\x4d\x1b\xc6\x36\x94\xee\x7b\xcc\x07\x28\xaf\xf0\xb1\x82\xac\x37\xd2\xf2\xe9\xc6\x57\x16\xf9\xd2\xff\x5e\xe0\xcb\x77\xef\x60\x63\x94\x18\x8e\x6e\x50\x9a\x0a\x54\xd3\xf3\x1d\xcc\x4c\x44\xeb\x8d\xb1\x0f\xac\x1f\x60\x20\x23\x86\xd9\xa2\x40\x17\xe0\xcb\x2d\x60\xc5\x98\xb3\xcf\x40\x02\x01\xaf\xfd\xcf\xd5\xba\xf4\x6b\x28\xc4\xb2\x62\x13\xcd\x66\xa9\x85\x55\x0b\x19\x37\x78\xd2\xe2\x85\xab\xfa\x64\xa4\x24\x69\xaf\xf9\xa6\xe5\xb4\x28\x5c\x39\xda\x69\x61\x1e\x3a\x24\xc7\x6a\xab\xe8\x66\x25\x93\xe9\x65\xe1\xe7\x48\x91\x4f\x94\x44\x6a\x98\x0e\x06\x65\x12\xe5\xe0\xac\xe3\x8a\x6f\x01\x2f\xe2\x13\xed\xaa\x43\x46\x12\xf9\xd3\xf4\x5d\x78\x6a\x8d\x96\x32\xd5\x63\xcd\x03\xe7\x5d\x7e\x54\xba\x15\x44\x82\x8a\xfd\x56\x03\x9f\x40\x7e\x42\x2b\x35\xfb\x05\x8c\xbc\xc7\xe0\x6d\xd5\x0e\xb8\x35\x52\x18\xec\x7d\xbc\x40\x5c\xdc\x8f\x81\x85\x89\x2d\x4d\xf5\x3c\x11\x1b\x6e\x61\x4d\xc7\x76\xf2\xf7\x03\x4f\x65\xdd\x0c\x14\x2d\xfa\x3e\x5e\xb9\xb8\xc0\xd6\x44\x03\xd5\x12\x65\x92\x4e\x9e\x26\x54\x0f\x76\x16\xef\xce\xf2\xe6\x91\xb2\x8c\x3a\xaf\x19\x01\x34\xfd\xe4\xb9\xe2\xa2\x8e\xd3\xa0\xe4\xe3\x29\x1a\xff\x91\x97\xa8\x70\xca\x6d\xcc\x82\x7a\x7a\xbe\xc1\x64\xb3\x70\xd8\x4f\x1b\xda\xa4\xe5\x6e\xa0\xa8\x5d\x77\xa7\x90\xdc\x85\x85\x66\x5a\x16\x33\xd5\x03\xc2\xae\x88\x67\xed\xc4\x6e\x1c\x1d\x7a\x2b\xf8\x89\xed\x64\xad\x57\xe8\x41\xcc\x2a\x9b\xa7\x3f\x52\x80\xd1\x35\x15\xed\xfd\x11\x7d\x91\x2c\xb6\x2a\x74\x49\xe3\x9c\x43\x17\x8c\xea\xb7\x46\x8a\xdf\xf8\xd6\x54\x19\xf8\xe0\x52\xb3\x5f\x26\x3d\xd9\xa6\x9d\x1f\xb5\x67\x5d\xe9\x76\xf6\xbc\x30\x31\x96\x20\x2c\x6e\x6f\xa9\xb8\xe8\x2d\x95\x72\x7c\xad\x4c\x8b\x2c\x4d\x66\x15\xe5\xe1\x0d\xad\x1c\x2a\x7a\xd9\x8e\x93\xed\xed\xaf\xdf\x98\x68\xbc\x4c\x0a\x33\xa7\x20\x88\x19\xea\x36\x73\x72\x80\xbe\xe9\xe1\x3e\x4d\x70\x91\x06\x54\xb2\x04\x97\x34\xc8\x93\xa6\x52\x83\xd1\x58\x18\x90\x92\x86\xa2\xd9\xdf\x56\xb6\x28\xa6\x67\xa2\x64\x5f\x35\xaa\xb1\x7c\xec\x18\xab\x2a\xd0\x59\x7a\xb5\xc0\x4a\x7e\x44\xd0\x2d\xff\x51\xcb\xbf\x9d\xeb\x81\xc2\x29\xee\x60\x1d\x43\x12\xf0\x21\x2d\x5d\xfc\x1f\x34\x85\x99\x2d\x40\xb3\x4b\x7a\xc3\x1a\xce\x22\x56\x3b\x2a\x0e\xd2\x8e\xcd\x8b\x78\xa3\x41\x53\x14\x6b\x02\x13\x4e\xf9\x44\x33\x49\xfe\x03\x14\x44\xf4\x5b\x48\x0b\xfb\xa4\xd2\xb4\x7e\xa8\x3b\xbb\xce\x10\x7a\x8d\x7c\xf6\x0e\x5e\xa4\xb4\xff\x52\x5e\x24\x4c\x86\xea\x81\x20\xaa\xbf\x84\xd2\x1b\x76\x8c\xb9\x96\x07\xe4\x3e\xd7\xf2\x42\x23\x17\xb9\x34\x04\x9c\xe3\x4f\x69\x61\xe7\xdc\x19\xef\xe8\xae\xa2\xb4\xf6\xcd\x70\xe8\x64\x12\x5e\xf1\xd5\x65\xdf\x44\x7a\x57\x79\xa2\xf6\x4a\x93\x99\xa4\xb0\x16\x86\xf0\xa8\x33\x9c\xc5\x34\xe1\x93\xa9\x1d\x72\xf9\xa5\xc3\xcd\x6e\xb4\x66\x37\x2c\x2b\x2c\x30\x74\xaf\x02\xb2\xb7\x54\x3f\x59\x6c\x8a\xbe\xe5\xa1\x26\xd6\x3c\x0d\xa7\x21\x79\x5e\xd9\x05\xff\xf7\x8a\x68\xf4\xba\x8d\xf2\xd8\x66\x33\x2a\xa7\x47\xc4\xe7\x5c\x27\xab\xe9\xc4\xb2\x8b\x75\x79\x77\x27\x33\x83\x9c\x69\x14\x18\xd5\x37\x30\x49\xb0\x4d\xb0\x45\x04\xc0\xf4\x8b\x53\x45\x74\x89\x3b\x87\x26\x33\x03\x5b\x64\x1c\x0b\xb8\x46\x9a\x25\xe5\xa9\xa8\x3a\xff\x33\xa2\x7d\xcf\x52\xde\x8c\x77\xc7\x72\x23\x12\xa5\x34\x94\x1d\x7a\xc3\x09\x3f\x9f\x0c\x74\x1b\x63\x6e\x4d\x16\xf6\xf7\xd3\xeb\xc3\x83\x99\xa1\x9a\x92\xb2\xbd\x7e\x91\x5f\xe5\x25\x45\x86\xc6\x97\x8b\x29\x5c\x35\x7c\x91\x50\xa1\xbb\x52\xf4\x01\xe9\x6a\xb0\x6c\x82\x17\x8c\x38\x88\x7b\xbd\x30\xcf\xd8\xb5\x5e\x8a\xbb\x6a\xaf\x03\x53\x50\x20\xec\xed\x4f\x7d\x01\xf6\x71\xf1\x8c\xcf\x24\x3f\x0d\x54\x08\x35\x52\x01\xd1\x55\xed\xb6\x94\x46\x49\x6f\xbf\x87\x3d\x1a\x50\xb6\x63\x6f\xb8\x40\x79\x92\x22\x4a\xc7\x34\x42\x2b\x22\xa6\xd1\x75\xcc\x76\x29\x04\x2b\x67\x7e\x46\x37\x79\xb6\xe9\xd5\x10\xde\x42\x40\xc9\x76\xb4\xfc\xb6\xf4\xae\x2a\x80\x7f\x3a\xe9\x52\x57\x33\xcc\xd6\x52\x32\xa7\x77\xe5\x49\x98\xde\x8a\xde\x7d\xcd\x07\xda\x69\x99\x70\xe6\x81\x30\x01\x71\x3b\x1f\x2b\x25\x9b\x38\xca\x59\xef\xa4\x5a\x01\xeb\xa4\x55\xea\xcc\x41\x4c\x94\xb4\xd3\x75\x44\xfb\x52\x00\x6d\x38\xa9\x90\xff\x3d\x50\xe8\xd9\x74\xf7\x02\x39\x82\xa5\x83\x61\x6c\x0b\x09\x08\x18\xca\x51\xe0\xdc\x65\x07\xce\x95\x49\x6c\xf3\x7c\xb7\x6f\x70\x42\xfe\x4b\x8f\xee\xb7\x7e\xb2\xa5\x14\x95\xae\xa3\xe9\xd9\x65\xcc\x8e\x20\x74\x8b\x8a\x49\x02\xb0\xd2\xfa\x2d\xc3\xdc\x89\x63\x5a\x93\xb5\x37\xf6\x28\x1a\x9a\x30\x3e\xb0\xb6\x62\x0e\xa0\xc5\xf9\xa9\x96\xdf\xc4\x66\xc6\xd5\x1e\x24\xae\x2c\x9e\x16\xba\x87\x26\x93\x64\xd3\x8a\x50\x7b\x52\x0d\xc9\xc4\x0c\x6c\x3e\xeb\x00\xfc\xff\x98\x3c\x44\x96\xb6\xce\x2b\x46\x32\x47\x71\xd2\xb7\xa8\x62\xb0\x7e\x34\x24\x94\x7d\x97\x2f\x17\x9d\xa7\x8b\x74\xdc\x5f\xc5\xe3\x1f\x79\xd9\xfe\xf3\xb4\xd7\x39\x4a\x84\xcb\x07\x2f\xd6\xe9\xab\x85\x66\x58\x45\xc5\x4c\xac\x61\x67\x65\xec\x39\x62\xb3\xec\x84\xbc\x62\x6b\x32\xa9\xac\xb0\xa4\x9a\x96\x76\xfe\x31\x8d\x40\x09\x32\xfd\x8d\x0c\x6c\x9c\x76\x80\xb2\x39\x6b\x1d\xd0\x38\x9d\x74\x7e\x75\x23\xac\x8a\xe3\x52\xce\xb0\x1f\x85\xab\x36\xc9\xb5\xe4\xfe\x2d\xad\x9b\xae\x6a\x62\xa7\xea\xf4\x12\x06\x51\x52\x16\xa0\xf2\x01\x07\xfa\x63\xfa\x34\x82\x83\xf3\x81\xdf\x99\xaf\xe8\xd8\x24\xea\xd8\x9c\xf0\x1a\xd7\x74\x50\xad\x5b\x8e\xa3\xae\x48\x61\xaa\xee\xf5\xf7\x68\xc4\x4a\x67\xc2\x7e\xed\xbd\xb8\x31\x47\x6b\x0a\xe6\x3e\x42\x0f\x20\x0c\x8f\x83\x09\x23\x68\x17\xb6\xdc\x98\x30\x85\xde\xae\x4d\x79\xe8\x50\x33\x02\x6a\xb7\x66\x13\x9b\x63\xbf\x95\xb2\x88\xa7\xde\x5f\x75\xb9\x6b\x98\x26\x5d\x9b\x59\xa9\x67\x61\x28\x9c\x54\xd0\xc0\x49\xdd\x9f\x61\x5e\x55\xfd\x19\x22\x39\x49\x2f\x5c\x30\x1c\x79\x3d\xe2\x0b\x0a\x06\x8f\x00\xee\x9e\xab\x79\x5f\xa5\x49\x5c\x59\xc6\x42\x72\x57\xed\x52\xab\x69\x91\xb6\xcb\xd5\x88\x93\x01\xec\xeb\x3f\x44\x92\xc3\x27\xd3\xcd\x49\x8b\x47\x9a\x71\x6a\xb8\x22\xe4\x92\x51\x4f\xd2\xac\xe3\x65\x86\x69\x52\xa5\x9f\x33\x13\xc5\xa1\x6a\x77\xd0\xed\x39\x98\xfc\x77\xa7\x70\x55\xf2\x0f\xcf\x4c\x6f\xe0\xa4\xf4\x80\x4d\x9d\x51\x54\xef\x33\x4a\x71\x38\x4c\xcb\xa1\xd5\x7e\xb8\x0f\x28\xa0\xe3\x63\x55\x2f\x31\x1d\x6a\x9e\x86\x2f\x5b\xb5\x3d\x81\x3f\x79\x8b\xb6\x5a\x3e\x9e\x48\x44\x06\x43\xf3\x35\xa8\x18\xb0\x10\x07\x38\x98\xa2\xca\xf1\xac\x7f\xe7\x70\x2a\x70\x90\x05\xb6\x34\x10\x60\xf8\xb8\xb5\x1d\x41\x5a\x99\x6f\x76\x4d\xc8\xa8\x1a\x02\x83\x6f\xa9\x0e\x94\x6f\x29\xb1\xc0\x32\xb7\x9f\x9b\x60\xa0\x2b\x8b\x0e\x2e\x86\xc9\x63\xd1\xf0\x2d\x5d\x39\x00\xa3\x47\xd8\x8f\xb9\xf0\xa0\xba\x5b\x2f\x60\x8e\xe1\x64\x66\x42\xc9\xdf\xcb\x3b\x5c\x19\x79\xa6\xfa\x55\xaa\x5a\x4c\x98\x1e\x62\x17\x04\xbb\x44\xc4\x03\x6b\x20\x60\x33\x1c\x66\xe9\x30\x8b\xc4\xa7\x16\x2b\xd0\x65\x65\x2f\x39\xad\xc3\xb2\xb0\xd0\xec\xd8\x24\x92\x76\x77\xe4\x69\x7f\x32\x21\xf5\x40\xb7\x8f\x97\x7d\x72\x7b\x87\xe9\xa1\x43\xcd\xe7\x9e\xa3\x92\xa2\x18\x00\xf9\x14\xf9\x7d\x9a\xf8\x4e\xc3\xd8\x45\x5b\x97\xa6\xe2\xd2\xa3\xf3\xcb\xcd\x38\xcd\x8b\x19\xa5\xcf\x03\x31\x56\xd5\xd7\x2b\xd5\xf5\x6f\x3b\x12\x55\xdb\xae\x47\x45\xd8\xb7\x1d\x8a\xac\x14\x1f\x5a\x24\x4b\xb7\x94\x68\xc7\x35\xcf\xd3\x4c\x8b\x7e\x1e\xf6\xa3\xb8\xc3\x32\xda\x2c\x6f\xa8\xaa\x5c\xc7\x75\x44\xb4\x9f\x0b\x99\x34\xdd\xff\xe5\x17\x5a\x3a\xf1\xef\x74\xf2\x39\x7a\xf1\xa2\xd0\xe4\x3d\xcf\x61\x18\x09\xc0\x15\xb6\x55\xa8\xaa\xef\xa0\x8d\x56\x5a\xde\x7d\x06\xd6\x4f\x3b\xda\x11\x16\x08\xb4\x20\xaf\x3a\x43\x2d\x93\x0e\x75\x03\x01\xb6\x97\xfe\x71\x17\x2c\x54\xd3\x03\x0c\xaa\x07\x8a\x20\xf7\xa9\xe6\x12\xdf\x51\xde\x71\x0d\x1d\x90\xdc\xae\x1b\x56\xd1\x60\x10\xf5\x14\x65\x16\x51\x1c\xd3\x49\xf8\xa4\xae\xf2\xb3\x66\x8b\xb4\x7a\x37\x47\x25\x0c\x79\x07\x7b\x8f\xc4\x74\xf4\x4e\xb9\x09\x7e\xaa\x21\xe3\xe0\x52\x33\x4a\x3a\x91\x49\xcc\x30\x8d\x23\xc9\x58\x26\xda\xd2\xa5\xbe\x4d\xd7\x81\x5c\xe8\xa6\xa2\xf6\x67\x69\xb8\x9a\x13\xc6\x82\x1b\x05\x56\x08\x90\xe0\x01\xc5\x57\x08\xfe\xbe\x3b\x81\xe4\xd8\xd7\x45\xa5\x13\x5b\xe4\x25\xcd\x9a\xb9\x54\x67\x44\x89\xd2\x29\x6f\x47\x80\x9e\x36\x55\x0b\xf5\xe6\xd4\x68\x3f\xf2\x52\xb3\x1d\xa7\xe1\x2a\x3d\x19\x60\x6a\xa8\xf4\x68\x4a\x8f\x78\x2c\x6d\xcf\x32\x9d\xce\x8a\x89\xe3\xb9\x6a\xcb\xd7\xba\xde\x08\xba\xc0\x3b\xe5\xf1\x10\xa8\x81\xfc\x58\x31\x6e\x67\x5a\xd3\x14\xa8\x17\x9b\x3d\x13\xaf\x99\x84\xac\xff\x8f\x4a\x02\x85\x02\x22\x1f\xbb\xf0\xb3\x13\x0d\x87\xcc\x73\x54\xda\xbd\x8b\x0e\x6a\x7e\x4a\x01\x3d\xb6\x6d\x43\x90\x31\xb1\x07\x9c\x1c\xa9\xd6\xc1\x93\x4a\x22\x00\x1c\x04\xaf\x6d\xe5\xbc\x1f\x07\xc3\x34\x43\x9b\x68\x35\x88\x85\xc2\x44\x7b\x85\x90\x9b\xfc\xb6\xb2\x1a\x75\x12\x33\xa4\x3b\x40\x3c\x04\xdf\x4e\x3e\x0e\x9e\xe0\xfb\x6e\x2e\x1e\xf9\x8f\xaa\xd1\x21\xda\x71\x5e\xc7\xb3\x31\xae\x1e\xac\xab\xff\x2d\x2c\x38\x35\x31\xca\x60\x11\xe7\xb2\xa2\x03\x53\x9d\xe8\x91\xe3\xc9\x3e\xd1\xf2\x5c\xbd\x07\x0c\x62\x81\x07\x70\x0f\x1b\x06\x30\xb3\x4f\x01\x44\x63\xfc\xdf\x19\x35\xbe\xf4\xab\x8e\x39\x40\xf7\x85\xc1\xb9\x73\x4c\x08\x09\x50\xab\x4d\x7a\x7f\xf8\xe6\xfd\x63\x15\x46\xde\x40\xaf\x3d\x7e\xe5\x0e\xa4\xd9\x99\xf7\x1a\x78\xc7\x8b\xeb\xfa\x0d\xdd\xc4\x5c\x44\xce\x7a\x32\xf0\xdb\xc5\x26\xc1\xb3\x22\x35\xa5\x2c\xc0\x09\x2a\x91\x3a\x8a\x6a\x88\xdf\xd5\xa2\x24\x06\xab\xd1\x59\x2c\xbf\xe2\x9e\x43\x4b\x23\x4a\xe8\x3b\x5a\xd3\x22\x33\xaf\xa6\x51\x32\xab\xdb\x49\xe8\x06\x71\x4f\x3b\x50\x97\x47\xb1\xfa\x83\x91\x8f\x20\x2e\xaa\x32\xe6\xab\x51\xaf\x17\x3b\x50\x47\x9c\xb6\xe9\xc9\x88\x05\x77\xcd\x8c\xed\x98\x8d\x22\x1a\x60\x8f\xc4\x1b\x87\x4e\x2d\x1f\xab\x35\xb9\x13\xf5\xc8\x3f\xb3\x4e\x86\xfc\x80\x6e\x12\xc8\x4a\xae\x6d\x21\x71\x06\x0d\x95\x8f\xa7\x4a\x5b\x47\x5e\x6a\x76\xad\x8d\x1b\x9e\x2c\xca\x00\x84\x94\xab\xeb\x28\x91\xe8\x04\x52\x9f\x39\x85\xd1\xc4\x27\x8e\x85\xde\x49\xd3\x41\x43\x3d\x81\x4b\x23\x9d\x85\x2b\x47\x94\xd8\xe4\x55\xf8\x47\x7f\x2a\xea\x38\x0d\xaf\x94\x33\xb5\xd4\x1d\x79\xa9\xd9\x89\xf2\x61\x9a\x63\x71\x00\xc1\xe6\x84\x72\x99\x39\xa1\x42\xc6\xd4\x96\x5d\x26\x60\x8b\x40\x80\xe7\x2d\x7f\xa2\x0c\x99\x76\xb4\x26\x88\x73\x35\x1e\x15\x59\xda\xe1\x18\x0e\x39\xe3\x3d\x0c\x63\x3e\xf1\xda\x84\xfd\x28\x8e\x67\x68\xc0\x69\xed\x72\x59\xe3\x69\xc0\xa2\x48\xb2\x59\x93\xe0\x2f\x53\x29\x35\xea\xf5\xc9\x90\x7e\x65\x9e\x7b\x51\x7e\x84\xb9\x08\x7a\xc3\x31\x25\xec\xfc\x67\x53\x05\xb8\x83\x4b\xcd\x61\x16\x25\xbe\x99\x9d\xdd\x67\x95\xa7\xd3\x3f\x72\x5c\xf9\x32\x89\x8a\x7e\x4a\x42\xe0\x48\x07\xc1\x4b\x86\x32\x08\x7e\x8d\xdb\x74\x91\xb4\x5f\x1d\xe9\x1c\x23\x5f\x4d\x0b\xc3\x9e\x47\x0e\x0e\x76\xa8\xd9\xbb\x9e\x64\xde\x2e\xe3\x38\xb2\xec\x83\x26\x4a\xc8\x0d\x67\xca\x7a\x79\x52\x69\x3c\xca\x67\x68\x44\x89\x62\x76\xc3\x75\xf8\xbf\x3b\x29\x03\xed\xb3\xcb\x7e\xd4\x4e\x01\x76\x22\x0a\xbe\xac\x7b\xaa\x2f\xd7\x0d\xfc\x61\x6c\x50\x7a\xc0\xfa\x74\x52\xf5\xfa\x9f\xac\xf3\x73\x37\x65\x91\x0e\xd2\x76\xe4\x04\x82\x45\xc1\x4c\xcb\x99\xa9\x5d\x9f\x08\x0a\xbb\x15\x3c\x0a\x3a\xd8\x84\x4b\x86\x00\xf3\x74\x53\x28\xc7\x72\xdc\xe4\x38\x0d\x2e\x6c\x3c\xa7\x08\xb6\xb3\x2d\xbf\x32\x94\xe1\x06\x32\x22\xe8\x15\x01\xdf\xe2\x63\x97\x53\x76\x63\x33\x88\x92\x9e\xd4\x86\xf0\x92\xcf\x6b\xe5\x9e\xf3\x8e\x23\x39\x21\x51\x0b\xd9\x42\x91\x85\xf1\x18\x01\xe2\x04\xd1\xc0\x9f\x2e\x4b\x1f\xae\x76\xdb\xbc\x8a\xd4\x66\x95\xae\x6b\x03\x8c\x25\xb1\x36\xf1\xa5\x3c\x26\x1e\x22\xdd\x9a\x06\x2e\x8f\xce\x2f\x72\xb3\xb4\x43\x37\xbf\xa7\x1c\x84\x1e\x28\x9d\xe7\x99\x96\x2e\xe6\x4f\xbd\xc8\x2a\xb6\xf0\x1e\xb8\x33\xda\x0e\x88\xb5\xd3\x05\x2c\x57\xbd\xe9\xd3\x48\xde\xca\xbc\x80\x36\x80\x77\xb0\x39\x70\x97\x26\x9f\x4c\xb4\xbd\x66\xf1\xc6\xb3\xd5\x05\xe3\xff\x9e\x1d\x57\xdb\xe4\xd6\xfb\x5a\xa3\xe2\x1c\x65\x5b\x0c\x0f\xa3\xf2\x82\xb8\xb2\x41\xa9\x1a\xb6\x9c\x47\x04\x6d\x80\xe9\xfb\x21\x72\x43\xec\xc2\xe8\x80\xc5\x7f\xec\x41\xbb\x03\x5e\xce\xd3\x2d\x85\x85\xef\x25\x1b\x11\xf6\x75\x0b\x54\xf3\x0c\x54\x5a\xf0\x34\xff\x9c\xe3\x78\x54\x87\x4e\xea\x7e\xe1\x53\x04\xb7\x6e\xbd\x8f\x05\xdf\x79\xcb\xbb\xce\x8c\xcd\xba\x76\xf3\xbc\x5a\xcc\xe0\x23\xa1\xd7\xa3\x8f\xd4\x7a\xf4\xd1\xa4\xcd\x4b\x39\xd0\xaa\x1a\x81\x87\x06\x2f\xd6\x01\xb6\x69\xb7\x6b\x33\x8c\x32\x6c\xd8\xe7\x47\xca\xff\xe9\x8a\x2a\xc3\xcc\xb5\x34\x43\x54\xb7\xfe\xf5\x7a\x92\x77\x6a\x92\x93\x78\x4e\x56\x9f\x42\xe2\xf0\x71\xcd\xd0\x5c\x6e\xe6\xa6\x8b\x3d\x9c\x5b\x40\x69\x68\x4a\x3b\xe8\x7e\x25\x9d\x95\x0e\x1b\x9e\xc4\x0f\xc1\x66\x3e\x56\x8c\xf9\xbc\x28\x3b\x36\x29\xf2\xbd\xf4\xe2\x10\x70\x3d\xa0\x6d\x1c\x2f\x61\x67\x4b\xb5\x6d\xdc\x54\x9e\x13\x1f\x8c\x3c\x05\xe2\x2f\x10\xf1\xa0\xcf\xf8\x92\x92\x80\xdd\x3b\xa1\xf4\x4e\x7b\x21\x46\xbc\xdf\xb8\xf3\xd4\xa0\xcd\x4f\x1a\x23\xe8\x13\x52\xea\xaa\x3e\x81\x29\x78\xa0\xe5\x5d\x4a\x68\x6d\xd8\x9a\x1d\x2b\x8b\x87\xab\x81\x2f\x7a\xd9\xa4\x88\x8a\x58\x0c\xc3\x84\xf9\xea\xc3\x94\xcb\xea\x31\xbd\x6a\x36\x4c\xc3\xb7\x85\xfe\xae\x46\x1e\x7e\xb7\x26\x63\x5f\x6a\xb6\x4d\xb8\x4a\x2a\x4e\x5c\xe4\xa7\x1c\x97\xad\x7e\x94\x29\x03\x78\x2b\x82\xcd\x3d\xe9\x28\x28\x79\x04\x51\x2c\x6c\x37\x77\x26\x52\x75\x9a\x49\xc0\x52\x3e\x52\xe1\xd8\x2f\x1f\x39\xcc\x7a\x40\x40\x63\xae\xe3\x19\xe1\xf7\x1f\xa8\x9d\x8d\x05\xc7\x31\x16\xff\xed\x94\x21\x8e\x24\x51\xdd\xd8\xbe\x16\xb5\x59\x75\x5c\xf6\x47\xfa\xa4\xdf\x20\xbd\xef\x69\x19\x83\x71\xcb\x6d\x8a\xb4\x26\x88\x28\x7c\xc3\x89\x18\x5d\x50\xc4\x37\x8c\x61\xf9\xf7\x69\xad\xca\xe5\xe6\xd0\x14\xb2\x3f\x83\xa7\x8a\xc6\x26\x3e\x56\x85\xe9\x41\x99\x74\x52\x7a\x8d\x18\x05\x0f\xa8\x94\xc5\xc7\xaa\xe8\xbb\x6e\x29\x88\x41\xfb\x35\x92\x8b\x37\x03\xdf\x8d\xf6\xa6\x77\x31\x2a\x93\x55\x67\xc5\x29\xe6\x8e\x74\xef\xe2\xfa\x58\xcb\x11\x0b\x53\x13\xf6\x59\xbb\xc1\xb1\x8d\xbd\xa4\xeb\x65\x17\xe2\x74\xa2\xcc\x86\x05\x89\x99\xd3\x1f\x63\x5d\x63\xb4\x81\x4f\xc6\x02\xc5\xaf\xf7\xa3\x22\x66\x6f\x70\x45\xae\x5b\x76\x90\xed\x94\xb0\x59\xf3\x2b\x8b\x7f\x6d\xe7\x17\x39\xb8\x04\xb9\x05\x91\xd9\xe7\x61\x55\x82\x94\x07\x79\x83\x33\xb3\xae\x92\x24\x96\xb5\x01\x1c\xe2\x88\x27\xd5\x1a\xe4\x7c\x95\xaa\xc1\x87\x85\x9f\x1d\x0b\xf0\x2b\x77\x08\xa4\xc3\xc8\xd8\xa4\xc1\x8e\xb5\xfe\xae\xce\xb1\x3f\xa1\x7c\x11\x90\xec\x99\x00\x4c\x5f\x3c\x9a\xe1\x48\x01\xbc\xd7\x54\x87\x26\x2a\x5d\x28\xc9\xdf\x82\xa6\x13\x0b\x72\x71\xf6\xc8\x76\x5f\xd8\x12\x90\x7e\xfc\x79\xe0\x41\x75\x4e\xa7\x19\xa1\x43\x8e\x2a\xcc\x60\x4a\x05\x01\x22\x41\x6c\x00\xb8\xe2\xff\x31\x6a\x1c\x79\xc9\x35\x1a\xaa\xe8\xa9\x93\x0e\x8b\x3d\x8a\x4d\xc1\x7d\xdb\xce\x2b\xe3\x2b\x8b\x2e\x63\xf1\xc6\x79\x77\x95\x54\xfc\xef\x63\x0f\x95\xe6\x56\xba\x1b\xcd\xc2\x15\x07\x72\x3f\x62\x39\xf0\xd9\x40\xab\x22\xeb\x45\x07\xba\xa6\x5d\xbd\x43\x0c\x84\x77\x46\xaa\x1f\xf9\xac\x12\x6e\xb9\x06\x30\xc0\xb9\x54\x54\xb9\xaa\x12\x66\x59\xf2\xde\xce\x6e\x76\x5d\xa4\x44\xd7\x15\x86\x9d\x86\x2f\xb3\xe7\x51\xd4\x60\x31\x57\xc4\x51\xd7\x03\x25\x6c\xb4\x93\x7d\x6c\x24\x7e\x74\x26\x0b\x51\x87\x1a\x3c\x68\x6d\x73\x5c\x19\x6f\xa3\xab\x9b\x6e\x1b\xad\x7d\xde\xb6\xae\x44\x7c\x2b\xdc\x56\xba\x05\x29\xc7\x29\xe9\xf9\x32\xe9\x70\xaa\xc9\x0a\x82\x34\x7a\x44\x4d\x50\xdb\x4d\xb7\x4d\x96\x99\x9c\xc3\x66\xe1\x65\xd2\xf3\x13\xc2\xe6\xc4\xf6\x1f\x0d\xf7\xfa\xb6\x4c\x34\x4e\x38\x2e\xf0\xca\xbc\xcb\xfc\x1b\xce\x28\x86\xdb\x34\xd8\x10\x6e\xa4\xc0\x70\x06\x0b\x30\x0b\x7e\x84\x11\x81\xdf\x3c\x0f\xd4\x84\xff\xc7\xed\x7d\xa6\x23\x89\x10\xe0\xac\x99\x96\x2f\xbc\x5c\xd3\x72\x8c\x77\xa7\xd6\xf2\xe7\x9b\x26\xca\x5c\x81\xc0\x66\x33\xea\x3a\x1e\x28\x73\x80\xcb\x14\xe8\x01\x3d\x9f\x26\x97\x81\xd1\x99\x45\x79\x31\x30\xb9\xda\x0e\x38\x58\xe7\x13\xad\xe8\xf7\x5f\xfe\x67\x3a\xcb\x7e\x8f\xbe\x9d\x8f\xa7\xc0\xcc\x85\x85\x66\xd1\x4f\xb3\xb4\xec\xf5\xdb\x99\x84\x3c\x48\xad\xf0\x40\x11\x62\xec\x98\xd4\x24\x77\x69\x5c\x62\xb3\x9e\x2d\xa2\x90\x86\x94\xb3\x82\xf5\x92\xa8\xf0\x71\x11\x15\x04\x1f\xd2\xf4\x6c\x96\x17\x89\xcd\x68\xb4\xe0\x35\xf1\xb2\xca\x27\xde\x45\xde\x9a\x55\x9b\xe0\xba\x9c\x01\xf7\xd1\x79\x57\x68\x55\x52\x52\xe7\xeb\x7c\x07\x92\x32\xcb\xed\x0c\x0d\x07\x5e\x06\x46\x7e\xf8\x7f\x42\xa5\x49\x4c\xa1\x0f\x54\xc4\x11\xe6\xdd\x36\x5d\x9a\x48\xe9\xd2\xa5\xf1\x49\x9d\x66\x61\x9f\xb8\x7f\x03\xee\x55\x74\x59\xbe\xb3\xa6\xb8\xa4\xe8\x35\x70\x69\xda\x5b\x4d\x71\x94\x34\xcf\xa8\x3d\xe2\x84\x96\x68\xd3\xc5\xe1\xab\xe8\x2c\xe1\x4f\x4c\x0a\x5e\x1c\x5c\xe2\xe5\xe5\x8d\x91\xaf\xee\xd0\x2b\x7b\x65\xeb\x5e\xdd\x43\x81\xec\x76\xf5\x4b\x02\x5c\x29\xb5\x95\x8b\x0e\xb8\xc8\x6d\x2c\xd4\x6f\xdc\xfb\xbf\xd3\x0f\xe2\xdf\xb9\xc2\xe7\xba\x89\xe3\xa1\x19\xca\x08\x77\xb6\x19\xae\x51\xf7\x36\x45\x1b\xa2\x4a\x30\x1d\x6d\x2c\x36\x87\x59\xda\x8d\x8a\x86\xea\x8b\x07\xa4\xc5\xc7\xae\x32\xde\x35\x89\x2b\x0d\x8a\xb0\x40\xc3\x8b\x0c\xd4\x74\xcf\x2e\x3b\x82\x04\x93\x38\x9c\x26\x47\x35\xa2\x45\x93\xc3\x43\x66\xa1\xc9\x3a\x91\x09\x09\x02\x67\xf9\x19\x25\x29\xb2\xa5\xd8\x22\xd3\xcd\x94\x0b\x0b\xd5\x8d\xbc\x6a\xc3\x42\xf2\x40\xd1\x8a\x51\x25\xac\x63\x13\x8e\xa9\x65\x5e\x3c\x81\xe5\x5a\x78\xbc\x1e\xef\x9b\x41\x76\x0c\x84\xe0\xdb\x1a\x16\xbd\x41\x3b\x04\x1e\xce\x0d\xda\xef\xa4\x2a\x57\x4d\x76\x21\xa2\x7b\xe8\xf4\x59\xa2\xde\xb0\x06\x8d\x86\x4c\x0e\xb4\xb6\x27\x68\x5f\xfd\x6a\x33\xec\x9b\x38\xb6\x49\xcf\x69\xc6\x08\x01\xbc\xe1\xa4\x58\x1f\x28\x3b\x9b\xeb\x4a\x54\x29\x4a\xf2\x32\x8e\x92\x59\x5f\x0f\x84\x20\xbf\x9c\x60\xd3\xc2\x3e\xf5\x63\x1a\xb9\x7c\x5c\x27\xc2\xd6\xcb\xa2\xa1\x54\xd3\x71\x09\x57\x54\xd3\xac\xb7\xb9\x0f\x4d\x36\x10\xef\x68\xf0\x86\x38\x5b\xe7\x13\xb5\x38\xa6\xa6\x78\xa2\x8a\x8f\xa4\x5b\x5b\x09\xb3\x9c\xd0\x35\xa0\xab\xa4\xb6\x81\x54\x06\x13\x19\x11\xcd\xdc\x58\x59\x09\xbc\x49\x13\x97\xa9\x70\x34\x25\xb1\xfd\xbf\x49\x57\x29\xd2\xad\xb4\xf6\x48\x6b\x6f\x4d\x1f\x6d\x5e\x98\x4e\x54\x0e\xf8\x3e\xa5\xcd\x4c\xf7\x9f\xf9\xc1\xd9\xb1\xdd\x28\x11\x71\x59\xa4\xd8\xf0\x3e\xe5\x63\x65\x26\x96\xff\x02\x54\xcf\xc4\x31\xb7\x7a\xd6\x22\x6f\xf2\x8c\xd2\xf8\x49\x8a\xb4\x6d\x92\x55\x65\x76\xf1\x50\x8b\xde\x3e\x54\x68\x72\x62\xb3\xb5\xb4\x64\x78\x8f\xf3\x50\xba\x50\xc9\x49\x6b\xc5\x3d\x07\x65\x6e\x4b\x06\x7e\x9d\xcd\xe4\xd2\x92\x1c\xd7\xf8\x54\xf6\xcc\xa0\xed\xed\xc3\xc0\x65\x00\x9f\x83\x8f\xdd\xee\xd0\x8b\x4c\x52\x88\xa4\x3f\xad\x7b\x9b\x2c\x0c\xc3\xbc\xd8\xf1\xc4\x72\xea\xcd\x8d\xb6\x54\x0b\x5b\x1e\xf6\x2d\x63\xee\xe0\x6a\x23\x11\xe5\xe3\x29\xe0\xf7\xc8\x4b\xcd\x7e\x94\xd9\x09\x6f\x33\x1a\x08\xe2\x73\xe6\x45\x37\x3a\x76\x98\xe6\x8e\x61\x8f\xad\xfa\x81\x6a\xc5\x7b\xe0\x72\x92\x28\x59\xb3\x79\xf1\xdf\xfe\x8d\xc4\x16\xc0\xa0\xb6\x36\x27\x32\x37\xba\x74\xa0\x39\x8f\xd4\x70\x3e\x98\x24\x9c\x27\x21\x6e\xf9\x40\xf7\xe1\x7e\x30\xf5\x68\x97\x5f\x3a\x0c\x6f\x2a\x24\x3e\x88\xe1\x38\xf1\xe1\x93\xb1\x9f\xcb\x85\xa5\x26\x28\xc2\x44\x45\x82\xac\xe1\x6d\x50\x82\x9f\xd2\xaa\xac\xdc\xac\x1c\x25\xbd\x78\x83\x5a\xea\xf0\x9c\xcf\x23\xf8\x72\x3a\x99\x0e\xb8\xba\xa5\x95\x24\xbb\x85\xcd\x0a\xf3\x5a\xc3\x87\xe1\xdc\x64\x21\x2e\xdd\xea\x65\xa5\x11\x89\x13\x69\xad\x41\x0f\x7e\x5f\x51\x0e\x0a\x03\x62\xcd\xd8\x3d\x8a\x37\x75\x2b\x50\xf6\x4d\x68\x8a\x60\x65\x69\xb2\xd6\xe5\x7f\x1f\x29\xad\x93\x1d\xc0\x56\x58\xd8\x77\x34\x51\x64\xf6\x3d\xdb\x0f\x94\x43\x4e\x27\xad\xb2\xf6\x95\x65\x2e\x3d\x9c\xa1\x89\xc7\xc7\x4a\x1d\x27\x2b\x93\x7d\x0d\x27\xc9\x79\x69\xa4\xfc\xe7\x3e\xa6\xc5\xdd\xf5\x18\x57\xcf\x41\xf0\x0a\xba\x17\xb1\x8a\xf2\xa5\x8a\xb3\x5a\xf8\xff\x22\x6e\x12\xeb\xd8\x03\xfa\x79\x04\x21\x9f\xe2\xc6\x04\xb8\xa2\x1b\xe3\xae\xab\x5a\x22\x4f\x59\xb4\x4d\xb8\xda\x50\xa0\xe2\x64\x1b\xf9\x93\xca\x75\xea\xb3\xe1\xae\x9a\x2a\x17\x53\x84\xf0\xcd\x75\xd2\xb4\x75\x98\x4e\x39\x84\x45\xa0\x78\x9f\x5f\x53\xb1\xff\x49\xa5\x55\x7e\x93\xd0\x0f\xc0\xaa\xda\x49\x1e\xd7\x2e\x8d\xe3\xde\x62\x72\x3d\x4d\x76\xab\x88\xf5\xe6\xc8\x57\x5e\xb7\x94\xa8\x2d\x08\x57\xdc\x78\x13\x28\xab\x42\xec\x0e\xce\x73\xfd\xa0\xb3\xe6\x53\x19\x4f\x94\x54\x31\x01\xcd\xa5\x85\x05\x0e\xaf\xaf\xd2\x5b\xe6\x63\x85\xe6\x84\xa6\x08\xfb\x33\xca\x1e\xe0\xeb\xca\xf2\x10\xf1\xb4\x38\x1f\xd4\x6c\x26\x03\x93\xf5\xd2\x38\x12\x3d\x59\x8c\x9b\x33\x23\x35\x88\xce\xd4\x2c\xb8\x62\x7a\xa9\xc9\x68\xac\x6b\xcf\x27\x35\x03\x04\x1e\xed\xce\x2f\x56\x68\x95\x9a\x63\x39\xf5\xf2\x57\xe6\x9b\xf6\x35\x13\x16\xcc\x55\x65\xeb\x9c\xc0\xf7\x64\x4c\x57\x18\x0f\x2e\x35\xd3\x35\x9b\x99\x38\x26\x37\x1a\xc9\x5b\x1b\xce\x6c\x1c\x19\x19\x8b\x5d\x78\x45\x80\x72\x38\xcc\x6c\x9e\x73\x11\x08\x40\x1c\x9a\x70\xf8\x78\x6a\xb7\xfa\x45\x52\x83\x48\x07\x69\x86\xb6\x45\x44\x7c\xd0\x7e\x94\xe6\x8c\xea\xbb\x80\xc2\x6f\x69\x89\xd3\x0b\x23\x45\x9f\x27\x1a\x30\x5d\x2c\x27\x29\x00\x3e\xa4\x87\x42\x3b\x0b\x6d\xbf\xd9\x97\x17\x8f\x34\x33\x5b\x98\x28\x86\xee\x1c\x66\x34\x33\xba\x51\x68\xb9\x11\x28\xd7\xcb\xb3\x35\xfe\xc5\xd5\xdb\x4c\xe3\x35\xce\xf3\xa5\xbd\x9a\xde\x2c\xe2\x19\x50\xbc\x05\x45\x39\xe0\x9b\x43\x43\xeb\x65\x02\x81\x3e\x60\x8d\xc4\x8a\xfd\x3d\xe5\x5e\x76\x47\xa9\xd8\xc7\x26\x11\x23\x1c\x31\x6d\x51\xd4\xdf\x53\x13\xa9\x7c\xd4\xeb\xef\xa7\xd5\x89\xb5\x01\x02\x87\xbf\xff\x77\x07\xc6\xaa\x9b\xed\x94\xde\xf0\x7e\x2b\xd0\x6e\xfe\x4c\xa7\x77\x4a\x41\x5e\x7b\xe7\xc2\x48\x69\xdb\xdd\xa5\xe9\xa5\xa9\x5f\x82\xb5\x79\xae\xfb\x09\x3c\x15\x2e\x5a\xd1\x64\x07\xda\xff\x54\xcb\x69\x76\xb1\x1f\x52\x3e\x68\xe8\x9e\x2c\xdd\xab\xe5\xdf\x7c\x94\x67\xc6\xc6\x84\x55\x20\x37\x3b\x11\xe8\x7a\xd2\x05\x02\xe0\xd8\x0a\x3d\xd0\xfa\x96\x8a\xab\xfa\x0e\xd6\x16\x06\x82\x94\x8e\xcb\x1b\x81\x07\x0c\x4f\x68\x05\x90\x77\xa6\x69\xfd\x0b\x28\x46\xd1\x28\x06\xe1\x0a\xe0\xad\x20\x42\xd5\x9d\x4a\xbf\x9f\x67\xc5\x35\xc6\x35\x31\x78\xdb\xc6\x91\xed\x36\x54\xb7\x12\x20\x65\xe9\x9f\xf1\x77\xbf\x1e\xe5\x7d\xcb\xc1\x21\xbb\x86\x2b\xf2\xfb\xa5\x29\xd0\xf6\xe5\x95\xf9\x66\xbf\xcc\xdb\x55\xea\xdc\x50\x5d\x0e\xdc\xf9\x2c\xfa\x37\x4e\x6d\x95\xa2\xb4\x6d\xcd\xf3\x4e\x5d\x09\xe5\x47\x29\x9f\xd6\x28\x66\x17\x26\x5e\xe5\x9f\xe1\x6e\x08\x25\xf3\x7d\x55\x19\x38\x84\x71\xc9\x34\xd1\xa5\x25\x8a\xc2\x0e\x1d\xda\xda\xac\xcb\x4e\xaa\xcd\x71\x92\x67\xa4\x75\x71\xaf\xa9\xe2\x40\x11\x25\x7b\xd4\x7f\x21\x49\x13\xaa\xa5\x12\x67\xbe\xa4\x70\xc8\xef\x23\x22\x10\x65\x50\xc5\xdb\xfe\x21\x0f\x2a\xcc\x80\x7b\xca\x56\xf7\x56\x1d\x33\x02\x26\x8a\x90\xa9\xc5\x57\x63\x15\x74\x7e\x5b\x4a\xde\x50\x53\xd4\x36\xb8\x5d\x17\xb3\x0e\x2c\x72\x3e\x1e\x7b\xf0\xdf\xbe\x56\x64\x66\xd6\x53\xb2\x4e\x05\x9f\xe9\x7b\xe1\xa3\x9d\x53\x75\x89\x73\xbb\xec\xf4\xac\xe7\x28\xb0\x98\xad\xaa\x60\x5d\xaf\x75\x50\x0f\xe3\x34\x77\x1f\x92\x90\xbd\xe1\xda\x2e\x2f\x3b\x1d\xd4\xcc\x9a\x3c\x2f\xb3\x6d\x12\xca\xb7\x95\x46\xd1\x9e\x96\x9f\xd6\x0f\x94\xf5\x5d\x18\x65\x61\x39\xc8\x0b\x03\x6b\xcd\x2a\x9e\x15\x3f\x47\xca\xed\x84\x82\x75\x40\xc9\xc7\x46\xdd\x34\x1b\x20\xc0\x01\xec\xf4\x3e\xa6\x2c\x9f\xd4\xda\x7c\x0f\xcb\xc1\x90\x6f\x65\xd9\xb5\x4a\xd0\xb5\xf2\x49\xf0\xac\x7b\x3f\x89\x5d\xcf\x09\x72\xc9\x1b\x5a\xff\x4d\x35\x8e\x5e\x1e\x3d\xeb\xae\xe7\x55\x9b\x0e\x4d\xd6\x21\xf6\x9c\x23\x09\x7f\xa0\x6b\x2a\x1f\xd4\x88\x02\x35\x4d\xd8\x8f\xec\x9a\x1d\x50\x1d\xc8\x55\xfa\x8f\x2b\x21\xb3\xe3\x6e\x7a\xae\x99\x2c\x92\x00\x42\xd4\x52\xab\xbf\xe3\x63\xc5\xba\x0b\xd3\x2a\x94\x53\xd2\xea\x60\x5a\xf0\xb1\x37\x33\xef\x47\xb1\xe5\x7d\x85\x6b\xb0\x5a\x0a\xf5\xda\xe8\xe7\x3f\xa3\x74\xd6\x89\xd6\x6c\x96\x93\x76\x2f\x60\x43\x87\xc9\x3b\x06\xcb\x25\x8d\x51\xde\x0f\xbe\x30\x59\xc2\xa1\xac\xf5\xe8\x3c\x19\x0c\x8a\xe6\x33\x55\x2b\x90\xb1\xde\x00\x9d\x9d\x4f\x88\x6f\x0e\xce\x02\x14\xde\xb0\xfd\x20\x8c\x54\xe8\xda\x61\x57\x85\xa8\x5e\xd1\xc4\x65\xe0\x86\xe0\x29\xc4\xf6\xa2\x93\x5a\xd7\x13\x56\x8d\xde\xa0\xe4\x6e\x5d\xd4\x6e\xb3\x72\xe8\x22\x39\x67\xc8\x54\x6d\x92\xe2\x6a\xe2\xdd\x01\x8a\x3e\xd9\x06\x75\xcb\xb8\xa1\x88\x7d\x50\xea\x74\x54\x0e\x3f\xd7\x93\xa8\xd7\x2f\x26\xfb\x07\x17\x16\x5d\xff\xa0\xa6\xaa\x76\x6d\x67\xbf\x6e\x3a\x86\x14\x07\x9e\x12\x23\xf0\xc8\x88\xb8\xbd\x94\x3b\x0b\x69\x2d\xc2\xf3\x3b\x83\xe5\x0f\x75\x8f\x71\x30\x49\x86\xfe\xca\xa2\x6b\x00\xf1\xad\xc2\x97\x54\xd6\xc1\x65\x5a\x0c\xa9\x1b\x81\x8a\x9e\x10\xcd\x49\x69\x45\xa1\x7e\x51\x11\xbd\x6e\x13\x3c\x36\xa7\xa5\xea\xf5\xb6\x8f\xb9\x4c\x3d\x4c\x07\xc3\x2c\x1d\x44\xb9\x40\x7c\xea\x27\x7d\x63\xca\xd3\xca\x2f\x69\x10\xc5\x91\x85\x9e\x09\xd6\x6c\x6c\xc6\x02\xdf\xd2\x18\x40\x1e\xe3\x85\xc2\x0b\x3b\xf0\xaf\x51\xab\x2c\x88\xfc\x82\xaf\xbb\x90\x1f\x0a\x77\x35\xe0\xa5\xfd\x33\x0a\x15\xf8\x58\xed\x43\xb1\xb1\x8d\xea\xe1\xc9\x32\xa9\x44\x73\x2f\x07\xaa\x57\xc2\x93\xf5\x67\x69\x5c\x20\x84\xb8\xa7\x9c\xe6\xd8\xe3\x8f\xff\x83\xd0\x0f\xfe\x0f\xcf\x7a\x2b\xb3\xb5\x0d\x95\xd1\x1f\xa7\x8f\x8b\x2c\xaf\x93\x8b\xea\x67\xd1\x90\x0b\x2c\xf8\xbf\x5b\x6a\xc9\x7f\x4c\xf8\xbc\xcc\x5f\xbf\x47\xe7\x36\x31\x45\x9a\xe5\x8a\x49\x7b\x65\x54\x65\xf0\x82\x08\x78\x14\x20\x29\xb3\x6a\x7f\x98\xf5\x93\x7f\x37\x4d\x34\xd6\xae\xd5\xf5\x41\xdd\x60\x7a\x43\xb5\xdc\x76\xac\x89\x6d\x96\xf7\x23\x90\x35\x38\xa2\x9e\x10\x2f\x9a\x54\xf8\xa7\x9d\x02\x1b\x05\xe6\xf6\xa7\xd8\x28\xf8\x64\x82\xdb\x96\x46\xfc\x92\x31\xf3\x1f\x20\xba\xe7\x93\x3a\x57\x75\x93\xe7\x51\xf5\x0b\x98\x89\x78\x7b\x10\x4a\xe0\xe3\x29\xca\x0d\x89\x15\x85\x59\xd4\x6e\xc7\x12\xd7\x30\xdb\x7e\x33\x50\x5a\x6f\x9b\x53\xe0\xf9\xca\x7c\xb3\x4c\x58\x34\x86\xaf\x92\x3b\xe9\x68\x2d\x95\xae\xba\x3a\x94\xa9\xda\x6b\x07\xa0\x63\x72\xba\x8e\x39\x2c\xb9\xbb\x72\xaf\xa4\x5a\xfc\x5e\x85\xd7\x82\x7b\x84\x9a\x37\x32\x78\x44\xc0\xdc\xe5\xaa\x34\x23\x65\x15\xbe\xac\x92\xf3\x99\xb1\x76\x71\xc6\x5a\xc6\xdf\x35\xf6\xb6\x98\x75\xfe\x9c\xcb\x4d\x1b\xf6\x53\xb9\x53\x7c\x06\xe5\x5e\x3e\xd6\x72\x18\xa4\x52\x62\x62\xc9\x7e\x35\x78\x2f\x10\xae\x37\x6d\xaa\x5e\xd6\x67\x10\x0b\x6b\x05\x5c\x4c\x51\x54\x09\x6f\xa3\x5a\x29\xb7\x36\x69\x5c\x6e\x6d\x4e\xc5\x0c\x47\xe7\xb7\x61\xc7\x22\x79\xa0\xeb\xbb\x4f\x78\x6b\xbd\x59\x92\xd2\xe6\x75\x30\x50\xc4\x12\x45\xae\x7d\x7b\xd4\xf8\x95\xc3\xce\x75\xdf\xa3\x5a\xdd\x28\xb3\x0d\x70\x06\x58\x1f\x03\x0d\xf2\x22\x96\x31\xad\xee\xbf\xdc\xec\x97\x5a\x5a\xf5\x22\x05\x83\x7c\xec\xb2\xce\x32\x09\x63\x13\x0d\x64\xab\x16\x47\x48\xdf\x04\xc2\xbe\x2b\xb8\x9d\x53\x0a\xb9\x7e\xb5\xec\x44\x61\xb4\x4d\xfa\x21\xd0\xd2\x0f\x6a\xe5\xeb\xa5\x09\xa5\x65\x82\x66\xe0\xa5\xe9\x8e\x42\x29\x20\x29\xf8\xe2\x07\xa0\x35\x80\xa3\xb0\xb7\xe5\xb3\x1e\xd6\xfe\x16\x1f\x28\x2f\xbd\xb0\x67\xac\xcc\x52\x4f\x29\xb4\x6f\xdd\x64\xb0\xe0\x16\x8a\xb6\x6f\x6d\xdb\xd5\x52\x25\x96\x33\xd8\x45\x34\xa9\x1b\xb9\xed\x8e\x71\x9d\x2e\x2c\x55\x5b\x8c\xdb\x27\x30\x01\xbe\xad\x5a\xa4\xbe\x3d\x85\x5e\x2f\x1e\x69\xda\x0d\x29\xaa\x70\x63\x52\xa0\x9b\x94\x3c\x0f\xbb\x6b\xaa\x99\x99\xcf\x79\x3b\xe9\x1f\x2b\xcd\xae\xb9\x96\xbf\x3a\xb4\x11\x2b\xb0\x42\xee\x67\xc7\x58\x26\x81\x77\x57\xc3\x2a\x7c\x4e\x99\x44\x9d\xab\xb3\x46\xca\x8b\xcc\x26\xbd\xa2\xcf\x97\xea\x14\x61\x5c\x50\x76\x7e\x2a\xcd\x3b\xf2\x52\x33\x2f\xac\x01\x7d\x1d\x55\x50\x70\x10\xf8\xb8\xae\xc5\x8c\xd1\x96\x09\x13\x0f\x57\xed\xbb\xa1\x6c\xde\x7f\x34\x12\x49\x36\x33\x98\xc3\xf8\xc1\xbe\xb1\x53\x8b\xf9\x3e\x22\x26\x8e\x68\xf9\x7a\xb9\x8c\x7f\xf1\x79\x7a\x5c\x42\xbf\x3b\x10\xe9\x47\x1c\xc9\xfb\xf8\x8c\x66\x47\x1f\x57\x99\x64\x46\x7b\xb7\xdc\xc2\xa2\x2a\x54\x23\x95\x24\xbe\x5f\x27\xc3\x34\x08\xa3\xa4\x48\xf3\xfe\x8c\xd6\xdf\x3f\xaf\x58\xb7\x17\x75\xc7\xd2\x7d\x57\xdf\xb5\xaf\x0d\x6d\xe8\x53\x33\xac\xc6\x17\x15\xc1\xf4\xe2\x67\xca\x80\x0d\x4c\xd6\x8b\x12\xbe\x3d\x56\x0f\x0c\x26\xa4\x04\x6b\x06\x68\xb7\x64\xd5\x3f\x54\x8f\xcf\xe0\x03\x7c\x52\x67\x24\xd2\x49\xd7\x13\x92\xc1\x44\xcc\xf3\x01\xc5\x3f\x78\x9d\x6c\x0a\x22\x25\xc3\xea\x3d\xa3\xa0\xfe\x26\xc5\xa4\xc8\xff\xf7\x2a\x0f\x82\x7b\x53\x4b\xf2\xd1\xf9\x57\x9a\x69\x59\x64\xa6\x27\x13\x8d\x4d\x1f\x08\x69\x16\x03\x88\x69\x19\xd6\x45\xa0\x30\xbb\xa6\x9c\x4a\x1d\xfd\xdb\xc5\x1e\xa7\x31\x54\xc4\x76\xdd\xbb\x59\xde\x05\xb1\x47\xd8\xae\x4f\xf9\xca\x3c\x15\x99\xd1\x21\xee\xb4\x5d\x9c\x8e\xda\x7f\xf5\xf9\x96\xcf\xdd\xf7\xd4\xa8\x84\x35\x49\xd6\xd3\x14\x62\x57\x25\x48\x9b\xf2\x6c\xb8\x8c\x95\x57\xd8\x19\x75\x2b\x7c\x28\xda\xb7\x98\x22\x3b\xc9\x60\x86\x8f\x5b\x35\x39\x7e\xbe\x91\x74\x48\x6a\x77\xc6\x97\xac\xb1\x67\x22\x18\x06\x1a\x25\x93\x64\xfb\x08\x5e\x58\x68\xae\x67\x66\x38\x74\x03\x91\x7d\xe5\x95\x8c\xc6\xfd\xa9\x95\x64\x65\xbe\xd9\xb6\x09\x33\x0f\x95\x59\xca\x23\x7a\x13\x7c\x3c\x95\xfc\x1e\x3a\x44\x51\xb0\x0d\x23\xd3\x66\xac\x9a\xc3\xf5\x89\xd0\x7d\xfa\xc7\x0e\x37\x73\x6b\xf2\x34\xb1\x13\x51\xdd\x45\x25\x1d\x72\xb1\x86\x90\xb1\xdc\x6c\x9b\x36\x86\x3c\x02\xa4\x63\x78\xf6\x7c\xe2\xf9\x36\x61\x9a\x54\xa9\x07\xd7\x08\x7d\x4b\xbb\xa3\x97\x22\x58\xe0\x0b\xbc\x1d\xfc\xc4\x64\x03\x74\x5e\x64\xa6\x88\xd6\x50\xac\x91\x0e\x05\xfa\x80\xa0\x41\x2a\x23\xaa\xb2\x6f\x9b\x01\xc3\x50\xda\x44\x87\x9d\x82\xd1\xb4\x39\xfd\x72\x33\xcc\xa2\x01\x6c\x1f\x44\xaa\x54\x29\x76\x7e\x23\x98\x5c\x78\xea\xbe\xa0\x6f\x4d\x27\xc7\xb0\x96\xfd\xd5\xbb\x91\xff\xf5\x1b\x23\x25\xd5\xbd\x63\x4a\x53\xfa\xe0\x52\x33\x33\x51\x9c\xa5\x6c\xf2\xc3\x4e\xe5\x4a\xd2\x44\xab\x31\xc6\x65\xf1\xba\x72\xe0\x3e\xae\xad\x13\x8e\xbb\x3c\xa6\x5d\x16\x61\x9f\xfe\x4c\x1a\x1f\xe9\xcf\xf8\x44\x85\x48\x03\xcb\xd2\x8a\xd8\x7a\x2f\x61\x2e\xf1\x49\x0d\xad\xab\x19\xc6\x55\x2c\xdf\x8d\x64\x0e\x62\x5f\x7d\x88\xcf\x31\xa5\x09\x39\xa8\x98\x91\x6f\xbf\xdf\x97\x17\x8f\x34\xfb\x69\x5e\x44\x50\x49\x7f\x45\x3b\x88\x3a\xfa\x61\x9d\x65\x59\x19\xc5\x80\xfa\xbd\x58\x00\xf7\x99\x88\x7b\x76\xc3\xb5\xf8\x5e\x57\x02\xfc\xeb\x26\x8e\x9f\xa4\x81\x8d\x75\x0b\x96\x43\x80\x8f\x19\xa4\x44\xf0\xf3\x16\x3d\x73\xc4\x31\x3b\xc6\x4a\x93\xe5\x1d\x02\x0d\xa4\x84\x4c\xab\x9e\xb3\x5b\x75\xe2\x62\x37\xb0\xea\xa1\x84\x79\x16\x0f\x04\xcb\xff\x43\xa5\xfe\x79\x0b\xb4\x59\x00\x10\xbf\xad\x72\x30\xb2\xce\x4a\xa2\xa4\x37\xe7\x81\xc9\xbb\x08\xe6\xb0\xde\x03\x0b\x12\x4f\x76\x5f\x10\x78\x4c\x71\x0c\x72\x8a\xe3\xae\x2b\xbb\xda\xfe\x92\x4e\x54\x94\xfc\x7e\x99\x2a\xaf\xfc\xb0\x2f\xea\x02\x35\xb9\x82\xd1\x1f\x62\x9d\x87\xc1\x0a\x1f\xd7\x2e\x6a\x7d\x53\xd8\x35\x9b\xa1\x45\x0c\x03\xfd\x8e\x4a\xe1\x4f\x8c\xb4\xb2\x54\x0d\x9d\x6b\x80\x9d\x69\xc9\x79\xec\xf2\xf2\xc1\x27\x53\x9b\xf3\xa1\x43\x13\xa4\x3f\x65\x8d\x7f\x53\x99\xc1\xdc\x54\x18\x43\x51\x66\xab\x76\x83\x04\xc5\xdd\xb2\x51\xfd\x82\x2c\x1b\x3a\x48\x59\xb3\xd9\x4f\x36\xbe\xf4\xab\x3e\x25\x3a\xb8\xe4\xfb\x11\xbe\xb2\xe8\x74\x98\xb5\xd2\xd3\x2c\xd8\xcc\xc8\xb3\x36\x91\x2d\x63\x1f\xb9\x4d\x01\x15\xcb\x60\x02\x3a\xc2\x40\xfa\x94\x06\x12\x50\x87\x3f\x43\x9a\x07\x74\xe5\x24\xe6\x0c\xe6\xfb\xdd\x40\xc9\xd1\x31\x65\x16\xb5\x61\x08\xfd\x23\x55\xb8\xa9\x54\x99\x6e\x62\xb8\xb1\xc0\xac\x56\xcd\xdc\x41\x4d\x3a\xce\x97\x55\x2b\x79\x6a\x09\xd3\x06\x09\x81\x89\xd6\x72\x15\x22\x20\x3e\x43\xec\x8a\x25\xfb\xc3\x29\x22\x26\xb9\xb9\x90\xd8\xaa\x69\xc7\x56\xd2\x4a\x35\x03\x84\x99\x74\xb6\x26\xd2\x78\xb1\x99\xbe\x9e\x26\x2c\x84\x21\x7c\xc1\x86\x73\xee\xba\x3a\x95\x9e\xbd\xbc\xdc\x1c\x3a\x02\xae\x82\xbb\x9c\x5e\x6e\x8d\xaa\xfc\x2b\xcd\xce\x86\xdb\x7a\x41\x82\xf8\x56\xe0\x09\x11\xdf\x9a\x68\x56\x2f\xe3\xce\x53\x13\x04\x19\x5a\x02\xc0\x00\x7c\x1f\xef\x17\xc1\x09\x2c\xd5\x44\xcf\xa2\xe1\x7a\x24\xa1\xa4\x8c\xa8\xe9\x5d\x5c\x1a\x36\x91\xeb\xaa\x7a\xf5\x50\x99\x05\xfc\x00\xaf\x1d\x64\x39\x70\xdd\xc5\x95\x44\x89\x42\x5f\x03\x8d\x12\x40\xc3\x31\x9a\x58\x00\x7c\x9e\x6d\xd1\x10\x92\x05\xd4\x23\xed\x5e\x70\x6d\xb7\x22\x3f\xde\x53\x97\xf7\x40\x59\xf6\x3f\xd2\x46\x23\x8c\x09\x3a\x7d\x20\x07\x3b\x9d\xa6\xd9\x2d\xda\x6d\x3a\xcc\x4e\xf2\x68\xcd\xce\xf9\x4a\xe4\x43\xa5\xe3\x84\x81\xc5\x86\xaa\x23\x55\x31\x3b\xa6\x5c\xae\x66\xc7\xde\x36\x75\x68\x4d\x31\xd3\x38\xf2\x92\xeb\x31\xac\xfe\x0c\xeb\x0b\x7b\x0b\x89\xbe\x4f\xdd\x4e\x3c\x8c\x9c\xd1\x09\x76\x88\xbf\xc4\x5c\xe2\x93\x1a\xaa\x65\x73\x98\xa5\xa1\xcd\x7d\x3d\xc6\x89\x8f\x7b\xe0\x30\xa8\x51\x9c\x8c\x6d\x41\x25\x24\x4c\x46\xb6\x28\x91\x24\x6f\x32\xc3\xa9\x1e\xae\x30\x65\xb7\x5f\x34\xe1\xf6\x71\xba\xc6\x45\x42\xcc\xb4\x5b\x6a\x27\xdb\xd5\xf2\xac\x81\x7b\xda\x4a\xad\xac\x96\x43\x38\x7f\xd2\x1b\x13\x21\x45\xfa\x39\x3e\x71\x01\xc1\x5a\xb4\x16\xe9\xb2\xdf\x7b\x8a\x90\xfe\x9e\x22\x72\xc4\xb6\x67\xe2\x7d\xd5\x8a\x27\x81\x1f\x0d\x3d\x6e\x98\xa7\x11\xe0\xd4\x7d\x17\x8f\x78\x76\xb2\xb3\x12\xde\xd1\xaa\x16\x0f\xd1\xd0\x69\x28\x25\x13\xba\x2e\x57\x43\x50\x92\xe7\x78\x43\x18\xdd\x8d\xb1\x6e\xd9\xd2\x30\xfe\xaa\x05\x91\x5c\x6c\x03\x69\x28\x88\xd5\xa0\xdf\xc9\x32\x93\xd9\x78\x83\x34\xb1\x40\xe6\xda\xd9\x9a\xec\x88\x5b\x58\x94\xff\x18\xab\xf4\xe5\x1a\x36\x6f\xf1\x36\x53\x6e\xf5\x97\x95\xae\xcd\xab\x29\x4b\x1f\xe1\xbf\x4e\xe3\x59\xf3\x49\xad\x09\xea\xd0\x66\x36\x2f\xb2\x34\x5a\x85\xc7\xb6\xf4\x1f\x37\xbe\xfc\xb2\x1c\xd7\x15\x44\x7a\x69\xda\x11\x8f\x8e\xad\xcd\x80\x21\x35\xc1\xd9\xa3\x98\x5e\xd3\x9c\x47\x40\xee\x2b\x5e\x11\xfb\x04\x63\xf4\xfd\x3e\x4d\x79\xfc\xd2\xe7\xb4\xfb\xdc\xd5\x3a\x3f\xac\xf5\x34\x9d\x6d\xbc\xbc\xec\xab\x9f\x47\x85\x1d\xfa\x48\x6f\x56\x17\x95\xb2\xe2\xff\x34\xda\xe7\x0d\xd7\xb8\x87\xd7\xb5\xee\x78\x87\x54\xa5\x6a\x54\xa4\x65\x96\x18\x67\x10\xf2\xa2\x53\x12\xf6\xb4\xa7\x5f\x53\xf6\x63\x49\x42\x58\xab\x6c\x2e\x1c\xf7\x05\x4a\x7a\xce\x37\x8b\xb4\x33\x72\x84\xe7\x4e\x79\x21\x0e\xe0\x83\x34\x33\x5b\x4f\xe3\x19\x20\x3f\xbc\xa0\xe5\x9c\x67\x55\x81\xb8\x1f\xc5\x71\x0e\x7f\x2c\x70\x1a\x60\xd6\x25\x61\x71\x75\xa1\x20\xa4\x9d\x19\x29\x4f\xae\x69\x1d\xf9\xa3\xf3\x4d\xd3\xcb\xa2\xb0\x8c\x11\x87\x39\x47\x52\x0d\xe1\x3f\x98\x12\x94\xf2\xa2\x24\xd2\x4c\x27\x16\xb9\x6a\xaf\xbc\xa8\xc4\x07\x4c\x36\x48\x45\x0d\x9c\x5b\x35\x68\x87\x92\xb6\x8d\x03\x2a\xca\xcc\x7a\xf9\x00\x9d\x89\xa0\x04\xa1\x83\x9d\x8f\xeb\xc8\xb0\xcd\x9c\x1c\x8d\x38\x37\x14\x25\x20\xba\x6f\x3e\x71\x41\x67\x1c\xb5\x6d\x66\xe2\xe8\x75\xdb\x41\x11\x06\xeb\xe7\x3f\xa1\x27\xe6\x48\x32\x9e\xae\x75\x73\xa4\xbf\x46\x35\xc2\x93\x9c\xd0\x2e\xd5\x10\xf2\xc9\x48\xe9\x54\xfd\x3a\x5d\xb2\x63\xf7\x2f\xaf\x28\x49\x27\x57\xbd\x85\x70\xad\x30\x15\xfd\x13\x58\x37\xa4\x71\x34\xa7\x3a\xeb\xbf\xae\x4d\xa9\x46\x5a\x83\x45\x4b\x4a\x68\xc6\xd8\xa6\x52\x10\x0a\xd3\x81\xcd\xf7\x7a\xf2\xed\x23\x5a\x25\x95\x18\xe5\x2b\x6e\xb0\xf8\xe0\x7b\xcf\xd8\xdf\xc2\xde\xd6\x84\x3d\x0c\x2d\xb8\x88\x40\xee\x05\x8d\x5f\x91\xd8\xed\x9c\x4e\xe1\x3e\x52\xa2\x6c\x79\xd9\xe9\xd8\x24\xde\xc0\x4e\xef\x98\xd3\x4e\x41\xf0\xae\x56\x06\x62\x41\x11\xec\xe8\xbf\xa1\x5d\xfc\xee\x2a\x41\xb6\x4f\x47\xca\xc3\xf8\xbe\xf3\xf6\x19\x2a\x03\x17\x1a\x41\xd8\xa1\xd0\xdc\xc4\xc7\x53\x25\x8a\xc5\x23\x4d\x6b\xf2\xc2\x66\x8c\xba\xe0\xa7\xb1\xce\xf3\x71\xcb\x2f\xdf\x45\x16\x75\x79\xcc\x43\x2d\xfe\x8a\xb2\x9c\xb9\x52\xdb\x85\x61\xba\x99\x91\x7a\x14\x42\xfb\x9d\x63\x0f\x15\xec\x6c\xf9\xab\x4f\x3b\x25\xd9\x42\x14\x1b\x33\x8a\x9e\x7f\x46\x05\x9d\xf7\x74\x61\x73\xa7\x32\x29\x1f\xda\x2c\x4f\x13\x13\xc7\x1b\xb3\x4a\xdc\x99\xc9\x33\x5c\x23\x9e\x50\xcd\xa4\x67\x2e\x2d\x03\x75\xea\x83\x69\x9a\x44\x56\xb5\x95\xde\x40\x70\xc3\x27\x75\xe9\x8f\x27\x2c\xb3\xeb\x13\x36\x9e\xf3\x81\x6a\xda\xe0\xe8\x0d\xfb\xe2\xf7\x1d\x8f\x24\x1d\x16\xd1\x80\xbc\x86\x76\x29\x57\xde\x8b\x9a\xc7\x73\x0e\x13\x49\x7a\x4b\x14\xd3\x51\xd1\x37\x0f\xb4\x7c\x3d\xf4\xb2\x72\x42\xea\x98\xbc\xdf\xf0\x2d\x98\x98\xa0\xa2\xe1\x3f\x5d\x02\x5a\x6a\xb6\xa3\x38\x76\xac\x16\x2d\x8c\xc4\xba\xb9\x6a\x33\xb8\x53\xf3\xd6\x5f\x21\x5d\x16\x59\x93\xb4\xe0\xa2\x48\x26\xa8\x2e\x67\x03\x23\x4c\xe7\x18\x42\x63\x1b\x01\xfb\x0c\x45\xa7\xd8\xd5\x7e\x00\xc6\xa3\x34\xd6\x79\x0a\xf2\x25\xd5\x64\x3f\xb0\x55\x78\x01\xe8\x03\xdf\xf7\x78\xa4\x32\x7d\x7d\x0f\x97\xd5\x02\xcd\x64\x50\xa8\x73\x23\x76\x67\xc9\x5e\x27\x8b\x71\x50\x58\x61\x27\x47\x2a\xc1\x39\xe7\x1c\x02\xc3\x34\x09\x6d\x96\xe4\xbb\xab\x08\x66\xc2\x1e\x98\x89\x1c\x23\xcf\x17\x7c\x8c\xaf\x90\xd6\x1d\xfa\x21\x14\x07\x7e\x86\x6e\x58\xab\x22\x22\x31\xdd\x3d\x7e\xca\x71\x62\x92\x2a\x7b\xc0\x08\x03\x48\x0b\x39\x26\x2c\xd9\xff\x5a\xb7\x82\xdf\x57\xbc\x8c\xae\xcd\x8a\xa8\x5a\xfa\xb3\x59\xca\x38\x01\x84\xbd\xa1\xd5\x93\xde\x40\x01\xde\xd5\xc8\xaa\x91\x28\xe9\x8e\xf3\x0f\xcb\x8a\xa8\x1b\x85\x51\x35\xd5\xd4\x32\x70\x86\x06\x24\x1f\xd7\x10\xdb\x0e\x37\xa9\x24\x47\x11\x39\xb6\xec\x93\x23\xc5\x49\xfc\x1e\xde\xad\x76\xc4\xc5\xe4\xbf\xaf\x18\xfd\x7d\x93\x15\xdd\x34\xeb\x70\x67\x06\x70\xa0\x5b\x5a\xa5\x86\x46\x98\x28\xd6\xd0\x73\xe0\x3f\xd2\x10\x64\x5a\x45\x67\x76\x97\x96\x9b\x99\x50\xba\xf1\xb1\xd3\x3f\x0e\x26\x70\xca\x2a\xa0\xc6\x07\x2e\x4e\x62\x96\x35\xf0\x4b\x91\xa5\x65\x3b\x96\x0a\xa4\x8e\xf5\x30\x02\x7e\x84\x45\x1f\x99\xe1\x7b\x4a\xc3\x60\x2d\x4a\x63\xd6\x9e\x73\xd4\x0e\x4e\xd5\xc5\xaf\xd8\x1b\x30\x0f\xcb\x76\x1c\x85\x26\x61\x61\x3f\x34\x81\x3f\x85\xd2\x91\x50\x6d\x26\xb2\x71\x45\xe0\xfe\xb9\x2f\xb4\xea\x4c\x00\xcc\xaa\x4b\xb4\xc4\x2a\xb3\x7a\x38\xc2\x8c\xf5\xba\x3c\x3d\x93\x25\x56\x80\x1e\x91\x31\x6f\x38\xa3\xa2\x4b\x6a\x86\x7f\xe9\x2b\x87\x67\x3c\x1c\x04\xe3\x0d\xa7\xdf\xe7\x49\xe4\x9f\x4e\x8d\x9b\xe7\x9b\x6d\x1b\x9a\x32\xb7\xa4\x51\x84\x78\xe2\x36\x4d\x45\x94\x55\xf6\xd2\x6c\x41\x92\xbc\x35\x65\x01\xfa\x8b\x55\x64\xf4\xd9\x0d\x89\xcf\xa8\xf6\x8f\x81\x2d\xfa\x51\xd2\x7b\xaa\xfa\x6a\x80\x2c\x4c\x95\x44\x2e\x7b\x27\x98\x68\xd8\xa0\x57\xc7\xbb\xf2\x48\x01\xab\xff\x7c\xd4\x78\xee\x39\x29\x37\xd3\xb3\x40\x00\xcc\x29\x8e\x28\xa2\x54\xf7\x82\xa5\x04\x2c\x73\x84\xad\xcf\x8e\x29\xb0\x00\x7e\xb8\x17\xed\x33\x18\x2b\xd7\x31\x2d\x71\x72\x05\x70\x15\x5f\x17\x8d\x49\x16\xb1\x54\x59\x62\x66\x4d\x67\x83\xd2\x0f\x26\x67\x8f\x3c\x19\xfe\x26\x06\x13\x16\x25\x98\x7e\x89\x1d\x2f\x46\x87\xf4\x4e\x3c\xab\x3a\x8e\x62\x1b\x16\x54\xb4\x50\x49\x30\xb3\x8d\xf9\xa4\xce\xa0\x66\x68\xc2\x55\xd3\xdb\x46\x8e\xfc\xcb\x91\x4f\x8b\xf8\x5a\x04\x45\xf7\xbd\x0d\x69\xb7\x0b\xd4\xa2\xe1\x71\x54\xb8\x30\xf2\x71\xe0\x13\x90\x2c\x2b\x7b\x30\x2c\x77\xe5\xef\x9b\x81\xd2\x30\xbd\xa9\x04\xd4\xba\x16\x8a\xad\xb4\x78\x8a\x56\x96\x2f\x39\x9f\xa0\xb1\x25\x52\x45\x4e\xbb\x23\x22\xad\x06\xf7\xa6\xb8\xe7\x8b\x4f\xa6\xb0\x87\xe7\x9b\x03\xd3\xb1\xbb\xbc\x2b\xdf\x05\x25\x0e\xc3\x24\x32\x46\x9d\xb4\x0f\x02\xbc\xfe\xa4\x64\xea\x65\x81\xeb\xd8\xf8\x8b\xcd\x35\x53\x54\x13\xbf\x31\xd1\x9e\x5e\x5d\x15\x9f\xa8\xf8\x37\xcd\x7a\xfc\x87\x78\x01\x37\x55\x6f\xeb\xcd\x09\x90\x35\x1a\xd8\x67\x69\x6f\x60\xaa\x06\x74\x05\x80\x99\x3c\xd2\x52\xd1\xbf\xa6\x19\x83\x9f\x8e\x7c\xd7\x31\x37\xc0\xa2\x52\xb4\xb3\xe5\x4b\x99\x1f\x62\xb5\xc7\x63\xfe\x11\x74\xc0\x9d\xb7\xbf\x4b\x3e\x1e\xaa\xb5\x86\xbd\xaf\xf1\x89\xef\x62\x33\xc2\xa5\xcc\x51\xdf\xa9\x0c\xc2\xea\x49\x21\x41\x41\x9a\x80\x79\x39\x03\xe2\x3f\x76\xfd\x1d\x63\x2d\xf4\x81\xd9\x84\xd0\x6f\xd7\x54\x41\x11\xb6\x06\x49\xc7\x6b\x5c\x02\xdb\x3a\x4d\xf3\x99\x8f\x75\x63\x46\x9c\x6e\x74\x72\x72\xeb\x43\x37\x2a\xc8\x80\x7c\xac\x80\x8f\xbc\x6f\xda\xed\x8d\x86\xf2\xfa\xbe\xa4\xa5\xa0\x2e\xe9\xc2\x78\x9a\x97\x99\x08\x80\x61\x3a\xde\x1e\x29\x07\xda\xdb\xca\x69\x29\x8b\x8a\xc2\x66\xda\x59\x50\x79\xee\x6a\x0e\x59\x66\xc3\x2a\xca\xe1\x05\x5b\x6c\xe5\xe9\xc1\xf0\x89\xcb\x23\xd6\xd3\x6c\x95\xcc\x2f\xd3\x24\x9f\x51\xed\x0f\x17\x46\x0a\xc5\x16\xad\x47\xa1\x9f\x3b\x53\xbe\xa4\xb0\xd9\x20\xed\x00\x4f\xa9\xed\x15\xda\x3e\x63\x56\xe6\x9b\xbd\x34\xc1\x22\x81\x9d\x17\x6c\x72\x4c\x99\x73\x23\x0f\x7d\x6f\x8e\xb6\x29\xa3\x1c\x79\xa9\xb9\x78\x64\xce\xbf\x9a\x4d\x5a\x5d\x31\xb2\xde\x1c\xa9\xea\xc5\x43\xfa\x16\x25\x23\x24\xff\xee\x18\x55\xeb\x42\xfb\x11\x61\x21\xfa\xb4\x87\xba\x3c\x0e\x6d\x8a\x94\x6b\xa5\x2e\xce\xab\x9e\x0b\x46\xfa\x49\x25\xe4\xff\xa1\xda\xd8\x87\xa6\xc8\x22\x93\x85\x88\xc3\x31\x30\x4f\x10\xd1\x97\x8f\x9d\x3a\xc4\x20\xcd\x8b\xfd\x8d\x2f\xbf\xac\xdb\xf8\x84\x15\x88\x02\x85\x93\xad\xaf\xde\x0d\xa2\x7d\x08\x7a\x62\xef\x61\xa9\x37\x71\x6a\x53\x60\xd9\x1d\xa5\x0a\x80\x2c\x0c\x11\xc8\xee\xb1\x1f\x40\x3f\x8b\x8a\x04\x22\xa3\xe7\x91\xfb\x62\xe7\xdb\x3d\xf6\x80\xfb\xd7\xfe\x13\x95\x15\xae\x9b\x0c\x2a\x1d\xa2\x84\xf2\x6e\xe0\x85\xee\xdf\xad\xeb\xbe\x1a\x9a\x8d\x2c\x8d\xe3\x86\xc2\xe0\xbf\xa1\xc2\xbe\x6f\xa8\xc0\xb5\xca\x6a\xc3\x2c\x6a\xdb\x0e\x3f\x74\x17\x9f\xfa\x36\xeb\x3f\xd0\x14\xab\x69\xfa\xc7\xd2\x52\x73\x10\xc5\x31\x45\x9f\xd2\xf0\xe3\x37\x16\x48\x9d\x33\xc6\xaf\x1f\xdd\xb7\x46\xfe\x2a\x06\x51\xc2\x68\xee\xac\x47\xec\xae\x62\x59\x42\x3a\x7a\x76\xa4\x01\x44\x5a\x64\xf8\x3f\xa6\xe2\x9a\x83\x4b\x4d\x13\x79\x43\x32\xa7\x54\xe5\x55\xab\x54\x99\xac\x4c\x32\xee\x6b\x5c\xf2\x1e\x1f\xae\xed\xe1\x9a\x53\xd4\x0b\xfb\x26\x33\x61\x61\x33\xf1\xdb\xf5\x95\x5b\x15\x6b\x5e\x9b\x42\xb3\x16\x16\x9a\x7d\x1b\x47\x61\x3a\x94\x85\x44\x28\x35\x7e\x2a\x9d\x55\x29\x16\x99\x9b\x08\xdc\x87\xc5\xeb\x98\xf6\xb6\x9b\x2e\xf3\x2c\x2f\x1e\x69\x9a\x38\x25\x0f\x8b\x79\x0e\x5d\x2e\xd3\x32\xc5\xc7\xda\x3d\xcc\x44\xb1\xed\xec\x9d\xe0\xe0\x3a\x80\xed\x43\xfc\x0e\x2a\x3e\xb7\x34\x93\xee\x6e\xe0\xdd\xbb\x3e\x08\x7c\xfd\x7d\x27\xed\x15\x08\x3c\xbf\x4b\xdd\x5b\x7c\x8c\x59\x81\x1a\xf8\xb1\xa9\x08\xfe\xc8\x4b\xcd\x57\xcd\xd0\x24\x96\xd5\x3f\x1d\xde\xa4\xfa\x72\xf6\xab\xb1\xc1\x16\x50\x12\xaf\x55\xbf\xcf\xc7\x6a\x23\x7e\xb5\x8c\x42\x90\x54\x9c\x93\x8d\xa3\x91\xa1\x46\x8a\xa0\xf8\x8c\x03\x92\x4d\xd2\xb3\xce\xb2\x41\x04\xed\x68\x20\x70\x3a\xab\xe4\x69\xee\x4d\xdd\xc4\xf3\xcd\xbc\x0a\xa2\x1c\x37\x43\x9a\x29\xab\x5f\x95\x5e\xca\x1a\x42\x17\xc9\x7a\x3a\x4e\xaf\xc6\xab\xa4\xda\xb5\x7d\x04\x3d\xdf\x34\x21\x89\xdb\x27\xae\x5b\xc3\xd9\x91\x3b\xd9\xa6\xab\x2a\xbc\x33\xe1\xd7\xca\x28\xa3\xdf\xa8\x96\x1a\xd1\xd0\xa3\xd5\x85\x4f\x6a\xc8\x9f\xcd\xc2\xac\xda\x59\xfa\x7a\xec\x47\x57\x54\xe8\x76\x37\xf0\xce\x45\xac\xa5\x8b\x74\x68\x6e\x2c\xa1\x62\x94\x65\x36\xb6\x6b\x26\x29\xe6\xbc\x0d\xeb\xe9\x91\x6a\xa3\x3f\x4e\xcf\x13\x5f\xb8\xb3\xe5\x1d\xe4\xfe\x4a\x11\x04\x2e\xaa\x5c\x32\x1f\x56\x91\x76\x3e\x47\x3f\xc7\xf2\x0d\x01\xc5\x36\x08\x0e\x61\xb1\x88\x7d\x61\x93\x68\xe7\x18\xba\xe7\x47\x7e\x25\xfa\x8b\x91\xb7\xa6\x6f\x9b\x64\x35\xa7\x16\x11\x65\x69\x27\xdd\x02\x0d\x12\x52\x07\xf4\x7f\x4f\x75\xd8\x41\x78\xdd\x69\xf0\x1d\x9d\xe7\x0b\x7d\x83\x1e\x3e\xae\xe3\x1a\xb4\x8b\x40\x54\x78\x93\x42\xb9\x2d\xb2\xa6\x5a\xde\xda\x09\x0f\x3d\x40\x7d\x5f\x47\xd6\xe3\x3e\x54\x2d\x62\xfc\xa1\x3a\xe0\x70\x98\xd9\xc2\xbe\x06\xd2\x38\x2e\xe0\x2d\x45\xb6\x7a\x6b\x0a\x57\xfb\xea\x57\x9b\xbd\xcc\xf4\x39\x2b\xc3\x70\xfa\x93\x91\xc2\x45\xff\x64\xaa\x48\xf3\xf2\xf2\x17\x9b\x9d\x28\x2c\x4c\x91\x66\x02\x6b\x02\x37\x7d\x47\x61\xa8\xef\x28\xac\x2b\x4d\xa4\xe2\x26\x68\xa3\x62\x15\xec\x9c\xf2\x23\x25\xf7\xf4\xd8\x6c\xc8\xc8\x15\x8b\xa4\x86\xd2\xe7\xab\xc9\x6d\xba\x51\x62\x92\xd0\xf2\x8a\x89\xd4\xf4\x13\x25\xe3\xf5\x89\x2a\x4b\xa5\xa6\x50\x52\x6f\x1f\x6b\xa9\xb7\x8f\x75\x0f\x53\x3f\x4d\x73\xa6\xf8\x83\x4e\xc0\x76\x83\x7c\xa2\xf0\xaa\x22\x33\x1d\x9b\xe5\x7b\x3d\x07\xe9\x18\xed\xff\x58\x32\xef\xd3\x88\x00\xa6\xf3\xbb\x93\x54\x45\xfa\x69\x44\x09\x8f\x68\xac\x80\xa3\x77\x8b\x28\x05\xfc\xe9\xc0\x0f\xda\xab\xc1\x84\x4e\xca\x33\x3a\xc6\xa3\x97\xcf\x0f\x0d\x99\xd6\x07\x8a\x81\xfc\x41\x9d\xc5\xa0\xc9\xd2\x32\x81\x44\x3e\x96\xc7\x19\x62\xcf\x63\xa9\xbe\x41\x57\x0d\x76\xda\x93\x3a\xb8\x88\x92\x4e\xba\xde\x50\xf1\xef\xa5\x40\x45\xc6\x97\x54\x30\x9e\x50\xcc\x4a\x4f\x05\x73\xe0\x8e\xd2\x0b\xfa\x4b\xb4\x58\x21\x32\x67\xe7\x0d\x2e\x01\xa3\x78\xe6\xc4\xf5\x9c\x46\xd3\xee\x96\xaa\x42\xdc\xd3\x0a\xc5\x17\x91\x01\xa1\x94\xf1\x07\x7a\x0a\x97\x51\xdc\xd9\xa7\x1a\x88\xbf\x4b\x11\x1b\xde\xf6\x43\x60\xb8\x48\xfe\xcf\x06\x9e\x2b\x72\x1d\xcf\x59\x2c\x04\xd5\x5b\x3a\x49\x8c\x52\xf0\x6f\xcf\x07\x5e\x2f\xf4\xf6\x48\x31\x21\x4e\xaa\x1d\xe7\x0a\x5c\xca\xb1\xd0\x9c\xae\xe1\xd3\x35\xe3\xa8\x5b\x08\x32\x85\xcc\xe9\xab\xb4\xee\x89\x84\xb8\x2a\x50\x4f\x9b\xb1\x2c\x1e\x69\xf6\xad\x59\xb3\xc9\xbf\xc7\xfe\x40\x96\xbf\xbd\x32\x46\x7b\x0d\xbd\x3b\xac\xcd\xbc\x0b\xf3\x89\x12\x85\x89\x06\xc3\x38\x92\xfe\x23\x69\x78\xaf\x86\x87\x28\x74\xd5\x98\x9f\xf4\xcd\x9a\xa5\x4c\x00\x69\x06\x4b\x0d\xb8\x14\xdc\x55\x8a\x6e\xa3\x9e\x8d\x61\xfa\x5d\x7a\xdb\xe2\xb4\xa1\x83\xfc\xe1\x2f\xf4\x66\xab\x05\x97\xd1\x4a\xa4\xbf\x28\x14\x71\xef\x1b\x9f\x10\x2b\x44\x30\xcd\x67\x94\x22\xd7\x60\x98\xe6\x96\xfb\x89\xd8\x5f\x8d\x5e\xb9\x78\xad\xd5\xd8\x39\xf5\x32\x33\xf4\xb5\x3c\xd4\x1f\x8f\x8f\x94\xe3\xe9\x71\x97\x26\x76\x38\x2a\x66\x9e\x1f\x62\x6d\x00\x4a\x62\xc5\x44\x9f\x93\x9d\x64\x1a\x45\x78\xa5\xd9\x4d\xb3\x90\x44\xbb\x0e\x1d\x72\x41\xac\x62\x20\x9d\x75\x0a\x59\x6d\x92\x17\xcb\x1b\x4a\x3f\xe5\xed\xc0\xdb\x41\xbd\xad\xda\xa8\xaa\x3d\xd6\xe4\x2c\x14\xc0\x10\x86\x6a\xf8\x7f\x13\x83\x1b\x74\xb8\x4d\x97\x35\x66\x26\x8a\xdb\xc4\x21\xa0\x11\x51\xc7\xb1\x94\x3f\x1d\x6c\xe4\x55\x90\xeb\xe8\x4c\x18\x3d\xec\xc3\xc5\x27\x8a\x99\x50\x85\xc5\xd8\x6f\xf0\x7f\x88\x27\xf9\x58\xc9\x8d\x14\xe9\x40\x41\x99\xc7\x14\x94\x79\x6c\x6a\xeb\x5b\x5a\x3a\xdc\x34\xc3\x21\x75\xc3\xaf\xcc\x3b\xb6\x81\x5f\x4f\xb7\x46\x4a\x16\xf2\x49\xa8\x35\x61\x88\xd4\xf8\xe5\x2d\x34\xdb\x65\x16\x73\xcd\xcb\x79\x5c\xba\xf2\xdd\x43\x35\xeb\xaf\x28\x4d\x98\xf5\x17\x5e\x7d\xa1\xa1\x7b\x06\x8e\x6b\xd5\xf7\x69\x7b\xf9\x83\x4b\xd5\xb4\xca\xd2\xa1\xcd\x18\xba\xc7\x6f\x7d\x3c\xf2\x4c\xe4\x8f\xa7\xd6\x8b\x85\xc5\xea\xdd\xe4\x32\x24\x11\xfb\xb2\xf6\x33\x9f\xb4\x54\xf9\x85\xe0\xe3\x7d\x4a\x45\xfe\x1c\xe2\x2b\xd1\xb7\xf1\x61\x0b\x6b\x8d\x22\x0b\xbf\x14\xf8\x26\xb8\x4f\x47\x7e\x47\x3d\x17\x28\xb7\xa4\x7b\x81\x52\x73\xe4\x9b\x45\x2e\xf8\x2e\x03\xdb\x58\xb5\xdf\x05\x08\x85\x1d\x60\x4b\xe1\xd0\xff\xe9\x7f\xf1\x37\xe9\xbe\xb1\xdf\x9c\xa7\x85\x99\x8f\x55\x99\xa1\x9b\x66\x45\x99\xb0\x15\xa6\xd2\xc8\xf4\x62\x9d\xfb\x7d\x20\x5b\xa4\x43\xe4\xb0\x52\x01\xa5\x9f\x96\xd2\x68\x5d\x61\x2c\xb7\x61\x9a\xa0\x7a\x83\x65\xe7\x61\x30\x99\xda\xad\xcc\x3b\x25\xf4\xcf\x4f\x82\x1d\xcf\x3d\xd7\x5c\x5a\x5a\x7e\x92\x7e\x42\xd5\x31\x05\xc0\x01\x32\x2e\xa4\x05\xd5\xea\xfa\xf5\x60\x4a\x5b\x19\xdc\x8b\x8f\x03\x5f\x61\x7a\xb2\x55\xcd\x67\x69\x3c\xa0\x87\x2b\x86\xcc\xd5\x25\x61\x0f\xbd\x80\xea\xb7\xd3\x75\x76\x00\xc2\x25\x35\x30\x63\xb3\x6a\x1b\x4a\x55\x16\x9d\x57\xa2\xf7\xe1\x25\x40\xfb\xf6\xa7\x55\xa7\xc1\x26\xa9\x25\x89\xe6\x00\xa5\x02\x58\xec\x77\xb6\x7c\x45\x6d\x27\xb0\x09\xc4\x72\x37\x11\xda\x48\x5f\x59\xb5\x4f\x22\x37\xdb\x87\x8e\x29\x91\xce\x6a\x7c\xe9\x57\x5d\xf5\x9b\x86\x93\xd8\x8b\x4c\x28\x81\xd1\x83\xc4\xb2\x74\x47\xe1\x43\x8d\x16\x6d\xd9\xae\xad\x60\x65\x9e\x8d\x91\x0e\x68\x6b\x56\x04\xfd\xac\xff\xa6\xfb\x32\x4f\x51\x9a\x8b\x27\xcc\x12\x68\x40\x59\x66\xd0\x58\x81\xc1\x3c\x47\x50\x0c\xf6\xe2\xf7\x29\x4b\x15\x9f\xa1\xc6\xaf\x48\x46\xf4\x90\xf1\x36\x7c\xd7\x7d\x87\x4e\xf7\x32\x6b\x8a\x39\x85\x5a\x00\xe9\x72\xfa\xa3\x4a\xff\xcd\x57\x01\x6e\x7d\x41\x55\x1e\x76\x8c\x7d\xf0\x9c\xd0\x9a\xe6\x98\xf6\x6f\x04\x6a\x83\x26\xce\xf1\x16\x80\x26\x7c\xe3\x31\x95\x04\x67\x2f\x64\x2f\x34\xfc\xd2\x7a\x3f\xf0\x3e\xc0\xf7\x55\x7e\x5f\xa5\xb4\x71\xbe\x4b\x97\x1a\xce\x61\xbe\x3a\x37\xc1\xea\xb9\xf0\xc9\x44\x4f\x1c\xd4\x75\x1d\x81\xdf\x2b\xe7\x9f\x53\xcb\xbd\xe9\x5b\xd3\xd9\x45\x03\x03\x91\xda\x66\xa0\xa4\xdb\xb8\x93\x81\x7b\xb8\x31\x00\x98\xae\xa8\xf4\x02\x6e\x28\x31\x82\xd3\x35\x72\x43\x2b\xcd\x0e\x35\x78\x35\x7c\xa9\xf0\xb2\x72\x31\xba\x5c\x67\x44\x3b\x88\x5e\xe3\x12\x85\xd4\xf4\x3c\xd4\x7d\x76\xaa\x74\x75\x74\xbe\xd9\xb1\x64\xc5\x82\x27\x78\x42\xf9\xda\x9c\xa8\x13\x40\x6a\xa7\xeb\x5e\xdc\x4e\x0c\x53\xaa\x5f\x10\xbf\x14\xd9\x3d\x55\x87\xa3\xab\xc8\xdd\x55\x04\xed\xbb\x13\x41\xd0\xeb\xec\x81\x85\x91\x75\x4e\x83\x63\xe7\x94\xa6\xb1\x5d\xb3\xd9\x46\x9a\xd8\x27\x1a\xce\xfb\x9a\x41\x27\x29\x99\xfb\x4e\x69\xc8\xe3\x4f\x60\x78\xf8\xc4\x6d\x1a\x58\x62\xc6\xae\x59\x1c\x98\xe7\x4c\xc4\x0e\x26\x9c\x17\x68\xb0\xe0\xdd\x6e\xd5\x18\xff\x91\x2a\x58\x66\x32\xd1\x12\x12\x9e\xb9\x2f\x8d\x5d\x53\x99\x63\xdf\xc6\x9d\x03\x8a\x26\xce\xf6\xf2\x00\x89\xde\x52\xb1\xdb\x5d\x6c\x4b\x02\x6e\x57\x37\xc4\x7f\x34\xd2\x0e\x07\xd5\xfd\x88\x0e\xb9\x42\x6d\x6e\x63\xbc\xf3\xc9\xa4\x15\x92\x6f\x9e\x3f\x8e\x67\x83\x58\xee\x9f\x8e\x94\xa5\xc5\x26\xef\x76\x62\x22\x43\xef\x1c\x5b\x0e\x4a\x4d\x9f\x85\x6a\x1d\x9d\x5f\x6c\x76\x4d\x36\x70\xe0\x0e\x10\x88\x4f\xf1\xb3\x7c\xa2\xc4\x77\x56\xa3\x4e\x62\x37\xb0\xbf\x61\xd3\x3e\xad\x18\xa3\xa7\x6b\x8d\x16\xa3\x24\x84\xbb\xa5\x22\x20\x9d\x53\x74\xd9\x73\xae\x72\x57\x98\x76\x6c\xc9\x29\x98\x86\x18\x0b\xfd\xaa\xa7\xfc\x0d\x95\xd9\x75\x48\x07\x08\x46\x27\x22\xf9\x4a\xd7\xe5\xf4\x6a\x1d\x1b\x82\x0d\x9e\x27\x58\x3b\x98\xd7\x60\xf5\x21\x92\x7a\x18\xa8\x9d\x7a\x7a\x4a\x51\x2c\x9e\xfa\xfe\x52\x54\x9e\xf0\x05\x7c\x1c\x6c\xdb\x9d\x97\x96\x96\x9b\x8b\x47\x7e\x0a\xef\x06\x77\xb0\x0f\x40\x94\x23\x1a\xab\xbd\x13\xfb\xb3\xc4\x84\xd5\xde\x05\x2e\xde\xbf\x1e\xa9\x3d\xf1\x5d\xe4\xff\x48\xbf\xa1\x77\x2b\xa5\x8d\x6a\x6d\x40\x98\x70\x8a\x36\x0c\x71\xe9\xf2\xac\xe8\x7f\x80\xf2\x1d\x1d\x7f\xe1\x00\xb6\x44\xdc\xfb\x05\xc2\xca\x70\xeb\xd7\x91\x2e\x0a\x10\xdb\xf8\x8a\x18\x11\x6c\x02\x5e\xc5\xbb\xfe\xdf\x10\xa3\x60\xfc\xed\x6f\x35\x9e\x7b\x8e\x27\xea\x29\xa5\xbe\xc8\x3d\xab\x8c\xc8\x63\x8a\xb0\x32\xbc\xf2\x7a\x85\x50\x91\x2c\xba\x9e\xf7\xd7\x35\x51\xb6\x6e\x98\xbf\x8b\x3b\xb8\xaf\xa5\xc9\xef\x07\x1e\x3f\x0c\xb3\xa8\x88\xc2\x28\x1f\x00\x79\xc3\x22\x73\x55\x59\x09\x20\xe4\xc0\x86\xca\xed\x4e\x12\xbc\xa9\xb8\x68\x5a\x35\xb8\x1a\xc1\xdd\xcc\x8a\xed\x71\x9d\x37\x88\xa4\x44\xb1\x6d\x9b\x84\x97\x47\x59\xc6\x35\x4d\xa3\x56\x8d\x27\x8e\x06\x51\x61\x3b\x30\xf0\x17\x0c\x96\x2e\x0f\x00\xe4\xad\x40\x01\x57\x20\xb2\xe2\xe5\xb3\xae\x8e\x54\xea\x6b\x68\xf2\x65\xd2\xa9\x02\x7b\x37\x62\x45\xe0\xd7\x3f\xf9\x6f\x4f\x05\xf7\x8b\x47\x9a\xb1\xed\xd9\xa4\xa3\x3a\x8b\x4e\xa8\xce\xa2\x13\x2a\x78\x4e\x3a\x1b\x7b\x3c\x2b\xf5\x09\x5d\x9d\xbd\x8f\x8b\x83\x44\xd0\x2e\x8a\x8b\x38\xa6\x9b\xb0\xac\xbf\xac\x75\x97\x46\xaa\x9c\xcc\x4e\xf3\x42\x35\xda\x9e\xdb\x1f\x5c\x6a\x16\x59\xca\x7a\x1e\x98\x58\x8f\x95\x01\x2e\x07\xab\xe2\xbe\xab\x4a\x09\x2f\x98\x17\xd2\x17\x1a\x8a\x43\x77\x8a\xae\x40\x34\xe4\xbc\x9e\x47\xdb\x14\x85\x88\x57\x3b\x14\x68\x61\xd1\xc1\x43\x4a\x94\xb2\x6f\x08\x15\x70\x6d\xdd\xae\x27\x98\xc3\x3e\xdc\xde\x29\x04\x9a\x7c\xa2\x80\xbb\xdc\x12\xaf\xee\x09\xba\x7b\x34\xac\xcd\x8e\x95\x0d\xe6\x37\x55\xac\xdc\x68\x79\xa4\x7e\x6e\xac\x78\x03\xbf\x89\xdd\x00\xfb\xc4\x69\xa5\x2b\xcb\x6d\x84\x20\x36\x9c\x09\xb4\x6b\x26\x8d\x09\xb0\x0b\x9e\x6c\x79\x94\x62\x68\x8b\x2c\x5d\x8b\xc2\x7e\x43\x51\xe6\x38\x18\xe6\x93\x3a\x69\xf2\x6e\x9a\xd9\x41\x9a\x03\xd6\x44\x88\x71\x5d\x85\x1b\xd7\xeb\xde\x61\x46\x82\xc0\xae\x59\xe4\xfb\xaa\xa0\xfe\xfd\x89\xa0\x23\x2b\x07\x54\x4a\x74\xc6\xe8\x2b\xf3\x35\xc6\xe8\x49\x14\x9a\xcc\xf4\x4a\xa3\xfc\xb8\xbe\x4e\x98\x84\x90\x86\x65\xa3\x31\x61\x58\x66\x06\x5e\xe6\xce\x50\x10\x59\x0d\x1f\xd7\x36\x26\x11\x6f\xb8\xa1\xf9\xc1\xd8\x4b\x84\x2c\xfc\x79\xaf\x36\x52\x58\x1b\x43\xb7\x92\x03\x5b\x4c\x8b\x8b\xca\x99\x92\x53\x0f\x21\x8d\xd0\x58\x11\x3a\x89\x2f\xfd\x30\x8a\xc1\x1f\xaf\xeb\xb2\x34\xc3\x61\x6c\xca\x1c\xc4\x18\xd7\x98\x57\x0d\x20\x69\xcc\xab\x41\xfc\xda\x65\xd6\xb1\xd0\xdc\x75\xfa\xa2\x4e\x19\xd5\x33\x0f\xd6\xfb\x69\x6c\x73\x13\xdb\x39\x8a\xb4\xb5\xd9\x88\x62\x93\x89\x0e\x2a\xf6\x5c\x6c\x86\x10\x22\x40\x6a\x32\xa3\xd2\x09\xca\x8f\x3d\x34\x78\x4c\x19\xbe\x1d\x73\xde\x38\xa1\x35\x5c\x66\xc3\x28\xfe\x53\x1a\x49\x7c\xac\xb4\x77\xbb\x26\xef\x47\x69\x32\xa7\x3a\xf1\xf0\xec\x00\xd3\x3c\x0e\x26\x1c\xdd\xbd\xb5\xdb\x6b\xca\x16\xe1\xb5\xd1\x3e\x0f\x32\x26\x3f\xa3\x7c\xdf\x7f\x8f\x66\x3c\x62\x0b\xc6\x26\xa4\x4b\xbd\xe1\x9c\xe1\xb6\x28\x99\x74\x1a\x1d\x07\x65\xe9\x9f\x1b\xab\xac\xe5\xde\x48\x57\x7a\x68\xd3\xc7\x54\xc2\x8c\x04\xc2\xfd\xe9\xc8\xf7\xe1\x5c\x0f\xbc\x73\xf0\x5b\x80\x88\x59\x4b\x52\x95\x79\x1e\xd0\xed\x89\x7e\xb6\x72\xe6\x3c\x83\x7b\x55\x42\x19\x8b\x0c\x26\x3c\x1e\x29\x68\x42\x7a\x23\xd9\x24\x08\x03\x0d\xc9\xfb\x43\x0d\x86\xdf\xa0\x3c\xdc\x19\xfd\x2c\x2c\x70\x56\xd3\x68\x51\x4e\x8e\x67\xbd\x1b\x79\xb8\xb4\x8a\x43\xc3\x05\x37\x70\x33\x50\xdc\xa0\xeb\x9a\x63\x3b\x8c\x12\x7a\x7d\xd5\xd7\xa0\xf8\x76\x43\xb9\xcd\xdd\x55\xea\xab\xe7\x03\xc5\xdc\x38\x87\x8e\x5c\xfe\xc4\x54\x2f\x7e\x15\xd4\x96\xc3\x5e\x66\x3a\x82\x51\xe1\x49\xc0\x5c\x90\x8f\x55\x24\x99\x45\xe1\xaa\x8d\x19\x38\x53\xe8\xbb\x28\xbc\x5c\xaf\x91\x6a\x78\xb1\x99\x0f\x6d\x18\x75\xa3\xb0\xe1\xfb\x42\xa0\x91\xce\xc7\xc1\x53\x4a\xbd\x70\x68\xc3\x02\x24\x5b\xd4\x04\xb9\x8a\x02\x2a\xc9\x03\x60\x1b\xfc\x3f\x23\x65\xb1\xf2\x40\xed\xb6\xbf\x14\xc7\xbb\x69\xe4\x38\x69\xda\x95\xf9\xad\x31\x31\xad\xb0\x64\x3e\x0a\x14\x5c\x78\x45\x4b\x6c\x10\xb2\xf0\xa2\x57\x10\x5b\x76\xec\xac\xfd\x53\xba\xfc\x0b\x0b\x55\x64\x1d\xa6\x65\x66\x7a\xb2\xd8\xe1\x91\x31\xfd\x8a\x4f\xc6\x35\x82\xcb\x03\x13\xc5\x4e\x21\x5f\x8c\x8b\x3c\x11\xd9\x2b\xe9\xaf\x9b\x6c\x68\x3b\xb3\x13\x1b\x7e\xc3\x39\x40\x41\x04\x52\xac\x04\x55\xa9\xee\x93\x5a\xde\x48\x16\x0d\x4c\xb6\x81\xe2\x85\x56\x79\xd6\x24\x6b\x2c\x30\x37\x9d\xa0\x7b\x66\xa2\x0e\x17\xea\x30\x96\x41\x5f\xe7\x63\xc5\x9b\xcc\xc3\x74\x68\x67\x54\xa7\xd9\x47\x98\x5b\xf8\xf2\xdf\xa1\x2f\xe7\x46\xee\xa9\x1c\xbf\x4a\x36\xfb\xd6\x0c\xe7\xfc\x57\x3f\x52\xf3\x9d\x05\xc0\x31\xe1\xd9\x24\xdd\x75\x32\xba\x82\xd3\x8d\x3a\x63\x8d\xdc\xda\x0e\x47\x3f\x58\xdd\x1e\x07\x1e\x24\xc4\xdd\xcb\xf1\x54\x1f\xe4\x62\xb5\xc3\x2b\xbf\xad\x37\x55\x90\xfc\xa6\x2a\x51\x9a\xb0\xd8\xad\xca\x5b\x07\x5a\xda\x28\xeb\xcc\x48\xb5\x01\xbc\x47\x4f\x01\x65\x15\x52\xc9\xd8\x82\xb2\xbd\xf8\x74\xd1\x75\x4a\x31\xa1\x06\x83\x1e\xd8\xc2\xb4\x53\x88\xdf\x3a\xc4\xe5\x5d\x9d\xa6\xbd\xeb\x18\xce\x79\x99\x87\x76\x58\x44\xed\xd8\x12\x60\x2a\x6a\xc7\x34\x4a\x1c\xd3\xa6\x5a\xe3\xc0\xf3\xfe\xf1\xd4\x0f\x2e\x1e\x69\x76\x22\xe2\x7c\xf6\x65\x79\x10\x07\x89\xea\x0b\xc5\x40\xc2\x49\xff\xdb\x6c\x60\x92\x5d\x0e\xfe\x99\xfd\x1b\x2d\xcf\x38\xb9\xfe\xf3\xe3\xea\x7d\x22\x98\x3d\xcd\xcb\x29\x16\xe4\xc7\xf4\x16\xf0\x6d\x33\x63\x1a\x33\x32\xc1\xbf\xa0\x7a\x54\x92\x24\xdf\x20\xc7\x69\x43\xb7\xa3\xb5\x4a\xb0\xff\x5f\xd0\x35\xc6\x47\x35\x3c\xfa\x95\x66\x66\x86\x11\xe2\x75\x4e\x7b\xe8\x46\x24\x05\x52\x12\x68\xe5\xeb\xe5\x6a\xa4\x02\x2e\x10\x4c\xf9\x78\xfc\xac\xd6\xd9\x47\xd7\x50\xae\x05\x50\x80\x1e\xf1\x71\x4d\x7a\xbc\xdc\x0c\x4d\x2e\x9a\x04\x4c\x3e\xc0\x92\x24\x4c\x04\x5f\xc1\x65\x35\x55\xdf\x51\x75\x35\x50\xd2\xf2\x93\xdc\xba\xae\x5d\x7f\x82\x9e\x81\x96\xe3\xc5\xd8\xfa\x70\xb2\xa2\xa7\x5b\xab\x03\x25\x7e\x1b\x28\xdd\xbf\x99\x96\x6a\xbd\xbd\x84\x6c\xda\x91\xa2\xaa\xe5\xd5\x79\x90\xbb\xc1\x70\x5e\xe5\x05\x14\xe6\x1a\xe4\x78\xcc\x10\xc6\xee\x26\x74\x61\x5f\xb1\xec\xa5\x65\x36\xb0\x20\x16\xbb\xc5\x4c\x1b\x33\x37\x9c\xc4\xcb\xfd\xba\xb5\xa3\x97\x99\xa4\xa0\xca\x38\xbb\x57\x03\xfa\x74\xfe\xca\xae\x75\xe6\x2d\x45\x4a\x83\x2c\x0c\xb5\x62\xd0\x5f\x23\xf2\x05\x94\xc9\xc7\x75\xb4\x8d\x28\x09\xe3\xb2\x43\x54\xa4\xad\x7b\xf8\x1d\x2c\x77\xc7\xb5\x12\xca\x35\xa5\x4c\x97\xae\x27\x22\x56\xa8\x38\x6a\xf4\x9e\x84\xbc\x56\x13\x76\x0e\x4d\xe4\x34\xfe\x18\x2e\xd0\x1a\x12\xd3\x8a\xbd\xdc\x21\x5e\x94\x99\x73\x4d\xe5\xae\xbb\x40\x11\xcf\x39\xcf\x06\x70\xff\x2f\x46\xaa\x01\xa7\x53\x92\x2f\x86\xef\xd3\x6a\x8c\x15\x16\xd4\x98\x22\xfb\xbe\xbc\x32\xaf\x76\x76\x57\xcc\x78\x4f\x8d\xfd\xf7\xb4\x60\x05\xa9\x28\xec\xaa\xc2\x3e\x84\x83\x6c\x92\x89\x78\x18\xea\xac\xfc\x1f\x63\xdf\x15\xf7\x8d\x60\x42\x7b\xb7\xfa\x19\xdc\xff\x63\x85\x9e\xb7\x6d\x91\xcf\x79\x12\xf1\xf9\x40\xf3\xb0\x15\x21\xe3\x8e\x32\xfa\xf8\x08\x8b\xa6\x78\x7c\x09\x30\xd1\xb7\x59\x6e\xe3\x2e\x7a\x6c\x27\xb0\x32\x96\xf8\x47\x84\x09\x20\x69\x1f\xed\xbe\x18\xa3\x0f\x6b\xa7\x39\x09\xde\x5b\x8e\x97\xf0\x4c\x98\x24\xc9\x27\xdb\x71\xb0\x23\x2f\x35\x97\x96\x0e\x3f\xed\x6b\xe7\x7f\x48\x51\xa4\xab\xa4\x79\xd9\xfa\xe3\x98\x90\x42\x55\xa0\x67\xe9\x60\xa5\x85\x45\x07\x84\x56\xcf\x55\x4b\xf4\xb3\xb9\x1d\xe6\x36\xb0\x8d\xeb\x23\x05\xd5\x5e\xa2\x1d\x15\x45\xc3\xb9\xb1\x32\xdf\x9f\xc3\x6a\xce\xee\xd3\x94\xd8\x60\x43\xfe\x54\xe9\x88\xc2\xdd\x02\x73\xe0\xff\x02\x8a\x25\xb4\xef\xed\xf3\xf6\xe5\xc5\x23\xd5\xc1\x6a\x43\x19\x92\x02\xd8\x17\x0b\x8d\x1a\xe5\xa8\x8e\x0d\xc9\x26\x92\x19\x18\xb8\xe1\xdb\x8a\x3a\x73\x41\xaf\x73\x27\x6a\xbd\xdb\x5c\xf1\x1f\x21\x1b\x76\x3f\x30\x8f\xf9\x58\x3b\xc2\x9a\x81\xa5\x2d\x0d\xa1\xff\x63\x25\xe5\x78\x17\x8f\x8d\xcd\xf3\x47\x13\xb6\xb1\x07\xbd\xe3\x65\xc3\xbd\xb2\x1b\xaa\xf8\x99\x86\xc5\x0b\x9f\xa3\x07\x8a\x32\x3f\x58\x28\x58\xfe\xaf\x07\x4a\x2c\x97\xc5\x32\x9c\xc5\xa2\xb7\xe7\x05\xe7\x07\x71\xdc\x5f\x05\xca\x7c\xf2\x87\x14\x3a\xc9\x1e\x5a\x0d\x00\xd4\x02\x50\x24\x00\xf0\xbe\x9f\x08\x71\x98\x57\xd7\x03\x8d\xbb\xfe\xb1\x22\xc8\x32\x73\x5e\x14\x69\x95\xc5\xa8\x15\xbe\x2b\x46\xca\x1f\x12\x78\xc0\xc7\x2a\x14\x4f\xf3\x08\x31\x2e\x66\xdd\x23\xe5\xbb\xfa\x68\xc2\xf4\x28\x1b\x92\xd4\xf8\x8c\x2f\x31\xdf\x09\x94\xb2\xdb\x55\xb5\x05\x7c\x3c\x35\xd5\x16\x16\x9b\x83\x28\x29\x0b\x47\x6b\x10\x09\x7a\xfa\x69\x3e\xa9\x9d\xa0\x51\x12\xa6\x03\x3b\xa3\xd5\x27\x7f\xa4\x44\x39\x2e\x6b\x67\xdb\x1b\xaa\x6f\x26\x29\x32\x12\x0a\x9c\xf1\xbb\xc5\x26\x56\x14\xac\x67\x1f\x68\x8f\xad\xd3\x0a\x79\xc9\xd2\x38\xed\xd8\xd7\xc4\x31\xca\xb9\x5e\x79\xce\xd3\x95\x9a\xd2\xc3\x8b\x4d\xd3\x59\xf3\x44\x02\xb7\x71\x7b\x51\x29\x2d\x6e\x6f\xc0\x15\x66\x2b\x50\xba\x1d\xb1\x05\x95\x58\x6d\x68\x8b\x2c\x02\x6e\x80\x6e\x30\xbe\x53\x3e\x71\xdd\x0c\x04\x8c\xae\x67\x91\x7b\x37\xb8\xa3\x47\x18\x87\x02\xc2\x7a\xde\xcc\xae\x29\x05\xb0\x85\x85\x66\x37\x4e\x8d\x17\x2b\x94\xb0\x51\x85\x90\xaa\x8c\xb4\x9a\x76\x79\x3f\x06\x0a\x3a\xa3\x4d\x60\x67\xc6\x75\xb8\xf0\x46\x9a\xad\x3a\x73\x7c\x4c\xd3\xeb\xb8\x1b\xc4\x12\x92\xbc\x63\x42\xce\xb6\xb6\xc3\x6b\x0b\x0b\xcd\x3c\x4d\xf2\x09\x0d\xc6\x8f\x02\x6d\x4c\x00\xbd\xd7\xe3\x0a\x70\x2f\xa2\x41\x9b\xe8\x49\xae\xd3\xe2\xae\x52\x84\xb8\xab\xde\x46\x3b\x0a\xa9\x99\x0c\x41\xc2\xec\x58\x95\x5e\x3f\x09\x3c\xd5\x90\x2d\x9c\x9d\x61\xaf\x03\x9e\x9f\x69\x6d\xcf\x4b\x96\x96\x9a\x6d\xa3\x33\xb2\xd3\x58\x2f\x44\x0d\x6d\xfb\xfd\x1d\x9d\x6f\x16\x7d\x53\xec\xf2\x13\x7e\x1f\xf2\x53\x11\xde\xad\x56\x08\xa1\xc8\xd0\x92\x86\xbb\x78\x82\xf8\x85\x0e\xd8\x38\x28\xb4\xf0\xd3\xca\xee\xea\xb9\xce\x0b\x0d\xc5\x51\xb9\xaf\xe4\x87\xee\xbb\xb6\xd7\x30\x4d\xd6\x6c\x52\x44\x55\xb4\xd5\x98\x78\x31\x3e\xe0\xbb\x3b\x85\x4d\x88\x50\xc4\xaa\xb5\x43\x8a\xed\x10\x1d\xdc\x0a\x54\xd9\xe2\xec\x68\xa2\xf9\x59\x59\xee\xc7\xc3\x19\x45\x7a\x04\x07\x59\x5c\x12\xe9\x33\x6c\x22\x14\x7c\x96\x68\xbd\xe9\xac\xd9\xac\x88\x72\xef\xa7\x83\xf7\xc1\x32\xc7\x7c\x52\xcb\x52\x59\x8b\xec\xba\xec\x50\xd8\x95\x6e\x2b\x69\x4e\x56\xc3\x12\x65\x49\xd5\xe4\x42\x3d\xfc\x24\x8d\xed\x38\x88\xef\x2b\x4a\x0b\xe6\xbb\xcb\x5c\x9d\x7f\xe3\xfb\xaa\x98\x4c\x2a\xcf\x34\x57\x0f\x8a\x02\xce\x6d\xc2\xbe\x44\x0d\x87\x2e\x5e\xe8\x32\x35\x25\x8d\x8e\x89\x57\xb9\x7f\x56\x9c\x90\x94\x98\xea\x55\xdf\x68\x15\x57\x99\x21\x09\x92\x3b\x57\x0e\x0e\x8b\xe6\x28\x7e\x43\xc9\xe7\x5d\xaf\x44\xbe\xf3\x40\xcb\x4f\xf3\x57\xcb\x0e\xb7\x73\xb1\xd0\x05\x6d\x59\x7c\x3c\xda\xaf\xba\x27\xdb\xc5\x3e\x7a\x90\xce\x70\xab\x8a\x7a\xb0\x4f\x9e\xc3\x22\x2b\xc2\x77\x14\x6d\x30\x25\x57\xef\x93\xff\x86\x06\xa5\xea\x7b\x58\xf4\x2b\xbd\xd3\xf1\x87\x80\x36\x10\x96\xff\x95\x2e\x06\xf1\xf2\x26\x05\x50\xfc\x37\xae\x5f\x3d\x1f\xa6\x99\xe9\x44\xe1\x8c\x7f\x4e\xe8\xa5\x56\x50\xcc\x92\xeb\xbb\x68\x7e\xc6\x10\x2b\x8b\x28\x66\x8d\x23\x2f\xa7\xfa\xb1\x6e\xb9\xff\xb8\x8e\x42\x1a\xa6\xe1\xea\x30\x2a\xb4\x9c\x39\x32\x3d\x51\xfb\xa9\xd1\x28\x0f\xd3\x32\x2b\xb2\x34\x1d\x68\x5f\x17\x7c\x4a\xd4\xd3\x3f\xa7\x88\x68\x1b\x55\xde\xe6\x7a\x42\x40\xa0\x90\xaa\x56\x5d\x48\x95\xd9\xbc\x5f\x76\xbb\x9c\xd1\x72\x3e\x14\x28\x01\xa1\xe3\x53\xbb\xef\xf2\x4b\x87\x9b\x6b\x69\xde\x13\xd6\x22\xc6\x35\x2f\xdc\x7c\x52\x03\xe8\x1c\x26\x69\xd9\xd9\xea\xa5\x20\xeb\xff\x5c\x8b\x2a\xb5\x0e\xd2\x5e\x11\x5e\xd1\xa6\x92\x40\x7e\xe4\xfa\xc3\xc4\x6e\x64\xd9\xd7\x25\x3c\xeb\x03\x99\x07\xab\xce\x06\x4f\xf0\x47\x36\x6c\xb1\x9f\x02\x6f\xa7\x5e\xb6\xec\x5a\x33\x79\x01\xc2\x78\x94\x8d\xc6\xdb\xa1\x49\xb8\xbc\xf3\xff\x63\xec\xcd\x63\x24\xc9\xf2\xf3\xb0\xee\xcc\xea\x6b\x8e\xde\x9e\x63\x2f\x51\x96\x93\xd0\x0a\x14\xe0\xf1\x0a\x92\x60\x5b\x58\x03\x8e\x74\x77\x71\x67\xbb\xa1\xad\x29\x54\xf7\x76\x8b\x43\x19\xe8\xa8\xcc\x57\x99\x31\x15\x19\x91\x13\x11\x59\x35\x35\x30\x0c\xdb\x10\x0c\x41\x26\x0c\x03\x92\x4d\xd9\x16\xa4\x15\x49\xd8\xa6\x2d\x51\xa2\x48\xee\x41\x72\x99\x35\xdc\x83\xbb\xdc\xdd\xd9\x99\xd9\x9d\x6b\x67\xa6\xa7\xef\xab\xfa\xbe\xaf\xa9\x31\xe2\x7d\xbf\xdf\x7b\x5f\x56\x44\x53\xfe\x2f\xa2\xbb\xaa\x32\xf2\xc5\x7b\xbf\xf3\xfb\x7d\x5f\xbb\x8c\xe2\x61\x71\x3e\x8b\xd0\x1b\x2d\xab\x9d\xd6\xc6\xa2\x0e\xfe\x39\x0b\xee\x70\xe3\xa3\x3e\xff\xfd\xb8\x3c\x44\xeb\xdb\x57\x3d\x40\x08\x25\x13\x98\xe6\x1d\xab\x4f\x6f\x14\x3c\x9f\x69\x4d\x1f\xd8\x49\x4a\xeb\x77\x10\x89\xa3\x64\x06\x39\x36\xfb\x5a\x7e\x20\x12\x4f\xa8\x85\x5f\xb5\x67\x15\x1b\x4f\xb8\x27\x39\xf8\xc2\xa7\x6d\x6b\xfb\xe4\xe2\x06\x51\xb1\xef\x58\x2d\x03\x40\xb8\x69\x11\xbf\x53\xd1\x11\xbb\xda\x38\x41\xd0\xde\x73\x0c\x83\x7e\x1e\xe9\x4e\x1d\xe1\xf4\x30\x8b\x92\x4e\x34\x94\xc1\x05\xc9\xe6\x69\xd0\xeb\xec\x98\x07\x99\x4d\xc7\x21\x27\x44\xbb\xc1\xfe\xa8\xea\x38\xd4\x8c\x91\x65\xa6\x17\x66\x5d\x62\x44\xbf\x44\x8c\xe8\x55\xac\xe9\xde\x99\x56\xdf\x24\x99\x84\x27\xf0\x1f\xd2\x34\x94\x1b\x22\xf9\x89\xa3\x79\x13\x37\x08\xa5\x79\x99\xb3\xf7\xcb\x84\xf9\x0d\xa3\xac\x93\x85\x0b\xc5\x56\xa2\xc0\xf9\x07\x41\x85\xfa\x13\x19\x0d\xd8\xe7\x70\xd0\xef\x92\xd8\xf9\x31\xbb\xd9\x54\xe5\xfb\x13\x6e\xd4\x60\x21\xcd\x06\xd1\x4b\xf6\x2b\xba\x91\x86\xf2\x63\xe4\x86\x90\x9b\x51\xd2\x19\x65\x99\xe9\x82\x19\x0a\x71\xc8\x2d\x10\xa4\xa9\x90\x50\xf9\xd1\xf2\x1f\x63\xcf\x3f\x74\xa2\x0e\x8b\xdd\x89\xd3\xa2\x1f\x99\x8c\x65\x4c\xbe\x69\xbf\x87\x5c\xd7\x72\xd5\x66\x69\xa7\x2f\x9c\x89\xb0\xc4\xc7\x25\x33\x91\xbb\x8a\xed\x39\xf0\x5c\x19\x5c\xe4\xc3\x28\xb3\x35\x32\x47\x19\x7e\x0c\xdb\x57\x1b\x41\x75\xa2\x6e\x79\xba\x14\x99\x02\xf5\x6a\xa7\xa5\x49\x03\x61\xb4\x39\x4f\xba\x6e\xdb\xbf\x8f\xd7\xf3\x49\x1e\x32\x49\xf2\x38\x2c\x8c\x9d\x6e\x86\xed\x7c\x1d\xcb\x29\x37\x75\xe5\x56\xd9\xf1\xf1\xa4\x51\x9c\x74\xfc\x3b\x1d\x76\x31\x1d\xe5\x1a\x66\x20\xfb\xbe\x42\x48\x9e\xf3\x63\x02\x4a\x7d\x14\x4c\xcc\x9b\x26\x26\x7b\x94\x50\x14\xaf\xda\x53\x29\x94\x84\xb2\xe2\x82\xa2\xb5\x47\x08\xc5\xa2\x0f\x6c\x67\x4e\x59\xec\xed\x1f\xc7\x7f\x7c\x0b\x58\x19\xc5\x39\x12\xc3\xe2\xe9\x89\x21\x6d\x6b\x5e\xf4\x53\xec\x1a\xa2\xe2\x70\x97\xda\x94\xc3\x30\xcf\xc3\x1e\x0a\xd6\x30\xaa\x08\x29\x75\x4c\xbf\xfc\x13\xaa\x47\xa3\xbb\xbc\x48\x47\x59\x94\x17\x92\xce\xe3\x5d\xca\xb4\xb5\xdc\x04\x4f\x11\x83\x49\x62\xc5\x88\x04\x7c\x82\x74\x01\xea\xdd\x72\x4d\x20\x88\x2c\xb5\x39\xa5\xef\x23\xbe\x83\xe7\x96\x9b\x4a\x81\x62\xdf\xbe\xd6\x42\x14\x47\xc3\x28\x49\xf3\x89\x79\x5b\x69\x62\x21\x37\xfc\x5d\x86\x5f\xae\x55\xc2\xf5\x67\x5a\xb1\x59\x32\x71\x93\x10\x5a\x82\x72\x06\x63\xcf\x65\x62\x44\x38\x53\x07\x88\x1f\x98\xac\x87\xd4\xce\xcd\x97\xb8\xbe\xce\x04\x62\x2f\x8a\x63\x68\xaa\x81\x28\x78\xfd\xb5\xca\x00\x99\xd5\x1b\xb1\x03\x4b\x26\xdf\x20\x6a\x70\x99\xc4\xe8\xab\x21\xc7\xe1\xc3\xad\x8e\xc9\x8a\x30\x4a\xe2\x15\x1b\xbc\xc3\x19\xbc\x4b\xed\x9a\xf3\x76\xd7\xe9\x94\x40\x0d\xe6\x61\x21\x8d\x17\x1b\x34\x69\xba\x46\xf8\xbc\x35\x1a\x0e\xcf\x23\x33\x88\x4c\x12\xe6\xf6\x8d\x3a\x27\xed\x11\xee\xe7\x83\x27\x27\x3d\xe4\xf4\x81\xd6\x5f\x17\x8d\x6f\xd1\x18\x85\xbd\xc5\xa2\xfe\xc4\x16\xc4\x1d\x7c\xd2\x8f\x05\x40\x0e\x49\xa4\x0d\x49\x66\x79\x3d\x20\x25\x96\x0f\x80\xb4\x45\x3f\x17\x98\x7d\x54\x62\x6e\x60\x4b\xc2\x8e\x5f\xac\xbc\x38\xcb\x69\x9f\x14\x69\xc3\x0b\x33\xa1\x49\x2e\xd7\x75\x23\x09\x8b\x51\x37\x61\xfa\x75\xfc\xed\xdb\xe4\x2f\x6e\x57\xec\xec\x81\xe7\x2c\x9b\x41\x86\x49\x32\x9c\xab\xdf\x27\xba\xd2\xf3\x64\x6c\xce\x38\x63\x33\x1c\x65\xf9\x48\x2a\x66\xeb\x27\xed\x6e\x5e\xf7\x66\x71\x7e\x64\xe2\xd8\x06\x8c\xae\x45\x37\xe3\x44\x8f\xcf\x55\xe6\x8d\xca\xaf\xda\x4b\x0b\xae\x6d\x7f\x7a\x95\xec\xe8\xa7\xdb\x4f\x11\x01\x5d\xb2\x60\x32\x93\x74\xcc\x94\x2f\x4b\x9d\xa1\xae\x0f\x3a\x80\xf0\xd9\x82\x50\x46\x55\x61\x4b\x9b\x25\x04\xc3\x32\x5d\xe9\x89\x60\x8a\x62\x30\xec\x9b\x92\x9b\xaa\x68\xce\xdc\xec\xe7\x5a\xf3\x59\x94\x03\x78\x83\x3a\xcb\x4d\x82\xed\xdf\x24\xef\x69\x92\xbe\x15\xa3\xb3\x22\xa3\xb0\x84\x02\xf7\x07\xc5\xe4\x26\x1b\xdb\x29\xa1\xd2\xc6\x8c\xfe\xd0\x6c\xab\x3b\xea\x35\x89\x75\x43\xa4\xcf\x45\x51\x90\x49\xee\x36\xb5\xff\xc3\x5a\xbc\x4d\xb2\x10\xe5\x1d\x90\x1f\xd9\x75\x45\x14\x8b\xea\x8f\x5c\xd7\xe8\xcc\x86\xdd\x17\xc2\x8e\x55\x93\x73\x15\xd4\x8b\x24\x76\x71\x71\xbc\xf1\xc3\x4a\x37\x8d\x81\xe5\x18\x6d\xc1\x72\xbb\x72\x23\x48\x67\x2b\x7e\xf1\x21\x49\x4f\x94\xa5\x49\xd4\x01\x03\xd6\xdc\x6e\xa7\x98\x69\x5f\x9c\x0a\x6e\xd6\x00\x4a\xc1\xc4\x0c\xb3\xa6\xca\xbb\x04\x73\x3e\x53\x31\x5d\xfb\xf6\x59\x30\x41\x16\x0d\x4c\x52\x48\x08\x29\x60\x95\xc0\xef\xf6\xaf\x55\x6c\xb8\x3e\xe7\x42\x9a\x76\x1b\x13\x32\x17\x0d\xd2\xbf\xe0\xae\x5b\xdf\x2c\x6d\xa1\xac\xf2\x22\x4a\xb1\x92\x4a\xe2\x8b\xa1\xe2\x39\x05\x70\x01\xaa\xc7\x67\x82\xc6\x97\x95\x1b\xe2\x32\x55\x54\x46\x85\x79\xdc\x03\x01\x1e\x05\x85\x84\x43\xd0\x7e\xf1\x90\x9f\xec\x9f\xd3\x49\x94\x9b\x92\x77\xa8\x94\x97\x8f\xd3\x76\x80\x43\x59\x38\xdb\xb0\x60\xc8\x94\x36\xd9\xfa\xaf\x13\x70\xf5\x96\xa9\x89\x0a\x95\xe6\xd1\x1e\x06\xb7\x0d\x79\x0b\x02\xd4\x3b\x54\x6b\x19\x0e\x57\x10\x4d\x50\xc1\xc0\x29\xa7\x8c\x09\xf6\x75\xce\x06\xa9\x0c\x3e\x42\x16\xf2\xd7\xdb\xde\x60\x7d\x62\xd5\xa6\x5a\xca\xc2\xe7\x01\xb2\x18\xbd\xd1\x7e\x8d\x5d\x15\x84\xf6\xd2\xc4\x46\x6d\xea\x4e\x85\xa6\xf4\xf0\xe1\x96\x1d\x79\x8b\xa3\x97\x1d\x99\x12\xc2\x02\x70\xf9\x28\x47\x83\xc7\xbc\x1e\xad\xd8\xe6\xc3\x87\xd1\xc9\x69\x7a\x74\xe6\x0d\x0e\x6d\x2e\x93\x7c\x7e\xa3\x32\x24\x5d\xe6\x63\x45\x38\xea\xf5\xc5\xe2\x21\x7e\x39\x16\x78\x6d\xbd\x63\x0e\xee\x31\xcc\x4c\x51\xac\xec\x20\xa1\x82\x0f\x89\xf6\x13\x08\x65\x17\x0b\x7d\xf1\x90\x43\x7b\x38\xc7\xf4\xab\x7f\x89\x58\xff\x2e\xb1\xea\x9e\x0c\x87\xa8\xf2\x8e\x5d\x34\x65\x26\xaf\xe6\xf4\xfb\x35\xb0\x56\xaf\x2f\x3d\x9d\x31\x29\xec\xfd\x0b\xd6\xbd\xff\xf2\x7f\xd9\xa4\x96\xe6\x83\x09\x46\xd1\xd3\x64\xaf\xaf\xd6\x52\x5b\xc7\x18\x5f\x2c\x77\x91\xd6\x87\xed\x07\x69\x81\x98\x99\x96\x32\xf3\x32\xcf\x52\x5e\xb0\x07\x49\x37\x4c\x1d\x89\x26\x42\x7d\x6b\x01\x94\xeb\xce\xfe\xbe\x92\xd6\x79\xf6\x9d\x24\xed\x94\xae\xa6\xe1\xb1\xa3\x47\xec\x6b\x92\x6b\xe7\xf0\x16\xe2\xc8\xa0\xf6\x8f\x5c\xff\xaa\x75\x9a\xca\xd5\x60\xcf\x9c\xf0\x08\x54\x0c\xe8\xde\x99\xd6\x7c\x94\x16\xa6\xd3\x4f\xd2\x38\xed\xad\x10\x90\xe3\x08\x49\xe6\x1e\x71\x5b\x22\x8c\xe7\x4d\x54\xd8\xc6\x29\x82\x8a\x5d\x00\xd8\xe9\x50\x01\xb3\xe9\x51\xad\xff\x28\xde\xb0\x8c\x08\xda\x4d\x84\xac\xfd\x1a\x21\x57\x06\x9d\xd0\x36\xb7\xfc\x18\x98\xe2\xb6\x51\x3d\x11\xd4\xb9\xad\x20\x2a\x02\x9d\xc6\xe1\xd0\x5c\x92\x5f\x08\x3c\xbd\x5d\x61\x92\x5c\xf9\x8f\xa6\xc5\xfb\x1c\xe5\x9a\x18\x2a\x07\x1a\x55\xed\xa4\xf0\x3f\x29\x72\x1a\xef\xdb\x04\x9b\x83\x3c\xe3\x3a\x7d\xbb\x0b\x95\x5d\xf4\x4c\x6b\x60\x6c\x4d\xbe\xc9\xa3\x5e\xc2\xa5\x0c\x6b\x26\x54\x56\x08\xa3\xaf\xd3\xf3\x76\xb3\x08\x51\x94\xff\xfe\xa8\x79\xe8\x14\x9c\x27\x41\xcb\x8c\x65\xdf\xe8\x6e\x2d\x9d\xfb\x3a\x18\x93\xdc\xac\xfa\xde\x99\xf5\x2b\x8c\xe1\xf9\x5e\xe0\x0b\x17\x20\xc5\xc5\xcb\xdd\xe1\xd4\xac\x13\xd3\x8b\xa3\x9e\xee\x39\xa0\x81\xd6\x2f\xd4\x71\x26\x14\x26\x49\x4c\x9e\x1b\xc9\x8f\xd1\xab\x3b\x36\xd1\xb9\xab\x12\xb0\xcf\xed\x6e\xe5\xd1\x60\x28\x75\x39\x4c\x20\x40\x7b\x5b\xae\x09\xdb\x37\x9f\xa5\x8b\x06\x59\x91\x96\x33\x3c\x46\xd5\xc7\x7a\xb9\xc9\x96\xd0\x11\x75\x23\x34\xe5\x17\x76\x1a\x07\x0e\x24\x0c\x4d\x4d\x58\x7e\xa1\x91\x50\xd2\x32\xa2\x5e\x7a\xbc\xc6\x5c\xda\x24\x4a\x29\xc4\xca\x35\x9e\x99\x21\x82\xf0\x05\x63\x62\x5b\x24\x77\xc8\xda\x6f\x22\xdb\x17\x0d\x12\x52\xfc\xfb\x98\x32\x9f\x2a\x0e\x67\xcf\x9e\x56\x3e\xea\xf5\x84\x1f\x68\xd6\xab\x8e\x13\x64\xd7\x93\x36\xe4\x45\x36\x02\xaf\x37\x96\x1c\xc7\xef\x1f\x8e\x29\x21\xfc\x87\x84\x20\x2a\x83\x2a\x93\x6d\xb7\x99\xb1\x4b\x98\x7e\xe9\x97\x3c\x86\xb9\xfc\x44\x2d\x63\x97\x9b\x08\x6e\xf1\x0c\xcf\xd8\x89\x70\x9b\xcc\xdf\x04\x9e\xbd\x03\x70\x71\xc5\x9b\xef\xa2\x7d\x1c\x76\x46\x31\xf0\x51\x70\xed\x1f\x07\x54\x4d\xb9\x07\xc8\x80\x10\x25\x4c\xc2\xc6\x23\x43\xd0\x0c\x41\x56\x52\x67\x50\x77\xf4\x2d\x56\x33\x52\xd2\x43\xed\xe0\xd8\x2f\xbb\xb1\x83\x68\x23\x53\xe1\x55\x6e\xfa\x76\x19\x92\x39\x1c\xc5\x1f\xe2\x8f\xc2\xc7\x5d\xad\x1b\xb4\x40\xc3\xb5\x29\x23\x94\x4e\xf7\xfa\x0c\x33\x57\x6d\x26\xda\x8b\x7e\x9a\x0e\xe3\xd0\x96\x5e\x04\xf1\x14\x30\xa5\xe0\xc6\x84\x64\xf6\xb9\xfd\xad\x79\xa5\x59\x56\x8e\xd1\x86\x63\x85\x78\x3d\x78\x8c\xe6\x73\x57\xb6\xfa\x1a\xb3\x38\x58\x99\x19\x80\x85\x43\x37\x18\x02\xa0\x68\x8a\x7e\xc3\xda\x52\xcf\x90\x31\xeb\x44\x48\xab\x9a\x23\xfb\x5b\xe9\xa8\x48\x46\xa5\x25\xd3\xda\x8e\xea\x2e\x78\xb4\xb6\xcc\x07\xa2\x3a\xf5\xa0\x92\x5f\x59\x01\x87\x3c\xdf\xe2\xe9\x6c\x2e\x8d\x09\x72\x7c\x0f\x3d\x14\x04\x98\x37\x89\xcd\xf8\x0a\x0f\x5e\x5c\x9e\xd8\x1f\x4b\xf9\x62\x83\xf8\x16\x85\x56\x41\x6e\xea\xe0\x4b\xe9\xc2\x42\xd4\x31\x0f\x27\x7e\xe4\xb1\xf7\x64\x64\x10\x9f\x0b\x64\x02\x7b\x56\xf1\x13\x8f\xbb\x23\xd8\xe9\x9b\x9c\xdc\xe5\x71\x6c\x4c\x95\xac\xe6\x10\xa1\x17\xe6\x96\x04\x4e\xe3\x4e\xfb\xbd\x44\x95\x04\xdf\x9e\x24\x4a\x66\xdd\xa0\x15\x7d\x2e\xc8\x20\x80\xbb\x91\x69\x2e\x6c\xfa\x1f\x5b\xca\x0a\xc4\x7d\xd7\x49\xb5\xe8\xc1\xd8\x33\xa3\xdf\xb7\x0e\xd3\x4d\x34\xfb\xa7\xbc\x34\x66\xa4\x41\x55\x7b\xe8\xe0\xee\xd9\xd6\x42\x3c\x2a\x5c\xa4\xea\x74\x52\xdd\xcc\x65\xa3\xed\x37\xd6\x6b\x15\x9b\xf6\x8c\x25\xd2\xce\x2d\x38\xc3\x4d\x97\x80\x49\x49\x15\x7b\x7c\xcc\x36\xf3\x2b\x5f\x41\xc8\x85\x68\xee\x12\x53\xbc\x5e\x72\x07\x38\x4a\xba\xa3\xbc\xc8\x56\x96\xa3\xae\xd9\xd2\xf8\xbb\x5a\xd2\x42\xc4\x6c\x43\xa8\x7f\x0e\xe6\x6c\xb9\xb6\x1d\x0d\x51\xf1\x09\x28\x24\x3c\xea\xa7\xbf\xc2\x95\x74\x61\x41\x4a\x9c\xaa\x4a\xe1\x1b\x47\x75\x93\x65\xe5\x2e\x09\x7b\xca\xe6\xe5\xf8\x6f\xcb\x1d\x09\x48\x29\x00\x9a\xd2\x6d\xf5\x62\xc6\xe1\xd0\x2d\x25\xcb\xe6\xa3\xaf\x72\x9b\xd0\x9f\xc7\xfd\xef\x64\x61\xd7\xe4\xdb\x7d\xad\xc9\xa6\x6d\xa5\x07\x6a\xec\x99\xf6\x31\x5e\xb9\x6f\x34\xaf\x2a\xdf\x3c\xdc\xd9\xfb\xb0\x9c\x78\xf5\xcd\xb6\x9f\x9e\xfe\xf4\x13\x44\x89\x75\x79\x43\x3c\x9b\x7f\x96\xe6\x24\x6f\x58\x3f\xa1\x03\xb6\x3e\x7d\x7f\x04\x33\x04\x08\x5a\x4f\x8d\x69\x4e\x1e\x64\x84\x88\x55\xb6\xb7\xbd\x5c\xc9\x55\x8b\x1d\x73\x92\xb2\x7b\x15\x4c\xb3\x0e\x6b\x20\x7f\x29\x40\x4d\xc4\xf1\xd2\x7a\xb5\xe3\xb7\x90\xc9\xc2\x08\xbe\x32\xf6\x0c\x5a\xf7\x98\x92\x52\x35\x28\x60\x8d\xbe\x6f\x57\x09\x49\xe2\x27\x10\xbd\x4d\xf4\x81\x10\x02\xac\xa3\x36\x82\xb8\xee\x31\x74\xf0\xb0\xd8\x1f\xa3\x7c\x86\x9d\x70\x6f\xec\x25\x24\x3f\x1a\x13\x8a\x71\x1d\x27\x5a\xf5\x2b\x3c\x83\x10\xb4\x15\xbc\xd2\xbb\x50\xb2\x48\x5b\x96\xd8\x25\xff\x94\xcd\xc0\xa5\x80\x0c\xc4\x25\x9a\x22\x7b\xc3\xed\xd9\xf9\x6c\x94\xf7\xb5\x2c\xef\x34\x63\x67\xbc\x32\x6c\x4d\x2d\x38\xb5\x95\x66\x9b\xf7\x95\xbf\x85\x90\x0b\x31\xba\x5c\x13\xa2\xc4\xbc\x64\x53\x4c\x2b\xee\x82\x53\x7f\x2d\x60\x7c\x19\x75\xce\x4e\x4f\x0e\xeb\x94\xaf\x02\x3b\xf1\xde\x04\xd2\xa5\xca\x62\x02\xe4\x48\x2f\x8c\x12\x57\x32\x74\xd9\x38\x89\xf3\xd5\x54\xc2\x5a\x5d\xb3\x10\x29\x33\xa2\x76\x8f\xed\x56\xd1\xf6\xb1\x93\x29\x89\x4d\xd8\x71\x78\x71\x78\x08\xe0\xc5\xe5\xba\xe2\xae\xec\x20\xa5\xcc\x98\x4b\x7d\xcf\xae\xac\xd6\xfa\x1e\xf1\xe8\x86\xcf\x94\x3f\x83\x82\xdd\xa3\xe0\x96\x40\x05\x44\x28\xa0\x74\x43\xfa\xca\x66\x13\xe5\x04\xf8\xba\x73\xd4\x30\xdb\xbe\x8a\xa5\x72\x98\x0c\xaf\x9e\xfe\x00\xe6\x1e\x5b\x1d\xc3\xc2\x00\x7f\x9e\x42\x9d\x57\xb0\x85\xac\xec\x83\x81\x24\x1e\xa9\xc0\x73\xed\x68\x7b\x8a\xae\x07\xe0\xb9\x40\x31\xe5\xf4\x98\x74\xdc\xb7\xb4\xbd\xca\xd6\x99\x60\xf3\xe7\xc4\x1d\xdf\x61\x56\x9e\x1f\x04\x34\x63\x78\x91\x49\x29\x9b\xab\xe5\x89\xd3\x3a\xba\x3d\xd9\x8a\xa3\xf5\x69\x4b\x18\xc7\x18\xc8\xf6\x95\x16\xf0\x29\x69\x48\xb4\x8b\x58\x2c\x96\x87\x69\x86\x74\x59\x42\x7c\x3c\x88\xc6\xfb\x13\x71\x41\x98\x60\x4f\x68\xab\xcd\xbe\x07\x6d\xc2\xb9\x21\x96\x7e\xe4\x84\x2b\x35\x6a\xa5\x08\xd6\x51\xa3\xa5\x59\xd4\x8b\x12\xc2\x8a\x89\xab\x09\x7c\x61\xff\xf4\xf8\x61\x85\xc5\xc2\xe4\x45\xb4\xb0\xe2\xec\x3d\x0e\xa6\xcd\x1e\x64\x41\xbe\x37\xa6\xd2\xd6\x79\xd6\x93\x8f\xf2\xce\x08\x2a\x59\xbe\x81\x76\x0f\x73\x62\x72\x33\xfe\x24\x91\x53\xd9\x64\xa0\x63\xe9\xd2\xec\x8b\x10\xd5\xa1\x80\xa6\x29\xce\x13\x2b\x18\xb8\x65\xf0\x86\x84\x77\x45\xd9\x07\x29\x7b\xb8\x40\xcc\x9b\xd2\x78\x95\x5f\x09\x98\xf0\xd0\x63\x7d\x3a\x61\x12\x76\xa3\x30\xd9\x6e\x77\xa5\x4b\x5b\xdd\x00\xf2\xeb\x63\x22\xb7\x92\xaa\x1c\xdc\xca\xbf\xe1\x08\xeb\xac\x44\xf1\x28\x6d\x6e\x6e\x7b\x4c\xc8\x14\xb2\x36\x44\x47\xf7\x2b\x3d\x9e\xbd\x33\xad\x4e\x66\xf2\x62\x90\x26\x02\x46\x21\x51\xd2\x59\x47\xf0\xaf\x9b\xe0\x85\x34\x4a\xb4\x49\xe7\x60\x8f\x7e\x0e\xfa\xa2\x0b\x38\x32\xd3\xc9\x4c\x08\xb8\x98\xcd\x18\x10\xc5\x21\x52\x45\x89\xf8\x03\x8b\x88\xb8\x50\xd3\x3b\x23\xd4\xfc\xff\x2f\x6c\xe5\xcc\x4c\x6b\x21\x32\x56\x7b\xb3\xe1\xcb\xc2\xc7\x49\xa2\xe3\x38\x91\xb9\x0f\xd3\xbc\x18\x84\xd9\xa2\xb0\x91\x28\x99\x41\x79\xc8\xb5\x44\xeb\x03\xdb\xf9\x2c\x4d\x17\x27\x34\xea\x2e\xc1\xb2\x48\x81\x26\xf0\x15\x5c\xd4\xdc\x51\x96\x7c\x05\xce\x48\x05\x9e\x1a\x5f\xf9\x92\xbf\x76\xbc\x53\xa7\x6a\x89\xcd\x17\x46\x59\xd1\x37\x59\xd3\x97\xac\xa0\xdb\xe2\xd2\x49\x8f\x18\xdf\xd4\xf6\xb9\xea\x30\x0e\x93\xce\xa2\xd5\x92\xd4\x34\xde\x6e\x3f\xd5\x2a\xac\x11\x2b\xee\x9a\x25\x13\xa7\x43\x1c\xea\xd9\x5a\xb1\x7d\x26\xe1\x8d\x0a\xd3\xb5\xf8\xc3\x09\x55\x78\x58\x36\xf0\xeb\x3b\x97\xe7\x2d\xec\xeb\xd6\xfb\x2b\xaa\xb1\x7c\x3a\x85\x3b\x6e\x00\xbc\xcc\xed\x9e\x6b\x1d\x3e\x4c\x15\xfe\xb7\xa8\xc2\xff\x16\x31\xd8\x0f\xb3\xb4\x97\x85\x83\xfc\x31\x5f\xae\x7d\xdc\x32\x37\x21\x36\xfe\x7a\xe0\xe1\x5c\x57\x60\x6f\x15\xca\x43\x74\x7d\xc2\x30\x88\xb3\xb9\x79\xd5\x93\xed\xde\x45\xac\xa1\x1a\xa3\x76\xdb\xb9\x6e\x74\xf9\x4a\xa5\xd8\x8f\xb0\x15\x00\xe3\xa3\xb0\x19\x7a\x2c\x7d\x06\x3b\x0c\x4b\x4b\x66\x23\x19\x98\x87\xa3\xa4\xac\x78\x1e\x6f\x12\x91\x6b\x03\x23\x53\x72\x63\xc3\x60\xf9\x29\xd2\x6f\x3d\x5a\x39\x2a\x73\xbb\x2d\x25\x6c\x83\xd4\x38\x21\x18\x23\xd7\xab\xde\xd0\xcc\x87\x9d\xc5\x79\xab\x66\xe9\x95\x18\x7e\x2d\x20\x5e\xdd\x5f\x9b\xf0\x09\x9f\x5f\xfc\x3c\x5a\x59\x2a\x92\xeb\xe7\x54\x85\x38\x04\x91\x40\x55\x6e\xf8\x0b\x4a\x80\xd7\xf0\x8c\x83\x32\x5f\xaa\xb3\xf1\x1e\x2a\x90\xa5\x65\x9e\x64\x68\xa8\xf4\x1d\xaa\x2a\xbe\x43\x6a\x1b\x83\x30\x4a\x8a\x30\x4a\x64\xbe\x1c\x46\x59\xa8\x5f\x58\xc7\x40\xda\xf3\xb6\xfd\x8b\x17\x7f\x26\xf0\xd3\x7f\x22\xd9\x80\x8d\xfa\x7e\x85\x75\x68\x66\xa6\x15\x46\x0d\xe2\x4e\x12\x01\x22\x7d\x17\x9f\x74\x88\xea\xd2\x7f\xa4\x71\xd4\x75\xba\x0b\xb0\xc3\x0f\x58\x76\xec\x41\x9d\x94\x7e\x9c\x2e\x9b\xac\x69\xdf\xb6\x48\x68\x61\x1f\x28\xf3\xb1\x6f\x90\x94\x21\xb1\x4f\x30\x46\x3d\xb3\xcd\xfb\xfa\xd7\xed\xb6\x40\xe4\x81\xfe\x0e\xde\xf8\x1f\xd1\xa8\xc8\x09\x1a\x92\x84\xdd\x75\x13\xb1\x7e\xbb\xfc\x11\xf9\xa2\xcc\xe4\x69\xbc\x24\x2a\x6d\xf8\xd9\xab\x34\x0a\x72\xd5\xe1\xef\x8a\x7e\x94\x6c\xf3\xd8\x55\xe1\xd8\xc2\x3b\x7b\x30\x26\xac\x37\x58\xec\xd1\xad\x78\xb2\xed\xb1\x1a\x9b\x57\xa9\x8e\x7c\xde\x73\x8a\xfd\x8d\x73\x95\x25\x2b\xe3\xd6\x38\x5d\x92\x3d\x5e\x2b\x93\x4b\xac\x99\x79\x16\x9a\x38\x6a\x30\x37\xfd\xda\x98\xf6\xde\xda\x43\xa5\xec\x06\xe1\xcb\xdd\x10\x5a\xc1\xda\x77\xf1\xe1\xb4\xd4\xa8\x10\x12\xdd\xa7\xba\x47\xdf\xc4\x43\xd3\xdd\x6e\xff\x17\xc3\x4e\x77\x27\x98\xf8\x4e\x4f\xca\x54\xb9\xa4\x41\xc6\xf2\x9c\x10\x50\xb9\x1d\xf0\x66\xc1\x14\xe3\xe4\x88\x3c\xdf\x5f\xa3\x5d\xd7\xe0\x19\x66\xe9\x70\x25\x36\xc9\x84\x0d\xf8\x23\xc2\x84\xfe\x91\xf3\xdd\x5d\x63\x86\x31\x44\x51\x60\xd1\xee\xc2\x88\xb9\x29\xca\x83\x54\x37\x57\x06\xe7\x7f\xf4\x49\x2a\x55\xac\xd7\x72\x68\x16\x61\x0c\xc9\x1c\x4f\x6b\xf9\x23\x9c\x4b\xb9\xa9\x54\xc8\x74\xcd\x7b\x69\x1c\x8f\x72\xb0\x27\xcb\xdc\x3b\x87\x1d\x67\x49\x06\xbc\x1b\x2e\x89\xe9\x82\x6b\xfa\x21\x22\x02\xb9\x61\x61\xbe\x74\x94\x14\x53\x9e\x37\xe6\x5f\x12\xe5\x11\xfa\xad\x2a\xca\x5f\x6e\x60\x55\x18\x74\x0c\xd9\x03\x9b\xc0\x45\x4b\xa0\x29\x47\x9a\x71\xd5\xb7\x39\xf7\xae\x07\xbe\xa4\x78\xae\xb6\x0b\x96\x9b\x62\x34\x44\xb2\x88\xec\x03\x53\x41\x72\x5d\x33\xbd\x3f\xdb\x8a\xf2\x34\x0e\x05\x9a\x33\xcb\xda\x06\x6e\xae\x39\x78\x9c\xe4\x01\xa3\x82\xd8\x3c\x7f\x40\x6c\x9e\x3f\x60\x10\xf9\x7c\x92\x66\x83\x10\xd4\x52\x6e\x3c\x6a\x6e\xb7\x1b\x8f\xf2\x14\x28\x71\x1a\x16\xfd\x3c\x1d\x98\x89\x90\x2b\xe0\x90\xab\xd2\x5c\x9c\x7d\x6e\x7f\x2b\x1c\x15\xe9\xc0\x19\x40\x6c\xff\x4d\x38\xd9\x72\x43\xd5\xdc\xa5\x28\xef\x9b\x4c\x4e\x26\x5e\xdb\x5a\x40\x74\x80\x6b\x2e\xd1\x58\x4a\xcb\xdc\x61\xca\xee\x20\x18\xd2\xad\x04\xe9\x7d\xac\xed\x66\x93\xbf\xd3\x58\xa5\xb8\xec\x0e\x1d\xcb\x51\x12\x97\x69\xb8\x7d\x09\xac\x9a\xa8\x52\xd6\xbe\xfe\x78\x9a\x05\xf2\xfe\x04\x07\x11\xa7\x03\x84\xfa\xc8\x46\x3f\x20\x47\xd4\x0d\x93\x5e\x8c\x3e\x13\x0d\x3b\xd2\x44\x64\x4d\x88\x1d\x25\xf9\xd0\x8a\x84\x36\x7c\x22\x73\x84\x02\x95\x23\xac\xd0\x23\xe0\x33\x56\xaf\x5f\x23\xe9\xc3\xb7\x89\x69\xf8\x7a\x7d\xd3\x37\x36\x61\x16\x26\x1d\xb1\x09\x4e\xbd\x7e\xc6\x0f\x1d\x3d\x55\x75\x4c\x2f\x37\x89\x79\xa5\x69\x43\x22\xf0\x19\xad\xda\xdf\xc4\x49\x99\xaa\x48\x66\xcd\xcc\xb4\x86\x69\x1c\x75\x44\x1e\x58\x35\x34\x7d\x66\x78\x17\x1b\x49\x13\x4f\x5f\xb9\x34\x3d\x51\x63\x75\x19\xbf\x93\x4b\xb9\xe8\x8c\x56\xd8\x7d\x61\x94\x17\x5b\xfd\x44\xd9\x0d\x22\x78\x47\xaf\x13\xb6\x89\x4b\x32\x02\x2d\x90\x69\x46\xe6\x56\x7a\xbc\xbd\xd3\x59\xc3\x38\x5a\x32\xd9\x56\x5f\x94\x05\x93\x97\x06\x7b\xe5\x1b\xd5\x07\xb3\x4f\xa9\x98\xaf\xf2\xe3\x51\x82\xdb\x45\xc2\xc7\xac\xe0\xf0\x42\xd8\x59\x94\x56\x35\x67\x06\x9a\x00\x7c\xda\x27\xf4\x5d\x88\x31\x65\xe0\x85\x6e\x90\x90\xb9\x6f\x45\xff\xdc\xb9\xdd\xc5\xb0\x48\xed\x0f\x39\x1d\xec\x19\x27\x0e\xcb\x6a\x0c\x9d\xa8\x58\xd9\x6a\xb7\x35\xe2\x1c\x8c\x69\xe1\xe7\x7e\x82\x33\x87\x16\xd4\x47\x48\x65\x94\x52\xba\xfc\xfa\x8c\xd2\x43\x13\x64\xdb\xea\xc3\xd0\x35\x66\xc9\x24\x53\x14\xeb\x5f\x25\x21\xa3\xa9\x36\xe9\x72\xb3\xdc\xfb\x79\x42\x4d\x97\x36\x67\xb9\x1f\x0a\x80\x57\x66\x3f\x51\x7d\x90\xad\x47\x29\xd5\xc5\x1a\x85\xf6\xe7\x5b\x49\xb8\xa8\xa9\xa2\xab\xbc\xba\xa4\xee\x06\x11\x6a\x2f\x45\xa6\x48\xc2\x41\x83\xdf\x25\xe2\x76\x7d\xb1\xde\x76\x46\xc9\x12\x02\x21\x9a\x46\x03\x56\x50\xae\x6b\x80\x7f\xd3\xad\x3c\x4e\x97\x6d\xcc\xab\x0a\xa8\x9e\x07\xe3\x7d\x1a\xcc\x18\x25\x51\x9a\x3c\x6e\x1f\x43\x88\xeb\x03\x5f\x54\xfe\x10\x6f\x04\xdf\xfe\x24\x51\x55\x5c\x0b\x68\xce\x55\x90\xa8\x72\x63\xb7\xaa\x0b\xf9\x5c\x7e\x76\x82\x70\xc4\x57\x26\x64\x14\x98\x78\x55\x94\x22\x54\x07\xd4\xab\x55\x5c\xa9\x80\x70\xf6\xce\xb4\xb2\xb4\xb3\x68\x16\x4c\x1c\x97\xf9\x29\xab\xd0\xba\xe2\xd5\x65\x46\x0d\x7e\x1c\xf8\x82\x0b\x54\x91\xa2\x1c\xa8\x5d\x27\x4b\x2e\x91\x95\xc2\xa9\x48\xb0\xd3\xcc\x17\x8f\x93\xc3\x17\xc6\x28\xec\xd5\x37\xf0\xe6\x74\x6a\x9b\x88\x10\x4e\x60\x9d\x30\x98\x71\x9d\x28\x58\xb7\x59\x1b\x2d\xf2\x47\xbc\xc7\x5e\x1b\x7b\x09\xbd\x1b\xc1\xc6\xfc\x53\x15\x95\xed\xfa\x39\xd8\xcd\xac\xab\xeb\xac\xb1\xce\x6e\x96\x0e\x01\x7c\x70\xc4\x64\xac\xa3\xef\xbb\x28\xef\x8c\x7d\xbc\x31\x1f\xc6\x16\x74\x88\xbd\x26\x99\x8c\x7d\x0c\xcd\x6a\xfc\xd6\xb1\x4a\x80\x80\xa9\x21\x50\x7b\x80\x12\x93\x1b\xab\xe2\x21\xe3\xf2\xb3\x55\x49\xdb\x1b\xb3\x73\xce\x9a\xe4\x45\xb8\xb2\xdd\x2e\x23\x52\x0f\x70\xaa\x38\x05\x69\x27\xf1\x7b\x69\x92\xb7\xc5\xcb\xe5\x6d\xb7\x01\x3d\x76\xc0\xdb\x58\x20\xc0\x4b\x6e\x23\xa3\x51\xb2\xd6\x9a\xa2\x7a\xd7\x0c\xd2\x4e\x16\x16\x8a\xf3\x80\x3b\x17\xa2\x5a\xbc\xd5\xaf\x73\xa6\x76\xad\x8e\x09\x47\xe6\x45\x1a\x9e\x0f\xe0\x02\x4d\x26\x5f\xa0\xb4\x60\xd9\x84\x45\xdf\x64\x20\x1d\x44\xde\x7a\x03\x9f\xe5\x58\x26\x37\xa2\x2d\xdd\x40\xa7\x07\xbf\x9c\xa4\x76\x78\x3a\x34\x59\x58\x44\x4b\xfa\xde\x60\xa2\x8e\x05\x84\x5e\x3f\xc6\xfa\x81\x51\xae\xda\x63\xc4\xcd\x01\x97\xa5\x00\xa8\x3a\xeb\xd6\x0d\x97\x13\xa9\xb6\x09\x8f\x41\x30\x41\x00\xfa\xb0\xc0\xba\xc8\xa2\x24\x2a\x56\x28\xda\xb8\xc7\x13\x80\xf7\x6a\xcb\xf7\xd1\x22\xe6\x00\xe5\x2d\xde\xa5\xa8\xf7\x17\xec\xab\xb6\x5b\xe3\xd0\x13\xf6\x20\x29\xa9\xfe\xce\x49\x6e\x88\x6d\x78\x9f\xd4\x60\x7e\x56\x22\x8a\x23\x63\x8f\xb4\xc2\x14\x0a\xfe\xfd\x4f\x50\xe0\x04\xd4\x51\x66\x0d\x10\x76\x6f\x6e\xd3\x18\xd9\x65\x87\xe2\x58\x4a\xe3\x51\x52\x84\x59\x94\x0f\x9a\x8d\x2f\x1e\xf2\x5c\x6c\x33\x33\x12\xda\xdf\xc3\xd6\x41\xf3\xe0\x2c\x4f\xe9\x14\x45\x9a\x25\x66\x65\x0b\xad\xc5\x79\x94\xc9\x54\x89\xd6\xc7\x2d\x53\x6d\x4a\xeb\xed\x09\x92\x9f\x09\x36\xa2\xc1\x74\xd5\x87\x99\x59\x8a\xd2\x11\x66\x0d\xb4\x5b\x45\xa3\xb2\x2c\xd4\x01\x4d\x8f\x29\xdf\x71\x58\xc3\x62\xc1\xf8\x82\xc8\x40\xae\x89\x21\x60\xad\x76\x97\x58\x65\xae\xa6\xe7\x85\xb8\x82\xf6\x9b\x6e\x92\x86\xe3\xc9\xfb\x36\xa1\xe4\x3a\x99\x15\x29\x98\xf2\x34\x3c\x3b\x57\x89\xa2\xf7\x4d\x22\x33\xbc\x4c\x3a\x0a\xd7\x9e\xa8\xa4\xa1\x07\x77\xb7\xa2\xa4\x1b\x2d\x45\xdd\x51\x18\xdb\xb4\x89\xc1\x0e\x30\x47\x7f\x3a\xc9\xde\xa9\x75\x94\xa1\xc9\x2c\xbd\xd1\x92\x49\x4c\x9e\x13\x0b\xee\xbb\xc4\x82\xfb\xee\x98\x91\x5b\x83\x74\x49\x41\x5e\x8a\x05\x60\x2b\xfb\x94\x2f\x88\xa6\x79\x6e\xc4\xdd\xcc\xed\x96\x08\xff\x46\xe0\xd1\xf8\x37\x6a\xbc\xf8\x4c\x2b\x4f\x17\x8a\x86\xe7\xe2\x07\x3a\x40\xae\x89\xfa\xa1\x1b\x16\x50\xd0\x5d\xbf\x62\x4d\x22\x36\xf3\x15\xce\xa8\xaf\xa0\x06\x8c\x1d\x34\x4b\x74\x12\xb3\xa5\x97\x5e\xbf\x32\x91\xd3\x2d\xc9\xd9\x53\xc1\x1d\xbb\x19\x84\x35\x9d\xa8\x3e\x21\xaa\xaa\x49\x99\x7f\x9c\x7c\x39\x5c\x61\xaf\x0a\xeb\xa6\x2e\xd6\x87\x86\xcb\x51\x62\xc8\x43\x5d\x20\xfa\xfb\xbb\x6c\x21\x4e\x13\x07\x50\x6e\x92\x50\x53\x17\x84\x33\xb7\x58\xe9\xfd\x56\x0d\x17\xeb\xb3\x2d\x31\x90\xda\xc7\xd1\xe0\xb3\xe1\x94\xff\x70\x60\x55\x2f\xf9\x93\x14\x1e\x75\xfa\x61\x1c\x9b\xa4\x27\x42\x8d\x12\xde\x33\x19\xf4\x85\xb1\xc7\xf2\x2c\x74\xc3\x29\xc2\xdc\x5f\xe4\xc9\x5b\xcb\xd7\x2e\xfe\xe0\x16\xf9\x86\x5b\x75\x83\x84\xbd\x2c\x5d\x36\x19\x7a\x20\x8e\xde\xdf\x61\x8b\xcf\x07\x9f\xf2\x15\x68\x53\xd8\x21\xb7\x41\xd4\x09\xe3\x29\x06\xda\x13\x1f\x4b\x73\xd5\x17\xed\x9f\xb0\xc1\xb0\xb2\xc2\xd5\xea\x2f\x85\x9e\xbc\x1c\xb1\xcb\x65\xd2\xac\xbf\x0c\x6d\x01\xa5\xe3\xf8\x3c\x77\xeb\xce\x71\x69\xea\x1c\x01\x43\xbe\xbc\x67\xaf\x05\xb7\xc2\xb7\x22\x2c\x9e\x40\x5c\x21\x16\xda\xd4\x26\x13\x1e\xf5\x46\xa6\xe1\x49\x1d\x27\x29\xda\xbd\x3b\x5b\x8a\xba\x26\x2d\xc2\xa1\x11\x70\xa8\x9b\x05\xf5\xc3\xf2\xb7\x69\x8e\xe0\x6a\xdd\x14\xe6\x62\xda\x0d\x17\xb1\xda\x0a\x6f\xa5\x91\xbc\x35\xd7\x8a\xee\x87\x49\xb7\x6f\xe2\x2e\xcd\x05\x81\x02\x48\x01\x8a\x34\x43\xd4\x8f\x86\x16\xdd\xb7\xd5\xd3\x52\xbc\xc6\x24\xce\x60\x5b\x84\x45\xda\xd4\x9e\x50\xc8\xb5\x11\x0b\x9c\xfe\x79\xc4\x93\x72\x33\x01\x49\x4a\x92\x95\x29\x9f\x0c\xff\x8c\xb1\x46\xc8\x4b\x91\x3e\x61\xc0\x13\xa1\xd4\xd7\x89\x3e\x49\x09\x3b\x5c\x31\x63\x03\x61\x07\x09\x66\xc5\xdd\x6d\x0d\x47\xcc\x82\x99\x01\x87\x83\xf2\x74\x55\x37\xa8\xfd\x2b\xc1\x07\x1c\xf3\x84\x52\xc8\x9d\x31\xad\xc1\x49\x8a\xc9\x3b\x06\x5a\xe6\x61\x61\xf2\x29\xe6\x37\x12\x80\x30\x02\xe4\xa3\xd4\x0b\xdf\xc6\x3e\xf9\x2e\x25\xf3\xfd\x62\xc5\x6a\xca\xa1\xc9\x7e\x1f\x14\x8f\xaa\xf3\xe3\x1b\xfe\xaf\x13\xff\xf0\xdb\x18\xdd\x51\xde\xf8\x8d\x7b\x64\xfa\x40\x6b\x3e\x8b\xcc\x82\xf5\xa6\xb0\xd8\x5b\x6d\x18\x22\xd7\xab\xde\x99\xf6\xd3\x74\x11\x5d\x2c\x75\xd2\xff\xd8\x2e\x8c\x5c\x13\x11\xdb\xbc\x1d\x81\x9b\xf2\xa9\xf9\x9b\xfc\xe6\x2f\x61\xa1\xe4\x7f\x02\xda\x06\x97\xa8\xb2\x56\x98\x2c\x8b\xe6\x63\x21\xea\xc6\xaa\xbe\x46\x3c\xa5\xaf\x91\x5d\x2e\xfa\x51\xfe\x0b\xf6\x13\x74\xe4\xa2\xf1\x95\x2f\xf9\x9a\xfc\x41\xc5\x1d\xdf\xb4\xf8\x77\xa5\x4e\xb0\x18\x03\xfc\xb1\xff\xdb\x66\x74\x22\xf0\x1d\x34\x0e\x3c\xe7\x2a\x24\xf6\x0d\x21\x39\x14\xc2\x4b\x55\x9f\xf4\x71\xcb\xbf\xb5\x99\x19\xb0\x6d\x82\x07\x45\x52\x7f\xc3\xea\x6a\x20\x3d\xf8\x73\x2e\x3f\x5f\x44\xc0\x02\x87\xb7\xd5\x86\x7a\xa8\xe2\x36\x05\x6b\x81\x36\xd9\x31\xc4\xa1\x78\xa9\xc7\x6c\xd3\x01\x0f\xff\x6f\x28\xa6\x7d\x1f\x60\x52\x57\x05\x75\x1c\x89\x8f\xb5\xa9\xef\xf4\x5f\x63\x43\xe3\x81\xbf\x3a\xa6\x0a\xfc\xab\x3c\xa4\x7f\x09\x59\x97\xa2\xc6\x1e\x16\xf9\x2e\x45\x9d\x45\xc7\xee\x8f\x93\x2e\xc3\x30\x72\xd3\xf6\x20\x89\x38\xcc\x7a\x26\x5e\xd9\x5a\xbe\x06\x60\x6f\x30\x76\xa3\xc1\xbc\xcf\xbe\x05\x5b\x24\x3f\x44\x83\xa6\xc2\xad\x04\x33\xfd\x6d\x0f\xf7\x2f\x8a\xa8\x23\x0f\xc1\x14\x66\x0a\x38\x55\x1c\x76\x92\x66\x03\xf9\x31\xf4\xc4\xef\x53\x7f\xfc\x7e\x65\xc4\x6c\xdf\xbe\x56\x98\xa1\xf8\xeb\x78\xec\xdd\x5c\xc9\xb9\x3a\x6c\x74\x66\x12\xb3\x5c\x6e\xf8\x83\x2a\x3b\x7a\x76\x4c\x9d\x07\xa8\x28\xa2\xb0\xb6\x8e\x3a\x1d\xb2\xaf\x2d\xab\x1a\x29\xe6\xa3\xf9\x5e\x96\x8e\x86\xa2\x83\x4c\x65\x7a\xcf\xd0\x44\x85\xbb\xb1\xa7\xbb\x5d\x0a\x3b\x28\x0e\xef\x99\x56\x72\xd2\xc0\x9f\xe5\x57\xa9\xde\x92\x8f\x86\xc3\x34\x2b\x10\x00\xc2\x82\xc0\x75\xcb\xb5\x03\x70\x75\xd2\xe5\x30\xeb\xca\x8a\x69\x8f\xd6\x83\x25\x2e\x52\xac\xdf\x8b\xd3\x79\xf0\x02\x12\xa8\x21\xe0\xe1\x03\x7f\x4a\x4d\xaf\x07\xee\x39\xd2\x27\xdc\xef\xcb\x28\x6e\x7c\xe9\xde\xc4\xf8\x58\x79\x36\x80\xdd\xdb\xd4\xa6\x3e\x65\xba\x64\x4a\x27\x84\x42\x93\x0e\xd2\xd1\x50\x1d\xb1\xad\x0e\xcb\x88\xe3\xb1\xf2\xdd\xc0\x57\x5c\x87\xfd\x61\xfe\x20\x6c\xb3\x37\x83\x09\xa9\x28\xfb\x78\x88\xda\x36\x24\x49\xbe\x39\x71\x0c\xc8\x17\x74\xa8\x85\x86\xcb\xc1\x0e\x3d\xad\xd5\x3b\x24\xff\x76\x39\xf0\xec\xba\xb7\x2a\xbd\xe6\x03\xcf\x95\x51\xe6\xb0\xe1\x9b\x8d\x10\x04\x91\xeb\xf1\x63\x1e\x0c\xdc\x91\x1e\xaa\xcc\x99\x07\x34\x09\xf5\x67\x34\xb8\x32\x1f\x8a\xe4\xb5\xe3\x30\x72\xfd\xdb\xab\x54\x01\xf9\x26\x95\x56\xe3\x70\x39\x4f\x93\xe6\x84\xd8\xf8\xdc\x6e\x69\x3d\x5e\x23\x1d\xd0\xdb\x13\x7e\xdb\xf4\xc2\xad\x3e\xb9\x10\x8c\xb7\x92\x6f\x5a\x8b\x03\x57\x87\x94\x45\x71\x1e\x5e\x71\xe6\x07\xf0\xd3\x28\xb8\xdd\x0b\x9e\xf6\x15\x19\x4b\x18\x5e\x98\x2c\xc5\x14\xb6\x8e\xc6\xdb\xaf\xa2\x63\xf2\x35\xb5\x8b\x85\x30\x29\xc2\x7c\x85\x66\x94\x9a\x36\xdd\x94\xeb\x55\x27\x69\x9c\x0e\x06\xa3\x24\x92\x99\x50\x6f\x42\x7e\x27\xf0\x13\x3f\xbf\xe3\x86\xe8\x47\x49\x9c\x2e\xa9\x74\x03\x5b\x34\x35\x5c\x7f\x99\x30\x96\x71\x9a\xa5\x0b\xf1\x28\xcd\xd2\x4e\x98\xcd\x3b\xa1\x73\x04\x16\x67\xe9\x0b\x00\x95\x8b\xca\xd5\xad\x9a\xd9\xac\xd9\x56\x37\x1d\xcd\x17\x72\x2a\x05\x4e\x1b\xf8\x47\xb8\x40\xf9\xdb\x52\x94\xf5\x22\xcb\xfe\xea\x1c\xf9\x3d\x8a\x14\x7f\x0f\xeb\x0c\xbf\x7d\xbf\x8e\x0a\xb8\x1f\xf5\xfa\xf2\x49\xf0\x64\x17\x88\xeb\xb3\xaa\xf1\xb7\x67\x4f\xab\x1f\xe5\xc3\x30\x11\x7a\x4b\x2d\x75\xdb\x8f\x51\xf5\x84\x2a\xc9\x6c\xab\x9f\xc6\xb1\xc9\x1a\xbe\xd6\x7f\x9a\x28\x28\x6b\xe5\xb5\x17\x93\x74\x99\x85\xd0\x4e\x05\x94\xdf\xb0\x68\x5d\x24\xb1\xac\x02\x0d\x89\xe1\xea\x72\x5d\x5d\x66\xc5\x08\x4f\x18\x82\x4e\x8c\x90\xc8\x75\x25\x68\x9a\xdb\xdd\x5a\x0e\x5f\xd2\x8a\x38\xd0\x88\x38\x4b\x72\x5d\x66\x4e\xae\x9a\x98\xec\x2a\xbf\x20\x66\x39\xb6\xb5\x49\xf7\x47\xe8\x99\x11\x12\x00\x8e\x82\x92\xce\x3d\x38\x42\xe1\x9b\x1f\x93\x08\xde\x65\xc6\xa6\x9d\x61\x49\xdb\xbb\xc4\xa1\xf3\x9d\xb1\x6f\x32\x80\x14\x02\x45\xc6\x7b\xf6\xe8\xe2\xfa\xda\x98\x3c\xcd\x49\x98\x44\xd4\x80\xef\xdb\xb2\x24\x02\x8d\x9d\xed\xcd\x9f\x73\xe3\x18\x9e\xb2\xe3\x05\x93\x8d\xf2\x30\x36\x03\x7a\xdd\x7f\x38\xf6\x09\xf4\x1f\xd6\xcd\x39\x14\xa5\x1d\xce\xd1\xff\xd2\x69\xb1\x09\x81\x55\xfb\xd5\x90\x70\x7c\x6d\x02\xbc\x97\x65\x91\x0a\x5c\x6a\x7d\xd5\x3e\xbc\x56\x64\x69\x42\x62\x94\x85\x45\x48\x2a\xb8\x40\x4f\xca\x75\x05\xd2\x66\x07\xd7\x4b\xdf\x9d\x17\x90\x88\x86\x8d\x04\xa8\x56\xae\x09\xef\x69\xeb\x22\xa5\xaf\x3d\xa8\x48\x8a\x6f\xd9\xb7\xae\xe4\x1e\xfe\x27\x87\x59\xba\x10\xc5\xa6\x31\xd1\x41\x98\xe8\x2d\xec\xd0\x20\x26\x9a\xaa\x22\x61\xf0\xea\x20\x61\xe5\xda\x63\xe5\x2e\xd0\xcc\x7c\x27\x41\xe7\xa2\xce\x62\x83\x2b\x5c\x5c\xc8\x7a\xc2\x01\x05\x87\xa3\xf9\x38\xea\x84\x09\x48\x6b\xe0\x51\x6f\x0b\x9e\x11\x81\xe0\x15\x22\x8d\x60\xa6\xe2\xa3\x0e\x74\x3a\x0c\x4b\x33\x5c\x5a\x96\xa4\xe9\x77\x95\x60\x45\xd1\x85\x7a\x87\xfa\x21\xc7\x37\x92\x49\x1c\xdc\xdd\x7a\xe6\x93\x7e\xa8\xe7\xa7\x36\xe1\xd2\x6a\x8d\xfd\x7e\xda\xbd\xb2\xa7\x84\x66\xb1\x15\x85\xf3\x3e\xc3\x31\x8f\x22\xeb\x74\x8d\xde\x99\x19\xe7\x60\x6c\x48\x8c\x27\xfa\x2a\x47\x95\x17\x02\xcf\x3a\xf0\x03\x81\xf3\x6b\x27\xde\xd1\xaf\xfd\x77\x17\x49\x26\xf2\xff\xb0\x0e\xca\x4d\xcf\x79\xe6\xe9\x1f\x62\xf3\x22\x26\x3a\x65\xf7\x81\x92\x16\xd8\xb4\x4c\xa4\x0f\xe1\xf8\x10\x84\xff\x33\x84\xda\x3a\xef\x5d\x93\x8b\x75\x33\xad\xd0\xe9\x6c\x89\x47\xd8\x5f\xa2\x1c\xd7\x4a\x49\x63\x6c\x49\x51\x7f\x76\x2d\x34\xac\xb0\xeb\x07\x37\x77\x9e\x48\x3a\x6f\x05\x1e\x43\x70\x9b\x84\x8e\xba\x26\x8f\xb2\x70\x3e\x36\xa8\x8d\xc0\xd1\xa3\x44\x2f\xd7\xc1\xa7\x3c\xb2\x33\xcc\xe2\x28\xb4\x5c\x01\x19\x18\x4b\x34\xb2\xb0\xbf\x0c\x40\xc8\x5d\x82\x42\x9d\x98\x98\xe1\x28\xc2\x97\x1e\x2f\x5f\x82\xea\x37\x97\x81\xab\x30\x0c\x8e\xa9\x6c\xff\x20\xa0\x21\x28\x8c\x6d\x20\x24\xdc\x86\x41\x7d\xc4\x5f\xcc\x92\x75\x05\xe1\x97\x88\xf3\x5b\x13\x28\xdb\x1c\x27\x0f\x16\xf8\x72\x40\x7c\x47\x3f\x26\xf4\xa3\x50\x47\xc0\x82\xdf\xa5\xb8\x75\x68\xc2\x82\x66\x3d\x8f\xd2\xac\xe7\xd1\xba\x19\x7a\x3b\xb0\x1c\x75\xa2\x50\xb5\x8b\x31\x0f\x78\x9e\x38\xb6\xce\xbb\x3a\xfb\x30\x4b\x87\x59\x64\x0a\x55\xca\xc3\x01\xc7\x29\x92\xeb\xe0\x29\x52\x35\x4c\xd2\x51\xd2\xd1\xd2\xac\x76\x4c\xca\x1f\xd6\xb6\x4a\x8d\x6f\x1e\x66\xe9\x60\xe8\x38\x69\xb4\x5b\x35\x01\xc7\x7e\x82\xd0\x94\x45\x11\xe5\x69\x22\x18\x12\x1c\x3b\x61\x0b\x91\x1b\x27\xd7\x3b\x4a\x16\xe2\x70\x11\x22\xaf\x68\x0a\x9c\x0e\x3c\xf6\xe7\x34\xf7\x7a\x7b\x49\x9a\x29\x70\x58\xc4\x54\x03\x5f\x5f\x7a\xcb\x05\x57\x49\x9a\x9b\x6e\xb4\x04\x0a\x13\xa4\xa1\x1f\xd9\x33\xab\x3a\x2d\x4c\xbc\xe6\x6b\xa5\x67\x27\x60\x95\xc5\xa8\x98\x50\xac\x3d\x3b\x41\x4d\x43\x5d\xe2\x5e\x18\x25\xf9\x56\xbb\x21\x10\x79\xbd\x16\xf8\xce\xff\x55\x66\x6e\xba\x1b\x50\xf3\xea\xec\x98\x13\x42\x4f\xb8\x79\xbe\x86\xe3\x72\x5a\x88\x0a\x1a\xbe\xe9\x8b\x50\x4f\xae\x57\x27\xe6\x9b\xc2\x0e\x5e\x92\x56\x1d\xcb\x1f\xd4\xa2\x23\x8d\x28\x44\x59\x1c\x25\x26\x9f\x2a\xcf\x8e\xa0\xa4\x70\x5c\xec\x1e\x7f\xff\xc9\xb6\x75\x66\x8e\xf0\x50\x7b\x16\x8f\x3e\xb9\xea\x4b\xba\xbf\x94\xfc\x52\x83\x77\x32\xb1\xb3\x1d\xdd\x08\x1b\xfe\xe2\xa1\xd6\xc1\xdd\xcf\x36\x3c\x6f\x33\x72\x2d\x6d\x5c\x38\x85\x9d\x6c\x94\x83\x5c\x1e\x8b\xf6\x26\x4c\xb7\xf6\x65\x1a\x8e\x8e\xee\xda\x43\x01\x82\xbd\x38\x7c\x09\xf0\x0b\xa7\x5c\xe2\xcb\x0a\x97\xea\x82\xfc\xbc\xc8\xd2\x45\x25\x09\x9e\x00\x21\xcb\x4d\x25\xdc\x3b\x34\x6b\x59\x5e\xed\xcc\x2b\x5e\xe8\xfb\xb0\xd2\x72\xe3\x98\x3b\xfb\x61\xb6\x04\x36\x27\x9f\x82\xbd\x87\xef\x24\x37\x95\x88\xe2\x99\x56\xde\xe9\x9b\xee\xc8\x89\x6b\x63\x7f\x5e\x61\xde\xd9\x2b\x9e\x0d\x28\x4b\x43\x84\x13\xc8\x46\x8f\x8f\x89\x52\xee\x78\xe0\x39\x14\x46\x11\x48\x88\x10\x5e\xfd\x9c\x82\x9a\xeb\xa4\x3f\x73\xbe\x26\x6f\x68\xcd\xc7\x69\xe8\x0e\xbf\xd2\x71\x35\x88\xa7\xeb\x69\x42\x9f\x77\x4d\xb6\x14\xc6\xa3\xf2\xc7\xbd\x0a\xcf\x65\xb0\xc4\x2b\xf4\x80\x8e\x4f\x66\xa4\x7d\x80\xb8\xf5\x24\x4b\xa4\x9d\x0c\x36\x92\x79\xee\xdb\xd7\x1a\xf6\xc3\x6c\x10\x76\xcc\xa8\x88\x3a\x61\xdc\xa4\xd7\xc4\x8c\xf5\xa0\x1b\xd1\xfa\xe5\xc3\x1a\x81\xf3\xe9\x68\xa5\x37\xd2\xde\xb0\xf2\xca\x4d\x30\xce\xf9\x30\x3c\xca\xf2\x47\xca\x05\x54\x25\x22\x1e\x2e\x15\xb1\x05\x91\x00\x60\x68\xc5\x7d\xfb\x50\xa2\x11\x4d\x5d\xcb\xdb\x8c\x67\x03\xef\x85\xf2\xc3\x78\xa5\xb6\x37\x6d\x44\x2e\xd7\x44\x34\x58\x98\x5e\x26\x2c\x3b\x6a\x7e\x19\x45\x40\xe0\xc2\x64\xa5\xe8\x47\x49\xef\x31\xa2\xc9\xfa\xc8\xfa\x35\x84\xf9\x77\x18\xef\x7d\x97\xbb\xeb\x37\x80\x58\x40\xbe\x76\xcb\xfa\x48\x22\x33\xd1\x71\xf5\x4d\x6d\x6f\xc6\x3e\xd3\x76\x0d\xcc\x4f\x3e\xbd\x6a\xc3\x07\xbc\x17\x11\x14\xd3\xdf\xb0\x6b\x0d\x1f\xf9\x89\x8a\x5a\xcf\xf4\x81\xd6\x10\x13\xab\x36\x3c\x44\x6b\xf4\x9a\x5d\x1e\xac\xb4\xd4\x04\x30\x73\xf9\x41\x05\xb3\xf0\x4c\xcb\x8c\xb2\xd4\x4e\x8d\x14\x82\x59\x40\x6b\xe7\x7b\x63\x5f\x57\xb8\xcd\xb4\x8c\xf7\xd8\x98\x9b\xc4\xe4\x3b\x48\x15\x0a\xbc\x31\x2e\x24\x2a\x3f\x19\x81\xe9\xab\x0c\x49\x3a\x45\x11\xeb\xab\xa4\x7c\xf4\xbe\x7d\x2b\xf2\x97\x98\x2a\xff\x94\x2d\xc4\x0a\xdf\x75\x0d\x51\xd4\x28\xef\x9b\xcc\xf5\x99\x94\x78\xd8\x2f\xc8\x3b\x14\xc7\x2d\x85\x59\x64\xf2\xa6\x07\xd5\x5d\x21\xee\x02\x99\xb2\x46\x3d\xe9\x4d\x62\x39\x19\x0d\x92\xc8\x16\x1b\x91\x14\x4a\xe6\x84\x70\x17\x4a\x0b\xf0\xc0\x0d\x1b\x36\xa1\xc2\xf6\x13\xca\x4e\xd2\x70\x31\x0e\x13\x2b\x95\xa4\xd2\xa4\xd0\xea\x84\x93\x15\x35\x22\xd5\xb7\x2b\xff\x9e\x8a\x86\x55\xf8\x53\x67\x5b\x7b\x67\x1e\xe3\x29\x1c\xec\x3c\x21\xe4\x0f\x08\x5d\x7b\xc6\x7e\x82\x0a\x16\x94\x0f\x06\xcf\x75\x75\x42\xcc\x89\x80\xfd\x5f\xb5\x2f\x43\x67\x28\xca\x35\xd7\x4a\x8c\xdd\x9e\x42\x28\x67\xcf\x03\x9a\x36\x90\x49\x54\xab\xbf\x93\xb0\x9e\x56\x13\xf9\xcb\xd3\x12\xa0\xdf\xc2\xa7\xc8\x0d\x75\x45\x07\x26\xcc\x47\x99\x01\x77\x05\xcf\xf5\x8c\x69\xe0\xe7\x2f\xc0\xb6\xbf\x20\x00\x01\xee\x28\xa3\xca\x72\x66\x62\xa4\xbf\x32\x11\x31\x7d\xa0\x15\xe6\x53\xe5\x87\xc0\x76\x8a\x5a\x0a\xa2\x8a\xe3\xa4\x84\xfd\x47\x78\x74\x41\x45\x51\x85\xbb\x98\x64\xd1\x46\x5f\x14\x01\xe4\xa6\x55\x4f\x6d\xf4\x5b\x4f\xb4\xeb\x68\x10\xc3\x6c\x31\x6f\x52\xf1\xf3\x7a\x40\x65\x86\x9f\xd8\xcf\x57\xcf\xea\x57\xcb\x11\xf3\x44\x26\xb7\x44\x0f\xb0\x60\x3f\xa7\x7c\xe3\x2c\x5e\x95\x63\x80\x28\xf7\x89\xab\xd4\x13\xcb\x18\x31\x65\x5c\x0d\x36\xd6\xe3\xa7\x0f\xb4\x8a\xb0\xdb\x64\xd0\x51\xc3\x31\xbb\x82\xc6\x18\x9f\xb6\x4e\x43\x41\xf3\xa3\xcc\x84\xa3\x06\x69\x6c\x49\x6f\x5b\x07\xe7\x7d\xb7\x1e\x3a\xf2\x9e\x79\xe0\xc8\x04\xb1\x08\x21\x3e\xc3\x25\xd3\xc1\x0f\xaa\x2b\x74\x78\x9d\xb7\xab\xbc\x8e\x73\xbb\xf7\xb7\x32\x93\xa4\xcb\x89\x3a\x5f\x84\x95\x67\xc6\x1e\xd3\x77\xc6\x85\x1a\x45\xdf\xa4\x42\xcd\x59\x7e\x80\xe2\x03\x18\x2c\x40\x8f\xbc\x68\x86\xc5\x56\xef\x8e\x5e\xc7\x76\x01\x5c\xf7\x34\x4e\x20\x5a\x0f\x48\xf8\xe4\xa7\xec\x2e\x96\x7f\x27\x7c\xef\x69\x07\x56\x9b\x37\x3d\xd9\x06\x40\xf5\x5c\x09\x88\x18\xe9\xbd\x31\x21\x8c\x4f\x90\x35\x8a\x47\x99\x99\xe0\x60\x65\xa9\x30\xd2\xe1\x1f\x74\xa7\x1a\x5f\xf9\x92\x34\xba\x4e\xf2\x08\xc2\x16\x91\x01\x53\x35\x40\x42\x94\xdf\x24\x34\xcf\x42\x9a\x0d\x0c\xe2\x20\xa1\x84\x27\xe6\x10\x44\xee\x5a\x18\xf6\xfd\x91\xcc\xd8\xa6\xc7\xa3\xf6\xe3\x90\xc6\xff\x6f\xf6\xcb\x23\xe5\xfc\x73\xeb\xa4\x71\x68\x8e\xd9\x7a\x04\x6c\xef\x39\x38\x4a\x38\xda\xb3\x54\x53\xb9\x1d\x10\x5b\x34\x30\xbf\xaa\x41\xe8\x07\x10\xec\xe4\x8d\xf6\xd4\x30\xf4\xa8\x5d\x01\xff\x75\x4c\xde\x49\x33\x21\x3a\x73\xc8\xd0\x7d\xfb\xf4\x9a\x5a\xee\x2f\x8e\xc2\xac\x30\x59\xbc\xb2\x95\x94\xe4\x01\x39\xc2\xe4\xb7\x1c\x71\xe9\x27\x02\x21\x80\x82\xc7\x3a\x4d\x35\x4e\xb5\x3d\x73\xfc\x87\x3e\x06\x4d\x93\x6e\x0e\x58\x8c\x72\xdc\xd2\x6c\xd1\x11\x54\x39\x04\x59\x22\x53\x37\x42\xdf\x49\x30\xa0\xc2\xc4\x66\xd8\x4f\xcb\x9c\x84\x1a\xfe\xef\xd2\x88\xed\x36\xe0\x9e\x50\xac\xfc\x98\x10\xc7\x37\x83\x8d\x39\x74\x99\x34\x85\x71\x91\xf6\x4c\xd1\x37\x99\xcd\x3a\x64\xb2\x24\xe0\x29\x93\xea\x7c\xea\xfe\xd6\x70\xf4\xf2\xcb\xb1\x9a\x42\x65\xbb\xf7\xa5\xdc\xa3\x8c\x34\xac\x83\xd4\xcc\xb4\x32\x13\x8f\x3a\x45\x98\xc8\x8b\x41\xed\x13\x58\x08\xb9\xae\x1d\x2e\xe9\x9a\x4e\x99\x92\xc9\x49\xc7\x2e\x10\x86\x08\xb9\xa1\xf2\xe9\x42\x9a\x99\x4e\xe8\x78\x78\x9d\x40\xb3\x7f\x07\x97\xea\x49\x9f\xa3\xd8\xac\x3c\x9c\x28\x66\x17\x11\x54\x99\x70\x51\x88\x4d\x84\x58\x27\xf0\xd5\x85\x6f\x10\xb0\xc7\x24\x80\x40\xa0\xf0\xb5\xc9\x42\x68\x64\x0c\x9a\xb5\xb0\x2e\x31\x39\xe3\x05\x32\x1e\xe7\xed\xf9\x51\x6e\x88\x86\x63\x85\xbe\x31\xc9\x99\x64\x8a\x1d\xdc\x40\x24\x28\x11\xe4\x54\xf1\x07\xae\xe1\x53\x70\x6c\x50\xb7\x72\x48\x87\x72\x25\x35\xf7\xb4\xd5\x3d\xf9\x75\x12\x13\x42\xf0\x2d\x7f\xaa\x12\x98\xed\x99\x6e\x65\xa3\x3c\x8f\x42\x91\x92\x64\x72\x45\xa5\x73\xe0\x5c\x3c\x32\xdd\x5d\xd8\xee\xac\x9f\x88\x90\x7f\x47\x9b\xd2\x8c\xab\x48\x1f\xb4\xb2\xe3\xa1\x63\x53\x76\xa0\x06\x61\x99\x50\xfc\x8b\xc2\x53\x40\x0b\x70\xd7\xae\x26\xbc\xe2\x3f\x0f\x88\x78\xf0\xcd\xb1\x27\xb9\xdf\xbc\x4a\x12\x06\x77\xe1\x55\x85\xc7\x00\x36\xda\x85\x19\x87\x5c\xad\x64\x0b\x82\x75\x14\x69\x1b\x15\xb5\x99\x2f\xb4\xd2\x79\xd3\x8d\x1c\x89\x1f\x8c\xc7\x5d\x46\x26\xdc\xad\x44\xe8\x87\xca\x48\xa5\xbb\x14\x26\x1d\x65\xb8\x20\x81\xd1\x69\x97\xa6\xd7\xf0\x52\x45\x49\x57\x96\x5e\x69\x05\xde\x18\xfb\xba\xd1\x1b\x44\x10\xdb\x09\x07\xf3\x69\x37\x82\xe0\x32\xd1\x6e\xce\xea\x8d\xaf\x47\xaf\x64\xa9\x54\xdb\x1a\x7e\x28\x02\xdc\x25\x3a\xef\xa4\xbe\xad\x33\xca\xe6\x6d\x51\x09\x8e\xe9\xbe\x5d\x75\x1d\x0d\xa0\x09\x1e\x94\x29\x10\x25\x6c\xae\x08\xe0\x4c\x1f\x68\xc5\x69\x0a\x9a\x5b\xa7\x45\x7a\xf0\x2f\x44\x9d\x75\xd2\x81\xed\x54\x37\xbc\xe8\x77\xe0\xad\x49\x95\xc0\xae\x34\x42\x83\xb0\x30\x59\xa4\x09\xb2\x32\xac\x35\x94\x39\xe8\xaf\xdc\xb5\x7f\x41\xa5\xf7\xaa\x69\x94\x08\xd7\xbf\xfc\x17\x32\x52\xd6\x00\x19\xf0\x92\x94\xb7\x4d\xb4\x4f\x82\x09\x21\x14\x5d\x4f\x10\x5f\xb8\xaa\xe8\x2a\x0d\x84\xac\xd6\x58\xc8\xe7\x9d\x3c\x76\xd3\xb7\xfb\x7e\x6e\x7f\x49\xf0\x4f\x04\x85\xfd\xba\x2b\x07\xc6\x51\xc7\x24\x8e\xba\x1d\xe5\x93\x7f\x42\x70\x8a\xf7\xf1\x95\x10\x9c\xbe\xe7\xa2\xa9\xae\x59\x80\xc6\x01\xba\xad\x4e\x7c\x69\xdf\x3e\x6f\xe8\x1c\xc6\xe0\x6a\xcd\xbc\x65\x6b\xde\xc4\x91\x59\xd2\xf5\x53\x80\xc1\x04\x91\xe9\x13\x04\x71\x59\x06\xef\xb2\x3d\x11\xd8\x54\x3f\x0c\xc8\xca\xfc\xd0\xbe\x3b\x95\x2f\xb3\x7b\x59\x6e\x70\x54\x60\x8a\x17\xd3\x24\x1d\x44\x9d\xbe\xc9\x17\xc3\x95\x90\x36\xcc\x3b\xf8\x15\xb9\x21\x8a\xf6\x41\x9a\xa4\xc3\x34\x8e\x4c\x6e\xbd\xa4\xd3\x65\xa4\xcd\x51\xa3\xa8\xfb\x8b\xd3\x7b\x9f\xdd\x7b\x60\xff\x56\xc6\x6f\x4f\xa8\x07\xfc\xaf\x63\x6e\x9d\x36\xf6\x4c\xcb\xbf\x23\x98\xc0\x76\x9c\x6a\x13\x5d\xe4\xcf\xa9\x28\xd4\x4f\x33\x99\x4a\x17\x21\x57\x9c\x2e\x55\x75\xad\x19\xd6\x0e\xe7\xd3\x11\xca\x86\x30\xa8\xcd\x55\xaf\x53\xdd\xb0\x3d\x30\x1c\xcd\x3f\x0b\xfc\x34\xe5\x82\xe9\x1a\xa7\x6e\xa7\xb2\x1c\x3f\x9e\x10\x4b\x95\x92\xa8\x66\xf0\x1b\x8f\xf2\xbe\x7d\xad\xbe\xd5\xb4\x70\x86\xe3\x0c\x19\x0e\x56\x1b\x1a\x25\x7d\x13\xc6\x45\x1f\xd8\x5f\x54\x21\x64\xaa\x49\x6e\x28\xb7\x2e\xfa\x26\x2c\x32\x19\x0a\xd4\x1e\x50\xf9\x7b\x72\xed\x75\xc5\xc2\xac\x10\x10\x81\x00\x1d\xf1\xbc\x8a\x7a\x7c\xcc\xed\xe5\x30\xce\xb1\xb3\x60\xf1\x45\x32\x19\xaf\xe4\x7f\xb0\xc1\xa5\xf3\xcb\x2e\xe1\xbc\x5d\xe9\x4c\x94\x67\xd0\x16\xf8\x12\x13\x16\xfd\xa6\x07\x2c\x80\xab\x1d\x56\xe1\x27\xd6\xe7\x00\x8c\x7b\x85\x03\x8a\x30\xb3\x22\x5e\x34\x79\xf1\x0a\xeb\x06\xbc\x52\x89\xa5\xa6\x0f\xb4\xba\x06\x63\xbe\x0a\x4f\xd6\xe9\x83\x8d\xc7\x10\x6f\xe8\xe6\xd8\x73\x53\xf5\xd3\xa4\x1b\x36\x26\x9b\x78\xe5\x27\xcb\x4d\xdd\x9c\x4a\x62\x16\xd3\x34\x0f\x9b\x5c\xf7\x07\xa6\x12\x1f\xf5\x28\x5c\x36\x80\x57\xdb\x2a\xa5\x2b\x2b\x41\x19\x66\x61\x17\x5b\x57\x61\x3b\x44\x92\xfe\xce\x43\x07\xac\x93\xd4\x96\xe9\xec\x81\x25\x64\xb8\x9b\xb7\x72\xcd\x9e\x70\x94\x17\x59\x18\x93\x89\xd5\x23\xcd\xe7\xbb\x0e\x36\x9d\x84\x45\x99\x65\xf9\xba\x38\x66\x17\xe5\x9a\x4e\x9f\x05\x89\x3c\xe2\x9b\xb3\x37\x2c\x45\x03\x0a\x12\x82\x37\x40\x48\x75\x8c\xb0\x00\xe7\x11\x90\x21\x3a\xbc\xc5\x0c\x1e\x97\x89\xe7\x56\xc2\x59\xf9\x75\x04\x61\xf2\x2b\x94\x06\xdd\xae\x89\xcb\x67\x5b\x0b\x51\xe1\x66\x0f\xb4\xae\x64\xbf\xb3\xdc\x10\x4a\x7f\x61\x14\xc7\x5b\x6c\xc1\x19\xa5\x53\xf8\x3d\xbc\xb7\x0f\xd1\x62\x64\xe5\x75\x07\xc7\x74\x04\x28\x3f\xa3\xbc\x64\xde\xbc\x38\xb2\x63\x49\x32\x12\x84\x00\x0a\x11\x82\x5c\xd7\x8c\x97\x5b\x1a\x0f\xb5\xfd\x2a\x80\xc5\x6a\x58\x64\x88\x6c\x5f\x3d\xef\x9b\xee\xf6\x32\x8e\x75\x9a\x2a\xfe\x24\x7f\x07\xe1\xa1\x1b\x12\x73\xbe\xeb\x2c\x97\x7d\x03\x42\x64\x9e\x27\xf1\x04\xd4\xb4\x60\xde\x6e\xd2\x81\xec\xf4\xc3\xac\x67\xba\x56\x05\x1c\xaf\x6a\x0d\xaf\x47\xa9\xd3\xec\xb3\x2b\x77\x1a\xd5\xb7\x51\x95\x82\x47\x9c\x5a\xfd\xd4\x64\x3d\xaf\xdc\x93\x65\x3a\x43\xfd\x8e\x35\x5b\x3d\x96\x6b\x3a\xa2\x69\x99\x9b\x7d\xa2\xe1\xd8\xf4\x1e\x10\x63\xdc\xd6\x55\x5f\x0e\x3a\x6e\xab\x78\x5a\xa0\x63\xc2\xe1\x53\x78\x60\xa7\x22\x53\x06\xb8\x8e\x7d\xce\x95\x0a\x85\xd9\x15\x3f\xb5\x05\xf0\x19\xa0\xd7\xa4\x98\x2c\x18\x5c\x18\x08\x54\xa6\xef\xb3\x24\xd4\xdb\x63\x62\xd0\x11\xb1\x49\x34\x16\x5f\x0f\x76\x31\xb5\x66\x2f\x4a\xd2\x06\xa1\x23\x4e\xd0\x2e\x39\x41\x62\x20\xbd\x74\xe9\xf3\xd6\x7c\x3a\x7b\xb6\xd1\xb7\x63\x1f\xde\x20\x8e\x5b\x13\x47\x2f\x45\x19\x4f\x2d\x32\xf6\xfb\x1d\xfb\x27\xf0\x1f\x57\x2a\xc1\xf3\x33\x2d\xf3\xd2\x30\x75\x8a\x96\x28\x5b\x9e\x0e\xa8\x86\x79\x9a\x9c\x55\x38\x9f\xa7\xf1\x92\x9a\x23\x1d\xab\x68\x38\xc9\xb9\xf3\x13\x89\xd9\x60\x3e\x07\x74\x53\x7b\xd4\x76\x7d\x35\x95\xf1\xe5\xb4\xbc\xc8\xa2\x4e\x81\x70\x54\x21\xff\x3e\x69\xb0\x75\x18\xe2\x1d\x8e\x92\xdc\x74\x0a\x4c\x68\x4d\xe0\x96\xb4\x28\xb4\x31\x08\xd8\xb7\xaf\xb5\x12\x99\xb8\xbb\xc5\x17\xd4\xb6\xdb\xe6\x04\xea\x39\x67\x70\xf8\x1c\x35\xfe\x41\x85\x8a\x0a\xaf\xa9\x96\xe3\x1e\xf5\x7d\xbb\xee\xa3\xd6\x84\xb8\xd1\xaa\xf2\x6b\x29\x3b\xbe\x6d\xa7\x20\x1e\x59\xf3\x50\xc4\xff\xf4\xaf\xd9\x50\x03\x15\xa9\xf7\x6d\xd4\xe3\x75\x61\x75\xda\xea\x13\xde\x61\x75\x3e\x83\xa2\x0b\xd1\xc6\x6e\xe0\x2d\x82\x87\x6e\xae\xaa\xc7\xef\xf4\x23\xb3\x90\x63\x3e\x12\x65\xed\x0b\x72\x20\x10\x52\xdd\x45\xc8\x88\xc3\x0e\x00\x85\x5c\x8f\x89\x9a\xf8\x74\x9d\x16\x61\x66\x06\x61\xb6\x88\xf7\x03\x37\x72\x94\xa4\xe2\x61\x9f\x55\x0d\x61\x97\x1b\x0b\x2b\xb2\x34\x36\xa3\xc1\x16\x3c\xc4\x04\x87\x31\xcf\x4e\xc2\xbe\xec\x68\xfb\x4d\xb4\x79\x95\x9c\xe9\x99\xca\xeb\x9c\x3e\xd0\xca\x97\xad\x16\xa5\xf3\x57\x82\x8d\x55\x34\x68\xc3\xd1\x44\x1c\xa9\x04\x66\x7b\xf6\xb4\xc2\x6c\x00\x64\x89\x2e\x93\x3d\xb5\x48\x85\x5f\xa5\x79\xa1\x6b\xae\x45\x1a\x87\xa3\x5e\xbf\xe9\x73\xba\x8f\x69\x9c\x62\x6b\xdb\x77\xf1\xd6\x78\x60\x35\x5c\xc0\xec\x54\xf9\x85\x61\x12\x6e\x52\x9f\xe1\x7f\x22\xc7\x73\x93\x48\xed\x96\xd3\x6c\x31\x2f\x2c\x56\x14\x35\x7b\x24\x33\x42\x36\xa3\x62\x95\xe5\x47\xca\x7f\xac\xb2\x8a\x25\xd5\x93\xe3\x51\x67\xb1\x41\x74\x10\x7f\x32\x31\xb0\xe9\x91\xbe\xf3\xa3\x15\x48\xd4\x69\x81\x9d\xb4\x31\x3e\x84\xeb\x16\x75\x0b\x2a\x41\x3e\x89\x91\x73\x45\x2f\x78\xd8\xeb\xe9\x80\xe8\x37\x3e\xb2\x96\x56\xe7\xed\x29\xec\x5e\xa5\x7e\x75\x73\xd5\xcb\x03\x5e\x0a\x98\x5b\x04\x64\x8e\x58\xa2\xe6\x2a\x35\x20\x7f\xf6\xd0\xae\xed\x28\x2e\xa2\x32\xbd\x05\x0e\x10\xaf\x51\xda\x1d\x9c\xe7\xaa\x3d\x55\x93\x32\x08\x93\x97\xd3\x24\xa2\xe1\x45\x19\xc9\x92\x9b\xe0\x29\xc2\x46\x59\xd1\x6a\x35\x81\x4e\x84\xc8\xd5\x65\xce\x55\x42\x94\xc3\x87\x5b\xc3\xfe\x4a\x1e\x75\xa4\x2f\x2b\x44\x25\x08\xcb\x94\xb5\xa4\x66\xbc\x2a\x1f\x46\x65\x42\x4b\xf3\xc5\x1e\xfe\x22\xba\x4a\xf8\x52\xbf\x5d\x37\xe7\x9f\xf7\xc3\x45\x93\x0f\x4d\x98\x09\x53\xbd\xd0\xbf\x52\x95\xf3\xd4\xf8\x69\x9a\xed\x77\xc4\xea\x53\x44\xdb\x28\x75\x3a\x1c\xd2\xf7\xb0\x1d\xe4\x86\x59\x16\x2f\xb9\xa5\x7c\x71\x14\x99\x32\xf3\xb0\x66\xd0\xd1\x12\xcd\xe9\x74\xe5\xa5\x1a\x40\xf0\x6c\x2b\x1b\x25\xd2\x1a\x80\x19\xd9\xd2\xf6\x31\xa6\x14\x7f\xe0\xaf\xab\x68\xd9\xd9\xb9\x59\x1b\x50\x6d\x69\x10\x5f\xbe\xfd\x0d\xad\x9a\x94\x7b\x50\x5b\x73\xe5\x86\x52\xde\xd9\x86\x1b\xd0\xb9\x33\x21\x23\x63\xba\x2b\x48\x88\xd0\x8c\x90\xfe\xa7\xdc\x20\x92\xc2\x9e\x04\x18\x52\xae\x09\x47\x15\x25\x5d\x8b\xf6\xd6\x26\xad\x8a\x52\x36\x66\xea\x91\xed\xf3\x61\x32\x35\x89\xa1\x77\x07\x15\xf3\xf9\x38\x4d\x42\xcb\x83\xe3\xf4\xad\x09\x47\x1b\x2d\x23\xa1\x9f\xe0\x6f\xd0\xd6\x91\xc7\xaf\x86\x59\xd1\x1f\x65\xc0\xa2\xe2\xfb\xdc\xc6\x90\x97\xdc\x50\x63\x63\x21\xea\x00\xae\xee\x88\x89\x70\x72\x54\x5c\x4e\x9d\xe1\x42\x98\xcf\xdb\x8f\xd6\x61\x72\xfb\xd1\x72\xe3\x2a\x26\x3d\x93\x0e\x4c\xe9\xe4\x09\x97\x70\x9c\x02\xd4\xe3\x9e\x96\x2c\x8c\x8d\x1d\xcf\x43\x83\xe0\x1a\x41\x0a\x5f\x1f\x13\x9b\xc0\xef\x8b\xa5\xd0\x38\xb6\xae\x10\xf1\xa5\x5f\x99\xfd\xd2\x2f\xcf\x3c\xea\x8f\xe9\x75\x26\xaa\xfe\x2d\xbb\x01\xa4\x1f\x13\x50\x5f\x4a\x9a\x47\x32\x06\x08\x73\x88\x43\x27\x38\x1b\x58\x8f\x2d\xab\x5e\x9d\xec\x3a\xac\x1e\xce\xb2\x84\x0d\x70\x40\xb7\xa8\x9c\xd4\x68\x13\x71\x4e\x96\x3f\xd9\xf8\xe2\x21\xd9\xd6\x37\xec\x4e\xc2\x5a\xac\x73\xfd\xfa\x2f\x57\xd5\x81\xec\xcd\xf4\xdf\xb6\xdd\x16\xd8\x5c\x04\xc4\x08\x4e\xb7\xaf\xd2\x04\xdd\x47\xf8\x26\x4a\x19\xe7\x70\x00\x5f\xfd\x45\x60\x30\x1c\xf5\x87\xee\xb7\x95\xcf\xae\x52\xa5\x66\xdb\x7f\xd4\x2e\xcf\x0b\x3c\xfe\x8d\x32\x66\x59\x17\x66\x7a\xf4\x88\x04\xd3\x88\xe5\xd8\xb1\x4a\x23\x60\x3b\x5d\x54\x62\x3a\xfd\xd4\x74\x11\x95\x60\xe7\x5e\x84\xbb\x55\xe5\xd0\x0a\xc7\x8d\x5c\xe3\x6f\x63\x28\xeb\x3e\x15\xa5\x5e\x18\x29\xbb\x6c\xc3\x83\xf8\xde\x0d\x88\x8e\xfc\x5d\xea\x85\x44\x49\x54\x44\x61\x1c\xaf\x58\x33\x8a\x10\xef\x4d\x1a\xa3\xfd\xe9\x98\x28\xaa\x4e\xd2\xf0\xe6\xb2\xc3\x28\x6a\x72\x61\x97\x52\x6e\xdc\xc6\xce\xc2\xa1\xc9\x8d\xe9\x6e\x90\x89\x64\xda\xaf\x1a\xca\x9b\xd9\x56\x27\x0b\x5f\x5e\xe1\x0c\x10\x60\x3c\xb9\x76\x70\x9e\x30\xcb\xc2\xa4\xa7\x05\x4a\x37\xfe\xee\x68\x1c\x65\xaa\x1f\x85\x8b\xd7\x2a\xa5\xda\x32\x52\x8a\xa3\x5e\xbf\x70\x08\x74\xc7\x40\x51\xbe\x45\x25\x17\xd8\xe9\x60\xdc\x4b\x26\x19\x19\x3b\x4b\x27\xe4\x2b\x63\x96\xf1\xbf\x65\xed\xb8\x8e\x33\xbb\xee\x83\xf9\x4c\x9b\xca\xe3\xac\xa9\x78\x97\x9a\xca\xbd\x2c\x1a\x36\x7c\x13\xf5\xd7\x03\x1f\x80\xff\x7a\xc5\xa8\x5b\x25\xa2\xb0\x30\xd8\x37\xa2\x20\x83\x7d\xa3\x8c\xfd\x8d\xb9\xdd\xeb\x5b\xda\x1e\x1f\xff\xaf\xe1\x4e\xb5\xcc\x5e\xa7\x72\x5c\x94\x49\xad\x10\x15\xa9\x05\xaf\x34\xdc\x55\xa7\xb3\xae\x84\xb3\x94\x16\x5e\x85\x5c\x71\x3c\xf6\x63\xe5\x86\x32\x25\x13\xe7\x66\xb9\x6f\x32\x60\x4d\x11\x5c\x03\xa4\x0f\x95\xc7\xfd\xeb\xaf\x11\x3c\xf8\x52\x99\xf3\xeb\x6f\x76\xa3\x22\xcd\x22\xa1\x7d\x53\x42\x71\x3f\x8b\x73\xaf\x86\x4e\x7c\x7f\xab\x13\x87\xd0\xaa\xe0\x5d\x75\x9b\xeb\x0a\xb7\xe9\x33\xf2\x22\xcc\x8a\x58\x18\xff\x34\x65\x3e\x47\x4a\x58\xe7\xe8\xd5\xe5\x61\xd2\x9d\xf2\x61\x88\x84\xa2\x8a\x6d\xf4\x83\xc1\x52\x98\x10\xea\x35\x82\x9a\x0d\xd2\x22\xcd\xd2\x38\x6c\x10\xe5\xf2\x51\x04\x16\xca\x8a\xea\x2d\xe3\x62\xbc\xf2\x68\xb9\x03\x35\x0d\xf7\xf1\xda\x63\xab\x24\xc3\x48\x8a\x47\xd2\xdb\x44\x39\xe2\x0e\x1e\x42\x65\x75\xec\x18\xae\xea\x93\x95\x5f\x0f\x4a\x67\x7f\x05\xf1\x2b\x8c\xc0\x1a\x01\x61\x77\x58\x83\xab\x0d\xd0\x8d\x35\xb9\x67\x5a\xbd\x2c\x4c\xba\x96\xdc\x3e\x33\x89\x15\x77\x57\x15\x30\xfb\x0c\xc2\x1f\x19\xd0\x48\xfd\xe9\x09\x65\x79\xb3\x60\x0f\x64\x83\x30\x26\x60\xfa\x50\xc0\x49\xdd\x51\x28\xfa\x61\x61\xe7\xe5\xf0\x22\x1f\x5d\x25\x3e\xfa\xad\x36\xaf\x84\x1b\x39\x5e\x03\x18\x85\x62\x8b\xeb\x06\x2b\x7e\x89\x21\xac\xb4\xf8\xbd\x24\xdf\x66\x7f\x0e\x27\x73\x47\x9b\xe8\xdc\x3f\xcb\x3a\xd1\x0f\xc6\x7e\xfe\xfa\x1c\xa9\x56\x3e\x85\xd0\x1e\xd5\x3a\xc4\xfc\x08\x19\x6e\xd2\xa7\xec\x9e\xf9\xbb\xf6\xeb\x48\xf3\x92\x54\xad\xc5\xf7\xc2\x5f\x56\xbb\xac\xe5\x46\x5f\xb0\xaa\x1a\x4d\xeb\xc0\xe0\x31\x9b\x6d\x2f\x60\x78\x11\x0e\x0a\xc5\x93\x3b\x75\x8a\xc8\x0b\x71\x44\x4a\x9d\x3a\x2a\xc4\xf1\x66\x4d\x30\x9d\x98\x91\xad\xad\xbe\x2c\x2a\xb4\x9a\x2c\xda\xb5\x92\x9b\x0a\x12\x78\x6e\x77\x6b\x21\x56\xa9\x0c\x1d\x97\xb0\x67\x07\x1b\xf2\x06\x31\xab\x7e\x40\xb0\xbd\x85\x28\x31\xd9\x4a\x93\x4a\x8a\x97\x89\xcb\xed\x06\x8d\xc5\x4f\x6a\x07\x85\x66\xd8\x20\x88\xec\xfa\x98\x89\x7c\xd6\x6b\x2d\xda\x20\x5c\x34\x23\xd8\x65\x27\xc7\x50\xfe\x05\x15\x4d\x73\x4a\x21\x51\x31\xca\x7a\x2b\x62\xfa\xea\x94\xb9\x68\x22\x36\x2c\xfa\x79\x93\x66\xaa\xd7\xa8\x11\x07\xb8\x0a\xc0\x58\xb5\x99\x52\x5e\x46\x8a\xd1\xc0\x48\xa9\x1d\xc6\xfd\x22\x15\x49\xae\x11\x16\xfd\xef\xff\x84\xe6\x4a\x73\xf0\x6f\xf2\x44\x96\xfd\x49\x1d\xd5\xf2\xf5\xa3\xf9\x74\x94\xa0\x35\xe3\x0c\x9f\xa3\x50\x39\x47\xfb\x74\xdf\x9e\xd9\x86\xcf\xd2\x25\xac\x96\x1b\xd7\x69\x29\x4c\x12\x8a\x6e\x27\x3c\xfe\xc7\x84\x50\xfa\x38\x98\xa0\xe6\x35\x83\x79\x1d\xdb\x82\xcf\xf9\x29\x87\xea\x3f\x25\x84\x59\x3f\xcc\xb2\x08\x43\x69\x4a\xc2\x4d\xac\x77\xaf\x4f\x24\x2c\xc3\xfe\x0a\x0f\x5f\x1c\x27\xda\xb0\xe3\x75\x9b\xb2\x97\x45\x03\x5b\x2c\x04\x0c\x19\xb5\x20\xd5\x4a\x2d\x83\x52\xd5\x22\xa8\x13\xea\x32\x45\x21\xe8\xf3\x69\x69\x0c\xdd\xc1\x9e\x96\x9b\xda\xfc\x2e\x8e\x12\x33\xc9\xda\x57\x1a\x2d\x25\xed\x7b\x7a\x43\xb8\x26\x9c\x5c\xe5\x1f\xd5\xbe\x70\xc3\x49\x52\x5c\x26\x2f\x96\xce\x17\x2c\xa1\x21\x85\x6f\xfb\xf5\xb5\x08\xfe\x24\x91\xd1\x75\xd2\xcc\x31\x9d\x2a\x95\xb0\x6f\x0b\xaf\x55\x70\x93\xcf\xb4\x06\xe9\x32\x01\xe3\xef\x21\xe3\x75\x72\x6b\x9e\x9f\xb2\x3a\x18\xb3\x77\xc6\xb2\x9e\x58\x46\xd6\x86\x23\xcd\xc2\x17\x51\x1b\xfc\x88\xf6\xe0\xa2\xa1\xfd\x14\x94\x56\x70\xac\xb0\xd7\xef\xf0\xdc\xda\x71\xd7\xb4\x1b\x46\x3e\x0c\x81\xa5\x95\xf0\x54\x6e\x2a\x45\xde\x2f\x58\x31\x1d\xb7\x50\x4e\x51\xc3\xd5\x73\xde\x70\xa5\xae\x32\xc6\x91\x86\xa0\xc4\xeb\xf0\x15\xca\x6d\xe8\xf1\xba\x6b\x04\x46\x39\x46\xc8\xb3\xbc\x6f\xa2\xc5\xdc\x72\xdf\x03\x8d\x07\xde\x1a\x64\xbe\x90\x35\x50\x21\xf2\xea\x5e\xd9\xdf\xea\x9b\xb8\x0b\x7e\x3c\xac\x3a\x08\x42\x45\xbe\x1b\x31\x20\xe9\x8d\xba\x61\xf3\xb1\x3f\xce\x9b\xda\x7e\xbc\x6a\x21\x0e\x81\x69\x12\x89\xb7\xc0\x3f\xca\x99\xb1\xdf\x49\x5d\x13\x47\x9d\x28\x1d\xf1\x63\x63\x90\x06\xa1\xef\x0d\x52\x80\x3e\x4f\x0d\xb1\x95\x74\x94\xf4\xb6\xfb\x09\xdc\x35\xcf\xba\xfc\xc8\x87\x63\x82\x78\xf3\xf4\xd8\xeb\xac\xbb\x77\x94\xe8\x5f\xa4\xb3\xe0\x44\xea\xcb\x57\x8a\x75\xdf\xd4\xe6\x03\xdf\x29\xd2\x2d\x13\x35\x2d\x06\x72\x04\xbe\xf7\x8a\xb9\x6a\xd4\xb0\x7e\xd7\x9e\x6c\xad\xd2\xd7\xf8\xc5\x4e\x1a\xc7\xe1\x30\x17\x98\x81\x0a\x38\x79\x0a\xd9\xb3\x2c\x12\x71\x8e\x70\xdb\xdb\xda\xa4\xea\x6e\xa1\x21\x4e\x54\x18\x4e\xef\x0a\xd5\x07\xaf\xf0\xf0\xf2\x7c\xfe\x98\x27\x55\xfa\x2e\x73\x14\x0a\x85\x89\x60\xb5\x6c\xd9\x14\x1b\xf5\x4f\xc7\x3c\xc1\x14\xd0\x76\x10\x9d\x7d\x37\xdb\xb4\xd7\x1f\x6c\xfb\x8d\xd0\xb4\xbd\x33\xa6\x92\x24\x11\x94\x1d\x63\x81\x7d\xcf\x5c\x9b\x17\x99\xec\x1f\xf8\x39\xa0\xa5\xe5\x9a\x66\xa6\xfc\xe2\x95\x91\x19\xbc\xe7\xbd\xf1\xc3\xf6\x5d\xf9\x6c\xf2\x33\x93\x02\xc6\xa3\xdc\x56\x2b\x88\xd6\x58\x09\x3f\x6f\xa2\xc9\xa0\x54\x8a\xc4\xf2\xf6\x01\x6a\x17\xd8\xa7\x6f\xd9\xbf\x8d\xb0\xec\x14\x01\x03\x04\x45\x86\xb0\x08\x04\x64\xf0\xc1\xc7\x58\x40\xeb\x8f\xc7\x9e\xf0\xf5\x5e\xa5\x21\x6d\x59\xae\x93\x22\x8d\x0d\x86\x39\xbd\x53\x47\x61\x52\xae\x27\xe2\xfe\x24\xcc\x3a\xfd\x95\x26\xc1\x84\xae\x92\xba\xca\x59\x6a\x3f\xbe\xe9\x15\x9e\xc2\x24\x4c\x42\xa1\x32\xc0\x32\x49\x49\x05\xbb\xf7\x16\x77\x8a\xcf\x39\xa3\xd8\x8b\x4d\x92\xe0\x93\x14\xc0\xee\x83\xa6\xb3\x5c\x3b\xba\x57\xf1\x51\x73\xbb\x5b\x99\x09\x3b\x85\xf5\xb7\x5a\x12\xf2\x1d\x92\x7a\x92\xf0\xe5\x30\x53\x62\x47\xa5\x64\xa6\x14\x74\x52\x5a\x2c\x31\x49\x93\x70\x15\xc7\xc7\xbe\xdb\x71\x6b\x42\x43\x52\x7d\x42\xbf\x9f\x93\xda\xb9\x84\x1e\xfa\x31\xde\xfe\x84\xbd\x30\x4a\x1e\xf7\xba\xfe\x37\xc7\x3e\x94\xfb\x0d\xac\x13\x5e\xed\x8f\xac\x5a\x9e\xd3\x47\x2c\x77\x29\xbc\x0a\x2c\x1b\x0e\xd7\x0d\xdb\x4d\x25\xca\xfd\xfd\x9e\x28\xc5\x65\xf8\xd2\x7e\x92\x3f\x3b\x26\xfd\x4c\xb0\x6d\xe3\x0c\x89\x36\x2e\x6e\x7e\x5c\x19\xd6\xda\x3b\xc3\xc4\xc9\x56\x4f\xdc\x11\x1e\xfd\xcf\x76\x41\xe4\x9a\x76\xd3\x7c\x36\xca\x73\x13\xe7\x5b\x58\x30\xea\xdf\x8d\x69\xbe\x12\xa5\x11\xd7\x5c\x72\x92\x80\x3f\x67\xbd\xa1\x7f\x57\x27\x3d\x33\xcc\xd2\xa5\xa8\xab\xc9\x33\xac\xf1\xbb\x3c\x96\xf3\x2e\xb5\x5b\xf3\x22\x4b\xe3\xd8\xee\x15\xf4\xf3\xae\x11\x27\xcd\xb5\x89\x90\x3c\x8d\x27\xf8\xb1\x8f\x11\xcd\x8e\x57\x65\xca\x8c\xc5\x58\xd9\x05\x93\xec\x16\x3e\x57\x53\x5d\x6a\x53\x8c\xc2\x58\x62\x6b\x9e\x6f\xd1\xc1\x3d\x02\x06\x9c\xa4\xc8\x78\x18\xc5\x79\x2a\x35\x66\x27\x49\x42\x22\x26\xe5\x4a\x89\x0c\x44\x40\x39\xde\x59\x0a\x38\x5e\x7e\x39\x6c\x10\xaf\xe7\x5f\x4c\x7c\x30\xb7\x7b\x7f\xab\x30\x71\xec\xb0\x39\x70\x82\xdf\xa5\x0f\x82\x1c\x94\xf6\x32\x48\x75\x3d\xeb\xe2\xeb\xc1\xad\x9f\xa3\x61\x8c\x8f\xe9\x57\xae\x51\xa9\x3a\x8c\xc3\xac\x23\xcc\x2a\x4e\x27\xd9\x15\x97\xd6\x68\x1d\xfa\xa3\x5e\x5f\x23\x4b\x4c\x2a\xdc\xc3\x19\x91\x9b\xda\x63\x6e\x89\x0c\x25\xd8\xd2\x42\x1b\x51\x12\xbc\x46\x11\x7e\x67\x94\x75\x63\xed\x0c\x09\x0c\x01\x3f\xab\x98\x04\x2d\x73\xc7\x26\x2f\xb6\x4c\x90\xa6\xfa\x61\x7b\x11\x8c\x46\x73\xf2\x67\x10\x12\x63\x9a\x68\x38\xb2\x66\x05\x72\x6b\x11\xea\xb1\xe9\xf6\x74\x1b\x23\xa5\xde\x0c\xa2\x2e\xb9\x59\x7d\xc2\x15\xee\xb3\x41\x94\xf4\x0a\x59\x38\x54\x42\x6e\x33\x12\xf6\x76\x05\x68\x69\xb1\x02\x31\x87\xdc\x32\xbc\x48\xe3\xf8\x67\x1c\x2f\xf2\x20\xea\x0e\xd2\x2c\xb1\x3a\x00\xe5\x5f\x45\xf1\xe2\xdd\x31\x6d\xc3\x7b\x04\x87\xdd\xde\xf6\x55\xec\xcb\x95\xd4\xe3\xc0\x73\xad\x2c\x1c\x46\x5d\x09\x2c\x9c\x58\xe5\x41\x77\x5d\x09\x26\x0f\xcd\x5a\x42\x17\x39\x58\x88\xcf\x4e\xe0\x60\xc9\x8d\x3b\x58\x4b\x61\x6f\x64\x84\x0d\x6e\xfd\x8a\xad\x2d\x5e\xa9\x38\x89\xbd\x33\x2d\xf3\xd2\x4b\x13\xeb\x25\xcc\x4d\x72\xb3\xea\xf7\x64\x32\xca\x72\xf7\xc5\xc5\xa1\xa2\x32\xa1\xde\xb5\x7c\x93\x42\x8a\x6e\x31\xea\x4a\x90\xee\x8f\x42\x38\x1f\x36\x69\x42\xe7\x46\xd0\xf8\xca\x97\xc4\x68\x83\x88\x57\x1b\xab\xd5\xe3\xa7\x5d\x4a\xc0\xcd\x9c\x9a\xab\x2f\xd0\x5f\x18\xfb\x8e\x66\x3a\xff\x82\xb1\xcd\x9e\x1c\xa6\x4a\x82\xa0\xb1\xaf\xad\x7e\x40\xd9\x7d\x3f\x1d\x98\x7c\x0a\xaa\x5f\x0f\xa5\xba\x6c\xec\xdb\xb7\x7e\xc1\x55\xb1\x33\x63\x89\x93\x39\x0e\x17\x20\xb8\xdc\x30\xc0\x24\x29\xa2\x22\xb3\x82\x22\x2e\x8c\x3d\x89\x1f\x96\x9b\x4a\x95\x7b\x6e\x77\xeb\xc5\x51\x94\x14\xa3\x61\x2c\xc1\xab\x00\x70\xec\x99\xc2\x94\x19\xe2\x72\xbc\xf6\x8f\x02\xef\x19\xfc\x74\xd2\x42\x3a\x8a\x9b\xde\xf1\x60\x08\x7f\x42\xa7\x57\xdb\x81\x1b\x45\xaf\x66\x5b\x07\x77\x3f\xbf\x83\x13\x3b\xdb\x53\xc3\xa6\x38\x31\x6e\xfc\xf2\xdf\x73\xd2\x6f\xe5\x4b\x77\x52\x07\xd3\x07\x3c\xc5\xa9\x5b\x98\x8f\x71\xde\xe5\x97\x03\x8f\xbb\x95\x01\x33\x9d\x6f\xab\x19\xc5\xce\xc2\xc1\x50\x2b\x11\x75\x62\xae\x9e\x37\x38\x1f\x59\x69\x09\xbb\x58\xeb\x57\x48\x16\xaa\x61\xcf\xa0\xc2\x4e\xed\xaa\xc3\xe9\xbf\x47\xa8\xb7\x4e\x9a\x2c\xc4\x23\x8b\x48\x2e\x7f\x13\x31\x85\xc0\x46\xf1\x85\x44\x66\x4b\x53\x53\x0f\xc4\xf7\x1d\xf7\x85\xa8\xf0\xcc\xb2\x58\xe6\x07\xa4\xb1\xfa\x23\xfb\x8e\x10\xc7\x54\x4b\x0a\x87\x0f\xb7\xa2\xa4\x6b\x5e\x6a\x78\x10\xca\xf7\x03\x02\x53\x7e\x7f\x22\xf6\x0a\x47\x03\x29\x26\x09\x47\x07\x19\x9d\x46\x9b\x4e\xe8\x0d\x22\xe1\xca\x8d\x19\xc4\xe0\x9e\x50\x92\xf8\x72\x69\x34\xb2\xe4\xaa\x53\xba\x6c\xba\xf2\x01\x2c\xf2\x8f\x4d\x28\xaa\x59\x08\x56\x7f\x3c\x56\xd2\xe4\x0d\xaa\x11\x54\x73\xbb\x21\x55\x3b\xb9\xab\x03\x33\x0d\x4d\xa8\x52\x1d\xda\x06\xf2\xd0\x5c\xf9\x40\x38\xbf\xaf\x7b\x38\x4e\x96\x2e\x2c\xf8\xf6\x80\x30\xc6\xd8\x55\x56\xf6\x18\xcf\x16\x3c\x9f\x45\x45\x18\x25\x8f\xd9\x1f\x95\x84\x8c\x99\x66\xa0\x61\x8b\x4c\x50\xd2\x54\x0d\x7e\x88\x63\xff\xbe\x0d\x39\x39\x1a\xd3\x68\x89\x22\x9d\x7b\xd6\xf8\x29\xbe\x81\xa2\x9e\x7b\x63\xdf\x04\x38\x37\xf6\xe4\x94\x27\x88\xb9\x2d\xcd\x3a\xfd\x30\xeb\x46\xae\xba\x5d\x8b\x1d\xae\x45\x0c\xa4\x45\x7f\xaa\x7c\x3c\x60\x19\xce\xd8\xd3\x28\x2a\xc3\x6d\x62\x00\xbb\x68\x3f\x19\xa5\xb1\xf3\x15\x0f\x73\xf8\x70\x69\x79\x3a\x8b\x76\x5a\x5a\x64\x43\xc7\x7e\x1e\x1d\xb5\x0e\x7c\x69\x70\xcc\xa0\x30\x70\x86\xb8\x71\x74\x16\x43\x66\xe4\x60\x04\xd6\x10\x62\xe3\xa7\x6f\x62\x4d\xe5\x06\x6b\x27\x3f\x46\xb0\x94\x51\x62\xba\x23\xe1\x6a\x74\xf3\xb4\x6b\x34\xb2\xbc\x56\x31\x19\x87\xa6\x0f\x08\x72\xb0\xd1\x20\xb9\x40\x3f\x0e\x7c\x99\xf4\x85\x32\xd3\x1b\x89\xbe\x91\xef\x73\xa0\x2c\x2b\xd7\x55\xf5\xf3\xe9\x56\x6c\x16\x0a\xea\x62\xdd\x18\x53\x46\x72\x83\x56\x01\x02\x0a\x4a\x3c\x23\xb2\x8c\x63\x0f\x98\xab\x53\xd0\xdd\xaf\x7c\x35\xa6\xdb\xe4\x19\x7b\xfb\x11\xa2\xd1\x10\xd0\x7c\xc5\xb7\xa9\xce\x38\x30\x45\x3f\xed\xa6\x71\xda\x5b\x79\xe8\xe4\x4c\x65\xdb\x3c\xb7\xdf\x12\x43\x36\x3d\xe3\xeb\x29\x02\xb0\xdd\x26\xb6\xc3\xaa\xb6\xc8\xf4\x81\xd6\x7c\xfa\x92\x81\xb2\x84\x22\xed\xa8\x9e\x72\x97\xca\x0f\x17\x59\xa8\xc8\xe4\x51\x2f\x31\xdd\x6d\x84\xad\x46\x9b\x8e\x6a\xd2\xfb\x79\xc6\x6f\xd6\xd3\x17\xba\xc9\x21\x54\xb2\xe0\xbf\xee\xda\x67\x46\x85\xeb\x8e\xeb\x63\x77\xe2\x68\x38\x9f\x86\x19\x06\xa1\xdd\x33\xcd\xed\x76\x15\xa3\x09\xf3\x3e\xd1\x75\xe8\xa6\x12\x1d\xa3\x66\xf4\x83\x80\x68\xe2\x7f\x50\x11\x37\xb2\x22\xc3\xbd\x08\x30\xad\x86\xc7\x58\xdf\xa7\xb6\xf6\x7d\x3f\x33\x9c\x66\x06\x0d\x5b\x62\x81\x52\x73\x7a\x93\xf1\x07\x0d\xd2\xd1\x9c\xcf\x46\x89\xcc\x27\x22\x22\xf9\xbd\xc0\x77\xae\x7f\xaf\x0e\x2b\x92\x0e\x92\x68\x5e\x58\xff\x95\x2e\xb6\xe1\xa9\x63\x5d\x22\x54\x8c\x06\x69\x66\xdd\x1e\x2c\xd3\x56\xc2\x91\xde\x26\x76\x5c\x01\x6c\xaa\xf2\x25\x53\x7f\x47\x0b\xbb\xca\xdf\x57\x2e\x3f\xfb\x15\x60\xf2\xd6\x2d\x2c\x14\x66\xfc\xdb\xf8\xa2\x6a\x54\x6c\x8b\x90\x94\xcd\x9f\x45\x54\xf0\x57\x9f\x5a\x2d\x8d\x18\xf6\xcd\x6d\x6b\xc4\x10\x5e\x34\xdb\x65\xd8\x01\x7c\xc7\x6d\x61\x22\x73\xc4\x13\x8e\x1c\xe1\x63\x9c\x0f\xfc\xfa\xd3\x6d\x7f\xf2\x4f\x90\x64\xa0\xd4\x1e\xd4\x06\xda\x7d\xa0\x54\x36\xbe\x67\x95\x8e\x72\x6d\xbe\x20\xff\x3c\x4b\x1c\x87\x67\xeb\x1a\x3d\xbd\x38\x4d\x07\x91\xea\x28\x2a\x72\xc2\x4f\x6f\xfc\x2f\xb6\x60\xa9\xf9\x00\x95\xda\x62\x13\x66\x51\xd2\xdb\x66\x03\x25\x25\x83\xb2\xab\xa5\x73\xc4\x0d\x62\x0f\xb2\x0f\x0f\xd4\x26\xf4\x7b\xb1\x77\xae\x0a\x7e\x48\xfe\x87\xba\xcc\xe7\xeb\xea\x03\x36\x24\x35\x9a\xa4\xa3\x24\x77\x62\x4c\x6c\xff\x27\x48\x57\xa0\xf4\x49\x5b\xb8\xb1\x60\xdf\xb1\xd4\xde\xf0\xa4\x78\x4b\x47\x61\xe7\x45\x21\x3d\xf0\xb3\xa6\x6b\x35\xc5\xb7\x67\x5b\x99\x9d\x78\x31\x89\xe3\xdb\x01\xa6\xfb\x67\xf8\xfb\x72\x53\x79\x7a\xc8\xfb\xbd\xa4\xfc\x6b\x33\xf2\x20\xc8\xfa\xe5\xba\x6e\xa4\x32\xcc\x3a\x45\xd4\x69\x10\x5b\x01\x26\x70\x35\x96\xad\x59\x25\x53\x06\xef\xae\x94\x81\xed\x23\xec\xca\x72\x53\xd3\x84\x6c\xe5\x1d\x3f\x26\x8a\x68\x7d\xcc\xe4\xf6\xe3\x09\xac\x5c\x1a\x76\x77\x7a\x2b\xfd\x7d\xbb\xe5\xb5\xf0\x4d\x75\x83\x53\x01\xa5\x9c\xc7\x24\xa4\x72\xc1\xcb\x8c\x57\xb6\xb5\x2b\xa2\x2d\x3d\xfb\x6a\x44\x2d\x92\xab\xaa\x22\x5e\x8f\xdf\x97\x9e\x0c\x0e\xca\x4f\xc1\x68\xad\x1b\xcf\xc6\x48\xd8\xbd\x67\x26\xd4\xc7\x3e\xe5\x6b\x04\x69\x92\x47\x76\xba\x4c\x55\x2d\x10\xb3\xa2\x16\x2a\xd7\x35\x23\x8e\xcf\xb6\x16\xd2\xd8\xc6\x9a\xac\x94\xf5\x1a\x1e\x46\x6e\x2a\x60\xe7\xc3\x87\x5b\xfd\x34\x16\x0b\xea\xd8\x46\x66\x66\xa4\xf8\x7b\x9d\x20\xc1\xaf\x56\x5e\xa8\x0d\x0f\x4c\xc7\xc1\xf6\x04\x2c\x11\xf8\xf4\x77\xad\x92\x8b\x39\x59\x31\xfb\x4b\x8e\x40\xed\x02\x4f\x2e\x5c\x08\x76\x32\x0e\x65\xd1\xec\xb0\xe9\x15\x61\x37\x49\xa6\xb9\x5c\x50\x25\xed\x2c\x17\x48\xdb\x21\x0d\xc7\x63\x83\x42\xad\xb2\xd9\x7b\x32\x04\x98\x43\x20\xd5\xde\x19\x6f\xfe\x9c\x8b\xdd\x79\x3b\x0d\x63\xf3\x49\x5f\xf3\xde\xd1\x6e\x1c\x9a\xf5\xcc\x44\x7e\xd8\xf9\xac\xb5\x87\x70\xa0\x82\x89\x16\xe9\x5c\xe6\x45\x5e\xe3\xe3\xfc\x8f\x48\xb3\xf2\x9b\xa0\xb8\xc2\x61\xbb\x62\x67\xa6\xb0\x67\xef\xe3\xdb\xaa\x82\xa5\xff\x52\x5b\x2d\x0c\x05\x07\xe0\x91\x55\x4f\x9e\xf3\x60\x3c\x39\x34\xce\xca\xff\x20\x86\x94\x0f\x99\x64\x43\xb1\xdb\x17\xef\xff\x16\xe0\x26\x9a\x0a\xd9\xf7\x82\xe2\xf3\x47\xf5\xd8\x93\x48\xbb\xbd\x8e\x07\x7b\xaf\x87\x9f\xb9\x46\x49\xb2\x92\x26\x06\xe5\x0e\x27\x5d\xed\xc9\xed\x2f\x91\xb0\xdf\x54\xbb\xfc\xfe\x2a\xd7\x57\x03\x59\x2b\x83\xc6\x74\xc9\x64\x2a\x2c\x85\x18\xe6\x18\xfe\x9e\x23\xf9\xf7\xe5\xfc\x3b\x84\x0e\x34\xb9\x0d\x2c\x6c\x24\x39\x7d\x40\x47\x7a\x49\xb3\xfa\x9f\x54\x08\x60\xe6\xca\xcc\x79\xb9\x31\xa1\x46\x5b\xbe\x08\x95\xa9\xf5\x7f\x7c\x3e\x8c\xe3\x34\x4d\xb4\xc0\x27\xe4\xb6\x81\x0f\x59\x4f\x56\x0e\x60\x69\x47\xa3\x2e\x40\xdc\xe8\x5f\x23\x4e\x84\xd3\xb8\x6e\xb7\xab\xaa\x2a\x68\x8c\xb1\x9c\xa5\x49\xcf\xfa\x0f\xb4\xd4\xb7\xaf\xfa\x9f\x3a\x47\x99\xd7\x96\x55\x57\xa2\xf8\xb5\xff\x00\x49\x8b\xb6\x55\x7c\x11\x69\xb0\x62\x9a\x13\xf4\xf6\x8c\x83\x24\xc7\x7e\xa4\x92\x26\x1d\xdc\xdd\x1a\x84\x79\x6e\x1a\x9e\x12\xec\x82\x75\xc9\x0a\xd6\xf4\x7c\xc8\x8b\x26\x44\x55\xcc\x35\x66\xcb\x3f\x2c\x37\xd4\x25\x8b\xf2\x38\x4c\xba\xa2\x3b\x87\xe3\x08\x6a\x76\x6d\x51\x12\x35\xc8\x69\x1a\x9f\xca\xac\xbc\x7e\xd1\x40\x1c\x03\xd3\x7f\x0f\x31\x91\xdc\x04\x44\x16\x92\x85\x89\x42\x41\x5c\xb9\x79\xd3\x2a\xd5\xb5\x37\x11\x0e\x37\x4a\x56\xb6\xf9\x31\xb3\xc7\x09\x6e\x2d\x4a\x30\x4a\x6a\xcd\x7d\x5d\xaa\xbf\x8b\x7c\xa9\xb8\x16\x1b\x60\x28\x10\xd2\x8f\xd3\x85\xc3\x61\x1c\x49\xf0\xaf\x70\x9f\xf2\x27\x15\x73\x41\xce\xfc\x46\x9d\xc8\xfb\x42\x94\x94\xe9\x91\xe1\x44\x6d\x8d\x12\xb5\xb5\x31\x6b\xdf\xa6\x4b\x51\x6e\x32\x16\x2e\xc0\x10\x99\x5c\xd7\x7c\xc0\x7e\x97\x67\x70\xff\x43\xd4\x63\xbd\xb4\xa2\x17\x70\x7a\x71\x64\xf2\x22\xb7\x1c\x41\x58\x93\x13\x01\x45\x71\x77\x03\x1a\x88\x92\x2e\x3d\x5a\x57\x1f\x06\xbe\x4b\xbf\x05\x82\x17\x32\x37\x44\xa2\x37\xcf\x4e\x03\x75\x03\x13\x79\x9b\x07\x1d\x6e\x07\xfc\x14\xb9\x09\xb3\x4e\xff\x11\x22\xcb\xb8\x6f\x17\x65\x02\x1b\x0b\x4f\x77\x91\xe5\xdd\xd1\x8c\x45\x82\xf2\x3a\xfc\x3c\xfc\x19\x06\xe9\x9d\x9c\xcc\xec\x73\x5a\x88\xb3\x6c\xbc\x33\xeb\x47\xad\x4b\x51\x41\x83\xba\x75\x9c\x8f\x4d\xe2\x71\x16\x30\x39\xbf\x45\x4c\xa2\xbf\x55\x49\x64\xad\x92\x1e\x26\x99\xa5\xb4\xec\x90\x62\xe5\xf7\x92\x9b\x60\x47\x64\xc1\x83\x7f\xb3\x95\xfc\x95\xf2\x19\x2c\x44\xe0\x9d\xbf\x6c\xdd\x20\x62\x86\x9d\x16\xab\x0d\xef\x71\x15\x3b\x14\x49\x5e\x69\x6f\xf7\xc8\x46\xd9\xd1\x6e\x1c\x78\x4e\x52\xba\x75\xeb\x87\x10\x3f\xaf\xdb\xed\x88\x7e\xc6\x8e\x55\xc2\x88\x3c\x02\x54\xb7\xc3\xf6\x96\x2e\x91\x96\xf7\x79\x65\x27\x1a\xfb\xea\xef\x4d\x96\xcc\xfa\x6f\x83\xc6\xe1\xc3\x92\x79\x6c\x6e\xdb\x58\x49\xc4\x06\x83\x32\x41\x71\x94\x4e\x5f\x9e\x76\x32\x0c\x1c\xab\x3d\xb9\xea\x66\x55\x7f\xf5\xb3\x76\x3a\x73\x7d\xdb\x2a\x45\xbb\xf7\x18\x02\xf2\x2e\x3c\x9b\x1b\xdf\x2c\x5d\x2e\x82\xb9\xfb\x41\x69\xb7\x80\x49\xbe\x1e\x78\x88\xdc\x7f\xf5\xcc\xaa\xf5\x99\x4a\x05\x5d\xda\x56\xbc\xdd\xc7\xda\x8d\xaf\x7c\x49\xec\xef\x51\x72\x01\x79\x34\x18\xc6\xd1\x82\xf8\xc4\x67\x1d\xc1\x6c\x83\x88\x67\x7d\x1e\x1a\x26\x3d\x13\xab\x1b\xc3\xc7\x8b\xaa\x17\xd2\x9a\x1f\xda\x8d\xa8\x2e\x4d\x7d\xe9\xc2\xa8\x18\x65\x66\x1b\xf5\x8d\xbe\x4b\xf2\x96\x98\xa7\x67\x92\x26\x1c\xd0\x47\xf1\xa6\xb4\xb6\x50\xfe\x61\x7b\xe6\xfe\xdf\x5f\x40\x65\x56\x83\x5f\x07\x5b\xcb\x4c\xa8\x65\x33\x9c\x91\xbb\x38\x23\x72\x53\x49\xdc\x0f\xcd\x62\xc0\x3f\x2f\xd2\x54\x54\xae\xb1\x6e\xd7\xb8\xaa\x73\x6d\x02\xd0\x90\xa5\x82\x4c\x53\x2e\x00\xfa\xc9\x6a\x90\xab\xc1\xe3\x0b\xa3\xbc\xd8\x36\x41\x0a\x5a\x7e\x65\xbb\x3b\x67\x3f\xd5\xa6\xd4\xe0\xb6\x5d\x17\x97\x0a\x6c\x18\x55\x71\xc0\xa0\x3d\x7b\x5c\x18\xf2\xa8\xc7\xa3\x0f\xb6\xd2\x70\xce\xda\xc4\x70\x9c\xb7\x3e\xef\x62\xcb\xa3\x06\x7a\xcc\x3e\x07\x7c\xec\xcf\xec\x66\x91\x7f\x27\xe3\x35\xe8\xa4\x4d\x3a\x7c\x3f\xe3\xc0\xf7\x5a\xc0\x68\xfa\xaa\x66\x81\x05\x64\xa6\x89\x90\x30\x51\x80\xa9\x88\xce\xb3\x75\xe1\x52\x91\xa5\xc3\xa8\x13\x26\xe0\xa5\x57\xb9\x3d\x9a\x5e\x7b\xd7\x8f\x13\xc4\xb1\xe9\xb9\xaa\xbb\x92\x79\xfa\xda\xd0\x65\x2a\xb9\xfd\x8c\x6a\x30\x5d\x8c\x4f\xe0\x17\x20\x9d\xe3\x78\x9e\xcb\xcf\x41\x34\xf3\x9e\x83\xcd\x2c\x87\x89\x63\x0c\xc4\xee\x46\xf9\x53\x55\xc8\xec\x2e\x80\x97\xdd\xd6\xf6\x35\xcc\xb0\xd3\x49\xcb\xe3\x95\xf7\x9b\x3e\xad\xbb\x89\x1c\x40\xe8\x88\xec\x0b\x57\xff\x5c\x25\xd8\x9a\x6e\x8d\x92\xcc\x58\xe7\x6f\x9d\xad\x0a\x69\x79\x15\xf0\x73\x9c\xf1\x31\xfb\x7e\x98\x84\xf1\xca\xcb\x68\x69\xe0\xac\x08\x42\x5d\x6e\x28\x5d\xfe\x79\xe0\x0b\x3d\x3f\x77\x07\x6a\x10\x66\x51\x98\x10\x29\x96\x90\x1e\xcb\x4d\xc0\xf4\xea\x1d\x23\x7d\x1a\xad\x92\x95\x7f\x50\xcb\x67\xbe\xd7\x96\x98\x25\x93\x3d\x3a\x61\x81\x7d\x49\xee\x8d\xc0\xc3\x88\xfe\x7b\x44\xf8\xd8\xe5\xc7\x51\xd5\x51\xd9\x8a\xd2\x2d\xe0\x25\xbc\x41\xc4\xd2\xaf\xc3\xb9\x23\x9d\xba\x0f\xcb\x29\x00\x7a\x29\x17\x29\x9c\xbe\x5c\x71\x2d\x29\x6e\x84\x71\x94\x69\x69\x99\xd0\x9a\x6c\x49\x50\x9b\xd8\xe1\x22\x3f\x8c\xbd\xab\x5a\xc4\x3e\x44\x5b\xc8\xc2\xde\x00\x75\x0c\x0f\xfb\x38\x69\xbf\x9b\x4e\xe2\x4c\x36\x23\xa2\xbc\xbf\x03\x7f\x19\x73\xa9\x42\x06\xef\x50\x6e\x8e\xc5\xfe\xff\x09\x26\x08\xf7\x9c\x00\xe7\x25\x6b\x05\x1c\x91\xd8\x5e\xf5\xf2\xc7\x6c\xfb\x41\x10\x13\x78\x5c\x9d\xa0\xaf\x11\x2e\x09\xe3\x34\xe9\x59\xbd\x4f\xcd\xbe\x1b\x8e\x34\x09\xb5\x70\x98\xdf\x23\xd4\xe8\xbb\x56\x5b\x90\x11\x92\x1c\xf4\x77\x71\x96\xce\x5b\x7f\x8c\xe6\xfe\x37\xb0\x4b\x55\xea\x6f\x43\xc7\xd1\xea\x4a\xfc\xf5\x86\x47\x8a\x41\xe6\x54\xae\x57\x2b\x09\xce\x6c\x2b\x1d\x15\x0d\x4a\xdb\xec\x27\xa9\x1b\xf7\x35\x7e\x0b\xbd\xee\x47\x49\x6f\x87\x87\x76\x35\x30\xec\xa1\x64\xbb\x36\x26\x52\xa6\x73\xeb\x3b\x50\x94\x3c\x3b\xc1\xce\x8f\x03\xee\x7c\x97\x8b\x53\xdf\xe3\xb8\xe4\x02\x89\xd9\xbf\x4d\x24\xdf\xe9\xb2\x40\x85\xb1\x01\x4f\x8a\xd1\x94\x3b\x82\xc9\x87\x9d\xc2\xb6\xd8\xcb\xa7\x50\x7f\x68\x9f\x4f\x6e\xec\xb6\x20\x6c\xa0\xa3\xc7\x27\x98\x75\x9a\x85\x9d\xd8\x34\x58\x16\x6d\x82\x17\xf7\x54\xc0\xb4\x31\x43\x93\x6f\xf5\xa9\xe4\x05\x1c\x21\xd4\x7e\xee\x07\xa4\x23\x21\xa8\x28\xa5\x4f\xb0\x06\x4c\x0b\x21\xe5\x6a\xe8\x74\x44\x0d\x75\xb8\xed\x98\x10\xcc\xf8\x26\xf3\x62\xde\x24\x23\xd2\x37\x61\x57\xbb\x31\xae\xed\xee\xc7\xb3\x88\xf1\x6c\x68\xba\x5d\x3f\xea\xe3\x88\x74\xfd\x60\xf7\xc5\x8a\x48\xd9\x33\xf6\xcb\x36\xa9\xd0\x75\x99\xda\x71\x82\x5f\xc5\x06\xb9\x51\xe9\xfb\x1c\xdc\xdd\x8a\xa3\x0d\x47\x9b\x88\x77\x4f\x92\xb7\x5c\x32\x9d\x26\x4d\x3b\x8a\xf0\x8a\xf3\xfa\x5f\x3c\x24\x96\xeb\x01\x0d\xb1\x1a\xab\xeb\xce\x9c\xa7\x9b\xac\x73\x91\xeb\xb6\xef\x2a\xe5\x26\x89\xd2\x2c\x2a\x56\x1a\x93\x65\x12\x4f\x41\x77\xb9\xae\xf0\x39\x8c\xe2\x58\xe4\x7a\x94\x94\xb7\xfc\xfb\x5a\xd6\x78\xd4\xa1\x1a\x92\xc2\x36\xfe\x50\xab\x7a\x80\xe8\x49\xa7\x81\x1a\x4e\xb0\xf7\x2a\x95\x75\x3e\x26\x8a\x13\xab\xc8\xb6\xd3\xee\x0d\x64\xd4\x4d\x5b\xf3\x81\x0d\x97\x3a\x3b\xc0\xac\xa8\x4e\xa3\x62\xd3\x60\x81\xdf\xa9\x55\xbb\xdf\x61\xd6\xde\xa2\xe9\xc9\x6b\x63\x92\xa0\xbf\xc3\xd4\x2d\x50\x7d\x51\x19\x0a\x42\xc6\x6c\x42\x60\xe5\x2c\x84\xd3\xe6\x5d\x07\xf2\x54\xa9\x83\xab\xd6\x6c\xb6\x95\x98\xa8\xe8\x97\x69\x3d\x15\x63\xcb\x87\xc1\x41\x3c\x49\x5d\xc2\xd7\xc7\x3e\x96\x0e\xbb\xe6\xc5\x51\x58\x98\x78\x65\xca\xeb\x91\xad\xe1\x1c\x31\xca\x58\xd9\x61\xec\xb7\xd0\x79\xfb\x3a\x72\x4d\xcb\x77\xdf\x09\x73\x21\xd7\x74\x12\x60\x5e\x0e\xac\xe2\xc0\x34\xe4\xdc\x20\x75\x0b\x73\x07\x74\x12\x56\x41\x38\x19\xe1\x29\xee\xd4\x4d\x46\xcc\x8f\xba\x3d\x53\x60\x64\x83\x50\x9b\xfb\x1d\x6a\xf3\x31\xaa\x3b\xbe\x60\xd7\x8a\xbb\x88\xda\x27\xb7\x1f\x83\x43\x7c\x77\x02\x60\x3c\x4a\x0a\x93\x59\x64\xfe\x8c\x6b\x13\xfb\x21\x8e\xad\xab\x04\xa8\x41\x8d\x56\xfe\x83\xfa\x62\xdd\xb4\xdc\xd9\x56\xac\x0e\xa0\x92\xa3\xf4\x0d\xaf\xe1\x3d\x63\x20\x4f\x46\x1d\x60\xa8\xde\x24\xea\x86\x9f\xf2\xf4\xcd\xdb\x36\xb8\x40\xcc\x0d\xa9\x71\xfc\xd0\x55\xdb\xf9\x47\x1c\x29\xd4\x3b\xf2\x67\xad\x63\x84\x87\xdd\xd4\x26\xac\xce\x45\x42\x1f\x98\x30\x8b\x23\x93\x01\x7d\x80\x33\x24\x3d\x79\xf8\x72\xf0\xfa\xe9\xb0\x04\xf1\xe5\x02\x53\x88\x02\xcb\x6d\x7c\xac\x03\xdb\xcc\xed\x96\x03\xfc\x06\x8f\x44\x0a\x57\xa8\xa8\x5b\x06\xc4\x96\xb1\x55\x06\xa1\xa5\x44\x13\x50\xc4\xfc\xc7\xde\x59\xf5\x8d\xc9\xb6\x4c\x9a\x60\xe2\x24\x29\xbf\x2b\x5b\x4f\x1c\x6d\xfb\xbd\x67\xd7\xef\xd4\x49\x96\x71\x11\xc6\xc5\xff\xe5\xe3\x6a\xfc\xaf\xc1\xe6\xbc\x29\x0a\x93\xed\xa0\xf9\xa6\x3f\xf0\x18\xbc\xff\xe6\x73\x18\xef\xc6\x59\x6e\x41\xd1\xc6\x1a\x86\x6f\xb6\xec\xf1\xd7\x69\xd5\xf2\xa1\xb0\x63\x76\xae\x7a\xb8\xfe\x14\x75\x8b\x77\xad\xda\x05\x52\x2a\x05\xcf\xec\x9a\x45\xf3\xc8\x1d\x75\x00\x9f\x9a\xd9\x17\x9d\x84\x4b\x2f\xed\x76\x4d\x2e\xea\x19\x28\xb1\x9d\xa6\xa9\xb1\xd3\x15\xf3\xbb\x67\x4f\xab\x37\x2a\xbf\x9a\x35\xbf\xca\xb9\xe0\x9f\x67\xcd\x01\x88\xf2\x51\xd2\x0d\x57\x34\xb9\x86\x75\x01\x25\x3f\xce\xe8\xfb\x5c\x37\xfa\xe6\xd8\x2b\x3f\xe7\xa3\xf9\xbc\x08\x13\x8c\x85\x6f\x7b\x18\xe0\xdb\xbe\x02\xd4\xc5\x5f\x81\x03\x47\x94\x06\x0e\x5b\xf9\x0f\xfb\x86\x55\x96\xc9\x4b\x3f\x9d\xab\x61\xdd\x7c\xb6\x15\x0e\x4c\x56\xe6\x69\xd6\x2f\x8a\xae\x13\x9e\x51\x45\x9e\xbc\x5f\x4c\xbb\x2b\x8f\xb8\xa1\xac\x3b\x7f\x0d\xbb\x1f\xdb\xea\x81\x5d\x0d\xe4\x2f\xb7\x99\xd9\x0d\xa4\xdb\x38\x22\x78\x9d\xc8\x93\x76\xda\xa9\x59\x37\x26\x54\xbe\x33\x27\x8d\xed\x40\x2f\x32\x79\xf2\xb0\x46\x40\x99\x59\xa5\x4b\x26\xb3\xb1\xaf\xa6\xaf\x34\x93\x7e\x89\x78\xf2\xa7\xec\x16\x53\x09\xc2\x8d\x76\x7a\xcf\x1e\x9b\x30\x0c\xa3\x2c\xec\x00\x5e\xc5\x53\x4f\x72\x4d\x4c\x64\x42\x80\x06\xbe\x7c\x87\x97\xf4\xd8\x49\xca\xe0\xa4\xf4\x06\xe2\x49\x1d\x16\xf3\x4c\x91\x92\x33\x20\xa0\xc0\x2e\x94\x6b\xd8\x3a\x95\xef\x2b\x9f\x49\xc9\x29\x1f\x46\xc6\x6f\xc5\xb3\x9b\x14\x27\x9e\x83\xdb\x82\x55\x7d\x8d\xa4\xad\x8e\x12\x54\x6c\xc1\x24\x89\x11\x8d\x49\xd8\x9f\xdf\xb5\x3f\x29\xd7\x95\xc3\x70\x70\x77\xab\x1b\x0e\xc2\x1e\x50\x9c\x4a\x4f\xeb\x5b\x71\x93\x23\x06\x9d\xfe\x8a\x1d\x35\x87\xbb\xbc\x1a\x78\x28\xff\x19\x72\xa3\x57\x89\xd1\xf8\x0c\xad\x73\x94\xe4\x43\xd3\x29\x50\xd5\x52\xbd\x15\x5f\x86\x38\x49\x31\x73\x36\x2a\xa3\xc9\x1d\x64\x2c\x45\x73\x59\x44\x7e\x99\x97\x5a\x64\xe9\x80\x60\xbd\x56\xbe\xb8\xf5\x7b\xd8\x6a\xda\x3f\x65\xe8\xc8\x55\x12\x68\x84\xa6\xe7\xfa\xbd\x4a\xc0\xb1\x67\xba\x35\x4c\xe3\xc8\x8a\xf3\xe2\x97\x61\x1a\x44\x04\x41\x6e\x2a\x6d\x9e\xbd\x33\xad\x7c\x31\xa2\xb9\xeb\xdb\x44\xc0\x76\x9b\xe2\xb2\x4e\xdf\x84\xc3\x29\x0f\x68\x86\xf9\x51\x7e\xa7\x72\xeb\xb9\xe2\x9b\x2f\xc4\x51\xd1\x4f\xe5\xa9\x5d\x53\xf2\x23\x0e\xc6\xd6\xed\x5f\x53\x96\x7a\x0f\x4a\x3d\xe1\x8a\x34\x45\xb8\x68\xca\xb3\x66\x87\xcb\x91\xd5\x8a\x40\x16\x50\xfe\x80\x49\xc2\x97\x6c\x6d\x6f\xc4\x09\x4c\x1f\x40\x42\xfe\xa2\x05\x68\x0a\x2d\x85\x62\xdd\xfd\x2f\xde\xa3\x6d\x19\x0e\xca\xd8\x62\x5b\xf9\x2c\xb0\x24\x3b\xdb\xbe\x00\x76\x1f\x0d\x6e\xd1\x47\xb7\x0f\x8f\xf7\xb3\xcd\x9a\x15\xc9\x50\x83\x87\xc2\x6e\x6b\xe4\x16\x16\x3a\x9d\x26\x45\x39\x9b\xa5\xe2\x8b\x58\x17\x61\x84\x0e\x5b\xa9\xb1\x2f\x22\x70\x60\xda\x85\x94\x8a\x3e\xf5\xb1\x2f\x12\x9b\x3d\x31\xac\x97\x6e\x0f\x95\x8b\x0f\x11\xdb\xc8\x4d\x4d\xc6\x32\x6b\x09\x3f\xec\x19\xd6\xb1\x3c\x1a\xef\x3c\x8a\xaf\x21\x1d\xeb\xcc\x24\xbd\xa2\x6f\x12\xc8\x18\xcd\x39\xa2\x79\x22\xbe\xe2\x61\xf7\xb0\x6b\x76\x95\x4b\xe5\x14\xbc\xcb\x37\x82\xca\xdc\x13\xab\x3c\x4f\x8d\xa2\x2d\xca\x4d\xff\x0a\x51\x0a\xc8\x0a\x7e\x01\xf6\x5f\xc8\x70\x03\xaf\x65\xfc\x60\xec\xed\xf1\xe9\x49\xdd\xe0\xf2\x7d\xa0\x31\x20\xb8\x73\xad\x54\xdb\x95\xb7\xaf\xf9\xef\x3c\xb1\xea\x47\x58\xb6\xb6\x9b\x73\xbb\xf7\xaf\x5f\x81\x55\x87\x53\xf8\xac\xed\xd4\xaa\x83\xaf\x06\xfe\xd3\x2a\x4d\x8d\x85\x73\xea\x96\xfb\xf6\x39\x75\xcb\x3a\x01\xe2\x74\x01\x73\x56\x12\xe4\x8e\x3d\x4c\xeb\xae\x9b\x42\xcd\x8b\x34\x91\x12\x38\xb6\x18\xa4\x75\x1d\x13\xbb\xcb\x87\x7e\x12\x10\x54\xf2\xeb\x63\x5f\xd8\xf8\x4d\x7b\xb8\x1c\x63\x5e\xb9\xe8\x48\x02\x8e\x8f\x3f\x53\x91\x1f\x13\xbb\xde\x28\xc3\x56\x6d\x48\x91\x75\x9f\x88\x4e\x87\x51\x9e\x76\x81\x5c\x13\x9e\x69\x3c\x82\x92\x4e\x7b\x0e\x99\x5e\x02\x8e\x3a\xb8\xdb\xd3\x28\x27\xf2\xcc\x8d\x86\x11\xf5\xd3\x65\x1a\x05\xb9\xdc\xb8\x7c\x20\xb9\x79\x68\xed\xbc\x17\x16\xa8\x2c\x4a\xad\x0b\xbf\xa5\x85\xaf\xaa\x5f\x9f\xb1\x80\xfe\x66\x83\xb8\x14\xcb\x75\x73\x7a\xef\x44\x0a\x5e\xa1\x54\x99\x9b\x6d\x2d\x44\x89\xf5\xce\xe5\xfe\x54\x50\x58\xc3\xe9\x05\xbe\x4f\xd3\x5b\xc3\x51\xd6\xe9\x87\xb9\x79\xd4\xee\x46\xe4\x09\x42\x94\xa3\x55\x08\x3f\x13\xf7\x06\xdc\x86\xf4\xac\x83\xc9\x06\xf6\xdc\xee\x89\xd9\x27\x9c\x2b\x0c\x54\x08\xdb\x27\xcf\x41\x09\x91\x90\x2b\x7b\x94\x27\x56\x3e\x7d\xfc\x49\x4f\xcc\x61\xb2\x85\x34\x1b\x84\xa5\xcd\x9c\xf2\x40\xce\x1f\x30\x35\xe2\x11\x24\x01\x8e\x91\xdc\xc9\x99\x7e\x9b\x19\x72\xc3\x28\x5e\xd9\x5e\xee\x23\x25\x8d\xb6\x6b\x83\x10\xef\x1c\x19\x7f\x3c\x30\x52\xa1\xa3\x3c\xc0\x7b\x3f\xf0\x33\x1b\xb3\x70\x1d\xf2\x1b\x34\xd7\xff\x80\xa7\x9a\xa2\xae\xb2\x21\x01\x8a\x0a\x6a\x51\xb9\xae\x25\xcc\x4d\xe7\xf3\x8e\x65\xfc\x75\x42\x6d\xa0\x8b\x95\x6b\x02\xa0\x2e\x99\xac\x1b\x75\x44\xd6\x1d\xd0\xc4\x35\x3c\x94\xdc\x38\xbf\x65\x47\xa8\x2d\x03\xbb\xa3\xb8\x83\x5a\x14\x3c\x4e\x73\xb5\xf1\xc5\x43\x0e\x76\xf2\xb8\xfb\xa5\x3c\xca\xf0\x2b\x82\x82\x1b\xb3\x96\xf2\xd8\x0f\x52\xdd\x27\x80\x5d\x1c\xe6\xc5\x27\x29\xe4\x00\x95\x18\x2c\xdc\x03\x9e\xf0\xb9\x0d\xbb\x0f\xb4\x8c\xf0\x5c\xe2\xbd\xdc\x0f\x1a\x7f\x77\xbf\x34\xf8\xd0\x52\x43\xce\x7f\x83\x87\x6e\x7f\x08\xdc\x8e\x82\xf7\xed\x66\x45\xee\x04\xba\x4a\x04\xb9\x3b\x90\x23\x21\xf6\xbb\xc3\x88\x9e\xdf\xb2\x41\x98\xaa\x5b\x35\x7e\xf9\xef\x4d\xa4\x83\xda\xd2\x60\x29\xcc\x93\x36\xc0\x80\x0f\x10\xa1\x2c\x51\xeb\xb2\x85\x6d\x44\xf7\xe7\xad\x99\x43\x31\xf3\x6b\x13\x58\xdc\xa4\xf3\xf9\xc7\x08\xaa\xf6\xaf\x84\x39\xd5\xe3\x47\xee\x07\x14\x7d\x7e\x8c\x6f\xe4\x74\x89\xca\x07\xc7\x8b\x43\xee\x0a\x50\xd4\x2a\x9c\x09\xda\x27\xdf\xb5\x9b\x53\xe9\x3b\xf8\x08\xd8\x65\xc3\x46\x9d\xe0\xd1\xbd\x4f\x6c\x5c\x49\x9a\x15\x7d\x13\xe6\x85\x35\x8b\x8e\xfd\xc5\xb5\xec\x6f\x06\x1e\x24\xbf\x46\x1a\xfb\x59\x98\x2c\xca\xd8\x1e\x1a\xba\x90\xb3\x96\xeb\x55\x4f\x9e\x3b\x1f\xc5\xf1\x13\x14\x06\x3e\xba\x6a\xa3\x17\xf8\xfd\x13\x84\xb9\x78\x17\xde\xda\xc5\xc7\x6e\xd1\xff\x19\xf6\x1f\xde\xdf\x35\x98\x0b\xbc\xff\x0f\x00\x38\x51\x21\x8b\xf2\xa9\x71\xc4\x36\xad\xa2\x61\x82\xd6\xc4\x5a\x0d\x6f\xb0\xb2\x86\xe1\x4d\xc3\x27\x7d\xa2\xed\xfd\xe4\xdb\xc4\x9a\x7c\x6f\x4c\x13\x89\xa2\xb6\xa4\x63\xf0\x1b\x8d\x7e\x69\x81\x3b\x69\xb2\x90\xa5\x89\x14\x8d\x85\xc8\x1a\x9b\x58\x59\xad\x37\xc6\x88\x96\x87\xd9\x53\x6d\x34\x48\x31\xe0\x3c\x99\xd4\xea\xbc\xc3\xa1\xd2\xe0\xf7\xfa\xf2\x59\x32\x50\x8f\xcf\xd2\xe9\xfa\x27\x49\x1a\x29\x06\x8b\xe9\x76\xfb\x03\xd2\xb8\xc1\x17\x72\x64\x23\x73\xbb\x5d\x47\xc7\x2b\xf5\x9f\xc3\x26\xa5\x80\x69\xd6\xff\x94\xaa\x8d\xfe\x8f\xa8\xf6\x60\x93\xf9\x8a\xc3\x7c\x9a\xbe\xec\x22\x45\xa5\xae\xf6\xe6\xd0\xd7\x0f\x3a\x71\x94\x94\x29\x04\xd1\xb3\x62\x3a\x57\xae\x2b\xe5\x99\x3d\xd3\xd2\x99\x6f\xf8\xce\x22\x64\x25\xe4\x9a\x18\xb3\x46\x49\x54\x6c\x23\x1e\xd5\xb7\xa9\x20\x07\x45\x40\x14\xa3\xce\x07\x44\x8d\x7e\x67\x4c\x96\x6b\x2d\x20\x64\xde\x2b\x62\x23\x94\x1b\xb9\x26\x5e\xd8\xdf\xea\x86\x45\x38\x41\x4d\xf6\x33\xa6\x26\xfb\x19\x35\x4e\x5e\x0e\x57\xc2\x6e\xd4\xc4\xae\xc5\x8a\x7f\x8f\x0a\x81\xa2\x50\xa6\x12\xc8\x6a\xaa\x5f\x30\x49\x12\xc9\x66\xc1\x0f\x1e\xa7\x21\xe2\xe3\x14\xf1\x3e\xf7\xe5\x5f\xde\x36\x61\xc5\x89\xf6\x1a\x94\xb0\xf0\xd3\x8a\xf5\x50\xce\x36\xb2\x46\xc7\x61\x8d\x94\x14\x8a\x9a\x2e\xe4\x9b\xac\xf6\x49\xd6\x31\xdb\x3d\x22\x75\x0b\x86\x5d\x91\x6f\x5e\x22\x7e\xa5\x53\x24\x77\x23\x31\x38\xb6\xce\xcd\x31\xcd\x58\x5e\x92\x85\x76\x04\x0a\x8e\xae\xb7\xaa\x3a\x73\x70\xf7\xb3\xad\xbc\xef\xe6\x4b\x05\xe9\x1b\x10\x61\xd6\x45\xa2\xb8\x9e\xcf\xa2\x6e\xcf\x6c\xa5\xb6\x25\x6a\xaf\x42\x53\x8c\x43\x84\x73\x2e\x31\xb8\xdc\xf0\x3c\x4e\x40\x92\x3b\x97\xdc\xb0\x5a\x37\x1d\x44\x8e\x82\x08\x79\x17\x1c\xaf\x5c\xaf\xb2\x87\x58\x48\xf3\x26\x4b\xca\x10\x13\x09\xf2\x43\xa0\x5f\xcf\x10\x91\x71\x5e\x84\x0b\x0b\x26\x83\xfd\x85\x85\x7f\x3f\x20\x73\xff\x3e\x6b\x4f\x99\x64\xd4\xcb\x8c\x59\xb4\x0f\xa3\x48\xa9\x86\x93\x5a\xba\xe8\xc2\x85\x38\x4c\x7a\xa3\x28\xef\x4f\x11\x4f\x00\x18\x2b\xb0\x24\x48\x94\xb5\x1b\x52\xfe\x05\x6d\xb8\x57\x5f\xc4\x4c\x2b\x2f\xa2\x85\x05\xee\x09\xad\x91\x0e\xde\x9a\x63\xda\x49\xa2\x7e\xc3\x97\xcf\xd6\x98\xd0\x69\xad\xe6\x05\xcf\xb4\x5e\x48\x23\x11\xd7\xc1\xb1\x44\x33\x47\xae\xc7\x4f\x4d\x26\x12\x87\x0f\xb7\xe6\x66\xa7\x88\xa3\x37\xf0\x00\xc4\x93\x24\xd1\x79\xd2\x7e\x4d\x9d\x7d\x7f\x9c\x0a\xdf\x0a\xc8\x71\x05\x3a\x22\x59\xaf\x19\xa1\x30\x49\x27\xf6\xd4\xed\x42\xb6\x15\xf8\x7c\x6a\xad\x56\xa6\xc3\x22\xd0\xf3\xc2\x24\x05\x10\x1a\xa2\x67\x42\xac\x98\x98\xc5\x51\x8c\xb1\x0f\x6e\xf3\x7e\xd8\x5d\x61\x0c\x22\x8f\x88\xae\xb9\xe1\xf6\x4e\xda\x0d\xad\x87\x9f\x00\xa3\x60\xd1\xe0\xe2\x75\xf7\x7d\x92\xfa\x1b\x09\x58\xe0\xd3\x0c\xb1\x26\xe2\x0a\x94\xbb\xe4\xba\xe2\x8f\xe6\x76\xb7\x3a\xe1\x48\xf4\x60\xb0\x6d\x5e\x0d\xfc\xa9\x7a\xb5\x42\x13\x6d\x3b\xe7\xcb\x91\x65\x26\x70\x8a\x11\x5a\x43\xf0\xa4\x28\x17\x5d\x85\x7f\x21\x33\xa6\xbb\x9d\x84\x8d\x6e\x22\x24\x44\x9b\xed\x24\x22\x34\xc7\x10\x5a\xae\x26\x5a\x6b\x0d\xa4\xec\x38\x20\xc0\x8e\x60\x99\x5f\x47\x66\xa3\xb1\x42\xc3\xd1\x41\x7c\x50\xd9\xd7\xf6\x61\x87\x59\x2a\x7c\x0f\x08\x17\x41\x82\x80\xa3\x70\x83\x52\xe7\x33\xb5\xe2\xcc\x51\xd7\x83\x11\xf1\x96\xee\x8f\xfd\xeb\xbb\x5f\x29\x84\xcc\xcc\xec\x6f\xf5\x0c\xda\x9a\xe8\xbc\xdc\xe4\x96\x2c\xa2\x5e\xc7\x46\xeb\x29\xc0\x2e\x54\x1e\xde\xbe\x9a\x7c\x14\xc6\x8d\x4a\x8a\xa7\xa9\x58\x0d\xcd\x5e\xba\x64\xb2\x7e\x38\x8a\xdd\x43\xab\xd2\xab\xc7\x37\x9c\x27\xcb\xd4\x8d\xc2\x41\x9a\x58\xb6\xa8\x67\x3d\xf1\xcf\x17\x0f\x49\x4d\x5e\x9a\xa8\x12\xfd\xd9\x85\x23\x7e\xc6\xe7\x5d\x58\x58\x07\x7b\x0f\xb3\x42\x58\xb0\x34\x15\x86\x67\x10\xd4\x72\x40\xed\x0e\x0c\xbc\xad\xbf\x46\x1e\x30\xef\xa7\x53\xe5\x73\x20\x5e\x6f\x5a\xae\x5e\x44\x09\xc8\x35\xb0\xb6\x97\x49\xcb\xf4\x24\x55\x20\x6d\x3c\x67\x0b\x88\x30\x4d\x5f\x0f\xa8\x9d\x73\x62\xcc\x63\x42\x76\xff\xa1\x26\xf0\x66\xed\x00\xc7\x4b\xc3\x34\x57\x6d\x17\x3c\xc1\x3b\x81\x8f\x5f\xde\x21\xeb\xf3\x82\x59\xc6\xfc\x9b\xe2\xd4\xa9\x8e\x7e\xbb\x4e\xc6\x64\x98\x2e\x9b\x4c\x02\x28\x99\x5c\x9c\x98\x62\xf4\xf1\x7b\x61\x09\xa1\x78\x08\xc5\x46\x01\xda\x51\xd7\x90\xcc\x84\x59\xe6\x5a\xb0\xc8\x0e\xae\x51\x0d\xfa\x01\x29\xb2\x9c\xa0\xe5\x5a\x06\x9b\x9f\x43\xbf\x7e\x6b\xec\x89\x9d\xbf\x55\xa7\x1c\xd4\x89\xc3\x6c\x31\x9f\x1f\x65\xbd\x89\x02\xf2\x1a\x17\x90\xab\xee\x60\xfa\x40\x2b\x0e\x57\x06\x82\x74\x17\xda\x8e\xa0\x41\x4a\x1d\x1b\xdc\xc1\xf4\x81\xd6\xe1\xc3\x4f\x5a\x80\x29\xa9\x5d\x3a\x3a\x08\x60\xae\x14\x98\xc8\x63\xbd\x63\xff\xb2\x44\x5c\x05\xbf\x72\x81\x38\xce\xbe\x8b\x3d\xa1\x2c\xca\x65\x42\x88\x0f\x79\xc0\x05\x46\x9d\x72\xc3\x7f\x81\xea\xc7\xe9\x2f\x96\x5b\x07\xd8\x51\xc1\x58\x23\x03\xda\xdc\x26\xc6\x91\xe3\x5c\xa1\x39\x45\x25\xb5\xf7\xec\x1b\x54\xc8\xda\x2f\x3e\xa4\x1a\x65\x47\xbb\x8a\x28\x2f\x84\xdd\x5d\x5d\x0d\x31\xc9\xdc\xc7\x3e\xd3\xb1\x49\xcf\xa2\xbe\x60\x61\xe6\x49\x11\xaf\x4c\xf9\xb6\xee\x4d\xc6\xb6\xbd\x12\xf8\xb2\xd5\x1a\x3b\x99\x13\x44\xad\x53\x84\x51\xb2\x85\x54\x46\x91\x7b\xa3\xd4\x72\x0c\x2f\x44\xc8\xc1\xc9\x01\xfc\x78\x4c\x61\xa4\x2f\x43\x77\xc2\xc4\x53\x9f\x20\x4f\x40\xf3\x5e\xae\xeb\xa6\xdb\x3a\xfd\x34\xea\x18\xf9\xfe\xa8\xaf\xfc\xd3\x4a\xd3\x7a\xfd\x8a\x8b\xe6\x86\x59\xb9\x62\x1d\xe5\xbf\x44\x78\x0e\x49\x0b\x11\x53\x63\xca\xc8\xfb\x2e\x3c\xef\xa4\x61\x61\xc4\x55\x08\x6f\x02\xeb\x77\x36\x25\xd6\xd6\xc8\xa7\x82\xee\xb5\x8a\x5a\x85\xc9\x32\x55\x13\x94\xd9\x55\x52\x52\x7e\xcb\x2d\x44\x37\xca\x07\x51\x8e\x81\x06\xc5\x55\x96\xcb\x0a\x6f\xf0\x80\xc7\xae\x2f\x97\xc7\x42\xf0\x5a\x8b\x49\xba\x0c\x82\x9a\x2d\xbe\x7c\x7a\x65\xec\x2b\x2e\xbf\xb1\x0b\x7e\x93\x59\x4f\xdd\x20\x67\xf9\x37\xe1\xd8\xaf\xd5\x69\xea\x95\xbe\xa3\x93\x0e\x04\x19\xc4\x11\x98\x46\x5a\x1e\x80\x48\x94\x27\xbe\x07\x2a\xdc\xfe\x72\x33\xf6\xe3\x2d\xf3\xe9\x4b\x88\x7a\xd4\x73\x91\x17\xab\xd5\x89\xed\xac\x74\x1c\x0d\x10\xca\x64\xef\x05\x54\x33\x7b\xaf\x52\x16\x2f\x13\xf9\x7e\x54\xc0\xe1\xb8\x11\x27\x3f\x08\x77\x85\x78\xa3\x64\xe8\x4b\xa7\xf1\x6a\x84\xe7\xfc\x90\xa0\x76\xe4\xbc\x8e\xc8\xa5\x5a\x4b\x9e\xa5\xf3\xda\x2b\x82\xad\x05\xc8\x57\xae\x29\xbe\xef\x9a\x41\xda\xc9\xc2\x22\xdf\xe2\x43\x0f\xbc\x26\x34\xa7\x04\x45\x04\xcb\x7e\xcd\xee\x09\x7c\x9d\xf3\xd6\xf6\x28\x38\x8d\xf8\x9e\x06\x66\x47\xf9\x53\x38\x19\x3b\xda\x7e\x00\xe3\x22\x53\x8b\x7d\x14\x90\x85\xfa\x35\xac\x80\x1b\xe7\xfc\xe2\x21\x0f\x47\x9e\x25\xba\x7c\x8f\xff\x3b\xcd\x2a\x93\x1f\x8f\x3d\x36\xce\x0c\xe6\xb3\xb0\x63\xba\x8c\x8e\x9c\x98\x72\xa8\x1c\xe9\xe9\x03\xad\xc5\xa8\xe8\xf4\x8d\x08\xbd\xba\xba\x9d\xe3\x14\x39\xe9\x8a\x11\xe6\xa5\x7e\x34\x1f\x15\x34\x27\xb3\xb3\xed\xe3\xd9\x33\x63\x7a\x28\xb1\x5f\xa8\x61\x82\x0d\x0a\xc9\x02\xea\x63\xd8\x38\x97\xe9\xc9\xa3\x64\xc9\x23\x68\xd1\x85\x94\x59\x24\xb9\x21\xdc\x4f\x6e\x5c\xb5\x57\xda\xae\x01\x05\xee\x3f\xad\xc0\x15\xf6\xec\x29\xb7\x44\xc7\xe4\x4e\x1b\x93\x9b\xe3\xd8\x15\xdf\xc1\x4b\xd0\xb7\x5b\x33\x0d\xac\x4a\xae\x53\x24\xa7\x20\x15\x7f\x0d\xe8\x27\x66\xc6\xca\x3f\xa7\x33\x63\x6e\xde\x3e\xec\x44\x45\xd3\x1b\x8b\xf3\x84\xb8\xbd\xcd\xfe\xfa\x44\x30\x31\x63\x5f\x7c\x9a\xe4\x03\xb6\xb4\x09\x9a\xb7\xcd\xca\xe6\xc2\x7a\x5e\x45\x49\x4f\x13\xc0\x72\xa1\xe1\x50\xbf\x1f\x34\xbe\x3c\xed\x3d\x4b\x79\x2a\x51\x2d\x78\xac\xed\x03\x97\x3f\x1f\xd3\x90\x3c\xbe\x17\x76\xee\xe3\xab\xa5\x51\x71\x85\x95\x39\x85\xe8\x7c\x04\xf8\x2c\xf2\xf7\x2d\x28\x4d\xe2\xd7\xc7\xa8\x53\x23\x84\xfd\xd8\xc2\x73\xa5\xd6\x83\xcd\x88\x0f\xc7\xe8\x20\x36\xd9\xcf\x02\x62\x44\xdc\xb9\x4a\xc4\xeb\xf7\xc5\xe7\x23\x02\x78\x05\x73\x30\xc2\x08\xc8\xbc\x3c\xc7\x2a\xa1\x91\xf3\xda\xfd\x28\x01\x36\xc3\x09\x24\xf1\x8c\x5b\x35\xa7\x9c\x29\xd3\xb7\xa5\x08\x0c\x1e\xd6\xd0\xc1\x0f\xdf\x1f\xfb\x6c\xf9\xfe\xc4\x18\xb7\xc9\xcd\xa7\x2d\xfb\x10\x94\x5e\x64\x22\xc9\x82\xb4\x71\x04\xee\xe0\x28\xa3\x3e\xfa\x84\x6d\x44\xc2\x35\x6f\x6e\xbb\x09\xc8\x5f\xfd\x94\x45\x4c\xe2\x5d\x3e\x6d\x21\x2f\xe8\xb3\x6c\xb6\x8d\x4d\xd4\xce\x3e\x0e\x2c\x05\xfc\x04\xaf\x9e\x70\x62\xb2\x74\x9b\xc8\x28\xe1\x59\x3f\x06\xf6\x60\x6a\xd5\xc7\x17\x1f\x4e\xd0\xa7\x52\x37\xf9\xfe\x98\x11\x48\x42\x3f\x2e\xff\x15\x90\xb8\x84\x00\xa9\xb1\x2b\xae\x21\xf0\x10\x1e\x5d\x5b\xda\xd7\xa5\xf6\xa6\xf1\x3f\xfe\x3b\xff\x59\xa3\xfc\xde\x12\x09\xdb\x97\xaf\x51\xb1\xb7\xc8\x85\xc9\x0b\x0c\x24\x95\x3f\x2b\x73\x1c\x01\x9d\x0c\x2f\x5c\x16\x66\xe1\x3c\x01\x20\x3e\xd1\xa6\xba\xdc\x27\x56\x37\xe6\xca\xfb\xf6\xb5\x4c\xd2\x49\x47\x59\xd8\x33\x4e\x62\xd8\xd1\x26\x7b\x0a\xe5\x3a\xba\xf4\x4e\x66\xba\x51\xb1\x1c\x16\x9d\x7e\xc3\x1f\xd8\xeb\x8c\xac\xbe\x4e\x82\x39\x99\xc9\xd3\x78\x54\xfa\xe3\x29\x9f\xbd\xdf\xc2\x97\x10\x64\xd7\x98\x78\x04\xaf\x12\x06\xe6\x63\x4e\x33\xca\x84\xa4\x39\x21\x80\xe6\x81\xa5\x37\x03\x52\xac\xfa\xa0\x8e\x03\x24\x2f\x56\x36\x78\x6d\x29\xb8\xa9\xf1\xdd\x45\x90\xea\x2c\x4a\xbb\x79\xd3\x8b\x5c\xde\xb1\x2f\x51\xbb\x97\xe5\x56\x84\x43\xbc\xe1\x4a\x09\xb9\x49\xba\x52\xde\x21\xbe\x81\x69\x47\xe4\x52\xe3\xc8\x8b\x34\x11\xb6\x70\x9c\xdf\x9f\x13\xbb\xe7\xcf\x5d\xb9\x25\x4f\x42\xf0\xe6\x08\x5f\x32\xb9\xe3\x4b\x93\x92\x0f\x49\x37\xcc\xba\xf9\x16\x5a\x08\x94\x03\xd4\x86\x79\xa5\x56\x8c\xe4\x89\xd4\xce\xd8\xa7\xaf\x0f\x02\xa6\x6a\x13\xfa\x9d\x47\x3d\xf0\xf8\x01\x8c\x25\x2a\xdd\x02\x2a\x53\xc5\x38\x66\xa3\x3f\x0b\x61\x06\x14\x1b\x4f\x50\x1f\xe0\x04\xf2\x1a\x24\x39\x12\xed\x23\x7b\xb9\x44\x43\x76\x3b\xdb\xdc\xbd\xb3\xfb\x04\xed\xc3\x5b\x34\x38\xd2\x31\x49\x91\x85\xf1\xd6\xf2\x5c\x60\x68\xeb\x24\x22\x3c\xe5\x14\xf1\xcd\xd8\xc7\x09\x15\x2d\x87\x47\xfe\xc3\x7a\x0b\xf9\xed\x3a\xfd\xed\xa2\x9f\x99\xb0\x3b\x41\x3f\x75\x91\xe9\xa7\x2e\x56\x02\x88\xf2\x78\xa4\x9d\x30\x4a\xd0\xf6\xd4\xf9\x09\x3f\x78\x2c\xd0\x55\x0d\x05\xdc\x68\x6f\x62\x7b\x2f\x2e\x41\xc6\x0b\x01\xd6\x0c\xce\xf1\x8d\xc0\x43\xee\xbf\x4a\xc0\xb8\x4e\x68\xcf\xd6\x56\x1a\xd1\x38\x46\xec\x2c\x60\x4d\x85\xe5\x7c\x37\x98\xd4\xa4\x99\xdb\xcd\x5f\xca\x13\x6a\xf8\x43\x37\x48\xe7\xa3\xb8\x41\xcc\x19\xc8\x0c\xe5\x9a\xa5\x25\xa2\x98\x28\x3e\x3e\xb4\x9b\x4d\xae\x89\x1e\x23\x4a\xba\x66\x68\x92\xae\x4d\xfc\x1a\xb4\x53\xf1\xc4\x72\x5d\x49\x5f\x0e\x3c\xd7\xea\x44\x59\x67\x34\x58\xb2\x96\xea\xe0\x6e\xd7\x9e\x6e\x38\xb1\x84\xaa\x28\x4c\x19\xe7\xa0\xf1\xdf\xf4\x65\x06\xe0\x28\x11\x07\xdc\x63\xce\xc4\xd7\x7c\xa1\x22\x09\x3b\x8e\x84\x05\x36\xa9\xd9\x26\xdd\x8b\xe6\x6a\x35\xc8\xde\xdf\x0a\xbb\x5d\x19\x4b\x83\x13\x90\xce\x19\xb6\xfa\x55\xe4\x37\x30\x26\x47\x08\x6f\xd2\x49\xd3\x45\x6d\xef\x2b\x93\x97\x7d\x15\x4a\xf1\x55\x45\xc2\x3f\x6f\x69\x3a\xd3\xcc\x79\x63\xa7\x72\xe0\x15\x0f\xdc\x77\x49\xa2\x3c\x0f\x13\xc5\xd1\xa2\x4a\x7f\x1d\x76\x6f\x82\xed\x54\x8d\xa0\x6f\xb6\xae\x84\x59\xb7\x49\x01\xc5\x07\xa4\x9f\x73\xd3\xa6\x1c\x2a\x30\x54\x4b\x49\xd3\xcf\xd2\x51\xaf\x6f\x11\xa5\x80\x26\x3d\xd1\xf6\xa5\xb1\x9b\xd4\x8f\x7a\x75\xec\x83\xf3\xad\xab\x3b\xa9\xc9\x96\x8d\xfa\x16\xb2\x23\x34\x8a\x8c\x90\xa9\xd2\x91\xed\xdb\xd7\x1a\x5a\x32\xf8\x83\xbb\x3d\x0b\xb3\xcb\x73\x8f\x93\x61\xeb\xf4\x2d\xe7\x6b\x0f\x4a\x48\x2e\x58\xf7\x4c\x85\x9b\x56\x3d\x08\x05\x4d\x43\xf9\x77\x1b\xdd\xa3\x51\xf5\x1d\x3c\x0d\x7c\xd9\x5b\x40\xde\xc0\x6c\x12\xef\x71\x9a\xec\xf0\x00\xd0\x73\x08\x81\x91\x0f\x7c\x88\x9d\x07\x33\x7e\x05\xef\x43\x29\x98\x7c\x9c\xba\x1e\x10\x08\xf7\x01\x95\x99\x6f\xdb\x35\x13\x11\x9c\x80\xd2\xca\x2b\x35\x93\x13\xcf\xb7\x3c\xaf\x50\xc3\x93\xc7\xf3\xb0\xee\x05\x92\xc6\xca\xc3\x95\xc7\x7c\x25\x0e\xd4\x79\x58\xc4\xf3\xf6\xe8\xbb\xe6\x4a\x19\x78\xc2\x23\xfe\x3c\xa0\x2a\xf2\x7b\xe0\xc7\x94\xff\x81\xc3\x00\xa8\xe6\x02\xcb\xd6\x3e\xdd\xa6\xd1\xd9\x7f\x50\x29\x9b\xa2\xe4\xb2\x09\x61\x9b\x52\xe8\xd4\xd4\xec\x16\x22\x7f\x0e\x1c\x13\xbe\x67\xc5\x0f\xfc\x7e\xea\xa5\x03\xf3\xf2\x84\x22\xff\x78\x62\x24\xa6\xa2\xa4\x31\xdb\xea\x84\xc2\x03\x2d\x39\x7b\xe0\x51\xc5\x97\x18\x14\x64\x8c\xa4\x5f\x4e\x2a\xdb\x0f\x77\x9f\x23\x3a\x6f\x9b\x88\x37\x3c\x90\xef\x14\x91\x75\x9d\xa2\x6e\x62\x34\x18\xa6\x59\x01\xca\x40\x14\xa9\x4e\x13\x61\x26\x14\x13\xf0\xef\xe7\x19\x80\x7b\x9e\x33\xdf\x97\x4c\xd6\x89\x72\xd3\x98\xa0\x15\x6d\xcc\xf8\x26\xe9\xe3\x2c\x51\xf8\xf9\xa6\xd7\x45\xba\x3f\xe6\x16\x13\x41\xd0\xa7\xda\x55\x4e\x84\xd9\x32\xf0\x88\xe3\x32\x92\x81\x89\x41\x6c\xfc\x67\xcc\x55\xf7\x67\x34\xd7\x96\x99\x81\x13\x60\x44\xec\x27\x70\x00\xb9\x41\x80\xad\xea\xda\x3e\x9a\xad\xf2\x1b\x1e\xdc\x3d\xdd\xca\x0b\x63\x5b\x56\x0e\x56\x72\x35\xf0\x44\x1e\x57\xa9\xfa\x5d\x64\x23\xb3\xb5\xe1\xa4\xac\xd0\xb3\x44\x5f\xfe\x1b\x08\xf7\x5d\xcb\xab\xdc\x20\xf2\x3f\xcc\xc1\x11\x50\x9a\x58\xb5\x3e\x96\x4a\x27\x5d\xa1\xb1\x86\x13\xac\x26\x72\x82\x82\x4b\xd1\x2d\x6c\xd1\xe4\xc5\x77\xc7\x5e\x06\x70\x87\x25\x7a\x40\x15\xf7\x81\x45\x31\xb9\x06\x87\x13\xb4\xfc\xa7\xf6\xf0\xad\xbf\xc3\xb3\x6e\x1f\x13\xd6\xfc\xa6\xcd\x66\x94\xbb\x81\xba\x24\x5f\xa7\x12\xf1\xe9\x09\xba\xb4\xd2\xce\xe2\xba\x81\xe9\x12\x85\x9d\xe2\xad\x2a\xcb\x7c\x73\xff\xaf\x7c\x59\xa7\x80\xc6\x40\x18\x28\x33\xbd\x3d\x82\xfa\xb2\xec\xb1\x45\xfc\x71\x34\xa0\x8a\x1d\xd2\x1c\x58\xba\x29\x4b\xc7\xe4\x70\x39\x65\xaa\x8e\xa0\xe8\x08\x2c\x08\x00\x33\xd7\x90\x22\x7b\xe1\xf8\xe9\x03\x0e\x64\x69\xf7\x8a\x84\x89\x96\x3e\x59\x07\xf9\xed\xd2\x2b\xb3\x69\x19\x20\xaa\x7a\x4d\xe3\x97\xff\x9e\x9f\x17\x28\xb3\x75\xf8\xc0\x2b\x74\xf8\x06\x61\xd6\x49\xa5\x39\xe4\x42\xc6\xf2\xef\xb9\xd9\x64\x7f\xa2\x8e\xe3\x8f\x08\xfb\x2d\xe1\xed\xe7\x4d\x98\x45\x79\xdf\xc6\xed\xaa\xb4\x5a\xbe\x1f\x25\xfa\xae\xb1\x64\xd1\x20\xec\x69\x95\x0e\xd1\x36\x40\x7b\x72\x5d\x33\x74\x32\x5b\x1a\xf6\x61\x98\x89\x5d\xc7\x4a\x6e\x6a\x13\x03\xec\xa6\x4a\xa4\x32\xb7\xbb\x55\xf4\xe1\x99\xf7\x2a\x26\x69\x4b\xdb\x83\xc3\xaf\x11\xaf\xbe\x4c\xf2\xab\x9a\x8b\x3f\xc4\xc3\x30\xef\x87\x39\xe5\x9a\xd7\x09\x6c\x7f\x9d\xd6\xb2\x3b\x1a\x0c\x95\x4b\x43\x45\x79\x3d\x02\xe9\x38\x11\x9c\x16\xa3\x6c\x7e\x14\x5b\xa2\x38\xfb\xfc\x8a\xa9\x6a\x38\x3e\xa3\x8b\x13\x16\x6b\xf9\xf3\x80\xaa\xe0\xfd\x9d\x47\x15\x40\x6e\x08\x96\xba\x1c\x75\x8d\x63\x74\x72\x18\xa8\xb9\xdd\x0e\x03\xc5\x0d\x32\xe1\x58\x80\x4f\xbf\x44\x9d\xe6\x4b\x14\x16\xf5\xd3\x81\xd9\x65\xbf\x10\x9c\xe2\xff\x49\x32\x30\x18\x12\x97\x90\x3f\xf0\x73\x32\x47\x61\xa5\x95\x1f\x01\x47\x0a\xa7\x50\x44\x36\x9d\x4e\xa9\xa7\x95\xfc\x9a\x45\x17\x2a\x9b\x1f\x8d\x63\xdc\xe0\xd8\xe1\x38\x0c\x16\x8e\xf7\x55\x7b\xa4\xe1\x0c\xde\x1a\x7b\xab\x78\x1b\x59\x17\x7c\xed\xad\x31\x65\x49\x37\x2b\xa0\xb3\xe9\x03\xad\x70\x39\xcc\x8c\xeb\x9f\xcb\xc8\xe9\xc4\xf8\x69\x0d\x47\xf7\x30\x8b\x92\x4e\x34\x14\x0d\x64\x2d\x2d\xfb\xb8\xfb\x68\x0d\x00\x63\xb6\xb5\x90\x19\xe0\x8b\x35\xf5\x03\x72\x5a\xae\x5d\xa5\xb5\x93\x92\xde\x2e\xf0\x44\x67\x68\xbe\xfc\x8c\xa7\xa6\x28\xdf\xb7\xa4\x6b\x30\xe2\xf7\xe0\x5e\xe4\x66\x4c\xf1\x80\xc9\x06\xf8\x86\x02\xbb\xb4\xdf\x50\x21\x98\xbe\x7a\x61\xc2\xac\xe8\xbf\x38\x0a\x17\x81\x43\x80\xb9\xbb\x48\xf4\x6f\x1e\xf4\xb2\x14\xc6\xa3\x70\x3e\x16\x79\x6a\x57\x21\xdc\xb7\x4f\x7b\xb8\x24\x24\xf1\x9d\x4a\xd8\xbc\x6f\x1f\x26\x0e\xa3\x54\x27\x5f\x10\x50\x09\x99\xba\xdc\xd4\x8a\x2a\x75\xc2\x5c\xd0\x1e\x8e\xbe\x64\xc6\xab\x89\x93\x88\xe8\x15\x3a\x72\x79\x11\x16\xb6\xf4\x93\x03\xcb\x86\x64\xed\x43\x2a\xea\xdd\x25\x09\xcb\xaf\xe1\xcf\xe0\x8b\xd8\x26\xe2\x9c\x8e\x13\x88\xdc\xdd\xd8\xb3\x1d\x5e\xa8\x0a\x74\xce\xcd\x7e\xae\x55\x18\x53\xf4\x9b\x84\xc0\xdc\xd4\xf6\xd8\x21\x4c\x0a\x28\xb7\x86\x57\xae\x1e\x66\xa6\x13\x0d\xa3\x22\x15\xfe\x56\x15\x86\x61\x95\x98\x1a\x55\xb2\xfd\xad\xd4\x52\x98\xef\x55\x6c\xe0\x7d\xe6\x88\x02\x0c\x5e\x19\x28\xcb\x87\x00\x54\xfb\x82\x6b\xd4\x75\xc2\xa4\xbb\x32\x1f\x66\x4d\x1a\x67\x3a\x61\x97\x55\x9a\xb2\x74\x20\xbe\x43\x2c\x0b\xf3\x59\xba\x68\xb2\xb0\x67\x2c\xcb\x82\x92\x9d\x35\x1c\x29\xef\x14\x26\xbc\x65\xae\x6c\x4c\xbc\x6e\x27\x03\x66\xc2\x65\x59\xae\xcb\x4c\xbf\x20\xbc\x5d\x42\xaa\x4e\x9a\xe1\xa7\x6b\x30\x22\xcf\xb7\xa2\x3c\x1f\x4d\x42\x88\x64\x43\xc8\xcd\x44\xdd\xb6\x13\xa5\x4d\x7f\xfe\x8e\xd8\x30\x42\x34\xec\x03\x1f\xa1\x57\x79\x21\xcb\xf0\x27\x4a\x3a\xa3\x2c\x53\x3d\x44\x74\x29\x44\xc9\x08\x11\xff\x03\x6b\x11\x61\xc3\x8e\x57\x9e\x75\xfa\x40\x99\xac\x77\x4c\x02\xf4\x30\x8c\x18\x32\x2e\xf5\xd1\x50\x28\xae\x01\xc2\x74\xb2\x51\x27\x52\x2c\x0a\xb6\x04\x60\x98\x72\x1d\x7c\x72\xb2\x75\x5f\xee\x8e\x43\xb3\x9f\xb3\x38\x18\x92\x7b\xd3\x90\x1d\xac\xbf\x58\x54\x29\x1c\xa3\x01\x75\xda\x19\x24\x4b\x0b\xaf\xaa\xbb\xc8\xcf\x8e\x04\x1e\x19\x7f\x64\xfc\x38\x91\x51\x97\x86\x74\x6e\xd6\x05\x13\x54\x8b\xaa\xd1\x76\x98\xd3\xc6\x8a\x35\x4d\xa8\x5e\x9f\x0a\xbc\xd0\xe6\xa9\x4a\x45\xc0\x32\x57\x87\x9d\xbe\x95\x95\x24\x31\x2b\x01\x7a\xca\x8d\x03\xc9\x75\x44\x10\x12\x2b\x8c\xa7\x96\x6b\x12\x6a\x10\x91\xf3\x34\x43\x35\x4a\xd5\xbd\x7c\x37\xaa\xd9\xf6\xc9\xd0\xad\x9a\x97\x32\xdb\x7a\x71\x94\xba\x2a\x8a\xb2\xe8\xfa\x21\xf2\x13\x13\x61\x42\xd2\x09\x55\x84\xc5\xc5\x1e\x1e\xb6\x5c\x1d\x24\x2e\x37\xdc\x7c\x58\x18\xe1\xd6\x87\xd5\x50\x2e\x11\xb9\xab\x15\x09\x1e\xc6\xa3\xa4\x27\x59\x91\x96\xbe\x7c\x6d\xee\x62\x1d\x39\x70\x37\x8d\xbb\xd9\x68\x20\xa1\x19\x0a\x69\x37\xa9\xa8\x76\xb3\xa6\x70\x38\x6b\x7d\x81\xe2\x02\xc4\xc0\x05\x04\xf4\xba\x6b\xcf\x16\xc2\xf9\x97\x26\x40\xfe\xcb\xe1\xca\xae\x32\x4c\xc5\xf9\x44\xb9\x4d\x01\x75\x13\x44\x26\xb6\x24\xcd\xcc\x76\xae\x4e\x52\x46\xcf\x12\xb5\x01\xcf\xa6\x21\xdc\x04\xcb\x61\x19\x05\x20\x3e\x79\x7f\x52\xfb\xcd\xee\x78\x25\xcb\xb2\xe7\x02\xc5\xc8\xef\x4f\x50\xa7\xf0\x0c\xf5\xbb\x63\x3f\x54\x73\xdb\x6e\x70\xb4\x55\xa6\xda\x7a\x60\xec\xd4\xb7\xa8\xbb\xa0\x0f\x86\x3e\xbb\x5c\x57\x96\x70\xef\x4c\x6b\xde\x24\x66\x21\x2a\x88\xb2\xfc\xf6\x24\x22\xa4\x8c\x95\x50\x88\xf4\x52\x2f\x45\xdf\x84\x85\xc9\xb6\x7a\x61\xbb\x0b\xa4\xad\x7c\x94\x74\x8d\xc4\x1f\x38\xa9\x32\x97\x89\x4f\xd4\x42\x6f\x4e\x10\x9e\x25\x49\x88\xc4\x00\xa1\x94\xc0\x00\xf1\x0c\x6b\xcc\x17\xfd\x53\xbb\x3f\xe0\x51\xef\x13\xd6\x20\x0f\x43\x19\xac\x47\xe7\xff\x7c\x40\xa3\x6b\xe7\xa9\xa8\xdb\x35\x83\x30\x41\x31\xff\x79\xff\x01\xbe\x46\x75\x85\xe2\x24\xa0\xbb\x91\x9e\xc8\x98\x2c\x3a\x95\x5b\xdb\x8f\x45\xbe\xee\xfa\xd2\x16\x9f\x21\x1e\x0b\x3c\xd1\xe8\xa9\x31\x31\xfd\x9c\x9c\x98\xd8\x95\x09\x76\x78\xa1\xdb\x35\xe4\x20\xd3\x56\x9e\x69\x20\x19\x08\x16\xfc\x1d\x36\xfa\xef\x50\x8b\x62\x90\x76\x16\xa3\xa4\xa7\x58\x31\x27\x49\x55\x6e\x37\x95\xa4\xf2\x95\xd1\x81\x19\xcc\x9b\x2c\x7f\x84\x31\x85\x64\xd0\xb6\xc9\x70\x25\xb2\x39\xdb\x03\xd6\x79\xa1\x7b\x14\x66\x3d\xb2\x6a\xb7\x09\x8d\x5d\xce\x38\x08\x88\xfd\x60\xe9\x47\x06\x13\xae\x6e\x8f\xc3\x98\xd7\x21\x1f\xfb\x26\x1e\x9a\xee\x14\x79\x1b\x30\xf0\x0b\xe8\x7f\x3c\x31\x5a\x4a\x0a\x3d\x95\x69\x59\xbb\xc9\x51\x33\xd6\xa8\xc6\xd7\x45\x45\x87\x5b\x34\xed\xca\xb0\x8f\x70\xf1\xa3\xa4\xb4\xce\x51\x9a\xe4\x76\xb0\x17\x1b\x4d\x76\xa0\xe3\xbe\xf0\xc0\x77\xcd\x39\x10\xc6\x88\x7e\xb5\x14\xf8\x18\xcd\x73\xc6\x4e\x31\xc9\x5f\x73\x1e\x23\x0b\x13\x8b\x71\x40\x92\x21\x1e\xd1\xae\xe8\x33\x7f\xa9\xcd\x5c\x2c\xf6\xa4\x39\x1e\x9e\xf2\x1d\xc3\x24\xdc\x1d\x53\x5f\xb6\x5a\xdd\x3f\x7c\xb8\xb5\x30\x4a\x2c\x60\x47\x56\xc3\x39\xb0\xf2\x93\xe0\xf7\xae\x07\x04\xff\x3e\x53\x71\x9c\xda\xdc\x1e\x8e\x8a\xed\x84\x69\x3b\x37\x41\x68\x8f\x25\x81\x8b\xde\xb1\xea\x2b\xc5\x47\x90\x3e\xa2\xe6\xf8\x0a\xc1\x16\x44\x8b\x10\xb3\x5f\x8f\x81\xe0\x52\x53\xbd\x1a\xb4\xf2\x30\x0e\x23\x48\x2c\x20\x50\x02\xe6\x4c\x38\xa6\x27\xa7\xb1\x7c\x42\xb9\xdc\x0f\x8b\xa7\xca\xdd\xa7\x49\xcf\x24\x21\xde\xdc\x6e\x31\x78\x27\xf0\xf4\x48\x86\xb7\xd9\xa7\xd7\xb2\x6a\xc3\xe9\x0b\xfd\x10\x99\x1e\x22\xff\xfb\xf8\x48\xd4\x1c\xbe\x27\xce\x11\xff\x85\x60\x1b\x1b\xed\x11\x58\x31\x54\x4c\xff\x25\x01\x1a\xce\x05\xbe\xca\xbc\x7d\x95\x2c\xd1\x09\x74\xbe\x91\xb4\x6e\x6e\x93\x09\x9b\xc2\x71\x83\x51\x85\xf8\x0b\xdc\x45\x03\x0d\x14\x3c\xfd\xfd\x3a\x62\x90\x85\x34\xeb\x88\x1d\x51\x7d\x76\x52\x46\xb9\x4c\xf3\x81\xc3\x30\xca\x9a\x7e\x98\x41\xda\x88\x52\xa3\xb6\x5f\x0c\xcf\x7c\xb4\x0a\xc4\x2a\x23\x80\xff\xe4\x6f\x23\x26\x01\xe4\xf0\x4d\xd2\xda\x7a\xb3\xa6\xc8\xf8\x7c\x2b\x49\x7d\xee\xe9\x10\x57\x33\x0f\x47\x5c\x3d\xd3\xea\xa5\xa3\x6c\x60\x0a\x44\xc2\xda\xc8\xb1\xeb\x87\x7d\xf1\x6d\xea\xe1\x5e\x09\xfc\xc4\x4b\xde\xc9\xc2\xe1\x50\x69\xbf\xb4\x25\xc3\x0d\xeb\x8d\xb3\x5e\xba\xed\x97\xa3\xa2\x9f\x8e\x8a\x29\x3f\xd7\xb7\xa9\x6d\xf7\xb4\x1b\x29\x9c\xdb\xad\x75\xbf\x31\x21\x7f\x4f\x4c\xce\x17\x9a\x6c\x27\x76\x09\x50\xd1\xa7\x81\x68\x11\xd6\xcd\x80\x80\x69\xd7\xed\xd6\x80\x53\x5d\x0f\xa8\x79\xff\x26\x69\xc5\x6d\x5e\x25\x0e\xd9\x0f\x60\xbc\x81\xf2\x00\xb7\x35\x76\xdc\x5d\x9e\xa9\x41\x05\xc3\xcd\x47\x7c\xf1\x90\xbc\xfe\x3f\xc3\x56\xc6\x32\xdc\x1e\x33\x5d\x48\xe5\x25\x5b\x32\x7d\xe0\x92\xf6\xbb\xaf\x69\x7f\x1d\x5f\x04\xe1\x3d\xb6\xe8\x2d\x26\xab\x3c\x47\xfe\x17\x69\x5c\xbe\x75\x42\x20\xd7\xf3\x3c\xa0\x34\xe7\xd0\x9b\x73\xbb\x9d\x89\x29\xd7\x45\x47\xa5\xa9\xad\x73\xa9\xe2\x3c\xf7\xed\x6b\x45\x49\xdf\x64\xca\x15\x89\x50\xfa\x06\xf5\x18\x6e\x38\x79\xa7\xf9\x34\xcb\xd2\xe5\x28\xe9\x35\x3d\x76\xf8\x0a\xd1\x1c\xff\x60\xcc\xe2\x8f\x95\x15\x29\xfd\x4c\x3c\x32\x44\x5e\xb9\x1e\xf8\x02\xf8\x7a\x1d\x66\xb0\x13\x0e\x4c\x16\x52\x36\x81\x69\x2b\x1d\x4e\xda\x78\x4e\xf6\xff\xca\x97\x51\x4f\x90\x28\x59\x85\x27\x3c\x96\xfa\xbc\x03\xed\xc6\xd1\x82\xa3\x0f\xc5\x0b\x3d\x41\xa4\x37\x67\x26\xc2\xcf\x4a\x62\xff\x4c\x2b\x37\x59\x64\x54\x25\x14\x71\x98\x8c\xd6\x61\xa2\x65\xbb\x4d\x4c\x10\x59\x5f\x63\xf4\xb1\x4c\x9d\x23\xf5\xaa\xf6\x70\xa7\x0f\xb4\xb2\xb4\xb3\x68\x8a\xc9\x36\xb6\x1b\xba\xfa\x90\x6a\xf8\x99\x59\xc8\xc2\x08\x5c\x3f\xd2\xb5\x0a\xbc\xd9\x9f\x24\x6e\xe9\x47\x83\x5d\xe5\x06\x91\xb7\x46\x84\x9d\x02\x8a\x43\x08\xbc\xcb\xf2\x38\x3b\x39\xdb\xd2\x8a\x4f\x78\x52\x00\x20\x36\xb7\xbd\x3c\xd1\xbb\x81\x87\xba\xad\x31\x18\xf8\xff\x62\xa7\x77\x03\x11\xbc\xd2\x8f\xdb\x55\x47\x05\x63\xb3\xa5\xf8\xc0\xef\x5f\xb7\xa6\x5a\x3e\x3d\x98\xa8\x36\x78\x68\xf2\xd4\x2a\x7f\xaf\xbf\xff\x37\xfe\x16\xec\xa8\xa0\xd7\x03\x2a\x33\x4d\x8c\xf1\x85\x71\x5a\xbe\x31\xbb\x58\x6e\x42\xaf\xfc\x45\xed\x4a\x31\x75\x6a\x18\x9b\x6c\x3b\x8d\x2a\x1f\x41\x63\x40\xe9\xe5\x58\x43\xb2\xc1\xb4\xa0\x2e\xda\x96\x4e\xbd\x0e\x7f\x50\x78\x72\xc4\x76\x02\xe4\x2f\x05\x9e\x31\xaa\x53\x66\xdb\xb1\x4c\xb3\x3e\x14\x06\x55\xe3\xb1\xf2\x22\xcc\x74\xa4\x4b\x42\x69\x1e\x1c\x39\x45\xc1\x6c\x99\x9e\x9b\x25\xc9\x3b\x69\x94\xdc\xcd\x95\x93\x7a\x55\x3e\x4c\x17\x4d\xbe\x9c\x0e\xc2\x64\x4b\xb9\x27\x1c\x5d\xcf\xc1\xdd\xec\x4c\x94\x24\xfb\x0e\xe1\x95\x37\x03\x29\x28\x37\xed\xc7\x89\xfb\x13\x32\x21\xaa\x85\xf5\x80\x46\x75\x44\x41\x14\x96\xf9\x03\x67\x73\x4a\x97\xd2\xcd\xc2\xe5\x64\x8a\xeb\x7a\xde\x19\xfd\x26\x01\x6c\x6e\x61\x9d\x51\x25\x69\xb4\x37\x42\xc6\x9c\x97\xca\xa2\x42\x73\xe2\x89\x81\x75\x6d\xf0\x12\xa7\xd7\x45\xee\x37\x64\x51\xc7\xe4\x4f\x92\x22\xc0\x85\x31\x2b\x19\x96\x47\x4a\x46\xb6\x02\x3a\x2c\x97\x02\xbf\x1a\x73\x4f\xa1\xad\x85\x18\xfd\x0a\x0e\x05\x0a\x83\x57\x59\xb5\xdf\x7e\x41\x04\x36\x1f\xd9\x9c\xc0\xa1\xf2\x3d\x01\xd4\x2a\xca\xf4\x28\x10\xdd\x91\xb8\x4a\x95\xe6\xbc\x6e\xea\x7f\xf1\x99\x36\xcd\x6a\x20\xe3\x42\x76\x08\x62\x6b\x1c\xb0\x57\xc6\x24\x86\x7f\x2d\xf0\xf2\xe9\x3d\x53\xec\x22\x08\xf2\x8f\x82\x09\x62\x4b\xbf\x19\x20\xcb\xac\xdc\x37\xdc\xb6\x1a\x33\xb6\x9f\xba\xfd\x0f\xac\x63\x55\xfe\x0c\x5f\x9a\x3a\x61\x13\x1f\x9c\xbb\x57\xed\xe3\x2a\x41\xa5\xfd\x52\x8a\x64\xf6\x59\xe4\xeb\x88\x36\x65\xfc\x84\xc1\x0a\xd7\xb0\x44\x3a\xaf\xf1\x09\x4a\x5e\x96\x4c\x56\x4c\x51\xc4\x70\x8a\xb5\xf3\x2f\x52\x37\xe5\x14\x9e\x59\xfe\xa3\x4e\xaf\x35\x1f\x8e\xba\x39\x11\x52\x5c\xa2\xd6\xff\xa9\x31\xd7\xfd\x03\x2f\x23\x9e\xa6\x03\x1c\x43\x1c\x9f\xf7\xc7\xbe\xfa\xfb\x7e\x35\x2e\x9d\x6e\x0d\x33\x53\x84\x2f\x35\x89\x40\xed\x18\xf5\xc8\x50\xc1\x46\x30\x71\x67\xc2\xee\xa7\xf1\xa2\x28\x5a\x28\x6d\x9e\xdd\xbf\xca\xb7\x53\x91\xd3\xdb\xd3\xea\xa5\xf1\x02\xac\x89\xe3\x91\x20\xe1\x3e\x5f\x44\xe8\xa7\x12\x08\x20\x31\xd8\x65\xe3\x19\xe4\x02\xc2\x13\x89\x4d\x5b\x2d\xcb\xd9\xb2\xd9\x28\x59\x34\x99\x14\xdb\xf0\x85\x2e\xb2\x4e\xcc\xc5\xda\x46\xcd\x7c\x98\x74\x52\x14\xdb\xb4\x07\xce\xed\x74\xff\x70\xa3\xcf\xe7\x9f\xdf\x65\xb7\x05\x7a\xae\x22\x07\x89\x32\xeb\x7d\x56\x93\x7c\x7f\xec\x79\xbb\x05\x00\x8a\x6c\xf5\x8e\x5d\x5f\x78\xf0\x4d\x6d\x1b\x82\x22\xea\x12\x6e\x31\x24\xf3\x42\xe5\x81\x53\xf8\x1b\x5c\xdc\xff\x90\x0b\x10\x77\x08\x2a\xf3\x6f\xb9\x63\x8c\xf1\x05\x65\xae\xe7\xf1\x99\xcb\xd4\x77\xbd\x40\xd2\x23\x61\xa7\x63\x86\x05\xc4\xf1\x59\xfa\x92\x14\x2e\xeb\xd0\x37\x4e\x7c\xaf\x31\x21\xb2\xe7\x2b\x76\xe7\x5c\xfb\x2a\xcc\x8c\x95\xc6\x2f\x7f\x4e\x89\x87\xcb\x45\xd2\x96\x75\xf9\x3b\x22\x60\x45\x4d\xce\x7e\x94\x17\x69\x06\x31\x2f\xed\x2b\x7e\x0f\xcb\x2e\x37\x34\x54\x19\xf6\xd2\x24\x7a\xd9\xd8\x8a\x34\xf0\x24\x98\xdd\x90\xeb\x4a\x98\x3a\x3b\x37\xdb\xca\x47\xf3\x83\x48\x3d\x9d\xee\x92\x86\x63\x38\xba\xc8\xe7\x3b\x8c\xa3\x85\xcf\xa3\x48\xa6\xf1\xcb\xc6\xe8\x16\x43\x71\x7f\x88\xe3\x8d\x2e\xfd\x0f\xa8\x31\xf7\x82\x09\x13\xb0\xf4\xc0\xf3\x09\xb4\x1a\x5d\x00\xf0\x60\x61\x6f\x9c\x64\x56\x92\x2b\x54\xbc\x56\x79\x64\x5b\xa3\x99\xf6\x42\x77\x65\xd6\x80\xdc\xe2\x12\x83\x61\xad\xa9\x93\x7f\xaf\x9b\x74\x98\x08\xd3\x91\x3f\x37\xda\xbe\xc1\xd6\x58\x7d\x9a\xf1\x8d\xe9\x20\x92\x3d\xf2\x90\xd6\x22\x45\x05\x59\x94\xab\x2a\x26\x7a\x89\x28\x24\xc9\x35\x09\x4e\x17\x59\xd8\x8d\x92\xde\x13\x13\xa2\x4b\x64\xeb\x7f\x68\xcd\x38\x5c\xf8\x31\x0b\xe6\x20\xea\xbe\x19\x37\xc9\xea\x71\x6d\x5b\x6c\xf0\xa7\xbc\x5a\x76\x65\xdc\x78\xa2\xf3\x4d\xa8\x5f\x28\x27\xaf\x3f\x14\x0f\x70\x8e\xf0\xd1\xef\x31\x1b\xb6\x14\x4c\xb0\x47\x7f\x88\x40\x12\x39\xc3\xf7\x6c\x84\x89\xfc\x5f\xd8\x76\x61\x35\xbf\x53\x23\xfe\xd9\x5a\x48\xb3\x89\xe9\x66\xcd\x7f\x29\x17\xae\x44\x64\x87\x0f\xb7\x86\xa3\x38\xd6\x96\x03\x02\xbd\xcd\xa8\x56\xc9\x4d\xdb\xbb\xd7\x38\x5d\xde\x51\x2e\x81\x23\x8f\xf1\x78\x55\x26\x7b\x04\xcd\x38\xae\xaf\xc0\xfc\x88\x92\x19\x6b\xa9\xdf\x25\xe4\xb6\x04\xa0\xf2\xeb\x36\xe6\x14\xaa\x13\xe7\x84\xc2\x5e\x66\xcc\x76\x62\x46\x10\x90\x8e\x93\xfb\x75\xb5\x9d\xad\x16\x9a\x21\x9c\xb7\xd8\xee\x0e\xb5\xe4\x59\x2d\xb7\x90\x4c\x25\x98\x56\xb4\x61\x50\x37\xb1\x98\x26\xa5\x19\x6b\xf8\xae\xc7\x2b\x01\x25\xc1\xaf\x30\xab\x45\xd8\x59\x84\xd4\x90\x53\x14\xb3\x21\x82\xd2\x3c\x4d\x60\x2a\x07\x43\x68\x8c\x97\xaf\x0b\x0f\x0c\x3f\x29\xd7\x14\xe5\x87\xdd\xd2\x9a\x6c\x2d\xbf\x19\x2a\xcb\x0d\x72\xa2\xc2\x3d\xe1\x8a\x1f\x0e\xdd\xfd\xfe\xd8\x0f\x70\xbe\xc9\xc4\xbe\x97\x2a\x0c\x38\xa5\xd5\xcd\xcc\x30\x0e\x3b\x7e\xb4\x41\x18\x4b\xe1\x27\x94\xbe\xd4\xc9\x27\xa7\x79\x31\xb4\xd5\x47\x2a\x39\x49\x65\x54\x04\x15\xec\xa7\x6b\x92\xaf\xdd\x86\x61\x69\xb0\x8b\x7c\x0b\xa9\x4f\xdd\x83\xe1\x85\x07\xd6\x6a\xba\x90\x3c\x8d\xa9\xae\xf3\x8f\x29\x7f\x79\xa3\x52\x4c\x2c\x33\xf6\x74\x30\x2f\xae\x00\xf5\xe3\x6b\x76\xf7\x3b\x0e\xd2\xbd\x6e\x88\x78\x32\xec\x18\x0d\x9f\xb4\xef\x00\x83\xe7\xf7\xa8\x1e\xf3\x2f\x80\x56\xd2\x37\x69\xcf\xb0\x74\x99\x18\xcd\x7a\x0b\x31\x39\x02\xc7\x5b\x36\xd2\x84\x1b\x01\xa4\x04\x1f\x2a\xaa\x30\x8e\xc4\xa7\x5c\x55\xc4\xd6\x0f\xec\xa3\x09\xe7\x88\x75\x8e\x0e\xc2\xb8\xc7\xe7\xf5\x2c\x24\x21\x89\xb9\xb6\x82\x6c\xc7\x8a\x76\xb9\xc6\x94\x53\xf6\x2c\xc0\x2d\x5e\x25\x8f\x56\xac\x0c\xa3\x4e\x18\x73\xad\x82\x58\x26\x2f\x11\x04\xb4\x48\x0b\x74\x89\x9f\x97\xe2\x9d\xd0\x91\xc9\x4d\x8d\x74\xd6\x6c\x6b\x98\xa5\x43\x25\xe1\x98\xf6\x58\xae\xbd\x1e\xcb\xf5\x09\xb6\xd2\x51\x99\x42\x3a\x78\xe6\x11\x2e\xc2\x1f\xa1\xe0\x3e\x99\xef\xd8\xee\xb3\xb2\xb8\x11\x26\xe2\x02\xf5\xa8\x44\xe7\x52\xa7\x5d\x6b\x18\x00\x96\xd3\x6c\x31\x4a\x7a\x52\x76\x81\x79\x3d\x45\xa8\xa9\x53\x63\x1a\x11\x09\x8b\x28\xb3\x4b\x65\x7f\xd8\xb9\x67\xc7\x1e\x7b\x99\xc6\x2b\x86\xe9\x70\x14\x87\x99\xf5\xc3\xce\x97\xcc\xed\xd6\x7a\x16\x0a\x11\xf2\x1f\x68\x32\xca\x7f\xac\xea\xe1\xe8\x87\x79\x11\xc5\x2b\x36\x3e\xc7\x20\x3a\x82\x1e\x49\x36\xc6\x9e\xe8\xf2\x56\x25\xe4\xfc\x42\x2b\x4f\x97\x22\x53\x08\x12\x66\x1d\x7b\x72\xfd\xd6\xc4\x56\xcf\xa2\x7c\xab\xe7\xbb\xfc\xc6\xab\x88\x21\x1d\xb4\xd6\xb1\x06\xa1\xd7\x8a\x40\x03\x9d\x4a\x31\x8f\x81\xdf\xa9\x27\x6b\xf3\x8b\x68\xd1\x69\x9e\x68\xe5\x96\xe4\xc8\xbe\x1d\x30\x4b\x5f\xaf\xaf\xa4\xe6\x78\x5d\x57\xc6\x15\x91\x5d\x24\x79\x77\x68\x6e\xf6\x1e\x5c\x24\x72\x9c\xd7\x09\xcc\x01\x71\x71\x54\xb4\xfe\x60\x4c\x91\xae\xcc\x2c\x68\xdc\xea\xbd\x53\xd3\x8e\x25\xba\x79\x45\x6f\x37\x66\x6b\xba\xe7\xad\x15\x13\xc7\xe9\x72\xc3\x07\x71\x00\xba\x6b\x82\xb3\x8b\x94\xc1\x3b\x69\xd6\xcd\xb7\xda\x53\xa3\xb4\xcb\x13\x1c\xcc\xc4\x9d\x8e\x64\x0a\xe5\x96\xb7\x02\xc2\xbb\x0b\xbe\x42\x27\x06\x7c\x75\xa8\x1f\x26\x56\xbd\xa2\xe9\xfb\xe9\x18\x05\x51\xde\x29\xc2\x68\xff\x26\xf1\x87\x8e\xba\x2b\x8f\xf8\xce\x38\x18\x6d\x10\xbd\x4f\x31\x00\xf2\x47\x88\x54\x94\x30\xc6\x3e\x84\x34\xc0\xed\xa7\x20\x34\xd9\xb2\x4a\x28\xea\x4b\xc4\xa1\xfa\x0d\x80\x05\xb5\xa8\x45\xbc\x06\xc7\x40\x96\x2e\x3b\xf1\x3f\x7f\x8a\x92\x9c\x13\x81\x57\x31\x12\x0a\x02\x14\xdc\xa6\x56\x6d\x06\xc8\xb2\x36\xd8\x94\xd7\xed\x64\x24\xf2\x95\x66\x1b\x49\xa3\x22\x9b\xec\x67\xe2\xe6\x5b\x58\x77\x18\x60\xa9\xba\x4b\x3f\x8c\x95\x9e\xef\xdb\x6d\xad\x04\xa1\xa5\xd1\x55\x17\x6c\xc3\x3c\x64\x3f\x3f\xb2\x5f\xcc\x9d\x0f\xff\xef\xe2\xb1\xdc\x9c\x81\x03\x34\x37\x56\xa9\x6b\xf8\x7b\x64\x56\xcc\x4b\x45\x66\x06\x56\xe7\x61\x6e\xb7\x44\xe3\x67\xc7\x8d\xaf\x7c\x49\xbe\xe9\x49\xbb\x49\xf1\xe7\x31\x0f\x0a\xd3\x74\xb3\x4e\xcf\x36\x36\x79\xde\xe4\x41\x35\x52\xa7\x00\x43\x88\x9a\x12\x1f\x1c\xbf\x38\x8a\x8c\x95\x84\x72\x18\xcf\x3f\x1f\x53\x80\x79\x6b\xec\x51\x03\x77\x6b\x32\xb4\xd9\x56\x66\xba\x66\x21\x72\xd4\xfc\xa8\xa9\x4b\xe4\x28\x37\x6d\x0f\x08\xcc\xc3\xa4\xbb\x1c\x75\xfa\x46\x38\x0b\xf1\xa2\x65\xdc\x47\x6e\x08\x57\x1a\xc6\xc3\x9c\x28\x5b\xd7\x99\xb2\x75\x9d\x78\xb7\x51\x19\x81\x69\x86\x5b\xf8\x29\x31\xdb\xfd\xd4\x33\xe3\xf7\x43\x3f\xf2\x20\x07\x8a\x98\xa8\x2e\x50\x62\x68\x5e\x4a\x31\x04\xe0\xab\xd8\x6f\xd3\x60\xd6\xdb\x95\xf0\xf0\xc0\x73\xad\x61\x1c\x26\x89\xe9\x5a\xef\xe4\x1a\x8f\xe5\xd7\x74\x89\x0f\xb5\x01\xec\x57\x56\x98\x21\x29\xb3\x14\xd9\xa8\xd7\x8b\x4d\xde\xf4\xb8\x37\x51\x3a\xc3\x16\xfd\xd7\x30\xd5\xc2\x9c\x5b\x79\x8c\xb9\xdd\xd6\xec\x2c\x99\x6c\x0b\xcd\xab\x81\x5e\x08\x5b\x41\x04\x70\x25\x50\xb3\x06\x55\x55\x76\x09\xd5\xf1\x80\x82\xce\x62\x39\x2a\x3a\xfd\xa6\xcf\x3f\x51\x37\xd5\xb2\x9f\xfd\x73\x3a\xfe\xf6\xb0\x2e\x5b\xd7\x2c\x98\x24\x87\x88\x18\xb9\xbe\x39\x57\x5e\xf0\x09\xa2\xe0\x30\x84\x56\x73\xd2\x6d\x75\xa3\x06\xc1\x82\xce\x05\x8c\x64\x24\xe0\x58\x9e\xa6\x09\x12\x69\xb8\xb4\xd7\x03\x1a\x9f\x01\xe1\x18\xda\x1f\xbf\x1f\x78\xa2\xf1\xcb\x94\x48\x9b\x17\x47\x61\xbc\xd5\xc3\x64\xdf\x66\xd1\x8c\xd7\x70\xb2\xe4\xc6\xae\x85\x8a\x35\x95\xe6\x03\xdf\x02\x4e\x5a\xae\xa9\x12\x92\x8f\xb2\x2c\x1d\x25\x5d\xd3\x6d\xb0\xb9\xf8\xf7\x41\xa9\x66\x5b\x71\x38\x2c\xd2\xa1\x54\x12\xb4\xe4\x47\xb8\xaa\x8b\xae\x14\xd2\x4b\xf3\x3c\x1a\x36\x26\xcb\x6e\xde\x43\xf1\x3c\x57\xb4\x14\xc5\x51\x98\xb0\xbc\xff\x79\xa6\xd9\x3c\x1f\xf8\x04\xbd\x67\x12\x11\xe7\xce\xa7\xa8\x9f\x29\xfc\x23\x8e\x84\x7f\x6e\xb7\xd8\x99\x86\xcd\x93\xe5\xba\x5d\xe3\x48\x81\xf3\xda\x42\xd0\xcd\x8f\x98\x8d\x02\x24\xc6\x8e\x10\xc1\x41\x42\xe5\xec\x28\x85\xe2\xd3\xb4\xb4\x43\x93\x0d\xc2\x6c\xd1\x08\xa2\x17\x46\xf4\x8f\xc7\xbe\x63\x2a\x14\x21\x48\x31\xae\xb8\x15\x5b\x32\x45\x6a\xba\x5b\x89\xc7\x4f\x44\x8b\x5c\x99\x67\x6e\xb7\x63\x6f\x2a\x4f\x8c\xea\x04\x7b\x50\xeb\x3d\x6e\xb9\x6f\x72\xe8\xa1\xf9\xcc\x84\x8b\xdb\xfd\xc1\x3f\x8d\x80\xdd\xe9\x6a\x3a\x53\x01\xf3\x8e\x1f\x3a\x1f\x50\x77\xeb\x2e\xe6\xfd\x1d\x42\xcd\x1f\xde\x35\x2e\xc5\xdf\x0c\x36\x2a\xf8\x58\x74\x73\x3a\x18\x86\x45\x34\x1f\xc5\x22\xf6\x34\xeb\x19\x46\x67\x3c\xab\xa8\x77\x08\xf9\x20\xcc\x8a\x32\x71\x2d\x3f\x46\x55\x65\xec\x76\x97\x9b\xca\xfc\xce\xec\x73\xfb\x5b\x4b\xe1\x4b\x76\x07\xc1\xf3\xbc\x8d\x03\x2c\x37\x6e\x1a\xbb\x6b\xc2\xa4\xc9\x40\x45\xc8\xd5\x60\x59\x1f\x59\x25\x3e\xe9\xc7\xdb\xfe\x24\xa6\x0b\x85\x49\x76\x35\xbd\x60\x22\xe4\x0f\xdc\x30\xa3\x2f\x61\xdf\xc2\xda\xe0\x90\x03\xa3\x02\xcf\xf9\x3e\x4d\xeb\x6e\x6b\xfb\xe1\x8d\x9d\x76\x84\x19\x76\xe6\x14\x02\x71\x69\xa5\x8f\xa9\x31\x25\x38\x18\xd4\xcd\x9a\x00\x4b\xa9\xf2\xaf\x5d\x18\x6b\xc1\xbe\xba\xab\x6d\x23\x14\x9d\x31\xb6\x9c\xf1\x42\x66\x20\x4f\x51\x2b\x2f\xcc\xdc\x3c\x6e\xbb\xd9\x43\xa4\x5b\x8f\xb4\x4f\x7a\x29\x35\x58\x25\x50\x55\x50\x76\x0d\x28\x78\x25\x1d\x25\x3d\x7d\x97\x5a\x93\xb5\xcb\xac\xa2\xd5\x7e\xba\x38\x4c\x8a\x28\x33\x61\x1c\xe5\x45\xd4\x61\x15\xcc\x93\xa4\x8b\x7d\x9b\xfa\x65\xe7\x28\x79\x1b\x0d\xe7\x4d\x88\x5a\x01\xe2\xa5\xbb\xc4\x2f\x7a\xb7\x52\x17\xfc\x42\x2b\x37\x4b\x26\x03\x52\xd7\xd1\xaa\xa1\x1d\x20\xd7\xab\xd5\xea\xcb\xfe\x56\x9e\x8e\x7a\x7d\xdb\x00\x99\x75\x46\x96\xb8\x8f\x8e\xd0\xd8\xc9\x11\xf6\xaf\x27\x2a\xd8\x94\x7d\xfb\xe6\x5a\x9d\x74\x94\x47\x49\xc3\xcb\xa0\xa0\x3d\x23\xd7\x13\xd8\xee\x22\x1d\x3e\xe2\xcb\x79\x42\x54\x08\x8f\x67\x29\x1c\xf7\xaf\x43\xb0\x42\x13\x93\x32\x70\x84\xbd\xb9\x8e\xce\x85\x9b\xe8\xf4\x8b\xff\xfb\x96\x47\x00\x49\xdc\xff\x4e\x3c\xa0\x9b\xa0\x5c\x06\xf3\x7b\xc5\x03\xc9\xa2\xf9\x86\xef\xef\x20\xce\x97\xeb\x0a\xa4\x7c\xdf\xbe\x56\x27\x2c\xfa\x26\x8b\x12\x94\x52\x9d\xde\xb4\xa7\x03\xb8\x54\x39\xc7\x7b\xf6\xb4\x06\x69\xdc\x9d\x22\xdd\x5b\xb0\x8e\xea\x64\x79\xf9\x97\xc4\x24\x05\xa4\x09\xff\xf6\x43\xb5\x60\x16\x4c\x96\xa5\x4c\x0f\x35\xa6\x16\xeb\x45\xd6\x0e\x1e\xe5\x43\x93\x40\xe6\x79\xaf\xee\xa1\x1f\x13\xba\xe8\xc7\x75\x1a\xec\x8b\x49\xba\x9c\xd8\x62\xbc\x56\xbc\x08\x17\x71\x39\x70\xe4\x5a\x32\x55\x6c\x32\x45\x4e\x20\x0d\x01\x96\x05\x5e\x44\xea\x83\xc2\x87\x51\x09\x62\xca\x05\x4d\x07\xe5\x23\x5a\xf7\x07\xcf\xaa\x8b\x4a\x0b\xec\x92\xac\x38\xec\x9a\xa4\x49\xe8\xc0\x35\xd2\x00\x13\x35\x61\xc1\x09\x39\x12\xb0\x28\x29\x4c\xb6\x64\x92\xf2\x13\x50\xbb\x62\x4d\x07\x58\x9c\xab\x38\xbe\xd2\x4b\xad\x93\x10\xe9\xa5\x05\x7e\x19\x0b\x07\x33\xef\x66\x88\x3d\x3c\xe4\x5e\xed\xdc\x47\xee\x5a\x15\x6e\x5e\xf6\xa0\x5a\xa2\x2a\x72\x65\xef\x4c\x2b\x4b\x2d\x63\xa8\x0d\xeb\x54\xd3\xce\x3e\xa2\x5a\x32\x52\x12\x86\x18\x21\x22\xa5\x8f\xea\x48\x04\xa1\x4a\x48\x2c\xaa\x97\x99\x45\xf5\x72\xe0\xe7\x4b\x46\x45\x94\x8e\xf2\x26\x8f\xbb\xd1\xe4\xed\x47\xe8\xad\x6a\x4d\xc8\x0f\x98\x0c\xd3\xac\xc8\xc2\xf2\x3b\xfa\xf6\xee\xf7\x68\x50\xe7\x7b\x64\xd3\x86\xe1\x8a\xc9\x72\xbb\x1f\xf1\xf8\x8d\x55\xcf\xf1\xd7\x68\xfb\x1a\xda\x30\x4b\x0b\xd3\x11\xe8\x24\x93\x71\xc3\x11\x1d\xb5\x31\x21\x45\x2e\x1a\x93\x1e\xb3\xa9\xa3\xfc\x07\xc7\xa7\x77\x02\x02\x2b\xbf\x61\x1f\x0f\xa6\xf8\x47\x34\x25\x69\x91\xac\x05\xe6\xaa\x84\x36\xd1\xbe\x6a\xa5\x50\xac\x03\xf0\xdb\x4a\xb3\x94\xbb\x94\x94\xb9\x41\xec\x69\x95\xfe\xd5\x73\xfb\x5b\x26\x36\x3d\x65\x50\xd6\x71\xef\x89\x41\xf0\xc7\x08\x28\xb1\xdc\xf0\xad\xd5\xcb\x04\x38\xbf\x5c\xee\x54\xad\x5a\x98\xb0\xfb\xe2\xc8\x06\x19\xf9\x14\x4d\x3a\xff\x7a\xe0\xe5\x74\x7f\x7d\xec\x21\xd6\x50\x2e\x93\xeb\xf1\x46\x3a\xc5\x83\xbb\x9f\x57\xed\xed\x30\xe9\x86\xf3\xf1\x0a\x0d\x93\x63\xa6\x50\xae\x03\xaf\xd0\x36\x8c\xe0\xab\xb0\xf6\x6f\x11\x45\xe4\x5b\x13\xa2\xa6\x03\x93\x59\xf3\x82\x97\x7a\xd3\x3e\x94\x5c\x53\xb5\xaf\xf4\xe0\xdd\x91\xb1\xa5\x4b\x14\x8e\x6f\xd9\xaf\x2e\xd7\x15\xeb\x5c\xae\xea\x7c\x94\x15\xfd\x6e\x88\x91\x13\x54\xaa\x60\xd2\xe5\x7a\xfc\x74\x35\xbb\x2c\x9d\x3f\x0b\xbd\x1c\x54\xae\xd3\xcb\xac\x7d\xea\x15\x2f\x10\x75\x20\xd9\x91\xeb\x3a\x59\xd5\x79\xd3\xcb\x9b\xa4\xa4\x7a\x62\x4c\x45\xf8\x2b\x30\x55\xa8\xd9\xbd\x37\x41\x30\x9e\x14\x59\x98\x81\x33\x42\x29\xe6\xca\x4f\x95\x6b\xd2\x67\x5c\x30\x61\x31\x12\xdb\xab\xa3\x78\x27\xc8\xa6\x5d\xb4\x2f\x58\xb8\xbb\xea\x46\x94\x32\x63\xb1\x34\xa8\x18\xc0\x93\x3e\x20\x45\x94\x07\x54\x08\x08\x6d\xdf\x0b\x0a\xe9\x4e\x1c\xb3\xb4\x05\x08\xf8\x80\x70\x45\x11\x15\xa5\x1e\x64\x81\x67\x6d\x83\x4d\xae\xc7\x8c\xc2\x23\x7a\xed\xf3\x15\xe1\xac\x83\xbb\x67\x5b\x21\x6a\xd6\x00\xde\xfc\xb6\xdd\x22\x72\x5d\x83\x05\x98\x6e\x65\x51\xbe\x28\xc2\xef\xcc\x5f\xa9\x40\x47\x4f\x42\xd0\x09\x97\xc2\x38\x2a\x37\xa0\x2b\xb5\xa1\x85\x27\xd7\x15\x02\xe7\xbd\x33\x96\xd6\xc7\x64\x0b\x91\x89\xbb\x46\x86\xef\xf0\xe6\x4e\x20\x32\xd6\x73\x4e\xb0\x8b\x09\x8b\x92\x2c\x44\xd9\x00\xe6\x5f\x89\x21\x89\x8e\x9b\xd2\xc6\xa1\x29\x22\xc9\x03\x7d\x6d\x56\xfa\xa5\x9a\xa7\x94\xcf\xad\x54\x4b\x34\xfe\x78\x91\x18\x0e\x5f\x36\x09\xac\xa6\x3a\x37\x8f\x97\xdb\x0c\x09\x4c\x98\x8f\xb7\x99\xce\x0e\xf8\x1d\xf9\x0f\x58\x4a\x16\xf9\x55\xd1\x0d\x9f\x4c\xed\x58\xdd\x78\x98\x9e\x69\xc5\xc2\xe4\x8c\x9f\x7e\xb4\xed\x0b\x7a\xf0\xb6\x30\x43\x52\xc6\x82\x73\xff\xf3\x5a\xae\x96\x5e\x66\xca\xac\x18\x64\x2f\x88\x2b\xa0\x9e\xa6\x01\x14\x35\x61\xce\xd7\xc5\xe8\x83\xb0\x1f\x16\x03\x95\x27\x50\x80\x82\xfd\xbe\x72\x13\x28\xcd\xd1\x62\xd4\x4d\xc2\xe1\xd0\xd1\x1c\x29\x43\x6d\xc3\x29\xc1\x40\x0a\x4a\x47\x71\x9e\x74\x81\x85\xd5\x05\x1e\x58\x5a\x73\xaf\xa3\x70\x99\x45\x73\xec\xd2\x2b\x8f\x04\xe3\x9a\x87\xa3\xa4\x59\xda\x40\x18\xa6\x8f\x03\x5f\xd4\xf8\x21\x49\x79\x3f\x20\x4a\x0f\xd3\x8d\x0a\xa0\x5f\x91\x00\x9e\x20\x95\xb8\x13\x04\xde\x4f\x87\x26\x79\xd4\x37\x72\x7e\x0f\x75\x2d\x07\x7f\x77\x33\xc2\xbf\x0d\x6f\xee\x4a\xe6\xe5\x4a\x3b\x50\x87\x4b\xfe\x7e\x07\xc7\x56\xa5\x10\x6c\x8a\x88\xd2\x12\xa6\xc9\x9d\x14\xf9\xf4\x01\x8f\x37\x2b\x57\x59\x40\x00\x64\x43\xf3\x7e\x79\x82\x9a\xde\xb2\xc1\x6c\x4c\x94\xb8\xab\x9c\x5f\x5d\xd3\x31\x43\x2b\x1a\x52\x2e\x91\x1e\x68\x3a\xdc\x6e\x3c\x56\x53\xbe\x2d\x9c\xe5\x79\x5e\xf1\x8f\x26\x2a\x0f\x70\xb6\x78\xbd\x7f\x40\x61\xc5\x83\xda\x61\xe6\xcc\x84\x78\x70\x52\x5c\x99\x95\x1e\x9d\x54\x59\x25\xdd\xad\x03\x65\x8e\x92\x91\xeb\xd6\xe1\xe3\x8f\xdb\x4f\x94\xeb\x60\x47\xd4\x1a\x66\x66\xe1\x6f\xb6\x46\x9f\xf6\x7a\x41\x7f\xeb\x73\xab\x8d\x3d\x7b\xbc\xae\xef\xac\x83\x43\xfc\x14\xed\x48\x6d\x68\x13\x52\xf2\x1c\x0f\xf5\x1f\xb7\xf8\x0b\x9c\xd5\x5d\xed\xc6\x17\x0f\xf9\x86\x88\x63\xed\xd8\xd9\xf6\x83\x71\xbb\xda\x65\xe2\xa4\x0c\xd9\x94\xdb\x6e\x5d\xb5\x3b\x08\xf1\xed\xe6\x55\xdf\xf2\xfe\xab\x36\xb3\x84\x0e\x0b\x9a\x6f\xae\x08\x7b\xc8\x91\x0e\x9c\xb4\x61\x00\xb6\x73\x73\x95\xa7\x05\x6f\xda\x82\x3c\x4c\x82\x00\x6a\x00\xba\xb4\x83\x1d\xb3\xae\x3a\x4c\x74\xdf\x37\x49\xf5\x70\xc1\xa6\x62\x56\x1d\x1d\x21\x7f\x03\x2d\x13\xec\x5b\xe1\x5f\x95\x1b\x4e\x90\xce\x61\x13\xcb\xef\xb4\x29\xf3\x0e\x98\xbf\x34\x5b\x2c\x93\x58\x27\x14\xb4\x81\x99\x87\xd4\xd9\x92\x5e\x94\x18\x80\x74\x11\x64\x9d\xa6\x41\x96\xd3\xf4\x37\x33\x93\xa7\x59\xb1\xcd\xae\x2c\x66\x79\x8e\xd3\x4f\x1e\x21\x85\x26\xd8\x1e\x35\x0d\xf6\x6d\xa3\x91\x74\x02\x34\x24\x72\x03\x17\x2c\x7f\x2a\x78\xb2\x22\x0d\xf1\xf9\xa6\x57\x50\xc7\xf0\x31\xb6\xef\x18\xdf\x05\x66\xa0\x3a\xa8\xbe\x77\xc6\x82\x9e\x25\xa0\x75\x8c\x91\x33\x0a\x15\xad\x65\x35\x8b\xd3\xc1\x7c\x98\x75\x9b\x1b\xd1\xd0\x58\xda\x1f\xf3\xa0\xd0\x75\x1a\x2f\x89\xc3\x79\xb0\x86\xf9\x16\x28\x88\x3b\xe4\xba\x12\x59\x7d\xa1\x35\x6f\x19\xdb\xcb\x6f\x06\x3b\xf4\x20\x20\x9a\x17\x18\x5f\xc5\xee\x7a\xdb\xb3\x90\xc6\x71\xba\xdc\x9c\x28\xaf\x7b\x60\xef\x31\x56\xeb\xbb\x53\x99\x68\x29\x1d\x12\xd5\x40\x1b\xbe\xcc\x7d\xd2\x1a\x22\xb9\xae\x41\xb6\xec\x6f\x0d\x6c\x90\xd6\x20\xf8\x38\x86\x01\xe4\xba\x86\xb6\xad\x15\x87\xc3\xdc\x48\xba\xe8\xc4\x81\xcb\xe7\x53\x46\x8e\x87\xf5\x02\xfa\x66\x39\x36\x45\xd1\xa8\x30\x15\x2a\x1f\x0d\x65\x61\x69\x1c\x1b\x54\x05\x34\xad\xb0\x07\x50\xf3\x8a\xbf\xfa\x90\x8f\x98\xcf\xc2\xd1\xc0\xd8\xac\x5f\xbb\xd0\x3a\x62\x4b\x82\x72\xb7\x09\x86\xf3\xe2\x28\xea\x2c\x2e\x45\x66\xd9\xf2\x5e\xbb\x5a\xef\x5e\xc7\xda\x4f\x10\x84\x42\x27\x51\x05\x4e\x16\x4c\x60\xcb\x2a\xbb\x6e\xba\xb5\x10\x76\x8a\x34\x5b\x21\x14\xdc\x65\xa2\x99\xb8\x4c\x5f\x38\xb6\x12\x9a\xd6\xe5\xe2\x73\x3f\xa6\xe2\xe5\x26\x6b\x06\x31\xec\xf6\x35\xea\x56\x74\xd3\xd1\x7c\xb1\x9d\x88\xf2\xcf\xd8\x80\x16\xb0\xbf\x3f\x65\x09\x3d\x54\xaf\x75\xb2\xb1\xfc\xcb\xd8\x4c\xaf\x8e\x7d\x06\x2f\x95\x6c\x58\xd8\x29\x6a\x5a\xbd\x55\x97\xb4\x0f\xc3\x24\x74\xf1\x0b\x76\xba\xb0\xe2\xca\x4d\xcd\x60\xd8\x4c\x6b\x10\x66\xbd\x28\x69\x7a\x3c\x34\x2a\x86\x6e\x3e\xda\xcb\xd1\x5d\x9c\x68\x00\x99\xac\xdb\xf0\xed\xee\xd7\xed\x2f\xc9\x35\x8f\x0a\x8f\x32\xb3\x83\x27\xe0\x98\xb7\xe5\x0c\x81\x2a\xef\x04\x8d\x43\xb3\x4e\xcd\xd6\x2e\xa0\xce\xcc\x95\x0b\xa8\x13\x50\xe5\x27\x6a\x77\xd2\x6b\xf5\x41\xf2\x56\x87\xda\x37\x46\x87\xcf\xb4\xba\x66\xc9\xc4\xe9\x50\xab\x4e\xc2\x0a\x65\x23\x28\xe5\xf4\xa7\x32\xff\x8f\x6b\x8a\x94\x2a\xf8\xde\xb4\x06\x14\x6e\xf8\x16\x75\x36\xdf\x83\xfb\x53\x29\xcf\x8d\x06\xf2\xf0\xe1\xd6\x20\x5c\x99\x37\x4d\x6a\x84\x23\x27\x86\xf9\x16\xea\x70\x05\xbc\x71\xd8\x37\x1f\x8a\x34\x79\x5d\x2d\x6e\xe3\x2e\xf8\x5c\xeb\x17\xa7\xf7\x3e\xbb\xf7\xc0\xfe\x66\xe9\x42\x51\x51\x43\x75\x0d\x5b\x75\x7d\x92\x27\xd1\x27\x00\x99\x79\x09\x42\xb1\x28\x96\x0a\xf9\x9b\xdc\x3c\x94\x84\x79\x08\x32\xdb\xf2\x9b\x0b\xb7\x04\x0d\x71\x6f\x06\x3e\x12\xeb\x73\x9b\xc4\xcd\xa3\x24\x2f\xa2\xc2\xd2\x7d\x0a\xd1\x0e\x6b\x94\xe8\x4d\xe5\xf0\x1e\x3e\xdc\xca\x8d\xad\x71\x21\xe8\x16\x91\x3c\xfb\x89\xa8\xf5\x03\x41\x08\x3b\xd9\xa8\xd4\xad\xf7\xed\x6b\xf5\x4d\x96\x1b\xc0\xd3\x67\x3d\x05\xcb\xec\x9c\xbb\x79\xa8\x48\x44\x6f\x14\x66\x61\x52\x18\xed\xae\xbb\x7c\x8a\xb3\x2e\x0d\x2b\xad\xd1\xef\xfe\x7f\xa4\xbd\x79\x8c\x24\xd9\x79\x27\x36\x9d\x55\x7d\xcc\x74\xcf\xc5\x19\x6a\x77\xa5\xb5\x91\xc4\x12\x1a\x19\x4b\x0d\x28\x19\x30\x60\xf9\x8f\x48\x57\x97\x38\xec\xc6\xaa\xa6\x50\xdd\xea\x91\xe6\xaf\x79\x19\xf9\x32\x33\x58\x91\x11\xc9\x38\xaa\xa6\x06\xfe\xc3\x36\x8c\x85\x01\x2f\x0c\xac\x21\x2f\x7c\xc0\xb0\xbc\x5e\xaf\x57\x58\x59\xa2\x0e\x92\xa2\xb8\x72\x16\x0f\x91\xa2\x78\xcd\x41\x72\x86\x73\xf6\xf4\x7d\x54\x77\xf5\x7d\x77\xb5\x11\xdf\xef\xfb\xde\xfb\xa2\x32\x5a\x36\xe0\x7f\x88\x4c\x4e\x57\x66\x46\xc4\x7b\xdf\xfb\x8e\xdf\x11\xaf\xd1\xd1\x86\x0e\xe1\x8d\x40\x27\xae\xfe\xb8\xfa\x40\x41\xc0\xc2\x34\x4b\x6c\x1c\xf3\x06\xae\x49\xd7\x89\x6d\x52\x43\x4d\xce\xb2\x88\x33\x9e\x98\xf4\xa3\x40\xb5\xe2\x7f\xa4\xa0\xc6\xc3\xc9\xb3\xba\x57\x16\xdb\xc2\x64\x11\x7b\x85\xb8\x68\x75\xf0\xa0\xbc\xae\x2d\xc3\x32\xca\xc1\x45\xc4\x42\xfa\xd7\x4a\x96\x92\xef\x02\xde\x5c\x62\xe8\x85\x40\xe4\x9e\xad\xe7\x18\x07\x0f\x1e\x6a\xcf\x1f\x7e\xd2\x33\x1c\xae\x06\xbe\xe7\xf3\x23\xed\xf4\x75\x85\xb6\x27\x32\x1d\x70\x70\x85\x00\xa5\x8c\x53\xef\x21\xb1\xad\x41\x5b\xf0\xcd\xb7\x54\x13\xeb\xf6\x44\x61\x09\xd9\xca\x41\xf9\x14\xc8\x0c\xf7\x7b\x14\x8e\xf0\xc1\xbb\x91\x5d\x22\x20\x40\xa8\x12\x41\xf0\x7f\x69\xe2\x25\xc6\x25\x8b\x73\x21\xfd\xdd\x52\xaa\x3a\x5b\x4a\x86\x36\x1f\xa6\x99\xa5\x43\x0d\x6b\x5c\xc9\x84\xbf\xb7\xa3\xe9\x5c\xef\x9a\x64\x59\xd4\xa2\x65\xba\x44\xd7\x28\x12\x71\x3e\xaf\xb8\xa5\xfa\x3c\xdd\x38\x4a\x96\x05\x92\x8d\xf5\xf7\x8e\x42\x00\xbf\x33\x15\x9e\xaa\xea\xf7\xb9\x2e\x23\xa9\x1a\xb3\x57\x9d\x93\xf6\x7a\x16\xcc\x65\x09\xbe\x14\x38\x30\x02\xf9\x6b\xc4\x41\x04\xc8\x4b\xdb\x25\x6b\xaa\xf3\xe6\xc8\xdc\xc2\xde\xea\x4c\xc5\x7d\xde\x0b\x1b\x4e\xd4\xbb\xbb\x3b\x74\x38\x20\xbe\x9f\xa2\x62\x91\x4d\x54\x74\x74\x65\x7a\x18\x2f\x69\x5a\x25\x80\x49\x6d\xd1\xed\x70\x96\xe0\xd5\xf3\x73\x8d\x0a\x27\xec\x71\x59\x49\x81\x5e\x99\x3c\xa3\x36\x5f\xd2\xb7\x99\x4d\x42\x0b\x27\x2d\x36\xf1\xd0\x5b\x89\x45\xfc\xc4\x56\xcb\xe3\x93\x58\xbf\x52\x46\xc1\xfe\xbc\xba\x49\x89\xe6\x16\x3a\x7f\x58\x7e\x3f\x08\xfc\x7a\xa8\xce\x94\xb5\x5d\xf4\xa1\x60\xed\xcf\xd0\x9c\x9e\x5f\x77\x7c\x8f\xe9\x38\x0a\x46\x75\x56\x49\x2b\xec\x62\xa0\xc4\x3b\x8e\xd7\x0e\xe8\x28\x5f\xde\x47\x7f\xe6\x66\x0e\x8b\x2f\x1e\xf2\xa2\xe1\x3e\x77\x83\xdc\x64\xcd\xd4\xd8\x01\x97\x8f\x48\x6e\x7e\xb5\x26\x63\xe9\x01\x72\xcc\x91\x02\xa0\x85\xfb\xe5\x0c\x5f\x0a\x14\xea\xe9\x16\xb6\x36\x9a\x7f\x17\x95\xcb\x89\x53\x9a\x42\x3d\x24\x35\x71\xcb\x99\xb6\x9c\xdc\x5e\xa6\xfc\x46\x7b\x61\xe1\xd9\x29\x78\x99\x8c\x62\x4e\x04\x3e\xcf\xc7\xc0\x54\xe9\x83\xbc\xe0\x8f\x37\x1f\x68\x10\x9a\xb1\x84\x60\x78\x8c\x87\x07\xd1\x58\xf7\x00\x3c\x6a\xee\xcb\x48\x4f\x58\x18\x92\x6a\x66\x37\x24\xf1\x70\x88\xd9\xf5\x2a\xb0\xa1\x87\xb6\x81\x47\xe6\x80\x90\x2f\x39\x9a\xea\x95\x40\x1f\x3f\x1c\x3b\x1d\xd0\xc2\xc9\x39\x9c\x25\x36\x04\x5a\x1d\xb3\x9d\xe9\x09\xdc\x7c\xfb\x0b\x26\x62\x44\xac\xa8\xfd\xf9\x11\xec\x45\x25\x63\x5f\x1d\xbe\x59\x49\x80\x72\x7a\x70\xe8\x74\xdc\x56\xc4\xdf\xdb\x4d\xb2\x67\xd5\x8b\x65\x1c\x7e\x8b\x4e\xde\x4c\x21\xf9\x9b\x84\xf1\xda\xab\x26\x72\xda\x49\xa2\x00\x42\x7f\xc3\x6f\x02\xe9\x8b\x8d\xb3\x74\x94\xaa\x7c\x40\x60\x34\x3e\xbf\xbc\x30\xd9\xab\xea\x67\x5a\x2a\xa8\x62\x21\xfd\xc4\xaf\x27\xcf\x3a\x80\x43\x5e\x98\x6e\x14\x47\xaf\xb9\x74\x01\x4d\x87\xbd\xeb\xae\xc4\x5c\x7a\x86\x76\x18\xa2\xfa\x75\xcf\x18\x1d\x46\x45\x61\x96\xd9\xd7\x1c\x95\xc4\x9b\x08\x86\xfc\x46\xf5\x86\xbb\x26\x5c\xee\x65\xe9\x78\xc6\x0f\x4b\x6f\x63\xd9\xcb\x4c\x51\xc5\xaa\x69\x3d\xb9\x85\x85\xf6\xd0\x2a\x20\x1c\x22\xdf\x31\x95\xe5\x1e\xd3\x36\x34\x69\x86\x23\x58\x38\xe6\x2d\xa7\x32\x31\x43\xf8\x09\xac\xfa\x6b\x81\xaa\x53\xef\x37\xfa\xf1\x7e\xb1\xb4\x26\x8f\x44\xbb\x1c\x6b\xf4\x0a\x2d\x37\x7e\x1d\xc8\x8d\x4c\x0c\x1e\x0b\x81\x11\x5a\xbe\x93\x8c\x61\x18\xbf\xd6\xf5\x8f\x49\x42\x0b\xaf\x3b\x31\x9b\xf0\xcf\xea\x0e\x3d\x2b\xec\x95\xd3\xda\x32\xf7\xa3\xc0\x77\xca\x3e\x52\x59\x69\x69\x01\xdd\xc6\x7f\x61\x60\x0a\x5a\x02\x0f\xb0\x23\x71\x24\xa0\x2e\x00\x70\xe9\x81\x0a\xb0\xd5\xff\xe4\x98\x76\x38\xeb\x0b\xcf\x8a\x61\xe6\x15\xba\x1d\xb7\x1b\xf0\xc5\x87\xda\x99\x89\x72\x3b\xa3\x9c\x84\x67\x3b\xbe\xc7\x0b\x89\x61\xfc\xff\x1b\xfa\x98\x4f\xe3\xa8\xa7\x00\xe3\x3b\xa8\xa9\x8d\x87\xb3\x85\xc8\x83\x93\xf3\x6d\xd5\x6e\xe8\x5a\x53\x14\x6b\x94\x1c\xd4\x04\x9c\xf8\x8d\x22\x4e\xae\xda\x9e\x00\xd6\x1c\xd1\xde\xc7\xbf\x33\x1e\xa7\x60\xc7\xfc\xcf\xd8\xa7\x59\x2f\xe2\x53\x53\x0e\x29\x9f\x69\x67\xb6\x5f\x66\xdd\x28\x1f\xba\xf5\x88\xb4\xf3\xcf\xe8\x59\xf3\xeb\x46\x0b\x88\xa1\x81\x7f\x10\xce\x93\xfb\x08\x70\xb8\x49\xbb\x3b\xad\xdf\xfc\x1d\x37\x2a\xf1\x73\xdb\xe3\xea\xfc\x9c\x25\x8b\x14\x1c\x40\xd3\x78\x93\x03\x0b\x6d\x93\x0f\xcb\x2c\x2f\xd4\xfa\x3b\xa6\xb1\xe8\xc7\x6a\xf2\x56\xb6\xb0\x8f\xf9\x59\xec\x19\xc5\xc5\xfd\x6b\xdd\x71\x78\x03\x9f\x80\x4c\xea\x2c\x53\x39\xb0\x84\x4e\xab\x42\xff\x01\xf1\xa7\xd9\xed\x09\x5b\x1b\x7f\xcf\x32\xa7\xfc\x46\x79\x3e\x3f\xb2\xde\x84\x2e\x62\xc8\x1e\xf7\x75\x84\x18\xe1\x7b\x58\xd3\x6d\xe0\x83\x07\x97\xda\xfd\x34\x2c\x81\x3f\x45\x46\x05\x66\x1d\x43\xd3\xe9\x74\xc6\x5d\xbe\xaf\x44\xb3\x07\x59\x5a\x14\xa9\x68\x58\xe0\x8a\x70\x62\xf3\xeb\x89\x9a\x08\x66\x65\x54\xf4\x4b\xe8\x83\x8b\xee\x03\x5d\xa4\x08\x42\x3c\xad\x31\x11\xa3\xe8\x55\x16\xb7\x41\xf1\x75\x59\x6b\x1b\x5d\x9e\x5a\x52\xf3\x87\xdb\x36\x29\xa2\x22\x66\x02\xd3\xc1\x83\x4c\x9a\x7d\x84\xc2\x15\xbf\xee\x6c\x7f\xe0\x9f\x7b\xa9\x6d\x6c\x61\xb3\x44\x1b\xb4\x9e\x55\xe2\x6c\x5f\xa3\xd2\xdf\xbb\x6a\xfb\x67\x3f\x10\xc7\x2b\xf4\x4f\x36\x28\xb3\xe1\xd7\x0d\x12\x37\xec\xcd\x49\x57\x2f\x76\x9c\x2d\x27\x70\x7c\x4e\xa9\xf5\x14\xd1\x38\x27\x75\x71\xec\xdc\x1f\xa3\xbb\xee\x34\x4c\x1c\xf5\xf1\xac\x02\x10\x87\x69\x12\xc6\xa5\xf8\x29\x68\x0f\x0d\x8c\x58\x2f\x05\xbe\xcf\xfd\xba\xb7\x60\x29\xec\x88\xb4\x4c\x17\xbd\x6e\xe6\xa2\x13\xd3\xfe\x70\xe2\xa9\x74\x5c\xbc\x60\x35\x30\x4d\x5f\xd3\x61\xf0\x8b\xee\x4f\x34\xe7\xa7\x49\xf0\x89\x98\x6c\x33\x5a\xb6\x13\x41\xca\xb5\x83\xfc\x00\xa9\x71\xd4\x31\xb2\x26\x51\xaa\xb2\x27\xf1\xd7\xfc\x46\x35\xd4\xf2\x70\x98\xa6\xf1\x4e\x3f\x05\xdf\x40\xa3\x5a\xec\x59\xfd\x80\xe3\x5d\x35\xdc\xba\x5a\xeb\xc4\x2b\x54\xc0\x38\x8a\xab\xc5\xb8\x34\xc7\xd5\x23\xf6\x06\xbf\x5e\xdf\xbe\x16\xab\xdd\x44\x3e\x28\x85\x4d\x64\xb2\x82\x90\x76\x3c\x50\xb2\xa2\xda\xb3\xd3\x46\x83\x21\x39\xa4\xcf\x7b\xf3\x4d\xef\x9e\x0b\x93\x60\x54\xdc\x64\x6a\x76\x68\x6b\xb6\xa3\xd8\x94\xe7\x91\x0b\xf3\x1b\x7a\x20\x62\x0b\xba\xfd\x26\x1e\x3c\xd8\x4e\xd2\x4c\x44\x65\x91\x7d\x7e\x77\xe2\x05\x11\xa0\xe1\x21\xf4\xbb\xed\x01\xb8\xda\x65\x26\x47\x47\x13\x89\x15\x0e\x29\x7e\xbd\x3e\x6d\x00\x7d\x64\xee\x71\xfa\x26\x60\xed\x5f\x47\xbe\x80\x2a\xe1\x8e\x32\x0b\x85\x9c\x1c\x66\xce\xd7\x26\xaa\x3b\x74\x13\x77\x0c\xc1\x9b\xe5\x03\x91\xa6\xdd\x9c\x68\xda\x58\xb5\x26\xd0\x58\xbf\x37\x51\x16\xa1\x30\x0a\x44\x5a\xfe\x00\x05\xbc\x6c\x9e\xea\x4c\x40\x76\xf3\x91\x9a\x4f\x86\x69\x39\x06\xce\x19\xfb\xff\x2a\x9e\x03\xbf\xa9\x09\xc8\x54\xbf\x98\x5f\x4f\x85\x23\x60\xc7\x46\x36\x0b\x23\x13\xa3\xdc\x70\xc2\x4a\x4a\x65\x49\x69\xfd\xf5\xd3\x6c\x10\xad\xd0\x71\x58\x6d\x41\xd6\x59\xa3\xf1\x94\x68\xae\xa9\x14\x96\x7c\xf4\x68\xec\xe8\xfa\xa7\x67\x95\x15\xdc\xd9\x86\xb1\xf5\x62\x7b\x64\xad\x17\xe6\x12\x20\x75\x6b\xc1\xbb\xd9\xa9\xfe\x50\x66\x56\xe3\x2a\x9a\xfc\x7f\xe8\x48\xff\x82\x47\x5a\xd9\x22\x4b\xc3\xa1\x1d\x39\x7a\x21\x9e\xf4\x0e\x25\xb8\xb0\x63\xbd\xc1\xb8\xfb\x0b\x36\x1d\x9b\xac\xb7\xa6\xa4\x29\xce\x29\x27\xa6\x1f\x4f\x94\x65\xde\x65\x35\xde\x5a\xb5\x34\x66\x43\x5b\x5e\x9b\xc2\x8a\xc4\x8e\x9f\x86\xdb\x57\x09\x6c\xb8\xc2\x29\x96\x4c\x12\x5b\x4e\x90\x08\x94\x28\x21\xba\x2a\x70\x8d\xc9\x7a\xf2\x15\x40\x33\xfc\x30\x50\xba\x04\x3f\x6c\x20\xc0\x2f\xb6\xfb\x51\x4c\x24\xc3\xea\x9e\x21\x21\xfd\x0a\x1e\x3c\xbf\x71\x99\xd3\x30\x1a\x2b\x62\x31\x36\x3a\xbf\x6e\xfc\xe0\x5e\x46\x62\x50\x2d\x25\x4d\xc3\x08\x3f\x7e\x33\x95\x5b\x1e\x3c\xc8\x94\x34\xe5\x3c\x76\x56\xf5\xdd\xcf\xba\x72\x24\xed\xe6\x85\x09\x63\x99\xee\x88\xee\x82\x16\x61\x50\x03\xf3\x51\x4a\xb7\xde\xe3\x97\x98\x97\xc1\x6f\x7c\x87\x32\x4d\x22\x72\x31\xa7\xfb\x5e\x83\xc4\x09\x0c\xce\x43\x79\x0a\x22\x50\xcf\xb4\x5e\xf2\xd6\x4a\x35\x87\x30\xbf\xff\xde\xd3\x9e\x40\xb1\xc9\xf3\x28\xd4\x4e\xa7\xff\xb2\x26\x76\xa1\x10\x7e\x2b\x51\x3e\x14\xf3\x7e\xc4\x85\xaf\xe1\x9f\xf2\x1b\x55\x12\x2c\x5b\x58\x52\x39\xdc\x7d\xb5\x08\x71\x1e\x82\x2d\x89\xe0\xf3\x9d\xe0\x93\x5a\x7b\x3b\x4b\x07\xa6\xda\x9a\x78\xf8\xa8\xb6\x81\x22\xe3\xd7\x1e\xd1\x18\x97\x18\x55\x51\x44\xa7\xa3\x7d\xeb\x52\x13\xb3\xd9\x64\x79\xca\x48\x28\x91\xea\x6d\x39\x35\xb2\x13\xc1\x53\x0e\xf3\xfa\x85\x32\xf7\x3b\xbc\x09\x20\xe8\x2b\x87\xae\x49\x96\xf3\x7d\x5e\xad\xed\xde\x44\x89\x46\xb0\x53\x38\x60\x19\xb3\x1d\xc5\xd5\xdb\xe4\xbe\x81\xe4\x85\xca\xd1\xef\x3f\x57\x68\x57\x3c\xa9\x1a\x47\x02\xcd\x79\xa0\x6e\x24\xfc\xf9\xb6\x1b\x4f\x01\xc4\xc2\xc2\x67\x43\xd5\x25\x3d\x53\xfd\x4c\xf1\x68\xf7\xf4\x90\xdb\x48\xfe\xc5\x5f\xa8\x4a\xfe\x91\x7f\xc1\x54\x1c\x4d\xb0\x3f\x9c\x28\x2f\xc8\x7d\x90\x1a\xc0\x9f\xbf\x85\x73\xa6\x66\x0b\x80\x18\x75\x85\x7e\x98\x34\xfd\xe9\xea\x45\xd2\x0f\x57\x2f\x14\x77\x85\xc8\xb9\x4d\xcd\x19\xed\xc3\xc2\xf6\x59\x81\xea\x94\xb0\x0e\x84\x6a\xe1\x2c\x7a\x1f\x7a\x97\xf1\xb5\x3a\xcf\x28\xbb\xab\x32\x09\xa3\x38\xcd\x18\xf7\x2a\x79\xb5\x9f\xcf\xdd\xa0\x1f\x8b\xa0\x79\x4c\x95\x86\x31\xf9\xeb\x55\x37\x02\x28\x8d\x47\xa8\xe1\xc7\xaf\x1b\xfa\x3a\xed\xbe\x5d\x15\xda\x80\x6b\x8a\xf8\x06\x89\xe2\x2f\xc6\x66\x75\x64\x96\x2d\x7e\xd2\xe2\xd6\x89\x89\xea\xba\xb0\x01\x11\xde\xec\x9c\xfa\x9a\xc5\x17\x0f\x11\x23\xa4\xa5\xc4\xaa\xdf\x0d\xea\xf4\x90\x1a\x39\xff\x35\xb1\xc9\x69\x12\x06\x79\x56\xc9\x85\x7d\xb1\x8c\x72\x82\xa7\xed\xa9\x6e\xa4\x94\x5a\x4a\x0f\xea\x7d\x4d\x30\x3b\x4b\x5d\x00\x36\xa3\x52\xc2\x02\xe0\xe3\x60\x63\xfd\x0d\x52\x0f\xfc\xac\x9d\xeb\xda\x70\xc9\xe3\xe7\xd2\xe7\x96\xa3\x70\x39\xda\x45\x57\x8d\x0c\xed\x14\xfe\x0e\xf9\xcb\x1b\x2a\xbd\xbc\xac\x88\x62\x97\x15\xf6\xea\x41\x8d\x51\xee\xab\xa0\x5e\xb4\x12\xf5\x4a\x13\xef\xf6\x63\xfc\x1b\x75\xdd\x0b\xa5\x42\xd4\xea\x78\x03\xf2\x59\xaa\x79\x50\xa4\x93\x83\xf4\xc2\x16\x0b\x78\x89\xd1\x97\xbe\xc7\xff\xd1\x67\x81\x8c\xc6\x9d\x61\xc7\x62\x7e\xb3\xde\xd0\xbe\xcf\x87\xe9\x6a\x4d\xc4\xed\x82\x56\xc3\xbe\xa0\x71\x2a\xcb\x51\x1c\xe7\x33\x8a\xb1\x7d\x52\xf1\x9d\x61\xd1\x24\x2a\xaa\x4d\x06\x41\x65\x6e\xb0\x50\x18\x91\x15\x78\xec\xda\xb9\x06\x49\xfd\xea\x9c\xab\x8a\x4c\x84\x77\xdf\xa9\xd6\xcd\xed\xed\x89\x1a\xd9\x2c\xa4\x63\xa2\xb8\x49\xe0\xd4\xd2\x6d\xfc\x5a\xd3\x16\x6c\xc1\x55\xe6\xce\xba\x58\x4e\x75\x43\x10\xfd\xee\x6b\x41\x88\x73\xd8\x1e\x4e\x3a\xc7\xc1\xe2\x36\xa7\x9c\x42\x5f\x5a\x9a\x6b\x47\xa3\xae\x89\x4d\x12\x4a\x51\x8d\xcc\xf3\x7b\x6a\xac\xf0\xbd\x29\xea\x45\x55\x19\xd9\x57\x8b\x4c\xb9\xf0\xc9\xb5\x2b\x75\x99\xe3\xaa\xa0\x29\x86\xb6\xcf\x74\x39\xc0\x89\x71\x97\x64\x38\x45\xb7\x0f\x55\xe0\xb9\x1a\x27\x66\x35\x2a\xea\x82\xb3\x5e\x44\x71\x33\xd8\x8e\xb8\x5c\x9a\x6b\x27\xb0\x47\x40\xfd\x7c\x9d\x62\x1c\x9a\xa0\x3f\xa6\x7d\x81\x42\xe8\x72\xb0\x1d\xd6\x2a\xa3\xd0\xd8\xf4\xa2\x3c\x36\x2b\xca\xce\xf3\x94\xee\xc6\x9c\x52\x48\x56\xf6\x20\x6d\x29\xec\x32\x2c\x4f\xf8\xf5\xd4\x64\xf9\xe0\x41\xe9\x94\xa4\x7c\x06\x3b\xce\x81\xef\x1d\x6e\x4e\xd1\x2d\x8e\xcc\xbd\xd0\xee\x16\x2d\x75\x5c\x5d\xe4\x00\x26\x13\x87\xa6\xbc\x2d\x1c\x9a\x6c\x20\x0f\x87\x75\x7c\xf0\x70\x44\xd4\x47\xf7\x16\x5e\x8d\x42\x9a\xaa\xcb\x74\x54\x61\x9d\x2e\xeb\x09\xe8\xcf\x1a\xdd\xcb\xcb\x7c\x28\x39\x1c\xaa\xab\x53\x7a\xa6\x73\xaa\xd1\x8c\x22\xb3\x6b\x49\x1a\xf7\x04\x36\x23\xd2\x46\xf4\x5d\xfc\xa6\xc9\xfa\x7b\x6c\x4d\x2e\x44\x01\x21\xc1\xf9\x21\xf9\xef\xbb\x34\x77\x64\x42\x78\xbc\xa0\x68\xb8\xc3\x77\x4c\xbc\xae\x7d\xd6\x3b\xed\xd6\x30\x7f\x98\x4a\x29\x93\xf4\x5c\x7f\x1d\x2b\x13\xcc\x12\x2c\xdf\xdd\x8a\x47\x79\x71\xb2\xd7\x63\x76\x56\x1e\xa3\x1c\x01\xbd\xe6\x3b\xba\x8b\xc1\xbd\x6b\x2e\x7b\xe9\x57\x03\xb3\x79\x4a\xe7\xb1\xb7\x75\x30\x47\xed\x2d\x06\x5e\x41\x6d\xcc\xe4\x31\x9f\xa7\x28\xcc\xf3\x37\x2a\x92\xa5\x09\xab\xc3\x9c\x77\x1d\xda\x39\x60\xfa\xcb\x14\x19\xf7\x04\x53\x18\x05\xe4\x8d\xab\x34\x31\x83\x54\xac\x17\x82\xbc\x8e\x18\x23\x3b\xcb\x6f\xed\x2c\x4d\x47\xf9\x6e\x1a\xc0\xa1\xc3\x71\x6d\xd2\x7a\xee\x39\x79\x8d\x1f\x2d\x2a\x22\x55\xca\x24\xc2\x3b\xbe\x25\x8f\xb9\x16\xfe\x0d\x64\x6b\xb6\x5e\x9f\x8a\x55\x8e\xee\x95\x66\x23\x9b\xcd\x56\xab\x55\x94\x3f\xe9\xbe\xb2\x7e\x2a\x96\x2e\x2a\x0d\xc8\x1b\xe1\x34\xde\xd9\xf1\x9d\x41\xbb\x92\xc6\x2b\x02\xb3\x73\x76\x41\xae\xcf\x75\x41\xe5\xd7\x99\x65\xd9\x51\xa9\x9b\x50\x25\xc0\xf6\x84\x5f\x4f\xf5\x44\x5f\x79\xa5\x9d\xa7\x55\x21\x1e\x71\x5f\x17\x64\xdf\x3b\x13\x65\x6c\x7b\xc7\xb1\x82\xfb\xb1\x59\xb6\xf9\xac\x86\x66\x3f\x8a\x86\x97\xb3\xf5\x74\xfc\x55\x6e\x9c\x63\xa9\xdc\x6f\x28\xba\x5f\x68\x7f\xb1\x34\xc4\xc2\x6d\x29\xa3\xbb\xea\x03\x84\x77\xe1\x79\x4a\xab\x51\x91\xd8\x3c\xb7\x39\xc4\x1e\xe5\xcc\x53\x95\xde\xeb\xb5\x03\x50\x55\x7d\xaf\xd7\xf0\x13\x6b\xb1\xdd\xa5\xcc\xe8\x59\x6b\x14\xbf\x18\x66\x13\xc2\x90\xa4\xf5\xe4\xbc\x0e\xe7\x0f\x7b\x82\xa5\x87\xd3\x6c\x2a\x94\x77\x98\x99\x7e\x41\xc1\xb8\x89\x90\xd2\xd0\x6b\x32\xf9\xb2\x04\x3d\xcc\x79\xdf\xa2\xbb\xc7\xaf\x03\xdf\x77\xe9\xc7\x86\xfa\x5f\x9e\xef\xdb\x3a\xb0\xb0\x75\xa2\x3a\x31\xb6\x4e\x68\x1f\x90\x4d\x85\xf5\x7c\x30\x51\x97\xc9\xa2\x3a\x42\x61\x6b\x0a\xc2\x43\x22\x7f\x42\x3a\xa5\xa6\x3a\xa0\x0c\x68\x5f\xe0\xac\xf0\x5c\x53\x68\x1d\x94\x89\x13\xbd\xc0\xe2\xbc\x8a\x60\xc1\x6f\xa6\x8a\xb7\x23\x73\xa4\x44\x67\x89\x77\x80\xd3\xf5\x6b\x74\x01\xb8\x67\x0c\x2c\x16\x51\xa8\xea\xd6\x08\xc6\x76\xba\xfb\xb9\xd8\x2e\x1c\x53\x53\xc8\x0f\xb4\x9b\x95\xec\xb1\xb0\x2a\x58\x0a\x14\x55\xc1\xce\xce\x53\x2e\xa7\xcc\xc7\xca\xff\x13\x0f\x18\xc5\x04\xbf\x0e\x7e\xc1\x3d\x6c\xb1\x18\x30\x10\x23\x76\xeb\xf7\xbc\x5a\xbf\xe7\x5d\x99\x9f\xdb\x6c\x25\x0a\x2d\xfb\x00\x8a\x5b\x9c\xce\xec\x79\x17\xa1\xe8\xbf\x82\x1b\x8f\x4c\xfe\xda\x14\xf7\x72\x61\xa1\x3d\x32\xf9\x17\x4b\x0b\x19\x3f\xfa\xb9\x5b\xd4\xcc\xdb\xba\xa4\xc9\x67\x26\xd9\xa9\x37\x2a\x77\xd7\x70\x0f\xbf\xa5\x6a\xf4\x73\x81\xf2\xe5\x38\xae\x0d\x60\x2f\xaa\x64\x7e\x68\xb2\x51\x9a\x60\xaf\x8a\x1f\xaa\xcf\x51\xff\xa4\x01\xee\x6b\xb2\x51\x98\xb6\x34\x0c\xa9\xe6\x3c\x77\x6e\x2a\xdf\x3c\xfc\x62\xbb\x4c\xc6\x65\x37\x8e\xf2\xa1\xac\x24\x76\xfa\x56\x18\xe8\xe3\xaa\x15\x97\x87\x99\xb5\x49\xde\xf2\x6a\x80\x1f\x50\xee\xc4\xaf\x27\xfb\xfc\x01\x93\x84\x3b\xd5\xc8\x8f\xa5\x82\xd1\xdc\x63\x36\x8d\x8c\x26\xb5\x08\x05\xe3\xf2\x71\x64\xbf\xd3\xe4\xcf\x9d\xdb\x30\xb3\x05\xe7\x48\x4d\x89\xac\x6f\xe0\xe4\xa3\x34\x2d\x86\xb3\xde\x31\xf0\x5d\x3a\x0d\x45\x64\xa2\xaa\x91\x45\x63\xa2\xe5\x34\x61\xdf\x55\x98\xeb\xbe\xcd\x12\x93\xf4\x52\xb4\xe9\x9c\x3c\xd9\x81\x05\xd7\x29\x56\x3d\xfa\x8f\x9d\x46\x7a\x95\xfc\x56\xf7\x73\x71\xc9\xc7\x2d\xd5\x76\xd8\x54\x89\xa2\xcd\xca\xb1\x58\xfb\x0a\xa2\x98\x3e\x53\xb0\xc6\x8d\x22\xb0\x36\x8b\x23\x71\x5c\x72\x5f\xa0\xa2\xa4\x4a\xae\xf3\xc2\x5a\x14\x6d\x4a\xb6\x7c\x9b\x1b\x3a\x96\xe8\x13\x28\xb6\xd8\xb0\x83\x9f\x0a\x1e\xc4\x2b\x13\x3f\x66\xff\x12\x4e\x6d\x31\xad\xd5\x09\x79\x99\xe4\x7b\xbc\x1a\x29\xf3\x54\x38\x06\x70\x42\xa1\x22\x82\xb8\xa4\xdf\x99\x78\xa3\xd6\x4d\x05\x11\xbc\x0d\xc5\x23\x47\x03\x76\x4d\x86\x4b\x2a\x2e\x64\x36\x4c\x09\xd9\x11\xca\x5d\x6c\x42\xe1\x2b\xbf\x0e\xb3\x96\xef\xc2\x4f\x61\x31\x42\x5a\xbf\xc2\xc7\xf1\x6d\xe2\x6b\x35\xe0\x98\x72\x3f\xf8\x29\x1d\x33\x28\x7a\xbf\xa5\xc6\x8f\x23\x13\x86\xa6\x6b\x59\x25\x9c\x7b\x84\xf4\x81\xd2\x2f\x9c\xc6\xe7\xe6\xd6\x64\xa1\x1f\x3b\xbb\xd5\xec\x6d\xff\x9d\x70\xd0\x88\x69\xd9\xfe\xcb\x91\x67\x70\x8b\x6b\xe2\x41\x1b\x57\x5c\xb6\x66\xca\x62\x98\x66\x84\x05\xc1\x17\x30\x2a\x27\x50\x32\xc3\x1b\x6e\x00\x67\xc6\x26\x2b\xf6\x2a\xf7\x24\x6e\x29\xc9\xb2\x6c\x89\x21\xc5\x3f\xfb\xa5\x8e\xc2\x36\x28\xc8\xd2\x4d\xb5\xa5\xee\x21\x57\x50\xf6\x29\x62\xf7\x79\x47\xb1\xb6\x8e\x4e\x94\x44\x0c\xcf\xf5\xd8\x18\xbb\xb1\x72\xc9\xca\x24\x71\x57\x23\x28\x4c\xcf\xa4\x9e\x1e\xf3\x1d\x3c\xd8\xee\xc7\xa9\x50\x37\x45\x40\xc4\xf7\x6d\xde\x75\x9b\x36\x31\x23\x5b\xb3\xb8\xc2\x0c\x83\x5f\x37\x1d\xc0\xb9\x89\x4d\xb6\xd6\x52\x46\x44\x98\x13\x88\x15\x8c\xef\x3d\x94\xcf\xe7\xcf\x9b\xe7\x67\xab\xa8\xe9\x72\x15\x0f\x8d\xa8\xd1\x6e\xab\x7b\xc3\x66\x1c\x6a\x71\x65\xd6\xb8\x75\x22\xad\x6a\x76\x9f\xe2\x37\x75\x3c\x6d\x15\x55\x38\x3e\x60\xb8\xc0\x5e\x0a\xfc\x66\xea\x6a\x9e\x7b\xae\x6d\xa3\x62\x68\xb3\x99\xd6\xfe\xfd\x4e\xbc\x98\xbe\x4c\x4a\x80\xea\x07\x0b\xc7\xc2\x37\x20\x46\x69\x52\x0c\xd2\x91\xcd\xd6\xf8\xeb\x04\xc5\xac\x21\xcd\xaa\xd3\x1b\xc6\x26\x1f\x2a\xe1\xba\xb3\x7a\x01\x9c\x6d\x00\x53\xbd\xdc\xce\x87\x66\x19\x53\x3e\xc7\xa6\x73\xf7\xee\x8c\x5b\xeb\x61\x19\x17\xd1\x8a\x6a\x9c\x34\x61\xa9\xfe\xbe\xea\xd1\x85\xe9\x68\x5c\x1d\x7c\xe4\xa1\xd9\xd2\x80\x52\xdf\xe1\xba\xa5\xa6\xda\x04\x19\x88\xc9\x0e\xd0\x6b\x27\x2b\xd9\xbd\x0b\x0d\x9d\x90\xaa\x94\x2d\x0c\x8d\x5f\x5a\x5a\xb5\x25\x50\xdc\x63\xb7\xc3\x33\x9b\x97\x23\x81\xea\xa3\x5b\x0d\xf1\x33\xc7\x61\xaa\x16\x1a\xf0\x55\x8f\x74\x74\xdc\x4d\x7a\xf9\x2f\x52\xab\x94\x73\xff\x00\x28\x41\xb1\x77\xaf\x3e\xc3\xe9\x51\x3b\xb6\xd4\x4f\x81\x8b\xc4\x41\x76\x87\x70\x76\x82\xa0\x23\xe6\x94\x58\x6a\x7b\xe2\xcb\xdb\x68\x71\x03\x99\xf3\x8d\x40\xcd\xb9\xae\x51\x33\x85\x47\xa1\x70\x79\x96\x63\xc9\xcb\x86\x9e\xd3\xf4\xac\xfb\x48\x6f\x9d\x19\xde\xe7\x5e\xe2\x74\x00\x64\xfb\x5a\x89\x8b\x0c\x62\x86\xe4\x74\xf0\xe5\x8f\xc3\x1e\x07\x01\x99\xd1\x29\xec\x86\x8c\x96\x2f\x8a\x72\xee\xa3\xe3\x3e\xdc\x41\x0c\xc2\xdf\x5c\x9d\x4c\x8b\xa2\xa0\xbb\x76\xd4\x4d\x30\xaa\x05\x92\x45\x8e\x5f\x24\x7d\x42\xc5\x7f\x3a\x55\xab\x74\x7a\xf6\xd5\x47\x5b\x4e\x38\xe2\xb8\xd6\xec\xdf\x85\xd4\x1a\xad\xfe\x27\xa8\x55\x00\x86\xe1\x4f\xd0\x83\xc7\x91\x73\x4b\xab\xba\xfc\x73\x05\x0d\x9b\x25\x57\x71\x1e\xf6\x60\x50\xc0\x7f\x11\x78\xe3\x89\xf1\x30\x8a\xd3\x3c\x1d\x0f\x19\xaf\x26\xb2\xa8\x2d\x67\x76\x74\x4a\xc7\x88\x61\x5a\x25\xc8\x24\x2e\xe0\x68\x6f\x07\x16\xe4\xb5\x62\x95\x66\x60\x95\xa6\xc9\x2c\xad\x17\x51\x43\x6e\x39\x21\x0d\x9c\x57\x8e\x7d\xe9\x7b\xe9\xd3\xcd\x27\x1a\xff\xf5\xbd\xd5\x25\xc0\x19\x1f\xe2\x9e\xf2\x1b\x37\x01\x0c\x33\xdb\x8b\xfc\x7e\x06\xa0\xe0\xb4\x52\x06\x3d\xad\xc6\x63\x43\x71\x78\xc4\xa0\x03\x0e\x3f\xfc\xfa\xa1\xed\x82\x30\x36\x65\x0f\x63\x6b\x01\x52\xd2\xcf\x17\x84\xa5\xc8\x46\x75\xa3\x5e\x0e\x74\x34\xcb\xb7\x61\x29\xc9\x11\xad\x93\x4f\x25\xb4\xc9\x29\x2f\x96\xf2\xd3\x1d\x25\x48\xb5\x49\xe7\xa4\x04\x6e\x8f\x57\xbd\x37\x75\xc3\x0e\x2c\xb4\x43\x93\xe7\xb6\x28\x20\xa3\xc3\x79\x4a\xe0\x8b\xa4\xd3\x4a\xbe\x7d\x68\xba\xa2\x2c\xe2\xf8\x95\x9e\x6b\xe9\xec\x4f\xe3\x34\x34\x85\xa8\x25\x23\x07\x7b\x72\x5d\xb1\x3b\x9e\xe9\xa8\xfa\xe4\xbc\xcb\x0f\x86\x36\x92\xd6\x24\x56\xf5\xfb\x74\x93\xf9\x75\x43\x6b\xb2\x9d\x30\x03\x90\x93\x80\x9a\x9f\xda\x94\x0f\xea\xd2\xe2\xa7\xdb\x61\x16\x15\x36\x8b\x0c\xbe\xc5\xe9\xb9\xb9\x27\xbe\xd9\xd8\x6d\x1e\x67\xe9\x17\x6c\xb8\xcd\x95\xe8\x5b\x93\x56\xdd\xbd\x6d\x9e\x63\xea\x46\x93\x48\xfe\xa7\xdb\x5f\x2c\x4d\x56\x1d\xe6\xba\xd7\xe0\xef\xf8\xa6\x2a\x0a\x46\xa6\x28\x86\x76\x55\x5b\xe2\x00\x78\xc2\xaf\xd7\x7d\x49\x38\x0a\x0d\x1d\xfa\x0e\x06\xea\x00\x6d\x48\x9b\x10\x31\xcf\x06\x2d\xe5\xf5\xb5\xcf\xf3\x85\x7a\x06\x0d\x64\x56\x23\xd5\xc3\xc3\x8f\x55\x8a\x9f\x45\xf9\x72\xbe\x4b\x15\x18\xdf\x9a\xa8\xb6\xfb\x5b\x81\x6a\xa0\x7f\x47\x09\xd1\x61\xec\x24\x86\xa2\xbe\x39\xfd\x56\xa3\x9e\x75\xe9\x74\x5b\x80\xff\xfe\x09\x5d\x0c\xbf\xae\xc5\x41\x93\x25\xbb\xaa\xf5\xed\x46\x96\xfe\x64\x62\x8c\x30\xbf\x51\xe4\xbf\x0f\x95\x6c\xc5\xe5\x40\x0b\x9a\xca\xa2\xed\x45\x79\x2e\xf6\xc2\xd2\xb7\x6d\x39\xa9\x81\x93\x9a\x02\x33\x6d\xea\x76\x64\x6e\xb1\x6d\xcd\x40\x38\x5b\xe2\x63\xe4\x0f\xf2\xbb\xc8\x56\x81\x69\x3d\x53\x33\x23\xe8\xda\x84\x78\xa9\xfe\x14\xe5\x20\xc7\x6f\x1c\xac\x83\xd4\x2b\x12\xaf\x59\xce\x38\xf9\xc0\x93\x6b\x8e\x36\xb5\x16\x00\x30\xb4\xbd\xc8\x14\xf8\x12\xa7\x4d\xe9\xa5\x92\x2e\x4e\xad\xfb\x5f\x21\x3f\x8b\x3c\x87\x39\x13\x52\x2f\xe5\x34\xe8\xde\x4c\x49\xf2\x39\x0a\x5b\x56\x65\x4b\x92\xf1\xba\xef\xf4\xed\x82\x8b\xb5\x87\x1a\x2e\xe7\x9f\xa8\xfe\x21\x06\x04\xd7\x94\x78\xca\x49\xe4\x11\x2c\xf3\x81\x07\xcc\x82\x08\x41\xeb\xb9\xe7\xbc\xfe\x47\x15\x19\xb1\x05\xff\x26\x50\x64\x9e\x0b\x08\xa6\x38\x32\x76\xe8\x1e\xd4\x56\xcd\xb5\xbe\xa6\xe0\x41\xbf\x93\x7b\x70\x54\x8f\xb9\xc1\x7d\x75\x54\x38\x13\xee\x2a\x5d\x61\x2f\x54\x6a\x35\x8a\x6b\x7f\xb5\x3c\x71\x82\xde\xa0\xc5\x06\x40\x98\x36\xa1\x18\xdb\x6c\x14\x15\x54\x53\x3a\x0c\xf0\xb7\xe8\xf7\xf0\x6b\x17\x16\xab\x58\x9a\x11\x0c\x90\xe5\x5e\x02\x3f\x40\x3d\x3f\x51\x30\xa9\x41\x66\x46\x23\x77\x9c\xb1\xaf\x90\xf2\xbc\xf9\x78\xaa\x67\x39\x7f\xb8\x1d\xad\x08\x69\x17\x89\x1a\xe7\x2a\xfc\xe6\x21\x7a\xb8\x71\x19\x16\x34\x08\x59\xf2\x0e\xd9\xbe\x4d\xb6\xe9\xba\xcb\x61\x6c\x8d\xf8\xed\xe3\x66\x5e\xd7\xdd\xcd\xeb\x53\x1a\x40\x9f\x69\xa7\x65\x41\x39\x03\xca\xb7\x0d\x55\xca\x6d\x28\xfc\x98\x49\x6c\xd8\x83\x5c\xbb\xb7\x76\x7b\x50\xa3\xea\x7b\x9d\x5b\xd3\x5b\x89\x72\x1e\xe0\xbf\xec\xf3\x08\xef\x0a\xf9\xaf\x35\x92\xf3\x92\x6e\x9e\x84\x69\x92\x8e\xd6\x9e\x56\x66\x29\xc7\xc8\x57\x19\x49\xf2\xbb\x0a\xc0\xb4\x4f\xf9\xca\xdd\xd3\x9a\xa5\x2d\x38\x4b\x29\xc9\x4d\x29\x04\x8a\x89\x97\xe7\x61\x58\x13\xc7\x07\x44\x54\x44\x11\x96\x63\x44\xeb\xfb\x16\x9e\x8e\x8b\x69\x4e\x49\x9a\xd1\x21\xbc\xe2\x03\xef\xc9\xf5\x37\x94\x39\xe3\xa3\xfe\x08\xc8\x6a\xfe\x29\x4d\x15\x67\x3f\x5e\x73\x0b\xc8\x69\x08\x39\x51\xf6\xbb\x6e\x4d\xf6\xec\xb8\x78\x1e\xf7\xde\xd9\xe5\x7a\xd0\x1a\x29\x0b\x3a\x91\x9f\xde\x40\x9b\x95\x03\x8c\x25\x02\x9d\x35\x7b\xc9\xc2\xee\x41\x9c\x01\x96\xe5\x8a\x22\xe1\xf1\xed\xc1\xd1\xf6\xa7\x4a\xb0\xfd\xbe\x12\x7d\xbe\x3f\x51\xf5\x24\xd7\x7d\x0c\xe8\xd5\x04\xd8\x07\x53\xe7\xf3\xd2\x5c\xdb\x64\x99\xcd\xdd\x3c\x59\x10\xd0\x8a\xc6\x70\x61\xb2\xd7\x2d\xa8\xf4\xf9\x96\xb2\x24\x60\x30\x8f\xd4\xf4\x7e\x91\x16\x69\x51\x25\x1b\x44\x17\x14\x6a\xf0\x55\x3a\x93\xf8\x75\xf0\xb8\xd6\xfd\x7d\xbe\xe5\x3b\xf5\x3c\x93\x90\xc9\x45\x83\x90\x49\x91\x99\x15\x0b\xd8\x21\x6e\xd7\x2d\xa5\xc8\x75\xcb\xe5\xb8\xbd\x08\x22\x89\xfc\x4c\x91\x06\x5e\x53\x2a\x92\xd7\x26\xcf\xe8\x9a\x95\x1d\x8c\x66\x3c\xa0\xe9\xa8\xd2\xe7\x86\x5e\x89\x38\x44\x4c\x1f\x82\x0b\xed\xae\x8d\xd3\x55\x6a\x88\x22\xfc\x41\x99\x86\x75\x1e\x28\x1f\x90\xc7\x53\x7d\xaa\x38\x74\x48\x5b\x9d\x9a\x55\x2b\xee\xbc\x71\x4c\x2e\xcf\xc2\xb8\x32\x91\x9c\x39\x8d\x7b\xec\x7f\x21\x19\x94\x5f\xf4\x27\xb0\x12\x70\x8c\xff\x4c\xc1\xf2\xd3\xb2\x88\xa1\xe4\xad\x31\x1c\x1e\x35\xeb\x8b\xe5\xdc\x16\x5d\x13\x2e\xe3\x1b\x9c\x46\x8e\x1b\xbb\x42\x4d\x08\xfd\xa6\x8b\x4d\xc8\xe1\xd8\xac\xc2\x00\x12\x21\xe1\xa8\x62\x0b\x1f\x75\xa8\x97\xb1\x19\xdb\x8c\xcc\x9f\x66\x7c\xc3\x0b\xd2\xa8\x28\x2d\x58\x66\x00\x45\xf0\x97\xa6\x7a\xb5\x4b\x73\xed\x28\x21\x74\xec\x8c\x77\xab\xda\xd2\x43\xdc\xab\x8a\x7a\x7b\x42\x89\xa2\xe7\x51\x62\x8a\xcc\xb4\x28\x6a\xe0\xda\x6f\x2b\x45\xba\xdb\x0e\xb6\x37\x4e\xb3\xa2\x1c\x18\x21\x4f\xcb\x66\xa8\x59\x7d\x29\x18\x56\x5a\x46\xac\x76\x8c\x54\xff\x5c\xa0\xad\xa5\x99\x64\xcb\xff\x49\x79\x5c\xb1\xfd\x2b\x4f\x4e\x9b\x9c\x2c\xfa\xb1\xa9\xce\x36\x19\x3f\xe0\xd0\x3e\xa3\xd5\x46\xcf\xa8\x7e\xd8\x6a\x75\xb4\x8a\x8b\x19\xbe\x82\x15\x17\xf8\x8d\x17\x92\xce\xac\xc9\xed\x8c\x3f\xe2\xc1\x7b\xe7\x61\x22\x3d\x65\x3e\x17\x9a\x9e\x72\xd8\x2f\x42\xfe\x16\x45\x95\x5e\x74\x88\xdc\x06\x10\x41\x66\x7b\x65\x28\xa5\x04\x02\xf9\x25\x65\xdd\x02\xcf\x06\x6c\x9e\xe9\x39\x34\xdd\x08\x92\xd6\xce\x64\xb4\x87\xc9\xf5\xb1\x89\x02\xf3\xdc\x50\xd4\xbd\x73\x2a\xe7\x48\xbb\x55\x19\x43\x40\x6a\xc7\xfa\x86\x59\x89\x38\x74\x37\x90\x18\x56\xd3\x2c\xb7\x10\xa4\x75\x73\xb8\xea\x14\x11\x1d\x6f\x5f\xa4\x9c\x43\xe7\x00\x19\x5c\x93\x26\xc6\x0b\xed\x7e\x9a\x99\x35\x4e\xf3\x65\x90\xa9\x47\x07\x5a\x43\x3c\x0c\xad\xed\x45\xc9\x00\xf6\x39\xb2\x1f\xea\x22\x62\xd5\x0d\x40\x10\xb9\xa3\x0d\xc0\x31\xe4\xe3\xd7\x8a\xe8\xf7\xab\xbf\xf6\x6b\xb3\x6a\xa0\xf2\x40\x39\xe8\x41\x9c\x03\x6d\xe6\xab\xd4\x54\x42\xa0\xba\xdd\x60\x6b\xff\xb2\x68\x03\xe0\xb4\x10\xcb\xef\x96\xd3\xab\x6d\x32\xc9\x7b\xb9\x5d\x45\x62\xdb\x6a\xfd\xe6\xef\xf0\x00\xf5\x7b\x8a\xde\xf2\x3d\x05\xf0\x1d\x5b\x42\x7f\xec\xd6\x0e\xf6\x57\xe9\xdf\x22\x09\x00\xeb\xd9\xa9\xbe\x57\xf7\x9c\x8b\x0c\x05\x39\xb8\xa7\x5d\x38\xae\x52\xa6\x20\x6d\xc4\x87\xe1\x8f\xa2\x64\xc5\xe6\x45\x9a\x01\xbb\x22\xa4\xfe\x96\xf3\xd4\x7a\xa0\x9c\x37\xa6\x0b\x06\xf9\x94\xcc\xae\x84\x29\x09\x34\x48\xcb\xdc\x57\x54\x3c\xb1\xc1\x86\xda\x52\x0f\xe6\xd7\x7f\xf5\xd7\xc1\xc0\xc4\x99\xf3\xce\xc4\xab\x3d\x61\x0a\xe1\x94\x04\xf7\xcf\x3b\x11\xc3\xed\xd7\x71\xf8\xc5\x76\x3a\xa6\x78\x95\x30\xab\xd2\x5d\xf4\xcf\x55\x29\xf6\x73\x45\x33\x1d\xa7\x71\x54\x44\x21\x4a\x6d\x1e\x17\xd2\xdd\x95\xd1\xa1\x6f\x68\xf5\xa3\x24\x89\xf2\x21\x7e\x26\x46\x1b\xef\xab\xa9\x15\x6f\x7c\xa7\xd6\xf1\xb9\x97\x98\x41\x36\x8d\x3e\x25\x6b\x4a\x2b\x87\x90\x56\x2c\x14\xc5\x52\x1d\xc8\x06\x83\x18\x03\x75\xf9\x68\x85\xf6\x7b\xa0\x95\xb5\xce\x29\xef\x9a\x0f\x5c\xa6\x16\xad\xd8\x2c\x51\xf9\xfd\x39\x9d\xdf\x9f\x0b\xb4\xa0\x4c\xb2\xf6\xf0\xd1\x92\x0f\xf1\x51\x9e\x97\xf6\x09\x8a\x36\xce\x50\xc4\x4d\xcb\xb9\xcd\x83\x73\xf1\x1a\xad\x59\x1c\x12\x3f\xc7\x2f\xc5\x2d\x79\xc0\xbb\x98\x05\x31\x03\xdf\x7a\x7f\x47\x0b\xb8\xdd\xa7\x9e\x31\x56\xf0\xdb\x88\x2d\x58\x39\xd7\x10\x81\xf8\x0d\x65\x15\x98\x09\xfd\x2d\xce\x7d\xa7\x83\xef\x25\x15\x6f\x4e\xd3\x75\x5f\x3c\x84\xd2\x38\x4a\xb3\x96\x3a\xe5\x4f\x29\xcd\xc0\x53\xaa\x8a\x88\x7a\x96\x31\x35\x0b\x4a\xf1\xf8\x80\x7b\xdd\x54\x5c\x0d\xad\x59\x01\xcd\x43\x88\x69\xf4\xc3\x35\xe4\x92\xe5\x3c\x6a\x99\x70\x9a\xd9\x67\xe8\x06\xa3\x97\x7c\x1d\xc9\xaf\x60\x82\xe9\x23\xb0\x3e\xa1\xb9\x80\x2b\x64\xa5\x1b\xcc\x53\xcf\x4c\xbc\xf4\xe3\x1e\x6a\x07\xa3\x4a\x7d\x42\x0d\xd6\x76\x40\x21\x42\x70\x4c\xd5\xa5\xe0\xc7\xfc\x68\xa2\x80\xc4\x8f\x75\xb4\x95\xf6\xef\xd1\x23\x71\xe7\xc0\xe2\xfc\x61\x17\x98\xab\x67\x2d\x8f\xc7\x17\x70\x27\x02\xd5\x32\xbb\xab\x75\x1e\xce\x4c\x94\xc3\xdd\x4f\x1f\x62\xae\x55\x45\xd9\xd0\x2a\x46\x11\xd7\x19\xa2\x60\xfe\x94\xe3\xf6\x65\xb6\x80\xe7\x8a\x52\x95\x56\xd8\x93\x4d\xdf\xf5\x35\x59\x2f\x4a\x4c\x9c\xcf\x68\x0e\x2f\x03\xd7\x45\x83\x45\x89\x33\x5d\x7f\x08\xf6\x36\xcd\x3c\x56\x63\x83\xb0\x1a\x1b\x4e\xe7\xba\x1b\x55\xc5\xf8\x78\x08\x66\x90\x93\x7f\xdf\x9c\xd4\x9c\x91\xf6\x29\x42\xe3\xf3\x7b\xf1\x6b\x70\xf0\x3f\x46\x6e\xdf\x02\xaf\xa7\x0d\xaf\x34\x5a\xc4\xe2\xf4\x91\x75\x1d\xd5\x7d\x66\x8e\x63\x0d\xa3\x87\x4b\xa8\x73\xdd\x96\x76\xea\xa3\xff\x80\x00\xf2\x78\x92\x37\x03\x4f\xf6\xb8\xf4\x8f\x3a\xbe\x82\xe9\xd9\x30\x06\x8b\xde\x6b\x4a\x62\xa5\x08\x80\xe6\xef\xa9\x09\x22\x1f\x8a\xc4\x07\xd9\xbd\xad\x63\xf4\x92\xb7\x29\x55\x51\xe1\x32\xfd\x52\x20\x2e\x91\xa9\xf2\xeb\xc0\xf3\xd5\xbe\x1a\x28\xb8\xc2\x71\x45\x87\xea\xa7\x69\x21\x49\x10\x0f\x99\x10\x17\x70\x86\xe0\xdc\x40\x66\xf2\xa1\x42\x75\x99\x38\xed\x33\xa0\xd5\x65\x11\x4b\x73\x4e\x89\xb4\xc1\xe0\xd3\x8c\x6c\x16\x85\x26\xc1\xb9\x88\x10\x36\xbb\xee\x29\xd3\xfb\x88\x20\xa6\xa4\x9f\x30\xee\xb5\xe1\x32\x2f\x47\x57\x95\x3b\x4b\xa7\xba\xe2\x57\x5c\x08\xef\x1c\xbb\x6c\x06\xfd\x71\x7e\x53\xb3\x55\x4f\x8b\x42\xc9\xf9\x1f\xd7\x0b\x4a\xdf\x9b\x30\x4d\x72\x61\x06\x73\x47\x8d\x36\x83\x74\xd7\x9a\x72\x33\xb2\x9d\x44\x3b\xca\x19\x71\xe8\x96\x98\x8e\x50\xb1\x49\x9e\xa4\x7b\x8d\x6c\xe0\x67\xd4\xe4\x52\x1a\xb9\x22\xd2\xc6\x52\x55\xa8\x99\x74\x7b\xfa\x13\x18\xa3\xa1\x30\xf9\x57\x58\xa4\x48\xc4\x6e\x52\x3c\x47\x8f\x62\x23\x50\xbe\x14\xb3\xeb\x14\x3d\x24\x60\xe0\x86\xf1\x27\x4f\x6a\x38\xbf\x2a\xac\x61\xec\x70\x14\xbd\x43\x56\xdb\x0c\xd4\x4e\x9a\x99\x62\x47\x2f\x2c\xb4\x6d\x32\x30\x03\x21\xb1\x3a\x7d\xd3\x05\x2f\x64\xdc\xd0\x39\xb0\x5f\x2c\xa3\xf1\x58\x3a\x07\x8e\x66\xeb\x29\xb7\xbe\xa4\x4c\xc7\x99\x49\xd2\x56\x8d\xa6\xe1\x69\x78\xef\x4f\xad\xbd\x2a\x51\x28\x08\x8a\x03\xf5\x79\xb4\x1d\xc1\x2f\x64\xf0\x7a\xa0\x20\x30\x17\x02\x75\x2a\x3f\xb6\xde\x60\x7e\x90\x45\x0e\xbf\x25\xfd\x35\xfa\x7b\xdf\x60\x73\x02\xb1\x76\x5c\xd8\x51\xd7\x66\xc4\x2a\x96\x11\x3d\xdd\x17\x04\x96\x19\x25\x9a\xb7\x15\x78\x40\xec\xa6\x1e\x89\xd2\xda\x75\x1a\xa1\x61\xc1\x96\x58\x78\x02\xc7\x70\xd6\xf3\x1b\x77\x97\x8a\x32\x5b\x8e\x78\x84\x2f\x66\x7d\x4a\xb0\xe1\x64\xed\xa4\x5c\xb1\xbd\x67\x3d\xe3\xeb\x4b\x81\x62\xa9\xaa\xe6\x5a\xa1\x3d\xc4\x1f\x4c\x5a\x2f\x2d\xfa\x52\x7b\xfe\xb0\x13\xf4\xa8\x2e\x42\x0c\x41\xd4\xf0\xf8\x51\x22\xc3\xe0\xc0\xbd\x4b\xe7\x9f\x53\x87\x58\x5c\x5a\xac\x79\x6c\x21\x7a\x5f\x0a\x54\x63\xec\x2a\xf5\x0b\x11\x98\xaf\x63\x69\x02\x51\x73\x9d\x57\x30\x5a\x61\xb7\x71\xac\xf3\x7f\xc2\x39\x29\x05\x9c\x82\xc0\xdf\x98\x60\xf2\x2e\x66\x5e\x8d\x43\xae\x38\x4d\x06\x45\x34\xd2\x73\xc7\x5b\x81\x3f\xf7\x6f\xa9\x2a\x8b\xb9\x20\x69\x92\x3f\x5e\x5d\xbd\xc3\x48\x2d\x49\xb3\x99\xd1\xf8\x68\x9a\x9e\xd6\xab\x0d\xd3\x1d\x11\x2a\xa9\xbe\x8a\x65\x42\xb0\x00\xf0\xb4\xee\xd2\x13\x41\x3a\xb8\x15\x78\xa4\x38\x37\x68\xf8\x63\x71\xb7\x85\xe9\xe8\x1b\x25\x57\xb0\x42\x84\x1b\xd9\x94\x22\x54\xc7\xec\xd8\x91\x38\x85\x15\x4a\xbf\x59\xf8\xa2\xdb\xcb\x04\xf6\x0c\x1a\x45\x79\x1e\xa5\x89\xd0\x67\x44\x96\xd1\xd3\x46\x4f\x06\xcf\xea\x19\x75\x3a\x1a\x59\xb2\xb4\xaa\x2e\x1b\x47\xcc\x8e\x8e\xb2\xef\xdb\xb1\xee\xcb\x0a\xbb\x62\xb3\xb5\x34\xb1\x3b\x5b\x4e\xa0\x17\xb7\x0b\xc7\xe6\x55\x04\x22\xa4\xbc\x47\xe9\x6e\x8b\x68\xb0\xcf\xb9\x4f\xab\xda\x23\x8e\x92\x30\x8d\x13\x86\x69\xa3\xcd\xf3\x03\x3c\x19\x91\xe0\xf7\x5c\xd1\x56\x47\x1d\x98\xa7\x1b\x9c\x53\x96\xaa\x74\xc9\x44\x83\x61\x41\x65\x1a\x12\x20\xec\x67\xfc\x3e\xa8\x48\xe0\xa0\xfb\x69\x43\x9b\x78\xb1\x8d\x3b\x41\x0f\x1a\xfd\x07\xb6\x73\xe2\x37\xae\xa1\xd7\xcd\x4c\x52\xa5\x65\x68\xbd\x8b\xd6\x81\xca\x61\x30\xd8\xc4\x1e\x78\xd0\xf0\x84\x0f\xb5\xf3\xb2\xd7\xb3\x09\x8f\x91\xb0\x8f\x60\xce\xc8\xaf\x9b\x30\x00\x36\xb6\x61\x91\x31\x4e\x81\x35\x82\x02\xbf\xae\x36\x1a\x75\xce\xc3\xa1\x35\x63\x11\xa2\x64\x78\x4c\xe0\x6b\xd7\xef\x20\xb9\x40\xad\x75\xcd\x7b\x03\x9b\x3c\xb7\xc9\xc0\x66\xb3\x1e\x54\xf7\x4c\xc7\x03\x30\x66\xd7\x3d\x25\x8e\xf3\x3f\x0e\x06\xda\x04\x30\x1b\xe5\x33\xfe\xac\xfe\xb6\xe2\x67\x7c\xa8\x85\x8e\x4e\xa8\x92\xf9\x3f\xfe\x6c\x4e\x5f\x49\x0b\xe7\xf1\x67\xd6\x7d\xf7\x17\x02\x59\x68\xd9\xef\x22\x18\xf2\xd6\x27\x1a\x28\x90\x2f\xb4\xfb\xd6\xf0\xea\xc7\xef\x3e\xad\x58\xe8\xa7\x5d\x87\x6c\x54\x66\xe3\x21\x0f\xae\x1d\x46\xe2\x73\x2f\x39\x8c\x44\xcd\xe6\x99\x58\x59\xe0\x49\x8b\x84\xaf\xe7\xc0\xdd\x72\xcd\xdb\x41\xba\xf2\x3c\x30\xaf\x5a\x92\xbe\x56\xa1\x22\x68\xdc\x6b\xe8\xa4\xbc\xd0\x36\xdd\x74\x05\x6c\x65\x4d\xa0\x10\xd8\x51\x15\x66\x44\x03\xd1\x89\x7f\x24\x66\xc0\xed\x62\xa8\xa3\xdc\xa2\x34\x54\x98\x5d\xbe\xe4\xff\x78\x6a\xbd\x2f\x2e\x2d\xb6\xfb\x69\x99\xb0\x46\x97\x40\x3e\x69\xbd\x0b\x16\x54\x67\xa5\x21\x14\xc6\xab\x55\x04\x74\x00\x2b\xb9\xf1\x9b\x89\x34\x7f\x63\x13\x2e\x83\x13\xbd\xd3\xa3\x42\xf7\xad\xd3\xbf\x05\x79\xfa\xc1\xc4\x35\x99\x17\xff\x01\x51\x89\x95\xf4\xf4\x92\x63\x5b\xfb\x79\x55\x3f\x4a\xd0\x31\xab\x3e\x03\xeb\x07\x38\x00\xdc\xe5\xaf\xd3\xb3\x40\x5c\xbc\xa2\xac\x4b\x8f\xa2\xb8\x96\x86\x5c\x83\x02\x6e\xda\x4d\xa5\xf4\x45\x02\x7b\x59\x25\xb3\x97\x1f\xda\x51\x1a\xdb\x2c\x1f\x9a\x0c\xe3\x04\xd9\x7b\xf4\x74\xb5\x6d\x1d\xb2\x8f\x4b\xaa\x2d\x63\xf2\xdc\x94\xb1\xd8\xfb\xf2\x4e\xda\x50\x1e\xdb\x1b\x4d\xd5\x76\x38\x8c\x62\xe4\xaf\x20\x46\x63\x32\xce\xaf\x1b\x9d\x7d\xa2\xd4\xc3\x7f\x9c\xde\xbe\xab\x35\x37\x03\x2f\x8d\x16\x3e\xdf\x52\x39\xf9\x46\xa0\x47\x53\x35\xf1\xde\x22\x7f\xc6\x4f\x78\x76\xac\x13\x22\x0d\x87\xe4\xdf\x6a\x40\xdb\x99\x49\x6b\xff\xfc\xd6\x25\x2d\x95\x74\x97\x4e\x08\xdc\xa5\xa7\x28\x02\xa3\xe2\x67\x46\x39\x43\x39\xf0\xa8\x80\xb7\xe2\x7a\x07\x43\xc3\x9d\x2a\xe8\xec\x03\xf9\x00\x7f\x2f\xc2\xa1\xee\xfe\xfb\x56\xee\x69\x24\x1a\x28\xfb\x79\x6e\x80\xed\x31\xd3\x51\xea\xca\xc8\x2b\xb1\x57\xf6\x74\x7c\xaa\xbd\xd9\xa4\x59\x95\x99\x02\xcf\x1b\x49\xa3\xee\xbc\x9d\xd4\x76\x04\x97\x95\x5b\xcd\xaa\xc9\xf6\x78\x8c\xea\x97\x69\x07\x23\x96\x9d\x40\xca\x01\x58\xd4\x19\x4e\x99\xf8\x9d\x1a\xf7\x7e\x39\x50\xd4\xcf\xf3\x81\x42\xa7\x9c\xc7\x25\xf2\xa7\x35\x9e\x86\x45\x99\x25\xe9\x0a\xeb\xd2\x39\xde\xcd\x01\xf7\x7a\xda\xde\xa6\xca\xb2\xfa\x51\x62\xa4\x37\x81\xe4\xec\x94\x02\x0a\x9f\x9a\xd4\x5c\x47\x42\x9b\x15\x80\x86\x20\x30\xc1\x64\xc2\x11\x9b\xab\x47\x2a\x12\x25\x4f\xb9\xa3\x93\xf5\x1b\x67\xab\x7c\xd5\xa9\xf9\x7b\xd1\x5a\x44\x6b\x14\xd2\xd0\x28\x91\x00\xa8\xe6\x5d\xe3\x71\x9a\x48\x21\x28\x37\x51\xdf\x51\xe5\x71\x9f\x15\x99\x59\x33\x31\x82\xa4\x10\x5e\xfc\x32\x64\x2a\x82\x98\xf6\x2a\xa6\xdf\x78\x9c\x55\xe1\x18\xcf\x06\x2b\xf3\x5d\x9c\xf1\xe8\xc0\xbf\xad\x44\x93\xce\x4e\x8d\x05\x24\x56\x14\xab\x33\x7e\x52\x0d\xa5\x3e\xe1\xd5\x28\x34\xf9\x0d\xe7\x79\xf6\x05\x13\x2e\xe7\x69\xb2\x12\xc5\xb1\x7c\xb7\x28\x46\x6b\xcc\x2c\xfd\x2d\x4a\x93\xeb\x9e\xf5\x66\xb3\x2c\x42\xd3\x57\x14\xa9\x3c\x5a\xf0\x9c\x92\x15\x18\xda\x04\x00\xec\x97\x9d\x6e\x8a\x02\xa3\xdc\x6d\x72\x3b\x61\x9d\x68\x70\x00\xb6\xa8\x7f\xbe\xf5\x3a\xf5\xad\x11\x13\xfe\xf7\xc0\x73\xc2\x1e\xc1\x3e\x45\x11\xbd\x17\x79\x1b\xe5\x45\x9f\x79\x7a\x4a\x67\xe9\xc8\xdc\x62\x3b\xca\x32\x1b\xdb\x15\x23\x93\x07\x4c\x65\xf5\x84\xf6\xa8\x36\xf9\x88\x46\xe3\xd8\xce\xfa\x12\xe7\x0f\xe8\x98\xc4\x79\xf2\x34\x85\x0b\xd0\x6a\x34\x28\xfc\xf1\x75\xbf\x70\x8b\x32\xeb\x8a\x71\x2a\x4b\x6b\xd3\x7d\x12\x99\x6d\xd1\x32\x1c\x45\xb9\xeb\xfe\x70\x26\x8e\x52\x83\xbb\x6a\xfc\x46\x35\x61\x72\x6b\xb2\x7c\x97\x37\x5e\xc3\x2c\xd0\xf9\x81\x54\x41\x53\xd2\x0b\xda\x35\xe8\x5e\x72\xfd\xc4\x6f\x26\x2a\x7f\x38\xad\xd4\xb0\x56\x6c\xd2\x4b\x01\x98\x51\xf6\xea\x9e\xca\xe3\xaf\xcf\x91\x8d\x3c\x4f\x47\xf3\x77\x54\x83\xae\x30\xaf\x3e\xe1\xbb\xb5\xcc\x46\xc4\x52\xbf\xa7\x35\x9b\xc0\xdd\x11\xb1\x72\x8f\xd9\x79\x80\x10\x8a\x33\x9e\xed\xe3\x10\xb6\x67\x3a\x5a\xba\xff\xaa\xc6\x10\xff\x30\xf0\x2c\xd5\x33\x81\xb2\xac\xc2\x8c\x50\x9e\x1d\xdd\x20\x81\x8b\xd3\x95\x62\x29\xec\x58\xf7\x59\x49\x61\xc2\x22\x0a\x59\x55\x43\xd4\xc4\xaa\x0f\x41\x73\xe7\x7a\xa0\x3a\xcc\xa7\x26\x7f\x4f\xd5\x3d\x69\x36\x30\x49\xf4\x1a\x15\x89\xbb\xab\x1b\x85\x6f\x82\x38\x14\xaa\xfc\x2d\xe4\x37\x32\xee\x99\xf1\x26\xd9\x77\x69\xad\x23\x97\x7e\x62\xdd\xeb\x03\xd7\x84\xad\x2f\xd6\x0e\x50\x93\x0f\x1f\xa7\x1f\xe3\x24\x20\xaa\x47\x8e\x6e\xf7\xad\x89\x82\xae\xb3\x28\x35\x92\x96\x53\x35\x4d\x47\x45\xa0\x61\xf4\x0c\x66\x84\xdf\xa4\x4b\xc6\x13\xc1\x05\x30\x68\x11\xf5\x18\xca\xfa\xa3\x81\x37\xb7\x61\x1f\x69\xfe\x76\x4d\xa4\x3b\xa5\xb2\x15\x3b\x1a\xc7\xe9\x1a\xb7\xce\xb8\x38\xa3\x0b\x97\x42\x6d\x7b\x42\xb5\x34\xd7\xee\xda\x61\x94\xf4\x66\x7d\x7d\xf2\x0e\xad\x1c\x2c\x29\xa8\x5b\xb8\x9a\xc1\xf7\x95\x2e\xaa\xb0\x9b\x99\x71\xd4\x8b\xd7\xa8\x06\xc0\x7a\xf9\x20\xf0\xb6\x25\x4c\x96\x94\xd3\x8c\x6e\x15\xff\x2b\x75\x32\xf5\xd2\xb0\x48\x33\x82\x76\x8a\x19\x1f\x4a\x1e\x87\xa1\xf1\xde\xd3\x0c\xa3\x73\x71\xc0\x71\xe0\x19\x9f\xc1\x0d\x12\x25\x59\x5a\x94\xe2\x14\x8e\x73\xe0\x11\x94\xcb\x18\xad\xfc\x2d\x8d\x2e\x1c\xe3\x6d\x41\x96\x0c\x45\x15\x2d\xab\x56\x95\x9b\x07\x0f\x7e\x92\x7e\x22\x73\xd9\xf1\x4b\x78\xce\x49\xa1\x15\xf1\xf8\x32\x9e\x10\x32\x98\x2b\x58\x1f\x48\x61\x2e\x05\xad\xdf\x9a\x77\x32\xae\xd5\x4f\xc2\x6f\x07\x2c\x83\x21\xca\x64\xcc\x83\x33\xe7\x14\x22\x8d\xe0\x3b\xaa\x47\x83\xb5\xce\xf2\x98\x80\xc8\xee\xa6\x18\x8a\xbc\x68\x2f\xba\x93\x38\xc5\xcf\x53\xa0\x45\x73\xb3\x85\x8c\x9e\x3f\x2a\xd0\x27\xd5\x79\x1c\x26\xce\xeb\xd6\x0b\xb1\x7d\x6d\xa2\xa6\xd9\x97\x89\xd2\x0e\x99\xc3\x1f\x28\x35\xf2\x51\x99\x99\xdc\xac\xc2\x88\x0a\x95\x08\x33\x7c\xf9\x4d\xe0\x2b\xcc\x41\x19\xf7\x41\x56\x85\x04\x00\xf3\x05\xf9\x0d\x3d\x4d\x7c\x01\xe7\xe7\xfc\x66\x6a\x2c\x73\x60\xa1\x1d\x93\xb1\xed\x80\xd5\x17\xf1\x48\xf6\x76\xf4\xa8\x65\xc6\x1b\xc2\xcf\x4c\x09\xa0\x7d\xa6\x9d\x17\xa6\x4c\xc2\x61\xbc\x86\x0a\x10\xa9\xc6\x77\x75\x1b\x24\xf0\x35\xcb\x71\x25\x4e\x36\x8e\x4d\x68\x7b\x98\xc0\xb2\x25\x66\xa0\x3a\xc7\x9b\xaa\x75\xb4\x85\x45\x09\xe0\xd1\x7d\x25\xe7\xc3\xf2\xc5\x70\x8a\x7e\x61\x8b\x70\xfc\x5b\x67\xb6\x2f\xba\xea\xb0\x5d\x58\x78\xc2\xb7\x19\x5a\xeb\xbe\xae\xd8\xc2\x32\xc3\xe0\xeb\x27\x81\x62\xa6\xdf\xd1\x1a\x4d\xef\x07\x6a\x9a\xfa\x36\x7e\x28\x5a\x09\x94\xad\x6d\x6d\x50\xf3\x51\x78\x7e\x6a\xde\xf7\xc3\xc0\x27\x02\x7f\x08\x19\x6c\x9c\x15\x57\x10\x0c\xfd\x7f\x70\x5e\x70\x81\x07\x71\xb1\x55\x64\x9a\xf6\x66\x6a\x3e\xda\xd5\xbf\xc6\xd7\xdf\x0a\x54\x8b\x63\x3a\x25\x3e\xfc\x62\xdb\xc9\xc7\xd1\xd1\xcf\x1e\x56\x4a\x44\xe8\xd8\x14\xce\xb8\xba\x61\xab\x26\xcf\xab\xaf\xb6\x11\x06\xce\x35\xc6\x86\x50\x39\x1a\x8c\x7c\xf3\x74\x64\x8b\x68\x24\xc3\x3b\xd7\x89\x5b\x9a\x73\x9d\xb8\xe9\xbe\xfb\x21\xc7\x42\xf3\xf3\x58\xcc\xb7\x44\x59\xdf\x21\x7c\xca\x28\xb1\x86\x16\x2b\x02\xf9\x3d\x34\x1f\x75\xe7\x01\x37\x7e\x97\xb3\x34\x4f\x46\x45\xd7\xb4\x94\x2a\x83\xb6\x69\xba\xa0\x3d\x0c\xe3\x68\xd4\xa5\x1a\xb2\xfa\xe9\xec\x97\x4c\x21\x54\xbc\x93\x15\x63\x39\x8e\xff\x3e\x7d\xb3\x68\xef\xfb\x2e\xdb\x59\x02\x0c\x48\xf0\x50\x9f\x75\x53\x61\xe8\xef\xc3\x71\x8a\xab\xc2\xc0\x0f\x6c\x3f\xa4\xe8\xe6\x8c\x65\xaa\xec\x49\x58\x34\xca\xe1\x6a\x17\xe4\xc0\x90\xa8\x5c\x99\x28\x9d\x7a\x38\x6f\x21\x6c\x1e\xa5\xb8\x8c\xaa\xe2\x0d\xc4\x27\xd4\xe7\x7f\xa1\x21\x89\x9b\x5a\x4d\xec\x5d\x2c\x5e\x81\x0b\x2a\xa1\x90\x6b\xd8\x0f\xe2\x1e\xe6\x05\xdd\xbf\x1e\x78\x07\x85\x7b\x35\x4c\xcf\x75\x8a\xe7\xa2\x03\xbd\xfd\xe4\x7c\x69\xfe\x70\x9b\x1a\xd6\x94\x65\x6e\x51\xf8\xde\x3a\x1a\xf8\x33\x27\x0f\x4d\xb6\x86\x40\x27\x52\xa8\xd5\x37\x71\x33\x54\xf9\xb5\x9e\xd6\x76\x4c\xd3\x0d\xc1\x03\x0b\xed\x6e\x5a\x14\xde\x14\x45\xcc\x42\x5b\x4e\x5f\xf7\x8c\x32\xe8\x7c\x53\xf9\x86\xf6\xd2\x10\x32\xf0\x2e\xd9\xae\x8e\x1f\x87\x16\xbc\xa4\xfa\xba\xd6\x64\x09\x8d\x30\x5d\x75\x76\x2b\x50\xe3\x93\x53\x48\x3f\x44\xa2\xa1\x89\xfe\x67\x46\x36\xe9\x39\x11\x60\xb1\xe6\x55\x0a\xe0\x9b\x4e\x95\xa6\x6b\xd6\x66\xb4\x10\xcd\x39\x35\x26\xbe\xa1\xa5\xcd\x3f\x56\x21\xb7\x67\xed\xd8\x66\x3b\xd5\xb2\x65\x04\x37\xda\x11\x3f\xc7\x32\xc2\x96\x3b\xad\x84\xe0\xb6\x70\xbe\x20\x8f\xb8\xdb\x04\x5c\xec\xa7\xd9\xaa\xc9\xb8\xa9\x86\xbc\xe7\x9b\xb4\xe7\xf9\x75\xf0\x49\x2f\x06\x9f\xa5\xa6\x17\x1a\x52\xfb\x23\xe6\x07\x0e\x9a\x47\x94\x0c\x0e\x08\xf6\x00\x56\xec\xa0\xd1\x36\xff\x1b\x48\x9b\xe3\xe4\xbf\x55\xeb\x1f\xac\xbb\x4e\x1c\xdb\x1b\x4b\xbc\x73\x5e\x49\x9e\x50\x75\x7e\xe2\x81\x20\x62\x42\x83\x16\x1f\x3b\xcf\x60\xa3\x89\x0d\x8d\x9b\x65\xd9\xa4\x9f\xc6\x70\x62\x43\xec\xb9\xa8\x9d\x85\x51\x5e\xe3\x87\x7e\x55\xf7\x51\x4d\x66\xfb\x65\x5c\x25\x77\x2e\x5f\x7d\x2f\x50\xce\xff\xef\xa8\x09\xcd\x7b\xd8\x8a\xfc\x1f\xb4\x64\xa5\x25\xb9\x45\x9f\x5a\x61\xc2\xce\xaf\x1f\xaa\x42\x95\xa7\x65\x31\xb4\x59\x42\xd5\xb8\x24\x0b\xd5\x1f\xba\x2d\xed\xa9\xea\xe4\x11\xed\x14\xf8\x8a\xa2\xe4\x7e\x48\xcd\x52\x45\xd2\x1b\xaf\x6b\xd3\x8b\x72\x33\x1e\xa7\x51\x52\xf0\x38\xc5\x41\xeb\x5d\x4a\x7e\xcc\xb5\x8a\x87\x65\x16\xb7\x94\x76\x20\xe7\x49\x72\xe4\xab\x1a\x07\x1e\x46\xbb\x54\x82\x86\xc4\x12\x67\x33\xc1\x5d\x14\x8d\xa4\x8a\x92\x42\x1d\xa9\x42\x0e\x7e\xe6\x71\x25\xeb\x78\x5c\x31\xdf\xb2\xb2\xfa\xec\x47\x69\x1f\x68\x6f\x51\x3c\xf1\x2d\x0a\xdf\xe2\x6e\x41\xb0\x18\x24\xec\xdf\x9c\x28\xf8\xcb\x6d\x0a\x45\x62\x5b\xd9\xf2\xff\x08\x57\xc4\x1f\x45\x01\x5f\x20\xd6\x4d\x5b\xbe\x9b\xd9\x55\xab\x58\x39\x6c\xc9\x11\xa8\x85\x7e\x62\xe2\x81\x31\x36\xe3\x74\xc7\x93\x76\xf0\xd3\x45\x00\x42\xce\x49\x13\x8f\xd2\xbc\x20\xc7\x4e\xa4\xe8\x4f\x76\xfc\x11\x73\x8a\xac\xfc\xd1\xb9\x3b\x3f\xf1\x8a\x49\xe7\xf4\x78\xc2\xc3\xce\xbb\xb0\x20\x94\x19\x91\xf8\x97\xd3\x75\x4a\xe6\xa6\xf4\xbc\x63\x6b\x32\x6a\xa6\xd1\x73\x76\x58\x41\xcf\x7b\xbf\xf8\x10\x99\x8a\x30\x1d\xf1\x1f\x31\x34\x92\x7e\x9a\xc0\x24\x7d\x04\x49\x57\x6c\xb6\x3a\xb4\xf1\x88\xf1\xa4\x87\x44\x11\x27\xf0\x98\xfb\xf7\x26\x4a\x9e\x02\x35\x24\xfe\xc3\x5b\x13\x3d\xa9\xbd\xe0\xa0\xd1\x85\x49\x06\x51\x37\x46\xd0\x40\x86\xf6\x17\xf4\x79\xfc\x5a\xb1\x47\xa3\xd1\x68\xa6\xa5\xac\x5d\xaa\x9b\x8c\x39\xfd\x59\x1d\xac\xb5\x6f\x41\x3e\xb4\x59\xb6\xf6\x70\xdb\xcb\x06\x8c\x74\x3e\xb6\x61\xd4\xe7\xb1\x17\xf2\x87\x9d\xeb\x3e\x17\xd9\xa9\x76\x6b\x62\xcb\x22\x33\xbc\xb1\xf0\x58\xdf\x52\x4c\x8f\x69\x8a\x1e\x49\x69\x0b\xe3\x80\x51\x9a\xaa\xba\x7f\xc7\x11\x91\xca\xc4\xac\x9a\xcc\x26\x44\x64\x77\xc5\x15\xb8\x74\xa2\xc7\xf1\xb8\xa3\x91\x84\x51\xcf\xee\xae\x6e\x35\x92\xda\x7d\x55\x26\xb2\xb5\xa1\xb4\xe2\x1f\x59\xaf\xb6\x96\xe3\xc5\x55\x4b\x82\x47\xcb\x48\x34\x70\x80\x3f\x46\xd3\x11\x6e\x66\x28\x95\xa9\x7e\x9a\x0d\xd2\xa2\xb0\x2c\xcf\xe0\xe4\x29\xaa\x8f\x11\x79\x8a\xed\x3d\xec\xaa\x3a\x2f\xd7\x72\x0a\x4c\x0e\x25\x51\xed\x7b\x41\x49\x4c\xeb\x7e\x2f\xcd\x3d\xae\xf4\x27\xee\x05\xde\xdf\x06\x7b\x05\x83\xad\x4b\x13\xa5\x2a\x31\xab\xc4\x35\xde\x52\x3a\x91\xc7\x26\xca\x25\xe9\x9e\x76\x49\x62\x56\x91\x43\xd2\x57\x51\xa6\xe6\x7d\xed\x82\xf5\xd2\x1c\x8f\x29\xef\x51\x92\x28\x13\x07\x17\x13\xd2\x98\x3c\xe2\x38\xdf\x16\xeb\x21\x55\xb5\x9d\x6f\x02\xba\x80\x1d\x22\xc8\x75\x4c\xb3\xde\x57\xe2\x1c\x0c\x53\x14\x7e\xc4\x27\xdd\x81\x39\xc8\x4c\xd2\x1b\x57\x6b\xa2\xc8\x67\xd5\xb8\xf1\x6d\x5c\x90\x2b\x50\x1c\x00\xf6\xbe\x06\x3b\xd7\xc6\x5b\x14\xe1\xeb\x7d\x7a\xa7\x22\xb5\xd9\x30\xd5\x6d\x9b\xb8\x9f\xd9\x3c\x4c\x5b\x3e\x6d\xc0\x0d\x12\x88\x60\x13\xe6\x26\x4c\xb3\x84\xbc\x1b\x9c\x6c\xf4\xc7\x4a\x6e\xfc\x63\x85\x9f\xb0\xaf\xda\xb0\x24\xfd\xe3\xc7\xfc\xb9\xf7\x11\x6e\x25\xe7\x1c\xd4\x3c\x60\xc8\x04\x2d\x06\xd6\x64\xe5\xa0\x82\xa8\xff\xb3\x40\x25\x99\x5c\xbb\x0a\x30\xc4\x5b\x28\xb3\xc2\x00\x82\xed\x7f\xad\x04\xe5\xdf\xad\xc9\x56\xc6\x86\x27\x9d\x12\x76\x75\x85\xa4\x4a\xcb\xad\xa0\x56\x5a\x27\x45\xfe\x58\xed\x90\x50\xa2\x05\x4f\xae\x03\x77\x82\x31\xca\x46\xa0\xc8\x06\x47\x01\x83\xe1\xff\x32\x51\x7d\xe9\x1b\xca\xfe\xea\xda\xc4\xcf\x46\xfe\xa9\x72\x8f\xda\x8d\xa2\x04\x19\x69\xab\xa3\xa9\xe6\xaf\x55\xd9\x61\x75\xc3\x10\x35\xc0\xb8\xe7\xd7\x0d\xb9\x70\x3b\x2f\xc7\xe3\x8c\x18\xab\x2d\x3f\x4c\xbe\xa8\xee\xd2\xc5\x89\x57\x06\x2b\xb2\x28\x14\x3e\x2c\xae\x77\x57\xc7\x1f\x8a\xbb\xd6\x3f\xa1\x7c\x9d\x56\xa2\x9c\xc2\x7c\x1d\xe0\xe5\xfa\xd5\xef\x6e\x6f\x1e\x1c\x58\x68\x1f\x3c\x78\x68\x37\x6d\x50\x24\xb3\x97\x54\x02\xf5\x23\x8a\x0e\xfc\xff\x07\x35\xea\x18\xdd\x55\x2d\x87\x02\x9a\xc2\x49\x45\xb2\x3f\xe6\x48\xf6\x44\x37\x8e\xd7\x88\xb9\x82\x4f\xbb\xa8\x3a\x02\xe0\xc5\x21\x3c\x9c\x9f\x3c\xeb\x6e\x2b\x54\xb3\x49\x92\x64\xa7\xcf\x4a\x2f\xd1\x22\xe5\xd7\x2a\xaa\xdf\xd1\x00\x9c\xeb\x78\xb6\x88\x2c\x3f\x53\x56\xa4\x43\x93\xf5\x76\xf9\x11\xcf\x65\xfc\x91\x5b\xf2\x4e\xb6\xf2\xab\x74\xe5\x2e\x8b\xab\x96\x9a\xd8\x6e\x57\x17\xc1\x8b\x7f\x2a\x1e\xbf\xf2\x4a\xdb\x14\xbf\x5c\x3c\x9c\x1d\xf7\x94\xc2\xdd\x44\x3d\x92\xaa\xf5\xba\x08\xa0\x65\xa0\x13\x0b\x46\xa1\x98\xaa\x78\xbd\x99\xbb\x41\x4d\x46\x75\xda\xce\x44\x89\x59\x2e\xf2\x83\xd0\x2e\x72\xad\x75\xaf\xd8\xfa\x97\x4d\x92\x9e\x79\x61\x06\x03\x50\x76\xe8\x19\x0b\x74\xc5\x23\x54\xaf\x29\xa7\xe5\xb3\xf5\x89\x72\x6e\x76\xf9\xf6\x1c\xc7\x06\x34\xa1\x71\x3d\xc8\x23\x58\x03\x8f\xf9\x6f\x28\x16\x90\x54\xfc\x58\xa3\xce\xa6\x83\xe4\xc2\x42\xbb\x28\x47\x5d\x2f\x21\xe3\x64\xab\x5c\x5f\xe4\xa7\x8d\xc0\x9c\x71\x96\x56\xb7\x9b\x11\x24\xd8\xff\x98\xc9\xf2\xeb\xa9\xec\x75\xfe\x70\xbb\x9f\xb1\xbc\x27\x67\x86\xd2\xbe\xf7\x24\xa0\x53\x4d\x26\xb1\xfd\x38\x1a\x0c\x45\x93\xad\x49\xe3\x66\xfa\x6f\x0e\xb1\x34\x8e\x6a\x45\x1d\x57\x42\x22\xc7\x1f\x0a\x5a\x30\x89\x89\xd7\xf2\x28\x57\x48\x02\x16\xb4\x12\xbf\x1b\x65\x19\x95\x66\xcb\x8f\x57\x47\x0b\xaa\x2a\x74\x7e\x10\x5d\xdf\xc7\xa1\x8c\x59\x12\xbb\x53\x21\xba\x9c\x57\x7b\xe2\x34\x52\x0b\xe9\x8a\xa8\x13\xfe\xeb\xb4\x9b\xe9\x0f\x9e\x7b\xba\xa3\x7a\xc3\xd7\x51\xf0\x31\x82\x22\xd0\xda\xfe\x13\x2f\x31\xff\x06\x15\x18\xf8\x29\x1b\x2e\x68\x44\x23\xc2\x2b\xb5\xfc\xda\xc5\x09\x2a\x36\x52\x6a\x53\xa7\x71\x0f\xa5\x14\x16\xe5\x5d\xea\x43\x62\xbf\xee\xa3\x6c\x0b\x85\x1a\x98\xfa\x1a\xa1\x81\x35\xf3\x20\xf0\x62\x54\xb7\x9b\x30\x5a\x61\x19\x17\x65\x26\x0c\x6e\x99\x6f\x78\xdc\xec\xb4\xa8\x25\x69\x35\x8d\xd3\x32\x97\x4e\xa1\x74\x38\x94\xae\xe0\xf4\xb0\xbe\x2a\x14\xf2\x70\x18\x8d\x46\x56\x48\x8c\x68\xc9\x32\x95\x80\xdf\x28\xc9\xb7\x6e\x94\x16\x36\x1c\x26\x69\x9c\x0e\x20\x23\x23\xa5\x52\x4b\x89\xe8\x35\x42\x2f\x73\x3b\x36\x99\x9c\x2b\x42\x8f\xf4\x63\xfa\x0b\x2a\x99\xc9\x2c\x89\x3d\xce\xf8\x2d\x7c\x61\xa2\xf1\x03\x8a\xa1\x7a\xbb\xa1\xfa\x69\xe7\x65\x36\xb0\xd9\xdf\x41\xd9\x91\x32\x05\x9a\xb5\xf1\x1a\x9a\x38\xc8\xdb\xee\x4d\x34\xbe\xc1\x21\xeb\xde\xff\xc5\x8e\x5f\x0d\xbb\xd7\x6b\x8a\xdf\xcf\x68\xfb\xa5\xc4\x92\x58\xe6\x1e\xed\x2e\xa2\x70\xfd\x3c\x94\x74\x0d\xa3\x2a\xac\x88\xc6\x48\xcb\xf9\x7f\x7c\x1c\x28\x13\x6e\x76\x64\xc0\x9b\x73\x08\x59\x48\x1d\xce\x29\x75\xbd\xc2\x66\xa3\x9d\xd5\x61\x01\x0e\x09\x0b\xfc\x6a\xb3\x7a\xc7\xad\x71\xad\x28\x76\xa3\x93\xde\x8c\xd2\xd0\xce\x52\xd7\xab\x46\x35\x0b\x31\x23\x7e\xad\xca\x88\x30\xb3\xe4\x1d\x8f\x51\x31\x16\x3e\xac\xc5\xf9\xb5\x3a\x83\xc6\x65\xbf\x6f\x33\x78\x8b\xa1\x98\x42\x0a\xa7\xbd\x0c\xa4\x53\xd0\x00\x1f\xc8\xc3\x61\x1a\x1b\xa4\x30\xd8\x49\x18\xa2\xf2\x6b\x57\x3a\x8d\x4d\x21\x6a\x25\xf8\xbd\x28\x28\x30\xd6\xda\xb7\x5e\x93\x2a\x6f\x00\x74\xc5\xe4\xbe\x33\xa3\x54\x01\xff\x57\x65\x37\x82\x46\xa9\x88\x95\xf8\xee\x6a\x6c\x5f\x2d\x73\x9c\x12\xb8\xe7\x1f\x2b\xa3\xb5\x8f\x9b\x64\x5d\xfa\x26\x09\xd7\x94\xab\xe4\x8e\x75\x0f\x4a\xde\x31\x05\xc1\x9f\x3f\xdc\x36\x03\x9b\xf4\x0c\x6f\x70\xc0\x21\x77\x74\x3c\x75\x61\xc7\xba\x1f\xf4\x9b\x7e\x95\xc4\xcd\x7a\xb1\xb6\xa3\x93\x9a\xee\xa9\xb7\x81\x47\x12\x8e\x3a\xe8\x86\x12\x27\x18\x45\x09\x3b\x97\x48\xbf\x48\x37\x8f\x14\xd8\xd2\xe6\xc5\x2f\x28\xc1\xd9\xdd\xeb\xad\xdf\x9a\x77\x8c\x0f\x6a\x25\x61\xa9\xfd\x5a\x47\x31\xd3\x30\x9a\x44\x3d\x74\x0a\x9d\x70\x51\x0c\xf0\xd5\xc4\xec\xba\x77\x93\xfb\x9f\x7e\x91\x18\x3d\x80\x83\x9d\x0c\x88\x34\x23\x3a\x1f\xd4\xbc\xa2\x83\xf5\xdf\x3c\xdb\x51\x2a\xbc\xad\x75\xdf\xbb\x6f\xad\x7b\xc9\xf9\x4d\x25\x34\xb0\x03\x18\x83\xad\xd7\x27\xad\xdf\xfe\x3c\x1f\xb3\xe7\xb4\x99\xd8\x6d\x4c\xb4\xe8\x39\xce\x3d\x8b\xc5\x03\xf5\xa8\x6b\x9a\x5f\x0a\x9c\x08\x92\xfb\x33\x6a\x10\x59\xd8\x24\xa7\x7a\xb2\xfa\xf5\x18\x4f\x80\x36\xc1\xaf\xd5\xf8\xad\xb0\xa3\x71\x9a\x99\x6c\x0d\x4b\x0f\x89\xeb\x15\xda\x14\x6c\xb8\x47\x7f\x88\xca\xe5\xa4\xd2\x01\xac\x56\x45\x32\xb0\x99\xed\x11\xa0\x05\x23\xb6\xff\x0a\x55\x30\xbf\xa1\xb5\x88\xaa\x91\xe5\xce\xf9\x8d\x8a\x5d\x85\x2d\x0a\x33\x32\x49\x11\xcd\xf8\xe6\xf1\x0d\x5a\x2a\x38\x5d\x2f\x4c\x54\xea\xf4\xd1\xc4\x63\xd4\xf2\xe1\x1a\xed\x7e\x56\x0a\xa7\x3d\x2d\xaa\xe1\x35\xb7\xe3\x5e\x19\x16\xd2\xd4\x47\xe6\xcc\xe2\x3f\x3a\x48\x8b\x20\xb3\x04\xe9\xb4\xdf\xcf\x87\x69\x8a\x2c\x17\x1f\xfb\xae\xfa\x8a\x77\x1b\x51\xa9\xdd\x38\x0d\x97\x41\x56\x71\x8d\xbd\x23\x73\xee\xb4\x52\x6c\x8e\xb1\x0d\x0b\x53\xa4\x99\x82\x3c\xd5\xb8\xb8\x17\x1d\x93\x2e\xb3\xb1\x4d\x3c\x2a\x12\x3b\xf5\x8a\xa2\x0f\x5c\x69\x72\xb1\xfd\x74\xbb\x6f\xa2\x62\xa8\x66\x71\xef\x05\xca\xbb\xe3\xbd\x5a\x46\x9b\x94\xec\x92\x81\x09\xfe\x09\x45\x9d\xd8\x50\x2a\xc6\xb7\x14\x40\x1a\xee\x2e\x0b\xa2\x24\x01\x51\x66\x7e\xdd\xd4\xab\x58\x8d\x8a\x61\x2f\xb3\xab\x0a\x88\xcc\x8d\x15\xe1\x9e\xc8\xa4\xaf\x6f\xa2\x98\xe1\xe9\xd8\x0b\x3b\x3b\x8a\x88\x7c\x47\x35\x79\x9b\x54\x9f\x5e\x68\x9b\xcc\xb2\x9d\x22\xc2\xce\xdb\x81\x9f\x63\xff\x94\xd6\xb5\xd8\x9b\x4f\x73\xae\x16\xdb\x71\x94\x38\xc9\x70\x14\x56\x68\x94\xf1\xeb\xa9\x88\xfa\x99\x76\x5c\x7a\x35\x0f\x14\xc3\xaf\xab\xc2\xf8\xf5\x46\x65\x2a\x33\x1a\x4b\xf9\xda\xa4\xd6\x33\x65\x03\xfd\x4f\x0e\xcd\x2a\x55\x7b\xee\x7e\xf1\x1b\xfa\x79\x58\xc9\xdf\x0d\x7c\xba\xf1\x5d\xa5\x8a\x9c\xe6\xe3\xcc\x22\xe8\x03\x91\x08\xb2\x1c\xbf\xee\xd4\x5c\x64\x73\x8b\x29\x35\x02\x38\x18\x62\xce\x41\xbe\x8a\x3c\x72\x18\x6f\x1f\x38\x4b\xb6\xde\xa3\x24\x3f\x07\x37\xcf\xe9\x10\x54\x3f\x18\x91\xf3\xfa\x44\x71\x7b\x77\x74\x7c\x48\xef\xc7\x6b\x7b\x28\xa8\x8a\xe6\x68\x8d\xcb\x4f\xc1\x11\xf9\x03\x9e\x08\x32\xdc\x2b\xb4\xc1\x70\x08\xdc\x0c\xbc\xdf\x19\x66\x69\x8e\xe5\xe3\x4d\x81\xce\x40\xe2\x88\x17\xf1\x4a\x94\xa5\x49\x55\x7c\xef\x6a\x1d\x99\xdb\x7a\x07\xfd\x40\x9e\x46\xd1\xa5\xcb\x64\x8a\xac\x86\xde\x41\x54\x56\x6e\x8d\xd2\xac\xbb\xaa\x4c\xc4\x46\x65\x1e\xe2\xe9\xbe\xec\x2d\xa8\xd4\x0a\x9e\x42\x4a\x57\x69\x74\x12\x85\xc8\x51\x85\x31\xe3\xe7\x24\x1b\x0a\x3e\x3a\xb2\xa3\xd4\xe9\xa1\xe3\x0e\xfc\x40\xdd\x8d\x69\x64\x13\x61\xe5\xa3\x2c\x2f\xd0\xe7\x13\x6f\x6a\xa7\x79\xfb\xdf\x02\x76\x88\xbb\xcc\x7a\x3d\xb8\xe6\x0d\x6d\x33\x34\x1e\xa7\x39\x43\x87\x9c\xa3\x70\x75\x7c\x3a\xb0\xa6\x53\x4e\x3e\x11\xb4\x5e\x5a\x74\xc0\x4d\x35\x52\xc8\xca\x24\x1c\x46\xf0\xf8\x5f\x74\x0c\x79\x35\x0e\xc7\x5a\x13\xa7\xfd\xa6\x5a\x23\x2d\x8b\x3c\xea\xd9\x56\x4d\xcb\xe0\xc0\x82\xc3\xb0\xd5\x62\x5a\x11\x61\x24\x8d\x96\xce\xd6\x25\xb5\x1f\x96\xa3\x5e\x62\xd7\x74\xbd\xcb\xd4\x37\x7e\x33\xb5\xcb\x7f\xa3\x9d\xdb\xb8\x97\x8e\x5a\xfe\x08\x07\x97\x59\x32\x8e\xe9\x50\x32\xdf\x2e\x48\x3e\x71\x46\x09\x9a\x9e\x47\x67\x0e\x07\x39\x34\x41\x04\x30\xba\xcf\x1f\x3b\x36\xdb\xa7\xa4\x9b\x6e\x2a\xe9\xb2\x0d\x6f\x6e\x72\xec\xdf\x47\x62\x23\xc3\x11\x05\xdc\xc1\x94\x08\xff\x81\x9f\xa8\x83\xa0\x29\x05\xa6\x89\xcf\x6c\x1e\x04\x8a\x3b\x71\x7f\xe2\xc9\x2a\x9b\xca\x13\xe0\x89\xf5\xc7\x6b\x13\xd7\x99\x29\xb6\x93\x88\xc7\x2b\x30\xe5\x19\x57\xe8\xe6\xe3\x8c\x2c\x09\x51\xf0\xa1\x3a\x67\xb2\x24\xbf\x99\x5a\xbb\xfb\xf7\xb7\x73\x9a\xab\xd1\xc9\xed\xb2\x28\x27\xd1\xf8\x5e\x1d\x87\xbc\xd7\xf5\xe1\xb2\xb8\x55\xef\xcc\x57\xff\x4c\xda\x5c\x7e\x6e\x5c\x26\xa6\x17\x89\x88\x38\x83\x2d\x14\x9c\xe0\xa8\xca\x35\x46\xd6\x40\xdc\xbd\x06\xfb\xe6\x37\x81\x97\x7f\x4c\x72\x43\x39\x17\xc3\x05\x02\x0f\x48\x38\xd5\x74\x79\xdd\xd4\xe4\x05\x1f\x76\x18\x66\xcc\x74\x94\x82\x12\x30\x4e\x42\x81\xf7\x59\xff\xd8\x14\xe1\x50\xfd\xea\x13\xea\x57\x9f\x50\xc0\x87\x91\x8d\x8b\x9e\x93\xc2\x06\x83\x17\xe1\x82\x5f\xab\x11\x77\x15\x57\xf2\x61\x54\xb0\xe5\x15\x36\xf0\x29\xad\xd3\x3a\x7d\x05\x9c\x67\x24\x7f\x87\x7d\x91\x32\x12\x18\x99\x38\xb6\xd9\x8c\x6f\xbc\x72\xc6\xeb\xe6\x99\x8e\x36\x7a\x4b\x49\x5d\xc6\x6b\x49\x38\xdc\x45\x9f\xcf\x28\x2e\xdc\x7b\x19\x1b\xb7\x9c\x6a\xd5\x25\xe5\xec\x7f\x9c\x22\x1c\xff\xff\xd8\x03\x82\x01\xf3\x61\x20\x49\x5f\xb5\x71\x5c\x53\x0e\xc3\xf5\x4a\x51\xa0\x47\xf7\x19\x09\x27\x1e\x90\x29\xc2\x8e\x75\x5f\xe5\xec\xe8\xf8\xdb\x18\x25\x49\x1a\x42\x22\xe1\xc8\x1c\x5f\xe7\x87\xf4\xc3\xf8\x75\x43\x06\x91\x55\x79\x34\xe7\x1c\xe2\xd1\x4f\x1b\x92\xdf\x04\x0f\x3b\x6a\xab\x54\x89\x84\x2a\x1d\xbc\xfe\x2a\x76\x14\xbf\x51\xf8\x6e\x12\x09\xd9\xe7\x9b\x61\x7f\xa8\x29\x19\x0c\x1e\x12\xe4\x13\x3d\x15\xf4\x0d\x6e\xa2\x6f\x89\x90\x71\x56\xbb\x58\xdc\x64\xe8\x06\x02\xf9\x95\x89\xaa\x1e\xd0\x78\x90\x9b\xdf\x72\xc7\xc4\xcf\xe8\x61\xe1\xe0\x7f\x13\x57\x28\xc2\x53\xdb\x7b\x44\x2f\x2d\xcd\xb5\xc3\xa8\x88\x5e\xb3\xa2\x56\xa8\x04\x1b\x0e\x39\x3a\x50\x53\x63\xb2\xcc\xa0\x6a\xee\xd6\xc5\x3d\xfa\x39\xce\x2b\xae\xba\x52\xe1\x31\xf8\xe4\xc3\x24\xf9\x53\xb8\x20\x44\xc1\xe7\x3b\x55\x65\x86\x0c\xe9\x82\x9a\x61\x3f\xba\xae\xb4\x55\x77\xad\xfb\x7e\xdc\xdc\x2f\x01\x56\xca\xfd\x92\x89\x67\xff\x3d\xa5\x05\xaa\xef\x4c\x5a\xfb\xf7\x3b\x27\x7d\x7a\x06\x58\xf3\x3b\xa1\x4a\x28\x47\x7e\x15\xf4\x35\x36\x00\x47\xdc\xa7\xd6\xbd\x90\xdb\x96\x3a\xac\xff\x8b\x4f\x75\x7c\x79\xfe\x4b\xff\x41\xa7\x3e\x7c\x62\x67\x1b\x25\x58\xbc\xe8\x18\xee\xfe\x49\x5d\xa1\xfe\xa0\xe8\x7e\xab\xe1\xd9\x44\x77\x9d\x88\x6e\x2d\x2c\x61\x25\x0a\x6f\xa2\xa4\x30\x24\xe4\x56\x7d\x8a\x63\xf1\x1d\x58\x70\x3d\x8f\x86\xd6\x42\x37\xb3\xc6\x41\x12\x18\xa3\x4f\x6b\x44\xf0\xfa\x0d\xf3\xc3\x9e\x0d\x63\x6a\x12\xd0\x05\x03\x15\x7e\x8e\x80\x6c\xfc\x5a\x79\x51\x85\x69\x99\x15\xfb\x54\x4b\xe5\x38\x0e\x3a\xec\xef\x3d\x1d\x02\xd3\x21\x25\xfa\x49\xe0\x91\x4e\x17\xb1\xc8\x70\xb6\x63\x5e\x2c\xe7\xb7\x3f\xe6\xae\x06\xdb\xc6\xe0\xde\xaa\x91\x6e\x30\xa3\xe5\x91\x31\xe2\x84\xe3\xfd\x23\x62\x2d\x4d\xc6\x05\x59\x9a\x14\x33\xaa\x81\x78\x55\x01\x92\xae\x2b\x35\xe5\x6f\x3b\x44\x53\x37\x5d\xf5\x98\x38\x8c\xaa\xc0\x16\xc6\x3d\xdc\xa5\xd2\xbb\x93\x8d\x53\x03\x66\x0b\xf5\x5a\xfe\x1e\x72\x65\xc6\x6f\x6a\x3a\x13\xf9\xb2\xd9\xa9\x30\xdd\xac\xe0\xe0\xd2\x1b\x6f\xcc\xfe\xfd\xc0\x57\x87\x6f\x29\xf8\xf0\xd7\x9b\xe0\xad\x85\xcd\x8b\x08\xde\x37\x47\x94\x80\xa9\x53\x31\xda\x54\x6c\x92\x91\xc9\xf2\x21\xd0\xa3\x80\xbe\xdf\x56\x42\x1a\x67\x34\xa1\xed\xbc\x4a\x3f\xc1\xa6\x8a\x30\xb1\x10\x5c\xdd\xff\x48\x5f\xc1\xaf\x83\x67\xd4\x84\xb1\x57\xe6\x45\x16\x99\xf8\x71\x5f\x5c\xbd\xad\x40\xa4\xff\x7c\xa2\x06\x4f\x57\xe8\xac\x41\xd8\xf8\x3a\x9e\x37\xff\x87\xa0\x8e\x41\x5d\x92\x02\x86\x31\x85\xd2\x16\x50\x1b\xff\x8c\xc6\x2b\xff\x2b\xda\x3f\x35\xd1\x01\xb1\xd6\xaf\xb5\x18\x9a\x72\xfe\x62\x18\x25\xcb\xd4\x98\xc5\x8d\xb9\x17\x28\x03\x4e\x74\x55\xb5\xcb\x87\xf2\x70\x9a\x67\x2d\x83\xa3\x4d\x73\xb3\x51\xda\xb3\x59\x12\xbd\x26\x9b\x16\x3f\xf4\x27\x14\xed\xf8\xb5\x96\x1a\x4d\xb3\x6c\x0d\xb3\x3f\x14\x82\x3f\x9b\x28\xcb\x2f\x1e\xb1\x3b\x41\x34\xe5\x96\xd4\x72\x1e\xda\xef\xa8\xe4\xaa\x37\x0e\x67\x95\x20\x76\xdd\x46\xe8\x02\xb4\x7f\x31\xa0\xbd\x4c\x30\x0b\x7e\x3d\xa9\xad\x1d\xae\xee\x5f\xe6\x7d\xff\xe7\x78\x46\xfc\x46\x1f\x08\x85\x21\x7b\x62\xc4\x8a\xbb\x35\xc4\xd1\x6e\x22\x26\xb0\xa6\x36\x96\x02\xef\x70\x7a\x62\xa8\xfc\xaf\xe0\x5a\xb1\x14\xdf\x53\x2e\x37\x7f\xad\x0d\x6b\x89\x76\xea\x08\x1d\x7e\xe8\xf6\xc8\xba\x17\x12\xfb\x32\xcb\xb3\x33\xa3\x49\x81\x04\xba\x99\x79\x2d\x8a\x09\x18\x88\xb2\xfc\xe2\xa4\x4e\x7a\x38\xb0\xe0\xba\x78\x0d\x38\xef\x9e\xc9\x56\xa3\x24\x32\xe8\xb8\xb3\xdb\x23\x82\x94\x58\x3f\xfa\x4d\xd1\x4b\x47\x51\x02\xb7\x8d\xea\xfb\x58\x0f\x06\xdf\x27\xe2\x30\x1e\xd9\x3a\xd0\x12\x51\xf4\x34\x44\x2e\x4a\x91\xec\x8b\x5f\x2e\x76\x56\x9f\x85\x39\x37\xa8\x5e\xc0\xcc\xdc\x0d\x14\x49\x74\xa3\x7e\xc3\x74\x31\x3f\x35\xd1\x7c\xe5\x95\xf6\xa0\x8c\x7a\x96\xce\x88\x19\x2d\x91\xc9\xfa\xb3\xc8\xd9\x99\x3b\x29\x33\x52\x7f\x64\xf4\xd2\xb2\x5b\x3c\x5a\x3d\x78\x3c\xac\xfb\xb5\xa4\x92\x1e\x35\x1e\xd0\x9b\x64\xf8\x2c\xb3\x2a\x3f\x6e\xde\xb5\xee\x69\x43\x3c\xad\xc7\x72\xff\x11\x36\x3d\xbf\xc1\x7d\x13\x97\x06\x5f\x93\x8c\x63\x93\x43\xff\x4e\x4f\xb9\x1c\x60\xba\x79\x9a\x36\x2c\xf3\xae\x49\x7a\x7c\x26\x3a\x8f\x0c\x0f\x0b\xbd\xd0\xa4\x23\xb9\x92\xba\xa1\xaf\x43\x37\x7b\x39\x99\x53\x53\x6d\x8a\xfd\xfb\xc1\xba\x9f\x51\x75\x33\xc4\x04\x90\xec\x5f\xd5\x0c\xfc\x46\xbc\x5a\x3f\x36\x03\x5c\x99\xd8\x56\xd2\x0f\x16\x1b\x53\x8f\x1c\xa5\x2a\xd8\xf6\xf6\xd0\x0e\x92\x0e\x63\x2d\x35\x57\xe8\xff\x3f\xe0\xbd\x89\xac\x04\xbc\x0a\xe1\x2a\xb6\x9c\xd6\xf6\x05\x04\x40\x04\xe3\x3f\xa1\x9d\x26\x26\xae\x8d\x63\xcd\x74\x64\x87\xe9\x2a\x15\xfc\xb2\xef\x3c\xe8\xe3\xe2\x44\x0b\x05\xff\xea\xaf\x7e\x52\xbb\x92\xdf\x43\x40\xc7\x03\x63\x52\x24\x5a\x3f\xaf\x23\x9b\x76\xe3\x1d\xa7\xd1\x03\xdf\x67\xcc\x1f\x1e\xe9\x28\x97\x86\x59\xf0\xd5\x71\xe8\xdf\xc1\x23\x65\x8d\x5e\x3a\x4f\xd0\x23\x98\xa1\x35\x87\x16\xfd\xd3\xd4\xda\xc3\x2e\xda\xb9\xae\x36\xce\xb7\x29\xbf\x43\xa4\x79\xa2\xa3\x9c\x44\x77\x74\x3c\x62\xe5\x4d\xe4\xf1\x00\xf4\xed\x23\xa4\x1f\xd6\xfe\x75\x50\x1d\x00\x7c\xfb\x91\x52\x77\x60\x8a\x17\x7a\x04\xc7\x1b\x97\x27\x89\xfa\xd9\x9c\x35\xbe\x64\xd6\xeb\x5b\x95\x5a\x10\x34\xcd\xc6\xbb\x5b\x4e\xf3\x62\xa2\x58\x6d\x8b\x54\x49\x60\x57\x5e\xa8\x11\x48\xb1\x18\x30\xb2\xfd\x2b\x4a\xd7\x70\x4c\x0a\x93\x53\xa4\xf8\x7d\x01\x9d\xbe\x96\x26\x68\xb7\xb9\x51\xe9\xc2\x82\x1b\x39\xf9\x7e\xe8\x28\x1a\x45\xa1\x2a\xaf\x30\xf9\x13\x6d\x4f\x1f\xc9\xc4\x3e\xb2\x39\x4d\xfe\xff\x97\x7d\x37\xc8\x24\x54\x85\xf4\x40\xec\x3c\x90\xbe\x9c\xd4\xf2\xe9\x1f\x4e\x3c\xb6\xf3\x8a\xe2\x62\xd8\xe4\x0b\xe9\xda\x6c\xb5\x56\x80\x55\xe0\x6c\x83\xdf\x28\xf1\xd3\x3f\xa0\xeb\x94\xed\xb5\xfd\x99\x2e\xcd\xb5\xc7\xe9\xb8\x8c\x3d\x68\x04\x3b\xe9\x8a\xda\x55\x57\x1c\x8a\xd9\x26\x45\xc4\xe5\x30\x76\xf2\x71\x95\x19\x1e\x57\x00\x07\x93\x2f\xb3\x0d\x08\xe7\x96\x93\x5a\xa2\x59\xf3\x81\x1e\x8f\x5b\xca\x35\xf0\x9a\x56\x5a\xbc\xe6\x26\xb2\xe1\xb0\x4c\x44\xf1\x8d\x07\xfa\x81\x1e\xee\x37\x4c\x61\xfb\xd1\x40\x9c\x1f\x64\xc6\xa0\xe6\x0d\xda\x7b\x27\x4b\x69\x86\x13\xad\xd8\x19\xc5\xac\xdf\x54\x30\xb4\x63\x74\x3b\x00\x37\x79\x57\x2d\xaa\x7c\x6c\x42\x0b\x24\x87\x33\x25\x75\x2b\xfe\x8f\xd1\x11\x15\x7d\xb4\xea\x13\xd0\xff\xf9\xca\x44\x05\x43\x2e\x83\x45\xc5\xfb\x99\xc8\x0f\xe3\xe9\x8c\x76\x50\x52\x81\x9b\xf8\xc2\x7f\xc3\xfb\x6b\xd8\xd8\xac\xd9\xde\x4e\x7f\xc0\x41\x78\x8f\xe5\x82\x27\x2a\xc1\xdb\xa1\x0c\x6e\xbf\x81\x30\x2f\xf6\x8a\xcf\x2a\x05\xeb\x41\x12\xf5\xa3\xd0\x24\xc5\xee\x2a\xb4\xb9\xfc\xd2\x0d\xcb\x3f\xa0\x45\x8e\x75\x79\x23\x50\xd8\xa6\x0f\x26\xde\x02\xea\xe7\x35\x8e\x2b\xac\xa5\x24\x3f\x72\x34\x0e\x33\xae\xce\x07\x2c\x3e\x34\x17\xbe\x32\xf1\x93\xb4\xaf\x34\x48\x1d\xbf\xdc\xb6\x49\x5a\x0e\x86\x33\x3e\xa3\xdf\xd1\xf1\x76\x24\xd0\xf7\x40\xb2\xf6\xc0\x37\x2d\x8b\x28\xe3\xef\xf1\xe5\xb8\xce\xbd\x1b\xc4\x70\xe6\xdb\x99\xcd\x2d\x44\x01\x99\x62\x32\xf1\x54\xb7\x69\x10\x8d\x34\x73\xd6\x6c\x3e\xd3\xfa\xed\xcf\x73\x82\x00\xd6\x6f\x4d\x54\x50\x0c\xe7\xb6\xc3\xf1\x3e\xd3\xce\x57\xa3\x9c\x0b\x1b\xa7\xb5\xe6\xfa\xb6\xe7\x95\xcd\xed\x17\xd2\x61\x42\xfc\x64\xa1\xad\x2b\x83\xb1\x4b\xba\x9b\x7a\x06\xc9\x8a\x34\xd6\x9a\xa0\xed\x61\x5a\x14\x22\x0b\x87\x05\x7f\x0a\xdb\x90\xdf\x38\xbe\xc8\xea\x30\x1a\x51\x0c\x45\x96\x88\x38\xc3\xaf\x55\x0c\x1d\xc7\x66\x8d\x70\x75\xd8\x9e\x3f\x0c\x14\x0e\x6b\x93\xc8\x0e\x8a\x6e\xf2\x82\xf3\x65\x6a\xd5\xd5\x11\x05\xca\x72\x7d\x2a\x7d\xa9\x6a\xdd\xbe\x89\x18\x61\xdf\x14\xf7\x3d\x31\xb0\x67\x7a\xb3\x1e\x25\xdc\xa2\x75\xc2\xaf\xd7\x3d\x62\x8d\x55\x3a\xf9\x8d\x02\x21\x9b\x3c\x2f\x47\xe4\xa0\x05\xe1\x1f\x37\x67\x5e\x9a\xf3\x1e\x39\x55\x8e\x00\xfc\x1a\x24\x9d\x71\xe3\xff\x9c\x92\x60\x8c\xe9\x67\x95\xf0\xa7\x29\x8a\xa8\x28\x7b\x36\x9f\xf5\xed\xe5\x3f\xc5\x61\x22\x90\xa4\x7a\x73\x7f\x61\x61\xeb\x44\xa3\xa1\xe2\xc0\x66\x23\x93\x48\x6e\x2c\x84\x0a\xfa\x63\x64\x0d\xf7\x35\xdb\xf5\xd6\xd4\x72\xab\xaa\xcb\x41\xca\xd0\x4b\x3c\xeb\xff\x4e\x73\x69\x59\x78\x0c\x89\xd2\xb9\x29\xc1\xf4\xc5\x17\x0f\xb5\x47\x66\xad\x4b\xdc\x20\xb4\x2e\x31\x0f\x61\x5d\x2d\x7e\xa3\x66\xe5\x90\xc4\x4b\x33\xa8\x6b\x01\x16\x05\x41\x2f\x1c\xa3\x8f\xa3\x0b\xc7\x36\xe6\x13\xcf\x25\x7f\x7d\x2a\x0c\x50\xc3\x7a\x98\xe6\x45\x0d\x69\x8f\x9e\x93\xf0\x28\x9f\x71\x73\x77\x62\x37\x13\x32\x77\x46\x69\xd1\xde\xd3\x79\xfc\x39\x15\xdd\xa6\x0f\x94\x2a\xea\x8c\xa2\x57\x25\x50\x21\x36\xfd\x99\xf2\x3b\xfe\xb3\xa6\x9d\x65\xcb\xf1\x30\xcd\x22\xcc\xb0\xb1\xb8\xae\x2b\xd0\xf4\x39\x3c\x2b\xa4\x84\x47\xa7\x1e\x4f\xb5\xcc\x47\xb6\x98\x9d\xb6\x56\x41\x23\xee\xae\x2e\xb4\x27\x8a\xb9\xb5\xb7\xe3\xa3\xeb\xc0\xc4\xe9\x40\xa9\x8c\xb0\x4e\x10\xbf\x69\x88\xae\x54\x37\xc5\x42\x45\x60\x00\x6c\xe0\x27\x14\xdf\xc6\x37\x09\x2a\xc8\xef\xb4\x91\x4d\xf6\x2a\xc0\xf9\xa9\x89\xb2\x8b\xc2\x07\xb8\x9e\xc0\x81\x05\xef\x80\x72\x44\x0c\x8c\x00\x69\x97\x71\xa3\x2a\x11\x7e\xa8\x5d\xa8\x4e\x6a\x57\xe4\x1b\xaa\xb1\x74\x13\xb7\x86\xbf\xdc\xc5\xfd\xe1\x5a\x37\x8b\x7a\x80\x8c\x29\xf0\xbd\x20\xf1\x1f\xd4\xfa\x37\xca\xbf\xab\x6f\x12\xde\x57\x0c\xb2\xaf\x0b\x1f\x2a\x69\xcf\x77\xd4\x5f\xd9\x35\x9e\xb9\x6b\x97\x2b\x47\x73\xf6\x6a\x1b\xa7\x34\x7f\xe9\x0b\x7d\x1e\xa5\xd5\x7c\x29\xf8\x4d\x03\x3c\xf1\x50\x3b\xb1\x26\xeb\x82\xbf\xe4\x0a\x4b\x97\x73\x6e\x2a\x6a\x5d\x92\x66\xf9\xb2\x6d\xb5\x0e\x2c\x6c\xa1\xe4\xd8\xba\xa3\x46\x21\x5d\x1b\x25\x83\x9c\x50\xee\x78\x9c\x00\x3c\xe1\x54\x47\x21\x23\x92\x43\x4d\xa1\x23\xb7\x76\xb6\x16\xd9\x29\x8e\xa0\x41\xb9\xab\x53\x23\x57\x55\xcb\x42\x64\x8f\xf6\x3a\xec\x64\x8a\x06\x29\x73\x92\xf0\x8f\xc1\x97\xc6\x95\xdc\x54\xc4\xa7\xa1\x19\x8f\xa3\xc4\xe6\x78\x92\xaa\x60\xa9\xe3\x2e\x50\x8f\xfd\xe5\xc4\xd3\xd3\x7a\x76\x44\x26\xc3\xa6\xb0\x50\xdb\x61\x19\x52\x84\x46\xd1\x24\x6d\x18\x3f\x8c\xb3\x68\x64\xd8\xeb\x10\x1d\xac\x2b\xaa\x9b\x75\x45\x43\xf7\xd2\x15\x8b\x90\x86\xbc\xe7\x6e\xe0\xcd\x9b\x18\x09\xeb\x9a\x4a\xf3\x87\x45\x7b\xb9\x21\xc6\xc8\x38\xbb\xe5\xb8\x9a\xa7\xa8\xb4\x14\x54\x64\x83\x30\x1b\x49\x95\x28\x37\x3b\x4c\xa8\xa6\xa5\x99\x8b\xa1\xed\x17\xda\xc7\xf4\x7b\x0a\xe3\xfd\x3d\xb5\x28\xc2\x61\x9a\x09\x10\x51\x74\xa5\x3c\x01\xe1\x6c\x6d\xd0\x32\x20\xcf\x4c\x80\x3c\x3e\x56\x56\xa5\x37\x91\xe1\x22\xc8\x80\x99\x83\x0e\xf4\xa9\x89\xb6\x0d\x61\x0d\x14\xac\xf4\x5d\x50\x30\x41\x9e\x74\x79\xa2\xf4\xfb\xcf\x6a\x59\xfd\x56\xc7\x0f\x45\x6d\x32\x34\x09\xf9\x7d\xf8\xad\xf9\x37\xaa\x41\xbd\xa9\x00\xb1\x67\x95\x11\xba\x7d\x95\xc8\x2c\x54\x9d\x8a\x53\x87\xd2\xc6\xe7\x9d\xea\xde\x54\x97\x22\x6b\x8c\xbe\x09\x29\xf6\x66\xa0\x7e\xd6\x16\xc9\x04\xf0\x7f\x68\x3c\xac\xc7\xb1\xa1\x61\x07\x6e\x00\x92\x26\x1e\x80\xf2\x1b\xd5\x1f\xed\xdb\xd5\x7d\xf4\x8b\xb0\x6e\x3e\x46\x2d\x2f\x86\x4b\xd5\xea\xc2\xc2\xc5\x26\x45\x76\xb8\x03\x63\x27\x35\x29\x75\x86\xfe\x81\xcf\x5a\x01\xd7\x54\xf3\xfd\x43\x8e\xf5\xa8\x54\x90\xfe\x9c\xa6\x56\xb5\x91\x08\x8b\x69\x4c\x1d\x73\x2f\x2d\xcd\xb5\xd3\x41\x9a\xac\xa5\xcb\xad\xaa\x54\x56\xe6\xe4\xae\xbd\xeb\x10\x70\x45\x66\x0d\x31\x64\x38\xb6\x3a\x24\x80\xf3\xfa\xfa\x58\xbb\x70\xdd\x9a\x72\xbd\xaf\x0a\xbb\x34\xb3\x4c\x58\x9f\xf1\xe1\xff\xbe\xb2\xd5\x7c\x0f\xb7\x0b\x29\xd9\x0d\x85\x35\x8e\x92\x90\x2c\x69\x7a\x7b\xab\x25\xe9\x5a\xab\x07\x0f\x0a\xc8\x5f\xdf\x90\xeb\x94\xe4\x61\xc4\x33\x03\x88\x06\xbe\xea\xfa\xc4\xd7\x60\x37\xf4\x18\x0a\x3d\x63\x65\xc4\xeb\xfe\x42\x8b\x38\xeb\x0c\x4b\x43\xa6\x43\x13\x0f\xcc\x36\x2b\xe6\x0b\xda\x8a\xf9\x82\x6a\xae\x94\x7d\xc4\x6d\x17\xfb\x3e\xf7\x92\x73\x63\xf0\xfa\xee\x1f\xb9\x02\x3a\x1f\xa7\xcb\x36\x99\x51\xdb\x92\xdb\x0c\xd8\x97\x68\xfe\xc9\x0d\xd9\x6e\x3b\x58\x1d\x39\x36\x29\x48\x87\x2c\xb1\x65\xc6\x73\x5c\x34\xe5\xb9\x19\xcb\x6f\xbc\xfd\x52\x16\xad\x44\xd4\xdb\x68\xe9\xef\xa1\x9b\x2d\xdf\xf9\x94\x82\x37\x24\xe1\xb2\x4d\x5a\x35\x12\xb7\x5b\xa7\xe7\x1b\xfa\x7a\x2f\xb4\x07\x26\x8e\x8d\x10\x87\xd4\x11\xe4\x1d\x73\xab\xef\x42\xef\xe5\x6e\x43\x75\x47\x84\x8d\x28\x6b\xf9\x26\x23\x20\x9e\xe2\x5c\xba\xfd\x2f\x0e\x1e\x6c\xaf\x44\x3d\x9b\xd6\x84\xe7\x11\x1b\xf9\xf5\x54\x44\x7f\x5e\xec\x4d\x29\xa2\x43\xd6\xe1\x2e\xc2\x06\xbf\x99\x72\x5e\x3d\x78\xb0\x6d\x42\x28\x4e\x88\xe6\x7b\xf5\xb7\xfc\xba\xa9\xf5\xdf\xcf\xcc\x60\xe4\xd5\xe1\xb8\x83\xab\xe9\x2e\x57\x1b\xd3\x59\x62\x86\xcf\x78\xb8\x17\x24\x1f\x44\x83\xd7\x03\xf0\xb5\xcb\x51\x75\x3e\x99\xf1\x18\xc4\x24\x01\xd1\xdf\x54\x20\xfa\x9b\x1e\x75\x4b\xb9\xbe\xc8\x13\x53\x1c\xfb\xea\xd3\xe4\x85\xec\x2c\x2e\x7c\x88\xdf\xbb\xee\xb1\x1c\xdd\x2c\x4d\xc2\x14\xb5\x9d\xe8\xc6\xb6\xbc\x86\xac\xd7\xce\xb5\x4e\x86\x18\xc7\x2e\xa7\x86\xfc\xa6\xc1\x6d\xe0\x50\x7b\x58\xf6\x7a\xb1\x2c\x49\xe9\x5b\xd1\x0e\x96\x86\x96\xb7\x57\x4c\x73\x49\x82\x71\x48\x3e\xb5\xee\x23\xcc\x5b\x13\x15\x9d\x3f\xd1\x20\x77\xbf\x48\x3d\x14\x76\xa8\x50\x1b\x65\xd1\x6d\x14\x49\x83\x8a\x68\x64\x61\xc3\x24\xba\x7e\xd5\x49\xe2\xf8\xc6\x4e\xbd\xf6\x4e\xe0\x67\x93\x37\x69\x69\x23\xbe\x9d\x50\x29\x78\x91\x8e\x66\x3c\x25\x8b\xb9\xb2\x0e\xf9\xe0\x4e\x8a\xf7\x9a\x4c\xef\xfa\xd6\x64\xac\x3b\xc5\xb2\x1f\x1a\x2d\x70\x5a\x4b\xcf\xdd\xf6\x08\xdf\xb8\xcc\x87\xb3\x9e\x05\x88\xfa\x5a\x7f\x23\x56\xe0\x7b\x7a\x1e\x31\x6d\x85\x35\x7f\xb8\xbd\x1a\xf5\xd2\x55\xec\x2c\xb1\xd9\xf1\x73\xb6\x0f\xa6\x1e\x26\x51\xe6\x8b\x28\x8c\x4c\xcd\xf1\x8a\x25\xc4\x04\x09\xe8\x5b\x12\x43\x9b\xf5\xd4\x26\x7c\x83\x96\x2c\xbf\x9e\xea\x8a\xce\x1f\x6e\x8f\xa2\x6a\xa1\x8c\x4c\x42\x47\x0c\x8e\xa9\x8f\xd4\x31\xfa\x2f\x27\xca\xb0\xe2\x83\x06\x0e\xd6\xa1\x76\x62\x06\x03\x61\x54\xe3\x71\x02\x5a\xcd\xaf\xa7\x52\xea\x5f\x69\x17\x51\x4f\x34\x42\x41\xb5\x79\x87\x9e\x33\x96\xdf\xf5\xc0\xff\x92\x4d\x85\x80\xec\xd9\x78\x24\xb6\x0a\xec\xa5\x87\xe7\x2e\xc6\x7a\x4d\x33\x91\x9e\x59\x4d\x1c\xd4\x19\xe7\xd2\x47\xca\xd1\xe5\xa3\x89\x6e\x34\x71\x67\x88\xa7\x20\x6a\xe0\x7c\x5d\x2b\x95\x16\x85\x1d\x8d\xb9\x75\xce\xcd\x37\xac\x19\xa4\x87\x33\xb4\x32\x90\xdd\xc1\x0d\x8f\x61\x8d\xe8\x01\x01\x46\x83\xeb\x45\x3a\xb4\x83\xda\x33\x4c\xa9\x0a\xb6\x29\xbe\xb2\xf1\xb7\xa4\x84\xd5\x47\xf3\xeb\x75\x1f\xac\x4c\x97\xe8\x02\x29\x83\xe6\xc4\x50\xdc\xb3\x97\xce\xa8\x03\x75\x18\xc5\x2d\x45\xca\x3e\xc1\x98\x28\xf1\x3c\x9c\x6e\x41\xb5\xf3\xa1\x59\xb6\x68\xdc\x8b\xd2\x51\x75\x7c\x88\xb9\xbb\x02\xe9\x9e\x50\x2d\xe3\x7e\xb6\x56\x45\x5d\x05\x8f\x55\x1a\x4a\xd8\x25\x48\xda\x6e\xab\x1f\xb7\x66\x93\x3d\xaa\xad\xd3\xe2\x69\x88\xd3\x73\x5d\x9a\xe3\xff\xf2\xb6\xc2\x54\x5e\x9d\xf8\x99\x0f\xfb\xca\x21\xf6\xdc\x9e\xf8\xa0\xbf\x97\x10\xa6\xb2\xaa\x94\x94\xdb\x38\x8b\x92\x65\x16\xff\x5f\x74\x9c\x91\x96\xd3\xc6\x3c\xa9\x64\xd1\x4c\x9e\x47\x79\x51\xa5\xe2\x3b\x29\xe9\xc1\xc4\xf9\x3d\xad\x1b\x79\xb6\x46\x3d\xa1\x1f\xc3\xff\x2a\xf0\x8d\xc2\xbf\x9a\x5a\xab\xfb\xf7\xb7\xc3\xa1\x89\x97\xdd\x5a\xc5\xda\x00\x4a\x92\x5f\x3b\xa9\xa1\xdc\x66\x63\xe2\x57\xc0\x72\x10\x17\x0b\x9e\x00\x7b\x07\xd3\x9f\x09\xbf\xd7\xdf\xde\x81\xc9\xd9\x53\x07\xf3\xa0\x07\xaa\x86\x62\x1a\x9c\xf8\x1c\xb6\x9c\xbe\x2c\x08\x41\x4e\xf1\xaf\x7a\x3a\x6e\x54\xac\x44\xd9\xd4\xa3\x37\x51\xc6\x08\x55\xa6\x49\xe3\x71\x0b\x67\xba\x61\x48\x1b\x0e\x23\xdb\xdf\xe9\x51\x4b\xb4\xa3\xe6\xb7\x2e\xa9\x2c\xea\x94\xc2\xb2\x70\x17\x13\x43\xb2\x33\x8e\xa4\xd8\x35\x59\x16\x59\xb1\x7f\x77\x0d\x03\xd5\x10\x51\x40\xca\x28\xcf\x4d\xf2\x18\xe9\xf7\x01\x6d\xe7\x98\x58\x8b\x2f\x1e\x72\x80\x69\xda\x50\xe2\xbe\x49\x07\xbc\xc0\x50\x3d\xc2\x8d\x45\x66\xc4\x97\x53\xcb\x80\xd2\xef\x17\x2e\x2d\xfd\x2a\x41\xb4\xaa\x36\xa9\xcd\x52\x9a\xaf\xb4\x74\xa9\xf0\x91\xb6\xef\xfe\x48\x6d\x91\x17\xfb\xfd\x99\x6a\x29\xa3\x7f\x04\x05\x7a\x31\x55\x52\xfd\x14\xaf\xde\x13\x66\xd1\x78\x4c\xf6\x2f\xb4\xb0\x80\x2c\x00\x85\x8e\x4a\xdd\x7f\xf1\x74\xc7\xef\x25\x1e\x4c\x02\x4e\x73\x4d\xc3\x50\x08\x45\x33\xe3\xe9\x99\x98\xaf\x20\xab\xb9\x4c\x71\x0e\x85\xc2\xa5\xc6\xb5\x6d\x12\xd3\x13\xd0\x06\xee\xcd\x3b\xda\x91\xf5\x9d\xa9\x43\x82\xac\x05\x4c\x31\xdb\x52\xf6\x23\x74\x03\xa5\xf3\xea\x49\x1e\x67\x29\x2e\x20\x35\x7d\xc3\xcd\x5b\x40\xec\x93\xde\x96\x08\x0d\x79\x70\x33\xfb\x23\xa1\xc3\x78\x7b\x2a\xee\x1d\x7e\x51\x26\xa9\x47\xbc\xf1\x78\xcb\x1b\x9f\x37\x4e\xe2\xc8\xf8\x18\xb0\x36\xcc\xd0\xee\xa8\x8d\x88\x91\x8a\xc8\xe3\xea\xd9\x5a\x14\xc7\xb3\x4a\xb5\xf0\x82\xd2\x09\x01\xbe\x06\x39\xdb\xed\x89\x92\xa3\xbc\x1d\xfc\x3d\x65\xd4\x34\x1a\x95\x49\x14\x62\x8a\x06\x21\x56\x8c\x93\x21\x4d\x8a\xc8\xf4\xb1\x32\xbc\xd8\xbd\xae\x20\x44\x57\x34\xb0\xe4\x7d\x6e\x5c\x20\x36\xef\x50\x44\x9b\x5e\x66\x46\xc0\xb0\xe1\x14\x40\x49\x8e\x40\xb2\x67\x5d\xd9\x85\xbc\xed\x86\x7b\xa3\x35\x92\x8e\x4a\xcb\x3c\xd6\x22\x44\x30\xfb\xe3\xd7\x78\xf2\x5c\xb5\x16\x36\xc3\x2c\xd0\xc4\x48\x15\xc5\xcb\x02\x3f\xca\x0d\x7a\x3c\x46\xed\x82\x12\xf4\xbf\xa2\xa2\xe5\x86\x12\xf5\x12\xd7\x45\x0f\x85\x86\xa0\x9f\x98\x2e\x7a\x8c\x22\xab\xfa\x08\x67\xe9\x61\x66\x31\xc3\x28\x94\x61\x84\x10\xb6\x94\x87\x62\x0d\x69\x7f\xcc\x45\xa7\x7c\x18\x8d\xd7\xc4\xa5\x17\x2b\x17\x72\xfb\xc8\x35\xef\xeb\x76\x73\xdd\x0f\xc0\x44\x06\x69\x0f\x76\xd8\x3f\x43\xba\xc1\x6f\x02\x2d\xf9\x96\xdb\x38\x35\xcc\x72\x93\x66\x8b\xcf\x34\xde\xd7\xab\xae\x88\x60\x66\x3e\x5f\xd3\x67\x73\x92\x41\x0b\xce\x49\xf7\xac\xdb\x52\x2b\x36\xeb\x45\x61\xb1\x53\x59\x58\xbc\xa7\xe0\x88\x60\xf4\x0b\x2c\xaf\xe5\x5c\xe2\x58\x71\x19\x01\xe6\xb8\xf6\x0f\x1e\x46\xa3\x6e\xc9\x96\x68\x22\x16\xdb\xf2\x72\x7c\x13\xcf\x62\xfb\x23\xe5\x30\x1d\xa6\xa3\x71\x1c\x55\xa7\xf0\x2e\x4f\x8d\xbb\x3b\x51\xde\x22\x30\x89\x46\xaf\xe2\xb6\xf2\xc5\xbd\x42\x30\x97\xad\x4b\x93\x9a\x6b\xc8\x93\x7e\x72\xda\xf7\xb8\x54\x34\x19\x80\xa0\x14\x63\xc8\x96\xb3\x41\xfe\xf6\xe4\x59\x25\x96\x1a\xda\xac\x30\x51\x52\xac\xed\x51\x0e\xe3\x2c\xdb\x86\x34\x89\xdd\x31\x64\x61\xb5\x9c\xc4\xe8\x6d\xea\x62\x30\x0e\x88\x9a\xdb\x82\x09\x52\x7e\x1f\x2c\x1d\x21\x4a\xc2\x9e\x5b\x95\x17\x19\xfb\x86\x79\x9c\xd8\x29\xe5\x30\x7d\x4a\xad\x8e\xae\x4d\x6c\x3f\x2a\x64\x34\x2c\x38\xb5\x96\xd3\xda\xd8\xa8\x93\x91\x06\xf6\x29\xba\x11\x7c\xca\x62\x79\xca\x29\xe1\xab\x66\xd0\x99\xd0\x7d\x38\xcf\xc9\x24\xee\x3c\x3a\x55\xb8\xcc\x9d\x68\x7a\x8a\x1d\x9a\x02\xf2\xc3\x7e\x52\x8c\x8f\x5b\xfb\xe7\xbd\x0a\xfa\xc2\x02\x77\x02\xff\x0a\xf0\x24\x8c\xc8\x6e\xe0\xce\xf0\xf8\x3f\xf0\x1e\x95\xa7\x35\x65\x8d\xdb\xde\xc0\x02\xfc\x79\x7d\x3b\x0d\xd2\x9d\x3e\x14\x5f\x9b\xd4\x7a\x83\x1e\x97\x0b\x0d\x6f\x56\x5b\xa7\xa7\x84\x3b\x31\x6d\x98\x75\xf0\xe0\x92\x3f\x65\xe9\x88\xe3\xf3\x33\xa8\x1d\xa6\x4f\xb9\x1e\x7f\x98\xae\x10\x09\x59\xd9\x99\x72\x97\x0a\x2d\x2b\xd0\xf0\x79\xb4\xa9\x73\xe5\xaf\x4f\x9d\x53\xaf\xbc\x02\x49\x35\x0a\xcc\xd8\x43\x77\x94\xea\xca\x65\xca\x8d\x85\xbc\xda\x14\xcf\x0c\x84\x98\x39\x69\x42\x11\x7c\x33\x50\x56\x4b\x37\x15\x21\xa6\xda\x7a\x86\xbb\x3c\x8e\x53\xa6\x72\xa7\x27\x95\xb2\x38\x10\xef\xd5\xe7\xe0\x0a\x2f\x04\x5e\x94\xf5\x82\x1a\x78\x24\x36\xb4\x79\xce\x6c\xee\x97\xdd\x47\xf9\x73\xef\xc1\xf6\x3c\xd3\x3f\xca\x6e\xb9\xf6\xa8\x2f\x31\x8e\x03\x1b\xa4\xf3\x6d\xfe\x0f\x81\x07\x9b\xfd\x75\x9d\xeb\x55\xfd\x7a\x80\xf9\x8e\x81\x1e\x8f\x06\xd4\xb5\x89\x32\x5d\xe1\x91\x98\x48\x19\x6c\x7f\x04\x9f\x7b\xa9\x9d\xd8\x68\x80\xc1\xb0\xf4\x23\xab\xdb\xce\xaf\x5d\xab\xa5\x4b\x86\xe2\xbb\xdc\xf8\xe0\x83\x4f\x75\x3c\x65\x72\x2f\xb8\x18\xcc\x26\xd2\x21\x93\xcd\x3b\x11\x9a\x6f\xd1\xd6\xe3\xf6\x84\xbb\x8b\x74\x72\x8e\xcb\x6e\xcc\x7d\xa2\xda\x3c\x81\xdf\x28\x16\x51\x5e\xa4\x99\xcd\xf7\x78\x22\xfe\x51\x42\xe6\x39\x27\x08\x67\xe8\xf5\xae\x16\x92\x3b\xa7\x85\xe4\x98\x08\x85\x50\xf7\x5f\x02\xfa\xaa\x9d\x24\x10\x95\x2f\x68\xa5\x71\x93\x99\x62\x98\x22\x07\x14\x77\x04\xff\x55\xe7\x26\xbf\xb0\x5d\x7e\xda\x90\x11\xd1\xac\xbf\xa0\x0b\xe8\x77\xb3\x75\x1e\x7e\x8e\xd8\x1d\xb7\x94\xfb\xb9\xb4\x9c\xba\xe3\x10\xc2\xe6\x08\x48\x97\x27\x4a\x29\xeb\xb2\x22\x6c\x11\xfa\x05\xe9\x31\x93\xed\x29\xf8\xe8\xa3\xcc\x91\xf0\x3d\x5d\x60\xf3\xa1\x24\xa7\x81\xcd\x4c\xdc\x4b\x67\x5a\xfb\xf7\xbb\x53\xa6\x5e\x66\xd3\x0f\x11\x11\x66\x67\x9f\x92\xa5\x7d\xd2\x1e\x9b\x51\x7d\x8d\x63\x8a\x15\x7c\x53\xab\xcd\x3c\xd2\x11\xeb\x8c\x30\xcd\xc6\x69\x66\x0a\xbb\x1a\xf5\x60\xf3\x5c\xf3\xe0\xd5\xb2\x38\xe8\x33\xb7\x3a\xbe\x0b\x7e\x59\xd7\xec\xb1\x19\x90\xba\xde\x3c\xef\x09\xa8\xed\x6f\x1d\x55\x9a\x40\x17\xc8\xfa\x10\xed\xaa\x69\x76\xc6\xfe\xf9\x76\xdf\x94\x71\x11\x93\x72\xa3\x7f\x70\x35\x4e\xb6\xee\x71\x10\x2c\x10\xc7\xa6\x63\x64\x78\x00\x28\x8b\xd5\x39\xf4\xa9\x73\x6f\x3b\x4f\x71\x1f\x83\xfa\x0d\x75\x65\xbb\xe9\xca\xd0\xba\xfa\x53\xa2\xbb\x48\x22\xec\xe6\xe4\x66\x64\x96\x4b\xa3\x24\x28\xd9\x5f\x54\x1c\xf8\x1a\x64\x86\x8b\xb4\x1c\x0c\x6d\x36\x4b\x3b\x54\xec\x20\x7d\xe9\xcc\x9e\xf5\x78\x2c\xcc\xdc\xc6\xc8\xfc\xe8\x54\x31\x24\x4b\x64\x75\x98\x92\x27\x0f\x7a\x9b\x8f\x62\xec\xe2\x0a\x05\x77\x80\x5f\xd4\x35\xdd\xb5\xa9\xdb\x2d\xb0\xdf\xd5\xa1\x29\x66\x3c\x89\xf9\x67\xb4\x85\x71\x26\xef\x50\xd6\xe7\xf7\x9a\xda\x3b\x59\xe4\xac\x0f\xa5\x65\xab\x07\x1d\x13\x65\x74\x9e\x51\x9c\xc9\x95\x91\x2f\x4b\x48\xf2\x9b\x60\xba\xc9\xbf\xd4\xce\xd3\xea\x5e\x57\xb5\xfc\xd2\xdc\xd6\x25\x05\xed\x8c\x4d\x99\x99\x56\x4d\xf3\x58\x03\x17\xb7\x57\x84\xf3\x87\xdb\x51\x12\x0e\x69\xfc\xcc\xb4\xa5\x4e\x5d\x6a\xb0\x5a\x37\xee\x93\x0e\x1e\xe4\x0c\xf9\x4c\x13\x7b\x87\x72\xc8\x35\xd7\x6d\xc1\x44\xee\x98\x82\x56\x1d\x53\xf5\x83\xed\xf7\xd3\xac\xc8\x1f\xa7\x2f\x60\xc9\x2d\x5a\x8b\xd8\x05\x8f\xac\xd3\xcd\x43\x33\xf8\x6a\x4d\x7a\xb7\xfa\x3c\xcc\x29\x31\xa4\xe1\x21\xec\x44\x79\xe2\xb2\xcc\x11\xa7\x30\x68\x12\xd6\x98\xac\xf8\x2f\xd7\x75\x3e\x23\x6a\xe7\x8e\xf1\xbc\xb4\xb8\x75\x63\x2a\x1a\xed\xdf\xdf\xce\x2c\xa9\x0e\x51\x41\x55\x55\xb2\x5b\xb4\x57\xb6\x36\xa6\x6e\xee\xd2\x62\xbb\x6b\x72\x78\x6e\x31\xcf\x9d\xae\x50\xf7\x12\x71\x81\xff\x87\xa2\x18\xc7\xd1\x6b\xdc\xb4\x90\x62\x8c\x7e\x24\xbf\x51\x04\x28\xc8\x47\xed\x6d\x39\xad\xf0\x37\x03\xd5\x27\x7f\x53\xdd\xcc\xeb\x0a\xe0\x71\x35\xa8\x89\x13\xab\x3b\xc8\x8e\xd4\x78\x16\xf7\x95\xa1\x3f\x14\xed\xf9\xcf\x11\xfe\x38\x29\xc2\x4f\xc3\x3d\xbf\xad\x26\xd0\x69\x99\x3d\x59\x3d\x32\x64\xda\x67\x90\x69\x62\xf7\xfe\x1b\x35\xe9\xbf\xaa\xe1\x44\x68\xf2\xe1\xde\x7c\x1b\xdf\x82\xa6\x08\xeb\xc9\x22\x52\xfe\x1c\x0d\x23\x71\xc9\xf7\x0c\x94\x6b\x81\xc6\xde\x1f\x53\x2c\x2b\x38\xa0\x0b\xc0\x41\x2d\x68\x76\x31\x15\xc5\x97\xea\x22\x91\x99\x4e\xa7\x23\x47\xe6\xda\x63\xb1\xc9\x15\x0a\xf1\xef\x4d\x14\x1b\xf9\xf7\x54\x37\x69\x71\xe9\x40\xcb\x9f\x2f\x35\x6f\x49\x6d\x72\x94\xd9\x5e\x3f\xcd\x20\xa6\x80\x2c\x7c\xb6\xa3\x52\x72\xfc\x6c\x7e\x4d\x4f\x80\xff\xd1\xfa\xe3\x1e\x9e\x92\x99\xd5\xdd\xd5\x3f\x73\x41\xfb\xc0\x82\xf7\x5a\xf5\xe9\xe6\xa6\x26\x4d\x40\x6d\x9c\xc1\xf4\x74\xd3\x15\xa3\xc6\xb3\x8b\x1a\xa2\x1a\x01\x1f\x66\x3c\x47\x08\x63\x56\xa4\x80\x98\xb8\x70\x4c\x6d\x18\x9f\x2d\xb6\x8b\x61\x16\xf5\x0b\x40\x70\xb8\xaf\x8b\x87\xa9\x74\xff\x45\x0f\xe4\x96\xba\x9d\x49\x12\xa1\xb9\xce\x93\x21\x3c\x35\x19\x13\x35\xc9\xc4\x92\xcb\xa8\x0c\xea\x10\x7a\x40\xc1\xe7\xd7\x7e\xb0\x9d\x8e\xba\xcc\x11\xc6\x70\xe1\xa6\xea\x2d\x31\xd5\x4e\x0c\xea\xfc\x0f\xca\xcc\xab\x98\xb3\xa0\xf9\xfa\x06\x5d\x39\x52\x12\x14\x19\xd8\xec\xad\x75\x25\x53\x15\x2e\x3f\x8e\xf5\x89\x84\xf7\xa8\xea\x5b\x7d\x82\x66\x15\xc8\x2e\x5a\x38\xb3\xdc\x39\xe5\xd5\x2f\xcf\x2b\xb8\xec\xfb\x94\x2e\x38\x92\x6a\x75\x0f\x91\x77\xf0\x3d\x44\x99\x7d\xb7\xf6\xfb\x29\x84\xd2\x5a\xbd\x43\xa2\x85\xa2\xc3\xfa\x2e\x49\x4f\x21\xc9\xdb\x9a\xc2\x8b\xfd\x46\x75\x3c\xc4\x65\x4f\x0e\xb3\x5a\xe9\x2c\x85\x77\x83\x9f\x75\x2f\x2b\x31\xbb\x72\x16\x45\x7e\xa3\x5f\x50\xd2\x0b\xe3\x2c\x1d\xdb\x2c\x5e\x23\x95\x52\xb4\x24\xbf\xa3\x87\x85\x33\x28\x71\xb1\x58\xef\x28\x20\x3d\xf4\x5e\xb8\xcb\x43\xb7\x06\xe1\xe5\x5a\x0d\x13\xb1\x36\x88\xe2\x58\x23\xdd\xea\xa0\xed\xbd\xbe\xc7\x8d\x0c\x5a\xa6\x5e\xd5\xaf\x91\x71\xd8\x27\x95\xe5\xc2\x8a\x89\x4b\x86\xd5\x57\x5f\x8f\x27\xf3\x96\x7e\x4c\x6f\xb9\xd6\x54\x18\xa7\xc5\x30\xb2\x19\xdc\x08\xc4\x3d\xc8\x77\x76\xbe\x36\x75\xb3\x0f\xbf\xd8\xce\x6d\xf4\x9a\x30\xf9\xb1\x5b\x6f\xaa\xb6\xcb\xcd\x86\x5c\x65\x9e\xea\x14\xef\xfa\xdb\x04\x65\x95\x9f\x34\x4c\xf3\x71\x54\x98\x78\x56\x89\x03\x9c\xa4\xb5\x24\xac\x41\x57\xe4\xfe\xf8\x93\x1d\xff\x09\x4f\xac\x6f\xaf\xce\xf7\xcf\xb7\xc3\x72\x54\xc6\xc6\x79\x33\x60\x99\xdd\x0b\x7c\xeb\xe3\x9e\xab\xa4\x4c\x59\xa4\xa3\xb4\x5b\xe5\x44\xa8\x47\x6b\x36\x04\xa8\x5e\x1f\x28\x91\x73\x3d\x53\x88\x4d\x61\x45\xb5\x06\xcd\x8d\xe3\xca\x18\x86\x6d\x86\x04\x78\xdb\x72\x1a\x89\xc7\xd5\x22\xeb\xdb\x51\x94\x44\x79\x81\x25\x0c\x38\xcc\xc7\x4a\xea\xf8\x63\x75\xa8\x16\x26\x8b\xfa\xfd\x96\x9f\xce\x3c\x40\x32\xc6\x6f\x54\xa6\xb5\x9a\xa5\x85\x6d\x29\x26\xf7\x79\xba\x02\x7e\xad\xea\xfb\x91\xc9\xaa\x9b\x4e\x51\x06\x45\xce\xff\x1c\x68\x95\x4c\xfa\x25\xfc\x00\x1a\x01\x9b\xf9\x38\x33\x6b\xdb\x06\x30\x35\xe2\xef\xf6\x18\xf8\x1b\x55\x26\x1c\xdb\xdc\xc4\xac\xc1\x2f\x22\x97\x2d\x25\x7e\xd9\x30\x14\x5f\x31\x59\x64\x48\x37\xdf\xe7\xca\x81\x9f\xe9\x5f\xac\x39\xbc\x8f\xf2\x35\x7d\x43\x2f\x68\x5d\xcc\x0b\x0e\xc9\xd3\xb5\x26\x1c\x12\x9d\x9d\x56\x09\x3f\xdf\xda\xb3\xf6\x4d\xbf\x28\x8e\xcb\x3c\x4a\xe9\x59\xb5\x9c\x6f\x39\x0b\xa0\x8b\x4c\xa3\xf2\xfb\x08\x7b\x55\x0e\xd6\x43\xaf\x13\xd0\xd1\x9f\x22\x1c\xa2\x8d\xb6\x05\x9b\x1c\xa6\x28\x36\xcb\xa3\x25\x69\x56\x80\x0c\x82\x61\xc7\xcc\xba\x27\x5d\xdd\x46\x9c\x03\xa4\x75\x63\x1a\xf7\x30\x4f\xea\xdc\xd2\xe6\x61\xda\x4a\xe0\x31\x25\x3f\x77\x07\xcd\xc8\x2c\xdb\x72\x8c\x5a\x07\xc0\x81\x0b\xaa\x1a\x7e\x10\xf8\xd1\x28\x87\x4a\x69\x77\xba\x93\xca\x0c\x1c\x1a\x8a\x21\x93\x88\x65\x82\x9f\xd4\x46\xc7\x99\x5d\x11\xf5\x5f\x41\x1b\xb6\x9c\xe8\xf4\xb4\x40\xea\xfe\xfd\xed\x22\x33\x49\x5e\x25\x94\x1c\xe7\xf1\xbb\xfe\xad\xae\xcc\xff\xad\x16\x9e\x19\xa6\x45\x8a\x1f\xc3\x19\x26\x2d\x2d\xc9\x36\x1b\x10\x1a\x45\x66\xa2\x44\x29\x45\x7f\x5f\x05\xa8\xef\xab\x98\x1d\x9b\x6c\x60\xf3\x82\x66\x88\x1c\xa1\xa0\xd2\x29\x23\x22\x6a\x21\x39\xf1\x48\x77\x70\xb3\xf9\x0d\xdb\xda\xe0\x1e\xa2\xed\x73\x4d\xb1\x2a\x76\xc1\x6a\x84\xff\x5c\x0f\x67\x91\x8a\x6c\x5d\x72\x25\x6d\x56\x05\x8d\x5e\x4d\x80\xee\x36\x85\x62\x47\x78\xae\xfe\x58\x08\xb3\xfe\xa4\x3f\x74\xf8\x77\x29\xc3\x41\x6e\xc0\x80\x44\xac\xcd\xb3\x4a\xdc\xed\xfa\xd4\x4e\xdf\x3f\xdf\x1e\x59\x93\x97\x19\x13\xc9\x90\xa0\x43\xb7\x19\xe9\x32\x58\x87\x28\x5d\x36\xbd\x63\x77\x16\x31\x86\x15\xbf\xec\x27\xf4\x17\x28\x81\xaf\xd5\x8e\x81\x26\x7d\x80\x9e\x89\x78\x8c\x84\xef\xfb\x12\xfd\x05\xbf\x6e\x90\xb3\x6a\x67\x76\x6c\x4d\x81\xf3\xcf\xc9\xd0\x79\x22\xc2\x86\x42\xca\x76\xcb\x2c\x19\x9a\x11\x57\x33\xca\x1c\x52\xfa\x02\x1b\x2a\xcb\xcb\xa3\x62\x97\x87\xf9\x3f\xb1\xae\x9a\x32\x9b\xea\xac\x87\xb6\x9b\xb4\xcb\xfc\xbd\x79\xac\xa3\xfa\x79\xe7\xd4\xe7\x8e\x22\x5a\x4c\x2f\x3b\x0c\xa1\x32\x1f\x7c\x73\xe2\x1b\x1e\x47\x15\xc1\x9b\x13\x24\x74\x4d\x99\xed\x8d\x10\xf8\x38\x83\x27\x64\x2b\xb5\x3e\xf7\x12\x83\x94\xce\xab\x72\xee\xb1\x75\x4f\x74\xf7\x0f\x2a\xb6\x79\xfe\xb8\x86\x00\x2b\x01\xf4\x7f\xb4\xde\xda\xbf\x1f\x81\xea\xb3\x9f\xec\xd0\x1a\xc7\x9a\xe3\x92\x80\x32\xf4\xaf\x7d\xaa\xa3\xb8\x78\xef\x4f\x5a\xff\xe4\x90\x43\xd9\xd1\x25\xba\x53\xfc\xc8\x1c\xf7\x0d\x77\xad\xbb\x7c\xf6\xb3\xff\x70\xdd\x93\x90\xfe\x9b\x4f\x77\x6a\x5c\x36\xaf\x4f\xff\xe8\xfa\xf6\x7e\xc3\xaf\x90\x22\x32\xa1\x22\x84\xd8\xec\x67\xa9\x8c\xc2\x16\x61\xb1\x46\xed\x65\x13\x97\xa3\x28\x29\x47\x58\xa5\xae\x28\x73\x9f\x01\xcb\x72\xdc\xba\xbf\xae\xb5\xa2\x97\x4d\x42\x0b\xcd\xe9\x06\x39\xf7\x91\x9f\x4d\xad\xe6\xaa\x3e\xa9\xc2\x52\x8d\xd2\x73\x5c\xd9\xc8\x1c\x77\x58\x8f\x91\xc9\xca\x24\x2d\xc3\x61\xc4\x6b\xd3\x71\x2e\xbd\xb1\xd4\x1f\x2b\xfc\x57\x91\xc6\xbd\x9d\x4a\xf2\xef\xfc\xa4\xe6\xcf\x51\x7d\x05\xef\x4a\xc5\x54\xe1\x2e\x13\x2e\xeb\xbf\x57\x11\xe2\xd7\x3e\xfb\xd9\x56\x55\x5c\x63\x0d\x1e\x53\x0e\x64\xd3\x82\x73\x47\xe6\x5e\xae\x4e\xe5\x35\xcd\x3c\xbc\xac\xd4\xae\x2f\x4f\x6d\xd1\xe7\x9e\x6b\x7f\xea\xf3\xbf\xbb\xf8\xf9\xdf\x5c\x40\x96\x27\x0d\x46\xfa\xc5\xfc\x46\x39\xff\x7f\x18\xf8\x06\xc0\x87\xea\x47\xc6\x11\xc0\x80\xc0\xd6\xdc\x56\x74\xd6\x8b\x9a\x01\xe3\xef\xe9\xd8\x66\xa1\x4d\x0a\xc3\x2d\x7b\x0c\x16\xae\xea\x29\xc3\x55\x4d\xac\xcb\x9e\x7f\x54\xb7\x5b\xce\xa3\xdb\x87\xc4\xf1\xa8\xe6\xca\xef\x80\x7d\xa7\x60\x79\x55\x3c\xa3\x68\x2c\xdd\x46\xcd\x5b\x50\xd8\xdf\x9a\x0c\xcc\x14\xfe\x75\xff\xbc\xf7\x09\x69\x79\x32\x02\x3c\x54\xf9\xb5\xe2\xc3\x14\x66\x99\xac\xa6\xfc\x48\xe1\x4b\xe8\x6c\xf0\x9b\x89\x72\x4c\x7b\x57\x39\xda\xbe\xa7\x10\xa8\x6f\x20\x73\x13\x1d\x3f\xd5\x6d\x3f\xab\xaa\x18\x8c\xc6\xd0\xf2\xf9\xdf\xa6\x7a\x50\xd5\x7d\x6b\xb3\xfd\xaf\xeb\xb6\x21\x3e\x7d\xa8\xd2\xb5\x0f\x6b\x5b\x29\x0f\x53\xea\x34\xf0\x64\xac\xd6\x05\xda\x50\x32\xbf\x8c\x83\x95\x91\xbe\xef\xe7\xf7\xa3\x22\x1c\xf2\x7e\x41\x3d\x76\x46\xd3\xad\xcf\xd4\x92\x43\x93\x2f\xcf\x2a\x38\x34\xf4\x0e\xc5\x00\xb4\xba\x4e\xe1\xce\x7b\x7d\x96\x69\x03\xf2\xfd\xf3\xed\x28\x8f\x0d\x9d\xc2\x3e\xb7\xc4\xf2\x47\x70\xfd\xee\xa4\x96\x81\x4e\x87\x84\xc5\x76\xd7\xc6\x31\x35\x4b\x39\x6c\xf2\x01\xc4\x6f\x1a\x34\x38\x17\xda\xfd\x34\x8d\x5b\x0a\x80\x5f\x57\x20\x52\x0b\x7e\x14\xe5\x55\xba\x4a\x9f\xce\x73\xcc\xc0\x8f\xb3\x37\x54\xaa\x9a\x98\x2c\x4b\x57\xab\xa4\xac\xfa\x72\x1c\x45\x1f\x2a\x20\xd6\x87\x53\x5c\x85\xaa\xb2\x2b\x93\x71\x66\xc7\xc6\x31\x9c\xd1\x43\xfa\xf1\xc4\x0f\xe1\x7e\xac\xa2\x54\x4e\xf2\xa5\x4b\x73\xd2\x90\x09\xfc\x7c\x01\xd0\x33\xcc\x7d\xef\x2a\x77\xcb\x07\x81\x62\x7d\xb0\x12\x36\xff\xc5\x54\xb6\xfb\xca\x2b\xed\x38\x0d\x9d\x28\x2e\xca\x08\x6e\xcc\xf3\x9b\xa9\x07\x70\xf0\x20\xeb\x7d\xb6\x7c\x8b\xe4\xb4\xe2\xd8\x9c\x56\x54\xab\x74\x3c\x4e\xb3\xa2\xac\x92\xff\xbc\xa5\xa8\x10\xca\xdd\xf4\xe2\x64\xaf\x68\xe1\x2e\xbe\x78\xe8\x17\xab\x20\x2a\x0e\xd0\xd5\x1f\xa0\x62\x3f\x05\x07\x39\x31\x91\xf2\xc9\x1f\x63\x9d\x70\xc3\x67\x3b\x24\xe2\x8d\x50\x8d\x5d\x03\x10\xd4\x45\x22\xaf\x80\x4e\x72\x73\x32\xad\xfc\x83\x9b\x7b\x36\x50\x51\x60\x06\xc2\x6e\xf8\x29\xdf\x0c\x14\x42\x61\x1d\x33\x3c\xd6\xd7\x20\x19\x0d\x44\x7a\x6c\x02\xb4\xa3\x5a\xeb\x94\x94\xb2\xf0\x13\x9a\xd5\x08\x1c\xcc\x84\xc2\xc0\xf4\x16\x35\x3b\x91\x49\xb6\x28\x5d\xc0\x33\x64\xef\x75\xc9\x69\x5b\xbf\xf9\x3b\x3c\x10\xbb\xa5\x4d\x89\xae\x91\x1c\x2b\x0f\x65\xb1\x6f\xb1\x1c\x3e\x08\x1e\x57\xe6\xef\x76\xf9\x51\xfa\x6f\xb8\x4a\x36\x08\x40\xa3\x08\x33\x33\x91\x1a\xa0\x2b\xc6\xe5\x33\x11\x96\xdf\x4c\xea\xa5\xed\x6f\x89\x03\xef\x3b\x4a\x3c\xef\x9d\xc0\xf7\x2c\xcf\xb8\x12\x27\x8e\x46\xe3\x78\x8d\xd0\x70\xc8\xe9\xd0\x12\xc0\x4e\x45\xae\x8f\xb6\xf3\xfb\x58\x67\x38\x48\x9c\x63\x61\x94\x0c\x62\xe8\x86\x09\x46\x5a\xe1\xa5\x1b\x1a\x92\xe2\x32\xc0\xc1\x05\x69\xc5\x31\x5a\x48\xe2\xc3\x4e\x77\x5f\xa4\x04\x94\x2a\x4d\x59\xc4\x69\xba\xdc\xf2\x48\x8c\x3a\xf8\xea\xd1\xa8\x3d\xce\x6c\xff\xd7\xda\xff\xe9\x3f\xa4\xfb\x07\xb6\x0e\xda\x7c\xc8\x62\x1f\x5f\xaf\x72\x37\x14\x99\x57\x15\x54\x6a\x76\xbd\x5a\xd3\x48\xa6\x1e\x25\x29\x7b\x9c\x07\x77\x08\xcf\x81\x76\xe1\xb3\x84\x08\x92\x23\xad\x5a\x07\xae\x41\xf8\xdb\x9f\x77\x6c\x58\x75\x68\xd2\x28\xc3\x81\xbe\x54\xfa\xbb\x1b\xa2\x32\xac\x6a\x3f\x51\x70\x98\x7f\xdc\x51\xea\x86\x3b\x3a\x3b\x3e\xcd\xe5\xcc\x1e\x92\x88\x61\xf1\x32\x8a\xdd\x68\xe4\xee\x44\xdb\x12\x07\xf0\x45\x2d\xdc\xf0\xc9\x75\x15\xb9\x9e\x59\xa7\x73\x40\x46\xc0\xd8\x50\xe8\x5c\xfe\x7b\x9d\xd6\x73\xcf\x39\x34\x00\xdd\x78\xa4\x54\x3b\xd6\xa9\xff\x22\x33\x86\x5a\xbc\xf2\x05\x69\x68\x7b\x26\x53\x04\xcd\xf7\xe9\x81\xf0\xeb\x06\xb0\x7c\x18\x47\x09\x10\x17\x35\xe7\x7f\x01\xa6\xb8\xaa\x1b\x65\xab\x1a\x79\x20\xa0\x08\xae\xca\x8f\xf1\x32\x1b\xa6\x65\x96\x13\x5b\x56\xe4\x1a\xb0\xcd\x44\xbb\xc1\xb7\x39\xc6\xa4\x82\x93\xa5\xd1\x32\xa0\x7f\x58\x61\xdf\xd1\x16\x07\x7f\x4b\x37\x97\x0d\xe8\xd5\xbc\xbf\x67\xcb\x22\x0f\x87\xb6\x45\xcf\xd7\x71\x7c\x0e\x78\x8e\x8f\xcc\xbd\x97\x93\x74\x35\xb6\xbd\x01\x57\x93\xda\x76\x13\xfd\xc7\xdb\x34\xc9\x15\x2f\xb7\xed\x67\xef\x67\xda\x85\x35\xe1\xd0\x0a\x5d\x0b\x3f\xe5\x7f\xc0\xf2\xe1\x37\xaa\xc5\x96\x87\x26\xeb\x13\xa7\x6e\x69\x91\x07\x97\xa8\x56\x9d\xa2\x99\xc3\xec\x9f\x7d\xa8\xbf\xcf\xc8\xf6\x22\xbb\xc2\x9d\x32\xb7\xc0\x95\xf2\x6d\xad\x96\xde\xe7\xc2\x86\x27\x46\xba\x88\xe8\xe9\x15\xd7\x95\x32\x49\x5a\x16\x49\x39\xea\x8a\x64\xc8\x0b\xde\xab\xce\xfb\xd6\x4d\xb4\x2e\x70\x5e\xa0\x1d\x36\x7f\x98\x61\xc9\xc7\x94\xce\xf4\xb1\xe0\x69\x35\xcb\x29\x4c\x14\xdb\x8c\x7f\x07\x3a\x46\xb7\x74\xfb\xe8\x56\x43\x6e\xff\x42\x7b\x68\x4d\x31\x5b\xdd\x33\x69\x6f\x78\xda\xc2\x56\xe0\x19\x68\xc7\x27\x4a\xb9\xf7\x27\x53\x5d\xe0\x83\x07\xdb\x36\x4c\x93\x74\x14\x85\x1c\xcd\x70\x1a\x1c\x53\xd4\x68\x16\x0f\x41\x7b\xf2\xaa\xaa\xd2\x7b\xd1\x20\x2a\x4c\xbc\x9b\x6e\x88\x58\x2d\xb4\x9c\xe4\x39\x0f\xc9\x64\x18\xad\x20\x34\xa8\x5f\x91\x28\xbe\x4e\x71\xd3\x19\x35\x78\xc5\xb1\x0f\x82\x4f\x3d\xe4\x69\x93\x28\xa7\x29\xe3\x5e\x3e\xab\xa4\xb1\x41\x8f\xc4\x24\xe0\xa2\x9e\x9c\xcd\x76\x74\xa9\xf6\xe3\xc9\x36\xaf\xc7\xe7\x9e\x6b\x3f\xf7\x9c\x9a\xba\xbd\xad\x70\x0d\x6f\x2b\x8e\x7d\x5c\xf4\xf8\x19\xe1\x5c\x61\xc4\x32\xbf\x59\xd7\x39\xec\x78\xcc\xed\x5d\xf1\x71\xad\xf6\x8b\x8c\x4d\x1f\x06\x41\x28\xd2\xb4\xa5\x40\x93\xc7\x95\x0a\xd9\x71\xed\x6f\x52\x26\xbd\xf4\xef\xe0\x1e\x4d\xb5\x6a\x5e\x3c\xd4\xee\xc6\x65\xbf\x5f\xb3\x96\x3d\xa3\x73\xf5\x33\x53\x7f\x54\xa5\xbf\x89\xb5\x3d\xde\xc2\xdc\xef\x47\xd7\x4b\x9a\xff\x0d\x1d\x9e\x4f\xcd\x1f\x78\xe1\xc0\xe1\x43\x33\xdb\x51\xd6\x5c\xfc\xd3\x60\x98\xb5\x6a\x3b\x4f\x3a\xac\xd4\x4a\x1a\xaf\x40\xa9\x4d\x6a\xce\x07\x13\xaf\x86\x87\x9e\x84\xb3\x79\x74\x3a\x01\x30\x6b\x13\xfb\x2e\x5a\x69\xd8\x5c\xec\xa8\xef\xdc\x5f\x3c\xeb\xf5\x13\xce\x0b\xbe\x9b\x96\x49\x6f\xd6\x83\x60\xae\xea\x46\xd4\x19\xfc\x0d\x1a\x82\x3b\x94\xa7\xe7\xf7\x1b\x11\x7b\xdd\xcc\x24\xe1\x50\xc6\x5c\xac\x12\xab\xd5\xc5\x8e\xab\xc9\x6d\x3e\x4a\x97\x1d\xf6\xbf\xa6\xa9\xce\x6a\xc9\xca\xce\xee\x01\xe6\xb0\x92\x68\x7a\x99\xab\xb1\xc9\x96\x5b\x7a\x62\x50\x1b\x25\x4c\xcb\x79\xb4\x87\x91\xcc\x9f\xf1\x61\x37\x02\xb5\xd5\x6f\x28\x98\x60\xdf\xae\xda\xbc\x20\x37\x16\x9c\xe0\x1f\x62\x86\xe1\xf0\xa0\x6e\x48\x7c\x86\x54\x88\xf9\xa0\x9d\x22\x22\x7e\xa6\x1d\x0e\xad\x19\x93\x62\x5b\x95\x28\x88\x72\x76\xcb\x89\x7c\xbe\xdf\x84\xd8\x87\xb0\x4c\x8d\xa3\x7d\x5a\xb5\xba\x9e\xea\x28\xed\x84\xc7\xd6\x9b\x1e\x46\x15\xc9\x12\x6b\xf3\x96\xa6\xc5\xd7\xc8\xf3\x0d\x85\x46\x6c\xcd\x8a\x3c\x3f\x3c\x86\x6f\x04\xea\x99\x7c\xa3\x51\xa5\xc1\x9a\xdc\x70\x22\x80\xec\x0a\x9a\xa3\xfc\x7a\x8a\x5f\x4b\xdc\xbe\x57\x5b\x2a\x61\xfc\x50\x39\xe2\x7e\xa8\x08\x28\x79\x11\xd1\x78\x0c\x82\x67\xc2\xf4\xf3\x95\xd7\x07\x53\x4f\x78\xff\x7e\x72\xb7\x9d\x51\x62\x67\xb0\xbf\xc1\xe2\xfe\x40\x0b\x64\x5c\x68\x90\x7b\x69\x0f\xad\x74\xa9\x18\x11\x4c\x37\x9d\xe5\x53\x27\x8a\x74\x73\x4d\xe1\xc1\xef\x60\xd3\xb1\x95\x5c\xe0\xd9\xee\xb6\x17\x25\xdd\x32\x1b\xa0\x74\xab\x81\xf0\xf9\x4d\x13\x0f\xb4\x88\x46\xa4\x8f\x4e\x78\x98\xd6\xd2\xdc\xd6\x86\xca\x7b\x72\x9b\xe4\x51\x11\xad\x44\xc5\xda\xcc\x14\xb9\x54\xab\x77\x61\xd5\x5e\x0a\x6a\x86\x24\xc5\x70\xb7\x02\x31\x3c\xd0\xd0\x9d\x5d\xeb\x9e\x5b\xb9\xab\xa3\xdc\xa9\xbf\x82\xcb\x06\xa4\x61\x6b\xe2\x85\xed\x40\xb6\x17\x85\x0a\xc9\x99\xd2\x15\x9b\xf5\x32\xb3\x9a\x28\x8f\xb0\xf3\x4a\x19\x64\x0b\xc7\x1f\xca\xfb\x4b\x4d\x44\xd4\x7e\x24\xb4\xdd\x46\x2b\xbb\x87\x65\x3e\xbd\x28\x23\xc4\x02\x6e\x8b\x74\xf8\xfd\x9e\x39\xa3\x3b\x93\x77\xd5\x32\x2b\x22\x93\x98\x64\x64\x31\xbe\x16\x57\x27\x05\x84\xbc\x18\x6c\xe7\xe3\xbb\x93\xca\xc6\xb6\x1f\xa7\x19\x50\x7b\x8d\xe0\x56\xff\x3d\xf6\xd5\xb1\x21\x2b\xa9\xdd\xca\xfe\x0b\x8a\x26\xc8\x85\x31\x75\x40\xb5\x35\xd3\xa9\xa9\xd6\xd7\xf4\xec\xbd\x82\x16\x23\xbc\xf8\xa3\xb4\x5a\xf7\x30\x4a\x0c\xf2\x33\x71\xa8\x6f\x29\xeb\xfa\x5f\xa8\x1f\xfc\xd4\x0c\x5b\x58\x58\x64\xd5\x76\xd4\x4b\xaf\x23\x5a\x40\x17\x6a\x43\xa1\x7b\xbf\x07\xb0\xab\x43\x6f\x2e\x2d\x0a\x53\x03\xa3\x42\x37\xc9\x7d\xee\x39\x1f\x97\xab\x7d\x87\x1a\xf8\x4d\x5a\x36\xce\x38\xcc\x93\x69\x36\x14\x8b\xfd\x64\xe0\x5b\x89\x1f\x20\x7b\x62\xb8\x0c\x6e\x85\xf0\x3d\x6b\x0a\xd1\xd5\xa1\x2a\x92\xf1\x8a\x84\x5a\x14\x99\x01\x94\xa5\xca\xf7\xa5\x77\xe7\xe5\x7c\x4f\xba\xd9\xfe\xff\x3b\xd3\xf1\x09\x8d\x1c\xb3\x05\xda\x38\x18\x5e\x9c\xd6\x02\x50\xa7\x03\xed\xc4\x67\x0b\x9b\xd4\x74\xab\xce\x6b\xd2\xc2\xf9\x46\x79\xb5\x61\x3a\xb6\x50\x56\xe0\x06\x49\xc7\xb7\x0e\xee\x53\x26\x20\xca\x39\x72\x94\xaf\x9a\x70\x99\xc2\x86\xef\xa3\xf9\x9e\x9a\xeb\x10\x74\x09\xae\x83\xbe\x36\xee\x2f\xcb\xaa\x3a\x35\xee\xa5\xb9\x43\x1c\x55\x60\xe5\x06\xb0\xc8\x8e\x4e\x83\x08\x6d\x98\x86\xa9\x69\xf9\xb9\x28\x60\x05\x62\x27\x51\x1b\xdf\x0f\xa2\x24\xdf\x55\xdd\x74\x86\xb0\xd1\x25\x20\xc2\xb0\x4a\xab\xeb\x62\x57\xf7\x49\x4a\x17\x35\x7a\xff\x39\xad\x41\x5c\xcf\xad\x89\xf7\xa9\x1f\x46\x85\x30\xf8\xb0\x78\xce\xea\xe4\xf9\xac\xa3\xca\x8f\x6d\x5c\x08\x2c\x50\xa2\xbb\x6a\x25\x5e\x54\x9e\xfd\x63\x9b\xe4\x26\x4c\x63\x18\x90\xa0\x4d\x0f\x25\x78\x7e\xdd\x11\x26\x59\x92\x16\xa4\xd3\x58\x48\x0f\xd3\xa9\x06\xb9\x18\x7c\xca\xf5\xf7\x8b\xa8\xba\xf7\xb1\x49\xc0\x84\x97\x6e\xa8\x9f\x68\x4e\x0b\xd9\x1f\x99\x6b\xe7\x85\x35\x30\xd8\x47\x6b\xff\x91\x8e\xaf\x19\x6e\x01\xa4\x89\xf6\xf1\x51\x35\x7b\x38\xf0\xe2\xc2\x2e\x5c\x2a\x5a\x54\xc0\x6a\x60\x0f\x3d\x81\xfb\x0d\x90\x07\x7b\xb4\x3a\x46\x54\xb5\xe7\x11\x30\x6f\xe1\xee\x88\x52\x8d\x5a\xd0\x31\x49\xb8\x50\x72\xa4\xbb\xbb\x35\xc8\x17\xbf\x09\x94\x46\xca\x54\x19\x43\x93\xad\x30\xcd\x32\x9b\x8f\xd3\xa4\x67\x39\x8b\x60\xaf\x61\xba\x2f\xe2\x3b\xec\x37\x5e\x1c\x75\xd3\x6c\x46\x93\x01\x79\x6e\xed\x24\xa9\xaa\xaf\xc7\x29\x3d\xb3\xde\x60\x9f\x86\x86\x84\x1c\x14\xb8\x0b\x57\x95\x55\x02\x6f\x64\xc1\x67\xfb\x55\xe1\x08\xb1\xa0\x00\x02\xf1\xb7\xc1\x53\x00\x04\xa1\x1f\xe9\xe2\x1e\xc0\x50\x60\x2e\x10\x7f\xf9\x75\x4d\xf1\xb8\xf7\x3c\x2d\x32\xa7\x51\xe6\xc5\x98\x2f\xa8\xb6\x62\x37\x2d\x86\x4f\xe2\x9b\xd8\x52\x4a\x9b\xaa\x9f\xc0\xd7\x4a\x72\x5e\x7d\x1e\xb6\xf3\x59\x0a\xcf\xe2\x4c\xe2\xc7\x85\x7b\xb1\x04\x54\xd1\x20\x69\xf3\x6e\x9a\xbb\x6a\x03\x7c\xbe\x98\xc0\x0b\x4b\x7c\x39\x50\xed\xeb\xbd\x1d\x8a\xab\x42\xd9\xac\x16\x05\xd2\xe9\x53\x5a\x4b\xf8\xc1\xd4\xca\x7e\x69\xfe\x70\x3b\x4d\x78\x70\xee\x4e\x19\xa7\x44\xb8\xa1\x16\x5c\x3f\x0d\x4b\x5a\x70\xae\xdf\x5b\x87\x22\xfa\xc6\xf8\x79\x9c\x4d\xfc\x26\xf0\x73\xa7\x9e\x0d\x97\x2d\xf3\x17\xd0\x56\x3e\xa6\xe4\x06\x6f\xe2\x88\x11\xf9\x1d\x4d\xe9\x4b\xe4\xf4\xa8\x6e\x24\x2a\xa1\xb3\x74\x78\xf0\xeb\x46\x38\x59\xbe\x6a\xed\xd8\x1d\x24\xc2\x72\xf2\x05\xe0\xb1\xe0\xd9\x29\xb8\x51\xde\x7f\x75\x46\xf5\xec\x36\x15\x91\x98\xfb\x8a\x68\xe0\xdf\x69\x92\xa0\xc9\xec\x8a\x35\xb1\x18\x33\x22\x55\x82\xdc\x3a\xda\x81\xaf\xe3\xbe\x60\xfd\xdd\xd6\xcc\x8a\x74\x0d\x30\x97\x17\xa4\x8d\xa5\xdc\xd2\x4e\x34\x0d\x88\xfb\x99\xb5\xaf\x59\xc5\xe4\x3c\x1a\x28\x0d\xad\xa3\x1a\x96\x1f\x97\xa3\xae\x08\x70\x80\x6c\x86\x33\x9e\x5f\x4f\xc9\x1c\x41\xe3\x31\x67\x96\x4d\x9a\x82\xab\x8f\x8d\x78\x0d\xe7\x02\xbf\x51\x6d\x80\x38\x4d\x97\xf3\x3d\x0a\xb5\xcd\xac\x07\x36\xeb\x0d\x94\xf4\xc4\x06\x75\xf6\x65\x97\x7b\x22\xd7\x69\x4c\x22\xc4\xde\xb7\x5a\x66\x22\xe0\xef\x5b\x67\xe7\x9a\x72\xd5\x41\x9c\xa6\xa3\x96\x2a\x99\xdf\x57\xdd\xa7\xf7\xd5\xfa\x1b\x47\x79\x51\x9d\x10\x07\x84\xc5\x07\x82\x3c\xbf\x9e\x76\x79\x5c\xa4\x6e\x68\xd6\x93\x30\xe5\x50\x1c\x07\x0f\x6e\xdd\x0a\x94\x1b\xba\xb7\x3b\x5b\x49\xc3\x2a\x6f\x76\x22\x78\x97\x15\x8a\xea\xb2\xe2\x66\x8e\x33\x3b\x48\xa4\x62\x43\x68\x38\xaf\x7c\xb2\xcf\x2b\x22\x6c\xb5\xfc\x29\x75\xa9\x4a\x57\x36\xfa\x81\x78\xb9\xb8\xfe\x6c\xaf\xee\x8e\xcc\xb5\x4b\xb6\xe0\x46\xd4\x3f\xae\xa4\xf8\x8e\xab\x02\x3b\x4e\x73\x62\x6c\x68\x40\x9b\xeb\xc9\x6f\x6a\x75\xc6\x04\xaa\xe1\x58\xfd\x90\xe3\xe3\xd7\x4d\xcb\x13\xb7\xad\xe5\x87\x4e\x28\x8d\xf8\x75\x43\x7f\xa7\xdd\x8f\x2c\x35\xd0\xb4\x24\xb4\x1f\x81\x30\x1c\x98\xc7\x4c\x94\x84\x81\xbe\x71\x42\x11\x31\xb2\x28\x1c\x9a\xac\xb7\xcb\xcf\x5a\x8e\xea\x67\xc4\x6b\x97\x27\xd9\x74\x9d\xfc\xaf\x74\xad\x80\x01\xa3\xac\x0e\xc5\x58\xb4\x5f\x48\xa3\x64\xb6\x5a\xba\xda\xc5\x48\xa1\x18\x5f\x76\x3a\x8f\x38\x21\x84\x33\xaa\x34\x05\x4d\xd6\x4d\x93\x9d\x1e\x01\xbf\xae\x04\x45\xaf\x05\xca\xa2\x86\x19\x7e\x9c\xab\x07\x1e\x3f\xbf\x3e\x55\x2f\x2f\xcd\x91\x66\x11\x70\x15\x38\x57\x3e\x56\x67\xcc\xc7\xd3\x58\x81\xfd\xed\xbc\x48\xc3\xe5\x61\x1a\x0b\xa2\xc9\xb1\x90\xfd\xe8\xe0\xa8\xaa\x59\x73\xb1\x62\x90\x1a\xe3\xff\xe4\x4b\xe4\x77\xca\x9a\x7a\xd9\x66\xb1\x28\xd1\xe3\x4e\xbf\x15\x78\x78\xe0\x5b\xde\xe4\x27\xab\xb6\xa2\xb8\xa5\xa3\x87\xc7\xc7\x2e\xbf\x99\x1a\x74\x01\xdc\x17\x79\xc1\x1e\x3c\x24\xd4\x6b\xfc\x7a\xca\x3d\xe3\xe0\xc1\x76\x94\x14\x59\xda\x2b\x43\x0b\x05\x64\x49\xc5\xe9\x6e\x4b\x8e\xae\x18\x75\xf0\xfa\xe2\xd7\x1e\xf2\x14\x8d\xba\x33\x3e\x0c\x41\xd1\x54\x8e\xfd\x6a\x9d\x4a\x68\xd8\x7e\xb7\x5f\x79\xa5\x6d\x7b\x65\x68\xbc\xdf\xad\xe6\x12\xcb\x8a\x79\x4a\xb9\xd6\x25\xc5\x30\x5e\xdb\x4d\x9b\x9d\x65\xa0\xb5\xb7\x2f\x54\xc6\x14\x2b\xf8\x65\xaf\x1e\xe8\x30\x7d\xc0\x35\x61\xc5\x5c\xc2\x95\xf2\x5f\x2b\x80\xe2\x28\x4d\xa2\x22\x85\x08\x0f\x72\x16\xe4\xb4\xa8\x34\x4e\x4d\x94\xf4\xe5\xf5\xc9\xb3\xf5\x5a\xf5\xe0\xc1\xf6\xd2\xdc\xd2\xa3\xd5\x9d\x42\x0c\xba\xa6\x64\xab\xaf\x53\x7f\x19\xe9\xc7\x77\xb0\x33\x90\x7e\xb0\x9c\xa5\xf3\xdb\xf4\x2a\x2d\x47\x03\xe5\xf8\xfd\x65\x3a\xd9\x59\x60\x2a\xf0\xd0\x82\x73\x0a\x22\xd0\x2d\xe3\xe5\x96\xd7\x19\x7a\x07\xc9\x13\xbf\x69\xea\x48\xe5\x45\x3a\xa6\x3f\x40\xc6\xf0\x06\x7e\x17\xbf\x51\x8a\x3f\x03\x53\x0c\x6d\x16\x25\x83\x9d\x3e\x10\xde\x57\x34\xf8\x4b\x38\xa5\x90\x8e\x0d\x27\xea\x20\xd5\x22\x0f\x7f\x54\xa7\x94\x27\x83\xbd\xf4\x75\xda\x74\x8b\x07\xe3\x34\xcd\x56\x02\xb1\x0b\x7a\xf6\xb8\xe8\xf4\x42\x5b\x4e\x00\x0b\xcd\x68\x17\x22\x1d\xd5\xe7\x16\x4d\x56\x9d\xec\x92\xcf\x44\x19\xfb\x8b\xe0\xbf\xb7\xf3\xb4\x92\x84\xed\xdb\x24\x67\xeb\x55\xe6\x4f\xd3\xed\x16\x2e\xf5\xc3\x1a\x2e\x8e\x1e\x07\x2d\x04\xcc\xe2\xd1\x43\x71\x1e\x40\x8e\x67\xf9\xae\x2b\x12\x33\xbb\x96\xa4\x71\x4f\x46\x5c\xc2\xbc\xa1\x5f\x27\x7d\x85\xed\x27\xc3\xe1\x17\xdb\x36\x19\x10\x16\xeb\xc8\x9c\xa4\xd0\x81\x3f\x33\x37\x6b\x60\x9d\x6e\x9a\x60\x04\x83\x18\x72\x56\x01\x48\x91\xf3\x48\xaa\x5d\x2d\x50\xfe\x37\x35\x23\xae\x38\xea\x96\x2d\x35\x2c\x67\x01\x66\x31\x85\x6d\xa8\x0b\x87\xe5\x88\xcb\x5e\xb1\xf0\xab\x1e\x83\x20\x26\x25\x2b\xc8\x87\xd6\x66\xb3\xbe\x10\xf9\xb1\xbe\xea\xd3\xb4\x73\x45\xb7\xdc\xb7\x10\xaf\xd5\x7c\xca\xca\xa4\x78\x82\x7e\x19\xd0\x1d\xb3\xeb\xb8\x8b\x8e\x44\xe2\x24\x17\xe0\x7e\x82\xca\xe3\x0d\x5a\x20\xf8\xe8\x47\xd7\x7d\x86\xfe\x75\x1c\x36\x38\x79\x1e\x01\x18\x13\x31\xe5\x63\x20\x9c\x38\x25\x53\x1a\x1b\x37\x02\x35\xc3\xba\x1b\xcc\x56\x65\xa3\xcb\xdc\xaa\xb4\x1c\xd1\xf0\x12\x96\x1e\xda\x22\x67\x1e\x3a\x21\x35\x51\xa6\xc7\x9d\xe8\x24\x71\x01\xc5\x6f\x1a\xbd\x10\xc9\xcd\x82\x7b\xe3\x38\x7d\x8e\x6b\xa5\xf7\xe3\x81\xd7\xac\xef\x47\x61\x11\x15\x51\x5a\xf2\x3f\x47\x0c\x62\x9d\x4e\x7e\xa3\x04\x30\x7a\xd1\xc0\xe6\x88\xd2\xd5\x3f\x10\xfd\xd6\xea\xbe\x8a\x7c\xab\x57\x83\x33\xa3\xa8\x47\x2a\x11\xcc\xf7\xa4\xdb\x8c\xec\xe4\x5e\xa0\x64\x06\x36\x69\x53\x4a\x9a\xa6\x64\xe6\x4e\xab\x06\xf5\x38\xb3\x79\x54\xd5\xdd\x4f\x78\xb7\xe7\x9d\x90\xe0\x41\x68\xf9\x1b\xc4\x79\x7c\xcc\x45\x74\x63\x70\x93\xae\xe1\xcb\x54\xfc\x78\x01\x0f\xf5\x5d\xd8\x3f\xe0\x99\xbc\x8f\xa7\x8d\x72\x62\x57\x47\x81\x5c\x7e\x7f\xe2\x93\x11\xd6\xa3\xc0\x82\xda\x47\x8b\x08\x9d\xca\x9b\x13\x3d\xb0\xfc\x48\xe1\x01\xbf\xef\x54\x2b\x88\x7c\x60\x4d\x5e\x50\xd8\x44\x84\x87\x6b\x38\x92\xaf\x59\x12\x58\x13\xe6\x83\x2a\x8f\xb0\x11\xc4\x47\xac\x41\x9e\xd4\x46\x55\x40\xa6\xaa\x13\x10\x8d\x0b\x04\x15\x61\xc9\xa6\xc0\x3b\xf5\x9f\x41\x17\x46\x82\x97\x0f\xe9\x3d\xc2\x28\xac\x55\xd5\xa3\x73\x40\xf8\x38\xf0\xfd\xdb\x8f\x5d\x84\x4a\xca\x28\x37\x09\xfb\x56\x23\x67\x87\xd0\x1f\xbf\xae\x4e\x77\x09\x9e\x51\x3e\xce\xd2\x71\x9a\x11\x7d\xb6\xb0\xf1\x1a\xc1\x04\xb1\xae\x3e\x98\x78\x1a\x06\x3e\x40\x44\x2a\x5b\xbf\xfd\x79\x7e\xa8\xaf\x37\x8d\x71\xd2\x6e\x1e\x5a\x4e\x9f\x9c\x2b\xa3\x77\x68\x74\xe9\x13\xf3\x02\xd1\x40\xac\x9d\x1e\x08\xba\x60\xef\xe1\x6c\xbd\x82\x04\x00\xfd\xc0\xf7\xea\xcc\x97\x11\x33\x5f\xa4\x8b\xa9\xf6\xee\x89\x40\xf7\x47\xbe\xf0\xfc\xac\xd2\x70\xa2\xbe\xf8\xcb\x4e\xc1\xd4\xfb\x2e\x7f\x4c\x17\x2e\x5e\x58\xfe\xa8\x89\x4d\x32\x28\xcd\xc0\x82\xfd\xe4\xba\xcb\xce\xc6\x1e\x59\x37\x32\xd6\x9f\xe2\xf7\xf2\x1b\x65\x62\x68\x5f\x1d\xdb\x2c\xb2\x49\x68\xf7\xa8\x56\xc9\x79\xba\xa7\x6c\x49\x48\x1f\x83\x06\xc2\xae\x4e\xb5\x34\xc4\xaa\x90\x7e\xbc\x13\x0f\x71\xce\x3d\xf7\x95\x80\xcf\x0d\xdc\x40\x00\xc6\x6e\xba\x5b\x4d\xa2\x26\x99\xdd\xad\xca\xeb\x9f\xd0\x27\x00\xbb\xb3\xa5\xf2\xb8\x9d\x04\x66\x13\x69\x2e\xfa\x8d\x58\x38\x78\x1c\x48\x1d\x3f\xc4\x66\x46\xe3\xfe\x4f\xdd\xd7\x24\x26\xca\xd2\x6e\xa4\x8a\xac\x8b\xba\xdf\x30\x2d\x79\x5b\x25\x96\x49\x98\x96\x99\x00\x95\x85\xce\xa1\xa8\x1d\x0d\x07\xd6\x62\xdb\xe6\x63\x09\xbb\xec\x5a\x8c\xbb\x23\x16\xc6\xdb\x53\xe8\xa5\x39\xe2\x3f\x44\xf9\x90\xba\x08\x47\xe6\x74\xfb\xfc\x05\xd7\x3e\x7f\x56\x95\x39\xc4\xcd\x23\x4f\x45\xdf\x2c\x3a\xa7\x9a\x45\xe7\x14\x2d\x2e\x2f\x47\xa3\x14\xd2\x71\x18\x40\xdf\x57\x16\x59\x1b\xb5\xdc\xda\xa3\x54\xc2\xd8\x3a\xad\xdf\x17\xbc\xe8\x83\x92\x93\x74\xb2\x4d\x69\x19\x93\xdc\x04\x05\x07\x31\xdb\xf2\x1c\x9f\x0b\x81\x70\xfb\xc6\xc3\x28\x4e\xf3\x74\x3c\x64\x83\x2c\x3c\x21\xc8\x4c\xf1\x6b\x55\xe8\x98\xde\x28\xca\x6c\x6f\x86\xe2\x2f\x72\x11\x60\xcb\x9d\xea\xb2\xc3\x94\x4d\x7b\xd5\x1d\x99\x6b\x9b\x38\xed\x17\xd4\x27\x02\xe6\xf7\x7b\xd8\x7b\x0e\x58\xe0\x44\x6e\xaf\x4e\x65\xb3\xc4\x5d\x31\x3c\xca\x70\xb4\x6a\x75\xcf\x94\x21\x61\xbe\x9c\x2b\x89\x50\xf0\x4c\x84\x72\xee\xcf\xbe\xd8\x86\x43\x9b\x55\x27\xa5\x32\x16\xc6\xa1\x21\x88\x64\xc7\x80\x0c\x87\x91\x5d\xa1\xbb\xdf\xf2\x81\xed\xa8\xca\xae\x7c\x2f\x84\x0e\x85\x5d\xca\xdf\xf8\xbb\x13\xa5\xea\xf7\x25\xba\xb3\xe8\x8c\xdd\x53\xfd\xae\x7b\x74\xf1\x38\x36\x5a\x74\x6c\x00\x52\xf4\xc8\xba\x0f\x05\x2b\x51\x1a\xb3\x9e\x5d\xf5\x8f\x1d\x9e\xdf\x17\xf8\xa7\x03\x65\x6d\xf8\xa7\xca\xaf\xe8\x9b\x54\x5d\xf0\x5f\x04\x6a\xc0\xa8\xcd\x93\xff\xc3\xcf\xe6\x3b\x95\x69\x2d\x0a\x23\x8e\xe7\x74\x0f\xd1\xa5\x3a\x49\x10\x12\xdc\xf6\x31\xb7\xa0\x81\xfa\xf8\x17\x13\x91\x5f\xe9\xd9\x30\x36\x79\x1e\xf5\xbd\x9e\x04\x67\xf8\x74\xcf\x24\xdb\xf7\xe9\x40\x38\x34\x59\x9c\x16\x85\x55\x1e\x96\xdf\xd7\xd3\xb7\xef\xab\x7f\x5c\xd8\xd8\x92\xe6\x1c\xe6\x6a\x0e\x69\xac\x04\xd8\xb7\x37\x87\xf6\xcf\xb7\xa9\x16\x72\x63\x92\x2d\x35\x26\xd9\x52\x16\x08\x44\x76\xcc\x61\xe4\x01\x34\x25\xd6\x0f\x8a\x26\x48\x93\xa1\x0d\x7e\xa6\x99\x2e\x93\x0f\xd3\x32\xee\xd9\xac\xa5\x50\x69\xf4\x5d\x82\x34\x71\xfe\x2c\xc3\x2c\x2d\x07\xc3\xc7\xa9\x65\x28\x7d\x49\x1a\x63\x62\x0f\x60\x3f\xe0\xf9\x1d\x9b\x68\xd5\x28\x8a\x0f\x18\xae\xcc\xac\x7b\x74\xe8\xb3\x1d\x37\xb9\xfc\xf5\x67\x00\x6a\x96\x53\xb2\x7a\x62\x02\xe5\xa1\x47\x5c\x93\xb6\x14\x9c\x55\xcb\xa9\xe3\x3e\x43\xad\x78\x4a\x97\xec\x3f\x9e\x42\x96\x1c\x58\x68\x9b\x91\x29\x6c\x89\x3a\x1a\x5d\xe3\xe3\xf4\xab\xc4\x1f\xcf\x83\xc4\x6f\x3b\x38\xe6\x6a\xda\xed\x02\x5d\xc0\x1b\x0c\xba\xc0\xfc\x7a\xdd\xb7\x03\x86\x26\x49\x57\xac\x4c\x5a\x80\x41\xdc\xdd\x51\xca\x1f\xac\x3c\xc1\xdb\x68\xaa\x85\xb9\xf8\xe2\xa1\x76\x6e\x57\x6c\x52\x0c\x31\xc7\xe4\x4d\x30\xd9\x8e\x4c\x64\x1f\xdd\x26\xe0\x7b\x1e\x66\x66\xcc\x70\x3c\xec\x81\xdb\xea\x4f\xe0\x91\x87\x74\xf4\x7d\x35\xfc\x4e\xcc\xc8\xf6\x76\xa9\x46\xcd\x51\x55\x4c\xdc\x51\xf2\x6d\x8f\x74\x7c\x2b\x8e\x19\x78\x4e\xc6\xde\x2b\x85\x3f\xd0\x18\xcd\xc2\x24\x3d\x93\xf5\xf6\xd0\xd2\x44\x92\x0a\x30\x3e\xfb\x4a\xe3\x53\x10\x36\xee\x69\x25\x51\x9e\xd7\xa0\x4f\xf1\x53\xfa\x11\x18\xb3\xfd\x3b\x24\x1d\xfc\xaf\xd0\xbb\xe6\x0f\x6e\x54\x8e\xee\xa6\xe9\xc8\x15\xc0\xc8\xb3\x7e\xa2\xa8\x09\x97\x55\x03\xe6\xcc\xc4\x13\xef\xc9\x3b\x20\x27\x75\xde\x01\x91\x04\x15\x19\x74\xc9\x69\x76\xd0\xb7\x23\x8f\x85\xa3\x1b\x60\x68\x7c\x59\x88\x92\x5b\xb8\x2c\xe9\x53\xc9\xc2\x1a\xda\x78\x6c\x7b\xbb\xbc\x12\x07\x37\xba\x28\x34\xcf\x3f\xa3\x69\x77\xdf\x46\x84\x94\xbd\xd8\x72\xda\xa7\x3b\x50\x7b\x48\xfc\xa8\xcd\x61\x56\x6c\x06\xa2\xc8\xc3\xe4\xe6\x6b\x7d\x8f\x7e\xf1\x18\x7d\x14\xe6\x2d\x3c\x93\x04\xb6\x12\xb5\x39\x26\x59\x8f\x76\x14\x1b\xf8\x03\xd5\x82\x00\xab\x06\xb3\xea\x8d\x89\x97\x7e\x81\x4e\x02\x80\x10\x6f\xd0\x8e\xc6\xdf\xfe\x5f\x13\x75\x1c\xeb\xf6\x75\xdf\x80\x93\x89\xf4\xe3\x8a\x62\x6d\x1f\x47\x3f\x07\xc9\xdc\xb5\x40\x6b\xc5\x2a\x80\xc8\x3d\xd5\x8b\xae\xb7\x1c\x56\x6d\xf6\x84\xf7\x00\x64\xb1\x54\x94\x5d\x77\xf8\x44\xc0\xef\x7c\xa0\xcc\x80\x6f\xa3\xfb\x24\x7b\x4e\x8d\x40\x37\xa9\x94\x46\x6a\x72\x53\xb1\x75\xae\x02\x2f\xce\x9d\x6c\xba\x45\x6c\x28\x8a\x4b\xc6\x99\x7e\x0d\xeb\x48\xfa\xdd\xd5\xc5\xa0\xce\xbb\x83\x8b\x41\xdc\x3b\xa6\xd0\xde\x26\x0c\x4b\x8c\x00\x8e\xcc\xb1\xda\x2d\x9f\x9c\xfc\x46\x51\xdd\x12\x1b\x22\xe7\x50\xc7\xed\xbc\x3b\x49\x15\xc4\x69\x18\xc5\xf6\x69\xda\x19\xac\x86\xa5\x8e\x8d\x19\xa0\xe0\x19\xfc\xaa\x45\x6c\xd8\x66\x1e\x83\xc7\x2d\x1a\x12\xb1\xe8\x7e\x40\x2d\x09\xb1\x7c\xaf\x6e\xa3\xf4\x88\xe9\xaa\xa4\x7c\xf5\xd2\x66\xff\xf7\xc4\xe7\x9d\xc7\x02\xe5\x5c\xb3\xab\xa3\x52\xdd\x63\x5c\xd7\xea\xa4\x10\x65\x25\xfb\x06\x8b\x9d\x6e\xb5\xc0\x10\x60\x2f\xd5\xfa\x7a\xfd\x62\xd8\x52\x93\xe2\x3f\xe0\xe7\x2d\x2e\xa3\x9f\x50\x95\x0b\x71\xf3\x78\xdf\x30\x7a\x91\x16\xa1\x20\x19\x9f\xd6\x68\xca\xa2\xaa\x42\x71\xab\x01\xbd\xbc\xa0\x60\x98\xd3\xd3\x13\xf2\xca\xc8\xd2\x9c\x45\xca\xc5\x5a\xcb\x37\x51\x4f\x4d\x15\x0f\xd5\xb1\x00\xfb\x6b\x96\x33\x10\xaa\x68\x4b\xf9\x76\x3e\xe6\x36\xfe\x7f\xf2\x4c\xcb\xe9\xa1\xcd\x62\x68\x8d\xe2\xeb\x74\xa0\xac\x0a\x98\xd3\xe0\x04\x16\x0f\x28\x6a\x6d\xb5\x2c\x25\xa1\x56\x39\xfb\x9e\xf5\xea\x41\xe1\xc4\xbf\x17\xf8\x8d\xfc\x41\xa0\xa1\xcd\x3b\x3a\x5a\xd9\x43\xa1\xb0\x3e\xc2\x52\x45\x61\x75\x85\xb6\x0e\xfe\xd5\x9b\x13\x05\x1f\xfc\x90\x56\x06\xce\x56\xa6\x28\xb9\x64\xc0\x65\xa0\xb3\xe0\x69\xb3\xac\x85\x32\x71\x8d\xd3\x12\x40\x11\xdc\x96\xf3\x6a\xef\x9d\x7f\x68\x7b\x8b\xfd\x4e\xa4\xce\x42\x16\xc9\x43\x2c\x7e\x33\xf5\x4c\x28\xad\xcf\xa3\x38\xb2\x70\x73\x59\x70\xa7\x91\x1f\x66\xe2\x8c\x81\xee\xc2\xd5\xa9\x4f\x38\xb0\xd0\x1e\xdb\xbc\x88\xc2\xa8\xc7\xa8\x25\xdd\x70\xe6\x2e\x20\xa5\xb2\x18\x9e\xb5\xd6\x3f\xa1\xac\x67\x4c\x42\x1b\x77\x5f\xf5\x14\x10\xc0\x78\xa6\x2c\x68\x1b\x65\x6f\xda\x42\x4e\x85\xc7\xd3\xea\x54\x65\xaf\x34\xbc\x54\x9c\x42\x57\xd2\xe1\x1e\x5c\x47\x02\x20\x1e\x6c\x74\xe6\x5c\x89\xca\x23\xfd\x6a\xa7\x70\xe5\x83\xd9\x95\xa9\x52\x96\x32\xcc\x22\xb5\x1a\xc3\xfa\x1d\xd5\x3d\xfd\x8e\x82\x2e\x14\x6b\xe3\x88\xc6\xb2\xfb\xc5\x1b\x14\xd0\x05\xa1\xdf\x3c\x0c\xd9\xdf\x37\x59\x75\xca\x17\x8c\x2a\x12\x03\x63\xba\x2b\xfc\x66\xaa\x3a\x7b\x69\xb1\x5d\xe6\x22\xa3\xeb\x08\xd4\xd5\xdd\x12\xe9\x3a\x3f\x8f\x36\x65\x2f\x2a\x72\x45\x29\x64\x79\x2b\xaf\x3d\xec\xa2\x42\x99\x0f\x09\x7b\xa1\x5a\x0a\xae\x33\x09\xd4\x28\xbb\x68\xd3\xbe\x17\x82\xe9\x53\xea\xec\x2e\x93\xc2\xb2\xc2\x08\xda\x49\x70\x49\xc0\xd9\x7c\x85\x4e\x3e\x69\x91\xfa\x46\xa7\x2d\xc2\xe7\x67\x74\x47\x9b\x4e\x1b\x2c\xa5\xbb\x81\x37\x4d\x38\xed\x0a\x6e\xf1\x7b\x9f\xd5\xfd\xe9\x4b\x1a\xe1\x8d\xf9\xad\xf2\xbd\x16\x7e\x56\x95\xf8\xba\x2a\xa8\xcc\x8b\xb4\xb7\xd6\xa2\xd3\xc2\x81\x5f\xfc\xeb\xda\x21\x9c\x44\x09\xd6\x3b\x72\x8b\x9f\x2b\xb6\x08\x06\xda\x48\x27\x8e\x2b\x11\xd1\x9e\x25\xed\xf1\xcc\xc0\x40\xeb\x80\x57\x2e\xad\xee\x31\xee\x1f\x24\x1a\xc4\xad\xc1\xdf\x4b\xb7\x9c\x9c\x97\xc3\x85\x9a\xee\x89\xf2\x86\x2b\xf2\x7d\x0a\xd7\xc7\x41\x86\xa2\xf2\x17\x3f\xb1\xae\x95\x27\x70\xb7\xe8\x79\x7e\xb7\x4d\x37\x08\x25\xd7\xb3\xeb\xca\x61\x7d\x13\x61\x0d\x11\xeb\x13\x1d\x4f\x50\xfc\x77\x9f\xa6\xe5\x80\x42\x76\x17\x36\x27\x9a\xad\x97\x27\x3e\x9d\xda\x47\xa5\x0c\xe6\x58\x5b\x9a\x22\x6f\xc6\x3b\x95\x58\xca\xd7\xf5\x30\xed\x86\xd2\x11\x7b\x57\x95\x45\xef\xd3\xde\x96\xa6\x62\xc3\x26\xc8\x0d\xca\x5d\xef\x7f\xa7\xc8\x74\x1a\x91\x5b\x05\xbd\x01\x4d\x75\x3d\xe5\x0a\x7a\x6c\xd2\x5a\x52\xfe\x35\xe9\xc8\x3e\x45\x37\x44\xa8\x22\x1e\xc7\xfd\xe5\xa7\x3b\xda\xa9\x92\x7d\x7b\x98\xf3\xaa\x24\x7e\xd9\x55\x17\xeb\xfe\x9a\xea\xd9\x70\x84\xc3\x27\xef\xa5\x93\xc9\xe9\xf5\x1e\x11\xcc\xe3\x1d\xcd\x3b\x64\x77\x33\x27\x70\xb2\x24\x68\xce\x1f\x52\xb2\x2a\x6b\x43\x8d\x6d\x8e\x29\xe5\xa2\xeb\x5a\xa2\x25\xcd\x18\xb0\x21\x6d\x29\x2f\x7a\x78\x41\x19\xf1\x92\x24\x6a\x28\xc3\xe4\x87\x8c\xa9\x1a\xc0\xfe\xf9\x2f\x8f\x79\x43\x0a\xee\xde\x07\x9d\xb7\x68\xf1\xd6\x34\x1a\x51\xce\xdd\x72\xf6\xa1\x71\x9a\xe6\x04\x87\x5f\xf0\x6a\x20\xde\xc8\x66\xd3\x49\x85\x8d\xf3\xb5\x38\x8e\x20\x90\x21\xcc\x21\x38\xd8\x20\x5a\xee\xa1\x65\x2a\x54\xba\xa7\xdc\xe5\x87\x6b\x61\xec\xda\x23\xa8\x48\x4e\x2b\x2e\xdb\xe9\x46\x39\x89\x61\x9a\x17\x28\xc0\x6a\xa9\x81\x78\x05\xb6\x9c\xed\xd2\xcd\x40\x9a\x31\x83\xcc\x24\xbd\x70\x18\xc5\xbd\xcc\x26\xb4\xeb\x85\x5d\xad\x54\x25\x6e\x6b\xbf\xdf\x53\xae\x91\x43\x46\x37\xf9\xd8\x9a\xcc\xf2\xc4\x0f\x89\x1e\xdb\x8d\xf0\x1b\x17\x07\xbb\x69\x31\xb4\x19\x90\x43\x2f\xd4\x7b\xf4\x38\x7d\x77\x22\x91\xc2\x22\xb9\x3b\x55\x78\x1f\x58\x68\xaf\xa5\x65\x31\x64\x15\x90\xa6\xd1\xe7\x93\x4a\x3d\x79\xc5\x26\xe8\xf4\x61\xc1\x5f\x57\x78\x9b\xeb\x53\xa8\x88\x23\x73\x8b\xed\x32\x19\x5a\x13\x17\x43\x56\xe4\xc0\xa9\x82\x24\x98\x5f\xab\x59\x5a\x18\x65\x61\x39\x5a\xb1\x49\xd1\xaa\x69\x1b\xb6\x9c\xbc\xdc\x2d\x6f\x33\x5c\x76\x6d\x62\xf3\x2f\x96\x36\x5e\x9b\xf1\xcc\x3f\xd8\x13\x09\x95\x51\x49\x43\x5d\x54\xec\xd7\x7e\x94\xe5\xc5\xe3\xd5\x3f\x44\x1d\x7d\x95\xe2\x80\x74\x4f\x54\xe3\x87\xc7\x78\xac\x16\x49\xbf\x83\x8b\x64\xf8\xab\x63\x1b\x9e\xc5\xfd\xe6\xe6\x15\x80\xf1\xfc\xf7\x3a\x73\xc4\x14\x49\x72\xd5\x6a\xaf\x3b\x45\x41\x37\xb1\xdd\xb7\xae\x84\xca\xae\x4e\xcd\x26\xe7\x0f\xb7\x87\xb6\x37\x70\x6b\x18\x8f\xe8\x81\x7a\x5c\x0f\x6a\x66\xac\xfd\x28\x8c\x6c\x12\x46\x36\x9f\xf1\x90\x46\x6c\x7a\x67\x10\x7e\xc0\x4b\x15\x3f\x4c\x4a\x7a\x25\x4a\xc2\x2a\x5d\xf4\xac\xff\x0f\x95\x44\xc7\x9f\xe0\x36\xb3\xa3\xe4\xd4\x2a\xa8\x8a\x80\x22\x0a\x97\x6d\x91\xa5\x49\x5d\x98\xd2\xd7\xe6\xd3\xcd\x6b\x22\x99\xc5\x69\x38\xeb\x41\x46\xd7\xb5\x8c\xe2\x09\x3c\x27\xd7\xd9\xa8\x12\x06\x81\x2b\xf8\xd4\x27\x5f\x8d\x92\x01\xfa\xcd\x4e\x1e\xf0\x80\x93\x0a\x9c\x3c\xec\x82\xc3\x61\x14\x9a\x41\x3a\xe3\x17\xde\xb9\xc9\xcc\xa1\xdf\xfd\x2d\x06\x1e\x7c\x7b\xa2\x50\x4a\x9b\x4d\xca\x70\x55\x9c\xc1\xe1\xed\xf4\x57\x4e\x2b\x69\x9d\xd3\x53\xed\xd2\x03\x0b\xed\x6e\x84\x76\x29\x56\x02\xe7\x7f\xfc\xa6\x69\x25\x84\x69\x52\x88\x7b\xa1\xd3\x54\x72\xd1\xe8\x7c\xa0\x35\x93\xd3\xae\xe9\xc6\x6b\xfb\xe8\x96\x29\x51\x67\xe1\x9b\xfd\x38\xf0\x58\xec\x37\xa9\xc0\x41\x21\xfb\x5d\x35\xe9\xba\x8d\xf2\x0a\x1d\x88\x77\x30\x11\x76\x9a\x38\x4b\x73\x4e\xf7\xd3\x4f\x60\x1f\xa1\xd9\x98\x9c\x61\x38\x17\x30\x1c\x3b\x8f\x27\x89\x3e\xda\x57\x95\x48\xe0\xa0\xac\x8a\x8a\x96\x93\x51\x5f\x57\x2d\x75\x4e\x6b\x30\x4d\xdd\xd9\xf1\xb5\xac\xe9\x7d\xa1\xcc\x0b\xcb\x64\x2e\xd7\x69\x72\xb3\x8d\x16\x52\x18\xdd\x1a\xc6\x5a\xbd\xa3\xc8\xb3\xc7\x5c\x73\x6b\x75\x18\x8d\xf2\x35\x45\x35\x44\xd3\x8f\x5f\xbb\xe3\xa4\x6b\xe2\x78\x6c\xb2\x65\x8e\x9c\x62\xb2\xef\x9f\xc0\xe6\xd4\x43\xfe\x4c\xf5\x47\x3d\x85\x83\x3c\x1e\x28\x36\xc4\x71\x55\x0e\x0e\xcb\x81\xdd\xe9\x51\x3f\x97\x26\xaa\x00\xc6\x44\x13\x01\xe6\x36\x5d\x01\x5a\x57\x5b\xe8\x3a\xf2\xc8\x5d\xdd\xd4\x5e\x56\x0e\x72\xd4\x7a\xe8\xea\xfd\x45\x8d\xe9\xd6\x72\x6a\xaa\x1f\x6a\x55\xbc\x32\xab\x4e\x96\x7d\x7e\x62\xc6\x22\x16\x28\x0b\x4f\x4e\x54\x09\xf1\xf5\x89\x9f\x8f\xbf\x8f\x7d\x89\x2a\x1e\x0d\x2d\x74\x14\x66\x91\xf7\xa0\x80\x43\x32\x80\xfb\x74\x9f\x96\x0c\xfe\xe0\x1a\x65\x37\x5a\x76\x89\xff\xfd\x44\xa1\xb9\xcf\xb9\x44\xa0\x17\xe5\xe3\x34\x37\x71\x4b\x91\x1d\x4f\x2b\x5e\xca\x69\x35\x4a\x2b\xf3\xd2\xc4\xf1\xda\x6e\x8f\xea\x64\x1d\x12\x1c\xeb\x57\x34\x16\x12\xad\x2f\xac\x62\x6e\x3e\xe0\xcd\xa3\x1d\x75\x0a\xdf\xe7\x35\x8d\xa0\xf0\x13\xc5\x29\x09\xd3\xd1\x28\x2a\x0a\xcb\xa2\xf2\x22\x7c\x45\x1b\xc8\x95\x38\x5e\x7d\xf4\xbc\xd2\x13\xba\x8d\x1b\x5b\x83\x2d\x21\x13\xdf\xd3\xd1\x8d\x24\x0c\xfc\x71\xd7\x2e\x35\x02\xd3\xbb\x59\x94\xf8\xa3\x42\x2c\x37\x3d\x12\xfa\x78\x83\x91\x22\x11\x98\xb2\x88\xab\x0e\xe9\x2c\xfb\xa9\xdf\x19\xa7\x01\x3b\xb4\xab\x6c\xdd\xa3\xec\xf4\x5e\xe6\x54\xf6\x6e\xa0\x34\xe0\x2e\x36\x38\x34\xb7\xa3\xa4\x17\x85\xa6\x60\xbd\x4d\x74\xc7\xd1\x30\xe5\xd7\x53\xb1\xb9\x3a\x10\xfa\x51\xf1\x5a\x1e\x8d\x46\x69\x22\x3d\x0f\x99\x18\x29\x31\x8e\x73\x0a\x30\x6e\xe2\x38\x5d\xdd\xd3\xda\x2e\xc4\x22\xdc\x0c\x7a\x06\xdc\xf8\xc5\x4f\xc6\xca\xf8\xcf\xe8\x92\x51\xe6\xfd\x41\x30\xcd\x93\x41\x14\x13\xc4\x0a\x1a\xac\x8f\x74\x9a\x3c\x6c\x6d\xd6\xe5\x53\x80\x9d\x6a\x02\x3f\x11\xa3\xa1\xd9\xaf\xd7\x9a\xde\xc6\xb5\xef\x1c\x0a\x65\xc1\x0f\x78\x9f\xf5\x9c\xbf\x34\x29\xb2\xb4\xfa\x8b\xb5\x59\xd5\xd5\x46\xbb\x5b\xd0\x21\x4a\xef\xf2\x2c\x62\x03\xff\x97\x06\xf1\x24\x56\xb4\xb4\x99\x13\x4f\x92\x63\xb6\xe5\xd4\x56\x9a\x8c\x19\x17\xdb\x23\xd3\xb3\x3b\x5b\xdb\x59\xe9\x4c\x0b\x09\xa6\x2d\xeb\x71\x31\xdf\xc0\xbd\x47\xd2\x70\xdd\x55\x00\x61\x5c\x16\x85\xcd\x14\x9f\x14\xb2\x18\xac\xd1\x8d\x42\x48\xa6\xcc\x8a\x01\xb5\xc8\x83\x23\xe4\xd9\xe8\x5a\xe0\x08\x3b\xad\x3d\xec\xee\x2b\x50\x7a\x3e\x4e\xb3\x22\xdf\xed\x61\x46\x40\x69\xe0\x34\xf8\x0a\x1d\x1f\xc8\xcd\x21\x16\xb8\x45\x66\x3e\x87\xb6\x4e\x68\x4e\xef\x2d\x74\x19\xf1\xef\xa6\x55\x08\x16\x16\xa8\x3e\xe5\xd1\xa4\x90\x06\x54\x12\xa3\x59\x03\xcb\x36\x8e\x2d\x86\x75\x68\x3e\x9c\xa1\xdf\xc3\xaf\x9b\x4c\x13\x42\x33\x1a\x33\xea\x0c\x27\xe9\x79\x3d\xdd\x3f\x5f\x83\x95\xe7\x65\x5c\xec\x51\x54\xb0\xf3\xc4\x64\xc7\xc9\x0e\xac\x15\x06\x7d\x98\x85\xb8\xa3\x72\xfe\x30\x37\x29\x98\x77\x25\xb5\x6d\x75\x77\x5c\x8b\x4b\xf5\x27\x1a\x28\xce\x3d\xbb\x12\x85\x28\x3a\x59\x3a\x94\x9e\xa8\xc8\x88\x36\x38\x2c\x0c\x4a\x51\xef\xc5\x50\x0e\x04\x51\x7e\xad\xf8\x2c\xcb\x99\xe9\x17\x1c\x07\xa4\x1d\xed\x3b\x1f\x97\x4f\x35\xa6\xa2\x43\x52\x16\x73\x43\x35\x44\x63\x04\x60\x76\xf2\x54\x66\x8d\x6f\x4f\xd5\x4b\x9f\x21\x09\xdb\x04\x3c\x9a\x97\xb9\x6d\x88\xde\x29\xbf\xf6\x82\xd6\x99\x35\x45\x2a\x4e\x90\x32\xc0\xf0\x38\x8f\x8b\x4a\xed\x76\x30\x88\xb8\xc5\x28\x26\x81\x74\x21\x02\x3f\x53\x52\x0a\x36\xab\x6e\xe7\xbe\xea\x5c\xe5\xcc\x2a\xf0\x30\xae\x8f\xf4\xa4\xe3\x67\x81\xd2\x02\xff\x7d\x65\x68\xfc\x9e\x56\xf9\xdb\x44\x64\xe0\x86\x82\xa2\x91\x5e\xc3\x46\xc6\x9f\x1c\x47\xf2\xe7\xb4\x1b\xaa\x6b\xc7\x57\xde\x0e\xd4\x14\xf4\x5a\xa3\x19\x7f\x66\x46\x51\x66\x5f\xab\x49\x71\x1c\xd5\x52\x1c\x47\x9b\x24\xfb\x88\xbb\x57\xd8\x01\xe9\x9b\x29\x13\x03\x4e\x5c\xf9\x8d\x12\xdc\xcb\xe3\xa8\xc7\x42\x3f\x08\x2b\x97\x29\xd7\xe7\xd7\xae\xc0\xce\x6c\x34\xea\x96\x59\x4e\xe0\x12\x0a\x34\x4c\xaf\x0c\x7c\xcc\xe7\x71\x37\x27\xc4\x53\x10\xba\x2a\x59\xb7\xb6\x2f\x74\x27\xc6\x8d\x23\x16\x08\x88\xfc\x49\x65\x31\xd2\x8b\x2c\xaa\x66\x15\x15\x5d\x88\x54\xf5\xb5\xe9\x66\xa9\xe9\xed\x55\x85\xcd\x29\xca\xac\x24\xb1\x51\x7b\xe2\x36\x8f\x2e\x70\x5e\x6d\xe0\xbb\xf1\xe6\x56\x5d\xec\x5a\x53\x8a\x94\x1c\xe4\x65\x25\x06\x7b\x19\xd5\x2c\xd7\x02\xda\x3f\xe3\xe3\x46\x8d\xc0\x41\x24\x03\x1d\x11\x0f\xf7\x05\xe8\x71\x55\x67\xe7\x71\x39\xc2\xcc\x0f\x8d\x09\xe6\x86\xf3\x1b\x07\x53\x18\x64\xa6\x27\xa2\xd0\x08\x2a\xdf\x54\xa6\x25\xdf\x9c\x78\x40\x4e\x94\xf4\xca\xbc\xc8\x22\x9b\xef\xa2\x93\xc0\x29\x5b\xee\x9f\xaf\xed\x64\x3c\xf3\xab\x0a\x96\xcc\x53\x7e\xbc\x79\x4c\xb5\x31\xaf\x29\x0a\x54\x95\xf0\x9a\x31\x62\x30\x57\x05\xb8\x97\x52\x22\xb8\x46\x95\x1d\x54\xb9\x24\xd5\x95\x2c\x1d\x44\xbf\x58\x64\x84\xfc\x2d\x20\x57\xf6\xa7\xe8\xc7\xa2\xfa\x3e\x49\xf7\x1d\x29\xe3\x9f\x6b\x2a\x22\x1f\x8f\x02\x96\x6b\x39\xb1\xb4\xfb\xb4\x8c\xd1\x6e\x64\x78\x34\x1e\xe7\xa3\xeb\x1e\x12\xf9\x73\x4a\x9c\xf9\x1f\x4d\x94\x17\x0c\x2b\xef\x61\x94\xf9\x46\xa0\xd8\x7f\x47\x11\x2c\x70\x6d\xbb\x3a\xaa\x1c\x14\x6e\x91\xb8\x00\x7a\x7b\xd7\x6f\xa9\x61\x41\x38\x34\x19\x57\x29\x00\x02\xb6\x3a\x4a\xdc\xf0\x1b\x81\xe2\x76\x6f\x2a\x3b\xaf\xbf\x0d\xfc\xe8\xe0\x76\x93\x1e\x4a\x66\x07\x86\xfd\xc3\xf9\x00\x0e\xf4\x61\xfc\xf7\x95\x88\x14\xc3\x1c\x48\x55\x3f\x27\x38\x02\x9a\x7e\x1f\x04\xde\x23\xf6\xba\xd2\x62\x05\x8a\x04\x3b\x08\xb7\x55\x7a\xa4\x4a\x4b\xec\x8a\x43\x96\x8d\x23\x93\xa0\x09\x80\xdc\xfc\xb2\xa2\x89\x9c\xc2\x6e\xc4\x2d\x9a\x3e\x27\x48\x8e\x72\x9c\x8b\x6c\x80\x88\x31\xf8\x46\xd5\xe6\xd4\xe9\x54\x9d\xe8\xe9\x68\x64\xb3\x50\xf2\x6f\xec\xe7\x1f\x04\x7e\x96\xf6\x03\x85\x4e\x4c\xb3\x68\x10\x25\x50\xa2\x9a\xf7\xc8\x16\x0f\xbd\xe0\x94\x16\xb7\xfd\xa2\x7a\x04\xd0\x88\x44\xc8\xbf\xaa\x80\xd6\x77\x6b\xae\xe4\xdb\x63\x32\xc0\x56\x65\x36\xce\xa2\xdc\x9d\x9f\xda\x29\x0f\x47\x3a\xce\x4f\xa1\x48\x6f\x3f\xde\x0f\xbf\xd8\xce\x53\x93\x51\x50\x60\xd4\x55\xe0\xa9\x41\x1a\x4c\x51\x44\xa3\x5d\x7e\x0c\x89\xa7\x88\x13\xef\x91\x4e\xb5\xdf\x85\x81\xee\xf5\x0f\x8f\x6b\x2d\x45\x2e\x9d\x90\xdc\x5f\x99\x4a\x9f\x96\x28\xe3\xed\x81\xf0\x81\x7b\x8b\xf2\x83\x5f\x4f\x1d\x64\xf3\x87\xdb\xab\x26\xcb\x4c\x52\xa0\x35\xe0\x8e\x18\x17\x6e\x2e\xd7\x34\x39\xca\x64\x19\x85\x97\x3b\xa5\xdd\xef\xbf\xa8\x24\xd6\x7a\x51\x5e\x98\xbc\xb0\xfd\x32\x56\xfa\x03\xac\xa1\xcd\x6f\x94\x51\xd0\xaa\x59\x7b\xb2\xfa\x20\xd6\xe0\x9e\xa8\xdc\x9f\x7d\xe9\x00\x95\xbb\x46\xe9\x9d\x83\x2e\x7b\xff\x1a\xe5\x9a\xce\x2e\xd1\x62\x44\x41\xe8\x07\x14\xb6\x77\x03\x15\x2c\xbf\xcf\x24\x0c\x24\x55\xe7\x6a\xd6\xbc\x0c\x18\xc4\x8a\xfe\x63\x0a\xb7\x88\x59\x97\xa9\x89\xc4\xaf\x11\x8e\x98\xb2\x34\x35\xc9\x3c\xfc\x22\x0d\x40\xe9\xea\xc5\x3b\xcf\x37\x80\xce\x04\x5e\x8b\x6c\x90\x26\x33\x0a\xd5\xfc\x4d\x4d\x65\x3f\x0d\x42\x09\x12\x94\xf3\xca\x66\xb0\x6b\xd7\xd2\xa4\xb7\xb3\xde\xdd\x76\xe2\x4e\x97\xd0\xc7\x72\x12\x11\x55\xa8\x74\x93\xe4\x03\x0b\x0c\x4f\xf9\xaa\x1a\xa1\xac\x66\x11\x63\x26\x51\x4c\x01\x1b\xc8\xaf\xb5\xdd\x85\xed\x0d\xf0\xef\x84\xd7\xe1\x57\xcd\x05\x85\x76\x2a\x93\x70\x68\xa8\x4e\x9f\xf1\x26\x1a\x37\x83\x9a\x9a\x57\xb5\xc4\xf1\x5c\x8f\x56\x35\xa0\x13\x80\xb5\x19\xdb\x6a\x51\x8c\xc2\x56\x7c\x4f\x65\x98\xdf\xc4\x92\xc0\x39\xfa\xa6\x5e\x9e\x99\x1d\x17\x2d\xf5\x1d\xd7\x70\x4a\xf0\x9b\x89\x36\x4c\x2c\xca\x2c\x2a\xd6\x54\x4f\xee\x86\x42\xa0\xb1\x63\x28\x4a\xad\x47\x3a\xfe\xb6\x57\x8f\x14\xd2\x23\x5e\x50\x8a\x9e\x9d\x88\xed\xd2\x2f\xc3\xd9\x03\xbc\x27\xeb\x5a\x34\x15\x51\x2b\x36\x2f\xd8\xcc\x5d\xe4\x2a\x69\xdd\x89\x5e\xe5\xf6\x48\x75\xf8\xc5\xf6\x70\x6d\x9c\x0e\xe2\xb5\xd0\x8e\x22\x08\x7b\x60\x99\x5f\x51\x1c\xbb\x2b\x8a\x69\xb3\x6c\x0a\xab\x4c\x2d\xa0\x8f\xed\x8c\x3a\xbc\x40\xed\xb5\x46\x53\x80\x55\x1b\x0d\x86\x24\xbe\xe5\xec\x7b\xaa\x95\x29\xf6\x3d\xcf\xaa\x13\x2b\x8f\x06\x30\x97\xa6\x6f\x53\x5a\x5d\x8b\xdc\x46\xf8\xa7\xda\xeb\x23\xd8\x46\x88\xfc\xad\xf9\xf6\xc2\xc2\xa1\xc7\x7c\xe6\xf6\x00\x15\x31\x73\xa7\xf0\xb5\xf8\xd9\x27\x95\x21\xf9\xc9\xc0\x53\x12\x77\x02\x05\xe7\xd8\x84\x2f\xb9\xbd\x70\x46\xe9\xe4\x5c\xa0\xbc\x93\x75\xa0\x90\xe1\x23\xca\x3c\xd0\xcd\xf5\xb5\x51\x37\x8d\x67\xeb\x42\x06\x47\xe6\x38\x32\x43\xaa\xc1\x49\x97\xf8\xbe\xff\xa3\x1d\x9f\x71\x8d\xa2\x38\x8e\xd2\xe4\xc9\x1d\x9f\xe6\xad\xb6\xb7\xa3\x9c\xa2\x66\xd6\xbd\x79\x01\xf7\xe7\x1c\x81\x50\x83\x05\xbc\xa6\x35\x2b\x82\x60\xfa\x38\xa3\xc8\x49\x37\xf4\x5c\xf8\x87\xb4\x82\x31\xc7\xbc\x44\xfb\x1c\xbd\x8b\x75\xac\x4a\x16\x10\xa3\x9b\x86\x1d\xf1\x97\x18\xea\x20\xbd\x9b\xe9\x54\xb1\x4d\xd0\x40\x1a\x20\x90\x45\xe1\x1e\xdf\x5d\xbe\xa8\xe8\x5a\xec\x3a\x85\x62\xfe\x0a\xce\x29\x34\x81\xbe\x13\x28\x9c\xc7\xf1\x89\x66\x4a\x5f\xc1\xcf\x61\xdf\x2a\x5a\x17\x32\x2d\xdf\x7e\x9c\xed\xdf\xdf\x4e\xfb\x7d\x9b\xed\xf4\x6b\xf8\x82\x22\xcc\xb0\x2d\x94\x13\xda\xa9\xf6\xfa\x34\xe6\xeb\x66\x0d\xed\x60\xf3\x65\xe4\x2e\xac\x52\x89\x2d\x27\x92\x95\xdb\x1b\x8e\x2f\xcd\x1f\x16\x3b\x0e\x06\x88\xe1\x5a\x37\xf4\x85\x6f\x4c\x8d\x4a\x8e\xcc\xb5\xc3\x38\x82\x72\x84\x9a\x60\x3e\x50\x74\x97\x07\x2a\xe5\xc9\x43\x9b\x98\x2c\xfa\x7f\x18\xfb\xd3\x18\x49\xce\xf4\x4e\x0c\xef\xce\xaa\xea\x66\xb3\xc9\xe1\x35\x87\x76\xb0\x8b\x7f\x6a\x35\x7f\x53\x02\x66\xb9\xf2\xda\xf0\x02\x03\x03\x91\xee\xae\x19\x4e\x17\x3c\xc5\x42\x75\x4f\xb7\x76\xb0\x06\xf8\x66\xe4\x9b\x95\xc1\x8a\x8c\x48\xc6\x51\xc5\x22\xf6\xc3\x7e\x10\x8c\x85\x21\x18\x86\x61\x61\xed\x35\x0c\xac\xbc\x0b\x2f\xd6\x92\x56\xab\x63\x25\x4b\x33\x52\x16\x35\x33\x9a\x91\x66\x86\xe4\x90\x1c\xde\x43\xf6\x7d\xdf\x77\x57\x77\x57\x1b\xf1\xfc\x9e\xe7\x7d\x9f\xa8\x8c\x16\xfc\x85\x88\x60\x57\x66\xc6\xf1\x1e\xcf\xf1\x3b\xd2\x9d\x74\x61\x78\xe5\x1f\x04\x0a\xcd\x73\x92\x46\xbd\x20\x0c\xab\x07\xc0\xff\x5f\xbf\xd9\x9f\x29\x70\xd5\x29\x4c\x20\x81\x21\x7a\x6d\xe5\xbc\xb0\xc9\x0e\x3f\x9a\x01\x1f\x46\x94\x72\x4e\x83\xc3\x8e\x69\x15\x7b\x84\xed\x7c\x4c\x63\x7e\xf3\xb8\x4a\x06\x86\xa6\x1f\x41\x3e\xcc\xe9\xba\x54\x03\x81\x4f\xc6\xcf\x44\xda\xe2\x38\x4b\x87\x51\x0e\x77\x71\xb4\x59\x5e\x1f\x2b\x75\x64\xdc\xa8\xb8\xd5\x79\x8c\xdf\x7f\xc4\x38\x97\x66\x0c\x5d\xa8\x38\x9a\x4d\xc0\xf3\x16\x17\xda\xf6\x15\xda\x7e\x6c\xab\x6e\x9d\xe6\x2a\xe8\xe7\x26\x30\xf7\x07\xf7\x50\x9e\x64\x4d\xbf\xb0\x59\xcb\x9b\xac\x9d\x56\xe2\x59\xa7\xc7\xaa\x42\x4f\x98\xa0\x47\xf4\xc0\x54\x28\x9d\x77\xb1\x32\xe8\x75\x0a\x8b\xd9\x65\x4a\x68\x9c\x6f\x9e\xee\x58\xca\xfa\xf8\xdd\xa7\x3a\xda\xb3\x67\x22\x4d\xdf\xbb\x97\x04\x87\xca\x51\xa1\x20\xf0\x2c\x18\xc5\x27\xaa\xfe\x86\x1e\x25\x08\x3c\x0c\xc9\x1c\xfb\xae\xd8\xc9\x09\x2d\xba\xd9\x03\xd0\x9b\x0f\x6d\xcf\x26\xce\x3d\x4f\x88\xb7\x8a\x84\xab\x38\x98\xbc\xd9\x5b\xa8\x70\x22\xa2\xc2\xf6\xce\x92\xbd\x81\x6f\x77\x21\x48\x17\x29\xdf\x06\x5f\xcd\xbc\xec\xa6\x59\x2f\x4a\x8c\x13\xc2\x13\x67\xcf\xea\x4b\xd0\x19\x38\xac\xc5\xc7\x6e\xd5\x5b\x82\x85\xcd\x8b\x9c\x2a\xb7\x22\xb4\x42\xe3\x4b\x36\x96\xea\x4b\x50\xd2\x82\xf8\xba\x88\xe5\xb5\xbe\x76\x88\xc3\x8b\xb7\xc6\x8f\x2b\xd4\xee\x2b\xc5\x33\xf4\xec\x04\x87\x53\xad\xd0\x0e\x84\x7d\x70\x0f\x2f\x01\x3f\xa4\xc0\x10\xe1\xd2\x2e\xf4\x5f\xd0\xd0\xbb\x40\x11\xab\x53\x62\x74\xa2\x3b\xdb\x60\xe8\xe2\x04\x49\x3c\x8c\xef\xcf\xb4\xab\xc8\x8f\xf0\x5a\xb9\x12\x3b\xf6\x65\x99\x4f\x94\xf6\xcb\xdb\x63\x2d\xb2\x89\x51\xe5\x84\xfd\xe7\xe6\xf6\x6b\xc7\xc4\x05\x67\xb6\x42\x4f\x05\x51\xe6\x5d\x0d\xb2\xf9\x44\x21\x17\x86\x26\x31\x4b\x54\x51\xda\x4d\x9f\x15\x41\x5e\x8f\x22\xfe\x29\xbd\x4e\x76\xe8\xc4\x77\x0a\xd2\xd6\xe7\xaa\xaf\x61\x3f\xc6\xc9\xef\x07\x7e\xd4\x3e\x18\x6b\x5f\x72\x65\x64\x7c\x06\xcb\xb2\x2b\x8d\x79\x1f\x9e\x4b\xaa\xb0\x31\xb4\xc5\xc0\x24\x96\xa0\x4f\x48\x1d\xe0\x98\xc1\xc7\x4a\x41\xaf\x67\x57\x6c\x9c\x8e\x6c\x6f\x97\x02\x7c\xc3\xd0\x54\x74\xcf\x3d\x00\x1a\xf2\xcb\xae\x05\x53\x3d\x41\x69\x30\x2a\x34\xf4\xa7\x63\x65\x67\xca\x49\x87\x80\x14\xbd\xe4\xc8\xff\xd4\x24\xb9\x63\xa2\x70\x10\xa1\x30\xc4\x5a\x70\x81\x92\x73\x98\x94\x88\x9e\x3d\xa0\xfc\xc9\x90\x04\xff\xdb\xb1\xc7\x54\x1e\xd3\x5e\x16\xc7\x27\x36\xa3\x7d\xf3\xed\xa5\xcc\x92\x7f\x1e\x54\x70\x10\x8c\x23\xa1\xe5\xe3\x86\x4e\x1b\xfb\x7c\x8a\x0d\xa1\x08\xa0\x29\x67\x49\xad\xbc\xd1\x4d\x93\x32\xb7\x39\xd9\x72\xe3\xdd\x82\x89\x88\x68\xe4\xa2\xc2\xba\xec\x58\xf7\xfd\xe0\xb0\xcc\x20\xf3\x8d\x7f\xfa\x1b\x5a\x1c\x9d\x4d\xb8\xb3\x6b\xdd\x54\x3a\x7c\xab\x36\xee\x39\x00\x17\x3a\x88\xef\x8f\x95\x87\xfc\xfb\x8d\x08\xef\x0c\x1a\xc1\x8b\x0b\xbc\x2b\xc1\xc7\x5f\x5c\xba\xfd\x84\xf9\x3e\x0d\x6d\x14\xab\xde\x55\xe3\x27\x5d\x29\x63\x6e\x62\x1d\x94\x25\xfb\x98\x6a\xf6\x1e\x53\x8f\x62\x94\xa5\x4b\x99\x19\x3e\x55\xfd\x25\x12\xa3\x0f\x02\xbf\x16\xde\x53\x35\x05\x0e\x5a\x51\xde\xba\xa7\x35\xa8\x6e\xd7\x10\x66\x4a\x19\xea\x22\x11\x36\x84\xeb\x52\x5d\x2c\xa6\xf0\x77\x03\x74\x73\xf0\x28\xb0\x5e\x4c\xb1\xca\x01\x56\xa2\x13\x63\xa5\xa5\x79\x8b\x68\xe0\x0e\x65\x52\x8d\x5d\x51\xa7\x56\x04\xfc\x73\x0a\x88\xb7\xab\xf3\x84\x22\xe2\x84\x36\x29\x66\xaa\xc7\x09\xbc\xd8\x15\x48\x2e\x62\x5d\xbc\x8b\x45\x87\x4f\x00\x61\x11\x93\xed\xea\x82\xb1\xe2\x4e\x75\x76\xfb\x76\xe6\x97\x5a\xbe\x48\xcd\xe0\x24\x3e\x99\x08\x09\xf7\xcd\xb7\x0b\x93\xf4\xd6\xb8\xec\xee\x04\x69\xfc\xfc\x39\xaf\xd2\xe4\x35\x6b\xb2\x78\xad\xe6\xc0\xad\xcb\xcd\x67\xea\x22\x11\xd5\xf2\xe0\xbd\x6f\xe1\x20\x24\xb6\x60\x4a\x4e\x96\x13\x6a\xb4\x4e\x0f\xd3\x9b\x42\xde\x71\x1b\x37\x8b\xe4\x00\xa0\x60\xac\x34\x7f\x83\x67\x8f\xbf\x3a\xad\x8c\x9b\xae\x01\x6e\xc8\xd1\x51\x99\x14\x56\xa4\xda\x5c\xe3\x06\x25\x22\x3e\x56\xc9\x2e\x21\xea\x66\xe8\xb2\x9c\x05\x6c\xf5\x10\x9c\xe5\xdb\x3e\xa7\x6e\x46\xd3\xca\x29\x9d\x55\x21\x3f\x6e\xe4\xdd\x89\x3a\xd6\xc1\x3d\xdf\x6a\xaf\xd6\xeb\x11\xbc\xfa\x22\x46\x04\x77\x48\x44\xe6\x44\x14\x32\x4a\xfa\x71\x69\x93\x50\xb4\x25\x54\x0b\xc6\xf5\x63\x26\xf4\x50\xe6\xe7\xdb\xa3\x7c\x2d\x1c\xa4\x26\x31\xf1\x5a\x11\x85\xea\x9e\xcf\x05\x0a\xc1\xaa\x08\x9b\x71\xf9\x4a\x99\x91\x28\x45\xcb\x59\x85\x6d\x31\x02\x6e\x6a\x6a\x94\x99\xd7\x3d\x92\xb4\xab\xe5\xa8\xe2\x57\x15\x9c\xb6\x5b\xc6\x71\x2f\x7d\x15\x0e\x3d\xfb\xbd\xf9\xa5\x32\x8d\xdf\x3a\x20\xbf\x76\x08\x81\x63\xab\xf5\xd5\x5f\xe3\xdd\xe0\xf4\xd8\x7b\x38\x9d\x56\x26\x74\x2f\xcc\x1f\x68\x69\xe4\x1d\x5e\x98\xc0\xf0\x1e\x57\x52\x2a\xc9\xda\xe7\x30\xbe\x11\xc1\x13\x63\x40\x94\x12\x11\xb3\x63\x95\x7c\x8d\xe6\x31\xfe\xe8\x41\xe0\x55\x27\xc6\x0a\xcb\xcf\x78\x10\x4c\xe3\x27\x10\x77\x20\xc2\xbe\x85\xf1\x8a\x57\xfb\xdb\x81\xb2\xe4\xe3\x95\x89\x03\x25\x1a\x3f\x98\x90\xff\x5b\xa0\x3b\x37\xd5\x5a\xe4\x40\x89\x3e\x5d\x9d\x5a\x6f\x7d\xf3\xeb\x1c\x9c\x70\x87\x15\xdb\xfa\x8d\xb1\xc2\x63\xdf\xc2\xf8\x40\x21\x14\xdd\x53\xc4\x46\x47\x68\xe2\x21\x98\xfa\x73\x45\x8d\x5a\x8b\x6c\xdc\xdb\xad\x08\xd9\x74\xf3\xf8\xe6\x0b\x28\xf4\xb9\x2e\xf0\xe2\x1e\x0e\xff\x2e\xd3\x50\xe2\x63\xcc\x7d\xfc\xe2\x07\x5c\x00\x74\xf2\x71\xf3\xf3\x4e\xf9\x86\x9e\x91\xe3\xb9\x7a\xab\xda\x6b\xb4\x20\x02\xa9\x72\x46\x71\x2a\x51\xb3\x4a\x33\x04\xcb\x22\x37\x4a\x8f\x9d\x4f\xc6\x5b\xb1\x09\x82\xc9\xcb\xd3\x32\x0b\xed\x74\x8d\xb9\xe9\x37\xcb\xdd\x44\x38\xa9\x69\x3e\x61\x4b\xbc\xa7\x68\x06\x4b\x26\xef\xe2\x97\x45\x06\xd6\xc7\x89\x17\x9b\xed\x4e\x57\x52\x69\x5e\x63\xec\x7c\x4a\x8f\x9f\x8f\x27\x8a\x41\x8b\x7b\xda\xa3\xd8\x26\xc5\xda\xb4\x0e\xd7\xe8\x32\x31\x0c\xa7\x14\x9f\x82\xa1\xea\x22\x8a\xf1\x19\x85\x05\x89\x12\x36\x79\x10\xe9\x10\x9f\xd5\x42\x76\xd7\xc9\x8b\xb8\x1a\xe5\xb1\x40\x79\x0b\x50\xbd\x6c\x4a\x09\x16\x63\x0b\xe6\x36\xcd\xba\xa2\x9d\x6d\xa8\x59\x97\x26\x6b\x8f\x2a\x09\x57\xfa\x21\xec\xf0\x4f\xa3\xb3\x83\x48\xed\xcd\x2a\x05\xd8\x3c\xaf\x2b\x7f\x28\x96\x4a\x75\xdb\x87\x33\xb8\x5d\x54\x63\x18\xd8\x04\xf8\xc7\xae\x75\x65\x74\x77\x77\xa2\x26\xbc\x6f\xbe\xdd\x8f\xad\x51\xd6\xe9\x6f\x6b\xd1\x10\x6c\x25\xa2\x96\xf0\x30\x76\x54\x91\xa5\x65\x37\xe6\x2d\x02\x0f\xe9\x1c\x86\x1a\x9f\xd4\x58\x76\x69\x96\x7f\x51\x27\x51\x98\x73\xcc\x7e\xc4\x5e\x8f\xfb\xdb\x50\xd2\x7d\x4f\xc2\x7a\x12\x43\xf7\x33\x9d\x2a\x35\x02\x17\x0a\xf5\x6f\xcc\xfe\xef\x82\x63\x8e\xa4\x61\x13\xd3\xcf\xf5\x83\x5c\xe8\xf6\xd4\xba\x66\x19\x8e\x7d\xc9\x72\x9a\xe4\x3e\xf0\xe9\x7b\x4a\xe8\x67\xdb\xba\x02\x92\xcc\x80\x70\xc6\x44\x36\xcf\x25\x3f\xc1\x85\x5d\xc4\x44\x7f\x80\xdd\x95\xb9\xc8\x81\x52\x57\x41\x8c\x8b\x2f\x66\x39\x72\xbc\xa8\x5b\x81\xa2\xc6\x0c\x68\x1d\xc3\xb5\xbf\xc1\xb9\x94\x6c\xfb\x58\x23\xa4\xb7\xd5\x44\x66\xa6\x02\x95\xed\x4d\xd3\xb7\x73\x44\x15\xa8\x2d\xf3\xb7\x69\x8c\x32\xc6\x51\x19\xdd\xfd\xac\xc1\x74\xe3\xf9\x76\x98\xa5\xa9\x60\x2f\xa5\xa1\xec\x8b\x46\xe7\x9a\xfa\x37\x66\x34\x32\x99\xe5\xce\x35\xd0\xe7\xf7\x95\xee\xce\x7d\x25\x21\xd6\xb3\x76\xc8\x23\x07\x69\x0f\x63\xbc\xf9\x44\x6d\x41\xd6\xe4\x6b\x33\x3e\x51\x83\xb9\xbd\x94\x93\xb4\xfc\x3f\xbd\x6b\x61\x0b\xd1\x97\x89\x2f\x40\x13\x78\x6f\x90\x0e\x2d\x09\x8a\x78\xe8\x29\xd4\x35\xf9\xb8\x69\xfb\x66\xe3\xec\x96\xe2\x9c\xa9\x3e\xfa\xc9\xf1\xa3\x22\xeb\x93\x03\x68\x2c\x52\x2c\x5a\x97\x25\x10\x7c\xbd\x35\x59\x31\xa8\x42\x27\xd7\xea\xc3\xaa\x05\x0d\x1d\x24\xf9\x20\xe8\x0b\x2d\xa2\xe9\x9d\x93\x3a\x16\xf3\xda\x9a\x28\x71\xa2\xf7\xe1\x04\x26\x50\x47\x99\x15\x9e\x48\xa0\x68\x4d\x17\x1a\x4a\x51\x0b\x6d\x33\x32\x59\xe1\x74\x42\xb0\x29\x43\x48\x83\x8f\xd7\x15\x65\xd8\x2c\x31\x10\x03\x93\xe3\xaa\x2a\x9c\x4d\xb6\x08\x09\x70\x48\x9d\x29\xa7\xf4\x79\x5a\x27\x90\xa7\x27\x42\xee\xb9\xb9\x76\x62\x56\xf8\x0d\xb0\x37\x97\x12\xe6\x3d\xad\xa1\x11\xcb\x51\x56\xb4\x68\x2d\x90\x7c\x05\x33\x88\xcf\x94\x57\x52\x98\x92\xb6\xae\x81\x12\x35\x83\x05\x02\x25\x17\xff\xa6\x8a\xd1\x6e\x2a\x25\xed\xab\x35\xc7\x30\x2d\x6c\xd3\x8f\x23\x6e\x39\xed\x93\xf7\xb2\x11\xa8\x2e\x1d\x94\xfe\xb1\xc0\x6a\xdb\x30\x93\x2f\x8b\x1c\x14\xab\x52\x2a\xd2\xeb\x9d\x40\xb5\x1f\xee\xd0\x70\x17\xe9\xca\xa7\x54\x35\x30\x1a\xc5\x51\x62\xa7\xb5\xe2\x0e\x4d\x62\x0c\xc0\x4f\x94\xa6\xdf\x23\xf4\x1a\xd1\x16\xd9\x98\x00\x53\x7f\xa5\x1a\xef\xc0\x6a\xa0\x90\xc2\xa0\x1d\x3e\x99\x40\xcc\xbf\xf8\x22\x21\x8a\x92\x25\x34\x7a\x18\xd4\xae\x40\xf9\xdc\x86\x01\x34\xe3\xb8\x6b\xf9\x0d\x4c\x96\x0f\x18\xeb\x81\x50\x0b\xf5\x63\x3e\x9e\xc8\x0c\xe6\xe6\xda\x7d\xf2\x31\x71\x1a\x38\x40\x68\x49\x89\x46\x19\x50\xae\x46\x4b\xa8\x37\x0a\x78\x9c\xc2\x29\x09\x6e\x7c\xdc\x32\x2a\xf3\x01\xe2\x01\xa4\xc3\x27\x10\x1d\xa2\x88\x82\x0c\x9d\x83\xce\xb1\x52\x9d\x01\x9c\x9c\xb7\xb7\x67\x7b\x8f\x2a\xbe\x3d\xe2\x3e\x56\x7a\xa3\xcf\x20\x33\x62\x77\x13\xdc\xda\x0e\xec\x29\x22\xd1\x4d\x4b\x16\x6d\xeb\xdf\x7f\x06\xdb\x9e\x13\xf2\x76\xb8\x8b\x69\xea\x9b\x61\x6f\x44\x0b\x9a\xf5\x35\xb5\x52\x74\xd9\x8d\xa3\x30\x5e\x9b\xa1\xeb\x61\x61\x75\x04\x92\xd8\xe4\x4e\x2a\x34\xdd\x69\x2d\xad\x8b\x6c\x01\xc5\xb1\x3b\x1a\xf8\xb5\x9a\x66\x49\x4b\xa1\xa6\x8e\x6a\x65\x8e\xa3\x4d\x9c\xde\x76\xd7\xe4\x5c\xf3\x46\x90\xfb\xa7\x1a\xdc\xfe\xa7\x13\xab\xeb\xec\x01\x30\xe6\x6b\xab\xeb\x86\x5a\x5d\x37\x3c\xcd\x2c\x2d\x8b\x28\xb1\x31\xc7\x80\x4a\x8e\x4b\x70\xce\xe7\x51\x2a\x73\xae\x60\xce\xde\xb5\xd5\x69\x14\x96\xcd\x47\x36\x04\x90\xb0\xfa\x42\x84\x0b\xff\x23\xb2\x05\x3e\xd1\x0b\x4b\x91\x56\x4b\x96\x12\x2d\xaf\x42\x06\x11\x33\x97\x41\x3d\xb4\xa6\x97\xae\xf2\x37\x3a\x09\x8f\x79\xe7\x4e\x7b\x7e\x62\xfa\x7c\x85\x8a\x19\xd1\x4a\x3d\x75\x3d\x86\xcb\x10\x02\x83\xaf\x27\x24\xe9\x8a\x8d\xf3\x69\x8f\x62\x62\xec\x17\xca\x68\x6c\x72\x02\x1a\xce\xcf\x55\x34\xf7\x3f\x6b\x33\x0f\xd0\x3a\x04\x40\x89\xc5\x02\x80\x0b\x3e\x76\xdb\x07\x11\xc7\x62\x6f\xcc\xc0\x16\x6e\x0a\x44\x75\xac\x09\x69\x34\x34\xde\x01\x44\x70\x8e\x1e\x8c\x72\xac\x49\xe0\xb5\x57\x2d\xdb\xba\x83\x53\xfd\x84\x34\x70\x26\x8b\x04\xcf\xb7\x07\x22\xa1\x85\x64\x80\x0d\x07\xf8\x64\xa2\x04\xf7\x8d\xd9\x76\x5e\x76\x87\x51\xd1\x52\x6e\xc0\x81\x2f\x71\x5d\x52\xfd\x7f\x90\x1f\x22\xba\x69\xfa\x05\x0c\xa2\xfb\x18\xc9\x7c\x32\x51\xaf\x9c\x3d\xd0\x8e\xd3\x32\xca\x23\x93\x18\x2e\x0d\xa1\xd0\xcd\x0a\x2b\x7c\x32\x11\x94\xcc\x1e\x68\x17\x65\xd6\x2d\x63\xfb\xb7\x68\x39\x28\x4a\x72\x0e\x1d\x5c\x21\xe2\x6a\x56\xae\x5a\x0c\x86\x51\x1c\x15\x26\x5b\xdb\x4d\xff\x8e\xed\xe2\x9d\x1a\xf8\x85\x56\x27\x01\xc2\x28\x24\xed\x87\xb8\x5c\x0c\x21\x41\x43\x62\xdf\xfb\x90\x76\x2f\xa9\x37\xfa\xaa\x29\xda\x02\x48\xef\xbf\x8f\x78\x8e\x7f\x51\x31\xe2\x8e\xb9\x08\xa8\x4c\x6c\x12\x2a\xfb\x43\xc9\xb4\x81\x98\xe2\x63\xe7\x85\xb4\x3a\xb0\x36\x8e\xa3\x65\xab\xed\x51\x21\xeb\x86\xc4\xfb\x96\x82\xf2\x9f\x98\x78\x2d\x94\x6c\xf6\x6c\x6c\xd6\x24\x42\xc6\xea\x0c\x72\x20\x56\xfa\xcb\x63\xa5\x8b\x02\x88\x82\xd4\x17\x9a\x60\xb7\x4b\x99\xe9\x76\x25\x9e\x42\xaf\x1c\xdb\x1d\x1f\xab\x5d\x39\xb3\x61\x31\x34\x91\x46\x9d\xfd\x33\x85\x3a\xfb\x67\x2e\x32\x4e\x57\x6c\x36\x32\x51\x6f\x4a\xe9\x5a\x43\xa7\xd0\xb1\xca\xb4\x6f\xd6\x93\x2e\xbc\x63\x90\x1e\xb9\xe2\x3b\xe9\x10\x6f\xe6\x16\x78\xca\xc3\x6b\xe3\xc7\x3c\xb3\x2b\xe9\xfd\xff\xf0\x66\xb9\x3c\x88\x6c\x06\xf1\xd7\xaf\xa3\xe0\x80\x1d\xed\x4a\xb0\xfd\x4b\xdc\x51\xbf\x09\xd5\x7a\x54\x95\xde\xa7\x5d\x08\xe9\xf2\x35\xd2\x70\x44\xb2\x36\x0e\x3c\xc8\xf3\x2a\xa9\x23\x23\x75\xb9\x42\xfd\x2d\xfc\xfd\x07\x81\x27\x69\x4e\x63\xcb\x73\xc6\xf7\x1e\x61\x7b\x87\x52\x3d\x44\x78\xa0\x73\x83\xbe\xf4\x01\x32\x27\x6c\x57\x50\xc8\x15\x31\xf9\xd6\x37\xc4\xed\xe9\x3d\xce\x9b\xf0\xf4\xde\x1d\x2b\xb0\xe0\x7b\xb4\x70\x0b\x8f\xb4\xa5\x6c\xf9\x69\x80\x09\xcd\x8b\x32\x53\x3c\xef\xc3\xc0\x40\xe1\xe7\xaf\x90\xb4\x0d\xf2\xe5\xab\xc8\xfb\x54\x5d\x77\xc1\x89\xbc\xd1\xc6\x8b\xc5\xe5\x47\x08\xe0\xa4\x6d\x59\xe5\x7a\xb8\xe2\x8f\x95\x25\x4b\xbe\x1a\x65\xf1\x4c\x75\x69\xae\x98\x5a\x7d\x48\x62\x45\xba\x67\xfc\xcb\x5b\x63\xef\x7a\xf0\x31\xdd\x3f\xeb\x2f\x38\x17\x44\x12\xad\x73\x42\xbb\xc0\x6e\x5d\x0b\x14\x59\xef\xda\x78\x97\x8c\xa0\xee\xb4\x02\xad\x83\xe8\x88\xea\x33\xeb\x0a\xbb\xb6\xa3\x63\x26\x7c\xa8\x90\xd5\x10\xac\xda\x59\x5d\x04\x6a\x0e\xa7\xd0\x82\xc3\x9c\x87\xcd\x16\x86\x1f\x18\x75\x8c\x0d\xd6\x30\xac\xb3\x78\x3a\x62\x13\xd6\x72\x1a\xe6\x67\x1d\x6a\xc0\x0c\x7b\x66\x80\x49\x24\xf6\xa7\x0a\xd9\x73\x74\x2b\x9a\xe7\xe0\x9e\xf9\xf6\xe2\x9e\xa7\xe9\x0d\x32\x74\x5b\xe1\x53\x7f\x86\x97\x86\xfd\xf8\x1e\x1e\x2c\xa2\xbc\x9f\x06\x0a\xb3\xf0\x08\xe9\xd1\xa1\x60\x0e\x60\x24\xc6\xd2\xcd\xc0\x0f\x9f\x1b\x9c\x08\xa0\x82\xf7\x76\xe0\xab\x0e\x7f\x11\x28\x8d\x63\x24\xd0\x88\xc3\x6f\x07\xaa\xe3\xf2\x54\xc7\x7b\x59\xb0\x61\x35\xd0\x40\x5c\x83\x60\x4f\x03\x2c\xf2\x38\xb9\xab\xb5\xc6\xb6\x75\xb4\xa1\x90\x59\x93\xcc\xc3\x19\xb7\x2e\x8a\x36\xc7\x86\x82\x73\xbe\xa1\x54\xe4\xa9\xa2\xc9\x09\xb9\x98\x21\x54\x7f\x29\x20\x77\x59\xb3\xc9\x72\xa0\x9b\xa5\xcb\x2e\x6c\xe0\x4e\xac\xe2\xf6\x4c\x56\xa6\xf7\xcd\xb7\xa3\x9e\x19\xc0\xf6\x9e\xcb\xac\x78\x73\x52\x73\x55\x4e\xa4\x51\xd2\xcb\x67\xaa\x85\x01\x43\x74\x5b\x47\xe9\x9b\x6d\x5b\xf7\x12\xd5\x1f\xd3\x05\x3a\x83\xd8\x7d\xf3\x8e\x2d\xdb\x10\x5c\xe6\x45\xe9\x2c\x91\x30\x40\x6f\x29\x81\xb2\x5b\x4a\xe4\x29\x2f\xb2\x32\x2c\xca\x0c\x59\x8c\x98\xb3\xfb\x22\xf6\x4d\xcd\x4d\xbe\xd6\x44\xbd\xcb\x07\xe9\x68\xe4\xb2\x7a\x87\xf1\xf6\xce\x67\xa8\x6f\xa3\x12\xfc\x63\xd5\x23\xca\x8b\xcc\xda\xe2\x31\x5f\xd2\xbb\xab\x30\x8d\x77\xb1\x26\xba\xea\x59\x35\xa8\x45\x0f\xa5\xa5\xe4\xeb\xfd\x14\x3c\x86\xb1\x87\x47\xfc\xd7\x40\xcb\xbc\x89\xae\x0b\x86\xdd\x26\x96\x43\x2c\xad\xec\xce\x8e\x72\xd3\x3b\x18\x84\xa2\xae\xbb\x75\x33\x95\x0a\x60\x9a\xc4\x6b\xd0\x88\x00\x5a\xf1\xc2\xb8\xc6\xf6\x72\xf7\x71\xc1\x9b\x23\x97\xaf\xa6\x49\x4b\xcb\x20\x72\x58\xc4\x27\x2a\x2d\x1f\x9a\x97\x4b\x5b\x80\xc1\x28\xe1\xe0\xfb\x2a\x1c\x7c\x5f\x85\xb2\x1e\xf7\x41\xcf\x9c\x15\xd9\x30\xc5\xb0\xba\xa0\x8f\xa9\xa4\xda\xc4\xde\xee\xf6\xc4\xdd\x1d\xaa\x42\xb1\xac\x1c\x8e\xac\x10\x63\x04\x48\xad\x08\x3b\x97\x1a\x89\x1b\x79\x61\x62\x61\x4e\xb2\x11\x5f\xdd\x95\xcf\xaf\x98\xa3\x74\x38\xb2\x6b\x98\x43\xe2\xd5\xd0\x72\x2a\xc6\x27\x1f\xaa\x15\xe0\x54\x6b\x1c\x8f\xed\xb2\x76\xe9\x9a\xa4\xaa\x56\x23\x92\x48\x4d\x42\xa7\x61\x3f\x5a\x2c\xd0\x62\x4e\xfb\xa4\xe2\x80\x14\x36\xc9\xf9\xb1\x8b\xf0\x72\xcb\x49\x8b\x7c\x50\x97\xec\x29\x8b\x29\xa5\xb8\xf5\xd1\x58\x9b\x02\xa0\x61\x28\x42\xa0\x0d\xca\x18\xd2\x0d\xdf\x27\x25\xc2\x99\x8e\xb7\xd8\xfa\x68\xec\x05\x24\x6e\x29\x9a\xfa\x59\xd5\xe1\x5e\x31\xa1\x49\xc2\xb5\x96\x92\x30\x06\x3d\x99\x8f\x83\xcf\xbb\x58\x33\x4c\x93\x5e\x04\x34\x6f\xcc\x62\x19\x4c\x83\x1e\xfb\x98\xe2\x42\x13\x73\xb3\x9f\x66\xc5\x20\x24\xa1\xc8\x96\xc7\xba\x7c\x14\x28\xda\xef\x47\xaa\x35\x98\x17\x6b\x71\x94\x17\x51\xa8\x3d\xd1\x3f\x54\x9e\xe8\x1f\x4e\x2c\x50\x07\xf7\xb4\x07\x6b\xdd\x2c\xea\xf1\x9a\xea\x56\x60\x6f\x4d\x33\xf6\x4d\xea\x15\x53\x73\x8c\x3e\xaf\x6b\x66\xe7\x27\x46\x73\xf5\xfa\xc3\xcc\xda\x90\x4b\x7f\x62\xf1\xc8\x6a\x56\x7c\xb2\x75\xeb\xac\x06\xf3\xde\xbd\x9f\x57\xa8\xee\x2b\xf8\x19\x44\xf7\xdb\x3b\xde\x74\xf9\x3a\xbf\x73\xd0\x1a\xde\xa3\x18\x50\x44\xfe\x14\x19\x78\x5b\x87\x56\x1e\x01\x5b\xd2\x76\xeb\x90\xe0\x5f\x3b\xc4\xab\xdc\x1d\x34\x02\x11\xb5\xfe\x21\x45\x68\xba\xce\x87\x3c\xa3\x05\xdb\x7e\x31\x28\xf4\x15\xb2\x13\xd4\x87\xc3\x0c\x82\x33\x3a\x82\x7c\x56\x27\xc3\xda\x76\x0f\x0b\x1d\x22\x93\x27\x3a\x7e\x41\x61\x9b\x7f\xfc\xf6\x15\x5a\xbe\x70\x4f\x0c\x51\x42\xbd\x73\x7b\xcd\x93\xbb\x08\x07\x8f\x57\xbf\xe3\x06\xbc\x23\x7a\xee\x5e\xf7\x9c\xad\x56\x87\x36\x6b\xfc\x03\xfb\x30\x4a\x8d\xb3\xfa\x19\x56\xbd\x08\x94\xf0\x0d\x2f\x8b\x08\x5b\xde\xe1\xf4\x0b\xb1\xd1\x51\xda\xcf\x45\xa5\xb9\x7a\x76\xce\xd9\xac\x7a\xdc\x42\x64\xa1\x18\x86\x7f\xd2\x15\xdb\xd2\x2c\xb6\x06\xcd\x2f\x29\x9c\x3f\x55\x57\x81\xc7\x2f\xd5\xec\x0b\x84\xce\xfe\xb8\x92\x21\xcb\x0b\x62\xf6\xe2\x01\xdd\x51\xca\x2d\x2c\x71\xc9\x90\x67\x44\x29\x0e\xff\xec\x78\x4e\x5c\x0b\x14\xa9\x68\xa5\xbf\xfa\x47\x0d\x08\xa0\x85\x76\x37\xcd\xb2\x74\x55\xf2\x44\xc6\x91\xd0\xd3\x16\x4c\xc9\x13\x4a\x55\x3c\xcd\x2d\xb6\x7a\x07\xfa\xf1\x00\xa0\x66\x8d\xe3\xbe\x59\x49\x1d\xf1\x40\x80\x71\x2d\x27\x77\xb9\x6d\xbd\x81\x55\x11\xa7\x21\xcc\x6b\x84\xf4\xa3\xb0\x73\x5a\x6f\x35\x2f\xb2\x28\x5c\x76\x4e\x95\x78\x00\xcc\x11\xe5\x13\x65\xc3\x1d\x0e\xca\xa5\x96\x67\x4e\xdd\x55\x35\x39\x6d\xb4\x5b\x25\x8a\x49\xb4\x34\xa8\xd9\xa6\x5e\x52\xfa\x24\x97\x54\xe3\xf1\xe0\x3f\xf8\xaf\xa6\x14\x6e\x1b\xa2\x4a\x48\xb5\xb6\xd7\x6a\xc0\x1a\x4a\xbb\x1c\xa1\xd6\x23\xb4\x5b\xfa\x02\xe1\xe3\xfa\x7d\x2c\x1f\x98\x0c\x8e\xee\xc2\xf4\x67\x62\x2b\x9f\x68\xa2\x66\x9a\x2e\xdb\xde\x8e\x2a\x19\x64\x81\xf4\x40\xe1\x0e\xbe\x37\x56\x92\x3b\xc8\x12\x90\x48\x4f\xc3\x14\x51\x9b\xb5\xa3\x2a\x31\xe9\x17\xe8\xfc\x8b\x6d\x17\x03\x40\xfa\x28\x2a\xc6\xb8\xa3\xdc\xab\xac\xe9\x15\x03\x95\x4f\xfc\x71\xe0\x9f\xc6\x1f\xab\x7d\x06\x32\xf1\x79\xcb\x33\xeb\x60\xa0\x2a\x08\xe9\xad\x01\xef\x97\x31\x08\x79\xb8\x62\x6f\xbb\x85\xc7\xc2\x27\x0d\x86\xea\xfb\xdb\x61\x59\xec\x9c\xd2\x26\x51\xb4\x52\x60\x0e\xc3\x30\x48\x94\x20\x69\x5e\x4a\x00\xe5\x65\xaa\x81\xb6\xc0\x8a\xc9\x88\x7c\x74\x8f\x1e\xeb\x4c\x1a\x8e\x2d\xb6\x4d\xd4\xd3\xad\x14\xf5\xe1\xd3\x0a\xe8\xd6\x4f\x49\x3e\x11\x74\x16\x44\x8e\xb7\x75\xd7\xf3\x76\xb5\x37\xc9\x83\x7a\x6e\x87\x16\x8b\xa4\xcb\x74\xf4\xcb\xea\x1d\x38\xa2\xdf\xe2\x02\x47\x52\x30\xe3\xc5\x1f\x9d\xd2\xaa\x1d\xa7\x94\x9c\xaa\x68\x6d\xec\xf0\xdd\xbf\x1b\x63\xdf\x77\xbe\x41\x61\xaf\x48\xda\x69\x11\x30\xfc\xaa\x28\x82\x55\xbf\xca\x7f\xf5\x50\x1f\xea\x28\xe9\xab\x4a\x27\xb6\x6c\xa6\x85\xf2\x89\x6a\xf4\x94\xcf\xe5\xcf\xe5\xcf\x65\xcf\x61\x67\x15\xeb\x31\x25\xae\x75\x51\xdd\x44\xda\xef\x47\x61\x64\xe2\x47\x7d\xd9\x14\x72\x5a\x2a\x21\xfd\x96\x2b\x09\xa9\xb0\xea\x12\x15\x4a\x64\x02\x60\x85\x66\x59\xdc\xb1\xa2\x84\xde\x09\x54\x83\xfd\x28\xa6\x93\x93\xf9\x73\x6b\xd9\x03\x35\xae\x07\x69\x36\x24\x9f\x37\x07\x2b\x7a\x97\x66\x80\x94\x4b\xf4\x56\xf7\x52\x64\x54\x8f\xe6\x77\x03\xd5\xc9\xf8\xdd\xc6\x0e\x72\x31\xb0\x43\xa9\x3d\xb0\x32\x16\x5e\x8d\xc8\x64\x35\x78\xe0\xe5\xab\x66\x04\x0d\x48\x54\x70\xf9\x96\xb4\xda\x9d\x54\xf8\x1e\x75\x5c\x61\x56\xbd\xc2\x6a\x71\x8c\x9e\x15\x1f\x2b\xa2\xd5\x52\x69\x32\xc1\x6b\xfa\xa8\x4a\xe5\xb8\x5a\x04\x20\x0d\x23\x5b\xac\x3d\x52\x85\x1f\xf2\x06\xe8\xca\x81\x18\xf8\xb8\x06\x97\x1a\x6b\x79\x68\x44\x00\xfc\x19\x25\xcc\xf9\xfa\xd8\x07\x4c\x68\xb3\x30\x3b\x66\xa2\x93\x5f\x45\x5e\xe1\xc0\x0c\xbb\xac\x6a\xe1\xf4\x2f\xdd\x98\xb9\x34\x51\x07\xdf\x37\xdf\xce\xa2\x25\x0e\x1e\x51\x12\x40\xe1\x9c\x8f\x27\x5e\xcf\xe2\x9e\xf6\x28\xa2\x2c\xb7\xe5\x9b\x5b\xff\x5e\x11\xf4\xff\x7d\x93\x1e\x46\x91\x95\x79\x51\x77\x5b\x5e\xf4\x68\x96\xcf\xfb\x14\x3a\x1c\xa4\x69\x5c\x58\x13\x0e\xaa\x9b\x98\x9b\x93\xf7\x47\x61\x82\xbc\x4b\x3d\xb6\xe2\x30\xe5\x98\x16\xcb\xe3\x11\xad\x46\x7e\x24\x78\xca\xb1\x46\xba\x4c\xc9\x6b\x79\x34\xd2\x9b\x8a\xcd\xf8\xa6\xfb\xd3\xc1\xda\x28\x0d\xab\x1d\x9d\x07\xa0\x6b\x92\x68\x3c\xc3\x7f\xf6\x90\x25\x60\x0b\xf1\xb9\xa5\x04\x8a\x58\x59\x4b\x2c\x90\x7c\x0a\xda\x35\xe1\xf2\xc8\x84\xcb\xf9\x94\x47\x7a\xdc\xc4\x32\x89\xe9\x7d\x41\x2d\xe0\x9f\x6a\xa3\x88\x74\x38\x32\x49\xc4\x86\xa6\xae\x57\x70\xc8\x69\xd9\x9d\x98\x50\x82\xdc\x37\xdf\xee\x25\x66\x4a\xf5\x93\x16\x78\x14\x3a\x91\x30\x97\x78\x1d\x77\x32\x00\x5d\x98\xcd\xaa\x0c\xe3\x9c\x32\xbf\x3c\xa7\x9d\x22\xa3\x1e\xf6\xae\xe7\x79\x27\xba\xa3\xbc\x9e\xee\x04\xcf\xd4\x73\x85\x7d\xf3\xed\x67\x9f\x7d\x5c\xe9\xdf\xfc\x4c\xf5\x01\x7e\x3e\xf6\xb2\xdb\xd0\x7e\x47\x08\xf1\xa6\x76\x6d\xe0\xfd\x19\x25\xb3\xa9\x75\x94\x6c\x31\x76\x8f\x2b\x49\x85\x1d\x1d\xca\x1a\x98\x81\x0b\xa0\x0f\xff\xd5\xd8\x8f\xc4\xf7\x02\x5f\x4c\x3b\xcd\x8f\x45\x6e\xb7\x46\x26\x4b\x93\x47\xaa\xfd\x80\x21\x4f\xda\xa0\x09\x6b\x1b\xa2\xed\xbf\xc4\x0a\xc4\x27\xca\x72\xe6\x88\xea\x05\x5f\xd7\xd1\xdc\x39\xfe\x51\xc1\xe0\xeb\xa6\x4d\xf1\x59\x4f\x73\xe2\xc2\x2a\x16\x8b\x3b\xb4\x6c\xa1\xdd\x70\x05\x4b\xb7\x5b\xa3\xe6\xe6\xbc\xd1\xfb\xfc\xbc\x33\xb4\xa6\xfd\x98\x75\xe5\x11\x67\xe3\xed\xb7\x50\x34\x94\x78\x57\x2f\x4f\xdb\xd1\x72\xc6\x45\xef\xc6\xe3\x44\x22\xf2\xbf\xa0\x67\x8a\xc0\xea\x73\x94\x86\xe3\x77\xd8\x9d\x12\x79\xdb\x6e\x24\x04\xf4\xcc\x3b\x4f\xad\x2b\xf1\xad\x29\x52\x8f\x56\x9c\x34\xd9\x68\xdf\x51\x2c\xbd\x99\x8e\x92\x14\xda\xff\x8d\xa9\x2a\x77\xc1\xd6\x75\x41\xc1\x12\x36\xb4\xfa\xfe\x69\x55\x1a\x4f\x4c\xb5\x9f\x54\x0f\xd0\xf1\x34\x0e\xba\xe3\x49\x76\xd2\x6c\x3b\x2d\x8b\x5c\xf4\xee\xd0\x66\x80\xbd\x21\x8a\x77\x9f\xd6\x7a\x06\x7e\x9b\x66\x1a\x3a\x26\xb2\x5c\x45\xf5\x4b\x28\x06\xfe\x15\xee\x4e\x0a\x71\x5b\xd3\x89\xbd\x7b\xdb\xb9\x29\x6d\xb6\x9c\x99\xb2\x98\xf2\x7e\x03\x9f\x8e\x3d\x16\x06\xf2\x67\x62\x85\xbc\xb5\xe4\x70\x88\x34\x1a\x72\x6b\xb2\x70\x20\xcb\x97\x23\x3d\x54\x4f\x5c\x56\xdc\x86\x8e\x6b\x62\x6d\x4f\x5a\x52\xac\x33\x80\xf1\x2b\xa2\x03\x2a\x70\x4f\xd3\xc4\x66\x44\x94\x02\x64\xf9\x37\xc7\xaa\x49\xc8\x2a\xba\xfc\x2f\x81\x6a\xe6\x6d\x5b\x6f\x20\x47\x52\xb8\x3b\xe5\xc5\xe8\x7e\x8a\x87\x84\x1a\xe7\xc7\x35\x17\xe8\x86\xab\x26\x7e\x6f\x31\xa5\xc8\xcc\x17\x30\x1c\x01\x58\x38\xab\xa4\x54\xee\x4e\x14\x38\xbe\x02\x69\xad\xd8\x38\x8e\x18\x64\x6f\xcf\xe3\x61\xf1\xc9\x64\x43\xf0\x85\xfd\xd5\x53\x4e\xe3\x15\xf9\x18\xd7\x13\x68\x21\x90\xda\xc2\x93\xae\xee\x6d\xb2\x22\x76\x45\x5d\xa7\xba\x31\x37\xc7\x2b\x3a\xd4\xb0\xc5\x67\xb5\x41\xa6\x29\xb7\x36\x37\xab\xb4\x6f\x89\x9e\x1d\x5d\x1f\x9f\x8c\x7d\xbc\x3d\x48\xf3\x22\x8a\xed\x0e\x1f\x8d\xa3\xdc\x52\x93\x31\x01\x1a\xe9\x75\xa5\x1f\xc9\xd1\x36\x92\x97\xb3\x35\x1b\xa3\x49\x37\xb0\x2a\xdb\xe8\xa6\xc3\xae\xc9\x7a\x72\xfb\x4a\x56\x79\xd6\xe9\x4d\x35\x94\xb7\x79\x6b\xe4\x81\x89\xa4\xfd\x74\xa0\x38\x44\xa7\xc7\x9e\x4a\x60\x42\x6c\x6f\xde\x35\x89\x31\xcf\x63\xdf\x0a\xf8\xa0\x91\x38\xb9\x1a\x15\x83\x5e\x66\x57\xf1\x33\x28\x14\x9c\x1e\x2b\x07\xc4\xd3\x7e\x63\x23\xbd\x29\x7c\x7d\x53\xa4\xd1\x60\x9d\xdc\x8b\x72\x98\x35\xaa\x8e\xec\xef\x8c\x7d\x47\xf6\x77\x26\x82\xd3\xea\x9a\x86\x66\x84\xca\x21\x66\x13\x03\xab\xf9\x44\x55\x20\x7a\x2c\x47\xee\x22\xe9\xa3\xb4\xf3\x61\xde\x22\xa3\xc7\xc4\x6a\x75\x7c\x2c\x9e\x97\xd9\x92\xcd\xd6\x1e\xa1\x97\x81\x81\xcf\x65\x7e\xe5\x57\xce\x03\x73\xf7\xba\x77\x8c\xdd\xb6\x5e\x7d\xb7\x0b\x3f\x17\xa5\xaa\x72\x59\xf1\xde\x7e\x5f\x2d\x3e\xbb\x3a\x4f\xd6\x78\xb0\x26\x59\x7b\x06\x83\x05\xb9\xd9\xcf\x15\xda\x8d\xed\xdf\x71\x01\xe7\xa8\xe3\x25\x45\x58\x95\xcd\x01\x3e\x8d\xb5\x9f\x7d\x25\xf0\x4c\x80\x13\x64\x1b\xd4\xb1\xb7\x6d\xbc\x85\x3d\x05\xcc\xdf\x27\x3a\xfa\x8e\xc7\x1e\x97\x31\xd5\x51\x6f\xf4\x0c\xb9\x11\x3b\x3d\xe0\x6a\xb7\xab\xf1\x7a\x50\xf4\xb8\x86\xf6\x86\x00\x02\xe8\x5d\x29\x99\x3a\x36\x3e\xfa\xca\x17\x26\x96\xb0\xf9\xf9\x36\xe8\x2e\xaa\x41\x7c\x67\xac\xc4\x37\xee\x28\x90\xbd\x89\x8b\x41\x5a\x2e\x0d\x1e\xf1\x38\x95\xf5\x2d\xfa\x5d\x55\x68\x22\x06\xa8\x1e\x30\x08\x2e\x0c\x30\x85\x18\x12\x7c\x8c\xe9\x83\x4d\xfe\x76\xcd\x54\x76\x62\x7f\xf9\x72\xdb\xe6\x85\xe9\xc6\x51\x3e\x10\x08\x3a\xc2\x09\x20\x77\x9c\xa2\x79\x75\xe9\x22\x04\xff\x94\x22\x4c\xbd\x5c\x46\x99\xcd\xa7\xe9\xa1\x61\x75\xb8\xa8\x00\x6e\x3f\x55\x39\x00\x7a\xea\xfc\x37\xaa\x41\x90\x9b\x38\x1d\x56\xe1\xaa\xf3\x7b\x62\xfd\x76\xc1\x70\xfa\x89\xd0\xb5\x83\x28\xe9\xed\x54\xef\x11\x62\xfc\x28\x69\x7c\x97\x7e\x18\x0b\xe0\xb6\x75\xdf\xd0\xf8\x17\x63\x05\x7a\x9a\xea\x28\xd4\xe1\x05\x8e\x66\x90\xde\x5d\x51\x85\x87\xec\xb9\xd6\x96\x16\xbe\xe8\xab\x1c\x6b\xda\x71\x96\xd2\xb8\x67\x13\xa5\x14\xbb\xad\xa3\xda\xdf\xdb\xea\x35\xde\x81\x24\x27\xc2\x6b\x55\x8a\x87\xe7\xb6\x46\xc3\x5f\xfd\xb5\xf6\xc1\x3d\x5a\x4f\xed\x36\xc6\x24\x9f\xa8\x9e\x6b\x3e\x30\xa3\x28\x4b\xa7\x35\xb4\x06\x02\x4a\x5c\x8b\x0d\x3c\x80\xe3\x92\x16\x4c\xbb\xea\x56\xbe\x91\xcd\xa2\xb4\x87\xf4\x17\x7f\xd8\x5a\xf7\x1f\x6a\x75\xfc\x9b\x18\x98\x2c\x8d\x7b\xb5\xfb\xb8\xa4\xef\xe3\x52\xe0\x07\x49\x94\x84\x71\xd9\xb3\xf9\x23\x34\x48\x50\xc7\x78\xac\xe3\x13\x50\xf8\xe4\x62\xdf\x7b\x7c\xdd\x27\xc9\xdf\xc6\x30\x70\xd4\x17\x2f\xc8\x13\x90\xb8\xb3\xe4\x0f\x34\x2d\x99\x2d\xd3\x20\x43\xba\xbf\x6d\x92\x22\x0a\xa3\x91\xec\xe8\x02\x1b\xbc\x85\xea\x10\x9f\x28\x8c\x78\x5e\x66\x76\x57\x0d\x68\x5a\x3d\x71\xcc\xa0\xbb\xd8\x2f\xd1\xfe\xbe\xa7\x9a\xf6\xb7\x28\x7a\x44\x19\x9d\x37\x16\xa1\xfe\xd3\xcf\xf0\x89\x12\x03\xe6\x65\x8b\xbf\x77\xa2\x8b\x43\x99\x7b\x3a\x1a\x59\xa8\x2f\xc9\xc4\xf1\xd5\xc5\x8b\x13\x1f\xf9\x95\x76\x98\x26\xd5\x46\xc4\xc6\xff\x4d\xc2\xdd\x8f\xab\xc6\x4f\x5e\x10\xae\x17\x8f\x9e\x23\x01\x47\x15\xaa\x26\x99\xb8\x61\x2b\x17\xbc\x4b\x4a\xde\x68\x29\x4d\xa6\xbc\xe6\xc2\x45\xa4\x10\xd8\x3a\x10\x81\x23\x56\xfd\x77\x4d\x01\x4c\xcf\x0e\xa5\x84\x8d\x69\xfa\x7e\xe0\x97\xfd\xf7\xd5\x1a\x13\xa6\x49\x11\x25\xa5\xdd\xa1\xbd\x0f\x54\x14\xcb\x06\x68\x4e\x5b\xfd\x1b\xb3\x0e\x13\xec\xed\xab\x3e\x55\x59\xfd\x4d\x05\x0f\x58\x8a\xfa\x6c\xb5\xe2\x0c\xd6\x3d\x4e\xf3\xa2\x76\x4a\x89\xad\x49\x4a\x00\xf1\x85\x0c\x51\x45\x51\x42\x35\x6d\x64\x23\x15\x83\x28\x43\x49\xd4\x25\x99\xd5\x83\x14\xcd\x27\x65\xb8\x55\x14\x36\xe9\x59\x8b\xa0\x83\x35\xe7\xe9\xb5\x89\xfe\x7c\xcd\xd0\xbc\xbb\x36\x53\xab\x42\xb4\x94\xfc\x6a\x9d\x61\xe1\x93\x1b\x25\x1a\x7a\x4a\x61\x95\x63\x9b\xe7\x34\xd6\x1d\xb1\xbe\x7a\x87\x6e\xaf\x99\x3d\xc0\x21\xc2\x05\x4a\xbc\x05\x6c\x51\x3d\x58\xa4\xc4\xef\x04\x8a\x1a\xc6\x43\xc8\xa5\xea\x4e\xc7\xea\x9f\x6b\x72\xea\x4f\x6a\x76\x70\x23\x13\xaa\xa2\xf1\xf9\x40\xe7\xf7\x4d\x45\xa3\x41\x94\xa0\x4d\x22\x26\x59\x0a\x59\x3f\x09\x83\x5d\xdc\x43\x31\x63\x99\x14\xd3\x4a\xaf\x90\x61\x6f\x12\xe8\xb6\xc4\x15\xf2\x0f\xfe\x0f\x7c\x1b\x57\x36\x95\x60\x80\x2d\xb3\x34\xca\xf3\xd2\xe6\x34\x63\x6a\x9a\x65\xd8\x89\x70\xbb\xc8\xeb\x6f\xd3\xc6\x8c\x58\xed\xaf\x9a\xcc\x13\x57\x54\x88\xc9\x45\x40\x7a\xdb\x52\x10\x7c\x58\xb7\xbe\x6b\xe3\x25\x67\xa4\x81\x47\x7b\x53\xa1\x80\x8e\x52\xfb\x0e\x65\xae\x33\x4d\x55\x3a\x9b\x14\x1e\x1e\xc9\x2f\x10\x6b\x95\xbc\x4d\xd9\x0a\xfa\x36\x8e\x4d\x3e\xe5\xe5\xc7\x4e\xe3\x15\xa2\x31\x70\x4d\xd3\x86\x3f\x51\x9b\x10\x83\x8e\x29\x56\x15\x83\x73\x0d\x17\xa6\x0b\x47\x03\xf0\x5c\x13\x66\xb5\x5a\xbf\x6c\x92\x97\x98\x93\x58\x71\xee\x04\x3e\x2f\xba\xa3\x30\xab\xcf\x5b\xdb\xf2\x36\x3e\x2c\xc0\xcf\x27\x81\x37\xa8\x4b\x8b\x90\xf0\x3f\x92\x83\x29\xb3\x69\x4c\x31\x4c\xc7\x4d\x85\x98\xff\x2a\x48\x71\x42\x01\xf0\xf5\xf9\xa4\x1c\x92\x23\xee\x0e\xff\xcc\x79\x2c\xb1\x91\x8b\x12\x77\x3d\x07\xbc\x8c\x5b\x5c\x7d\xd1\xef\x01\x96\x01\x34\x45\x6f\x3a\xa5\x53\x9b\xc4\x55\xde\x6a\x93\xa1\x60\x76\x01\x91\x38\xa3\x08\x89\x67\x26\x10\x05\x87\x16\xf7\x28\xfd\x99\x56\xcd\x29\x4a\x01\x91\x03\xdf\x40\x5c\xcd\xd2\xa4\xb7\x94\x0a\xfe\xc0\x31\x93\xe7\x3d\x33\x59\x4f\xd0\xa5\x8c\x57\x1b\xa5\x50\x3a\xeb\xed\x58\xbe\xfa\x6b\xbc\x4b\x40\xc1\x0a\x55\x9a\x0d\x3c\x4c\xf1\x69\x79\xda\x01\x08\x87\x29\xd1\x86\xd8\x4c\x19\x25\xc5\xc3\x0a\x70\x74\x58\xf1\xc6\xf3\x81\xc9\xec\xa0\x8a\xac\xb2\xfc\x31\xff\x08\xee\x68\x4d\xf0\xd6\x7a\xdd\xb1\xc3\x95\xd3\xbe\x4f\xa9\x0b\x4a\x2c\x47\xc7\xde\x5f\xe6\x0e\x36\x73\x45\xcb\x91\x01\x70\x13\xd9\x91\x83\x7d\xb8\x6a\xdc\x1f\xe0\xdd\x29\x1f\x8b\xe7\xb9\x00\xf5\x56\xd3\xc6\x46\xbd\x25\x4e\x67\x65\xa3\x56\xa9\xf4\xc5\x87\x32\x66\x4d\x56\x0c\xca\x6c\xca\xa7\x76\x58\xb3\x71\xd7\xf7\xb5\xc2\xf0\x8e\xce\xe7\x94\x32\x8c\xcd\xd2\x25\xa9\x2c\x2b\x6d\x2f\x8a\x47\x44\xe7\x6b\xa2\xc6\x32\xdb\xce\x6d\x5a\xc6\x1c\xc1\x61\x3a\xfc\x1c\xbf\xc1\x27\x13\x65\xe2\xaf\xb4\x63\xf1\xb8\x71\xfe\xce\xde\xeb\x59\xb5\xf3\xcb\xe7\x92\xe7\x5a\xbe\xcc\x08\xde\x05\x1f\xab\xc0\x3f\xb6\x05\xf2\x5a\x57\x6b\xdd\x4e\xc0\x45\xd4\x88\xae\x11\x2a\x5c\xcc\x35\x1f\x75\xb3\xfe\xd9\x5d\xf4\x02\x09\xc8\x73\xf9\xe9\x8e\x0f\xb9\xaf\x21\x28\xc0\xde\x3f\xb5\xae\xea\xea\xdb\x48\x78\x15\xc7\xe8\x04\x4b\xb4\xd8\x7a\xf6\xd9\xfb\xff\xfc\x73\x80\x04\xba\xdd\xc0\xf3\xfe\x74\xbd\xa6\x00\x08\xc7\xa7\x18\xf7\x02\x5f\x7c\xb9\xa7\xea\x2d\xfd\xd8\x94\x49\x91\xb7\x50\x76\x16\xc0\x34\xe5\x73\x22\xf0\x28\x5f\x1b\x0e\xd2\x30\x8d\x4d\xc1\xbe\x7c\x22\x0c\xe9\x5b\x22\xd0\x1a\x91\xff\xef\x2b\xea\x71\xfe\x5f\xfe\xea\xaf\xea\xc6\xd6\x25\xb5\xd9\xc2\x1e\x5b\xba\x9a\x7e\xbd\xb4\x36\x83\xda\x0d\xb6\xfa\x9f\x61\x54\x02\xb5\xb1\x63\x5d\x59\xc0\x5d\xa1\xa1\x83\x71\x07\xdc\x3a\x92\xd6\x47\x3b\x0a\xe8\xc6\x62\x11\xa8\xd1\x3c\xde\xd1\x26\x97\xc0\xed\xd1\x9f\x99\xa7\xa8\xb4\xa0\x14\xe5\x85\xbf\x72\x7c\xfc\xf7\x1f\xda\x2e\x19\x9a\x6c\xd9\x7a\x2a\x09\x97\xed\xb0\x6a\x4a\x0d\xaf\x89\xbc\x61\x87\x39\x92\x17\xe7\x9c\xe3\xe0\x17\xde\xab\x3c\xb3\x61\x9a\xf4\xa3\x25\xea\x56\xb9\xc0\x7a\x7a\xdd\x07\xd6\xd3\x13\xd6\x00\xf3\xf3\xed\xd8\x24\xae\xb6\x25\x52\x45\xf4\x38\xc4\x4e\x72\xeb\xb4\xde\x3b\xdb\x1e\x46\x49\x62\xcd\x28\x8d\x23\xbe\x2e\xa1\x90\xb6\x9c\xe7\xf1\xe4\x72\x70\x70\x4f\x3b\x1f\xd9\x30\x62\xaf\x7c\x05\x6c\x61\x76\x95\x14\xaf\xbc\x99\x7d\xd7\x66\x2e\x9c\x40\xcf\xe4\x8a\x22\x3d\x5c\x51\x9e\xee\xbd\x68\x25\xca\xe1\x90\xee\xe2\xe1\xe3\x5a\x91\x0d\x25\x40\x1c\x6f\x60\x3d\x10\xb1\x4c\x2f\xbd\xca\xfa\xd5\x0c\xd3\x77\x31\x43\x35\xa1\xb9\xcd\x88\xbd\xf1\x64\xa0\xb8\xaa\x27\x9b\xfa\x8c\x90\xe1\x99\x9b\xe3\x62\xf0\xae\x8e\x2f\x92\xef\x6a\x2a\x0c\x13\xa3\xb1\xa5\x76\x20\x48\x0b\x4a\xa1\xc4\xdf\x68\x68\x8a\x41\xf5\x54\xec\x94\xea\x5e\xfc\xd5\x78\xea\xd0\xe2\x1e\x1e\x42\xa8\xdd\x0b\x1b\x56\x21\x76\x63\x13\x2e\xdb\xc4\xf6\xa6\x3c\xba\x11\xb0\x16\x21\x94\x2b\x71\xc4\x9f\x37\xe0\x23\xf7\xb7\x47\x59\x3a\xf2\x78\x0d\x3c\xb3\xc3\x1a\x4e\x75\xb8\x09\x57\xd7\xb5\x89\xed\x47\xae\x6a\x84\x16\x09\x83\x4b\xf9\x64\xa2\x8c\xf8\xe5\x76\x2f\x5d\xed\xb1\x10\x8c\xa8\x9f\x7a\x20\xc3\x9f\x28\xdc\x45\x1e\x25\xcb\x4e\x60\x88\x37\x49\xed\x53\xf3\xfd\xe6\x0c\x74\x60\xa2\xa4\xe6\x99\xf3\xb6\x36\x89\x78\xbb\x89\xb8\x9d\x97\x23\x75\xfb\x4e\x1e\xcd\x4b\xa5\x35\xc9\xfb\xd2\x9b\x9d\x52\x5c\xa8\x23\xd8\x9c\xb1\x03\xfc\x09\x7d\x1c\xbd\xbe\xe3\x0f\x35\x58\x85\x7e\x4f\xbc\xc6\xc6\xe8\xce\x6b\xdd\x89\xde\xc1\x9b\x8c\xf5\xb4\x15\x37\xcb\x86\x45\x3a\x8a\x4d\x3e\xac\x56\x78\xa7\xde\xfd\x16\xe5\x4f\x7c\xdc\x00\xcd\xde\xdf\xce\x6c\x2c\x72\x6e\xb3\xbc\xd7\x92\x2a\x49\xfd\xb2\x51\xfc\x6c\x75\x34\x47\x38\x49\xd2\x98\xbd\xde\xb1\x84\x5e\x55\x5a\xfe\x57\x1f\xea\x3d\x3a\xca\xec\x4a\x94\x96\x79\xbc\x36\xad\x5a\xda\xe8\x05\x63\x27\xc0\x82\x2d\x56\xb4\xd5\xcd\xe0\x76\xdf\x6f\x52\x06\x7c\xc9\xa6\x23\x93\xf5\xa2\x57\xb1\x14\x32\xdf\x91\x2e\x5a\xb8\x8f\x5b\x6f\xfb\xc5\x17\xdb\xdd\x32\x8f\x12\x22\xbb\x3b\x73\xfb\xfb\x98\xe9\x7c\xa2\x9a\xf7\x51\x37\xfc\xa7\xff\xb0\x97\x26\xe9\xd2\xa0\x64\x10\x30\x80\x8f\x6f\x06\x9e\xf4\xfd\xa6\x9a\x7e\x99\x49\xc2\x34\x13\x29\x1c\xa7\x7a\xb9\xb8\xc7\xe9\xaf\x4d\x02\xfa\x9e\xa7\x22\x81\x4d\x7a\x1c\x01\x01\xd3\x71\x24\x50\x0a\x16\x47\x1a\x39\x57\x3d\xdb\xb7\x49\xce\x6b\x04\xbe\xff\x04\xd7\x04\x75\xf6\x82\x3a\xd9\xed\x26\x02\x39\x69\x89\x29\x68\xcf\x5b\x35\x2b\x82\xc6\x6b\x85\xaa\xac\x54\x5b\x45\x81\xd1\x87\x55\x6c\xc9\x82\x6d\x72\xe3\xa1\xc8\xed\xd8\x9a\x9e\x5b\xf5\x45\xed\xd5\x87\x0b\x0f\x26\xa6\xf3\x97\x29\x4f\xf0\x13\x13\x4b\xc4\x0f\x94\x42\xca\x0f\x26\xe2\xd9\xea\x6d\x9b\x62\xc8\x61\x9f\x44\x63\x35\x3b\x35\xc1\xe2\x9b\x38\xed\x17\x33\xd5\x8b\xa2\xc5\xea\x89\xcf\x6b\xb5\xc7\x53\xda\xea\x44\x3b\x2c\x43\xf4\x55\x84\x8c\xfd\x30\x20\xf1\xa4\x57\xb7\xf4\x61\xce\xa8\x3e\xcc\x19\xb7\xff\x0d\xcb\xb8\x88\x46\xb1\x9d\xf6\x09\xf8\x67\x3a\x9a\x4c\x82\xae\x83\xb8\xcd\x79\xc8\xd7\x7d\x65\xa1\xd9\xaf\xc6\x9d\x89\x72\x9b\xeb\x87\x73\x4a\x0b\x90\x9c\x6a\xa2\x19\xe7\xe5\xd2\x12\x09\xd0\x55\xf7\x8a\xda\xe6\x87\x0a\x5b\xfc\xa1\x77\xc0\xad\x5e\x7b\x2f\x4a\x29\x35\x06\x48\x00\x3e\x24\x28\x13\xb0\x47\x3c\x46\xc0\x9b\xaa\xe6\xbd\x92\xc6\xe5\xd0\xee\xf4\xa0\xbc\xdf\xa3\xa7\x87\x72\x05\x20\xf1\x78\xe1\x27\x02\xd5\x6c\x40\x57\x08\x9b\xdb\xff\x40\xab\x00\xc2\x94\x77\x03\x15\xe7\x1d\x6b\x62\x9b\x56\xd1\x51\x3a\x8c\xc2\x9c\x17\x51\xac\xf3\x35\x33\x0b\x40\x59\xf1\xab\x37\x54\x40\x1f\x66\xe9\xab\x11\x24\xa6\x16\x3c\xa6\x47\xa5\x33\x0d\x9d\xb3\x51\x6c\xa2\xa4\x88\xfa\xfd\x96\x72\x50\x3d\xab\x85\x0a\xbd\x7b\x58\xba\x9a\x14\xe9\x6a\x32\xe3\x07\xec\x35\xba\x4d\x16\x37\x47\x22\x2e\x68\x7f\xd5\x58\x3b\xa5\xdc\x0f\xa7\x95\xe8\x75\x98\x16\x05\x3c\x0e\xf7\x3b\xbf\xa9\x96\xf7\x9e\x52\x50\x81\x7e\x94\xd9\x5e\x4b\xa3\xe6\x54\x5b\xea\x92\xda\x64\x7b\xd6\xc4\x36\xcb\x1f\x51\x95\xdd\x73\x81\xf2\x2f\xbd\xa4\xfc\x4b\xf9\x4b\x50\xe1\x9b\x46\xdb\x0a\xb0\xf5\xfb\xb8\x7a\xad\xa6\xea\x7c\x8e\xf6\xc9\x92\x3b\x29\xbd\x34\x37\xb7\xd8\x1e\x56\xdb\x75\x91\x59\x03\x1d\x0c\x47\xd1\x77\x56\x90\x27\x1d\xa6\x69\x35\x1d\x9a\x24\xf2\x73\xac\xa9\x10\x20\xf6\x61\x23\xea\xc7\x2f\xee\xe1\x61\x7d\x92\x2a\x80\xca\xc3\x60\xc1\xd9\xcb\x68\x16\xcd\x6a\x44\x19\x5e\xcb\x03\xb5\x8f\x29\x0b\xdf\x63\x35\x23\xea\x61\x3f\xcd\x50\x8e\x46\x97\xff\x9d\xb1\x7f\x52\xa8\x00\x89\x63\x08\x0d\x2f\x64\x68\x1f\x4d\xac\xea\xfb\xe6\xdb\xab\x03\x53\xd8\x15\x9b\x4d\x51\xb0\xa7\x47\x94\x00\xe9\x28\xd1\xc7\x44\xb9\x3f\xb1\xbe\xee\x9d\x6d\x9b\x51\x15\xc1\x65\x91\xc7\x00\x88\x36\xb8\xe2\x45\x5f\x68\x30\x91\xf8\x56\x3b\x2f\xd2\xd8\xc2\x9f\x5a\x70\xee\xf4\x19\xf1\x73\x6b\xb8\x5e\x62\xc3\x47\x05\x07\x59\xa8\x17\xc1\x7d\x92\x8f\x27\x6e\x92\x94\x72\x93\x15\xbb\x96\x66\x53\xca\xa4\xeb\x84\xca\x6d\x6f\x29\x11\x8b\xb3\x0a\xa6\x31\x8a\x6c\xc8\x45\x4c\x01\x1c\xaa\x11\x49\x1f\x72\x8e\x8c\x4e\x25\x50\x2b\x0f\xc6\x76\x40\xdb\xc1\x41\x19\x93\x27\x03\x25\xa1\x7a\x72\xa2\x74\x79\x70\xcf\x6c\x3b\x34\x59\x8f\x0b\x39\x2d\x45\x16\xe7\xa2\x98\x00\x26\x3f\xaf\x4b\xfe\x2b\x36\x29\xa2\x34\xa9\x3e\xa1\x67\x8c\xba\xbe\x89\xbd\xf5\xc0\x0b\xed\xbe\xed\xd9\x0c\x6f\xad\x1a\x24\x28\xce\xbf\x1e\x28\x09\xa3\xd7\x35\x64\x25\xb2\x59\x66\xf0\x82\xf1\xaf\x68\x1b\xf2\x71\x47\xf2\x9a\xac\x1c\xa6\x19\xf0\x3b\xb2\x43\x57\xb7\x8f\x52\xd7\x79\x6d\xfd\x7c\x4f\x19\x18\x9a\xa4\x18\xa4\x09\xdc\x27\x30\x39\xa6\x3b\xbe\x3a\x38\x5d\xeb\x09\x3e\xb7\xfa\x5c\x4b\x21\x8b\x2f\x50\xfd\x58\xf8\x44\x2e\xbd\x4a\xcb\x64\xc9\x4e\x29\xf7\xec\x0b\xaa\x0f\xbf\xa1\xde\xdd\x29\xc7\x15\x2f\x93\xcc\xac\xd8\x58\xb8\x5a\x08\xea\x4e\xab\x00\xef\xb4\x72\xa9\x8b\x92\x7e\x9a\x0d\x09\x10\xb9\x13\x8b\x3f\x8a\x72\x8f\xad\xfb\x6d\xf7\x41\xa0\x93\x2f\xcc\x24\xc4\xeb\x10\xc6\xc5\xac\x42\xf9\x0c\x64\x2b\xee\x1e\x01\xbe\x76\xbb\xc9\x2f\xa0\x5b\x66\x91\x4c\x34\x64\x9e\x67\xf1\x2b\x7c\xa2\x10\xc6\x55\x7c\x5f\x66\x6b\x33\xad\xbd\xc2\x35\x7a\x1c\x18\x32\xf8\x9c\x9e\xa7\x01\x82\x2a\xfa\x17\x3b\x7e\xa7\xbf\xa4\x7d\x00\x9b\xb8\x76\xed\x97\xcb\xd4\x4d\x76\x01\x39\x28\x2c\xf4\xef\x2b\xbb\xf1\x6a\xd7\xc0\x1f\x22\x71\xfa\x39\x2e\x96\x4f\x14\xf2\x2b\x8c\xad\xa9\x12\xf3\x69\xcf\xfd\x01\x84\x41\xba\x58\xd5\x43\x12\x3e\x5b\x6b\x51\xaa\x7b\x6f\xb9\xfa\x90\x49\x8a\x88\x50\xb2\x3b\xe8\x1e\xd9\xda\x8d\x06\x9f\xd3\xfd\x17\x5a\xfc\xd7\xe1\x0f\xef\x5c\xe4\x17\xf7\x70\x72\xf0\x53\xb5\x67\x5c\xaa\x2b\x8f\x24\x76\xca\x2b\x1e\xb3\xc9\x37\x3a\x24\x33\x1d\xb5\x25\xdc\x55\xec\x93\x5e\x34\x8c\x12\x02\x0b\xd0\x12\x80\x66\xdf\x07\xd8\x02\xf8\x64\x22\x4c\x26\x74\x90\x09\x97\x67\x94\x83\xfc\x69\xdd\xb5\x43\x8a\x86\x54\x9b\xe5\xcc\x70\xbd\xb7\xc6\x5e\xbb\xff\x6c\xc3\xd0\xd9\x4f\x20\x3e\x7e\x6d\xac\x47\x10\x28\x39\xb4\xd7\x1e\xda\x49\xc9\xa3\x61\x14\x9b\xec\xa1\xd5\xcc\x49\x3e\x45\x3b\x34\x71\x3c\x35\xe1\x9e\x20\x0e\x64\x2d\x67\x98\xb7\xbd\xf3\x78\x8d\x7e\xfc\x68\xeb\x6b\x87\xb4\xaf\xc0\x2c\xef\x70\xcc\x97\xe5\x13\xaa\x57\xb3\xbc\x8e\x62\x71\x9d\x57\xc5\xff\xdf\x0a\x14\x56\xeb\xa8\x22\x51\xfe\x16\x5e\x1d\xe7\xcd\x74\x59\xf8\xa3\x8b\x13\xcf\x6c\x71\x0f\xc3\xe3\x5a\xde\x04\x58\xcb\xd7\x5d\xaf\x29\xc7\x16\x69\xc6\x60\x1e\x57\x54\x76\x65\x5d\xae\x97\xb3\xa0\x1d\x11\x0f\x50\x39\x86\x9e\x1d\xa4\xd7\x6e\xd1\x6d\x61\x12\xde\x41\xd5\xc8\xb9\xab\x7a\xa7\xae\xa9\x0e\xe1\x48\x11\x26\xde\x22\x24\x8b\x5a\x5c\x17\x38\x17\xbb\xaa\x4c\xb8\xd1\x07\x47\xd3\xea\x7b\x28\x48\xe0\xfa\x6f\x8e\x95\xf0\xd2\xb6\x75\x82\xfd\xf1\xf7\x22\x3e\xc6\xf0\xdb\xbe\x4e\x55\x64\x4c\x44\x46\xf6\x88\xfa\x53\x13\x54\x6b\x35\xc2\x96\xc7\x1a\x4c\x81\xd6\x63\xf2\xdd\xaf\x6a\x75\xca\x4c\xbc\xd3\x77\xaa\xf1\x2c\xf8\xb8\xa3\x16\x21\x16\x34\x10\x56\x47\xcb\xd1\xb9\x7f\xac\xed\xe0\xae\x04\x8a\x5e\x70\x65\xac\x6d\x72\xc2\x74\x68\x77\xd3\xbf\x22\x4a\xb8\xa1\x97\x38\x00\xb7\x5c\x69\xd8\x85\x5f\xd7\x30\xfe\x78\x61\xf6\x52\xeb\x6f\xff\x02\xd5\x8c\xa1\x10\xc5\x53\x53\x64\x86\xfc\xf6\x7b\x5f\x1b\xee\xdc\x47\x56\x85\x8e\xf0\xf6\x4e\x43\x6a\xb4\x9a\x66\xcb\xb4\xfa\x39\x08\xca\x1d\x45\x40\x67\x46\xa2\x93\x48\xf0\x94\xc8\xab\x2e\x67\xb2\x09\x19\x3b\xf0\xfc\x6e\x0c\xbd\x1b\x4c\x04\x86\x69\x52\x0c\xd8\x65\x1e\xd9\xe7\x1d\x6a\x53\xe9\x72\x90\x27\x74\x28\x9a\x5f\x31\x88\x92\x25\xea\x15\x22\x54\x7e\x17\x05\x04\x8d\xa2\x70\x76\x4d\xae\xf4\xff\x3d\x2d\x43\xf6\xbd\x86\xba\xde\x42\x7b\x39\x8b\xf2\x51\x64\x85\xc9\x8d\xf7\x75\x4c\x83\x2a\x26\xbd\x7d\xab\x58\xb2\x18\x64\xd6\x48\x5c\xc8\x95\x57\x1a\x79\x52\x85\x9d\x34\xac\x1e\xc5\xdc\x9c\x44\x01\x62\x93\xe4\x54\x70\xe3\x3b\x3a\x3e\xf3\x84\xed\x37\x02\x8c\x5b\x81\x62\x7f\xa1\xb5\x2f\x20\x21\xdd\x06\x1c\x0e\x0d\xc4\xcf\x10\xc9\xde\x55\x99\xd2\x5d\x85\xd6\xc8\x07\xe9\x6a\x11\x0d\xad\x12\x44\xfa\x36\x5d\xb3\x58\x4f\x37\x15\x19\x33\x3b\x4a\xb3\x02\x6b\xab\x74\x55\x7d\x7d\xfa\x3f\xea\xd4\xf8\xfc\xc4\xee\xb2\xb8\xa7\xfd\x6a\x14\x87\x03\xe0\x7d\xb1\xe7\xb1\xcf\x11\xe3\x0d\x14\x7f\x60\x92\x25\xf4\xe5\x76\x3e\x12\xb3\x7c\x24\xd5\xac\xf9\x84\x38\xed\xae\x0a\xc4\x2f\x21\x56\xaa\x87\x9c\x06\x8e\x89\x62\xfc\xa0\xcd\x21\xfc\xc2\x10\x25\xfd\x38\x0a\x81\x0e\x15\x93\x50\x5f\x7d\x3e\x3b\x91\x18\xbf\xf8\x62\xbb\x4c\xfa\x69\x99\x88\x88\x06\x47\x0c\x81\x0a\x3b\x2e\x8c\x75\xda\x99\xe7\x36\x2b\x5a\x8a\x04\x71\x49\x11\xd7\x2f\xb9\x12\xbd\xe9\xad\x44\xa1\x9d\xf6\xff\xf4\x59\x54\x4a\xdc\x8a\xb0\xb8\x47\x1c\xdb\xd7\x7d\x28\xa5\x99\x9c\xdd\x38\x5d\x4d\xb4\xc4\x17\x37\x51\x05\x55\xba\xf5\xfd\xfe\x72\x3b\xb3\x71\x64\x92\x10\x78\x6e\x64\x27\x47\xd4\xaa\xf2\x5d\x6d\x05\x71\xb2\x31\x41\xca\xaa\xa0\x83\x45\x0a\xc4\x20\xd9\x97\x20\xce\x3c\xb4\x1e\x6c\xcb\x2c\x1d\x59\xc3\x84\x2e\x66\x91\x07\x9e\x41\x74\x42\x59\xb8\x87\x26\xe7\xe7\xe7\x0c\x2e\x9c\x70\xef\x64\xcd\x91\x80\xcb\x69\x58\x3d\x76\xae\x39\x3a\xc7\x89\xea\x2b\xf8\x44\xf5\x44\xd3\x15\x9b\xb1\xf4\xb5\x03\xae\xf8\x86\xee\xbf\x1a\xab\x78\x97\xb5\xe2\x10\x49\x6f\xef\x54\x4b\x97\xe3\xe3\xce\xcd\xf1\x40\xfe\xc2\xba\xa7\x3c\xfe\x36\x15\x59\x50\x3a\xfe\x58\xad\xf6\x33\x8a\x72\xfc\x39\xe8\x63\x23\x44\xb8\x81\xe9\x81\x85\xed\x41\xe0\x63\xf5\x9f\x60\x2b\x45\xb0\x32\x05\x9a\x39\xaa\x10\x1f\x01\x76\x88\x2b\x6c\xad\xab\xb8\x9f\x11\x15\xd8\xc9\xdf\x25\x98\x10\xab\x0b\x29\x44\x1c\x3b\x2f\x23\x82\xbd\xe5\x52\x9a\x81\xed\x2d\xc9\x03\xc4\xcc\x7d\x6d\xac\xa6\xf1\x6b\x4d\x58\xcb\x90\x40\x2c\x34\x5f\xb1\x63\x3e\xd2\xf1\xa0\xac\xed\xeb\x74\xcd\x58\x8d\x4f\x6b\x4d\xc6\xb4\xcc\x68\x27\xc2\x86\x75\x81\x85\x9c\xd8\x33\x0c\xe4\x1f\x31\x10\xf3\x58\xf2\x0b\xda\x09\xc2\x84\xcb\x9c\xc0\x3e\xef\x82\x25\x3f\x47\xae\x3b\x1e\x70\x98\xc6\xb1\x5d\xb2\xbc\xda\x4b\x62\x42\x6f\x9b\x4f\x14\x00\x6d\x94\x8a\x31\xa9\x34\xe3\x54\x63\xae\xa1\xb9\xb4\x50\x2d\x0c\x51\x1c\x4b\x17\x0c\xe1\x3a\x84\xcb\xf8\xb8\x06\xaf\xca\xc3\xe8\xe1\x82\xca\x8a\xa4\x62\xed\x72\x9c\xd6\x5d\x9d\xfe\xcd\xd8\x13\x06\xff\x8d\xaa\x71\x45\xc9\x92\x89\x63\x7e\x10\xc2\x08\x50\xc2\x49\x93\x81\xfa\xdc\x5c\x3b\x2d\x8b\xd8\xf2\x04\x13\xbc\xa8\xa7\x61\x68\xb8\xa8\xe9\xf7\x2d\xb0\xd3\xde\x2a\xed\x2c\xfa\xe7\x7c\xd2\xe4\x23\x32\xb0\x46\xe4\x2e\x50\x50\x3b\xa2\xe0\x73\x47\x14\xd4\x2e\x49\x93\x32\x71\x1a\x7c\x2c\x12\x10\xf8\x3e\xcc\x1f\xd5\x76\xbd\x22\x2a\x5a\x8a\x4c\x76\x31\xa0\x9a\x92\x60\x05\x9b\x24\x68\x73\x5b\xf7\x3f\x3e\x1b\x78\xba\xd0\x24\x71\xc2\x63\x3f\x86\xb6\x87\x36\x84\x98\x3e\xb7\xfe\xdb\xfd\xce\x3e\x64\xca\x7b\xc0\x1d\x6f\xd2\x23\x5a\x22\x1f\xf6\x9a\xa7\xd1\x15\xe5\x69\x74\x45\x79\x8b\x93\x21\x62\x4e\x35\x54\xc6\x84\xeb\x9c\xe4\xb0\xce\x24\x00\x92\x57\xb3\x5c\xaa\xab\xd7\x9a\xd2\x8a\x25\x6b\x1c\xb4\x8c\x45\x27\xe8\xb1\x8a\x00\x85\xa7\x28\xda\x15\x9b\xad\x75\xd3\xde\xda\x2e\x7f\x89\xef\x29\x9e\x0c\xd1\xca\x16\x19\x55\xfa\x21\x2d\x68\xce\x2f\xbc\x1a\x73\x02\x37\xf5\xb6\x27\xd7\xc7\xaa\x88\x73\x96\x16\x34\x04\x3d\x0f\x30\x70\xf8\xab\x26\x36\xff\x83\x7b\x9e\x6f\x8f\xc2\x2d\x96\xdf\xf4\x04\x44\x94\xd5\xcf\xd4\x6e\xb4\x4c\x74\x31\x11\x31\x84\x9a\x3b\x1f\x2b\x6c\x46\x37\x4d\x05\x86\x80\xf9\xa0\x35\x11\xb6\xaf\xab\x72\xb9\x40\x4a\x0f\x8a\x2e\xcd\x9f\xd3\x43\xe0\xe3\x26\xab\xf5\x38\xcd\x8b\x19\x3d\x9e\x14\x91\xea\x8f\xe0\x55\xe2\x7c\xd2\xaa\xcc\x07\xbb\xcb\x51\x1a\x0a\xc0\x74\x6e\xef\x3c\x4c\xe4\xa0\xa0\x7d\xbd\xfa\x3e\xc4\x8e\x67\x75\x27\xeb\xac\xd2\x6f\x35\xf1\x4a\x94\x4c\xe9\x58\x16\x53\x19\xf9\x10\x63\x5c\x91\x4a\x68\x1e\xd2\xd0\x1a\x72\xab\xa8\x9e\x1a\x0a\xb1\xec\xc9\xc2\x27\x6a\x80\x44\xd5\x0a\xdf\x35\xc9\xf2\x8c\x0a\xc0\xaf\xa8\x00\xfc\x70\xcd\xd6\xf4\x86\x26\xd1\x32\x06\x55\x3a\xcd\x4f\xaa\xc6\x62\x41\xc0\xac\x96\xd3\x71\xf8\x99\xd6\x71\xf8\xd9\xc4\x62\xbb\xb8\xa7\x6d\xbb\x65\x1c\x47\x02\xc7\x13\x22\x58\xf5\x0d\xc2\x03\x6b\x68\xaa\xae\x44\x49\x2f\x0a\x8d\xb8\x9d\x34\x7a\xbb\xa9\x0d\x20\x8a\xe3\x7c\x46\xbd\x2d\xb0\x3a\x64\x5d\xa4\x77\xca\xff\xa0\x18\x3b\x3f\xa1\x7d\x56\x84\x66\x1a\xb4\x90\xe2\x34\xcd\x6d\x86\x88\xdd\xd9\xc4\xb9\x84\xe8\x9c\xc6\x1e\x67\x4b\xe5\xd0\x26\xc5\x0e\x05\xa4\xbd\x5c\xe3\x87\xd3\x6a\xa6\x51\x20\x02\x9a\xf0\xc1\xee\x1f\xd7\xf5\x78\x27\x83\xec\x7e\x5c\xa6\xdc\x19\xd2\x92\x7c\xe2\x52\xf6\xa4\x5a\x9f\xac\x59\xb6\x00\x86\x63\xf5\x06\x8c\x87\x8f\x15\x9e\xe9\xbf\x89\x32\xaa\x63\xe3\x55\x7c\xac\x8a\xdf\xc8\x6c\x11\x04\xfd\xa1\xa6\x16\xdd\x50\xdb\x98\x4d\x96\xe2\x08\x42\xcd\x0b\x5a\x4a\x4d\x4c\x64\xfe\x98\xbe\x50\x6e\xaf\x5a\x09\xf9\x8f\xc6\xaa\x50\x6d\xb2\x6c\xad\x9f\x66\xab\x24\x5a\xd2\x72\x4a\xe5\xd7\x95\x52\xf9\x75\x15\x05\xf6\x4d\x88\xa1\xe4\x5a\x43\x9e\x9b\x73\x6e\x22\x9d\x9b\x3d\xd0\x4e\x13\x3b\x45\xb1\x09\x1e\xf9\x87\x2a\x81\xfe\x80\xa0\xd2\x02\xf6\xf5\xa6\xeb\x2f\xa5\x2b\x26\x49\x57\xa2\x70\x80\xc7\x8d\x37\xfe\xb6\x22\x04\xbf\x3d\xd1\x39\x9a\x3d\xd0\x8e\x7a\x36\x8d\xd3\x25\x27\x06\x06\x28\x17\xe2\x6c\x3e\x9e\x78\xad\xcf\x3e\xdb\x5e\x4e\xec\x2a\xbd\x2b\xec\x1f\x1b\x7a\x33\xd9\x50\x02\x33\xc3\x34\x89\x8a\x34\xab\x36\xb9\x6a\x07\xe5\x72\x58\xe0\x2a\x10\xfb\x2f\x29\xfa\xec\x6f\xa8\xce\x10\x35\x82\xf3\x62\x67\x75\xb3\x98\x13\xf7\x03\x65\x4b\x7f\x8a\x5e\x35\x92\xcb\x16\x72\x19\x79\x4d\x4a\x60\xea\xfb\xda\x7e\x91\xde\x2b\x50\x1d\x1b\x13\xee\x3d\xb2\x1a\x2e\xa5\xb1\x4d\xba\x24\xc9\xb3\x28\x1e\x87\x27\xb5\x41\xc0\x49\xe5\x45\x38\x32\xd9\x32\xcf\x76\xac\xc5\x58\x23\xf8\x78\x22\xb7\x9f\x9b\x6b\x9b\x18\x39\x51\x4b\x81\x96\x61\xea\xc0\xc7\x0a\x9c\x52\x65\x81\xd9\x12\x69\x9b\x61\xa3\xd2\x0e\xa3\xa2\xea\x39\xb9\x0e\x3d\xdf\x1e\x9a\xd8\xac\xe5\x11\x37\xef\xb1\x58\xbc\xa9\x29\x08\x6f\x36\xed\x31\x2f\x95\xc3\xd1\x94\x6f\xca\xa3\xd6\x25\x3f\xd3\x72\x46\x6d\xbf\xae\xd5\x83\xb3\xe5\x27\x94\xb9\xf3\x77\xab\xd7\xba\xf9\x26\xa8\x04\xa2\x6f\xa7\x56\x22\xed\xa3\xf1\x17\xda\x15\xab\xb5\xee\xfb\x7f\x57\x91\x8a\x88\x97\x00\x5d\x35\x4d\x28\xfb\x34\xaa\x85\xd8\xd3\x37\x3c\xbc\xfc\xe2\x93\x1d\x45\x36\xe5\x12\x00\xc7\x0a\xaa\x06\x2e\x7c\x7a\x69\xaf\x6c\x9d\x75\xf3\xf3\xed\x41\x5a\x28\x03\xe5\xdb\x0a\x86\x3b\xd5\xa1\xd9\x28\xad\x33\x65\xc6\x92\x75\xa7\x3c\x97\xe6\x4e\xe0\xdd\xdb\xb5\x5d\xf2\xe9\x06\xf9\xf9\xc5\x76\xda\xef\x93\x85\x1b\x36\xb0\x63\xca\x39\xf6\x4d\x45\xee\xfc\x4d\xe5\x1e\xf3\xde\x44\x25\xa2\x5a\x61\xd7\xa6\x26\xd4\x4d\x44\xf9\x4c\x91\x96\x2e\x37\x80\x52\xbe\x45\xd2\x77\x85\x6b\x05\xbb\x3a\xb4\x2b\x73\x4d\x8e\xe2\xf9\xf9\xfd\xed\x22\xab\x92\xa2\xde\xc3\x71\x3d\xde\x39\x1d\x34\x1e\x9b\x14\x26\x9e\xae\xd5\x5a\x3c\x4f\xae\x85\x56\x0e\x62\x9b\xb7\x14\xd6\x63\xa6\xb3\x35\xd2\x3e\xb4\x80\x40\x16\x35\x23\xe7\xf6\xe0\xb1\xe0\x1b\xd8\x90\x58\x29\x75\xfc\xa8\x9b\x4d\xcf\x3e\xd3\x7a\xf6\x59\xe7\x12\xd2\x52\xa2\xc9\x94\xe0\x8a\x63\x88\x62\x20\xfe\xba\xca\x63\x0f\x8f\x95\xbd\xe4\x1f\x6a\x87\xae\xef\x6b\x7b\xcb\x19\x64\xdb\xce\xc2\xc9\xdb\xdf\x9e\xa9\x23\x16\xaa\x49\x21\x60\x64\x0c\x4b\xf4\x9b\x76\xac\x7b\xec\xfe\x31\x6a\x82\x60\x2c\xde\x43\xc7\x4d\xf1\x97\xc5\xac\xf7\x15\x1a\xe2\xb8\xf9\xdd\x80\xde\x08\xe6\xcd\x09\x47\xc3\x2c\x32\x4a\x96\xea\x80\xfe\xea\xf6\x94\xc4\x9e\xe4\x7f\xf0\x73\x10\xce\x8e\x8f\xf0\x36\x34\x39\xcb\x24\xa6\x17\x99\x64\x5a\x05\x8e\x1f\x2a\x8a\x2a\x84\x0a\xb1\xf0\x5e\x51\x8b\xf0\x15\x07\x1b\x1a\x98\xd1\x68\x6d\x97\x6a\x06\x5c\x84\x76\x2e\x56\x01\x06\x17\x68\xca\x32\x85\x0c\x3f\x6e\x77\xd4\xf2\x7e\x46\xa1\xb4\x08\x7f\xf7\x2d\x51\xcb\xc0\x4b\x91\x14\xa4\xba\x51\xf1\x26\x90\xdf\xcf\x57\xad\x29\x76\x78\xd0\x2b\xfb\x62\xb9\x8a\x8b\xb3\x45\xfc\x48\x89\x1e\x5d\xc1\x9b\xe7\x7f\x08\x94\x54\xfe\x39\x77\x63\xdd\xb2\xd7\x63\x41\x4e\x5c\x0c\x16\x02\x3e\x6e\x10\xec\x6a\x8f\xac\xcd\x30\xa0\x45\x1e\x84\xbe\x18\x33\x05\xd6\x37\x08\xb0\xee\xea\xc2\x86\x29\xe3\x19\x25\x0a\xca\x3a\x00\x2c\xa1\x1e\x28\x1f\x83\xdb\x63\xad\x24\xfa\x8e\xe2\x65\x5f\x0c\x04\xe7\xd1\xab\x16\x7f\x55\x8e\x81\x2b\x35\x4a\xa1\xe0\xda\x0a\x9c\xae\x89\x9b\xe5\x11\x78\x0c\x13\xd1\xd2\x55\x27\x27\xc2\xd4\x43\x0b\xed\x30\x36\xd1\x90\x3f\xa3\x74\xef\x16\x9c\xee\xdd\x04\xaf\xee\x85\xfd\xed\x7e\xe9\xa4\x86\x10\x4f\x7f\x47\xb5\x7d\xbf\xa3\x5b\xf0\xdd\x32\x8f\x56\x00\x30\x76\x78\x24\xaf\x37\xa4\xaa\x7f\x59\xda\xb3\x53\x5a\x28\x66\x5b\xa7\x9e\xe0\x28\xe2\xd2\x15\x57\xbe\x5a\x35\x59\x6e\x56\xa7\x3d\x38\xe5\x92\x8a\x19\x39\x7f\x42\x19\x6f\x47\xc7\x3f\xc7\x4b\x63\x9f\x8d\x67\x65\xb7\x2b\x61\x3a\x73\xd3\xb0\x6d\x0a\x51\xcd\x37\x28\x4c\x37\xcd\x9c\x8e\x98\x8c\xbc\x96\x73\xea\xfc\x68\x62\x6b\x59\xdc\xd3\x2e\x4c\x37\xaf\x15\x35\x03\x5f\xe0\xbd\xa0\x3a\xff\x2f\x97\x36\xaf\xbe\x9b\xe8\x18\xb3\x07\x1c\xc3\x81\x16\x1b\xd7\x5a\xdf\x37\xbf\x39\xb9\x0d\xec\x9b\xa7\xe2\x91\x7f\xf5\xd8\x65\x3f\xc2\xcc\xe3\x13\xd5\x3d\x1f\xa6\x45\x8e\x52\x3d\x52\xb4\xb7\xe8\x91\x49\x91\xc1\xcb\x4f\x5e\x69\x92\x35\x4d\x57\x6c\x66\xe2\xb8\x55\x5d\xa3\x93\x41\x72\x8b\xd4\x85\xa6\xc2\xd3\x4a\xea\xb7\x35\xe7\x80\x32\x3f\xef\x7c\x52\xbc\x8b\x77\x3e\xb2\xe4\x4a\x51\x45\x72\x8e\xf7\x78\x8d\x16\x30\x3e\x56\xda\x3b\xbf\xfa\xab\xf9\x0e\x8c\x10\x2c\xd2\xe7\x94\xc2\xe0\x1d\x4a\xce\xb0\xd0\xc1\xd4\x02\x11\x3e\x4b\xc1\x23\x22\xda\x81\x05\x4c\x0c\x2b\xa5\xe5\x65\x96\x32\x6b\x9d\x30\x08\x66\xc1\xbd\xc0\x37\x3b\x81\x70\x80\x13\xe7\x79\x07\x14\x20\x54\xcf\xd0\x56\x5b\xab\x13\x85\xba\x8f\xc9\x27\x3b\x71\x8d\xf6\xe2\x1c\xd1\x8e\x37\xb9\x70\xdb\xb8\x67\x33\x06\x27\x8b\x5c\x81\xc7\x76\xdc\x71\xc3\x7f\x94\x81\xa1\xe0\x0b\x69\x1f\x07\xca\x68\xe0\x63\x95\x64\xda\x15\x13\x97\xa6\xb0\x10\xb1\xe5\x30\x30\xf0\x6c\x9f\x4b\x0d\x01\xec\x7c\x95\x5e\x8d\xac\x7f\x7d\x2e\x08\xf5\x71\x6f\x93\xcd\x77\x98\x0e\x87\x65\x52\x65\xe0\x32\x5b\xb0\xb2\xff\x87\xc0\xaf\xf2\xff\xa1\x69\x1c\x9b\xb2\x48\x93\x74\x08\xc8\x8e\x00\xb6\x7c\x86\x72\xcc\xdd\x78\xd7\xfa\xae\xa4\xd0\x3f\x34\x17\xe4\xa1\xa8\x03\x1e\xbf\x8f\xb4\xbe\xf9\x75\xde\xe8\x3f\x50\x86\x17\xa8\xd7\x4b\xe7\xbb\xb5\x77\x2f\x17\x8d\xfe\x7b\xaa\x05\x22\x00\x05\xcb\x0e\x21\xcb\x65\xaa\xfb\x3b\x37\xd3\x6a\x38\x49\x47\xa4\xa9\xcb\x46\x10\x17\x9e\xa4\x2c\xfc\x18\x28\xc8\x59\x9d\xf5\x37\x2a\x61\x16\xcf\xae\x7d\x8a\x0e\x77\xb6\xc1\x2d\x6e\xa1\xa6\x88\x2e\x11\x58\xcb\xa9\x12\x6d\xa8\x25\x2f\x34\x71\x6c\xc9\xde\xc8\xfb\xaa\x54\xbf\x84\x8d\x79\xfb\xba\x46\x1e\xbd\xaf\x36\x3d\x46\x48\x22\xdb\x3f\x1c\x28\xeb\xdb\x9f\x28\x39\x14\xbe\x25\x64\x51\x3f\xc0\x43\x01\xc2\x16\xe5\x13\xc4\x44\x57\x27\x1e\xd0\x57\xda\x89\x05\x8b\xae\xe5\x63\x42\xa4\x71\xd2\x6d\x75\x93\xad\x84\x5c\x46\xf6\x48\xf5\x8a\x1c\x08\xd2\x57\xab\x99\x1a\xe5\x56\x1b\x2f\x6c\xab\x55\x78\x37\xd9\x41\xcc\xb9\xc0\xbb\xbe\xcd\xad\xb1\x1b\x07\xff\xdd\x2f\x76\x9e\x51\xd0\x3b\xd3\xb3\x59\x3e\x88\x46\x64\x51\xec\xca\x33\xd5\x2f\x73\x79\x86\xbe\x05\x3d\xde\x1f\x8f\x95\x33\x1b\xa2\x07\xac\x3c\x6f\x2b\x69\xb6\xbe\xc9\x86\x8c\x78\x46\x4c\x8b\x2d\x85\x8f\x1b\xfb\x0f\xb9\x4d\x4c\x91\x66\x82\x0f\xc6\xa0\xb8\x19\xa8\xcc\x94\x99\x5a\x18\xc8\xdb\x27\x68\x3c\x84\x9a\x4f\x5f\x59\xa3\x5d\x6f\xf3\x72\x75\xb3\x9b\x97\x27\x96\xee\x7d\xf3\x1c\x1c\x4c\x29\xd5\xcf\xfb\x08\xa5\xb5\x16\x82\xc8\x0d\x6c\x5d\x3f\xf6\xcd\xb7\xe3\x6a\xcb\xac\xae\x15\x33\x1a\x29\xd8\xbf\x0e\x3c\x53\xee\x5f\x6b\x9d\xf2\xe1\x28\x4b\x57\xd8\x78\x58\xb7\x00\x81\xec\xdb\xde\xf1\x4d\x6c\xd4\x1c\x9c\xa4\x8d\x17\xbd\x7f\x53\xb5\x31\x42\x1b\xc5\xae\xde\x88\xe1\x88\xf8\x95\x8f\x27\x02\xc0\x03\x2f\xb4\x7b\x99\x59\x9d\xf2\xc8\x4a\x7e\xa8\x48\x36\x3f\xd6\x6c\xde\x9a\x04\xcb\x5a\x92\xc6\xd5\xe6\xeb\xfd\x6f\x39\x5c\xe1\x93\x89\x8e\x79\x95\xef\x0d\xcb\x10\xb6\xeb\xb8\xf2\x1d\xa4\xbb\xa1\x11\x12\x68\x32\x7f\xa6\x81\x0a\xb7\xd0\x36\x43\x93\xa3\xed\x2d\xf6\x53\xde\x18\xfe\xfc\x43\x17\xbf\x95\x28\x4b\x5f\x2e\x8d\x52\x7c\x64\x2c\xaf\xcc\x5c\xc9\x53\x92\xb4\x88\x42\x6b\xba\xdc\x18\x93\xdb\xf0\xbc\x96\x4b\x0a\x1f\xdf\x67\x7f\xe6\xea\x49\x69\xbf\x7d\x01\xbf\x4c\x26\xca\xc9\x73\x03\x65\x70\x78\x56\xc3\xde\xce\xba\x40\x38\xca\xd2\x04\x92\x01\x8e\x82\x32\x2f\x9d\x77\x20\x29\x50\x14\xbb\x3f\xf6\xe8\xae\x3f\x73\x2d\xc0\xd8\x2c\x2d\xb9\x4d\x5c\x2c\x20\xab\x0f\xa1\x0c\xf9\x28\x2d\xf4\x88\xab\x66\xd6\x27\xc5\xb4\x16\x5c\xe7\xba\x8e\x19\x79\x43\x63\x46\xde\xd0\x6a\xa4\x20\x55\xe7\x08\x24\xa5\x95\x4e\x23\x82\x4f\x9a\x9c\x25\x32\x1b\x66\x00\x1e\x57\x6b\x29\x0a\xac\xdf\x0f\x54\x0f\xed\xfb\x0d\x42\x5f\x0b\xed\x28\x79\xb9\x8c\xb2\x48\x1e\x7a\x53\x9b\xeb\x69\xb5\xc0\x84\x45\x5a\xfd\xf1\xb4\xa7\x0f\xfe\x0e\x42\x7c\x2d\x93\xd5\xc8\xe1\xd7\x48\x34\xb3\x92\x4e\xd7\x5a\xa8\xf5\xee\x6a\x35\x4e\x90\xba\xa3\xef\xc7\xc7\x8a\xe0\x41\x3d\x85\x15\x9b\x70\x9d\x0e\x91\x15\x48\x57\x7c\xdc\x24\x98\x90\xd9\x15\x9b\xb1\x14\x1d\x52\xfb\xbb\x74\xf1\x9b\x2c\x45\x2e\xf0\xd2\xad\x1f\x3d\xb4\xd0\xfe\xc5\xaf\xff\x93\x85\xaf\x7f\x75\x7e\x5a\x81\x49\x18\xf0\x8c\x2d\xe3\x3a\x5d\x34\xff\x83\xae\x37\x5c\x0f\xfc\xe3\x5b\x1d\x44\x45\x61\x96\x99\x55\x89\xed\xe5\xb6\xa2\x8f\xde\x56\x0d\xaa\xe5\x34\xb3\xd0\xd4\x95\xd8\xb6\xba\x6a\xd9\x85\xf4\xe6\x1e\x9b\x61\x4b\xd1\xd8\x8f\x06\xbe\xdc\x77\xb4\x01\x89\x54\x2d\xd7\x04\x46\x99\xf2\x94\xac\xbb\xea\x31\x5f\x18\xab\xa6\xdf\x19\x17\x25\x15\x24\x98\x31\xed\x25\xcd\xd9\xe7\x4f\x23\xf8\xb0\xe9\x4f\x75\x34\x21\xd6\x07\xd9\xcf\x7e\x95\xa5\x2e\xc4\xfb\xbd\xe6\xf1\x5e\xb3\x88\x7f\x4a\x85\xf1\x26\x49\x44\xdc\x40\x01\xcd\x1d\xea\x5c\xcb\x7a\x98\xac\x18\x74\xa9\xb2\x5a\x5d\x26\xca\x50\x37\xb4\xbf\xfb\x8d\x89\x57\x3b\x37\xb7\xd8\xee\x9a\x7c\xd9\x16\xc0\xde\xa3\xe9\x78\x52\x41\xb1\xf1\x82\xc4\xae\xb5\xf6\xe0\xa3\x57\x14\xe2\xf4\xa6\x06\x36\xdd\x54\xe9\x58\x66\x97\xd8\x1e\x2f\xaf\x59\xfc\xe3\xc2\xc4\x17\xca\x73\xe2\x41\x4b\x47\x51\x68\x63\x4c\xe2\x48\x7c\x32\x11\xab\xcd\x1e\x68\x27\x86\xc4\xef\xb3\x29\x1a\xc1\x52\x6d\xf5\xa1\x27\x23\xda\x04\xe2\xbd\x75\x09\x98\x3d\xd0\x8e\x12\xbb\x12\x15\xa6\x1b\x23\x58\xc2\x24\x84\xa5\x02\x1f\xab\x15\x60\x39\xea\x25\x66\x34\xb2\x4c\x55\x68\x76\x90\x54\x46\x91\x93\x6d\xb8\xc5\xb6\x09\x8b\x68\x25\xca\xd1\x3b\xc1\xfd\xff\x9c\x7e\x8e\x8f\x6b\xfb\xc1\xd0\xc4\x56\xd7\x5d\x50\x28\x97\x82\x90\x5f\x34\x47\xb1\xc9\x0b\x5a\x34\xab\xa9\x20\x2e\x60\xd5\x2f\xf0\xb1\x72\x36\xeb\x65\x70\x0d\x46\x05\xec\xf2\x58\x61\x1f\x3e\x09\x3c\xf4\x17\x25\x12\xac\x5f\xef\xa9\xcc\xf1\x88\x7a\x1e\xe9\xb3\x61\x9a\x24\xb6\xca\x62\xf7\x0a\xcb\x0f\xcf\x4e\x6a\xc4\x4a\xe2\xde\x90\x66\x67\x6b\xf6\xc0\xe6\xfb\x94\x7f\xbf\xaf\xd6\x86\x38\x7a\xb9\x8c\x7a\xe2\x5d\x8a\xfa\xe0\x36\xe5\xab\xbe\x6d\x7d\x6b\x9b\x87\x45\x2a\x8b\x2c\x0a\x9d\xe1\x38\x52\x96\x9b\xaa\xd4\x7b\x58\x61\x99\x2f\xa8\x02\x44\x9c\x76\xbb\x6b\x4e\xf2\x1a\x3b\xc4\x2d\xcd\x61\xba\xe5\x76\x70\xea\xf0\x13\x9c\x92\x8a\x23\x35\xc3\xd6\x9a\x3c\x3f\xc2\xd6\x9d\xeb\x8e\xa0\xf5\x2b\x4f\x76\x14\xd6\x0c\x25\xb4\xea\x0f\x9b\x4a\x68\xaa\x97\xf7\x8a\xcd\x28\x6f\x5f\x14\x25\xd5\x4f\x6a\x16\x4e\x92\x5d\x17\x03\x9b\x62\xe7\xaa\x66\x95\xa3\x5b\x56\x63\x45\xe0\x85\x2a\x22\xcc\xac\x73\x59\x90\x3e\x65\xad\x81\xd9\xc4\x28\x85\x94\x5f\xd1\x52\xde\x3e\x3f\xd2\xae\xd9\x3f\x6a\x6a\x33\x9b\x7e\x61\xa9\x87\x48\xab\x37\x6e\xef\x9e\x1a\xb5\xf7\xd4\x3e\x66\xf2\xbc\xcc\x0c\xc5\x3c\xad\xba\xdd\xf5\xac\x2b\x5e\x4b\x10\xb3\x14\x1b\xac\xd9\xf8\x6d\x56\x3f\xd7\xdc\x11\x2c\x13\xc7\x1b\x18\x11\xfb\xdb\xb1\x29\x6c\x36\x53\x3d\x46\x94\x35\x7e\x40\xd3\x14\x9d\x23\x12\xd5\xdd\xbf\x79\x19\xd3\x18\x93\xfe\x70\xe0\xe1\x1c\xda\xbd\x38\x4c\x93\x28\x27\xa2\x5d\x95\xfb\x3b\xf8\xe3\x3e\x07\x85\xac\x89\x5b\x2d\xd9\x9c\x21\xe7\xc0\x41\xfc\x1c\xb7\xe6\x7a\x29\x5f\x3b\xe4\xfc\xe2\xe8\x25\xba\x3a\x71\xf5\xe5\xd8\x42\x2e\x6b\xf9\xe2\x6d\x9d\x2a\xb2\xc5\x2b\xbb\x87\xf7\xc7\x2e\x7b\x81\x2f\x89\x30\xe1\x0e\x49\xe7\x93\x68\x23\x22\x30\x3e\x3c\x6e\x1d\xdc\xb3\x79\x58\x0b\x1e\x40\x94\x03\xe5\xfc\xed\xe4\xf6\x8e\x65\x7f\x1d\x01\x17\xff\xec\xba\x9a\x25\x8f\x50\xf2\x80\x67\x0d\x4b\x2d\xf4\x0c\x4e\x4c\x34\x62\xab\xc5\x8e\xdd\xa7\x64\x0b\x73\x6d\x38\xdf\x92\x73\xa9\xe8\x52\x66\x7a\xa5\xb0\xd4\x9c\xac\xef\x58\xcb\xfa\xaa\x36\x65\x37\x8b\xc2\x65\x66\x60\x39\x98\xad\xdb\xa9\x2e\x2a\xea\x5e\x91\xc6\x96\x06\xd9\xb4\x22\xdb\xd5\x90\xd7\xb7\x14\xfd\xe0\xb5\xea\xda\x36\x8f\x37\x74\xfd\xa3\x7e\xc4\x35\x01\x04\xee\x6f\xe8\xc4\xe4\x0d\xe7\x37\xd9\xcf\x6c\x3e\x00\xa3\xfc\xa0\x10\xee\xcf\xaa\x36\xed\xd9\x86\x5a\xe0\xac\x2b\x03\xcf\xcd\x71\x14\xf0\xa1\xea\x88\x7e\xd8\x24\xcd\x33\x34\x59\x61\x5f\x51\xe5\x9d\x5a\x5d\x77\x32\x25\x9b\x3d\xd0\xae\x16\xb2\x1d\x7e\x7b\xda\xdd\xf1\x9d\x86\xa7\xd6\xbd\x86\x28\x6c\xd6\xf1\xc8\x1f\x20\x84\x16\xf8\x52\x4d\x56\xfd\x29\x55\x07\x2d\x93\xc2\x44\xc9\x8e\x1a\xa2\xc8\xe5\x8a\xa7\x54\x58\x7c\xaa\x86\x34\x52\x9c\xb9\x2b\x3a\xae\x99\x2c\x98\x92\xca\x1e\x59\x36\xd2\x73\xc5\xcc\x3d\xae\x60\x34\xc7\x9b\xac\xf5\xf2\x32\x49\x50\xfb\x73\x78\x14\x87\x5a\xbe\xae\xc8\x0e\xc4\x7c\xe7\x68\x1a\x69\x29\x4c\xc4\xf9\xb8\xc1\xc4\x24\x8f\x72\xd1\x07\x61\xde\x0f\x41\x18\x84\x03\xd4\x94\x6b\xf4\xa2\x7c\x44\x26\xab\x58\x50\x45\xd7\x45\x8b\xbc\xb8\x78\x33\x8f\xd3\xd1\x08\x57\xee\xbe\xde\xd9\x7f\x5d\x6a\xea\xc2\xdb\x57\xe0\xf3\xa6\xe4\xca\xae\x2b\xad\x7b\xb8\x69\x88\x38\xb3\x9f\x47\xd4\x79\xcc\x90\xdc\xb9\xe4\xd4\xd5\xba\x2e\x2a\x4f\xe2\xdf\x76\x4e\x87\xbd\x74\x68\xab\x68\xc3\x08\xdc\x13\xb3\xe8\xed\xc0\x63\x2c\xdf\x56\x34\xab\x32\x89\xaa\xc4\x23\x2a\x40\x75\xc3\xe6\x84\xcd\x1d\xa8\x82\x99\x75\x45\xf7\x60\xe9\x77\x6c\x16\xdb\xd7\x3d\xae\xf2\x94\xeb\x46\x65\x76\x25\x4c\xa7\xbd\xe1\xc6\x9d\xb1\xe2\x8e\xbc\xa1\xda\x16\xbc\xc7\x81\xe3\xb3\x63\xc2\xe7\xe5\xc0\x0b\xed\xb8\x4c\x96\xa6\xbc\xa2\xda\x15\xfa\x30\x0a\xfd\xf0\xab\x40\x54\xf7\x7a\x93\xa0\x78\x51\x66\x4b\xec\x12\xe3\x54\x80\xe7\x05\x3c\x3e\x89\x80\xd9\x3b\xdb\x1e\x3d\x37\x9c\xf2\xc5\xe7\x07\x81\x47\x65\x9f\xd1\xe9\xc4\x55\xdd\x8b\x0f\x97\x1f\xa7\xe1\x82\x6c\x9b\xa5\xb3\xf0\x46\x9e\x50\xa9\xf7\xd3\xdc\xe3\xc1\x52\x0e\xf1\x04\x6c\x3a\xd3\xeb\x35\xc9\x00\x7a\x54\xd8\x35\xd8\xd7\x10\x45\x21\xa8\x79\xa2\x99\x7b\x0d\x15\x49\x11\x46\xf7\xb2\x98\xd7\x03\xd5\x83\x7c\xa0\x70\x5b\x93\x8a\x1c\x54\xbc\x1e\xad\x65\xd1\xd2\x40\x68\x1f\xc2\x96\x6a\x39\x39\xd2\x73\x4a\x0f\x3b\x2f\xbb\x69\xd6\x8b\x92\x6a\x0b\xd8\x41\xe3\x91\x25\xf9\x02\x1f\xb4\x6c\xea\xbd\xed\x38\xdd\x24\xba\x2d\x4f\x74\x54\x1b\x06\x4a\xc9\x72\xdc\x20\x03\x41\xae\x53\x6b\x5a\x08\x06\xe5\x2c\x65\x0f\xc5\xa1\x98\x09\x8b\x29\x65\x45\x80\xc2\x07\x3a\x20\x80\x6a\x33\xd1\x6f\x7d\x6b\x69\xe6\xd9\x67\xdb\x23\xa4\x32\x68\x20\xb0\x49\x14\x9f\x28\x18\x55\xd7\xe6\x05\x8d\x65\xcc\x8b\xe3\x4a\x70\x01\x73\x44\x8a\x1e\x1e\x31\xb1\x6d\x5d\x62\x53\x2a\x04\xc4\xe9\x88\x57\x22\x09\x26\x5b\xce\xb7\xf9\xac\x4e\x26\xe3\x74\xc5\x2c\x47\x4c\x12\xc6\x46\xc9\x4e\x48\x7c\xa2\x1a\x48\x23\x9b\x85\x76\x84\xae\x83\x93\x32\x3d\x4c\x17\xc1\xc7\xc1\xc3\x34\xaf\xa4\xf7\x44\x9f\x9d\x3d\x50\x93\xa6\x14\xad\xba\xad\x2f\xe5\xcb\xed\x97\xd2\x81\x49\x9c\x2f\x78\xe3\x16\xdb\xb0\xc0\x87\x69\x5e\x18\xae\xde\x3a\x92\x97\x0b\x25\x1f\xe8\xc5\xf5\x4a\x63\x05\xd8\x14\x45\x9a\x25\x56\x64\x76\xc4\x15\xc6\xef\xd7\x17\xb5\x1b\xeb\x7d\xe7\x62\x3f\xca\xd2\xc2\xb2\x0d\x98\xd8\x26\x55\x3f\x2c\xa6\x42\xfe\x49\x0e\x4d\x94\xf4\x33\xf2\x67\x50\xca\xd2\x08\x1a\x1f\xa6\x41\xff\x8d\xd9\x76\xcf\xf6\xa3\x24\x2a\x6c\xb5\xc4\xba\x6a\xd3\x6f\xa8\x8e\xc9\x6f\x34\x72\x53\x47\x62\x36\xd0\x28\x68\xa0\x55\x0f\x5c\x97\x2e\x2b\xa2\x30\xb6\x39\x5a\xe5\x2a\x6d\x16\x27\x71\x94\x54\x04\x03\x31\x59\x80\x9d\x6f\x77\xe3\xd2\xd6\xa1\x80\xd5\x08\x13\x28\xa0\x4a\x01\xed\x92\x09\xd7\x58\x4d\x8e\x13\xa9\x40\xe9\x51\x4f\xb2\x99\xe7\xe6\xda\x79\x61\x9d\xbb\x9d\x84\xf8\xd5\x6f\xf1\x71\xe0\xf5\x79\x0a\x1b\x0e\x12\x07\xfc\xa3\xb8\x99\x65\xae\x10\xcd\x8a\xe6\xd5\xd6\x40\x95\x56\x04\x93\xe4\x7d\x9b\x65\xb2\x3b\xff\x7f\x91\x0f\x9a\xaf\xc6\x5f\x99\x15\x36\x67\xd1\x2a\x61\x51\x7a\x7c\xc9\xc5\x40\xbc\x98\x6c\x0e\x41\x19\xf4\x30\xaf\xab\xde\xfd\x7b\xe8\xb7\x39\x4d\x4f\xcf\x9d\xff\x60\xac\xd8\x33\x9f\x36\x2d\xb1\xa6\x18\xa6\xf9\x68\x60\x33\x38\x79\xe0\x4a\x37\x02\xdf\x39\x39\xaf\x16\xb6\x53\x4d\x71\x64\x61\xb3\x21\x13\xa0\xc5\xb6\x5e\xe1\x41\x8e\x69\xd1\xad\x38\xea\x41\x01\x43\x20\x9c\x7f\x36\xf6\x99\xcf\x9f\xa9\x4e\x4c\x66\xa2\x9c\x08\x9d\xd2\xe7\xbc\x4a\x8f\x84\x59\x68\x8a\xdf\xb1\x93\xa8\x9a\x88\x02\x18\x24\x87\x59\xcc\xd8\x7d\xb1\x50\xa8\xee\x47\xbc\x42\xe8\xbd\x0a\xa5\xc5\x23\x29\x11\x20\x49\x04\x4b\xcf\x0d\xa5\x83\xf7\x5d\x25\xbb\xa8\xf6\x22\xee\x05\x23\xfb\x40\xb5\x86\x8f\xdd\xdc\x5e\x35\x31\x09\xf6\x61\x49\x40\xc7\x6d\x43\xb7\xdf\x36\x5c\xb4\x6f\x43\xe2\xc9\x46\xe1\xb4\x97\x43\xd8\xd6\x51\x6e\x76\x1f\x68\xe7\xb2\xd3\x63\x35\x8a\xcf\xbb\x19\x18\x0e\x0c\xd9\xc8\x51\x14\xb6\x09\xf9\x24\xb4\x92\x11\x22\x88\x88\xe4\xd6\xa9\x77\xe0\x05\x84\x6f\xf4\xf2\x9c\xf0\xb4\x17\xa1\x9e\x28\xf7\xed\x9b\x6f\x8f\xca\x2c\x2f\x23\x26\xaf\x48\xc9\x53\x95\x3f\xab\xbc\xc1\x05\xc5\x69\x6e\xc3\xb2\x48\xb3\xc8\x00\xa6\xc0\xb1\x8a\x02\x5e\xf8\x0a\xe9\xd0\x66\x4b\x55\x20\x59\x4d\x34\xdc\xe0\x9b\xea\xa5\xb7\x3a\xaa\xe0\xbd\x6d\xdd\xaf\x8e\xfd\x2c\x1a\x8d\x2c\xea\x18\xd5\xea\x88\x38\xe3\x0f\x68\x75\xe4\x63\x55\x6f\x32\x65\x31\x48\xb3\xa8\x58\x9b\xf6\x44\x03\xa6\xa9\x39\x39\x26\x57\xba\x44\x77\x4c\x5c\x7c\x77\xb9\x3d\x9d\x42\x30\xc1\x8e\xfb\x58\xf7\x13\xca\xc7\x11\xbd\xdd\x70\x2f\x78\x60\xb3\x64\x42\x3b\xe5\xe7\xf4\xcd\x7c\x3c\xb1\x2c\x90\x5c\x76\x66\xc2\xa8\x4e\x41\x3a\xa5\x28\x48\xa7\x02\x2f\xcf\x1f\x72\x16\x2b\x4a\x71\x3e\xa8\x39\x32\xf6\xd2\xa8\x71\x5a\xf6\xf2\x91\x35\x44\xdb\xf2\x18\x3a\x90\x5f\x85\x6e\xe5\x57\x5a\xfb\xca\xc8\x66\x85\xca\x1f\xb8\x5d\xcb\x27\x81\x3c\x0d\xf3\xa5\xe9\xed\x5f\xe2\x59\xf3\x19\xc5\x7b\x3f\xa3\x95\x69\xb6\x13\x7d\x12\xb0\xd6\x33\x4d\x22\x6a\xa6\xf7\x52\xe9\x51\x04\x08\xca\xaf\xd1\x8d\xf0\x71\x43\x21\x7e\x56\xca\x4b\x53\x9e\x2c\xc3\xc5\x77\x94\xf9\xa1\x49\x2a\xa6\xfb\xfe\xd6\x4c\x58\x45\x16\x58\x5d\x78\x66\x04\x4a\x95\xfe\x1e\xe5\x61\x4a\xdd\x6b\xbf\x7b\xbf\x4a\xc0\xf1\xe2\xd8\x47\x26\xa7\xc6\xde\x8a\x08\xc9\x0f\xeb\x98\xa9\x70\x7e\xdb\x7a\x6b\x71\xcf\xe6\x79\x6d\x65\x71\xc3\x87\x89\xc5\x20\xe5\x10\x17\x0f\xec\xbb\xea\x55\x7f\xb7\xc9\x37\x79\xb0\x36\xb2\x19\x15\x82\xb1\x6f\xba\x89\xa5\x12\x82\x27\x94\xdd\x77\x16\x96\x3c\x4a\xb0\x17\x20\xc9\xe1\xe3\x40\x37\x50\x97\xc8\xc6\xb9\xa5\xb8\x34\x90\x24\xe6\x63\x25\x9d\x3c\xca\xd2\x24\x2d\x93\x50\xd8\x69\x02\x39\xf3\x5a\x0a\xdf\x69\x78\x6d\xf3\x2c\x4f\x57\xa0\xe2\x8e\x44\xfe\x82\x4a\xf0\xb9\x30\x27\xc4\x78\xbf\x3b\x97\x49\x3f\xcd\x8a\xb2\x8a\xef\xe3\xb5\x29\x9f\xc4\xa3\xe1\x85\x57\x71\x97\xe6\xbd\x28\x92\x37\xec\x77\xf6\x95\x81\x29\x73\x0f\xa3\x91\xaa\x9b\x22\x20\x2b\x60\x53\x91\x26\x8f\x54\x3f\xe4\x50\xf9\xae\x9e\x3c\xb3\xee\xb3\xc4\x19\xf2\xe7\xc2\xd6\xf9\x1d\x6d\x7b\x38\x56\x04\xd2\x0f\x31\x94\x30\x34\x67\x94\xc2\xec\xbd\xcf\xaa\x22\xaf\x8d\x6d\x58\x70\x28\x89\x48\xaa\x26\x35\x7e\x37\x50\x9b\x88\xc6\xc3\x45\x49\xdf\x0c\xd3\x32\xd7\x0a\xa9\x1b\xaa\xa8\xb9\x11\x7c\x4e\xc9\x92\xe7\xd1\x52\x82\x8e\xca\x94\x87\x57\x1f\x57\x8d\xfc\xd7\x31\x8f\xb0\xf4\x9d\x9f\x08\xb6\x17\x5e\xd8\xdf\x1e\xa4\x23\xcb\x70\x04\xdc\x20\xcb\x5c\x4b\xe3\xaa\xe5\x1c\x0f\x4e\xa9\x64\x25\x1f\xa4\xab\xbb\x95\x2f\xfb\x65\x6a\xcb\xa1\x93\x0c\x00\x32\xb6\x9e\xe3\x28\x61\xba\x72\xdf\x3e\xc1\xba\x5c\xa6\x79\x87\x0f\xfc\xa7\x9a\x5f\x20\x54\x13\x10\x73\x9f\x54\xb9\x02\x84\xff\x51\xc1\x67\x1b\x50\xb1\xc9\x7b\x5a\x8b\x2c\x85\x36\x2b\xd2\xbc\xa5\x15\x8f\x75\xbd\xaf\x09\x93\xd1\xb5\x49\xb4\x04\x42\x01\x22\x5d\x48\x6a\xf2\x71\x13\x33\xb3\x9b\x26\xa5\x46\x41\xbc\x17\xf8\x81\xff\x9e\x8b\x33\x46\x04\x6e\xa9\x39\xd0\xdc\x52\x23\x94\x65\x50\xd1\xa0\xd8\xde\xf1\xbc\x92\x92\x6e\xc2\x44\x09\xbd\x56\xf6\xb5\x0b\x34\x72\x89\xee\x08\x11\xe4\xe9\x26\xde\xe2\xa8\xcc\x07\x75\xab\xaf\x8f\xb5\xd5\xd7\xc7\x13\x01\xe0\x97\xdb\x43\x9b\xe7\x59\xfe\x1c\x0f\x5a\x67\x2c\x33\x37\xb7\x9f\xdb\x29\x9c\x00\x89\x88\x8d\xca\x27\x8b\xcc\xb0\xfa\xca\x82\xab\x7a\x54\xaf\x5a\xaa\x21\x5b\xf3\xad\xb9\x39\x12\x2c\xce\x7a\x5b\x64\xda\x4e\x29\x99\xb6\x53\xea\xad\xda\x57\x46\x26\xc9\xa3\x34\xd9\xe1\x67\xc2\x0f\x03\x25\x69\x78\x47\xbb\x1d\x01\x8d\x8e\xb4\x97\xc5\x7a\x9d\xfa\xb6\xdb\xbe\x66\x3a\xbb\xdd\xea\xf0\xcd\xd1\xb4\x0f\x64\x4e\xd0\x20\xc5\xab\x7f\x17\x77\x8c\xf1\xb7\x8d\xc8\xe9\x98\x57\xf7\x5c\x53\x28\x4c\xb3\xac\xa4\xf4\x78\x4a\xad\xfb\x97\x14\xac\xfa\xbe\xea\x20\x9c\x6b\x90\x57\x7b\xbe\xbd\x94\x99\x10\x61\x3b\xea\x19\xd7\x6b\x44\xb5\xea\xd2\x18\x89\xe3\x41\x8a\xe5\xab\xaf\x72\x9f\x12\x35\xb1\x2b\x8a\x77\x7c\x65\x22\x1f\x3c\xf0\x42\xbb\x9b\xa6\x79\x41\xf1\xa1\x94\x11\x55\x18\x70\xa9\xd6\xac\x30\xa6\x8b\x2c\x06\x8d\xa6\xb3\x08\xab\xf8\x64\xe2\x06\x48\x48\xa6\xca\x81\xa7\x5a\xdf\x98\x75\xd3\x56\x39\x29\xb0\x55\xa1\xf0\xd0\x27\x79\x1a\xed\x51\x66\x96\x86\x86\x84\xc8\xe7\xe6\xbc\xa6\xa3\x6f\xe4\xbd\xeb\x6e\xbc\x9a\xa8\x43\x8d\xb6\x41\x71\x4e\x4c\x53\x1e\x46\x7c\x32\x43\x9b\x45\xa1\x49\xc8\xfb\x61\xf3\x4d\xc6\x8c\x63\xcf\xe2\x8a\x11\x4e\x1e\x5f\x6f\xd2\xbf\x1b\xda\x5e\x64\xb4\x64\x05\xc6\x85\xe8\x57\xe8\x66\x78\x12\x99\x19\xcf\x51\x39\xa5\x6b\x06\x57\x54\x1b\xf6\x06\xe3\xe4\x04\xfa\x44\x37\x8b\xb6\xcd\x03\xaf\x6b\x91\x15\xfd\x32\x56\x06\x4c\xac\x4a\x21\xc5\x5b\x87\xf6\x0f\x6d\x02\xa1\x50\x04\xc2\x3b\x61\x3a\x09\x2c\xcf\x5f\x63\xdf\xc1\xae\x76\x4f\x29\x0c\x3d\xd3\x69\x88\x47\xa8\x8e\x64\xd5\xbe\x0a\x64\x3c\x96\x74\x3e\xf6\x9d\xb8\xcc\x0c\x5b\xaa\x3e\x80\xee\x06\x1f\x4f\x14\xee\x0f\xbc\xd0\xce\xd3\xa1\x1d\xa4\xab\x2d\x5f\x47\xbc\x47\xc3\x9b\x8f\x9b\xa4\x68\x69\xdc\x4e\xd1\x2a\x24\x68\x74\x65\x6f\x70\x58\x49\x6e\xdc\xaa\xbd\x07\x9b\x75\xb1\xfa\x49\xff\x59\xc9\xcf\x9e\x9e\x68\x72\x52\xa4\x9e\x17\x66\x59\xf0\x3f\xf8\xca\x73\x4a\xd8\xf2\x5c\x93\xd2\xf7\x30\x0a\xb9\x2b\x8f\x9e\xfd\x5d\xd5\xbf\xbf\xdb\x30\xd4\x29\xed\x0a\x07\x26\xd7\x9e\xc2\x75\x3f\x31\x4f\x12\x2c\xca\x61\x37\x16\xd5\x3f\x6e\xdc\x31\x42\x48\xda\x78\x4d\xba\x73\x99\xaf\x92\x48\x65\xa5\xa5\x6c\x9f\xfc\x1e\x3e\x32\x59\xf1\xb8\x57\xfb\x62\x1d\x48\x26\x4f\x80\x6a\x8d\x28\x67\x1b\x25\xe7\x0a\xac\xf8\xad\xcd\xcb\x1a\x6e\x4d\x88\x5d\xa6\xc4\x61\xb2\xfb\x10\x72\x61\x13\x1e\x7b\x08\x41\x9e\x5a\x57\xe1\x2a\xa8\xdd\xfc\x13\xeb\x4a\x05\x6c\xb2\x09\x5d\x8d\x9d\xb2\x5b\x66\x5d\x03\x6f\x26\xd1\x7a\xa8\x2e\xc2\x71\xe2\xbd\x62\xd1\x55\xd5\x92\xea\xd9\xc2\x44\x31\x2a\xc9\x0b\x1e\xd7\xb5\xe8\x79\xa3\x2d\x07\xde\x7e\x3b\x50\xc9\xc4\x29\x95\x72\x9f\x42\x4b\x58\x21\xc1\x5c\x75\x34\xb1\x45\x66\x0a\x3b\x4d\x9f\x44\xaa\x7f\x0d\xfc\x7c\x54\x3c\x80\x18\xe6\x7f\xc0\xd7\xf0\x3f\x78\xec\x6d\x16\xad\x18\x14\xf8\x16\xf7\x38\x23\x26\x25\xf6\x78\x51\x8b\x64\x65\x26\x4a\xf2\x1d\x9a\xbd\x55\xed\x4b\xe8\x18\xdf\x0c\x6a\x1c\x29\xcf\xf2\x04\xd6\x59\x0c\x75\xb4\xd0\x4d\x43\x31\xb4\x9d\x44\xe1\x32\x69\xd0\x41\x03\x5c\x2a\xc8\x34\xa6\x24\xb8\xaf\xbe\x0f\xe1\xf1\x64\x35\x69\x7e\x7e\xa1\xdd\x37\x65\x62\x5a\x55\x26\x8d\x05\xe1\xa4\xae\x24\x9e\x0c\x3c\x8a\x3e\x2f\x6c\x16\x93\x46\x95\x73\xb7\x7d\x14\x4b\xb2\xe0\x13\x7c\xfe\xf8\x33\x5a\x2e\xd0\x8a\xd9\x50\xdc\xb0\x4f\xd4\x0b\xb7\x49\x11\x15\x91\x48\x1e\xa3\x02\x80\x98\x98\x8f\x03\x1f\x6e\xdb\xa5\xb5\x51\x11\x99\x44\x0b\x3c\xdc\xc0\x52\x21\x66\x91\x8a\x53\x1e\x77\x4d\x62\x79\xea\x3a\x5a\x97\x37\xbd\xb9\xa8\xd2\xee\xbc\x30\x49\x68\x67\x3c\xd9\xe0\x14\x6b\xb3\xa0\x7a\xca\x60\x6a\x3e\xa1\x81\xe6\x22\xbb\xea\x4a\x30\x23\xff\xb4\x41\x1c\x70\xa1\x1d\xc6\x65\x37\x9f\xd6\x80\xf2\xf3\x81\x5a\x82\x6e\xd1\xb7\xc9\x04\xd1\x2a\x95\x4d\xc2\xc8\xdd\x34\xcb\x94\x6d\x93\x7b\x5a\xae\x76\x72\x5c\xa9\x6c\x80\xae\xbb\xa3\x7a\xec\x8c\xdb\xc7\x20\xc5\xd8\xbb\x4d\xe3\x10\x94\xbb\xef\x8f\x7d\x2c\x4d\xae\xaf\x9b\xa7\x55\x72\xf7\xa9\x1b\xf9\xdd\x2c\x35\xbd\xbc\x60\xc9\x42\x17\xdb\x57\x5f\xca\x27\x8d\xb8\x7c\x13\xc7\xe9\xaa\x14\x68\x11\xf4\x1c\xc3\x83\xe3\x13\xb7\x45\xe5\x36\x29\x76\x56\xdf\x0d\x9a\xe8\x17\xd7\x6b\xad\x7f\x0d\x25\x74\x98\xfc\xf7\x7f\x01\xdb\x27\x95\x4d\x7f\xf7\xef\x77\x3c\xfd\xf4\x97\xda\x1d\x85\xf6\xda\xb1\xfe\x84\xea\xdd\x84\x66\x68\x1f\xa1\x35\x53\x38\xfd\xad\xbd\xb3\xde\x59\xe2\x90\x73\x05\x3d\x49\xeb\x01\x73\x04\x68\x08\x3b\x19\x10\xed\x53\x43\xaf\x43\x18\x31\x3e\xdc\xd9\xd9\xd9\xda\x4d\x3c\xb4\xd0\x1e\x98\x9e\x46\xed\xf1\x18\xc2\xb8\x63\x7c\x03\xc2\xcf\xfb\x81\x27\x87\x15\x26\x5e\xa6\x36\xbd\x70\xdf\x7c\x4b\x60\x7a\xdd\x37\x3c\xdf\xa5\x4b\x44\x0d\xfb\x91\x8e\x22\xa6\x72\x07\x50\x18\x75\x9f\xdb\xc2\x89\x2d\xd1\xf6\xa1\x1f\x47\x9e\x72\x18\x1d\x08\x3e\x69\x92\x4c\x35\x34\xbe\x76\xd2\x67\x84\x19\x5a\x5d\x15\xa6\xc9\xe3\xb4\x0b\xe1\x3d\x9e\xa5\x45\x5b\xe1\x6b\x45\xda\xfe\x24\x0d\x42\xfc\x03\x4c\x03\x18\xbe\x30\x51\x02\xa5\xcd\x38\x36\xa1\xec\x95\xd2\xf2\xf3\x44\xb4\x4b\x3e\x8f\x23\x0b\xc9\x7c\xaa\x66\xca\x48\xbf\x8a\x1d\x70\x53\xed\x27\x97\x14\x8d\x71\x18\xc5\xa8\xc0\x6c\xc2\x68\x79\xf3\xbc\x42\xb6\xc2\xaa\x88\x36\x04\xc4\x9e\x6c\xd9\xca\x27\x6a\x95\x22\x6e\x46\x18\xaf\x4d\xd3\x86\x89\x64\xfc\x3d\x6c\xd0\x7c\xa2\x98\xd9\x17\xe9\x09\x08\xed\xd0\x57\x4c\x59\xd3\xdd\xf6\x66\x54\x93\xe1\x1a\x7d\x50\xb0\xab\xf4\x1c\x44\xac\xdd\x33\x26\x90\xcb\x89\xe7\x8f\xa7\xf0\x77\xe3\x34\x5c\xee\x96\x04\x7f\x98\xf2\xce\x58\xe7\xb4\x97\xd6\xb9\x89\xf9\x2b\x21\x79\xaf\x44\xc8\x8a\x77\xd5\xea\xb4\xbe\xf9\x75\xd7\x5c\xa4\x47\x8b\xc2\x11\x4b\xf4\xc8\x72\xeb\x91\x1a\xab\xd5\xcd\x64\xc9\x2e\x5f\x6b\xb8\x39\xf6\x86\xbf\x9b\xe8\x21\x20\x7d\xd8\x50\x1c\x5d\x78\x26\x8a\xc1\x91\x7a\x14\x47\xf0\x43\x7c\x12\xa8\x89\x7e\x0f\x23\x9d\xbf\xab\x41\x6e\x67\xb6\xdd\xb5\x00\x04\x61\x10\xde\xc4\x57\xf1\x89\x7e\x91\x59\xba\x12\xf5\x6c\xbe\x93\x2e\x0e\xc1\xce\x27\xb8\x5b\x3e\xd1\xf3\x1e\x60\x39\xa4\xdb\x6f\x6b\x95\xca\x63\x9a\x9e\xf1\x43\x55\xd5\x3b\xae\x23\x93\x2c\x7d\x09\x92\x53\xd5\x54\x11\x80\x5b\xf5\x84\xf8\xb8\x86\xe1\xb5\xc9\x12\x77\x39\xb0\xee\x9e\xd1\x8b\xf0\x99\x26\xc0\x6d\x94\xf4\xa2\xcc\x86\x5a\x44\xe6\x63\x25\x22\xf3\xb1\x16\xf2\x8b\x56\xd2\x2c\x44\x77\x42\x30\xec\x0a\xcf\xae\xc0\x5c\x79\x34\x1c\xc5\x16\x44\x6e\xa4\xe3\x77\xf1\x78\x9c\x02\x85\x13\x8b\xb9\xa2\x54\x43\xd8\x85\x18\x13\xf0\x46\x23\x3c\xd8\xae\x0e\xd2\x92\xf7\x6e\xe7\x97\xe8\x39\x12\x17\xd5\x45\xa4\xd9\x92\x49\x50\xdc\x71\x1d\x25\x85\xba\xf6\x8f\x38\xb7\x76\x18\x25\x4b\xf1\xda\x0e\xba\x60\x11\xae\xa9\x55\x97\xe9\x7d\xa2\x03\xf7\x8e\x6a\x48\x33\xb8\x45\xd4\x99\xaa\xf1\x29\xa9\x78\x53\x4c\x4f\x1e\x44\x53\xaa\x77\x39\xd5\xf1\x5a\xc8\xbf\x8f\x70\x13\xb9\xcd\xf4\x04\x00\x61\xdf\x7c\xbb\x1c\x51\x70\x85\x14\x7e\x93\x16\x08\xa0\x48\xa0\xa7\xe5\x6a\xb7\x8b\x7b\xf8\x71\x6c\xd2\x54\xa2\x95\xee\x17\xbf\xd0\xf9\x6c\xdd\xbd\xb7\x0a\x42\x5e\x7c\xf1\xf3\xf4\x5e\xa4\xfd\x47\x77\x83\x64\xf6\x1a\x76\x3b\xe4\x03\xe7\x54\x6e\x00\x36\x29\x3a\x79\xdb\x3a\xad\x67\x9f\xe5\x79\x3b\x40\xe2\x81\xfb\x47\x0d\x1e\x25\xaf\xff\x87\xb3\x1d\xac\xf9\x7f\x15\x78\x16\xc0\x4d\x04\xd2\x4e\x4a\x60\xaf\xb0\x14\x6f\xd3\x85\xcb\x85\x54\x37\x87\x11\x72\x25\x68\x1d\x12\xf4\x37\x7b\xfd\xe0\x37\x0e\x43\x21\xc1\xa9\x54\x7c\xf3\xeb\x8e\x77\xeb\x69\xbb\x27\xb0\x1c\x20\x1e\x3d\x1a\xa8\xe4\xff\xfb\x78\xf6\x7c\x21\xae\x59\x94\x0f\x32\x6f\x4c\xf4\x3c\xef\x98\x70\xb9\xe6\x63\x45\xd2\x4a\x52\x16\x82\x5c\x5c\x70\x06\xf3\xd5\xad\x8a\xb8\xa7\x02\x9d\x0e\x84\x05\x70\x70\x8f\x2f\xb4\x29\xd8\x91\x57\xa6\x50\x3e\x83\xd3\x8a\x7d\xcf\x51\x38\x9f\xd0\x13\x65\xac\xb4\xf2\xd3\xb8\xa9\x1a\x09\x36\x8e\x96\xa2\x6e\x0c\xc6\x83\x22\x62\x49\x25\x1b\xd0\x14\x84\x33\x78\x11\xd2\x9e\x7d\x52\xd9\x90\x44\x3d\x92\xd7\x9f\x97\x9e\xd0\x9f\x6b\x13\xae\x3f\x0f\x9e\xae\x0f\xb0\x5f\x6e\x3f\xfb\xec\x4e\x8f\x89\xbd\x49\x8d\x1c\x11\x35\xf4\x5d\xec\x6f\x63\x5d\x46\x11\xf8\xfd\xb1\x92\x0b\xf8\x1e\x0d\x22\xfe\xf4\xd8\x23\x35\x3f\x6d\x00\x2d\x7c\xab\x6d\x0d\xda\xf6\x82\xb2\x44\x13\x41\x58\x7f\x4a\x03\xad\x0a\x56\x5b\x6a\xec\x30\xc8\x9a\x4f\x02\x25\x5f\x50\xc6\x31\x3d\x30\x71\x9c\xa8\x9e\xad\x88\xfb\x2a\x39\xd3\x73\xda\x1c\xbf\x5e\x84\x2b\x12\xa3\xdc\x24\xc1\x45\x13\x55\xf5\xad\xeb\xdb\xaf\xb4\x33\x3b\xca\x6c\x15\xeb\xa2\x37\xc4\x46\x49\xf8\x76\x71\x4d\xda\x15\xb5\x47\x99\xed\xff\xe7\xed\xe5\xcf\xaa\xf2\xd0\xe3\xd4\xf3\x70\x85\x53\x37\xe4\xb7\xa1\xf2\xeb\x40\x51\xb3\x07\x9c\xb6\xbe\x1a\x4e\xf7\xb0\x5f\x61\xcf\xbd\x8c\xc7\x01\x98\xd2\xa3\x1d\x95\x52\x3d\x0e\xe5\x10\xf6\x97\xe6\xea\x1b\x26\xff\x26\x3d\x6c\x34\x42\x6e\xab\x5d\x61\x57\xa7\x7a\xe9\xc8\xee\xae\xe3\xdd\x22\x4e\xfe\xe2\xba\xef\x18\xb1\xc9\x21\x5f\xbd\xa2\x29\x40\xa1\x1a\x43\x66\x27\xd5\x6d\xd9\x7a\xb0\xd1\xd9\x2c\x29\x87\x5d\x72\x90\xd5\x02\xd8\xf4\x8c\x04\xbb\xa1\x90\xea\xbd\x5e\x54\x50\x6b\x6d\x46\xe9\x21\x9e\xc4\x73\x70\xbe\xff\xd5\xad\xa3\xfa\x0b\x15\x0f\xfe\x87\x40\xa1\xbe\xff\xac\x51\x55\x39\x1c\x98\xea\x5a\x84\x87\x8a\xa7\x7c\x56\x33\x9a\x2f\xd5\x24\xa0\x9a\xc4\x01\x86\xb6\x30\x31\xd7\xb1\xc4\x42\xd8\x2b\x0d\x9d\x38\xaf\x70\xf7\x69\x16\x2d\x01\x68\x87\xfa\x05\x16\xea\x99\x8e\xc7\x8d\x1d\x1d\xfb\xae\xec\xcf\x34\x0a\xeb\xae\xc7\x0d\x85\x61\x49\x25\x90\x96\xb3\x93\xdb\xde\xf1\xe6\x94\xd7\x54\xce\x8e\x76\x12\xc6\xfb\x9f\xa8\xa2\x46\x6c\xd6\xd2\x92\xa9\x47\xd2\x99\xf6\xeb\x0a\xcc\x62\x10\x14\x9d\x76\x41\xb9\xa1\xc8\x13\x6e\xb9\x58\x8c\x61\x74\xc1\xc7\x9d\x67\xea\x5a\x53\x71\x94\x20\xd4\x7f\xde\x19\xae\xfb\xeb\xbd\x58\x0f\x86\x46\xc5\xa3\xb4\x87\xe1\x4d\xdd\xa4\x3d\x0c\x83\x97\x85\x3c\x30\x76\xff\x57\xb5\x23\x1d\xa7\xd0\x4a\x94\x64\xab\xbb\x67\xbd\x58\x1a\xdf\x18\x0b\x1f\x8c\x3d\x4a\xf8\x06\xc6\x82\x44\xae\x53\xde\x6f\xfa\x53\xe5\x4b\xd2\xb7\x71\x6c\xc1\x76\xc0\xb2\x0a\x2e\x4e\x6d\x24\xa0\x2c\xfa\xe9\x58\x67\xa3\xd5\xdd\x52\x60\x26\xf5\x23\x5d\x4c\x6a\xb0\xc4\xdb\xdf\xee\xda\x7e\x9a\xb1\x65\xa7\xb8\xaa\x57\x3f\x85\x6c\xf6\x67\xaa\xd6\x72\x3d\xd8\xea\xe3\x46\xf0\x39\xe7\x2e\x43\xed\x48\x0c\x5f\x91\xcf\x55\x4a\x94\x1b\x1a\x89\xbb\x6d\xa2\x04\x5d\x65\x81\x71\x4c\xa4\xf5\x54\x1c\xfa\x10\xaa\x9c\x51\x26\xf3\x67\x1e\x6a\x37\x3b\x4a\x73\x47\x02\x02\xb8\x9d\x5d\x9d\x81\x6c\x38\xa2\x77\x89\x49\x82\xc8\xc1\x3d\xed\x22\x1a\x5a\x46\x06\x39\x0d\xcf\x45\x19\xca\xef\xd5\x86\x89\xc9\xc2\x29\xd5\x87\xbb\xa9\xad\xfd\xfe\x25\xd6\x0f\x1c\xdf\xd4\xc2\x84\x64\x18\xc3\x80\x48\x1e\x0a\xf4\x70\x65\x58\x3c\xed\x11\x9d\xc4\x57\x10\x3e\x1a\xf7\xc8\x03\x4f\x57\x39\xaf\xf4\x07\x48\xc7\x17\x03\xc5\x8d\xcd\xbd\xe2\xaa\xc9\x94\x3c\x6c\x94\x37\x15\x8a\x66\x18\x85\x59\x9a\xa7\xfd\x62\x47\x75\x35\x78\x5e\x57\x08\x3e\xa5\xe9\xd9\x4e\x42\x74\xc1\xff\x11\x72\x79\x51\x69\xa8\xae\x89\x3f\xd1\x24\x70\x52\x64\x64\xea\x36\x4d\xa1\x92\x34\x2f\x7c\x0b\xfe\xbc\x92\xf1\xb8\x82\x80\x19\x03\x67\x67\x47\xca\x38\x85\x59\xb6\x8f\x29\xba\x09\x3d\x31\x44\x0f\xdb\x88\xe4\x2d\x1e\xf0\x4c\xe0\xa9\xbe\x1c\x9b\xd2\xd5\xb1\xd2\xd5\x7b\xa2\x53\x2f\x71\x57\xef\xcb\x79\x8e\xd4\xc1\x22\xde\x8c\xa9\x9a\xcb\x28\xa8\xfe\x02\x15\x14\xa4\x91\xd5\xa4\x93\x1b\x9a\x2c\xe3\x3c\x4a\x0a\x23\xf4\x5d\x7c\xa2\x40\x17\x61\x3a\x1c\xd9\x98\x3c\x6c\x28\xab\x17\x68\x3b\xed\xba\x22\x23\xd6\x64\x3b\x54\x64\x69\xd9\x8d\x6d\x9e\x0e\x81\xf0\xc7\x5b\xbd\xad\xe5\xb8\x30\x73\x51\xf0\x3f\xe6\xd6\xcb\x7c\x10\x25\x2e\x22\x75\x20\x17\xd7\xdd\xd7\x3e\xa3\x79\x61\xba\x51\x1c\x15\x1c\x16\x31\x16\x16\x13\x49\x80\xb1\x5b\x31\x19\x7b\xf7\xb6\xf3\x51\x6c\x93\x5e\xd4\xab\x91\x01\x60\xd9\x2c\x15\xb7\x06\x36\x47\x31\xb0\x99\x8d\x92\x69\x9f\x3b\x32\xd5\x09\xbd\xc4\xa3\xf4\x02\xc4\x26\xab\xfa\x5e\xfc\xd1\x54\x67\x6b\xa2\xf3\xcb\x55\x42\x36\xe3\x4b\x57\xdc\x25\x17\x20\x42\xf5\x35\x58\x9f\x77\x75\x14\x55\xfb\x3c\x87\x23\x22\xaa\xf6\xb8\x26\x57\xa7\x9f\xa1\xa7\x85\xc4\xe9\x5d\x0d\x8f\xa3\x50\x89\x45\xdd\x30\xc4\x9c\x36\xd8\xe2\x82\x33\x09\xf2\x3b\xdf\x27\x35\x32\x1b\x52\x24\xac\xa7\x20\xd6\x8a\x27\x95\xc2\x2b\xde\xd6\x4b\xe5\x69\x1d\x54\xa0\x21\x83\xef\xba\xa2\x76\xa7\xb3\x7e\x73\xec\xa5\x23\xae\xf5\xcc\x6f\x42\xf3\x0c\x28\xdc\x16\x8a\x9b\x18\x35\x57\xa5\x99\x43\x37\x20\xaa\x84\x3a\x0c\x8d\xc2\xfc\x09\x45\x5f\xbf\xa5\x6b\x44\x1b\x4a\x53\xfc\x04\x06\x87\x17\x31\x16\xa4\xc6\x76\x9a\x9e\xd8\x79\x8e\xf2\xa3\x06\x5e\x0e\x35\x96\xcd\xdb\xb4\x71\x3a\x52\xab\xf3\x53\x65\xb3\x1e\x57\xc5\xac\x1e\x18\x92\xea\x77\x11\x81\x22\x66\xe4\x66\x86\x3c\xbe\xea\x25\xa3\xd5\xf4\xf1\xc4\x04\x9d\x9b\x6b\x5b\x6f\x77\xcc\x9e\xf8\xb8\x6e\x31\xc8\x7f\xc2\x11\x4b\x48\x0c\x85\x29\x95\xb2\x6f\x56\x5f\x2e\x1b\x6a\x43\x2d\x3d\x2f\xa2\x61\x19\x1b\xe6\x86\x21\xe0\xbc\xa2\xda\xd3\x57\xb4\x4b\x57\x35\xf9\x51\x63\x40\xcd\xf5\xa6\xb6\x4e\xb9\xd9\x08\x13\x28\x47\xb9\x05\xc6\x02\xcf\x9c\x4b\x63\x7c\xa2\xd6\x16\xfb\x4a\x41\x98\x32\x36\xa9\xc3\x98\x01\x1d\x9d\x8f\x27\x48\xb4\xfb\xe6\xd9\xdf\x37\x72\xfa\x42\x4e\xce\xaf\x7a\xfd\x7c\xd2\xe0\x53\xb1\xd8\x76\xec\x9f\x26\x8f\x06\x19\x90\x6b\xe4\xf3\x95\xcd\xf8\x34\xf2\x18\xfd\x1d\x4a\x23\x3b\xa1\x70\x8f\x87\xfb\xf9\x8e\x9f\xc3\xd7\xb5\x11\x89\x57\xab\x89\x6d\x94\x97\x99\x6c\xd4\xc8\x7e\x8f\xd1\xa8\xe3\x63\x55\xa5\xe9\x45\xa6\x6b\x3d\x25\x1a\x5b\x0b\xa0\xec\x7c\xac\x1d\x3a\xe3\xd8\x92\x1f\x63\x4b\xeb\x60\xb1\xad\x89\x94\x1b\x9e\xf0\xcd\x85\x3c\xa2\xfd\xd9\x09\xea\x80\x72\xcc\xc7\x13\x6f\xf1\x2b\x62\xe3\x42\x97\xcd\x1a\x39\xf8\x6e\x11\xcc\xf1\x98\xb5\xff\xe2\x1f\xfc\xe3\x29\xaf\x1c\x0a\x30\x30\x16\x9c\xa3\xb4\x59\xe1\x6a\x26\xab\x5d\x2f\xbe\xd8\xee\x67\xf6\xe5\x52\xfc\x3f\x18\xaf\x13\xf8\xec\xfb\xe7\x35\xaf\x53\x25\x23\xf9\x8b\xd3\xca\x0a\xf0\x8c\x22\xfc\x5f\xd5\x24\x5b\xa4\x34\xfc\x0f\xde\xd6\xab\x6b\x92\x5e\x9a\xd8\x1e\xa9\x7e\xba\x12\x5b\xf5\x31\x2c\x2c\x33\x8a\xe8\x35\xbd\xae\x0a\x76\xe7\x82\x9a\x7f\x57\x66\x77\x79\x49\x3e\xb8\xff\xa1\x2c\xf1\x57\x58\xa6\x30\x99\x8e\xd1\x7a\x8e\x65\xe3\x13\x5a\x73\x1d\x03\xd8\x3d\xa7\x1d\xb4\x4c\x3a\x97\xc3\xea\x9e\x59\x3e\x99\x0b\x4b\xa2\xb6\xe6\x45\x0a\x6c\xb2\x14\x25\x96\x9c\xc7\x67\x68\xc9\xd1\x72\x92\xb5\x46\xa6\xb0\xb0\x5b\x4e\x13\x77\x7b\x47\x99\x1c\x71\x36\x8f\x9b\x8a\xcb\x61\xad\x1d\x09\xaf\x3a\x3e\x6e\x62\x94\x85\x69\xbf\x1f\x25\x9a\x70\x84\x59\x85\xa5\xed\x36\x76\x09\x11\xb7\x57\x2c\xfc\xae\xed\x45\x36\x09\x31\x22\xf1\xd4\x30\xef\xf9\x78\xdd\x77\xff\x57\x07\x36\x79\xaa\xca\xfd\x39\x7f\xc1\xc3\xc5\x02\xfe\x97\x94\xef\x3b\x2c\x8f\xc3\x1f\x1c\x78\x92\x72\x69\xfc\xc3\x76\x34\x69\x39\x83\x09\x94\x12\xf8\xef\x68\x95\xdb\xdf\x1a\xfb\x6e\xda\x85\x16\xdc\x37\x64\xaf\xf5\x98\xeb\x19\x4a\xd8\xb1\x2b\xfd\x50\xa1\xc0\x76\x51\x9d\x93\x55\x27\xa0\xdc\x87\x85\x81\x00\x03\xcf\xf3\x8b\xfe\x1b\x5a\x9a\x51\xd0\x38\xe1\x96\x1c\xd8\xe1\x73\x32\x80\xcb\xfc\x21\x3d\x78\x97\x3e\xf9\x3e\xef\x99\x46\xef\x72\x53\x14\xd6\x33\xeb\x51\x6f\x3f\x3e\x56\x44\x6a\xad\x79\x3e\x48\xb3\x24\x57\x18\x42\x80\x0c\x04\x19\x23\x38\xeb\x34\x7b\x44\x55\x49\x38\x31\x13\xd2\xa7\xb7\x17\x02\xec\x4b\x64\xa0\xe8\x42\x5d\xd3\x72\xef\x5e\xce\x5a\xbf\xd8\xf1\x14\xcf\x0d\xc5\xc8\xd2\x4e\xbb\x30\x9e\x20\x29\x50\x45\xa8\x10\x3d\x69\xf6\xbc\x97\x9a\x7f\xf5\x9b\x68\xe0\xa2\xba\x8e\xeb\x3a\x81\xa1\x21\xc0\x5c\x17\x93\xdb\x70\xa0\x68\xaf\xa7\x34\xae\xfc\x94\xc2\xde\x0e\x73\x2c\x77\xa8\x21\xdc\x52\x96\x08\xb7\x54\x5e\x34\x2a\xe3\xb8\x4a\x62\x30\x4d\xa4\x95\xa5\xea\x25\x93\x69\xeb\xe2\x9e\x76\x4e\xe4\xe7\xac\x4e\xc6\xf6\x92\x51\x6f\x38\x64\x76\x1e\xc5\xcb\x6b\x53\xbe\xf8\xc0\xaa\x85\xce\x8d\xc1\xe5\x4d\x97\x83\xad\x81\xed\x81\x17\xda\x99\x1d\x59\x53\xd8\x1e\x53\xb0\x9c\x20\xa2\xf3\xdc\xba\xa3\xee\x37\x8d\xe2\x9d\x0e\xdc\xf3\x77\x9e\xea\x68\x5d\x6f\x1a\x12\x52\x0d\xa7\x41\x25\x94\x00\x65\x87\xb5\x63\x5d\x15\x47\xe1\xb3\x80\xfc\x61\x66\x7d\x42\x91\xa7\x0a\x3b\x06\x69\x19\xf7\x5a\xad\x6f\x38\x0b\x14\x5e\xdd\x04\x03\xa0\x25\x58\xf2\xa8\x67\x93\x82\x68\x1c\x07\x7d\xc7\xd2\x03\x5d\xfc\x86\xdd\x4f\x93\xd0\xf9\x1e\xe3\xd9\x9c\x47\xb1\x9b\x4f\x26\x42\xa0\xb9\xb9\xc5\xb6\x1d\x8e\x06\x26\x8f\x10\xd9\x34\x49\xf4\x7b\x78\x53\x9e\x96\x59\x68\x81\x5c\x66\x01\x3b\xe5\x58\xf2\x6f\xb1\x5e\xe3\x05\x5d\x6d\x32\x03\xc8\x47\xd6\xf6\x72\xda\xe2\x30\x42\x4e\xea\x72\xec\x06\x8d\x33\x81\xeb\xf9\xb7\xd3\xef\xe7\xbb\x3d\x19\x62\x37\x74\x75\x91\xd4\xb2\x0e\x9b\x72\x64\x5b\xf0\xed\xe6\xf9\x79\x54\xee\x37\xbe\x80\xad\x4b\xdc\xc4\x48\x39\xdb\x49\x14\x54\xbf\x4f\xc9\xf9\x6b\xff\xff\x8e\x72\x58\x39\x4b\x33\x5b\xb4\x32\xf0\x76\x64\xe0\x4c\xe6\xcb\xdf\x6a\xf7\x9d\xdc\xc6\xbc\xc8\x40\x07\xee\x0a\x5e\x3d\xdd\x00\x2c\x9b\x6d\x67\xb6\x57\x7a\xa6\x09\x5b\x06\xd0\x03\x15\xfb\x80\xcf\x7a\xc5\xfe\xb4\x4c\x7a\x5c\x62\xa9\x56\x7a\x6d\x8e\x2b\x46\xb4\xbf\x34\x39\x0d\xa8\x8e\x96\x17\x26\xe9\xfd\xd3\x7f\x48\x09\x46\xcb\xf7\x6a\x4e\x53\x18\x2f\xb9\x8a\x7f\xde\x83\xa8\xf8\x8c\x82\x69\x7c\x06\x10\x02\x44\x69\xf7\xb5\x74\xe8\x35\x05\xe6\x1a\x2b\x7f\xc8\x5b\x50\x4e\x46\x8d\xe5\x87\x34\xe7\xa4\x85\x52\x45\x41\x2c\xdc\x40\x0f\x18\xa4\xa2\x0d\x46\xda\x28\x3f\xea\x05\x27\xcb\x4a\xaf\x0b\x5f\x5c\x25\x61\x8b\x7b\x9c\x7e\xba\x2a\xde\x3c\xd5\xd1\xfa\xa9\x92\xd3\xa2\xde\x8b\x49\xc5\x54\x23\x51\xfa\xa1\xcf\xe2\x8b\xae\x28\xc6\x07\xef\x30\xfc\x0f\x81\x76\x5d\xca\xb2\x28\x5c\x6e\xf9\x88\xfc\x88\xde\x08\x8e\xe8\x3f\xb5\x99\xec\x40\xf3\x9b\x1b\xd5\x33\xda\xdc\x50\x3d\x78\x6d\x42\x5c\x3d\x02\x69\x58\x6a\x69\xa8\x89\x7e\x41\xb5\x6a\xf4\x32\xd3\x67\xa2\xce\x02\xb7\x5a\x3f\x18\x2b\x99\xc0\x0f\x82\x67\xea\x4d\x99\x6f\xcc\xb6\xf7\xce\xb6\xb4\xba\x97\x27\xba\x4d\xe6\xf5\xfb\xe6\xc9\x2a\x38\x33\x90\x86\xe2\x3a\xf6\xd8\x13\xb8\xcf\x4e\xac\xb3\x07\xf7\x2c\x50\x83\xc2\x71\x2f\xe7\x65\x93\x0c\x3c\xfb\xb9\xe6\x5d\x93\x45\xb6\xaf\x99\x0b\x68\xdc\x60\xca\x62\xfe\x8b\x92\xf6\x13\xb5\x16\xda\x92\x7d\xd4\x17\x68\x2f\x2a\x8d\xb7\x4d\xd0\x43\xa5\x30\x50\xdd\xac\x68\x8f\xd2\xcf\x88\xf4\xb9\x47\xe4\xfe\x28\xa8\xb6\x63\x51\x42\x54\x64\x8b\x0d\x0a\xa1\x10\x25\x5c\x0e\x94\x20\xc7\x29\xb5\xe9\x85\x69\xd2\xf7\x65\x69\x84\x25\xb7\x94\x37\xdf\xad\x26\x41\xd7\x70\x10\x85\xcb\x36\x61\xce\x86\xf3\xec\x72\x36\xaf\xc0\xba\x61\x24\x1f\x1b\x6f\xe9\xdd\xce\xcd\xed\x6f\x1f\xdc\xa3\xc8\xca\xa7\x15\x59\xf9\xb4\x22\xe9\xf4\xa2\x3c\xcc\xec\xc8\x54\x9b\x40\x8e\xe6\x00\x0a\x08\x33\x14\x02\x22\x9c\x3b\xac\x74\x80\x67\x28\xd8\xe6\xff\xff\x50\xb9\xc4\x51\x66\x0b\xcb\xc2\x64\xb2\xd2\xd4\x84\xb9\x1e\x73\xe5\xcf\x5e\x64\x68\x6f\x90\xb8\x9e\xfe\x0c\x2b\xf5\x2d\xde\xe1\x90\xf5\x1f\xf6\x69\x7b\x5a\x28\xbd\x7f\x16\xd1\xa1\x47\x23\x82\x3a\x4a\x37\x26\x25\x9b\x3b\x05\xbd\xa3\x9b\x11\x18\x9e\x8f\xde\x7b\x26\x62\xdf\x4d\x44\xca\x57\xc7\x75\xed\x69\x37\x7a\xfe\x26\xd0\x82\x5d\xd9\x4a\x9a\xe1\x3a\xd0\x43\xbb\x31\xf6\xc8\xa2\x1b\x2e\x88\xea\x5a\x53\xec\xf4\x46\xb5\x3f\xa6\x6b\xc0\x3a\x06\x0e\x0a\xaa\x1c\xbb\xd7\x95\xf0\x3f\x5b\x85\xa0\x24\x7d\x97\x42\x0a\x01\x95\x57\xaf\x00\x9f\xf8\x44\xe7\x1f\x26\x59\x4b\x39\xa1\xc5\x78\xbe\xa6\x85\x75\xaf\x05\xbb\xf9\x6d\xb5\x17\x16\x17\xfe\xae\x52\x5c\x78\x17\x16\x72\xd2\x5d\xa6\xdd\x1f\x4b\xfc\x3d\xd4\x4d\xa8\xc6\x38\xf3\x05\xea\x21\x0a\x6d\x43\xcd\xdc\xa7\xa0\x38\x21\x02\xc2\x54\xdb\x64\x0c\x2a\xde\x3a\x90\x07\x53\xeb\xd5\x4a\x8e\x08\xe1\xfe\xd8\x25\x54\xff\xf5\xdf\x81\x9f\x2d\xd2\x8d\x1d\xeb\x4a\x23\xe6\x0b\xeb\x5e\x04\xe1\x14\x6f\xa8\xd2\xaa\x6f\x1d\x5a\xe0\xd2\xd8\x35\x84\x58\xb8\xb0\x47\x3b\xd5\xb8\xc5\x5b\x7b\x82\xda\x53\x42\xe1\x55\x1b\xfd\x2f\x74\x28\xc5\x70\xb8\x69\xb7\xee\xdc\x1c\x7b\x35\xdf\xf3\x41\x15\x6b\x61\x13\x01\x6e\xc9\x59\x07\xb9\x4a\xf4\x35\xec\x5a\x18\xbb\x3f\x81\xe1\x11\x16\x86\xcb\xc1\x63\x6e\x94\x24\xe9\x73\x2d\x0f\x99\x07\x32\x50\x92\xcc\xad\x33\xff\xcb\xd5\x6a\xd1\x2b\x43\xc7\xae\xc4\x54\xe3\x17\xc1\x27\x0f\x35\x8d\x2c\x93\x28\x4b\xd7\x4c\xdc\x52\xef\x1d\xe4\x55\x3e\xae\x55\xfd\x42\xdb\x7b\xa6\xba\x17\x16\xab\xa2\xec\x0a\x39\xc2\x11\xdc\x17\xba\x42\x27\xb0\x5c\x62\x5a\x4c\xb1\xc6\x31\xf2\xe2\xbf\x08\xbc\xc7\xf5\xff\x35\xf6\xdc\xf9\x77\x30\x88\x20\xb7\xf8\x01\x06\x01\xda\x4d\xff\x49\x65\x7d\xe7\x90\xe9\xc9\x4e\xe1\xf3\xa8\x93\xe3\xea\xed\x62\xb5\xba\xad\x73\x97\x5b\x34\xf4\x91\x51\x3f\x89\x18\xc3\x39\x67\x55\xc3\x86\x4f\x10\xe1\x49\x45\x85\x5e\xbc\xe8\x34\xf8\xa6\x5b\x38\x30\x11\x73\x6b\x1d\xed\x7c\x9f\x00\x57\x4e\x4f\x3c\xe2\x85\xc5\x85\xea\xf1\x92\xb0\x98\x2b\x85\x89\x25\x56\xf5\x41\xf1\xca\x52\xc8\xfe\x68\x69\x50\x88\x76\x20\x9e\x25\xcc\x8d\xa5\x97\xe7\xdd\x69\xce\xea\x5c\x2e\x5b\x2a\x59\x9b\x08\x1d\xac\xab\x8a\xce\x71\xb5\x51\x4e\x4a\xf3\xc0\xb0\x57\xbf\xa7\xf6\xed\x7a\x3f\x2b\x0a\xd3\x47\x3d\x89\x98\x5b\xfb\xd8\x0b\xaf\x06\x6a\xdc\x1c\xe1\x09\x87\x99\xb1\xe9\x63\xe3\x57\xdf\xa1\xdd\x50\x00\x60\xf4\x0e\x9d\xc9\x85\x2b\xdc\x7f\x1c\x78\xf4\x0a\xb8\xfa\x42\x74\xf5\x5b\x3b\xaf\xfe\x8b\xe2\xca\xf5\xaf\x94\x3a\xe8\xc9\x40\x85\x5b\xa7\xbc\x50\x52\x91\x39\x71\x5a\x7d\x65\x18\x9d\x3b\x3b\x9a\x52\xe5\xeb\x4d\x7d\x6b\xe3\x1a\xe1\xfc\x43\x45\x38\xff\x70\x5c\xf3\x3c\x67\x5c\x9a\x34\x0f\x3d\x9f\xb4\xb5\x4e\x93\x02\xff\xf0\xf1\x58\xa9\xf6\x5e\x51\x86\xc2\xad\xce\xd6\x29\xbd\xb8\xa7\x9d\x76\xf3\x34\xb6\x85\x55\x19\xf2\x05\x54\x4f\x84\x08\xad\xdf\x50\xba\xd6\x53\x4c\xee\x73\x3a\xe3\x3e\x17\x6c\xd9\xe9\x17\xf7\x2c\xb6\xf7\xcd\x4f\x7b\xb8\xcc\x0d\x5c\x98\xd3\xaf\x71\xf9\x3d\xb6\x10\xc6\x7d\x4e\x84\x65\xf0\xbc\x2e\x06\xab\x83\x88\x3b\x91\xcc\xca\x0d\x3c\xa9\xff\xdc\x44\x46\x02\xea\x7b\x95\x92\xd4\x8d\x74\x8e\x2b\x23\x9d\xe3\x0f\xa5\x6b\xc5\x76\xc5\x66\x66\xa9\xae\x46\x8f\xae\x1e\x1f\x07\x0d\xb6\x62\xd1\xca\x5a\xab\x5e\xd7\xa3\xe7\x23\x70\xae\xa7\x1d\x63\x2f\x1d\xd9\x8c\x54\xd1\x19\x45\xef\x60\xae\x5e\x20\x43\xc1\x80\xb9\xb0\x21\xf8\x57\x0f\x6b\x0c\xd3\x11\x94\x23\x3d\xc6\xfe\x5d\xa5\x6f\xf8\x6e\x0d\xe2\x55\x98\x2e\x47\x11\x18\xed\x47\x50\xa7\x10\x1c\xbd\x36\x93\xfe\xac\x72\x3d\x2b\xb3\xc4\xc4\x51\x5e\xe4\x33\x35\x75\x14\xda\x4f\x34\xd5\xd0\xf5\xda\x16\x85\x1c\xf3\xef\x68\x20\x8b\xaa\xa3\x07\x63\xd9\x3c\x47\x85\xd0\x41\x3c\x2e\x6a\x96\xc0\xc5\x89\x01\x70\x88\xec\xb3\x5e\x29\xcc\x28\xcd\xad\x62\x10\xfe\x68\xac\xe0\x1a\x3f\x9a\x00\xa2\xc8\xbb\x0c\x5b\x35\xe9\x56\x45\x65\x6e\x32\x88\xde\xf2\xe6\xd1\xfd\xc1\x9b\xe1\x63\x57\xa0\x58\x8a\xba\xdd\xd4\x69\x49\x3b\x46\xed\xbc\xf3\x1f\x3e\xa9\x88\x6a\xd1\x08\x48\x6b\x2d\x13\x29\x85\x61\x89\x1e\x87\x26\xcf\x4d\x98\xb1\xfd\x92\xee\x4d\xa3\xb5\x07\x1d\x02\xe4\xb1\xe7\x9a\xd4\x0f\x86\x69\xaf\x1a\x58\x56\x89\xf4\x7e\x1a\x78\x18\xe9\xa7\x6a\x39\xc9\xcb\x70\xf0\xd9\x2a\x8c\x90\x22\xbc\xe7\x39\x5f\xa3\x6a\x36\x36\xc5\x47\x28\x32\x92\x82\x0b\xad\x6d\x08\x6d\xbe\xd0\x51\xfe\xe6\x47\x68\xf3\xc3\x04\xde\xa4\x20\x04\x11\x24\x2b\x43\x62\x17\x67\x8c\xac\xfb\x97\x43\xce\x11\x65\x93\x8c\xe4\x75\x0c\x82\xdc\x86\x69\x4c\x32\x7f\xe8\xa9\x60\x53\xba\x5c\x4b\xb7\xab\x31\x87\xe0\x8b\x1d\xa2\x84\x21\xac\xea\x17\xf7\x02\x55\x43\xfc\x74\x72\xb9\x78\x61\x7f\x3b\xcc\xac\xb7\x2a\x40\xac\x74\x38\xf0\x45\xef\xc3\x4a\x48\x8e\x16\x16\x2e\x5f\x68\xdd\x3d\x2f\x92\xa7\x5b\x6d\x83\x34\x5c\xe6\x6c\x49\x20\x6c\x9e\x6d\x72\x83\x7e\x02\x65\x9a\xa3\x93\xc6\x3c\x8b\x0b\xed\x61\xb5\x59\x1b\x62\xb7\xa2\xd5\x76\x07\x21\x97\xe3\x01\x54\xcf\x05\x81\xec\x89\xba\x2e\x72\xba\x34\xe5\x11\x9f\x85\x72\x4f\x3c\xaf\xdb\xa8\x5a\x9d\xf5\xe5\x32\x0a\x97\xe3\xb5\x47\xaa\x47\x8a\xaf\xe4\x1a\x09\x56\xea\x07\x9c\xf7\xb8\x7a\xcd\xa2\xd7\x78\xaf\x7e\x89\x4d\xbb\x02\xdf\x58\xfb\x18\x6f\x1d\x29\xda\x8f\xf0\xb3\x78\x08\x87\x15\xb3\x69\x94\xd9\x95\x28\x2d\xf3\xc7\x14\xf7\x11\x6b\x09\x2e\xe2\x67\x63\xdf\x10\xfc\x36\xbe\xd1\x29\x66\xec\xdd\xcb\x83\xe2\x28\x8d\x42\x71\xfd\xa3\x5f\x12\x41\x39\x1a\x15\xf8\xda\x8f\x34\x0b\x04\x9a\x44\xce\xed\xd6\x4b\x6a\x7c\x14\x28\x95\x98\xcb\x4d\xb6\x52\xb1\x8c\x14\x44\x57\x37\xe9\x9e\xf9\x58\xf9\xd6\xa6\xb6\xec\x53\x51\x7e\x73\x63\xdc\xfa\xda\xa1\xcd\x0d\xc5\x88\x80\x41\x3f\x55\x4e\x9c\xd7\x11\x16\x7e\x3e\xae\x77\xc2\xd3\xde\x0e\xef\xcd\x7b\x53\x19\xd1\x71\x99\x07\x27\x7c\xe7\x08\x75\x7e\x3c\xf6\xb1\xe0\x69\xf5\x78\xb6\x77\x7c\xb4\x69\x86\xa6\xcc\xd6\xa6\x5b\x5f\x3b\xe4\xcc\x50\x94\x37\x26\x3c\xfe\x30\x37\x37\x03\x85\x36\xd2\xa2\x07\xe2\xdd\xc1\x81\x0c\x33\x06\x02\xef\x0e\xf8\x76\x23\xee\x35\xb6\x7d\x68\xae\xc8\x4f\xd1\x95\x63\x2a\x4c\x77\x54\x29\x45\xfd\x54\x8f\x34\x27\x6c\x86\xb2\x2d\x62\xfd\x9b\x8a\xe1\xf8\x1a\xad\x0c\x58\x57\xae\x37\xd9\x69\xf5\x4b\x1b\x73\x3f\x45\xfc\x06\x6b\x0d\xfc\xad\x85\x83\xd9\x03\xed\x5e\x94\xe7\xa6\x88\xf2\x7e\x04\x37\xe9\x2d\x4c\x60\x07\xc8\x70\xa0\xdd\x4d\x8f\xc3\x2e\xbb\x43\x93\x45\x89\x55\xfe\x52\xe7\x14\x84\xf8\x9c\xb6\x70\x89\xd3\xdc\xf6\x1e\xc5\x0c\x13\x54\x83\xef\x74\x6e\x62\xd6\x4b\xa5\x89\x06\x2b\x7e\xfa\xc4\x58\xd7\x50\xe9\x02\x21\xdb\xf3\x01\x2e\x90\x3f\xa2\xc4\xf8\xb0\xac\xf3\x7c\x0a\x94\x96\xea\x54\xc7\xeb\x9f\xf3\xbd\xb2\x76\x07\xb9\xe5\xe0\x13\xa7\x02\xda\x51\xf1\x1b\xaf\xb9\xed\x6b\x94\x99\x28\x77\xc5\x0f\xae\x02\xa8\x1a\xc2\x27\x63\x2f\x16\xb8\x62\xf3\x62\x68\x93\x82\x03\x20\xe7\x0c\x22\xaa\xa7\xc7\x9f\x26\xa2\x2e\x5d\xd4\xd1\x67\x3a\x4a\x20\xfa\x64\x93\x7b\x7d\x34\x1c\x99\x90\xa5\xa4\xf4\x86\x26\x28\x23\x1f\x6f\x27\x26\x09\xd7\xa6\x69\x98\x02\xab\x84\x2e\x0a\x1b\x2b\x07\xbe\xca\xf2\xce\xd8\x23\x78\xef\x34\x88\x52\xef\x6f\xf7\x6c\x16\xad\x48\x6f\x4e\x30\xd8\x1a\x90\xad\xa0\x3c\xb9\x61\x3c\x24\xae\xe8\x8e\xc2\x3d\xdd\x71\x1d\xec\x3c\xed\x17\x36\x71\x49\x04\xc6\xd2\x5f\x2a\xeb\xfa\x37\xd5\x40\xff\x60\xec\xe3\x49\xe7\x01\x39\xa3\x91\xcd\x58\xdc\xb0\x43\x9f\x50\xcc\x98\x0d\x1d\x96\xc2\x42\x0d\xb3\x54\x23\xb0\xc8\xeb\x29\x1a\x99\x78\x4a\x21\x77\xd7\x69\x72\xb1\x95\x52\xe0\xd3\xc0\xd3\x4a\x64\x30\x2f\x4c\x61\xab\x57\x9b\x6b\xec\xd6\x4d\x8d\xdd\xba\x59\xdb\x49\x49\x94\x3f\xcd\xf2\x1d\x9e\x90\x7e\x26\x50\x30\x80\x13\xaa\x2a\xf1\xc7\x63\x4f\xc1\xbb\xa8\x51\xb1\x5a\x0f\xf8\xa6\x7a\xee\x3d\x0a\x19\x9d\xca\xdb\x45\x2c\x8e\x02\x0e\x78\x46\xc1\x17\x93\x90\x18\x0b\x0c\xf9\x14\x5b\x49\xa5\x1c\x71\xc6\x0d\xf4\x6e\x66\xcd\xb2\x7b\x4d\x22\x5a\xd3\x52\x76\xca\x3e\x2b\xf6\x70\xe1\x32\x59\x4e\x9c\x19\xb8\x5c\x81\xbe\x34\xb5\x1d\x9a\xac\xa8\xd6\xb8\x1d\x5e\x6d\x0e\xe3\x59\x54\x66\xfd\x52\xf3\xd6\x58\x09\xe6\xb2\xf3\xb1\x63\x12\x2e\x3a\x8c\x85\x2a\xe8\x17\x03\x9b\x99\xd1\x9a\xa2\x70\x5c\x52\x14\x8e\x4b\x0d\xe0\xdc\xb6\x41\xb0\x83\x5a\xbd\x30\xe1\x14\x09\xd9\x3d\x99\x1a\x59\x03\xf3\x15\xbd\x4d\x2c\x98\x48\xfa\xf0\x8e\xaf\x69\x69\xc6\x1f\xb9\x39\xd0\x8f\xb2\xbc\x18\x98\xa4\x37\xe3\x19\x14\x0c\xa1\x74\x01\xb1\x43\x4d\x5f\x56\xaa\xcb\xe7\x95\x5e\xd2\x7d\x35\xe1\x7b\xe9\xd2\xd0\x4c\xf9\xca\xea\x66\xe0\x5b\x3b\xaf\xe1\xfd\xe2\x0b\x1e\x5e\xbb\x1a\xd9\x24\x79\x35\x8d\x62\x5a\xc3\x31\xb7\xee\x69\x68\xdf\xbd\x06\x8e\x70\x3b\x1c\x58\x94\x82\x55\xf5\x37\xd0\x65\xe1\xda\xe6\xbe\x12\x25\x98\x68\xb2\xf8\x3c\xdc\x08\xbe\x41\x0c\x68\x35\xcd\xe2\x9e\xda\x10\x2f\x2a\x56\x15\x63\xe6\x85\x33\xfb\x94\x72\xde\x8f\xe3\x2a\x82\x9d\xae\x63\x9c\xfd\x03\x0d\x14\xea\x17\x41\xa6\x80\x9f\x1b\xc4\x1b\x7b\x04\x0a\x9d\xf6\x4a\xe3\x0c\x4a\x94\x14\xd6\x03\x62\xaf\x53\x5c\x87\x25\xf2\x4d\x4d\x66\x0b\x09\xed\x60\x7b\xd3\xbe\x09\x0b\x37\x17\x47\xee\x71\xd2\x16\x67\xb4\xd2\xde\x95\x26\x0e\x82\xe9\xad\x38\x69\x0c\x06\x43\xd2\xe7\x05\x18\xd9\xb0\x89\xe4\x45\x99\xf5\xd6\x34\xe9\x85\xae\x5a\x08\x30\x5b\x53\x86\x03\x2f\xb4\x57\xd2\xb8\x4c\x0a\x6b\x33\x9a\x4c\x98\x9c\x3f\x51\x38\xa7\x9f\xb8\xc6\x40\xd7\x9a\x22\x8b\x58\x64\x07\xc5\xf2\x56\xc7\xc3\x2e\x3f\xc6\x4b\xe2\x26\xd0\x84\xd0\x07\xe5\xa5\x06\x4d\x0b\x81\x64\xb4\xbc\x4b\x97\x7a\xa9\x45\x3a\x24\x42\x3d\x38\xcc\xe8\x6a\x6f\x22\xd3\x67\x67\xbc\xa0\x16\x82\x57\x8f\xd7\xc5\xe6\x55\x44\x81\x94\x60\x5d\x59\xbd\x9f\x52\x52\x54\x47\xb5\x15\x97\xc8\xe9\x2b\xea\xdd\xb7\xb1\x70\x4b\x21\xe1\x61\x13\xca\x65\x5a\x74\xd7\xae\xc5\xed\x02\xbe\xb3\x0d\x30\xbf\x76\x61\x5e\x91\xac\x1c\x20\x45\xe0\x56\xf9\x58\x75\x1b\x46\x59\xda\x7f\x8e\xb3\x72\xe1\xa8\xd1\x0f\x49\x1b\x41\xf9\xa7\x9b\x3c\x2c\xe3\x2a\x3c\x53\xab\x3e\x9e\xad\xd0\xbd\x3c\x34\x2f\x4f\x87\x96\xdc\x37\x76\x7a\xb8\x39\x07\x8f\x68\xf3\x4d\xb3\xf2\x35\x5e\xcb\x07\x58\x99\x59\xba\x8a\xae\x15\xff\x00\x29\x71\x91\xb4\xaa\x52\x5f\x89\x3d\xa5\x94\xd8\x27\x03\x29\x94\x01\xb0\x20\xfc\x58\x43\x0b\xe0\xb1\x20\xa4\xc9\xad\x6b\xcf\xde\xd9\x76\x3f\xea\x59\x42\x4f\xfb\xfc\xe4\xfc\x58\xe9\xa2\x9c\x0f\xfc\xd3\xea\xc6\xd5\xa6\xe4\x91\x8b\xf0\x8f\x94\x8d\xe1\x09\x5f\xdc\x4c\x93\xa5\x78\x6d\x7a\xc2\xc5\xd6\xa1\xe1\x16\xf7\xf0\xe4\xc4\xc0\x96\xbe\x65\xc3\xdc\x8c\x92\xbe\x80\x54\x05\x97\xee\xe3\x9a\x49\xcf\xb9\x83\x7b\x66\x69\x99\x24\x50\x9c\xee\x54\xbe\xa1\xc0\x54\x6f\x68\x2e\x42\x9a\x92\x7d\xb6\x47\xec\x42\xf8\x4d\x28\xb1\x0f\x63\x84\xc7\x66\x95\xe6\x27\x16\x30\x88\x60\x61\x07\x3a\xaa\x2d\x4a\x4e\xaa\x3a\x71\xb5\xca\x8f\x68\x5e\x0a\x67\x85\xde\x13\x9f\x04\xcf\x78\x86\x52\x3a\x1c\x99\x64\x8d\xac\x60\x95\xab\xae\x4f\x6b\x99\x78\x20\xa5\x84\xad\xab\xcd\xbe\xf9\xf6\xd0\x84\x83\x28\xb1\xec\xbb\x87\x85\xec\x88\xae\xb0\x1c\x69\xd0\x61\x6e\x0f\xd3\x57\xa2\xbf\x65\x78\xd7\x54\x18\xfb\xb0\x1f\x22\x6d\x17\xac\x45\x1f\xd2\x0a\xc1\xfa\xd3\x41\x4b\x6b\x51\x57\x6b\x0a\x72\xb5\x77\x51\xa7\xe1\x13\x85\x7f\xfc\x50\x05\x94\x26\x8e\xcb\x1c\x15\x13\x57\x08\x3f\xa6\x74\xfa\x8f\xa9\xb2\xa3\xd2\xed\xa6\x10\x88\x4d\xe1\x02\x1f\x3d\xdc\x1f\x2b\x53\xfa\x33\x58\xd3\x9c\x6b\xb5\xa3\x1d\x7d\x82\x6d\x42\x2a\x11\x9f\x71\x75\xb6\xac\x88\x92\xa8\xa5\xfe\xf1\x3b\x0a\x0b\xfc\x1d\xcd\x92\x20\x66\x5e\x35\xf3\x51\xbe\xc3\x0c\xbe\x85\x1b\xe6\x93\xb1\x76\xcc\x19\x44\xdd\xa8\x98\xf1\x9c\xe3\xb7\xc7\xca\x92\x93\x13\x46\x6c\xd2\x57\x55\x3d\x86\x45\x69\xc5\xdb\xf1\x09\x87\xd5\x2b\x06\x69\x2f\x7d\x85\xb6\x55\xf1\x3f\xf6\x0d\xda\xa9\x4e\x4b\x79\x6e\x54\x09\x3c\x96\xf5\xe3\xb5\xd0\x62\x75\xb0\xb6\xbb\x8e\xc7\xa2\x2b\x12\x29\x21\xda\xa5\x01\x53\x6a\xa1\xf9\x58\x93\x6e\x11\x4e\x79\xeb\x1b\xb3\x5c\x00\xbd\x12\xf8\xde\xf9\x15\xe5\x0d\x02\x05\x63\x96\x0f\x19\xfb\xdc\x1f\xdc\x4d\xe9\xab\x35\xb9\xe4\x47\x49\x2f\xf2\x6d\x45\xc9\xa4\xaa\xfb\x94\x44\x6a\xc2\xa8\x7e\x71\x4f\x7b\x60\xe2\x7e\x8b\xfa\x1e\xe8\xb6\x9c\x45\x85\x8f\x4f\x54\x09\xa6\xb0\xbd\x6a\x5b\x7f\xf6\x59\x4e\xaa\x6f\xc1\xf0\x8c\x4f\x1a\xf5\xe4\x8a\x55\xd9\xab\xc5\xbe\xbc\xe5\xfc\xc5\x4e\x2b\x31\x87\xbb\x4a\xa4\x38\x4a\x0a\x1b\xc7\x36\x2c\x4a\x13\x03\x15\x26\xc2\x30\xd5\xf3\x42\x86\x0b\x6c\x85\x6c\x1d\x1e\x45\x63\x46\x23\x6b\xe0\x3f\x84\x55\xdf\x51\x5d\xb5\x2c\xa6\x67\x3b\x5c\x50\xe4\xe6\xd8\x9a\xa5\x92\x81\x04\x6c\x9a\x40\x57\x2b\x06\x0a\x5b\x0b\x1a\x0b\x2f\xec\x6f\x8f\x48\x63\x2d\x4b\xa3\x65\x83\x24\x5f\xcc\x7f\x7c\x59\xfa\x0a\xd1\xcf\x45\xd4\x44\x0f\xa8\xbe\x31\x8f\x78\x7e\xc5\xb6\x4e\xcd\xf5\xa9\x7a\xd7\xf8\xd0\x55\xa5\xe0\x71\x27\xa8\x95\x79\xaa\x97\xe6\x6c\xa2\xaa\x77\x21\x85\x48\x7a\x83\x02\x90\xf4\xdb\x34\xe9\xd3\x42\xfa\x58\x71\x97\xc7\xba\x5f\xfb\xb0\x50\xc3\x0e\x47\x71\xba\x66\xf1\x32\xd9\x67\x4c\xa1\xfc\x8e\x63\x94\x03\xeb\xfd\x81\xa6\xc9\x11\x6c\x55\x76\x11\xb4\x8b\x8f\xd0\x2e\xc2\xc7\x13\xa5\xda\xd9\x03\xed\x22\x2d\x33\xf2\x53\x9b\x9f\xf7\x01\xb5\xf3\xa7\x24\x6f\x39\x7c\x79\x2e\xee\x02\xe2\x81\xac\xf0\x39\xc7\x9a\xc2\xd9\xbe\x77\x61\x41\x50\x07\x77\x06\x3e\xd6\xd4\xcb\xd4\x64\x3d\x14\xc7\x00\x39\x03\xa6\xd1\xe1\x80\xbc\xc8\xd2\xf6\xf5\xa7\x14\xb3\xdc\x24\xf0\x44\x5b\xdc\xe3\xbc\x20\x5b\xce\xd2\xe3\xbc\x6b\x72\xf6\x2c\xd5\x2b\x55\x29\xfe\xa2\xf6\xa8\xbd\xe8\xf9\x3f\x71\x98\x0e\xd2\x78\xc6\x2b\x59\x9f\xd2\x8a\x1e\xd7\xf0\x29\x44\xc2\x3f\x55\x2c\xbf\x4d\x25\x3d\xb9\xcd\x2d\x84\xa3\x32\x1f\xa4\x2b\x8c\xb3\x45\xfe\x84\x34\x82\x8f\x55\xa7\x2b\x2f\xf3\xc2\x44\xec\x32\x8a\x5d\xee\x08\x6e\x5b\xef\x4f\xfc\x0f\x63\x3f\xc5\xdf\x55\xe2\x59\xa3\xc8\x66\x99\xd5\x12\x76\xbc\x68\x8a\x6f\xc8\x84\xa3\xca\xde\xf6\xa8\x2c\xa8\x82\x81\x49\xcf\xcd\x0e\xc4\x01\xbf\x89\x65\x1f\x2f\x6b\x46\x4b\x38\x71\xaf\xd6\x29\x86\x3b\xf8\xf5\x47\x0e\x38\xdc\x4d\x13\xc6\xa8\x0a\x86\x8d\x3e\x82\xc7\x78\x57\xd5\xc8\x2f\x28\xe3\xfd\xe7\xfe\xd1\x3f\xfe\x55\x54\x27\x1c\x5f\xd1\x65\xeb\xd7\x55\xd8\xfc\x61\xbd\xbb\xfb\x52\x4a\x0f\x18\xa1\x1b\xaa\x71\x7c\xac\x60\xe6\xcb\x99\x4d\x5e\xd5\xdc\xde\xba\x50\xdc\x33\x0a\x64\x98\x2f\xdb\xa2\x6b\xe2\x18\x7e\x57\x28\x8e\x20\x0d\xe3\x63\xba\x14\xa6\x11\xd0\x7a\x23\x94\x02\xbf\x7a\x2f\x99\x28\xc9\x1f\xa7\x67\x26\x90\x32\x85\x3e\x01\xd6\x0c\xe6\x15\x50\x90\xc0\x4d\x9e\xd5\xee\x34\xe7\xc6\x35\x1a\x8b\x0f\x9e\x02\xef\x44\xf4\x11\x7a\x04\x08\x26\x67\x3a\x4a\x1d\xed\xfa\x58\x89\x9b\x6d\xe7\x10\x1f\x51\xf9\xc7\x63\xd5\xed\xbf\xe8\x1a\x83\x66\x34\x32\x99\xe1\x72\x24\x7e\xf6\x9d\xb1\x1f\xb9\xef\xb8\x4e\xb0\x1d\x76\x4d\x96\x19\x32\x7c\x52\xea\x61\xa8\xc7\xf0\xb1\xc6\x5a\x0e\x88\x1d\x54\x25\x5d\x14\x16\x49\x44\xa0\xba\xa7\xac\x03\xe0\x20\x88\x4e\x7f\x04\x99\xbd\xd4\xd3\xb5\xc5\xd6\x53\xba\x1f\x61\x61\xd4\xef\x0c\x9a\x8f\x2a\x8e\xfa\x51\x85\x04\x59\x31\x61\x59\x0e\x09\xa2\xe2\xae\x79\x71\x8f\xbb\x66\xb9\x41\x93\x14\xd1\xcb\x25\xab\xe1\x79\xb1\xe6\x8b\xe8\xe5\x09\xc8\xde\x2f\xf4\xfd\x32\x4b\xa2\xa2\xcc\xec\x94\xdf\x60\xb0\x67\xa2\xd8\x8c\xe0\x0e\x31\xc6\x89\x9a\xea\xf2\x70\x18\x15\x85\xb5\xbb\x6a\xe6\x61\x5b\x9f\x11\x36\x52\x26\xf6\x49\x0d\xdf\x27\xd2\xd7\xb4\xe6\xc2\x5b\x81\xc6\xed\x8c\x35\x9f\xfc\xa4\xc2\x10\x9c\x6f\x2c\x0d\x9b\xc4\xc4\x6b\xaf\xda\x96\x26\x29\x23\x35\x16\xc6\xf2\xd3\x1a\x41\x0b\x3b\x7e\x22\x5b\x41\x64\xe0\x4d\x25\x17\x78\xb5\x06\x24\x6f\x14\xa6\x1c\x91\x6b\x98\x76\xce\x50\x2d\x86\x63\x2a\x56\xe8\xda\x78\x29\x2a\x87\x18\x6c\x88\xe4\x3f\xa4\x3f\xe5\x63\x15\xca\x56\xdf\x4a\x0e\x2e\xce\xe0\xe4\x1e\x62\x7e\xbc\x95\x07\xca\x7a\xe1\xaf\x27\xda\xa9\x07\x5e\x10\x15\x36\x36\xf4\xc0\xfe\x73\x55\xeb\x46\x5d\x55\xba\x32\x3d\xdb\x37\x65\x2c\x20\x03\x54\x2a\x6e\x70\xaf\x51\x8c\xeb\xe8\x75\xe0\xf1\x1c\x1e\x7b\x52\xce\x49\x95\xda\x9d\xd4\xce\xe3\x49\x5e\x66\x0c\x56\xc2\xac\x7e\x30\xf6\xc0\xd6\x07\x13\x5a\xf8\xa4\x28\xb5\x64\x93\x28\x2d\xf3\xad\xfc\x61\x05\xa8\x76\xe4\x93\xa8\x67\x15\xeb\x63\xac\x95\x29\xc6\x4d\x2e\x6d\x61\xba\x1a\x73\x70\x87\x7d\xfe\x0e\x06\x98\x58\xbb\xfa\xdc\xea\xac\x82\x07\x0d\xcd\x4b\x69\x06\x57\x7f\xe5\xcf\x28\x65\xd3\x1d\xeb\x5e\x9b\xf9\x3a\x72\x12\xb0\x67\x98\x6c\x86\xbf\xc2\x72\x82\xa8\xfe\x07\x84\x59\x47\x0e\x85\xae\x3d\xb2\x26\xf8\x39\x8a\x78\xa1\xaf\x90\xfe\x96\x5a\x89\x47\xd1\x70\xc4\xd3\x58\xe9\xbb\x7c\xcb\xe9\xbb\x38\x73\x93\xd4\x88\x06\xc2\x2c\x47\x4b\x53\x10\x63\x41\x7e\x03\x95\x0c\x91\xa4\x6a\x20\xc9\xe6\x85\xc9\x00\xed\x77\x66\xe2\xd5\x3c\x92\x46\xf3\xe7\xb7\xe2\x8c\xf6\x13\xda\x07\x18\x61\x2d\xff\x88\x95\x1d\x39\x4a\x4d\x19\x05\x03\xec\xf7\x15\x1c\x22\x4c\x63\x56\xd6\x91\xc5\x5c\x25\x13\x93\x64\xdb\xf9\x79\x67\x12\xc9\xef\x14\xbf\xcb\x61\x0d\xae\xf4\xad\xb1\x0e\x7a\x95\xde\x68\x68\x92\x9e\x89\xb5\xc0\x17\x2a\xfa\x7c\xec\xf7\x11\x40\x51\x1e\xf5\xe5\xa2\xe9\xf5\x9a\x2c\x5c\xf5\x88\x90\x10\x3c\xb2\xee\x05\xf8\x80\x53\xa2\x42\xc2\xd7\xbe\x44\xa0\x68\xe1\x30\x57\xef\x58\xec\x10\x94\xe5\xd8\x03\xad\xce\x71\x14\x7b\x9a\x74\x13\x9f\xd6\xce\x84\x61\x94\x3b\x9d\xf1\x9a\x8b\x1b\xf7\xa1\x95\xdf\xee\x68\x62\x82\x79\x24\x68\x6c\xf3\x5c\x09\xa9\x5f\xa7\x1e\xbe\x50\xd0\x68\x8d\x61\x2d\x5f\xe5\x1d\x77\x82\x06\x2b\x36\x22\xee\x07\x32\x51\x6c\xa2\x5a\x7a\xe0\x05\xf2\x14\x68\x29\x7e\x66\xa0\x8c\x8b\x3f\xf1\xb2\xd5\x51\x6e\x50\xd4\x17\xa9\x02\x85\x71\x3a\xa6\xe2\xc1\xb4\x2c\x7a\x51\x4f\xeb\x2c\xb3\xf0\x28\x9f\x4c\x5c\xc2\xdc\x5c\x7b\x14\x76\xf3\xa9\x6a\xb2\x61\x12\x9e\xd2\x54\x93\x2b\xf8\x34\xc2\x96\x77\x27\x32\x09\xb2\x83\xcf\x56\x5c\xb5\xcb\x75\x9b\xbd\xda\xca\xa5\xc0\x8f\xdd\xbe\xb5\xf9\x63\x4a\xf0\x17\xea\x99\xac\x0b\x34\x56\x50\x54\x68\xa1\x61\x56\xbc\xad\x61\xa9\x08\x90\xd8\xa6\x29\xf0\x51\x2c\xb8\x7e\x28\x57\x3c\x86\xb8\xd5\x79\x39\xed\x13\x19\xf0\xb7\x71\x33\x92\x77\xd3\x15\x23\x7d\xbd\xad\xbc\x65\x4c\x6f\x97\xef\xc1\xfc\x9f\x81\xe2\xff\xfe\x09\x86\x90\x23\xf1\x55\xbf\xc2\x7d\x0f\x5a\xda\xb1\xf3\xdd\x51\x76\x0d\x77\x68\xe0\x8b\xc1\x04\x76\x09\xad\xf0\x26\x37\xe2\x49\x40\x65\x0f\x62\x56\x88\xe8\xb8\x9a\xc7\x27\x3e\x58\x09\x43\x3b\x22\xd9\xdc\x7c\x07\xbe\xd4\x19\x85\x3a\x7a\xf5\xc7\x9a\x8a\x88\xf1\x29\x55\x0e\x25\xc7\xb9\xab\xa3\x8a\xad\xb7\x9b\x04\xf5\x0c\x19\x95\x4e\xf9\xb1\x07\x47\x34\x27\xea\x5b\xfd\x88\xb8\x89\xea\x10\xfd\x59\x3b\x44\x30\x2d\xf8\x78\x2d\x46\x4d\x9f\x12\x0a\x9e\x57\xaf\x7a\x77\xec\x01\xdf\x3d\x53\xe8\x02\xc3\x77\xc6\x8a\x7e\x73\x44\x41\x32\x4f\xb8\xfc\x63\x64\x96\x64\x8d\x43\xc4\xb3\x1d\x38\x78\xe4\xcf\x9f\xa1\x12\x14\x33\xde\xc6\x5b\x05\x31\x0e\x2d\xb4\x8b\x15\xdd\x1f\xc7\x36\x27\x84\xad\x06\xa8\x45\x99\xb0\xb1\xd2\xab\x75\x04\xde\xa7\x0a\x81\xf7\x69\xf0\x98\x1f\x56\x51\x6f\x27\x0d\x7d\x0c\x77\x44\xbc\x18\x57\x53\x1d\x25\x1c\x70\x6e\xec\xd1\xcd\x3f\x08\x3c\x6f\xf2\x07\x74\x41\x18\xc8\x77\xb4\xc6\xf6\xc6\x44\xa4\x35\x7b\xa0\x9d\x56\x21\x91\x9b\x96\x4d\xda\x8c\x4d\x0a\xc7\x76\x35\x2a\xc2\x81\x45\x83\x4e\x81\xb6\x64\xa9\x44\xca\x2b\x4b\x5e\x83\x49\xe4\x92\x4d\x8a\x18\x5e\x7a\xc8\x5b\x7f\x8a\x5e\x8d\xa3\x86\xbb\x89\x75\x5d\x89\x25\x9b\x7e\x66\x22\xf6\xaf\x44\x88\x00\x0e\x1f\x5e\xdc\x1f\xa1\x0a\xe3\x54\x89\xaa\x61\x80\x32\xeb\x91\xb1\xc7\x8c\x7d\x8f\x66\x1d\xff\x51\x93\x3a\x7e\x3f\x36\xab\x1c\x13\x48\x0d\xc7\x13\x81\x26\x19\x9a\xb3\x07\xda\x99\x5d\x31\xc3\x91\xeb\x9e\x6b\x91\x32\xf4\x98\xee\x29\x4e\xcf\x25\xc5\x19\xcc\xec\xcb\x65\x94\x11\xb4\xa0\xe5\x29\x43\xdf\xab\x59\xec\x3f\xa5\x99\xa6\x65\x5c\x88\xa3\x10\xee\xec\x0c\x42\x24\x3e\x99\xe8\x33\x54\x81\x04\xc4\x6d\xdc\x2b\x76\x20\xb3\xb9\x39\x39\x0e\xb4\xac\xa0\x59\x8d\x2d\x3b\xee\x39\x60\x9d\x56\x3d\x93\xae\x76\xba\x62\xb3\x24\x22\x8b\xa9\xb9\x39\x06\x77\xef\xea\xf8\x2b\xdf\xbe\xde\xfa\xc6\xac\x53\x26\x6a\x78\xce\x83\x34\x49\xb3\x96\x12\x6a\x7d\x9d\x9e\x18\x1f\x4f\xf4\xec\x17\x5e\xd8\xcf\x96\xfd\x80\xf8\x23\xc8\x7c\x9f\xee\x03\x9c\xc1\x9b\x0a\x17\x7a\x49\xd7\xbd\x92\xa4\x04\x89\x60\x6e\x8e\xeb\x12\xcc\xa8\xe1\x13\x4d\x34\xce\xa2\xa9\x2a\xdf\xc2\x30\x86\xda\x31\xe2\x14\xb6\x25\x92\x15\x76\x12\xfc\x35\xdb\x8e\xa3\x65\x08\xb6\x61\x0b\xba\xa3\xac\xcb\xff\x6f\x5a\xd5\xb0\xa1\xbc\x8e\xda\x3e\x16\xfe\xfb\x4d\x86\x89\x99\x0d\x8b\x28\x8e\x12\x6b\x32\xe4\x5b\xa8\xb6\x61\x18\xf3\xb1\x02\x4d\x9b\x3c\xaf\x52\x8d\x96\x8f\x7d\x2f\x80\xec\x21\xca\x97\x5b\x87\xc5\xbe\xf9\xb6\x1d\x45\xb1\x1d\x41\xc2\x43\x29\xd7\x2b\x57\x2e\xed\xcc\x6e\x63\xe0\x5f\xc0\xfb\xc7\x7a\x3c\x53\x83\xff\x53\x64\x2c\x34\xbd\xc9\x8a\xf8\xf3\xed\x97\xcc\x88\x94\xde\x59\xc6\x4c\x97\x05\xd0\x44\xbf\x87\x1d\x54\x88\xa4\x0a\x67\x3c\x9c\xf1\xa1\xef\x4e\xd2\x30\x74\x82\x82\xd5\xe0\xc7\x78\x43\x39\x02\x01\x14\x44\x17\x85\x02\xd1\xe0\x2c\x59\x8e\xf2\x02\x84\x14\x2d\x00\xe2\x58\x67\x47\x03\x2f\xbd\x9d\xd9\x30\x5d\x4a\xa2\x57\x4d\x97\x53\x28\x31\x34\x6c\x29\xa3\x43\xef\x5c\x93\x84\xd5\xb4\x90\xa5\x00\x3d\xf3\xfb\x8a\xd0\x76\x59\xd5\xea\xce\x4c\x04\x59\xb3\x07\xda\x03\x6b\x0a\x55\x13\xdc\xb6\xae\xe4\xe0\xb7\x75\x7c\x3d\x6c\x60\xe3\x21\x6c\x38\xf1\x65\xd7\x50\xed\xe1\x93\x46\x2d\x9d\x30\xb3\x36\x99\x74\xf7\x72\x11\xfd\xd9\x40\x39\xe7\x92\xf5\xe1\xec\x01\x9f\x31\xaa\x97\xed\xa1\x51\x2b\xd1\x52\x9a\x51\x7a\x39\xe3\x19\x77\xd7\x91\x69\xb8\xe2\xe4\xfc\xbc\xc7\xa6\x2a\xdf\xef\x96\xf2\x03\xdf\x3a\x42\xe7\xe6\x16\xb7\xea\xe8\x63\xd7\xdb\xd6\xf1\x4d\x81\x6d\xeb\x5b\x67\xe1\xde\xbd\xed\xa2\x9b\x26\x10\x6d\xc3\xef\x4f\xa9\xed\x9c\xd5\x9f\x64\xf4\xf8\x9c\x34\x5c\x0b\x63\x4b\x22\x2b\x6c\x3f\xa7\x4a\x6a\x3f\xa1\x37\x86\x90\x86\x68\x82\xcf\x6f\xbe\xa9\xa6\x46\xf5\x9f\x51\x6c\xd6\x74\x16\x79\x49\xf1\xae\x2f\x35\xb1\x3f\x88\xa4\xea\x6d\x29\x79\x21\x82\xee\x2b\xca\x42\x0f\x14\x38\xea\xcf\x9b\x82\xf1\xc4\xae\x0a\x4e\x5f\x2a\x08\x74\x73\x7c\xd2\xbc\x40\xa5\xe2\x16\xcd\xcd\x3b\x1a\x98\xd2\xc8\x93\xca\x74\xdf\x1a\x6a\x0f\x62\x9d\x75\x7c\xec\x9a\x13\x93\xcb\xbe\xef\x3e\xb4\x4d\x41\x05\x9c\x32\xb3\xb5\x2a\x19\xdd\x95\x12\x52\xf7\xea\x4a\x36\xc9\x09\x7e\xec\xb0\xe7\x1f\x29\xec\xf9\x47\xde\xa5\x29\x8b\x12\xc1\x11\x20\xef\x93\xa2\x8a\x84\xf1\xf4\x73\x5c\x01\x6d\xd0\x53\x68\xa7\x65\x96\xdb\x78\x45\xca\x77\x58\xd0\xcf\x02\x20\xcc\x27\x2e\x5d\xad\x26\xff\x8a\xcd\x76\xfa\xcd\xf9\x32\xdd\x81\xb0\x24\x69\xfe\xb9\x13\xaf\xcb\x73\x01\xd1\x87\xa4\x46\x5e\xb2\x0c\xaa\x05\xb8\xba\x5d\x9d\xc7\x55\x53\x36\x46\x08\x80\xfc\xf1\x70\xa0\xbc\xea\x0e\x6b\xba\x1a\x05\xf4\x35\xd5\x3f\x55\x05\xbd\xa7\xc6\xdd\x1d\x7c\x85\x70\x6f\x1b\x84\x3e\xec\x2b\xa1\xb5\x3d\xee\x7c\x80\x07\x76\x14\x33\x97\x4f\x6a\xcc\x5e\x93\x17\x58\x2e\x51\x76\xc0\x3c\xe4\xe3\x75\x1f\xa2\x0d\x4d\x16\xa6\xf9\x94\xcf\x6c\x4e\x80\x16\x21\xa4\x76\xbf\x25\x6e\x78\xbf\x2f\x33\x8a\x0a\xa2\xe4\xd0\x0f\x20\x03\xbd\xa1\x6c\x7f\x6e\x68\x4c\x55\x39\x1c\x9a\x2c\x8a\xd7\xa6\x94\x71\x02\xab\xf7\x38\x0e\x57\xb5\x19\x61\xee\xe8\x92\xaa\x2d\xb3\x74\x64\x4d\xc2\xdc\x6b\x69\xa8\x7b\xcc\x12\x22\x08\xfe\xff\x98\x4e\xfc\x0f\xaa\xe0\x18\xc6\xd6\x64\xb6\x37\x4d\xcc\x5b\x07\x99\xf1\xb6\x8c\x08\xfc\x9c\xf6\x5c\x75\x29\x52\xaf\xf6\x09\xee\x28\x0a\x97\x41\x7d\xc3\x52\xf6\x91\x52\xb3\xb8\x83\xc1\x83\x4c\x67\x5b\xc7\xab\x33\x9c\xd7\xb8\x37\xad\x8d\x3c\x8c\x8a\xa8\xa5\xd6\xdc\xb3\x8a\x80\x71\x76\x2b\x5d\xbd\x9a\x2c\xed\xaf\xd0\x44\x43\x7c\xc0\x89\x3f\x9f\x28\x9d\x89\x72\x98\xef\xf2\xc4\x91\x6d\x9a\x2f\xfd\x2f\xc7\xbe\x9a\xc8\xaa\x2b\x02\x69\xa3\x37\x41\xf5\xec\x27\x7e\xa9\xa3\x8a\x02\x1b\x9c\xd6\x22\x9c\x02\x66\x11\xa0\xaa\xcf\xad\x57\xdb\x35\x12\xe4\x73\xba\x47\x9a\x44\x43\xe3\x6d\xe0\x64\xd9\xf0\x6c\x82\x63\x4a\xf3\xe9\xb6\x52\x1c\x1b\x45\xc9\x80\x5c\x02\x5b\xde\x8a\xe9\xaf\xc7\x4a\xd7\xf8\xaf\x27\x56\xad\xf9\xf9\x76\x5e\x64\x76\x54\xa4\xcb\x51\x62\x72\xc6\x71\x61\xdb\x9d\xee\xf8\xfd\x78\x7a\x5d\x23\x71\x57\x93\xc7\xe8\xde\x45\xd2\x99\xae\x13\x0d\xb2\x8f\x94\x38\xe2\x59\x45\xb5\x7c\xbc\xa3\x8a\x88\x67\x74\x96\xf2\xa7\x63\xef\x2c\x0d\xeb\x59\x14\xc2\xfe\x54\x73\x12\x1f\xa0\x1a\xa1\xd3\x5b\x44\xcc\x47\xb5\x4f\xeb\x51\x07\xd3\x29\x93\x68\xc5\x66\xb9\xea\x57\x60\x21\x7a\x3d\xf0\x81\xf3\xeb\x0d\x56\xa4\xcf\xb7\x7b\x99\x59\x72\xa4\x31\xce\x3f\xf5\x10\x98\x9a\xe0\x5e\xce\xcf\xef\x6f\xd3\x7a\x29\x9f\xc2\x0a\xc5\xb2\xbc\x7c\xe2\x4a\x55\x71\x6a\x8a\xc1\xb4\x9f\xf0\xf7\x35\x9d\xe9\x0d\x2d\x24\x7a\xcb\xf3\xd7\xbf\xf3\xbd\x89\x50\xc1\xed\x37\xe6\x95\x92\x29\x49\x4e\x61\xdb\x35\xad\x19\x32\x2a\x17\xe4\xd7\x84\x7e\x66\x96\x00\xed\x6e\x39\x0d\xa5\x3b\xca\x12\xe1\x8e\x6a\x44\x0f\x4c\x16\xdb\x61\x4b\x21\x95\x15\x56\xe4\xad\xa6\xee\xf9\x20\x4d\x6c\x5e\x00\xdd\x84\x88\xf7\x9a\x22\xbc\x5d\x7b\x28\x9a\x70\x75\x60\x0a\xbb\x62\xb3\xe9\x2a\x87\xc2\xaa\x70\x4c\xaf\x47\x9b\x58\x54\xc1\x9d\x7f\xac\xe3\x7b\xf8\x57\x54\x01\x98\xb0\x65\x2d\xa7\xee\xf5\x3a\xbe\x40\x5e\xbf\x5f\xd0\x7a\x51\x1e\x96\x79\x3e\xe3\x01\xce\xf0\xcf\xc7\xef\xde\x55\x65\x8a\x2b\xaa\xa4\xff\x16\x35\x37\x19\x7e\xaf\x0a\x8b\xdd\xa8\xd7\xb3\xd9\x94\x4f\x83\xae\x29\x44\xd8\xb9\x9a\xfe\xb1\x9a\xb0\x59\xda\xb7\x79\x9e\x66\x9a\x55\xcd\x70\x1d\xa1\xc6\x36\x14\xac\x87\x69\xb8\x4c\x66\x11\x2d\x2f\xe5\x8e\x8a\x00\x1f\xbb\xc1\xd6\xcb\x52\x29\xf4\x3b\x72\x97\x73\xad\x38\xab\x88\xea\x99\x5d\x35\x19\xa7\xd8\x8e\xc2\xe1\x8c\x83\x2f\x04\x1a\x35\x92\x95\xf9\x0c\xcd\x46\x87\xa5\x98\xf7\x58\x0a\x0f\xdd\xfe\xb4\x9a\xcb\x9b\x6f\x8e\x95\xf6\xdd\xa9\x40\xd3\x7f\xfa\x96\xcc\x8a\xa7\x55\xad\x06\xe8\x1c\x87\xbd\x77\x0f\xed\x42\xa0\x2c\xd7\x2e\x36\xc1\x2a\xe2\x74\x45\x34\x1c\xb9\xf7\xa2\xf0\x6e\x67\x55\x43\x3d\x34\x59\x6f\x5a\xa9\x7e\x32\xe1\x80\x4f\x90\x40\xa2\xab\x00\xfb\x4e\x3e\xde\xba\x9d\x1c\xdc\xb3\xd0\x7e\xf1\xc5\xc7\xaa\x5b\xbc\x8d\x78\x48\xde\x5e\xeb\xab\xbf\xc6\x59\xfa\x71\x2a\x55\x61\x17\x44\x87\x1a\xd5\x75\xb2\xb1\x92\xff\x8f\x52\x95\xbc\x6d\xc2\xd0\xd4\x0a\xf2\x5c\xf1\x87\x7c\x06\xff\x4b\xe0\x53\xfa\xfb\xe3\xd6\xec\x81\xcd\xd3\x13\xbc\xb6\x03\x2f\xb4\xfb\x64\x05\x7a\x50\xf4\x0f\x6f\xe8\xaa\xe2\x29\x55\xa6\xd9\xd6\x51\xee\xc6\x06\xf5\x7c\x2c\xda\x4f\xac\x7b\xfb\xd3\xb3\xd8\xee\xdc\x89\xa3\x12\xee\xfa\x7b\x1d\xc5\xad\xd8\xcd\xda\x0d\xa8\x24\xdc\x6b\x6a\xce\xf5\xec\xc8\x64\x05\x13\x4b\xbc\xf0\xcc\x71\xc5\xbb\x3b\xae\x62\xb0\x3c\x1c\xd8\x21\x7a\x00\xb8\x65\x0e\x74\xf8\xa4\x01\xb1\xff\x3c\x5a\x9e\xdc\x79\x42\x8d\x06\x09\x1f\x1f\x2b\xd0\x6c\x5e\x46\x05\xd6\x00\xc4\x6d\xb7\xc6\x4a\x95\x7d\x3b\x9a\x5d\xce\xc5\xc3\x45\x66\x17\x14\x40\xe1\xa4\xba\xd6\x91\x59\x03\xaa\x78\xc1\x1b\x4e\x38\x88\xc6\x59\xc5\xcc\xe5\x97\xcb\xa2\xf4\x18\x75\x0e\x55\xe1\x92\xc5\x8f\xa8\x68\x27\x08\x0b\x29\x0d\x0c\xd2\xd8\xee\xa0\x8f\xb3\x46\xae\xd6\x5b\xd4\x0a\x47\xfc\xca\xd8\x31\x59\x03\x54\xce\x29\x1f\xe8\x99\x8e\xcf\xfa\xbb\x71\x9a\x56\xe9\x59\x8f\xea\x4d\xd5\xdf\x0b\x6a\x64\x4a\xbb\x32\x79\x38\xc9\xef\x3e\x54\x9e\xe7\x17\xbf\xfe\x4f\x16\xbe\xfe\xd5\xf9\xdd\x34\x37\xf0\xc7\x57\xa8\x94\x2d\x4d\x19\x65\x77\x87\xba\x29\x4b\x73\x06\xbe\x8d\xff\x53\x3c\x25\x04\xce\x6f\x61\xa6\xb8\x68\xd3\x49\x78\xdf\xa3\x90\x03\xfb\xd6\x4f\xc6\xca\x7c\x80\x0d\x32\x10\x66\xdc\x9a\x48\x8a\xf6\xcd\xb7\xa3\x24\xcc\xac\x71\xa0\x0d\x6d\x0d\xc4\xc7\x2a\x2e\xb4\x39\x5a\x0f\x88\xfe\x37\xb4\x93\xc4\x86\x7b\x39\x2b\x11\xff\x95\xf0\xcd\xe9\xaf\xb6\x12\xce\x57\x53\x92\xe2\x42\x2c\xcf\x29\x52\xa0\xd4\xc5\xce\x6a\x81\x85\xff\x5d\x0d\xd7\x22\x2d\x97\x06\x3b\x3d\x24\x60\xd7\xba\x8f\xd1\x66\x3a\x5e\xd6\xfe\x3e\xad\x5d\x40\x74\xb7\xa0\x4c\x87\xa5\x70\x63\xac\x68\x8f\xd3\x98\xb9\x78\xa4\xaf\x35\xe2\x1f\xc2\xb4\x4c\x0a\xf1\xc7\x43\x31\xf8\xb6\xa6\x1c\xdf\x56\xae\x26\xfd\xa8\x6b\x33\xc0\xec\xf0\xcc\xaf\xd1\x55\xf0\xb1\x2a\x4d\x96\x49\xdf\x44\x19\xef\x5f\xec\xd4\x45\x0f\x5d\x5c\xbb\x14\x81\x2a\x2e\x1d\x37\xe1\x79\x17\x2c\xfb\xf6\xff\xb9\x06\x96\xd3\xc2\x7e\xd2\x89\xb7\x0f\x0f\xf6\x1b\x98\x37\xb9\xe9\x57\x17\x5f\x8d\x56\x17\x0d\x28\xa8\xd6\xd3\x0e\x3e\x4f\xca\xcc\x45\x9a\xf1\xdb\x93\xca\x2a\x96\x3d\x65\xdc\xb4\xdf\x79\x67\x3a\x5d\x91\x51\x5a\x14\x5a\xff\x09\x85\x56\x87\xc1\x77\xb0\x9b\x6b\xae\xb2\x36\x5a\xcb\xcc\x30\xf2\xe6\xd6\x8c\xd1\x0f\x34\x5e\xdf\xef\xe2\x3d\x22\xb3\xab\xea\xde\x59\x55\x82\x3b\xdb\x68\x22\x1b\x9a\xc4\xf4\x22\x93\x28\xd7\xc4\x6b\x81\x86\xf7\x29\x20\x49\xdf\xda\x58\x82\x2b\xb6\x95\xa4\x75\x50\x2c\x26\x1b\x2a\x8e\x45\x16\x2d\x2d\x39\x9c\x61\x0d\x2e\xc1\x27\x4d\x75\x4a\xfb\x8a\xcd\xc2\x88\x2d\xb6\x18\xb7\x1b\xf8\xda\xd6\x45\x85\xb7\xed\x45\x79\x11\x25\x21\xd8\xfe\xb3\x07\x18\x87\x88\x1e\x33\x1f\xbb\xb9\xb9\x6a\xb2\xe1\xb4\x8b\x71\xdf\x78\xa6\xe3\x9d\x4f\xcf\x2b\xdb\xbb\x4d\x65\x22\xf0\xc4\x84\x89\xf3\xfc\x7c\xbb\x97\xa6\x43\x59\x32\x9c\x00\xb5\xab\x40\x1c\x73\x0d\xb7\x2c\x5a\x1a\x14\x8f\x2a\x0b\xbb\xcf\xa0\xe9\xef\x94\x23\x1c\x9c\x66\xfb\xfa\x64\x79\x98\xfa\x7a\x67\xbf\x48\x43\x04\xed\xcb\x1f\x68\xd0\xf9\xdf\xa5\xbd\x99\x86\xd8\xbf\xf8\x52\x47\xa9\x53\x5d\xaa\xa1\xc8\x54\x06\x3f\x22\xe2\x42\xda\xf2\xab\x47\xdd\xa2\xd0\x09\x89\x99\xcc\x4e\xab\x89\xf0\xe1\x58\x37\x9b\x3c\x95\x8c\x1d\x62\x99\x44\xea\x40\x23\x61\x5c\x76\xbb\x0c\x3d\x13\xdb\x55\x7a\x06\x22\x20\xd2\x04\x7c\x4a\xcb\x62\x60\x33\x8c\x42\xac\xbc\x1b\x34\xc6\xf9\x58\xf1\x34\x46\x59\xba\x62\x77\x68\x85\x5a\x0f\x96\x82\x67\xb2\x43\xc8\xea\xed\x42\x51\xd8\xee\x2a\x8d\xd6\x81\x5a\x6a\x56\x6d\xb4\x34\x70\x34\x28\xc7\x86\x71\xa2\xeb\xc7\x6a\xae\xd0\x25\xaf\xf3\xb2\xb7\xd3\x43\xe7\x13\xb5\x26\x9a\xa4\x48\x71\x5b\x8c\x7e\x08\x7c\x89\xb5\x19\x6d\x10\x25\xcb\xca\x08\x0f\xb1\x22\x1f\xaf\xfb\x91\x95\x2f\xaf\xd1\x36\x00\xb8\xd4\xdf\xeb\x78\x0c\xf1\xae\x75\xa5\x74\x03\x43\x0d\x31\x5a\xa0\x51\x82\x79\xcd\xf4\x16\x01\xa1\x57\xcf\x10\xbb\xe9\x71\x5d\x1f\xce\x4c\x04\xda\xa3\xc4\x26\x1a\xfe\x19\xec\xf6\x75\xb2\x7f\x34\xa5\xc9\xee\x47\x54\x7f\x83\x09\x11\x48\xe0\xee\x4d\xa4\xb1\xd5\x1e\xb3\x65\x17\xc6\x76\xbf\x1d\x49\x37\x9f\x74\x1a\xa6\xe1\x4b\x69\xc4\xdc\xe4\x6f\x39\x42\x8c\x66\xc7\x28\xf3\x9b\x5e\xb4\xe2\x8a\xce\xd2\x8c\xaf\x6e\x8b\xdd\xdd\x02\x0f\x3d\x3d\xaa\x12\xdf\xf2\xb9\xfc\x39\xf3\xdc\xdf\xb6\x9b\xbb\x9c\xb3\x1c\xa6\x99\x2a\x64\x9e\x56\xe2\x34\xa7\x1b\xaa\xfc\xed\xd5\x2c\x4d\x96\x7a\xa9\xb0\x4a\x59\x98\x3b\xf0\x68\xff\x4b\x63\x6d\xf0\x41\x6a\x6d\xf2\xc7\xac\x7c\x12\xf8\x56\xe6\xa7\x63\xcd\x1b\x5c\xb2\xd5\x5c\x7a\xd4\x77\x6f\x0f\xc3\x1e\x01\x68\x79\x24\x03\x08\x60\x91\x0b\xb0\x9a\x13\xc3\x9b\x02\x25\x7b\x73\x51\xd9\xda\xbe\x03\xd3\x16\x46\xa5\x21\xab\x03\x5c\x79\x7b\x47\xdb\x46\x34\x6d\x32\xd2\x04\x63\x8d\x00\x20\x16\xb8\x64\x2d\xc2\x41\xbe\x73\xfe\x6d\x3c\x65\xa4\xd1\x0f\x02\xdf\x37\x4e\xd2\xa4\xba\xb5\xd8\xe6\xcc\x48\xc7\xdf\x7f\xa4\xba\xee\x1f\x35\xb5\x5c\x97\x22\xc3\x9d\x66\x69\x13\xfa\xc0\xe0\xc2\x78\x2b\x02\x7c\xe1\x85\xfd\xed\x62\x85\x9e\xb4\xa3\xa3\x68\x58\x8c\x4e\x85\x4d\x94\xed\x6e\x7d\xed\x90\xe3\x25\x55\x0f\x55\xde\x25\x8d\x4b\x56\x6f\x08\x94\x55\xde\x87\x5c\xb8\xc7\xd2\xb6\x09\x98\x2f\x92\x0f\xb8\x7c\x60\x1b\xf9\x3d\xd5\x98\xe3\x29\x2d\xe4\x03\xb7\x3b\xbc\x74\x1d\x97\x86\xe4\xfb\xc6\xc4\xad\xec\xdd\xdb\x1e\x18\x9e\x55\x42\x92\xa1\x59\x25\xf4\x19\xbf\x4e\xe5\x83\x74\x35\x9f\xf1\xbb\xd8\xef\xd1\xab\x47\x34\x7a\x59\x0b\xdf\x5e\xae\x49\x1b\xd7\x72\xa2\xc7\x94\x48\xd5\x73\x33\xbe\x3a\xf3\x01\x5e\x28\x16\xb1\xf3\x81\x87\x1a\xdf\x19\xfb\xc5\x8d\x9a\x64\x9d\x27\x6b\xae\x36\x26\x59\x7b\x86\x36\x22\xb1\xd6\xaa\x3e\x2a\x55\x7a\x48\xf3\x8a\x8e\x6a\xdd\x08\x8e\x9e\x29\xaf\x45\x81\x0f\x87\x76\x77\xaa\x97\x25\xe5\x05\x7a\x12\xf2\x4c\x69\x3c\x73\xc0\x36\xf6\x1e\x9a\x53\xe4\x39\x82\xd4\xea\xf3\xb4\xc8\xa2\xd2\x78\x33\x50\x7d\x2f\x4e\x13\xb1\xbb\x3c\xda\xa9\x31\xe6\xf7\xcd\xf3\x82\xfb\xa4\xd2\x5f\x7a\x05\x2b\x31\xa6\xe2\x03\x4d\xcf\xda\x6c\x84\x90\xf5\xd3\x38\x4e\x57\x5b\xaa\x92\x7b\x44\x31\xe8\x8e\xa8\xb6\x9c\x79\xb9\x34\x19\xe1\x82\x7d\x94\xcf\x6a\x9b\xe2\x7b\x33\x69\x3a\xbb\xd0\x5e\xaa\xf6\xa8\x83\x52\x9f\x00\x4c\x8a\x8f\x55\x65\x6d\xd5\x66\xf6\xf3\xf4\xa0\xf0\xf6\xd1\xab\x10\x02\xb2\xd2\x5e\x61\xf1\x26\xae\xd0\xd2\x43\xc0\xa3\x65\x2b\x40\x51\xb5\xa7\xc7\x86\xa7\x00\x71\x72\x2c\x48\xd7\x02\xb5\xa6\x4f\xaf\x7b\x03\xcb\x3b\x58\x83\x58\x51\x85\x00\xb0\xe8\x0a\x7c\xcc\xef\x1f\xbf\xf8\x08\x2c\x40\xb0\xf5\x5f\xd0\x6d\x11\xae\x81\xb0\xb5\x23\x81\xe8\x70\x2d\x9f\x8c\xbd\x9b\xc8\x7b\x54\xc2\x11\x4c\x32\x0d\x25\xe1\x4c\x2b\x37\xa7\x47\xd7\x49\x39\x4d\x44\xf9\x95\xe6\x63\x54\xad\xd4\xbb\xaa\x47\xe3\x0c\x70\xab\x2b\x10\x7b\x79\xba\x36\x51\x80\xc4\x65\x63\x51\x3d\x51\x53\xd0\xc7\xc3\xe1\x72\x4b\xe0\x09\x58\x1f\x05\xaa\x25\xf9\x36\xc6\x0e\xd7\x14\x1e\x4e\x35\x75\xf9\x03\xfb\x8b\xa9\xe6\xf4\x4d\x25\x22\x6a\x92\x5e\xbb\x75\x68\xc1\x17\xf3\xf6\xee\xe5\x52\xd6\x4d\x7a\x26\x62\xda\xa1\x2a\x41\xb7\x71\x73\x8e\xc9\xf3\xcd\xaf\x73\x90\xfe\x17\x81\xc7\xa8\x5e\xa1\x89\x2b\x20\x3a\x4c\x5c\x54\xbc\x8e\xe9\xd2\xc7\x2d\x88\xd1\x61\xa0\xf2\xa4\x92\x5b\xa3\xf7\xe6\x1e\x8d\x67\x9a\xb1\x60\x22\x62\x0d\x79\x9e\x1c\x79\xac\xab\xfd\xfe\xb6\x76\xf8\x64\xcc\x05\xa6\xcf\xdd\x80\xc4\xbb\x9d\x6d\xab\xeb\xc9\x00\xc8\xc7\x56\x07\x94\xc9\x4a\xb0\x4e\x83\x18\xc9\x42\x0b\x63\xcd\x89\xf2\x7f\x43\x60\xa2\x97\x54\x4d\x43\x17\x9f\x4e\xa2\x92\x87\xc7\xfa\xa6\x0a\x72\xb7\x63\xd2\x70\x9a\x4e\xa5\x12\xa0\x83\xaf\x4e\x4c\xd9\x85\xc5\x85\x36\xa9\xe4\x78\x2b\xd9\x93\x2a\x5b\x3d\xf9\x70\xfd\x8b\x34\x8e\x3c\xf8\x05\xd5\x62\xa4\x3b\x7c\xec\x20\x94\x43\x93\xd8\x72\x45\x11\xb5\x71\x2d\xa7\x95\xe7\xf5\xe9\xe0\x19\x95\xd1\x87\x59\xf5\xcd\x26\x46\x90\x25\x22\x66\x2d\x67\x53\x7c\x47\xe9\x19\x5e\x1c\x4b\x9f\xa6\x17\xe5\x2f\x97\x26\x8e\xfa\x91\x44\x7f\xa8\x38\x43\x2a\x86\x8f\x55\xf4\xbf\x3a\x30\xe1\xf2\x94\x87\xbc\x3c\xa0\xb5\x1a\x0f\xf0\x34\xcd\x61\x0c\xa5\x1d\x6a\x27\xc9\x2c\x94\xb1\x75\x7f\x52\xf3\xfe\x77\x39\xa2\x9b\x82\x4a\x71\xa8\x27\x45\xc6\xad\x33\x6b\xef\xde\xf6\xd0\x64\xcb\xc4\xf6\x20\x4e\xaf\x22\x97\x3d\xcf\x89\xd8\x31\x25\x6b\x79\x47\x39\x17\xdc\x68\x5c\xe3\xf3\x81\xb5\x52\x10\x75\x65\x5e\x45\x0a\x6e\xd2\x93\x8b\xa3\x64\x59\x9e\x1b\xe2\x9f\xdf\xc6\x74\xe4\x13\xbd\xbf\x8f\xcc\x20\x9b\x52\x11\xd7\x49\x45\x3f\x86\x3e\xb4\x64\x32\xfe\x43\xe5\xff\xcb\xd8\x9f\x05\x49\x92\x5d\xe7\x81\x70\x55\x64\x66\x55\x75\x55\x57\x77\x57\xa3\xd1\x02\x45\xe1\x67\x90\x6a\xa9\xb5\xb4\xb5\x51\x26\x93\xfd\x12\xf4\xe0\xa1\xac\x24\x80\x4a\x23\xb2\xcb\xb2\x0a\xd5\x54\xcf\x4b\xdf\x8c\xb8\x11\xe1\x9d\x1e\xee\x01\x77\x8f\xcc\xce\x36\x3d\xe8\x61\x1e\xe6\x41\x26\x9b\x91\xd9\x98\x69\x16\x1b\x23\x25\x6a\x21\x87\x23\xee\x06\x72\x86\x40\x04\x08\x10\x00\x01\x10\xbd\xa3\xf7\xee\xda\xf7\xac\x7d\x5f\xb2\xc6\xfc\x7c\xe7\xdc\x7b\x3c\xdd\x8b\x36\x6f\xee\x55\x19\x11\xbe\xdc\x7b\xd6\xef\x7c\x5f\x66\xd3\x8c\x26\x44\xdd\x3e\x76\xee\xfe\x26\x59\x07\xc1\x74\xd2\x4a\x74\xde\x43\x71\xd0\x14\x46\x40\xc0\x9e\x6a\x07\xe2\x5d\xc1\x95\xdf\xa9\xd4\xf3\x0f\xcd\x36\x63\x93\xa6\xc9\x6a\xc3\x27\xfd\x3f\xa3\x77\x26\xe0\x9a\x1a\x1a\xb7\x6c\x14\xb2\xec\x27\x8c\xeb\x3b\x0a\xb2\xc0\xbd\x38\x11\xa9\xa8\x61\x3d\x69\xa7\xc6\xcd\x44\x38\x6e\xe6\x05\xd1\x91\x39\x5f\xf3\xca\x9a\xaf\x98\xf6\x37\x46\xd2\x5e\x04\xa8\xf8\x5f\x61\xd5\xf0\x89\xc2\xaa\x65\xb6\xed\x66\x58\x10\x29\x9f\x54\x00\x86\x93\xaa\xc8\x82\xd2\x60\x87\x54\xb6\x31\x74\x78\x86\x22\x26\x01\x30\x92\x91\xe0\xff\x18\xfb\x82\xdf\x1f\x93\x97\x45\x0e\x73\xd6\x55\x9c\x3a\xa3\x9c\x39\xd7\x5f\xd2\xda\x2a\x92\x22\x95\xb1\x6c\x0d\x27\x35\x76\x51\x0f\x1a\xa5\x61\x6e\xc2\x98\xc9\xcc\xf0\xff\x0f\x02\x45\x4a\xc2\xe5\x40\xc9\xee\x55\xf9\xfc\x70\xb9\xe4\xac\xaa\x4a\xb7\xf5\xb8\xdd\x35\xe5\xdd\xfe\x90\x9e\x8a\x9b\xe9\x5c\x9c\x95\xf9\x69\x05\x87\x25\x5e\xaa\x6c\x7b\xb1\xb2\x60\x20\x1e\x04\x25\x76\xd6\x62\x65\x71\x8a\x51\x92\x38\x2d\xbe\x19\xdd\x1c\x9e\xe9\x74\xd3\xc7\xf3\xf3\x5c\x2b\xfa\xa0\x8e\xe4\x82\x98\x3c\x79\x97\x89\x92\x99\x4f\xd4\xaa\x74\xa5\x7f\xaf\xd9\xb1\x51\xb8\xc2\x5c\x32\x58\xfc\xc7\x7c\xdf\xff\x9f\x7b\xd5\x2f\x1e\x2e\xe3\xef\x76\x73\xd4\xbe\xd4\xaa\x91\xef\x69\x2e\xa3\xc6\x2a\xd9\xdd\xef\x92\x5d\xa5\x86\x62\xbf\x41\xcc\x78\x0d\x47\xb6\xf5\xa9\x22\x7e\xf9\x54\xd1\x6b\x84\x71\x16\x76\x2c\x4d\x20\x02\xfb\x0e\xc8\x1e\xeb\x11\x28\x4d\x25\x68\xa1\xc3\x08\x5c\x55\xc3\x27\x5c\x2a\x64\x19\x62\x65\x39\x56\x4d\x14\x65\xd3\xc5\x1f\xba\xa1\x89\xfd\xfe\x84\x5e\x91\x52\x3a\x98\x93\x13\x75\xbb\x0b\x7b\xbf\x0a\x30\x42\xad\xba\x5e\x9d\x05\x4d\x56\x7d\x9c\x83\x1d\x78\x4b\xe1\xfd\x6f\xd5\x7e\x66\x25\x09\xdb\x42\xfc\xc6\x63\xa5\x58\xc1\x32\x63\x5a\xcb\x46\x9c\x0c\x47\x91\x80\x97\x99\x54\x4f\xd1\x8b\x96\xf9\xa0\xd6\x84\x4b\x11\x90\x24\x44\xc3\x7c\x5c\xc1\xc8\x89\x9f\xce\x4d\xbc\xcc\x86\xc5\x31\x92\xee\x9d\x73\x8c\xa4\x8e\x5d\x26\x8c\x2d\xa3\x87\x50\x51\x5a\x07\x31\x3e\x9f\xd4\x41\xf0\x62\xbb\x9a\x45\x36\xcf\x6d\x3a\xe3\x47\xd0\x31\x54\x8c\xdd\xb8\x03\x13\xb3\xa2\x0b\x58\xac\x0d\x37\x6b\x51\x98\x1e\x61\x2d\xd4\x16\x62\x14\x8a\xfe\x81\x96\x56\x97\x65\xfa\xb8\xc3\x3b\xad\x98\x28\xb4\xa9\xe2\x9d\xbe\xa8\xf5\xfa\x2f\x3e\x54\x8a\x37\xe9\x76\x43\x56\x22\x93\xa1\x08\x5a\x1a\x32\x2e\x21\xd3\xf8\xed\x0e\x88\xd6\x1c\xa9\xa9\x8b\x55\x00\x11\x2b\x11\x2b\x92\x25\xda\xf3\x8b\x2d\x25\x68\xfb\xf8\xa4\x3c\xa8\x58\xad\x65\x34\x3b\x24\x8f\xee\x6a\x55\xc8\x2b\xef\x29\xa6\x94\x7b\x45\x3c\x2d\x33\x7f\x36\x57\xc0\x68\x96\xa7\x90\x39\xd4\x86\x23\xf5\xbf\xa9\x19\xfe\x6f\xba\x72\xf5\x70\x14\x2f\xd3\x3d\xb3\x30\x8d\xea\xfa\xde\x54\x58\xd4\x30\xce\x49\x4a\x27\xb7\x8d\x62\x8d\x20\x7a\xbe\xaf\xe0\x42\xf7\xc7\xbb\x35\x35\x7b\xfc\x0b\x0d\x97\xea\xde\xc0\xee\x93\x6c\xa4\x78\x76\x58\xc3\xd7\x02\x35\x04\x33\x83\xac\x0d\x60\xd2\xe3\xc8\x26\x59\xcf\x1a\x79\x33\xb2\xf9\x3d\x24\xe7\x81\x8a\xc7\x89\xa0\xf1\xec\xb3\x4e\xfc\x80\x22\x5e\x84\xff\x1f\x13\x43\xb0\x9b\xd8\xfd\xfa\x57\x19\x77\x76\x52\xcf\xf3\x3d\xd2\x2a\xb2\x10\x57\xa9\x72\x40\xd6\x9d\xad\xc6\xaf\x1e\xe0\x78\xf2\x2f\xc7\x5e\x43\xf3\x2c\x54\x11\xe0\x42\x8e\x8d\x95\x70\xfd\x45\xe4\x0a\x48\xe6\x76\x4d\x8a\x90\xc5\x55\x84\x37\x4d\xca\xbd\xe4\xea\x7a\x3e\x69\x3f\xc1\x09\x05\x42\xf7\x0d\x2d\xcd\xfe\xe7\x04\xb6\x46\x01\xf1\xc7\x8a\x60\x6d\x0a\x09\x49\x69\x08\x0e\xee\x7a\x8a\x30\xdc\x80\x6d\xfd\x7a\xe0\xd6\xac\x59\x82\xf9\x91\x66\xae\x4f\x15\x2e\x28\xe4\x5c\x6e\x96\xed\x6e\x1f\xe2\x7f\x18\xa8\xf1\x41\xbc\x38\x98\xc6\x1b\xf0\xac\x3c\x8a\x84\x95\x8e\x30\x4b\x7a\x0c\x4e\x61\xff\x45\x47\xf2\xb2\xae\x86\x8c\x79\xe2\x09\x0e\x74\x07\x5a\x87\x70\x8e\xdb\x5b\x9e\x90\xf5\x34\x36\x2e\x9e\xd8\x4d\xca\x55\x37\xde\xa8\xb4\xe2\x68\x02\x34\x35\x71\x0f\xcc\x8d\xae\x43\xed\xef\x50\x01\x33\x56\xc3\x21\xb0\xc8\x3c\x14\x4e\xbe\x1b\x36\x04\xc5\x01\x57\xab\xde\x27\xc4\x06\x0f\x2a\x36\x7d\x7e\xbe\xd9\x4d\x12\x2f\xdc\xc2\x2a\x87\x25\xc5\x43\xef\x63\x86\x36\xda\xe6\x07\x14\x76\x52\x7d\x47\x90\xd0\xaa\xe1\xcd\xc2\x4f\xc8\xfe\xce\x07\x4a\xac\x9f\x9b\xea\x62\x7c\x6b\xa4\xc5\xda\x3c\xe6\xe2\x98\x3f\xd1\x5d\x16\x06\xc4\xdd\x6e\x15\x64\x79\x9a\x70\x11\x5d\xe3\xb8\x14\xc4\x4e\xb4\x9f\x1f\x54\x3a\x28\x73\x07\x9b\xc6\xa6\xc9\x52\xd8\x66\x24\x98\x5e\x4b\x58\x7c\xd7\x55\x7f\xf5\x7d\x35\x5c\xdd\x35\x69\xde\xb7\xe9\x36\x2f\x8b\x0f\x2d\x5e\x78\xea\xcb\xa8\x56\xc0\xe8\xfc\x00\x8b\x19\xf6\xeb\x7e\xe0\x27\xe6\x18\xfc\x08\x97\x79\xa7\xee\xea\x86\x69\x32\x18\xe6\x1c\xff\xc2\xda\x9c\xd7\xa6\xe7\xbc\xdb\x0e\xdd\x24\x9d\x2e\x5e\x30\x5d\xf4\xe7\xf7\xb4\xd4\xf4\xc9\xcc\xc4\x7b\x29\xe8\x96\x8a\xc6\xf3\xe3\x2a\xce\x36\x19\xe8\x2d\x5f\x72\xa5\x6a\x9f\x2d\xae\xbb\x31\x9e\xa1\x4d\x57\x4c\x16\xae\x60\x2a\x1e\x6b\xfa\x12\x2c\x9b\x84\xc0\xbe\x37\xfd\xef\xbd\x0b\xeb\x9b\x38\x26\xd6\x61\x9f\xa6\x9d\x53\x69\x5a\x95\xcb\x9d\xa4\xbc\x93\x38\x4f\x13\xcc\xa7\xa2\xe8\x72\x7a\xac\xf8\x97\x4f\x97\xd0\x55\xa3\x34\x41\xb3\x1d\x65\xf7\xc3\x4a\x79\xe2\xb0\x82\x4f\xb5\x6d\x5a\x84\xe5\x11\x03\xf0\xf1\x92\x1f\xa8\x17\xfe\xa0\x06\x39\x76\x80\xa4\x3a\xed\x8a\xe8\x85\x38\x49\xff\xc2\x14\xe0\x4d\xdc\x08\xbc\x3c\xff\xa7\xbe\xa7\x97\x0c\x06\x89\xe8\x44\x09\xa6\x59\x6b\x19\x8c\x75\xfb\xe7\x7e\x65\x09\xec\x5b\x68\x0e\x6c\x9c\xad\x5a\x93\x36\xbc\xca\x15\x40\x48\x32\x9a\xe9\x9e\x71\x12\x45\xa6\x27\x41\x19\xb3\x44\x6a\xe6\x8e\x33\x5e\x8a\x71\x60\xa2\x88\x32\x25\xa5\x7d\x28\x48\xe1\x8f\xc9\x29\xb3\x0e\x62\xcb\x87\xa2\x00\xe3\x49\x06\xe5\x07\x10\x69\xd0\xbd\x70\x23\xf8\xaf\x13\xf8\x2e\x78\xc0\x5b\x14\xb1\x4a\xbe\x50\xf7\x8e\x97\xd2\x24\x2e\x22\x49\x7a\x0e\x1b\x20\x23\xda\x38\xae\x28\x3f\x46\x71\x37\x49\xf3\x51\x6c\x78\xc0\xc4\x69\xb1\xaa\x96\xc1\xc3\xca\x36\x59\xdb\xc6\x26\x0d\x93\x19\x5f\xf4\xdd\xda\x2a\xcb\x6d\x3a\x51\x4e\x38\x03\xa4\xdf\xef\xe1\x1e\x84\x9b\xa7\x3a\x1b\xd1\x5c\xb5\x61\xda\x29\x1b\xe7\xc5\x59\x67\x3e\xea\x74\xe9\x33\x2b\xb8\x15\x6c\x14\x8c\xf0\x2a\xc8\xda\x9c\xe3\x32\x92\xd7\x94\xa7\xa1\xa4\xd6\x52\xf5\x6b\x38\xf1\x8f\x63\x6a\xd4\x8f\xe6\x21\x3a\x22\x62\x06\xff\x0f\x5c\x39\x1f\x57\x16\x96\x1b\x45\x17\xe8\x32\x82\x83\x07\xb4\x27\xf9\xd8\x4f\x89\xe7\xd6\x0c\x66\x7c\xff\x75\x27\xb9\x15\x58\x3d\x06\xf1\x39\x61\xd3\x62\x7b\x20\x28\x7c\x1f\x6b\x4f\xba\x14\x8f\xab\x0e\xc5\x68\x18\xc1\x80\xe0\xf6\xe1\x40\xb0\xa9\xa7\xd1\xb2\x41\x25\xf5\x44\x8d\x04\x13\x2b\x87\x48\x57\x12\xde\x1b\xa9\x30\x17\x0a\xc7\x3a\x15\xae\x8e\x38\x3a\x81\x61\x89\x45\xb9\xc5\xaa\x80\xfd\xf7\xea\xbb\x09\x51\xb2\x5a\x44\xe1\x5f\x7e\xd1\xbd\x29\x7a\x74\x42\x47\xe5\xdf\x47\x11\xea\xda\x74\x45\x2f\xd8\xb7\x69\x81\xf0\xb1\xf2\xde\x83\x51\x96\x4f\x79\x22\xe2\x6d\x2d\x6f\xab\xef\x11\x10\xf4\xd2\x43\x11\xcc\x36\xcb\xad\xa5\x5c\x11\xd1\x1f\x56\xb3\xb4\xe7\xfc\x92\x3f\xa1\x19\xbe\xa6\x14\x68\x71\x14\x75\xb6\x29\x78\xcf\x0c\x8d\x60\xc2\x67\xfc\x2d\xba\x0e\xc4\xa4\xf7\xc7\xaa\x83\x79\x86\x62\x4f\x19\x13\x29\x36\xa1\xe0\x37\x37\x97\x96\xf6\x2d\x34\x5f\x31\xf1\xf3\x8d\xad\xcf\x94\x35\xaf\xf9\xc4\xbb\x94\x34\x69\x03\xcc\xdb\x50\x8a\x20\x0d\x47\xdc\xbd\xae\xca\x98\xcb\xb1\xdb\x45\xc2\xc2\xd8\x70\xf0\xce\xb7\xe9\x72\xe0\xf8\xaf\x2a\xc0\xf2\x2b\x49\x3f\x8e\x43\xdb\x50\x21\xd9\xef\x8f\x15\xf9\xd6\xef\x57\x84\x36\xe7\xe7\x9b\xa9\xed\x84\x59\x9e\x86\x4b\xa3\x3c\x4c\xe2\x30\x1b\x34\x1a\x4a\xe3\x45\xe9\xc6\x5e\x1c\x3f\xbd\x59\xdf\x6f\x91\xb2\xdd\x87\xca\x8a\x95\x59\x1e\x43\x13\x85\xaf\xd9\x0e\xc9\x03\x23\xc4\x66\x9c\x8f\xf0\x76\xd2\x32\x67\xde\x36\xc5\xfa\x82\x20\x05\xb1\x15\xef\x3b\x6c\xc2\x7f\xad\x70\x95\xdd\x30\x8a\x2c\xc6\xdb\x58\xa7\x44\xb7\x70\x03\x65\xe5\x6e\x2a\xc0\x5e\x6c\xb3\xc7\x34\x6f\x0f\x65\x0c\x12\x7d\x34\x9c\x60\x26\x74\xe2\x68\xa7\xfe\xd3\x5f\x9a\xf8\x2b\x9b\x9e\x28\x16\xfa\x7f\xc0\x74\x51\x00\xb3\xfd\x22\x29\xc0\x49\x71\x5f\x01\x81\x2e\x6a\x29\xde\xa7\x11\xbd\xe0\xcf\x58\xec\x15\xb1\xf8\x06\xe6\xae\x1c\x1d\xb2\x9b\x60\xbd\x5f\x63\xa4\x17\x0a\x5b\x11\x2b\x74\x01\xca\x5a\xc2\x07\x56\x07\x50\xb2\x44\x99\x5c\x7c\xad\x1b\xe6\xf3\x83\x7d\x81\x16\x34\x31\x43\x91\xb5\x76\xd4\x65\x4e\x57\xf8\x18\x02\x3e\xd8\xb0\xdb\x81\x4f\x39\x63\xdb\x4b\xf2\xd0\x38\xa2\x47\x27\xe6\xee\xde\xcf\x19\x07\x75\x5c\x32\xed\xe5\x28\xe9\xe9\x71\xb8\x7b\x6a\x1c\xee\x5e\x1d\x4b\x79\x3e\x4a\x97\xc2\x18\x4c\x7f\x88\xcd\xee\x28\x6d\x42\xd0\x99\x09\xf8\xb6\x9a\x01\x2c\x36\x3b\xb6\x97\x5a\x9e\xc0\x13\x76\x40\x8f\x61\x3a\x5e\x43\x5d\xd9\xcc\x53\x6b\xb2\x51\xba\x96\xc1\x8d\x70\xac\xcf\x61\x8d\x44\xfe\x4f\xb8\xf9\xb8\x8e\xb5\x83\x4d\xb3\xe5\x8d\x89\x07\x64\x34\x5a\x4a\x29\x79\xd4\x09\x8b\x1c\xc0\x30\xdd\xab\xa8\x3f\xf9\xa2\xe7\x39\xd5\x63\xed\x86\xa9\x6d\x50\xba\x5d\x4b\x78\xac\xe6\x01\xdb\x96\x09\xbf\x1d\x1f\x90\xab\x30\x9e\xc2\x8e\x10\x2d\x56\xdc\x84\xa8\x6a\xd4\xb4\x32\xba\x26\xce\x4d\x16\xbe\x06\x94\x35\x3c\xdd\x2d\xec\x45\x3e\x51\xc2\x32\xa3\xd4\xe6\xfd\xd4\x34\x54\xa1\x17\x4f\x97\x8f\x95\xc5\xea\x27\xb6\xdd\xe7\x02\x15\xd2\x86\xcf\x34\xb6\xe3\xb3\xba\x86\xe5\x30\xc9\xf2\x91\x6f\x3b\xd5\x69\x40\xd4\x70\x54\x75\xec\x20\x69\xa7\xa6\x0d\x32\x7c\x9e\x5a\xa5\x0f\xc9\x04\xab\x54\x55\x52\x42\xb7\x15\xab\x56\x88\x0e\x8b\x4f\x48\x8d\xb0\x21\xdc\xce\xab\xbf\xa8\x26\xfd\xbe\x30\x79\x5c\x93\x7c\xe5\x16\x9d\x22\xe9\x3d\x2b\x71\xa2\x8f\x55\x6a\xd5\xee\x87\x6d\xd3\x4b\x76\x14\xdb\x10\x30\x85\x9b\x9a\xc5\xf6\x8a\x6e\x42\xfe\x29\xbf\x24\xa7\x47\xec\x2a\xfe\x08\x57\x51\xc3\x3e\xa6\x09\x7f\xe9\x5a\xf1\xef\x9f\xd5\x65\xde\xf6\xd5\xbe\x89\x64\x87\x72\x93\x1e\xf1\x99\x74\xec\x6b\xd0\x67\x91\xcd\x38\xca\x97\x5e\x09\x99\x00\x74\x07\x39\x41\xc2\x15\xff\x2f\x6a\x8e\x25\xb6\xab\xd9\xd0\x0c\x6d\x3a\x43\x2b\x17\x96\x89\x29\x2a\x19\xe9\x81\x0a\x0d\xff\x8f\x92\x47\xdb\x85\x41\x6f\x69\x3f\xd6\x54\x2c\x3b\x61\xd6\xb7\x2b\xd6\xdd\x8a\x90\x8a\xfa\x6a\xd8\xb1\x5a\xbd\x42\x14\xb7\x1b\x7e\x88\x04\x2c\x59\x7c\xec\xec\x13\xd1\x51\x4a\x46\xe7\xda\xb8\x2a\xa5\x90\xe8\xd1\xb4\x47\xac\xc7\x05\xeb\x88\xbf\xe2\x63\xe5\x75\xbe\xbc\x6f\xb6\xa1\xb2\xf5\x32\x23\xf6\x26\x25\xe4\x2f\x35\x0f\xfc\xcb\xaf\xcd\x28\x99\x9f\xf3\xea\xa7\x3f\xc2\xdb\x72\xf0\x98\xaf\x09\x76\x1e\x2c\x16\xcc\xcd\xaa\x28\xe3\x5f\x31\xed\x64\x29\xb3\x71\x43\x81\xc7\x4f\xa9\x31\xa4\x53\x0e\xe2\xd9\x1e\xa5\x56\xd1\x72\x5d\x50\x53\x41\x17\xc6\x9f\xf7\x9c\x65\x64\x13\x99\x03\xc1\xdb\x2e\x0c\x6c\xa3\x02\x72\x63\xac\x46\x76\x8f\x2b\xbd\x8e\x9e\x89\x7b\x0d\xdf\x41\x00\xcf\x80\x8c\xe9\xf9\xd0\xa1\x6f\xa3\xb0\x9d\x0c\xc1\x45\x5a\x5c\x36\x6b\xa2\x94\xf4\x51\x1e\x55\xf9\xf1\x73\xbf\x44\x8b\x50\x38\xf0\x01\x26\x10\xad\x60\xf2\xaa\xe8\x3d\x1f\xd1\x62\x38\xff\x23\x6d\x72\xe4\x7f\xc7\xb0\x14\x99\x1d\x87\xca\xb0\x88\x0f\xfe\x00\xa5\x33\xc0\xf1\xb9\xdf\x00\x1b\x71\x03\x5b\x1c\x06\xee\x87\x63\x45\x28\xf6\x29\xf0\x0b\xa8\xa9\x1d\x57\x5c\x65\x3f\x1e\x7b\x16\xa0\xef\x33\x3a\x05\x0d\xd6\xb7\x50\xa3\x47\x7c\xca\xac\x4e\xe8\xf6\x5c\x21\xf0\x01\x02\xc2\xa3\x40\x25\xa0\xce\xf5\x2d\x60\x59\x11\x96\x7c\x3a\xde\xfa\x8c\x6f\xe6\xed\x77\xd2\xd0\x6f\x50\xe6\xce\xea\x99\x24\x6e\x2a\xaa\x2b\x54\x02\x15\x6b\x47\x0f\x59\xe3\xa9\x60\xfa\x6e\x28\xd0\xf3\x3a\xad\x35\xc7\xf3\xf3\xec\xb3\x8e\x1f\xb4\xc8\xdd\xb1\xe7\xbe\x49\x05\x18\x51\xce\x6c\xfc\xca\xaf\xf1\xcb\xba\x4f\x10\x10\x7c\xe7\x61\x35\xea\x9e\xe5\xa3\x01\xd3\xb1\x14\x17\xe0\xf8\xec\x5c\xa9\xe9\xa2\xe2\x02\x7a\xfe\xf9\xe7\x9f\xf0\xf8\xc4\x1f\x68\x32\xaf\x29\x2a\x32\x23\x67\x7b\x5f\x71\x48\x36\xa8\x38\x84\x75\xb0\xbd\xe5\x55\x28\x27\x78\x5b\xf0\x9f\x57\x61\x92\x14\xcb\xd2\x4b\x3e\x6b\x3e\x24\xad\xd4\xbf\x08\xd4\x6c\xce\xd4\xa4\xb8\x7f\xe1\xe4\xa1\x27\xc9\x27\x63\x2d\x52\x7b\x16\xcb\x45\x28\xbd\xe8\x1e\x11\x05\xef\x6c\xd5\xb0\x35\xf4\xac\x5d\xce\xa8\xf4\x28\x20\x04\x7c\x19\xdc\xcd\x86\x52\xa0\x39\x81\xab\x14\x3f\x4b\x5f\x8c\xd5\xb6\xb5\xa5\x06\x50\xaa\xb8\xb1\xfd\x2f\x1c\x00\x00\x3d\x9b\xd6\x5a\x06\x97\xf1\x15\xa8\x55\xdf\x51\x5a\x42\x1f\x6b\xfe\xf9\x6f\xe9\x92\xda\x30\x4c\xc3\xbc\xa1\x56\xe0\x05\xf8\x01\x89\xdf\x6b\x86\x29\xe2\xc4\xc5\x86\x32\x72\xe5\x13\xdb\xb3\x0a\x28\x68\x7b\x49\x49\xeb\x49\xa9\x29\x29\xc9\x82\xd1\x20\xcc\x93\x41\x32\xd5\xf8\x55\x25\x58\xe7\xb9\xe7\xc7\x4a\x2b\xe7\x76\xc5\x85\xcc\xcf\x37\xbb\xa9\x19\x75\x7c\xcb\x8e\xf9\x17\x95\xd1\xfb\xb0\x8e\x92\xa4\x1d\x8d\xd0\x73\xaa\xd3\x28\xf0\xb9\x9c\x7d\x35\x4f\x0d\x4d\x90\x89\x64\x0b\x5d\x8e\x58\x53\x35\x7c\xc9\x9a\x45\xd2\xe9\xa6\x15\x23\x1c\xe9\xde\xe8\xc6\x36\xec\xf5\x97\x92\xb4\x9f\x24\xc0\xac\xc0\xd0\xff\x48\x93\x78\xfc\x08\x3c\x17\x5c\x86\x88\xb3\x3c\xcc\x29\xbf\x33\xd1\xb4\x6f\xe0\x9e\xc3\x32\xe4\x76\x49\xe0\xa1\x07\x48\xbf\x80\x15\xf8\xcf\xc8\xe1\x65\xc4\xe9\xd5\x29\x7a\xb5\x70\xfe\xe7\x94\xcd\xfe\x74\xec\xf9\x9f\xaf\x2b\x51\x9e\x68\x2d\x6e\xf7\x29\xf1\xd7\x55\x37\x2e\x05\x8f\x55\x2c\xbd\xa5\x25\xb1\xeb\xaa\xed\xf4\xca\x34\xb9\x37\xf1\x2c\xf8\x64\xfc\x48\x48\xea\xfd\xff\xa8\x69\xbf\x48\x06\xdd\x69\x8b\xfa\x29\x82\x2b\x01\x19\x51\x61\x72\x2a\x6c\x11\x64\xab\x9f\x98\x14\xf6\x07\x38\xc0\xb3\x4a\x59\x6f\x5b\xcb\xeb\xe7\x3d\xd6\x22\x0f\xa0\xf9\xc4\x50\xf3\x03\x9f\x25\xcc\xf4\x35\x24\xc7\xa2\x96\x58\xb8\x09\x34\x10\x9e\x24\x89\x72\x58\xc4\x46\xab\x30\xc0\x1b\x97\xc6\x24\xa3\x26\xba\xb7\x8a\x92\xa0\x41\x88\x53\x94\x2c\x6e\x52\xa5\x0c\x65\x86\x2d\x34\xbc\x8c\x00\xfd\x32\xac\x12\x5a\x02\x0c\x7b\x73\x53\x4b\xc5\xdb\x70\x56\xf6\x57\x0f\xb8\x69\x18\x85\xe4\x39\xab\x02\xc9\x0f\xfe\x01\x77\x79\xf0\x64\x7e\x6e\x02\xff\x28\x10\x08\xda\xc4\xf8\xee\x07\x84\x55\xc3\xbc\xc9\xb9\xf1\x2e\xb7\x9c\x7b\xcf\xe3\xcd\x20\x3d\x3b\x8a\x37\xc3\x27\x3a\xb8\x35\x59\x18\xf7\xb4\x68\xe6\xcd\xc0\xc3\x66\x6f\x2a\x40\x7a\x18\xaf\x24\xd1\x8a\xed\xec\x68\x38\x29\xad\xc3\x81\x1a\x6d\x7d\x3d\x50\x90\xd2\x8b\xa5\x4e\x6a\xf1\x8c\x04\x68\xac\x82\x03\xee\xdd\x61\xf7\x5f\x66\xd3\xc9\xce\x7d\xbc\xd3\x45\x20\xff\xfc\x69\xbf\x7b\x3e\xa4\xe5\x2b\x54\xff\xca\x05\x1d\x43\xdd\xcf\x3d\xa0\xe2\x4d\xc0\xb0\xdd\xd2\x4d\xc1\xdb\x84\xc1\x71\x3e\xb4\x58\x95\xc2\x34\xef\x7d\xdf\x3a\x3d\x52\x27\xc7\x50\x2c\x50\xf4\x07\xb9\xcd\x8d\xfa\xf1\x75\xad\x71\xc1\x8c\x29\xf0\x67\x37\xe0\x5f\xa4\x40\x45\x37\x09\x4f\xfd\x16\x3d\x0a\xd6\x8f\xe7\x68\x02\xc9\xf0\x5d\xda\xd7\x70\x49\x8f\x4e\xbc\x1e\xd3\x96\x89\x6e\x8f\x16\xfb\x03\xbf\x71\xba\x56\x90\xa7\x6f\x53\x8c\x0a\xc3\x17\x1c\xa6\x9b\x42\x7d\xf7\x1c\xbd\x56\xe0\xd3\xdf\x55\x25\x99\xd4\x46\x54\xca\x3e\x34\xcb\x17\xcc\xcd\x46\x3e\xa9\xa0\x62\x16\x67\x9b\x51\x98\xe5\x96\x86\xaf\x3d\x19\x91\x62\xd6\xfa\x2f\x3a\x7c\x0a\x4a\xaa\x20\x6a\x24\x25\x32\x59\xbf\xe1\x11\xf0\xe7\x15\x06\xf9\xfc\x78\x97\x2f\x25\xc7\xdb\xf4\xa0\x7e\x09\xd3\x51\xdc\x10\xca\x0a\x3c\x83\x00\x73\x81\x4c\x10\xfe\xe5\xbb\x2a\x9b\xbe\x5c\x43\x2a\x54\xc4\xad\x43\x6e\x51\xc8\xe0\x44\x71\x51\x32\x37\xa1\x27\x85\xec\x68\x30\x8d\x6d\xc8\xbf\x13\x78\xc0\xc6\xb6\x89\x47\x81\x95\xa4\xef\xb6\xb5\x4a\x33\x44\x60\x44\xfb\x0a\xdb\x29\x54\xbf\xf8\xb8\xa6\x1d\x71\xa0\x69\xa2\x28\x59\x95\xb1\x4d\x58\x3d\x4c\x81\xc8\xc9\xf8\x73\x1e\xbf\x31\x8a\x3b\x36\x5b\x32\x8c\x36\x70\xfc\x3a\xee\x65\x5c\x54\xd9\xcd\xde\x7d\x2f\x34\x7c\xff\xf6\x0a\x2e\x99\x4f\x6a\xd2\xb0\xfd\xe0\x98\xe2\xd8\x9e\xe7\x90\x02\x3f\x1d\x74\x5e\xd1\xd2\x76\x8a\x2c\x2f\x19\xb2\x36\x00\xe2\xe3\xdf\xd6\x04\x9f\xbf\xad\x00\x75\xab\x7d\x93\xd2\x64\x95\xab\x24\x9d\x54\x23\x7c\x27\x55\x53\xa1\x67\x10\x78\x62\xdd\x61\x45\x81\x89\x1c\x6b\xe0\x8f\x94\xc7\x3a\x0d\x1f\xe3\x27\x2b\xc5\x84\x75\x93\x76\x92\x0e\xe9\xd7\x4a\x53\x76\x7c\xa2\x4a\x6a\x2b\x36\x4f\x2c\x18\xbc\xb9\xf8\x4f\xb7\x2b\x8d\x00\xff\x24\x7b\xe9\xda\x8e\xe2\x7f\xc0\x3c\xf0\x4b\x2d\x55\xad\xda\x32\x51\x0a\x78\xb4\x12\x81\x1a\xb8\x83\xcb\x13\x3d\x42\xb2\x5c\x0a\x46\xe5\x59\x00\xe9\x56\x51\xa0\x5e\x57\x7a\x5a\xed\xd4\x1a\x1e\x0d\x70\x5d\x4e\x37\x26\x7c\xb1\x8e\x56\x81\xd4\xf3\xe3\x29\x8f\xcd\xc7\xc8\xaa\xea\xfb\xca\xb6\xd2\x44\x34\x03\x1b\x67\x79\x3a\x32\x51\xa3\x34\xe2\xa3\x60\xe3\x9a\x05\x6b\x39\x4e\x56\xa3\x22\x26\xd0\x3a\x4f\xc0\x49\xf1\xb1\xca\x71\x4d\x5e\xc4\x3a\x1d\x3d\x1a\x7a\x56\x8d\x86\x6a\x5c\x52\x3b\x19\xc5\xed\x30\xda\x41\x0f\xc3\x31\xc9\xbb\x49\xaf\x0d\x5c\xbd\x1b\x2f\x3d\x24\xd9\xd6\x89\x92\xb8\x9f\x82\x90\xfd\x0e\x8c\x12\xe2\x99\x1f\x06\x8a\x01\xfd\x87\x75\xf0\xdc\x67\x9a\x1d\x7a\xde\x3e\x84\x3c\xa5\x42\xc8\x53\x95\x7d\xfb\xe2\xdc\xc1\xe6\xb0\xbf\x96\x85\x6d\x24\xdb\x22\x16\x43\xd7\x2f\xeb\x47\x11\x26\x5c\x72\x43\xc9\x36\xce\x6d\x3a\x4c\xc3\x4c\xb0\x9e\x2c\x5e\xcb\xae\x91\x91\xfa\x70\x7b\x4c\x98\xa2\xc7\xbc\x4e\x56\xa2\xdf\xbd\x7b\x9b\x36\x1b\x42\x4c\xcc\x71\x09\xa8\x21\xa8\xca\x52\x79\x11\xaa\x7b\x2c\xba\x27\xef\x58\xbf\x70\xb5\x0c\x3b\xa9\xe9\x02\x12\x81\xf7\x0b\xae\x57\x3e\xae\x53\xfa\xcd\x86\x36\xce\x67\x7c\x56\x76\x6d\x0f\x55\x20\x44\xcc\x80\xde\x0a\x4c\xc4\x1d\x35\xc9\xf8\x43\x95\xd2\x6e\x99\x3c\x8c\xa7\x20\x1b\x84\x9e\x25\x54\x64\xf8\xe8\x5e\x45\x9f\xaf\x26\xbf\xe9\x86\xaf\x72\x3b\x02\x0e\xfe\xa6\x02\x50\xdf\xc0\x56\xe4\x25\xe3\xe4\x30\xa3\x70\xc9\xa6\x44\x47\x84\x97\x82\x74\xf6\xc7\x81\xca\x6d\x7f\xac\x95\xcf\x48\xc7\x65\x86\x5e\x99\x10\x0e\x34\xdc\xc4\x22\xd0\x17\xc8\x50\xbf\x8b\x37\x23\x49\x8a\x96\x9b\x7c\xfd\xa1\xec\x0c\x20\x55\x65\xb3\xcc\x22\xb3\xb8\x14\x51\x9c\xad\x31\x06\x4b\x49\xda\xb1\x4c\xcd\x29\x7c\xd9\x1e\x10\x7e\x42\x15\x7e\xf3\x34\x1c\x46\x0c\xf7\x50\x23\x4f\x52\x42\x79\x55\xd9\x4b\xcc\x0d\x50\xda\x02\x18\x3f\xd7\x53\x51\xc5\xf9\x2b\xd5\xa7\x79\x33\x50\x90\xfc\xcf\xc6\x7e\xaa\xde\xda\x22\x05\x71\x25\x45\xd6\x39\xd7\xb0\x5f\xd4\x61\xb6\x55\x52\xf1\x43\xb3\x5f\x69\xf6\x93\x01\x44\x2a\xe8\x36\x16\xf7\xb4\xbc\x4b\x79\x8c\xf2\x01\x94\x9a\x8e\xd4\x3c\x91\xc5\x66\x9e\xbc\x1a\xb6\x1b\x8a\x66\x02\x14\x8a\x7c\x5c\x51\x97\x39\x34\xfb\x52\x33\x4b\xa6\x8b\x5f\x43\xf8\xb8\xbd\xa5\xa4\x69\x10\xfc\x3a\xec\xce\x3e\x07\x5b\xa9\x98\x8a\x2f\x39\xa1\xee\x52\x51\x94\xf3\x28\xc1\x08\xee\xd6\x7a\x20\xcf\xcf\x3c\x1c\xe4\x4a\xd7\x2f\xcb\x5d\xc1\xb4\xef\x07\xba\x75\xb0\xae\x28\x7c\x95\x80\x09\x19\x09\x74\x58\x6f\x52\x98\xca\xc7\x95\xe7\x75\xf0\x05\xd2\xf2\xe4\xb1\x7e\xc7\x8c\xe7\x72\xa2\x8b\xaa\xf3\x1c\xc6\x79\x6a\x3a\x66\x0d\x1d\x0e\x27\x23\xbf\xb0\x50\xca\xff\x1d\xae\xb2\xb8\x6b\xc1\x55\x6a\xb0\x63\x97\xbd\x1d\xe3\xf7\xd4\xf3\xdd\x70\x20\x92\x22\xa2\xcc\xb6\xd1\xf3\x80\x0d\xf9\x70\xac\xa8\x01\x4f\xe2\x79\x20\x21\x9e\xa2\xa0\x5a\x28\x0d\xf1\x6c\x9c\xa8\xb6\xa3\xd0\x7b\xaa\xe5\x8b\x03\xdd\xd1\x6b\xaf\x81\xf1\x81\xc7\x85\x5a\x4a\x8e\x42\x8b\xc1\xd6\x99\xbd\x61\x1a\x26\x29\x2d\x4d\x84\x19\xe0\xf4\x44\x10\x79\x87\xee\x05\xd7\x78\xd6\xd5\xa8\xbb\xa1\x4d\xf1\x73\x08\xd8\xef\x2a\x4e\xe5\xd3\x25\xa2\xa3\xca\xef\xed\x9d\x6b\x76\xed\xaa\x4d\xd9\x3c\x09\x24\x97\x62\x0c\x01\xeb\x2a\xf6\xa6\x30\x0a\x7b\x36\x6e\x5b\x45\x35\xf7\x5b\x74\x49\x7c\x5c\x47\xcb\xd1\xec\xda\x28\x92\xa0\x14\x41\x0c\x37\x41\xf8\x44\x47\x47\x09\x72\x4b\x84\x89\x33\x13\x15\x3f\xce\xb4\x1e\x66\xd5\xda\x6b\x71\xde\x0f\x8d\x0a\xd3\x3e\xd2\x61\xda\x47\x5a\xb1\xdf\xa0\x5e\x62\x61\xf8\x65\x8c\x54\x17\x41\xeb\x68\xc3\x47\x79\x64\x56\xd9\xb0\xe1\xef\x8e\xc0\xb0\xf1\x49\x5d\x47\xab\x30\xe5\x79\x37\x49\x51\xcd\x71\xf1\x5a\x71\x5d\x02\x7b\xf7\xc1\xf8\x4a\x12\x99\x3c\x84\xe4\xe7\xdc\x41\x36\x5c\x00\x65\xf1\xb1\xca\x70\xff\xee\x13\x78\x59\x70\x84\xa0\x0a\x40\xd1\x77\x0a\x74\x7b\xb0\x1f\x47\x20\xcd\x86\xff\xd9\xda\x52\x33\x32\xbf\x89\xa5\x8e\x5c\x64\x0a\x90\x22\x0f\x48\x98\xf5\x45\xac\x22\x30\x43\xd4\xf1\x13\x25\x9d\x86\xea\xb9\x0c\x9d\x14\x2b\x41\x9a\x26\xbe\x15\x7a\x8e\x32\x6f\x01\x7c\xd1\x6b\x44\x94\xda\x98\x28\x7f\x33\x33\x11\x73\x1e\x99\x61\x9e\x0c\xa7\x3c\x7c\x99\xc7\xd3\x75\xdf\x1e\xbf\xb2\xb5\xf5\xb4\x00\x8c\xfa\x61\x9a\xaf\x39\x55\x57\x20\x6a\x50\x3f\xbd\x3b\xf6\xa1\x14\xc7\x30\x00\xd3\x4d\xd7\x3a\x83\x55\x1b\x45\x0d\x3f\xf0\xb4\x1e\x94\x26\x49\x1d\x90\x68\xd5\xe5\x13\x08\x19\x77\xe2\xd1\xc1\x8e\x4d\x4d\x7c\x0c\xf4\x7d\x95\xd3\x9e\x52\x49\x49\x37\x49\x6d\xdb\x64\x39\xc2\x35\xbc\x99\xeb\x54\x64\x42\x89\xed\x26\x6e\x9a\xff\x63\xec\x85\x5c\x6f\xd6\xc0\xfa\xf6\x37\xdb\x36\x35\x83\xb0\x2d\xb1\x05\x82\xd2\x5b\x81\x2a\xbf\xdd\xaa\x19\x8c\x5f\x6c\x46\x4b\x49\x09\x31\x7a\x45\x8d\xac\x9d\xd2\xfc\x8b\x1f\xd5\x91\x18\x98\x76\x7b\x94\xe5\x9e\x0b\x05\x36\xe7\x93\xb1\xb7\x3f\x9f\x28\x30\x7c\x16\x8a\x6d\x71\x1c\x02\x5e\xfb\xa3\x76\x56\x81\x13\x42\x17\x9d\xb1\x52\x1a\x7d\xbf\xa8\xa6\x95\xc8\xf4\x56\x48\xd5\x04\x59\xb9\x93\xac\x74\xe9\x4a\x9d\x20\xfa\xfe\x66\x37\x32\xcb\x36\x63\xe4\x2d\x4a\x82\xdb\x5a\xaa\x92\xf1\x89\x86\xde\x36\x26\x75\x5f\x91\x92\x62\xff\x94\xee\xe0\x9e\x57\xbc\x21\x3c\x24\x23\x25\x94\xba\x61\xce\xd4\xc4\xb0\x8a\x8e\x08\xc2\x81\xac\x2e\x56\x9e\x7c\x91\x26\xd8\x34\x0b\xb3\x5c\x0a\xda\x32\x7b\xd5\x50\x94\x2b\xd2\xea\xcb\x4c\xcc\xe8\x28\x2e\x90\xab\x39\xa8\xa7\x60\x25\x10\xb7\x32\x8d\x98\x94\xaf\x7c\x8c\x72\x42\x93\x51\x5d\x54\xf4\x20\xdd\x28\x59\x85\x3e\xa6\x78\x18\x2f\x63\x83\xc8\x10\x3e\xf9\x66\xed\x83\xef\x87\xb1\x6b\x12\xa0\x7e\xf5\xe7\x63\x25\xac\xf5\xe7\xba\xe8\x93\xc8\x34\x95\x2b\xb4\x29\xde\xa4\xcd\x1b\x62\x71\xb6\x99\x26\xa3\x3c\x8c\x6d\xb4\x86\x60\x55\xca\x43\x7e\x9e\xec\x7c\x89\xcb\x25\x6c\x2f\xcf\xa0\x42\x23\x6e\x0f\xef\x12\xf7\x7f\x55\xa1\x15\x2f\x2a\x95\x09\xde\x20\xa8\x22\xdc\xd2\xd8\xdc\x88\x25\x40\xb1\xb5\xc4\xe2\xfb\x69\x21\xa0\xe3\xe0\xf4\xee\xa9\x0a\xc8\x52\x98\x64\xc9\x28\x6d\xb3\x60\x21\x2b\x6e\xe2\xa9\x88\xfc\xe6\xdf\x70\x3f\x13\x76\x6c\x9c\x87\xdd\xb0\x6d\xbc\xa4\x3f\x12\xbf\x0f\xc7\xaa\x79\xf9\x61\xe0\x51\x7a\xdd\x30\x1d\x3c\x5e\x3c\x05\xd4\xc5\xc0\x4e\x87\x80\x02\x4c\x62\x1c\x69\x63\x29\xe0\xf6\x8f\x90\x01\x77\x4c\x3e\x85\x27\x51\xd4\xab\xa2\xfd\xb6\x11\xa8\xbe\xd2\xf4\xa4\x54\x1c\xf1\x64\x3d\xff\x83\x16\x9a\x46\x9a\x2d\x2e\x50\x05\x05\xac\x31\x85\xc6\xc5\x4d\x38\x1f\xfe\xfc\x26\x22\xca\xde\xa3\x8d\x32\x3b\xd2\x7e\x99\xaf\xc0\xa7\x44\x79\xc0\x57\x4f\x7f\x3a\xae\x2a\x5e\xc2\xcb\xb1\xb9\x14\x85\x64\xba\x38\x00\xf2\x2e\xe3\x71\x22\x40\x3e\x41\x8f\xc3\xd1\x83\x17\x17\xca\xff\xa1\xa8\xf1\x6f\xd4\xe9\x4c\x75\x52\x1b\xb7\xfb\xce\x9a\x21\x62\x38\xa1\x92\xd4\x13\x75\xbd\xab\xcc\x0c\x4c\x1a\xe6\x26\x16\x1b\x25\xa3\xb8\x74\xe9\x58\x7c\x5b\x54\x60\x78\xa1\x86\x62\x67\xff\x81\xa6\x19\xd8\x34\x6c\x33\xcf\x97\x13\xd3\xf4\x03\x84\x47\xea\x88\x53\xda\x7d\x23\xc0\x5d\x81\x4e\x29\x18\x95\x72\x67\xd9\x68\x25\x5c\x49\xd2\x4c\x53\x8d\xfc\xa9\xa6\x1a\xf9\x53\xcf\x7a\x9d\x44\x49\x6a\xf2\x51\x8a\x30\x0d\x0b\x0e\x5b\x8c\x8f\x2b\xb5\x94\x7d\x0b\x4d\x1b\xf7\x8a\x74\x67\xda\x77\x07\xc0\x48\x0e\x1b\x70\x19\x3b\x11\x6b\x74\x07\xac\xb7\x44\x1f\x35\x8f\x94\x90\x9a\x9d\x51\xca\x03\xdf\x28\x82\x1c\x55\xc2\xb6\x47\xc7\x5f\xd0\x28\xdf\x38\xb7\x69\x7b\x14\xe5\xf8\xc4\x43\xe4\xe4\x6a\xe2\xe9\xa5\x34\x59\x8d\xf1\x48\xa4\x64\x57\xfc\x1e\x1f\xd7\xa0\xd0\xe6\x9a\x79\x7f\xd5\xa4\xce\x2c\xba\xd9\x42\x3f\x67\x58\x89\x4a\x89\xfb\x34\xee\xe5\xe1\x00\xe0\x14\x11\x2c\xf1\x55\x43\x8d\x59\xee\x87\xbd\x7e\xb4\xb6\x8d\xfa\x40\x32\xfb\x43\x21\x0e\x9f\x90\x89\xc4\xe6\x68\x50\x8b\x8a\x8f\x31\x07\x04\xaf\xb1\x8e\xbd\xca\x27\x75\xfc\xbf\xc3\x34\xe9\x8c\xda\x2c\x9a\x28\x1b\x5c\x07\xbf\x0a\xd9\xe9\x00\xdf\x0b\x6e\x66\xca\xaf\x85\xf5\x0a\x46\x89\x74\x67\x22\x56\x6a\x91\x09\x31\x65\xad\xd6\x4b\x33\xef\xa1\x85\x7f\x42\xe2\xb0\x11\xf8\x29\x17\x24\x6c\x18\x7f\xbf\xa4\x8a\xe1\x24\x50\x4c\xb4\xd1\xdb\x69\x4d\x61\x67\x5e\x0f\x3c\x74\xf4\x9d\x71\x19\x9d\xbe\x28\xf9\xcf\x7d\xa5\xb7\xf5\x1e\x12\x6c\xe9\xee\x3b\x58\xd9\xff\xff\xb6\x1a\x92\x4d\x56\x63\xdb\x99\xf1\x0c\x7a\xeb\x2a\xa9\x65\xda\x2c\xf8\xa3\xe9\x89\x47\xbb\xbe\x1b\xf8\x5f\x5c\xd7\x44\xa6\x7d\xc3\xd5\x37\xdc\x2c\xeb\x22\xf0\x89\xaa\x9c\x0f\x23\x9a\x1b\x99\xae\x6a\xbf\x21\x35\xfc\x74\xec\xeb\xd5\xf7\xf1\xaa\x65\x6c\xc8\x83\x02\x5e\x49\x88\x52\x01\x4e\xd3\x21\xb2\x16\x67\x1d\x22\xab\x3a\xa0\xbf\xbf\xc8\x9e\xe8\xbd\x6d\x5c\x1a\x37\x16\xf7\x6f\x5c\x52\x93\x58\x51\xf8\xaa\x06\x33\xc2\xcd\x22\x1d\x07\xa0\x1d\x37\x7c\x7b\xac\x24\xb3\xce\xaa\x2a\x12\x0d\x99\x65\x1a\xdb\x0c\x07\x20\x3b\xd5\x4b\x0e\x0c\x4d\x06\x0a\x3c\x47\xc4\xaa\x19\x54\xbc\xab\x8c\x92\x2c\xdb\x41\x77\x8f\xe8\x91\x27\xc2\xf8\xa4\xac\x50\xde\x70\xd4\xd8\xec\x13\x19\x19\x4c\xab\xc6\x29\xf6\x2c\xce\x7a\x96\xe3\x05\x9e\x70\xfa\x9f\x4f\xb9\x3a\x44\x77\x14\xf7\x42\x2d\x53\x71\x5b\xc9\x54\xdc\x2e\xb5\x5e\xd3\x34\xb4\x29\xe1\x0a\x45\xb9\x8a\x7e\xd5\x55\xbc\xe6\x0e\x72\x99\x84\xd5\x10\x84\x0e\xd5\x1b\xdc\x07\x1a\x09\x78\x9e\xa8\x1c\x04\xc2\xa5\x7b\x6b\x6e\x3c\xad\x08\xc0\xb8\xdd\x45\x2e\xfe\x3b\x4f\xb6\xbc\xbf\xff\xce\x93\x93\xcf\x29\xd5\x66\xa2\xde\x75\x6e\x0e\x36\xe8\xb4\xa2\xac\x3f\x3d\xde\xad\x86\x6e\x8a\x7c\xeb\xd0\x2c\xc7\xa0\x77\x54\x1d\xf5\x8e\xda\x29\xd6\xa4\x71\x36\x4d\x60\x27\x14\x43\xef\x51\xae\x24\x9c\xaf\x7e\x46\xe0\x8c\xd2\xbf\xab\x12\xaf\x1d\x9a\x7d\xa9\x59\xe4\x5d\x91\xaf\xf8\xb2\xd4\x08\x5d\x9e\xc8\x8e\xf8\x65\x39\x30\xcc\x99\xe1\xcc\xa3\x1b\xc9\x6b\xb4\x7c\x6d\xf0\xe6\xd8\x0f\x01\xd8\xac\x9d\x86\x4b\x6c\xfb\x64\x0a\x80\x1e\xb6\x8c\x01\x3c\xa9\xb4\x2a\xe3\xdc\x14\x1b\x69\x4a\x45\x1b\xd7\x15\x67\x27\x68\xd1\x90\xc1\xbd\xaf\xaa\xc3\xcb\xd6\xc6\xec\xcb\xb5\xc2\x84\xd4\xd1\xdc\x04\xf1\x5f\xc7\x25\xa8\x61\xba\xa3\xcc\x25\xb4\x6a\xc0\x5a\x90\xaa\x3f\x29\x4f\x5b\xd3\x2a\xe0\xff\x19\x7b\x9c\xb3\x89\x73\xd3\x4b\xe2\x90\x04\x33\xbc\x08\xe1\x58\x8b\x0d\xaa\x98\xde\x9a\x9e\x65\x1d\x2c\x89\x7e\x94\xc1\xad\x4e\xcc\xbc\xfc\x72\xb3\x13\x9a\x28\xe9\x31\x28\x07\x9e\xfa\x86\xea\xba\xde\x50\x2d\x06\x33\x48\xe2\xde\x0e\x9f\xfb\xed\x98\xfc\xf5\x2e\x4f\xe4\xfa\x3c\xa8\xed\xbb\x9a\xeb\xf0\xc8\x58\x89\x31\xa3\xdf\x84\xe1\xa0\xc7\x2a\x55\x84\xfd\x2f\x1c\x68\x76\xec\x2b\xa6\x41\x18\x13\x27\xec\xe6\x25\xba\x6a\x24\x65\x87\x91\x71\x2c\x04\x52\xc7\x57\x35\xec\xd7\xd5\x4e\x68\x9b\xb4\x93\x51\xb5\x1c\x51\xf4\x7b\xb4\x42\x50\x81\xbf\x3d\xf6\xf6\xe6\x7c\xa0\x0a\xcb\xd5\x0e\xf6\xc2\x42\x33\x0b\x5f\x63\x8b\x89\x82\x08\xf7\xc2\xf9\xc4\xad\xa1\xa5\x24\x89\x35\x5d\xd0\x71\x45\x17\x74\xbc\xd2\x07\xda\xb7\xd0\x5c\x8a\x4c\x7b\x99\x87\x5b\x90\xca\xfd\xbb\xb1\xaa\xe2\x9e\x53\x8d\xe5\x73\x15\x9d\xc1\x2f\x35\x97\x4c\x4a\x48\x04\xdc\x3a\x7c\xaa\x43\x67\xf8\x46\xc7\xb9\xf1\xe7\x37\x13\xb2\x7f\xa5\xb9\xb0\x70\xe0\x31\x7a\xcf\x78\x39\x3f\x44\x10\x0f\x58\x16\x00\xa8\x38\x7e\x84\x42\x1b\x66\x0d\x0a\x7c\x56\xf8\x67\x28\x77\x62\xb1\x72\x7f\x50\xc8\x6d\x1b\x8b\xa2\xe8\x01\x94\x10\xec\x28\x57\xdc\x51\x1a\x63\x50\x92\x68\xef\x2a\x4e\xff\xbb\xf0\x46\xe8\x35\xfe\xb7\x40\xd5\x76\x2e\xd7\x91\xf6\x0d\xd3\x64\x6a\x73\xa9\x17\xe0\xa2\x6b\x04\x11\xc5\xbf\xff\xac\x92\x56\xbf\xfc\x72\xb3\x9f\x64\x79\xc8\x53\x69\x88\xec\x51\x35\x86\x1b\xe1\x9a\x9b\xd4\xa6\x3c\x81\x67\x2f\xd9\x4d\xff\x83\xda\xfd\x7a\xe0\x4b\x60\x3f\xd7\x82\x93\x97\xb9\x0e\xad\x43\xd6\xf8\x95\x5f\xe3\xa0\xe1\x24\xd9\x1f\x1c\x6f\xe0\x75\xe3\x66\xef\xe0\x91\xe2\x8a\xef\x01\x39\xe3\xc6\x45\x1c\x54\xff\xea\xd8\x97\xcc\xce\x06\x8a\x3c\xee\x9e\xd2\x8d\xb8\xed\x01\x81\x79\x32\x30\xed\x7e\xa6\x59\xee\xca\x8c\x07\x35\xe3\x72\xd9\x88\x5a\xa4\xce\xf2\xa3\x50\x33\x35\xf1\x48\xfe\xa9\x56\x59\xff\x6c\x30\xb0\x31\x51\x2f\x6b\x4a\xfb\xc3\x1a\x57\x7c\xb8\x46\x42\x64\xa1\x99\xf7\xd3\x64\xd4\xeb\x4f\x15\x4b\x06\xee\x6a\x4a\x35\xf4\xcf\xd1\xa3\xc2\x1a\xdb\xd9\x52\x6e\x3d\x81\x82\x9a\x1e\x91\x6e\x28\x4e\x2f\xfa\x59\xac\xba\xdb\x2a\x72\x9a\xdf\xf7\x2f\xf8\xfa\x60\x39\xb9\x5e\xc5\x27\x95\x24\xa3\x48\x7f\x92\xdc\xc6\x79\xc8\xd9\x0f\x22\x24\xb4\xad\xf8\xd8\x8d\xe2\x16\x7f\x96\x47\x32\x20\x84\x45\x3e\x45\x7e\x0f\x48\xaa\xcf\x10\x45\xb0\xf8\xa5\x0a\x51\x6c\x34\x22\x59\x2b\x05\xa4\x3d\xa5\x5a\x96\xa7\x54\x24\x49\x8d\xac\xf6\xa3\xb8\x05\xac\x8c\x47\x5b\x5e\x70\xee\x2d\x95\x96\xfd\xaf\xa8\x3e\x38\x2d\x57\x37\xe7\xc8\xe9\x89\x43\xa7\xfa\x89\x19\x2e\x32\x20\xf6\xbe\x0b\xfc\x1b\xae\xe1\x6d\x84\x70\x68\x33\x82\xa8\x5c\xe1\x02\x0e\xb8\x15\xeb\xb8\x7a\x20\xe1\xcc\x56\x1a\x31\xc0\xb6\x89\xd2\x5d\xd9\x56\x69\x4b\x2c\xce\x16\xd1\x66\x16\x26\xb1\xc9\x2d\xb3\x9d\x6b\x05\x07\x09\xbe\x95\x0c\x47\xd8\xee\x43\xe2\xa9\x2c\xdb\x8f\x34\xff\x7b\x78\xdc\xd8\x32\x1f\xa9\x38\x22\xb5\x51\xd8\x0b\x93\x38\x53\xc2\xf3\x8c\x1b\x80\x91\x3b\xae\x46\x61\x34\x9a\x27\x49\x07\x3b\x8a\x8f\x20\x4b\x78\xca\xcf\xaf\x8e\x9e\x68\x29\x05\x7d\x9e\x05\x82\xd1\x07\xea\x1a\x2b\xf4\x30\x82\x01\x00\x76\xb9\xef\x0a\x53\xba\x1b\x96\x06\x0d\xaa\x6b\xb5\xdd\xe4\x34\x59\xe6\xb1\x36\x40\x1f\x51\x5c\xe0\xe3\x3a\x25\xbf\x4e\xd8\xed\x12\x23\xdd\x94\xe2\xb8\xb8\x5c\xe2\xb0\x2e\xbe\x4d\x64\x85\x6a\x40\x0d\xed\x24\xb5\xe4\x3c\xb1\xe1\xa1\x32\x85\xe5\x8b\xc0\x17\x0f\xfa\x30\x99\x26\xa9\xfa\xd7\xf8\xce\x8e\x8d\x0c\x92\x2d\x06\xd9\x04\x8a\x64\x72\x5d\xa5\xb7\x83\xe4\x35\x52\x40\x57\x4d\x3f\x85\x5d\xbc\xa8\xd2\xb2\x4e\x98\x59\x93\xd1\x68\xd2\x5c\xbd\x74\x79\xe3\xe1\xf4\x01\xff\xd0\x75\x8f\x28\x3c\x5a\x9c\x75\xf9\xb3\xca\xa5\x3d\x8b\x01\x80\x31\x19\x62\x54\x98\xcc\x9b\x5a\x17\xe0\xa6\x22\x1e\x59\x0d\x87\x98\xff\x85\x27\x7b\x4f\x05\x9a\xef\x3d\x74\x60\x3d\x37\xcb\x66\x90\xa4\xe1\xc3\xa5\x9a\x7d\x44\x93\xaf\x0d\x31\x0b\xfb\x95\xd2\x44\x28\x1a\x12\xdb\x5b\x7e\xa6\xf0\x81\x32\x30\xc3\x34\xc9\x86\x82\x45\x70\xb2\x0d\x0e\x43\x70\x5e\xcd\x7c\x1b\xce\x30\x5c\x60\xab\xa2\x5c\xc5\xbb\xc6\x75\x9e\xe9\xd2\x6c\xbe\x1b\x1a\x29\x4f\x2a\xe8\x99\xfd\xcf\xfb\x24\xa5\xf8\x3c\xc5\xf3\x69\xc9\x4a\xb0\x94\x3c\x9f\x6c\x1e\x01\x3a\xf8\x42\x73\xef\xdc\xa3\x8a\x06\xe9\xc7\xe4\x62\xf1\x28\x7e\x86\x8f\x8a\xa4\xa7\x2a\x09\x80\x73\x45\x3e\xa2\x28\xcc\x30\xe5\xc4\x43\xed\x94\x25\x31\xd3\x39\x25\xa3\xe8\xf8\xff\x84\x62\x5e\x01\xff\xf8\xc1\x89\x4b\x98\x27\x11\x6a\x74\x9f\x5e\x83\x68\x70\x5a\xd5\x7b\x59\xa1\x82\x4f\xe8\xd1\xe3\xf7\x41\x34\xc2\xc7\x0a\x06\xdc\x35\x6d\x6a\x6b\x6e\xa7\x37\x2d\x32\x2f\xbe\x5e\xb1\x1d\x7d\x49\x14\x7d\x4f\x28\x25\xe4\x3f\xd0\x54\xbb\x3c\x0e\x29\xf6\x1c\x5e\x83\xff\xab\x4e\xd5\xb8\x9d\x0c\xc2\x76\xc3\x7b\x1e\x74\x56\x44\xfa\x51\x19\xc2\x41\x32\x5d\x99\x28\x80\xf1\xfa\x76\xe0\x51\xf0\xb7\x02\x3d\x82\xe0\xd2\x2c\xdb\x5e\x2e\x75\xde\x0e\x6b\xe0\xfb\xe1\x0a\x69\x01\x0d\xe7\x99\x41\xb1\x50\x1a\x8a\x3f\xe6\x5b\x6a\x48\xf7\x5b\x95\xc8\x9a\x50\x9d\x6e\xa2\xcd\x41\x1e\xf7\x39\xf8\xa3\x23\xeb\xc8\x06\xc9\xb2\x33\x92\x8c\xda\xa3\x02\x12\x96\xd1\x13\xb4\xa5\xf0\xc2\xb7\x4c\xe4\x43\x26\xcf\x6d\x26\x80\x20\xa7\x62\xe1\xf2\xfd\x7f\x71\xda\x0d\xcc\xe5\xfd\x22\xb8\xc9\x77\x15\x97\x81\xe2\xee\x96\x89\x37\xc1\xdc\xad\xc0\xee\xdd\xdd\xf2\xa4\x4e\xff\xf9\x8b\xe0\x37\x15\x52\xf4\xaa\xd4\xb2\xb8\xc3\x62\x9d\xc2\xf9\x5f\x51\xb2\xec\x8d\x49\x71\xaf\x02\x00\x6f\x7c\x4d\xb8\xe0\x8e\xaa\x35\x16\x85\x26\xcc\x92\x18\xf9\xa7\xe4\x09\x74\x09\x22\x16\xe2\xed\x5a\x6c\xc2\x08\xf1\x09\x5e\x33\x1a\xde\x7c\xec\x0a\x1f\xc9\x10\xbd\x95\xe2\x75\x3a\x51\x6d\x07\xf0\x39\x52\x6a\x47\x44\xa3\x01\x22\x4b\x98\xab\x4f\x02\xdf\x8e\xff\xa4\x58\x2b\x12\xb0\x49\x1b\x14\xf7\xc5\x14\xbe\x7c\xa2\xb4\x42\xc2\x48\xa6\x12\x45\xf5\x8e\x1e\x19\x9f\x54\x85\xa2\x17\xf7\x3f\xd3\x5c\x5e\x8b\xc2\x57\x1b\xbe\x1c\x72\xbb\x54\x3b\x7b\x4c\xb9\xa5\x15\x9b\x3d\xe2\xcb\x41\xeb\xba\xc3\xc1\x62\x3f\x90\xf4\xbc\x4f\xaf\x40\xc6\x33\xb5\xea\x5f\xa0\x02\x52\x90\x2e\xc2\xa0\x6c\x9b\x78\xc4\xca\x1f\x22\x70\x10\x0a\xbf\xcd\x1b\xf4\x6b\x73\x4d\xb3\x94\x8c\x40\x1c\xe1\x04\x26\xdc\xfc\xf9\x29\x5a\xde\x32\x5b\xb7\xf9\xc3\xfb\x16\x0a\xe3\x9e\x32\x0b\x2e\x0c\x1b\x38\x3f\xf9\x58\x75\xe4\x78\xba\xbb\xc8\x77\x9d\x76\xc9\xba\xd2\x2e\x59\xaf\xb3\x1d\x14\xfb\x4e\x69\x6e\x7c\xfa\x76\x44\x8c\x10\xd8\x11\xce\x88\xba\xa1\x7d\xbb\x62\x01\xa0\xac\x53\x97\xaf\x99\xd7\x65\x71\x5c\xdc\x4e\x1d\xe2\x49\x51\x41\x86\x28\x01\x20\x2f\xba\xac\x27\x83\xee\xc1\x5a\x8a\x1b\xf4\x69\xe0\x5f\xfa\x0e\x4c\x3f\x4d\x06\x49\x96\x0c\xec\xf4\xd6\x67\x9c\x8e\x53\x43\xe4\x02\xe6\x9e\x6c\x29\x6a\xbb\x0b\x4a\xca\xe1\xd1\x8a\xf0\xf0\xa1\xd9\xfd\xc4\x1c\x8f\x8b\x46\x8b\xe2\x1d\xda\xc0\x7c\x1c\xec\x51\x1c\x0e\xbd\x3e\xf1\x9d\xf8\xe5\xf9\x5b\x63\xc5\x7d\x72\x41\x81\x46\x2e\x96\xda\xb3\x26\x1b\x60\xa7\xaa\xb0\xc8\xc5\x48\x0a\xf0\x9b\x8d\xd2\xae\x61\x9e\x40\x27\xb9\xe5\xe5\xb7\x54\xcc\x11\x25\x4b\x4b\x6b\x33\x4a\x4d\x05\xc0\x07\x74\xfc\xff\x02\x9b\x41\x9c\x44\xb1\x62\x78\x9e\x11\x59\xbc\x0c\x37\xfa\x9a\x67\xde\x4f\xad\xc9\x6d\x6c\x3b\x5a\x55\xfc\x3d\x9d\x88\xbc\xa7\x82\xc2\x57\x6c\x9a\xd9\xb5\xe9\xb2\xe4\x0b\xa5\xc9\x2e\x43\x74\xe5\x22\x66\x3a\xe4\xbf\xaa\x9b\xf3\xee\xa6\xd6\xae\x1a\x48\xdf\x09\xd9\xa6\x0f\x56\x4e\x55\x7a\x8a\xd4\x0e\xe4\x0e\x0d\x37\x5e\xb0\xa3\x8f\xe1\xbe\xf9\x44\x61\xae\x87\x69\x98\x87\xcb\x61\xcc\x0d\x48\xd4\x08\xae\x6b\x15\x9f\x73\xba\x15\x7e\xf8\xa1\xf4\xd3\x4c\x27\xc3\x90\x13\x64\x58\xdb\x5a\x1e\xb9\xc9\xc1\x31\x16\xef\xbd\xca\xd7\xbc\xfc\x32\x0d\xbb\xd9\x74\xc5\xe4\xe1\x8a\xa4\x62\xce\xa1\x14\xdf\x29\xf2\x1b\x3e\xa5\xea\x9b\xa1\xb0\x67\x60\x15\xdf\x52\x92\x28\xb7\x4a\x06\xbc\x9b\xbd\xaa\x88\xda\x7e\x4f\x11\xb5\xfd\x9e\xa2\xd8\xcf\x06\x49\x92\xf7\xa3\x35\xe2\xaa\x03\xf0\x01\xad\x32\x3e\x46\x4e\x28\x80\x48\x55\x55\xd1\x80\xcc\xcc\x1a\xc6\xfe\x20\x52\xfa\x0e\x19\x50\x19\xe9\x56\x03\x64\x3c\xf5\x86\x55\xfa\xb3\x8a\xdd\x78\xae\x39\x8c\x46\x83\x25\x57\xd4\x40\x4d\x13\xd9\x3c\x1f\x57\x16\xc0\xa1\x59\x72\x6b\x83\x30\xcb\xc3\xf6\x94\x8e\x87\xa8\x3a\xe3\x98\x3f\xe7\xe7\xb9\x22\x73\x4f\x01\x33\x3b\xd6\x74\xa2\x30\xb6\xa4\x71\xe7\x66\xb6\x1c\xb3\xf6\xb5\xb1\xa2\x22\x62\x41\x74\x7c\xe1\x6d\xad\xed\x7c\x3a\xf0\x4e\xfe\x28\x47\x71\xf2\x1e\x37\xdb\x98\x97\x5f\x6e\xf6\x52\x51\x87\x47\x8a\xce\x22\xc5\x7c\x52\xd1\x18\x9c\x9f\x6f\x9a\x94\x3a\x42\x8e\x7b\x8f\x87\x18\x03\x3f\x90\xfe\xe9\x43\xf9\x88\x22\x93\xf6\x2c\x91\x7a\x23\x10\xbe\x41\x8f\x02\x2d\x9d\x9f\x57\x72\x4c\x53\x13\x45\x7e\xfb\xc8\xa4\x46\x81\x31\x4e\x78\x42\x4a\x26\x2c\x0a\x5b\x22\x93\x17\x35\xb0\x1e\x92\xaa\x6f\x7b\x08\x1b\xec\xd1\xe5\x40\x4f\x80\xa8\x91\xfa\x0a\xbc\x78\x61\xa1\x38\x53\x44\xe7\xc7\x15\xd1\xf9\x71\x95\xec\x2c\xa5\x61\x9e\x43\x60\xd8\x4f\xb5\x79\x5c\xdf\x5d\xaa\x32\x32\xf3\xb2\x0a\x1b\xe2\x24\x94\x0c\x55\x8f\x4c\xe1\xcd\xfd\x09\x5e\x3d\x13\x3c\x07\x1e\x04\x76\xc4\x27\x9e\x11\x29\x1b\x23\x20\x17\x0d\x92\xe2\x6a\x45\x9c\x64\x73\xd0\xbb\xff\x85\x03\xcd\x76\x94\x64\xa0\x82\x41\xd2\x3e\x4d\x49\xbb\x7e\x1c\xd2\xd1\x2d\x0d\x5d\xb5\x9f\xdf\xe1\x03\x65\x60\xe7\x71\xa3\xd7\x02\xa5\x44\xfc\xe8\x44\x11\xd8\x4c\xb7\xb4\x98\xb4\x82\xb1\xfd\x31\xd6\x2e\x6c\xc1\x95\x12\xc1\x74\x0d\x17\xc9\x28\xee\xd8\xb4\x88\xee\xe9\xd5\x8b\xa6\x9a\x07\xad\x5d\xad\x94\x7c\xe7\xe7\x9b\xcb\xbd\x25\x7a\x6f\x8e\x46\xa8\xf8\x41\xe1\x30\xdd\xbc\xb4\x16\x67\x9b\x4b\x49\xdc\xd1\x3b\x42\x49\x18\x7d\xea\x92\xdf\x41\xd8\xc9\xf2\x29\x25\x7f\x7c\x56\x29\xe7\xdd\xd6\x37\x75\xba\x62\x59\x0e\xcd\x7e\xa5\x99\xda\x4e\xc2\x34\x3c\x22\xdd\x56\xe4\xa6\x70\x80\xa7\x89\x41\x4b\x6a\xb9\x9f\x2b\x29\xb2\xa5\xa6\x9d\x0b\x8d\x1b\x4b\xc3\xd3\x7b\x16\x99\x78\x4f\x60\x1c\x45\x20\x23\x9c\x73\x69\x8c\xaf\x04\x43\xb0\x08\x66\xf5\x9d\xb1\xee\x57\x0d\x6c\xb7\xf8\xfa\xf9\x79\x31\xb4\x67\x40\xea\xc0\x27\x95\x75\xf4\xf2\xcb\xcd\x25\x93\x2d\xdb\x5c\xc9\x1d\xa3\xc8\x2d\x4d\x20\xd7\xe9\xb4\xa9\x35\xd1\x94\x0f\x1b\x18\xcb\x84\x3c\xea\xb2\x9a\x88\xde\xad\x74\xec\x3b\x23\xd6\xf5\x93\x6a\x81\xe2\xae\x39\xa5\x34\x72\xfe\xaa\x62\x8c\xd1\x2e\xca\x2d\x2b\xd8\x39\xc6\xf9\x2b\xaa\xc9\x74\xc5\x0d\xfa\xb8\xaa\xb4\xd4\x64\xb1\x8a\xdf\xa4\xcb\x02\x8c\xe9\xe8\xd8\x0f\x6b\x9d\x2b\xb9\xb7\x76\xf2\xfc\x13\x14\xc0\xe0\x43\x57\xe9\xfe\x91\xdd\xbd\x41\x1f\x42\x44\x45\x6f\x60\x83\x27\x04\x98\x05\x86\xe7\x00\x24\x70\x26\xc7\xc5\xf0\x2c\xb2\x69\x6e\xee\xcc\x47\x01\x57\xc6\x0a\xe5\x74\x39\x28\x81\x80\x8b\xd7\xcd\x57\x1b\xa8\xb9\xb5\x9b\xd4\x7e\x43\x6b\xe8\x6d\x45\x8c\xf8\xbf\x05\x8a\xb3\xfe\x83\x4a\x0c\x34\x77\xb0\xd9\x4b\xcd\x8a\xcd\x72\xac\x08\x61\xc8\xf5\xc5\xf3\x0f\x7d\xe7\xa0\x1f\x0e\x87\x36\x45\x86\xc8\x54\x62\x1a\x6a\x7b\xc4\x73\x4b\x0e\xad\xed\xec\xf0\x2f\x81\x03\x0c\xdc\xcf\x7d\xdc\x29\xaa\x18\xbf\x43\x46\x10\x06\xe9\x7d\xfa\x55\x60\x43\xfe\x56\x4b\x81\x27\x6e\x69\xed\x3e\xae\xa7\xc2\x86\xdc\xa9\x1d\x04\x33\x83\x64\xe4\xd4\xcd\x60\xf8\x98\x4e\x9f\x4f\x7c\x93\xd7\xa6\x16\x86\x1c\x93\xbf\x97\xe8\xbd\x22\x94\x38\x49\x60\x35\x1c\xbf\x35\xd6\x14\xfa\x69\xb8\x6c\x67\x54\x33\xe8\x0e\x48\x40\x05\xfc\xad\x16\xd7\x03\x25\x61\x7b\x21\xf0\xbd\x8b\x77\x9c\x88\xc7\xc0\x64\xdf\x18\xd9\xd4\x78\x99\x4a\x54\x6e\xd0\xcd\xe7\x63\x67\x94\xbe\x31\x0a\x2d\x0f\x73\x21\x95\x3a\xa3\x44\x9f\x1b\x44\xac\x26\x44\x29\x3e\x18\x7b\x83\x82\x36\x01\x0e\x3f\xa9\x74\x47\x44\x59\x81\x9e\x8d\x10\x1f\x78\x90\xe6\xb9\x8a\x2d\x78\xae\x59\xa4\x3e\x45\xd2\xe2\x19\x5e\xfb\xf4\x09\xa9\x7b\xd5\xe4\x82\xe9\x68\x29\xb2\x0a\xbf\x8f\xee\x83\x2c\xe8\x0a\x49\xfc\x0b\x07\x9a\xaf\x8c\x3a\x61\x3b\x2c\x4c\x89\xe7\x6f\xc5\xaa\xd1\x62\x6f\xf0\x35\x9f\xea\xf0\x72\xd4\xe9\x58\xe2\x75\x2d\x12\x02\x74\x9c\xef\x29\xad\x88\x7b\x15\x96\xf4\xb9\x83\x45\x58\x5c\xf8\xe6\xcc\x8e\x30\x3c\x8b\x70\xfa\x9c\xa2\x75\xae\xe6\xa8\xb4\x6d\xac\x8d\xa7\x3c\x00\xf1\x5d\xfa\x00\x58\x50\xb6\x00\x80\x84\x6d\xd1\x98\x68\xad\xbb\xc8\x66\x3b\x7d\x9e\x7d\x05\xfb\x59\xf4\x06\x69\x65\x23\xc6\xf9\x01\x7d\x9d\xee\xb0\xb8\xe9\xb5\xb9\x83\xbc\x8e\x73\x25\x79\x36\x26\x1c\x0a\xe0\x71\x97\xc0\x0a\x50\x82\x8a\xe3\x71\x5f\x76\xb6\xba\x9f\x00\xae\xef\xba\xfc\x9b\x6a\x29\x3e\x6a\x1d\xc5\x61\xe4\x69\x6f\x85\xa8\x98\x96\xaa\xe6\x99\xc4\x65\x68\x32\xa7\x64\x35\x7b\xcc\xcf\x7a\x34\x26\x4a\xb1\xea\x81\xa2\x0e\xba\xa0\x2f\xf0\x14\xec\x23\x2d\xdc\xbf\xfd\x6c\xab\xf1\x35\x11\xf2\x39\x8e\xf2\xaa\x1b\x20\x2e\x5e\xb0\x88\x33\x7b\x19\x9b\x8f\xc7\x9b\xcd\xc6\x7e\xa7\x42\x52\x18\x1a\x14\x69\x00\x09\x83\xcf\xfc\x85\x89\x27\x47\x58\x7e\xa6\xe5\x13\x4d\xd3\x19\x45\x79\x36\xa5\xf4\x2c\xd1\x88\x94\x92\x9e\xe2\xf0\xbe\xab\x5a\x8a\xd9\x28\xdb\x5e\xbc\x2d\x44\x65\x0f\x60\x7d\x61\xfb\xaf\x6b\xb1\x32\x48\x74\x3a\x3c\x9d\x63\xdb\x9d\x56\x5c\x3c\xbb\x5a\x7e\xda\xbe\x31\x11\x33\xdc\x37\x83\x01\xa1\x04\x74\xd5\x74\x6b\x4b\xc1\x0c\xce\xeb\x39\xb4\xeb\xaa\x14\x3d\x30\x79\x6e\xd3\x6d\x1e\xaf\x83\x89\x64\xfc\xf2\x35\x64\xe8\x42\xea\x52\xfc\x34\xde\xc9\x31\x7a\x59\x3c\x37\x8b\xc0\x07\x6b\xb1\xca\xf7\x59\x6c\xa7\xd4\x0c\x1b\xbe\x73\x02\x8c\x2e\x1f\x3f\x54\xb3\x21\x32\x4b\x09\xa3\x85\x18\x6f\xa5\xe8\x8d\xef\x06\xa5\x05\xb2\xd9\x60\x3c\xd7\xec\xd9\x38\x8f\x6c\x4c\xd2\x86\x8b\xb3\x5e\xad\xcd\x37\xb5\xab\x4a\xe7\xf3\xf3\x07\x48\x26\x2f\xb2\xaf\x96\x34\x15\x1a\x8e\x93\xa3\x0a\x4b\x2d\x7c\x4b\xdf\xac\x58\xe0\x33\x1c\xb7\x98\x4b\x76\xfa\x1a\x45\x7d\x5e\x4d\x69\xdb\xc1\x92\x7d\xed\xb5\x08\x61\xd7\xa2\x83\x1a\x29\xf5\xfa\x8b\x75\x1d\xb7\xae\x09\x23\xc5\x34\x76\x56\x91\xee\x9c\x7d\xe8\x74\x6a\xc7\x9a\xc8\xa6\xb2\x3a\x4a\xc2\x35\x48\x39\x99\xa4\x1e\xa1\xe1\x94\x2b\x62\x87\x03\x12\x67\xa0\xdf\x43\x21\xe9\x3e\x99\x17\x3e\x56\xa4\x3d\xd9\x20\x59\xb6\xb0\x06\xb0\x16\xbb\x26\x4a\xa4\x0d\xc0\x3d\xac\xbd\xe9\xd6\x13\x25\x91\x44\xd2\x77\x77\x83\xb8\xc7\x00\x25\xc2\x73\x7c\x27\x50\x4a\x38\x47\x09\x1d\xe1\x8a\x68\xba\xcf\x78\x68\xb6\xa4\x8f\x85\x9e\xc3\x7d\x4f\x24\x1b\x0e\x0b\x7f\x6a\x96\x35\x18\x10\x8b\x49\x9a\x18\xde\xb2\x51\x98\x60\xc2\x78\x46\xa5\xff\x30\x66\x28\x14\x03\xde\x04\x9b\x3a\x4d\x65\x0a\x54\xe6\x00\x9c\x62\x6a\x9e\x89\x9e\xd2\x79\x75\xa6\x88\xc2\x84\xa5\xb2\x84\xfc\xf2\x49\x18\x48\x13\xf0\x1e\x41\x4e\x82\xc8\xf7\xc7\x0a\xdb\x97\x26\x09\xe4\x96\x11\x44\x6e\xc7\x8c\x94\x40\x95\xe8\x51\x39\xd8\x95\x53\xb9\x78\xaf\xb2\x28\xf6\x2d\x40\x1e\x78\xd5\x66\xb9\x4d\xe3\x12\x93\x84\x2a\x4e\x9e\x57\x14\x95\x4b\x26\x77\x6a\xa9\x8e\x32\xd5\xd3\xa7\xd6\x79\xd0\x6e\x92\xe6\xfd\x36\x89\xdf\x23\xf7\xd6\x8d\x28\x51\x1f\xf4\xb1\xdd\x7a\x65\xad\x2f\xce\x36\x93\x15\x36\x4c\x92\x10\x17\xcf\x85\xa9\xd6\x4a\x0f\x92\x96\x17\x3a\xa1\xd7\x88\x7e\x08\x4b\x06\xc3\xa1\xb0\xf5\x33\x15\xe1\xe9\x43\xb3\xfb\x41\xe8\x35\xe5\x2d\xed\x0c\x4a\xb5\xce\x3d\x38\x1a\xf7\x7b\x75\x38\xf1\x6e\xd8\xb1\x98\x2c\x5c\x58\xe0\xd5\xf8\xbe\xe6\x1c\x79\x5f\x89\x2c\x25\xdd\x6e\x66\xf3\x1d\xf4\xf5\xd2\xde\xf7\x10\xce\xe3\x63\x9f\x83\x1f\x2f\x8d\x1d\x29\x92\xdb\x5b\xd8\x1b\x38\xd9\x06\x00\x1e\x9f\x20\xd1\x86\xf7\xba\x56\xa9\xdf\x14\xe1\x6f\x2f\x0d\x01\xb9\xb7\x4a\x7f\xf7\xa2\xd6\xdf\xd5\xcd\xf3\x81\x19\xa5\xa2\x10\x23\x55\x25\xfa\x53\x3e\x29\xa9\x47\x25\x9d\xde\x5a\x43\x05\x37\xeb\x4a\x8a\x65\xbd\xd2\x77\xdb\x3b\x47\xd1\x95\x1b\x8c\x45\xe7\x87\xb9\xa8\xf9\xa4\x0e\xa5\xde\x4b\x12\x30\x04\xc0\xe9\x6c\x69\x95\x58\x35\x7d\xf8\x74\xc9\xe5\x26\x03\x1b\xe5\x9d\x64\x15\x9c\x26\xa2\x5a\xd8\x70\xc2\x22\xb7\x2a\xaf\x54\xcc\xe5\x52\x1c\x51\x5f\x03\xef\x83\xa3\x4c\x3e\x51\x73\x17\xd4\xdf\xce\x13\xb0\x98\x70\xb3\x38\xd0\x8d\x63\x85\x11\x1f\x65\xfd\x30\xee\x6d\x2b\xd6\x26\xfc\x38\x24\x38\x5c\xab\xcc\x61\x72\x00\xa1\x70\x02\x32\xfb\xa4\xba\x70\x13\x57\x81\x98\xf5\x8a\x0b\xfe\xa3\x35\xea\x00\x38\xc6\xd5\xf3\xc8\x12\x35\x80\x5e\xca\x51\xde\x90\x2c\x9b\x4c\x7c\x01\x38\x6f\x3e\x51\x43\xfd\x2c\x81\x8b\x6d\x76\x56\xcd\xa4\x14\xb9\xb2\xf0\x15\xf8\x3e\x8f\x6f\x3e\xac\xab\xa0\x62\x68\x87\x43\x16\x26\x12\xa6\xdd\xe2\x0f\x85\x82\xd7\xcf\xbd\xaf\x86\x79\xbf\x93\x9a\x55\x13\x31\x51\xb0\x03\x67\xb8\xfc\xd9\x37\x0f\x33\xf2\x16\xba\x27\x08\xcb\x2c\x4b\x4d\xdc\x56\xd7\xa6\x79\x18\x59\x25\xc1\x0f\xf1\x13\xd1\xa0\xd9\xe3\xaf\x33\x4d\xd0\xa6\x6d\x38\x62\x85\x1b\x2a\x75\xb9\xa1\x9a\x0c\x79\x1a\x16\x17\x59\x44\xd4\x48\xad\xa6\x48\x03\x81\x8f\x27\x9e\xda\x06\x7a\xa5\x9a\x5e\xe8\x8c\xa2\x17\x3a\x33\xf6\xc2\x62\xc3\xc2\xc0\xe5\xac\x38\x21\x1a\x49\xc5\x95\xf0\xb1\xbb\xa1\x24\xcd\x6d\xcf\x64\xa5\x7e\x01\x28\xf9\xe5\x71\xd1\xb3\x43\x9a\x77\xc9\xf5\xd1\xa3\x11\xaf\x0d\xb8\x31\x14\x5b\x80\x29\x7c\xa4\xe5\x41\x47\x5b\x26\x3b\xdd\xc5\xc7\xbc\x2b\x61\xad\x59\x68\x98\x4f\xea\x44\x1b\x6d\x94\xd9\xd5\xbe\x65\xf6\x53\x47\x77\xb9\xe8\x8e\x55\x18\xbc\x1a\x02\x1e\x0b\x08\x1f\x5f\x33\x9f\xb8\x5b\x1d\x58\x68\x40\xd2\xe3\x63\x95\xa2\x89\xdf\xdd\x3f\x47\xd7\x8d\x5d\xc0\xe0\x4b\x51\x8a\xf4\x15\xb3\xdc\x46\x16\xa3\xab\x3b\x28\x2a\x43\x10\x72\x07\x71\x37\x9f\x50\xc7\xdb\xcd\x1b\x38\xae\x81\x4f\x61\x70\x9d\x1a\x9b\xef\xe6\x5c\x54\xad\xaf\x1f\x69\xb5\x6f\x77\xe9\xed\xd4\x76\xc2\x9c\x91\xba\x4c\x54\x46\x41\xd6\x06\xd6\x14\x12\x8d\x0f\x54\x36\x94\xf7\xcd\x4c\xe3\xe0\x0b\x8e\x2a\xc2\xfb\xba\x3b\xf0\xe7\x68\xcf\x1f\x51\x2f\xee\x46\xa0\x4c\xf6\x5d\xbf\x35\x6c\x64\xdb\x79\x43\x8f\x59\xbe\xa9\xe9\xfd\xdf\xd4\x91\x67\xf1\xa7\x61\x12\x67\xd3\x25\xa1\x41\x0f\x43\xbc\xa8\x99\x01\x51\xc7\x96\xca\xa9\xfb\xbd\xe5\xd0\x79\x76\x3d\x07\x8b\x22\x01\xb0\xfc\xc8\x7b\x4f\xd4\xa9\xf8\xd8\xc1\x52\xd2\x01\xb7\x34\x93\xad\x6a\x49\xa0\x37\x94\x7b\x69\x9b\x34\x4a\xa0\x42\x26\x93\xd3\x74\x5b\x3c\x69\x44\x30\x62\xfe\x0f\xba\x03\x99\x40\xf2\xd9\xdc\x8f\x34\xe5\xde\x8f\x6a\xea\xb2\xcd\x8e\xed\xae\xb9\x2d\xcb\x9c\xe8\xca\x90\xaf\xab\x37\x66\xd3\xfc\x51\x35\xcc\x2c\x88\x19\x20\xc7\xce\x53\xec\x81\xb2\x1a\x64\x36\x04\x12\x4d\x57\x80\x98\xe4\x26\xee\x14\x7f\x75\x37\xf0\x53\x2c\x67\x91\xe6\x4a\x0b\x9c\xee\x12\xb9\xe0\x25\x8a\x6f\xf0\xfe\xe1\xc1\x50\xff\xd8\xd9\x52\x5c\xd4\xd5\x08\xe5\xd0\xec\x57\x9a\x4b\xd6\xa4\x12\xb9\x21\x28\x41\xe4\xc6\xc7\x2a\x82\x8f\x93\x25\x8b\x69\x3c\x46\x23\x53\x14\x2a\xc8\xe4\x5a\x74\x44\xbb\x6f\x2d\x07\xd5\x35\x12\x4b\x81\x32\xb3\x5d\x4b\x50\xc3\x86\xdf\x68\x47\x4b\x7a\x61\x4a\x33\x79\x64\xa2\xdd\x1e\xbe\x70\x0f\x75\x68\x3c\x14\x9e\x12\x92\x88\x8c\x1e\x17\x0b\xbd\x53\xc8\x81\x1f\x7e\x40\x6f\x01\x17\x7e\x56\xf9\x87\xfb\x58\xd5\x3c\xc7\x08\x68\x39\x7f\xef\x58\x49\x23\x83\x1f\x1c\x51\xf9\xee\x96\x52\x3c\xbe\x04\xfb\x21\xca\xf2\x9b\x60\x67\x45\x1e\xf8\xdc\x13\xc5\x2f\x8b\x21\x29\x3c\x05\xfc\x3b\x4b\xbc\xa3\x4e\xf1\x5d\xd4\x29\x44\x62\x97\xee\x08\x35\xb9\x1b\x24\xe5\x86\x8a\xe6\x49\x85\x28\xe3\xa9\x5a\xc0\x16\x30\xad\x8f\x15\xaf\xab\xe7\x33\xc8\xb7\x80\x76\xba\x0f\x60\x09\xad\x9e\x5f\xdf\x43\x7e\x4a\x24\xb1\x7d\x7f\xe9\x38\xbd\x60\xfe\x69\xbc\x0d\x41\xf6\xfb\xc8\xbf\x97\x26\xab\x36\xcd\x48\x42\x4a\xc8\x51\x8a\xaf\x40\xbb\x8a\xab\x29\x7c\x42\x46\x8e\xff\x48\x75\xbb\x57\x6c\x6e\x53\x13\xb3\x7f\x17\x37\xa7\x7d\x9e\xc2\xfc\xbd\x62\xda\xcb\x59\x12\xaf\x84\x51\x04\x60\x56\x2d\xed\x88\xa2\x2f\x13\x7d\x76\xbf\x2b\x00\x3d\xe0\x63\x37\x48\x54\x98\xe6\xa4\x70\xe1\x30\xcf\x48\xc7\x2e\xaa\x99\xd7\x2f\x92\xcd\x22\x67\x32\xf3\x37\x55\x02\xd7\x0f\x07\xbb\x8b\xd7\xca\x25\x27\xd5\xe4\xb8\xab\x22\x85\xff\x4a\x0b\x50\xf8\x73\xbc\x4e\xe9\x16\xd4\xac\x45\xe2\x97\x16\x9d\xe2\xc6\x94\x76\xd3\x49\xaa\xd4\xc3\x93\xb1\xa6\x3a\x1c\xe3\x5b\x28\xc0\x08\xbb\xa2\xef\xf3\x9d\x50\x02\xda\x6f\x94\x04\x32\xa3\x30\x99\x56\x7a\x42\x2c\xf5\x2d\x0c\xae\x65\xb2\x3a\x37\x13\x71\x56\x4d\xea\xb5\x93\x81\x05\xaa\x10\x69\xee\x8d\xf1\xe6\x7b\x66\x16\x6d\xc0\xbf\x65\x08\xcd\x27\x76\x27\xc8\x65\xb0\xec\x13\x59\x68\xe6\xb7\xab\x99\x62\x3c\xd0\xec\x8a\xcc\x30\x96\x22\x17\xf6\x59\x90\x8e\x1e\x25\xde\xe5\xc7\x75\xa0\xe7\x76\x64\xc2\x01\xbb\x5c\x21\x8c\xa2\x5b\x44\x41\x00\x83\xdc\x32\x5c\xae\xfb\x99\x51\xfe\xda\x0c\x6c\x37\xde\xc0\x25\x18\x04\xa9\xba\xfa\x16\xd3\x56\x25\x6a\x34\xc1\x32\xc4\x1b\xd8\x3a\xd9\xe9\x96\xe1\xdf\x79\x92\xae\x00\xf1\xca\xfb\xd8\xe1\xe8\x12\x7f\x4c\x0f\x0f\xa6\x7f\x7b\xab\xb1\xb8\x7f\x83\xf5\x8f\x1c\x49\x44\xf1\x7e\xf1\xa0\x01\xc9\xc3\xdf\x7e\x84\x40\x1e\xc5\xbb\x7b\xf8\x5d\xbc\x82\x23\x63\x2f\x0b\xf4\x38\xdd\x1f\x78\x6c\xf6\x4c\x14\x6f\xdb\x8f\x40\x7d\x2a\xa4\x69\x5b\x9f\x91\x69\xa1\xb1\x1f\x5f\x63\x38\x81\x1b\x84\x71\x03\x35\x6c\xaf\x44\x9b\x78\x97\x6b\x4b\x44\x76\x3b\x99\x63\x24\xb0\x3f\xd8\xc4\x91\x58\x2c\x06\x37\x9f\xe5\x26\xe9\x58\x4c\x18\x57\x02\xc2\x27\x69\x63\x17\xd7\x8e\x3c\xe3\x91\x56\x4d\xeb\x3d\x33\x9d\x46\x19\xc8\xe8\x31\xfe\x7a\xfe\xd6\xa6\xdd\xd1\x80\x67\x23\x44\x14\x53\x4d\x11\x7d\xac\x9c\xdc\xc0\xbc\x1a\x82\x40\x50\xc4\x35\xe8\x29\x0b\x1b\x78\x5d\xdf\x21\xeb\xdb\x8e\x6f\xc4\x30\xce\x96\x76\x81\x60\x6e\xfd\x0c\xde\x92\x4d\x6d\x8e\xa8\x0a\x21\xea\xa7\xf4\xae\x34\xac\x03\x7e\x09\x8b\x0a\x95\xa3\xd3\x6a\x5e\xa1\x9d\x86\x59\x98\x4d\x2b\xea\x12\xe6\x6e\x70\xda\x7b\x4e\x4c\x8e\xc3\x05\x19\x17\x92\x97\xd4\x4d\x84\x1c\xd4\x8d\x2d\xf8\x40\xe2\x8e\xca\x67\x22\x2a\xff\x28\xe6\xd7\x77\xb0\xc8\xf8\x24\x50\x23\xe5\x49\xda\xb6\x1d\x85\x29\x2c\xe9\x63\x2a\x86\xf1\x63\x2e\x2d\xe5\x60\x62\xc1\x07\x10\x0a\x52\x77\xa1\x04\x46\xb3\xb1\xd9\xee\x27\x6f\x3f\x0b\x54\x97\xf3\x4c\xb0\x79\x98\x01\xbe\x75\x83\xba\x70\x02\xe1\x52\xbe\xfb\xb3\xb1\xc7\x07\x7e\xe6\x49\xbc\xcc\x40\xda\xbb\xa8\x70\x83\x59\x02\xc6\xfa\x1c\x96\x8a\x88\x96\xf9\xbb\x1e\x9a\x91\x50\xa7\xc2\x14\x63\x72\x84\x8f\xc7\x3e\x9c\x0e\xe3\x15\x9b\xb9\xf2\x18\xd2\x14\x80\xb0\xf8\xb8\xc2\x71\xb3\x6f\x81\x54\x7c\x36\xe9\xdd\xa0\xce\x2c\x53\xd4\x35\x34\x0b\x36\x4e\x93\x28\x72\x10\x1c\x78\xf1\xc3\xaa\x10\x77\xb8\x8e\x22\xae\x3f\xea\xf5\x2d\x3b\x5f\xc7\xad\x5f\xac\x0f\x3e\xa9\x84\x76\x8b\xb3\xcd\xd4\x66\xc3\x24\xee\x50\x27\x0b\x26\xe1\xa7\xb4\x90\x01\x37\xe0\xb4\x48\x8a\xf2\x3e\x74\x1b\xd8\x78\x27\x7d\x75\xa9\x92\x80\x77\x06\x27\x22\xf5\x51\x32\x90\xc2\x5d\xa8\x08\x1d\x8e\xc3\x24\x61\x85\x9f\xd4\xb6\x8a\x82\x3a\x46\xd8\x07\xce\xe8\xad\x6c\x6d\xa9\x32\xf3\x49\x5f\x01\x18\xe5\xa3\xd4\x66\xdb\x60\xe1\x71\xa5\x53\x2d\x45\x57\x33\xf6\x09\xca\x1f\x63\x23\x89\xf2\x1f\xdd\x80\x60\x69\x14\xc3\x9b\x87\x76\xa7\xb6\x93\x1a\x21\xa2\x40\x08\x73\x4f\xa5\xed\xf7\x9c\xf6\xa6\xc9\x19\xdc\x83\x56\xc7\x13\xa8\xd2\x71\x8a\xc4\xbc\xe2\xc8\x57\xde\xc0\xfe\x80\xcb\xbc\x5d\xd7\x5a\x5c\x8a\x46\x8e\x55\x49\xc0\xa8\x4a\x52\x98\xc9\x56\x44\xee\xc6\x27\x2c\xcf\xff\xe3\x7f\x46\x32\xc6\x0e\xae\xef\xa1\xfb\x75\x4a\x57\xaf\x8c\x06\x43\xde\xeb\x4e\xb0\xa6\xb8\x4d\x3c\xe0\x0b\x5a\x41\x65\x43\xa5\x94\x79\x11\xe0\x0d\x93\x14\x2b\x53\x84\x8d\x8b\xdf\xe2\xe3\x2a\x12\x69\x71\xbf\x83\xdf\x3b\x92\xa4\x52\x36\xb4\xb9\x8a\x79\x68\x76\x4e\x44\xfe\x58\x3a\x73\xbf\x63\x16\xd7\x03\x7b\xeb\x84\x8d\x90\x6b\xf0\xad\xed\xac\x4d\x9d\x2e\xdb\x51\x74\x89\xa7\x14\x15\xd1\x29\xd7\x07\x5d\x1a\x15\x7f\x38\xe5\x13\xb8\x1b\x81\xea\x2d\x9e\x2c\x61\x3b\x94\xf4\x82\x49\x1b\x5e\x78\x8c\x75\x26\x84\x77\xde\x47\xd4\x0e\x6c\xe3\x2b\xc1\x3f\xa0\x6f\xe4\xe3\x9a\x18\xa9\x19\x85\x16\x55\x4c\x84\xf7\x27\x14\xe1\xb5\x66\x40\x36\x43\xbb\xa3\xb1\x38\xbb\x01\xed\x11\x44\x08\x5f\x68\x29\xd6\x98\x9b\x88\x4c\x4a\xba\xce\x0e\x36\xe6\x60\xe9\xbb\x26\x8a\xc5\xf4\x1a\x6d\x7c\x6c\xe8\xa3\x9b\x93\x9e\x2f\xbf\xd8\xdc\xb7\x30\xed\xf5\x31\x4f\x91\x61\x46\xba\x74\x5c\x7d\xe3\x1b\x81\x87\xd0\x7d\x4f\xf9\xcb\xcc\x08\xc9\x84\xc8\xcf\x34\x1c\x07\xc0\x07\x75\x7c\x81\x76\xc5\xa6\x6b\x1d\x1e\x15\xc3\x2b\xc6\xd6\xe3\xe3\x4a\xb5\xb9\x58\x66\x44\x1f\x35\xed\x5b\xbd\x57\xc7\x8a\x01\x78\x5d\xcd\x7b\x03\x76\x2a\x0a\x6f\x35\x78\x42\x33\xca\x93\x41\xb2\x14\x32\x74\xc1\xa9\xb8\xcc\xcf\x3b\xe9\xd7\x9d\xce\x03\x3e\xbf\xa3\xd8\x77\x58\x40\xdf\x53\x82\xa2\x1c\x44\xd2\xd3\xf8\xf0\xc9\x89\xc7\xa9\xbe\x15\x6c\x7d\x86\x73\xd8\x8f\xc6\x2e\xc0\xf8\xaf\xbf\x80\x37\x88\x82\xc1\x6d\x32\xa3\x30\x1a\x57\x4a\x13\x8b\x03\x13\xc6\x61\xdc\xdb\xa6\x18\x6e\x51\x37\x40\x3b\xe7\x0d\xd5\xf9\xdc\x8a\xb6\x3b\x22\xc5\x0b\x0a\xf2\x47\xed\x8f\x97\x38\x56\x7b\x47\x81\x28\x52\x3b\x08\x63\xaa\xfd\x16\xd1\xaa\x53\x4d\x7a\x51\xaa\x6f\xa7\x82\xcf\x8b\xcd\xeb\x0c\xc2\x98\x10\x6b\xc5\x36\x45\x60\xef\x28\xdc\x5c\x35\xfa\x43\xdd\x4d\xb8\xa6\xb2\xff\x95\xd0\x4c\xfb\x94\xfd\xee\x58\x41\xea\x6e\x31\x68\x0a\x85\x9c\x0f\xe9\xa9\xc3\x56\xfc\xa8\x02\x00\xc4\x70\x8f\x16\xe5\xfd\xd9\xd8\xe3\x22\xae\xab\x99\xbb\xbb\x6e\x38\xf7\x15\x9b\x0c\x4d\xda\x01\xee\x8c\x8b\x2d\x2a\x0f\x60\x86\x67\xc4\x9f\x1f\xd5\x89\x32\x73\x81\x9c\xb7\xb6\x93\xa5\x57\xbc\xaa\x4f\x95\xb7\x4f\x11\x5e\x2e\x2c\x3c\x55\x5c\x18\x0a\x48\xf7\x68\xff\xe0\xa6\xa0\x0d\x89\x9c\xe6\x4d\xe2\x77\x39\x1d\xa8\x26\xed\x35\x7e\x1a\xb8\xbb\x6b\x81\x2f\xe0\x73\x26\x03\xbf\xf0\x0e\x2c\x17\x4b\x38\xc1\x96\x63\x49\xde\x1a\x53\x28\x8f\xfa\xf5\x16\xcc\x12\xb9\x62\xb9\x53\x04\xbf\x8c\x4a\x02\x1a\x62\xb7\x90\x93\x20\x30\xdd\x4a\xe2\xef\x58\x50\xef\xe9\x82\xe1\x59\x6c\x2f\x37\x3d\xb7\x77\xce\x75\x6a\x55\x70\x70\xa9\x14\x04\xf6\x6d\x77\xca\x3b\xf5\x7b\xba\x5e\x72\x51\x91\xfd\x9c\xa9\x74\x09\xff\x5e\x73\x69\x94\xc6\x25\xde\x65\xf6\xa5\x7c\x52\xb1\x08\x87\x66\x9b\xa3\xd8\x2c\x71\x7b\x80\x15\x91\xe8\xf1\x89\x3a\x92\xab\xe7\xf6\x4d\x1a\xe6\x6b\x85\x33\xdc\xd0\x03\xbf\x98\xc8\xc3\x5f\x9f\x52\xd6\x2c\x4d\x4c\x96\xe3\xe5\xd7\xb5\x53\x37\xdb\x93\xbd\x7b\x81\x6c\xcd\x72\x13\x77\x1a\x8a\x0f\x49\x57\xb9\xde\xa9\x73\xd2\x11\xed\x74\xc4\x8e\xce\x8a\x89\xe4\xe6\xab\xeb\xca\xe7\xad\x84\x69\x3e\x32\x51\xb4\xb6\xad\x34\x38\xb3\x6f\xc1\xd3\x39\xba\xec\x1c\xf1\xa7\xa2\x00\xf6\x6b\x98\x2e\x48\x52\xbb\x3a\x9a\xcf\xd1\x30\xc1\x48\x80\x08\x30\x16\x3f\x21\x2d\xef\x47\x9d\x5b\xcd\xfa\x6b\x5a\xc4\xe8\x82\xe6\x67\xae\xec\xa8\xe7\x98\x54\xdb\xdd\x2a\xbe\x0f\xa4\x2b\x7c\x3c\x79\x4a\xc9\xa2\xd8\x57\x87\x36\x86\x06\xf9\xdc\x41\x07\x04\x22\x88\x90\x08\x10\x78\x1a\x86\xdb\x2a\xc1\x31\xa3\xde\x28\xcb\xb7\xfb\xa6\xf9\x23\xda\xe4\x3e\xc0\xae\x91\xb1\x93\x86\x63\xdb\x80\xce\xa8\x4c\x16\xd1\xa2\x43\xa5\xa1\x31\xf1\x20\x09\x4d\x81\xd4\xb1\x4b\xf9\x63\x74\x2b\x58\x13\x57\xc6\x5a\x1c\x5a\xcd\x25\x70\x0d\x04\x70\x80\xe9\x56\xb1\x36\xb8\xb0\x87\x2c\xdb\x69\x4b\xef\xf3\xd4\xd8\xc5\x3e\xc3\x2b\x62\xae\x2c\xdc\xf3\x67\xd8\x74\xe8\x02\x7c\x67\x73\xb9\xda\xa5\x11\x48\x48\x55\x94\xf7\x92\x1b\xf8\xf7\x73\x8a\xa1\x4d\x53\x66\x80\x84\x49\x3e\xac\xed\xf3\xe1\x40\x50\xb5\x9d\x30\x6b\x27\x23\x35\xdd\x8f\xbb\x6a\xb4\x54\xde\xd1\x98\x54\x92\xed\xc2\x55\xf7\xad\x29\x5e\x62\xa3\x34\x31\x44\xdf\x21\x01\xac\x6f\x0d\xd8\xb0\xd7\xcf\xfb\x53\xbe\x15\x33\x4d\x5a\x66\x48\x58\xfe\xed\xd8\xeb\x13\x4d\xb7\x54\xcf\x0d\x9d\x58\x5c\x97\xcc\x97\xd3\x75\xc9\xe4\xb9\x87\xa7\x84\xf1\x37\x46\x61\xba\x36\x5d\x62\x12\xa5\x37\xe3\x06\x9a\x9d\x6e\xe0\x87\x3a\xc3\xfd\xb0\xd2\x2a\x93\xd6\xf2\x70\x14\x0d\xa7\x14\x9f\xde\xeb\x0a\x40\xce\xbc\xa6\x92\x31\x3f\x0c\xcc\x33\x0c\x93\xd8\x72\x66\xaa\xe6\x3d\x3d\xc6\xa8\x0e\x79\x1e\x25\x23\x72\xdf\xc5\xea\x81\x13\xbc\x0d\xcf\xc0\x27\x7a\x96\xc1\xc6\xb6\x1b\xe6\xdb\x7c\x86\x34\xd5\x52\x7f\x8a\x89\x5f\xfe\x8f\x49\x11\x02\x94\x94\x7a\xf1\xf4\xaf\x69\xca\x92\x6b\x25\x35\x8f\x2c\x63\xb5\x4f\xe4\x82\xa7\xc9\xea\xf0\x71\x89\xf1\x02\xc3\x26\xe4\xcb\xa4\x5a\x4b\x1e\x8b\x4f\x2a\x28\x07\x9a\xc3\xea\xd8\x2c\xec\xc5\xd6\xa9\x02\x20\x41\x38\x39\x56\xca\xc9\x27\xd5\x30\x93\x69\x17\xe6\x71\x46\x39\xac\xef\xe0\x4f\xe1\xff\xcf\xaa\x0a\xef\xbf\x57\x5c\x08\xeb\xba\x5c\xfe\x53\x4d\xbe\x9f\x0c\x96\x4c\x3e\xe3\x39\xbc\x3f\x80\xcb\x44\xbd\xfe\x18\x7d\x1d\xd6\xd9\x7d\xa5\x49\x77\x15\x5f\xc7\x05\x09\xcf\x90\x91\x0e\x6c\x1c\x32\x2d\x95\xa0\x3e\xe9\x2f\xf9\x44\x11\x10\xc4\xdd\x34\x89\x79\x74\x13\x1b\xf7\x33\x14\x36\xf8\xa4\x52\xda\x3a\x34\xbb\xd0\xcc\xf2\x74\xd4\xeb\x71\x30\x8b\xa0\xef\xdf\x04\x1e\x0c\xf3\x6f\x54\xe1\x6c\x44\xfd\x7c\x3c\x53\x16\x3e\xd2\x1d\xaa\xd3\x0e\x16\x91\xda\xde\x28\x32\x79\x92\xb2\x72\x06\xb2\xc8\x07\x81\xb2\x1a\x9c\xb8\xa2\xfa\x75\x1c\x97\xc9\xd5\xe5\x1a\x6f\xc7\xda\x3b\x14\xbf\x8b\xc2\x18\x7d\x99\xc3\x60\xb9\x54\xe0\xb0\x12\x7e\xbe\xaa\xf2\xa2\x5f\xfe\x47\xff\x48\xa1\x0f\x1f\x50\x48\x22\x3a\x64\xd5\xea\xc7\x62\x33\xe9\x76\x09\xd2\x3e\x3f\xbf\x81\x6b\xdd\x38\xaf\xac\x78\x9e\x44\x9d\x47\x3c\xfe\xec\x0a\xe1\xd2\xf8\xce\x54\x31\x66\x8a\x8a\xb9\x3c\x0e\x10\x28\x26\x0f\xee\xe0\x22\x86\xbf\xc5\x82\x9b\xa8\xac\xfc\x06\x26\xc6\xf8\x04\xa1\x17\xfe\xee\x70\xe5\x05\xee\x5b\x68\x66\x36\xce\x43\x57\x0f\x42\x1d\xfb\x9a\x1a\x5c\xb9\xa6\xa8\x70\x45\x60\x80\x2b\x12\x0c\xb3\xd5\x8c\x9b\x81\x62\x0e\xbe\xa0\x80\x74\x17\x15\x62\xc1\xa4\x29\x0d\x0a\x36\xbc\x6c\x2e\x39\x1e\x91\xd0\xad\x61\xc7\x49\x6d\xcf\xa4\xbe\x80\xea\x5c\xd7\x82\x8f\x02\x6a\x62\xe9\xae\xcd\xf2\x70\xc5\x44\x4a\x0f\xed\xed\xc0\x77\xbe\xde\x1e\x3f\xe5\x59\x1f\x57\x28\x86\xca\x9d\x16\x66\x1d\x6c\xd3\x87\x44\xe1\x6b\xdf\x18\x85\x36\xed\x18\x94\xc4\x84\x91\xdd\xc3\xef\xaa\x91\xc8\xde\xbd\xcd\x6c\xd9\x0e\xf3\xb0\x2d\x15\x18\xec\x2a\x74\xf7\xbd\x03\xf7\xd5\xae\x8d\xba\x2c\x3e\x1e\x75\x18\x22\x09\x53\x73\x42\x15\xa1\x6e\x2b\x33\x78\x5e\x25\x5e\x76\x30\x8c\x92\x35\x9b\x4e\xfb\xdc\xe9\x8e\xea\x79\xa3\xd1\xce\xff\x3e\xf6\x4d\xf2\xc6\xc4\xaf\xfe\xb9\x11\x74\xa8\x10\xa8\x30\xa4\x9b\x4f\x2a\x7e\x6a\xee\x20\x49\x14\xb5\x4d\x2e\x7a\xfa\x0c\x04\xd6\x2b\xf8\x1d\xba\x70\xa9\xff\x55\xb9\xa8\x09\x45\xeb\xde\xb8\xb0\x08\x35\x9c\x3e\xcd\x05\x35\xb8\xd9\x19\xb1\x9e\x35\xf6\xf6\x76\xc2\x7a\xf0\x71\x6b\x8f\xa2\xc6\x36\xbd\xac\x1f\x02\x45\x8c\xc7\x77\x59\x91\x64\x5c\xae\x18\x8e\xbd\x7b\x9b\x26\x5e\x8e\x24\x02\x51\x6c\x17\x9e\xdf\x62\x97\x43\x4f\xe7\xcc\x2f\xc8\xed\x9f\xc0\x0f\x28\x7a\xe2\xef\x81\x89\xd7\x76\x61\xb7\x3a\x79\x11\x49\xa9\xcf\xff\x8d\x89\x22\x53\xdc\x08\x54\x12\xc0\x53\x26\xa8\x17\x71\x06\xc5\xf0\xd6\xb1\x0a\x13\xc9\x28\xb1\xbc\x9c\xe7\x27\x9b\xfe\x3b\xd4\xbc\x45\x78\xc3\x14\xa6\xb0\xb8\x8f\x4e\xfc\x34\x7e\x11\xf8\xa6\x79\x98\xd9\x19\x8f\x33\xfa\x63\xc4\x93\x48\x57\x4f\x8d\x15\x79\xdd\x39\xcd\xbd\x87\xea\x09\x62\xab\x5d\xad\x1a\xe6\x6f\x66\xf9\x62\x75\x1e\xf8\xab\xcb\x81\xa2\x39\x3f\x8b\xef\xc6\xa5\xff\x54\x2d\xdd\x5e\x92\xf6\x6c\x32\xca\x14\xf6\xe0\xb4\xc2\x1e\x9c\x1e\x7b\x93\x1a\x27\x32\x06\x89\x07\x78\x92\xd2\x12\x91\xfb\xa2\xef\xe7\xff\x28\x89\x25\xd4\x0c\x6f\x0f\x4d\x7b\xd9\xf4\xac\x92\x31\xc3\xcb\xe4\x63\x35\x7b\x69\xa2\x24\xee\x11\x59\x2c\xbc\x29\xa0\x18\x70\x57\xb7\x95\xaf\xff\x2d\xc5\x9e\xf3\x16\x4c\x37\x62\xf1\x77\xd5\x97\x2d\xa5\xd6\x30\x90\xdb\x15\x09\x1d\x74\xf2\xa4\x2b\x08\xf7\x4d\xe7\xb1\x86\xf0\x0c\x7c\xf1\xc9\x89\xd7\xcf\x7e\x30\xd6\x32\x93\x0c\xc0\xa1\x80\xee\x3f\x3d\xdf\x9a\xda\xff\xc2\x81\x8d\x4b\x54\x88\x13\x49\x4f\xf2\x13\xd8\x9a\xc7\x11\x78\xb9\xb9\x77\xaf\x08\x71\x51\xb7\x52\x9f\x42\xf5\x19\x36\xfd\x89\x89\xef\xac\x34\x26\xc5\xd2\x43\x4f\xee\x04\xa6\x96\x84\x72\x7e\x13\x25\x20\x81\x3e\x16\x16\xa6\x74\x53\x4e\xf5\x83\xaf\xab\x4a\xd2\xfb\x75\x4c\x86\xc3\x34\x59\x91\xf2\x08\x3e\x72\x04\x37\xca\x27\xca\xc9\x8e\x9e\x5f\x7e\x7e\xaa\xa2\x3b\x80\x8b\xbf\x8b\xe5\x27\x1c\xf9\x9b\xad\xf5\xbe\x85\x66\x27\x0d\x15\x25\x29\x9c\xe1\xbd\xb1\x77\x92\xf7\x82\x2a\x4f\x62\x66\x39\x77\x57\x6d\xf3\x39\xd7\x29\xaf\x72\x4c\xa6\x86\x76\x45\x79\xee\x4a\x73\x2b\x16\x1f\x47\xdf\xfe\x5e\x1d\x22\x37\xb6\xbd\x24\x0f\xc9\x6d\x01\x46\xe5\x70\x23\x6e\x3a\xf4\x98\xaa\x2c\x7e\xbb\x8e\x96\xbf\x67\x63\x9b\x1a\x47\x6f\x8d\x8d\x75\x4d\x93\xc8\x5d\x2b\x31\x1a\x27\xab\xb1\xc2\x53\x63\x9c\x0c\x1b\xeb\x3f\x90\x2d\xc2\x1a\xba\x4f\x61\x14\x0c\xeb\x19\x6a\x0b\xf3\x31\xd6\x96\xa8\x8c\xca\xa2\xce\xba\x98\x68\x95\xad\x4b\x5b\x04\x21\xcc\xdd\xa0\xbc\xaa\x6b\x60\xbd\x1d\xdb\x7e\x5e\x73\x5b\xfe\x07\xb5\x71\xa6\x5b\x8a\x31\x72\x7a\xa2\x41\x0e\x71\x96\x3f\xaa\xc5\xd8\x50\x94\x87\xdf\xf8\x31\xae\x13\xe5\xe6\x2b\x4a\x78\xe1\x03\xc5\x5b\x7f\x96\x6e\x4c\x00\x80\x30\xeb\xc2\xc3\x4e\xaf\x03\x6b\x12\x5c\xb8\xd2\x46\xa7\xa7\xfc\xee\xab\xc5\xd9\xe9\x80\xb6\x20\x52\x00\xee\x74\xc1\x48\x1c\x75\x15\xc5\x6e\x68\xa3\x8e\x7b\xbf\x5c\x16\x57\xaa\x63\x57\x55\xac\x76\xd4\xab\xf4\xb6\xbf\x48\xbd\x7b\xe7\xb2\x8a\xdf\x11\x8d\x3b\xf2\x32\x70\x1f\xf7\x08\x61\xc4\x03\xe6\x40\x96\xc8\x57\x15\x59\x99\xa3\x47\x2b\x9e\x2d\x7a\xb5\xbb\x68\x76\xca\x71\xaf\x7c\xf9\x45\x17\xb7\xa9\xae\xdb\x9e\x16\x9e\x2b\x2d\xe9\xff\xeb\xe7\xd1\xaa\xc3\xdf\xed\x6c\x15\x96\x02\xa1\xfa\xee\x89\x47\x5c\x5d\x54\xf3\x11\xbf\x40\x5d\x36\x21\xea\xf2\x3c\x61\x7b\xd0\xc7\x46\x29\x18\xe8\x53\xac\xb6\xed\xa8\xb5\xa0\x2a\xf8\x08\x8d\x2b\xc2\x24\xde\x1c\xab\x6c\xf5\x98\x1e\x5f\x9b\xd1\xac\x9b\xbf\x4c\x56\x14\x76\xfb\xe9\x09\xe9\x06\xcb\xf2\x56\x1a\x32\x7b\x5a\x8a\x9a\x45\x31\xba\xfc\x8d\x5a\xbe\xd9\x24\x8e\xc0\xff\x81\x18\xe7\xa3\xc0\x73\xe8\x7c\xe4\xe2\x81\x65\xcb\xa9\x99\x0c\x5d\xd0\x45\xf1\x49\x25\x86\x2c\x5c\x29\x01\x2f\x65\xb3\x72\x51\x9c\x96\x80\x14\xc8\xdd\xd0\xb4\x89\xdb\x9c\xe1\x4b\xe7\x45\x7d\xf9\xd1\x0a\x91\xc7\xc2\xc2\xfe\x66\x96\x5b\x1b\xad\x26\xe9\x72\x91\xba\xe0\x15\xa2\x9c\xcb\x00\x0c\x3e\x51\x30\x59\xb6\x1e\x21\x97\xee\xea\x10\xdd\x6a\x04\x24\x0d\x73\x13\xc6\xc4\x01\x20\x00\x5e\xdd\xaf\xa6\x7b\x72\x3a\x5c\xae\x51\x8e\x1a\x95\xcb\x30\x7c\xe1\x83\x0b\x66\x88\x3c\xfe\x90\xed\x04\x9f\xb9\xce\xbd\xe9\xb9\xdd\xc3\x54\xb1\x2d\xdf\xd9\xba\xad\x06\xb3\x3f\x53\xfd\xf8\x51\x1c\xc6\xd9\x28\x85\x6d\x56\x70\x4c\xd7\x62\x03\x86\x09\x71\xf7\xba\x7a\x1e\xed\x24\xce\xd3\x24\x8a\x6c\x87\xa9\x64\xb0\x21\x6e\x28\x96\xa2\x5d\x2d\x0f\x02\xbe\x86\x17\x8e\x72\xc4\xa9\xba\x3a\xed\x30\x32\x6b\x45\xe0\xe4\x06\xaf\x8f\x69\x1d\x91\x1b\x81\x1a\x0a\x3e\x53\x02\x27\x65\xd6\x3e\xee\x6b\x08\x6f\x8e\x3d\x01\xe1\xf5\xb1\x4a\x97\xd7\xb1\xc2\x85\xc3\x94\xac\x06\x2a\x90\x3f\x23\x5e\x35\xd1\x7d\x57\xb3\x6c\x63\x85\x0c\x3b\xa7\xda\x84\xdc\x0c\x54\xec\x33\x07\x3c\x09\xaf\x1f\x3c\xb8\x41\x8a\xcc\xfc\x57\xa5\x97\xc6\xf4\xbc\x32\x30\xb5\x39\x34\xdb\xbb\x57\xe0\xd1\x8d\x0a\x3c\xda\x89\x3a\xd7\xcd\xf2\x77\xc3\xd8\xc4\x6d\x21\x57\x15\x58\xbe\xaa\xf0\xdf\xa8\xa4\x5a\x87\x66\x9b\x51\x11\x8e\xf9\x27\xb8\xae\x68\xbb\x8a\x37\xfe\x0f\x5d\xdc\x99\x87\x6d\x6b\x96\x22\x2e\x4b\xbb\x0a\x97\x82\x42\xeb\xf7\x92\xa4\xf1\xa3\x64\x94\x5c\x57\x6f\x71\xd6\x15\x11\x8b\x9f\x73\xfa\x04\x8b\xfb\x3d\x93\x65\x61\x99\x65\xdc\x9b\x2a\x58\x0e\xfa\xe5\x81\xa0\xdf\x0b\x14\x36\xe0\xae\xe6\x00\x50\x73\x65\xe8\xe1\xc1\x97\xb1\x86\x8a\x94\x77\x1e\x2f\x51\xbb\xb3\xa0\x1a\x12\x90\x09\x2d\x77\x3e\xae\xb8\xe0\x43\xb3\xcd\xae\x5d\x7a\x7e\x8a\xbc\x8c\x54\xb7\x3c\x5d\x2c\xc3\x74\x61\xdb\x6f\xd6\x05\x75\x3d\x9b\x0e\x0c\x33\xba\xc1\x4f\xfe\x44\x8d\xae\xfe\x44\x95\xd9\xb3\x3e\x29\x43\x35\xdc\x60\xf0\xeb\xec\x77\xe1\x91\x7e\x1b\x9e\x0e\xfb\xe9\x6d\x57\x50\x1a\x98\xd8\x80\x78\x86\x73\x6f\xa7\x6a\xe1\xda\xc6\x67\xb0\x44\x85\xf9\xc7\x47\x3c\x43\x93\xe6\x6b\xdb\x7d\xad\x66\xa8\x48\x33\xfe\x27\xad\x88\xcd\x14\x6d\xac\xf5\x46\xc1\x31\xee\xff\x16\x8a\x30\x32\x3d\xaa\x38\x3d\xab\xe3\xa3\xfb\x48\x58\xd5\x2c\x6f\x9a\x51\xb9\xab\x30\xc8\x77\x15\x6e\xad\x6b\x56\x92\xd4\x76\xa6\x3d\xee\xee\x96\xa2\x27\x43\x7d\x90\x8f\x29\x20\xe3\xbf\x51\xa4\xec\x69\xd2\xb3\x29\x3f\x15\xe4\x24\x9f\xe8\x04\x97\xa7\xbb\x60\xe8\x6e\x96\xa8\x2b\x42\x13\x3d\x4e\xab\xcf\x69\x92\x3b\xb5\x5e\xc9\x44\xb8\x8c\x86\x07\x83\xbc\xfd\x1a\x5d\x87\x8c\x60\x2a\x1e\xff\xab\x81\xe2\xe7\xf8\xa6\x92\xa3\x3e\xac\xf1\x3c\x8d\x09\xf9\x70\xf8\xd1\xff\x73\xac\x84\x1d\x2e\xa9\xd9\x81\x9d\x88\x07\xf0\x5d\xef\x91\xe7\x2d\xd9\x5b\xb4\x6f\xae\x97\xda\x87\x49\xdc\x7b\xa2\x78\x8c\xc8\xf2\x1e\x07\x7b\x31\xaa\x39\x57\x02\x45\x4e\x7d\x8d\x56\x26\xba\x1f\x98\x2a\xc1\x43\x9d\x6e\x29\x2e\x8a\xbb\x81\x62\x31\x6c\x50\xc8\x23\xa4\x8f\x4a\xae\xf8\x34\x42\x31\x80\x27\x99\x94\x1f\x06\xe6\x2e\xb9\x3c\x4e\xbc\x03\x45\x69\x04\xe4\x34\x92\x2e\x48\xa7\xc0\xa9\x3c\x08\x28\xe9\x42\xa2\x73\xae\x06\xc6\xff\x52\x33\x07\x19\xc4\xb4\x22\x5f\x3e\x11\xf8\xeb\x87\xc4\x88\xb2\xa9\xe2\xee\xcf\xa8\xf5\xd6\x8e\x42\x1b\xe7\xd9\x76\x7a\xef\xac\xf3\x83\x71\x63\x27\xfa\x53\xdc\x84\x40\xc9\x3c\x3f\xc4\xbb\x81\x97\x4e\x7d\x97\xee\x01\x63\xd7\x28\xbd\xa2\x8c\xbb\x45\xc9\x1f\xa4\x76\x25\x5c\x31\xd1\x0c\x6d\x67\xec\xd0\x37\x79\xa7\xf3\x19\x56\x85\xe8\x8d\x79\xfc\xc6\x2d\x25\xd5\x70\x54\x55\x9f\x73\xb3\x94\x24\x53\x8a\xbc\xf7\x52\xe0\xb3\xa4\xef\xd2\xaa\x94\x51\xd4\x1a\xc7\x93\xda\x44\x7a\x4a\x2f\xb9\xb2\x2b\xbd\x70\x3e\xf1\x15\xf7\x3c\x32\x71\x1e\xb6\xa7\xe9\x11\xa2\xb2\xf3\x74\x4b\xbb\xb9\x73\x5e\x71\xe8\xe7\x9f\xa0\x36\x9f\xbc\xb6\x9f\x73\x57\xdb\xb1\xc9\xab\x6b\x69\xb8\x94\xc4\xa3\x76\x64\x21\x67\x2b\xc0\x77\x10\x27\xf1\xb1\x87\xab\x99\x30\x1a\xa5\x96\x86\x7b\x39\xbd\x18\x2b\xa2\xb3\xab\x63\x2f\x05\x79\x51\xc9\x97\x6f\x6f\xed\x56\x0c\x7c\x70\xad\x5f\x11\xb4\x69\xe0\xdb\x99\x17\x3d\x14\x12\xa4\x0d\xc5\xbd\x6b\xa4\x33\x17\xa7\x02\x0f\xeb\x3c\xea\x80\xf3\xed\x24\xee\xd9\x38\x14\xed\x71\x1d\xe2\x49\x58\xe7\xc6\xd4\x86\x18\x2b\xd2\x92\xc9\x77\xcb\x53\x13\xbe\xd4\x70\x46\xab\x0f\xdc\x75\xaf\xa0\x63\x4d\x91\xb9\x33\xa5\x1d\x7e\x81\xa7\x72\x5d\xd3\xcd\x4b\xd9\xd4\x95\x80\x4c\xdc\x03\xca\xcb\x61\xe5\x8f\x68\xe5\xac\x23\x75\x76\x7b\x98\xad\xb5\xfb\x61\x3b\xd3\xea\xb6\x17\x82\x52\xab\x5a\xcb\xe0\xae\x26\x8f\xa9\x94\xfd\xce\x58\x61\x6e\x3e\xd4\x10\xf1\x75\x05\x5a\xbd\xa3\x9c\xfa\x39\x9a\xf4\x10\x69\x1f\x0f\x41\xbb\x39\xf6\x5a\x72\xe7\x91\xfe\x88\x4a\x25\x99\x4e\xa6\x86\xa0\xfd\x88\x50\x63\x66\xa2\x04\x47\xdf\x25\x33\xce\xf1\xd8\x58\xcb\x62\x5f\xf4\x4d\xf8\x24\x19\xf0\x6d\x62\x71\xbd\x49\xd7\xc8\xc7\x9e\xd7\x27\x1a\x0d\xbc\x50\x24\xf7\xb2\x54\x6a\xf0\x81\xae\xa8\x67\xa4\xb1\x9a\x30\x22\x52\x08\xb0\xe8\x99\xf3\x89\x6a\xaa\x76\x6c\x3b\xec\x30\xc4\x10\xd9\xf3\x85\x80\x4c\x29\xcc\xc1\x89\xb1\x86\xbd\xec\x76\x41\x40\x9e\xdb\x74\xbb\xc7\x83\x9e\x1f\xab\x30\xf2\x9c\xa6\x39\xfc\xa3\xb1\xff\x66\x50\x0d\xc3\x42\xed\x42\x13\xd3\x0d\x4c\x16\x0f\x57\xba\x83\x35\x54\xa8\xa6\xe3\x38\xa1\x00\x6b\x81\x72\x02\xf2\xcc\x73\xb8\x39\x41\x79\x28\x7a\x93\x6c\x0d\xaa\x2f\xf0\x9e\x9f\xe8\x59\x04\xa4\x20\x78\x9f\x10\xc5\x46\xc0\xb2\xa3\x82\x0f\x26\xaa\xb0\xb0\xd7\xcf\x25\x91\xc3\x6a\x3f\xab\x19\xbf\xcf\xaa\x30\x27\xb2\xf6\x35\xc3\x7f\xaa\x22\x95\xfd\x2e\x52\xa9\xfe\xc0\x1c\x68\xe0\xd2\x29\x7a\x0e\x48\xb8\x4f\x20\x20\x45\x78\x74\x3b\x50\x9a\x81\xeb\xe3\xcf\x2b\xf2\x4a\xeb\xf4\x18\x1b\x9e\x98\xe5\x3f\xde\xc2\xbd\x0a\x56\xcb\xb1\x29\x3d\x3f\x78\x9e\xca\xd2\x40\x02\xf2\x10\x15\xcb\x61\x2b\x4c\x16\x08\xee\x10\xa4\x62\xbc\x12\x99\xcc\x51\xf5\x74\xe3\x30\xdb\xa6\x9c\xdb\x6d\x25\xc6\xbc\x15\x6f\x57\x71\x3c\x2e\xb8\x13\x5d\xea\xa4\x5f\xc7\xcc\xc1\x87\x81\x07\xf4\xe6\x61\x6c\x22\x5a\x92\x9a\xa5\x15\x4d\x60\x3d\x4f\xf4\x13\x55\xb4\xee\x98\x74\x59\x37\x9c\x4e\x05\xbe\xff\x72\x4a\x71\x43\xf5\xd2\x64\x35\xef\x53\x3e\x07\xbb\xff\x07\x08\x49\x70\xe1\xf7\x54\x5f\xe4\xa7\x81\x9a\xa1\x38\xa6\x2a\x03\x97\x10\xab\x02\x85\x75\x29\x28\x11\xa8\x51\x7a\x81\x60\xe5\x53\x5d\x2a\x7f\x4b\x0d\x9e\x5c\x57\x5c\x84\x47\x02\xad\xed\x80\x57\x8e\x75\xf2\x03\x18\x19\x04\x58\x5b\x26\x7e\x6a\xec\xdd\x22\x49\x16\x66\x80\x30\x4e\x52\xd2\x73\xa3\xfc\x0a\x05\x4e\xd6\x40\xe6\x93\x89\x27\x85\xce\x53\x6b\xb7\x35\xbe\xfc\xa2\x07\xe1\x39\x4c\x28\xac\x18\x57\x4b\xa9\xa5\x25\x88\x35\xc5\x1b\xad\xb4\x71\xce\xab\x47\x1a\xc6\xb9\x8d\x3b\x68\xd9\x20\x50\xdc\x42\x38\x4a\x3e\x6e\x55\xe5\xdd\x5d\xfb\x93\xae\x1a\x2d\x12\x10\xdd\xf0\x71\x65\x13\xee\xdd\x5b\xa4\x0f\x6d\x2b\xb4\xfe\xc2\x1a\x5c\x12\x50\x7f\x18\x46\x63\x90\xa4\xe4\x69\xfd\xd4\xf9\xbb\x6a\x5c\xfb\xa7\x9a\xec\xe0\x4f\xb5\x76\x47\x9a\xac\xd8\x6c\xc6\x8b\xe9\x60\x2a\xc7\x8d\x15\xf9\xf8\xec\x38\xe6\x86\x60\xf7\xf5\xe0\xf0\x71\x35\x76\xe9\xf9\x29\xe6\x0e\xba\x24\xab\xf8\x72\x3e\x0e\x76\x4a\x65\xff\x57\x0f\xcc\x78\x02\x37\xc0\x8b\xf1\x5c\xfe\x93\xaa\x11\xfc\x60\xac\xba\x1f\xd7\x61\x80\x45\x51\x71\x33\x00\x73\x71\xb6\xb9\x26\xa3\x30\xae\xc3\xe5\xcc\x1f\x38\xc9\xb1\x3f\xef\x29\xa0\xce\x63\xad\x9a\x11\xaf\xbe\x4d\xdd\x4c\x8b\x8c\x96\xaa\x31\x53\xd5\xe3\xee\xd8\x61\x64\x0b\x47\x34\xed\x13\x38\xb6\x05\x7c\xa2\x74\x6e\x4f\x50\x2c\x22\x4e\x47\xdc\x63\x2f\x35\x71\x3e\xd3\x70\x5a\xc3\x18\x58\x42\x0d\x69\x0b\x56\xb9\x48\x46\x20\xa2\xd5\xfa\x7a\xb0\x2b\x5b\x5a\x75\xea\xbc\x76\xb4\x64\x62\x34\x62\x5d\xaf\xdf\x17\xca\x7f\xa3\x86\x55\x18\xe8\xc0\xd8\x9a\xbc\xdf\x50\xdb\x86\x5e\xa0\x6c\x21\x49\x92\x85\x8f\xdb\x71\xfc\xe0\x0f\x78\xe4\xdd\x99\xf7\xe2\x07\x91\x65\x5d\x54\x8d\xba\xe5\x34\x24\x65\xc7\xd2\xf4\xf8\x07\x7a\x7a\xfc\x03\x17\x3e\xe4\x40\xc8\x3a\x8a\x8a\xf3\x78\xbc\xd2\x66\x6c\x38\x7e\x8e\x3b\x95\x30\xeb\xd0\x6c\xd3\x74\xec\x37\x46\x26\x47\xbf\x00\x81\xe6\x49\x55\xc5\xe3\xcc\x4b\x82\xd6\xba\xde\xf4\x60\x08\x09\x21\x14\x05\xb1\x82\x7e\x46\xeb\x15\x11\x0c\xd0\x81\x48\xe4\x66\x26\x8a\x50\x92\x28\x9a\x3c\x63\xc8\x31\x18\x3e\x47\x58\xe0\xe4\x83\x6f\x05\x3e\xa6\x4e\x93\x2c\xdb\xa6\x94\x5a\x18\xb9\x81\x84\x1a\xc5\x6d\xfe\x0f\x0e\xb6\xf8\x7f\x10\x1d\xb8\x51\x38\x07\xcc\xab\xd2\x4d\x7f\xa9\x69\x5f\x6d\x5b\xdb\xe1\x70\x15\x9b\xfe\x30\x3e\xcf\x27\x75\x0a\xf8\x43\xaa\xb9\x08\xf0\x43\x40\x44\x0a\x50\xe4\xe6\xf4\x6d\x9c\x8c\x7a\xfd\x47\x7c\x3b\xf4\xc6\x58\xb5\x8a\x78\x86\xda\x91\xa8\x1c\x9a\x75\x0e\xdf\x05\xa5\xf7\xbe\xa0\xc7\x56\x30\x1d\x4d\xbf\xf2\x7f\xfc\x4d\x82\xcb\x93\x79\xdb\xf3\x05\x78\x56\x31\xdb\xba\xd6\xd0\xcf\x51\x4b\x87\x15\x83\x3c\x18\x1f\x8f\x9f\xd2\x78\xaf\x76\x9e\x26\x71\xd8\xce\xb6\x93\x69\xe3\xf1\x51\x25\x5c\x71\x41\xc1\xb6\xc7\x78\x15\x3c\xf1\x1d\xe8\x7a\xf7\x3a\x55\xdf\x70\x7c\x44\x8d\x0a\x7d\xbb\x32\x51\x22\xd6\x3a\xb3\x29\xe7\x37\x42\x41\xb9\xa1\x56\xf2\x86\xd6\x44\x1f\xa5\xed\xbe\xc9\x6c\x67\x9a\x8a\xad\xb0\x11\x60\x3e\x70\x6d\x21\x5f\x60\xbd\x8d\xed\x27\x19\xdd\x9e\x32\x64\xc5\x9a\x8c\x02\x5a\xb9\x6a\xfa\x20\xab\x2e\x6a\x8a\x38\xe8\x7a\x21\xec\x9d\x6a\x29\xc5\xa2\x63\x5a\x92\x8e\x0b\xb8\x30\x41\xb7\x54\xd0\xf4\x4f\xfe\xc9\x2f\x37\x1a\x4a\xef\xb6\x58\x8e\x62\xb5\x77\xab\xc1\x48\x20\x3b\xe7\x04\xf9\xa6\x15\x4c\xcf\x2a\xd0\x65\xc7\x84\xcb\x61\x3c\xad\xe0\x7d\x67\x75\x22\x77\x5b\x59\xf6\xb3\xca\xc3\xdf\x0e\x7c\xd5\x55\xd9\x35\xba\x67\x17\x0f\x28\x5f\xef\x21\x47\x9d\x30\xcb\x44\x97\x1d\xab\x1b\x71\x1f\x1f\xab\x72\xd8\x6a\x3f\xcc\xed\x23\x74\xdd\x88\xad\x8e\x63\x93\x3b\xce\xc3\xe2\xc7\x10\x82\x7d\x48\x8f\x01\x65\x29\xa6\xc9\x43\xbd\xf2\x7f\xd7\x66\x4f\x66\xb4\x50\x18\x83\xee\x1b\x32\xd2\xff\xa8\x3a\x77\x3f\xf3\xfc\x89\xe4\xa9\x66\xb4\x73\x52\xd1\xc2\x23\x08\x51\xb5\x9e\xbd\x13\x0a\x2c\xae\x59\x52\x86\xba\x2a\x78\x59\x62\x0c\x71\x16\x90\x93\x7c\xac\x3a\x35\xd9\x30\xc9\x73\xdb\x21\x1f\x88\x54\x7b\x5d\xf3\x4f\xf0\x28\x3d\xff\xcf\x58\x4d\x1c\xab\xc8\xc1\x0c\x87\x69\x62\xda\xfd\x1d\x74\xc9\xa8\xfe\xde\x0d\x7c\x91\xe9\x23\x2c\x73\x44\x94\x3c\x71\x2d\xfd\x4d\xf8\x45\xe1\x94\x22\x3b\x2d\xad\xcc\x62\xeb\xcb\x90\x80\xcf\xcc\x0e\x2b\x8e\x98\x4e\xb2\x0a\x4f\x8f\x67\x0e\x1d\x3b\x3e\x0e\xfc\xa2\x48\x6d\x37\x49\x07\xd9\x8c\xea\xd4\x1e\x51\x5c\xe4\x98\xdb\x40\x1c\xcc\xbc\x9b\xb0\xc0\x97\x51\xb5\x13\x64\xc7\xe6\x62\x38\x11\x9d\x0f\xd6\xe0\x28\x60\xa3\x50\x73\xc7\xdd\x30\xfa\x52\xac\x91\x57\xcf\xb3\xa4\xa2\x85\x5c\x19\x5d\x49\xa0\x4e\xf8\x58\x75\x1c\x86\x69\x38\x08\x1d\xd9\xbe\x88\x87\xde\x52\x93\x8e\xb7\xd4\xd3\xc8\x43\xaa\x7a\xbd\xb4\x71\x58\x31\xba\x9d\x53\x12\x7e\xef\xd5\xa9\x45\xe7\xd6\x7a\xf4\x15\x7b\x59\xfa\x8c\x78\xdc\x5d\x0e\xa7\x2d\x20\x2f\x7c\xf3\x63\x7a\x27\x70\x93\x55\x78\x14\x64\x8d\xbf\x62\xc2\xc8\x76\xb6\x79\xa9\x41\x38\x7d\x84\x31\x37\xb5\xbc\x31\x93\x7b\x22\xe4\xdd\x4e\x6d\x61\x0c\xc4\x1e\x56\x3c\x6e\x67\x4b\xfd\x95\x61\xc2\x20\x1a\xb7\x3a\xd5\x1a\xae\xe1\xb1\x1b\xa6\x49\xd7\x42\x10\x2e\xa2\xf5\x0e\xef\x05\x64\x98\x8b\xff\x8a\xdb\xc0\x0c\x0f\xdb\x55\x79\x2d\x4f\xe8\x46\x41\xb8\x64\x38\xd2\x97\x01\x30\x3f\x70\xf7\x57\x6a\x7e\xaf\x63\x57\xc2\xb6\xcd\xa6\x15\xd4\xf6\xa2\xf6\xa9\x97\x14\xc6\xe9\x92\x6e\xd2\x54\xfb\x5b\x2f\xbf\xdc\xcc\xfa\x49\x7b\x79\x98\x26\x49\xb7\xe1\xeb\x1e\xa0\x76\xe2\xe3\x8a\xd7\xda\xbf\xb8\x5f\x0d\x8e\x50\xdc\xce\xbd\x4c\x94\x55\x9d\x9e\x95\x8f\x55\x58\x8e\x46\x54\x37\x1a\x5f\x9b\x73\x4f\xe7\x73\x8a\x08\x74\x6d\xc9\x46\x11\xf1\xac\xbb\x5e\x29\x72\x24\x3e\x9e\x28\xbc\x71\x9e\x26\x51\xb6\x9d\x7e\x10\x8b\xe7\xf2\xd8\x47\xcd\xdc\x66\x04\x81\xea\x9e\x96\xa2\x12\xde\xdd\xf2\x38\x5e\xc8\x6a\xd0\xca\x39\xfd\x04\x6a\xeb\x42\x97\xec\x56\x68\x6a\x7a\x33\x6a\xfa\x64\x5a\x53\x9a\x9e\xc6\x63\x17\x0d\x74\x0f\x00\xf9\x7f\x94\x04\xd7\xe9\xba\x8e\x57\x64\x63\x06\xfb\xb0\x9c\x5f\xe0\xa3\xaf\xe3\x95\x02\x3c\xc1\x9e\xcc\x28\x1f\x0d\x30\x84\xc9\x11\x34\x79\x37\x89\xa6\x75\xc0\x93\xa4\x4b\x94\x71\x89\xae\x20\x99\x1c\x3e\xa9\xe8\xe2\x1c\x9a\xfd\x4a\xb3\x6b\x32\x48\xda\x21\x85\xbb\xa1\x50\xc4\x37\xc6\x8f\xba\x17\x14\xa6\xd9\x23\x30\xae\x70\xcb\x3c\x32\x22\x65\xff\xe2\x27\xf9\x3f\x02\xd5\x56\xfd\x88\xc2\x21\x78\x9d\x77\x90\xe1\x63\x51\x9c\xd1\x4d\x83\xc0\x13\x0b\x7c\x1a\xa8\xd2\xda\x47\xa5\x3e\x4b\x9a\xad\xd1\xce\x67\x09\x4d\x18\x77\x11\x18\x2c\xbe\x4d\x58\x46\x1a\x5e\x5a\x4f\x15\x95\xbf\x4f\x1b\x9f\x8f\xeb\x26\xe8\x4c\xdb\x74\xec\x20\x6c\x13\xd6\x90\xe9\x72\x02\x3f\xad\xcb\x55\x2d\xb4\xcf\x4f\xd6\x0d\x54\xd9\x34\xcc\xfb\x24\x89\x30\xe5\xf3\x56\xcc\xb6\x30\x58\x5f\xa3\x34\x36\x34\x83\xb7\x89\xb3\x51\x08\x03\xc0\xe3\xeb\x6a\xf2\xf5\x9a\xae\x15\xf5\x49\x05\xda\x51\x94\x9f\x56\x15\xf9\xd3\x4a\x9f\xa7\x6d\x72\x13\xad\x15\x6f\x76\xee\x20\x5b\xbe\xf3\x58\x0b\x7c\x52\x8a\x2b\x97\xa2\xb0\x2d\x54\x92\xbe\x28\x32\xeb\xe0\x64\xbe\x8d\xda\x37\xa4\xf0\xdf\xf8\x95\x5f\x73\xe3\x1f\x9e\x3c\xf2\xbc\x52\xd1\x89\x4c\x7b\x39\x1a\x11\xcb\x83\xf2\x4c\x67\x4b\xd2\xb0\x4f\xa8\x62\x41\x6c\x22\x16\xd5\x74\x74\x33\xfb\x24\xc0\x38\x5f\xdb\xed\x4c\x06\x45\x1c\x2b\xb4\x63\xd2\xfc\xf6\xe3\xad\x2f\x9d\x0f\x9e\x2a\xf1\x07\x0e\x96\xc2\xd8\x14\x7b\xaf\xf8\x13\x74\x20\x30\xcd\xcf\xc7\x95\xbd\xb7\x38\xbb\x58\xa2\xe4\x75\x98\x4e\x8f\xef\x54\x7d\xa2\x25\x6b\xda\x7d\x82\x4a\x3b\xc6\x60\xd7\xb0\x3c\xab\x85\xb3\xc1\xa2\x85\x0a\xe3\x4f\x2b\x00\x82\xbd\x73\xcd\x81\x1d\x24\x53\x8a\x1e\xfe\x78\xb5\xdd\x8c\xc6\xc0\x9f\x2b\x00\xc9\xaa\xc9\x6d\xda\x4f\x46\x99\xc5\x03\x87\x31\x84\xfe\x38\x1f\x2b\x9c\x4a\x96\xaf\x45\x61\xc6\xf2\xa4\xfb\x1d\xf6\x57\xd1\x7d\xfc\x85\x92\xd0\xbc\xa4\xd4\x96\x88\x94\x97\xa8\xf4\x51\xbe\xb8\xaf\x61\xfc\x9a\x38\xee\x3e\xaa\x44\xa2\x1c\x5e\x2c\x19\x47\x96\xbe\x38\xeb\x1b\x2a\x8e\x83\xfe\x7c\xa0\x9b\x3c\x6a\x75\x0c\x6d\x5a\x44\x5c\xb4\x3a\x74\x95\x88\x8f\xd5\xf2\x4c\x6d\xdb\xc6\xf9\xe3\x9e\x76\xf0\x08\x27\xc7\x6e\x26\x72\x71\x76\xe3\x7c\xa0\x66\xaa\x1e\x04\xea\x92\x1f\xe0\x35\xc1\x5f\x73\x5f\x59\x8f\xd2\xa2\x98\x74\x5d\x39\x98\x73\xdb\x5b\x1e\x52\x70\x0c\x77\xcc\x62\xd2\x74\x67\xb0\x49\x0c\x60\x87\x81\xfc\x54\x93\xe8\xbd\x4e\x96\x13\x25\xd0\x53\x2a\x8e\x6e\xa7\xa3\xac\x5f\x64\x7a\x9e\x31\xe9\x5c\xa0\x1c\xfd\x2d\xf5\x5e\x99\x5b\x4c\x14\xed\xaa\xd4\x05\x2f\x35\x47\x71\x6a\x4d\x14\xbe\x26\xf8\x2f\x40\xe9\x11\xf9\xf1\x71\x25\xd5\x5f\x58\x28\x16\xff\x60\x14\x87\x19\x58\x6a\x25\xcc\xf2\x91\x3f\x8f\xe0\x49\x5b\x43\x25\x6a\x34\xa9\x01\xe7\xe9\x8a\xbd\x5e\x90\xfc\x27\x63\xa5\x1e\x88\x5b\x11\xa5\xf8\x86\x1b\x88\x7f\x37\xf0\x63\x16\xbc\x02\x4c\xdc\xb6\xdb\x4a\x6a\x41\x9e\xc4\x8f\x25\x2a\x44\x35\xc5\xc3\xd7\x4e\x22\x11\xe3\x13\x3c\x44\xfe\x48\xdd\xb0\xc5\x20\xe9\x84\xdd\x50\xa0\xfb\x32\xef\x45\x17\x2f\x93\x60\x9b\xb7\x6c\x11\x14\xf5\x92\x98\xcc\xb2\x6a\xdf\xed\x77\xed\xbb\x9a\x38\xb9\xbd\x16\x87\x6d\x4e\xa9\x58\x8a\x57\xe5\xa0\xef\xab\xc2\xa2\x8d\x7b\x61\x6c\x6d\x9a\x6d\xf7\xce\x68\xac\xa9\x79\xff\x5b\xa0\x24\xde\xd8\xd2\xf0\xff\x28\x22\xb7\x2b\xe4\x65\x11\x85\x01\xce\x2d\xbc\x17\xde\xc9\x9b\x1e\x3f\x5e\xae\xaf\x29\xc1\xa1\x3b\xaa\x11\x71\x5e\x73\x2f\x9d\x52\x3c\x39\xe0\x8c\xe5\x0f\x8c\x9f\x2c\x03\xb8\x9f\x7d\xb6\xf9\xfc\x76\x1f\xdc\xfd\x00\xbb\x48\x46\xa1\x1a\xae\xa0\xfc\xad\x40\xc9\xae\x5d\xd4\x65\xdf\x6f\xe1\xae\xe1\xc1\x8e\xe3\xae\xb1\x8d\x6e\xaa\xd6\xc8\x9a\x89\x2c\x17\x22\x81\x1b\x3b\xaa\xc6\x66\x59\x27\x87\xfb\x41\x18\xdd\xe7\x16\x76\xdc\xa3\x98\x96\xb8\x74\xdc\x3c\xce\x87\x8a\xe2\xfc\x43\x37\x9c\x5d\x24\xfb\x79\xc4\x92\x1b\xa2\x84\x4f\x38\x0a\xc6\x4e\x2b\x09\x17\x64\x3f\xd8\x64\xc7\x09\x1c\x2b\x03\x18\x2a\xa3\x34\x24\x65\x8e\xa1\x35\x98\x2a\xd0\xee\x8b\xc0\x16\x15\x7c\xf8\x3f\x5a\x3e\x40\x3b\xed\xae\xc8\x44\xa9\x35\x1d\x4c\x5a\x43\xa6\xff\x0b\x64\x98\xe4\xb7\x08\x0e\xa1\x07\x47\x11\xe0\x5c\x1e\x7b\xa9\xec\x0b\x9a\xe4\x77\xdb\xa4\xa4\x2f\x62\x6d\xbe\x9b\x7a\x3d\x4c\x86\x8d\xe5\xcd\xb5\x0d\xc4\x75\xf8\xdc\xd6\x96\x4f\xaf\x6e\x04\x5a\xc6\x43\x17\x80\xdf\x0e\x3c\xa1\x0e\xb8\x79\x90\xef\x5e\xc3\x90\x25\x42\xc4\x77\xc7\x6a\xab\xa2\x74\xc4\x22\xce\x8a\xdc\x83\x8b\x88\xc8\x8a\x4f\x56\x20\x62\x8b\xb3\xcd\xac\x9d\xa4\x62\xf6\x58\x70\x34\xf0\xde\xeb\x4c\x65\xd2\xb5\xc8\x8b\xf2\xd4\x9a\x81\x1e\x74\x67\x06\x00\xfa\xa0\xb0\x01\x54\xa5\x48\x8a\xe0\xc8\x09\xac\x8b\xda\x80\x2a\xa7\xde\x29\x49\x6e\x56\xac\xc2\xbe\x85\x66\xbb\x6f\xe2\x9e\x7c\x03\xc2\x24\x04\xe4\x4e\x0e\xbe\xf8\x36\x21\x83\xaf\x61\x05\x1f\x26\x69\x4e\xfc\x02\xf4\xe8\xb1\x8d\x3f\xa6\xd5\xc8\xc7\xc1\xa3\x8a\x58\x3d\x55\xb5\x70\x28\x61\xa9\xd1\x6a\x01\xcb\x1e\x53\x62\x4d\x66\x60\xd3\xb0\x6d\x76\xd1\xbb\xd4\x32\x23\x0a\xa4\x3e\xc7\x91\xca\x77\x34\xc7\xc3\x27\xf4\x96\x15\xfb\xa6\x94\x38\x7e\x48\xa6\x08\x9f\xb8\xca\xce\x5a\xa8\xaf\x1b\x9b\x69\x25\xf8\xbb\xf0\x18\x11\x34\x5c\x53\x18\xbf\xb6\xc9\xf2\x94\xa1\x3a\x1a\x1c\x2e\x13\xa5\xbe\x66\x7e\xa9\x04\x48\x33\x79\xb6\x4b\xcd\x85\x9c\x80\x09\xa5\x4f\x3d\xf7\x34\xd5\x0e\xb0\x58\xae\xd3\xb2\x45\x45\xf5\x86\xee\xae\x3f\x50\x63\x3a\x04\x00\x93\xa1\xdb\x73\x7a\x0e\x76\xa6\xe5\xeb\x5d\x6c\xd7\xa4\x54\x58\x5c\x99\xd4\xa9\x3e\x57\x26\x36\x6a\xa7\xe1\x90\xf3\x45\xc1\x90\x34\x9c\xc8\xda\x91\xca\x2a\x9c\x3b\x58\x7c\xac\xc7\xb2\x6c\x28\x49\x20\x44\xe3\xe3\xca\xb2\xfb\xda\x9c\x4c\x5d\x37\x7c\xce\x71\x41\x71\x7a\xe8\xc1\xa5\xae\x49\x7b\x09\x87\xdc\x08\x9b\xb9\xc4\xc5\x27\x93\x1a\x35\xb4\x68\x29\xd1\x68\x72\x9d\x04\x1d\x2d\x65\x78\x2b\xd9\x32\xe5\x2b\xac\x39\x15\xf8\x0c\xe0\x4a\x6d\x61\x32\xb5\xed\x51\xea\x8b\x5f\x52\x98\x6e\x2c\xf8\xba\xb4\x27\xeb\xcc\x93\x81\xc9\x13\x0b\xb6\xed\xba\xe4\xc9\x47\xf2\xfd\x70\x29\x49\x89\x1a\xca\x4d\xd6\x3a\xb2\xd2\xf3\x2a\xda\x5c\xb2\x6d\x33\xb0\x3b\x28\x96\x41\xd4\xfa\x11\x2d\x73\xe1\xaf\x2e\x3e\x05\xff\xf4\x19\x4c\xa1\x34\xc4\xe9\x72\x65\x43\x16\xd7\x03\x4b\x7a\x55\xa1\x8b\xae\x60\x42\x1e\xa9\xc4\x75\xcd\xe5\x4f\x38\xa7\xed\x78\x05\x8c\xdc\x51\xa2\xd6\x97\x02\xbf\x78\x7f\x07\x13\x9a\xae\x17\xe4\xfc\x7f\x43\x93\x2c\xf5\xf1\x42\x04\x04\x54\x27\x90\x3f\x1a\x0c\x90\x1c\x3a\x4a\xf1\x2f\xbf\xe8\x28\xc5\x6b\x86\x4d\xd7\x4c\x0a\xfe\x36\x04\xa8\x00\x27\xe0\x1e\x3f\xc1\xaf\x89\xd4\x99\xd4\x5a\xe2\x30\xb6\xdb\x7c\x2f\xf6\x38\xfe\x0a\xcf\xeb\x18\x6d\x0f\xc4\xbd\xff\x5a\xd5\x64\x6f\x93\x4f\x40\x84\xbd\xbb\xd5\xf8\xfa\x57\x39\x39\x3f\xeb\xbc\x62\x18\x53\xaf\xa3\xe1\xa1\x6d\xef\x04\xbe\x5d\xf2\x4e\xc5\xf6\x83\x58\x38\x19\x0c\x6c\xba\x09\xf5\x8d\x14\x4c\x78\x1b\xfd\xec\x66\xd4\x7d\xa2\xb8\x6a\x71\xf5\xf4\x62\xf1\xed\xe8\xe2\x30\xcc\x10\x20\x23\xea\xe4\xfe\x77\x9f\x6f\x79\x3b\xc4\x64\x48\x78\x94\x3c\xd8\x8f\x32\x14\xb3\x06\x20\xe4\x7c\x00\xbb\xea\xe0\x6f\x7b\xe7\x3c\xbe\x64\xee\x20\xc7\xcb\x4f\x83\x3f\x49\xba\x60\x28\xd6\x20\x83\xff\x4c\x11\xc8\x30\x5c\x02\xd6\x73\xfb\x84\x02\x03\xc9\x8e\x76\xbb\x46\x2b\x69\x8e\xfb\x9e\x39\x8f\x6d\x62\x2d\x4f\x2b\x5e\xd3\x7b\x0a\x8a\xd5\x4e\xe2\xae\xcd\x32\xe6\x38\x03\xbc\xf1\x8e\x26\xcc\xbe\xe3\x5a\xc6\x26\x6d\xf7\xc3\xdc\xb6\xf3\x6c\x46\x8b\xd1\x9d\x08\x94\x7a\x1b\x3a\x2d\xc2\xe9\xa2\x86\xb1\x98\xdd\x4c\x94\xdc\xea\x64\x26\x97\x42\x51\xf8\x42\x6c\x73\x47\xb5\x4c\xee\x8c\x77\x79\x7f\xf6\x3c\xdb\x32\xd9\xbe\xf4\x33\x7c\x52\x97\x11\xd9\x51\x9a\x2c\x25\x71\x47\xfa\xd5\xc8\x32\xcf\x68\x3c\xf2\x19\xd5\xd9\x8a\xc2\x6e\x3e\xad\x3a\x5b\xbc\x3b\x85\xda\x5b\xb5\xb9\x2e\x91\xe5\x10\xfe\x6f\x6f\x70\xbf\x31\x32\xcb\x76\xca\x57\x08\xaf\xe0\x12\xd1\x35\x7d\x5b\x91\xdd\xdf\x54\xa5\xfb\x64\x94\x3d\x8e\xeb\x43\x01\xe1\x0a\x3c\x1a\x56\xd6\x15\x04\x83\x78\x7c\x4c\x8b\x84\x4d\xf4\xc8\xc4\x43\xf8\xee\x62\xc9\x95\xe8\x82\x11\xb8\xdf\x56\xed\x80\x2f\x2a\x1d\xf7\x75\xfd\x5a\x98\x86\x16\x55\x12\x84\xac\xf4\xe1\x9b\xbf\x0c\xb2\x27\xfc\xe0\x86\xa2\xbb\xfe\xef\x11\x99\x33\xd9\x53\xf0\xa4\x22\xd4\x4f\xd3\x24\x0d\xb3\x01\xf8\xbf\x1c\x47\xd9\x8b\xe2\xe4\x35\x25\xb3\x08\xae\x4d\x7b\xa4\xc9\xc9\xb1\x47\xa0\xe8\x7a\x4f\x79\xd0\xba\x96\x88\xd2\x74\xc2\x08\x44\xf1\x32\xa1\x5a\x5c\x2f\x1f\x57\x60\x27\x60\x15\x54\x55\x8a\x4f\xc8\xe4\x8a\x80\xbc\x6f\x37\x77\x42\xd3\x4b\xcd\x60\x20\xb4\x9d\x4e\x24\xcb\x93\xee\x9e\xd7\xd8\x69\x93\xdb\x94\xd9\x52\x51\x8d\x60\xd5\x45\x3e\xa9\x44\xbd\xcf\xd1\x08\x8a\xf3\x8b\xc8\x49\xee\x2b\x06\xdb\xfb\x95\x6b\xdf\xbb\xb7\x99\xfd\xdd\xa8\xa4\x65\x7f\x4e\xeb\xaf\x95\xc5\x27\x23\x83\xcd\x25\x6d\x5d\xba\x1a\xe9\xeb\x3e\xa1\x54\xf9\xf3\x51\x6a\xa2\xed\x2a\xaf\xf8\x34\xd0\x3f\x01\x06\x28\x47\xdf\x37\x3f\xcf\xff\x8e\x41\x7c\x2c\x37\x28\x5b\xba\x62\xea\x3e\x29\xac\xd6\x69\x61\x33\xf9\x4f\xec\xe6\xdc\x84\x6e\xa9\xf8\x6a\x3e\xae\x21\x37\x3d\xd0\xcc\x6d\x96\x87\x83\x24\x66\x39\x0c\x8d\xcc\x10\x5e\x47\xb1\x8d\x49\xd4\xb1\x59\x3e\xdd\xf8\x9a\xa2\x08\x2a\x62\x53\x64\xbd\xdb\x4b\x02\xd8\x0d\xa5\xa5\xe3\xc5\x12\xfc\xcc\x2c\x53\x6e\x22\x48\x14\xfe\x4d\x6f\x50\x7b\x76\x29\x1d\xd9\x0e\x0f\xe3\x31\x25\x62\xe0\x9d\xd2\x35\x25\xab\x92\xc4\xd1\xda\x53\xf4\xa5\x22\x98\x4f\xbb\x05\x8b\xef\x3a\x55\xdf\x10\x92\xde\xa6\x60\x06\x06\x79\xaa\xa5\xb2\xfd\xc3\x30\xbe\xc8\xb7\x0e\x93\xcf\x15\x83\xd9\x70\xf0\xdf\x47\x27\xc5\x8d\x33\x32\x9c\xdf\x25\x3c\xce\xb7\xb1\x7c\xe1\xb2\x31\xaa\x86\xc4\xe2\xd1\x89\x8f\xc1\xef\xd1\x0b\x87\x2b\x7f\x19\xb7\x8d\x64\xef\x32\x86\x93\x30\xb6\x74\x1d\xd1\x3e\x9f\x8c\x15\x5e\xff\x37\x94\x94\xca\xbb\xb0\x37\x22\x37\x57\xe7\x06\x08\xc7\x4a\x0f\x4f\xc6\xf9\x8b\xcb\x7a\xd8\x04\xff\xb3\xcf\x36\x07\xd6\xc4\x0e\xe0\x83\x34\xeb\x03\xa5\xe6\x00\x93\x81\x5e\xf9\x91\x3a\xe6\x90\xa5\x51\xda\x8b\x4c\x8a\x60\x09\x98\x1e\xb8\x1e\x3e\x76\x91\x49\x9a\x18\x1f\xb8\x0a\xae\xb7\xf8\x10\x1f\x57\x86\xb6\x0f\xcd\x7e\x85\x3a\x5f\x61\x3c\x72\x17\x08\xe3\xfc\x1e\xd9\x34\x87\x9c\x28\x5e\x28\x87\x5a\xc1\xd3\xa5\x1c\x3e\xee\xe5\x7d\x2b\x39\x6d\xc9\x6a\xcf\xb9\x38\xa5\x06\x88\xb8\x64\x7b\xbd\x4d\x31\xf6\x45\x15\x63\x5f\xac\x7b\x0e\x99\x6d\x9b\x51\x9b\xe9\x17\xe4\x39\xaa\x61\xae\x0f\x82\x27\x15\x22\x23\x2c\xa2\x34\x90\xe3\x0b\x9b\xce\x9f\xe0\xaf\x61\x02\xce\xe9\xc9\xc5\x0b\xc1\xe7\x36\x41\x59\xac\xd8\x51\xf7\x3c\xe6\xe7\xe5\xb8\x2e\x9c\x35\x51\x94\xe0\x0d\x21\x50\x47\x5a\xcf\xc7\x75\x62\x13\x18\x6f\x45\x77\x02\xbb\xeb\x63\x32\x56\x7c\x5c\x83\x70\x5e\x68\x0e\x93\x28\x6c\x5b\x0d\x27\xf8\x44\x85\xae\x9f\x54\xde\xef\xe2\x6c\x33\xb6\x6d\x9b\x65\x26\x0d\x23\xa2\xfd\xf3\x24\x19\x6e\x86\x7c\x87\xb2\x2e\x57\xfd\x90\x44\x6a\xda\xcb\x9d\x64\x35\xde\xa6\x44\xf5\xce\xd1\x06\x16\x2d\x3f\x3f\x04\xf6\x18\x40\x3c\xd8\x5b\x67\xc6\xaa\x86\x76\x6c\xec\x91\x3a\xc7\x95\x4c\xd1\xa0\xdd\x49\x62\x13\x75\x28\x35\xc3\xda\x3f\x13\x78\xae\xa3\x33\xe3\x5f\x7a\x08\xb2\x29\xb5\x59\xd8\x01\x72\x84\x92\x01\x27\x3c\xb7\x79\xd0\x44\x66\x48\x25\x3a\x5c\x4a\x4d\x18\xb7\xfb\x61\xd4\x51\xfa\xa7\x5c\x83\x15\xd3\xba\x47\x79\xd3\x6c\x38\xca\x6d\xb6\x8d\x8c\x86\x10\xc7\x51\x94\x81\xb2\xc2\xba\x66\xa2\x38\x03\x73\xc2\xff\x13\x28\x06\x08\x56\x9d\x96\x91\xd4\xcf\xeb\x1f\xf8\xc6\xc8\x44\x61\x37\x2c\x42\xdb\xc5\x59\x5e\xc3\x98\x81\xe2\xe3\x4a\x2a\x41\x84\x60\x69\xb1\xb2\x41\x8e\xe5\x8b\x71\x87\x03\x3f\x67\x71\xb8\x2e\x7b\x2a\x56\x35\xf5\x91\x1c\x07\xa5\xc3\x24\x7f\x7b\xec\x59\x3b\x6e\x53\x35\x42\x34\xb4\x44\xbe\x37\x35\x79\xd8\x0d\xdb\x3c\x59\x7d\xc8\xf7\xf0\x74\x6f\xcf\xcd\xbb\xa4\x36\xcb\xdc\xde\xae\x93\x5a\xf6\x0e\x66\x34\x4c\xe2\xed\xa5\x9e\x2f\x3d\x55\x69\xe1\xd2\x53\x45\x39\xe3\x63\x25\x86\xcb\x74\x7e\x2c\x19\x12\x78\x6a\xe7\xef\x8e\xfd\x13\xf9\x58\xbf\xcd\x64\x35\x2e\x96\xcd\x54\x71\x73\x28\x37\x5f\xa3\x07\x86\xdd\x00\x18\x9e\xa8\x88\xab\x1e\x66\x64\xc2\x38\x0f\xbb\x5d\xd8\x36\xe9\x95\x35\x1c\xa3\xef\x99\x8a\xdf\xdf\xbb\x77\x73\xaa\xe7\x28\x8e\x3c\xdd\x51\x09\x21\x92\x9a\xc1\x9e\xe2\x52\x90\x69\x83\xd3\x03\x95\xc7\x7f\x47\x74\x08\x42\xc3\xab\xb9\xb9\xe1\x86\xe1\x15\xcf\x71\x7d\x4b\xd6\x0c\x3d\x33\x27\x3d\x59\xbc\x02\xae\x66\x07\xbe\xd9\xc4\x1a\x1e\x4e\xca\xd9\xd3\xf9\x4c\x4d\xfc\x86\x64\x09\x4d\x9d\x2f\x23\xdc\xf9\x80\x80\xc6\xc8\xef\x4e\x2b\x62\xcc\xef\x52\x0d\x6d\xe3\xb8\x73\x48\x43\x8c\xdc\xa0\x78\x26\x64\x70\xaa\x4e\x81\xa6\xa5\xf0\xcb\xe8\x86\x70\xda\x89\xd6\xb6\xd1\x5b\x16\xe2\x5f\xcd\x02\x8c\xe0\x48\x68\x2f\x68\x87\x09\xef\x05\x6d\x51\x5c\xce\xf5\x40\x71\x43\x5f\x57\x5f\xbf\x4a\x03\xc5\x34\xa6\x2a\xb8\x8b\xe2\x0d\x38\x4c\xa6\x23\x01\x78\x7d\xec\x43\xc3\x07\x15\xa0\xc3\xbe\x85\x66\x6a\x57\xda\x09\x56\x07\xb6\xc1\xeb\x1a\x3a\xf8\xba\xea\x9d\x47\xa1\x09\xb3\x24\x86\xf3\x92\x41\x10\xc5\xb0\x79\xb4\x62\xbc\xc5\xe2\xe5\x26\x5c\x35\xc0\x69\x38\x84\xb2\x6e\xa7\xe8\xc5\xd4\xed\x66\x33\x1e\x61\xf4\x18\xb2\x72\x49\xc4\x55\x28\xb5\x6d\x52\xc2\x25\x37\x9c\xe4\xfd\x99\x6a\xf7\x6a\xae\x69\xc9\x52\x95\xbd\xf5\x5d\xe5\xad\xef\xba\x8a\x4b\x62\xdb\x9d\x86\xd2\x7e\x5f\xd7\x72\x6b\xeb\x0e\x73\x3d\xca\x6c\x5a\x22\xd2\x64\x15\x17\x61\xf3\x97\xf5\x33\x1a\x66\xb9\x61\x0a\x76\x2c\xe9\x2d\x2d\x0f\xf1\xd8\x32\xd9\xd4\x0c\x3a\xf8\x42\xf3\xb9\x47\x8a\x65\xca\xb2\xd3\xc1\xd6\x67\xa4\x88\x42\xb7\xc8\x02\xa4\x58\x16\x4e\x27\xd0\x35\x52\xfe\x0c\xc9\x22\xba\x11\x6f\xc0\x8a\x8b\x56\xc0\x94\x97\x66\x87\x54\x2b\xf3\xaf\xaa\xfc\x78\xef\xc2\x8b\x8d\x72\x1e\xa2\x52\x9d\x8b\x2a\xf7\x14\xd9\x41\x46\xaa\xc9\xc4\x03\x3d\x01\x44\xb1\xfb\x4b\xe4\xb7\xd5\x4c\xac\x63\xbb\x36\xee\xf0\x13\xe4\xfa\x14\x36\x88\x14\xab\xfc\x04\x46\xd6\x36\x34\x3b\xe8\x44\xd3\xcf\xaa\x09\xe4\xb3\x25\x98\x8f\x8d\xb2\xc7\x94\x74\xc1\xe3\x2d\x32\x33\x08\xb2\xff\x95\xa2\x50\xbe\x4d\x8d\x35\x17\x49\x17\x4f\x13\xfd\xd8\xa3\x25\x36\xd6\x0d\x85\x30\x40\x92\x8b\x0c\xe3\xb0\x5e\xf7\x97\x60\xa3\xf0\x09\xe4\x21\x78\xcc\x37\x10\x9f\x21\xc5\xde\x3d\x51\xd3\x6d\x47\xe1\x17\x10\x9c\xde\xa9\x3c\x9e\xf9\xf9\xa6\x1d\xf4\x8b\x65\x83\x8b\x11\x6a\x3a\x35\x51\x7f\x42\xbd\x0d\x9b\xe5\x66\x29\x0a\xb3\xfe\xb4\x5f\x09\xd3\x9a\xda\xe5\x9d\xb1\x77\x9b\x57\xe9\x6e\x37\x2e\xd5\x36\x5f\x93\x78\x45\x60\xbd\xc8\xdb\x50\x0a\xe6\x63\xc5\xa9\xd9\x27\x94\x49\xc3\xe3\x79\xde\xd3\xa8\xba\xf7\x82\xa7\xa4\xd2\xd8\x8b\x93\x41\x18\x87\xc9\x28\xe3\x40\xd1\xa9\x0a\x2c\xf8\xd6\xac\xff\x5e\xd3\x2e\x16\xd6\x34\xbd\x35\xa7\xdb\xec\xca\x11\x5c\xe4\xe1\x13\x7a\x85\xfc\x47\xe5\x34\xdc\x66\x3f\xa7\xba\x6a\xa7\xe0\x50\xe0\x28\xcf\x06\x0a\x71\x8c\x89\x65\x9e\xdb\x9d\x34\x7e\xf5\x00\xc7\x62\xff\x65\xec\xcb\x37\xdf\x29\x31\x6a\xbc\x3d\x26\x32\x1b\xd7\xe6\xf7\x66\xf3\xbd\xb1\xd7\x11\x7d\x07\x8d\x49\xe6\x28\xc5\xb2\xc6\xff\x5c\x02\x43\x91\x1b\x1b\x71\xec\x61\x1c\x99\x61\x45\x6d\x6d\x35\xbe\xfc\x22\xa7\x89\xac\x11\x8f\xcd\x7a\x99\x56\x17\xda\x88\x2c\x2e\x86\xbd\x0e\x76\x63\x94\xc8\x1b\x2d\x25\x93\x7c\x22\x68\x3c\xfb\xac\xab\x1e\x17\xde\x58\x2a\x3e\xe4\x80\x9c\xa2\x6d\xb1\x03\xb0\x67\x0e\x57\xbc\xc4\x73\xcd\x30\x6e\xdb\x0c\x46\x0c\x2e\x06\x3b\x90\x8f\xc7\x9f\xd3\x84\xcf\x64\x69\x73\x26\xef\x90\xdc\xc4\x87\x11\x17\x54\x50\xd3\x06\x9f\x2c\x5b\x01\x3c\xc7\x73\x78\x5c\x7c\x52\x43\x91\x5a\x5c\x4c\x6a\x4d\x26\xc5\x02\x4d\xcb\x25\x6d\xe6\x9d\x6e\x86\x3b\x9e\xf1\xe2\x6a\xcc\x08\xe0\xf4\x72\x9c\x1b\x63\xcd\x3e\xf9\x2b\x1f\xa6\x9d\x54\x70\x54\x4a\x27\xd8\x0c\xe1\x63\x17\xe8\x21\xf0\xb1\xfa\xcb\x5e\x3f\xc9\x72\x40\x88\x5e\xe2\x0c\xe5\x8c\x06\x9d\xdf\x2d\x0f\x31\x7b\xb2\xf2\xb6\x89\xa2\x6c\xa6\x84\xa9\xf0\xaa\x65\xa7\x34\x9f\xc1\x07\x5a\x23\xe9\x9a\x62\x1d\xf8\xb7\x35\xd5\xd9\xfd\xe5\xfc\x1b\x35\x46\xbc\x13\x3e\x2e\xd9\xd0\x51\xd6\x7f\x42\x0f\x6e\xaa\xb0\xf5\x86\x66\xaf\x78\x8c\x98\x9d\x81\xf4\xbc\x19\x14\x4b\x8b\x7b\x78\x58\xca\xa5\x40\x17\xc3\x5a\x20\xcd\x11\xe4\xbe\x0a\x9a\xef\xc2\xb3\xa3\x7e\x02\xaa\x7b\x2e\x91\x4e\xe8\xa6\x71\x9f\xe7\xf1\xdc\x80\xb7\x99\x56\xa0\xd5\xab\x41\x43\xc9\x55\x28\x2f\x74\xbe\xb2\x7e\xf6\xee\x6d\x16\xa1\x6d\xdf\xb8\x65\xa7\xba\xfc\x42\xd6\x75\xa1\xc6\x61\x65\x79\x32\x1c\xca\x9a\xc3\xc5\xdd\x1a\x2b\x11\xcb\x5b\xc1\x4e\xfe\x4c\x73\x61\xe1\x6f\xab\x2e\x26\x04\x1f\x50\x3b\xbf\x8e\xde\x2f\x2c\xf1\xdb\x41\xe3\x45\x99\x1c\xfe\x6d\xda\x9a\x8c\x6e\x47\x57\xc4\x65\x39\x7b\xe7\xd8\x6b\x7c\x8a\x3d\x0b\x4b\xb4\x7d\xe2\x41\x81\x7f\x84\x98\x11\x4f\xe9\x4f\x02\xcd\xc1\xf6\xfd\x71\xe3\xeb\x5f\xd5\xf1\xd3\x4b\x5e\x0d\x69\x9f\x40\xf2\xee\x12\x83\x10\x2a\x46\x7f\x82\x65\xc6\xac\x33\x78\xe2\x30\x1f\xbf\x43\x06\x17\x16\x03\x8e\x11\x46\x69\x5b\x8b\x6c\x1a\x2e\xe5\x7b\x20\x2b\xc4\xad\x9f\xa7\x91\x7a\xdc\xe1\xff\x4d\xdc\x66\xd8\x7b\xdf\x83\x4d\x63\x00\xbf\x67\xd6\xfc\xde\xcc\xa4\x24\x13\xf9\xec\xb3\x4e\x3e\x5b\xc5\x6d\xa7\xc6\x64\x5d\xb1\x97\x3e\x62\xae\x5e\x75\x87\x73\xf0\x2b\xdf\xfa\x5c\x4b\xf5\xd3\x4f\xeb\x90\xe9\x31\x50\x92\xc1\x12\x9e\x0d\x94\x10\x9b\xef\x27\xe6\xe1\x40\x20\x2f\xba\x51\x28\x43\x63\x1e\x32\x18\x9b\x51\xaf\x9f\x87\x36\x6d\x28\x50\xda\x31\xf5\x7c\x8e\xb9\x1a\xe9\xd0\x44\x86\x05\xbc\x5d\x2a\xa1\x48\xa6\x4b\x71\x70\xdb\x44\x5f\xc0\x8b\x84\x59\xde\x8a\xfe\x39\xa3\xf5\x03\x55\xf3\xbf\xab\xa7\x94\x8e\xd0\x4b\x82\xed\x07\x06\x0f\xcb\xe5\x51\x52\x86\x10\xf1\xe6\x62\x4d\x31\x8a\x41\xf1\x2a\xcd\xb4\x3c\xfc\x84\xc3\x59\xa4\xd4\x8d\x09\xbd\x54\x21\xa9\xa3\x35\x2c\xe5\xd4\xe2\xa1\x20\x12\xdb\x3d\x51\xbc\xe0\x97\xe1\x1b\x11\x39\x6c\x9d\x28\x44\x10\xe4\x03\xb1\xa4\xb6\xa3\xeb\xc1\x53\x70\x78\x45\x08\xca\xa6\x26\xa5\xf7\x1a\xa8\x11\xab\x73\x41\x69\x9a\xbf\xd8\x06\xd8\x1f\x4f\x56\xb8\x52\xe7\xe7\x9b\x4b\x69\x62\x3a\x6d\x93\xe5\x53\x2a\x5f\x78\x6f\xec\xc1\xfc\x97\x03\x0f\x80\x3e\x59\xc9\x86\x0f\xcd\xbe\xd4\x5c\xb5\x26\x22\xa2\x7d\xcc\x41\xb8\xea\x98\x6b\x69\x57\x41\x2f\x7b\xf7\x32\xd6\xaf\xa1\x9a\x3f\x0c\xe4\x14\x21\xfb\x12\x75\xe2\x68\xa8\xda\x72\x47\x4b\x1c\x84\x55\xb1\x8c\x97\x9a\xd6\xf4\xb8\xf3\x51\x37\xa8\xb5\xf9\x13\x5f\x6a\xc6\x49\xde\x97\x72\x20\xec\xe7\x03\x6c\x29\x3e\xa9\xeb\xf3\x0c\x4d\xcf\x1a\xc1\xe4\xa3\x74\x0a\x36\x4d\x3e\xae\x18\xc9\x83\x2f\x30\x66\xba\xe1\xcb\x74\xe0\xcd\x95\xd8\xcb\x43\xbb\x56\x4d\xec\xe4\xd9\x58\x5d\x55\x45\xce\x27\x15\xce\x6f\x90\xa4\x79\xcf\xf4\x6c\x36\xd5\x98\x9f\xdf\xb8\x14\x78\xc9\x32\x60\xa1\x65\x62\x5b\xb9\xd1\x94\x04\xe6\x7d\x96\xd5\x52\xd9\xd7\x64\x13\x7f\x2a\x15\xa4\x5e\x7e\x79\xa6\x30\x36\x52\xc5\x55\x2e\xeb\x03\xec\x03\x2c\xfd\x6b\x88\xeb\x1c\xd3\xb0\x03\x9c\x9d\xaf\xb0\xff\x1d\x9a\xfd\x4a\xb3\xbf\x36\x4c\x7a\xd1\x5a\xdb\x0e\x42\xd3\x28\xbd\xfa\xe2\x7a\x64\x4d\x78\x9d\x9d\xb8\x1f\x72\xc0\x8f\xd0\x93\x41\x79\x7c\xa2\xb2\xff\x2c\x5f\x8b\x64\xfa\x1a\x4d\x6e\x90\x9a\xf0\xb1\x06\x26\xa5\xe1\x6b\x49\x6c\xa6\x14\xff\xc9\x19\x05\xb3\x46\x18\x07\x4f\x73\xdb\xcd\x4e\x0d\x6d\x1c\xbf\x96\x84\xe0\xf9\xc6\x76\xe4\x1d\xcc\x27\x95\x7d\xb6\xb0\x70\xa0\x19\xdb\xf6\x32\x51\x10\x94\x2e\x8b\x1e\xa5\x5c\xd7\x2e\xf7\x8a\xf2\x95\x1d\xca\x3e\x1c\x27\x27\xe7\x26\x2b\x1d\x98\x0c\x7d\x2d\x46\x28\x52\xb7\xa5\x84\x56\x84\x09\x82\x38\xbf\x74\xbd\xbd\x6d\xdd\x32\xd9\xbc\x3e\x5f\xdc\x4f\x4a\x13\x96\x49\x0a\xd4\x58\x8c\xe3\x94\xad\x2b\xf4\x77\x47\xb1\x6f\x1a\xc2\x99\x41\x60\x91\x8f\x2b\x36\xa3\x78\x1a\xaf\xd8\x74\x94\x99\xc8\x02\x9d\x8d\x88\x9d\x69\x58\xf9\xa4\xf2\x53\xcf\x35\x23\x33\x8a\xdb\x7d\x31\x1a\x4e\x68\xd8\x27\x91\x9a\xa4\xbb\x9d\x2c\xc3\x95\x88\x8e\xab\xef\x13\x1e\xab\x63\x5c\xea\xa5\x50\xea\x2f\x3e\xe2\x6c\x7c\x71\x4b\xe2\x06\x15\x45\x5b\x64\x42\x00\x55\xe0\xed\xaf\xa8\x61\xee\x37\xb5\x8c\x4c\x0d\xc1\xe2\xfe\x66\xbb\x1f\x5a\x4c\x4e\x21\x4e\xbc\xae\xa8\x1d\xaf\xd7\x7f\xc2\xa4\x0e\x39\x50\x1a\xd2\x94\x12\xb7\xef\x8a\xe4\x36\x8e\x6d\x96\x59\x3b\x53\xe6\x5c\xf4\x9a\x80\x8d\x56\x89\xf4\xb0\xc4\xb9\xa8\x28\x1b\xab\x2f\x6d\x7f\x33\xb5\xc3\x24\xcd\x37\xe9\x8a\xfe\x99\xd2\x15\xfd\x33\x5f\x4f\xb6\x99\x4d\x57\x44\xf6\xae\xb4\x9c\x3c\xb8\xf3\x2e\x96\xbf\xbc\xfd\x3a\x56\xd3\xd4\xa4\xc0\xe1\xb8\xf9\x12\x45\x57\x5c\xc3\xec\x07\x12\x77\xf4\xb9\x30\xca\x05\xda\x68\xfc\xc6\xd3\x2d\xdf\x2b\xbb\xad\x12\xad\x61\x7f\x2d\x0b\xdb\x26\x9a\xf2\x98\xc4\xc3\x3a\x83\x78\x9f\xf6\x0d\x1e\xcd\x77\xf4\x08\x9e\x35\xd0\x84\xf7\x50\x5d\xba\x40\x81\xed\x6e\x5e\x66\x07\x5f\x68\x2e\x99\x88\x58\x68\x0a\x17\x00\xfc\xfe\x67\xf4\x11\x3e\x76\x85\xd5\x8e\x5d\x49\x72\x59\xea\x88\x8e\xbf\x4b\xd6\x88\x8f\x3d\xe8\x26\x45\xa1\xa8\x24\x01\x59\x7c\x48\xe4\xf3\x2a\xa3\x61\x2f\x1c\x68\x0e\x92\x38\xef\x33\x5f\xac\x84\x10\x8d\x05\xaf\x01\x55\x53\x71\x31\xd1\x68\x10\x87\xf8\x1d\x46\x92\xaa\x4e\x46\x95\x3d\x93\x64\x92\x93\x28\x4a\x56\x1b\x2a\x62\x3e\xa3\xc6\x04\xcf\x94\x5c\x7c\x97\x29\x23\xa4\xf7\xa4\xd0\x65\x5e\xc2\x7f\x98\x84\x71\x4e\x03\x02\x42\x1e\x0e\x1a\xc0\x12\xd1\x09\xcc\x29\xba\xf7\x38\x66\x32\x2d\x21\xd3\xac\x69\xa2\x11\x66\xb2\x6b\x53\xc6\xfc\xce\x39\x0a\x56\xda\x2c\x7c\x52\xaa\xa2\x74\xbb\xd9\x4e\x35\x79\x75\x12\x21\x27\x42\xbd\xa9\x96\x2f\x90\xdc\x56\x6c\x65\x57\x70\x1d\x82\x47\x56\x58\x83\x75\x04\xed\x88\x27\xd7\xa9\x28\xc1\xc7\x64\xd7\x5d\xb0\xe0\xa6\xea\x3f\xd6\x70\xa1\x51\xdc\x9b\xf1\xb3\xe6\xef\x6a\xce\xa5\x6b\xf4\xf3\xc8\x37\x1a\x9a\x32\x90\x23\x50\xfe\x48\xa0\x67\xb1\xad\x59\x66\x29\x49\xe4\x3f\x57\xd5\x70\xdf\x15\xfd\xe5\xbf\x3d\x16\xf9\xa4\x2c\x19\xe5\x7d\x9b\xc6\xae\xe6\x29\x2c\xcd\xb0\x5a\xc8\x43\xf9\xf7\x85\xd4\x61\x33\x98\xe4\xb9\x66\x18\x45\xcf\xd3\x9c\x55\x11\xc7\xec\x5b\xd8\xb8\xa4\x5a\x35\x99\x1d\xe6\x76\xb0\x64\xd3\x1d\x45\x14\x8e\x97\x0f\x31\x79\x18\xf5\xef\xc2\x11\x88\xae\xbb\xe2\x43\x84\x2e\xbd\x94\x4f\x3c\x1f\xc3\xeb\x81\xda\x34\x50\x99\x17\xa5\x8e\x9a\x01\x0f\xe9\x17\x36\xd4\x14\xf9\x3a\x2d\x3e\x91\x33\xd3\xab\x63\x69\xb4\xf6\x78\xf1\xe2\x64\xdc\x9e\x1e\x9a\x42\xd2\x2d\x38\x5d\x47\x3f\x2e\x75\x58\x51\xc4\xdc\x1d\x97\xc4\xe6\xf1\x14\xb1\x54\x40\xb8\x86\xe7\x7b\x04\x95\x29\xc4\x7b\x3f\x24\xd7\xe3\x00\xf5\x7b\xe7\x64\x5e\x19\x09\x33\x5f\x0a\xaa\x0f\xd8\x30\x68\xf9\x60\x5b\xdc\x1e\x7b\x94\xf2\x79\x35\x43\x53\x98\x8a\x5e\x12\x75\x9d\xd9\x87\x1b\x39\x3a\xf6\xf0\x81\xa3\x35\xbc\x29\x2f\x35\xf3\x7e\x52\x64\x7e\x33\x5e\x7a\xe9\x2f\xb0\xfc\x81\xc3\x40\x5d\x1e\x66\xef\x98\x2a\x28\xf2\x96\xc3\x22\xd9\xd2\xda\xe5\xc6\x77\x53\xbb\xdd\x4f\x6f\xdd\x54\xc2\x6f\x3b\x5a\x0a\x8b\xf0\x01\x9e\x88\xc3\x70\x09\xf3\xc7\xff\xef\x76\x49\x31\x4b\xf5\xba\xd6\xeb\x88\xf2\x49\x9a\xb2\x51\xd1\xef\xe1\x13\x3d\xd5\x9f\xb4\x97\xa5\xd4\x8b\xcd\x8f\x40\x9d\x8f\xf5\x90\x99\x69\x87\xd9\x60\xca\x4f\xfc\x23\xcf\x14\x61\xdc\xe2\xb7\x50\x8e\xfe\x4d\x35\xe0\xdc\xb1\x83\xa4\x9d\x9a\x3c\x6c\x6f\xa3\xf7\x86\xaf\xbd\x85\x54\x90\x4f\xe8\x26\x25\xcf\x51\xdc\x9d\x80\xf1\xf2\xf1\x44\x27\x40\x8e\x69\xe5\xd5\xa1\x6d\xe7\x3b\xe8\xf1\x29\x45\x2c\x41\xc8\x3d\xdd\xf2\x45\x43\x48\x03\x49\x23\x8f\xf6\x80\xcc\x11\x17\x57\x4e\xc0\xa0\x2b\x4f\x2a\x22\xf5\x07\x0a\x3d\xb0\x53\xb1\xda\xf4\x6c\x8e\xa7\x85\xef\x7a\x4b\x35\x08\xdf\x1a\x4b\x2b\x7f\x98\x26\x79\x6a\x3c\xf1\xb8\xcc\xad\xa8\x19\x96\xe0\x31\x35\x05\xce\xe5\x85\xfd\x5e\xe0\xc7\x31\x20\xad\x8f\x9f\x76\x7f\xb8\x1c\x27\xab\x91\xed\xf4\xac\x11\x9c\x27\xd6\x1f\x08\x8b\xf9\xb8\xe2\xfc\x16\x67\x9b\x91\xe9\xf5\xe4\x5a\x1c\x96\x65\x71\xd6\xa5\x3a\x1e\x04\xbe\x9a\x0c\x2c\x23\x2a\xa4\x3e\x48\x17\xc6\x05\x37\x5a\xb6\x52\x7c\xa3\x7a\x80\xab\x03\x16\xaf\x17\x1b\x99\x5f\x2f\x9f\x54\x6a\x74\x0b\x0b\xbe\xc6\x8b\xac\x1d\xfb\xe0\x98\x42\x58\x72\xd8\x8e\xce\xd3\xed\x52\xe5\xc4\x0c\xb2\xdd\xb4\x91\x1d\xdf\xe3\x97\x5f\xe4\x4f\x7d\x13\x3f\x2c\xb3\x06\x3e\xee\xda\x05\xcb\xed\x0a\x73\x87\xfc\xae\xd2\x72\x80\x3e\x4a\x7a\x33\x50\x9e\x8e\xb7\x34\x62\x44\xa6\xd7\x45\x71\xeb\x77\x11\xaa\x88\x58\xbe\xe2\xc7\x79\x7b\xbc\x49\x78\xf4\x57\x7e\xad\x79\x68\x76\x3f\xac\xaf\x1b\xfb\x29\x7c\x26\x9f\x28\x34\x67\xc7\xb6\x23\x93\xda\xce\x54\x11\xdc\x0a\xe1\x8b\x27\xba\x63\x39\x21\xe1\xda\xf5\xe1\x5c\xdf\xc4\x9d\xee\x28\x22\xc4\x8a\x50\xdd\x6b\xde\xfb\xda\x80\xb3\x1f\x46\x1c\x48\x89\xb1\x2e\x7e\x89\x8f\x6b\x73\x9f\x6e\x14\x16\x36\x43\xd6\x13\xc2\xd1\x9b\x78\x61\x7c\x52\x49\x7e\x16\x16\x9a\x59\x6e\x24\x39\xf3\x18\x4e\x0d\xee\xac\xc1\x2c\xad\x26\x2b\x36\x9e\xf2\x30\x46\xc6\xb4\xe0\x04\x0d\x5e\x79\x45\xbe\xc9\xb4\x64\xa3\xd0\x76\xb7\x51\x3c\x23\x2c\x8e\x0d\xc7\xae\x06\xaa\x60\xce\x8f\x29\x38\xc1\xdf\xdc\xa1\x55\x21\x34\xe1\x0d\x27\x2b\x7f\x5a\xb1\xdd\xe4\x36\x4e\x52\xdc\xb5\x88\x3b\xd2\xdd\xf0\x49\x20\xd0\xa4\xff\x0f\xd9\xe1\x66\x8f\xf3\xf2\xcb\x4d\x13\xaf\x51\x15\x07\x8c\xc3\x68\xbe\x5c\xf3\x7c\x0d\x7d\x44\x84\xae\x5b\xe0\xc7\xf2\x3f\x54\xc0\x69\x6b\xd2\xbc\x8f\x00\x53\xe8\x26\x94\xe5\x44\xc4\xa0\x59\x3f\xd1\x11\x7b\x4f\xbd\xf4\x0f\xd5\x48\x48\xde\x0f\x7b\x7d\xb8\x4d\xe4\x04\xc8\xc0\xf9\x38\xf8\x7c\x89\xc7\xdf\x0e\x86\x49\x6a\x52\x80\x90\x95\xfc\xc0\xfe\x8d\x4b\x50\x74\x03\x4d\x87\xc0\xf9\x4b\xf4\x0d\xd1\xf3\x0d\x1d\x8c\x2b\xcc\xdc\x7a\x0d\xe0\xb5\x88\xcc\x93\x3c\xcb\xed\xf0\xaf\x63\x8f\xd5\x3f\x30\x1c\x86\xf4\x03\x4e\xc6\xbd\xd8\xc3\x7c\xf2\x50\x5c\x83\x89\xba\x24\x69\xe0\x8b\x11\x77\x38\x92\x41\x58\x7e\x02\xab\x51\xfc\xc8\x66\xa5\xe1\xc5\xfd\xcf\x34\xbf\x34\xad\x1c\xda\x8f\x02\x05\xe8\x83\x9b\xe5\xd1\x2b\x95\x42\xe9\x42\xd0\x9a\x89\x97\x2d\xf2\xc7\x3a\x04\xa2\xef\xec\xbf\x38\x37\x5b\xdc\xde\x06\x90\x65\x1b\xa7\xeb\x26\x7c\xdd\x24\x90\x52\x94\xc1\xf7\xf1\xb1\x1a\xc1\x02\x80\xad\x1b\xda\xce\x74\x11\x55\xa1\xf7\x8d\xb7\xc8\xa5\xfc\xf7\x03\x2f\xa1\x8c\x3e\x2b\xff\xfb\xd8\x2f\x0a\xd3\x4b\xc3\xf6\x28\x22\x34\x34\x19\x25\xa1\xc9\xa5\xad\x29\x1a\x06\x5a\xfb\x93\x34\x24\xb6\x29\x84\xd5\x47\xf4\x94\x9c\x9e\xc4\x82\xcf\x65\x54\x7b\xe9\x23\x38\x1f\x57\xbf\xf6\x01\xd4\x85\x0a\xcf\xc0\xbe\x85\x66\x6a\x72\x7e\x08\xb8\x7c\x4c\x20\xf3\x71\xdd\x78\x62\x3a\x8a\xfd\x4c\xa4\xd3\x10\x59\xf0\x76\xb5\x86\xd3\x68\x38\x92\x06\x14\x8b\x44\xd1\x07\x44\x30\x4a\xf1\xab\x76\xb2\xc7\x0b\x07\x06\x67\x79\x47\xd3\x52\x3d\xc0\xf3\xa6\xe0\xfa\x4f\x9f\x05\xd4\x89\xca\x1e\xaf\x3f\x31\xf1\xcc\xa6\xbb\xc0\x46\x4c\x7f\xb5\xf6\xf7\x99\x38\x9b\x10\x64\x7f\xc9\x2a\xe6\xf0\x74\xdb\xa9\x43\x20\xc4\x2d\x8a\xf4\x14\x68\x74\x99\xc5\xf1\x15\x04\x00\x98\x29\xde\x4c\xfe\xf6\x44\x4d\x52\x9c\x54\xe3\x0b\x9a\xf5\xec\xd9\xf8\xd9\xa9\xe2\x37\xd0\x70\xbf\x87\x62\xaa\x1b\xd8\xd9\x3b\xe7\x00\xf6\x35\x92\x44\xb9\x61\x71\x68\xc0\x1f\xde\xa4\x57\xcd\xc7\xc1\x1e\x3f\xae\x6c\x46\xa9\x8d\x4b\x3d\x96\xd7\x03\xd5\x63\x79\xdd\x91\x4a\xe6\x6b\x43\x59\xea\xac\x30\xd0\xf2\xf1\xdc\xd4\xc4\x09\xcc\xd9\x2c\x9b\x51\x23\x1f\x40\x23\xa3\xfc\x35\x03\xf2\x30\x74\xf6\x7f\x32\xf6\xa1\x21\x1b\x5f\x21\x5e\x51\xc6\x37\xce\x6d\x8a\x1d\x8f\xd4\xed\xa8\x96\xdd\x3c\xaf\x38\xeb\x80\x12\x92\xec\x7e\xb3\xe7\x9b\x9f\x6f\xe6\x26\x5b\x66\x42\x6e\x34\xd5\x36\x68\x01\xe1\x62\xae\x20\x80\x15\x51\xd0\x0a\x97\x06\x09\x7f\xa0\x46\xc3\x38\x3b\x5c\xb1\x80\xee\x6a\xd6\xab\x35\x19\xa2\x00\x07\x66\x74\x69\xf7\xc7\xae\x72\xdc\x0f\xb3\xa1\x89\x79\xc8\x12\x5e\x64\x4f\x4b\x15\xb1\xf7\x28\x81\xbc\xd4\x66\x79\x6a\x42\x34\x18\xbe\xe2\x65\x2e\x5c\xf9\x64\x5d\xb7\x0b\x8a\x94\x9d\xa1\x67\x8c\x97\xd5\x8c\xbb\xe7\xd4\xd0\x78\x96\x8f\x3a\xa1\xcd\x76\x36\x1c\xff\xc4\xef\x62\x35\xe3\xd5\xae\x63\xfb\xf3\x09\xf9\x7a\x78\xd2\x0f\x83\x12\xea\xab\x30\x47\xfc\x1f\x94\x00\xa0\x0b\xc7\x23\xfe\xdc\x9b\x25\xdb\x83\x28\xf3\xcd\x40\x31\x9a\x1d\xab\xc9\x17\xf7\x37\x93\xe1\x30\x71\xa8\x05\xf8\xae\x2d\x54\xbb\xe3\xe3\x0a\x54\x7f\x61\x61\x7f\xb3\x1b\xba\x4a\xbf\xfc\x28\xfd\x90\x74\x87\x25\xd3\x81\x6a\x0a\x80\xa8\x22\x56\x4c\x5b\x92\x4f\x02\x2f\xb8\xc1\xe0\x3b\xe4\x68\x53\x24\x3f\x25\x40\x9c\xe2\x6a\x5c\xe1\xd4\x15\x22\x5f\x57\x10\xb1\x94\xe1\x41\x08\xa1\xd1\x78\xe7\x63\x77\x2d\x66\x29\x31\x69\x07\x3c\x54\x9a\x34\x0c\x4b\xfe\x8a\x57\xe8\x7e\xf1\xf3\x58\x1c\xb0\x7a\xa7\x54\x19\xe3\xa6\x6a\x91\x1c\x1f\x97\x98\xf2\x94\x0e\x67\x9c\xa4\x83\x64\x94\xcd\x90\xbb\x10\xd2\xbd\xe2\x83\x78\x0d\x5b\xaa\xc2\x40\xae\xb5\xec\x46\x68\x4f\x07\xfe\x11\xa6\xab\x66\x4d\x29\x23\x32\xca\x8b\x4f\xea\xc5\xf3\xcc\x1a\x8f\xa1\x38\x94\xf0\xfc\xbc\x43\x09\xd7\x71\x88\x8f\xe2\xae\x09\xd1\xba\x83\xad\x45\x79\x94\x8f\x55\x7d\x3f\x5e\xcb\x84\xaf\x41\xca\xf5\x0d\xa7\x79\xc4\x13\x2a\xc2\x54\x27\x71\xa5\x19\x8c\x32\xeb\xc4\x67\x85\x64\xc5\x03\x3d\xae\xa9\x06\x77\x34\x7a\x75\x04\x1d\x6d\xaf\xe3\x5d\x4e\x9b\x16\x67\xdd\x28\x4f\xc3\x8d\x56\xaf\x2b\xb4\x4f\x2f\x49\x32\xbb\x04\x01\x72\xdf\xfb\xbe\xa8\x7a\xdf\x5e\x87\xc0\x2c\x25\x23\x07\xf8\xab\x73\x79\x9f\xab\xc1\xa3\x35\xb6\x3e\xe3\x64\x58\xe8\x86\x45\x6f\xe5\x61\x11\xd9\xc0\xa4\x79\x88\xde\x9f\x2a\x99\x3a\xa2\x68\xa5\x32\x8d\x5a\xff\x13\xb4\x74\x84\xf6\xce\x37\x92\x18\xe8\x82\xb5\xf3\x23\xf4\x49\x84\xbd\x94\x56\xa3\xe8\xde\x2b\x51\xa6\x9f\x04\x9a\xe0\x40\x2d\x04\xd4\x26\x44\x1d\xa1\x70\x74\xae\x16\x51\x98\x22\x99\xf1\x2c\xd6\x24\x22\xb7\xfb\xd4\xc4\x17\xb5\x15\x32\x5e\x32\xe2\x59\xb8\x62\xc4\xaf\x6c\xe3\x51\xa1\x9a\x69\xf9\x2d\xfa\xfc\x3f\xfd\x27\x8d\xe2\x47\x10\x2e\xbe\x17\x28\x7d\x9c\xf7\x9c\xfb\x5b\xb2\x26\xcf\xa6\xbd\x84\x1a\xd0\x0d\x72\xac\x50\x99\xf7\x02\xa5\xcc\xf6\x3d\x87\x7f\x4d\x49\xba\xbc\xac\xc2\xa1\xc4\xc3\xce\x55\x40\x64\x45\x50\x1e\x85\x19\xcb\x61\x3b\x56\xd8\x85\x05\x39\x0e\x7c\x09\x65\x60\x33\xb3\x4d\xb1\xab\x1f\x47\xda\xee\xaa\x9a\xc5\x03\x71\x97\xed\x06\x4e\x36\x34\x05\xd4\x95\xb1\x6f\x5e\x9e\x50\xb9\x5f\x6a\xda\x21\xc4\xc5\x7d\xa4\xa8\xc1\x69\xf4\xab\x58\x0f\x7f\x4e\x6f\x41\xfe\xa3\x78\x3c\x82\x66\x73\x86\x6e\x90\x8c\xe2\x1c\x6c\xc4\x88\x6e\xb7\x11\x2a\x07\x4d\xec\x7b\xe4\x37\x00\x4d\xc0\xfc\x9b\xde\x1f\xc8\x72\x1e\x6d\xa9\x09\xd2\x6a\x65\xa6\xf0\xf3\xa9\xe9\x20\xc7\x50\xbd\xb1\xe2\x33\x32\xee\x42\x57\x0c\xb7\xbf\xb5\x22\x9c\x37\x77\xb0\x19\x25\xc9\x32\x7b\x10\x61\x6d\x2c\x7e\x5f\x0c\x73\x0d\xc0\x6e\x40\xcc\x99\x23\xf1\x3b\x4a\x7b\x73\xe1\xa1\xda\x9b\xf3\xf3\xcd\xa5\x64\x35\xe2\xe2\xb8\x40\xa2\x1a\x4a\x50\xda\xef\x87\x2a\xa4\x61\xef\x5c\x33\x1d\x45\xd2\x9d\x14\xb4\xbf\x86\xfe\xab\x92\x61\x6a\xf3\x30\x25\x2b\x07\x52\x1e\xe0\xbe\x8e\x50\x7a\x8e\x30\xe3\xf7\x39\x0b\x73\x6e\x60\xc1\x49\x07\x4d\x8a\x58\x5a\xd8\x96\x1a\x4e\xc3\xfd\xaf\x94\xe1\x1d\x98\xf6\x32\xcd\x99\x28\x02\xa5\x39\x4d\x36\xa5\xb4\xda\x9c\x0c\xd8\x15\x2f\xe6\x31\x0a\xa3\x0e\x45\x1f\xce\xac\x7c\xfd\xab\xde\xc3\xba\xd2\xf6\x5f\x8e\xcb\x9c\xff\x7e\xae\x0b\x15\x47\xec\xb8\xdd\xb4\x70\x44\xd5\x9c\xae\x04\xc9\xfe\x09\x3d\xff\x07\x30\x97\x20\xd9\xdc\x95\xa4\xa3\xdc\x4e\xf9\xc7\x02\x2f\x8c\x5a\x04\x6a\x23\x12\x20\xfa\x00\xda\xc6\x2b\x36\x4a\x86\xac\x22\x21\xd5\x46\x5a\x07\x52\x6e\x7c\x4c\x85\xc6\xa6\x87\x21\xec\xd2\xe4\x36\xd2\x83\xf3\x6a\x07\xde\x7f\x28\x29\x7f\x96\xdb\x55\x93\xe6\xc8\xa1\x11\xfa\xde\x0a\xca\x9d\x60\x5f\x9e\x38\xec\x21\x0a\xa9\xcd\x93\x34\x34\xd4\xc4\xc1\x1d\xdd\x56\x9a\x2d\x63\x3c\x4e\xbc\xdb\x9b\x2a\x00\x8f\xc2\xa5\x35\xd3\xf0\x89\xf5\xf5\x92\x54\xee\x13\x0a\x61\x51\x04\x91\x1c\xab\xc1\x72\xb3\x6d\xe0\x93\x5a\x98\xe5\x30\x4d\x06\x61\x26\x2d\x14\x07\x5d\x2a\x1e\x9e\x34\x1e\xab\xf3\x8b\xc5\xc7\xc2\x95\x30\xb2\x3d\x26\x1c\x07\xbc\x99\x3b\x3c\x7c\x52\x23\x40\xd5\xec\xd8\x9c\x78\x5f\xf5\xcc\xec\x19\x55\xc8\x3a\x53\xb1\xc1\xf3\xf3\x28\xe7\x61\x62\xdc\x91\x87\x3b\xfa\xcc\xaa\x28\x09\x68\x36\xf3\xbc\x08\xe9\xdd\xd0\xef\xbb\x8a\x7a\xe7\xdd\xba\xdc\x76\x35\x35\x43\xfc\x86\xa3\xfc\x70\x53\x85\x1f\x04\x9e\x85\x22\x0b\xb3\x9c\x2d\x06\x76\x51\x03\xe3\x1e\x25\x48\x26\xd3\xfd\xe8\xe2\x43\x14\x8d\x8a\xdc\x21\x47\x46\xe8\x38\xf6\x3c\x47\x41\x15\xc7\xf1\xf2\xcb\xcd\x76\xdf\x9a\xa1\x4d\xa7\x3c\xb1\x08\xe7\x02\x8c\x41\x55\xf9\xd3\x69\xd5\x3b\xcf\xf2\x34\x44\x07\x64\x71\x96\x13\xef\x77\xc7\x7e\xce\xef\xdd\x3a\x12\xc6\x01\x98\xff\x3b\x9b\x14\x0c\x9d\xb0\xca\xc5\xf1\x2e\xe7\xae\xbf\x7e\x80\x60\xfb\x88\x21\xce\x83\x84\x00\x25\xdf\x1d\x64\xb8\x84\x96\x9d\x0a\x37\x37\xea\x8a\xa0\x91\xc9\x59\xd6\x02\x75\xb7\x6b\x81\x12\x69\xfd\xdd\xc0\x83\x9f\xae\xd7\xf5\xfd\x48\xd7\xd4\x2d\x23\x99\x48\xa3\xb5\xce\x27\x6a\xe8\x71\x38\x8a\xa2\x25\xd3\x5e\x6e\xf8\xd2\x20\xf8\x28\xf8\x58\x65\xfb\x83\x24\x9b\x56\xa1\xc3\x4c\xcb\x77\x90\xae\x10\x16\x54\x0d\x1e\xbe\xe4\xa2\xf7\x9a\xdb\xeb\xa6\x66\x80\x84\x5e\x54\xeb\xe9\xe2\xc4\x70\x56\xc9\x5b\xe7\x9a\x79\xdf\xe4\xdb\x8a\x77\x84\x87\xf7\xf3\x2d\x5f\xf1\xfe\x4d\x2d\x6b\xa2\x04\x48\x2f\xa2\xe8\x84\x6f\x85\x1b\x47\xa7\x71\xa6\x82\x23\x2a\x42\x99\x25\x1b\x25\xab\x20\xf2\x43\x49\x7b\x0a\xe8\x47\x67\xb4\x7e\xe5\xd7\x78\xef\x7e\x5f\xc1\x4e\x3e\x47\x76\x1a\x55\x92\x6b\x75\x3b\xa7\x6f\x0d\xfb\x7a\xb4\x4f\x11\x21\x21\x39\x80\xfa\xa0\xe4\xc9\x4f\xab\xaa\x58\x9e\x26\x9d\x51\x9b\xb0\x28\x0d\x85\x8d\x3c\xa1\xd5\x14\x4f\x8c\x3d\xc3\x55\xdf\xa6\x8f\x7b\x2a\xad\x93\x4f\x61\x34\x05\x91\x24\x04\xc7\x10\x77\x6d\x01\x75\x0a\x82\xee\x6f\xab\x5c\xf9\x0f\xc6\x8a\xc7\xef\x12\x76\x11\x7c\xfb\x5b\xe4\xbb\x18\xe6\x8b\xb8\x19\x65\xe6\x2b\x2a\x0d\xe1\xe1\x3d\x66\x27\xa3\x98\x16\xf9\x38\x2a\x78\x58\x4b\x3b\x5a\x2a\x66\xf9\x44\xd7\x27\xae\xaa\xd9\xa0\x38\x1c\x0e\x93\x98\xf3\x24\xfc\xd2\x59\x45\x96\x78\x46\x13\x9f\xde\x09\x36\x55\x60\xe7\x0e\x36\xe7\xe7\x17\x1b\xde\x64\xfe\x05\xad\x65\x3e\x56\x89\x4e\x6a\x7b\xa3\xc8\xe4\x49\x9a\xcd\xf8\x4d\x0c\xe0\x28\x1f\xd3\x6d\x3b\x15\x50\x9f\x3b\x40\x4a\x03\xe8\xd2\x7b\x2a\x8f\xb6\x49\xbc\x0d\x17\x2d\xb3\xdc\x7e\x66\x6f\x57\xcb\x6f\x8f\x4f\x94\x41\x3f\xa2\x41\x51\x37\xc7\xaa\x8c\xf4\x6d\x3d\x29\x6a\xbb\x4c\xa5\xf0\xa2\x0b\x5f\xc1\xfa\x2f\x93\x55\x15\x23\xff\xc2\x81\xa6\x0d\x7b\x7d\x06\xa8\x48\x65\xd4\x03\xc5\x2e\xd4\xa2\xb6\xec\xab\xc4\x80\xe9\x58\x40\x58\xb1\x1a\xa6\xf5\xae\xe2\x5e\x3a\x3b\xf6\x55\x1f\x33\x30\xaf\x51\xec\x06\xae\x6e\x58\xbd\x77\x34\xf1\xfe\x66\x42\xc5\x39\xf9\xa3\x4a\x9d\x9f\xaa\xa8\x71\x98\xf5\x5d\xc6\x2b\x50\x36\x7f\x1b\x67\xb5\x53\x4f\x46\x69\xdb\x66\xd3\x1e\x70\xf2\x7d\xc4\x98\x52\x30\x29\xbe\xc2\xd5\x4b\x1c\xd4\xe0\xfb\xbe\xc8\x62\x57\x6d\x91\xc1\x14\x1b\xdd\x35\xa8\x5c\xa1\xb1\x56\x6e\x98\xda\xe7\xc0\xd2\x95\x52\x0c\x38\x5c\x28\x79\x6e\xbc\x51\x92\x51\x2a\x3c\x07\xe2\x21\x89\x39\xb1\x50\x44\x71\xc8\x17\x66\x3e\x53\x89\x0d\xb8\x89\x66\x7c\x47\xfc\x1e\x39\x29\xec\x98\xb7\x69\x79\xb2\xe4\x99\x12\xb7\x62\xa8\x06\xb7\xeb\x6b\x82\x8c\xfd\xcd\xb6\x19\x0c\xad\x19\xd1\xe3\x75\x74\xb8\xc5\xc5\xf1\x89\x6a\x06\x45\x76\x35\x44\x89\x0e\xb7\x7a\x54\x65\x56\x47\x6b\xa4\xf2\x17\x8b\x80\xa9\x97\xda\x0c\x1f\x72\xd2\x77\x8b\xb3\x0e\x6b\xb8\xf9\x95\xcf\x1d\xc4\x88\x11\xc4\xae\x54\x2d\x7b\xdf\x79\x4d\xa4\x7a\xbe\x12\x9e\x51\x7e\x92\x32\x04\x52\x69\x90\x43\x08\x96\x8f\x6b\x92\xd6\xa6\x59\x4a\x56\xec\x8c\x9f\xae\x7e\xa4\xb5\x49\x68\x67\xbf\x0b\xc8\xd5\x1c\x41\xf1\xa5\x42\x88\xb8\xf9\x52\x9e\x6b\x66\x36\x1d\xda\x38\x0f\x63\x44\xe7\xcc\xeb\xaa\x90\xd2\x3a\x73\xba\x52\x83\x3c\x6b\x66\xa3\xa5\x28\x1c\x20\xfe\x11\x92\xc7\x86\x9b\xce\x3a\xe9\xe2\xe4\xae\x69\xdb\x28\xec\xe6\xc8\xe4\xa4\xbe\xee\x41\x45\x75\x79\x7a\x33\x33\x2b\x65\x42\xdc\x77\xb0\x66\xf9\xa4\x52\x08\xfb\xda\x1c\x57\x53\x1a\x1e\x84\x0c\x81\x14\x61\xf8\xdf\xfc\x23\x7b\xe7\x9a\x59\xf1\x04\xa6\x14\x6f\xe3\x55\x24\x0f\xf0\x3c\xa0\xb8\x7f\x98\x8b\x5f\x58\x68\xae\x85\x36\x82\x5e\x21\xde\x1d\x50\x68\x08\x35\xa6\x5b\x25\xad\x1f\x29\x8e\x0d\x46\x59\x3f\xf5\x4a\x8b\x08\x07\x0e\xa3\x68\xc0\x27\x0e\x9f\x41\xf4\xd6\x61\x11\x19\x4d\xa3\x33\xa9\xd4\xf4\x67\x28\x25\x43\xea\x74\x5c\xb7\xf4\x2f\x97\x3a\x8a\x9d\x30\xdf\xe9\xd1\x53\x47\xc6\x1e\xde\x7f\x32\x50\x66\xed\x63\x46\x90\xa1\x9e\x71\x4e\x23\x09\x3e\x0e\x7c\x77\xf8\x43\x32\x48\x68\xe9\xdf\xd2\x3a\x8b\x57\x55\x13\xe8\x9f\x6d\x45\x59\x90\xbf\xcb\xf1\x19\x14\x79\x42\x92\x0a\x98\x02\xb9\xda\x6d\xc5\xbf\xc2\x15\x56\xc9\xd4\x3d\x54\x2e\x4d\xec\xd2\xa8\xbd\xac\x55\x46\xcf\xe9\x38\xfb\x5c\xb0\xb9\x6a\xf7\x5c\xb3\x93\x34\xbc\x70\xf1\x11\xec\x10\x51\x03\x79\xd4\xf9\xed\x57\x20\x4f\x7d\xc0\xbd\x25\x55\x3e\xbf\xe8\xc6\x47\xdb\x49\x94\xa4\x91\xcd\xb2\x98\x8c\x84\x02\xd2\x68\x80\x8d\xb7\x40\xc9\x20\x44\x42\xb1\xe0\x87\xaf\x5c\x84\xc7\x23\xaa\xc2\x8e\xbd\x19\xb1\x4f\xfc\x68\xb6\x9f\x86\x71\x6f\xd5\xa6\xcb\x56\xf1\x4a\x7d\xa6\xc7\x74\x3e\xab\xac\xff\xb9\x83\xcd\x81\xe9\xc5\x96\x77\x99\x93\x53\x73\xc3\xb1\x17\x2b\x0d\x95\xbf\xdf\x5c\xf5\x9b\x4c\xca\xc5\x74\x79\x52\x47\x76\xb2\x0e\x91\x49\xc3\xd8\xe6\xd3\xbe\x0e\xf0\x7b\x63\xb5\x66\xb7\x4e\xca\x12\xb0\xce\x4c\x3f\xd2\x52\x39\x4c\x64\xad\x57\x0e\x05\xc0\x08\x8e\x84\x8f\x5d\x49\x2b\xb2\x26\x16\x0c\x86\xc8\x15\xd3\x45\xf2\xc9\xf8\x29\x25\x9b\x92\x0c\x92\x9c\x74\x3e\x66\x14\xe8\xf9\xa3\xb1\xef\x69\x9c\x51\x08\x5a\x0e\xf4\x45\x2a\x1a\xab\x5e\x58\xd0\xcb\xc2\xe2\xa9\x30\x4f\xe0\xbf\x8f\xab\xcc\xec\xb8\xa2\x76\x8f\x6d\x2f\x0a\x7b\x8e\xd2\x0e\x3b\xf2\x8d\xc0\xef\xce\x37\x6a\x2c\x07\x3c\x5a\x43\xf1\x42\x5c\xd4\x4a\x3c\xd5\xca\xd6\xa1\xd9\x97\x48\x8d\xdd\xe1\x36\xe7\xe7\x6b\xa6\xa7\xf7\x2d\x34\xbb\x11\x28\x77\x14\x3d\x7a\x39\x3c\xd8\xe3\x12\xdf\xdc\xa6\x2b\xa1\x5d\xcd\xa6\x7d\x61\x78\x63\xac\x60\x23\x3c\x4a\x4f\x2f\xe7\xcd\x27\xc9\xde\x20\x3a\xdf\x50\x8d\x2e\x13\xe7\xe1\x37\x46\xba\x2b\x8a\x54\x8c\x8f\xcb\x70\x4d\x1b\x97\xf1\x63\x78\xfc\x52\xd2\xa9\x36\x2a\x5e\x6a\x76\xc2\xd4\xb6\xd1\xec\x11\x7b\xe2\x11\xb3\x55\xe4\xff\xa1\xd9\x66\x9e\x86\xed\x65\x34\x09\xc5\xd0\x15\x06\x8c\x8f\x2b\x70\xd8\x22\x8d\xea\x24\x53\x4a\x7b\x04\xc8\x29\xf8\xcd\xbf\x0c\x34\x85\x9e\xdf\xe2\x59\xdb\xc6\x76\x9b\x07\x19\x1e\x0d\x3c\x9f\xfc\xcf\x14\x96\xf8\x28\x39\x20\xfe\x77\x00\x44\xf9\x3f\x02\x15\xf3\x1c\xad\xc4\x3c\x98\x03\xa0\xb7\x83\x5d\xa0\x58\xe8\x5e\x52\x1a\x7f\xee\x2d\xe4\xb9\x09\x79\xcb\x38\x38\x3d\x3d\x29\x81\xd6\x7b\x88\xef\x52\x32\x58\xca\xfa\x36\x8a\xa6\xe8\x7a\x10\x8f\xbd\x4b\xf9\x21\x84\x9a\xd0\xab\x11\x90\xcb\xe7\x9d\x15\x8c\xf3\xd4\xb4\xed\x30\xf7\x13\x65\xaa\x6d\x7b\xc0\xb5\x6d\x7f\xf1\x21\x45\x36\xef\xcd\x14\x71\xd0\xe5\xa0\xe4\xba\xb4\xaf\xc8\x86\xdc\x43\xc1\x13\xbb\x41\x96\x82\x8f\x83\xcf\xb9\x55\x4c\x10\xbd\x30\xee\xf1\x64\x3f\x02\xbd\xb7\x02\x05\x3c\x7a\x4b\xbf\x38\xd3\x5e\xce\xd0\x6e\x12\xb9\x29\xba\x78\x64\x7b\xdf\x54\xf5\xe1\xb3\x8a\x3b\xe2\xae\xb7\x4c\xc5\xf5\xe7\x8d\xc6\xd7\xbf\xea\xd5\xde\x8b\x5f\xe2\x93\x4a\x19\x06\x3c\xfd\xc3\x64\x14\xa3\xac\xe6\xa6\xcc\xfc\xc4\x59\x4d\xbd\x7d\xb1\xb0\x80\x52\x2f\x07\xaa\xf7\x84\x9a\x5f\x39\xa1\x92\xc2\xcc\x44\x2b\xa6\x93\xa4\x26\x6e\xa8\x4e\x0c\xdf\x95\x88\xb4\xf9\xa6\xc6\xd2\x28\x8a\x30\xb7\x21\xb4\x04\x7e\xae\x1a\xdc\x3a\x42\x51\xaa\xd0\xb1\x61\xb7\x4b\x08\x99\x35\xb0\x65\x22\xbc\xbc\x8a\x39\x60\x31\xb1\x34\x8e\xa9\x6c\xec\x82\xfc\xd9\x5f\xc7\x40\x65\x4d\xda\xee\x7b\x69\x4a\xb8\xfe\x7b\xb8\x76\x18\x24\x16\xcd\xe6\xe9\xd3\x9a\xe6\x74\x73\x18\xd1\x14\x35\xbe\x01\x49\xc7\x87\x63\x85\x80\xff\xb0\xb6\x09\x94\xdb\x28\x6a\x78\x61\x58\x56\xb8\xe7\x93\xd2\x04\x42\xbb\xc3\xa3\x35\xae\x95\xe7\x29\x05\x4e\x8e\x55\x1b\xee\xae\x22\xbb\xee\x9a\x41\x18\xad\xed\xae\x4c\x6a\xa2\x55\xba\x93\x46\x5c\x11\x32\x22\x67\x87\x71\xbe\x8c\x52\x05\xe8\xff\x38\xed\x74\x1c\x28\xbe\x58\xfa\x11\xe5\x54\xd8\xab\x6f\x04\x6a\xa4\xff\x6d\xf4\x05\xf8\x64\xec\x7d\xf5\xaf\x2b\xbc\x08\x0f\xae\x3e\x4c\x03\x69\x7e\xbe\xd9\x09\xb3\xbe\xa2\xc9\xf9\x1e\x99\x03\x29\xa6\x54\xe7\xc5\xda\x26\x4c\x6d\x6c\xe5\x25\xa2\x05\x75\x2f\xa8\x46\x6b\x32\x18\xe2\x79\xfd\x93\x25\x3f\xbf\xd4\xf0\x19\x0d\xe6\x79\xf9\xb8\x52\xac\x2e\xb6\x94\x19\x86\xb9\x97\xcc\x78\xc9\xf1\x4f\xd1\x23\xe3\x13\x47\x04\xdc\x31\x6b\xbc\x3e\x36\xd0\xc0\xdd\xb8\xa5\x8a\x89\xed\x24\xee\xd8\x01\xff\x7e\x89\x18\x9c\x4f\x6a\xaa\xe5\x0b\x45\xaa\x41\xf5\x8d\x08\xad\x7a\xaf\x2f\x39\xeb\x3a\x89\xd5\x21\xde\xfd\xcd\xdc\xa4\x3d\xeb\x67\xbb\x1c\x38\xdb\xc7\x91\xaa\x05\xb4\xdc\x37\xb1\xba\x2a\xc6\x5c\xf0\x49\x8d\x1e\x0e\x7f\x3b\x17\xf0\x79\xad\x04\x0a\xfc\xf7\x91\xeb\x9a\x58\x93\xc6\x44\x94\xe9\x78\x55\x2e\xa1\x5c\x8b\x94\xf7\x08\x40\xd3\x30\x50\xb7\x54\xc3\xe6\x72\x25\xa5\x5d\x9c\x6d\x9a\x38\x4e\x46\x71\x5b\x22\x7b\x86\x3a\xd0\xaa\xc1\x22\xdd\xc0\x7b\xc1\x82\x3f\x56\x01\x32\x16\xce\xae\x37\xb2\x69\x1a\x46\x91\x61\xa3\x27\x9c\xc4\x0d\x45\x56\xec\xeb\x56\x59\x18\xa9\xda\xef\x37\x55\xed\xf7\x9b\xf5\x23\x75\xfd\x22\x26\x4a\xa2\x0e\x9b\x09\x86\x45\x8f\x95\xd6\xcb\xef\xba\xe5\xd2\x33\x61\x4c\x6a\x1e\x20\xc9\x9a\x41\x75\x42\x02\x3f\xda\x3c\x5a\xd4\x16\xcb\x94\x19\xe7\xf1\x5d\x77\xf1\xc5\x0e\xd9\xea\xf4\x93\x67\x5a\x1e\xa5\xdb\x36\xa9\x5d\x9d\x56\x53\x50\xeb\x41\xb9\xdb\x55\xfc\x90\x84\x46\xc5\x7e\x90\xe3\xcd\x37\xe8\x70\xa0\xc3\x61\x64\xa7\x7d\x2e\xbe\x31\xde\xfa\x8c\xe7\x52\x5f\x9c\x75\x5c\x0c\xca\x61\x6d\x6b\xf9\xc2\x54\x64\x56\xb3\x51\xc8\x93\xd6\x18\xb7\x42\x0d\x8b\x8f\x3d\x49\x2a\xb1\xde\xa3\x40\xcc\xb5\x7e\xe5\x2b\xa1\xa9\x25\x11\xa4\x0f\xd4\x93\x34\xec\x85\xb1\xc1\xbc\xf5\xa1\x59\x8d\x60\x17\xa1\x91\x37\xc7\x3b\xdd\x2b\x5e\xa2\x0e\x89\x93\xf4\x3f\xf0\x2f\xbf\xc6\x7f\x74\x5f\xc9\x86\x55\x93\xf2\xe7\x9a\x7d\x1b\x0d\xcb\x39\xcd\x49\x9d\xd3\x9c\x54\x38\xbd\x61\x6a\x73\xe8\xbb\x16\x9b\x51\x43\x77\x04\x95\xb3\xd9\xda\xcd\xcf\x37\xdb\x04\x9f\xcb\xa6\x15\xa2\xe3\x18\xc2\x32\xbc\xfc\xf1\x58\x17\xca\x36\x02\x35\x61\x74\xa5\x8e\x88\x50\xeb\xdb\x4e\xa9\x40\x8a\x4b\xab\xc8\xdd\x2e\x73\xa8\x0c\x73\xfe\xbe\x52\x22\x5e\x4a\x46\xa8\x78\xa0\x01\x70\x9d\xde\x18\x1f\xab\x0a\xf5\xaa\x89\x84\x36\x06\x4d\x60\xcc\xb3\xf0\x71\x20\x54\x35\xe1\xc0\xb0\x19\x47\xd5\xe3\xa4\x1a\x36\xe0\x8a\x32\x10\xa8\xf7\x14\x20\xd6\x44\x4b\x36\xcd\xcd\x54\xb1\x48\x9d\x7e\xfa\xde\xbd\x6c\xfc\xaf\x2a\x8a\x9b\x0b\x4a\xe4\xaa\x9b\xda\xac\x4f\x19\xb5\x6a\xbd\x1d\xd7\x34\xb7\xc7\x1d\x1d\xda\x92\x09\x39\xad\x45\x95\xeb\x4d\x85\x37\x7f\xb3\x62\x4f\x8a\x97\x94\xc4\xdd\x30\x66\x10\x92\xdb\xa4\x87\x95\xd6\xc6\xe1\xfa\x2e\x63\xfb\x35\xdb\xee\xa3\xee\x29\x54\x22\x1e\x68\x76\x51\x89\x84\x9f\x51\x03\xaa\xf6\x55\xd3\xce\xa3\xb5\x19\x3f\xc6\x0e\x35\x09\xa4\xc0\x57\xe8\x1b\xf0\x3c\x6f\xa8\x0a\x3d\xda\x0c\xc2\x36\x53\x23\x69\xdd\x4e\x68\x18\x94\x29\x8f\x60\x4a\x0f\x2b\xb3\x7a\x58\x59\xc4\x7f\xf6\x4f\xff\x31\xc1\x6d\x44\xc4\x8b\xee\x40\x24\x65\x6a\x2a\x57\x79\x6a\x25\x88\x77\x5a\x28\xc5\xf3\x15\xdc\xd0\x1e\xc5\xb2\x36\x4c\xd2\x9c\xf1\x65\x68\x20\x83\x6e\x90\x8f\x55\xdb\xbe\xdd\x37\x83\x21\x51\x5b\xfa\xaa\xbb\xd2\x5e\x3d\x5b\xd7\xf8\xcb\x72\x9b\x46\xc4\x67\xef\xd0\xcd\x10\x55\x01\x02\xf0\x93\xb2\x34\x79\x8d\xe2\x75\xd6\x4f\x52\x0b\x6d\x4a\x47\x4b\x7d\x2a\xf0\xa1\x5d\x75\x62\x03\xd2\xda\xc3\xbc\x51\x2c\x52\x89\xa8\x8b\xf7\x25\x91\xb6\x9e\xe3\x89\xac\xe0\xdf\x60\x8b\xae\xa9\x72\x32\x07\xa7\xc2\xbe\xe0\x99\xeb\xe3\x15\x45\x45\x7a\x84\xbe\x9b\x8f\x2b\x51\xc1\xe2\xec\x62\x73\xc9\x76\xc3\xdc\x47\x05\x75\x9c\x15\x9b\xc3\xb4\x83\x2f\x10\x03\xfa\x94\xd7\xf8\x84\xb4\xa9\x16\x55\x82\x63\x3f\xac\x52\xbf\x41\x12\xe7\x4b\x62\xf1\xf6\x6b\x3d\x19\x77\x12\xc8\xac\x69\xdb\xe4\xa4\xd8\x32\xec\xa3\xfa\xc8\xfb\xe1\xb8\x32\xf5\xdb\x5a\x3e\x51\xbc\x8a\x6f\x41\x8d\xcd\xc3\x33\x7a\x26\x5d\x22\x78\xc6\xc2\xc2\x06\xb4\x34\x45\x41\x50\x49\x0f\xbc\x51\xd9\x8b\x8b\xb3\xc5\x16\x6e\xdb\x0e\xe0\xc1\xc2\x7b\x48\x57\x2d\xd8\xd8\xa7\xf4\x12\x2d\x92\x09\xcf\x2c\x8e\x57\x75\x5a\x69\xe7\x9e\x56\x92\x8a\xb9\x4d\x07\x61\x6c\xa2\x4c\x99\x06\xa8\x69\x49\x41\xdd\x37\x29\x07\x36\xdf\xa1\x58\x22\xaf\x04\x7a\x2d\x1c\x57\x73\x09\xb7\x75\x5d\x8f\x79\x6c\xe1\x7c\xdf\x50\x13\x2c\xe7\xe0\x29\xf8\xaf\xb4\x70\xd9\xb9\xda\x95\x11\xc6\xd9\x30\xf4\x5c\xd4\x30\x2e\xe7\x94\x46\xd4\x66\xea\xf7\xd5\x3d\x74\x19\xdc\xa5\x01\xb8\x1d\x8d\xdb\x63\x4a\x38\xe7\x77\x4e\xd3\x06\xe1\xe3\xb1\xe2\x94\xb8\x50\x9a\x64\xa0\x8b\x95\xb2\x08\xee\x1c\x41\x11\xe6\x52\xff\x5f\xca\xfe\x34\x48\x92\xf4\xbc\x0f\xc3\x67\xab\xbb\xe7\xd8\xfb\x02\xf0\x97\x14\xff\x60\xc9\xa2\x0c\x2a\x02\x04\xad\x08\xda\x1f\xf4\x25\x3b\x66\x1a\x58\xcc\x04\xd5\xdb\x31\x3b\xdc\xa1\x37\xf4\x61\xdf\xae\x7a\xbb\x2a\xb7\xb3\x32\x0b\x99\x59\xdd\xdb\x6b\x7f\x70\x28\xfc\xc1\x07\x43\x21\xdb\x0a\x53\x52\xf8\x90\x82\x61\x2a\x24\x8a\xb4\x4c\x89\xa2\x48\x48\xac\x06\x09\x82\xc2\xb1\xc0\x62\x2f\x60\xef\xd9\xb9\x67\x77\xee\xfb\xec\x71\xe4\xfb\x7b\x9e\xf7\xfd\x65\x67\x8e\x2d\x7f\xc1\x66\x62\xaa\xab\xf2\x78\x8f\xe7\xf8\x1d\xe8\xb8\x5d\x8b\x98\x70\x81\xf7\x8a\xca\x17\xf4\xe0\x3c\x15\x82\xf5\xa4\x08\x70\xf6\x09\x38\xdd\x80\xcf\xdd\x75\xa1\xbf\x46\xa1\x9d\x85\x43\x12\x6b\xbd\xe5\xf7\x82\x3c\x2b\x36\x66\x6b\xda\x3b\xe4\xf5\x03\xe4\x09\xf6\xcc\xa7\xe6\x43\x1d\x6a\xf7\x66\x58\xad\xd7\x6d\xb2\x62\x72\xdb\x21\x7e\xf0\x09\x6a\x95\x9c\xf0\xfc\xa8\x72\x38\xc9\x8b\x2a\x79\x98\xc5\xad\x4b\x58\x55\x37\xce\x0a\x7d\xea\xe3\xac\xd1\xf9\x5e\x9b\x54\xf5\xcf\x77\xed\xc8\x8a\xfe\x19\x38\x83\x27\xd8\x41\xed\x84\x0f\x41\x8b\xf1\x24\x9d\x73\xc9\x23\xb6\x0a\x31\xaa\x6a\x0d\x0d\x29\xe6\xbe\x4c\xd2\xb4\x9f\xd4\xc5\x71\x47\x19\x89\xe8\x9e\x9c\xd6\x18\x3e\xa4\x71\x69\xf3\xd8\x16\x8f\xe0\x76\x55\x67\x9f\x52\x01\x10\x24\x84\x64\x84\xe7\xae\x38\xa1\x8e\xb7\x0e\x9d\x61\x51\xdc\xdf\x63\xbd\xb8\x7f\x40\xfe\xd4\xb3\x20\x84\x60\x0f\x3f\xe3\xde\x34\xe2\x85\x5b\x78\x24\x78\xb9\x4f\xcf\x07\xd4\xd4\x5a\x5c\xc4\x65\xa7\x1a\x1e\xea\x62\x51\x7d\x9b\x1c\x47\x7b\xe2\x2a\x9c\x5b\xf9\xeb\xdd\xe1\xcf\x55\xd7\x88\xeb\xbd\x58\xf3\xac\xfa\x12\xc4\x5a\xd1\x92\xdd\x81\xc6\x3e\x1a\xe7\x3b\xd1\xb1\x80\xf9\xea\x2f\x12\x05\xa5\xb3\xe9\xde\x02\x1a\x9d\x0f\xcd\x43\x0d\x0a\x5b\xf9\x93\x10\x38\x14\xa1\xa9\x28\xc8\xa5\x6e\x39\x1d\x33\xa4\x69\x1f\x38\xf9\x30\x6d\x79\x93\x4c\xe9\x0d\x48\x30\x7a\x00\x6f\xe8\x4f\x5c\x42\x22\x86\x19\xdc\x71\x71\x84\x9b\x34\xff\xd9\x33\x9b\x9d\x5f\xfd\x86\x3c\x97\x2b\x44\x27\xbd\xc0\x83\x63\x6e\xde\x89\x64\x79\x93\x88\x83\x7b\x95\x7a\x0f\x79\x01\xec\x09\x97\xdd\xc2\xb0\x05\x5b\x13\xaf\xf0\x58\xbd\x67\x2d\x61\xba\xc9\x8a\xda\xe1\xc3\x90\x2f\x55\xf9\x9c\x8e\xb7\x09\xbe\x42\x8e\x5b\x4f\x3b\x74\xb1\xfb\xc8\xeb\x5f\x9c\x57\xec\xdf\x7a\xec\x45\x33\xe4\x5a\xdd\x45\xe8\x75\x07\x6f\xc3\x81\x19\xef\x74\x8f\xd3\x37\x4c\xbc\x54\xe8\x5b\x28\x7d\x28\xee\x3b\x8c\xf0\x53\x6e\x5f\x45\x93\xea\xb4\xbb\x2c\x74\xcd\x6f\xd7\xf6\xef\xac\x28\x1e\x0b\x82\x62\xff\x10\x0f\x97\x24\x94\x95\x38\x00\x95\x1f\x7c\xc3\xc9\x29\x55\xc8\x3a\x9b\x24\xf7\x79\x91\xcc\x92\xde\x21\xc1\xc3\x3f\x9e\x12\xc8\x45\xa4\x5c\xd1\x19\xb9\xca\x22\x69\xc7\x08\x28\x2c\x4a\xcc\xaa\x6a\xb7\xbd\x11\xb4\x70\xa8\x6b\xfa\x6b\x36\x2f\x63\xc2\xd2\x0b\xb1\xc7\x3d\x44\x25\xf9\x6c\x43\x93\xec\xdb\xd7\x7d\x71\xef\x73\x8f\x92\xb4\x3d\x12\x26\x54\xcc\x3f\x70\xd7\x8c\x0b\x00\xf2\x14\xc3\xf1\x53\x40\x10\x24\x62\x40\xcd\x00\xcb\xdd\x9f\xb8\x27\xab\xe0\x31\x02\x04\x7c\xe2\x42\x59\x70\x86\x2e\x3b\xf4\x8c\x06\x69\x44\x74\x3f\x85\xd5\x43\xe5\xe8\xda\x7c\x13\x96\x4d\x92\x6c\x0c\xb3\xac\x6e\x03\xf8\x29\xd9\x00\x7e\x4a\x71\xae\x4d\x46\xa0\x7d\xab\x7a\x7c\x48\xae\xff\x1d\xe9\x2f\xca\x1a\xe9\xa1\xc6\xde\xf5\xe5\xdf\x61\x12\x2a\x56\xa4\x21\x86\x73\x70\xa9\xbb\x62\x13\xc1\x87\x63\x71\xfa\x94\x01\xaf\x9f\x52\x2d\x35\x31\x7d\xb0\x48\x35\x5b\xac\x33\x40\xbc\xf4\xd0\x3b\x54\xba\x7d\x67\xda\x7d\x40\xfa\xbe\xe2\x42\x98\x78\x52\xa0\x45\x82\x2a\x12\xa8\x2d\x72\xec\x65\x40\x6c\x62\x96\xb3\xdc\x84\x88\x51\x45\x62\x43\x7a\xf2\xed\x69\x10\x2e\x19\x9b\xde\xea\x2c\xd5\x16\x4e\x44\x2d\x22\x47\xf2\x4f\xdc\x49\xbe\x40\xa4\xed\x22\x71\xb4\xe8\x19\x2a\x41\x21\x0c\xc1\xd2\x7a\x99\x7c\x86\xdf\xa2\xe2\x9a\x58\x12\xa6\x4f\x73\xa7\x47\x1e\xa8\xda\x47\x53\x50\xb7\x63\x3e\x08\xf9\x75\x64\xb5\xf5\x0b\x87\xa7\x89\x09\xfc\x19\x84\xc1\x3f\x8b\xa8\xd9\xbc\x1b\xf2\x84\xde\x42\xe8\xeb\x87\x25\xf5\x90\x59\x28\x02\x2d\x9b\x41\xb8\x59\x1a\x97\xf2\x5d\xe4\x54\x0e\xd8\x23\xd6\xe7\xc7\xb0\x71\x78\xfd\x90\x5f\x79\xc1\x73\xdc\xab\xc9\x81\x7e\x78\x33\xbb\xf1\x74\x90\x1e\x58\xbd\x0a\xdb\xa4\xfd\xed\x1d\xd6\x57\x70\x45\xfc\x0e\x8b\x19\x87\x02\xc0\x4f\x29\xdf\x1e\x3a\x25\x40\xf8\xad\xa3\x57\x7d\x8f\x34\x4d\x6e\x30\x24\x1b\xeb\xa5\xfc\x43\x44\x7a\x12\x3f\xc0\x5b\xd7\xa6\x60\x68\xb6\x67\xbd\x32\x5b\xb6\xb9\x03\x0d\x78\x36\xdc\x41\x4d\xa6\x7e\x03\x24\x36\xac\xcc\x1f\xe0\xd1\xeb\xa7\xf0\x8a\xb5\x58\x14\x60\xd7\x62\x62\x82\xd2\xc5\x69\xae\x47\x62\x21\xf3\xf2\xf3\xd5\x05\x69\xdd\x49\x6b\x4d\xeb\x36\x1e\x0c\xa5\x61\x83\x6f\x98\x9b\x0f\xf6\xb8\xc0\xb5\xe1\xdd\x5f\xc2\xcf\x68\x08\xaf\x41\x5c\x6e\x8b\x78\x10\x78\xb1\x3e\xfc\xf5\xae\x37\x4d\xb4\xe7\xd2\xf3\x2f\x74\x87\x82\x3e\x5f\xaa\xf5\xb4\x15\xd7\x5b\x8b\xb9\xb3\x74\x86\x34\x7e\xce\x91\x17\xdd\x5d\x37\x68\x45\xec\x65\xaa\x70\x82\xd2\x26\x76\x64\xf2\x55\x57\x07\x9e\xa9\x01\xeb\xaa\x2b\xd4\x60\xa1\xe3\x59\x98\xd7\x89\x82\x58\x4e\xd2\xd4\x26\x05\x34\x20\x51\xe6\x39\x45\xd6\x34\xa7\x1a\xde\x51\x07\xf7\x76\xb3\x49\xe9\x0c\x1b\x54\x4b\xb0\x7a\x9d\x8a\x71\x08\xa6\x97\xc7\x1a\xad\x80\xfd\x8b\xdd\x49\x31\x04\x50\x1d\x89\xda\x69\xce\xda\x9a\xd5\xb1\xc5\xc5\xa5\x6e\x11\xe7\x36\x95\x3d\x5f\xc3\x5a\x8a\x7b\x4e\x90\x75\x47\x9c\x24\x93\x91\x94\x04\x67\x88\x8f\xf8\x13\x52\xeb\xb9\x1c\x31\x9f\xc7\x97\x20\x87\x26\x37\x45\xe1\xb2\x5f\xa4\x1a\xb7\x23\xe2\xca\x1f\x27\x47\xbd\xa6\x93\xeb\xa1\xe7\xbb\x06\x38\xd5\x4e\xd0\x52\x80\x7a\xb1\xb2\xf4\x42\xd0\xb9\x9a\x66\xeb\xc5\x4c\xf0\x96\x79\x7b\xca\xfc\xe4\xd0\x3b\xbb\x4a\xf9\xa5\x59\x49\x4c\x99\xbd\x1a\x4b\x47\x4e\x0b\xfb\xee\x91\x68\xc5\x9f\x0c\x7c\xbf\x39\x31\x39\x20\x58\x18\x35\x6f\xb8\x17\x84\x35\xec\xb6\x8b\x71\xc4\xc7\x34\xda\xbe\x75\x88\x23\x62\x5a\x64\x49\xdc\x57\xe3\xaa\x85\x1a\x29\x49\x8e\x1b\xe5\xa5\x7d\xfb\xba\xb9\x55\x4d\xc1\x10\x18\x62\x62\xa8\xea\xfa\xf6\xb1\xb4\x7f\xb1\xdb\x17\x8f\x4e\x84\xdd\x52\x3a\x90\x13\x4f\x3e\x59\xb5\x89\x74\x63\x11\x86\x0b\xed\x51\x4e\x48\x33\xbe\x98\x8c\xc7\xc9\x86\x9b\x9c\x01\x0c\x55\x27\xad\x87\xf5\xd1\xf6\x07\xe2\x5e\x28\x42\xe2\x0c\x60\x22\xaf\x8c\x78\xe0\xe3\xa5\x36\xa7\x91\x80\x7f\x30\xbd\xde\x24\x37\x3d\xa1\x0d\x22\xe7\xfc\x36\x15\xe5\xbe\x4d\xe2\x5f\x63\x6b\xf3\xb9\x1a\x01\xa5\x9a\x51\x3e\x4f\xf5\x39\x33\x62\x0d\xad\x82\x04\x68\xee\x0d\xd2\xea\x85\xec\x91\x93\xd0\xa8\xbe\x50\x1b\xae\x01\x3a\x86\x3c\x0e\xdb\xca\xf5\x88\x60\x64\xac\xa6\x07\x2b\xb5\x5c\x6a\xc6\xd8\x4e\xce\xd1\xc0\xbf\x15\x05\xcf\xc2\x13\xf4\x77\xb9\x4d\x7c\xe4\xb0\xa4\xa5\xc8\x88\xcb\x92\x2d\xeb\xc0\xfa\xd0\x94\x73\x81\xb0\x02\xd5\x21\x7d\x45\x9d\xc3\x4a\x7f\x9a\x73\x10\x77\x6f\x4b\x78\xd8\x8b\x00\x5f\xf1\x49\x75\x92\x0d\xe2\xa2\x8c\x7b\x9a\x54\x03\x97\xf1\x5b\x53\x0a\x58\xcf\x90\xe6\x84\x40\xa7\xe5\x53\x8d\x61\xbc\x7f\xb1\x6b\x5f\x1d\x1b\x92\xc6\xc4\x72\x70\x93\x88\x45\x37\xdb\x98\xfc\xcb\x8e\x5e\xe5\xe9\xaf\x8f\xcd\x87\xd7\x7e\xc5\xcd\x3f\x84\x1a\x92\x8c\x22\x45\xfa\x8c\xaa\xd7\xbd\x24\x1e\x3b\x82\x71\xa7\x86\x4b\xaa\x21\x96\xb6\xff\xac\xf3\xfa\x2f\x50\xd1\x42\x82\x26\x6a\xea\x72\xd2\x62\x55\xb5\xd0\x1d\xe7\xd9\xd8\xa2\x55\x2d\x84\x31\x82\x26\xff\x70\x1a\x7c\x0b\x37\x4c\x51\xe6\xaf\xd9\x51\xb1\x1a\x77\x6a\x4e\xd6\xae\x06\xa4\x11\x5d\x0b\x6a\x12\x7a\x9f\x44\xc3\xff\x56\x14\x1e\xc0\xb7\xa8\xcc\xfd\x8a\xe9\xad\x9a\x44\xc0\xfd\xd8\xc1\x8f\x45\x84\x23\x3e\x46\x86\xe7\x66\x90\x99\x82\xf4\x7a\xde\x64\xfb\xd4\x37\x1b\x97\xb1\xb8\xd8\x1d\x9b\xb1\x33\x33\xa9\x3e\x86\x90\x40\xed\x08\xe5\xac\x2e\xc5\x92\x43\xaa\x18\xe1\x27\x34\xb8\xe4\x78\xb3\x26\x23\x1f\xcb\xee\x8c\x9c\xed\xbe\x7b\x78\xaa\x3d\xef\xae\x1d\x15\xef\x5d\x9b\x4d\x0a\xe2\x42\xb5\x73\xae\x38\x88\xa7\xfb\x0a\xec\xc6\xd8\x5c\xb0\xea\x80\xa6\xa0\xf5\xdf\xa7\x69\xa9\x8a\x1d\x31\x0c\x5d\x4a\x46\x3c\x6b\x99\xea\x41\x4c\xb4\x6c\x35\x5b\x36\xe9\xaa\xbb\x37\xe5\x24\x13\x3b\xfd\x42\x0b\xfc\xfc\xa0\xeb\x76\x4c\x82\x55\x94\x17\x0f\xf0\xc6\x69\xe7\x1a\x18\x88\x83\x7b\xbb\xfd\x6c\xb2\x5c\xce\x56\xaf\x1d\x59\xef\x65\xc2\x0b\xfd\x9b\x28\x78\x69\xe2\x8b\x94\x68\x45\xaa\x3b\xd9\x7a\x2a\xe4\x1a\x00\x37\x04\x3c\x26\x3b\x17\x39\xeb\x5f\xac\xcb\x54\xb5\x85\x0d\xeb\x79\x5c\xda\x9c\x2d\x18\x3e\x61\x88\x39\x09\x27\x7e\x73\x12\xa7\x89\x01\x32\x08\x79\x25\x64\x81\xe4\xb8\x55\x88\xd3\xc4\xb9\x47\x06\xe3\x06\x4f\x93\x53\xe3\x69\x32\xd2\x5a\xb1\x36\x41\xb4\xa9\x5c\x49\x06\xc6\x1e\x43\x90\xaa\xee\x21\x94\x79\x1c\xf3\x01\x67\xb1\x6e\x92\x24\x5b\xd7\x74\x16\x51\x21\xd2\x59\x39\x6e\x41\x7b\x75\xd7\x4d\xe9\x90\x30\xd8\x8b\x50\xf3\x54\x47\x2a\x39\x6b\x03\x49\xa7\xd6\xf6\x81\xdf\xf3\xe2\x33\xfb\x6b\x54\xc1\x97\xbc\x52\x06\x85\xd7\x57\xdb\x23\xb7\x32\xcb\xad\xf4\x35\xc5\xb7\x11\x35\x3a\xac\xc4\xaf\xcb\xd5\xa0\xe5\xb9\x0b\xe5\x33\xed\x20\x34\xe1\x8a\xcf\x75\x0b\x9b\x96\x33\x81\x1a\x27\xf1\x39\x26\xf3\x2c\xab\x33\xde\xa0\xfc\xfe\xf9\xaf\xbd\x80\x47\xe0\xc3\xba\x50\x4e\xbe\xdd\x82\x10\xc4\x76\xa6\x0f\x5b\xcd\x47\x43\x11\xf8\x54\xa3\x65\x54\x8d\x87\x6c\x65\x25\xf6\xc6\x62\x18\xa3\x77\x49\x52\xf6\x2e\x2b\xdf\xac\x1b\xf2\x47\x3f\xcf\xfe\xe8\xe7\x1f\x28\xc9\x54\xc4\xa3\xb1\xe0\x41\x31\xe1\x61\xb2\x2b\xc7\x9b\xe1\xdb\x93\x0d\x64\x7c\x98\x81\xdf\x67\x79\x88\xef\x37\xd8\xaa\x8e\x08\x91\xa5\xae\x28\xa4\x70\x53\x6d\x44\x51\x53\xaa\x71\x55\xfb\xf6\xf9\x52\x92\x5f\x23\x50\x42\x63\xbe\xcf\xe7\xa4\x01\x3e\xc8\xfa\xb3\xf4\x16\x76\x40\x62\x06\xef\xf1\x37\x69\x6b\xdd\xb1\x49\xf6\xea\xbf\xd9\x9c\x7a\x8e\xb7\x99\xe7\x4a\x57\xd9\x7a\xa3\xfa\xbd\xad\x37\xa2\x67\xea\x35\xab\x97\x5f\xee\x1e\x7a\x7e\x17\x49\x3f\x02\x59\x81\xee\xc9\x0c\x67\xe8\xf7\x59\x48\xe1\x9a\x8b\x5a\x90\x57\xfc\xff\x50\x8d\x55\xaf\x83\x50\x61\xdf\xb5\xd9\xd2\x74\xcc\xc6\x36\x37\xa5\x52\xcb\x89\x12\xf3\x92\x67\xd7\x87\x75\xce\xac\x9b\xbc\x3f\x1b\xa8\x10\xd2\xf5\xd3\xce\x5c\x75\x0d\x08\xd5\xc0\x2e\x17\xa4\x7d\x1b\x21\xd3\xb1\x6a\xfc\x2b\x90\x12\x82\x1b\xac\x5a\x4e\xe0\x30\xad\x67\xd0\xd0\xaa\x7e\x4c\x1b\x46\x1d\x2f\xcd\x79\xa6\xc6\x15\xef\xdb\xc7\xdd\x77\x22\x0c\xbc\x37\x25\xf1\x3f\xb1\x28\xc3\x4b\x96\x62\xa6\x7c\x8c\xc4\x15\xa1\xf1\xaa\x56\x74\x04\x67\x90\x25\x0f\x63\xf2\x3a\xca\xa7\xd8\x8b\x3e\x41\x99\x13\x60\xd4\x9f\xb9\x4a\x88\x18\x5f\x47\x41\x79\xff\x91\x79\x5a\xfa\x2f\x11\x27\x6e\xcf\xfc\x23\x3e\xb0\x28\xd7\x77\x11\x5a\xec\x3e\x4b\xd0\x5d\x96\x55\x07\x75\x46\xa8\xac\x23\xf6\x41\xf3\x0d\x65\xe1\xef\xd5\xb8\x56\xee\xea\x81\x18\xbc\x4c\x7a\x85\xa3\xac\xcc\xf2\x2c\x11\x11\x7c\xf4\xb1\x90\x66\xcb\x71\x8b\x03\xd6\xc1\x6e\x31\x19\x98\x1c\x31\x36\x6e\xe2\x04\x71\x75\x2e\x50\x4d\xfd\xed\x16\x11\x83\x97\xba\xaf\x98\xb1\x49\x6d\x21\xb5\x04\x2f\x65\x15\xfc\x3c\x28\x6f\x1c\x67\x45\x39\xce\x52\x7d\xe7\xe8\x00\x5c\x44\x55\x40\x4e\x88\xbb\x97\x16\xf6\x11\x86\x6a\x5c\x75\x19\x09\xe2\x3c\xb4\xa5\xb0\xf2\xdf\x9e\x86\x22\xcb\x4e\xac\xda\x08\x50\xef\x13\x36\x19\x4e\x58\xd8\x43\x1e\xc1\x6c\xc7\x0c\xff\x17\x53\x52\x5f\x3e\x1a\xd5\x4c\xec\x09\x25\x71\xd6\xd3\xfd\x8b\x72\x22\xc9\x17\x16\xe0\x4f\x68\x31\xae\xf7\xa4\xd2\x55\xe3\x72\x44\x4c\xe6\x53\x3c\xb3\x4f\x35\x02\x7d\x48\xdd\xc6\xe9\xaa\x9f\x3e\xf8\x4a\x28\xd4\xca\x71\x40\x28\x65\xa9\x29\x41\xcb\x47\x92\x72\x3d\xa2\x71\x7f\x69\xca\xf6\xeb\x6f\x7b\x9f\xa6\xa2\x17\x77\x08\xa8\x78\x26\x62\x3f\x80\xe0\x10\xdd\x37\xa9\xd0\xc5\xd1\xd3\x3d\x35\x65\x01\x92\x0b\x35\x20\x58\x23\x07\xa8\xe2\xed\x4c\x72\x00\x0c\x3b\x88\x22\xc9\x71\xed\x01\x99\x55\xfb\xa4\x2b\x9f\xeb\xc0\x73\x09\x15\xc6\xcd\x2c\x48\xb1\xa8\x6e\x3e\xbc\x19\xb0\xf9\x30\x05\x00\x40\xe4\x91\xcd\xe0\xce\x7d\x85\xa8\x3b\x77\xd9\xa9\xf2\x59\x57\x4f\x43\xa9\xee\x77\x90\x2c\x60\x0d\xdc\x02\x0b\x5c\x79\x21\xd5\xfc\xd6\x6c\x91\x5a\xfd\xef\x48\x90\xee\xd1\xd4\xd5\x62\x83\x19\x7a\x79\x4a\x4a\xc6\x5b\x6d\xe1\x4b\x2f\x2e\x15\x35\x88\x48\x02\xb6\x57\x5e\x9c\x3c\xb4\xb2\xb7\x1a\x81\xef\xd2\xc1\x25\x67\xc6\xba\x3e\xb4\xc9\xa8\x53\xab\xea\xd7\x6a\xff\x21\x7f\x29\x27\x79\x95\x75\xef\x24\xe0\xda\x45\x32\x3f\x83\xc2\x9c\xbb\x8e\xbf\xf2\x94\x5b\x68\x74\x29\xe7\x48\x36\xa4\xf4\x8f\x6f\x86\x42\x86\x19\x8f\x6d\x52\x05\x22\xb3\xa1\xec\x20\x04\x30\xdc\xfe\x49\x34\x58\x14\x51\x39\x13\x7c\x50\xef\x34\x38\x40\x0b\x87\x9c\x20\x71\xea\xd4\x05\x32\x8d\x09\xa5\x4a\x47\x5a\x57\xc7\xda\xf4\x4f\x12\xef\xaa\x8d\xe5\xf0\xfb\xb4\x34\x7e\x9f\x15\x74\x4d\x5a\x16\x73\xd5\x4b\xc5\x3e\xa9\x08\x33\xdc\xa7\xe8\x45\x28\x89\x23\x64\x39\x62\xfd\xac\x4e\x5a\x2d\x06\xb9\x89\x59\x2e\x66\x42\x88\xf0\x2f\x18\x8b\x8d\xb1\x8e\xf5\xb2\x6e\x3d\xf3\x6a\xe9\xda\xe2\x5b\x17\xab\x49\xb7\x75\xb1\xd1\x29\x3a\x70\xa0\x1b\xa7\x6b\xb6\x28\xc5\xaa\x8d\xbe\x73\x4a\xda\x95\xe7\x69\x39\x5d\xcf\xec\xb2\x1d\x64\x29\x26\x9b\xba\x5a\x75\xbc\x98\xc1\x1b\x54\x5b\x72\x7b\x7c\x27\x24\x91\x3f\x23\x4f\xbe\x9f\xb1\x1f\x13\x60\x74\x24\x2f\x73\x1e\x85\x47\xbd\x96\x16\x96\xe4\x5f\xfe\xc6\x7f\xbe\xf4\x8d\xaf\x2d\x3e\x4a\xaa\x24\x37\x5d\x1f\x5d\x5a\x97\x6e\x48\xe9\xfc\x77\xdf\xec\x8d\xb5\xab\x75\x18\xab\xf8\xf1\x69\x58\x2a\x9f\x24\x60\xc3\x25\xc6\x36\x4a\x92\xad\x52\xeb\x6e\xc4\x69\xc9\x3a\xc0\xb0\xae\x73\x12\x73\x95\xea\x61\x45\x19\x97\x93\xd2\x8a\xf0\x3f\xfe\x7d\x66\x13\xc3\x02\xfb\xbf\xec\x1f\x68\x65\xed\xd9\x0c\x48\xa0\xc7\xd0\x40\xd7\xbb\xd8\x3e\x2c\xbe\xd2\x1d\xc5\x79\xdd\x2a\xef\x1a\x72\x42\x39\x69\x0f\x1d\x07\x49\x96\x8d\x36\xc8\xfd\x0a\xa3\x5f\x8e\x6b\xea\x18\xc6\x5d\xf9\x4c\xf5\x58\x7d\x01\xdd\x1b\x7a\x5d\x64\x92\xc9\x0f\x3c\xc9\xa4\x97\x25\x89\x1d\x58\xe9\x2e\xe8\xa8\xe4\x69\xf0\x21\x06\xaf\xfc\x13\xbe\x45\xfe\x85\x6a\x83\xeb\x66\x35\xeb\x04\xf8\x1a\xaa\x77\x72\x3c\xdd\x16\xea\xfe\x8d\x2a\xd5\x7a\xa6\x7a\x97\x62\x68\x80\xc5\x0a\x48\xc1\xdb\xe8\x52\x29\x80\x9c\xc2\xa0\x2d\xb7\xfc\x62\x59\x75\x53\x44\xae\x69\x2b\xda\xa6\xcd\xe6\x43\x00\x59\x3d\xf1\x2b\x37\x11\xb7\xe9\x4f\xa2\xb1\x26\x6a\xaf\x53\x2a\xeb\x45\x81\xac\x0d\x87\xce\x60\xbb\x50\x3d\x07\x84\x8a\xc7\x5c\x78\x27\x79\x9c\x1b\x03\x62\xf2\x38\xa5\x52\xd8\x89\x29\xc1\x3b\xbe\x1d\x05\x9d\x88\x61\x36\x29\x6c\x2f\x81\x95\x3f\x76\x72\x05\x18\x55\x5f\xa5\xf1\xff\x83\xea\x23\xe3\x3c\x5e\x73\xcb\xac\x17\xb5\x42\xd4\x8d\x07\x88\x32\x1e\xca\xd1\x62\xa1\x20\x36\x15\x8d\x45\x56\xbf\x70\xcd\xa4\x83\x89\x9b\xfc\x8b\x8b\x5e\x39\x94\x6a\x55\x27\xc9\xf6\x85\x24\xa5\xab\xc7\x81\xd0\xe0\x0f\xdd\x9a\x26\xc7\x84\x7b\x4b\x12\x07\xf5\xf1\x72\x9c\xc8\xb5\xe4\x38\x0a\xd0\x87\xe5\x18\x10\x55\xad\xd0\x85\x4f\x5d\x20\xff\xa9\xd5\xb8\xb7\xba\x6c\x7a\xca\x09\xf2\xa2\xe7\xac\x6d\xde\xe2\xab\x5c\x0c\x4d\x9f\xfd\x47\xa4\x60\x2f\x27\xbe\x60\x9f\xf5\xac\x71\x80\xa3\x17\x7c\xa9\x93\x22\xf5\xcd\x80\x12\xf9\x98\x73\x9f\x47\x48\x19\xe6\x72\xab\xcf\x7e\x51\x9a\x95\x95\x6d\x00\x90\x19\x36\x4c\xd6\xa2\xc9\x38\xcf\x7a\xb6\x28\x6c\x7f\x36\xc0\x5b\x45\x68\x0a\xd1\xe6\xef\x92\x07\x84\xf0\x8b\x50\x8e\xdb\x6a\xa4\xc9\x0b\x87\xaa\xdb\xce\xc7\xc5\x30\xcb\x14\xb7\x8a\xec\x47\x20\xd5\x72\x42\xad\x57\xe7\x02\x3f\x1b\xdc\xc3\x81\x40\xc5\x5a\xfd\x43\xea\x15\xfe\xd0\x95\x57\xe4\x33\x2d\xc8\x8b\xc3\x0b\x87\x70\xb3\x04\x58\x0c\x62\x9e\x2d\xef\x67\xd8\x5b\x51\xd4\x37\xa2\x81\xfb\xe4\xf3\xf3\x36\x9b\x80\xdc\x6e\x74\x63\x0e\xee\xed\x0e\x33\x29\xe3\x33\x65\x4d\x8e\xa3\x5a\x74\x92\x67\x6b\x0a\x78\x44\x95\xfb\x1c\x29\x1c\x9c\x6b\x4c\xb7\xfd\x8b\xdd\x9e\x49\xe2\x95\x2c\x4f\x63\x93\x2a\xbb\x4a\xe9\x51\xa4\x12\x76\x69\x1a\xd8\xd4\x63\xe5\x1e\xab\x62\x44\xc7\x2b\x30\xb2\xa7\x61\x92\x15\x85\x75\xe2\xf8\x6a\xff\x37\xe3\x0c\xf8\xb6\xde\x80\x29\xf0\x1b\x11\x85\x18\xd0\x1a\xc4\x5e\x74\x9e\x80\xd4\x1f\x4f\x83\xb0\xce\xf1\x88\xf6\x15\xb1\x90\xf0\xba\x27\xde\x1e\x6f\x87\xeb\x4d\xc8\x5f\x4c\x03\x67\x1f\x7a\xfe\xa8\xe2\xbd\x45\x2a\xea\x79\xb6\x1c\xa3\x38\xe3\x0d\x7c\x03\x12\xf9\x54\x14\x84\xa0\xd6\xb2\x81\x4d\x8a\xd2\xc6\x29\xd8\x1c\x6a\x60\x1b\x18\xb1\x9f\x52\x2b\x06\x14\x7c\xf9\x4c\xc8\x9a\xaa\x01\x8b\xe4\x03\x71\xeb\x0d\x77\xaf\x72\xdc\x88\x7d\xbf\xd2\x1d\xc6\x83\xa1\x0b\xf5\x74\x57\xc5\x4e\x87\xb2\xa6\x1c\xd7\x93\x89\xd2\x3c\xec\x36\x01\x92\xa8\x57\x84\x8b\x00\x96\xd4\x30\x07\x2f\x5b\x50\xa3\x11\xb7\xa5\xa8\x92\x70\x83\xa6\x88\xf4\xf7\x84\xd3\x8e\x48\xb7\xc6\x76\x07\x30\xb0\x4d\xda\xc3\x87\x47\xbb\x43\xf9\xed\xed\x29\x49\x6b\xc3\x7a\x14\x17\xf0\xaf\xdc\x6f\xaa\x77\x96\x1b\x6a\x48\xba\xfe\xa7\x29\x69\xf0\x89\x2b\x2d\xa2\x84\x4f\xdc\xa3\x07\x44\xe1\x0e\xed\xd9\x2b\x59\xde\x7f\x94\xd3\x67\xe1\x28\x61\xff\xf9\x16\xee\x54\x05\x49\xab\xa1\x86\xbb\x46\xea\x8e\xc5\xfe\x5a\x44\x4a\xdb\x7f\x0f\x57\x80\x75\xed\xc9\xf9\x00\x8d\x3a\xe2\x06\x30\x2e\xe0\x84\xbb\x18\xbc\x7b\x00\xe6\x14\x17\xe9\xde\x8c\xb8\xc7\xb5\x19\x71\x67\x63\x9b\xea\x9b\x56\x9f\xce\x0e\x19\x78\x3e\xeb\x47\xa3\xe9\xb9\xc6\xa0\x3a\xcb\xea\xc8\x3e\x35\xa5\xd6\xf0\xa9\x1a\x42\xce\x26\x76\x86\x8c\x6f\xef\x47\xa1\x8a\x75\x8d\x06\xeb\xf1\x5a\xbc\xbe\x61\xfb\x8f\x54\x9f\xc3\x23\x7a\xc8\xdd\x0c\xb6\x88\xcb\x08\xec\x20\xf5\xf9\xe7\x51\xe8\x65\xc3\xdb\x04\x81\xe4\xfb\xd0\xd2\x54\xd7\x97\xea\x11\x01\xb8\xb1\x63\x9e\xc4\xee\xfe\x08\xcf\x05\xdb\xd0\x35\x04\xda\xc8\x66\x1f\x9a\xa7\x3a\xf9\x7d\x52\xd7\xc9\x27\xcb\x71\xcf\x8c\x3a\xdb\x1f\xba\x1c\xfb\x09\x97\x9a\x55\xcd\x3c\xb1\x19\x5e\x25\x50\xf5\xfd\x88\x46\xed\xc9\x46\x34\xfb\xf2\xcb\x4e\xf7\xba\x13\x30\xc3\xe7\xdc\x33\x53\xb1\xac\x07\x11\xb4\x7a\xb9\x89\xa1\x2d\xd9\x9a\xb9\x3c\x08\x3e\xb4\x1c\x0f\x66\x42\x7b\xf6\xdb\x64\xe8\x23\x78\x3c\xb5\xc1\x0b\xa6\x66\xe3\xac\x88\xcb\x59\x9e\xc7\x5c\xe9\x7d\xd2\x15\xa3\xf1\x44\xe6\x36\x09\x5f\x71\x6a\xfa\x58\xa0\xe7\xd8\x04\x6a\x0f\x5e\xee\xac\x7a\x61\xf8\xa3\x87\x36\x83\xdd\xa9\x58\xaa\xc8\x3f\xcc\x3f\xc3\x64\x90\xc9\x5a\x9c\xc6\xc5\xa8\xc3\x30\x89\x80\x99\xbc\x4a\xcc\x91\x6c\x65\xc5\xc9\x7d\xee\xc6\x35\xab\x1b\x79\x18\x3c\x68\x8f\x7b\x86\xfe\x61\x8f\xf6\x64\x8a\xda\xf5\x28\x8c\xb0\xcf\xb8\x6d\x06\x07\x26\xb1\xd9\xa2\xe2\xfe\x72\xf6\xea\x0c\x8d\x56\x80\x7c\x80\xed\xbf\xeb\xd0\x63\x6a\x30\xd2\x62\x53\x3f\xb2\xe5\xd0\xa4\x35\x1f\x5d\xd6\x78\xff\x9c\xda\x81\x23\x93\x0e\x4d\x59\x9a\x74\x67\x20\xd9\x0b\x01\x42\x3b\x9d\xc1\xeb\x05\x5a\x5b\xe2\xd4\xec\x1e\x17\xca\x0d\x3f\xc5\x1b\xd0\x66\x63\x80\xa8\x14\xc8\xf8\x7d\x8c\x07\xd5\x1a\x39\xde\xac\x29\x65\x14\xb6\x37\x71\xfa\x61\x6e\x2a\x09\xc3\xda\x3d\x40\x8c\xa1\xfb\x04\x37\xbc\xe3\x76\x58\xd4\x85\x5e\x67\xd5\xc9\xf7\x6b\xea\x1b\x76\x64\xca\x49\x6e\x93\x8d\x99\x80\x42\xba\x82\x4b\x95\x52\x02\x69\x87\xb5\xea\x34\x2e\xc7\x62\x21\x89\xc5\xf3\x94\x7b\x89\x72\xdc\xe2\x84\xbb\xd4\x2d\xb2\x91\x2d\xe3\x11\xf8\x4b\xba\xd3\x1c\x23\x94\x5a\x53\xf9\xfc\x2b\xdd\x49\xda\x4b\x4c\x3c\xd2\x49\x8f\x5b\x41\xf2\xa3\x4c\x25\x26\xa9\x92\xbd\x05\x24\xaa\xd9\x21\xe9\x2c\x39\xb5\x9d\xa5\xe6\xe1\xd8\xf4\xca\x5d\xa1\x51\x70\x14\x4f\x4d\x5c\xa8\xa7\x14\xa4\x80\x38\x23\x48\xf0\x29\xd5\xa3\x8e\x47\xa4\x8a\xfe\x2e\x36\x18\x85\x17\x86\x08\xaa\x67\x52\xd3\x37\x6e\xc7\x44\x6c\xf3\x3d\xe6\x8a\x0b\xe5\x17\x4f\x1c\x60\x06\x0c\x86\x4d\x97\xc5\x6d\xdd\x8d\xb8\xd2\x3a\x65\x6e\xc3\xdf\x9e\x86\x61\xb4\x49\xc5\xa2\x24\xcb\x0a\xbb\x3b\x40\x91\xce\x39\x51\x62\x39\xc6\xf5\x0b\xeb\x20\xa2\x08\xfb\x13\x92\x32\xdb\x01\x88\xbb\x00\x07\x51\x59\x44\x6f\x17\x82\xeb\x0f\x12\x02\x5e\x5c\x7c\xa1\x6b\x96\x8b\x2c\x5f\xd6\xed\x4f\x18\x03\x11\x81\x72\xcf\x10\xd1\x71\x25\x2e\x86\x68\x24\x6b\xdb\xf0\x2a\x53\x52\xae\xd6\x4d\x9a\x92\x72\x67\xc7\x6b\xec\xde\xc6\x77\x62\xc8\x7f\x8a\xf7\x85\x45\x0e\xe9\x90\x42\xef\xdd\xd7\xc9\xa7\xf0\x8a\x80\x4c\xdc\x41\x24\x93\xc4\x9a\xbe\xcd\x8b\x5d\xee\x4b\xd0\x66\xbe\x3d\x25\xd1\xe9\x77\xc8\x90\xeb\x8f\x90\x5d\x63\xe4\x7d\xc2\x69\xeb\x25\xf7\x6c\xe4\x53\xec\x35\xb5\x8b\x94\xb6\x5f\x10\xb9\x33\x4f\x08\x61\x85\x95\x16\x81\x94\x81\xc9\xfb\x36\xc5\xc3\x54\xf4\x3a\x21\xd9\xa9\x60\x3a\x9e\x8c\xc6\x71\x3a\x70\x18\x67\xef\x91\x7b\x50\x85\x0c\x8f\xd3\x2d\xbc\x4f\x14\xf6\xf7\x7d\xad\x3c\x9f\xa4\xa9\x58\x1c\x2a\xb2\xc7\x5d\x9c\xc8\xe3\x62\x77\x57\xd1\xde\x30\xe1\x46\x71\x95\x3b\x3b\x81\x3c\xb1\x11\x8a\x02\x83\xea\x0e\x91\xbd\xb1\x44\xa9\xd5\x50\x4b\xc3\x6d\x9c\x95\x64\x26\xa3\x48\xda\xd0\x90\xf8\x69\x23\x27\xdb\xb7\xaf\x6b\x46\x66\x28\x7f\x21\x76\x0b\x11\xc5\xf5\x67\x69\xac\x25\xa6\x70\xf5\xeb\x6a\xb1\xf3\x90\xc0\x83\x7b\xe5\xf8\x0a\xee\x4f\x33\xc7\x16\xe1\xfe\x61\x96\x7b\x9d\x5e\xf5\xf0\xa6\xf4\xf1\x4c\x63\x19\x5b\x38\xd4\x35\xf9\xc8\x56\x39\x59\x87\xb4\x85\xaf\x90\x86\xf4\x95\x06\x02\xb4\x0a\x57\xb2\xb1\xdb\x20\x90\x15\x1d\x25\xac\xe3\xd1\xb6\x4a\x6b\x3f\x2e\x9c\x2f\x9c\xaf\xd0\xf8\x22\x62\xc0\xc0\xd2\x72\x94\xc7\xc5\xaa\x88\x0e\x20\x27\x07\x7d\x43\x8e\x7d\x81\xd1\xbe\x3a\x4e\xe2\x5e\x5c\x26\x1b\x9d\x10\x1e\x9f\x75\x0f\x4c\x8e\x5b\x6b\x08\x2b\x89\x29\x86\x1b\x0f\x14\x62\x6a\x96\xc0\x0f\x76\x47\x46\x6c\xa3\xd5\xbc\x27\x44\xaa\xc7\xbc\x77\x6e\x2f\x1b\x8d\xe2\xa2\x88\xb3\x54\x97\x0b\xec\xbf\xe8\xef\xc9\x31\x49\x7a\x98\x57\xe3\x6c\x24\x78\x17\x44\x12\xbf\x3d\x0d\xb1\x9c\x00\x15\x3c\x67\x8a\x15\xf9\x82\x56\xd4\x72\x9e\xf5\x56\xd7\xaa\xe1\xed\x0a\x43\xc0\x68\xdf\x21\x5b\xc6\x3b\x51\xd0\x52\xac\x72\x42\xc1\xa8\xaa\x09\xab\x7b\x19\x72\xc2\x1a\x4c\xfd\x2c\x4f\x6d\x7f\xa6\xb3\x4d\xdd\x5d\xab\xf4\xee\x9a\xb1\x8d\x5c\xf5\x92\x5e\x76\x92\x67\x63\x57\xf6\xa9\x2e\x1c\x5b\xc7\x6e\xf4\xda\xb1\xfd\x6c\x05\x34\xfc\x17\xbb\xf3\xa1\xa2\xdf\xd9\xac\x32\x32\xac\x69\x67\xb7\x89\xcd\x89\x64\xa4\x38\x03\x45\x0c\x09\x3f\x3f\xad\x8f\x1e\x6f\x07\x97\xad\x9b\xbc\x8f\x86\x9a\x57\x2b\xf0\xe3\x53\x40\x36\x6a\x84\x1a\x20\x0a\x7d\xb5\x7b\x68\x1b\x9b\x8f\xd3\x56\x19\xe7\xd9\x8e\x80\x1e\x5a\xb5\x69\x56\x0c\x0d\x56\x3f\xf4\x3e\x8f\xb2\xa5\xe9\x51\x62\xcb\xf6\xf2\x78\x3c\x86\x1e\xfc\x7e\x6d\x06\x48\x23\x51\x4e\x28\x94\x2c\x6d\xfa\x28\x19\x17\x7e\x71\xde\xfb\x8b\xfc\x54\xe4\x20\xb0\xc3\x43\xc6\x08\x41\xed\x33\x4e\x07\x1e\xb9\xed\x69\xc4\xd1\xde\xa7\xf2\x57\x14\x5c\xb3\x49\xee\x9a\x12\x58\xa1\x24\x06\x9f\x5a\x14\xfb\x81\x2f\x41\x02\xff\x29\x12\x25\xd5\x5c\x6d\xd3\xc3\x30\x45\x11\x17\x55\x8e\x08\x65\x1b\x36\x15\x52\x68\x4b\xc7\x1b\xd7\x7f\xcb\x53\x2f\x93\xac\x2c\xdc\x66\xa0\xcd\x3a\xf7\xe0\x3c\x0b\xad\x7a\x1b\xa8\xc3\xee\x9c\x0f\xb3\xef\x02\x0d\xd4\x15\xdb\xb7\xb9\x49\x1e\x0f\x36\x30\x20\x6e\x01\x5b\xbd\x67\x9e\x82\x9f\x39\xb0\xce\x48\x51\x68\x21\x54\x04\xf6\x2b\xba\xe3\x1a\xca\xcc\x58\xfa\xee\xb9\x28\x5a\x8b\x1f\x1d\xaf\xa1\x7b\x83\x45\x39\x77\x80\x22\xa2\xc2\x5b\x64\x62\x70\x0b\x0f\x97\x0b\x29\x5a\xde\xe0\x41\x3e\x98\x6c\xcc\x04\xc9\x9e\x6b\xa4\x63\x2a\xf1\x9e\x86\x35\x61\xd0\x89\xff\xbd\x9b\xca\xc2\xf7\xc7\x90\x50\xf2\xff\x33\xa4\x9b\x3b\x36\xb9\x6b\x72\x3d\x0c\xc5\x9a\x8b\x04\x86\xff\x10\x77\x8b\xe8\x4a\xcc\x92\xb0\x74\x5e\x25\x3e\xef\x91\x29\x31\xe9\x3e\x24\xcf\xb6\x7b\xb8\x5b\x49\xe7\x31\x4a\x10\xc6\xdc\x88\x28\x86\x3b\xd6\xc0\x99\x2f\x2e\x56\xe1\x73\x96\x08\xed\x48\xd6\x7a\x92\x13\x5a\xf0\x39\x28\xa1\x45\x33\x87\x71\xe6\xe5\xe5\x9a\x0b\xed\xf5\x61\x55\xab\x08\x36\xff\x33\x53\xae\x50\x77\x0e\x2f\xe9\x67\xa2\x2f\xd4\x74\xe6\x7a\xf1\xd8\x69\x05\x75\xa8\xfe\x0b\xa2\x95\x1c\xb3\x02\x53\x9c\x38\x38\x5d\x75\x93\x32\x6e\xa2\xda\x20\xf2\xda\x12\x93\x24\x99\x0d\xb5\x18\xd8\xf5\x78\x97\xdb\x80\x6e\x3d\x35\xad\xa1\xb5\x9f\x60\x21\x0b\xfb\x9a\xe5\x15\xe5\x24\xf1\x88\x4e\xfa\x05\x77\x25\xee\xdb\x24\x2e\x37\xdc\x32\x8d\xef\xbc\xe7\x46\xa9\x34\xa9\xd8\x10\x69\xd7\x7c\xc8\x1e\xab\x74\x67\x7d\x68\x95\xb1\xac\xbe\xbe\x6c\xf2\x4b\xbb\x46\x9c\xf6\xb2\x91\x7d\xd4\x67\xa5\xff\xf0\x99\x4d\xc7\xe5\x54\x63\xc4\x99\xe0\xd8\xfc\xbb\x64\xa2\x7f\x9f\x83\xe4\x9f\xb9\xd1\x84\x7f\x38\x86\xd1\x84\x80\x4b\xbc\x62\xb4\x82\x5c\x73\x9c\x0f\x58\x5f\x08\x9d\xa3\x9a\x35\x37\x4f\x50\x83\xa3\x5c\xef\x1f\xc6\xcb\xb1\xea\xee\x63\xd5\xbb\x5d\xf7\x7d\x74\x37\xa8\xb2\xe8\xcd\x8e\xa2\x73\xb8\x98\x09\xad\xdd\xb3\x51\xcd\xe1\xc2\xd3\x8f\x7e\xa7\x0d\x6e\xd9\xdf\x48\xcd\x28\xee\x49\x98\xa7\xf0\x2d\xf7\x08\xe4\xa4\x11\x46\x1d\x5e\xaa\xe2\xd9\x4e\x58\x73\x65\x97\x57\xa3\xa2\x67\xb7\x7d\xfe\xeb\x87\xbb\x69\xe6\xfc\x04\x75\x81\xac\x56\x3d\xed\x82\x84\xe8\x69\x1d\xfc\xfe\x8e\x17\x66\x15\xed\x36\x39\xa1\x32\x7e\x3f\x2e\x7a\x49\x56\xc0\x7a\xf0\xa5\xb0\x52\x7b\x79\x95\x77\x01\xdf\xf0\xfb\x6d\xf0\xf8\xa9\xa9\xfe\x07\x67\xd1\x77\x3d\xe3\x7c\x64\x26\xc9\x4c\x6d\x39\xaf\x6e\x54\x05\x1d\xdd\x8d\x4a\xf7\x8f\x02\xf5\x95\x89\x4d\x6c\xdf\xed\x08\xe2\xb6\x81\xca\x8c\xb7\xde\xf0\x44\x11\xc4\x6c\xca\x93\x7f\x10\x6c\x32\x89\x57\xad\xb8\xbc\xfa\x81\x78\x50\x19\x3e\x3f\xf3\x83\x07\x6b\xa4\x0f\x4e\xa5\x41\xee\x16\x6c\x6d\x96\x07\x06\xe2\x20\x1e\x8d\xe2\xde\x6a\x81\x28\xdd\xbb\x4a\x79\xa1\xbb\x8f\xdd\x55\xa2\x88\xfb\x61\x40\xf9\x94\x36\xb7\xd9\x5c\xa8\xf0\xdd\x22\x4a\x86\x54\x0a\xd4\x78\x35\xc0\x67\x24\x7a\x07\x3a\xe3\x73\x62\x60\xf6\x27\xe5\x06\x52\x41\xa4\x06\xa7\x48\xf2\xff\x14\x16\x75\x6d\x6a\xbb\x6f\x40\x88\x77\x8d\xb8\x24\xbf\x53\xb3\xcb\x21\x2f\x98\x5b\x04\x09\x1b\x8d\x36\x76\x85\x82\xd1\xff\xee\xfc\x0d\xd4\x91\xc3\xbd\x42\x75\xca\x0b\xc1\xf4\x16\x5a\x54\x5e\xdd\xaa\x9a\x01\x28\x34\xbe\xe7\x7e\x5d\x8e\x1f\xd8\x8f\xed\xd9\xb4\xcc\x05\x48\x2b\xb4\x6c\x2e\x01\x3c\xb8\x91\x0b\x06\x9c\x4c\x40\x75\xea\xa6\x15\xf0\x3c\xe9\x7b\x98\xb4\x34\x83\x2c\x8d\x0b\xad\x69\x8b\x60\x6b\x44\xae\x43\x67\x6b\xdd\x8e\x22\x2e\x1d\x3d\x92\xe5\x82\xb0\x61\xcf\x6c\xa2\xfb\xcd\xf5\x7c\xbc\xe2\x3b\xa4\xe1\x29\x82\x00\x4a\x66\xa4\xe6\x55\xfc\xcd\x49\xdc\x9f\xa1\x35\xf1\x14\x7b\xd4\xb9\x39\x27\xba\x5f\xe4\x3b\x3b\xdc\x18\x67\x83\x64\xa3\x67\x47\xb1\x71\x7b\x8d\xac\xad\x11\x49\x08\x1c\x43\x00\x88\xd6\xdf\xbf\x75\x0f\x5f\x8e\x29\x92\x18\x99\xa4\x97\x25\x23\xb7\xec\x11\xfb\x7f\x29\xe8\xa5\xf9\x44\xf0\x44\xe8\x45\x67\x59\x7f\x54\x65\x8c\xe0\xfc\x8b\x82\x6c\x5b\x5c\xd8\xcb\xd2\x5e\x32\x71\x1c\x2f\xbf\x21\x9e\xc3\xf8\x94\x93\x36\xe6\x46\xb5\x94\xea\x64\x44\xa0\x0e\x45\x3b\x39\xf6\xd7\x91\xc4\xcb\x55\xf4\x07\xf1\x0e\x6d\x43\x75\xbc\x4e\x2b\xf8\x07\x68\x3c\x9c\xc0\x50\xd0\x8a\x7a\x9b\x82\xa3\xc9\x7b\xc3\x0e\x19\x40\x9c\x8f\xd8\x63\xb7\x86\xa4\x2d\xe2\xfe\x04\x9a\x37\x2f\xd5\xe8\xc4\xfa\x04\x6b\xc4\x92\x34\x9b\xa9\xe6\x8d\xe7\x97\x7b\x7c\xa8\xa4\x78\x1a\xae\x37\x7b\x72\x24\xe4\xe5\x9e\x1f\xf6\x22\xf1\xa3\x95\x13\xb2\xfc\x2f\xd6\xe3\xf2\x35\x9b\x27\x26\xed\xcf\x3a\x9d\x06\x0d\x18\xaa\x31\x04\x48\xc5\x19\x16\x65\x10\x58\x82\xfc\x4b\x63\x57\x5b\x38\xd4\xad\xb2\xf6\x74\x50\xa5\xb3\xd5\x5a\xc7\x5b\xa1\x32\x16\xfc\xab\xb0\xc5\xa4\x8c\x6b\x0e\xf1\xac\x59\xf7\x66\x23\x13\x5f\x38\xd4\x8d\x8b\xdc\xd8\x24\x9e\x61\xa5\xcd\xcf\x88\xe6\x2e\x85\x31\xc5\x03\x07\x0d\x9d\xc2\xbe\x3a\x1b\xa4\xb1\x3e\xaf\xd9\xf0\x04\x8e\xca\x7b\x6c\x6a\xf9\x39\xa9\xb4\x39\x7f\x4e\xa5\x29\xb6\xb5\x96\x9b\x58\xd1\xa5\xee\x24\xa5\xcd\x44\x2a\xee\x11\x57\xdf\x9f\x21\xe7\x92\xb5\xb8\x34\x9e\x0f\x2a\x3a\x17\xee\x17\x54\xf3\x82\x07\x48\x9a\x6e\x88\x67\x06\x52\x60\xb4\x34\x50\xe5\x7c\x13\x93\x11\xe3\xea\x18\xc9\x0f\xdd\xe6\x1c\x5c\xf4\xd1\x51\x2b\xff\x9c\x84\x56\x87\xd6\xf4\x5d\x53\xb7\x20\xeb\x52\xf1\x4f\xd1\xa8\xa8\xc9\xb4\xe8\x16\x36\x5f\xb3\x04\xb9\xc5\xde\xad\xa2\xdf\xdb\x9f\xce\x2f\x38\xc5\x85\x2c\x0b\xf8\x1b\x20\x14\x21\xe9\x23\xc7\x51\xe0\x95\xd9\x57\xcd\x60\x60\x25\xec\x7f\x51\xab\x91\x82\x5b\x92\x13\x22\x28\x17\xc3\x78\x45\x40\x9d\xaa\x66\xfd\x83\x1a\x73\x84\x25\xc9\xaf\x34\x96\x93\x83\x7b\xbb\x66\x25\x37\xb1\x14\x7b\xb1\x91\xfd\xb3\x69\xc0\x30\xfe\xb3\x36\x53\x85\x95\x38\x35\xa9\x27\x74\xb4\x7a\x2e\x3e\x4d\xeb\x81\x49\xe0\xdc\x10\x72\xa6\x9b\xe4\x28\x7c\xb3\x4d\xc4\x37\x5b\xb3\x79\xf5\x7a\xdc\x0f\x78\x57\xea\x83\x7b\xbd\x2b\x75\xd8\x85\x7f\xf9\x17\xff\xba\x93\x62\x43\xa9\x1f\x81\x83\x1c\xd7\xfc\x72\xd6\x6c\x51\xc6\x03\x11\x44\xf4\x04\xd2\x4f\x09\x89\xfd\x29\x15\x23\x8a\x78\x90\xba\x4e\x8b\x60\x31\xb0\xb3\xfd\x63\xcc\x39\x39\xf1\xc8\x36\xe7\x2d\xbf\x26\xd8\x17\xac\xdc\xef\x11\x4c\xe9\x3d\x32\x7e\x5a\x7c\xde\x15\x5a\x95\x2a\x59\xc5\xd0\xa8\x1c\x00\x6b\x8f\x31\x7e\x91\x21\x1f\x7c\x17\x0e\x59\xf2\x6a\x3c\x32\x65\x35\xd7\x6a\x46\x7d\x61\x86\x5e\x08\xb2\xce\x93\xd1\x72\x22\x6c\xef\xe7\xe4\x62\x1e\x9d\x0f\x01\xec\x4e\x07\x64\x56\xd7\xfb\x10\x68\x16\xe3\xdc\x71\xe5\xbd\x85\xd1\x25\x22\xa1\xbc\x81\x0d\x4a\xa3\x2e\x8d\x12\x37\x4c\x31\x19\xc5\xbd\x61\x8c\xcb\x42\x73\xfa\x24\xf3\x39\x4f\x92\xa6\xc2\x28\x4e\xc7\xb6\x97\xc1\x92\x11\xd5\x9d\x4d\xba\x85\x87\xd0\x26\x55\x5d\x31\x37\xb8\x55\x47\x88\x15\xc1\x9a\xcd\xfb\xc5\xc5\xea\xea\xcd\x86\x94\x79\xc9\x68\xc0\xbb\x0e\x50\x04\xf7\xc2\xd7\xbf\x26\xeb\xab\x8f\x4f\xfc\xfe\x23\xd7\x8e\x77\x7d\x87\xc4\xbf\x8b\xa1\x35\x79\x91\xa5\xb3\x81\xcc\x2f\x30\x2b\xac\xc5\x10\x20\x43\x05\xe9\x06\xae\x5d\x89\x52\x4f\x93\x98\xc9\x7a\x6e\xd3\x22\x4b\x65\x7c\x21\x86\xfc\x31\x7e\x53\x4e\xb6\xf3\x76\x0e\x3d\xdf\x3d\x70\xe0\x99\x2a\x5f\xf7\x8c\xb8\x6a\xe3\x91\x59\x1f\xd5\xb5\x42\xbc\x8c\x9b\x78\x97\x22\x9d\x38\x85\x55\x5f\x9d\x2f\x08\xe1\x7e\xc1\x31\xed\x11\x64\x9f\x85\x8c\x0c\x06\xc6\xc7\x58\x7a\x54\x07\xd7\x0d\x25\x5c\xe0\x3d\x17\xc1\x61\xc8\xfe\x37\x08\xa7\x10\x17\xfd\x0c\xb1\x81\xd6\x2c\xab\xd9\x29\x6d\x18\xf7\x68\x10\x19\xde\x22\x99\x96\x7b\x2e\x59\xc3\x1f\x5f\x74\xcd\x2e\xbc\x83\x1d\xa4\x97\xba\x3c\xc9\x97\x9d\x2d\x72\x75\xcf\x8a\x70\xe9\x78\x19\xac\xf3\x6d\x56\xbd\x43\x93\xac\xd9\xfe\xce\xc0\xd6\x12\xf7\x6e\xc4\xbc\x1f\xbb\x3f\x07\xe2\xf3\xcd\x29\xb9\xa2\x0b\xe2\x0d\xd7\x09\x44\x8c\x8a\xb9\xb6\x71\x9b\x6d\x51\x02\xcc\x87\x46\xcb\xc3\xf3\x2e\xbc\xf0\x05\xab\x03\x07\x82\x0d\xac\xcf\xca\xb6\x98\x68\x7d\xbe\xb1\xa7\x2e\x1c\xea\x8e\x87\x1b\x45\xdc\x8b\x85\x7a\x89\xc7\x0f\xf0\x94\x1c\xb7\x08\xfb\x72\xd3\xb9\xc3\xba\x3d\x11\x01\x76\xce\x11\x10\x7b\x25\xcb\xfa\xc5\xce\x0e\x59\xac\x13\xe0\xf0\xa2\x14\x94\x95\x52\x1c\x3a\xce\xc7\xd8\x3b\x44\x48\x08\x32\x83\xda\xe8\x70\x69\x96\xda\x72\x68\x13\x5b\x14\xb3\xee\x41\xe1\xb6\xff\x35\x31\xbf\x41\x29\x46\x34\x7a\x65\x1a\x5a\xd2\x17\x88\x04\x6e\x5f\x1d\x27\x90\xdd\xaf\xfe\x0e\x35\x0e\x18\x89\xc9\x71\x2b\x8d\x45\xb4\x49\x65\x87\xc3\x98\xfe\x51\x14\x16\xbe\x1f\x91\xc9\x60\x15\xd0\x15\x03\x9b\xc6\xbd\x9a\x72\xb1\x40\xf0\xe4\xa4\x11\x0a\x1e\x7a\xde\x11\xf6\xdd\x0e\xe0\x66\x94\x80\x3a\xa3\x6a\xaa\x2a\xc0\xd3\xa7\xba\x93\xb8\xcc\xd0\xa4\xc3\x2c\x46\x12\xa1\x63\x6d\x26\x38\xfd\x9f\xf0\x35\xb3\x57\xac\x57\x5c\x57\x97\x59\xf7\x72\xe5\x24\xd2\x96\x4f\x3f\x2e\xcc\x78\x5c\xad\x4e\x78\xf9\x3e\x18\xaa\x96\x42\x39\x69\xbc\x9f\xfd\x8b\xdd\x81\x4d\x6d\x19\xf7\x8c\xca\x48\xa8\x4c\x6d\xb8\xc8\x9b\x6d\x90\x0c\x67\xfb\x5e\xc0\x3f\x0c\x9b\x8b\xc4\xa4\x72\xc2\x25\xd9\x34\x2b\x87\x36\x7f\x3c\xec\x7d\x02\x8b\xc7\x3b\x80\x4e\xab\x1a\xb7\x77\xbc\xc9\xfc\x59\xac\xab\xd8\x9e\xaf\xa0\x2e\x82\xfb\x98\x41\x5d\x19\x5b\x87\x2b\xc1\x2e\x6c\xa1\x02\xa2\x5d\xf9\x20\x22\x22\x65\x12\xaf\x52\xb9\x3f\xd8\x6f\x04\x24\xd4\x87\x11\x89\x66\xcc\xcd\xb7\xb0\x18\x87\x4e\xf6\x63\x43\x9e\xad\x68\xa7\x44\x41\x78\xf4\x27\x2d\x78\xbb\xe7\x9c\x93\xe4\x58\x5b\xa2\x9e\x82\xe0\xbd\x1f\x9b\xaa\x1f\x5f\xe9\x16\xa5\x1d\x77\x02\xe2\xfa\x26\xd5\xbc\x6f\x4e\xbf\x50\x2b\x3d\xe6\x63\xa9\x10\x33\xb3\x32\x22\xc9\xfc\xf3\x8d\xef\xdf\xb7\xaf\xdb\x9b\x80\x88\x8e\x4c\xf8\x4f\x91\x16\x7b\x3e\x55\xf5\xc7\xa8\x88\xdc\xc1\xd6\xa1\xeb\xf8\xb6\xed\xe8\xaf\x55\x39\xec\x23\xec\xba\x14\x11\xb5\x68\x13\xdb\x86\x04\x17\xee\x31\xa1\x87\x00\x99\x0e\x6c\x5a\x10\x8e\x65\x71\x21\xbf\x7f\xf9\xba\x8a\x14\x6c\x74\x0b\x75\x37\xaa\x16\xcf\x44\x89\x3b\xed\x6b\x6b\xab\xf1\x3a\x04\xa0\x7c\x68\x44\x7d\xba\x16\x1b\x9f\x95\xd8\xe6\x3d\x76\xd5\x02\xac\x5d\x8e\x37\x43\x59\x69\x60\x0d\x26\x2e\xf2\x64\xa0\x4a\x50\xde\xbf\xca\x30\x82\x1b\xad\x09\xf4\xb2\x88\x60\x2e\x79\x84\x4a\xa8\xa0\x9d\x6d\xa3\xaf\x8e\xad\x75\x36\x48\x33\x0c\x3c\xa9\x9e\x23\x10\xc7\x7f\xe2\xfe\x5e\xb5\xf1\x5a\x98\x41\x7d\x47\x7c\x53\x99\xc0\xbf\x09\x32\x90\xd6\x5e\x5b\x80\x0a\xd9\xca\x4a\x61\xcb\x0e\x59\x07\xd7\xdc\x58\x54\x0d\x6d\x92\xf6\x6d\xbe\x52\xfd\xaf\x2c\xa9\x92\x7e\x91\xd4\xe0\x31\xda\x61\x46\x55\x82\xf5\xa4\x7b\x3a\x88\xf7\xe7\x30\x73\x51\x5b\x03\x81\x1e\x2f\xbd\xb3\x49\x8d\xb4\xf3\x88\x4d\x90\x9e\x3e\x3c\xdf\xf9\xda\xaf\x79\x35\xb2\xea\x36\x50\x58\xfc\xc3\x88\x44\xaa\xaf\x91\xf9\xfa\x9f\xb8\xae\x86\x84\x3c\xb2\x8b\x21\x38\xbb\x1a\x85\x5c\x61\x66\x93\x44\x38\xdc\x88\xc3\xe1\x97\xe6\x89\x87\x3f\xb3\x59\xad\x59\x78\x08\xb7\x5a\xf0\x32\x4b\xdd\xdc\x3a\x08\xa8\x4c\x71\x45\xc0\x91\xe5\xfd\xb1\x88\x65\xb8\x33\xc7\x6a\xe8\x77\xa8\xfc\x74\x1d\x81\x9c\x9c\x3c\x10\xd0\xe8\x2c\x5f\x67\x03\x30\xef\x02\x62\x2e\x74\xf6\x8e\xbb\xe7\x82\xb9\x70\x91\xcb\x39\x27\xb6\xcf\xdb\xc3\x4b\xdd\x7d\xfb\x40\x3a\x42\xb5\xf2\x9a\x7b\x09\xe2\x7c\x81\x47\x8a\x00\xe0\x21\x97\x93\x78\x4b\x8c\x6a\xa6\x2b\x3f\x53\x27\x5b\x5c\xda\xc4\x55\xdd\x5b\x2d\xbd\x42\x4a\x31\x4e\x26\xe9\xc0\xee\x22\x96\x0a\xa4\x2d\xb1\x0e\x74\xe6\x43\xf5\xf0\x9c\x7b\x43\x5a\x39\x76\xa3\x40\x05\x92\xaa\x17\xec\x85\x29\x7d\xbf\xf7\x86\xcf\x41\x7a\x99\x30\xcd\xdd\x20\x46\xc2\x70\x92\x2c\x2d\x4f\x52\x99\x6a\x60\x8b\x2a\xbd\x43\xea\xef\xf9\xde\x8b\x8b\x9e\xef\xdd\xa6\xe2\x3d\x19\x65\xb9\xfb\x03\x8f\x90\xf7\x3b\xe4\x79\xe2\x98\xf4\xb2\xaf\xee\x0e\x09\x93\xe8\x74\xe0\x7b\x51\x81\xc3\xda\xf2\xf0\x66\x70\xfc\xbf\xc0\x7a\x55\x77\x59\x22\xfa\xe9\xf9\xce\xdf\x5c\x90\x1e\xd0\x43\x92\xfd\xe0\x27\x77\xb4\xf8\xb3\xbc\xd0\x2d\xca\x38\x5d\x45\xa3\x19\x7b\x06\x5c\x1d\xd4\x21\x20\x24\xde\xec\x00\x3e\xce\xe2\x14\x99\xb1\x97\x59\xfa\x09\x49\x03\xff\xa4\x45\x0a\x62\xa1\xbb\x9c\x4d\x06\x43\x31\x30\xd0\x32\x8e\x1b\x24\x5a\xc7\xd9\x1e\x6a\x1c\xdc\xdb\x9d\xa4\x62\xab\xaa\xab\x87\xa2\xda\x42\x25\xf5\x1c\xa7\x49\x71\x51\xda\xd4\xa5\xb0\x35\xc3\x33\xdf\x0f\x05\x21\x59\x0b\xed\x6d\x62\x24\x0a\x78\x27\x7a\xd7\x13\x58\x82\x30\xb0\x3b\x6e\xb5\x47\xa4\x70\x39\xa2\x38\xfe\xd8\x36\x8b\xdb\x7d\x0b\xf2\x42\x8f\x90\x05\xfc\x0e\x46\x46\xff\x29\x85\x92\x8e\xed\xe6\x30\x3d\x73\xd5\x33\xc5\xc2\x08\x9a\x01\x1a\x68\x57\x89\x1b\x79\xd5\x0d\x67\x85\x29\x57\x93\x0e\x33\x73\x66\x3e\xd4\x2f\x87\x66\x34\xb2\xb9\x23\x3e\x74\x82\xef\x09\x34\x0a\x54\x0f\xa9\xcd\x16\x79\xd9\x19\x8f\x78\x61\xe8\xf7\x20\x52\x8b\xb9\x36\x33\x4f\xe1\xf8\x45\x8c\x53\x5d\x5b\x34\x60\xcd\x72\x3b\xa8\x92\xdd\xe0\x8d\xef\x7e\xb2\x26\xce\xa0\xf0\x51\xae\x95\xfc\x0f\xb5\x0e\xc1\x64\x5c\x76\xdc\x0f\x8b\x9b\x1d\x1e\xb4\x5a\xdb\xd1\xd4\x99\x8c\x67\x42\x96\x74\x1d\xe9\x26\x56\xe2\x13\x14\x20\xec\x98\x7f\x8c\xbe\xbc\x67\x1e\x76\x6f\x41\x91\xeb\xb8\x0c\x2c\x2d\x1f\x90\x0e\xd0\x2d\xb7\xb4\xa0\xe6\xf6\xd0\xa6\x5b\x5a\x7c\x77\x7e\xe9\xe0\x92\xfe\xcb\x3c\x6f\x94\xa1\x73\x74\x63\xca\x86\x21\x6e\xf5\x52\xa8\x7e\xcb\x6e\x3a\xce\xe2\x2a\xbb\x77\xd7\x85\xa4\xe9\x02\x25\x50\x17\x5a\xe8\xd9\x4b\xdd\x7e\xa6\xf0\x34\xa1\xa4\x72\x1d\xe8\x73\xea\x81\x8f\x6c\x6e\x13\x28\x52\x02\xda\xb2\x45\x28\x66\x69\xbc\xe3\x9d\xdc\x89\xc8\x18\xf1\xc3\x29\xe9\xd0\x63\xc3\xd0\x19\xb5\x3d\x7e\xd8\xb7\xaf\x5b\x66\x03\x83\x7e\xb1\x42\xac\xab\xdf\x43\x22\xfc\x2e\xb1\x78\x9a\x55\xc5\x2a\xed\xca\xad\xe9\x6f\x30\x83\xe2\x14\xe5\xfe\xa7\xbc\xd9\x63\x6e\x8b\x32\x9f\xf4\x4a\x27\xd4\x81\x3a\x15\x72\xf0\x8e\xe3\x38\xb8\xe5\xe7\x00\xcc\xf0\x10\x9a\x77\x36\xb7\xf1\xc0\x5e\xdc\x5b\xc5\xd9\x3b\xab\x49\xe6\x13\x88\x50\x95\xc4\xce\x8a\x08\xf6\xef\x03\x21\x88\x37\x0b\x31\x66\x6c\xd0\x3f\xa6\x28\xe4\x2d\xaa\x52\xf5\x26\x65\xa9\xfe\xba\x78\x9c\xbb\xe7\x43\x7e\x24\xb2\xc5\x40\x84\x40\xcf\x46\x8e\xa7\x44\xdb\x9d\xd9\x0c\xc5\x5a\xe7\xba\x9e\x63\xcb\xc1\xb2\x72\x9b\x28\x64\xb7\x1b\x3d\xf0\x2a\xb1\x8c\x11\x91\x89\x5c\xfb\x34\xac\x55\x77\x3d\xd2\x61\x32\xce\x49\x6a\x46\xad\xe3\xc3\xea\x72\xba\x31\xd8\x9c\x28\x8f\x73\x86\xf3\x5c\x8d\x33\x64\x34\xde\xd4\x8c\xaa\xfe\x20\x89\xcb\x32\xb1\x33\xa1\x36\x2c\xac\x12\x2f\x41\xea\x75\x15\xde\xa7\x02\xf5\xc8\xe4\x83\x58\x85\xab\xb4\x25\xee\x2e\x94\x75\x45\xf0\x6e\x91\x0a\xa3\xe3\x53\x47\x01\xa5\xc9\xc6\xd3\x04\xc7\xd8\xe1\xb8\x2d\x40\xb0\xbc\x81\x6f\x43\xa1\x12\x5b\xb8\xe6\xcf\x0e\x89\xe1\x85\x50\xab\x19\xae\x36\x2b\x6e\x58\xe3\x63\xbb\x1d\x7c\x02\x4b\xe0\x23\x9b\xa4\x71\x88\x50\x11\x53\xfc\x34\x1b\x96\x01\xfd\x85\x84\xe4\x73\xc4\xa9\x5a\x8f\x22\xe1\x12\x61\x3f\x62\xac\x7c\x9f\xc0\x63\x9f\xca\xfa\x24\x11\x30\x15\x8a\x6f\x35\x3d\x73\xf7\x75\x87\x36\xed\x59\x84\x6b\x78\x62\x68\x81\x63\xf3\x02\x35\xc4\x15\xce\x2e\x3f\x53\x6d\x64\x5b\xb7\x09\x6f\xf0\x71\x5b\xba\x03\xfb\xce\x4e\x20\x9c\xc2\x31\x46\x8e\x9b\x36\x2d\xcf\xbf\xd0\x2d\xf3\x2c\x1b\x4b\x7c\x8b\xc1\x77\x9c\x84\xad\x8f\x37\x46\xcb\x81\x03\xdd\x95\x2c\x1f\x4d\x12\x01\xfe\x79\xc1\x87\xa0\xb2\xd6\x48\x78\x0e\x2f\x1c\xea\xa6\x36\x2e\x87\x36\x77\x85\x67\x74\x78\x8f\xb9\xaa\xa4\x57\x58\xf3\x2f\xea\x26\xc1\xa6\x4d\xda\x8b\xd5\x78\x06\xef\xe1\x63\x26\x14\x7d\xec\x63\xd5\x61\x36\x10\xf2\xa7\xc7\x1e\x79\x3f\x09\x09\x5c\xb1\x3a\x5f\xa2\x38\x51\xdd\xaa\x77\x31\x5a\x03\xe6\x0a\x88\xe8\x5e\xc7\xaa\x82\xdb\x12\xb7\x37\x80\x29\xef\x92\xf4\xeb\xe7\xee\xe2\xe5\x2f\xdc\x83\x50\xb1\x4c\xa5\x48\x95\x71\x99\xd8\xb9\xea\x15\x7e\x01\x31\x05\xeb\xc9\xa0\xc2\x80\xb7\xed\x3d\xe2\xf7\xab\x2e\x4e\xb3\x27\x77\xe0\x80\xf3\xb3\x2c\x9c\xd3\x1b\x79\x13\x22\x1a\x96\xe3\xe9\x53\x84\x75\xc9\x6d\xaf\xcc\xf2\x3d\x18\x9a\x82\x6c\x9c\xd6\x30\x14\x24\x02\x71\x14\x4f\x0b\x31\x00\x82\x77\x44\x56\xe7\x31\x19\x91\x95\xa2\x9b\xeb\x9d\x86\xaa\xe7\x27\xdf\x45\x6a\x70\x7f\x3f\x0a\xd4\x9a\x6c\x3d\xb5\xf9\x5c\xc0\x6b\xfd\x00\x3f\x03\xa4\xbc\x50\xd5\xd0\x8f\x3d\x47\x7a\xbd\x42\x25\x94\x7f\xa0\x9c\x63\x39\xc3\x82\xf5\xe2\x5e\xa9\x13\x5d\x45\x72\xc3\xec\x5d\x65\x01\x3c\x45\xbe\x07\x59\x62\xcb\xd2\xcc\x92\xec\xcd\x1f\x44\x01\x5b\x03\x08\xb5\x58\x92\x91\x70\xfe\xbf\xa4\x5f\x4e\x27\x79\x61\xfb\x4e\x05\x18\xeb\xc7\x77\xdc\x1f\xa1\xc4\x72\x09\x8f\x42\xc1\x25\x61\x57\x77\x89\xe4\x78\xa6\x1a\x28\x58\xcd\xae\x60\x9c\xa1\xba\xf9\x23\xf7\xc2\xb5\x4a\xd3\x34\xd9\x19\x67\x45\x29\x84\x6e\x92\xd5\x5f\x08\x6d\xcd\x00\x13\x91\x22\x8f\x3a\xd1\x6d\xdf\xfb\x0f\xee\xed\x0e\x4d\xb2\xb2\xa7\x7a\x70\xea\x5b\x58\x5d\x14\x62\xd2\x3b\xb8\x28\x4f\x44\xd8\xb7\xe0\x19\xf1\x6e\xec\xab\x72\x61\x28\x2a\xdf\x99\xd6\x74\x8c\x82\xbf\x35\x20\x08\xd8\x33\xae\x13\xa8\xce\x45\xfd\xfd\x9d\x54\x96\x7a\x8b\x60\x87\x58\x7b\x30\xc4\xfe\xcc\x7d\x9b\xd4\xb1\x30\x42\x25\xcf\x8a\x88\x23\x7b\x8e\x2a\x91\xcb\x93\xbc\x6f\x53\xb4\xe2\x15\x9b\xc8\x40\xc5\x96\x1a\xf2\x62\x77\x92\x16\xf1\xc0\xd7\x90\x95\x89\x44\xac\x24\xea\x29\x99\x35\xfb\xa8\xbb\x5f\xcc\xd9\x9d\x9b\x94\xcb\xc1\xa7\x18\x21\xdb\x51\xb7\xb4\xe1\x55\x9d\x47\xaa\x41\x73\x48\x1a\x2e\x3b\x7f\xde\x01\x9b\xbd\xd4\x7f\x18\xbe\x7b\x36\xbd\xab\xdb\x9e\xbf\xe4\x16\x32\x94\xe9\x6f\xb3\xda\xfb\xce\xcd\x10\xe3\xed\xde\x6c\x53\xdf\xcf\xb3\xbe\x45\xc8\xe9\x0d\x65\xaa\x3f\x97\x13\x1a\xd2\xbd\xdc\x9a\x91\x04\x74\x6d\x3d\xc7\x67\xa8\xe2\xd3\xcb\xb3\xf1\x30\x13\xb2\x1e\x5e\xce\x35\xca\xd9\xae\x79\x5c\x44\x9e\x4d\xca\x38\xb5\x73\x34\x70\xce\x91\xe9\x3a\x04\x95\xbc\xd8\x86\x92\xe9\x0f\x7c\x69\x3e\x28\x9e\x1d\x25\xbc\xb3\x23\x18\x20\x0e\x0a\x0a\xa4\xee\x7e\xe4\xa4\xb1\x1f\x1e\x7a\x1e\x64\x2b\x60\x11\x04\xbc\x15\x05\x2c\xf3\x19\xc2\xb6\x0f\x33\x5f\xc7\x55\x87\xc8\xd0\x8d\xb9\x40\x5c\xce\x65\x9b\x24\x73\x2c\x52\x75\x3f\x22\x0b\xee\xe3\x62\x26\xdd\xf1\x46\xdc\x82\x03\x7b\x90\x9a\xcb\xe2\x62\x77\x25\xce\x2d\x5a\x0b\xff\x6f\xf2\xe8\xbf\x34\x31\x1d\x5a\x9b\x6f\x4f\xd9\xea\xf5\x76\x14\x2e\xd2\x15\x6e\xdc\x65\xe1\x4e\x4f\xd0\x5d\x9f\x60\x93\xb1\x2c\x2d\xe2\xbe\xcd\x77\x87\x15\x10\xaa\x4c\x08\x18\x3e\x72\x2b\x83\x58\xe8\x61\xce\x21\xef\x7a\x4b\xa2\x1c\x72\xa9\x78\xce\xeb\x68\x54\xaf\x15\x35\x90\xdf\xa3\xd7\xfd\xd0\x66\x5b\x95\x61\x25\xce\x47\x36\x9f\x75\x9b\x2c\x16\x1d\x69\x38\x01\x62\xfb\x43\xca\xd0\x7e\x63\x4a\xf6\x31\x97\x48\x53\xb0\xb4\x45\x59\x08\x8c\x04\x7b\xff\x8d\x88\x99\x36\xbc\x21\x93\xca\xb8\xd0\x9e\xe5\x2f\xf0\x96\x50\x54\xfc\xc0\xd7\x9c\xca\x3c\x9e\x8c\xc6\x43\x5d\x1b\x90\x5c\xec\x40\x1c\x29\x27\xf3\x4f\x7b\x24\xe5\x9a\x29\x14\xfb\xe2\x6b\x32\xd2\x34\x91\x93\xc6\xeb\x7f\x71\xef\x73\xdd\x0d\x0b\xf7\x34\x5f\x97\xf5\x6c\x96\x73\x24\xf0\xde\xcb\xd2\xd2\x8e\xc6\x59\x6e\xf2\x0d\x88\xec\x88\x25\x20\xb7\x5a\x4e\xd6\x78\x21\xd5\xbd\x22\xaa\xfc\x90\x62\xf6\xf5\x2c\xed\x3b\xa9\xeb\x25\xdf\x5b\x03\x5c\xc5\xd5\x3f\xfe\xd1\xd3\xf3\xd5\xa2\x8f\x9b\x7b\x72\xf3\x89\x6d\x32\xbc\x2e\x7d\x47\x1e\x01\xd1\x02\x15\xe4\xaf\x2e\x1a\x7d\x97\xa3\xb5\xd8\x7e\x68\xd6\xa5\xb9\xa5\x88\x25\xf7\x3c\x14\x99\x14\x56\xd6\xbd\x06\xac\x57\x2c\x74\xd7\xb9\xd7\xf4\xe9\x36\x3b\x84\xb6\x3a\xed\x38\xcf\x4a\xdb\x2b\x25\xc3\x56\x45\x41\xb7\xf4\xa8\x02\x5a\x78\x04\xe2\xcb\x30\x17\x7c\xea\x66\x5c\xd4\x0f\xc2\xc5\xbb\x0c\x3c\x82\xe6\x81\x42\x4e\x02\x3a\xe9\x3c\xe9\xc9\x8c\x6d\x5e\x45\xc4\xd5\x38\xae\x2e\x5a\x1f\xbf\x1b\x32\x08\x40\xaf\x34\x33\x78\xf9\x07\x12\x0a\x4d\x62\xf1\x01\x05\xc3\xe0\x52\x0d\x73\x23\x8f\x00\x7b\xee\x8e\xf9\xed\xc9\xe4\xc2\xa1\xee\x78\x52\x02\x28\x84\x02\xe0\x65\x80\x51\x95\x11\x18\xba\x4c\x3f\x6a\x35\x48\xb7\xaf\xd9\xd5\xd8\x82\xe9\x85\x44\xee\x18\xc3\x15\x8e\xd1\x7c\x1b\xc5\xaf\xda\x3e\x02\x28\x8f\x42\xf2\x1d\x38\x81\x1d\xc8\x89\x5b\x76\x34\x59\x6f\x69\xe1\x17\x76\xcd\xe6\xe8\xce\x20\xe5\x81\x44\x86\x1c\x73\x4d\xc4\xe4\xbd\x2c\xaf\xb7\x49\xb9\xa7\xc7\x2a\xb3\xd6\x14\x8f\x79\x78\xf8\xe2\x93\x98\xe6\xae\xf9\x7c\xf3\x2f\xcc\x13\x7b\xe8\x38\x91\xa9\xef\x45\xe4\x39\x74\x02\x94\x5a\xbc\xa1\xcf\xe9\xa5\x7f\x71\x93\x9a\x94\xc7\x5d\xc8\x86\xed\xfe\x7a\x44\x33\x12\x90\x31\x44\xac\x2a\xf9\x55\x03\x58\x90\x2b\xb8\x67\xaa\x68\xe1\xd4\xd5\x68\xbd\x8e\xe4\x41\xaf\x29\x39\x0d\x33\x31\x35\xe5\x50\xcc\x4d\xb0\xc5\xdc\x64\xeb\xc4\x9b\x35\x17\x94\xb5\x58\xf4\x28\x54\xd0\x25\xdc\xf2\x9d\x1a\xee\x8f\xc4\xec\x6c\xda\xdf\xa8\xb7\x41\x6b\x7e\x12\xe1\xa5\xd8\xfe\xc0\x31\x5a\x0f\x2e\x79\xc8\x93\x5b\xc8\x91\xd1\x9d\x20\xbc\xf9\xcd\x88\xdc\xbb\x4f\x78\x08\x53\x61\xd2\xfe\x7a\x0c\x8f\xd0\x20\xbd\xd4\xf1\x86\x97\x5b\x11\x37\x05\x5a\x90\x64\xb9\x1d\x27\xa6\xa7\x22\x72\xde\x20\xbb\x7a\x95\x72\xd2\x48\xba\x17\x0e\x75\x37\xb2\x49\x39\xa4\x91\x2e\x6d\x11\xad\x5f\x04\x11\x9e\xe5\x49\xe1\xde\x07\x1e\x1e\x90\x0b\x72\xdc\xd2\x93\x5b\xea\x0e\x33\x85\x16\x60\xff\x13\xdd\x04\x39\x21\xd8\x5c\xdf\xae\xd8\xb4\x88\xd7\x2c\x7d\xfd\x07\x51\xf8\xfa\x0f\x08\x52\x69\x27\x79\x06\x80\x37\x99\xde\x9f\xe7\xc1\x7f\xde\x97\x73\x07\x79\x30\x09\xc3\x23\x14\x7c\x80\x9c\x50\x88\x60\x26\x65\xb6\x33\xe0\xe0\x45\x63\x4c\x5b\x29\xee\x1b\x94\x08\x44\xfd\xbd\x5f\x97\x75\x08\x9d\x03\x51\x6d\x41\x64\x7b\x92\xa0\x6c\x55\xb2\x93\xa2\xf6\xa7\xed\x6b\x04\x69\x67\x28\xbc\x6f\x16\xa2\x1c\xec\x36\x1e\x4d\x92\xd8\x6d\x05\x3e\x3d\xf1\x74\x3c\xa1\x5f\x62\x23\xb8\xd8\x28\xa9\x7d\xa5\xbb\x6c\x8a\xa2\xc3\x7e\xa5\x1d\xf2\x31\x0d\x13\x23\xb1\x66\x4d\xad\x48\x91\x45\x7c\x3a\x25\xe3\x8a\x1b\x6e\xe8\x6a\xc8\xda\x72\x95\xa9\x5d\xf7\x1a\xe8\xde\x8c\xb2\x7a\x4a\x72\xe2\x41\x1b\x76\xc3\x0e\x12\x53\x78\x66\x32\x7e\xec\x23\x4e\x66\x3e\x22\x25\x9d\xde\x24\xb7\xa4\x37\x29\x25\x27\x39\xa1\x97\x37\x9e\xa4\xab\x0c\xc1\x86\x3a\x80\xee\x58\x5a\x74\xe8\x9b\x6a\x26\x57\x4f\x03\x65\xb2\xb3\xe4\x62\x7f\x96\x9c\x0a\x21\x81\xd0\x61\xb1\xbe\xb7\x59\x9f\xef\x6d\xda\x3a\x8b\x49\x3e\xb0\x60\x8d\x2d\xf9\x02\x45\xc8\xb5\x3f\xa7\x6e\xe8\x72\x9e\x99\x7e\x51\x9a\x9c\x5c\xdd\xc5\xb0\x49\x79\xfb\x4d\x85\xc7\x17\xba\x3d\x93\x24\xc0\xbc\x2e\xc9\x9a\x03\x34\xf3\xd6\x4d\xac\xd1\x58\xbd\x2e\x11\x8f\x60\x14\xa7\xae\xf0\xfa\xe2\x5e\xcf\x59\x71\xbf\xa2\x64\x96\xed\x0b\xc7\x81\x03\xdd\x61\x56\x38\xd7\xfb\x07\xaa\xd8\xff\x95\x07\xb4\x69\x6d\x51\x9a\xe5\x24\x2e\x86\xbe\x24\x8b\xe7\x79\x04\x0f\x4c\x4e\x68\x91\x2c\x86\xd6\x0a\x06\x19\xfb\x06\xb0\xa0\x72\xbc\xa9\x03\x45\xa4\x86\x1c\xc9\xaf\xfa\x56\x80\x20\xbe\xe0\xea\xe4\x80\x56\xfc\xff\xe7\xc3\xdb\x7b\x78\x93\xe6\xe4\xae\x79\x8e\x7d\xef\x84\xd5\x35\xb1\xfd\xbe\xd2\xa1\x94\x6d\x43\xcc\x1b\x12\x55\x29\x6c\x1a\x67\x79\x5c\x6e\x00\x80\x27\xed\x1f\xd4\xbe\xb4\x17\xd4\x32\x0d\x92\x2c\x1d\xa8\x1e\x79\x00\x7d\x78\x4d\xd5\xa6\x5b\xf0\xbe\x7d\xdd\xe1\x64\x24\xa8\x37\x65\xf9\xbb\x5b\x91\x93\x96\x11\x51\x0d\xb9\x35\xab\xc8\x1c\xf5\x0e\x08\x1d\x8a\x63\x5e\x87\x68\x39\xc9\xb2\xbe\x0b\xea\x94\xd6\xed\xfe\xc4\x57\x76\xfc\x62\xf7\xa8\x7b\x94\x48\x31\xef\x62\xbb\x90\x32\x4f\x7b\x6d\xdc\x16\x4e\xfb\xce\x2b\xd7\xbe\xcd\x24\xe4\xb7\x09\xdf\xed\xb1\xd3\xc2\xcb\x17\xc9\x9b\x28\x04\xb6\x9f\x4d\x6b\xae\xf5\x19\x46\x20\x5a\x0b\x1f\x32\x0b\xf5\x43\x32\xc7\x7b\xc5\x48\x5f\x01\x4f\x09\x1e\x0d\x72\xdc\xe2\x03\xd8\xb5\xfd\x49\xcf\x25\x22\x02\xe2\x46\x94\x2f\xd0\x21\x39\xa1\x39\x6d\xd7\xe2\xbe\x55\xfe\x32\x67\x21\x3a\x0e\x3a\xde\xb3\x82\x6d\xd0\x97\x27\x1b\x71\x3a\x78\x24\xa8\x01\x9d\x72\x1e\x96\x18\x5d\x3b\x49\x3d\x52\x26\xae\x60\xb7\xa6\x81\x00\xfe\x8f\x22\x52\x68\xf8\x5e\xa8\x01\x7c\x5f\xb4\xf0\xd5\x8e\xc8\x5d\x37\x43\xbf\xe4\x37\x36\x09\x59\x71\x9c\x52\x9c\xe5\x3c\x4b\x7b\x19\x1e\x99\x94\xcb\x5c\x29\x4b\x4b\x67\x8f\xd2\xc0\x37\x6e\x13\x54\x20\x9f\xbb\x50\xe4\x4c\x6f\x47\x24\xbf\xfc\x36\xc1\x13\xde\x63\x65\x58\x11\x48\x53\x50\x60\x28\xa9\x94\x93\x7c\xd9\xa4\xc8\xd4\xa0\x5f\x2a\xdd\x64\xe9\x5c\x6e\xc3\x0d\x10\x89\x9b\xca\x59\xd6\xe4\x71\x31\x74\x0d\x5e\xe5\x88\xb8\x5b\x46\x9e\x0a\x75\x31\xc4\x00\x27\x11\x7a\xa9\xd4\x6a\x8b\xb7\xcf\x38\x8f\xd7\xe2\xc4\x0e\xb0\xc1\x60\xf0\x9f\x8c\x08\x11\x7a\xb2\x31\xf8\xf7\x2f\xba\x9d\x3c\xd7\x90\xc2\x0b\xb5\x07\xd1\xf6\xc6\x14\x7f\xf9\xe5\xea\xbf\xe5\x70\x26\x28\xdc\x9c\xa0\x9e\xc6\x05\x6a\x5d\xdd\x26\xdc\xf5\x8a\x83\x5d\x8f\x2c\x8b\x81\xdf\x79\x70\x6a\xdb\x82\x8e\x8d\x93\x64\xe2\x54\x9e\x75\xaf\x45\xca\x2f\x8e\xca\x72\x42\xbe\xe2\x66\xf4\x88\x2f\xb2\xfd\xb7\xb3\x9b\x61\x8c\xdf\x27\x55\x94\x39\xe8\x4e\x6b\x61\xb6\x1a\x44\x88\xe6\x4e\x02\xbc\x22\x5c\x45\xf4\x9f\xbc\xc4\xf5\x7e\x45\x87\x5c\xc6\x8f\xcb\x9f\x30\x41\xfe\xbe\x7b\xe5\x80\x6a\xdf\xac\x35\xd3\x93\x72\x6d\x96\x06\xd8\x95\x29\x91\xa1\xcf\xd3\x30\xbc\x42\x14\xbb\xf3\x7e\xcf\xef\x25\x99\x59\xed\xd0\xba\x77\x84\x70\xc9\x47\xda\xac\x6b\x7a\xf9\xc4\x62\x99\x40\x19\x13\xb6\x65\x72\x4c\x1c\xf4\x61\x36\x5e\x8d\x53\x4c\x2a\xec\xc1\xbf\x8f\x89\x20\x27\x64\x73\x3f\x32\xa9\x13\xe6\x40\xea\x81\xa6\xce\xbb\xd4\x20\xff\x53\x92\xc5\xfb\x5e\x6b\x53\x6a\x38\x19\x58\xc1\xab\x7a\xe1\x40\x52\x41\x78\xba\xde\x25\xde\xbf\xd8\xfd\x05\x37\x8d\x55\x75\xd1\xbd\x0e\xd4\x93\xae\x92\x5a\xf3\xbb\x78\x1d\x80\xa2\x9f\x65\x51\xb3\x9f\x8a\x8e\xaf\xfc\xcd\x03\x59\xb5\xb9\x1d\x5b\x53\xce\x74\x0e\x3d\xef\xa1\x3d\x1d\xaf\x31\x2a\xa4\x36\x94\x57\x8f\xb7\xc1\xbe\x4b\x13\xaf\xc3\xc2\x20\xd4\xa1\x3e\x8e\xa8\x0f\xf2\x71\xa3\x42\x74\xe8\xf9\xee\xaa\x15\xc8\xa8\x6f\x50\x05\x58\x46\xb3\xb9\x2f\x52\xee\x9d\xa0\x76\x74\xde\x2d\xb9\xca\xa4\x0c\x89\xf2\x8b\xbf\xb8\x77\x96\x24\x46\x76\x6c\x92\x40\x33\x9c\x99\x10\x52\xa0\x43\x8f\x09\x7f\x9f\x12\xd1\x22\x9b\xe4\x3d\x3b\xeb\x56\x24\xd4\x2c\x90\x5f\x62\x4a\x89\x9b\x36\xfa\x74\x77\xc9\x87\xae\xf4\x86\x94\xd9\xba\x73\x6e\x0b\x29\x01\xca\x30\x4a\xac\xd9\x86\x4f\xd3\x72\xc3\xa5\x69\x20\x5a\xaf\xda\x3d\xf5\x42\x84\x6f\x76\x76\x50\xa5\xab\x31\xac\xd0\xad\x7b\x06\x08\x40\x64\x37\x37\xdd\xda\x04\x58\x22\x60\xea\x78\x18\x37\xdc\xaf\xd7\xdc\x19\x44\x0a\x9c\x48\xe4\xbd\x2c\x5d\x8b\xd3\x9e\xed\xef\x71\x1f\x50\xe7\x84\xa0\xc1\xb5\x63\xbe\x73\x78\x29\xbc\xb6\xea\x41\x49\x6f\x69\x4a\x29\xef\x8c\xdb\x2b\xd1\xf9\xeb\x00\xb9\xe2\x89\xe3\x5e\x39\xe4\x52\x35\xdd\xb7\x2e\xb3\x56\x9d\x49\x8c\xab\xc3\x04\x01\x9f\x40\x8f\xc2\x22\x86\x26\xba\x68\x8b\x60\x15\x7a\xdf\x53\x48\x7b\x71\x19\xbf\x66\x51\x48\x10\x9d\x0d\x37\x57\x54\x73\x23\xbc\xe8\xdc\xae\x64\xf9\x68\x17\xb5\x1a\x8f\x62\x0c\xe2\xe4\xb6\x4c\x1e\xbc\x04\x75\x5a\xc2\xd2\xf8\x0e\x45\x6a\xf0\x32\xc1\xec\xbb\x1b\x05\xb2\xe3\x47\x8d\xa9\xb2\x6f\x5f\x37\x1e\x8d\x6d\xbe\x62\x7b\x40\x48\x60\x9f\x44\xdf\x49\x8e\xb9\xa5\x64\x06\x99\x74\xbd\x75\xa2\x87\x22\xc2\xbb\x3e\x3b\x1e\xe7\x71\x91\xa5\xae\x65\x88\x95\x1e\x52\x9b\x6e\x83\xff\x75\x08\x39\x0a\x91\xbb\x45\x2a\xef\xb9\xee\x38\xcf\x5c\xc0\x2b\xaa\x77\xde\xf4\xc4\x03\x7d\xc5\x5e\x50\xfc\x3d\x88\x72\x55\xe6\x36\xed\x17\xb3\x81\x1c\x0f\xd4\x1e\x16\x8a\xcb\x6e\xbc\xa8\x69\x0d\xed\xc7\xdf\x9d\x3e\xe2\x23\x81\x57\x00\x9c\xc2\x6c\xb8\xe4\x62\x20\x14\x2b\x3f\x23\xcc\xdf\x0f\xc3\xab\x35\xe3\xd2\xc4\x69\xcd\x28\xc5\x6d\x17\x0a\xe4\xdc\xfe\xc0\x5f\x7e\xb9\x6b\x6c\x9e\x15\x63\xd3\x43\x7c\xa0\x6e\xa9\xee\x7a\xe4\xa4\xd1\x60\xd9\xb7\xaf\x9b\xc7\x7d\x91\x06\x79\x29\x58\xd4\x06\x14\x77\x93\xe3\x7c\x70\x6f\xd7\x14\xc5\x64\x04\x18\xa7\x7a\x91\xba\x0b\x95\x93\x46\x69\x65\xff\x62\x77\x4d\xf5\xbf\x55\x0d\x29\x20\x41\xee\x37\x5e\xd6\xfe\xc5\x6e\x2f\x1b\x8d\x13\x1b\x74\x0d\x84\x81\x51\x63\x63\xa8\x55\xc9\x37\x7f\xf9\x3f\xc5\xf5\x93\xe9\xc8\x92\xdf\x76\x42\xd1\xa0\x8a\x92\xb3\x99\xf0\xba\x3f\x24\x79\xf1\x0f\xa6\xa1\x55\xfa\x77\xc2\x80\x73\xc5\x29\xc0\x3b\x10\xd5\x1f\x27\x5d\xa0\xbb\x53\xea\x79\x3f\x3c\x1f\x46\xaf\xf4\xbc\x95\xe5\xdc\x1c\x8b\x0b\xdd\xb5\x38\x9f\x24\x36\xed\x71\xb5\xe0\x8f\xf0\xb2\xe4\xc4\x5f\x04\x02\xd1\x4e\x48\x1e\x81\x1e\x52\xe4\x4c\xb3\x8e\xf5\x42\x77\x3d\x4e\x5d\xf8\xe6\x7b\xa1\x5e\x2e\xfc\x1e\x4a\xea\x5a\x9e\xf8\xa2\x7f\x38\x4e\xe6\x2c\x5e\x9e\x94\x0e\x94\x50\xfd\x18\x20\xd9\xa7\x31\x27\xe4\x84\xaa\xb4\x93\x7c\x65\x8e\x54\x8e\x6e\xba\x8b\xd2\xf2\x36\x91\xa2\xc8\x6a\xe5\x4f\x6a\xf8\xe3\x16\xd4\xea\x73\x5d\x93\x67\x23\x03\x50\x3d\x56\x63\x91\x36\x16\x9d\x63\x97\xa0\xe8\x5b\x6a\x38\xc0\x3e\xff\x82\xdb\x39\xff\x03\x30\xac\x8f\x87\x17\x3c\x98\x68\xf9\x51\xd9\xf2\xc4\x9e\x3a\x4f\x78\xb3\x57\xb2\xa1\xa3\x04\xce\x04\x73\xb5\x4f\x98\x40\xf8\x49\x14\x6a\x7e\x4e\x93\xa3\x37\x49\x4c\xce\xaa\xfe\xbf\x4d\xba\xad\xbf\xdd\x98\x58\x5f\xa9\xfe\x13\x2c\x7d\xbc\x04\xbe\x17\xcd\xbf\xc0\x86\xa7\xc3\xb8\xb7\xea\xbc\x85\x99\x0b\x58\xbd\x67\x39\x26\xce\xf8\xd0\xe6\xb6\xef\xb4\x76\x48\xbf\x3b\xf8\x65\x8b\x68\x82\x54\x1f\xa2\x20\x9c\x5b\xe6\x59\x5c\x52\x2b\xec\x3e\x2b\x62\xdc\xaf\x69\x47\xbe\x92\x6d\xec\x0c\x68\xb5\x7f\x1a\x51\x1a\x76\x9c\xd3\xb0\xe3\xe8\x2e\x88\xfe\x0e\x81\xda\xfe\xa9\x0b\x71\x54\x97\x87\x65\xd9\x96\xb3\x14\x7e\x04\xda\x92\x20\xf2\xe9\x91\x46\x4d\x79\xdf\xbe\x6e\x51\x9a\x7e\x3c\x19\x49\xca\x23\x72\x5e\x4e\xc0\x56\xa5\xbd\x18\x07\x3c\x1a\xdb\x24\xf1\x10\x66\x5f\x65\x5f\x5c\x94\x7d\xee\x38\x11\x39\x6e\xd0\xc3\xe9\x25\x71\x6a\x77\x87\x25\xf0\x0a\xed\x08\x92\x74\x20\x74\xb9\x59\x47\x0f\x54\xcb\x0c\xe1\x3c\x34\xe8\x10\x0f\x40\x8c\x3a\x10\xb0\xc5\xc2\xa8\x0d\xea\xbe\x62\xf2\x91\xac\xd9\xa2\xd7\x3a\xa5\x92\xf1\x67\x8d\x88\x7c\xdf\xbe\x6e\x62\x7a\xab\x4a\xae\x06\x32\x4c\xa4\xb1\xe4\x84\xbc\xc1\x52\x29\x3d\x3c\xd6\x61\x16\xfd\xaf\x48\x0f\xe6\xd5\xf7\x50\x69\x66\x7b\x54\x55\x21\x47\xe0\x00\x55\x81\xd3\xd3\x9a\xfd\x3c\x3d\x91\xa3\x0c\x65\x9e\x81\x16\x2a\xd8\x10\x70\x17\x42\x82\x7d\x09\xb7\x24\x5f\xe6\x22\x0f\x81\xc6\xd6\xc8\x99\x8d\x69\xf4\xf2\xcb\xdd\xe5\x49\x51\xaa\x8e\xa1\xb7\x4f\x0a\x5a\x9b\x4d\x14\xc9\xe2\xe2\x52\x77\x92\xc6\x6b\x36\x17\x52\x8e\xb6\x37\xdd\x25\x68\xe3\x33\xac\x7d\xbf\xf8\xcb\xbf\x3c\x43\x88\xb4\x3f\x75\x11\x80\xea\x36\x85\xae\xed\xcd\xa0\xf6\x91\x2d\x2f\xc7\xba\x20\x29\x17\x93\x44\xff\x2f\x34\xf6\xc0\x03\x07\xba\x36\x1d\x24\x71\x31\x1c\xa9\xbe\x25\x06\x27\x12\x29\x39\x9e\x32\x93\xff\x9b\x93\xb8\x88\x4b\xdc\x00\x02\xb6\x0f\xdc\xc5\xc8\x71\xad\xad\x9b\x8f\x32\x2c\x33\xc8\x7c\xfe\x39\x9e\x8f\x9c\xb4\x6d\xe0\xcb\x59\xd2\x47\x71\x11\xeb\xfd\xc7\xe4\x34\xf2\x71\x9b\x0c\x01\xb8\x8e\x7e\x39\x93\xd0\x9f\x1a\x8a\x97\x82\x4b\xe8\xaa\x1d\x3b\x86\xa3\xd3\x16\xc4\xf6\xfe\x09\x01\x92\x3f\x89\x38\x8b\x4d\xfa\x0a\xdb\xc7\x2e\x76\xd4\x3d\x7d\x6f\x37\xb3\x5f\xc7\xac\xf4\x3f\xc5\x89\x5e\x00\x0f\xea\x4b\xdf\x12\x72\xf4\x63\x33\x48\xb3\xa2\x8c\x7b\x24\x0f\xfa\x26\xc9\x83\x06\xf1\x96\xde\xd0\x9a\xb1\xcd\x77\x06\xb0\xd4\x49\x12\xf2\x78\x16\x99\x0b\xae\xe8\x2c\xa6\x3f\xda\x74\x7f\xc9\x79\x3b\xc8\x38\xee\x50\xae\x34\xd3\x00\x57\x54\x9b\xd9\xd8\xe4\x6a\xde\xad\xae\x92\xa1\x0d\xfd\x9b\x6d\x9d\xb1\xf5\x4c\x47\x30\x80\x7d\xf2\xeb\x72\xd2\x58\x17\x5c\x7d\xa8\xcc\xad\x11\xaf\x0a\x75\x89\xef\x04\xc7\xf8\xc6\xab\xd5\x4c\xfa\xff\x03\x5e\xb3\x56\xa7\x2e\xab\xa8\x87\x35\x3d\xb0\x72\xca\x71\xbd\x92\x62\x47\x8f\x74\x16\x17\xb7\x3a\x35\x70\x21\x5a\xb5\xca\xcd\xee\x2c\x1c\xf2\x17\x40\xc0\xcc\xe3\x92\xd2\xe8\x9c\xc1\xdb\xc7\x73\x78\xc3\xed\x35\x12\xf2\x73\xf5\x1a\x4e\x81\x98\x2e\xd7\x88\x0c\xd2\xd4\xb7\x59\x38\xd4\x1d\x4d\x92\x32\xae\xf6\x79\xe7\xd5\x15\x10\xce\x3e\x7f\x3e\xd3\x16\x6e\x9b\x41\x6e\x75\x1d\xc0\xd5\x88\x1f\xb0\x9c\xb4\x69\x82\x9b\x7e\x2c\xb0\x21\x31\xf2\x88\xc2\xf8\x3c\x59\xd7\x1c\xcd\xbf\x4a\x40\x5b\x49\x7b\x95\x81\x1f\xca\x3b\xe3\x3c\xeb\x4f\x7a\x56\xf1\xa4\x48\x4a\xee\x23\xbd\x55\x1f\x1f\x37\x50\xb1\x78\x8b\xd6\x02\x7b\xf2\x60\x49\x3c\xe6\x76\x55\x55\x36\xaa\x1e\x2a\xfb\x1d\x6d\xbd\x31\xa5\xe5\xf3\x0e\x27\xbe\xeb\x66\x0c\x8c\x9f\x3a\x03\x76\xbc\x90\xc8\x9d\x56\x9e\x6e\x6a\x57\xb3\xac\x90\xa7\xa0\xad\x86\xea\x0b\xb4\x07\x11\x6e\xce\x25\x27\x4e\x20\xc3\xd7\x29\xff\xbd\xdb\xa4\x3c\x89\xbb\xfa\x0e\x85\xd5\x87\x6a\x78\xdf\x91\x1c\x76\x87\xbb\x7b\x0b\x28\x02\x44\xbe\x00\xc8\x68\xfd\xb9\xba\x55\x3f\x23\x3d\xee\xeb\x37\xb9\xe7\x76\x36\xc2\x00\x94\x3f\x27\x2b\x92\xcd\x46\x3f\xab\x4a\x08\x7a\x26\xf4\xb3\xf0\x75\x78\x2a\x72\xcc\x39\xb0\x2d\xca\x19\x17\xf6\x29\xda\xa1\xe3\xf5\xa5\x30\x34\x14\x6f\xd5\x52\x2c\x2c\xad\xe9\x0d\x67\xea\xce\xd2\x3e\xa7\xbf\x5c\x67\x26\x86\x17\xb6\x9e\x67\xa5\x9d\xab\xf5\xc2\xab\xdb\x56\x89\xcc\xea\xd1\xa8\x0e\x27\x21\xe9\xe9\xba\xde\xe4\xaa\x93\xed\xe5\xb6\x44\xf4\xe2\x89\x84\xd5\x40\x51\x9c\xc0\x53\xcc\x65\x2d\x7a\x59\x6e\xd1\xd9\x40\x3e\x05\x3b\x22\xc4\x7f\x1f\x12\x9c\xbe\x15\x9a\x97\x1b\x41\xa7\xb4\x55\xbe\xb7\x8b\x14\xee\x5f\xec\x7e\x59\xa2\x2a\xb0\xce\xcf\x46\x4e\x42\x50\x4e\xfc\x76\xb5\x6e\xe3\x42\x9c\xd0\xab\x60\x56\xdd\x34\x02\x54\x4e\x64\xc7\xb1\x0c\xdc\xa2\x8e\x2a\x92\xac\x5e\x59\xc0\x1c\x07\x37\x71\x16\x31\x31\xa6\xd7\x29\x44\xcb\xf2\x2f\x6e\x37\x93\x7f\x68\x13\xb7\xc8\x27\x7d\xdc\x9e\x76\x03\xa8\x33\xe0\x2f\xd7\xe9\x8e\xaf\x79\x02\x8f\xfa\xbb\x12\xf8\x8b\x9e\xca\x9d\xb6\x96\xdf\x20\xcf\xd6\x81\xc1\xf4\xa2\x8c\xd5\x45\xaa\x28\x23\xf5\x6d\x4c\x6f\x35\xc9\x06\xe4\x1d\x78\x96\xbc\x03\xcf\xfa\x8c\x7d\xb2\x92\xcd\x32\xcd\x42\x4a\x0e\x58\x92\x8f\x50\x11\xf0\xa3\x29\x55\x64\xb7\x7c\xdd\x71\x68\xd2\xbe\x95\xd2\x19\x42\x73\xb4\xab\x14\xee\x4a\xe6\x05\xb7\x10\xad\x2a\x53\xf2\x49\xe2\xbc\x9a\x0d\x9b\xc3\x2f\x1c\xe9\x29\x26\x0f\xee\xea\x7f\x66\xf5\x42\xa9\x5e\xaa\x1c\x58\xcb\xbe\x9b\xc4\xe9\xaa\xec\x86\x58\x91\xee\x63\xe3\x45\x70\xfd\x36\x21\x18\x3b\xf3\xad\x5a\x73\x26\xb7\x2b\x13\x55\x78\xc0\x27\x7f\x12\x85\xbf\xfa\xc9\x03\x69\xc7\x8e\x80\x32\x13\x3a\xd2\x37\x6b\xa8\x20\xf7\xf4\x54\x2d\x2b\xc4\xaf\x6b\x71\x32\x3b\x73\xd8\xcb\x7b\xa0\x4c\x89\x7d\x02\x84\x4b\xc4\xe6\x82\x60\xc3\xc9\x0f\x7c\x9b\x76\xe4\xd4\xe6\x42\x37\xf6\x53\xf6\x18\xfd\x34\x0a\xf6\x3b\x45\x69\x6d\x32\x32\xab\x1e\xf5\x8b\x90\xe8\xfa\x94\xe2\xa3\xeb\xd1\xd3\xdb\x4d\x01\x17\x0e\xed\x22\xb2\xf6\xa9\x3a\x52\xa6\xe3\x2d\xf6\x5e\x8f\x48\x14\xf5\xcf\x31\x6f\xb4\x28\x12\xb2\x9c\x1f\x32\xd7\xfb\x14\x41\x67\xa1\x39\x95\xe5\x8f\x04\x41\x7f\xd7\x16\x56\x55\x40\x19\x74\x67\x23\xca\x92\x00\x6e\x17\x07\xda\x88\xca\xe3\x9f\x4d\x89\x0a\xfd\x36\x79\xa4\xaa\x22\x92\xaf\x6f\x1f\xdc\xab\xff\xb2\x49\x1e\x4b\xc7\x28\x5d\x5f\xce\x4d\xda\x1b\x3a\x1d\x15\x4d\xb6\xc1\xf5\x57\x92\x70\x08\xa7\xfa\xd6\xdb\x5e\x11\x13\x3b\x0a\x77\x54\xb7\xbd\x7a\x2d\x4e\x1c\x7f\xc1\x83\x53\x0e\xfb\x45\xfc\xf3\x69\xc0\x52\xde\x6b\x8c\xf0\x03\x07\xba\xeb\xd9\x24\x95\xc2\x29\x12\xd3\xf3\x24\xd7\x2b\x22\x50\x08\x7f\xef\x34\x0a\x5e\x0b\x87\x34\xbb\x8a\x25\x5a\x02\x4a\xe3\xa1\xf9\x80\xd8\x68\xc2\x8b\x1d\xe7\xd2\x2e\x1b\xc9\x68\x44\xfc\x27\xa2\xa0\x3e\x10\xdd\x6d\x31\x4e\x49\x77\xe6\x33\xf6\x93\xf9\xac\x85\xcd\xf9\x42\x95\xf9\x3b\x64\xbb\x4a\x66\x5e\x77\x19\x26\xaa\x23\xe2\xae\x84\xa7\x71\x03\xef\x19\xb9\x2f\x78\x8f\xa8\xca\x6f\x4d\x1f\x21\xee\xe0\xff\x23\xc7\x95\x19\xab\x0f\xe2\xb8\x32\x63\xb5\x43\xa4\xd8\x3a\xf7\xf5\x41\x7c\xd7\x2f\xc6\x3a\xaa\x4b\x9b\xc3\xcb\x33\x36\x25\xf8\x80\x88\x81\x77\xcd\x87\x4a\xce\xdc\x66\xc0\x78\xbf\xd9\x6a\xd5\xdd\xb7\xc2\xa9\xa8\xbe\x00\x5b\x86\x18\xf5\xca\x49\x4b\x55\xb3\x1b\xa7\x76\x2d\x2e\xcd\xb2\xaa\x9f\x21\x44\x05\xa7\x44\x8e\xb9\x2c\x95\x8d\xec\x7a\x96\xaf\x62\x50\xa9\x59\x4d\xc7\xab\x76\x7c\x67\x4a\x9b\xe4\x87\x54\x8d\x7f\xc5\xa4\xa9\xdd\xe8\xb0\x61\x99\xbc\x70\x39\x69\xe4\xaf\x0b\x87\xba\x1b\x26\xb1\x08\x1f\x81\xe3\x40\x8d\x52\x8e\x37\x03\x32\xcb\x9a\xdc\x99\x3f\x1e\x94\xb6\xe8\x2d\xf7\xf6\xb0\xfa\x38\x9f\xbd\xad\xb3\x88\x8d\xe5\x9f\x9d\x48\x8d\x16\x46\xc2\x0a\x9b\x4d\x12\x97\x1d\xaa\x5e\x01\x05\x9d\x37\x64\x74\x60\x15\xfb\x88\x6a\x3d\x68\xb1\xa2\x8e\x70\x11\xbf\xa2\x0b\xf9\x33\x0d\x46\x91\xe8\x29\x7b\x13\x1e\xef\x4a\x7c\x96\xf4\x3d\xe2\xd2\x8e\x8a\x6d\x54\x1d\x1f\x22\x5c\x9e\x36\x6c\x7c\xb0\x7e\x76\xea\x9a\x8c\xd5\xc4\x50\xa5\xc8\x27\xc8\xff\x33\xcb\x72\x91\xa0\xf5\xcc\x39\xdf\xdd\x79\xbd\x91\x6b\xfa\x0e\xac\x99\xa9\x6b\xb5\xfb\x46\xc0\x3b\x6e\x0d\xd2\xe6\x63\x00\xb4\x3a\x5d\xa9\x0e\xd7\xbc\xb9\x16\x1e\xae\x68\x1c\xf7\x56\x6d\x39\x13\xd8\xf4\x10\x1d\x61\x35\x32\xa1\xc6\xfa\x40\xc4\x9a\x7c\xb6\x26\x53\x1c\x3e\x84\xf4\xbc\xb6\x91\xaa\xcc\xd7\x13\x8c\x1c\x1f\xc5\x25\x02\x11\x35\x4a\x77\xef\x0d\x03\xeb\x28\xe9\x29\x0b\xd8\x05\x5f\x3e\x3b\xbf\xfd\xf1\xbc\xfc\x72\x77\x94\x65\x69\x6c\x55\x4b\x0a\xf3\xec\xcd\x88\x0c\xfa\xdf\x6c\x08\x08\x57\x6b\x64\x9c\xf6\xed\xd8\xa6\x7d\x2d\x15\xe0\xe5\x9e\xe7\x4e\xd4\xf9\x46\x16\xbf\x7f\xb1\xbb\x66\xd2\x5e\x36\x59\xb3\x8a\xca\x56\x11\x35\x4a\x1a\xbf\x1b\x29\x39\x22\xb7\xa3\x38\x8d\x8b\x9e\xfe\x08\xa2\xae\xdd\x9b\xa1\x38\xba\xbb\x71\x4b\x68\xe3\x8c\xb2\xb4\xc0\x1b\x57\x59\x7c\xfc\x1c\xa2\xfd\x7b\x6c\xf7\x73\x81\x8d\xa6\xcc\x64\x30\x2c\xdc\xcb\x84\x62\xc1\x7d\xac\xc3\x1a\x30\x86\x50\xed\xa2\x17\xbf\x19\xc5\x85\x49\xcb\x61\x9e\x8d\xed\x36\x47\x18\xbf\x9e\x5e\x69\x24\x5f\xce\x5c\xb9\xb4\xa3\x31\xd6\x07\x65\xe3\x80\xfa\x22\xc7\x8d\x22\xa3\xfb\xa3\x6a\x01\x9b\x09\x5b\x13\x7a\xdf\x58\x16\xee\xf3\x5a\xf9\x7e\x4b\x09\x77\xa9\xbb\xe2\xad\x78\x54\x37\x94\x34\x67\x4f\x12\x6e\x63\x25\xcb\x6d\x3c\x48\x77\x85\x7c\xf9\x13\x37\xae\x41\x22\xbb\x8b\x72\x88\xfe\x12\x95\x81\xbf\x8b\x2f\xd4\xc2\x3b\x9e\x3a\x96\x20\xb4\xe6\x95\xfc\xa3\x55\x2d\x93\xe7\xf1\x9a\x15\x15\x7a\xc4\x25\x1d\xd4\x54\x10\xbd\x5c\x9b\xb2\x39\x7f\x0b\xce\xe1\x95\x2c\x76\x69\xc2\x96\x5b\x4c\xb6\xce\xfa\x4c\xce\xf4\xd7\xb2\x9e\x09\xdd\x3c\x6c\x93\x27\xa2\x40\x73\x3e\xc1\x96\x47\x26\x2f\xd5\x95\x04\x57\x7f\x96\xa8\x30\x67\x1b\x1e\xb7\xd5\x76\x9e\x4d\x4a\x61\x71\xc8\xf5\x2b\x60\xda\xed\x21\xda\x46\xaf\xd6\x17\x95\x5a\x6c\xaa\x71\x2c\x39\x67\xc9\x59\xb2\xf3\xc3\x90\xc3\xda\x87\x46\x80\x94\x16\x5d\x88\xa5\x3c\xda\x67\x48\x5a\x06\xb2\x22\x59\x3a\x43\xea\xfd\xe7\xf0\x35\x1e\x4b\xe8\x13\xaf\xbb\x41\xc5\x3d\xae\x42\x51\xef\xff\x8f\x6f\xfe\x74\x1a\xa4\x08\x44\x66\x1d\x6b\xf5\x1b\x34\x3a\xe4\xae\x77\x56\x17\xe4\x1d\x24\x17\x0e\xa9\x54\x17\xa6\x97\xfc\x43\xe4\x62\x7e\xd4\x41\x8e\x91\x65\xe6\x31\x70\xf1\x55\xdd\xeb\xd9\x1a\x3e\xc2\xe6\x65\xbc\x9c\x58\x57\x18\xd1\x88\x81\x64\xc5\x44\xc2\x02\x19\xde\x4d\xf2\xf4\xc4\xd3\xc6\x74\x38\x47\x3c\x80\xdd\x80\xbe\xa2\xbd\xfc\x51\xf4\xd0\xcf\xeb\x21\xe9\xb0\xda\x72\xb6\xb3\x6f\x9f\xe0\x66\x6f\x11\xfa\x12\xf8\x29\x00\xfd\x6f\x38\x49\x77\xe1\x14\x35\x6c\x3a\xdc\x0c\x15\xce\x15\x35\x03\xd5\x6d\xb1\x43\x2e\x8c\x41\xb4\x6d\x92\xe6\x76\x64\xf2\x55\xb3\x9c\x58\xaa\x1f\x9d\x9e\x06\xa6\x23\xea\xfb\xaa\xd5\xf8\x20\x98\x11\x3a\xe4\x4e\x32\x5f\xe4\xeb\xa7\x35\x10\x7e\x80\x3a\xef\x42\xff\x43\x19\x2d\xee\x45\x68\x56\xd6\x16\xb7\x26\x56\x39\x52\x12\x86\x23\x56\xd5\x98\xfc\x31\x0a\x49\xf3\xc4\x89\xa0\xa2\xce\x73\x01\xf1\x22\xf9\xa1\xab\xd5\xcd\x05\x54\x39\xb4\xbc\xf7\x24\x11\x49\x8a\xd2\xe6\xa9\x13\xef\x40\x8d\x05\x3c\x33\xdc\xc4\x7f\x89\x8d\x4e\x87\x56\xf5\x4b\x84\x49\x54\x85\xcd\xfb\xac\x31\x7b\x9e\x20\x1f\x03\x33\x5a\x4e\x2c\xe0\x4b\x18\x3c\x6f\x6c\xcb\x47\x3c\x75\x18\x44\x17\xcc\x83\x3a\x39\xad\x30\x1b\x4f\xb9\x27\x86\x75\xf1\x1a\xcb\xe3\x1d\x73\x02\x8f\x28\xbf\x89\xfd\x39\xba\x15\x27\xa7\xc1\xb2\xfd\x33\xa6\x8a\x5d\x88\x3a\x5f\xfb\x35\x6f\x76\x55\xdd\x90\x7a\x3c\x77\x7e\xf5\x1b\x52\x0b\x9d\x9d\x0f\xc4\x86\xb7\x31\x27\xbd\xa6\xd8\x61\x2f\x80\xf0\x19\x17\xb4\x80\xf6\xc0\x60\xfb\xd1\x94\xca\x5e\x97\xdc\x44\x45\x1c\x34\xe7\x76\x52\xc1\xb2\x51\xbb\xa3\x97\x15\x58\x36\xab\xd8\xc1\xfb\x4a\x04\x2b\xb5\xb3\x8d\x21\xe8\xb4\xe9\x9c\x70\x4b\x16\xaf\x9a\x19\x8a\x6e\xee\x93\xf2\xff\xac\x73\x5b\x72\x4b\xef\xeb\x4f\xcd\x3f\x41\x2b\x58\x5a\x0a\x9a\x50\xad\x58\x3b\xe4\xd1\xca\x0f\x3f\x49\xec\x4e\x12\xaf\xbd\xc0\xc6\x18\x17\x08\xc9\x24\x36\x0e\x80\x68\xfd\x49\x44\xad\x2c\xac\x41\xf2\x0f\xd4\xca\xb2\xaf\xda\xde\xa4\x8c\xd7\xec\x63\x6e\x64\x52\x22\xee\x7b\x47\x48\x8b\x84\x72\xee\xc6\x0a\xc2\xe9\x6b\x0e\x27\xac\x54\x74\xf7\x5b\x5e\x0b\xd2\xc7\x82\x08\x3a\x91\x58\x48\x31\xc2\xfb\xb7\x1e\xf6\xf2\xb6\x9f\x4d\xc3\xec\xf9\x64\x4a\x2c\x6c\xe0\x29\x94\x4e\xd5\x22\xa3\xd5\xcf\x4d\xc1\x8a\x9d\x08\x55\xff\x2e\x85\xad\x7f\x97\x0d\x1d\x7a\x68\xdc\xc5\x59\xfa\x48\xdd\x3d\x2f\xb8\x31\xb8\x91\x82\x28\xf9\x23\x87\x81\x40\x6e\xfa\x0e\x41\xec\x20\x03\x2f\xde\x48\x10\x70\x52\xb7\x58\x6c\xfd\x68\xee\x7d\x18\x91\xf7\xb1\x68\xd4\x69\x41\xdd\x3d\x2e\xa4\xe3\x77\x29\xf2\xb3\xaf\x9a\x51\x1c\x14\xd2\xb1\x07\x01\x01\x25\xc7\x2d\x12\x4b\xcf\x75\x47\xd9\x60\x92\x40\x48\x8f\xc5\xee\x49\xd3\xde\xb7\x23\x6c\x61\xd3\x12\xa8\x0f\x2c\x34\x77\xdd\xcd\xa3\xf0\x7a\x3a\xa2\xba\xda\x05\xaa\x36\x0e\xb2\x7e\xdf\x16\x75\x05\x0d\xd2\x6d\x3f\xe9\x35\x27\x73\x6b\xfa\x7b\xdc\xe8\x71\x13\xe1\x6f\x0b\x80\x50\x9f\x2d\x99\xf2\x9c\x67\xce\x26\x32\x1f\x6d\xfd\x87\x40\xef\xf1\xcd\xb0\x05\x48\x15\x07\x71\xe2\xc3\xdc\xcb\x7e\xcf\xa3\x18\x4c\x9e\x4d\x82\x02\x90\xe8\x66\x46\x61\x23\x73\x4e\xc3\x9e\x58\x66\xfa\x75\x36\x75\xd0\x55\x07\x60\x98\x09\xa9\xf2\x99\x68\x9b\xe8\xd2\xc1\xbd\x55\x84\xf9\x64\xc7\xfb\x19\x5c\xc5\x32\x87\x65\x60\xa7\x13\x2d\x10\x5e\x29\xa2\x47\x4c\x8b\xa7\x5c\xda\xb7\xb5\x53\x28\x8f\x5a\xb9\x0f\x12\x55\xff\xeb\x5f\x46\xc9\xc2\xe3\xac\xaa\xeb\xc4\x4b\xba\x88\x69\xe4\x1e\xdc\xe1\x9f\x73\x0c\x19\x2c\x92\xbb\xe6\x49\x05\xf2\xc4\x94\x2c\xdb\xfe\x98\x6c\xba\x7e\x7d\x4a\xee\xb5\xff\x24\x0a\x54\x89\x3d\x9b\x4f\x72\x37\x60\x5d\xa5\x64\x30\xc3\x45\x4e\x41\x4e\x1a\x51\xfa\xc2\xa1\x6e\x6e\x97\x27\x2b\x2b\x9d\xb0\x11\xe3\xc1\x6b\x39\x70\x7b\xca\x72\xe8\x79\xc7\x56\x71\xc4\xbe\x17\xf7\x4a\xa5\x0f\x4d\x3d\x39\x0e\x8d\x18\x53\x14\xb6\x3f\x47\x08\x67\x0c\x24\x3c\xb6\xf3\x8c\x0d\xdb\xed\x32\x03\x64\x2e\xb3\x18\x30\x78\xfc\x37\x6a\xea\x00\xaf\x89\x07\x05\xa0\xb8\xb7\xa6\x64\xc6\x7c\x8b\x68\xc6\x83\xc9\x06\x02\x00\x49\x85\xea\x82\x25\x5c\xef\xdb\xb0\xf6\x91\x00\xcf\x80\x42\x1b\xea\x50\x90\x8b\x56\xcc\x2f\x89\x76\x9f\xc4\xe6\xa2\x6e\xdf\x14\x83\x5f\x46\x21\x54\x2a\x21\x11\x21\x52\x01\x4f\x96\xe3\x28\x08\xa4\x9c\xe0\xca\xed\xc7\xf5\x8d\x3b\xee\x3d\x1c\x42\xfa\x23\xe4\xea\x77\x82\x1d\x74\x7f\x8a\x65\x17\xe5\x95\x5b\x11\x95\x6f\x54\x3a\x01\xc5\x12\xa7\x3e\xf3\x9c\xf7\xb8\xaa\xee\x0d\xf3\x59\x98\x2b\x35\x46\xb7\xea\x1d\x05\xc0\x4b\xb5\x58\xaf\xc6\xe2\x10\xa0\xea\x11\x4e\x0f\x4f\x69\xbf\x4d\x0b\xe5\x32\x37\x6b\xd6\xb9\xaa\xe1\x42\x6a\x46\xdb\xea\xc6\xfd\x1f\x3d\x20\x3c\x5c\xce\xed\x6b\x43\x57\x2c\x43\xfb\x46\xfd\x5f\xdc\x1f\x2b\x06\x5e\x97\x8f\x5e\x6e\xed\x58\x69\x60\xde\xd7\xb6\xba\x5f\xf5\xb5\x0d\xa5\x92\xd5\xb8\xb7\xaa\x57\x84\x5e\xac\xc8\x0b\xc8\x09\x67\x64\x55\x60\x5f\xd8\xbe\x6b\x80\xe8\x4e\xe1\x9e\x16\xe0\x09\xc0\xdd\xe3\x59\x49\x0d\x14\x6f\xe8\xde\xb4\xd6\xd0\x12\x79\xd5\xea\x0d\x8a\x8f\xc5\x34\x60\x30\xae\x10\x43\x64\x38\x49\xfb\xb9\xed\x17\x4e\x18\x0f\xbb\x80\x60\x60\x30\x26\x8f\x46\xa4\xd1\x70\x94\x25\xbd\x00\xfb\x94\x3f\x99\x86\xc0\xac\x05\x3b\xbf\xb7\x6b\xbc\x88\x80\xf0\xbf\x11\x97\x28\x19\xbc\x26\x7b\x58\x6e\xcc\xd2\xba\x73\x8a\x04\xce\x3e\xa4\xd0\xc4\xad\xf1\xa1\x4e\xe6\x41\x20\x59\xb6\xea\xbb\x6a\xb8\xea\x19\xb7\x33\xa0\xc6\x7a\x82\x35\xe7\x1a\x25\xe8\xaf\x74\xcb\x61\x3e\x29\x4a\x07\x66\xf6\xa2\x85\x3e\xcf\x79\x9f\x5b\x58\xd7\x1a\xb5\xb4\x97\x5f\xee\xe6\x46\x54\xe5\xb8\x9b\xed\x2e\x45\x55\xe2\x3c\x7e\xd4\xa4\xab\x40\x43\x2d\x7a\xf8\x4b\xd8\xcc\xce\xd1\x46\xdc\x4b\xe2\xd4\xc1\x70\xdc\xe3\x13\x5e\x52\x44\x62\xe6\x27\xc9\x30\xb6\xca\x0c\x0b\xef\x40\xb8\x24\x2b\xda\xb7\x09\x06\xfa\x6d\xea\xae\x3b\xdf\x9a\x62\x86\x3e\x79\xa9\x16\xac\xbb\xad\x56\x5a\x90\x51\xd8\x0e\x87\x93\x64\xd5\x8d\x7b\xf5\x17\x73\xb7\x2b\x27\x44\xb0\x2b\xe2\x14\x9f\x63\xdb\x20\x75\x0a\x0a\x7c\xf0\x32\x1b\xb9\x4f\x79\x49\xa4\x40\xdc\x38\x4f\x89\x8f\xe3\xc8\xe6\xc2\xa5\xf4\xa8\x2b\x1f\xd0\x36\xc1\x5a\x8b\x8b\x4b\xdd\x24\x1b\xc4\xd5\x42\xa2\xd3\x0f\x99\xc0\x6f\x31\x58\xed\xb7\xe8\x8a\x5d\xf9\x27\xd4\x3e\x65\xee\xcb\x49\xa3\x80\xed\x94\xe6\x92\x1a\x6e\x44\x48\x01\x0a\xed\x69\x69\xd9\x98\x49\x3f\xce\xdc\x6f\x78\xe7\xaf\x03\x07\xf4\x98\x84\xbd\x96\x93\x89\xc5\x04\x16\xf3\x40\x5c\x8b\x3a\x09\x3e\x5e\xd3\xf2\x4c\xbf\xe8\xc6\x03\x62\xce\x5d\xf3\x55\x9a\x2e\x15\x5b\x8c\x3e\x94\xd9\x44\x2d\x5a\x05\xdf\x42\x61\xec\x89\xf9\x20\xbb\x7f\x13\xc1\x07\x92\x3c\x38\x9f\x23\x20\xba\x36\xad\x12\x31\x3c\xb3\x93\x82\xa3\xa8\x51\x67\x5c\x6c\xf0\xdb\x5f\x72\x0a\xbd\x60\x02\xcc\x6d\x56\x51\xb1\x77\x9e\x0b\x3b\xe2\x99\xa8\xf3\x2b\x2f\x78\x74\x3e\x5e\x8d\x67\xfe\x7c\xfd\x70\xe0\xc8\x57\x4f\x16\x69\xce\x55\x50\xc3\x34\x10\x0e\x11\xe5\x55\x37\x4a\x51\x59\xfa\xd7\x2e\x18\x43\x22\xf7\xbd\xda\x33\x4a\xfa\xc5\x93\xd5\x85\x31\x5f\x0e\x8f\x68\x06\xb8\x50\x6f\xf0\x56\xed\xb4\x08\xe4\xef\x63\xa3\xf3\xf0\x99\xea\x11\x8b\x11\x2b\x23\xf3\xde\x26\x7f\xbd\xd7\xdd\x03\xc3\x93\xdc\xc2\x6a\x89\x01\x7f\x11\x5b\x17\xc6\xea\x5b\x30\x0b\xf1\x7a\x9b\xd5\x5d\x62\x9a\x9d\x72\x59\xad\xe2\xba\x3b\x5e\x36\xf9\x21\x98\x70\xa0\x38\xf8\x81\x8f\xa1\x7b\x26\x97\x06\x37\x02\x9c\xeb\x94\x2d\x3c\xf3\xb4\x84\x8c\x58\xed\xf6\xcc\xb7\x54\x9b\x4d\x9a\x66\x93\xb4\x27\x1a\x68\x78\x69\x33\xf3\xd5\x1b\x40\x14\x72\x81\x09\x35\x3f\x62\xfb\xab\x2b\xad\x3e\xf8\xcb\xb6\x88\xed\x40\xcb\x3a\x78\x56\x62\xbf\x2a\x27\x8d\xf2\x89\xe3\x50\x66\x19\xa2\x41\x31\x70\x74\x43\x53\xcd\x1c\x35\xd4\x1c\xe4\xa6\x3f\xa9\xb2\xb7\xd9\x50\x26\xbd\x41\xba\xba\x9f\x91\xbe\xdd\x11\x5e\x44\xfe\x38\x98\x0e\x99\xc2\x26\x71\xca\x82\x9c\xff\x9d\xfb\x2b\xac\xce\xe7\xea\x39\x7c\x30\x73\x74\x5d\x37\x2d\x0c\x8b\x1e\x66\xc4\x9d\xae\x93\xc4\x9b\x5f\x1f\x66\x49\xb2\xe1\x90\xfe\x1e\x5e\xec\x9d\x5a\xb0\x7f\xe3\x8d\xbc\xdd\x02\xaa\x7a\xa9\x5b\xf4\x62\xcf\x40\xc0\x98\xba\xc7\x76\xfe\xf7\xa8\x9d\x95\x8c\x8b\x5d\xd5\xd0\x0b\x09\xb7\x77\x9a\x9b\x86\x5c\x7a\xf7\x26\xe9\xb9\x0e\xa7\xe1\x81\x6d\x61\x78\x63\x10\x7f\x69\x9e\x58\xa1\x4d\xac\x32\x54\x91\x7b\xd9\x48\x2c\x5e\x7d\x1f\xa4\x1a\xd4\xda\x07\x69\x0a\xec\x35\x1c\xce\x8e\x90\xc3\xd9\x11\xba\x95\xf5\xa4\xd8\x49\x2c\x42\xe8\x75\x6a\x1d\x34\xe0\xbe\x85\x56\xae\xf5\xb2\x50\x89\x3d\xca\x86\x1d\x4f\xcf\x13\x93\x20\x4d\x6d\x7f\x17\x81\x93\x22\x42\x5f\xfc\xe3\x28\x00\xee\xf1\x33\x82\x5b\x41\x3a\x20\x6a\x69\x98\x9f\xc8\xcd\x1f\x41\x32\xa9\x5b\x55\x0b\x96\x70\x18\x0f\x86\x36\x9f\x71\x23\x09\x25\xc3\x6b\x08\xe5\x31\x43\x1f\x9a\x0f\x5b\xf1\x99\x69\x33\x45\x3c\x7c\x70\xaf\xc3\x3e\xa8\xab\x74\xf5\xb8\xb0\x4e\x1c\xc3\xf4\x53\x77\xe6\x6a\x2f\x55\x1b\xaa\x6a\x61\x56\x48\x77\x75\xab\x18\x77\x47\xa3\x60\x86\xf6\x47\x53\xf6\xa5\xf9\x8c\xe2\xa8\x8b\x88\xc4\xd4\x2f\x9e\xb6\xf2\xb7\xfd\xbc\x19\xc5\x69\xdf\xdb\x2a\xa0\xb6\x78\x9f\x84\x3a\xaf\x10\xc7\x7c\xcf\x7c\x93\x39\xff\x92\x6b\x80\x0f\xf2\x50\xf0\x45\x95\xf5\x34\x19\xa2\x9e\xa6\xd6\xe2\x20\x5e\xb3\xe9\xee\x30\x68\x6e\x53\x8a\xfd\x90\x93\x9e\x15\x67\x0b\xac\x4e\x58\x0a\xa4\xa6\xa9\x2c\xf3\x00\xe9\x00\x1d\x4d\x8c\xc1\xf0\x2e\xb5\xe7\xd5\x26\x94\x51\xac\x5b\x3b\x96\x58\x55\x61\x82\x44\xb6\x39\x3b\x7d\x7a\x9b\x02\xa8\x53\x26\xf3\x96\xb2\xd0\x1b\x95\xe3\xf9\xc7\xd8\xbc\xaa\xd8\x1d\x6e\xf7\x3b\xdc\xd0\xbb\x2c\x6b\x89\xc7\xbb\x2e\x2e\xaa\xc3\x0a\x77\xdb\x8f\x00\x0b\xea\x45\xcc\xf7\x2d\x78\x53\x26\x46\xeb\x53\xb5\xb9\x1f\xab\x4e\x4c\x1b\x86\xb8\x59\x1e\x5a\xe8\xda\x6f\x4e\x44\xdd\x40\xfa\x50\x11\xf7\xa4\xda\xa0\xb3\x45\x31\xc9\x45\x0e\xd1\x6b\xd6\xbe\xb8\xd7\x6b\xd6\x92\xb0\x41\x9e\xad\xda\xd4\xe1\x67\x3c\x90\xce\x03\xa4\xce\xb2\xb6\x87\x53\xa6\x00\xbf\x4b\x69\x8d\xee\x26\xd4\xff\xc2\xbd\x43\x21\x64\x4e\x6b\x91\x63\xf0\xa3\xba\xef\x33\x82\x38\x5d\xcb\x92\x35\xbb\x33\x28\xae\x5e\x8d\x28\x8e\x17\x96\x1c\x12\xe5\x47\xe6\xc3\xf2\xf8\xd0\x66\x90\xec\x3b\xc1\x86\x2a\x17\xc8\x38\x72\x38\xe9\x77\x02\x03\x10\x46\x1b\xaa\x5e\xcb\xa5\xd3\x71\x6e\x8b\xc2\xf6\x67\x58\x5a\x10\x1b\x96\x6a\x15\x90\xd8\xd4\xdd\x86\xe1\x90\xeb\x9b\x38\x18\x79\xa8\xf8\x21\x2a\x05\x39\x43\x8e\xdb\xd0\x88\xa5\x59\x45\xd9\x04\x3d\x19\xe1\xec\xca\x49\x23\x40\x7d\x71\xef\x62\xb7\x1c\x9a\x72\x36\x60\xfe\xef\xb9\xe2\x81\x0a\x66\xb9\x20\x0c\xa4\xda\x5b\x6e\x09\x10\xe1\xff\x46\x2f\x7b\xe9\xe0\x52\xd7\x94\xa5\x55\xd3\x93\x50\x84\xae\x95\xa7\x9b\x29\xd8\xc8\xc4\x69\xb5\x7f\x1e\x54\x02\xf1\x16\x91\x5a\xc5\x58\x58\xf9\x19\x8f\x7b\xe8\x61\x5e\x4e\x24\x19\x47\x5b\x51\xf8\x28\x72\xd2\xd8\xcf\xbe\xd2\x2d\xec\xd8\x54\x2b\xd2\x6c\x78\x7e\xbb\xb1\xb8\xb3\xd3\x99\x46\x72\x01\x35\x72\xa2\x4d\x20\xba\x88\xcb\x9e\x64\x31\x1e\x1b\xe6\x73\xce\x73\x6d\x4a\xf1\x23\xd3\xb7\xce\x50\x48\x45\x27\xdd\xa0\x46\x44\xfa\xed\x28\x44\x32\x6f\x4f\x49\x9e\xe7\x5e\xad\x32\x55\x85\xb4\x54\xb6\x3a\x17\x75\xbe\xfc\x65\x59\x25\xa5\xef\xa1\xc6\xd0\xa4\x3b\x75\x13\x09\x81\xf8\x13\x45\xc1\x40\xf1\x26\x1a\x4e\xf2\xf7\xd8\x14\x50\x31\xb9\x4d\xec\xca\x8e\x8b\xe8\x85\x2a\xe1\xf2\x6a\xa4\xc9\x7f\xe8\x6a\xe1\x5a\x1a\x0e\xb1\xcf\xc5\x96\xca\x15\x34\x20\xee\xd5\x0b\x5c\xcf\x72\xef\xb4\x18\x57\xeb\xea\x9a\xc4\x1a\x3e\xe5\xad\xee\x55\x53\xde\xa7\xb8\x1d\xea\xd4\xa6\x9f\x70\x31\x35\x6a\x7b\x27\xf0\x4b\x58\xb2\x77\xb9\x49\x8d\x80\xf6\x11\xf4\x39\x31\xb0\x1e\x85\xa7\x85\x37\xd7\x0a\xfe\x1f\xe7\x31\xdf\x81\x11\xf9\xaf\x65\xef\x14\xc5\x1b\xf2\x75\xbc\x0e\x63\x08\xf9\xcd\x28\x98\x50\x9c\x60\xce\xf2\xbb\xae\x38\x82\x38\x45\xb0\x00\x88\x98\x1e\x73\x9a\xac\xc8\x15\x8f\x90\x82\x40\x6e\x93\x99\x80\xa8\xbc\xef\xbe\x17\xbb\xee\xad\x1a\x2e\xa9\x6d\xfb\x82\xfb\x47\x87\x6c\x81\xd0\xdb\x96\x63\x0f\x17\x1d\x66\xa9\xdd\x98\x0d\x0b\xd0\x9e\x79\xb2\x5d\x38\x55\xb7\xb5\xa8\xfe\x5e\x92\xc3\x29\x37\xa5\x92\x2c\x47\x48\x80\x76\xcc\x3d\x5a\x8a\xce\x4d\xd9\xcc\x9c\x60\x04\xf6\xd5\x9e\xad\xd2\x0d\x1f\x77\xc1\xe3\x00\x45\xf0\xb9\xf9\x10\x97\x3c\x85\xfa\x0e\x22\xf3\xd9\xf9\x36\xb0\xc6\xba\x49\x51\xaa\xd1\x82\xa5\xbb\x6b\x5c\xf5\x8d\x88\xac\x26\xa7\xa1\x6d\x52\x58\x93\xf7\x86\x36\x2f\x6a\x4b\xf1\x5d\xae\x12\x8b\x41\x07\x1a\xe6\x0f\xcd\x07\x6c\xdc\x20\x2b\xcb\x24\xb6\xcb\x33\x94\xd7\x5d\x25\xc7\x37\xa9\x0f\xa9\xf7\x44\x73\x69\x5b\xce\xac\xaf\x0e\x89\x79\x20\xa6\xa3\x3a\x09\x7a\xcd\xa5\x49\x2e\x25\x75\xdc\xc1\x15\xd2\x7f\xba\xd2\x46\x93\xca\xf2\x81\x49\xe3\xd7\xb6\x11\xbb\x3e\x27\x62\x57\x9b\x09\xf1\x4b\x5d\xb3\xb2\x62\x7b\x3e\x2c\x43\xa6\x0d\x2c\xbf\x1c\x4f\x9f\x65\x5a\xe6\x72\x9c\x1a\x2f\x85\xaf\x46\x4c\x1d\x2f\xd5\x71\x9d\xd8\x09\x63\x93\xda\x64\x57\xe8\x87\xbc\xef\x5e\x88\xc0\xeb\xdc\x96\xa2\x50\x3b\x37\x52\xd0\x22\x9b\x73\xb1\x1a\xbd\x4e\x5d\x77\xfe\x35\xd6\x11\xf9\x54\x03\xd4\x54\x85\x2e\xe2\xc5\xe5\xfe\x48\x29\x97\x81\xfd\xfd\x19\xb9\xc0\x8d\x4d\x5e\xa6\x36\x2f\x86\xf1\x58\xa0\x72\xd8\x5c\x6e\xd1\x46\x73\x8b\x92\x93\x43\x07\x9f\x9f\xe1\xee\x0b\x36\x6e\x7c\xee\xd1\x79\xca\x34\xe7\x36\x43\x55\x2b\x89\x85\x20\x88\x00\xe7\x87\x78\xd1\x72\xd2\x18\x1b\x0b\x87\xba\xe3\xd8\xf6\x04\xec\xe4\xe1\x54\xc1\x50\xbf\xa1\xca\xb7\x6f\x5f\x77\x43\x10\x19\x9e\x76\xe1\x23\x9c\xf7\x65\xc9\xd2\xd2\x58\x30\xbf\xb9\xd7\xa6\xdb\xe6\x18\x10\xbe\x69\xa7\x44\x95\x10\x36\xff\x46\x9b\xd7\x5a\x3c\x1a\x4f\x52\x27\x6e\x16\x4c\x22\x91\x77\xca\x31\x41\x38\x5c\xe7\x3b\x76\xb1\x72\x01\x57\x21\x2c\xcd\xb7\x5d\x8a\x82\x2b\x3b\x47\x84\x87\x1d\xa8\xc9\xc8\x3f\x60\x20\xc8\x02\x1a\x91\xa1\xfa\x51\x12\xee\x71\x2d\x9c\x97\x7c\xa8\xfa\x40\x53\xff\xb8\x28\xe2\x4c\x5e\x4d\x9b\xc0\xff\xf6\xdd\xfd\xf0\x52\x17\x48\xbe\x4e\xcd\xd7\xc5\x5d\x85\x9c\xb0\xe8\x5f\x6e\x4d\x69\x67\x6a\x34\x85\xc0\x88\xba\x45\x0d\xf8\x59\x5a\x58\x72\xbb\x42\xbd\xc8\xb6\x47\xf9\x24\x35\xa6\xdd\x53\xdc\xe9\x66\x8d\xc2\x2d\xdd\xd5\x20\x01\x43\x40\x28\x4a\xd1\x35\xad\x53\x37\x83\xb0\x54\x4b\x1e\xa4\xea\x09\x4f\x92\x75\x43\x3c\x32\xf9\x06\x4b\x76\xff\x00\x7b\xa1\x9c\x10\x23\x39\x89\x4b\x9b\x9b\x9e\x0c\x00\x64\xd4\x70\x6b\x92\xe3\x68\x3b\x97\xe7\x2b\xdd\x61\xb6\xde\x71\x78\x27\x25\x77\xb8\xf7\x20\x27\x04\x91\x5d\x45\x12\x76\xd8\xb7\xad\x00\xb6\x57\x18\xea\x63\x14\x06\x8d\xec\x63\xee\xf6\xb5\x53\x15\x40\x60\xb3\xf3\xa4\x6b\x79\x72\x1a\x6c\x27\x6f\xb8\xa9\xe2\x31\x25\x5e\xbd\xe0\x8f\xa3\x40\x2f\xbc\xce\x96\x40\xd2\x55\x15\x3b\x3d\xac\x58\xea\xad\xe7\x2e\x52\x25\x81\xdc\xa3\xd2\xe0\xba\x5a\xe4\x80\xa2\x39\x4e\x59\xa3\x93\x60\x89\x13\xdb\x77\x59\xa3\x5f\xeb\xaa\x2b\x95\x13\x2a\x7a\x57\x31\x6a\x3f\x7b\xb5\x53\x17\x91\x23\x8b\x41\xd2\x8d\x4d\x07\x71\x6a\x67\x49\xeb\xf8\x73\xbc\x65\x84\x24\xff\x47\x14\x0a\x5d\xff\x94\x45\xae\x1a\x23\xde\x21\x44\x1d\xe0\x84\x31\xa1\xe7\x58\xae\xa7\x59\x0b\xdf\xbf\xe8\x48\xc0\x73\xd5\x83\xc5\xaf\x5f\x8b\x02\x36\xf2\x1e\x52\x57\x5f\x7c\xf5\x01\xc5\x55\xcc\x6d\x24\x14\x4d\x31\xda\x83\x7b\xbb\x66\x2d\x8b\xfb\x7e\x6e\xa0\x0f\x74\x9a\x7a\x42\xad\x34\xd0\x49\x3a\x4e\xac\x29\x8c\x6c\xa2\xd8\x36\x8e\x13\x16\xe3\x38\xed\x54\xa9\xb5\x62\xe8\xab\xba\xfb\x6c\x7d\xcd\x50\xa9\xa3\x6e\xdc\xa8\x17\x99\xbb\x20\xd4\x18\x6e\x93\x34\xfd\xc3\x0d\x23\xd4\x03\x07\x94\x3e\xc2\xad\x64\xa9\xad\xca\x49\x03\xb9\xbf\x7f\xb1\x6b\x92\xd8\xa6\x04\xd0\x54\xf7\x8f\xc0\xd5\xf8\xfb\x2d\x72\x1d\x2f\x75\x73\xdb\x33\x49\xd2\xa1\x68\xe8\x5b\x51\xa8\xdc\x7c\x8b\x35\x3e\xed\xc0\xa4\x12\x66\x23\xa8\x97\x62\x87\x9c\x90\x9c\xe1\x5a\x5c\x3a\xe8\x8c\x1b\xee\xac\xc9\x26\xc7\x6d\xaf\xa1\x1a\x46\x71\x3a\xf1\xfd\x38\xac\x37\xcf\xce\xfb\x80\xf4\x89\xa7\x36\xc3\x83\x3b\xdd\xb6\x2b\x96\x79\x2c\xd5\x69\xac\x5c\xa8\x9f\x61\x14\x4a\x25\x00\x5b\xd4\xc7\x53\xf2\xef\x3d\x4b\x7d\xe4\xe5\x24\x2b\x4b\xed\xd4\x7a\x05\x6d\x5f\x79\x38\x42\x53\x73\x25\x17\xad\x3b\x92\x1b\x90\xe6\x86\xf6\x39\xb5\x28\xbc\x92\x4f\xe2\x32\xa9\xf6\xcc\x00\x4e\xdf\xb1\x19\xea\xca\x3b\xe6\xb7\xcf\x90\xc3\x4b\x3f\xdf\x35\xa2\x6e\xab\x95\xf1\xea\xf3\x5a\x18\xf7\x9d\x65\x3b\xb2\xa5\x13\xe6\xf1\x4e\x10\x42\x9a\x97\x13\xdf\x83\x56\xbb\x9a\x0e\x75\x65\xeb\xda\xbc\xe4\x56\x93\xad\xa7\x65\xb6\x2e\xee\x6a\x8a\xb8\xef\x90\x31\x55\x78\x0c\x45\x36\xb2\x65\x3c\xb2\xc5\x9e\x80\x05\x39\x8d\x67\x0d\xf0\xe7\x09\xae\x99\x1c\xe5\x4c\xfb\xf6\x94\x1d\xf6\x89\xad\xfd\x94\x7b\x6f\x88\x4e\x20\xc1\x2d\x7e\xb9\xd3\x60\x88\x7e\xb5\xb5\x24\x55\x8c\x4d\x2e\xb2\xbc\xde\x05\x93\x9c\x2f\xb7\x4f\x80\xc3\xd5\xb8\xcb\xab\xab\xc7\xad\x22\xdb\x94\x9e\xb6\x9c\x70\x9c\x5d\x94\x0e\xa5\x8b\x35\xfb\x3c\xeb\xda\x00\xe9\xeb\x8d\x94\xf4\x35\xff\xdc\x93\x70\x00\xd4\xbd\x28\xd8\xf4\x06\x09\x6e\x33\xca\x26\xa9\x07\x0e\x0b\x65\x89\xbd\xec\xb8\x08\x32\x33\x4f\xb0\x72\x93\x8f\x6c\x5e\xec\x21\x54\xdd\xa9\x69\x95\xd7\x6b\x06\x1d\xe0\xbb\xbf\xef\x62\x27\x35\xe6\x71\xdf\x87\xfc\xfb\x3b\xc8\xe4\x3d\x74\x24\xa4\xb5\x27\x29\x45\xfd\x7d\xa6\x60\x9e\xa0\xc6\xe3\x28\x4e\xb3\xbc\x26\xfd\x1d\x91\x91\xe4\xe7\x6d\x82\xe1\xe3\xdc\xf6\x63\xdf\xe1\x17\x04\x76\x44\x02\xd5\xe7\x68\x21\xe9\xe5\xa6\xb7\x2a\xb0\x0e\x51\x58\x73\xf3\x40\xd5\xd6\x28\xb3\xcf\xab\x08\x23\x36\x6c\x3c\xe3\x3e\xaa\x50\x5c\xe2\x97\xaf\xd9\xdc\x0c\xac\x34\xc3\xb4\x63\xda\xf1\xea\x0f\xe2\xb3\x81\x3f\x3c\x46\x59\xec\x20\xee\x5b\xc9\x67\x3c\x0a\x97\x79\xf5\xdb\x97\xa4\x2f\x7f\xb9\x5b\x8c\xb3\x55\xb7\x66\x2e\x04\x65\xc4\xe0\x61\x76\x2e\x0c\x82\xa2\x97\xc7\xcb\x2a\xba\x4c\xd5\x46\x05\x8c\xdc\x8a\xc8\x77\xe6\xb4\x47\x81\x24\xd9\x24\x2e\x9c\xd2\x63\x27\xb0\x1d\xce\xb3\x7d\xd4\x79\x7a\x5d\xfd\xf8\xd5\xd8\x76\x1c\xf0\xd2\x13\x6d\xab\x4f\xaa\xe1\x8c\x62\x03\xfa\xb9\x19\x19\xc6\x3f\xb2\x0c\xad\xaa\x11\x2b\x03\xe7\x95\x4c\x42\x40\x2c\xee\x18\xfd\x72\x4c\x40\x80\x41\x66\x92\x59\x0a\xe7\x21\xde\x2f\xb2\x7f\x9b\xa1\x82\x07\xd6\x8e\x7c\x86\x84\xb9\x27\xa5\x19\x92\x84\xd6\x59\xcc\x3e\x95\xd2\x0e\x0b\xd2\x24\x2d\xca\x8d\xc4\xf9\xa6\x93\x82\x78\xf5\x5b\x72\x4c\x0a\xb1\xb9\x1d\x67\x79\xf9\xb8\x7b\xb2\xa8\xb5\x8b\x22\x18\x1a\x24\x3b\xe6\x69\xe9\xfa\x1f\xdd\x7c\xc0\x2c\xbc\xc7\x34\x7b\x01\x6d\xa8\x47\x7e\xa0\xdb\x5d\x26\x24\x15\xdb\x3f\x3c\xbc\x49\xad\x88\xb7\x5c\x27\x0e\xf3\x6f\xc7\x26\x95\xc6\xaf\x20\x0c\x02\xc7\x16\xae\xea\x0a\x90\x0d\x1d\x2b\xdb\xf7\x62\x78\xf8\x3a\xa4\xa5\x18\xc7\x67\x18\x5f\x70\x3a\x90\x44\xfe\xd6\x2f\xad\xfe\xad\x5f\x12\xeb\x49\xff\x7c\x5e\xd4\xd6\xd1\x07\x64\xd6\x78\x2d\x0a\xcc\x08\x93\xf7\x86\xb1\x33\xf8\x98\x09\xde\xe6\xe8\x3f\xa0\xcf\x7f\x95\x30\x3e\x1f\xf8\x81\x3d\x30\x45\x86\x36\xaa\x77\x22\x47\x4a\x8c\x38\x1e\x3a\xd0\x00\x0d\xcc\x6d\xea\x90\xea\x67\x03\xde\x7b\xae\x13\xa9\xeb\x7a\x1b\x35\x70\x25\x31\x63\x37\xfe\xbd\x2c\x5c\x90\x88\x6b\x41\xb6\xbe\xd4\x5d\x4d\xb3\xf5\xd4\xf9\x87\xe9\x8e\x4a\x61\xcd\x71\x2e\x62\x35\xf6\x8c\x03\x07\x0e\x76\x8b\x61\x9c\xeb\x0a\xe6\x5d\xd4\x83\x81\xc1\xa9\xed\x70\xce\x03\x07\xaa\xdd\xe9\x19\xf7\x11\x44\xa2\xff\x0a\x79\x01\x86\xfc\xd5\x28\xc0\x9f\x77\xce\xd3\x00\xbc\x8e\x54\xc2\xab\x71\x1e\xf6\xd2\xa6\x6e\x68\x89\x27\x8a\xeb\xee\x60\xe7\xfd\x5f\xdc\x3a\x8f\x52\xec\xd1\x29\x8b\x83\xdc\x99\x86\x3e\xf9\x5b\x2e\x8d\xd1\xbe\xa2\x1b\xca\x88\x2c\xef\x60\x28\x23\xd8\x7f\x08\x8d\x4d\xc0\x41\x5e\xa7\x51\x71\x09\x69\x0c\x3b\x6c\xaa\xe0\xaa\x9b\x2f\x22\x26\x4d\x73\xb2\x6f\x57\x62\x93\x96\xc9\x06\x62\x53\x31\x96\x24\x7d\xcc\x37\x6a\x6b\x7e\x95\x16\xf7\x77\x33\x25\x1d\x25\x6a\xf4\x1d\xd1\x38\x51\x3c\x44\x27\xfc\xff\xb5\x50\xdc\x3d\x08\x25\xb4\xbb\x47\xaa\x31\x7a\xf5\xb4\x94\xcc\x1d\xd2\xea\x32\xce\x6d\x15\xcb\xb8\x61\x84\x8d\xee\x4c\x44\xbb\xde\x19\x8a\x12\xfb\x71\x31\xce\x0a\x91\xfa\x90\xc2\x27\x15\x5e\x2f\x90\x46\x41\x12\x2f\xdb\xdc\x24\xb3\x4c\xa0\x75\x6f\xde\xe7\x02\x5e\x08\xe6\x3c\xeb\x47\xdf\x6e\xd0\x61\x16\x17\xbb\x7d\x3b\x72\x9e\x0e\xa6\x0c\xbe\x83\x7e\xab\x23\xbf\xb5\x67\x38\xcf\x13\x01\x2a\x4c\x77\xc5\xa2\x52\x9f\x0f\xbd\x6c\x2d\xfe\xb4\x24\x55\xb9\x4d\x62\xbb\x26\x44\x62\x65\x66\xd4\x78\x13\x7f\xb5\x99\xc3\xd8\x7e\x5c\xc5\xd1\x7f\xeb\x97\x6c\x62\x7b\x65\x9e\xa5\xa2\xc9\xa4\x71\x32\xc5\xcc\x7e\xa9\x70\x61\x72\x2c\xf2\xa0\x58\x5f\xde\x22\x9c\xc6\x87\xa4\xcc\xf3\x6d\xb2\x03\x4b\xe2\x55\xfb\x18\xa9\x4f\x9c\x8e\xb6\x35\xce\xc8\xc0\xb9\xe3\x3d\x1a\xfe\x60\x4a\xe4\xfd\x0b\x60\xed\xa8\xea\x94\xb7\xae\xf9\xd1\x9f\xbb\x56\x05\xe2\x3d\xc1\xcb\x60\x41\xbe\xca\xb5\xd8\x33\x00\xeb\xeb\x48\x20\x79\x41\x60\x1d\x75\xd9\x0b\x55\xc2\x7e\xbf\xd8\x1d\x70\xbd\x77\xa6\xe1\xed\x39\x1a\xc9\xd6\xd6\x34\xe8\x86\xcc\x6c\xd2\x4a\xfd\x18\xca\x14\x58\x2b\xbe\x80\x7a\x22\x46\xf9\xdc\x26\x83\x46\x67\xe6\x6b\xbb\x9c\x89\xfb\xd0\x19\xd4\xd9\xe1\x7a\x11\x3a\x23\x18\xfb\x94\x4f\xd2\x87\xab\xdf\x46\x96\xfd\x3b\x08\xfc\x50\xf1\x38\xe9\xe0\x56\xc8\xcb\x40\xa8\xd2\xd6\x5a\xc7\xcb\x55\xbd\x11\x51\xd3\xef\x77\x30\xce\x00\xae\xde\x81\x8b\xf5\x26\xdc\x2f\x2a\xa3\xe6\x5d\xf7\x5e\xf1\xa1\x53\x8d\xa8\xfe\xeb\x87\xbb\xcb\xd9\xc4\x69\x62\x7d\xfd\xb0\xa4\x61\x57\x59\x41\xf0\xea\x03\xcb\x77\xcb\x99\x29\x47\x56\xb2\x18\x44\x51\xb2\xda\xc9\x89\x4f\x8e\xb2\x5e\x6f\x32\x36\x42\x8c\xf5\xd6\x3f\x07\x0e\xf8\x72\x98\xc7\x15\xd9\xb4\x9a\xce\x12\x15\xa1\xb1\x23\x57\x23\x27\x75\x82\x4d\x5c\x3e\x4c\xde\x06\xf7\x31\xc3\xc5\xe5\x8d\x11\x52\xe8\xdb\x00\x4a\xd1\x01\x7c\x4b\xbd\xe0\x9c\xa0\xc5\x11\xac\xe5\x5b\x47\x88\x74\x80\xbd\x57\x6b\x46\x21\xd6\x3f\x43\xab\xda\xe4\xab\xc5\x57\x8b\xaf\xe6\x5f\x85\x2d\x15\x76\x1b\xe1\x44\x22\xee\xfd\x37\x78\x20\xda\x86\x50\xac\x58\x99\xdb\xd5\x0e\x11\xf2\x61\x29\xa7\xfd\xae\x07\x29\x99\x98\xe5\x49\x61\xa5\x10\x04\xf5\x0a\x84\xd5\x72\xcc\xa5\x2a\x38\x3f\xef\x64\x0a\x05\x73\x44\x08\xd2\x73\x8b\x92\xa6\x3b\xd4\x40\x39\xea\x16\x72\x05\xca\x90\xa5\xc3\x24\x97\x7c\x18\x83\xf0\x8c\x93\xb8\x92\x63\x5a\x99\xfb\xb6\x67\xfa\xd6\xe9\xf8\x2c\xf9\xe4\xa5\xe3\xb5\x9b\x3e\x27\x82\xe1\x51\xd6\x07\x3f\x4a\x68\xd4\xec\x95\x18\xa3\x4b\x09\x93\xd4\x0c\x3a\x1b\x3d\x4b\xac\xc4\x75\x93\xe7\x26\x2d\x55\xa8\x54\xbc\xb6\xe7\x09\x99\xdb\xd9\xa4\x64\xc6\xf4\xe3\x24\x31\xbd\x99\x10\x6f\xa3\xc4\x2b\xb3\x84\xd4\xfc\xef\x44\x54\xa1\x31\x85\x97\x37\xc5\x56\x7d\x0a\xab\x9c\x9c\x04\x40\xba\x29\x0a\x5b\xd6\x4a\x17\xa7\x28\x7a\x3b\x45\x45\x5e\xd3\x5f\x8b\x8b\x0c\x19\x98\x9a\x47\xb9\xbb\x54\x8b\x29\xb2\xde\x98\xa4\x7d\x33\xb2\x69\x69\x92\x39\x56\x8f\x70\x5b\xb1\xdf\xe3\x42\x67\xe3\x2c\x66\x40\x0d\xf2\x89\xac\xf4\x76\xf4\x73\x6d\xa0\x06\x85\xbc\x6b\x81\x46\xdd\x6e\xdd\x77\xaa\x8d\x6e\x9b\x26\x6d\x6e\xed\x72\xb6\x4a\x40\x5a\x31\x90\x90\x93\x46\xe2\x76\xe8\xf9\x6e\x12\x8f\xc4\x1a\x1c\xb3\xea\x06\xf9\x37\xde\xf0\xeb\x41\xb6\x66\xf3\xe5\x49\x9c\x94\xb3\xbe\x94\xbd\xfa\x24\x22\x38\x50\x64\x10\xeb\x4a\xd7\xdc\xfd\xe8\xd6\x5d\x86\xaf\x94\x26\x7d\xcd\xb8\xd7\x8c\xf5\xe3\x6e\x4d\x64\x9f\x00\x3d\x2c\x93\xb0\x62\x4d\x0e\xb0\x4e\x90\x94\x24\x8b\x31\xf6\xd9\x1b\x19\x08\xd2\x76\xbc\xf6\xc2\x1b\xd8\xbb\xe5\x64\x1a\x12\xac\xe5\x4c\x9c\x8f\xc4\xc1\x82\xb5\xd0\x9a\x51\xf4\xc1\xbd\x07\xbb\x89\x35\xab\xec\x8a\x72\x8c\xe7\xf0\x31\xaf\xf5\x54\xc4\xa3\x71\x62\x77\xb9\xfd\x47\x5b\xcb\x54\xe2\xfd\x80\x53\x2e\x78\x3a\xab\x00\x96\xfb\x3a\x34\xd6\xc1\x27\x43\x5d\xcf\x39\x71\x7b\xae\x6a\x9b\xee\xe2\x37\x27\x56\x53\x62\xe1\x2f\xb3\x51\xc2\xb9\x48\xc5\x56\xec\xab\x65\x6e\xaa\x15\x43\xa4\x7e\x3b\xde\xae\xe4\x7d\xf7\x22\xe4\x78\xfa\x85\x98\x4d\x84\x07\x69\xfc\x9a\x59\x4e\x2c\xa2\x59\xf5\x5c\xec\x78\xad\xb4\xa3\x0d\x4c\x0e\xea\x9b\x0e\x7a\xe0\x62\x31\x92\xe7\x66\xa7\x65\x37\x07\x75\x95\xdd\x1e\x8a\xc1\xad\x7e\xd8\xcf\xcd\x7a\x27\x68\xa9\xfe\x8c\xbc\x22\x7e\xc6\x7d\x48\x33\x9e\x09\xf3\x0e\x8d\x57\x4f\xeb\xf6\x78\xb7\xa6\xfc\x6e\x75\xa5\xa6\x1c\x66\x89\x04\x6c\x28\x54\xbc\xc7\xc4\x96\xf7\x88\xae\x62\xe2\x22\xb1\x2e\x91\x52\x2b\xa0\xe0\x88\x7b\xcf\x6d\x4a\x48\x0d\x66\xe6\xb7\x0f\xa0\xc5\xc5\x17\xba\x69\x26\x2b\xa2\xda\x4b\xbf\x13\x11\xe9\xea\x1d\x82\xf9\x39\xeb\x6a\x77\xdb\x2a\xba\x4e\x7c\xe0\xcf\xa8\xd1\x14\xa7\x80\x11\xed\x0c\xa5\x82\x31\xf9\xa9\x9e\x73\x09\x03\xea\x1d\x10\xce\xc3\xe6\x04\x9f\x44\xf9\x3c\xb2\x0d\x6d\x79\xb4\x28\xa3\xda\x65\x9b\x16\xcb\x93\x7c\x40\xc2\x91\x27\x58\x32\xee\x04\x21\x34\x96\x44\xfa\x5b\x88\x24\xec\x30\x74\x97\x0c\xe9\x0a\x93\xc4\xd5\x77\x4a\x31\xc5\xdb\x9a\x2f\x06\xc0\x98\x56\x22\xc7\xf1\x58\x1f\x1b\xea\x41\x57\xf1\xd8\xe4\xa4\x0d\xd9\x35\xb4\x79\x86\x8d\xc1\xdb\x98\x2c\x06\xeb\x92\xed\xb7\x78\x70\x6f\xb7\x97\xe5\x39\x75\xfb\x55\x1a\xa5\xe3\x05\x4f\xcf\x90\x84\x41\xb1\x51\x94\x76\x54\x3c\xcc\xe2\xe0\x51\xd8\x31\xa4\x76\x85\xa4\xeb\x2d\x24\x89\x68\x82\x3d\xb4\x49\xa8\xf9\x73\x4c\x74\x42\x49\x02\x51\xf8\x4f\xa7\x54\xe2\x7c\x0b\x11\x26\xee\xf5\x88\x1b\x62\x72\x4c\xc4\xd2\x38\x2d\x4a\x6b\xfa\x8f\xd0\x06\xf3\xe8\x7c\x10\x58\x78\x2b\xa2\xd2\xdf\x65\xb7\x3f\x91\xfd\x90\xb2\x89\xfe\x80\x3c\x52\xde\x9b\x86\xc8\x63\x07\x6a\xba\x54\x39\x50\xaa\x02\x0c\x95\x89\xff\xf4\x92\x7f\xdc\x0f\x8a\x99\x96\x6d\x59\x6c\x74\x28\x08\x3b\x45\xbc\xf5\x56\xc9\xc0\x2c\xed\x09\xeb\x5e\x34\x1f\xdd\x94\x83\x73\xf3\x93\x6e\x65\x14\x35\x55\xd7\x61\x50\x6f\xbc\x07\x05\xc9\x63\x9b\xe7\xb1\xcd\x67\x42\x71\x4b\xa4\x72\x34\x68\x23\x81\xd8\x7f\x40\x3b\xd7\x30\x9b\x14\xb6\xd8\x49\x24\xc2\xbb\x18\x84\x72\x32\x25\xa4\x30\x4a\x7a\xcc\x13\x62\x2d\x38\x95\x41\xdd\xbe\x12\x1d\x5e\xea\x9a\x91\xcd\xe3\x9e\xcc\x1f\xfd\x5c\x4d\x47\x35\x74\x81\xc7\x79\xb6\xf2\xd5\x19\x6a\x62\x42\x61\x06\x95\xe2\x7f\x8b\xcd\x4c\x1d\x10\x83\x3f\x76\x6f\x35\xe8\xf5\xe8\xbf\xb2\x59\x22\x6b\x9e\x0e\x0d\xa4\xae\x96\x64\x6f\xff\x98\x88\x21\xd7\x48\xea\xb3\x89\xe6\x39\x70\xa0\x5b\x9a\xa2\x14\x15\x4c\x95\xa5\xa2\xee\x47\x3d\x09\xd7\xcb\x7b\x65\x52\x94\x71\xcf\x02\xdd\x8a\xb5\xe9\xf8\xb4\xa1\x72\xae\xd6\x56\x9d\x20\x92\x39\x25\xc4\xc2\xbb\x24\x6a\x5f\xac\xd9\xbc\x9f\x64\x6b\x05\x62\x21\x15\x26\x21\x91\x12\x22\x32\x63\xc9\x08\xad\x66\x68\x59\xaa\x9c\xcb\x83\x74\x33\x12\xb3\x6c\x4a\x24\x52\xaa\xba\xe2\x2e\x46\x4e\x7c\x08\x3a\x32\xaf\x58\xaf\xd4\x8c\xf5\x5e\x1c\xa0\xe5\xa4\xb1\xaf\x1f\xdc\xdb\xcd\x56\x56\xe2\x5e\x9c\x81\xd6\xe5\xc5\xad\xbe\x7e\x58\x8f\x29\x16\x5e\xce\xcd\x6b\x71\x82\x56\xa2\xba\x37\x86\x6e\x97\x88\x79\xe0\xd1\xfd\x8c\x44\x2d\x96\xed\x20\x4e\x0b\x91\xb6\x44\xe9\xeb\x0e\xb9\xe8\xff\x1e\x95\x77\x7f\x6f\x4a\x0a\x45\x77\xea\x2a\xbe\x63\x75\x21\xc5\xf0\x93\xc4\x40\x4e\x08\x02\x32\xb6\x79\x9c\xf5\x9d\x3e\x07\x1e\x10\x4a\x9d\x28\x7e\x48\xfc\x87\x93\x2b\x2c\x2b\xfa\x43\x37\xe5\x81\xa3\x42\x69\x18\x31\x57\x95\x07\x05\x3b\xf5\xa4\x5f\xcc\x55\x97\xab\x5e\x9d\xee\x1a\xd0\x63\x87\x47\xa0\x18\x03\x51\x82\x85\x2e\xad\x1c\xd3\x58\x58\x1d\x8f\x06\x72\x47\x58\x28\x4f\x72\xab\xfb\x64\xc4\xd6\xb8\xe3\xd5\x18\x13\x56\x11\xa5\xd5\x4f\xc9\xb1\x1f\xda\x63\x33\x49\xe2\x94\xc1\xc6\xef\xe2\x1b\xe5\x84\x04\x34\xd6\xe3\xd1\xd8\xa9\x01\xfb\xae\x05\x98\x66\x78\xf0\x90\x1c\x43\xaa\x78\xc9\xef\x90\x2b\xb1\xa3\xd5\xf8\xdc\xf3\xba\xcb\x5f\x11\x62\x7e\xc6\x3e\xa3\x4d\x18\xf4\xe2\xe2\x52\x37\xcd\xbe\xea\x82\x27\x74\x21\xae\x93\xcb\xc8\xb7\x22\xda\xe3\x6e\x10\x7c\xbe\x58\x37\xe3\xd9\x50\x76\x3e\x42\xa4\xfb\x8f\x10\x5c\xa8\xaa\x30\x95\xff\xce\xb6\x35\xc2\xcb\xdc\xa4\x45\x2f\x8f\xc7\xe2\x45\x8d\xa5\xee\x33\x72\x83\x82\x39\x2a\x0a\x04\xc7\x09\x3a\xde\x1b\x9a\xc9\xca\x8a\x9d\x08\x55\x54\xbb\x3a\x1d\xaf\x82\x76\x81\xf6\xec\xde\xa4\x28\x33\xd5\x5a\x92\xca\x80\x5b\x9b\x31\x29\x3a\xe8\x7d\x20\xb0\xbc\x4e\x19\x45\x6e\x07\x79\x36\x19\x63\x65\x90\x2a\x57\x44\x3e\x08\x17\x7c\x6f\xca\xae\x99\x64\x62\x7c\x45\x8f\x17\x4d\x34\xf1\xaf\xd6\xb4\xb6\x5b\xb4\x8e\x5d\x7b\xd1\x3d\x55\x4c\xf0\xfb\x0c\x01\x23\x93\x27\x04\xd1\x08\x06\xff\x98\x00\xa4\xd5\x52\x94\xd8\xdd\x41\x13\xfc\x73\x6c\xca\xf8\xb6\xb7\x30\x10\x90\x78\x6d\xb9\xaf\x56\x23\x43\xf6\x4f\x3a\x47\xda\xaa\x47\xc9\x1c\x5b\x48\xc5\x4a\x70\x6e\x1b\x47\xb9\x1d\xcb\xac\x41\xd9\x4b\x66\x8d\x9c\xf8\xd1\x2a\xe0\xc2\xea\x62\x50\xce\xb9\x4d\x9a\xbb\xb7\x03\x23\x4d\x0a\xb1\x10\xab\x03\x3a\x49\x5c\xb3\xb5\x2a\x5a\x53\x4a\xa5\x4e\x2c\xeb\xb2\xc5\xa3\xd1\x24\x45\x6e\x84\xd7\xfe\x26\x81\x7e\xdf\x6c\x6b\xd9\x0a\x2b\xa2\x3f\x17\x4a\xfd\x92\xbb\x23\x81\x06\x13\x02\x7b\xba\xe8\x75\x21\x6a\xda\x03\x12\xa9\x36\x4b\x9b\x04\x82\x85\x6e\x91\xc5\x09\xf9\x5f\x5d\x20\xff\xab\xa6\xc7\xe0\xfe\xc5\xee\xf2\xa4\x88\xd3\x2a\x8d\xd2\xc2\x5e\x5b\x81\x2a\x2c\x47\xe5\x30\x8f\x57\xca\x59\xaa\xeb\x44\x81\xb0\xf2\x39\x6b\x4e\x5e\x96\x76\x09\xa6\xdb\xe5\x36\xd7\xa4\x62\x98\xad\x6b\x40\xac\x83\x9d\xec\x63\x2e\x34\x74\xcd\x74\x53\xec\x0d\x4d\x9a\x8a\xb5\xbb\xaf\x7d\x84\x12\xe6\x59\x6a\xd1\x0e\xcc\x64\xc0\x8a\xd0\xb8\x31\x55\x04\x6c\x92\x00\xab\x3b\xb4\xa6\xb4\x50\x77\xf6\xe8\x48\xaf\xe4\x7e\x8e\x6a\x39\xd5\x65\xf4\x34\x68\x53\x70\x01\x03\xbe\xab\x3f\xf3\x96\xcf\x2f\xaa\x8c\xf1\x19\x77\x09\xdc\x68\x50\xb0\x78\x0d\x58\x5f\xc4\x85\xb8\xec\x2a\x9f\xa7\xb3\x18\xb4\x1a\x9e\xa0\x8f\x4e\xd2\x72\x03\x0c\x3e\xac\x35\x37\xb1\xa8\x6a\x90\x49\x5d\x95\x69\x67\xdf\xbe\x20\x1b\xe0\xc3\xd9\x1d\xf3\x64\xea\x79\x93\x56\x40\xd7\x6e\x29\x63\x71\x27\x40\x79\x7a\x07\x60\xfc\x72\x42\xf8\x89\xec\xcb\xab\x71\x6f\x35\x9e\x25\xec\xd3\x85\xfa\x8f\x87\x96\x8e\xeb\xb1\xe9\x71\x88\x32\x9c\xf3\x02\x38\x8b\x48\x68\x24\xbd\x93\x93\x3a\xab\x78\xb9\xe8\x6c\x07\xc0\xcb\x71\x6b\xc6\x96\x55\x3b\x98\x27\xf5\x7e\x9f\x1a\xc8\x22\x86\xa5\x5c\x84\x27\xb9\xd2\x9f\x18\x0d\x18\xb1\x40\x08\x15\x59\x4e\xa2\x70\xa5\x3b\x1c\x9a\xca\x77\xf4\xaa\x2f\x94\xb5\xa2\x45\xdd\xbe\x5b\x58\x53\x64\xaa\x26\x8b\x85\x56\x1c\x61\xe4\x84\x52\x83\xdc\x16\xbd\x09\xb8\x32\xbe\x90\x53\x5d\x10\x42\x4c\x81\xcd\xc8\x09\xeb\x9d\x47\xc1\x19\x74\x6d\xd2\x09\xdc\x4f\x04\x9e\xaa\x5f\xda\xc4\x89\x96\x43\xeb\xe0\x91\xc2\x8e\xc2\xbd\x28\x55\xaa\x25\x8a\x34\xe3\x71\x12\x3b\x75\x66\x6d\x95\x8a\x44\x8e\x9c\x34\xe0\xd3\x55\xc6\x3f\x16\xd1\x53\x44\xde\x97\x64\x87\x40\x3f\xed\xa7\xd3\x10\x21\x36\xf3\x98\x17\xf7\xbe\xd4\xed\x25\xd6\xa4\x36\x47\xe0\xea\x0b\xae\x07\xf7\xfa\x82\x2b\x47\x8f\xd6\xa4\x8f\xbb\x31\xa9\x91\xb0\x0b\x62\x51\xc1\x06\xce\x08\x39\xd6\xd5\xe9\xf6\xb5\x9f\xa0\x49\x07\xf7\x1e\xf4\x76\xfa\xee\xc2\x95\x1b\xce\x38\xcd\x3f\x74\x8f\x5f\x24\xef\xdd\x53\x56\x2e\x00\x75\x99\x5e\x8f\x82\xda\x1a\xe8\xc9\xc0\x93\xbe\xe7\x7a\x63\xd8\x80\x3f\xaa\xf5\x90\xb2\xf1\xc6\x9e\x6d\x3c\x7d\xef\xf4\x3f\xc5\xa5\xe1\x6a\x60\xfe\x21\xc7\x78\x6f\x68\x8f\x1f\xc7\xad\x11\xa1\x6e\xb1\x26\x39\x29\xdf\x85\xcb\xc4\xf0\xb9\x1d\x05\x55\x6d\x70\xc9\x4c\x5a\x0a\x14\x1f\x25\x44\x34\x23\xb0\xa9\x5f\x8b\x48\x0f\xf6\x83\x46\x75\x73\x71\xb1\xfb\xcd\x89\x9d\x08\x06\x13\xe0\xec\x1f\xb0\xa0\xfc\x0f\x48\x06\x79\x9c\x67\xcb\x66\x39\xd9\xd8\xe3\xee\x0c\x37\x00\xa1\x67\x35\x5d\x74\x37\x83\xc7\x7c\x0d\xf1\x1f\x1e\xa7\xf4\x80\xb0\x59\x5e\xa3\xa0\xfe\x9f\x33\x38\x58\x02\x56\xaf\x86\xf0\xe2\x5e\xd9\x84\xaf\x73\x4f\xda\x56\xa9\x91\xfa\x12\xa0\xc1\xf5\x13\xd6\xc6\xfb\x83\x88\xd0\x44\xd0\x52\xd3\x4e\x68\xd3\xc7\x6c\xd5\x26\x49\x36\x10\xf6\x89\x8b\x1d\xbf\xfa\xa4\x5b\x2f\xe4\x78\x9e\x9e\x75\x62\x5f\x35\x69\x5f\x40\x5a\x08\xb7\x21\xb1\x28\xc7\xd3\x2f\xd4\xc1\x10\x2f\xee\x7d\xae\xfb\xe2\xde\xa5\x67\xaa\x78\xde\x47\xe7\xbf\xfa\x8d\x20\xb4\x5c\x3d\x45\x94\x22\xc4\x79\x17\xe5\xf0\xdf\xc4\x93\xc3\x33\xf9\xd8\xd5\xf1\x80\x50\x16\x93\x62\xcc\xde\xef\xd7\x2d\x3c\x42\xb0\xf9\xd0\x7c\x10\x38\x3c\x1a\x05\xca\xc0\x53\x4f\xa1\x9c\x83\xfc\xfa\x5f\xa0\x33\x2a\x27\x53\x52\x11\xff\x33\x54\x05\xd5\xb9\xb6\x7a\x0b\xbe\xc7\xeb\x15\xe2\xae\x93\xa8\xd7\x17\x36\x03\x2e\xe3\x74\x0b\xa1\xa6\x3b\xce\xed\x8a\xcd\x73\x59\x54\xf1\x32\x04\x88\x22\x27\x04\xbf\xd1\xba\xb3\x2d\xe6\x08\x44\x7e\x9d\x72\x5a\x81\xad\xa9\xb8\x78\xf5\x7c\x30\xee\x51\x24\x53\xc4\x59\x33\xbe\x5b\x7a\xa1\x6b\x47\xcb\x59\x7f\xa3\x43\x7c\x75\xf8\x77\xca\x31\xd5\x95\xbf\xf1\xab\xdf\xe8\x84\x52\xd8\x67\xbc\xb6\x7c\xd6\x28\x7b\xfb\x22\xd7\x24\xdb\x50\x76\x31\xf6\x8b\x77\x71\x9f\x72\xd2\x00\x3b\xe8\x1f\x22\xe1\x37\x49\x31\x47\xfb\x2f\xa6\x03\xd6\xc3\x77\xa8\x6e\x0b\x8d\x59\x05\x4c\x91\x6a\x4b\xa7\x95\x67\x9e\xdb\xf1\x64\x39\x71\xe5\x25\xda\xb3\xff\x88\xb6\xc8\x3f\xa2\xd8\xc9\x81\xca\xd2\x01\xfb\x21\xbb\xc7\xaa\x26\x95\x61\x13\x5e\x8f\xd3\xd4\xe6\x85\x23\x2f\x7b\x94\x8a\x5f\x5a\x9b\x51\xf0\xc2\xa1\xee\x4a\x96\x4f\x46\x44\xe1\x02\x30\x57\xed\xfc\x6b\xf2\x2d\x59\xbe\xdb\x8d\x5d\xd5\x41\x74\x8f\xd1\x2f\x1a\x41\xc0\xf2\x68\xcd\x3d\xb7\xfa\x7d\x7f\xbc\x70\x48\x32\x90\x9b\x51\xc8\xcb\xb0\x13\xeb\xb4\x6b\x67\xd0\x25\xab\x1d\xea\x96\xde\xe2\xa0\xe1\x56\x8b\xed\xd1\x0b\xdd\xb1\x91\x31\xa5\xce\xc7\xe1\xd9\x9e\x27\x62\xf4\x7a\x9c\xee\xe9\x90\x17\x2d\x6d\x3e\xe7\xa6\xec\xfa\x25\x5b\xa1\x52\x2b\x3a\x5e\x0c\xf3\xa7\xdb\x34\x11\x83\xa0\xad\x50\x35\xa5\xe2\x1f\x51\x1d\xe6\xc8\x94\x0a\x63\xa5\x29\xed\xc8\xa6\x25\xd2\xb0\x2d\x14\x4b\xb6\x2e\x4e\xb7\x87\x02\xd5\x83\x30\x23\x84\x02\x3a\xe5\xdd\x0f\xa0\x12\xb2\x73\x9e\x95\x1a\x9b\xce\x7f\xfb\x16\xaa\x48\xaa\xc4\xb6\x82\x5e\xe7\xbf\xc2\xed\xca\x09\xc5\x96\x45\xb6\x16\xdb\xf2\x71\x32\xd2\xb8\x14\x85\xfe\xd4\x9b\x2c\xb5\x1e\x51\xc0\x77\x07\x23\x5f\xf1\xd6\xd5\x1b\x16\x2f\x10\x3c\x23\x95\xed\xad\x26\x14\x2a\xd5\x72\x07\x08\x27\x61\x5d\x80\xe5\xf3\x62\x54\x85\xdf\xa8\xae\x8b\x26\x8d\x6a\x7e\x54\x83\xcb\xcb\xd2\x06\x03\xcb\xcf\x5a\x6c\x7b\xbb\xeb\x36\x49\xe0\xc3\xda\xa1\x18\xe5\xa1\xcd\x50\x9b\x7a\xa8\xa1\x37\x53\xa5\x86\x7d\x6b\xaa\x29\x27\x99\x71\x0d\x5d\xa3\x2b\x41\xd0\xd4\x5b\x1f\x8f\x67\xc9\x56\xec\x22\x23\xe7\xce\xd1\xe5\xfe\x78\xea\x00\xcf\xd8\x7f\xdf\xa5\xc6\x51\x7f\xa3\x28\xb3\x71\x6c\x3a\x81\xa8\xfc\xa9\x9b\x13\x72\x4c\x25\x10\x93\xda\x51\x6c\x8a\x4e\x88\x8b\x20\x90\xa4\xe4\x82\x50\x15\x32\x71\xbf\x66\x47\x38\x0d\x4d\xf6\xd0\xce\xc9\xe3\x35\x93\xcc\xd5\x18\x69\x1d\x75\x3f\x79\xe4\x59\x60\x04\xa4\x30\xe1\x5e\x0e\x98\xe2\xb3\xae\xd7\xa0\x4a\x52\x2d\x4d\xaa\x38\xed\xe5\xd6\x14\xea\xc5\x8f\x56\x8c\xf0\x55\xe4\x84\xaa\x6c\x79\x66\xfa\xeb\x66\x63\x36\x30\x61\x4f\x61\xbc\xe0\x97\xcf\xf2\x42\x73\x76\xca\x4b\x55\x0b\x99\xff\xe7\xbb\x45\x96\x7b\x1e\x85\x62\x4c\xdd\xdc\x55\x10\xee\x53\x35\x0b\x94\x35\xef\x60\xac\x44\x9d\xe0\xc7\x78\x3a\x62\x6c\x60\xb6\xee\x34\x02\xaa\x97\xeb\xe3\xfd\x2a\x2c\xd0\x78\xbf\xc5\x56\x39\x31\x69\xbf\xe8\x99\xb1\xfd\x0f\x02\xae\xb6\x84\x82\x7d\xb7\xa2\xf3\xbd\x80\x61\xaa\x37\xb6\x7d\xe9\xfb\x6b\xdd\x91\x59\x81\xe3\xdb\x0b\xc1\x59\xc1\xd3\xa7\x5f\x6f\xa1\x2e\xbc\xd4\x5d\xce\x63\x69\x74\x20\xb8\x7b\x83\x3d\x6c\xde\x68\xe3\x50\x8d\x27\x62\x8d\x85\x25\xf8\x1a\xa1\x57\xae\xb5\x8a\xbb\x4f\x46\xe8\x09\x63\xae\x5e\x8d\x28\x05\x3f\x4b\xfd\xc0\x77\x69\xdb\x43\x42\x2d\x3d\x49\x59\x5e\xc9\x4f\xbc\x4d\xe1\xda\x09\xe9\xc8\xdb\x04\xc1\xfb\x1e\x06\x9d\x9c\x34\xba\x8d\xd5\xdd\xaf\xdb\xbc\x1c\xda\x78\xd4\x21\x73\x63\x09\x2e\xe4\x84\x4c\xb8\x72\x33\xb6\x85\xb5\x7d\x21\xe4\x62\x98\x7c\x07\xc3\x55\x4e\x28\x62\x59\xb5\xfd\x27\x3a\x5f\xfe\x32\x0b\x2f\xbe\x24\x75\xcd\xa7\x37\x21\x4d\x86\x25\x15\xe0\x94\xad\x8b\xd3\x90\x7a\xee\xda\xac\x9e\x17\xaa\x34\x5b\xc4\x80\x41\x9f\xcd\x4d\xbe\xbf\xf7\x97\x37\x3b\xfb\x17\xb7\x24\x94\x77\x6b\xf0\x7f\xf1\xd5\x79\xca\x2e\x9e\x06\x8e\xd6\x95\xca\x7e\xe1\x3f\x41\x59\x15\xd7\x02\xf9\x33\x75\xd7\x23\x00\xf1\x85\xe9\xb3\x44\xbb\xca\x7b\x43\x93\xf6\xe3\xc2\xee\x0e\x9b\x24\x84\x36\xb0\xc8\xcf\x6c\x52\x66\x0a\xc9\x5b\x91\x6d\xc3\x94\x93\x24\xc7\x2d\x82\xa2\x6c\x48\x1a\x7f\x3f\x01\xf6\x51\xbe\x8a\x84\xa4\xcb\x8d\x9e\x5a\xba\x03\xbf\x72\x9a\xc8\x64\xa7\x1b\x0d\xc5\x85\x43\xdd\xc2\x7e\x73\xe2\x14\xc7\x3d\x89\x4b\x4d\xbb\x18\xad\xe3\xd7\xb6\xff\xfe\xc3\xb6\x2f\x99\xa4\x2b\x49\x95\xbf\xe5\xea\x75\xab\x1a\x99\x2c\x98\xd9\x56\xa5\xec\x65\xd5\x82\x27\xa0\x26\xb4\x39\x7e\x1c\x05\xed\xdd\x1f\x4f\xb7\x63\x8a\x16\x17\xbb\xb9\x1d\xc4\xdb\x00\xb5\x6d\x21\x5b\xf3\xd7\xaa\xd8\xa6\xb7\x6a\x06\x16\x03\x16\x11\xc9\x0f\x08\xc7\xf9\x83\xb6\x2a\x42\x7f\x22\x9c\x4b\x44\x20\x1f\xba\xcf\xab\x72\x67\x75\xaf\xa8\x2c\x5f\x71\x23\x10\x71\xd2\xec\x3c\xd1\x79\xcb\xc4\xa4\xa5\x71\xd5\x4c\xb5\xb8\x27\x15\x81\xdf\xe0\x0e\x8a\x28\x51\x29\x27\xdb\xf7\x5d\xf2\xac\x67\x0b\x57\x02\x5c\xf2\xce\x64\x54\x6d\x9c\x52\x24\xf1\xbd\x69\xa0\x5e\xc1\x36\xc9\xbd\xb5\xb3\x4f\xcf\x13\x72\xf1\x82\x57\xa9\x2c\xca\x7c\xd2\x5b\xdd\x45\x2b\xc5\x2d\x8c\x3f\x44\x72\x00\xdf\x62\x40\x38\xb1\xbc\x85\x7b\xff\xd5\x53\xf8\x26\xd5\xe5\x77\x0b\x39\x2e\x44\x64\xdd\x15\x05\xf1\xc5\x10\xa9\x8d\xb3\x55\x5b\x8c\x6d\x5e\x64\x69\xe1\xbc\xb0\x80\x8f\xbb\x1c\xb9\x61\x2c\x5e\x62\xe4\x13\x11\xda\xa9\xcb\x89\x1d\x39\x5e\xc8\x22\x29\xcc\x53\x63\xba\x55\x48\xc7\xbe\x3a\xb6\x69\xe1\xf4\x45\x42\x14\xf2\x81\x7b\x64\x72\x1c\x3d\x53\xcf\x6f\xab\xc1\xf1\x0b\x9d\x30\xc1\xae\x44\xa4\x99\x79\xa5\x6d\x7f\x19\x99\x7c\x15\x34\x8e\x05\xc9\x2f\xff\x3d\x56\x13\x2c\x42\x97\xdd\x28\x56\x13\x9c\x00\xd8\x1a\xdb\x7c\xe2\x7e\x47\xa0\x66\xee\x66\x14\x76\xf6\x04\x55\x06\x7a\xaa\xb9\x8c\xa6\xf6\x47\x6e\x1e\xcb\x71\x4b\xff\xcb\xc5\xed\xb3\x01\x62\x28\xfa\xab\x48\xa3\x8f\x50\xc6\xf9\xd3\x29\xc1\xc0\x2f\xb4\x88\xfc\x39\x5b\xbc\x2c\x89\x53\x23\x85\x18\x45\x23\x50\xc1\x7f\x4a\x54\x9a\x7b\xbe\x3d\x1c\xa7\xbd\x64\xd2\xb7\xfd\xb9\xa0\xca\x30\xb7\x49\xd9\xf8\xa7\x78\x40\x3a\xb5\x43\x51\x5a\x74\x35\x10\xf8\x3d\x3e\x1f\xb0\x9a\xaf\xfc\xc7\xcb\xee\x61\x89\x76\x22\xdb\x49\x9f\x8a\x02\x9a\x7c\xdd\x9a\xd5\x59\x8a\x91\xa0\xaa\xa6\x05\xfe\x80\x69\x39\x43\x3e\xc5\x17\x88\x8c\xde\xcb\x26\x79\xb9\x27\x60\xc1\xae\xbb\xbf\xc7\xc3\xbe\xc3\x1b\x9a\xaa\xac\x21\xc5\xfe\xdf\x30\x55\xc4\xe1\x94\x86\x65\x67\xbe\x8e\x53\x0f\x40\x98\x7b\x78\x2d\x9a\xd7\x2b\x74\xb7\x48\xb2\xf5\x9d\x33\xc1\x8a\xfc\x36\x66\x12\x32\xbe\xf7\x49\xdd\x01\xc4\x76\x57\x87\xfd\xf5\x27\x5d\xb9\x0a\x7d\x5f\xd8\x8c\xe1\xea\x1f\xdd\x0c\x71\x5a\x31\x36\xa9\x37\x20\x57\x32\x5b\x67\x71\x91\xb8\x6c\x1e\x0f\x34\xae\x56\xef\xd9\x10\x3d\x43\xe2\xc8\xab\xe4\xfa\x6b\x38\x43\x9e\xb3\x67\xa2\x2f\x91\x18\x59\xd1\xcb\xe3\x91\x28\x88\x38\xa2\xb8\x28\x24\x00\xfd\xa3\x91\x76\xf0\x49\x79\xcb\x4d\x12\x2f\xa3\xe0\xe9\x5e\x7f\x16\x05\x7a\x01\xae\x7f\x86\x9e\xf4\x29\x5a\xb1\xaf\xb8\x6b\x44\x45\xf7\x93\xc6\x62\xf0\x15\x87\xf5\x5c\x1f\xda\x64\x54\xdd\x9a\xe3\xd0\x79\x0d\x36\x4f\x1b\x47\x25\x4b\x44\x4c\xf0\x4a\x55\x57\xd2\x43\xc8\x4d\x92\x64\x63\xcf\xd3\x66\x5b\x42\x39\xf6\x0d\xbf\x57\xac\x49\xb2\x49\x01\x34\xb3\xf0\xe1\xa3\xb0\x4d\x30\xcf\x24\xcd\xf2\x95\x2c\x59\x25\x82\xdc\x52\x14\xca\x52\x4b\xd3\xf0\x1a\xc7\xc3\x8d\x02\x4e\xdd\xde\xb2\xf4\x4e\x44\xfe\xa5\x77\xda\x34\xab\xb2\xd7\x4c\xbe\xaa\x32\x38\x28\x57\x82\x5c\x2d\x2a\x4e\x53\xc2\x23\x5d\xaf\x15\xb3\xd3\x7e\xf1\x85\x50\xbe\xbf\xce\x1a\xa1\xbf\x3b\xad\x0b\xe7\x05\x80\xe6\xbd\x29\x23\xac\x48\xa4\xe2\xf1\xf9\x80\x96\xbc\xca\xb8\xd1\x77\x91\xef\xa1\x20\xf8\xe4\x7c\xe7\x6b\xbf\x26\xfd\x48\xa0\xbb\x50\x67\xfa\x11\xde\x88\x17\xce\x3a\xb8\x24\x15\xb2\xd3\x54\x14\xb9\x88\x6d\x08\x9b\xc7\x1e\x97\x64\xa9\xeb\x2f\x75\xb9\x2f\x21\x1d\xf6\x18\xb0\x20\xaa\xff\xd0\x66\xa3\x62\xb1\x20\x3b\xed\xcc\x26\x3f\x99\x49\x52\xee\x26\x82\xd1\x7b\x0c\x4b\x78\x0f\x4f\x83\xb5\x08\x34\x34\x70\xdf\x87\x4b\xfd\x3e\x7e\x57\x55\x94\xaa\xc7\x04\x3a\x15\x54\xb5\x54\x8a\xb8\xa5\xe0\x54\x0c\x33\xed\x38\x7b\x90\xb6\x87\x62\x35\x9d\xa1\xfe\xe6\x42\x17\xa4\x87\x17\xf7\x0a\xaa\xe8\xa8\x1b\x5d\x72\xdc\x92\xf4\xbf\xd4\xcd\x6d\xdf\xda\x91\x1f\xe7\x68\xbf\x41\x06\x4c\x8e\x29\xd6\x1c\x64\x79\x9c\x95\x33\xa4\x5a\x7c\x31\xaa\xd9\x35\x7f\xfd\xb0\xaf\x7b\x04\x54\x4a\x9c\xf6\xbe\xfa\x44\x75\xa7\x18\x85\xc7\x51\x06\x11\x0d\x79\xf7\xf7\x22\x07\x3c\x25\x73\xcb\x1b\x30\x1e\xc1\x3c\xbf\x11\x91\x10\x00\xb4\x79\x35\xc5\x65\x77\x5b\x08\xef\x8b\xdc\xa8\x8b\xbc\x71\x7c\xbb\xae\x23\xe9\x6e\x14\x1b\xf0\x75\x22\xb7\xcd\x01\x28\xa0\x2e\x95\x6e\x14\x21\xce\xff\x3f\xd9\x09\x34\x37\xcb\x71\x5a\xac\x6e\xcc\x50\xbb\x52\x9d\x06\x3d\x65\xd6\xbb\x47\x7e\x4e\xf5\x33\x8b\x87\xfc\x92\x07\x6a\x31\x6a\xab\xf1\x32\x5f\xdc\xdb\xb5\xc5\x58\x41\x6f\x6a\x5a\x5c\x3d\x2d\xf5\x29\xe6\x82\xe3\x72\x0c\x6c\x3b\x1e\x1e\x44\xb7\x94\xf6\xe3\x9e\x2a\xc6\xe5\x29\x72\xd4\x66\xae\x75\x8e\x94\x40\xc6\x5a\x9b\x87\x33\x55\x60\xf2\xd8\x2d\xd0\xb3\x54\x28\xd8\xb9\x59\x43\xb6\x86\x14\x7c\xe7\x7c\x0d\xff\xfa\xac\x8f\x1b\xcc\x78\x9c\x67\xe3\x1c\xde\x99\x2f\x7a\xeb\x16\xf7\xe8\x50\x2d\x81\x03\x10\xe0\x33\xb3\x9b\x64\x6d\x5f\x9a\xd2\x16\x23\x9b\x62\x87\xc0\xf3\x03\x20\xdf\x6b\x23\x79\x58\x53\x50\x67\x1f\x9a\x7c\x39\xcb\x01\xed\xc3\x9e\x7d\x0b\x4b\x88\x56\x30\x3b\xde\x1c\xff\x04\xbd\xb4\x51\x39\xea\x90\xe3\x28\xb6\x52\x39\x6e\x43\x65\x97\x93\x7c\x94\xc5\x89\x3c\x49\x2d\xca\x75\xbc\x4a\xc9\xc5\x29\x71\x60\x6c\xdf\xa8\x29\x20\x36\xa3\xef\x73\x5f\xfa\xfb\x3e\x1d\x18\xc5\xe9\xa4\xf4\x00\x48\xac\x92\xb7\x23\xaa\xd3\xdf\x26\x32\x91\xb2\xc2\x51\x67\xc3\xa5\x9e\x99\x92\x4d\xda\x3f\x26\x18\x0e\x2a\x62\xb2\x38\x37\x72\xa1\x85\x43\xdd\x15\x81\xdb\x7b\xa5\xc7\xea\xfa\x54\xe9\x71\xfb\xee\x7b\xe0\x40\xb7\x98\xe4\x79\x36\x49\x83\xbc\x8b\xb2\x99\x42\xec\xd7\xc4\x6a\xbf\xfc\xb2\xfa\xd6\x8a\x52\x29\x21\x7f\xd4\x1e\xf3\xad\x06\xd2\x70\xff\x62\x77\x7d\x98\xd9\x35\xa9\xf9\xa0\x2a\x72\xdb\xd1\x6f\xe5\xb8\x56\x93\xcf\x2d\x10\x00\xd8\x4b\xc0\xf2\xd0\x93\xe8\x59\x36\xc9\x49\x5c\x48\xa3\x10\x6f\xe9\xce\xb8\x1b\xd0\x4e\xcd\xa3\x44\x32\xed\x3f\x5d\x8d\x5f\x1f\x26\xd7\x7c\x5b\x82\x3b\xc2\x05\xae\xe8\x7d\xcf\xcd\x63\x6e\x8d\x78\xd7\xb5\x7d\xfb\xa4\xba\x28\xfa\x3a\x0a\x62\x44\x05\x44\xbe\x8b\x05\xb3\x90\x91\xaa\x5e\xa1\x7b\xe4\xda\x82\x24\xc7\x1c\x69\xdb\xaa\x00\x65\xb5\x36\x6a\x21\x19\x83\x0a\xa4\x83\xcb\x5c\x93\xdf\x74\x8b\x05\xfe\xe4\x7a\xa3\x1c\x54\xa5\x0d\xcb\xb9\x2d\x87\xb9\x4d\x49\x30\x45\xd4\x10\x55\x81\xa4\xc5\xe4\x7c\xec\xb4\xb0\xdd\xa7\x94\xbf\x1f\xf2\xeb\x1d\x9b\x61\xb7\x19\x66\x79\x9e\xe5\xa4\x5c\x0b\xe2\x97\x82\x82\x7c\xbe\x38\xe9\xad\xfa\xd1\xe6\x7d\x2c\x16\x83\x77\xc5\xf6\x51\xfd\x37\x1c\x36\x9b\x68\xe5\x68\x0d\x4a\x61\xc6\xed\xc9\xa8\xb8\xff\x09\xc9\xb2\x24\xd6\x14\x92\xe7\x20\xe6\x16\x4b\x1c\x7c\x72\x6e\xb3\x66\xfa\x16\x2a\x7c\x92\x0a\x20\x04\xfd\x0b\xad\x22\x77\x36\xcd\x26\x03\x68\x26\xe0\x25\xa0\xb2\x25\xc7\xa4\xb8\xd6\x33\xa5\x29\xca\x3c\x1b\x0f\xe3\x1e\x4a\xab\x5e\x13\xaa\x1a\x29\x6a\x32\xa3\xd7\x5c\x4c\x1c\x80\x42\x4a\x7c\x98\x44\x52\x57\x96\x13\xf2\xba\x59\x36\xb9\x2b\x6d\x87\x96\x0a\xe9\xc8\xb0\x8b\x85\xdb\xe3\xc5\x05\x8e\x9a\xeb\x85\xcd\xd7\xe2\x9e\x2d\x76\x57\x73\x41\xd8\x61\xe4\x06\xfa\x04\xb6\x01\xcd\x7a\x67\x82\x85\xf8\x55\x8c\x65\x71\x07\xa0\x3c\xe3\xca\x94\x71\x63\xdc\x2d\x79\x93\xa4\x21\xfa\xf1\xca\x8a\xcd\x31\x9a\x44\xd0\x29\x0a\xb2\x00\x47\x1b\xc5\xa4\x03\x07\x0e\x76\x7b\xb9\xed\xc7\xe5\x7a\x96\x97\x43\xac\x08\xa2\xa0\x4d\xb6\x20\x4d\x67\xe3\x7d\xfb\x9c\x45\x1c\x7e\xc9\xcb\x31\x2c\xd6\xe4\x2a\xbc\xe3\x5e\x9c\xda\xfe\x2e\xf7\x52\x7c\x2d\xd6\x6b\x7c\x9e\x74\x03\x0c\x19\xf6\xec\x66\x10\x2a\xfb\x3b\x84\x2b\xc0\xd6\xa7\xf2\x75\xee\x55\x6b\x21\xd7\xbb\x22\x65\x79\x6f\x08\xd5\x7b\xdf\xe7\xf4\xd9\xfa\x29\xe6\xcd\xdd\x09\x7c\x42\x41\x7f\x01\x4c\xea\xde\xe7\xdc\x5f\x9c\xa7\x28\xe4\x8b\x9b\x94\x0b\x36\x30\x39\xd5\xee\x96\x8d\x63\x23\xbc\x4d\x95\x2f\x08\xcd\xae\xa3\x35\x2d\xdb\x95\x2c\xff\x8b\x14\xee\x5c\x74\x23\x47\xac\xd5\x88\x35\x22\xf1\x09\x5e\xed\x75\x0c\x0d\x0c\x20\xf4\x2f\x30\x80\x04\x2e\x84\xaa\xd3\xc7\xae\xe1\x85\xf9\x7a\x6a\x4a\xfe\x41\xc7\x1c\xd9\x14\x5f\xf5\xb7\xa3\xc0\x39\xb9\x3a\x25\x4b\xa5\x9b\x11\x79\x32\x7e\x3e\x75\x61\xa6\x87\x90\x7a\xac\xcf\x07\x28\x54\x69\xbb\xc1\xbd\x03\xf9\x62\x59\x31\x11\x00\x1f\x89\x88\xb0\xfd\x53\x59\xa6\xd5\xe9\xc4\x6d\x06\x58\x21\xde\x77\x6b\xae\x6f\x07\x57\x63\x03\x2b\xde\xd5\x88\x37\xac\x4e\xb0\xa5\x62\x77\xc7\x1f\xd7\xe1\x81\x59\x19\xf7\x76\x06\xca\xba\xd0\x35\x81\x62\xbe\x19\x85\x2a\xee\x25\x14\x8d\x91\x6e\x0b\xa3\x07\x6f\x03\x1c\x36\x6c\x01\x97\x9b\x25\xb5\xe7\x5f\xe8\x2e\x9b\xb4\x57\x0c\x4d\xee\xc3\x0e\x6d\xf9\x10\xfe\xe7\x34\x11\xa3\xd6\x4d\x69\xf3\x81\x29\x45\x7a\x4c\x45\xe5\x3a\x5e\xda\xeb\x5c\x63\x32\x7a\xdc\x65\x96\xc6\x45\x99\x61\x1b\x51\xa6\xf4\x4c\x30\xac\x6c\x6a\x3d\x2f\x2e\xbe\xd0\x8d\xd3\x22\xee\x5b\x57\x74\x10\xb5\xe4\x29\x55\xf0\x3e\x9d\x12\xda\x04\x78\x28\xa0\x58\xc0\xd9\xc7\xf1\x53\x0d\x0d\xda\x43\xcf\x77\xcd\x20\xb7\x40\xbc\xb3\x29\x92\x6e\x26\xdb\xff\xa0\x7a\x54\xaf\x99\x11\xfa\x91\xe4\x4f\xb6\xe4\x21\x07\x6d\x76\xfb\xab\x59\x6e\xa5\x8d\xe4\x1d\x43\x82\x1f\x5e\x53\x95\xbd\x0a\xac\xbe\x39\x31\xc2\xfc\x94\xde\x98\xbb\x2e\xed\x93\xb5\x84\x62\x4e\xb0\xca\xc4\x69\x99\x8d\xa9\x61\x75\x96\x94\x40\xce\x92\x70\x4f\x6e\xe0\x29\xec\x6d\x62\xdc\xc3\x94\x13\xc2\x4d\x8c\x4c\x6a\x06\xb6\xef\x82\x76\xc4\x73\x37\x79\xa4\xa2\x68\x08\xd8\xe0\x49\xaa\x35\x25\x71\x59\xbd\x61\x0c\xa5\xd6\xc6\x91\xee\xe7\x1b\x26\x5d\xb5\x7e\xd4\x21\x48\x9a\x41\xa7\x46\x4e\x36\x75\x11\x9c\xa4\xaf\x4c\x8a\x92\x22\x46\x79\x8c\x0a\x9a\x0d\x1d\x49\x21\x76\x77\x42\x8d\x02\x14\x0e\x39\xa6\x1d\xa5\x18\x66\x93\x52\x5a\x56\x35\xaf\x42\x39\x69\x33\x00\x4a\x26\x79\x6f\xd8\xa1\x8d\xec\xed\x9a\xdc\xf7\xe3\x7e\x47\x4e\x97\xe3\xbc\xcf\x7a\x24\xf8\x6a\x42\xac\x06\x61\xde\x51\x96\x3e\x1a\xa8\xa1\x47\xb1\xce\xd0\x84\x57\x25\xf3\x3d\x9b\x61\x0f\x9b\x73\x56\x0a\x01\x95\xbb\x20\x53\xfc\x08\x9e\x8b\xb6\xa1\x99\xf4\x82\x14\x58\xf8\x57\x58\x4c\x3d\xd2\xaf\x5a\xf4\x90\x42\xff\x0c\x4b\x96\x9c\x34\x66\xf2\x8b\x7b\x9f\xab\x82\x41\xb3\x5a\x0e\x73\x44\x33\x1e\xf3\x01\x1d\x18\x1d\x1c\x44\x6c\x30\x4e\x1f\xd5\x65\xad\x98\xe6\x57\x39\xf8\x84\x08\x33\xa6\xe9\x77\xc0\x43\x96\x93\x88\xad\x77\x93\x64\x77\xcd\x22\x85\x34\x00\x43\x66\x7f\x3b\xea\x1c\x7a\xde\x07\xc2\xa1\x54\xfd\x5d\x04\xe8\xbe\xad\x58\x8d\xe2\x1a\xca\x51\x9f\x76\x48\x7e\x47\x93\xbc\x6f\x1d\x16\xcc\x7b\x83\xa2\xf4\x2c\xc7\x8d\x30\xf9\xd0\xf3\xdd\x7e\x5c\x98\xf1\xd8\x9a\x9c\x68\xdb\x40\xa6\x29\xfc\xad\xcd\x76\xcc\xf6\x27\x1e\x8a\xa1\x46\x20\x6e\xa7\xd4\x46\x54\x8d\xf2\x36\xb6\x73\xee\xd5\xe1\x3d\xce\xce\x07\x58\xf8\x2d\x0c\x1c\xf9\x07\xb7\xc1\x4b\xe4\x1f\x85\x90\xf3\xa1\xcd\x96\xcd\xde\x8e\xe3\x22\xeb\x5b\x36\xfe\x41\x21\x56\x8b\x11\xad\xfe\x00\xe9\x46\x39\xd4\xaa\x32\x86\xae\x4c\x5e\x4c\xb5\x8b\xdb\xc0\x7a\xd5\xc6\x85\xef\xbb\x42\x3c\xe2\x5e\x62\x8a\x62\x37\x35\xcd\x24\x8e\xf6\x2b\xb2\x97\x16\x3a\xe5\xea\x3c\xa8\xd3\xdc\xc7\x5b\xc3\x7d\xff\x5f\x32\xca\xd5\xd0\x2c\x44\xee\xff\xcc\xdd\x84\x96\x30\x43\x07\x66\x25\x71\x9a\x14\xee\x57\x89\xaf\x1f\xca\x0a\xa1\xfd\xd0\x37\x39\xca\x16\x88\xf2\x67\xe6\xeb\xd0\x1c\x5f\x3c\xbb\xf7\x40\x02\xde\x2b\x36\x77\xae\xf6\x2f\xee\x95\x9c\xf0\x53\xb2\x7c\x3e\xcd\xe2\x90\x4d\x57\xba\xfd\x8b\xdd\x38\x37\xa9\x02\x11\x10\xbc\x7c\xca\x96\x42\x9f\xd2\xca\xbb\x3c\xd9\xb0\x79\x31\x17\x80\x14\xc0\x99\x21\x95\x95\xd7\xe1\x0b\x57\x07\x97\xa4\x6e\xbc\xc3\x59\x8b\xa2\x7a\xf0\x29\xd1\xa4\x17\xbe\x5a\xcc\x52\x41\x12\xe5\x65\x2d\x9b\xb8\x2b\x40\x71\xf7\x9e\x3c\x7e\x04\x60\x6f\x13\x44\x12\xe2\x2c\x65\x96\x03\xfd\x8f\xbc\xe2\x53\xb2\x7d\xe5\x8b\x37\x69\x3a\x31\x89\x63\x89\xab\x2b\xaf\xfb\x75\x7c\xf2\x8c\xd4\xdd\x44\x55\x0b\xa3\x09\xaf\x9f\x5d\x01\xcf\xba\xf5\x63\xeb\x22\x23\x7e\x64\xc1\x7e\x49\x12\x8c\x1f\x71\xb6\xf1\x23\x0a\xe6\xb3\xb1\x4d\x6d\x7f\xce\x2d\x85\xa8\x29\xef\x9c\xef\xf8\xa6\xc2\x27\x58\x16\xf1\x33\x97\x89\x27\x7b\x9b\xe8\x7e\x6d\x5d\x8a\x24\x4b\x07\x45\x69\xa8\x4e\x82\x07\x75\x99\xba\x14\x97\xc9\xef\x24\x2e\x63\x93\xcc\x84\x2c\xe2\x3a\x59\x16\x88\x33\x96\xc6\xb0\x4d\x5f\x8c\x34\x5b\xb3\x49\x5c\x80\xee\xa9\x64\x11\x6a\x2d\x93\xd7\x6a\x56\x6a\x13\x12\xdf\x7d\x91\x7e\xe7\x62\xa3\xde\xa5\x83\xb9\x3f\xee\x81\x04\xa7\x1a\xb3\xd5\x17\x60\x1c\x5c\xc1\xc5\xa1\x8c\xb7\xa3\x11\x6f\x55\xe1\xd3\x7a\x9c\x00\x5b\x8b\xa7\x0f\x27\x23\x39\x6e\xe3\xe8\x0e\xe3\x65\x51\x3a\xf1\x9a\xb1\x41\xc6\xf8\x0c\x91\x74\x50\x5f\x0b\x3d\xe0\x1a\x6d\xa4\x05\xdf\xf2\x5c\x77\x79\xd2\x1f\x58\xcf\xa6\x97\xa2\x0c\x96\x5d\xad\xd0\xd4\x28\x00\x2b\x22\x68\xed\x39\x7c\xfb\x3d\x9f\xaf\x01\x9a\x10\xa6\x99\x80\x59\x0b\xa0\x59\x15\x41\x8c\x71\xac\xe0\xe2\x47\x89\x55\x99\x3a\xc1\x7d\x6f\x8e\xb8\x5f\x11\xfa\xc7\xdc\x64\x45\xae\x00\xe7\x73\x84\x03\x1f\xb3\x26\x29\x92\x18\x5d\xbf\xdc\x2b\x0f\xb1\x91\x54\xa5\x5f\x1d\x27\x59\xee\x87\xa1\xee\x63\x01\xc3\x72\xa6\x05\x14\xbd\xe4\x80\xce\x79\x5f\x9f\x54\x9b\x2d\x45\x0b\xc4\xb0\x1f\x8f\xe2\x34\x2e\x86\x55\xf8\xe8\x63\xb6\x4b\x0d\x6e\x5c\xe0\x47\x3c\xec\x1f\xc4\x5f\x7d\x8a\x44\x99\x6e\x23\x20\x40\xd2\xb5\x63\xbe\x8a\x73\xb4\x65\x4d\x80\x7c\x98\x65\x61\x83\xdb\xb1\x59\xa5\x8c\x62\x01\x3f\x4f\xec\xf0\x3f\x46\xc9\x0c\x4b\xed\xbf\x74\xcf\x0e\x49\xda\x77\xb1\xf6\x8b\x95\x87\xdb\xe3\x7d\x0b\xd3\x27\xf0\x62\xfa\x8a\xac\x5d\xad\x72\x3d\x90\xc2\x3b\x68\xed\x9a\xa7\x52\xdc\x6d\xf7\xe2\x54\xb2\x6a\x7b\x9d\xc1\x6d\xfd\x32\xd5\x31\xa3\xf7\xb8\x25\x16\xd9\x84\x98\x14\x22\x04\xb8\x49\xfd\xec\x81\x8f\x6e\xdb\x12\xaf\xa7\x7c\x00\x5a\x38\x98\x84\xa4\x5a\x5a\x3e\x0a\x0d\xd5\xcf\x89\x93\x67\x7a\x43\xc7\xe7\x3d\x70\x40\x90\x68\x40\xa9\x7a\xd6\xbe\x87\x89\xdc\x68\xc8\x00\xed\x5f\xac\x82\x9e\x38\x2d\x9d\x3f\xbe\x0e\x12\xaf\x05\xe1\x57\xb8\x23\x51\x28\x86\x8f\xe2\xb4\x5f\x38\xe3\x25\xd5\xc7\x63\x3a\xdb\xf6\x21\xe8\x91\xe7\x4e\x65\x21\x40\x4a\xf0\x57\x9c\x4d\x23\xb8\xb8\xe1\xd6\x63\xd1\x9a\xa3\x68\x7f\x38\xa9\xd2\x92\x19\x12\x40\xbb\x83\x21\xe4\x75\x15\xd8\x75\xe5\x31\xaa\x77\x25\xc9\x53\xd5\x4f\x61\x0c\x7f\x80\xc1\x82\xb1\xf6\xb6\x7b\xc1\x35\x09\x0b\xc4\x3e\x27\x49\xbf\xf3\x73\x97\x9a\x6f\x9d\x46\x65\x01\xfb\xec\x35\xf4\xbc\x3c\x7a\x73\xbf\xa2\x77\xfe\x54\xd6\x07\xb5\x0e\x20\xd3\x30\x78\x03\x20\xe6\x15\x82\x1e\x14\x99\xef\x62\x37\xc4\xa7\x6e\x11\x2d\x0d\xce\xd1\xca\x4a\x0b\x73\xe7\x14\xbd\xfb\xa1\x59\x8e\x51\x27\x7a\x4e\x1a\x05\xc0\x01\xab\x50\x48\xc7\xdb\xf7\x1d\x27\xd8\xe7\x28\x2b\x12\x3b\xc2\xb6\x8e\x21\x7a\x94\xc7\xeb\xd1\xe8\x4b\xc4\xc8\x33\x69\x31\xce\xf2\xd2\x21\x07\x76\x57\x57\x84\x60\x58\x12\x7f\x74\x68\x7e\xec\x1e\x98\xd7\xbb\xa8\xae\x06\x01\xd7\x31\x37\x88\x04\x1c\x40\x40\xc7\x3b\x51\x70\x04\x80\x6d\x80\x7c\x6b\x1d\x9d\x3f\x29\x76\x56\x9f\xc3\x32\xf1\x5d\x3c\x35\x71\x1d\xc6\xaf\xe0\xb1\xe3\x57\xd4\x34\x26\x04\x50\xbf\x15\xd5\xf4\x2b\xf6\x68\x21\xba\xec\xb0\x81\xe4\xf9\x69\x4d\x99\xed\x31\x46\xb1\xe7\x3b\x1d\xbc\x19\x5b\xc5\xe7\xac\xa6\x73\x06\x59\x17\x8a\xdc\xa7\x9c\xff\x93\x7c\x6a\x1a\x6c\xdb\x4e\x51\xcd\xff\x0c\x45\x4b\x2b\x71\x12\xa7\x83\x9d\xd4\xa2\x87\x45\x00\x16\xb1\x7f\x83\xdf\x51\xff\xac\x1a\x0b\x23\x54\xaf\x2f\x45\x64\x8a\x7a\x89\x12\xb6\xa1\x19\x8f\xe3\x64\x63\x2e\x04\x07\xec\x9b\x74\x96\x01\x3d\xb7\xdc\xca\xab\x1a\x82\x6e\x0a\xa1\x38\x75\x9c\x96\xac\x72\x98\x5b\xfb\x54\x20\xe8\x9c\x62\x37\x28\x89\xa8\x59\x5d\x4f\x12\xc3\x7f\x14\x71\xe3\x5e\xe0\xca\x40\xec\xde\x99\x92\x6d\xc5\x09\xb2\x92\xbc\xea\x66\xa4\x77\xd9\xf3\x65\xde\xdf\x8b\x6a\x00\x86\x1a\x56\xa0\x1a\x3c\x62\x0f\x46\x90\x4c\xa9\xa8\xa9\xb0\x40\x30\x09\x94\xb9\x87\x65\xf4\xcf\x43\x73\xc2\x0c\x06\x66\x60\xc9\x52\xfc\x1e\x61\x6c\x9a\x8c\xd2\x2a\x48\xd0\x4c\x51\x6a\x9a\x4c\x81\x3b\xd6\x56\x19\xea\x65\xa3\x6d\x38\x95\xbb\x84\x53\xb9\xcb\xea\x07\xd9\x0a\x36\x09\xf5\x5e\x0f\x3f\x13\xf4\x3d\x27\x69\xb5\xee\x4b\x85\x87\x6a\xb4\x8a\xc6\xbb\x47\x42\x90\x4d\xe9\xf0\x17\xf7\xbe\xd4\x5d\x99\xe4\xe5\xd0\xe6\xb3\x21\x4b\xfb\x1c\xcb\x9c\xb2\x27\xc2\xe4\x95\xde\x05\xf6\xe2\xdf\xc5\xe3\xc0\xee\xe3\xfb\xc3\xa2\x86\xff\x92\xcf\x8d\x28\x4f\x22\x59\x3b\x35\xbc\x59\x99\x24\xb3\x64\xf5\x79\xb9\xe6\x3d\x3d\x0d\xda\x28\x1f\xe2\x9e\x70\x32\x3b\x1f\x90\x37\x2e\x44\x29\xf3\x8d\x39\x16\xd2\x10\x14\xb6\x88\x7c\xd0\xba\xb0\xe5\x2e\x87\xcc\x2b\xb5\x50\x34\xdb\x70\x0b\x38\x70\xa0\xbb\x9e\xa9\x86\xbd\x77\x6c\xf6\x01\xc7\xc7\xfe\x0d\x0c\xcd\x60\x90\x28\x2c\x9f\xc8\x95\xcf\x79\x72\x65\x8b\x6b\x63\x31\xce\xad\x81\xad\x42\xcd\x95\x0f\x33\xe0\xa1\xf9\x60\x8f\xf2\x11\xee\x1c\xc9\xf0\x49\x2a\x92\xad\x54\x81\x60\xdf\x74\x02\xc8\xe0\x02\xd9\x19\x5c\x68\x64\x16\x07\x0e\xbc\xd0\x45\x65\xc3\x8d\x15\xa5\x6e\x93\x73\xcd\xa5\x29\x7d\x17\x55\x2c\x6c\x3c\x18\x96\xf0\x78\xf1\xce\x19\xd5\x35\xa9\x8c\x59\xf5\x57\xa8\x0b\xa2\x5d\x22\xc7\x75\x3f\x08\xf7\xb0\x31\x10\x66\x1d\x30\x0e\x4f\xe7\x0e\x51\x63\x3e\x8c\x48\x9b\xef\x72\x44\x7c\x84\x77\xdc\xce\x87\x9c\xf2\xd2\x94\x9c\x66\xcf\x32\x51\xe1\x9d\x16\xd2\xa5\x37\x84\x0f\x46\x73\x17\xa9\x9a\x7e\xf1\x81\x1a\x4e\x36\x5d\x89\x9d\xb7\x78\x58\x28\x3e\xa1\x82\xff\x27\x6d\xaa\xbe\xfd\x2c\x49\x6c\x7f\x32\x9e\x09\x9d\xeb\xe3\x11\x31\x99\xbe\xcb\xa4\xdb\x8f\x90\x38\x68\xbf\xbb\x53\x6d\x1e\x22\xa6\x02\xff\x00\x55\x56\x09\x8b\x7a\xf5\xc6\x47\x1e\x84\x80\xbd\xea\x76\x44\x1b\xd7\xed\xe9\x33\x41\x45\x6e\x52\x66\xa3\xac\x8c\xd7\xec\x5c\x90\x99\xc6\xbe\xa4\x96\xbd\x1d\xef\xf5\xf5\x43\x5e\x10\xef\x90\x38\xc7\xae\x86\x99\xca\xe2\x62\x17\x73\x77\x9b\x8c\x19\x6f\x29\x67\x68\x03\x1d\x4f\x92\xf1\xdc\x4c\x30\x05\xbb\x4e\xa2\x7e\x33\x6e\x24\x60\x0b\xf8\xf6\x34\x54\xf1\xff\xc9\x94\x44\x3c\x3f\x6b\x59\xb6\x16\xba\xe3\xdc\xf6\xe2\x02\x5c\x0d\x34\x6d\x80\x5a\x90\xe3\xe9\x17\x42\x79\x2a\x73\xbd\x87\xdc\x2c\x27\x76\x96\x58\xc3\xd8\x5b\xa8\x17\x4f\xa6\xbf\xa1\x49\xdf\x4e\xc5\xe9\x0d\xcd\xb8\x44\x2b\x53\xcb\x63\x08\xe2\xd5\x25\x93\x13\x4f\x93\xf4\xc1\x44\xc2\x22\xb7\x15\x71\x45\xf7\x2e\xb8\x53\x08\x76\x6f\x52\xce\x2b\x42\x1a\x62\xf5\x38\x4f\xd1\x6c\x5c\x5a\xc8\x4d\x28\xe0\xc9\x5d\x3b\xe6\x10\x2a\x41\xd2\xf2\x65\xb5\xb4\x93\xee\xa6\xb4\x17\x1c\x56\xe5\xab\x0c\x63\xcc\x4d\xaf\x8c\x7b\x76\x67\xb5\x53\x62\x43\x3a\x12\xd1\x02\x88\xef\x40\x5e\x06\x9c\x3d\x1e\x18\x94\x76\xd5\x60\xa1\x1a\x6d\xf2\xc7\x6d\x98\x9b\xbe\x4d\xcc\x86\x87\x8c\x62\x9b\x7f\x67\x1a\xa2\x42\x10\xf2\x14\x51\xdc\xcc\xcb\xdd\x92\xdf\xcb\x46\xe3\x89\x7b\x01\xd5\x22\x81\x40\xef\x33\xa2\x1f\x7d\xd6\xd0\x5b\xf8\x4a\x70\x55\x99\xa9\xf5\xaa\x3b\xbf\xfa\x8d\xb0\x59\x79\xf5\x9b\x3b\x91\x5a\x16\x9a\xa4\xb4\x79\x6a\xaa\x89\xe4\xe6\x35\xda\x1a\xaf\x53\xc0\x8f\x4a\x85\x34\xc2\x29\x5d\x81\xdb\x20\xf9\x28\x9f\x66\xf1\xcd\xe3\x0c\x47\x54\xa1\x14\x2c\x0d\x78\x89\xca\x1e\xa8\xbe\x5c\xd5\xa3\xaa\xbc\xd8\x6b\x98\xec\x5b\xf0\x7e\x07\x5f\x20\x95\xbe\xd2\xe6\x85\xd8\x22\xe3\x4b\xb1\x54\x1e\x67\x81\xe7\xe3\xd3\x6d\x00\xfb\xfd\x8b\xdd\x97\x5f\x7e\x94\xb6\x62\xe9\x5a\x60\x5c\xc2\xb7\x04\x1b\xd2\x1c\x74\x42\x70\x45\x22\x2f\xa6\x93\xce\xbd\x52\xf5\xfb\xab\xee\x5b\x43\xbd\xea\x21\x63\xc5\x7d\x03\x03\x0a\xf3\xe4\xf7\xa3\xce\xd7\x7e\x4d\xc2\x96\x53\x32\x2d\x3c\x57\xc4\x37\xc8\x3f\x69\x23\x6a\x25\x59\x0f\xc8\x5c\x75\x83\xaa\x3e\x2f\xc7\xde\x5e\x66\x3c\x49\x12\x69\xa0\x23\xaa\x96\xe0\x54\x71\x3a\x54\xac\xf1\x41\xe0\xc8\xe4\x71\x29\x3a\xf4\x08\xe6\x01\xb0\x94\xe3\x16\xcd\xcd\xee\xc8\x38\x2e\x9b\x7b\x60\x0a\xc1\x23\x38\x1e\x73\xed\xb2\xd1\xd8\xf4\x4a\x6c\x47\x78\x84\xc0\x98\xca\x31\x91\x07\xed\xab\x63\x9b\x97\xc5\x9c\x7b\x27\x64\x6f\xa6\x4b\xc2\x23\xae\xb2\xc9\x04\x53\x24\x9c\xb7\x09\x96\xf1\xfa\xf6\xd7\xfc\x95\xee\xe1\x83\x7b\xc9\xc4\xe3\x1d\x42\x75\xbf\xd3\x4a\x22\x4b\xe2\x55\xbb\x1e\x17\x76\x26\x38\x2b\x5f\x60\x51\x42\xcc\x3a\x8c\x99\xef\x36\x16\xcb\x83\x7b\x83\xf7\x72\xa7\x3e\xa0\xbc\x0a\xf3\xc9\xe9\xa3\x21\x95\x8d\x8b\x67\x3b\xaa\xc9\xf5\x17\x9e\x22\x96\xd7\xf0\x89\xf9\x6a\xf0\xab\x9d\x8d\x9b\xf7\xd8\x2c\x2e\x4d\x43\x1b\xed\x2d\xd7\x46\xf3\x96\x41\x2f\x6a\x19\xe8\xff\x66\xec\x4f\x63\x24\x49\xd3\xfb\x30\xbc\x3b\xab\xaa\xaf\xb9\x7b\x66\x76\x29\x51\xff\x3f\xc3\xd4\xca\x23\x1a\x23\x5a\x02\x0c\xdb\x5a\x1b\x8e\xdc\xea\xda\x9d\xed\x06\xb7\xa6\x50\xdd\xec\xa6\x06\x06\x3c\x51\x91\x6f\x65\xc6\x56\x64\x44\x6e\x44\x64\x55\xd7\xc0\x1f\xf4\xc1\x36\x04\x0b\x30\x0c\x03\xbe\x64\x48\x22\x2c\x99\x96\x2c\x11\x24\x45\x52\x5c\x92\x5a\x46\x2e\x97\xcb\xbd\xb5\x33\x3b\xe7\xce\xb1\xd3\x3d\x7d\xdf\xd5\xf7\x5d\x6d\xc4\xf3\x7b\x9e\xf7\x7d\xa2\x22\x86\xf2\xa7\xc9\x9c\xae\xbc\x22\xde\xf7\x79\x9f\xe3\x77\x40\x4d\x09\xdb\x9c\x2d\x92\x50\x42\x4e\x4f\xa8\x44\xc0\xe5\x9a\xe9\x2a\x2a\xc0\xb7\x70\x72\x03\xd1\x00\x11\x4a\x14\x38\xf0\xa5\x46\x4d\x42\x95\xcf\x4b\xd8\xd1\xf7\x9e\xe9\xea\x2e\x21\x55\x31\xd6\xca\xce\x01\xcd\x76\x4e\x3a\x47\x9c\x6c\x1d\xad\x4d\x56\xac\x57\x1d\x8b\x41\x90\xf4\xc8\x86\x1e\x95\x58\x07\x88\x25\x14\x83\xef\x95\x75\xeb\x1b\x97\x8a\x5d\x02\xa0\xcd\x62\xd5\xed\x06\x7c\x9b\x2e\x91\xe0\xd6\x95\x53\xca\x75\x02\x6c\xf3\x87\x50\xd4\x41\x17\xea\xaa\xef\x80\xe8\x77\x6a\x89\xca\x6b\x94\xa8\xe0\xaf\x6e\x23\x51\xe1\x27\xb6\x49\x59\x98\x24\xa9\xee\xb8\x61\xc9\x3f\x9c\xef\xc7\xe9\x82\xe0\x72\x9e\x53\x8a\xb6\x27\x34\x6b\xe4\x91\x9a\xaa\x56\x79\x9b\xc9\xa6\x1c\x91\xea\x96\x42\x66\xfe\x9e\xaf\x40\x33\xb7\x95\x12\x52\x10\x66\x69\x0e\x37\x39\x44\xe7\x87\x8a\xd2\xbe\xbd\xeb\xfc\x96\x37\x29\x57\xb5\xdd\xd6\xea\x9a\x88\xc3\xbc\x3a\xd5\xdf\xb6\x1c\x90\x5e\xba\x96\x3c\xe3\x0c\x57\x9e\x9a\x54\x31\x4d\xac\x22\xe9\xf6\xb0\xe0\x70\xb9\xfd\x73\xb6\x3f\xd1\x11\xb3\xa4\x93\x90\xfa\xc0\x2a\xfd\xec\x44\x11\x6d\x3e\x0b\x13\x64\xf4\x81\xb8\x0d\x81\x4c\xf7\x6d\xba\x62\x74\x95\xd6\xfe\x83\xae\x92\x7b\x45\xdf\x8c\x56\xc3\xd4\x5f\xeb\x76\xbe\x74\x84\x5b\x03\xb7\x90\x4b\x48\x8d\x48\xeb\x17\x0b\x6d\x8a\xd6\x2c\xdd\xa8\xf7\x7e\xa1\xab\xc5\x82\x14\xae\x78\x94\x45\x09\x14\xe4\x95\x9a\x01\x7d\x39\xf4\xd7\x76\x4d\x5c\x8b\xee\xa9\x6e\x5d\x17\xc1\x0e\xb5\xeb\xba\x08\xcf\xd5\xcf\x25\x93\x17\xa2\xf7\x80\x81\x03\x38\x2c\xfc\x58\xf1\x4b\xa3\xb5\x80\xaa\x14\x6e\x5b\xe9\x41\x26\xae\x10\x3e\xec\x56\xe3\x98\x97\xf4\x7d\x2d\xa8\x45\xce\xe9\x2e\x99\x5e\xe2\x68\xfa\x0d\x35\xee\xb9\x8a\x2d\x23\xf8\xbf\xea\x33\x45\xc8\xf8\xd3\xd4\x65\xf3\x22\x58\x5e\x9e\x72\xcd\x14\x50\x9d\x51\x4f\x7d\x5c\xaa\xf6\x54\xab\x9f\xde\x6a\x5a\x48\x55\x69\xad\x57\x6c\xee\xd3\x94\x94\x25\x6d\x04\x93\xa5\x49\x30\x2e\xa2\x50\xd8\x22\x68\x6f\x30\x3e\x10\xe8\x1e\x5e\xb5\xc8\x4e\xb6\x77\xdd\xaa\x4d\xb3\x1d\x78\x91\xc5\x69\x59\x81\xd5\xc7\xbb\x4a\x0c\x13\x94\x1b\x85\xb7\x3d\xc8\xbf\x89\x19\x56\x68\xee\xde\x56\x27\x54\x6e\xb2\x28\x1d\xe7\x34\x3c\xc6\x72\xf9\x23\x05\x50\x46\x2d\x88\x60\xf8\x31\xe5\x0f\xe8\x5c\xde\xb4\x0d\xee\x51\x54\x14\xa4\xf8\x3c\x98\x72\x05\xc7\x69\x55\x10\xbe\xa5\xb3\x8b\x8d\x16\x09\xad\x79\x6f\x39\xcd\xd6\x82\x0c\x13\x0a\x06\x9f\xd1\xae\x41\xcb\x06\xb5\x29\x7e\xf8\x8d\x06\x60\x7a\xff\xbc\xf7\x55\x53\x4c\x39\xe8\xc1\x0d\xd5\x66\x7b\x0f\x9f\x8d\x44\xf6\xa2\x4a\xb0\xaa\x72\x22\x8d\xa3\x5e\x40\xf7\xd1\xa1\x7e\xcf\xd3\x67\xf1\x63\x2d\xde\x99\x92\x5a\x23\xd1\xa0\x31\xd8\xb6\xba\x8b\x76\xf4\x73\xbd\xc5\x4a\x7c\xe1\xa0\x17\xe4\x2b\x72\x6c\xe2\xbe\x9e\x42\xe8\xe7\x27\x56\xec\x60\x29\x4b\xd7\xb8\x2d\xae\x08\xd9\xd2\xe1\x3e\xab\x32\xff\xfb\x6d\x18\xdf\x30\x58\x11\xe9\x6b\xe4\xf3\xc7\x75\x35\xd4\x54\xf3\x3c\xb2\xe0\x65\x63\x61\xa3\x23\x71\xb9\x8a\xc3\x92\x9f\xd4\xc8\x0e\x51\xf8\x1a\xe5\x52\x92\x16\xd2\x65\x15\x7f\xe8\x96\x0d\x12\x8c\x7b\x11\x86\x9f\x6c\xb2\xe5\x3b\x96\xc1\x59\x15\x22\x4c\x55\xa7\x58\x24\xf0\x2e\x65\x4b\xf9\xd3\x1a\xa5\x43\x41\xfb\x77\x4c\x14\x2e\x11\xd6\xc7\xdc\x5f\xb5\xd9\x5f\x9c\xa6\xe0\xb3\x55\x7f\xc8\x6d\x6a\x0d\xd8\x7b\xb0\xc5\xc8\xd3\x1e\xd8\xe3\x61\x90\x70\xc8\xc1\x7a\x85\x78\x30\x76\x2a\x8c\x0e\x64\x9f\xd1\xc5\xe5\x3f\x9a\x38\x89\xc5\x4f\xda\xf4\x8c\xf2\xb5\x20\x8e\x9d\x42\xa2\x9d\xbf\xbb\x59\xbc\xf3\xad\xcc\x4c\xbe\x66\xe2\xb8\xe3\xe4\x49\xfe\x58\x23\x96\xfe\xb8\x35\xbf\xcb\xc7\xa3\x51\x9a\x8b\xe1\x19\x4e\xe1\xfb\xf4\xfe\xca\x5d\x62\xce\x72\xba\x5c\x7b\x72\x29\x2d\x06\x04\x79\x12\x93\x34\x25\xdc\xff\x13\xfa\xbd\x38\xd2\xee\xe8\xce\xd6\x65\xca\x37\x78\xfc\x47\xa3\x0d\xd5\xc9\x7f\xc5\x8a\xd6\xb9\x66\x30\x03\x7d\xac\xe6\x5d\x15\xac\xf1\x81\xb8\x74\x52\x2b\x3b\x89\x8d\x99\xee\x73\xca\x8f\x64\x98\xf6\xb3\x00\x18\x6c\xe7\xa8\x8c\xec\x5c\xda\xaa\x4f\x2a\x3d\xa2\x60\x38\xea\x58\xe5\xef\xef\xbf\x81\x86\x94\x10\xee\x5b\xe4\x1f\x56\xc9\x27\xf4\xf0\xac\xf5\x42\x71\x54\x81\x73\x1a\xa6\x16\xa6\x99\x01\xaa\x03\x7d\xf1\x8b\x94\xa7\x22\x68\x32\xe2\x46\x84\x02\xe9\x7b\x22\x45\xf9\x3a\x2d\x64\xfe\xab\x49\xdb\xd1\x30\x4a\xe3\xa8\x88\x14\xa4\x5e\x52\x98\xea\xa3\x84\x04\xb8\xf5\xb6\xef\x9f\xf7\x96\xa3\x24\x48\x42\xfb\x2a\x6c\xc7\x9d\x13\xb7\x4f\x77\x36\xea\x9c\x7d\xfb\xbc\xb5\x34\xb5\x2f\xb1\xac\x5a\x9b\x5c\x5d\x69\x00\xcd\xe6\x0e\x79\x85\x89\x0d\x51\xb1\x0b\x5b\xf2\x5b\x61\xcc\x79\xc7\x57\xa8\x7e\x27\x66\x20\xcd\x70\xb3\xf0\xf2\x41\x6f\x64\x10\x12\x70\x2d\xce\x2b\x83\xfc\x26\xe8\x60\x7e\xfe\x20\xe9\x6c\x4f\x51\x8d\x20\x8c\x2d\x57\x4e\xde\xf4\x95\x37\xe1\x87\xad\xde\x26\x5f\x0d\xe0\x0f\xed\xd4\xbf\xf1\x1a\x29\xee\x3e\xad\x69\x48\x99\x6f\x98\x76\x5c\x41\x72\x42\xef\xc0\x13\xbe\x1c\x7d\x3d\x53\x98\x6c\x18\x25\x02\xf8\x47\xdb\xec\xaa\x16\x86\xbf\x5a\xfe\xe2\xa7\x21\x70\x07\x59\x94\x17\xe9\x68\xc0\xd9\xb1\x15\xb8\xb1\x72\xcc\x9f\x68\x70\xcf\x5d\x85\x07\x0d\x07\xd5\x67\x1a\x4a\x8f\x75\xfa\x81\x63\xeb\x27\xd8\xaa\x82\xe3\x55\x00\xbf\x93\xa5\x33\x2e\x3d\xa5\x6d\x22\xfe\xc4\x3a\x92\x2c\x67\xe9\x6b\x26\x99\x51\x03\x7a\x6c\x33\xb4\x34\x1e\xd1\x1b\x80\xd7\xf6\x2d\x25\xeb\x71\x1f\xed\x1e\xfe\x23\x7f\x6f\xbd\x5c\xfd\x25\xaf\xaa\x56\x0f\x4b\x90\x3f\x81\x53\x86\x9f\xe8\x5e\x78\x16\x99\x04\xd2\x25\x2f\xb9\x3b\x7e\xe0\x80\x25\xef\x7d\xa6\x76\x7c\x87\x55\xda\x92\x90\x77\xb0\x95\xca\xfe\x19\xfd\xbd\x08\xe1\x89\x69\x67\xf8\x9a\x09\x07\x69\x1e\xa7\xab\xc1\x0a\x5d\x6b\x76\xe1\x40\xf5\x81\xf5\x74\x9d\x7b\x37\xe0\xb0\x9d\x6a\x6b\x0c\x53\x90\xb5\xee\x86\x62\x3d\x51\x7d\xb8\x88\x31\x3c\xa7\xad\xfa\x7a\xd1\x52\x14\x47\xc5\x3a\xad\x23\x94\x76\xe7\x94\xde\x9c\x46\xcd\x98\xa3\x47\xd3\x64\xca\x11\x68\xae\xd3\xbb\x62\x05\x1d\xd7\xd4\xdc\x53\xaa\x8f\xdc\x8b\x32\x13\x16\x48\xdc\x58\x07\x10\xc5\x82\xd0\xf0\x14\x4e\xe2\xc3\xd2\xf5\xaf\x6e\x34\x0c\xe5\xff\xba\x57\x64\x2c\x47\x86\xae\xc4\xb1\xd2\xd9\xa8\x1c\x53\xc8\xac\xa5\x2c\x4a\xfa\xf9\xb4\xd3\xe0\xb8\x41\xe9\x21\xea\x27\x3e\x22\x84\x35\x51\x1d\x11\x80\x3c\x5f\x53\x58\xb6\x7d\xc1\x1a\x05\x50\xb6\xdc\xd7\xaa\x63\xd0\x5c\x13\x73\x62\xdc\x0d\xe1\xa2\xd3\x52\x13\x93\xa5\xa6\xa2\xd3\x41\x6f\x69\x1c\xc5\x3d\x99\xdf\xa0\xc2\x7f\x1d\x67\x19\x3f\x51\x68\xfe\xd5\x28\x1f\x07\x71\xae\xc0\x84\x3c\x0a\x41\xd0\xbc\xa7\xec\xeb\x4f\xb6\x78\x64\xce\x79\xc3\x28\x93\xa3\x1c\xd5\xe9\x75\xa5\x5e\x75\x5d\x39\x2f\x10\x6f\xf2\x49\x4a\x2f\xed\x11\x67\xed\xe3\xdf\xf0\xd5\xf8\xf0\x1e\xc6\xa2\xf8\xf5\xe7\x30\x16\xe5\x27\x0a\x5e\xf1\x80\xd6\x0f\xca\xb5\x69\x0d\xf1\xfc\x84\xdb\x6e\x56\xe0\xba\xba\x13\xd6\x84\xad\xfa\xa2\xc2\x6f\xa4\xb3\x17\x07\x93\xb6\x58\x04\xd0\x44\x84\x91\x95\x43\x5e\xba\x64\x32\x11\x0b\x45\xdb\xe6\xb8\xaf\x69\x5f\xa5\x52\xd8\xf9\x40\x29\x11\x85\x51\x16\x8e\x63\x32\x01\xb7\x25\xdb\x27\xf4\xf5\xf9\xb1\xf2\x3c\x0b\x83\x3c\x0c\x7a\xf8\x4b\x2b\x7f\xea\xa8\x16\x8d\xc6\xe1\x8b\xde\x1a\x5c\x8a\x2d\xa7\xe6\xbf\x65\x21\x25\x5c\xcc\x1d\x24\x68\x29\x0b\xd1\x25\x12\xc1\x70\x29\x5a\x0d\x62\x43\x54\x34\x3b\x3d\xe3\x16\x3d\x3f\xa1\x86\x6c\x53\x1b\x20\x31\xe1\x0a\xa9\x27\x6b\x62\x6a\xa9\xe8\x9e\x97\x7c\xb1\x68\x1d\x8c\x21\xa7\x21\x63\x20\xad\xaf\xdf\xd4\xf9\x7e\xc5\x0b\xd3\x21\x6b\xe5\x00\x67\xc8\x3d\x5b\x7e\xa2\xe8\x1e\x51\x52\x64\x69\x6f\x1c\x1a\x04\x20\x14\x4a\x33\xe8\x03\xf0\x93\x89\x5b\x7b\xd1\x72\x94\xd4\x27\xcf\x6a\xa8\xad\xb4\x69\x8c\x19\x9a\xde\x0e\x05\xf4\xb8\xa2\xda\x3a\x57\x94\x0e\xcf\x69\xac\x2a\xea\x22\xbc\xff\x5c\x57\x09\xe9\x63\xd4\x84\x70\x71\x56\xa1\x7b\x73\x13\xa6\x49\x8f\xec\xcf\x05\x60\x44\x6f\x61\x7d\x70\xf6\xed\xe3\x45\x7a\x87\xae\x92\x85\x1a\xcf\x1d\xe2\xdb\x71\x46\x79\xb3\xde\x56\x8a\xc8\x97\x81\x09\xe0\x28\x42\x8b\x05\xeb\xf8\x4e\xe3\x12\xbf\xe8\x0d\xa2\xfe\x40\x14\x86\x19\xe5\xe6\x3b\x2c\xca\xe5\x46\xee\x70\xa4\xaa\x5f\x88\xc9\xd1\x71\xd9\xcd\x0f\x29\x3a\xf1\xe3\x16\xa9\x9a\x05\x6f\xd5\xf4\x03\xc8\x17\xa2\x5c\x60\x8c\x24\x3f\x69\xe4\x6f\x64\xb0\x6e\xcc\x28\x32\x79\x01\x07\x4a\xd6\xb1\x51\xf3\xe9\x56\x59\xf3\x74\xd5\x64\xb9\xa9\x3e\xca\xf6\x72\x21\x1d\xc5\x8f\x5b\xaa\x50\x2f\x0f\x86\xa3\x58\x76\x0c\xa3\x98\x34\x5b\xe7\x9a\xc2\x6d\x9d\xb0\x65\x94\x49\x7a\xf0\xe6\xb7\xd2\x19\x37\x94\xa8\xe8\x8d\x72\x6f\x83\xe5\x09\x90\x9b\x28\xc1\x2a\xe9\x8b\x8b\x8d\xf9\x39\xa9\xe7\xe7\x51\xcf\x4c\x3b\x5a\xcb\x69\xa5\xab\x84\xf1\x16\x46\xae\xb7\x94\xe9\xe7\x19\xed\x0c\x65\xc8\x7b\x19\x39\xe9\x16\x19\x6d\x1c\x7c\x0f\xd4\xbb\x9c\xb7\x5d\xc0\xa0\xd7\xcb\xa7\x6a\xde\xa1\x35\x53\x51\x47\x25\xba\xee\x7c\x1f\xd3\x5e\xaf\x53\x23\x3e\x55\x7f\xc5\x4f\xfc\x4f\xed\x32\x0d\xd2\xac\x98\xd2\xc8\x56\x5a\xd0\x98\x4e\x5d\xc7\x8e\x44\xff\xfc\x27\x2d\xa3\xfe\x45\x6a\xce\x48\xd0\x69\x63\x40\xd6\x54\x33\x82\x18\xe2\xd8\x42\xfc\xa0\x1f\x88\xfd\x35\x41\x8f\x57\x12\x6f\xc6\x66\xd3\xa6\x47\x90\xdd\x41\xd3\x11\x9c\x38\x37\x15\x24\x93\x61\x94\xb8\x98\xff\xc6\x57\xaa\x72\xf7\x6a\x60\xff\x0f\x69\x47\x89\x78\xa2\x23\x31\x9f\xf5\x95\x86\x27\x63\xec\xc5\xd2\x4d\x71\x0f\xd6\xc3\xd8\xec\x74\x46\x9f\x6f\x29\x4b\x8f\x73\x34\x2e\x13\xf7\x4b\xfa\x19\x88\x0d\x90\xa8\x02\xca\xe4\x06\x5a\xf0\xfc\x0f\xf8\x61\x32\xc4\x76\x4d\x9c\x95\x34\x5e\x32\x99\x22\x66\x9d\xd5\x4a\x82\x67\x95\x68\x3f\x29\xe2\xc4\x51\x32\xad\x95\x88\xee\xd0\x07\xa2\xa9\x75\x56\x19\x97\x9c\xd5\x78\x97\x3b\x8d\xd8\x70\x64\xc1\xcb\x4c\x9e\xc6\xbd\x8e\x92\x2e\xff\xc8\x57\xde\x6e\x1f\x95\xcf\x2a\x06\xf6\xd0\x90\xa5\x5b\x4e\xfb\x42\x14\xa4\x94\x86\x02\x00\x22\x98\x82\x7c\xa8\x66\xc0\x1f\xb6\x9c\x2e\xf3\xde\x6a\x1a\xf5\x3a\x9d\x5f\xfd\xb2\x75\xb1\xe8\x28\x77\x8b\xad\xcb\xf6\xc0\x01\x82\x4b\x67\xe1\x20\xe0\xa1\x3c\x50\x36\x40\xe2\xf1\xe3\xc9\xd3\xca\x4a\xc8\xac\x41\xf3\x67\xee\x10\x37\x61\x2e\x2a\x1c\xd4\x31\x80\x2b\xf9\x1f\x9c\x74\xe7\xdf\x3f\xa6\x3a\x10\xfd\x68\xd5\x4c\x6b\x0a\x3f\x56\x4c\x9b\xa8\x8f\x52\x15\x6e\x1b\xe8\x7b\xe3\x24\x8e\x56\x0c\xbc\xb4\x5f\x71\x06\x28\x76\xc3\x5d\x52\x94\x88\x30\x1d\x27\xb9\x01\xe4\xc7\x66\x3e\xa7\x94\x25\xf2\xa9\xb6\x88\xfd\xd5\x71\x2f\x0a\x2d\x1d\x97\xd1\x18\xbe\x3b\x64\x2f\xa8\x46\x3c\x91\xb3\xe4\x3e\xa2\x51\xc4\x83\x26\x0c\x25\x6e\xaa\xb3\xed\x8c\xda\x72\xef\xd8\xb3\x39\x33\xc3\x74\x15\xf1\x11\xb3\x04\xb6\x9e\x41\x4b\x00\xa8\xac\x9a\xe2\x88\xb3\x27\xb2\x07\x70\x66\x8a\x19\x7a\x91\x00\x93\x95\x54\x3b\xbe\x01\x7a\x37\xd0\x6d\xc4\xe3\x0d\x2c\x68\x29\xf1\x9f\xd0\x17\x6d\x84\xee\x98\x25\x79\xda\x8e\xed\x5d\x28\x13\x01\x89\x75\x1e\x91\x02\x03\x04\x50\xab\xf9\x1f\x1c\xe2\x2a\xcd\x8b\x2a\x8b\xd3\xea\x71\x67\x54\x5f\xae\xe9\xf0\x56\x9d\xcb\xb1\x24\xde\x8a\xcd\x34\x27\x4f\xb6\x9a\xcb\x1f\x59\xf8\x9c\xb7\x7f\x5e\xcb\x82\xa0\x83\xc0\x8f\x6d\xe7\x75\x25\x58\x1a\xc7\x74\x9c\x8a\x60\x90\x9a\xdf\x5c\x6a\x74\xac\xf7\xcf\x7b\xeb\xc1\x30\x88\xc2\x41\xd4\x71\xcb\x93\x47\x1a\xfc\xa4\x41\x20\x3a\x3c\xeb\xad\x05\x18\x9c\xd0\x1a\x90\xd0\xa1\xc2\x48\xdb\x76\x2c\x4c\x38\x48\xa2\xaf\x8d\xe5\x3a\x49\x7f\xa9\xa3\xe4\x0e\x1a\x36\x9f\x8b\x0b\xde\x28\x8d\x92\xa2\xd6\x96\xb8\xe4\x2b\x68\xcf\x25\x75\x53\xd7\xa2\x62\xf0\x97\xe8\xdf\x2c\xab\xdd\xe1\x13\x70\x53\x51\x80\x9f\x64\xaa\x35\x1a\x9d\xb7\x68\x1a\x89\x03\xf0\xb6\x92\xb1\xdc\x81\x99\x92\xa4\xc8\x1d\xab\x6b\x7d\x4d\xb1\x27\x6e\xfa\x9d\x5f\x11\x3e\xd3\xf7\xb5\x20\xf9\xae\x49\xe7\x4b\x47\xb4\xcb\xbc\xfc\xcc\x47\x9a\x42\xfe\x2e\x02\x0b\x96\xfb\x47\xbe\x13\xb3\x79\x15\x48\x32\x74\x78\xee\x62\xad\xb3\x76\x04\x90\x68\x0c\x90\xa5\x2c\x1f\x05\xc2\x0c\x0d\xd5\x78\x04\xe9\x6b\x4f\x22\x96\x29\x13\xc5\x0c\x95\x3b\x81\xfc\xc1\xc3\xa2\xc6\xad\x3e\x70\xc0\x5b\x32\x81\xe3\x77\xb0\x06\x53\xe9\x86\xb1\x27\x5b\x75\x6e\xc7\x59\x5f\x3a\xf8\x36\x93\xa9\x2e\x80\x34\x5d\x6d\x81\xb1\xf2\x39\x08\xcd\xa0\x8c\xbb\x58\x6e\xff\x1c\x2f\xe9\xa7\x68\xa7\x09\x23\x88\x2e\x2b\xc6\xb6\xdb\x26\x6e\x2a\x1d\x2e\x87\x39\xf5\x24\x2c\x1c\xc1\xa9\xe6\x5f\x6e\xe8\xcb\x54\xf5\x6e\x95\x40\x8f\xb2\xc8\x72\x23\xd1\x4d\xc2\x44\x82\x1f\x37\x7e\xd0\xfe\x79\x6f\x29\x1d\xf7\x07\xc5\x16\xc0\xc0\xbc\x7d\xfc\xa9\xfd\xb7\xcc\x50\x9b\x05\xa3\x10\x11\x54\x70\x09\xc1\x25\xad\x8b\x78\x4e\x61\xe5\x32\x53\x44\x19\x69\x95\xef\x70\x20\xb4\xfb\x8a\x73\x7c\xc7\x57\xf8\x53\x56\xc1\x40\xff\x0a\xc3\x06\x81\xb0\xd1\xfb\x8b\x5b\x59\xcb\xbc\xa9\x48\xd7\xa6\x9d\x76\xe1\x43\x5f\x19\x0f\x9e\xd0\x0d\x2b\x65\xe8\xf5\x9e\x62\x32\xe6\x63\xd3\x9b\x72\x45\xfd\x1d\x55\xd7\x6c\x94\xca\x03\x8d\x64\xd8\xe5\x35\xce\x9f\x70\x4a\xd9\xa7\x95\xaa\x09\x7a\xac\x11\x3f\xaa\x40\x40\x0e\xf1\xf1\xaa\xb4\x28\x71\x86\xb3\x04\x03\x3f\x71\x7d\x32\x85\xb1\x9b\x72\x44\x1e\xdc\x68\xec\x96\x47\x8a\x29\x76\x4d\xc9\xc4\xaf\x45\xd5\x59\x13\x84\x2b\x68\xab\xe0\x4e\x41\xdd\xd6\xa2\x79\x1d\xd8\xed\x8a\xea\xc6\x2c\x99\x20\x1c\x18\x66\x38\xb6\x85\x37\x7a\x9d\xa5\xc0\x38\x3a\x8c\xea\x2a\x0d\x83\x41\xc7\x0d\x7d\xb9\xa0\x17\xa4\xbf\x54\x33\xcb\xe9\x38\xb1\xec\x29\x8e\x68\xf8\x52\x12\xde\x5c\xa3\xcb\x8c\xfb\x86\x9d\xc0\x44\x4b\x42\x0d\x31\xdf\x6f\x74\x24\x5e\x7d\xd5\x2b\x4c\x1c\xd3\x6f\x07\x99\x13\x6c\xbf\xcd\x09\x15\xb3\xf8\x5f\x97\xe0\xd0\xc3\x6b\x60\x64\x32\xf2\x0f\xcf\x3b\x35\xbe\x8b\xa6\x73\x29\xa6\x4e\xb0\x62\xf2\xa7\xea\x1d\xca\x2a\x9a\x4a\xd3\x82\x6e\x27\x2a\x4d\xb8\x79\x60\x69\xfd\x5b\xed\xb5\x87\x11\x9c\xcc\x24\x68\x35\xb0\x34\x23\xe2\xa4\xb4\xd2\xeb\x4d\x51\x8a\xf8\xfc\xce\x13\x87\x2e\x67\xc8\xb1\x68\x75\xb8\xae\xdb\x36\x14\x0c\x16\x15\xe2\xfc\x28\xcf\x34\x66\xf1\x2f\x7a\x66\x38\x1a\x04\x79\xf4\x9a\x8d\x95\xac\x37\xa7\x18\x36\x6f\xb5\x89\xa2\x2c\x05\x71\x90\x84\x46\x99\x77\x8f\x7c\x57\xa5\x8e\xb6\xe8\xb4\x05\xbb\x1c\xf3\x1b\xa5\x05\xde\x7a\x43\x23\xa0\x6f\x23\x1e\xa0\x3b\xf5\xaf\x4b\x47\x06\xdb\x36\x71\x7e\x02\xd7\xe9\x76\x0a\xea\x4a\x11\xd6\xaf\x69\xac\x6c\x96\xf2\x72\xe6\x61\x38\x7d\x35\x9d\x1e\x4b\x46\x4c\x6f\x20\x13\xf3\xcf\x28\xf5\xbe\xbc\x88\x8a\x71\x11\xa5\x49\x10\xef\xa4\xeb\x69\xdd\x8b\xaa\xef\x28\x50\x1c\x0a\xdc\xd8\xc4\x8f\xd4\x30\xe5\x8e\x12\x60\x7d\x84\x1b\x2d\xa6\xb9\xf4\xad\xc4\x4d\xb7\xa5\x22\xcf\x4c\x31\xce\x60\x4a\x28\xde\x30\xca\x24\xe2\x84\xba\x76\x77\x5a\x44\x6d\x0f\x7a\xbd\x28\x1f\xc5\xc1\x3a\xaf\x69\x6c\xf6\x1f\x6b\xfd\xee\x1f\x7f\xaa\x13\xdc\x5a\x9a\xb9\x01\x18\xb2\x69\xf8\xf4\xf2\xe3\xae\xdb\x0d\x71\x50\x44\xc9\x8c\x9a\xec\xef\x60\x65\x49\x49\xa0\x15\xb7\x0c\xdf\x59\x9a\x69\xae\x04\xd9\xd1\x30\x56\x38\xf4\x32\x51\x94\xc9\x73\xa0\xe3\xac\x78\xd1\x25\x15\x0b\xbf\xa7\x1d\xad\xaf\x20\xcd\xa1\x29\xc7\x93\x66\xf5\x2f\xc4\xbb\x7b\x5a\x85\xea\x42\x9b\x8f\xfe\x72\xd4\x1f\x14\x74\xa9\xd1\x0f\xc6\x2d\x44\x84\x79\xa0\x22\xe7\x9f\x97\xae\xab\x0a\x22\x77\x1c\xaf\xef\xa9\x6e\x31\xe2\xc4\x26\x6e\xb1\x75\xa1\x3b\x2c\xde\x07\x77\x4a\xa5\xa8\x3e\xa5\x46\xeb\x6f\x20\xa6\x62\xb2\xcb\x9b\x00\x49\xfc\x6e\x65\xce\x74\x1d\xe9\x0f\xbf\xc4\x77\x72\x2e\x17\x6b\xdb\x6b\x9c\x14\x4f\x39\x6b\xd4\xed\x24\xdc\x8e\xc4\xee\x01\x9a\xcd\x22\x8b\x49\x1f\x23\xb2\xf7\x55\xfe\xc5\x74\x22\x1c\x9f\x08\x91\xa7\xd4\xfc\xe6\x0e\x27\x63\x48\x06\x99\x75\x24\xe9\x75\xe7\x88\x9c\xd0\x77\x94\x9d\xcb\x0d\x5f\xc9\x9b\x9c\xa6\x4b\xc1\x3d\x7d\x04\x22\x81\xa2\xbb\x11\xee\xb6\xee\xcf\x69\x82\x5c\x2f\xc2\xa6\x23\xc9\xa6\xea\xe5\xcc\xa5\xc7\x35\xc2\xbe\x07\xdc\x1d\xf8\xe9\xed\x13\x97\x47\xa7\x23\x93\xec\x76\x0c\xfe\xb7\x91\x70\xa2\x19\xf3\x31\x7e\x3d\xf6\xd4\xd7\x91\xa4\xf2\xbf\x50\x1c\x17\x2d\x2e\xba\x2f\xac\x0c\x80\x78\x64\x01\xce\x56\x4b\xe1\x8f\x4a\xdd\x5e\xf9\x0b\x04\x7e\x8a\x2c\x08\x01\x8c\x41\x9b\xe1\xae\x62\x9d\x9e\xd0\x72\x07\x57\x4a\x3d\x3d\x27\x3a\xe1\xbc\xa2\xdb\x56\xd7\x9d\x9f\xb4\x71\x33\x4c\x68\x04\x55\x8d\x01\xe4\x03\x3a\xa5\x39\x47\xf0\xb5\xd8\x81\xea\xf9\x57\xdb\xdd\x64\xf9\x63\x8a\x66\x76\x16\x4d\x1c\xc9\x2e\xb5\x04\xd2\x35\xd5\x6e\x41\x54\x60\xf5\x27\x0a\x75\x38\x9e\x00\x4d\x14\x93\x31\xfa\xd6\x96\x44\xbb\x28\xe6\xad\xbc\x2d\x6b\xc2\x4a\x3c\x41\xf0\xf7\x6a\x41\xc2\x30\xca\x4d\xbc\x4e\x45\xa1\x9d\xc3\xd8\x0e\xd9\x39\xd5\x83\x1c\xa4\x71\xbc\xbe\x96\xa6\xbd\x69\xb5\xdb\xb8\xcc\xae\x71\x17\xb1\x5b\xff\x54\x35\x60\x36\xec\xd8\x35\x0f\xb3\x60\x84\x51\x1e\x5e\x73\x4d\x6b\x17\x02\xf0\x68\xe3\x99\x3d\x1a\x3f\x54\x19\x42\x3f\x4d\x7b\x78\x03\x16\x02\xf2\x95\xa8\xc6\x09\x44\x02\x91\x08\x52\x0a\x1b\x27\x14\xbe\x21\x33\x61\x10\xc7\x4a\xc4\xfa\xaa\x12\xb1\xbe\x5a\x4a\xf9\x31\xfa\xe5\xe1\x94\xd2\x6d\x81\xc9\x3a\x80\x49\x8f\x94\x6b\xde\x39\x35\x08\xe8\x47\x3d\x93\x26\xd3\x35\xcb\x53\x17\xec\x7e\x42\xd5\x98\xed\xa5\x39\x0b\xce\xdb\x35\x0a\xe9\xb0\x18\x4e\x55\x77\x5b\x0d\x5f\xe6\x38\x3a\x01\xa5\xc3\x8e\x8d\xaa\x22\x10\x9f\x5d\x6e\xf2\x88\x50\x76\xc7\x5a\x48\x5d\x29\xf7\x2a\x98\xc9\xb2\x09\x0b\xea\x46\x39\xed\xe1\xbb\xda\xa0\xe3\x14\xb6\xb4\x95\xe5\x5b\x94\x8c\xf3\x61\x4b\xb9\x3f\x0f\x0c\x94\x88\x2a\xb1\x74\x4a\xa9\x9c\x14\xce\xa8\xd6\x64\x2f\x8b\x56\xd9\xa9\x14\xd7\xfb\x54\xa9\x34\xcc\x9b\xec\xb3\x2a\x07\xca\x8c\x79\x0d\x29\x90\xcc\xa2\xe9\xcd\x65\x18\xfd\xbc\x72\x06\x30\x61\xb4\x1c\x55\x77\x77\x7d\x86\x0a\x7a\x6e\xa7\x62\xce\x28\xbd\x55\xb7\x83\x6f\x28\x59\x0d\x2e\xcf\x71\x16\xdd\xf9\x74\x23\xb3\x34\x2f\x22\x98\xa7\xb7\x8e\xd5\x84\x88\x01\x65\x9e\x2c\xb5\x15\x09\xce\x2d\x96\x5e\xe3\x27\x75\x4f\xd4\x51\x8c\x5f\x89\x23\x8a\x81\x36\xfc\x64\xf2\xa4\x9d\xba\x25\x7d\xea\xcb\x59\xd2\x0f\x23\x1e\xf9\x89\xb2\xd5\x09\xd3\x64\x39\xca\x86\xb9\xea\xf8\xe0\xec\xe5\xc7\x6a\xe1\x8e\xb3\xbe\x0c\x95\xb9\xe9\x46\x7f\x28\x0d\x38\x27\xc6\x18\x84\x5f\x1b\x47\x99\xe9\x3d\xe6\xc4\x9f\x7f\x46\x71\x1a\x31\xfb\xfb\xfa\xe7\x3d\xd4\xb5\xc4\xee\x2e\x1d\x06\x40\x66\x61\xbc\x82\x23\x6b\xb3\x54\x4e\x3a\xe7\x4a\xd5\xfd\xd8\x8e\x0e\x8b\xb5\xa9\xb5\xf8\xab\xef\xd2\x2d\x14\xf7\x6b\x05\xb2\x8b\xb2\x5d\x8e\xae\xf5\xfd\x52\x0f\xe4\x5c\x33\x7c\x52\xd7\x4e\xed\x68\x15\x0b\x25\x87\x5d\x2a\x8e\xd9\x0c\xbb\xc4\xd0\x51\xf6\x0f\x7e\xbe\xeb\xb0\x1c\x90\x4e\xcb\x31\xfa\xd0\xb2\x85\xd2\xeb\xa2\xdd\x8b\x58\xf7\xe7\x9f\x2a\x72\xf2\xd5\x00\x8d\x56\x14\x68\x67\xb5\xa6\xf4\x59\x85\xb3\x5f\x1e\x27\xbd\x3d\xd5\x9b\x5b\x2f\xa8\xfd\x12\x06\xef\x95\x6a\x33\x7f\x13\x67\x19\xb2\xef\xed\x13\x17\x88\x77\x60\x9a\x29\x67\x3a\x5d\x5e\xc9\xa7\x94\xf6\xf8\x37\x4b\xe5\x2e\x8e\x5f\xc0\x2f\x69\xe0\xac\x0e\x1c\xf0\xaa\x24\x42\x10\x79\x96\xde\x62\x5d\x6b\x19\xa5\x23\x1e\xb1\xcf\xe8\x22\x95\x08\xb8\xd3\x2e\x4a\x7d\xa0\x04\xcc\x6f\x94\x0a\xfd\x28\x9e\xa5\x42\xe6\x72\xd3\xdf\x51\x9a\xf4\xf2\x29\xd7\x9d\x7c\x13\xe9\x93\xf5\x90\x52\x44\x2d\xb7\x31\xe2\x60\x9c\x84\x03\xd3\xdb\xa1\xe8\x78\xa5\xca\xce\xce\x69\x4c\xbd\xa8\x0d\x59\xd7\x9d\xc5\xd9\x1a\x85\x4f\xca\x60\xd7\x23\x20\xcf\xf2\x88\xa6\xe8\x78\xa9\x5d\x0b\xd5\x47\x48\xfc\x57\xc6\x5b\xd4\xcf\xe1\x69\xb7\x18\x29\x76\x94\xc3\xa2\x22\xb6\xa7\xe3\x8c\x27\x7a\x72\xbe\xd0\xef\xc5\x4e\x04\x21\x0f\x5f\x6e\xba\xab\xe6\xd3\x83\x94\x1a\x16\xd6\x36\x15\xce\xbf\x58\xae\x5c\xf1\xe3\xd2\x36\x99\xc5\x8b\xb3\x2c\x69\x6b\x61\x83\x38\x10\xd8\x77\x8e\x96\xa0\x90\xb7\x1d\x72\xab\x1f\xc5\xc3\x94\x25\x05\xb9\x4d\xe7\xbb\xd9\x79\x3d\xb1\xce\x4d\xef\xf9\x2a\xcd\x45\xbb\x03\xb6\x74\xa2\xb2\xa2\xb5\x6b\x40\x68\xc5\x1e\xde\xdd\x55\x2c\xc2\xce\x84\x22\x08\x2b\x25\x21\x19\xc7\xef\xbc\xed\x3b\xa8\xf6\x5f\xc1\xbc\x13\x87\x00\x9c\x2f\xd0\x61\x80\x62\xb2\x28\x5f\x3b\x9a\xc5\xf5\x52\xcd\xda\x18\x99\x4b\xc1\xf8\x37\x7f\xae\xab\x5c\x55\x01\x0c\x15\xc0\x72\xe7\x2b\x73\x56\xef\x84\xee\x8c\x9c\xbf\x4a\x89\xf4\x3c\x35\x9e\x85\xd0\x58\x53\x79\x72\xc0\xaa\x61\x50\x84\x83\x61\xb0\x22\x3a\x29\xec\x27\x88\x14\x4b\xea\x13\x77\x26\x7e\xac\xf0\x65\x90\x51\xcc\x76\x3b\x64\xed\x95\xb2\xf3\xc2\x0b\x6e\xb0\x6a\x7f\x2e\xfb\xca\xda\xe1\x9b\xe3\xe6\x3e\xf0\xd5\xd0\xf4\x31\xca\x44\xb1\x01\xd0\xa1\xc4\xe5\x9d\xe9\xd2\x98\x52\x86\xb4\x2d\x4b\xc7\x1c\x65\x74\xb4\xd2\xa5\x5f\xb0\x6d\x43\x09\x06\x41\x9e\x47\x79\x61\x1b\x1d\x08\x22\xf0\x7c\xe6\xc7\x6d\xd4\x4c\xd1\xb8\x02\x4e\x13\xdf\xe8\xae\x1a\x83\x5f\x56\x5a\xed\xa7\x5a\x80\x93\x73\x5e\x8f\x30\x21\x35\x26\x9c\xa2\x73\x5e\x51\x3e\x03\xe9\x30\x89\x3a\x0a\xee\x78\xa9\xd6\xa7\x75\x4a\x97\xcb\x41\x68\x76\xd2\x02\xb4\xa6\x6a\x36\x61\xbb\x4e\x7b\x85\xff\x7f\xcd\x79\xcd\x77\xa0\xc1\x2b\xca\xa1\x18\x3c\x72\x91\x67\x92\x8b\x15\x47\xcb\x26\x2f\xd6\x63\x93\x23\x7f\x43\xe6\x74\xbc\xd4\xec\xc9\xb7\x4a\xd5\x53\xbe\xa4\xb9\x01\x0f\xd4\x34\x7a\x94\x45\x43\xb3\xab\xf3\xab\x5f\xb6\xa2\x99\x1d\x2d\xc8\x63\xe5\x72\xde\xa4\x15\xce\x8f\xeb\xc2\x9a\x5b\x99\x9f\xfc\x62\x5f\x33\x3f\x1d\xfc\x6f\x60\xe2\xe8\x28\xdd\x62\x80\x04\x98\x0d\xce\x4f\x5a\x25\xef\x07\x29\x89\x3e\x4e\xb9\xe1\x26\x6e\xb1\x3d\xd6\xf7\x5b\xcd\x41\x95\x4c\x7d\x35\x8d\x12\xd3\xa3\x93\x05\x5b\xe5\x18\xdd\x57\x24\xec\x77\x6b\x2c\x50\x5f\xe5\xbd\xdf\x56\xa5\x51\x95\x3c\x99\xcc\x18\x96\xeb\x44\x9f\xf1\x1a\x0e\x43\x7e\xa2\x35\x92\x62\x16\xf6\xb4\x50\x63\xc5\xe3\xba\x62\xbb\x29\xa3\x8c\x48\xee\x82\xe3\x50\x39\x8f\x74\x04\x1f\xf8\x0e\xb7\xe9\x84\xb4\x82\x24\x49\xc7\x49\x68\x7a\x8f\xd5\xf8\x3f\xca\x49\xe5\xdf\xe2\x47\x21\xda\xdc\x2f\x1d\xfd\xea\xc8\x5f\x46\xb0\x52\x34\x2b\x29\x79\xef\x2b\x60\xfe\xdb\xb4\xdb\x30\xe5\x3a\x87\xc0\x87\x03\x01\xf7\x15\x2b\xe9\x11\xe9\x2c\x8b\xaa\x82\xbb\xaf\x6b\x59\x9a\xf4\x77\x76\xec\x68\x9b\x95\x89\xf0\x6e\xa8\xc6\xa5\x49\xed\x78\xaa\x50\x29\x92\x57\x28\x45\xa6\x13\xf8\x78\xf9\x91\x1a\xfa\x11\xe5\x2b\xb8\x02\x58\x7f\xf0\x5a\xc6\xc0\x95\xbb\x43\x5c\xc0\x50\x78\x67\xbb\x39\xfa\x01\x56\x84\xd4\xf1\xd2\xae\xfa\x8a\x3f\x79\x15\x89\x27\x5e\xc2\xe3\x6b\x1c\x56\xbf\x4d\x57\x86\x5b\xbb\x7e\x6d\xd2\xd6\x86\x72\x5b\x36\x71\x41\x09\xb7\x20\x61\x15\xfd\xf1\x9c\x5d\x08\x3d\xd3\x8b\xc2\xa0\xe0\xb6\x1a\x3a\x01\x1b\xbe\xa2\x80\xb1\xeb\x85\xd0\x38\xb6\xf6\xf0\xf6\xcd\xb1\xfb\x9c\xed\x24\x4a\x0c\xef\x58\x6b\xb3\xa6\x87\x02\xf1\x55\x0a\x70\x0c\x24\xee\x61\x53\xdd\x54\xe8\x81\x9b\x76\x92\x40\x52\x99\x51\x48\xdf\x91\xae\xf8\x2f\x3c\xad\x04\xc3\xee\xeb\xae\x42\x67\xd2\x26\xe2\x8f\x09\x97\x7c\x94\x35\xa3\x57\x03\x12\x8d\x8e\x4c\xb3\x6c\x3c\x2a\xa6\xf5\xdd\xf7\xb5\x1e\xf6\x45\xa0\x62\xd4\xea\x5f\xb0\x67\x45\xd3\xa5\xd7\x1b\x9a\x62\x5a\x87\xec\x52\xf1\x80\xd1\x9d\xc0\x5d\x61\x43\x1d\xc4\xdc\x8e\x52\x6b\x19\x99\x38\xe8\x99\x60\xac\xf4\xf3\xd9\xee\x85\x9f\x28\x20\x8d\x39\x1a\xf1\xd0\xfb\x88\x55\xc0\xda\xf0\x5d\x74\xda\xa8\xad\xe3\x78\xd5\xe0\xd4\xc2\xc5\x3b\xa1\xfc\x8d\xa0\xf4\x88\x72\xff\xb8\x0b\x1c\x71\x50\x2c\xa7\x55\x2d\x47\xbf\x08\x4d\xb1\x0f\x95\x12\xf0\x87\xb5\xf7\x4f\xc7\xc5\x5f\xa6\xf7\xe7\x42\x01\x2b\x5d\xac\xbc\x69\x88\xc2\x3c\x3c\xc0\x71\x79\xe3\xf9\x4e\x73\xe8\x18\x35\x99\x2c\x81\xe1\xf0\x2c\x47\xe9\x4d\xec\x5a\x56\x2c\x42\x5d\x2d\xdb\xb6\xfa\xb5\x78\xdb\xb7\x70\xdf\x36\x37\xca\xce\x17\x7f\x8d\xdb\xbe\xdb\x27\xca\x85\x0c\xca\xe4\x68\xdf\x6e\xfa\x6e\x4d\x9d\xf0\x15\xf1\xe5\x07\x38\x1e\x84\xac\x47\x49\x1e\xf6\xf7\x76\x32\x56\x47\x55\x75\x0b\x5d\x46\xe1\x66\xa0\x50\xb3\x2c\xc3\xea\xce\x8a\x31\x31\xdd\x1a\x74\x02\x77\x4e\x5c\x1d\x7c\xdc\x57\xae\xc1\xef\xa8\x40\xf4\xd0\xb6\xad\xb2\x71\x4f\xec\xed\xb9\x90\xa1\x3b\x26\x45\x4d\x9b\x40\x76\x50\x0c\x0c\x79\xa5\xf0\x2d\x13\xd1\x37\x77\x26\x5d\x54\x29\xdb\x52\x96\x06\xf4\x09\x8b\xb3\xd6\xcd\xd0\x71\xce\xaf\x95\x4a\x66\x7f\xd5\x64\x62\xa6\x23\x5e\x29\x9d\x79\x67\x75\xa8\x90\xc9\x69\x52\x18\x9a\x04\x56\xb7\x95\xf1\xf1\xb4\x24\x05\x2b\x2f\xab\x2b\x34\x59\x11\x2d\x47\xb2\x4f\xb1\x02\xfe\x65\xe9\xe0\x57\xff\xd2\xea\xfc\x07\x59\x7f\x3c\x34\x09\xda\xad\xb8\x67\xe8\xa5\x8b\xf5\x15\x9c\x50\x9b\xde\x08\x5e\x62\xa2\xfe\x60\x29\xcd\x06\x69\xda\xe3\x99\x37\x36\xef\x03\x45\x94\xbe\x58\x3a\xc0\x41\x53\x78\x7c\xe1\xe5\x83\x5e\x38\xa8\xf2\xc4\x38\x4e\xd9\x99\xc1\xf2\xd7\xe7\x9d\x67\xbe\x3b\x97\x93\x71\x96\x23\xa9\x14\x9b\xa0\x8e\x55\x08\xbc\xa1\xd5\xab\x82\xa4\x0f\xd5\x13\xab\xdd\x5f\x2d\x56\x0b\x08\x56\x8e\x96\x7e\x8d\xff\x54\x2d\x63\x09\x48\xd2\xfa\xc9\x0b\xb3\x16\x64\xbd\x7c\x10\x8d\xf0\x1d\x2d\xd1\xcf\x91\xfe\x94\xbf\x45\x92\x66\xc3\x20\x8e\xd7\x77\x38\x7c\x68\x47\x35\x42\xef\x96\xca\xd5\x96\x1b\xf4\x96\xda\x52\x7d\x49\x46\x46\xf9\x0e\xc6\x76\x46\x73\x93\xe3\xfc\xb1\x6a\xb3\xd4\x4c\x35\xd9\xfa\xaa\xee\x28\xe3\xcc\xe2\x58\xf9\x03\xc7\xc1\x2f\x72\xed\x8d\x8f\xd9\xde\x75\xcb\x12\xa9\x01\x81\x03\xfe\xea\x2f\x4e\x28\xaa\x88\x6e\x1c\x5d\x4a\xdc\x8e\xbf\x82\x3e\x16\x2a\xba\xa7\x26\xcf\xd7\x1c\xfe\xd2\xa4\x88\x92\xb1\x2c\x3c\xae\x00\x4b\xc7\xaf\xfa\x48\x91\x32\x46\x69\x94\x8b\x9e\xa2\xd5\xa2\x76\xf2\xec\xa5\x82\xc6\xde\x53\xf0\xb4\x95\xa0\x6f\xd6\x83\x61\x30\xe3\x98\x21\x30\xdc\xc1\xd7\xfb\x03\x0a\x5b\x7c\x41\x7d\x77\x0b\xde\xc7\xc5\x91\x2b\xdd\x06\x5a\x1d\x65\xe9\x32\x97\x37\x12\xf6\xaa\xcf\x90\x3b\xf5\xb4\xf2\x71\xa7\x89\xfc\x74\xb5\x0f\x51\x37\x77\xba\x6e\xd6\x0a\xc1\x0e\x8c\x95\x4e\x61\x75\xf1\x13\x0b\x50\x0e\x07\x81\xd3\x85\x12\x41\x26\x47\x57\xfa\xc8\xdf\x1d\x79\xa3\xcc\x2c\xff\x2d\xef\x85\x67\x71\xb7\x70\x51\x4e\x94\x6a\x48\x7d\x13\xc7\x27\x0d\xc6\x9f\xfd\x1c\xe0\xf4\xd8\xde\x17\xd1\x82\xb3\x77\xf5\x85\x17\x70\x3c\xff\x17\x7b\xbb\x74\x57\x91\x55\xee\xe8\x3a\x9a\xd6\xff\xf2\x2c\x34\x1e\x78\xe0\x4f\x65\x2f\x86\x4e\x8f\x77\xdd\x9c\x07\xd5\x0f\x9a\x88\x4f\x4e\x3a\xf3\xf3\x0f\xff\xee\x67\x48\x2c\x15\x09\xcf\x03\xdf\x49\x3d\xbd\xe9\x3b\xc4\xc3\x36\x9c\x14\x28\xdb\x9f\x9a\x38\x09\xf4\xc7\x29\xec\x23\x7a\xee\xed\xba\x42\x26\x09\xa2\x55\xc0\x38\xd9\x1a\x54\x89\x1b\x1d\x6f\x81\x89\x1f\xf4\x8a\x2c\x1a\x31\xf6\x43\x84\x46\xe9\x33\x91\xd9\x9d\x57\x2a\xde\xa7\x14\x39\x42\xec\xaf\x76\xd0\xb1\x27\x6a\xa8\x74\x82\x5a\xd4\x61\x75\x21\x11\x8b\xdf\xc4\xa9\xcb\x9a\xd1\x74\x29\x44\x3f\x5a\xf9\x0b\xbe\xd9\x36\xf6\x4f\xd2\x61\x94\xb0\x52\x2b\xb2\x17\x18\x19\x41\x1f\xe3\xae\xe2\x89\x7f\x58\x3e\xe6\xfa\xbd\x9f\xeb\x38\xda\x0c\x86\x41\xfc\xd8\x1e\x64\x61\x90\x17\x31\x3b\x24\x31\x56\xa8\x86\x1b\x92\x22\x73\x98\x26\x14\xe6\xd9\x33\x4b\xf4\x0b\x5c\xe9\x76\x4b\x8d\xd2\x86\xc6\x14\xa0\x8b\x8a\x3e\x71\xf5\xd1\xf6\x70\xfa\xe2\xaf\x69\xd5\xb8\x57\x18\x28\x7f\xac\x54\x47\x40\xb3\xdd\x5e\x85\x7a\xf3\xb5\x31\x68\x2c\xd8\x63\xd8\x14\xf0\xe8\xe4\xc7\xca\xfe\x32\x8c\xa3\x21\x3b\x84\x2c\x88\x67\x1f\x7d\x5f\xf1\xef\x73\x82\xd7\xc4\x7e\xee\x38\x9e\xf6\x77\x95\x90\xe5\x77\xad\x1a\x4f\x7f\x6c\x72\x1c\x73\x08\xaa\x0f\x95\xf8\xc3\x4d\xc0\x05\x05\xbe\xe4\xea\xff\x15\x63\x46\x4f\xb9\xa0\xa4\x11\xe6\xec\x2a\x29\xde\x68\x8a\x38\xfb\xcf\x4a\xa5\xc4\x72\xa5\xac\xf6\x92\x15\x51\x3c\x3c\x6b\xf5\x56\x68\x69\xf1\xcb\x71\x0c\xd8\xae\xe9\xdc\x21\xde\x71\x27\x7d\xd7\x49\xbb\xa4\xe0\x11\xdf\xa9\xa9\x99\x6f\x68\x7e\xe8\xa3\x52\xc9\x4c\x37\xad\x3f\x0f\xcf\xce\x79\x59\xd4\x1f\x14\x84\x04\x43\xfb\xfe\xbf\x29\x5d\xfb\xfe\x9d\xd2\x91\x3a\x1f\xf9\x4a\x62\xed\xae\x02\x7b\xf7\x4c\x6c\xfa\x90\x5b\x74\x9a\x05\x5c\xfd\xcb\xbc\x52\x08\x08\xc3\x20\x2b\x30\x41\x43\x65\x76\x42\x35\x16\x1e\xd0\xca\x12\xd3\x55\x75\xae\xec\xee\xd6\xd2\x6b\xd3\x9f\x56\x94\xf8\x37\x4b\x05\x09\xe3\x12\x4e\x0e\x4a\xd7\x20\x7e\xb3\x51\x43\xbc\xe8\x0d\xd3\xbc\x98\xa6\x5b\xcd\xa6\x4a\x5d\xda\xf9\xc2\x51\x74\x65\x5e\x6d\x4a\x77\xa9\x14\xa0\x59\x4e\xe0\xdf\x95\x74\x35\x0a\x07\x1d\x5d\xd8\xd7\x72\x88\xad\x65\xe4\xfe\x79\x4f\x29\x7f\xe1\x93\xef\xe2\xd2\x5a\xaa\xea\x3e\x29\x14\x3f\x51\x0e\x12\xcb\x26\x4b\x82\xa4\x97\xd2\x47\x09\xc9\x4a\xc3\x42\x9c\x29\xd7\x28\xc8\x3a\x8e\xfb\x08\x7f\x51\x7e\xdc\x4a\xfa\x21\xb4\xcb\x94\xd2\xa0\x7c\xa7\x64\x4f\x2f\x2c\x2c\x19\xc6\x3c\xa3\x2d\xc5\x4c\x3f\xcd\x40\x0b\x6d\xb3\x54\x7f\xdc\x4e\xb4\x86\x92\xcc\x71\xd7\xb6\x74\x2d\xc6\xdb\xb6\x04\x0a\xa3\x7e\x90\x99\xa2\x30\xd3\x6e\x4f\x02\xa2\xa0\x54\x24\x04\x54\x70\x4c\xa7\x6c\x4d\x10\x3d\x09\xbb\x2d\xb3\xab\xb7\xc3\xf1\x9f\x55\xb8\x99\xb3\x2d\x94\xa4\x79\x2f\x33\x81\x93\xd5\xc7\x3a\x84\xef\x05\x3f\xee\xba\xa6\xc8\x72\x9c\xae\x81\x52\xc4\x2a\x42\xbe\x9b\xed\x9d\x53\x8d\xde\xbc\x88\x86\xe3\x98\x37\x87\x55\xac\xc5\xc0\x4a\x4c\xa7\xb7\x62\x89\x16\x67\xbd\x71\x62\x8e\x8e\x4c\x58\x98\x1e\x4f\xef\xb9\x7e\xa1\x9f\x20\xb5\xcc\xf3\x75\x9c\xf8\xe1\x59\x52\xea\x98\x56\xea\xab\xbe\x1e\x5c\xd1\x6b\x6b\xd6\x59\x32\xd1\x6a\x91\xca\xcf\x07\x51\xc6\x9e\x65\xda\xcb\x4d\xdc\xf9\xdc\x78\xa3\x48\x29\x1b\xee\x38\xca\x01\x0b\xf7\x8b\x06\x5d\xcb\xcc\x37\x2f\x4c\xd0\x5b\xc7\x06\xb0\x0d\x49\x2b\xe3\x0f\x24\xa9\x74\x3c\x5a\xa8\xff\x3d\xb3\x4a\x22\x60\x87\x67\xad\xf2\xa6\x9b\x0b\x9e\x57\xf9\xe5\xef\x37\xc0\xf7\xd5\xab\x23\x19\x67\x69\xd3\xcf\x1a\xb3\x0f\x55\x02\xe9\x3f\x59\x6e\x67\x36\x32\x05\x24\x16\x11\xd6\x07\xbc\x35\xf8\x99\x63\x9b\x0d\x97\x82\x3c\x5f\x9f\x51\x39\x32\x62\x1c\xb0\x3d\x9b\x38\x27\x04\x19\xed\xb8\x3f\xa7\xb5\x5a\xcf\x7b\xbe\x25\x6c\x05\xf9\x0a\xdd\x51\x2c\x2d\x26\x88\x0a\x7b\xcb\x25\x42\x4f\x74\x5d\x3b\xfc\x52\x8d\xeb\x90\x25\x8f\xd1\xd9\xc2\x74\xc5\x52\x89\xa3\x00\x07\x68\x79\x8c\x87\x67\x6b\xa3\x07\xf4\xf1\xb7\x4d\x28\x28\xda\xb1\x69\x15\x2e\xc5\x52\x58\x69\xe9\xc3\x59\xc5\xb9\xa1\x59\x57\x09\x2d\xae\xe6\xef\xe1\xdb\xe1\xbd\xf0\xc2\xf3\xf4\xa5\xac\x2c\xd6\x57\xe6\x2c\x59\x10\xd7\x15\xff\x72\x81\x62\xa1\x08\x30\x3a\x3c\xcf\xc7\x38\xe3\x10\xf9\x36\x7c\x25\x61\xc5\xea\x2f\x76\x22\x51\x9d\x7e\x62\x0c\xec\x20\x1e\xef\xd2\xaf\x65\x78\xa9\xef\xb6\xf1\x47\xd4\xdb\xc6\x9a\xbc\x06\x0f\x04\xab\x68\x60\x0b\x89\xff\x19\x2d\x05\x01\xd3\x75\x2c\x4f\x80\xc9\xea\x4a\xbe\xfa\x25\xce\xbd\xfe\x4f\xbf\xf3\xa5\x23\x16\x11\xab\x8c\x2d\x2e\x2a\x87\xe0\x70\x9c\x17\xe9\xd0\x64\xf9\xd3\xd5\xf5\x63\x53\x06\x05\x08\xbd\xa5\x63\xe0\x77\x4b\xa5\x9c\xf5\x00\x77\x15\xb5\xc9\x0d\xc5\x82\xdc\xdd\xa5\xcb\x2c\x4a\x75\xd5\x6f\x10\x99\x4c\xfa\x76\xa8\x1b\x11\xed\xb9\x71\x00\x1f\x47\xa7\x76\x75\x58\xf2\xf3\xbb\x18\x66\x21\x80\xde\x21\x67\x24\xcb\x9e\xae\xae\xb2\x53\xcc\x76\x8e\x12\x2e\x83\x8b\x4d\xd2\x13\x1a\x11\x76\xaa\x1e\xb0\xde\xa6\x9d\x60\xab\x58\x27\xc2\x76\xb3\x0d\x73\x58\x0c\xb2\x74\x8d\xc2\x29\x12\xcc\xf7\x94\xe0\xe2\x7b\x8d\x3d\xff\x79\x2f\x31\xab\x26\x03\x3b\x4b\x9a\x0f\xd5\x97\xc4\x71\x8b\x91\x97\xc8\xd0\x2a\xf3\xb8\xd7\xb7\x0a\x16\x1e\x38\xe0\xed\xdb\xf7\xbc\x42\x76\x9e\xd0\xee\xd2\x17\x7d\x87\xa4\xb9\x59\x2a\x45\x80\x1b\x34\xe8\x61\x67\x54\x2c\x1d\x51\x50\xae\x16\x85\x10\xc9\xe9\x46\x59\x69\xa5\x23\x8e\x8a\x86\x8e\x1e\x47\x37\xec\x39\x9c\x1c\x27\xe8\xc0\x15\x45\x18\x87\xeb\x3a\xae\xfc\x97\xa7\xbb\xaa\x39\x7b\x42\xa9\x99\x1f\xa7\x75\x8b\x6f\x05\x0f\x75\x80\x66\xde\xaf\xe5\x92\xdb\xa1\x7a\x88\x0d\x7f\xad\x54\x18\xef\xce\xe4\xaf\x36\x71\xfa\x9f\xf3\x4c\x52\x64\x66\x94\x99\xc4\x8c\xb3\x88\xeb\x0b\x5e\x7d\xbe\xed\x27\x9c\xb8\xa4\xca\xe7\x74\x5c\xe4\x51\xcf\xec\xae\x59\xf0\x39\x52\xf0\x77\xfc\xce\xe2\xc2\x26\xaa\x68\x64\xc1\xd7\xea\xae\xa2\x56\xe1\xf5\x69\xb2\x30\xc3\x92\xfc\xd8\xaf\x99\xf8\xd5\x6c\xf5\x9a\x27\xff\x82\xb7\x64\xe2\xc8\xac\x72\x7d\x61\x8d\x6f\x17\x94\x41\x98\xeb\xb9\x1c\x2d\xd6\xa7\x3a\x73\x87\x36\x37\x28\x36\x09\x30\x87\x3e\x42\x8c\x37\x9b\x32\x30\x0b\xde\x38\x17\xac\x90\xf8\xc8\x38\xcd\x20\xa7\xf8\x39\x8a\x83\xbc\x88\x42\xb8\x4d\x5b\x15\x5b\xdb\x55\xfc\x85\xae\x45\x9f\x9c\xff\x79\xeb\x66\x17\x47\xc4\x75\x50\x5f\xfe\x5f\x29\xb5\x9e\xd3\xaa\x91\x7c\x52\x17\x76\x2f\x2c\xa5\x6b\x35\x3e\x56\x3d\x71\xdd\x5a\xb9\x1e\x7a\xd9\xcb\xc7\xd9\x72\x10\xc2\xe3\x90\x05\x7f\xd5\xc0\xf8\xb7\xb4\x07\x48\x51\x04\x9c\x15\xdb\x61\x9e\x1b\xec\x29\xf7\xc0\xd8\x04\xbd\xc7\xdc\x0c\xe7\xac\x96\xdf\x60\xf1\x77\xdc\xb8\xdb\xa5\xce\x91\x7d\xc7\x74\xb9\xae\x88\xf3\x30\x72\xe3\x17\xe0\x24\x40\x53\xe8\x22\xb6\x94\x3d\xb9\xaa\x5f\x8d\xe2\x62\xc3\x77\x9c\x0b\xe7\x78\xba\x16\x15\x83\x41\x1a\x43\xcb\x1e\x95\xa0\xee\x2e\x02\x7b\x82\x41\x41\x53\x59\x98\x58\x43\x59\x96\xae\x09\x5f\x1f\x75\xe5\x71\x25\x9b\x71\xbc\x06\x0a\x24\xb3\x9e\xaf\x88\xd6\xc5\x59\x5f\x6b\x55\x9e\xf2\x95\x0c\xc6\x59\xd5\xb6\x65\xf3\x05\x54\xec\x9f\x68\x6d\x31\xd6\xaa\xc3\x51\x79\xa5\x01\xae\x25\x7e\x2c\x72\xd2\x7c\x10\x8d\x80\x93\x15\xe4\x04\xbd\x0d\x3f\x69\x93\x44\x23\xdc\x36\x25\xe9\x38\x49\xa7\xa8\x99\x69\x95\xa4\xec\xbc\x8b\xbd\xa5\x24\x47\x6f\xee\x08\x2f\x5f\x33\xa3\x62\xda\x35\x16\x1e\xea\x2a\xeb\x7b\xa5\x93\x5c\x7c\xbd\x54\x33\xfc\x4e\xc3\x09\xea\xf0\xac\xb7\x9a\x46\x8c\x2e\x60\xe9\x4a\xed\x67\x72\xb9\xad\xe4\x39\xe8\x0d\xd2\x91\x99\x72\x79\x0e\x0f\x7f\x2d\xe9\xdf\x2d\x9d\xd7\x15\x40\x2e\xcc\xa2\x22\x0a\x83\x18\x4e\x19\x82\x51\xc5\xed\x52\xb8\x54\x01\x86\xa0\xd6\xc1\x72\x04\x38\x0f\x5f\xe9\x56\x4d\x2d\xd1\x7f\x46\x91\xbf\x56\xa2\xa4\x17\xa3\xdd\x85\x7e\x10\xcf\x18\xf9\x49\x23\x9d\x5e\x5c\xf0\x7a\x69\xaf\xcf\x84\x70\x61\x62\x2b\xcc\xe0\x47\x8d\x8d\xbc\x38\xeb\x05\xbd\x60\x64\x27\x77\x48\x40\x7f\xa6\x88\xe8\x3f\xab\x6b\x86\x17\xaf\x75\x34\xc7\xc3\xd7\x34\x85\xd3\x0d\x3e\xcc\xfe\x79\xcf\x24\xfd\x28\x31\x26\xe3\x29\x3d\xd6\xeb\x7f\x4d\xf1\x52\xb6\xb9\xab\x17\x78\x74\x87\x71\xcd\xfd\x4f\x85\x82\x13\x20\x24\xc8\xa0\x84\x85\x23\x17\x2d\x2b\x7e\xdc\x56\xc5\xfc\x7b\x7f\xe7\x8b\x5f\x58\x9c\xaa\x3e\x16\xd5\xef\x0d\x15\x0a\x99\xb7\x82\x88\xf0\xbe\x25\x1b\x2f\x65\x26\x28\x06\x4a\xfa\x84\x83\x85\x33\x4f\xd4\xd8\xa6\x78\xc6\x5d\xf5\x5d\xca\xd1\x8e\xc1\x91\x2c\x85\xaa\xa6\xef\xd4\xef\x5f\xd8\xdc\x28\x9d\x41\x78\x9f\x04\x66\xa6\x9c\x02\x20\xfb\x0c\x0b\xd0\xa8\x63\x05\xbd\x4f\x29\x61\xe8\xc4\x69\xc7\x30\x8a\xb1\xeb\x40\x4f\x0c\xdc\x06\xbe\xe7\x81\x6a\x97\x0f\x4d\x90\x14\x11\x94\x5a\x5e\xaa\x29\x9a\x8a\x29\xcf\x33\x5a\xab\x9e\xda\xf7\x4f\xd6\x94\xbb\x15\xfc\xf1\x87\xb8\x71\x38\x7d\x7f\x58\x23\xb5\x51\x99\x20\xc9\x8c\x9b\x93\x5e\xc3\xe6\xb0\x5f\xb2\xfa\x99\x22\x20\xa9\xeb\x07\xa5\xb8\xcf\x87\x37\x0a\x96\x9b\xca\xec\x8f\xb5\x07\x70\x2e\x5e\xa3\x6c\x46\x48\x4c\x8e\x70\xb8\x1c\x84\x51\x0c\xb0\x5e\x15\xff\x37\xc9\x1b\x69\xf3\xa2\x9a\x4b\xe7\xa3\x20\x5b\x61\x26\xa3\x9c\xf5\x14\xb3\x11\x03\x81\x6f\x10\xfd\xb4\x16\x16\x25\x77\x25\x9d\x90\x3f\x7d\x5d\x01\x8f\xef\x55\x9a\xb3\xab\x50\x9c\x25\xa1\x48\xab\xb0\xeb\x20\xb0\x10\x89\xb1\xfa\xfd\xb6\xda\x78\x44\x32\x85\xb8\x64\x6f\x94\x8a\x79\x7f\xc9\xae\xd9\x41\x1a\xc7\x55\x82\xeb\x60\x6b\x38\x6d\x2d\x0f\xdc\x99\x69\x43\x13\x0b\xff\x30\xd5\xfd\x4c\xcd\x98\x00\x4a\xa2\xd4\xa9\x58\x94\xd4\xfa\xbb\x0a\xa7\xf5\x5d\x3b\x52\x1c\x04\xa3\x91\x49\x08\xbc\x66\x4b\xb2\x99\xc9\x96\x6e\xcd\x4b\xbc\xb7\x1e\xef\xba\xab\x1d\x47\x49\x98\xc6\x89\x7a\xd9\x15\x8d\xd7\x2d\x4b\x07\xd0\xba\xda\x46\xc6\x2d\xa2\xde\x12\x0f\x65\xec\x8c\xae\x86\xa8\xb1\x13\xfb\x20\x1b\x06\xd9\x8a\xf2\x1b\x07\x29\x91\x1f\x6f\x4d\xed\xbf\x74\xc4\xfb\xd2\x91\x69\x85\xa4\x7a\xcb\x57\x4a\x4c\x6f\x29\x5e\xed\xef\xf8\x6e\x97\xff\x4e\xe9\x32\xb0\xbc\x30\xcc\x9d\xb0\x49\x67\xb5\x39\xd0\x30\x81\xe4\x37\xc2\xc4\xdb\x9a\xc1\xbe\x63\xb2\xd7\xce\x7e\x47\xeb\xd4\x89\x95\xa8\x8c\x3d\xb6\xa9\xd4\x3a\x36\x9d\xaa\x75\xb0\x62\x48\x40\x47\x09\x44\x72\xf1\x29\xa4\xf3\x16\xeb\x4f\x18\xbd\xe4\xca\x41\x8f\xc1\x38\x58\x5c\x57\xf1\x06\x18\xfe\x6b\xa4\xb9\x39\x4a\xae\x03\x31\x19\x87\x33\xf5\x09\xcb\x9c\x7f\x04\xcf\x10\x91\xdc\x6d\x83\x86\x34\x4a\x91\x87\x74\xe5\x30\xcc\xd8\xf0\x1d\x52\xfd\xa1\x8d\x7f\xd5\xcf\x88\xd3\xa0\xa7\x92\x90\x0b\xbe\xc2\x72\x5e\x50\x19\x6b\x9a\xf5\x4c\xb6\x47\x77\xcd\x1d\x87\x89\xd1\x00\x76\xba\x6d\x63\x0e\xeb\x95\x6b\x23\x47\xc4\x8c\x1a\x6e\x02\x5f\x8e\x5f\xd1\x55\xd0\xab\xff\x41\x23\xc5\x6f\x2b\x72\xed\x78\xb4\x56\x9d\x46\xf4\xa7\xd6\xa0\x5f\x99\xef\x37\x5b\xed\x0b\xc0\x45\x53\xa4\x57\x22\xfa\x92\xd3\xfe\xae\xaf\xd4\x4d\x2f\xaa\xe6\x93\x39\x1a\x9a\x51\xb1\x63\xab\xc0\x90\xc5\xe7\x5b\xbb\xd2\x63\x88\x5c\xda\x81\x47\x04\xa4\xab\xeb\x81\x02\xef\x9a\xe2\xca\x24\xe9\x52\xda\x5b\xa7\x9a\xdc\x9a\x1c\x5b\x99\xbf\xeb\xbe\x8e\x89\x4e\xf2\xef\xba\x22\x81\x0f\xd3\x14\x07\x32\x4a\x0d\x68\x64\xf0\xe3\x89\x4b\xf2\x8b\x34\xee\xed\x51\x84\x07\x64\xc2\x98\xc9\x4c\x77\x15\x84\xfc\x3c\x8a\x2e\x9c\x95\xa8\x69\x11\x4a\x67\x26\xaa\xf1\x75\xca\x77\x1a\x0c\x90\x3a\xe3\x17\xe0\xe0\x14\xf4\x6b\xf5\x95\xe5\x10\xdd\x7a\x37\x5e\x7d\xd5\xcb\xd3\x78\x55\x36\x9b\x74\xde\x95\x06\xf5\x95\x46\xfc\x79\xd1\x1b\x04\xe3\xd8\x36\x88\x91\xc8\xff\x73\xdf\x25\xf5\xff\xbc\x31\xed\x3b\xf4\xb2\xb7\x66\xf2\x6a\xfb\x74\x1c\x98\xed\xbc\xaf\x3a\xed\xe7\x15\x4e\x24\x37\x45\xc1\xd2\x20\xaf\x68\xcd\x9c\x39\x8b\xf9\x72\x55\x68\x18\x24\xbb\xb1\xed\xb0\xb2\x1f\xba\x71\xfd\x89\x27\xb0\xe4\x6d\xe7\xca\x5a\x0f\x40\x14\xc3\x72\x23\xa4\x07\xfd\xf7\xff\x7a\x57\x8b\xd2\x54\x57\x7a\x93\xd5\x53\x64\x32\xb3\xd7\xa6\x2b\x69\xd6\x0f\x92\xe8\xb5\xea\xc8\x54\xc6\xc0\x6a\xc2\x7f\x5d\x29\x57\xbf\xde\x26\x26\xed\xc1\xca\x14\xf0\x2d\xcb\xff\xb0\xb2\x91\x18\xc5\x61\x75\xbf\x83\x6f\x21\x6d\x7f\x65\x73\x1e\x24\x41\x2f\x78\xac\xa3\x98\xbc\xd5\x6a\x95\x21\x87\xa3\x7d\x30\x57\x09\xe9\xdb\xf6\x49\x75\x2d\x34\x05\x0d\xf7\xfa\x51\x0d\x78\x81\x55\x24\x90\xa5\xea\xca\x60\x7b\xed\xe9\x2a\xb5\xac\x53\xbe\x96\x3f\x9f\xee\x6e\x1d\x71\x56\xbf\x93\xe8\xf1\x41\xdf\x24\x05\x52\x04\xb9\xe3\x1d\x27\x24\xa3\x9d\xdb\xd1\x63\xee\xbc\xf0\x82\x83\x95\x2f\xbc\x7c\xd0\xf2\xbd\xdc\x5f\xc6\x26\x4d\x4c\xbc\x45\x6d\xcf\xf5\x1f\x2e\x37\x82\xff\xfc\xbc\x97\x05\xbd\xaa\x70\xa1\x65\x88\xd5\xf4\xae\xea\xb3\xbf\xab\xfa\x1b\xfb\xbe\xb4\xaf\x53\x0b\x51\xd5\x3b\x8b\xb0\x46\x43\xb2\x7b\xce\x5b\x32\x41\x01\xff\x4d\x29\xf6\xf4\x74\x46\xc5\xb1\x62\x9c\x24\x26\x9e\x52\x81\xbe\x54\x1a\x8c\xf7\x95\xfa\xdb\x85\x46\x32\xbf\x6f\x9f\xb7\xec\xf4\x2a\x51\xf3\x9e\x2f\x95\xbf\xee\x79\xdf\x59\xc0\xe5\x26\xc9\xa3\x22\x5a\x45\xe2\x57\xad\x0b\x81\xe6\xd3\x25\xe3\x27\x8d\xfd\x7d\xe8\x65\x8f\x6e\x16\xa4\x58\x71\x63\x2f\xe9\x43\xf1\x92\xef\xc6\xf1\xe3\xfc\x71\xda\x64\x48\x78\x18\x37\x84\x12\xf0\x0e\xed\x38\xec\x8c\x6d\x04\x98\xc0\xb5\xf8\x40\x0b\x9b\x02\xdd\x62\x07\x95\x56\x27\x12\xa8\x6b\x64\x4e\x18\x3e\x61\x87\x70\x75\x0c\x8c\xc1\x14\xf9\x8f\xd4\x12\x0d\x9c\x69\xcd\x2a\x68\xff\xbc\x37\xca\xd2\xa3\xa0\x94\x69\x7b\x53\x7e\x5c\x2b\x68\x4c\x2f\xe8\x38\x1a\xc6\x16\x5d\x31\xb7\x42\x06\xc5\x60\xda\x01\xd9\x41\x29\xc5\x41\xf3\x88\xa2\xb1\xf4\x9a\x94\x5c\xf6\x27\x2d\xae\xbe\xf3\x5e\x51\xa5\xc4\xc3\x34\x59\xef\x28\x1d\x46\xc4\x02\x31\x46\x76\xb9\xe3\x20\xca\x8b\x34\x5b\xdf\x55\x7d\x02\xce\x7f\xe6\x93\xb1\xba\x3a\xad\x1f\x54\x13\x53\x14\xcf\x2c\xfc\x72\xee\x90\x3c\x56\x00\xcf\x9f\x7f\x8e\xe9\xf6\xe8\x57\xec\xe9\xba\x08\x74\xa1\x11\xb5\x3e\xef\x85\x55\x8e\x1d\x8a\x18\x91\xf5\x20\xac\x7e\xa1\x28\xd5\x29\xff\xe8\x6c\x9c\x0f\x94\x7f\xf4\x9b\xca\x4b\xeb\x4d\x65\x5d\x3b\x1e\xe5\x06\x78\x62\x2b\xf3\xb5\x7f\xde\xca\x7c\x49\xb1\x17\x8c\x46\x71\x64\x7a\x3b\xe9\x1a\xe1\x4d\xa6\x95\xa0\xfb\x1b\x14\xed\x6a\x2c\x0f\xab\xf4\x6e\xfb\x74\x40\x6d\x60\xc5\xfc\x44\x2b\xf7\xdf\x6e\x11\xa2\xf5\x46\x26\x1b\x06\x89\x18\x7a\x5b\xfc\xa8\x6d\xe0\x9d\xb0\x89\x2f\x6c\xd6\x3b\x8e\xfd\xf3\x9e\xaf\xac\xc2\xde\x6b\x5c\xc8\xc5\x59\xaf\x18\x98\xa0\x30\x19\x65\x1d\xd2\x9c\x73\x28\x95\x8e\xfa\x65\x20\xb3\x08\x0e\x63\xeb\x76\x5d\x78\xf9\x20\x51\x01\xf0\x25\xb1\x0f\x01\x0a\xe1\xc7\x6d\x92\x52\x9f\xf3\x7a\x19\x89\x41\x5a\xd8\xfb\x4f\x7d\xd7\x39\xff\xa9\x1d\x5b\x07\x71\x9a\xf4\x1f\x53\xca\x4d\x57\xdc\xf0\xe4\x3f\xfb\x1c\x54\x94\x70\x35\x1f\xe0\x6a\x62\x02\x74\x17\x00\x5a\x9b\x91\x3b\x2e\xf5\xfd\xd2\xb1\x29\x1e\xe0\x1a\x89\x31\x49\x15\x21\x70\x26\x3f\xde\xb5\x63\x90\x7f\xba\x77\xe2\x3a\xab\x3b\x26\x2d\x30\xa2\x61\x30\x1a\x09\xad\x53\x1a\x76\x6a\x72\x7d\xbb\x51\xad\x7e\xde\x8b\xcd\x32\x2b\x19\x81\x9c\xc0\x1e\x0e\xfc\xc4\x0e\xe3\xc7\x49\xcf\x64\xfd\x34\x31\x1d\x45\x28\x3c\x49\x5b\x9b\x1f\xb7\x8d\x65\xfb\x41\xd6\x33\x09\x55\x17\x22\xc1\xe9\x7a\x1a\xaf\xfb\x6e\xae\xff\xae\xa2\x92\xb1\xd4\xc6\x94\xb2\x41\xba\xa8\x04\x7d\x31\x23\xc2\xcd\xf9\x1d\x95\x7c\x67\x26\x49\x22\xc3\x04\x3c\xcb\x95\xab\x2e\xaa\x24\xbf\x32\x40\x4d\x7b\x3d\x78\xf6\x72\xc9\x80\xa0\x84\x52\xec\xf9\xae\x42\x99\xdf\xe1\xc1\x23\x5a\x2d\x84\x3d\xd8\xdc\x54\x4d\xeb\x99\xc9\xd6\x36\xef\xc2\xe2\x82\xd7\xcf\xa2\x5e\x4f\xf4\xae\xac\x33\x9a\xc5\x30\x1d\x6f\x93\x5d\x0b\x96\xf2\x34\x1e\x17\x68\xf2\x31\x20\x5b\x29\x20\x36\xfb\xc9\x8b\xb3\x8b\x9e\x49\xfa\x41\x5f\xce\x3f\x96\x61\x46\xc1\x20\x9a\xcc\x4f\xaa\xa1\x6f\x1a\xb3\x1f\x88\xc6\x72\x4a\x8a\xdf\xd2\x8b\x25\x61\x55\x25\x2a\x0e\x1a\x0e\x9b\xc3\x95\x35\x59\xb5\xe7\x5a\x50\x07\x07\x1f\x57\xf4\x5f\xc0\x78\x70\x85\x21\xe3\x63\x31\x61\xd5\xfb\xb0\xdb\x54\xe9\xd8\x29\xf7\x15\xad\xe1\x04\x5a\xfe\x48\xfa\x6b\xb2\x2d\x4c\x6e\x61\xab\x4e\x0a\xea\x32\x5e\xa7\x5b\x6a\x9d\xf4\x17\xa5\x2e\xfd\xdf\x1b\x87\xe1\xe2\xac\x97\x04\x43\xe6\x65\x58\x8a\x9e\x63\xc0\x4e\x61\x5a\x86\xa5\x72\xb5\x71\x64\x1d\x38\x40\x66\xb1\x70\x2b\xa0\xf7\xb0\x73\xdf\x6a\xdf\xe1\x97\x9d\x54\xad\x97\xdb\x0d\x31\xab\xf9\x79\x2f\x1a\x56\x59\x21\x3c\xfc\x6c\x15\x74\x8b\x8e\x7d\xdb\xbc\xb1\x3a\xdc\x1f\x28\x2c\xc9\x28\x4b\xf3\x11\xc8\xfd\xa8\x40\xb0\x30\x2f\xa8\xc0\x7c\xa1\x74\x2d\x9d\xc2\xc4\x66\x35\x48\xfa\x26\x8e\xf2\x61\x47\x69\xe6\xe0\x05\x72\xd4\x3d\xab\x18\x11\x41\x68\x96\xc7\x71\x0c\xba\xb2\xe5\xc2\x59\x98\xe2\x25\x45\x6b\x0d\x07\x24\x1c\xa3\xd9\xef\x9c\xf8\xc9\x8c\x67\x0b\x3c\xa5\xda\x2d\x47\xe6\x0e\xed\xd4\xe6\xc0\xd5\xbd\xd2\xfa\xfc\xca\x9a\x79\x8e\xff\xe8\x5d\x64\xe3\x4c\x76\x53\x33\xd6\x2b\x18\xa5\x22\xb5\x3a\xa1\xb2\x93\xd5\x40\x04\x4f\x11\x54\x01\xbf\x68\xb3\xac\xa7\xdd\xcf\x7f\xa4\xcd\xbe\x46\x24\xe0\xef\x6e\xe3\x71\xc5\xab\x3f\x5e\x5a\x10\xc3\xaf\x1c\xc4\x6e\x44\x01\xc2\x93\x2b\x7e\xe2\x0e\xef\x38\x36\x7d\xd3\x9b\x51\x70\x2c\xfc\x21\x9f\xd1\x58\xd5\x98\x97\x6f\x2a\xef\x89\x73\x54\x78\x00\x89\xe2\x8e\xdb\x5e\x3a\x0c\x22\xc8\x13\x73\x75\xe7\x77\x94\xeb\xc2\xd6\xc0\x71\xe0\x80\xf5\xba\x52\x1d\x6d\xd6\x97\xe1\x27\x0d\x1c\xbe\x34\xdc\x07\xe3\x5e\x9e\x26\xe8\xfc\x5b\x9b\x00\x27\xd3\x60\xf9\x9d\xd4\x98\xcf\x8b\x28\x8e\xa7\xd4\xee\x41\x14\x44\xc8\xd9\x41\xb9\x15\x28\x79\x9d\x89\x4b\x7f\xf2\x51\xba\x62\x3a\xae\xbd\x09\x41\x42\xe9\x46\x3d\xe5\xd2\x1f\x13\x64\x02\xda\x41\xf5\x05\xa1\x5f\xc4\x98\xdb\xa5\x12\xf7\x7d\x46\xb1\xf7\xb3\x20\x8e\xa9\x00\xb0\x37\x0f\x33\x68\x69\x8b\xca\x59\x6f\x82\xac\x18\x4c\xb9\x4d\xb4\xa3\xeb\x2a\x91\xab\x9a\x36\x7b\x4f\xf5\x73\x87\x41\x3f\x49\xe3\x28\xc8\xa7\x54\x8e\xae\x64\x15\xd8\x8e\x9e\x4b\xe2\xc6\x79\xb9\xbf\xaa\xc8\x92\x30\xcd\x3a\x8a\xa2\x53\x9f\x91\xaa\x5a\x3f\x4c\xa7\x5d\x86\x05\xc9\x4a\x55\x9d\xc9\xa4\x90\xf0\xa8\x9b\x4f\x36\x4a\x51\xb9\xa1\x71\x54\x14\x31\xcc\x13\xd1\x5b\xbf\xa6\xa5\xbb\x3e\x51\xd8\xb2\x4f\x6a\x92\xcc\xb9\xe9\x3d\x5b\x7d\x24\x26\x73\xa7\xd0\x64\x92\xb6\x3d\xed\x4e\xb4\x1d\x76\x80\x25\x80\xbe\xd9\x3f\x42\x4c\xb4\x1e\x7b\x96\x60\x7e\xd7\x57\xc8\x9f\x0f\xe8\x8e\x0b\x54\x6c\xca\xb9\x4b\x7d\x44\xc3\x22\x45\xd7\x78\xa5\xee\x4a\x87\xa2\xf8\x3a\x7e\x3e\xde\xeb\x26\xb3\x83\x04\xfa\xe3\x5a\x1a\xdf\x2a\x9d\xb3\xe0\x9f\xd1\xcf\xb4\x4a\x08\x16\x28\x31\x85\x36\x94\xe0\x89\xb7\x9a\x4b\xfc\xb2\x37\xce\x31\xf7\x96\x72\x53\x91\x5b\xcf\xd7\xc6\x65\x5f\x1b\x1b\x76\x39\x13\xd0\x71\x47\xeb\x00\x1e\xb1\x83\x0a\xe8\xb7\xdb\x3e\xb6\xb3\x0a\xc0\x4f\x14\xf8\xb2\x6b\xd7\xf5\xe3\x34\xcf\xb9\x56\x02\xa6\x89\xc5\xba\xf8\x49\x63\xff\x53\xc2\x4b\x34\x21\xd0\x9b\xb8\xf3\x43\x97\x40\xba\x40\x5b\xcf\x48\xd2\x5d\x8d\x03\xc8\xa7\x21\x8b\xe1\x44\x56\x28\xe2\xf4\x91\x62\x70\xf6\x59\xa7\xf9\x5c\xed\xa3\xb5\x20\x1b\x46\x49\x5f\xd4\x8b\x15\x0e\x71\xce\x46\x7d\x17\x00\x4c\x5e\x18\xc9\xe2\xfe\x3f\x89\xd6\x1e\x38\xe0\x2d\xc7\x69\xe0\x0c\x7c\x80\x9e\xc1\xec\x12\x8b\x1a\x5d\x58\x16\x5c\x6a\x6d\x3f\x15\x83\xcc\x04\x08\x88\xc8\x32\xf9\x66\xf2\x93\xc6\xb1\x4f\xd6\xfa\x47\xc3\x41\x75\x96\xa2\xdb\xa9\xd4\x19\xe6\x6c\xc6\x29\xca\x42\x51\x16\xcc\x68\x9a\xc6\x05\x05\x78\x65\xc3\x2d\xfb\x0f\x8b\x02\xec\x83\x91\xcd\xe6\x9e\xae\x12\xe0\x8b\xc7\xf9\xce\x6a\xe1\x02\xfd\x75\x4c\x1d\x63\xdf\xa1\x3e\x1e\x3a\x0f\x2c\x1a\x80\x69\xca\xbb\xa5\x5b\xdd\xa7\x68\x49\xf1\x8b\x51\x19\xa0\x60\xbf\x5b\x5b\xae\x26\x4a\x76\x53\x9f\x09\x1d\x84\xb3\x9a\xd7\x80\xd2\x9e\x41\x39\x28\x76\xed\x54\x72\x71\xd6\xa1\x75\xac\xb0\xcc\xb6\x89\xea\xa0\xb2\xd8\x2c\xde\x97\xf9\x25\x98\x87\x6c\x7e\xaa\x6a\x6a\x1e\x24\x59\xb0\x32\xee\xa8\xa6\xd3\xf7\xb9\xd3\xc6\xcf\x1a\x8b\xbc\xba\x3d\xcc\x86\xfb\x74\xe5\xa1\xe7\xeb\x9e\x36\xc5\x5a\x9a\x15\x83\x75\x58\x36\xe3\xb7\xde\x05\xb4\x8a\x9f\xb4\x7e\x4a\x1c\x0c\x97\x4c\x56\xf0\x82\x15\x0d\x00\x35\xe9\xbd\xf8\xa9\x12\xfa\x66\x94\x99\xa3\xf8\x38\x04\xeb\x73\x5a\xd8\xf6\x9c\xc3\x9d\x98\xbc\xa0\xb9\x42\x75\x7d\xdb\xa6\xdc\x2d\xad\xbd\xd8\x04\xc5\x80\x77\xb8\xc5\x16\xed\xb7\x8f\x55\xd7\x94\x7a\xb7\x38\x10\x85\x18\x53\xbd\x88\x1f\xbb\x13\x7d\x14\x9b\xa4\x17\x11\xf6\x58\xb9\xcb\xe8\x68\xa5\x57\x50\x38\x66\xb1\xa9\x9a\x73\x81\x35\x59\xb3\xb2\xb0\x50\x90\x14\xfb\x34\x27\xec\x54\x64\x41\x92\x33\x1e\xa5\xe3\x28\x15\xe7\x71\xd0\xf0\x93\x96\xaa\xe5\x60\x15\x72\x0a\xb4\x41\xd1\xa4\x42\x23\x81\x1f\x37\x14\x2b\xbe\x32\x47\x68\x23\x0a\x6c\xe8\x94\xde\x53\x4a\xdd\x17\xb0\x9b\x85\x24\xbf\xf5\x3a\xdb\x1b\xc9\x36\xfc\x08\xd5\xa7\x95\x92\xcb\xe9\x46\x27\xe5\x45\x2f\x2f\x4c\x16\xc5\xd1\x6b\x52\xb8\x89\x61\x90\x03\x75\x9e\x55\xc2\x06\x69\x3f\x8a\x57\xd7\x77\x28\xc9\xb3\x2b\x28\x87\x44\x25\xa2\x63\x15\x6d\x58\x3f\x4a\x2a\x00\x3d\x80\xbb\xa0\x74\x62\xa6\x26\xad\x43\xd4\x70\x85\x3d\xcc\xd0\xfb\xfa\x75\xdf\xe1\x76\x7e\x5d\x75\x82\xbf\xf0\x37\xfe\x16\xfd\x95\x4c\xe2\x5d\x90\xbd\xdc\x66\x60\x99\x8d\x49\x1c\xed\x25\xdb\x4c\x71\x80\x92\xcb\xa5\x43\x6b\xb3\x64\x31\xce\xf9\xdf\x6c\x70\x83\x0e\x1c\xa8\x0a\x9d\xd5\x28\x27\x09\x43\x5a\xab\xcc\x45\xf1\x35\x2f\xc5\x8d\x27\x57\x4d\x52\x8c\x33\x03\x9f\x5d\x2a\xc8\x16\x9f\xa3\x84\x13\x7b\x72\xb3\x54\x08\xc8\x7f\x4c\x8b\xd8\x72\x0a\x9d\x0e\xd0\x5d\xa4\x2b\xe8\x84\x1c\x6f\x11\x08\xa4\xd9\xa3\xdc\x46\x34\xef\xd9\x8e\x90\x9f\xb4\x4d\x5c\xbf\x9a\xf6\x1d\x87\x5f\xfc\x54\x3a\xce\x5b\x45\xe1\xe0\xd2\x24\x5e\x7f\x9e\xf2\x27\xeb\x46\x7b\x44\xb4\x47\xd1\xc2\xd4\x47\x1d\xe4\x90\x1e\x9b\xa8\x25\x7b\x1d\xa0\x0b\x41\x7a\xd6\x87\x03\x4e\x34\xa7\x66\x71\x7c\x95\x6e\x0b\xe6\x75\x8f\x77\x95\x34\xe5\x4d\xc2\x2b\xcb\x28\xb3\xba\x66\x42\x4a\x57\xe2\x86\xef\xf1\xb2\x43\xb4\xdf\x3e\x51\x8a\x03\x00\x7d\x60\x63\xdd\xa4\xec\x0b\x70\xe7\x63\x5a\xbb\xf5\x5d\x65\xa5\xbb\x03\xdc\x1b\x31\x2d\x70\x88\x95\x38\x58\xcb\xc7\x51\x91\x4f\x57\x6f\x88\x41\xf2\xef\xe1\x4d\xb4\x4c\x93\xc8\x3c\x39\xea\xdc\xef\x35\xb6\x3f\x05\x8c\x88\x7d\x04\x04\x67\xa1\x1a\x5c\x00\x07\xc9\x39\x4a\x57\xd6\xb6\x27\x0f\xcf\x5a\x7d\x9d\x16\xe7\xc5\xd8\xac\x22\x52\xe2\x8d\xce\xaa\xb1\x74\x93\x68\xb2\x6f\xae\xfa\xef\xca\x9a\x31\x2b\xaa\x8e\xfb\x40\xd5\x71\x1f\xb4\x90\x53\x16\xbc\xcc\xf4\xb3\x74\x3c\x42\xb8\x13\xea\x88\x62\x3b\xe9\x38\x0f\x65\x86\x27\x3a\x56\x47\x6d\x17\xb2\x5b\xab\x06\xb2\x38\xbb\x79\x47\x89\x3b\x9d\x29\x9d\xbc\xc7\x3f\xc1\x02\x41\xd7\xf5\xa4\xaf\xe5\xb1\xa0\xa4\x88\xc4\xf1\x89\x09\x45\x67\x8b\x51\x76\xd4\xb0\x53\x00\xdd\x4b\x21\xac\xec\xa8\xcf\xea\xbb\x7f\x45\xeb\x2b\xc4\x69\xd2\x0f\xb8\x23\x86\xb4\x86\xf9\x10\xfc\xc4\x0a\xef\x99\xde\x38\x0c\xa0\x6e\x3a\x55\xdb\x8a\xaa\xa3\xe3\x2b\xfe\xc9\xdb\x8d\xf2\x76\xdf\x3e\x2f\x08\xc3\x30\x1d\x27\x2e\x8b\xb4\x60\xe2\xf9\xf9\x9a\x4b\x0a\x1a\x92\x27\x15\xae\x64\x64\x92\x24\x48\x8a\x29\xa7\x21\xfd\x01\x5d\x47\xcc\x00\x80\x4f\x92\x36\xa6\x83\x78\xc5\x51\x9f\x60\x35\x8a\xc9\xaf\xd4\x35\x9c\x82\x4c\x11\x44\x6b\x41\x62\x98\xdc\x62\x4d\x92\x2d\x6e\x85\x49\x75\xc2\x61\x92\x0f\xc8\xc3\x41\x1a\x07\x19\x53\xca\x98\x58\x50\x23\x7d\x29\x13\x9d\xd7\xdb\xae\x08\xb0\x5e\x4c\x09\x3d\x3c\xeb\xbc\x4a\x9c\x6f\x49\x63\x5c\xb6\x6f\x9f\xb7\x9c\x99\x84\x51\xbe\x28\x1c\x99\x3c\xc0\x4f\x14\xca\xbb\x97\xa5\xa3\x91\xe9\x4d\xab\x96\xcb\x34\x02\x0e\xee\xf0\x06\x7d\x94\x78\x11\x74\x2c\x21\xf4\x91\x3a\x8e\x82\x21\xa6\x58\x62\x65\xe0\x3a\x1a\xdb\x2c\x8c\x26\x1f\x19\xd3\x4b\x87\xa6\xe0\x7c\x48\xb9\xb1\x58\x04\xb8\x92\xd6\x0c\xd3\xe1\xd2\x38\xb7\xd4\x45\xec\xa4\xab\xd4\xe9\xe6\xc7\x75\x65\x8f\x95\x7c\x57\x75\xe7\x2d\x7d\x67\xbf\x20\x7c\xfe\xfb\x52\x65\x15\x14\xf0\x24\x91\xe8\x58\x62\x3a\xdc\x76\x14\xf2\x63\xce\xb2\xfb\x95\xb0\xe9\x4c\xb7\xc5\x89\x01\x49\x2b\x0b\x43\xa0\x41\xf2\x53\x7a\x37\x7e\xdc\x9a\xae\xe6\x85\x09\xb2\x24\x47\xbe\x22\x20\x7c\xed\x81\x77\x49\x2d\xec\xcc\x04\x55\x9e\xb2\xcb\x61\xa9\xdf\xc7\xd6\x15\x61\x72\x45\x69\x3d\x46\x85\x2b\x8e\x90\x8f\x95\x36\x03\xc4\x0c\x36\xcf\x92\x2e\x88\xcc\x10\x1d\xe9\x6e\xa6\xa1\x2f\x38\x77\xc8\x63\xaf\x1b\xd7\x64\x04\x12\x90\x1f\x2b\x80\x95\x59\x32\x59\xa7\x5e\x57\xd1\x0f\xe3\x27\xda\x0b\xbc\x08\x7a\xd1\x78\x38\x5d\xdb\x6e\x4e\x3f\xf1\xba\x06\x4a\x01\xac\x20\xfb\x50\x56\x11\x35\xcd\xe2\xd4\x8e\x57\x10\x1f\xb8\xcd\xcb\x4f\xd4\x60\x7b\x2d\xc8\x12\x93\x41\xe2\x5c\x82\x1b\x05\x27\x16\x53\xf2\x5d\xb4\x60\x5b\xd5\x9a\xed\x20\x06\x44\x10\xe9\x41\xf3\xec\xae\x1a\x81\x5e\x70\xb4\x6d\xa7\x3c\xd8\x44\x7e\xf3\x93\x06\x99\x90\x5a\x00\x81\x8d\x77\x48\x45\x30\x79\xba\xa3\x78\x69\x77\x94\x90\x17\xc1\xd0\x76\x3a\x80\xfb\x8e\x89\x32\x2f\xf8\xbf\x94\xdb\xce\x31\xda\x00\x62\xa4\x5a\x6d\x00\x1c\xe6\x77\xa9\x09\x8f\x0b\x0c\x2e\x07\x3a\x34\x53\xdd\xe6\xc1\xf6\x8a\x17\x9a\x2c\x18\x46\x21\x2d\x01\xd1\x0d\x72\x15\xf3\x95\xf2\x39\x97\x23\xad\x9a\x6c\x39\x4e\xd7\xc4\xb7\x1f\xa1\x1a\xaa\x7e\xfc\xb8\x05\xeb\xed\xf5\xcc\x92\xe5\x8e\x5b\x5f\x4f\xcb\x0c\x76\x85\xfb\x52\xba\x4e\x3c\x77\x74\x53\x18\x0e\x27\xc8\xaa\xce\xaf\x7e\xd9\xe6\xaf\xce\x5c\xfd\x7d\x8d\x0e\x3b\xe3\x86\x4e\x6b\xec\xb0\x2c\x93\x2b\x67\xf2\xcf\xae\x96\x00\x72\x5d\xc6\xba\xc4\xdc\x64\x17\xa6\x1d\xec\x10\xdf\xb4\x1e\x5e\x5c\xf0\xd2\xe5\xe5\x19\x85\x66\x3b\xa1\xfa\x5a\x3b\xba\x4e\xda\xe6\xba\xda\x93\x10\xee\xc1\x6c\xf5\x7d\x15\x4c\x7b\x4b\xd8\x74\x96\x4d\x6e\x35\x11\x2e\xb5\x78\x7f\xbf\x62\xad\x49\x71\x60\xf2\x0f\xa6\xcf\x61\xdd\x48\x45\xa0\xff\x5e\x5b\xd2\x93\x0f\x52\x37\xaf\xe4\x65\xee\xeb\x25\xdf\x26\x31\x65\xc6\x59\x3a\x32\xcc\xe7\xc7\xc5\x64\x63\x13\x7e\x52\x2b\x44\xa3\xd8\x3c\xdb\xb1\x6a\x4e\x6f\xa9\x9b\xcc\x4c\x2d\x0c\xa2\xae\x29\x44\xed\x43\x4a\xad\x71\x79\xd8\x97\x40\x4c\x27\xaa\x20\x06\x8a\xc8\xbf\xf6\x5d\xa3\xe6\x1c\x35\x26\x95\x5f\x95\x44\xc8\x05\xf4\x0f\xa4\x4b\x81\x48\x25\x52\xae\x4a\xa8\x83\x49\x2d\x48\x18\x58\xa5\x0c\x79\xdf\xed\x3a\x4e\xdc\xb5\x8f\x67\x00\xa9\x44\x2f\x83\x75\x73\x59\x05\xb1\xf6\xfb\x8b\x62\x7d\x07\xfd\x4e\xed\x55\x86\x95\x06\x52\x2d\x26\x54\x1f\xa2\x1e\x40\x1c\x43\xb8\xc5\x85\xf9\x2e\xad\x15\xfe\xff\x4a\x53\xba\x9f\x45\x66\x35\x48\x42\x2a\xf3\xad\x17\x7e\x8d\x37\xeb\x34\x0e\x19\xe5\x02\x5e\xdf\xf6\xae\xab\x6e\x07\xc4\x14\xe6\x10\x2e\xbd\x36\xdd\x78\x53\xd5\x50\x18\x15\xeb\xbb\x9c\x72\xfd\x45\xba\x63\xe2\x27\xed\xce\x8a\xdd\x5d\xd7\x7a\xe2\x1c\x14\xed\x85\x29\x88\x8c\xc8\x78\xae\xfa\x89\x22\x86\xe2\x38\x73\xb7\x95\x91\xda\x28\x4b\x0b\x02\xea\xe5\xca\x69\xfb\xc7\x8a\x48\xf7\x63\xc5\x02\xc9\x06\xa6\x48\xb3\x2a\x64\x59\xed\x5d\x66\x7b\xf2\x13\xd5\xbb\x8f\x4d\xf6\x94\x9a\x62\x3e\xc4\xb5\x97\x17\x55\x6f\x80\x8e\xd3\xe3\xdd\xaa\xe2\x12\x3d\x4b\x5a\x4a\x94\x74\x97\xcf\x10\x82\x48\x99\x75\xc8\xd1\xb5\x7d\xa2\x90\x16\xdb\xbb\x75\x90\xf7\xbe\x39\xcb\xc4\x9f\x72\x1e\x66\xd7\x4a\x37\xd9\x78\x72\xe2\x9c\xf9\xce\xa0\x41\xcb\x7c\x31\x2c\x50\x64\x9c\x9d\x86\xc1\x44\x55\x8b\xe4\x83\x74\xec\x4e\x13\x3b\x1c\x52\xf8\xad\x36\xd6\xf7\x28\x4d\x57\x38\x47\x45\x53\x67\x53\xf1\xb6\xb9\xe9\x2d\xf3\x6a\x27\x74\x65\xe2\x60\x29\xcd\x82\x82\x35\xd5\x34\xf5\x19\xbb\x13\x4e\xc7\x6c\xab\xa9\xf5\x5c\xcc\x30\x0d\xb3\x00\x14\x23\x6c\xa4\x6f\xe3\x43\x2c\x1f\xd8\xc2\xb4\x7e\xa6\xf8\xe7\xe7\xb5\xee\x48\x3a\x5a\x97\x98\x85\xca\x90\xc1\xc9\xfc\xa4\x4d\x7b\xa0\x9f\xc6\x26\x59\x4a\xc3\x15\xa5\x85\xc9\xbf\x8e\x9f\x34\x0e\xe9\x7d\xfb\xbc\x28\x09\xd3\x6c\x44\x3f\x94\xd1\x04\x32\xbb\xa0\xfb\xc7\x4f\xd4\xc2\x9a\xff\xc2\x57\x14\x94\xee\x8a\x02\x4d\x9c\xae\xcd\xac\xac\x3f\x5c\x3c\xce\xc2\x01\x4e\x41\x01\x71\xbb\x69\xd8\xc3\xc6\x1d\x5b\x9c\xf5\xf2\x22\xed\xf5\xd7\xa7\xdc\x50\x0b\xe6\xd6\x56\xba\xbe\x5a\xa4\xa2\x47\xe3\x9a\xfa\x6b\xd5\x56\xda\x53\x6d\x39\xdc\x93\xeb\xb4\x79\xf9\x31\x15\x9a\x0a\x5a\xb7\xb0\x49\xec\xed\x97\xf0\x1f\x09\xeb\x34\x0a\x9a\xdb\xdc\xa0\xcd\xca\x79\xa6\xef\x0c\x0e\xa9\x87\xb2\xb9\xa1\x8c\xa5\xc8\x27\x22\x5a\x1a\x17\x66\x86\xbe\x15\xc6\x43\x67\x28\xb6\x59\xbb\xd0\x6a\x55\xf3\x3f\xa8\x18\x72\x93\x3e\x04\x31\xed\x98\xbd\x58\x4b\x71\x90\xac\x4c\x2b\xc5\xf0\x07\xf4\x12\x1a\x2b\xfc\xe7\x68\x2f\xe1\x32\x74\x26\x0a\x09\x7f\x49\x5f\x86\x80\x90\x84\xf3\xaa\x44\xfd\xd2\x11\xdb\x2c\x6a\x01\x5d\x05\x45\x11\x15\xe3\x1e\x2b\xbf\x6e\x32\x7c\x0e\x21\x9b\x81\x09\xc2\xae\xa8\xbe\xb1\x3c\x76\x84\x9d\xd5\x74\x18\x55\xbb\x72\x46\x6d\x31\xd4\x28\x76\x11\x56\xb1\x47\x16\xa1\xe3\x31\x30\x7a\x11\xd7\xfe\x94\x12\x8e\xcf\x82\x90\x48\xbc\x16\x59\xfb\xba\xd2\x79\x7e\xbd\xb1\xf8\xa5\x47\x3a\x1c\x87\x03\x27\xc8\xf5\xcd\xbd\x5d\xc5\x46\x42\x8f\x86\x47\x81\xb4\x8b\x6b\xaa\xdc\x58\xe7\x37\x95\x8d\x50\xcf\x40\xa8\x72\x19\x1b\x51\xb7\x14\x6d\xb5\xde\x6c\x47\xce\x1d\xf2\x96\x03\x54\xdc\xac\xaf\xa0\xe8\x6d\xda\xa5\xe8\xab\xe3\x2c\xca\x47\xd9\xb8\x67\x92\xd0\x40\xdf\x91\xeb\x77\x3a\x8d\xa5\x96\x6f\xc1\x8f\x8f\x47\x83\x28\x86\x8a\x13\x72\x36\xd8\x3f\x0b\x75\xb5\x63\x1d\xc6\x4e\xab\xce\x4c\xcf\x14\x41\x04\xd6\x18\x2b\x11\x68\x5f\x21\x6e\xf7\x62\x4c\x73\x5d\x15\x01\x37\x91\x5c\xf0\x3f\x28\x79\xb9\x7e\x1c\xe4\x49\x9a\x03\x36\x6c\xa5\x10\x17\x5e\x16\x61\x8d\xf3\x75\x73\xdd\xc2\x3c\x5d\xdf\x06\xb6\xa5\xff\x41\x59\xdf\x38\xfb\x44\xf2\xeb\x67\xbe\x13\x06\xfb\x0c\x50\x09\x48\x57\xa6\x26\x2a\x8d\xb8\x8e\x62\x11\xd1\xf9\x77\x7c\x25\x3c\xfd\x2e\xe5\x06\x18\xd5\x5f\x52\xc5\xc3\xd7\x91\x14\x61\x2d\x4d\x10\xe5\x34\x1e\x08\x29\x16\xcb\x39\xb0\xaf\x8e\xd2\x5a\xb8\xaf\x0a\xbe\xd1\x38\x5c\x89\xf2\xc1\x5f\x40\x0b\xe2\x08\x68\x92\x7e\x31\x30\x09\xd7\x4f\x48\xe1\x37\xf0\x65\xf9\x89\xea\xc6\x8f\x32\x93\xe7\xac\xa6\x65\x37\x90\x03\x1c\x5f\xf6\x1d\x00\xa2\xde\xe4\xb7\xb4\xff\x03\x07\xe4\x71\x9b\x69\xd8\xaa\xc9\x62\xed\xa5\x89\xa3\xf3\xb6\x3a\xa2\x6f\x37\x7a\x98\x47\x16\xbc\x01\xb1\x4e\xaa\x9b\x68\x75\x9d\x17\x67\xad\x64\xf3\xf3\x35\x46\x97\xc9\x56\x41\xe8\x9a\x72\x66\xa3\xc7\x4b\x65\x36\x7a\xdc\x69\x87\x91\xc5\x5e\x47\x03\x67\x6a\x00\x19\xe7\xaf\x97\x19\x41\x21\xc5\xeb\xd4\x07\x43\xa4\x81\xb6\xb1\x90\xba\xdc\x58\xe9\x9c\x5e\xfd\x41\x12\x99\x98\x98\x2c\xa2\xe2\xad\x94\xd3\xff\xd4\xaf\x69\xb8\xd2\x8d\x97\x34\xb7\x63\x8d\xcc\x78\x42\x2c\xf2\x22\x2d\x89\xc6\x5a\x90\xe5\xc1\x5a\x47\x55\x66\x57\x14\xec\xc7\x99\xc6\xa7\xe3\x22\x36\x05\x68\xf3\xb8\xa7\xd7\xea\x8a\xe9\x1d\x6b\x75\xb9\xad\xeb\x72\x82\x35\xb8\x62\xd2\xc6\x67\x4c\x41\xe9\x30\x20\x57\x7c\x3d\xb5\xd2\x4a\x40\xe3\x7e\xdf\x50\xab\x29\x6f\x5a\x69\xa3\x85\xfe\x01\xae\x06\x9a\x33\x37\x55\x83\x21\x36\x05\x35\xb4\x0e\x0b\x84\x17\x73\x27\x7e\xac\xd6\xec\xd0\x14\x41\x9c\xef\x50\xf5\xfa\xf1\x52\x41\xab\xaf\x63\x37\x21\x19\xfc\x13\xfa\x64\x7c\x18\xc6\xcf\xbc\xe3\xff\x44\x59\x91\x2e\xa8\x84\x8a\xfc\x9f\x57\x4d\x6f\x9a\xe2\x0b\x4e\xbc\x47\x65\xed\xce\x38\xa3\xd6\x47\x9a\xd0\xa9\x34\x3b\xf3\x51\xc0\xce\x01\xf8\xfd\xa7\xe9\xef\xf8\x71\xb3\x6e\xdc\x67\x69\xa8\x9d\x9a\xb6\x65\xf5\x0d\xf9\x71\x9b\x73\xe9\x72\x9a\x16\x41\x9f\x37\x2f\xc2\x15\x22\x32\x3f\x56\x18\xec\xe5\x71\x96\x66\x53\x55\x8a\x22\x82\xaf\x14\xd6\xa4\x63\xed\x88\x98\xf7\x6d\x72\x90\x0f\x4c\x1c\xef\x70\xf0\x6e\x04\x2c\xe4\x19\x7b\xba\xce\x06\xe8\xa4\x92\xca\x63\x66\xbd\x98\x9d\x2a\x04\xd6\x2d\xbb\x07\x83\x2c\x58\xe2\xaa\x82\x3b\xa1\xda\x7d\xe6\xe3\x16\xbb\x55\x2f\x4f\x57\x23\x03\x04\x34\xc3\x0f\x7d\x25\x3d\x72\xd2\xea\xae\x8d\xb3\xbe\x01\x3d\xd1\xf2\x3a\x9d\x54\x2d\xed\x0e\x91\xfe\xa1\xb5\x23\x84\xcf\x27\x94\x35\x26\xdf\x36\x1c\xdd\xff\x50\xa1\xed\xff\xa1\xdd\x51\xab\x86\xe6\xcb\x4a\x26\xe9\x58\xa9\x65\x92\x8e\x35\x00\x1d\xfb\xf6\x59\x19\x69\x54\x06\xb5\x62\xae\xd6\x32\xc1\x12\xbe\xdb\x48\x9d\x5e\x7d\xd5\x8b\x92\x65\xd1\xd8\x9a\x77\x9e\x50\xf4\x35\xc4\x3a\x4a\x7b\x83\x45\xe1\x0a\xdd\x70\xe4\xa1\xd7\x95\x99\xe1\xeb\xaa\x3c\xbc\x64\x2f\xde\xc0\x98\x7c\x4a\x6b\x55\xdf\x2b\x95\x1f\x3c\xd7\x61\x78\xb3\xa7\xba\xcf\xaa\xe2\x61\x38\x4a\x13\x93\x14\x39\x31\x27\x95\x40\xf6\x2b\xce\x10\xcd\xd6\xb8\x08\x22\xd8\x75\xec\x79\x87\xc3\x78\x67\x57\x4d\x8b\x15\x1f\x22\x49\xb3\xc8\xf4\x03\x1a\x15\x40\x1d\x00\xcd\x4c\x91\xa9\x73\x8d\xcb\xb7\x1b\xd3\xec\xfd\xf3\xde\x38\x89\xd3\x70\x25\x47\xad\x81\x77\xbf\xa8\xfb\x19\x17\x7d\xa7\xa9\x18\xc6\xe3\x9e\x21\xf3\x1d\x80\xb0\x76\x4e\x9a\x76\x8e\xc8\x7b\x20\x50\x82\xe3\x7a\x17\x68\x68\xf6\x77\xeb\x3c\xc7\x95\x5e\xdb\xa9\xbe\x15\x6c\x90\x83\x78\xe7\x51\x3f\x31\xbd\x9d\xd5\x95\x43\xbd\xd6\x01\x05\xb0\xe6\x35\x61\xfd\x46\x17\x05\x02\x00\xfd\x21\x1c\x43\xc0\x1d\xa2\xf9\x0e\x5e\x01\x06\x97\xbb\x26\xee\x26\x05\xd9\x52\x54\x64\x41\x9f\xe7\x05\x38\x7c\x18\xa0\xcf\x4f\x9c\x96\x5d\x10\x0b\x01\x44\x1a\xe8\xf4\x95\xa4\xb7\xde\x82\xf5\x36\x47\x47\x71\x14\x46\xd8\xa1\xb8\x2c\xdf\x53\xba\x47\xdf\x53\xb1\x3b\x27\xbf\x8a\x69\x87\xd4\xfe\x44\x89\x2f\x31\xfa\xc6\x42\x31\xec\x64\x6f\xa3\x26\x24\x12\x64\x59\x47\xe1\x4a\xc0\x23\xe7\xc7\xba\x81\x21\x32\x13\x8a\x7f\xf5\x1d\x7a\x53\x7e\xdc\xe4\x79\xed\xf3\x82\x25\xb6\x71\xdf\xbc\xe1\x86\x35\xff\xd5\x33\x5d\x07\xf0\x80\x57\x14\xc2\xe8\xf4\xa4\x39\x7f\x5d\xf0\xf2\x60\x1d\x8e\x97\x68\xb2\x3d\xf0\x15\x5c\x88\xc9\xc8\x22\x92\xe5\x68\xbe\x8f\xb0\xc0\x90\xd0\xde\x6b\x99\xeb\x7a\x69\xdc\x63\x2d\x04\x81\x07\x28\x5c\x20\xda\xef\x22\x61\xf8\xbc\x36\xd0\x5a\x35\x09\x66\x89\x04\xaf\xc4\x76\x9b\xee\xba\xab\x7e\x4e\x09\x56\x23\x1d\x10\xcd\x68\x3b\x97\x48\x83\xa4\xce\xd8\xe6\x66\x9f\xcc\x4f\xb7\x5e\xc8\x17\xbd\x22\x2a\x62\x69\xe1\xdb\x00\xe7\x54\x57\xce\xf8\x7b\x75\x0b\xc3\x04\x49\xca\x4d\x29\x9e\x34\xd1\xf2\x91\xa9\x53\x9b\x9a\x63\x1c\x14\x26\xa3\xcc\x0c\x97\x6c\xd3\x57\x0c\x15\x16\xb1\xc5\xf5\xbf\xdc\x28\xe1\xf6\xcf\x57\xa7\x9b\x29\xb2\x34\x5c\xd1\xd6\x29\x27\x14\x54\xf2\xc4\xa7\xda\xa7\x8d\xd2\x38\x0a\xd7\xa7\xdc\x44\x1e\x63\xd4\x9a\xe0\x06\x4e\x82\x93\x8d\x4f\xa6\x41\x45\x96\xc6\xf1\x16\xc7\x71\x7e\x19\x3f\x69\xa1\x36\x1e\xf4\x82\xe5\x65\x13\x62\x8b\x29\xaa\x81\x68\x98\x1d\x6b\xa3\x43\x2e\xc1\x71\x43\x2b\x53\xbf\x5d\xaa\xb4\xe9\x6d\xd5\x8c\x5c\x4d\x0b\xb3\xcb\xb1\x92\x8e\x97\x4e\x79\x15\x1d\x78\x91\xe3\x52\x8b\xee\x4d\x5f\xd9\x90\xdc\xa0\xc5\xcc\x8f\x81\xc4\xc3\x93\x5b\x8a\xb4\x7b\xd7\xd7\xb2\xde\xe6\x39\xc5\x8e\x7d\x0a\xdd\x4c\x69\xae\xab\x59\xfb\xc3\x72\xea\xc8\xe2\x6c\x2d\xc3\x41\xcb\x79\x3b\x06\xfe\x88\x32\x8f\x54\x9d\xf7\x58\x4d\xf0\x9b\xbc\x44\x5e\xda\xdc\x70\x56\x1b\x9f\x7d\x06\x56\x6e\x62\x2d\xed\xb2\x99\x8d\xb2\x73\x64\xc1\xc2\x46\x69\xf9\x22\xfd\x9d\x21\xb7\x7b\x9c\x0c\xef\x97\xce\x38\xfb\x0f\x49\x4c\x0f\x8f\x6f\xd3\x45\xa3\xbf\xf9\x1f\x3d\xc2\x7a\x08\xc3\x18\x27\xea\xeb\xad\xb2\x5c\x71\xda\xb7\xa4\x55\x3e\x6c\x68\x33\xcb\xc1\xe3\xb2\xb8\x62\x10\x25\xfd\x9d\x8a\x2f\x7b\xbf\xac\x13\xbb\xab\x9c\x0e\x17\xfd\x34\x05\x45\xb6\x0c\x41\xd9\xca\x2f\xa1\xf2\xb2\xa6\xba\x23\x54\xf0\xe7\x54\xe8\xec\x99\xe1\x08\x58\x35\x7a\x53\x5c\x9c\x7b\xf4\xfb\xf8\x71\x5b\x46\x9a\x9b\x62\x29\xa8\xf6\x94\x6b\x29\x9d\x2f\x35\x04\xb5\x6d\x27\x86\x03\xd3\x1b\xc7\xb2\x4c\x51\x43\x43\x52\x81\x1f\xab\x3c\x36\x1f\x57\xa7\x79\xb5\x1c\x6d\xf9\xb2\x38\x6b\x89\xe3\xcf\x28\x45\xd2\x0c\xb3\x54\xba\xfa\xc2\x35\xec\x58\x83\x10\x87\x8b\xff\xea\x38\x8e\x4c\x87\x30\x49\x58\x54\xbc\x15\xf9\x89\xff\x98\x02\x2f\xfd\x3c\x5d\x0b\x74\x90\x9e\x41\xbf\x07\xe3\x8a\x6f\xd2\x82\xb0\xab\xed\xc0\x81\x83\x56\x2e\x16\x70\x6d\xdb\x25\x58\x14\x23\xee\xbb\x10\x01\xc0\x3f\xdc\x44\xdf\x0e\x5b\x0c\xce\x10\xc8\x34\x6e\x62\x23\x89\x83\xac\xd2\x6c\x61\xf0\x0e\x7b\x5d\xa3\x1b\x82\x78\x7e\x5b\xf9\x3f\x9c\x41\x2d\x04\x90\xd8\x49\x5f\x21\x24\x8e\xd1\x3a\x90\x16\x09\x11\xfa\x34\xbc\x50\xfa\xd5\xd5\xa2\xc7\xe2\x3e\xee\xd3\x2e\xc4\x07\x7e\x93\x33\x5e\x50\x98\xee\xfb\x8a\x22\x02\x7f\x06\x2c\xb0\xa7\x49\x2a\x5d\x32\xcd\x8e\x95\x7b\xfa\x86\xf6\x2f\x7a\xbf\x25\xe5\x9f\xf3\x96\xa3\x58\xd8\x10\xd8\xdf\x57\xe9\xf6\x61\xf2\x34\x33\xd1\xf6\xcd\xb6\x64\x59\x4b\xb3\x95\x9c\x82\x18\xbe\xd7\x29\x6c\x60\x08\x4f\x3c\xd7\x55\x4e\x2a\x6f\x68\x58\x1c\xe6\x82\x35\xb2\x20\xca\x99\xbb\xb8\x95\x4a\x4e\x56\x4c\x88\x9a\x9d\xe4\x7d\x73\xde\x52\x6a\x6c\x58\x17\x94\x62\x0d\xc0\xd8\x60\x6a\x2d\x78\xcb\xd1\x51\x59\xf9\x2c\xba\x56\x13\x60\x6b\xc1\x61\x55\xf9\x19\x15\xc9\x2c\x49\x44\xf7\x51\xe4\x89\x9c\x68\x45\x16\x0d\x41\x73\x16\xad\x7d\xfa\x26\x22\xb6\x6f\x15\x89\x03\xb2\x2e\x67\x9d\x03\xe9\x1d\xd0\x25\x40\x2e\x71\x0f\xb7\x56\xae\xa7\x53\x6c\x8d\x57\x76\xd3\xbf\xd8\x63\xcf\x69\x73\xfe\x59\xa9\x9c\x82\x79\x3b\xa1\xf2\xb8\x47\xfb\x04\x81\x6d\x27\xe5\x54\x78\xf9\x33\x5d\x45\xf2\x43\xe2\x27\x9a\x9f\xd8\x3f\x32\xeb\x6b\xf2\xab\x17\xbc\x28\x49\xd2\x90\x18\xed\x1a\x20\x7a\x46\xf3\xb4\xce\xd4\x14\x9f\x86\xa3\x88\x73\x93\x05\xab\x32\xe7\x98\x89\x67\xfd\x2d\xe4\xbf\x23\x8b\xb3\xde\xfe\xf9\x3d\x8e\xef\x77\x55\x39\xb4\xb1\x5c\xa9\x05\x8c\xef\x57\x11\xec\xb0\x93\x8c\xa3\x35\x81\xd0\x73\xae\x74\x16\x35\xec\xa1\x86\x0a\xf3\x47\x1a\x4e\x81\x41\x13\x76\xe4\x4c\xb7\xe6\x91\x1f\xa0\x2a\xd7\x8c\x5d\xd1\x68\xeb\x58\x85\xd2\xd3\x35\x8a\x01\x3e\x1f\x1d\x49\xf8\x32\xca\x2f\x79\x4c\x33\xd7\x14\x28\xca\x77\xcc\x94\xdb\xd8\x05\x62\x81\xd3\xf9\xd5\x2f\xf3\x5c\xf7\xc7\x64\xb3\x80\x2b\x3c\x0d\x9b\x05\x1c\x9c\x8c\x32\x67\x29\x16\x5c\x21\xe4\x94\x7b\x30\xfe\xb7\xc1\x69\x71\x56\x0a\x8b\x6f\x2b\x3c\xcd\xeb\xbe\x4b\xb1\xff\x44\x71\x28\xdf\x26\x46\x00\x92\xa4\xb3\xbe\x96\xf9\xc4\x2a\x41\x64\xde\x36\x51\xc3\xa4\x37\x91\x09\x0a\x57\x9c\xc2\x24\x7e\xd6\x95\xb2\x73\xe8\x65\xa7\x08\xb3\x28\xfe\xe3\x1b\x84\x49\x45\xea\xf9\x0f\x6a\x93\x1c\xed\xe4\xc8\xaa\x0e\x68\x32\x4d\x75\x3b\x5f\x99\x13\x55\x63\x5a\x4a\x68\x11\x73\x31\x27\x74\x62\xc5\x0d\xb8\x83\x88\x8b\xb4\xe0\x9f\x01\x4b\xc8\x4d\xb8\x89\x42\x4b\x5c\x6b\x3b\x30\xd3\x55\x93\x2d\x8d\xa3\x98\x72\xc1\x4d\x54\x71\x9b\x0f\x6c\xff\x77\x98\x26\x51\x91\x66\xa6\x07\x0c\xa8\x88\x3b\xd1\x35\xb1\xa6\xea\x16\x85\xf2\x8f\x6b\xc3\xe9\x52\xb1\x5e\xb6\xd5\x56\x9d\x09\x79\x34\x89\xbf\xbc\xa1\x5c\x29\x7f\x46\x0b\x4a\x34\x54\x9e\xb7\x11\x48\x1c\xdf\x86\x26\x29\x66\xaa\xeb\x8b\xf1\x13\xb7\xa2\x15\xb8\x40\x62\xef\x4d\x7a\x53\xfe\xab\x52\x15\xdf\xef\x34\xa2\xed\xa1\x97\x59\x6b\x4c\x89\x6c\x9d\xa1\x1d\x67\xad\xd0\xab\x35\x8b\x2f\xf5\x33\x5d\x70\x9b\xa4\xc8\x02\xd4\x25\xd6\x35\xc6\x7a\xff\x34\xf1\x7f\x87\x5e\x66\xc1\x9a\x9a\x5d\x11\x7d\x92\xe0\xa9\x1a\x04\xfc\x97\x0f\xea\x8e\x15\xaa\xc6\x4d\x5c\x67\x7e\xa2\xe8\x4e\xc5\x9a\x49\x0a\xe6\x68\x88\xb0\xa1\x0b\x35\x1f\x35\x0a\xc1\x7d\xfb\x28\xf8\x4e\xb9\xfa\xed\xc9\xae\xf2\x6d\xbf\xa8\x78\x2a\x3b\x27\x4f\xab\x9e\x69\x9e\x07\x7d\xb3\xd3\xe9\x84\x9c\x2e\x1d\x76\x92\x1b\x62\xe2\xfb\xa7\x38\xc8\x97\x94\x60\xdb\x43\x5f\xc9\x42\x80\x83\xcc\x6f\xd5\x58\xa6\x73\x87\xbc\x81\xc9\x92\x28\xb0\x4a\x5f\x38\xf8\x3f\xf2\x5d\x12\xf0\x51\x0b\x18\x86\x2d\xea\xed\x31\x2a\x32\x9b\x0e\xc6\x7f\xac\x6d\x0a\x16\x44\x68\x6c\x08\x13\xab\xa3\x44\xe0\xed\x91\x95\x45\xc3\x1d\x4a\xdb\xf7\x9e\x8a\xb0\xd7\x74\xa3\xe5\x9e\x4a\xe6\x30\x5c\xc5\x66\x7c\x4b\x35\xc0\x9b\xd4\x99\xb9\x43\x9e\x49\xe2\x20\x13\xf6\x94\x94\xc6\xb5\xa2\x59\xef\xa8\x7e\x3a\xc2\x6f\xb4\xb3\xb4\x03\x07\xe4\xb1\xd2\x0e\x18\x55\xdb\xbd\x58\x47\x03\x1f\xe1\x95\xb3\x45\x0b\x07\xb7\xd3\xa6\xf7\x6c\xc5\x5e\x0c\x0c\xf9\x16\xd8\xae\xc5\x65\x45\x4b\xb9\xdc\x38\x46\xa5\xb4\x25\xdd\x53\x65\x18\x32\x35\x71\x0c\x9d\xb3\x3a\x52\xec\x6e\xe0\x37\x09\x13\x90\x45\x71\x8c\xac\x03\xb1\xff\x5f\xe1\x35\xfc\xa4\x36\xa5\xcb\xd2\x6c\x46\x4d\x4c\xcf\x6f\x69\x48\xeb\x4e\x75\xb5\xe8\x10\x08\x6e\x29\xf7\x85\xab\xca\x57\xa9\x67\x56\xa3\x2a\x40\x39\xf5\x5b\x00\x68\xb0\x54\x3b\x13\x67\xeb\xb6\xa3\xeb\x4a\xde\x25\x51\x8c\x61\x09\x49\x45\x73\x79\xd0\x2a\xc4\x11\x66\xe3\x1e\x07\x02\x69\x91\xa8\x76\x89\xb2\x25\x5d\x4d\xab\x82\x8e\xee\x92\x80\xfd\xe9\x44\x14\x85\x4b\x6d\x9c\xdc\x5b\x4e\xb3\x1e\xa8\x45\xc8\xfa\x20\xec\x64\x9b\x95\xd5\x89\xc5\xff\xe0\x3b\x7f\xab\x8b\x8d\x48\xf5\x4b\x6c\xa7\xa8\x0d\xd8\x2f\xf9\x4e\x55\xdf\x29\x29\xc6\xe3\x70\x45\xb6\x25\x17\xa6\xba\x21\xfe\xba\xc2\xac\x17\x59\x14\x24\x7d\x96\x6a\x15\x3e\x87\xe2\x76\x94\xda\x6d\x74\x38\x1c\x27\x51\x5e\xec\x76\xf7\x9f\xf1\x0e\x5a\xb6\x58\x90\xb6\x2e\x6d\x39\x8f\xb0\x62\xb5\x30\x16\x05\x24\x7c\x5e\xeb\xea\xe9\x41\x2a\xd3\xf7\xf8\x49\x59\x9b\xbb\x44\xc9\x8c\xc6\xd8\xe8\x46\x44\x93\x45\x81\x9b\xfd\x7d\x25\xa4\x77\xb6\x05\x17\x38\x4f\x02\x1e\x69\xce\x3b\x5b\x46\x60\xd5\xa5\x15\x92\x8d\xe2\xd5\xa7\x43\xaa\x3b\xab\x2f\x88\xef\xc0\xa7\x2a\x3f\xf1\x1f\xb7\xab\xe4\xb5\xa5\x25\x6a\x60\xa1\xa6\xb9\xa5\x68\x5a\xec\x4b\xc9\x7e\xe0\x6d\x26\x98\x5f\x1b\x07\xbd\x6c\x3c\x72\x7d\x24\xc4\x54\x34\xc4\xf9\xb1\x3a\x65\xe2\x60\x9c\x99\x64\x5a\x61\xb4\xbe\x83\x63\x18\xb3\x2b\x2e\x94\xf8\x89\xd2\x8a\xfe\x4e\x8b\x4c\x87\x67\x56\xd3\xd8\x85\x68\x69\x97\x39\x44\xd9\x09\x2b\xa4\x16\x2c\x2f\x47\xd9\xd0\x19\x83\x88\x2b\xb1\x6b\xb3\x69\xed\xa3\x20\x59\x27\xa5\x3e\x24\x73\x22\xfc\xe4\xf8\x58\x50\x61\x56\xd5\x98\xa0\x4e\x7e\xd6\x26\x49\xb7\x6a\x0a\x93\x31\xc3\xd7\x1e\xdb\x16\x72\x7f\xbb\x26\x04\x6c\xbd\x09\x83\x22\x88\xd3\x7e\xae\x30\x6f\xec\x2f\x2d\x3d\xf8\x16\x22\xd7\xaa\xe9\x9b\x22\xa8\x36\x8a\x54\x20\x72\x2f\xe8\x95\x72\x33\x9e\x50\xc1\x2f\x88\xf9\x2f\xb1\x35\x6f\x97\x4a\x36\xf0\xb6\x9d\x94\x2d\xf1\xec\xa2\x7a\x17\x4b\x79\x74\xf4\x47\xad\x53\x91\x0e\xab\x2c\x6b\x87\x6b\x8d\xdd\x42\xde\x8b\x79\xd7\x5b\x08\xae\xd6\x52\xca\x76\xe9\xaf\x2b\x29\x26\x78\x01\x21\x37\xde\xd9\x6d\x1a\x09\x8d\x73\x93\x4f\x69\xc6\x25\x2d\x19\x64\x1a\xf7\xb0\x98\x70\x98\x9e\x6c\xb0\xad\x8f\x2c\x50\x39\x8f\x76\xf0\x26\x69\x91\x6f\x6e\x68\x07\xfc\x38\x88\x7a\xd4\x9d\xc6\x51\xc3\x29\xa2\x13\xd0\x90\x8d\x76\x5d\x49\xbc\x5c\x6b\xd0\x50\xab\x10\xbd\x64\x92\x70\x30\x0c\xb2\x95\x19\x55\xfb\xd2\x2f\x46\xa7\xe5\x11\x22\x92\xcc\xed\xa8\x00\xb1\x1a\xbc\xd5\x15\x13\xec\x74\xcb\xf9\x36\x4e\x8a\xcc\x3a\x4c\x02\x7e\xfb\x67\xa5\x83\xe2\xfe\x59\x23\x13\x9c\x3b\xe4\xe5\x66\xd5\x24\x2c\xb5\x8c\x28\x0e\xc7\x5f\x7e\xac\x04\x39\x46\x71\x10\x9a\x7c\x86\xf2\x56\x54\x22\x30\x2d\x45\x42\x7b\xa2\xae\x33\xe6\x92\x32\xb0\x71\x84\x48\xd9\xd2\x93\xeb\x99\x30\x8e\x12\x9e\x2c\x23\x5f\xdb\x50\x52\x54\x1b\x9f\xaa\x45\x6d\x82\x2c\x89\x92\x3e\x83\x19\x01\x6d\xbb\xaf\x5a\x25\x0c\x66\x12\x81\x27\xcb\xd3\x59\x31\x45\x38\x30\xb9\x16\xdd\x87\xa6\x86\x40\x83\xdd\x88\x26\x18\x56\xd5\xca\x78\x38\xad\x78\x31\xe8\x24\x60\x1a\x76\x4a\x39\x37\xdf\x47\xc3\x0c\x95\x60\xd3\x12\x6f\xee\x90\x37\x8c\x62\xc3\xf3\x70\x99\xf2\xe3\x97\xf2\xe3\x46\x96\x3a\x3f\xbf\x40\x2c\x88\xa4\x27\x77\xb5\x55\xe5\xc4\x41\x14\x96\xb3\x60\x68\x40\x5b\x46\x99\x02\x58\x3e\x3f\x56\x1b\x52\x03\xf8\xdb\x08\xce\x8e\x0b\x95\x17\x26\x36\x39\xf4\x6a\x01\x10\x98\xa1\xc6\x08\x36\xe2\x7d\x82\xe4\x4b\x3c\x69\x29\x06\xb3\x20\x8a\xb3\x34\xe8\xf1\xe5\x16\xa6\x75\xc7\x4a\xf9\x36\xf5\x12\xf6\xed\xf3\xaa\x0d\x42\xec\x21\xca\x4a\xd0\x90\xc4\xf0\x83\x1f\xb7\x2d\xe5\xa5\xcc\x04\x2b\xe3\xd1\x94\xaa\xd8\x8e\x2b\xba\xfe\xf5\xfa\x81\xe2\x32\xd8\x20\x8e\xd3\x35\xc3\x29\x0e\x32\xd8\x33\x2a\xc5\xbe\xa0\xa1\x49\x80\x7c\x08\xf5\xc5\xcd\x0a\x92\xd0\xec\xa5\xd7\xa3\xa2\x7b\x62\xa2\xc0\x9f\x4c\xb1\x92\x31\xbd\x1d\x1c\xfd\xc2\xbf\x4f\x68\x63\x81\x08\xd2\xd7\xc6\x2b\xd8\xc7\x17\x81\xec\x6e\xe9\x2c\x14\x9f\xe8\x52\x59\x2e\xc4\x95\xce\x3e\xc1\xa9\x3c\x2a\x35\x45\xb0\x4a\x8b\xa5\xab\xfc\x48\xf3\x63\xa1\xd8\x82\xae\xfb\x46\xa9\xfc\xf1\x3b\x94\x48\xa3\x8b\xf5\x74\xd7\xd1\x8f\x6e\xa1\xa9\x2a\x12\x20\xca\x5a\x22\x89\x86\x3c\x13\x10\x83\x0c\x45\x69\xbd\xe0\x2b\xcc\x42\x10\xaf\xd0\xfe\xd1\x2a\x58\x32\x6c\xac\x7e\x1a\x3f\xd6\x42\xb7\x2d\x3e\x71\x71\x50\x30\x76\x02\x77\x02\xe6\x8b\xb8\x78\xf7\x94\x96\xc6\x6f\xd1\x91\x21\xda\x10\x6d\x82\xa0\x51\xd2\x8b\xc2\x62\x28\x9e\x87\xe2\xe9\x52\xbd\x85\xb8\x57\x29\xbf\xb7\x34\x1b\x9a\x8c\xb9\x51\x2c\x1f\x81\x62\x4c\xb4\x24\xda\x84\xfd\xc3\x70\x9c\xb3\xc0\x95\x32\xa0\x9f\xd3\x66\x12\x82\xe1\xf8\x86\x55\x1d\x88\x86\xa3\xc0\xa9\x6b\xe2\x75\xb0\x5c\xe1\xc7\xdd\x67\xd4\xc0\x1c\x1e\xc1\x1d\x45\x63\xc0\x15\xe4\xc7\x8d\x12\x6a\x71\xd6\x1b\xd1\x5c\xcf\x95\xbc\x4c\x15\xa0\x5f\x2e\xb4\x01\xa9\x46\x47\xe1\x52\x4e\x9a\xfd\xb6\x03\xef\xe4\x44\xaf\x6a\x7e\xe1\x3b\x5a\xf2\x6c\x9c\xad\xae\x77\x54\x5b\x07\x8a\x6a\xfc\xb8\x71\x33\x16\x67\x61\x50\x3b\xce\x44\x54\x6d\x8e\x43\xd5\x7b\xa5\xe2\x38\xbc\xd7\xd8\xec\x87\x67\x5f\xf2\x06\x26\x1e\x71\xc2\x2b\x5f\x84\xde\x40\x3c\xda\x5a\x20\x69\x69\x66\xfa\xcc\x31\xc4\x3a\x7b\x5f\xc3\xdd\xdf\x6f\x11\x37\x58\xf0\xe2\x20\x41\xc0\x06\x36\x7a\x6e\x73\x43\x49\x05\x07\x49\x31\xc8\x82\xa3\xd3\x4a\x76\xf4\x3c\xbe\x39\x66\x72\xc7\x54\xa7\xf8\x3c\xe6\xbf\xfc\x0f\xb6\xc1\x1d\x25\xc1\x52\x14\x47\xc5\xba\x02\x29\xc3\x0b\x8b\x1f\x5b\xa3\xc3\x30\x88\xa3\xe5\x34\x4b\xaa\x3c\x8e\x71\x30\xe8\xf5\x4f\x77\xab\x18\x2c\xb4\x21\xfa\x2e\x08\xe3\xf7\xec\x10\x69\x29\x8b\xcc\x32\x91\x26\xad\xb1\x87\x85\x61\xb1\x87\xaa\x68\x08\xd7\x40\x05\xfb\xe5\x70\xe3\x5c\x11\x4b\xf6\x9c\xf6\xce\x9a\x9a\x38\x3d\x9e\xd3\x8d\x6e\xd0\xe2\xac\x17\xa7\xab\xd0\xec\x01\xad\x02\x1f\xcd\x8f\x2d\xba\xa5\x9f\x8e\xb3\x21\x60\x80\xaf\x70\x78\xfd\x96\x9a\xf3\xb0\x9b\x26\x16\xe9\x05\xc5\x4b\xc8\xd3\x30\x0a\xe2\x28\x2f\x76\xe2\x8a\x80\xc6\x01\x30\x91\xe0\x37\x94\x79\x12\x47\x59\xc6\xb7\x57\xbf\x75\x73\x07\xc6\x2e\xc8\xba\xdf\xc6\x2f\x13\x55\x36\x29\x13\x7a\xa6\x37\x0e\x8b\x68\xc9\x22\x06\x2c\x3e\x4a\x81\xa5\xec\x94\x67\x18\xac\x07\x09\x50\xeb\x32\xe0\x77\x40\x77\x88\x73\x8b\xac\x9c\x02\xf5\x5e\x6f\x64\xa5\x55\x61\x97\x16\x45\xfa\xe9\x8c\x65\xe7\x30\x37\x8a\x46\x66\x4a\xfd\x1b\x44\xb0\x30\x3e\xbe\xa1\xe1\x9d\x9f\xb4\xe9\x71\x7a\x41\xbe\xb2\x65\xe0\x7f\xd2\x77\xb5\xed\xc9\x72\x17\xff\xed\xd1\x29\x07\xf9\x7b\xb7\xec\xfc\x8a\xe8\xd5\x7c\xe8\x4f\x1d\xfc\x3b\x5f\xe1\x9f\xf5\xbb\xfa\x5c\x2c\x52\xf2\xd4\xb1\xa2\xcb\x8b\x12\x38\xaf\x2a\x2d\x54\x9c\x09\xd6\x77\x75\x61\x4b\x85\xcd\x2c\x26\xea\x92\x50\x03\xe6\xef\xfd\xa5\xae\xee\xad\xc4\xc1\x3a\x23\xa8\x44\x1e\x40\x45\xd0\x26\x20\x88\x4c\x26\xa3\xd4\x61\x7e\x85\x37\xab\x38\xb4\x8a\x94\x94\x17\xd9\x38\x24\x6d\x0b\xa5\xaa\xf9\x03\xd4\xed\x18\xb7\x83\x41\xc3\x23\xff\x89\x05\x24\x0f\x52\x33\x0c\xdc\x75\x15\x5b\x11\x87\x73\xbb\xa3\x3c\x41\xc2\x34\x4e\x87\x4b\x51\x30\xa5\x7a\x4e\xdf\xf7\x1d\x6d\xf9\xa2\xd2\xe0\xbc\xaa\xd5\x41\xfa\x01\xf5\xc3\x44\x5a\x5c\xeb\x85\x33\xcd\x18\xcd\xbd\xb3\x2d\x8a\x4a\x5e\xd0\x5b\x35\x59\x11\xe5\x5b\x24\x2d\x4b\x2d\x69\x69\x43\x15\x09\x69\xaf\x46\x79\x2d\x55\xbf\xec\xab\xc5\xa5\x0d\xba\xfe\xf6\x7f\xfa\xb7\xe9\xfc\x40\x23\x06\x9e\xe6\xd8\x9d\xec\xcb\x26\xc0\x64\xcd\x7e\x86\xb8\x42\xb5\xc6\x98\x06\x81\xb6\x94\x70\x22\x9e\x54\x1a\x3a\x3d\x93\xed\x76\x91\xe4\x0d\x8c\x28\xb0\x52\xa0\x14\x88\x48\x7b\x96\x66\x4e\xe8\x9d\x30\xa0\x0c\x55\xe0\x9e\x89\xc3\xd7\x6e\x00\x76\x8f\xaf\x3a\x03\xb7\x3e\x69\xeb\x74\x8e\x08\xf0\xfd\x78\x63\xda\xf9\xa2\x17\x2c\xa5\xe3\x82\x60\x8c\x88\x4d\xd3\xd4\x02\x40\x82\xb5\xad\x6b\xdb\x36\xbf\xbe\x77\xe2\x16\xac\x19\x8e\xe2\x74\x1d\x8b\x02\xf3\xaf\xbb\x4a\xad\xf2\xae\xff\x5c\xad\x65\x15\xe5\x39\x24\x79\xb4\x4a\x99\xd2\x03\x6a\x4e\x1c\x5f\x21\xb4\xae\x15\x86\x14\xec\xdd\xeb\x6a\x35\xbd\x5e\xeb\xf4\x06\x7d\x06\x2b\x23\x63\xfc\xb6\xa6\x43\xfe\xa0\x54\x6e\xcf\xdf\x56\x46\xc4\x53\xa0\x43\x8a\xf6\x9a\x5b\xd5\x8f\x35\xc8\x6a\x04\x2f\xcd\x8b\x20\xb3\x99\x87\x78\xa2\xd5\x08\x6f\x4f\x6b\xe7\xdc\x68\x29\xc8\x77\x53\xac\x45\x37\xf5\x82\x66\x26\x9d\x52\x9c\xff\x3b\x48\xcf\xf9\xaf\xb0\xb4\x70\x68\xfc\x84\x73\x62\x7e\x86\x1d\x8b\xdf\xbf\xe1\x6f\xff\x9c\x7d\x89\x83\x27\x6e\x68\x63\xb6\x20\xcf\x7f\xb9\xe3\x7e\xd6\xbd\xda\x9c\xd8\xdf\xab\x90\xac\x69\x5c\xbc\x46\x76\xd7\xee\xb6\xf8\x35\xd1\x62\xb7\x2b\x4c\x52\x3c\xab\x06\x73\xa7\x71\x75\x91\x01\x83\xbc\x2d\xbc\x17\x7c\x77\xf0\x8b\x9e\x23\x15\x62\xb4\xe1\xfe\xff\x20\x21\x21\xf1\xbd\x81\xd6\x24\x62\x12\xbb\x33\xd0\x1d\xf9\xcd\xff\xdf\x84\x0a\x75\x1c\x6b\xd3\x64\xca\x87\xbf\xba\x80\xb5\x2e\x3d\x57\xdb\x75\xff\xa7\x5e\x57\x61\x16\xf6\x52\x69\x82\x90\x76\x03\xed\x7c\x9c\xca\x1f\x94\xd6\x30\xef\xaf\x3d\x3f\x71\xc5\xe5\xcc\xa4\xb3\x6f\x4e\xd0\x44\x82\x27\x90\x50\xb8\x9c\x05\x49\x38\x88\x72\x29\xe8\x44\x7d\xaa\xa3\x54\xa9\x5a\x8c\xa3\xc2\x81\x09\x46\x1d\xa7\x7b\x73\x56\x19\x47\x9d\x55\x49\xc0\x72\x14\x47\xa3\x28\x49\xf3\x99\xba\xbb\xe4\xfe\x79\x57\xc2\x69\x35\xa7\xea\x32\xb3\xe1\x48\xa9\x46\x53\xdb\xba\xb6\xcd\xc6\x68\xf7\x9d\xca\x1c\x77\x53\xa1\x84\x9f\xe8\xba\x23\xf9\xf1\x89\x02\x64\x30\x06\x83\x0a\xbd\x74\x6f\xd7\x19\x28\xb2\x7a\xa2\x48\x01\xd5\xe8\x40\x79\xf1\xac\x83\x74\x43\xf6\x02\x07\xf7\x03\x44\x3f\x66\x00\x29\x0d\x07\x9e\xc1\xa2\x07\xb1\x63\x52\xdd\x5c\x31\x40\xaf\xbe\x24\xc6\x41\xbb\x71\x3f\xd1\xa3\x9d\x9a\x50\xe1\x88\xf2\xf2\x9a\xef\xd8\xe8\x77\xb4\x70\xc1\x69\x6d\xa0\xd8\x99\x28\x64\xc5\xce\xae\x92\x8b\xba\x8f\x76\x1d\xde\xf9\x0c\xcf\xb6\x11\x55\xc1\x23\xe4\x6f\xf3\x0e\xad\x15\x74\x26\x37\xd0\x1d\xe1\xbf\x2a\xdd\xf6\x19\xa4\xab\x49\x50\x25\xb5\x53\xee\x22\x80\x92\x6e\x21\x2a\x87\x67\xe7\x37\xb5\x42\x57\x38\x48\xd3\x5c\xeb\xf6\x3e\x50\x92\x9f\x1c\xcb\x31\x9e\x3c\xd7\x62\x00\xf3\x8a\xd7\xcb\x82\x61\xa0\x94\x83\x3f\xd2\x7a\xed\xba\x43\x7d\xb3\x25\x77\x78\xa5\xda\xc3\x4e\x84\x0a\x09\xcc\x2d\x65\x6b\x74\xab\xa5\x43\xef\xa5\xcb\xcb\xf9\x20\x4d\x45\x3c\xc4\xb2\x21\xab\xaf\xca\x4f\xda\x58\xac\x40\xe5\x0b\xf7\x15\x6b\xf6\x9a\xea\x0c\x5f\x43\xd2\xc8\xa7\x67\x3e\x4a\x93\x3c\x92\x72\xe2\xf0\xac\x1d\x35\xa9\x21\xc7\x27\x6d\xe0\xff\xb5\x28\x5c\xb1\x26\xd7\x28\xaf\x51\x0f\xf3\x63\xdb\x0e\xea\x9b\xa4\xfa\xf5\x4c\x2c\x44\x2c\xbc\xa6\x11\x84\x37\x38\xe6\x22\x83\xfe\xbf\xb1\x50\x90\xf9\x42\x73\x0b\x71\x67\x4f\xab\x06\xc5\x20\xcd\x8b\x88\x15\xb0\x91\x63\x32\x50\x43\x9a\x32\x74\xc5\xd1\x46\x51\xca\xb7\xab\x26\xeb\xc5\xe9\x6a\xbe\xd2\x51\xd5\x56\xa9\x6b\xb2\x36\xf3\xbd\x22\x53\x36\xe3\x16\x53\x6a\x27\x47\xc7\x7d\x57\xe6\x2d\x45\xaf\x05\x59\x66\x50\x6b\x23\xdf\x60\x2a\x20\x3f\x51\x1c\xd8\xcc\x84\x69\x9f\x9c\x59\x3a\x0e\xe0\xf8\xa1\xef\xb2\x82\x0f\xed\xc5\x5c\x0e\xe2\xc2\x64\xf6\x3b\xe0\x5a\xff\xa9\xef\xa6\x53\x7f\xaa\x34\x72\x82\x9c\x4a\x9d\xc2\xd0\x51\x3d\x6f\xa1\x2f\x4e\x5c\xe0\xbc\x96\xd7\xb9\xeb\x3b\x85\xe7\x13\xa5\xeb\x0b\x5c\x51\xe8\xd4\x26\x2c\x7a\xff\xbc\x17\xac\x05\x2b\x9c\xe0\xe1\xbc\xf8\xe3\xd2\x65\xbd\x7f\xec\x3b\x19\x10\x71\x17\x64\x35\x8a\xba\x3e\x1d\x10\x25\xdb\xbb\x4a\x95\xf1\x5a\x2d\xe5\xe8\x45\xc1\x0e\xc7\xb4\xd8\x44\xc2\x59\xe3\xca\x63\x6b\xbe\x5d\x3a\xcc\x75\x87\xf2\x29\xd4\x18\xd3\x5d\x45\xb0\xb9\xa7\x8e\xed\x91\x29\x4c\x36\xad\xba\x6f\x37\x14\x68\xe3\x5e\xe9\x26\xa8\x9f\xe0\x4c\x10\x38\xaf\xb5\x1c\x08\x33\x56\x0d\xb1\x3e\x18\xce\x15\x04\x41\xdc\x3e\x51\x6a\x46\x48\x42\x50\x0c\xdd\x53\xd3\x71\x73\x94\xe6\x72\x14\xab\xf0\x51\xa8\xcc\xd0\x25\xfe\x36\xdd\x25\x84\xf1\x47\x2a\xc0\x2d\xa5\x69\x31\x40\xca\xc7\x44\x0b\xfa\x16\x42\xba\xf8\x34\xe0\x77\x3e\x08\x32\xe9\x6b\xa3\x2b\x7f\x53\x7b\x90\xde\x54\x98\x76\x11\x12\x81\x70\x32\xdb\x3f\x2b\x0a\xff\x89\xb2\x46\xb0\xdf\x82\x38\x9b\x9f\xf7\xe6\xe7\x0f\xee\xed\x7c\xf1\xd7\xf4\xc5\x14\x2d\x9c\x6d\x5a\x15\x11\x13\x11\xcc\xb6\x8f\x21\x1c\xc8\xea\xa3\x45\x86\x95\x82\x00\x8e\x6a\x19\xfc\x05\x1c\x04\x0f\x7d\x25\x37\xf0\x90\xe6\xce\xd6\x5a\x77\xd1\x09\xff\xd2\xc6\xb4\x1a\x02\xd6\x47\xeb\x9a\x32\x98\x7e\x13\x77\x08\x7f\x34\x85\xa3\x0d\x93\xd6\xed\x5d\x3d\x14\xfb\x48\x93\x21\xce\x34\x7a\xd3\xaf\xbe\xea\xe5\xc6\x10\xce\xb9\xe3\xe8\x1f\x27\x69\xd3\x0a\xb9\xe1\x19\xdb\xda\x21\x8a\x66\x9a\xd5\x98\xae\x77\x74\x3b\xf9\x4e\xe3\x03\x5e\xa4\x25\x93\x91\x06\x86\x3a\x99\xcf\x93\x14\xa0\xfc\xde\x4f\x95\xc5\x8c\x3b\xaa\x35\xf9\x63\x25\xe0\xf3\x63\x85\xbc\x1c\x8d\x63\x6a\x92\x5b\x7c\x2a\x36\x1c\x7a\x7b\xd4\x9f\xd8\xbc\xd8\x26\xda\x5f\x64\x56\xf4\x48\x44\x7b\xb4\xc7\x90\x9a\x2e\x98\xa3\x23\x93\xe4\x06\xdd\x1c\xdc\x8b\x1b\x1a\x49\x78\x5c\x39\xb1\x9c\x29\x9f\x50\xe6\x32\x3d\x76\xbb\x40\xf8\x3f\xa1\x18\xa3\x27\x6a\x36\x8e\x79\x11\xc4\xb1\x61\xe3\x37\x06\xdc\x29\xdd\xc1\xb3\x8a\x97\xdc\x27\x1b\x95\xf5\x1d\x94\x7f\x68\x6d\x7f\x20\x85\x99\x2f\x69\xff\xe1\x2b\x73\x4e\x2f\xb9\x4a\x99\xf8\xaf\x80\xcc\x93\x7f\xf9\x8c\x2a\xd1\x92\xe5\xac\x2a\xb7\x30\x43\xde\x3f\xdf\xaa\x22\xde\x14\x06\xf3\xa2\x3c\x8d\x83\x42\x20\xc4\xd6\xf2\xdf\x62\x6c\xfe\x85\x36\xd7\x3f\xaf\xa0\xe3\xa3\x20\x4e\x87\x51\x92\x76\x1c\x65\x95\xcb\x1e\x7e\xd2\x08\xeb\x0b\x2f\x1f\xf4\x96\x83\x28\x9b\x72\x53\xb5\xcb\x8e\x6b\xf0\xbf\x9e\xde\x5a\xd9\xd8\xce\xca\xb8\x88\xe0\x44\x40\xdf\x11\x7f\xc0\x06\x12\xfc\xc4\x36\x07\xfa\x59\xb0\x6a\xd6\x49\x33\xd7\xda\xef\xdd\x50\x1e\x62\x37\x6a\xe1\x3f\x8e\xc2\xa7\x69\x67\x23\x9f\xbe\xe1\xab\xb2\xe0\x13\x6c\x67\x7e\xe2\xeb\x53\x94\xee\x01\xaf\xd3\x89\x82\x02\x9e\x03\x02\xd4\x4a\xfb\x54\x37\x14\xc7\x38\xbc\x5c\xac\x6d\xb3\x3a\x85\x69\xb2\x2a\xd3\x3f\xfa\x7d\x80\xca\x33\xd7\x1d\x41\xea\x87\x38\x53\xd1\x5c\x81\x54\x09\x2a\xaa\x1f\xa9\x73\x74\xcf\xc4\x5d\xb2\x91\xc9\xf2\x71\xd0\x93\x7d\x82\xe4\xf9\x38\x72\x6c\x7e\x52\xa3\x8a\x25\x2f\x14\x4f\xd2\x3f\xa2\x4c\xe0\xfe\x0d\xa2\xd4\xe3\x93\x6a\x31\x72\x87\x8c\x3e\x9b\xad\xd7\xf1\x0d\xa9\xf7\xb4\xf0\xf3\x5d\x47\xfd\x3d\xc7\x60\x64\x1c\x91\x17\x4a\x2d\xe9\x0d\xd0\x9e\x5d\xe5\x5f\x3a\x52\x97\xc0\x93\x38\x46\x17\x42\x86\x27\xd5\xa5\x57\x1d\xb5\x57\x2c\x67\xa0\x65\xce\x37\x32\xbd\x28\x28\x32\x56\x10\x13\x50\x51\x47\xb9\xe6\xba\x22\x78\xc8\xc8\x6f\xf6\x86\xa3\xe4\x48\x7c\xe2\xb6\xe6\xeb\xf0\x41\x8a\x52\xac\x2b\xac\xf0\x4e\x57\x2d\xf7\xce\x44\x8e\xee\x2c\x58\x67\xee\x29\x86\x50\xd7\x15\xe4\xe3\xba\x62\x50\x0f\xd3\x22\xcd\xd2\x38\x00\x1c\x4b\x52\x5c\x07\xc1\xba\x46\xe7\x0c\xba\x06\xdb\xba\xae\x1b\xb3\x36\x30\x99\xa1\x86\x4f\xde\xc1\x85\x96\x61\x17\x85\x16\x19\x83\x3d\xaf\xc2\x54\x61\xe2\x38\xea\x9b\x24\x34\x33\xae\x05\xcc\xe3\x13\x11\x11\xa7\x2b\xab\xc8\x4f\x0b\x96\x3b\x4a\xcb\x5d\x98\x50\xcf\x2a\x3e\xda\x28\xcd\xa3\x22\xcd\xd6\x75\xb4\x7f\xa4\x40\xb3\x8f\x1a\xf3\xb3\xf9\xf9\x83\x5e\xc4\x8b\x12\xd9\xd4\x65\xac\x22\x7e\xd2\x66\x25\x94\x57\xe7\x10\x33\xfa\x00\x65\xfa\x6d\x5e\x52\x52\x5c\xd1\xc7\xf3\x6c\x50\xe1\x64\x32\xd3\x1b\x87\x06\xa9\x05\x70\x71\x37\x54\x6a\xc1\x5d\x6f\x49\xe3\x5b\x71\x6c\x71\xc0\xee\x50\x38\x94\x1f\xe1\x8a\xf1\x93\xb2\xae\xb6\x25\x72\x09\xa8\x88\x66\x30\x79\xe5\x27\x5d\x35\x29\x18\x8f\x46\xb1\x95\x11\x62\x58\xa9\x12\x52\xb9\xd8\xda\x18\x1f\x05\xb9\x0c\xf2\x44\x67\x5d\x11\x0b\x1f\xe0\xe4\x94\xf4\xf4\x53\x81\x0a\xab\x11\x84\x4d\x54\xfb\x02\xbf\x48\x7a\x19\x6d\xd5\x50\xba\xbc\x5c\x1d\xa2\x1d\xa7\xdb\x73\x41\x49\xf5\x5e\xf0\xb5\xd0\x6c\x52\xb0\x31\x2c\xa6\x75\x3f\xd0\x83\x85\xfb\xa5\xf3\x2c\x85\xba\x6e\x4d\x86\x00\x49\x17\x1a\xed\xfc\x6a\x0b\xf0\xc9\x83\xa4\x97\xa1\xbf\x2c\x17\xc9\x61\x52\xcf\xea\x29\x50\x2b\x21\x34\xe3\xe3\xfc\x95\x7f\x87\xe7\xe2\xc8\xa4\xa3\xd8\x3c\x4f\x67\x80\x48\xc9\xd0\x96\x12\x20\x3c\xbd\x07\x33\x99\x10\xa2\x58\xaf\x9f\x7e\x0e\xd0\x2d\x77\xfc\x1a\x45\x83\x0e\x04\x24\xa7\x1b\x0a\x6e\xbb\xad\xdb\x39\x22\xbd\x5a\xb8\x80\x5b\x4e\x23\x45\x03\xab\x1d\x3c\x77\x88\xcf\xe4\x5d\xd4\x27\xc6\x67\x9c\xe5\xf5\x2f\xfc\xd6\x2a\x70\x31\xf9\x07\xe7\x09\x7f\x20\xe2\x3d\xb6\xf1\x71\x00\xf1\xf1\x53\x20\xe9\x82\x30\x70\x9f\x8e\x36\x1c\x27\xbb\xba\x8a\x07\xb6\x7b\xf2\xa4\x83\x04\xaf\x46\x3c\x65\x6f\x73\x0d\xd2\x1b\x61\xdd\x24\x3b\xaa\xa5\x62\x5b\x0b\x0e\x73\x80\xc4\x9e\xfd\x6d\x95\x60\xcf\x27\x0a\x63\x88\x00\x28\xad\x08\xd7\x68\x1f\x46\x45\xc6\x93\x25\x74\xef\x7f\x8a\xab\x26\xc9\xae\x5b\x1b\x1b\x8a\x9f\x17\x25\x3d\x33\x32\x49\x8f\x30\x5f\x0e\x63\xee\x2b\x8c\xd0\x1d\x2c\x1f\x71\xb7\xc2\x85\xb5\x79\xc3\xfc\x3c\x5f\xbe\x37\x4a\x75\x1c\x9f\x2d\x1f\x73\xd0\x1c\xce\x75\x05\x94\x56\xc7\xab\xb9\x60\xf4\x55\xb3\x66\x62\x96\xed\xc0\xfa\xc6\x36\xe2\xc7\xba\xa2\x3d\x3a\x88\x96\x22\x16\xc0\xb7\x63\xe5\xff\x8e\x8e\x27\x7e\xdc\x36\x55\x5f\xce\x82\xfe\xd0\x24\xb6\xb7\x2d\x00\x6c\x07\xc5\xbc\x6b\xb3\xa4\xe5\x38\x0a\x57\x5c\xf3\x48\x9c\x20\x68\xe5\xf2\x93\x46\x75\x37\x3f\x5f\x9f\x03\x58\xec\x0d\x93\xf9\xf9\x89\x62\x10\x65\x26\x34\x49\x11\xaf\x93\x8c\x2c\xde\xf6\x2a\xf6\x90\x60\xa1\xe8\xca\xb1\x7d\x23\x5f\x39\xa4\xe9\x7f\xea\x3b\x5e\xe3\x47\x4a\x9d\xe2\x43\x6c\x0f\x7e\x33\xba\x24\x98\xaf\x5c\xd4\xce\xb9\x10\x57\xe1\x78\x8c\xc8\xcf\xf0\x44\x7e\xa2\xa0\x4a\x4b\xe3\xcc\x04\x63\xf4\x83\xb1\xee\x7f\xbf\x54\x9b\xe0\xf7\xfd\x9a\xf3\x90\xa5\x5f\x8a\xfb\x8e\x42\xdb\xde\xda\x4a\x88\x3a\x3c\x3b\xef\x7d\x65\x8e\xca\x67\x44\x37\x90\x4d\xf9\x71\xa9\x0f\xaa\xe5\x34\x1b\xe6\xd3\x0a\x97\x7d\x59\x3b\xe6\x00\x8a\x28\xde\x20\x0e\x15\x73\xb9\xcd\x12\xc5\x0c\x47\x83\x20\x8f\xb8\x6c\x43\x73\x14\x4b\x8d\x1f\x37\xee\xec\xe1\xd9\x05\xcf\xc4\xd1\x50\x63\x32\x18\x0d\xa4\xe8\x2b\x35\x19\xbe\xa1\xc9\xaa\x74\x62\x1d\xa7\xb2\x15\xb6\x74\xb3\xe6\x77\x4a\x87\x8e\xbf\xe2\x3b\xf1\x6b\xc2\xb1\xd4\x7d\x96\x55\x54\xb8\x52\x0b\x25\xbd\x28\xd8\xe3\xa6\xbf\xc7\x70\x4e\x58\x91\x9d\xfd\xf3\x56\x91\x9d\x3e\x17\xc1\xf0\x37\x7c\x75\xee\x4e\x75\x9d\xaa\xe1\xed\xd2\x9d\x7a\xdb\x6b\x80\x27\xe7\xb8\xf9\xed\x52\x4f\x2a\xef\xb4\xa9\xe0\xb1\x55\x88\x83\x79\x5f\xf2\xb5\x27\xac\x92\xf8\x89\x92\x65\x93\x4b\x3d\x66\xeb\x8f\xcb\xca\x16\xfc\x72\xf3\xa8\x7f\xf9\xa0\x97\x91\x28\x98\x12\x3f\x3f\xaf\xc5\xcf\xcf\xbb\x43\x31\x4c\x33\xc3\xa0\x43\x1c\x17\xb7\x6a\x3a\x57\xf4\x22\xf4\xb5\xde\x6b\x63\x61\x66\x63\xe0\x08\xaa\xd7\xdb\x3b\x31\xef\x48\xd2\x2d\x3c\xf9\x22\x0b\xa2\x04\x64\xe1\x83\x4e\x15\xdc\xae\xac\x2b\xfe\x73\x5a\x4f\x21\x8f\x7a\xb6\xad\xb8\x60\x41\x1e\x0a\xf0\x51\xca\xf9\x92\x9b\x30\x4d\x04\x9a\x87\x7f\x3c\xa3\xfe\xf0\x8c\x6a\x49\x65\xe3\x24\x5d\x5e\xa6\xab\x83\xa6\x27\x24\x58\xf9\xb1\x62\xcd\xff\x97\xff\xe1\xac\x6a\x56\x6f\xa8\x66\xf5\x86\xd2\xb4\x5b\x49\x47\x23\x13\x13\x9a\x40\xaa\x15\x3a\x40\xd9\xfc\x59\x39\xc4\xfe\x1f\x77\x54\x64\x0b\xc2\xd0\x8c\x0a\x51\x30\xc7\x02\xfb\xd8\xd7\x5d\xa5\xd2\x41\x69\xe1\xb7\x2e\xdd\xa6\xa7\x55\xfe\x1c\x07\xeb\x8c\x92\x94\x46\x46\xc7\x29\x11\xb7\xba\x15\x05\xfd\xcc\x48\xad\x8e\xb8\xf9\x53\xd5\x2c\x7e\xa4\x8b\xa8\x4e\xa3\xb7\x7d\xe0\xc0\xa2\x17\x9b\x28\x1f\xb3\x78\x8f\xe5\x39\xda\x4b\x73\xde\xf6\x1f\xa3\x3c\x08\x50\x43\xb1\x05\xbd\x3e\x26\x2f\x36\x4a\xfb\xc3\xb3\x5e\x18\xa7\xb9\x99\x76\x4a\xcc\x0f\xa8\x54\xc4\x21\xfb\xe7\xd8\xbb\x16\x5e\x6e\x0d\xdb\x9b\x73\xe3\xf9\x79\x2f\x4f\xe3\xa8\x17\x64\x51\xc1\x85\x85\x74\xcf\x75\x5b\xfd\x69\xdd\x00\x8e\xa3\x7c\xb0\xab\xe6\x2a\xa5\x00\xfc\xd7\x55\x4f\xef\x72\x59\x37\xa2\x72\x2e\xf2\xc7\x4b\xc5\x6c\x7a\xbc\xab\xcd\xd4\xef\x2b\x61\xd6\xbb\xaa\x4b\x44\xaa\x18\x2e\xa5\x83\x50\x3d\x3f\xd6\x10\x81\x51\x16\x0c\xa6\x9c\xe5\x19\x07\x0c\xd4\x78\x17\x55\x1a\xf4\x8f\x34\xac\x31\xcc\xd2\x3c\xdf\x53\x5d\x28\x66\x58\xd2\xbb\x03\xe7\x71\x9e\x8e\x11\xb1\xcd\x50\x26\x2b\xdf\xf4\x15\xd7\xfe\x1c\x9d\x8e\x80\x65\xbe\x8d\xa4\x14\x25\xf8\x4d\x54\x0b\x18\x53\x01\x10\x51\x1b\x56\xa0\x17\xf2\x40\x5d\x62\xb8\xbc\x87\xca\x24\xeb\x27\x9a\xe4\xf4\x13\x0b\x39\x32\xab\x26\x5b\xa7\x12\xd3\x0a\x91\xce\x1d\xe2\xf5\xf8\x0b\x5d\xd7\xf6\x99\x99\x38\x2d\xac\xab\xda\x62\x62\xf7\xc4\x11\x65\x0a\x33\x1c\xa5\x59\x90\xad\xb3\x81\x9a\x26\xee\xe1\xc7\x3f\xf2\x95\x5e\x11\x93\x5d\xc4\x48\xc7\xe5\xaa\x8f\xea\xf0\xa8\x67\xb4\x0d\x41\x2a\xc4\x10\xf1\xee\xbe\xa4\x3c\x83\x2f\x35\x8c\xdf\x3e\xef\x85\x63\x50\x29\x45\xb2\xa9\xee\x0c\x62\xbb\x79\x0f\xf5\xc7\x10\xb6\x30\x29\xa6\x1d\x14\xea\x2c\xbe\x38\x3f\xa1\x08\x66\x15\xf2\x9d\xe3\xb6\x6a\x1e\xa6\xe3\x22\x4c\x87\xb5\x2a\xe6\x32\x6e\xb6\xe8\x89\x2a\x66\x0d\xb5\xdf\x9f\xa3\xca\x45\x30\x37\xd5\xe5\xb6\xf2\x02\xfb\x64\x4c\x3c\xdd\x45\xff\xa0\x8e\xd3\x41\xd4\xfa\xb1\xf2\xbc\xb8\xe5\x6b\x91\x37\x8c\xe1\xf1\x0e\xdb\x09\x11\x40\xf7\x7a\xe7\x5e\x12\x31\x00\xe4\x8f\x25\xbb\x90\xa7\x7d\x83\x22\x01\xa8\x04\xd7\x7c\xa5\x49\x3d\xc1\xe2\x15\x5c\x26\x5d\x13\xc6\xd1\x10\x65\x5a\xc9\x8b\xc8\x60\xef\x22\xad\x28\xb4\x17\x4a\xb4\xeb\x10\x2f\x79\xc8\x83\x0d\xfc\x89\xcd\x38\x98\xdd\x92\x4f\xab\x5e\xc7\x05\x4c\x09\x64\x0c\x8f\x5f\x8d\xeb\xc8\x5a\x41\x42\xd8\xb5\x1a\x6f\x6b\x51\x9e\xd3\xba\x46\x9d\xf4\x99\xae\x16\x00\xfb\xae\x16\x61\xc1\xdc\x56\x1e\x2b\x91\x9b\xc7\x5b\x35\x90\x46\xc1\x3a\x79\x5f\xe3\x16\x30\x0e\x03\x44\xb9\x6b\x8a\x86\xc5\x13\x71\xd6\x28\xfb\x54\xc3\xb4\x91\x49\x82\xb8\x00\x33\x11\x71\xe3\x9e\x1a\x61\xd7\x1c\x06\x4e\xb5\xe0\xfc\xbc\xaf\x8d\x23\xf6\x82\xc2\xb0\x0c\xc7\x26\x3f\x6e\x81\x1d\x85\x41\x2e\x1a\x58\x62\x10\xab\xc4\x23\x2e\x35\x82\xfb\xfe\x79\x6f\x34\x88\xe2\x68\x34\x8a\x12\x0c\xce\x45\x02\xaf\x63\x1d\x5b\xfe\x8d\xaf\x24\x7e\xce\x2a\x6e\x56\x16\x24\xbd\x74\x48\xdf\x0e\x43\xc4\x8f\x7d\xc7\x5d\xfc\x58\x39\x03\xc0\xd2\xcf\x24\xb4\xb5\xb5\x50\x96\x06\xc3\xb4\x0d\x1d\x47\x59\x94\x66\x9d\x6a\x7f\x68\x29\x0e\x7e\xdc\xd2\x3c\x3f\xe8\x15\x83\x74\xdc\x1f\x14\xda\xb1\x9e\xe5\xb3\xf9\x49\x1b\xff\xa2\x37\x5e\x8a\xd2\x71\x5e\x27\xc9\x39\xcd\x48\x3b\x98\xc5\xdd\xb4\xc3\x0e\x24\x80\xbc\x42\xf9\x49\x0b\x55\xc3\xab\x92\xa9\x74\x18\x49\x6e\x87\x48\x05\xbf\x2c\x7e\xac\x0c\xdb\xa3\x61\x10\xef\xc2\x62\x16\xa3\x7e\x07\xcd\xc7\x9c\x12\xd3\x9e\x67\x81\xbc\x90\xde\x76\x15\x50\xb0\x1a\x99\x13\x27\xab\x4a\xbb\xce\x94\xaa\xb9\x74\xb2\x81\x84\xae\x6a\xd6\x71\xd2\x93\x74\x06\xcd\x6d\x9c\xd6\x88\x08\x1f\x22\x22\xf0\x71\xd6\x70\x30\x7f\xd1\x5b\x36\x41\x86\xec\x12\xc5\x27\x79\x9e\xca\xe3\xc6\xb0\x7d\xdf\x3e\x6f\x2d\x8b\x8a\x2d\x84\xbc\x0b\x4a\xd6\xfd\x82\x4a\x34\xfb\x04\x5c\x9b\xa6\xd9\x0b\xab\x00\xf9\xae\x13\x78\x4e\x39\xd4\xb0\x6c\x3f\x3f\xb1\x77\x2f\x1c\x98\x61\x14\x06\xb1\x80\xa4\x71\x77\x67\xba\x8a\xfd\xc1\x80\x0f\xf4\xdc\xb7\x4f\x04\xf3\x9e\xac\x5b\xed\x55\xfc\x76\x56\x61\xe1\x27\x5b\xcb\xcc\x85\xb9\x43\x55\x99\x49\xd7\x41\xd0\xd7\x55\x48\x11\x33\x07\xb9\xd9\x6b\x91\x1b\xf2\xa3\x83\xbe\x8d\xa2\x37\x3f\xee\x6e\xdd\x10\x2f\xbc\xe0\xe5\x83\x74\x8d\x3b\xaf\x82\x3d\xa4\xaf\x8f\x8e\xde\x4d\x5f\xa5\x9b\x6d\xb8\xce\x05\x6f\x94\xa5\x43\x8b\x70\x7d\x45\x93\x10\xc4\x5e\x4d\xe7\xec\x5f\xc8\x70\xb8\x22\x15\xe7\x88\x2e\x49\x18\x2e\x88\xec\xf6\xad\x11\x70\xff\xbc\x37\x58\x1f\xa5\xfd\x78\x3d\x34\xc3\x08\x7d\x7d\xeb\x7d\x64\x07\xa4\x17\x6b\x10\xb8\x75\xd0\xdc\x91\xaa\x3c\x52\x49\x15\x8f\x6e\x6c\x4b\xfe\xf0\xac\x6d\x56\x3b\x70\xd0\x8f\xb0\x3a\x45\xe3\x56\x89\x08\x86\xe1\x38\x2f\xd2\x21\xa8\x3c\x2f\xf1\xd4\x07\x21\x8e\x1f\xfb\x6e\x0e\x7f\x93\x0e\x47\x7e\xdc\x58\xe3\xfb\xe7\xbd\xdc\x1c\x9d\x52\x04\x32\x56\x9b\x44\xca\x01\x4b\x7a\x1c\x93\x8f\x77\x5d\x59\x13\x8e\xb3\x22\x42\x80\xc1\x81\xf8\xbe\x4e\x6f\xdf\xf7\x1f\x77\xc9\x42\x80\x02\xc4\x9a\x0a\x2a\x92\x5c\xb3\x1b\xfc\x92\x17\xf4\x7a\x99\xc9\x39\xb4\xb0\xa4\x9e\x22\x44\xb5\x86\xd5\x95\x24\x1d\x2d\x77\x94\x84\xd9\x9b\xda\xac\xe7\xcd\xe6\x9c\x90\xf4\x7e\x92\x5e\x47\xb1\x8f\xae\xd4\xdb\xaa\xee\x36\x7e\xd9\x64\x4c\x84\xc5\xa1\xbd\xa7\x4b\x4c\x21\xc9\xe0\xe8\x83\xb8\x3c\x2e\x6b\xd2\x14\xee\x86\xf5\xc7\x41\x16\x24\x85\x61\x77\x68\xa9\x71\x3a\xd6\xf4\xbe\xbd\x27\x4f\x46\x3f\xec\x79\xae\x4e\x98\xb9\x4f\x3d\x61\x5e\x78\xc1\x1b\x45\x71\x5a\x10\x3b\x94\x0b\x23\xac\x34\x1c\xf8\xe8\x4b\x23\xfd\xde\xf0\xdd\xa0\x7c\xcd\xe4\xc5\x9e\x6a\x95\xe0\xcf\xfe\x9c\xb7\x02\x3e\xe6\x5b\xbe\x92\x8d\x61\xec\x0d\xfe\xe5\x7a\xb9\xd5\x75\xf7\x25\xfe\xf1\x17\x54\x47\x6d\x3b\xac\xdb\xac\x9f\xb2\xf3\x9e\x3a\xaf\xd4\x7c\xa7\xbb\x4f\xaa\xb4\x79\xdc\xcf\x77\x38\xef\xf5\x13\xaa\x3e\x7a\x03\x57\x80\xd5\x22\x70\xe0\x5a\x3b\x6f\x8b\x7f\xf9\xba\xaf\xd6\xf0\x45\x25\x60\xde\x33\x61\x94\x47\xab\x28\x4f\xb1\x27\xa6\xa8\x40\xe1\xc7\x93\xc7\x1d\xa2\x25\xe9\x3d\x46\x6f\x2f\x9d\x7a\xc7\x1e\xba\x8e\xbc\x90\xc9\xa1\xa5\x73\xab\xbe\xaf\xcd\xe0\x3e\x2a\x5d\xd5\x7f\xb3\x74\x1e\x56\x1d\x4a\x63\x59\xf1\xae\x74\x8b\xe0\xf7\x90\xf7\x0a\xe5\x94\x7e\x01\x5b\x8a\x34\x18\xb6\x00\x3f\x0f\x87\x51\x61\x1b\x6a\xb6\x0b\x65\xfb\x02\x4d\xad\xe2\xaa\x8a\x0e\x46\x51\x51\x6f\xb5\xab\x82\xe7\x82\x4a\x87\x96\x02\x52\x27\x70\x89\xc3\x19\xdf\x25\x14\x67\x4a\xeb\x63\xc4\x76\xf3\x48\x99\x3b\x13\xdb\x96\xfb\xc1\xcf\x75\x9d\x19\xd3\xb7\x94\xe8\xd8\x39\xdc\x36\x84\xaa\x9d\x93\x86\x8d\x34\xf5\xa8\x62\x13\xe4\xb8\x4d\x38\x18\x2e\x29\xb6\xf4\xa5\x76\xeb\xf9\x5e\x14\x5a\xe7\x25\xc1\xc3\x76\xac\xba\x31\x4d\x11\x04\x7f\x61\xb2\xe2\xb5\x8e\xd2\xf7\x61\xfd\x27\xd9\x8d\x0e\x8e\xd6\x4f\x33\x93\xe4\x85\x89\x92\x0e\x6d\x7b\x2e\x90\xb1\xed\xa5\x5a\xde\x63\xdf\xf8\xd5\xdd\x54\x15\xd5\x86\xc9\xd6\x8b\xd9\x41\x4e\xef\x29\x8f\x47\x30\x79\x91\xe8\x3f\xde\xa5\x3a\x08\x39\xeb\x1d\x2a\xa4\xf0\x8b\x1f\x52\xb9\x82\x33\x82\xa5\x9b\xf8\xd5\xfa\x5c\xc8\xf3\xa8\x9f\x0c\x4d\x52\x4c\xb9\x4a\x10\xa6\xb3\x16\x05\x6d\xab\xe2\x26\xe4\xa7\x5a\x53\x6b\x83\xa8\x88\x0d\xda\x8f\x22\xd0\x57\x53\xee\x7b\x5a\x59\xd2\x67\x6b\x11\xdb\x8e\xb4\x8a\x8c\x38\xe8\x6b\xcf\x84\x66\x54\xc8\xb6\x43\x24\xb9\xac\xd5\xa8\x2e\x2b\x30\x46\x38\xc8\xa2\xbc\x88\x82\x84\x33\x14\xe1\x00\xd5\x62\xab\x0b\x16\xcb\x41\x58\xa4\x1d\x27\x03\x89\x75\x22\xf5\x81\x0b\xe3\x4b\x29\xce\x6c\x2b\xab\xe5\xbc\x06\x6d\x9b\x30\x4c\xab\x6a\x0e\x53\x50\x76\x67\x41\xf0\x43\xf7\x83\xc5\xcd\x81\x27\xf8\x49\x6b\x3a\x52\x95\xe2\x71\x9a\xd7\x35\x5a\xcf\xea\x51\xea\x59\x25\xf5\x39\x10\x63\x70\xf1\x10\x76\x43\xc7\xa6\x07\xc4\x81\x03\x5e\x48\x88\xdc\x4e\xcd\x86\x53\x77\xc1\xdb\x9c\xb4\xc2\x34\xc9\x8b\x20\x81\x04\x12\x43\xfd\x7c\x0d\xfb\x73\x0a\x74\xd9\xc8\x14\x5b\x50\x9a\x53\x13\x77\x7b\xa7\x94\x5b\x78\x16\x24\x2b\xe8\x0c\x33\xfb\xa4\x74\xdd\xa3\x6d\x5d\xd7\x6f\xbf\xa9\xe5\xf8\xd3\x38\x0e\xb2\x5d\xae\xbc\xe2\x6e\x22\xca\xeb\x0f\x10\x53\x71\x83\xef\x23\x14\xb2\x91\x21\xce\x0c\x31\x8a\x72\xcd\xb6\x19\xc2\x49\x5a\xa5\xb3\x6a\xed\xe1\x28\xd8\x35\xd9\x3a\xa1\x26\xb9\xd7\x3c\x5d\x35\x99\x89\xfa\x09\xfa\x7e\x07\xc5\xf2\xae\x66\x7f\xd7\x42\xa7\x5c\x0a\x72\x72\x30\xfe\xd2\x11\x87\x2b\x51\x1a\x47\xd2\x09\x58\x0a\xc2\xc2\x64\x51\x40\x9a\xca\xc8\xda\xb6\x4d\x3a\xca\x2c\xa8\x5a\xa4\x10\x89\xe5\x89\x02\x22\xe0\x13\x0d\xa3\xc2\x23\x73\x87\x88\x19\xce\x75\x19\xdb\x51\x60\x77\x89\x37\x85\x56\x16\x1e\x0e\xd3\x64\xcd\x04\x71\x31\x98\x52\xa3\xc2\x1f\xd1\x72\x42\x1b\xf0\x2d\x9a\xc7\x0a\x57\xdc\xc9\x78\x8e\xb2\x28\x34\x4f\x29\x63\xf9\xab\x58\xe3\x56\x89\x62\xee\x10\xc7\x91\x0f\x55\x72\x33\xf3\x0c\xb7\x27\xd8\xe7\x49\xa1\x7e\xc1\xf3\x97\xbb\xd8\x51\x0e\xdc\x0e\xd8\xc9\xb6\xbe\xb8\x89\xa0\x1b\x58\xf7\x21\x27\xce\xc3\x53\x6b\xbc\xe4\x5a\xa9\x34\x7c\xf8\x5e\xa3\xaa\x79\x57\xd1\x69\x06\x06\x50\xe7\xea\xeb\x88\x04\x86\xdb\x52\xad\x30\xe0\x34\x5b\x8a\x0a\xe2\x6f\x09\x43\x8f\x7e\xa6\x75\x5f\xb3\x82\xb9\xf7\x95\x5e\x4c\x1e\x60\x3c\x29\x24\x1d\xed\x67\xd3\x58\x40\x55\x15\x4f\x46\x09\x4a\x04\x12\xba\x00\xe2\x17\xd6\x62\x9a\x3d\x0a\x32\xa1\x6d\x23\xb7\xbc\xa3\x5c\x7e\xef\xd8\x80\x35\x48\xc7\x71\x15\x29\x55\x12\x7a\x52\xfd\xe1\x49\xbc\x35\xef\x58\x68\x4f\x47\xaf\xb1\x47\xc7\x91\xb9\x43\x76\xc8\x58\xdd\x1b\x99\x31\xb6\xc8\x8a\xe7\xe9\x72\x91\x98\x5c\xff\x68\xfc\x02\x7e\x6c\x25\x27\x86\x41\x16\xa6\xb9\x0c\x8d\xd8\x4d\xad\x54\x43\x75\xd1\xee\x43\x27\xe6\x41\x9b\x74\xed\x52\x90\x65\x91\x01\x86\x0f\x79\xcc\x76\x68\x04\xa3\x8c\x84\x20\xad\xc0\x88\x9e\xaa\x35\x30\xb3\x75\x2d\x5d\x7b\x49\xc9\xb7\xe9\x83\xab\x10\x37\xb1\xea\x3b\x5a\x0d\x35\x1b\x95\xae\xa8\xbe\x74\x1c\x85\x80\xa6\x58\x6d\xaa\x4f\xb0\xf6\xf8\x49\x1d\xeb\x67\xb2\xa7\x3b\x96\xc9\xbb\x0d\xbc\x24\x9e\xe7\x63\x3c\x81\x4b\x0c\x5e\x83\x34\x5b\xaa\x4b\x2f\x94\xe4\x9a\xd8\x0a\x7d\x8e\xf8\xf6\xe1\xaa\x61\x2b\x9d\x87\x5a\xa3\x20\x05\x28\x5a\xb3\x9e\xa0\xef\x56\x3e\x77\x80\xd1\xf4\xb8\xa9\x6d\xbd\x7e\x97\x62\x01\xa6\x12\x6f\x60\x2b\xf2\x17\x00\x18\x85\xff\xa5\xd1\xbe\xa3\xf1\x50\xd4\xc3\x21\x6e\xc5\x31\xf7\xdb\xc7\x8a\xe4\x19\xf4\x56\xa3\xdc\x64\xf9\x4c\xf5\xcf\x22\x17\x37\xe5\x8c\x54\x7e\x44\x81\x45\x34\xe5\xf0\xe3\x10\xba\xd1\x9e\x91\xe6\xbe\x74\x16\xbe\x36\x4e\x2d\x82\x14\x61\xe3\xb1\xae\xbb\x88\x0c\x91\x14\x67\xa7\xad\xdf\xfb\xf3\x5e\x91\x16\x41\xcc\xc1\x54\x2c\xa8\x95\xf5\xca\x99\xc6\x9e\x7d\xd1\x0b\xd3\xbc\x18\x0f\x0d\xd4\xde\x90\xb6\xe2\xe8\x41\x3c\x82\x1d\xb0\x58\x7a\xed\xd5\x53\x49\x22\x54\xe5\x7b\xdc\x0f\x7c\xbd\x74\x95\x03\xb7\x9a\xd9\xff\x0b\x30\x71\x04\xcb\xeb\x7e\xe7\x8b\xbf\x66\xab\xac\xea\x3e\x02\x2e\xff\x53\xba\xc4\xca\x02\xfe\x15\xb1\x6c\xc7\x9d\xb7\xe8\xfd\x79\x09\xaf\xdb\xbb\x6e\x34\x30\x0a\x22\x18\x4f\x57\x87\x17\xde\x7c\xd3\x57\xfa\x15\x57\x18\x49\x29\xd3\xab\xc6\x49\xb4\x38\xeb\x2d\x47\x59\x5e\x50\x4c\xb5\xca\x60\xd6\xfc\xad\xf9\x8a\x17\xbd\xf1\x28\x0f\x03\x56\x2a\x43\xea\x7d\x5b\xa5\xe1\xb7\xdb\xdc\x21\x32\xb3\xec\x58\x9c\x62\x1c\xd4\xb1\xd2\x3a\xc7\x5b\x91\xbe\x98\x62\x2b\xab\xbc\x8e\x75\x04\x6a\x3a\xe5\x1d\x9e\x5d\xf0\x96\x4c\x1c\x99\x55\xf9\x18\x39\xe2\x14\x21\xf4\x94\xaf\xec\x34\xe2\x20\xcf\xb3\x34\x1d\xf2\xba\xc1\xb7\x3f\xa1\x35\x33\x4f\x28\xc3\x92\x17\xfe\xe3\xbf\xc9\x3d\x0b\xdc\xe8\x6d\xa4\x1d\xcd\x8f\x1b\x9d\xaf\xea\xdb\x0c\xd3\xcc\x4c\x29\xbd\xe1\x8b\x38\xfc\x50\x34\xdf\x42\x02\x84\x7a\xe4\x58\x8b\xee\xfe\x41\x2f\x4f\xc7\xc5\x80\x6e\x0b\x76\xce\x25\xe5\xd0\xdc\x66\xaa\x3a\xef\x8d\x32\xd3\x4f\x02\x3e\x56\x2c\x38\xc1\xe1\x2f\x1a\x57\x79\xee\x90\x97\x17\xc6\x8c\xa6\x5c\xd7\xf3\xc7\xd8\x38\xd6\x91\xd5\xd2\x64\xaf\xf8\x6a\xb0\x96\x05\x09\x81\x2a\x15\x48\xf5\x8a\x96\x4d\x69\xca\x7b\xce\xcf\xf3\x48\x92\x7a\x17\x2c\x24\x4f\xdb\x40\xcd\x68\xe6\x6c\x43\xc8\x65\x95\x61\x96\xae\x89\x1d\x83\xe0\x79\x55\xf2\x88\xdc\x44\x4c\x9e\xf6\x2a\x0a\x36\xd3\x97\x94\xb2\xcb\x96\xaf\xd8\x32\x5b\x88\x92\xa0\x67\xbe\x36\x16\xef\xf8\xb6\x9e\x56\x03\x38\xb5\xe0\x65\x26\xc8\xf3\x71\x26\x54\x0a\x90\x11\x98\x40\xc8\x4f\x6c\xa4\x1b\x05\xd9\x8a\xc9\xa6\xea\xf6\x1b\xf3\xf3\xdc\x15\x00\x05\x6d\x73\x7b\xd7\x9d\x66\xcc\x25\x9b\x76\x39\xec\x19\x3a\x53\xe4\x84\xa5\x10\xc3\x4f\x74\xc4\x38\xa3\x54\x1b\xc3\x41\x9a\x9b\xa4\xa3\xa6\x98\xc7\x94\x7a\xe9\xb1\x96\xba\x62\x81\xb3\x4e\xd6\x8b\xb1\x01\x72\x51\xcc\x61\x4e\xe9\xb7\x4f\x93\x7c\x8c\x8e\x03\xde\x11\x12\x4c\xfc\xb8\x4d\x57\x26\x33\xab\xd1\xaa\x04\x7c\x54\x18\x60\xce\x88\x44\xa7\x92\xfa\xb9\x5c\x3e\xa1\x45\x99\xd7\x3f\x3b\xe5\x5c\xd1\xfe\x12\x9d\x12\xb8\xfb\xff\x13\x31\xdc\x9d\xe8\xa0\x34\xfe\xb6\x29\x57\xd7\xc7\x08\xb7\x83\x32\xfb\xff\xc1\x87\xa0\xf6\x79\x76\xa2\x86\x13\x57\x11\xb7\x65\x60\x4f\x4b\x8f\x1d\xf3\xb1\x3b\x00\x31\x63\xac\x23\xfe\x65\x1b\xa1\x2b\x79\x86\x81\xcd\x8d\xc3\xe1\x1e\x6e\x0a\xfe\x85\x93\x06\x5b\x30\xec\x97\xa9\xc5\x0f\x68\x19\xe3\xf1\x7d\x9c\xff\x48\x7f\xbf\xe3\x6b\x0f\xb5\xeb\x88\x21\x72\xb6\x3b\xf9\xca\x7b\xd4\x4b\xc0\xe1\x7b\xbf\xd5\xd3\x64\x0d\x97\x5b\x74\x65\xfe\xbc\x54\xb1\x18\xf1\x1b\x97\xf1\x46\xa3\x6f\xf0\x4b\x96\x1b\xc2\xa1\x52\xd4\x0b\x6b\x32\x54\x0e\x96\x1e\xaf\xa7\x49\x12\x44\xb9\x0a\x43\xef\x60\xe7\xf1\x93\xc6\xf7\x23\x7b\x45\x81\xef\x88\x8c\x9f\x5b\x77\x97\x4a\xa7\x0f\xd2\x5b\x37\x19\xad\x34\x2b\xdb\xe9\x50\x4a\x17\xd5\xbc\x7b\x39\x08\x5d\x1a\x8c\xd0\x76\x9d\x4e\x5a\x7e\xac\xbe\x6f\x31\xc8\xa0\x21\xa6\x74\xcc\xeb\xac\x97\x27\x6b\xe6\x1d\xbd\x1d\xce\x80\x1d\x57\x8e\xc5\xc7\x29\xef\xb2\x12\xb6\xb6\x11\x3c\x45\xbc\x66\x04\x02\xee\xaf\x8a\xfe\xb0\x2b\xd4\xe2\x74\xd5\xe0\x8a\x61\x90\xfb\x8e\xaf\x04\x30\xde\x69\x91\x9b\x3b\xe8\x2d\xc1\xc6\x8d\xd6\x9a\xed\xd1\x56\xcb\x43\x32\x4c\xa9\xfc\x7b\x51\x46\xf4\xad\x75\x35\xfa\xbc\xe9\xab\xfc\xf3\xa6\xd5\xe6\x19\x27\xe6\xe8\xc8\x84\x85\xe9\xc5\x70\x6a\xad\x49\x12\x59\xd9\x78\x0b\x17\xbe\xe9\xeb\x0e\x4c\x0e\x6e\x12\xee\xc6\xaf\xd3\x25\x50\xda\xf4\xac\x6d\x70\x64\x2f\xf6\x8d\x90\x24\x5d\xef\x97\x4d\x36\x44\x5e\xab\xe5\xb4\x4a\x82\x20\x1c\xa9\x4e\xc7\x19\xdc\x7e\x89\x78\x4f\xda\x32\x25\xb1\x16\x4c\x08\x08\xe7\xb5\x0f\x42\x93\x46\x4b\x1c\xfd\x20\xe9\x8b\x6d\x98\x6a\x66\xcb\xc0\xee\x1b\xaa\xa3\x74\xa1\x41\x4b\x38\x3c\xeb\xe5\x41\xd1\x51\x1e\xab\x67\x4b\x15\xa7\xce\xaa\x81\x49\x1c\xac\x77\x34\xfa\xfa\xbc\x46\x1f\x6a\xd7\xea\x17\xfe\x93\xbf\xc9\x85\x16\xe6\x76\x37\x35\x6a\x9e\xf6\xbb\x94\x4f\xd2\xaa\xed\x19\x9c\x5b\x80\x04\x33\xf5\x91\x9f\x38\x27\x82\x34\x59\x35\xd9\x96\xb6\xf2\x19\xa5\xdc\x78\x46\xeb\x5d\xa2\x58\x9b\x76\xc5\xe0\x5d\x5a\xf1\x62\x7f\xad\x2a\xe3\xbb\xf8\x1d\xa2\xb7\xdf\x32\x57\x8e\xcd\xaa\x21\x85\x2c\x04\x22\xa4\x45\x68\xa1\x20\x32\x7c\x42\xef\x2d\x31\xc9\xad\xac\xe5\x31\x9f\x98\xa2\x09\xd6\x71\x0e\x73\xbe\xc6\x14\x3d\xb5\x65\xc5\x4f\xb9\x93\xfb\x03\x2d\x28\x75\xab\xee\x7f\xe5\xb5\x93\xe3\x33\x33\xca\x4c\x62\xc6\xc2\x7b\x44\x38\x38\xa1\xfd\x0e\x4e\x34\xca\x69\x3a\xdd\xc2\x34\xb3\x4a\x87\xad\x6c\x33\x17\xd0\xc2\x38\x1a\x4d\xbb\x46\x0e\x67\x89\xa8\x24\xa1\xb1\x83\xbb\x72\x02\x59\x8f\x88\xef\xb9\x8b\xf3\xc5\xb9\x43\x4a\x48\xfa\x82\x62\xcf\xfc\x56\xdd\x7b\xc3\x1d\xd8\x89\x09\x0a\x90\xe1\x64\x38\x7e\xbb\x54\xcc\x31\x36\x0a\xa5\x3f\x8d\x92\xc2\x64\xb9\x09\x95\xd3\x24\x6a\xe3\x7b\xbe\xeb\x35\x73\xf2\xc6\xe6\x27\xaa\x61\x33\x1e\xf5\x08\x11\x8c\xf5\x6e\x2d\xa3\x9c\x41\xc6\xa5\x36\xd9\xf5\x61\xb0\x02\x6c\x87\xb6\x83\x47\x51\xc4\xbd\x71\x7c\x85\x8e\xc2\x7a\x45\x49\x18\x8c\x82\xa5\xd8\x4c\xab\xee\x26\x5c\x7a\x81\xb8\x81\x97\x04\x5b\xb5\xe3\xd7\x4a\xa8\x76\xab\x26\x58\x32\x05\x33\xbf\x6a\x08\x04\x19\x04\xff\x5c\xfd\xba\x24\xdc\x73\x89\x59\x04\xc7\x7a\xe5\x39\xdf\x3c\xb5\x9f\xf3\x81\xe9\xed\x74\xec\xb7\x93\x94\xa3\x68\x2d\x41\x56\xea\xa7\x2f\x6d\x9d\x01\xab\x85\x87\x33\xeb\xee\x16\x3d\x7f\x27\x56\xa0\x89\xda\x61\x3a\x1e\xa5\x09\x9f\xa5\xe2\x4a\xd1\xb1\xaa\x3c\x97\xda\x62\x5f\x55\x7e\x67\x69\xa2\xf5\x3c\x19\x1c\x26\x5c\x78\xab\x68\x1d\x25\x26\xc8\x54\xaa\x77\x51\xa5\x7a\x4d\xd7\x10\xb8\x70\xb1\xbf\x3d\xb6\x30\xb2\x0c\x4c\x2a\x71\xb8\x20\xf3\x13\xfe\x96\x72\xcc\x4d\x73\x6e\x0a\x08\x71\x1a\x15\x3a\xee\x2d\xb8\x15\x28\x02\x4e\xaa\x04\x21\x4e\x93\xfe\x2e\xba\x6a\x38\x7a\x6e\x68\x8f\x94\x1b\xbe\xc2\x53\x0d\x68\x05\xe3\xe8\xd9\xd5\x75\x93\x8b\x8d\x52\x03\xd8\xe9\x23\x45\xe1\xd3\x51\x4b\xbe\xdf\xa6\xa9\x3f\xac\xaa\xf1\x20\x12\x47\x60\x19\x08\xe8\xe9\x80\x82\x0e\x87\x59\xd0\x8b\x41\x8b\xb2\x98\x10\x6b\xe8\x73\x4e\x0d\x35\xd7\x23\x13\x43\xe2\xa1\x0a\x0d\xf8\xf2\x7f\x0f\x39\x26\x3f\xb1\xa8\xdb\xe5\x28\x91\x62\x09\x65\xce\x43\x5f\xa9\xc2\x5d\xc2\x3e\x45\x97\xf5\x92\xfa\x2a\xa3\x34\xcd\xaa\xf3\xd2\x2a\x64\x02\x19\xc5\x8f\x55\x59\x65\x12\x56\x39\x54\x26\x5a\xb0\xa5\xe0\xc7\x8d\xcb\xb2\x38\xeb\x8d\x4c\x36\x34\xd5\xde\xa4\x31\x8e\xed\x10\xd9\xd9\xf0\x8f\x14\xe5\x6e\x39\x85\xe2\x24\xdd\x75\x69\xa6\xbb\xe5\x8b\xf6\x11\xce\x98\xb7\xda\x46\x28\xcb\x69\x16\x0a\xde\xc9\x12\x21\x9c\x49\xd6\x65\x5f\x37\xb1\x82\x11\xf5\x4e\xe8\xdf\xb1\x0e\x00\xcb\x41\x54\x7b\xa4\x14\x2c\xae\x35\xb2\x91\x17\xbd\x3c\xb0\x2c\x3c\x41\x68\x68\xb8\x86\xca\x1a\xbf\x3a\xee\xf5\xcd\x13\xd5\x8f\xd7\xea\xd2\x48\xf0\xd9\xeb\xc1\xa6\x56\x73\x87\xf8\xc0\x7a\x13\xdf\x1b\x9d\xd0\x87\x58\xb8\xe8\x09\xbe\xe5\x3b\x77\xb0\x63\xbe\x72\x7b\x06\x75\x12\x7f\xc4\x4d\x33\xe4\x62\xbf\x0d\x84\x11\x52\x81\x0f\x50\x33\x82\xc5\x0b\x4f\x42\x54\x17\x27\x9c\xb9\x7f\x34\x8c\x8a\x9d\xd5\x97\xc4\x2d\x00\xdf\xc1\xea\x2e\xb9\x5e\xe3\x89\x52\x21\x60\xc0\x72\xb7\xef\x7b\x58\x34\x83\x3e\xf6\x35\x80\xe9\x8a\x92\x25\xae\x32\x82\x98\xda\x57\x8b\x02\x37\xba\xae\x56\x13\xb8\x5c\xf8\x0a\xef\x69\x7e\x4e\x64\x86\x26\xc9\x3b\x4e\x5f\xe1\x1b\xbe\xf3\x81\xff\x86\xdd\x0d\x49\x5a\x98\x7c\x27\x7d\x43\x21\x09\x5b\xd1\x27\xd1\xd5\x46\x61\xf6\x87\xd8\x26\x80\x02\x3c\xd5\x55\x51\xe2\x0e\xb7\x2f\xb1\xed\xdf\xaf\xe9\x82\x2b\xb7\x93\x34\x5b\x1a\x23\x7f\x07\xd8\xff\x18\x5d\x0b\x7e\xdc\x10\x0c\x15\xb8\xe5\x60\xdc\x67\x01\xe7\x05\xdb\xe2\x55\x71\xf7\xbc\xea\x3c\x9a\x98\x0f\x61\xe5\xce\x8b\xe0\xcb\x8f\xf5\xf5\x09\x46\x91\x61\x8a\x15\xae\x09\x4b\x59\xf0\x93\xc9\xd3\x96\x4e\x53\x64\x91\x59\x05\x05\xed\x20\x5f\x69\x60\x16\xf8\xb1\x13\xcd\x1b\x44\xc3\xa1\x63\x7c\x61\x00\xf1\x16\x02\x0a\x3f\xf1\xb7\x62\xaa\x8e\x2c\xce\x7a\x61\x1a\xc7\xf0\xf7\xe6\x5d\x29\x0e\x5a\xf4\x89\x62\xad\xa5\x04\x3d\xa8\x89\x17\x25\xfd\x69\xcd\xda\xee\xb8\xa1\xbb\xea\x9d\x9e\x43\x68\xe5\x27\xaa\xa4\x1b\x65\x69\x6f\x1c\x9a\x1e\x03\x13\xb1\x70\x11\x3b\x10\xfc\xce\xa1\xc4\xe7\x48\xe8\x3b\x7d\x2b\x90\xc5\x71\x9e\xdd\xa1\xdd\x88\x5a\xe0\x13\x5f\xb3\xdb\x7d\xc5\x65\xf8\xd0\x8d\x97\xc7\xbd\x9e\x65\xc4\xc8\xc1\x5e\xf3\x48\x78\xa6\x16\x12\xa0\xdc\x7b\x78\x96\xd3\xae\x4b\x18\x22\xf0\x13\xed\x30\x66\x56\x7f\x19\x6b\x04\x7b\xeb\x7b\xbe\xf6\x84\xfb\x9e\xea\xcb\x17\xe9\x5a\x92\x0f\xa2\x11\xae\xb4\x15\xe9\x75\x82\xd5\xa7\xda\xc4\x99\xc2\x34\xe9\x45\xd6\xef\x18\x35\xd2\x27\x74\xb1\xf8\x71\x9b\x1e\xf6\xc0\x64\x4b\x51\x18\xf5\x90\xa9\x21\xf5\xbb\xa1\xf8\x43\x6f\x6a\x68\xe2\x15\x2d\x7a\x95\xa6\x7d\x3b\xfc\x17\x41\x03\xfa\x5b\x7e\xd2\x82\x93\x5d\x90\x3b\x4a\x81\xc2\xaa\x46\x5b\xae\xcb\x07\xa5\xf2\x9b\xb9\xd5\xe8\xec\xa1\x9d\x3a\x34\x44\x7c\xef\x28\x77\x39\x94\xb2\xfc\xd8\x17\xf8\xe4\x5a\x2a\x37\x51\xe3\xa8\xf9\x71\xf9\xbc\xce\x39\x33\x13\xe4\x51\xd2\x67\xc5\x29\x94\xb4\xd0\x21\xe6\xc7\x8d\x33\xea\xd5\x57\xbd\x25\x63\x46\x3c\x00\x43\x2a\x08\xde\x95\x38\xac\x3b\x96\x73\x53\x4a\x6b\xdf\x9c\x37\x8a\x83\x82\xd8\x7e\xf8\x8a\x78\x87\x0f\x95\xa2\xdc\x87\x5a\xfc\x2f\x1d\x04\x60\x8f\x09\x42\x44\x0d\x90\x9b\xc9\xf7\x81\x03\xde\x52\x9a\xa4\x38\x11\x51\x83\x1c\x53\xce\xcf\x97\x94\xde\x42\x73\x90\x58\x5d\x65\x13\x64\x71\x64\xb2\x19\x25\x43\x79\xbb\x54\x2e\xf1\xac\xfd\x8f\x8a\xf1\x26\xed\x3b\xac\xf7\x87\x74\xa6\xe1\x63\x6a\x66\x27\x41\x96\xc6\x51\x12\x88\xe3\x03\xc3\x36\x4a\x25\x8c\x74\xde\xc6\xa8\x22\x1b\xe7\x45\x98\x66\xa3\x2d\x6e\x94\xd6\x92\xe1\x52\xdb\x70\x82\x66\x28\x75\xf7\xa4\x9b\xaa\xfb\x74\xb3\x71\xf4\x2f\xbc\x7c\x90\xba\xfb\x7f\x81\xef\x8c\x66\x21\xa6\x83\x04\xe4\x01\xc1\x03\xe1\x97\x08\xd2\xc8\xad\xe2\x3f\xf6\x6b\xea\x51\xcf\x36\x1d\x5f\x72\xd2\x9a\x62\xa7\x31\xfc\xb5\xe5\x36\xed\xdb\xe7\x1a\x0a\xd5\x2f\xb1\x18\x3c\x6b\xb8\xc6\x67\x8b\x18\x95\x6d\xbd\x14\x5f\x3a\xe2\x0d\xc6\x49\xaf\x0a\xf1\x9d\x7d\x73\x1a\xf6\xe7\x68\x51\x7b\x35\x29\xa5\x60\xa3\x75\x27\x0a\xbb\xa9\x9a\x03\xbb\x26\x0e\xaf\x77\xad\x89\xa5\x9e\xf3\x7a\x26\x8f\xfa\x52\xa9\x58\x73\x13\xe7\x0b\x5c\x3a\x1a\xb6\x39\x6a\xb2\x30\xca\x29\x87\x54\x8c\xba\x8b\xfe\xf6\xcf\xc9\xc3\xb6\xc0\xb6\x36\x88\xb2\x78\x2d\x4a\xa0\xae\x8d\x50\x74\x86\x04\x88\xf8\xb1\xfa\x88\x5e\xd4\x4f\xa2\x22\x10\x69\x20\xa9\x85\x7f\xaa\x21\xe4\x3f\xb5\x58\x90\x38\x58\xcb\xc7\x51\x91\xcf\xa8\xb4\xe1\x46\xe9\xba\x17\x33\x5d\xe7\x1b\xfe\x07\x9a\x04\x78\x16\x59\x07\x4e\xcc\x63\xb5\xf9\xf2\x38\xe9\x3f\xb1\x15\x09\x2f\x21\x5f\xc8\xcd\x56\xda\xcf\x96\x88\x5f\x2f\x15\xba\x83\x47\x23\x4c\x3e\xc4\x92\xb4\x4c\xc4\x23\x56\x37\x11\xb0\x6d\x64\xb9\x10\x12\xa8\x49\x69\xa0\xc9\x75\x9d\x56\x0e\xee\xe5\x06\xed\x4e\x14\x61\x57\xd5\x10\xad\x67\x96\x4c\x42\x92\xc2\xbb\x9d\xb6\xff\x4d\xfc\x44\xab\x1a\xa0\x24\x04\x70\x6e\x8a\x4e\x6a\xf5\xfe\xe2\x2b\xd3\xb1\x44\x79\x16\xa6\x40\x2c\x7b\x0b\x89\x2b\xa7\xb4\x5d\xd7\xdb\xf8\xb1\x3a\x4b\x8b\xa8\x08\x92\x68\x3c\xd4\x74\x85\xcb\xbe\x26\x59\x6d\x3d\x10\x5e\xf4\xc6\xc9\x20\x20\x12\x49\x0e\x79\x0f\x5c\x25\x46\xe2\xdb\x99\xab\xad\x4b\xff\xa8\x7c\xb6\x8e\x99\x7f\xf5\x55\x6f\xff\xfc\xde\xea\x47\xa3\x04\x7d\x8f\x96\x15\xae\xdc\x09\xfc\x4c\xab\x31\xbf\x38\xbb\xb8\xb9\x81\xda\x00\x3f\x84\x55\xc0\xd9\x06\x11\xdb\x95\x53\x68\xdc\x26\xd1\x1d\xad\xae\x10\x6a\xa4\xdf\x44\x99\x80\xed\xb4\x49\xdd\x3f\x2b\xde\xf0\xab\x5f\x66\x4c\xc2\x1f\xf9\x3a\x73\xeb\x7c\xf1\xd7\xb8\x48\xf8\xa1\x56\x75\xbb\x41\xc6\x4f\xda\xfa\x1d\x91\xe2\x1e\xc5\x49\x44\xe6\x47\x2a\xb5\x4d\x52\x0c\x98\xad\xfa\xf0\x2d\x7c\x47\x99\x52\x3b\x46\x7a\xa7\x21\x98\x3b\x77\xc8\xeb\xc7\xc1\x30\xcd\x84\xad\x82\x26\x15\xb8\xb9\xfc\xb8\xb6\x07\xf2\xb1\xd9\x59\x67\xb6\x2d\x8a\x84\xf2\x1b\xbe\xc2\x74\x41\x3a\x98\xff\x01\x97\x56\xa4\xc8\xdd\x58\x19\x05\x1c\x2e\xd3\x83\xba\xc6\xc4\xc8\x28\xfc\xc9\x94\x5a\x57\x17\xb4\x16\xcc\x5d\x5d\xf9\x66\x59\x9a\x98\xea\x77\xd4\xb4\xf3\x3a\x56\x87\xef\xbc\x5a\x91\x71\x3a\xca\x23\xea\x00\x2e\xcc\x1d\x92\x09\xa7\xf2\x76\xb8\x52\xee\xb1\xb9\xea\xdf\x78\xac\xa3\x4c\xcd\xab\xf7\xc3\x44\x69\xb3\x24\x29\x72\xb4\x21\x9e\xea\x76\x7e\x45\x6a\xd4\x3d\x04\x8b\x43\x90\xf8\xa9\xaf\xfa\xd5\x0f\x34\xfd\xf2\xcf\xe8\x36\xf3\x5f\xe1\x08\xb6\x5d\x0c\x5b\xf1\xc1\x92\x43\x64\xd0\xb7\xa6\xef\x74\xa0\x1f\x1d\x99\x2c\x32\x49\x28\xd3\x3a\xb4\x29\x3f\x54\x7b\xe3\xfd\x52\xf1\x95\x2e\xf8\xd2\x8c\x2e\x4c\x30\xe5\x9c\xbb\x18\x90\x81\xd4\xed\x8c\x32\xf8\xbb\xdd\x62\x4a\xcc\xcd\x78\x7a\x39\x00\xb5\x9b\xaa\xd2\xb9\xa1\x7c\x24\x4f\x34\x38\x65\x73\x87\xbc\x3c\xad\xd6\xab\x05\x80\x6b\xf9\xa4\x2b\xda\x1b\xf4\xfb\x8d\xe4\x0c\x03\xf1\xcc\xa4\x4a\xb3\xe7\xbe\xca\x05\xee\xb7\x70\xde\x5e\xaa\x12\x08\x08\x23\xb6\x14\xc8\x57\x95\x65\xfd\x0f\x1b\x67\xd4\x81\x03\x70\x23\xb2\x1e\x1e\x1c\xc6\x95\xca\x90\x96\xa3\x1b\x04\x79\x11\xc5\xeb\xb8\x11\x22\x45\xe2\x30\x78\x3f\xc3\x8d\xc0\x8f\xbb\xd5\xb8\x32\xfb\xe7\x3d\x13\xe4\xfc\x6a\xf1\x8d\x70\x20\x8e\xeb\x5a\xb2\xab\x29\x83\xf3\xf9\xea\xca\xb0\x01\x02\xae\xe5\x19\x3d\x4e\x3f\xa3\x84\xdd\x96\xa2\xa2\x20\xab\x11\x32\x66\x7f\x8f\x1c\x42\x37\xdf\x6b\xcc\x15\xf7\xcf\x7b\x4b\x41\x18\xc5\xf1\x38\x9f\xc6\xe9\x86\xf3\x03\x5e\x44\x68\xf5\xef\xe9\x3a\xb4\xef\x1b\x5a\xa8\xb2\x33\x71\x8d\xd5\x7e\x16\x71\xf6\x26\x12\x38\x1d\x2b\xfa\x70\xb1\x51\x7b\xcf\x1d\xf2\x46\x19\xab\x55\x64\x18\x6f\xe3\x60\x43\xe7\x81\x1f\xab\x06\xfb\x38\x48\x66\xf0\xfd\xa4\x1c\xa2\xa5\x8c\x49\x02\x9c\x31\x80\x53\xfa\x6c\xd7\x01\xed\x79\xf8\x82\x1b\xf3\x4c\x83\xb9\xf9\xea\xab\xde\x57\x83\x15\x43\xcc\x4d\x9b\x5b\xdb\xfb\x0f\xd9\x60\xc1\x3f\xd2\x1b\x89\xad\x83\x82\xe8\x9a\xa8\x47\x77\x03\xe1\xe2\x34\x6e\x3e\x3f\x69\x94\x40\x07\x0e\x78\x6b\x41\x61\x32\x72\xee\xe6\x5c\x5a\x34\xf7\x3a\x56\xb4\xe1\x82\xef\xf8\x11\xcb\x01\xb8\x54\xb6\x06\xb2\xfd\xba\xed\x13\x55\x1c\x5d\x6e\xb7\x65\x25\x41\x06\x9a\x6b\x20\x68\x5d\xd5\xcc\xf2\x37\x14\xbe\x76\xdb\xc4\x61\xda\x6e\xb4\x69\xfa\x8e\xd2\x38\x2a\xa2\x30\xd7\xf0\x85\x6b\xaa\xeb\x7c\xad\xad\x0d\x98\xaf\xe7\x85\x19\xaa\xb9\xc8\xf5\x1a\xa8\x89\x2e\x29\x5e\xfe\x7a\xf9\x59\xad\xb9\x9a\xa5\x96\x76\xd7\x51\x4c\xd4\x3f\xf4\x1d\x1e\xec\x0f\x75\x69\x6e\x7d\x2a\xd9\xd2\x43\xb1\x48\x9c\xb2\xef\xd7\xc6\x29\x74\x3c\xf8\x3d\x91\xe8\x9c\x42\x9a\xc0\x4f\xca\x5a\x0b\x3f\x29\xaa\x02\xd1\x5e\xbd\x4b\x4a\x67\xf2\x5f\xf8\x0a\xa1\x73\x41\x59\xf6\x93\xa7\x28\x75\x19\x85\x6f\xab\xdb\x6e\x27\xd4\xfa\xba\x09\x45\x36\xcb\x1f\xb3\x7a\x5b\x8f\x7c\x25\x1a\xf3\x23\xea\xba\xe0\x92\xbd\xaf\x44\x4e\x1e\x22\x7b\x91\x4d\xa3\xc0\x56\xe7\x60\x79\x21\x6a\x8c\xee\x52\x9c\x29\x95\xda\xe6\x07\x1a\xdd\x13\x8c\xfb\x03\xd0\x19\xe4\xa2\x75\xac\x81\xd9\x09\x3d\x75\xbe\xad\xf8\x4c\x03\x13\x64\x3b\xea\xae\x67\x5b\x52\x1a\x6b\x30\x60\xcd\x06\x20\xa3\x6e\x75\x4a\xe6\x0e\x59\x9d\x12\xe5\x8b\x18\xf7\x4d\x16\x05\x1d\x75\x54\x6d\x87\x0c\x1b\x3f\x69\x20\xb9\xe7\x0e\x79\xbd\x20\x8e\x03\x64\x37\x4c\xb5\xd6\xb3\xe6\xd3\xb6\xa7\x3a\x30\xf1\x28\x9f\xf9\xd4\xf9\x8f\xf5\xf2\x01\x25\x0f\xaf\xee\x4c\x94\x3c\xce\x67\xbb\xad\x04\xc9\x68\x64\xe2\x2a\x8f\x05\x34\x5c\x60\x06\xb8\xf5\xec\xec\xad\xe5\xaa\x2e\x2b\x65\x89\x2c\x88\x47\x03\x42\x16\x89\x50\x92\x1a\x09\x7f\x4c\xdf\x49\x90\x0a\x74\x27\x44\xa7\xe4\x69\x85\x94\xae\x92\x68\xa6\x14\x80\xeb\x0f\xaa\x00\x3f\x6e\x6c\xe8\xcf\x7b\x43\x13\x24\x6b\x83\x28\x36\x53\x75\x19\x0b\xab\xe0\x75\x99\x70\x14\xec\xd8\xad\x9a\x7a\x41\x0c\xb2\xf4\x0e\xd7\xa2\x07\x84\x06\x99\x1b\x6e\x2a\x3f\x2e\x9d\x73\xdc\x26\x79\x99\xf3\x63\xfc\x40\x7e\x71\x8b\x4f\x92\x37\x8a\x4d\xd0\xa3\x4b\x02\xd6\xf2\x65\x95\x21\x73\x88\x15\xbf\xf3\xea\x56\xe2\x02\x6f\xaa\x59\xf5\x5a\xc4\x40\x12\xfc\x98\xf7\x55\x86\xf8\x7e\xcd\x97\x77\x60\xf2\xa7\x1c\x49\xeb\x0f\x7c\xad\x48\xc8\x72\x1b\xc8\xe4\xcf\xfa\x0e\x43\xcc\x86\x8d\x80\x4c\xa1\x51\x6b\x81\x30\x55\x8a\x87\x7c\xff\x16\x7e\x26\xbf\xbc\x54\x92\xc6\x97\xb5\x0a\xcb\x5b\xbe\xc3\x2c\xdd\x2e\x55\x67\xcd\xaf\x19\x34\x2a\x8d\x04\x78\x51\xa3\x31\xfe\x5d\x95\x98\xe4\x01\xf5\x68\xd0\xe6\x40\x22\xfe\x90\x0a\x22\xeb\x80\x6d\x73\x7f\x34\x58\x85\x88\xe8\x52\xe6\x7e\xb4\x6a\x82\xb5\x60\xbd\xa3\xf4\x81\x11\x20\x45\x2c\xb8\x0d\xaf\xdc\x0b\x8a\x80\x93\x07\xc0\xf8\x6f\x97\x0d\x79\x5e\x24\xa6\x7c\x8e\x22\xca\x4c\x75\x1f\x73\x9c\xe1\xde\x4c\xb5\x70\x84\x59\xec\x6e\xfd\xee\xae\x9b\xe3\xde\x56\x92\xab\x3f\x2c\x15\xd2\xb9\xde\xea\x09\x4d\xb6\x93\xb6\x82\xb8\xfe\xbb\x8c\x82\x3b\xce\x38\xf4\x90\x15\xb2\x66\x2c\x5d\x10\xfe\xff\x5a\x98\xfb\xb2\x06\x29\xfc\x13\xdb\x9d\x0c\xa3\xa5\x60\xca\x29\x04\xa3\x64\xc0\x2d\xf9\xba\x16\x8b\xdf\x68\x43\xfa\x2f\x8d\x73\xaa\x79\x3b\x8a\x4d\x03\xa8\xbf\x88\x21\xb9\x95\xfc\x95\x2f\xec\x9b\x56\x34\xb8\x5b\xca\xb8\x07\xe0\x5d\x7c\xe8\xff\x46\xdf\x1f\x9b\xe2\x82\x1d\x14\xaf\x99\xd8\x22\x20\xf8\x0c\xa3\x05\x21\xe7\x99\x5b\x3b\x41\x9e\x8f\x87\xa6\x37\xdd\xb1\xed\x89\x7b\xb8\x54\x58\xd8\x7f\x57\x31\x2b\xb7\x57\x95\xcf\xe6\x31\x75\xfe\xc6\x66\xb9\x78\xbc\xe3\x4c\xc8\x71\x7e\x21\x03\x3e\xaf\xb1\x61\xbf\x4d\x0d\x32\x1c\xe0\xdf\x2b\x55\x47\x1c\xcc\x4d\x0b\x46\xb2\x6d\x0e\xd8\x81\x69\x38\x21\xce\xd1\x27\x95\x0a\xcd\x06\xfd\x24\x44\x30\xde\x66\x68\x9a\xde\x53\x60\x8b\x22\x0b\xc2\x15\xcc\x62\x44\x76\xb6\x86\x7f\x7a\x5c\x79\x5f\xa1\x6c\xb1\xba\x02\x16\xca\xf3\xa6\xee\x05\x1d\x6f\x61\xa6\x1d\xf4\xf2\xf1\x52\x1e\xf5\xa2\xd7\xb8\xbf\x8d\x1f\x07\x1e\x3f\x3f\xd6\x84\x3d\xc2\xc7\x10\x61\xef\xc0\x01\xeb\xdd\x43\x9f\x21\xe6\x3d\x2d\xea\x5d\x4c\x2d\xa5\xac\xce\x7a\x5a\x54\x91\x42\x06\x30\xca\x40\xfc\xb4\x72\xc2\xea\x74\x65\x42\x42\x4e\xa7\x7d\xce\x82\xf0\xd3\x38\xd8\xf0\x93\x36\xb7\xf7\xdc\x24\x79\xb4\xc4\x80\x73\x34\x2f\xcf\x2a\x3b\xbe\xb3\x6d\x0a\x19\x41\x1c\xe4\x2b\xdc\xf9\x46\x18\xbc\x83\xab\xce\x4f\xf4\x21\x38\x5e\x8a\x12\x65\xe0\xbe\xa1\x33\xf7\xe6\x26\x7a\xd1\x1b\x65\x41\x58\x44\xe1\x56\x38\x3b\x45\x6c\xc1\xb3\x2b\x2b\xc1\x20\x37\x39\xc1\x3e\x18\x87\x53\xba\xa9\xf2\x69\xa8\x7b\x22\x02\x9f\x03\xec\x93\x9f\xa0\x86\x44\xf2\xb5\xa1\x0a\xd8\x8f\xf1\x33\xc4\xc6\xa0\x89\xdc\x7d\xc9\xeb\x45\x79\x50\x55\xb1\xca\x5b\xf9\x27\xf4\x0e\xfc\x58\xa5\x5f\x69\x56\xd5\xd9\xd3\x0a\xa9\x7c\x9e\xae\x2c\x3f\x56\xd5\x21\xd7\x33\x82\x92\x6f\x91\x83\x1b\xa5\x51\x52\xe4\x54\x91\x58\xff\x03\x67\x68\x74\x45\xef\x08\x92\x57\xa1\xa5\xae\xb4\x9b\x95\x9e\x81\x55\xf4\x7e\xa7\x4d\xce\xb7\x17\xad\x46\x5c\xe0\xa3\x69\x76\x41\xe9\xa2\x7e\x8c\x66\x90\xc0\x16\xdb\x4c\xb5\x8f\x86\xf1\x58\x7a\x33\xe8\xcb\xcd\x6f\x6e\xb4\xac\xf7\x83\x5e\x61\x72\x4b\x4b\xc1\xfc\x02\x13\x2e\xc4\xe7\x9f\xe0\x96\xcb\xb1\x26\x43\x08\x93\x64\x69\x1c\x1b\x19\x77\x22\x7b\xe5\x61\x3e\x3f\xf1\x95\x1d\x46\x6f\x18\x25\x11\x6e\xd7\xe1\x59\xa7\xb3\x53\x9d\xb9\x02\x3f\x55\x60\xb1\x00\x18\xdc\x97\x6c\xfb\xa7\xfa\x3a\xd2\xe4\x71\xef\x1a\xa6\x49\x41\xdf\xa2\x37\x43\x5f\x02\x4d\xa4\xd3\x5a\x9b\xe8\xb4\xaa\x68\xce\x29\xe2\xf7\x15\x3d\xb7\xfb\x8e\x4a\xba\xd3\x24\x34\x4f\xba\x24\xe1\x0f\x10\x6a\x71\x3a\xdd\x54\x16\x87\x9d\x09\x6d\x68\x54\xb5\x0f\x35\xae\x6c\x37\xa9\x29\x5a\xcb\xc1\x6a\xe9\x23\x52\xb3\x6c\x3a\x3a\xe4\xdb\xc9\xe3\x09\x89\xcc\x45\x88\xe9\xf1\x5f\xe1\x9b\x21\xbe\x5c\x56\x75\xf7\x1e\x18\x04\x61\x31\x7c\x47\x3b\x38\x34\x07\x68\x55\xd2\xc0\x78\x7d\xf4\x32\x24\x79\xa4\xb7\x90\xec\xd1\x75\xb8\x23\x9a\xbc\x38\x0d\x1d\xbb\x3d\xab\x2b\x29\x1b\xd7\x31\x44\xa3\x38\x5a\x5e\xce\x3b\xb5\x4e\x25\xd5\x44\xd2\x52\x6e\x81\x66\x57\x95\x6a\xa7\x2e\x61\x3c\x2f\x2d\xd5\xf3\xca\x7f\xb6\x9f\x45\xec\x09\x8c\xdc\x18\x10\x03\xc4\x5e\x36\x36\x67\x4d\xbc\x96\xb0\xe0\x2d\x1b\x2c\x34\xec\x50\x99\x01\xe9\x81\x90\x4a\x62\xf7\x2d\x7e\xa1\xa3\x10\xdb\x40\xf8\xf0\xe3\x46\x1e\xb6\x7f\xde\x5b\x8d\xcc\x5a\x8d\x1e\x73\xe5\x2f\x34\xcb\x26\x26\xfa\xbf\x23\x41\x78\x4a\xdd\x82\x91\x61\x56\x1a\x50\x5c\x13\x3a\xb2\xf9\xb1\x82\xbe\x2d\x9b\x2a\xee\xa1\x29\x82\x00\xc0\xa3\x30\x7e\xd2\x36\xee\x1c\x8d\xe3\x58\x13\xae\x2f\x28\xc2\x75\x93\x2c\x5c\x05\x85\x9e\xa9\x6a\x73\xa5\x2c\x72\x5f\x05\x57\x00\xf9\x44\xd0\xe6\x09\x55\xd2\xb3\xd2\x82\xb5\x59\x71\x95\x44\xb5\xdc\x6c\x8d\xd3\xcf\x0c\x75\x03\x51\x29\x2a\xd7\x2f\x5b\x63\x2b\xb5\xd3\x6f\xf9\x6e\xa5\x6c\x68\xa2\xd3\x39\x35\x02\xce\xe3\xa8\x67\xe8\xdd\x90\xc3\xcf\x00\x42\xc9\x4f\x60\x7e\x87\x80\x76\x5a\x51\x2f\xc1\x9a\x40\x4e\x7d\xd3\x66\x75\xeb\x69\x3e\x88\xd2\x4e\x23\x5a\x88\x08\x95\x2a\xec\xe9\x57\x4c\x29\x42\x3d\x18\xae\xb8\x15\xbf\x81\x2f\x8b\x4d\x7a\x47\x21\x57\xfa\x41\x1c\x1b\x06\xaa\x33\x33\x82\xbe\x94\xb0\x24\xdc\xcd\x5e\x8d\x1c\xa4\x9d\xb3\x34\x05\x59\xa8\x19\x38\xfe\xf2\x7f\x44\x03\x4d\x3b\x39\x70\x44\xf9\xc6\x76\xdc\xb7\xcf\x5b\x4d\x58\xc1\xcc\x82\xc0\x5d\x0e\xdc\xa4\x50\x55\x07\x6e\xd4\x8b\x45\x6e\x09\x6d\x3a\xa0\xc8\xf8\xb1\xaf\x11\x8d\xd5\x11\xb9\xab\x8a\x6f\xc8\xfd\xb7\x77\x6b\xc7\xa5\x1b\x63\xdc\xa5\x25\x8e\x64\xf2\x75\x25\x08\xf7\x3d\xaa\x8d\xe5\x48\x75\x58\x38\xd8\xa3\xf3\x9b\x4e\x9e\x6d\xca\x08\xbf\xf8\x84\x62\x50\x91\x17\xe2\x4b\x9b\xef\x29\x9f\xe5\xbb\xca\xf0\x7f\x93\x3e\x44\xb4\x8c\x5d\xdb\xe4\xc4\xff\xcb\xd8\xbb\xc7\x48\x96\x9d\xf7\x61\x33\xd5\x3d\x8f\x7d\xcf\xcc\x2e\x49\xc9\x48\xe0\xa2\x43\x64\xa3\x78\xbd\x96\x80\x18\x31\x92\x20\xb7\x34\xd3\xe4\x72\x06\x62\x6f\xa3\x77\xb8\x4b\x2f\x1c\x80\xa7\x6e\x9d\xae\xba\xec\x5b\xf7\x16\xef\xa3\x7b\x7b\x11\x04\x41\x90\x3f\x0c\xc3\x7f\x04\xb0\x2d\x18\x50\x2c\x48\x89\x11\x19\x0e\xe5\x48\xa4\x64\x3a\xa2\xac\x2a\x52\x5a\x8a\x12\x43\x71\x77\xb9\x6f\xee\x63\x76\xde\xcf\x9e\xf7\xab\x67\xa6\x27\xb8\xdf\xef\xfb\xce\xf9\x6e\xd7\x1d\xc1\xff\x10\xf7\x72\xa7\xab\x6e\x9d\x7b\x1e\xdf\xe3\xf7\xa0\xec\x0f\x9d\x83\x31\x65\xdb\x35\x1b\x5d\x69\xdb\xaa\x5d\x75\xac\x2c\x62\x36\x11\xe8\xe9\xde\x1a\x1a\x52\x6f\x39\x81\x29\x6a\x36\x14\x3b\x94\x32\x24\xab\x48\x88\xdc\x2d\xcd\x5c\x3c\xc0\xbb\x4a\x83\x7d\x43\xa1\xd7\x8f\xd5\xb0\xb0\x59\x15\xe7\x52\x95\x55\xec\x4f\x7c\x69\x78\x43\xa1\xf0\x38\xf8\x15\x60\xd7\x93\x35\xed\xc5\x32\xcf\x09\x8f\xe4\xac\xc8\x41\x84\xc2\x94\x38\xa9\x64\x69\x90\xa9\x63\xd1\x9c\x51\x98\xd4\x2c\xea\x8a\xd3\x82\x88\x44\xd2\xa1\x20\x1a\x43\x9e\xb7\x90\x87\x26\x33\x0f\xc6\xee\x3e\xa1\x4a\x55\x4b\x19\x6f\x29\xe8\x09\x63\x5f\xe0\xeb\x06\xa5\x3d\x42\x39\x00\x19\x2a\xaf\x80\x46\x53\xf3\x58\x50\x98\x3a\xd2\x70\x48\x2d\xb4\xcd\xa8\x98\x51\x5a\x19\x67\x94\xc3\xcb\x39\x0d\x4e\xfc\x56\x13\x08\xb8\x3d\xca\xd2\xd0\xda\x9e\xa8\x1d\x89\x08\xbf\x12\xbf\x3e\xaf\x25\x42\xd8\x43\x36\xc1\xbf\x46\x82\x75\x4b\xcb\x9e\x7a\x8a\x7c\x38\x88\xc2\x65\x9b\xa0\x98\x24\x89\x9f\x8f\x61\xd1\x33\xc6\x94\xb9\xd3\x40\xa3\x11\x3d\xaa\x19\xaf\x75\x0a\x18\xae\xb6\x47\xc1\xc7\x5e\x72\xa5\xbc\x30\x8b\x86\x60\xe4\x61\x0e\xec\xea\x28\x1e\xc4\x75\x2e\xbb\xa2\xc6\x72\x7a\xac\xeb\x94\xaa\x9f\x98\x44\xe1\x72\x62\x86\x7c\x5c\x09\x1e\x41\xc5\x5e\xa7\x9a\xb4\xb9\xf3\x41\xaa\x0a\x6e\x78\x77\xa8\xec\xf2\xb5\x6b\xbf\xe5\xcb\x6b\xdc\xb5\x70\xc5\xa2\xaf\x7e\xb9\xa6\xe6\xc1\x76\x5d\x81\x6f\x7e\xde\xc1\xf7\x63\xbf\xbe\xa2\xe2\x81\x72\x19\xe7\x6f\xe3\x63\xfa\xf7\x66\x86\xdd\x32\x36\x49\x68\x81\x09\x51\xa6\x84\x52\x6c\xfe\x0b\x9a\x67\xa2\x43\xf7\x84\x6b\x15\x92\x50\x2b\x28\x84\xa2\x07\xd3\x52\x66\xd1\x7e\x29\x0d\xa2\x38\x9e\xd1\x78\x63\x55\xd5\x81\x3d\x00\xd3\x55\x15\x2a\xae\x9f\x16\x45\x1c\xd9\x2e\x06\xcd\xf9\x0f\x28\x81\x24\x5d\xc3\xb1\x2b\xf6\x71\x4d\xc0\x43\xa0\x2a\xf1\xb0\xc7\x2c\x6c\x8c\xfd\xcc\xba\x87\x99\x8c\x00\x76\x83\xe6\x8f\xe8\x12\x28\xd8\xe0\x65\x95\x13\x3f\x0c\xf7\x53\xb4\xb9\x37\x69\x33\x45\xe4\xf3\xfb\x81\x52\x6e\x38\x3f\x6e\x7d\xf1\x6b\x1c\xe9\x9c\xa6\x6a\x9d\x64\x1b\xb4\x30\xf8\x63\xd5\x8b\x5a\x8e\x00\x67\x40\x3a\x7d\x79\xec\x39\x4b\xc7\x74\xac\xb7\x31\x75\x8e\xbd\xb4\xf0\x85\xf6\xc0\x44\x59\x2d\x88\x1b\xab\x20\x6e\x2a\x16\x3a\x74\xa8\xfd\x6a\x34\xca\x39\xcf\x94\xfe\xb5\x12\x6c\x9c\x16\x79\xae\x76\x82\x38\x4d\x97\x75\xaa\x13\x68\xa2\x87\x86\x02\x84\xcb\xf9\x93\x94\xa2\x9d\x46\x39\x08\xd9\x05\x86\x0a\xef\xf8\xde\x58\x31\x0a\x58\xa0\x0e\xcb\x60\xef\xc4\x77\x7b\xae\x01\xd4\x82\x9e\xc8\x8f\x02\x5f\x4d\x7a\x17\x99\x02\xe6\x18\x90\x47\x74\xcc\x7c\x69\x6f\x87\x5e\xb9\xec\x06\xf4\xa2\x90\x5d\x3e\x4c\x46\xb1\xa8\x52\xb1\xa9\x29\x8a\x6d\x3f\xa0\xd5\x25\xd2\x3e\xd5\xcf\xc3\x0b\x3c\xcd\x65\x5d\x57\x91\xaa\x66\x20\x16\xe1\x6e\x64\x2d\xf8\x29\xe7\x54\x41\x8c\x74\xb9\x32\x46\x21\x29\x3d\xc1\x39\x37\x75\x1b\x84\x57\xf3\x91\x4d\x70\x1c\x34\x29\x38\x4e\x5b\x31\xbc\xd0\x1e\xa6\x49\x54\xa4\x5e\xd1\x51\x20\x87\xbe\x6a\x70\x56\x53\xbe\x07\x69\x99\x9b\xa4\x97\xef\xd4\x3a\x4d\xd8\xf8\xf1\x2d\xe2\x5c\x81\x77\xf9\x3d\xa4\x87\x4e\x06\xd5\x8b\x12\x8f\x75\xf9\xc8\x69\xd1\xa7\xb1\x03\x08\x23\x9e\x65\xc0\x2d\xdf\x38\x8e\x4e\x99\x44\x44\x23\xdb\xa1\xb8\xb7\xb3\x04\x88\x70\xe4\x1b\xd7\x3f\x3a\xa5\xf8\xca\x3f\x21\xc8\x8c\x98\x15\x37\x2b\xb1\x5a\x43\x7c\xca\x6a\xb6\x38\xb0\x96\x42\x6e\xd5\xfc\xae\xb2\x22\xff\x45\x9c\xe8\x4e\xfe\xa2\x9a\xa4\xe8\x9c\x01\x78\x82\xd7\x4c\x2e\xdc\x2f\x6c\x5e\xa2\x4d\x01\x6b\xff\x06\xc1\x28\x1d\x26\xaf\xfa\x3e\xd4\x86\x66\x27\x9e\x75\xc1\x6c\x1f\x94\xa5\x6f\x53\xf5\x52\x74\x36\x95\x73\xff\x7b\x81\x0f\x26\xaf\xd1\xcf\x45\x6e\x88\xea\x25\x4a\xd4\x9f\xf2\x8b\x91\x8d\x91\xa6\x2d\xea\x60\xbb\x61\x11\x8e\x15\xf4\x18\x72\x01\xc7\x2f\xf2\xae\xb0\x1f\x50\xe0\x87\x69\xbf\x1d\xd3\x56\x1c\x76\x28\x8e\x11\xa1\x0f\x1a\x2d\xfc\xae\x6d\xf0\xe9\xc5\xd4\x80\xc4\x3e\x82\x98\x4f\x1b\x74\xc9\xe6\xda\x5d\xd3\xef\x13\xab\xc4\xe5\x33\xeb\x35\xd5\xf5\x06\x09\x9d\xa2\xcc\x96\x2d\xe2\x7f\xc4\x76\x30\xb9\xe0\x6b\x17\x1f\x54\xab\x29\x8e\x20\x8f\x85\x40\x14\xa9\x0d\x5f\x4f\x7c\xa2\x14\x9a\x2c\x5b\x7b\xb8\x1a\x43\x2e\x31\x04\x6a\xd1\xbd\xab\xf0\xfc\x7f\x36\x56\x90\xc5\x8b\x78\x81\xf8\x57\xb7\x31\xb8\xc8\x41\x3e\xc0\x12\xc0\xc6\xf3\x1e\x4d\x09\x14\x70\x59\xad\x05\x6b\xe0\xe7\x08\x8b\xf9\x4f\xa6\x82\x27\x61\x0a\xc4\xd5\xc3\xcd\x28\xb6\x2b\x30\x02\xa2\xfa\x5c\x4d\x28\x01\x8e\x3f\x51\xf3\xf4\xe3\xfd\x59\x01\xd7\xbd\x47\xdb\x63\x0a\xe4\x95\x72\x08\x85\x03\xed\x13\x5a\x46\xc0\x2f\xb2\x8c\xaa\x78\x2c\xfa\x01\xfb\xfc\x3f\xf8\xe2\xaf\x2e\x7e\x06\x93\x0b\x68\x88\xe3\xa8\x07\xb3\xe0\x85\xd6\x53\x07\xea\x0c\xbf\xff\x71\x22\x44\xbb\xce\xa2\x17\x6f\xbf\xa2\x62\x7a\x36\x87\xc3\xa6\x71\x84\xb6\x57\x3c\xd9\xa9\xb1\xf6\x57\xa2\x6d\xae\x66\x9e\x87\x69\xf6\xda\xd8\xeb\x4c\xb4\x3a\xaa\xee\xc5\x4e\xe3\x38\x47\x2f\x07\x4a\x48\xf6\x35\x1a\x51\x44\xf8\x7b\x26\xca\x57\xf2\x63\xac\x6d\xa1\xf0\xfb\xd6\xe2\x6c\xa7\x9a\xd7\x48\x69\xf7\x76\xa4\x00\xd8\xcd\xd2\x64\x69\x68\x12\xd1\xed\x15\xe1\x2c\x35\xf4\x1c\x41\x61\xdd\x4c\xab\x24\xcd\xcf\xb7\x7b\x59\x3a\x1a\x09\x1d\xb9\xe6\x27\x8b\xdf\x77\x53\xf7\xc6\x67\xa6\xfa\xd2\xcf\xb4\x4d\xd6\x2f\xdd\xde\x0e\x74\xee\xeb\x34\x07\xf9\x5a\x35\x56\xc9\xdb\xb5\xcc\x00\x89\x43\x29\x00\xf2\x3b\x18\x24\x6e\x81\xe3\x38\xbc\xda\xe4\x24\x1a\x25\x4b\x51\x12\x15\x11\xcd\x34\x24\xb0\xfc\x0b\xf9\x26\xd0\xc2\x1c\x31\xa0\x10\x8f\xd4\xc4\x38\xaa\xaf\x93\x9a\x9f\x5f\x29\x24\xc4\x29\x9c\xe2\x6f\xa1\x18\xe8\x3e\xbf\x1a\x0c\xfc\x97\xe3\x88\x10\xf0\xb6\xd6\x29\x09\x63\xd1\x1d\x9a\x1e\xfc\x59\x18\x31\xfe\x0b\x8a\x03\x58\x86\x48\xf9\x3d\x55\x59\x92\x5d\xb5\xdd\x2e\x2f\x1b\xf0\x70\x8e\xe2\x4f\xf9\x66\x2a\x2e\x9f\x3b\xdc\xb6\xaf\x84\x36\xcf\x85\x36\xc0\x50\x42\x65\x5b\x7a\x4e\x91\x9e\xf2\x51\x94\x45\x24\x43\x38\x77\xb8\xc6\x65\xc0\x66\x77\x17\x87\xaa\x40\xe1\xf7\x28\x77\xb1\x6c\x18\x71\x61\x48\xba\x75\xaa\xef\xfe\x9e\x92\xe8\x03\xa2\x91\x19\x62\x4a\x66\xf2\x8c\x02\x70\xf7\x4d\x19\xa7\x51\x6e\x91\xfa\x38\x41\xb4\x2f\xbd\xa4\xa7\x9b\xf4\xa0\xef\xd6\x0e\xbf\xbe\x49\x1e\xa9\x1e\x1e\x1f\xfa\xbe\xe6\xcc\xe1\x89\x90\x60\x5f\x52\xb5\xb4\xef\x8e\x55\xb4\x73\x0c\x3b\x03\xdf\xe0\xe5\x61\x15\x41\xf2\x0f\xfb\x0e\x87\x77\x02\xd9\xd0\xc9\x0c\xbb\xce\x21\x98\x3d\x3f\x55\xd7\x3b\x38\xdf\x8e\x32\xa6\xb3\xa0\x72\x84\x70\x9f\xaf\x95\x50\xe8\x28\x4b\x57\x80\xc2\xc2\x6e\x7c\x8f\x1e\x19\xe8\xec\xc7\x11\xa2\x8b\x47\x95\x2f\xfc\x4f\xdb\xee\x90\xd9\x2d\xc9\x26\xcc\xa8\x4e\x06\x7c\xf3\xd5\x79\x2a\x01\xc8\xa3\x93\x06\xf2\x68\xbe\x6a\x6d\x61\x13\xf9\x08\xec\x43\xd7\x55\xf5\x8b\x71\x37\x92\xa4\x7b\xa4\x56\xb7\x5c\xdb\xeb\x47\xfa\x0e\x4d\x6d\x76\xbb\x1a\xd7\x1c\x15\xaa\xb5\x84\x1d\xe3\x37\x70\xea\x60\x2f\xb8\x55\x17\x09\xf3\xf2\xf5\xef\x53\xdf\x53\x5a\x89\x4a\xae\x0f\x6e\xa4\x98\xbb\x60\x6e\xe0\xd8\x60\xc6\x39\x7e\xfe\xfd\x6a\xf1\x6d\x6e\x9f\xd0\xaa\xc5\xda\xf9\x2b\xec\xdd\xfc\xb5\x63\x55\x26\xdf\x3e\xc1\xfb\xc5\xab\xbf\xda\x64\x34\x3b\xca\xec\xc8\x64\x32\x3e\x58\x1f\x38\xcb\xf1\x9b\x18\x2e\x84\x60\xe6\xc6\x14\xee\x8f\xc0\x32\xb1\x59\x5b\xcd\xa2\xfe\x00\x15\x3e\x8e\xbd\x55\xda\x78\x6e\xaa\xba\x5d\x25\xdd\x85\x1d\xb1\x12\x83\x98\x04\x56\x7f\x8d\x91\x00\xa5\x10\xb3\x67\x5a\xac\xff\xd0\xa1\x76\x66\x97\xca\x5c\x18\x76\xce\xc0\xc6\x27\xb7\xaa\xc5\x12\x15\x76\xb8\xcb\xf7\xfa\xae\x2b\x59\xad\x53\x1a\x64\x7b\x11\x07\x12\xc6\xf4\x1d\x55\xc5\x3b\x46\xa7\x1e\xff\xff\xb4\xf7\x49\xad\xa7\x61\x3c\x07\x26\xe9\xc5\xee\x88\xc0\xb6\x7a\x4c\x49\x71\x1f\x6b\x52\x48\xfa\x8f\x82\xb2\xe9\x74\x3a\x33\x91\x26\x7e\xff\x2f\xd8\xb7\x1d\x16\x44\x39\x18\x6c\x7d\x61\x5f\xff\x7a\xbb\x67\x57\x0c\x59\x60\xc1\x9b\xfd\x39\x8e\x77\xd0\xa4\x74\xd6\x24\x87\x0e\x71\x72\xf8\x6f\x94\x65\x75\x61\xb3\x95\x6a\x35\xcd\x7a\xff\x78\x2e\x47\x3a\x24\x4c\xf5\x20\x38\x82\xdf\xd3\xf9\x7b\xab\x41\xce\x6b\x9e\xf4\x3a\x55\xb1\xf9\x03\x0d\xf2\xfa\x60\xaa\xe1\x22\x61\xdb\x4a\x94\x43\x96\x16\xeb\x83\xd1\xe5\x7c\xe3\xea\x9e\xa3\xc8\x86\x72\x76\xa0\x42\x8b\x0c\x82\xaf\x1b\x5e\xde\x42\x7b\x64\x93\xc4\x24\x05\x61\xa4\x91\xa2\xe3\xdd\x69\x08\xac\x10\x89\x7d\xd9\x30\x8f\xfa\x49\x35\x17\xbd\xa1\x16\x9c\x18\x64\x25\x48\x9a\x15\xa6\xc3\x51\x9a\x33\x49\x0d\xd9\xd4\xfd\x69\x73\x30\xb9\x71\xed\xfd\x57\x6c\x58\x16\xe8\xab\x21\x3e\xbb\xa1\xbc\xa1\x6e\xa8\x9a\xfc\xaf\x2e\x7e\x71\xc6\x77\x4a\xa0\x00\xa0\x7c\xf6\xbc\x9d\xab\x5f\x1c\xa1\xc9\xc0\x32\x41\x72\x0a\x44\xb8\x74\x50\x94\x77\xc1\x65\xfa\x41\x98\x10\x67\xf1\x5e\x31\xde\x37\x71\xea\x20\x3f\xf9\x18\xa7\x0e\xe6\x13\xcc\x99\xf1\x27\x6f\x52\x46\x25\x3a\x54\x5b\xe3\xaa\xc3\xcf\xb7\x4d\xd2\xb7\x71\x8a\xf6\x18\x76\x59\x54\x66\xf8\xba\x4e\xe9\x89\x0d\x25\x1e\xce\x50\xc9\x15\xbf\xce\x34\x11\xe5\x49\xcb\x37\x2b\xa5\x2d\x86\x95\xff\x53\x6c\xfb\x7c\xa3\x5c\x79\x0b\x1b\x0e\x92\x34\x4e\xfb\x91\xcd\x77\x61\xf7\x94\xb3\xa6\xe5\x3c\xa1\x4e\x06\x0a\x16\xbc\x1e\x28\xeb\xc1\x4d\x0c\x9a\xc8\xa2\x56\x8f\x29\x54\x09\xfa\x6d\x28\xa7\x3f\xd1\xd9\xa3\xd8\x3e\x2b\x69\xc1\x1a\xf7\x6c\x76\x16\xf8\xed\x62\x7a\xeb\x14\x8f\x38\xd5\xe9\xdf\xa8\x79\xf5\xd1\x84\xc7\xeb\x3c\x39\x7e\xc4\xd3\x97\xd3\xa7\x3c\xb0\x6d\x14\xa8\xee\xdc\x0e\xe4\xab\x52\x5f\x22\x14\x2b\x12\xde\x4d\x65\x91\x7f\x39\x50\xf2\x0b\x57\x54\xc7\xfe\xa9\x89\xb2\x0a\x66\x47\x1c\x11\xe8\xa9\xde\xba\x04\x17\x5e\x6d\xfa\xfd\xb1\xde\x76\x30\x9b\xc4\xfe\x9a\x8e\x53\x14\x51\x2f\xe8\x22\xd1\xb9\xa0\xf5\xf4\xd3\xce\x96\xb3\x9a\x66\x9b\x1b\x4a\x7a\xea\x13\x3a\x54\x5d\xf9\xd2\x0b\xcd\x6f\x36\x91\x13\x7b\x16\xe6\xb9\x5a\x41\xe5\x23\xad\xa0\xf2\x51\xe0\xe9\xc7\x79\x91\xf6\x90\x11\xe3\x27\xbe\xa9\x94\x35\xde\x54\xce\x82\xd5\x2e\x10\x2d\x45\xa1\x49\x8a\xc7\x3c\x12\x9b\xcf\x4f\x47\xd5\xaa\x8e\x6d\x77\xde\x54\xc3\xee\x72\xc8\xea\xb7\xa2\xd3\x70\x1d\x93\xc8\x71\xa7\x9d\x2e\xc8\x69\xe5\x4a\x01\x06\x26\x82\xaa\x3f\xa3\x91\xc0\x1a\xb8\x8f\x2a\x26\x77\x4b\x6b\xf4\x1e\x7a\x9b\xe2\x30\xfc\xa8\x6b\x8f\x64\xcb\xf9\x23\xde\x65\x03\xc2\x30\x6e\x4c\x3c\x42\x55\x54\x2f\x45\x70\x46\x97\x85\x15\x3a\x60\x1b\xf2\x42\x44\x12\x4f\x22\xcb\x95\x18\x5c\x59\x5a\x8c\x3d\x36\xa8\x35\xa9\xe2\x63\xf9\xa8\x06\x7f\x18\xf6\x4f\x7a\x60\x5f\x66\xeb\x12\x59\xdc\xdf\xce\x63\x33\xe2\xca\x17\x3b\xc9\xd1\xd0\x89\xab\xdc\x5e\x47\xd5\x37\x79\x9a\x98\x2e\x53\x8d\x39\x4d\x0f\xfc\xd9\xf2\x89\x2b\xa6\xf5\xcb\xc4\x89\x6d\x0a\x05\x86\x46\x87\x6f\x9c\xda\x57\x37\x4d\x7a\x83\x94\xb4\x45\xf8\xf4\x71\x84\xf8\x17\xf7\x3b\x99\x90\x26\x63\xeb\x5e\x66\xcd\x50\x59\x07\x5c\xac\x21\x48\xbc\x5b\x27\xb1\x5b\xc8\xc6\x64\x4e\x7b\xd4\xbf\xac\x2d\xee\xe7\xfd\x8f\x71\x05\xf5\x4f\x6a\xdb\x68\x37\x5d\x6d\xa9\xd2\xc7\x31\xd5\xc2\x3d\xf6\xc0\x8a\x09\x87\x79\x6e\x57\xa8\x9b\x53\x6e\xdd\x7d\x11\x6c\xd8\x38\x1d\x49\x80\xa9\x31\x50\x52\xe1\xa4\xdf\x81\x0e\xd4\x71\xa7\x32\x11\xc6\x65\x17\x59\x19\xf2\xa1\x37\xc6\x35\xbb\xb9\x40\x49\x2b\x3c\xd6\xf1\x38\x99\x9d\x13\x85\xb0\xb8\xe5\xde\x89\x4d\x8a\x41\x99\x47\x26\x17\x21\xa2\xa6\x7e\x88\xef\xb3\x2f\xd9\x6c\x25\x85\x20\x8f\x23\x3e\x2e\xee\x77\xc4\xc7\x46\x82\x53\x1a\xdb\x64\x96\xd6\xad\xf8\x21\xb4\x9c\x65\xdd\xb6\x09\xfd\x78\xd4\x60\xee\x2a\x15\x98\xab\x4a\xcf\x64\x94\x96\x49\x6f\x57\xb5\x10\xf9\x90\x19\x7b\x07\x32\x68\xdb\xca\xe1\xe3\x0f\xa2\x8f\x03\x95\x7e\xff\xef\x28\xee\xc8\xb6\x5a\x7d\x0b\x68\x94\x47\xdc\x7c\xcf\x47\x36\x2c\x63\xef\x27\x2b\xaf\x43\xd5\x65\xa6\x75\xdc\xa8\x70\x42\xf0\x30\x04\xb5\x9a\x3d\x21\x20\x13\x85\x72\xf9\xd5\x5f\x9b\xf1\xd0\x8d\x19\x6c\x00\x48\x70\x66\x38\x1d\x41\xee\xf3\xdb\x8a\xf4\x5f\x85\xf3\x59\x37\xca\x07\x4e\x31\x50\xfb\x51\xf3\xb5\x8a\xe9\x97\x32\x6b\x77\xfa\x61\xbc\x38\x9e\xd6\x91\x40\x55\xf8\xe8\xd8\x23\xda\x6e\xa3\xb7\x80\xbc\xef\x67\xd8\x7d\x85\xfc\xb6\x4f\xd9\xa5\x87\x36\x5a\xb1\x19\x5a\x3e\xe8\xc5\xc3\x8e\x91\x55\xce\xc6\xbe\x08\x7c\xa6\xc9\x8e\x35\xa2\x20\xaf\x66\xd8\xcb\x86\x08\x7c\xe3\xe1\xbc\x64\xf7\xac\x24\x0b\x6e\x29\xcc\x1d\x97\x94\xe5\x0d\x3a\x11\x19\x6b\x96\x09\x12\xfe\x02\x17\x65\x77\x75\x7c\x96\x0a\x5b\x69\x47\x7a\x55\x72\x49\x4d\xa9\xca\x52\x94\x44\xf9\x40\x42\x64\xf4\x59\xdf\x57\x78\xe4\xf7\x55\x9c\x98\xa7\x71\x6f\x77\x4b\xf1\x4b\x75\x33\x27\x50\xf5\xd9\xa3\x18\x57\x54\x3e\x20\x43\xa7\x61\xc0\x40\x37\xbf\x47\xa7\x35\xb6\xef\xef\xd3\xd4\xc6\xd8\xce\x76\x9e\x50\xbd\x91\x28\xeb\xe5\xdb\x9a\xf6\xc9\x38\x5d\xb5\xd9\xac\x4a\x8e\x40\x32\x73\x15\x96\xea\x69\x90\x77\x43\x70\x03\xc5\xbd\x33\x53\x9b\x5a\x95\x81\xe4\xe1\xc0\xf6\x4a\x67\x20\x2d\xb2\xbc\xfa\x70\x7b\xd4\x6d\xbc\xc3\x28\x9c\xd1\x1e\xa4\x90\xf2\xe5\xbc\x52\x5b\x95\x6c\xeb\x34\xe4\xac\x79\x3a\xca\x4c\x02\x16\xa4\xd3\xf4\xaf\x86\x5e\xbc\x02\x1e\x24\x68\x93\x58\x93\x75\xd7\x76\xb4\xbe\xfa\x65\x1e\xa7\xd3\x2a\x3d\xbe\x1c\xa8\x4d\x1c\x95\x0d\x54\x8a\x37\x03\xed\xcd\x75\x4e\xc9\x62\x76\x0d\xa7\x2b\x2f\x3b\x87\x35\x55\x7b\x3f\x17\xec\x73\x73\xad\x1f\xe5\xb1\x29\xa2\x15\x96\xf4\xc6\x8c\xfb\x54\x71\x90\x90\x52\xb1\x44\x88\x42\x78\x14\x83\x34\x4b\xcb\xfe\x80\xa5\x6e\x19\x0a\x15\xf8\x5a\xe8\xc9\x26\x53\xad\x30\x59\xe5\x98\x4c\x4c\x46\xe8\xb7\x89\xfb\x88\x9c\x80\xfd\x2c\x4a\x7a\x6e\x3b\x72\x68\x3a\xa7\x78\xf8\xf1\x78\x8b\x17\xdb\xb3\x55\x72\xf7\x02\x66\x8c\xe8\x92\x68\x72\x24\xb3\xa0\xf9\x66\xec\x2b\x5c\x17\x1b\xf8\x11\xed\x6e\x9c\x86\xec\xe3\x21\x00\x6b\xdf\xd2\x45\xbb\x1c\xab\xe4\x93\x07\x1e\xa3\xcb\x99\x4d\x5e\xc5\xba\x93\x82\x87\x22\x19\xac\x6b\x59\xc9\xc2\x8a\x19\xdf\xcb\x7e\x54\xbc\x33\xdf\x9d\x40\x49\x20\x9e\x56\x7c\xb7\xd5\x28\x8e\x23\x33\xdc\xe1\x4f\x21\x28\xf2\x38\x9d\x00\xc7\xbf\xfd\x89\x16\x8a\x39\x1e\x68\x0d\x99\xe3\x9a\x55\x96\x0e\x09\xb0\xf3\xa2\x68\xbb\xb0\x3e\x0c\x36\x0b\xd4\x8c\xd0\x71\x7b\x4d\xb9\x05\xde\xd5\xb0\xcf\x24\x2f\xa2\x3e\x4e\x1f\xcf\xb6\xc3\x21\x2c\xc6\xc3\xfe\x3c\x34\x49\x61\xb2\x5d\xca\xcd\xed\x3a\x62\x64\x51\x74\xa1\x2f\xc7\x7e\x72\x9a\xf6\x16\xb6\x22\xa5\xb8\x58\x6c\x49\x69\x86\xb8\xff\xe0\x2c\x83\xa6\x85\x2d\xe0\x54\x67\xb3\xd0\x64\xe8\xf8\xca\x34\x55\xce\x05\x27\x03\x9d\x27\x0e\x47\x36\x33\x24\xd3\x40\x63\x82\xe8\xf7\x06\x1e\x8b\x6f\x68\x1c\x10\x1f\x5e\x56\xe6\x72\x97\x35\xf4\x22\x85\xce\xe1\xcb\xbc\x4b\xb1\xb0\x10\xdf\x34\xb1\x30\x6d\x54\x0c\xaa\x53\xe3\xc0\x01\x5e\xf4\x88\x57\x35\x0f\x5d\x14\xcd\xb6\x2e\xb1\x5f\xa2\xe0\x94\x7e\x1e\xf6\x88\xd3\x9a\xdc\x7e\xda\xb1\x61\x8a\x34\x4b\x76\x56\x41\xb9\x28\x96\x2b\xee\xf5\x6d\x55\x04\x81\x4b\x9e\xe8\x71\x79\x10\xc0\x39\xa5\xbe\xad\xe5\xb6\x4c\x31\x88\x6d\x11\x85\xac\x79\xc9\x62\xa3\xca\x1e\x12\x42\x9b\x98\xae\x77\x82\xcf\x6c\x45\xdc\xbd\xdc\x7e\x71\xff\x1c\x69\xfb\x61\x16\x1f\x55\xda\x81\x47\x6b\x3c\xb0\x9e\x1d\xf2\x4e\x82\x92\x2f\xef\x92\x7c\x53\x8b\x83\x8b\xcc\xee\xac\x72\x5e\xa0\xd6\x45\x96\xf2\xb8\x92\xfc\xe4\x02\x13\x46\x78\x1b\xa1\x0b\xb1\xde\xc0\x15\x43\xe6\x7f\x29\x78\x4a\x85\x33\x79\x91\x95\x61\x41\xed\x1f\xc7\xe9\xb9\xa2\xbc\xeb\xfe\x15\x3e\x12\x0b\xf0\xb2\x22\x4e\x24\xe4\xd9\xd0\x72\xec\xa3\xe3\x9a\x9f\xfd\x4f\x39\x08\x16\xad\x68\x1f\x75\x45\x89\xdd\x47\x63\x8a\x53\x78\x27\xf5\xd3\x90\xa9\xed\x21\x78\x05\xf2\xeb\x0b\xe0\x92\xa2\x3c\x21\xce\xc2\x38\x53\x36\xc6\x4a\x93\xa6\x35\xa9\x0e\x1b\x01\x2f\xa8\x94\xfe\x3c\x62\x4c\xca\xe3\x7f\x71\x0f\x75\xea\x90\x76\xa2\x39\x82\x08\x19\x6c\x1e\x1c\xcd\x7b\x3b\xd5\x44\x45\x68\x79\x14\x8d\x4c\x91\xb9\xad\xc6\x11\x61\xff\x3e\x60\x43\xf0\x15\x77\x75\x87\x62\x2f\x7c\xf0\xb0\xaf\x6f\x34\x45\xde\xdd\x32\xeb\xd9\x84\xe8\x33\x58\xdb\xec\x7c\x24\x8d\x71\x55\x0e\x01\x8e\x18\x7b\x76\xab\xe3\xa7\x65\x99\x84\x03\x0b\xdb\x36\xd7\xeb\x3f\xad\x76\x8b\x9a\xbe\x64\x3a\xb4\xbd\xb5\x5d\xf4\xbc\xce\x09\xe9\xc0\x9c\x73\xb5\xf1\x95\x18\xc6\x1a\x70\x8f\x88\xc7\x5a\xe3\xa1\x99\x67\x31\x56\x35\x81\x26\x14\xca\xcb\xe4\xe7\x8b\xf0\x04\xf9\xeb\xf7\x15\x03\xee\xfb\x5e\x68\xd5\xc6\x14\xb7\xb6\x94\x77\x21\xb3\xdd\xc4\x3c\xcc\x13\x03\x87\x26\x1c\x44\x89\xcd\x77\x79\x2c\xd3\x43\xd4\x58\x11\xe1\x1f\x3f\x55\x8f\x07\x0a\x56\xbc\x89\xe8\x4a\x1c\x05\xe8\x7d\x8a\xc7\x24\x3d\xa1\x04\x61\x8d\xae\x08\x84\xb5\xaf\x1e\x08\x55\xa8\xe3\xaa\x2f\xf4\x67\x5a\xf5\xf8\xcc\xd4\x30\x54\x29\xfd\xc8\x99\xe7\x22\xef\x3b\x82\x08\x97\x6f\x54\x37\x74\x64\xb3\x3c\x4d\x12\x0b\xe8\x9b\xd3\x62\x76\xd2\x24\xa7\x1a\xac\x21\xda\xa3\xb8\x4c\xfa\xa8\xb2\x4a\x0b\xcd\x77\x33\x8e\xb9\xad\x71\x29\xca\x86\x0f\xb5\x9c\x07\xf7\x1e\xe0\x46\xc4\x04\x47\xa9\x0a\xcc\xd0\x12\x74\x78\xc5\x29\x1b\x7c\xc4\x52\xb3\x60\xfd\xb3\xd9\x29\x7d\x23\x5e\xd6\x2f\xa2\x4f\x26\x1e\xe6\x7b\x95\x83\x5c\x51\x0c\xec\x6a\x4e\x1b\x0b\x02\xf0\xdd\xa4\x3c\x24\x69\xbc\x2a\x22\xcf\x74\xfc\x9e\x34\x5a\xcb\x5f\x5d\x8e\xec\x6a\x14\xbe\xda\xf2\x44\x47\x9c\x9c\xe2\xea\xdc\x44\x06\x0d\x8d\x2b\x94\x49\x6d\x9b\xbe\x41\x8a\xdb\x9f\xab\xf3\x63\x0c\x9b\xd6\x81\x9b\xc7\x3c\x64\x0a\x3c\x84\x93\xec\x27\xa1\x61\xe5\x6a\xfa\xa7\xd8\x93\x2e\xd1\x3f\xe5\xeb\xa9\x80\xf8\x99\x6a\x67\x1d\x81\x64\x17\xc3\x4f\x1b\x31\x1b\x8e\x3d\xec\x12\x77\x95\xa5\xc9\x45\xf5\x6d\xab\xd6\x2e\xc7\x6e\x0a\x71\xbf\x82\x66\x85\xf4\x2e\x1a\x5a\xd0\xa3\x2a\xe8\xb7\x19\x24\xf2\x10\xf4\x5f\x56\x7a\xb9\xff\x87\xf2\x09\xbc\xdc\xe4\x82\x96\xa7\x61\xc8\x5d\x6f\x0c\x32\x52\x49\xbe\x9e\x28\x72\x91\x19\x8e\x4c\x62\xb3\x68\x8b\x2b\x87\x57\x80\xc2\xde\xc2\x64\x4e\x37\x1f\xbb\x65\xbc\xbc\x53\x31\xd1\x2f\xd1\x5f\x88\x30\x5b\xf5\xbd\x38\x1e\x19\xb0\xe7\xe4\x8d\x1c\xa8\xff\x8a\x82\x49\x7e\x5f\x0b\x74\xc4\x76\xa7\x52\x97\x78\x52\x61\x9f\x7e\x97\x7e\x35\x22\xc4\xcf\x11\x12\xcb\x21\x4a\x68\xd2\xa2\x29\x75\x97\xbe\x04\x07\xe5\x35\x8f\xf2\x1d\x98\x34\x9f\x51\xf0\x2c\x78\x53\x6f\x5e\x52\x47\xe9\x34\x90\xf2\xd0\xa1\xf6\x52\x9c\xae\xf2\xde\x86\xda\xc7\xbf\x55\x75\x90\x7f\xab\xe2\xc6\x38\x5a\x2a\x72\x0a\x12\x70\x68\x42\x72\x8b\xaf\x6b\x41\x42\x3e\x88\x76\xfb\xe6\x01\x43\x19\x50\xa2\xbe\x87\xdd\x0c\x6f\x1c\xdd\x1c\xc7\xcd\xa8\x1e\xc1\xd1\x2c\x75\x16\xa0\x70\xbe\xa2\x15\x80\xb0\xe6\xdd\x06\x7d\xe8\xc5\x36\x84\xae\x55\xfb\x8b\x8b\xe7\x22\x78\xe0\xb9\x7d\x3d\x1b\x92\x85\xd4\xa1\x43\x1c\x91\xfd\xb9\xb2\x90\xfa\xf3\x69\xbe\xc5\x5c\x7b\x10\x81\xd3\xb6\xe0\x35\xcc\x7c\x1f\x6c\x1a\x76\xfa\xd2\xe2\xfe\xb6\xc9\x97\xab\xc8\xe3\xc5\xfd\x3e\xf4\xad\x86\xc0\x85\x40\xd5\xe0\x60\xde\xde\x52\xfa\x18\xf9\x20\x5a\x2a\x76\x55\xa3\x8d\xad\x1b\x9c\x6e\x1c\x73\x2d\x25\xdd\x72\x67\xac\x7a\xe3\xc7\x03\xd5\xb1\x46\xa4\x85\xbc\xf9\x87\x34\x7b\xa5\xe1\xf0\xa0\x7c\xb8\x6b\x4d\xc8\x03\x57\x03\x2c\x8b\x72\xf2\x13\x35\x67\x89\x0c\xe4\x2c\x4c\x57\xd0\x3e\xf8\x5a\x49\x2e\x84\x03\x9b\x95\xdd\x5c\x67\x94\x27\x15\x3f\xeb\xe4\x78\x9f\x42\xb3\x64\x66\x98\x96\x49\xc1\xa5\x00\x31\xf2\x52\x92\xd0\xb7\x35\x81\x67\xa6\xe3\x17\x95\x11\x19\x48\xe1\x78\x78\xd0\x1c\x36\x06\x6c\x5b\x37\x1b\x6d\x32\xb3\xb4\x6b\xb3\x22\x4f\x13\xfe\x62\x8c\xd8\x29\x85\x50\xe1\x50\x8d\x8b\x41\xaa\x5e\x36\x32\x59\xf1\x30\xf5\xe6\xa4\x6c\x4b\xff\x10\x80\xab\xf3\xc0\x6b\x21\x37\x39\x43\x1b\xb0\x28\x94\xb7\x9c\x21\xf1\x15\x9c\x5a\x38\x64\xa0\xfb\x82\xb2\xc5\x5d\x55\xd7\xf9\x17\x58\x1c\xf8\xeb\x93\x5a\x74\xf7\xe4\xf8\x61\xfe\x45\xed\xaf\x7e\x79\x97\x57\x78\x03\x64\x88\x41\x64\x4a\xa7\x8b\x45\xf3\x44\x89\x9c\xa2\x56\xec\x17\x7f\xa8\x33\x57\xfc\x0c\x74\x98\xfe\xac\x49\x84\xdd\x24\x6b\xb0\x8c\xaa\xe6\x9b\xdb\x53\x17\xf7\x8b\x8f\x22\xad\x23\x41\x18\x37\xe8\xe4\x44\xc3\x51\x96\x8e\x58\x36\x06\x45\x3a\xcc\x6a\xd1\x41\xf7\x42\x6d\xeb\x1e\x1d\x19\xc5\xdd\xcc\xae\xa1\xba\x8e\x49\x7e\x5e\xa1\xc4\xce\x8f\x9f\x72\xf3\xae\x1b\xa5\x99\xcd\xad\xc9\xc2\x41\xcb\x67\x71\x60\xa0\xf2\xb5\x42\x17\x65\x69\xb7\x6b\x49\x4c\xd1\xf7\x46\x3f\xc4\x8b\xe1\x9b\x06\x87\x88\x85\xb6\x49\x92\xb4\x4c\x42\x26\xb1\x3b\x70\x98\x72\x99\x9a\xe6\x12\x2e\xb4\x7b\xd6\x8e\xb8\x2f\xc2\xdd\x40\xa5\xa1\xbf\xe9\x4a\xca\xfd\x74\xc5\x66\xe4\x9f\x3b\xdb\x9a\x9f\xdf\xdc\xc0\xc6\x89\x6a\xfc\xba\x12\x15\xdb\x36\x51\x6c\xfb\xeb\x8a\x7e\x9b\x26\x45\xba\x5b\x2f\xfb\x6a\x33\x71\x12\x17\x3e\x88\xa8\xab\x22\xd7\xf4\x92\x6b\x1b\xc8\x41\xd9\x4e\x37\xd0\x14\x11\x8d\xd4\x2d\xd9\xe4\xa1\x43\x2f\xb4\x5f\xdc\x3f\xdf\x52\x80\xe8\xf5\xb1\x46\xca\xea\x1c\x31\x4d\x93\xc7\x7c\x7a\x0b\x70\x0e\x1b\x21\x41\x4c\x46\xf0\x0b\xd5\x59\x8a\x0d\xe1\x26\xa6\xbf\x43\xad\x7a\x64\xf5\x07\xb4\xc9\x89\xa1\x89\xaf\x06\xfe\x7f\x63\x55\xdf\xf8\x08\x68\x14\x8c\xf6\x0d\x92\x1d\x14\x9c\x54\xf5\x6b\x9d\x34\xf0\x4b\x02\x0c\xda\x36\x05\x7f\xaa\xa6\xff\xd0\x66\x51\xe8\x51\x93\x88\x7f\xcf\x05\x0a\x76\x73\x5c\x93\xb4\x7e\x3c\x75\x96\x1c\x7e\xbe\x3d\x4a\x19\xa4\xd1\x64\x8d\xaf\x44\xe6\xad\xc9\x5c\xf9\x5e\xc4\x97\xbd\x16\xed\x05\x57\x47\xa5\x3a\xcb\xac\x3f\xcc\xee\x2b\xe0\x0f\x94\x55\x5d\xee\x56\x1d\x19\xa2\x49\xe7\xa9\x27\x79\x98\x95\x45\x94\xac\xed\xa8\x3e\x43\xc4\xdf\xf1\x03\xc5\x2c\x92\xd6\x3b\x6b\xf6\x29\x99\x27\x3e\xa3\x31\x6f\x2e\xa9\x13\x76\x60\xb3\xae\xc0\x89\xb4\x9c\x1e\x5f\xbb\x92\x28\xf9\xbc\x24\x24\xdd\x47\xdf\x8e\x4f\x6a\x51\x4d\x40\x8a\x8f\xd5\x2f\x40\x6d\x1b\xa2\x6b\x62\x0d\xa9\x48\x35\xd3\x56\x7b\xf3\xf3\xed\x30\xca\xc2\x32\x36\xd9\x5f\x13\xa1\x7a\x8c\x1d\xa9\xdf\xef\xf1\x36\x07\x3b\xa9\xd4\x8e\x0e\x08\xbf\x5f\x24\x07\x68\x7c\xd6\xfa\x10\xae\x52\x5f\x0d\x92\xe2\xad\x39\x01\x3b\x7a\x6d\xc8\xd1\x1e\xee\x78\xa1\xdf\x13\xdc\x01\x96\x27\x53\x22\x4e\xe0\xaa\x23\xb3\xff\x27\x8a\xea\x75\x35\x50\xc2\xd0\x57\xb1\x8f\x3b\x0d\xa0\x97\x16\x36\x8f\xab\xd4\xba\x0a\xdc\x2c\x64\x82\x44\x2f\xcf\xef\xba\xe7\x03\x75\xa4\xde\x1e\xeb\x46\xd2\x05\x55\xa4\xcc\xd2\xb2\xb0\xc8\x8d\xb8\x58\x1d\xf8\xd8\x9b\x73\x4c\xe9\x41\x6c\x35\xa8\x91\xf0\xc2\xd1\x85\x67\x94\xb8\x05\x3b\x0f\xa1\x90\x00\xfd\x21\x84\xe2\x57\x6a\x1b\xc5\xa0\xc8\xf7\xb6\x94\xa9\x1c\x8d\xb7\xa8\x84\xab\x8e\xd3\x5b\x63\x05\xb3\xd8\xa8\x49\xf9\xcf\xa2\x81\x8e\xc8\xf1\x26\xed\x28\x38\xa7\x7f\x34\x56\xa7\xdd\x15\x1c\xda\xd8\xdc\x90\x35\x81\x99\xb3\x41\xa6\xe7\xa8\x00\x1e\xc7\xd9\x80\x11\x9c\x9d\x28\xbb\x82\x9f\x21\x8f\xe7\x87\x09\xbc\xfe\xe0\xc5\x80\x28\x06\x02\x85\x6d\x39\x11\x9b\xdb\x8a\x92\xf6\xcd\xd2\x64\x24\x46\xb8\x53\xe3\x47\x8f\x8c\x15\x41\xed\x6d\x1a\x77\x3c\xc6\x15\xec\x65\x1a\xcf\x80\xb3\x7c\x66\xa2\xe8\x18\x33\x1d\xef\x28\x9e\x2c\x95\x39\x72\x71\xb1\x82\x6d\x39\x0f\x86\xd3\x5a\x22\xa9\xec\xf7\x6d\x5e\x90\xcc\x8d\xe8\x27\xfa\x80\x02\x88\x36\x67\x52\x70\x70\xde\x75\xcb\x25\x7b\x2a\x73\x3e\xda\xa5\xa0\x51\xfd\x31\xa0\x1d\xff\x78\xec\x0b\x40\x97\x5c\xeb\x81\x3c\x5a\xd3\x6c\x6d\xd6\xff\xc7\x47\x70\xb0\x39\x68\x8a\xd7\x2e\xc6\x56\x8d\xb9\xf7\x48\x47\x55\xd2\x07\x51\xaf\x3a\xc3\x9d\xe4\xfe\x05\x25\x3a\x70\x41\x6d\x74\x9c\xed\xa2\xc0\xcc\xe0\x2b\x2c\x28\x87\xc4\x9a\x7f\x80\x23\x77\x03\xcd\x71\xa5\xca\xfe\x1d\x28\xc1\xf5\x04\x7c\x7f\x60\xac\x7d\xea\x07\x4b\x69\xf9\xaa\x32\x85\xfb\x7a\xe0\xe1\x43\x5f\x6f\x80\x64\x2e\xb6\x33\x5b\x94\x59\x82\x20\xc3\x75\x19\x5c\x02\x7a\xb2\xb6\x4e\x96\x6d\xef\x31\xfa\x87\x18\xa9\x77\x94\x52\xd9\xb6\x8e\x87\x9a\x33\xbf\x8e\x2d\x4b\xb0\x05\x38\x41\x34\x87\x87\x7b\x07\x6b\x01\x9b\xcc\xed\x71\x8d\x01\xa6\xf4\xa1\x38\x75\xc3\xe3\x9c\x55\xea\x59\xc0\x27\x03\x99\xf1\x28\x29\x37\x8b\xf0\x91\xf4\x61\xe2\x34\x64\x7c\xa6\x3e\x66\x8e\x8f\x95\xa4\xfb\xf1\x26\x04\x7b\x9a\x45\xfd\x28\x61\x0e\x26\x92\x67\x84\x8f\x7c\x3d\xd9\xa7\x2b\x72\xcb\x36\x79\x35\x42\x9a\x87\x22\xd0\x06\x7e\x31\xdf\x34\x24\x05\x6d\x93\xe7\x69\x56\x38\xa5\x53\xf1\x7f\x6a\x39\xa3\xec\x69\x53\xd3\x2a\xf0\x11\x60\x35\xaa\x8a\xf8\x97\xe8\x1d\xf2\x75\x2d\x4f\xfe\x46\x9a\x3d\x4c\xdb\x85\xd4\x11\x5b\xce\x86\xef\x9f\x05\x4a\x1e\xfa\x16\xef\x63\x58\x65\xdf\xd1\x34\x10\x74\xa9\x99\xb8\x86\x53\x08\xef\x61\x73\xac\xca\x86\x57\x11\xb1\x21\x1e\xdf\xc4\x76\x87\x57\x71\x5f\xc9\x3e\xf4\x4c\xb6\x8c\x0a\x82\x93\x06\xac\x3e\xc2\x29\x12\x3a\x0a\xf5\xed\x46\xd3\x03\x33\x8a\x6d\x52\xac\xa1\xcc\x22\x1c\x78\x0f\x08\x47\x2f\x19\x6b\xf1\x8d\x5a\xa3\xc0\x24\xc9\x83\x8d\xe0\x1a\xd8\x83\x4b\x69\x99\xf0\x08\x3b\x3c\x8f\xc7\xf6\x34\xf2\xc1\xfb\x69\x01\x03\x31\xb1\xe5\xc0\x80\x8a\x61\x47\x93\xd2\x2d\x84\x3c\x79\x8a\x09\x68\x50\xd1\x44\xce\x05\x9f\x9f\x26\x8c\x7e\xa1\x9d\x97\x23\x9b\x85\xe9\x70\x54\x92\xf0\x46\xf5\x76\x71\x92\x7f\xa2\xce\xb6\x6b\x2a\x0f\x99\x6e\x9f\x1f\x9c\x6f\x0f\xa3\xde\xaa\xcd\x0b\x9b\x25\x8a\xe6\xb2\xad\xe3\xbb\xe7\x2c\xa1\x82\x70\xfe\xe8\x58\x37\x2c\x5e\x6d\x69\xb8\x6b\xe0\x31\xb1\xda\xcb\x66\x34\x88\xe2\x68\x34\x62\x81\x7a\x69\x51\xb6\xbe\xf4\x92\x6b\x50\xfa\xc2\x4f\x61\x46\x52\xdd\x13\x71\x2e\xff\xf8\xda\x98\x29\x31\xa3\xe5\x48\xcc\x32\x44\x13\x5b\xe1\x54\x4e\x4f\x65\x92\x2f\xee\xaf\x06\x6c\x94\x66\x94\xe4\x78\x98\xbc\xd3\x72\x47\x37\x83\x11\x0d\x38\x75\xbd\x31\x8f\x2a\x90\xe6\x51\xcf\x66\xbb\xa9\x7b\x20\x03\xe4\x61\x2c\xef\x6a\x54\xe6\x29\xad\x1c\x2c\xc8\x19\xc4\x34\x67\x14\xcf\x06\xaf\x0b\xe9\xc0\x0c\x6a\x71\xfc\xc1\x53\xc6\x31\x12\xdf\xe4\x26\x4e\x87\x69\x32\xe3\x4b\xff\x17\x95\xdc\xdd\x79\x8d\x83\xbc\xa7\x5a\x4c\xe9\xc8\x3e\xd2\x3a\x30\xe7\x0e\x0b\xfa\x91\x58\x9d\x4f\xd2\x96\xed\x98\x27\xd5\xc2\xc2\x01\xb5\x31\xf6\x7a\x6f\xbb\x68\x5a\x20\x99\x9b\x9d\xf8\xb4\x67\x6f\x47\x95\x96\xd0\xb8\x12\x65\x67\xe5\xc5\xc1\x7c\x29\xf0\xdb\xae\x36\xf5\x45\x4d\x56\x44\x79\xa1\x34\xc7\x3e\xae\xa9\x38\x3f\xa1\xcc\x70\x96\xd2\xcc\xee\x25\x05\xf9\xf7\x28\x2c\x40\x61\xe0\x32\x7e\x12\xfa\xd6\xcc\xa3\x60\xc2\x50\xa0\x84\x80\xe4\x5d\xa0\xa7\xb5\xad\xa3\x42\xea\x0f\x00\x8b\x71\xae\x20\xde\x88\x77\x03\xc1\x36\x23\xf4\x29\xc5\x15\xd1\xc4\x6a\x84\xa4\xec\x43\x3b\x26\x93\x9f\x15\x2e\xe6\xe1\x89\xdf\xdc\x1f\x57\xc3\x78\x5e\x93\xad\xaf\xba\xfa\x43\x5e\x58\x13\x17\x28\x28\x60\xeb\x60\xdb\x03\xbe\x09\x3c\xf0\xaa\x17\xe5\x69\xd7\xf6\x28\xa1\xd9\xe5\xd1\xca\x3b\x3b\xbe\x81\xbb\x73\xa2\x00\x7a\xa7\x03\xa5\x57\x0e\x18\x0a\xb2\xac\x5b\x94\x13\x63\x01\xc0\x6d\x45\xe8\xe7\x0d\x10\xa9\x7c\x39\xea\xf5\xb6\x40\xa4\xc6\x1a\x22\xd5\x24\x2a\x94\x57\x87\x9c\x22\xeb\x9d\xa0\x2d\x43\x1a\xe5\x4d\xad\x8b\xbe\x61\x0d\x3a\x0e\x01\x03\x55\xa0\x5d\x1f\x6b\xe7\x6d\x6b\xfc\x19\x8a\x57\xf9\x03\xa5\x7b\xf3\x83\xa9\x46\xc4\x81\x03\xb4\x98\xd3\x38\xea\x19\x86\xe6\xb3\x08\x8c\xa2\x18\xfc\xb8\x09\x74\x95\xc6\x6b\xc3\x51\x14\xe6\x35\xab\x9e\xe3\x58\xf8\x1e\x73\xc1\xc1\x66\x1c\xe5\x26\xeb\x99\x96\x06\xa4\xd4\x40\x2c\x7e\x4f\xcb\x4c\xb5\xb3\xb4\x68\xfe\x21\x12\xbe\x83\xc6\x22\xdf\x4c\x7b\x85\x1c\xa8\x82\x59\x9b\x71\x9c\x2d\x2a\x88\x2d\x67\x36\xf6\x69\xe0\xe5\x3c\x9f\xe7\xe3\x52\xb4\x31\xf0\xf0\xb5\x0d\x03\x99\xc8\xad\x5a\xe0\x50\xa4\x2b\xa8\xd8\x8b\xba\x8c\x22\xc3\xbe\xab\x1e\x7e\x29\x8d\xf3\x14\xc8\x57\x57\x2e\x73\xbd\x83\xf3\x6e\x5e\x0f\xd2\xb8\x67\x25\x3d\x16\x71\x18\x55\xc8\x3c\xad\x34\x9f\xaa\xa3\x2d\x36\xe4\x8f\xaf\xd2\x7f\xa2\x61\x49\x29\xc0\x9f\x1c\x3d\x1b\x17\x66\xb6\x75\xe0\x80\xae\x35\x89\x44\xca\x5b\x5a\x71\x8f\x4f\x7d\x34\x75\xef\x05\x0f\xbb\x39\x14\x3c\x44\xf3\x17\x9b\xc7\xf1\x40\x21\x70\x6f\xea\x8e\xc1\x65\x5a\x26\xe2\x14\xa4\xb6\xfb\x8b\xba\xab\x76\x8a\x07\x98\xf9\xcf\x0a\x36\x75\x56\xf1\x45\xee\x35\xcd\xaf\x30\x1d\x76\x23\xc7\x77\x63\xd9\xf4\x3a\xcd\xba\x7a\x4e\xec\x2b\x1f\x4e\x45\x14\xcf\x38\xc0\xae\x34\x92\x71\xbe\x7d\x88\x41\xe0\x1b\xa5\x06\xb4\x3a\xb0\xc5\xc0\x66\x4f\xd0\xd7\x39\xbe\xe3\x41\xe5\xbb\x39\x77\x98\x77\xae\xcb\x84\xfa\xc3\x3c\xf9\x93\xa0\x55\x77\x28\x7e\xd9\x3f\xab\x13\xe4\xc0\x73\x4b\x5f\x41\xe1\xe8\xcf\x60\xe4\xf0\x75\x1f\x8d\x6b\x22\xbf\x48\xac\x51\x44\x7b\x0d\x3b\x3a\xff\x51\x4d\x0d\x59\x21\x3a\x76\x4c\x51\x93\xe6\x0e\x57\x91\x0d\x1f\x26\xa2\x39\x41\x7f\xc1\x37\xea\x34\xf9\x86\xc9\xfa\xdc\x8c\xc0\x4f\x03\xea\x87\xaf\xb5\x24\x2b\xba\x9d\x8f\x78\x1c\x3a\xef\xf7\x68\x5b\xfc\xbb\xc0\x93\x06\xbe\xab\x60\x8b\x4f\x76\x14\x8e\x93\xd7\x1a\x37\x3a\xc7\x9e\xa3\xf6\xae\x1e\x1e\x06\x4a\x31\x01\x9b\xde\x06\x6a\x03\xb7\xe8\x0d\x60\x26\xff\xa9\x02\x04\xe6\x23\xaa\x76\x54\x7b\x07\xbb\x91\x80\xa8\x50\x43\xd7\x0a\x7b\xf1\x31\xb5\xc0\xcd\x6a\xab\xf5\xd5\x2f\x0b\xf7\x25\xf0\xc3\xb5\xa9\x90\x68\x5d\x13\x2e\x47\x49\x9f\x15\x85\x51\x38\xe7\x1d\x8f\x6f\x94\x1e\xd0\x7a\xcd\xb7\xd4\x57\x89\xcd\x3f\xfc\xbb\x68\x29\x8b\x52\xd2\x5f\x0b\x17\x78\x71\xff\x73\xed\xae\x35\x88\xd6\x50\x1a\x47\x54\x2a\xd4\xa6\x6a\xe4\xd0\xd9\x7a\x97\x0e\x2b\xd1\xa2\x7e\x28\x6a\x8f\x32\xbb\xf4\x2b\xed\x57\x66\xc8\x28\x04\x31\xf4\x77\x6a\x8e\x1e\xad\x5f\x7b\xc1\x95\xdb\x1b\x20\x4a\x2f\x2d\xee\x27\x97\x3d\x77\xd6\xcf\x1d\xd6\x02\x33\x0b\xce\x9e\x8f\x8a\x61\x62\xdc\xb7\xf5\xc0\xfb\xca\x5c\xbb\x18\x98\x82\x54\x94\x99\x5c\x85\x2a\x0a\xc2\xca\xab\xaa\x08\x7b\x87\x7e\x0d\x80\xf1\x3f\x52\x4e\x7b\x3f\x6a\xb6\x51\x8e\xed\x8a\x61\x8b\x3c\xcc\x1d\xa0\x58\xf9\x3a\xd8\xab\x8a\x30\x51\x36\x24\x51\xd0\x43\x87\xf8\xed\x03\xa1\x80\xe4\xf5\x3f\x60\xf6\xb2\xe1\x80\x2f\xde\x94\x59\xe6\x6a\x67\xbc\x8e\xe9\x0b\xd0\x58\xdd\xae\x7a\x82\xb7\x55\x3e\xf0\x5f\xff\xbd\x5f\x26\x3d\x39\x49\x07\x6a\x54\x38\x5f\x97\x30\x2b\x69\xd4\xb3\xbd\x19\xe5\x2d\x18\xa8\x9e\xf3\x59\x45\x2b\xf9\xa1\x9e\xe0\x45\x94\xa1\x27\x5c\xa3\x83\xf3\x8d\x82\x5f\x7d\xb3\x34\xcb\x96\x2a\x33\x58\xa2\x17\xa8\xfe\xc6\xd7\x8d\xf8\x88\xd4\x38\xeb\x07\x24\x8d\x0c\x79\xe7\x9b\x89\x32\x90\x1c\x58\xe8\xb1\x54\x91\xa0\x98\xf0\xb7\x9c\x25\xca\x85\xc0\x33\xfe\xe8\xe8\x9a\xf1\x9a\x92\x9b\x14\x0c\x6a\x5b\x63\xfc\xde\x75\x05\xb9\xcd\x6c\xbf\x84\x0a\x00\xcd\x7a\xa1\x4d\x78\x36\xcf\xa7\x48\xc8\x05\x2e\xe7\x97\xc3\x39\x45\x7b\x7e\x35\x1a\xed\xa8\x69\x37\x2f\x8a\xca\x0f\x5a\x15\x2c\x55\xad\x76\xe6\x4f\x69\xca\x09\xf6\xc2\x6f\x8c\x45\xd4\xeb\xb2\x44\x88\xcb\xf1\x0e\xfa\x1c\xaf\x01\x80\x49\x4e\x11\xb1\x2d\x11\x09\x60\x77\xc7\x37\xf1\xb5\x02\xa4\x53\x53\x42\x8b\x3f\x28\xdd\xb9\x53\xda\xd0\xe3\xd9\xe8\xd9\x96\x87\xfe\xdc\x56\xa2\x76\xb7\xa7\xb2\x88\xa7\x9f\x6e\xf7\xb3\x74\x35\xce\x67\xfc\xea\x38\xb6\xc5\x0a\xac\xda\x8c\x71\xba\xdc\x56\xda\xcf\xa3\x2c\x1d\xa5\x39\x63\x92\x05\xcd\xf8\x53\x6d\x7b\xf4\xd3\xa6\xa4\xb2\x9b\x45\xf9\x72\xbc\x46\xd3\x19\xd1\x14\x4e\x0f\x94\xee\x3f\xa2\x91\x95\xfe\x95\xb4\x4f\x46\xb1\x59\x13\x6a\xa2\xc3\x2a\xba\xfa\xd5\x19\x3c\xae\x98\x4a\xf9\xee\xdd\x8f\xf4\xa3\x73\x8d\x19\xf3\x82\xb3\x1b\x11\x07\x7e\x44\x29\x9d\xd0\xc8\xa1\x92\xcf\x72\x6c\x7c\x33\x69\x52\x1f\x0d\x07\xd6\xb2\xf9\x0b\xea\x07\x27\x95\x5f\xd8\x49\xd5\x2a\x4a\x29\xee\xb4\x2d\xda\xd0\x44\x1e\x5f\x53\xd0\xa6\x4d\x93\x16\xc8\x1b\x2f\xb3\x79\xbe\x54\xa2\xd6\xc1\x35\x56\x3c\xbc\x14\x5c\xf7\xaa\x98\x6e\x98\xc6\x51\x3e\x68\xd5\xe4\x71\xab\x97\x23\x14\x22\x29\x02\x2f\x47\x3d\xbc\x70\x55\x3d\x11\xfc\xe1\x2c\x6d\x57\xac\xef\x55\x57\x34\xcb\xf3\xcf\x54\x11\x23\x5e\xdb\xeb\x38\xcf\x98\xed\x8f\xe2\xba\xa3\xa5\x2f\xee\xe7\x2d\xe9\x46\xe0\xd3\xe1\x93\x35\x42\xd3\x2d\xaa\x69\x20\xa5\x3c\x89\x46\x81\x73\x69\xfd\xe2\xd7\x78\xb5\x7f\x5b\x35\x56\xee\xa9\xc0\xea\x27\xe3\xd6\x57\xe6\x34\x3e\x45\x94\x8c\xdf\x40\x7e\x88\x83\xee\x1e\xed\xc2\x00\x0a\x7c\xa0\xb1\x33\x28\xc7\x61\xbf\x60\xbb\x54\x14\xf7\x18\xce\xc3\x5c\x79\x1c\x3f\x38\x07\xae\x06\x4a\x67\xe4\x94\x0b\xd0\xa3\x24\xa1\x02\xb3\xdf\x84\x77\x74\x14\x36\x69\xc7\xd4\xac\x01\x93\x3f\x0d\x4b\x74\xb4\x11\x09\xfd\x50\x99\x15\xff\x70\xec\x65\x2c\x43\x3b\x2a\x1e\xad\x46\x80\x02\xa3\xdf\xfa\x2f\x11\x18\x39\xb1\x6b\xed\x7b\x41\x4f\x87\x12\xc4\x95\xba\x0b\xc8\xe2\x16\x6b\x1f\xa7\xa5\x75\xe0\x80\x07\x24\x55\xc3\xcf\x52\x73\x18\x02\xc4\x23\x77\xc7\x5b\x15\xc7\x11\x46\xeb\x4d\x3e\x34\x09\xd9\xd5\x56\xff\x55\xdc\xb1\xe9\x8b\x44\x7a\xd3\x9f\x35\xcb\xb1\xcd\x96\x67\x94\xb6\x1b\xd0\x08\x6e\x97\xff\xd2\x4b\x4e\xae\x72\x9f\x2a\xcc\x67\xcb\xb6\x88\x92\x3e\x61\x6e\xf0\x6a\xae\x2b\xf5\x2f\x9c\xaf\xa8\xa0\xbe\xa7\x7b\xf1\x6f\x2a\xd8\xc3\x3a\x9d\x6a\x98\xac\xbf\x8e\x57\xc9\xad\xbb\xa9\xc4\x7b\x71\x7f\x5b\xaa\xfa\x2f\x3b\x9f\xb5\x6a\x18\xc4\x7f\xad\x21\x76\xa6\x74\x8a\x0a\x82\xc8\x39\x58\x25\x1e\xcb\x4b\x94\x1c\x59\x58\x5a\xd7\xef\x32\x9b\xf4\x76\x7b\x3c\xe2\x71\x9c\x57\x88\x36\xae\x07\x0a\xfa\xb5\x4e\x05\x14\xfe\x57\x63\x5f\xe6\x60\x08\x97\x6c\x06\x34\x95\xd1\x34\x3a\x5f\x63\xf4\x4c\x6f\x5e\xcf\xb5\xe3\xa8\x28\x58\x0e\x1f\xc1\xdd\x86\x92\xfc\xd8\x68\xc2\x06\xf6\xb3\xb2\xd7\x77\x22\x0a\x4e\x29\xcd\xe9\xf1\x6e\x2a\x1e\xf7\xc5\x9a\x13\x51\xb2\x62\x33\xf8\xf3\x60\xc2\xb6\x00\xf6\xc4\xc9\xbc\xa1\xdc\x32\x4e\x7a\x2d\xb7\x41\x9a\x15\x35\x25\x9c\x53\x4a\x63\xf2\xd4\xf8\x11\x25\x62\xaa\xd2\x96\xe3\x4a\x36\xef\xb8\x72\xbf\x27\x35\xbc\xa1\x68\x81\x2a\x5e\xc9\x9c\x63\xdb\xf8\x33\xb4\x1b\xf5\xf2\x1d\x1e\x0c\x7b\x59\xf1\x88\x8f\x28\x1a\xf0\x65\xda\x92\x50\xa2\xbc\x89\xdd\x42\x50\x98\xba\x8c\x1e\x75\xbb\xa8\xe6\x22\xac\x60\x2a\x27\xdf\xd4\xb6\x58\x93\xa4\x33\x9e\xac\xc9\xbd\x20\xc4\x62\xb7\x55\xb6\xd4\x0c\x5f\xc9\x0b\xb3\xc6\x3a\xa0\xea\xec\xf6\x66\x70\x0f\x02\x97\xa5\x23\x87\xca\x43\x78\xcd\xfe\x9a\x7c\x33\x55\x68\xfa\x6f\xda\x4b\x65\x5c\x70\x39\x55\xef\x0d\x88\x88\xde\xd1\xd5\x91\x6b\x55\xbe\x20\x75\x37\x33\x22\xe5\x62\x6a\x34\x7b\xbc\xfc\x1d\xe5\x52\xc6\x75\x7c\xec\x57\xd3\xaa\xeb\x87\x0e\xb5\xc3\x74\xb4\x46\x94\xdc\x19\x25\x84\x82\x16\x88\xc8\x60\xb5\x9c\x6a\xeb\xba\x96\x4b\x4a\xe3\x5e\xe4\xf4\x10\x59\x7b\x51\x01\x4c\xef\x06\x4f\x4d\x59\x73\xbe\xb8\x7f\x81\x92\x57\xd9\xd6\xfc\x83\xb2\x5f\x15\x0e\x9d\x7b\xd8\x3f\xc5\x62\x55\x19\xc5\x7f\x80\x37\x28\x5c\x25\x5a\x36\xc8\x0a\xd0\xa5\x47\xb1\xf5\x0e\xa6\x21\xce\xd5\xc1\xd8\x13\x19\x7e\xa2\xe3\x94\xf5\xe0\x41\xed\xfb\x34\xeb\x9b\x24\x7a\xd5\xf6\x66\x6b\x68\xca\x99\x97\x16\xf7\xd7\x55\x4a\x70\xe2\xdd\xa7\x4d\x57\xba\xf2\x1e\x60\x11\x3b\x83\x11\x20\xd8\xc0\xcd\xe4\xeb\xa6\xfa\x33\xb1\xd2\xb8\x68\xc2\x6d\x25\x4c\x6d\xe9\x31\x35\xa8\xd4\xdb\x7e\x1f\x7d\x60\x67\xe4\x5c\xfd\x01\xdf\xd4\xb8\xc1\x99\x38\xe8\xa2\xfd\x79\x5e\xf9\x41\x4d\x4b\x82\xbe\x34\x77\x98\x9c\xb1\x34\xe0\xeb\x9c\x02\x7c\x9d\x1b\xff\x67\x0f\x18\xbc\x51\x5a\xf6\x07\xcb\xd6\x8e\x72\x6e\x44\x72\xeb\x75\xac\xa0\x10\xe7\x9b\x6a\x89\x43\x9b\xe7\x59\xfe\x2c\x67\x42\x98\xfb\x1c\x9b\xf1\x8d\x82\x50\xf6\x4c\xd2\xb7\x59\x5a\xe6\xb3\x4a\xf1\xfd\xff\xc6\x8f\x17\x80\x97\x4f\x72\xbe\x1d\xf8\xa5\xf5\xb6\x12\xe2\x1b\xa6\x45\x9a\xe5\x3b\x69\x1a\x39\xd9\x68\xd7\x65\x7c\x03\xd3\x88\xff\x03\xe6\x24\x3b\x54\xa2\x16\x2f\x76\x95\x5e\x99\xe9\x0d\xa5\xd4\x42\xf2\x38\xf4\x7c\x2f\x73\x99\xea\x84\x46\x78\xa2\xf8\xcc\xd7\x18\x1c\xfe\x57\x81\x07\xf7\x85\x99\xed\x45\xc5\xaa\x29\xc2\x41\x4b\x2d\x10\x76\x3f\x16\xb3\x89\x86\xa9\xd4\x2b\xc9\x1b\xc1\xf7\xf3\x2f\x8e\x6b\xe6\x07\x0d\xee\x8b\x99\x5d\x8a\x12\x93\x84\x8e\x16\x89\xd9\x0d\xb3\x26\xbe\x56\x6e\x21\x7d\x9b\x44\xdc\x33\x6c\xcc\xb8\xb7\xf6\xfa\x48\x47\x65\x38\x8a\x6d\x61\x19\x13\x88\x74\xe3\x8e\xb2\xff\xbf\xe3\x0e\xab\x25\x4b\x75\x5a\xcc\x05\x9c\xa0\x0c\x33\xe3\x9b\xc0\xaf\xb3\xd5\x2c\x2a\x38\x13\x60\x11\xbe\xc0\xc5\x78\x5f\xbf\xd9\xb4\xd0\x96\x6c\x1c\xa7\xab\x2d\xcf\x50\x81\x1a\x09\x5f\xbb\x60\xf4\x9b\x65\x5a\x64\x69\x32\xab\x50\xa8\xe8\xf3\x6a\x70\x2b\x0a\xc7\xff\xbe\x26\xb2\x39\x55\x0e\x3c\x74\x88\x74\xc4\x46\xad\x9a\xea\xb4\x6f\x58\x9e\x6b\x48\xed\xe6\x59\x12\x00\x2f\x5e\x90\xc9\x2d\xa7\xc8\xf3\xb1\xea\x3f\x98\x10\xe6\x84\xbd\x5d\x34\x31\x9d\xd8\xd0\xa2\x48\xd2\xed\x26\x0a\x17\xf6\x5a\x38\x79\x60\x95\x00\x3a\x2d\x3d\x2a\x4f\xa6\x39\x0e\x12\xb6\x78\x59\x3d\xa5\xf0\x32\xa3\xea\xd8\xaf\x42\xc8\x96\x32\x0f\xe4\xe9\x25\x76\x64\x5b\xb3\xaf\x03\x07\xda\x65\x92\xaf\x9a\x7e\xdf\x7a\x65\x5b\x86\xf9\x28\xd0\xc0\xdb\x0d\xc3\xf0\x72\x3b\x1f\xa5\x45\xb1\x36\xe3\x01\xc3\x88\x50\x9d\x95\xd2\xe2\x7e\x4e\xc7\xaf\x4e\x4d\x3a\x52\x09\x33\x49\x2f\x2f\xa2\x18\x73\x15\xb1\xf1\x9b\xf4\x53\xf9\xba\xd6\xd8\x4b\xa2\x7e\xd2\xf2\xdc\x68\x24\x95\xd2\x88\x6a\x52\xa7\x88\x96\x96\x2c\x95\xab\x5a\x4e\xda\xef\x96\x1a\xc8\x0f\x31\x31\x98\x69\xad\xa5\x96\x0e\x3f\x3f\xa3\xbb\x32\x1e\x81\x7a\x56\xab\x51\xdd\x53\x38\xd7\x5e\x56\xf6\x77\xb5\x9c\xff\xc3\x23\x80\x63\xa1\x1e\x3d\x0b\x09\x1e\x61\xfb\x78\x12\xd9\x8e\x8e\x52\x01\x60\x00\x8c\x14\x39\xb4\x95\x96\x2a\xbb\x0c\xa2\x64\x39\x9f\xf5\x29\xd4\x59\x0d\x8e\x3f\x4b\x1d\x10\xc4\x03\xb7\x00\xc7\xe3\x1b\x55\xcc\x30\x59\x1c\x25\xfd\x22\xad\x35\xcf\x34\xbb\x61\x5d\x35\x00\xba\x65\x96\x0c\x58\xb6\x04\x69\xde\x51\xda\x52\xf9\x3a\xf8\x9b\xd3\x75\x9e\xdc\x0e\xa3\x30\x4d\x7a\x65\x58\xa4\x24\x7f\xb0\x79\x5a\xe9\x09\x7d\x80\xec\x19\x08\xf9\xb7\xc7\xba\x7e\x66\xaa\xb7\xa5\x12\x8b\x0f\xf5\xb1\x74\x45\x59\x1c\x9d\x6c\x92\x91\x59\x2a\xe3\xa5\x28\x8e\x67\x74\xba\x3b\xf6\x9a\x2c\x0c\x55\x14\x79\xaf\xad\xcf\x2d\x27\x64\x68\x12\xd3\x8b\x0c\xe2\x3d\x3c\x06\xf8\x57\x28\x12\xb0\x5e\x2f\xc2\xf2\x47\x3b\xfe\x30\xc8\x6d\x92\x53\x75\xce\x68\x5a\xda\xbb\x8a\x96\xf6\xee\x54\x84\x50\x9d\xe3\xc9\x5a\x89\xa5\x2a\x35\x71\xad\xe4\xd5\xa4\xe8\x97\x0f\xd2\xd5\x5e\xba\x8a\x07\xc4\x34\x3e\xaf\x11\x32\xe0\xb5\x89\xe0\x84\xd3\x95\x48\xfb\x51\xd8\x52\x8c\xc5\xfa\xc9\xd1\x24\xde\xb6\x64\xe3\x02\x11\x86\xa4\xac\x34\xb2\x7c\xe3\x3e\xd9\x24\x79\x98\xb6\x7c\xab\x82\x3b\x5d\x7c\xa3\x4e\x82\x51\x6c\x92\xfc\x71\xfa\x0c\xec\x44\x3f\xd6\x5a\x12\x1c\x63\xe2\x5d\xc1\x45\x55\xd0\xeb\x2d\x17\xd9\xfd\x00\x1b\x99\xd0\x06\xaa\xa4\x5e\xf8\x07\x2d\x27\x68\xc7\x90\x6d\xe8\xa4\xdc\x42\x30\xc0\xdf\x81\x98\x14\xf9\xe3\x9f\xd0\xdc\xc0\x40\xdf\x52\xf0\xfd\x23\x98\x27\xe8\xeb\x5f\x0a\x9c\xec\x8f\x09\x97\x47\xb6\x67\xbc\xf8\x1f\x8a\x59\xbf\x13\xf8\x82\xf7\xef\xd4\x12\xa1\x41\xba\xba\xd7\xb7\x5b\xef\x01\xaa\xe6\x5a\xd5\xd5\x23\x42\xc3\xe4\x2e\xf2\x60\xc9\x08\xb5\xf6\xc7\xc4\x83\x73\xff\x30\xf0\xc5\x21\xae\xe8\x71\x36\x12\x78\x4e\xe3\xa3\x48\x34\x51\x9b\xde\x01\xe1\x2e\x14\x3a\x7e\x42\xa3\x88\x36\x48\x6b\x52\x8d\xae\xc4\x44\xbe\xea\x7b\x02\x2f\x18\x67\xd2\x4d\xaa\x58\x89\x34\x14\x35\xdd\xb0\x19\xcd\x76\xa6\x7d\x32\xac\xe9\xdb\x0c\xc1\x14\x9e\x10\x79\xb2\xd3\xde\xf6\xe5\xb2\x63\x0a\x32\x78\xb4\x49\x37\xb2\x97\x91\xc3\x9e\x43\x2d\x5e\x57\x6e\x5d\xd7\x5d\xeb\x7c\x29\x8a\xa3\x51\x94\xa4\xbb\x54\x1b\x62\x67\x47\xb9\xff\xa8\xf9\x70\x49\xc1\x44\xaf\x20\x50\x74\xff\xe8\xc0\x1c\x43\x1e\x17\xc6\x5e\x76\xf4\x5c\x43\x28\xff\x42\x3b\x33\xab\x2d\x25\x88\x80\xa2\x0c\x5f\x37\x79\x47\x99\x12\xb0\x0b\x4e\x19\xf0\xf3\x7f\x3c\x56\x89\xdc\x8f\x75\xc0\x96\x59\x93\xb3\xbb\x2b\x3b\xfe\xea\xf2\xc8\xef\x8e\x7d\x74\xff\xae\x2a\xe7\x2f\x59\x74\x33\x30\x5b\xaf\xd1\x1c\xe1\x6b\xd5\x1e\x59\x8a\x53\x83\x4a\x3d\xb6\x85\x6d\x0a\x85\xb3\xad\xe3\xeb\xb6\xab\x69\x96\x45\xb6\xc7\x9d\x3c\x94\x8c\xae\xe8\xf6\xf8\x9d\xc0\xe3\x46\x3e\xc6\x24\xc4\x76\x70\xa9\xd1\xa8\x3c\xcd\xb2\x74\x55\x70\x20\x2c\x59\x87\x6a\x99\xd7\xaf\xe3\x9f\x6f\xf2\x11\xe5\xf2\xe8\x95\x9c\xc1\xbf\xe2\x9b\xa6\x20\x31\x34\x49\x2f\xea\xb5\x3c\x7e\x19\xf1\x91\xe0\x9a\xfd\x79\x59\xfd\x0f\x33\xbf\x99\x94\x45\x13\x4a\x08\x5a\x2a\x76\x5a\x4b\xc2\x41\x96\x26\x69\x99\x2b\xdd\xf3\x1f\xd0\xc7\xf2\xb5\x1a\xd2\x91\x89\x87\x9c\xb1\x39\x3c\x97\x37\xb6\x3b\xa5\x70\x55\x43\xd3\xdb\xe1\xcf\x92\x47\x3a\xbe\xb8\x76\x0c\xdb\xb6\xb8\xe4\xfb\x5a\xfe\x11\xcc\x52\xf9\x57\x1e\xce\x63\x5f\x19\xd9\xa4\x17\x91\x2a\x45\x4b\x83\xca\xb9\xa8\xcd\x37\x0d\x2c\xa1\x76\x6e\xe2\x62\x15\x5a\xfd\xde\x5e\xe8\x4d\x45\x50\x7b\xb3\x89\x95\x99\x99\x28\xb7\x33\xbe\x2c\xfa\x87\x28\xba\x09\x72\xa3\xe5\x68\xee\x17\x1b\x29\x90\xc5\x6a\x54\x25\x47\xb5\x66\xd2\x8b\xfb\x5d\x93\x69\x4f\x1d\xce\x61\x5f\x79\x98\xa6\x3c\xfb\xb2\xaa\xfa\xd7\xbd\xb1\x0f\x90\x6b\x1c\x8f\xb7\x18\x41\xe9\x98\x42\xae\x4d\x7f\x17\x2d\x6e\x41\xd2\x50\xf3\xdb\x61\x6c\xaa\xd1\xc5\xc2\xba\x83\xf3\x41\xf8\x48\x4f\xfa\x35\x83\x74\xcb\xd5\x50\x9c\x66\xab\xef\xc3\x4f\xcb\x77\x3c\xd3\xae\x66\x5b\xc6\xaa\x38\x2e\x9a\x75\xbd\xbd\x37\x6b\x07\xc4\x2b\x51\x86\xc4\xc8\x11\xd7\xfc\xf5\xd4\x70\x52\xca\x6f\x7a\xab\x66\xad\xa5\x7a\x3b\x60\xa0\xf0\xf5\xd6\x9a\xce\xfc\x7c\x7b\x61\x71\x01\xc8\x1e\xe6\x51\x07\x0a\xf5\xf6\x5a\xa0\xc4\x57\x2e\xaa\xc4\xfb\x9b\x51\x52\xd8\x57\xb0\x6d\xe1\x55\xfd\xbe\x3a\x25\x7e\x5f\x85\x6c\x5d\x43\x1d\x81\x59\x5f\xac\xfb\x84\xb6\x20\x04\xa3\x1b\x54\x30\xe4\x6b\xdd\x4d\xf6\xaa\x7b\x79\x14\x13\x2e\xcb\xd9\x12\x02\x99\xc6\xd7\x93\x9a\x2c\x68\x39\x9c\xf1\x33\xe2\x72\xa0\x69\x38\x4a\xc1\xe2\x43\xd5\x32\x8d\x6d\x3f\x2a\xa2\x21\x41\xb8\xe6\x3d\xd9\x9e\xfe\xb5\x84\xdc\xbe\x5e\x3f\x32\x59\xb1\xb6\xdb\x83\xce\x3e\xc2\xa9\x27\xed\xfc\x96\xb3\xb4\x6e\x4d\xd4\x8b\xc2\xa7\xe1\x7c\xda\xd5\xf1\xb6\x44\xe7\xc6\xda\x61\xf9\xc2\x58\x49\xca\xb7\xf4\x96\x1b\x25\x4b\x99\x5d\xa3\x25\x86\x3d\xe9\x42\x50\x6b\x75\xf8\x46\xce\x6f\x36\x15\xa9\xbf\x59\xda\xbc\x8a\x3a\x01\x98\x46\xa4\xfc\xba\x02\xdb\xb2\x5e\x80\x34\xc8\xfc\x81\x13\xda\xcc\x9a\x78\x07\x7d\x97\x34\xa8\xe9\x19\x85\xc4\xa6\xf4\x09\x20\x96\x81\x65\x79\x04\xfb\x1c\xff\x87\x06\xa5\x85\x85\x76\xb7\x8c\x62\x56\x34\x12\x49\x3d\xcf\xd0\xdd\x08\x94\x21\xd6\x09\x37\x11\xba\x69\xd2\xb3\xda\x8b\xe5\xaa\x66\xcb\x4d\x4b\x5b\x3b\x8b\x07\xcb\x50\x04\x86\x29\x8e\xbd\x95\xff\x4c\x47\x65\x8a\xaa\x3e\x8f\x95\x6d\x77\xd1\x88\x61\xcc\xef\x28\xd3\x56\xee\x01\x3b\xcf\x3d\x5f\x91\x47\x51\x5a\x7c\x0f\xe8\x67\x20\xae\xdc\x8e\xb0\x0b\x8f\x70\x45\x99\x13\xc7\x66\x15\x11\x8a\x18\xb3\x7b\x53\xb5\x9b\x63\xad\x18\xf2\xee\x58\x31\x93\xd1\x20\x93\xac\xc5\xd3\x61\x2f\x63\x66\x20\x8d\x3d\xae\xc0\x33\xab\xd6\x64\x18\x6f\x0d\x3b\x40\x85\x18\x24\x2b\x1c\xdf\xa7\x54\xfd\x33\x2f\xe3\x35\xa3\x94\x90\xd6\x55\x8a\xd6\x28\x95\x10\x47\x85\xcd\x0c\xf7\x7f\xc5\xc7\x9b\x7e\x9c\xc8\xd5\x34\x88\x7a\x98\x6e\xba\x62\x77\x56\xbf\x5a\x2a\xa0\x9e\xc9\x74\x23\x50\x0e\xa4\x48\xb1\xd1\xef\x06\xc8\x05\xcb\x79\x43\x59\x17\x35\x35\x02\xe6\xda\xa3\xb2\x1b\x47\x61\x95\x35\xde\xfb\x9f\xf7\x4c\xbc\x16\xc0\xcf\x3c\xb9\xe9\xbb\x7b\x3b\x5b\x4b\x6a\x2f\xee\x5f\x68\x87\x69\x12\xc6\x65\x6f\xab\xf0\x21\x0d\x84\x88\x20\xaa\x92\xfa\x30\x4d\x8b\x01\xd4\x9c\x24\x06\x3a\xaa\xe2\xa1\xa3\xe3\x7d\xf5\xed\xf7\x99\xf6\x81\xb9\xcf\xd1\x07\x63\x47\xb8\x1e\x6c\xff\x82\x27\x75\x1f\x98\xf3\x46\xc5\x5f\xfc\x9a\x6b\xa8\x2b\xd9\xc6\x75\xf4\x58\x64\xf1\xfb\xa2\xff\xae\x89\x32\xb2\xba\xa7\x00\x48\x7f\x8e\x84\x0a\x85\x8a\x5b\x3c\xc1\x30\xc3\x3f\x1a\xab\x52\xec\xd5\xc0\x93\xf8\xff\x3c\x50\x21\xf4\x77\x03\x8f\x6c\x9a\x85\x34\x0f\x76\xec\xab\x41\xeb\xab\x5f\xe6\x17\x7d\x19\x3b\x00\x8a\xd3\xaf\x53\xab\x0e\x14\x50\x50\x5f\xf0\xde\xfe\x58\x73\x14\x5f\x1b\x7b\x27\xcd\x47\x27\x55\xd6\x06\xa6\xc9\x2d\x57\x90\x8d\x92\x24\x0d\x1d\xac\x48\x10\x9c\xbe\xec\xf7\x44\xc7\x2f\x89\x5d\x13\xdd\x44\x4a\xd3\x6c\xb7\xf2\xe6\xfc\x1e\x56\xaf\xf2\xd3\x78\x41\xb4\x91\x02\x05\x29\xbb\xca\x83\x83\x6d\xec\x16\x76\x3e\xbd\x78\x50\x67\x38\x8b\x23\x80\xfd\x7a\x95\x9e\x40\x3e\xb2\x61\x64\xe2\x9d\xd5\x8f\xe7\x52\x52\x35\xa6\x2c\x73\x81\x2f\x84\x5f\x3d\x5f\xd3\x94\xd6\x45\xa7\xcd\x4b\x4e\xc9\x3c\x0d\xc3\x32\xcb\x77\xb6\x9c\x38\xcc\x59\x9a\x1e\x82\x50\xa2\x5f\x27\x45\x76\x5f\x8e\xbd\xa0\xc8\xf8\x37\xf6\x74\x14\xa8\xe1\x98\x82\x62\xb0\x52\xed\x6e\x25\x5e\x8e\x84\x1a\x69\xcf\x69\xbd\xbf\xd5\x84\xd6\x7f\xca\x91\x95\xb3\xe5\x70\x74\x2a\x48\xc1\xd5\x20\x04\x2c\x50\xea\x6a\xb3\x85\x7d\xa5\x88\x62\x2c\x7c\x9c\x99\x1f\xa8\x84\xb0\x35\xf1\xa8\x28\xd8\x3d\x20\x39\xfb\x23\x1a\x24\xe7\x20\x5a\xfd\x3a\x81\xda\xab\x2a\x51\x61\x87\x43\x58\x34\xbb\x5e\x91\xee\x1c\xde\x51\x5d\xd9\x53\x81\xb6\x19\xf0\x0c\x8e\x69\x1d\xf1\xb9\xc3\xbe\xd7\xd6\xf2\x18\xb8\x8f\x02\xbf\xd9\x7d\xa4\x18\x26\xc8\xd6\x5a\x8a\x55\x41\xff\x50\x00\xd3\x9e\xe1\x37\x34\xdf\x48\xb3\xa8\x58\xdb\x49\x23\x8b\x5a\xc5\xa6\x92\x01\xe2\x9a\x0a\xf3\x6f\xb1\xfa\x71\x56\xbc\xae\x3e\x71\x30\x56\x78\xd8\xfb\x53\x1d\x85\x85\xc5\x85\x76\x5a\xf6\x07\xc5\x6c\xeb\x2b\xa2\xd7\xb5\xab\xa3\x8e\x37\x94\x61\x1d\x45\xba\xfa\x46\x09\x85\x9d\x72\x6c\x5a\x26\x3d\x72\xdd\x57\xca\xfb\xc7\x94\xb8\xf0\x31\xa5\x6a\x40\x42\x7f\x45\x49\x71\x87\xcf\xc0\x6e\xaa\x62\x2f\x37\x63\x11\xef\xcc\x78\x97\x9f\x28\xcd\xd3\x32\x0b\x6d\xab\x66\xa9\xa4\xca\x9e\x17\xa7\xfc\x13\x0e\x3f\xdf\x36\xd5\x02\x31\xae\x35\x81\x08\xe5\x4d\xaa\x7b\xf0\xf5\xd4\x0b\x7d\x71\xff\xcb\x6d\xb2\xc5\xed\x47\x61\xcb\xbb\x28\xbd\xa1\x00\xf0\x6f\x34\xa5\x49\xe1\xc0\x0e\xa3\xbc\x60\x8f\x5c\xc4\xc6\xdf\x55\x8a\x43\xdf\x6d\xd2\x28\xfb\x46\x39\xec\xa6\x6c\x76\x81\xb1\xb8\xa0\x84\x83\x4e\x28\xa9\xde\xd7\x1b\x89\xe1\xcc\x1b\xe2\x4a\x01\x8b\x99\xe9\x44\x79\xdd\x25\xca\x4f\xff\x57\xbf\x9c\xcf\x56\xbb\x03\x3e\xfb\x8e\x56\x07\xe5\x24\x50\xc9\xa4\xcd\x71\x6e\xf7\xed\x26\x95\xf4\x91\x35\x49\x29\x98\x03\x41\xb3\xd6\x8c\x26\xfc\x36\x92\xd8\x55\xf2\x72\xc0\x9e\x20\x92\xd8\xaa\x71\x7e\x55\xc9\xe3\x8d\xd2\xc2\x26\x45\x64\xe2\x78\x0d\xd8\x09\x69\x32\xb6\x0e\x1d\xda\x3c\xad\x7a\x78\xdf\x0f\x3c\xa0\xbf\x5b\xe6\x51\x42\x76\x40\x0f\xd3\x03\xe1\x00\xbe\xae\xda\x30\xdf\xc1\x9c\x72\x9e\x37\x87\x0e\x39\xe0\x26\xa5\x7a\x08\xcc\x3e\x02\x47\x87\x6f\x30\x3c\xd8\xab\xfe\x20\xf0\xd2\x49\x6f\x23\xde\x02\x8e\xe6\x75\x9a\xb8\xd2\x9d\x56\xa2\x31\x36\x29\x32\x13\xef\xf0\xdb\xdd\x5b\x5a\xc1\xe7\x16\xbd\x57\x41\xda\x2b\x90\xc8\xa7\xb4\xed\x60\x0b\xba\xec\x8e\x38\xfb\x4a\x61\x33\xa9\x0e\xe3\x29\x5e\x1b\x2b\xd5\xc2\xd7\x54\x85\x9e\x9c\x38\xba\x26\xc1\x62\x44\x29\x15\x0a\x7c\x7c\x3d\x51\x5a\xc9\x69\xbc\xac\xc8\x81\x3f\x53\x66\x24\x3f\x53\x65\x88\x5e\xc9\x6f\x1a\xc1\xf1\x2d\xc5\x2b\xbb\x35\x15\xb9\x1d\x7e\xbe\x3d\x28\x87\x26\x99\x55\x12\x27\xa7\x15\x90\xfa\x06\x1d\x50\x0e\xc9\xe4\x5a\x44\xbb\xa7\x74\x71\x0f\xce\xd3\x8f\x49\x72\xb4\x9b\x11\xd9\x68\xd4\xc2\x5d\x05\xe6\xb4\x26\x4b\x76\x7a\x59\xb5\x0f\xc7\xbe\xbd\x73\x0f\x47\x34\x5e\xfe\x0f\x55\x79\xf8\xa6\x3a\x12\x41\x3b\x43\x11\x64\x67\xc7\xe7\x3a\xb6\x17\xe5\x69\x02\x54\x0a\x93\x3e\xf8\x74\x13\x0a\x88\x14\xb3\xf3\x38\x5d\x65\x85\x2e\x74\xd7\x58\xee\x5e\x34\x14\xbd\xd0\x59\x95\x67\x6e\xc1\x86\xcf\xb5\x7f\x69\x87\x17\x3d\x64\x29\x45\xc5\x38\x79\xce\x41\x45\x69\x22\x8b\x5d\x86\x3f\x59\x8f\x35\x21\xba\x97\xcc\x4a\x4a\x3d\xd4\xea\xa3\xa5\x7f\xab\x1b\xbb\x4a\xd7\x3c\xcd\x86\x50\xfe\x7d\x4e\xda\x15\x4a\xaa\xf5\x48\xa3\xd1\x8e\x89\x72\x17\x00\x33\xf5\x3a\xf0\xd8\x83\xd3\x8d\xd8\x9b\x95\xb4\x70\x7f\x23\x1d\x49\xd5\x9d\xd4\x4b\x08\x6d\x20\x7a\x76\xc5\x34\x59\x70\x4c\x13\x89\x18\xd8\xeb\x78\xa6\x3a\xc1\x90\x2a\x1c\x1d\xfb\xb4\x01\x91\x25\x2a\xd9\x77\x54\x4c\x2e\xf2\x3d\x78\x14\x0c\x28\x84\x3d\xf8\xda\xad\xbe\x41\x3a\xb4\x31\x59\x16\xbb\x91\x3b\x55\x2b\xed\x79\xcd\xfb\x63\x75\xb5\x70\xaa\xe8\xf0\x9c\x70\xbe\x1f\xf3\xf3\x8c\xa3\x42\x90\x27\xb1\xe7\xc3\xee\xc9\xfe\x8b\xbd\xad\x2f\xbd\xc4\xb5\x8f\xa3\xa8\xf6\x4b\x08\x47\xbf\x1f\xdd\x09\xd8\x0d\x21\x14\x00\xb8\x01\x0d\x6b\x96\x2a\x15\x23\x35\xdf\x00\x81\x23\x26\xc3\x87\x03\x15\xf3\x49\x3a\xc9\x96\x51\x5a\x3d\xe2\x4a\xa0\x94\x43\xd7\x29\x90\xc7\xca\xbd\x01\x8a\x82\x08\x70\x54\x3f\x44\x18\x84\x0a\xc1\xb0\x6d\x52\xad\x75\x54\xac\x7f\x3e\x15\x7b\x1c\x38\x40\xda\x5a\xd9\x1a\x0a\x10\x72\xdc\xb4\x9c\x40\x07\x4c\xb2\x81\x0b\xb8\xd1\x60\x63\xb9\xd0\xb6\xb1\xe2\xaa\x3b\x63\x59\x85\x0b\xf3\x38\x99\x72\x94\xdb\xa2\xa5\x50\x27\x27\x15\x14\xeb\xe4\xd4\xc3\x2d\x2e\xb4\xbb\xb6\x70\x04\x68\xc7\x95\xf4\xc5\xd5\xdb\x81\x37\x26\xf4\x44\xb4\x30\xae\x8e\xc6\xd1\x0e\x7a\x22\x34\x34\xfe\xc3\xd8\x37\xf2\xee\x69\x30\xf0\x0f\xc7\xea\xb3\x2f\xa8\xa3\xfe\xb8\x72\xa1\x80\x02\x14\xab\xfa\x0a\x69\xa2\xc6\x0e\x6b\x79\x91\x77\x55\x16\x8d\xa3\x24\x4c\x63\xd0\xd2\xa5\x4e\xa7\x8b\x76\x6a\x7f\xff\x95\x5f\xfe\xfb\x2d\x05\xbf\x7a\x8f\x76\x68\xbe\x6e\xe4\xc9\xe7\xe9\xd0\x0e\xd2\xd5\x96\x17\x14\x3e\xae\x34\x3d\x8e\x4f\xf5\x66\x9e\x69\x0f\x6d\x61\x62\x0e\x52\x90\x89\x9e\x1f\x2b\x9a\xcf\x34\x4e\xa9\x7a\xbb\xdd\xb4\x18\xb4\x7c\xca\x07\x68\xaa\xa8\x97\x36\x59\xca\x86\xb1\xc9\x07\x20\xb8\x79\x3e\x16\xbd\x09\xbc\xa6\x1b\x1a\x3f\xb6\xbd\xe3\x27\x47\x16\xe5\x36\x27\x6a\x8e\x98\xbc\x54\xc3\x26\x0d\x37\xdd\xea\xf6\x98\xb3\x8f\x54\x54\x1b\xa6\x29\x49\x3e\x57\x5b\x9b\x8f\x12\x39\x28\xe7\x9b\xa9\xce\xd0\xd7\xbf\xde\x4e\xa2\xc4\x52\x48\x86\x22\xf2\xb6\x8e\xd6\xd6\x55\xa3\x5b\x13\x14\x50\xad\x84\x30\x1d\xda\x7c\x97\xf7\xb7\xb9\x16\xf8\x68\x7d\xa6\xe3\x81\x8a\xb7\x11\xd9\xa0\x10\xff\x11\xea\xd6\x8e\xa8\xeb\x5a\xe3\x90\x2c\xc3\x02\x6f\x6c\xb0\x15\x69\x1a\x73\x28\x20\xe2\x06\x2d\x27\x9b\x7b\xcc\x75\xd8\xaa\xe9\xd1\x4d\x7b\x6b\xb3\xca\xfb\xe5\xec\xd8\xef\xe3\xe7\x95\xb2\xd5\xc3\x1d\x5f\x32\xb9\xad\x71\x60\x51\x3e\xb2\x59\x6e\x7b\xad\xea\x99\x9c\x2e\x90\x07\xea\xa9\x8c\xba\x9f\x45\x71\xcc\x15\x40\x16\x0a\xa6\xf7\x27\xa2\xc1\xb5\x9c\x7f\xb8\xf6\x98\x62\x6d\xfc\x0c\x85\x12\xd6\x31\xa0\x7a\x88\x68\x1a\x28\xa5\xa5\x2b\xe3\x29\x39\x79\x84\xcd\xf7\x03\x05\x83\xbf\x37\x56\x99\x32\xea\x24\x78\x7d\x1f\x52\x69\x04\x25\xbe\x3f\x08\x14\x07\xfe\x28\x85\x95\xd8\x77\xe1\xc5\x8a\x2a\xd6\xb4\x06\xf9\xe1\xe7\x89\x19\x91\x59\xc3\x27\x22\x1e\xff\x94\xe2\x14\x9f\x1a\x3f\xe5\xf9\x59\xfd\xcc\x14\xda\xcd\x43\x30\x0d\x35\x3c\xbf\x8f\x72\x32\x6b\x7a\xd2\x85\x15\x4c\xa0\xd6\xfd\x57\x88\xf6\x2b\x9a\x25\xaa\x3d\xeb\x07\xa6\x78\xca\x99\x49\xfe\xe3\xbf\x41\x58\x24\xfa\x57\xff\xe4\x0b\x1d\xa5\xd4\x8c\x89\x40\xcb\xde\x7e\x86\x94\xa9\x28\x9f\xdc\xf9\xf9\x09\xbd\x09\x8a\x37\x7e\xfc\x74\xc7\x9d\xa9\xdf\xd9\xdb\x51\x4e\x39\x0f\x4f\x94\x54\xd6\x63\x4c\xb7\x77\xea\x41\x52\x3f\xf9\x6f\xdb\x13\x95\x1b\x3f\x34\xa1\x5d\x5b\xc4\x84\xab\xd5\x82\xac\xe2\x06\x68\xd0\x48\x74\x59\x35\x1e\x8b\x75\xf7\xa4\xf5\x12\x57\xe6\x7f\xe3\x0b\x1d\x65\x5c\x77\x8d\x38\x17\xae\x19\x54\x8d\x17\x8e\xba\xfb\x4d\xfe\x62\x3d\xbb\x04\x45\xda\x9a\x6c\x7c\x4b\xb9\x1e\x34\xb4\x27\x09\xa4\x9a\xd7\xb2\x5c\x2a\x94\xc9\xaf\x6c\x20\xcd\x8f\xb2\x74\x18\xe5\x16\xdb\x2b\xea\x14\xef\xd3\x68\xf0\xf5\x54\x62\xbc\xf0\xfc\x0b\x44\x66\xac\x66\x14\xcf\x10\x1c\x49\x80\xb2\xf2\xf5\xd4\x91\x2b\x95\xf3\x6f\x18\x9c\x2b\x8d\x49\xb8\x6e\xbc\x24\xe9\xea\x5e\x65\x15\xf7\xcf\xbd\xfa\xcc\xe2\x3e\xea\x84\x88\x9b\xbb\xe2\x6d\xef\xea\xf8\x5d\x48\x5c\x2a\x59\xc3\x32\x50\x30\xd7\x1b\x81\xaa\xd6\xf1\xd1\x86\xf6\xf5\x79\xc0\x25\x70\x43\x22\x0c\x82\x25\x3e\xa1\x4c\xda\x5f\xa3\x89\x20\xf6\x44\x4e\xae\xe3\x99\x3d\xb4\x6d\x22\x7e\x98\xe9\x54\x91\x98\x60\x49\x94\x42\xd8\x76\x4d\xeb\x88\xb2\x30\xb6\xac\x0f\xea\xcc\x4b\x9d\x6e\xfd\x45\x57\xab\xcb\x6c\x92\x46\x10\xfc\xc5\xe3\x5c\xc0\x47\xf2\x8d\xc2\xf4\x12\xa2\x7f\xa6\x7a\x3e\xe7\x70\x76\x50\xc2\xcd\x6f\xd3\x26\x25\x1b\xa2\x73\x7e\x4a\xd3\x21\x35\xab\xea\x1a\x53\xae\x01\xb4\x3e\x85\xdc\xab\xce\x71\x9b\x17\xa6\x1b\x47\x38\x33\x3d\x6b\xe7\xa2\x56\x74\x65\xd5\x46\x14\x9c\x4f\x36\x18\xa5\xbc\xec\xa5\x04\x39\xc7\x77\x24\x0b\xf5\x2c\x53\xe7\xf5\xc1\xf9\x76\x5e\x80\xfe\x8b\xa1\xd3\x2c\x76\xbe\x6e\xa8\x78\x2c\x54\x71\x75\x56\x46\x05\x87\xd5\x08\x07\x7e\xa8\x4d\x9f\x4e\xd7\x74\xf1\x94\x22\x58\x91\xae\x98\x98\xdd\x4d\xdc\xd9\xee\x4a\x88\x1a\x29\x37\x48\xd3\x15\xcb\x56\x04\xa2\xd7\x56\x3d\x17\x76\x4e\x76\x0c\xc0\x2a\x79\x67\xaa\xaa\xb3\xb8\x1f\xb2\x11\xac\xb2\x8b\xd4\xe3\x36\x36\x0b\xbe\x51\x0e\xc8\xbd\x28\x2f\xa2\x84\x77\x09\x27\x21\xc4\xc5\x19\xbe\x19\x3f\xe6\xa6\x86\x5d\x89\xf8\x17\x08\xa8\x98\xca\xcc\x82\x43\x6e\x10\xe2\x49\x6c\xb1\x9a\x66\x34\xce\x1e\xdd\xb5\x81\x28\x9f\x6f\x54\x79\x72\xc5\xe6\x39\xab\xa3\x63\x34\x2f\x05\x0a\x48\x77\xa9\x09\xa9\x3e\x4c\xa5\x12\xe4\x14\xb7\xbf\xf4\x92\xeb\x1a\x3b\xc5\x8a\xa2\xc8\x4c\x28\xaf\x0d\x83\xca\x19\x32\x76\x0e\x70\x47\xa4\xeb\xe7\xcf\x15\x9b\xad\xed\x51\xd1\xf4\x7d\x25\xbe\xb8\x8f\xd6\x27\xf6\xef\x13\x63\xe7\x28\xf8\x3f\xfc\x27\x1d\xe5\x26\x70\x04\x1b\x3b\x6a\x01\xd7\x31\xb5\x1d\x85\xf5\xc0\x9c\x56\xcf\x78\x81\xb3\xb4\x5f\x20\x45\x6b\x6c\x3a\x77\xc7\x7a\x52\xff\x26\xf6\x16\xd1\xad\xf4\x4f\xbc\xb7\xa3\x70\xc2\xff\xd7\xd8\x17\x60\x5f\x07\x7e\x40\x18\x7f\x53\x3b\xf1\xe2\xc2\x17\xda\x26\xcb\x6d\x62\x24\xb4\x12\xdc\x81\x06\x91\xfa\xe6\x5b\xdf\x64\xac\xdf\x82\x32\xfc\xef\x61\x13\xe1\x1b\xc7\x22\x19\x46\x61\x96\x52\x66\x9c\xe7\x29\x3b\x22\x49\xb6\x86\x1f\xc4\x77\x0a\xf2\x77\x5e\x8b\x2a\x3e\xd8\x19\xdf\xf6\x99\x47\x84\xf6\xdb\x29\xe5\x2c\xa5\xc1\x2b\x7f\xef\x97\x7f\x99\x42\x5b\xe4\x6f\xd0\xa6\x41\xa1\xec\x9e\xf2\x00\x79\x47\x43\x32\x36\xc6\xfb\x5c\x53\xa7\x88\x86\xa4\xa0\xd2\xd3\xc2\x2e\x1f\x29\xf5\x83\x8f\x1a\x34\xe0\x07\xd6\xf4\x58\x81\x90\x93\x0d\x11\x58\xf4\xc0\xe2\x13\xc1\x5e\x8d\x1d\x19\xda\xa4\xc8\xc9\x30\x0c\xc8\xb2\x0f\xb0\x50\xf1\xd4\x6f\xa9\xd4\x8d\x75\xae\x25\xd1\xaf\x9e\x6a\x73\x13\xab\x8f\xff\xb1\x92\x41\xcc\xcb\x50\x0c\xca\x3d\x05\xfd\x56\xa0\x0c\x93\x6f\xa9\x29\xbe\x62\xf3\xc7\x3c\x82\xe9\x36\x4d\x2b\x14\x5e\x76\x01\x0a\xec\x0e\xda\x6a\x26\x23\xe0\x80\xa1\x17\x22\x9c\xa7\x26\x5e\x08\xe2\xdf\xfc\x52\xc7\x97\x72\x5f\xff\xdb\x1d\xaf\xc4\xf9\xd8\xdf\x9a\xa8\xca\xd5\x7f\xf7\x64\xa7\x3a\x60\x44\xac\xd5\xc7\xf1\x4f\x4f\x14\xce\x72\xe7\x84\xf2\x7c\xe4\xb1\x9f\xe9\x34\xba\xf8\x2d\xd9\x24\x8f\x56\xe0\x3a\x0a\xb0\x00\xa8\x65\x6c\x4c\x49\xcf\x29\xfa\x17\x0d\xdb\xc7\xaa\x35\x19\x76\x4a\x71\x27\xf3\x73\xeb\x98\xaa\x50\x25\x36\x5b\xb1\x44\xbb\x78\x8e\x77\xec\x99\x89\x4b\xf5\x77\xec\xeb\xf8\x5f\x70\x5b\x91\x31\x3f\x9a\x0a\x62\x0e\x3f\xdf\x2e\x32\x93\xe4\x4b\x36\xab\x22\xe9\x4d\x6c\x70\x9b\x97\x54\x53\xbc\x97\xda\xfc\x09\x65\xc1\xf4\xe6\xd8\xf3\xed\x3f\xa4\x7d\x46\x82\xbe\xea\x01\x44\x2a\xc0\xc5\xc8\xbf\xb6\x0f\x1d\x14\x67\x96\x5b\xbd\x02\x76\x02\xd0\x5a\x46\x6c\x0f\xeb\xfa\x73\x07\x0e\xf8\x45\xe1\x01\x9f\xd0\x12\xc3\x9c\x87\x00\x22\x36\xfb\x7b\xbc\x31\xc9\x8e\x49\x2c\x26\xe9\x57\x36\x8a\x24\xc5\x4b\x2d\x7a\x9b\xd2\x81\xf7\xcd\xaa\x13\x35\x6d\x9e\x32\xe9\x7d\x56\x91\x62\xae\xe8\x78\xea\xb4\x36\xf4\xbc\xab\x2d\x5d\x8f\xd4\x4c\x2c\xab\x95\xef\x24\x67\xab\x0d\x10\x0f\xfd\x06\xce\x1d\x96\x3f\x27\x30\xa9\xf3\xa7\x5b\xdc\xcf\x4b\x63\xb6\xb3\xfd\x0b\xde\x99\xe9\xe0\x3c\x57\xbc\x66\x3b\x5a\x96\xed\x8a\xa6\xea\x70\x9d\x0a\xd5\x93\xdd\x13\x65\xd6\x73\x9e\x5e\x17\x46\xef\x35\x44\x09\x98\x18\xd7\x11\xfc\xf3\x63\x69\x64\xca\xee\x8e\x2f\x37\xdf\x52\xb0\xb0\xf5\xad\x65\xdb\x97\xe6\x0e\xb7\x7f\xa9\xa5\x50\x6d\x48\xbf\xf9\xda\xc5\x66\x23\x13\x2e\xaf\xa6\x69\x4f\x69\x0d\x9c\xd2\x96\xbf\xa7\xa6\xb2\x80\xf9\xf9\x76\xcf\x0c\x4d\xdf\x6a\x52\xe7\xff\x43\x8f\xc2\xd7\x8a\xaf\x39\x8a\x46\x36\x8e\x12\xe4\x18\x2c\xae\x1d\x78\x4b\xe6\x75\xb7\xa7\x0a\xde\x67\x0b\x2f\xf5\xa6\x72\x16\x44\xa2\x87\x79\x77\xb4\x8e\x7b\x89\x4d\xc2\xbe\xa2\x38\x93\x8e\x29\x61\xc4\x63\x0a\xe4\x73\x5c\xc7\xc9\xc7\x35\x1b\x20\x5d\x15\x00\xf4\xcb\xae\x23\xa6\xba\x63\x81\xa4\xaf\x3d\x5b\xd8\x2c\x4a\x33\x65\x43\xee\x5c\x92\x9c\xe0\xc3\x09\x65\x10\x73\x64\x0b\x34\x2e\x44\xcd\x8e\x15\x2c\x54\x65\xea\x8f\xe9\xfb\x24\x5d\xf6\x80\x3d\x13\x47\x36\xe1\xea\xcd\xdc\x61\x5e\xd0\x40\xc4\xf2\x75\xad\x86\x50\xf6\xd6\xa8\xb1\x83\xcd\xe1\x96\x86\xf5\x8f\x83\xd6\x57\xe6\xe4\x7a\xac\x74\x9f\x36\x75\x2d\xe8\x7d\x25\x46\xc0\x8a\x1e\x79\x4b\x51\x31\x4e\x2a\x36\x90\x16\x47\xc8\xa3\x64\xcd\x64\xc0\x84\x4a\xf4\xe9\x85\x06\xbf\x85\xef\xe3\xff\x10\xd4\x41\x54\x07\x25\x6f\xba\x34\x35\xdb\xaa\x10\xbe\x9b\xad\x19\x70\x3a\x9c\xe6\x9a\xaf\x94\x9e\x6d\x2e\x02\x9a\x15\x62\xf4\xeb\x5d\x88\x37\x04\x21\x8d\x4e\x23\x67\xd0\xd2\xc9\x6c\xee\x0e\x76\x14\xa4\xa1\x40\xc0\xd7\xb5\x14\x72\x6d\x38\xa4\x97\x82\x88\xf1\x36\xbd\x14\xbe\x1e\x7f\x56\x1d\xe4\xc9\x8a\xcd\xc0\xa2\xc8\x77\xf8\x72\x34\xe0\x23\x68\xac\xfe\x45\xa0\x1a\x77\xc7\x75\x47\x10\x99\x92\x88\x19\x4f\x29\xba\xcd\x4d\x53\xe8\x1c\xda\xc8\xd5\x6c\x7e\xd4\xb0\x8a\x17\xda\x79\x68\x62\x56\xa8\x74\x0d\x43\x47\xc2\x7f\xbd\x59\x7f\x73\x68\xc2\x2c\xb5\x61\x9a\xa4\x43\xb6\xa4\x75\x2e\xc1\x0e\xc8\x32\xed\x12\x4c\x92\xb2\x26\xe9\x8b\x23\x0f\x76\xb9\x4f\xc7\x0a\xee\xff\x69\x23\x27\x84\x60\xc1\xf2\xbb\xb0\x16\x6f\x8f\x7d\x07\xfb\xb6\x63\x6b\x2c\xa5\x29\xa3\x21\x9d\x18\x45\xf5\xd9\x7c\xe3\x8d\x09\xb3\xa8\x88\xc2\xe8\x55\x74\x9d\x90\x9f\xdf\x44\x43\x8b\x6f\x94\xd0\x41\x91\x99\x08\xc1\xa4\x14\x82\x3d\x56\xe9\x7c\xd3\x6f\x1c\x46\xbd\x9e\x01\x90\x0c\xbb\xf5\xcc\xc4\xe3\x33\x67\x3a\x0d\x3a\xb8\xdd\xcc\x9a\xe5\x5e\xba\x2a\x35\x15\x87\xba\x50\xba\x96\x8f\x2b\x8c\x48\x16\x8d\x30\x33\xc5\x1d\xd3\xf7\x4e\xcf\xa9\x08\xaf\x4c\x72\x1b\x96\x99\x83\xbc\x3b\x04\x60\xf5\x1d\x4e\xe1\x6c\x7e\x9e\x31\x77\xa8\x48\xf2\xf5\x54\x5e\xbb\xb0\x08\x48\x99\xcd\xe4\x29\x1d\x04\xd3\x9b\x37\x1f\x6b\x6a\xc2\x75\x61\xa6\x49\x43\x88\xae\xc9\x89\xc0\x77\x50\xa6\x13\x42\x62\x86\x67\x99\xf5\x09\xa7\x23\x20\x2a\xcf\x94\x06\xbb\x0b\xc8\x09\x8b\x7a\x1c\xdb\x08\xaa\x36\xf6\x35\x04\xb7\x92\xe7\x7c\x56\xc1\x88\xca\xdc\x52\x5b\xc4\x59\x00\xb0\x80\x46\xe0\x3b\x73\x17\x54\x8a\xbb\x1c\xc5\xf1\xae\x3a\xc8\xa3\x9a\x9a\xa8\x40\x9c\x55\x60\x5a\x68\xad\xf3\xff\xaf\x4f\x70\x06\x55\xa2\x8a\xf0\x97\x74\x18\x0a\xdc\x67\x9f\x72\xd7\xcf\xc3\x2c\xea\xca\x2f\x42\x8f\x0b\xda\xcf\xd8\x4f\xef\x06\x5a\xf4\x40\x4f\xda\xd4\xe4\x00\x1e\x8b\x18\x74\x4b\x29\x0e\x34\xd9\xd2\xe6\x31\x99\xf4\x38\x37\x16\x48\x48\xf2\x75\x4d\x0f\x2d\x4b\x4c\x06\xa1\x7b\x44\xf9\xb0\x77\xe6\xeb\xb1\x07\x3b\xf3\x06\x2d\xff\x68\x2b\x25\x8d\x56\x4a\x12\x25\x22\xe3\xdb\x52\x80\xbc\x7b\xea\x71\xef\x35\xe0\xd0\x43\x33\x2a\x4c\xc4\x6a\xdd\xae\x02\xa9\x40\xf4\x4a\xae\xdc\x64\xc3\x34\xa1\x1e\x8d\x68\x67\xd3\x63\xf1\xcd\x54\xdd\xd1\x71\xc9\xb3\x68\x68\xa9\x61\xeb\x64\x11\x5c\xc1\xe1\x86\x56\xb7\x6d\x75\x94\xce\x5b\x34\x04\xbd\xa2\xc9\x65\x5a\x40\x2e\xd6\xe4\x6b\x0f\x55\x61\xfd\x69\x45\xe2\xe5\x2c\x0a\xe9\xd5\xd5\xb1\x5a\x60\x17\xf5\x97\x6d\xd0\xe1\x2d\x18\xec\x6a\xdc\x51\x2a\x3c\x11\x28\xd0\x24\x1a\xe8\x88\x4e\x3f\xab\xfc\x7b\xfe\xce\x73\x5f\xa1\x06\x31\x12\xaa\xfb\xca\x7a\xe7\x07\x63\xa5\x43\xb4\x4d\x89\xbd\xe7\x85\xb5\xf1\x5a\x4b\x89\xbd\x7d\xc8\x36\x0a\x7c\x37\xcd\xa6\x9f\x6b\xaf\xa6\x89\xc7\xfb\x20\x4b\x62\x70\x2f\xdf\xd4\x42\x95\x24\xb7\x64\xe0\x2f\x21\xa4\x42\x9c\xdf\xc7\x09\xa8\x04\x3e\x44\x17\x07\x24\x5a\x4c\xad\x5b\x68\x90\x20\x71\x07\xbe\x55\x1c\xfa\xe8\x09\xb0\xae\x2e\xe9\x6e\xc1\x45\x4e\x4c\x1c\x0c\xba\x5a\xbd\x02\x6c\x68\x72\xef\x1b\x9a\xac\x20\x1d\x7b\x24\xe8\xdf\x1f\x2b\xfc\x27\x7c\x06\xc4\xfc\xab\x7a\x27\xdc\xf2\x1e\x2b\xd0\x50\x96\xf6\xca\x10\x22\xec\x2d\xa7\xe8\xf9\xbd\xb1\x57\xf4\xfc\x9e\xca\x23\x7b\xab\x40\xea\x39\xe1\x80\x13\xfa\x8c\x9c\x86\x22\x1f\x9c\x6f\x17\x83\x72\xd8\x05\x46\x0b\x1b\xdf\xb7\x14\x56\x13\x32\x64\xe8\xee\x1c\x69\x58\x4e\xf9\xc8\xac\x26\x12\xed\x60\x3e\xbe\x87\xcd\x8a\x6f\x94\x19\xd3\x4a\x64\x57\x77\x2a\xd7\x18\x56\xf1\x77\xfd\x4f\xe5\x6a\xa7\x8a\x5a\x33\x1d\x7a\x47\x78\xc7\x30\xd3\xc6\x6b\xb9\xa2\x65\x5d\xa2\x2c\xcc\xcc\x52\xf1\x28\xfd\x5b\x40\x59\x19\x07\xea\x1a\xd0\xce\x79\x1b\x0c\x4f\xf1\xcd\xa1\x87\x15\xd9\xf3\xea\xd3\x91\x74\x1d\xc5\x9b\xe5\x7f\x45\x65\x69\x64\x14\xef\x63\x40\xd1\xc7\x7c\x93\x67\x83\xb8\xac\x29\x96\xe1\x1b\x81\xcf\xf9\x66\x3a\x9e\x99\x96\xa5\xab\xe4\x01\x83\x8c\x13\x7a\x0f\x7c\xad\xf5\x14\xae\x52\x6c\xc7\xd7\x53\xa1\x8d\x74\xcc\x68\xe3\x7d\x71\x3f\x4f\x27\x34\xed\xf9\x7a\xca\x67\xba\x3a\x4f\xbb\x75\xf5\xef\xf3\x5a\xfd\xfb\x7c\xe0\xe3\xf6\xdc\x64\xbd\x34\x01\x7a\x9c\x87\x13\x15\x4c\x5d\x15\x43\x09\xfd\x6e\x93\xbe\xdb\x52\x99\x15\x03\x9b\xed\xf0\xd9\xc9\x0d\x95\x9d\x7c\x0f\x70\x6c\x97\x3b\x54\xbb\x37\x48\x10\x13\xa5\xac\x7c\x44\xe5\x11\x79\x11\x65\x59\x39\x82\x94\x21\x4e\x61\xe4\xd4\x7c\x3d\x15\x9e\x1e\x9c\x6f\x67\x51\x98\xda\x9e\xea\x58\x33\x3b\x94\x6f\x94\x3f\x73\x59\x6d\x3a\x85\x59\xb6\x48\x12\x58\xd1\x88\x66\xbe\xa8\x1b\xf9\x1a\x72\xb7\xcc\x12\x9b\xb5\x7c\xff\xe2\x22\x8d\xba\x1c\x90\x0d\xee\xde\x89\x2d\x54\xf1\xfb\xe7\xaa\xab\xfc\x73\x47\xf3\x58\x8e\x7a\x89\x01\xd3\x8f\x3d\x0c\xb1\xe9\x88\xa1\x61\x83\xcc\x7e\x61\x5e\x91\x85\xd7\xd4\x5d\xd8\xa7\x14\xe1\x46\x59\xb4\xc2\x25\xf2\x4d\xd2\x57\xd8\x3c\xaf\xd8\x40\x61\x1a\xc7\x36\x84\xfa\xcf\x41\x09\xb4\xce\xd0\x82\x11\xdd\x75\x65\x65\x9c\x85\x83\xa8\xb0\x61\xf1\x1f\x27\x7c\x3f\x4d\x89\xcd\xca\xcc\xc4\xca\x99\x0e\xac\x7f\xbe\x56\xbb\xc5\x20\x1d\xa6\x28\xa7\xcb\x5e\xa9\xbc\xb3\xe1\x45\xc9\x4e\x0a\x4d\x7d\xc6\x22\x8b\x62\x29\x39\x0b\x75\xd2\x83\xab\xcf\x8c\x9f\x72\x3f\x28\x4a\xec\x92\x34\x32\xe9\xeb\x90\x49\xb2\x50\x2b\xdf\x4c\x09\xf3\x39\x4d\xf9\xa2\xec\x89\x90\x91\xd8\xcf\xb7\x9c\xc3\x13\x1f\xc0\xd8\x76\xa6\x5f\x62\x15\xbf\x47\xcb\xa2\xdd\xcf\xd9\xac\x92\x0e\x6c\x94\xce\xe9\xad\xc9\x1f\xe0\x0c\xdb\x50\xe7\xd9\x86\x92\xd0\x2e\x87\x51\x52\x0e\xb1\xaf\x4b\xeb\xd0\x73\xb8\x66\xe9\x95\xe1\xd7\x6d\x8c\xbd\xbd\xf7\x52\x19\x0f\xa3\x84\x3d\x3f\x5a\xce\x70\x8b\x53\x5f\xbe\x51\x6c\xa9\x28\xcf\x4b\xdb\xdb\x41\xdb\x2e\xde\x21\xea\x18\xe2\xac\xda\x72\x26\x44\x70\x5c\x45\x1a\xfa\x86\xc2\x5d\x9f\x53\xa8\xf0\x51\x96\x0e\x47\x45\xbc\x36\xeb\xd5\x5f\x6f\xc0\x97\x87\x6f\x68\x52\x22\x49\xdc\x3e\xf1\x6a\x2c\xdb\xa7\xa8\xd7\x68\xc0\x65\xd0\xd9\x71\x1e\xdb\xee\xf8\x84\x1c\xa6\xc0\xb3\xe9\xb7\x71\x0f\xd0\x01\xef\xb8\x02\xb0\x03\xfb\x25\x45\x6f\x57\x98\x4d\xe0\x28\x3b\x4e\xfa\xa1\xd5\xf1\x63\xc5\x8a\xfd\x08\x10\x1e\x9e\x4c\xd7\xf1\xab\xd8\xd5\x14\x65\x16\xbd\x2a\xeb\x17\x0f\x78\x1b\x21\x39\xdf\x34\x09\x85\xf6\xca\x51\x1c\x85\x51\xb1\x46\xdb\x8f\x88\x46\xfa\x96\xd1\xb4\x2a\x1d\xa5\xe9\xa3\x92\xe3\x5d\x65\x61\xe0\xfc\x0c\x9a\xea\x73\xb0\xbc\x47\xd2\xcc\x45\xef\x40\x17\xc0\xb7\xae\x86\xc3\xcf\xb7\x43\x13\x47\x4b\x69\x96\x44\xce\x74\x6d\xf3\x16\x41\xea\x10\x65\x5e\xd0\x83\x7c\x54\xe9\x99\x66\x51\x68\x77\x28\xb9\x50\xd1\x58\xe7\xbb\x60\x6b\xaa\x24\x31\xc2\xcd\x40\xd1\x8a\x3f\x99\x5a\x5a\x07\xe7\xdb\x9f\xff\x07\x5f\xfc\xd5\xc5\x1d\x55\x98\x44\xd3\xfc\x8d\xcf\x76\xb4\x15\xa8\x42\x10\xa0\xd0\x2d\xa3\x49\xcf\x22\x1e\xfe\x7b\x5c\x75\x20\x8e\xd3\xd5\x28\xe9\xcf\x7a\x6f\x97\xcf\xa3\x2a\x8f\x02\xc9\xde\x89\xef\xdd\xf0\x39\x83\xcc\xf1\x3c\xd6\xb0\x3f\x67\xfa\x99\xe9\x95\xc2\xbc\xc4\xf4\x7d\x5b\x89\x09\xbd\x5d\x17\xdb\x4c\x44\x59\x4a\xca\x96\x4a\x8d\xe4\xa8\x2b\x5e\xac\x1a\x6e\xe8\x8a\x5e\xf6\x11\x6c\x96\x02\xb3\x6c\x39\xd9\x98\x6f\xab\x96\x71\x97\xcc\x11\xf3\x19\x2f\x0f\x0c\xfe\x3b\xc2\xab\x1d\x1d\x6f\x6c\x70\xc2\x95\x59\x97\xa2\xa4\x6f\xb3\x51\x16\x31\x39\x15\x31\xda\xcf\x69\x34\xf9\x3a\x78\x52\xaf\x67\xea\x8b\x56\xf3\xdc\xdb\x0d\x7e\xac\xec\x06\x3f\x56\x35\xd4\xa4\xcc\xf2\x28\xe9\x2b\x58\xf9\x11\x25\x70\xc4\x02\x23\x02\x0e\xc6\xa8\x60\xcb\xbd\x1b\xe8\xc4\x7b\x4a\xc1\x64\xee\x70\x7b\xd5\x9a\x2a\x1e\xe9\x5a\x53\xd8\xa4\x06\x62\xf3\xa1\xee\x89\x26\x0a\x82\x7d\xc5\x86\x65\x75\x36\xcc\x2a\xf3\xea\x0b\x0a\x23\x8e\x47\x74\x36\xc0\xde\xab\xe3\x82\xea\xc4\x15\x99\x59\xb1\x59\x9e\xaa\xf0\x82\x6d\xf1\xf8\x66\xaa\xa5\x31\x77\xb8\xbd\x14\x47\xa3\x96\x4f\xba\xf0\xa8\x7c\xad\x0a\x0a\x83\x34\x91\xaa\x18\x83\xd1\x30\xfd\x04\x99\xb6\x47\x71\x6e\x8a\xc2\x32\x9f\x0a\xc9\xc8\x1b\xc0\x68\x8a\x01\x17\x45\x65\xda\x99\x8b\xff\x15\xe5\xc7\x78\x52\xd0\x8b\xf9\x5a\x9d\x03\xa3\x28\x5c\xb6\xbd\x9d\x7e\x1a\x70\xce\x85\x65\x8c\x78\xd1\x61\xe5\x1c\x11\xfa\x61\xea\xd2\x01\xfa\x71\x8d\xce\x04\xfc\xfb\x4f\xb4\xc1\x43\x09\x33\x83\xb9\xc3\x22\x60\x1a\x68\x31\xd3\x06\x3a\x78\x2f\xcd\x86\x26\x61\x69\x40\x67\x70\xe6\x94\x0b\xae\xa8\xe2\xd8\x8f\xa6\xaa\xb8\x72\xb0\x0f\xbc\x95\x08\x10\x91\x37\x03\xe5\x0f\x73\xb3\xb6\x4a\xf3\x02\x1e\x22\x50\x32\x38\x4e\xad\x22\xbe\x56\x22\x9d\x17\xfe\x1a\x23\x4f\x6a\xb4\x3a\x2b\xfd\xa7\x9f\x76\x71\x6d\xa3\xad\x69\x6f\x25\xca\xbd\xce\x98\x90\xdc\xd5\xe3\x9d\xd0\xc0\x90\x10\x26\x27\xaa\xa2\xb2\x59\x33\xe5\xbf\xa8\xed\x67\xf1\x8c\x62\xa9\x4d\xcf\xc8\x37\x28\x13\xb8\x06\x71\x35\xb6\xe2\x11\xff\x84\xe2\x5c\x64\xfd\x2a\xda\x75\xb6\x74\xef\x06\xde\x3e\xf4\x5d\x05\x58\x8e\x56\xd2\x6c\x0d\x24\x7f\x51\x6b\xf2\xd3\xe2\xac\xd6\xe0\x4c\x8b\xc1\x1e\x9a\x98\xd8\xc0\xae\x8c\x55\x61\xfd\x04\x0d\xb5\xec\xdc\x5a\xf1\xe0\x06\xa9\xb4\xe0\x07\x5e\x47\x69\x9c\x69\xd6\x34\x13\x70\x90\x3d\x0a\x26\x27\x10\xcf\x97\xd1\xc9\x43\xcb\xf0\x82\x76\x0d\x67\x37\x32\x54\xdf\xd8\x7c\x1f\x61\xc4\x29\xad\x5a\x02\x82\x09\x76\x08\x76\xc7\x41\xf4\x0e\xda\x0b\xca\x6e\xa7\x1b\x22\xf9\x05\xca\x8c\x71\x42\xe3\xb7\x9c\x53\xda\x39\xe7\x54\x45\x0a\x5a\xc0\xd8\x8a\x40\xf1\x39\xa1\x58\x2d\x7f\xaa\xaa\xb0\x7f\x4c\xab\x09\x89\xdd\x71\x85\x5b\x58\x35\xc9\x0e\xcd\xf0\x64\xa0\x32\xc2\xf5\x1b\xaa\xe4\x08\x31\x2b\x8c\xd9\x11\xad\x23\xf0\xb0\xe2\x8f\xe4\xd1\x70\x14\xdb\x19\x5f\x37\x41\xe1\xd9\x19\x09\x52\xa2\xd1\x50\xb5\xee\x97\x26\x33\x49\x61\x2d\xb3\xe1\x51\x12\x9f\x60\xcb\x00\x62\x8c\xf5\xbc\xc5\xd8\xcd\x67\x33\xd2\x3b\x00\xf8\x60\x13\x74\xae\xcd\xd3\x35\x0e\x6a\x94\x45\x45\xae\x88\x6a\xbf\x83\x03\x82\x6f\x1c\x67\xcc\x14\xff\x79\xb1\xd3\x23\x59\xcf\xab\x53\xec\x98\x32\x5e\x3c\xaf\x0b\x4b\xdb\x49\xca\x00\x07\xf0\xc9\x9a\xa4\xef\xbb\x0d\x9c\xff\xf6\xa0\xca\xad\x98\x83\x8e\xb7\x71\x44\x71\x7e\x81\x70\xc5\x32\xfa\xf1\xd4\x56\xf6\xf4\xd3\xed\xcc\x8e\x20\x7f\xeb\xf9\x6f\xd7\xf0\x5b\xf8\xc6\x25\x90\x71\x9a\x2e\x83\xfd\xe9\x88\x72\x2a\xe3\xe6\xd0\x09\x85\xae\x1d\x74\xca\x03\x65\xca\x68\x38\x5a\x77\x5f\xfe\x6c\xa7\xa6\x57\x9b\xe5\x8f\xa3\x60\x27\x42\x9e\xf4\x4f\x31\xc1\xef\x8d\x95\x91\xc8\xef\x07\x3e\xfa\x45\x4f\x5b\x29\xe1\xbc\xe0\x0c\xf9\x14\x10\x0e\x21\x09\x1a\x09\x3f\x45\x11\x0e\x15\xaa\x33\x58\x5e\x12\x4a\xd4\xce\x35\xa0\x52\x6e\x10\x5e\x54\x68\x67\xd5\x4e\x23\xa2\xa3\x9e\x56\x60\xf2\x34\x31\xdd\x18\x02\x2d\xc0\xaf\x1c\x51\x2a\xe0\x20\xea\xa2\x66\x73\x5b\x9b\x52\x13\xcd\xd5\x26\x82\x26\x03\xf6\xea\x5f\x2a\x5d\x9c\x7f\xd9\x00\x50\x5d\x68\x0f\x6d\x62\xe3\x98\xb7\x63\x57\xb1\xf7\xf1\xee\xd9\xa9\x6d\x9c\xc4\xa2\x47\x99\xcd\x73\x49\x01\xb0\x84\x7f\x3e\xf6\x84\xb5\x69\x4e\x09\x69\x2f\x47\x23\xcb\xd8\x3b\x56\xb1\x1f\xd7\x24\xed\x6b\x89\xed\x2b\x23\xa0\x57\x76\x54\xef\x04\xf1\xe5\xa7\x04\x19\x00\xc4\xeb\x36\x16\x9c\x33\x8d\x73\xda\x47\x75\xa9\xc2\xa6\x96\x6a\x92\x16\x75\x1f\xab\x77\x68\x94\x44\xfb\xd7\x77\xd5\xd6\xc4\x9c\x09\x71\xf2\x69\xd5\x54\x3c\xad\xf6\xa5\xc3\xcf\xb3\x23\x35\xb6\xaf\x0f\xc7\xbe\xb9\xf4\x61\xb0\x05\x99\x30\x77\xb8\xbd\xb8\x7f\x5f\xcb\x8b\x86\x8d\x3d\xea\xf4\x0e\x4a\x4b\xae\xc1\xe4\x29\x28\x9f\x82\x25\x80\x8a\xf0\x1d\x55\x9c\xfb\xc1\x58\x9b\x23\xa9\x52\xef\xf5\x40\xeb\x3d\xfd\x8f\xaa\x34\xfe\xaf\xb1\x14\x30\xf1\x4e\xe2\xac\xc0\x56\xd9\x9a\x28\xac\x06\xf3\x88\x70\x73\x0d\x33\x02\x3f\x9d\x55\x5f\xf0\x1a\xae\x02\xac\xc1\xe7\x4b\xa0\x6a\x1e\x97\x5d\x36\x2a\x31\xcd\x83\xc2\x98\x5a\xac\xd3\x94\x39\x12\x1c\x7a\x4b\x52\x07\x2a\x35\x5f\xeb\x6a\x5b\x99\xf5\xa3\xd0\xc4\xb3\x1a\xce\xa3\xc4\xcf\x7f\x8a\x79\x83\xd3\xed\xaa\xca\xf1\xff\xd5\x54\xf9\x8b\x7a\x6b\xa6\xa5\x70\xed\xc7\x78\x54\xf9\xce\x71\x8b\x96\x4a\xbb\x55\x42\xee\x93\xc0\x27\x66\x9f\xa8\x82\x15\x62\xb3\x15\xcb\x46\x45\xac\x90\x5b\x53\xcb\xf5\xf1\xf1\x92\xc9\xbb\xd4\x33\x77\x75\xe6\x03\x73\xbc\x7d\x30\xdc\x47\x18\x53\x4a\xcf\xeb\x67\x34\x3f\x30\x8b\xb6\x39\x96\xf6\x72\x9a\x59\xd3\xa7\xdc\xcd\xb1\xb0\x38\x61\xe4\x9b\xc0\xb3\x57\x38\xd5\x70\x88\x24\xac\x2f\xbe\x56\x4c\xba\xea\x4c\xcf\x73\xce\x30\x5e\xe6\x69\xf4\xba\x36\x46\x7b\x7d\xec\x0f\xd8\xff\x0d\x13\x87\x6f\x02\xff\x33\x87\xd6\x24\x3b\xbc\x1b\xe1\x75\x5a\xe6\x02\x33\xa2\xd7\x25\xa9\x03\xed\xb6\xac\x09\x14\xe8\xfc\xa2\x61\xda\x08\xf8\xd9\xb4\x94\xa2\xf3\x36\xc0\xee\xf8\x66\xf2\xa8\x03\x65\x26\x09\x2c\x47\x6a\xd0\x30\xbe\x69\x32\x0a\x1d\x99\x24\x0a\x67\x14\x37\x1b\x27\x30\x7e\xf5\x2d\x35\x39\x8f\x2b\xee\x4c\x66\x47\x16\x68\x16\xfa\x43\x8e\x56\x94\x11\xf4\xd1\xa6\x9c\xc0\xe4\x79\x39\x94\x1d\x4b\x8a\x93\xd5\x17\xf0\xb5\x0a\x1f\x86\xd1\xf2\xc0\x44\xf1\x4e\x9f\x93\xff\x44\x05\x06\x3f\xc3\xd2\x97\xd8\xac\x8a\x32\xf9\x3f\xd0\x23\x48\xfc\x46\x3f\x9d\xff\x5a\x6d\x73\x7f\xe7\x57\xfe\x5e\xcb\x27\x56\x77\xf4\x21\x7a\xc7\xad\x75\xa6\x57\xb3\x75\x3d\xc2\x8e\x4f\x55\x8d\xe2\x77\xc6\xb5\xe5\xe4\xc3\xc3\x74\x69\x29\x0a\xed\xa3\xda\x3b\xf5\x8c\xd6\x57\xc2\x7a\xc7\x2f\x7e\x53\x33\x0c\x7e\xa6\x51\x7c\xf7\x29\xa8\x46\xd4\x7f\x56\x39\x54\xfd\x11\x7e\x39\xfe\xe2\x18\xfd\x72\x01\x11\x50\xfa\x82\x29\x75\x8d\x84\x56\x59\x7c\x9c\x66\xf1\xe6\x34\xae\xfa\xe9\xa7\xdb\x4b\x99\x45\xe0\x88\xd8\x0f\x27\x0e\xbe\x68\x83\x96\x28\xea\x03\xd3\x4c\xad\x83\xf3\xed\x35\xeb\xcc\xe2\xb1\x6d\xff\x46\xa0\xe4\x51\x7e\xa3\x29\x0e\x23\xf0\x08\xc7\x51\x78\x2d\x33\x9a\x79\x33\x33\xd9\x1a\xa5\xd2\x09\xbd\x14\x25\x91\x83\x12\x20\xa6\xb9\xa5\x94\x6d\xa6\x39\x24\x73\x87\xdb\xf6\x15\x3b\x1c\xc5\x06\x54\x08\x96\xc6\xa5\x71\x17\x99\x5c\xa5\x37\x3b\xb4\xd5\xe7\xcb\x79\x8e\xd0\x08\xd2\x73\x7c\x3d\xd5\x5b\x59\xdc\xdf\xee\x45\x71\xe9\xa0\x0a\x4e\x63\xc5\xd5\x5c\x8f\xe8\x09\xfa\xdd\xa6\x45\x4d\xc2\x40\xf9\xc0\x66\x33\x08\xef\xb4\x2e\xb4\xcc\x45\x55\xcd\x9a\xfa\x91\x8b\xfb\xdb\xa6\xf7\x8d\x32\x2f\x2c\x7e\xa4\xf8\xca\x78\x37\x2e\x8d\x39\x31\xc3\x2a\x10\xa3\x81\xc7\x0c\x01\x5f\xde\x59\x53\x57\x2f\x01\x85\xfc\xbb\x53\x01\xcf\x57\xe6\xda\x03\x93\xf5\xe2\x35\xea\x17\xf0\xf4\xa4\xcc\x46\xa6\xea\x56\x8c\xd1\xdc\xe1\xf6\x52\x99\xf4\xaa\x91\x2d\x4c\x1c\xe5\x85\x64\xc9\x8d\x76\x7e\x0d\x6c\x23\x62\x95\x73\xdb\xc8\x61\xfe\x3c\xaf\xf2\x78\xb0\x4f\xf9\x59\x0c\x47\xc4\xad\x6c\x69\x42\x4c\xcb\xd9\xda\x36\x2a\x2f\x87\xe9\x70\x58\x26\x51\x0e\xe1\x60\x39\x04\x6b\x0b\x5a\xb1\xc4\x89\x7d\x03\x6c\x25\x33\xbc\xe8\xf3\x85\xed\xd5\x30\x3b\x4c\x1c\xa7\xab\xb6\x47\x91\xaf\xab\xeb\x54\x33\x05\x81\xc7\x0d\x5d\x63\xfe\xc4\x67\x42\xd9\x30\xdf\xad\xe0\x98\x4f\x75\x94\xfe\xf3\xcf\x6b\xb6\xa6\xf4\xf7\x52\x8d\xd4\xad\x8e\xea\xf0\x71\x6d\x8f\xea\x75\xa3\x04\x72\x85\x4e\x22\xb6\xdc\x69\xe2\x5d\xe6\xab\x69\xa6\xad\xbb\x2e\x28\xe1\x02\xa6\x72\x63\x33\x62\xfb\x02\x44\x85\x37\xa6\xe0\x17\x5f\xff\x7a\xdb\xae\xd9\x7e\x6c\x04\x99\x2e\xaa\x5f\x1f\x8d\x55\x1b\xe8\x23\x55\x5b\x08\xd9\x59\x55\x7c\x2d\xd1\x22\xe2\xeb\x07\x5a\x05\xbc\x12\xff\xc3\xbf\xdb\x33\x85\xa9\x5e\xbf\x12\x8a\x3e\xa9\x4b\xb3\x27\x9b\x25\xc1\x43\x43\x12\x2f\xfe\x0c\x5a\x57\x67\xd0\xba\xe2\x37\xe7\x51\x3f\x31\x31\x73\x74\x70\x3e\xdf\x53\xe6\xe6\x27\xc6\x2a\x8a\xbb\xd2\xc4\xbd\x1d\x96\xe1\xa0\xe5\x63\xdc\x0f\xd4\xce\xff\xc1\x78\x8b\x79\x1f\xe1\xf2\x9e\x7e\x9a\xba\xd2\xc2\xfd\x50\x45\x8e\xef\x8d\xd5\x4e\xfb\x3d\x1a\x22\xfe\x57\x53\xaf\x00\x76\x55\x8c\xbf\x9a\xf1\x20\x91\x1b\x4a\xa2\xfa\x28\x82\x47\xc4\xe1\xe7\x5c\xf8\x67\xfa\x36\xe9\x19\xde\xd5\x31\x73\x70\x26\xf0\xf5\xa4\xe6\x7f\x30\xb0\x19\x49\x8a\x3b\x83\xb5\x03\x07\x24\x1a\xc7\xc7\x63\x2f\xbc\x55\x33\xd2\xac\x26\x28\x0a\xb5\xa7\x15\x9a\x1b\x7d\x6d\x9c\x42\xbf\xa7\x24\x14\xc2\x34\x89\xf2\x02\x3a\xfa\x0b\x9b\xe7\x91\xea\x6f\xea\x02\xc7\x59\x65\xd9\x78\x76\xea\x25\x1c\x7e\xbe\x3d\x88\xd8\x6f\x90\x59\xc7\xaa\x0e\x7f\xb4\x09\xfe\x17\xdb\xa4\x5f\x0c\x10\x10\x89\xda\x53\xf5\x27\xce\x56\xc7\x71\x0d\x3c\x37\x2e\x34\x25\x9a\x75\x2a\x94\x65\xc0\x0a\xdf\x28\x8d\xa8\xcc\xc4\x71\x64\x7b\xbb\xd4\x4c\xbd\xa6\x78\x74\x1f\x07\x0a\xd9\x7f\x0a\x81\xa2\xa8\x98\xb6\x9c\xf3\xd8\xc7\x34\x90\xa2\x4e\xa7\x2a\xef\xdb\x3a\xde\x8c\xe7\xe9\xde\x4e\x05\x1d\x67\x38\x8d\xa8\x5f\x2a\x55\xaa\x13\xb5\xc3\xc0\xc3\x05\x36\x28\x8c\x90\xe2\x85\x2e\x4b\xac\xda\xde\x13\xd8\xd2\xb9\xf8\xa0\x61\x1e\x6c\x8f\xc9\x72\x92\x93\xda\x41\x53\xfd\x1a\x0c\xfe\x43\xa0\x4d\x3a\x4f\x28\x97\x47\xed\xeb\xf8\x32\xee\x2d\xfa\x99\xd8\x35\xa9\xa5\xe7\x35\x24\xbc\x8a\xcd\x45\x50\x64\x00\xd9\x7d\x77\xac\xb4\x26\xa1\xcf\x57\x6b\x5c\x49\xaf\x6a\x6b\x8e\xf4\xd5\x2f\xb7\xe3\xb4\x50\x9b\x3c\x8e\x52\x91\x30\xdf\xa7\x1a\xf5\x65\x52\x64\x91\xcd\x1f\xa5\x54\x16\xdd\xdb\x7f\x8f\xb2\x3d\x0b\xe4\x06\xe4\xde\x29\xbe\x37\x5e\xf3\x7e\x5d\x69\xfc\xdc\xe1\xb2\x15\xc0\x25\xf7\x03\x8f\xf6\xfe\x40\x97\x7f\xcf\xe2\x3d\xa1\x15\xc6\x35\x30\x27\xda\x59\xe5\xd5\xa8\x05\x7f\x27\x68\x29\x17\xcd\x69\xb9\xa9\x85\xb6\xb1\x59\xda\xa5\x82\x9d\x17\x71\xfe\xb1\x12\x23\xf9\x71\x43\xd7\xb2\x4d\xa5\x18\x72\x64\x44\x35\x0b\xfa\xa7\xc2\xb3\xf0\x80\x3a\x66\x6c\x3b\x1f\x19\x4d\x9b\x6d\x2a\x9e\x03\x4e\x65\x73\xda\x9d\x9c\x4c\x9a\xf7\x78\xbe\xaf\x35\x2c\x2e\x3d\x50\x0d\x3f\x2f\x7b\x3d\x9b\x40\x77\x6b\x13\x1e\xb9\x9b\xd3\xb5\xdd\xb9\xc3\xed\x7c\x60\x96\x81\xe8\x6d\x82\x21\xe8\xa5\x19\x25\xdd\x74\xb5\xe5\xe9\xf7\x1c\x15\xf0\x8d\x43\x20\x9b\xa5\xc2\x66\x43\x53\x0c\x34\xe0\x77\x43\x4d\xe2\x0d\xed\x5d\xdf\x37\x08\xbd\x1c\xdc\xf7\xc5\xfd\xae\x48\xe3\xdf\xc0\x55\x87\x30\xac\x0e\xb6\x87\x7c\xb0\x75\x07\x53\x5a\xd4\xa3\x3d\x83\xee\x09\x72\xe6\x70\xaf\xa0\x7a\x12\x94\x37\x7f\x91\x79\x2c\x68\x1c\x3e\x3c\x2d\x89\x87\x96\xdd\x69\xfc\x38\x09\x31\x9b\x10\x1c\x66\xc5\x66\x89\xaa\xc3\xfd\xae\xaa\xc3\xfd\xae\x92\x89\x20\xea\x14\xb6\x3f\x67\x7a\xe3\x77\xd0\x93\xde\xd8\xd5\xe4\x45\x6c\xe3\x68\xd9\xaa\x41\xbe\x4e\xaf\x83\xaf\xeb\x5a\x0a\x45\xc1\xa1\xa3\x78\x18\xd2\x13\xf3\x4d\xbd\xff\x53\x46\x2d\x2f\xf1\x76\x8c\x36\x0e\xbe\x76\xbc\x8f\x70\x60\xa8\x13\x9a\x45\xaf\x6e\x89\x4e\xb0\xe9\x4a\xa8\xd2\xc0\x6d\x8a\xd3\xb4\x68\x29\x0a\x30\xb2\x64\xf1\x24\x52\xe9\x84\xd8\xa9\xec\xa8\x33\x59\x16\xf7\xfb\x1a\x8e\x37\x17\x52\x91\xc7\xb7\x03\x05\x96\xbc\xad\xb4\xc7\xfa\x69\xf5\x0e\xaa\x58\x7a\xaf\x6e\xae\x6c\x8e\x3d\xb9\xee\x82\x92\xad\xd8\xc4\x4b\xa5\x1d\x77\x7e\xdf\x04\xd9\x05\x4e\xdf\x16\x1a\x22\x28\xd2\xbd\x8f\x9f\x8c\x97\x7f\x8f\x76\x29\xd1\x6e\xad\xa6\x1e\x8a\x1b\xad\x0e\x15\xcf\xd8\x1d\x9b\xc6\x54\xc5\xe3\xcf\xf1\xee\x73\x27\x50\x55\x1b\x74\xf9\xa8\x0a\xf0\xdf\xb7\x3b\x3e\xbe\x66\xc9\x5c\x4c\xc9\xab\x14\x8f\x02\x60\x53\x77\x6d\x37\xd9\xf0\xa1\xea\x87\x39\x63\x7f\x97\x67\xb0\x01\x80\x24\x65\x74\x94\x20\xb8\x3e\xa3\x50\x62\x3b\x27\xf4\x60\xd8\x4a\xb7\x4d\x7c\x0b\xe7\x09\x8d\xd8\x7e\x93\xbe\x9f\xff\x5a\x61\x5f\xcc\x68\x14\xaf\x91\xeb\xf0\x8b\xd2\x30\xbb\xaa\x14\x37\x41\x94\x13\x24\x8b\x3e\x10\x9f\x8e\xe3\x96\x0f\xb1\xcf\x52\xfd\x9d\xaf\x55\x4d\xaf\x1f\xa5\x2b\x26\x49\xa2\x1d\xd5\x2f\x04\x34\x61\x27\x88\x7c\xe2\x72\xab\xe9\xb9\x63\xaf\x9d\xcf\xf9\x24\xfb\x95\xa9\x66\x54\x94\x67\xc6\xc6\xbb\x54\x25\xf4\x2c\xc5\x61\x48\x14\x78\xcc\x9d\x37\x4c\x75\x60\x60\x60\xdf\x1a\x7b\xf1\xc9\xab\x81\xdf\x46\xb8\xcd\x26\x54\xe6\x29\x6f\xaf\xc5\xfd\xed\x61\x9a\x17\xa8\x26\xe3\x8c\x7e\x0b\x02\x77\x7c\xa3\x50\x25\x2b\x26\x81\xb5\xa9\x6a\xbd\x8a\xd8\xf0\x2d\xed\x4b\x79\xd4\x41\x3c\xaa\xac\x3d\x5d\xb3\x19\x7b\x5f\x89\xcc\x17\xe6\x3d\x42\x85\xbf\xd2\x1b\xdd\x79\x4d\x0f\xfc\xe3\x29\x05\x02\xb2\x9c\x4e\x7a\xf6\xd5\x95\xb4\xcc\xd9\x8f\xcf\x85\x22\xd5\xf7\x0b\x78\xb0\x21\x0e\x2c\x06\x76\x68\x59\x36\x91\xdb\x2d\x81\xdf\xac\xf1\x72\xc4\x8d\xc9\x73\xa7\xab\xbc\x37\x7f\xc4\xe3\x53\x7e\xfb\x35\x8c\xba\x60\xb6\xe9\x7d\xa0\x05\xf6\xae\xea\x0e\x1e\xa1\xa5\x85\x89\x75\x9d\xa2\x04\xed\xc6\x83\xd5\x7b\x47\xa9\xa9\x5f\xc5\xf0\x21\x85\x7e\x0b\xe5\x76\xfe\x0a\x2c\x6b\xd0\x1f\x4f\x6d\xb5\x08\xa7\x2c\xe3\xc0\x81\xdd\x0a\xc3\xf3\x7d\x0a\xf2\xf0\x18\x28\x61\x20\xc9\xd8\xde\x51\xc4\x90\x8b\xba\xc7\xca\x35\x45\x90\xe5\xd9\xb5\xc4\x59\x9b\x3b\x50\xc9\x0d\xad\x36\x51\x98\x65\xfb\xb0\x4a\x97\xa0\xb1\x87\xf0\xf5\x1c\x3d\x80\xb8\x8b\xa9\x06\x2c\xb2\x59\x80\x34\x2f\x2a\x81\xd4\x13\x0a\xc8\xb0\x0d\x54\x62\x16\xdc\x08\x94\x2a\xf7\x6b\x63\xcf\x94\xbc\xa4\x20\x8d\x65\x12\xbd\x82\xfa\x76\x13\xe7\xa9\x81\xff\x92\x17\x65\x2f\x72\x8e\x06\x18\xb4\x13\x81\x52\x23\x38\x31\xd6\x4e\x19\xd4\x1a\xf2\x1a\x4e\x67\xc6\x5e\xf3\xe9\x8c\x3b\xe1\x47\x26\x64\xa5\x30\x4e\xd6\xe9\x21\x24\x71\x6f\x64\xf0\x67\x26\x8a\xb3\xd4\x30\x88\x47\x30\xf5\x2d\xa7\xf5\x76\x51\x41\x5d\x56\xa2\x7e\x9a\xa5\x25\x48\xe7\xf8\xd4\x53\x88\xaf\xb0\xcf\xb0\x2a\x82\xe0\x5f\x6b\x8a\xbb\xd5\x70\x4a\x6a\xa9\x3c\x2b\x2f\x8f\x6b\xfa\xc2\x49\x8f\xe0\xb7\x22\xb9\x78\x4b\x71\x66\xa6\xfd\x09\x0f\xcc\xb5\x4d\x3f\xe3\x46\xb3\x24\x14\x38\xf4\xa5\x22\x54\x0d\x92\x54\x1e\xf4\x71\xb0\x92\x66\x48\xd5\x85\xd5\xda\x72\xee\x45\x5a\x09\x20\x4c\xb3\x59\xda\x92\x5c\x81\xc4\x0f\xd2\x39\x85\xcd\xe3\x9a\xb0\x28\x7c\x3d\xc8\xc5\xd1\xc4\x69\xd2\xcf\xa3\x9e\x85\xce\x17\x66\xfa\xa7\x34\x4e\xae\x36\x77\x70\x9e\x4f\xbf\xab\x53\x21\xae\x8b\x4f\x07\xe9\xa8\xae\x8e\x56\x7d\xb9\xa8\xa3\x6d\xdd\x5b\x0f\x1c\x68\x93\x5b\xdf\x6c\x4b\x89\xea\x57\xb3\x1e\x5f\xf3\xa7\x58\x1a\xc8\x91\x4f\xd7\x65\xf8\xfd\x01\x86\xea\x06\xa4\x4d\x9d\x07\xb0\x5a\x2f\x27\xd5\x0a\xdd\x98\xda\xf6\x9e\x69\xf7\x74\x3b\x94\x51\x83\x81\x5a\x62\xd3\xf8\x59\x74\x51\x8b\x67\x5b\xb5\x21\xa7\x5f\xca\x37\x53\xf9\x88\x8c\x4f\xb5\x59\xb6\x7c\x8f\x71\x83\x06\x95\xaf\xa7\x0a\x9e\xe4\xd6\x3c\x22\x82\x98\xf6\x0d\x65\x27\x65\x51\x28\xdf\x62\x32\xb1\xb8\xbf\xfd\xe2\xfe\xb9\xa7\x68\x0b\xc6\xb6\xf6\x38\x21\xea\x90\x9c\xcc\x90\x78\x20\xa6\xe0\x06\x4a\xf1\xc2\x9e\xf0\x8e\x07\x0f\x4d\x7c\x4f\xf5\x89\x8e\xea\x08\x5d\x42\xce\xc7\x7a\x90\xa4\x93\x8e\x8a\xfb\xb5\xb1\xd2\x55\x7f\xa2\xe3\xfd\xfc\xe1\x51\x8b\x70\x68\xd7\x44\x03\xc4\x02\x5f\xbc\xbc\x3c\x56\xa8\x76\x65\x33\xb0\xfd\x6f\x20\x52\x40\x44\xfd\x38\xb4\xac\x1c\x33\xbf\x1a\x03\xfa\x93\xd5\x7d\x13\xc2\xea\x32\x1c\x42\xf5\xc2\x06\x36\x8c\xa1\xa9\x8f\xfa\x0b\x67\x93\x7c\xa3\x4a\xaa\x36\x87\x2d\x45\x6f\x97\x6f\xe9\xfe\x05\xf6\x02\xd7\xc5\xad\x9e\x44\x54\x79\xab\x1f\x08\xfa\xcc\x15\x5a\xc7\x7c\x1d\xd4\x25\x04\x3d\xa1\xb8\xc9\xb5\x99\x70\xa2\x33\xd5\xeb\x40\x40\xfa\x04\x15\x01\x50\x29\xe0\xa1\x12\xcd\x1f\x69\x75\xd9\x84\x84\x90\x9d\xa4\x29\x84\xbb\xc5\xd3\x58\x12\x0e\x82\x7b\x26\xd6\x14\x03\x6a\x74\xe0\x0d\x41\x2a\x15\x55\xd6\x9f\xd2\x33\x23\x41\xdf\x54\xec\x0b\x53\xc4\x26\x29\x58\x9f\xd9\x21\xa9\x17\xf7\x3b\x24\xf5\x67\x14\xc1\x3a\x1c\x98\xa4\x6f\x4d\x37\xb6\x14\x05\x0a\xc5\x45\x01\xcf\xb5\xff\x65\x1c\x11\x39\xb9\xfa\x5e\xbc\xc0\x2b\x4a\xe6\xe5\xca\x14\xd3\xce\x99\xbf\x65\x69\x19\x0e\x18\x86\x57\x2b\x6a\x34\x09\x63\x8d\xe2\xb4\xe5\xe1\x33\xdf\x52\x1c\xf5\x6f\x29\x60\xda\x52\x96\xd2\xb3\x68\x47\xff\xcd\x40\x35\xc9\x37\x6b\xdb\x71\x64\xbb\xd8\x12\x1d\x81\xdd\xb5\x49\x3e\xa8\xf7\xe4\x1a\xa4\x76\xf3\x32\xeb\x93\x45\xbf\x93\xf7\xd7\xca\x92\x17\x5d\x8e\x18\x25\xbd\x28\x34\x5e\xc4\x15\x33\x1e\x94\x31\xbe\x6e\x74\xf6\xc8\xca\xea\x50\xd2\x5c\xa0\x73\xba\xfb\x79\x4e\x63\x41\x07\x65\x96\xf7\xcc\xda\x6e\xaf\xfd\x70\x83\x16\xa7\xf3\x3e\xf2\x94\x1c\x0a\x95\x37\xd1\x72\x92\xe6\x89\xa2\xc1\xff\xba\xa6\x79\xff\x7a\xa0\xb0\x01\x6a\x98\x87\xfd\xe1\x3f\xfc\xbb\xa5\xe1\x87\xc3\xb4\xde\xd0\x16\x55\x1b\xae\x0b\x10\x47\x23\x2e\xd2\x20\x4a\x04\x0c\x8d\xaf\x55\x4b\x7d\x35\xb5\x79\xb5\x60\x36\x5b\x9c\xec\x73\xb3\x49\x53\xa6\xb7\x4f\x1a\xe8\xd8\x69\xb7\x30\x51\x62\x7b\x33\x4e\x4a\xef\x61\x9e\x46\xe8\x5a\xdf\xc1\x7e\x2f\xf6\xfa\x0d\xc6\xcf\x65\x52\xa5\xfb\xa2\x44\x89\x7f\x78\x47\x39\xfc\xde\x51\x5c\x86\x5e\x94\xa7\x5d\x0b\xb3\xb1\x19\x12\x10\x91\x23\xda\xf3\x2c\xaf\xea\xce\xe1\x8f\x15\xcd\xc7\xe4\xb9\xcd\xd8\x2c\x14\x2d\x58\x06\xda\xf0\x8d\xc3\x5e\xd3\xf6\xb1\xbb\x06\x2d\xf7\xf2\xdf\xbf\xbe\x87\x55\x69\x50\x21\x85\x6b\x28\xf6\x89\x3d\xb4\x67\x20\xac\xdd\x89\x50\xd2\xd9\x3b\x1c\x98\x03\x54\xeb\xe3\x67\x69\x0b\x47\x0e\x70\xbf\x01\x3a\xf8\x72\x3b\x4c\xd3\x18\x87\x92\x23\x79\x38\x72\xd9\xf9\x06\x35\x84\x85\x76\x37\x4b\x97\xa9\x5e\x32\xe7\x80\x46\x74\x48\x09\x02\xe9\x29\xb5\xb9\xd8\x2c\x8c\x72\xda\x5b\xe8\x9f\x88\x86\x7d\xcb\x69\x7d\x5c\x54\xf8\xed\x1e\x91\xb5\x0b\xed\x69\xfb\x91\xf2\xb4\xfd\xa8\x69\x61\x66\x56\xe9\x38\x3a\xe8\x82\x63\x13\x5d\x77\x0a\x5b\x79\x5c\xf6\xfb\x51\x3e\x98\xf5\x8c\xc9\xc7\x3a\x5b\xe1\x65\x52\xaf\x45\xf2\x2d\xea\x48\x1e\x6b\xd1\xb3\xb4\xbc\x05\x8e\x2e\x7d\x17\xc5\x58\x5a\x9f\x8a\x80\xe7\x0e\xb7\xcb\xd1\x20\x8d\xf3\xc2\xb2\xf8\x3d\xd7\x8d\x69\xbd\x49\x0d\xd9\xd7\x4c\x96\x32\xfb\xcd\xd2\x26\x45\x15\x08\x55\x87\x34\x6a\x67\xc0\x4d\x63\x9b\xe5\x6c\x58\x72\x4a\xbf\x39\x17\x76\x90\xb1\xf8\x20\x7e\xc7\x7b\x81\xaf\x41\xbf\xa7\xa2\x60\xe4\xaa\xc8\x70\x05\xc7\x57\xfd\x15\x02\xa5\x9a\xd3\x83\x0e\xd0\xaa\x10\x66\x0b\x4d\x1d\xf8\x51\xbe\x6e\xac\xde\x8e\xca\x2c\x2f\xdd\x86\x28\x38\x17\x0d\x80\x91\xed\x23\x2f\x6d\x4f\xab\x6c\x5e\xd4\x65\x17\x70\xc4\xc4\x1f\x4c\x6b\x79\xa8\x52\x5e\x61\xe2\xe5\x1c\xfe\x43\x08\xe8\xa1\x66\x8f\x60\x0e\xf2\x40\xf8\xa3\x6d\x54\xda\x47\x71\x61\x43\x39\x38\xae\x2b\x89\x17\x0e\x4d\x44\xad\xe0\xb3\x6a\xf4\xba\x26\xcb\x4c\x9e\x0f\xa9\xff\x57\x85\x2c\x4d\x7e\xca\x2a\xe9\x88\xa3\xd1\xc8\x82\xb8\xee\x98\x96\x4e\xd1\x63\x06\x31\x02\x42\xb6\x9b\x94\x41\x4b\x21\x50\x9f\x5f\x99\x59\x7b\x48\x93\xce\x55\x95\x90\xfd\x09\x5c\x65\xb4\x7a\x6c\x4c\xde\x9a\x04\x2b\x36\x06\x4e\xaf\xe9\x7d\xa3\x8a\x74\x15\xf1\x23\xff\xb9\xda\x0c\xdf\x55\x8b\x33\xb3\x45\x99\x25\x90\xf9\x76\x1c\xa8\xc5\xfd\x7c\x60\xcc\x00\x09\xcd\xf6\x75\x8d\x62\x1f\xe1\xc0\x86\xcb\x2d\x27\x6f\x7a\xe2\xb7\xb0\x6c\xf8\x46\x85\x24\xd5\xfc\x8f\x32\xcb\xd2\x63\x6e\x34\x2e\x2b\xe7\xf6\x87\x3a\x0a\x8e\x7a\x02\xcb\x01\xf3\x98\x6b\x08\x5c\x27\x54\xde\x47\xbb\x26\x0f\xf3\xc3\x24\x19\xb3\xda\xc4\x18\xb6\x75\xe8\xd0\xe6\x71\x4d\xbd\xb8\xad\x8a\xa2\x5d\x13\x17\xd1\x30\xcd\xac\xce\x79\x2f\x73\x59\x87\xef\x54\x4b\x78\x35\x8a\xe3\x5f\x54\x8a\xfa\x3b\x69\xa2\x21\xcc\xb8\x4b\xe5\x2d\x34\xb1\xde\x09\x50\xdd\xe4\xdc\x15\xe7\x16\x60\x0c\x50\x72\x46\x11\xe5\x3d\x20\x00\x5d\x86\x5b\xed\x8c\x4c\x7b\xa3\x97\xb6\x79\x89\x42\x6e\x24\x1e\x68\xc5\xb1\xcb\x09\xa6\x04\xe2\x83\x4d\x70\xe0\x10\xee\x9f\x25\x91\x56\x81\xba\x54\x93\x08\x25\xe9\x8f\xc7\x5a\x1a\xe5\x0c\xd0\x8e\xae\xf2\x5e\x8d\x30\x32\x81\xab\xba\x10\x74\x0c\xe1\x34\xf6\xa5\x0d\xa5\x75\x77\x8c\x26\x07\x7e\x04\x93\xff\x84\x0b\x4a\x25\x37\xce\x3f\x51\xfe\x41\x90\xb3\xb3\x23\x7b\xf5\x37\xec\xaa\x8d\x3d\x41\x01\xcb\x91\xeb\xe7\x7c\xd3\x20\x9f\xff\x5c\x7b\x10\xf5\x07\x00\x4b\xcf\xbb\xf5\x4c\x5f\x80\xe3\xec\xcf\x70\x4e\x21\x4f\x3a\xed\x1a\x22\x89\x49\x8a\x32\x5c\xb6\xe8\xa0\xb1\xcd\x08\xa6\x83\x78\x8e\x78\x7b\xfb\x24\x1f\x45\x99\x6d\xa9\x49\x06\xfc\x22\x5f\x37\xf0\x55\xc9\xef\x81\xe6\xbd\x04\x2c\x2a\xad\x56\x91\x75\xba\x9a\x44\x09\x8c\xae\x45\xdb\xa8\x5a\xae\x52\x26\xa6\x79\x20\x55\x5f\x3f\xad\xa1\x4a\x2d\x02\x4e\xf4\xd0\xcc\xe0\x52\x62\xd7\xb7\xbd\x1b\x40\x1a\x7b\x90\x24\xba\x79\x37\x69\xd6\xf0\xb5\x76\x15\xce\xd2\x9c\x8f\x6d\x36\x2c\x0d\x94\x6e\xe4\x95\xb1\x92\xae\x34\x55\x68\xbf\x43\x8b\x60\x54\x3f\x57\x50\xe4\x34\xb5\x91\xaa\x5d\xd1\x45\xdd\xed\x1d\x5f\x20\xbc\x10\xf8\xd6\x6f\x14\xb5\xfc\xc9\xb8\x03\x9b\x23\xdf\x28\x51\xf2\xd0\xc4\x71\xbe\x0b\x13\x04\xcb\x63\x14\x28\xe8\xe7\x45\xa5\x07\xc6\x76\xa0\x08\xbc\x4e\xa8\xc1\xe3\x30\x96\xff\x9c\x1e\x9a\xff\xc2\xb7\x5d\xd2\xe1\xc8\x64\xa6\x88\x56\xa8\x32\x51\xad\x29\x2d\x6f\x09\xd6\xcb\x5d\x05\x35\x3c\x3f\xde\x92\xc7\x1f\x3a\x54\xc5\x59\x4f\x55\x1f\x8e\x2a\x11\xb4\x38\x65\x1e\xe3\x17\xa0\x33\xf1\xaf\x09\x14\x87\xe0\xe4\xf7\x30\x73\x15\x79\x46\x46\xf7\x1e\x2d\x60\x4c\x85\x13\xaa\x79\x7a\x1b\xdb\x83\xc0\xcc\xea\x38\xd8\x45\x49\x25\xfe\x29\x3d\x37\xfe\xd1\xee\x8e\xc7\x25\x6e\x9f\xd0\xba\x94\xa6\x97\x4f\x86\x67\x3a\xb4\x13\x20\x34\xb8\x8d\x9d\x00\x87\xcb\x6f\x8f\x5b\x2f\x2d\x38\xe6\x30\x8d\x0d\xfa\x3b\xa7\x35\x97\xe8\xd3\x29\xc9\xa8\x2a\x2a\xc8\x47\x36\xd4\x12\xdc\xa8\x4b\xf0\x3e\xc8\x37\x0f\xe4\x56\x95\x09\x4a\xe2\x8e\x34\x70\x03\xe3\xc3\x37\x8d\x02\x42\x26\x1c\x44\x76\x45\xbe\xce\x49\x0c\xfb\xd6\xc4\x05\x27\x45\x1c\xc6\x36\x5b\x66\x4c\x9d\xc8\xcd\x2b\xce\xc4\x59\x55\x98\x18\x46\xe4\x0e\xe5\x16\xd0\x3d\x1a\x5d\x6c\xb4\x1f\x6b\xd7\x79\x2c\x09\x6c\xc7\x33\x6e\xa3\x2b\x32\x13\x79\xc5\x39\x3c\xfe\x8e\x89\x4f\x4c\x3f\xdb\xf1\x71\xd2\x4e\x85\x60\x09\x07\x65\xdf\x44\x2d\xef\xd3\xb4\xae\x66\xe3\x7a\x03\x76\x68\xae\x6d\xba\xb9\x18\x82\x62\xb2\xfd\x23\x85\xff\xfe\x47\x2a\xca\xcb\x6c\x35\x54\xd5\x33\xcd\x3b\xbf\xf4\x3d\x93\xed\x5f\xe0\x22\xc6\x2d\x25\xf8\x3f\xeb\x7e\xc8\xc0\x8c\x46\x36\x11\x50\x21\xa2\x07\xa8\x96\xa1\x6a\xb1\x7d\xe2\xf5\x8f\x76\xec\xe9\x34\xc0\x1e\x57\x07\xe9\x68\xe4\x86\x02\xe7\x0e\x24\x2c\x71\x4d\xfd\xfb\xcd\xf7\xc6\x3e\x11\x1e\xc5\xd6\xe4\x65\x06\x14\x28\x0a\x50\xef\xd6\xb4\x86\xd4\x5c\x3a\xee\x76\xfb\x5e\x9a\x24\x36\x8e\x2d\x42\x71\x54\x53\x3f\x1e\xab\xd2\xea\xc7\x4d\x0e\xb1\xa3\x28\x34\x39\xf3\x2f\x1d\xd4\xa1\xfa\x1b\xbe\x99\x12\xd8\xa8\x8e\xa3\x7c\x14\x15\x45\xcc\xde\xd3\xd2\x6f\xf1\x7d\x98\x7b\xb4\x43\xb3\x7b\x88\xea\x8b\x15\xe9\xaa\x8d\x73\x05\xef\xbb\xa8\xe1\x7d\x17\x15\xb5\xb1\x30\xa5\x88\xb5\xb0\x95\x90\xb2\x5b\x3f\x3d\x96\x80\x67\x94\x19\xbc\x4c\xc4\x6a\x37\x18\x40\x8f\x3c\xfb\x28\xed\x39\x62\x76\xec\xa7\x01\xf1\x6e\xd3\x0c\x24\x7e\x99\x58\x9a\xe8\xd7\x60\x6d\x54\x64\x11\x87\x78\x18\x4a\x70\x3a\xf8\xba\x89\x1d\xeb\x75\xe3\xfc\x46\x74\x07\x25\x48\xbe\x51\xee\x57\x03\x1b\x47\x61\x3a\x22\xf5\x5a\x3d\xdb\xd5\x03\xaa\x5c\xe8\xd5\xd4\x2b\x6a\x49\x97\xa1\xda\x05\xa5\xfb\xb0\xf5\xa0\x5e\xdc\xdf\xce\xcb\x70\x80\x70\x1e\x0d\xc5\xf7\x14\x4c\xe4\xbd\x26\x1f\x6e\xfb\xca\xc8\x90\xbb\x2a\xcd\x7a\xec\xaf\x7f\x4a\xb3\x9e\xaf\x6b\xed\xe1\x9e\x29\xb4\xbc\x39\x7d\xb8\xec\x43\x0d\x83\x19\xc6\x69\x89\xb6\x9f\x94\xc8\x6a\x3a\x4b\xba\x5e\xd6\x4b\x87\x8f\x78\xb4\x30\xc3\xeb\xc1\x14\xb8\x8a\xde\x89\x03\x48\xb9\xf2\xdb\xbb\x81\xdf\x90\xae\xd1\x1c\x70\x2a\x07\x07\x0e\xc8\xbf\x19\x2b\x59\xc6\x33\x4a\x09\x73\x67\xc7\xb7\xb7\x6e\x62\x6f\x94\x43\xd4\x57\x21\xe3\x34\x34\x10\x05\x59\x94\x2f\xc2\xe6\xc1\xd7\x4a\x05\x6d\x94\xc6\x6b\xa3\x2c\x1d\xad\xc5\x36\x61\x28\x86\x8a\xc3\xbc\xf7\x9b\xe2\x9e\xc7\x29\x1d\x1e\xbe\x06\x52\xcf\x29\xb5\x3d\x51\x96\xa6\x40\xcb\x62\x27\xd9\x18\x2b\xef\xb2\x8d\x29\xe6\xf4\xc1\xf9\x76\x9a\xc4\x6b\xb3\x34\x11\x10\xa6\x71\x7e\xc5\x04\x35\xe5\x09\x72\x23\xf0\xf6\xe7\x6f\x07\x4a\x87\xc2\x0c\x47\x96\xcd\x03\x9e\xab\x51\x1b\xf9\x7a\x6a\x31\x1c\x98\x6b\xe7\x21\xf1\xab\xeb\xd3\xe9\x98\x9a\x4e\xd3\x2e\x56\x73\x87\x89\xb7\x51\x44\x43\xab\x46\xe2\x9c\x1a\x89\x73\xae\x3f\x1d\x89\x27\x2b\x21\x97\x94\xae\xb7\x84\x95\x0c\x0a\xc5\x52\xd2\x20\xa0\xa8\xbf\x36\xa3\x2a\xfe\x0f\x75\xfc\xaa\x06\x6e\x08\x8f\x77\x73\xfc\xa8\x7b\x3d\x3d\xb8\x82\xbd\xa0\x2d\x35\xe7\x5c\xd7\x52\x82\xab\x28\xcb\x6c\x3e\x4a\x93\x3c\x12\xae\x9d\x13\x7b\xf0\x94\x36\xc4\xcb\x68\xd1\x6f\x36\xec\xb3\x0b\x6d\x9b\xf4\xe3\x28\x1f\xb4\x94\x28\xfc\xcf\x69\x08\xa4\x49\xb8\xb5\x2a\x4d\x4d\xc9\x51\x96\x0e\xd3\x6a\x7e\xb2\x73\x9c\x53\xed\xf1\x0a\x3e\xba\x64\x69\xa2\x02\xef\x05\x65\x56\xae\x34\xf2\x4d\x43\x65\x6d\xbe\x5d\x18\x94\xc9\x16\x20\xa2\xfc\xc2\xe6\x25\xd5\x6c\x8f\x53\x93\xe4\x0f\xd1\x67\x60\x4a\x6c\xe2\x37\xf3\x8d\xda\xd4\x2e\xd5\xc2\x88\xc0\xdb\x69\x5d\x54\xb5\x8a\x87\x3a\x0a\x07\xff\x47\x81\x87\x80\x3c\x32\x51\xca\x95\xcd\x88\xb6\x2a\xdd\x2e\x22\xcb\xb8\x05\xb1\x32\xd5\xe6\x21\x37\x03\x45\xd7\xbe\xa8\x9f\xe7\xe6\xf4\x44\x3e\xd0\xb6\x71\x44\x1a\x30\x78\xa5\xd8\xc8\x51\xbe\xc1\xc1\x77\x47\xe9\x67\xbd\xd3\xa4\xa6\x18\xae\x85\x71\x14\xf2\x7b\x41\x1e\x8d\x36\x13\x5f\x37\xea\xec\x3f\xbb\xfa\xac\xd2\x37\xe3\x99\xcd\x37\xca\x8c\x3c\x1c\x98\x28\x9b\x51\x94\x33\x5d\x86\xa3\xb0\x57\x3e\x60\x9f\x86\xf2\x86\x25\x99\x81\x54\xfb\x27\x3b\x76\x51\xe2\x25\xee\x5d\x1e\x87\x37\xb2\x89\x89\x0b\x72\xf7\xf1\x52\x06\xad\xba\xac\xc1\x9c\xdc\x04\x4a\xa7\xec\x62\xf0\xb7\x1a\x62\x08\x12\x84\x25\x81\xa5\x7e\x44\x23\xea\x20\xd9\x6f\x2a\x79\xc9\x2b\xca\x0b\xec\x7c\x53\xfb\x71\xc9\x12\x39\xae\x26\x9f\x79\x31\xf0\xad\xb7\x9b\x4d\x53\xe3\x85\x76\xbc\x36\xaa\x36\xd0\x1e\x96\x16\xbb\xa6\xe1\xcf\xc4\x42\xad\xc9\xb7\x2c\x5d\x5a\xb2\x56\x9b\x66\x01\x71\x26\xd5\xa1\xcf\x69\x85\xc4\x5e\x94\xae\x98\xbc\xca\x05\x58\xe7\x9c\xb7\x5c\x65\x0d\x7a\xce\x19\x7e\x8d\x6c\xb6\x94\x66\x43\xa7\xf0\x87\x5d\x81\xa1\x47\x7c\x13\x68\xaa\x57\x98\xae\xd0\x8e\x5a\x0d\x1b\x26\xdf\x7d\x85\x84\xb9\xef\xd0\xe3\x2b\x51\x96\x7e\xb3\x44\x8b\x51\x79\x7e\x3a\x03\xd0\xc0\x0b\x2d\xe6\x65\xb2\x86\x6f\x77\xd6\x9e\xba\x59\xf8\x90\xc4\x99\x25\x4d\x32\xc0\x2c\xde\xd7\xde\x74\xac\x84\x20\xed\x9a\xad\xc0\x1f\x52\xc4\x34\x61\x16\x2d\x45\xa1\x8b\x87\xd9\x1d\x92\x9e\xdd\xe9\x6b\x1d\x3a\xc4\x19\xc9\xd1\xb1\xf6\xbd\x8f\xe3\xc8\x0c\x1f\xf1\xf5\xcd\xb3\xbc\x96\x19\x8a\x13\x78\xe9\xc6\xdb\x9a\xcd\x72\x4b\x8b\x53\x7e\x40\xb3\x9b\xff\x95\x3a\x4e\x7e\xa6\x6c\xe1\xce\x62\x22\x48\xe8\xa8\x1c\xb2\xd9\x8a\x46\x50\xeb\x4d\xb6\xba\x4b\x26\x1b\xf2\x4b\x44\x2e\xca\x9f\xc6\x37\xaa\xa6\xdb\x8f\x4c\x52\x3c\xa4\x64\x8e\x3e\xa1\x54\x0a\x5b\xb4\xe6\xe1\xde\xc5\xd2\x42\x58\xdb\xa2\x08\x85\xd9\xc8\x13\x6d\xdf\x42\x63\x28\x3b\x28\x65\xcc\xda\x10\x5e\xf2\xbd\x3d\xca\x32\x74\x25\x2a\x6c\x4e\x4b\x1f\xf5\x3e\x9e\x1a\x7c\xd3\x28\xb1\x91\xaf\x46\x45\x38\x10\xa0\x26\x36\xce\x73\x7a\x17\x3d\xf7\x40\xe4\x45\x16\xe5\x21\xd6\x9b\x40\xc4\x15\x5c\xdc\x75\x90\x57\xd2\x82\x0b\xca\xac\x11\x81\x1f\x4f\x21\x4a\xf9\x54\xc7\x57\x69\xb9\x88\x8e\xdf\xf5\xe8\x44\x93\x74\xbb\x45\x6c\x8b\x35\xfa\x61\x8e\x71\xb9\xe0\x6f\x5c\x53\x73\x64\x32\x9b\x14\x03\x11\x69\x67\x48\x1c\x8e\x01\xc1\xc7\x29\xb5\xb8\x28\x1f\x95\x85\xe9\xa1\x85\x2b\xfe\x9b\xf4\x8f\xc5\xa0\xcf\xc7\x09\xc3\xfc\xd9\xd9\xd6\x4b\x0b\x6e\x13\xc2\x4c\x75\xbe\x5a\x5f\x7a\x89\x37\xb8\xbb\x18\x72\x8c\xdd\x63\x9d\x2d\x84\xee\xf9\xf9\xf6\xe2\x02\xd5\x9f\x98\x2a\x8d\x91\x66\xec\x4b\xa0\xfc\x51\x00\x84\xc1\x9b\x3b\x86\x29\x2b\x45\xe4\x07\x15\x1b\xf2\xa8\x27\xd9\xa2\xd4\xaa\x75\xe1\x5a\x6d\xfd\x76\x85\xa9\xff\x4e\xf1\x12\xaa\x57\x7c\xad\x52\xbc\x7c\x90\x91\x07\xad\x5b\x63\x17\x30\x13\x05\xb5\xf2\x94\x6a\x23\x16\x69\x12\xe5\x03\x01\x76\x3a\xdc\x93\x7b\x11\x8c\xa7\xc3\x34\x98\x26\xdb\xcd\x1d\xae\x22\x3f\xb2\xd5\x9e\xa9\x01\x6f\xaa\x74\x1a\x71\x86\x1c\xf9\x52\xff\xc8\x47\xd6\x2c\xb3\x1c\x14\x42\x3e\xf8\xd0\x39\xc5\x8f\xea\xfb\x20\x86\x3a\x33\x69\xe8\xb1\x3a\xef\xac\x59\xbf\x87\xdf\x0c\x94\x16\xcc\xa6\xc6\x7e\xe1\xe3\x50\x6b\xba\xa1\x46\x73\x39\x49\xc3\x65\x8e\xf0\xa5\x1d\xa9\x5a\x93\x7a\x34\x43\x62\xdc\x61\xee\xa0\x41\xc0\xe0\x4a\xbe\x99\x1a\x94\x67\xda\x6c\xfe\x22\xc1\xb6\xab\xa2\xa8\x64\xd7\x07\xc0\xfd\x48\xda\xdf\xd8\x75\xce\x68\xed\xa5\x33\xca\xc2\x6a\xc5\xb2\x34\xa1\x22\xcf\xca\x1a\x39\xa3\x60\x2a\x99\x1d\xda\x61\xd7\x0a\x09\x15\x63\x09\x21\x3e\xbe\x1e\x6f\x25\x26\xca\x74\xec\x46\x69\x9c\x12\xbb\xbe\xa5\x0a\x10\x10\x3f\xe6\xeb\x29\x5a\xd5\xdc\x61\xc1\x76\xbb\x03\x05\x75\x4e\xe0\x4e\x68\x35\xf4\x9f\xec\x78\x7d\x82\xd9\x89\x26\x8d\xb0\x7d\xfb\xac\xe7\x39\x61\x5e\xf3\xb5\x56\x5d\xe1\x7c\x4d\x52\xdc\xad\xe3\x5e\x9d\x6d\x5d\x93\x2c\xbb\xc7\x60\x1b\x0a\xfa\x38\x9c\x3c\x47\x95\xc6\xf4\x5b\x4a\x7c\xca\x84\xd4\x15\x7a\xa8\xfa\xaf\x38\x72\xae\x2a\x5d\xfa\x4f\x75\x33\xe9\x16\x1d\x10\xc2\x18\x04\xef\xea\x38\xea\xa1\xe8\xb8\xbd\x1d\xa8\x48\xfe\x32\xa9\xcc\x89\xea\x65\xf5\x1b\xd1\x01\xb9\x3c\x95\x19\xbe\x54\x1d\x5b\x30\x98\x52\x31\xbd\xcf\xfa\xe2\x72\xd9\xe4\x39\xeb\x83\xb1\xa7\x9a\x6a\x0e\x9c\x70\xd1\x46\x1c\x85\x36\xc9\xad\xea\x07\x5e\x55\xb6\x89\x97\xc7\x7a\xf7\xa7\xdf\x82\x8d\xf3\x9c\xaa\xce\x13\x6a\xe0\x33\x1e\xb0\x73\x95\x62\x7e\x54\xf3\x98\xd1\x03\x50\xed\x2c\x5a\x65\x4c\xd6\x02\xf4\x1c\x0d\x35\x2e\x0d\x38\x63\xdb\x43\x87\x16\xb9\xff\xd5\xc2\x81\x89\xae\xc2\x69\x2e\x17\x61\xe7\x39\x47\xfd\x26\xb1\x30\xa0\xa5\x8b\xf2\x40\xab\xd3\x3a\x70\xc0\xf1\xb6\x5b\x5f\xfc\x9a\xc3\xb5\xf9\x0a\x35\xf0\x4a\x4c\xdc\x22\xe8\x2c\x3b\x3d\xea\x38\x64\x86\xd4\x65\xb0\x72\xd1\x87\xc7\xae\x78\x13\xf3\x0c\x80\xfa\x4f\xf1\x3a\x11\xf1\x6e\x9b\x72\xde\xa9\x82\xd0\xa8\x6f\x32\x5b\xb0\x4e\x9e\x68\x15\x56\xcf\x22\x22\x86\x5b\x57\xc9\xe2\xfe\x6a\x57\xe8\x67\xd6\xf3\x3f\x99\x55\x10\x28\x65\x91\xe3\xae\xb4\x20\xdb\xea\x6e\xa2\x4c\x89\xe6\x2c\x3d\xa4\x23\x72\xfc\x9a\x17\x0d\x72\xd4\x82\xff\xe9\xb1\x49\x7d\x23\x7e\x91\x3d\xd2\x7f\x13\xee\x7a\x88\xae\xb6\xd3\x78\x4a\x7c\xb7\x2f\x52\x4d\x99\xb0\xa4\xc2\x1c\xbd\x23\x46\x00\xea\x01\xdc\x68\xa8\xff\x3e\xd7\xee\xda\x30\x1d\x32\x77\x14\x8f\x04\xf1\x20\xbe\x6e\x4a\xa9\xca\x67\x93\x67\x5b\x1e\x2b\xce\x29\x95\x77\xc7\x76\xc9\xbe\xad\xa2\x11\xb4\x8a\xd8\xba\x3c\xf0\x10\x38\x5d\x94\x0b\xd3\xb8\x1c\x26\x78\x08\xc4\x69\xef\x04\x2a\x68\x7b\x47\x59\x96\x77\xc9\xf8\xa8\x9a\xad\x6e\xbe\xf8\xb9\xe3\xde\x41\x6c\x7a\x3d\x5f\x32\xc1\x92\xff\x93\xb1\xe7\x1a\xfe\x89\x2a\xca\x88\xf1\x2a\x91\xc2\x30\xd1\x6f\x06\x9e\xcd\x80\xba\x0e\x66\xd4\x69\x95\x4f\x9d\x56\x28\xe8\x4f\x1b\xda\x8e\x73\xd5\x07\x77\x6d\xd6\x52\x6b\xe6\xf8\xd8\xc3\xd7\x8e\x2b\x3d\xc3\xa1\x8d\x4d\x12\x0e\xd2\x78\xad\xa5\xa0\x68\xeb\x41\x8d\x4e\xe8\xc7\x20\x2f\xec\xe8\x21\x45\xbf\xba\x8d\x89\x88\x30\xf8\xe6\xd8\x27\x35\xdf\xc3\xea\xe5\x92\x1f\xfa\x74\x52\xff\xf3\xcc\x7e\xf4\x0a\xc5\x52\x9b\xbe\x13\xa3\xb4\xa9\x0c\xbb\x4f\x3e\x30\x10\xea\x9a\xcc\x82\xb0\xc6\xd5\xa3\x53\xd8\x74\xf9\x66\x6a\x3d\x1d\x98\x6b\x0f\xcb\xb8\x88\xf2\x42\xd4\x2a\x9b\x28\xee\x0d\xf3\xce\x9a\x2c\x01\x54\x0f\x8f\xb7\x11\x28\x5b\xba\x53\x63\x4d\xcb\x78\x4c\x4d\xad\x72\x84\x72\x1b\xe2\x8a\xeb\x2a\xc6\xb8\x3e\x75\x10\xbd\x34\x77\x98\x6d\x5d\xb9\xcf\x23\xb2\x90\x8a\x62\x78\x4e\xf5\x79\xba\x26\x8f\x42\x80\xb4\x30\xae\x1f\x8d\x55\x45\x6c\x63\xac\x4d\xef\xd9\x54\x53\x5b\x76\x38\x8a\x82\x97\x01\x09\x14\x34\x1c\x8c\x0c\x09\x44\x7d\x7d\x7f\x50\xf6\xf2\x34\xd1\x06\xe0\x27\xe9\x15\x22\x42\xb9\x82\x61\xc1\x9f\x7d\xd4\x40\x81\x5b\x6c\xaf\x44\x2b\x11\xfa\x64\xf8\x22\xf4\x47\xf8\x7a\x6a\x2e\x1f\x98\x6b\xe7\xab\xb6\x17\xe5\x83\x96\x7f\x43\xc7\x14\xbe\xf7\x58\x4d\xf6\x38\x2f\xa2\x82\xb8\xc3\x3b\x3c\xec\x80\x81\xb9\xb8\x39\x1e\x68\xec\x1a\x87\x06\xc2\x8e\xf7\x02\x11\xf7\x95\x3a\x74\x5c\x86\x68\xb6\xb6\x68\x0e\xb3\xd3\x39\x9a\x8e\x62\x7b\xee\x08\x37\xc9\x40\x9b\xce\xe0\x28\x01\xa7\x9a\xaf\x15\x1b\x3b\x0d\xa5\x82\xe3\xd8\x6c\x47\x69\x2c\xf9\x1a\x2c\x0b\xa1\xee\x65\xbf\xa0\x98\x28\x20\x19\x48\xf7\x54\xe1\x62\xb9\x65\x2a\x8b\xa1\x3a\xcf\x38\xe8\x08\x74\xb4\x78\xa2\x6e\x2f\x0d\xdc\x87\x23\x9e\x3b\x34\xda\x69\x3a\x59\xf1\x01\x27\x69\x92\xa3\x67\x0e\xd8\x12\x66\xcd\x65\x8c\x04\x77\x6e\x74\xfd\xe6\xaa\x52\xdf\x78\x9f\x12\x27\x36\x25\xc0\xa8\x03\xfc\xc9\x6c\x1b\x27\x2d\xf9\xc5\xaf\x71\x1d\x9b\xbb\xc5\xd8\x5d\xbf\x8f\xfa\x04\xfe\xfe\x6d\x82\x96\x22\x80\xb9\x4c\xad\x01\xc9\x6c\x94\x62\xff\xb4\x7c\xf2\x8b\xfb\x5f\x6e\xc7\xe9\xea\x8c\x0f\xa7\xfe\x30\x98\xaa\xe9\xe2\x28\xbf\x50\x6b\x92\xac\x84\x29\x88\xdf\xce\x7b\xc8\x95\x00\x99\x66\xcb\x37\x9a\x66\xbb\xae\x8a\x83\xeb\x1a\x1b\xb6\xee\xd5\x98\x49\xd3\x0d\x59\xbc\x82\x59\x3a\xcc\x65\xed\x21\xa2\x6c\x99\xe3\x7d\x67\x71\x51\xbd\x75\xbe\x71\xd5\xa8\xbc\xcc\x46\x59\x94\xbb\x60\x16\xf5\xad\xbf\x39\x71\xc8\xd2\x3f\xfe\x7c\xc7\x17\x94\x7c\x4f\x62\x64\xb3\x72\x25\x62\xa0\x1e\x8a\x0f\xf7\xb5\xe0\xcf\xfd\x06\xc5\xb4\xe7\xda\xb1\x21\xbf\xfd\xea\x05\x62\x35\x6e\x27\x6c\xa7\xf2\x9d\x9e\x77\x34\xc6\x07\x6d\xe1\x85\x89\x46\x36\x9a\xa9\x06\xc1\x31\x1e\x15\x32\x59\x75\x7c\xaf\xb9\xac\xa6\xbb\x36\x32\x79\x4e\x59\x8d\x03\x4c\x39\x09\x83\x75\xef\x60\xda\xcd\xcc\x30\x4f\xc5\x1f\x40\x36\x36\xfa\x48\x81\x7a\xca\xcb\xf8\xfc\xdc\xc1\xe7\x0e\x1e\x7e\xe1\xb1\x2a\x3c\xc2\xec\x78\x02\x8c\x2d\x94\xa8\xce\xe8\xbf\x7a\x04\x7e\x75\x92\xc9\x69\x41\xbf\x6d\x13\x3f\x80\xbb\x27\x0e\xe3\x3c\xfc\x05\x34\x9b\xb1\x51\xdf\xc1\xc8\xe0\x1d\xdc\x21\x48\x0d\xa0\x47\xbf\xd2\xf1\x4d\x44\xd8\x6e\x0b\x62\x8b\xe6\x05\x02\xe6\x5b\x4d\xcd\xe0\x61\x99\xbb\xea\x34\xd6\xee\x84\x26\x20\x5f\x37\xc6\x08\x43\x13\x31\xdb\x9b\x6b\x64\x1f\x2b\x4d\x9f\x8f\xa7\x28\xfd\x8b\xfb\xdb\x59\x99\x40\x8d\xd1\xe1\x72\x5f\x94\x83\xf7\x36\xea\xc6\x38\x55\xd8\x82\x98\xff\x8b\xd6\x58\x3a\xa5\x8e\xc7\x41\xd4\x1f\x3c\xe2\xfb\xcd\x6f\x06\xaa\xf6\x40\xa9\x03\xa2\xdb\xb7\xc6\x0a\x36\xf2\xdd\x29\xf2\x0d\x4f\x1a\x6c\x3c\xd8\x2d\xce\x60\x7c\xc5\x23\x5e\xc9\x27\x5c\xc2\x7a\x15\x58\x4c\x4d\x65\x70\xaa\xe8\x3f\xd7\xb6\xaf\x98\x61\x94\x88\x0c\xb5\xb8\x35\xd1\x5f\xa1\x28\x78\x54\x3b\x40\x78\xe5\x99\xbe\xed\xcd\x78\x48\xcf\x25\x0c\x00\x66\x27\xf7\x54\xf0\xa0\xbb\x3a\xd3\xab\xaa\x9d\x0f\x4c\xb7\x0b\x7a\x3d\x87\x17\x0a\xb2\x7e\x4a\x35\x33\x47\x59\x3a\x4a\x73\xcb\xd2\xe4\xde\x6e\x69\xbe\xa6\x64\x21\x90\xf8\x1f\xa8\x5c\xbf\x18\x64\x24\xe5\x96\x2b\x4f\xa4\x4f\x14\x4e\xe1\x13\x57\xd3\x1b\x99\xbc\x30\x33\xaa\x9a\x7c\x4a\x81\x6b\x51\x85\x05\x06\xe0\x9c\x2a\x8f\x7e\x23\x5d\xe6\xe2\xa4\x83\xa3\x1d\xf4\x70\xb4\xc7\x3d\xd0\x24\xc9\x23\xf4\x9f\x9d\xa5\x95\xb7\xb7\xd2\xce\xb2\x36\x8e\xa3\xbe\x65\xe1\x11\x11\x25\x6c\x39\x8b\x85\x56\x67\x6b\xc1\x7a\xee\x30\xe1\xe2\xd2\x98\x1d\x69\x3d\x16\xea\x47\x98\x9a\x7c\xa3\xba\x69\x79\xd4\x4f\x66\x95\xe5\xf3\x09\xf5\x6a\x7f\x4c\xc7\x2d\x5f\x63\xa6\x09\xbc\x78\xaa\x9c\xb0\xb8\xd0\xfe\xfc\x97\xff\xc1\xc2\x97\xbf\x38\xbf\x53\x51\x07\x8e\xaa\x5c\x8b\xe7\x03\x8e\xb9\xb3\x90\xe8\xc5\xec\x9e\x81\xef\x3e\x67\xac\xf4\xa5\x28\x08\x4c\xc7\xa4\xc4\x13\x33\x3d\x2a\xe8\x0b\x2f\x8d\x5e\x13\x7a\xc8\x1f\x2a\x7d\xbd\x1b\x8d\x72\xf8\xa6\x74\x29\x25\x62\x82\xff\x17\x13\x9b\x6f\x9a\x24\x6e\xa3\xe1\x28\xcd\xa9\x31\xaa\x42\x67\xa0\x76\xf9\x7a\x6a\x6b\xaa\x22\xbe\x6e\x6a\x5d\x44\x04\xa0\xda\xf7\x31\x31\xf9\x46\x75\xc2\xf2\xa1\x89\xe3\xc7\x7c\xec\x76\x17\x71\x8a\xa8\x9b\x55\x3b\xa5\x68\xf7\x53\x1e\x26\x72\x9e\xd5\xfc\x12\xc9\x4f\xc5\x51\xf9\x3f\x69\x83\x42\x34\x02\x68\x30\x42\xab\x99\x8e\xf2\x44\x3b\x8f\xfc\x58\x24\x23\x5b\xce\x6f\x64\x27\xb9\x9d\x02\xa7\x7c\x13\xef\x8c\x05\xe7\xa7\xea\xeb\x0b\xcf\xbf\xd0\x0e\xcb\xb8\x80\x0f\xc8\xa1\x43\xce\x00\x4e\xa5\xa7\xc7\x14\x24\x37\x1f\x94\x89\x12\x53\x5b\xd7\xc6\x3c\xeb\xc1\x93\x1a\x51\xc8\x0e\x04\x8f\x55\xcf\x82\x82\xf1\x4d\x25\x8c\xf1\x3a\xe1\x77\x11\xf2\x6c\x62\x0b\x46\xe7\xfc\x36\x8d\x09\xff\x81\x56\x9c\xda\x08\xb4\xd2\xcc\x05\x0d\x28\x67\x50\x22\x3e\xed\x0a\x05\x8f\xfc\x37\x63\x6f\xc2\x73\x53\xdb\x85\x5e\xa2\x7d\x5a\x94\xf8\x14\x50\xb3\x8c\x63\x26\x7b\x23\x63\x45\x9e\xa1\x95\xdd\x64\x0f\x9e\xc6\xe7\x7b\x08\xce\x8c\xaf\xc1\x01\x99\xc9\x74\x4d\x0c\x17\xce\x9a\x1b\x5b\xa5\x9f\xaa\x5f\xd7\x3e\x38\xff\xb0\x8e\x96\xce\x28\xd5\x4d\x76\x9b\x05\x20\xee\xaf\x02\x25\x04\x85\xc8\x03\xe3\xf7\x17\x63\xd5\x4c\x7f\x37\x50\x9b\x36\xa4\xaf\x25\x9d\xa0\x05\xc4\xe0\x3a\x6d\x4b\xb5\xbd\xe3\xdb\x35\x45\xb5\x6a\x92\x3e\x51\xdf\xdc\x0b\x5f\xf0\x37\x4a\xf2\x72\x29\x62\x44\x8e\xf3\x14\x57\x86\xe7\x0d\xb4\xfa\x95\xc8\x26\xa2\x64\xa9\xe4\xe7\xbc\x8f\x4f\x83\x77\x4f\x91\x8e\x76\xf8\xa2\xf2\x2d\xb5\x39\xc3\x45\x0a\x3f\x93\x13\x7b\x77\x86\x57\xcf\x2b\xc3\xe4\x3b\x8f\x4b\x26\xb4\x3b\x95\xe4\x02\x2a\x16\x52\xda\x52\x1c\x69\x6e\x88\x8a\xc5\xb4\xa7\x13\x7d\xf6\x42\xa0\x15\xa7\x8f\x35\x6c\x21\xed\x70\x8d\x74\x85\x81\xf8\xc0\x12\xbe\xa2\xea\x66\x67\xc6\xbe\x6a\xf9\xb6\x42\xe3\xe5\x85\x71\x4e\x99\x2f\xf3\x3c\x6a\x75\x48\xdd\x88\x6f\x26\x7e\xca\xae\x19\xea\xa8\x39\xa9\xe2\x8b\x8a\x71\xa2\xbd\x04\x13\x93\x17\x08\x9a\x9a\x0a\x78\xbe\xd1\xdb\x5f\xcb\x8c\x53\xb1\x9a\xe7\xbc\xed\xba\xee\x4f\xd6\xb5\x59\x2c\xb2\x6a\x41\x2a\x9e\xd3\x01\x0d\xa7\x3f\x92\x24\x34\xf4\x37\x86\x51\xaf\x17\xdb\x21\x5b\xc2\x8a\x77\x12\x8d\x97\x94\x91\x7d\xc9\x27\x4a\x20\x68\x56\x05\x7f\xca\xc2\xda\x83\x70\xdf\x51\x7a\x29\xa3\xcc\x0e\x23\x9b\xb9\x61\xe4\x63\x0b\xaf\x53\xce\xb0\xad\xa7\xd3\x81\x03\xed\x81\x89\x97\xc8\xf3\x46\xc8\x1d\xd4\xc7\x43\x00\xfd\x53\xa5\xf0\x7e\x9f\xc6\x4f\x20\x64\x7e\xfc\x7a\x51\x1e\xc6\x69\x6e\x7b\xbb\x5b\x8e\x7f\x7b\x53\xab\xe0\xc0\x33\x59\x06\xc8\xb3\xbc\x8f\xa2\xd4\xcc\xff\x41\x15\xde\x8e\x06\x5e\xe4\xeb\x66\xa0\xc4\x75\xd6\xa7\x9a\x31\xce\x3a\x3f\x02\x94\x51\x74\xab\x68\x40\x45\xd0\xaa\x01\x3c\x98\xd9\x21\xd0\xb3\x38\xed\x50\xc7\xbe\x42\xcf\xc0\xd7\x53\x8d\x90\xc5\xfd\xed\xae\x09\x97\xfb\x59\x2a\xf4\x6d\x69\x66\xb6\x9c\x29\xee\x34\x18\xaf\x5a\xc6\xab\x51\x08\x38\x0b\x9b\x21\x62\x84\x81\x7d\x06\xf8\x16\xf5\xf1\x1d\xca\xc1\x70\x25\x5d\x33\x7d\xfb\x40\x2b\xcc\x86\x4e\x5d\x96\xa6\xc3\xa1\x29\x18\x3b\x21\xac\x61\x3f\xdc\xeb\xb5\x34\x75\xd9\xae\x91\x61\x86\xe2\xd3\xca\x24\xe6\x7e\xa2\x43\x9e\x1d\xf4\xc8\x33\x15\x51\xff\xbb\x40\x35\xb2\xef\x35\xf8\xdf\xbe\xd0\x1e\x42\x11\x08\xeb\x4a\xc1\xe9\xe7\x1c\x52\x5e\x0b\xba\xc4\x26\xe9\xed\xe0\x86\x8b\x66\x92\x83\x23\x81\x72\x8f\x76\xb3\x64\x4d\x6b\x74\xe3\x6f\xbb\x86\xf3\x4a\xd4\xb3\x69\x61\x46\xac\x8c\x89\xe2\x27\xe7\xeb\x7c\xa3\xea\xba\x40\x84\x88\x6e\x00\x42\xb2\xf3\x8a\xa2\x09\x48\x17\xce\xa6\x7f\xae\x88\xad\x2b\x26\x0c\x23\x81\x1b\xba\xaa\x5c\xf5\x1d\xa2\xd4\x3b\x7d\x5c\xbe\x5c\x2d\x15\x12\x84\xd0\x65\x43\x86\x80\x88\xbc\x8a\x47\xdc\x45\x45\xe4\x21\xee\x80\x09\x9e\xc1\x5e\xc3\x37\xe3\x47\xdd\xe8\x95\xf9\x2b\xbb\x55\x04\x73\x53\x71\x28\x4e\x62\x2c\x05\x76\xa1\x92\x48\x0d\xc7\xc0\x2b\x47\x93\x16\x05\x68\xfe\x24\x7a\xfd\xa8\x84\xde\xd3\x48\x28\x43\xce\x00\x55\x10\x8c\xcc\xf5\xc8\xd8\x67\xb1\x47\xd4\x39\xf9\x8d\x32\xb1\x8f\xd0\x87\x8b\xf8\x44\xf5\x04\x58\x2d\xd7\xc7\xaa\x83\x79\x32\x50\x6b\x76\x03\xd3\x04\x13\x97\xa5\x8d\x30\xb0\xe7\x14\x12\xf2\xf7\x02\x55\xb9\x07\xac\x14\x4a\x56\xb7\xa9\x1c\xc6\xd6\x81\x7c\x6a\x89\x7f\xbb\xef\xcc\x76\x63\xbb\x97\xde\x1f\x9a\x50\xbb\xd1\xb8\x42\x18\x74\x0d\xc5\x32\x27\xfc\xe2\x3d\x96\x4f\xd1\x82\x15\xb5\xb3\xea\x7b\x90\x61\x7c\x44\x63\x4e\x8f\xff\x2f\xf6\x74\x94\xa6\xd5\xe7\x26\x4a\xb3\xe6\xf1\x49\xb5\x49\xa2\x1e\xcb\xc1\x24\x96\xd3\xba\x9f\x74\x27\x7f\xa5\xa3\x34\x43\xff\x06\x14\x0f\xa4\x8d\x52\xfd\x48\xfc\x94\x3f\x52\x9c\xb6\x23\xe4\x38\x82\x80\xe6\x8e\x0a\xef\x7a\xd6\x0e\xb1\x0e\x84\x2b\xe6\xb3\x8d\xd3\xaa\x0b\xbe\x1a\x25\x89\xcd\x66\xab\x0f\x97\xb8\x47\x9b\x1b\xd4\x41\x84\x6a\xd7\xf0\x39\x6e\xda\xcd\x0b\x13\xc6\x2c\x24\x2e\x45\x9b\x6a\x48\xb4\x63\xb3\xb3\x72\xae\x46\x44\xca\x3c\x5b\xe3\x88\x67\xda\x03\x93\x99\x5c\x58\x1a\x52\x01\xa3\xbf\x11\xb9\x9c\xa6\xed\x26\x2d\x8b\x3c\xea\xd9\x1d\xf4\xb2\x50\x92\xb8\xa5\xe2\x61\x2c\x65\xa9\xc0\x57\x3f\xd5\x29\x63\x3a\x69\xb7\x8f\xa6\x0e\xc8\xf9\x79\x72\xb7\xc0\xcf\xc2\x3f\xba\x40\x6f\xda\x39\x4e\xcc\x0b\x40\x06\x08\x40\x61\x04\x37\xaa\x33\x47\xb9\xef\xa2\x63\x7a\x42\xa4\x0e\xc7\xf3\xec\xc4\x23\x2a\x4e\x4d\x9d\x24\xcf\xb4\xe3\x72\x38\x92\x0d\x01\x95\x95\x75\x6c\x08\x7c\xa3\x79\x00\x66\x34\x62\xe1\x27\x11\x92\xa7\x61\xe1\x9b\x89\x8f\x79\x47\xb1\xc9\x0b\x9b\x91\x11\x17\x9e\x1d\xb8\x28\xe7\xe3\x71\x50\xb8\x92\xd3\xf8\x10\x52\x1f\x48\xbb\x1e\x8c\x80\xfa\xee\x15\x4c\x18\xbe\x99\xfa\x21\xd5\x41\x5a\x46\x31\xa8\x2f\xae\x3d\x58\xfd\x0e\xa7\xe2\xed\x54\x48\xb8\x42\x24\x54\x24\xcf\x7d\x29\x93\x5e\x2c\x69\xb1\x40\x17\xe8\x11\x04\xd3\xa0\x31\xee\xa1\x41\x74\x20\xc6\xbb\x2d\x6f\xc2\xab\xc0\x47\x4b\x36\xeb\x55\x09\x4d\xaf\xe6\xf3\xce\xd5\x55\xbe\x51\xc1\x59\x66\xc3\x34\xa9\x26\x5c\xa6\xa1\xa3\x81\x46\x4f\xf9\xbd\x66\x14\xdb\xcf\x54\xa3\x8a\xda\x52\xab\xa3\x7d\x16\xb0\xd5\x60\xb3\xf8\xf9\x78\xfb\x17\x5c\xf2\xa4\xc3\xed\xdb\xb4\xc2\x6b\xec\x14\x87\xbb\xaa\x32\x6f\xc7\x35\xaa\xc2\x7f\xe4\xeb\x27\x88\x62\x05\xdc\xe0\xc7\x63\xdf\x31\x87\xb8\x28\xf7\xc2\xc7\x9e\x54\x7b\x9e\x52\x54\x87\x3e\xa9\x62\x33\xe5\xd3\x22\xe8\xbe\x6b\xd8\xb4\xf1\x27\xbb\x3a\x3e\x0b\xff\x0c\xcd\x64\xb4\xb1\x38\x6f\xc7\x5f\xec\x9c\xa8\x6e\xf3\x34\xf9\xf2\xc0\x81\xf6\x12\x29\x82\xaf\x11\xe4\x07\x65\x98\x1f\x6a\x39\x87\xb3\x75\x0f\xe4\x96\xf2\xae\x53\xaa\xc5\x2b\x36\x29\xec\xb2\x4e\x0c\x6a\x58\x88\x26\xad\x33\xe6\x7c\x56\x1f\x88\xfc\xf1\x3e\xde\x05\x72\x46\xfc\x38\x80\x30\xa7\x15\xb2\x0e\x1c\x68\x77\x33\x12\x03\x6e\xd5\x34\xc2\x34\xa9\xe0\x41\x26\xdd\x3d\x13\xc5\x6b\x33\x3e\xe0\x7d\xbc\xe3\xed\x64\x51\x8c\x46\x65\xfe\x74\x93\x9b\x40\x38\x30\x19\x2d\x58\x07\x75\xc1\x84\xc6\x9f\x1c\x1f\x2b\x7b\xdb\xf3\x0e\x96\xd5\x2d\x73\x29\xaf\x89\xb1\x89\xd2\xb3\xfe\xb0\x29\x63\xa5\xd6\xab\xd0\x68\x9d\x99\x83\xef\xd0\x35\x55\x04\xe6\xdb\x79\x99\xf4\x4c\x12\xa2\xf0\x84\x41\xfd\x04\xef\x81\x6f\xbc\xa8\x42\x99\xad\x44\xce\x3a\x10\x29\xe6\x4e\x9c\x7c\xd8\xcf\xee\xaa\x38\xe4\xa2\x2a\x47\x8f\x4c\xf5\xf1\xce\xcf\xe2\x0c\x6d\xbb\x7c\xed\x99\xa5\x61\x98\x66\x3d\x21\x95\x71\xbc\xa1\x90\x05\xec\x6a\x8f\x71\x3a\xa2\x56\x6a\x61\xf3\x3d\xd5\x5e\xe8\x70\xf2\xf2\x96\xfe\xfe\xde\x89\xe7\xd4\xb2\x0a\xad\xf4\x0a\x3d\xd3\x7c\x2f\x21\x50\x10\x44\xec\xa4\x57\x49\x38\xd2\x7f\xf4\x9f\x62\x11\x10\xd2\x6e\xff\x67\x26\xf4\x9b\x11\x2c\x3c\x83\x9d\x99\x96\xe9\xb3\x7b\x27\x5e\xa6\xe9\x3b\xaa\xfd\xf6\x77\xfe\x36\xab\x9d\xd0\x9e\x11\xb6\xa1\x68\x89\xe5\xb9\x73\x52\x65\xca\x9b\x97\xea\x6d\x1c\x19\x88\x2a\x67\x89\xd3\x7e\x0e\xe3\x2e\x71\xb2\xa6\x4f\x46\xec\x30\xdb\xd1\xc0\xe5\xea\xeb\x85\xec\xea\xf7\x3a\x6b\xb2\x62\xf0\xcd\xd2\x2c\x5b\xe2\x18\xe3\xec\xbb\xa5\xc1\xdc\xeb\x9a\xee\x03\x09\x7f\x0c\xc8\xce\x89\x92\x31\xb9\x1a\x28\xf2\xfc\xf6\x89\xdf\x7b\x6e\x4c\x9d\xe8\x87\x0e\xb5\x43\x93\x98\x5e\x64\x92\x19\xb5\x7f\x5c\xa3\x17\x82\x4d\x0d\x1a\xdd\xe2\xda\xdf\xf0\x01\xa3\xa8\x08\x07\x43\xcb\x74\x12\x74\x65\xfe\x52\x71\x10\xff\xd2\xb5\xe3\xba\x99\x29\xaa\x14\x64\x85\xed\x62\x58\xdb\xa7\xa6\xf3\xd3\xa0\x20\x32\x48\x13\x9b\x17\x6b\x2d\xc5\xed\x45\x8d\x83\xaf\x35\xdb\xd3\xe4\x69\xd2\xaa\x47\x47\x5e\xc9\xa4\x11\x7a\x39\x1c\xd9\x2c\x32\xf1\x8c\x82\xa7\x1d\x51\xf5\xb1\xdf\xa1\x6f\x02\x52\xea\xe3\x06\x7f\xdf\x17\xaa\x28\x1d\x0b\x11\x1d\x11\xf8\xa9\xf3\xb5\xfb\xe9\xc3\x28\x89\x86\xd1\xab\x2e\x2e\x41\x74\xb8\x11\xf8\xfd\x05\x08\x7c\xa6\xe7\x6a\x77\x78\x9b\x8d\x6c\x91\x39\x2e\x95\xae\xc7\x4b\xd9\x5d\x69\x01\xa5\x03\x33\x34\xbd\x56\xeb\xab\x5f\x76\xba\xe5\xaa\xdf\x72\xd6\x6d\x0c\x43\x50\x33\xf3\x1d\x4a\x48\xfc\x6e\xa0\x9b\xa1\x33\xde\x12\xef\xbd\xb1\xb2\xeb\xff\x04\x85\x55\x04\xe7\xe7\xc7\x9e\xf3\x9a\x12\xc1\x74\x97\x4f\xef\xff\x8a\x36\x0d\xae\xc7\x07\xaa\x10\x77\x8e\x82\x0f\x87\xbc\xaf\x06\x84\xb1\x15\xf4\x04\x28\x20\xde\x42\x06\x2f\xb0\xd9\x9a\x71\x59\xda\x7b\xa8\xe6\x83\xa6\xd2\xb2\x9f\x69\x2f\xc0\x2b\x34\xa8\xa2\x28\x4c\x9b\xb6\x48\xe4\x2b\xbd\xd2\x6b\xd8\xa6\x45\x60\xcd\x23\x69\x99\xb4\x23\xc5\x3c\x8f\xf1\xb2\x59\xda\x07\x0a\xa2\x35\xef\xfd\x13\xab\x3f\x14\x63\x45\x69\x19\x85\x83\x28\xee\x61\x5b\xa8\xa1\x2c\x90\x8a\xde\x54\xb4\x0b\xb0\xb6\x30\x72\x67\xc7\x8f\xb8\x57\x9a\x13\x6b\xa6\xda\x79\xe6\xe7\x17\x36\x2f\x35\x28\xfe\xbc\xdc\xae\xf2\x5d\x74\xab\xb1\x09\x63\x1c\xf9\xba\x31\xa2\x1c\x96\xbd\x5e\x2c\x32\x39\x8d\x7a\x5f\x4a\x59\x24\xc2\xbf\xf5\x4d\xbc\x23\xf4\xf9\x7c\xdd\x70\x44\x3d\x27\x70\x56\x0e\x1e\xb1\x1c\xde\x1f\x2b\xc1\xd3\xf7\xa7\x4a\x9b\x07\x0e\x54\xb9\xfb\x30\xe2\x5e\xb6\x80\x72\xfd\xaf\x3a\xf3\xc0\xb6\xf9\xd0\x64\x75\x79\x08\xa6\x58\xf2\xcd\xa4\x41\xba\x7f\x98\xe6\xc5\x0e\x82\x87\x38\x5b\x6e\x87\xcf\x3c\x8d\x70\xcf\xe5\x9f\x87\x0e\x6d\x5e\x22\xc8\x86\xd0\x0b\x1a\xaa\xb2\xc3\x32\x5b\x8e\x60\x85\xb6\x28\x6a\x93\xca\x6d\xe2\xc2\x78\xaf\xea\xe0\x25\x5c\x0b\xf5\xfa\xde\xaf\x28\xb2\xf7\x2b\xae\x2b\x98\x57\xb1\x4f\x77\xad\xa5\xf4\x8b\xb0\x5d\xca\x2c\x56\x56\x17\x69\x96\xec\xf0\xed\x60\x46\x88\xd6\xde\x2c\x56\xf6\x6d\xfa\x00\xfe\x57\x38\xe2\x04\x6e\xaf\x6b\x57\xc3\x51\x39\xa3\x54\xd3\x8f\xd5\x74\x10\xb8\xf6\xc7\x0b\xd5\x21\x11\xf2\x30\x2d\xc2\xc1\x8c\x22\x73\xa0\x5b\x2b\xd8\x3c\xdf\x50\xff\xa1\xaa\x9a\x77\xad\x5d\x6a\x39\x70\xc0\x85\xe3\x94\x19\xf1\xb5\x8a\x19\xd2\x78\x0d\xb6\x06\x58\xda\x37\x94\xb4\xea\x4f\xb0\xc7\x01\x9f\x07\x17\x41\xe7\x28\x52\x85\x13\x6c\x56\x38\x56\xa2\xd4\xb4\x81\x6e\xde\x6d\x72\xcf\x09\x4d\x31\x48\xe3\x28\x94\xb0\x4c\xf6\x2c\xd5\x56\xd0\x3c\xec\x30\x4d\x0a\x13\x71\xf7\x18\x88\x20\x98\xc2\xf2\xb5\x3a\x9e\xaa\x5d\x3c\x7f\xbc\x0a\x7c\x10\x73\x83\x9d\x8a\x82\xd9\x3d\x25\x1b\xbf\x6b\xa2\x88\x56\xbb\x3a\x2a\x88\x7c\x4b\x11\xb6\x59\xee\xc3\xd9\x11\xbe\x34\x77\xd8\x49\xa7\xb4\xbe\xf8\x35\xa7\x2b\x5f\x73\x8e\xab\x26\xb9\x44\x2f\xca\xe8\x85\x1b\xaf\xce\x3a\xdb\x49\x96\xec\x9e\xec\x71\xa4\x03\x93\x2d\xc7\xee\x04\xc3\x2a\xbe\xaa\x34\x84\xf1\x0b\xa4\x04\x29\x9b\x65\x15\xfe\xc7\xe4\xba\xc8\x49\xb5\x33\xe8\x70\xc3\x75\xba\x89\xba\xdd\x8d\xd3\x50\x60\xe8\x0b\x9e\x0d\x5b\x7d\x35\xa6\xd3\xbd\x9a\x76\xdd\x13\x0a\x09\x98\x2c\x57\xeb\xb0\x1a\x1b\xe4\x7b\x57\x69\x98\xf9\x5a\x89\x85\x91\xd0\x7e\x92\xa6\xc9\xce\xea\xf7\x4a\x29\xdf\xd3\x88\xd8\x10\xd8\x89\x32\x1f\x3a\xc4\xa1\xec\xf6\x0e\x0d\xb6\xd0\x46\x7c\x5e\x71\x55\xb7\x3c\x4c\x1c\xa7\x23\xea\x74\x39\x50\x27\xe0\xac\xb2\xf7\xef\x51\x6c\xdc\xb2\x1b\x33\x7b\x91\x57\x58\xe0\xf5\xd0\xcf\x4f\xf5\xbb\x0f\xce\xb7\x6d\xb2\xb2\x36\xeb\x59\x92\xad\x8e\x06\x46\x8e\x7d\x71\x01\xc4\x03\xcc\xb7\x93\xca\x62\x4f\x88\xbd\x2b\x0c\x39\x46\x44\x72\x4d\x75\xca\xaf\x05\x0e\x74\x30\x34\xfd\x28\x31\xce\x28\x8b\x03\x5c\xf5\xbe\xa7\x5b\xf2\x2f\xee\x6f\x0f\xca\x8c\x29\xb9\xa0\x79\x1d\xc7\x84\xe5\x9b\x26\xb1\xd7\x70\x60\x52\xde\x16\x19\x7b\x46\x2b\x49\x70\x68\xd3\xdf\xb1\xd0\x8e\xd9\x52\x81\xfd\x21\x70\x94\x8b\x59\x44\x4d\xee\x7f\x94\xef\xac\x9d\x76\xd5\xab\xc0\xe2\x81\x2e\x12\xcb\xba\xd0\xaf\x02\x7e\x10\x12\x32\x68\x1b\xdf\x53\xc1\xcc\x46\x4d\x0c\x33\xca\x45\x3c\x1f\xd5\xd3\xdb\xf8\x99\x98\x1d\x6c\xcd\x87\xde\xc3\xa9\x60\x5a\xf6\xda\x89\x67\x38\xf0\x10\xdc\xea\x5d\x50\x70\xd0\x39\x2a\x00\x43\x8c\x80\xe8\x36\xcd\xd3\x1a\xd3\xcb\x59\xb2\x7a\xac\xf2\x5f\x8d\x3d\x63\x65\xd7\x44\x63\x3d\x80\x18\x90\x86\x8a\x17\x69\xbe\xa6\xf1\x49\xb7\xdd\x2a\xb6\x49\x98\x96\x59\x35\x0b\xfa\xc4\x32\x71\x53\xdf\xf9\xf7\xa0\xa0\x4f\xcf\xf0\xbf\xfe\x42\x47\x15\xdf\xf6\x4d\x31\x90\xe6\x0e\x8b\x11\xab\x88\xbd\xa3\xfd\xfe\xa9\xb2\x24\xff\xb4\xb6\xf3\x2f\xef\xaa\x86\x87\xc9\xd3\x63\x5f\x6a\xdd\x44\x76\x24\xfd\xc6\x6a\xaf\xc7\x0e\x7a\x41\xd9\xac\x72\x9f\x0c\xe3\xf6\x76\xa0\xf5\xc5\x9b\x6c\x5b\xf3\xb4\x2c\x06\xab\x36\x2f\x66\x7c\x5b\xe7\x1a\xfe\x8a\x65\xec\x11\x1d\x20\x6c\x78\x67\x2a\x8c\x39\xfc\x7c\x75\x24\xac\xd8\x0c\x00\x1d\x20\x48\x3e\x55\x2e\x02\x9f\xaa\x98\xb9\x4a\x1c\x9d\xae\x28\x77\xd1\xeb\x08\xdd\x06\xe3\x8c\x5e\x56\xa5\xf4\x2d\xa5\x1f\xb6\xae\x64\x1b\xd6\x1b\x24\xae\x94\x99\x2b\x02\x6d\x46\x70\xf0\x4d\xe0\x81\x8f\xbd\x5e\xb5\xc5\xcf\xd2\xfb\x63\x35\x7f\x25\xb2\x01\x06\x14\xfb\x73\xd1\x59\x82\x38\x62\xda\xc4\x8f\xda\x7f\x26\x1c\xcc\xfa\x96\x1c\xdb\xa8\x22\xec\xff\x54\x71\x1b\x3e\xc1\xc3\x48\x39\x66\x8f\x22\x04\x64\xfd\x41\x39\xac\x05\xa9\x75\xcd\x9e\xad\x22\xdb\x40\xf2\x25\xe5\x92\x09\x8b\xd2\xbb\xa1\xb2\xe2\x96\xf2\x9c\x3d\xd2\x84\x1b\x8c\x32\x93\x08\xec\x93\xed\x01\x34\x4d\xed\x74\x03\x16\x7e\xa1\x1d\x9b\xd5\x96\xc6\x65\x2a\xf0\xe5\x35\xed\xcb\x9d\xe4\x0f\xf9\x12\xe6\x67\xd0\xaf\x90\xee\x91\xb6\x42\x52\xfb\x78\x1b\x51\x2c\xe3\x51\xb8\xc7\x52\x43\xa7\x08\x6e\xc4\x9f\x4d\x1b\xc8\xd5\x00\x41\xba\xdd\x84\x1f\x18\x5a\xeb\xf5\x6f\x11\x21\x9f\x50\x4c\xad\x13\x81\x6f\x79\x3d\x6d\x87\xb3\x6a\x6f\x79\x27\xf0\x2a\x69\xe7\xc6\x75\x32\xb8\x0b\xb3\xde\x51\x9e\x37\x83\xa8\x80\x1a\x8c\xcb\xf0\xb7\xa9\x62\xe6\x36\x17\x5b\x50\x13\xb3\x0a\xa2\x66\x94\x8a\xf9\x4d\x0e\x39\xf1\x53\x58\x56\x5e\xfc\xf4\x14\xb9\x70\xd5\xda\x51\xae\x84\xcd\x45\x27\x0f\xc1\xc5\x04\x03\xca\x37\xda\xe5\xaa\xa9\x58\x99\x5b\xcb\xd5\xff\x97\x05\xab\x83\xc9\x29\xc0\x9d\x06\xf7\x96\x2e\xe1\xa8\x5d\xdb\xe3\xb6\x02\xf4\x80\x9a\x22\xb2\x7e\x4e\xa0\x3f\x4a\x90\x38\xba\xe8\x5c\xb7\x7e\x1a\xf7\x93\x2c\xb3\x21\xf6\x13\x44\x8b\x97\x15\x69\xeb\x72\xa3\x2d\x39\x2b\xed\x55\x27\x91\x6b\x9d\x56\xc7\x07\x6a\xec\x27\xb0\x71\x4a\x8f\xec\x49\xd5\xcc\x5a\xb1\x71\x3a\xb2\x59\xbe\x43\xe9\xe9\xb3\x0e\x82\x0b\x0f\x1d\x65\x6e\x77\xc7\x23\x33\x99\xc5\x2d\xd3\xa3\x41\x1d\x78\x94\xc6\x51\x11\x85\x8c\x85\x12\xf6\x5a\xcb\x31\x70\xff\x80\x92\x2c\x49\x5b\xf5\xe1\x5d\x16\x64\x7c\x21\xd1\xfb\xdb\x38\xe4\x5c\xbf\xda\x71\x1d\x2f\x69\xb6\x12\x97\xcb\x1c\x27\x7c\xe1\xf9\x17\x6a\xa6\x2e\x48\xc8\xaf\x53\x45\x1e\xc3\x72\x7d\xdc\x7a\xfa\x69\x2f\xe2\xb7\xb8\xdf\x7b\x3a\x2d\x2e\x48\x1d\xd3\xa1\xa4\x4d\xb2\x56\x44\x43\xb0\x04\xd9\xb7\x8a\xf6\x44\xe7\x82\xe9\x60\x31\xf7\x94\xb3\xdb\x59\xc5\x1f\x29\x93\xa8\xb0\xbd\x87\x94\x7a\x14\xd4\x89\x70\x06\xce\x74\x3c\x17\x9a\xf7\x05\xb1\xf9\x51\xc4\x82\x9a\x78\xde\xbd\xb1\xf6\x5e\xfe\x53\x7a\x6c\x8c\xd2\xcd\xc0\x97\x2a\x3e\x9e\x9a\xc6\xcf\xb4\x97\xa2\xac\x3a\xf2\x16\xf7\x33\x0c\x04\x86\x82\xe2\x66\x4c\x4f\x28\x0d\x22\xc9\x64\xd3\x15\x9b\xad\xda\x48\x14\xae\xa4\x43\xe4\xc5\x5a\xcf\xba\x44\xb6\x17\xa5\xaf\x44\x3d\xab\x15\xe2\x55\x02\x70\x5e\x5b\x53\x8f\x4a\xd8\x58\x57\xff\x94\xa5\x0b\x02\xcf\x29\x3d\xd7\x34\xd9\xcd\x68\x64\x4d\x4c\x6b\x10\xa3\x05\x18\x8d\x6b\xe7\x3a\x61\xde\xf5\xa9\x5a\xc5\xe2\xfe\x76\x18\x97\x2c\xeb\xe3\xe7\xf2\xb9\x40\xd5\x79\xcf\xb9\x6a\x8e\xb1\xfd\x88\x0f\x5e\x51\x3a\xf1\xc4\x86\x69\x13\xf8\x83\xf3\xed\x5e\x34\x8a\xd3\xa1\x29\xf8\xaf\x58\xf4\x52\x39\xb2\xad\xab\x34\xa0\x5b\xe6\x11\xc5\x44\xd5\x3f\x75\x44\x3d\x67\x29\xb8\x3e\x7e\xaa\x01\x86\xca\x25\x16\xae\x2e\x05\x4a\x25\xf5\x42\x13\x36\xca\xc6\x76\x34\x30\xae\x32\x83\xf3\xfb\x83\xb1\x6a\x09\x7c\xa0\xa0\x1b\x5d\x6b\x8a\x2c\x12\x4b\x4b\xd5\x52\x77\x7b\x87\x8b\x1d\xe2\x72\xd9\xae\x9a\x6c\x58\x23\x4d\xf8\x1c\xfd\xbe\xca\xf8\x97\x4d\x01\xc7\x7a\xf1\xb4\xf3\x03\x7f\x3d\xf0\xb6\xd6\xec\x27\x86\xb8\xfc\x3d\x9a\x57\x5c\xfa\x6e\x0a\x37\x8a\x34\x8d\x79\x94\x05\x4a\x57\x7d\xbb\x98\x58\x89\xd6\x5a\x6e\x56\xc9\xfe\xcc\x91\xdb\x17\xe6\x0e\xd7\x82\x46\x65\xfd\x20\xcd\xe8\x9f\xd0\x14\x72\x7d\x08\xd7\x07\xba\xa1\xd4\x10\x7f\xeb\x17\xd0\x62\xc0\x8a\x79\x74\xa2\x2a\x87\xef\x35\x75\x98\xba\x59\x54\x44\xf9\x60\x07\x55\xf5\x3e\x37\xd1\x09\xc4\x6c\x47\x65\x06\x70\xd6\x44\xce\xf4\x38\xd5\xe2\x11\x45\xde\x77\x93\x92\x6c\x35\x5a\x1e\xab\x88\x0e\x0c\x5f\x37\x34\xfe\x85\x66\x49\xc7\x89\x2e\x3e\xf3\x75\x83\x48\xf4\xcb\xed\x95\x74\x18\xf9\xa8\x01\x89\x0a\xb6\x14\xbe\x6e\xac\x8d\x13\xb2\x97\x66\xa4\x82\xf6\x2e\x28\x68\xaf\x16\xf0\x89\xcb\x3c\x4a\x13\xed\xc8\xf2\x6e\xa0\x30\x0c\xef\xba\x3e\x5b\x11\x15\xae\x2d\x8d\x9a\xf4\x29\xcc\x5f\xbe\x69\xa0\xd7\xb6\xf3\x28\xe9\xbb\xc7\x6f\x42\xd3\xd4\x6a\x5f\x51\x41\x34\x76\xb1\x7e\xf2\x10\xd7\x59\xc4\x6d\x48\x48\xdf\x0e\xbc\x84\xc9\xc3\x1d\x3a\x6a\x9d\xa9\x5e\x75\xd4\x8a\x1d\x11\x7d\x27\x2a\x33\x97\x54\x49\xf0\x3a\xa6\xb7\x78\x10\x35\xe8\xf4\x80\x12\xbc\x53\xc1\xa6\xfe\x19\x0e\x62\x6c\xf6\xe8\x00\x39\x09\xa3\x17\xf7\x6f\xbe\x4e\x1f\x8f\xe4\xe6\x0c\x96\x29\xa6\xf6\x4f\xa6\xb6\x82\x67\xda\x99\x85\xff\x35\xef\xb5\xcc\x02\xfb\xff\x19\xfb\xd3\x18\x39\xd2\xf4\x3e\x10\x27\xb3\x8a\x6c\xb2\xbb\xd9\xe7\xf4\x68\xf4\xff\xcb\x52\x5a\x1e\x68\x20\x6c\xab\x77\x61\xec\x97\xd5\x87\xcd\x74\xb1\x46\x3d\x2c\x68\xaa\x0b\x45\x0e\x7b\xdc\xc0\x02\xfd\x66\xe6\x9b\x99\xd1\x15\x19\x91\x13\x47\x15\xab\x3f\x0a\xbb\x86\x21\x18\x86\x17\x10\x56\x58\x78\xd7\xb0\x0d\x03\x6b\x49\xb6\xd7\xf2\x68\x74\x8c\xac\x89\xea\x99\xd1\x8c\xe6\xee\xfb\x3e\x78\xdf\x64\xf1\x28\xde\x64\x71\x11\xcf\xef\x79\xde\xf7\x89\xca\xe0\x62\x3f\x75\x66\xb3\x32\x33\xe2\x8d\xf7\x78\x8e\xdf\x81\x12\x8b\x50\xc2\x64\xff\x1e\x98\xa4\x67\x23\xee\x16\x20\x6b\xb8\x0a\xc5\x5b\xb4\xf0\x58\x71\x05\x3f\x36\xbd\xa6\x3a\x30\xa7\x0a\x6d\x2c\xb7\xab\xbd\x15\x82\xfb\x5c\x73\x64\x7a\xbc\xbf\x20\xc8\x3a\xde\x52\x11\xd7\xf1\x1a\x73\xea\xc5\xf2\xdc\xec\x07\x92\xd1\x08\xd1\xa9\xe1\xbc\x5a\x2f\x7a\xa5\x0c\x0a\x0e\x1b\x9a\xe7\x82\x6f\x97\xc0\xf9\x41\x2e\x3d\xdd\x38\xca\x82\x88\xf4\xce\xcb\x1b\x13\x68\x24\xfd\x20\x16\x20\xc8\x4d\xb8\xfd\xdd\xa8\xa3\xa2\x2a\xfb\x5d\x15\x9c\x26\x76\x14\x27\xa6\xa1\x55\xa4\x0a\xcf\x16\x5c\x6f\x3d\xec\xcb\x88\xd3\x8a\x17\x89\xd3\x87\x69\xcf\x4a\x75\xe2\xac\xce\x94\xce\xab\xa2\x57\x6a\x43\xb3\x1c\x73\x1e\x29\x26\x82\x2a\x67\x3d\x5f\xef\xe4\x6b\x33\x9b\x80\x4a\xe2\x6a\x1e\x4c\xa5\x13\x37\x2c\x99\x00\x36\xc9\xc7\xce\x93\x1c\x87\x2c\x90\x34\xae\x20\xec\xf5\xe3\x1e\x99\x90\x0f\xdd\xbb\x17\x74\xd4\xa8\x9b\x29\xd1\x99\x73\xca\xa1\xe3\x9c\x02\xd9\x8a\x2d\x7b\x1c\xed\xa0\x45\xc5\x36\xa4\x85\xe7\xc6\x5c\x54\x8a\xf0\x1f\xaa\x02\xd7\xa7\x85\x92\x43\xde\xac\xc1\x19\x2d\x34\xb3\x60\xdc\x50\x5a\x37\xc8\x5c\xe4\x7a\x5c\xdd\xfd\x1b\xb9\xd9\xa2\xf3\x07\xd0\x89\xc0\x41\xb6\xee\x30\x0b\x2f\xec\x6f\x46\x26\x49\xe2\x15\x1a\x4a\xe7\xa0\xe5\xb4\xed\xd7\x9d\x9d\x44\x3f\x08\x47\x29\x31\x72\xc1\x1b\x9b\x5a\xf3\x09\xca\xec\xe7\xda\x1e\xa9\x7a\xae\xd0\x43\xa5\x16\xc8\x79\xdf\x77\xb6\x49\x36\x8c\x43\xbe\x50\x6c\x51\x7f\xa9\xeb\x07\x7f\x59\xe7\x87\xb3\x6c\xc2\xa0\x37\x45\xab\xd7\x09\x9a\xcf\xcd\x39\x48\x78\xc3\x39\x5a\xd5\x9d\x1e\xdd\x38\xea\x87\x41\x17\x53\x46\x7a\x7b\x9e\xce\x53\xc6\x28\x12\xdb\xf6\xe3\x24\xcb\x23\x93\x11\x29\xdd\xb1\x89\xa1\xf0\xc3\xaf\x55\x82\x7c\x28\x00\x4f\x99\xaa\x46\xa7\x9f\x6e\x2b\x2e\x37\x64\x66\x05\x6e\xe1\xd1\x66\x27\x70\xab\xd8\x81\x2f\x39\x58\xa7\x09\xed\x21\x43\x26\x62\x15\x6d\x7d\x95\x4b\xaf\x2b\xf0\xe4\xd0\x0c\xa1\x80\x89\x8e\x05\x03\x29\xf8\xcd\xc4\xf0\xcd\xcd\x11\x5f\xcc\x92\x9d\x90\xc3\xb9\x79\xb7\xce\x42\x11\x51\xaf\x29\xee\x8a\x0d\x6d\xb7\x8c\xa4\x4c\x88\x23\x08\x81\x38\x48\x7b\xfc\x7a\xe2\xd8\x7a\xb6\xd9\xb3\xdd\x30\x88\xe4\xac\xe3\xa2\x24\x0a\xfa\x52\xa1\xfc\xbc\xda\x6b\x96\xe3\x90\xf8\xde\x26\x01\xf0\x85\xb1\x07\x84\x90\xc0\x9c\xba\xa5\x75\x9e\xd6\x95\x8b\xde\xca\x30\x08\xed\xe3\xae\x84\x37\x7d\x54\x81\x9a\x37\xb5\xa0\x10\x4b\xd5\xa3\x8c\xc1\x24\x79\x64\x6f\xdb\x11\x00\x61\x84\x7f\x41\x67\x23\x8a\xc3\xa7\x70\xa6\xe0\x70\xb8\x56\x11\x2e\x64\x55\x32\x21\xa0\x79\x6d\xe6\xef\xe0\x44\x47\x4f\x76\x1a\x75\x10\xa4\x9c\x7f\x45\x39\x96\x32\x8c\x97\x16\xd5\x5b\x4a\x13\xac\xdc\xbe\xed\xa1\x6c\x4a\x2d\x60\x50\x9e\xb4\x72\x95\x98\xd7\x6d\x1d\xf7\x32\xa3\x40\xfb\x92\x52\x0a\xd7\x9a\x5e\x9c\xd1\xfd\x34\x91\x0d\x7a\xc7\x19\xef\x65\xc3\x3c\xdd\xa5\x48\xd4\xe7\x8a\xc6\xd7\xbe\xe2\xb0\x8a\x1e\x16\x74\x9e\x8e\x80\x8a\x1b\x10\x9a\x0f\x9b\xa4\x47\x82\xa2\xd0\x87\x34\x18\x48\x7a\xfe\x5e\xdb\xb7\x89\xef\xaa\xd3\x25\xb4\x03\x92\x6f\x75\x20\x02\xf6\x67\x95\xfd\xef\x81\x87\x5b\x62\xd3\x6c\x14\x47\x9c\x69\xc8\xae\xa2\xa0\xb9\xe7\x15\xe5\x7f\x9c\x77\x42\xc2\x8e\x91\xe3\x1f\xfa\x45\x6f\x6a\x3d\x93\x0d\xed\x68\x74\x5c\x39\x49\x3e\x86\xa0\x88\x5b\x4c\xd8\x9b\x45\xa0\x49\x33\x37\x83\x38\x09\xb2\xd5\x9d\x9e\x3a\x77\x5f\x61\x42\xae\xd3\x40\x08\x9b\xc1\x7b\x9f\x1e\xc5\x3a\x60\xc4\xb3\x16\x7c\xfa\x40\x71\xcb\x06\x71\x64\xa7\xb4\x6d\x13\xd2\x41\x9c\xd4\x53\x4a\xf3\xf2\xc6\x44\x00\x56\x66\x6f\xd6\x8e\xa5\xa7\xeb\x7c\xd2\x17\x67\x1c\xa3\x54\xd5\xa8\xb3\x6c\x1a\x3f\x83\xf5\x73\x45\x89\xa2\x5e\x57\x27\x17\xfb\x5f\x79\xcf\x67\x67\x72\x9c\x77\x43\x6b\x12\xbe\x56\x5d\x96\xc3\x4e\x7e\x45\x4b\xb6\x4f\x8a\x49\x1c\x9c\x59\x68\x66\x43\x9b\xd8\xa9\xc6\x97\xbf\xce\xbf\xf5\x03\x05\xc5\xda\x46\x90\x29\xf1\x99\x7f\xa0\x94\x5a\x18\xf4\xa4\xb2\x8c\x0a\xfb\xbf\xd0\x0a\xfc\xff\xa2\x6e\xa9\x0c\x81\x24\x80\xfd\x22\x4a\xd0\xcc\x78\xc6\xea\x3f\xa7\xaa\xae\xa7\x95\x8d\x4e\x2f\x48\xd9\xcd\x98\x76\x5f\x80\x79\xd0\x9c\xe6\xd7\xb5\x4e\x3d\x51\x3f\x09\x6c\xd4\xe3\x23\xc5\x49\x35\x2f\xce\x38\x81\xab\x9a\x66\xd9\xd0\x76\x97\xd0\x48\x74\x56\x02\x5f\xfb\x0a\x37\x92\x5f\x57\x6d\xac\x5f\x68\xdc\x86\xed\xef\x52\x65\x8f\x06\x75\x68\x78\x7a\xd2\x1c\x42\x44\xfe\x76\xe1\x5b\xd7\x87\x35\x2f\x72\x13\x9b\x84\x68\xb7\x35\xc4\xbb\xeb\x1b\x4f\xb6\x2b\x3a\xae\x5b\x73\xfa\xaf\xce\x36\xa3\x78\xca\xab\x43\xe2\xc9\x21\x2b\xdd\xdd\x6e\x38\xd2\xc8\x95\x3a\x16\x6c\x96\x27\x9c\x41\x21\x53\x46\x6d\x8c\x5f\x4f\x24\x76\x73\x73\xcd\x11\xba\xac\xcc\x7c\x47\x32\x74\x5e\x91\xe5\xcf\xd7\xa5\xda\x23\x3b\x8a\x59\x8d\x56\x99\x7d\x0b\x9f\x0d\x62\x35\x08\x6e\xde\xa6\x8d\x56\x60\xc6\x2e\x2a\x0f\xe3\x15\x99\x31\x18\xb9\x6d\x6d\x75\xd1\x97\x0b\xd5\x64\xac\xd4\x26\xc3\x60\x99\xc9\x57\xde\x2a\x11\x0d\x3b\x7e\xad\xa4\x1f\xc8\x48\x54\xd4\xfe\x44\xfa\x5b\xf9\xc9\x7e\xaf\xb5\x75\xe4\x9f\x6d\xa6\xf6\x50\x43\xe1\xbd\x5a\xbe\x1e\xf0\xa9\x6a\xda\x8c\x82\x54\x9c\xa2\x30\xdf\xdf\x6d\x29\xf5\xd0\x77\x27\xb4\x02\x5e\x7e\xb9\x99\xc5\xf1\x54\x39\xe5\xf0\x48\x41\x66\x46\x46\x78\xb3\xa5\x54\x91\xcf\x3d\xd0\x8e\x3e\x8a\x93\x91\x09\xf9\x31\x31\x90\x43\x0b\xa0\xde\xaa\xfa\xf3\xd9\xf0\x21\x7f\xe8\xaf\x6b\x79\x1e\x2e\xe5\x6a\x3f\x6d\x91\xcd\x20\xbf\x1a\x6a\x3f\x91\x1c\x9b\x17\xa4\x7f\xb3\x6e\x4d\xe5\x99\x19\xd2\x66\x23\xbc\x25\xdf\xa9\x7d\x07\x57\x86\x34\x77\xb2\xc9\xb6\xaf\x9c\x41\xbd\xa0\x4b\x91\x8d\xde\x9b\xbf\xa9\x2d\xf5\xbe\x59\xcb\x3f\x78\x25\xce\x93\x08\x41\x94\x2f\x73\x79\x5c\xdc\x85\xca\x30\xf4\x7a\x29\x0d\x83\x98\x11\x53\xe4\x82\x79\x55\x00\x2f\xa1\x95\xd3\xf9\xaf\xa8\xb1\x8a\x4d\xfc\x24\xae\x87\x39\x9b\xdc\x7f\x11\x06\xe7\xd3\xea\x00\x33\x83\x91\xc9\x82\x34\xa3\xa7\x83\x38\x1a\x36\xdd\xfc\x7a\x22\x89\x3d\x38\xf3\x52\xb3\x1f\x27\x76\x99\x9d\x6e\x5d\x8d\xcb\xf5\xa1\xdf\xaf\xd5\xfb\x1d\x84\x71\x87\xa6\x01\xdd\xbf\x00\x6b\xcb\x6f\xd8\x5a\x9c\x7e\xc5\x46\x4b\x41\xc4\x91\x63\x05\x27\x27\x44\x8a\xad\x87\x40\x99\x1d\x8d\xf3\xa4\x3b\x34\x5e\x31\x05\x07\xfc\x3f\x53\xe0\xa4\xbf\x6b\xf9\x5c\xc1\x43\x3b\x4d\x9a\xda\x51\x27\x0c\xe4\xf0\x40\xb6\x7f\x1c\x73\x8d\xdf\x54\x0a\xfa\x26\x5c\xdd\x51\x0e\x34\x47\x10\x78\x34\xda\x9b\x1c\x99\x3c\xe9\x26\x6f\x22\x60\x42\x0e\x7e\x54\x01\x38\x46\x71\x9e\xda\x2c\x31\x63\x9c\xd0\x78\x98\x47\xd0\x7e\xe7\x37\x8a\xab\x9a\xc5\x87\x82\x2e\x45\x74\xe2\xc6\xe3\x35\x0d\x4e\x21\x38\x11\x33\xc7\xa7\x7d\x0e\x13\x92\xe6\xbb\x2b\x1d\xb9\x56\xb3\x22\xf6\x6e\x1d\x48\x52\x2f\x07\x24\xcd\x0d\x24\x22\xc2\x63\x85\xaf\xb4\x60\xd2\x09\x12\x5f\x7e\x71\x64\xbe\x91\x07\xa1\xe9\xc5\x89\xe1\x36\x89\xa3\x2e\xb9\x83\xf1\x3e\x6d\xaa\x88\x80\x1f\x6a\x7b\x09\xa5\x6c\x98\x04\x61\x58\xf1\x4e\x86\x1c\x15\xbf\x9e\xa0\x3f\xff\x76\xb3\x13\x67\x43\x52\x9b\xc1\xbd\x30\x23\x17\xcf\x01\x46\x03\x08\xe7\x3f\x9b\xd8\x01\x0e\xbc\xd0\xcc\x4c\x0a\x33\x09\xac\xfa\x7b\x6a\x07\xb8\x37\x91\x7b\xcf\x1e\x68\xa6\x2b\x80\x19\xef\xf7\x95\x79\xf7\x30\x38\x2e\x92\x50\xf4\x11\x87\x1e\xea\xd9\x69\x75\x8e\x1e\x2b\x14\xff\x6f\x5d\x89\xb8\x9d\x57\xae\xba\x53\x13\xf5\x07\x7a\x22\x7d\x03\x22\x41\xf9\xa0\x5d\x50\xee\x62\xd5\x0b\xaa\xed\xd9\x31\xc9\x74\x25\xec\x61\x25\x49\x5f\x57\xbd\xac\x04\x8d\xfe\xbc\x78\xd4\x1d\x0d\x4b\x4b\xc9\xb4\x52\xf0\x03\x10\x47\x6a\x13\xde\x0b\xf6\x53\x8c\xb3\x34\x4f\x6b\x58\xff\xc1\xa8\xdc\x22\x49\x97\xed\xa0\x28\x34\x01\xf4\x2b\x0d\xbc\xc7\x94\xa2\xb9\xe9\xda\x5d\xe5\x9c\x70\x2a\x74\xde\xb2\x9f\x63\x31\x4d\xed\xac\x34\x75\x70\x66\x37\xd6\xbc\xc4\xcc\x66\x4b\xa1\xac\x80\x24\x15\x93\xf8\xcf\xa9\x21\x0a\xc3\x38\x8e\x82\x34\x4b\x15\x2e\xf4\x92\xc2\x85\x5e\x52\x8e\x71\xfd\xc4\x74\xa1\xe4\xcf\x71\x1b\xf6\x8f\x93\x54\x7c\xe1\xd7\x13\x33\x6c\xef\x5e\x8a\xbf\x77\x94\x57\x06\x58\xec\x86\x96\x3f\x46\x79\x04\xa8\x8e\x9d\x6d\xdf\xab\x3b\x52\xa8\x2d\xef\xbb\x8a\x7a\x94\xd8\xcc\x04\x61\x10\x0d\x76\xd0\xfd\x21\xe5\x3a\x89\x09\x85\x12\x13\x4c\x09\x90\x1c\x5f\x53\x9e\xac\xec\xdb\x25\x21\xd5\x16\xff\xa8\x83\x33\xcd\x17\x67\x0f\xd0\x73\x92\xbe\x63\xf9\x51\x7e\x3d\xd1\x65\x2e\xc3\xd1\xc0\x75\xb8\x70\xf6\xbe\xa3\xf5\xab\xde\xa9\x51\x1b\x59\x68\x66\xc1\xc8\x66\x46\xd4\x46\x44\xab\xcc\x4f\x88\x4f\x54\x5b\xd1\x9a\x34\xb0\xc9\x23\x15\xf1\x3f\x9a\x05\xcc\xb7\x68\x69\x9b\x3a\x9a\x96\xc8\x87\x2e\xd1\xd9\x87\xb8\x84\x55\x63\xdd\xcc\x5b\x9c\xf1\xcc\x2e\x3f\x23\x5b\xbe\x06\x8a\xd5\xec\x84\x07\xcb\x55\x26\x55\xce\xc7\x94\x79\x7c\xca\x24\x72\x66\x88\xa8\xf6\xd6\x59\x84\xc2\x9c\xbf\x27\xe3\x98\xe8\x02\x99\x12\x75\xb9\x5d\x29\x34\xd1\xed\xe1\xcd\xc9\xe2\x61\x1e\xb2\xe6\xde\xbd\xbf\x46\xa8\x5e\x34\x64\x5f\x2b\x94\xf6\x32\xd3\xf3\xe4\xc1\xd0\x34\x71\x04\xec\x2f\x7f\x9d\xf3\x4d\xa6\x78\x20\xaf\x3c\x4a\xf4\x2e\xd6\xa1\xa5\xd1\xc1\x39\xfb\x53\x62\x8a\x21\xe8\x3c\x0c\x3e\x98\xdb\x18\x5c\xd7\xf7\x2a\xa6\x2b\x94\x25\x3e\xc4\xaa\x42\x49\xe6\xb8\x0a\xcb\xb7\x29\x86\xc6\xae\x36\xc4\xe7\x10\x02\xb0\xac\x0b\xca\x5b\x37\x09\x24\x02\xf8\xe9\x29\x0e\x45\xa4\x0d\x41\x78\x24\x86\xf8\x29\x4a\xc1\x5d\x6a\xff\xe2\xe7\x3f\xb7\xe6\xd5\x4a\xbf\x5b\x6c\xff\x22\x1f\x1f\xd7\x21\x92\xcb\xea\xdd\x32\xf3\xe9\x00\x15\x82\x9c\x57\xf5\x3c\x53\x34\xbe\x3a\xeb\x5b\x33\xe5\x13\x46\x4c\xb0\x41\x0a\xbd\x28\xad\x14\x35\x00\xf5\x26\x44\xd8\x70\x82\xca\x1c\x6c\x28\x95\xf7\x7a\xc5\xa2\xcc\x8e\xca\x49\xc0\xa1\xb6\x0b\x9d\x1d\x88\xf8\x64\xcb\x17\x7c\x06\x36\x2b\x0f\xdb\x3d\x1e\xb0\xf7\x37\xf4\x0b\x78\x5c\x8d\x76\xf9\x18\x9d\x35\xb9\x1f\x2e\xc6\x0b\x4a\x56\xed\xf9\x8b\x3f\x2f\x2a\x22\x13\xe5\x40\x8a\x30\xa2\xb2\x4d\xd8\xe0\x07\xc1\xef\x0a\xef\xba\xcd\xce\x75\xd8\x76\xcf\x28\xee\x92\x2f\x32\x27\xb6\x9f\x47\xbd\xad\x7e\xcc\xbf\xf3\xa2\xeb\x3a\x7b\x1c\x4d\x1f\x02\xe3\x84\x24\x15\xd6\x4b\x79\xad\xc2\x86\x51\x8e\x53\xc3\x24\x5e\xe1\xdc\x0c\x20\x00\x96\x2e\xc1\x2d\xfe\xac\xe5\xb5\x9b\xb0\x60\xd9\x24\xde\x9d\xb8\x9d\x78\x95\x2f\x09\x9b\xfe\x54\xdb\x1f\x00\x53\x6b\x52\x78\xee\xd9\x34\x0e\xe5\x74\x12\xa7\xc9\x86\x13\x13\x3f\xa6\xe4\xb5\x46\x41\xd4\xb5\x23\x6b\xb2\x69\xfa\x56\x4c\xc7\xa3\x88\xb7\xc4\x6f\xa6\xe1\x04\x58\x8e\x62\xf2\x89\x2b\x8d\x2f\xb0\xd8\x1c\xfc\x17\x6c\xdb\xec\xb9\xc2\x6f\x54\x55\x81\xa0\x77\x04\xaf\x9f\xae\xc2\xa5\x1a\x4a\x1d\xcd\xb7\x9b\x2b\x55\xe1\x63\x0e\xf0\x6a\xf2\x2c\x1e\x24\x66\x3c\x94\x8e\x87\x8e\x18\x01\x0f\xb9\x8c\x05\x20\x43\x59\xb7\x65\x9b\x28\x0b\xb2\x24\x4f\xb1\xe1\xa1\x3c\x06\x3a\x15\xbf\x5e\xf3\x75\xaa\x57\xe2\xd4\x2a\xe6\xe0\x4f\x71\x7f\xfc\xa6\xce\x82\x25\xed\xe6\x59\x16\x4a\x8f\xc2\x09\x29\x78\x51\x85\x5a\x33\xe9\x5e\xbc\x12\x4d\x97\x93\x19\x1b\xfe\x4d\xec\x75\xec\x60\x4c\x9b\x3c\xf6\x85\xc7\xda\xca\x6c\x7f\xeb\x81\x37\x3f\xdf\x3c\x38\x33\xfb\x84\x92\x65\x38\x87\xc7\x89\x1d\x10\x1a\xdd\x00\xa0\x32\x1e\x87\x4b\x28\x6b\xf4\x6c\xf9\xaf\xb0\xb9\x21\x7b\x45\x2b\x09\x05\x1c\xd6\x03\xc4\xde\xba\xa6\x18\xed\x8d\x76\x79\xe1\x52\xa2\xa0\xf1\x41\x24\xf3\x0e\x2d\x2f\x76\x7d\x6c\xa9\xfe\xe5\xdf\x6a\x1a\xed\xdd\x96\xd7\x2e\xf8\x84\xb6\x72\x7c\xe2\x5a\x5d\x59\xc4\x8c\xc7\xa1\x0d\x83\x25\x78\xd7\xe1\x67\x6e\xb4\xf4\x7a\x29\xbf\x8c\xd5\xb7\x14\xe8\x3b\xee\xa4\x36\x59\xb6\x09\xad\x40\x69\x08\xbe\xd9\xf2\xa8\xfb\x7b\x3a\xfd\xbe\x87\x5b\x15\xbb\x98\x3a\x9e\x4e\xba\x9a\x66\x76\x24\xaa\x76\x2c\xa5\xd8\x56\x4a\xc6\xdb\xd1\x6c\x15\x24\xef\x33\x1e\x53\x6e\xc3\xa0\x63\x13\x6a\xbf\x50\x39\x09\x1b\xd3\x4d\xec\x78\xa2\xd2\xed\x69\xf9\xdb\xd6\xbe\x50\xad\xcd\x51\x03\x14\x06\x61\x0a\x54\x0d\x84\x38\xbf\xd6\xcc\x0f\xd7\x2f\x13\xa5\x41\x0f\x64\x9a\x24\xee\xec\x9b\x6f\x76\xe3\x78\x5c\x5e\x9e\x44\x42\x2c\x28\x58\x28\x76\xc1\xa4\x5f\xf5\xb3\xcd\x71\x62\xd3\x7c\x64\x3a\x21\x7b\xbc\x78\xd5\x73\xd7\x37\x9b\x68\xa4\xbc\xb8\xd0\xec\xd8\x30\xb0\xcb\x16\x45\x40\x04\x0d\x37\x11\x01\x60\x4c\xb1\x45\x4b\x47\xc0\x43\x55\xe2\xa8\x6b\x1f\xf3\xa8\xa8\x69\x20\xff\x71\x46\xa0\x3e\x84\x7a\x02\x0b\x5b\x38\x20\x89\x0b\x06\xdf\xa5\x43\x18\x25\x70\x0e\x2d\x98\xed\xdc\xf2\x2a\x9f\x8c\xde\x77\xad\x97\xbd\x7b\xb9\x6d\x78\xac\x50\x88\xf1\x6d\x6a\x2b\xde\x09\xe5\x26\xbc\x99\x26\x42\x2b\x8a\xbe\x3b\xd7\x1c\x58\x29\x5d\xb2\xbd\xdd\x3e\xfa\x3f\xfc\x04\xe2\x1f\xe7\xf8\xb3\xa8\xbc\xc5\x95\xe0\x28\xdd\x08\x96\xef\x5d\xba\x11\x81\xfd\x94\xbf\xce\xe2\x6a\x85\xa2\xc6\xc2\x97\x00\x99\xdb\x4d\x95\x6f\xa7\xc3\xa0\x8f\x36\xa1\x48\xdb\xf9\x23\xeb\xb5\xe2\x29\xcd\x70\x24\x85\x98\xde\xb4\x0f\x32\xbf\x83\x63\x00\x71\x1b\xd4\xce\xf8\x1f\x0a\x05\x82\xdf\xbe\xa6\xba\x14\x36\x49\xc9\x39\x92\xbe\x05\x1b\x0e\x76\x7d\x74\xca\x6e\x60\x63\xc0\x25\x5f\x53\x99\xa3\x2f\x99\x74\x93\x78\xa5\x87\x8e\xbf\xc4\x8f\x47\x0a\xa5\x0c\x83\x0d\x40\x6c\xdb\x7c\xf6\xf1\x2d\xef\x1b\x10\xaf\x9a\x30\xe3\x99\xa9\x7d\x6e\xf9\x75\x1d\xe7\x2d\xb4\xd1\x20\x1b\x22\x2d\x62\xb5\x35\xfa\x1d\x51\x5e\xdb\xfa\x91\xc5\x99\x66\xdf\x44\x7d\x61\x9d\xca\x37\x7b\xca\x6a\xd5\x7a\x70\xc8\x0d\x22\x57\x95\xf2\x15\xaa\xc2\xb7\xff\x86\x36\x14\xf0\x94\x9b\x9d\xae\x70\xa6\x8f\xe1\xf9\xe7\xe6\x1a\x1e\xb9\xcd\xb0\x0f\xc9\x63\x7d\x38\x46\x25\x52\xae\x56\x62\x81\x1d\xa1\x1d\x93\x5f\xab\xb6\xef\xc8\x26\x8f\x96\x93\x0c\xeb\xeb\x6c\x51\xed\x18\x95\x83\x8f\xca\xde\xfd\x42\xc9\xf6\x6d\xc3\x6a\xc3\xec\xbf\xa1\x22\xe3\x73\xdc\x5d\xc4\x96\x7a\xa5\xe5\xe7\x02\xa8\x96\x9c\xe7\x50\x98\x25\x3a\x75\x7e\xf6\x1e\x56\xea\xcd\xff\x4b\x53\x09\x45\x8d\x03\x9b\x74\x71\x3e\x3b\x63\x22\xaf\x8b\xa4\xfb\xa8\xe9\xd0\x26\x76\x9a\x36\x09\x49\x30\x1b\x5e\x39\xad\xd5\x50\xc2\x09\x9e\x74\x74\xb2\xe5\x33\x9f\xa1\x1d\x05\xe9\x78\x68\x93\xa0\xdb\xd0\xc1\xe5\x15\xad\xdc\x7a\xc5\xcd\x38\x56\xd7\xfc\x65\xd5\x70\xf9\x7b\x6b\x5a\x5a\x83\xb5\xb9\x91\x77\xb0\x28\xa2\xb4\xc9\xca\x9d\x09\xb9\xd7\x5d\xe4\x30\x92\xfa\x95\x03\x8a\xbd\xf0\x57\xda\x4a\xab\xfe\x0c\x6b\x63\xab\x9c\x52\x2c\xbe\x9e\x58\xab\xe0\xf6\x16\x67\xa4\x5e\x82\xec\xe5\xbf\xa1\xad\x0b\x21\xe8\x33\x14\x5b\x20\xf9\x79\x7c\x4d\xf1\xce\x3e\xc2\x12\xc5\xd5\x35\x81\xb4\xa2\x5a\xc2\x7f\xdf\xa4\x1c\x09\xf1\xc1\x35\x54\x6e\x85\xa1\x52\x66\x1e\xe2\x9d\xe1\x7d\x29\x18\x42\x87\x21\x78\x02\xe7\x25\x8e\xbc\x6b\xad\xc6\xcb\x2f\xcb\xd9\xd9\x16\xc8\xc0\x38\xb1\xbd\xa0\x9b\xd9\x1e\xce\x6d\xf4\xf7\xb6\xb7\xd5\xfc\x7b\x47\x35\x70\x21\xee\xc1\x42\xbd\x4a\x62\x2f\x88\x96\xe3\xa0\xcb\xc2\x79\x2c\xef\xdd\xf2\xca\xf1\x17\x34\x6b\x70\x68\xbb\x4b\x71\xbf\x3f\xe5\xb7\x91\x3b\xaa\x6f\xc2\x9a\x80\x82\x9a\xdb\xe3\xf8\x19\xc9\x88\xf3\x67\xd6\xdb\x41\x96\x2e\xe2\x3b\xca\x1d\xd6\x46\x3d\x1b\x75\x01\xf2\xc3\xf6\xf5\x7f\xd2\xf7\xf3\x6b\x85\xcc\x1d\x44\x41\x86\xbf\xab\x71\xc3\x9b\x28\xc2\xff\x66\xb3\x13\x27\x49\xbc\xe2\xf2\x39\x3c\x2e\xa8\xf9\xf3\xeb\x3a\xd0\x49\xda\x8d\xc7\xd8\xb1\x74\xd0\x2f\x71\xbe\x2e\x0d\x27\x29\x9b\xf3\x49\xdb\xa8\xa1\x24\x85\xb4\x36\x17\xa6\x0b\xff\x8b\xda\x7c\x52\x93\x05\x69\x9f\x05\x03\x18\x35\xa2\x92\xc1\xf3\xae\x6a\xdd\xb3\x49\xb0\xec\x69\x6d\xb8\xe5\x7b\xca\x04\xe0\x5e\x0d\x97\x26\x5e\x0a\xcd\x73\x24\x15\x58\xab\x80\x52\x43\x65\x34\xa3\x51\x1c\x05\x39\x2c\x4e\x99\xe5\x42\x77\x2f\x8c\x17\xbd\x5f\x27\xf9\x90\xbe\xdc\xf9\x72\x7a\xd9\xf1\x0b\x2d\x6d\xfa\x93\x8e\x6c\x16\x74\x41\x2a\x11\x51\xaa\x72\x5b\x93\xf2\x88\xf7\xa1\x14\xee\x2e\x86\xed\x72\x4b\x55\xf6\x6f\x2b\xa5\x87\x9f\xd3\xac\xe6\x8f\xb4\x94\x78\x05\x1b\xfb\x8b\x4e\xe3\x93\x3a\xd9\x62\xea\xab\x53\x26\x3d\xa9\xda\x03\x27\xcb\x14\x44\xdc\x81\x7a\xa3\x20\x0a\xd2\x0c\x32\x90\xbb\xe8\x12\x50\x6f\x01\xca\x5d\x8c\x5c\x5c\xe7\xf1\x1f\x3c\xb5\xa6\xba\x56\x77\x34\x1e\xfb\x8e\x32\x56\x3c\xae\x78\x92\xef\xe3\xa2\x59\x2a\xcc\xc7\xa6\xf9\x78\x1c\xae\xee\xa6\x85\x82\x9a\xd7\xbf\xd4\x51\xd5\x39\x8a\x71\x78\xd9\x55\x37\x68\x89\x77\x0e\x7c\x01\xf8\x3e\x87\x35\x28\x77\x54\xd7\x41\x73\xfe\x2b\x5c\x9c\x46\xb5\x7d\x6a\x4d\x2d\xf6\x20\x0b\x5e\xb5\x51\x4a\x10\x3f\x69\xc6\x7a\x63\xda\x13\x6a\x61\x9e\xa8\x96\x1a\x5d\x3b\x1a\x95\x3f\x27\x08\xcd\xf4\x6e\x7e\x33\x21\x9c\x3d\x3f\xdf\x4c\xcd\xaa\x44\xd6\x0c\xcf\x59\x53\xa4\xae\xed\x6d\x27\x3c\x3d\x24\x59\xb2\x29\x8f\xed\xe0\xfb\x93\x8e\x80\x8f\x45\x3e\xa8\x75\x27\x1d\x05\x91\x4d\x4c\x98\x22\x6c\x12\xd9\x0d\xba\x3c\x6e\xaa\xb7\x2a\x4a\x64\x98\x8b\xd2\x6f\x9f\x84\xea\xce\x37\xf3\xa8\x97\x73\xec\xc0\x98\x12\xe5\xd1\x71\xbc\x4e\x46\x67\x64\x12\xe2\xd4\x38\x94\xd8\x4d\xb5\xde\x6f\xd6\x38\x6f\x34\xfb\x24\xc8\x35\xed\x97\x3a\x2b\x44\x39\x19\xb3\x45\xa9\x6b\xfc\x05\x42\x12\xd4\x00\x7f\x51\xe9\x2f\xc6\xc9\xea\xd3\xb8\x1d\xec\xe0\xd7\xe8\x44\x55\x4a\xeb\x42\x5e\x42\x6b\x44\x64\x56\xe9\xfb\x1c\xd6\xb5\x3c\xcc\x30\xf0\x77\x31\x6a\x22\x6c\x44\x8f\x0b\xf0\x75\x24\x53\xaa\x3c\x2f\x3d\x9d\xe9\x35\x9c\xc8\x4e\x65\xed\x45\xc9\x35\xee\x52\x4c\x8f\x6c\x75\xa3\xf0\x7a\x1b\x88\xc3\x10\x13\xbf\xa6\xe1\xd8\x9f\x16\x5e\x41\x14\xde\x4f\x00\xc6\xfc\x09\x0a\x1d\x88\x9c\x36\x1c\x8c\x91\xda\x13\x0d\x7f\x7a\xf1\x4e\xc5\x6f\x5a\x8f\x6b\x2b\xb5\x98\x85\x32\xb0\x35\x7d\xa8\xd4\xbf\x3f\x9c\xe8\x49\xcd\xcd\x35\x57\x0c\x2b\x1e\xb0\x9d\xa4\x32\x38\xf9\x4c\x85\xa2\xfb\x7e\xf7\x77\xa7\x1a\x5f\x9d\x65\xad\x0e\x24\x09\x28\xfd\xf1\x22\xc2\x0d\xdf\x50\x26\x23\xe3\x3c\x0c\xb2\x57\xf9\xb9\x2b\x6f\x52\x51\x7e\xd9\xe4\xd9\x89\x66\x13\x48\x56\xac\x76\xa8\xcd\xa3\x59\xf7\xfb\x21\x7a\x76\x72\xa0\xfa\x29\x0a\xee\x36\xe0\x21\x7f\xd6\x52\xd2\xb0\xef\xe2\x99\x22\xf8\xb8\xae\x48\x05\x7f\x4c\xf3\x03\x79\xd6\x77\x5b\x9f\x57\xca\xd8\x26\xb1\xc3\x38\xec\x91\x35\xac\x2a\x61\x55\xb6\xa0\xd6\xd6\xf2\xa9\x13\x6c\x35\x2b\xab\x36\x61\x52\x1d\x8a\x3c\x1f\x70\xc5\x12\x9d\x22\xde\xb1\xb0\xdb\xfc\xa8\xa6\xe1\xbe\xd0\x34\xc9\x08\xa9\xbd\x87\x03\x9c\xd4\xe4\xb1\x93\x0f\x94\x8b\xed\xa3\x8b\x26\x31\xfb\x59\xd5\x43\x00\xf0\x4a\x09\xa2\x88\xdb\xf7\xe9\x5a\x31\x91\x60\x34\x4e\xe2\x65\xa9\x2f\x60\xe6\xfc\x58\xcd\xa2\x1f\x6b\x2d\xcc\x38\x0a\x1a\x4a\x0f\x66\xbd\xa5\xed\x2b\xf7\xb8\x44\x2d\xef\x49\x2f\x10\x5b\xd1\x2d\x2c\x73\x7e\xa3\x23\xfa\xcc\x8a\xfc\x98\xf8\x2b\x96\x0f\x82\x5f\xab\xde\x46\x2f\xa1\x79\xee\x60\x56\x9f\xd2\x34\xe0\xd7\xc5\x33\x9e\x53\x13\xc4\x36\x1a\x04\x91\x85\x4f\xfe\x82\x63\x12\xfb\xea\xf1\xbb\x75\x9b\xdc\x70\xb5\x93\x04\xd0\xb8\xc7\x16\x03\xa6\x21\x62\xe7\x63\x15\x58\xa5\x46\xa6\xfd\x56\x10\xd1\xe6\x8e\x9d\xe4\x8f\xf0\xc4\x71\x70\x80\xcb\x22\x88\xbf\x1a\xe9\xa5\x34\x0e\x97\x5d\xa0\x87\x4b\x43\xc7\x86\x5f\x4f\xd4\x18\xe7\xe6\x9a\x49\x9e\xa6\x71\x43\x35\x67\x40\x61\x92\xb0\x64\x12\x09\xf1\x7c\x93\x4a\x3a\x5b\x6d\xd5\x95\xfc\xde\xa4\xaf\xba\xf3\x62\x95\xad\x42\xe4\x77\x3d\x3e\xf0\x62\x0d\x46\xae\x99\x47\x49\xce\x2d\x48\x11\x33\xf7\xbe\x02\xef\x55\x02\xb1\x3c\xc8\x76\x35\x0e\xce\x6c\x82\xa0\x88\x06\xe4\x77\x30\xf3\x91\x26\x9d\xd7\x0e\x3b\xa0\xe0\x8a\x77\x80\xd7\x73\x65\xde\x1e\x66\xcb\x75\x4c\x75\x24\x0e\xd7\x1d\x73\xaa\x1b\x87\xa1\x19\xa7\x76\x87\xf2\xd5\xbf\x46\x5b\x36\x3e\xc6\xe8\x2a\x2d\xef\x8d\x87\xfe\x58\x5b\x01\xcc\xd5\x23\x1f\xc5\x63\x55\x1b\x80\x21\x17\xbf\xae\xd1\x69\xde\x2f\xc5\x31\x7e\x00\xdc\xec\xa9\x7a\x88\x28\x4e\xaf\x89\x80\xf7\x5b\x9c\x11\x1b\x8c\x5b\xe8\x40\x21\xfb\x3b\x4d\x17\x28\xe2\x13\x5e\xc8\xca\x46\xfd\x38\xe9\xda\x91\x38\x57\xd4\x25\x1b\xbe\x90\x1a\x19\xf4\x8b\x59\xeb\x54\x38\x9c\xe5\xc0\xe2\x54\x67\x80\x12\x96\xd7\x06\x45\xbe\x98\xe1\x97\x8b\x2d\xe6\xb3\x7b\xf7\x36\xf7\xee\x6d\xe8\x5a\x1f\xf6\x64\x29\xfc\x29\x47\xd3\x38\xb1\x26\x62\xe3\x3e\xa7\xe1\x33\x37\xe7\x34\x7c\xa4\x49\x92\xc4\xa6\x47\x35\x55\x54\x89\xd0\x98\xe7\xfe\x97\x56\x73\x3f\x33\x81\x0d\x21\xcd\xbf\x60\x94\x87\x86\x2c\x02\xb1\x68\x2b\x8f\x99\xdf\x3c\x50\xd7\xd0\x1e\x3a\x14\x47\x53\xda\xb8\xeb\x84\xaa\xcc\x6d\xd7\xce\x90\x0f\xb5\xeb\x78\x0a\x2b\xd6\x2e\x85\xab\x53\x53\xda\xfd\xdf\x67\x94\x40\x36\xe0\xcb\xfe\xae\x82\xd2\xb5\xdd\x20\xce\xd3\x9d\xd4\xd3\x44\x2b\xed\x36\x38\xb5\x58\x1b\xef\x6a\xb7\xca\x77\xa9\xb8\xc9\x7f\x85\xe1\x16\xe5\x73\xcf\xeb\x3c\xa5\x9e\xb7\x3d\x44\xfc\xaf\x65\xfb\xe0\x22\xd4\xa4\x47\x6c\x1a\x0c\x22\x13\xba\x0d\xca\xf9\xb0\x78\x4f\x96\xe2\x0b\xca\x26\x9a\xa4\x44\xd3\xcc\x46\xdd\xc0\x62\xe7\x45\x49\xe0\x72\xcb\x6b\x75\x5e\xae\x83\xba\x75\x87\xac\x50\x54\x57\xc6\x51\xa0\xf3\xa1\x89\x06\xb6\x07\x07\x00\x86\x4f\x28\xe4\x12\x5b\x92\x38\x6c\xf8\xc1\x99\x0a\xc6\x82\xff\x3f\x96\x9d\x88\xba\x3f\xa6\x12\xfa\x43\x99\xb4\x01\xa4\x89\xac\x1d\x7b\x30\xed\xb0\x17\xdc\x70\x8d\xac\x5e\x3c\xa2\x83\x46\xdc\x89\x95\xce\xef\xf3\xae\xcf\xe8\x83\xb8\x7b\x2d\xed\xa9\x3f\x1a\x13\x80\x89\x82\x25\x94\xa6\xa7\xd7\x34\x24\x89\x86\x01\x0b\xb0\x41\x49\x9c\xa8\xd7\x39\x7a\x4a\x79\x16\xd8\x30\x9d\x9e\xd0\x8e\x92\x86\xe7\x55\x0a\x0a\x2a\x95\x67\x84\xa6\xbb\xdb\xaa\xa7\x69\x92\x8c\xb5\xfc\x85\x6d\xe6\x2b\x71\xe7\x5a\x3e\xbc\xeb\x86\x71\x0a\x13\xfd\x83\x33\xf3\x9b\xef\xd3\x50\x6e\xbe\x5f\xd3\x57\xd9\x4f\x6a\x46\xae\x63\x21\x7e\x6b\x34\xf4\xfc\x46\x45\x00\xbd\xc0\x84\x88\xbe\xdc\x29\xe3\x54\x04\x2e\x7a\xd6\x49\x36\x0c\x29\x23\x27\x4a\x27\x37\x64\x6e\xb5\xb4\xe0\x12\x86\x81\xff\x45\x1b\xf1\xde\x53\x21\x6e\x1d\xc3\x79\xa1\x99\x66\x71\x77\x89\x1f\xbf\x76\x06\x13\x81\x7b\x55\x0f\xbd\xdf\xaa\xea\x9b\x87\xe1\xea\x94\xef\x8e\xe0\xa7\x70\x04\x89\xf1\xbc\x4c\xe5\xa7\x75\x35\x5d\x7c\xfc\xcb\x7b\x45\xf0\xff\x7b\x4a\x7a\xec\xf7\x8a\x67\x74\x19\x20\xcd\x92\x9c\x10\x3e\x0f\xa9\x80\x92\x01\xaa\xdc\x79\xc6\x9c\xc3\xfd\x7e\x40\xdf\x04\x24\xe5\x75\x1c\x1e\xf8\x5a\x20\x82\x50\xe4\xbc\x49\x4f\x99\x0d\x95\x2a\x79\x97\x4d\x56\x9f\xa6\xe3\x87\xeb\x86\xca\x91\xf8\xa1\xb6\x2f\x98\x3c\xf9\xc4\x9a\xda\x92\x3e\xa5\xe4\x4c\xba\x08\xbe\x5a\xf5\x46\xa1\xac\x3d\x8e\x69\x1e\x1b\x5f\xb2\xab\xc4\x78\x67\xde\xcf\x5a\xde\xe5\x71\x8a\x2a\x9f\x90\xe4\xbd\xab\x54\x95\xef\x73\xa4\x8d\xed\xeb\x0d\xa0\x0e\x10\x45\xdc\x47\x61\x1b\xa7\xca\x65\xd4\x64\x11\x91\xbd\xab\x8c\x26\x6f\x90\x30\x01\x8e\xc6\x1b\x2d\xbf\x1c\x3a\x26\x89\x59\x6e\x4c\x82\x50\x15\x90\x56\x62\x98\x41\x36\xdc\x49\xf7\x80\x73\xfa\xaa\xd2\x36\xdc\xa6\x38\x25\x6b\xda\x76\xe9\x6a\x4b\x35\x25\xa1\xed\x2d\xaa\x66\x35\x26\x68\x61\x90\x01\xc7\x0d\xfe\xd3\x5d\x0a\xa7\xb0\x95\x9e\x29\x3c\x98\x61\xbd\xf0\x8e\xe9\x19\x09\xc3\xd8\x24\xce\xd3\x29\x0f\xe6\xb8\xa2\xf4\xcf\x2e\x60\x7c\x90\xcc\xfd\x4c\x09\xc2\x24\xb6\x63\x32\x9b\x4e\xf9\x0e\xc4\x65\x05\xd9\x3a\x46\x7b\x2a\x1e\xd7\x27\xb5\xb5\x8a\x71\x62\x14\x12\xc5\xf9\xbc\x39\x74\xc9\xa7\xb5\x6b\x6f\x1c\x1a\x16\xec\x40\x01\xe8\xac\x12\x61\x3b\x5b\x53\xc1\x78\xbe\xd9\x8d\xb3\x2c\xc6\x8e\x85\x69\xf9\xb1\x82\xe5\x7c\x5c\xe7\xf2\x53\xee\xb6\xa1\x75\x2a\x3d\x58\x26\x90\x31\xe0\xd7\x0a\xc9\xb6\x14\x84\xf1\xc8\x66\x20\xb8\x89\x58\xd3\xd5\x42\x51\x8f\xae\xd6\xe9\x06\xa5\x79\xaf\x67\xa3\x69\x8f\xd2\x3c\xb3\x45\xe3\xda\xd3\x3e\x0e\xd3\x4c\x41\xad\xa8\x31\xe1\xde\x5c\x7e\x57\xdc\x0d\x4c\x18\x30\xb6\xc1\x29\xf7\x79\x15\x3f\x15\x56\xa5\x36\x0c\x6d\x82\xea\x17\xda\x01\x1b\x0a\x50\xfc\x4f\xb5\x72\xf1\x7b\xf4\x08\x45\xfb\xd8\xfb\xdd\xc7\x49\x56\xe1\x10\x2a\xbb\x8a\x23\x75\x4a\x23\x9d\xc4\x9a\x25\xf7\xa0\x71\x4f\xc7\x95\x70\xd4\x71\x6d\xb3\xd5\x35\x11\xbc\xd3\x11\x34\xdc\x69\xd1\xde\x82\x55\x7c\x44\x19\x38\x80\x26\xc9\xc9\xf2\x44\x4b\x7b\xef\x5e\x48\x47\xd9\x24\xb2\x2e\xb2\x93\x22\x25\x0d\xad\x88\x47\xd7\x81\xc1\xc7\x26\x0b\x28\x32\x9e\x9b\xe3\xbd\xe4\x6d\xba\x47\x7e\xed\x0a\x81\x49\x90\x09\x1d\x50\x28\x84\x2a\xc7\x3e\xe9\xad\xee\x4d\x2f\x88\x21\xa4\x89\x5e\xfa\x35\x2d\xbe\x79\xad\xa5\x1a\x1f\x69\xd0\x93\x4a\x21\x5a\x62\x97\xb0\xef\xf1\x9b\x96\x6f\x86\xa7\x79\x77\xf8\x38\xcd\x32\xec\xca\x37\x90\x33\xe3\x39\x5c\xc3\x3e\x86\x4a\x14\x20\x0f\x7c\xa0\xb5\x14\x02\xfa\x1c\xa6\x9c\x48\xf8\xa9\x6b\x7a\x4a\x29\x81\xef\x56\xb6\xe2\xdb\x40\x97\x91\x18\xb9\xdc\x6c\x91\x22\xb1\x0a\x1f\x56\xee\x34\xb1\x64\xf0\x4d\xd0\x77\x66\xee\x15\xaa\x57\x7c\x89\x6a\x2b\xe1\x60\x6d\xda\x9f\xcf\xdf\xc3\x08\x89\xcb\xb3\x3f\x26\xe1\xae\x04\x9d\xbd\x7f\xa7\x32\x9a\x65\xd3\xa5\x2c\x45\x48\x26\x02\x12\xa2\x3b\xe4\x37\x6a\x9e\x65\x89\x09\x58\x66\x19\x29\x0c\xa8\x43\x28\x49\xff\x44\xd1\xd7\xbf\x5d\x43\xd6\xde\xdf\xcc\xa3\x9e\x4d\x46\x54\xe6\x54\x4e\x9f\x34\xe6\xc2\x80\xf7\x55\x90\xfc\xb9\xf4\xb9\x27\x15\xc3\xe1\x47\x4a\x56\x06\x4a\x76\x98\xeb\xf7\x34\x5f\xf5\xaa\xce\x8b\x3e\xc1\xe3\x44\x99\xf1\x12\xc1\x20\xb1\xb2\xcf\xd3\x39\x0a\xe8\xcb\xa5\x96\xc2\x0f\x1d\xa1\xb3\x1b\xe7\xd8\xcd\x96\x27\xf9\xfe\x2d\x4d\x64\x47\xf9\x3e\xe8\x3d\x3d\x69\x5e\x60\xe1\x9f\x2b\x94\x66\xc0\xce\x35\x45\x0d\x7a\x1b\xdc\x00\x3e\x1f\x5b\x5b\xb0\x48\x2f\xce\x1e\x68\x2e\xce\x80\x0e\x51\xb1\xd9\x11\x39\x25\x89\x45\xe3\x3c\x4b\x60\x45\xb9\xb8\xe0\x85\xfc\x3d\x54\xfb\xb3\x96\xef\x84\xbc\x3b\xb1\x7b\x2e\xce\xc0\x58\x82\x7b\xe4\xa2\x56\x4d\xd7\x2c\x32\xd6\x2a\x60\x8d\x57\x4c\xd2\x7b\xc4\x13\x38\xd7\x31\x0b\xf1\xa8\xff\x1a\x83\xe6\xbc\x8b\x5d\xdd\x10\x82\x14\xac\x3d\xa9\xd7\xc9\x11\x42\x84\x38\xca\x6b\xb9\xe6\x50\xd8\xbd\x89\x27\x86\x83\xf2\x82\x96\xb6\xbb\x80\xc1\x05\x14\x7b\x63\xa2\xb6\x33\x3f\xdf\x4c\xcb\x73\x78\x84\x1b\x82\x70\xc4\xe6\xeb\xaa\x54\xca\x64\x2b\x36\xed\x41\x43\xf4\x87\xba\x92\x83\x44\x05\x17\x75\xa5\x0e\xa5\x60\x97\x83\x9e\x8d\x32\x40\x6e\x9c\x37\xa1\x83\xde\x01\x4d\x81\xbc\xa3\xce\xb6\xbd\x3c\x45\xc7\x63\x36\x7e\x70\x36\xc2\xca\x6c\x58\x19\x05\xd9\x28\xcb\x13\xc8\xa6\x63\xab\x66\x80\x0a\xde\xb0\xbe\x33\x56\xe4\x7f\x28\x3c\x8f\xf7\x4e\xcb\x9b\xb1\x70\xfa\x2a\xce\x42\x5a\x0f\xa7\xce\x96\x60\x64\x0e\x05\xa3\x7c\x44\x49\x95\xb6\x81\x92\x6a\x71\x79\xa1\x42\xe2\xf4\x39\x15\xf5\xbf\xec\x20\xe8\xee\x50\x92\x84\xdf\x6a\x69\xcb\x52\xf6\x9a\x47\x38\x75\x5c\x95\x1a\xd7\x34\xc5\xf5\x8d\x3a\xc9\xd4\x5e\xb0\x1c\x90\x84\x8a\x87\x18\x32\xbb\x8c\xdf\xd4\x91\x38\xc2\x98\x77\x2f\xcc\xbb\x1f\xb6\xbc\xe6\xd4\x0f\xeb\x6c\x2f\xed\x37\xf2\x60\xd9\x84\xe5\x83\xf5\xc1\xc9\xbd\x96\xc7\xdd\x82\x54\x21\x49\xbb\x82\xf9\x24\x36\x4d\xf3\x84\x0d\x53\x1c\xee\xda\xc9\x8d\x9e\x2f\xb4\xf3\xd1\x68\x8c\x8c\x8b\x01\xb4\x2d\x7f\xf6\x9f\x71\xad\xeb\xae\xc9\xba\xc4\xe8\x58\x58\x5c\xf0\xfe\x9b\xde\x8b\xb3\x0e\x6d\x03\xf6\x28\x9f\xa0\xc2\x1b\x57\x09\xe9\x5b\x8a\xf8\xdc\x33\x49\xd6\x89\x4d\x02\xe0\x29\x1e\xd6\xd5\x96\x6a\x73\x68\x31\x59\x7b\x28\xb3\x11\x8d\x3e\x9e\x66\x45\x17\xc5\xa7\xaa\xfe\xcf\xc9\x4c\x17\xbe\x18\x08\xbc\x99\x9b\x8f\xb3\x01\x88\x48\xa5\x1d\xc1\x11\xfd\xab\x36\xdd\x5d\x8e\xb5\x6b\xd5\x95\x8b\x4b\x64\xae\x3d\x00\xf7\x2a\x7e\x97\xfb\x18\x5b\xba\x1a\x0a\xbb\xd5\x40\x86\x44\xcb\x21\xfe\x35\x80\x26\x28\x47\xf9\x1f\x9f\xa2\xfc\x00\xbb\xee\x2f\xad\xed\x51\x8f\x26\x1d\xee\xa1\x6f\x60\x7d\xa2\x42\x81\x3a\x6f\xe2\x7a\x44\x53\xa7\xbc\x50\x84\xc9\x6c\x35\x8c\xe0\xe0\x64\x4b\x09\x5c\xc1\x49\x1d\x4d\xfc\x1d\xca\xd6\x72\x43\x23\x60\x19\xa7\x2a\x42\xec\x0a\x6c\xca\xc6\xe8\x38\xa8\xbf\xab\x96\xe0\x11\xfd\x20\x6d\xdf\xb2\xa8\x98\x8b\xf2\x3e\x51\x12\x70\x9f\x54\xf0\x07\x81\x19\x71\xa2\x2d\x92\x63\xbe\xf1\xf2\x3d\x4d\x75\xbf\xa4\x9c\x51\x46\x79\xda\x0d\xe1\xb3\x21\xc6\xd8\xdb\x55\x75\xf6\x86\xaa\xb4\x6b\x4f\xa8\x34\xce\xa3\x5e\x4a\xce\x80\x28\xa9\xff\x1c\x0d\x41\x7e\x53\xf8\xc2\xfd\x5f\x29\x35\xab\xbf\x2a\x74\xcd\x23\x88\x82\xae\x09\xb9\xc6\x82\x50\x80\x83\x42\xac\x83\x29\xc2\xdb\xb0\xe4\x03\x9e\x03\x5a\x8c\xa7\x26\x12\x11\x92\x3f\xe5\xc0\x1e\x91\x8a\x73\xb9\x99\x9b\x63\x18\xee\xad\x4a\x39\xbf\x4e\xf5\xa9\x1f\x44\xa8\x8e\xb2\x72\x42\xa1\x4e\x00\xe6\x26\xc9\x96\xf9\xcc\x56\x2a\xcd\x7c\xf3\xe0\xcc\xc2\xe7\x94\x30\xfa\xbf\x57\x24\x31\xe6\xe1\x70\x64\x8e\x91\x12\x87\x5e\x0f\xe0\x40\x39\x0f\xb3\x6b\x03\x18\x4f\x4c\xa9\xb5\x96\x17\xd9\x3d\x86\x94\x57\x8a\x3d\x34\xbd\x10\x89\x70\x50\x2b\x7b\x48\x19\xd3\x60\x96\x70\x87\x18\xc7\x0f\xa8\x32\xb8\xa7\x3f\xc5\x1c\x44\x4e\x05\xaa\x0c\x3e\x7d\x8c\x7a\x4f\xd2\x27\xa3\xac\x42\x95\x9a\x44\x64\xe4\xbd\xc2\x5b\xa1\x7e\xda\xf2\x74\x67\x93\xa6\x36\x4d\xa9\x5e\x4e\xd7\xca\x00\x67\x45\x04\x9c\x54\x44\x9e\x9b\x6b\xae\x04\x21\x94\xec\x24\xfa\xd6\xa5\x25\x49\x0f\x86\xd6\xf4\x00\x76\x62\xe5\x92\x2b\x4f\xd0\x6c\x65\x8d\x0f\xcd\x9a\xb9\x46\x25\x4c\x49\xe3\xfd\xc4\x4b\xec\xb2\x35\x22\x5a\x8d\x2d\xfc\x6e\xe1\x7d\x0c\xef\xb6\xfe\xfe\x03\x0a\xd8\x23\xdb\x0b\xe2\x8e\x89\xba\x86\xf6\x55\xc4\xd5\x6f\xe3\xd1\xf2\x9b\x8a\x1a\xd7\x8a\x49\x1e\x56\x66\x14\xc2\xc3\x75\x45\x73\xc5\x58\xd4\x4e\xeb\xe7\x50\xb0\xc1\xcc\x39\xae\x88\xce\xdf\x2a\x7c\x72\xf1\xad\x16\x55\xb0\x1d\x88\xd2\xe9\x9e\xb3\x97\x6d\x2d\xa2\x32\x18\x3f\x4a\x47\x0e\x2a\x95\x1f\xa8\x92\xcd\x3b\x45\x95\xde\x78\x70\xc6\xb7\x81\x55\x19\x46\xc1\x19\x4e\x2b\xa7\x06\x86\xea\x29\xa7\x2d\x39\x68\xfe\x56\x3b\x3a\xfe\xdf\x3a\x6c\x3d\x45\x58\x3d\x6c\xb8\x1b\x95\x61\xb3\x76\xbc\x47\xc5\xa7\x67\xb5\x86\xe3\x5f\xd0\xa5\x09\xd9\x52\x9d\xfe\x18\x33\x6e\x63\xd3\x14\x47\x89\x6d\x1b\xed\x21\x2e\x6a\x5a\x94\x60\xfb\x72\xa1\x98\xf8\xb7\x71\x93\x82\x2e\xf5\x85\xfe\x5d\x00\xd2\x61\x79\x6e\xa7\x4c\x8d\x1b\x47\xae\x7a\x0a\x77\xaa\x91\x8d\x14\x8f\x8e\x6d\x55\xc5\x9f\xca\x1f\x82\x79\xd7\xee\x76\x79\x44\x1b\x33\x17\x00\x9e\x27\xb4\x72\xfe\xe3\x6d\x0f\xff\x5c\xaf\x28\xc4\x29\xb9\xdb\x0f\x10\x9a\x8b\x9c\x8e\x92\x59\x62\x52\x14\x2b\x7b\x2a\x2d\x9f\x91\x09\x08\xf7\xc4\xa1\x0c\xf2\xa5\x3b\xc8\x97\xf8\x8d\xcb\xd7\xed\x68\x9c\xad\x4e\x6b\xf9\x1e\x85\xb8\x7a\x94\xce\x58\x86\x41\xd1\xb0\x60\x37\xfb\x91\xb7\x94\x0a\x42\x13\xbd\x8a\xf4\x06\xb1\x3c\xe3\x15\xf8\x4d\x5d\x60\x9f\x04\xe9\x52\x40\x66\x73\x33\xce\x6c\x93\xee\x11\xbd\xbc\x3b\x95\x06\xee\xd3\xca\xa5\x5a\x53\xbf\xc5\x59\xf8\x36\x0d\x15\xbe\x06\xf4\x3b\xbc\xce\x3c\x63\x39\x8e\xb2\x41\x1c\xf6\x03\xcb\x88\x64\xec\xed\xd3\x6b\x8d\xdf\x79\x51\x5e\x3b\x9c\x65\x3a\xcc\xb3\x5e\xbc\x22\xde\x17\xec\x85\x4a\x57\x24\xbe\xa8\xbe\x9e\x9e\x95\x83\x57\x66\x6c\x73\x73\x52\xb0\xd6\xf2\xae\x24\xd1\x38\xbf\xb9\xa6\x00\x69\x3d\xdb\xb5\xa3\x8e\x4d\xa6\x14\x11\xe1\x4f\x0b\x0f\x3b\xff\x80\x42\x12\xd4\x61\xde\x56\x5c\x89\xf2\x97\x6c\x62\xca\x24\x02\x4a\xc2\xce\xa7\xde\x75\x35\x1a\x9a\x3c\x78\x94\xf8\x82\xfc\x0f\xca\x36\x79\x18\x8f\x46\x06\x35\x27\xfc\x48\x43\x19\x8d\x4d\xd6\xd1\x88\x91\x43\xac\x54\xa9\xfb\xe1\x7c\xbf\xa1\xce\xfd\x1b\xaa\x11\x91\x94\x91\x77\x43\x99\x62\x5d\xd4\xe6\x9e\x17\x5d\xf1\xa7\x67\xc7\x79\xb6\x0a\x8b\x1c\x57\x76\x29\xff\x50\x7c\xb5\x34\x56\x00\x25\xef\xcd\xf3\x98\xfa\x48\xcd\x39\xae\x14\xa9\x84\xf2\x6a\x90\x32\x3f\xde\x56\x56\x24\x27\xd5\xd1\x7c\x45\x5d\x26\x09\x64\x3d\xa9\xce\x70\x10\x11\xd1\xd3\x7a\x93\x4e\x54\x59\x54\xb4\xdd\xb8\x2a\xbe\x73\x41\x04\xd8\x16\x0b\xf4\x16\xfd\x0a\x16\xcc\x34\xd0\xc8\x98\x0c\x8d\x36\x8d\x04\xbf\x59\x53\x84\xed\xd7\x69\x7b\x13\x2b\x2a\x35\x65\x18\xd1\x8b\xa4\xe5\x8f\x0a\xef\x92\xfa\x89\x16\x92\x12\x10\xb9\xdb\x06\x7c\x4c\x77\x43\x41\x78\x5f\x31\xdd\xb8\x93\xba\x5e\xac\x70\x47\xe8\xbe\x2b\x52\xee\x18\xc6\x6b\xee\xf1\x8c\xe3\x88\xc5\x0b\xbd\xa4\x72\x45\x6c\xf9\x09\xd5\xb4\xcc\x6c\x12\x8c\xb0\x81\x38\xf6\xae\x67\x2c\xb3\xb3\x8b\xc3\x1a\x94\xdf\x22\x49\xc3\xd6\x02\xe5\xe2\x0c\xd5\x90\xa0\xef\xcc\xf3\x4d\xf8\xcd\x0d\xa5\x76\xa9\x3a\x0d\xa4\x3f\xb9\x9b\xbe\xd5\x25\xf0\x7b\xb7\x88\x42\xbb\xc0\xd8\x7b\xbf\x5f\xc4\x25\x8a\xcc\xa5\xb6\x58\x7c\x8f\x7e\x0a\xad\xa8\xb7\x0a\xe5\xaf\xf1\x27\x4a\x1a\xe1\xaa\x2b\x4f\xa6\x99\xe9\x04\x61\xf0\x2a\x13\x77\x10\x3d\xa1\x4e\x22\xb3\xd7\x9f\x17\x57\x5a\x95\x5e\x6c\x32\xb0\xe9\x2e\x5f\xc5\xfb\x50\x4f\x84\xdb\x18\x37\xdc\x08\xd2\x0e\x34\x39\x38\x21\xc2\x3f\xdc\x69\xa9\x87\x79\xba\xf0\x5c\xc7\x1f\xa2\xba\xc2\x68\xd2\x07\xb6\xea\x57\x86\x36\xb1\x3b\x3d\xed\x6c\x0b\xb8\xb3\xf1\xd5\x59\xbf\xde\x5e\x5c\x14\xbb\xd3\x67\xda\x9e\x6f\xb4\xa9\xe2\xda\xf5\x4a\x96\xd2\x35\xc9\x6e\xf5\x6d\xdb\x19\xf4\x2f\x46\xfe\xbe\x37\xc8\xd5\x0f\xf4\x1e\x8e\x57\x56\x5c\x4b\x85\x79\x20\xbf\x72\x62\x40\x81\x10\x32\xb7\xeb\x85\x52\xb2\x3d\xad\x0f\xe1\x0e\xb6\x7b\xa7\x53\xec\x48\xdd\x17\x55\x4f\x1c\xe8\xbf\x1e\x22\x58\x8d\x3a\xe2\xd7\x13\xc8\x9e\x72\x4f\x24\xf1\x1e\x96\x18\x14\x5a\x58\xc3\xb9\xaa\x9d\xa8\xd3\x96\xb0\xbd\x01\x1a\x04\x5c\xda\x6b\x69\x10\x8a\xca\x04\xc9\xea\x3d\x88\xd1\x05\x41\x7d\x67\xa7\x06\x1a\xdf\x52\x56\x20\x6c\xb0\x89\x71\xd8\xac\xe3\x35\x0f\xe3\x50\xac\x49\x1d\xad\xd9\xc1\xae\xd7\x8b\x07\x45\xc0\x66\xd4\x31\x69\x6a\x7a\x31\x3e\x5a\x01\x8e\x08\x8b\xda\x0f\x74\xb0\x12\xd0\x9f\x89\x2d\x6f\x43\xf9\xf5\xd6\xb5\xb6\x7b\x41\x3a\xce\x33\xf8\x5f\x03\xbd\xb4\xe9\x5b\xf2\xd9\x30\xce\x53\x13\xa1\xee\x8d\x73\x83\xb5\xdc\xc4\xf6\xd4\x2d\xc3\xe2\x19\xf2\x62\x04\xec\xe8\xff\xd7\xf6\x14\x95\x71\x1c\xae\xa6\xd9\x6a\x62\x23\x3b\xa5\xce\xba\x9f\x16\x5b\x5b\x64\x22\x7a\xb2\x47\x0b\xbf\x64\x5f\xa0\x6d\x1b\xe1\xfb\xe1\x02\xf8\x55\xc9\x8c\x95\xad\xb0\x36\x65\x79\x1d\x5a\xb3\x38\x4d\xfe\xb2\xa5\x7a\xcc\x47\x0a\xc5\x4f\x39\x82\xa4\x0e\xa7\xdc\x3d\xca\xf6\x64\x46\x96\x77\x82\xa1\x15\x1f\x05\x65\xd1\xf9\x3c\x1f\xe5\x1f\x2b\x43\xe6\x1f\x20\xfe\xc6\xfa\xdc\xa0\x56\xac\x74\xbe\x1b\xfb\xe6\xcb\xe3\xb2\x4c\xe7\x70\x2a\xb0\xfc\x2b\x62\xbf\x7b\x5a\x8f\xfd\x02\xb6\x45\x41\x3e\x94\xc7\x20\xbe\xfd\x23\x1a\x2c\xfc\xd1\x8f\x94\x5d\xf7\x11\x54\xbb\x05\x0e\xbf\x35\xbd\xde\xbb\xb7\x99\x66\x49\x3c\xe4\x22\x13\xf7\x0e\x30\x73\xa4\x91\x20\xa1\x67\x3c\x16\xce\x01\x7b\x4d\xd2\x33\x11\xdf\xc9\x6a\xaa\xd0\x47\x3c\x86\x0c\x98\xf5\xa2\xf8\x4d\x25\xe5\x33\x69\x9a\x8f\xf8\xa9\x23\x57\x03\xdc\x0b\xd8\x21\x28\x4f\x63\x65\x1f\x75\x65\xba\x28\xce\x88\xae\xa9\xcb\xe1\x0d\x27\xe8\xbe\xee\x3c\x66\x22\x9b\x67\x89\x29\x37\x7b\x2e\xcf\x21\x78\xfc\xb9\x42\x5b\xfc\x7c\xb2\x05\xbd\xd0\x8c\x23\xa0\x2e\xf1\x78\xce\xd2\xa3\xe6\xd7\x0a\x1b\xf2\x4a\xde\x0b\xba\x81\x09\xb7\x39\xcf\x09\x4b\xa8\x05\x13\xd2\xb6\xc1\x1d\xbe\x96\xee\xf6\x6d\x69\x35\x2c\x2c\x2e\x34\xf7\xcd\x3f\x53\x3e\x43\x44\x23\x67\x15\x62\x9a\xfb\xfb\xe2\x34\xe6\xfd\x17\x2f\x2a\x01\x85\xab\xc0\x4b\x21\x41\xba\x44\xfb\x3f\xb6\xa8\xa3\x74\xb6\xe0\x01\x72\x1f\x0d\x7b\x1d\xc7\x38\x6c\x40\x8e\x53\x07\x63\x7d\x06\x09\x2a\xfa\x83\x0f\xb7\x95\x5a\xe6\x9b\x78\x7c\x48\x88\x36\x34\x91\x12\x6d\x53\x04\x6c\x97\x90\xea\x49\xcf\xdf\x17\xd6\xb7\x11\x9e\x01\x17\x7c\x0b\xad\x50\xe5\x2c\x24\x8d\xa3\x27\xd7\xbc\xad\x59\x3a\x8a\x97\xac\xd6\x62\x3e\xaa\x3d\x27\x8f\xaa\x42\x5c\x62\x43\xea\x98\xa5\x3b\xcb\x87\x24\x9d\x7a\x8f\xb0\xbb\xa1\x70\x15\x8c\x69\xc1\x39\x08\xb3\x19\xbc\x86\xa9\x23\x40\x1d\xd3\x6d\xa7\x48\x60\xc8\xa4\x8a\xe5\x96\x70\xc0\x3d\x4a\x15\x51\x40\x9d\x9f\x68\x37\x94\x6f\xde\xd6\x13\x64\x11\x7b\x39\x55\xad\x10\x58\x5c\xc5\x63\xc0\x24\x67\x49\x6a\x7c\x7a\x53\xa1\xe2\x12\xdb\x5d\x0a\x6d\x8a\xa4\xa1\x92\x69\xa2\xe4\xf4\xaf\x5b\x9e\x57\x01\xb7\x37\xc1\x03\x7b\x97\xed\x60\x30\x70\xde\xde\x2c\xd9\x50\x54\xf4\x1b\xb6\xa6\x0d\x2f\xce\x1e\x68\x06\x51\x37\xcc\x7b\x12\x45\x22\x6c\x3a\x82\x61\xe7\x37\x75\x2e\xeb\x9d\xc4\xb0\x4f\x2b\x0e\x90\xcf\x0a\x7f\xb0\x7c\xa6\x9e\xd3\x8a\xc9\x6c\x32\x20\x7d\x07\x67\xb4\x0b\x25\x10\x7e\xdd\xf2\xb9\x93\x86\x33\x4f\xa9\x16\xf0\x51\x5d\xa6\xe0\xd0\x14\x73\xf2\xa6\xd2\x7a\x4e\xec\x20\xc7\x9c\x78\x48\xb5\x4d\x51\x93\xc0\xd8\x5f\xa7\xde\xa3\xeb\x77\xc2\x04\xb3\x7c\x4e\x78\x1a\x5c\x74\x70\xa9\x8a\x03\xc7\x9e\xd2\xea\xb6\x26\xcd\x58\x47\x0a\x18\xa9\x13\xda\x66\xe7\x4f\x14\x3b\x83\x75\x3b\x84\x4e\xff\xa8\xc7\x3f\xfe\x06\x5a\xe4\xa8\xed\x9c\xd2\x96\xa3\xa7\xea\x48\x0c\xe9\x6f\xb0\xce\xb4\xf3\x42\x75\x93\xf6\xe7\x0a\xaa\x9b\x44\xe9\x23\x1e\x33\xb4\x7d\xcd\x85\x12\xdf\x64\x02\x24\xd7\x70\xd7\x3c\xc7\x15\xcc\x51\x3c\xb4\x7b\x98\x29\x08\xf9\x7f\x5d\xdb\x17\x1f\xbb\x57\x28\x3f\x02\xc4\x4f\xa8\x40\xdc\x57\x11\xdd\xb7\xbe\xa8\xb9\x91\x17\xb6\x76\x57\x0f\xce\x3c\xdf\x9c\x9f\xff\x1c\xce\x68\x91\xce\xc5\x8f\x20\x9e\x84\x36\x3e\x1e\xeb\xf6\x35\xdf\x57\xc6\x8d\x70\xed\x08\xc6\x63\x98\xf8\xff\xa4\x50\x1c\x2d\x76\xe9\x64\xaf\x9c\x96\x66\xa7\x23\x4e\x45\x4c\xb6\xb3\x4d\xa7\x3f\xb6\xc7\x5b\x2a\xfe\xf9\x21\xf6\x40\xd1\x75\x29\xf7\x2d\x54\xa2\x1a\x6b\xe5\x2e\xcd\x55\x5f\x5d\xcc\xbc\x40\x07\x39\x32\xeb\x6b\x38\x6a\xc5\xd4\x5a\xed\x93\x57\x51\x2f\xc1\x9f\x6d\x9b\x90\xac\x9f\x9b\x6b\x9a\x80\x85\xe1\x25\x34\xf7\x2e\xd2\x17\x38\x93\xd6\xe6\x34\xc8\x0d\x77\xb6\xbd\xde\xc7\xca\xd0\x8c\x48\x11\x12\xe3\x78\x49\xa1\xf2\xbe\x8b\xb9\x25\x22\xef\x72\x5e\xc5\xdd\xae\x49\xbd\x6d\x28\xc7\x5c\xb4\x61\x4a\xfc\x55\xd3\x13\x1c\x99\xd0\xac\xa6\x01\x3b\x2e\x73\x05\xa8\xf0\xf5\x96\x3b\x9e\x26\x97\x99\x24\x4b\x81\x41\x47\xc9\xfa\x51\x94\x3c\x10\xa9\x5d\x41\xd4\x05\x48\xd0\x23\x54\xac\xd2\x08\x6e\xe4\x48\xef\x4f\xa0\x62\xe6\xe6\x16\x49\x93\x25\x88\xba\x0e\x8e\xe3\x18\x8a\x5e\xcc\xa9\x26\x0d\x98\x6d\x5a\x93\x84\x81\x65\x12\x89\x33\xd5\x2e\x1f\x13\x36\x95\x5b\x8a\xde\xfd\x1e\x0e\x27\xb1\x40\xab\x41\x58\xd9\x43\x5d\x1b\xba\xbe\x25\xea\x41\xe8\x5b\x4a\x20\xd2\x50\x46\xd7\x35\x62\x64\xa3\x60\x9c\x4e\x79\xf9\x4d\xde\x02\x10\x01\xde\xc3\x04\xc0\x69\x3c\xdd\x96\x10\x2c\xb3\x21\x2b\x8a\xe2\x7c\x7b\x43\xa1\xc9\x27\x5b\xb8\xcf\x36\x6d\x9a\x05\x23\xe3\x50\x60\x52\x87\xa5\x09\x2c\xdc\x22\x5f\xed\x1a\x27\x76\xd9\x46\x59\xfa\x40\x57\x9d\x47\x1d\x0e\xd7\x5a\x36\x21\x16\x8b\x97\x29\x6d\x93\xe8\xa1\x3f\xdc\xd5\x97\xc6\xb7\xef\xc8\x9a\x60\x64\xc1\x3d\xd1\xa6\x18\xcc\xa0\xc4\x16\x2c\xc3\xe8\x6a\x97\x61\x1c\xf7\xe0\x51\x49\xcf\xeb\xf7\x9f\xa0\x0d\xc2\x11\x97\xe7\xb5\xa1\xbf\x2b\xf7\x7c\xc1\x0d\xde\xd0\x24\xc9\xaa\xe2\x3c\x72\x05\x5b\x12\x47\x85\xcf\x4d\x82\x30\x9c\x52\xf5\x7a\x66\xaf\x8a\xb6\x62\x43\x0c\xe2\x77\x7d\xac\x24\x0f\x3a\x36\x18\x54\xd0\xe6\x67\x54\xe3\xfa\x8c\xfa\xfa\xd0\x9a\xd4\x52\xbe\x84\x64\xe4\xb4\xde\x58\x6f\x28\x9b\xa4\x1b\xca\x50\x64\xb2\x32\x7b\x70\x86\xdc\xfe\xdc\x2a\x10\xc1\x82\xf2\x33\x62\x31\xbb\x35\xdc\x7f\x71\xa1\x69\x3a\x71\x9e\xe1\xe6\x9c\x25\xe6\xa2\xb7\xaf\xf1\x2e\x3a\xb5\x09\x6a\x9a\xe5\xe3\x00\xed\x20\x57\xb4\x29\xef\x58\xca\x4e\x12\xa3\xaf\xc4\x49\x12\x48\x43\x48\x04\x84\x7c\x0a\xb7\xab\xed\xb7\x73\x3e\xca\xb1\xb9\x4e\x02\x3f\xe6\xe7\x17\x9a\xc1\x68\x6c\xd8\xe9\xa1\xa2\x35\xc8\x6f\x5a\x5e\x18\x70\x6c\x92\x2c\xe8\x06\x63\x13\x65\xe9\x2e\xda\xf2\xb5\xb0\x1c\xb6\xa1\xeb\x74\x93\x22\x44\x07\x29\xc6\x16\x5b\x62\xfb\x30\xf3\xdb\xa8\x06\xdf\x6d\x29\xb5\xc8\x9f\x20\xf3\xe4\xa4\x35\xcd\x48\x61\x5c\x40\xea\x0d\x6f\xb7\x8e\x28\x17\xe7\xdb\x35\xe4\x90\xfc\x46\x09\x3d\xff\x41\xe1\x59\x7d\x7f\xe0\x1d\x13\xe3\x34\x1b\xc7\x0c\xca\x72\xac\x85\x45\xf7\xba\xce\xe5\x34\xcb\x47\x65\xe6\xef\x9a\x16\xa8\x67\xf1\xeb\x9a\xa7\xf8\x7c\xb3\x9f\x58\x86\x0a\x20\x65\xd7\x2a\x68\xac\xab\x8e\xca\xe7\x4d\x25\x7d\xbe\x64\xc7\xd9\x43\xb4\x5d\x0a\x9e\xb2\xe1\x7c\x45\xaf\xd3\xb9\x21\xd0\xe4\xf2\xb0\xe4\xd7\x2d\x6f\x66\x8b\x0d\x11\xa5\xba\x8f\xf0\x23\xfc\x45\xad\x0a\x2d\x64\x6c\x12\xa2\x53\x88\xf1\xd9\xc7\x34\x50\xfc\x5a\x29\x9c\x07\x51\xcf\x1e\x62\x71\x04\x65\xd0\xe6\xdc\xda\x94\x37\x7d\x66\xc6\xc3\x98\x49\x77\x8e\xfa\xe3\xce\xd1\x2a\x18\xdc\x84\x3d\x52\x92\x15\xa4\x88\x5a\xfa\x17\x95\xf4\xf8\xcd\x96\xaf\x0e\x41\x46\x5e\xe0\x24\x5b\x8f\xac\x83\x33\x2f\x35\x83\x24\xb1\xa1\x5d\x36\x8c\xc8\x94\x74\xd2\xa7\x10\x93\x27\xc4\xbe\xf9\x66\x98\x77\x97\x68\x33\x46\x14\xf2\x7e\x4b\x29\x59\xbd\xef\xf6\x45\xb2\xd2\xc1\xf7\x22\xa4\x81\x49\x36\xbf\xae\xc8\x49\xa4\x79\x28\xce\xd2\xc8\x07\x91\xc1\xf1\xeb\x9a\x53\x6e\xa1\x69\x0f\x0d\x83\x4e\x20\x40\x35\x19\xb0\x29\x6d\x84\xf7\x79\xe9\x4d\x45\x59\x62\xc7\x89\x8d\x6c\x9e\x04\x65\x1e\x3c\xef\x77\x67\x4f\x08\x9a\x6c\x32\xcf\x1e\x20\x5f\x30\xe0\xbe\xb1\x75\xfd\x85\xea\x58\x4c\x2b\x97\xaa\x0a\x0b\x3e\x8e\xba\xb6\x67\x7b\xe4\x52\x2e\x94\x98\xf2\x41\x20\x2a\xbe\xd8\x52\x0c\x96\x5b\xc4\x1f\xe2\x7f\xa8\x78\xda\x1d\x53\x6a\xab\x7d\xdb\xdb\x43\x13\xdc\x69\x47\x95\x93\xd4\x01\xeb\x1c\x92\xf8\xdf\x23\x22\xc3\xa6\xf0\x96\x4e\x18\xd6\x95\xf1\x15\xab\xb7\xe3\x7c\x81\x98\x08\xb2\x11\x16\x8a\x92\xc9\x4f\x03\x2b\x0d\x78\x84\xc6\xd2\x8d\xf1\xfd\xb1\x4d\xdd\xe1\x3f\x56\xab\xb5\x4c\xb5\xfd\x41\x12\xe7\xe3\x86\x86\x9b\x30\x0d\x46\x2a\x25\x75\x15\xbe\x6e\x1c\x65\x49\x1c\x22\xdb\x42\x5c\x70\x5d\x01\x9f\x1e\xd2\x4d\x9a\x9b\x15\x87\x10\xf0\x34\xc8\x19\x75\x37\xd5\x22\xd8\x85\x82\x16\x07\xc6\x67\xba\xed\x49\x76\x6f\xeb\xea\xd8\x79\x55\xa1\xff\x16\xe2\x04\xf1\xae\x52\x2c\x9a\xd3\x64\xa1\xe8\xcc\x2d\x5e\x74\x92\x99\x6f\xbb\xc3\x66\x18\xa7\x59\x10\xda\xdd\x9e\x03\xc2\x4e\x6f\x60\x9d\x6d\x14\x4a\x8a\xbe\x50\x2e\x5f\xeb\xca\x5d\xf1\x3a\x9e\x35\x7e\xe7\x14\x4d\x23\xf9\x23\xba\x79\xd4\x70\x7e\xa0\x24\x68\x7e\xa5\xed\xb3\xae\xb4\x1b\x3f\xa4\xfe\x6c\xb3\xa5\x05\x32\x2e\xd0\x7e\xa8\xcb\xa1\xce\x19\xc9\x9b\x9d\x7c\xac\xdc\x21\x4f\x60\x7e\x60\x9d\x9f\x9f\xa0\x10\x2c\xce\x34\x3b\xb6\x1f\x27\xf6\x21\x27\x2a\xf0\xfb\x4f\xd3\x20\x63\xbd\x9c\xa0\xc4\xc5\x59\x83\x1c\x9c\xd1\xda\x2e\xb3\x9e\xd2\x5e\xfe\xb8\x83\xb8\x96\x37\x2f\xf4\xce\xba\x23\x38\xc9\x3d\x2f\x4e\x52\x70\xcf\x9a\x58\x6f\x3d\x3d\x21\xe9\xf7\xe2\xc2\x0e\x8c\x82\x58\x25\x96\x7f\x8e\x31\x85\xa8\xa9\xe0\x82\x1b\x4e\xb7\xe5\x13\x8c\x35\xe2\x82\xbf\xf6\x9d\xdb\xee\x30\xb0\xcb\x82\x29\x17\x1c\x3d\x5d\x8a\x40\x77\xfc\xae\x90\x06\xa3\x71\x18\xf4\x57\xd1\xd6\x44\xca\x7f\x18\x45\x2b\x7e\xa3\xd4\x2d\x23\xbb\x62\x12\x6c\xb1\xb2\x1a\xcb\xab\x91\xf3\xcd\x8b\x0e\x04\x69\x9a\xdb\xf4\x31\x05\x61\xde\xa4\x51\x56\x66\x69\x7c\x2d\xd7\x5a\x5e\x3b\xed\x24\x7e\x57\x95\x08\x16\x9c\x3f\x7e\x39\x27\xb0\xb4\xbf\xdf\xf2\x86\x0c\x7c\xf8\xf2\x27\x68\x73\x46\x90\xf3\x37\xde\xf0\xe1\xf2\xbf\xd5\xb0\x94\x8f\x78\xae\x55\xa4\xf9\xa5\xa1\x3d\xc9\x3e\xd9\xdf\x8c\xac\x15\xbc\xa2\xe0\xd1\x14\x9f\x52\xfb\x66\x2d\xe7\x61\x64\x13\xd3\x09\x2d\xc8\xb9\xa8\xa3\x31\xbf\x0a\x21\x3d\x7a\xe6\xbc\x95\x9e\x9a\x08\x4e\x16\x67\xca\xa8\x7b\xc4\x3f\x27\xac\x5c\x9d\xeb\x79\xbc\xc0\x28\x8e\xe2\x71\x1c\x06\x36\x05\xe7\xcb\x95\x3b\x9d\xaa\xc1\x45\x15\x0f\x1f\xc7\x0f\xa3\x92\x78\x16\x9b\xa3\xb3\xc4\x9b\x9b\x73\x23\xa8\x98\x0d\xb7\xeb\x2c\x9a\x33\x6b\x23\x33\x80\xd4\x07\x6b\xd4\xd1\xa8\x8b\x5e\x5d\x8d\x65\x48\x27\xef\x74\x20\xe6\xd8\xf0\x34\x5d\x88\x4a\x88\xe5\x53\x4d\xa9\xac\x9f\x18\xe8\xce\xe2\xa1\x1f\x6f\xf9\x48\x70\x52\x82\xa4\xcc\x56\xc7\x26\x64\x34\x75\x6d\xa7\xa6\xda\x1e\x5f\x69\xf8\x62\xc5\x61\xda\xbd\xf8\xb5\x4a\xef\x06\x65\xfa\x64\x4d\x42\x7f\x8a\x34\xf3\x0e\xfd\x29\xbf\xae\x1b\x9e\xb4\x0b\x3e\x6c\xc3\xf9\x16\xb1\xee\x9d\xd8\x7e\xbb\x6c\xdf\xa6\x66\x64\x95\x75\xd0\x69\x6d\x1d\x74\x7a\xe2\xcc\xdf\x37\xdf\xcc\x92\x60\x34\xe5\x61\x54\x40\x6d\x88\x2c\xbb\x36\x44\xf9\x9c\x62\x06\xb2\xc6\x23\x8b\xd0\x49\x99\xc9\x53\x90\x2e\x4c\x3c\x31\xe7\x45\x33\xb4\x61\x48\xf9\xb6\xab\x6e\x96\x17\xc8\x5d\xc9\x96\x82\x17\x9c\x57\x61\x7e\x3a\x34\x2b\x0d\xcd\x6a\x3c\xa7\xe5\x99\xce\xa9\xb6\x5a\xdc\x8d\x1b\x1e\x8a\xc3\xd5\x66\xb1\x53\xaf\xd5\x98\x71\x8a\x31\x28\x70\x6e\x47\x6d\xde\x49\x28\xaa\x2e\x85\x52\xde\xd6\xac\xca\x15\x1b\x96\x4f\x87\xa8\x61\xae\xd0\xcc\x5b\x80\xec\xec\x1e\x69\x3b\x0a\x50\x55\x7f\x49\x76\x64\x60\xd5\x64\x7b\x56\x4a\x9f\x41\x9a\x25\x41\x27\xcf\xe2\x04\x05\x0a\x80\xc7\x37\x5a\x3e\xdd\x79\xbb\xc2\x43\x7e\x46\x75\x74\xba\xf1\x68\xc4\x46\x29\x74\x58\x8b\x9a\x4b\xf9\xf7\x52\x33\xf3\x20\xee\xae\x25\x40\x42\x9c\x68\x37\x04\x04\xa5\xfc\xba\x42\xf4\x33\x51\x0a\xe1\x77\xf2\xef\x97\xa4\xcc\x9f\xfb\xaf\x17\xaa\xd3\x74\x0b\xf5\x38\xc9\x89\x68\xbf\x40\x26\x72\x0c\xfb\x85\xc8\x2f\xf9\xdb\xba\xe4\xbc\x88\x71\xc2\x0e\x4d\xd4\x53\x2a\x5b\x8d\x35\x0f\xf7\x69\xb4\x95\xcf\xae\x09\xc2\xa0\xdf\x47\x91\x05\x3b\xcf\x1b\xb8\x12\x7e\xd3\xf2\x3c\xa1\x38\xcf\xfa\x61\xbc\xd2\xf0\x82\x40\xb7\x68\x6c\xa4\x04\xe5\x27\xd4\x52\xd0\xdb\xa1\xca\x09\x1f\x28\xe1\xbf\x8f\x2a\x38\x77\xfa\x25\x36\xf1\x41\xba\x8a\x9d\xfa\xcd\x3a\xd5\x8f\x9e\xcd\xe2\x1c\x7d\x62\x7c\xef\x2d\x65\x56\x72\xcb\xb5\x11\xc6\x26\xcd\x82\x91\xd8\x6f\x70\xa9\x56\xed\x71\xe7\x8a\x5f\x9f\x8c\x12\xf6\x6f\x91\xe5\xa2\x5f\x41\xf6\x7f\x46\x83\xdf\xce\x38\x89\xcc\x74\x29\xe8\x71\xd7\x41\xd8\x15\x6c\x56\xc9\x6f\xea\xf2\xdd\x6e\x18\xe7\x99\xf2\x73\xae\xb6\xff\x1e\x24\x5e\xd3\x35\x54\x92\xa0\x96\x8c\xd4\x42\xe9\x97\x00\x7d\xbb\x82\x65\x83\x38\xfc\x0d\x45\x06\x89\x6c\x99\x8f\xa2\xca\x27\x8e\xf4\xaa\xe0\x82\x30\x08\xcf\xf9\x9a\x02\x70\x77\xc3\x38\x1b\x5a\xd2\xed\x7d\xde\xb1\x5a\xca\xef\xc0\x62\x3a\xad\xec\xb3\x59\x8a\x91\xff\xa1\x78\xc4\x83\xfa\x9f\xdb\x31\xe5\x2d\x5d\x6f\x28\x23\xf8\x4d\xcd\x2b\xe6\x9d\x0c\xdb\xda\xfd\x96\xd7\x81\xbc\xa8\xa9\x0d\xc3\xb8\x67\xd5\x36\x71\x4a\x81\x5e\x4e\xa9\x2c\xff\x15\x13\x3d\xa7\x72\xce\xeb\xb8\x57\x7e\x33\x51\x50\x7a\xf9\xe5\x66\x66\x7b\xbd\xd5\x69\xef\xf9\xf1\x23\x5c\x8d\xb4\x3f\x94\xea\x16\xf1\x77\xd9\x21\x47\xb1\x4f\xb3\xc4\x9a\x2c\x48\xd1\xa5\xf5\xe8\x05\x25\x81\xa1\x2e\xaf\x3c\x34\x76\xf8\xbe\x09\x47\xe7\x4c\x12\x44\x70\xaf\x5a\x3b\xd2\xd5\xbf\xaa\xfd\xbb\xeb\x80\x4c\x44\x97\x0d\xba\x54\x2a\xf5\x3f\xdc\x58\x53\x57\xd4\x98\x10\xbf\x38\xf0\x82\x93\x06\x2c\xc7\x15\xf9\xff\x09\x45\x2d\x39\x31\x11\x4a\xff\x66\xd3\x64\x99\xe9\x0e\x19\xea\xe9\x7c\x74\xca\x87\x29\x3e\x3a\x5b\xdb\x03\xb3\x07\x9a\x83\x1c\x3f\xe1\xc6\xc6\xa3\x3c\xea\xda\x72\x7d\x13\x55\x16\xee\xba\x5a\xb8\xeb\x4e\x74\x04\x02\x8a\x4e\x74\x04\x38\x7c\x7e\x5d\x13\x91\xbc\xd4\x5c\x0d\x6c\xc8\x0d\x42\xe7\xe8\xe2\x00\xf0\xe7\x26\xce\xb8\xf9\xf9\x66\x3a\xf6\x4e\x37\x4e\x17\xd9\x49\x36\x9e\xd1\x14\xb7\x3c\x89\x6c\x0f\x91\x9f\xaa\xbc\x08\x49\xf0\x36\xe7\xec\x4e\xff\xde\x31\x92\xb6\x41\xb8\x98\xa9\x1c\x34\xf8\x2c\x8e\x85\xd9\x20\x1c\x0f\xbf\xaf\x2e\xfc\xa3\x79\xe5\xb6\xf9\x1f\x31\x83\x34\x47\x16\x69\xd4\x1b\xc5\xa3\x6e\x0f\x08\xcd\xca\x93\x74\x13\x82\x8c\xf4\xa6\x0c\x67\x14\x0a\x82\xf9\xcf\xdc\xbb\x40\xec\xe9\x4a\x32\xfb\xa4\x86\x71\x99\x6a\x11\x38\xe6\xdf\x2a\xbc\x69\x36\x4a\x88\xa2\xfc\x46\x67\x97\x53\x84\x2c\xa7\xa1\xd8\xe5\xd3\x03\x90\xb8\x0a\xc3\x82\xbc\xe0\x28\xe0\x00\xc8\xb1\x38\x57\x66\x0b\xe1\x96\xf7\x84\xfd\xfe\xfb\xb8\x63\xe9\x6c\xf9\xc3\x38\xb5\x63\x93\x18\xe7\xca\x8b\x10\xef\x8e\x52\x59\xe6\x0c\x52\x1c\xab\xb6\x3e\xf0\x85\xc5\x85\x72\x7a\x07\x5d\xc5\x6d\x3f\xa9\xb8\xed\x27\x6b\x24\xe4\x67\x9b\x69\x1e\x60\x33\x17\xb0\x48\xc3\x89\x29\xad\x2b\xd2\xf7\x38\x89\x3b\xa1\x1d\x3d\x82\x02\x09\x07\x49\x7c\xfb\x08\xfc\x5f\xa7\x73\x14\xc7\xfd\x75\xca\xce\x80\xcb\xe4\xae\x20\x86\x05\xc2\xde\xe8\xd3\x42\x63\xd4\x09\xbc\x7a\x30\xc2\x05\xc5\xae\x67\xa6\x91\x90\x04\x69\x1c\xf1\x1b\xc7\x95\x64\x45\x9a\x27\xcb\x36\x08\x43\x13\x75\xb9\x07\x80\x99\x7a\xb9\xf0\xa4\xb3\xcb\x2a\x0a\x18\x05\x83\x72\xa4\xe9\x30\x52\xb2\x65\xfb\xbd\xaf\x93\xc3\x4f\xdc\xac\xe9\x65\x2d\x34\xd3\x71\x9c\xa7\x72\x3c\xa3\x9e\x70\xa4\xa5\x60\xe1\x47\xaa\x14\x24\x9b\xfe\x32\xa5\xa2\xa8\x80\x6d\x6f\x97\xf3\xbf\xc2\x7e\x42\xbb\x66\xfb\x1a\xcd\x20\xd9\x35\xa8\x4d\xea\xf8\xb4\xe5\x84\xc4\x83\x64\x16\x20\xfe\x65\x67\xdb\x2b\x9d\x37\x20\xbf\xeb\x94\x82\xcb\xd9\x82\x73\xf9\x7b\xad\xc6\x97\xbe\xe4\x3c\x20\x7d\x6c\xfb\x30\xa1\x43\x90\xd3\xed\xa2\xf0\x0a\x0b\xe6\x0e\x86\x03\x29\xfb\x4d\x5e\xfd\xe8\x67\x32\x8c\x8e\xa5\x08\xd1\xd8\x45\xa1\xea\x1a\x46\x40\xf6\x6b\x5f\x36\x6c\x50\xa7\x08\xa5\xea\x4b\x64\x2e\x22\x5a\x10\xb4\xaa\x45\x28\x8f\x56\x16\x0e\xdb\xdd\x64\x0e\x80\x79\x72\xcc\x85\x2b\x65\x70\xb3\x24\xa3\x2e\xe7\x3f\x8d\x05\xbf\xa9\x2d\xcc\x99\x34\xcd\x93\x72\x66\x08\x8b\x1f\x35\xc9\x53\x5a\x62\xe7\xd4\x84\x7b\xe0\xbe\xf9\x66\x2f\xa6\xfd\x99\xa3\x0e\x5c\x9e\x84\x20\x9e\x3e\xd0\xb3\x23\x98\x4b\xe0\x8c\xc0\x53\x69\xb4\x15\x05\xa9\xb1\xa6\x00\x02\x71\xb8\xdb\x6f\xfa\x0f\x11\x36\xd4\x41\x9e\xcb\x1f\x90\x3b\xa1\x7b\xc4\x29\xbe\x6b\xad\xaa\xeb\xe2\x1a\x07\xff\x07\xb8\x12\xd8\x1d\xd8\x39\x00\xc5\xa6\xab\x9a\x7f\x73\x7b\xe2\x90\x7a\x71\xa1\x99\x19\xa4\x23\xa2\x0d\xcf\xad\x42\xa1\xcb\x2b\xbc\xa2\xed\xed\xf1\x29\x2b\x6a\x2d\xb8\xaf\xa7\x15\x2a\xe0\x4b\x6b\xde\xe5\xfd\xc3\xdf\x6a\x6b\xbf\x20\x6c\x9f\x50\x81\xfd\x6f\xe9\x86\x51\x73\x7b\x7c\x4d\x81\xb4\xb9\xe3\x8a\xdf\xd8\xb3\xe6\x3b\x5c\x4f\xa1\x6b\x4d\xe9\xe5\x3f\x7f\x66\xcd\xa3\xaf\xee\x69\xe6\xc4\xeb\xb5\x62\x87\x2b\xd6\x8c\xe3\x48\x1e\xbb\x58\x87\x54\x2c\x42\x1e\xf1\xd5\xe7\xe7\x76\x2a\xd5\x6d\x9e\x57\xd8\xc2\x8e\x14\x9e\xfe\x76\xa1\x82\x26\xff\xbe\x42\xa8\x30\x17\x8e\x3f\xaf\xcd\xa2\x47\x1d\xfb\xea\xab\x52\xc0\x9b\x77\xf9\x5f\xc3\xd9\x51\x5e\x74\x51\x41\x94\x67\xd8\x8e\xa1\xe2\x71\x4a\x5b\x28\x4e\x02\x53\xe6\xe7\x9b\x03\xcb\x94\x6c\xa6\x0a\xd2\x11\xea\xa8\x12\x8e\x9a\x7b\xbc\x86\xda\xb7\x40\xd4\xbe\x46\x65\x13\x54\x3e\x8c\xad\x87\x1d\x16\x2b\x53\x12\x2d\xef\xa9\xb2\xf8\xdb\x5a\x25\xf4\x84\x8a\x13\x53\x6b\xa3\x1d\xaa\xc8\x75\x4c\x7d\x68\x43\xf9\x91\xc2\x0d\x95\xff\xa6\xe5\x51\x64\x67\x6a\x9e\x67\x79\xb8\x25\xa6\x9b\xa5\xd5\x2c\xda\x57\xef\x2e\x4e\x14\x1f\x0e\xbc\x50\x1e\x5c\x5d\xdb\xcb\xa9\xa7\xe5\x6a\xb1\xac\xd6\xc4\x6f\x5a\x1e\xfb\xd6\x89\xe3\xa5\x94\x2c\xca\x10\x91\xb0\x28\x85\xd3\xa9\x72\x8a\xe4\xd7\x15\xc8\x08\x3c\x39\x9c\x82\x77\x6b\xe3\x30\x6b\x47\x38\xd6\x9f\xaf\x78\xe5\xc9\xb9\xac\x0a\xc3\x77\xea\x38\x80\x5d\x1b\x86\x0a\xad\x74\x0e\x5b\x91\xe8\x1d\x4f\x2a\xe3\x34\xcb\xb8\xaf\x1b\x8c\x19\x0c\x09\x50\xc6\x86\x22\x7a\x6e\x54\x18\x70\xcb\x36\x7a\x86\xae\xcd\xd1\x3b\x5c\x3d\x87\x0f\x11\x94\xfc\x1f\x07\x2c\x51\x56\x1c\xcd\x65\x44\x64\x1c\xfa\x60\x7e\xdc\x27\x38\x17\x4a\xb0\x8f\xb4\xe9\xdc\x72\x9a\x4b\xe5\xf1\x24\xd2\xa0\xe5\x0e\xcf\x7e\xb3\x38\x38\x40\x22\x63\x33\x00\x44\x91\x3f\xe7\xd5\xe6\xb2\x58\x0f\xe2\xdb\x49\x47\x17\x52\xb8\x06\xe1\xa9\xb8\x1b\x48\x98\x20\xac\x80\xd7\x10\x85\x69\x84\x0a\xc2\xe5\xab\x8a\x05\x89\xc7\x0a\x14\x47\x43\x75\x15\xe2\x55\xa8\x71\x53\x7d\x6c\xfb\xe7\xd7\x94\xf5\x0d\x3b\x86\x8b\x85\xb7\x12\x91\x60\x71\x7a\xcc\x9e\xe3\xca\x28\x0a\xca\xd2\x8e\xe5\x37\x37\xe7\x1b\x1c\xe5\xbd\xd3\x9f\x7c\xe9\x57\x27\x15\xfe\x16\x17\xbe\xd8\xec\x9a\xc8\xe8\x09\xf0\x91\xca\xa7\x3e\x52\xf0\xc5\x6e\x10\xd9\x71\x68\x0f\x41\x24\x0a\xe5\x21\x90\xa8\xb1\x40\x60\x54\x8b\xcd\xbb\xa0\x12\x38\x26\xf6\x37\x29\x5c\xc3\x13\xbb\xdd\xf2\xf2\x92\x93\x73\x6b\xdf\x7c\xd3\x74\x4c\xd4\x8b\x23\x01\xb5\x08\x2e\xd5\xf7\xbf\x37\xea\x22\xd3\x2f\x36\x3b\x36\xcd\xa6\x69\x02\xa0\xe0\x38\xd5\x56\xba\x3c\xff\x51\x99\x4d\xde\x57\x15\xa1\x8f\xeb\x5c\x91\x43\x02\xbc\xbb\x30\xf5\x9c\x96\xe1\x7c\x13\x6b\x03\x09\xc1\x07\x95\x1e\xc9\x1e\x35\xe5\x43\x03\x3e\x34\x7a\x49\xe7\x95\x84\xca\xcf\x28\x4d\xc6\x1c\x27\x8f\x53\x27\xd3\x15\x75\xe3\x46\xf9\x6f\x62\xce\xa4\x2a\x2a\x17\x26\x35\x25\x66\x9b\x9d\x3c\x1d\x5a\xb1\xe1\x60\x56\x86\x12\xc9\xf8\xc4\xe1\x79\x7a\x41\x24\x41\x3f\xc0\x59\x37\x71\x92\xa8\x52\xbb\x74\x65\xce\xd5\x69\x38\xa4\x59\x62\x82\xc1\x90\x04\xa4\xbc\xdd\x06\x4e\x02\x7e\xad\x50\xdf\x24\x7c\x42\x1d\xeb\x79\xe9\x1c\x4c\x53\x18\xc1\xaf\xd7\x7c\x56\xd8\x0f\x57\x83\x68\xb0\xd3\x07\x72\xd7\x0a\xa5\xd3\x76\xae\x50\x66\x0f\xe7\x68\x02\x60\x0f\x7c\x1f\x0b\x02\x00\x20\x76\x70\x12\x94\xf3\x64\x30\x3d\xdf\xb4\x54\x8a\x45\x49\xd9\xb5\x97\x34\x33\xdc\x17\xdb\xfb\xd6\x24\xe9\x0e\xdf\x9c\xe6\x94\x08\x1b\xd7\x15\x7a\x8c\xa2\x9e\xa3\xa5\x74\xb4\x07\xd5\xeb\x4a\x35\xa8\x67\x97\x83\xae\x4d\x1f\xa6\xbb\xc2\x50\x1d\xa5\x03\x45\x5c\x08\x3c\x1b\x69\xb3\xd0\xdd\x03\xba\x73\xfe\x00\x30\x6c\x42\xc8\x6f\x7c\xf9\xeb\x8e\xa8\xd2\xf0\x42\x16\x2a\xa5\x39\x0f\x8a\x2a\x7f\x40\x55\x1c\x17\x9f\xdb\x57\x89\x50\xd7\x75\x84\xba\xae\xa8\xe4\x69\x66\x32\x9b\xae\xd8\x34\x6b\xd0\x95\x03\x39\xc2\x9d\x21\x7e\x53\xf8\x43\xad\x17\xbb\xea\x0e\x16\x09\xc7\x7a\xfc\xa6\xae\x4c\x99\xda\x6e\xce\xfc\x4f\xc7\xc1\x73\x25\xcf\xd7\x1f\xc8\x05\xef\xc5\x2b\xd1\x20\x31\x3d\xd9\x1c\xd0\x05\x3d\xac\xe4\xce\x0f\xd7\xb4\x37\xf7\x37\x13\x1b\x12\x2f\xde\x97\x85\xab\xa2\x6c\x9e\xac\x12\x8c\xc6\xb6\x17\x8c\x08\x27\xa7\x38\x5f\xa7\x94\x76\xf2\x29\xc5\x57\x8a\xf2\x90\xba\x91\x1e\x28\x8f\x8b\xe1\xd7\x95\x2c\x2d\xea\xe5\xf4\x77\xe2\x3b\xdc\x70\xea\x60\x47\x26\x86\xe8\x59\x32\x07\x09\x97\x59\xcf\xd6\x3d\x7c\xa7\x7d\xc1\x2a\x09\xd8\x5f\x21\x1d\x21\xa8\xff\x9a\x8a\x91\x09\x7a\x18\x6c\x94\x5b\x7e\xda\xf2\xf0\x9b\x9f\xaa\xbb\xe9\x24\x79\x16\xa4\xc3\x86\xdf\xfd\xcf\x69\xdc\x5e\x6d\xe7\x38\xcd\x12\x6a\x95\x39\xd0\xe2\xfd\x96\xd2\xc3\xbd\x3f\x11\x16\x2e\x2c\x2e\x50\xf5\x79\xca\xb7\xf1\x70\x58\x62\x05\x6f\x6b\xfb\xe0\xe8\xbc\xba\x34\x72\x87\xb2\x3d\xd5\x22\xbe\xd3\x52\x6b\xf8\x4e\xd5\x14\x63\x35\x6c\x78\xbf\x84\x0b\xda\x05\xe4\x82\x4b\xf6\x06\x09\x89\x69\x70\x17\x1b\xe1\xc0\x76\x44\x20\x6c\xf5\x43\x1b\x9c\x50\x34\x94\x73\xd1\x35\x1c\xa9\xd2\x82\xdf\xba\xe5\x2c\xce\xb0\x66\x6f\x0e\xa8\x25\x77\xe4\xe9\x79\x4b\x77\x7e\xeb\x2e\xbb\x6f\xbe\x39\x0a\xd2\xd0\x9a\x9e\x2b\xa8\xf1\x11\x41\x1f\x93\xe3\xc2\xaf\xe5\xcc\xda\x87\x69\x06\xb8\xa2\x4f\x19\x88\x38\xd5\xac\xc5\x99\x6a\x9e\xe1\x6c\x4d\x9c\xb9\xfd\xf4\x9a\x2b\x10\xc7\xbf\xd2\xae\x96\x9b\x3d\x3c\x03\x28\x69\x55\xe3\xdf\xef\xe4\xff\x6a\x5a\x7e\xe5\xee\x49\x1d\x2f\x04\x41\xf7\x5a\x3e\x20\xba\x57\x91\xd9\x2a\xb4\x00\x97\xca\x64\x3a\xb6\xd7\xb7\x61\x18\xaf\xa4\x7a\xad\x5e\xc4\x86\x26\xfd\x1c\xbf\xf1\x90\x03\x57\xa3\x12\xf6\xd2\xaf\x3c\xa8\x12\xec\x7a\x85\x59\xdc\x5d\x4a\x81\x92\x74\xcb\xc9\xdb\x74\xde\xae\x38\x3e\x6e\x7d\x54\x7b\xf7\x0a\x0b\x21\x4e\xf8\x3b\x30\x79\xd8\x95\x0d\x59\xe9\x2d\x5d\x1d\x39\xa5\xce\xf9\x95\x38\x2e\x0f\x63\xdf\xf8\x79\x43\x83\x59\xee\xaa\xce\xcf\xcd\x62\x8f\x3a\x29\xcd\x0a\x1a\x6e\x0e\xbd\xbe\xcf\x83\x78\xfd\xb4\x18\xc6\xe1\x94\x5f\xbd\xdb\x88\x54\x8f\x49\x71\x4a\xc1\x55\x77\xb6\x6b\x0a\xfd\x61\xbc\x62\x93\x86\xdf\x61\x7e\x86\xca\x11\xbf\xa9\xeb\x1e\x27\x36\xb2\x2b\xb2\x15\xa3\xae\xb3\xad\xed\x71\x6a\xdb\xd6\x26\xeb\x81\x0b\x04\x6a\x9d\xd6\x21\xa0\xf7\x4a\xfd\x11\xcd\x5b\x76\x98\x52\x53\xf5\x94\x6a\xd8\x2e\xd9\xee\x52\x83\x92\x01\x5d\xad\x10\xa1\xe5\xc7\x03\xef\xac\x18\x93\xda\xe4\xd6\x56\x82\x4c\x8d\x1a\xd4\x4d\x8a\x11\xa0\xbb\xd6\x92\xc5\xe2\xa8\xbe\xf5\x6e\xf6\xcd\x37\xc3\xc0\x08\x15\x87\x6f\xa7\xe5\x99\x3d\xe7\xbc\xfe\x77\x9e\x0e\xf1\x57\x0e\x93\xeb\x3b\xda\xaa\x6c\xf8\x8d\x3c\x88\x42\x13\x51\x32\x8c\x70\xff\xa2\x12\xb5\xfd\x08\x53\x0a\x20\xa2\x6b\x0a\x13\xd3\xb3\xdd\xb0\x0c\xf1\x76\xf8\x66\xf3\xc6\x16\xd3\x19\x47\x8d\x5c\x43\x5a\x05\x92\xd3\xba\xe2\x28\xef\x6e\x2b\xe9\x41\x7b\xc8\xa4\xbb\x94\x45\x22\xcd\x36\xb1\x4b\x54\x3c\xab\xb3\xea\xe4\xbd\x5b\xf8\x06\xc3\x09\x5c\xaa\xb4\x49\x14\xce\xee\x16\xe2\x26\x69\xa6\xf8\x7b\xef\x9b\x04\x7e\xeb\x65\xb0\x23\x14\x8f\xf2\x12\xf8\xf5\x44\xaa\x30\x37\xd7\x34\x23\x1b\xf5\x46\x12\x6b\xca\x3d\xd1\xf5\xf1\x9b\x89\x6c\xf7\xd9\x32\x1a\x94\x8e\x24\x5b\x14\x69\x81\xbd\x6b\x75\xc7\x67\x1a\x0c\xd0\xec\x14\x30\x79\x79\x5d\x82\x32\x97\x87\xdc\x8f\xe3\x70\x4a\x55\x35\xbf\x8f\xb8\x4d\x00\x1d\x9e\xcf\x73\xa5\xf5\xb8\xd2\x0c\x73\x86\x96\xce\x65\xcd\x19\x03\x7c\x50\x3c\xe2\x36\x00\xd3\x99\x52\x82\xc8\xff\xbb\x02\xa9\x5f\xa7\x4f\x80\x81\x74\x6d\x62\x94\x16\x67\x16\x89\xfc\x15\xb8\x84\x4a\xec\xd6\x1b\xca\x86\xdd\x6f\x20\x66\x69\x75\xca\x07\x26\xbb\xa9\xc8\x8a\xa4\xe1\x36\xad\x4e\xf1\x51\xf3\xda\x11\xcb\x41\x98\x36\x34\x9b\x5b\xa9\x75\x5d\x9c\x20\xa3\x51\x33\x2e\xea\xda\x24\x63\xb9\x51\xb5\x3a\x9d\x12\x4e\xeb\x61\x37\x40\x7f\x7f\xcf\xd4\xfe\x7f\xfc\x55\xdf\xd1\x2d\x87\xd4\xc9\xab\x2e\x4a\xf5\x89\xb1\x15\x88\xd9\x3f\x40\x6d\x13\x21\xd8\x69\x50\xe5\x45\x47\xc9\x47\xf6\x1f\x68\xb7\x40\x2e\x4c\x89\xc8\x4f\xe3\x6b\x5f\xe1\x49\xbd\xb3\xad\xca\xbf\x8f\xaf\x79\xe0\xf5\x23\x38\x32\x25\x0f\xac\x99\x9c\x39\xdd\xa5\x09\x90\x77\x30\x51\xa4\xa5\x49\x23\x4f\xa8\x1e\x29\x19\xf8\xd3\x80\xb8\xeb\x2e\xaf\x88\xdf\x38\xd6\x4d\xd7\x8c\xc7\x16\xc9\x29\xb0\x27\x9f\xb6\x94\xb8\xda\x9f\xd1\xb4\x40\xe9\x91\xcb\xa2\x28\xdc\x1f\x9b\x78\x0e\x07\x67\x9a\xde\x4f\x95\x66\x96\xc8\x2f\xf8\x48\xee\x5a\xcb\x83\x33\xfa\x71\x62\xbb\x26\xf5\x7f\x8e\x3d\xfe\x9e\xc2\x22\xdf\x9b\x38\x2a\x29\x2f\x1f\x99\x20\x4a\x33\x46\x47\xa1\x75\x70\x46\x19\xd1\x9f\x71\xca\x30\x74\x2a\x83\x22\xcf\x7b\x2a\xb6\x7f\x81\xc0\xf1\x3b\x15\x04\x75\xf3\x64\xa7\xd2\x5f\x80\xb8\x83\x63\xb6\x38\xa2\x04\x47\x05\x62\x2e\x4b\x03\x0b\xd2\xf7\x2e\x2a\x17\xa3\xa5\xe2\xc1\x11\x3d\xb3\xd2\xf3\x70\x48\xd4\xe0\x8e\xb6\x7c\x3d\xee\x68\x2d\xf0\xae\x13\xc6\x2b\x11\x4a\xa5\x58\x98\xa7\x8b\x4a\x35\x96\xae\x41\x30\x2d\x35\x2e\xff\x83\xc4\xbc\x2a\x6b\x94\x35\x9d\x70\xdd\x22\xf0\xe4\x37\xfc\x78\x14\x05\xdd\x38\x11\x20\x30\x0a\x40\xc7\x5a\x8a\x60\x74\x4c\xd9\x86\xd3\x21\xbd\xc3\x83\x51\xff\xea\x99\xb6\xdf\x8c\x2e\x6a\x12\x28\x08\xb0\x8e\x07\xe3\x06\xf3\x74\x0d\xe8\xfd\xf9\x66\x2f\x20\x30\xc8\x50\x2e\x5a\x9a\x76\xfe\xc4\x9a\x0c\x9e\x66\x0f\x34\x49\x22\x31\x89\xe3\x11\xa2\x63\xa9\x5e\x55\xec\xc0\xb6\x86\xd4\xd4\x7a\x1c\x93\xab\x0f\xaa\xbe\x52\x76\xf0\xba\x54\x0c\x8d\x61\xaf\x03\x65\xa9\x72\x4e\xf3\xa1\x7e\xaa\xa2\xc7\x6c\x18\x24\xbd\x69\xf5\x75\x47\x69\x7b\x40\xae\x7f\x49\x49\x4e\x5f\xd2\xd0\xce\xa3\x9a\x49\x14\x2f\xdb\x84\x9a\xcd\x00\x77\x9c\xd7\xf2\xb8\x77\x2a\x9a\x12\x5b\x83\x87\x67\xcb\x53\x3b\x60\xc8\x06\xeb\x91\xb7\xbc\xd2\xd5\xb1\x49\xac\xe5\x02\x18\x52\x34\x68\xd8\xb7\xcf\xab\xdc\xa0\x36\x0d\xb1\xbd\xbc\xeb\xe9\x61\xac\x93\xa0\x8e\xec\xdb\xc5\xe7\x04\x0f\x94\x58\xf2\x7e\x30\x51\xc6\xf2\xff\x5a\xfd\x49\xa0\x05\x3e\x2c\x3e\x55\xfc\x92\x4f\xcd\xba\x81\x8d\xb2\xa0\x1f\x74\x4d\x18\xae\x36\x74\x49\xac\xe1\x14\x26\xd7\x55\x08\xdc\x1d\x9a\x20\xda\x49\x4f\x85\x05\xe5\xb1\x52\x44\x5d\xde\x73\xa0\x3f\x6c\xe9\x26\x7f\x4b\x49\x8b\x00\x5d\xce\x7f\xe5\x2a\x5d\x83\x24\x5e\x89\x76\xf8\xcc\xfe\x07\x54\x60\x41\xa3\xf5\xac\x92\xe6\xbe\xa9\xe0\xd8\x2c\xe2\x85\xf4\x73\x97\x82\x7d\x25\x96\xa8\x5c\x3b\x3c\xb0\x19\x3e\xc0\x48\xac\xde\x6b\xa9\xe3\xfd\x06\x3d\x3a\xa8\xef\x7e\xa2\xbd\x07\xd7\x9d\x79\x64\x66\x43\xab\xf4\x56\xc5\x5f\x57\x81\x69\xce\xd6\xef\x9f\xb2\xf3\xd2\xc7\x18\xf9\xdb\xf2\xeb\xf4\x64\xe1\xbb\x22\x9d\x38\x8e\x76\x6a\xe6\x3b\xf6\x07\xcc\xc7\x23\xaa\x25\x70\x57\x61\x8d\xd8\x17\x84\x2b\xe5\x98\xc1\x52\x74\xf5\xe2\xd5\xbd\x20\xed\xe6\x29\x08\xa5\x0d\x27\xc9\xf3\x13\xb4\x8d\xf9\x8d\x4b\xad\xc7\x79\x32\x8e\x53\x6e\xff\x69\x59\x26\x7e\x5d\xd3\x67\xda\xdf\x1c\xa0\x1b\x8a\x87\x72\x03\xab\x99\xdf\x28\x49\xdc\x91\x89\x86\x26\xcb\x8c\x56\x64\xd9\xa1\x9a\x7e\x48\x8c\xc4\xdc\x80\xbe\x44\xfe\xe1\x69\x25\x93\xd4\x0b\xba\x94\xbf\x01\x91\x82\x01\x7a\xa7\x50\x88\x94\xd3\x85\x02\x84\x20\x57\x46\x86\x76\x1a\x25\x4a\xb4\x8e\xd7\x51\xa2\xe4\x37\x34\xa8\xd4\xc5\xfb\x57\x4f\xb6\xeb\x98\xad\x65\x80\x6b\x4d\x3f\x2b\xf3\x2c\x17\x4b\x1d\x53\x76\x2e\xc7\xd4\xc3\x5c\x8d\xf3\x64\x4f\xf9\x67\xa8\x31\xb2\x96\x59\x45\xa4\x47\x44\xf5\x7c\xaf\xe1\x2d\x9a\xf0\xb8\xe3\xef\xf3\xb9\xc9\x50\xee\x96\x92\xba\xbb\xac\x08\x1c\xe7\xb0\xc6\xd0\x7d\xe4\xc6\x95\x50\x7f\x68\x40\x10\xab\xef\x20\x8e\x34\x02\x34\xb8\x3c\xe2\xd7\xdf\xab\x08\x7e\xf4\x83\xc8\x26\xab\xd3\x3e\x5d\x60\x6b\x47\xa9\xd5\xfa\x9c\x82\x0f\x65\xfe\x87\xad\x26\x4c\xf3\xf3\xcd\x7d\xf3\xbf\x5c\xee\xac\xa8\xd3\x6f\xf0\xbd\xb0\x63\x70\xcb\xa3\xc3\xff\xe7\x27\xd0\x42\x43\x96\xb6\x9d\x32\x5e\x16\x53\xc0\xbd\x88\x85\x00\x2d\x57\x1c\xc6\x97\x5a\xda\xe4\x58\xcb\x64\x6c\x5b\x53\xac\x7f\xcc\x2b\x71\xef\x2a\x07\x96\x91\xe6\x78\xea\x88\x7a\xd6\x89\xc0\x22\xbd\xdb\xc6\xec\x01\x8e\xc5\x30\x5e\x88\x59\xbe\xa9\xa0\x3f\x67\xf4\x92\xff\x31\x29\x75\x63\x4f\x3a\x49\x22\x71\x4e\x03\xdd\xe1\x69\x8f\xe0\xc1\x6b\xeb\x28\x67\x3f\xed\x65\x4f\xde\x05\xda\x57\x8a\xa0\x12\xca\x88\xe6\x3c\x6d\x1e\x6c\x0f\xdc\xaa\x78\x05\xd7\x28\x02\xc6\x79\x16\x9a\x55\xae\x6d\x60\x93\x78\x5d\xfb\xc0\xc1\x27\x5b\x4c\xae\x1e\xd7\x65\xe3\x24\x83\x53\x12\xeb\x60\xd0\x36\x2b\x9a\x18\xbe\xc8\x6a\xba\x4b\x51\xbc\x12\xda\xde\xc0\x12\x5a\x1d\x83\xf1\x21\xdd\x34\xbf\x9e\x50\x6e\xa1\x10\x20\xc0\x96\xe2\xa8\x55\x1e\x8e\x35\xc9\xa3\x29\x3f\x90\x25\x81\xe4\x7a\x72\x28\xab\x40\xff\x8e\xd3\x92\x29\x8f\x3f\xdb\xb5\x69\xca\x12\x4b\xac\xfb\xd8\xf2\x6d\xb4\x7a\xda\x4c\x9a\x77\xf2\xa4\x43\x1f\xc1\x38\xf1\x35\xf1\x1b\x15\xaa\x0e\x03\xa3\x2c\xa1\x3e\xd2\x28\xf3\x8f\x94\x0b\x43\xb4\x24\xa7\xb5\xd0\xd2\x54\xa2\xfa\x51\x0d\xd9\xf3\x25\x32\x58\xe3\x96\xb5\x78\x69\x28\x75\x81\xe3\xaa\xba\x36\x4e\xca\x90\x3f\x0b\x6c\x4a\xd4\x22\xa4\x78\x37\x70\xc5\x4e\xf7\x61\xef\xac\xf7\x57\x52\x82\x10\x4a\xcb\xf1\x0f\x5a\xde\xce\xfa\x26\x6e\x44\x9c\x25\xb7\xac\xe2\xdf\x2c\x37\xf6\x9d\x1e\x6d\xb0\xae\x75\x49\xcf\xe1\xfb\x31\xaf\x77\x62\x11\x6b\xf2\x04\xd6\xe0\x05\x45\xa3\xad\xc7\x18\x7c\x23\x0f\x00\x1f\x50\xa9\xdc\xac\x06\x4f\x8b\x63\xe2\xdd\xba\xd6\x77\x9e\x8a\x7c\x90\xe8\xf1\xaa\x3a\xcd\x89\x8a\x42\x6a\x64\xbb\xbb\xbc\x70\x10\xb8\x88\xfc\xba\xa5\x08\x30\xb7\x10\xa6\xb0\x61\x2b\x1f\xc1\x80\xd0\x9c\x51\xee\x75\x1c\x96\x02\x0f\x73\x1b\xd3\x52\xbe\x59\x4a\x0a\x4b\x51\x9c\x61\x36\x20\xb4\x40\xdd\x88\x5f\x4f\x4c\x86\xbd\x7b\xa9\x2f\x9f\xf1\xc2\xc5\x4f\x5e\xe3\x8d\xd3\x69\x4d\x94\xd7\x86\x8d\xff\xa3\x1a\xb7\xea\xee\x30\xb0\x7d\x8a\x78\xe4\x91\xaa\x42\x0e\xab\x53\xe1\xd3\x3c\x3d\xe4\x8d\x2f\x94\x6d\xb6\x1e\xf1\x1d\xa7\x7f\x34\xe5\x01\x72\xef\xd0\x88\x81\x7b\xc9\x0c\x6f\xd9\xdc\x9b\x93\x0f\x66\x64\xa2\xa0\x6f\xd3\x0c\x02\x40\x0d\x95\xd2\x6f\x28\x59\xa2\x0d\x05\x21\x0c\x6d\xc7\x44\xbc\xd5\x61\x37\xe7\x13\x9d\xdf\xb8\x65\x66\xa2\x2c\xe8\xf2\x57\x3a\xd7\x4f\x55\x28\x54\x29\x42\x92\x77\x97\x68\x02\x23\x36\xdd\x86\x26\xbd\xa4\xca\xca\x96\xe9\x9a\xc2\x89\xb2\x05\x09\x26\xed\xc7\x98\x0e\x08\xeb\x3f\x53\x74\x07\xd2\xc6\x1a\xe3\xee\xca\xb3\x05\x27\xe1\x19\xa5\x6d\x70\x46\x01\x47\x7a\xf0\xef\x29\xbf\x4a\xac\xaf\xe8\x47\x44\x5a\xf3\x71\xa5\x31\x34\x36\x41\x42\x41\x30\x72\x9e\xed\x6d\x1f\xbd\xdc\x56\x64\x84\xcf\xf0\x38\xd1\x34\xfc\x0f\x98\x19\xfc\xc6\xf1\x24\x12\xdb\xc9\x83\xb0\xb7\xc5\x33\xef\x82\x12\x43\xbf\x50\xd7\x08\x58\x89\x93\x25\x5c\xac\x78\x77\x94\x97\xc0\xaf\xeb\x54\xca\x42\x93\xd9\x64\x87\x17\xc3\xbb\x8c\xe3\x1a\xb3\xf6\x61\xba\x01\x59\x42\x74\x74\x23\x97\xbf\xa3\x24\x93\x37\xd5\x41\x34\x34\x49\x8f\x6b\xd9\xc2\xc5\x6c\x78\x5e\x66\x5d\x3f\x72\x60\xc6\x4e\x0c\xca\x91\xc1\x5d\x47\x15\xf6\xd0\x48\x27\x8f\x6d\xd5\xf9\xda\x37\xdf\x3c\x38\x33\xfb\xcb\x5e\xd6\xfa\x7a\xcb\x63\x0b\xa7\xd4\xa5\x7f\x00\xc0\x25\x6a\x7b\x57\x81\x00\x46\x99\x12\x3c\x2d\x2c\x86\x87\xda\x8a\x27\x7d\x4e\x09\x1b\xfd\x3b\xb4\x78\x30\x88\x3f\x6e\xa9\x7c\xf9\x17\x28\x8b\xe1\x50\xbb\x45\x61\x84\xc8\x48\x63\xf1\x0b\xbc\x5f\xd9\x6e\x9e\x67\x25\x3d\xbe\x1a\x2c\x66\x5c\xff\x02\xa2\x23\xc4\x3a\xbb\xd7\x2a\x2a\x1a\x54\x4c\xe3\xda\x2f\xa6\x3f\x57\x08\x5a\x6a\xcf\x39\x51\xf8\x91\x3f\x43\x27\x8a\x53\x93\x2c\xc7\x57\x50\x1c\xe5\xd3\xc6\xfd\x6f\x5f\xab\xd9\x99\x87\xf1\xc8\x4e\x2b\xf2\xf4\x7d\x9a\x43\x08\x86\x3f\xa4\x09\x88\x12\xf9\x9b\xda\x33\xe1\x9e\xf2\xbc\xcf\xcc\x92\x2d\x13\x74\x38\x49\xa1\xe0\xf3\xa3\x96\x22\x60\x9e\x51\x66\xe5\x3f\x2a\x14\x97\xf3\x8c\xe2\x87\x74\xe3\x18\x22\x1c\xca\x9a\x98\x80\x64\x62\x53\x5c\x07\x0c\x0c\x06\x51\x9c\x00\x73\xe1\x81\xff\x34\x5c\x18\xfd\xbf\xd4\xea\xda\xe7\xea\xe4\xc5\x56\xc8\x64\xca\x29\x12\x6e\xe2\x80\x40\xac\xf7\xaf\x68\xe8\xa4\xcc\xd7\x70\x2e\xe6\xe7\xd5\x65\x77\xf2\xde\xc0\x66\xe9\x0e\x9a\x33\x0e\x17\xe0\x55\x62\x6e\xd2\x21\xce\xff\x80\xa3\x08\x67\xde\x11\x4c\x05\xd1\x74\x50\x60\x0d\x13\x45\x81\xe5\x92\x13\xe6\xc3\x45\x2d\xb1\x72\x71\xc2\x57\xba\x8c\xc0\x1c\xa1\xcf\x84\x0d\x2f\x67\x78\x4c\x41\xa5\x8e\xa9\xea\x73\x18\xaf\xee\x28\x23\x62\x67\x53\x58\x5e\x0a\xbf\x69\x29\x2f\xc9\x4f\x95\x37\x17\xa0\x41\x78\x8a\x67\xea\x4c\x7c\x81\x8e\xd3\xec\xad\x0f\x5a\x8a\xbd\xf5\x41\x21\x38\xc4\x6e\x9e\x3d\x5c\x0e\x39\x26\x25\x08\x13\xf8\x8d\xff\xac\x45\x7d\xa7\x80\x2b\xc5\x02\xbf\x81\xec\x41\xe2\x1b\xdf\xfb\xe7\xa3\x02\x85\xb5\x27\x00\xd7\xc5\xe3\x7b\xaa\xed\x25\xff\xcf\xe9\x58\x6d\x6a\x6d\xeb\xd5\x7f\x75\xb6\x69\x83\x32\x6b\x9c\x2e\x47\xc5\x35\xa5\x66\x0f\x70\xf8\x75\xbb\xf0\x15\xe3\xff\xaa\xa8\xb4\x67\x55\x63\xc5\xf4\xcc\x58\x3a\xe7\xe2\x04\x5a\xce\x5f\xa9\x94\x39\x8d\xff\xd8\x24\x12\x48\x0a\xbf\x68\xca\x9b\x91\x4f\x3e\x5e\xc7\xbc\x8a\x93\x24\xe6\x73\x17\xbb\xd3\x95\x42\x89\x61\xea\x76\xc7\x20\x31\x51\x04\x91\x1e\x79\x78\x4a\x87\x79\xa3\x86\x40\xf0\x7c\x73\x68\xc2\xac\xa1\xe0\x94\x17\x94\x82\xe4\x05\x95\x54\x74\xe3\x28\xb3\xa3\x71\x48\x32\x74\x4e\xb0\xea\x04\x9e\x8f\xf8\xd4\xcb\xb9\xc6\x86\x95\xe4\x73\xea\x4d\xb5\x0a\xc5\x52\xbc\xa0\x24\x65\x4e\x2a\x49\xd8\x8e\x49\xb9\xd0\xa5\x05\xb0\x29\x62\x15\x21\x42\x27\x4c\x12\x47\x26\xe9\x0e\x51\x12\x13\x8b\x56\xad\x66\x51\xb3\xeb\x85\xa6\xb7\x3a\x45\xfb\xb4\x93\xd5\x71\x78\xdb\xdd\x6d\xdf\xc7\x6b\x4c\x6c\x99\x07\x67\x66\x9b\x91\xcd\x48\xdc\x04\xf9\xc7\x61\x3c\x3f\x59\x4c\xbe\x7e\x04\x05\x63\x7c\x29\xb7\x9f\xa5\xaa\xe6\x93\xf9\x28\xce\x82\x7e\x99\x3e\x95\xb7\xe6\x84\xf0\xf7\xf9\xe4\xa8\x16\xd6\x93\x04\x36\x9d\x52\xc1\xda\xa5\xc2\x43\x5e\x58\x0d\x1c\xc5\xfa\x87\xd6\xea\x12\xaa\x8c\xac\x82\x68\xc0\x50\xfb\xf9\x99\x32\xd5\xff\x99\xcb\xd7\xf2\xa8\x1f\x27\x59\x1e\x11\xc7\xc2\xf9\x3d\x1d\x55\x10\x48\x28\x8c\x08\x4d\xbc\x46\xe9\x6c\x9c\xc4\xa3\x20\x95\x3d\x9a\xed\x28\x0b\xc5\xc7\xdb\x49\x83\x24\x75\x1e\x9d\x08\x98\xee\xf0\x89\xf2\x57\xd1\x54\xfa\x18\x9b\x89\x28\xbf\x2a\xa1\xfa\x7b\x85\x27\x2e\x9e\xd3\xe2\x2e\xa7\x0b\x8a\x04\x70\xe0\x6f\xa3\xed\x40\x5c\xea\x69\x9f\x11\x73\x22\x4a\xe9\x31\x05\x3f\xc4\xc1\x05\x88\xc6\x3b\x2d\x25\xbb\xf6\x21\xad\x66\x9c\x2b\x37\x29\xf4\x10\x2a\x16\xcd\x66\x86\xd2\x68\x63\x27\xc1\xfb\xe3\xf8\xf9\xc3\x32\x2d\x72\xb1\x23\xf5\x6a\x32\xd8\x6e\xd3\x15\xe3\x68\xc1\x26\xcb\xaf\xd5\xa1\x90\x66\x66\x55\xf6\x56\xc1\x67\xd0\x70\x08\x72\x63\x8b\x63\xcb\xdc\xdc\xfe\xe6\xc2\x0b\xfb\x77\xf9\x12\x2d\x6a\x6b\x42\x8f\xa5\x99\x8f\xd1\x7b\x0d\x0f\x43\xd2\x18\x1a\x18\x77\xe6\x39\x21\xb7\xcf\x30\xc7\x99\x22\x84\x00\x03\xcd\x87\xcb\xbe\x69\x96\xc4\xf1\x52\x25\xde\x3f\xa7\xe2\xfd\x73\xc5\xd6\xec\x63\xef\xde\x0a\xd1\x75\x19\xbc\x77\x77\xf6\x3b\x62\xe7\xd9\x3a\x43\x1c\x7b\xa8\x6b\xc2\xa0\x93\x27\x7c\x52\x2a\x1d\x43\xb1\x1f\xff\x27\xca\x23\xd1\x24\xa6\xd3\x50\x9d\xba\x53\xca\x5e\xe3\x94\x22\xd0\x51\xee\x1e\x3e\x70\x2d\x7a\x80\x44\x3f\x88\x7a\x8f\xd0\x5c\xa9\xa8\xad\x38\x88\xf2\xde\x59\xae\x88\x31\xac\xd8\x55\xb1\x9c\x60\x45\xa6\xec\x92\xd1\x2a\xc2\xd3\xb9\x87\xf8\x15\x35\xf7\x6f\xd3\x8e\x87\xc9\xf5\x71\x51\x11\x6a\xf3\xe0\xa5\x2b\x35\xc7\xf1\x42\x73\x14\x44\x20\x84\xfb\xfe\x5c\xf9\x83\x42\x4c\xd9\xba\x56\x5f\x7e\xb9\x99\x8e\x6d\x37\xe8\x07\x5d\x7a\x0e\x5a\x9b\x56\xec\xe0\x5c\x0f\xfe\x39\xfb\x5c\x43\x77\x0b\xdf\xd2\xfc\x86\xb7\xb4\xe0\xbb\x49\x06\x41\x18\xa2\x9e\x84\x43\xf3\xdb\x9e\xf8\xf2\x2b\xdf\x56\x42\x54\x83\x24\x08\x43\xde\x07\xa5\xc2\xe2\xb1\x74\xc7\x9d\x0e\x55\xfa\x8d\xdc\x50\x37\xac\xbc\x4a\xec\x0d\x48\x1c\xf8\xb5\x4a\x50\xc6\x36\x89\x5f\x8d\x1b\xfe\xf7\x7e\x4c\xeb\x8b\x5f\x7b\x49\xbc\xc4\xe3\x6b\x38\x20\xa3\x2f\x94\xe0\x6c\xeb\xe8\x1e\x78\xa1\xcc\x2a\x83\x34\x9b\xaa\x44\x8e\x0b\xce\xd7\x11\x05\x08\x20\xe1\x2e\xfb\x16\x61\xdc\xe9\xb8\x0c\xcf\x2d\x10\x8f\x01\x9c\xa8\xc5\xcd\x1e\x68\x9a\x81\x99\xd2\xc2\xd8\x60\x37\x8a\x86\x81\x12\x47\xb8\x5b\x6b\x26\x38\x8c\x57\xdc\x2f\x4a\xab\x47\x37\x74\x14\x95\xae\xbc\xa3\x65\x6c\xf3\x98\x22\x53\x6d\xdf\x9f\x42\x79\x88\x4d\x24\x5d\xaf\x25\xcd\xc7\x64\x1f\xc7\xcf\x02\xab\xee\x7f\xc3\xc6\xc4\x6f\x54\x50\x12\xe5\x09\x17\x81\x66\x79\x83\x39\x87\x35\xc3\x6f\x14\xed\x64\x68\x02\xa4\x95\x5a\x0e\x4a\x08\x39\x8f\xab\x3e\x4c\xd2\xb3\x11\x9e\x1b\x36\x79\x16\x8b\xe2\x37\x6a\xfd\x77\x82\x5e\x0a\x61\x7e\x94\xe9\x59\x0b\x19\xf5\x64\x60\x44\x91\x48\x6d\x27\x09\x20\xc9\x18\xbc\x13\x53\x72\xbb\xaa\x79\x44\x43\x0a\x34\x08\x9c\x34\xd1\xa1\xda\xde\x2e\x23\x48\x21\xd1\x3f\xed\x38\xc2\x11\xfb\xe8\xb3\xe0\xb6\xe8\xa7\xfb\x40\xe3\xf5\x89\xc2\x67\x19\xd6\x27\x76\x60\x92\x1e\xba\xdd\x2c\x2d\xdb\xf2\x88\xcb\x77\x70\x13\x0c\x36\x57\x25\x9a\x8e\x0d\x07\x81\x01\x22\x82\xc5\x38\x5a\x0a\x60\x7d\x7e\x62\x43\x3d\xf0\x42\x33\x8f\x48\x06\x9a\x9f\xa5\x24\x53\x9a\x5e\xfd\x79\x65\xbd\x4e\x08\x85\xdc\x75\xa5\x5f\xe2\xab\x7b\x0f\x67\x29\xbf\x51\x82\x74\x1d\x92\x0d\x48\xd2\x9d\xde\x95\x1b\x0c\x05\xc4\x68\x1b\x2d\xc5\x9d\x39\x82\x6e\x17\x2a\xd4\x1b\x38\xaa\x05\x9d\xe4\xed\x64\x3f\x50\x8d\xa6\xae\x89\x7a\x41\xcf\x64\x16\x98\x72\xf4\x51\x2f\x57\xc5\xb0\xb6\x34\x5b\x37\xd7\x94\x02\xf8\x9d\xda\xec\x72\x25\x4e\x96\x6c\x22\xee\xfe\x78\x4c\x8c\x5c\x45\x53\xff\xdd\x42\xc9\xb7\xde\x53\x51\x53\x2f\x48\xbb\x61\x2c\xeb\x42\xf9\x72\x38\x93\x0e\xa5\x27\x97\xd8\x34\x18\x44\xb6\x37\xed\xf3\xa0\xdb\x2d\xc5\xb9\xe2\xb9\xc6\xff\x52\x68\xbd\xf6\x1a\x31\x4b\x56\xa7\x9b\xf2\x21\xda\x7a\xa1\xdb\xd7\x1e\xb9\x72\x4f\x95\xac\x49\xba\xcc\x74\xb3\x18\x05\x2d\x40\x21\x20\xbb\xce\xaf\x0b\x65\x7c\x7a\xa1\xa5\x5a\x16\x97\xf0\x80\xf0\x4c\xff\x6c\xc2\x74\x63\xef\x5e\x32\xa2\xb7\xdf\xc8\x49\xe3\x55\x89\xbf\x79\x00\x16\xfa\x5c\x88\x92\x6a\x59\x27\x65\x90\x6c\xb9\xde\x8a\x4a\xe8\x7d\x04\x2a\xe2\xb7\xe8\x19\xaf\xeb\x13\x61\x46\xf9\x28\xcb\x07\x92\x58\xca\x8f\x59\xbc\x14\x89\xdd\x51\x25\xf0\x7b\xd4\x1d\x6f\xe3\x38\x64\x88\x19\xd6\xd9\x09\x45\x3f\x86\x7c\x84\x18\x75\x6f\xa9\x51\x1d\x78\xa1\xf9\xe2\xe2\x0c\xdd\x25\xee\xe6\xa6\xda\x1a\x30\x05\xa5\x49\xfc\x79\xa5\x27\xd8\xb3\x63\x1b\xf5\x6c\x94\x85\xec\x49\xc5\xbe\x09\x94\x75\xb2\x8c\x17\x02\x5e\x31\x54\x28\xbf\x49\xf4\xbd\x6a\x98\x24\xdd\xa1\x09\x43\x1b\x0d\xa4\xe6\x0e\x34\xdb\x05\x5a\x70\xfc\xda\x9d\x4a\x00\x96\xa7\xd0\xf9\x06\x22\xfb\x3f\xd1\x95\x2a\x66\xc6\x4b\x7e\x49\x79\x5f\xb1\x47\x88\xdb\x2b\x8c\xee\x72\x54\xb4\x70\xad\x10\xf4\xea\x9c\xdb\x57\xe3\x3c\x1a\xf0\xb2\xe2\x2e\xbf\x92\x84\x3c\x8d\x18\x5a\xe0\x63\x8f\xba\x3d\xb4\x1b\x9b\x69\x1f\xe9\x1f\xc3\x85\x29\x11\x5a\x69\x30\x9f\x51\x52\x36\xdb\xdb\x1e\xa0\x93\xe6\xa1\x08\x30\xe2\xea\x18\xda\xce\x6f\x54\x17\x29\x4f\x87\xbb\x94\xe2\x2e\xc2\x39\x05\x16\x92\x06\x2d\xea\x2b\x00\xfb\xf2\xce\xc0\xa7\x71\xe1\xe1\xf5\x1f\xb7\xfc\x73\xbf\xa0\x5c\x93\xa6\xda\x3e\x09\x34\x9d\x94\xd6\xdf\x03\xe5\x58\xbc\xe7\x7a\xd0\xb3\x12\xf3\x56\xda\xc7\xa2\x29\xe9\x77\x69\x9b\x66\xa6\x13\x06\xe9\x50\xa0\x9b\x9b\x84\x72\xdf\x3c\x5e\xfc\xda\x03\x4b\x0c\x51\xd7\x26\x51\x95\x99\xdd\xd2\x1a\xe7\x1a\xfe\x3f\xfe\x8d\xc1\x34\x35\xe9\x31\xa5\x4e\xd0\x86\xea\x04\xcd\xca\x0c\x83\xff\x81\xb2\x25\x69\x8f\x7f\x41\x63\x1d\x9c\x40\xd2\x30\x18\xe3\x1c\xc7\xa6\x72\xbb\x50\xfd\xbd\xdb\x75\xb1\x6a\x77\x68\x6d\x12\xc4\x42\x0a\xc6\x2e\x7f\x0d\xf3\x93\xdf\x4c\x94\x39\xca\xbc\xdf\x2e\x5b\x5e\xdb\x2e\xc9\x71\x89\xff\x7d\xad\x6f\x52\x78\x90\xb3\x09\x43\xea\x6f\x7a\x5f\x1f\x71\x4f\xe2\x77\xb5\x72\x90\x66\x3c\x0e\x03\x09\x2b\x79\x23\x69\x29\x8a\xc4\x09\xe5\xc2\x1b\x44\x7d\xc8\xed\x3f\x5a\x5e\x0d\x70\x05\x6f\x17\xca\xdd\xe0\x43\x55\x26\x3f\x5f\x15\x68\x69\x1c\x9c\xd9\xbc\x4b\x73\x0c\x53\x9e\xbb\xee\x28\xa2\x5d\x45\x81\x5f\x1c\xc6\xaa\xa1\x52\x39\x0a\xa2\xd8\x44\x67\x0c\x16\xe0\x4f\xa9\x5b\xce\x6d\xf4\x3a\x0b\xe9\x74\xc9\x66\x54\x6f\x71\x00\x95\x63\x0a\x71\x70\xac\xc6\x35\x7a\xbe\x09\xbe\x41\xc3\x6f\xf4\xd8\x32\xa4\xe8\xa5\x2d\xa2\xac\x19\xdb\x64\x8a\x6e\x02\x13\x00\x4c\x56\x97\xf8\x94\x37\x84\x3c\xeb\xac\x22\x4d\x8e\xe3\x15\x9b\xf4\xf3\x70\x87\xc7\x3c\xa2\xb4\x88\xf2\xf5\x49\x1d\x2b\x41\xcf\xb1\x96\x2c\xbd\xb5\xdc\xf3\x9b\xcd\x9e\x09\x18\xab\x85\x21\xb9\xa3\xb0\x98\xeb\xca\x81\x75\xb2\x75\xbd\xf0\x02\xb9\xae\xda\x14\xb2\xb2\xce\x02\xbc\x5c\x1a\x62\x0e\xbe\x35\x12\x2b\x93\x62\x9b\xc4\xe9\xd8\x74\xd9\x5d\x0b\xb1\xc6\x59\xa5\x48\x8d\x26\x18\x0a\x57\x93\x1e\xdd\xf3\xf3\xcd\x91\x89\x72\x23\x94\x45\x64\x3b\x88\xfb\xf9\xf5\x44\xb8\xf3\xd5\x59\x31\x1a\x04\x52\xce\x39\x6f\x2a\xff\x8c\xa7\x95\x4b\x72\x37\x4f\x08\xa3\x34\x35\x51\x95\x45\x70\x86\x91\x17\x8c\xe4\x93\xaa\xd1\x67\x82\xd0\x95\xf9\x9d\x9d\xee\xde\x59\xe7\xb3\xeb\x6c\x72\x56\xac\x63\xfc\x8b\xb6\xaf\xd2\x4f\x3d\xab\x82\x97\xa4\x3c\x3c\x5f\x5d\x8e\x73\xbe\x61\xa5\xcf\xfe\x92\xd3\x67\xdf\xa3\x83\xd7\xa1\xe2\x37\xa1\xe5\x2e\x4b\x52\x52\x9b\x95\x20\xea\xc5\x2b\xa1\x4d\x01\xc3\x62\x16\xb3\x8a\x53\x7e\xee\xa2\x85\x15\x33\xb0\x60\x33\x48\x11\xab\xfc\x2b\xc1\x2a\x79\x14\x63\x37\x31\x2b\x60\xff\xa2\x5c\xc6\xc6\xd2\xfc\x46\x5b\x3e\x9a\x34\x2d\x0f\x6f\x81\xe7\x8a\xfb\x6a\x43\xd9\xb2\x6e\xdd\xc1\xe7\xe6\x10\x66\x25\xcb\x54\x49\x91\x91\x43\x0f\xfc\x54\x4b\x31\x66\x4e\xa9\xa4\x6f\x40\xa2\xc7\xe9\x0e\xef\xbd\x7e\xad\xa5\x38\xc7\x57\x14\xef\xf6\x9a\x2a\xff\x7f\x40\x3b\x3d\x50\x15\x97\x6b\x43\xe7\x7e\x1c\x75\x03\x21\x79\x48\xd2\x41\xb7\x2b\xe9\xc8\xd6\x5c\xf7\xe5\x97\x9b\x71\xbf\x4f\x93\x4f\x10\x2f\xe5\x8f\xf0\xeb\x96\x17\x2f\x74\xa7\x5a\x19\x31\x2f\xce\xf0\xe4\xfb\x9e\x6e\x38\x1d\x51\xe0\x6a\xde\x2f\xe4\x7c\xa8\xe1\xa3\xf4\x43\xb3\x62\x7b\x53\xf4\x67\x4e\xce\xbc\xdc\x27\x85\x7f\xab\xe4\xcc\xff\xd8\x1d\xc4\x7d\x50\xc8\x1a\xce\x4b\xfa\x0e\x46\x8e\xdf\x28\x18\xa6\x27\xc5\xb2\xc3\x25\x3d\x48\x71\xbb\x7c\x52\x09\x90\x8c\xe3\xa4\xcc\xbf\xf0\xe8\xd0\x1d\x61\x1a\x08\xbf\xd1\x42\x3e\x36\x1e\x87\xa8\x01\x0b\x50\x67\x83\xe2\x3b\x3c\x65\x44\x26\x42\x5f\x9f\xdc\x90\x67\xcb\x48\xc2\x81\x60\xb8\x87\xa8\xd2\xe0\x33\x13\x61\xe5\xdc\xdc\x62\x33\xee\x94\x33\xcc\x4d\x4c\x6f\xae\xb6\xe0\xcc\xd5\x14\x14\xc7\x44\x3b\x95\x86\x0f\x43\x11\x78\x37\xa6\x31\x40\xbc\x78\x92\x98\xda\x52\xd2\xf0\xc5\xe0\xb7\x0a\xdf\x3a\xdb\xde\x56\x9e\xde\x36\x4d\xcd\x80\xdd\xae\x30\x9d\x5e\x2f\x3c\x01\xf0\x32\x7d\x05\x6a\xb3\xd7\x2a\x92\xe4\x41\x18\xfe\x52\xb9\xd5\x20\x52\xba\x4a\x0d\x5c\x56\xd5\xa0\x5e\x0f\x36\xba\x1f\x52\x89\x4e\xe4\xf9\xca\x19\x86\x60\xff\x2a\x8a\xc9\x78\x43\xe2\x06\xe2\x97\xd2\x20\x2e\x25\x57\x7e\x30\x0b\xf0\x10\x1a\xe8\x4d\xe1\xbb\x76\xac\xa9\x62\x02\x5b\x50\x62\x8a\xde\xc1\xdc\xc5\x9b\xcb\xac\x5d\x2d\x96\x8b\xd4\x58\xa4\xab\x3c\xfa\x54\xbb\xf1\xa2\x50\x0c\x37\x95\xa8\xed\x0e\x12\x67\xd8\xbc\x54\x78\x83\xed\x3d\x6b\x5a\x34\x78\x0a\xda\x2b\x80\xa2\xbd\xeb\x85\x5d\x4f\x3f\xb1\xa6\x12\xb9\xc6\x9a\x07\x4d\xe4\x51\x9a\x8f\x31\x1d\xa7\x14\x01\x16\x55\x53\x44\x72\xb7\xe9\x0a\x04\x90\xf7\xab\xd5\x44\x48\x02\x4a\xfc\xf7\x1f\xfe\xd6\xaf\x6f\xff\x22\xaf\xa0\xdf\x57\xa5\x3a\x02\x20\x6d\x72\xbc\xaf\xb0\x2f\x92\xd7\x5d\x29\x1a\xbf\xbb\x9f\x8b\x2c\x27\x74\x27\xfe\x14\x1a\xe4\x88\xfd\xff\xbc\xd5\xf8\xea\x2c\xa7\x0b\x7f\x84\xa1\xc4\x20\xff\x1d\x59\x14\xb9\x02\x65\xb9\xbe\xb1\x3a\xbf\x47\x21\x2d\xb7\xfb\xa9\x41\xeb\xb4\x30\xf6\xff\xe3\xaf\x7a\xa1\xa0\x85\xd9\x03\xbc\x4e\x3f\x2e\x94\xc8\xc1\x3b\x28\x9f\xb3\xd6\x19\xcd\x5e\xf4\x7e\xbe\x83\x23\x47\xb4\xf9\xcb\x28\x0a\x53\xfc\x3b\x95\x87\xfa\x0e\x11\x5f\x44\xb1\xbb\x71\xe0\x85\x0a\x8a\x9a\x81\x80\x8a\x87\xff\x77\x2d\x85\x86\x39\xa3\x69\xa3\x87\x31\x3d\x44\xc2\xd8\xdb\xe4\x9d\xa4\x35\xe9\xce\xcd\x72\xe2\xe2\x16\x0f\x73\xe0\xaa\x18\xb6\xcf\x3b\x96\xbc\x52\xe2\x5e\x82\x47\x27\xad\x94\xc1\xaf\x61\x1e\xa3\xce\x71\xbf\xf0\xbb\xee\xba\xde\xa3\x0b\x25\xe7\xf2\x68\xdb\x2b\x7c\xfd\x4f\xff\x80\xd6\x87\xf3\x49\x77\xe2\x8d\xc7\x7d\x07\xcf\x0c\xcc\xab\x41\x64\xa7\x55\x3d\xe5\x83\x42\xab\x7f\x53\x0a\xbe\x09\x50\xbd\xa4\xd0\x75\x61\xe6\xd8\xac\x8a\xaa\x25\x9e\xcf\x61\x7a\xbe\xfc\xda\x57\x7c\xad\xc9\xb3\x55\x65\xdd\x30\x45\x5d\x28\xec\x00\x2c\x96\x82\xda\xc4\x85\x89\x0c\x76\xef\x6c\x33\x41\x59\x55\x27\x6b\x15\xaf\x15\x0f\x8e\x30\x59\x66\xa3\x1e\x81\x0c\x1c\x12\xf8\x5a\x4b\x09\xd1\x7e\xc4\x00\x11\xe9\x09\xd0\xd3\x15\x7f\xe8\xc7\xb5\x99\xca\xb2\x45\xef\xd7\x6d\x5f\xae\x81\x71\x55\x31\x58\xb3\xf2\xf6\x69\xf0\x59\xf8\x1d\xb5\x1a\x51\x81\xaf\x39\xff\x22\x93\x24\xf1\x0a\x05\xb8\xd8\xcf\xce\x54\x02\x39\xba\x20\xb1\x62\xa9\xc1\xc2\x8d\x0c\xf1\x09\x75\xbc\xc1\x19\x29\xbf\xa9\xe3\x44\x99\x31\xd1\x10\x03\x66\xe8\x4a\x8d\xc9\xf7\x18\xd1\xe9\x45\x23\xff\x9f\x7b\x85\x0d\xe3\xca\x40\x98\xc0\x57\x91\xc4\x60\xbc\xd8\x46\xf8\x41\x84\xe2\x97\x5f\x6e\x2e\xc7\x65\x96\x15\x06\x19\x7a\xc5\xa8\x3d\x9c\x6a\x29\x3b\xe0\x53\x13\xb7\x38\x37\xd7\xec\x27\x79\x90\x71\xbb\x15\x47\xed\x95\x8a\x56\xb2\x0a\x34\x7f\xea\xc2\xc2\x91\x35\x00\x03\x28\xb8\xe2\x82\x63\x2d\x3f\xa1\xcc\xb1\xd3\x71\x90\xc1\x8f\x16\xf7\x7e\xbd\xe5\x1d\xde\xaf\x56\x45\x8b\x15\x6b\xf3\x3a\xd6\xbe\xf7\xb0\x9c\xe1\x03\xf0\x1d\x17\x43\xd3\x75\x2b\x59\xf6\xd7\x69\x50\xf9\xb5\x22\xfb\xf6\xf2\x28\x6a\x28\xc7\x32\x56\x2d\x13\xf5\x0a\xa5\x0a\x3f\x0e\x6d\xd4\x0b\x18\xea\x2b\x1a\xc6\x2a\xa9\x7c\xdb\x59\x04\x27\x96\x04\x49\x25\xc2\x40\x67\xf9\x8c\xa6\xd6\x9e\x99\x08\xc6\xf6\xcd\x37\x53\xb3\xec\x1a\x16\x5a\x91\x44\xa4\x4a\xb6\xa6\x67\x65\x8a\xe5\x6c\xba\x55\x77\x72\xd6\xa9\x19\xca\xf3\x88\x83\x30\xdd\x41\x83\x09\xd8\x3a\x63\x34\xb1\xf7\x3d\x0c\x2f\x33\x37\xff\x1d\xe3\xf1\x74\xa1\x31\x48\x4f\xe9\x82\x69\x64\xbb\x99\xed\x4d\xd3\x81\x83\xed\x10\x97\x8a\xbd\xe6\x34\x9e\x15\xff\x83\xee\x11\x9f\xf6\xb2\xbd\xc1\x68\x1c\xb2\x83\x8c\x03\x7b\x95\x5f\x27\xd6\xd4\xbe\x70\x7b\xb8\x26\x1e\x6b\x46\x41\xd7\x24\x66\x90\x73\xa5\xbf\x22\xf8\xf9\x20\x1b\x95\xf9\xf9\x66\x62\xe3\x64\x60\x22\xef\xe8\x29\x12\x26\x34\x6e\xa2\x81\x31\x89\x7b\x78\xbe\x69\xc2\x70\xaa\x9c\x9b\x5c\x68\x40\x9d\x5e\xc2\x5f\x4f\x22\x3e\x5e\x3c\xec\xa6\xcc\xa1\x86\x07\x5a\x02\x21\xc9\xaf\x27\x58\xeb\xcf\x36\x07\x61\x9c\xa6\xab\x4a\x16\x63\x9d\x36\x6f\x8f\x17\x75\x19\x5f\x9e\x98\x70\x47\x25\xa9\xf1\xbd\x54\xfc\x8a\x13\x08\x53\xfe\x05\x45\x35\x29\xf2\x69\x29\xd5\x40\x83\x68\x30\xad\xd0\x67\xa8\x7e\x33\xa9\x85\x9e\x84\x10\x5c\x68\x7c\xf9\x8f\x5c\xc2\x38\x1e\x06\x61\x30\x1e\x07\x91\x9d\xf2\xd4\x81\x27\xdb\x9e\xdd\xc6\x9f\x43\x33\xe5\x91\xb5\x1a\xc2\x6e\xcf\xf6\x6d\x92\x08\x56\x86\x23\x1d\xcc\x1c\xc4\x17\x30\xcb\x01\x94\xf9\xac\xdb\x14\xfb\x41\x3f\x1b\x36\xfc\x94\x3d\xae\x00\x55\xc7\x95\x70\xf9\x2b\x79\x9a\x3d\xe5\x05\xf0\xa6\xd8\x96\x50\xb4\x2c\x68\x01\x08\x65\xb6\x3c\x6c\x77\xe3\x0c\x17\x98\x8e\x52\xc4\xde\xb5\xa6\x79\x51\x9e\xbc\xb1\x1d\x22\xb2\xd8\x86\x38\x50\x41\x3c\xfa\x5f\x68\x4b\x93\xfd\xb6\x5c\x52\xa8\x9f\xfc\x75\x4b\xd5\xbb\x39\xf7\xac\x48\x4c\x30\x78\x06\x7b\x9d\x36\xd7\x43\x90\xf0\x30\xb1\x3f\x26\x97\xe7\x38\x47\x8a\x98\x4c\x79\x96\x24\xba\x0c\x95\xf8\x5b\x12\x10\x8f\xff\x25\xb1\x12\xac\x0a\xdc\xdf\x86\x76\x2e\x9a\x6c\x4e\x50\xa1\xaf\x13\x2f\x5b\xe2\x83\x21\x54\xbd\x45\x19\x04\x8a\x45\xdf\x2a\x94\x77\xf2\xf5\xc2\xdb\x38\x6d\xa3\x3e\x23\xb6\x87\xfb\x18\x05\x29\x36\xd7\x28\xcf\x75\xe3\x7c\x1c\x5a\x05\xfd\x62\x60\x2a\xbf\xa9\x01\xec\x37\xd3\x30\x18\xf3\x59\x29\xb5\x26\xfa\x88\x20\x03\x69\x78\xb1\x14\xde\x2a\xaa\x9d\x20\x13\x44\x36\x49\x77\x28\x18\xe3\xdb\x0a\xe6\x73\x4b\x13\x3d\xdf\xd6\x45\x0c\x14\xde\x71\x98\x4f\xb5\xb7\x6e\x20\x5f\x9d\x6d\xae\x98\x64\xd4\xa8\x90\x87\x17\xdd\x6b\x75\xcc\x94\x27\x47\x9a\x27\xab\x54\x0c\xc5\xfc\xbc\x81\x3a\xa6\xab\xb0\xec\x9b\xaf\x9a\x55\x21\xba\x7c\x0d\x61\xba\xa2\xdc\x4a\xc9\x0c\xcc\x41\x11\xea\xf3\x09\xeb\xa9\x42\x61\xc2\x31\xff\x34\x40\x1c\xeb\xe1\x28\x6e\x92\x73\x9d\x96\xb2\xdf\x1b\xd8\x28\x83\x36\x39\xd2\xb2\x8f\x95\xdf\xc0\xa7\xaa\x0e\xd4\x00\x24\x0b\x0f\xe2\x5a\xdd\x13\x86\xa9\x3f\x0d\x0e\x5b\xf2\x63\x3b\x16\x7f\xfe\xa7\x55\x73\xd7\x89\xb7\x78\x78\x0f\x76\x2b\x81\x06\xf9\x6a\xea\x18\x26\x02\xd3\x0a\xdb\xf0\x96\xee\x96\xe1\x47\xf8\x1f\xb0\xc6\xa5\xb2\xe9\x91\x19\xe9\x8a\xed\x05\xe9\x70\xba\xcc\x74\x70\x3f\x3f\xc1\xe1\x89\xa4\x0b\xf8\x5e\xc7\x7e\xdc\x3b\xeb\xd4\x13\x9c\x6e\x7a\x9e\x66\xf1\x28\xdd\xe9\xf1\x27\xe7\x74\xf7\xe6\x24\xbe\x0d\x49\xdf\x33\x18\x2a\x91\x67\xc4\x26\x85\xe2\xd4\x39\x25\xb6\xae\x43\xa8\xa1\x0d\x46\x36\x49\x55\xe3\x7a\x53\x6f\xb6\x9b\x75\x11\x68\xcf\x2e\xdb\x30\x1e\x4b\xe8\xe0\xc0\xaf\x9e\xfc\x37\xb9\x10\x9f\x6d\xf6\x83\x2c\xa2\x9a\xa0\x03\x61\x9c\xc2\x47\xf8\x8d\x97\x22\x09\xfa\x38\x08\x30\x4b\xdf\x45\x18\xed\x08\x1a\xce\xdd\xea\x9f\xb9\x4f\x74\x12\x2e\x8f\xa3\x3b\x04\xb9\x09\x7e\xad\x1e\x68\x68\x4d\x1a\x44\x83\x1d\x4a\x3f\x9c\xb7\x4a\x7e\x43\xbb\x2b\x20\x6b\xff\x45\xf5\x36\x38\x2c\x10\x73\xa2\xba\x28\x37\x34\xcb\xcc\xcb\x72\xd8\x1f\x8f\x03\x72\xa9\xd3\x38\x8f\x44\xbb\x0a\x61\xf7\x4d\xc5\x0e\xb8\xe9\xc0\x60\xf6\x50\xd7\x4a\xf1\x00\x61\x2d\xac\x9e\x95\xe1\x8d\xd0\x92\x1f\x59\xf3\x20\x11\x3b\x1a\x9a\x04\xe5\x72\x85\x11\x71\x80\x11\x85\xd4\x0a\xed\x70\xc4\x81\x8f\x6b\xf1\x2b\x3a\xa4\x43\x0b\x75\x87\xb6\x97\x87\x70\x8a\xc4\x7c\xbd\xac\x09\x8b\xe8\x88\x63\x69\x03\xaf\x29\xe7\x5a\x4d\x5d\xbd\x1f\x27\xa3\x3c\x04\xc3\x8c\x79\x12\x4a\xd7\xbb\x0e\x15\xbd\xd0\x24\x20\xc0\xb4\x92\xff\x3f\xac\x75\xc8\xd1\x14\x46\xdc\xf9\x89\x92\x93\xbc\xaf\x80\x33\xf6\x50\x37\x4f\x75\x58\x71\x5b\x89\x24\x30\x3d\x40\xde\xd4\x1d\x04\x41\xb8\x6c\x94\x06\xc0\x16\x01\x83\x09\x4b\xd5\xd9\x66\xd7\x24\x69\xb5\xc5\xd8\xd2\x2d\xc6\x1a\x37\xd9\xa6\xcd\x93\xb8\x17\x87\xa1\x49\x38\x4f\x42\x19\xf1\x35\x85\x86\x15\xc3\x38\x24\xc1\x97\x27\x7a\x66\xbf\xdd\x4c\xe3\x91\x5d\x19\xda\x04\xdb\x20\x26\x07\x20\x1f\xfc\xba\x06\xf0\x30\xdb\x8c\xf3\xd4\xa5\x19\xa2\xe9\x58\x7e\x46\x80\xbd\x5e\x88\xcc\xf4\xdd\x1f\x02\xfa\xb9\xad\xad\xcc\x9c\xb7\xad\xf9\x2c\xda\x9a\xd4\x42\xc9\x11\x39\xde\x27\x8a\x97\x77\x1d\xd3\x47\xac\xe9\x5d\x67\x36\xef\xf7\x6d\xd2\x50\xbc\x56\x18\xea\x08\xbf\xae\x46\xba\x24\xcd\xf2\x51\x27\x94\x80\x0f\x93\x93\x81\xee\xdc\x96\x53\x3d\xb2\xa9\xb6\xba\xbc\x4e\x87\x43\x77\x44\xe2\x37\x35\x65\xff\xa6\xaa\x29\x77\x6c\x18\x47\x03\xdb\x6b\x94\x4b\xc3\x09\x44\x97\xb1\x94\x08\x44\xfb\xd0\x67\xd9\x84\x41\x6f\xa7\x17\xb2\xbe\xa8\xf8\x87\x17\xf5\x76\xfd\xae\x26\xa9\xbe\x8b\x43\xb3\x4e\x25\x4a\x46\x26\xb3\x87\x4c\x94\x56\x60\x6c\x6c\x14\xe4\x0c\xf4\xcb\xd9\x25\x45\x8f\xad\xf8\xf7\xd9\x03\xcd\x3c\xea\xd9\xa4\x9b\x27\x89\x80\x96\x19\xba\x4a\x4f\x45\x60\xac\x4f\x3a\xa0\xc0\x68\x64\xa3\x6c\x8b\xc0\x1b\x32\x76\xc1\x4b\xd6\x74\x86\x13\x13\xa0\x63\x26\x30\x79\x49\x17\xf8\x5d\xeb\x51\x0d\x2b\xdc\xa1\xcb\x22\xca\xfa\x85\x0d\x5a\x50\x85\x83\xd6\x24\xa2\x4f\x52\xb8\xd9\xbf\x39\xa9\x1f\x31\x3f\xdf\x0c\x4d\x1e\x75\x9d\xbe\x07\x1e\x7d\xa3\xad\x72\xec\xc6\x9a\x70\x27\xa2\xe7\x5e\x51\xca\x0f\xe7\xb4\x5c\xde\x39\x85\x4e\xed\x24\x76\x05\x13\x04\xc9\xc7\x71\x6d\xcc\x74\x5c\x4b\xbb\x05\xcb\x41\xb8\x13\x37\x8a\x28\xe0\x27\x4a\x4f\x83\xc5\x3e\x9c\x3d\xdb\xdc\x9c\x57\x96\xf3\x5a\xb9\xac\xae\xc0\x1f\x2f\xfc\xc6\x85\x63\x1f\x77\x85\xdd\xf6\x8a\x72\xfe\xbb\x32\xb1\x9a\xcb\xfc\x3f\x4f\xfa\xa6\x6b\x55\x79\x06\x80\x1b\x7e\xad\x9a\xf2\xa3\x38\xea\xb1\xda\x0d\x63\xf2\x30\x13\x05\xa0\x37\x09\x8b\x59\x68\x8e\x4c\x77\x48\xcc\x79\xfa\x18\x10\x5d\x9b\x2d\x0f\xc8\xd3\xe4\xb6\x34\x5e\x0e\x6c\xf6\x68\xb9\x13\xe1\x14\xbe\xc9\x2c\x2f\xc7\xd4\x2e\x87\x17\xe8\xfb\x4d\x0c\x2f\x9f\x22\xa4\x85\x8d\xf5\x05\x4b\x53\x01\x05\xd3\x30\x21\x9f\xda\x4e\x29\x94\xf4\x0c\xca\x74\x6b\x5a\x2b\x1d\x5d\x45\xbc\x80\xf5\xc1\x64\x79\x71\xb5\xd7\x10\xf9\x81\x49\xf7\x94\x5f\xc4\xbe\x4d\xe5\x8a\xdd\x7c\x1d\xd9\x04\xeb\x90\x15\xaa\x53\xf3\x4d\x85\xb8\xfb\x2e\xf6\x19\x67\xb3\x55\xfe\xb6\x5b\x8e\xe5\xcf\x89\x4d\x7b\xe3\x6b\x5f\x11\xf7\x77\x85\x3d\xdb\xd6\xf6\x5b\xd6\x11\x52\x6a\x76\x5c\x16\x7f\xe1\x87\x55\x8a\x3d\xb6\xa6\x6b\xfb\x79\xd8\x50\xf2\x5a\xd0\xf5\xe5\xd7\x0a\xd7\x99\x8e\xad\xed\x0e\x1b\x4a\x56\x9e\xeb\x7c\xfc\xa6\x86\x9f\x3d\xdb\x1c\x06\x61\x28\xa7\x96\xd0\x8a\x95\x89\xfe\x89\xe2\x51\x5f\x4c\xcd\xed\x6e\xfa\x72\x7e\x48\x2d\xd5\x99\xfc\x4b\xba\x26\x76\xf5\x40\xdf\xc4\x91\xb0\xca\x3b\x13\x2f\x03\x55\x7d\xc5\xc3\x47\x8b\xee\x17\xbc\x69\x60\x2a\x30\x40\x13\x93\x64\xd7\x9a\x8f\xa8\x7b\x41\x9a\xd2\x5e\xf6\xe5\xaf\x4b\xef\x81\x06\x57\xfa\x10\x1e\x1d\x98\x76\x87\x49\xdc\x03\x27\x75\x41\x6b\x54\xb8\x37\x75\x95\xa1\x71\x12\x67\x36\xcd\xa8\x53\xa7\x3c\x03\x0b\x55\x32\x59\x9f\x88\x8a\x67\x0f\x34\xc7\x71\x18\x64\x9d\x3c\x01\x66\x1a\xfd\x83\x37\x75\xdf\xfd\x4d\x15\x81\x75\xec\x60\xc8\xb2\x5b\x6c\xf8\x49\x5b\x87\x98\x7f\xd6\x84\x22\xfd\xc0\xd5\xea\x10\xad\x32\x0b\x93\xdf\xd4\x94\x84\x10\x46\xe2\x54\x75\xc5\xc9\xf2\x23\x52\x9c\xd4\x56\x51\xd6\x24\xe1\x2a\xd9\x32\x60\xcf\xe5\xb0\x85\xdf\xf0\x93\x61\x67\x13\x6a\x90\x60\x2e\x5f\x56\x76\xf3\x97\x95\x84\xc4\xdf\x2a\x04\xd6\x2d\x2c\x77\xe7\x0d\xe7\x4d\x0e\x26\xe1\xe1\xfb\x08\x80\x97\x0c\xac\x96\x45\x6c\x35\x5e\x74\xaa\x88\xaa\x03\xdf\x31\xd1\x52\x10\x0d\x1e\xf2\x94\xed\x13\x2a\x23\x05\x5c\x0c\x25\x94\x9b\x5a\xd9\xea\x1e\xf6\x07\x7e\x53\x28\x01\x18\xc4\x3e\xa2\x88\x5e\xc7\x1d\xca\x92\x80\x5d\xc0\xb1\xd7\xdc\x50\x3e\x71\x37\x26\xc2\x94\x85\x17\xf6\x37\x7b\x76\x9c\x67\x81\x03\x15\x60\x71\x6f\x14\xea\x08\xdf\x98\x20\x1b\xcf\x1e\x20\x09\x4a\xee\x14\x0b\xcc\x87\x1a\x67\xde\x55\x4b\xf5\x66\xd3\xe1\x93\xf8\x76\x11\x41\x52\xac\x18\xb8\x0b\xe0\x80\x3d\x41\x51\x89\x53\x99\xf0\xf8\xbd\x1b\xca\x2f\x7f\x9a\x1a\x56\xe5\x4e\x58\x86\x3a\x18\x8c\x8f\x0a\xdf\xe3\x9d\xa6\x8e\x14\x52\x05\x94\x0e\x01\x6c\xb8\xa6\x77\xb2\x56\x75\xd2\xcd\xcd\x2d\xf2\xf2\xbc\x4e\xf5\x03\xa4\xc9\x37\x50\xe6\xe5\x7f\x68\xa9\x76\xda\xd5\xd6\x16\x70\xe8\x97\xbf\xde\x9c\x9b\xdb\x8f\xf5\xe8\x6c\xfd\x17\x5e\xd8\xef\x60\x93\x52\xd0\x5b\x36\x61\x0e\x2e\x0c\xf6\xe0\xd7\x0b\x55\xb6\x7e\x5d\x25\x06\xe9\xd0\x2c\x31\xfe\x7d\xf3\x52\xb9\x7f\x6c\x5e\x72\x41\xd7\x92\xb5\x11\x83\xcd\x1d\x25\x4e\x79\x0d\x6e\x8d\x42\xe6\xe6\x9a\x61\x30\x0a\x7c\xd4\xc4\x89\xa2\x42\x00\x9d\x52\xed\xa8\x65\x13\x86\x76\x75\x5a\xed\xaf\x9f\x28\x5c\xec\x27\x85\x17\x6e\x7c\x57\x31\x07\xde\x6d\x79\x54\xc4\x30\xc8\xba\x43\x8a\xf3\x1d\xcc\x50\x09\xc9\xed\x51\x6a\x03\xfd\xec\x11\xd5\x0e\xb8\x0a\xf8\x94\xb0\xe9\x7d\x5c\x5b\x81\x07\x81\x0e\x87\x73\x77\xaa\xad\xa1\xcb\xa8\x10\x21\x44\x3d\x85\x87\xc7\x4f\x12\xcf\x1b\x6d\xd9\xbf\x2d\x54\x90\x4c\x3a\x94\x9b\xaf\x4f\xec\x97\xf3\xf3\x4c\xbb\x8d\x05\x10\x21\xca\x2f\x0d\xaf\x02\x53\x0b\x67\x4e\x97\x82\x84\x65\xb2\x1d\xc2\xd4\xe5\xc6\x17\x27\x32\xa3\xd9\x03\xcd\x38\xc9\x86\x71\x2f\x3e\xa4\xd4\xde\xd7\x95\x66\xe9\xba\xeb\x29\xb0\xcf\x5e\x83\x46\x09\x85\x28\x56\xa2\xe1\x37\x13\x8f\x7e\xf6\x40\xb3\xdc\x38\x03\x9b\x66\x60\x44\x62\x5d\xdc\x87\xfd\x3e\x06\x07\x95\x17\xd6\x0c\xa8\x90\xf4\x96\xe2\x68\x4a\xc9\xf4\xfc\x44\x41\x86\x58\xf2\x04\x1b\xe8\x55\x6d\x03\x1c\xa5\x41\xcf\xee\xc6\x7a\x47\xb7\x7d\x43\xf9\x1a\x5f\x2b\x14\x35\x1f\x2d\x00\xa5\x89\x2a\x89\x3b\x7b\x96\xf0\xc7\x5b\x7e\x41\x9f\x53\x61\xca\xf7\x0a\x0f\xbc\xd3\x32\x0f\xdd\x38\x8c\x93\x69\x8d\x40\xe6\x3d\x5d\xcb\x88\x8a\x5f\xac\x6a\x0f\xae\xd7\x08\xcc\xf5\x4d\x14\x31\xd2\x5f\xf4\xb4\xe9\xfa\x85\x11\x28\x4f\x26\x1b\x26\xd6\x48\x1b\x11\xf3\xf7\xae\x96\x93\xa7\xcb\x96\xd7\x93\x92\x21\x89\x79\x35\x4e\xa6\xd4\xee\x71\x56\x91\x8c\xe0\x3e\x89\x8d\xe7\x8c\x1a\x69\x13\x8c\x82\x68\x30\xed\xfd\xe5\xd6\x95\xb5\x1b\x24\xf2\xf9\x75\xb5\xcf\xa8\xb7\xe6\xcc\x62\xd6\x49\x25\x98\x16\xa3\x54\x7f\x6b\xb6\xfd\xa1\xe1\x4e\xf5\xe6\xfb\xb4\x70\xde\x2f\xb6\xca\xcc\x13\x03\x35\x31\x51\x3a\x8e\x93\xcc\xeb\x26\x09\xdd\x4a\x65\x13\x7e\x5e\x07\xd1\x2b\xb9\xa3\xfa\xa3\x11\xb0\x6d\x4d\x49\x8b\x1e\x51\x3c\xe2\x9b\xae\x03\x9a\x25\x52\xab\xaa\xad\x0b\xd6\x28\x64\xf4\x4d\x1e\x99\x86\xaa\x47\x5e\x54\x84\xa9\x8b\x35\xde\xfe\xcd\x9e\x0d\x83\x65\x9b\x54\x03\x9b\x75\xa5\xc9\xbd\xae\x00\x90\x69\x18\x0c\x86\x59\xb8\xfa\xb0\x67\x19\xfd\x21\xcd\x5d\x97\x23\x94\x3b\x12\xd7\x06\x71\xc8\x23\x44\x3f\xaa\x0a\x45\xcc\xbf\x70\x7e\x77\x8b\x0b\xbe\x83\xee\x8e\xf5\x3b\x2d\xd5\x40\xf9\x00\x7d\x30\xe1\x75\x6c\x4d\xb1\xe7\xe6\xf6\x97\x21\x63\x3a\xb6\x5d\xe2\x61\xaa\xe2\x62\x55\x42\xe0\x49\x4f\x1a\xb0\xd1\x20\x1b\x8a\x3b\x10\x8a\x1c\xff\x2b\x85\x2e\x88\x90\x4f\x61\x3b\x65\x10\x05\xb0\x34\xb8\x5f\x7c\xa3\x90\x47\x26\xca\x4f\x7b\x9b\x83\xa0\x0f\xa6\x88\xd8\x99\xfb\x2d\x05\x82\x6a\xa2\xdd\xe8\xd7\x73\x14\xfc\x7f\xdf\x87\x1e\xe4\x6c\x1c\x99\xa8\x8b\xc4\x50\x54\x4f\x68\xae\xf0\x1b\x25\x78\x41\x1a\x31\x03\x62\xee\x7a\x01\x0f\xac\x46\x21\xaf\xfa\x16\x41\x9a\x19\x04\xe1\x72\xa4\xfe\xb0\xe5\x91\x26\x3f\xac\x29\x31\x8f\xf3\xee\x12\x4d\x5a\xd5\xf9\xd4\x1d\xd1\x9a\x15\x97\x66\x26\xe8\x4d\x79\x28\xe2\x7a\x4b\x59\x2a\x1c\xa3\x0b\xc3\x49\xf6\xee\x56\xc2\x0a\x19\xcc\x7f\x71\xe7\xc4\xd6\x87\x89\x72\x52\x53\xf9\xd8\x50\xd6\x89\x3c\x3a\x9a\x10\x2b\xe4\xc8\x6e\xe9\x63\x5b\x0e\xc8\x29\xb6\x15\xcd\xa2\x32\x06\x43\xc8\x78\x5e\xb9\xbd\xa3\x52\x86\x03\x8a\x09\x16\xce\x53\xc0\xdb\x2f\xfe\x5b\xd5\x5c\xf9\x8e\x82\x2f\x44\x5d\x63\xea\xf6\x72\x07\x2f\x9e\x9f\xe7\xc2\x29\xf7\x60\xb9\x59\x34\xa1\x5b\x4f\xae\xe4\x89\x35\x79\x37\x31\xc2\x14\x91\xbf\xf5\x25\xdf\xd7\x54\x35\x3e\xb1\xe9\x38\x8e\xb0\xf9\x4b\x15\xa2\xf1\x3b\x2f\xba\x22\x84\x3e\x29\x63\x13\x91\xc4\x11\xea\x92\xaf\xd1\x7a\x96\x7e\x6b\x05\x4e\xa9\x2c\xdf\x36\x5b\xca\x59\x0f\x83\x8e\xd0\xf7\x72\xcd\xcc\x49\xf3\x4e\x1a\xf4\x30\x85\xf1\x98\x20\x60\xc9\xaf\x27\x0a\x6b\x24\x7b\x99\x66\x26\xea\xa5\x59\x10\x86\xba\x08\xa9\x88\x89\x6c\xef\x8b\xe4\xe4\x88\x8e\x01\x03\xd3\x8d\x47\x53\x4a\xbf\xf1\x4d\x1a\x25\x3c\xde\xd3\x9a\x89\xfd\xa9\x0e\x5a\xad\x49\xba\xc3\x0a\x35\x51\x37\xc9\xb7\x46\x27\x64\xc0\xa3\xa5\x91\x90\xe6\x40\x69\x88\x5f\xab\x03\x2f\xcb\xa3\xc8\x86\x48\x96\xb9\x69\xa4\x44\x14\xcf\x55\x1f\xc8\x4a\xfa\x68\x39\x1f\x51\x9e\xfe\x73\x3c\x04\x41\x6f\x68\xaf\xb9\x53\x94\x2c\x82\x3a\x30\xdd\xf6\x11\x18\x37\xcc\x30\xcd\x20\xc9\x8f\x09\x38\x0d\x5c\xa5\x53\x13\x3b\x38\x53\x41\x49\xa0\xba\x70\x13\x73\xdb\xed\xdc\xce\xba\xe8\x48\x45\x16\x27\x8a\xe2\x0c\xd9\x00\x9b\x3f\xd1\xfd\x88\x11\x94\x1f\xd7\x0e\xd8\xf7\xe5\xf7\xa3\xa2\x72\x83\xbe\x92\x5f\xab\xd8\x27\x8b\xe3\x30\xd5\x64\x9b\x0d\x4d\xb6\xd9\x98\x88\x3e\xe7\xe6\x9a\x26\x48\xc2\x20\x72\x09\x20\xda\x58\x9f\x68\xa0\xc9\x27\x95\x45\x01\xe2\x8b\xa2\x74\x61\x32\x08\xbf\xeb\x71\x45\x3d\xeb\x66\xe1\x2a\xa2\x1a\x71\x90\x52\x98\x77\x08\x1b\xca\x7d\x6f\xbd\xb0\x2f\x7d\xa9\x99\x76\x13\x6b\x46\xa2\x3d\xa8\xaa\x23\xf3\xae\x3a\xe2\xf0\x58\x71\x62\x1f\xf3\xf0\x87\x3d\x6b\x3e\xdc\x7a\x86\x0a\x6c\x9b\x97\x54\xb0\x38\x45\x0e\x85\xc8\x0a\xef\xe3\xf0\xa4\xcc\xe0\xb3\xff\xae\x4d\x27\x34\x6d\xdf\xef\xfd\x56\x5b\x49\x93\xb1\xf5\x21\x4e\x5f\xa8\x28\x11\x1e\xe0\x48\x73\x4d\x09\x48\x72\x15\x10\x79\xd8\x34\xc9\x68\x3a\xaf\xa4\xf2\x1e\x84\xe5\xe2\xb1\x98\x36\xb5\x8f\xfa\xa2\xc4\xf6\x35\x9a\x35\x78\xac\x7f\xa4\xd9\xa0\xf8\x79\xcc\x52\x36\x6b\xc5\x47\xfe\xff\x6b\xda\x06\xa4\xf0\x40\x33\xe2\x0e\x71\x7c\xb1\x63\x4d\x03\x43\x1b\x6d\xd7\x7d\x7c\xfb\x4b\x6d\xa5\x5c\x02\x3c\x14\x1e\xe4\xa4\x4e\xe0\xde\xbd\x4d\x1b\x39\xd7\x20\x16\xca\x2a\x94\x2e\xe4\x2d\x45\xf2\x5e\x89\x63\x58\x29\x20\x46\x60\x6e\x14\x96\xc3\x8e\xb5\xf2\xca\x54\x00\x2e\x4d\xfd\xa3\xda\xc5\xe3\xa6\x57\xc2\x4d\xe2\x5e\xde\xb5\x0f\x35\x44\x19\xf6\x57\x6f\x15\xde\xe9\xf9\x6a\xcb\x0b\x59\xac\x2b\x6d\x3f\x46\x07\xa1\x55\xc5\xe4\xa8\x8a\x73\x0a\xce\x9d\xa7\x55\xe7\x65\x64\x6d\xb6\x43\x4d\xe6\xc3\x2d\x1d\xf2\x94\x43\xcb\xaf\x11\x26\xbb\x9a\x85\xf3\x4d\xb8\x5a\x37\x68\x89\x59\xe5\x18\xd8\x5d\xb0\xa3\x31\x5f\x55\xa2\x38\x89\xcd\x3c\x7f\x46\xb8\x68\x80\xd4\xf2\xeb\x3a\xff\x90\xcc\x24\x41\xbf\xcf\xe7\x19\x6a\x96\xc8\xb6\xf9\xb5\xae\xd8\x13\x0f\x78\xaa\xaa\x65\xe8\x4f\xdd\x4d\x2c\x79\xcc\xb1\x4b\x8a\xbf\xd6\x4f\x82\xe5\x38\x8c\x73\xf4\xe0\x25\x04\xd6\x6d\xe9\x62\x8b\x42\xc9\xde\x59\x3a\x7f\x1e\x6a\x38\xd1\xbf\x0d\xa4\xe6\x38\xa9\x4f\x23\xcd\xe7\x37\x4a\x04\x63\x8a\x70\x33\x12\x13\x2b\x9c\xe2\x47\x8a\x50\xfc\xa3\xca\x3e\x6f\x0f\x65\x8f\xd0\x57\x2b\x10\xe2\x7c\x05\x5d\x08\x64\xd7\xb6\xb6\x2a\xe4\x72\x6b\x05\xe0\x94\xe3\xf4\x94\x45\xfb\x0a\xa3\x83\x1d\xea\x3c\x9e\xb3\x8c\xa4\x3f\xff\xb8\xb2\xc9\x52\x75\x85\xb2\xd9\x39\x59\xd3\x02\xda\xdf\x1c\x9b\x2c\xa0\x8a\xf0\xdc\x9c\xa3\x7e\xf8\x59\x73\x6e\xe2\x33\xfb\xe6\x9b\xbd\x20\x25\xc7\x35\xe5\x76\x75\x46\xb9\x5d\x9d\x51\x7b\xc8\xe2\x97\xf7\x63\xd6\x02\xa1\x34\xdd\xd6\xe2\x1d\xe7\xb4\x1d\x33\x9c\x50\xc5\x4f\xa7\x1c\x6b\x6e\xf2\xe8\x1d\x69\x90\x22\x64\x44\x73\x70\x67\xdb\x03\xce\xb6\x03\x2a\x8e\x95\x7b\xac\x50\x80\x92\xab\x0a\x76\x72\x4c\x93\x8a\xef\xd5\x28\x57\xec\x6f\xae\x98\xc4\x59\x69\xa0\x94\xf2\x03\x6c\x24\xfc\x46\x31\x06\x43\x33\x18\x10\x1c\xdb\x69\x8a\x71\xf5\x50\xcc\x49\x94\x69\xb9\x89\xf9\x0c\xab\x98\x78\xf3\x1b\x07\x5e\xed\x05\x69\x1a\xf4\xe4\x71\xf0\x73\x57\x2a\x76\x67\xb4\x50\x55\x9c\x08\x1c\xdc\x35\x23\xa1\x9a\xc2\xaf\xeb\xea\xf3\x1d\x93\x0c\x4c\x10\xb9\xa0\x46\xb8\xc5\x3e\xf6\x3e\xab\x94\x51\xa2\xc0\x86\xa9\x8d\xf8\xca\xa5\x4f\xaa\x9b\xa6\x4a\x41\xbc\x1b\x07\x51\xb7\xbc\xf8\x2e\x44\x7f\x1d\xbe\x7d\x9f\xc3\xba\xd7\x48\x42\x11\x50\x7d\x34\x46\xde\x85\x64\xe1\x24\x06\x51\x3c\xc4\xcb\x4b\xc3\x38\xdd\x9e\x20\xf9\x1f\x9c\x99\xa5\x34\x78\x30\xcc\x2c\x12\x11\xc0\xec\x10\x2c\x39\x87\x2c\x4f\x35\xba\x55\x78\x9c\x70\x3f\x27\x88\x12\x02\x49\xac\xaa\x8f\x95\xf4\xe8\xdb\x8a\x63\xfd\x5a\x4d\xfe\xfd\x52\xb3\x2f\xf6\x08\x1e\xbd\xc1\x0d\x2d\x7e\x53\xe7\xe5\xda\x49\xbc\x9e\x2f\xd6\xe5\x6d\x2c\x03\x7e\xe3\x8e\x96\xb8\xb7\x9a\xa6\x16\x51\x35\xee\xff\x70\x4b\x4d\x9a\xc3\x75\xf5\xb4\x30\xee\x74\x56\xdd\xc3\x95\x16\x7a\x63\xde\x1b\xf7\x79\xb6\x5f\x3f\x4e\x6c\x30\x88\x2c\x4c\xae\x3c\x7c\xdd\x97\x5c\x7e\x4a\x47\x19\xd6\xea\x55\x37\x47\xd9\xde\x45\xd6\x08\x06\xfc\x8a\xa2\x57\x5c\x69\x3d\xaa\x9c\x86\x10\x42\xd6\xd5\x5a\x6b\x54\x67\xc2\x4e\x3c\xa5\xa6\xd7\xd4\x9a\x07\x32\x40\x1c\x0d\xeb\xfb\x54\x5d\xf6\xbe\x4c\xed\x55\x8d\x46\x75\x2a\x74\xc7\xf1\x5b\x38\xb1\x87\x41\x18\xa7\xf1\x78\x68\x93\x74\x5a\x39\x63\x72\xee\xea\xda\xc5\xfb\xe6\x9d\x64\x06\x3d\x52\xe9\x1d\x3b\xd8\x94\xcd\x04\x5a\x80\x93\xf7\x4f\xb4\xce\xfe\x25\x95\x58\x5e\x54\xcd\xe3\x6e\x90\x74\xf3\x74\x67\x95\x69\xe7\xf3\x84\x1b\xd8\x9f\x98\xfb\x83\xf8\x03\x39\xd8\xa5\x2a\x1f\xaf\x7c\x30\xc8\x5c\xfe\xa9\xca\x8c\x5e\xc9\x47\x63\xd6\xf3\xc0\xa3\xe0\x19\x83\xd8\xea\xff\xe2\x03\x04\x39\x04\xaa\x21\x92\x65\x3e\x59\x6d\xcc\x93\x86\x8b\x9b\x35\x70\x81\xe2\xd7\xaa\x87\x34\xcc\x93\x5e\x68\x19\xbb\x50\x47\xae\x7e\x52\xa7\x13\x5d\x5b\x06\x68\xe5\xce\x80\x88\x0a\x52\xb5\xfc\x5a\x35\x1e\x47\x41\x2f\x0d\x5e\xe5\x55\x85\xa1\xc5\x10\xf1\x6b\x55\xa3\x1f\x99\x8c\xe9\x78\xa8\xff\x4f\xaf\x79\xb6\xe3\x79\x25\xbb\x7f\xcb\x8b\x20\xe6\x89\xeb\x04\x3a\xae\xb1\x2b\x8b\x68\xae\x31\x75\x32\xbb\x59\x10\x47\xbb\xcb\x3f\x40\xe8\x21\xb0\x40\x94\x5b\x3e\xa5\xf4\x4c\xd8\xd5\xbe\x50\xfd\x08\xce\x73\x89\x75\x15\xb4\xe3\x65\x7a\x70\x7c\x1c\xb7\x14\xc0\x8c\x37\x29\x1c\x85\x6f\x4f\x40\xc0\x66\x0f\x34\xd3\x3c\x49\x2c\xbb\xf8\x72\x63\x8e\xc6\x5a\x9a\x74\x3a\xd1\xed\xc6\x51\x0f\x66\xe4\x02\x8f\x21\x90\xb5\xa8\x96\x37\x9c\xb6\xea\x74\xdb\x13\x6a\xd7\x99\x2b\x26\x42\xe7\x0d\x47\x61\x9f\x5e\x53\x2a\x8c\xd6\xa4\x36\xb4\x69\xca\x3d\x1e\x27\xa6\xeb\x81\xb1\x0a\x0e\x92\x0d\xed\xe8\x73\x1e\xcc\xb7\x6d\xcd\x83\x45\xdf\x25\x9a\x9a\xeb\x87\x94\xf1\x70\xe5\xf0\x66\x02\x9b\xb2\xcc\x3e\xae\xc9\x0c\x10\xf1\xc1\x44\x7b\x17\x0b\x85\xad\x58\xa8\xd4\xc3\xf6\xcd\x2d\x25\xae\x7d\x86\xa2\x64\x0e\x8c\x11\xe5\x09\xa4\x80\x8a\x84\x7c\x59\x5a\x2e\xfd\x02\x95\x38\x91\x26\xdd\x07\x10\xd8\xe1\xc2\xcb\x75\x2a\xe6\x2f\xf4\x84\x71\xf7\x47\x8b\xc6\x57\x67\x9d\xf3\x88\xf2\xb7\x5c\xb1\x10\x19\x9b\x9b\x73\x20\x64\xb5\x9b\x9f\x57\xc2\xd1\x63\x9b\xb8\x82\x68\x79\xf7\x28\x36\xa0\x34\xc2\xaf\x27\x26\xc8\xb3\xcd\x91\x89\xcc\x80\x6a\xee\x62\x33\x7b\xfb\x49\xda\x32\x51\xe0\xe5\x3a\x3b\x52\xda\xa3\x18\x49\x64\xaa\x0f\xaf\xd5\xc4\x09\xa3\x38\xb2\x65\xf8\xce\xb6\x24\x6c\x6b\xa4\x5c\x25\x7e\x32\x71\x22\x3e\xdb\x1c\x98\x70\x99\xe8\x1d\xb8\x4d\xe1\xb1\x69\x52\xdb\xc4\x09\xbe\x38\xb3\xd8\xb4\x87\xc6\x36\x82\x08\x98\x8b\x7a\xee\xd0\x7a\x92\x0c\xa9\x1c\x06\x81\x4a\x6e\xdd\xfa\x7f\xbb\xd9\x0f\x92\x34\x43\x4f\x50\xd8\xab\xde\x77\xf7\x6c\xe1\x91\x65\x47\x55\x59\xea\x62\x51\x91\x16\xed\x87\x41\x37\x73\x02\x01\xbc\xb5\x52\xf8\x2f\xdb\xac\x02\x39\xd9\x34\x7b\xd4\xb7\xda\x20\x17\xec\x20\x1d\x3e\x7f\xfb\x3d\x9c\x08\xd2\x0c\x2b\xaf\x09\xe5\xc8\xb3\xaa\xe5\xc2\xed\x75\x5c\xf8\xe5\x96\x8a\x3b\x37\x68\xa1\x62\x2a\xbd\x43\x93\x57\x5c\x67\xe9\x56\xf1\x5c\x6f\xe2\x51\xa2\x47\x7b\xa5\x78\x46\x67\x54\x29\x8c\x9a\xc3\x55\xea\xc3\x38\x38\x6e\x79\x81\xce\x2b\xab\x9c\xd3\xc2\x35\xf1\x16\x52\xff\x43\x1d\x5c\x6c\x3f\xc5\x4c\xa9\x6c\x9f\x2a\x61\x75\xbe\x9f\x15\xda\x73\x38\x36\x0d\xe5\x36\x73\x5b\x59\x7c\xdf\x56\x9d\x09\x52\x72\xcb\x13\x86\x3d\xe2\xe7\x21\x01\x8f\x72\xd5\xfb\xf8\x05\x29\xa4\xfa\xd3\x6e\x10\x87\x3d\x8b\xdd\x59\x59\x7f\xbd\x24\xd6\x00\xb4\x39\xf3\xee\xda\xaa\x78\x06\x94\x43\x89\xbd\xe6\xb3\x42\xd1\x27\xaf\x6a\xad\xda\xc3\xf4\xec\x71\xe8\x1f\xf6\x35\x95\x7f\xa3\xd7\x74\x77\x68\xa2\x81\x4d\x9f\x50\x0c\x81\x53\x85\xdf\x14\x37\xe8\x87\x44\xb5\x81\x2e\x0d\x77\x74\x17\x1d\x4e\x59\x12\x8d\xdf\x79\x91\xab\x9c\x37\x80\x53\x70\x0b\xa7\x9c\x3d\x58\xa4\x77\xb5\x0c\xf1\x47\x34\x3a\x62\x97\x46\x5b\xa7\x60\xe0\x7c\x2a\xc2\x30\x7e\x99\xa2\x4a\x58\x60\x03\x53\x00\x38\x52\x78\x62\x09\x07\xfa\xa9\xad\x7e\x40\x50\x9f\x11\xc9\xce\x5b\x5a\x77\xec\x96\x4a\x14\x3a\xa1\x89\x96\x6c\xf6\xc0\x0a\xb0\x6e\x4b\xe4\xdd\x25\x1d\x12\x56\x7b\xae\x35\x90\x16\x93\x0e\xe3\x04\x3b\xa1\xf0\xc5\xca\x71\x15\xba\x98\x0f\x1c\x4c\x27\x27\xc6\x6b\xc3\x37\x44\x4e\xd2\x23\xe0\xd7\x13\x12\x2b\x2f\x2e\x34\x43\x6b\x7a\x5b\x90\x4a\x0a\x78\x88\x93\x4c\x54\x61\x47\x84\xf0\xc1\x18\xbe\x59\x28\xc1\x1f\x86\x8a\xa3\xbe\x7e\x07\x27\x39\xf2\x4d\xb4\x8d\x50\x66\x80\xbb\xb8\x68\x08\x2b\xb0\x2d\xd8\x28\x4e\x09\xc8\x29\x7e\x5d\x53\x5a\x0e\xa3\x20\x1a\xc4\x0d\xdf\xb4\x85\x96\x03\xbf\x2e\x74\x12\x16\xf5\x83\xc8\x3a\xcf\x4c\x57\x47\xfe\x7f\x51\x8b\xd9\x3b\xdb\xcc\x82\x7e\xdf\x44\xc8\x35\x1c\x4f\xc2\x1b\x23\x9e\x9b\xc8\x94\xe7\xe6\x38\xcc\xe0\xea\x0e\x0e\x05\xa0\x36\xf8\xb5\x0a\x14\x33\x1b\x86\x41\x34\xd8\xe1\x59\x06\x67\x71\x9a\x8a\xdf\x9e\xa7\x1c\xf0\x61\x8a\x98\xff\x35\x0e\xb7\xb0\x83\x9e\x54\xb6\x91\x5d\xed\xc9\x82\x8f\x48\xdc\xe2\xd0\xbf\xf1\x8a\x49\x00\x40\xc6\xee\x78\xbd\xa5\xe0\x2c\xd7\xeb\x0a\x1b\x29\xb3\x56\xe8\xcb\x2b\x8d\x10\x7e\x53\x07\xaa\xf8\x62\xb3\x17\x8c\x79\x18\x24\xf1\x6f\x28\xbb\xd2\x3a\x99\x92\x34\x0a\xfa\xfd\xf2\x98\xfc\xda\x57\x5c\xbd\xb8\x52\x49\xae\x03\xf4\x13\x77\x79\xaa\xdc\xd5\xd8\xf1\x97\x9e\x2a\x6a\xc0\x47\x68\xdf\x41\x35\xe8\x87\x0f\xec\x34\x76\x92\x9c\x21\xae\x98\xab\x6f\x60\xe4\xf8\x8d\x2a\x91\x9a\xa4\x83\xc9\xe0\xf8\xa5\x2e\x11\x9c\xc4\x76\xed\x9b\x6f\x26\x36\xca\xca\xd8\xd4\xe1\x42\xa0\xc3\xc3\xaf\x8b\x47\xdd\x46\x61\xc3\x11\x57\x13\xc4\x40\x94\xae\x40\xac\x45\xb7\xa6\x84\xcf\xd2\x26\x3f\xe5\x2b\x43\x4c\xb5\x16\xbe\x51\xf9\x83\x08\x21\xaf\x56\x2a\x6f\xa9\xc9\x88\xd7\x8c\xdd\x0f\x9e\xe3\x52\x84\x6b\x38\x65\x66\x2c\x3c\x3c\x27\xd8\x27\xb3\xa6\x0b\x7d\x2f\xf6\xc7\x0d\x45\xee\x13\x03\xcb\x11\xb8\xb7\x18\x6d\xe6\x57\x63\x8d\x1f\xc6\xb4\xe6\x7f\xe1\xd9\xcb\xff\x34\xd1\x06\x23\xbd\xa4\xcc\x26\x81\x09\x3d\x25\xb6\xce\x66\x78\x8f\xaa\x38\xf5\x0c\xcd\x68\x61\x44\x94\x37\x23\x54\x89\x87\xfd\xc4\x27\xd2\xbf\xc8\x11\xf9\xda\xe0\xfb\x34\x4b\x50\xe9\xbf\x87\xa0\x59\x92\x41\x3d\x7a\xc3\x20\xda\x55\x86\x34\xa8\x6f\xde\x2f\x94\x2c\xf0\x86\x62\x07\xfd\xbc\x50\xce\x27\xeb\xba\x29\x73\x8f\x53\x09\xfe\x4c\x05\x00\x09\x6d\x5d\x26\xd8\xab\x7e\x75\x18\x9b\x28\xdd\x5d\x06\xcf\xce\x72\xc6\xb5\x71\xae\x20\x4e\x11\xa9\x17\x45\xaf\xbb\x8f\x19\x2c\x6e\x75\xe5\x73\x16\xb1\x1b\xb5\x6e\xbf\x8f\x43\xd2\xc9\xc6\xb8\x7a\xd9\x13\xed\xa7\x14\xaa\x34\x32\xdd\xa5\x78\xd9\x68\x31\xa7\x8f\x55\x39\xe4\xe3\x89\x03\xe4\xe0\xcc\xf3\xcd\xb8\xd7\x6b\x78\x27\x30\xb4\xcc\xf9\x75\x6b\xab\x58\xd2\xc1\x99\x72\x8f\x31\x49\x37\xcd\xb6\xba\x76\x5d\xd1\xf8\xfd\x2b\xae\x53\x35\xb0\xd1\x38\x89\x3b\xb6\xa1\x42\xbe\xc6\x9a\xc7\x98\x35\xda\x4f\x29\xf1\xda\x74\x48\x62\xa4\x4a\x85\x82\x1b\x60\x42\x00\xf7\x49\x62\x68\x56\xb2\x38\x9a\x2a\x73\x30\x2d\x29\x88\x45\x72\xab\x62\x97\x53\xc3\x59\xc8\x56\xc7\x96\xb7\x3c\xb4\x9d\xee\x29\x2c\xe7\xbd\x3a\x33\xcc\x38\xef\x64\x3c\xc5\xd1\x43\x39\xae\x85\xbd\x8f\x2b\x80\x1e\xda\x84\x1e\x94\x7c\x5b\x09\xa5\xdc\xae\x31\x2a\x9d\x6f\x76\xcd\xd8\x74\xbc\xba\x42\x1d\x10\xe6\x73\xba\x73\x4e\xdd\x3f\x91\xfd\x06\xf6\x0d\x4a\x6f\xfc\xda\xc9\x83\xd8\x71\x10\xda\x71\xba\x3a\xad\x8a\xe3\x85\xaf\x6d\xfe\x31\x6e\x41\xf4\x51\xfc\xa6\x7f\x47\x55\x7e\xad\x59\x7a\x58\x01\xee\xb0\x17\x41\x0a\x01\x25\x2d\xac\x32\x18\xc9\xa0\xd7\x75\x05\xa1\x1b\xc2\x96\x69\x28\xfe\x60\x8f\xde\xb1\x46\xa9\x2a\xf0\x29\x17\x30\xab\x85\x91\xe1\xe9\xd0\xa7\x11\x6c\x22\xe7\xb9\xa4\xf2\x9c\xc4\x7e\x23\x0f\x12\x16\x7f\xf7\x66\x33\xc8\xde\xc5\xe9\x60\xe2\x88\x23\x20\x6e\x47\x70\x09\xe0\x2c\xe1\x88\xe3\xd7\x93\x5e\xa6\x33\x8b\xcd\x30\x58\xc2\x00\x0b\xbd\xa8\xfc\x0d\xe9\xf2\x57\x02\x96\x8a\xab\x83\xf0\x8a\x3c\xb9\xe0\xa6\x53\x33\x1e\x27\x71\xdf\x92\x47\xa5\x09\x95\x5c\xec\x4d\x6c\x3d\xd8\x87\xd8\x00\x4e\x88\x03\xaa\xc1\x00\x52\x0c\x4e\xff\xf7\x2b\xfb\xdd\x72\x20\x0d\xe6\x0a\x49\x9b\xdf\xd4\x9c\xc5\xcd\xe1\x6a\x27\x09\x7a\x4a\x87\x05\x32\x2e\xfc\x7a\xcd\xa7\x8a\xaf\xc4\xc3\x68\x5a\x35\x40\xee\x30\x97\x43\x54\x17\x7c\x5d\xeb\xaf\xf1\xd0\xa5\x0a\xbb\x75\x9e\x3b\xa5\x4c\x2f\xef\xcb\xe5\x12\x84\xf6\x52\x3b\xf9\xbc\x4a\x6a\x47\x63\x03\x7d\xfb\x70\xb5\x41\x19\x87\x2e\x00\x49\xb8\x54\xa3\x03\x38\x4e\x82\xa8\x1b\x8c\x4d\x38\xe5\xed\xe3\x01\xc4\x44\x2e\x7c\x57\x89\x99\x7b\x33\xb3\x34\x0c\x46\x53\x0a\x9f\x8e\x0d\x05\x85\x14\x6c\x28\x62\x7f\xe6\x21\x01\x69\x16\x74\x97\xa6\xcb\xed\x13\x29\x13\x3a\x3a\x48\x99\x90\x24\x4b\x74\x54\xce\x1e\x84\xc8\x97\x27\xc2\x1b\x2a\xfe\x96\x07\xa9\x13\xd9\xc5\xe6\x08\x58\x08\xbf\x56\xf9\x7b\x9a\x99\x84\x4b\xb0\x82\x3d\xa2\xb1\x47\x72\xce\xed\x07\x7e\xa3\x0d\x6a\x6f\x6a\x88\xc0\x9f\x15\x4a\x01\x6d\x47\xfb\x49\x25\x77\x10\x2d\xad\xb2\x78\xf6\xf3\xa2\xa4\x44\x63\x81\x1c\xff\x9a\xca\x6d\xaf\x78\x65\x7b\x33\xb2\x28\x47\x23\x9e\xc1\x78\xa3\x51\x05\x90\x25\x8e\xcc\xff\x44\x67\x1c\x77\xae\x6b\x6d\xa6\xe3\x34\x0d\xc6\x58\xab\x28\x76\x41\x95\x8e\x5f\xb7\x94\xba\xe8\xc0\x46\x19\xd7\xc0\xf1\x90\xdf\x2b\x7c\x1f\x1b\x3b\x3a\x3e\x75\x41\x3b\xa7\x1e\xae\x2b\xbe\xbb\xd5\x8e\x43\xe3\xa3\xc2\xa3\xc8\x3e\xaa\x73\xe7\x48\xcd\x28\x5e\x36\x4c\x9d\x06\xfa\x84\x9d\xf9\xf8\xcd\xc4\x59\x5b\x86\xcd\x26\x0c\xa7\xcb\xed\x57\x31\x00\x17\x1c\x30\x8c\x76\x46\x4c\xa3\xcd\xc2\x67\x54\x8d\xb6\x4a\x3e\x6d\x9c\x87\x54\x82\x16\x02\x43\x79\x99\xc2\x6c\x98\x34\xa7\x69\x9a\x28\xed\xc6\x0d\x1f\x25\x32\x46\x54\xc2\x7c\x55\xde\x1b\x9b\x28\x48\x87\x0f\x6b\xcf\xb9\x42\xd3\x5d\x15\x4a\xfd\x08\x55\x3e\x31\xf3\xae\x81\x29\x80\xf4\x1d\xc5\x03\xad\x40\xc2\xff\x9f\x4a\x9a\xfc\x81\xa2\xe2\x09\x5e\x28\xae\xe8\x91\xba\x9d\x2a\xb5\x87\x72\x8e\xcc\x11\x95\x9c\x52\xc5\x83\xda\x3e\x4a\x4c\xf0\x7d\x85\xbd\x2c\x2f\x4a\x30\x99\xfe\x8e\xed\xaa\x05\x73\xdc\x1b\x2d\xd3\x37\x4b\xe9\xb3\x46\xf0\xc9\x74\x72\xd9\xbb\x70\x10\xbc\x81\xbd\x8b\xdf\xe0\xa0\xaa\x54\xf6\x48\xe0\x89\x42\x49\x91\xee\xa1\x58\x54\x42\xf9\x1a\x67\xba\xd0\xa6\xe9\x34\x45\x8b\x08\x46\x4e\x14\x9a\xc5\x47\x07\x26\xee\x65\x57\x5b\xcf\xef\xc7\xaa\x16\x29\x54\x30\x43\x02\x70\x56\xb9\x46\xbc\xa9\x88\x39\xe7\x68\x5c\xd0\xa7\x7a\xdb\x51\x28\x5e\xc9\x47\xe3\x74\xa7\x92\xf1\x78\xa8\xad\x84\xa2\xf8\x60\xd1\x66\x8f\xca\xcb\x45\xb2\xbf\x37\xb5\x19\xd5\x2f\x54\x81\x63\xd9\x42\xfc\x94\x24\x3f\x50\xa6\xfa\xd7\x85\xb2\xb4\x03\x42\x4b\x68\xe4\x4a\x5e\xe0\xa4\xee\x87\xdf\x51\x36\xe4\xeb\x35\x64\xf3\xfd\xcd\xc4\x2e\x53\xa7\xc1\x09\x8b\xb0\xa7\x3e\xbf\x51\x88\xd4\xbe\x85\x8d\x0a\x1c\x0e\x59\xb1\x05\x7f\x2c\xf2\x2d\x8f\x38\x72\x49\xb2\x0a\x56\x3e\x1e\xc6\xe3\x74\x62\x8a\x57\x90\x77\xcc\x9a\xbc\xa4\xbd\xb3\x4d\x62\x4f\xa6\x96\xfb\x6d\x18\x26\x6e\x9b\x56\xfa\xe9\x28\x1b\x6c\x6b\xfb\x06\x64\x19\x9e\x2b\x10\xec\x1f\xaa\x6e\xcf\x1f\x96\xe9\xa6\x13\xf2\x0f\xbb\x79\xc8\x5e\x94\x0d\x27\xb3\xfb\x2f\x31\xbc\xfc\x46\x47\x75\xb6\x3f\xed\xa1\xfa\xbb\x94\xea\xdc\x27\xa7\x15\xa1\xee\x76\x45\x75\xee\x29\x15\x84\xf6\x72\xea\x2d\xed\x54\xe2\xc0\xa7\xf1\xc8\xf8\x0d\x5d\x28\x46\xfc\x93\x42\x45\x10\x9f\xb4\xbc\xa0\x00\x38\x57\xa2\x97\x5e\xf7\x28\xd3\xa1\x19\x57\xfd\x7b\xb8\xed\x24\x90\x90\xa7\x14\xb9\x38\x32\x61\x16\x58\x4c\x7e\xa9\x80\x35\x9c\x90\x18\x52\x1b\x64\x57\xb7\xb1\x70\xf9\xcd\x44\x2b\x80\xc4\x69\x7a\xa3\x20\x73\x5d\x62\xf4\x19\xdf\xd0\x9a\x29\x6f\x4c\x48\xb1\x2e\xce\x34\x6d\x0a\xaf\x57\xcc\x6e\xe4\xab\x15\x78\x2a\x0b\xa3\xb8\x05\x17\xc6\xf1\x28\x85\x78\x3d\x8e\xd7\x3d\x6d\x85\xa1\xdf\x44\xe2\x88\xfc\x0d\x16\x26\x68\xa7\x7a\xfd\xa4\xa1\x0d\x83\x6e\x3c\xce\x6c\xb2\x83\xfe\x56\xcc\x6b\xbd\x04\x3e\x8e\x62\xd4\xde\x77\x92\x37\x89\x68\x49\xf8\x47\xf4\xce\x84\xfa\xff\xc1\x99\xd9\x66\x10\x99\xf1\x38\x89\xc7\x49\x60\x32\x7d\x3c\x5e\x53\xf9\xd5\x35\x4d\x8a\xb6\xa4\x83\xec\x72\x77\x28\x2a\xf1\x6b\xc5\x23\xb5\xab\xf6\x21\x45\x53\xbb\xde\x52\x94\xe0\xdb\x2d\xb5\x2c\x8e\xd3\x6d\x08\xbf\xc1\x6f\xcf\x67\xb4\x1e\xf8\x27\x18\x24\xd4\x44\xee\x16\x8f\x2a\xa9\xd7\xe4\x11\xfa\x66\x7c\xd9\x4d\xbd\xe0\x6e\x52\xd9\x1a\xf1\x20\xb7\x30\x44\x69\x9e\xbe\xcd\x59\x40\x2c\x7a\xbe\x9b\x62\xbb\xde\x2d\xfc\x79\x78\x55\x69\x35\x70\x7d\x87\xbf\xaa\xa5\x12\x1c\x3a\x6d\xdd\x39\x4e\x59\xc0\x4e\x5a\x9c\xe2\xca\x51\x7e\x09\xd6\xce\xae\xb6\x92\xa6\x60\x93\x41\x81\x11\xfb\xc0\x99\x71\x8b\x28\x3d\x7d\xd7\x4b\xfd\x25\x79\xb4\x04\x60\xa8\x58\x55\x7b\x90\x35\x1e\x9c\x08\x3c\xa8\x4e\x00\x24\xe7\xc8\x5d\x10\x11\xdf\x75\x0e\xf4\x45\xac\x53\xb9\xab\xbe\x83\x63\xc8\xf9\x5b\x95\x97\xe7\x40\x8e\x6e\x4f\x3c\x46\x89\xa6\xb8\xf4\xfa\xbe\xe9\x46\xcb\xbb\xc1\x73\x88\x81\xbd\xfc\x87\x4a\xa7\xac\x9f\x27\x71\xd2\xa0\x88\xc8\x99\x0a\x3a\x03\xdf\x2a\x01\xb2\x3f\x34\x38\x2f\x9d\x3e\x93\x3f\x23\x8f\x51\xe0\x21\x6a\x83\xe5\xef\xf2\xeb\x89\x90\xae\xcc\xf8\xc6\x89\xed\x06\x3c\x7f\x59\x23\x5c\xe9\x61\x68\x04\x77\x3a\x4e\xcc\x2a\xf6\x59\x07\x0e\xf5\x14\x7f\xc5\xf4\xed\x99\x90\xf8\x15\xe5\xd3\x60\xdd\x0b\x9a\xd1\x38\x8e\x39\xf1\xc3\x71\x7a\x44\xe1\xc4\x92\x38\xdd\xe1\xf9\x14\xa0\xbc\x8b\xec\x92\x02\xe2\xef\x64\xe8\x29\x06\x9f\xa5\x0a\xe8\x5f\xcc\xe7\xda\x35\x50\xa5\xc4\x92\x0a\x31\x65\x45\xb8\xa9\x3f\xc5\xd3\x73\x44\x2a\xe5\x03\xa8\x44\xe3\x4c\x90\xda\x47\x95\x3f\x1b\x2e\x48\xd2\xf3\xc6\x97\xbf\x2e\xe2\xa9\xc8\xdb\xc5\x33\x96\x7a\x41\x4e\x73\xd1\x73\x04\xd1\x0e\xc5\xa1\xb2\xd9\xf2\xf0\xaa\x6f\x63\x42\x63\xfa\xdc\xa2\x63\x82\x6d\xef\x50\x0b\x63\x2b\xea\xc2\xcf\xa5\x9b\x4a\x5b\xa2\x93\x67\x5f\x28\x97\x34\x1e\xc2\x29\x0e\x33\x9d\x31\x4e\x39\x29\xd0\x40\x78\x0f\x57\xe9\x1a\x75\x8e\x04\x04\xa5\x77\x8c\xf3\x35\x7a\x4c\xd8\x27\x37\x14\x5f\x10\x64\x58\x8c\xd7\x7f\x05\x0b\x15\x1b\xc2\x34\xb0\xc2\x48\x78\x6e\x68\xa1\xd2\x6d\xed\x32\x77\xdd\xe4\xad\xdc\x71\x80\xcb\xc1\xc1\xc9\xb7\xa7\x4d\xb7\x87\x91\xda\x2c\x54\xed\xe4\x21\x6c\x04\x4e\x14\xb9\x1c\x1e\xd9\x00\x1b\x7b\x67\x1d\xb4\xd7\x97\x26\x7e\xa4\x4d\x78\xaf\x20\xda\x74\xfa\xc1\x8b\x02\xc5\xbc\x31\x31\xff\x49\x02\x36\xce\x13\x87\xbd\x42\x51\xf6\x86\xa2\xeb\xdf\xa8\x2b\xa4\x75\x92\x3c\x62\xd9\x54\xb7\x12\xfc\xaa\xd0\x93\xc8\x9a\xee\x90\x60\xc6\xd8\xc9\xce\x14\xca\x84\x71\x7b\x5b\x15\x5f\xf1\xe4\x35\x30\x14\xa0\x81\xfb\x18\x19\x11\x75\xa7\x91\x11\x55\x77\xff\x3b\x69\xe8\x18\x28\x75\x8e\x64\x8e\x87\x35\x8c\xbb\x4b\xe3\x24\x8e\xfb\x2a\x9c\x47\xf3\x8a\x5f\x6b\xec\x43\x4e\x78\x86\x06\x3d\x40\x89\xa4\x69\x46\xf1\x9b\x1a\x45\xdd\x97\x9a\xdd\x38\xcb\x64\xed\x8b\x6d\x58\xf9\xfd\xd8\x07\x20\x53\x25\x84\xd4\x1a\xb1\xc9\x9e\x4d\x02\xd1\xa4\xa7\xdb\x11\x9a\x3a\x7d\xa1\xd0\xdc\x9f\x54\xfd\x72\x93\x05\xd1\x20\x55\x4d\xb6\xd3\xaa\xc9\x76\x7a\xe2\x1a\x0f\xbc\x40\x46\xe3\xdf\xc8\xb5\x77\xd9\x67\x8a\x5c\x74\x95\xe6\xbd\x04\xdd\x75\x31\x12\xd7\xe3\x7a\x68\x7d\x03\xf1\x72\x85\xb8\x8b\x97\x0a\xa5\x7c\xfc\xda\xc4\x6f\xef\x9b\x6f\x9a\x65\x9b\x98\x01\x7e\xdb\x21\x0c\x1c\x03\x1f\x1b\x2a\xf6\xbf\x7f\xa3\xa6\x51\x27\xee\x74\x56\x41\x1f\xc3\x7d\xfd\xb4\xe5\xa1\x08\x3f\x55\x8d\x9a\x28\x5e\x79\xa2\x5c\x16\x5c\xcb\x69\x29\xfa\x22\x2b\x78\xb0\x63\x3a\x96\x18\xe7\x44\x58\x3d\xa8\xb8\x5c\x29\x94\xd4\xc5\x63\xed\xc6\xd7\xbe\xe2\x5c\x20\x94\x71\xd3\x63\x6d\x9f\x8e\xa3\x62\xc4\xed\x6b\x05\x07\xe6\x99\x4b\xa3\xfa\x0f\x3f\x8f\x65\xec\x50\x22\x07\x67\x78\x57\xbd\x44\xba\xea\xb8\x65\x04\xc6\xd2\x93\xf1\x11\x4d\x3f\x5c\xdd\xe9\x65\x00\x2f\x29\x4f\xbb\x53\xf8\x0d\x99\x90\x2a\x51\xd9\x4e\x89\x8a\xe2\x71\xed\x77\x0a\x6c\x92\xdb\x44\x71\xd2\x55\xda\x5c\x17\xf4\x21\x73\x61\xa2\xae\x30\x3f\xdf\xcc\x86\x36\xb1\x3b\xca\x2b\x11\xa9\x6c\xe7\x2f\xb6\xfb\xe9\x76\x79\x1f\xda\xb2\x10\xb9\xc4\x4e\x62\x86\x48\x41\x5b\xc1\x20\x02\xf2\x6d\x2e\xbf\x80\x63\x5b\x3c\x2c\x09\x74\x9d\x2b\x7e\x27\xc9\xc7\x9a\xdf\xf8\x4e\x51\x09\x93\x3c\x31\x6a\x43\xf5\x09\x46\xdd\xae\x09\x43\x95\x12\x71\xcc\x21\x32\x7e\x35\x7a\x6e\x89\x8d\xe2\x00\xe0\x70\xf1\x7c\xa2\x8f\x88\x19\x94\x8b\xbc\xe3\xb1\x43\x92\x39\xd6\x17\xb2\x27\x7e\x5d\xd7\x76\x1e\xda\xde\xc0\xed\xb2\x0e\x2e\xee\xa1\xe3\x2d\xe5\x7a\x18\x67\x41\x17\x7f\xa8\x57\x85\xc4\x54\x4f\x39\x82\x4e\x94\x0d\xe2\xb0\x1f\x88\x8a\x96\x43\x26\xf8\x0e\xf8\xba\xea\x54\x45\x36\x18\x50\x94\xb3\x79\xbb\x68\xfc\xce\x8b\x9b\xb7\xeb\x60\xbe\x66\x3c\xb6\x06\x5e\x82\x08\xac\xd1\x39\xe3\xd7\x6a\xa1\x85\xf9\xa1\x29\x3f\x0d\x6f\xd0\x15\x62\xa4\xfe\x8a\x14\xde\x45\xc5\x59\x39\x80\x5a\xc3\xe5\x7b\x7d\x7e\xf1\xeb\x89\x9e\xd3\xdc\x5c\x93\x55\x77\x39\xbb\xd5\x25\xaa\x8a\xef\xd0\x83\xfc\x9f\xbf\x91\xc7\x59\x12\x47\x68\x41\x89\x37\x45\xc3\x71\x93\x4f\xaa\xc0\xeb\x6b\xfb\x0f\x4c\x7b\x39\x5e\x46\x9f\xe2\xca\x24\x20\xd6\xee\x47\x12\xcf\xd4\x24\x82\x66\x10\x93\x32\x38\xea\xf5\xff\x99\x86\x45\x63\x3a\x24\x4b\xae\x61\xa5\x66\x79\x3f\x43\x03\x49\xa4\x10\x54\x6b\xed\xa2\x06\x4a\x2e\x05\x61\x98\x4e\xfb\x88\xe4\x6d\xd0\x85\xa5\xba\xea\x41\x6c\x27\xd4\x2e\xf9\xb6\xab\xd9\x0e\x6d\x88\x90\x1f\x9b\xc3\x0e\xea\xcb\x21\x5a\x78\x7c\x4d\x6d\x8b\xbf\x04\x39\x1f\xfc\xd5\xf6\x35\x0a\x2a\xd0\x84\xe5\x53\x5c\x20\x17\x5e\x2a\x94\xc3\x18\x10\x2a\x7e\xb5\xed\x27\xc5\x1b\x85\x42\x8e\x5f\x54\x43\x1f\xd9\xa8\xa1\x0b\xa8\x34\xc0\x52\x4c\xad\xb1\x5d\x34\xc9\x20\x1f\xd9\x88\x4b\x37\xe2\xe9\xa4\x20\x47\x17\xeb\x74\x7a\xd2\xd5\xa8\x17\x74\xa5\x59\x83\x58\x17\x9c\x2d\x7e\x5d\xa7\x2f\x1c\xf0\x67\xb8\x16\x20\xb4\x5e\x0f\x10\x3a\x3b\x59\xf3\xd9\xeb\x3c\xf6\xcb\x3f\x53\x9c\x97\x59\xe7\x4b\x44\x5f\xc6\xe7\x40\x0d\x33\xe0\xa5\x66\xdc\xef\x03\x57\x58\x21\xc8\x17\x9a\x29\x34\xb9\x37\x2f\x34\x97\x6d\x16\x2b\x1d\xb0\x2d\x3a\x0c\xfe\x2c\x1d\x05\xa1\x89\xd0\xf1\x90\x16\xbf\x3e\x80\x95\xe9\xe7\x4d\xd5\xde\x7c\x35\xb6\x99\xb8\xec\xcb\x96\x47\x7f\x2a\x7b\x9e\xec\xd7\xbd\x38\xca\x25\x14\x13\xdb\x3f\xa5\x7b\x72\xc6\xb3\x19\x4d\x68\x92\x80\x47\x0a\x88\x35\xca\xc8\xe7\x37\x91\x91\x60\xcf\x39\x5e\xa7\xc9\xd3\xb3\x1d\xa9\x4c\x88\xd9\x66\xc3\x89\xb0\x5d\x9c\x18\x1d\x22\x90\x90\x7c\x8a\x2b\x21\xa3\x4e\x2d\xcd\x6f\x77\xd6\xa4\x69\x3e\xb2\xb0\xb2\x73\xde\x61\xe5\xd2\xaa\xa0\xac\xf0\x54\xd1\x3a\x73\x7f\xe5\x41\x09\x3c\x84\xa2\x57\xea\x21\xef\xbb\xa9\x74\x2b\x5d\xbd\x3d\xca\x8d\x73\x64\x77\xfa\xde\xd6\x95\x96\x0a\xf8\x59\xb2\x07\xd1\x08\xa3\xe9\x9c\x9c\x89\xf3\x70\x61\x2e\xa0\x58\x90\xd5\x8c\xd8\x38\xe8\x46\x41\xb7\x1c\xea\xcd\x0d\xda\x9f\x9d\xc5\xb1\x2b\xae\x6c\x6f\x3f\xa8\x79\xa7\xbc\xfe\x9d\x0d\xef\xec\x01\x2e\x0e\x5f\x02\x76\x04\x90\x6b\x38\x4b\x0a\x2c\x46\xf9\x63\x0c\x57\x1f\x52\x52\xf6\x7f\xa3\xb5\xae\x2f\x6a\xe0\xf4\x59\x15\x4b\xb1\x2f\xbb\xd0\x35\x3d\x18\xf4\x42\x25\x60\xf7\x25\xb5\x9c\xc5\xd0\xdd\x23\xf6\x8f\x5b\x29\x36\x7b\xad\xaf\x29\x5f\xc0\x01\xca\xd3\x55\x9c\x16\x67\x18\xc3\x4b\xa6\x73\xae\x0d\x3d\xc8\x43\x93\xc5\xc9\x74\x39\x77\x70\xf7\xa7\x11\x3a\xf2\x1b\x64\x27\x88\xd2\xd6\xf0\x4c\xf8\xcd\x44\xf3\x6f\xdf\x3c\x54\x1a\x47\x41\x24\x74\x5c\x39\xdc\xe8\xae\xe5\x74\xab\x91\x3f\x1c\x27\x76\xd9\x04\x21\x8b\x55\xa3\x6e\x33\x85\xf2\x21\x56\xfb\x2d\x7a\xaa\xa2\x69\xe5\x31\x04\x44\xd1\x0a\xfa\xab\x42\xfe\xc2\x86\x79\x45\xab\xa3\x5d\x51\xa9\x45\x6a\xa9\x11\x0b\x78\x33\x56\xe3\xf5\x42\x9d\x0f\xeb\x8a\x53\xfe\x41\x45\x66\x2f\x1f\xa5\xbb\x1b\x2e\x05\x3d\xaa\xa5\xc9\x99\x36\x8a\xf3\xf1\x74\xcb\xcb\xfd\xb1\x26\xa0\x90\x57\x3c\xe8\x16\x0c\x3b\x18\x72\x6c\x60\xb8\xd9\x7b\x8b\x9e\x13\x12\xfa\x1d\xed\xc7\xfd\x1a\x76\x3e\x3c\x55\x4e\x14\xca\xbe\x1b\x5a\xc2\x79\x52\x8c\x8c\x28\x0b\xe3\x71\xb8\xda\x50\xf1\x3a\x7a\x1e\xfc\xba\xf5\x8c\x12\xff\x1e\x8d\x6d\x94\x7a\x50\x8c\x4b\xd6\xca\x47\x28\xc9\x9a\x43\xf6\x0d\x4d\xb4\xc4\x4f\x0d\x75\x98\xed\x6b\x4a\x40\x1f\xb0\x0a\x79\xee\x4f\x6a\x85\xf1\x6e\x62\x79\xbb\x63\xd4\x97\x66\xd5\x9c\x52\x30\x55\x93\xc4\x29\x62\x6a\xb7\x52\x5c\x3e\x75\x61\xa2\x51\xf5\x6c\x33\x0d\xa2\x29\xe5\xac\x74\x46\x79\xbb\xfd\x8c\xb6\x09\x94\x48\x8e\x16\x8f\xeb\x1d\xd2\xb1\xcf\xf0\x97\xd7\x2a\xa6\xdc\x0a\xaf\xff\xe9\x44\x84\x74\x70\xa6\x19\xe7\xd9\x43\xe5\x05\xa2\x00\xfd\x10\xed\x89\x28\x85\xdd\x41\xb9\x06\x35\xf4\x05\xd5\x7a\xbe\x4a\xa1\x53\x85\x03\xe0\x94\x3e\x16\x17\x9c\x79\xa1\x30\xbd\x46\x41\xaf\x17\xda\x91\x04\x16\xcc\xc2\x50\x5a\x0b\x93\x67\xca\xdc\x5c\x93\x84\x5f\xd9\x46\x11\x83\x71\xa5\x12\x66\x2a\x84\xdc\x24\x52\xf1\x59\x98\x73\x9a\xae\x17\x04\x43\x8b\xee\xaa\x62\xe3\x5d\x75\x67\x64\x62\x47\x26\x59\x9a\xaa\x68\xba\xfa\x49\xbe\xd9\xf2\xdd\x97\xeb\x35\x4d\x8a\x05\x42\x3a\x64\x02\xf8\x94\x4a\x29\xfd\xaa\x94\x4a\x55\x26\x64\x82\x28\x5c\xdd\xe1\x2d\x45\x39\x02\x41\xf5\xf0\x36\x56\x83\x74\x0f\xe8\x8a\xf8\xcf\x5a\x0a\xfe\x73\x76\xa2\x67\x79\xe0\x85\xf2\xbf\x4b\x53\xbe\x6e\xd0\x50\x58\x92\x75\xa5\x54\x79\xad\xea\xdd\x9c\x87\x19\x6b\x1d\x20\x17\x3b\xa5\x55\xd4\x4f\x55\x00\x2e\xa1\xb5\x3b\x94\xa6\x0c\x84\xf7\xf8\xb5\x66\xff\xbf\xd3\x52\x00\x7a\x70\x8f\xe5\x8c\xfc\x25\x2f\x92\x29\x0b\xd5\x84\x41\x3a\x9a\xf2\xae\xe0\x20\x8f\xbb\x26\x60\x19\xe5\x02\xdb\xf4\x56\x6d\xa3\x36\x58\xb2\x3b\x7c\xf1\xf2\xc7\x54\x90\x73\x9e\x4b\x5b\xf4\xe5\xd9\xb4\x41\x77\x10\xde\xaf\x81\x82\x95\x3b\x8e\x4d\xca\x29\xc1\x58\x74\x79\x02\x1e\xe8\x75\x56\xf9\x1d\x0e\xf2\xa0\x67\x49\x5f\x62\x9a\x06\x01\x98\x0c\xb2\x58\x13\x60\x07\xd3\xac\xf9\x0d\x7d\x0f\xff\x55\x7b\xeb\xd4\x5d\x78\x61\x3f\xcb\xb2\xb9\x65\x2d\x76\xf0\x1e\x2b\xf5\x9e\x42\xa5\x9d\xf3\x4e\x1a\x26\xc8\x86\x3a\x31\xfb\xa8\xf0\x0d\xa2\x8f\x14\xcc\xa0\x6f\x92\x91\x4d\xc8\x33\x59\xa6\x28\x6e\x0e\xd1\x37\xd2\x32\x14\xc8\x7e\x40\xdb\x8e\x08\x26\xd0\x6e\x8f\xb4\x1f\xa2\x04\xfc\x01\xda\x10\xfe\x1f\xc6\xfe\x3d\x48\x8e\x2c\x3b\x0f\xc3\x81\xea\xc6\x63\x06\x98\x5d\x0c\x66\xb8\x14\xf9\xe3\x4f\x2a\x49\x94\x86\x52\x8c\x36\x24\x59\x61\x39\xf8\x87\xb3\x0d\x34\x77\x76\x10\xbb\x3d\x1d\x00\x16\x43\x8f\xff\xc1\xad\xac\xdb\x55\xb9\x9d\x95\x59\x9b\x8f\xee\xe9\xb1\x15\xe1\x90\x23\x14\x76\x84\x83\xe1\x08\x2b\x14\x21\x5a\xb6\x19\x34\x43\x12\x65\x59\x5a\x72\x49\x91\xa2\xc8\xad\x1e\xee\x72\x9f\x5a\x72\xde\xef\xdd\x01\x06\xef\x6e\xbc\xdf\x68\x00\x0d\x47\x9e\xef\x9c\x7b\x4f\x76\xe6\xc8\xfc\x2f\x13\xe8\xaa\xca\xbc\x8f\x73\xcf\xe3\x3b\xdf\xc7\xff\xae\x39\x68\xa3\x78\xc9\x66\x3b\xbd\x08\xfb\x55\xca\xf3\x0a\x57\x94\x87\x47\xff\x46\x0d\xbe\x4f\xe7\x88\x04\xac\xd5\x37\x4b\xe9\xaa\x8d\x37\x15\x9d\x00\xb4\x85\xda\xf8\x58\x3e\xab\x9a\x0b\xd2\x94\xd9\x65\xd8\x95\x55\xa1\xf4\xe9\x96\x7d\xad\x54\x38\xc8\xd8\x38\x79\x68\x97\x36\x3f\xad\x08\x92\xef\x29\xb5\x78\xe2\xe9\x5d\x64\x6e\x51\xc1\xcb\x57\x0b\x53\x70\xf4\x3e\x6e\xef\xdb\x98\xcb\xd1\x58\x58\x6f\xd0\x57\xc2\xfd\xbe\xaa\x6b\x95\x67\x27\x4f\xa8\x32\x33\xd7\x37\x91\xd8\x63\x6e\x7c\x97\x92\x76\x5d\x11\xf7\x6a\xdc\x0b\xd2\xa8\x5c\x7d\x10\xd0\x97\xe9\x19\x0f\x7f\x03\x49\x25\x76\xcb\x27\x0a\x74\x9f\x2e\xd9\x8c\x00\x33\x2e\xe1\x73\x32\xa8\x15\x32\x0f\x1d\xe2\xec\xd3\xc6\x44\x81\xb0\x37\x5a\xd5\x64\x33\x3b\xc8\x78\x4f\xb9\xd2\x8e\x92\x82\xdd\x1f\xa9\x73\xbc\x88\xdc\x31\xce\x85\xd7\x40\x15\x3f\xce\xeb\x3a\xcd\x62\xfe\x19\xd5\xee\xbb\x8f\x58\x49\x04\xfe\x4b\x19\x7e\xb7\xb0\x8e\x1d\xe0\xc3\xed\xc7\x13\x85\xfa\xd9\xb1\xea\x4b\x43\x67\x7f\x56\xd1\x28\xbc\xf4\x57\x67\x80\x1b\xd1\x58\x0b\x14\x17\xf6\x71\xd5\x87\xfc\xd2\x7f\xf4\xd4\x8c\x4a\xb4\xa2\x7f\x14\xf1\x25\x88\x58\x34\x59\xbe\x98\xc2\xfd\x8a\x68\xca\x44\x23\x23\x31\xb4\xab\x30\x29\xdd\x42\x25\xff\x1a\xa6\xb1\x70\x00\x38\x89\x1d\x0f\x10\x3a\xa7\xba\x69\x32\x1b\xda\x68\xc9\xee\xf4\xcd\xcc\x5f\xd7\x55\xb9\x2b\x81\xaa\xd7\xc1\xc1\x43\x05\x10\xc7\x3b\xce\xc8\x0e\x89\xa4\x33\xe5\x7d\xa3\xf2\xf0\xfc\x5c\xb7\x9f\xa5\x8c\x80\x65\xaa\x24\xcd\xb9\xf5\x13\x17\x5c\x26\x69\x52\x26\x34\x9d\x2e\x05\x81\xf0\x8b\xaf\x1b\xf1\x3e\xa5\xde\xf3\x22\x4b\x57\x24\xde\x87\xbb\x77\x06\xdf\xcf\x37\x0a\x4a\xf1\x85\x83\x07\xa7\x34\x7b\xf2\x3d\x7a\x23\x64\x6b\xb8\x6b\x51\xf4\x95\xb6\xfe\x96\xc4\x55\x0b\x69\x99\xed\xf0\xfa\x1f\x7b\x66\x74\xa6\x94\xa4\x15\x5d\x9b\xaa\x52\xdd\xa7\xaf\x16\x16\xa4\x7d\x2a\x45\x3e\xea\x71\x53\xbc\xa8\xaa\x76\xe8\x8d\x51\x14\x42\x60\x85\x68\xe4\x76\xe3\x60\x3b\x74\xa8\x72\x60\x16\x69\xf1\x73\x20\x46\x1b\x45\x82\x32\x87\x2c\x1e\xac\x8c\x8b\x88\x65\x24\xb0\xf8\x5e\x0f\x54\x73\xd5\xeb\x6d\x8a\x77\x10\x0f\xec\x78\x9c\xf1\xc7\x81\x77\x65\x3f\x56\xe4\x4d\x23\x33\x5c\x48\xcb\x57\x00\xb7\x76\x8b\x6d\xfe\x05\x2f\x63\xd9\x92\xa5\xb1\x2f\xdb\xb0\x2c\xa8\x0b\x53\xf1\x96\xf9\x9c\xc2\x69\xdd\x66\x73\x57\x33\xcd\x0d\x4d\x1f\x2b\x09\xf3\xc4\xec\xc7\x7c\xd3\xd6\xcb\x9c\x95\x89\xa7\xa0\xe0\x92\x1f\xfd\x92\x94\xff\xfc\x6c\x2c\x5a\x3b\xa6\xf3\xb4\xda\xda\x28\xc2\x03\x4c\x8a\x94\xcb\x69\xfa\x98\x6c\xf2\x36\x76\xfd\x74\x64\x84\xc0\xc2\x89\x1e\x55\x8f\xc7\x37\xed\x59\x91\xc2\x44\xc8\x79\x3b\xb4\xf3\xa1\x43\x0e\x9f\xe4\x25\x81\x4d\x92\x44\x4b\x36\xcb\x05\x76\x2a\x10\xe4\x6a\x29\xf2\xb5\x02\xe4\xda\x97\x43\x3b\x86\xe3\xc4\x29\x6f\xe6\xcd\xa4\x03\x59\x38\x34\x9f\x52\x0c\xdc\x11\x85\x99\x51\xa8\x12\x34\x37\x75\x25\xe6\x66\xad\x92\x6f\x47\x85\x92\x05\xfe\x10\x7f\x28\x1c\x35\x9f\x55\x00\x37\x32\xe5\x64\x43\x64\xeb\x57\x0f\x20\x3b\xdf\x3f\xf0\x28\xca\x33\x3b\xce\x6c\x4e\x69\x42\x32\x6b\x00\x9c\x70\x07\x2a\xdf\x28\x3c\x58\x3e\xb6\x61\x64\xe2\x02\xaf\x27\xe4\x0b\x94\xf9\x11\xa7\x52\x73\xfe\xc4\x69\xa2\x73\xff\xdc\x11\x2d\xf4\x6f\x2d\x45\xaf\x91\xcd\xb2\x88\xcb\x11\x38\xbb\x1e\x04\x8a\x7d\xf7\x41\x5b\x91\x6e\x79\x98\xda\x25\x9b\x91\x83\x2d\x94\x32\x1e\xa1\x75\x9a\xb4\x5a\x11\xb5\xdd\xd1\xb9\xe1\x71\x9a\x59\x40\x14\x84\x17\xc5\x1f\xb9\x6b\xb5\x71\xef\xd9\xfe\x1e\x9f\xf4\x86\x40\x2e\x86\xe6\xfa\x56\x3a\xbb\x97\x34\x8e\xf4\x88\xac\x5b\x44\x1c\x8e\x88\xd3\x97\x9e\xae\xc0\x6f\x13\x7a\xde\xca\xaa\x09\x6d\xaf\x22\x9a\x13\x18\x03\x82\x9e\x1d\x33\xde\xdd\x48\x8b\x02\x4d\x83\x48\x68\x31\x8e\x8c\x6f\x1a\xf0\xab\x67\xbb\xb1\x95\x1e\x0d\x47\xbd\xe8\x89\x0c\xc8\x73\x76\x53\x57\x66\x85\x29\xe3\x7e\xde\xe9\x3c\xf3\x0c\x53\xb5\x9c\x82\x89\xe1\x9b\x36\x3a\xb7\x7c\x65\x34\x2e\xd2\x11\x27\x35\x31\x01\x17\x95\x3e\xc6\xc5\x56\x24\x59\x3f\xca\x47\x66\x45\xc8\xd8\xb1\xf2\x19\xde\xc8\x37\xaa\xc0\x49\x5a\x76\x1d\x85\x77\x58\xa3\xef\x17\xaa\xe6\xad\xf6\x7a\xf6\x68\x37\x4c\xd3\x78\x4a\xe5\xbd\xff\x60\xd2\x51\xda\xda\x1d\x2f\x9b\xde\xc2\x01\xf3\x5c\x77\x60\xf2\xb4\x0a\x21\x3a\x3e\x93\x06\x61\x77\xbe\x56\xde\x4e\x39\x1a\xef\xf6\xd5\x02\xc8\x3f\xb0\x48\xd8\xc4\x9f\x2f\x53\xe0\x79\x83\x39\x38\x83\xd5\x00\x44\xf6\x1d\x05\x09\x64\xed\x4f\x18\x19\x26\x80\x43\x20\x7a\xb1\xed\xe4\x18\x67\x55\x64\x82\xb7\x74\x2e\x8d\xeb\x4c\xbd\x1d\x78\x60\xdc\x07\x75\x76\xf4\x64\xf0\x97\x14\x47\x1f\x80\xff\x58\xa8\x1f\x10\x8a\x59\x24\x73\x69\x9d\x62\xe6\x77\xa3\x47\xc5\x15\xd1\xaa\xb7\x41\xfc\xb4\x93\xce\x65\x78\xaa\xfb\x66\x3c\xad\xec\x2d\xc5\x72\xf5\x3e\x97\x89\x58\x87\x06\x0d\xd1\x0a\x17\x2b\x2e\xf6\x86\xea\xc9\xbe\x80\x7e\x6a\x16\x39\x03\xb2\x00\x9b\x61\x43\x63\x51\x4f\x12\x64\x0d\x81\xcf\x1b\x58\xab\xd8\x40\x7b\x51\x92\xc1\xd6\xba\xad\x84\xc4\x1e\x06\xd5\xea\xc6\x4c\x4e\xad\x2a\xc5\x40\x56\x78\x40\xa4\x35\xb5\xda\xf9\xca\x17\x9d\x8c\x3d\xdc\x4e\xa4\xac\x76\xae\xd2\x42\xc4\xcf\xef\x20\x8f\x8c\x46\x7c\xea\x49\xb8\xaa\x28\x2e\x5d\x80\xa8\xb4\x83\xe0\xbf\x28\xb5\xdb\x4d\x02\xcb\x20\xd0\xda\xde\xe0\x4e\xa2\x54\xc9\xb8\x74\x19\x3a\x47\xe8\xed\x0e\xe2\x0f\x75\x6c\x7f\x4b\xd5\x20\x16\x4c\x9c\x5b\x6c\x12\x04\x36\x1f\x4f\x7c\xc0\xf3\x71\x9b\x3c\x4a\x91\xe6\xc3\xa8\x07\x35\x27\x01\x62\xa9\x21\xb8\xdc\x22\x90\x34\xdf\x0d\x4d\x39\x18\x16\x53\x0a\x50\xa1\x45\x3a\x08\xe8\xc0\xc3\xf6\x6e\x63\x6f\xcd\x1e\xed\xf6\x2c\x95\xb6\x25\x98\x06\x26\xf0\x82\x4a\xb4\xef\x9d\x51\xf9\x80\x9d\xab\x1e\xcb\x14\xf5\x8d\x52\xc0\x3d\xa7\x55\x81\xcf\xd5\x28\x0a\x06\xa2\x0b\xa2\x9b\x2e\xf8\xba\x51\xfd\xf8\xf2\x6c\xb7\x48\xa5\xcd\x95\x73\xa0\xaa\xe3\xb0\x49\x60\x39\x37\xd7\x2d\x4c\x36\xb0\x85\xd0\x47\x23\xcc\xf9\x36\x46\x01\x67\xd1\xf5\x1a\x8e\x45\x71\xd8\x9a\x8c\x54\x4b\xaa\xff\x85\xd3\xb6\xae\xc3\x85\x75\x15\x58\x98\x3c\x32\xd3\x0a\x01\x7a\x1a\xdf\xef\x7a\xbb\x5c\x6d\xfc\x14\x39\x26\x42\xdc\xbe\xf5\xf5\xe6\x0f\xcf\x77\x85\xdd\xe1\xa5\x3a\xf7\x91\x30\x24\x89\xf7\x9a\x66\x95\x67\x22\x0b\x0f\x8b\xed\xbe\x12\x8d\x3d\xaf\x00\x1b\xbf\x7d\xa9\x8d\xf3\xff\xab\xd6\x70\x99\x61\x6e\xce\x91\x07\x7b\xbb\x7b\x45\x81\x62\x49\x98\x6b\x8f\xef\x0b\x82\xea\xbc\x34\x09\x01\x43\x86\x4f\xad\x6b\x3b\x78\x5e\xb1\x9f\x5e\xc3\x09\xeb\x74\x6a\x7d\x54\xc2\xc8\x76\x60\x20\x36\x55\x1f\xfa\x4f\x74\x9d\xf5\x1d\x8d\xdb\xff\x91\x73\xe2\xe3\x68\xc1\x16\xd1\xc8\x2a\x4f\xf1\x96\xf2\x14\x6f\x55\x61\xb1\xa6\x1e\xfc\x85\xee\xc1\xd9\xdd\x64\x6a\x44\xdc\xdd\xf7\xf5\xdc\x9e\x78\xdb\xf8\x13\x58\x17\x98\x53\x70\x99\x48\xd7\x7c\x47\xe9\xea\x55\xd6\x8c\x3f\x30\x51\xb4\x21\x97\x75\x20\x90\xc6\x69\x91\x2e\x61\x4a\xf1\x7d\xef\x62\x90\xf8\x46\x61\x2d\x73\x53\x86\x22\x72\xed\x48\xec\x5d\xeb\xc3\x55\xe4\x37\x45\xd2\xc4\x6b\x66\xda\x97\x21\xd7\x4f\x21\x30\x6a\x08\x5c\xd0\xe4\x1b\xb5\x52\x07\x65\xbc\x40\x54\xc4\x42\xbd\x44\xdf\x89\xf9\xfa\x1e\x6a\xef\x7c\x33\xf1\x30\xfd\x47\x34\x32\xd8\xe4\x57\xc9\x22\x4a\x27\x65\x13\x84\xf7\x52\x37\x5c\x09\x63\x49\xe8\x8a\x77\x40\x93\x2f\x7e\x43\x0b\x56\x63\x98\x9a\x4c\x28\xd9\x9c\x9a\x90\x56\x0f\x69\x61\x5a\x1b\x9b\x70\xd1\x0c\x24\xc4\x85\x15\x44\xed\x8b\xaf\x15\x4d\xd5\x72\x9a\x2d\x7e\xd6\xa7\x5e\xfe\x10\x4b\x4b\xf6\x3c\xce\x3b\x4c\x30\x37\x6a\x88\x23\x42\xa7\x2a\xac\xe5\xef\x07\x3e\x7b\xf5\x1e\x8d\x42\xcd\x45\x03\xa4\xf9\xbb\x81\x92\x04\x7d\x0b\x47\x2f\x67\x03\x01\x65\x84\x0d\xbc\x13\xf8\xac\xdf\x25\xa5\xb9\xce\x30\x42\xd8\xbf\x6f\x4d\x7c\x0f\x4c\x53\x7e\x76\xf6\x68\x77\x31\xcd\x2c\x07\xb0\x82\x14\xd4\x04\xfa\x2d\x3a\xce\xf3\xdd\x45\xbb\x42\xc7\x01\x73\x49\x23\x91\xe1\xf6\xab\xcb\x9f\xbd\xd5\x30\x19\xc7\x0e\xcc\x76\x17\xa2\x41\x99\xd5\x75\xf4\xea\x81\x99\x1f\x71\x13\x9b\x64\xba\xa3\x84\xa2\xc8\x27\x90\xd5\xd9\xf1\xc2\x41\x58\xa9\x0c\x81\x6a\xe0\x78\x66\x8f\x76\xa1\x78\x4a\x6f\xc9\x90\xac\xc0\x6f\x8a\x3f\x98\xe8\xd4\xac\x23\x48\x3d\xc2\xe1\xc8\x76\x66\xbb\xe4\xbb\xd5\x16\x02\x80\xa1\x35\xfd\xaf\x95\x26\x83\x62\x92\xd7\xf2\xba\xa3\xd4\x21\xef\xb4\x1d\xc8\x23\xf3\x72\x34\x2a\xb9\xe1\x52\xea\xbf\xde\x98\xde\x57\xc0\xd3\x73\x6d\x4c\x81\x61\x6c\xc6\x45\x66\xc6\x75\xa9\x20\x55\xa6\x71\x99\x8a\x97\xc7\x69\xee\x82\x75\xa1\x52\xe9\x28\x8a\x95\x36\x52\xc6\xcc\xe6\x51\xec\x78\x45\x99\x78\x5d\x55\x8e\x2e\xb6\x64\xef\xe7\x5d\x17\x8e\x4c\x32\xe0\x2f\xef\x2b\x6e\xd1\xf7\x95\x3f\xfd\x77\xfe\xf6\x7f\xa6\x47\xfb\x2c\x39\x6e\x7c\xdd\x38\xdd\x0e\x1f\xe8\xe6\x43\xcb\xa1\x23\x77\x7d\x05\x5e\xdd\x47\x83\xf9\xd3\xb2\x80\x47\xef\x8b\xd7\xf4\xe4\x52\xc8\xf6\x4f\x10\xa7\xcb\x9f\xa9\x89\x20\x38\xa3\xf3\xc7\x64\xb4\xe8\xdf\xff\xe7\x9f\x9b\x21\x27\x56\x9d\xa8\x42\x40\xb1\x7d\x46\x01\x6d\xf7\xae\x2a\x02\x88\xfd\x94\xd4\x85\xe3\xc8\xcd\x61\x58\xca\xbb\x56\x7d\xc7\xdf\xaf\xec\x5b\x75\x4e\xfc\xd4\xd3\x33\xbe\x59\xf7\xe9\x19\xa5\xe6\x7e\x85\x10\xe6\x38\x28\xbe\xa3\xd9\xb2\x4d\x14\x2f\x1b\x2e\xcf\x62\xd5\x9c\xd3\x39\x83\x73\x8a\xa3\x69\x31\xcd\xd2\x22\x12\x69\x34\x18\x08\x0e\xf7\xf8\xa6\xc5\xf9\x99\xef\x2e\x94\x99\x03\x3c\x88\x6e\xb9\xcf\xa4\xde\xc2\xf6\x47\x38\x7a\x4d\x35\x28\xdc\x55\x27\x6c\x68\x93\x5c\x4e\x25\x78\x4c\x1f\x4c\x54\x47\xdd\xed\x7a\xd7\x74\x4b\x9d\xc9\x13\x56\xa1\x88\x84\x13\x9a\xaf\x55\x4f\x4d\xb8\x80\x34\x8b\x08\x6e\x28\xc2\xa4\x26\x10\xe6\xe0\xc1\xee\x30\x2d\x2c\x56\x13\x82\xa8\x55\x45\xf5\xb3\xda\x02\x68\x9e\x67\x76\x46\xad\x4a\x78\x31\x50\xd4\x92\x17\x27\xde\x81\xcd\x87\xf6\xb3\x34\x15\x48\xe0\xae\xab\x8a\xcb\x09\xaa\xc4\xc0\x94\xed\x02\x68\x1e\xa7\xf5\x87\x13\x84\x1e\xd8\xc0\x90\xdc\x43\x05\xe2\x36\x9d\x17\x48\x7b\x7e\x80\xf3\x42\xba\xbf\x95\xb4\xdc\xe3\xab\x4a\x8b\x6f\xdb\x0c\x9d\x17\x9c\x05\x0c\xbc\xc5\x44\x5d\x07\x86\xe9\x0c\x8a\x63\x22\x94\xed\x5b\x7d\x34\xff\x41\xfa\xb7\xfe\x0e\x8d\x2b\x02\x32\x84\x9a\x7c\xad\x63\xe3\x6c\x80\x0a\x25\x7e\xfe\x01\x7d\x99\xf4\xe9\xe8\x56\x6d\x0c\x85\x0e\xb4\x85\x43\x48\x70\x9f\xac\xb5\xc8\xc2\x0c\x0e\x06\xe1\x26\x0a\x8d\x87\x58\x69\xd7\x35\xa2\xea\x61\x5b\x63\xb9\x49\x4c\xbc\x52\x44\x21\xf7\x43\x3a\xc5\x5f\xaf\xfe\x1b\xf8\x8c\xdd\x28\x2d\xd2\xac\xf2\x40\x04\xe0\xe5\x60\xd1\x1e\x7f\xb3\xae\xd3\x65\xac\x11\xcc\x3a\x1d\x58\x07\x40\x9d\xf3\x75\x8b\x9a\x64\xd7\x64\xbd\xa8\xc8\xcc\xc0\x66\x1d\xcf\x3f\x79\xa6\x86\x62\xfa\x9c\x37\x66\xe3\xca\x3d\x2b\x93\x88\x74\xd4\xaa\x57\xd0\xf1\xbf\xf8\x61\x2d\x24\x00\x43\x9b\xf5\xa2\x30\xea\x5b\x34\x6d\xc2\x5b\xc0\xaf\xe0\x53\xd8\x48\xf2\xef\xbe\x5e\xb5\x14\x85\x45\x15\x20\x00\x49\x8f\x8c\xee\xc7\x81\xaf\xbf\x7c\x5c\x67\xea\xb1\xe1\x63\xd5\xff\x61\xa5\x7e\x13\xdb\x0e\x11\x2b\x94\xbd\xe4\x94\xa9\x86\x70\xf3\xea\xc4\x0b\xf4\x72\xd7\x99\xb4\x30\xd0\x53\x0a\x2d\x0e\x99\x0b\xac\xb2\xab\x58\xf0\x48\xf7\xfe\x5f\x13\x2d\x62\x96\x2e\xdb\xfe\xe3\x98\x28\xf8\xd4\xbf\x05\x8f\x8b\xc3\xa8\x40\xb7\x0d\x79\xfa\xbd\xd3\xf8\x76\xa9\xb3\xab\x54\x13\x8c\x9b\xb0\x69\x76\x14\x6f\x31\x3d\x82\x2b\xd3\x7b\x9c\xc8\x25\x67\xe9\xf2\xb2\xdf\xb7\x84\x2f\x70\x95\xa4\x75\x85\x01\xc3\xa2\x85\xa3\xf3\xb1\xd6\xf3\xbc\x8f\xa7\x11\x66\x07\xbf\xa3\xfe\xde\xdf\xfa\xcf\xa7\x95\x3b\x07\x8c\x0f\x66\x00\x00\x03\xa9\xcd\x56\xa7\xa6\xb4\x31\x37\x53\x82\xcb\xd6\x64\x53\x1d\xd5\x31\x5e\xd3\x94\x70\xfc\xa3\x4d\xb9\x31\x6a\xf2\xf7\x5c\xc4\xb0\xdd\x3b\xa8\x90\xc2\xd7\xab\xfb\x95\x30\x57\x98\x59\x93\xdb\xfc\x31\x5d\x46\xe8\x1c\x3b\xb0\x79\xb3\x26\xd5\xa9\x32\xc9\xe7\x31\xe3\x22\xd6\xdd\x71\x29\x27\x4e\xba\x38\x55\xcd\x83\x07\xd9\x08\xec\x45\xab\x82\x80\xe4\x5b\x54\x1d\x42\x93\x65\x2b\x12\x3d\xb8\x62\x46\xf5\x6d\x32\x23\x4f\xa8\xe4\x81\xe9\x91\x8b\x80\x71\xe4\x94\x38\xdf\xa8\x84\x64\x68\xe2\x68\x81\xbe\x10\x13\xf6\x7d\x3d\x7b\xdf\xaf\x65\x9c\x33\xe2\x48\x7b\x5e\x74\x1d\xb6\x2b\x36\xdb\x29\xf4\x38\xa1\xa6\xf5\x61\xe0\x7f\x77\x53\x29\x35\x5e\x77\xc8\x9d\x32\x09\x87\xc6\x73\x34\x4b\x8f\xaa\xcf\x1f\xbe\xdd\xda\x8f\x22\xd3\x00\x4e\x08\x46\x8d\xd1\x42\x66\xda\x94\x80\x8a\x69\x38\x7c\x4e\x4c\x3a\x5f\x3a\xe2\xa8\x85\x9b\x61\xd5\x7c\x37\x8c\x8a\xfa\xd9\xcb\x44\x79\x7c\xd3\x16\x56\xf5\x23\x33\xf2\xac\x72\x98\xc3\xf3\x0a\x17\x70\x7e\xb2\xc7\xa3\xf0\x92\xbf\xe2\x37\x0b\x33\x21\x20\xcf\xf4\xcf\x02\xe5\xa7\xbc\x49\x2b\x1f\xee\xe3\x49\xf2\x85\xc4\x2f\xc2\x79\xe9\x62\x9f\x6a\x80\x11\xe2\x3f\x22\x58\x26\x06\xbb\x33\xe3\xa9\xa0\x1f\x5b\xd5\x85\xa4\x2b\x48\x4e\xc2\x72\xa1\xde\x8a\xa3\x90\x45\x30\xa4\x01\xc3\xb3\x3d\x4c\xaf\xd2\xf8\x61\x0a\xee\xc1\x7e\xc1\x64\xbd\x4b\x83\x29\x48\x02\x5a\xe6\x8c\x47\x84\xec\x06\x86\xf9\x06\xb2\x1d\xa8\x21\x30\x31\x10\x9e\xf8\x6d\xca\x54\x22\x5a\x43\x5f\x32\x46\x02\x68\x2d\x6c\x9f\x33\x94\xfe\xc1\x37\x71\x96\x14\x96\xf4\x35\xd2\xda\x45\xd4\x78\x9e\x60\x23\xd2\xe1\x4a\x4e\x00\x3e\x71\x0a\x2a\x09\x98\xfb\x0d\xb8\x6e\xa8\x94\x3f\xc0\x4e\x44\x71\xee\xbb\xa4\x37\xca\xac\x06\xc1\xf6\x9f\xe7\x91\xfb\x50\x19\x5e\x93\xe7\xb6\xc8\x77\xa9\xd6\xbc\xba\x04\x62\xe0\x91\x09\x1f\x4c\x54\x26\x64\x37\x79\xb8\x48\xc6\x5f\x80\xdd\x45\xf6\xf0\x91\x6a\x26\xb8\xd3\xc6\xeb\x17\xe5\xa6\x67\xe3\xd8\xc0\x7d\x15\xf4\x8d\xea\x31\x6c\x5d\x8b\x69\x59\x2c\xc4\xe9\x32\xaf\x45\x8d\x98\x15\x1c\xe0\x67\xdd\x76\x23\x99\xf0\x62\xda\x57\x4b\x3f\xc2\x7a\x44\x3e\x8c\xf4\xe8\x7c\x49\xdb\xbb\x59\xa7\xdb\x3a\x5c\x7a\x99\x5d\x76\x76\x13\xf9\xe6\xb7\xe9\x0d\xf9\x5a\x95\x5e\x17\x62\x33\x60\x49\x1d\xa1\xe5\xed\x78\x8a\x5e\x25\x89\x95\xa7\x66\x91\x20\x24\xca\x13\x53\x15\x94\xcb\xaa\x5b\xe0\xc7\x8d\x11\x94\x32\x7b\xb1\x94\x4f\x75\x8e\xbe\xe0\xd0\xe8\x9e\x4c\xee\x6d\x1c\xcf\xd7\x6b\xe0\x55\x1b\x7e\xbe\x53\xad\x38\x40\x56\x40\xe9\xc4\xd7\x9a\x44\xdc\x24\xe9\x12\x4a\x36\x73\xae\x68\x4a\x43\x24\xd5\xd4\xb6\xc8\x82\x08\x14\x84\x33\x0f\x16\xe0\xcd\x40\x89\x59\xbd\xa9\x60\xe1\x36\x59\xc2\xb1\xea\xe8\x9a\xab\xed\xe5\x52\x86\xd5\xef\xf2\x4d\xe0\x9b\x1a\x3e\x50\xbe\xe5\x07\x4a\x22\x7a\x64\xf2\x1c\x9d\xe7\xd2\xac\xba\x3e\xf1\x39\xda\x8f\x27\x1e\x34\x02\x6c\xb7\x70\xf8\x79\x51\x18\xfc\x0a\xff\x7d\xe0\x13\x69\x44\x15\xb0\x64\x01\xa6\x16\xac\x01\xed\x52\xa7\xa3\xea\x78\xc8\x57\x27\x9f\xdb\xaa\xa7\x36\x7f\xa4\xfb\xe2\xe1\x03\x1d\x65\xb9\xcf\xc3\xc0\x08\x2b\xc5\xd6\x61\x9c\x7f\xe1\x48\xf7\xab\xa9\xd2\x82\xc0\x49\x03\xbd\x7a\xbe\x56\x21\x60\xbf\xda\x44\xb1\xf0\xc1\xe2\xa8\x7d\x97\x5d\x73\xbe\xab\xa5\xd6\xc7\x79\xa4\xd4\xc9\x3e\x86\xd7\xc3\x37\x6d\x52\x34\x44\x03\xac\x08\x48\xef\x2b\x38\xd4\xfd\x16\x29\x8b\xc3\xdd\x28\x59\xb2\x49\x91\x42\x54\x7d\xf3\xbd\xea\xef\x37\xdf\x73\x7b\x32\xb3\x10\xfc\xaa\xc9\xff\x6f\x5f\xf5\x05\x0c\xd6\x94\x41\x1e\xf8\x75\xdf\x4d\x11\x9b\x7c\xe8\xc6\x84\x45\x28\x94\xbe\xb4\x56\x7e\x1e\xd9\x6c\x40\xf0\x77\xa5\xfe\x43\xeb\x89\xed\x67\xa0\x63\x95\xad\xef\xfc\xe2\x3c\xf5\xe0\xb0\xe8\x21\xb7\x42\x91\xa1\x90\xb6\x28\xef\x53\xe7\x65\x5e\x98\x28\xb1\xfd\x69\x3a\x72\xe0\x07\x9e\x52\x60\xea\xef\x07\x0a\x5d\xf3\x7d\x98\x6a\xfe\x2b\xd7\x10\x17\xa6\x71\x39\x92\x06\x30\xb7\xa6\x7c\xcb\xba\x32\xd1\x7d\xea\x64\xde\x5f\x1d\x05\xf0\x2c\xcf\x4f\x74\x8d\xab\x5a\xe4\x48\x45\x6e\xf0\x0a\x40\x1d\xf0\x92\x37\x53\xff\x76\xdf\x8c\xa2\x8e\x60\x8a\x56\x45\xa9\x3a\xcb\x67\xc4\xb6\xd5\xca\x44\x80\x59\x8a\x29\x01\xf1\x8b\x9d\x19\xa5\xaa\x78\x45\xeb\xd8\xfc\x24\xf0\x42\xd5\xf7\x27\x3e\x08\x81\xfe\xbd\x6c\x90\x5a\x4d\x8d\xe6\x52\xf1\x22\x0b\x31\xee\xf6\x99\xbd\x0e\xeb\x2c\xbd\x46\xcc\x27\xaa\xf3\xdd\xb7\x30\xab\x92\x00\x94\x06\xc6\xb0\x1c\x11\x67\xcc\x92\x9d\xd2\xe9\x62\x55\x4b\x7b\x7c\xc6\x83\xd9\xa7\x5a\xa0\x52\x47\xba\x66\x94\x96\x89\x73\x93\x14\x03\xbe\xd3\xb2\x69\x55\xb8\x8e\xd3\xe5\x84\x0c\x85\x8b\x78\x7c\xeb\xd7\x05\xdd\xd7\xb9\xe1\xd1\xdc\x36\xe9\x9b\x50\x48\x12\x91\x0d\x38\xab\x94\x1d\xce\x4e\x3c\xaa\x7a\x10\x8d\xf8\x9d\x9c\x78\x98\x4f\x87\x9c\x9d\x78\x0b\xd1\xda\xfb\x38\x8e\x6c\x28\x6f\x84\x71\x38\xa5\xb5\x0e\x4e\xb5\x29\xb4\x8f\x6c\x52\xe6\x0a\x33\xc8\x6b\x41\x78\x50\x7c\xed\x32\xb6\xa6\x9f\xef\x52\xf4\xfd\xe7\x50\xfd\x95\x56\x50\x5a\x28\x22\x6f\xe8\xf1\xdf\xdf\x43\x9c\xc4\xc9\x11\xd5\x03\x73\x52\xd5\xde\x37\x14\xc7\x88\xb1\x59\xda\x8b\xc2\x3f\x5f\x82\xb5\x85\x3a\xac\x67\xf2\x28\xd4\xf9\x49\xac\x0b\xbe\x76\x08\x76\xfb\x72\x91\x19\x58\x10\x47\x76\xef\x72\x8d\x27\x31\x08\xb8\xb9\x13\x7c\xce\x0d\x42\xe2\x00\xd8\x45\x84\xce\x63\x4d\x50\x25\x4d\xcc\x7e\xd0\x06\xa9\xd0\x2f\xc3\x3b\x99\x5a\x55\xd9\xa5\x37\x03\x5f\xba\xd9\x3b\xa3\xb6\x20\x32\xe5\x80\xae\x9d\x55\x55\xa5\xc4\x5a\x91\x45\x94\xd3\x1d\x14\xce\x7c\xdd\x68\xc6\x7b\x7e\xae\x6b\x47\x3d\xfb\xca\x2b\xb1\x33\xac\xac\x23\xa7\xdc\xd3\xdf\x54\xbf\x80\xfe\xb1\x1c\x5d\xae\xee\x98\x7d\x7e\xce\x1d\xa1\xb2\x05\xc7\xb1\x09\x89\xcf\x92\xe5\x8d\x71\xfa\x7f\x0b\xe6\x46\x08\xd6\x61\xa2\xc4\xbf\xdd\xba\x0b\x0f\x1d\x3a\xd2\xb5\x2f\x87\x90\x20\x57\xc5\x58\xc5\x60\xdc\x4c\x2c\x56\x5b\xb7\x57\xae\x80\xbe\x09\xab\x8d\x91\x3b\xd8\x30\x7b\x67\x3c\x2e\xed\x6d\x5a\x6d\x52\xe8\xd6\x7d\xa9\xd5\x2f\x48\xfb\x75\x4d\x20\x32\x1f\xd2\xe6\x56\x9d\x8e\xd2\x0b\x7a\x66\xa2\x68\xf2\xef\x06\x4f\xa9\x68\xc8\x2e\x45\x85\xe9\x31\xb4\x0c\xa7\xce\x2d\x9c\x71\x7c\xd3\xc8\xb9\x53\x7d\xc3\x14\x43\x9b\xc5\x74\xf8\x1e\x3a\x24\x99\x0c\x05\x9a\xb9\xec\xd0\xbd\x79\x61\x6d\x3c\x62\x47\x72\x4e\x82\xa2\x47\xba\xcb\x77\x0d\xa6\x16\xc1\xc7\xf5\xb6\x84\x1a\x10\x65\xbe\xa2\x20\x3c\x61\x3e\x42\xbe\xa4\xaa\x8b\x69\x18\x96\x59\x66\xfb\x44\xf7\x89\xe3\x63\xcf\xaa\x47\x00\x74\x10\x69\xb9\x94\xd6\xc1\x59\xd7\x0e\xa3\x4e\xb9\xb5\x96\xfd\x39\xd7\x5d\x1e\x4a\x1b\x35\x02\xb5\xb3\x81\x47\x5e\x9c\xdd\xaa\x57\x5b\x7d\xe0\xf9\xb9\x27\xaa\x18\x0f\x9e\xfb\x6b\xe4\xdd\x71\x7f\xcb\x44\xc1\xa4\xfe\x11\x7c\x36\x57\x93\x70\x6d\x74\x37\x50\x8f\x93\x02\x45\xf5\xac\x5a\x82\x53\x2c\x13\xbd\x10\x46\xf6\x87\xc8\x3d\x80\x47\xe0\x86\x52\x96\xdf\x85\x86\x62\xd4\x0c\x41\xfb\x80\xd5\xf1\xba\xf2\x54\xa1\xce\xa3\x24\xb8\x59\x58\x45\x54\xc5\xaa\xef\x7e\x44\x63\x89\x53\xf2\xa1\xe2\xff\xce\xd3\x64\xb0\x53\x67\x0b\x3c\x9e\xf5\xf1\x99\xca\x2b\xc0\x3e\xe4\x63\x19\x1e\x26\x70\xe8\x08\xd3\x4f\x68\xd1\x9b\x71\x2b\x05\x7a\xdf\x8e\xd3\x3c\x2a\x54\xeb\x20\xf3\x16\x20\xee\xfd\x7d\x76\x2c\xe0\x31\xae\x3b\xd9\x2e\xca\x92\x2c\xc6\xe2\xfa\xa3\xa4\x7f\x06\xae\x3f\xdf\x28\x6e\x84\x30\x1d\x8d\xd2\x64\x8f\xc2\x7f\x3c\x8e\xec\x10\x8e\xea\xb3\x5a\xbc\xe2\x0e\xe2\x02\x44\x6c\xd3\x33\xd5\xfc\x60\xf9\x20\x19\xed\xd8\xab\x5d\x8d\x60\x3b\x1d\xee\x98\x04\xa6\xc1\xc0\x48\xfe\x9e\xce\x91\xd3\x3a\xc1\xc2\x7e\x6c\xd5\xcf\xce\x38\x36\x89\xe5\xd0\x0d\xa7\x0b\xf7\xd3\xf1\x4d\x7b\x7d\x2c\x8b\x8a\x28\x74\x02\x2b\x78\x23\xce\x7c\xf0\x4d\x43\x62\xdb\x05\x6f\x99\xe9\x33\x90\x56\xba\xf8\x79\xb3\xc2\x4f\x84\x36\x0f\x0e\xb7\x5d\x0d\xf6\xa3\x67\xbb\xbd\xb4\x4c\x42\xb7\x6b\xd9\xb1\x0a\xfc\xf2\x79\xf7\x53\xc3\xc6\x90\x33\x88\x52\xf3\xf2\xfd\x2a\xdc\x78\x80\x6a\xf0\x8f\x15\x43\xeb\xb2\x19\x58\xd4\x7c\x70\xf6\xbd\x1a\x28\x80\x9e\x26\x1f\x58\x6b\xeb\x40\x1b\x44\x26\x71\xe2\x5c\x8a\xc0\xe4\x88\x2b\x3e\xd2\xcf\x62\xa6\x5f\x53\xb5\x8a\xc1\xb0\xf8\xe9\x6a\xea\xe0\xa7\xdc\x27\x29\x1f\x4c\xe3\x4f\xa3\xa2\x86\x03\x8e\xbd\x21\x24\x4f\xfe\x7f\xb4\x0a\xb8\x63\x38\xe8\x1c\x3c\xe8\x54\x10\x3b\xbf\xf4\xcb\xbc\x24\xff\x84\x92\x2a\x18\xa7\xef\x2a\xa7\x64\xcf\x8c\x97\xd5\xff\xdd\xfd\xab\xe4\xd4\x38\x19\x84\x6a\x67\xc1\x05\x7c\x72\xd5\xe3\x25\xff\xde\xcf\xe1\xe8\x86\xab\x07\xa8\x31\x02\xfa\x29\x42\xd4\x61\x90\x91\x2a\xa1\xb3\xf0\x1b\xfb\x57\xc9\xee\xe0\x48\x17\xb5\x55\x3c\xe3\x43\x02\x9b\x39\xe2\x21\x07\xbf\xd0\x8d\xf6\xff\xee\x2f\xa3\x14\x24\x78\xbe\x16\x38\xf7\xc8\xe6\xb9\x01\x25\x46\x2d\x10\xe0\xeb\x06\x95\xeb\xc1\xd9\x6e\x1c\x65\x96\x0a\xf4\xc8\xbe\xed\xa1\x54\xa7\x00\x01\xe8\xd5\x5d\x0a\xaa\x7a\x75\xfc\xd5\xd3\x33\xcd\x36\xc8\xe7\xba\x92\x2c\xc4\xdf\xb0\x88\x0b\xdf\xa8\x2e\x22\x93\x0c\x6c\x8c\xe0\x1a\x93\xc5\xcd\xa5\x52\x0b\xc6\xb8\xc0\x52\x3e\x54\xd9\x03\x13\xdb\x97\x15\xac\xfa\x8a\x2e\x91\x36\xfd\x82\xf9\xc3\xf3\x5d\x93\xa3\x9b\x0f\x6e\xc1\xd5\x89\x92\x15\x7f\x48\x96\x01\x55\x9a\x0b\x5a\x9d\x3f\x34\x49\xdf\xc4\xb5\x7c\xc6\x15\x9d\xcf\xa8\x2b\x7a\xdb\x2c\xd9\xa7\x0e\x5d\x74\xd0\xe3\x95\x5f\xc5\xda\xc4\x42\xdd\x89\xa9\x83\x3f\xb8\x46\x80\x21\x84\x47\xa7\xb5\x52\xce\x7c\xa0\xc6\xef\xcc\xc4\x07\x51\xaf\x91\x63\x28\xfd\xa8\x1e\x47\x76\x0d\xcb\x03\x3b\x10\x32\x6e\x0c\xa7\x20\x63\x27\x7b\xbb\x2e\x95\xa6\x74\x91\x3e\x41\x99\x45\x82\x55\xdf\x7e\x35\x4e\x8b\x61\x1a\x0b\x61\x93\x30\x55\xf9\xda\xe7\x5b\x2e\xba\x2f\xb2\x72\x61\xc1\x94\xe8\x48\x72\x88\xad\x6a\x48\xf8\xa6\x96\x89\xca\xd3\x11\x46\x56\x90\xd4\x64\xc3\x04\x30\xb9\xd5\x62\x1e\x3b\x00\xf1\xa4\xbe\xcd\x4c\x2f\xb6\x54\x34\xc3\x16\x83\x43\xcc\xd7\xaa\x6d\x6c\x6c\x56\xb2\x34\x16\x71\x6b\xc6\x5b\xd2\xdf\x0a\xf6\xb2\xa9\x04\xf0\x52\x37\x4c\xb9\x5d\x70\x49\x4e\x33\x9c\xf4\xec\xf5\xf3\x4d\xe0\xa5\x0b\xed\xa8\x67\xb2\xcc\x90\xf3\x34\xa5\xba\x05\xd7\x11\xd2\x8a\x6c\x90\x2f\x6f\xfe\xf3\x36\xe4\x48\x1e\x0e\xed\xc8\xd6\x30\xd8\xaf\x29\x0c\xf6\x6b\xaa\xcf\x9d\xe1\xfc\xa4\x4e\x51\xfd\x05\x93\x96\x04\xfe\xcd\x2e\xa8\xc3\xb6\x6f\xed\x88\x3b\x52\xf1\xe8\x5c\x5d\xe5\x9b\xda\x8c\x24\xd6\x90\x67\x82\xa3\x83\xf3\xbf\xd2\x4d\xa6\x09\x3c\x03\x75\x2a\xad\x7a\xbf\xb0\x1c\x0f\xad\x59\x32\x31\xb3\x03\x4b\xc2\xab\xe3\x9a\xdd\xcf\x2b\xa4\x83\x96\xb8\xc5\x5e\xb8\xae\x40\x3c\xd7\x5d\xe5\x38\x8e\xc2\xc5\xba\x9e\x2a\xa7\x99\xa5\x5b\xcf\x65\x52\x08\xda\xc2\x21\x07\x32\x1c\xd7\x51\x72\x90\xa5\x88\xb5\x0f\x6f\xad\xa9\xbb\x7b\xf4\x85\x6e\x6e\x63\x1b\xba\xb8\xdf\x6d\x1f\x85\x4c\xd2\x65\x65\x2f\xc6\xe6\x04\xd2\x2e\x29\x59\xd8\x26\xf7\xeb\xf1\xe3\xd5\xa2\xb7\x69\x62\xa7\xab\x13\xc2\x09\x06\x8a\xea\xf5\x7b\xfb\x14\xfd\x2e\x8b\x68\x48\x29\xd7\x87\x61\x45\x69\xf3\xbe\x59\x41\x39\xc8\x8d\x88\x27\x0e\x80\xa6\xb7\x90\xd5\xa9\x46\xba\x0b\x6d\x72\xd0\x83\x61\x9a\x93\xe8\x7a\x2d\xa2\x76\x84\x4c\xf7\x15\xc8\xa6\x49\xed\x7c\xf0\x60\xb7\x9f\x2e\x27\xd3\x4a\x5e\x4b\x75\x77\x5f\x55\x18\xc1\x07\x04\x90\x80\xd9\xdc\xb6\xaa\xeb\xd2\x59\x19\x43\x9d\xd6\x7d\x0e\x90\x24\xbe\x6e\x43\x8f\xe4\xb2\x6e\xf0\x5e\x67\x34\x2d\xdb\x99\x36\xbc\x58\x11\x8d\xa4\x80\x08\xa7\xef\x4e\xa0\xc2\x9c\x3b\x35\x74\xbd\x19\x99\x69\x3f\xa1\x8c\xbe\x13\x9e\x0d\xc5\x22\x78\x4a\x41\xe3\x9a\xda\xe7\xb3\x47\xbb\x69\xd6\x67\x35\x66\x91\x01\x56\xad\x64\x27\x1d\x69\x5f\x98\x8e\xc8\xe7\x16\x73\xe3\x5a\x9c\xab\x09\x91\x16\xe7\x36\xdd\x37\x33\x4a\x6c\xce\x89\x23\x8e\x59\xb4\x68\x7a\x9d\x50\xd4\xda\x11\x08\xb0\x51\x66\xfb\x3f\x27\xea\x18\xfb\x06\x8d\x37\xca\x9b\xd7\x40\x7d\x8e\x7a\xce\x19\xd5\xa2\x0d\xf1\x55\xfe\x77\x9f\x94\x32\xbd\x5e\x54\x68\x00\xba\x42\x5b\x5e\x6e\x91\xa0\xe8\x66\x9e\x25\x42\x38\x03\xe9\x51\xa4\x64\x4c\x3b\x4f\x38\xed\x65\x8c\xcc\x60\x90\xd9\x81\x29\x2c\x93\x0a\xcb\x06\xa3\x4f\x32\x1d\x1d\xbd\x04\x0e\xf4\x3f\xa2\x98\x53\xfe\xa8\x09\xf0\x9b\xaf\x8e\x92\x41\x15\xf0\x8e\x4c\x82\x51\x87\x43\x79\x41\x01\xfc\x2e\x34\x9c\x76\x92\x95\xea\x95\xd9\xc0\xa6\x3e\x3f\xdf\x56\x81\x7a\xc2\xc1\x07\x46\x23\x9b\x75\xb4\x7e\xfa\x46\xa0\x48\xfb\x9b\x1c\xcd\x95\xa7\x22\xc7\x1c\xb9\x2b\xc8\x7b\xde\x87\xbb\x22\xe5\xfa\x1a\xb1\xef\xd6\xa5\xf1\x6c\xb7\x30\x79\x41\x1c\x6e\x53\x9d\xaf\x7c\xd1\x51\xbf\x77\x1c\x81\xf3\xaf\xd5\x80\x32\x4e\x34\x3f\x0a\x8b\x32\xe3\x2a\xb3\x34\x91\xf9\xa4\xe4\x4d\x05\xea\xbc\x37\xf1\xac\x9b\xdf\x9f\x68\x0e\xb6\x6c\xc9\x4e\xfb\xd6\x26\xde\x98\x92\xba\xa1\x6f\xe6\xff\xc1\xe1\x28\x89\x1c\x9f\xe3\x1e\x9a\xa4\x1f\x5b\xf4\xc1\xe1\x09\xb7\xcf\x78\x08\xd3\xf6\xd5\x26\xc5\x6d\xd7\xc6\x76\xc9\xa3\x13\x71\x02\xfe\x89\x6e\xb2\xf8\x93\x60\xb7\xac\xa3\x3d\x9d\x63\x07\x36\x11\x2e\x22\xfd\x02\x7a\x30\xd4\xa0\xb6\x21\x9c\x90\xe4\xaa\xaf\xf9\x5f\x98\x38\x3a\xc4\x6f\xfd\xe5\x19\xd5\x70\x29\xee\x94\x83\x61\x7c\xe5\x8b\xa2\x62\xa5\x58\x76\xee\xd3\x3a\xdd\xbc\xda\x86\xf8\x2c\xb2\xb4\xec\xc5\x16\x6a\x5a\x2e\xf3\xe0\x2a\x34\x2c\x3d\xc9\x82\xc0\x8d\xfd\x74\xfc\x78\xb7\x3a\x71\x57\x48\xb2\x4c\x64\xfd\x3a\x5e\xe2\x4f\xd5\x1a\xc7\xd1\x60\x64\x93\x62\x5a\xf1\xb3\x5c\x08\x94\x88\x0d\xe7\xa7\x19\xcf\x15\x78\x35\xc6\xa6\xd8\x7c\xb5\x81\x06\x59\x5a\x26\x7d\x51\x68\x71\xe5\xeb\x39\xa7\x6b\x7c\x4b\xa1\x5e\x8e\xbe\xf8\x5f\x75\x74\x4a\x28\xa8\xb5\x3c\xa9\xc2\xa9\x35\x59\xbe\x9b\xe6\x5e\x0e\x69\x95\x57\xbb\xae\x44\x03\x3e\x0e\xea\xca\x8d\xd5\xf7\xf1\x8d\x46\x72\x9c\x09\x3c\xe1\xed\x6f\x4f\x14\x33\xce\x39\x15\x5f\x3e\xf7\xc2\xfc\xb4\x62\xb4\xe9\x50\x94\x86\x2f\xbb\xa8\x7e\xb2\x06\xf7\x6b\x23\x2e\x4a\x17\x16\xa2\xca\x31\x23\x1a\xaa\xed\x2a\xef\x02\xc2\x2f\xb8\xdc\xbb\x1d\x93\x4f\x3e\x32\x59\x61\xf3\xa2\xa3\x2b\x2a\xc8\x9a\x4b\x79\xa5\x25\x8a\xa6\x2c\x3e\xbb\x89\x9a\x86\x5a\xb0\x96\x7e\x30\x8b\xcc\x84\x2b\x1d\x45\xb2\xf7\x13\x7a\x0c\xbe\x56\xcd\xbc\x4b\xd1\x52\xd4\x8f\x57\x3a\x5b\xc3\x0a\x71\x63\x1f\xe7\xa7\xe8\x1e\x9c\xfd\x39\x42\x3a\x60\x0c\x4e\x4f\x3c\xde\x65\x3b\xa2\x64\x90\x87\x9e\x20\xd4\x03\x60\x59\xd0\xfb\xa4\x2f\x7a\x73\x1f\x02\x66\xec\xbb\xdd\xd8\x46\x08\x69\xe0\x4f\x02\xee\x74\x97\xa2\x75\x7c\xd3\x47\x1c\xff\xc1\xd3\x9c\x9e\x51\x0a\x0e\xef\x00\xeb\x80\x82\xed\x2d\xda\xab\xcc\xc7\x02\x34\x0c\x7e\xfe\x3a\x4e\x33\x84\xe5\xd3\xb0\x9b\x30\x61\xec\xdc\xc2\x9f\xfd\x04\xcb\x0c\x9b\xfd\x16\x0e\x79\xce\xe5\xaa\x66\xaf\x07\x93\xce\xf1\xe3\xae\x4d\x8a\x26\xca\xd5\x97\xbf\xf0\x22\x1f\x43\x6f\x2a\x01\xef\xf7\x29\x0f\x80\x50\xf6\x21\x12\x90\xac\xb8\xcc\x34\x08\x52\xe2\x73\xf0\xb9\xa9\x7d\xab\x5b\x83\xe9\xe7\xe7\xaa\xad\xdb\x51\x9a\x56\x30\xe5\x7c\xdd\xf0\x0c\xaa\x13\x44\x66\xb4\xd6\x33\x54\xcd\x96\xb4\x0c\xb5\x2c\xac\x91\x49\x22\x13\x76\x3c\x71\x0c\x50\x85\x7c\xdd\x00\x26\x1d\x3a\x24\xb4\x12\x9c\x76\x46\xc6\xfc\xac\x1e\xbc\x0d\x25\x4b\xd7\x54\x11\x3c\x7e\xbc\x9b\xa4\x59\xa7\x9a\x6d\xe9\xe8\xa0\x25\x21\xf5\xba\x26\xc6\x72\x9e\x48\x2f\x3d\x1d\x15\xb6\xf2\xba\x6e\x70\x58\xd7\xbc\xfd\x71\x34\xea\x4d\x29\x6b\x72\x57\x31\xc5\x60\xf5\x02\x40\x75\x51\xb1\xa0\xe5\x86\x64\x31\x0b\xbb\x43\x29\xf8\x9e\x60\x33\x8f\xed\xfc\xbd\x89\x82\x41\x7d\x4f\x89\x01\x9c\xd0\x3d\xec\xff\xab\x3b\x58\x2b\xd7\x25\xcd\xb4\x7a\xcb\x16\x94\x8b\x54\x3b\x07\x65\x14\x17\xd3\xaa\xac\xc0\x0e\x0e\x4b\x51\x29\x0e\xea\xfb\xaa\xe5\xb3\x19\xc8\x54\x23\x15\xdb\xbc\x2c\xa2\x5c\xd3\x83\xbe\xa1\x32\x74\x6f\xd4\x48\x85\xb3\x5d\x2a\x0f\x00\x8c\x05\xde\x6e\xd7\x8c\x67\xc3\xfd\x60\x0b\x35\xd5\xdc\x1c\x9f\x51\x4c\x04\xcc\xdc\x77\x38\xb0\x84\x08\xaf\x21\xee\x3a\x7b\xb4\x1b\x96\x05\xaa\xeb\x52\xb8\x56\xe9\xde\x5b\xaa\x9d\x39\x4a\xf2\x22\x23\x36\x4c\xb8\x8b\xf0\x99\x98\x3f\xd0\xc9\xf4\xba\xa2\xe7\xb6\x46\x25\x17\xf2\x9c\x63\x6b\x5c\x7f\x0a\xcb\x01\xd3\x1b\x8a\x34\xb0\x0e\x80\xcd\x98\x91\xf7\x22\xc4\x52\x7d\xbd\x48\x29\x36\xfd\xc8\x23\x7f\x4e\x96\x5a\x7f\xd6\xcc\xbd\xf0\x62\xc7\xb7\xbc\x7f\x42\x8b\x90\xaf\x9b\x3b\xf9\x85\x23\xdd\x61\x1a\x47\x7d\x03\x1f\x5f\x6a\x7a\xf4\xd5\x52\xd4\x6b\x72\xf8\xcc\x75\x4d\xcf\x84\x8b\x84\x42\x16\x42\x8c\xea\x67\xf8\xba\x51\xb8\x3e\xfa\x42\x37\xcc\xca\x7c\xa8\x22\x95\x0b\x64\x91\x24\x68\x6c\x0b\xc0\x22\x96\x0b\xd6\xb0\x5a\x51\xb5\xdf\xba\xd1\xe7\xe6\xba\x26\x2c\xa6\x7d\x8b\xc7\x36\xf2\xe8\x60\x17\xde\x51\x44\x68\x2c\x7c\x0d\x26\xb4\xcb\x8a\x12\x6a\x39\x4d\xfb\xe1\xb0\x0c\x17\x19\x92\x2d\xa4\x51\x1d\x45\x26\xe5\xcb\xaa\xa6\x28\xa4\xc6\xeb\x10\xc0\xbe\x6e\xd6\x18\xe6\xa3\x2f\x74\x7b\x26\x24\xc5\xcf\x8e\x67\xe7\xe7\xf8\x4b\x02\xd2\x3d\x6e\x55\x0e\x46\xbb\xbc\xd0\x0f\x22\xd5\x5a\x86\x14\xa6\xef\x77\x26\x9e\x26\x86\x39\x06\x9c\xa8\x7e\xf5\xbd\x7c\xa3\x0d\xc6\x7a\xe0\x65\xc2\xa3\xa4\xa8\x5c\xe9\x84\x4c\x1d\xad\x5c\x6c\xbb\x8e\x22\xd1\xeb\xac\x7a\x53\x17\xdb\x25\x1b\x3f\xee\xcb\x41\xff\x06\xf9\x00\x04\xaa\xbb\x66\x7c\x3e\xe0\xbb\x78\x16\xe0\x6e\x38\xe3\xee\x48\xe9\x0f\x8b\x9a\xcd\xb5\x89\x57\x88\xb8\xa7\x8c\xe6\xd7\x03\x15\xf2\x9c\xa4\xa3\x51\xe2\xa6\xa7\xd4\xb3\xf7\xab\xe3\xa7\x34\xf1\x13\x7e\x9b\xbd\x19\xa8\xe4\x24\xeb\x5e\x63\x42\x6e\xd3\x21\x09\x7f\x95\x75\xda\xa5\xa9\x88\xd2\xa4\xfc\x3f\xf4\x63\x4c\xbb\x83\xa7\xe0\x1a\x54\xa0\x28\xb6\xc9\x0d\x40\x77\xc4\x5b\x81\xee\xcb\x25\xc7\xdc\xb5\xe9\xb9\xd3\xea\x7a\x5b\x72\x21\x4a\x16\x73\xd5\x73\xb2\xa6\x13\x5f\x6b\x41\x0b\xa7\xfd\x56\x35\x19\x91\x49\xa9\x1e\x4c\x82\x34\x9f\x54\x1e\x99\xca\xae\x99\x15\xb4\x4f\x73\x0a\x28\x50\xbc\x1f\x6b\x4a\xb0\xe2\xac\xcb\x82\x2d\xc4\xd6\xa5\x30\x44\x42\x56\x61\x9b\x2f\xaa\xfe\x85\x5e\x5a\x0c\x2d\x69\x1e\x68\x01\x49\xfa\x63\xe9\x3e\xf6\x06\xe9\x88\x7d\x79\xca\x77\x75\xf0\xc1\x84\x45\xb4\xa1\x30\x0f\xd3\x2d\xb5\xa7\x32\x89\xb2\x74\x85\x3b\xaf\xb1\xa2\xfe\x10\x9f\xe7\x9b\xc6\x60\x39\xc5\xe3\x34\xeb\x5b\xa6\xae\x76\x6c\x6c\xcf\x4b\x2d\xea\x44\x2d\x71\xb1\x68\x8b\x27\xe9\x0f\x91\x69\x61\xbd\x08\x64\xc5\xee\xd7\xb8\x5e\x69\x51\x31\xa9\xc0\x44\xb5\x5c\x3e\xc1\x0d\x7f\x4e\xff\xdd\x91\x46\x23\x41\x25\x2a\x60\xd5\x3a\x74\xeb\xe5\xd8\x01\xf6\xc2\xff\x6f\x95\xd1\x7b\x14\xa8\xc6\xeb\x75\x78\x74\x58\xac\xf7\x02\x15\x36\xef\x86\xa3\xca\xd2\x80\x94\x7d\xc7\x6f\xff\x3b\x85\xb6\x7c\xc7\x65\x09\xa2\x2c\x4d\x18\x2f\x82\x8f\x7c\x53\x75\x20\x7f\xb3\xd6\x0b\xbc\x12\x25\x83\x9d\x34\x1a\x92\x5b\xd5\x22\xbe\x60\x69\x77\x6c\x6c\x4e\x25\xe1\x0f\x09\xec\x2c\xcc\x6c\x1e\x86\xfc\x87\x0a\xbb\x32\xce\x57\xc2\x61\x4a\x7d\x35\x79\x01\xc7\x11\x89\xd8\xb3\x58\xff\x7c\xd3\x4a\x3e\x1c\x65\x82\x5f\x73\xfd\xb2\x3e\xe7\x7f\xd6\x41\x9d\xf2\x32\xab\x1c\x53\x61\x0e\x40\xf8\x07\xda\x20\xa9\xe0\xf9\xb6\xc4\xd3\xad\x58\xca\x63\x07\x66\x3b\xaa\x9b\xfc\x34\x56\x35\xdf\x38\x06\xf0\x38\x4d\x59\xbd\x43\x6c\xb9\xca\x27\xb6\x88\x84\x90\xac\x7e\x5a\x26\x45\xc7\x4b\xc9\xaf\xd5\xca\x99\x5b\x3f\x53\xb9\x31\x26\x4b\xcb\x5c\x92\x76\xa2\xf5\x50\x43\x67\xa9\xba\xb2\x89\x4d\xc8\x72\xc1\xac\x58\x0b\xa8\xb7\xc8\xd7\x6e\x01\x36\x1c\x9c\xed\x1e\x3a\x74\x44\x49\xf1\xbc\xab\xa4\x78\xde\x55\xd2\x09\x99\x61\x21\x53\xa6\xc3\x0d\x3c\x40\xe5\x32\xac\xac\xf0\xe4\x76\x1c\x87\xda\xe5\x46\xd6\xe9\xd9\x6e\x3e\x8a\x8a\xe1\x22\x35\x58\x92\xd5\x85\x39\xe0\x9e\x16\xbe\x51\x22\x95\x20\x73\x7c\xb2\x1a\x2e\xec\x1e\xa4\x77\x61\x86\x19\x4b\x8d\x83\x90\x15\x9f\x99\xec\x8f\xd6\x3f\x92\x2d\x1f\x20\x34\x73\xe0\x35\x27\x20\xc9\x82\xf0\xd8\x30\xdf\xd0\xba\x59\x98\x47\x64\x82\xae\xa1\xcf\x51\xf4\x94\x9d\x50\xc3\xff\x74\x92\x2c\x09\xaa\x7c\x4c\x17\x00\x47\x66\x1b\x28\x5c\xe0\x82\xdc\xd3\x6c\x0c\x77\x71\x72\xc3\xa5\xfc\xf7\x81\x26\x65\x32\xfd\xca\xb1\xfb\x34\xbc\xd3\x7e\xf5\x97\x61\x61\x92\x41\xcc\xa4\xe6\xc2\x33\x47\x03\x21\xcd\x4a\x5b\xcf\x9a\xe3\xc7\x59\xd5\xd1\x69\x97\x81\xea\x80\xaf\x03\x4d\x55\x9c\x14\x36\x09\x2d\x61\xc5\xb0\x3f\xae\x82\x89\x0f\xf9\x61\x66\x66\x76\xdd\x60\x0e\xb6\xf6\xb0\x6e\xb0\x5a\x36\xef\x28\x75\x75\x2e\x1c\xeb\xaf\x4e\x14\xb0\xfe\x55\x27\xa6\xb1\x3c\x34\xa3\x69\x8a\xac\xe1\x6d\x5f\xa4\x23\x15\xd8\xf7\x87\x9a\x29\x79\xa2\xb6\xe4\x09\x75\xee\x15\xc3\x8c\x36\xff\x0e\x5f\xe1\x58\xc7\xb8\xe3\x4b\xae\xa9\x2f\x41\xd7\xa2\xc4\x5e\x00\xb1\xab\xcc\x46\x99\x2c\x44\x05\x06\x9a\x11\x2f\x81\x6f\x6a\xf3\x3d\xd2\xa3\x28\x89\x46\xd1\x2b\x28\x15\x8a\x2b\xee\xe1\xcb\x57\x14\x28\x79\xc1\x66\x4e\xf0\x05\x91\xcf\x69\x45\x48\xff\x43\x2c\x68\x99\x75\x5f\xfa\x1b\xdb\x7e\x64\x8a\x2c\x0a\x23\xc3\x6e\x1a\xb7\x3d\x62\xd8\xa5\x07\x52\xd1\x32\x24\xfd\x34\x13\xb5\x4d\x27\x2f\x3a\xe7\x25\x45\xfd\xb3\xc7\x51\x61\xb8\xca\x81\x11\x3f\xa1\x62\x9d\x13\x6d\xdc\x81\x89\x49\x47\x51\x47\x9b\x53\x15\x29\xd4\x14\x16\x56\xf2\xc2\x8e\x9e\xc0\xd1\x01\x9f\xea\xba\x42\xd0\xfc\x81\xd6\x8b\x01\x17\xa9\xe3\x5f\x38\x7c\x40\xf1\xc0\x7b\x5d\x44\x64\xbb\x9c\xfc\xfd\xec\x51\x3e\x09\x37\xb0\xfb\x5d\xaf\x81\x4b\x83\x3d\x3d\xa3\x88\x79\xef\x4d\x7c\xca\x87\xf9\xec\x80\xd0\x68\x66\x37\xa8\xee\x11\x86\xbe\x7d\x18\x0f\x73\x4e\xe3\x82\x9b\xc0\x4f\xc2\x05\xa6\x19\x83\x57\x1c\xd9\x57\xb5\xf8\x10\xa8\xde\xc2\x0c\xc3\x1c\x74\x66\x5a\xba\xe6\x86\x65\xe5\x92\x77\xbc\x01\xba\xa2\x35\xee\xaf\x04\x8a\x47\xbd\xf2\x89\xa8\xaf\x93\x7e\x40\x4a\x19\xba\xae\xd1\xd2\xe6\x45\xc1\x7f\x6c\xb3\x51\xaa\x1c\x01\x2e\x9e\xf3\x4d\x2b\x03\x90\xed\x47\x69\xc9\xa7\xaf\x23\xa9\x3f\x74\x48\xae\x83\xba\x2b\xb5\xb2\x4b\xf9\x5c\xa7\x31\x68\xd8\x7e\x3f\xc2\x03\x62\x63\x32\x5e\x17\xa6\xbd\x20\x43\xbd\x79\x95\xbe\xd6\x39\x11\x4e\x06\xf7\x91\xaa\xb8\x9b\xfe\x57\x4d\xc8\xf1\xfa\x7c\x4d\x06\x06\xd9\x2a\xee\xb2\x13\x61\xda\xb6\xc9\x5d\xce\xaa\x88\x9d\x59\xc5\x78\x15\x60\x72\x64\x49\x68\x1c\x59\x1a\xdb\x8c\x94\x42\x9c\xdf\xe6\x35\x13\x02\x9f\xd8\x47\x60\x20\x1c\x3d\xce\xa5\x8e\xa8\xa5\x60\x4a\xa5\x35\x00\xb7\x42\xc0\x8f\xe6\x4e\xa4\x4b\x1f\xd4\xe9\x45\xb3\x68\x21\x92\x24\x2c\xa6\xf4\x7c\xa0\x52\x14\xe7\x9b\x64\x5f\xb3\xdd\xd8\xf4\x6c\xcc\x9f\x91\x34\x78\xc7\x93\xae\xb4\xa9\xad\xc4\x16\xc2\x40\x4e\x9a\xbf\x1a\x13\xac\xf1\x47\x5a\x2f\xf4\x66\x9b\x35\x28\x86\x76\xa1\x50\xe2\x13\xe7\x27\x8a\x92\x04\x89\x0d\xee\x55\x75\x03\x82\xda\x0b\x17\xe7\x1c\x62\xb3\xfa\xd1\x1a\xef\x10\xb2\xa9\x8f\xda\x30\x47\x83\xcc\x78\xd8\x3c\x2b\x72\x07\x1e\x24\xfa\x3b\xad\xa9\x2a\xbb\xb0\x60\xc3\x82\x53\x55\x48\xe2\x6e\x63\x40\x14\xdf\xcd\xf8\x39\x07\x75\x13\xa9\x45\x03\xc7\x7b\x8d\xe6\x96\xaf\xdd\x71\x95\x17\x76\x0c\xa1\x0b\x98\xae\x07\x2a\xa2\xdd\x0e\x4a\x07\xd1\xc2\xd4\xb3\x88\xf5\x89\x90\xf5\x14\x05\x01\x40\x05\x3d\x5e\xad\x85\xcd\xeb\x5e\xab\xde\xee\x9b\xf1\x05\xf9\xd8\x2c\xaf\xd8\x2c\x7f\x8c\xde\x1a\x66\x6c\x07\x1a\x04\xa5\x96\xdb\x79\xe6\x19\x4d\x38\x28\x55\x30\x00\x8f\x58\xe3\x2e\xf0\xa2\xa0\xc8\xbf\x23\x8a\x7a\x0b\x83\xce\x5f\x3b\x43\x5e\x8f\x10\x33\xfa\x9c\xc7\xf2\x30\x8d\x29\x65\xe9\x09\x7d\xe9\xbd\x44\x3c\xbd\xe3\x64\x38\xa9\x23\x87\x9d\x88\xf7\xe0\x6a\x89\xa8\x7a\xb3\x9d\x07\x89\x88\xbc\x30\x85\x9d\x52\xd8\x74\xac\x5c\xb8\x1b\xf7\x54\x63\xc5\xa9\x36\x71\x9a\x70\x68\x32\xca\xaf\x74\xfc\x43\x5c\x0c\x3c\x9e\xe9\xe2\x64\x2b\x0c\x47\xc2\xc4\x45\x1b\xc7\xcb\x69\xca\xcb\x49\xea\x98\x35\x13\xf2\x53\x52\xbc\xb4\x45\x96\x86\x43\x3b\x8a\x42\x13\xe7\x5a\xac\x60\x52\x93\x99\x53\xf4\x3f\x99\x19\xd3\xf6\x80\x9b\xb1\x4a\xaf\x84\xf3\x88\xf9\x67\x30\x17\xbe\x53\x27\xed\xc5\xd1\x40\x9c\x25\xd1\x2d\xd2\xc0\x71\x8f\xd4\xb5\x71\x64\xa1\xe7\xc6\xe4\x62\xaa\xc0\xf1\xed\x36\xda\x9e\x38\xca\xdd\xbe\x81\x03\x72\x5d\xa5\x61\xaf\xb7\x29\xf1\x84\xb1\x35\x99\xd0\x07\xe2\x54\xe5\xce\x34\xa6\x2f\xa4\xdf\x14\x1e\x02\x45\xf0\x69\x92\x7e\xd4\x27\xaf\x13\xa3\x02\xe4\x10\x5f\x4f\x3c\x9a\xa6\x32\x73\xa8\x0a\x71\x31\x0c\x31\xae\x54\xc6\x5a\x10\x0f\x43\x1b\x09\x61\x0e\x16\xef\x47\x81\x5f\xc8\x1f\xb9\xaf\xce\xc7\x51\x16\x15\x35\x10\x00\x47\x99\x58\x11\x37\x55\xdd\xe0\x13\x45\xaf\xdf\xb7\x79\x1a\x9b\xc2\xa2\x62\x86\x90\x7a\x0d\x3e\x09\xdf\xb4\x15\x36\x16\xd2\x3e\x39\xf1\xd5\xf7\x63\xcf\x63\x7b\xf1\xb5\x6e\x2e\x81\xfa\x33\xad\x0a\xd8\x5c\xe4\xf7\x70\x1e\xbc\x8b\x55\x81\xe3\xf2\xa4\x92\x8d\x0e\x87\x59\x94\x17\x51\x42\x8d\xac\x73\x9b\xa0\x19\xdf\xbc\xda\xac\xed\xbf\x70\xa4\x1b\x46\x45\x14\xa6\xd9\x58\x31\xb1\xce\x6b\x54\xf6\x7c\x8b\xde\xfd\x6c\x77\x68\x96\x98\xf0\x01\xc7\xfa\x0f\x54\xe7\x1b\x7a\xff\x11\xd0\x9f\xf8\xd4\x8c\xcb\x57\x4d\x98\xf6\xf2\x69\x1f\x04\xae\x51\xba\xc3\x65\x2e\x3d\x35\x70\x67\xa6\x86\xda\x56\xb4\x3a\xf1\xca\x67\xab\x08\x6a\xf3\xaa\x46\xac\xef\x5e\xf5\x47\xcc\x03\x4f\xaf\xb3\x97\x65\x89\x81\x7f\x9e\x66\x73\x2e\x19\x62\x5a\xa5\x02\x56\xa2\xdf\xa6\xa4\xdd\x07\xfb\x66\x54\xd3\xec\x15\x6a\xbe\x46\x50\x06\x45\x41\x3a\x0d\x7e\x66\x3f\x31\xa2\x6c\x76\x56\x95\x90\x21\xcc\x3b\x99\xc8\x7f\xfc\xf7\x67\x5c\x1e\xf4\x77\xf7\xaf\x7a\xc8\x68\xcf\x98\xbf\x4b\xe8\x36\x2c\xc7\xdb\xf8\x61\xc4\x49\xdb\xe8\x2d\x90\xf0\xd9\x4b\xe9\x52\xec\xe9\xef\x34\x36\x1e\xe5\x3b\x62\x47\x66\x06\x1b\xf8\x23\x45\xba\xf1\xa3\x36\xb6\xdb\x30\x4d\xfa\x69\x82\x48\x04\x1b\xed\x75\x15\xee\xbc\xae\xbc\x0b\x13\xc7\x76\x60\xfb\xf1\xca\x34\x0d\x92\x8e\x6f\x24\x99\x4d\x61\xac\x04\x3b\x3a\xb3\xfd\xa4\x83\x61\x9a\x24\x1f\xa7\x99\xd0\xc6\x22\xbb\xfe\x63\x84\xd2\x7c\x33\xd9\x42\x71\x50\x4c\xa9\x7c\xe9\x34\xa8\x37\x31\x06\x7b\xc8\x0f\xe2\x72\xae\x47\x2d\xd9\xd8\xf6\x32\x0f\xbb\xc0\xf3\x4c\x14\x5f\xf4\x44\x79\x6a\x4b\x51\x1e\x15\x5a\x5a\xf8\xe3\xc0\xe7\xa4\x3f\x6e\xe1\x15\x7b\xae\x3b\xb6\x26\x1c\x8a\x93\xd5\xd6\x8e\xd2\x46\xc5\x5d\x16\xd5\x39\x43\x23\xa7\xbb\xe2\x44\x1e\x4f\x97\x7a\x46\x51\xb8\x57\xb1\x93\x5c\x41\xaa\xa0\xd6\xe6\x06\xef\x83\x65\x6f\xb1\xc3\xfe\x3b\xae\x04\x22\xed\xfd\x48\x91\xc2\x3c\xbe\x85\xdd\xe9\xd0\x21\xaf\x20\xe0\xfa\x0e\x38\x2f\x29\x75\x33\x7f\x78\x3c\xd0\x1d\xcf\xa7\x14\x40\xba\x4c\x6c\x1e\xa6\x54\x3c\x81\x33\x21\x90\x13\x27\xdc\x52\x13\x0e\x3c\x7c\x40\xfe\xac\x8d\xf7\x92\xd5\x49\x6b\x40\xb3\xdb\x1a\x68\x76\xbb\x0d\x3c\x17\x9a\x25\x6b\x0a\x15\x96\x80\x74\x99\xaf\x6b\xf5\xb3\x5e\x5a\xa3\x2e\xc3\x16\x93\x87\xf3\x15\xc7\x67\x2c\x14\x4a\xb0\x70\xff\x94\x06\x4b\x64\x19\x14\x91\x76\x93\xbf\xf4\xd9\x6e\x3e\xb6\x24\xbb\x40\x3f\xa3\xfa\x45\x5c\xf3\x48\xe0\x0b\x88\xa3\xb4\x72\x46\xa3\x3c\x4d\x6a\x10\x2c\x4e\x9c\xf3\x4d\x4b\x3e\xf0\xb9\xee\x42\x9a\x2d\x9b\xac\x3f\xe5\x53\xc5\xa8\x1d\x63\xb2\x90\xa1\xc7\xfb\x9f\x6d\xeb\x9a\x26\x4c\x0e\x55\xc5\x1d\xf5\x62\x35\xe0\x1a\x5d\x89\x73\xf9\xbe\xab\xfd\x96\x49\x54\xc0\x3e\x30\xeb\x0b\xfd\x9e\x30\xc0\xb4\x70\xd4\xc5\xa6\x97\x66\x86\x39\x7d\x74\xf8\x47\x6b\x52\x42\xc1\x96\x48\x36\xab\x9c\xa4\x5c\xf7\x91\x76\x54\xb3\xc4\x49\x3d\x01\x0f\x54\x57\x75\x58\x0d\x66\x5e\xe0\x73\x08\xe8\x31\x0e\x12\x97\x55\xcf\x0b\x2f\xf5\x77\x14\x91\x00\x54\xc5\xb2\x1d\x34\x00\xe2\xa5\x78\xa4\xc9\x37\x26\xba\x6d\xcc\x6f\x9a\x4b\xf5\xc3\xb6\x05\x7d\x50\xd9\xb7\xcc\xac\x98\xb8\xa3\xe2\x1a\x9c\xec\x82\x61\xfa\xac\xb3\x55\x49\x0e\xd1\xc2\x63\xde\xe9\x54\x19\xb3\x3b\xba\x38\xf5\x89\xd2\x52\x0b\xd3\xd1\x28\x22\x51\xfb\xdd\x0a\x69\xc8\x80\x03\x0a\x69\xfe\xc1\x3e\x2e\x2e\x30\x3f\x81\x02\x5f\xed\xa4\x58\x52\xba\x4c\xe1\x1a\x4c\x48\x45\x18\xb1\x22\xb3\x71\x68\xc0\x42\x3a\x92\xc2\x25\x53\x28\xd7\xe8\x94\x35\x9d\x76\x0f\x35\x74\x69\xde\x5d\xd7\xed\xd3\xeb\x0a\xbb\x3f\xb0\x89\x75\x22\x67\x00\x6f\x9e\xd4\xd4\x4b\x57\x14\x88\xf5\x23\xb5\x75\xc6\x65\x16\x0e\x4d\xee\xa8\x13\x99\xdf\x3a\xf0\xcf\x73\x49\xa5\xb7\x13\x53\xe6\xd6\x20\x90\x56\x3c\xc4\x47\x36\xa1\xfb\x04\xc7\xe2\x8e\xa2\xe4\x0a\xd3\x51\xaf\xcc\x0b\x51\xb0\x90\x96\x14\x7a\x09\xe9\x55\x69\xd9\x57\xe1\xd0\x2c\x70\x67\x3e\x0c\xf5\x5b\x0a\x7d\xf1\x56\x23\x8e\x38\x7c\xe0\x70\x37\xcc\x6c\x3f\x2a\x96\xd3\xac\x18\xa2\x8a\x8e\xa7\x3f\xa9\x58\xbb\x4f\x2a\x6c\xbd\x49\x8a\x28\x8c\xc6\xc6\xd1\xe8\x4a\x82\xde\xa3\x7a\xa6\x67\x54\xe2\xe7\x7e\x23\xab\xfb\x2c\x55\xf8\xc0\x3e\x0b\xa3\xfa\x2f\xb1\x96\xf9\x46\x4d\xe3\xa0\x34\x19\x90\xf9\x28\x79\xbf\x83\x01\xe0\x9b\xc6\xa2\x3f\x4c\x85\x0a\x00\x1a\xa6\xfc\x39\x0b\x71\x6b\xc1\x92\xab\xc1\xd9\x36\xf3\xa4\x72\x7e\xb2\x30\x16\x75\x7f\xe1\x23\xf3\x76\xe8\x8c\xea\x4a\x1e\x0f\x53\x7e\x7c\x27\x00\xe4\x02\x91\x56\xfa\xff\xdc\x8c\xca\xcc\x44\x53\xaa\xe0\x14\xf8\x92\xe0\x5d\xaa\xd1\x01\x74\x7c\x5b\xe5\xb4\xa3\x64\xc9\xe6\x45\x9a\xed\x52\x1c\x04\xbf\x13\xf8\xee\x83\x2b\xaa\x09\x99\xe1\xed\xa2\x19\x56\x7d\x39\x4a\x0d\x77\xe9\x6c\x65\x16\x21\x2a\xb4\xd5\x70\x70\xc2\x97\x1e\xaf\x3c\xdd\x11\x79\x8e\x5f\xdd\xbf\x4a\x31\x34\xb2\xec\x9f\xa0\xf2\xca\x02\x98\x08\x70\x10\x1b\xdf\x45\xea\x12\xdb\xe4\x54\xa0\xfb\x1a\x6b\xfc\x1a\xeb\xf4\x7e\x4e\x06\x56\xd3\x36\x56\xcf\x26\xcd\x19\x0a\xfa\x7d\x87\x26\x0c\x3e\xc0\x29\xaa\xba\x33\x0b\x23\x8d\x1a\xcb\x66\x4f\x14\xc6\x77\x6a\x86\x5e\x1f\xbf\x7e\x07\x8b\x04\xf9\xf9\x29\x38\x1d\xa2\xdf\xd9\x71\x29\x87\xd7\xc8\xb7\x60\x91\xcd\x9a\x18\x67\x5e\x74\x88\x84\x01\x0b\xfb\x54\xe0\x06\xe6\x67\x4f\xb5\xe1\x0d\x73\xbb\x64\x33\xd4\xb5\xdd\xf9\xe2\x30\x2b\x97\x5b\xe8\x64\xe7\xba\x43\x9b\x4d\x01\xdf\xc6\x98\x03\xaa\x0d\x39\xd5\xdf\xca\xb3\x14\x25\x77\x45\x48\x18\xf5\x09\xbf\x80\x53\xf9\x0f\xe9\xf1\x91\x34\x7c\xa8\x65\xdb\x70\x78\x62\x8c\x1e\x47\x0e\x59\x11\xf8\x48\x91\xf8\x66\xd0\xf9\xca\x17\xf9\x0c\x7b\x63\xd2\x10\x68\x40\x8b\x20\x58\xc2\x11\x5f\xdc\xd1\x6d\x43\xa9\xa8\xcf\x39\x69\xbb\xd7\x27\x1e\xbc\xf2\x7a\xf0\xb4\x36\xd8\xe3\xd8\x80\xac\xa5\x7a\x60\x9c\x69\x37\x54\xe7\xf0\x0d\x55\x23\x1a\x57\xa6\x88\xba\x4b\x7c\x81\xe6\x42\xad\xbd\xc2\xcf\xd3\x62\x99\x15\xec\xb4\x20\x41\xf8\xdd\x89\x02\xd0\x7e\xb7\x85\xdf\x61\x9e\x84\x75\x01\x1a\x97\xac\x27\x0d\x09\x76\xf8\x8f\xe8\x15\xb0\x6b\xb8\xe9\x07\x86\xc1\x26\x20\x10\x7d\x4e\x52\x83\x81\x3f\x42\x9b\x7d\x85\xc7\x0e\x74\x97\x4d\xe4\x65\x00\x9d\xe3\xa9\x9c\xbe\x36\x1c\x53\x56\x26\x66\xd9\x80\x66\x98\x9b\xdd\x02\xaf\xce\x71\x5a\x81\xd3\x8f\x2b\xc2\xe0\x91\x49\x56\x3e\xa3\x54\xe6\xf7\x23\x1b\x89\x1f\xba\xe6\xd5\xe4\xa7\x3e\x87\xa0\xd5\xbd\x77\x35\x54\x40\x2e\x9e\xa4\x0d\x26\x7e\x49\xc7\x31\xbf\x4c\x23\x41\xe7\xa4\x1a\x7c\xe3\xdd\x58\xa9\xbf\x4e\xaf\x56\xc3\x89\x16\xac\xab\xd8\x78\x48\x4b\x74\x56\x3d\x84\xfc\x0e\xcd\x37\x5c\xa9\xff\x43\xa5\x2b\x06\x76\x3c\x34\x59\xbf\x98\x56\x91\xfb\x9a\x12\x42\xdc\xa8\xb9\x4c\x95\x15\x11\x0e\xbd\x16\xb2\x2c\x3b\x8e\x62\x3b\xce\x57\x28\xdb\x8d\x62\xfc\xbf\x9a\x28\x50\x28\x5c\x05\x6c\xe4\xfb\x4a\x80\x68\xdd\xf1\x04\x44\xc9\x42\x5c\xda\xa4\x88\x18\xb1\x01\xd7\x14\x38\x01\xbe\x76\xfd\xdc\xbd\xd8\x84\x8b\x23\x92\xdb\x39\x76\x80\x99\xa5\x10\xe4\xf2\x75\x0b\xbd\xf0\x9c\x68\x15\xa5\x49\x4d\xcd\x5c\x61\x89\xaf\xa8\xda\xd9\x20\x33\x45\x19\x15\x69\x29\x4a\xf3\x6d\x31\x9e\x5f\xa7\xc5\x72\x94\x08\xda\x1c\x86\x90\x7b\x4a\xf9\xa6\x4d\x81\x76\x39\x1d\x99\x24\x7a\xc5\x2d\x56\x91\x10\xf0\x60\xb5\x75\x07\xc2\xf8\x6a\x39\xea\xa5\x39\xc5\x59\xc8\x12\x83\xc3\x86\x5b\x2e\x27\xaa\xc6\xce\x21\x17\xdc\xb7\x5d\x33\xbe\x16\x3f\x4e\xc7\x70\x73\x31\x46\x6f\x4f\x94\xbe\xf8\x45\x6d\xc4\x00\x77\x86\x03\x01\x85\x25\x66\xc1\x50\xbd\xfe\x36\x1f\x73\x49\x91\xd3\xb6\xea\x71\xde\x6b\x13\x8a\xa2\x0c\x70\x9e\x8e\x2c\x59\x00\x7c\x21\x51\xd9\x6f\xde\xa6\x83\x48\xba\x61\xf4\xc1\x98\x44\x76\xb7\xaf\x3e\xb2\xae\x8d\xe0\xd4\x7c\x86\x76\x83\xbe\x40\xea\xbe\x8a\xc5\xf3\x22\x5c\x49\xbe\x21\x78\x34\xf2\x04\x68\x27\xc7\x76\xbc\xae\x53\x0d\x51\x66\x13\xa0\xab\x9c\xb4\x73\x35\xb2\xe2\x85\x78\x98\x5d\xf2\x79\xb2\xa8\xc8\x47\x9c\xd2\x22\x0b\x4d\xea\x9d\xf9\xc3\xf3\xdd\x91\x11\x4e\x54\x27\xd2\x53\xd9\x0d\xf8\x1d\x1b\x38\xbe\x71\x9a\x9e\x69\x63\x6f\xb5\x84\xdd\xb7\x49\xc8\xf8\xcf\xff\x54\x6d\xb6\x6f\xc7\x91\x6f\x12\xc4\x52\x7d\x5f\xa9\x6c\xbe\x3f\x51\x7f\x99\xe6\x91\xb4\x24\xc2\x8c\xdc\x55\xba\x93\x77\x26\xea\xb9\x7e\x57\xd5\x89\xf3\x72\x3c\x4e\x73\xee\x0a\xc1\x42\x79\x93\x8e\x2b\x60\x1c\xae\xa9\x7c\xd3\x85\xb6\x44\x6c\x62\xb3\xbe\xb4\xda\x4b\x66\x46\xc1\xd8\xb8\x09\x09\x86\xe3\xae\xea\xc9\x1c\xa6\x71\xdf\x66\xf9\x1e\x1a\x3b\x51\xb9\xad\x26\x9f\x53\xa0\xd0\x44\x01\xda\x88\x57\x02\xb2\x90\xeb\x5a\x8e\x9d\xe9\x57\x5d\x0a\xd5\xf7\x0d\xd1\xbb\xf3\xbf\x4f\x3c\x07\xc6\x9b\x58\x79\x9c\x73\x0b\xbc\x06\xcd\xc9\x56\x1a\x73\xd3\x5f\x32\x49\x61\x06\xb6\x53\xf7\x0c\x1c\x1a\xb4\x29\x92\x5f\x2d\x11\xe0\x8f\x24\x5a\x56\x67\xe4\x4b\x2e\xdf\xa0\x20\x17\x45\x16\x2d\xca\xb9\xce\x24\x2f\xf4\xf4\x42\xf8\x52\x6b\xae\x5b\xc9\x09\x9a\x21\xb2\x5e\x4a\xfc\xea\x1f\x62\x1d\x2a\xc2\x26\x45\xd3\xe0\xa8\xa9\xaf\xaa\x76\x0c\x93\x65\x26\x19\x60\x1b\x33\x04\x0d\x09\x53\x97\x85\xf7\x02\x02\x6b\x2a\x3f\x9b\x9a\x64\x97\x22\xc0\x43\xa7\x33\x6c\xd9\xae\x55\x65\x2a\xdf\x26\x27\x1b\x85\xdc\xa9\x19\x9d\x98\x45\xf4\x8c\x3c\xc0\xee\x99\xce\xc1\x83\xbc\x04\x9a\x39\x8e\x63\x07\x58\xad\xc6\x13\x04\xa0\xa4\x23\x4c\x05\x3e\x81\x35\x2c\x7b\x36\xe3\xec\xa2\x10\xc6\x56\x2b\x0a\x13\x0c\x19\x66\xe9\xd9\xf2\xb6\x34\x5d\x4e\x76\xc1\x87\x64\x84\x8f\x6a\x7a\x47\x2b\x83\x93\x13\xaf\x9c\x79\x71\xb6\xc8\xb9\x84\x0b\xf9\x1f\xeb\xf2\xc6\x9e\x66\xea\x46\x6d\xea\xfa\x51\xff\x89\xea\x4d\x85\xe5\x52\x35\xfe\x22\x89\x47\xab\xf5\xe8\x93\xab\xb4\xf2\x11\x05\xfd\x4b\xf2\x10\x80\x8f\xf8\xc1\x44\x25\x28\xef\x31\x1c\x0f\x01\xef\xe3\x44\x3e\x8a\xca\x04\x68\x58\x10\xa4\x21\xdd\x82\x9d\xdc\x81\x6b\x8f\x1d\x05\x43\x8d\xad\x76\x0b\x8b\x08\x21\x4f\x67\x75\xaf\xab\xca\xac\xf4\x29\x38\xdb\xbc\xca\xdc\xcb\x1a\xd7\x61\xc3\x32\x03\x43\x3e\xf6\xd8\xd5\xc0\x97\x32\xae\xd6\x81\xee\x09\x8b\xd3\x70\x4b\xba\xae\x16\xfe\x73\x9a\x49\x2c\x96\x1f\xd3\xee\xe7\xeb\x36\x5a\xcc\x32\x19\x5b\x13\x22\x5e\x64\x66\x57\x8d\xdf\x7a\x53\xd7\x49\xd2\x64\x21\xca\x46\xb6\xbf\x53\xa1\x75\x34\x27\xec\x14\x22\x6b\xa4\x4f\xbe\xa3\xc8\xa9\xaf\xd0\x2a\xe1\x7f\xd7\x04\xf7\x53\xaa\xf9\x3c\x4a\x16\xb2\x28\x19\xe0\x51\x1c\x71\x9f\x03\x97\x5f\x72\xf0\xc0\x9e\xb5\x0b\xd3\xbe\xdb\xf8\xb4\xca\x19\xed\x86\x1f\xa9\xe1\x94\xb0\xda\x1b\x8d\x14\x9c\x67\x70\xa1\x06\x3e\xda\x09\x88\xbd\x50\x26\xe6\xeb\xc6\x98\x51\x13\x29\x35\xc1\xc2\x0e\xb9\x42\xe2\x9c\x97\x8a\xf9\xac\x6a\xe2\xb2\xa6\x80\xdb\x8c\x63\x60\x7a\xb5\x9a\xfc\xeb\xba\x70\x7b\x3b\xd0\x04\x36\xd1\x60\x28\x91\x03\x3e\xb1\xae\x81\x2a\xeb\xea\x6f\xfb\xb6\xb0\x21\x30\x8f\x02\x12\xae\x7e\x47\x30\xc2\x5b\xe5\xd4\x7f\xb1\x5b\xe6\x9c\x7c\x41\x22\xe4\x12\x59\x70\xbe\x76\xa7\x63\xe5\xa7\x2e\xe5\x8b\x2b\x8a\xff\xec\x5f\xe1\x09\xf8\x46\x25\x40\x46\x69\xda\x5f\xd9\xa9\x28\xe5\x36\x27\x35\x40\x67\xf5\x38\x38\xc1\x9f\x9e\xf1\xc9\xb4\xed\x10\x5b\x40\x1d\x0b\x2a\x89\x08\x8b\xfe\x85\xca\x30\xd1\x09\x4a\x02\x1e\xd3\xb0\x23\x28\x2a\x9d\x53\xaf\x08\xd6\x7b\xbe\x46\x5c\xca\x7f\xa4\x9a\x63\x52\xce\x7c\x2b\x31\x95\x23\xce\x5f\xda\xeb\x00\x64\x63\x83\x4a\xe9\x9f\x27\x86\x9a\x3d\x2a\x8a\xd1\x3c\x4f\x40\x37\x32\xf2\x89\x6f\x74\x59\x72\x1c\xdb\xa4\x58\x99\x52\x3d\x43\x37\x26\x4a\x79\x73\xdb\x4c\xe7\xc5\x79\xd7\xc5\xe9\xb3\x97\x69\x16\x0d\x22\x92\xb5\x24\xb6\x01\xd5\x61\x78\xd8\x29\xef\xf9\xb2\x17\x57\xe5\x44\x9e\x6f\x6b\x80\x59\x05\x71\xa3\x34\xb1\xdc\x51\x88\x19\x7a\x8d\xed\x1d\xdf\xa9\xf8\x75\xa5\xcc\x40\x34\x8a\x24\xc9\x29\xdd\x0f\xe3\x2b\xea\xe0\x8b\xed\xef\xf2\xc0\x80\xeb\x38\x2e\xf1\x32\x67\x34\x7b\x34\x23\x51\xe0\x03\x5e\x51\xa0\x83\x3b\x81\xcf\x9a\xeb\x2d\x7b\xd1\xf9\xf6\x26\x2e\x86\xd6\xf0\x60\xe3\xac\xe1\xfc\x32\xdf\xb4\xe8\xa4\x3d\xd7\x1d\xdb\x24\x8c\x58\x83\x10\x48\x3e\x96\xba\xc3\xa8\x5f\x51\xfe\xc6\x4d\xa5\xa6\x34\xb4\x26\x43\xb6\x58\x76\x9c\xee\xab\x54\xdd\x71\xb7\x15\x47\x38\xc7\x96\xea\xb4\x12\xf8\xc1\x0d\x7d\x8c\xc1\x58\xca\xb6\xde\xea\x1a\xcd\x1e\xed\x52\xcb\x88\x92\x6a\x01\x6e\x07\xdf\xc1\xd7\x8d\x24\x0f\x95\xa5\xd3\xbc\x60\x7b\xa4\x0b\xdf\xe2\xa9\xb5\xf5\x18\x66\x76\xe0\xf5\x99\x84\x59\x55\x4d\x5e\xb3\x40\x77\xe8\x50\x37\x8b\xc2\xd4\xf6\xa7\xb6\x34\x4d\x3b\x59\x79\x3e\x00\xe0\x9b\x3c\x50\xcb\x69\x58\x26\x05\x62\x38\x9e\x7f\xdd\xdd\xe1\x81\x9c\xe5\x38\xaf\x0c\xe6\x88\xac\x7b\x0d\xce\x2a\x39\xeb\x8e\x23\x2a\xb8\x4b\x4b\x05\x7e\xd9\x74\x43\xc3\x78\xf6\x68\xb7\x4c\xc2\x74\xc9\x66\xc2\xad\x8b\x53\xe4\x8c\x6a\x57\x3a\xa3\x00\xd1\x83\x38\xed\x99\x78\x5a\xa5\x0c\xef\xe1\x87\x11\x88\xa1\x8f\x18\x2e\x0f\x68\xdb\x44\x3c\x79\xeb\xca\x3b\x7c\xa0\x9b\x49\xe5\xb3\x1a\x59\x60\x91\x38\x33\xc9\x37\x93\x9f\xf2\xe5\x62\xc9\x57\x4b\x49\x0c\xbf\x81\x83\x8f\xaf\xdb\xd0\x61\xe1\xd0\x86\x8b\xd3\x5a\x00\x41\x29\x56\xc3\x0f\x14\x61\x84\x6a\xf9\xf2\xbf\x37\xdd\xea\x17\x8e\x74\xa3\xd1\x38\x8b\x46\x51\x3e\xa5\xe8\xd5\x61\x5a\xa5\xf9\xc5\x63\x1d\x4e\x7c\x2a\xd6\x67\x9c\xa5\xf9\xd8\x86\x40\xac\x71\x4c\xa1\x38\x40\xb9\x2e\x08\x2f\xeb\xae\xb2\xf3\x36\xc9\xd2\x38\x1e\xd5\x35\x8d\x4e\x4c\x54\x22\xf7\x84\xa2\x63\xcc\xec\x42\x1a\x96\xbe\xac\x21\x86\x5c\x5b\x78\x31\x4e\xbd\x2c\x2a\x8a\x98\x09\x57\x11\xd6\xfe\x6b\x45\x8c\x72\x8e\x5e\x51\x1a\x1e\xda\x70\x6d\x4b\xb6\xb0\x19\x2b\x5e\xfd\x7f\x65\x7c\x6a\x29\xa2\x16\x65\x3e\xea\x2d\x77\x6a\x54\x58\xcd\x67\x54\x35\xa6\x96\xc0\xb7\x05\xba\x11\x05\xa5\xb4\x16\xa8\x44\xe9\xda\xe4\x71\x07\xc3\x59\x99\x56\xf2\xbb\x81\x72\x01\xd1\x2a\xce\xd7\xf8\xb4\x3c\x9c\xf2\x1f\x4c\xdc\x33\xc2\x6e\x21\x41\x07\x4d\x13\xdf\xb8\xa1\x74\x3e\x92\xf2\x8b\xb4\xbf\xe4\x3b\x44\x16\x16\xa8\x73\x09\xa5\x24\xa4\x45\x5f\x57\x2c\xeb\xdb\x28\xaf\x00\x47\xe2\x81\xca\x0e\x7d\xd5\x8c\x98\x0c\x49\xa1\xfa\x84\x89\xe0\x8a\x03\x46\x2c\xa7\x69\xbf\x97\x45\xfd\x81\x9d\x22\x77\x1e\xcb\x1a\x44\x2e\xd8\x5b\x77\xb4\x2a\xe5\xb6\x19\x2d\xde\x1d\x9b\x08\xfe\x8f\xe7\x37\xf4\xbe\xf1\x99\x89\x6f\xde\x1b\x9b\x0c\x9b\x32\x29\xf2\x69\xdf\xb6\xc6\xf4\x6d\x52\xdd\x50\xcd\x19\x20\xec\x91\x8e\xc2\x9f\x56\xc0\x0c\x1b\x46\x0b\x51\x48\x1d\xcf\x39\x8c\x0b\xc8\x38\x2e\xab\x6a\xf4\x3b\x8a\xa4\x83\x53\x9f\xfc\x1f\x93\xcf\xd5\x1a\x0a\xe3\xd8\x86\x45\x69\x62\xc0\x80\xf0\xbe\xeb\x8a\xa6\xf2\x4e\x0d\x2b\xa1\x42\xce\xaf\xab\x49\x0f\x99\x2d\xa8\x7a\x16\x64\x1e\x4f\x4e\x5c\xb6\xf1\x57\xf7\x91\x9b\x86\xb7\xda\xbb\xfa\x54\xa3\x34\x36\x0e\x69\xc5\x31\x63\xa0\x6a\x30\x47\xed\xd7\x15\x4b\x3d\x05\xf8\x19\x97\xbf\x1c\xa7\x05\xb2\x97\x31\xfc\x61\xfc\xf1\x55\xc5\xca\x00\xce\x0d\x84\x7f\x9b\x35\xe4\x73\x5c\xf6\xa6\x54\xfe\xfc\xdc\x44\xb7\x4d\x21\x00\x40\x87\xca\x6d\x15\x4e\xc5\x69\x9e\xdb\xfc\x33\xb4\x35\xf1\x03\x8f\xcd\x28\x8d\x40\x24\x33\x30\x6b\xac\x2d\x81\x23\x96\x89\xd8\x70\x0c\x3c\x9c\x78\x85\xc0\x3d\xab\xaa\xe9\x64\x8d\xaa\x35\xc8\x0e\x9e\x98\xf8\x90\x9c\x29\x0b\xb0\x02\xd7\xd5\x36\x81\xe4\x05\x7f\x20\x50\x74\x4d\x8f\x81\x3c\x13\xc5\x9e\x7a\x62\xa2\x97\x96\xb5\x2c\xd5\x44\x65\xa9\x9c\xc7\x1e\x25\xfd\x6a\x8d\x71\xfa\x0c\xc3\xbe\x87\x26\x12\x38\x53\x24\xc1\x25\x8f\xd9\x6c\xb2\x7e\xa9\x1b\x8d\x46\x51\x22\x26\x18\x5e\x19\x9f\xd0\x7c\x53\x17\x17\x62\x01\x55\xe4\xfe\x71\x54\xf0\x75\x1b\x34\xb2\x67\xed\xd8\xa2\xe0\x09\xdf\xf8\x84\xf2\xbc\x3e\x81\xd7\x2a\xdc\x45\xfb\x5c\xe2\x2d\x8e\xe8\xec\x46\x11\x17\x90\x34\xb0\xff\xc2\x81\xe6\xf4\xa0\x68\x76\xf8\xa1\x28\x6c\xd2\x67\x62\x5b\x24\xb3\x1e\xc1\xe9\xa3\xec\xe7\x97\xb0\xbe\x6b\xfb\x19\x73\xf0\xc6\x44\xe9\x10\xeb\xbc\xf5\x8a\x35\x59\xfe\xa4\x2a\xc4\xfc\x11\x2d\x08\x64\x8a\xa6\x50\xc1\x92\x5e\x4f\x9a\x78\x78\x42\x97\xb1\xff\x9c\x1a\xba\x0b\x84\xd6\x00\xff\x02\x00\xe3\x6a\xd0\x99\x3d\xba\x79\x31\xe8\xfc\xd2\x2f\x3b\xee\xa1\x6a\x91\x28\x5a\xac\x97\x34\xb9\xc2\x11\x7e\xa7\x1b\x35\x79\xcb\x35\xaa\xcf\x39\xc7\xda\xc5\xa1\x9f\xc0\x46\x49\xd6\x54\xf5\xf4\xad\xa9\xa8\xbe\x4c\x42\x9b\x15\x26\x4a\xa6\x08\x95\x89\x65\x72\x13\xa8\x4c\x97\x56\x72\xf5\xc6\xed\x0d\x4f\xab\x5a\x3f\x99\xcd\x6d\xb6\x54\x97\xed\x44\x63\x38\x5f\xd7\x90\x5b\x9f\xcf\x3f\xbf\xcf\x17\x2d\x2e\x22\x03\xc4\x99\x6a\xfa\x29\x29\xeb\xd3\x10\x8a\x66\x82\x47\xfe\x9d\x9f\x28\xa0\xc2\xdd\x89\xaf\x6e\x6f\xc3\xf6\x46\xdc\x76\x1f\xc7\x1e\xfc\x99\x5f\x87\xff\x05\xbf\xe4\x63\xdd\xf9\xc2\x38\x47\xc4\x28\x37\x03\x0f\x66\x7c\xe9\x23\x1e\x64\xa1\x0f\xa0\x79\x73\x6a\x0e\xcf\xcf\x39\xe3\xda\x44\x10\xc4\xd6\x48\x13\xa6\x44\xe3\x34\xb8\x12\xa6\x37\x93\xa2\x00\x6a\xdb\x5c\xaa\x8b\x30\x38\xd7\x31\x83\x7c\xa3\x60\x0e\x95\xb7\x65\xc3\xb2\x48\xb3\x7c\x47\x35\xf9\x28\x6d\x4e\x91\x85\x61\xde\x61\xac\x46\x91\x94\x53\xbd\x14\x41\x2d\x7d\xba\xd5\xb7\x7c\x96\x40\x78\x4c\xd0\x21\xa2\xf3\xde\xa7\x3b\xa5\x12\x96\x07\xcc\x88\x08\xaa\xb8\x17\x57\x1d\x63\x7f\x8c\xc5\x26\x15\x87\x76\xff\xd5\x2e\xea\x1e\xcf\x13\xaa\xc7\xf3\x44\x9b\x6e\x4c\x94\x14\x99\xe9\x1b\xc0\xb2\xb0\xc9\x80\x63\x43\xeb\xc0\x49\x5d\xa0\x79\x43\x71\x0f\x84\x69\x92\x97\x71\x61\x04\x21\xa9\x84\x08\x1c\x0a\x9c\x67\x1a\x29\xbd\xd7\x6b\x84\x58\x4b\x96\xc8\x35\x66\xf9\x3f\xd1\xd9\x86\x73\x62\x9b\xd2\x30\xda\xb6\xaa\x98\x43\x6f\x12\xc5\x2d\x7f\x80\xbf\x1b\xc7\xf5\x43\xe5\xd7\x9f\x6c\x6b\x5e\xef\x45\x8c\x28\x41\xc2\xfd\x9a\x4a\xbe\x5f\x6b\x18\x57\xe2\x8a\x88\xd3\x64\x30\x5d\xad\x01\x94\xce\x4f\xd0\x7e\xc0\xca\x04\x6f\x04\xbc\xc0\x35\x32\x2c\xa2\x99\xee\x0f\x49\xf0\x40\x4d\x2b\xf6\x78\x34\x04\xc0\x47\x03\x50\x59\x6a\xfa\xb4\x18\x81\x75\xb8\xeb\x4c\xf5\x38\x4b\x47\xe3\x42\x54\x70\x90\x7e\x40\x06\x0d\xf9\xbe\x77\x34\xed\xc8\x9d\x40\xbc\x01\x93\xe7\x69\x18\x79\x2e\x18\x9c\xc9\x37\x94\x6e\xf7\x8d\x96\x8d\x65\xa2\x70\x18\x21\x87\x85\x8d\xfd\xdb\x13\x15\xb5\xfc\xb6\x6b\x1f\x59\xc8\xd2\xd1\x2e\x1f\x44\xc2\xaa\x82\xff\xeb\x2f\x6a\x39\xde\xc7\x57\xab\x99\x72\xe9\x62\xa7\x3a\x7e\x02\x67\x03\x86\x8e\xeb\xf0\x42\x29\xe2\x50\x69\x26\x4b\xe3\x28\x31\x53\x9a\x42\x0b\x31\x8f\x48\xe7\x2a\x56\xaa\x87\x8d\xaa\x17\x75\x4b\x55\xcb\xb2\xfa\x59\xa9\x05\xd1\x2f\xc1\xc9\x61\x03\x86\x65\xa4\xd9\xdb\xe5\xbc\xa7\x92\x85\xeb\x16\x77\xee\xf0\x95\x9a\xe1\x55\xd9\x9e\x4d\x7c\x3b\xdf\xa8\x5a\xc9\xb2\xb5\x8b\x96\xe4\xc1\xbc\xa2\xea\x3a\x08\x92\xa4\xd1\xd3\xf7\x81\x8e\x63\xaa\xdd\xa4\x40\xff\x23\xe1\xf6\xa1\xc2\x57\xdc\x22\x3e\x08\x41\x01\x7a\xf2\xe9\xbe\x71\xfa\x8d\xec\xba\xea\x66\x9d\xf5\x56\x76\x96\x7e\x15\x09\x8d\x9c\x98\xce\xbc\xe3\x2d\xaf\x11\x48\xfc\xe5\x4f\x63\x29\xb0\x89\x05\xa3\x57\xc7\xe3\xe6\x99\x7e\x85\x6f\x3e\x15\x6f\xbf\xac\xfa\xa0\x60\xb5\x99\x48\x9c\x6f\xda\x1c\x9d\xc4\x64\x59\xba\xdc\x51\x87\x2e\x42\x67\xe1\x93\x68\x69\xcf\xb1\x26\x2b\x86\x5f\x2b\xcd\xa2\x0c\x8d\xe3\x80\x73\xfb\xe7\x6c\x1b\xe9\xa7\x59\x5e\x04\xbe\xd5\xa3\x25\x29\x1c\x75\x7b\xfd\xd0\x21\xae\xfd\x6c\x28\x8c\x4e\x91\x01\x88\xac\x18\x52\x44\xe7\x7f\xc7\x4c\x5d\xd8\x93\x8c\x29\xe3\x9f\x15\xba\x7d\x1c\x25\x8b\x36\x2b\xd2\x64\xa7\xf7\x68\x6e\x6b\x32\x69\xe0\x61\xb8\x7b\x1b\x23\x26\xfd\x39\x74\x9a\x63\x3f\x4e\x83\x3c\x9b\x6f\x66\xbc\xc6\xe8\xd0\x14\x23\x49\xf4\xc1\xd1\x3b\xa7\xa9\x96\xce\xa9\x3c\x5d\xaf\x0c\x17\x31\xd6\x22\x51\xe6\x33\x3b\x77\x5a\x85\x8a\xc7\xae\xb3\x51\xc0\x70\xea\xe3\x2c\x07\x8c\x83\x65\x43\x01\x6c\xf2\xc2\x8e\xf3\xdd\xf4\x10\x78\xdf\x9b\x13\x2f\x4e\xfc\xc1\x44\x51\x92\xb1\x5f\xc1\x37\x08\x03\x10\x75\xbf\x41\xdb\x13\x7b\x1c\x61\x80\x30\xa1\x54\x31\x84\xe4\x23\x15\xcf\x42\x96\x0e\x84\x8d\x04\xc1\xd8\x29\x85\xac\x3b\xd5\xd6\xd4\x10\x25\x7d\xfb\xb2\xd4\x46\x59\x3a\x43\xcd\x45\x93\x8e\xcb\xed\x92\xac\x4c\x52\xc5\x80\x7b\xa6\x16\xbd\xa9\x14\x99\x09\x4d\x3f\x32\x53\x2a\xcb\x70\x59\xb7\xb7\x4a\x29\x52\x50\x83\xf2\x36\x26\x09\x87\x69\x36\x32\x30\xf3\xc2\x5b\x5d\x8d\x01\x5f\xbb\x00\x91\x10\xca\x49\xe1\xfb\x61\x5d\xd2\xcf\x41\x3d\x2f\x79\xdd\x1d\xd2\xa3\x75\xd0\x10\x18\x35\xa4\x64\xf9\x5a\x19\xb8\x41\x66\xf2\xb1\x14\x83\xa5\xf5\xcc\x03\x97\xb5\xbf\x3f\x8a\x92\x41\xda\x51\xbd\x04\x5c\xaa\xe1\x9b\x3a\xd3\xec\x72\xac\x78\x99\xe1\x8d\x08\xe3\xc4\x67\xfd\x39\x67\x47\xbd\x98\xab\x24\xba\x3f\x6d\xf3\x2a\xbb\x06\x08\x15\x3f\x9c\x78\xcc\xe5\x55\x05\xbb\xfd\x4b\x44\xb6\x44\xeb\x32\xda\xbf\xaa\x0a\xdc\xc3\x68\xbc\x62\x32\xb6\x51\x4e\xed\xdd\x13\xbe\x37\x78\x9f\x7e\xb1\xda\x02\x8c\xa2\x96\x7e\xba\xea\x77\xf0\xfb\x6f\x62\x29\xe3\xec\x39\xa5\xc5\x42\x44\xb0\xaf\xfa\x6e\x20\xa8\x81\x3a\xe4\x6b\x55\xb1\x30\x79\x1e\x0d\x12\x61\xfc\x9a\x73\x7a\x66\x1e\xb6\x75\x8d\x66\x1e\x35\xd5\xa6\xc6\xb9\xac\xc9\x74\xd0\xb7\x40\x16\xe3\x54\xbd\xa6\xd3\x41\xd7\x54\x23\x42\x1e\x46\x1d\x55\x49\x43\xd4\xcb\xd7\xab\x4a\xf8\x86\x9a\x72\xf2\xa9\x6a\xb7\x09\xf7\x14\x6d\x4f\x77\xf2\x3f\x2f\x44\xdd\x0f\x1a\xe6\xf6\xf0\x81\x6e\x34\x02\x9a\x43\x21\x37\x1f\x2a\x88\xec\x79\x0c\x1d\x5c\x8a\x6b\xaa\x76\xde\x33\xc9\xd7\x4a\x31\xed\x48\xc6\x7f\x0f\xaf\xc2\x37\x2a\xb5\x99\x97\xbd\x38\x1a\x45\x09\xf8\x27\x79\xb8\xee\x07\x0a\xc4\x7c\x45\x45\x9e\xe7\x5c\xed\xaa\x88\xfa\x26\xd6\x00\x95\xf7\x94\x12\x3f\xc4\x34\xe0\x94\x3f\x68\x88\x5f\x80\x03\x70\x64\x92\x3e\xe5\x5f\xe9\xc1\xe0\x43\x3c\x52\xc4\x69\x8f\xda\x0e\xae\xcc\x52\x72\xbd\x09\xcd\x72\x9c\x62\xeb\x6d\x7c\x19\x2b\xd6\x0c\x29\x66\x80\xdf\x00\x6e\x2a\x51\x68\xa2\xdf\x97\x68\x55\x83\x34\x93\x82\xb2\x13\x68\x15\x90\xe4\xde\x9d\xda\xee\xd1\x32\x4e\x14\x4a\x89\x96\x13\x9a\x88\x61\xe3\x39\x15\x00\x8f\xe3\x96\xca\xe5\x7e\x1b\x91\x36\xe3\x62\x02\x45\x0f\xf8\xfb\x81\xfa\x49\x49\x3b\x09\x67\x40\xa7\xd6\x1b\xe9\x03\xdc\x32\xcf\x77\x29\x29\x99\xb3\xa8\x4d\xc2\x3d\xe2\x38\x85\x95\x22\x02\x95\x6e\x3d\x57\x87\x48\xcc\x09\x59\xf3\x25\x56\x54\xe5\xcf\x07\xde\x15\x8b\xcb\xde\x8a\x49\x16\x4d\x9d\x41\xba\xfa\x7a\xcf\x20\xcd\x7f\x69\x4d\x3f\x5d\x58\x50\x74\xf3\x27\x15\xba\xf9\xa4\x22\xed\x8b\xcb\x5e\x16\x85\x26\x29\x98\xaa\x0d\x75\xb9\xdf\xa0\xe7\xe1\x6b\x5d\xda\x8c\x17\x32\xdb\x4f\x3b\x1e\x70\x80\x6c\x22\x5f\x2b\xda\x35\x53\xfc\x05\x72\x00\x10\x75\x9f\x20\xc6\x08\x87\xb0\x99\x9f\x3d\xca\x03\x79\xba\x7a\xac\xcd\x8b\x08\x97\x71\x06\x3d\xd4\x54\x9d\x8f\x91\x82\x0c\x06\xec\x94\x56\xbc\x7b\x48\xe9\x38\x87\x40\xf2\xc2\xc0\x81\x47\xd7\x5f\xd6\x63\xcf\x8d\x32\xe2\xdc\x61\x8c\x11\xf9\x9f\xd7\x54\x54\x97\xe8\xb8\x67\x89\x60\xcc\xa4\x2c\x0d\x95\xab\x40\x76\x80\xdb\x5d\x02\x7d\x12\x7e\x04\x1c\x3a\xfc\xf4\x8f\xe0\x82\xe3\x7f\x36\x68\xa8\x90\xa3\x7b\x0d\xf1\xa8\x38\x26\x7a\x35\xf5\x6d\xfe\xb9\x6a\xae\x10\xb1\x3f\xc6\xc7\xac\xc8\x17\xd1\xa0\xea\x4e\x7d\x0c\xfd\xa3\xc0\x53\x06\x9e\xa6\xfc\x90\xac\xc5\xca\x4d\x44\x35\xe4\x36\xe0\x36\x4e\x44\xb8\x1a\x1b\x0c\xc7\x1b\xc4\xe1\x8a\xa3\xe0\x11\x5e\x8d\x35\x78\x74\xab\xd6\xd4\xaa\xe2\x4c\x80\x06\xa4\xd3\x7c\x3a\x26\x79\xdc\xab\x13\xd5\x14\x72\x0b\xaf\x8f\xcc\xea\xae\x99\x8e\x43\x2b\xee\x02\xa6\x5f\xe0\x4a\x34\x33\xf0\x1b\x59\x6e\x53\xf8\xb7\xc8\x6a\x0b\x4c\x4b\xb5\x47\xc4\x29\x8b\x0c\x28\x46\x86\x8e\x92\x62\xdf\xaf\x4a\x91\x19\x2d\x70\xbb\xbb\x1a\x54\x95\x76\x17\x0b\xcd\xdd\xb4\x30\xc0\x78\x2d\x4c\x32\x8b\x17\x4a\x06\x5f\x49\x13\xdd\x0f\x54\x64\x05\xc0\x1c\x12\x2f\x97\x54\xba\xe4\xf9\x83\x7f\xde\xa6\xad\x27\x5c\x16\x74\x54\x66\x5c\x47\x74\xe0\xb1\xea\x0f\xa5\x85\xfb\xa9\x3a\xeb\xd4\xe1\xf9\xee\xa1\x43\xe4\xe1\xa3\x6a\xf9\x16\x89\xe5\x08\x0d\x64\x1d\xd3\xeb\x14\x37\x4e\xb8\x16\xb6\x71\x16\x09\x93\x28\x9e\xe4\xac\xa7\x5a\x7b\xf6\xe7\x80\xac\xc1\xce\x03\xb6\x96\x1b\x2f\x69\xb3\xe1\x9d\x9e\x40\x82\x1c\x7e\xf2\xe5\x89\x67\xcf\x6d\xb2\x9c\x1f\x3b\xd0\xcd\x8b\xb2\xef\xa5\xcc\x39\x3f\x4d\xdf\x26\xb9\x6a\x55\xbe\xb1\xa3\x9e\xcd\x72\xa2\x6e\x44\x68\x0b\x6d\x3c\xac\xc4\x77\x34\xc1\xcf\x1d\x00\x8c\xb0\x7c\xbe\x3e\x51\xa4\xe2\x3c\x4d\x6c\x3d\xe8\xe5\x70\x0e\xdd\x0a\xba\x2d\x6d\x93\xe9\x68\x54\x26\xae\x7a\x83\x6d\x07\x9f\x87\x61\x24\x48\x76\x68\x89\xa7\x6b\x81\x8a\xa9\xfe\x47\xad\x9a\x1a\x0d\x12\xdb\xdf\xa1\x68\x53\x61\xe2\x6b\xdc\x77\x4c\xa0\xac\x14\x0d\x7f\x5d\x97\x22\xf6\xaa\xb4\x0d\x75\x11\xc5\x3b\xf1\x50\xe2\xb9\xf8\xaa\xef\x0d\xb8\x37\x9c\x3b\x50\xa7\xec\xeb\x64\xf6\x25\xa7\xa0\x8a\x4d\x6b\x0d\xef\x40\x9c\xb1\xcc\x96\x3d\xf6\xc6\x90\xa6\xe7\x08\x81\x6f\x2a\x6f\xcc\x11\x17\xae\x4c\xeb\x76\x5f\xbc\x15\x86\x0c\x95\x3f\xce\xaf\x63\x23\xc1\x0a\x6e\x5b\x6d\xc1\x19\xc4\x36\x11\xed\x05\x07\x7b\xa9\x7e\x53\xa0\x2e\x4f\xaa\x16\x83\x6c\x90\xc6\x11\xbc\x53\xa9\xa5\xd2\xdf\x4a\x91\xd5\x9f\x56\x0b\x51\xe2\x84\x65\x59\x4e\x4a\x89\x0e\xdc\xc3\xc7\x58\x09\xbb\xe1\x06\xce\xcd\x75\x4d\x7f\x29\x72\xc4\x45\x32\x6c\xba\x34\xab\x80\x31\x26\x2c\xd2\xac\x56\x30\x55\x4d\x64\x94\xca\x95\x02\x78\x6c\x43\xa2\xa0\x2a\x56\x10\x9c\xe2\xec\x86\xee\x94\xa6\xb1\x95\xee\x29\x57\xdf\xb6\xc6\x97\x5a\x05\xb3\x50\xfd\x21\x12\xa2\x90\x2f\x92\x52\xc7\x3e\x15\x37\x94\x0b\x0b\x5c\xcb\x65\x07\x23\xf0\xcd\x85\x97\x54\xf7\x46\x96\xe6\x2b\x1d\xda\x4b\x8e\x48\xa8\xb2\x44\x7c\xa3\xb2\xa4\x59\x5a\x16\x76\xa7\x5a\xdb\x1f\xd3\xde\x42\xb4\xfa\xad\x89\x5f\x71\x8f\xcf\x28\x4c\xc5\x79\xdd\xfb\x8e\x03\x5f\x6e\x9a\x00\xef\x23\xdd\x9e\x09\x17\x17\x22\xc7\x04\x0c\x97\xf8\x9c\x2e\x03\x9d\xd3\x1c\xb2\x03\x29\x67\xc1\x6f\x78\x17\x6b\x91\x6f\x3e\x55\xce\x2d\x1c\x9a\x64\x20\x51\x34\xfc\xc4\x0f\x03\x95\xa6\xfa\x50\xf3\xb3\xd3\xc3\x54\x2f\x0a\xe4\xc1\x34\x0d\x38\x5f\xaf\xba\x4a\x56\x94\x67\xe5\xd8\xb5\x23\x22\xb5\x89\xe0\x01\x35\x33\xad\x0a\xb6\xa4\x39\x07\xed\xa8\x97\xf6\xd1\x5a\x01\xeb\xca\xc9\x3c\xbe\x69\x11\xcf\xec\x2e\x58\x56\x0a\x72\xe2\x31\xd5\x07\xc4\xde\x7c\x9a\x92\x5c\x1e\xbd\xbc\xb3\xf3\x65\xc1\xda\xff\x2a\xcd\x9d\x6c\xb4\xca\x84\x63\x11\x3e\x06\xd5\x2b\x84\x4f\xe8\x93\x95\x4e\x4f\x05\xc5\xba\xd0\x48\x8c\xcd\xcd\x75\xd3\xb1\x4d\x64\xde\xb0\xef\x6e\x69\xf1\xcd\x5b\x2a\xab\x53\x98\xb1\x9d\x56\xcd\xfb\x08\xfe\xf9\x9a\x7c\x1a\xac\xee\x0b\x8a\x35\xe8\x42\xf0\x53\x4d\x59\xc9\xf9\xc3\xf3\x3b\xab\x3f\xc7\x69\xcd\x59\x3f\xa9\xff\x54\xa7\x88\xb4\x0c\x56\xbe\x11\x4e\xc2\x6f\x4f\x7c\x07\xe4\x7f\xc4\x51\x81\xed\xf3\xbf\xb4\x19\x83\x38\x4d\x47\xee\xf0\xd2\xe1\xb4\xf0\xd6\xb4\xc8\xf1\x12\x78\x45\xb1\xad\x5f\x85\x21\x44\x3c\xf1\x43\x7a\xac\x66\xce\xed\xab\x76\x61\xc1\x66\x79\xad\xd5\xf6\x24\xfd\x92\x28\xd1\xfc\x95\x4f\x5f\xcd\x51\x36\xe6\xcf\xba\x36\xb5\x33\x9a\x38\xa3\xa9\xb6\x43\x3a\xf0\xd1\x60\x08\x0d\x49\xc4\xd2\x1b\xca\xd5\xe5\xe9\x16\xda\x97\x27\x75\x87\x4f\x8e\x3a\xc0\xe1\x79\xcf\xf8\x5f\xad\x19\x60\xe4\x4f\x28\x65\xfb\x47\xca\x82\x9b\xa4\x88\xe2\xd8\x0a\x98\x12\xbe\xcd\x55\xed\xe8\x5c\x6d\x5b\x54\x55\xb0\x2c\x1c\x34\xc8\xb2\x7d\x30\x51\xcc\x35\xb7\x03\x5f\x02\x6e\x2e\xfd\xea\x25\x0d\xe1\x95\xf2\x1a\x90\x28\xd0\xdd\x34\x6a\x55\xda\xbc\xd8\xed\x01\xe0\xd7\x03\x8f\x0a\x99\x87\x47\xcc\x94\x3d\x4a\xf9\xe3\xbb\x2a\x08\x79\x1f\x3e\x34\x76\xee\xaf\xc0\x09\xc6\x52\xfc\x33\x1c\xd4\x42\x1e\xd3\x5c\x67\xf3\xdd\xbc\x30\x03\x98\x8f\x59\xc7\x83\xaf\xa0\x94\xa7\x6a\x84\x7b\x0a\x46\x94\x0f\x4d\x66\x89\xe2\x13\x93\x78\x17\x19\x58\x41\x29\xf8\x0e\x4b\xb8\x79\x28\x1f\x4d\x83\x64\x93\xff\x08\x4f\x8a\x95\xb2\x63\xb5\x9a\x57\xd4\xad\x19\xe5\xe9\x62\x82\x39\xa7\xfb\x78\x93\xf6\x25\x9f\x46\x81\xaa\xfc\xb0\x54\xa4\x56\x01\x96\x5e\x48\xdf\x5f\xbc\x06\xff\x1e\x8f\xf2\x16\x4c\x36\x0b\x25\x07\x3e\x56\xda\xb1\xda\xd2\x00\x44\x94\xc4\x85\x8d\x63\xd3\x51\xc0\xfb\x3a\x73\x6c\x1b\xe1\x99\xc9\x7a\x86\x31\xe7\x52\x8f\xf6\xcd\x75\x17\xdb\xd2\xfc\x85\x89\xe9\x6c\x71\xe9\x43\xf0\x2f\xc9\xc6\xf5\x21\x6f\x39\x7e\x5a\x69\x54\x5c\x26\x67\x5c\x70\x12\xd5\x02\x82\xdb\xf1\xbf\x63\xf8\x84\x87\x9b\x86\x9f\x55\x90\x02\x8f\xcf\x66\x25\x1e\x18\xc2\x47\x58\x34\xca\xf7\x7d\x4e\x3a\x1b\x26\x1e\x0e\xb4\x8b\x42\x65\xe6\xc7\xd1\xfd\x95\x6b\x58\x08\x88\xcf\xee\xaa\xee\xf0\x97\xc9\x39\x14\x30\xf0\x94\x57\xbf\x3b\x83\xb8\x17\x33\x79\x9f\x02\x62\x26\x84\xe5\xdc\x04\xff\x0f\x4d\x2b\x42\xb5\xa6\x5c\xf5\xdc\x1c\x81\xba\x63\x3b\x92\xe1\x73\xba\xae\x2e\xd1\xf7\x7b\x8d\xd4\xf6\xe1\x03\x5d\x9b\x0c\x0d\x09\x8c\x1d\x3b\xe0\xba\x49\x68\x60\x85\x3c\x76\xeb\x24\x1d\x3f\x0e\x3e\xae\x44\x95\xd6\x50\xb8\xd5\x95\xa7\xcd\xd3\xce\x3f\x5f\x48\x33\x3b\x4a\xf3\x62\xda\x23\x9e\x41\x67\xca\xd7\x4a\x2e\x89\x7d\x57\xe9\xc6\x73\xe9\xe8\x28\xcc\xd2\x3c\x5d\x28\x70\x78\x61\x9a\x5f\x53\xc0\x89\x2b\xaa\xbf\xf3\x8a\xae\xbc\x6c\x9f\x51\x78\xfa\x28\x66\x74\x17\x4b\x42\x06\x1e\xef\xba\x86\x0f\x89\x56\xa4\x0f\x84\xd6\x34\x29\x9a\x8d\xe3\x3d\x3e\x7c\xf8\x87\x0a\x19\xa5\x28\x96\x8a\xcf\xcd\xa8\x3e\xea\x8b\xb4\xcc\x14\x71\xa4\x54\x27\xd8\xcc\xc0\xe6\xac\xd1\xda\x80\x10\xcc\xe7\x10\xf8\x73\x79\x3f\x50\x8c\x22\x2c\xfd\x2b\x39\xd6\x96\xce\x36\x8a\xf8\xe0\xb3\xe2\xe7\xd1\x4c\x89\xa9\xbc\xeb\xa1\x68\x3f\xfb\x6e\x83\x51\xf1\xd9\x6e\x61\x92\x45\x38\xc9\xba\x67\x4c\xd4\x20\x15\x59\xef\x87\x2a\xee\x36\x71\xfc\xd3\x95\x17\x0b\xf6\x0e\x06\x95\xf2\x86\xa0\x13\xf4\x6f\x3c\xb5\xda\x39\x78\xd0\x0b\x4d\xcf\x3b\xb6\xe0\x9f\x85\x35\x94\x8e\x4a\x1c\x50\x8e\x2b\xeb\x2b\x5f\x64\xa8\xf4\xfb\xfa\x0c\xb8\xa2\x6a\x7e\xb7\x54\x9e\x7c\x3b\xb0\x42\x48\xbd\xec\x5a\xad\xf6\x26\x9c\x80\x0f\x74\x86\x84\x58\xb1\xe6\x19\x51\xf4\x06\x9d\x33\x30\x93\x7f\x7d\xa6\xf3\xa5\x23\x4e\xbe\xcd\x4b\x9f\x3f\x36\xe3\xeb\xfa\xbb\x56\x15\xe8\xe8\x3c\x65\x7a\x9c\x7b\xed\xf9\x6b\xb8\x99\x0c\x69\xec\xc7\x57\x95\x3c\xf0\x30\x1d\x4d\x2b\x26\xe5\x4b\xf5\x66\x2a\x7a\x7c\xbe\x09\x7c\xeb\xfd\x25\xe5\x12\xaf\x98\xac\x9f\x4f\x7b\x10\x1f\x38\x47\xf9\x5a\x21\xd2\xcf\x93\xd7\x25\xe9\x16\xdf\x3a\x27\xf4\x93\xd5\xb7\x8b\x02\x59\xf5\x6d\xa2\x39\xe6\x51\x1d\x43\x9b\xf5\xa2\x30\xea\x5b\xa6\x9d\x14\xfe\x42\x0f\x60\x3b\xd5\x24\x20\x99\xed\xe6\xcb\x51\x8e\xf8\x0f\x96\x00\x49\x18\x71\x35\x55\x58\x7b\xab\x61\x88\x7e\xb1\x3b\x4a\xb3\x62\x40\x12\xca\xbe\xcf\x63\x83\xa6\x02\xa3\xfc\x8e\xc2\xb5\x6d\x6b\x00\xc3\xe7\xe6\xba\x61\x99\x17\xe4\xd2\xcf\x49\x8e\xe4\x8d\xc0\xd7\x51\xdf\x68\xf3\x72\x28\xcb\xce\x29\x20\x4a\x9d\xbe\xba\x7f\xc6\x33\xed\xbd\xba\xbf\xa1\xa7\x46\x84\x9c\x4b\x36\x71\xbb\x0c\x93\x0e\x2d\x00\xbc\xe8\xfd\x40\x71\xf3\xfc\x3f\xbe\x50\xd7\xaf\x7e\xca\x64\x2b\x8a\x01\x6a\xbb\xd2\xab\xd8\xbe\xea\x7d\x8b\x5e\x19\x0b\x17\x2a\xfc\xe5\xb7\x10\x1b\xf2\x8d\xaa\xa7\x2d\x9a\xe4\xab\x51\x9d\x59\xc6\xa7\xcd\x37\x6b\x62\x83\x3e\x78\x26\xcf\x6c\x47\x35\xb2\x48\xc9\xbf\x05\x47\x44\x44\x7b\x7d\x84\xf3\x99\x19\x5f\xeb\x60\xb2\x73\x0c\xe6\xb6\xd5\x4f\xed\xf7\x1a\x46\x36\xcb\x56\x80\x27\x80\x43\xc1\xba\xea\x7c\xd3\xaa\xc8\xd4\xb3\xa1\x29\x73\x3b\x5d\x6d\x36\xb8\x53\x9f\xd0\x81\x82\x60\xf8\xa6\x6a\x08\x5f\xc7\x46\x91\x44\x9b\xe2\x8e\x0e\xd3\x24\x65\xd6\xb2\x97\x3c\x06\x51\x77\x9a\xd0\x30\xc1\xde\x5e\x56\xcd\x4d\x4c\xb5\xce\x29\x5f\x32\xc4\xdc\xa1\xb8\xea\x79\xd3\xaf\x91\xb1\x90\xca\xbb\xef\x0b\xba\x81\xe7\x91\x3c\xbe\x4a\x34\xfd\x86\xce\x5a\xbe\xa7\x1a\xcb\xd2\xac\xb0\x03\xb3\x53\x15\x76\xd0\x48\xed\x44\x4f\x2a\xa3\xe8\xd4\xe5\x2b\x93\xc3\x37\x13\x1d\x9a\x2b\x12\x83\x73\x2a\x13\xd6\xa7\x5c\x58\xc7\xf1\x01\xfe\xd3\xdf\x54\x44\x31\xbf\xe9\xc0\xed\x7d\x07\xac\x81\xc5\x3c\xad\x66\x7d\xcf\x8c\x4a\x10\xef\x5c\xf5\x21\x48\x99\x40\x9a\xbe\xa3\x29\x4e\x3a\x9e\x4e\x2b\xd0\x2b\x38\x8a\x11\xe2\x60\xf1\xe8\x74\xc9\x71\xac\x07\x18\xd5\xa9\xd5\x16\xee\xce\xaf\x95\x51\xb8\x08\xee\xce\x79\x2f\xc6\xe2\xe5\x24\xa6\x55\x72\xf7\xbe\xaa\xae\xf4\xa3\xbc\xc8\xa2\x5e\x09\xf0\xce\xe6\x09\xd8\x65\x1c\xca\x50\x1e\x53\x9a\x58\x52\x00\xb9\x00\x3b\x2c\xd4\xb2\x5b\x97\xe7\xc1\x83\xdd\x32\x59\x4c\xd2\x65\x11\x71\x10\x91\xb0\xea\x88\x11\x3c\xc7\x1e\xfe\x50\xf7\xc5\xf9\x9f\x07\xcf\xad\x2b\x89\x78\xc2\x21\x5e\x8d\x08\x25\x98\xf2\xc6\xa1\xf3\x8e\x1d\x70\xc4\xe1\x9e\xf0\x1e\x40\x15\x9c\xfd\xc8\x7f\xb0\xf9\x0c\x54\x5b\xf6\xd9\x7a\xd1\x7c\x69\x85\x42\x29\xec\x36\x8e\xf3\x98\x79\x3c\xa8\x95\xa6\x5d\x52\xea\x75\xcf\xdb\x7b\x66\x63\xa2\x8e\xd1\x8f\xb0\xe0\xf8\x86\x5e\x58\x38\xcc\x5b\x7a\x30\x46\x86\x44\x82\x50\xb3\x47\xea\xe0\xbe\x42\x10\xde\x6f\x6b\x78\xea\xdb\x41\x66\x11\x1e\x48\x67\x9d\x87\xb9\xad\x29\x3b\x67\xaa\xbf\x9b\x52\x35\x28\x1a\x25\xec\x98\x0f\x15\xdd\xf6\xa9\x86\x79\x79\xb6\x9b\x97\xc4\x8a\x27\x29\x12\xd7\x83\xe8\xfb\x11\x1b\xa7\xd1\xdc\xdc\x11\x42\xdd\x26\x2c\xc5\x25\x88\x0f\x1a\x1c\x81\x7c\x6c\xc5\xef\x1f\x3a\xd4\x7d\x66\xaa\xf3\xcc\x33\x92\x41\x07\xf2\x56\xd2\x5c\xaa\x29\xdb\xb5\xda\xbe\x32\x34\x29\x0e\x58\x17\xb8\x1d\x3e\xa0\x55\x3f\xe5\xe0\x36\xc5\xd0\x66\xe8\x48\x16\x1f\x85\xd6\x92\xe8\xd0\xd2\x8b\xc9\xdc\xd0\x43\xca\x94\xb7\xd0\x1c\x16\xcb\xd6\x2c\xba\xdc\x0a\x60\x22\x1b\x4a\x83\x71\x43\x25\x8c\x96\xa3\x7c\x08\xdc\x1a\xf6\xee\xe9\xc0\xef\xe3\xd3\x4a\x17\x2e\x2d\x8b\x65\x93\x89\x4c\x22\x5c\x92\xdb\xca\x3d\xb9\xed\x69\xc5\xcb\xac\x7a\x99\xcf\x7a\x39\x19\xac\x78\x4c\xeb\x4e\x30\x36\x79\x59\x77\xd7\x99\x4b\x5f\x46\x23\xff\x5f\xfe\xb5\x19\x1f\x08\x7d\x8e\x9c\x4b\x96\x7d\xa3\x6d\x84\xb8\x6d\xef\xaa\x4a\x03\x80\xfa\x49\x51\xe7\x89\x60\xcb\x26\x79\x71\x52\xd1\x22\xc3\x0b\x47\xf1\xff\x0f\xaa\x55\x54\xa9\x2e\x4c\x54\xe3\xf5\xa6\xca\x01\x50\x5f\xe0\x13\xf4\x31\xec\xf7\xb5\x49\x0d\x9e\xa6\xd6\x0e\x74\x47\x25\xfb\xdd\x71\xcd\xb4\x6f\xd2\xa3\x61\x27\x13\xde\xfd\x39\x29\x86\xd2\x5a\xe0\x2d\xae\x14\x9f\x77\x11\xbf\xab\xcf\x2d\x3f\x2f\x65\xc1\x6d\x70\x4f\xf9\x41\x68\x79\x0b\xca\x41\x53\xd0\x8f\xa2\xc2\x41\xef\x84\x16\xdc\xef\xd2\x6b\x8a\x9b\x90\xdb\x92\xa8\x47\x07\x76\xe7\x75\x78\xef\x7c\x43\x6f\xc1\x85\x57\xa5\x4f\xf4\x91\xea\xcf\x1e\x47\x79\x91\xc6\x58\x68\xf8\x01\x74\x08\xf2\x75\x43\x61\xfe\xf0\x81\x6e\x9e\x8e\x87\x51\x5e\x10\x04\x93\x1f\x93\x89\x46\x55\xae\xf2\x4e\xe0\xfd\xea\x22\x8d\xf9\x17\x90\x8e\xfa\x33\x95\x9a\xfa\xb3\x46\xd9\xa5\xda\xd9\x79\x98\x99\x51\x2f\x76\x5b\x40\xa8\x8e\x7d\xd0\xbc\xae\xe4\xa7\x93\xb0\xcc\x32\x49\x77\xbb\xd1\x75\xbd\xa9\x6b\x00\x61\x4a\x35\xb9\xaf\x8c\xd9\x3b\x58\x37\x7c\xd3\x02\xc1\x9c\xef\x46\xc9\x42\x9a\x8d\x3c\x4e\x17\xd6\x99\x95\x62\xf9\x46\x65\xca\xb2\xa8\x30\x8a\x4b\xa0\x0e\x08\x79\xdc\x0d\xc9\x3f\x78\x82\xd6\xb8\x02\x10\x8a\xf0\xda\xf9\xc0\xd7\x91\x2f\xd3\xbe\x93\xc2\x44\x35\x81\x2c\xce\x16\x28\xaa\xd6\x7b\xb0\x2d\xd2\x41\xae\x94\x0b\xbe\x05\xb7\x89\xe5\xa1\x02\x25\x3e\xfa\x1d\x5a\x7c\xd8\x2e\xff\x44\xcd\xda\xf7\x61\x9a\x44\x2c\x6d\x6b\x00\xf1\x0b\xdd\xc2\x44\xcb\x86\x85\xaf\xf0\x57\x27\xe8\xd4\xe1\xeb\x1a\x59\x42\x1c\x9b\x31\x83\x86\x9e\xf3\xca\x9f\x87\x0f\x30\x40\x10\xb3\xc9\x55\xca\x40\x4a\xbe\xa3\x95\xdc\xc6\x0b\xba\xb1\x13\xba\x6e\xae\xc7\x7b\xfe\xb0\xe4\x5e\x9f\x22\x23\x03\x7f\x63\xe7\x6a\x4b\x35\x60\xd9\x2c\xe1\xe4\x92\x9e\x5b\x5f\x0e\xd1\x15\xb4\x74\x31\x36\xc3\x74\x64\xe0\x3c\x70\x4e\x80\x06\x45\xf2\x03\x7e\xc7\x11\x9b\x66\x32\xa0\x14\x85\xe3\x67\xaf\x86\x1f\x37\xf7\x14\x4d\xfa\xef\x04\x4a\x21\xc4\xc3\x95\x06\x59\x34\x1a\x91\xdf\x85\x8a\xc7\x75\xb2\x22\x88\x45\x2e\xe8\xee\xc3\x77\x6b\x5e\xc3\x20\x4a\x88\xe6\x43\x98\x0b\x6a\xad\x36\xd5\xca\xe0\x6b\xdd\xb4\xcb\x6e\xbd\xab\xf4\x1d\x16\x5a\x25\x64\x3c\x58\xc6\x2b\x50\x4a\x63\xb7\x55\xe9\xfe\x4f\xe8\x5d\x58\x2d\x16\x2f\xc9\xbd\xb1\x54\x14\xc1\xa9\x79\x2d\x50\xd9\x88\xb3\x8d\x7a\xfc\x81\xee\xec\xd1\xa7\x3c\x3f\xc3\x8e\x55\x2f\x84\x71\xe2\x67\x60\xff\x71\x18\x5c\xc7\x8a\x46\x4c\xc9\xfc\xa2\x30\x56\x1b\x94\x1e\x85\x9d\xfc\x4d\xec\x3a\xc9\x8f\xa8\x45\xf2\xbf\x91\xf3\x0f\x7f\xf3\x12\xb2\x11\x4c\x6f\xab\x54\x34\x3e\x33\x43\xe7\xa4\x98\x78\x42\xd5\x88\x8d\xa7\xf7\xc3\x88\xec\xa1\xca\x23\x10\x53\xd3\x94\xf4\xd5\x24\xd9\x98\x35\xd6\x62\x92\xf6\xfb\x6a\x40\x80\x41\x99\x6e\x0d\x48\x87\xd2\x88\xed\xe9\x31\x6f\x4f\x14\x47\x51\x93\xb6\xf8\xe0\xc1\x6e\xdf\xe6\x36\x43\xa2\x50\xd0\xda\x1a\xc6\xdd\xa2\x85\x34\xb6\x49\x68\x6b\xd2\xca\x13\xdf\xce\x78\x25\xd0\x12\x87\x49\xba\x44\x36\x6d\x87\x6a\xe8\x0d\x14\xc7\xed\x46\xe0\x85\x53\x79\x51\x09\xaa\x81\x66\x4a\xc4\x63\x15\x74\x79\x21\x2d\x5f\xe9\xf8\x70\x79\x5d\x93\x27\xaf\x2b\x7d\x99\xc4\xbc\x42\xc8\x34\xec\x4d\xd7\xc2\xf8\x85\x17\xe5\xda\x19\x83\xcc\xda\x58\x46\x0d\xe5\x2a\x56\x32\xe2\x9b\xb6\x84\x76\x68\xc6\x51\xc1\x3e\xae\x4e\x9d\xf3\x75\xa3\xfd\x4f\xc2\xe2\x7e\x56\x0e\xa8\xb7\x53\x13\x93\xc3\x0e\xee\x23\xc7\x5e\x43\x7e\x37\x3b\xab\x5b\x0f\xc6\xd9\xa3\xdd\xdc\x8e\xa2\x30\x4d\xfa\x25\x4a\xdf\x4e\xe0\xf6\x13\xfa\x2e\xbe\x6e\xcc\xf4\xb3\xdd\x61\x3a\xb2\x0b\x5c\xb8\x04\x5c\x84\x0d\x01\xdf\xb4\x54\x45\x8e\x74\xcb\x24\x4a\x13\x96\xe8\x69\xe5\xc0\xd9\xef\x65\x07\x58\x1d\x2e\xa7\x8c\x82\xf4\x14\x6b\xb0\x6e\x47\x37\x1e\x57\xd3\x8b\xdd\xcd\x4d\x42\xa2\xf7\xe7\x70\x32\x26\x89\x42\x82\xd9\xc0\x52\x20\x09\xe1\x18\x2a\xab\x27\x12\x06\x7c\x55\x5b\x7a\xa8\x52\x92\x5f\x3e\xfa\x65\xaa\x92\xc1\x0d\x03\xf5\x9f\xc8\x25\xa8\x37\xbf\xd5\x80\xf0\x1e\x3f\x5e\x1d\x2c\xe6\x53\x51\xc7\x7b\x15\x71\xf0\x88\x14\x64\x9d\xca\xf1\xf3\x73\x4e\xfe\xb8\xe5\xac\x28\x86\x11\xea\x8b\x2c\xde\x4a\x66\xa3\x29\xe4\x9a\x17\x99\xc9\x5f\x19\xda\x68\xb4\x8b\x8c\x0c\x2c\xe2\x55\xb2\xad\xa2\x30\xd8\x71\x84\xc4\x6f\xe1\x68\x16\x41\x40\x8f\x19\x82\xe6\x0b\x56\xd7\x27\x30\x6a\x02\x49\x69\xd3\x14\xfa\x6a\xe5\x11\x66\x2b\xc8\x4d\x32\xf9\x16\x7d\x1b\x1b\x3c\xfa\x49\xd8\x9f\xdf\xd0\xdc\xe0\x27\x34\xff\x60\x39\x4a\x33\x6c\x25\xd0\xfb\xdd\xc7\x56\xe2\x9b\x16\x16\x71\xaa\xbc\x65\xae\x72\xef\xd6\x8a\x47\x95\x4d\x54\xc6\xf9\xa1\xdb\xb5\x36\x4b\x9c\x2a\x3c\x46\xfc\xbc\xce\xf7\x6b\x92\xc0\x38\x5d\xe6\x0a\xa6\xf0\x0b\xd0\x2b\x3a\x85\xb6\xe7\xc5\xa7\x3e\xdf\x46\x8f\x98\x5b\x93\xa7\xc4\x0f\xd3\xf1\xf5\x89\x93\x4a\xee\xf2\x64\xed\x08\x0d\xd3\x84\xf1\x42\x48\xfd\xde\x50\x73\xcc\xd6\x58\x54\xdf\x7c\x05\x62\xfb\x8c\xa2\xfe\xd9\x46\x8d\xc4\xfc\x47\x2d\x42\x17\xcf\x75\x47\x76\xc0\x1d\x02\x5a\x1d\x18\xd9\x97\x6d\x33\xde\xb3\xdb\x98\x7c\x46\x51\x1b\xc7\x90\x3a\x7f\x4e\x60\xb6\xb4\xa4\x05\x72\xab\x5f\xe1\xaf\xc7\x39\xa6\x50\x50\xb7\x1e\x83\xfd\x91\x33\xc5\x26\x8e\xcd\x8a\x98\x4d\xc6\x16\xd3\x02\x15\x9c\xb1\xff\xe9\x38\x7a\x65\x18\x29\x17\x69\x5d\xb9\x48\x9e\x5a\x72\x48\x71\xe3\x94\xea\x10\x47\xab\x18\x96\x0e\x54\x00\xb0\x93\x77\xcd\x68\xe0\xe6\xdf\xfd\xfb\x7f\x1b\xce\x1f\x36\xc0\x45\x95\x2b\xb9\xa9\xf4\xbf\x3f\x98\xf8\x43\x24\x31\x03\xdb\xc7\x3a\x77\x3c\x37\xd5\x6b\x70\x4a\x3f\xf0\xae\x6a\x07\xbe\x04\xfe\x6a\x6a\x66\xab\xeb\x4e\x1d\x21\x4b\x36\x2f\xa2\x81\x11\x20\x12\x36\xce\x87\x81\xef\x2a\xf9\xb0\x8d\xdb\x28\x31\xe3\x61\x31\x84\x8d\xc1\x3e\x42\x4c\xcd\xd7\x6e\x58\xc6\x65\x96\x97\xa0\xb9\xc3\x99\xb1\x6d\x46\xf5\xc9\x5d\xab\x35\xc2\xf9\x0c\x58\x31\xcc\xd2\x72\x30\x4c\x4b\x84\x2b\x58\x8a\xbf\x35\x51\x25\x89\xdf\x6a\xd3\x28\xcd\x87\x69\xb8\xd8\xf1\x1e\x19\x03\x21\x65\x64\x9b\xa5\xa2\x30\xe5\x43\xd0\x09\x3d\x2b\x34\xd4\xd6\x43\xf0\xe8\x0b\xdd\xc4\x0e\xd2\x22\x22\xa6\x75\x77\xf0\x3f\x08\x14\x6b\x3c\x4e\x44\xf8\x9f\x4d\x94\x0b\xeb\x89\x26\xfd\x69\xaf\x09\x81\x8a\x07\xdc\xb8\xbb\xb4\x99\x95\x7f\x37\xef\x78\x8f\xdb\x6a\xfe\x61\x1a\xa7\x09\x12\xf1\xa2\x15\xe5\x73\x66\x17\x55\xc5\xa4\x0f\x51\x46\x68\x88\xba\x42\xb3\x63\xa4\xbb\x38\x51\xf4\x74\x17\x95\x24\xea\x65\x8f\xfa\x34\xc5\x90\xcf\x51\x19\x4d\x7a\x6b\x19\xe7\xe6\x79\x9d\xd9\x71\x1c\xc9\x06\x93\x3a\x30\xad\x46\x51\x09\x95\x25\x52\x8e\xfb\x32\xa2\xac\x74\x86\x57\x97\xac\xbe\xdf\xe7\x94\x72\xe2\x7d\x33\xcf\x26\xc4\xe1\xaf\x1d\xa7\xeb\x05\xdd\x23\x70\xbf\xcd\xfd\x49\x7b\x4b\xd4\x3f\xd4\x71\x02\x44\x6b\x8a\xe7\xa5\x49\xcd\x32\x47\xad\xc8\xa4\x3a\x85\x1f\xd5\xe0\x4c\x0c\x37\x76\x1d\xab\xec\x69\xf2\xb3\x6a\xaf\x6a\x3d\xf3\x3a\x83\xa5\xc7\x01\xf4\x3f\x4f\x8f\xc3\x35\x3d\xbc\x82\x14\xf8\x9a\x25\x9f\x23\xdd\x71\x6c\xa2\xbe\x16\xbd\xd4\x48\x51\xd5\xce\x57\x26\x66\x47\xe5\x36\x4a\x37\x8d\x6a\x5b\xd8\x08\xb4\xcb\xe5\xc1\x78\xeb\x0a\x8c\x77\x46\xe1\xa7\x47\xe9\xc8\x26\x45\x39\x22\xaf\x06\x8b\x1f\x09\x1a\x21\x11\xa2\x69\x13\xa6\x21\xfa\x21\xfe\x2b\x85\x17\x0c\xe3\xb2\x37\xd5\x51\x54\x1c\xff\x09\xc6\x8e\xc7\x5c\xbc\xbb\x03\x08\x02\x5a\x6d\xff\xc5\xcf\xd2\x19\xe1\x8c\xec\xe1\x03\xb5\xa2\x2a\xfe\xfd\xa1\x06\x4b\xef\x50\xd9\x7f\xe1\xc8\x9f\x52\x0d\x5b\xd4\x4f\xc0\xbe\xc1\x5b\x35\xa9\xe2\xad\xf4\x78\xb3\x47\xbb\x36\xd6\x04\x18\x13\x4d\x80\xa1\xfb\xe0\xfa\x4b\x51\x68\xa7\x28\x7c\xc2\xb1\x4d\xc8\x9a\x23\x5e\xcd\xc4\x97\xa1\xd6\x1a\x86\x02\x8d\x88\x06\x4a\xf8\xb3\x8e\x11\x83\x9c\x00\xbe\x71\xdb\xa7\x28\xb3\x22\x86\xf4\x83\x28\x43\xd0\xd0\xcb\x8d\xaf\x5e\xdc\x0f\xb6\x08\x10\xcf\x1f\x9e\xef\x7e\x79\x96\x1c\x7a\xac\x88\x9d\x30\xce\xac\x69\x4d\x43\x5b\xdb\xba\x88\x30\x1f\xb6\x58\x23\x16\x0b\x16\x7c\x16\x1c\x92\xef\xe9\xea\xc0\xf7\x3e\x15\x3b\x9c\x9b\xd1\x68\x85\x29\x98\xe0\x27\x7d\x4b\x69\x8e\xbc\x3d\x51\x34\xb6\x3f\x51\xbc\xec\x26\xfc\x5a\x19\xe5\x51\x15\xa0\xed\xa5\xa7\x13\x5a\x78\x8a\x3a\x91\x9b\xeb\xe8\x04\xe8\x7d\xd8\x39\x97\x2e\xf4\x8a\x82\xb5\x84\x40\xa0\x7b\x27\x50\x61\x40\xc5\x12\xfa\xa7\xfc\xc5\x40\x37\xd4\x72\x08\x2e\xed\x50\xed\x76\xbc\xc8\x8e\x46\x85\xf7\xd8\x81\x97\xba\xbd\x2c\x5d\xb4\x50\x20\x73\xce\xd4\xf3\x1e\xa9\x47\x8f\x8c\xf6\xff\x6b\x0d\xe7\xbe\x3a\x7b\x23\x0e\x0b\x31\x26\x9f\xe8\x01\xfa\x44\x35\xa5\x9a\xb2\x48\x73\xad\xf2\xbd\x11\xa8\xa4\xf1\x86\x3a\x20\xf2\x90\x50\xc2\x3b\x7c\x8d\x8d\x1b\x3a\x5c\xd6\x57\x48\xd8\xff\x07\x4e\x42\x08\xf4\xc9\x7b\x28\x77\x5b\x00\xb9\xf3\xdd\x91\xa5\x5c\x90\x15\x06\x29\x8c\xd1\xeb\x7a\xc0\x5e\x6f\x23\xba\x5e\x88\x12\x93\x84\xae\xa5\x5b\x95\x0e\x9f\x73\x45\xc5\xa7\x94\xe2\x6e\x91\xd9\x24\x1c\x0a\x8d\x1b\x16\xed\x9a\x02\xb6\xac\x29\xee\x5d\x0a\xf5\xb2\x7e\x47\x69\xde\x52\x12\x58\xf4\x6f\xdb\x00\x29\x76\xc4\xa9\xcd\xb6\x70\x59\x8a\xe3\x65\x92\x99\xa5\x2a\x1a\xa7\xd4\x97\x30\xc1\xa8\x1c\xf5\x05\x55\x23\xa8\x71\x57\x6f\x36\xd2\xaa\xc4\x20\x2a\xfc\x07\x0e\xf7\xc8\x7a\x12\xd8\x57\x22\x2e\xd1\x06\xce\x5c\x88\x8d\xa0\x16\x1d\xfe\xcc\x63\xd1\xdc\x13\xc7\x76\x60\x93\xbe\xc9\x56\xe8\x89\x81\x3b\xdf\x3e\xa3\x58\x05\x71\xac\xc0\x89\xfd\xf1\x44\xed\xac\x33\x1e\x62\x6e\x32\xdf\xe2\x87\x52\xd4\x39\x45\x8d\x79\xae\x61\x44\x9f\x9f\xeb\xf6\x2d\x9c\x11\xc1\x00\x55\x53\x21\x62\x49\xd5\x69\xc5\x3c\xfb\x81\x06\x10\xfb\x3e\x8f\xa1\x49\xfa\x95\x6f\xa8\xcb\x9f\x30\x8e\x52\x0b\xdd\xaf\x39\xb1\xb2\x28\xc9\x59\x7a\x1f\x8d\x65\xe7\x95\x30\x65\x13\x18\x46\x95\xfc\x32\x8a\xd1\x03\x2b\x99\x74\x5a\x86\xc8\xd0\x21\x92\xe5\xce\xb1\x36\xad\x94\x22\x33\x7d\x37\x22\x8c\x2c\xa3\x71\x14\x94\x59\x9b\x37\x67\x32\x33\x8a\xfa\x53\x5e\x31\x0d\xe5\x74\x84\x5e\x08\x05\xa4\x0f\xa8\x45\x39\xc0\x2c\x2c\xc4\x51\x28\x5a\x70\x58\x98\xbc\xdd\xf9\xc6\x53\x52\x0c\xd3\x34\x77\x8f\x87\x93\x17\xf0\x3a\xbe\x56\xbd\xa9\xb6\x18\x26\x51\x38\xad\xc9\x2b\x3e\x9e\x28\x91\xc5\x8f\x69\xa2\x5d\x8f\x8f\xef\xf7\x69\x5b\x94\x47\xba\xe4\xb3\xd0\x13\x2a\x5b\x39\xe7\x4c\xad\x4f\x4c\x8c\xcb\x02\x74\x4a\x40\x66\xdf\x0d\x14\x3f\x1f\x8b\xa2\x03\x68\xfc\xe3\x40\xb7\xe7\x93\x4d\x17\xfe\x44\xfa\x1d\x3c\xce\x3d\xca\x7c\x32\x61\x52\xa0\xe8\x27\x89\x68\x97\xdf\xe5\x5f\xe8\x48\x7d\x1d\xdc\x46\xfc\x23\x58\xf8\xc2\xf2\x48\xa7\x08\x42\xd4\x37\x14\xd3\xcb\x87\xe4\x0b\xc1\x87\xfc\x49\xa0\xaa\x92\x3f\x51\xbd\xb6\x57\x5a\xe7\x3e\x31\x45\xb4\x64\xa7\xfc\x79\x8b\x0c\x02\xdc\x9a\xdf\x53\xd4\x78\x97\x02\x5d\xa6\xc9\x4c\x87\x2a\x59\xae\x53\x47\x51\x81\xa8\x73\xa0\x9f\x46\xc9\x60\x0f\xfd\xa5\xd3\x84\xf6\xb5\xd0\xaf\xc3\xa0\x0b\x36\x8a\xde\x54\xc0\x51\xd5\x03\x69\x31\x68\x27\xb7\xe7\xea\x35\xd7\x90\x21\xe6\xaf\xaa\x89\x82\xfb\x02\xcf\x35\x0c\x99\xb8\x12\x2d\x69\x5c\x84\x45\x1d\x4f\x80\xf0\x36\xfd\x1e\x5f\xb7\x31\xfd\x90\xe4\x93\x50\x32\x63\xc3\xa0\x58\xc2\xd7\xaa\x76\x31\xce\x28\xc4\xb5\x53\x2a\x18\xbe\xa5\x24\x59\x34\x01\xc7\x8f\x55\x5d\xd4\x2e\xd9\x6c\x65\x0f\x2d\x23\xe4\xf0\x6e\xd1\x32\x12\xb2\xa6\x6a\xb6\x85\xc9\xc8\xff\xf0\x77\x03\x45\x6f\xb5\x73\xc6\x83\x09\x37\xe9\x8d\x5c\xf7\x70\xf5\x28\x98\xdf\xfb\x7a\x74\xfe\x4d\xa0\x9b\xb4\xb1\x54\x85\xe1\xd3\x3b\xf5\x47\xac\x99\xf2\x3d\x49\xf7\x75\x8b\xd6\x0e\xfa\x49\x81\xe3\x79\x3b\xe8\x0a\x74\x64\xe9\xe1\xf7\x72\x42\x07\xe7\xd1\x2d\x05\xb7\x66\xa5\x31\xd4\xbe\xd6\x7c\xab\x61\xb4\x14\xf5\x6b\x0c\x72\x77\x54\x22\x09\x75\x2b\x11\x64\x69\xb1\x51\xe9\xb8\x88\x46\x51\x3e\xa2\x83\xd7\xf1\xe3\x39\x00\xd3\x9a\x5a\xb2\x45\x34\xb2\xf9\xde\xea\xef\x1c\x71\xe9\xc1\xd9\x5a\x76\x0d\x5b\x6b\xf7\x8c\x6f\x71\xb8\xa4\x61\xa5\x0f\x90\xa2\x85\xff\x7f\x15\xab\x1a\x3d\x53\x6b\x78\x37\xc0\x2a\x7f\x10\xa8\x4c\xec\x9b\xb4\x99\x99\xa7\x0d\x65\x41\x57\x0f\xd7\x3c\xa2\xfb\x54\x13\x79\x3e\x8e\x32\x3b\xe5\xc1\xa9\xe7\x69\x59\x60\x3b\xfc\xf7\x13\xc5\x2a\x78\x5e\xc1\x11\x72\x6b\x13\xaa\x47\xbb\x0e\x9c\x17\xfd\x8d\x72\x7d\xef\xa8\x5e\xdd\x3b\x9f\xee\x3e\xdb\x24\xe2\x54\x3a\x3c\x82\x6b\xda\x3d\x68\x12\x42\x55\x06\x07\x04\xe2\xbe\xc2\x0c\x76\x4c\xbe\x6e\x93\x87\xcc\x8b\x72\x1c\xf5\x55\x9f\xd1\x65\xd5\xd1\x79\xb9\xce\x3a\xbf\xb4\xb2\xdb\x77\xaf\xac\x29\x76\xfa\xdf\x87\x4d\xc6\x74\x6d\x5f\xa5\x41\xc5\xe2\x7b\x14\x28\xfa\xf2\x1b\xc4\x8c\x25\x6a\x35\x38\x7b\x80\x26\xd9\x06\x68\x81\x10\x78\xcb\x89\x36\x48\xcb\xb8\x9f\x46\xfd\x8e\x02\x2c\xdf\x54\xc5\xc9\x9b\x2d\xe4\x04\x47\x94\x90\x8d\x2f\xb1\x20\x8c\x17\x66\xf8\x7d\x5b\x3a\x29\x41\x3e\xca\xcd\x4d\x81\xcf\xe7\x7f\x30\x51\x54\xb5\x26\x2b\x86\xcb\x69\x36\xca\x55\x63\xd9\x1d\x25\x4d\x7f\xa7\x46\x73\x67\xe3\xd1\xae\xca\xf7\xd4\x08\x3a\x20\xbd\xd6\xb1\x68\xe1\x66\x70\x0b\x37\xdf\x60\xb0\x9c\xd0\xa4\x6b\x08\xfa\x23\x1e\x2c\xfe\x9f\x36\x92\x0a\x43\x0b\x96\xd3\x32\xf8\xa1\x1b\xba\x7d\xf4\x86\x8a\x61\x8b\x74\xd9\x64\xfd\xc7\x55\x8f\xf8\xc4\xc1\xbb\x8f\xac\x93\xad\xe7\x6b\x9c\x76\x98\xf0\x4d\xa5\x20\x74\x03\x67\x0b\xf6\xf0\x7f\xd0\xac\xab\xa7\x02\x4d\xcc\x70\x4a\x71\xf3\x4e\x81\xf6\x87\x3f\xe3\xc2\xdc\x9e\x35\x21\x4f\x15\x82\xf3\x9f\xe0\xeb\xf8\x26\xf8\x0b\xf5\xd0\xf6\x97\x7e\x59\xf6\x07\xfc\x0d\xac\xa6\x8f\xd0\xf5\xcb\x37\x8d\x75\xfe\xfc\x5c\x77\x31\xcd\xac\x41\x91\x43\xbe\x59\xff\xcc\x44\x9f\xaa\xcb\x8c\xd2\xc5\x20\x9c\xc3\x20\xf0\x8d\xe2\x3b\x29\x6c\x38\x4c\xd2\x38\x1d\xac\x3c\x4e\x7f\xc1\xd0\xf0\x06\x84\x01\xff\xbe\xa1\x29\x18\xff\x94\x26\x97\x4f\x26\x1a\x57\x26\xb3\x0d\xb6\xea\x8d\xcc\xb9\xca\x0a\xd9\x1c\x78\xf2\x37\x51\x9a\x92\x7e\x02\x8d\x43\x33\x51\xf2\x98\x8f\xf6\xfe\x29\xbe\x82\x95\x9b\xc9\x8b\x12\x62\xed\x6a\x96\xd1\xa8\x00\xd3\x86\xdf\x04\xb3\x2f\x6c\x30\xf7\xf9\xb8\xbc\x8b\xe7\x4e\xba\xab\xca\xf6\x3f\x52\xde\x5d\x56\x84\x1d\xa5\x08\x71\x25\x20\xdf\x44\x74\xa3\xdb\x4a\x06\x79\x5a\x66\x74\x70\x01\x43\xc1\xc0\x7c\xbc\xe5\x69\x1a\x3d\x0d\xfb\x95\x94\xb9\x47\xbf\x10\xcc\x42\xe8\xe7\xc4\x43\xe8\x38\x42\x8c\xed\xab\x0a\x41\xb3\x7b\xc6\x6f\x81\xd0\xc4\xb1\xed\xef\xed\x38\x19\xda\x4d\x2a\x63\x23\x4f\xf6\x90\x5e\x0f\x83\xf0\x1d\x98\x36\x6c\x81\x4f\x70\x5e\xe0\x10\x9e\x60\x42\x99\xbc\x96\x29\x24\x04\xb1\x47\x3f\x8b\x93\x03\xb1\x34\x1c\x8d\xfb\x80\x70\x48\xce\xc3\x67\xa7\xd0\x5f\xc5\x6a\x23\x33\x7e\x8d\x45\x23\x33\x88\x12\x43\xfe\xd0\xb1\x03\x4e\x0c\xa3\xe3\x85\x31\x1a\x3e\xd4\xc1\x83\xc2\x5d\xcd\x41\x83\x00\xf6\x6a\x2d\x58\x1e\xbd\x87\xe6\xfa\x9d\x6a\x91\x83\xf6\x40\xc2\x28\x9a\x43\x31\xda\xd5\x0f\xe3\x89\x77\xcd\xa8\x44\x09\x67\x8d\xb1\x22\xee\x28\xee\xa5\xd0\x8c\x4d\x18\x15\x2b\x3b\x3d\x24\x6e\x03\x6b\x5c\xb8\x29\x95\x2c\xdb\x4d\xcd\x8b\xac\x8a\x84\x9c\x1e\x80\xd3\xd8\xda\x5a\x59\xa4\xa5\xb0\x6b\x23\x96\x40\xb6\x8f\xaf\x1b\x25\xcf\xc3\x07\xba\xb1\x01\x81\x98\xc3\x95\x07\x7a\xb1\x79\x24\x4f\xba\x64\xb3\xe5\xa1\x8d\x47\x2a\x31\xc3\x40\x4b\x01\x9d\x6c\x65\xa0\x7b\x91\x92\x89\x36\x2c\xb2\x34\x89\x42\xa9\x6f\xbd\xe4\x1d\x89\xc3\xbe\x93\x69\x4b\x9d\x9a\xe0\xfe\x9d\xb9\xb9\xba\xb4\xbb\x50\x3a\xed\x75\xee\x5a\x56\xa0\x35\x58\x37\xd4\xc9\x34\xab\x14\x71\x56\x7c\xc6\xc3\xe8\x25\xff\xc5\x3c\x66\x38\x85\x60\x9b\xb0\xd3\x1c\xfb\xd4\x41\x8f\xb0\xed\x08\xe3\xf0\x7f\xf3\x39\x34\x8e\x60\x0e\x41\xfb\x8b\xf0\x8e\x99\x0a\x61\xa6\x6e\xc3\x09\x43\x86\xe4\x49\x5d\x12\xfa\x2e\x4e\x3a\x47\x33\x56\x8d\x08\x1c\xe0\x1f\x4f\x94\x06\xf0\xfd\x36\xec\x6e\x58\xc6\x45\x99\x09\xa9\x7e\x2d\x11\x2d\x29\x6a\x49\x7c\xa4\xc3\x9e\x59\x31\x39\x17\xf6\xa4\x52\xa8\x90\xda\x1f\xd5\x54\x4c\x87\x36\xb3\x09\xcb\x22\xa3\xd2\xf3\xa6\xea\xda\x41\xe4\x8b\x45\x78\xd3\x73\x2e\x0d\xa3\xac\xbf\xbb\x1a\x58\xe0\xb7\x40\x5c\x0d\x83\x73\x55\x49\xda\xfe\xc5\xd5\xce\x97\x8e\xf0\x2a\xc1\xe1\x49\xa5\xdd\xbd\x7f\x85\xa8\x4f\x6a\x5c\x7b\xb0\xe4\xdc\x9b\x23\x3a\x4b\x5b\xd3\x2b\x73\x73\x5d\xf3\xf9\x8e\xdf\x48\x9c\x6b\xe6\x9b\x96\x8a\xac\x16\x86\xc0\xb8\xbf\xaf\xdc\xfa\xf7\x5d\x1a\x3e\x4d\xa6\x3c\x9e\x81\x1b\x61\x60\x4b\xaf\x11\xfc\x0c\x96\x66\xdb\x8c\x5f\x59\x2f\x30\xd5\x3f\x5e\xfa\x0d\x25\x00\x39\xaf\xd5\x62\xde\x68\x64\x00\xab\x68\x61\xc9\x66\x09\x5a\x8c\xbf\x3c\xeb\xb0\x12\x7e\xa0\x1f\x9b\xf1\x6e\xdb\x76\xa5\x10\x64\x93\x02\x94\x53\x1d\xa7\x37\x7e\x59\xeb\x0a\x5c\x0e\x94\xb0\xc2\x78\x1c\x0b\x77\x07\x19\x4e\xcd\xfa\xc4\xd7\x0d\x4d\xa0\xd9\xa3\xdd\x68\x34\x26\x90\x78\x94\xbb\x8c\x77\xab\xf5\x6c\x11\x28\xfb\x79\x96\x1c\xe1\xf1\x76\xa0\x25\x0f\x60\x52\xc5\x92\x5e\xd9\xcf\x55\x53\xf6\x7d\xc5\xd1\x71\xdf\x45\x65\x0b\x99\xcd\xc3\x14\x1e\x9d\xb8\x39\x1d\xd7\xa9\xfa\x51\xc3\x0b\x3c\x7e\xbc\x6b\x32\xd3\x8b\xd8\xcd\x41\xc0\x76\x03\x43\xc4\x37\x35\x17\xd5\xf4\xed\xe7\x3c\x77\xf4\x7d\x1c\xd6\x58\xf8\x52\xb0\xc1\x34\xde\x84\x07\x24\xb4\x4e\x4a\xdf\xe4\x43\x44\x38\x22\xb3\xeb\x41\x76\x57\x15\x85\x18\x0b\x7b\x61\x53\x6c\x68\xb0\xf2\x4f\x90\x7f\x71\x41\x44\x65\x20\x90\x92\xbf\x48\x90\x28\x94\xe0\x90\x7d\x70\x8d\x99\x6e\x06\xef\x4d\x54\xfb\x37\x3b\x2b\xb8\xf9\x24\x50\x09\xd2\x1b\x94\xbe\x81\xeb\x70\x9b\x4e\x15\x91\x18\xc3\x91\x0d\xdf\xfb\x1a\x0c\x97\x2c\xc7\x16\x0f\x72\x21\xb2\x71\x9f\x67\x57\xf8\x78\xbc\xe7\x72\x51\xf5\xfa\x8c\xb3\x94\x18\xe3\x1e\xaf\x7e\x18\x3e\x16\xba\x0f\x85\x95\xa6\x7a\x08\x11\xfe\x54\x26\xf2\x14\x5e\x08\x36\x79\x0f\x5c\x21\xc4\xed\x0f\x6b\xf3\xb1\x36\x51\x6e\x39\x9a\xb4\x90\xcc\x79\x8b\x46\x9d\x09\xaa\x94\x0c\xd2\x82\x31\xbb\x69\x76\xe1\xee\x5f\x84\xb7\xcc\x37\x98\x4f\x51\xfa\xf1\x99\x1a\xe6\xd3\x96\x8f\xf8\x0c\xc9\x75\xda\xac\x38\x2a\x81\xf9\x14\x70\x9c\x5f\xe0\xd5\x81\x8c\x3c\x24\x7c\x82\x6b\x13\x5f\x46\xbd\xd6\x82\xfa\x9f\xef\xf6\xed\x52\x14\xba\x7c\x38\x4c\x4e\x07\xf8\x13\xbe\xf1\xac\x1a\xa6\x1c\x0c\x0b\x39\x2a\x6b\x24\x4e\x42\xcf\xe4\xdb\x99\x86\x69\x99\xdb\x1c\x04\x8c\xae\x9c\xe8\x24\x87\x1e\xa8\xbe\xc4\xf7\x74\xaf\xd4\x3f\xc6\xb0\x08\x22\xcd\xc7\xba\xef\x05\xbe\x9b\x09\x20\x0b\x60\x78\x5c\xb3\x80\x6b\x6d\x7a\x44\x59\x25\xaf\x72\xe3\x60\xf9\x59\xc9\x5a\x14\x22\xcb\xc9\x14\x82\x7c\xa3\x8a\xbc\x61\x91\x3f\xe1\x33\x4d\xd3\xa8\x4d\xd1\x39\xf6\x37\xff\xe6\x4c\xf5\x4b\x60\x5a\xb8\xc2\xcb\x83\x1c\xd3\xff\xf6\xaf\x92\x72\x9d\xeb\xb7\x93\xc8\xfe\xe5\xbf\xb6\x4a\x6b\x40\xbc\x52\x1a\x5a\x64\x06\x7e\x7a\xd5\x67\x6b\xfe\xea\xaa\x1a\x85\x9d\x80\xa9\xe2\xbb\xa6\x57\x69\x1f\xab\x02\xa9\x28\x52\x7e\x7e\x46\x3b\x1d\x66\xda\xe3\x6d\xee\x28\x74\x5d\x8d\xef\xee\xa1\x92\xf2\xda\xde\x20\x01\x3a\xfa\x42\xf7\x95\xd4\xf3\x7b\xc2\x25\xdc\x54\xec\xf6\x9a\xc0\x78\x10\x9b\x3c\x49\xf3\x82\xb2\x8c\x02\xd1\xa8\xb6\x18\x5f\x7f\x2a\xcd\x6f\x51\x66\x89\xcd\x3a\x2a\x6d\x7c\x91\xa2\x00\xbe\x56\xec\x16\x4c\x78\xb8\x82\xb2\xad\xe3\xe4\x57\x04\xfd\x9f\x9a\xc5\x59\x8a\x4c\x98\xc2\x7b\x94\x9e\x34\xfa\x41\x69\x4a\xdb\xfa\xb9\x63\x07\xe6\x89\xb5\x9c\x5a\xd8\x29\x95\xb3\x49\xd0\x8d\xcd\x8b\xaa\xe3\x46\x74\xbd\x0f\x4b\x8f\x10\xe4\x28\xf9\xba\xad\x95\x69\x99\x50\x74\x1d\xb2\xb7\x4e\x63\xd5\xaf\x00\xd6\xf6\xad\x4f\x41\x3f\x42\xd4\x81\x62\x3f\xb0\x7d\x7c\xad\x40\xff\x79\x5a\x4d\x53\x65\x50\xe0\xc5\x5f\x9e\x74\x9e\x79\x46\xae\x1b\x27\x25\xf0\x2d\x24\xd4\xc0\xee\x1c\x5c\xcd\x07\xba\x12\xf0\x40\x0d\x3d\xa7\xe2\xc0\x76\x0c\xcb\xbd\xa1\x74\x35\x50\xb3\x81\x75\xdf\xe1\x84\x16\x7b\xe5\x68\xcc\xa6\x5a\x57\xff\xf9\xba\x71\xf2\x13\x39\x41\x2f\x8f\xfa\x91\xc9\x22\x21\x00\x12\xf2\xb8\x8e\x22\x95\xdb\xa7\xa4\xd8\xb3\xea\x4f\x77\x50\xc2\x5d\xe8\x7b\x28\x65\x0e\xbb\x7e\x56\x29\x76\xa3\x37\x0e\xa6\xe4\x7d\xdd\x67\x7c\x52\x31\x64\xf7\xd2\x51\x6f\x4a\x29\x94\xdd\xa2\x2f\x70\x7e\x4e\xb5\xee\xe0\x7d\x74\x1a\xa5\x67\x3a\x9c\xf2\xa1\x30\xe0\xe1\xfc\xf8\x68\xa2\x92\x12\xda\xe9\x45\x05\xd6\xa2\x11\x1a\x79\xb4\x0d\x25\xf8\xc4\x04\x31\x92\x13\xf5\x13\x61\xc6\xe3\x2c\x35\xe1\x70\x4a\x21\x9b\xb9\xd6\xc9\xfc\x27\x2a\x91\xf1\xb1\xaf\x44\x46\x5f\x2b\xa3\x7e\x54\x20\xa5\xe2\xba\xdb\xbe\xf0\xa2\x8b\x95\xf7\xd7\x33\x3c\xc7\x8f\x77\x7f\xe1\x31\xfa\x5a\x15\x81\xcf\x6d\x32\x2e\x5e\xa8\xa0\x69\xdc\x45\xf0\x4a\x15\xae\x18\xb2\xc8\x2a\x4f\x64\x8d\xf9\x6b\x82\x06\x55\xb0\xa4\x9d\xb7\x8e\xa7\x6c\xdd\xa1\x9d\x52\x0c\x36\xdb\xd4\x41\x8b\x88\x62\x53\xd5\xde\xd2\x7c\x64\x8b\x28\xec\xf8\x24\xfc\x47\x2a\x14\xf8\x48\x33\x47\x65\x26\x42\x8a\x16\x58\x7c\x1c\xa1\x7c\xfd\xa9\x08\xed\x15\x6b\x86\x9d\xce\x57\xbe\xc8\x4b\xf1\x9a\x86\xd7\x5c\x9b\xe8\xd9\xb5\x71\xdf\xb5\x7f\xb3\x58\xbb\x82\x5a\x01\xf7\x09\xf7\x4b\x7b\xa4\xe3\xb2\xc8\x77\x75\x66\x8f\x6e\x9e\x0f\x6a\x8d\xdd\x7e\x91\xa0\xa4\xe6\xba\x49\x0e\x1f\xf0\x6d\x1f\xcf\xcf\x6d\x9e\x9f\xd4\x5a\xc0\xb7\x02\xc4\x41\x65\x93\x86\x8b\x04\x91\x90\x58\x9d\xd1\x38\x35\x64\x4e\x0b\x77\xb7\x49\x06\x19\xe2\x5d\x98\x07\xc0\xe1\xf8\xda\xf5\x0c\x0f\xfa\xe3\x8e\xcf\x7c\xb1\x14\x94\xf4\x63\xb5\x95\xfe\xcb\xc4\x8a\xca\x32\x1e\xfb\x36\x5e\x9d\x29\x4c\xf0\x05\x38\x60\xbd\x0e\xfb\xc8\x16\xaf\xd8\xa4\x67\xca\x91\xb8\x2a\x12\xe0\x29\xb0\xc6\x66\x1b\xd2\xac\x9f\x2e\x27\xcb\x26\xeb\xef\x50\xd4\xf9\x70\x17\x04\x0b\x58\xbd\x15\x4e\xc7\x1d\x14\x03\x89\x67\x59\x9d\x65\xf8\xf7\x3f\xab\x9d\x49\x45\x16\xd9\x25\x00\xec\x34\x55\x9c\x63\x6d\x72\xcd\x0d\xa7\xdb\x88\x55\x32\x3b\x4a\x97\x80\x6f\x16\x09\x85\xb3\x13\xc5\x71\xfc\x6a\xbd\x53\xd3\x53\x9a\x25\x69\x6e\x5c\xba\x85\xad\x5d\xe0\xb3\x23\x4d\x39\xb5\xc3\x07\xba\xe3\x28\x8e\xc6\x51\x92\x76\x3c\x6a\x69\x5d\x6b\x0c\xad\xab\x24\x66\x62\x6d\x3f\xa7\x2e\x61\x3c\xd5\xae\xd5\x6a\x00\x58\x30\x94\xde\x0a\x46\x0d\xf4\xc6\x52\x09\xa0\x93\x0d\xae\xef\x09\xdd\xa5\x71\x02\x8e\x9c\xb3\x25\x9e\x42\xf4\x5c\x1b\x14\xde\x2c\x46\x09\x75\x67\xdf\xd4\xd9\xd7\x0f\x74\xd1\x79\x5d\x89\xce\x3c\x4e\x55\x39\xf1\x12\xb7\x6e\xde\x67\xbb\x83\xd2\x10\xab\x85\xb0\x3f\xc2\x84\xbf\x39\xf1\x61\xe1\x65\x2d\x4b\xb9\xee\xd3\x04\xe2\x14\x22\x66\xb8\x1e\x78\x03\xd2\x4b\xc9\xd9\x71\x15\x9b\xb3\xaa\x62\xe3\x31\x2b\x23\x93\x87\x65\x1c\x25\x56\x71\x37\x02\x2b\x2f\xdd\x68\x2d\xda\xb6\xdd\x85\x34\x0b\x2d\xa3\xd3\xc4\x73\xd5\xee\x6d\x63\x23\x1d\x3c\xd8\xcd\x7c\x2b\xa4\xdb\x47\xd5\xe7\xf9\xa6\x01\xcf\x9d\x3d\xda\x1d\x46\xd8\xab\xf0\xd0\x10\x96\xf3\xb5\x92\x47\xf4\x6e\x50\xbc\x42\x74\x6e\x40\x92\x60\xde\x1d\xb8\xde\x37\xa0\x5d\x52\x13\x73\x5e\xb5\x9e\xbe\x41\xc1\x8b\xb4\x78\x68\x48\xf9\xd0\x66\x7f\xb1\xfa\x3f\x0c\xde\x03\xe4\x3a\xb9\x4c\x33\x99\x3a\xf2\x5f\x7f\x59\x03\x94\x66\x1d\x33\x4e\x75\x7a\x61\xd3\x22\x5f\x4e\x3f\xf3\xb5\x27\x41\x63\x2b\xa8\xe7\xce\x97\x84\x09\xe8\x34\xed\x72\x84\xcf\xdb\x49\x99\x1b\x0b\xe6\x55\x38\x0c\x28\xa9\x5c\x23\xd7\x93\xd9\x25\x68\xcb\x13\xb8\xed\x9f\xec\x87\xc6\x34\xce\x1d\x6a\xa2\x75\x9f\xc0\xbb\xa3\xae\xb9\x03\xce\x39\x4c\xc6\x79\x6c\x00\x6c\x93\xbb\x98\x40\x44\x2f\xbb\x29\x36\x80\x73\xbf\x0b\x11\x26\xa2\xbd\x1d\xab\x88\x86\x99\xb5\x00\xdb\x09\xf1\xf7\x2a\x95\xed\xa4\x3a\xa8\x93\x88\x1f\x4c\x94\x22\xea\xa6\x92\x7c\x7e\x37\x70\xdc\xb1\xff\xfa\xa3\x40\x55\xef\xb6\x21\xa0\xe0\x92\x88\x6a\x93\xcd\xa2\x30\x9d\x56\xa9\x23\x2e\xcd\xa2\x76\x70\x47\x89\x6e\x7e\x8b\x46\x5c\xfe\xc8\xc7\x1d\x36\x63\x45\x21\x2d\x0b\x28\x55\x15\xef\xad\x2e\xc4\xe6\xf3\x53\x5a\x36\x5d\xab\x97\x5c\xd2\x42\xb7\xb7\x94\x98\x5c\x18\x15\x95\x5f\xd8\x51\x6c\x84\xea\x78\xb9\x34\xd9\x42\x41\x78\xe8\xd0\x91\xca\x8f\x67\x78\x4d\xab\xf8\x70\x9d\xd9\xdd\x71\x65\x5c\x69\xe0\xc5\x8e\x1f\xef\x96\x49\xd4\xb7\x49\x11\x2d\x44\xac\x0f\xa5\x3b\x5f\xa4\xed\xef\xa9\x2d\xc2\x83\x2b\x92\x2a\xd3\x95\x38\xa9\xd1\xb5\xb5\x1d\x9b\x30\xb4\xe3\xa2\x72\x0d\x71\x24\x88\x30\x80\xdf\xa7\x68\xe7\x16\xe2\x7f\x3f\x77\xb1\x81\xbf\xf1\x92\xb0\x45\x4d\x7c\xad\x82\xa9\xcb\x00\xce\xb8\xa3\x5b\xbd\x49\xe6\x22\x81\x82\x35\x56\xcd\xba\x66\xe8\x6d\x92\x38\x3c\x5b\x0d\x44\xb2\x14\x39\x6b\x23\xc5\xd1\x8e\x23\x60\xfb\x23\xd5\x5e\xb3\x92\x66\x8b\x4f\x6e\x21\xb7\x12\xc1\xb7\x1d\xa8\x45\x62\xfa\xfe\x3d\x25\x39\x99\x6c\x45\x57\xe9\xce\x6a\x7a\xbe\x13\x81\x2a\x31\xbe\x15\xf8\x84\xf9\xc5\x1a\x2f\xfc\x35\xb8\x99\x70\xb0\xae\xab\x5e\xef\xfb\x4a\xef\xf3\x4e\xad\xa7\x10\x6f\xcd\x4f\x19\xa8\x96\xf2\x93\x64\x06\x38\xc4\x27\xf7\x77\x73\x55\x6b\x93\x78\x28\xa0\x53\x42\x75\x7c\xa4\x57\x14\x56\xbd\x18\x66\xe9\xf2\xb4\xea\xf6\xff\x26\x5e\x8c\xf5\x0b\x94\x50\xc8\x37\x29\x65\x21\xba\x06\x3e\x65\xd1\x8b\x4d\xb8\x98\xef\xee\x38\x15\xbf\xd7\xf0\x06\xb0\xbb\xef\x07\xaa\x01\xe1\x0d\x9a\x7c\x01\x14\x61\x68\x84\x64\x81\x06\xdd\x99\xa8\xea\x45\xf9\xdb\x74\x4b\xf7\xbf\x6d\x13\x2c\xfe\xf9\x2a\xc2\x09\x8d\x96\x1e\x3c\xa1\xa4\x07\x4f\xa8\x92\xfe\xb0\xcc\x7b\x26\xe9\xef\x52\xfe\xe8\x79\x3a\x00\xa4\xd6\x01\x43\x87\x0a\xff\x5d\x1c\x55\xf0\x78\xde\x9f\xa8\x8e\xb5\x8b\x13\x95\xb5\x44\x0d\x4f\x1a\x5d\x14\xe8\xdd\x8c\xc6\xec\x06\x22\x15\x7e\x16\x43\xc1\x37\x0a\x70\x97\x87\x59\x34\x2e\xb0\x6e\x1d\x24\xab\xfa\x69\x81\x64\xb5\xb1\xde\xa6\x63\x9b\x19\xb0\x6a\x3a\xa4\xd8\xdb\xb0\xb9\xc0\x9e\xdf\x44\xfe\x55\xf2\x6f\x4d\x4c\xf2\x3c\xa5\x2e\x32\x40\x1e\x25\xcf\xea\x11\x25\xef\xaa\x36\xf4\xd7\xd4\x18\x86\x86\x00\x14\xd3\x8a\x35\xfc\x14\xe6\x08\xdf\x71\x37\x50\x89\x5b\x3e\x60\xf8\xcf\x94\x23\x57\x66\x3d\xb4\xcb\x1f\x69\x05\x72\x49\x9e\x3b\x34\x99\x5d\x16\x6f\x9a\xdb\x3e\x02\xc5\xc1\x73\xa9\x76\x64\xbf\x62\xb1\x0e\xc1\x12\xfe\x6d\x32\x49\x2c\x25\x4e\xb3\x8c\xb3\xed\xc4\xa4\x0e\x2c\xf4\xc1\x12\x32\x52\x30\x17\xac\x4a\xee\x88\xad\xab\xb1\xc4\xd9\xba\x6d\xa6\xa5\xac\x0a\x39\x2a\xee\x2c\xe2\xa2\xda\xc4\xe3\x4a\x4e\xa8\x56\xf9\x22\xa2\x0c\x65\xa7\xc6\x50\x53\xe3\xae\xf1\x4b\x63\xa1\x8c\x0b\xe6\x77\x55\x45\x21\xd7\x6d\x16\xe8\xa4\xc3\x92\x4d\x98\x90\x46\xf2\x47\xbe\xc5\xee\xb2\xa2\x8d\xa5\x96\x57\xea\xba\xf6\xd5\x92\x3f\x55\x1b\xfd\x4f\x9d\x9f\x38\x40\x3d\x46\x22\x46\xb8\xb8\x70\xb1\x24\x78\xa8\xbe\x42\xd8\xc9\x5b\x4a\xa9\xa3\x32\x1c\x4e\x4f\x79\x51\x45\xd6\x43\x76\x42\xeb\x8e\x09\xe7\x1b\x13\xe7\x2c\x5d\x7b\x10\x3c\xad\xda\x98\x0c\x31\x6a\xc4\xf1\xca\x0e\xa5\x9c\xb1\x06\x53\x2a\xcd\x3b\x3e\x22\xba\x1a\xf8\xfa\xc6\x19\x4d\xa0\xf9\xb6\x0a\xb3\xa3\x91\x19\xd8\x1d\x8a\x75\xf8\x92\x62\xcd\xbd\x83\x4d\x84\xcd\x0d\x6c\x90\x13\x17\xab\x1c\x2c\x2e\x77\xab\xe3\xaa\x6f\x63\xe3\xe9\xea\xb9\x9f\x86\xbe\x51\x7a\x6b\x7c\xd1\x3e\x8c\x06\x26\xb3\x45\xc1\xa2\xc6\xc2\xa7\x57\xfd\x8a\xb0\xe6\xb5\xa0\xe8\x16\xec\x28\x4a\x22\xf6\xec\x71\xe0\x82\x48\x8a\xaf\x57\x9f\xd6\x05\x86\x51\x0a\x85\x13\x9c\xd5\x82\x59\xa6\x87\xe7\xde\x17\xd5\x70\xb8\xa6\x52\xca\x2f\x7c\xe9\x0b\x1d\xef\x4d\x71\x1e\x81\x6f\x94\xf6\xc0\x82\x85\x2e\xa0\x47\x99\xf8\x3e\xae\xef\xe0\xc4\x82\x3d\xc2\xb9\xc6\xe2\x07\x8d\xe5\xf1\x8b\xdd\xa1\x35\x4b\x2b\x8a\x3c\x04\xaa\x2f\x7c\xad\x0a\xed\xe3\xb2\x17\x47\xf9\xd0\xf6\x09\x40\x27\x4e\x3c\x39\xe4\xe2\xea\x57\x1f\x04\x0a\xf6\xd5\x89\x6a\x1b\x7e\x55\xed\x90\xdc\xc6\x31\x15\x06\x7c\x07\xd8\x44\xaf\x22\xc5\x57\x9f\x47\x1a\x75\x74\x59\xa3\x8e\x2e\xb7\x01\x53\x47\x69\x62\xb2\x70\x88\x77\x81\xc5\xc4\xee\xe3\x6b\xf5\x2e\x83\xcc\xf4\x4b\x48\x1d\x1f\x96\x73\x11\x89\x4a\x66\xd7\x52\xfd\x80\xaf\x6d\x01\x1b\xb8\x42\xb7\x54\x36\x3e\xd1\xc2\x13\x9f\xa8\x3d\x9e\x86\xa1\xc9\x5d\x85\xd3\x65\xd6\x5c\x1e\xb8\x49\x7c\x7c\xf0\x60\xb7\x1a\x61\x8f\x61\x17\x38\x6a\xf5\x21\xd1\x0f\xda\xaf\xe4\xe9\xd3\x64\x65\x14\x15\x2b\xb0\xe1\x22\x97\xa9\xb5\x33\x6b\x05\xc5\x10\x0c\x92\x2f\x31\xa5\xcc\xd9\x40\xab\xca\xfd\x70\xa2\x54\x13\xce\x6a\x0b\xf7\xc3\x40\xd1\x5d\xa7\xc3\x24\x2f\xd2\xe5\x84\x46\x0e\x5e\x14\xb8\x4b\x91\x78\xde\x41\x84\x97\xbe\x13\xd2\xed\x87\xd0\xe6\xb9\x00\x04\xb0\x9a\xef\x07\xaa\xf1\xe8\x7e\xe3\x7c\x3d\x76\xa0\xbb\x90\x99\xb2\x5f\xc6\x42\x9e\x83\x14\x01\x3a\x06\xf9\x5a\xa5\xdc\x7b\x59\x99\x58\xa0\x0a\x1c\x73\x67\xf5\x0e\x7c\xa3\x82\x85\xdc\xc6\xfd\x74\x84\x47\x71\x0a\x0f\xaa\xfc\xa4\x64\x9f\xd0\xf3\x9b\x45\x26\x9e\xf2\xa6\xe4\x9c\x92\x73\xfc\x3d\x78\xad\xd2\x7d\xab\xb3\x3f\xe3\x34\x2b\x6c\x36\xa5\xb8\x3d\x01\x19\x94\xbe\x7d\xd5\xd8\xb0\xd9\xd2\xe0\x3e\xd7\xb5\x26\x8b\x23\x9b\x4d\xd3\x51\x8e\xa1\xbe\x1b\xf8\xa8\xe9\x1c\x82\x48\xb8\x93\x3f\xa4\x39\xc0\x4a\xfe\xa4\xa6\x1f\x9c\x87\xa6\x18\x8a\x47\xae\xd2\x48\xb3\x4e\x0e\xc6\x17\x46\x85\x8b\x61\x87\x07\x73\xad\x29\x21\x8e\x2b\x9a\xcc\xfa\x86\x2a\xae\x72\x9b\x80\xa0\x9f\x9a\x2f\x33\xdb\x5d\x36\x59\xb2\x65\x59\xc3\xb1\x15\x3e\xd4\x7d\x7a\x26\xf3\x21\xdb\x66\x38\x2d\x8c\x25\xe1\x9b\xb6\x0e\x64\xca\x8b\x50\xc6\x5c\x35\xf9\x78\x05\xd9\x8e\x93\xcb\x7d\xd4\x28\xcb\x53\x33\xf6\xd7\xca\x88\xa9\x35\x1d\x97\x8f\x52\xb4\x68\x51\x07\xed\x2e\xa5\x85\x54\x22\xb8\x62\x17\x28\x14\xd1\x45\x05\x56\x0e\xe9\x7d\xfa\xaa\x1a\xb4\xae\xac\xc0\xba\xc7\xad\x64\x65\x5e\xec\xf2\x8f\xba\x67\x46\x31\x40\xc2\xba\x62\xb8\xf7\xae\xaa\x1e\xcb\x4d\x2a\x9f\x8b\xe8\x15\x76\xb4\xa3\x2d\x3b\xec\x39\xea\x5a\x5e\x21\x33\x51\x6e\xa7\xfd\xc7\x99\x2f\x47\xc2\x26\x1f\xbd\x82\x9e\x47\x12\x27\x5b\xea\x01\x7f\xa3\x7b\x70\xf6\xf1\x1a\xbb\x2f\x2d\x35\x4c\xd6\x0d\x7c\xa5\x30\xf2\x29\x42\x2b\x04\xa1\xf0\x76\x18\x5e\x8c\xc3\xf7\x56\x1d\x8b\x5b\xad\x71\x01\x81\x76\x14\xb9\x5f\x65\x67\x04\x29\xda\xd6\xda\x31\x30\x3d\x8b\x76\xbd\xcd\xab\xac\xe8\xa7\x72\x74\x43\x6b\xfa\xf9\x54\x8d\xa8\xca\x67\xcf\xd7\xe9\xd1\x30\x88\xe7\xdc\x99\x6b\x16\x32\x13\xf5\xa7\x7d\x66\xf0\x01\xb6\x11\x1e\x02\xe4\xc8\x08\x67\x7e\x06\x8d\x5c\xc8\xc8\xec\x5e\xf5\x4e\x8a\x2d\xb3\x74\x6c\x4d\xb2\x53\x2d\x9b\x0d\xcd\xd8\x7f\x59\x51\x4a\x5f\xd6\xfc\x09\x0a\x17\xc1\xe0\x52\xaf\xae\xe0\xba\xb3\xa2\xc1\x90\xf0\xe5\xb4\xcf\xaa\x57\x83\xd7\x75\x03\xc1\x00\xdf\x34\x8a\x6b\x5e\x6a\x32\x2a\xa2\x7c\x38\xa5\x10\x69\xf4\x04\xce\x69\xac\x1e\x13\xe8\x91\x9b\xca\x5f\xc9\xd2\x21\x87\x06\xd8\x2c\x3f\xd4\x3b\xe7\x87\x2a\x83\x94\x9b\xa4\x4f\x1c\x2f\x68\x4b\x65\x0a\x73\xc4\x6c\x60\xfa\x95\xdd\xd6\x71\xf4\xa8\x5c\xbf\xc2\xd9\xb2\x4d\x75\x13\x87\xc3\x74\xcc\x9a\x91\x8e\xed\x3c\xd0\x6d\xb3\xde\x7d\x5f\x4a\x0b\x69\xb1\x44\x30\xba\x11\x28\xb9\x89\xfb\x81\x6a\xdc\x92\x78\x58\xaa\x04\x35\xee\x6c\x69\xbb\x8b\x92\xdc\x63\xdd\x98\xc1\x59\x2b\x0e\x5d\x76\xf0\xd7\x71\x66\x17\x6c\x46\xb4\x47\xde\x4f\x3c\xa9\x92\xa9\x27\xdb\x98\x0a\xe2\xa8\xb7\xc2\x10\x21\x38\xf5\x5c\xba\xe0\x9b\xb6\xe2\x31\x09\x6c\xe5\x5b\xcd\x97\xe3\x28\xf3\x2d\xcb\x43\x3b\x12\xb1\x02\xe6\xa2\xc5\x2c\x60\x6b\xa3\x13\x05\xe3\xb2\xde\x48\x96\xcf\x1e\x25\xae\x0d\x2a\xb4\x4f\xf9\x9f\xba\x83\x2d\xaa\x69\x16\xc5\xc1\x6d\xdb\x96\x63\x93\xe7\x1c\xf5\xd4\xc4\x9c\xf9\x46\xad\x97\x71\x14\xc7\x3b\x69\x90\x6b\xb2\x4e\x8e\xef\xe1\xd8\x01\x77\xad\xba\x69\x4e\xe1\x85\x90\x94\xb9\x17\xf8\x2a\xc5\xaf\x2b\x95\x31\xbb\xb0\x10\x85\x11\xf9\x15\x8e\xb7\xe1\xeb\xf4\xf2\x82\x68\x72\xd2\x7c\x69\xaf\xe7\x2a\xce\x0e\x89\xea\xe0\x35\x1a\xdb\xbd\x60\x92\x90\x15\x96\x30\xb6\x6b\x9a\x61\x42\x51\x49\xdf\x05\xaa\x4a\x5a\x42\x5b\x20\x78\xfd\x28\x1f\xab\x56\x41\x94\xc5\x1f\xa8\x12\xf9\x83\xb6\x4f\x2d\x10\xe5\x68\x54\x62\x21\xc8\xf1\x4d\x6b\x47\x58\xe2\xb7\xba\xff\x87\x0e\x75\xe3\x34\xc7\x79\x0f\x83\x7d\x0b\x39\x6f\x79\x38\x1a\x4c\xcc\xed\x9b\x81\xaf\xf0\x4d\x81\x2e\x5d\xe4\x02\xb7\xfa\x6e\x07\x0f\x56\xbe\x5b\x12\x0e\xa3\x5c\xc6\x4e\x5c\x42\x9a\x50\x61\xcd\xf8\x8c\x0b\x67\x42\xd3\xb7\x39\xd9\x56\x09\x4b\xe9\xb9\xd5\x63\xbc\xc4\x9e\xce\x0d\x5d\x4d\xde\x3d\xb3\xf5\x8d\x2a\x5f\x63\x6c\xb3\x8e\xa7\x7d\x01\x37\xa1\xc8\x3c\xbb\xb0\x5a\x0a\x3f\x3b\x95\x4c\x21\xb7\x80\x23\x77\x73\x71\xa2\x2a\x6f\xe0\x9e\x53\x14\x1c\x22\x3a\xa8\x01\x34\x53\x0a\x66\xb3\xbc\xb8\x32\xa5\xfa\x8c\x3f\x50\x41\xfa\x55\x75\xd4\x9c\xaa\xe5\x4e\xa2\x81\x9d\xee\x7c\xe1\xc5\xcd\x0d\x85\x6b\x85\x80\x99\x53\xe1\xd4\x9d\x74\x2d\x38\x83\xaf\x95\x69\xe1\xd6\x0d\x1e\xf7\xbc\x7a\xf4\xf3\x8d\x3d\x49\xf5\xa1\x95\x5e\x99\x25\x53\x5a\xe1\xe5\xa2\xce\xb4\xdf\x0b\x7c\x0e\xb8\x59\x94\x3b\x76\xe0\xb9\x6e\xba\xb0\xb0\xb3\xae\x60\x77\x98\xa3\x87\xc1\xbe\x19\x8f\xf4\x7e\x80\xf1\x75\xc5\x50\xd7\x7c\x71\x5b\xa5\x89\xee\xd7\x9a\x9a\x86\x85\xe9\x78\x3a\x9f\x33\x70\x27\xf8\x46\x55\x17\x96\x6d\xbe\x43\x35\x7d\xdd\x54\x0a\x9d\xbf\x45\xf3\x8f\x65\xc5\x49\x66\x78\x4e\x1c\x29\x61\x52\x76\xcf\x6c\xdd\x51\xc4\xe6\x35\x1a\x97\x85\x2b\x87\x33\xe1\x1c\xcc\xb1\xb0\xcf\xa9\xc6\x94\x2c\x5a\xb2\xa4\x81\x27\x7d\xa1\x1d\x97\xa0\xdc\x35\xa3\xe9\x32\x28\x91\x85\x81\x7e\xcd\x03\xc0\x7e\xff\x57\x26\x5e\xf4\xf0\x8f\x29\xd3\x2b\xb9\x8b\xe6\x98\x77\x7b\x69\x31\xdc\xd1\x39\x78\x50\xc4\x17\x29\xb9\x26\xbd\x44\x14\x96\xc3\xb3\xfe\x1e\xb5\xd8\xd7\x5c\x33\x71\x51\xfd\xa3\x0f\x6c\x36\xca\x3b\x75\xac\xa8\x53\x8a\x39\xd5\x70\xe8\x67\x8f\x76\xf3\x95\xd1\xd8\x14\x1c\x6d\x83\xe6\x01\xf8\x12\xbe\x6e\xc3\x09\xf4\x4d\x14\x03\x27\x20\x72\xa8\x1e\x98\x7d\x79\xf2\x53\x2a\x97\x13\xc6\x26\x03\x3a\x78\x4a\xc3\x7b\xe8\xe9\x5d\x0f\x88\x43\x7b\x68\x29\xc2\xa8\xb2\x3a\xec\x17\x20\xa7\x80\xf0\x94\xaf\x5b\x08\x73\x96\x0d\xa0\x39\xb4\x65\x04\xae\xee\xcf\xb7\x73\x9f\xea\x30\x0d\xd3\x38\xea\x9b\x95\x69\x8f\x16\x3f\xc7\xb9\x6b\x04\x42\x6f\x4f\x3c\xda\xe7\x6e\xa0\xd0\x0a\x1f\xba\xe3\x05\x09\x64\xbb\xa3\x26\x2f\x5a\xad\x20\x58\x87\x47\x81\x16\x44\x57\x8c\x18\xd7\x95\x5a\xd3\x85\x66\xa1\xf8\x85\x23\xdd\xd8\x38\x21\x17\xa4\xd4\x6e\xa8\x9e\xfe\x1b\x2a\x50\x5d\x4c\x20\xce\x09\x8c\x3d\xd2\x8b\xa7\x34\x73\x37\x70\x35\xb0\x89\xb7\x35\x2b\x4d\x94\x44\x4b\x46\x58\xfe\x9c\x9e\xab\xea\xd0\xf7\x4c\x89\x23\xcb\x2d\x5b\x22\x77\x59\xfd\x19\x5f\xab\xb4\xf6\xa0\xfc\x6a\x35\xef\x40\xfc\x61\x93\x83\xbe\x92\xaf\xdb\xdc\xa5\x7e\x64\x73\x8b\x94\xaf\x90\x20\x76\x3c\x21\x62\x1b\x81\xb5\xc9\x32\x93\x0c\x24\x24\xe6\xe4\xba\x56\xc3\x7f\xcd\x31\x6c\x9b\xe5\x6c\x85\xd0\x92\x70\x9e\x1f\x72\x7c\x85\x7d\xa1\xd1\x1c\xd0\xbb\x14\x9a\x63\x4f\x27\x39\xce\xd2\x7e\x19\xda\x2c\x9f\xf6\xed\xa9\xf3\x13\x95\xd5\x66\xfa\x78\x27\x18\xeb\x41\xd2\x1f\xd4\xf2\x10\x51\x92\x17\x99\x35\xa3\x8e\x6f\x99\xbe\xa0\xd9\xa2\x2f\xb4\xc5\xa8\xa4\x8e\x0f\x47\x15\x07\xc8\xfb\x78\x4d\xbe\x51\x35\x49\xe8\x90\xa1\x17\xa6\x72\x4e\xd8\x8e\xc3\xb7\x13\xa3\xde\x02\x52\x09\xcd\xd8\xf4\x62\x8b\x2c\x87\x23\x5a\x3a\xa6\xb8\xd5\xdd\x5c\xdc\x6e\x60\x0d\x7f\xd1\x25\x1c\xd8\x23\xac\x09\x15\x08\xdb\x48\x13\x80\xf9\x5c\xd7\x94\x79\x91\x99\x58\xa0\xf4\x92\xed\x53\xe4\x4d\x97\x5b\x8d\x56\x51\x26\x89\xd4\x5d\x61\xa8\x1e\x05\xde\x80\x3d\x72\x09\xab\x25\x9b\x0c\x2c\x64\x8d\x9c\x46\xd0\xba\xd2\x08\x5a\x57\xdd\x9a\x4b\x26\xee\xdb\x57\x94\x64\xc2\x49\xa5\xe6\x71\x32\xd0\xe7\x7b\x19\xf5\x95\xc8\x3d\x5a\xed\xf9\xda\xa1\x96\xfb\x69\x3a\xca\xfb\x06\xdb\x05\x40\xfa\x53\x0a\x54\x7f\x4a\xd9\xba\x22\x33\x7d\x9b\xe5\x24\x95\x0b\x1f\x0d\x80\x3a\x9c\x81\xa7\x03\x9f\x0b\x63\x21\x4c\x1c\x2d\xd7\xb1\xe4\x60\x77\xc1\x97\x2b\xfa\x0e\x2a\x27\x05\x8f\x05\x88\x8e\x7b\xb5\x34\x62\x52\xbc\x02\x00\x0a\xab\xcc\xe9\xc6\xfb\xb3\xea\x4c\x8e\x32\x66\x2d\xc6\xb2\x5f\x85\x4b\xc1\x37\x2d\x69\x98\x23\xdd\x3c\x5d\x8a\x2c\x92\x7d\xb5\x46\x7c\x49\x7d\x7a\xab\x35\x5e\x21\xd6\x0e\x46\xc2\x38\xda\x6b\x8f\x35\xb9\xa5\x30\x77\xd0\x75\x08\x21\x20\x85\x80\xfa\xad\x40\x85\xb3\xb7\x03\xaf\xc5\x05\x91\x4e\x8c\xe0\xb7\x35\xf5\x49\x5a\xe6\x45\x9a\x30\x64\x00\x27\x28\x13\xae\xc3\x24\xff\x33\xd5\xc9\xcd\xde\x2b\x66\xec\x8e\x1a\x92\x5e\x54\xec\xf1\xc5\xb1\xdb\x70\x65\x61\x5b\xa6\x91\xd4\xc1\x5e\xe1\x0c\x9d\x83\x82\x7b\x3d\xad\x8b\x81\x82\x80\xdd\x40\xa3\x80\x63\x8c\x71\x6f\x71\x87\xd6\x01\xdc\xec\x9b\x64\x6c\x81\xc6\x45\x9c\x0d\x44\xf4\x7e\xd5\xc6\x38\x30\x71\xbe\x9c\x66\x72\x9e\xb7\x72\xe4\x8a\x35\x8f\xcd\x52\x94\x0f\x3b\xbe\xbf\x0a\xa9\x0f\xbe\x76\x0e\x76\x54\x44\x89\xcd\x4c\xb6\x32\xe5\x3b\x10\x1e\x04\x7e\x4d\x5d\xa0\x0e\x12\x61\x02\x6e\x09\x36\x43\x1b\xdb\x5e\x26\xc0\x54\x61\x41\xf7\x29\xa0\x77\x14\xb1\x8a\x4d\xa2\x38\x66\x72\x61\x61\xe7\xf1\xc1\xc4\xa9\xc0\xcf\xe3\x20\x33\xbd\x1e\x9b\x1b\x0c\x22\xb4\xc7\xf8\x5a\xa1\x26\xc2\x38\x1a\x93\x1b\xe1\x5a\x85\x0e\x1f\x70\xad\x42\x02\x37\x2c\x93\xbe\xcd\x96\xd3\x6c\xd1\xa2\x84\xab\x72\xf0\x3e\xdb\xea\x9b\x9a\x37\xda\x5a\xfc\x89\xc1\x8b\x4f\x23\x6c\x4a\x9c\x26\x7c\xdd\xde\xcc\x34\xc8\xd2\x65\xe7\xb5\x28\x04\x8b\x47\x06\x6f\xdd\x60\x47\x5f\xa8\x69\xb5\xc1\xa9\xe8\x28\xac\x56\xc7\xc1\xb3\xf3\xa1\x19\xf1\x68\x62\x3d\xae\xa9\xa3\x6e\xad\xd1\xd4\x7f\xec\x00\x1d\x35\x59\x14\xbb\x5a\x84\xe6\x54\x10\xb2\x05\xdf\x4b\x69\x5f\xb6\x59\x48\xb1\xa1\x6f\x0b\xbe\xa3\xfe\xf6\x8e\x02\x47\x10\x23\xd0\x67\xaa\x79\x10\xe9\x11\x65\x6e\xde\xc1\x0e\xc2\xc1\x73\x53\x37\xfc\xbe\xc5\x47\x35\xf3\x5d\xe2\x20\x03\xc6\xe9\x2e\x6d\x0e\xcc\xe4\x1a\x72\x63\xfc\x1f\x81\x52\x4e\xfb\xa8\x86\xaa\xf2\xf8\xeb\x1f\x07\x8a\xed\xe5\x46\x35\x51\x9b\xef\x91\x21\x17\x8c\xdb\x53\x4a\xfd\xa2\x6f\xf3\x71\x66\x4d\x9f\x4e\x7f\x58\x31\xde\xcd\x7c\x43\xeb\x19\x7e\xdc\xdb\xf4\x23\x7c\xdd\x26\x8f\x15\xdb\x25\xcb\xf5\x44\x69\x2b\xa9\x3e\x81\x32\x15\xa0\x2c\xe2\x79\x3d\xed\x0b\x2f\xb9\x0d\xcb\x22\x85\xb2\xca\x16\x94\x31\x5f\xb7\x9d\x94\x83\x2c\xa2\xfc\xda\x94\x02\x65\x23\x1d\x88\x9e\xd0\x7b\xaa\x2f\xe7\xaa\xce\xdd\xdb\xb8\x58\x36\xac\xdf\xe4\x70\xb3\xcf\x4b\x5b\xc8\x27\x81\x78\x56\xa3\x68\x11\xd2\x10\xd2\xec\x48\x73\x07\xd3\x70\x46\xf1\x23\xfe\x80\x3e\x8d\x9c\x54\x13\x79\xf2\xe2\xec\xd1\xae\x29\x0a\x3b\x1a\xb3\xd2\x0a\x53\xd7\x05\x9e\xca\xfd\xf8\xdb\xcd\x84\xf5\x33\xcf\x50\xa9\x00\x3e\x0a\x5e\x45\xa1\x5e\x66\x1d\xd3\x82\x5f\x85\x89\xcd\x96\x6c\x47\x29\xa8\x9c\xd4\x0a\x2a\x27\xdb\x18\xd2\xf3\x22\x8d\x6d\x82\x6d\xcd\xe2\xac\x78\x2c\x51\x6a\x6d\x71\xd8\x86\x36\x16\x87\x0d\xbb\x1f\xc8\x7f\xbe\x9e\x78\x0e\xbe\xd0\x66\x45\xb4\x40\x2a\x17\x08\xdb\xb8\x6f\x97\xc2\x36\xe9\xe1\x6d\xc2\x67\xe7\xbb\xb9\xb5\x1d\x45\xf0\x84\x10\x4c\x5a\xb4\x3e\xe3\xf6\x7f\x9a\x15\xf1\x0a\xda\x1d\x30\x27\x97\x54\x2e\x18\xed\xc8\xa8\x63\xdd\x75\x33\x3a\xb6\x03\x7e\x74\xf1\x48\xe9\x77\xc4\x57\x6d\xe1\x9a\xb3\x61\x68\x93\xea\x64\x9e\xd6\xe8\x9d\xad\x80\x1f\x0f\x12\xaa\xa1\x7f\x9a\x46\x88\x1a\x57\x96\xa2\x24\x04\x98\x77\xd6\x41\xef\xb4\xde\x14\xad\x67\x38\x4b\x1c\x0d\x73\x8f\x93\xd2\x52\xfb\x46\x1b\x1c\xbd\x97\x45\xf9\x22\x6d\x21\x2d\xaa\x22\x1a\x4a\xde\x1d\xec\xd9\x3c\xea\xdb\x0e\x81\x93\xb8\x8b\x44\xa1\x7a\x4f\xb6\xe2\x88\x06\x36\xa1\x38\xb0\x5f\x67\x93\xac\xde\x01\xd4\xaa\x53\x33\x5a\xf9\xb1\x05\x47\x34\xdb\x2d\x4c\x16\x2d\x2c\xa0\x21\x02\x80\x8a\xd7\x55\xb7\x21\x0b\x9c\x0b\x26\xdf\x47\x71\xe3\x34\x2b\x32\xb3\x82\x9c\x21\x36\xc1\x7b\x13\xa5\xa0\xf1\x5e\xb0\x57\x21\xb7\xfa\x3b\x7c\x67\xcf\x45\x05\x16\xba\x37\xf1\xb2\x67\x57\x28\x73\x21\xf9\x51\xa5\xbd\x78\x4e\x31\x51\x98\x81\xa5\x6c\x9f\xf0\x98\xf8\x66\xf9\x75\xad\x4e\x4e\xcb\x59\x94\xca\xb5\x27\xbd\x1c\x71\x89\x43\x40\x38\x64\xc6\xc5\x11\xf2\xfb\x36\xcd\x43\x93\x29\x4c\xe6\x36\xb4\x9f\xf0\xcd\x6a\x8b\xdb\x31\x4a\x63\x1b\x96\x31\x7f\x0a\x26\x02\x70\x1b\xbe\x6e\xd1\xb7\x3d\xd2\xcd\xec\x18\x82\x4f\xe4\x05\xc0\x0b\x7c\x17\x96\x1e\x37\xeb\x5a\x70\xe3\x63\xd5\x8c\x9a\x2f\x47\x23\x48\x55\x7b\xf2\xd0\xfb\x35\xf2\x50\x3f\x59\x49\x9a\xe4\x36\xc9\xd9\x10\x49\x96\x99\xa6\x9c\x6f\x3e\x35\x59\xb1\x68\xe3\x38\x1d\x70\x94\x8f\x53\x0d\xcc\xff\xd8\xfb\x5c\x85\xc2\x50\x6f\x9f\xd1\xf9\x94\xa5\x34\x5e\xb2\x53\xca\xcf\x40\x38\x82\xfc\xd7\xf5\x89\x47\xd0\x9c\x74\x2e\x22\x89\x1b\xb3\xf6\x23\x52\xa3\xb7\x02\x95\xb5\xbd\xd5\xd6\x81\xd0\xcb\xca\xc8\xa7\xbc\x9d\x94\xa6\x6b\xc3\x39\xe3\xe8\x15\x16\xe2\x88\x33\x1b\x38\x72\x4f\x4e\x94\xdc\xcd\xc9\x5a\xa8\x32\x8a\x5e\xc6\x58\xd5\xb4\x22\x24\x8f\xa7\x50\xc7\xd6\x16\x8f\x79\x3e\x9f\xfb\xca\x79\xbc\x33\x51\x58\xd6\xfb\xb0\x69\x70\xdf\x3b\x84\x75\x40\x61\xfe\x6a\x53\x33\x5e\x32\x26\x95\x57\xce\x5f\x45\xc6\x96\x3f\xd0\xd8\xc4\xa4\x81\x96\x18\x97\x98\xe0\xce\x16\xac\x1b\x69\x73\x69\x2b\xa9\xa4\x0b\x0b\x11\x94\x35\xe6\x1d\xec\xa3\xe3\x3a\x31\x2f\x37\x2c\xaf\x17\x0e\xb2\x4c\x0a\x28\x4e\x87\xca\x2e\xbf\xad\x60\x01\x63\x13\x25\x05\xf1\x58\x7b\x52\xa1\x1b\x13\xa5\x12\x7b\x1a\x15\x0d\xf8\xe5\xd8\x2c\x78\xe0\x37\xb5\xda\x55\x96\xe6\xf9\xce\x7a\x17\x78\x35\x98\x7c\x33\x51\x07\x11\xfc\x30\xd5\x38\x2c\x55\xf0\x8b\x35\x30\x93\x0a\x35\xcd\x70\x4a\xc5\x52\x97\x54\x04\xfe\x9b\xda\x2b\x6e\x13\x34\x3b\x02\x9a\x89\x88\x3d\x08\xc1\xed\xd1\x1b\xc9\xa9\xe1\x7f\x69\x85\xb9\x90\x60\xdf\xde\x54\xb5\xa0\x37\x15\x32\x67\x9c\xa5\x4b\x29\x44\xd2\xaa\xaf\x71\x3c\x6d\x87\x0e\x39\xa1\x62\x95\xf5\xb2\x89\x2d\xa2\x70\x5a\x65\x08\x59\x9c\x9b\x91\xc9\xda\x8b\xa6\xef\x90\xde\x86\xa7\x5d\x77\x5b\x92\x53\x32\xd2\xe7\xfe\x5d\x4a\xc4\x0b\xd6\x5e\x56\xf9\x1e\x47\x70\x8a\x82\x36\xaa\x91\x3f\x08\x94\x12\x02\x9a\xb8\x84\x60\xd9\x37\x48\x6e\x6b\x34\x03\xcf\xcd\x55\xe6\xcf\x44\x19\xd9\x3e\xc0\xfe\x30\x03\x08\xaf\x1f\x28\xc5\x80\x75\x15\xc3\x0f\xd2\x6c\x60\x85\x0e\x1c\x73\x0a\x15\x02\xbe\x6e\x48\x3b\x52\x03\x4c\x34\x18\x0a\xdb\x26\x0c\xc3\x9d\x40\x29\x9a\xdd\x69\x01\x9f\xcc\x57\xa1\xdc\xa8\x27\xfb\x4a\x1a\x6a\x69\xbd\x48\xbc\xee\x91\x01\x8b\xa6\x57\xc6\xf8\x4b\x51\x6d\x57\xce\xe4\xa5\x40\xd7\xa0\x41\x4d\xbe\x9b\x1e\x46\xe6\x67\xea\xc5\xc3\x07\xe4\x65\x03\x1d\x0b\xe9\x36\x8b\xd7\xb8\xd0\xcc\x77\x98\x6d\x29\x51\x78\xd7\xfc\x5a\xad\x5c\xd1\x68\x3d\x38\x38\xdb\x1d\x9b\xac\x88\xc2\x68\x6c\x12\x86\x9a\xa3\x0f\x73\x76\xf3\xaa\x42\x87\xf7\x89\x85\xbe\xe3\x55\xb5\x60\xf9\xf9\x5a\xc9\x6e\xc6\x65\x12\x0e\x15\x7e\xee\xac\xc2\xcf\x9d\x6d\x67\x16\xcd\xad\x5d\xd4\x22\x87\xdf\x0c\x14\xe5\xc7\x37\x5b\x38\xa5\x66\xab\x8b\xc5\xea\x61\x36\xcf\x57\x8f\xb1\x79\xbe\x96\x22\x4b\xd3\xf8\x31\x05\x06\xb9\x13\x28\xee\xfb\xd3\x9a\x9b\xe2\xf2\x44\x77\xba\x70\x67\x9c\x80\x5d\xaa\xc7\x46\x7a\x75\x37\x19\x69\xc6\x2f\x05\x0a\xe6\x85\x44\x8f\x30\x9e\xfb\x0d\x9e\xe6\xc3\x29\x5f\x71\x7b\xa4\xc5\x67\x77\xcc\xe0\x27\x51\x31\x3a\xef\xdc\xe5\x70\x25\x8c\x25\x56\xda\xdc\xb5\xea\x7d\x05\x68\xcf\x08\xe0\xcb\xef\xf8\xaf\xa6\x51\x52\x80\x76\x48\x12\xd0\xbf\xa6\x13\xd0\xbf\xa6\x9e\x27\xcb\x57\x00\xda\x43\x8e\x92\x55\x01\x11\x79\x31\x8a\x5a\x84\x13\x54\x28\x3f\xb3\x4f\x91\xe8\x10\xb8\x09\x60\x17\x4d\xe7\x82\xca\x04\x83\xaf\x91\x8c\x7f\xd4\x88\xed\x9f\x9f\xa3\xe4\xf3\x42\x66\x46\x52\xca\xc5\x88\xff\x40\x31\x4b\xfc\xc0\xcb\x14\x87\x61\x6c\xa2\x11\x27\x58\x04\xa3\xe2\xe9\xbb\x5b\xcb\xdd\x69\xaf\x30\x91\x47\x87\x71\x05\x38\xd0\xd5\xe0\x96\x58\x69\x21\x2d\x93\xfe\x8e\xda\x2e\x56\x58\x86\x77\x55\xb7\xd3\x3d\xd5\xa7\xc1\x6e\x35\xd6\x50\xb3\xe8\x57\x59\x8b\xc2\x9a\xd0\x57\x84\x50\xcb\xf9\x5d\xda\x09\x7c\xdd\x08\xac\x9e\x9f\xa3\xa6\x48\xc5\x74\x8c\xc0\x9e\xaf\xdd\x42\x29\xb2\x68\x30\xb0\xd0\xfb\x90\x86\x42\x95\xb3\x6a\x1e\xef\xd5\x76\xc9\xd2\x9e\xb3\x5d\x52\xd5\xd0\xd5\x0e\x75\x4e\xa7\x71\x14\x46\x36\x9f\xee\x7c\xe1\x45\x69\x0f\xa2\xe7\xc0\xab\x9f\xd2\x4a\xb5\xe7\x6a\x79\x4e\xc9\xa4\xf5\x62\x9b\xf4\xa5\x4f\x5d\xe9\x10\x3f\xe7\x14\x8a\xb7\x66\xe3\x0f\x1d\x82\x34\x75\xa1\x9c\x37\x59\x58\xbe\xfc\x75\xb5\x41\x5f\x70\x90\xca\xf4\xa4\xd8\xcc\x14\x2a\xf4\x52\x4e\x5c\x47\x8b\x22\x38\x3f\xfc\x1b\x2a\xce\xa2\x6a\x6b\xb2\xa3\x73\x78\xde\x29\x73\xd1\x0a\x87\xb5\xda\x50\x5a\x77\x6f\xc1\x3b\xe1\xff\x98\x78\xfd\xb4\xb7\x6b\x8c\xa2\xd4\xb8\xb4\x93\x2a\xa7\x58\x1d\x90\xc7\x41\x6e\x69\x83\xca\xab\x58\x4e\xb7\x74\xa7\x18\xc8\x87\x91\x9b\xbd\xad\x24\x26\x36\x1a\x6f\xfc\x0b\xdd\x91\xc9\x34\x2d\x18\xe7\x57\x25\x04\xda\xba\xa8\x0e\xce\x76\x47\xa6\x0f\x8e\x53\x3c\x10\x67\x85\x31\xf1\xcc\x16\x8e\xec\xcf\xed\x86\xdf\x7f\xe8\x10\xd1\xef\xa2\x31\x8d\x73\x3f\xb0\x8e\xa7\x14\x47\xf8\x29\x75\xf0\x2d\x9b\x81\xcd\x3b\x9d\x83\x07\x79\x42\x1e\x29\x7d\xfb\x47\x8d\x6d\x7b\xec\xc0\x73\x5d\xfb\x72\xa1\x84\x71\x19\x95\x0a\x3b\x26\x10\xd5\xad\xfb\xf6\xd9\xae\x05\x5b\x1e\x59\x31\xa0\x2e\x10\x7a\xf3\xb5\x42\xcb\x45\xc9\x42\x6c\x8a\x5a\xae\x16\x64\xea\x7c\xdd\xd6\xc4\x9d\x98\x2c\x4b\x97\xe5\x91\x30\xb4\xdc\xc8\xc3\x37\xca\x01\x19\x95\x39\x22\x3d\x9a\x4f\x44\xda\x08\xd6\xf9\x5a\x99\xe1\x03\xe9\x0a\xb5\xf7\xa3\x40\x7a\x0e\x53\xc7\x37\x6d\x49\x5d\xd0\xe5\xd0\x3e\x12\xc2\xec\xea\x35\x84\xd7\x5a\x22\xa5\x81\xcd\x0c\x13\x9e\x3b\x41\x15\xdf\x40\xa8\x41\x18\x0f\x1b\x79\xe0\xd9\xa3\x04\x63\x8c\xa3\xc4\xd1\xf2\x48\x3a\x82\x5e\x48\xf2\x14\x6d\xac\xb2\x89\x19\x8f\xb1\x16\xb9\x96\x19\x78\xd0\xe5\x95\x9a\xfc\x13\x65\x69\x8f\x1d\xe0\x77\xe5\xf3\x98\x6f\x14\x82\x60\x58\x8e\x8c\x28\x58\x09\xff\x62\xb5\xd3\xa4\xab\xd7\x97\x15\xae\x29\x34\x3b\xf3\x12\x0a\x09\x86\xe2\x29\xfd\xb0\xb1\x1f\x8e\x1d\x98\xeb\xf6\x4b\xb4\x4b\xc3\x89\x7e\x3d\xf0\xca\x5a\xaf\xd7\x54\x15\x86\x69\x1a\xe7\x3b\x3d\x06\xe4\x82\x06\x99\x5d\x9c\xd4\x95\x16\x3d\xcf\x0f\x7c\x5e\x94\xcc\x6e\x52\xee\x81\xaf\x7d\x2f\x54\x9a\xc6\x95\xd9\x52\xf8\x50\x4a\xbf\x39\x44\xc9\x56\x44\xa9\xd0\xbc\x37\xf7\x4f\x37\x2d\xb3\xdc\xc6\x4b\x72\xac\x22\xcf\x76\x12\x6d\x6d\x7c\xd3\x8a\x6c\xcd\x6d\xdf\x71\x47\x62\x78\xcf\x69\x4c\xd4\x39\x95\x3c\xcf\x97\xa3\x85\x82\xd7\x86\xa3\x54\xaf\x06\x59\xd6\xe4\x56\x73\xfe\xe2\xec\xd1\xae\x43\x2d\xd6\xdc\xec\x57\x75\xc2\xf3\x55\x05\x00\x1d\x8f\x23\xc4\x9e\x52\xa0\xf2\xad\x49\xfe\xe4\xeb\xdb\x05\x1b\x16\x39\x82\x34\x0f\xce\xf3\x34\x48\xf4\x4b\xc2\x89\xec\x3d\x52\x92\x53\x98\xf2\x95\xb5\x53\x08\x3b\x55\xf6\x9d\x9f\xe8\xa1\x0a\xa8\xe2\x28\x94\x2c\x89\x14\x61\x3e\x50\xad\x4d\x1f\xb8\x3c\x45\x5a\x16\x0b\x11\x74\xe6\x81\xe6\x7a\xb3\x06\x74\xae\x66\x99\x7b\xcf\x5a\x29\xb1\xf2\x71\x16\x25\x03\xd9\x7b\xc8\x3f\x7c\x5f\x6b\xef\x7e\x5f\xeb\x00\xb3\xb4\x3c\xed\x75\xe9\x5f\x52\xce\xed\x4d\x45\xdf\xb3\xa9\x16\xf3\x20\x8d\xfb\x23\x93\xec\xf6\x99\xb0\x53\x98\x09\xaf\x89\x30\xef\x29\x9f\x9d\xd2\xdf\x0f\x26\xbe\x7e\xfc\x1f\x26\x8a\x79\xfb\x2e\x7e\x14\x7f\x05\xac\x04\xff\x87\x43\x3d\xe4\xc3\x32\x41\x9d\x01\x55\x2b\x44\xf4\x08\xff\xb8\x9f\x0b\x29\xd9\xbb\xce\x71\x18\xa7\x71\x9c\x17\xec\xda\x70\x8b\x1f\x3d\x8d\xb4\xfb\xe9\x6a\xac\x89\xd3\x01\x6f\x64\x46\x10\x06\xde\x73\xd2\xad\xa2\x79\x91\x99\x32\xcf\x95\xda\xd2\x29\x6d\x12\x4f\xb9\xdc\x73\x9e\xa6\xc9\x4e\x7a\x49\xcd\xfc\x8f\x08\xe0\xb6\x66\x1a\x81\xc6\xb7\x63\x9f\x11\xce\x82\xab\x3f\x43\xaf\x08\xef\x7b\x5b\x43\xae\xf7\xd0\xa1\xee\x20\x4d\xfb\xd3\x8a\x22\x7e\xa3\xc6\xc5\xef\x93\xf4\xac\xab\x24\xfd\xef\x1e\x09\x52\x26\x79\xb1\x12\x93\x1e\x7a\xf5\x2d\x52\x11\xf0\x07\xc4\xa5\x1a\x67\x53\xdc\x7f\xa2\x9a\x71\xd7\x2c\xe2\xf3\x56\x77\xb5\x99\x7c\x53\x09\x4c\xde\x55\x92\x21\x0c\x94\x13\x1d\xdc\xea\x45\x05\xcc\x45\xf6\xca\x09\x49\xce\x1e\x75\x3e\x36\x96\xb1\xf2\xa5\x67\x7d\x1a\xee\xe0\x41\xe7\x96\xd3\x30\x23\x44\x7f\x2d\x78\xd2\x79\xb6\xa6\x6f\x47\x26\x5b\x64\xc5\xc4\xda\x4a\x45\x26\xec\x81\x52\xbd\xbe\xae\x4e\xe1\xb4\x97\xdb\x6c\x89\xfb\x23\x60\x37\xde\x22\x87\x9d\xaf\xdb\xce\xaf\xcc\xe6\x65\x5c\x4c\xa9\x24\x09\x4e\x18\x8c\xe4\x23\x25\xaa\x71\x65\xf2\xb4\xe6\xab\x58\x4a\xc1\x3a\x39\xe5\xd3\x28\xe0\x4a\x95\x92\x40\xe5\x3a\x0b\x4c\xcf\x47\xd0\x0b\xa6\x5a\xdc\x3b\xc8\xba\x23\xf9\x07\x88\x26\xa2\xad\xd7\x68\x21\x21\x24\x83\x12\xbe\x93\x07\xac\x66\x0a\x9e\xcd\x8d\xc6\x81\x76\x78\xbe\x9b\x0f\x53\x10\x6d\x30\x24\x52\x31\x34\x5d\x71\x31\x95\x7d\x79\x1c\x9b\x28\x11\xa9\x4b\xf8\x31\x40\xd6\xe0\x44\x7d\xa4\x27\x6b\x6a\xc6\xf3\x0a\xa6\xe0\x7b\x16\xa6\xe3\x0d\x65\x9a\x37\x1a\x14\x40\x8e\x75\x2d\xb3\x26\x2f\xb3\x95\x29\xbf\x3f\xb7\xaf\xaa\xc4\x10\x4a\xc6\x2c\xc3\xac\x0b\x1f\x59\xba\x2c\x68\x30\x57\x27\x72\xdb\xfa\x74\xb0\xdf\x9b\x8a\xa8\x88\xc2\x45\x17\x2e\x48\xd6\xd4\x23\xf4\x2f\x3a\x14\x41\x2f\xb6\xa3\x08\xdd\x40\xb3\xff\x2f\x63\x6f\x1a\x23\x49\x7a\xa6\x87\x75\x67\x55\xf5\x31\xdd\x73\x0f\xc9\x5d\xad\x6d\xa5\xd7\x94\x46\x02\x06\x03\x03\x92\x0f\xed\x9f\xcc\xad\x2e\x72\xd8\x05\xb1\xa6\x50\xdd\xec\x21\xc6\xb0\x31\x5f\x45\x7e\x95\x19\x53\x91\x11\x39\x71\x54\x4d\x0d\xfc\xc3\xd0\x0f\xc3\xf0\x2f\x59\x82\x0d\xc3\x92\x01\x5b\x2b\x43\x90\x56\x2b\xad\x56\x36\x77\xb5\xe6\x32\x8b\xc7\x92\x5c\x0e\xc9\x1d\x92\x73\x73\x8e\xbe\xaf\xea\xea\xfb\x3e\xaa\x8d\x78\x9f\xf7\xfd\xbe\x37\x2a\xa2\x0d\xfd\x8b\xe8\xae\xcc\x8c\xf8\x8e\xf7\x7b\x8f\xe7\x7d\x9e\xc3\x4e\xb5\x46\x15\x7d\xcf\xeb\x3e\xfa\xe4\x4d\xae\x25\xa1\xb8\x3b\x49\x44\xae\xf0\xd3\x77\xc0\x5d\xe6\xff\x58\xf7\x8d\xf8\x3b\xd6\xfd\x17\x0c\x92\xd8\xae\x4d\x69\xba\x00\xf6\xf5\xf9\x06\x76\x14\xce\xd9\x8d\xb1\xef\x36\x7a\xd0\x51\x3a\x58\x47\x6b\x84\x2a\xbf\xd3\xb6\x2b\x2c\x3b\x25\x29\x2b\x2d\xab\x5d\x5a\x24\x2c\xdc\x53\xe3\x67\x5d\x93\x41\x6e\xa3\xc8\x06\x79\x61\xa2\x09\x8f\xfb\xfb\x69\x45\xf6\x41\x75\x01\x9d\x6e\xea\x88\x1c\x24\x99\x97\x1b\x76\xe2\xda\xb3\xb3\x8e\x14\xda\x77\xcf\x99\x6c\x64\x03\xc0\xe1\x45\x3a\xae\x75\x60\xc6\x89\xcd\x39\x32\xf8\xc4\xa4\xbd\x4c\x43\x05\x1f\xd2\xf9\xa3\xeb\xd1\xd2\x80\xb5\xdd\xb5\x38\x38\xd7\xce\x4c\x90\x86\x4b\x61\x20\x11\xa6\x53\x2d\x2e\x97\x81\xc4\xb6\x4d\x31\xb0\xe9\xa7\x56\x9c\x7a\xd4\x85\x99\xe3\x99\x6f\xaa\x52\xaa\x61\x34\xa9\xd3\x6b\x27\x15\x2e\xf5\x2f\xc6\x3e\x79\xfb\x6f\x31\x80\x42\xca\x27\xe5\x85\xa1\xcd\x32\xd3\x2a\xed\x00\xd6\xfb\x7d\x9d\x15\xbd\xef\x90\x1f\xe5\x89\x1e\xc6\x7d\x1b\x07\x00\xa8\x30\x2f\xaa\x02\x69\x5e\x68\xc8\x5a\x1c\x6a\xbf\x5e\x0c\x47\x74\xa0\x29\xcf\x74\xde\x39\xa3\xdb\xc3\xb8\x83\x73\xed\x38\x49\xf3\x81\x25\x03\x14\x6b\xc2\x10\x55\xc2\xaf\x4b\x51\xcd\xce\xb6\x23\x6b\x5c\xc7\x25\x0a\x3e\xbc\x71\xf8\xc6\xed\xb1\x91\x4d\x87\xd6\x51\x98\x33\x6b\xbc\xe2\x03\xfd\x59\x83\x0e\xe2\x7c\xfb\x8d\xc2\x2c\x73\xd1\x41\xfa\x5e\x3c\x4e\xe7\x62\xcd\xd8\x1d\x9c\x6b\xe7\x49\xbc\x86\xa5\x83\x43\xfa\xb8\xa2\x03\x42\x27\x35\x1c\xd8\x7a\xe2\x77\x61\xba\x9d\x0d\x93\x7c\x50\xfa\x17\xae\x48\x73\x8e\x86\x5a\x3a\x04\x14\x93\x43\x6e\x52\x70\xa5\x09\x27\x2d\xe6\x19\x67\xf5\xf7\x3b\x1e\x9d\xf8\x7d\x2c\x3c\x60\x6d\xaf\x28\x54\xfe\x15\x32\xe8\xcc\x42\xd5\x69\xbd\x32\xcf\xab\xe7\xa3\x06\x62\x96\x79\xf2\x52\x72\xdb\xa7\xd6\xf0\x23\x6a\xff\x28\xb1\xc6\x7a\xd6\x64\x01\xd0\xa1\x2c\x4f\x12\x5e\xd7\x2c\x78\x45\x6f\x25\xe2\x57\x0d\x7a\x7f\x26\xcf\x6d\x26\x19\x70\x91\xd5\xa2\x51\x95\x46\xad\x06\xe5\xba\xc5\x24\x42\x18\x0d\xd7\x16\x69\x76\xbe\x5e\x57\x5a\x35\x45\x1a\x53\x8f\xf7\x84\x87\x8c\xc1\xf9\x63\xca\x1d\x9a\x31\x16\xde\x74\x1b\xa6\x97\x9a\x7e\x36\xa1\x8e\xa0\x4d\x78\xf3\x0a\x54\x33\xdf\xd8\xee\x10\x24\x39\x4e\x00\xf1\x96\xb5\xeb\xac\x22\x8c\x15\x9b\xfe\x66\x39\x09\x38\xaf\xf7\x77\x7d\xd3\xf6\x93\x5d\x8f\xed\xfe\xad\xae\xa2\x17\xfa\x22\x89\x21\x03\xeb\x77\xb2\x43\x39\x79\x7a\xec\xff\xe4\xa9\xae\x02\xd3\xed\x5a\x27\x67\x88\xde\x6d\xf5\xb7\xbb\x74\xbc\x0b\x0c\x90\xe6\x04\xde\xca\x2e\xf0\xba\xc2\x81\x9a\x58\x2f\x57\x16\x7e\xe5\xe1\xd8\xe3\x82\x8e\x11\x88\x10\x89\x83\xd6\x7a\xeb\xeb\x33\x0e\xb0\x09\x5b\x84\x7c\x36\x07\xa2\x18\xfa\x7b\x63\x8f\xac\xde\x07\xe6\x28\x57\x03\xff\xc6\xd7\x7c\xcf\xc7\xc2\xf4\x02\xa3\x61\xcf\x8f\x5b\x5f\xf9\xa6\xef\x9f\x38\x28\x8e\xc3\x93\xdd\xd2\x5e\x55\xd8\x29\xb8\xb3\x72\x5d\x39\x95\x2f\x9a\x17\xa7\x94\xb0\xd1\xcf\x88\x27\x4b\x53\x25\xb3\xe9\xa6\x9d\x00\xde\x54\x28\xe3\x8a\xfa\xf9\x53\x4a\x94\x20\x26\x37\x4a\x89\x5b\xa1\x04\xea\xe4\x2b\x0e\x4a\x12\x7c\xa3\x76\x12\x90\xf2\x16\x2b\xfa\xb2\xfa\xb1\x2c\x7e\x15\xd4\x6e\x28\x8b\x9c\xf6\xed\x94\x9f\xd0\x2d\x2c\x29\xae\xf5\x75\xbc\x23\x8e\x03\xc8\xf1\xa4\x7b\x19\x83\xa6\x9e\x64\x62\x5f\x8f\x42\x9b\x02\x48\xc0\x9a\x4b\xf4\x6d\xa2\xbf\x54\x3f\x8a\x5e\x6a\x53\xff\x1b\x13\xc5\x08\x5b\x44\xcb\x33\x47\xb8\x90\xa4\x97\xf4\x33\x3e\x86\x14\x9c\x52\x78\x68\xd0\x15\x03\x97\x9a\xbd\x2b\xf1\x63\x7d\xa3\xfa\x6a\xd8\xb3\x11\x65\xff\x67\x1c\x47\x06\xbd\xb9\x54\xe5\x34\x7b\xc6\xb8\xa5\xc4\x51\x1b\x02\x98\x51\x64\x59\xb9\x57\x18\xd3\x7d\xc6\xe7\x21\xf9\x23\xe2\x30\x3f\xe1\xf7\xf5\xaa\x83\x80\xb1\xdf\xae\x30\xc5\x4c\xc0\x08\xd7\xe8\x44\xed\xac\xa3\xc2\x41\x1c\x06\x13\xde\xc8\x73\x53\x91\xb0\x8e\x63\x70\x58\x8c\x7e\xec\x89\xa1\x32\x6b\x87\x8a\xca\xe8\xa8\xc2\x96\x9c\xe8\x28\x7a\xef\xa3\x1d\x8f\xaa\x7b\x87\x7a\x6d\xe0\x18\x3d\x20\xeb\x8d\x78\x0f\x44\x8d\xa8\x49\xfe\xef\x18\x2f\x56\xc8\xa9\x80\xd6\xb2\xb0\x27\x47\x25\xbc\xf5\x73\x1d\xc5\xbd\x76\xae\xf6\x72\xb3\xb3\xed\xc5\x34\x64\xcd\x6b\x36\x6d\x4a\x9d\xfc\x84\x5b\xba\x8b\x49\xbf\x00\x93\x2b\xa6\xf7\x8a\xca\x4b\x9f\xa4\x60\x03\x6e\xcf\x67\xee\x13\x54\xc8\x9d\x54\xcd\x28\x98\x28\x84\xa6\x7b\xc9\x71\x15\xd7\xb4\xfc\x5a\x14\xc9\x77\x77\x9f\x76\xbd\x16\x71\xcf\xbe\xb5\x92\x70\x17\x20\xc6\xfa\x81\x8a\x2b\x9a\x44\x64\xe7\xdb\xab\x26\x62\x0c\xaa\x80\x63\xd8\x52\x49\x03\xb8\x0a\xca\x57\xc3\xa5\x3c\x82\xd3\x83\x81\x3d\x87\x73\x94\x6f\x9a\x8e\xfe\xc5\x24\x1f\x90\xec\x8d\xf0\xe5\x96\x01\xa5\x93\x96\x9a\x77\xe2\xb0\x3f\x43\x02\x4d\x94\x04\x4b\x4b\x0b\xa3\x7f\x9e\xac\xab\x40\xf6\x95\x76\xd8\x99\xb1\x2f\x4d\xa3\xd3\x4f\xf0\xaf\xdb\x5d\xa9\x85\x72\xc7\xc7\x84\x38\xf3\x84\x88\xcc\xc5\xa9\xda\x14\xee\x2a\x68\xff\x6a\x98\x0f\x4d\x8c\x75\x21\x80\x4d\x1a\x15\xc9\x5e\x3e\xae\x1a\xca\x83\x65\x30\xef\xc2\x9e\xdf\x25\x13\x8e\xa3\x72\x8b\x52\x89\xd2\xef\xf5\x9c\xcf\x84\xd8\x0c\xfd\x3f\xe5\x68\x3a\xc5\xbf\xa3\xf4\xd7\x7c\x5d\x9b\xac\x17\x20\xbf\xcb\x52\x52\xa2\xcf\xf0\xb6\x66\xc7\x7f\xbb\xe6\x0d\xbe\xd0\xce\x93\xb4\xf4\x8b\x68\xd2\x90\x3c\xfb\x48\x53\xb4\x7c\xa4\xe6\x77\x94\x96\xc1\x47\xaa\x5a\x96\xbf\x3b\xf6\x2d\xcb\xdf\x55\x24\x4a\xa3\x22\x58\xa6\x84\x86\x3b\x44\x6f\x41\xc3\x48\x1a\x46\x9a\x14\x3e\xcb\xf0\x12\x8e\x52\xa5\x1b\x86\x6f\x6a\xae\xe6\xec\x2c\x3e\xc1\xb8\x62\x09\x2e\x54\xa0\x51\xf3\x99\x25\x90\x0d\x4c\xd4\xb7\xcc\xaf\x09\x6b\xf0\x0b\x9d\x0a\xfa\x85\x87\x2b\xe5\x26\xb7\xd9\x94\xd2\xc0\xfe\xaf\x9f\xe9\x2a\x09\xcf\x7d\x5d\x0f\x55\xdb\xb5\xae\xe8\xc8\x1f\x5f\x57\xbd\x35\x77\x54\xb7\xc0\x52\x6a\x6d\x69\x3a\xd1\x0e\x26\x84\x79\x94\xd9\xc5\xa6\xbe\x83\x62\x15\x03\xe3\x6a\xa7\xd3\xdf\x6c\xdb\x38\x48\x8a\xd4\xf4\x91\x2f\x44\x1e\xee\xba\xe2\x06\xfe\xac\xca\xa5\xa0\xdd\x2a\x6b\x97\x68\xf2\x98\x94\x84\x6c\xbb\x10\x94\x6c\x13\xa2\x3e\x70\xa0\x8c\x49\xbe\x48\x2d\xbf\x92\x47\xa7\x07\x73\x9d\xe7\xe5\xc6\xc6\x78\x41\x75\x09\x51\xdf\x7e\xb0\x59\x62\xd2\x2e\x77\x94\xe3\xb5\xbb\xeb\xd7\xfa\x73\xeb\xb4\x2a\x45\xda\x84\xe6\xd9\xa9\x4c\x94\x03\x87\x81\x61\x19\x2a\x11\x5d\x22\x3f\x08\x1b\xec\xa8\x6e\x83\xd8\x09\x67\x4d\x20\x39\xce\xba\xbd\xfd\x1c\x30\x7d\x28\x45\xff\x92\x0e\x05\xa9\x0f\x90\xeb\x84\x08\xf9\x3e\x05\xb4\x82\x7f\xc0\x5c\xe3\x65\x3e\xef\x78\x80\xfe\x79\xca\x88\xe1\x80\xfb\xd3\x26\x7e\x9e\xd4\x8e\xac\x37\x1f\x70\x71\x19\xf0\xc5\x37\x4d\x14\xac\x51\x52\x64\x8f\x2e\xb7\x34\x61\x92\x98\x20\xac\xa5\xb2\x69\x97\x54\x55\xf4\x92\xeb\x17\x1a\x9a\x98\xa8\x8c\x54\xec\x7e\x51\xa5\x92\xeb\xa4\x73\xaf\xbd\x46\xcb\xb3\x97\x0c\xa9\x4e\xcc\x73\xa0\xe2\xe2\x9d\xe4\x54\x3b\xaa\xde\x72\x6c\x45\x86\xae\xd2\xcc\x94\x2e\x4e\xf9\x93\x89\x19\xe7\x10\x8e\x7d\x3a\xf6\x5d\x4e\x9f\x76\x14\xbf\x05\x00\x25\x70\x81\x5a\x8a\x30\x8b\x28\x31\x59\xd6\x85\x96\x9c\x86\x98\xf2\xb5\x3f\x21\xcb\x00\xef\x31\xdd\x98\x45\xeb\x0f\xa9\x80\x8a\xc0\xfb\xbf\xa0\x13\x56\x94\x71\x15\xc1\xef\x93\xb4\xa3\x61\xa9\x4f\xc2\xa4\x2b\x58\x9b\x00\x6d\xb7\x28\x35\x83\x69\xdd\xdb\xf5\xe0\xf7\x7a\x80\x3a\x73\xb8\xbd\x64\xa2\xc8\x69\x23\x4b\xfe\x4f\xe5\x02\x1b\x98\xf6\xdb\x26\x8e\x93\x22\x0e\x2a\x88\x80\x33\x5a\x44\xb2\x6e\x19\x66\x67\xdb\x99\x8d\x4b\xbf\x59\xb8\xb1\xb1\xa3\x7e\x8a\x4d\x88\x22\xf7\x4d\x2d\xf3\x7d\xad\xe3\x65\xb2\xb9\xca\x3d\x51\xa3\xe7\x84\x7d\x60\x0a\x3c\x14\x9f\xa8\x07\x41\x12\x63\xd6\xa4\xf9\xaa\x49\x87\x61\xdc\x8f\xd8\x14\x0b\x5b\x92\x0f\x0f\x2f\xb9\x32\x99\xe4\x1e\xca\xbf\xe3\x58\x07\xae\xbd\x04\x3e\x75\x5c\xd0\x7c\x3b\x4a\x92\xe5\xd2\xda\x6d\x1d\xc5\x54\x61\x7b\xdc\x52\xd4\xd5\x17\x95\xd3\xf6\x96\x19\x25\xb9\x0d\x54\x07\xc9\xbd\x8e\x52\x46\xba\xa7\xfe\xd4\xc6\xc4\xba\x4e\x48\x37\x2d\x1c\xe5\xa8\x24\xbe\x3e\xe3\xa9\x24\x14\xc7\x84\xe2\x2d\x1b\x98\x55\x4f\x8b\x8e\xff\xfe\xb5\x12\xa2\xfa\x75\x6d\x9e\xe4\x10\x32\x29\xb7\xb3\x0a\x7a\x58\x21\x89\xbb\xdb\x47\xe1\xf0\xcb\x00\x9f\xa8\x8e\x77\x54\xbc\xf9\xda\x71\xa9\x2f\x45\x45\xcb\x9f\x05\xef\xab\xa0\xe5\x7d\x15\x3f\x0c\x89\x6b\x63\x42\xf5\xa2\x4d\x32\x82\x89\xcf\x13\xbc\x2d\x4a\x5c\xd7\x1a\x91\xe9\x3d\x1b\x85\x2b\xd6\x09\x57\xc2\xf8\x32\x29\x27\xdf\x34\xc9\x0a\xa7\xc5\x30\x49\x51\xb7\x61\xe1\x5d\xfc\x94\xa8\xf0\xfa\x81\xa5\xbf\x64\xe8\x0c\x7c\x91\x73\xda\x31\x39\x57\x4b\x07\x1e\x38\xd0\x5e\xb4\x81\x29\x32\x4b\x8d\xb9\xd8\xc3\x48\x68\x08\x53\x9c\x26\x6f\xa3\x55\x27\x3a\x04\x5f\xf0\x04\x9a\x49\x9c\xd9\x74\x85\xe4\x9f\x77\x7b\xc5\xe3\x9f\x91\xf9\xe7\x6b\x25\x04\x07\x0f\xc0\xad\x91\xd2\xd2\x21\xd2\x3f\x87\x73\x9c\x6f\x68\x2b\xc1\x40\x4f\xac\x6f\xcf\xaf\xbf\xf6\x5a\x3b\x4b\x46\x83\x90\xa8\x14\x73\xa1\x61\x91\xae\x21\x55\xa1\xbb\xa8\x5c\xda\x07\x9d\xed\x5f\x73\x64\x7a\xae\x6d\x82\x20\x19\x8e\x40\xc7\x87\x89\x81\xb1\xff\x23\x85\xcc\xfe\x23\x8f\xc9\x2a\xf2\x41\xe2\x1a\xe9\x84\xc7\xd8\xdb\xcf\x7a\xf7\x5d\xf9\x1b\x8b\xa9\x35\xdb\x73\xf4\x27\x15\xa5\xeb\x49\x17\x27\x2e\x87\xbd\x9e\xe3\x48\x71\x78\xfc\xf2\x14\x97\x84\x84\x77\x8c\x52\x4b\xa2\xd8\x08\x44\x61\x4d\xef\xd1\xa3\xc0\x60\x53\xd6\x6c\xeb\x82\xe2\x18\xaf\x80\x58\xc8\x01\x40\x76\xe0\x1a\x39\x9a\x7c\xad\x70\x08\xd9\xc0\x46\x4b\x2d\x55\x18\xba\xa2\xfa\x32\xaf\x34\x34\x49\x1f\x6a\x67\x83\x64\x95\x2a\xfa\x4a\x96\x55\x3c\xab\xfb\x4a\xbd\xff\x67\x1a\xd7\xfd\x6e\x63\x2f\x12\xba\xbd\xb8\x06\x86\x2c\xe7\x69\x5d\x41\x78\x5b\x91\x3e\x7e\xa6\xb0\x37\x41\x62\xb2\x1c\xe5\x45\x47\x5a\xe2\xc8\x14\x3f\x52\x58\xda\xa3\xb0\x71\x22\xb7\xef\xab\x68\xab\x03\x93\xdb\x15\x9b\xee\xd2\x66\x41\xb5\x1c\x70\x42\x0b\x86\xe4\x18\xf9\x42\x48\x29\xdd\x86\x5b\xca\x37\x4a\xe1\xf1\x7e\x1d\x91\x74\xa0\x9d\x9b\x65\x78\xa4\x18\xab\xa9\xae\x2a\x33\xde\xa3\x6f\x95\x2c\x82\x02\x67\x47\x90\x15\x10\x50\x0d\xbd\x81\xa0\x6d\x1a\x41\xa5\xb1\x19\x5a\xae\xaa\xbb\x1e\x1e\x4f\xa5\xad\x32\x83\xbf\x9b\xda\x3d\xf8\x3b\xc0\x73\x3f\x55\x6c\x75\x1b\x98\x47\x3a\x0e\x92\x67\xba\x3e\x9f\x0d\x76\x47\x56\x4b\x1b\x7b\xf6\x06\xc6\x63\x89\xea\x77\xf9\x96\x58\x5f\x3f\x52\x27\x61\x9e\x9a\x38\x1b\x25\x69\x4e\x65\xc4\x5d\x65\x1c\x8b\x79\xbe\x08\xb3\x20\x66\xab\xa5\x19\x50\x7d\x73\xfc\x69\x7a\x40\xbe\xee\xf8\xfe\x8b\xf3\x2a\x00\x4b\xed\x52\x91\x31\x64\x8b\x75\xc3\x3a\x3e\x3c\x7c\xd7\xf9\x41\x83\x24\xcd\x00\x0f\x83\x87\xf3\x1b\x5d\x7f\x0c\x3c\xb1\x4e\x76\x09\xd0\x82\xd6\xfa\x63\xe2\xf0\x1f\x99\xfe\x6d\xc5\x00\xf0\x1f\x52\x2e\x13\x56\x60\x27\xe2\x70\xd8\x3e\x90\xdd\xe3\xd0\xbd\xcc\x89\x1a\xa1\x08\xa7\xbd\x25\x55\xe6\x9d\x5f\x16\x11\x7e\x25\x7d\x77\x52\xe7\x79\x76\x13\xa1\x3e\x20\x41\x7f\x49\xb9\x74\x67\xa6\x17\xa4\x4e\xfe\x93\x4e\x19\x2c\xc3\x03\xfb\x47\xe8\x67\x81\xa3\xd0\xea\x52\xea\x16\x16\xe7\x2a\x6d\x79\xcc\xe1\xb1\x4e\x79\x68\x3b\x3e\x95\xf2\x5d\x41\x2b\xb6\xd5\x69\x3d\xff\xbc\x6b\x46\x2f\xdd\x3f\x69\x7a\x2f\xe7\x13\xa1\xc0\x75\x56\x96\x83\x8f\xf5\x23\x34\x51\x63\x41\xff\xde\x58\xc5\x32\x9f\x43\x63\x5f\xb0\x3d\xad\xaf\x7c\xd3\xe5\xcc\x15\xb3\xff\x2f\x15\xab\xf7\xaf\x00\x2d\xc2\x31\xc7\x99\x6f\x94\x68\x9e\x40\xf4\x82\x06\xac\xeb\xaa\x78\xcc\xba\x39\xd8\xf6\xbb\xc0\x7b\x0e\x58\xe6\xe5\x8a\xbb\x1d\x71\xe3\x01\xac\xfb\x75\x4d\x42\x73\x7d\xdc\x7e\x84\xf7\x91\x85\xc3\x30\x32\x29\x11\x9d\x4a\x42\xff\xae\x4a\xf5\x32\x8e\x0d\x25\xed\x0b\x0d\x08\xef\x76\xcf\x66\x61\x3f\xae\x12\x8c\xaa\xe6\x12\x17\x43\x17\xa3\x81\x8d\xb8\xef\x0e\x51\xf3\xdd\x6d\x5d\x1c\xe5\x58\x60\x6f\x71\x1d\x15\x0b\x4a\xf3\xae\x37\x69\xa6\x1f\x6a\xe7\x03\x9b\x32\xe7\xbd\xd0\x96\x97\x53\x81\xbd\x89\x52\x0d\x13\xf2\x35\xd4\x59\xda\xa9\xcd\x06\xc5\xd2\x52\x24\x35\x47\xbc\xf8\x3d\xa4\xac\xf8\xa6\xd2\x33\x94\x9a\x78\x6f\xf9\x9d\x98\xc4\x2d\x64\x56\x5c\x7e\x79\x76\x96\x17\xda\x0e\xc4\xfe\xd8\x08\xef\x69\x70\xd4\x26\x95\x44\x1d\xa2\x6c\xce\x7b\xda\x34\x3a\x42\xd2\x59\x2e\x66\xf6\xb4\x55\x4e\x25\xb2\x26\x8d\x4b\x7f\xc8\x75\xbd\x5e\xa2\x4d\xc3\xd7\xaa\x64\x5b\x06\x71\xd1\x1a\x07\x01\x42\x09\x4f\x8f\x81\x85\xf5\xe3\x0a\x5a\x5e\xf1\x9f\x46\x76\x98\x30\xf5\x19\xd3\x46\x8e\x3d\x83\xc4\xa5\xa6\x31\xf4\xd2\x03\x5c\xdf\xaf\x68\xcc\x49\x36\xda\x37\x0a\xa6\x45\xfc\x58\xcb\xf5\x07\xbf\x03\x12\x74\x58\xc3\x3f\xd0\x6d\x25\xf8\x3c\x76\x1e\x77\xe6\x39\x17\xc8\x49\x5e\xbf\x4f\x65\x0a\x18\xbf\xb3\xf4\xa4\xfc\x4d\x63\x55\xda\x44\x93\x3d\xbe\xe9\x4c\x03\x6a\xee\x50\xe9\x79\xf4\x40\xc7\x2a\x84\x81\xe7\xc7\x8a\x5c\x12\xd8\x08\x6c\xef\x8d\xa6\x72\x6a\x8a\xc6\x13\x0c\xb7\x14\xd3\x15\x89\x44\x7d\xf7\xbc\xd0\x2e\x5d\x4c\xe7\x42\x09\xab\x4b\xcb\x91\x83\x7f\xac\x7c\xf5\x6c\xd5\xf6\x6c\x4c\x28\x07\x96\xa2\x26\x6b\x27\xb2\xd4\x4f\xa8\x03\x68\x2d\x89\xe1\x60\x60\xf5\xb0\x3c\x2f\xb6\x00\xc8\x1e\x04\x27\xe1\xd3\x93\x99\xe1\x64\xb5\xa3\x20\xf3\x74\x64\x0a\x41\xbe\x6a\xa3\x28\x48\x86\xa0\x3d\x41\xca\xff\xbc\xe2\x22\x3b\xaf\x3a\x90\x53\x9b\x8d\x92\xb8\xf4\xcc\x98\x0d\x59\x5a\x01\x14\xeb\xd9\x4f\x94\xdc\xc3\x52\x18\xd9\xdd\xd4\x21\x71\x59\x29\xa7\x7d\x86\xb5\xa1\xc9\x91\xb1\x3f\x2e\xd2\xc1\xec\xe4\xba\xb9\xb3\xa5\x1c\x6e\x4c\xf8\x67\xa5\x77\x22\x4d\x9e\x69\xdf\xc4\xe1\x5b\x20\x8c\x42\x87\x99\xe3\xaf\x29\x9f\xcc\xf9\xed\xe5\x74\x4b\x7e\xbf\x7c\x43\xd8\xd9\x4f\x68\xa4\xd9\x33\xa2\xe9\x01\xb4\xee\xbe\xf3\x70\xcd\xa2\x89\x7b\x49\x3c\xe5\x39\x5e\x1e\x74\x54\x87\xfb\x0f\x3b\xbe\x7f\xf9\x92\xd2\xda\x85\xa8\x28\x16\xe5\x3f\x74\xb1\xf1\xc0\x9a\x48\xdc\x76\x18\x0c\x50\x33\xf1\x75\x0d\x3d\xb2\x30\x5d\xce\xf9\x84\xaa\xf7\x82\x22\x0a\x63\xf3\x23\x4d\xb0\x7a\xba\x06\x3a\xa7\xdc\xbb\xa1\x99\x17\x9d\x0a\xdf\x10\x70\x49\xf5\x01\xaf\x9a\x9c\x9a\x1e\x26\x2b\xa2\x07\x15\x39\x84\xf2\x65\x9c\x47\x7a\xd0\xe5\x91\x9b\x68\xe8\x32\x13\x25\xc3\x24\xe6\xdd\x22\x20\x05\x85\x5b\x3b\xa1\xba\x5a\x83\xd4\x9a\x61\x28\xb9\x2e\xc7\xf5\xe5\x25\x01\x2a\x5a\x19\x61\x1e\xd9\x5d\xe5\xfb\xe3\x60\x39\x0d\x27\x57\xec\x33\x1d\x9f\x15\xdd\x0e\xfe\xb3\xb1\x97\xe6\x7c\xfd\x72\xb5\xf7\xeb\x69\x87\x51\x5d\xb1\x51\x32\xb2\xa9\xa4\x82\xa5\x0e\xa9\xba\x5e\xb6\x54\x93\x0d\xe7\xc6\x60\xe8\x1f\xef\xaa\x56\xf5\x4f\x1a\xd2\xf6\xe4\xd5\x39\x63\x00\x47\xe9\xa6\x72\x9a\x6e\xba\xca\x61\x64\x16\x19\x62\xc3\xc6\x90\x46\x5e\xce\xe8\x96\xeb\xd3\xfe\xc3\xda\x52\x99\x9b\x93\xfe\x7e\x2f\x60\xa6\x6a\x25\x97\x94\xe7\xbc\x9a\x30\x06\x5f\xb2\x63\xde\x8f\xbc\xa4\x7d\x51\x33\x0a\x7b\xac\xee\x84\x3d\x75\x0f\x11\x2f\x12\xb4\xf7\x31\xe0\x7c\x53\xa9\xf4\xab\xb2\x2c\xfa\x6f\xc4\x82\x37\xf0\xec\x65\xc9\xd0\xe6\xe1\x50\x5a\x86\xe1\xd5\x1c\x57\xb4\xe2\xc7\x1b\x38\x47\x66\xda\x41\x12\x45\x66\x94\x55\xe5\x66\xaa\xb0\x10\xf1\x95\xd3\x24\x59\xe2\x08\x55\x30\x13\x2d\xa5\xa1\xdf\x90\xe8\x7d\xdd\x44\x66\x64\xe3\xa4\xe5\x4b\x67\x1b\x8a\x7d\x7b\x43\x41\x3b\x6d\x96\x87\xc3\x32\xa4\xdf\x55\x7a\xcd\xa8\x80\x3f\xe8\x28\x5a\x86\x63\x74\x3a\x39\xd4\x8b\x0b\x5c\xaf\x50\xba\x01\x33\x7b\x94\x66\x00\x30\x93\xeb\xb5\xb3\xe4\xc8\x74\xbb\x17\xa6\x04\xd1\x72\x36\xe8\xa3\xb1\xaf\x6c\x7c\x54\xdb\xf9\x2f\xb4\x6d\x1e\xbc\x38\xe9\xb3\x47\x28\xf7\xc3\x4f\xe5\x6c\x9c\x33\xb5\x2e\xb1\x7f\xa9\xa1\x42\x70\x64\x7a\xee\x29\x9f\x11\x7e\x07\x06\x1e\x1d\x34\x40\x30\x20\x96\xfb\x2e\x76\x15\x90\xa1\xf7\xe1\x5f\xa1\xab\xec\x18\x16\x21\xde\xf9\x0e\xb9\x33\x42\x29\x4a\x8f\xe1\xe8\x0a\x14\x64\xa7\x74\xef\x51\x3d\x03\x8a\x10\x4e\xf8\x63\x70\xbc\xe9\x3f\x4e\xb4\xbb\xe5\x70\x4b\x3b\x67\x39\x2e\x48\x2c\x4f\xac\x7b\x27\x61\x13\xd3\xc0\x3f\x37\x7e\xd6\xab\x95\x73\xca\x39\x5a\x9b\x52\x9d\xef\x97\xb0\x84\x11\x89\xfc\x3e\xbd\x1c\x1c\xaf\x9d\x9e\x38\x29\xde\xb9\x5e\xfe\xae\xd4\xfe\x9f\x74\xc9\xd5\xdc\x8c\x46\xdc\xad\xa2\x81\x14\x52\xb2\x7a\x2a\xdc\x16\x41\xe2\x87\x91\x79\x3d\xab\x1c\x9e\xfb\x1c\x70\x61\xf7\xff\x64\xec\x0d\xf6\x19\x95\x3e\xf8\x56\x43\xbe\x6e\xde\x81\x37\xc5\x51\x91\x66\x24\xfa\x29\x69\x65\x6a\xa2\xce\x58\x4a\x8b\x30\x5f\x4c\x56\x23\x5a\x31\x88\x6c\x20\x8a\x2f\xce\x44\xb9\x04\x00\x0a\x61\x59\x70\xc9\x03\x79\xa3\x12\x07\xf9\x2e\xd5\x63\xc6\xe6\xd8\x39\xed\x6e\x60\x9e\x03\xd4\xc6\xb5\xcc\xfa\xe0\x02\x9d\xa9\x48\xb1\x6c\xd5\x1e\xf4\xb5\xd7\xda\x43\x33\x30\xa9\x79\xdd\x0c\xc0\x16\x2b\x8a\xb1\x5e\xf1\xed\xa2\x6e\x29\xc1\x1b\x20\x8e\xd5\xf0\x95\x37\x0a\x93\xe6\x36\x87\x2c\x6e\x53\xe5\xf2\x19\xd5\x85\x94\x97\x5e\x9c\x5d\xd5\x5c\xbc\x17\x34\xd5\xd0\x05\x55\x31\xee\x85\x59\x6c\xd7\x94\x00\x0d\xd8\x57\xf9\xba\x29\x55\x9a\x0d\x92\x22\xea\x91\xd6\x3e\x12\xb1\x08\x88\x14\xf0\x7b\x9e\x03\xb7\xb3\xca\x5d\x1c\x99\x7e\x12\xf7\xab\x74\x21\x5e\xad\xf1\x9e\x72\xb2\x37\x6a\xa3\x08\xb5\xe1\x41\x2f\x35\xab\x26\x6a\x29\xa2\x68\x30\xdc\xf1\xb5\x3a\x73\x7b\xa9\x19\x9a\x6d\x94\xb2\x73\x73\x8e\x52\xd6\xc3\xa4\x4d\x40\x5a\x46\xb4\x87\x90\x55\xb8\x03\x0f\xcc\x11\x26\xba\x5a\xe6\x71\xf5\x32\x83\x24\x59\xb6\x29\xbd\x8c\xa4\x6e\x3c\x3a\xf4\x7d\xcd\xa5\x76\x4d\x45\x4a\xd9\xd0\x44\x91\x4d\xf7\x61\xa1\xbb\x54\x80\x5f\x99\x3b\xbb\xea\x41\x1e\xa8\xd4\x28\x77\x9b\x54\xaa\x47\xae\x9a\xa1\xc5\x3a\x17\xa6\x9d\xb6\xaa\xea\x6a\x7b\x88\x13\x50\x9a\x49\xe8\x05\x19\x02\x55\xa1\xae\x35\xa3\x6c\xbf\xf7\xe7\x91\xc8\xc7\xfa\x7a\x00\x92\x65\x61\x32\xa5\x67\x96\x63\x93\xbe\x5b\x60\x24\x8a\x5a\x93\x35\xc9\x04\x20\xed\x53\xeb\x13\x5d\xca\x39\xf0\x97\x01\xde\xcf\x3f\x39\xf6\x8e\xc3\x0f\xe8\xd8\x11\x51\xa6\x3a\xb0\x69\xae\xdd\xb7\x71\x1e\x41\x43\xc1\x69\x17\x2d\x08\xc7\xf6\x86\xe6\x9a\xfc\x7f\x6a\xe5\x9b\x99\xc3\x6d\x13\xf7\x6d\xaa\xf9\xfe\xfe\xbe\xf2\x84\xff\x7e\x13\x28\x64\xc9\xb0\x26\x38\x4c\xe0\xd1\x8e\x2f\x44\x1d\xf5\x54\x44\x36\x5d\x11\x25\x79\xec\xe9\x4a\xcf\xd8\x85\x5a\x02\xf1\xb5\xd7\xda\x8b\x36\xcd\x43\x0b\x17\x4a\xbe\xaf\xe5\xb4\x7e\x2f\xe8\x0a\xe1\x4d\x45\x38\x1e\x85\x4b\x9c\x66\x60\x11\xb9\xb1\x52\x50\x3d\x4e\xd3\x27\x30\x02\x6f\x1e\x72\x93\xe5\x36\xb2\x19\x58\x0c\x24\x86\xf6\x1d\x05\xba\x99\x2e\x32\x3d\x1b\x4f\x28\x9e\x64\xf4\xb6\x62\x69\xdf\x51\xd9\xc0\xd3\x4d\x03\x9c\x25\x45\x8e\xd6\x74\xb1\x26\xac\x71\xdc\x72\x7a\x3d\x13\xdd\xe7\x34\xa3\x67\x19\xb4\x93\xfe\x0c\xcd\x9d\xd3\xd1\xf1\xa2\x05\x17\xb5\x80\x52\xb8\x92\xa4\x81\xed\x4d\xf9\x16\xb8\x9f\x50\x42\x17\x33\xf8\xda\x58\x29\x7e\x81\xab\x4d\x84\x29\xe8\xdb\x11\xea\x4f\x74\xb7\x71\x6d\xbd\xd0\x5e\x98\xdf\xeb\xd1\xce\xff\x53\x47\x79\xbf\x88\xbb\xe0\x48\x1c\x53\x34\xc8\xdf\xe9\xa8\x58\xe7\xa4\xc6\xb6\x9e\x54\xcd\xbb\xc7\x14\x03\xd9\x87\x63\xd5\x48\xf5\x63\x65\x90\x08\x33\x9c\xed\xa1\x8c\x22\x40\x8c\x20\xf2\xc6\xf5\x67\xf8\x6e\xac\xf6\xfb\x5a\xf2\x06\x6d\x42\xf0\x5e\xf6\xd3\xd1\x8f\x84\xe9\x77\xc7\x4a\xfe\x8f\x09\xae\xf0\xd0\x93\xeb\xde\x32\x2d\x59\xd2\x1e\xa7\x35\xeb\x72\x38\x0b\xd3\x2e\x87\xe3\xe8\xf8\x57\x4d\xca\x59\x3d\xf1\x01\x55\x3a\xee\x68\x43\x6e\xfc\x50\xdb\x69\x02\xcf\x55\x94\x5f\x94\xea\x89\x74\xba\x5e\x53\x09\x99\x28\xb4\x80\x94\x49\x40\xa5\x75\xff\xbe\x3d\x56\x3b\xe5\xdb\x15\x3d\xf5\x06\xdc\x5b\x14\x0e\x25\x3c\x71\xf5\x1b\x87\x8e\x39\xa3\x33\xbf\x97\x54\xfe\x61\x98\x24\x20\xc1\x93\x46\x17\x1a\x3a\x67\x68\x5d\xd8\x0f\xce\x7c\x11\xfe\x6e\x02\x46\x8c\xa2\xc2\x93\xf7\x56\x9a\x95\xc4\x13\x54\x2d\xcd\xe5\xd1\xfa\x85\xd2\xdf\xc4\xf4\x5d\xc1\x84\x03\x46\xf6\xcf\x3b\xad\xaf\x7c\xd3\xf1\xa6\xe9\xce\xea\x75\xa5\x4c\x31\x86\x75\x96\x1c\x4f\xb9\x62\x91\x5c\x7e\x9c\xbc\x40\xce\xde\xeb\xb5\xc3\x9e\x3f\x6e\x9e\xec\xd2\xda\x53\xad\x77\xaf\xf2\xff\x3c\x1c\xfb\xa6\xdf\x6b\xe4\xbf\x28\xdc\xea\x7c\xa5\x45\xcd\xf5\x4b\x3a\xb1\x4b\xe1\x0f\x41\x95\x73\x17\x78\x48\x91\x01\xda\x52\x1d\x08\x13\xeb\x3e\xaa\xfb\x7c\xac\x99\x4b\x4c\xb4\x2c\x2c\xd9\x2c\xbb\xd8\xf1\x6c\xec\x27\x9b\xe2\xa1\x20\x89\x7b\x49\x2c\x03\xcf\xe4\xc5\x18\x78\x61\x32\x6e\x40\xab\x67\xc5\x70\x68\x52\x86\xfd\x6b\x7f\x1e\xb5\x9c\x5b\xca\x3f\x3b\x3f\xf6\xf4\x60\x99\x89\xf7\x95\xc3\xe3\x68\x91\xcb\x13\x8e\xc9\x0a\x80\x16\x42\x12\xf6\x2c\x0e\x52\xa1\x31\xa0\x47\xc3\x49\x5e\x29\xe6\x5c\xe1\xe1\x42\xa0\xf2\x6f\xe8\x01\x90\x3c\x63\x21\x03\xe9\x9c\xf5\x5c\x21\x1b\xf0\x11\x60\xc4\xef\x75\x9e\x54\x46\xbc\x48\x2d\x13\xc4\x88\xbe\x86\xd6\x0a\x1a\x7f\x51\x73\x0a\x94\xa1\x61\x9f\xd0\x1a\x44\x76\x08\x94\x23\x52\x7b\x4e\xa9\xe3\x15\xa7\x8a\x78\x75\x5c\xae\x55\xac\x89\x7a\x5e\xa5\xf4\xef\x7b\x36\x0e\x05\xa7\x29\xa9\x52\x7a\x03\x49\x15\x34\x40\x0a\xfa\xa9\x61\x5e\x32\x44\xa0\x5b\x5c\xfe\x70\xad\xd9\x8e\xd9\xa2\x0e\x93\xa6\x5e\xbb\x3c\x4c\xb7\xf1\x0a\x7d\xaf\xe3\xa3\x84\xef\x29\xc6\xcb\x30\x7e\xbd\x88\x83\xf2\xd0\x69\xd1\x2c\xc1\x91\xbf\xac\x70\xee\x97\x15\x09\xdc\xb0\x3f\xa4\x15\xe8\x48\xe0\x0e\x3a\x42\x38\x8d\x82\xb6\x61\x7f\xc0\xe4\xf4\xae\x6d\x51\xb5\x46\x36\xe4\x6a\x7b\x36\x37\x61\x84\x51\x12\x86\xaa\x96\xd3\x22\x3f\xe9\x98\xc4\x82\x28\x1c\x55\xb4\x3d\xce\x28\x21\xe3\x33\x2e\x79\x60\x86\x61\x9c\x4c\xf8\xc4\xcb\x49\xad\xfc\x0d\xe9\x51\xe9\x75\x90\x5c\x92\x96\xbf\xd0\x8a\x17\x15\x2d\x0c\xa5\xee\x1f\xf6\xb3\x5d\xe5\xf7\x54\xda\xa1\x91\x2a\x63\x0e\x3d\x67\xb4\xe6\x44\xf4\x7c\x0b\x46\x0b\xf1\xd9\xc7\x30\x1b\x7c\xe3\x49\x19\x29\x4a\x50\xc1\xc0\x23\x23\x06\xd5\xf3\x1f\x59\xb3\x4c\x13\x23\x4a\xa0\xe5\x70\x8b\x42\xa8\xd2\x3b\x28\x32\xc6\x14\x20\xdb\xb2\xa9\x32\x2f\x9b\xca\xed\x31\x69\xbf\xb0\x54\x97\x46\xee\xf5\xbd\x8e\xca\x7d\x9e\x53\x88\xb0\x9b\x3a\x49\xc7\xb5\x0c\x1c\x05\x1c\xc0\x32\x3d\xa8\x2a\x9c\xaf\xd8\x15\xbb\xa6\x11\x2e\x58\x45\xd2\xb0\x50\x9a\x55\x0c\xd6\x2f\x55\xae\xd3\xf4\x12\x72\x8c\x76\x7b\xad\xba\x9d\xeb\x5a\x69\x86\x32\x11\x30\x1d\x13\xdd\x32\x32\x83\xfb\x71\x9f\x0a\x3b\x12\x4d\xd2\xe0\x8b\x73\x48\xab\x53\x3e\xed\x79\xc0\x06\x49\x14\x85\x99\xa8\x87\x0a\xbb\x69\xe5\x5d\x9e\x56\xda\x88\x2b\xd6\x6f\x34\xf6\xb4\x68\xbe\xc5\xeb\x6a\xc2\x69\xa4\x96\xc0\x56\x6c\x97\x5d\x2c\x3b\xe7\x63\x59\x3f\x13\xfd\x82\x1c\x55\x57\xe6\x3d\x37\xf6\xb3\x72\x4e\xf1\x40\x05\xc5\x30\x64\x47\x55\x88\x3c\x3c\xd0\x1d\x19\x64\x0c\xdb\x3b\x8a\x41\x25\x4f\xcd\x8a\x8d\x00\xfa\x81\x75\x66\x22\x49\xbe\x51\xc9\xc7\x70\x94\xed\xa7\xf1\x86\xdb\xf2\xa5\xae\x47\x14\x20\xea\xd2\x1d\x65\xd8\x8d\x7f\x05\x11\x18\x62\x36\x46\xe9\xe1\xc1\xef\xa9\xd6\xfe\xd6\xba\x9f\x52\x22\xd4\x66\x46\xb8\xff\xe6\xaf\x75\xd5\x1a\xb9\x41\x99\x30\x87\x17\x2c\xf7\x8d\x30\x43\x3c\xe3\x7b\x1f\x44\xf2\x94\x42\x14\x09\x63\xca\x9f\x92\xf0\xe6\x69\xdd\x72\x16\x45\x21\xca\x32\x2f\x71\x3a\xeb\xd4\x58\xcd\x5c\xc7\x93\x56\x9c\x53\xad\xf0\x84\x6d\x29\xd8\x53\xe4\xda\x13\x3c\x23\x29\x44\x3d\xa9\xb2\xe4\xc9\x6a\x0f\x93\xe7\xf8\xbe\x17\xa6\x1d\xde\xa6\x01\x91\x18\x24\x43\xa7\x01\x81\x14\x20\x1a\xa3\xf9\x7a\x7b\xa6\xef\x95\xf9\x2f\xb7\x8f\x4c\xc3\x1a\xba\x7a\xcc\xdc\xdc\x23\x05\xe4\x28\x66\x4c\x12\x24\xbc\x04\xfb\x5a\x41\xc5\xaa\x0e\xae\x30\xc7\x72\xd2\x45\x12\x24\x93\xa6\xba\x7e\x6b\x68\xd0\x5e\x60\x62\x13\x5b\x4e\x3b\xe0\x19\x6e\xa8\xe7\xb9\xa1\xe3\xaa\xb0\x3f\xc8\xf7\xf9\x08\xf1\xa7\x63\x25\x64\x3d\xd9\x55\x40\xff\xd3\xb4\xb3\xe1\x1c\x5d\x47\x2c\xe2\x14\x6b\x1c\x2d\xfb\x44\xd7\x8b\x87\xb3\x76\x32\xcc\x32\xc7\x0b\x8e\xe5\xb1\x3c\xe1\x9c\xe3\x5d\x86\xed\x38\x84\x6f\xaa\x4d\x61\xf2\xdc\xc6\xd2\x31\x0b\x2c\x19\x28\x33\x91\x9e\x84\x40\x15\x7c\xbd\x5f\x8f\x35\x04\x24\xb0\xe1\x8a\x9d\x54\xf1\xc9\x79\x38\x8f\x7c\x03\xaf\x01\x66\xee\xa2\x32\x79\x17\xb5\x22\x66\x91\xf6\x6d\x3a\xa1\xe2\x27\xe0\x0e\x84\xfd\x93\x76\x84\xb0\x3a\x28\x42\x52\x96\x56\xa3\xfc\x1a\x83\x61\x3a\x1e\xfc\xba\xa9\xf3\x31\xcc\xa8\x26\xfd\x1a\x3e\x25\x0e\xd5\xe2\x24\xe5\x7a\x31\xa6\x9d\x89\x78\xf8\x46\x1d\x7f\x4b\x26\x05\x4c\x1f\x5f\x04\x64\x25\x5f\x37\x18\xbd\x99\x76\x6a\x57\xa8\x8a\x86\x0d\xe7\x68\x5d\xca\x89\x16\x8c\x0f\xfd\x14\x1c\xc3\xbb\x35\xaf\xe8\xeb\x33\xed\x20\x4a\x32\xd4\x39\xf1\x3c\x0f\xc6\x5e\xe4\xe8\x81\x53\xa6\x0a\xa2\x24\x2f\x52\xf0\xf8\x38\xd1\x1a\x2f\x60\xd3\xf8\x70\xd9\x88\x49\xb4\xe8\xe1\x84\x44\xb0\xfc\x06\xe1\x10\x6c\x40\x88\x17\x31\xd1\x05\x39\x0e\xef\x53\x3a\xde\x3e\xa5\xd2\x5e\xc5\x28\xb7\xc3\x11\xdc\x11\xac\x51\xf0\x2b\xba\x75\xfc\x8d\xaf\xb9\x04\x81\xaf\xbe\x06\x26\x8d\xe0\x89\x60\x8d\x9f\x05\xe8\x85\x6f\x6a\x0f\xf4\x02\x89\xd7\xcb\xa1\x82\x72\xe8\x55\xcc\x1e\xdf\xb8\x4e\xf5\x2c\xb7\xa3\x60\x10\x46\xbd\x54\x72\x1b\x70\xe1\x6e\x28\x76\xd9\xdb\x1d\xaf\x7e\xf4\xa3\x2a\x25\xe8\x2a\xc2\x42\x6c\xcf\x6f\xc1\x18\xc3\x19\xc6\x69\x2b\x3e\x90\xf7\x37\x4f\xbb\x4c\x7a\x90\x86\x79\x18\x84\xd9\x50\x09\x6e\x9f\xc7\xe9\x2a\xdb\x44\x15\xd8\x07\x36\x5c\x46\x2b\x16\x9c\xfa\x9d\x5d\xc5\xe1\x74\x47\x2f\x9e\x63\x1a\xb0\x58\x0c\x47\x54\xae\x2d\xdf\x0c\x9b\x05\xa7\x26\x5f\x3b\x5f\xb2\xc8\xa9\x69\xc6\xe7\x30\x69\x11\x4b\x30\xe1\x33\xc4\x51\x92\x64\xa8\x75\xce\x73\x55\x1d\x39\x6f\xbe\x56\xb4\xab\x26\x4c\x83\xd4\x2c\xe5\x53\x8a\x08\xfa\xc1\xd8\x5b\xf0\xf7\xc6\x15\xbe\x24\x95\xa0\x7b\xa0\x94\xc4\xbf\xa3\xcc\x8a\xc9\x20\x5d\x58\xce\x06\xce\xf2\x13\x8a\xc4\xb9\xde\xc3\xb7\x30\xdd\xb6\x6f\xe6\xa9\x69\xf9\x4e\xb3\x8b\x5a\xed\xb8\x2e\xb2\x42\x38\xee\x22\x58\x76\x6d\x95\x88\xf3\x8e\x21\x8a\xe6\x9b\xda\xae\x99\x7f\xf9\x50\xdb\x44\xa5\xd3\x51\x60\x2e\x91\xca\xff\x4c\xa1\x11\x3f\x73\xec\x34\xcb\x6b\x91\x9d\x50\x4a\x2f\xa7\x15\xf5\xee\x3b\xe4\xf1\x09\x16\x50\x36\xf1\xb0\x48\xe9\x81\x5a\x8e\x86\x7b\x13\xf6\x9a\x6f\x6a\xc5\xc5\x85\xe9\x85\x76\x66\xe3\xd0\xa3\x66\x99\x7f\x4e\x15\x35\xff\x6d\x05\x9d\x95\xd9\xb5\xa9\xd2\x0a\x3b\x2d\xf1\x99\xc3\xd2\xac\x5a\x65\xac\xf1\x5f\x06\x3f\x4a\x22\xee\x2a\x23\x37\xba\xf1\x9d\x62\xe0\x5d\xc5\xb5\x78\xd7\xf9\x28\xc6\xa6\x49\x6c\x8a\x3c\x0c\xa4\x15\x00\x59\x8e\x1b\x63\xad\x4a\x8b\x9f\xc7\x71\xb3\xb3\xeb\x6d\x6e\x3f\x35\x8b\x13\xad\xc3\x2f\xf3\xc2\x42\x0b\x28\x83\x5e\xc7\x8a\x4b\xf8\x87\xe3\x6a\x9b\x46\x11\x11\xce\x62\x9f\x97\x1b\xbf\xdb\xf1\xdd\x1e\x37\x74\x46\x80\x7b\x89\x38\x4e\xc2\x12\x90\xa0\x89\xd6\x3f\x93\x2e\x51\x7c\xc1\x1d\x1b\x34\x72\xae\x7b\xc3\x01\x56\xae\x2a\xc6\x4a\x86\xdd\x70\x6d\xb1\xe3\x1f\xcf\xbe\x39\xb2\x69\x68\xe3\xc0\xb2\x34\xba\xfb\xb1\x72\x3c\xe4\x31\x7c\xba\x14\x29\x79\xbe\xf6\x56\xc5\xa4\xd6\x7a\xc1\x7d\xc1\xf2\xf9\x0e\x8d\x2b\x4a\xd0\xe3\xb3\x5a\x73\xf3\x91\xe9\x57\x59\xd6\x0b\xa9\xd7\xf2\xa7\x1d\x93\xa1\x53\x3c\xd9\x68\xa8\xd7\xae\x9a\x88\x78\x51\xbd\xe4\xe0\x9c\xd0\x57\xdd\xac\x3a\x8d\x36\x5d\xb1\xd9\x1e\x1a\x05\x01\x9f\x96\x9f\x93\x46\x19\xff\x56\x0f\x3b\x4a\x9e\x9a\x0f\x48\x44\x29\x57\x30\x03\xae\xcf\x66\x76\xd6\x47\x95\xe5\x23\xc3\x69\xbf\xa0\xb2\x19\x44\x61\x65\x7a\x61\x90\x27\xe9\x1a\xf9\xa1\xcc\xc2\x85\x84\x8c\x50\x72\x6d\x4b\x00\xff\x4e\xfb\xc8\xf4\x13\xb4\x3a\xb7\x6e\xd2\xdc\xb2\x5c\x05\x96\x98\x30\x37\x7a\x1d\xbb\xe3\x80\x23\x3b\xed\x7a\x77\x3e\x7f\xae\xc3\xe0\x4d\x55\x9a\xbd\xa4\x99\x2c\xa9\xb8\x0c\xcf\xfe\x38\x61\x58\x31\x7e\x1c\xa0\xc1\xf1\xfb\x97\x80\x13\xdd\xa4\x65\xc7\x5f\xde\x48\xe1\x67\xc2\xe5\x10\x91\x9b\xe2\xcf\x98\x77\xfc\x19\xfe\x1c\x4b\xa2\x1e\x74\xba\xa5\x41\xf1\x0c\xf0\xef\x02\xb2\x2c\xbf\xc2\x39\xed\x07\xe7\x9c\xd3\xfe\x98\xab\x1d\x07\x2d\xef\xcc\x6f\xe8\x6c\xe2\x46\x85\x1d\xd7\xe6\x6b\xfb\x68\x18\x84\x7c\xae\xe5\x84\x32\x2e\x63\xe7\x09\x45\x3b\xed\x3c\xa4\x9b\x36\xb1\xf3\xf8\x06\xf3\xce\x7f\x36\xae\x31\x4f\x20\x81\xc0\xa0\x54\xa4\xdf\x36\xa9\x0c\xc0\x98\x39\x8d\x3b\xfd\x07\xaa\x83\x32\x0c\x96\xc1\xd3\x86\x15\xf5\x27\xf0\x9b\x1d\xe9\x41\xb9\xa4\x18\xc1\xe2\xde\x7a\x31\xcc\xa7\x3c\xc6\x79\x6b\x9b\x96\xd1\x11\x91\x33\xff\x53\x05\xb9\x01\xd3\x12\x96\xf3\xde\xae\x93\xcc\x5a\xcb\xf2\x64\x14\x02\xe6\x04\x8f\xe9\x18\x5e\x80\x6f\x1e\xc9\x8a\x1f\x85\x8b\x36\xcd\xd1\x99\xd7\x98\x82\xd7\x8a\xd1\x4b\x39\x6c\x3c\xb0\xaa\x28\xae\xe1\xd4\xfe\x23\xcd\x6e\xff\xb9\x02\x7b\xa0\x63\x13\xff\xfe\xcf\x9a\xd8\x3c\x16\x8b\xb4\x67\x63\x6e\x18\x80\x49\xb9\xa9\xab\x12\xd0\xb9\x16\xea\x4a\xef\x5f\x2f\x85\xd9\xc0\x52\x91\x41\x95\x02\x36\xf4\x12\xa8\x13\x8a\x1e\x99\x6e\xc7\x49\x6c\x15\x0a\xf6\x92\x66\x7d\xa8\x25\xd2\x16\xa6\xa9\xf8\xcd\x11\x24\xe6\xff\x3b\xf4\x09\xbe\xae\x55\x96\x67\x0e\xb7\x47\x49\xb0\x6c\xf3\xc5\x24\x01\xdc\x10\x9b\x1a\x00\x39\xbe\x56\x2c\xe4\x45\x1c\x96\x6e\x66\x6a\x38\x9f\x8a\x18\xe6\xfc\xd8\x97\x68\xce\xd7\xec\xe4\xef\x50\x4e\xab\xa5\x72\x57\x58\xb8\x92\xd4\x92\x25\x39\x1a\xd8\xc8\xa0\xb8\xe2\x32\xf9\xe5\x67\xf8\xa6\xf4\x5f\xb5\x9d\x7a\xed\xb5\xf6\xdc\xdc\x33\x38\x46\x91\x3f\x58\x57\x2a\x27\xef\xd3\x72\xde\x62\xa2\x15\x2c\x8e\xeb\xf4\x98\x58\xee\xe8\x3f\x42\x50\x70\xbd\x53\xa1\xe9\x52\x8e\xde\x55\x44\x6d\x48\xe7\x3f\xa0\x99\x75\x2a\x2f\x0e\xbd\x72\x1c\x61\x29\x5c\xb2\x1b\x74\x64\x20\xcf\xf1\x50\xc3\xdc\xaf\x93\x2d\xe5\x6f\x62\xc6\x6f\x6c\x73\xfe\xff\xb1\xd2\xfb\x38\xda\xa4\x26\x14\xa4\x26\x1b\x4c\xfa\x5a\xc1\x7f\x5b\x39\x10\xc6\x15\xfa\x83\x96\xeb\x26\xbe\x5b\x6b\x63\x7c\xfe\xf9\x76\xdf\xe4\x03\x64\xae\x5a\x4e\xe2\x71\xb3\xa3\x00\x40\x9b\x2a\xae\x5f\x2a\x28\x38\xda\xe5\x21\xd6\x20\x78\xe0\xeb\x8e\x52\x9d\x62\xf4\x83\x4e\x3b\xf1\xb5\xc2\x07\x5c\xd4\x42\x05\xec\x3a\x91\x21\x82\x99\xbe\xab\x80\x9e\x17\x14\x7c\xbb\x8e\xc5\x28\x0f\xee\x6c\x90\x24\xac\x03\xe0\x90\x0e\x47\xa6\x1d\xd2\xc1\xa7\x1c\x46\x69\xb2\xf4\x22\x72\xd2\xf0\x3c\x41\x94\xc2\xd7\xaa\x5c\xd0\xb3\x41\xd8\xb3\xbb\x14\x63\xe3\x4f\xc6\xfe\x89\xae\x2a\xc4\x05\x6b\xd3\xe2\x8f\x6e\x63\x11\x39\x2d\xb3\xd9\x59\xf9\x84\x02\x72\xa7\x49\x69\xbd\x88\x2a\x43\xa4\x40\xcb\x87\x80\xf3\x75\xab\xa3\xd8\x85\xcf\x28\x58\x4d\xab\xab\xe4\xb2\xaf\xe0\x77\x50\xde\xba\x8c\xbc\x89\xd0\xb6\xd0\xdb\xf1\x97\x35\x0a\xb4\x85\x2b\x61\x14\xba\xd4\x23\xe2\x90\x5b\xf4\xac\x7c\xed\xce\x07\x54\x42\xa6\x7c\x3b\x2d\x63\x33\xe0\x96\x7e\x8a\xd3\x92\x8b\xb2\x8a\x53\xe7\x1e\x0d\x15\xff\x51\x8d\xd4\x64\x61\xba\x6d\xf2\x04\x64\x5a\xac\xea\x47\xef\x2f\x0a\x7f\xf5\x84\xd5\xab\xed\x25\x57\x17\xc0\x2b\xff\x14\xdd\x26\x7c\xe3\x2b\xb3\x61\x94\xdb\xde\xa4\x52\x9e\xb8\x89\x81\x42\x32\x12\x69\x74\x00\xfd\xb8\x74\xc8\x24\x9e\x2a\x72\x7c\xa3\x08\xe3\x08\xec\x11\x33\x9e\xb4\xcf\x95\x4a\x7f\xdd\xf1\x76\x30\x0d\x7b\x61\x50\x44\x49\x91\x4d\xa8\x90\xee\x6d\x35\x94\xd7\x3a\x1e\x81\xa9\x33\xba\xc1\x20\x8c\xcd\x6e\x9f\xa1\xc4\x32\x94\x96\xe3\x2a\xdd\xcb\x91\x69\xdf\x97\x3c\x3b\xcb\xc1\x02\x88\xb7\x38\x69\x82\x57\x91\x0c\xca\x93\x4a\x97\x95\x28\xa7\x50\x36\x12\x16\x69\x1a\x38\xa1\x91\x6e\x88\x1c\xb3\x41\xb2\xca\x07\x1b\x2c\x3f\xd3\xf6\x08\x77\x86\xe6\xab\xf1\xe1\xf1\xa8\x78\xeb\xad\x32\xf6\x39\xa8\x68\xee\x3c\x90\xd2\xeb\x77\x8f\x4c\xb0\x6c\xfa\x94\xa6\x72\x2e\xc4\x65\x2d\xcc\xcd\x65\x13\x58\xc0\x27\xd7\xbd\x0f\xf1\xa5\x5a\xdb\x2d\x29\xdb\xc7\x3d\xb8\x01\x58\x6d\x90\x05\xe5\x6b\x25\x0a\x18\x25\x86\x88\x46\x5f\x62\xc7\x12\x67\x15\x56\x2b\x3a\x0d\x19\x0c\x49\x2b\x57\x44\x79\x2a\xea\xf1\x0a\x39\xb6\x55\x71\xee\x72\x13\x3d\x47\x8b\xcc\xf9\xb2\xae\x97\x6d\xf7\x3a\x4e\x26\x84\x64\x5b\x63\x6f\x0a\x77\x10\xdf\x02\x7c\xbb\xc7\xb0\xb3\x25\x67\x44\xc7\x05\xdc\xed\xb3\x70\x87\x90\xc1\x7b\x6f\xac\x5a\xec\xef\x8e\x15\xd1\x2b\xb1\x1f\x6c\xbd\x83\xa2\xaa\xd3\x1b\x28\x6d\x02\x7f\x0d\xe6\x42\x32\x73\x4a\xdd\xe2\x73\x78\x6f\x48\xa6\x6c\x90\xd1\x74\x32\x7a\x73\x1e\x1e\x45\xfb\x9c\xbf\x18\x03\x81\x84\xfe\x2d\xd5\x11\x3c\x4a\x93\xc0\xda\xde\xa4\x87\x35\xdc\xea\x28\x88\x09\x8e\x5d\xa4\x70\x76\xac\x2b\x71\x9c\x07\x35\x57\xe1\xc8\xf4\x4c\xbb\xf4\x43\xbe\xf1\x35\xa7\x69\xa2\x05\x4e\x54\x19\xc9\xa4\x36\xe6\x54\x33\x7b\x77\x8a\xad\xfb\x9c\x93\xd3\xa3\xf8\xa7\x8c\xeb\x4c\xc4\x2d\x55\x58\x05\xdc\x8d\x05\x6f\xf7\x23\xda\x69\xd2\xd7\xeb\xc9\xd5\x02\x93\x0f\x92\x28\x0c\x04\x9a\x29\xd4\x4b\xf4\x51\xbe\x69\x32\xb3\x8b\x45\xaf\x6f\x73\xa1\x8e\x87\xe7\xfd\x4b\xc5\xf0\xf0\x4b\x85\x46\x02\xf3\x31\x9d\xc4\x8e\xc6\xe2\x26\x91\xed\xf0\x75\x67\x5b\xd2\x7f\x6e\xae\xbd\x30\xbd\x40\x6e\xad\xd4\xcf\x68\x14\x98\xbf\xb5\xb3\x3d\x53\x84\x0d\x7b\x4d\xe7\x80\x37\x54\x42\x2f\x0a\x63\x1b\x53\x42\x4f\x52\x65\x34\x73\x58\x77\xa7\x14\x8d\xcc\x1d\x4d\xba\xf0\xff\x56\x60\x73\xf1\x5b\x66\x42\xb1\x75\x9f\xa5\x4f\x21\x97\x7f\xbf\x42\x9b\xb1\xdf\xe7\x44\xb3\x37\x29\x5b\x8d\xef\x3e\xa5\x77\xfe\x49\xcd\x8c\x03\x50\xba\xe0\xb0\x1b\x40\x0e\x59\xa4\x65\x0f\x11\x8b\x80\xb2\x09\x15\x00\x6c\x77\xe9\xfb\x6b\xa8\x3c\x83\x4a\x66\x52\x89\x3a\x54\x75\x2c\x68\xdc\xa4\xd8\x8e\x75\xc0\x77\xaa\x97\x37\x8c\x7b\xd4\x22\x3e\xe5\x3d\xe8\xf7\x95\x07\xfd\x3e\xd9\x78\x6c\x8d\x13\xe4\x07\xe2\x24\xfa\x05\x82\x5c\x6c\xd5\x7a\x3b\xd2\x91\xe9\xf9\xb6\x89\x50\x0f\xae\x62\xec\x91\x19\x01\x4b\x91\x54\x57\x9e\xad\x38\x55\xa9\x59\x03\x5c\x64\xda\x91\x9c\x96\x7f\xcc\xd7\x4a\xd9\x33\xb7\x69\x9a\xa4\x61\xc6\x04\x69\x12\xd3\xfb\x87\x3f\xee\x88\x4b\xfa\xa9\x89\x7b\x59\x12\x13\x32\xc1\xe9\x92\x38\x63\x71\x5f\xc1\x01\xcf\xd6\x22\x8d\xf9\x85\xf9\xb6\x89\x6d\xd0\x4b\x88\xdf\x74\x41\x0c\xc9\x07\xf4\x53\x7c\xdd\x24\xe3\x47\x2a\xb7\x2d\x05\xec\x3b\x4d\xbf\xc9\xd7\x9d\x2f\x29\xd9\x94\xa5\xd4\x64\x79\x5a\x04\x54\x00\x50\xb9\xa0\x0b\x0a\xd2\x7b\x41\x57\x01\x8b\xb4\x1f\x06\x88\x65\x5e\x62\x37\x13\xb8\x03\xbe\x76\xee\xd0\x6a\x18\x2d\x16\xa9\x52\xc2\xe7\xcc\x02\xdf\x74\x3c\x80\xed\xf5\x72\xf3\x67\x7b\x26\xb4\x36\x2c\x19\x6c\x59\x43\xbe\xdd\xeb\xe2\xb8\x22\xc2\x4d\x5f\x08\xb3\xfe\x3e\xd9\x63\x7c\xe2\x9c\x8a\x5a\x76\x77\x15\x94\x7f\xd3\xc5\xe5\xa3\x22\x7f\x9c\xbe\x0a\x6b\x61\x0a\x8c\x47\x88\xf9\xf6\xae\xd3\xcb\x39\xe0\x96\xdb\x19\xbb\x88\x99\x4c\x0c\x26\x65\x84\x1c\x09\xb2\xe7\xe5\xfe\x52\x57\x21\x57\xfe\x14\xbc\x8c\x48\x1c\x7d\x57\xb3\xe3\xed\x20\xf6\x46\xac\xae\xc7\xa9\x3e\x88\x45\xfd\xf8\xba\xea\xa0\xfc\x8f\xba\xdb\x37\xf0\x0b\x4e\x58\xb6\xa7\x97\x1f\x17\x2e\xf8\xa6\x21\x65\xfd\x6a\x3b\x4a\x92\xa1\xe8\x82\x0b\xeb\x1c\xbd\x28\xdf\x34\x41\x9b\x06\x61\x7f\x40\x52\xa7\xba\x26\xd8\x52\x1c\xc6\xcf\x2a\xdd\xbe\xdc\x0e\x28\x49\x04\xdf\x53\xe4\x5e\x94\xdc\x8d\x06\x56\xe4\xa9\x09\x79\x03\x89\x76\x94\x67\x39\xb9\x34\xde\xe7\xf3\xb1\xc9\xd3\xe5\x40\xc1\x2d\xfc\x3d\xca\xa2\xa1\xf8\x7c\x07\xae\x16\x26\xf0\x56\xa7\xd2\x58\x55\x6e\x5c\x4c\x26\x47\x8c\x02\xab\x6d\x7d\xe5\x9b\x8c\x21\x3b\x0d\xdf\x01\xe6\xf4\x81\x6a\x52\x79\x57\x91\x29\xec\xc4\xea\x41\x15\xf7\x2e\x66\x19\x19\xb9\x07\x63\xd5\x09\xc2\x12\xde\x02\x18\x2b\x5f\x04\xf9\xf9\x5b\x30\x57\x8e\x6a\x67\x41\xf0\x49\x13\xeb\x1e\x40\xf1\x46\xe9\x79\x86\x49\x8c\xc2\x0d\xd2\xd3\x5b\xd5\xae\xbe\xf2\x83\xe2\xab\xf8\xb8\x6b\x14\x41\x06\xa4\x7c\x0f\xae\x71\xe2\x6d\xa5\xe0\xe9\x6d\xd6\x90\x5a\x26\x4a\xab\xef\x81\x9e\xd4\x92\xb7\x05\x88\x2d\x1b\xa4\x7a\x53\xd7\xfc\xcb\x87\xda\x8b\xe9\x9a\x89\x21\x59\xce\x44\x3c\xf8\x8c\xb0\xf2\xd4\x0c\xd7\xcb\x87\xda\xd6\xf4\x6d\x1a\x13\x14\xe3\x11\xa9\x18\x1f\xd2\x0e\xc2\x6c\x64\xe2\x10\x3c\x37\x38\x7d\x6f\xa9\x93\xf8\x56\xed\xa1\x66\x0e\xb7\xc3\xe1\x90\xf4\x0f\x7c\x99\xea\x96\xa2\x14\xb9\xd5\xfc\x4c\x6f\x06\x36\xcb\xc2\x15\x94\x1d\x98\x8e\x5a\xb5\x66\x9f\x52\x19\x68\x5b\xa4\xc9\xc8\x9a\x78\x9f\x72\x5d\x1e\x5b\xf7\x3d\x79\x10\x5b\xc0\xc4\x5e\xc7\xe6\xc3\xcc\x9e\x57\x9d\x6c\x68\xe5\x45\x7e\xe0\x14\x9c\x0e\xfc\x11\x8a\x1d\x7c\x3d\xf6\xfd\x3e\xbf\xb7\x17\x5d\x23\xfc\x55\x54\xc9\xe7\x8f\xab\x80\x68\x98\xf4\x2c\x08\xaf\x99\x4e\x60\xac\xc0\x79\xff\xa8\xe3\xfb\x57\x73\x1b\x0c\x62\x20\x3c\x26\x3c\x40\x19\x3d\x55\x40\x5f\xdc\xa8\xc8\x2c\x35\xa9\x28\x52\xd3\xa4\x75\x4c\x4c\xf0\xf0\xd9\x2f\x76\xb9\xd7\xf2\xe7\x01\x78\x3e\xda\x08\x68\xcd\x4d\xda\xb7\x79\x36\x51\x0e\x87\xa8\x32\xd0\x37\x60\x9b\x5c\xc3\x00\x62\x2f\xfe\x62\x3b\x68\xe3\xe0\x5c\x79\xae\x7f\xc9\x17\x47\xb6\xc6\x3b\xbf\xec\x15\xfc\x0e\x0a\xe3\xf9\xcf\x11\xae\x31\xd2\x40\x31\xb9\x6d\x94\xde\xea\xd6\x05\x9d\xfc\x39\x39\xf6\x64\xbb\x50\x08\x10\xc0\x9a\x6f\x23\x2d\xc3\xbf\x97\x0f\x39\x80\x18\x05\x0c\xc8\x5c\x9c\x27\x58\xad\x08\xe0\x21\x64\x14\x80\x03\xcd\x32\xb2\x10\x3f\xc0\x69\xa5\x98\x7f\x5d\xe1\xb8\xa3\xa6\x99\xc3\x6e\x6e\x3d\xd4\x1d\xed\xff\x3d\xca\x0e\x58\x01\x57\xb0\xb7\x61\xe2\x38\xf9\xce\x8f\x53\x29\xd3\x8d\x46\x42\xef\x8e\x24\xc1\x8e\x2e\x7d\x0e\x91\x05\xaa\xd4\x30\x25\x1c\x3d\xf1\x7f\xd0\xa2\x90\xd3\x50\xfb\xaa\x36\x5c\xfc\xff\x01\x22\x7b\x22\xfe\x7c\x35\x79\xda\xa3\x94\xe0\xbd\x8b\xf3\x44\xaf\x2e\xdd\xc7\x78\x38\xd8\xb9\x9f\x8f\xbd\x40\xca\x55\x6c\x04\xa1\xc1\xd2\xc1\x65\x39\xc9\xf0\x75\x7f\xaa\x93\xde\x9b\x08\xb6\x18\xbd\x0f\x26\x0b\x07\xe5\x2f\xdf\xcd\xc9\xc7\x96\x33\x8f\x63\x83\x4d\xba\x63\xcf\x2b\xed\xb3\x90\xae\xd0\xdc\xb9\xa1\xf7\x35\xc5\x7b\x15\xe7\x3d\x09\x99\x09\x1a\x79\xd3\xf3\x8a\x30\x88\xa3\x73\xcc\xeb\x0f\xb1\x13\xab\x7d\x1b\xc9\x00\xc7\xa3\x94\xab\xca\xc0\x8d\xaf\x9b\xc4\x8f\x7a\x96\xd4\x0f\x05\x68\xe1\x6a\x49\xce\x39\x3b\x59\xd3\x38\x58\x98\x6e\x0f\x6d\x1a\x94\xd1\xbe\xd2\x2b\x13\x91\x9f\x96\xe3\xb6\xbd\xae\xda\x42\xf2\x41\x18\x13\x7a\x11\x0b\x0a\x65\x25\xec\x82\x87\xb4\x30\x44\xd9\x4e\xe1\xe5\x38\xca\xc7\x0e\x7e\xd0\x51\xcc\x92\x9f\x9e\x6c\x52\xc0\x63\xa4\xb0\x3c\x10\x72\xd4\x10\x5a\xe0\xeb\xf5\xa7\x54\x2a\x2d\xce\x93\x74\x8d\xc2\x2c\x69\x32\xa1\x8f\x09\x9d\x53\x6b\x6e\x6e\xeb\x4b\xe4\x36\xe1\xd4\x7d\x62\xdd\x47\x88\xf6\xcd\x20\x2a\x7a\x4e\x99\x14\xb5\x23\xac\x7c\xbe\x76\x85\xd0\x2c\xe0\x42\x28\x1e\x4a\x31\x34\xc9\x75\x43\x1f\xd1\x7c\xbb\x17\xba\x36\x48\xc9\xd6\xd2\x8a\x90\x34\xae\xd2\xe9\xb1\x06\x9c\xee\xb3\xb3\x0e\x4a\xed\x2d\xf7\xa5\xca\xc2\x0a\x97\xd6\x26\x1f\x09\x29\x2e\x9f\x1e\x3e\x36\xe2\x12\xbe\xee\x28\x41\xd6\x24\x1f\x25\x45\x9a\x86\x2d\xd5\x7e\x53\x85\x49\x2a\x20\x66\x9e\x16\xfd\x7e\x64\x27\x15\xf3\x41\x47\x21\x8d\x58\x69\xce\xe1\x7f\x1d\x96\xed\xb8\x72\x40\x96\x8b\x70\x54\xc1\x1c\x30\xaf\x99\x80\xe5\xeb\x6e\xe8\x4c\x3b\x19\xa9\xf1\x16\x72\x4c\xcd\x2d\xb0\x3d\x05\xfa\xda\x6b\xed\xc5\xa2\x9f\xd1\x01\x26\xbd\xcc\x8a\x61\xff\xae\x82\x18\x5c\x50\x30\xed\xd7\x93\x22\x8d\x89\x6e\xb1\xe5\xf1\x67\x27\xc6\x4a\x62\xa8\xf6\x78\xb3\xb3\x6d\x13\xa6\x8b\x49\xca\x84\xaa\x8e\x1c\xdf\x1d\x09\x75\xae\xc2\x99\xc3\x54\x4c\x77\xdd\x51\x8c\xe5\x51\xc2\x05\xbe\x2b\x36\x8c\x57\xc2\x2c\x14\xd8\x03\x8a\x5f\xa7\x15\x57\x46\xbd\x25\x8a\x14\x05\x72\xe6\x49\x82\x99\x00\x3d\x35\x5f\x2b\x0f\x6f\x44\x92\x56\xa9\xed\x4d\x79\x49\x27\x66\x11\xc6\xc4\xb1\x04\x05\x9a\x8c\x77\xaf\xfb\x20\x7f\x37\xed\x41\x54\x48\x2e\x2b\x24\xcd\xc0\x8c\x46\x36\x66\x54\xba\x2b\x93\xbc\x32\xef\xc0\xb4\x4d\x1d\x72\x51\x68\x63\xc5\x76\xbe\x83\xb6\xa8\x68\x1e\xfc\xf6\x23\x4a\x94\xa9\x1d\x15\x8b\x51\x18\x98\x38\x03\xa8\x41\xb2\x6f\x30\x2a\x58\x91\x7b\x40\x57\x8b\x50\xea\x9e\x16\x06\xb9\xa8\xb2\x5c\xd9\x6a\x98\x65\xb4\xa8\xa5\x01\x4b\x81\x9e\xee\x28\xf9\x86\xf7\xc7\x8a\x54\xe1\x96\x2a\xb0\xac\x98\x80\x35\x86\x3d\x19\xef\x2d\xd5\xe5\x7c\xcb\x91\x29\x8c\x52\xbb\x12\x26\x45\x16\xad\x21\x8b\x8e\x14\xc5\xa6\x62\xc4\x40\x4b\x35\xab\xa3\xd3\xda\x43\x0e\xfd\x43\x87\xf4\x59\x31\x59\x3e\xa5\x73\xa7\xf4\x69\x24\x5b\xef\x28\x70\xc8\x13\xeb\xaa\x85\x1b\xae\x2e\x0d\xd1\xda\x5f\xad\xe9\x7b\xce\xcd\x11\xd9\xc0\x2a\x51\x0a\xb5\x14\x17\x1b\x0d\x2d\xc2\x22\x1c\xaf\x18\xd8\x9b\xbe\x57\x20\x29\x46\xb6\xa5\x08\x6b\x34\x81\xfa\xa5\x8e\xf7\x8e\xb3\x28\x59\xed\x25\xab\x0c\x06\xc6\x91\xbb\x3e\xae\x44\xf0\xbe\xd0\x7e\x5a\x7f\xb0\x18\x8d\x22\x92\xef\x74\x0d\x61\x17\x3a\x4a\x72\xe8\xbe\x4a\x3e\x71\xdb\x29\x42\xec\x4f\x9b\x28\x38\x22\x6b\x3c\x08\x91\x19\x81\x14\xed\x94\xee\x92\x0b\xe3\xd7\x6d\x00\x19\x34\xf8\x63\xa7\xb4\xbc\xe1\x35\x05\xbd\xd9\x52\x51\xaa\xc9\x32\x9b\xd3\x6a\xc2\x1e\x6a\x75\x95\x22\x38\x14\x3c\x35\x40\x03\x39\xc0\x4f\x9b\x6a\xc6\x8b\x61\x12\x25\x48\x9d\xf8\xa3\xe0\xf7\xd5\x51\xf0\xfb\xb5\x02\xfe\xc1\xb9\x72\xb8\x6c\x3a\x34\xe9\xb2\x15\x35\x0c\xc5\x32\x7f\xc8\xf9\xc0\x4f\x29\x24\xe7\x20\xb4\xa9\xa4\x5f\x61\xf6\x7f\x8d\x37\xe5\x1b\x35\x19\xa3\xa2\x74\x13\x32\x8b\xd4\x0b\x56\xe6\x6d\x35\x7e\xb7\xe1\xb7\xc1\x3b\x7b\x5f\x73\xda\x7d\x57\x45\x4d\x0f\xe0\x6a\x21\xd9\x76\x17\x4e\x2a\xdf\xc0\xe3\x96\x20\xd6\x9f\x1b\x78\xa3\xdf\x24\xc3\x02\x67\xe4\xaa\xaa\xbf\xb6\xd6\x55\x70\x71\x8c\xf2\x3a\xf0\xae\xce\x92\x5b\x02\xaf\xf6\x2a\xbe\x1b\x91\xec\x39\x2c\x6d\x9c\xbe\x3b\xc1\xa7\x26\x0a\xca\x8a\xf1\xed\x18\x9e\x14\x2f\x37\xc0\x69\x47\xcf\xf6\xfd\xe7\x48\x5b\x42\x16\x46\xcb\xf5\x5e\xed\x20\x1d\x0e\x58\x99\xef\x29\x6a\xe2\x3b\x1d\xe5\xe7\x3d\x0e\x42\x33\xec\xd9\x73\xca\x57\xfd\xb6\x6e\x0c\x07\xaa\x11\x9e\xf7\x95\x8e\x12\xe8\x7d\x1f\x65\x05\x1c\x7f\x57\x28\xc1\x21\xc5\x79\x72\x68\xd9\x9f\x1e\x6b\x0e\xc0\x3f\xaf\x61\x79\x5e\x68\x2f\xda\xd8\x2e\x85\xf9\x64\xf9\x05\x9c\xe2\xc0\x18\xf1\xc3\x28\xf6\x93\x7b\x34\xc9\x72\xb6\xfb\xc0\x92\x7a\x09\xbf\x44\xd3\x02\x3f\xeb\x2f\x3b\x9e\x11\x61\x0f\x5e\x13\x66\xf5\x2e\x3f\x0e\x86\xe9\x32\xa1\x67\x04\x4b\xa7\x32\xd3\x93\x9a\x1d\x9b\xeb\xa1\xf8\xb3\xa9\x75\x6f\xa3\xa7\xd0\x40\xc8\x10\x12\x2c\x3a\x21\x91\xa3\x21\x90\x3e\x12\x9a\x3e\xa1\x01\xa2\x21\x84\xa5\xb8\x8c\xf9\xc7\xda\xfc\x05\x85\x73\x70\x1a\xaf\xa9\x75\xba\x9b\xe6\x18\x8b\xf1\xfb\x54\x2f\x10\xfd\x7e\x0a\x22\x30\x64\x13\x5d\x05\x7f\xfa\x39\x55\x39\x10\x43\x4c\x52\xd7\x05\x02\x85\x9d\xdd\xa7\xb4\x78\x63\x36\xb0\x80\x05\xc1\x14\x40\xf8\x4a\xb7\x7d\x22\x2b\xf7\x59\x9d\x2a\xfe\xe5\x43\xed\x55\x13\x2c\x03\x7e\xa9\xeb\xf7\x42\xba\xd0\x14\x4b\x2f\xa6\x89\xe9\x41\x58\x7b\xde\xbb\xc3\x9e\xe9\xb4\xf3\x9c\xaf\x9c\x5a\x93\x91\x6b\x12\xad\xb1\x45\x10\x61\x64\xa5\xee\x7b\xa6\xe3\xeb\xb9\x43\x33\x1c\x26\xf9\xa0\xa5\xc4\xaa\xde\xd7\x3c\x05\x4e\xe0\x8c\x84\x7d\x46\x61\x1c\xb3\x17\x8c\x82\xe7\x49\x1c\x01\x7c\xe3\x05\xce\x6c\x1c\x0c\xca\x3d\xbf\x4b\x89\x51\xfd\x68\xec\xe1\x24\x57\x31\xcd\x98\x02\x26\x99\x14\xbc\x3d\xbd\xa6\x90\x11\x95\x3f\x85\x30\xee\x96\x4a\xc8\x07\x69\x58\x9e\x2a\x71\x9f\xa4\x96\x51\xe7\x3e\x09\x43\x24\xb4\x4c\xe5\xf8\xf0\x7f\x60\x15\x09\x45\xd3\x13\x2a\x45\xd6\x0b\x8d\x72\xb4\xb8\x1f\x8b\x6f\x54\x0e\x3c\x37\xcb\x36\x59\xb1\xe9\x5e\x1a\x44\x2e\x82\x91\x99\x42\x26\xf5\x32\x76\x80\x50\xbe\xb5\x1c\x59\xe9\x96\x6e\x0a\x03\xc2\x12\xae\xc1\xbf\x1e\x7b\x91\xd7\x73\x5a\xd3\xe5\x0a\x16\xb6\xa8\x55\x3c\xa1\x52\x66\xa9\xed\x4d\x6a\x72\xec\xa3\x8a\x8e\x73\x53\x55\x76\x37\x75\xae\xee\x68\x93\x77\xbd\x64\x42\xc4\x27\xb0\x92\x48\x09\xf1\x75\x45\xd3\x32\xb5\x41\x9e\xa4\xfb\x14\xf1\xeb\x67\x78\x55\x21\xae\xf0\xde\x15\x52\xe5\xb0\x36\x3f\x52\x4c\x5a\x9b\x58\x79\xb0\x69\xac\xf2\x88\x94\xdd\x64\x57\xb7\xc9\xd2\x18\x38\x83\xe2\xd3\x30\xdc\x54\x2d\xa4\x3e\x0d\xea\xc8\x3d\xbb\x64\x8a\x28\xaf\xb4\x3c\x5e\x52\x2d\x8f\x75\x26\x60\xe2\xc7\xcd\x53\x6b\x86\x92\x53\x87\x55\xe1\xae\x53\xbe\xd1\xbc\x52\x21\x28\x8a\xb0\xa0\xee\x2b\xea\xda\xfb\x8a\x0c\x6e\x68\xe2\xb5\xa7\x68\x78\x34\x63\x02\x5c\x87\xdd\xb0\x8b\x30\x12\xbb\xa8\xcb\x1a\x8b\xff\x3c\xe5\xb3\x1c\xf2\xd1\x99\x1f\x70\xaa\xe2\xac\xfc\x98\x72\x26\x1a\x23\x85\xa3\x7b\x6f\x57\xe1\x11\xef\xe8\xde\xe0\x4f\x35\xaf\xc6\x44\xd7\x67\x7a\x58\xc9\x1a\x2e\x66\x8e\xb1\x75\x02\x24\xe5\x31\x80\x89\xba\xab\xda\xfd\x8a\x38\x5c\xb1\x69\x26\xac\x2a\x38\x1b\xcf\x2b\xfe\xa2\xf3\x8f\x14\xab\x48\xed\x8a\x8d\x0b\xa8\x1c\x61\x32\xae\x51\x1c\xff\x5b\xd4\x8c\xe4\xfc\x5f\x07\x24\xdd\xd0\x3a\xbe\x8f\xaf\x3f\x5e\x91\xaa\x9c\xa2\x97\x45\xf2\x8a\xdd\x21\x3c\xf9\xbf\x1b\x2b\x18\x09\x6d\x8a\x8a\xd2\xb4\xe4\x7a\x9e\x56\x3d\x44\x61\xd4\xb3\x29\xd2\xef\x00\xe8\xb0\x92\xa2\x70\x28\xfa\xee\xb2\x26\x06\xf1\xf6\xd0\xac\x2d\xda\x28\x0a\x63\xd6\x8a\x43\x86\xf8\xb8\x22\xbb\x38\xde\x40\x96\x86\x9a\xb7\x2c\x39\x64\x1b\xf8\x54\xe3\x9b\x4a\x72\x20\x5f\xe1\xd8\xc8\x25\x5d\x7d\x8f\xfa\x26\x1d\x39\x0a\xfc\x3a\xe3\x7a\x00\xfc\xaa\xed\xf7\x51\x5d\xc7\x9f\x21\xf1\xc2\xd7\xaa\x18\x91\x16\x59\x1e\x91\xe2\xaf\x22\x0f\x3d\x53\xa1\x53\xf5\x89\x96\xd4\x9a\x40\x41\xc0\x05\x4f\x4d\x8f\xc9\x37\xb5\x44\xbc\x2c\x86\x51\x64\x62\xf1\x53\x99\x99\x5f\x73\x34\x7c\xa2\xf6\x9b\x29\x22\xe2\xd7\x40\x88\x0a\x34\x0f\x9c\xe6\x1b\x5a\x25\x0b\xb5\x77\xa4\x08\x3e\xac\xc0\x64\x30\xaa\x8e\x3e\x67\xde\xa7\xfc\xc6\x48\xde\x3a\x38\x8d\x0e\xc4\x7c\xf0\xd0\xa3\xd2\xc9\x1e\x1a\x11\xf8\x22\x9b\x1a\x6c\xb6\xae\xca\x58\xd7\xc8\x47\x95\x7a\x57\xcb\x89\x66\x7d\xa4\xb5\x0b\x4e\x77\x14\x00\x57\xb8\x87\x05\xc3\xe4\xc5\xcc\xf2\x34\x1c\xb6\x14\x35\xeb\x1d\xa5\xc7\x7b\xc7\xb5\x6f\x25\x69\xcf\xa6\xc2\x97\x81\xec\xf0\x8f\x14\x53\x28\x67\xa6\x30\x76\x57\x5d\x79\x76\x39\x4e\x02\x08\xd9\xce\xeb\x22\xe6\x8c\xcf\xac\x96\x93\x08\x43\xf4\x40\x45\xc7\x29\x89\x00\xda\x74\xaa\xe5\xf5\x70\x68\x2c\x60\xdf\x99\xf6\x56\x9a\xb3\xca\x59\x63\xb9\x38\x30\xf8\x08\xc9\x9c\x3c\x46\x4a\x50\x5a\xc5\x22\x02\xa1\x12\xbe\x56\x4d\x86\x23\x9b\x2e\x25\xe9\x70\x42\xa9\x19\xde\xe9\xf8\x48\x0a\x6c\x4a\x70\xee\xce\xd4\x0e\xb9\x72\x8f\x86\xd1\x32\x56\xa9\xab\x11\x7a\x0e\x10\xd5\x7a\x46\x21\x94\xcd\xa6\x94\xac\x03\xf7\x4d\x89\x5a\x85\x47\xcc\xf2\x01\x01\x53\x7a\xa7\xa3\x24\x94\xee\x76\x3c\x8c\x39\xb5\x24\xe6\x61\x7b\x8c\x2d\x03\xcc\x83\x29\xc9\xf9\xc6\x45\xe0\x8b\x26\x0b\x63\xd5\x8d\x73\x49\xeb\x3a\x5e\x52\x81\xfa\x30\x0c\xa6\xaa\xd0\xb7\x85\x69\x4e\x23\x81\xbf\x11\xde\xf4\x1f\xc3\x4c\x08\x68\xa4\xe5\x34\x83\xf7\x75\xf7\x3b\x8c\x82\xb5\xcb\x2d\x5f\x31\x7f\xb6\xab\xf8\xb8\x9e\x5d\xdf\xbe\x7f\x0f\xce\xb5\xc3\x9e\xa5\x60\x56\xf8\xf0\xa5\x4d\xcc\xd7\xdf\xce\x35\x01\x4f\x56\xc2\x24\xb2\x71\x80\x9c\x84\xe8\x8e\x96\x8f\x2d\xb6\xca\x9f\x4b\x1b\xca\x6e\xd9\x28\x69\xa9\xed\x02\xb4\xaa\xd4\xd7\xfc\x9f\x65\x36\x7d\xaa\x5c\x93\xc2\xab\x52\xa9\xc3\xb4\xbe\xfa\xca\xd6\x51\x38\x7e\x54\xe8\xfc\x5f\xff\x03\x9c\x95\x70\x91\x6e\x68\x71\x95\xfd\xeb\xaa\x33\x61\x57\xd7\x93\xf1\xa0\xc1\x99\xb6\xc7\x7f\xf5\x9b\xeb\xbe\xb0\xb7\x49\xb1\x84\x98\x05\xf2\x3a\x69\x1d\x7e\xe1\xb7\x70\x88\xe0\xf8\x9a\xa0\xda\xa1\x3e\x50\xf0\xad\x9f\xc2\x82\x09\x2a\x7c\xfb\xd1\x39\x3b\xdb\x5e\x2c\x52\x6b\x8a\x20\x35\x39\x57\x48\x1d\xbb\xab\xef\x6b\x6f\x5a\xf1\x91\xc9\xed\xa4\x4f\x20\xdd\x57\xba\x96\x50\x95\x63\x41\x75\x5a\x39\x78\x95\x1d\x5d\x7f\x2a\xbe\x5e\xf4\xc2\x20\x34\xd1\x44\x39\xa8\x0e\xbd\x5b\xfa\x04\x08\xda\x2e\x77\xfc\x10\xfc\x42\xb9\x89\xa3\x34\x19\x25\x59\xa5\xdf\x1b\xc7\x07\x5f\x57\x0e\x35\xdb\xb7\x7b\x2a\x7d\x13\x34\xf6\x9c\xaf\xa4\x17\x14\x0d\x66\xda\x69\x70\x60\x7e\x8c\xfd\xc8\x4d\x36\x0a\xac\xcf\xe8\x10\xc7\x22\x3a\x73\x98\xbf\xaa\xae\x72\x08\x71\xbb\x3c\xcc\x06\x34\xa4\x70\xbe\xf6\x60\xe5\xf3\xcd\x7a\x5d\x47\x61\xbe\x3d\x34\x91\x55\xdb\x73\xa3\xa3\xb6\xe7\x86\x92\x68\x28\xe2\x30\xcf\xf6\x79\x14\x1f\x90\xf0\x8c\x5b\xa1\xd1\x67\xdb\xa2\x73\xee\x20\xd2\x46\xec\x39\xb5\xae\x10\xf6\x4c\x92\x86\xac\xca\xdf\x83\x67\x06\x13\xf9\xaf\xb5\x2a\xf3\x04\x69\x41\xf3\x7f\x54\x7a\x6b\x15\xa7\x71\x90\x84\x71\x10\xf6\xca\x8d\x88\xcc\x2e\x3c\x79\x80\x6a\xf9\xba\xd6\x56\x31\x73\xb8\x8d\xde\xdd\x39\x29\x54\xdf\x56\xcb\xe9\xb6\x42\x36\x06\x03\x93\xf6\x2d\xcb\xc8\x63\xa5\xe0\xb5\x44\x42\xc9\x77\x8f\x32\x91\x12\x32\x1a\xf7\x14\x14\x77\xc9\x46\x91\x45\xcf\x2c\x46\xe9\x92\xc2\x4b\xb7\xba\xbe\x78\x7f\x47\xab\xa9\xfe\xc2\x11\x82\x2c\x86\x51\x34\xa1\x1a\x4c\x2e\x2a\x8d\x22\xce\xdc\xe0\xb4\x3a\xa5\x7c\x99\xac\x48\x49\x57\x30\x45\xd1\x88\xc5\xdf\x15\x09\xd8\x3b\x2e\xf8\x5d\x0c\x93\x2c\xa0\x1e\x3c\xa9\x8a\xc3\x5a\xb0\x90\xb6\xf3\xc3\x54\xd6\xcd\xf1\xac\x50\x56\x76\x37\x65\xa8\x10\x32\xfc\x06\x99\x18\x26\xa3\x24\x7c\x0a\x8e\xea\x93\x0a\x19\x0d\x40\x0b\xba\x0f\x39\x6f\xe9\x14\x31\xbf\x2e\x70\x7a\xdd\x16\x9f\x2c\xe6\x26\x8c\xf7\x78\x5c\x16\x18\xd4\x98\x9e\x56\xd5\xcc\x4f\xe3\xd4\xc2\xd9\xf6\x39\x6d\x19\x97\x3b\xf2\x0c\x74\x67\x15\xd8\xf5\x02\xbb\x2b\x32\x40\xf5\x8e\x9a\x43\xed\xcc\x41\x33\x44\x51\xd0\xe7\x08\x2e\xa8\x31\x0f\x06\x26\x8a\x6c\xdc\x67\x3a\x5f\x04\x7f\x3b\xd6\x29\xde\xe3\x9b\x6e\xa3\x3e\x69\x79\x4a\x26\x4a\xf2\xfb\xac\x92\xfc\x6e\x06\xd2\xf5\x53\xd3\x2b\xa4\xdd\x7b\xc6\x91\x3f\x28\x0c\x58\x3d\x30\x3c\x70\xa0\x1d\x92\x98\x22\x41\x46\xe6\xe6\x24\xc1\xaf\x44\x60\x37\x15\x18\xbe\xc8\xc3\x28\xcc\xd7\x76\x55\x98\xc6\x94\xd0\xd5\x1d\x1e\x39\x97\x7f\xf6\x0e\x36\x32\xfd\xd2\x8e\x41\x9b\x1d\x19\x97\x1f\x3a\x39\xa4\x2c\x0d\x55\x21\x8b\xf7\x0e\xdf\x74\x14\x09\x7a\xf8\x16\x78\x68\x10\x43\xfc\x6f\x30\x16\x02\x08\xf2\xb6\xf2\x74\xc7\xd3\x7c\x1d\xa7\x79\xc7\xe2\x60\x98\x2f\xac\x56\x63\xb9\xab\x18\x21\x58\x26\xc3\x89\x2f\xb8\xad\xe0\xa3\xb7\x5d\x4b\xf2\x20\x1c\x66\x36\x5a\xaa\x6c\x91\x4b\xe4\xf6\x6c\xf1\xaf\x88\x5c\xe4\x3e\xe7\xd6\x44\xe0\xe6\x63\x92\xfb\xb1\xe2\x9d\xdc\x52\xd5\xd0\xc7\xba\xb5\x73\x02\x25\xcc\xbb\x4d\x5d\x40\xd9\x20\x1c\xe1\x38\xc2\x89\xc7\x4b\x9b\x6f\x3a\xbe\x3a\x17\x27\x01\x51\xbd\x6b\x46\x6f\x4e\x95\xf1\x4d\x4d\x38\xe0\xe0\xdc\xf6\x8e\xdc\x19\x2f\x21\xe1\x55\xe8\xe1\x85\xc1\xdb\x78\xaf\xe3\xeb\xa5\xbf\x18\x3f\xeb\x96\x8f\x3f\xe7\x5b\x15\xfa\x44\x5a\xa2\x7c\xd3\x84\x28\x88\x93\xa9\xd6\x37\xbe\x26\xb0\x89\x8e\x47\x69\xbd\x8b\x35\x82\x13\xf4\x3d\x9a\x63\x98\x90\x1d\xeb\xbe\xf8\x73\xbf\x82\x02\xb0\x6b\x4f\xab\x5e\xae\xe7\xc8\xd4\x62\xf1\x82\x70\x58\xe0\x79\xad\x85\x79\x27\xea\x4a\x5e\x95\xa4\x38\xcb\x2f\xc6\x76\xfa\xbc\xa3\x34\x9d\x99\x55\xc4\xf1\x9e\x97\xa3\xe1\x58\x08\x67\x0e\x7b\x4a\xd7\x23\xd3\x1a\x3b\x33\xc3\x81\x04\x13\x8f\xc3\x80\x6c\x8d\x15\xe7\x04\x18\x68\xb0\x0d\xf6\x92\x22\xb5\x43\xc1\x2f\x4c\x1f\x72\x42\x2a\x0d\xa5\x15\xe2\xbc\x1d\x86\x59\x16\x32\x3d\x61\x13\x45\xee\x93\xba\x5e\x4e\x8c\x51\x73\x72\x8a\x5f\x57\xad\xa4\xd7\x55\x66\x6e\x94\x86\x43\xce\x03\xf0\x46\x57\xdd\xd8\xa7\xb4\x5f\xbb\x8a\x78\x1c\xe3\x78\x5c\x01\xb1\xea\xd9\x82\x85\xe9\xf6\x52\x91\xe6\x03\x66\x90\xc5\xfc\x5e\x1d\xfb\xfe\xb2\x4f\x30\xda\x22\xc7\xb4\x7d\x99\xce\x1c\x6e\x87\xf1\x52\x54\xb0\xc6\x94\x4f\xb1\xbc\x4d\x3f\xcb\xd7\x4d\xda\x28\x99\x4d\xe9\x13\x8e\xce\xee\x9a\x4a\xa9\x5c\xab\x38\x73\x45\xdf\xee\xc6\xd6\x81\xa3\x72\x1a\x13\x85\x83\xff\xff\x50\x0c\x06\x97\x55\x80\x82\x9e\x7c\xe1\xea\xa7\x55\x52\x01\xe0\xf0\x57\x29\x0b\x17\x15\x21\x73\xa8\x23\x61\xaa\x89\x87\x6e\x39\xe3\x13\x24\x71\x90\xa4\x3d\x85\x92\xbb\xa2\x51\x72\x57\x54\x7a\x21\x5a\xce\x48\xb7\x97\x8e\xdd\x7f\xfc\x9b\x3a\x35\xb7\x31\xf6\xa4\x1e\x1c\x8a\x89\x4c\x5d\xcb\xb5\xd3\xee\x5a\x57\xe4\x15\xa7\xe8\x08\x77\x25\x33\xbf\x6c\xa7\xa8\x7c\xfd\xa0\xfb\xe5\x86\x7a\xed\xbc\x0b\xab\xd9\xf6\xb8\x86\x13\x2f\xf6\x57\x6f\xdf\x7e\xfe\xf9\xf6\xd0\xa4\xf9\x00\x49\x6b\x87\xce\x9a\xf3\x3a\xdb\xb5\xfa\xc1\xc2\x74\xbb\x17\x66\xa6\x0c\xf9\x5a\x1e\x55\x7b\x46\x91\xab\x9c\xa9\x11\xee\xbf\xf6\x5a\x3b\x89\xed\x04\x85\xab\x4e\xa1\xc4\x51\xfa\xdf\xa6\xd2\x0f\x12\xc0\x2d\x15\x3e\x98\xa1\x8d\xc1\xf0\x70\x64\x7a\x8b\x44\x22\xb6\x2e\x77\x3c\x53\xfd\x9a\x89\xf8\x55\x85\x7c\x4b\x91\x6a\x9e\x71\xf8\xf9\x38\xa1\x45\x8f\x0d\x8a\xf8\x0c\xc0\x4b\xbe\x56\x2e\x5f\xce\x85\x6b\x31\xdb\x1e\x80\x71\x46\x61\xcd\x97\xc2\x45\x9b\x02\x1f\x20\x9d\x25\x64\xf0\x1c\xbb\x9b\x6f\x39\x41\x59\x5a\xa8\xde\x1e\x57\x94\x70\x51\x44\x21\x2c\x5e\x1a\xcb\x0f\x6c\xa9\x9b\x58\xf1\x70\xe0\x8e\x36\x10\xe7\xbc\xda\xb6\x26\xcb\x57\x4d\xb9\x30\x7d\xc6\xae\xe3\x53\x71\x9b\xca\x3b\x7a\xbd\x78\x33\x37\x65\x2c\x35\xa1\xbc\xa3\xcb\x63\x95\x6a\xdb\xd1\xd5\x42\x20\x1a\x05\x11\x46\x11\xc0\x53\x58\xae\x8c\x95\x06\xf4\xf2\xe3\xb1\x7f\xfa\xb7\xc7\x0a\x37\x7e\x51\x59\xa7\xb4\x3f\x98\xf0\x07\x3c\x1a\x08\xa4\x01\x51\x25\x39\x2f\x37\x91\x31\x8e\xd2\x64\x05\xeb\x4b\xda\xb4\xcb\x4f\x4b\xff\xf6\x93\x0e\x3d\x91\x04\x91\x09\x87\xf4\x98\x42\x5c\xab\x70\xff\xc7\xc6\xaa\xfa\x8c\x07\x10\xe1\xfd\x06\xbd\xc4\x30\x5e\x49\x96\x2d\x50\x42\xb0\x38\xeb\x5a\x8a\x88\x43\x43\x1c\x40\x57\x54\xc5\x2b\x48\xe2\xd2\x55\x6e\x79\xe8\xf5\x71\x55\xc6\xd0\x60\xa7\x3c\x0d\x83\x65\xe0\x68\xb1\xae\xc0\xdc\xa0\x39\x0f\x84\x05\x7e\xfb\x4e\x25\x85\x92\x94\xb4\x6f\x5c\x02\x66\x9b\xfa\x87\xce\xb0\x05\x36\x1c\xe5\x19\xe2\x10\x2e\x70\xd3\x4f\x49\xb1\xdb\x83\x9c\x82\x24\x49\x7b\x61\x6c\x72\xf8\xa7\xd2\xc0\x43\xdf\xcc\x37\x8a\x21\xb7\x57\xd8\xdd\x2a\x28\xb9\xc7\x35\x5c\xd4\x08\xce\x29\x89\x2f\xec\x1e\x6e\x01\x57\xc7\xd7\x31\x8c\xa2\x4b\x2c\x96\xf3\x83\x13\x70\x7f\xad\xe1\x70\x76\xb6\xbd\x64\x56\x92\x94\x52\x10\x40\x88\xfc\x77\x63\x2d\x8f\x0c\x97\xc0\x31\x41\x95\x46\x17\xbb\xfa\xa2\x82\xa9\x01\xd1\xc0\x5d\xd7\x8e\x17\xdc\xc9\xa5\x5d\x50\x4a\xe3\x7d\x1b\x3b\x46\x92\x72\x92\xe0\x5c\xea\xd6\xaa\xb3\x95\x56\xc4\x70\x29\x67\x9c\x2c\x7e\x16\xc0\x2a\x69\x73\xa4\xe7\x41\xed\xe5\x7d\xdd\xa5\xd3\x51\x27\xfb\x35\x95\xab\x35\xab\x66\xed\x31\x1f\x66\xfe\xf9\x58\x91\xff\x82\x0b\xb5\x22\xa8\x22\xda\x1d\x9e\x14\x90\x3b\x25\x58\x2c\x0e\x63\x2b\xb5\x0a\x1f\xf1\xbe\x47\x84\x51\xfc\x55\x1d\x55\x1c\xdc\xac\x91\xb4\x1c\x38\x40\xb6\x7e\x34\xb2\xc6\x69\x9b\x62\x03\x3d\xc4\xce\xe0\x9b\xc6\x1e\xe2\xa1\x59\xc6\x0e\x86\x37\xc6\x31\x09\xdf\x34\x92\x3c\x90\x84\xe5\x76\x2e\x18\x07\xb6\xdb\xa8\x9d\x5e\xb4\x27\x8a\xb4\x8c\x13\xbf\xfa\x8a\xa0\xb2\x3b\x2a\xf5\x78\xb2\x5a\xfe\xb0\xd9\x6f\x28\x75\x5d\x26\xc1\x17\xf7\xba\x3c\x73\xa5\x67\xd7\xf7\x7e\xec\x47\x02\x0e\x55\xc8\x1b\x63\xa5\x54\xb7\xaf\xab\x71\x6c\x9e\x09\x53\xe3\xb5\x1e\x87\xfe\xb7\xd0\xe2\x95\xe7\xd8\x7e\x74\x06\xc1\x36\xdc\x44\xea\xc5\xd1\x66\xea\xd0\x6a\xc1\x53\x56\x95\x8b\x55\xe2\x46\x1d\x09\xdd\x1a\x57\xe4\x43\x91\x1b\x46\x5a\xe2\x16\xf2\x6c\x58\x3c\x8c\x86\x41\xbc\x7f\xae\xa3\x5b\x9e\x28\xf1\x88\xa0\x91\xab\xda\xd8\x67\x57\x2b\x23\xb7\x98\xa4\x7b\xb6\x25\xe8\x67\x3c\x57\xab\x2f\x9f\xe0\x20\xe3\x94\xcd\x58\x69\xa7\x6c\x61\x31\x22\xaf\x74\x4d\x4f\xd1\x55\x7e\x23\xfc\xec\xd1\x26\xdc\x53\x6c\x57\xb3\x91\x19\x79\x4c\x92\xa4\xd1\x55\xfb\xe0\x19\x97\x59\x31\xd1\x62\xf1\x46\x61\xd3\x37\x0a\xd1\xc6\xc4\xf2\xf9\x95\x0e\x77\x7f\x55\x5b\x4b\x65\x80\xdf\x4b\xcd\x2a\x63\xa4\xe0\x70\x9d\xc5\xfc\xf0\x8d\xe6\x0c\x4c\x86\x8b\x8c\xc8\x75\xb2\x96\x8a\x66\xa8\x49\x9e\x3f\xb5\xa3\x24\x45\x99\x02\xa9\x74\x96\x7b\xe1\x9b\x46\x31\xb6\xb0\x1f\x27\xa2\xe9\x07\x9e\x2a\xf0\x34\xc0\xa8\x5c\xa6\xcd\x21\x14\x35\x0d\x8e\x77\x1e\xe6\x26\xe6\x17\x42\x16\xe6\x13\x9d\x92\xf9\xc4\xf9\x48\x72\x5e\x4c\xa9\x90\xfa\xba\x56\x7f\xb8\xc4\x76\x1e\xbb\xf7\x3e\xec\xae\xeb\x62\x76\x75\xdb\x8f\x9b\xb6\x35\x47\x1d\x53\x9e\x92\xe6\x6a\x47\x71\xd6\x5e\x54\x34\x71\x40\xf4\xe0\xed\x7e\x8e\x70\x04\xc6\xac\xd5\x7d\x4e\x55\x0c\xdf\x28\xc2\xd4\x12\x67\x27\xed\x25\x67\xa5\x1d\xf3\xf0\x59\x45\x3a\xb4\x4c\x95\xc8\xd2\x0e\x55\x3a\x77\xa5\x29\xf7\x19\x25\x14\xc8\x5c\xc4\xe4\x4d\x38\xc6\x1a\x1f\xcb\xfe\xd1\xd8\xc7\xb2\x9f\xeb\xac\xcc\xe7\x2a\x6b\x1b\xa4\x49\xc6\x26\xcc\x11\x21\x1e\x98\x71\x44\x88\x2a\x52\xb6\x66\xb8\xbb\xfc\x25\xe4\xed\xae\xd2\x8e\x67\x5e\x3a\xe5\x2a\x9d\xc5\x66\x83\x73\xc8\x34\x14\xcc\x0f\x8c\xf5\xc3\x1f\x57\x98\xcf\x07\x2a\x97\x9a\x8d\xc2\x38\x59\x5a\x6a\x29\x05\xc2\x0f\x34\xa1\xf1\x07\x2e\x77\x91\xe5\xe1\xb0\x88\x0c\xd3\xd8\xc0\x12\x5e\xe9\xf8\x7a\xca\x15\x17\x17\xe5\x54\xa8\xe6\xe6\x5f\xe4\x88\xfe\xc7\x8e\xc7\xe8\x02\xe8\xca\x05\x8f\x86\x36\xc2\x76\x6a\x7b\xd6\x3a\xa0\x84\x68\xf4\xb6\x14\xf5\xab\x3c\xd3\xc0\x0c\xb3\x3c\x2d\xb8\xe3\x10\xd9\x86\x16\x2c\x32\xdf\xac\x6f\x4f\x33\x3f\xff\x7c\xdb\x64\xcb\xbc\xe8\x2b\xb5\x5b\x29\xd0\x6a\xd0\x4f\x92\x65\x91\x89\xe1\x49\xc3\x0a\x1e\x55\x10\xdb\xa3\xb5\x76\x0a\x27\x18\x9a\x44\xc9\xa4\xef\xd1\x9b\xa4\x04\xac\x20\x8e\xcb\xd7\x97\x1e\x77\xc5\xcc\x52\x57\x73\x9f\x9b\x83\x4e\x41\xb5\x58\xa7\x74\xda\xd4\x06\xcd\x4a\xdf\x31\x9f\x54\x62\x9a\x90\xde\xc5\xc6\x6b\x75\x95\x15\xfe\x54\x6b\x0b\x5e\xac\xd5\x75\x9e\x7f\xbe\xbd\x6c\x47\x39\xfa\x4f\xf0\x9c\xf7\xc6\x8a\xb5\x63\x27\x51\x25\x30\xf4\x79\x7b\x23\xd5\xc2\xf4\xa1\xf6\xcc\xe1\xbd\x5e\xf4\xf7\xc4\xd8\x47\xff\x97\x00\xb3\x61\x14\x63\xa7\xca\x2b\xee\xf5\x16\x3b\x0a\x56\x72\x0e\xbb\x11\x99\xe0\xbd\xeb\xde\x4b\x99\xea\xaa\x62\xf4\x07\x0d\x6d\x00\x2f\xb5\xed\x9b\x81\x57\xe9\x47\x22\x6f\x4b\xc1\xbb\x1e\x6a\xb1\x82\x6f\x8d\xb5\xb0\xe7\x8a\x8d\xb2\x7d\xe5\x5b\xc2\x6d\x3b\xaf\xb9\x84\x76\xac\x3b\x18\xe9\xf0\xb9\xae\x92\xb2\x46\xfe\x1b\x25\xa3\x9b\xf0\x9b\x64\x88\x2b\xc4\xf6\xe5\xd8\x60\x87\x4e\x41\x5d\x58\x7a\x7c\xc8\x9e\x49\xbb\x15\x3d\x34\x5e\xfb\xb2\x0a\x2e\xf3\x22\xcd\x23\xf0\xad\x36\xd0\x8f\x6f\x28\xac\x19\x11\x64\xee\xf5\xa4\x2e\xe8\x07\x54\x38\xfd\x19\x8e\x07\x6f\x90\x73\xa2\x00\x2c\x87\x78\x79\x5f\x60\xa3\x0e\xdb\xcb\x72\x3d\x58\x79\xcc\xc7\x84\xc9\xe3\xf6\x4e\xe1\x4f\x6b\x88\xd6\x16\x6d\x94\xac\x92\x8d\xc5\x0e\x86\x92\x1d\x5f\xab\x67\xce\x9d\xde\x87\x94\x9c\x15\xf9\xce\xa5\xc6\x86\xcb\x22\xce\x6c\x9e\x3b\x25\x48\xc9\x6e\xe9\xac\xd7\x7f\xfc\x88\x4d\x1a\x0c\x4c\x6a\x82\xdc\xfb\x0d\x8d\xc8\x45\x1f\xaf\x26\x6f\x01\x45\x29\xd0\x2d\x0f\x23\xd7\xc8\xad\xb4\xe8\xb3\xcf\x8f\x09\xff\xd5\x58\x3b\x57\xb4\x1b\x70\x66\x82\xe0\x0c\x81\xe4\x24\xb2\xcd\x38\xcc\x2e\x8f\x9f\x53\x72\x32\xd9\x1b\x45\x68\x73\x69\xab\x15\xda\x80\x4a\x51\x41\x29\x5d\xdc\x52\x27\x5b\x36\x08\x97\xf2\xdd\xbe\x9c\x3b\xd1\x55\x0a\x8c\xff\xa2\xca\x6c\xa5\xd4\xe9\x7f\xac\xe8\xc2\xef\x61\xa1\x60\x97\x31\x7f\x08\xdf\x8c\xf7\xab\x40\xa7\xc7\x19\x78\x98\x0b\x0e\xab\x55\xc6\x4d\xfa\xde\x6f\x6b\xe4\x68\x32\x1c\xda\x34\x08\x4d\x84\xb6\x16\x69\xa4\x6b\x39\xce\xd5\xba\x72\xc9\xec\x6c\xbb\x97\x82\x5b\x42\x75\x80\x30\xa7\x21\xdf\x34\x7a\x4a\x59\x6e\x96\x44\xb9\xd0\x91\x8b\x3a\x3b\xac\x69\xf6\x83\x17\xc3\x17\x97\x26\x7c\x36\x01\x3e\x2b\x32\x6f\x8c\x5f\x41\xfc\x75\xcc\xa5\x19\x82\x64\xd5\xa4\xbd\x68\xad\xda\x9d\xb3\x30\xed\x4a\x6b\xdb\x5f\x43\x56\x60\x1c\x0e\xb4\x2e\xa2\x4e\x50\x6d\x74\x9c\xd8\xf8\x37\xbe\xf6\x38\x6d\x3d\x31\x46\xe5\x76\x85\xa3\xf4\x53\x72\x94\xb6\x8e\x92\x4d\xc1\x54\xfe\xcb\x8e\x6a\x48\x63\x90\xa3\xa3\xf4\x7d\xc5\x7f\x12\x06\xc6\xb1\xe3\x2d\x54\xa8\x46\x5e\xf5\x8c\x13\xdf\xf8\x1a\xa7\x61\xbe\x47\xe3\x80\xa4\x10\xda\x79\xb0\xbf\xae\xd7\xde\xee\xe0\x5c\x3b\x48\x6d\x2f\xcc\x13\xf4\x6d\x71\x07\x0d\x7d\x5e\xba\x69\x3c\xd4\xb5\x97\xac\xc6\x39\xe7\xb3\x0f\xb1\x71\x67\xb2\x03\xbe\x69\x6a\xcb\x58\x4a\xad\x75\x6d\x19\x38\xeb\xdf\xa5\x09\xe5\x6b\xe5\x71\xe5\x03\x1b\xa6\xfb\xe9\x0f\xb1\x0f\x1e\xa3\xda\x04\x3c\xc1\xa9\x75\xef\x8c\xec\xe9\xaa\x03\xe1\x22\x62\x27\x58\x60\x4e\xf5\x57\xf8\x3f\x11\x52\x4b\xc1\x0d\x59\x4b\x4e\x38\x30\xa1\x3e\x0c\x26\x00\x43\xbf\xea\xa8\xac\xc8\x8e\x75\x8f\x2a\x3a\xa3\x80\x41\x23\xb3\x96\x14\x39\x0c\x20\x0b\x29\x8e\x55\xb0\x7b\xa9\x16\x46\xbf\xb2\x30\x4d\x5a\xc3\x2a\x25\x85\x76\x4f\x56\xd0\xa6\x79\x85\x0f\xfa\x40\x25\xa4\x7a\x61\x16\x14\x99\x10\x51\x61\xde\x8f\xa1\xb3\x99\x6f\x1c\x2d\x75\x11\x9b\x22\x1f\x24\x69\xf8\x96\x58\x58\xc1\x4d\x29\x0c\x95\xf2\x27\x2b\x3c\xcf\x8e\xaf\xc6\xf5\xad\x9c\x52\xb4\x6b\xc5\x68\xd1\x9a\x7c\x17\x0d\x33\x82\x97\x9b\x18\x66\xbe\x41\xb8\x29\x7c\x24\xb4\xaa\x85\x90\xc4\x3b\x93\x00\x25\xf1\xb5\xea\x3b\x21\x67\xdd\x84\x59\x4b\xb5\x63\x30\x87\xaf\x54\x6f\xbe\x50\xf7\x5c\xe6\x17\xe6\xc9\x6b\xc3\xf9\x77\x9f\xb6\x95\x22\x42\x9f\x77\x04\x5f\xde\x1f\xbc\xaf\x54\x0b\x33\x1b\xa4\x36\x9f\xf0\x88\xbc\x4d\xdd\x42\x06\x48\x0e\xb2\x32\xf7\x6a\x9e\x63\xe9\xb0\x24\x2b\x36\xcd\x92\xa8\x37\xe1\x61\xeb\x17\xb1\xd8\xf0\x0d\x97\x55\xe3\xcc\x9f\x68\xe0\xda\xc0\x48\x17\xae\x38\x66\x67\x55\xa4\x7d\xb6\x06\xf9\x99\x39\xcc\xcc\xf2\x65\x90\xc4\xc5\x1a\x58\x6b\x6e\xe4\xe1\x9b\x9a\x5b\x35\x73\xb8\x1d\x25\x71\xbf\xdc\xaf\x13\xea\x58\x03\xae\xca\xb9\xfa\x0e\x34\xb4\x59\x43\x79\xcc\xce\x52\x1a\x6b\xc2\xa7\x35\x7f\x5d\xc1\x82\xb7\x1c\x69\xed\x66\x2d\x48\x3e\x30\xd3\x5e\x4c\xad\xc9\x30\xc2\x70\xb4\x4e\x8e\x95\x6a\x37\xf5\x11\x6c\x5d\x56\xa9\xfd\x55\xd3\x33\x6b\x2c\x1b\x80\xc3\xf5\x3a\x2d\x18\x81\xe0\xaa\x90\xd0\x2d\xf9\x61\xd8\x0b\x92\x38\x0f\x63\xcb\x84\x14\x8e\x5c\xd2\xcd\xca\xdd\x5a\x47\x74\xb9\x93\x40\xed\x9b\x50\xf0\x03\xc3\xe4\x0a\xa6\x73\xbe\xe7\xdc\x2f\x97\xc1\xda\x62\x1a\xf6\x26\x54\xb2\x9d\xdb\xf4\x5d\x09\xd4\xe5\xa3\x3f\x6a\x80\xa1\xcf\xb7\x53\x3b\x8a\x58\xc6\xe8\x55\xaf\xea\xe7\xc1\x3a\xf5\xe6\x0e\x39\x78\xec\x88\x01\x6f\x08\x3d\x36\x60\xb7\xf8\xa6\x09\xc0\x3f\x4c\xb2\xbc\x45\x5b\x55\x62\x48\xda\xaa\x12\x8f\x36\x34\x95\x52\x97\xe4\x84\x4e\xc8\x80\xee\x0f\xc7\x14\xef\x45\x60\xbb\xee\x29\xf2\x69\x13\xe7\x61\x10\x8e\x4c\x6e\x7b\x53\x74\x5e\xb9\x5c\x86\x2b\xcf\xe0\x24\x91\x44\x6e\xe9\x49\xa2\x9c\x77\x93\xea\xbc\x70\xa0\x27\xba\x5e\x50\xb6\x74\x34\x92\x18\xcd\x2c\x0e\xad\xa3\xe4\x19\xbd\xef\x76\xe8\x77\xff\xae\xa2\x5b\x3d\x0e\x9b\x2d\x47\xe1\xb3\xdb\x29\xbf\xe6\xdb\x7f\x63\x9f\x3f\x49\xb6\x3a\x8a\x73\xf0\x1e\x1f\x0b\xae\x5d\x73\x4e\x58\x59\x9f\x58\x6f\x7d\xf5\x15\xde\x2a\x5c\x18\x72\x35\x81\x83\x73\x0e\x98\xa3\xd4\x8e\xd6\x31\x39\x78\x8c\x6f\x51\xfd\x5a\x2a\x07\x2d\x47\xd2\x54\x67\x6d\xfb\x1b\xed\x4c\x4e\x06\x0c\xe1\x45\xad\xb7\x79\x51\xa9\x4a\xce\xab\xc3\x72\xc5\xf6\x4d\x36\xa5\x7f\x9d\x8c\x20\x42\x94\xe3\x9d\x2a\xe1\xd3\xec\xac\xb8\x89\xaa\x7f\xf9\xd6\xa3\x18\x41\xd3\x9c\x76\x3d\x83\x7f\x3b\xbe\xf2\x73\x7c\xac\xc2\xa0\xf7\x9b\x0a\xd3\x45\x1c\x2e\x85\x72\x00\xe1\xb0\x06\x46\x8b\xaf\xd7\x1d\xe1\x64\x5a\x64\x39\xb2\x39\x22\xe4\x41\x8f\x2c\x0a\x1f\xde\xed\x20\xa1\xde\xa5\x02\x65\x67\x6e\x1f\xc4\xeb\xf9\x5e\x42\xf6\xee\x06\x36\x58\x4e\x96\x96\x5a\xde\x53\x60\x3a\x12\x21\x8f\x72\xc8\xda\x24\x2e\x70\x7a\x63\xc1\xe3\xa0\xe2\x6b\xdd\x59\x93\xa4\xd2\x85\xcc\x84\x6a\x34\xc8\x38\x1a\xfe\x0c\x8b\x02\x06\x11\xfd\x2e\x70\x2e\x8e\xd6\x46\xe6\xc8\xf4\x7c\x3b\x37\x23\x67\x6e\xa4\x42\xd8\x72\x12\x9b\x9b\x9d\x2f\x28\xc2\x73\x97\x17\xa3\x19\x7e\x89\xf3\x04\x7b\xd7\x4b\xa3\xab\x49\xcf\xc9\xe1\xfb\xd9\x33\x5d\x0f\x05\xff\x55\xb9\x38\xb7\x2e\x3f\xd2\x91\x4d\x87\x61\xcb\xb7\x22\x9c\xd7\xe5\xbb\xf3\xce\x1c\xdb\xf8\xf5\x24\x74\xd2\x77\xc0\xc6\x1c\xa7\x21\xe2\xeb\x4a\x4e\x39\x5b\xe2\x23\x06\x0b\xf6\xf4\x58\xe1\x71\xa4\x35\x10\xe7\xfe\x44\xad\xdc\xfd\x02\xd4\xa1\x95\xf6\x06\xcb\x22\x77\x14\x7a\xe6\xb8\x5a\xf6\x59\x9e\xa4\x76\xd2\xe7\x35\xce\x76\x14\x0c\xf5\xac\x4e\x61\x54\x0a\x72\x4f\x2a\x61\xc6\x95\xd0\x66\x93\xb4\x90\x11\x96\xdd\x53\x22\x31\x9f\x8d\x55\x57\x1a\x70\xe4\xd8\x5d\x1f\xd6\x35\x1c\xca\x83\x64\x45\xd8\xe1\xdd\x90\xc2\xe6\x89\x5c\xc4\x93\x6e\xc1\xe5\xb9\x4f\xb5\x21\xbf\x04\x21\x20\xa1\x2f\xf6\x65\xdf\x1b\x4a\xc6\x24\x7b\x31\x78\x51\xe7\xb1\x31\xed\x02\xa4\xdb\xee\x2d\x1c\x38\xd0\x4e\x6d\x90\xf4\xe3\xf0\x2d\xb3\xc8\x42\x4e\x5c\x86\xa4\xa7\x92\x92\x64\x43\x2a\xaf\x17\x66\xa3\xc2\x4d\x02\xb7\x55\x8e\x7d\x21\xf4\xb4\x32\xbe\x7f\xe7\x6f\xff\xed\x56\xeb\xc0\x8c\x6b\x05\x57\xac\x48\xdb\x38\x2c\xb2\x90\xcf\x15\x40\xc8\x4e\x60\x8f\xc3\xd6\x32\x3d\x04\x1c\x02\xdf\x76\xbe\x42\xcc\xab\xf4\x77\x42\x81\x5a\xbe\xb2\x70\xa3\x3a\xb6\xeb\x24\x0a\x03\x4b\x12\x72\xc8\xe9\x22\xdb\x03\xcb\xc6\x34\x99\x12\x75\x7b\x58\xf9\x15\x3c\x00\x6d\x95\xff\xfc\xaf\x68\x6c\xfb\x87\xba\x26\x40\x2e\xa9\x92\x03\xfa\x14\xa7\x3d\x4e\x5d\x38\xd4\xae\x97\xca\x33\x7d\x7c\x5e\xf3\xfa\x17\xa6\x09\x78\x4d\x4c\xf9\x0b\xfc\x6c\xc8\xb2\x33\xfd\x0d\xec\x29\x37\xb5\x8f\xbd\xfa\xf0\xf7\xbd\xca\x4a\xda\x17\x49\x3d\xfc\xca\x19\xed\x01\x9c\x51\x45\xc7\x6c\xc4\xf9\x47\xa7\xfb\xb0\x30\xdd\xd0\xd6\xfb\x7a\x12\xe5\x99\x6a\xd3\x84\xb4\xb5\x2f\x8c\x78\x6d\x89\xa4\xc7\x36\x52\xca\x7e\x1e\x73\x77\x56\xb1\x8e\x27\xb1\x54\xfa\x9c\x20\x9d\x43\x14\x6c\x28\x06\xf7\x2c\xb7\x2b\x36\xce\x92\xb8\x52\xfb\xb9\xa1\xd3\xef\x37\xc6\x9a\x08\x30\x0e\x93\x54\x4b\xf8\x00\x3a\x2c\x80\xee\xba\x89\x7d\xb5\x3d\x8a\x6c\x9c\xaf\x61\x09\x63\x3f\xe3\xf4\xe4\xeb\x5a\x78\xba\x30\xdd\x5e\x31\xfd\xc2\x62\xab\x6c\x91\x08\x40\x69\x3c\x1b\xca\x93\xd9\x28\x0a\xa5\xed\x5e\xdc\x61\x7a\x69\xbe\x51\x65\xea\x61\x91\x1b\x28\x42\xfa\x82\xe3\xe7\x58\x28\x7c\xa3\x28\x61\x40\x02\xb2\x36\xe1\xf1\xe9\x3f\x47\x4f\x92\x78\x5f\xde\x8a\x5d\xa9\x97\xba\x5e\x3e\xd4\x8e\xc8\xcf\x56\x04\xb6\xd7\xc0\x06\x25\x5d\x29\x7e\xb1\xfe\x4c\x79\xb4\x8b\x45\x14\xd9\x5c\x71\xd6\xa0\x3e\x2b\x4e\xa6\x3f\x7d\x17\x4d\x9a\x86\x36\xa5\x43\x50\x00\x58\x17\x61\x73\x1d\x55\xdf\xc2\xb4\xd3\x19\xd7\xb8\xc0\x67\xaa\xa2\x60\xe5\x90\xec\xf2\x65\x92\x2d\xd5\x48\xc7\x6d\xae\x02\x5d\xa1\x71\xc3\xca\x05\xbb\x11\x36\xc5\x8e\xae\xc2\xf4\x5c\x52\xd1\xdc\xaa\x49\x87\xd1\x1a\xb2\xc7\xdc\xcf\x3f\xd6\xed\x27\x2a\x15\x74\x4e\xb3\x8e\x96\xfe\xff\xbf\x3f\x7f\x53\x93\x5f\x1f\xdb\xe5\x24\xc9\xa0\xc3\xe0\xb8\x7f\x34\x85\xbb\x52\x6f\xcf\x8b\x5e\x68\xb3\x3d\x58\xfc\x5c\x31\x53\x58\x18\x4e\xd4\xe2\xc4\xbb\x4a\x2e\x26\x1a\xbf\xff\x69\x47\x95\xef\xce\x90\xe7\xcc\xff\x81\x9f\x72\xc5\xb7\x23\xd3\x12\xd8\xd5\x60\x5b\x33\x87\xdb\xa3\xff\xec\x6f\xd1\x63\x0a\x0a\xb2\x1c\x20\x51\x7f\x92\x53\xca\x04\x79\xb8\x62\x72\xae\x53\x0a\x83\x42\xf9\x97\xae\xb1\xc8\xf9\x60\xd7\xc6\x5f\xf0\x78\x87\x7e\x3f\x05\x99\x5e\xb4\x36\xa5\xba\xef\xf7\x83\x21\x43\x5e\x96\x6a\x0a\x68\x40\x69\xad\xfb\xf3\x88\x3d\x3f\x04\xe2\xd7\xd4\xb2\x61\x7e\x90\x94\xdb\x0f\xe1\xc4\xdd\x53\xfd\x32\xf7\x1a\x15\xa3\x83\x41\x91\xc6\x95\x8e\xf8\x8e\xea\x88\x57\x20\x11\x53\x7e\x7d\x80\xbd\xea\xe1\x51\xa7\x94\xe2\xd4\xa9\x5a\x26\xfb\xf0\xcb\xed\x91\x4d\xb3\x30\x83\x4e\xc4\x11\xc1\x60\xdf\xa0\x4f\xf1\xb5\x4a\xb3\x44\x49\x9e\xdb\x74\x4d\xab\xfa\x7d\xa0\x6a\x71\x1f\x34\x54\x7b\xe7\xdb\x23\x45\xdb\xe1\xfa\xf1\xca\xb9\x16\x9e\xf3\xba\x96\x4e\x56\x04\x83\xa9\xca\x2e\xf2\x1d\xe0\x3b\xbb\x64\x51\x98\xd4\x47\x15\xf5\xae\x90\x75\x41\xdb\xec\x55\xc7\x64\x63\xd2\x30\x1f\x0c\x2d\x75\x18\xb9\x8e\xa1\x77\xe9\xa1\xf9\xba\xf1\xa1\x83\xc8\x64\xdc\x43\xa8\xa1\x65\x40\x1a\x7c\xa4\x01\x9c\x7f\xaf\x76\x50\xce\xce\xb6\x87\x49\x6c\x59\x36\xd9\x51\xbd\x3a\x09\xfb\xa3\x1d\xc5\xa9\xf3\x51\x2d\x57\x71\xe0\x40\xbb\x67\xd2\x65\x0a\xa1\xb4\x04\x0d\x22\x18\x34\x47\xc1\x8d\xfb\x43\x25\xcc\xb0\x62\x82\x20\x8c\xed\x84\x62\xaf\x05\xe1\x02\xdc\xfb\x3b\x8a\x7b\xf9\x8c\xdb\x22\x59\x02\x0c\x12\x65\x36\xf0\x9e\x20\x69\x56\x58\x89\x97\xb6\x2e\x8c\x1f\x73\x3f\xd3\x79\x86\xc6\x04\x89\xbe\x7b\x38\xf1\xf1\x22\xff\x27\xbd\x21\xfe\xe3\x06\xd8\xfd\x30\x79\xdf\xc7\x56\x71\x33\xe9\x40\xd1\x3b\x48\x38\x14\xa3\x38\xd5\xc5\x02\x71\x42\x60\x0b\xf2\x23\x77\xc6\xad\xc3\x2f\xb3\x5b\xc4\xb6\x5a\x08\x09\xcb\xf9\x86\xc3\xb3\xa5\xd9\xb9\x26\xd6\x55\x5e\x7e\x6f\xd7\x2f\x1d\xee\x3c\x12\xb6\x60\x5a\x60\xe8\x6e\x7b\x8f\x6c\x3d\x32\x80\xd7\x55\x87\xe3\xd0\x04\x61\x9c\x27\xd9\x00\x66\x55\xb4\x41\x55\xc6\x0b\x0d\x02\xdc\xe2\x5e\x61\x2b\xec\x45\x4c\x3f\x23\xf9\x48\xf2\x9b\x44\xbd\xce\xa7\x83\x6e\x12\xce\x14\x81\xd7\xa7\x28\x29\x38\x17\xc1\x39\x36\x57\x15\x5d\xd1\xf7\xc7\x4a\x39\xf8\x7c\xe7\x8b\x4a\xad\x82\x80\xdf\xb1\xf1\x12\xce\xce\xd4\x79\xb3\x57\x85\x8a\x2d\xda\x49\x75\x62\x5c\xe4\x04\x82\xf4\x9b\xd0\xf3\xbb\x96\xd0\x72\x88\xa5\x2b\xc5\x35\x6f\xfc\xf5\x68\xd2\x65\xdb\x9f\x7c\x46\x85\xc7\xb7\xf0\x01\x0c\xea\x4e\xa6\xc0\x67\xb7\x51\x51\xa4\x2e\x45\x09\x91\x52\x21\x30\x95\x34\x81\x0a\xc1\x78\xd2\x1d\x9b\xce\x41\x09\xe2\xae\x3a\x70\x4d\xb2\x18\x85\x7d\xc3\x4c\xb3\xea\xf4\xd2\xfd\x3c\xdc\x49\x8f\x2d\xb8\xa5\x52\x3f\xa3\x41\x18\x25\x59\x32\x1a\x84\xc1\x36\x9d\xc0\xaf\xbe\xe2\x1a\x40\x9b\x6a\x01\x85\xd2\x89\xc4\xd7\x5e\x50\xbb\xfc\x42\x93\x03\xdd\x33\xab\x82\x7c\x41\x6e\x95\x57\x21\xdf\x34\x12\x38\x98\x5e\x2f\x0c\x5c\x30\x23\x42\xce\x2d\x47\x29\xbc\xd1\xd0\x81\x3f\x4a\x93\x95\xb0\x67\x7b\x13\x1e\x2e\xf8\x87\xba\x7e\xc0\x45\x68\xd8\x89\xad\xc6\x52\x4a\x32\x5c\xf4\x51\x33\xf2\x8f\x08\xa1\xf8\xba\x96\x4a\x5e\x98\x6e\x27\x45\x9e\xe5\x69\x38\x62\xcb\x29\xca\x9e\x9e\xd4\xef\x2c\x32\x4c\x5c\xb9\x56\x0c\x7f\x76\x68\xd3\x3e\x75\xee\x79\x1c\xe9\x99\x8e\xc2\x91\x9e\xa9\x25\xfb\xe6\x49\xf8\x81\xe1\xb8\x4a\x35\xc2\xf7\xc6\x3f\xab\x04\x34\x87\x23\x13\xdb\x34\xd4\xea\x89\x97\x08\x02\x53\x77\xf0\x52\x1b\x98\x11\x74\x43\x0f\xce\x79\xaa\x3c\x07\xe6\x3f\xa3\x5c\xcf\x70\x38\x22\x21\x52\x27\xc4\x03\xfb\xc9\xd7\xba\xde\xc4\xba\x6f\x13\x64\x32\x51\xc1\xf8\x40\x41\xeb\xfe\x55\x47\x99\x87\x5f\xd7\xce\xa4\x99\xc3\xed\x61\x91\xd9\x62\x48\xeb\x1b\x80\x8a\x07\x1d\x15\xde\x5e\xac\xb0\x4b\xe8\xe2\x4e\x1e\xca\xe1\x2e\xd2\xad\x2d\xc7\x49\x78\x42\x1d\xee\xaf\x9b\x60\x99\xd7\xb3\x43\x69\x28\xe5\xc2\x8b\x2a\x93\x94\x87\x43\x9b\x3d\x4e\x06\x06\xe5\x24\x6a\x58\xdf\xba\x0b\xe7\x0e\x29\xf2\xdb\x54\x30\x14\xd5\x50\x55\x4f\xba\xa6\xd4\xe7\x2f\xd2\xb0\xc2\xf6\x3d\xd0\x18\x93\x33\xc4\x16\xa5\xf0\xa3\x52\x01\xda\x89\x1e\x3a\x11\x55\x2a\x67\x10\xe7\xcf\x31\xf2\x19\x61\x14\xbf\xd7\xc0\x65\x41\x67\x7a\x38\x34\x71\xce\x39\x30\x1c\x2f\xd7\xc6\x9a\xa8\xe1\xdb\x08\x83\xf8\xbf\x34\x4d\xce\xb7\xc7\xfb\x7c\x12\x4f\xba\x41\x5c\xa9\xd9\x4b\x7e\x1f\x53\x7c\x21\x1f\x77\x7c\x15\xfc\x14\xed\x02\x07\x54\xf3\x90\xed\x13\xba\x81\xa8\x8e\x97\x3b\x32\xdd\xce\x6c\x40\x8b\xd1\x69\x04\x1e\xed\xf8\x93\xef\xa8\x4f\x03\xda\x28\x4a\x94\x93\xc3\xb9\x6e\xbe\xa9\xf9\x7e\x73\xb4\xc7\x47\x49\x16\xe6\x12\x93\x57\xd4\xa3\x44\x5b\xd0\xd7\xef\x98\xe2\x71\x42\x21\x45\xa1\x90\x86\x67\x47\x79\x11\x1e\xd2\xb9\xce\xf6\x4a\x85\xa4\xec\xcc\xd0\xa6\x61\x60\x62\x22\xf3\x72\x0c\x73\x0b\x7e\x07\xfb\x56\xf4\x67\xd1\xaf\x8e\x3f\xfa\xad\xae\xa0\xaf\x96\xc3\x60\x79\xd1\x04\xcb\x1c\xa7\x4b\x38\xac\x42\x63\x15\xa7\x0f\x8a\x32\xe2\x63\x52\x29\xa1\x63\xfd\x40\xb1\x72\x7e\xa0\x80\x57\x36\xcb\xc3\x21\x29\x40\xf8\xde\x9a\x87\x4a\x34\xfc\x43\xed\x65\x9c\x1a\x57\x2a\xc7\xdb\x31\xca\x0e\x92\x65\x4d\x1a\x71\x95\xd9\x65\xd9\xcb\x6f\xe1\x1b\x05\x9c\xe8\xa7\x49\x31\x7a\x4a\xc9\x48\x21\x37\x8f\x20\x0a\x08\x4b\x8c\xf4\x43\x14\x4d\x9d\x6a\x94\x07\xc6\x8d\x55\x6e\x86\x7b\x0c\x51\xa4\xf8\x5f\x90\x85\x17\x63\xa6\xde\xe3\x23\x42\xf8\x09\xdb\x8c\xa6\x57\xfe\xb6\x46\xdb\xa0\x1b\x1d\x89\x90\xbd\xeb\x8a\x8e\x67\x77\x57\xb9\xb9\xd8\x84\xd2\xed\xda\x00\x37\x8d\x13\x52\x99\xa7\x8f\x88\x0c\xa1\x6f\x59\xf9\x07\xf5\xfe\x87\x99\x72\x58\x02\x0a\x3a\x1e\x45\x71\xd1\x80\xd6\x20\x84\xaa\x3b\x9c\x61\x2e\x91\xfb\xe7\x6b\x87\x1a\x1c\x65\x6b\x01\x9d\xfc\xe5\x1b\xe9\xfe\x46\x61\xd0\xae\x47\x27\x26\xc8\x59\x19\x09\x60\xf9\x1b\x9a\x04\x1a\x35\x49\xcc\xdf\xc7\xee\x57\x4c\x9e\x17\x71\x79\x1c\xbb\xda\xc5\x03\x9a\x4f\x81\xe7\x28\x4e\x9e\xcb\x8d\x5c\xe5\xb2\x34\x11\x09\x32\x25\x03\x15\x65\x84\x9e\x61\xfb\xfe\x3e\x32\xfd\x6a\x3b\x8c\x83\xd4\x1a\x27\xa8\x00\x4b\xf6\xae\x02\xfd\xbf\x5b\x3b\x55\x5f\x7b\xad\xbd\x08\xdd\x7c\x9f\xcd\xc7\x82\x95\xd4\xfe\xf6\x95\x3e\x3b\x5b\xba\x1b\xb9\xcd\x72\xe3\x5b\x4c\xa5\xdc\xa2\x5a\xf5\x37\x9b\x20\x5a\xe5\xee\x58\x23\xd3\x86\x6a\xc3\x05\xd5\xcd\xdd\x68\xb3\xb2\x22\x08\xac\xf5\x8e\x97\xab\xcd\xf9\x3a\x9d\xea\xf5\x59\x4d\xe2\xc7\x94\x4f\xf7\x8b\xb1\x37\x51\x13\x94\x62\x05\xc6\xfd\xe6\x58\x71\x6f\x4d\x61\x75\x63\x9a\x1e\x2a\xa4\x3f\x30\x74\x62\xa8\x69\x9f\x82\x0e\xe3\xaf\x02\x14\x88\x26\x96\xfd\x5d\x8d\x92\xf3\xd0\x00\x30\x43\x32\x3a\x1b\x2e\xd9\xd1\x8e\x2f\x04\x1f\x55\x59\xcd\x95\x72\x34\x5b\xde\x37\x40\x8c\xc1\xd7\xdb\xa1\x8f\xe5\xea\x78\x65\x1e\x89\x0a\x19\x37\xcc\x01\xb6\x21\x97\x13\x19\x55\xa4\x57\x1a\xc3\xf1\xf8\xa6\xa3\x19\x45\xb3\x22\xb5\x13\xde\xc5\x04\x90\x14\xa5\xc0\xbb\x58\x0d\x42\x25\xf4\x28\xbb\xb7\x6a\xd3\x18\x8c\x03\x87\x9a\xb9\xfc\x35\x60\x2c\x09\x96\x49\x05\x06\xc6\xf4\xd3\xb1\xd7\xe9\xfc\xb4\xa3\x78\x0c\x82\x41\x38\x5c\xb4\x29\xcb\x47\xa2\xbc\x78\x73\xec\x81\x5b\x37\x6b\x2e\xf7\xc1\xb9\xf6\x5a\x52\xe4\x03\x2d\xa3\xff\xa1\xd6\xb4\xea\xf8\xe5\x76\xd2\xd7\x37\x8a\xb4\x1f\x19\x2e\x84\xc0\xca\x82\xc3\x8d\xaf\x6b\xe8\xde\xdf\x69\x87\x2b\xd4\xcb\xe7\xca\xbb\x5c\x8b\x12\x08\xd4\x93\x0a\xdc\x6b\x7b\x61\xfe\x84\xef\xb1\xfc\x04\x7f\xc9\xaa\x44\x9a\xd3\x97\x39\x8e\x71\x80\xff\x80\xdc\x29\x14\xd8\x7f\xda\xf1\x92\xcb\xe7\x11\x83\x8b\xbe\x6b\xf9\xc4\xb0\x08\x7f\x46\x84\xc6\x4e\x95\xef\x88\x70\xd6\xdd\xe8\xe8\x6e\x1c\x78\x22\x92\xe2\xc0\xba\x71\xd4\xf4\xce\x40\x3d\x70\x86\x8c\x5a\x91\x98\xad\x05\xa7\xed\x6d\x75\xf2\xde\x56\x19\xfc\x9e\x35\x2c\xf0\xcf\x2d\x02\x63\x0f\x9f\xd9\xdf\xf5\x20\xb8\x07\x35\x9b\x5f\xc6\x56\xe0\x9e\x6c\xa9\x56\xa3\x4b\x55\x86\x76\x49\xd9\x0f\xcd\xeb\x49\xca\x07\x0a\xbc\xdf\x87\xaa\xf1\xf7\xa1\xb2\x05\xc3\xd0\x4c\x7a\xc0\xda\x55\x7c\x9d\x2e\x44\x01\x55\xb0\x87\x66\x1a\x87\xde\x65\x05\x8c\x4f\x62\xcb\x61\x0d\x7a\x54\x4e\x83\xc3\x94\x4b\xd4\x63\x4f\x75\x71\xbd\x96\xd1\xa1\x26\x22\x93\x53\xbe\x18\x89\xbb\x1b\x8a\xb6\x6f\x27\xea\x3b\xac\x00\xd8\x51\xac\x90\x67\x95\xd2\x03\xda\xf0\x44\x4d\xfd\xb9\x8a\x9a\x47\x2f\x89\x22\x93\x66\x53\xa5\x33\x2c\x9a\x7c\x7e\x5d\xc3\x5b\x44\xd4\xd6\xea\xaa\x02\x05\x37\xe0\x4b\x82\xaa\xe1\xa9\xed\x8a\x8d\x49\xc6\x0a\x01\x37\x0e\x46\x0c\xd9\x51\xad\x0d\xb6\xa9\x38\x9a\x1e\xeb\x6a\x02\x5f\x57\x5a\x49\x6d\x2f\x89\xed\x44\xeb\x1b\x5f\xf3\x1d\x62\x0e\x70\x7b\x87\x22\x31\x78\x44\x67\x55\xf0\xb2\x94\xa4\x76\xc5\xa6\xbb\x7c\xf6\xe2\x9e\x4a\x32\xdf\x82\xfd\xc2\x74\x1c\xc7\xf3\x38\xf0\xe4\xc2\xb4\xab\x75\x2a\xc7\xe1\x8c\x0a\xf3\xa2\x62\x91\x3c\xd1\x9c\x82\x64\x40\x42\x3e\xd2\x64\xc7\x2a\xab\xfc\x07\xde\xcb\x0e\xd3\x1e\x2f\x37\xac\x6b\x18\x71\xbe\x56\x6c\x34\x3d\x9b\x91\x8e\xb8\x8d\xd6\x50\x6e\x90\x93\x4a\x01\x86\xd9\x02\x8b\x14\x6a\xf9\x1c\x72\x86\x79\x74\x72\xcf\xf6\x13\x60\xa5\x50\x36\x64\x9a\x14\xbe\x69\xca\x32\xe4\x83\xd4\x72\xa3\x3e\xf6\xd8\x29\x1a\x5f\xbe\x56\xbc\x1e\x79\x6a\xc2\xa8\xb4\xd2\xe5\xeb\x48\x2f\x78\xf9\x3a\x7c\xdd\x94\xda\x5c\x09\xfb\x09\x7f\x42\x03\x86\x24\xa4\xf6\x89\x9d\x2c\x48\xf2\x3c\xcc\x06\x93\x4a\x68\xe8\xb8\x16\x7f\x3f\xd5\x51\x10\xf9\xe3\xf4\x2d\xa2\x08\xf3\xa4\x2e\xd9\x2c\x32\x11\x3f\xb2\x3a\xd7\xc6\xaa\x64\x78\x4d\xc5\xaf\x44\x5e\x2a\x3d\x25\x58\x07\x97\x54\xe7\xe7\xa5\x1a\xc3\xc4\x81\x99\x76\x31\x6a\xf9\x8e\x36\x70\xa9\x0a\x7d\x6a\x13\xb4\x7f\xd1\xc6\xd6\xe4\x03\x5a\x30\x98\xb4\xf3\x94\xa9\x84\x49\xf9\x44\x69\x02\x5f\x6f\x48\x8f\x2c\xb4\xed\x90\x30\x73\x40\x8a\x08\x56\x4f\xe1\x81\x1d\x66\x61\x60\xd2\x20\x29\x52\x84\xed\x0c\xe5\xc4\xb4\x0b\xae\xd3\x55\x39\x38\x9e\xda\x53\x89\xa1\x0e\xce\x55\x5a\x59\xb7\x2e\xeb\x35\x73\xa7\xa3\x33\x26\x2e\x6d\xd0\xff\x0d\xb2\xca\x38\x0b\x76\xad\xeb\xf8\xec\x09\x2d\xfa\xb0\xcc\xe8\x46\xe4\x3f\xb7\x3a\x8a\x3b\x79\xcb\x6d\xf7\xd8\xda\x9e\xed\x4d\xa9\xae\x58\xc6\xaf\x22\x1a\x7e\x96\x1c\x0a\xe0\x0a\x7e\xa9\xd1\xc2\x3f\x19\xfb\x30\x63\x7f\x8d\xa1\xed\x05\x92\xc0\xce\x07\x2c\x4a\xb0\x30\xed\x72\x9a\xba\xac\xa3\x5a\xa0\x8b\x28\x2f\x52\xbb\xab\xf5\xd5\x57\x04\x36\x8c\x64\x22\xc2\x8d\xf3\xaa\xfd\x74\x93\x06\x8d\xff\xbd\xc2\x8d\xe0\xd3\xda\xf5\xcd\x76\xf8\x65\x70\x6c\x4e\x78\xb4\xd2\x56\xa7\xd6\x7e\x27\x41\x8b\x67\x44\x61\x87\x99\xab\x41\xf3\x3e\xfb\xe0\xf5\xfe\xbf\xed\xf8\x71\x22\xcb\x50\x42\x4c\xe9\x0d\x9c\xf8\xce\x27\xfd\xea\x2b\x1c\xfd\xb5\xba\x4a\xbf\xa2\xb4\x3c\xa0\xd4\x10\x31\xfe\x6a\xb2\xc8\x81\xfa\xab\xf6\x36\xcb\xc2\x32\x3c\x9b\x9f\x39\xcc\xa9\x94\xab\x8a\x0c\xe4\x6a\x83\x66\xe2\x42\x7b\x58\xc4\x21\x3f\x20\x22\xca\x1b\x15\x85\x3d\x5f\x4e\xf8\xa4\xa9\xd3\x28\x1b\x98\x00\xe4\x23\xf0\x67\x3e\xc6\x90\xf1\x4d\x13\x5d\xd7\x20\xc9\x72\x12\xc8\x64\xc0\xe6\xd8\x17\x02\x1b\x83\x93\xa1\x89\x6d\xb1\x62\x7d\x38\xa8\xe1\x35\x82\xbb\x69\xc0\xc3\xb4\xc3\xa1\xe9\x4b\x0a\x74\x86\x41\x63\x6c\xbe\xf9\xa6\x49\xf0\x73\x29\x8c\xc2\x51\x18\x27\x48\x22\x08\x1b\x97\x2a\x18\x5d\x1f\x6b\x2a\x11\x0e\x9f\x65\xed\xfa\xca\x4c\x14\x3a\xd5\x50\xe4\xc1\x6f\xd2\x41\xc3\xd7\x0a\x3a\x92\xe6\x62\xc1\x1b\x89\x32\x84\x47\xe2\x75\x23\x6e\x12\x9a\xc3\x80\x44\xe1\xeb\xf1\x76\xdb\x78\x70\xae\xcd\xcc\x42\x2e\x07\xe7\x71\x31\x1b\xb5\xa0\x98\x84\x19\xde\x6c\xe9\x9e\xab\x0a\x37\x92\xe2\xa4\x25\xe2\xff\x30\x49\xc9\xb4\xb1\xe4\x05\x9c\x1e\xd1\xbf\xf0\xc2\x4b\xe6\x4d\x83\xc0\x5c\xba\xf1\x14\x92\xe6\x9c\x2a\x7e\xbd\x51\x84\xc1\x72\x39\x0a\xe5\xc6\x68\x12\xee\xac\x08\xf5\x26\xac\xf1\x08\x80\xd2\x29\xa5\x02\x74\x4a\x95\x7e\x82\x24\x86\x5a\x2c\x42\x7d\xb8\x67\xac\xb4\x85\x34\x0a\xa4\x45\xe1\xf4\xfc\x48\x1d\x59\xb9\x89\x7b\x76\xc8\x81\x30\x1a\x9c\xae\x74\x14\x43\xef\x95\xb1\xeb\xb1\x58\x98\xff\x12\x99\x4f\x6c\xe6\x1d\xc4\x44\xe4\xa0\x24\xe5\x2f\x21\x46\xb8\x89\xb6\x69\x40\xbf\xdf\x51\x25\xb4\x13\x70\x42\x25\x43\xeb\x9f\xe7\x4a\xc7\xf3\x15\x3d\xc4\xb0\xc1\xf3\xbc\xd6\xd1\xdd\x55\xdf\x45\x30\x80\x7c\xcf\x05\x98\x1f\x60\x15\xf6\x21\x0a\x86\x5f\xf3\x03\x3a\xe5\x00\x1a\xdc\x00\x22\x03\xcb\xeb\x04\x35\x6a\x2b\x15\x0e\xd9\x1a\x97\xc7\x3b\xbf\xec\x28\x1c\x55\xab\xd8\xe7\x74\xf6\x60\xd5\x9d\x53\x80\xfa\x3b\xa8\x18\xf2\xcf\x21\x59\x25\xcd\xdb\x4d\x6c\x85\xc5\x48\x26\x06\xdf\x85\x02\x1e\x5c\x59\xce\xdb\xc2\x7e\x6f\x8c\xbf\xa0\x3c\xa9\x2c\x48\xc3\x11\x13\x29\x78\xdd\xf5\x8e\x8f\xf3\xce\x55\xba\xa9\xb3\x3c\x89\x99\x8a\x9c\x79\xf3\x15\x5d\xf0\x09\xa5\x9c\x72\x62\x5c\x21\xd7\x6f\xb2\x26\xd9\x28\x0d\xe3\xe5\xc8\xb6\x54\x83\x23\xc3\xfb\xf9\x06\xbb\x8a\xbd\x65\x56\xb0\xa0\x8e\xa3\x23\xd2\x42\xbb\xa9\xf4\xaa\xeb\x40\xf5\x72\x5c\x0c\x18\x58\x9c\x34\xca\x71\x5a\x07\xe2\x22\xd7\x9e\xeb\xe5\x43\xed\x9e\x59\xed\x45\xdb\xc4\xb4\x40\x14\x22\xf0\x48\xb5\x77\x4d\x5e\xa4\x3d\xb3\x46\x91\x0c\x5e\xb6\x72\x56\xaa\xda\x31\x61\x89\x67\xb6\xee\x2b\xd2\xdb\x0f\xe0\xb9\xa1\xb3\xdc\x67\xe0\xfa\x49\x96\xc5\x66\x11\xfe\x2a\xa3\x2e\xc9\x5f\x15\x04\xa6\x2f\xe3\xac\x14\x51\x6c\x53\x21\xdf\xe1\xf4\x1b\x08\x8b\xf8\x5a\x11\xf1\xb8\x0c\xb1\x20\xfb\x5a\x4a\x7d\xf8\x09\x95\xf4\x1d\xa5\x56\x8f\xd8\x58\x11\x11\x1c\xd7\x86\x6b\x14\xa6\xd2\xd8\xf9\x2a\x1f\xa4\xf7\x79\x37\x55\x88\x4f\xb0\x6e\xcf\x21\x76\x64\xa3\x33\xb0\x4f\x96\x4f\x8c\x64\x2c\xb8\x18\x9c\xdf\xf1\x75\x11\x71\x05\x91\x12\x2f\xa9\xa7\xd7\x3d\x79\xc3\x39\xe4\x75\x91\xb1\x3e\x83\x45\x83\xd3\xfb\xb1\xf5\xd6\xec\x6c\xe9\xde\xcd\xbf\xcc\x48\xc0\x6f\x7d\xbf\xe3\x83\xb1\xbb\xd8\xd2\xb0\x3b\x4f\x74\x55\x1d\xe5\x06\x6d\x18\x6c\xbe\x07\x63\xaf\x3d\xfb\x07\xcf\x70\x25\x5e\x50\xa3\x8a\xd4\x66\x94\x64\x4c\x98\x85\x4c\xd9\xd5\x8e\xc2\xec\xd4\x9d\x83\xb9\xb9\x76\x94\xac\x58\x6e\x50\x73\xa9\xf7\x85\x69\x97\x7a\x97\xc9\x5a\x4a\xd2\x21\xbb\x10\xfc\x74\x1d\xdf\x1b\xa2\x09\x8f\x4e\x28\x1f\xaa\x67\x47\x84\xd3\xe1\x36\xec\x26\xd1\xa9\x06\x4e\x3b\x13\x04\x36\xcb\x12\x74\x7c\x3e\x8a\xb2\xa6\x81\x85\xe1\xcb\xed\x45\x72\x54\x16\x24\xbd\xfd\x43\xd5\x5e\xf1\x43\x45\x5c\xd3\xb3\x2b\x36\x4a\x46\xb6\x8c\xc7\x3d\xf7\x3b\xb9\x9d\x5b\x17\xc6\xad\xbf\x7b\xc8\x23\xdc\x9d\xb5\x26\xbc\xda\xd6\x85\xce\x7e\xf7\x2d\x45\xf6\x66\x95\xf7\xc6\xbb\x20\xe7\x15\xaf\x5d\xe9\xe0\xb6\x2a\x9b\x6e\xce\xe9\x55\x9e\xec\x54\xf8\x68\x57\x00\xec\x12\xde\x22\x95\x14\xdc\x70\x8d\xed\x49\x10\x14\x23\x13\x07\xc8\x7c\x89\x31\x2e\x87\x49\xce\x81\x67\xb5\xb4\x69\x9e\xa4\x21\x09\x5b\x95\x07\x82\x93\x1d\xf4\x29\x92\xf7\xd1\xad\xc1\xff\x43\x0b\x4e\xf8\x3d\x1a\xc8\x0c\x49\xdd\xba\xa5\xa2\x21\xfa\x80\x44\x46\x8a\x33\x3d\x5b\xde\x53\xa1\x76\x52\x1d\x16\x3f\x51\x94\x3e\xf8\x3c\x92\x61\x2c\xef\xe7\x68\x8d\x8f\x4c\x73\x1e\x72\x47\x57\x37\x4c\xb6\x9c\x86\x52\xab\xdb\x54\x81\x4d\x8a\x7c\xc0\x46\x85\xbf\x0a\x87\xa1\x7c\xaf\x6a\xb2\x09\xfb\x03\x9b\xee\xf6\xad\xb6\x1f\x8e\x7d\x63\xf7\x45\x1c\xc8\x4e\x0b\xc7\xeb\xc5\x8d\xc9\x9a\x62\xb0\x4f\x2a\xf5\x85\xcb\x1d\xa5\xbc\x7c\xba\x92\x1c\x58\x2c\xf2\x49\x74\xd4\x31\x12\x19\xc5\x21\x81\x25\x7b\xf4\xcb\x7b\x15\xaa\x46\xe5\xf5\x33\x55\x20\x20\x87\xec\xce\x74\xbc\xdf\xc9\x10\x78\x81\xda\xf9\x92\xb6\x8d\x6c\x00\xa4\x49\xf9\x36\xaa\xc5\xfb\x55\xc7\x5f\xf9\x8c\x8e\xe3\x73\xf8\xe0\xa5\x2b\x81\x00\x0f\x8c\xe3\x7c\x5d\x6d\x48\x84\x8d\x3f\x30\xe3\x35\x71\xca\x67\x10\x24\xb7\x5f\x0c\xdf\x38\x74\x48\x59\x17\xe6\x5a\xe3\x9b\xa6\x3c\x5c\x90\x04\x20\x95\x93\x4c\x83\xca\x3a\x34\x92\xaf\x10\x99\x3f\xd0\x3f\x40\xa4\xfe\xf3\xb1\x52\x09\xe1\x99\x44\x59\xf7\xc2\xf8\x51\x2a\x70\xd9\xc8\x06\x45\x64\x72\x11\xe8\x75\xfe\x56\xf9\xb4\x7c\xd3\x44\xfd\x95\x2c\x2d\x79\x02\x7c\x36\x15\x34\x33\x80\xb4\x9c\xd5\x8c\x37\x7f\xe8\x0e\x54\xfb\x66\x6e\xe3\x1e\x97\xa8\x44\x61\xd5\x63\x55\x21\x90\x86\x34\xc5\xf7\xea\x44\x0a\x0b\xed\xb9\x39\xb2\x5c\xf0\x78\xdf\xd1\xbc\x24\x6f\x2b\xc5\x1c\xf0\x1d\xbb\xe4\xcd\x41\x8f\x13\xaa\x83\x99\x67\x08\xc9\x9f\xa2\xc3\x10\x21\xc1\x09\xc5\x9c\xfd\x97\xf0\x1c\x51\x08\xf9\x50\xe9\xf4\xd9\x37\x47\x61\x6a\x11\xe9\x4b\xb3\x8c\xcf\x88\x5c\x6a\xa8\x79\xcd\xb5\x4d\x1c\x27\x45\x1c\x48\xcd\x4b\x5a\x70\x68\xa4\xa4\x39\xa7\xd1\xbe\xf7\x4c\x6e\x5a\xaa\xfc\x0f\xc8\x9c\x80\xd0\xfc\x92\xfb\x4f\xf3\xc1\xa4\x6b\xa4\xfd\x6b\x7f\x55\x49\x0c\x9e\x25\x38\x02\xda\x58\xfe\xca\xba\x12\x7b\x7a\xb7\xda\x48\x30\x64\xed\x03\xd5\xe3\x39\xe3\x7a\x3c\x7d\x19\x26\x0a\xe3\x65\x86\xf0\x60\xe6\xa6\x14\x11\xc5\x3d\x5a\x3c\x5b\x75\x96\xba\xd7\x5e\x6b\x07\x03\x6b\x46\xb4\xd0\x58\x2a\x8c\xde\x44\x64\xc3\xb6\x3b\x81\x87\x5f\x6e\xa7\x36\x8c\x97\x92\x34\x80\x5b\x25\xf2\xe2\xbe\xe8\x74\xb9\x12\x40\xbd\x69\xb3\x7d\x5e\xe8\x84\x3b\x26\x1c\x31\x96\xb3\xdf\x53\x50\xe7\x15\x0a\x7c\x72\xe9\x31\xc5\x10\xb6\x94\x22\x73\xb9\x74\x5c\xbf\xf3\x91\xe9\x97\xb6\xce\x52\xb4\x21\x18\x2e\xcf\xe1\x7e\x0b\x46\x1c\x89\xec\x2b\xaa\x5e\x96\x05\x26\xc5\xc6\x12\x82\x14\x7a\x24\x61\x4e\xf1\x29\xc9\x38\xc9\xc3\x20\x34\x08\x6c\x45\xaf\x50\xfd\xed\x87\x0a\xcb\x1e\x24\x41\x92\xe7\xf8\x5a\xce\x58\xd3\x88\x48\xf6\xda\xdb\xc1\x24\x5a\x1b\x8e\xc2\x00\xdf\xca\xb4\xec\x1d\x95\xf4\x3c\x3f\xfe\x82\x82\xaa\x67\x61\x6c\xb3\x2c\x0a\x97\x19\x14\xa0\x79\xc0\xf9\xba\xa3\x3d\xc7\xc8\x4c\xe9\x16\x83\xcf\x31\x08\x3a\x87\xce\x3a\xf1\x78\x11\x80\x6f\xae\x77\x7c\x5a\xe8\x56\x0d\xbc\x76\xe0\x40\x7b\x68\x87\x8b\x56\x12\x02\x28\xfe\x33\x45\x19\xdf\xf8\x04\x83\xc9\xf2\x74\x6d\xc2\xa3\x1c\xef\x77\x94\x70\xc7\x25\xed\x7c\x8f\x3d\x2f\x8c\x09\x06\xae\x41\x08\x19\x45\x24\x92\x5c\xd6\xca\x6d\xad\xef\xd6\x7c\x81\x99\xc3\xed\x95\x50\xfa\x83\x1d\x4b\xa0\x13\x77\x3f\x57\x59\x8c\x01\xd2\xeb\x33\x9e\xea\xcb\x75\xe3\x9f\xc4\x83\xf2\x7f\xd0\x83\xf2\x7f\x34\x69\x38\x0c\xc3\x3c\xec\x0b\xdd\x20\x06\xe1\x26\x39\x0a\x7c\xed\x10\x8f\x83\x62\xd0\xf2\x4e\xe6\xb6\x42\x9f\x37\x13\x0b\x5f\x3f\x34\x41\xff\x85\x48\xfb\x0e\x27\x44\x60\x8e\x8f\x8f\x95\x07\xb0\xb3\xdb\xd0\xae\xbc\x68\x99\xf2\x48\x68\x62\x3d\x4a\xe2\xb4\xc2\xb7\xa4\xc5\x70\x91\x45\x6d\x5e\x99\x39\xec\x00\xaa\xe5\x9e\xe2\xeb\xa6\x5e\xe8\xbc\x48\x39\x4f\xce\x62\x49\x6a\x1d\x69\xea\x91\xf9\x22\xdf\x43\x84\xee\x48\xcd\x7c\x77\xec\xc3\x24\xe6\x88\x13\x1e\x2c\x8a\xde\x95\xda\xca\x5c\x55\x57\x59\xc9\xe0\x08\x27\xc7\xde\x75\xcf\x67\x75\xbf\xf3\x84\x4a\xe3\x67\xcb\xd9\xae\x32\xf6\x41\x1c\xb4\xd1\xf1\xc1\xe6\xbf\x52\xbd\xec\xa7\xd0\x59\xc2\x7f\x04\x27\x10\x5b\xe4\x1e\x8a\x9a\xd2\xc5\xe1\x9d\xea\x41\xc1\x2a\x2b\x98\x2d\x16\x81\x74\xbd\x90\xca\x73\xf4\x65\xcc\xf8\xc5\xb5\x17\x55\x74\x78\x5a\x47\x87\xa7\x5d\xb4\xb9\x1a\xf6\xa4\x31\xca\x71\x89\x55\x4a\x97\xb3\xb3\x0b\x5b\x1f\x2a\x2a\x9c\xe3\x4d\x02\x5f\xc3\x50\x92\x7e\xae\xa4\xfd\xbe\xd7\x43\xbd\xf3\x7e\x13\xe9\xed\x52\x92\xda\xc0\x64\xf9\x94\x1f\x25\x56\x23\x14\xd6\x5e\xf2\x50\xe1\xed\xe2\xfc\xe6\xeb\x8e\xa2\xa1\xa6\xc2\xad\xb8\x94\x66\x2d\xdb\xe5\x81\x09\xd7\xe9\x50\x43\x11\x12\x59\x25\xc4\x7b\x93\x40\x67\x61\xf4\x58\x1c\xde\xb1\x37\x8b\xdb\x6b\x9f\xee\x8a\x1d\xe9\x59\x13\xd9\x14\x15\x54\x89\x3b\x7c\x60\xf7\x40\xa9\x27\xd4\x85\x92\x67\x0e\xb7\x97\x88\xca\xc7\x9d\x48\xdf\x51\xd0\xc9\xef\x34\xa1\x25\x7b\xd6\x8e\x24\x23\xa8\x4b\x87\x7c\xad\x02\x99\xc8\xf6\x43\x80\x6b\x26\x54\x7a\xf8\xaa\x62\x9a\x38\x81\xa1\x62\xa6\xd0\x26\x16\x3d\xd3\x5b\xb1\x29\xe4\x98\x1d\xb7\x89\x37\x11\xae\x58\x5d\x8c\xb2\xb0\x67\x27\xcb\x3f\xc3\x19\xf9\x90\x2a\xf9\xc2\x37\xde\xf2\xb2\x27\x1d\xdf\xe9\xd4\x5a\xaf\x97\xa2\x5e\x25\x85\x5e\x13\x46\x2d\xd5\xdc\x82\x5e\x35\xe9\x80\x52\x42\xdd\x26\xed\xdb\x68\x6d\x5f\x79\xaa\x22\x0b\xf7\x97\x8a\x08\xf6\x3c\xac\x24\x50\x06\x7b\xbb\xaa\x35\x1c\xa9\x1d\xfe\x04\xce\x6f\x25\x41\xf3\xaa\xe3\x3f\xa1\x5d\x24\x04\x28\xe5\x73\x23\x1b\xc4\x10\x19\xb8\x1d\x93\x90\xd8\xe4\xcf\x77\x7c\xb8\xdc\x4f\x4d\x00\xa5\x61\x24\x80\xc4\xcb\xd5\x9d\xb6\x75\x6a\x80\x99\xc3\xed\x51\x92\xe5\x4a\x9b\x72\xa3\xa3\xb8\xc2\xa8\x61\x62\x6b\xdd\xb1\xef\x2f\x1a\xf3\xb7\xb6\x51\x05\xf9\x22\x3f\xd7\xc4\x45\xa5\xb7\x01\x42\x62\x72\x11\xa8\x41\x34\xc6\xfa\x89\x7c\xe3\xa2\xe7\xd4\x92\x28\x37\xff\x29\xc7\x04\x34\xd2\x12\x1f\x78\xbb\x3d\x4a\xa2\x30\x5f\x2c\x52\x00\x36\x5d\x5f\x48\x39\x60\xa2\x67\xe8\x27\x70\x2d\x29\xe2\xbe\x4d\x5b\x1e\x63\x70\x93\xd6\x0d\x5f\x6b\x76\xe4\x41\x12\x2c\x53\xe1\x01\xc1\xf1\x6d\x8c\x0a\xba\x2a\x6e\xaa\x33\x64\xe7\xba\x02\x02\x9c\x71\xdd\x32\x44\x3d\x97\x26\x46\x4a\xdc\x88\x72\x50\x79\xe0\xeb\xf1\x17\x2b\x82\x38\xa6\x4f\x6a\xfc\xdc\x85\xe9\xd2\x19\x3e\xb5\xd1\x44\xe6\x91\x27\x45\x7f\x60\x85\xda\x01\xc7\xfa\xa6\x3a\xe2\x37\x95\xcf\xd6\xb3\x41\x28\x70\xaf\x57\xf5\xa1\x7b\x48\xa3\x6b\xe4\x8f\x93\x62\x31\xcf\x20\xd1\x02\xf3\x85\x09\x80\x7f\x79\x52\xc5\x4e\xcc\x75\xc0\x7f\xd4\x80\xb9\x6b\x2f\x25\x49\x9e\xe5\x76\xc4\xe0\x58\xa7\xc7\x5b\x7e\xb7\x78\x25\x4a\xfe\x39\x37\x71\xcf\xa4\xbd\xc7\x68\x0e\xe5\xec\xa1\xd1\xc7\x76\xf8\x63\xd5\xfc\xf7\x18\xc9\xd9\x20\x11\xfa\x0b\x72\x32\xb0\x14\x77\x28\x92\xd6\x3d\x54\x0c\xe0\xbf\xd1\xa2\xbc\xe7\xa9\xe4\x87\xbc\xc6\xcf\x70\xee\xc1\xe9\xfb\xd0\x45\x80\xab\x61\x3e\x48\x8a\x9c\x3a\xcb\x91\xd3\x7a\x12\xd2\xc1\x88\xfa\xb0\xb1\x99\x51\x1f\x07\x1a\x72\xca\x13\xeb\x5a\xf3\x23\xb7\x69\xb4\x46\x25\x44\x27\x81\x5f\xbe\x1b\x12\x08\x0c\x3e\x87\x3b\xd3\x8c\x59\x4c\x16\x5f\xb7\xbe\x71\x41\xea\xe5\x0a\xf1\x70\xbe\xe6\x99\x1e\x99\x6e\xf7\xd2\x64\x34\x2a\xc3\x9e\x05\x2f\x82\xae\xe0\x75\x8c\x96\x41\x44\xb0\xa7\xc6\xcd\xfc\x37\xdb\x51\x92\x2c\xcb\x6f\x3a\x76\x39\x9f\x04\xf5\x35\xf6\xa1\x89\x4d\x9f\x9a\x41\x15\x3d\x8f\xd6\xa4\x90\x1a\x16\xc6\x86\x51\x9e\xf0\x84\x8e\xd5\x0a\x86\x33\x87\xdb\x8b\xa9\x79\x2b\x8c\x42\x03\x1c\x18\x20\xa0\x6c\x2a\xf8\xa6\xa1\x00\x4a\x54\x0a\xbc\xc4\x30\xd9\x5c\x2b\xe2\x9b\xc6\xd6\xe0\xa1\x4d\xb9\xcd\x97\xcf\xb3\x0d\x55\x00\xaf\xf7\x83\x1c\x99\x7e\xa9\x3d\x34\x69\x18\x6b\x99\x23\x74\x17\xf1\xb5\xaa\x7a\x04\x83\x24\x0c\x40\x36\x8a\x65\x75\x56\xaf\x31\x40\x92\x60\x5c\xce\x93\x9b\xc9\xd7\xd5\x64\xe3\x62\xfe\x04\x8d\x39\x22\x86\xdb\x48\x5f\xbb\x1e\xae\xf2\xeb\x58\x4a\x03\xe3\x0d\x37\xe9\x84\xea\xc7\xf8\xa0\xb3\xad\x77\xc7\x8b\x93\x83\x53\x94\xbf\x4c\x31\xee\x5d\xd4\x5b\xf3\xbb\x58\x33\x40\x18\x4c\x76\x3d\x50\xf6\x81\xd2\xa3\x01\xa5\x24\xd2\x3a\x37\x3c\xa2\x82\x13\x08\x93\x3e\x61\x7f\x17\xcf\x8c\xbc\x12\x0a\x09\x58\x80\x0f\xe8\x59\x24\xfc\xd1\x43\xb0\xcc\xed\xe6\x8d\x35\xd9\xba\xc4\x35\x11\x95\xf0\x94\x0a\xba\x97\xde\x40\xe0\xbd\x5f\x72\x13\x14\xc6\x2b\x36\xcb\xa5\xdf\xa9\xa5\xb2\xe6\x08\xab\xf8\xba\x32\x21\x51\x92\xef\xab\xc0\xe7\x7c\x5f\xd0\x3b\xba\x99\x9b\xc9\xa7\x11\xb2\x6c\x6a\x9d\x80\x5d\x5d\x0a\x30\x34\xfe\x1a\x56\xe1\x1a\x96\x07\x77\x27\x2a\x39\x62\xe8\x6e\xb9\x12\xa4\x9f\xe7\x4b\xdb\x93\x4e\xf3\x0b\xf3\xed\xc3\x2f\x4f\x96\x36\x91\x1b\xa5\xe9\xa3\x82\xbc\xa4\x1f\x56\x64\xf7\x5e\xef\xd2\x3b\xad\xb9\x4d\x87\x50\xb1\x84\x6b\xfe\x2d\x25\xfc\x00\xb4\x21\x72\xa7\x53\x30\x1f\x4c\x4d\x03\xa7\x06\xc7\xe8\x7e\xa4\x2b\xf0\x1e\xe8\x25\xc5\xe2\xbb\xaf\xb5\x2a\xea\x6d\x48\x07\xe7\xda\xfd\xd0\x30\x67\x13\x62\x45\xb0\x10\xf0\xb5\x82\x10\x8e\x2c\x1d\xe2\xf3\xbc\xeb\xf0\x96\x7c\x5d\x99\xae\x30\x0a\xe1\x0d\x09\x48\x07\x9b\x41\xfa\x9a\x7c\x81\x7c\x64\x62\xc5\xf7\xda\xe2\x26\x3b\xe7\xf9\x7b\xb2\xfc\x1f\x62\x96\x98\x7a\xa5\xeb\x51\x70\xc3\x22\xed\x51\x5e\x16\x49\x46\x78\xe0\x37\x94\xe2\xf2\xa7\x5a\x0a\xb2\xc9\xb6\x20\xdd\x24\xbe\x36\x76\xd3\x47\xf4\x05\x7c\xad\x6a\x36\xac\x49\x40\x42\x15\xcf\x3f\xef\x96\xad\x6e\xfd\xc3\x56\x73\x7d\x80\xf3\x2f\xbb\xd5\x0d\xa5\x14\x89\xfb\x13\x40\x9e\xa5\xd7\x05\x6f\x8e\xe3\x75\xa2\xab\x21\xa9\x2d\x27\x62\x71\x4d\xcb\xb2\x5d\x53\x65\x94\xa5\x70\xc5\xee\x55\x52\x98\xb7\x14\xe8\xe5\xb6\x86\xc8\x9e\xd6\x71\xfb\xde\xae\xea\xe3\x3d\x37\x56\x91\x25\xbc\x7f\x78\xd1\x7c\x60\x21\xcc\x01\x31\x81\xfc\xd1\x13\x0e\x6f\x9c\x07\x03\x19\x40\xe7\x48\x7b\x56\x41\xf5\xa4\x76\xcd\x72\xa8\x0f\x17\xe3\xb8\x82\x2d\x55\x8a\x95\x6b\xc3\x91\xc9\x07\x10\x75\xc0\x13\xde\x51\x6a\x52\xd7\xc7\xba\x07\xa0\xc1\xf9\xc9\x72\x93\xdb\x6c\x68\x39\xb9\x2f\x30\x2b\x7a\x15\xc1\xaa\x3c\xa1\xb4\x47\xde\xb4\xbd\x5d\xad\xaf\x7c\x53\xca\x2d\x8a\x31\x0e\x49\x14\x87\x43\x76\x89\xe5\x3f\x54\x04\xdb\xa7\xb4\x54\xe4\x67\x4e\xff\x35\xb0\x71\xce\x6c\x0d\xaf\x32\x4d\xc0\x0f\x78\xa2\x11\xf9\x31\xd6\x14\xf5\x92\xb3\x5a\x50\xb4\xb5\xde\x00\x51\x19\x18\x11\x16\x17\x94\x6c\x0d\xc6\x08\x27\x81\x5b\xd1\xb0\x83\x9f\xe8\x7a\x33\xb3\x64\xa2\x88\x8a\x3a\xb0\x26\x7b\xba\x9e\xea\xfc\x4e\x55\x41\xa2\x34\x66\x48\xe7\x41\x69\x47\x58\x2b\xbc\x67\x7c\x09\xa0\x0e\xac\x46\x2f\x7a\xdb\x0b\xb3\x51\x64\xd6\xa6\x14\xa7\x3f\xbb\x1e\x18\x9e\xab\x8a\xd5\xeb\x2a\x26\x04\x03\xfd\xe1\x58\xe3\x47\x1d\x35\x55\x68\x87\x23\x44\x19\x4c\x0a\x81\x61\x12\x86\x88\x26\x1d\xfe\x20\x4c\x83\x22\xcc\x35\xa8\xfa\x52\x85\x8c\x48\x22\x9e\x28\x2c\xe3\x12\x21\x89\xe5\x46\xc6\xb1\xea\xcb\x00\xbe\xde\x93\x15\xb0\x6b\x19\x8f\x52\x1b\xd8\x5e\x39\xbd\xec\xa9\x01\x9a\x7f\x5b\xe9\x1c\xdf\x2e\x83\x44\x27\x60\x9f\xa7\x09\xa9\xd8\x4f\xf8\xaa\xc1\x0d\xbc\xbc\x63\xac\xf4\x49\xa7\xf7\x54\x44\xb4\x3a\xb0\x16\x35\x6b\x1c\x1a\x67\x28\x72\xe2\xeb\x46\x7a\xbb\xd8\xe6\xab\x49\xba\xac\x92\x30\xec\x23\xf3\x4d\x67\xdb\xe9\x35\x3b\xbb\xd0\x9e\x9d\xdd\x55\x7e\xad\x03\x0e\x2f\x78\x7d\xf2\x72\xf2\x5d\xbd\xa7\xdc\xe0\x72\x04\x57\x12\x44\xaa\x2a\x54\xdb\x8e\xc4\x44\x16\x0c\xa0\xb4\xab\x18\x4a\xdf\x1b\xb7\x94\x7a\x86\xcc\x09\xb4\xfa\x42\x9b\xed\x51\x52\x8c\x20\xba\x76\x1c\x6c\x4e\x8e\xfe\xa2\x66\xf4\xdd\xc0\x76\xc0\x11\xcc\xbc\x72\xd2\x3d\xe6\xdb\xba\x2e\xf2\x0e\x64\xf1\xd7\x9a\x07\x7e\x70\xae\x1d\x99\x8c\x21\xbb\x38\x42\xce\xa9\xe3\xe4\x9c\x2a\x92\x8e\x6c\xb9\xbd\x77\xd1\x40\x20\x29\xd5\xc2\x61\x0f\x88\xf9\x8f\xc7\xbe\xe5\x0d\x98\x56\xfe\x77\x58\x64\xa7\xad\xeb\x08\x7a\x7e\xad\x4c\x12\x51\xe1\xe8\x12\x10\xa0\x3b\x7c\x5d\xa3\xa6\x5c\x98\x26\x19\x31\x33\x1c\x9a\x3c\x49\xd7\x26\x5b\x8a\xff\x4c\x85\x2f\xdf\x1a\x57\x08\xb6\x7d\x65\xfc\xb6\x6a\xf1\xb0\xf9\x20\xae\xe4\x0b\xb6\x74\xeb\xfc\xd6\x23\xd9\xdb\x7b\x21\x4a\x7d\xb2\xa1\xff\x07\x2d\xd5\x72\xb1\x22\x20\x5b\x3b\x86\x4b\x17\xca\x47\x3e\xaf\xea\xc8\x69\xc6\x31\xe1\x3e\xa5\x32\xa1\x8b\x8b\x22\xd5\x04\x27\xe9\xf7\xc6\x5e\x1d\xee\xf7\x6a\x5c\x5c\x73\x73\x6d\x93\xe6\xe1\x12\xe9\xe6\x32\xa0\xc3\x55\x50\x5d\x81\xe6\x94\x6a\xd6\x81\x66\x4d\x14\xad\xed\xf1\xa8\x83\xc7\xc0\x74\x2b\x0a\xc7\x34\xef\x18\xca\xdb\x14\x56\xe0\xfa\x26\x96\xa1\xc8\xe0\xa8\xa1\xc3\x51\x02\xaf\x02\xb0\x3d\x09\x8f\x95\xac\x4e\x12\xe7\xa9\x61\x84\x28\x2b\x9c\x8c\xbd\x20\xe4\x67\x0d\x9a\x30\x2f\xb5\x93\x91\x8d\xe9\xa4\x14\x54\x5d\xb9\x81\xe1\x33\xdc\x21\x7b\x21\x47\x5e\x43\x25\x25\xcb\x93\xd4\xf4\xad\x92\xec\xbc\xa0\x24\x3b\x2f\x78\xd9\x36\x93\x05\xa6\x27\xe2\x1f\x68\xe4\x60\xc3\xc2\x37\xb5\x68\xf8\xf0\xcb\xed\x60\x10\xc6\x36\xb3\xf4\x70\xdc\x19\x4d\x2f\xce\xdc\xfd\x1d\x55\xef\xd6\xbc\x70\x80\x1f\x3c\x4e\xeb\x07\x31\x18\x47\x47\x2e\x0f\xec\x80\x09\x27\x55\xe5\xe9\x21\x75\x5d\xe3\x68\x60\xa4\x34\xfc\x05\x92\x39\x63\x37\x03\x14\x0c\x18\x91\x5f\x61\x2b\x62\x7a\xdf\xa6\x16\x25\xfe\x34\x4d\x15\x8b\x50\x77\x14\x7a\x85\x93\xd3\x18\xe8\x87\x8d\x01\xf1\x62\x9a\x48\x1b\xa1\xe4\x6d\xe8\x35\x25\x71\xa3\xd2\x5d\x23\x1b\xf7\x48\xaf\xdd\x85\xef\xe5\x33\x23\x1e\x03\xcc\x9d\x39\x99\x14\x4f\xd9\x39\x7a\x7e\x51\x67\xaa\xc8\xfc\x45\x66\x52\x95\x0e\x6e\x77\x54\x2b\xfc\x75\x6c\x46\xbe\x01\xa5\x09\xff\x99\xb2\x68\x49\xd4\xb3\x19\x50\xfb\xce\x11\xf0\xa8\xb3\x8e\x6f\x35\x1e\x58\x93\xe6\xab\x61\x66\xf5\xf1\x77\x56\xeb\xee\x9c\xad\x65\xb5\x0f\x1c\x60\x58\x3d\xb9\xea\x5b\x48\xe7\x49\x91\xb3\xe2\xa4\x3f\xa7\xaa\x98\x71\x60\x81\x78\x9c\xf4\xed\x47\xf7\xb0\xf7\x1c\x32\xc5\xe1\x8a\xc1\xe2\x87\x8a\xd9\x29\x95\x14\x88\x93\x3c\x8c\xfb\xa0\xe4\xc1\x8a\xb8\xad\x7e\x7d\x8b\x76\xaf\xb4\x52\xd1\x0b\x39\xa5\x5f\x17\x6c\x6f\x35\xf4\xe4\x3b\xea\x5a\x39\xd8\x5c\x91\xdf\xb3\x63\xd6\x3e\xf6\xca\xcc\xe1\xf6\x1b\x85\x89\xc2\xa5\x50\x1a\xd7\x65\x03\xd1\x12\x97\xad\xb5\x1d\xfc\x45\x14\x00\x66\x64\x82\x30\x4f\x1c\x21\x11\xdc\x7a\xee\x69\xe4\x9b\x4a\x09\x7e\x99\x32\xe7\xae\xdf\x63\xb2\x4b\x90\x26\xa1\x62\x57\x07\xd1\x5f\x8c\x15\x04\xfe\x2f\x10\xbc\x3b\x69\x23\xcf\x8d\x7e\x5a\xc9\x35\xdc\x27\x3b\x23\x7c\x95\x9e\xa5\xf4\x9e\x52\xcc\xdc\xb7\x4e\x39\x52\xfe\xc1\x9a\xf5\x9a\x39\xdc\xce\x02\x89\x3e\x5d\xc1\xcc\xe1\x52\x37\x9a\x20\x70\x41\x12\xc7\x49\x98\x65\xb6\x40\x33\xea\xa3\xf4\xf8\x79\x57\xac\xd9\xfc\x31\x55\x5c\x22\xc0\x21\xf8\xce\x00\xec\xda\x4d\xad\x22\x58\x58\x50\x95\x47\x06\xfb\xb7\xb5\x73\x7e\x9b\xbd\x06\xaf\xe9\x2f\x30\xb5\x9d\x5d\x95\xb8\x7f\x02\xca\x54\x42\x87\xe2\x6b\xec\x41\x1a\x0e\xc3\xd8\x44\x13\xca\x79\x3d\xad\xbb\x1d\x3b\x1e\xee\x70\xbe\xf6\xd2\xb3\xb3\xed\x30\x8a\x8a\x2c\x4f\x3d\x35\xa7\x6a\xbd\x9e\x71\x13\xd5\x20\xf3\xb4\x18\x8e\xca\xa3\x2f\xe3\xb4\x1e\xb6\x18\x10\x9c\x7c\xbd\xfe\x74\x25\xbe\x4d\xa9\x82\xe7\x28\x84\x7f\xae\x94\x05\x7e\xae\xf2\xda\x59\x5e\xf4\x88\x13\xd5\xfb\x49\x7f\xd6\xf9\xf7\x13\x0c\x54\x82\x58\xef\x34\x90\xbf\x64\x61\x3f\x36\x11\x94\xca\xe7\x3d\x75\xe0\x41\xa9\x33\x7c\x82\x2d\x8a\x9b\x49\x9c\xc9\x48\x06\x5f\x55\xa0\x8a\x30\x5a\x5e\x36\x8a\xa6\xf6\xfb\xba\xff\xe8\xfb\xd5\xec\x52\x0a\x44\xb0\xb0\x72\x57\x31\xb1\xe5\x57\xf0\xff\xe0\xb4\x70\xd0\xf5\xf2\x9d\x10\x0b\x71\x0d\x46\x80\x6f\x75\x29\x85\xf9\x76\x52\xe4\xbd\xb0\x87\x7a\x97\x20\xf7\x95\x9c\xc8\x29\x57\x8b\x25\x3e\x1f\xa4\x4f\x90\x08\x39\x46\x33\xc0\xd7\x2e\x30\x2a\x7d\x7c\x9b\xd2\xe8\x23\x3b\xfb\x38\xd9\x3e\x21\x4d\x57\x68\xe4\xdb\xaa\x7b\xf6\x73\xdd\x29\xee\x23\xf8\xb8\x08\x22\x6b\xd2\x49\x95\xa6\x27\x56\x70\xe9\x99\xee\xf8\xc6\xff\x0d\x95\x22\xfb\xa4\x11\x29\x9e\x5a\xa0\x33\xf0\xae\x8e\x00\xf6\xeb\x33\x2e\x16\x13\x28\x82\xed\x27\xe4\x19\x20\xe7\x79\x0a\xcf\xa6\xc7\x5d\x04\x09\x1b\x85\xbf\x4c\xcf\xa6\x4a\x2b\x15\x55\x1b\x91\x63\xf6\xfb\xff\xbf\xfc\x3b\xbf\xdb\x52\x2d\xca\x7b\xba\xad\x03\x33\x72\xbd\x5e\xe9\xf7\x8d\xf6\xaa\xa4\xeb\x65\x3c\x8d\x14\x74\x3c\x70\xfd\x8a\xa6\xf5\x99\xe8\x6a\x62\x1a\xaa\xe8\x3b\xe2\xcd\x6f\x7c\x6d\x5b\x63\x72\x45\x8b\x48\x20\x05\x1e\x36\xd8\x4b\x6d\x96\x89\x08\x00\x52\xad\xd0\x7f\xe5\xeb\xda\x49\x72\x70\xae\x9d\xdb\x60\x10\x27\x51\xd2\x5f\x6b\xe9\xdc\xd9\xb1\x71\x65\xfd\x7c\xd1\xf7\x76\xc8\xdf\x87\x81\x89\xf0\x4b\xc8\x40\xa1\x9d\x88\xaf\x5d\x30\x66\x96\x22\x93\x27\x6f\x86\xe8\xa2\x85\xe3\xfb\x54\x57\x95\xd6\x6e\x6b\x2d\x6d\x5a\x19\xb0\xf4\x9c\xbc\x03\xc8\xbb\x5e\x5e\x79\xed\x35\xd2\x31\x09\x73\x67\xce\x30\x84\x1b\x8a\xdb\xa7\x51\x98\x30\xcb\xad\xe9\xc1\x7f\xc7\x66\x43\xc9\x89\xaf\x6b\x8c\x1d\xc4\xdf\x97\x86\x49\x4a\x1c\xda\x78\x1a\x30\xd2\x33\x20\x60\xdc\x52\xcc\x8b\xaa\xa5\x7f\x68\xb8\x1c\x2e\x35\x09\xef\x33\x6e\x28\x4a\x99\xa1\xe9\x85\x9e\x44\x55\x84\x62\xe9\xd5\x45\x41\xb6\x81\x1e\x2f\xb7\x51\x34\xe9\xd7\xcd\x19\xad\x86\x06\x46\x21\x97\x3e\x2c\x57\x0a\xd2\x87\x67\xdc\xce\x8f\xac\x59\xb1\x0c\x8f\x14\x48\x93\xdf\x45\xac\x45\x24\x4c\x4a\xdb\x8f\x92\x23\xd3\x73\xa5\xf3\x16\xe5\x83\x15\x2a\x60\x7a\x86\x9a\x33\xc0\x02\xcb\xaf\x35\x60\x12\x46\x91\x59\x93\xf9\xe2\xe4\x6a\xc7\x5b\xff\x4f\xab\x5d\xaf\x69\xb2\xca\xc3\x22\x8d\x3b\xf4\x5b\x7c\x33\x7e\xba\x9a\x84\x78\xa1\xfd\x37\x1f\xa7\x17\x82\xe3\xf5\x6d\x72\xc5\x19\xbd\x30\x56\x38\xb3\xbf\xa4\x93\x17\xb9\x34\x3e\x07\xe0\x8b\xbc\x03\xd7\x59\x00\x0f\x1e\x7e\xbf\x41\x01\x10\x76\xc2\x8e\x75\x45\x28\xfd\x90\x06\x0d\x8e\xf7\xdd\xb1\xef\x54\x7f\xac\xeb\x43\x21\x4e\xb7\x33\x5f\xb1\x8a\x91\xb3\xa4\x8c\x24\xa7\xe8\x24\xd3\xa5\x1c\xd8\x95\xd3\x63\x95\x8c\x6e\x75\x7d\x84\x7f\xa7\x5a\x49\xf2\x46\x6a\xd1\xa6\x4f\x6a\x0b\x59\x7e\x17\xde\x72\x6a\xbd\xb4\x57\xc8\x56\x1c\x53\x60\xad\x3f\xfb\x6b\x5d\x9d\x33\xde\x50\x74\x07\xa4\x91\xfa\xea\xd6\x6e\x42\x28\xe1\xd0\x7d\x9a\x1e\x02\xeb\xed\xe1\x58\x89\x10\x9c\x83\xd1\xaa\x98\x26\x1c\xcd\x27\x81\xbc\x41\xa4\x76\x62\xac\xfa\xfa\x99\xfb\x15\x0e\xde\xde\x1a\x9b\xc4\x81\x03\xed\xd7\xed\x6a\x36\xa1\xf0\x35\x1b\x6c\x01\x61\x34\xc0\x05\x84\xd7\x3b\x3b\x6e\x10\x14\x39\x32\xfd\xea\xa4\x22\x79\x3e\x53\x59\xd2\x1d\x3f\x36\x27\xe9\x8b\xe0\x63\x9c\x73\xdd\x18\x79\x32\x0a\x83\x09\x0f\x6b\xbd\xab\xc0\x28\xd0\x75\x15\xd1\x87\x06\xcd\x7e\x03\xb4\x2e\x06\x92\xeb\xd6\x7c\x53\x47\xdd\xcd\xb4\x5f\x37\x23\x53\x06\xb8\xaa\xcf\x91\x33\x1d\xb2\x85\x05\xc3\x91\xa7\x05\x28\x49\x90\x6b\xc0\xaa\x50\xf2\x91\xf3\x2e\xce\x90\x42\xde\x52\xb8\x62\xd7\xac\x81\x93\x8b\x73\xed\x57\x1d\x7f\xc6\xfd\x4a\x61\x7a\x93\x10\xea\x1e\x95\x5c\x0b\xec\x01\xe8\x24\x10\x93\xed\x5e\xf7\x85\x93\x51\x64\x4d\xcf\x89\x38\x62\x6c\x7f\xa5\x07\xfa\x57\x15\xa2\xc5\x22\x5e\xde\x47\xab\x1d\x63\xda\x82\xee\xbf\x3b\xeb\x16\xa6\xf9\xac\x03\x9f\x09\xe2\x80\xfd\xe0\xab\x84\x7b\xf2\x13\xac\x20\xd8\xd0\x87\xaa\x75\xee\x9f\x91\x6d\x45\xb1\xe1\xe7\x1d\xcd\x5d\x3d\xf6\x58\xe9\x5f\xd3\xbe\xc7\x08\x5d\x6d\xe8\x6d\x9f\x6b\x97\x01\xe9\x80\x53\x3b\x12\x4f\x95\x8f\x22\xe1\x54\x43\x91\x60\x94\xda\x15\x95\xc3\x15\x14\x02\xed\x01\xbe\x69\x6a\xac\xfd\x72\x3b\xb6\x26\x75\xf0\x0f\x21\xf0\xaa\x78\xab\xbe\x64\x14\xc6\xb9\xed\xc3\x6f\xf7\x84\x34\x88\x71\x1e\xc5\x7f\x78\x64\xfa\xa5\x76\x5e\xa4\x8e\xbd\x10\xae\xc6\x1f\x77\x94\xa8\xd8\x1f\xbb\xd3\xc0\x84\xbe\x33\x98\x8b\x34\x1d\x8f\x4b\xdb\x50\xf4\x60\x8b\x69\xd2\xb3\x69\x18\x2c\xb7\x7c\x8f\x3a\x77\x1c\x48\x0f\x83\x4f\x4d\x04\x83\x70\x84\x16\x60\x04\xff\xff\xb0\xe3\x4f\xd0\x0b\x04\xa9\x13\x82\xec\x96\xa3\x24\xba\xa2\x3e\x3f\xb2\x51\xfe\x16\x79\x0d\x38\x08\xc1\x5c\x8c\x92\xed\xfa\x58\x71\x3b\x08\xb3\x26\x62\x9f\xcb\x38\x84\x24\x55\xbb\x9d\x85\xed\xc0\x81\xf6\x28\x4d\x32\x1b\x14\xd4\xbb\x03\x88\x2d\xca\xea\x40\x27\xf2\xb5\xe2\x2d\xca\x4c\x0c\x50\x22\x7e\x06\x1e\x25\xd7\x5a\xf8\xa6\xb6\x9e\x0e\x1c\x68\x0f\xcc\x5b\x36\x8a\x8b\x7c\xb2\x42\x5e\x4f\x8b\x5e\x74\x7d\xcb\xd5\x89\xfc\xf7\xe7\x63\xdf\x4b\xb5\xa3\xeb\x63\xa4\x81\x49\x7b\xab\x26\x45\x29\x1e\x26\xeb\x2e\xb6\x01\xdf\x60\xb9\x4b\xd8\x47\xdf\xce\x37\x0d\xdc\x51\xf3\xed\x22\x8e\xac\x23\x96\x79\xd5\x09\x5f\x97\xdf\xce\xd7\xe3\x0a\x2d\x91\xcd\x26\x1c\xd2\xff\xff\xba\x84\x98\xde\x75\x62\x2e\x4c\xf3\xa9\xf8\x6f\x9c\x8d\xca\xec\x9b\x6b\x8f\x14\x95\x6b\x8e\xc4\xf3\x30\xee\x5b\xe9\xb8\x82\x6d\x40\xfe\x90\xaf\x95\x53\x30\x0c\x7b\x11\xe7\xd5\x9d\xca\x88\xea\x6a\xe8\x78\x88\xc0\x30\x0c\xd2\x64\x94\x26\x68\x75\x9b\xac\x16\x30\xe7\x5f\x96\xb4\xc7\x69\x14\x24\xb0\xf8\xf8\x68\xe5\x1b\xc5\xe3\x11\x24\x71\xaf\x08\x58\x1f\xcc\x89\xd8\x29\xb1\x29\x1f\x03\x2c\xda\x2c\x7f\xdc\x2b\x82\x5f\xaf\x64\xcb\xc9\x25\xc1\x1c\xbf\x8f\x1a\x11\xbc\xe5\xff\x5b\x9d\xbc\xdc\x06\xec\x04\x43\xe7\x9d\x44\xc8\x24\xf2\x86\xb8\x41\xf9\xd2\xd1\xba\x1d\x99\xe6\xa6\x00\x98\x77\xac\x8d\xa3\xd4\x9a\x8c\xd5\xf0\x43\x42\x96\xf0\x17\xd5\x9c\xdc\x23\xd3\xed\x28\x89\xa5\x4f\x11\xe7\x1c\xfa\xc2\xf8\xba\x56\x4b\x5c\x98\x6e\x4b\x21\xd0\x09\x49\x97\xcf\x8d\xed\xb9\x03\x19\x0d\x9c\x53\xc7\xc6\xbe\x65\xf0\x36\xcb\x99\x94\x03\x21\xa0\xb7\x4a\x05\x52\x75\xbe\xf7\x51\xea\x72\x2c\x1d\x5f\x7d\xc5\x73\x9c\x7a\x64\xc0\xc3\x9a\x7b\xbc\x30\xdd\x5e\x22\xa0\xcf\x91\x69\x4f\x74\xe0\x35\xb9\x1a\x39\xc6\x89\x7b\xb5\xa5\xa4\x5a\x37\x3b\x0a\x52\x5f\x67\x06\x9a\x9d\x6d\x47\xa1\x8d\x5b\xfe\xa4\x42\x85\x47\x30\x20\xdb\xcd\xc1\xe1\x97\xdb\xa3\xc1\x5a\x46\x21\x93\xdf\xf4\x70\xd2\xa4\x1a\x56\xd3\x78\x9f\x69\xdb\x38\x1f\x14\x59\x68\x32\x91\x2a\x10\xd8\x87\xa6\xab\x69\x80\x90\xcd\x80\xe9\x93\x3f\x24\x25\x41\xfa\x10\xdf\x28\x47\xb4\x17\xc6\x31\x6f\x2a\xa0\x34\xaf\x2a\x65\x88\xab\xce\x27\xca\x22\x87\xd2\xe2\x79\xed\x78\xd6\xa0\x63\x8d\x75\x44\x1b\xf7\x8d\x93\xbb\x80\x37\xf3\x4f\x3a\x8a\xd7\xf8\x9f\x28\x2e\xa2\x5e\x01\xf2\x76\xab\xe4\x25\x2f\x55\xf4\xe6\xea\x8b\x76\xbe\x9d\x86\x99\x65\x61\x06\x26\x03\xa3\x8f\x08\x31\x98\x12\x97\x2c\xc7\x63\x17\xcd\x29\x56\xe2\xf9\x8e\x5a\xaf\x97\xc7\x8a\x16\x9b\xdb\x29\xf1\x88\x90\x96\x46\xbe\x66\xaa\xeb\x45\x5d\x6f\x2b\x51\x97\xd7\xcd\x5b\x6f\x4d\xfa\x7c\x25\x33\xcd\x30\x82\xae\xe3\xe1\x59\xd0\xa3\x70\xd0\xba\x67\x14\x8a\x94\x6b\xc1\xb4\xfd\x44\x2e\xbf\xfc\x46\x51\xcb\xf7\x32\x4b\xe1\x28\xb2\x7b\xc9\x2a\xa0\xf2\x73\x6a\xec\xd7\x39\x78\xae\xe0\xe8\xc3\x3b\x54\xc4\x33\xd2\x3b\x79\x9d\xac\x02\xfe\x08\xcd\x91\x1a\x0a\xe6\x84\x4c\xca\x29\x83\x49\xf1\x0d\xd0\xa5\x2b\x19\x25\x4c\x96\x8e\xbf\xbc\xa7\xce\x4c\xae\x54\xc9\x57\x37\xa4\x20\x83\x24\xa6\x93\x97\xba\x00\x1d\x7f\xe5\xbd\xb1\x6f\x43\xbe\xe7\x92\x58\xb1\x5d\xb1\xe9\xee\xf2\x85\x58\xb2\xbf\xab\x5a\xcb\x3f\xa5\xb5\xe7\xd0\x05\x4e\x1f\xee\x38\xde\xd4\xa1\x6a\x5e\x71\x3c\x11\x1b\x24\xcf\x28\x01\xee\x33\x8a\xe9\xaf\x74\xe0\x92\x94\x7a\x68\x5e\xe2\xe8\xeb\xae\x42\xaf\xdc\xed\x54\x9c\xae\x83\xfe\x38\x6b\x3f\xaa\x8a\x69\x87\x49\x90\x1a\xa8\xb6\x4b\xf8\x03\xed\x4b\xc7\xa1\xe1\x55\xac\xae\x69\xca\xe0\x93\x1c\xe5\x20\x69\xf6\xb8\x42\x29\x99\xa2\x17\xda\x38\xb0\xd9\xa4\x62\x4f\x38\xd5\xf1\xc9\x2b\x3e\x9c\x85\xe2\xca\x7b\xfc\x97\x9a\xca\xe9\xf6\xcd\x0a\x87\xa4\x68\xf5\xb7\x9c\x6c\xd6\x99\x9a\x4f\x79\xf8\x65\xe6\xe1\xe5\x6e\x4c\x24\xb9\xae\xaa\x26\xc8\xf7\x71\x1a\x4b\x9c\xe4\xe1\xdb\xa6\xc8\x72\x9b\x42\x3d\x19\xc5\xcb\x73\x0a\x1e\x75\xae\x89\x44\x66\xd1\x44\xd1\xc8\xa4\xcb\x15\x62\xbb\x4b\x8a\xd8\xee\xd1\xe2\xae\xbd\xbf\xbe\xa8\x5a\x98\xee\xeb\xa6\xae\xfb\x9a\xc8\x89\x98\x6d\xbc\x7f\xb9\x49\xbb\x47\x32\x30\xfe\xe1\xfb\xa9\x21\x0f\xdf\xa7\x5b\x36\x34\x18\x72\x43\x23\x47\x13\x50\x3e\x7a\xbe\x4d\x60\xba\xf9\x5a\x67\xea\xec\xa2\xd9\xce\x3a\xdc\xd1\xac\xc3\x4d\x8c\xe4\xa3\x34\x59\x4a\x8a\x98\xc2\x80\x2d\x32\x10\x5b\x27\x1b\x8a\x3c\x87\xda\xa9\xed\x87\x34\xe2\x3c\x55\xc8\xbb\x7e\x9f\xc6\x5c\x54\xf5\x68\xaa\x60\xe4\x3e\x56\x3c\xe1\xa9\xed\xd9\xe1\x08\x1a\x1a\x0e\x01\xc0\x0b\x56\xc8\x35\x7d\xf6\xaa\x6f\xd2\x9e\x8d\x33\x18\x56\x6c\xc7\x33\xf0\xaf\x38\xd5\xdb\x69\x3d\xff\x7c\x25\xed\x0b\x40\xd7\x51\x4d\xa1\x89\x0d\x8c\x09\xda\xd1\x15\x46\xfb\xd2\x56\x24\x51\xd8\xa3\x23\xc1\xc5\x97\x6f\xab\x15\xf0\xb6\x8f\xd7\xd3\x50\xd2\x59\x98\x94\xc9\xae\xd2\x41\xbd\xa3\x78\xf6\x2e\x55\xf8\x48\x73\x5b\x86\x00\xbb\x14\x94\xfe\xe6\xd8\x63\x82\x01\x62\x44\x3a\x9c\x8b\x9f\xf0\xd7\x50\xed\x03\x2a\xf4\x18\xc5\x9e\x7c\xed\xa8\x86\xf2\xa4\x6f\x26\x94\xce\x0b\x02\x51\x24\x52\xde\x57\x78\x8d\x6b\xb5\xc3\x7b\xfe\xe5\x43\xed\xa5\x30\x0b\x4c\x34\xe1\xa5\xba\x27\xba\x1a\xe2\xd8\x72\xd4\x19\x7f\x5e\x53\x86\x29\x03\xbf\x62\x34\x59\x86\xba\x04\xe4\x9a\x7e\x86\xdc\x38\x57\x92\x76\xad\x9c\x9b\x8a\x8d\xbb\xb5\xfe\x9c\xee\x68\x88\x6c\x6e\xd2\xd0\xb0\xe6\x0a\x0e\x01\xd4\xdc\xf9\x5a\xb3\xd6\xbf\x51\x84\xa3\xa1\x8d\xf3\xfd\xe5\x0b\x3a\xb6\xdc\xd2\xa6\x38\x01\x1d\xd5\x2b\x09\x5b\x87\x80\x9c\x69\xbf\x59\x91\xb1\xa3\x49\xc8\x91\x07\x16\xba\x5d\xdf\xd3\x73\xa6\xa3\x64\xdf\x4f\x62\x17\xf2\x8d\xea\x12\xbb\xad\x21\x86\x2e\x11\xdd\x33\x69\xbe\x98\x98\xb4\xd7\x52\x24\xac\x0f\x55\x3b\xd8\x43\x9f\xb3\x8e\xfb\x36\x5a\x0a\xb3\x01\xa5\x80\x90\x7f\xba\xa3\x44\x67\x90\x63\x46\xae\x4f\x53\xe1\xe7\x69\x32\x1c\xe1\x64\xc3\xe1\x7c\x87\xbc\x56\xbe\x76\xf8\xb6\x91\xcd\x6c\x6e\xd8\xb0\x61\xa9\xdd\x54\x9a\x26\x37\xab\x64\x73\xbd\x8c\x4a\x69\x98\xfc\x1b\x74\x00\xf1\x75\x0d\x3a\xb0\x30\x0d\xf9\x28\x64\x15\x9c\xde\xa3\xd7\x7e\xac\x50\xfb\xf4\x4d\xca\xb1\xa9\x84\xbf\x74\x5c\x22\x1f\xfc\x1d\x4c\x9b\x04\xc3\xe5\xaf\xf2\x7f\xd4\xf2\x19\x07\xe7\x10\x6d\xad\x9a\x15\xdd\x3a\xfa\x61\xc7\xc3\x81\x3f\x54\x9e\x98\x8d\x22\xd1\x68\x02\x4a\xe1\x61\x45\xbb\x48\x71\x9f\xdd\xac\x40\x13\xac\x4d\xf7\xf9\x26\x9c\xd3\x1d\x15\x48\x73\x2c\xae\xb4\x49\xe6\x7d\x45\xc7\x91\x40\x9d\xa0\xb7\x40\xa8\xb8\xb3\xab\xe4\xf6\xcf\x76\x74\x60\x7f\xb7\x53\xc1\x27\x3b\x87\x8c\xa5\x53\x84\x4a\x71\xfb\x28\x1c\x38\xd0\xce\x06\x26\x57\x46\x57\xe0\x3b\x1e\x67\xca\x1d\xa3\xe2\x32\x3b\x5c\xcc\x20\x59\x76\x27\x31\x76\xe7\xa7\xaa\xd1\xfa\x53\xa5\xa2\xd6\x37\x51\xc4\x96\xb9\x99\xd2\xdb\x69\x68\x85\xd2\x41\xc2\x6d\x32\x2a\x61\xfa\x4f\x69\x20\xf0\xee\x3f\x56\x5c\x81\xab\xa9\x35\xcb\x52\x3d\x12\xb6\x50\xef\xa6\x9d\xa9\xbd\xf3\xec\x6c\x7b\x34\xb0\x71\x32\xb4\x31\xea\xa4\x08\x7a\x6f\x8f\x15\xff\xe9\x6d\x85\x88\xca\x07\x49\x91\x99\xb8\x97\xed\x2d\xff\x98\x03\x56\x2c\x34\x37\x45\xdf\xf8\x1a\xef\x97\x7b\x2a\x5d\xb4\x8f\x3a\x81\x80\x4c\x65\x2e\x2f\x27\x5d\xe6\x99\x39\x36\x69\xe6\x24\x0f\xd9\x72\x08\xe1\x8b\x6a\x00\xb3\x3c\x0d\xe3\xfe\x2e\x8a\xfa\x25\x2f\x5d\xfe\x8e\x62\x23\x7d\xb5\xe2\xba\xa3\x32\xf1\x70\xbb\xb2\xd7\xcc\x23\x9d\xab\x72\x29\xb5\x83\x81\x49\xfb\xc2\x9b\x87\xf4\xd7\xaf\x3b\x4a\x7d\xe4\xd7\x8d\x14\x11\x8b\x45\xea\xc4\x56\xb1\xe8\xfe\xa4\xe3\x17\xe0\x9f\xd4\x3e\x33\x3b\xdb\x1e\x86\x04\x32\x6b\xf9\xf0\xe3\xaa\x8a\x38\xae\xd6\x9e\xce\x89\x10\x14\x79\xa2\xb4\xf6\x91\x5b\x93\x96\x7a\x1a\x53\x38\xd4\x37\xdd\x19\xdb\x2f\xe2\x78\x4d\x89\x2b\x5c\x56\x0a\x52\x97\xb7\xa7\xe0\x69\x10\x0e\xcc\xec\xa6\x25\x8d\x7c\xd1\xff\x5c\x01\x65\xd0\x3b\x0a\x9a\xdf\x23\x64\x59\x0f\xb9\x12\xe7\xc3\xc0\x7f\xc2\x9e\x31\xdf\xa9\x3c\x61\x9e\xf4\xcc\xda\x7e\xfc\x2f\xc8\x26\xee\x8e\x95\x2a\x2b\xf2\x18\xd2\xe2\xe2\xfd\xfa\x9f\x63\x33\x02\x93\xc2\x71\x03\x96\xe4\x2d\xf2\xaa\x91\x7d\xfa\xa4\xa3\x6a\x8b\xd7\x54\xcb\x2d\x98\xea\x90\x98\x3e\x8f\xa7\x16\x41\x0f\x5f\x21\x7a\xf1\xe9\xf5\x27\x75\x2a\x2f\x32\x31\x19\x73\x38\x52\x5b\x64\xcc\xf9\x5a\xf3\x46\x27\x7d\xf4\x12\x0a\x2b\x9a\x4f\x3b\x9d\x6b\xa2\x98\xea\x91\x7a\x50\x4b\x09\xed\x9f\x52\xd2\xde\x9a\xed\x96\x9a\x1b\x4b\x57\x76\x61\xde\xb7\x4d\xf9\xb2\xa4\x82\xcf\x05\x51\x92\x71\xbf\x25\xce\x0e\xd0\x7f\xf3\x75\xad\x1f\x77\xe6\x70\x3b\x2a\xe2\x60\x60\xd9\x38\x35\x1d\x01\xfe\xcb\x49\xec\x73\xed\x09\xa2\xef\xd8\xb5\xae\x18\x12\xce\x93\xb1\xc4\x9e\x9f\xec\x2a\x95\xcc\x4b\x95\x2e\x23\xdf\x34\x82\x9a\x33\xd6\xc4\xd3\xdd\x32\xb0\x85\x11\x3f\x39\x56\x32\xb2\x2c\xcd\x8d\x02\xc6\x75\x32\x0c\xc8\x59\x31\x78\x9e\x65\xa4\x14\x4a\xff\xe7\xda\xdb\x7b\x77\xbc\xdf\xcd\xe1\xf3\x29\x58\xcc\x5c\x57\xbb\xef\x77\xff\xe9\x58\xc1\x55\xfe\x7c\xdc\xfa\xca\x37\x5d\x59\x4f\xb5\x99\x5f\xa0\x9f\x67\x91\x76\x2c\x53\x96\xb7\x52\x6c\x30\x4f\x75\x7d\x7f\xd5\xa6\x6e\xe3\xba\x3d\xf6\x13\xc2\x62\xa3\x38\xa1\xd1\x0d\x0b\x03\x79\x8c\x0a\x1d\x22\x90\xd3\x3a\x30\xe3\xc6\xca\xf5\x77\xa5\x69\xe9\xe2\x70\xf4\x21\x62\x4d\x4a\x1c\x4a\x77\xc3\xc5\xe1\xf2\xb2\x0d\x69\xc9\x38\x1e\xf6\x83\x32\x36\x3f\xd0\x1c\x24\x51\xb2\xca\x5f\x89\x1f\xbf\x86\xaf\xe4\x1b\xd5\xaa\xb4\x5c\x0c\x6d\xab\xb4\xf4\x58\x77\x4c\x1d\xc8\x37\x4d\xdd\xb2\x26\x08\xc2\x9e\xd0\x41\xc0\x25\x46\xbb\x3c\x5f\x7b\xad\xbb\xd1\x28\x4d\x4c\x30\xb0\x3d\x6a\x31\x57\x44\x7c\x52\x63\x3e\xa5\xf2\x74\x1f\x8d\x55\x42\xa8\xce\x2d\x30\x37\xd7\xce\x46\x26\xf2\x51\x32\x52\xa9\xac\x29\xcc\x37\x4d\xfc\xac\x41\xc2\x16\xd9\xc9\xd0\x2b\xb8\xb9\xdf\x8d\xd4\x3c\xcc\x1d\x89\x8d\x89\x3d\xcf\xdb\x60\xde\xc2\xbb\x63\x45\x9d\x87\x89\xe1\x9b\x2a\x0d\x4c\x0c\xd0\x01\x5c\xc4\x5b\xca\x5d\xbc\xa5\x32\x56\x4b\x91\x59\x9d\x54\x69\x07\x86\x2c\x02\x5e\xfa\x63\xd5\x23\xfc\x63\x5d\xca\xba\x50\x73\x00\x0e\xbf\x4c\x20\x8c\x22\x0e\x33\x70\x88\xcb\xc2\x6e\x39\x7d\x23\x9c\x2c\x12\x7f\xd4\xe9\x8c\xed\x70\xb1\x5c\x8e\x59\x56\x15\x8c\xfe\x61\xc7\x57\xe1\x7e\xd8\x40\xcc\x3e\xdf\xce\x0d\x72\x96\xc2\xc1\x53\xbe\xa9\x48\x32\x78\x38\x5a\x66\x83\xd4\xe6\x22\x7e\x23\x24\xc3\xde\x25\xfb\x76\x83\x78\xf2\x5c\x7b\xc9\xb0\x0c\xf4\xec\xac\xe7\xd1\x9e\xf3\xce\xdf\xb3\x8a\x39\x2c\xb2\x59\x4e\x9a\xb9\x3e\xf1\xc8\x2d\xaf\x7c\x33\xde\xe7\x8a\xac\xbf\x3b\x4d\xe6\x1f\x91\x03\x13\xca\xf2\x4d\x23\xc7\x67\x6c\xca\x8d\xe2\x78\x45\xa0\xac\x24\x40\x48\xf5\x92\xc5\xe2\x28\xb1\xb1\xa1\x03\x1d\x76\xe6\x5d\x9d\x62\x42\xf8\x08\x2b\xb0\x63\x5d\x25\x45\x6d\x9c\x67\x8f\x95\x3b\x1b\x4b\x69\x8a\x42\x4b\x89\x52\x69\xc4\xb0\x51\x6e\xc1\xd0\xb9\xd9\x75\x49\xc3\xfb\x38\x44\xf9\xaf\xc8\x63\xc3\xef\x3f\x4e\xd9\x44\xe4\x4a\x5b\xeb\xaa\xd2\x7b\x0b\x46\x01\xa6\xfc\x94\x33\x49\x49\x91\x2f\x96\xee\x67\x4b\xad\x4a\xf0\x03\xf2\xb5\xd6\xab\xfe\x2f\xfe\x16\x97\xe2\x10\xdf\xbf\x47\xc5\x44\xbe\x56\x8e\x81\x89\x24\xcf\x88\x99\x38\xad\x72\xc3\xa7\xb7\x7b\x2c\xb3\xb3\x87\x4a\x1f\x0c\xeb\x44\xce\x0d\x5f\x36\xb8\x50\x2b\x1b\x1c\x99\x6e\xf7\xac\x2b\x34\x30\xe3\x65\xc7\x7b\xe6\xe7\x14\xd2\x31\xb0\x71\x96\xa4\x58\xe1\xa2\x9f\x0a\x86\x51\xbe\x56\x56\x61\x29\x49\x40\x46\x5a\x0e\x93\x23\xab\x5e\x98\x96\x6b\xed\xf9\xac\x86\x81\xdd\xeb\x53\x92\x77\x3b\x3e\x51\x02\xc1\x12\x38\xff\xbb\xd7\x15\x7b\xdb\x8d\x4e\xa5\xa7\xa2\x9c\x7d\x21\xa3\x54\xcc\xbe\x28\x4d\xc0\x08\xdc\x84\x57\x2c\x83\xf2\x4c\x8d\xe8\xb1\xb7\xbb\xd2\x5d\x74\x40\x88\x09\x2f\x83\x88\x8f\xcb\xbf\x8a\x70\x02\x01\xa5\xb4\x20\xb5\xbc\xf8\x30\x56\xad\xc4\xa3\xdb\x13\xac\xb3\xb3\xed\x30\xee\x15\xa5\x0f\x6f\xa2\xf0\x2d\x09\xb4\x90\x54\xc5\x22\xc7\x77\xde\xaa\xc8\xab\xd6\xb6\x38\xe8\x4a\x8c\xa7\x48\x83\xaf\xf7\x8f\xc7\xbe\xea\xf8\x8f\x3b\xbf\xa5\x3a\x6b\x23\xcb\x66\x0e\xea\xb2\xd9\x6e\xcf\x5e\x0f\x02\x2a\xf8\x84\x9f\x21\x23\x81\x43\x1c\x86\xcf\xd1\xa2\x1d\x9c\x73\x4d\x60\x4a\xf6\x98\x59\x28\x85\x96\xce\x1f\x91\x23\x93\x0f\x5a\x7e\xf9\x69\x4d\xd2\xfb\xaa\x72\x90\x86\x2b\x36\xcd\xc2\x1e\xd0\x23\x48\x7b\x83\xda\x84\xaf\x2b\x21\xb4\x49\xd7\x48\x76\x05\x39\xce\x5b\x63\x0d\xd1\x55\x6d\x18\xb7\x2b\xcd\xb6\x77\x54\x6a\xa2\x05\x01\x60\xd0\x56\x3d\xd4\xd9\xde\x5d\xb4\xdf\x05\x31\xa0\x64\xb5\x77\xac\x2b\x30\xe2\x24\xea\x82\xe8\x61\xba\x0f\x1f\x0d\xe9\xe6\x13\x64\x3b\xe0\xc8\xbd\x4b\x8b\x52\x78\x4c\xb6\x4f\xde\x0b\x2c\xcc\xe8\x4e\x65\x69\x29\xf7\x38\xc7\x4b\x35\x1a\x42\x56\xc4\x4f\x93\x51\x92\x96\x33\x68\x72\x4b\x5d\xc3\x82\x77\x2f\xe7\x53\x5c\x50\x7a\x44\xc1\x5f\xfb\x9a\xf4\xb7\x15\xdb\x76\x2f\xcc\x92\x45\xbb\x86\x04\x19\x42\xad\xd3\x9a\xd6\xa1\x2e\x0d\x29\x71\x57\x54\x04\x38\x56\xc4\xe5\x56\xae\x4f\xfd\x0c\x38\x70\xa0\xbd\x94\xa4\x0c\x71\xc5\x74\xdc\xea\xa8\xc4\x0c\x28\x86\x1d\xe7\x88\xea\x2b\x1b\x84\x51\x38\x42\xa6\xcb\xb9\xb7\x73\x73\x4e\x31\xb5\x21\x92\xe4\x46\x84\x09\xdf\x38\xdc\xea\x7a\xd4\x2f\xaf\x5a\xf8\x5b\x37\x6a\x93\x42\x0d\x7a\x68\x15\x50\xd0\x90\x6b\x1d\xcf\x6e\x79\xad\x01\xa6\x1d\x0e\x47\xd6\x61\x30\xc4\x12\x2a\x42\xdd\xe3\x8d\x10\x86\x6c\x94\x2c\x53\x63\x2e\xe0\x61\x42\x58\x45\xcf\x87\x50\xf3\x56\x47\xc1\xa2\x8f\x55\xb3\x48\x2b\x2f\xf2\xd9\x81\x6c\xd1\x5f\xe8\xd4\xd1\x5f\xb8\xfc\x6d\xbf\x10\x5e\x01\x1d\xa3\x4a\x58\x5a\xc7\x12\x1f\x6a\xc7\x49\x98\xe1\xb0\xc1\xd4\xa0\x16\xc7\xd7\x6a\x66\xa2\xf0\x8d\x22\xec\xb5\x74\x5a\xc5\x57\xbf\xce\x80\x1f\xa7\x32\x48\xcf\x4f\xb4\x9e\x7f\x5e\xb6\x4c\xa7\x52\x97\xa3\x44\xbb\xf4\xb9\x3d\xa3\xe1\x0a\x79\x18\xdb\x38\x9f\x50\x14\x20\xe0\xf9\x44\x42\xe4\x63\x55\x7c\xf9\x45\xc7\x1b\x1d\x1b\x65\x76\xd2\x47\xe9\x3b\xbb\xaa\x27\xe4\x97\x63\x50\xac\xba\xa6\x1e\x87\xdf\xa9\x93\x49\x96\xab\xa9\x8c\x1f\xd9\x3e\xf3\x0f\x8d\x7d\x71\x89\x51\x82\x70\x1b\xae\xd5\x36\x0b\x15\xb0\x93\xb8\xf4\xdc\x70\xba\x22\x74\x7b\x67\xec\x71\x68\xef\xd4\x96\x30\x71\x7f\x17\xbd\x50\x94\xe9\x84\xd1\x96\x66\x11\x63\xb0\x97\xfc\x1b\xb0\x53\x3e\xd5\xf5\xe7\xd8\x20\x8c\x7b\xcc\xcc\xea\x71\x96\x4a\xed\xef\x4e\x2d\x8d\x72\x70\xae\x9d\xa7\xd6\x64\x45\x6a\x79\x9d\x38\x72\x90\xaf\x7c\xd3\xb1\x86\x28\x85\xdd\x24\xcb\xc2\xc5\x30\x0a\x73\xae\x33\x62\x0a\x91\x54\x76\xb2\x79\xba\x41\xcb\x75\x01\xaf\xd7\x84\x24\x0f\xce\xb5\x7b\x36\x48\xe2\x2c\x4f\x0b\xcf\x2e\x23\x94\x07\xe5\x27\xf9\xba\x66\x4f\x88\x85\xdd\x2c\xe1\xb4\x70\x64\xf6\xe5\x54\x08\xc8\xf2\x29\x5f\x7d\x89\x89\xba\x06\x53\xc8\xb6\x9c\x8e\x34\x69\xcf\x57\xa9\xf8\xfb\x2e\x97\x99\xe5\x6b\x7d\xe1\x7f\x91\x12\x50\xa5\xd4\x53\x9f\xeb\x57\xdb\xc3\xb0\x7c\x95\x0c\x21\x0e\x4e\xf3\xb3\x4a\x74\xf2\xac\x7b\x2a\x92\x77\x4e\xa5\xd9\x47\x92\xaa\xe5\xa7\xf8\xba\x16\x60\xcc\xce\x72\x1f\xa6\x4f\x91\xa0\xe7\x0b\x18\x6e\xbe\x1e\x3f\xa7\xbb\x27\x03\x4b\x6c\xc0\x19\xd1\x71\xb0\xd2\x36\xac\xae\x74\x40\x94\xb3\x26\x12\xdc\x8a\x3b\xe4\x73\x15\xb1\x45\x79\x6f\x17\x0c\x0d\x30\xef\xb7\x95\x12\xea\x3d\xc5\x9f\xf2\xdd\xb1\xaf\xcf\x7c\x36\x56\x62\xfb\xa7\x74\x78\xf0\x50\x4b\x16\x25\x69\x12\xe7\xc9\x94\x6e\x42\xde\xd4\xcc\x2f\xd8\xea\x18\x91\xdb\x1d\x55\x93\xdf\x04\x93\xad\x28\x5d\x3e\xa9\xe8\x86\xd3\x30\xe7\xe3\x4c\x10\x00\x7e\x35\x1e\xeb\x78\xa9\x8d\x4c\x34\x55\xa4\x4a\xec\x43\x30\x24\x6c\xa5\xf4\xbe\xdf\xd7\x52\xa2\x44\x9d\x09\x6f\x6b\xb8\xe0\xdb\x8a\x06\x6d\xc5\xc4\x3d\x1b\x93\xb8\x9d\xc7\xf9\x41\x39\x59\x78\xac\x1a\x4e\x9d\xac\x48\x57\xc2\x15\x49\x65\xe8\xc4\xad\xe4\x67\x1b\xce\x54\x82\xbf\x93\x61\x41\x8e\xfe\xc7\xf0\x7c\xf9\xc6\xbd\xed\x4a\x98\x15\x26\x82\x35\x11\x66\x5f\x6f\x38\x91\x12\x96\x44\xd0\xf6\x08\xb5\x74\x38\x8a\xf2\x64\x5b\x10\x66\x4c\x7c\x96\xaf\x5d\xa9\x29\x4e\xd2\x7c\xb0\x2a\x8d\xc8\x42\xff\xd0\x72\x7d\xda\x9f\x29\xaf\x23\xb5\x91\xc9\x6d\x8f\xa0\x80\xa2\x6f\xaf\x1a\x85\x41\xf2\x22\x0a\x2b\x3e\x3b\x52\x3f\xad\xa1\x57\x49\xf2\xd8\x2d\xa5\x3c\x74\x1c\x8b\x9c\x6f\xc6\x55\x91\xf4\xe1\xa4\x47\x69\xb2\xfa\x3f\xdf\x60\x07\xe0\xc4\xfe\x18\x5f\xc1\x37\x0e\x15\x68\x7b\x7d\xf8\x05\xdc\x5b\xa4\x0a\xab\xe7\x9b\x8a\xff\x41\x12\x2f\x59\x9f\x12\x60\x9c\x39\x2c\x95\x80\xce\x7d\x86\x6a\x94\x14\x71\x8f\x29\xcf\x50\x1d\x82\xe6\x03\x02\x59\xc8\x6a\xf1\xbf\xab\x3e\xe8\xe3\x4d\x12\x2e\xb6\x07\x23\x84\x69\x65\xef\x8c\x6f\x9a\xb4\x38\xc3\x38\x4f\xc3\x7e\x11\x32\x26\x06\x7e\x1c\xc8\x57\x50\x54\xbc\x32\x56\xe6\xbe\x5e\xb1\x3b\x38\xd7\xee\xa7\xd6\xe4\x13\x15\x0c\xad\x5f\x64\xff\x4e\xc9\x14\x9d\x54\x68\xed\x30\x48\x5a\x7a\x91\x57\x10\x47\x3e\xcf\x93\x26\x86\x7b\xe0\xb8\xdf\x01\xc1\x37\xf6\xee\x07\x63\x9f\x2e\xf8\x84\xce\x73\xf8\x91\x1f\x34\x34\x88\xbf\xda\x1e\x99\x90\x67\xc3\x91\xd5\x39\x6e\xda\xcd\xf1\x3e\xcf\x36\x91\x3c\xe1\xcb\xfc\xdc\x8d\xec\x78\xe8\xbe\xf2\x4d\x61\x46\x54\xb8\x50\xd6\xcc\x46\xa8\xfa\x9e\x12\x26\xbe\x45\xb3\x05\xf3\x39\xb5\xee\xa3\xc4\x0d\x8d\x21\xfb\x78\xec\x5b\x8d\x4f\x70\xe0\x22\x69\x1a\x1a\x7a\xfe\x11\x64\x30\x30\x95\xb7\x3a\x0a\x3d\xbc\xa9\x74\x38\x4b\x3f\xe0\xff\xe3\xeb\x4f\x63\x24\x39\xd3\xfc\x30\x9c\x9d\x55\x7d\x90\x6c\xce\xf0\x9e\x95\xfe\x1f\x94\xfb\xc7\x58\x94\x60\x6a\x20\xd8\x80\xb1\x5a\xc0\x88\x44\x55\xcd\x72\xba\xa0\x29\x16\xaa\x7b\x9b\x2b\xfa\x0b\xdf\x8c\x7c\x2b\x33\x58\x91\x11\xc9\x38\xaa\xba\xe8\x0f\xb6\x05\x41\x10\x0c\x7d\xb0\x24\xcb\x80\x60\x58\x90\x64\x59\xf2\x5a\xe7\x4a\xda\x63\x66\x77\x95\xb5\x1c\xce\x70\x66\x67\x76\x86\x6c\x92\x33\xbc\x86\xec\x66\xdf\x47\xf5\x7d\x1f\xd5\x46\x3c\xbf\xe7\x79\xdf\x27\x2b\xa2\xfd\x2d\xa2\xbb\x32\x33\x8e\xf7\x7d\xce\xdf\xf3\xfb\x1d\x7a\xdc\x43\xec\x79\x78\x03\xf9\xce\x26\x10\x8e\x42\xe2\x40\xcf\x02\xdd\x83\x1d\x9d\x6a\x9b\x0b\x88\xb4\xba\x7d\x91\x17\xf5\x8d\xb6\x69\xa4\x4e\x78\x60\x37\x09\x09\x2a\xd4\x10\x0a\xb0\x7e\x6a\xac\x4a\x25\xa7\x14\x17\x73\x37\x4b\x8b\x81\xcd\x76\xaa\xb8\x69\x93\x23\x32\xc4\x36\xac\x20\x24\x4b\x85\x12\x6f\xfe\x9f\xb1\x9f\x2c\xb8\xd5\x80\x7e\x6c\x2f\x47\x71\x5c\x59\x75\x57\xfb\xb9\xa4\xe4\xab\xd8\xcf\x0b\xef\x7e\xc3\xf4\x6d\x51\x66\xa2\xe8\x8f\x0c\x97\x55\x4e\xf8\xe4\x21\xb9\x46\x2e\xe5\x5c\x31\x09\xf4\x19\xb1\x09\x4e\xc3\xc4\x8e\x2c\x06\x9d\x90\xb9\xfc\x07\x4d\xb5\x75\x1b\x9f\x11\x7e\x30\xc0\x61\xea\xc4\x62\xa1\x19\x8e\xac\x29\x11\xa6\x09\x76\x4b\xd1\x99\x9c\x6d\x5c\xef\x26\x0b\x07\x70\x88\x30\xfd\x18\x62\xe5\xe3\x9a\xb9\x3f\xf0\x72\xbb\x48\x4b\xd4\x40\xb1\xfa\x4e\xa9\x52\xd0\xf7\x15\x4d\xdc\x97\x3e\x54\x1a\x99\x2c\x13\x13\x27\x28\x86\x09\x7c\x83\x4e\x5c\x8a\x34\x6e\x69\x6c\x18\xeb\x01\xf0\x89\x6a\xae\x98\x18\x3e\x54\x11\x87\x4c\x28\x7b\x6c\x77\x06\x2f\xbc\xd0\x1e\x46\x49\x4a\x01\x80\x07\xd2\x5d\xd3\x4d\xc0\x6b\x81\x8f\x64\xcb\xc4\x24\xd1\x10\x74\xa5\x3e\x0c\x3a\xa7\x44\x82\xcf\x05\x93\x18\xab\x64\x4a\x41\xd4\xbf\xa4\xc5\x88\x97\x79\x43\x61\xa3\xce\x28\x6c\xd4\x5a\x14\x0f\x6c\x3c\x44\xf6\xca\x8e\x8e\xfe\x54\x9c\x9e\x87\xf0\x74\xe3\x34\x5c\x31\x3d\x8b\x9f\x70\x4c\x2f\x8e\xc6\x08\x51\xbc\x70\x9d\x35\x94\xea\x0b\x6b\x86\x1a\x25\x0b\x7a\x22\x3e\xae\x91\x80\x54\x61\xff\xc0\x24\x2b\x79\x3f\x5a\x75\xf1\x24\xfa\x37\xcc\xa2\xce\x27\x81\x26\x24\x35\x99\xfd\xaa\xe2\xd5\xbd\x44\x8f\x00\x36\x65\x37\x95\x4d\x60\x39\xf6\x74\xa8\xa1\x23\x52\x52\xd5\x52\x42\x0e\xc3\x5c\x05\x12\x82\x68\x2e\x74\xc0\xa2\xd1\x5a\x60\xf5\x29\xd7\x04\x9a\x15\x11\x75\x90\xdf\x0b\xb3\x70\x6b\x76\x96\x63\x8b\xb3\x81\x6a\x92\x5d\xd1\x1a\x55\xa7\xc6\x8a\xc3\xf3\xda\x43\x95\xec\xbb\x99\xb5\x3d\xe6\x50\x5f\x74\xa2\x64\x5a\xa1\xac\x89\xd0\x23\xb7\x85\x0f\xc6\x61\xb8\xe1\xf2\xf8\xb8\x16\xc3\xcf\xce\xb6\x4d\x6f\x35\x0d\x55\x0c\x2f\x13\xcf\xbe\x9a\x75\x42\x41\xc7\x13\x33\x04\xf4\x52\x13\x0e\xb8\xcc\xd3\x13\x70\xb3\xce\x35\x2a\x08\x3b\x79\x18\x0e\xd1\xf1\x9d\xe0\x39\x05\x5b\xd8\xfe\xca\x1d\xe6\xc8\x35\x1f\x8f\x2b\xf1\x8e\x15\x9b\xa4\xf9\xc0\xb4\x54\x9b\xe8\x82\x1a\xce\xd7\x65\xbe\xae\xe9\xe7\xe0\x5c\xd6\x55\x1a\x54\x0d\x1e\xef\xf8\x12\xec\xf4\x46\x43\x94\x54\x59\x06\xe6\x9e\x9a\x9f\xe7\x20\xf0\x16\xe2\x0d\x24\x4e\x47\x94\x30\xe0\x23\x8a\xc3\xcb\x1e\x8a\xc0\x8c\x2a\xad\x3f\x4f\x59\xc0\x9d\x20\x2c\xe3\x6b\x4a\xed\xf6\x5a\x20\x3d\x36\xaf\xdc\x38\xa5\x31\x5b\x7f\xa4\x2b\x30\x97\x83\x89\x1c\x5c\xcc\xb9\x5d\x25\x29\x11\x4f\x04\x29\x0f\x1d\x11\xc2\xf4\x86\x5a\x3b\x3f\x6a\x80\x94\xef\x6f\x9b\x21\xb5\x8a\x40\xa2\xed\xdc\x8d\x27\x10\xb9\xa6\x05\x24\xcf\x37\x60\xc6\xdb\xab\x51\x58\x44\x43\x25\xa7\x8a\xd2\xa3\x80\x41\xfc\x6b\xcc\x4d\x9c\x0e\xb9\x9f\xed\x48\xed\xbc\xbc\xb5\x03\x2a\x5b\x93\xdb\x09\x86\xdc\xf7\x02\x95\x8c\xbd\xa7\xa8\x48\x46\x26\xb6\x79\x11\x25\x8c\xad\xf3\xda\x46\xd5\xd7\x8a\xb4\x91\x6f\xeb\x0c\x6d\x2f\x82\xae\x83\xeb\xa8\x73\xc0\xcf\x27\xaa\x0f\x55\x26\x28\x62\x30\xa2\x15\x25\xcb\x6b\x6a\x8c\xe6\x9a\xda\x1f\xe1\x9a\xd1\x1c\x49\xdb\x7c\xaf\x8e\xfb\xd7\x8a\x01\x61\x75\xa4\xab\x4d\x16\x0a\x20\x8b\x7f\x8d\xc7\x2e\x0c\x30\xad\xf9\xf9\x2d\x7a\xf8\xaf\x6e\x5d\x0a\x14\x57\x4f\xa0\xb0\x80\xbf\x80\x59\x11\xec\x22\xbd\x43\xec\x89\xfa\x70\xdd\xe2\xcb\xfb\xdb\x85\x89\xe2\x74\xbb\x8b\x54\xc3\x09\xc7\x55\x0a\xdb\x2b\xbb\x5d\xdb\x9b\xaa\xe2\x2a\xed\x80\x11\x3d\x1e\xd7\xe3\x62\xdf\xd1\x71\x74\x06\x14\x0c\xee\x0f\x7a\xc7\x18\xd5\x7d\x4f\x7b\xcd\x77\x9a\x48\x1f\x7f\xf5\x5b\x7f\x63\xf1\x5b\xdf\x5c\x20\xe0\x23\x6e\xe9\xd1\x8e\xaf\xd2\x7f\x80\xc7\x83\xe2\xd9\x4e\x9e\x50\x73\x4a\x20\xde\x1b\xec\xd8\xf0\x1a\x3f\x3b\xc0\xfd\x21\xfa\x13\xd5\xc5\xc0\x82\x1d\xc6\x98\x92\x4c\x08\x55\xd1\xa6\x9a\x42\xdb\xcf\x65\x85\xdb\x08\x09\xb0\x97\x76\xd7\x24\x15\x66\xe7\xda\x03\x1b\x4f\x74\x59\x59\xa4\x83\x4f\x6a\x60\xd2\xbf\xdc\x8e\xd3\x9c\xc7\x62\x38\x06\xa6\xbd\x22\xf1\x70\x03\x06\xae\x17\xe5\x43\xb3\xee\x84\x2f\xe0\x91\x31\x7f\xe3\xe0\xf4\x8e\x58\xff\xfc\xf8\x57\x1b\xe0\xab\x51\xb2\x9c\x19\xd4\xb6\x4a\x2c\xfe\x2d\x7a\xe9\x5b\xc7\x5d\x1d\xa8\x6f\xe2\x55\x93\x44\x6f\x22\x89\x77\xcc\xfc\x6a\x28\xdf\x2f\x8c\x22\x5d\x73\x32\x1f\x4d\xba\xa7\x3e\xc6\xce\xcc\x30\xca\xec\x9b\xad\xd6\xb7\xe7\x1c\x1f\x81\xe2\xde\xaa\xd7\x1f\xc8\x06\x13\xc5\x33\x7f\x3f\xd7\xca\xd5\x95\x5c\x54\xa3\x1b\x26\xe4\x31\x1b\xe9\xea\x29\x45\xa7\x0b\x35\x1c\xc1\xbe\x85\xf6\xb2\x8d\x0b\x24\xe8\xcc\xf1\x49\x1b\x4b\xf8\x3e\xc5\x1e\x0f\x6d\x61\xba\x69\x1c\xe5\x30\x6a\xcc\xbd\x11\x4c\x10\x71\x6c\x0f\x64\x90\x63\x17\x59\xd4\x2d\x0b\xf7\xb2\x90\xb1\x9e\x52\x84\x06\xd7\x95\xb2\xfd\x97\xaa\x12\x31\xb2\x49\x1e\xa5\x09\x4a\x99\x28\x16\xbf\xaf\x2a\xe4\xef\x93\x98\xdb\x25\x28\xbe\x5d\x52\xc8\xa6\xbc\x30\x19\xc1\x9a\x51\x20\xf8\xee\xd8\x1b\x8a\x73\x94\x12\x09\x9e\xb3\xa1\xa2\xbc\x6c\xe2\x90\xad\xb1\x20\x66\x54\xc4\x75\x45\x75\x5b\x33\x6a\xd2\xf1\xa4\x95\x7b\x72\x0e\xac\x76\x7e\x52\x8a\x28\x1b\x7e\x95\x6c\x21\x32\x9c\x2d\xd8\x42\x38\x13\x16\x78\x50\xd8\x65\x41\x9f\xdc\x44\xed\x1d\xef\xee\xcb\xc0\x0f\xfc\xfd\x1d\x64\xbc\x7c\x12\xf8\x54\xf8\x06\xbd\x3b\x86\x39\x92\x36\x0d\x62\xeb\x0b\x3a\xe4\x9f\xea\x28\xc6\x90\xa3\x63\x35\x9a\x81\x9a\x16\x7e\x0f\x65\x6c\x04\x8d\xef\x35\x2a\x0a\x8f\x52\x59\x91\xdc\x2a\x08\x3c\xe0\xb2\x5e\x82\x75\x98\xc0\x84\x79\x31\x64\x46\x57\x11\x70\xd4\xb1\x1f\x0b\x54\x85\xce\x94\xf7\x73\xc8\x5c\x5f\x88\x39\xd9\x00\xaf\x58\x6c\x9b\xd0\xf4\xec\xd0\xb6\xc8\xda\xe1\xe9\x1e\xa3\x3d\xc9\xc7\xb5\x8d\xb6\x6f\xa1\xdd\x35\x59\x18\x9b\xf5\x09\x99\xe5\x13\x9a\x90\xe7\x32\xa3\x78\x11\x73\xd4\x01\x96\x0b\x0b\xed\x7e\x66\x2a\x27\xd1\x52\x72\x79\x3c\x07\x21\x05\xb0\xa6\x90\x23\x2b\x93\x44\x08\x3e\x1d\x4c\xa7\xfa\x06\x2c\x85\x8f\xf1\x9a\xf0\x6a\x6e\xd4\xa6\xf8\xaa\x5c\x32\xb3\xcb\x99\xcd\x07\x2e\x7c\x84\xf5\x23\x1e\x29\x39\xee\xf8\x84\x21\x5d\x4b\x6c\x6f\x7a\x62\x8e\x49\x15\x56\xe9\x4d\x82\xce\xf6\xe3\xb1\x62\xdf\xfd\xb8\x3e\x49\xb0\xb4\xd8\x1e\x98\xd1\xc8\x32\x90\x1f\x70\x48\xc4\xcc\x7c\xdc\xd8\xd7\x88\xc8\xa0\xc4\x56\x69\x1f\x5f\x54\xf1\x79\xbd\xfd\xb5\x34\xd3\xa6\x80\x90\x7b\x05\x5a\x34\x51\x66\xd4\xe8\x21\x33\x9b\x64\xf0\x9c\x1f\x6a\xea\x0d\xa3\x84\x27\x55\x54\x31\x00\x0c\x26\xd2\xd8\xaa\x2f\xbc\xfd\xed\xcc\xe6\x36\x5b\xc5\x63\xf2\xd5\x77\xd5\xc3\xe6\x21\x3e\x58\x6e\x26\xb0\x14\xf2\xf2\x89\xc1\xde\xd7\xa9\x85\xe3\xcd\x1c\xb3\x04\xca\x48\xbe\x6f\x0c\x98\xb2\x18\x54\x59\x72\x64\xf3\x3d\xd5\x7e\xc7\xef\x5c\xc2\x6a\x47\xbc\xbd\xa8\xd1\xeb\xe0\x4c\xc2\x2e\xdd\xe4\xb5\xc9\x7f\x16\xf8\xc4\xf9\x7b\xb8\x34\x84\x29\x00\x9c\xb0\xae\xb0\x2b\x43\xc7\x65\x31\xb0\xa0\x70\x40\xc3\x8d\x39\x13\xf9\xa4\xc9\x71\x64\x69\x0e\x02\x4f\x58\x92\xeb\x78\x18\xc0\x81\xfd\x12\x37\xa8\x1b\x4d\xc8\xab\xa7\x3b\x0d\x75\xe2\xa1\xc9\xb2\x88\xc8\x1d\x55\x77\xbd\xe5\x59\xdd\x5d\xc7\x34\x2f\x93\x15\x84\x16\x58\x5b\xef\x05\x7e\x84\xe3\x3d\x4d\xfa\x15\x47\xfd\x41\x11\xe3\xf2\x10\x9a\xde\x50\xca\x37\xef\x07\xde\xa3\x33\x4a\x58\xd8\x49\xea\x21\xd8\x42\x3b\x5d\xb5\x19\x17\x22\x1c\x06\xdc\x79\xaf\x4d\x15\x05\x0c\xa2\xb8\x48\x93\x87\x37\x9a\xbd\x8f\x2a\x6c\xc2\xb5\x64\x2e\x27\x4c\xea\x9d\xb7\x1c\xb3\x0b\x17\x6b\x44\x15\xdd\x07\x95\x0b\x33\xfb\x38\x33\x02\xfe\x09\x79\xa2\xe3\xf1\xf7\xd0\xbd\x5b\xb5\x92\xb2\xcb\xac\xd3\x75\x8e\x15\x1c\x53\xb2\x97\x86\xb9\x58\xc7\x09\xcc\x01\x09\x82\x8d\x8e\x07\x86\xd6\x0c\x1f\x07\xbe\xaf\x17\xae\x98\x22\x4d\xd9\x3d\x20\x94\x47\x21\x86\x8f\x27\x11\x23\xcb\xc5\x13\x95\x5f\x46\xe4\xcc\x06\x07\x1b\xf3\x30\x17\x22\x60\x15\xae\xd2\x34\xda\x2d\xed\x23\xdf\x0b\x3c\xf2\xef\x0e\xd5\x87\xb0\x31\xbe\x24\x7c\xaa\xf2\x71\xaf\xfa\x26\x56\x65\x1d\x1d\x00\xd0\xf1\x6d\x4e\x81\xa1\x4d\x54\x54\xc9\xc3\x4a\x0c\x2a\x00\xb2\x6e\x04\xb5\x0e\x5a\x0b\x22\x41\xe7\xf7\x4c\xbd\xcd\x70\x70\x66\xae\x5d\xd8\x6a\x6b\xd9\xde\xb4\x6f\x57\xde\x0e\x14\x44\x05\x32\x21\xd8\x9c\x6f\x8f\x95\x98\xcf\x97\x2e\xac\xcb\xec\x30\x0a\x59\x41\x03\x9e\x5e\x82\x7d\xac\xfd\xdf\xd6\xac\xa3\x20\x06\x92\x0a\xcd\xe3\x6e\x83\xff\x7f\x61\x42\xa4\x5c\x58\x98\xa4\xef\x58\x22\xe1\x5d\x3f\x0f\x14\x73\xdd\xe7\xb5\xba\xc9\x6b\xaf\xb5\xe3\x68\xd9\xe6\xc5\x7a\x6c\x99\x42\x1c\xf6\xf8\x28\xbf\x3a\xd7\xc9\xf5\x92\x8f\x9b\x3a\xe2\xbd\xd7\x34\xe5\xb2\x5c\x66\x49\x24\x91\xb9\x07\xdf\xb8\x39\xdd\x46\xed\xaa\x3c\x8d\xed\x34\x95\xcf\x9d\xe6\xb3\x9b\xa0\x42\x37\x14\x86\xf2\x84\x52\x76\xf9\xe3\x06\xba\xcc\xfd\xdb\x1b\xd3\x6e\xd8\x79\x7e\x5e\x68\x24\xb5\xb3\xb9\xe5\xd6\x47\x5c\xb9\x19\x99\x73\x6f\xea\x13\x3e\x6c\x2b\x66\x65\x2c\x01\x8e\xa3\xed\xad\x9e\x17\x9f\x4c\x14\x69\x07\x29\x66\x5c\x1d\xe7\x9d\xe7\xbf\xab\x99\xaf\xa5\x99\xf6\x28\x8b\xc2\xc8\x66\x53\xbe\xbe\x7d\x16\x19\x36\x32\xd8\x9b\x60\xcd\x94\x74\xd0\x8d\x8f\x45\xab\xa9\x68\x03\xc2\xf8\xdc\x0a\x7c\xed\xfe\x96\x9a\x5c\x2d\xd2\x32\x64\xaa\x8f\x97\x3c\x8e\xd5\x63\x5a\x55\xad\x21\xb3\x51\x3f\x11\x04\x04\xa2\xd7\x77\xe9\x4f\xf9\xb8\x11\x89\x93\xd9\x37\x4a\xc5\x1d\x83\xe7\x8f\x6a\x23\x1f\xeb\x8b\xa9\xd6\x4d\xf5\x03\x73\x07\x5c\x6b\xa1\x32\x0a\x7c\xdc\xc8\xeb\x39\x34\x31\xee\xb3\x91\xb8\xbd\x5e\xdc\x59\x68\x17\x59\x29\x60\x5f\xb9\x84\xea\x85\xc8\xa5\xc9\x33\xcc\xd2\x74\xd9\x5d\x37\xb0\x6d\x98\xf9\xe6\x63\xf7\x87\x6b\xd6\x14\x24\x63\xec\x50\x28\x47\x54\x01\xe2\x6d\xfa\x0c\x96\xda\xde\xce\x04\x95\x17\x19\x29\x6d\x45\xb0\xf3\x6e\x8d\x5b\xaf\x2c\xca\x37\x35\xce\xee\xda\x24\x4c\xcb\xcc\xf4\x99\xed\x87\x69\xaa\xb0\xa8\x85\xb3\xca\x17\xc0\x4d\x58\xbd\x02\xdb\xdb\xe3\xe9\xdb\x8e\x4e\xd0\x7c\x2b\xd4\x17\xae\x09\xb5\x02\x40\xb3\xb0\xd1\xd0\x67\x43\x9e\xb1\x83\xfa\x6c\xa8\xc9\xff\x49\xa0\x28\x00\x77\x75\xdc\xb3\xe3\x34\x59\x57\xee\x78\x9e\x97\x4f\x6a\x61\xf4\xfc\x7c\x3b\x1f\x44\xa3\x75\x51\xe6\x97\x86\x20\xdd\x94\xd4\x02\x7c\x43\xb7\xca\xff\x45\x0c\x42\xfb\x5d\x71\xb5\x4d\x5c\x13\xa3\x28\x4d\xac\xcd\xf8\xaa\xd0\x3d\x65\x63\xc6\x27\x4d\xad\xaf\x6e\x16\x75\xc5\xa6\x4a\xb1\x58\x8d\x05\x9d\x74\x92\x38\x61\x9c\x16\x55\x00\x3f\xad\xf6\xd2\xb3\x94\x87\x21\xaa\xfa\xf3\x1d\x8f\x57\xff\x72\xec\xa1\x05\xe7\x6b\x76\x65\xee\x40\x7b\xd9\xf6\x6c\x46\x4a\x69\x53\x3e\x9d\xbd\xa6\x88\x0b\xc7\xb8\x70\x09\x8f\x24\xd3\xcf\xed\xc8\x20\xb9\x55\x48\x99\x23\x0a\x29\x73\xc4\x19\x09\x53\x14\x26\x1c\x58\xfa\x7e\x94\x8d\x30\xbc\x04\xa4\xe9\x27\x64\x66\xa5\xe0\xa7\xc6\x0b\xb3\x68\x58\xb9\xd0\xd9\x39\xcf\xd3\xe4\xfa\xcf\xe7\x55\x88\xb3\x62\x23\x0e\x71\xb4\x9c\x29\x1e\xc5\x09\x1d\x05\x37\x12\x6f\xf6\xec\xb2\x35\x2c\xae\x80\x25\xfd\x9f\xe8\xf3\x7c\x5c\x6b\xcc\xcf\xce\xb6\x07\x2b\x5f\x07\x10\x43\x68\xae\x77\x7c\xdd\x49\xb3\x29\x9c\xcc\x17\xaa\xda\x9a\x8f\x6c\x18\xd1\x53\x06\x0b\x15\xdc\xd3\x17\x7a\x51\x9f\xd0\x22\xb5\xd2\x59\x91\xf2\xf3\x57\x54\x1b\xbd\x1b\x21\x76\x94\x52\x08\x7d\x8c\x4f\x1a\x97\xe3\x72\x59\xb9\x48\x86\xa2\xb1\xa2\xe1\x58\x07\x85\x97\xf4\xe4\xe2\x9f\x35\x15\x3c\x56\x6d\xbc\x6a\xf9\x29\x89\x93\xd2\xce\xeb\x49\x4d\x6e\x92\xe7\x51\xa8\xb9\x0c\x34\xd9\xcb\x66\xf0\x28\x7f\x6b\x14\xf1\xfe\x10\x82\x6d\xba\x06\xa1\xde\x6e\xd8\x1f\xaf\xa7\x20\x49\x50\x4d\x34\xad\x1e\xe4\x6a\xe0\x59\x5a\x39\xc9\x6a\xd9\x2b\x20\xb7\x63\xf5\x69\xa2\xe8\x19\x9a\x6c\xa5\xa5\xd2\x12\x7e\x15\xb2\x84\x9e\x91\xe2\x56\x94\xf7\xec\xd0\x9a\x24\x95\x1a\x1e\xf7\x14\x14\x43\xd9\x45\x25\x65\xb9\x6c\x42\x16\x7f\xd8\xe5\xbb\x27\x80\x9b\x8b\x1d\xa3\x7b\xe6\x65\x84\xea\x34\xaa\x09\x8f\x6c\x78\xa1\x0a\x88\xcf\xc8\x5a\xf3\xd9\xcb\x1b\xa5\xcd\xab\xfd\xb7\x53\x09\xbe\xff\x5c\xed\x11\xa0\xee\x91\x91\x6f\xea\x56\xd3\x0e\x1a\x17\xe4\xff\x70\x49\x93\xed\x9b\xde\xb4\x37\x01\xc7\x75\x42\xff\x4f\xb5\x60\xff\x55\x1a\x8c\xc5\xf5\x6c\x05\x8f\x7b\xc0\x42\xa4\x79\x81\xce\xe9\xf1\x21\x4d\x60\xfb\x57\xf8\x1d\x8a\xde\xa5\x2f\x42\x9e\x6d\xa2\xf9\xb0\xc9\x72\x64\x63\x30\x5e\xe0\x4d\x7f\xae\x1b\xe6\x9f\x2b\xff\xf3\xba\x4d\x92\x68\x99\xd3\x53\x07\xf8\xab\xde\xe4\xc3\x00\x7f\x04\xe1\x15\x46\xb5\xea\x53\xac\xe9\xa7\x14\x16\xcf\xea\x59\xc1\xd8\x24\x16\x14\xd1\x80\x55\x5e\x42\x54\xc4\xea\xf3\x64\x34\x11\x5c\xff\xab\xf1\xe4\xec\x68\xe5\x3d\x44\xa3\x5e\x48\x25\x6c\x5e\x98\x6e\x1c\x09\x01\x9a\x1f\xd7\xa3\xa7\xc8\x27\xb5\x4a\x0a\x71\x60\xc7\xf1\xb6\x8e\xef\x0f\xc7\xfe\xcd\xfd\x50\x81\x6e\xfa\x99\x20\x65\xb0\x3e\xee\x68\x23\x73\x47\x59\xdb\xa1\x59\xb1\xe5\x08\xd7\x21\x1a\x58\x3e\x06\x39\xae\x41\xc3\xa6\xec\x59\x40\xc4\xa4\x86\x49\xef\x43\x8a\x9b\x92\xdd\xd9\x43\x6f\x94\x51\x1e\xb1\x66\xb7\x8c\x91\xe9\xc2\x55\x4d\xbe\x61\xae\x3d\x1a\xa4\x36\x89\x0e\xb5\x7c\x0e\xc8\xde\x9c\x4f\x5c\x2c\x94\xa7\xf1\xaa\x90\x14\xc1\x77\x5c\x52\x40\xae\x4b\x4d\x74\x04\x69\x18\x96\xac\x78\x2b\xc2\xa1\xfa\x6a\xaa\x1b\x92\x12\x91\xfc\xca\x72\x66\xfa\x51\x6c\x55\xf0\x73\x64\x82\xd3\x4c\xcd\xab\x47\x49\x8f\x0a\x73\x4b\x42\x06\x86\xa8\x06\x76\xf9\xe7\xb4\xe9\xc5\x0b\xef\xe1\x6f\x5f\xd1\xed\x0f\x44\x15\x7c\xac\x38\xef\x4d\x96\xd9\xbc\x98\x9e\xd4\x95\x73\x55\x33\x90\x69\x03\xa2\xc3\x10\x69\xc4\x51\x77\x55\x8b\xcd\xf6\xfb\x34\x81\xc8\x1d\x1f\xfa\x88\xeb\xfe\x78\x50\xd9\x55\x2e\x0c\xf1\x99\xf2\x39\xc3\x17\xba\xe9\xda\x94\xaf\xc6\x5e\xa3\x5b\xc3\xed\xbc\x3b\x81\xf7\xaa\x3d\xf7\x03\x2f\xb7\x63\x6b\xb2\x84\xf6\x2f\xd6\x34\x06\x82\xf9\xb8\x49\xfb\x1b\xbd\x64\x09\x85\x54\x9f\x6a\xce\xdd\xc2\x76\xf7\x70\xe0\x65\x96\x4e\xa3\xdf\x71\x4c\x9c\xae\x66\xf1\x2f\x6b\x66\xbf\x0a\x6f\x73\x53\x60\xc5\xab\xf1\x56\xa1\x44\xd8\x54\x3e\x6d\x94\xa5\xbd\x32\x2c\xbe\xaa\x98\xea\xef\x42\x73\x82\xb5\x82\xe9\x79\xc0\xc8\xfc\x47\x14\xe1\x1c\xc3\xed\xfc\xbc\xa4\xb3\xbf\x33\x56\x6a\x32\x2c\x6d\x29\x13\xc2\xd5\xb2\x01\x72\xe2\xc6\xa4\x18\x70\x95\xa6\xc2\x27\xa2\x6c\x01\x10\xcf\x51\x6a\x50\xe0\x61\x3c\x18\xfb\x1c\x80\x89\xdb\x19\xd9\x0b\x62\x5c\xfe\xf1\x06\x8c\xfa\xfe\xf6\x5a\xd4\xef\xc7\x90\x33\x51\x11\xa7\xf4\x81\xb8\x82\x02\xa7\x51\x37\xce\x84\x8c\x37\x45\x11\xb3\x74\x3e\xfa\xdc\x47\x14\x04\xfa\x88\x5a\x43\xa3\xc8\x86\x76\x97\x9e\x8c\x47\x29\x0a\x35\x8c\x2b\x63\x85\x69\x3e\xa6\x12\x72\x26\x66\x11\x9e\x7b\x65\x0b\xee\xb8\xa2\xa4\x89\xe3\x48\x72\x70\x99\xb2\xf5\x71\xe8\x47\xf8\x10\x78\x0b\xde\x6d\x0a\x2c\x46\x59\x94\x84\xb6\xa5\x95\x65\x54\xd5\xa3\x8e\x52\x9a\x9f\x6f\xf7\x63\x93\x27\x29\xa3\xc4\x01\xdc\xbe\x44\x71\x2c\x1f\x37\xfd\xcc\x30\x45\xed\xd4\xb3\xb8\xd2\xb2\x11\x46\xd7\xaf\x28\x6c\xad\x5d\xce\xe9\x72\x30\xff\x76\x4a\xf1\x3f\x9f\x52\xa9\xc9\xc0\x64\x26\xcf\xa7\xbc\x78\x24\x0b\x63\x0a\x6f\x7f\xcb\x4f\x89\xd6\x65\x3b\x96\x66\xda\x3d\x1b\x47\xab\x7e\xa3\x49\x80\x44\xab\x54\x42\xa7\x87\x55\x22\xd2\xb8\x27\x59\x11\xcb\x9c\x28\xaa\x81\x7f\xdb\x4c\xd4\x1d\xa6\xc3\xa1\x4d\x9c\xaf\xc5\x3e\xbb\x39\xf6\xf8\xf3\x9b\x81\x27\x0d\xe9\xa5\x69\xc6\xd4\x2c\x13\x4a\xa5\x48\x4a\x7e\x36\x41\x4f\xed\x0a\x8a\x66\xd5\x66\x49\x5a\xe6\x8a\xbf\xf8\x2d\x5a\x8f\x7c\xec\xca\x5c\xe1\x72\x11\x72\xf8\x89\x37\xc6\x4e\x8c\x4f\x94\x13\x0b\x4d\x1c\x75\xcb\x6c\x4a\xd3\xba\xfe\x6d\xa5\xec\xc9\xe9\x11\xeb\x9c\x36\xc9\xfb\xf7\xa2\x49\x48\x38\x43\x46\x85\x14\xa6\x81\x6f\xba\x1b\xf5\x72\x3d\x7c\xca\xf3\xf0\x32\x1f\x2d\x17\x57\x44\xfd\x41\x61\x1d\xaf\x2e\x9a\x86\x77\x34\x46\xf2\xce\x43\x8b\xba\x43\x93\x73\xe6\x26\xaa\xed\x2a\x40\xfc\xcf\x4d\x4a\xc0\xb9\xcd\x56\x2b\x5f\x48\xbf\x85\xa4\xfc\x63\x7a\x0b\x7c\xfc\x90\x6e\x53\x5e\x64\x91\x1f\x0c\x11\x8d\x6c\xff\xf6\x6e\x28\xb5\xa8\x68\x38\x4a\x49\x56\xad\xe5\x74\x6a\x80\x07\xe2\xe3\xc6\xba\x29\xba\xfc\xb2\xff\xb1\x11\xc0\xe3\x8f\x58\xa0\x45\xb0\x36\xd1\x17\x91\x24\x61\x39\x4e\x53\xc0\x4c\xf1\xca\x4f\x63\xf9\x72\xb1\x41\x13\xa2\x1e\x9f\x28\x42\x87\x65\xf1\x55\x3f\x95\x74\x2c\x50\xee\xe3\x04\x61\x21\xd0\x49\xe5\x38\x0b\x85\xc4\x3f\xd1\xf0\x0b\xae\x7c\x08\x0d\x31\xbd\x58\x51\xe6\xf4\xe4\x20\x27\x10\x58\xc2\x02\x9d\x52\x13\xaa\x4c\x51\x81\xff\xf8\x5e\x95\xdc\x6f\x5d\x22\x18\x1d\xd2\x8f\x3f\x54\x7a\x36\x77\xc8\x49\x48\xc1\xe1\x29\x57\x9b\x16\x01\x15\x3c\x30\x21\x67\xa9\x3e\x87\x8d\xf6\xd8\x84\x9a\xca\x76\x87\xfe\x62\xbb\x6b\xc2\x95\xc9\xf7\x79\x0d\x6b\x8e\x4f\x54\x4f\xab\x0a\xb9\x46\xd5\xf2\xf7\x6c\x47\x97\x02\x3f\x5c\x70\x69\xfc\x8c\x02\x15\x97\xf9\xa0\xfa\x6a\x18\x34\xb8\xed\xcb\x81\x12\xdd\xf8\x74\xec\x7b\x94\xc7\xb5\xd8\xac\x09\x57\x08\x96\xeb\x24\xb4\xab\xcf\x08\x73\x6e\x75\x2f\x88\x95\xfe\x91\x2e\xc6\x36\xc1\xb1\x16\xdb\xd6\x14\x42\xe1\xd9\xd4\xc2\xf1\x78\xac\x6e\x96\x12\x51\x29\xac\x82\x10\x02\xd2\x12\x12\x46\xc0\xed\xfb\x9a\x34\xe1\x0c\x0f\xb6\x20\xad\xba\x89\x2b\xe2\x93\x66\xf1\x47\x93\x79\x1e\x1e\x98\x0c\x96\x30\xe5\x93\xce\xf6\x1d\xfe\xed\xb9\x76\x94\xd8\xd5\xa8\x4a\x2e\xd0\x81\x70\xdc\x65\x8a\x15\xed\x79\xef\x45\xd2\xac\x88\xc2\x32\x2e\xca\xcc\xc4\x2d\xc5\x73\x72\x8a\x6b\x04\x42\x77\xe6\x5f\x6b\xd7\x64\x45\x6c\x8b\x62\x67\xf5\x8d\x9e\x50\xcf\x23\xfb\x01\x06\x77\xb4\x7b\x4b\x32\xa0\xfc\x31\x86\xb0\xe5\x23\x5a\x27\x2e\x4e\x93\x48\x7e\x5f\xea\xbc\x8a\xa4\xff\x5d\xe5\x1f\x13\x9b\x0b\xa4\x80\x73\x6a\xa5\x2a\xff\x91\x4b\xd7\xcb\x24\x4a\x0a\x9b\x51\x37\x18\xcf\x4f\xfa\x57\x2d\xcf\xe4\xaa\xa2\xbc\xbc\xcc\x96\x4d\xc8\x06\x4e\xba\xff\x2d\xa7\xc8\x74\xcc\x39\x8f\xb2\x30\x83\xa9\xd6\x37\x7f\xcb\x31\x68\xfa\xf1\xa4\x0f\x61\x46\x59\x8b\x59\x7d\xf9\xeb\x65\x5e\x44\xcb\xeb\x3b\x95\xa6\xe3\x47\x34\xf3\x8c\x8a\xfa\x1f\xc0\x2a\xf0\x49\xa0\x60\xfb\x0a\x97\xec\xd5\x72\x88\x69\x89\x1f\x01\x17\x8c\x26\xab\x47\x4d\x32\xe5\x79\x68\xb2\x49\xda\xf6\xb1\xf2\xfb\xf5\x91\x92\xb9\x03\xed\x2a\xa9\x59\x8d\x30\x3c\x34\x3f\xcf\x1d\xb0\x5d\x1b\x7e\xb6\x67\x57\xc7\x15\x25\x79\x05\x4d\x6b\x46\x2c\xc5\xf1\xb7\xbb\xe3\xdf\xd1\x1d\x9d\xc1\xff\x5c\xb3\x0d\xd9\x64\x7d\x67\x65\xcd\x24\x3b\xa8\x16\x18\x6c\xdd\xa7\xf4\x2a\x50\x92\xf9\x70\xec\x13\xb7\xdf\x27\xe3\x28\x99\x85\x0f\x8e\xe2\x34\xe9\xa5\xc9\x93\x7e\xd8\xeb\xd8\x58\x01\x6c\x5b\x1d\xc5\xba\x75\x15\x95\x17\x47\x36\xe0\xee\xee\xef\x23\xc8\xe7\x8f\x6c\x28\x12\x8a\xf7\xc8\xd6\x4b\xc4\x84\x7d\x82\x6d\xcc\x96\x9b\xbf\x99\x2e\x6e\xa2\x0c\x05\xf3\xc3\xee\x06\x8b\x10\x33\x7c\x02\x6a\xa3\xf7\xc8\x95\x9f\x40\xc3\xdd\x9a\xea\x72\x26\x8e\xed\x7a\xae\x5b\xad\xfc\x33\x22\xdd\xf6\x55\x35\x4f\xb2\x1c\x97\x87\x5a\x2d\x2d\x25\xb2\x20\x21\xe6\xb9\x09\xa4\xe5\x1b\xa5\x05\x5b\x16\xa2\x88\x4b\x4a\xbc\xe8\x1a\x69\x12\x82\x7e\xef\xe7\x63\xaf\x10\x8f\xfe\x15\x5e\xc3\xef\xd2\xc2\x46\x67\xf1\xfb\x81\x16\x3a\xf7\x04\x5e\xd1\xaa\x4d\xc0\xd4\xe9\x60\x19\x55\xaa\x03\xef\x79\x56\x51\xc0\x94\x7f\x8e\xca\x58\x42\xaf\x4b\x8f\x8d\x05\x9f\x37\x5a\xdf\x9e\x73\xb0\x55\x2d\x3e\x9e\x80\xa6\x90\x75\x10\xc7\x5e\x15\xf8\xc7\xaa\x5a\x64\x93\xd5\x88\xa0\x25\x13\x1a\xa2\xf4\xf2\x84\x22\x7d\xfb\x8e\x58\x9a\x69\x9b\x30\x2c\x33\x53\xd0\x6c\xf9\xc1\x19\x9f\xbb\xbb\x40\xfe\x42\xb0\x5d\x86\xe3\xc5\xb6\xc9\x57\x5a\x1e\x42\x8f\x06\xa5\x94\x0b\x9b\x20\x53\x85\xc9\x60\x5b\xb1\xf2\xee\x13\x44\x4b\x30\x7c\xd5\xbb\xe0\x62\x1f\x3d\x73\x27\x28\xe9\x69\x4f\x7f\xd6\xc0\xcc\xb5\xbf\x9d\x17\x65\xb8\x82\xfa\x07\x4f\xf3\xe2\x31\x3b\x7e\x0c\x05\xee\x53\x13\xdc\x79\x49\xba\x8e\xb6\x37\xe5\x9b\x7c\x3f\x50\x58\xbc\x2b\xb4\x0a\xb8\xf4\x1e\x3c\xab\x19\x4d\x07\x76\x68\x8a\x28\x04\xa4\x85\x61\x25\x74\xcd\x02\x31\x51\x6d\x16\x13\x65\x9c\xbd\x37\x15\x55\xb7\xdf\xcf\xaf\xb7\xd7\xac\xf1\xdd\x3e\x19\xf8\xf3\x90\x8a\x4f\x5c\x0d\xc7\xc6\x65\x4e\xdc\x2b\xbe\xa9\x4d\x5f\x2d\x0d\xee\xa6\xbc\x78\x60\x92\x5e\xb5\x32\xaa\xc5\x80\x52\xed\x26\xa2\x0a\x3e\x51\xcb\x28\x8c\x8a\xe8\x4d\x9b\xe4\xd3\xbe\xc4\x7b\x44\x0b\x64\x1e\xa1\xcd\x20\x43\x1c\xb4\xc8\x65\xba\xc3\xdf\x7d\x9e\x96\xfd\x41\x01\xfd\x1d\x36\x43\x44\x5d\x22\x04\xd3\x6a\xbc\x66\x2b\xd0\xca\x58\xb7\x75\x6d\xfb\x6e\x43\x7c\xbc\xd8\xce\xd7\xac\x1a\x56\x80\xeb\x3d\xa6\x46\x65\x8f\xb9\xc2\x79\xd7\x1a\x61\x1a\x60\x12\xed\x09\x42\x6d\xd7\xce\x89\xb2\x35\xb3\x2e\x92\x8d\x30\x34\xef\x07\x0a\xfd\xf6\x7e\x53\x4e\x53\x99\xf6\x29\x45\xbe\x0e\x8a\x33\x18\x8c\xbb\x04\x5a\x04\xbc\xb9\xfe\x42\x48\xa3\xe4\x8d\x32\x2d\x4c\x4b\x0d\x52\xa0\x5e\xc6\xc7\x6a\x6c\xce\xbc\x59\xd8\x50\x39\x39\x16\x65\x95\x27\xe4\xeb\x87\x43\x9b\x26\x76\xba\x7a\xca\x0c\x80\xa1\x2f\xa4\x38\xe5\xa3\x27\xa9\x83\x86\x48\xee\xc1\x58\xd5\x54\xea\xf5\xaa\xf9\xf9\x76\x1e\x66\x65\x11\x55\xb7\xa7\x86\xef\xc7\x7e\x48\x08\xe3\xd6\x6c\xf8\x1b\x05\x34\x1d\x4b\xb7\xa6\xb9\xbd\xc8\xf1\x17\x9f\xd5\x9a\xd2\xfb\x16\xa8\x20\x8d\xbe\x9d\x53\x4d\x77\x37\xce\x45\x0c\x9c\x3c\x68\x42\x4f\xd8\x43\x23\x5b\xa5\x02\x76\x4a\x8d\xeb\x21\x9a\x41\x09\x01\x38\x51\x14\x14\x8f\x56\x71\x15\x7d\xde\x69\x5c\x2d\x2c\x2c\xfe\x79\x45\x7b\xfb\xf6\x58\x55\x00\xf6\x76\x68\xa9\xa3\x22\x7d\x07\x65\x30\x6c\xe6\x53\x44\x47\x87\x70\xe9\xbe\x9e\xed\xf9\x9b\x8a\x7c\x82\xc9\x79\xd1\x2c\x06\x3b\x11\x2e\xef\x31\xf2\x06\x82\x19\xf0\x4d\x81\x93\x64\x85\x60\x82\xef\x91\x3a\x1f\x0a\x3e\xa7\x91\xca\x39\x51\x95\xa5\x45\x47\x72\x48\xa1\x28\x90\x5e\xf7\xc7\x4a\x02\xea\x16\xe5\x53\x98\x1d\x79\x92\x5a\x25\x32\x64\xad\x81\x73\xb7\xc6\x13\x00\x43\x0a\xdf\xf0\x65\x7b\x3b\x7e\xc7\xdf\xa4\xa2\x90\x50\xa2\x92\x3d\x91\xea\x15\x6d\x76\xb8\xf6\xf7\x94\x3d\x89\x86\xa3\x32\xce\xd1\xad\x5b\x9c\xe0\xcb\xc0\xe6\x42\xeb\x14\x9f\x3b\x5a\xa3\x7d\x27\xc1\xde\x28\xf5\x3a\x7a\x4a\x3a\x1b\x1d\x1d\xc0\x97\x78\x18\x8b\x57\x18\x10\x09\x9f\x34\x71\x7a\xc6\x76\xb9\x88\x72\xd4\xd9\x79\x02\x4c\x19\xe6\xbb\x35\xf7\x45\x1f\x31\x19\xc3\x3c\x61\x8b\x2f\x20\x06\xe0\x93\xf1\x73\xfe\x5e\x13\xc2\xec\x46\x49\x3f\x5e\x9f\x56\xb8\xd0\xdf\xa6\xe9\x5c\xac\xaa\x23\x8a\x8c\xe7\xc8\xd8\xa7\x30\xbf\xdd\xd4\xcc\x16\x06\x58\x2e\x6d\x34\xe1\xad\x9f\x52\x5a\x13\xb9\xc9\x0b\x9b\x4d\x7b\x3c\xf2\x75\x2c\x54\x87\xf0\xf0\x94\x3e\xc8\x04\x50\x51\xa8\x0f\xae\xbe\xd8\xee\x66\x76\xcd\x19\x59\x5c\x21\xd8\x98\xf8\x58\x35\x2e\xc8\x6f\x4d\x2b\x59\xfe\xa7\xc8\xda\x20\xbe\x82\x94\x2b\x96\xd8\x1d\x8d\xad\x6c\x54\xac\xf1\x2d\x24\xce\x70\xd0\x00\x02\x37\x06\x1f\x6f\x78\xd8\xcb\x30\xcd\xa0\x17\xbe\xa4\xbc\xec\xbe\x05\x3d\x1a\xc5\x11\xe0\xa8\x04\x89\x36\xe2\xed\xfb\x28\x04\x63\x6b\x3e\x43\x8a\x93\x1c\x07\x68\x31\x87\xef\x06\x4a\xbd\x7e\x27\xc6\xa7\xb0\x23\x1e\x47\xd1\x42\x0b\x8d\xc0\x4a\x3e\x41\xa9\x04\x16\xf3\xdf\xd3\xfa\xa1\xcf\x75\xbc\x7a\xc4\x19\x3d\x9b\xf0\x79\x53\xc3\x20\x1c\xd8\x21\xe4\x4c\xdc\xcc\x28\x86\xdc\x04\xd6\xae\x75\xc2\xaa\x24\x85\x08\x26\xaa\xeb\x93\x12\x6f\x6b\xe1\xe1\xaa\xe2\xd4\x24\xb4\x99\x23\x76\x60\x16\x50\x45\x05\xae\x9b\xbe\x66\x68\x93\xde\xd0\x26\x45\x3e\x45\xdb\x5d\xd6\x92\xef\xd8\x43\xde\x50\x10\xc5\xcf\x28\x71\x68\x29\x8f\xd2\x8a\x14\x19\x71\x7a\xf4\xcc\x36\x1a\xa8\x09\x1b\xc0\xd6\x90\x74\x5c\x56\x5a\xd6\xa1\xcd\x73\xc6\x65\x38\x92\x8f\x5f\x2a\x0e\xd6\x5f\xd6\x16\xd2\xd2\x4c\x3b\x34\xa3\xa8\x00\x8f\x19\x16\x92\x4c\xe0\xf9\x95\x59\x67\x9d\x7b\xed\xb5\x76\x94\x38\xc2\x2f\xd4\x23\x4e\x29\x49\xb7\x3a\x5f\xd6\x81\x97\xdb\xe9\xf2\x72\x3e\x48\x59\x44\x0a\xd5\xfa\x5b\x8a\xc4\x6f\x4b\x71\x43\x03\x93\x85\xec\xed\x5f\x35\x51\x33\xd8\x43\x61\x5c\x7a\x4a\x4c\x46\xb8\xd2\x9b\x17\xb4\xab\xa4\xa7\xbd\x28\x2f\x4c\x12\xf2\x70\x2e\xae\xef\x98\x1a\xce\x3d\xa3\xe4\x26\xde\x51\xeb\xa5\xf2\x91\x21\x85\x4f\x1a\x61\x7a\x5b\x61\xd0\x6f\x6b\xa6\xda\xea\xce\x72\x52\xdf\x45\x1f\xf8\x26\x97\x42\xb8\xf5\x07\xa3\x0f\x96\xb2\xcd\x40\xb5\x5a\xce\xc2\x1b\x4d\xa8\xec\xc3\x6b\xdc\x9e\xc8\xcc\xcc\xaa\x7d\xd6\x0f\xf4\xfd\xed\xe7\x3b\x5e\x7a\x64\xca\x13\x0a\x7d\xfb\x16\x65\x69\xd8\xaf\xac\xe3\xea\x5a\xd1\x95\xa3\xc2\x42\x7c\x8e\xcc\x04\xae\xe6\x01\x61\xc1\x84\x4e\x41\x4f\x9f\x1e\x47\x62\x80\x60\x68\xcf\x06\xdd\x81\xc2\xc8\xbe\xea\xdb\x50\xfb\x98\x68\xe2\xbf\x78\x66\x43\x51\xde\xdd\xa4\xe4\x08\x7b\xff\x3e\xf4\xd0\x1c\x8d\x97\x2f\x6a\x5d\x45\xaa\x2d\xde\xbf\xb2\xff\xe8\x87\x9d\xa4\x2a\x26\x9e\x05\x11\x2a\xba\x1a\x54\x21\x43\xf1\x58\x21\x0f\xc8\x39\xf0\xf1\x04\x2a\x0d\x19\x1b\xa2\x79\xb8\x81\xff\x15\x2f\x82\x4f\x9a\xc2\xd5\x2c\x0a\xc1\x79\x87\x87\xf0\xae\x16\xee\x78\x17\x4a\x8b\x28\x33\x44\x5d\x82\x4f\xbd\xc9\x55\x6b\x79\xb7\xfe\xc9\x6e\x36\x4d\x7f\x8c\xb2\x74\x39\x8a\xa1\xa0\x08\xea\x85\xff\x83\x9e\x1f\x57\x92\x55\x92\x77\xb2\x36\xf8\x2d\x25\xfc\x30\x1d\x8e\x4c\x66\xa7\xaa\x57\x2d\x11\x46\xf5\x08\xf0\x0c\x59\xa0\x14\x51\xd3\x07\xf5\x5e\xfb\x6c\xdb\xc4\x61\x3a\x48\x61\x34\x5d\xcb\xda\xcd\x4d\xd5\x39\xd2\xe6\x0e\xb4\x69\x74\x24\x5e\x27\xf9\x59\xe1\xd5\x6d\x69\xc5\x5c\x17\x19\xbc\xaf\x8a\xa5\x0e\xc2\xe1\xd8\xe1\xf9\xe2\x84\x8d\x57\xb1\x87\x46\xb1\x25\x2a\xc4\x2a\x50\x13\x25\x4c\xa5\x8a\xe9\xc0\x13\x26\x84\x9a\x5a\x64\xf3\x9d\x13\xa4\x38\x58\xba\x30\xcb\xac\xb5\x0a\x27\x76\x5b\x87\x97\x93\x34\x04\x6e\x7a\xb6\xd7\x97\x71\x5e\xac\x23\x5e\xa2\x92\xb0\xd1\x46\x90\x66\xf9\xf6\xf0\xe3\xe0\x4c\xdb\x14\x45\x66\x42\x28\x0a\x1d\xf4\x94\x07\x3a\xac\xf5\x2e\xd6\xda\x95\xc7\xaa\x38\x95\x27\x44\xe9\xd5\x61\xc5\x5c\x55\xae\xe5\x67\x81\x1a\xbe\x79\x44\x73\x44\xc3\x6a\xd2\x8a\x3c\xf0\x1c\xf9\x64\x17\x76\x2c\xcd\x38\xd5\x29\x7a\x36\x40\x91\x6d\x2a\xae\xe0\xdd\x4f\xd6\x86\xb8\x2b\x37\xd7\x4f\xd3\x5e\x62\x73\x24\xec\x1c\x40\x07\x4a\x16\xe6\xb4\xaa\xd5\x25\xdf\x18\x7e\x43\x71\x94\x5d\xd4\x5c\x4a\x17\x27\x90\xc8\x51\x1c\x3f\xaf\x58\x3b\xb7\xfc\xd4\xe5\x3f\x79\x6e\xa3\x8a\x8f\x85\xb7\x01\xef\x4e\x56\x05\x6d\x51\xa1\x17\x21\x03\x8f\xc7\x73\x5f\x57\x2a\xfe\x39\xde\x10\x0c\x1a\xab\xd2\xc1\xb5\xbe\x45\x63\xc0\xcc\xb5\xe2\xc0\x46\xb3\x73\xd2\xf0\xa1\x07\x8e\x40\x6b\x0f\xb1\x75\xbb\xee\xdc\x2b\x8e\x8a\xf2\x2c\x19\x1f\x56\x2a\xa0\xe4\x01\x71\x0f\x24\x5f\xd5\x5c\xa6\x90\x79\xec\x80\xe5\x43\x78\xfd\x08\x75\x9e\x90\x21\x5c\x19\x57\xef\x1a\x3e\xee\xa3\x86\xa2\xcf\x62\x7b\x68\xa2\x78\x4a\xb9\x84\x6b\xf4\x98\x30\x0c\xf6\xc9\x58\x89\x65\x9e\x53\x71\x5a\xb7\x5c\x7f\x6c\xa2\x49\x4f\x5f\x40\x4b\xf4\xc7\x4f\x76\xbc\xd6\xdd\x34\xe5\x31\xc2\x12\x4a\x17\x8c\xba\xd1\x23\xa4\xaa\x8b\x17\xf0\x3c\xf9\x03\x14\x16\x2e\xab\x12\xeb\x2f\xf0\xc0\x59\xeb\x14\xef\x45\x52\x54\x1f\x5c\xf6\xd2\x42\xc6\x37\x5f\x75\x4d\x10\x35\x42\xf8\xb1\x22\x27\xbd\xd1\x54\x5a\xa3\xf8\x27\x0b\x85\x83\xd1\xe1\xe2\x97\x9c\xaa\x94\xeb\x7c\xe6\x6b\xd6\x52\xe7\x13\x93\x04\x4e\x62\xcb\xb7\xd9\xbe\xa4\xdd\x8e\x42\xe1\xbf\xd7\xc3\x31\x9f\x2b\x0d\x08\xc7\xde\xd8\xf2\xc5\xcb\x0f\x95\xb9\xf9\xb0\x81\x08\x79\x7f\xbb\x10\x20\x38\xfe\xe8\xbe\x52\xed\xbd\xef\xae\xd0\xe4\xb9\x89\x62\x62\x87\x3b\x28\xca\x94\x7f\x42\x4f\x80\x8f\x9b\xd8\x28\x2c\xe5\x23\x09\x35\xc0\x10\xd8\x61\x26\x0a\xaf\x6a\xba\xa3\x90\x36\x77\xd5\x04\x6c\x68\x93\xc2\x66\xf9\x6e\xef\x67\x2f\x2a\xd9\x5a\x34\x69\x91\xda\xfe\x0b\x72\x32\x22\xf2\x47\xcf\x0e\x21\xc7\x69\x4d\xc6\x74\x5f\xe9\x32\xff\xb7\xb7\x26\x74\x73\xfb\x69\xac\x09\x36\x4e\x28\xe2\xf3\x13\xaa\x04\x1b\x25\xcc\x09\x25\x84\x2a\xf4\x02\xf8\x44\x29\xf6\x0c\x6c\xd6\x8d\x42\x8a\x20\x3d\x5c\x73\x12\x80\xd0\xc0\x6e\x33\xb0\x06\x78\x40\x98\xce\xab\x0a\xe8\x70\x55\x19\xd8\xbf\xf1\xf2\x6f\x62\xaa\x13\x1e\x89\x89\x96\xf8\xa4\x11\x0a\x38\x32\x59\x91\x78\x2e\x09\xc4\x77\xf7\xf5\x0c\xe9\x16\x1e\x0d\x3f\x4d\xdf\x54\x2d\x33\x6b\xca\x30\x33\x85\x5a\xba\x93\x0a\xfe\x0e\x79\x60\x32\xbb\xc7\xff\xd1\x1e\xe4\x49\xd8\x80\xad\x0d\x45\x72\x79\x52\xa9\xa0\x7f\x85\xa9\x29\x84\xc2\x53\xcb\xb7\xf9\x9c\x67\x4f\x67\x62\x98\x54\x9a\x45\xcb\xa6\x9b\x45\xe1\xb4\x47\x09\xb1\x91\x12\x46\xa6\x09\x2e\xa2\x96\x23\x0a\x7a\xa6\xf3\xd0\xc0\xe3\x4d\x9b\xc7\x66\x4d\xe9\x7c\x9c\xd5\x8f\xe5\xac\xea\xe8\x17\x65\x96\xa4\xab\x36\x9b\x52\x42\x71\x77\xb1\x4f\x51\x7d\x84\xd2\x1f\x1c\xc3\x67\x13\x9d\xf6\x81\xc9\x9f\xf5\xb5\xe2\xe3\x14\x9f\x3a\x3d\x20\x4f\xf9\x36\xb5\xe1\x69\x2b\xaf\xea\xe6\xc9\x57\x36\x54\xf9\xf6\x3e\x2c\x11\x8a\x3a\xb7\x61\xc2\xe0\xaa\x40\x2c\x8b\x2b\xff\x39\x99\x5c\x58\xcc\x4b\xa8\xd5\x4a\xf2\xed\x55\x2a\xae\x92\x13\xe1\x5a\x16\x3a\x47\x00\x17\xdc\xd4\xd3\x55\xc7\x90\x32\xa3\xf7\xf5\xab\x54\x11\x42\x31\xf0\x87\x81\xa6\x21\x53\x82\x5d\xbb\x41\x00\x83\x45\xf7\x7f\xba\xa5\x55\x26\x3d\x9b\x85\xd5\x33\xa4\x98\x48\x43\x00\x65\x0a\xb7\x5e\xf5\x5d\xa8\xd2\xac\xc8\x99\x52\x07\xbe\x5c\x5a\x7c\x28\xf8\x72\x61\xa1\x9d\x45\xfd\xd2\x96\x99\x42\x3b\x7e\x46\xe5\x2b\xe9\xea\x3e\x1d\x79\xb5\x00\x6b\x42\xcc\x10\x57\x37\x03\x57\x7c\x2b\xa8\x5e\x11\x1f\x4f\xc2\x94\x7a\xd5\x0a\xa8\xde\x06\x0a\x1e\x70\x9f\x8e\x2c\xb7\x7a\x19\x78\xb1\xa7\xdc\xa2\x0d\xcd\xaa\x35\x85\x9a\x85\xc5\x00\x1d\x1f\x2b\x0f\x68\x5e\x8f\xe8\xaf\x44\x49\x8c\x96\x06\x9f\x28\x53\xbf\x96\xd9\xbc\x20\xd4\x6c\xf5\x35\x42\x0c\x53\x7d\x90\x8f\x1b\x06\xbc\x16\xdb\xa6\x9f\x59\x3b\x14\x76\x30\xbc\xb3\xd3\x7a\xbc\xe4\x74\x03\xea\xa5\x9d\x66\x51\x3f\x4a\x54\xd1\x5d\x88\x98\xfd\x86\x39\xa9\x55\x34\x97\xab\x44\xc0\xf5\xb8\x76\x74\x3c\x00\x10\x31\x1e\x46\xe3\x8e\x37\x0a\x6b\xe7\xa3\xcc\x71\x26\xb8\xc1\x5d\x07\x05\x46\xe5\x19\x9b\xe3\x84\xf7\x4d\xfd\x7e\x66\x56\x4d\x01\xe0\x1f\xda\x14\xd7\xf4\x8c\x32\xea\x47\x42\x50\xd1\x30\x0c\x35\xca\xd2\x12\xf1\xbc\x28\x06\xb4\x1c\xcb\x84\xe7\x6d\x35\xbd\x5e\x66\x73\x47\xbd\x2b\x9b\xcf\xa3\xa4\xff\xf7\xb1\x32\xf5\xb7\x15\xb1\x57\xbe\x9e\xf4\x98\xdf\xbc\xa5\xe4\x79\x91\xbc\x4a\x92\xea\x43\x8f\x94\x34\x02\xf3\x9d\x2d\xc7\x55\xf8\xff\xdb\xf0\x44\xf8\x8f\xa0\x14\xed\x34\x4f\x04\x74\xb8\xfb\x99\x8e\x9f\xff\x3a\x3f\xe1\xe6\xa2\x2c\xc5\x14\x25\xb6\x18\x00\xf3\xc2\x40\xe5\x0d\xee\x1d\x6a\xcc\x21\xc5\x3a\x5d\x63\x2c\x59\x7c\x79\x7f\x7b\x84\x41\x08\x35\xed\xec\x46\x9f\xfd\xb4\xb2\x49\xfa\x3b\x95\x2c\xcb\x2e\x88\xcd\x88\x00\x52\x75\x23\x9c\x0a\x6b\x96\x9a\xcf\xe9\x39\x4a\x5b\xb4\x8e\x6e\x6d\x17\x69\x4a\xf1\xe4\x4b\x5b\x97\xd4\x64\xd8\x9d\xc0\x23\x91\x8f\xfb\xa9\xcf\x68\xd5\xee\xf1\xb5\xfe\xcb\x0a\xba\x0c\xb6\x77\x2c\xa7\x47\x37\x14\xbb\x2f\x58\xbd\xf0\xad\x6f\xe3\xca\x68\x01\x7e\xf2\x4c\xc7\x97\xde\xf6\xc0\xa8\xc1\x40\x6e\xba\x95\x61\xc3\x34\x49\x87\x91\x4c\x82\x2a\xd4\xe5\xfe\x09\xc9\x58\x24\x75\x3f\xd7\x1a\xcb\xf5\x88\x60\x76\xd6\x11\x42\xce\xb1\x1d\xb9\x0c\xeb\xcb\x27\x8d\x2d\x3e\x7b\x28\xb4\xa3\x62\xda\x17\x4a\x4f\x22\x53\x90\xa4\xbd\x7a\x02\x08\xe3\x4f\x92\x91\x06\x08\xa4\xd5\x51\xb2\x66\x83\x28\xb6\x5f\xa1\x9d\x87\x1e\xf6\x8e\x0e\x7d\x03\x98\xa0\x2e\x2b\xbd\xa1\x2b\x08\xb5\x26\xfa\x32\x8c\xd8\x84\xf5\x43\x69\xfc\x4f\xe1\x18\xd1\x8e\xfa\x84\xae\x00\xde\xe0\xee\x04\x9d\x04\xe2\x0a\xa7\xfe\xf7\xcd\xdf\xe2\x1b\xf8\x3d\x7a\xb5\x4e\x86\x42\x49\x8e\xa9\x99\xda\x7f\x8a\x81\x26\x94\x83\x41\x1a\xcd\xc5\x4a\x2f\xd8\x7a\x53\xf5\x51\xb9\xaf\x8c\x64\xf4\x8b\xa6\x72\x7f\x18\x5b\x43\xe5\xf6\xad\x23\x94\x71\x1d\x51\x7e\xa2\x6b\xe2\x22\x1a\xa6\x19\x2a\x84\x8e\xe1\x4b\x89\x01\x6b\x8f\x9f\xbc\x50\x3c\xad\x71\x3a\xb4\x0a\x61\x9e\xde\xa5\x44\x0c\xab\x73\x7a\x63\xb2\x63\xef\x0b\x33\x47\x02\x9f\x26\x3d\xf1\x0c\xb6\x3d\xe0\x43\x37\x50\xd8\x17\xe2\xaa\x6a\xe5\xc2\x5a\xde\x43\x74\xc7\x4b\x20\xf0\xe1\x71\x6b\xc3\x6f\xbc\xa7\x3b\x3e\x84\xfe\x01\x96\x09\x9a\xb1\x67\xb5\xce\x52\x6b\xa3\xf2\xaf\xb2\x7e\x68\x5d\x20\x14\x3b\xac\x86\x8a\xef\xd6\xcc\xc4\xec\x6c\xbb\x6b\xfa\x84\x90\x13\x03\xaa\x8c\x69\xad\xe8\x3a\x77\xa0\x9d\x95\xb1\xb3\xf9\x02\xa2\xac\x3e\xc2\xd0\xc1\xb1\xaf\xc8\x9c\xae\x6d\x96\xd7\x5e\x6b\xe7\x69\x9a\x4c\xfb\xac\xef\x14\x2d\x34\x20\x02\xe0\x7b\xf0\x30\x2e\x28\xdf\xf3\x59\xad\x01\x4f\x4e\x20\x4a\xb3\x48\x4d\xff\xed\xa0\x64\x9e\x8f\x3b\xdb\xef\x73\xee\x40\x7b\xb9\x07\x69\x3e\x04\xb8\xb7\xc6\x2a\xda\xbd\xd5\xa4\x37\x30\xa4\x86\xf4\x84\xbc\x0a\x82\x78\x59\xe4\x4a\x7e\x64\x60\x73\xfb\x2c\xfe\xd4\xa1\xf9\x5f\x51\x30\x2a\xc5\xfe\xfe\x9d\xb1\x42\x15\xbe\x1f\x68\x92\x3a\x32\xe8\x6e\x44\xd5\x93\x6f\xc0\x06\x20\x81\x79\x12\xf6\x19\xd5\x4d\xd4\x6a\xf0\xe9\x2b\x54\x75\x95\x26\x22\x11\x0e\x4d\x6f\xf8\xf9\xd7\x1b\x9a\xb1\xe0\x93\xc0\x83\xee\x11\x0e\x31\xb4\x09\x61\x27\x76\xf7\x53\x9d\x89\x54\xa8\x5a\x5e\x18\xc3\x84\x72\x17\xde\xdf\xb3\x1b\x0e\xe9\x80\x3a\xdb\x94\x02\x54\x8f\x55\xce\xf3\x20\xd0\x33\x54\x4f\x29\x05\xb4\x35\x9b\x2d\x97\x10\xd0\x77\x6a\x37\x1e\xd9\xc3\xd4\xae\xa2\x7d\x43\x43\x05\xb0\x5e\xf7\x50\xce\x75\xc2\x97\xd5\xc6\x80\x09\xb9\x8c\x02\x2b\x9f\x28\xa0\x9f\x2d\xb3\xb4\x67\xbb\x05\x12\x02\x85\x5d\x11\x92\xe2\xbb\x81\x5f\x76\xa7\x1d\x5e\x68\xbd\xba\xb1\xbd\x2d\x27\xda\x72\x7e\xec\x7b\x28\x8f\x13\xe3\xad\xd6\x66\x03\x71\xe4\x4d\x4f\x75\x51\x3e\xdf\x51\x45\xec\x9d\xc8\x7f\xd0\x9b\x7a\x64\x43\x11\x7b\x5c\xd4\xe4\xdb\x90\x0d\x72\x24\xad\xb5\xa1\x7b\xfc\xe2\x03\x05\x4c\x5c\x1b\xd8\xcc\x3e\xe1\x07\x14\x49\x6f\x64\x71\xeb\xf8\xd8\xd3\xb2\x71\x6d\x7d\xeb\xb8\xe6\x62\x06\x4f\x2f\x3e\xd3\xea\xe8\x1a\x15\xfd\xaa\xcc\x44\xd2\xaf\xa2\x5a\xfc\x6f\x54\xda\xb7\x17\xf7\x06\x07\x75\x99\x56\x09\xd3\x58\xe1\xb9\xc2\x9e\xbd\xe3\xc6\x25\x06\x65\xbf\xcf\xd5\x6a\x27\x50\x57\x7d\x01\x9f\x34\x8e\x90\x0e\x4d\xe2\xd5\xf3\x11\xe2\x33\x7f\x33\x9f\x78\x06\x30\x4a\x0c\x68\xd0\x95\xfe\x18\xef\xeb\x34\xd7\xf6\x14\x3f\xa9\x50\x3e\x3c\xd6\x51\xd0\x91\x1d\x0d\x65\xc9\x76\x66\xf3\x51\x9a\xf4\xf8\x9a\x9d\xdd\xaf\xae\x59\x90\x5a\xbe\x20\xbf\x1c\x25\x26\xa9\x32\x9f\x78\x9d\xc2\x5b\x84\x1e\x47\x03\x45\x07\x73\x57\x4d\xcc\x5c\x09\x7c\xf7\x66\x40\xfc\x01\xbb\x95\x44\xc0\x29\xa5\xf2\x80\xf4\xc6\x31\xfa\x2c\xbe\x2c\x85\xd8\xc3\xe4\x35\x10\xdd\x7e\x38\x56\xb8\x85\xc3\x63\xaf\xaf\x78\x44\xfd\x4e\xd7\x24\x89\xed\xed\x52\x23\xc7\x6f\xeb\x8c\xf6\x44\x65\x0e\xb6\xce\x4f\x32\x51\xcc\xcf\x6f\xf1\xc8\x10\x7f\x42\xb1\xba\x96\x49\x54\xe4\x8f\xd1\xca\x85\xd7\x78\x07\xcf\x17\x25\xa4\xa3\x81\xe2\x03\xa1\x6f\xbd\xff\x3f\x3e\x8f\x45\x8f\xe8\xf1\x2e\x25\xb4\xac\x27\x4a\xbb\x4f\xf0\xa9\x8a\x36\x6f\x0f\x15\x13\xc5\x33\xd0\xb3\x47\x83\xf2\x0b\x68\x76\xb0\x0b\x4f\xc1\xdb\x8b\x2f\xfe\x02\x77\xc5\x27\x7e\x7c\x3d\x4d\x0a\x13\x8a\x34\x06\x76\x11\x4f\x8b\xe2\x2b\xef\x07\xfe\x3b\x3c\x67\x5d\x37\x7d\xd3\xc6\x5c\x7d\x42\x4d\xf5\x08\x87\x45\x7c\xa6\x3a\x0e\x83\x32\xf1\xd9\x97\x23\xb6\x74\x53\xfb\x67\x6b\xe5\xc7\x03\x2f\xb7\x87\x26\x8e\xfa\xd5\xda\x59\x9f\x52\xa3\x10\x17\x68\xef\x32\x4c\x83\xbe\x42\x38\x66\x3c\x1c\x3a\x36\x24\x37\xc9\x74\x60\x58\x2d\xe7\x15\xf0\xfc\x3b\x13\x8c\x55\x7e\x1d\x24\xe9\xb0\xcc\x4c\x4b\xe9\x46\x9d\x56\x73\x4b\xa7\x55\x9d\x6c\x68\x49\x60\xc3\xc4\x34\x5f\x88\x5f\xb8\x41\x46\x03\x68\x92\xd3\x9a\x35\xc1\x91\x23\xe4\x65\x92\x89\x10\x0c\x33\xc0\x07\x3e\xf9\xba\xdc\x3c\x7a\xd7\x2d\xb3\x2e\x6b\x66\xc0\x8a\x7c\x3a\x56\xc4\x73\x9f\xba\xb7\x38\x4c\xb3\xa2\x6f\xfa\xe8\xe3\x22\x5b\xfd\xb9\xa2\x56\xbc\x32\xf6\xa5\x14\x1e\x4c\x94\x70\xa3\x8e\x32\x59\x6a\x87\xb1\x29\xf9\x4a\xe1\xac\x80\xb7\xe0\xe3\x1a\x65\xe0\xc1\x19\x99\xc9\x8b\x56\x5d\x2f\x1f\x2f\x09\xbd\x33\x3e\xae\x65\xe7\x84\x25\x8b\x92\xd0\x26\x85\xe8\xb1\xc1\x24\x81\xb9\x80\x8f\x9b\x58\x63\x12\xb3\xba\x4e\xed\x3a\xa4\x5f\x67\xf5\xb8\x3a\x72\x24\x49\x72\x74\x22\x99\xc6\xf9\x5e\x0f\x2b\x7b\xa6\xa3\x8c\xd6\xbd\x49\x31\x4d\x35\xb9\x75\x5e\xc9\x47\x01\x1a\x07\xd3\xfc\x93\xb1\x6a\x5e\xdf\x1c\x7b\xf0\xfd\x7f\x1c\xd7\xe9\x3e\xf8\x23\x81\x9a\x64\x63\x9c\x33\x3c\xc8\xee\x26\xdd\xd4\x68\x38\x8a\xa3\x30\x2a\x34\x48\x3c\xf0\xf0\x32\xdd\x79\x78\xe1\xd7\xfe\x9b\x29\x8d\x0e\xa4\xdf\x11\xea\xfb\xca\xa0\x70\x51\xac\x0e\x3c\x9b\x53\x70\x37\x6c\x60\x84\xc9\x4c\xd6\xc7\x27\xe3\xed\x44\xcf\x20\x79\x89\x92\x55\x9b\x17\xae\x24\x23\x93\x0a\xf4\xeb\x32\xa8\xa0\x4b\x4f\x51\x2c\x96\x56\x31\x02\xca\x83\xde\xd1\xf1\x53\xf6\xe0\xa7\x45\xb6\x80\x6e\x89\x70\xb9\x6b\x3e\x41\x87\x27\x18\x65\x36\x8c\xd2\x92\xd9\xb9\x1c\x24\xd1\xd1\xcc\xc1\x86\xe1\xdf\x3f\xd1\x08\xc2\x5f\x36\x89\x80\x2c\x9b\x43\x52\x25\x71\x7a\x64\xd5\x4a\xc1\x25\xec\xec\x28\x65\x8d\xf3\x4a\x58\x3b\x2f\x4c\x61\x9f\xf2\xef\xea\x3e\x2d\x16\x00\x70\xde\x21\xe7\x23\x34\x9a\xca\x10\x5e\x19\xab\x4a\x1c\x2f\x16\x58\x91\x3f\x0a\xd4\xcd\x7c\xa9\x39\x21\x4e\xb0\xfb\x96\xee\x8d\xdf\x62\x3c\xdb\x04\x87\xf7\xd6\x04\x50\x99\xee\x00\xcb\x7b\x4f\x47\x4d\xbb\xde\x19\x7b\xe8\xc7\x7f\x52\xac\x94\x3f\x41\xab\x53\xc0\x48\x3e\x66\x1c\xa6\x49\x91\x59\x0c\x87\x08\x39\x35\xe6\x22\xf8\x58\xfd\x6d\xcf\x16\xf4\xce\x5b\xde\x7b\xa2\x19\xcf\xc7\x4d\x43\xe7\xbf\x3a\xb7\xef\xa5\x7d\x07\xf6\xef\x54\x0d\x73\xa6\xd2\x43\xd7\x73\x6b\xec\xb1\xc3\x0f\x02\x5d\x97\xa8\xd6\xb9\x88\xcf\x68\x22\xdf\xde\x63\xd5\x2d\xca\x64\xa1\x77\xaf\xd7\xc7\xad\xbf\xbe\x9f\xad\x22\x90\x2e\xc2\x03\x58\xbd\x2c\xd7\x34\xab\xae\x03\xcf\x07\x74\x74\x78\x71\xf7\x94\xf6\xf2\x6d\x54\x14\x5c\x9c\xe7\x09\x5f\xf7\x6e\x28\x7e\xbb\xca\xa1\xc5\x3c\xf3\x81\x87\xcf\x4d\x24\x3e\xa9\x4d\x77\xbd\xf6\x5a\xbb\x5b\xbe\xf9\xe6\xba\xd2\x81\x65\x45\x5c\xd1\xca\xd8\xeb\x0a\xb4\x45\x38\xd8\xe5\xe7\x3b\x80\x3d\x40\x5a\x3c\xdd\xf1\x15\xd9\x13\x5a\xd7\xf6\x82\xee\xa7\x33\xa4\x5a\xb0\x9c\x0d\x13\xb3\x61\x1c\x0d\xbb\x1c\x47\x22\xa1\xc1\x3c\x97\xa6\x32\x12\xe5\x22\x45\xdf\x73\x5c\xb3\xc3\xa6\x79\x41\x70\xbb\xca\x40\xa2\x10\x7a\x1d\x13\x1a\x52\x53\xf4\xa2\xfc\x5f\x04\xad\xdf\xfc\x96\x7b\x6b\x4e\x11\xdf\xe0\x1b\x5a\x8e\xa7\xb7\x35\x99\x96\xd1\xaa\xe4\xac\x0e\x6f\x42\x5e\x8b\x84\x2e\x51\x52\xb0\x02\xda\x4b\xbc\x85\x20\xe6\x07\x53\xb1\xab\xe3\x9b\x68\x8f\x6c\x78\xe7\xdd\x8d\xa3\x21\x48\x73\x90\x52\x4e\x6f\x78\x1d\x85\x2f\x94\x24\xe6\xee\x4e\x03\xa0\xab\x4c\xd6\x48\x59\xd9\xcd\x3e\x49\x38\xe5\xab\x86\x17\x6b\xc8\x12\x42\x50\xa6\x45\xda\xcf\xcc\x68\x10\x85\x53\x1e\x15\xf7\x3d\xdc\x18\x5e\xef\x2d\x35\x2c\x58\xe7\xd4\xd9\x57\xbd\xb7\xb4\xec\xe5\x13\x6c\x31\x0a\x16\x76\x51\x6b\x03\x46\x71\x5a\x00\x30\xe5\xf4\x89\x55\xec\x47\xcf\x59\x29\xa8\xf8\x79\x66\x25\x6e\x79\x4e\x49\x1a\x9f\xad\x59\x57\x1a\xbb\x4b\x51\x2e\x59\xf4\x0c\x4e\x4b\x33\x7c\x03\xd7\x94\x22\xc9\x8e\xce\x57\x15\x5f\xd9\x3a\x21\xce\x7d\x4f\xe6\x62\xa0\x26\x37\x2f\xaa\xd1\xf6\x7e\x69\xf3\x82\x62\x03\xa4\xed\x68\x48\xc2\xff\x31\x4d\x21\x02\xc1\xdb\x4d\x33\x56\x45\x66\x92\x3c\x72\x44\x4a\xf0\xe8\x80\xd5\xf0\xb1\x1f\xfb\x22\x8a\x83\xdd\x3c\xf4\x29\xb0\x9d\xdf\xf8\x95\x4e\x65\x76\x51\xec\x3b\x3c\xd6\x33\xd9\x30\xf5\xb0\x31\xe0\x52\x46\xd2\xcb\x0e\x13\x29\xe9\xd4\x46\x03\x6b\x67\x92\xf2\xf5\x00\xdb\x09\x16\x54\x3e\x6e\xec\x9d\x86\x69\x12\xa6\x2e\xaa\x67\xe9\x53\x0e\xd0\x61\x46\x8f\x4c\x80\x6e\xc6\x13\xcc\xa7\xab\x55\x4c\xb6\xcb\xcf\x9d\x1e\x0b\xd4\x6d\x1c\x83\xd5\x70\x95\x59\x0f\xad\x0a\x3c\xaa\x61\x33\xf0\xdc\x90\x9b\x8d\xe3\xe7\xdd\x28\x05\x8b\x3d\x9a\x62\xa2\xa4\xe4\x4b\x7e\xe7\xd4\x35\x91\x7a\x5f\x9a\x49\x84\xe2\x20\xaa\xd5\x1d\xf0\x49\x83\x54\xcb\x4b\xed\x28\x33\xf2\x19\xa5\xac\xec\x4e\x9c\xf9\x8c\xa3\xd5\x88\x3d\x3e\x02\xbd\x5f\x8c\xfd\xa8\xda\x75\x78\x1f\x79\xdc\x4f\x2b\x66\x00\x9a\x0d\x9a\x9c\xf8\x86\x94\xb0\x88\xe2\x6c\xf7\x6f\xfb\x16\xda\xd6\x64\x09\x71\x88\xcc\xcf\xcb\xbb\x38\xaf\x7a\xe6\x10\x87\x65\x1c\x00\x56\x8c\xcc\x1b\x3e\xee\x4a\x06\x49\x7f\x17\xfd\x24\x6b\x72\xc0\x55\x8b\xe0\x4b\xb5\x36\x50\x0e\x3b\x83\x68\x09\x85\x89\x93\x0a\x85\xf0\x9e\xae\x23\xdf\x0d\xbc\x05\x48\x52\x5a\xfa\xb4\xb5\xe0\xa3\x8f\x8e\xbd\x0e\xc9\xd1\x5a\x04\xbf\x34\xb3\xd4\x26\xa2\x4c\xb3\x5c\x50\x4f\xd4\x4f\xce\xf9\xa8\x64\xd3\x5d\x79\x16\x85\x66\xca\x27\x55\x1c\xa7\x22\xfc\xbb\x17\x4c\x12\xb4\x79\xfc\x82\x59\x79\x33\xdd\xe5\x55\xec\x37\x03\x35\x96\xfa\x43\xbc\x1c\x3e\x19\xab\x56\x3a\xf7\xa7\xe4\xa4\xba\x34\xf9\x7c\x03\x96\x2e\xb6\x49\xbf\x18\x80\x0a\x01\xb5\x3f\x90\xb9\xf0\x71\x53\x0e\xd2\x2f\xe3\xe5\x96\xaa\x57\x23\xa7\xe5\xe3\xe0\x19\xf7\x4c\xd3\xcc\x24\xaf\xdb\x61\x99\xf4\x5a\x0a\x30\xcc\xef\x86\x4f\x14\x50\x22\x2e\x87\x48\x5d\xd1\xa1\xbe\xa1\x70\x0b\x20\xb3\x14\xba\xad\x09\x0d\x20\x93\x10\xf5\x30\xa7\xbb\x58\xe5\xd8\x96\x67\x10\x3a\x8a\xdd\x9e\xd0\xc1\x52\x1c\x80\x3b\x01\x57\x10\x29\x67\x82\x6a\xf0\x17\x8c\xbd\x60\x7e\x7d\xe8\xff\xdb\x73\x6d\x1b\x47\xc3\x28\x31\x50\xe4\xdc\x42\xb0\xb6\x75\xc9\x05\xe7\x66\x34\xa2\x7c\x72\x4a\x8d\x42\x7e\x3a\xf6\xc5\xa3\x29\x04\x41\xb8\x8c\x47\x9a\xe4\x4c\xba\xa6\x6b\x89\xad\x0d\x5f\x01\xb7\xc1\x79\xac\x14\x78\x71\x5f\x52\xa1\x79\x5a\x55\xa0\x32\xdb\x35\x71\x9c\x63\x51\xc3\xc9\x9f\x21\x3b\xc3\xc7\x93\xb1\xad\x2d\x4c\xb6\xbe\x9b\xec\xdd\x04\xa5\x37\x96\xf2\xc7\x14\x32\x8a\x1c\x4d\xf5\x5c\xa4\x68\xac\x4a\x46\x9b\xaa\x4a\xf1\x31\xc2\x1b\xe9\xf9\x3f\x4c\x2f\x27\x8c\x8a\x28\x4c\xb3\xd1\x94\x92\x44\xc6\xdb\x41\x18\xfa\x63\x5d\xbc\xb9\xda\x00\x84\x6a\xd3\xcc\xda\x74\xeb\xdb\x22\xd8\x79\x7b\x42\x4d\xc1\x53\x8f\x32\x43\x1d\x12\xc5\x8d\xb1\x20\x38\xf3\x95\xf5\x2c\x0d\x57\xac\xa3\x4f\x95\xbe\x97\xe2\xa0\xbf\x01\x3b\x03\xa3\x73\x51\x61\x0a\xba\x66\x65\x05\x14\xc3\x12\x2c\x30\x2a\x90\x4f\xd4\x13\x5e\x37\x43\x13\x85\x83\xa8\xe5\x13\xfc\x4b\xaa\xa7\x79\x49\x35\x11\xd6\xa2\x55\x9b\x53\x2b\x9e\x79\x8e\xc8\x26\xa3\x46\x8b\xd6\x88\x20\x7b\x1a\xf8\x87\x32\x3b\x4c\x19\xf8\xc9\xd7\x4b\xbf\x22\xd7\xde\x10\x69\x9b\x6e\xba\x8a\x1e\xbc\xab\xea\x3b\x84\xec\xf7\x35\x5a\xe9\xd4\x43\x69\x3c\x8a\x41\x66\xed\xce\x2a\xc1\xa0\xdd\xf2\x9d\x67\x69\xbf\x22\xb4\xbd\x4f\x6f\x13\xbd\xa9\x4d\x3d\x0c\x76\x9f\x56\x8b\x10\x20\xfb\x38\xc6\xe6\xa3\x0c\x9c\xb1\xd8\xac\xc7\xd4\xe4\xec\x31\xa5\x29\xd4\x4d\x15\xb6\xc1\xb1\xfe\x38\x11\xd4\x23\xe3\xbd\xfe\x2b\x7b\xc0\x92\x22\x49\x3a\xa7\xc4\x8f\xce\x35\x12\x12\x65\x36\x4c\x33\x26\xc5\x77\xec\xbc\x0b\x0b\xae\x78\xae\x60\xdd\xbd\xd7\x4b\x9a\xec\xaf\xae\x17\xc1\x33\xec\x27\x1f\x2b\x0c\x7f\x3f\x36\xc3\x34\x13\x5a\x18\x09\x48\x27\x68\xab\xea\xc9\xc7\x62\x3b\x8f\xe2\x55\x83\x5a\x20\x4a\x26\x7f\xa6\xc8\xf5\x4e\x07\x6a\x99\x1e\x69\xc2\x4a\xaf\x99\xac\x67\x22\xf0\xfd\x20\x36\x63\xae\x74\x3e\x51\xf7\x32\x2c\xe3\x2c\x4d\x2c\x7c\x81\xa3\x86\xf0\xf4\x7b\x37\x27\xc0\x09\x45\xc2\x35\x43\x29\x28\xd0\x95\xc8\xa0\xc7\x57\xbc\x0d\xcc\xd2\x55\xc4\x54\x70\xc7\xf7\x74\x99\xff\x27\xaa\x63\xff\xea\x67\x64\x9c\x98\x2e\x05\xdd\x55\x74\x7f\x4f\xd2\x4a\xc1\xf6\x7e\xba\x23\xdd\x7b\xd0\x5b\x57\x31\x2f\x45\x14\x28\x48\x33\x36\x59\x7a\x6f\x1e\xe9\x78\xb5\x36\xa4\xe6\x34\x1e\x8a\x22\xcd\x12\xbb\xce\x2a\x4c\x68\x65\x72\xdb\x0d\x0f\xe9\x06\x85\x9d\xb8\xfc\x2f\xc7\x5e\x05\xab\x4c\xec\x70\x14\xa7\xeb\x43\x9b\x14\xd3\xaa\xf0\x7d\x51\xb5\x4e\xb5\x08\xfb\x54\x47\x45\x5a\xf5\x78\x77\x7e\xbe\x6d\xfb\x42\x43\x8e\xb4\x75\x87\x4a\x61\x77\x6c\x3c\xad\xa9\xc0\x0a\x1b\x16\x69\x46\x0d\x5b\xac\x05\x8c\xa8\xf1\x71\x93\x8c\x01\x8a\x56\x3e\x9a\x64\xf8\x05\x96\xa0\x60\x31\x1a\x18\xeb\x56\x92\x74\x2d\x21\x88\x02\x82\xa8\x1f\x51\x07\x4f\x38\x1e\xb4\xb6\xa3\xc2\x65\xdc\x6d\xca\xc8\xba\x6a\x58\x1a\x6b\x96\x23\x21\x3e\x69\x62\x3c\x36\xbd\x9e\x98\x66\xe0\x68\x3f\x52\xec\xae\xff\x24\x50\xd4\x4c\x9f\x28\x22\xbc\x9e\xcd\x47\x51\x61\x1f\xa5\x55\xe4\xb4\xc9\xe6\x0e\x38\x80\x3e\x5d\x03\x1a\x7f\xc4\xb3\xb8\x75\x04\x03\x2a\xa2\xef\x4b\x97\x05\x6c\xd8\x5d\xba\x47\x54\x0b\xae\xab\x8c\x97\x9b\xf6\x70\xc4\x8f\xd4\xa4\x02\x68\xf3\x16\x99\xb5\xae\xc0\xe8\x18\xa4\x3c\xdf\xfd\x64\x34\xb3\x1c\xaf\xef\x9c\x80\x60\x39\x55\xa3\xd6\x86\xaf\x72\xde\x19\xfb\x79\x8d\x3f\x0e\x94\x57\xbb\xa3\x98\x3e\xba\x26\xcb\x6c\x9c\x93\x5d\x82\x2b\x05\x7f\x0f\x1f\x6f\xc3\x19\xad\x2b\x5a\xbd\x4b\x78\x25\xd8\x42\x0f\x90\x01\x89\x52\x5e\x03\x5c\x6f\x22\x15\xe0\x26\x9f\x1e\x51\x78\xa7\x16\x3b\x57\x4e\xbb\x1b\x47\x7d\x02\x56\x09\xca\x55\x69\x01\xec\x97\x21\xc4\x89\xd9\xb6\xfa\xb0\xe3\x5a\x14\x2f\x13\x6d\x58\x75\xb9\x32\xd7\xac\xc8\x75\x4e\x37\xb0\xed\x11\xbd\x4a\x4b\x55\x11\x10\xbc\xf2\x71\x93\xa2\xcb\x28\x4b\x47\x36\x76\x34\xf3\x88\xd9\x99\xde\x8a\x4f\x94\x24\x46\x94\x65\xc4\x48\x4c\x62\x21\xae\x0d\xff\x73\x5a\x41\x82\xee\xac\x2f\x94\x2a\xfe\x4a\x47\x69\xbc\xae\xb4\x90\x58\x88\x4a\x06\xb3\xb6\x7f\xe8\xc5\xf6\x20\x2d\x73\x3b\x48\x63\xde\x1c\x8e\xc3\xcf\x35\x2f\x6e\x07\x8a\xb7\xb9\x2e\xf5\xf8\x97\xda\x26\x0f\xcd\xa8\xa5\x25\x42\x38\x4a\x96\xf6\xe2\xf6\xc7\xb1\x34\xb3\xbf\xda\x59\x69\xcc\x31\x2f\x43\x64\x8e\x29\x2a\x9b\x63\x4a\x81\xcd\x14\x85\x4d\x7a\x26\x09\xd1\x9e\x01\xec\x05\xc6\x54\x08\x59\xe9\xd2\x85\xaa\xb5\xe5\x44\xdd\x6e\x3c\xd4\x5a\xdb\x38\xb7\xd4\xe0\x9e\x6a\xfd\xe6\xb7\x04\xd9\xa2\x52\xbf\x07\xba\xd5\x50\x1f\x0c\xde\xb7\xd0\x1e\x44\xdd\x14\xfe\x50\xe4\xe8\x14\x75\xda\x7b\x6a\xb6\x6b\x2d\xcd\xb2\xf5\x47\xab\xc8\xd2\x51\xfa\x7b\x7a\xff\xb1\xba\xf2\x8b\xd8\x24\x30\x49\x1b\x70\x69\xc0\x29\x1c\x51\x85\x2e\xcc\x38\xc0\xbd\x5d\x03\x64\x01\x1f\x7f\x07\x97\x2c\xe4\x0c\x0d\x6e\x21\x8f\xa3\x11\x16\xad\xd4\x97\x7c\x5b\xeb\xac\x6a\xe9\xe6\x45\xd9\x8b\x52\xa6\x37\x74\x01\x7a\x65\xe9\xd0\xf5\xba\x4e\x9f\x63\xde\xc3\xc0\x97\x8a\xee\xc2\x92\xb9\xce\x4d\x75\x39\xfc\xf1\x26\xba\x97\xd0\x24\xab\x86\xfd\x94\xeb\xb5\xb8\x9e\xe4\xb1\xe0\x31\x99\x76\xfc\x8b\xdd\x96\x06\xc5\xab\x7c\xec\xea\x44\x7f\x2a\x4b\xd7\xbe\xa2\xda\x0e\x17\x50\xe2\x42\xb4\x75\x02\x26\x41\x9a\xd2\x64\xd0\x25\xdb\x51\x0d\x8d\x33\x6a\x8a\x92\x83\x70\x57\x11\x9e\x3b\xc0\x9e\xeb\x32\x61\x8f\x25\xd1\x06\xa0\x04\x15\x8b\x3f\x55\x82\x42\x20\x3a\x74\xe0\x5c\x47\x77\x79\x13\x4e\x83\x87\x60\x35\x21\x6f\x66\xbb\x69\x32\xe5\x87\x31\x36\x55\x97\xf7\xe7\x9a\xd2\xee\x9a\x7b\x36\x6f\x76\xbb\x4a\x96\xf0\xbc\x66\x37\x6f\x74\x83\xf9\x20\xcd\x50\xdd\x43\x4c\xd2\x52\x91\xc1\xe3\x1b\x8a\xc6\xe7\x6a\x63\x96\x6f\xca\xa4\x57\x59\xf9\x6d\xaf\xdf\x29\x3e\x55\xeb\x17\x18\xa3\x7f\xdb\x38\xcd\x3f\x34\x49\xb9\x6c\xc2\xa2\xcc\x44\x11\x41\xc2\x1b\x7a\x26\x12\xf7\x28\x7e\xe5\xbf\xf6\xd7\xa6\xd4\xeb\xf9\x90\xda\x0f\xe8\x71\xdd\x53\x3a\xd9\x37\x9b\x98\x67\x56\x53\x97\x8d\xb9\xe6\x85\x12\x09\x51\x63\x40\x37\xd5\xe2\x8f\xcd\x5a\xce\xe3\xc6\x92\x8e\xea\xdc\x54\x01\x75\x87\x36\x8b\x6c\x79\x68\x3b\x39\xf8\xa2\x23\x07\x57\x6c\x5c\xb6\x5f\x45\x77\x3b\x3d\x54\xe3\x03\x6c\x5d\x80\xa9\x18\xd0\x85\x7a\x01\x28\x09\x00\x24\xbb\xa3\x6b\x74\xd7\x15\xcc\x29\xb3\xb1\x35\xb9\xc5\xe4\x88\x30\xc5\xab\xe1\x8b\x7a\x07\x82\xc4\xa1\xd3\x11\x73\x76\x2a\x91\x43\xa7\x78\xd8\x48\xd9\x96\x17\xd6\x93\x6a\x8a\x13\x55\xd5\xaf\x3a\x05\xf9\xdc\x81\x76\xb7\x8c\x57\xa6\x54\x9f\x12\xf5\x5d\x78\xff\x07\x6a\xc5\x5c\xa8\xc9\x14\xd2\x1c\x74\x91\x99\x34\xeb\x45\x89\xc9\xa2\x78\xbd\xa5\xd1\xa2\x40\x44\xc9\xb4\xff\x43\x85\x45\xac\xe9\xad\xe3\xc5\x0b\xd7\x62\xf5\x9b\xe8\x3f\xb2\x96\x23\x0c\x68\x5d\x45\xed\x85\x17\xda\xa3\x34\x2b\x32\xb3\x8e\x04\x4b\x72\x3d\x32\x18\x92\xec\x35\x25\x58\x3d\x13\xc5\xeb\x98\xde\xc4\xfa\xc4\x8f\xf2\x31\xbd\x53\xe6\xd8\x0c\x26\x92\xbc\xdf\x78\xc5\x59\xa8\x06\x79\x5e\x55\xfc\xaa\xe2\x00\x57\xfb\x52\x16\x0b\x2f\x80\xc3\xd5\x24\xa5\x52\x12\x45\x44\xd5\x4f\x3a\x11\x81\xa5\x19\x4f\xb3\xb8\x4f\x82\x83\x2b\x6a\xd2\x3e\xb7\x49\x11\x0d\x5d\x67\x07\xad\x52\x4c\x6c\xb1\xc0\x06\xdd\x03\x2a\x85\xa7\x55\xa2\x5d\x0c\xd2\x9c\x91\xc3\x08\x4d\xae\x29\xd5\xa9\x1d\xe8\x2e\xc1\xa4\x33\x01\x22\x36\xe0\x57\x3a\x6a\x34\xf1\x9e\xe2\x66\xb9\x1e\xf8\x81\x5c\xae\x55\xc2\xa3\x30\x0b\xc3\x04\xe7\x98\x50\xab\xd1\xcb\x76\x63\x1e\xfb\x24\x00\x78\x7c\xc3\x45\x42\x3f\x7f\x86\x04\x38\x64\xcc\xd1\x33\x15\x8c\x06\x51\x9c\xe6\xe9\x88\xab\x97\xf8\x2d\x14\x55\xf8\xb8\xb6\x48\x08\x0c\x9f\x45\x43\x21\x7f\x45\x4e\xf7\x96\x02\xd3\xbf\xd5\x04\xec\x5e\x33\x09\xd7\xad\x11\x75\x9f\x50\x11\xf8\xa6\x62\x10\x3a\xaa\xe9\x99\xea\x9c\x88\x07\x89\xb8\x2b\x1d\x8e\xe2\x28\x1f\x90\x01\x40\x25\x6e\x53\x09\xc3\x6d\x3a\xb0\xe1\xc0\x52\x33\xe2\xe0\x0c\x73\x31\xed\xd8\xf0\xe5\xa2\xaf\x50\x13\x8e\xb6\xe2\xff\xfc\x17\x3a\x9e\xd6\xf2\x73\xcd\xe7\x7c\x5a\x27\xef\x75\xca\xa0\x7d\x0b\x34\xc0\x38\x92\x8c\x6c\xeb\x3c\xf0\x5d\xaa\x22\x90\x76\xf3\xc2\x84\x31\xcb\x12\x3a\x6c\xe3\xac\xb7\x21\x52\xeb\x1c\x18\x8d\x75\x42\xc3\x04\x69\x30\x1f\x2b\x6e\xa4\x22\x2b\x8b\xc1\xb4\x42\x32\x9e\xd7\xf2\x41\xcc\x4e\x80\x1d\xfb\x05\xaa\x88\x7c\x32\xde\xce\x69\xb6\x6f\xa1\x6d\x86\x2d\xcd\x4f\xc4\xd4\x6c\xa2\xf1\xf8\x35\xaf\x55\xc7\xba\x7a\x10\x0b\xd9\x4b\xb9\x9e\x2b\x37\xba\x65\x7b\x46\xb9\xfb\x33\x14\x38\x88\x46\x36\x7e\x44\x4b\x52\x23\xbd\x39\xa5\xc5\x51\x0e\x13\xf4\x16\x13\x02\x0f\x02\xb5\x1d\xb1\x60\x10\xdd\x5c\x19\xab\xa6\xf9\xfb\xb8\x5e\xac\xbd\xc7\x3b\xcf\xf2\x8d\xbd\x5e\x66\x51\x3e\xca\xca\x9e\x25\x4a\x68\x47\x85\xb4\xa7\xa3\x1a\x07\x7b\x36\xbc\xbb\xfd\xf6\x81\x83\xea\xcf\xde\xd6\xfd\x85\xb7\xbd\x5e\x56\x56\x56\x5e\x41\x4b\xb9\x7d\xa0\xd8\x61\xee\xd3\x32\x14\x28\x17\x7d\x83\xb0\x48\xc9\x6b\x4e\xbb\x85\x89\x12\xdb\xdb\x59\x3d\x26\xc7\x63\xe9\x78\x27\x37\xc7\x6a\xdc\x6c\x37\x15\x01\x51\xcc\xff\x48\x63\xf5\xea\xd8\x2b\xea\x8b\xd9\xa2\x90\xf9\x2c\x57\xfc\x70\xfd\x51\x56\x81\x82\xf1\xbf\x31\x56\x3c\x23\x83\x2c\xca\x8b\x88\xb1\x62\x48\x5a\xcf\x20\x50\xe3\x93\xc0\x37\x54\xf2\x28\x81\x73\xd0\x83\x76\x92\xa2\x3d\xa7\x7c\x74\x6e\xb3\x55\x18\xe3\x96\xd7\x28\xe5\x82\xb8\x2c\x68\x5f\x6c\xc8\xa2\x6e\xb7\xfa\x53\x95\xb0\x71\x60\x20\xb2\xb6\x5f\x55\x8a\xba\xab\x51\x82\x57\x8a\xd6\x2c\xa7\x1f\x7c\xd2\xa4\xf3\x99\xa4\x49\x99\x08\x93\x0a\x9e\x00\xea\x42\x7c\xbc\xf1\xac\xc2\x60\xf6\x6c\x96\x87\x29\xa7\xc5\xfb\x9d\x6c\x51\xcb\xd1\x77\xfe\x89\xf2\x00\x79\x5c\x0e\x47\xf4\xb5\x08\x6a\x01\x2b\xe1\x63\xd7\xef\x1d\x45\xfd\xbc\x80\xbd\x94\x78\xb1\xe5\x66\xc2\xbf\x9c\x98\xb1\xb7\x79\xf1\x35\xc5\xa5\xf5\x89\x9e\x38\x39\x87\xbd\xec\xfc\x93\x9b\x65\xda\xc1\x63\xa5\x70\x73\x5c\x24\x43\x30\x3a\xd5\xf1\xc5\xfc\xaf\x74\xc8\x0a\x89\xb4\x9b\xe7\x1b\xdf\xb9\xa1\x8a\x39\x3f\x85\xab\xc2\xee\xba\x4d\x5b\x18\xd1\xd9\x2f\x69\x88\x10\x51\xfd\x19\x00\x67\x99\x4c\x2d\xf0\x8a\x76\xb7\x02\x2f\x3d\xfd\x25\xb2\x10\x18\x5c\x80\x6f\x10\x8d\x1e\xd7\xc0\x6b\x16\xcf\x21\x23\xbb\xf2\xd4\x06\x81\xfd\x85\xcc\x92\x3c\x86\x23\xf6\xae\xd6\x2f\x50\x7b\x3f\x70\x13\x48\x23\x93\x30\xc9\x5f\xf5\xf5\x68\x8a\x72\x33\x8f\x4f\x1c\x5e\xba\x6b\x92\x15\x9b\x01\x1d\x24\x3c\xe2\x13\x63\xe7\x78\x88\x8e\x65\xd4\xcb\xc6\x1f\x55\x23\xef\xad\x8e\xa6\x54\xec\xe6\x51\x2f\xb2\xd0\x02\x72\x84\x7f\x8e\x99\x13\x86\x91\x73\x54\x45\xfe\xfc\x4e\x0d\xb1\x51\xc5\x9b\x51\x52\xd8\x3e\x4b\x31\x29\x22\xd0\x73\x8a\x34\xec\x9c\x8a\xd6\x8b\xcc\x10\x88\xc0\xc9\x80\x7d\x57\x31\x9e\xbe\x45\x3e\x46\x46\xe2\xe8\xdb\xa4\x02\x55\x5d\x1e\xec\xda\x07\x58\x5c\x8a\x38\xdd\x3d\xec\xc6\x9e\x78\x3e\x4a\x0b\x45\x35\x0e\x6a\x26\xa9\x5c\xd6\x22\xb8\xb9\x36\xa2\xb1\xb5\xa8\x67\x15\x02\xe5\xae\x1a\x53\xd9\x50\xc9\xfd\xfd\x5a\xd6\x45\xcc\x76\x66\x48\x9b\xfd\xe0\x8c\x53\x9d\xac\x3e\x22\x6a\x94\xcf\x2b\xc2\x91\x7e\x12\x2d\x47\xa1\x49\x8a\x78\x7d\x77\x6d\x2c\xd5\xcd\xc3\x39\xc9\xb5\x7b\x81\x9a\x33\xfb\x77\x6a\x9e\x9e\xe4\x16\x96\xb6\x4e\x6b\xa4\xf9\xa6\x02\xeb\x75\xe3\x34\x5c\x99\xf6\x80\xa9\x9b\xba\x25\x73\x11\x63\x1f\xfc\x3f\xb4\x2f\x04\x5e\xe4\x55\x0e\x14\xeb\x62\x63\x32\xd2\xc0\xa9\xb0\x5c\x39\x9e\xcc\xb8\x32\xa1\x2b\x48\x3a\x7a\xc3\x53\xb5\xe7\x57\xf9\xf6\xde\xaa\x11\xff\xe7\x9a\x59\xb3\x73\xae\x99\xe5\x86\x57\x4d\x34\xb2\xd1\x94\x1f\x46\x81\x4f\x42\x25\xff\xb0\xd6\xde\xba\xd6\xb0\x32\x5e\x25\x60\x0e\x15\x4a\x91\x7f\x23\x3f\xe5\x63\x17\x8e\xbd\x9e\x0e\xdc\x14\x10\x72\x03\x46\x92\xf0\x49\xcd\x72\x4b\x52\x33\xb0\x19\x3c\xae\xf4\x9e\x51\x77\x40\x75\xe0\xb1\x0e\x59\x0c\xc7\x2f\xe2\x4b\x99\x37\x14\xe0\x62\x64\x8b\x2c\x8d\x6d\x39\x54\x18\x82\xd7\xc8\x56\x03\xc6\xc2\x2f\x51\x34\x12\x7d\xfa\xba\x62\xe3\x38\xed\xf7\xe9\x7d\xbb\xf9\x01\xb7\x80\xc1\x35\x29\x14\xe3\xb4\xa0\x84\x63\x7c\xfb\x4b\x9c\x9f\xd7\xac\x76\x74\x3b\x28\x1d\x5d\x54\x63\x80\x75\x72\xc8\x85\x85\x76\x91\x59\xe8\x9b\xbc\xca\x1e\x03\x94\x9b\x7c\xdc\x50\xa2\x5d\x6c\xaf\x42\x47\xfd\x55\x06\x21\x6c\x2a\x12\x4b\x74\x74\x61\x7a\x8f\xe9\xde\xf0\x54\xa7\x89\x30\x2d\xb3\x3d\x6b\x87\x2d\xcf\x64\x71\x42\x89\x45\x9f\x50\xe5\x0a\x6b\x06\x54\x50\x44\xc2\xbe\x53\xf5\x2f\xf9\xa5\x00\x41\x7a\x6f\x42\xab\xa8\x0a\x58\xf6\xa8\x7e\xd3\x19\xfd\xfe\xde\xa6\xdb\x84\x0d\xe3\x31\x1b\x94\x06\x5a\x1d\xdf\x4d\xd2\x25\x6e\x28\xa8\xc0\x71\x5d\x1f\x2b\xb4\xa1\x06\x49\xa4\x45\xba\x53\x45\xf5\x67\xf4\xa4\xd0\x79\x3d\x6f\x71\x46\x65\xee\x7b\xd4\xed\x1c\x7d\xa8\x96\x46\x51\x66\x09\x8f\xd6\x30\xe3\x9d\xd6\x90\x39\xe3\xb0\x2c\x5d\xd3\x5d\xdf\xa5\x4a\xb5\x9a\x96\xe5\x53\x22\xad\x84\x5b\x7e\x57\xe1\x55\x19\x7e\x84\x1d\xf9\x96\x1e\x3d\x7d\x77\x22\x7e\x48\xd7\x4d\x13\x72\x0b\x09\x15\x03\x3a\x00\x47\x6b\x6d\x34\xd0\x44\x86\xa6\x1b\x25\x16\x56\x9e\x65\xfd\x26\x24\xfe\x26\xe8\x80\xf2\x91\x1a\xe4\xc1\xdf\xf1\xb1\x9a\xa5\x2a\xd2\x35\x56\xf2\x42\x8b\xe5\x5d\x4d\xe4\xf9\x6e\x43\xf3\x78\xb1\xf2\x33\x99\x00\xd0\x60\xb8\x45\xe6\x8e\xc9\x72\x71\x1b\x32\x5b\xd5\x04\xb0\xc9\xcc\xba\x0a\x53\xcf\xaa\x30\xf5\xac\xa2\x3e\x8a\x23\x9b\x53\xbb\x08\x41\xcd\x26\x95\x24\x5c\x57\xc3\x15\xac\xd0\x56\x45\xb1\x18\xf3\x10\xa8\xad\x1c\x57\xcb\xaa\x97\x1e\x42\x05\x04\xeb\xf5\xb3\xb1\x67\xa3\x38\xab\xc8\x5c\x6f\xaa\x09\x83\x8f\xe9\xe7\x84\xe0\xae\x2e\x63\xd0\xa6\xc6\x6f\x4f\xcf\x95\xe8\xce\xdd\x47\xe3\x27\xbc\xf7\xb3\x36\xdf\x43\x0f\x05\x63\x5c\x32\xa6\xc5\x67\xf4\xa3\x48\x57\x18\x35\xce\xc5\x37\x3d\xb0\x07\x59\x06\xa4\xe1\xd3\xc0\x79\xf3\x63\xc1\xd2\x93\x67\xe4\x93\x81\x5e\x19\xae\xd0\x0a\x70\x79\xbc\xcf\xe9\x1b\xa5\xfd\x51\xa1\x91\x5b\x12\x82\x47\x5a\xfd\xc2\xf0\xa8\x8b\xda\x44\x6a\xe6\xc6\x9f\x0f\x2b\xf1\xe6\xc3\x4d\x73\xac\xcb\x76\xcd\xe6\x45\x8b\x62\x46\xa7\xfa\xe0\xcd\xb3\x02\x12\x0c\x4d\xb6\x62\xab\x64\x9b\x76\x21\x87\x94\x81\x1a\x59\xbe\x8b\xc8\x15\x45\x59\x74\x2c\xe1\x6d\x1e\xd9\xf0\xf3\xbd\xd7\x91\x9f\xc2\x81\xbc\x53\x5b\xc9\xaf\x2c\xcd\xb4\xbb\x29\x72\x15\x57\x49\xfa\x2e\x5d\x91\xc4\x6b\xdb\x6f\x62\x76\xb6\x3d\x4a\xe3\x28\x64\x21\x26\xec\xef\x47\x54\x04\xff\x48\x6d\xcf\xce\xce\xb6\xab\x00\x2b\x61\x5a\x6f\xd4\x5f\x7f\xa9\x2b\xbc\x97\xf1\x92\x81\xcd\xbf\x55\x63\x35\x5f\x58\x68\xe7\xe9\x74\x75\x57\x78\x4e\x57\x11\x2d\x3a\xea\x9b\xa5\x19\xf6\x4d\xbf\xd0\x3d\x81\x13\x63\x2f\xb8\xcf\x24\x00\x21\x28\x49\x67\x67\x39\x49\xbd\xa9\x70\xf1\x37\x95\x4e\x45\x98\x26\x9c\x1c\xae\x5a\x70\x1d\xc1\x93\xdd\x50\xc5\xab\xa9\x8e\x72\x77\x00\x2f\x60\x29\xa3\x1d\xc4\x1f\x40\x1d\x19\xfb\x95\xb5\xf9\x11\x73\x7c\x30\x29\x88\x17\x25\xfd\xaf\x56\xff\xbb\xf5\x28\x30\x11\x08\x71\xa6\x36\x54\x65\xe4\x3e\xdd\x28\x8e\x8f\xd1\x76\x67\x80\x6d\xe0\x63\xea\xbf\xb9\x4d\x47\x83\x02\x4b\xa7\x3a\x5b\xbd\x30\xb4\xd7\x37\x60\x9e\x1c\xed\xe1\x41\x16\x83\xf9\xdf\xc0\x46\x8d\x4f\x70\xff\x0a\xdf\xfc\xcf\xc6\x8a\x76\x98\x87\x3c\x24\x0e\xf3\x58\xa9\xd0\xc4\xd1\xf2\x37\x76\xe2\x22\x90\x43\x5f\xc5\x45\xa0\xdc\x82\xde\xd4\x04\x7f\x19\xfe\xea\xb1\x4e\x4b\xb1\x49\x7b\x78\xa1\x3d\x84\x29\x21\xe6\xc0\x67\x41\x15\x44\xb0\xa2\xae\xa2\x34\x1d\xb2\xb2\xff\xa8\x62\x9d\x3f\x8f\x8b\x76\x95\xaa\x25\xcf\x32\xeb\xa7\x57\x18\x9e\xc3\x38\x52\x6c\x18\xb4\x13\xae\x2a\x4d\x09\x24\xa9\x70\xdc\xac\x8a\x22\x48\x9b\xed\xad\x6f\x2a\xb1\xe7\x51\x62\xf3\x7c\x08\xba\x02\x6f\xe3\xbd\xbd\xd7\xbc\x32\xf1\x90\x7a\xa7\x58\xdd\xff\x46\xd1\xc9\x5e\x09\x3c\x2e\x1a\xe2\xb5\x48\x8b\x4e\xbb\xe4\x72\x68\x0a\xd3\x4f\xb3\x9e\x99\x92\x61\x5f\x8f\xe1\xe0\xde\x19\xa0\x52\xd7\x6a\xb1\x2b\x78\xd0\x46\xb1\xd3\x7c\x11\x75\xa5\x96\x57\x5a\x6a\xe4\xb3\xe8\xd9\xd5\xb4\xb0\x48\x00\x61\x5a\x4e\x29\xc2\xc3\x53\x63\x3f\x7d\x39\xb0\x8e\x0f\x5f\xa2\x47\x15\x49\xd6\xa2\x94\x03\x2f\x3b\x76\xd8\x7c\x48\x0f\xce\x69\x4f\x7b\x1d\x6a\x2f\xc1\x55\x66\x3c\x80\x43\x57\x8f\xd7\x71\x56\xd3\x7c\xd7\x87\x2f\xab\xcb\x1f\x95\xe0\x31\xce\xc8\x12\x08\x98\xb8\xfa\x35\x3e\x6e\x70\x0c\xfb\xdb\xc3\x2a\x2c\x2e\xca\x61\x4b\x01\x26\x8f\xaa\x01\xc0\xa3\xba\x04\x65\x56\x50\x82\x12\xaf\x43\x9f\x11\xb7\xf3\x84\xea\x08\x98\x04\x5c\xa1\xae\xe1\x5c\xbd\x30\xe9\x44\x37\x90\xe0\xae\x57\xb1\xfe\x9a\x2a\x6b\x9f\x55\xb0\xa5\xb3\xe3\x67\x27\xe0\xdb\x99\x89\x9c\xb6\x39\x02\x2a\xa4\xd6\x7c\xdc\xc0\x27\x34\xd7\x8e\xe2\x98\xd3\x38\xdc\xa8\x70\x0f\x55\xbf\x22\xa4\x44\x6e\x6e\x64\x54\x66\xae\xfb\x84\x20\xe1\xb4\xa6\xc5\xaa\x13\xd0\x57\xa1\x93\x3d\x34\x02\x55\x4f\x4b\xcf\xd1\x04\x2d\x25\xb8\xe4\x43\xb3\x7c\x10\x8d\x80\x6f\x81\x6f\xff\x87\x63\x3f\x00\xfd\x0f\xb5\x84\x9b\xb5\x19\x5f\x31\x6a\x9b\x68\x9d\xf2\x71\x0d\x85\xf5\x62\x3b\x19\x16\x5d\xd3\xf2\x2a\x58\xdb\x34\xb3\x9d\x4e\x41\x14\xc7\xf9\x4e\xcd\x51\xcb\xe3\x5a\x40\x0c\xef\xe9\x78\x60\xc9\x05\x9d\x29\xee\x98\x24\x0e\x71\x4f\x6c\x90\xae\xd1\x80\x8f\x9b\xc2\x01\xe6\x07\xf5\x4f\x86\xa0\x0a\xa2\x9d\x2c\x11\x62\xe4\xdb\x8a\x5e\xca\x1e\x0a\xcd\xaa\x21\x58\xd8\xfc\xbc\x03\xb5\x28\x80\x4b\xed\xa9\x57\xc9\xb9\x89\x63\x43\x53\x84\xad\x89\xc9\x47\xef\xaa\x4e\xd6\xb2\xb4\x17\xdb\xc5\x20\xca\x30\xd1\x85\xe7\x72\x46\x71\x7f\x9c\x71\x63\xf8\x34\x55\x12\x66\xd1\xa8\x98\x52\x43\x7d\x67\x55\xd1\x19\x7e\x56\xc4\x7e\xb7\xbb\xf7\xd9\xd9\xb6\xf9\x06\x27\xdd\xc2\x37\xad\x5a\x68\x9b\x0a\xad\x51\x66\xcc\x0c\x20\xba\x86\x57\xb0\xde\xf8\xa4\x2e\x84\x45\xad\x20\xf0\x03\xa2\x84\x76\x9d\xac\x28\x1f\x3b\xed\xbd\xc2\xc6\x76\x39\x4e\x33\x70\x86\x4c\x70\x81\x4b\x9a\xd4\xd4\xae\x5f\x89\xb8\x61\x8b\x3f\xba\x1e\x28\xc6\xe2\xeb\xaa\x1e\x9c\x13\x8c\x0f\xb3\xa1\x4e\x29\xb2\x7a\xbb\x78\xd5\x9f\x04\x7e\x87\xc2\x11\x52\xe6\xd1\x81\x22\x80\xf4\x9a\xab\x30\x93\x8f\x15\xfc\x26\xb3\xa3\xb2\xa0\x22\xd6\x54\x6b\x76\x8e\x91\x6f\x58\x54\x88\xad\x30\x72\x81\x6c\xe0\x87\xae\x95\x93\xdb\xa1\xcd\x0b\xbe\x7a\x2e\x4c\x04\xde\x73\x6c\x2a\xef\xd4\x8f\xd7\xf7\xaa\xa6\xec\x61\x6f\x29\xc3\x5f\x21\x16\x16\xc5\x9b\xba\xa8\xc9\x2d\xe6\xf4\xff\x4c\x8a\xdf\xd2\x6d\xff\xb3\xff\x1a\x21\x94\x92\x8d\xde\xcf\xb9\x09\x18\x53\x65\x24\x07\x4b\x43\x38\x99\x5a\xc2\x32\xb7\xf0\x2b\x1b\x1e\x7a\xbd\x1a\x65\xfd\x28\x8e\xd2\x29\xf7\xf8\x36\xae\xc1\xb1\x23\xa9\x00\x9f\x3f\x00\x68\xde\x7b\x96\xc9\x28\x26\x86\x84\x96\xe2\x24\x42\x92\x20\xa3\x3e\x4d\xbe\xa0\x48\x2b\x17\x25\x8d\x30\x44\x51\x9f\xab\xd1\xb0\xcf\x9d\x0b\xcc\xcb\xee\x28\xb5\x09\xcb\x89\x08\xb8\x41\x01\x1d\x82\xbd\x6e\x95\xac\x44\x85\x22\xc3\xdd\xb1\xe1\xab\xc5\x3b\x3a\x3e\x58\xec\xc6\x86\xe2\xf5\xb9\x03\x6e\x24\xb5\x5a\x25\x32\xaa\xba\xdd\xc9\xbf\x42\x9b\x3f\x1b\x3a\x0d\x2f\xe1\x8b\x50\x63\x09\x87\x55\x31\xc9\x24\x87\x22\x5b\xac\x2b\x9f\x71\x2c\x98\x50\x73\x51\x50\x62\xd3\x4f\x6c\x11\x85\xd3\x3e\x13\x3f\xa9\x41\x81\x17\x03\xcf\x10\xcb\x54\xfc\xfc\x57\x6a\x7e\x24\x2f\xfb\x7d\x68\x8b\x63\x84\x41\xa8\xe8\xab\x7b\x92\x81\xd5\x26\x85\x31\x03\xa6\xf4\x96\xe3\x91\x61\x4d\x73\x11\xae\x7c\x56\xd5\xd5\xb2\xd0\x8e\xb8\xe9\x7e\x70\xc6\x75\x35\x15\x4b\xe3\x09\xc5\x3d\x5f\xe7\xaf\x9e\x3b\xd0\x1e\x98\xd1\xc8\x4a\xe1\x44\x00\x3c\xbe\x80\xa8\x27\x38\xe3\xbe\xe5\x74\x0a\xb6\xef\x3d\x3d\x95\xf7\x9e\x56\xfa\xb5\xd9\xb2\x0d\x59\xe8\x5e\x50\x59\xde\x19\x5c\x70\xc6\x49\x66\xd6\x7a\x10\xb1\x42\x61\xf4\x36\x36\x15\x0a\x66\x57\x02\x9f\xa3\x80\x45\x42\x7a\x7a\x8a\xf9\x05\xc9\x33\x62\xf6\x69\xd5\x21\x30\xc3\xca\x10\xf4\xcc\x90\xbc\xa1\x42\xab\x2c\x3a\xb4\x8a\xa3\x73\x31\xab\x56\x64\x7b\xd0\x3e\x78\x5f\x09\x7b\xbd\xaf\x66\x61\x2d\x8f\xb4\xd1\x45\x3a\x99\x9a\x25\x77\x61\xd5\xb2\x97\xdf\x3f\x64\x14\xb7\xf3\xa7\xd4\x15\xe0\x63\x25\x29\x96\xa4\x85\x4b\x3a\xb1\xc9\x6e\xa1\x7c\xc6\x27\x7a\xc6\x28\xed\xef\x54\xd4\x8c\x27\xf4\x84\xdb\xbd\xb1\x9f\xf9\x7c\xa2\xe3\x43\xb4\xd6\x86\x5f\x70\x3f\xd3\xa5\xa1\x81\x1d\x5a\x6c\x73\x16\x85\xa0\xd7\x2e\x02\x11\x0d\xd8\xd3\xf8\xaf\xfd\xda\xaf\xa9\x98\xff\x02\xdd\x0f\x1f\xd7\x22\xba\x83\x33\x2f\xb5\xbb\x51\xd2\x47\xf9\xdb\x71\xbc\xcc\xcf\xbb\x6d\xba\xd7\x95\xbf\xf3\xc2\x4e\x6b\x66\x51\xdc\x96\xd8\xc8\x96\x62\x1c\xa9\x3e\x0f\x3b\x7a\xaf\x86\xbc\xaa\xf6\x4e\x62\xd7\x30\x2a\x21\x55\x6d\x5d\xe2\x7e\x08\x61\x74\xc6\xe0\x77\x2c\x09\xfc\x1e\x2a\x34\xf7\x54\x5e\xca\x9d\x79\xf4\xc0\x1f\xed\x34\x50\xb8\xad\x46\x76\x0d\xe0\x17\x47\x2a\xbb\x34\xb3\xc5\x2c\x3d\x28\x71\x5e\x53\xbc\x71\x89\xed\xa7\x45\x84\x2e\xed\xb4\x0a\xf3\x0f\x07\x2a\xcc\x3f\x4c\xd6\x02\x2f\x98\x35\x4f\xf9\x24\x98\x9c\x67\x4c\x05\x99\xbe\xe0\x29\xa6\xaa\xaf\x11\x26\x2a\x17\xa6\x11\xc4\x92\x07\xb2\xd0\xa4\xc4\x74\x9a\xa3\x59\x77\xb4\x57\xd7\xb7\x4d\xaa\x1d\xda\xeb\x92\xe9\xe7\x29\xa9\xd8\xda\xa5\x47\xb8\x1f\xe0\xf2\x94\x0d\x7a\xd5\x31\xcc\x68\x35\xc3\x40\x19\x8d\x9b\xec\x00\x19\x14\x05\x3b\x27\x35\x3c\x45\x77\xf9\x0f\xe9\x45\x30\x7c\x9f\x1e\x89\x80\x39\x1a\x2c\x5a\x91\x19\x88\xc8\x3b\xc3\x77\x0d\xc6\x02\x09\xf2\x5d\x85\xd3\xdd\xad\x8c\x85\x4d\x5e\x4f\xd7\x01\x7c\x3e\x38\xd3\x3c\xdf\x22\x61\xe1\x72\x4c\xb5\x73\x49\x40\xf0\x18\xff\xb1\x12\x27\xf9\xc7\x8a\x85\x33\x4c\xcb\xa4\xb0\xd9\xc8\x64\xd0\x98\xc2\x1d\x7d\x9f\x6c\x99\x26\xa1\x44\xf9\xe2\xb8\x8f\xcf\x63\x6b\x56\x54\xe7\xe3\xd1\x8e\xe7\xbf\x3a\xea\x49\xb9\xae\x83\xba\x17\x4b\xfc\x8f\x6a\xbc\x78\xfb\x16\xda\xa3\x6e\xae\x35\xb5\x8e\xab\x0d\x75\x4d\x2f\xea\xad\x49\x8c\x4b\xb8\x32\xad\xe8\xd9\x03\x05\xba\x38\x3f\x56\x15\xc4\xb3\x2a\xa7\x3f\x5b\xa3\x98\xa9\x76\x58\x62\xcb\x2c\x8d\xd3\x7e\x94\xb3\x47\xd0\xec\xda\xe2\x4f\xeb\x9b\xb9\x9d\x17\x69\xda\xd3\x33\x3a\x27\x94\xfe\xca\x89\x26\x4a\xeb\xe5\x28\x06\x54\x1b\x59\xf8\x54\x67\x6a\x69\x66\x3f\x0f\x79\xa3\x02\x77\x45\x8d\x6f\xff\x58\xcb\xf3\x15\xa6\x28\x8b\x34\x5b\x57\xb0\xf0\x8b\x4a\xf9\xfe\xa2\x1e\xdc\x8a\xc8\xaf\xef\xd2\xe9\x3e\x55\x6d\x64\x6a\xb6\xe5\xa4\xa5\x18\x46\x86\x5c\xe9\x24\x2c\x01\x9f\x60\xad\x4b\xe9\xc0\x9b\xf8\x24\x32\xbb\xe9\xef\x04\x78\xe8\x5b\x63\x3b\x9f\xec\xe8\xf2\xd3\x45\x05\x63\xb8\x42\xd5\x6c\xb8\xec\xe3\x68\xba\x0a\xcd\xbd\xc7\x96\xdd\x51\xe3\x95\x61\x3a\x1c\x95\x85\xcd\xf2\xbd\xca\xa8\x30\x68\x0e\x80\x83\x1d\xa8\xd0\xb9\x5d\x5b\xbd\x07\xdc\x15\x17\x29\xb9\x23\xbf\xe1\x8b\x94\xa7\xa8\xf6\x84\x68\xf6\x53\x85\x2b\xbb\x1d\x50\x97\x10\x30\xb9\x1b\x48\x25\x9c\xb6\xa9\x2b\x77\x5d\x1b\x4f\x0c\x51\x36\x20\x49\x96\x6d\x96\x95\x6f\xbe\x19\x29\xb1\x8d\xf7\x35\xab\xe9\xfb\x81\xd7\xc0\x08\xb3\xa8\xda\xa2\x3c\xe4\x05\x9f\xf3\x09\x6c\x22\x9f\x34\x38\x90\x45\x82\x70\x4e\xb7\x14\x29\x8a\x56\x87\xc5\xba\x87\x3f\x98\x56\xe2\x76\xc7\xc6\xcf\x4e\xaa\xba\x1d\x9c\x59\x68\xbf\xf0\x42\x4b\xb1\x71\x01\x98\x20\x21\x60\x5d\x0e\x1a\x02\xdf\x53\x8a\x90\x01\xed\x65\x54\xb8\xee\x28\x1e\x9c\x0b\xea\x2d\xf6\xa2\x55\x9b\xf5\x25\x5a\x14\x8d\x45\x3f\x35\xb6\xa9\x46\xc4\x87\x25\x09\x4e\x7b\x96\x3f\xf0\xf3\xf0\x71\xe7\x09\x4f\xc4\x55\xf6\x73\xc5\xb7\x7b\x5b\x49\xc6\xde\xae\x8d\x54\x1c\x78\xb9\xdd\x8b\xde\x7c\x93\x4a\x82\x14\x83\x22\xe8\x00\x6b\x20\x92\x95\x3b\x81\x07\x52\xfd\xd0\x13\x91\xd9\x38\x15\xc6\x5e\xa9\x1b\xd3\x66\x81\x4d\xbc\xa0\x30\x01\xc7\x34\xd3\xe4\xce\x8e\x2f\x6c\xd7\x19\x7b\xe7\xe7\x89\xee\x92\x76\x31\x6c\xd2\x61\x65\x9f\x0e\xab\x10\xbf\x6f\x68\xfe\x9d\x71\x46\x52\x61\xf3\xf5\xe6\xb3\x2a\x48\xcd\x32\x4b\xe2\xeb\xd5\x37\xa1\x7b\xc4\xec\xeb\x7c\xa2\xd2\x78\x93\xf4\x6d\x86\x78\x42\x31\x9b\x28\x0a\x3a\x4f\x47\x37\xc1\xd0\x5f\xc3\xa4\xcc\xce\xb5\xb3\xb2\x6b\x13\x9b\xbf\x51\x92\x4e\xaa\x63\x27\xf8\x44\xb1\x48\x7c\xa2\xa0\x11\x85\xc9\x57\x58\x2e\x0b\x05\x98\xbb\xf4\x87\xe8\x9b\x9e\x19\x4f\xec\xba\xed\x6e\xf3\x85\x17\x98\x3c\x8c\x43\x60\xe1\x36\xa1\x37\x22\x3c\x22\x7b\x55\xeb\xee\xcd\x29\x2d\xda\xcd\x11\x9b\x18\x40\xda\x92\xf0\x30\x27\x75\x31\x38\x13\xa9\x6f\x95\x17\x4b\x2b\x78\x53\xd9\xc0\xc2\x1e\x9a\x52\x74\x69\xf7\x27\x84\xc5\x7c\xee\x78\x5e\xed\x04\xd4\x30\x4d\xb6\x8e\x44\x86\x79\xfa\x34\x43\xe2\x79\xc5\xa8\x1b\x96\x59\x66\x93\xa2\x4a\xff\xfd\xe4\xc0\x85\x40\x49\x9e\xef\xed\xf8\x6e\xf6\x2e\xda\x28\x08\x02\x1e\xe9\xa8\x64\x1b\x36\x5c\xcf\x05\x21\xf5\xdd\x03\x62\x40\x98\x35\x20\x7a\x11\x56\xf3\xdc\x15\x4a\x16\x8f\x6f\x28\x26\x01\x1e\x61\x41\x16\xf9\x65\x13\x5b\x78\x1e\xa5\x2c\x3c\x2c\x89\xa0\x82\x38\x3e\x64\xe6\x22\x5a\xc6\xcc\x85\xa8\x5d\xd0\x6f\x38\xe5\xd0\x05\xaf\xf8\xe2\xab\x2e\x76\xd5\x26\x45\x69\xe2\x78\x7d\xb7\xa2\x1c\xba\x17\x28\x9a\xb5\xb3\x8a\x1e\xf4\x67\x81\x07\x56\xfd\x82\xc6\x53\xf0\xef\x98\xa9\xc2\x3a\x04\xe3\x1f\x0a\x59\x75\xe0\xfb\xec\x5c\x3b\x1f\xd9\x30\x5a\x8e\x42\xac\x3d\x98\xbc\xe3\xca\xfc\x1d\x6f\x08\x0f\x16\xdb\x79\x19\x0e\x5a\xe4\x78\x59\x00\x8d\x76\xba\x88\xa1\x39\x0a\x7c\x12\x13\x6b\x29\x79\x86\x1b\x08\xea\xf8\xa4\x49\xae\x31\x1c\x98\xc2\x9a\x12\x45\x57\xa7\xa2\xb6\x20\x40\xef\x0f\x54\xaa\x3b\x28\xf3\xae\x49\x7a\x2d\x80\x62\x98\xb2\x08\xfa\xec\xc2\x5f\xf4\xb4\x12\xf4\x78\xa3\x8c\xb2\xc8\xe6\x53\x3e\xac\xdb\x9a\x50\xe8\xad\x1e\xac\x98\xf1\xa7\x54\x25\x8c\xa4\x0b\x50\xba\x60\x1a\x09\x42\x12\x09\xa5\xc4\x76\xe3\x41\x04\x7d\x61\x3a\x1c\x46\x9e\xe4\x0d\x41\xfd\xd1\xc0\xe3\x4c\x8f\x2a\x30\xfa\x5a\x94\xdb\x30\x33\xe1\x4a\xde\x52\x7a\x8d\x7a\xfa\x57\x37\xc3\xde\x28\xcd\x7a\x8c\xcc\xce\x81\x05\xab\x67\x2a\x92\xd8\x7e\x2b\x7f\xeb\x9b\x0b\x53\xe4\xfc\x61\xaf\xc0\x89\x3f\x41\x3a\x8d\x76\xee\xe5\xf1\xa3\x7c\x0f\xed\xaf\x4f\x2b\x16\x3c\xc0\xb5\x51\xb1\x7a\xa0\xfa\xef\xaf\xd1\xfb\x10\x74\xb3\x64\x37\x23\x9b\x98\xb8\x20\x15\x4c\xaf\xe2\xee\x31\x73\x8f\x2b\x8e\x96\x7b\xf8\x75\x69\x27\x35\x90\xf7\x2c\x9b\x0c\x9d\x1a\xad\xcd\x2d\x46\xdd\x87\x8e\xa1\xc9\x46\x24\x1d\x33\x5d\x85\x32\x8e\xc0\xd4\x17\x12\x3e\x55\x85\xfd\x0f\x61\x51\xf9\x3f\x6a\x25\xad\xb9\x03\xed\x38\x5a\x26\xcf\x88\x4e\x3a\xd3\x9e\xd2\x5e\x10\x0a\x54\x1f\x89\xbe\x9e\x52\x17\x64\xa7\x22\x7e\xf8\x0f\xf5\x26\x19\xfa\x5d\xb7\xc9\x3e\x01\x6c\x80\x56\x15\xe0\x56\xf7\x9b\x02\xad\xd0\xc6\xd1\xd0\x26\x28\x4a\x6c\x61\xa2\x76\xeb\x52\x43\xb5\x6a\xb1\x5a\x65\xae\x5c\x08\x43\x7b\x44\x71\x0f\x1f\xf1\xfe\x3e\xca\x07\x29\x4f\x01\x3a\x51\x59\x0f\x14\x3d\x1d\x78\xba\x83\xac\x4c\x1e\xd3\x44\xb7\xef\xd2\x2b\x84\xd9\xe2\xca\xa7\x83\xbe\xbb\x18\xec\xc7\x63\x45\xfe\xff\x19\x62\x4c\x97\x37\x57\xcf\xc7\x41\x43\x5c\x3d\x69\xaa\xe3\x27\x8a\x8f\x05\x4a\xc9\xf2\x91\x0d\x15\x62\xd9\x55\x1b\x63\x7c\x69\x7e\x9e\x8b\xd0\x9f\xe3\xca\xf9\xa4\x51\xf2\xbf\x30\x71\x64\x12\x52\x87\x70\x90\xe4\x13\x7a\xc1\xa3\x03\x8b\x91\xe5\x2d\x45\xb6\x98\xd9\x51\x9a\x15\x5f\xa9\xae\x6c\x42\xf7\x15\x5b\xf6\xe3\x40\x8f\x1b\x33\x9a\x07\x27\x80\xf8\x22\x35\x80\xf4\x80\xe3\x9e\x5f\x7c\x79\xbf\x13\xf3\xa0\x4b\x60\xd5\x2a\xa5\x7b\x78\x0e\x8f\x0f\x89\xf8\x59\x58\x7b\x3e\x51\x28\xbb\xfb\x3a\x12\xfb\x43\xc4\x6b\x88\xd1\xbe\x68\xa8\x26\x2f\xa2\x74\x9d\x44\x46\x19\x2e\x9e\x27\xe4\x93\x87\xa2\x0e\x7b\x16\x95\x46\x14\xf8\x8e\xe9\xb1\x88\x63\xb5\x9f\x9a\x3b\xa0\x4a\x7d\x78\x40\xa2\x53\x41\x9f\x13\x24\xee\xb3\x0a\x97\x20\xf3\x80\x56\x91\xb8\x5f\xc4\xa3\x66\xec\x6a\xe0\x31\xea\x17\xa8\xb5\x22\xf1\xb7\x9f\xc4\x7b\xdd\x24\x36\xca\xd2\x29\x2d\x60\xa1\x45\x2e\xe8\xd7\x99\x55\x7f\xec\x61\xee\xa2\x90\x34\x88\x46\x3b\x7d\x3e\x3a\xad\xf5\x1e\x77\x03\x46\xee\x78\xfb\x17\x64\x01\x5f\xc2\x8b\x12\x73\xf2\xec\xa4\xf0\x29\x09\x7f\xc1\xbd\xc0\x0f\x5f\xc6\x35\x08\xe2\xa8\xe5\x98\x8e\x7e\x30\x01\xf6\x29\xfb\xdf\x00\x97\x38\xb6\xcc\x53\x08\x60\xb0\x1b\x20\x70\x29\x39\xa7\xca\xb0\xd2\xa4\x88\x92\xd2\x12\x8a\xc4\xa9\xa9\x3a\x14\xc9\x69\xa2\x12\x63\xa8\x37\x75\xb9\x1d\xb7\x5a\xb5\x68\x11\x4a\x20\x37\x70\x82\x4c\x0e\x9d\x73\xb6\xe6\x96\x97\x66\xda\x45\x16\x8d\x5c\x4f\x1c\xf3\x60\x87\xf0\x34\xf8\x64\x82\x15\x20\x5f\x59\xdf\xe9\x0b\x5b\x22\x8b\x27\x3c\x11\xe4\xa1\xb1\x9e\x40\x4f\x8d\xba\x2c\x2b\xb0\xc3\x75\x6c\x35\xcd\x32\x32\xdd\x70\xf5\x11\x81\xf2\xd3\x47\xf8\x24\xd8\x5e\x80\x59\x58\x68\x9b\x7e\xba\xbb\x8a\x8c\xb0\x05\xff\x98\x2c\x10\x8c\x39\xe6\x20\xf0\xd1\xdd\x78\xe6\x22\x09\x47\x1b\xcd\x8d\x00\x3b\xbe\xe1\x1f\x6b\xad\xa3\x8e\xcf\x3b\xac\xa9\x62\x77\xbf\x98\xb8\x6e\xc0\x27\xb5\x1b\x99\x9d\x6d\xe7\x66\xdd\x19\x6e\x7c\x1f\xe2\x6c\x3e\x56\xa9\x92\xc9\x73\x3b\xec\x8a\xb8\xb4\x43\xb2\x3b\xcf\x08\x88\x84\x90\xcb\x28\xb8\xe9\x49\xe7\x98\xd3\x6e\x1e\x4a\xf3\x00\xb9\x1b\x28\xff\xf9\x58\x8b\xbf\xa6\x65\x56\xe4\xd3\xbe\x96\x06\x9e\x54\x59\x53\x6a\x3f\xdf\x18\xab\x9a\xd4\xe9\x9a\x1b\x73\xb8\xd0\x2a\x71\x9b\x3b\xc0\x79\x25\xb3\xc7\xf0\x49\xa0\xa6\xf1\xb2\x74\x98\xa2\x18\xeb\x63\xec\x6b\x63\x25\x77\x8a\x02\x3b\xff\x87\x96\x3e\xbd\xa7\xca\x0e\x94\x85\xc4\x31\x4f\x81\xe2\x65\xde\xa4\xf7\x87\x1d\xc2\xac\x97\x02\xe2\xd9\x7e\xd1\x07\x67\x2a\x07\x10\x9b\x90\xb3\x4d\x74\x73\xbf\x80\x07\xe3\x93\xda\xcb\x7c\xe1\x05\x48\x2c\x71\x13\x47\x40\x51\xd5\x42\x11\x1e\x29\x1f\x33\xf4\x6c\x16\xad\x32\xb3\xab\x13\x51\x70\x83\x39\x9f\x28\x50\xff\xc4\xcc\x34\x01\x35\x35\xbf\x95\x04\x88\x74\x65\xf0\xe1\x57\xc6\x13\xd9\x49\x75\x9f\x30\xa5\x8f\x38\x32\xed\xcc\x76\x4d\x21\x17\x8a\xa8\x6e\x0a\xd3\x95\x7c\xd2\x00\x83\xde\xdf\xce\x8b\x75\xb7\xef\xe1\xba\xae\x05\x4a\xf9\xe0\x9a\xea\xce\xbc\x6e\x92\xd2\x64\xeb\xc0\x5f\x73\x2a\x02\xab\xee\xf2\x12\x37\x10\x7b\x3d\xd0\xcd\xf3\x06\xc6\x99\x30\x4d\x12\x53\xf6\x07\x08\xa0\xd5\xf4\x8c\xc0\x5f\x8f\xd7\xde\xc5\xe2\xcb\xfb\xdb\x79\x74\xa8\x18\x50\xcb\xc9\x51\xd1\xbb\xa1\xee\x13\x0d\x50\xd3\x97\xda\xa6\x4f\x51\xba\xb3\xda\xec\xef\xe4\xfa\x7d\xaf\x28\x8b\xfa\x83\x22\x7f\xa2\xb2\x26\x58\x7b\x1f\x04\x0a\x79\x07\x59\x22\xfe\x0f\xec\x0e\x2d\xfc\x82\x54\xee\x06\xd9\x62\xd8\x79\x50\x73\x71\xf7\x5b\xf5\xbb\x1e\xe9\x28\x71\x50\x66\x96\x41\x83\x9e\x83\x29\xd1\xbf\xf0\xac\x03\x13\x83\x18\x97\x6b\x77\xb9\x34\x43\x2a\xd7\x79\x01\x68\x0c\xf2\x5c\x86\x0d\xf2\x89\x93\x72\x8a\x2d\x0f\x11\x33\xf1\x84\xee\xa5\xb3\xec\x26\xf2\xec\xab\x0a\x07\x69\xc2\x37\xca\x08\x0c\xa0\xf9\x6e\xa5\xf0\xa4\x35\xc3\x7f\x4e\xd5\x46\xd1\x92\xd7\xd5\x58\xf8\x24\x37\x43\xb4\xe0\x78\xab\x69\x22\x52\x24\x61\x1b\x60\xaf\xa1\xc9\xec\x5a\xde\x52\xb9\xc4\x26\x7b\x1a\x81\x1e\x6c\xcf\x2c\x0e\xce\xcc\x55\x11\x2e\x15\xcb\x90\x22\x9e\x1a\xab\xf6\x0f\x4a\x7d\x92\x03\x6e\x0f\x2d\x29\xb1\xeb\xd9\x30\x72\xe0\x33\x91\xb5\xf0\x90\xb2\xba\x86\xd6\xdc\x81\xf6\x28\x4e\xa7\x54\x5a\x75\x79\x82\xb4\x11\x09\xba\x44\xcb\x35\x5f\x31\xd7\xb6\xc3\x81\xc9\xb0\x40\x95\x78\x87\x10\x5f\x9d\x0e\x3c\x4e\x71\x54\xe6\x83\x69\x35\xcd\xc1\xf8\x57\xfc\xea\x3f\xa0\x8d\xc0\xff\x11\xa8\x01\xed\x7f\xa0\x5e\xa4\x9e\x25\x57\x14\x13\x6c\xfa\xf9\xc4\x39\x96\x37\xca\x94\xf4\x52\x5b\x8e\x0f\xe5\x8c\xd2\x41\xe7\x2e\x31\x3e\x74\x4b\x01\x12\x32\x33\xa4\xbb\x71\x73\x9f\xd5\x77\xf3\x89\xca\x5e\xcb\xbe\x9d\x56\xc3\x41\x5b\x93\x92\x25\x6a\xf6\x21\xf0\xcd\xa6\x2d\xf5\x34\x8a\x41\x89\x60\x0c\x85\x03\x60\x1e\x91\x8b\x5e\xd2\x55\xb2\x1f\x34\x36\x33\xd7\xd2\x6c\x85\x96\x89\xb4\x3c\x68\x59\x6b\xb1\x7d\x34\xc7\xde\x6f\xf8\xf4\x5c\xbb\x48\x8d\x16\xd3\xfe\xa5\x12\xd3\xfe\xa5\xf2\x07\x23\x9b\x8e\x62\xb1\xc8\xae\x67\xe0\x46\x73\xce\x29\xe3\x13\xa7\x79\x6e\x49\x22\xe3\x25\x2f\xc8\xbf\x24\x7a\xcb\xd7\x15\xcc\xff\xb1\x0d\x8f\x20\x38\x32\xd6\x68\x76\xbc\x75\xa1\xe7\xa5\xb5\x81\x5d\x77\x57\xc1\xfc\xbf\x1c\xab\x94\x87\x0d\x0b\x8c\xd4\xad\x5a\x0e\xba\x34\xd3\x5e\x4f\xcb\xa4\x6f\xb3\x16\xb9\x64\xd4\x9f\x3f\x0c\x7c\x03\xfc\x43\x87\x89\xe9\xd9\x2a\xf2\x2e\x33\x24\x65\x30\x8d\x88\x40\x1d\x6f\xeb\x82\x53\x65\xdd\x54\x30\xe6\x51\x16\xe5\x98\x0b\x14\x07\xc4\x70\x10\x3e\xd1\xd8\x87\xcc\xae\x9a\x28\x46\x4e\xce\x4f\x29\x50\xe2\x8c\xb7\xd5\xc8\x0c\x27\x5d\xee\x59\x3a\xd2\xc3\x53\xaa\xbe\x10\x25\x79\x11\x15\x25\xc8\xc0\x16\x1d\x83\x37\x3d\x54\x98\xe1\x2f\xc9\xac\x39\x5c\xb0\xef\x2b\xe1\x45\x22\x5a\x7a\x1b\x1b\xd1\xfd\x87\x9b\x36\xf8\x7e\xa0\x08\x48\x03\x55\x31\x38\xd1\x34\x13\x48\x13\xba\xfd\x74\xda\x57\xc3\xfe\xb9\xd6\x05\x06\x44\x03\x1e\xe1\x67\x63\xc5\xba\x70\x35\xf8\xf3\x3e\x56\x4d\x56\xa3\x2c\x4d\x10\x2a\x89\xc6\xcd\xa2\x5f\x21\x9e\xe9\x17\x09\xbe\x63\xa2\x73\xdd\xd3\xcd\x86\xc0\xe9\xd5\xb6\x59\x33\x91\x9b\x6f\x90\xc8\x47\x21\x31\xcf\xd7\x12\xc7\x03\x2f\xb7\x7b\xb6\xb0\xd9\x50\x66\x9a\x1d\xbf\xb7\x4b\x8c\x2f\x6a\xa5\x63\x43\xf3\xc9\x32\x41\x86\xd6\xe0\xbf\x1c\x2b\xf6\x9a\x7f\xa9\x32\xf9\x7e\x66\xde\x94\xfe\x82\xeb\x95\x3a\xa2\x86\xb3\x6a\x3e\xae\x1f\x97\xe1\x8a\x43\x54\x23\x65\xe2\xea\x18\x9f\xd4\x0a\xa0\x8b\x4b\x8b\xed\x5e\x24\xfb\x56\x88\x49\x26\x1a\x87\x4f\xab\x72\x5d\x5a\xb0\x3d\x3d\x38\xe3\x08\x80\x7c\x61\x42\xcf\x98\xaf\x24\x69\xa1\xaa\xcc\xa8\x5e\xf3\xb1\x0a\xd3\x89\x8c\xbd\x37\x51\xce\xff\x38\x50\xf3\x5b\x1f\x37\x11\x2f\x2d\xa7\xd9\x50\xde\x8f\x23\x2a\x77\xd0\xb2\x7a\x19\xf3\xc5\x76\x95\xd1\x0e\x4c\xd2\x8b\x72\x69\xb6\xcb\x5b\xf1\x3c\x73\x3a\x27\x35\x43\x9b\x45\xa1\x49\x9e\xa0\xdf\x10\x5c\x1d\x6d\x3f\xd9\xd5\xd5\x23\x90\x5e\x02\x2e\x1f\x99\x3b\xc6\xf5\x35\xc1\x2e\xfe\xfd\x1e\xb5\x56\x27\xd2\x4d\xa5\xcd\xe0\x67\x7e\x5a\x4e\xa2\xec\x73\xaa\x59\xaa\xec\x50\x78\x8e\xff\x0e\xb6\x17\x92\x9e\x9d\x1d\x27\x2d\x1c\x97\xcb\xcb\xe8\xf0\x38\x8a\xc0\x05\x47\x17\x58\x03\xe1\x57\x99\x70\x34\xec\xda\x2c\x36\x49\xaf\xde\xaf\xd1\x9a\x3f\xae\x5f\xf3\x8d\xd1\x37\xe8\xfb\x65\xde\x49\xc1\x62\x8e\xab\xb6\x7f\x6c\x57\x6d\xfc\xb8\x0f\x06\x50\xf7\x90\x7e\xbd\x22\x06\x3b\x8f\x5f\xe2\xf8\x85\x5e\x86\xeb\xd5\xcc\xce\x39\x62\x42\x55\x53\xfb\x9e\xe2\xd7\xe6\xa9\x23\x54\xe1\x58\xbc\xd1\x69\x37\x57\x09\x17\xac\xe0\x17\x0e\x9d\x15\xc6\x69\x2e\x6b\x1d\x5e\x9a\xc3\x37\x3e\xa9\x95\x6f\x0f\xce\xb4\x07\x26\x5e\x46\x7b\x80\xc5\x55\x50\x95\x17\xa5\x95\x06\xa1\x84\x91\x25\x49\x2f\x85\xc1\xbd\x35\x56\x18\xdc\x5b\x81\xef\x91\x0e\xd3\xb4\x37\xad\x74\x2a\x7f\x01\x13\xcf\x27\x8a\xbc\x86\xe3\x65\x3e\x51\xdf\x90\xa4\x05\x4c\x0e\xd6\xe5\x19\xa5\x01\x7e\x66\xfc\xb8\x5b\xd0\xd9\x37\xf0\x82\x1b\xa1\xdc\x4d\xe3\x7b\x44\x53\xce\x37\xe1\xb8\x40\x7d\xc8\x5d\xe7\x08\x9c\x3b\xd0\x2e\x93\x32\x2f\xa1\xf5\xe5\xc4\xcf\x6f\xaa\x89\xc2\xb3\x8a\xcb\xfa\x98\x1b\xa4\x4c\x6c\xc1\xaf\x44\xca\xd9\x13\x45\xef\xc6\x19\x76\x3b\x21\xfa\x0e\x40\x87\x50\xe9\x3c\xad\xfb\x1d\x80\x35\x4e\x79\x41\xf3\x73\x8a\x79\xfa\x8e\x8a\x65\xce\x4c\xf0\x19\x27\x2b\x36\x23\x75\x27\x74\x66\x2f\xeb\x11\xdb\x5f\x28\x0e\x80\x9b\xb5\xc4\x6d\x69\xa6\x9d\xbf\x51\x9a\xcc\x2a\xdd\xf8\xcb\x14\xde\x60\xef\x6e\x4d\xfc\xe6\x33\x93\xfd\xfe\x85\x85\xf6\xdc\x81\xbf\xd0\xfa\xe6\x6f\x71\xda\xf0\x67\xe4\x53\xf1\x25\xef\x51\x57\x4c\x58\xcb\xe8\x11\xd1\xc5\xfd\xf7\xcf\x6e\x90\x08\x20\xbe\xfe\x5d\xe4\x71\xd8\xf3\xef\x8e\x7d\x8a\x76\x87\x23\x75\xf8\xe4\x4d\x1a\x50\x75\xed\xd3\x6a\xcd\x21\x2f\x3b\x3c\x56\xd0\x06\x0c\x49\x8b\xc4\x16\xb5\x5f\x50\xde\xfa\x57\xa4\xbe\x86\x4f\xfc\x3f\x44\x97\xc3\x50\x43\x3c\xa1\x9b\x01\xda\x58\x12\x90\xa8\x42\xdd\x5e\x52\x47\x40\x13\xff\xdd\x71\xeb\xdb\x73\x1c\x88\xfc\x0e\x26\xa9\x64\x42\x75\x6a\xff\xdf\xf8\xb6\x2c\x1a\x7a\xb9\x28\x1b\xee\xd8\xa0\x1a\x34\x8a\x38\xf7\xc8\x44\x20\x74\xbd\x4b\xa1\x8b\x6c\x77\xda\x50\xd8\xa0\x1c\x1e\xc3\x44\xfc\x69\xa0\x10\xa1\xe7\x83\xd6\x0b\x2f\x4c\x8a\x49\x08\xd9\xbb\x62\x0f\xcf\x4c\x12\xa6\x22\xdb\xd5\x48\x52\xe7\xf9\x4f\x96\x4b\xeb\x34\xad\xb9\xfc\x06\x03\x25\xb5\xb8\x27\x54\xe5\x36\x2f\x76\x6a\x95\x19\x5f\x50\x9d\x10\xbb\xf9\xbf\x69\xb5\xc0\xbb\xfe\x88\xde\x06\x1c\xf9\xe1\x26\xc4\xc2\xb2\x89\x63\x84\x40\xb8\x11\x94\xc6\xf0\xe3\xef\x93\x2d\x91\xd9\xe7\x6a\x59\x08\x23\x4d\xd3\xfc\x4f\x98\xc6\xb1\x19\x39\xad\x68\xc7\x22\xee\x76\x1c\xcf\x26\xe2\x75\x5f\x6f\x30\x20\xed\x28\x59\x76\xf4\x98\x4d\xec\x2b\x13\x24\xbe\xab\x51\x8f\x64\x61\x7c\x01\xe7\x76\xa0\xb5\xba\x15\xdc\xfc\xf6\xd8\xa7\x07\x27\x1b\xfb\xb9\x50\x59\x73\x3c\xde\x7f\x77\xec\x5f\xdd\xdf\x55\x39\x59\xd7\x64\x3b\x55\x75\x02\xb2\x90\xe8\x36\xdd\x81\xb3\x15\x50\x4e\x4b\xf8\xe6\x7e\x04\x31\x65\x78\x67\x2f\x0e\xd3\x4d\xa9\x77\x35\xa5\x50\x87\x47\x94\x8e\xc9\xde\x8e\x37\xcf\x9a\xab\xc8\xf6\xcd\xae\x6a\xeb\x3c\xd1\xf1\xd1\xda\x9d\xb1\xd7\xcf\x07\x63\x23\x2b\x33\xe1\x8a\xf0\xcb\xdc\xfa\x10\xca\xc9\x06\x0b\x34\x4a\xa3\x44\x8c\x2a\x36\xe1\x4f\xb1\xaa\xf8\x44\xe5\x6d\xc5\xc0\x9a\x42\xc8\xdb\x59\x14\x0e\xab\x56\x14\xe2\x94\x36\x29\x05\xad\x26\x7e\x9c\x7e\x9f\xa7\xd1\x15\xa4\x12\x59\xd9\xd6\xbb\x63\x35\xee\xf4\x19\xac\x8b\x63\xb8\x52\xa2\x07\x74\x7f\x8c\x17\x55\x6c\xf5\xef\x6a\x56\x9a\x33\xd8\xcc\xc2\x89\xe5\x26\x1b\x7e\xfa\x4e\x4d\x92\xac\x4a\x56\xf3\x32\x0c\x6d\x9e\x2f\x97\x71\xbc\x8e\x3c\xce\xcb\xb5\x3a\x12\x8f\x5a\x6d\x7d\x7e\xbe\x1d\xa7\x6b\x53\x1e\xfb\x84\x1c\x14\xb6\x0e\x1f\x15\x4d\x3d\x3f\x99\x36\xb2\x05\x83\xad\x27\x94\xa2\xf8\xc4\x85\x1c\x85\xcd\xb2\x34\x9b\x52\xd8\x0d\x04\x6f\xbf\x41\xc1\xea\x09\xa5\x1b\xe7\x89\x3c\xfa\xb6\xca\x0f\x54\x65\x87\xc7\x66\x84\x1a\xcd\x2d\xc8\x7d\x9f\xa9\x26\x52\x94\xac\xa6\xf1\xaa\x25\xb4\x25\xdc\x16\x68\xbc\x84\x66\xc5\xeb\x6f\x9e\x01\xc4\x56\xb8\x58\xd4\xe4\x44\x99\x45\x5c\xd3\xc5\x6e\xfb\x0e\x6e\x8a\x4f\x1a\xc5\x48\xf3\x28\x31\x45\x66\x26\xb8\x9d\x59\x63\x8d\x4f\x9a\xda\x1f\xc3\xb4\x88\x96\x39\xe8\x74\xc3\x35\x7e\xd0\xa6\x8a\x5c\xf8\x9a\xd2\x01\x19\x4a\x60\xc0\xae\xc0\x50\x03\xce\xf1\x93\x71\xeb\x37\xbf\x25\x99\x68\xe0\xe1\x83\xe7\xc8\x41\xcb\xc8\x99\xcc\x99\x74\x4d\xd6\x37\x91\x4c\x28\x48\x43\x5c\x31\xf2\x3d\x9c\xba\x64\xdd\x16\x8f\xfa\xf5\xf3\x28\xed\x57\x27\x96\xeb\x1b\x8a\x37\xe9\x77\x19\x04\x34\xd6\xf1\xf4\xd8\xeb\xdf\x9f\x21\xcf\x8b\x2c\xf7\x09\x88\x62\x6b\x82\x01\x6e\xac\x37\x0d\x95\xf7\xac\x29\x06\x00\xc7\x71\x13\x77\xac\xf4\x44\xb0\x64\xe1\x64\x2f\x28\xb0\x54\xcf\xac\x3f\xaa\xae\x71\x07\xb1\xef\xc2\x0f\xa0\xba\x42\x6b\xca\x3c\xa7\x86\x77\x6f\x06\xaa\x9c\xc0\x60\x45\xec\x85\xcb\x94\x91\x30\xb5\xe1\x78\xa2\xd3\xed\x23\xbe\xbd\x35\x0a\xf0\x7d\x0b\xed\x91\xc9\x4c\x2f\xca\x51\x31\x41\xe5\x8a\x45\x1b\x61\x00\x2e\x4f\x84\x27\xef\xa9\x54\xac\x17\x01\xd3\x08\x62\x86\x09\x5a\x7a\x09\x45\x7d\xc1\x19\x92\x9a\x1c\x79\xea\x0a\xfb\x47\x0a\xee\x90\xa4\x49\x5e\xa4\x23\xd5\x51\x3f\xaa\x46\x6f\x98\x96\x43\x26\x23\x9e\x99\x80\xba\xc6\x91\x49\x42\xdc\x84\xf0\xe0\xb7\x1c\xf9\xd1\xd5\xc0\x93\xe7\x1c\xd7\xdc\x6c\xd5\x07\x4d\x94\x00\x43\x85\x9e\xe0\x4f\x15\x44\xf0\x4b\x4d\x7e\x77\xd6\x95\xaf\xbb\x69\x96\xd0\x66\xc6\x52\xbb\x35\x56\xa3\x83\x87\xf1\x56\x60\x38\xe0\x40\x10\x52\xde\xf7\x0c\x45\x61\x98\x66\xbd\xdd\x1e\xe6\xc6\x7d\xae\x09\x62\x3b\x98\x24\xb0\x57\x72\x61\x9e\x5f\x84\x83\xcd\x2c\x2c\xf0\x25\x03\x1b\x0c\x7f\x54\x27\xc8\x7f\xed\x35\x35\x0b\x29\x98\x3d\x0d\xe0\xab\xc1\x1b\x66\x67\x27\xa8\x2b\x5d\x63\x77\x12\x3d\x59\x0f\x4f\xda\x99\xcd\xd3\xb8\xa4\xb8\x5e\x4d\x1b\x9d\x1e\xfb\x81\xac\xff\x38\x09\x23\x52\x80\x3d\x53\x98\x38\xed\x97\x56\x77\x8e\x80\xa6\xe4\x63\x15\x21\xcc\xcc\x2c\x4c\x10\x3c\x9d\xd7\x04\x4f\xe7\x35\x6d\x48\xc9\x82\x66\x78\x9c\xb7\x34\x06\x82\xbb\x0e\xd8\xa4\x47\xb7\x07\xfc\x2f\xb6\x5f\x99\x3b\x40\x45\x30\x89\xc5\x3d\x9d\x37\x0a\x79\xc8\x19\x21\x4f\x08\x22\x93\xb7\x9d\x68\x8b\x09\x43\x1b\x5b\x45\x28\x85\x57\xf8\xa7\xd8\xbf\x7c\xa2\x5c\x96\xc9\x86\x39\xc1\x14\x26\x0a\x0f\xcc\xd3\xe8\x71\x7c\xbf\xf6\x34\xe8\x15\x99\x3e\x5d\x6b\x77\xd8\x74\x68\xab\xdd\x88\x58\x87\xb5\x29\xc7\xbe\xfd\x75\x7b\x42\x59\xee\x6b\xbe\xab\x32\x1a\x65\xe9\x28\x8b\x14\x99\xa0\xc4\xcf\xaa\xef\x74\xbe\x56\xa3\x00\x00\xcd\xd8\xdc\x64\x96\xb9\x0d\x51\xfe\xbc\xaf\xf1\x3b\xf7\x5d\x65\x36\xcd\xc2\x01\x8d\x75\x4f\xf9\x16\xf4\x26\x3d\x3b\x47\x07\xe4\x86\xa8\x37\x54\x3c\x1e\x9a\x0c\x6e\x4f\x3a\x29\x1e\xb5\x79\xaa\xd6\x79\xf9\xf5\xb6\x71\x54\x59\x42\x11\x5f\x59\x7e\x21\x8f\x57\xb3\x51\x6b\x16\x31\xf4\xab\xbc\x89\xd1\x34\x73\x04\xe3\xd5\xad\xa3\xef\xfc\x59\x23\x47\x6b\x1e\x66\xd6\x8d\x93\x69\x49\x3e\xa9\x74\x69\xa0\x42\xd2\xe3\x76\x25\xec\xf3\x6d\xea\xd5\xe1\xe5\x5e\xc7\xd6\xe7\xff\x18\x7b\x74\xfd\x75\x25\x9c\x3c\xb4\xc4\xa6\x42\x55\xd4\x97\x3c\x0b\x69\xb5\xae\x50\x00\xc7\x6c\xb3\x8a\xe4\xe6\xe4\x3f\xd4\x93\x4c\xd2\x04\xaa\x35\xf8\xaf\x5f\xd2\x8f\xf1\x71\x13\xb9\xd9\xc8\x64\x2b\x6b\x66\x5d\xf5\x91\xdf\x52\x7d\xe4\xb7\x3c\xee\xab\x5c\x67\x88\xda\xa2\x56\x81\x7f\x69\x22\xb9\xc0\x63\xc1\xd4\x1a\xfc\x1d\x30\xb7\x32\x2a\xd6\x80\x93\xab\xdc\x4b\x94\x84\xa8\x55\xba\x05\xe3\x17\x4f\x23\xbd\x03\xd4\x85\xc8\x15\xc3\x69\x5c\x0b\x14\x01\xd5\x69\x2d\x17\x7b\x54\xb9\xb2\xc4\x76\x33\x93\xaf\x98\x69\xad\x97\x38\x56\x75\x99\x13\x0a\xa1\xfc\xbe\xd2\x5c\xfe\xc3\x6a\xcb\x6b\xbb\xb1\x34\xd3\xfe\xcb\xc8\xcd\x10\x13\x42\x44\x1d\x79\xf1\x35\xfc\x3c\x92\x88\x3d\x1d\x1f\x20\x3a\x11\xcb\x83\x4a\xb8\xd2\x35\xa4\xaf\x4d\x50\x6f\x3c\x4c\xa8\x6a\xb9\xcc\xca\x15\xb3\x66\xd4\xc0\xd2\x4f\x61\x16\xf9\xa4\x56\x17\xda\xb7\xd0\x5e\x2e\x93\x90\x37\xbe\x63\x30\x63\xf6\x48\x3e\xa9\xc1\xd6\xe5\xf7\x78\x51\x02\x5e\xa2\x81\x1c\x7c\x5c\xf3\x43\xf3\xf3\x6d\x3b\x1c\x31\x4f\x27\x92\xaa\x93\x81\x4f\xb0\x4e\xd6\x22\xab\x57\xe6\x0e\xb4\xbb\xd6\x64\x1c\x18\x62\x5f\x30\xd3\x33\x9f\x34\x28\x5e\xcf\x41\x38\x3d\x4a\x86\xd2\x71\x77\x49\xb2\x97\xdd\x52\x53\x13\x79\x6a\x32\xdb\xa3\x59\x1f\x37\x07\x5c\x25\x36\x30\x05\x5f\x06\x1e\x80\x88\xe8\xd5\x6b\xd9\x2c\x3a\x2d\x1b\xaf\x6b\x73\x49\x3b\x1f\xbb\x86\xb1\x2c\x17\x55\x79\xee\x59\xa4\x0a\x70\xff\xf7\x02\x19\x3b\xb3\x49\x98\x96\x99\xe9\x4b\x7a\x8f\x1d\xfd\x81\x9a\xd6\xfd\x40\xcb\xa9\x1c\x1f\x6b\x0e\x80\xd5\xc8\x95\x05\x44\x0f\xd9\x87\x5c\xcc\x02\x0c\x5f\xf0\x40\x0d\x89\x56\xc1\x5f\xda\x52\x31\xcb\xcd\xb1\x6a\xe0\x69\xfa\xfa\x37\xa3\x75\xc3\xb6\x55\xaa\xeb\xb4\xbc\xa4\x5d\xa9\x58\x99\x97\x97\xa3\x30\x32\xf1\x6e\x3f\x87\xf6\x39\x6e\x5e\x50\x39\x6e\x8e\x1e\x38\xa8\x57\x45\x2d\x47\xb7\x5f\x59\x82\x17\x99\xf5\x4f\x03\xdf\xf3\xad\xf2\x7b\x3f\xb6\x68\x92\xfe\x1e\xfa\x0a\xa1\x6e\x50\x33\x46\xe7\x34\xc9\xfd\xef\x04\x7e\x2e\xff\xf2\x58\x53\x36\x9c\x51\x0a\x64\xc7\x70\xfb\xc0\xe8\xdd\x0c\x14\x40\xfc\x52\x8d\x73\x64\x7e\xbe\x6d\xe2\xc2\x66\x89\x29\xa4\x59\x8f\xcf\xc1\x5a\xf0\x71\x4d\xae\x80\x5c\x67\x7f\x90\xe6\x45\xb7\xcc\xfd\x1e\x42\xfd\xe6\xaa\x52\x23\xbb\x5a\x8b\xb1\x7e\xe3\x15\x42\x01\x96\x49\x94\x17\x93\x5c\x8f\xc7\xf5\x20\xec\xf1\x49\x22\xb9\x24\xdd\x33\xe5\x45\x29\xcf\xc1\xbb\xe1\x27\xd0\x13\x71\xef\x73\x7e\x7e\x69\x0b\xf5\x16\x44\x68\xa7\x94\x57\x06\x02\x01\xcd\xbe\x0f\x41\xe2\x79\x3c\x78\xda\x81\xf0\x4d\x16\x9b\xc2\x24\x8c\x61\x97\x20\xdd\xdb\xee\x3a\x02\x9b\x20\xfe\x16\x15\x21\x66\xe1\xd3\xda\x28\xe7\x54\xdd\x17\xa4\x9e\x3b\x3d\xca\x86\x27\xd3\x01\x5a\xfd\x10\x60\x3f\x36\xeb\xa8\xa7\x60\x30\xf5\xb3\xc0\x9b\x51\x4d\xe8\x16\x9b\xf5\x9c\xaa\xc8\xe8\x8a\x5e\x1b\xfb\x02\xde\x49\xda\xe5\x58\x3f\x0f\x82\xbd\x1e\x2c\xd5\x1f\x6a\x38\xbc\xa2\xa1\x3d\xa7\xb6\xd3\x72\x99\x24\xeb\xd3\xd5\x37\xa3\x21\x70\x58\xe1\x74\x0f\x6b\x1c\xe1\x0d\x5e\x81\x7c\xa6\xc4\x1f\x2a\xbf\xc7\x14\x36\x32\xd1\x7a\x46\x29\x5e\x9e\x69\x12\xa4\x28\x32\xc3\x5c\x71\x42\xfa\xeb\x59\x28\xbf\x70\x50\x8a\x15\x9b\xc5\x69\xa2\xe7\xb5\x2f\x68\x2a\x85\x0b\x1a\x17\x91\xac\x23\x3a\x12\xc4\x49\x75\xbb\x08\x88\xae\x29\xac\xea\x11\x55\x2d\x34\x79\x6e\xb3\x42\x68\xa0\x61\x76\xee\x03\x59\xc4\x27\x7a\xc4\xd2\x64\x19\x11\x90\x38\xf0\x03\xe8\xb5\x24\x65\x7e\xd6\x57\x73\x24\x13\xa9\x62\x5b\x3f\xdd\x02\x2a\x0f\x84\x18\x67\xc6\x5e\xeb\xe0\x72\xa0\x91\x86\x23\x69\x2a\xb2\xda\x4d\xe0\xfb\x9e\x47\x6a\x5c\x2e\xbf\xde\xee\xdb\x82\xae\x08\x34\x6f\x27\xb0\xfb\xf9\xa4\x41\xcd\xb7\x9d\xd9\xe5\x18\x83\x63\xca\xe3\x5f\x85\x05\xe1\x93\xe0\x31\xdf\x42\xf8\xba\xf7\x25\x7f\xa8\x1b\x85\xd7\x03\xdf\x05\xb9\x4a\x3a\x96\xae\xf1\xec\x31\x86\xef\x07\xd4\x4c\x00\x60\xfe\x23\x2d\xe8\xf3\xbf\xa0\x68\x84\x97\x38\x45\x1b\x1a\xa9\xe4\x4f\xa8\x28\x80\x37\x78\x9c\xde\x1a\x9e\xd1\x87\x28\xe1\xa2\x8a\x0f\xca\x3d\x78\xfb\xd3\xa4\xec\xcd\x38\x54\x6e\x15\x08\x21\x75\xeb\x15\x11\x37\xbf\x1e\x78\x74\xda\x1d\x7a\xf4\x08\x6f\xce\x6f\x33\xbd\xaf\x2c\xcd\x70\xee\xf6\x1e\x55\xf4\x71\x53\xbf\xaf\x45\x62\xb7\x02\xaa\x28\x0a\x61\x98\x86\xa1\xa1\xbc\x28\x5c\x55\xd4\x76\x40\x86\x7b\x04\xcf\x17\x28\xd5\xbb\xc1\x8e\xaf\xbb\xc1\xea\xd6\xb7\xe7\xd8\x3c\x7c\x4c\x15\x4c\xa1\x64\x22\xeb\xe0\x18\xf7\x66\x67\xf9\x95\x5e\x0d\x5a\xdf\xfc\x2d\x07\x35\xc5\x76\x84\xcd\xbe\xaa\x99\xb1\xb7\xb4\x66\xc2\x7b\x13\x96\x35\x29\xf2\x5f\x51\xfd\x43\x14\x8a\xf0\xe5\x00\xfe\x4a\x85\x4f\x91\xb9\x3c\x4a\xcf\x9b\xf9\x2e\xe8\x49\xa2\xe0\xf8\x5e\xa0\x46\xa7\x41\x92\xec\x60\x16\x78\x13\x58\x2c\x77\x03\x45\x26\xfe\x25\xb2\x00\xc1\x18\x55\x4f\x59\xe4\x20\xe9\x29\xf3\x58\x42\xa0\xd5\x99\x37\x35\xd3\xf7\x49\xac\x1d\xac\xbd\xe9\x8e\xaf\x6b\xe3\xc5\xa2\x9c\xc7\x8d\x55\xc4\x5c\xe7\x14\x24\xf0\xb6\x66\x05\xfc\xd7\xa8\x0e\xe3\x5a\xae\xd0\x92\xc6\x4a\x7a\xac\x53\xad\x2a\x71\xcf\xdb\xad\xd7\xec\x1c\x8a\xe2\x48\x20\x64\x25\xb5\xdc\xe0\xb3\x8e\x62\x8e\x8d\x27\xc6\x7b\xbd\xa1\x3e\xd5\x00\xba\x7c\xb5\xdd\xcf\xd2\xb5\x84\x3a\x9e\x12\x74\xa9\x59\x73\xb4\x3f\xe1\x40\x8e\xd6\x3e\xbe\x6f\xa1\xdd\x37\x7e\xee\xc5\x09\x8f\xfa\x5e\x93\x32\x96\x26\x29\x9e\xa2\xab\x77\x9d\xb4\xa5\x19\x8e\xed\xf6\x6e\xf8\x8b\xbc\x89\x55\x85\x6d\x70\x0e\x6f\x61\x42\xf7\xc6\x61\x08\x3c\xf2\x67\xc7\x06\x5e\x9d\xe3\xb5\x97\x3a\xd5\x2f\x7e\x15\x2a\x27\x0e\xfc\x4e\x4b\x44\xe6\xda\x69\x29\xd1\xbd\xfd\xbb\xe7\xa9\xae\x88\xc8\x69\x67\xc7\xa3\xe8\x1e\x43\x78\x85\xb0\xf5\x27\xb4\x2d\x54\x44\x26\xf3\x20\xff\x46\x29\xc4\x86\x03\x93\x24\x36\x66\x62\x14\xf8\x3e\x0c\xb9\xf0\x71\x2d\x5c\x79\xed\xb5\x2a\x8b\xb4\x49\x31\x48\xd3\x9e\x92\x7f\xe0\xb9\x09\x3e\x99\x10\xee\x0e\x49\x9f\xa7\x3f\xad\x81\xc6\xad\x05\x4f\x14\x4e\x77\xc6\x27\x81\x62\xc3\x38\xef\xe8\xa1\xba\x65\x1c\x57\xa9\x09\x15\x1a\x60\xb1\x2e\x53\x43\x52\xcd\xc1\xbc\xea\xd8\x72\x1b\x78\x61\x97\x9d\x9a\xde\xab\x93\x0a\xfb\x82\xc1\xa8\xab\xce\xb5\xcb\x24\xb7\x45\x11\x33\xa8\x9b\x1d\x25\x3e\x25\x5e\xb3\xae\x32\xb8\xd8\x4e\x47\x36\x63\x4d\x1d\xf5\x44\x8e\xf3\x7e\x85\x15\x3f\x4f\x3b\x91\xa5\x55\x03\x25\x89\x1c\x85\x03\x1b\x47\x49\xcb\x4f\x67\xfc\x92\xda\x0a\xa2\x77\x3a\xa1\xa0\x68\xe3\x5d\x7e\xbd\x6f\xea\xe8\x69\x93\xb6\xaa\xa2\xf9\x14\x6a\x92\xb7\x02\x85\x5a\x7d\x6b\xac\xa4\xcc\xeb\x54\x4d\x4b\x33\xed\xbc\xc8\xd2\xa4\x1f\xf3\x7c\xae\xab\x9a\xb9\x0a\xcf\xa6\xba\xf6\xb4\xfb\x3a\xfb\xcd\x05\xa7\x62\x79\x7b\xec\x3b\xaa\xb7\xd5\xee\xca\x0c\x17\x17\xc4\x48\x29\xba\x95\xd3\x58\xab\x0e\xbe\xef\xcc\xef\x87\x63\x0f\xb0\x79\xb7\xd6\xe6\x98\x3b\xd0\xce\xc3\xac\x5c\x66\xa1\x45\xcd\xc9\x2e\x73\x42\xdb\xdf\x96\x1f\x5b\x1a\x9a\x04\x6b\x19\xc5\xd7\x93\x7a\xa0\xe4\x64\x2d\x3d\x5f\x58\x68\xa7\xa3\x51\x9a\x15\x65\x12\x15\x91\x95\xa0\x5d\xa8\x30\x55\xac\x7a\x5a\x49\x26\x99\x3c\xaf\xa2\x40\xa8\xb6\xbe\x2a\x66\x58\x61\x96\xee\xc0\x71\x8a\x7d\xf6\x93\x66\x77\x14\xa8\xb1\x9f\x99\x9e\xcd\xa7\x7d\x28\xf8\x33\x7a\x42\x7c\xac\x43\x08\x7c\x35\x1f\xab\xe4\xd8\x92\x22\x3e\xdd\xad\x10\xf4\xd1\xdd\x0a\x73\x9f\x47\xbb\xbc\xf0\x6b\x7f\x95\x0d\x83\x14\x2a\x68\x25\x09\x79\xa8\x94\xce\x97\x4b\x4e\x10\x84\xf0\x43\x91\xe5\x9d\x50\x95\xf9\xcc\xe6\xa3\x34\x91\x89\x17\x99\xef\x6e\x39\x9a\x8f\xf3\xae\xfc\x14\x47\xab\x32\x3d\xcf\x96\x35\x70\xd2\x43\x8f\xe9\x1c\x02\xc3\x45\x53\x5e\xd5\x08\xd5\x65\xac\x9d\x7f\x8e\x06\x69\x1d\xee\x3f\x3f\xbf\xbf\x3d\xb2\x66\x85\x4b\x7d\x82\x99\x55\xf8\xd9\x5a\xed\x0a\x80\xd5\x2c\xb7\xf1\x32\x45\x93\x8e\xe7\xa3\x72\xa2\x02\xe4\x9b\x64\xfa\x1e\x3c\x07\xfb\xad\xcc\xcd\x4b\x5c\x8e\x98\x06\x61\x2b\x5c\xcb\x97\xb4\x57\x85\xf8\x4b\x81\xe0\x2f\xc0\x69\xc8\x5d\x57\xe6\x4e\x6d\xf5\xfd\x6c\xf3\x1f\x50\xa3\x80\xdb\x47\x08\xb0\x9c\x12\x9d\xd7\x34\xbb\x02\x77\x8f\x02\xc8\x23\x34\x42\xe9\xc0\x18\xde\x6c\x1c\x0d\x34\xb6\xee\x86\xe2\xdc\xb9\x44\x2f\x00\xf9\xe5\xef\xc2\xcd\x89\xc4\x9d\x5f\xa7\xbb\x36\x14\x27\xef\x39\x0a\xd7\x24\xb3\x6a\x60\xfc\xa9\x8c\xab\x73\xc6\xe8\x44\x82\x21\x87\x8f\x55\x66\x91\x17\x99\x2d\xc2\x01\x5e\x97\x1b\xec\xf5\x43\xbe\x4a\x46\x27\x34\x23\xd3\x8d\x62\xec\x4b\xda\x4f\x1c\xec\x2a\x7d\xc5\x33\x63\xbf\x1b\xe2\x34\x5d\xb1\xbd\x5d\xd5\xdd\x21\x48\xbd\x46\xf6\xd6\xe5\xfc\x07\x67\x5c\xce\x5f\xc5\x75\xfc\x37\x8a\x65\xfe\x22\x9e\xac\xa4\xdb\x0a\x69\x11\x8d\x2a\x53\x2e\x08\x38\x3c\x95\xab\x63\x35\x8e\x55\x77\xae\xc4\x0f\x59\x25\x5d\x04\x8d\x6e\x69\x09\x0a\x37\x66\x52\x6f\x57\x2e\x2e\x11\x23\xd6\x0a\xff\x92\x22\x73\x72\x9a\x59\x93\xac\x50\xb6\xf7\xb5\x6a\x35\x21\x44\x6f\x75\xe8\x75\xc2\x48\x5f\xe7\x0c\x01\x0d\xe0\xb3\x74\xcf\x30\x0c\x3f\x40\xda\x87\x32\xfd\x34\xad\x20\x07\x60\x7d\xc5\xe5\x83\xd3\x1b\xba\xf7\xde\x52\xcc\x57\x9e\x16\xf6\x13\x5e\x65\x30\x74\x10\xbe\x00\xac\xfb\x78\xa0\x84\xf3\x1e\xe8\x5e\xe8\x63\x1b\x8a\xb2\xf6\x32\x79\x4f\x14\x91\x4e\x62\x0b\x4e\x74\x98\x11\x07\x7c\x84\x95\x2d\xe8\x27\xb5\xfd\x78\x1a\x13\x7f\x86\x26\x01\x6a\x2c\x7b\x01\x64\x44\x6d\xef\x4e\x93\x43\x1c\x91\xd2\x2e\x33\x87\xa3\x04\x80\x7e\x1e\x7e\xe6\xc8\x58\xe1\x10\xaf\xa9\xe1\xd1\xea\x9d\xe6\xf9\xd0\x26\x05\xac\x1f\x4a\x71\xe7\x14\xd1\xe6\x39\xb5\x74\x08\xde\x9c\x99\xa4\x68\x79\x31\x2a\x90\x8a\xf1\xb1\x62\x9a\xcd\x07\x66\x64\x5b\x94\x47\x3a\xb8\x61\x15\x92\x3e\x0c\x6e\xf8\x0a\xb8\xfe\xdf\xb4\x2c\x35\x0f\x7f\xca\x55\x74\x3e\xd1\x8c\x3c\xa6\x18\xa4\x71\x14\xb6\x7c\xa5\x75\x43\x4b\x29\x6c\xd4\xac\xeb\x8b\xed\x2c\x4d\x97\xdd\xce\x16\x99\x88\xea\xf3\x7c\x5c\xab\x3f\x57\xcb\xde\x26\xbd\x34\xcb\xad\x63\x3e\xc0\xe2\x3a\xa7\xea\xf2\x75\xab\x5c\x25\x04\x40\x99\x32\x87\x3d\xe3\xa5\x94\xb1\xfa\x65\x2d\xc7\xff\x4b\x6d\xd3\xcd\x8b\x28\xd9\xa6\x72\x76\x9e\x3e\xc4\xc7\xae\xbc\x62\xd7\x6d\x37\x4b\xd7\x5a\x13\x0d\x2e\xdf\xbb\x68\x08\x35\x17\xdb\x51\xb6\x22\xd5\x03\x18\xf2\x2b\xf4\x11\x3e\x46\x08\x87\x57\x67\x57\x6d\xf2\x84\x17\x26\xb9\x02\x58\x9e\x60\x93\xe9\xf5\x60\x8d\xfd\x29\x96\x2f\xcc\xec\x79\xec\x12\x24\x65\x53\x1b\xbe\x30\x85\x1a\xac\x74\x22\xab\x4b\x46\x1a\x7a\x5f\x17\x8a\x99\xf5\x05\x35\xbf\x4d\x9d\xdf\x4d\x29\xce\xf3\xeb\x64\x05\x81\x7c\xb8\xeb\x48\xff\x92\x28\x29\x06\xb4\x7e\x91\x76\x42\xba\x8b\x8f\x9b\xb0\xe3\x43\x93\x75\x99\x72\x02\x79\xe3\xb1\xc0\xe3\x2e\x8e\x35\x75\x88\xfa\x71\x9a\x0e\x23\xd1\x64\x83\x21\x41\xde\x2d\x72\x07\x64\xad\xf0\x0d\x57\x1b\xc9\x01\x07\x5e\x2b\xc8\xe5\x65\x1e\xec\x7f\xce\x71\xb5\xe5\x66\x75\x75\x7d\x97\xc2\x9c\xbf\x4f\x91\x2d\xda\xb5\xdc\x29\xd2\x8a\xa0\x28\x52\x81\xfa\x83\xff\x1d\xfe\x56\x86\x59\x3d\x1f\xcb\x30\x2a\xf2\x72\x25\xcd\x07\x51\xcb\x83\xa8\xb0\xdb\x45\x77\x5a\x13\x85\xe4\x69\x99\x85\x96\xaf\x19\xbd\x96\x6b\xba\xcf\x73\xad\x96\x9e\x10\x51\xa3\x09\x99\x2c\xcb\xf7\x76\x10\x4f\x89\x6c\x8d\x77\x73\xcb\x69\x36\x34\xf1\xce\x6a\xad\x09\xfd\x88\x57\x65\xb8\xa8\x08\x8e\x20\xa0\x87\xf5\x78\x6b\xac\x12\x98\x23\x4d\xfd\xc4\xcc\xf6\xca\x90\xad\x21\x16\xcb\x7b\x7a\xb6\xf4\x0f\x14\x9a\xf4\x17\x4d\xf9\xf8\x72\x59\x94\x19\xaa\xec\x58\xb6\xcf\xd2\xab\xe6\xe3\x0d\x89\x30\xd7\xd2\x6c\xe5\x09\x8f\x59\xf8\x2a\x5d\x23\x22\xdb\x3d\xe4\x70\xe8\x9e\xd6\x9f\x26\xaf\x24\x53\x78\xf4\x6a\x90\x6e\xfd\x6b\xec\x25\x74\x39\x77\x23\xc9\xc6\xc7\x47\x63\x0f\xa5\xe1\x14\x1b\x76\xe3\x3e\xee\x1d\x38\x8f\x07\x30\xa9\x52\x86\x69\xbd\xb2\xe8\x30\xd6\xb4\x15\x85\x6f\xc0\xd7\x8c\x47\xb1\x79\xd3\x10\x6d\x97\xcc\x53\x55\x97\xc6\xc7\x35\xc7\x42\xdd\x03\xbc\xa2\xd6\x43\x07\x69\xa4\x2c\x5f\x25\x88\x61\x3a\x2a\x6c\x26\xab\x1c\x6f\x8b\x13\x70\x3e\x51\xb0\xda\xb4\x2c\xd2\x95\x72\x38\x2a\xa7\x94\x94\x83\xb0\x18\xa3\x3e\xc1\x60\x0b\x38\xbe\x5b\x2a\x59\x08\xd3\x24\xb1\x42\x00\xc5\xad\x1a\x14\x19\xa4\x6f\x33\xc1\x4e\x37\x8c\x0a\x56\x51\x7e\xc9\xd7\xcf\x5c\x05\x1b\xe5\x19\xfc\xe2\xf1\x5a\xab\x77\x76\x96\xde\xb3\xcc\x05\xa2\x32\xd6\x52\x95\xa2\xab\x63\xa5\xf3\x79\xd9\x41\xcd\x6c\x31\x88\xc2\x28\x07\x4f\x23\x9c\xd2\x8d\x09\x01\x1e\x45\xfb\x51\xd7\x5c\x3b\x38\xb3\xd0\x4e\xd2\xac\x18\xac\x11\x28\x61\x69\x46\xc6\x41\x02\x3d\x1a\xb2\xfd\x5a\x25\x73\x34\x3d\x82\xcb\x09\x41\xb7\x2f\xc2\x3f\xda\xf1\x20\xda\x9b\xb4\xc6\x04\x45\xa7\xc2\xed\x13\x0a\x4f\x08\xf9\x47\x3b\x8d\x27\xad\x39\x8a\xb1\x50\xff\x3d\x7d\x39\x06\x5d\x78\xd0\x58\x46\x4f\xeb\xb2\x59\xfb\x29\x82\x08\xd1\xc1\x72\x49\xe0\x86\x62\xe2\xf1\xdc\xa2\x45\x16\x0d\xdd\x7c\x8f\x63\x9a\x51\xe0\xb8\x26\x18\xe2\xc8\xc4\x43\x9b\xa5\x13\x30\xc4\x2f\x35\x0c\xf1\xcb\x9a\xb5\xa8\x7c\x7c\x37\xa3\xe1\x17\x7c\x4a\x49\x0c\xb8\x13\x85\x8e\x34\x65\x31\x48\xb3\x69\x55\xb1\x39\x87\x6a\xb9\x14\x6d\x69\x4b\xf2\x49\xa0\xf0\x7f\xe7\x6a\x93\xb4\xb3\xb3\xed\x51\x16\xa9\xb1\xca\x3f\xd3\x9b\xfb\xcf\x9a\x9a\xe8\x42\x93\xd1\x9b\x56\xa8\xe5\xbf\x85\xe8\x0e\x8b\x19\xf3\x22\x28\xc4\x5f\xa2\x1c\x0c\x4f\xb6\x49\x96\x68\xb1\x6d\x22\xf7\x8c\x45\xbe\xdf\xeb\x1c\xd6\x85\x27\xc0\xd1\xc3\x97\x80\xfe\x2f\x2e\x16\x05\x15\xc4\xed\x4c\x9e\x83\x07\x7e\x4f\x71\xb0\x9b\x62\x98\xe6\xa3\x01\x2b\x10\x34\x57\x3a\x1b\x44\x42\x12\x5b\x0c\x78\x3e\x89\x79\xe2\x90\x0d\xff\x02\x4f\x17\x81\x38\xdb\x45\x18\xc9\x9b\x35\x4b\x56\x45\x64\xe9\xc8\x26\x2e\xfc\x73\xa3\x59\x6e\x86\xf8\xa2\x93\x86\xed\x65\xd1\xaa\x83\x72\x63\x83\x9e\x54\xad\xd2\xdf\x1d\xab\x94\x2d\x78\x46\xab\xe1\xac\x46\x49\x48\x18\xf6\xca\xac\xcb\x2c\x8e\x02\x55\xa3\xe3\x2a\x83\x39\x0a\x60\x7d\x55\x15\xac\xec\xa1\x34\x0b\xa3\xdc\xb6\x14\x6d\x0a\x06\x9e\x44\xfb\x7a\x1b\x0e\x64\xdf\x42\xfb\xd7\x9f\xa1\x3f\x46\xe1\xfb\x5a\xa0\x84\x8f\x8f\xa0\x86\x8f\x64\x11\xa0\x16\xac\x9a\xb7\xc7\x2a\xaa\x2b\x90\xae\x38\x6a\x6c\x4d\x93\xad\x5b\x08\xb3\x73\x9c\x3a\xdf\x54\x2f\x7c\xc7\x06\xa5\x60\xc8\xc7\x7e\x6f\x3c\x41\x7b\x43\x51\x11\x2b\x05\xc3\x11\x20\xf1\x62\xa5\x34\xa7\xca\x35\x3b\xeb\x26\xa6\x2b\xcb\xe5\xa2\xff\xca\x59\x8a\xd0\xf0\x04\x60\xc6\x0d\x0e\x99\x28\x56\x12\x28\x77\x94\xa4\xdf\x1d\x85\x80\x5d\xe1\x72\x0c\xe2\xcb\x33\x68\xb7\xc1\x0e\x9e\xc1\xa5\x60\x51\xdd\xae\xb5\xea\x96\x66\xda\x26\xdf\xe9\xd9\x28\x37\x15\x8a\x7c\x07\x88\x75\x04\xea\xe6\x17\xd3\x29\x7a\x6c\x88\xcc\x3e\x69\x9a\x14\x85\x8a\xbd\xcc\x46\x08\x8d\xab\x9f\x4a\x3a\xa9\x10\x43\xc3\x28\x1c\x44\x7d\x93\x4c\xab\xb2\xd0\x5d\x45\x99\x72\x4e\x91\x89\x71\xc9\x99\xff\x48\x33\x07\x9b\xc2\x66\xa3\x28\x8e\x4d\xa6\x86\xa6\xce\xe8\x6d\x73\xa6\x81\x93\xab\x5d\xed\x3d\x33\x5a\x7f\x38\xd9\xae\x2f\x87\xac\x65\x95\x9b\x4d\x76\xfa\x9a\xdb\xed\xb1\xe2\x8d\xe6\x41\x41\x98\xa3\x9d\x1d\xc5\x36\x0e\xe4\x8b\x3c\x45\x45\xa4\x1b\xc5\xab\x36\x93\x51\x56\xee\x50\x29\x9e\x8d\x9f\x8d\x7d\x51\x70\x39\x15\xb5\x7e\x24\x34\xe8\x5f\x60\xe9\xdc\x08\x74\x03\x77\x7b\x6c\xbe\x6f\xa1\x6d\xca\x1e\x4b\x22\x60\x6f\x42\xc5\x88\x9b\x60\x63\x3f\xa2\x73\xaa\x96\xb5\x91\x5a\x73\x5a\x26\x3d\x67\x59\xf8\x66\x55\xfb\xd7\x63\x67\x72\x9b\xe4\x91\x03\x70\x60\x91\xe3\xb7\xf8\xb8\x26\x0a\x06\xb1\x56\xe3\x58\x07\x79\x0a\x95\x6e\x48\x26\x52\x1b\x28\xc3\xf2\x32\x1b\x65\x34\xe7\x3a\xe5\x03\x95\xcb\x81\x2f\xea\x32\x99\x01\xc0\x80\x1f\xba\x4c\x6a\x39\x4a\x4c\xac\x9a\xea\x9c\xa2\xf0\x49\xcd\x3a\xef\x5b\x68\xe7\x83\x74\x14\x47\xcb\xbe\x64\x86\x0a\x3c\x26\x74\xf8\xb8\x66\x8e\xe7\xe7\xdb\x99\x8d\xa3\xbe\xb0\x32\x88\x35\x56\x5c\x0f\xf5\xd6\xc7\xc2\x42\x3b\x0f\x89\x2b\x5b\x5c\x16\x2c\xc6\xf5\x40\x41\xdd\xae\x6b\xa0\xaa\x29\xe3\x34\xca\x2d\xe0\xae\xe2\xd3\x94\xfc\xe8\xfb\x4a\xae\x9b\xcd\x31\xb2\x85\x47\x1a\x98\x63\xda\x55\x24\x66\x13\x16\x33\x44\x04\xc6\xdc\x02\xb8\xcd\x9b\x0a\xb4\xb2\xa9\xc4\x9d\x12\xaa\xae\x4f\x79\xe3\x00\x98\x3d\x52\x91\x27\xc1\xd3\x85\x4e\xc2\xf5\x49\x1a\xad\xfc\xeb\x14\xf8\xc1\x8e\xff\x84\x32\x5f\x3e\x6e\x0a\x52\xfb\x36\xb1\x99\x89\x15\x26\x6f\x7a\xc3\xb3\x95\x4c\xd7\x48\xe6\x5f\xac\xd6\x6d\x7f\x50\x10\xf0\x78\x82\x8b\x5b\x50\x08\x0a\x3c\xa7\x55\xe8\x5a\x1d\x0f\x7b\x58\x31\x49\x7f\x3d\x9d\x56\x85\x7a\xe2\x24\x92\xe1\x33\x94\xbd\x61\xe4\xcf\x93\x49\x64\x6e\xe7\x09\xe6\xaf\xb2\x3f\xa0\x85\xba\xb4\xc8\x35\xfc\x2b\xaa\xac\xfe\x05\x7d\x0c\xd7\x77\x7c\xfc\x98\xf3\x92\x7f\x05\xee\x59\x10\x49\xde\x1a\x5e\xa5\x9d\x07\xac\xcb\x56\x6d\xbf\x2e\xcd\xb4\x7b\x36\x17\xd3\xeb\x2a\x26\x67\x14\xda\xf3\x8c\x6a\x6b\xe4\xa1\x21\x3e\x0b\xaf\x57\x73\x46\xf1\x53\x9d\xa9\x85\x74\x55\x10\x1a\x7d\x43\x99\xab\x47\x91\x95\xf0\xc9\x86\xcf\xae\x8b\x32\x4b\xd2\x55\x9b\xe1\x36\x70\xaf\x88\xa2\x50\x5c\x98\xee\x28\x23\xab\xb8\x35\xc3\x81\xc9\x28\xc1\x96\x78\x15\x5f\x7d\x4c\xe1\xaf\x8f\x29\x28\x51\x66\x18\x18\xa8\xf9\x9c\x51\xb2\x40\x85\x53\x08\x5c\x9b\xea\x71\x55\xc4\x24\xd0\x65\x84\x16\x27\xf5\x04\xf2\x54\x47\xd5\x2b\xef\xa9\xf6\x47\x39\xca\xa3\x1e\x00\xc0\xc8\x8a\xa6\x15\xeb\xdb\xb4\x9a\x7e\x8b\xe2\xf5\xbd\x1e\x4f\x83\x39\x28\x2c\xa3\xdd\xdc\x8c\x76\x5c\xa6\x0e\x51\xbe\x77\x43\xb1\x99\x3d\x42\x4b\x1c\x39\xcc\xa3\x1d\x15\x94\xdf\x1f\x7b\xbd\x90\xbf\xfa\xf4\x86\x02\xac\xdd\x20\xff\x4d\xbf\xf8\x3f\xfd\x57\xb8\x03\x41\x1b\xa8\xc6\xc4\xae\x8d\x1a\x78\x60\xb6\xfd\xba\xb5\x23\x89\x41\x1d\x83\x91\x4f\x13\xee\x22\xc0\x11\xa1\x5e\xa7\xfb\xb4\x3e\xb2\x6b\x44\x20\xde\xf2\x33\x0d\xe0\x2a\x10\x06\xe5\x09\xa9\xcc\x28\xff\x15\xaa\x04\x00\xf4\xfb\x1c\xa6\x5d\x1d\x33\xea\x2b\x4b\x22\x46\xfa\x2f\x38\x55\x9e\x30\x6c\x48\x02\x76\x40\x05\x1e\xaf\x69\x17\x3d\x7c\x88\xb2\x3f\x4b\x65\x39\x57\xe1\x76\x93\x2a\xa0\xcb\x13\x0a\x3b\x55\x96\x7a\x1c\xb1\x1d\xf9\x89\x7f\xfc\xe7\x3a\x14\x8f\xa1\x2d\xb6\xa7\xa3\xc0\x9b\xbb\x10\x08\x49\xaa\xa1\xa0\x8c\x47\xa8\x2c\xe1\x9a\x87\xb3\x73\x9e\x3b\x61\x9f\xf4\x35\x9f\x40\xa9\x1f\xa6\xf3\xfe\x58\x41\x70\xa7\x08\x26\x02\xfb\xfa\xe4\x86\x1f\x64\x7e\xaa\xe3\x35\xe9\x36\xc7\xcf\x6b\xe2\xb5\xd5\x34\x24\x8c\x64\xbc\xde\x52\x1a\xfb\x1c\x89\x4a\xa3\xca\x9b\x9f\xcc\xf6\x2b\xbb\xde\x9b\xf2\x44\x7a\xe7\x15\x92\x0f\xcc\x67\xb2\xc4\xf5\x7b\xb2\x39\x3a\x81\x68\x49\x00\x91\xcf\xc7\xaa\xb9\x68\x0f\x85\x03\x93\xf4\x6d\xfe\x58\x75\xf1\x48\x96\x28\x82\xdc\x3a\x8f\xe0\x56\x49\xb6\x0b\x7b\xf5\xef\x70\x23\xc2\x85\x4d\x7e\xfc\xf6\x08\x6e\xc3\x5d\x9b\x8b\x58\x08\xe8\xbf\xc5\xca\x0a\x08\xc4\x8f\x35\xc9\xe9\x9a\xa1\x3d\xd4\x52\x69\xfa\x97\x81\x1e\x41\xf2\x3b\x33\xb7\xf9\x13\x7e\x2e\xef\xbf\x7b\x11\x66\x8c\xda\x21\xe5\x73\xbc\x37\x01\x19\xfe\x9a\x57\x90\x1b\xfc\x45\x12\xba\x82\xb1\xfe\x00\xd7\x8d\x48\xf4\x01\x6d\x3a\xb4\x97\x1e\xd0\x9b\x77\x90\xf5\x83\x33\x9e\x1b\x54\xd4\x80\xfe\xdc\xf3\xe8\x44\xc2\x38\xed\xde\x50\x73\x35\x5b\x58\x1e\x14\xb1\xfe\x0f\xff\x65\xa7\x81\x21\x31\xb7\xc5\x2e\x45\xd2\x76\x71\x3c\x41\x51\xa6\xd4\x90\xe9\x27\x9c\xc8\x66\x75\xb1\xb4\x4c\x87\xcf\xc0\x85\x89\xa0\xfb\x84\x4f\xee\x01\xf4\x8e\xdd\xcf\xa5\x05\x3e\x71\xa8\x90\x28\xe9\xa5\x79\x69\xdf\x6c\x69\x3d\xbc\x1f\x8e\x15\x7f\xe7\x0f\x7d\xd5\x6c\xbd\xf2\x45\xa1\x8b\x09\xdd\xcc\xa6\xd3\x16\x3e\xe3\xda\xcf\x99\xcd\x4a\x89\x3f\x64\x72\x94\x6e\x14\x25\x11\x8c\xdd\xc0\x79\xd7\x3b\x00\x14\xaa\x65\x26\x59\x69\x69\x7e\x1c\xcd\xff\xb9\xa9\x60\xd5\x99\x5d\xb5\x49\x69\xf3\x47\xb7\xc3\x50\xb9\x1d\xa7\x87\x2b\x03\xbf\x34\xae\x7f\x14\x78\xf1\xa2\x0d\x7c\x39\xea\xb7\x9c\x06\x0b\x6f\x37\x19\x38\x9e\x6e\xa7\xf8\x1a\xd5\xb7\x6d\x0f\x3b\xa7\x32\xf8\x4b\xae\xfb\xe1\x31\xb9\x1f\x03\x93\x20\x2c\x12\xd5\x8f\x62\xec\xe3\x12\xed\x57\x69\xdb\xd2\xa3\xe2\x3f\x52\xcc\x24\x44\x50\x31\x8d\x8e\x22\xc2\xe1\x0f\xb4\xaa\xcc\x5b\x68\x9d\xf2\xff\xa8\x41\xb4\xb7\x14\x37\x60\xdf\xa6\x59\x3f\x32\xc4\xd3\x8c\x9f\xbb\x1f\x28\x6a\x60\x5c\xac\x70\xc5\xfa\x6b\xba\xdf\x90\x41\xcc\xb5\x6d\x52\x44\x45\x6c\x27\x67\x7c\xb4\x6e\xd3\x85\xda\xb8\xf2\xdc\x81\xb6\x1d\xe6\x8a\xf4\x63\x73\x82\x6f\xca\x15\x33\xe2\xb4\xb2\x3e\xc5\x14\x25\xfb\x6c\xe0\x27\x49\xe4\xab\x4f\x21\xec\xad\xab\xb8\xcd\x1d\xa8\x4c\x2a\x7d\x07\xd7\x7b\x9c\xa2\x82\x13\x8b\x86\xa8\x32\xea\x08\xad\x4e\x13\x23\x61\x31\x88\x92\x15\x4a\x74\x51\xac\x39\xa5\x26\xab\x4f\x35\xf6\x4a\x96\x4b\x1e\xdf\x87\xe3\xc0\x4b\xe0\x63\x55\x06\x1e\x99\xc2\x26\xc5\x4e\xc5\xde\x72\x53\x11\x7c\x82\xf5\x1d\x5e\xff\x03\xed\xd4\x58\x8a\x80\x3f\x51\x0b\x7d\x88\x44\xb1\x9b\xa5\x2c\xde\x21\x1c\x09\x2a\x90\x03\x30\x11\x65\x69\xb0\x90\x0b\x60\xda\x57\x4e\xbb\x51\xb8\x1e\xc6\x88\x82\xdc\x14\xad\x2a\xf9\x06\xbe\xe1\x36\xb0\x26\x2b\x76\xfa\x69\xb3\x47\x3a\x1e\xa3\x70\x8a\x7e\x4a\x44\x94\x14\x5c\x5e\xe1\x42\x4e\xa9\x8e\x4a\xcf\x9a\x5e\xbc\xae\x2a\x22\xf0\x12\x42\xe8\xa5\xaa\x71\x49\x61\xb2\xb0\x88\x42\xd3\x9a\xe0\xe2\xf1\x10\xe6\xf3\x63\x0f\x8d\x8e\x32\xea\x30\x9b\x2e\x8b\xe2\x38\xfb\xe3\xf1\xfd\x6c\x8c\x70\x49\xbf\xaf\x40\x1a\x37\x9c\xb5\x23\x09\xcc\xb8\x0c\x65\x5c\x46\x18\xf9\xfd\xdb\x3d\x0e\xe4\x3c\x5b\x80\x65\xbb\xbb\x06\xc3\xd0\x3c\xa3\x02\xe6\xa9\xf6\x17\xb2\x8c\x7b\x81\xaa\x7f\x30\x59\x27\x9f\x70\xb8\xc4\xbc\x8c\x4d\x18\xeb\xe5\x34\x8e\x49\x78\x74\xca\xaf\xe8\x0f\xc6\x6a\xea\x08\xde\x12\x00\x97\xf7\xc6\xcf\xf0\x27\x45\xe0\x0f\xaa\xd9\x4e\xef\xe9\x7b\xf4\xe6\xf8\xb8\x61\x6a\x7e\x7f\x7b\x60\x46\xb1\xcd\x91\x9e\x62\xdf\xfe\x08\x41\x81\x58\xc3\xea\x0b\xd0\x9c\x3e\xe2\x9d\xe3\x3f\xba\x39\x81\xe8\x59\x4f\xcb\xa7\x94\x1e\xea\xd3\x1d\xba\x5e\xd4\x2b\xae\xa2\x2b\xe9\x44\x25\x0e\x0a\xad\xc4\x87\x84\x06\x16\x26\x89\x96\x23\xd3\xb8\x33\x56\x7c\x5a\x5b\xf0\x90\x30\x14\x67\xe9\x21\xe3\xe1\x5f\x9b\xcc\xcf\x3c\x8b\x00\x4c\xd6\x04\x15\x02\x4c\x60\x6b\xa3\xf5\xed\x39\xee\xc8\xfe\x3d\x74\x27\xf1\xf1\x53\x70\x05\x42\x23\xed\x1b\xd2\x7f\x3b\xd0\x31\x9a\x89\xa3\x37\x99\x93\x40\x4c\x95\xef\xed\x6d\x2a\x21\xec\x61\x94\x44\x79\x98\x45\x5d\x3b\xad\x88\x2f\x78\x7e\x5d\x4e\xaa\xaf\x71\xc8\x24\x35\xe5\xde\x88\x9b\x2c\x32\x6b\xf2\x32\xf3\x09\x97\xd0\x20\x6b\x4e\x64\xe5\x18\x06\xd1\x30\xb7\xf1\x32\x68\x45\x26\x9a\x09\x8e\xe6\xc5\x55\x86\xa0\x3f\x83\xa8\xf0\xc3\x40\x59\xa8\xcb\x4d\x5a\x64\x26\x89\x86\x26\x96\x04\x04\x85\xe3\xef\xe1\xab\x01\xd1\xbe\x32\x31\x78\xdb\x30\x80\x4f\x22\x1e\xae\x52\xd3\xa4\x89\xab\x75\x53\x0a\x4a\xc9\x5d\x71\xd3\x81\x1f\x76\x20\x18\xc4\x3b\xbb\xd2\xb0\x91\x7c\x93\x00\x6d\x0a\x57\x6c\x3f\xe8\xcb\xca\xb4\x64\x51\xeb\xdc\xd5\x51\x70\x07\x4d\x15\x1d\x0e\x22\x2b\xf4\xc2\x3c\xba\x1b\xb8\x5c\xe6\x5c\xbd\x92\x77\x70\x66\xa1\x6d\x68\x8e\x74\x49\x20\xf0\xd3\x1d\xaf\x3b\x36\xad\xd2\xef\x2a\x8d\xee\xcb\x4e\x77\x64\xa9\x4b\x33\x5c\x88\x7b\x64\xc3\xdf\xee\xa7\x6a\xcc\x23\x0f\x4d\x66\x7b\xd3\xe4\x4c\x1d\x94\x73\x69\xa6\x51\xeb\x92\xba\x42\x82\xf1\xdc\xeb\xca\x41\x26\x2f\xa6\x7d\x9a\xcf\x84\x65\xb0\x35\x9f\x8d\x7d\x33\xf9\x8a\xd2\x29\x78\xb4\xe3\x9a\x8a\x59\xd7\x0c\xd3\x04\x4d\x45\x07\xd5\x74\x96\x94\xd3\x08\x91\x59\x71\xbd\xb4\xb4\xec\x0f\x6c\xb6\xc7\x57\xbb\x78\xf2\x0e\x11\xd8\x11\x18\x1d\xd4\x1a\x98\x65\x84\xae\xfb\x95\x67\x91\xd6\xb9\x42\xa8\x6b\x43\x22\xef\xdd\xba\xc4\x58\x70\x44\xc0\x17\x14\x54\x28\x1f\x99\x6c\x05\xda\xaf\xd5\xfa\x6c\xaa\xb2\xd4\x37\x9b\x57\x35\x17\xde\x1a\x55\x85\xdc\xef\xaa\x90\xca\xc7\x9a\x38\x4e\xd3\x84\xf8\xa4\x61\x68\xe0\xf3\x65\x46\xbe\x4a\x3d\x01\x38\xc2\x0b\x15\x88\x28\xd9\x1c\xfe\x8f\x8e\xd3\xc8\x4b\xd7\x39\x45\x57\xd0\x76\x1f\x32\xf8\xe9\xe6\x5e\x9a\x30\x49\xaf\x00\x87\x5a\x8e\xf5\xf3\xbc\x2b\xfc\x8d\xe2\xca\xc3\xf6\x53\x45\x1a\xd5\xea\x28\xd2\xa8\xba\xda\xf6\xc2\x02\xb1\x08\xb5\x94\x9c\xa2\x16\xd6\x39\x5b\xf3\x21\xfb\x16\xda\xf6\x50\x61\x93\x1e\x43\x1d\x24\xfd\xa4\x77\x8b\x1c\xf1\xb4\x2e\xe9\xdd\xad\x81\xa2\xf6\x2d\xb4\x13\x9b\x17\xb1\x55\xe8\x2f\xce\xff\xf9\xa4\xce\xd8\x30\x47\x5c\x16\x59\x3a\xa4\x1e\x55\x75\xad\x8e\xa0\x49\x91\x32\x29\x29\xa9\xcc\x9a\x62\x5a\x89\xea\x5e\x51\x23\x8b\xdf\x1f\x7b\x6a\xeb\xf7\x14\xd5\xe1\x49\x8d\xa6\x8d\x0a\x06\xc9\x4b\x97\xfd\x9c\x02\x70\x9c\x1b\xfb\xc0\x7e\x64\xa2\x6c\x42\xb9\x1b\x69\xb9\xd8\x9c\x7a\xa0\x37\x47\x74\x96\x52\x4f\x16\x7e\x4c\x5f\x17\xbb\xa0\x48\x92\x32\xb3\xde\x2d\x33\x8c\x9c\x61\x17\xc0\x62\xf0\x71\x6d\x3e\x78\xee\x00\xc9\x87\x45\x49\x1f\x4c\x44\x0a\xab\x35\x56\x83\x22\x7a\xf8\xde\xf4\xa3\x30\xe2\x76\x87\x00\x1f\x75\xd6\xf5\xb8\x22\x15\x60\xb5\x75\x4d\xaa\x87\xb0\x81\x25\x89\xa4\x0d\xa2\x44\x03\xcf\x06\xca\xea\x9e\x55\x65\xce\x01\xa9\x4a\x72\x93\x1f\x0b\xe7\x06\xe2\x1e\x54\xd3\xbe\xa0\xab\xe0\x63\xcd\xa8\x72\xa3\x11\x01\x34\xca\xd2\xe5\xb4\x4c\x7a\x8a\xa1\x1f\x48\x69\x51\x5a\x7b\xdc\x79\x99\xbf\x6e\x90\x56\x00\x10\xf3\xd9\xd8\x63\xab\x4f\x69\xaa\xde\x2b\xb5\xb5\x3f\x3b\xdb\xce\x6c\x6c\x4d\x3e\x49\x7b\x01\x36\x3f\xd1\x02\xaf\xb3\x43\xbd\xda\x4e\xec\xaa\xcd\x8a\x81\xad\x22\xaf\x96\xaf\xe5\x6e\xfa\xb2\xe0\x3f\xdd\x6c\xd2\xd2\x49\xd2\x84\xe4\xac\x14\xe2\xf0\x7c\xa0\x67\xbe\x9f\x56\x0c\xbf\x69\xc1\x22\x6f\x5e\xf5\x43\x11\x1a\x5c\x18\xff\xff\x1f\x02\xdc\x00\x7d\xac\xa7\xab\x86\x93\xe0\x14\x9b\x4f\xc6\x5f\xf3\x6c\x4f\xc3\x51\x4c\xd0\x44\x4f\xc8\xca\x18\x69\xd5\xea\xb9\xa1\xf0\x3f\x83\xc8\xa9\xd4\xc1\x11\xa0\xca\xcf\xc7\x8a\x79\x38\x34\x59\x91\x82\xa5\xf8\x25\x47\x1d\xdf\x52\xa3\xcb\xbe\xf3\x96\x97\x62\xe5\x91\x10\x9d\x54\x22\x49\x27\x9b\x9e\xa4\x29\x06\xb1\x2d\xdc\x7c\x02\x42\x0f\x16\xb4\xe4\x93\x60\x7b\x17\xf6\xc5\x76\x6e\xd6\x77\x79\x1e\x39\xd1\xae\x71\x21\xdd\xec\x2c\xd7\x25\xb9\xfa\x88\xe8\xe4\x02\x4d\x19\xa2\x50\x75\x05\xd9\x00\xa6\x1a\xcf\x37\x75\xcd\x46\xf6\xf5\x34\xf3\x03\xd6\x6e\x50\xd1\x25\x81\xa7\xc7\x7b\x15\x91\x42\x32\xad\x2a\x48\x27\x29\x0e\x96\x63\xc5\x50\x71\x92\xb2\x7f\x39\xf6\x34\xaa\xfd\xd4\x82\x98\x5e\x78\xcf\xe9\x1d\xa3\x94\x03\x4a\x65\xd4\xac\xbe\xab\x58\x80\x87\x76\x98\x66\xeb\x53\x8a\x05\xf8\x82\x22\x6f\xf8\x48\x71\xf3\x5d\xd7\xc0\x84\x41\x96\x0e\xd3\x3c\x1d\x82\xb3\x08\x7e\xef\x47\xb4\x1e\xf1\x96\x20\xbe\x8c\x40\xef\x94\x23\x2d\x5b\x33\x45\xce\xcb\xb0\xd1\x21\x6e\x7f\x80\x80\xa7\x2c\xa7\x99\x9b\x65\xdb\x22\xc2\xdf\xad\x4b\x93\x16\x9a\x73\x3f\x54\xb7\x7e\xa4\x2a\x5d\x3f\x02\x83\x08\x5b\x86\x10\x6d\x14\x44\x46\x1c\xd8\xf0\x89\x8b\xa6\xb2\xb4\x2c\xec\x4e\xaf\xb9\xf3\x3d\xcd\xa6\xc2\x13\x2f\xb2\x6b\x28\xac\x41\x31\xe0\xbc\x62\x44\xd8\xd5\xf1\xb9\x73\x44\x57\xaf\x60\xbe\x57\x03\xc5\x81\x73\xd5\xf7\xf4\x62\x93\xe7\x51\x98\xb3\xa2\x15\xd5\x7d\xb6\x2e\xa9\xdc\x7a\x90\x96\xb9\x1d\xa4\x71\x2f\x6f\xa9\x69\xbb\xf3\xb8\x3a\x3e\xa9\x59\xce\xf9\xf9\x76\x2f\xed\xf5\x48\x0a\x78\xca\x37\x7f\xce\xc1\x10\x63\x01\xfd\xe7\xb1\xf7\xd3\x55\x48\xe2\xc6\x05\x22\x01\xd5\x34\x41\xf4\x3c\xb6\x24\x8f\xfa\x89\x89\xab\x08\xd6\x73\x4e\x9f\x53\x8a\x22\x9b\x4a\x15\x77\x73\x12\x9e\xea\x29\x2e\x73\x33\x2c\x33\x13\x4d\xa9\x92\xd9\xdf\x44\x98\xa1\xf1\x61\x48\x09\xeb\x6a\x31\xf3\xf3\xed\x22\x23\x0e\x36\xc4\x8e\x92\x5f\xd0\xb7\x89\x52\x72\x53\x15\x89\xe4\x2a\xe8\xc1\x60\x40\x05\xbd\x1f\x61\x46\xae\xac\x37\x52\xfb\xe9\xce\xd3\xae\x10\xbb\x6a\xf3\x22\xea\x8b\x72\x96\xce\x43\x60\xb5\xef\xc0\x23\xf2\x2c\x9c\x86\x1e\xa4\x61\x64\x0b\xe6\xc4\x5e\x74\xb5\xaa\xd6\x92\xaf\x61\xf9\x54\xe9\x37\xf7\x7f\xab\xe5\xab\x31\x37\x35\xa5\x59\x9d\x1b\xb6\xb2\x33\x34\xa8\xd8\xf2\x43\x72\x0f\x94\x2c\xd6\x04\x11\x80\x01\xc0\x5d\x86\x88\xe8\x8b\xf9\x24\x68\x72\x6e\x65\xe2\x51\x48\x58\x0f\x18\xa7\x01\xb9\x02\x1f\xd7\x2e\x89\x7a\x7d\x6b\x89\x40\xef\x9d\x8e\x81\x6f\xab\xfb\x7a\x62\xb7\xf2\x9b\xe2\x73\x1d\x17\x8b\x17\xd8\xf1\x54\x7b\x69\x59\x44\x6f\x94\x40\xfa\xc1\x94\x1d\x56\xb4\xcd\x87\x6b\xd1\x18\xa1\xed\x0f\x8d\xd2\x0c\x2e\x56\x44\x67\x5b\x4a\x8c\xb6\x81\xe5\x32\x34\x65\xce\xa3\x90\x02\x21\x54\xad\xa8\x8d\x1a\x6f\x13\x89\x15\xad\x88\xef\x81\x2d\xfc\x6d\xcd\x84\xfc\xdb\xaa\x50\x3c\x8a\x8a\x70\xd0\xf2\x84\xf8\xc7\xc7\x9e\xde\xfe\xf8\x43\xe7\xf6\x46\x26\x2b\xaa\x78\xcf\xa9\x14\x7f\x00\x33\x22\xe2\x8f\xf5\x4e\xfc\xc0\x44\x4e\x93\xc6\x61\x29\x7d\xe6\x7c\xec\xa1\x3f\xb5\x5e\x16\x66\xc5\xb4\x2a\x27\x87\xe6\xfc\x31\x4d\x94\x72\xac\x61\x54\x64\x7f\x7b\x60\x92\x9e\xfb\x35\x96\xf2\x47\x19\x44\x74\xfd\xeb\x31\xdd\x62\x3b\x4a\xc2\xb8\xec\xc9\xc7\x90\x81\xb3\xea\x2c\x9f\x34\xcc\x23\x2e\x12\xb5\x7b\x1c\x47\x7d\x37\xd5\x80\x5e\xc3\xff\x85\xcb\xe4\x93\xfa\x4b\x9a\x6b\x17\x69\x82\xfe\x9a\xee\xc9\xf1\xb1\x5b\x63\x66\x34\x8a\x4d\xd9\xcb\x51\xeb\xc1\xfe\x69\xa9\xc1\x63\x88\x5d\xf1\x78\x0f\x9e\xa8\x30\x33\x36\xd5\xe3\xec\xa1\x81\x71\x4f\x46\xca\xaf\xf4\x29\xa9\xb9\x7a\x8b\xdb\x4d\x93\xde\xe3\xf4\x87\x08\xa7\xbf\xab\xca\x3a\xb7\x02\x95\xf4\xb2\x88\x15\xe3\xc2\x50\x9e\x84\xd1\x3a\x3b\xd1\xfc\x52\xc4\xb1\xe7\x15\x3d\xf5\x61\xcd\x1e\xfc\x29\xcc\x15\xba\x28\x9f\xd3\x62\x14\x39\x19\x65\x9e\xa3\x64\xdd\x64\x3d\x3c\x13\x6c\xf9\x4f\x83\x09\x93\x57\x5d\x1c\xba\x5b\x37\x70\x7b\x28\xcc\x9d\x70\x9d\xa6\x28\x09\xab\x68\x41\x8f\xf2\xbf\xa7\xa6\x5c\x2f\xe1\x96\xa4\x4a\xe9\x6b\x1b\x65\xc2\xaa\xec\x18\xec\x07\x1b\x1f\x1f\x2b\x20\x28\xb3\x26\xd9\x8c\xf5\x41\x85\x71\xb6\x7a\x82\x42\x38\xeb\x4b\x7a\xfd\x32\xea\xf9\x89\x35\x29\x06\xa3\x12\xc4\xc7\x13\xfd\xdc\x2a\x9d\xcd\x11\x5a\x89\xab\xf5\x45\x9e\xbf\x0f\x1f\x2c\x0c\x0d\xd2\xa3\xcf\xcb\x7c\x14\x85\x51\x5a\x6a\xd9\xb3\x63\x81\x6f\x5a\x1e\x53\xf9\x68\x6e\x8d\x08\x38\xb3\x90\x9d\x4a\x47\x2f\x8e\x3d\xe6\x6e\x35\x8d\xcb\xa4\x30\x59\x84\x49\xe5\x97\xb8\xa9\x7d\x4c\xa1\xb7\x8e\xd5\x20\x24\xc4\x60\x9b\x4e\x79\xf1\xd6\x07\x14\x40\x0a\x87\xfe\x04\xe0\x70\xfb\xbe\x59\x9a\x69\x8f\xca\x84\xc7\xa2\x35\x9d\x8a\x08\xfb\x88\x15\x5f\x4e\xd3\xc2\xf4\x39\x7d\x77\x83\x91\x0b\x0b\x72\x1c\x3c\x26\xf0\x4a\x1e\xa6\xc7\x22\xc0\x43\xe7\x63\xf7\xde\x33\xf3\x66\x9a\xa1\x2d\x29\xf4\x53\xbe\x3b\x74\x5b\x71\x1f\xd4\x45\x8f\x08\x08\x56\x94\x59\x02\xea\x44\x56\x25\x9c\x0c\xd4\xfd\xc6\x7f\x5b\xab\xa8\x44\x71\x5a\x58\xc4\x20\x82\x80\xf0\x35\x10\x70\x0d\x21\x04\xb9\x5a\x3d\x26\x87\xad\x2d\x32\x43\x63\xff\xac\xee\x2c\x23\x7a\xc7\x35\x09\xec\x71\xd5\x9b\x31\x59\xbf\x94\x9d\x80\xc2\xcd\x25\x8a\x02\x64\x98\x59\x15\xb9\xb5\xf2\x66\xb7\xcc\x5d\x59\x41\x98\x7d\x15\x5e\xe2\xa2\x9b\x52\x1e\x99\x3c\xa7\xbc\x06\xde\xe1\xed\xc0\x17\xe9\xb8\xbb\x82\x84\xe7\x41\xe0\xfd\xc9\xdb\x48\xea\x11\x88\x7c\xaa\xb5\xb9\xfc\xac\x72\x58\xe6\x45\x3a\x54\xea\xf3\x3b\x80\xb8\x74\x16\x66\x69\xc6\xf1\xa8\x6a\x23\x59\x97\x32\xd8\x5f\x25\x83\xfc\xb4\xb6\xb0\xf5\xb7\x2e\x35\xcd\x48\xc5\x51\xd7\x66\x26\x16\xdf\x0a\x38\xd6\x3b\x63\x35\x1d\xfb\x4e\xf0\xbc\x9a\x91\x36\x49\x4e\x45\x32\xae\x12\x2e\x32\xc6\xe8\x0e\xbd\x71\x3e\x56\x3d\xe9\x30\x8d\xd3\x61\x37\x62\xe2\x3c\xb7\x95\x54\x73\x4b\x6f\x2b\xad\x43\x53\x1f\x05\x8c\xf2\xcc\xd8\x18\x53\x50\xb0\xa6\xcc\xc8\xcc\x27\xaa\x0a\x2d\xbd\xd9\x69\x3f\x39\x71\x62\xac\xd4\xac\x91\x81\x89\xf4\x54\xf5\x58\x91\x64\xdc\x51\xac\xb1\x43\x93\x88\xd7\x6d\x2d\x2d\x3a\xbe\x48\x6a\x33\x0b\x61\xa4\xaf\x2f\xae\xad\x27\x48\xbb\x04\x74\xaa\x38\xa5\x4f\xa9\xee\xe7\x5a\x9a\xc6\xc2\x81\x00\xdc\xcf\x31\x0d\x02\x3a\x56\x23\x46\x5f\x5a\x6c\xe7\x45\x5a\x65\x0a\x55\x2e\xa4\xd9\xe1\xc4\x55\xd5\x01\xff\x2f\xb5\x4d\xe5\xbf\x4d\x91\x66\x2d\x3d\x1a\xd0\x5a\xf0\x23\x03\x6a\x3a\x22\x59\x5f\x33\xeb\xd3\xad\x87\xf1\xe4\x4f\x8c\x25\x55\x5f\x27\xc5\x91\x06\xc5\xf1\xd7\xd3\x28\x29\xa6\xd5\x5c\x0a\x54\xa7\x00\x6a\x7a\xa6\xa3\xb4\x3d\x2e\xaa\x2a\xe9\x53\x1b\x0a\xbd\x17\xf5\x13\xdb\x43\x0b\xd1\x81\x10\x3d\xcd\x6a\xa0\x44\x7e\xb9\x4e\xca\x27\x81\x6f\x1c\x5f\xd2\x03\x6f\xc2\x8b\x8b\x4d\xfc\xbd\xda\x55\x2f\x2c\xb4\x07\xe9\x68\x52\x3b\xf1\x5d\x58\x33\xa1\x35\xaf\x3f\xe1\xb9\xf6\xc0\x66\xdd\x28\x8c\x7a\x16\xb5\x30\xec\x15\xd0\x32\x32\x30\x94\x80\x53\x52\x1b\x68\x40\xe1\x86\x59\x34\x8c\x12\x13\x47\xc5\x7a\x4b\x03\xc3\xe9\xda\x05\x19\xae\xd9\xf6\x49\xf5\x2d\x4d\x60\x3f\xf1\x23\xa0\x45\x45\x76\x71\x5d\xb5\x81\x8f\x34\x74\x78\xf6\xb7\xd3\xb2\xa8\x7c\x32\x9b\x38\xa6\xc9\x09\x26\x38\x73\x7c\x1a\x16\x15\x11\x95\x55\xf2\x29\xc5\xa9\x72\x17\x30\x0b\x66\x7c\xa3\xbb\x05\x3a\xd4\x4b\x70\xbf\x5e\xe6\x45\xb4\xbc\xae\xa9\x0d\x74\x46\x7e\x51\x15\x16\x08\xa9\xa9\xf8\x1e\xb9\xb3\x27\x65\x5c\x95\x02\x97\x71\x1c\xad\x9a\x04\x26\x87\x45\xbf\xe9\x76\x45\x00\xbc\x61\xa0\x30\x4c\xd3\xd8\xa5\x54\x8e\xd4\x74\xc1\x93\x9a\x3e\xa9\xc4\xcf\xe3\x38\x32\x43\xba\x66\xdc\xe8\x77\xe8\xdb\xf9\x58\x0d\xc0\x61\x94\x28\x2a\x40\xe2\xe6\xd4\xf3\xe6\x0e\x70\xc3\xf6\x0f\xd0\x1b\xe5\x13\x8a\x02\xf8\x8f\xd4\xcf\x99\xd0\xf4\xec\xd0\xc2\x97\x09\xab\x86\x76\x50\x4f\xe8\x01\x15\x2e\x8e\x8b\x13\x6a\x2d\x78\xef\xd4\x84\x4b\x19\x94\x49\x2f\xb3\x3d\xc0\x4c\x26\x18\xbf\xf9\x44\x55\x0c\xd7\x06\xa9\x5d\xb5\xd9\xb4\x1f\x5c\x7c\xa0\xa3\x55\x8e\x5c\x98\xd5\x98\x36\x18\x6e\xe6\xbe\x9a\x3c\x36\xbd\xb4\xcb\x73\x2f\x5c\x8d\x82\xa5\x95\xd2\x94\xb7\x7d\x69\x3f\x8a\x57\x99\xea\x96\xe7\x32\xb0\xcf\xdc\x90\x86\x83\xe0\x1e\xd3\xc8\x8d\x63\xea\x8a\x79\x20\x68\x5a\xb9\xbf\x40\x65\x37\xbf\x43\xdf\x81\xba\xcb\x15\xdd\x13\xd1\x92\xf4\x49\x5e\xec\xf4\x58\xa8\x5d\xb0\x4a\x22\x58\xab\xa2\xe4\xf3\x24\x73\x22\xb6\xc6\xf3\xff\x7e\xd2\xbc\xb9\xc2\xb0\xcc\x1c\xcc\x1d\xd0\x80\xbb\x78\x14\x7c\x32\x01\x01\xc8\x6d\xfe\xec\x94\xd7\x31\xbe\x81\x1f\xd6\x9a\x5b\x08\xd9\x2e\x6b\xbf\xc5\xf3\x34\x92\x34\xd1\x5e\x74\x92\x21\xce\x32\x1f\xa6\x71\x1c\x0c\x62\xdf\xc2\x28\x11\x16\xf2\xc7\x68\xa2\x39\xb2\x89\x09\xe0\x52\xf5\x10\x58\xaf\x44\xb5\xf4\x7f\x8f\x40\x07\x80\xb8\xdc\xc6\x84\x37\x32\xce\x8b\xc4\xd9\xc6\xc7\x8a\x2b\xf8\x0c\xd5\x25\xf1\x34\xcf\x32\x03\x04\x5f\x22\x3d\x42\x54\x4e\xbd\x2c\xfc\x9a\x35\x23\xd1\x53\x93\x09\x91\x96\x9a\x1c\x69\xc0\x43\x2e\xc7\x06\xac\x7d\x4c\xc8\xaa\x26\x34\x4f\xd6\x3a\x3a\x34\x0f\x5b\xd8\x70\x90\xa4\x71\xda\x47\x7a\x2a\x26\x8b\x1e\x39\x9f\x28\x4a\xc1\xbe\xf5\xd0\x10\xc5\xb3\x0a\xec\x35\x1f\x37\xf4\xa5\xda\x49\x5a\x0c\xa4\x0e\xe8\x64\x64\xfc\xf8\xd4\x77\x91\x2e\xe2\x59\x9e\x1b\x4b\xb4\xde\xb3\xc0\xff\x33\x50\x9f\xd0\x98\x75\xd0\x3e\xd5\x60\x73\x3d\x75\xfb\x20\x50\x93\x33\x97\x14\xdd\xbb\x16\x11\x78\xe9\x2f\xbe\x04\x9b\x29\x44\x1e\xd5\x2b\x10\x1e\x0f\x45\xb7\x18\xf5\x7a\xa4\xf1\xeb\xdc\xd0\x7d\x25\xa2\x79\x87\x3c\x19\xd6\xfe\x7f\xa0\xb5\xc5\x6a\xe2\x9a\xef\xe5\x8c\xea\x2e\x74\x4d\xb8\xf2\xa4\x62\x8e\x38\x0a\xf4\x88\x08\xc4\x54\x2b\x15\x95\xb6\xfb\x63\x3f\x20\xc1\x09\x2a\xb2\x91\xcf\x15\xe5\x21\x83\xc7\x99\x5c\x19\x61\x34\x97\x0a\xd0\xf7\xc6\xb3\x3e\x37\xde\xf1\x75\x27\x50\xa2\x38\x2c\x8e\x62\x03\x31\xc5\x87\xd7\xa8\xfc\x5b\xcf\xfd\xbf\x8c\xfd\x59\x90\x24\xd7\x75\x26\x08\x57\x45\x66\x56\xa1\x50\x24\x50\x00\x08\xb6\xd8\xad\xb6\x3f\xd4\xbf\xda\xa8\x31\xa3\x6a\x46\xd2\xc8\x46\xc6\x17\x0f\xcb\x4c\x0a\xac\xb4\x66\x56\x4e\x56\x11\x50\xe3\x65\xe0\xe1\x71\x23\xc2\x91\x1e\xee\x41\x5f\x32\x91\x78\x9b\x79\x9a\xa7\xb6\xb1\xb6\x19\xeb\x51\xdb\x4c\x77\x5b\x9b\x96\x99\xd6\x32\xa2\xd4\x92\x9a\x2d\x89\x91\x24\xc5\x15\x5c\x00\x62\x21\x40\x6c\xb5\xef\x55\x59\x7b\x65\x6d\x89\x31\x3f\xdf\x39\xf7\x1e\x4f\x77\xb4\xcd\x13\xdc\x51\x91\x11\xbe\xdc\x7b\xd6\xef\x7c\x1f\x1a\xe5\x40\x30\x83\x8a\x14\xc5\xd7\x87\x78\x51\xd8\xb5\x77\x54\x56\x6b\xfc\x34\x1f\x7e\xa5\xf0\x57\xcc\x1e\x47\xf4\x81\xcd\x8a\x9e\x06\x93\xf1\xc8\x38\x11\x7d\xbf\xd4\x4b\x14\x5b\x34\x83\x31\x10\xc0\xdd\x98\x7c\xca\x61\x92\xc2\x8c\xc6\xf0\x23\x2e\x45\x49\x69\x55\x43\x44\x54\xa8\x64\x7c\x4b\x44\x26\x13\xb6\x95\xd1\x5b\x0d\xcb\x1a\x1d\xe4\x10\x5f\x09\x31\x2c\x59\x21\x06\x6d\x99\x86\x32\x39\x2e\x8a\x01\xae\x20\x70\xca\x7b\x52\xc9\xb4\xe6\x7e\x08\x07\x5b\x1a\x15\x9e\x86\x20\x7d\x29\x99\x8c\x70\x3d\xac\x2c\x48\x52\x3c\x34\xc4\x9f\xd3\x40\x8f\x33\x40\x1a\xc6\xc7\xa2\xa5\xcb\xb7\x2d\x30\x71\x17\xde\x70\x25\x95\x79\x94\xb5\xb8\x4d\x02\xd5\x5f\x90\xd8\x5a\x4d\x92\x85\x05\xee\x27\x5d\x80\x09\x44\x9b\xf0\xbe\x8a\x59\xee\x12\xf7\x8b\xe5\xa3\x2a\xd7\x2b\x9a\x90\x0f\xb0\x5e\xb9\x1a\x8e\x2e\x04\xde\xdc\xdd\x5a\xf8\xf8\xdb\xcf\xb5\x47\x45\xdc\x03\x64\x00\xfb\x85\x61\x87\x7c\xa2\x8a\xf0\xbd\x34\x8c\x57\x4c\xda\x2a\x2d\x27\x36\xc3\x0d\x60\x62\xf9\x44\x79\xd5\xdc\x50\xfa\x56\x1a\x78\xb4\x70\x21\x52\xcf\xc7\x0d\xba\x4d\x47\xda\xa9\xe9\x27\xe9\x08\x49\x39\xee\xe3\xe7\xf0\xfb\x42\xfc\x5e\x7e\x01\x12\xf4\x9b\xde\xd3\xf6\xd5\x84\x71\x6e\xd2\x71\x0a\xb6\xee\x72\xd1\xb1\xdf\x21\xc3\x2f\x3e\x48\x32\xdf\x15\x9f\x45\xeb\x2c\xcf\x6f\x79\xa7\x7c\xa2\xbe\xd4\x1f\xa4\x61\x50\x44\x79\x91\x96\x8b\xa9\x7c\x98\x48\x8f\xdf\xc7\x8e\xe5\x93\x06\x8a\xf6\xa5\x76\x14\xe6\x82\x6d\x40\x66\xcf\x5d\x36\x3e\x51\x35\x1d\xa2\x6b\x01\x23\xab\xc8\xa7\x94\xd7\xcf\xc7\x96\x35\xbb\x9f\xa4\x86\x3e\xca\x68\x58\x6c\x24\x8c\x1c\x09\x4e\x4e\xa5\xf9\xef\x36\xa1\x0c\x09\xed\xed\x20\x2e\x22\x30\xa4\x86\x99\x9d\x70\x50\x96\xa4\x86\xf7\xaf\x74\x46\xcb\x9f\x92\x96\xe9\x53\x7a\xce\x00\x2a\x77\xd9\x14\x6d\x21\x3d\x92\x0a\x74\x05\x48\x51\xc4\x5d\x29\x43\xf4\x52\x10\xe6\xd4\x44\x9e\x52\x12\x94\x0f\xb4\x9e\xca\x44\x3b\xc5\x4f\xa8\x3a\x58\xfe\x58\xcb\x52\xa8\xfc\x0d\x5e\x07\x22\xf3\xd7\xf1\x14\x10\x51\xff\x8c\xac\x34\x56\x0b\x4f\xcc\xda\x81\xbf\xf2\x09\x28\x15\xe8\x23\x96\xa7\x5c\x8d\x94\x5d\x27\x67\x2f\xb1\x93\xe6\x7c\x40\x71\x0b\xde\x64\x77\x47\x95\x90\x2e\x4d\xaa\x4f\xe1\x9f\x1d\xb1\xf5\xbf\x26\xb5\xb0\x9c\x18\xf1\x97\x67\xed\xa5\xb4\x2c\x9b\x38\x63\xfc\x11\x76\xdc\xaa\xb7\x4e\x96\x48\x41\x1b\xa9\x9b\xbd\x60\xba\x61\xfc\xc9\xb7\x2b\x65\x1f\x37\x09\x3a\x36\x41\xe8\x47\x39\x72\x65\xc0\xf7\x66\xdc\xa0\xce\x45\xee\xbe\xa8\xe4\xf4\x79\x8b\x5c\xd5\x06\xd6\x14\xe3\x96\xd2\x3f\x79\x0f\x0f\x91\x4f\x6a\x01\xcf\xc2\x42\x7b\x60\x46\x9c\x04\x20\x8e\x7b\x8d\x38\x02\xf8\xb8\xb6\x5c\x17\x16\xda\xe3\xe1\x7a\x06\x54\x8a\xaa\xb5\x9d\x55\xf9\xff\x59\x35\x02\x2c\x82\x6f\x74\xf1\x95\xc1\x24\xa9\x15\xec\x7c\x80\x47\x0f\x33\x09\x15\xed\x3d\x61\x98\x2b\x9f\x9f\x20\xcd\x1d\x92\x68\x64\xfc\x38\xdb\x4f\x0f\xda\xaa\xa3\x58\xc8\x1e\x7a\x33\x88\x3a\x77\x77\x14\xf2\x7f\xb3\xa2\x03\xa3\xc0\xea\xe8\xec\x23\x62\x98\x41\xe4\x6e\x15\x11\xe6\x8f\xb2\x91\xd8\x9a\x38\x0e\x85\x73\x30\xdf\xfc\xa1\x9a\xf9\x9e\x9b\x6f\xaf\x1b\x3f\x65\x7e\x4d\xe4\x40\x3f\xe3\xf5\x2a\xc4\xe4\xf4\x2c\x00\x54\xb8\x8a\xba\x49\xee\x0f\xa4\x9d\xf3\x4f\x4a\x87\x27\x75\x9e\x72\xcd\x22\x3a\x7b\x9d\xe8\xce\x84\x60\xb2\xbc\x1c\x14\x33\xae\xa3\x80\x64\x09\xef\x94\x12\x09\x0d\x6d\x89\x9e\x34\xbd\x0c\x69\x5a\xa9\x38\xe5\x7d\xdc\x8e\xed\x10\x7e\xf9\x8b\xdc\x98\xf8\x0e\x82\x73\x61\xad\xa2\x99\x33\x56\x34\x02\xd7\x05\x82\xd0\xab\x44\x6a\x2c\x6a\xa4\x8a\xed\xe7\x55\x4f\x89\x4d\x5d\x83\x37\xe4\xb1\x63\x78\x64\xdb\x4d\x9b\x9b\xe7\xe2\xc3\x8f\x88\x02\x00\x3b\xf9\x9b\x94\xea\x22\x1d\x78\x38\x51\xd4\xb3\xdf\xa5\xf7\x62\x87\x9f\x6c\x9b\xfe\x75\x8a\xf0\x64\x92\xb1\x4c\xb4\xb0\x3c\xae\x72\xce\xc0\xca\x1f\xa8\x3e\xc1\xa4\x03\x3f\x8e\x68\xe0\x3c\x62\x06\x91\xc8\xd5\x5c\x83\xd7\x11\xbe\xc1\x76\x9d\x23\xd2\x63\x69\x88\x36\x54\x61\x2c\xc1\x45\x18\xb4\x5c\xa9\x0a\x18\x34\x3e\x6e\xec\x3b\xa5\x26\x30\x04\x3a\x79\x76\xd6\x0a\x40\x29\x48\xf7\x05\x05\xef\x27\x2e\xff\xac\xe5\xf0\x63\x0f\xe9\x61\xf1\x71\x53\xe9\x22\xf2\xd7\x93\xbe\xa8\xac\x89\x6c\x91\x5b\xf8\x97\x14\x49\xe1\x8b\x45\x1a\x66\xbd\x90\x64\x3a\x5a\xca\x1a\x9f\x82\xfd\xe1\x13\xa5\xa4\x64\x5e\xf2\x47\xe8\xe3\xb8\xc1\x84\x4d\xdd\x31\xdb\x54\x29\x7b\x37\x19\x75\x4d\xfa\xf1\xe4\x87\x2e\xd3\x38\x72\x70\xcc\x01\xa6\x15\x5d\x2e\xd7\x93\xcc\xbe\x37\x95\xd0\xfa\x61\x6a\xba\x7e\x14\x65\xaa\x70\x5a\x85\x5d\x37\x88\x48\x1d\x69\xf7\xc2\x6c\x1c\xf9\xeb\x92\x69\xc3\xfc\x9f\xc2\x1d\xf0\x89\xa7\xd9\xaa\xb2\x2c\x8c\xa6\xdd\xf0\xca\xbb\x74\x03\xb6\x0e\x5f\x3e\x24\x58\xec\x9b\x13\x55\x6c\xbf\xd9\x04\xdc\xcc\x72\xe3\x47\x96\x65\x04\xd6\xf1\x3e\xbd\x17\xc1\x8c\xb7\x2c\x83\xfb\x59\x35\x50\x98\x25\x23\x53\xa6\x86\x9f\x85\xd9\x87\xc3\xf9\x00\xa1\x1f\x9f\xd4\xac\xf8\xa1\xc5\xf6\x5a\x98\x05\x49\x9c\x85\x80\x2f\xda\x68\xb4\x7c\xac\x02\xd4\x70\x76\xb6\x1f\xf9\x6b\xd9\x54\xb9\xd7\x38\xa1\xc1\x26\x44\x7a\xbf\xe5\x39\x69\x92\x4b\x8a\x82\x6d\xc5\x02\xba\x60\x84\x98\x8f\x89\x4f\x36\xf6\xab\xd1\xc2\x29\x35\x9e\x87\xb6\x93\x68\x49\x94\xc6\x0d\x36\x68\x4b\xc1\x20\x32\x7f\x0d\x95\x37\x9e\xfd\xa8\xcc\x81\x7c\x5a\x35\x08\xe2\xc0\xc4\x79\xea\xbb\x8e\x82\x8c\xe6\x39\x50\xe0\x09\x15\x34\x65\x3e\x35\xa7\x73\xa6\x7e\xc5\xfa\x7a\x45\x75\xe7\x5e\x51\x22\xe5\xe3\x34\x19\x9b\x08\x75\x36\x81\x7e\x2b\x06\x97\x4d\x55\x58\x1a\x25\x71\x98\x27\xe9\x74\x69\xde\x14\x98\x62\xd1\x51\xd4\xdb\x1e\x0f\x17\xa1\xf9\x1f\x6c\x63\x3b\x19\x97\x99\x88\x14\x1c\x2d\xb5\xa8\xa5\xf9\x68\x1c\x5f\x49\xba\x54\xa8\xcf\x13\x45\x1f\xf8\x06\xe5\xdb\x7c\xac\xf0\x2d\xdd\x22\x4d\x93\x62\x30\x84\x29\x91\x08\xae\x7c\xb3\x7c\xac\x72\xc3\x62\x3c\x4c\x22\xb4\x01\x91\xba\x6d\xd1\x95\xf0\xb1\xad\xbe\xf4\xfd\x30\x2d\xf7\xb7\x8b\x02\x41\x26\x24\xb5\x5a\xd7\x3b\x5f\xf3\x57\x0c\x35\x42\x60\xe3\xa1\x8c\xcc\xc7\x4d\x7b\xc5\x8f\xc2\xcc\x4f\x7b\x7e\xab\x62\x06\x5a\x8a\x02\xa3\xc1\xee\xad\xad\x27\x8e\x54\x1d\xfb\xeb\x2e\x16\x3c\x9f\x68\xd3\x14\x19\x3f\x00\x83\x20\x62\x06\x2d\x61\x76\x77\xf2\x28\x7f\x7b\xfb\xd0\xe2\x2f\xc1\xa3\x60\xfc\x89\x6b\x60\x48\x51\x7f\x06\xa7\x2b\x5b\xbe\x7c\x94\xd2\x9d\x50\x5a\x5a\x4f\x75\x5c\x28\xf7\x2f\x0f\x6c\xb8\xee\x15\xb0\xc4\x52\x04\x26\x87\x04\x44\xf9\x23\x1b\x0a\xc1\xfd\x08\x4d\x86\xb1\xc2\x1c\xea\xe7\x48\x4c\xdf\xf2\x14\xf7\xee\x1e\x64\xc4\x68\x85\xce\x10\x25\x3e\x0b\x43\x4f\x9c\x2b\xe2\xc2\x01\x76\xff\x27\x3b\xa5\x01\xc7\x57\xed\xdb\x20\x87\x6f\x9b\x83\x5f\xf8\x1d\x21\x68\xc7\x5a\x45\x3f\xf2\xd3\x98\x4b\x47\x43\xf2\x12\x3b\x4d\x7c\xc1\x19\xcf\xf1\xf9\xdf\xa6\x24\x9e\x29\xf5\x29\x0d\xc4\xc3\xba\x4b\xbe\x5f\xbb\x6c\x99\xa4\xa1\x68\xc1\xca\xc6\x3a\xda\xe1\x3d\x1b\xbb\x7f\x99\xab\x21\xf7\x28\x58\x60\xb5\x1e\xd4\x67\x10\xf7\x4d\x6d\x68\x5a\xe7\x48\x7a\x0e\xe5\x55\x0b\x58\x9c\x1e\x26\x7e\x0b\xd8\x6a\xa9\xe6\xab\x5a\xc8\x38\xc9\x73\x2e\xd7\xb1\x91\xc2\x9d\x8b\xc5\xfa\xa4\x03\x3c\x8c\x19\x21\xc9\x6a\x64\x08\x7c\x44\x9a\xec\x80\xfd\xdc\x68\x5c\xe4\x26\xe5\xf6\x87\xf0\x54\xa8\x9e\xe7\xae\x8d\x0a\xab\x80\x22\xbb\x5e\x31\x69\x0a\xa3\x83\x18\xfd\x86\x6a\x26\xdc\x68\xb2\xf4\x45\x1c\x98\x34\xf7\xd9\xd2\x33\xb1\x07\xfd\x91\x90\x7c\x38\x47\x1b\x99\x68\x0f\x7d\x37\x4c\xfb\x07\xe4\x73\x10\x3b\x6d\xef\x60\x79\xb6\xba\xc8\x98\x4a\xc3\x72\xdc\xd5\x71\xf0\xfa\xed\x1a\x1a\x81\x84\x61\x0f\x8a\x28\x2c\x9e\xf3\xdf\x61\x0b\xf2\x89\xea\x63\xe4\xc3\xf5\xcc\x44\xfd\x29\xc5\xe1\xf0\x21\xfd\x2a\x6a\x2a\xac\xd0\x84\x98\x7c\xd7\x86\x6b\x96\xe6\xa9\x41\x15\xa1\x69\x16\xa3\xa1\x3f\xe7\xf7\x7a\x92\xbc\xcb\x43\x74\x20\xf0\xe9\x8e\x22\x81\xb9\xa5\xea\x42\x5d\xd3\xf7\xa3\xc8\x00\x62\x6d\x1b\x21\xe5\x93\x93\x46\x88\x33\xad\x7d\xd3\x33\x29\xca\x6e\x8e\x47\x87\xec\x81\x00\x3a\x9d\xd3\x0c\x86\x86\x0a\xa5\xd8\x53\x8f\x76\x94\xa2\x29\x0a\x10\x42\x99\xd9\xd2\xd2\x60\xf3\x47\xb7\x4f\x29\x73\x9a\xe5\x66\xbc\x87\x2c\x86\x08\x95\xb8\xf0\x70\x5f\xc7\xa9\xff\x72\x3c\x24\x91\xa8\x1b\xee\x42\x36\x07\x10\xee\xee\x0d\xd5\xd2\x09\xf3\xb8\xcc\xcc\xe8\x9d\x48\xa9\x5e\x21\xc5\x36\x15\x93\x70\x6a\xbe\x52\x84\x28\x9e\x29\x71\xa0\x87\xf4\x3a\xf8\xd8\xa2\x6d\xcc\x4b\x26\x28\x54\x3f\x10\xe1\xf5\x54\x47\xb1\xdb\xdf\x43\x34\x85\x37\x71\x5e\x39\x2e\x25\xfd\xb3\x2c\xf4\xe4\x37\x54\x1c\x59\xe7\x5e\x2d\xc3\xc3\x71\x92\xf4\x15\xa6\xf6\x1a\x8a\x72\xc8\xf0\xf1\xa0\x65\x66\x7d\xe7\x5f\x2f\x1d\x3e\xd2\x8e\x8c\x0f\xf7\x27\xed\x37\xd7\xbd\x7a\xcd\x65\xf4\xc3\x64\x2d\x4d\x12\xc9\xae\x85\xc6\xdc\x81\x03\x36\x9b\x64\xea\x52\xbf\xe7\x63\xe8\x88\x6d\x61\x85\x94\xa5\xe1\x0f\xfc\x28\xe9\x83\x7f\x19\xef\xf1\xa6\xca\x2e\x6e\x36\xa2\x37\xba\x66\x10\x32\xbe\x06\x51\x1b\x88\x3f\x98\xa1\x8d\xf6\x98\x68\xf4\x2b\x0e\x60\x3f\xe2\x7b\xb6\x33\xba\xd6\xa6\x9f\x6a\xe4\x5e\x34\xa3\xae\x9f\x65\x0c\x47\x80\x8b\x3d\xa9\xaa\x04\x27\x6b\x99\xff\xe2\x62\x9b\x93\x07\x7a\x60\xdc\x70\xc0\xfa\x92\xee\x83\xab\x02\xf6\x92\xb5\x78\xec\xaf\x3b\xaa\x6a\x58\x23\x10\x7b\xf3\x71\x47\x57\x46\x92\xc8\x6f\x29\xf9\x9f\x63\x70\x90\x7c\xd2\x44\xa4\x5f\x06\x78\x89\x85\xb6\x2a\x6d\x9b\x79\x3b\x16\xb2\xdf\x1a\xf4\xc0\xa7\x8b\x00\xea\x66\x8b\xee\x93\x8f\x2b\xf5\xef\x20\x5e\x6b\x29\x5b\xf3\x0e\xbe\x4e\x3a\x68\x4d\x33\x9e\xfd\x34\x0c\x58\xe4\x14\xac\x23\xc7\x60\x31\xf9\xa4\xf6\x14\xe7\xe6\xda\x43\x3f\x8d\xcc\x88\xe1\xd4\x88\xca\x18\x76\xc1\x27\x0a\x89\xe2\xf7\x7a\xb4\x47\xfd\x08\x89\x07\xea\x81\xc0\x1a\xa0\x5e\x80\x79\x76\x40\xcf\xee\x36\x59\xd0\xd4\xf8\x3d\xd8\x36\x96\x30\xf5\x14\xdf\xe3\x15\x15\x5e\xbb\x59\xdc\x56\x65\xca\xb6\x32\x8b\xeb\xa6\x9f\xd6\xc2\x38\x36\xf9\x0a\xa2\xbc\x6d\x22\x72\xd8\xbe\xaa\x70\x8d\x14\xde\xf7\x0c\x31\x9b\xa2\x98\xf7\xf3\x89\x9b\x43\x06\xe3\x1e\xea\xfe\x50\x04\x6a\x9a\xa0\xdb\xe9\x2f\x5f\x78\x81\x4a\xdd\x41\x61\x2b\xba\x32\xfa\x5c\xde\x1f\xc2\xe6\xeb\x3a\x1d\x3c\xd7\x48\x57\x30\x28\xd6\x33\xdd\x76\xdc\x44\x3e\xc6\x27\x55\xda\x98\x30\x9a\xc1\x9b\x92\xc1\x84\x72\x63\xd9\x5f\xb5\x1b\xee\x87\x9e\x1b\xeb\x64\x76\x56\x31\xba\x4d\x74\x82\x26\xce\x4d\x1a\x26\x50\x39\x83\x37\x61\xfc\x3e\x9f\x34\x94\xf9\xdb\xdd\xa8\x88\x2d\x4a\x0d\x53\xc8\xdc\xe1\xe2\x93\x0a\x0e\x2e\xf5\xd7\xa7\x1c\xd5\x01\xf8\xa9\x84\x34\x91\x7e\x49\xcc\x69\xc3\xb2\x8e\x8c\xbf\x6a\x83\x71\xcd\x45\x29\xbd\x99\x9d\xad\xd6\x43\x8b\xed\x91\x1f\x17\x7d\x3f\xc8\x0b\xdb\x08\xc7\xbe\x79\xa8\x46\xe1\x1f\xaa\xe9\xb9\x30\x8a\xc2\x38\x09\xd9\x5d\xa1\x78\x75\x59\xf3\x1b\x5e\x56\xd3\x37\x5d\x63\xfa\xf8\x52\x6c\x2c\x78\x58\x3e\x6e\x1a\x5a\x1a\x25\xbd\xb0\x1f\xca\x95\xb0\xf6\xba\x1a\x42\x7f\x47\x8d\x80\x97\xfe\x22\x8c\x07\x7b\x5c\x0b\xf4\x2e\xf6\x88\xf5\xc3\xe5\x77\x48\xde\xed\xb2\xba\xbb\x70\x7a\x88\xa2\x4f\xc0\x60\xf1\x89\x06\xb0\xe4\x7e\xe4\x26\x6b\x59\x11\x41\xd1\x0f\x5d\xa8\x01\x84\x2c\x2d\x70\x34\x4a\xb2\x7c\xc6\x45\xdb\x88\xeb\x2c\x67\xb4\x83\x2b\x6c\xd1\xce\x42\x6c\xfa\x78\x47\x0d\x30\xd5\x5e\xee\xc2\x42\x7b\x25\x4e\x02\xa6\x96\x9f\x77\xf5\xab\x45\xa7\x66\xde\xd0\x9b\x69\x07\xa9\xf1\x73\x41\x4a\x59\x61\x11\xd7\x85\xbe\x52\x5b\xe6\x73\x73\x6d\xb3\x6a\xd2\xf5\x6e\xd2\x63\xe8\xa6\x34\x65\x9d\x6b\x3e\xee\x7d\xaa\x52\x0e\x48\x58\x72\x96\x92\x0a\x5e\x9f\x9e\x2b\xee\x5f\xb1\xcd\xa8\x2c\xe1\x96\x35\x6d\xd9\xff\xe1\x33\x1d\x45\xa4\xf4\x50\x41\x68\xa7\x49\xe3\x1e\xf1\xe9\xcf\xf0\xc4\xd0\xe8\xbd\xdb\x48\xe1\x6c\x19\x25\xb0\xf2\x19\xf3\x41\x57\x20\xf8\x8f\x06\xe4\x9b\x79\xc9\x67\x2d\x62\x58\xc9\x07\xaa\x2d\xfc\xa0\xe6\xba\x16\x16\xda\xc1\xd0\x04\x2b\xa2\x3f\x28\xd2\x51\x6e\x64\x53\xb7\xe7\xfb\x58\x3c\x14\x0c\x61\x5b\x7c\x7b\xe2\x20\xcf\x2d\xba\x3d\x78\xdf\xa9\x26\x09\x7f\xf3\x52\x60\xd2\x71\xce\xd6\x4e\xc8\x66\xca\x3f\x12\x16\x1a\x97\xba\x8c\x13\x56\x2f\xaa\x10\x42\x48\x39\xae\xa2\x5a\x1d\xc6\x6a\xce\xe5\xb8\x9e\x73\x39\xae\x95\x22\xa3\x68\x8f\x03\xb2\x3f\x50\x15\x60\xe6\x80\x84\x51\x98\x86\x5c\x86\xc5\x37\x5a\x5e\x15\x86\xc0\x62\x9b\x3c\x50\x41\xe5\x9a\x9f\x9b\x74\x20\x94\x80\xb0\xb3\x67\x55\x15\xfa\x6c\xed\xe5\xce\xcd\x11\xdc\x3d\x33\x0e\x16\xc6\x08\x5c\xcf\xc5\x02\x97\x6c\xc4\x3b\x2e\xd2\x60\xe8\x67\xcc\x0d\xfc\x0c\xd7\xd5\xee\x2a\xfe\x49\x44\xca\x32\x20\xab\x46\x6c\x4f\x59\xd0\x76\x19\x61\xa5\x83\x64\xca\x69\xcb\xa2\x78\xc6\x94\x93\x14\xa1\xa1\x88\xfd\x67\x8e\x46\x3b\x19\x8f\xa3\x2a\x8d\xf6\x49\x3c\x2b\x11\x3b\xb0\xe5\x9b\x68\xdd\x5e\x1e\xd2\x50\xf0\x54\x22\xd3\x7b\x6c\x43\x15\x47\x26\x4a\x4a\xeb\xfb\xb5\xba\xaa\x95\xaf\x4a\x8b\x41\xd6\xaa\x70\xf3\xd0\xdf\x09\x03\xc1\x13\x6e\x88\x23\x09\xe3\xdc\x88\x31\x80\x6f\xe7\x79\x50\x3e\x69\x18\x33\x6e\x47\xa5\x35\xf0\x07\x3c\x65\x8b\x1a\x3f\x70\x35\x7c\xac\xc8\x78\x7a\xa6\x4f\x03\x04\x2d\x4b\x4a\xc3\x1d\x46\x3e\xb1\xcf\x6b\xe4\xc7\xfd\x54\xc4\xc2\x44\x7d\x88\x9e\x97\xc8\xf7\xd5\xcb\xc8\x4b\x47\xda\x59\xd1\xcd\xc3\x28\xc4\x0f\xc0\xe3\x72\xaf\x87\x4f\xb4\x32\x4a\xee\x0f\xcc\x1e\xba\x55\xe1\xaf\x41\x40\x80\x05\xff\x0d\xd5\xa7\x3d\x8b\x1c\x13\x1e\xe6\x34\xda\x3d\xfc\x29\x35\x63\xb7\xab\xe3\xaa\x1e\x34\x0c\x0c\x18\xa8\xf2\x67\xe5\x37\x8a\x9f\x53\x1c\x6f\xd9\xfa\xde\x72\x8d\xdb\x36\x99\x8e\xdc\x15\x4d\xea\xa6\x06\xbf\xbd\xab\x94\xac\xde\x40\x03\xc9\x4e\xa2\x0a\x3b\xfb\x3f\x7d\xa2\xa3\xd0\xcc\x49\xda\x9b\x6e\x7d\xf6\xb3\x02\x3b\xf3\x1c\x6a\xea\x24\xc2\x24\xc1\xa3\xb9\xfb\xd6\xd3\x16\x03\x13\x87\xd2\xf8\x17\x0c\x0b\xfd\xac\x5c\x76\x83\x54\x72\x90\xc4\xb9\x89\x73\x9a\xe7\xa0\x1b\xb1\x33\xde\x6e\xde\xdb\x92\x12\xa5\x26\x1b\x16\xfd\xbe\xdb\xc8\x28\x2a\xde\x57\x05\xc6\xfb\x4d\x70\xf7\xf5\xa4\x50\xd4\x5a\xe8\x8f\xdd\x56\xa6\x1d\xb8\x7a\x38\xd7\x13\x0a\xa9\x9a\x26\x49\x3f\x9b\xa2\x5b\xb0\x35\x36\xab\x73\x71\xd7\x73\xc0\xf5\x73\x6a\x17\x17\x69\x98\x8d\x54\x81\xf2\xac\x62\xc4\x3c\xeb\xb9\x9e\xfc\xcb\xe1\x18\xa0\x48\x5b\xb9\x77\xaa\x2a\xa7\x95\x66\xfa\x9f\x6a\x5a\xa3\x3f\x6d\xe0\x4b\x6f\x87\x71\xe9\xa2\x99\x86\x8b\x45\x13\xe8\x0b\x44\x40\xa1\xa2\x14\x62\x52\x21\x6a\xb1\x2d\x39\x2b\x90\xf3\xba\x2d\x6b\xf7\xc2\x6c\xe4\xaf\x9b\xde\x0c\x99\x23\xa0\x03\xd0\x91\x85\xe1\x9b\xa1\x50\x43\x78\xef\x94\x38\x06\x5b\x03\x61\x16\xb4\x36\x2b\xf5\x03\x9f\x5f\x31\xc2\xe9\x0f\xe8\xb9\xf0\xb1\xd6\xcd\x0c\x07\x6a\x10\x91\x99\xb8\xf8\x44\x4d\x75\x8d\xfd\x2c\xdf\x8b\x7a\x95\xd2\x96\x7b\x46\x40\x6a\x8a\xc5\x10\x2f\x00\xb1\x0a\xe8\x4d\x51\xb3\x9c\xda\x50\x8d\xd0\x2d\x18\x19\xa1\x1d\x79\x5a\x37\x13\xfa\x26\xcb\x28\x11\x6b\x55\xdc\xa2\xf6\x97\x0d\xa6\x86\x40\xbc\x61\xcf\xd6\x12\xad\xda\x54\xf9\xce\x51\x8c\xdd\x62\x90\xba\x94\x8b\x1e\xb7\x06\x3e\x8c\x41\x79\x63\x49\x66\xce\xe0\xee\xd0\x12\xbd\x47\xbf\x2d\x13\xe1\xaa\xf6\x95\x14\x71\x8f\xc6\x65\xca\x25\x8b\x98\x10\x44\x58\x7c\x5c\x1b\x61\xfa\x5c\xbb\x1f\x46\x8c\x88\xc0\xfb\xc3\xd0\xd9\x36\x46\x67\x50\x32\x3b\xad\x22\x85\x72\xb3\xc2\xf8\xb3\xca\x8d\xa7\xe4\x46\x2e\xd6\xc2\xc7\xcf\xb5\xb3\xb5\x70\x34\xb2\xdd\x33\x99\xbc\x72\xd1\x0f\xbc\xa9\x14\x2f\x9f\xa8\xf2\xe5\xff\x57\xed\x83\xe0\x15\x64\xc2\x00\x15\x5d\x5d\xd5\x5c\xf0\x08\xa1\xe0\x21\xce\x4d\x54\x37\xeb\x8a\x1a\xdc\xbb\x52\x85\x63\x64\xc3\xbd\x4a\xb9\xe7\x5d\xac\x61\x3b\x65\xbf\xb0\xc0\x4e\x7d\x03\x2f\x4c\x90\x0b\xea\x6e\xef\x7a\x4a\x11\xec\x8a\x32\xb6\x5b\xcd\xc9\x6b\xee\x87\x11\xad\x86\xf2\xfb\x10\x76\x08\x46\x06\xdf\xbe\xa1\x87\x5b\x2f\xa3\x14\xa0\xbe\xe4\xf3\x34\x6c\x66\xcb\xe9\x8f\xa8\xc1\xa9\xbb\x94\x52\x0b\xa6\x58\x96\xd1\x6a\x98\x85\x79\x92\x0a\x0d\x95\x98\x2d\xba\x05\x18\xbb\x1f\x78\x6a\x28\x4a\xf3\x02\x9b\x97\x92\x3c\x0c\x5a\x6a\xd2\xea\x9c\x1a\xeb\x3c\xd7\xa0\x50\xb1\xd8\x1e\x25\x44\x6a\x6d\xa9\x84\xd1\x17\x95\xb9\x3b\x4d\x18\x20\x5e\xdb\x02\x1d\x2d\xa7\xc1\x66\x6d\x34\x75\x79\xb6\xed\x07\x41\x32\x1a\x25\x3d\xdf\x11\x62\xa1\x0b\x07\xbc\x1f\x1f\xab\xac\xae\x57\x5a\x39\x89\x7c\xad\x27\x52\xbf\xa8\x59\xf8\xd2\x70\xb5\x8c\x67\x9e\x9b\x3f\x6a\xcb\x1e\xe5\xc3\x94\xaa\x47\x13\xe5\x60\xe0\x17\x34\xe0\xbe\xb0\xc0\xd9\xc9\x3d\x3d\xec\xf7\x91\xa2\xe9\x7a\xcb\x1a\xc0\x6c\xe8\x77\xbb\xf0\xf5\x76\x88\xd2\x2a\x8b\xd6\xd9\xea\x17\x17\xdb\x3d\xb3\x6a\xa2\x64\x6c\x78\x3e\x54\xf5\xae\xe5\x3d\x5c\x9d\xec\x00\xc4\x4b\xed\xe3\x6a\x0d\xf1\xf2\xf9\x76\x5e\xe6\x2a\x89\xd2\x3d\xbf\xa4\xc1\xe7\x97\xbc\xc7\x34\x23\x54\x60\x88\x05\x57\x64\x9b\xb1\x80\xd0\xb2\xba\x35\x51\xd8\x72\x2e\xad\xf3\xe7\x26\x0e\xe3\xcb\xcf\x1b\xf1\x1d\x78\x8d\xf9\x1f\xd4\xc4\xec\xbf\x86\xb6\x37\x16\xe6\x35\x2c\x4c\x51\x10\x77\x4d\x1e\xd3\xef\x9b\x20\x7f\xb4\x65\xe9\x94\xff\x0a\x4d\x6e\x8b\xfe\x5b\x58\x60\x95\x7f\xf0\xd5\x0a\x12\xd0\x89\xea\xdd\x73\xf8\xdf\xe9\x2d\xea\x48\x09\xcf\x9e\xd2\x26\xfd\x0e\xf5\xb9\xa4\x20\xe3\x66\x3b\x6e\x37\x8e\xbf\xfb\xd1\x9a\x13\x09\x13\xfe\x59\xba\x65\x3e\xf1\x9e\x54\x0c\x2d\xa3\xb1\x1f\x0e\x62\x96\x42\x15\xde\x07\x7a\x5f\x4e\x9b\xc9\x51\x5b\x64\x79\x98\x17\xb9\xd9\x4f\x77\x69\x91\x29\x0b\x0b\x0c\xeb\x38\x47\x77\x29\xbd\x01\x65\x32\xce\x7b\x9a\xb9\x98\x7e\x4b\xe2\x1b\x7a\x4b\xfc\x2f\xfa\x39\xff\xbd\x12\x79\xbb\xef\x29\x05\xbf\x8d\x0a\x23\xab\xda\x2f\xc9\xd8\xc4\x11\x8d\x73\x2c\x72\xae\x76\xcd\x73\x8c\x0e\xb7\x70\x57\xfc\x0f\x74\xa1\xfc\x0f\x0d\x81\xcb\x7c\x3b\x1b\xda\x7a\x84\xf8\x03\xc8\x95\xf0\xb1\xd7\xae\xe3\xfa\xcb\xd0\xa4\x34\x04\x45\x98\x0d\x05\x07\x8d\xdf\x3b\xab\x7f\xfc\x6c\x6d\x0b\x3c\x3b\xfb\xbc\xe3\x9c\x13\x87\xa5\xf4\xda\x6a\x05\xdb\xf2\xc7\x32\x13\xbe\x8c\xc0\x0a\x0f\x9f\x99\x41\xf8\xe4\x63\xa7\xfd\x89\x87\x35\x45\xe8\x28\x74\x47\x6a\x3a\x8d\x07\x2f\x44\xb2\xb5\xf6\xc3\x87\xcb\x3c\x25\x95\xa9\x5f\x7c\xec\x2f\xe9\x55\xf1\xb1\xe5\x55\x89\x4d\x26\x86\x0e\xf7\x8d\xb8\x84\x8f\x6b\x66\x65\xfe\xa8\x8d\x16\xf9\xa9\xa3\x6a\x05\x40\x23\x1f\x5b\xd5\x34\x7f\x14\x42\x9e\x4a\x1c\x28\xdd\xbb\x0d\x48\x96\xec\xbf\xfc\x94\x9e\x23\xac\x00\x86\xdd\x11\xb0\x4d\xd5\x48\x66\x69\x30\x63\x8d\xe4\x83\xad\x73\xe0\xe1\x37\x49\x94\xeb\xef\xed\x99\x76\x9c\x30\x02\x59\x9a\x74\x5a\xec\xa2\x31\xfa\xca\x72\xbf\x8c\x85\xac\x12\x11\x12\x38\xd8\x66\x5c\xdc\x19\xad\x72\x72\xb3\x89\x84\x31\xf2\x57\x4d\xdc\x13\xa4\x04\xb6\x0f\x34\xba\xf8\xb8\x3e\xb7\x39\x4b\x08\x85\x95\x69\x37\x5d\xfa\xb7\xb4\xa0\xb1\xc5\xee\xd2\x0e\x45\x5a\x73\x5c\x29\x0c\x5d\x6e\x08\xcc\xba\x49\x3e\xdc\xe3\x3a\x46\x17\x88\x38\x09\x01\xd9\x0d\xd8\x4d\xf4\x4e\xa1\xc5\x6b\x29\x0e\xe7\x8f\xb2\x45\x7f\x5b\x8f\xf3\x6a\xad\x16\x96\x17\x8f\x07\x8f\xb8\xf9\x9d\x3f\x99\xa8\x2c\x97\x2d\x44\x85\x5b\x06\x21\xea\xdf\x78\x3b\xc3\x6a\xc1\xf6\x90\xad\xe2\xef\x52\xf3\xfe\xdf\xb7\x54\xdb\x59\xee\xa3\xf0\x45\xde\x43\x0f\x97\x09\x40\xb4\xae\x42\xd6\x4e\x56\x4d\x4a\xfc\x8f\x66\x5a\xa9\xb7\x9e\xd7\xea\xc5\xdf\x98\xb8\xc6\xf6\x03\x25\x93\x59\x2f\x65\xce\x1f\x6d\x17\x65\xea\xcf\x83\x97\x15\x85\x42\x3e\x51\xcc\x07\x59\x9e\xc4\x66\xe4\x13\xaf\x92\x0a\x63\xd4\x4a\x6d\x90\xd1\x3d\x7c\xa4\x3d\x48\x8d\x59\x41\x78\x03\x18\x3d\x6a\x92\x7c\x6c\x1f\x47\x6e\x22\x13\xf8\x92\x92\xa2\x9f\x73\x45\x65\x8a\x5c\x81\xc1\xb2\x39\xfe\x31\x99\x73\x56\x44\xb9\x1f\xcb\xfe\x17\x35\x96\x96\xe2\xcf\x69\x28\x59\x76\xc1\x3a\x6c\xe7\x4c\x2e\x2a\x00\xcd\x45\x05\x5f\x73\xe2\xf5\x74\x89\xa8\x21\x9d\xd6\x18\x8e\xd3\x16\x6c\xbf\x1a\x9a\x35\x93\x66\xc3\x70\x4c\xa6\x12\x05\x98\x1f\x29\xaa\x9c\x1f\xa9\x04\x6f\x64\x5e\x9e\xd2\x91\xd9\x44\xcf\xb9\xa8\x28\xed\xa3\xa6\x5c\xb7\x47\xf8\xf7\xd0\x57\x0c\x25\xe7\x3d\xd7\x5f\x3e\xdf\x48\x24\x17\xbc\x6c\x82\x61\x92\x45\xc9\xaa\xbf\xc2\xe6\x40\x6e\xc7\xe5\xe9\x0f\xf1\xc4\xe1\x79\x6e\xa8\x2a\xbe\x54\x0f\xf4\x10\xc0\xc9\x89\x22\x1b\x3a\xa9\x60\xd5\xe3\xd4\x04\xa6\x87\xea\xa4\xf8\xf6\x8a\x20\xe3\x93\xba\xd2\xe5\x17\x51\x2e\x7c\x89\xc8\x84\x6f\x2b\xc6\xef\xdb\x4d\x36\x29\xf0\x47\xdd\xa4\xc7\x0f\x40\x34\xa3\x15\x93\xcc\x66\x03\x7f\xf1\x12\xd7\xf0\xd9\xe4\x4b\x67\x55\x11\x5e\x1d\xab\x01\xd0\x8f\x1e\x6e\xe7\x43\x3f\x9f\xb2\x9c\xc1\x4f\x1f\x80\xec\x25\xea\x3e\xd3\x1b\xae\x89\xb7\x35\xd1\xd9\xbb\x3f\xa5\xe9\xe1\x26\xae\x75\xc4\x0a\x56\x70\x9d\x5b\x0d\x2f\x77\xa9\x1d\xf9\xc1\x8a\x59\xaf\x20\x60\x41\x13\xc8\xc7\xaa\xed\x1d\xa4\xfe\xcb\x46\xb5\xe3\xd1\x0c\xe5\xe3\x8d\x9d\x5f\x2e\x7e\x79\x6d\x3c\xc6\xde\x94\x86\x68\x79\x7b\xae\x1f\xea\xa6\x9c\xe2\xa4\x00\x35\x93\x8b\xb0\x6f\xea\x4e\xc9\xcd\x1a\x86\xe6\x73\xed\xd5\xb0\x67\x92\x56\x69\xa6\x85\x0a\xcd\xe5\x84\x97\x94\x8e\xff\xc8\x4f\x57\x4c\x6e\xd2\x6c\x46\xcf\xc1\xaa\xfb\x44\x19\x10\xd0\xf1\x63\xf8\x55\xd1\xce\xd3\xc3\x94\xae\x81\x52\x86\x44\xa9\xc9\xb2\x7e\x11\x4d\x55\xc2\x8c\xf2\xf6\x60\xc7\xef\xab\x51\xe3\x73\xb5\xb8\xe0\x73\x34\x10\x34\x48\xfd\x5c\xba\xab\x30\x58\x77\x95\xe2\x23\x83\x6d\x45\x09\x65\xa7\x79\x3d\x7a\xb8\xdd\xf5\xd3\x01\xc1\x99\x2c\x7b\xb5\xae\x9b\xd7\xc5\xa5\x28\x1a\x19\x1a\x4b\xb1\x85\x27\xf1\x23\xba\x7b\x3e\x56\x95\xe1\x20\x0a\x4d\x9c\x67\xfb\x48\x93\xff\x6d\x0d\x0f\x3b\xa9\x46\x05\xb6\xe8\x95\x62\x61\x5e\xd5\xd2\x59\xef\x13\xc7\xac\xb4\x5c\x88\x22\xe3\x6d\xcf\x69\xaa\xfe\x1f\x2a\x6b\xfb\xc0\xe2\x7e\xf2\x61\x31\xea\x4e\x39\x47\x7d\x43\xe1\x29\x59\x2b\x1c\xad\xe3\xb3\x0a\xe5\x33\x48\x93\xb5\x69\xa7\x2a\x77\x01\x45\x50\xe9\x28\x6a\xd4\x88\x1e\x38\x53\x16\x72\xbd\x6b\x1e\x71\xe5\x69\x66\x00\xb6\x28\x10\xab\xac\x89\x39\x4a\x65\x03\x2c\x91\xd1\x44\xad\xd4\x7d\x1b\xba\x73\x58\x2e\x02\xaa\x2f\xcf\xfd\xb2\xa5\xd3\x0d\x86\xc9\x38\xd3\xd2\xf8\x67\x95\x48\xd3\x59\xb5\xb9\xff\xfb\xff\xf6\x37\x5b\x8a\xab\x88\xed\x8e\xe0\x67\x1a\x58\x82\x0d\xa6\xcc\xc2\x4c\x3a\x06\x78\x15\xdf\xd6\x93\xe9\xdf\xae\x99\x9e\x43\xa4\xe0\x35\x9a\x52\xb3\x90\x13\xd7\x34\xbd\xa9\x18\x17\x5b\x9d\x7a\xe8\xd7\xf6\x83\xc0\x8c\x73\x5f\x68\xac\x1a\x5b\x5a\x3b\x49\x2b\x3f\xdf\x4e\x62\x33\x55\x26\x80\xa8\xcc\xdd\x44\x05\x1f\x4e\xe5\x4d\x7a\x1c\x42\x26\xde\x30\xa9\x93\x0a\xd9\xa8\x6e\x14\xcb\xfb\x7e\x42\x19\x7c\x50\x39\x3c\xaa\x48\x3d\xde\xf7\x14\x25\xea\x0f\x14\x9b\x05\x83\x49\x90\x40\xdf\xe3\x0c\x1c\x4f\xe0\x07\x28\xc6\x8b\x2e\x3e\x2d\x22\x21\x14\x76\xad\xfe\x3f\x44\x48\xc7\x9f\x9a\x54\x74\x56\x1a\x3b\x23\x66\x34\x8e\x12\x0b\xb0\x17\xec\xae\xd6\xb2\xab\x99\x0d\x31\xab\x2f\x1e\x0c\x0e\x52\xb1\xd2\xd2\x4f\x6a\x8e\x41\x45\xdf\xf0\x51\x13\xc9\x60\x66\x02\xe9\x3f\xa2\xce\x77\xcc\x73\xb0\xa1\x63\x15\x4c\xc6\xc8\x8f\x3f\xa5\x5e\x24\xe2\x69\xc6\xd5\x72\x2d\x4d\xf0\x9d\x0e\xfb\x7f\x0d\xce\x1a\xe9\xfc\x31\xd5\x2f\xdf\x9e\xa8\x0a\xf0\x25\x32\x96\xb8\xcc\x87\x4a\x3a\xec\x0e\x75\xeb\x6c\x7c\x52\xc6\x42\x28\xf9\x6d\x23\x16\xb2\xac\x44\xe5\x4b\x85\xd5\xbc\xa1\xa4\x88\x2e\x55\x78\xeb\x69\x5c\x07\x3c\x94\xcf\x58\xc1\x90\xd2\x63\x08\x39\x18\x3d\x38\x2b\x95\x36\x37\xcf\x71\xf4\x3b\x95\xa7\x10\x9a\xb5\xfd\xe5\x2f\xd8\xb0\x71\xfe\xa8\x15\x8f\x73\xf3\x6c\x0f\x61\x77\x90\x95\xf1\x98\x0a\x96\x06\x0a\xf9\x1c\xa1\x6b\xa4\x35\x34\x39\xf0\xb5\x57\x61\x76\x60\xeb\xa6\x00\x6d\x06\xe0\xff\x2d\x44\xfb\xf8\x97\x7b\xb5\x28\x78\x6e\xbe\x0c\xf6\x73\xc3\x95\x4e\x98\x62\xae\x9c\xb2\x76\x41\xa5\x76\xee\x2a\x3d\x91\xbf\xb6\x6e\xd2\xbd\xe5\x6d\xdb\x5d\x5b\x5e\xb5\x8c\xae\xb7\xbe\xf0\x3b\xfa\x1f\x64\x42\x68\x3f\x9a\xc5\xd2\x7b\x73\x93\x19\x5c\x10\x90\x29\xf8\x7a\x62\xd9\xf6\xbb\x49\x41\xaa\x24\x02\xef\xfd\xc1\xc4\x8d\xf6\x9c\x21\xfb\xca\xd9\x14\x21\xa2\x61\x90\x5f\x23\x57\x0a\xb7\xfa\xa3\x26\xb4\xce\x8b\x49\x91\xc6\x2c\xf0\x07\x77\xb9\xad\x88\xcd\xb6\x9b\x14\x7f\x00\x5b\x05\x58\x02\x8b\xe8\x38\x92\x3c\x3e\x51\x71\x63\xbe\x16\xf6\x7a\x91\xb4\x07\x30\x5e\xf9\xbd\x89\x42\xc8\xb0\xa3\x06\x36\xe0\x42\xa3\x54\xc2\xd8\x0f\x86\xeb\x3d\x93\x8e\x24\x3d\x96\x04\x4a\xb5\x72\xff\x5c\xd7\x96\xea\x7d\xb5\xa3\x87\xdb\x83\xc8\xcf\xe2\x24\xcb\xe9\x42\xb0\xbd\x10\xf3\xa0\xf3\x79\x99\x00\x53\xd2\x34\x7f\xcc\x36\xf1\x62\x7f\x24\x51\x06\xf0\xa4\xb7\xab\xc3\x39\xe5\xaf\x4a\x3e\xdb\x24\x0f\x1c\x24\x69\x6a\x82\x1c\x61\x33\xcf\xd4\xa9\xf1\xd9\xcb\x9a\xf4\x23\x48\x5a\x2d\x45\x4b\x49\xdf\x2d\x7c\x95\x3b\x2d\xf9\xc1\xb6\xf1\xd3\x68\x7d\xca\xe9\x10\x5c\x52\x2c\xd7\x7f\x88\x3f\x46\xcb\xcb\xb1\x6c\x16\x71\x9e\x5a\xb0\x91\x65\xb3\x77\xcc\xf6\x96\x9f\x2d\xec\x87\x1f\x3f\x15\xd1\x84\x65\x1d\xf9\x3d\xa3\xd1\x54\x00\xb3\xca\xfc\xe7\x01\xfb\x38\x57\xf5\x78\x92\x9d\x71\xb7\x80\xe6\x87\x4a\x67\xe7\xd5\x3a\x9a\x72\xa9\x3d\x4a\x8a\xd8\x55\xd6\xa5\xd3\xe6\x9c\xec\x15\xad\x90\xd9\x2b\x02\x21\xa4\x10\x7e\x0c\x5a\x32\x52\x84\xa7\x95\xb7\x53\xf9\x37\x0c\x98\x84\x4f\x10\xaa\xf4\x29\x81\xa8\xba\x95\x1d\x9b\xc0\x64\x99\xb4\xc4\x45\xeb\xbe\x65\x29\xaa\xaa\xbe\x60\x3d\x29\x1e\x2b\x5f\x15\x92\xa5\xb7\x3c\x05\x21\xfd\xbf\x28\x08\xc4\xb6\xdf\x4b\xf1\x0f\x5e\xdb\x35\x58\x41\xf4\xc7\xaf\x29\xa4\xf7\x63\x9d\xaa\x0d\xb0\x9a\x3c\x0f\xc8\x3a\x23\xf8\x3b\xed\x29\x16\xc9\x7f\xed\x29\xb1\xc6\x6f\xa8\x00\x94\x75\xf8\xd0\x50\x05\x8f\xcb\xf6\x55\xcb\xfb\x91\x0f\x0d\x24\xcf\xec\xfc\xa7\xf3\xf2\x53\x1b\x40\x17\xd8\xd6\x95\x83\x08\x4d\x1c\xf4\xec\x1a\x99\x7b\x7c\xe6\x33\x1d\x17\x5d\x0c\x92\xa4\x17\x8b\x46\x0d\x96\x6c\x8b\xbc\x81\xee\x71\x03\x27\xf9\x5e\x85\x03\xa5\xa9\x48\x58\x1d\x4d\x60\xd0\xb1\xea\xbe\xd5\xab\x2b\xe5\xc6\x4c\x4d\x90\xa4\x70\xe4\x2c\x17\xad\x76\xc2\x7b\x9e\xc5\x5f\x27\x45\x3e\x5c\xa3\x7e\x7c\x79\x19\x5c\xa3\x87\x6b\xb5\x4e\xda\x9a\xce\xdd\x36\x4e\x1d\x06\xfd\x20\xd3\x1a\x99\xa8\xe6\x81\x90\xfe\x0d\xad\xf0\x76\xcf\xf6\xe3\xb3\xa1\x89\x56\xcd\x7f\x69\x80\xdf\xb5\x8d\x4c\xcf\x44\xc2\xa3\x6d\x67\x5c\xca\x95\x2a\xa1\xdf\xe3\x5a\x58\xa2\xc8\x33\xa2\x74\x90\x21\x38\x8a\xc9\xf8\xa4\x96\x1c\x2e\x2c\xb4\x07\xa9\x0f\xc2\x6a\x11\x73\x51\x69\xf2\x05\x45\x9a\x11\x44\x26\x5d\xc1\xbe\x17\x50\xb0\xcb\x39\x2e\xa9\xdd\x32\x2e\xba\x51\x18\x54\x01\x24\xe7\x14\x80\xa4\xde\xa5\x23\x8c\x79\x9a\xac\x80\x83\x6a\xfb\x01\x16\xe7\x83\x06\x31\xe9\x67\xca\xa4\x20\x15\x4c\x06\x7c\x10\x98\x9a\xf8\x58\x69\xfe\x14\x63\xd7\x99\x7b\x5e\x54\xdf\xf0\x8c\x45\x02\x6e\xa7\x0b\x2a\x17\x4b\x3f\x2d\xb2\x3c\xb5\xfc\x9c\xd8\xa0\xef\xc0\x8f\xf1\x49\xcd\x63\x2f\x2c\xb4\x47\x49\xce\xd4\x39\xf0\x7c\x90\x6f\xe6\x63\xd5\xc1\xc4\x04\xa8\x2e\xad\x5c\x57\x80\x83\xeb\x15\x50\xdb\xd0\xac\x7f\xa6\xdc\x54\xa8\xb6\x7d\x54\x21\x21\x50\x63\x42\x37\x91\x4e\xa2\xa1\x71\x17\xc6\x00\xe5\x2d\xd8\x5b\x6c\xf9\x7d\x1b\x65\x9e\x89\x98\x74\x0b\x46\x09\x8b\x7a\x57\xa7\x0c\x6c\x50\xb4\xdd\xbd\x41\xb1\x19\x3e\x75\x8f\x23\x57\x24\x52\x0f\xb1\xe6\xe0\x80\x6e\x7b\x8a\xe9\xe1\x9e\xa7\x44\x3d\x31\xdc\x89\x2f\x78\xb2\xd3\xfa\xd2\x7c\x25\x05\xe0\x72\x01\xd6\x98\x45\xc9\xd9\xb1\xfd\x7b\x14\x4a\xd9\x91\xdd\xe7\x5c\x31\x79\xa3\xda\x66\xb3\xe6\x15\x83\x5c\x88\x8b\x7e\x8a\xad\x2a\xf5\xa6\x7a\xcf\x7f\x9c\x86\xca\xa3\xb0\xf1\x54\xe5\xee\xd3\xd6\x14\x28\xfd\x05\x5b\x67\xf9\x26\x9e\x2c\x9f\x38\xee\xd2\x64\x24\x59\x2a\x67\x48\xb4\xd6\x25\x5b\xb2\x93\x5e\x51\x18\x87\xc1\x94\x6b\x0c\x7f\x0d\x4b\xd1\x4e\x90\x2c\xca\x53\xbb\x6a\x7d\x78\x10\x25\xf9\x50\x46\x5c\xf0\xc1\x9b\xb4\xac\x44\xa2\xb1\x65\x89\x17\xdf\x54\x04\xb6\x7e\x94\x87\x79\xd1\x33\xad\xf2\x61\x0a\x6b\x82\x9b\xa3\xd8\x54\x35\xc4\x61\x92\x91\x5e\xce\x1e\xc7\xcf\xc1\x29\x19\x2b\x7b\xe9\x11\xb3\x33\xbc\x1e\x10\xd0\x6a\xd0\xec\x65\x3c\x1a\xe1\xef\xb1\x55\x8a\xb4\x88\xd6\xf7\xd2\xd7\x09\x8e\xa7\x7c\xd7\xf8\x36\x40\x61\x84\xfc\xc8\xe1\x7e\x38\x49\x03\xca\xe1\x01\x02\x6d\x30\x5a\x1c\x9f\x68\x34\x85\x6b\x1c\xd8\xc0\x53\x4f\x9c\xa3\x56\x25\xcd\xb1\x27\x77\xe2\x37\xe6\x8f\xa2\x79\x82\x18\x1c\xb5\x66\x3e\x6e\x84\xe1\x76\xfd\x4c\xe4\xd9\x14\x78\xad\xbc\x03\x3e\xae\x45\x6d\x65\xa8\x34\xec\xbe\xd8\xaa\xb0\x04\x38\x54\x6a\xbd\x47\xf3\xdc\x52\xbb\x97\x1a\x7f\x84\x60\xbb\x09\xcd\xe3\x42\xd5\xaf\x14\x26\xcb\x09\xc9\x6a\x65\xb2\x1d\x4d\x8b\x73\xd0\xef\x7d\xaa\x43\x5b\x42\xe6\xcd\x5c\xf7\x87\x9b\xec\x88\x75\xce\xd5\xc2\xaf\xb9\xb9\x76\x14\x0e\x86\x6e\xb3\x20\xa3\xf9\x29\x5d\x0e\x1f\xd7\xcc\xf8\xd1\xc3\xcc\x0c\x4e\x85\xb6\x26\x92\x65\x45\xc4\xf1\xd9\x6e\xb2\x06\xf5\x0b\xec\x70\x26\xb9\x6c\xa8\xbd\x7b\x4e\xc3\xee\x55\xbb\x9d\x86\x7e\x96\xf9\x31\x1c\xb5\x1e\x7f\x15\xe1\x06\x87\x4a\xbc\xa8\x7e\x75\x58\x8c\x92\x14\x98\x0a\xd1\xf2\x2f\x3f\xc8\xc7\xb5\x57\xb8\xb8\x58\xbe\x91\x35\x8a\x5c\x84\x8c\xc3\x01\x25\x70\x91\x15\xca\x02\xf4\xa8\x5b\x1a\xbb\xe8\xaf\x1a\x3d\xa2\x46\x0a\x1b\xdb\xdb\x4a\x68\xf5\x8e\x2a\x64\xfd\x56\x8e\x11\x62\x44\x57\xfb\xc9\x30\xf3\xf1\x86\xe2\x47\x2b\x7a\x03\x93\x67\x94\xdd\x08\x47\x6a\xcb\xea\x76\x68\x11\xd7\xd3\x93\xa7\x14\x9f\x70\x14\xf5\x92\x97\x89\x6a\xc1\x46\x5f\xdf\xa4\xfb\x17\xd2\x0c\x37\x2b\x35\x5c\x1f\x27\x83\x68\x3d\x30\xa3\xd0\x9f\x76\x80\xc4\x07\xb0\x0d\x7c\xe2\xa9\x60\xe0\xef\x55\x30\xf0\xf7\x4d\x53\x67\x79\x98\xb2\xc6\x14\x22\x35\x4c\x9d\x59\xea\xce\xb9\x79\x4e\x5c\x8f\x5b\x54\x6f\x6a\x06\x45\x44\xb2\x34\x53\x0e\x9a\x71\x45\xe3\xe1\xfe\x40\x30\x61\xfb\xc2\xf6\x38\x35\xfd\x5f\x6b\xcf\xfe\x23\x25\x33\x7f\x97\x5a\x93\xdc\x15\x84\x8f\xc2\x0e\x39\x4e\x3e\x0a\xb9\xf8\x93\x1d\xed\xe4\x7e\x91\xa6\x98\xd1\xa5\xba\x88\x4e\xb2\x05\x7e\xfe\xf6\x73\x52\x91\x21\x66\x15\x5b\xe2\xfd\xf2\x17\x79\x83\xbe\xee\xa9\x3e\xf4\x37\xa9\xac\x6b\xa3\xe9\xd2\x63\xc1\x41\xbe\x37\x51\x14\xa0\xbf\xb0\xa1\x26\x67\x6e\xc0\x7f\xe1\xba\x7e\xa2\x06\x81\xbf\x76\x90\x86\xb6\xa5\xb6\xa4\x50\xc1\x77\x51\xeb\x41\x24\xbb\x45\x85\x19\x84\x9d\xb7\x51\xf7\xb1\xdb\xc1\x0e\x18\x3f\xba\x61\x47\xf7\xfe\xfa\x1f\x6d\x50\x35\x51\xc3\xa2\xf0\x12\x48\x2f\xf9\x79\xe1\x87\xdb\x70\x7c\xe4\x23\x33\xea\xa2\xa1\x96\x69\xfd\x86\x2b\x6a\x44\xea\x8a\x72\x5f\x7e\x91\x89\x24\xad\x2a\x70\x3f\x6f\xb3\x87\x26\xe1\xbf\xcc\xf8\xdd\xc4\xe7\x70\x5d\x38\x67\xca\x87\x2f\x94\x2f\xe2\x5d\xd6\x92\x34\xea\x01\x05\x8d\x56\xf4\x89\x8a\x02\x88\xd6\xd0\xf8\x99\x12\x1e\xda\x85\x76\x11\x7a\x3f\xc7\x95\x78\xd1\x9b\x8a\xaa\x21\x4e\xd2\x91\x8f\x75\x27\x20\x14\x0d\x74\xa9\x94\xce\x34\x7a\x2f\x36\xeb\x8f\xb9\x69\x81\xbf\xd0\x11\xc3\xfe\x8e\xc2\xe5\x52\xd5\x46\x2c\xa4\x02\xbe\x5d\x40\x0a\x0a\x0f\xb9\x97\x5e\x15\xf3\x14\xa2\xb0\x84\x5b\xf8\x90\xcb\xae\xa0\xc7\xb9\xaf\x24\xa9\x39\x2e\x13\xb1\x11\xba\x53\xcb\x2a\xb6\x68\xf5\xe6\xee\x4d\x34\xa7\x41\xad\xff\xf1\xc2\x0b\x98\x93\x49\x62\xc3\x33\x81\x52\x58\x6f\xb9\x59\x54\xcb\x30\x36\xf0\xbb\x26\xa2\x9a\xf6\x36\xa8\x8e\xb7\xaf\x36\x14\x9f\x96\xda\x69\x32\xb0\xa3\x9a\x42\x94\x5b\x61\xd0\x6d\x68\x0a\xa7\x7e\x37\x44\x0c\x86\xd7\x70\xcd\x73\xaf\xe4\x5a\xcd\x6b\x7d\x8e\x1a\x4e\x49\x6a\x3b\x8a\x08\xbf\x5f\xc5\x43\xe5\x93\x26\x09\x90\x70\x34\x4e\x52\x66\x2f\x43\xf9\x60\x4b\xb5\x5d\x4e\x28\x51\xc5\x2b\x76\xf9\x0d\x92\xff\xef\x0d\xe3\x06\x61\xb7\x64\xd5\xa4\x6b\x43\x13\x39\x86\x09\xa1\xe2\x74\xeb\xa7\x0e\xfd\x99\x3f\xda\x5e\x35\x69\xd7\x8f\x54\x58\x81\x31\x38\x29\x6d\x35\xcc\xc8\xf6\x0b\x13\xa1\xb0\x35\xcf\xcb\x9e\xab\xfb\x08\x5d\xfe\x57\x9d\x0c\xdb\x18\x23\x2e\xd2\x2c\x8c\x07\x33\x0a\x31\x00\x05\x44\x18\x85\x7f\xdc\x51\x31\x34\x66\x7e\x98\x12\x8b\xbe\x0d\x01\xdb\xae\x8d\x46\x66\xc0\xd0\xf1\x92\x60\x43\x61\x04\x97\x8f\xad\x52\x65\x3f\x8c\xfd\x38\x90\x57\xc9\x5a\xb1\x78\x95\x22\x1c\xdb\x50\x21\x20\x14\x56\x14\x71\xe4\x8e\x28\x76\x0b\x21\x25\x9f\x34\x22\xbe\xba\x49\xe2\xe8\xf6\xe1\x25\xbe\xe1\xb9\x98\xea\x1b\x95\x0a\x4f\xd7\x87\xd6\x32\x5a\x29\xef\xd2\xf3\xc7\x36\xfd\xbe\xa7\x2a\x18\x98\x8d\x53\x73\xbb\x4e\xbe\xa1\x8e\x06\x98\x27\xe0\x44\x12\x85\x3d\xd7\x10\x47\x9b\x07\xe4\x79\x7c\xac\x88\x61\x03\x8a\xb5\x28\x4c\x23\x5b\x89\x86\xdf\x87\x14\x06\xf1\xb1\x92\xc9\xfb\xcd\xdf\xc0\x74\x9d\xe0\x6e\x4a\x57\x21\xac\x30\x2e\x1f\x20\xd2\xe0\x38\x58\x07\xe3\xb9\xe8\x6c\x2a\x03\x75\x86\xb2\x35\x5b\xdc\xd4\xe4\x61\xd6\x47\xff\x67\xac\x2e\xf8\x31\x74\x6a\xf9\xb8\xca\x93\x99\x85\xdd\xc8\x7c\x92\x1c\x98\x70\x9b\xab\x2c\xfb\x38\x28\xc4\x58\x85\x0d\x7d\x2f\x5b\x2e\x75\x43\x8e\x57\xc8\xe9\x31\x3b\x2a\x5d\x04\x4a\x6d\x3c\x73\xcb\xdf\xe5\xa9\x7a\xc1\x37\x26\x8e\x1b\x6e\x1f\xc1\x05\xf8\x18\xb1\x32\x8c\xe2\x43\x4f\xd3\x61\xdb\x4a\x63\x38\x1a\xa7\xe1\x28\x84\x36\x88\x28\xe0\xbb\x56\x34\x37\xc7\xd0\x46\xbd\x5d\xdb\xbd\xcb\xb3\x4c\x28\x8f\xbd\x88\xda\x36\x33\x46\xa3\xd4\x06\x9e\x21\x69\x50\x29\x4c\x46\x91\x87\x4e\x03\x52\x16\xb2\x5e\xe1\x0d\x96\x22\xcc\x22\x3f\xee\xe9\x06\x2a\xa6\xbd\x84\xda\x7d\x67\x9e\xb3\x3c\xdb\x2e\xe2\x70\xd5\xa4\x99\x60\x91\xd8\xc1\xd0\x0f\x89\xb3\x39\x50\x15\x29\xcc\x72\x85\x5a\x3a\xa3\x80\x53\x67\x1a\xc0\xd8\xf3\x6d\x3f\x0a\x4d\x3c\xe3\xc6\x5a\xa6\x3b\x0a\x37\x7d\x5a\x63\xd8\xe8\x2d\x01\x8e\xce\x5d\x04\x81\xf6\x3e\xa1\x07\xa1\xd2\x9c\xad\x94\x74\xd8\x7e\xac\xb8\x26\xa1\x13\xca\xff\xdf\x73\x39\xc1\x59\xcf\x89\x57\x6c\x4f\x3e\x65\x97\x7f\xec\x13\x47\x68\xf8\x32\x5e\xd1\xf3\x36\x3f\x2a\x17\x3d\x5c\xf7\x75\x4f\xf3\x52\x36\x4d\xf5\x90\x2c\x45\xdf\xa4\x78\xf0\x56\xd0\xcc\x82\x04\x75\xbd\x2e\x8c\x7b\x46\xe4\x14\x9b\xac\xb9\x7b\xd8\xa3\x24\x8a\xc2\xfe\x3a\xda\x13\xb8\x14\xb4\x27\x44\xbe\x8c\x2e\x0b\x78\xe3\xcb\x8a\xb2\x3d\x4f\x0b\xf3\x88\x0b\x72\xa0\x94\x8c\xb0\x74\x1a\xc1\x27\xfa\x31\xd0\x3f\x43\xf0\xb8\x7b\xa3\x0c\x37\xf9\xb8\xa3\x08\x07\x39\x6b\xc4\xaf\x9c\x9e\x38\xa5\xf2\x87\x15\x89\xc1\x3c\x0d\x83\x0a\x11\xb0\xe7\x28\xa2\xf4\x24\xa9\x79\x69\x1c\x25\x29\x8f\x79\x58\xaa\xa3\x32\x4e\x47\xb7\xfb\xb6\x4a\x2a\xde\x6b\xc2\x8c\x0d\x93\xd8\xac\xab\xe2\xe5\x96\xe2\x36\xdd\x52\x15\x82\xc0\xcf\x87\xc4\xa8\x02\xbb\xca\x1a\xe4\xb4\x50\x44\x8f\xbc\x01\x95\x37\x48\x93\x22\x66\xea\x7a\x24\x1c\x1f\xe8\x6e\xe1\x07\xc8\x17\xe1\xab\x8a\xb8\xe7\x63\x72\x8e\x15\xdc\x51\xd1\x3e\xa7\xd5\xe1\xce\x59\xbd\x77\x9a\x2e\x1b\x8d\x23\x67\xea\x79\x52\x53\x0d\x78\x9c\x6a\x98\x58\x5c\x84\xf0\x9d\x75\x9f\x0c\x9b\xa1\x25\x23\x10\x9a\xa7\xaa\xa5\x8e\xcf\x7e\xb6\xbd\xb8\xf8\x78\xb9\xf4\xb1\xe1\x38\x85\xe3\x9a\x20\x15\xe2\xb1\x5f\xd1\xfc\xc4\x6a\x62\xaa\x7d\xdc\x67\xab\xa3\x34\xdd\x8e\x2b\x19\xb8\x93\x5a\x94\xec\xd2\x44\x39\xf4\xff\x84\xd5\x28\x38\xe2\x32\x0d\x93\x99\x39\x7a\xbd\x32\x15\x4d\x6b\x84\x67\x85\xa9\x1d\x02\xbf\x35\x41\xe0\x2a\xea\x99\x5a\x51\x7c\xfc\x88\xea\x21\x3e\x98\x38\x8d\xa3\xdd\x1b\x8a\x6d\x88\x4b\xe9\xb2\x7b\x15\x52\xe9\x24\x2d\x5a\x2c\xe0\x47\x3b\x65\x2e\x7e\xdd\xe9\x5f\x9a\x03\x9d\x9d\xcb\x60\x6e\xae\xdd\xf7\xbb\xa9\x48\x35\x4a\xe5\x4d\xe5\xd8\x97\x1b\x06\xda\x97\xdb\xd9\x38\x94\x4e\x2b\xae\xef\x9a\x92\xa1\xbb\xd6\x40\x74\xd4\x06\x11\x94\x2d\xd7\x82\xc5\x5e\x58\xd0\x1a\x02\x1d\x3f\x0d\x86\x61\x6e\x02\xd8\x5f\x44\xad\xf7\x14\x29\xfc\x3d\x55\x57\x18\x15\xa3\x7d\x8e\xd0\x02\x84\x11\x62\x66\x29\x4f\x04\x0a\x90\x87\x45\xe1\x8a\xce\xb8\xfa\xdc\xf4\xf6\xc4\xad\xb0\x17\x40\xe0\x09\x0b\xf5\x0e\x2d\x07\x94\x36\x7e\x11\x96\x02\xd9\xe4\xfd\x26\x8e\x89\xb1\xc9\x72\xa8\x94\x94\x17\x83\xf2\xef\x0d\xc5\x15\xbf\xab\xe3\x46\xe3\x1d\x47\x56\x6a\x02\x3f\x8a\x08\x68\x4b\xc6\x4b\xd2\x55\x25\x66\xc0\x11\x01\xb6\xd9\x7f\x6c\x46\x97\x67\x45\x94\xdb\x76\x24\xcc\x37\x22\x2b\x00\x98\x10\x3b\xc0\xb0\xbe\x3d\xd1\x24\x60\x01\xc6\xec\x66\xdc\x67\x5f\xf3\x14\x44\xf1\x3a\xfc\xb7\x44\x30\xe5\xb7\xa0\x40\xfa\x10\xeb\x0e\x0b\xff\xb4\x22\xaa\x62\xe5\x6b\x52\x8d\x40\xf9\xe8\xa4\xa7\x36\xcf\xab\x6a\x6e\xe1\xa4\xd2\x19\x7d\x55\xc9\xaf\x84\x71\x50\x8c\xba\x04\xef\x99\x3f\x2a\x3b\x50\xe9\x3b\x5d\x52\xb9\x6c\x90\x8c\x43\x1e\x5c\x66\x0f\xaa\x1a\xb6\xf5\xd5\xbb\x3c\xdb\x1e\x9b\xb8\x67\x1f\x15\x97\xf5\xd5\xf8\xc3\x54\xa7\x5c\x3f\x28\x82\x5d\xb4\x1a\x2d\x23\x3f\xcb\x4d\x3a\x0e\x4d\x80\xfa\x9f\xed\xf9\x3b\xee\x99\x53\x95\xee\x46\xe6\x8f\x5a\x0a\xe9\xce\xd2\x3e\x12\x71\x39\x44\xe5\xc0\xc4\x26\x23\xb8\xbf\x90\xc0\x51\x5d\x86\x4f\x14\xf9\xe3\x0f\x15\xad\xc7\x0d\x58\x30\xec\xb7\x3b\x4d\x94\x80\x2f\xfa\x63\x3f\x36\x99\x28\x73\x69\xd9\x5c\xac\xcc\x9f\x79\x0a\x81\xf2\x61\x13\x8c\x8c\xc8\xca\xa3\x64\x6c\xed\x31\xea\xac\x10\xa9\xe7\xe3\xa6\xc0\x6c\x6c\xa2\x55\x26\x78\x85\xad\x47\x9c\xc2\xc7\x6a\xdf\x26\xa3\x2e\x6d\x15\xb8\x62\x60\x18\x50\x9c\x02\x12\x48\xe4\x32\x9e\x0e\x9d\x78\x1d\xb8\x90\x47\x3c\x0f\xb9\xa8\x9f\xc7\xbc\x65\x80\x53\x11\x48\x96\x15\x32\xae\xa2\xd4\xdb\x8f\x58\xf5\x76\x47\x9f\x23\x5a\x3a\xf4\xf8\x91\x2f\x5e\x55\xb9\x63\x3d\xeb\xa7\xa9\x83\xc4\x39\x39\xab\x9e\xba\xb0\x60\x51\xe1\x92\x6f\x8e\x29\x91\x61\xb1\x54\xbc\x36\x1e\x3d\xe6\x13\xc5\x68\x17\x25\xf1\x60\x3f\x3d\x70\x98\xe0\xbb\x64\xaa\x80\x51\x9d\xea\xec\xa8\x86\x2c\x5a\xac\x5a\xcb\x12\xea\x12\x82\x66\x7b\xcb\x53\xaa\x40\x13\x25\x3c\x74\x0f\xfe\x07\xa5\xf5\xe3\xd4\xd7\x46\x13\xeb\x9e\x66\x18\xff\x9e\x16\xd2\x32\xfe\x8a\x89\xa7\x77\x0e\x43\xe1\x26\x5f\xa7\x6a\x0f\x1f\xd3\xa5\xf2\x67\x6a\x75\x01\xc0\xe7\x07\x51\x32\x32\xa9\x70\xdb\xa3\x16\x84\x11\x02\x3e\xfe\x18\x7e\x1c\xb7\x67\xd1\xc9\x38\xd0\x71\xdd\xea\x99\x0d\xb7\x37\xee\x28\xf0\x2a\xc8\xd0\x60\x1d\xf0\x30\xaf\xa9\x0e\xd3\x35\x9d\xb0\x85\x51\x38\x0e\xe3\xa4\xe5\x78\x29\x21\xc9\x2e\x9c\x86\x4f\xa9\xb8\x8e\xd8\xd9\x88\x4a\x5e\x69\x2d\xa9\x69\xb7\xa9\x0d\x87\x90\xb8\xad\x60\xea\x5d\xa2\x14\xcd\xf7\x29\x8f\x8d\xc0\x00\x25\x9f\xd6\x46\x95\xf8\x48\x25\x85\x77\x95\x3c\xfc\x26\x85\xfa\xd2\x98\x29\x1f\x3e\x7f\x55\xc7\x79\xab\xd6\x86\x83\x6e\xce\x74\xdc\x96\xfb\xf5\x5f\xfd\xcd\x56\x99\x51\x5a\xd8\xbb\xe5\xe5\xaf\xc3\xde\x9f\x9b\x3f\x4a\xa1\x5c\x9a\x44\xd8\x40\xa8\x09\xdf\x80\x1b\xe5\x13\x2d\x17\xd4\xef\x87\x81\x49\xf7\xa8\xaa\xd7\x35\x5a\x83\xb0\xab\x1f\x29\x0c\x2d\x34\x48\x91\x36\x4f\x04\xac\xa1\xda\x4d\x35\xb3\xf2\xf9\x76\x90\x44\x91\x09\xf2\xe9\x96\xa2\x80\x77\x33\x57\x67\x29\xf0\xc1\x8f\xde\x47\x54\x8a\xf0\xec\x7f\xd3\xae\x62\x68\x82\x95\x6c\xda\x2d\x86\xe3\xf4\x57\x28\x0a\xbf\x8f\xdb\xd2\x9b\x18\x6c\x70\xbb\x3a\xae\x80\xe0\xc7\x79\x12\x85\x71\x38\xe5\x72\x53\xd6\x33\xc0\x97\x3c\xc4\x96\x44\x5d\x5a\xeb\x66\xbc\x68\x48\x0d\x2c\xe5\xd1\x45\x45\xb9\xb6\x64\x07\x03\xdc\xcf\xf4\x8d\xcf\xac\x4e\x4a\x52\xc2\x73\x81\x50\x9d\xb8\xf1\x4b\xf3\xed\x6e\x6a\x37\x88\x86\xb2\x08\xcf\x93\xd3\x78\x79\xd8\x20\xcb\x76\xa4\x9d\xac\x55\xe1\x54\xef\x21\x0a\x90\xc2\xd9\x4e\xff\x60\xd7\x46\x99\x50\xaf\x53\xc1\x00\xd9\xec\x6d\x4f\x15\xd7\x2f\x57\x31\xa0\x3b\x0d\x82\x00\x59\x83\x70\xd4\x8f\xcc\x4b\xe4\x32\x6c\xe5\xdf\x71\x73\xdd\xd5\x72\x5e\x65\x5c\xc8\xfa\xf3\x08\x4a\x36\x54\xab\x65\xa3\x16\x7a\x3e\x3b\xdb\xee\xa7\xc6\x4c\xab\xb9\xcc\x33\x13\x97\x46\x81\x23\x07\x76\x11\x2d\x5b\xa1\xe1\x74\x7c\x14\xc4\x28\x88\xcc\x54\x8b\xfb\x61\x79\x41\x38\x1a\x7f\x74\xdf\xa2\xce\x56\x06\x5d\x85\xc7\xd9\xc6\xcd\xf0\x49\x93\xe2\xb2\x83\xe5\x60\xfb\x7e\x4f\x21\x61\x4f\xab\xe6\xf6\xc5\x8a\xca\x6a\x1a\x72\xa5\xd4\x62\x32\x1c\x3e\x43\xc9\xa8\xd9\xb8\x74\x0f\xf5\x69\x24\x00\x75\x38\x27\x90\x6f\xca\xb1\xca\x6c\xff\x08\x0e\x81\x4f\xd4\x5e\xbe\x58\x7b\x95\xcf\xce\x3e\xdf\x8e\x93\xd8\xe4\x43\x13\x31\x25\xe6\x33\x96\x04\xbb\x7c\xae\x7c\xac\x18\xd3\xf2\xa4\x08\x86\x14\x00\xc0\xc6\x9e\x55\x74\x02\xa7\x2a\x03\x39\x0d\x24\x7b\xd9\x28\x59\x81\x07\xe1\x6a\xa4\xa2\x4d\xd1\x4f\x09\x25\x88\xe9\x32\xa4\xc3\x92\x44\x8d\x9d\x8f\x15\xc0\x8b\x55\xd0\xf8\xa4\x41\x18\x9a\x85\x58\x65\x97\x08\x22\x4b\x35\x4b\x2e\x34\x05\x62\xa3\x30\x18\x86\x03\x3f\x26\xb3\x63\x25\xbc\x2c\x2c\xf5\x8c\xee\x9a\xb7\xb8\x5b\x27\xba\x6c\x8e\x41\xa4\x1b\x21\x68\x55\xfd\xf9\xdf\xf3\x1c\xfa\xed\xf7\x9a\x94\x6e\xb3\x61\x91\x4f\xa9\xcc\x61\xbb\x2a\x58\x44\x17\x2e\x09\x5f\x83\x54\x43\x36\x34\x51\xbf\xe5\xec\xf4\xa6\x2a\x75\x6a\xf8\xf0\x38\x0d\x79\x4c\x6b\xa9\xd2\xae\xe7\x63\x4f\x69\x51\x97\xd6\x82\x61\x8c\x0c\xf8\xf7\x54\x4a\x76\x45\x8b\x73\xfe\xac\x89\x13\x2d\x8c\xfb\x51\xb2\xc6\x88\x11\x14\x4e\xb0\x81\x2d\xe6\xbd\xfc\x6a\x78\xcc\xf3\x13\xc7\x8f\xbe\x6e\xf2\xc7\xe9\x9f\x98\xa1\xdd\xe5\xc4\xa7\x21\xf0\xbc\x3d\xbd\x41\x31\x91\x85\x76\x5b\xea\xca\x4b\x80\x73\x03\x93\x79\xdd\x53\x04\xb1\xf7\x34\xf3\x09\x28\x43\xed\x74\xf8\xf2\xac\xfd\x13\xe5\x98\x3e\x84\x77\x40\x93\xe2\x09\x6a\x7a\x5a\x16\xd8\x43\x8b\xae\x08\xe5\xb0\x47\xc7\xbc\x1d\xf5\x8e\xb9\xf9\xf6\x67\x3f\x3b\xd5\x7a\xe1\x05\x5b\xbf\x6a\x2d\x56\x23\x4f\x54\x7c\xae\x2b\x68\x1b\x15\x55\xa6\x35\xfb\xa2\x02\x2b\xed\xee\xb8\x01\xa8\xf7\x74\xc3\xea\xac\x03\x23\xac\x9b\x58\x48\x64\x98\x33\x45\xe1\x36\xea\xec\x23\x73\x73\xed\x6e\x6a\xd6\x08\x2a\x6d\x19\x96\x8f\xe1\x69\xb1\x4a\x14\x5d\x00\x16\x62\xd3\x88\xfa\xf3\xed\x5e\x9a\x8c\xc7\x55\xa5\x71\x48\xd9\x4a\xe2\xe8\xc2\x8e\xa1\x49\x33\x5a\xa9\x76\xde\x06\xb4\x97\x7c\xac\x0c\x4e\x37\x4d\x12\x9e\xab\xb4\x1c\x70\x0a\xec\xe9\xe2\x5d\xea\x8f\xc2\xb4\xe2\xf7\x1e\x2a\xb5\x9f\x87\xb6\x5c\xfe\x95\xc2\x4f\x73\x93\x0a\x1f\x81\x90\x2a\xd3\x83\x12\xb6\xe5\xfd\x2e\xbf\x38\x88\x7c\x90\x91\xf9\xdc\xe4\x14\x9c\x7e\x4d\x37\x87\x28\x15\x2d\x86\x92\x67\xc1\xb0\xfe\x64\x30\xcc\x85\x75\xff\xf5\x6f\xfc\x3a\x8d\xd1\xf0\xac\x0e\x3e\x66\xa1\xe1\x16\x94\xf5\x4e\x53\xba\xd6\xf3\x47\x63\x93\x2a\xc3\x72\x4e\x19\x96\xfa\xcc\x1a\x0d\xad\x44\xe1\x28\xb4\x79\x8f\x00\x51\x54\x4f\xf0\xa2\x27\xb5\xc0\xd8\xac\x9a\x94\x9d\xc2\x8c\x55\x10\xfa\xf9\x2f\x76\x5c\x5d\xe4\x93\x1b\xce\xd9\x31\x56\x1c\x84\x30\x0f\xa8\xb4\xc6\x93\x14\x0d\x03\xea\xed\x7e\x92\x06\x3c\xad\x8f\xe7\x88\x1c\x92\x8f\xeb\x46\xad\x5c\x98\x45\x8e\xfa\x8c\x8d\x21\x17\x16\x78\xa6\xf9\x7e\x05\xb3\xe1\x6c\xaf\x85\x0a\xa9\x31\xa1\x0a\x08\xae\x21\x77\xce\x48\x3e\x00\x26\x9b\x16\xbe\x55\xe8\xb5\xc3\xb9\xef\x4f\x76\x8e\x43\x7d\x69\xbe\xdd\x4b\x68\x1d\x0b\x6f\x20\x99\x02\x29\x02\xd5\x1b\x0e\xed\x2c\x8c\x64\x8a\xaf\xa9\xbe\xee\x6c\x40\x37\x35\xa6\x37\xe5\xba\x2b\xb7\xd5\x66\xda\xd4\x68\xe8\x9f\x2b\xcb\x9e\x0f\x4d\x1f\xb0\x73\x29\x83\xfe\x1e\x3d\x5f\x61\x4c\xa5\x3f\x93\xa1\xcb\x9d\x37\xb3\xb8\xd8\xf6\x33\x9a\xc7\xb3\x6d\x16\x5b\xcd\xbc\xa1\xf4\x55\xb6\xe1\x41\xc5\xaf\xec\xfc\x9a\xe5\xd9\xf6\x20\x99\x76\xfa\xdf\x6f\x4c\x94\xbc\xd1\x96\xa7\x00\x3b\x5c\xd5\x45\xe1\xef\x47\x5a\x0f\x6f\x68\x0c\x68\x63\x60\x61\x91\x43\x23\xe6\xb8\x4f\xa6\x42\x14\x7e\x1a\x74\x26\x53\x53\xee\x42\xb4\x5b\x61\xb0\xce\x6a\x37\x7a\xd6\x13\x41\xc1\x5e\x98\x05\xa9\x19\xfb\x71\x10\x56\x41\x21\x95\xe8\x4a\xb5\x07\x58\xe1\x6a\x5f\x4b\x4d\xb0\xd1\x37\x0b\xe5\x30\x35\x08\xb9\x6f\xe0\x55\x9a\x08\x2d\x45\x5d\x57\x9a\x87\x6d\x94\xbd\xb7\x1f\xa0\xd0\xa6\x58\x54\xe7\x79\x9d\xbf\xa3\xd6\xf3\xc8\xf4\xc2\x20\x8c\x59\x4c\x59\xc7\xc4\xe8\xec\xfd\x39\xfe\x10\x15\xf1\xf3\x3a\xc1\x2b\xf2\xd4\x8a\xe2\x23\x50\x3d\xa6\x84\xee\x8e\x79\xae\xa6\x49\x22\x57\x8e\x17\xe5\xb8\xa6\x42\x39\x5e\xab\xf7\x12\x7e\xc2\xf4\x8b\x81\xa9\x62\xc6\x2f\x6a\xcc\xf8\x45\xc5\x4e\xbb\x12\x27\x6b\x9f\x20\xc7\x8c\xcc\xf9\xb2\x8a\xc2\xaf\x29\xfd\x95\x1f\xd2\x44\x82\x25\xe6\xfb\xd2\xbc\xb5\x0d\xe5\x6b\x17\x18\x02\x55\x7c\x2d\x70\xd0\x0d\x4c\x32\x90\x97\x4f\x26\xaa\xda\x5d\x85\xe2\x52\xe8\x80\xde\xf7\x59\x07\xa0\x48\x43\x83\xf0\x09\x9e\xfa\x1c\xbe\x8c\x4f\x9a\x12\xb8\x9e\x89\x7c\x74\x57\x2c\x1d\xdd\xb2\x3d\x56\x3c\xcf\x63\x13\x67\x61\x12\xef\x55\xe3\x57\xfb\x3a\x0a\xd3\x8f\x2a\xad\x50\x12\x95\x26\x54\x2a\x58\xca\x9b\xf2\x8c\x17\x36\x55\x45\x3f\xed\x51\x25\x10\x3e\x88\xc4\x05\x49\x92\x74\x41\x11\x48\x5e\xd0\xa8\xdc\x7c\x18\x99\xdc\x60\xc7\x23\xcc\x3a\xe1\xb9\xb1\x69\x8e\x6a\x6c\x2a\xbb\x3c\x2b\x1f\x6a\x2a\x67\x0b\x57\x3e\x02\x7c\x54\xc4\x4f\x2a\x5e\xab\x93\x8d\x08\x9c\x81\x89\xc3\x82\x6b\x32\x58\x16\xa7\x2b\xbf\x4a\x8f\x45\x34\x7a\x1a\x6a\x4c\x23\x7f\x10\x06\x7e\x04\xe4\x2c\xdc\xd1\x79\x45\x88\x58\x07\x50\x1e\x3d\xdc\xee\x16\x29\x06\xaf\x6d\x16\xe2\x32\x92\x89\xa6\xb5\x48\x0b\x10\x35\x4f\x39\x3a\x79\x8e\x13\xb1\x41\x6f\x21\xce\x14\x3c\xbe\xd6\x77\x1d\x64\x33\xe5\x1f\x89\x42\x9e\xe2\x9a\x64\x83\xc1\x33\xad\xca\x95\xdd\xd1\x40\x92\xcd\x89\x03\x6c\x0e\xfd\x55\xf3\xa4\x12\x39\xde\xb5\x41\x2b\x59\x68\x12\x1c\x2f\xcf\x34\x85\xa7\xf8\x10\x53\x81\x22\x57\x40\xc1\x8a\x4b\xe5\xac\xca\x81\x62\xf9\x94\x8a\x45\xef\xa0\x8a\x6d\xb1\xee\x15\x2d\x48\x11\xd1\xf9\xa7\x4f\x11\x68\x5f\xf4\x65\xcb\x95\x0a\x40\xdb\x49\x02\xca\xe3\xc7\xcf\xb8\xf6\xfc\xff\xf4\x24\xa2\x74\x2a\x69\x4c\x58\x29\xc6\xf2\x3a\x95\x06\xf0\xf1\xce\xd3\xd5\x78\xf9\xd9\xd9\xa5\xf6\xc2\xc2\x91\x29\x37\x85\xf3\x86\x6a\x27\x82\xc5\x19\xee\xf8\x86\xf7\x94\x96\x46\x29\x02\xcc\x32\x93\x11\xb6\x98\xc5\xf2\x07\xf9\xa4\x29\xec\x05\x67\x05\x13\xd7\x34\xf5\xd2\x74\x83\x20\x1d\x98\xc7\xe9\x83\x22\xbc\x47\x6b\xd5\xd2\x52\x96\x4f\x0c\x75\x9c\xb7\xa8\xd8\x2a\x1c\x70\x4a\x39\xee\x15\x4c\xbf\xe0\x99\x4d\x75\x34\xa9\x1d\x9a\xa6\xf0\x51\x3c\xc9\xae\x95\x4a\xf0\xc8\xef\x2a\x2d\x85\x7f\x4f\x7b\x12\x06\xfa\x9a\xa7\xe4\xcc\xb6\x34\x4d\xeb\x71\x44\xf1\x22\xcd\xe4\xe0\xb7\xfd\xd4\x8f\x83\x61\x98\x19\xc3\xc1\x30\x03\xec\x71\xb9\x82\xb6\xff\xb8\xfa\xcf\xc8\xa4\x41\x91\xa2\x8a\x64\x55\x21\xcb\x3f\x14\xaa\x2b\x85\xd9\x6f\x52\x88\x63\x3e\xd3\x1e\x3b\x0f\x3b\xa2\x5d\xfe\x95\x4c\x62\xbb\x76\x79\x96\x8c\xcc\xda\xd0\xa4\x46\xc9\x40\xbd\x37\x71\x32\x50\xef\x79\x8e\xca\x2f\x89\x4c\x9e\xfb\xb4\x7c\x2c\x5c\xa8\x7c\x98\x42\x24\xa8\x46\xf1\xef\xaa\x4e\xee\xaf\xff\xd6\x7f\xd3\x72\x37\xc3\xda\x2c\x7c\xb2\xf1\x98\x9b\x1f\x18\x8d\x0d\xe3\xf2\x84\x02\xd3\xe1\x17\xbe\xe3\x39\x83\xa7\xf3\xed\xbe\x89\x92\x18\x7e\x02\x8e\x9e\x65\xe4\xf9\xa4\xce\x9b\xb6\x5c\x3a\x57\x41\x00\x3e\xaf\x73\xe5\x25\x4e\xce\x6e\x2a\xf6\x9a\xd7\x6b\x06\x79\x79\xb6\x6d\x8a\x34\x19\x1b\x3f\x96\x54\x07\x6b\x86\xf9\xc8\xf9\xa4\x81\x77\x7b\xb9\x5d\xc4\x8a\x14\x1e\x3b\xe7\xa2\xaa\x23\xd4\x93\x47\x9a\x46\x28\xd6\x6d\xdc\x2c\xd2\x84\xe5\x16\xe0\x63\x5d\x03\x0b\x6d\x51\x44\x12\x2e\xfa\x2b\x49\xc5\x1a\x6a\x08\xd9\x30\x59\x23\xa0\xa6\x2b\x8c\xb0\x28\xa8\x7b\xfb\xbf\xea\x08\x3e\xfc\x74\xd4\x52\x6d\x5b\x45\x1a\x7e\xd1\x6a\x49\x87\x71\x6e\xa8\x38\x5d\xf8\x11\x17\x27\x60\xbb\x58\x66\x13\x49\xfe\x49\xa5\xd6\x73\xaf\xf1\x61\x65\xe5\x4b\x0a\x11\x34\x58\x10\xbe\xed\x45\xd6\x11\xa4\xc4\xea\xf5\x62\xc0\xdc\x2a\x02\xbf\xd1\xf5\x90\xa7\x54\x9b\x74\x44\x14\x3e\xac\x3b\x8c\x88\xed\xba\xe7\x3a\x06\xd7\x1b\x24\x3f\x96\xdb\xe6\x25\x25\xf9\x81\x60\x01\x7f\xc4\xc7\x3a\x69\x26\x30\xfb\xa3\x74\xc7\x92\x6e\xd2\xb3\x40\x98\x74\x47\xb9\xdf\x0f\x60\xde\xd8\x54\x91\x79\x63\x87\xed\xb9\xfe\xd1\xf7\xa8\x33\x85\x8a\x45\xab\xa3\x06\x10\xce\xc1\xec\x31\x1b\x07\xa2\x2f\xfe\x98\xc6\x72\xfb\x50\xf7\x16\x22\x39\xd8\xac\x5b\x13\x85\xf6\xa8\xab\xd5\xd2\x13\xcd\x86\x09\xc7\xb8\xf0\xd3\x27\xe8\xca\xf9\xb8\x16\x38\xcc\xcd\xb5\xc7\x26\xed\x17\x23\x98\x93\x66\x70\xa5\x93\xe8\x70\xfc\xb9\xc2\x50\xe3\x42\xc4\x3f\xc6\x46\xc6\x9f\x9d\xd7\x58\xf2\xbb\x9a\x48\x82\x85\xb1\xa4\x48\xe8\x10\x8b\xe7\x11\x55\xb2\x0b\xcb\xc3\x38\xe9\x46\x7e\x96\x27\x23\x7f\x4a\x25\x4d\x57\x14\x24\x01\xce\x15\xc7\x3f\x56\xf1\xb5\x5f\x0c\x0e\xe2\x9d\xa3\xa4\xc5\x34\x97\x7c\xa2\xba\xd7\x23\xff\xe5\x9e\x0f\xa6\x4c\x35\x52\xe5\xcc\xbf\xab\xe2\xb2\x0a\x8a\xf4\xb6\x1a\x8a\xe0\x83\x70\xd5\x4c\xbb\xbb\xd9\x05\x60\x8e\xf0\x51\xb8\xe4\xfb\xaa\x22\xf8\x39\xa6\x42\xd0\x71\x6a\x7a\x44\x80\x50\x06\x12\x52\x06\xaf\x00\xf2\xcb\x05\xc5\xf2\x6a\x96\xdd\x3a\xf3\xcb\x2c\x3d\xcc\x72\x3f\x9b\x56\xac\x1b\x77\xd4\x48\x27\x77\xf9\xe1\x00\xa6\x39\xe6\x41\x04\xf1\x40\x11\x0c\x99\x97\x82\xa8\xc8\x48\x1a\xb4\x74\xeb\xa0\x77\x05\xe6\x89\x8f\x35\xdf\xf2\x5a\xb6\x47\x91\xba\x4c\x01\x5d\x82\x5d\xf0\x78\x47\xb7\x12\x15\x1f\xc4\x83\x89\x92\x60\xd9\xa2\x7d\x23\x15\x57\x37\x98\xfe\xa2\x81\x3e\x69\xf9\x24\xad\x54\xa6\xaa\xe2\x56\xa2\x52\xe3\x8f\xa2\x32\x15\x6c\x3d\x3b\xbb\x7d\x55\x7d\xec\x23\x4f\x75\xb1\xb5\xc6\xcc\xd0\x8f\x07\xa6\x37\x4d\x51\xa3\x15\x68\x59\x96\x26\x16\xb4\xcf\xf0\x88\xbf\x35\x51\xc2\xab\x56\x19\xc8\x5f\x09\xe3\x19\x45\xbe\xf2\xf3\x89\xa6\x35\xa6\x87\x85\xaf\x7a\x94\xd0\x32\x76\x8e\x69\x71\x71\xbb\x4e\xfe\xb4\xb8\xd8\xce\xc3\x7e\xbf\xa5\xaa\xb2\x17\x94\x82\xdf\x05\xdb\x7e\x5f\x33\x66\xc5\xc4\x15\xd6\xfa\x37\xb1\xd9\xf8\x44\x85\x07\x04\x7b\x30\x59\x9e\x3d\xaa\x79\x03\x2a\x4a\x04\x14\xdb\x5a\x69\xad\xb9\x79\xc6\x60\x7e\x5d\x8b\xf7\x32\xe0\x83\x4f\xb0\x7f\x81\xaf\xe1\x20\x4a\x57\xd5\x11\xa4\xdc\xa6\x05\x2a\x32\x5d\xae\x52\x60\x2b\x9c\xf3\x47\xed\x80\x6a\xf9\x6c\xf9\x58\xc5\x06\x41\x94\x04\x2b\x19\x51\x6d\xda\x99\x86\x43\x6e\xa6\x41\xcf\x72\xa4\xfe\x4b\xf0\x81\x22\xec\xd5\xb2\x14\xb5\x1b\xaa\x65\xdd\x4f\xc3\x32\xb0\x42\xff\x0c\x15\x9b\x53\xf4\x51\x59\xd2\x2d\x2b\xf5\x85\xb9\x23\x19\x9f\x74\xf5\x17\x9a\x8c\xa0\xa1\x6d\x5b\xe3\x2b\xed\xb7\x40\xe6\x1a\xf2\xbf\x91\xf1\xe3\xb5\x61\x18\x19\x8a\x08\xd1\x5a\xbd\xc6\x05\x53\xee\x15\x4d\x94\x26\xd6\x5b\x13\x67\xf6\x41\x66\xe0\xa7\x61\xb4\xde\x72\x02\xad\xef\xd3\x63\xe0\x63\x3b\xc0\xe9\x47\x26\x85\xa4\xbd\x90\x78\xaa\xa0\x73\xd3\xd6\xbf\xc7\xc6\x5f\xa9\xf2\xf3\x5c\x44\x10\xc8\x27\x8a\x73\x36\xc9\x87\x26\x5d\x0b\x33\x33\xad\xe8\x81\x2e\x78\x6e\xd0\xe5\x96\xea\x6b\x01\x74\xc4\x1c\xdb\x0a\xd3\xfa\xa2\xff\xf2\xcb\x33\x0e\x7c\xba\x83\x43\x99\xbe\xd8\x16\x82\x14\x57\x13\x19\x1d\x24\x93\x1f\x29\xbc\x6a\x37\x29\xd2\xcc\x4c\x95\x71\x04\x5a\xf6\x0c\x79\x15\x80\x93\x6a\x4d\xd6\xd9\x38\x9f\x9d\x7d\xbe\x74\x87\x69\x6e\xd2\x69\xfa\x7e\x98\x55\x80\x4d\xe0\x80\xfe\x9f\x89\x8a\x0d\x90\x63\xa3\x0e\x73\xba\xb6\x5d\x8f\x1e\x6e\x67\x09\x3f\x71\x44\x68\x48\x53\xf8\xb8\x21\x5a\x5b\x6a\xf7\xfd\x28\x48\xe2\x56\x25\xb7\xa1\x1f\x91\x58\x60\x27\xcc\xfb\xd0\x62\x3b\x0b\x47\xe3\x48\xc5\x9d\x48\x90\x80\xfc\xe0\x63\xb5\x3c\x4b\x8b\x06\x84\x08\x2c\xd2\x19\x4f\x51\x1a\xd4\x61\xde\x54\x97\xcf\xc3\x55\x03\x0e\x49\xfb\x26\x2c\x03\xd4\x7d\xf5\x70\xce\x6a\x34\xf7\x30\x2d\x06\xa4\xc6\xb1\xbc\xc4\x8d\xa6\x0f\x3c\xc7\x27\xf4\x41\xad\xa5\xba\x3c\x7b\xa4\x8c\xbf\x4c\xb9\x03\xed\xa0\x08\x0a\x50\x5f\x9d\x38\xb8\xe5\x57\x6b\x8f\x60\x61\x81\x45\xed\x1c\x94\x96\x67\xfe\x54\x9c\x7f\x51\x01\x23\x32\x3f\xf2\x39\xfd\xe2\x39\xc4\x89\x02\x62\xa3\x45\x84\x8a\xc3\x0d\x3b\x41\xe3\xa7\x83\xc2\x7e\x3d\xfc\xe4\xab\xca\x67\xbe\xda\x50\xaf\x7f\xbe\x1d\x25\x42\xe8\xa8\x08\x85\xec\x04\xb0\xf2\xa5\x7e\x6f\x14\x12\x2e\x11\x80\x06\x91\x7d\x69\xed\x20\xeb\x03\xe2\xe7\x77\x55\x84\xd5\x37\x7e\x9a\xed\x29\xf7\x85\xf0\x6c\xb8\x8a\xfb\x2d\x4f\xc9\x34\xa3\xc9\x67\xe7\xd3\x6d\x9d\xfa\x23\x7a\xfd\xdb\x6f\x57\x72\xf5\xcc\xa4\x8f\x3a\xf9\xd9\xaf\x69\x31\x1d\x26\x8f\xe2\x99\x4c\xcf\x76\x3e\x8f\x1d\xd8\x70\x71\x2d\xda\x74\x78\x84\xfb\x37\xdc\xb8\x1f\x03\xa8\x65\x05\x94\x06\x4b\xc6\x7d\x69\x11\x22\x67\x9f\xa9\xe1\x76\x09\x65\xa7\x50\x8c\x64\xe0\x6f\x62\xce\x9c\x1e\xe6\xe0\x09\x6a\xaa\xa0\x8f\x72\x5d\x15\x7f\x01\x5e\x12\x31\x2a\x51\xef\xa1\x5b\x10\xc2\x02\xf7\x30\x07\x7e\x18\x67\x7b\xca\x70\x8a\x35\xe5\x11\x3d\xdb\xb1\x01\x1b\xd9\x5c\xf7\x94\xd8\xf6\x15\x05\x42\x66\x6d\x18\x91\xa4\x7f\xd4\x5e\xc7\xaf\x3c\xed\x0c\xe1\x5b\x8a\xed\x85\xb1\xae\xdc\x62\xa5\xf2\x2d\xe6\x57\xb8\xd6\x2f\x0a\xd7\x40\x4a\x89\xac\x63\xe9\x83\x11\x90\x2d\x79\x3b\xa6\x92\x96\xb8\xbe\x72\x03\x6a\xc0\x6c\xb4\x3c\x27\x69\xb9\x1b\x62\xc0\x4c\xe6\x3d\xd1\x00\x9d\x57\x51\x5f\xc3\x3f\xb1\xfc\x26\xda\xf6\xd7\x91\x67\x62\xe4\xe6\x34\xdc\x01\xf6\xd5\x35\x4a\xd9\xb0\x8d\x98\xb2\x41\x08\x93\xdd\x84\xc6\x5f\xa8\xdc\xfe\xc0\xc6\xce\xfe\xd1\x0b\x2f\xb4\x83\x24\x5e\x35\x31\x6d\x7c\x42\xe6\xa2\xfa\xd3\xea\x38\x7a\x78\x4c\x34\xa0\x90\x73\x5a\xe1\x72\x5f\xd3\xb4\xa4\x75\x5a\xe7\xa3\x87\xdb\x41\x5a\x30\x79\x94\x04\x3f\x6a\x05\x5f\x54\x52\x8d\xd7\x2b\xb3\xae\xbd\x30\x51\x78\x8b\x9f\x68\x32\x9b\x9f\x38\x66\x89\x22\x8a\xba\x3e\xc5\x20\x16\x63\xc3\x7d\x7d\x3e\x69\x00\x1f\xb1\x98\xa6\x22\xc1\xfa\xb9\x62\xa2\xf9\xb9\xa7\x85\x54\x30\xa2\x3b\xa5\xd0\xca\xaa\x25\x75\xba\xa2\xb3\xe7\x39\x08\x0f\xf9\xb0\xbd\x0a\x60\xa3\x15\xfe\x77\x6f\x28\x7d\x46\xa6\xc1\xb0\x22\x32\x96\xa8\xf6\xbe\xa7\xa8\xd9\x5f\xd7\x1d\xd6\xef\x35\x01\x16\xcb\xff\x5a\xf3\x08\x84\x20\x1e\x2d\x1f\x37\x4d\xa5\xae\x9a\x21\xf1\xec\xb6\x54\x81\x44\x29\xde\x5f\x54\xc9\x76\x3f\xec\x72\x11\x43\xd2\x81\x7b\x9e\x2a\xeb\x3a\x26\x9e\x61\xd2\xef\x8f\x7c\xb0\xeb\xa0\x3d\xc0\xd9\x0c\x9f\xa8\x94\xc4\xc4\x31\x5a\x42\x12\x1a\x28\x37\xab\xe5\x32\xef\x79\x3b\x8a\xac\x4b\xcb\x4b\xed\x67\x67\xe7\x9f\x2a\x1d\x1b\x16\xe1\x0c\x05\xef\x00\x12\xcc\x40\xf0\x05\x21\x06\xba\xd1\x18\xeb\xa7\x01\x9d\x67\x04\x1f\x40\xfb\x16\xc0\xd6\x56\xa7\x3a\x1b\x57\x5e\x13\x62\xb7\xdd\x1b\x0e\x28\x71\x9b\xfa\x39\x08\x6d\x6f\xc0\x8e\x32\x8c\x81\xac\x06\xb6\xe6\x1d\x98\x13\xdc\x2c\xca\x5c\xb8\xa3\x19\x54\x14\x60\x34\x5e\xc5\xdc\x06\xea\x4b\x57\x29\xa2\xc7\x33\x60\xc2\x18\x61\x48\x55\x50\x9d\xfb\x0d\x2d\x88\x23\xed\x3c\xf5\x7b\x32\xff\x26\x62\x8c\x74\xf9\x48\x10\xf6\x76\xdc\x00\xc3\xf5\xc9\x27\xac\xb7\xeb\xf7\x7c\xbc\x4a\x84\xba\x37\xd4\xac\xfa\x8d\x9a\x77\x7f\x76\xf6\x99\x76\x66\xe2\x5c\x05\x05\xd2\x57\xd3\xd2\x94\xb5\xe8\x6b\xfe\x68\xbb\x5f\x86\x2d\xe5\xdd\xe1\x39\x23\x8c\xab\x94\x32\x85\x70\xc1\x01\xee\x62\x3f\x4d\x93\x35\x06\x74\xc9\x2b\x69\x59\x3a\x97\x2b\x8d\xf3\xa6\x48\x13\x19\xea\x03\x27\x44\x82\x4a\x4b\x98\xa1\x96\x9a\xe1\xd5\x5a\x45\x18\x93\xd4\x45\x96\x13\x45\xa0\x94\x1b\x11\x5c\xde\xd3\x03\x39\xf7\x6a\x96\x6d\x79\xb6\x8c\x2e\x53\x10\xc9\x31\x99\x80\xa2\xc5\x3b\xad\x50\x7f\xad\xce\xce\x87\xf3\xdc\x52\x7b\x44\xb1\x49\x69\xaf\x65\xaa\x9e\xfa\x82\x7c\xa2\xb0\x9c\x23\x3f\xf6\x07\x96\x8f\xc5\x6e\x16\x4b\x07\x7f\xb1\x49\x8c\xcd\x1f\x19\x12\xae\xe5\xd6\xb0\xd0\x2b\xe0\xfe\xf8\xac\x19\x74\xe6\x67\x89\x05\x9d\x71\x64\xad\x74\xd9\x4f\xdb\x86\xe3\xd8\x1f\x9b\x74\x8f\x43\xdd\x73\xce\x29\xfb\x4e\xe1\x29\x8f\xd3\x3e\x60\x9e\x5a\x9a\x76\xb0\x1f\x52\xd1\x58\xad\x15\x7f\xf4\x70\x3b\x86\xb8\x9e\x65\x86\x5c\x9e\xb5\xfc\x81\xe5\x9e\x43\x3a\x76\xdb\xba\x0d\x3f\x36\xa3\xd0\xcf\xe8\x8d\xa0\xa8\xf3\x1a\x2e\x0a\x3b\xed\x7a\x85\x97\xc6\xa5\x2c\x41\x52\xa4\x4c\x00\x82\x6f\xff\x23\x38\x72\xab\xf9\x56\xee\x49\x38\xef\x7a\xfc\x4f\xa1\x51\x1a\xe6\x49\x6c\x18\xc2\x03\x58\xf9\x96\x52\x64\xda\xb2\x0f\x2d\x4b\xa2\x72\x4b\xd8\x5a\x07\xaa\x94\xf0\xfe\x6f\x53\x1c\x23\x65\x46\x27\x84\x19\x25\x33\x2a\xfd\xd1\x35\x70\x14\x1f\x90\x23\x5d\xf7\x5c\xfd\xe2\x16\x56\x2e\xee\xf4\xbe\xca\xd7\x93\xb1\x89\x4b\x6f\x66\x19\x70\xc1\xa7\x0d\x13\x75\x0f\xef\x0c\xfb\xf9\xfd\xc6\x8a\x31\x20\x89\x59\xcb\xc1\x98\x2f\x4f\xb4\x8a\x40\xc3\x4a\x7c\x5e\x06\x74\x78\x49\x71\x98\x0c\xdb\x21\x31\x73\x45\x90\x37\x1a\x3f\xe2\x24\xce\x6e\x7b\x2e\xe7\x7c\xdd\x73\x51\xed\xa6\xa7\x04\xe8\x76\x6d\x28\x01\x3a\xae\xe3\x69\xea\x77\x54\x7b\x6e\xd1\x9e\x11\x18\x64\xd3\x84\x62\x64\x4c\xbf\xc0\x4b\x94\x14\x41\xf3\x09\xab\x07\xd9\x2d\xd6\x4d\x9a\x41\xae\x40\x53\xd1\xb2\xda\x15\xfd\x2a\x52\xb5\x93\x74\x03\x80\xd3\xfe\xac\x49\x73\x3b\x2b\x46\xa3\x10\xf1\x11\xbe\x09\xe6\x0e\xd7\xff\x11\x65\x6c\xd2\x73\x6c\x58\x7b\x41\x32\x1a\x15\x71\x98\xe5\xd9\x34\xf6\x36\xe2\x8d\xc7\x3b\x0a\xa9\xd2\xa2\xd8\x5c\xb4\x5f\xb5\x02\x9a\xaa\xb4\xad\x25\xe9\x0a\x69\xe4\x7e\xe1\x77\xac\xd2\x4d\x79\xe5\x32\xa7\xeb\x34\x77\xbe\x49\x05\x38\x04\xa9\xff\xb7\x1a\x51\xbe\x3d\x71\xdb\xeb\x9a\xdd\x93\xdd\x22\x8d\x05\x9a\x87\xb2\xd3\x4d\xfa\x9c\x22\x89\x7c\xc6\x4a\x92\x4b\x23\x6c\x64\xe2\x6c\xcd\xf8\x29\xd1\xac\x0b\x3e\xb0\xfc\x2b\x3e\x56\xa1\x56\x3e\x4c\x8d\x79\x42\xd3\xfd\x9f\xf7\x94\xaa\xf1\x5d\xcf\xdd\x10\x71\xff\x6e\x5f\x22\xcf\x8f\x9f\x3f\xa6\x80\x81\x1c\x96\xc1\x8f\xdf\xa7\xfb\x45\xfd\xed\x7d\xcf\x69\xb0\xfe\x18\xf5\x10\x54\x10\x40\xdd\x8b\xa8\xfa\x96\xa7\x60\xa6\x6f\x78\x4a\xaa\xe1\xae\xde\x56\x4c\x52\x8c\x28\xe2\x0e\x62\x3f\xec\xe5\x33\x4a\x40\xf2\xa3\xca\xbc\x59\x1c\x31\x5b\x21\x73\x97\x60\x4d\x0a\x91\x49\xdd\x5d\xb7\x03\xbf\x20\xa9\x45\x16\x80\x10\xf9\x82\x96\x65\x5f\x3d\x69\x47\x67\xc3\xd8\xf4\xfb\x61\x50\x06\xfe\xeb\x2d\xd5\x3d\x41\x1a\x2b\x80\x13\x57\xac\x34\x71\x2f\x59\x73\xd3\x50\x4a\x19\x50\xc8\x01\xce\x37\xa0\x6d\xda\x61\x1c\x84\x3d\x63\x35\x2c\xd0\xf9\x3a\xe5\xa9\x9e\xd8\xa9\x06\xb6\xea\x23\xa4\x6e\x9b\x65\xe1\x2a\xa8\x0c\xdd\x54\xa0\x05\xe3\xbf\xea\x52\x06\x3f\x4d\x43\xd3\x9b\x71\xff\x76\x69\xa2\x74\x42\x1f\x57\x54\x44\x0f\xd5\xdc\x3e\x57\x04\x90\xf3\x7d\x67\xe7\xb8\xef\xe7\xca\xab\xf8\x45\x15\xe8\x9e\x99\x28\xee\xde\x3b\x94\x07\x8a\x4a\x28\xb9\x72\x24\xd0\x27\xd5\xf4\xe3\xbe\x8e\x4b\x10\x5f\x43\x74\x88\x17\x7e\x82\xb6\x11\x2b\xb4\x51\x12\x67\x49\x0b\xe6\xe6\xb8\xce\x3e\xd5\x29\x57\xaf\x1d\x0f\x3a\x24\x40\x82\x7f\xa7\x33\x68\x96\xb4\x60\xbd\x00\x44\x11\x76\x00\xfa\xcb\x5f\xb4\xea\xab\xad\xe7\x96\xaa\x2a\x94\xb8\xa5\xa9\x8e\x1a\xcf\x7a\x73\xe2\xc6\xba\x7e\x8a\xb5\x0e\x5e\x9d\x5d\xdc\x86\xc0\x92\x38\x4b\x21\x2f\xb3\x02\x60\x6e\x08\x51\xd7\x3d\xb2\x19\x98\x01\xe1\x61\x58\x54\xe4\xaf\x4d\x14\x8f\xef\x3b\xe0\x82\xc2\x4f\x3a\x15\xff\x35\x3f\x5a\xd9\x43\xcf\x17\x0e\x69\x1f\x39\x27\x5b\xd1\x2e\x1f\x9d\x0d\x72\xcb\x3b\x96\x7d\xeb\x3a\x0f\x04\xb6\xdf\x3e\x55\x51\xea\x48\x7a\x45\x60\xf6\xd2\xa5\x60\x5d\xec\xc5\x0d\x73\xe8\xa9\x78\xce\xae\x2a\xa1\x80\x4b\x4a\x84\xf9\x86\x82\x62\xdd\xc0\x43\x41\xca\xb7\xa5\xdb\xe4\x61\x16\xf8\xd1\x7e\x45\x58\xcd\x80\x00\x3e\xd1\x58\x67\x1e\x50\xd5\xce\x42\xd8\xab\x1d\x6a\xff\x9a\x12\xd3\xff\xeb\x89\x92\x08\xbe\xe8\x29\x40\xe0\xc5\x89\xae\x31\xd1\x0d\xa0\xd0\xfd\xbe\x7a\x08\x3d\x93\xa7\x49\x98\xef\xa5\x8b\xab\x30\xd6\x61\xdd\xff\x01\x45\x1e\xb8\xc1\xfb\x5c\xf7\xb6\x18\x6f\xab\x41\xf9\x75\x5c\x84\x14\x2a\xcb\xab\x66\x0e\xf1\x06\xba\xf7\xe5\xf6\x5a\x48\x9a\x4a\xe5\xeb\xb4\x10\x80\xf2\x25\x48\xdf\x58\x66\x57\x46\x83\xd1\x94\x62\xcf\xbb\xea\x69\x3f\xf6\xaa\x62\x6b\x39\x5f\x33\x11\x87\x16\xdb\x79\x6a\xfc\xde\x28\x8c\x22\x36\x2d\xc2\x9a\xd5\x72\x0c\x5a\x2e\x62\x35\x7e\x60\x66\xe8\x26\x2a\x95\x02\x4d\x38\x84\xd5\x3e\xd3\x51\x74\x57\x7f\x4d\x4f\xe7\xe3\x68\x38\xe6\xe6\xdb\xfd\xd0\x69\xd5\x62\x89\xdd\x56\xd0\xde\xdb\xb6\x57\x56\xc4\x19\x51\x27\x00\xdd\xc9\x41\x97\x96\x63\xbb\x57\xc3\x42\x50\x83\xb8\xeb\x07\x2b\x51\xc2\xf1\xbf\x16\x9a\x16\x61\xad\x7a\xe9\x73\xa9\x9d\x15\x29\x66\xa2\xf9\x15\x63\xc9\xa1\xab\xfc\x16\xcc\x87\xae\xea\xc3\x26\xdd\xb4\x7b\x71\x35\x10\x45\x53\x98\x0f\x4c\xd0\xc1\x81\x9f\xd0\x6b\xf9\xbe\x82\x85\x47\xd1\xc1\x56\xeb\x90\x22\xae\x72\x6e\x9a\x5e\x11\x1a\x71\xa8\x2d\xdd\x53\x74\x1b\x4c\x42\x6f\xc7\x77\x2c\xb5\xf1\x5d\xc5\x38\x72\xd3\x3e\x47\x4c\xce\x86\x92\xef\x21\x99\xb8\xed\x39\xb8\x03\xd3\x77\x88\xcc\x67\x3d\x63\x7c\xa6\x1d\x46\x91\x19\xf8\xd1\x94\x43\xc3\x9e\x9c\x28\x92\xab\xff\xa4\xb4\x82\xcf\xd8\x87\x12\x14\x11\x02\x35\xbd\x39\xf0\x96\xdf\xf6\x14\x34\xe7\x64\x2d\xcf\x2c\x93\xd4\xa1\xf1\x7b\x0c\xe1\x87\x64\x9c\xc0\x5f\x1d\xc2\xf1\xaa\x1a\xea\xbc\xd2\xa4\x71\x9e\x0f\x13\x9a\xe9\x8c\xd6\x21\xc0\xac\xa9\x28\xf9\x58\x49\x3c\x06\x49\x92\x02\xcc\x27\x7a\xc1\xf4\x5c\x44\x30\xb8\xe5\x74\xa8\xf4\x54\xd0\x69\xf8\x65\xf9\x93\x86\x86\x84\x79\x69\xcc\xcc\xec\x82\xa6\x43\xc1\x99\x8f\x37\x1a\xc9\x0a\xd2\xb1\xc9\x8b\x32\x45\x7a\x76\xd6\x8e\x32\xaa\xb1\x46\x5b\xd2\x1b\x85\xbd\x5e\x64\x84\x2f\x8e\xd5\x28\x35\x72\x6c\xa2\xea\xa2\x37\x6d\xd7\x6c\x35\xf4\xbb\x91\x51\xb8\xe9\x77\x15\x24\xed\xdd\x06\x56\x89\x76\xdf\xf4\x4c\xca\x39\x5b\x23\xd8\x51\xa8\x13\x73\x13\x0c\xe3\xf0\x2b\x85\xe0\xac\x79\xee\x57\x75\x04\xee\xa8\xee\x69\xd7\x4f\x83\xc8\x5f\x9f\xaa\x54\xb0\xdc\x86\x3f\x37\xd1\xe3\xfe\x72\xf5\xeb\x26\x62\x52\x31\xf1\xa4\x3f\xd6\x2c\x3d\xaf\x4d\x94\xec\xe7\xb1\xda\x2b\x39\xb4\xd8\x0e\x12\x82\x22\xc0\x76\x4a\x01\x58\x55\x38\x59\x01\x0d\xdb\x6a\xca\xb2\x82\xa1\xda\x22\x25\x24\xd4\x0a\x39\x2c\x45\x08\x71\x8c\x92\x26\x19\x5e\xd0\x79\x5a\xb1\x8e\x2e\x16\xec\xcb\x19\xed\x4f\xce\x78\x4f\xbb\x16\x31\x55\x96\x73\x52\x56\x9e\xa1\x3a\x9b\xed\x70\x2f\x4b\x66\xf5\x8a\x42\xbc\xfc\x98\x1c\x32\x3e\x73\x57\x4d\x1e\x9f\xb2\x25\x46\x22\x9f\x08\x31\xe0\x86\x04\x72\x4f\x47\x41\xc4\x2f\x29\xbf\xb9\xa9\x08\x35\x2e\xd5\xec\x00\x19\xd7\x28\x5c\x15\x48\x97\xc8\xf1\xbb\x35\x74\x52\xb3\xde\x44\x26\x1d\xac\x97\xeb\x52\xc1\xda\x78\xf6\xd7\x12\x53\x3a\x4e\xb0\xb3\x93\x0a\x36\x68\x68\x46\x7e\x4e\xbc\x27\x4a\xbf\x15\xaf\x58\x90\xd3\x0d\x4b\x94\xc7\xd0\xe1\x5a\x78\x80\xcc\x73\x25\x97\xfa\x0c\x35\x91\xaf\x61\xea\x1b\x11\xba\xb4\x45\xca\xfb\xe3\x63\x65\xb0\x5f\x4c\xd6\xf7\xea\xa2\x43\xcb\xd2\x01\x5e\xf6\x34\x28\x1f\x51\xaf\x50\xed\xba\x22\x35\x4f\xc0\x89\xde\x88\xc2\x94\x5c\x6e\x62\x2d\xed\xa5\x7e\x3f\xc7\x1e\xb2\x12\x25\xb6\x8f\x79\xd1\x5a\x80\x38\x89\xc7\x69\xd2\x0f\xc1\xc5\x82\x6d\xb3\x6b\xc3\x6d\xa1\x5d\x1d\x45\xc8\x94\xf4\x7a\x53\xe5\x2a\x41\x59\x71\x77\xa7\x5c\x55\x22\xfa\xe7\x80\x74\x67\xd5\xb4\x73\x98\x25\x44\x15\x34\xad\x56\xec\x09\x8e\x3a\xf8\x8c\x96\x4d\x93\xc6\xfa\x01\xdb\xca\x0f\x92\x61\x12\x31\xed\x04\xbc\xd8\x19\x45\xf9\x53\xaf\x2f\x90\xf0\x59\xf8\x95\x22\x64\xa1\x5f\x5b\xd3\x72\x44\x04\x6a\x62\xe5\x38\xc2\x4c\xe9\x6d\xba\x99\x88\x22\x2e\xb2\xc2\x8f\x08\xb7\x24\xea\x66\xb8\x74\x7c\x16\x9c\x4d\x88\x20\x4f\x6a\xb2\xfc\x6d\x3d\xdd\x99\x60\xd7\xef\x71\x33\x6c\x57\xbc\x4a\x37\xb6\xfc\x71\x84\xd4\x77\x00\x14\xe7\x13\xc5\x57\xb4\x43\x17\x4a\x9b\x86\xc1\x30\xff\x8c\x2a\x19\x7a\x65\xe6\x01\x97\x79\x16\xbe\x05\xd7\xf7\x08\x08\x53\x51\xb3\x12\xbc\x85\x28\xa1\xa0\xe1\x86\xbd\x9f\xeb\xc6\xda\x43\xc0\x39\x44\xbd\xa4\x4c\xc1\x98\x79\x1d\x85\x7f\x98\x04\x4e\x8a\x00\xed\xbb\x4a\x46\x0c\x76\x75\x0f\x6a\x45\x30\x36\x0f\x88\x0a\x55\xa6\xac\x15\x48\xf0\x14\xd5\x17\xf1\x5e\x6e\x4e\x14\x8b\x28\xea\x51\xb8\xc8\xa9\x8e\x63\x66\xbe\x8b\x7a\x14\x80\x75\x8f\x6e\x94\x69\x9b\x74\x5e\x94\xb0\xff\x55\x4f\x89\xeb\x1d\xa0\xb5\x0a\x07\x77\x5e\x81\xe4\x2e\xa8\x8e\x28\x01\x6c\xa6\x1d\x97\x58\x0b\x45\x0a\x9e\x1b\x25\x32\x06\xfe\x87\x0e\x5d\xbd\x0c\x94\xfe\xff\x3f\x06\xf9\xec\xc7\x79\x18\x84\x63\xa5\xb1\x8d\xbf\xb8\x80\xc7\xc5\x27\x0a\xc7\xe9\x17\x65\xc8\x11\xbe\x6c\xc0\x20\x8b\x94\x0f\xbc\x7a\x7c\xac\x6a\xf7\xd9\x30\x41\xaf\xd7\x45\xe2\xff\x42\x71\xd9\xfe\x8b\x26\x4e\xd2\xb5\xd4\xcf\x87\xad\x8a\x88\xa9\xca\xce\x1d\x6c\x8e\xa8\x14\x7b\x26\x95\x56\xb2\xcd\x78\x14\x71\x4b\x8d\x97\xfc\xb9\xa5\x96\xea\xe6\xb0\x6e\x09\x9f\x28\x6d\x83\x20\xf2\xc3\x91\x14\xa9\x10\xcf\x3d\xa0\xab\x90\x87\xe3\x68\xad\x2f\xdb\xa1\xa3\x38\x0c\x56\x58\xa3\x40\x14\xe0\x5a\x4a\xf4\xcd\xcd\x40\x84\xa9\xcf\x9d\x33\xb5\x22\xe6\x6d\x93\x4e\xe5\xaa\x21\xcd\x6c\x80\x2d\x12\x46\xf1\xbb\x0a\x44\xf2\x5d\xe4\x4f\x1c\x19\x63\x8f\xda\xf9\x05\xbb\x28\x19\x03\x8c\x64\xea\x6f\x35\x73\xd7\xdf\x3a\x69\x8e\xa2\x9b\xb1\x74\x9a\xd2\xcd\x6f\x59\xa1\xd7\xa6\x26\xcb\x22\xc0\xa4\x1c\x2f\x89\x9c\x78\x4b\xe9\x8c\xef\x64\xe1\x94\x35\x97\x9a\x55\xc5\x51\x2a\x48\x14\xb5\xde\x3e\xa8\xca\x5e\xc5\xf9\xe3\xe5\xe6\x43\x44\xbc\xa5\x55\x64\x6e\x7b\x8a\x65\xfe\x23\x18\x05\x91\xd6\xa0\x07\x2c\x62\x32\xaa\xbd\xc6\xe2\x0c\xba\x27\x6e\x75\x8b\x6c\xf4\x79\xc6\x53\xec\x82\x2c\x3b\x0c\x43\xbe\x87\xaa\x0b\x4c\x75\xe9\x29\x3f\xbc\xa5\x48\x19\x6e\xa0\x04\x02\x27\xb1\xbf\xe3\x8a\x77\x69\x92\x58\xe5\x4f\xc0\x3d\x50\xc6\xe4\xe3\x86\x72\xf0\x52\xdb\x0f\xf2\x04\xe3\xb1\x76\x50\xc5\xce\xd9\x5c\x9e\x3c\xed\x36\x5b\x6e\x4c\xb4\x96\xa4\x2b\xc4\x41\x6e\x5d\xf2\x8e\xb9\xd8\x26\xfd\xcd\xd4\x8f\xa2\x50\x26\xdf\x90\x43\x7e\x77\xa2\x92\xcb\xef\x36\x85\x22\x71\x92\x53\x80\x4d\x06\xcc\x66\xcc\x2e\x12\x50\xdb\x69\x9c\x64\x61\x4e\x1c\x5f\xb6\xde\xfe\x00\x6f\xc1\xca\x45\xce\x1f\xb5\xfd\x7f\xfa\x42\xa1\x40\xa5\xe7\x28\x42\x92\x3b\xf3\x1f\x47\xdf\xb1\x1a\x46\x53\x44\x2e\x61\xd9\xdd\x2c\x3c\x89\xd1\xca\x88\x68\x5e\x51\x2d\xec\xae\x1f\x45\x49\x4e\x8e\x53\xf1\xa3\x5a\xde\x68\x05\x1d\xde\xd5\xd1\xa2\xed\x4d\x73\xb0\xc5\x78\xcd\x4f\x7b\xd3\x8e\xf9\x74\x0f\xd9\x72\xae\x1d\xd3\x57\xe9\x32\x92\x08\x0e\xb9\x6a\x7b\x79\x2d\x4c\x80\xb2\xe4\x2a\x91\xca\x08\xd6\x96\xc6\xaf\x54\x87\xa0\xa5\x1b\xa7\xdd\xac\x04\xc8\x23\x3f\xcf\xb9\x3b\xf1\x3c\x27\x93\x57\x2b\x41\x02\xb7\xea\x98\xe7\xdb\x53\x20\x86\x33\x6a\x12\xac\x17\xa6\xb9\xae\x09\x5f\x44\xb0\xc7\x27\x4e\x96\xc2\xf4\x7a\xeb\x44\x28\x56\x91\x9a\xc3\x52\xc2\x8c\x96\x94\x89\x1d\xaf\xd4\x29\xca\x82\xe4\xff\xbb\xb9\x9e\x51\x12\x17\x20\x7e\x24\xd3\x84\x22\x37\x4f\x73\xf2\x89\x9d\x80\xcd\x82\x61\x92\x44\xb9\xf1\x83\xa1\xcc\x40\xa1\xe6\x7f\x59\xc9\xd1\x5e\x6e\x90\xbd\x59\x6a\x77\x4d\xf9\x84\xa8\x3c\x62\x09\xab\x1c\xdc\xf0\x7b\xaa\x26\xf8\x00\xb6\x44\x72\x96\xba\xc4\xcd\x3c\xe1\xc0\xc3\xc0\x79\x54\xc6\x86\xd0\xb6\x15\x9c\x88\x1a\xc3\xa5\x62\x3b\xc0\xfb\xc0\x6b\xfe\x9c\x3e\xc9\xc7\xca\xf5\x8e\x4d\x1a\x94\x8f\x62\xc0\x93\xb3\x88\xb4\xbe\xa5\x08\x59\xcf\x4c\x5c\x03\xa2\xce\x6e\x4d\x75\x77\x07\xc9\xc3\x3e\x7d\x57\x65\xfd\xef\x36\x6a\xe1\x07\x3e\x15\xd3\x5c\xa1\xe0\xca\x44\xd5\x03\xae\xa8\x71\x15\x3f\x1a\x25\x59\xbe\x5f\x55\x4a\x14\xa5\xda\x26\x50\xcb\x42\x36\x54\x5e\xa8\xe5\x4b\xb4\xb3\xb0\xd7\x26\x6e\x76\x76\x2f\x45\x53\x2c\xba\xea\xa9\x06\x2c\x70\xf4\x32\xf3\x4b\x0b\x12\xf9\xe8\x69\x6d\xf4\xff\x58\x21\x4b\x0e\x2f\xff\x73\x05\x1d\xba\xa5\x59\xa4\x6f\x35\x31\x97\xc4\x21\xbb\x42\xe6\xe0\xa8\xf0\x71\x7c\xd2\x02\xf7\xbb\x61\x6c\x5a\x3b\x1a\xde\x4b\x16\x6b\x56\x87\x53\x2e\xb7\xcb\xcc\xb7\x48\x4d\x96\x8c\x8c\xea\x2a\x82\xe8\x4b\xe8\x2c\x14\xd8\x3d\x2d\x82\xd0\x8f\x50\x76\xd3\x3a\x3f\x58\xf9\x00\x7a\x4a\x76\xf9\xb8\x82\x6b\xf7\x63\x93\x52\xab\x47\x84\xc4\x4b\x63\xc4\xc7\x35\x0f\xb0\x74\xf8\x48\xbb\x67\x46\x3e\x8d\xaf\xb9\x91\x5e\x0c\x0e\xf2\xb1\x4a\x11\x0f\x87\xd1\x4c\xeb\xcb\x5f\xb4\x5e\xde\x21\x4a\xf8\xfe\x6d\x22\x63\x5f\xfd\x27\x91\x8e\x73\x79\xdf\xd6\x38\x00\xa5\xd2\xc4\x0f\x13\x35\xd1\x7f\xae\x76\xa1\x62\xee\x23\x91\x11\x44\x35\x1e\x72\x60\xb0\x5d\x28\x34\xda\x6b\x73\x69\x92\x1f\xa6\x6b\xfe\x3a\xfc\x22\xf2\x9f\x07\x3a\x19\x7a\xe0\xb9\xf0\x2c\x2f\xd2\x18\x8f\xdc\xce\xe0\x3a\xc2\x1e\x05\x37\x7f\xcd\xf2\x70\x24\x45\x3e\x48\x2c\x16\x12\x2b\xf9\xa4\xa2\xf6\xb9\xa3\x66\x6c\x2e\xa9\x47\xb9\x78\xf4\xa8\xe2\xf8\x38\x8b\x0b\xe2\x13\x6b\x4e\x47\x61\x6c\x04\x87\x82\x96\x3f\xe5\x35\x82\x24\xdc\x55\xc3\x66\x2e\xcf\xb6\x7f\xe9\x8b\xff\x7c\xe9\x8b\x5f\x58\xdc\xe7\xd2\x91\xcb\xb4\xc4\x10\x35\xed\xd9\x50\xd3\x70\x2c\x84\x21\x49\x8b\xc3\xb2\xdd\x52\x72\x17\x3f\x9c\x28\xdd\x83\xbb\x4e\xab\xe1\x7f\x39\xb0\xa1\xf4\x87\xef\x78\x4f\xef\xb8\x94\xcf\xd1\xbc\x2f\xed\x24\xd6\xf0\x98\x28\xf5\x9d\xd7\x15\x4f\x62\x56\x84\x12\xe5\x08\x89\x7b\xf9\x2b\x7c\x5c\xaf\xd4\x1c\x06\xd6\xa9\xca\xf1\xf2\xc3\x89\x62\xbb\xbe\xaf\xba\xca\xdb\x8a\x44\x60\xc5\xc4\xb1\xe9\xad\x4f\xb7\xbe\x34\xef\x78\x7f\x4a\x7b\xc6\x27\x5e\x45\xfb\xad\xa5\x44\xe1\x1c\xa3\xd5\xc8\x8c\x92\x14\xe5\xc5\x43\x8b\x0e\x1c\x6c\x5b\x35\x17\x1d\x5a\xc3\x84\x5d\x4c\x7d\xc8\xb8\x45\x85\x6d\x42\x0d\x85\x96\xfe\x22\xf5\xd7\xb3\x29\x07\x50\x40\x6c\x88\x9f\x07\x01\x9f\xe2\x97\x92\xd5\x1a\x8a\xc4\x81\x2d\xa4\x4f\x1c\x60\xf3\x9e\x62\x2e\x1b\x90\x18\x7c\x3a\xe3\x06\xfc\xdf\x87\x55\x45\xd9\xe0\xa7\x13\xc7\xe2\xb1\x87\xd8\xfb\xf8\xff\xd3\x0f\x23\xaf\x68\x75\x9e\x50\x63\x2a\xab\x49\xb4\x6a\xb2\x69\x8a\xd7\xb4\xee\x3b\x12\x12\x6c\x15\x3e\x26\xb3\xce\x9f\xb1\x65\xd4\x6e\x12\x65\xb9\x49\xad\x43\x12\x69\x3e\xd7\x97\xde\x54\xb9\x64\x14\xc6\xbd\x8c\xe9\xa8\x65\x5c\xa2\x65\xb5\x1c\x36\xd5\x5e\xcf\x46\xc9\x8a\x15\xa6\xb3\x2e\xc3\xce\xc8\x6f\xaa\x82\xb8\x1f\x06\xc3\xb0\x6a\x89\x15\xb1\xd0\x2f\x35\xd5\x07\x47\x7e\x5c\xf4\xfd\x32\x31\xb3\x17\x2e\xed\x51\x67\x87\x7e\x5a\x9b\xd5\x9f\x3f\xda\x1e\xf8\xe5\x6a\xb5\x6e\x1e\x85\x3b\x06\x85\x4c\x2a\x06\xc7\x49\xbc\xaf\x26\x51\x11\xe7\x18\x27\x51\xe3\x68\xf7\x94\x54\x72\x7d\x96\x73\x71\xf1\x88\x9d\xe5\x54\x7f\x84\x4a\x33\x1f\xd7\x5c\xfd\xdc\x5c\x3b\x35\x99\x34\x34\x90\x88\x9d\xc1\x02\x81\xe7\x78\x4d\xc1\x47\xdf\xb5\x22\x9f\xe3\x70\x34\x6e\xa9\x41\x67\x2c\x01\x3e\x56\xc8\xd9\x6c\x98\xac\xa5\x49\x32\x6a\xe9\x9c\x58\xe7\xca\x0d\x72\xe0\x51\x92\xe5\x33\xd4\x46\x17\x31\xcb\x29\x27\x30\xbd\x97\x22\x49\x51\x6e\xa7\x26\xb7\x54\xab\x5c\x8d\xf7\x94\x12\xf5\x5a\x25\x26\x4e\x55\x6e\xe2\xbd\x28\x9c\x68\x6e\x55\xd0\x50\x21\x9b\x5c\xc4\x22\xec\x99\xf8\xa4\xe6\x99\x16\x16\xda\x45\x1c\xe6\x49\x91\x4a\xc5\x5d\xa0\xdd\x2e\x37\xde\xc0\x57\x20\xe6\xd9\xb5\x61\xbb\x1b\x26\xcb\x0c\x0d\xed\xbb\xda\xf9\x09\xaa\x42\x49\xe9\x51\x3e\xd9\x33\x71\x52\x38\xcc\x25\xbe\x68\x0b\x25\x0c\x3e\x51\x5e\x2c\x33\x7e\x3e\x4d\xab\x53\x9a\xa5\x2d\x4b\xd4\xb7\xaf\xe3\x56\x21\xf7\x01\x24\x6b\x6e\x88\x19\x8b\xb8\xef\x87\x29\xbd\xb7\xa6\xc8\xc0\xc5\xea\x3d\x33\x4e\x4d\x86\xcc\xbe\x8c\x91\xed\x40\x9c\x45\x10\x5c\xa8\x05\xdf\x87\x16\xdb\xe3\x34\x0c\x42\xde\x19\xb0\xe3\xd7\x95\xfe\xee\x49\x4d\x7c\xfe\xc0\xda\xd5\xae\x61\x4c\x71\x93\x32\xc2\xe3\x8a\x6e\x62\x3c\x36\x31\x0d\x62\x59\xe2\x95\x43\x96\xa0\x69\x52\xf7\x57\x71\xd2\xe3\x3c\x09\xe1\xde\x2e\x84\x2e\xc8\xcf\xdf\x9d\x28\xba\x0b\xf4\xd8\x84\x16\x7e\xe7\x8a\xf8\xed\xe7\xda\x59\x9e\xfa\x50\x0f\xb1\x78\x2f\x58\x2c\x29\x2f\x3e\xa5\xe7\xbc\xf3\x30\x0e\xf2\x68\xbd\xa5\xe8\x15\x50\x5c\xe5\x63\x35\x1c\x1b\x14\x5d\xa4\x0b\xe8\x4b\x61\x26\x9c\x8f\x6b\x36\x4b\x82\xa6\x24\xf5\xe3\x17\xcd\xa8\x88\xb9\xcc\x8d\xc2\x8e\xd6\xe1\xb9\x40\xe0\x10\xa4\x87\xdf\x99\xb8\x91\xb1\xe3\x93\x7d\x52\xe4\xce\x1e\xa7\xbf\x05\x9c\xe3\x91\x0d\x25\x79\xb3\x67\x43\x23\xb3\xe8\x99\x89\x61\x2e\x1f\x38\xad\xc1\xe3\xbf\x86\x52\x14\x82\xf5\x87\x13\xc7\xbc\x48\x20\xe5\x67\x98\x82\x15\x37\xfc\x99\x8e\x7a\xd6\x1f\x51\x00\x2b\xbd\x4d\xb2\x49\x36\xb3\x9b\x3f\x6a\xe9\x4c\x5a\x76\xfe\xf9\xc9\x0d\x17\x3d\xb4\x6a\x32\x39\xf3\x47\xdb\xb9\x3f\x96\xd2\xa1\xdc\xff\x5f\x29\x80\xee\x5f\x29\x88\x53\xcf\x64\xe1\x20\x66\xbc\xad\x04\x41\xd7\x28\x3a\x12\xa1\xf9\x06\x5b\x1a\xf8\x59\x18\x27\x2d\xc5\x14\x88\xb1\x31\x3e\x56\x25\xdd\x5e\x98\xad\x64\x53\xe5\x7d\xc0\x67\xdf\xf4\x94\x82\xde\x69\x7a\x7c\xc8\xc5\x4f\xd4\x7e\x87\x1c\x52\x6c\x82\x15\x0a\x1a\x64\x64\x9f\xee\x89\xd5\x4f\xd4\xa8\xf2\xed\x26\xce\x99\x28\x29\x13\x5f\x78\x55\x3c\x52\xb4\x73\xf8\xb8\x91\xd6\x51\x34\xc8\x11\x44\xdc\xf5\x14\x4f\xc2\x55\x05\xca\x3b\xa9\x22\xdd\x6e\xc8\x88\x2d\x4b\xc6\x57\x3e\x4a\x41\xde\x37\x44\xb0\xe1\x20\x4e\xec\xfb\x61\x6d\x28\x25\xa6\x7e\xc5\x8d\x81\xc5\x2f\x85\x26\xc7\xec\x98\xa6\xb9\x57\x35\x14\xc1\x7e\x5e\x53\x35\x58\x3f\x08\x7b\x2d\x87\x2b\xd8\x54\x16\x67\x53\xbd\x9b\x6e\x6a\xfc\x1e\x4a\x5c\x96\x84\x54\xd8\x63\x7e\xff\x8f\xaa\xb3\xdf\xab\x61\x52\x30\x4c\x1d\x2e\xe5\x27\x2a\x22\xfc\x49\x43\x6c\x8c\x59\x44\x25\x0d\x5c\x5e\x4f\x5d\x19\x38\x4f\x72\x3f\xda\xe7\xd2\x4c\x04\x67\xf0\xc3\xaf\xc0\xfc\xc3\x87\x6e\x79\xe8\x91\xc8\x60\xab\x8b\xdf\x2f\xc1\x8f\xc3\xa3\xf0\x40\x03\x6a\x53\x37\x34\xdd\xea\x2b\x74\x05\xac\x0b\xa1\xde\x5e\x3a\x5a\xdf\xa3\x72\xd0\x13\x9a\x1b\x65\xd3\xab\xe8\x24\xda\x0e\x38\x37\x42\xe1\x98\x20\x1a\x23\x35\x93\x06\x5d\x31\x13\x44\xbe\x8b\xa7\x1a\xc1\x09\x0d\x64\x7a\xb9\xff\x92\x54\xff\x71\x03\xf7\x3d\xd7\xbc\xbc\xaf\x2a\x57\x03\x93\x67\xa0\x85\x46\x88\x80\xe6\x21\x7c\xd2\x0f\x54\xc0\x72\xa0\x43\x35\x0a\xcc\x94\x41\x14\xd7\x6a\xd2\x95\xf7\x8f\x17\x70\xd5\x73\x1a\x8a\x59\xee\x17\xa9\x1f\x83\x16\x1a\x49\xd4\x5e\xa4\x67\xe8\x1b\x5d\xc2\x4d\xe0\xeb\xef\xa9\x08\xf1\x93\x8a\x14\xbb\x67\xd2\x03\xb6\x4b\xf7\xe0\x89\x0d\x57\x7a\x3d\xf8\xc4\x86\xa3\xe8\xf9\xe9\x3f\x01\x92\x19\xe9\xe7\xae\x4e\x05\xb3\xa3\x6a\x76\xf7\x26\x0e\xd0\xba\xdf\x4d\xb1\x2f\x3c\x05\x83\x0d\xcb\xff\x18\x4d\x01\x62\x11\xa0\xad\x2e\xe4\xa1\x3a\xee\xf9\x24\xad\x35\x98\xb9\xc7\x3b\xe4\xd5\xe9\xe4\xdf\xff\xc3\x4e\xeb\xb9\x25\xc7\x92\xe6\x66\x5c\xb6\x6a\x90\xa5\x85\x85\x23\xed\x20\x32\xea\xfd\x5a\x80\xab\x0d\xff\xca\x48\xd1\xd1\x18\x98\x34\x08\x33\xb3\x47\xc5\xd6\x08\x22\x60\xe7\x3f\x50\x82\xd4\xf7\x81\x6e\xb4\x34\x09\x65\xac\x28\x62\x08\x6e\x5e\xf2\x9d\x26\x1e\x96\x60\xe8\xc7\xb1\x61\x66\x71\x44\x8b\xe7\x14\x99\xdc\xb9\x5a\x40\x4a\xf3\xa3\x52\x7a\x10\x26\xeb\x96\xe5\xb6\xe4\x66\x92\xec\xb1\x27\x77\xe8\x89\xda\xf2\x00\x6c\x11\x4a\x92\x62\xf0\x5b\x96\xde\xe7\xcd\x86\xdd\x41\x30\xb5\x3c\x1c\x61\x1a\x1d\x5e\xf0\x0e\xbd\x32\x74\x1b\x98\xb9\x09\x1b\xe5\x84\xaa\x1f\xad\xc4\x45\x2f\x4b\xe2\xea\x2d\x52\xb3\x54\xee\x71\xe7\xbb\xfa\x5c\xbb\x88\xf2\x70\xe4\xe7\x86\xb1\xc2\x52\xbb\x6b\x29\x36\x06\x3d\xc5\x9f\xa4\xa1\x1a\x5d\x3e\xa1\x6b\x2a\x27\x54\x01\x2e\x1c\x18\x82\x67\x00\x6b\x78\x4a\x11\xc5\x9e\xa1\x58\x17\x25\xcb\x3b\x9e\xb2\x32\x5b\x8d\x69\x4d\xb2\x4a\x42\x43\x53\x2d\x45\x35\xa6\x42\x21\x0a\x20\x84\x35\xa5\x21\x05\x8b\x8c\x0f\x95\x54\x86\xd1\x00\xa4\x8b\xdd\x89\xf8\x01\x83\x0b\xa7\x15\x60\x45\x89\x0f\x61\xd0\x81\x39\x64\xe9\x99\x08\x9f\xec\xce\x05\xf6\xc2\x0b\xed\x28\xa1\x34\x14\x6f\x1d\x26\xe5\x81\x82\x20\xfd\x8d\xd6\xcd\xb9\x6f\x65\x59\x89\x95\xb1\xbf\x2e\x10\x14\x80\x95\x2f\x4f\x14\x87\xe7\x65\xcf\x05\x8e\x43\xe3\x47\xf9\x30\xf0\x53\x03\x4f\x59\x11\x6f\xe1\x13\x25\x31\xd1\x35\x39\x18\x78\xe6\x8f\xba\x12\x83\x9d\x27\x20\x2e\x49\xdd\x2f\x5d\x9e\x3d\xd2\x3e\xb4\x48\xab\x0e\xb5\xe6\xbf\x50\x62\xc1\x60\x5e\x90\x3a\xaf\xc4\xe5\x2f\x26\x26\x52\x10\x08\x5e\x10\x7c\xa2\x16\xc4\xfa\xaf\xfe\x46\x4b\x0d\x1e\xc0\xb7\x0b\xce\xcd\x0e\xc7\xe4\x61\x8c\xd0\x06\xfe\xe5\x1c\x16\x3a\xde\x2f\x04\x95\xa4\x0d\x66\xb9\x12\x92\x2c\xf7\xb1\x3c\x10\xa5\x02\x88\x86\xb2\xc6\x23\xb0\xcc\xd8\x75\x97\xec\x70\x81\x88\x71\xce\xa8\xf1\x2e\x04\x32\x80\xa2\x43\xc6\xc9\x52\x4b\xcf\x09\x89\xe3\xb1\x49\x55\xbd\xb3\x81\x52\xa6\x5c\xae\x33\x6e\xe1\x5f\xd2\x2d\xc6\x89\x43\xa9\x5c\x9a\x54\x28\x16\xca\x9f\xc3\x82\xd9\xdf\xd1\x9d\xd0\xf5\xae\x21\x7a\x43\x36\x21\x84\x0b\xb7\xe2\x0f\x5a\x6b\xa3\x8c\x57\xc4\xce\xc8\xc3\x5c\x49\x7a\xfe\x0a\x70\x86\x62\x36\x5c\x96\xf9\x1d\x4d\xc3\x70\x55\x51\xb4\xf4\xc2\x2c\x28\x68\x10\x9e\x96\xbe\x8c\xd2\x39\x10\xf0\x9f\xd6\x92\xe1\xc5\xc5\xa5\x76\x3e\xa4\x5a\x13\x2d\x61\x46\xb1\x6b\x92\xd7\x3a\x8b\xd1\xe2\x62\x3b\x37\x8a\xae\x96\x8b\xa8\x9e\xab\xf6\x9c\x54\xac\x3f\x44\x6d\x4b\x2e\x17\x6e\xe0\x16\x62\x50\x5c\xd1\x55\xc5\x2e\xfd\x47\x2a\x8f\x79\xcd\x49\x1e\x25\xc1\x0a\x1b\xf2\xed\x57\x75\x9b\x7b\xa2\x6a\x7f\x37\x14\x71\xf3\x20\x4d\x8a\xf1\x01\x35\x2a\x7f\x81\xf2\x0e\x6e\x91\xa1\x82\x2a\x8a\x16\x70\x9f\x22\x99\xef\x26\x69\xcf\xc2\xd6\x58\xbd\xe3\x65\x19\x63\xbb\x36\x51\xad\x50\xe8\x24\x60\xbf\x80\xbd\x08\xab\xe5\x03\x74\xba\x2d\x93\xa8\xe6\x7c\x29\x6d\x26\xd6\xe0\xbb\x78\x0e\x08\xfa\xee\x81\xa6\xca\x32\x4d\x5b\xc2\x96\x7b\xb6\x70\x8d\xd4\xc6\xa4\x33\xf4\xe5\x82\x54\x72\xe1\xf3\xcf\xe8\x6a\xb4\x3a\x2d\x96\x28\x53\x78\xc0\xbb\x7e\xdf\x6e\xfe\xd2\xdc\x4d\xab\xe2\xc4\x19\x35\x1a\x7d\xc7\x53\x53\x2f\x77\x70\x9d\x88\x5d\x76\x6f\x28\x03\x25\x02\x25\xe5\x7b\x50\x90\xb2\x45\x07\x73\x5e\x5e\xe2\xfe\xe6\xe3\xa4\xf8\x8b\x27\xb2\x6f\x83\x62\x13\x9b\x08\xda\xbe\xe2\x55\xc2\x1a\x59\x22\x93\xf2\x36\x85\xc5\xcd\xad\xcd\x9f\xd6\xd6\xf0\xdc\x5c\x69\x88\xd5\x7a\x44\x67\x12\x25\x30\x3e\xb6\x15\xfa\x20\x89\x92\x94\x60\x73\xa2\x75\x81\x35\x80\xfc\xe8\x2f\xd5\x1a\xc0\x33\x84\xb5\x7d\x14\x4d\x65\x5b\x9a\xb3\x1d\x20\x46\x69\xf1\x5f\x6b\xeb\xed\xa7\xa9\x29\x7d\x90\x65\x63\xbc\xad\x4a\xbd\xb7\xbd\x9d\xf3\x92\x0b\x0b\xed\x9e\xd1\x08\x55\xa8\x6c\x8b\x4a\x95\x2b\x28\xf4\x42\x9f\xa5\xfb\xd0\xc8\x39\xa5\x9a\x3a\xa7\x3c\xd5\x58\xf2\xa3\x55\xc6\xfd\x20\x3f\x7c\x53\xe5\x8a\x6f\x4e\x9c\x5e\x1f\x51\xed\xbf\xc4\x71\xc4\x4c\x4b\x8d\x71\x97\x0b\x17\x45\xa8\x63\x9a\x56\xe6\x1a\xe2\x6b\x3c\xbf\xbf\x54\xa0\xb2\x3b\x3b\x09\xe8\x9f\x9d\x9d\x6f\x7f\x7e\x7f\xf9\x08\xb0\x31\x76\x6d\x28\x38\xd5\x15\x65\x3a\x21\x02\x8f\xc2\xe1\xcf\x2b\xe8\x31\x76\x23\xe0\xc4\x7c\x13\x10\x03\x5e\xef\x74\x3f\x88\xb0\x1e\xe9\x38\xd2\xe7\xff\x48\xc0\x2a\x78\x00\x16\xf7\xc5\xda\xbd\x55\x26\x19\x7c\xd3\x45\x3a\x30\xe4\x59\x11\x42\x60\xba\x90\x8f\x3d\x37\x6b\x9d\x25\x2f\xb5\x5c\x91\x99\x03\x77\x99\x2e\x7c\xc2\x4e\x06\x0c\x43\x07\x6e\x12\xbc\xed\x1d\x25\xfe\x7b\x47\x39\xd3\x38\x1f\xee\x2b\x6f\x1c\x86\x0b\x8d\x08\x45\xac\x2b\xd1\xd9\x7f\x98\xa8\x36\xdc\x7d\xfc\x30\x2b\x5e\xd3\xb6\x92\xd4\xba\x7c\x47\x56\x22\xaa\x7c\x52\x88\xd1\xbf\xa9\xc4\xa8\x3e\xdd\x69\x0a\x53\xd3\x2c\x29\x43\x6a\x32\xcc\x16\x28\xea\x68\x92\x76\x75\x5a\x5f\xfe\xa2\xa3\x7a\xb5\xad\x9e\xd7\x6b\xcc\x33\x0b\x0b\xed\xac\xe8\x12\x83\x01\x01\x33\xdd\x68\xc9\x7e\x64\x3d\xd6\x9d\x5a\x96\x86\x9f\x6a\xd2\xe8\xd6\x86\x56\x1f\x49\xfb\x49\x3a\x32\xbd\x29\x37\x5e\x75\x5d\x71\x57\x9c\x27\xcb\x88\xe4\xe5\xed\x26\x4d\xd9\x7e\x92\x0e\x0c\x48\x83\x98\x9b\x9d\xa2\x20\xe1\x69\xff\x07\x2a\xcb\x4c\xd3\xf5\x91\x5f\xbe\x37\x0a\xb2\x9e\x9d\xe5\x07\x0f\xc8\x28\x1f\x37\x21\xcf\xe3\x30\xcb\xfc\x98\xe7\x2b\x90\x64\xbe\x5a\x41\x53\xb2\x45\x41\x8e\x70\x43\x8d\x51\xa4\x49\x32\x82\xa2\x10\xaa\xe2\x37\x68\xd5\xa9\xd2\xa9\x0c\xdb\xdc\xa0\x25\x2c\xe3\x68\x0d\xe4\x0f\x03\x7f\xd4\x8d\x6c\xbc\x8a\xa2\xf1\x2d\xd5\x6d\x6e\x75\xdc\xc4\xe6\x95\x26\x56\xa2\xaf\x14\x61\xba\xb2\xde\x52\x19\x91\x52\x6e\xbe\x5c\x43\x4a\x2c\xcf\xb6\x7b\x66\x60\x62\x92\xe2\xea\x69\x8a\xe7\x7b\x15\xb1\xb0\x5a\x8e\xb2\xb4\xbc\xd4\x1e\xa7\x66\xec\xa7\x02\x59\x92\xdd\xe3\xfa\x8c\x9b\xb6\x6a\x1e\x98\xc8\x74\x53\x61\x03\x87\x81\x79\x93\x2e\x8c\x8f\x9b\x78\x74\x57\x93\xa8\x18\xc9\xb7\xa3\x7c\x7f\x0c\x2b\x99\x4f\xd4\xe6\xfb\xe2\xe1\xa3\x53\xad\x2f\xcd\x73\xd9\xf2\xa2\x1a\x83\x62\x08\x3c\x82\xc8\x2d\x1b\x6e\x06\x49\x9c\x85\x3d\x93\xee\x55\x3d\xd5\x99\x8e\x4b\x4a\x8e\x4f\x74\x36\x4e\x5f\x81\x55\x7d\x7f\xe2\xe0\xb9\xff\xb0\x63\x73\xc1\x7f\xc3\x79\xbd\x30\x62\xd6\xe1\x49\x4b\x6d\x62\x33\xa0\x0d\x00\x96\x9b\x77\x68\x03\xc0\x71\xec\x21\x4e\x0b\x38\xe6\x7d\x0a\x49\x3d\x4c\xd6\x38\x3b\x76\x73\x41\x96\x02\x5e\x51\x25\xf5\x53\x93\x81\xf9\xba\x34\x7e\x88\x2d\xbf\x85\x18\xd4\xaa\x5c\x1d\xb2\x21\x81\xa2\xc4\xf3\xc7\x89\x25\x74\x55\x6d\xb0\x25\x3b\x28\xfd\x49\x0b\xae\x7e\x31\xf4\xa1\xde\x89\xbd\xf1\x53\x7c\x8e\x4f\xbc\x4f\xb8\x5c\xad\x1b\x4e\xab\x4d\xc4\x63\x91\x32\xaa\xef\x9a\x31\xe7\x34\x54\xe3\xdf\x39\x4f\x1e\x15\x86\x77\x21\x02\xcb\x8f\x54\x00\x8a\x1a\xa1\xf4\x13\x1d\x87\x5b\xc8\xe0\x9d\x4a\x5a\xc7\x27\xca\xee\x8f\xb2\x83\xd5\xb0\xc6\x35\xe4\x8f\x79\x0e\x85\xb8\xb7\xa3\xe6\x44\x90\x2f\xd8\xd1\xe4\xb9\x79\x1b\x61\xd0\xe3\xe5\x91\x03\xc4\x8f\x28\xf8\x82\x36\x5b\x98\x8a\x25\x30\xfb\x2f\x93\x14\x3e\xad\xf4\x92\x41\x14\x1e\x96\x2f\xc6\x85\x2a\x10\x46\x92\x84\x51\x5e\x60\x92\x0e\xfc\x98\x01\xef\x78\xb9\x6f\xa9\x29\xbb\xb7\x94\x9c\x26\x63\x86\xf3\xf5\x47\xc8\xb6\xc0\x27\x9e\x57\xbd\xe2\x3f\x24\xa1\x0d\x56\xb5\x87\x85\xc7\xae\xc1\x03\xb0\xaa\x57\xf3\x47\xb9\x17\x79\x03\xbb\x11\xfb\xe2\xb4\xce\x9e\xa6\x3a\x3b\x9d\x09\xf1\xb9\x07\xa9\xf1\x31\x73\xd2\x72\x03\x84\x50\xc3\xe0\xe3\xda\xbe\x59\x9e\x25\x54\x82\xd8\x26\xab\xb0\x5b\xbe\x43\x89\xe2\x95\x84\x78\xb2\x6a\x72\x3f\x8c\x00\x31\x91\x4e\xb3\x03\x1d\x6d\xaa\xf1\x0f\xa1\xf7\xce\xa3\xf5\x29\x37\x0c\xcc\x9a\xe8\x96\x80\xe8\x90\x38\xf1\xdb\x8a\xa9\x65\x9c\x26\x53\x0e\xe2\x07\xb9\x69\x8c\x71\x3c\xac\x44\x12\xb5\x72\xe9\xa1\xc5\x76\x6a\x46\xfc\xba\x50\x48\xf8\x13\x4f\xd1\x51\xfe\x49\x03\x5f\xda\x62\x1b\x52\x5a\x65\x68\x2d\x24\xcb\x6a\x50\xed\x8a\xd3\x5b\x20\xb6\x15\x18\x0b\xbc\xfe\x56\x47\x61\xbe\x5b\x1b\xca\x61\x99\xcc\xf0\xa4\x18\xd2\x94\x63\xb0\xf6\x7c\x52\x4b\x0c\x5f\x78\xa1\x9d\x9a\x7e\x64\xc7\xcb\x2c\x83\x88\x05\xd3\x1d\x9f\x38\x9c\x63\x14\x24\x11\xcb\x9e\x0a\x12\x03\xf6\x45\x30\x1a\xaa\xb4\x4f\x44\x6d\x6a\xba\x18\xbb\x10\xd3\xc5\x0c\x12\x66\xa9\x02\xa4\x58\xa2\x5b\x50\xbe\x31\x0c\x18\x5c\x27\x8b\x28\x5f\xad\x88\x58\xe3\x41\x18\x1b\x93\x66\x75\x35\x3c\xe6\x92\xd4\x14\x48\x7a\x7a\x65\xe8\x47\xfd\xc7\x5c\xbd\xe5\x1a\x9e\x0d\x72\x9c\x47\x50\x7f\x45\x41\x7a\x0a\x18\x1e\x94\x9f\xbe\xe3\x39\x74\xc3\x7d\x94\x8a\x04\x10\x57\xde\x12\x20\x77\x2f\x21\x1a\x60\xb9\x42\xdc\x1f\x56\xce\xdf\xa9\x01\x9e\x5b\xd8\x58\xfc\x0f\x78\xdb\xfc\x8b\x54\x05\xe1\x69\x08\x0a\x26\x78\x22\x57\x29\x87\x16\x07\xb3\x83\x4f\x93\x69\x12\xad\x60\x0a\xae\xb1\x5c\xb6\x27\xae\x4f\xf9\x17\x34\x2f\x8e\x27\xca\xec\xe4\x08\x8f\x00\xaf\x46\x51\x82\x2d\x01\xd3\x37\x53\x3b\x03\x4f\x8c\x75\x42\x11\xee\xde\x47\x2e\xa9\xa4\x27\xb6\xdf\xd6\xa4\x6f\x5b\x00\xc6\xe3\xe4\x26\xb7\x48\xb4\x90\xa5\xd0\x4f\xd3\xbd\x4a\x8d\x53\x8b\x23\xa1\x11\x80\xc6\xe2\x69\x2a\xba\xe0\x8d\x5e\xf7\x94\xba\x03\x33\xfd\xb2\x92\x4b\xad\x78\xfc\xb9\x76\x37\x4c\x7b\x15\xba\x03\x68\xf8\xf0\x71\x23\xc2\xa9\x9b\xa4\xa6\x97\x8c\xc8\x12\xa3\xa0\x80\x3e\x37\x1f\x37\x51\x96\xf4\x93\xd4\x84\x03\xf8\x4a\xb8\x77\xc6\xb9\xf1\x89\x12\x19\x18\xf9\x59\x16\x06\x49\x9e\x1b\x4d\x24\xc4\x2e\x98\x4f\x1c\xd8\xd1\xf8\x69\x64\xe0\x1a\x51\x8c\x3b\xa5\x12\x68\x0e\x53\xe0\x21\xee\x7a\x1f\x07\xfc\xcf\xf2\x82\x48\x1f\xf0\x35\xd8\x69\x28\x7e\xc3\x4e\x9c\xd0\x24\x41\xa7\x9b\x04\x97\xb2\xa8\x18\xf1\x43\x14\x40\xbb\xa3\x83\xb9\xe8\x06\xbb\x13\x11\x5d\xb5\xd3\x00\x8e\x01\xee\x82\xe7\x92\x83\x28\xcc\xf2\x32\x04\xe5\x79\x0c\x89\xe1\x68\xf9\xf0\x89\x85\x1c\x84\xfd\xfe\xba\x0a\x22\x21\xd5\xce\xc7\x0a\xfc\x9c\xe5\x19\xe1\xdc\x2b\x92\x70\x08\x82\xbf\x4f\xfb\x54\x08\x35\xe8\x92\xe0\x7c\x10\x5b\x23\x34\x3b\xae\x26\xd3\xca\x37\x34\x88\x65\x80\x46\x26\xab\x9c\x62\xd0\xa6\xa5\x80\xf7\xa3\xdc\xa4\xb1\x9f\x87\xab\x52\xb9\xe7\x18\xc0\x53\x02\x08\x57\x6c\xe1\xa7\x1a\xec\xc3\xff\x80\x1a\x16\x25\xa2\xf7\xd4\x5b\x79\x60\x35\xa8\xfb\x86\x84\xfe\xc9\x29\x38\x74\x3c\xf0\x36\x42\xb2\x2d\xb6\xd8\xc4\x59\x61\x7f\x00\xc6\x1d\xf4\x67\x1a\xa1\x8f\x86\x99\x03\x52\xf6\xc3\x38\xcc\x86\xd2\x63\x41\x9d\xe5\x86\xe7\x3c\xd6\x43\xbc\x19\x6e\x87\xdb\xdf\xca\x72\x7f\x7d\x47\xf3\x70\x4b\x4d\xe9\x6d\x4d\x3e\xad\x86\x36\xfd\x34\xec\x87\x01\x05\x03\xf0\x6c\x96\x09\xb3\xdc\xff\x7c\x32\xd9\xcf\x6b\xaf\xfd\xdc\xf2\xec\x67\xc8\xa2\x89\xd8\x16\x15\xd5\x44\x32\xa3\x7c\xd0\xa8\x3a\x9e\x80\x93\x10\x3e\x87\x32\xd3\x45\x08\x29\xd5\x20\x54\xcd\xdf\x9e\xa8\x07\xf2\xc7\xb0\x53\xf8\xe6\xdb\xb0\x95\xa8\xea\x71\xea\x80\xd5\xf1\x97\xb4\x6c\xec\x30\xeb\x17\x7e\xc7\x92\x6e\x50\x45\x11\x19\xf9\x1b\x9e\x4a\x8c\x51\x9b\x47\x0b\x8f\xe7\x7f\x30\x12\xa5\x09\xd1\x3f\x81\x66\xa7\xcc\x98\x51\x23\x8d\xbf\x6b\xa2\xd8\x55\xfe\x6c\xe2\xba\x05\x53\x9d\xd2\xfa\x21\x36\xdd\xa6\x78\x54\x64\x41\xcb\x15\x8f\x3a\xd0\xde\x8d\x32\x1b\x12\xc6\xba\x06\x13\x15\xa4\xc9\x5a\xcf\xf4\x54\x18\xf3\x7f\x2a\xac\xf0\x45\x84\xec\x42\x4e\xef\x9c\xea\x60\x3d\xf5\x21\x7a\xec\xd0\xf1\xd7\x15\xc7\x12\xef\x5a\x5c\xdc\x1b\x2a\x64\x5a\x0b\xe3\x3d\x4e\x79\xe9\x1c\x07\x04\xd8\xdd\x77\xf1\x06\x24\x97\x57\x38\xd0\x13\x13\x05\xdd\x78\x03\xaf\x03\x1b\xf4\xf4\x64\xbf\xe3\x5b\x5e\xd7\xc8\xcb\x4b\xaa\x1c\x77\xc9\xf1\x59\x24\x23\xe4\x24\x58\x28\x17\x14\x79\xc8\x74\xc7\x0d\x98\xbd\xaa\x49\x14\xee\x34\xc9\xde\xb5\xc3\xb8\x57\x64\x79\xba\xce\x39\x93\x14\xf5\xe8\xef\xa4\xaa\xf7\x84\x26\xd5\x35\xd9\xc8\x8f\xb5\x88\x2f\x70\x83\x7c\x5c\x8b\x78\x7f\xa5\x3d\x8e\xfc\x75\x63\x41\x6c\x30\x6e\xdf\xd6\x3c\x6e\xd7\xab\x04\x58\x72\x8f\xdd\x70\xac\x00\xf6\x1f\x6a\x6e\xce\x0f\x6b\xc5\x86\xf9\xa3\xed\x9e\x89\xca\x3d\x88\xc4\x89\xb9\x45\x37\x5a\x8a\x67\xd4\xe5\xd7\x07\x9f\x3d\x38\xa5\xa2\xa5\x99\x4e\x65\x44\xa6\x65\x35\x1d\xee\xd5\xdc\xe1\xa1\xc5\x76\x3e\xa4\x82\xf2\x94\x03\x52\x6d\x2a\x44\xcc\x1b\xb4\x6c\x11\xd2\xdc\x54\x10\x61\xc6\xfb\x4c\x2b\x9d\x69\xa6\xa8\xd5\xcd\x5b\xfe\x07\xac\x20\x69\xc9\xe8\xde\xe8\x9a\x9f\x7d\x9a\x76\xa8\xa4\xef\x88\x3d\xb0\x2d\x99\xe8\x0a\x28\xba\xa7\x51\x0b\x46\xd4\xf5\xc4\x86\xba\xc3\x8b\x0a\xcc\xb8\xbb\xe3\xaa\x9b\x0f\x3c\xe7\x63\x4e\xc2\x74\x71\xc8\x05\x3b\x80\x30\xef\x17\x28\x1b\x84\xf3\x39\x8d\xf9\x0b\x36\xaa\x00\x4c\xa2\xed\x71\xd3\xab\xea\x40\x95\x9b\x00\x09\xce\x47\x74\xa3\x82\x3e\x52\x51\xf0\x47\xb4\xf9\x91\xaa\x5c\x60\x03\x87\x6c\xfc\xca\xa4\x3a\x10\xb6\x2c\xac\x98\x8f\x6d\x54\x7a\x5c\xf5\x00\x69\x3d\x1c\x94\xd9\xd9\xdc\x9c\x95\xcc\xa1\x3f\x10\x31\x1d\xb7\xa1\x5f\x4c\xba\xfb\xe8\x11\x09\x49\x83\xc3\xfe\x6d\x79\x15\x4a\x40\x8b\x46\xb9\x36\x51\xed\x93\x4d\xcd\x33\x75\x49\x6b\xaf\x5c\xc2\xea\x96\xa6\x22\xbd\x21\x14\x46\x9a\x98\xec\x16\xdb\x49\xbf\xcf\xb5\x3e\x4b\xce\xff\xa6\xa7\x14\x8a\x74\x4d\x7c\x95\xa0\x88\x7d\xbf\x9b\x86\x2b\x2b\x5a\x08\xe0\x16\xbd\x4a\x3e\xae\x71\x7c\x2c\x2d\x2f\xb5\xb3\x82\x9a\x11\xcc\x13\xa3\xa8\x90\x1d\xb1\xb1\xdb\xf6\xfe\x78\x1c\xf9\x45\xc6\xb1\x9a\x7d\x44\x96\x36\x85\x59\x2c\x61\x40\xeb\x31\xe4\xa1\xc5\xb6\x1f\x0d\x42\x0a\x89\xca\xcf\x31\xf2\x56\x0b\x1d\x5e\x98\x38\xfc\x0b\x64\x5d\x44\xf8\x08\x3d\x8b\x5b\xf8\x30\x9f\x34\xb5\x45\xb3\x95\x10\xe8\x4d\x21\x7d\x73\x65\x8e\x53\x8d\x96\xcf\x0f\xf2\x70\x35\xcc\xd7\x15\xec\xf1\x75\x4f\x71\x73\xbc\xde\x94\xef\x06\x69\xc8\xa2\x28\xf8\xea\x37\x3c\x45\x2b\xf4\x46\x93\x60\x64\x31\xde\xe3\x0a\xe1\xdf\x24\xef\x8e\xbe\x13\x44\x9b\xb1\x25\x3f\xa4\xf5\x86\x7d\x34\x45\x3d\x28\x84\x34\x1f\x4d\x94\x42\xed\x26\x1a\x03\x6c\x09\xfa\x6c\xc2\xb0\x48\x1f\xa8\xc0\xff\x5c\x55\x7d\x52\x31\x06\x1b\x3f\xcf\xa6\xcb\x5d\xc6\xd2\x14\xd8\xd7\x56\xa7\xc2\x36\xd6\xde\xd1\x41\xf3\x3b\xaa\x30\xb9\xf4\x85\xb9\x19\x35\x28\xb2\xa7\xe3\x86\xd8\x50\x38\x87\x45\x3f\xa5\x2a\x96\x50\xfa\x92\xcf\xd8\x98\xd6\x5f\x31\x31\xfa\x7a\x58\xd6\xac\xf6\x27\x32\xc4\xad\x7f\x26\xd1\xcd\x29\x7a\x64\x12\x73\xbb\x02\x10\xad\x7a\xb2\xf7\x8a\x97\x03\x6c\xed\x42\xeb\xb4\xdf\x5e\xf7\x6f\xfd\x77\x0a\x90\x7f\x96\x0c\x0d\x1f\x37\x0c\xaf\xb6\xc3\xb8\xdc\x82\x49\xda\x52\xca\xb4\x60\x06\xe7\xe3\x0a\x11\x41\x56\xa0\x58\x6e\x47\x44\x16\x16\xf8\xd2\x5f\xc5\xe2\x90\xa1\x36\xd5\x9f\xfc\x50\xe5\x0b\x5d\x3f\x2a\x53\x86\x30\xc0\xcf\x61\x11\xa0\xce\xcd\xc7\x55\x74\xcc\xaa\x79\xca\x81\x52\x5b\x48\xe0\xd1\xf1\xdb\xdb\x51\x5a\x3b\xa7\x61\x34\xf1\xe0\x5b\x08\xd8\xb0\x5b\xa1\x61\x28\x1e\xce\x61\xe7\x51\xb4\x45\x74\xc2\x3c\x07\x30\xd9\xdf\x86\x33\x90\x61\x72\xba\x29\x1e\xa6\xa5\xa4\x1d\x7f\x82\x17\x85\x20\xe4\xa3\x0a\xf5\xa6\x96\x00\xdd\x84\x05\xc4\x16\x38\x4b\x71\x20\xea\x75\xf7\xc1\xd7\x26\x53\xcb\x14\xb8\xe2\x91\x9e\xb7\x4d\xf6\x70\x34\x26\xd8\xb8\xc3\x25\x90\x6d\x96\xf0\xdf\x41\x31\xfb\x49\x92\x13\xc6\x04\xd5\xe2\x7d\xa8\x6c\xa0\xcc\x7d\x41\xd9\xf6\x03\x1d\x97\x18\xa5\xc6\xa7\x2a\x25\x75\x86\x10\xb3\x5f\xd5\x92\x01\x57\x95\x1f\x40\x15\xae\x3e\x50\x32\xf6\xc3\xb8\x5f\x44\x2d\x45\x91\x8e\xa1\x23\x3e\xae\xa1\xc3\x17\x16\xda\x49\x0f\x36\x18\xe3\x30\xff\x4a\x8d\xc6\xfc\xab\x06\x71\x98\xa5\x76\x91\xc1\x00\x59\x04\xab\x1d\x80\xae\xb3\x39\x51\x07\x2d\xcc\x86\x7e\x37\x12\x26\x2b\x04\x04\xef\xc3\xb0\x60\x8b\xde\xa4\xdf\x14\xfd\xcb\x03\x4a\x64\x3b\x1c\x47\x86\x8d\x36\x22\xf1\xe3\xf8\x3b\x3e\x69\x28\x49\xf8\x2f\xe7\x26\x98\x2a\x53\x15\x84\x0b\xef\x2a\x5d\xf8\xdd\xd8\xe3\x30\x79\xf7\x15\xfb\x70\x64\x56\x0d\x54\x58\x1d\x6d\xc6\x05\x4f\xb5\xdf\x2f\x34\xf8\x76\x7f\xec\x8b\xfc\x1b\xd3\x63\x69\x95\x71\x6d\x36\xea\xb4\x37\xcb\xb3\x6d\xbf\x97\x8c\x73\x4e\x19\x10\x45\x33\x07\x07\x4a\x5b\xff\x33\x5e\x3d\xe2\x94\x9b\x8d\x56\x22\xf3\xbb\x26\x8a\xfc\x96\xcb\x40\x79\x2e\x9c\x4f\x76\x12\x3d\x7e\xbe\xfd\xec\xec\xf3\x8f\xd0\xae\xb4\xec\x00\xcb\xb3\x8c\x2d\x3c\x47\xef\x11\x68\xa5\x3f\xf0\x54\x0b\xea\xa2\xa7\x99\x2e\x68\xeb\xf2\x5f\x70\x8c\xa4\xcd\x2f\xca\x6a\x97\xd4\x34\x52\xdf\xcf\xfd\x21\x3c\x29\xd6\x14\x6b\x0e\xf0\x49\x53\xe7\x30\x0c\x4c\xd7\xa4\x03\x8d\x33\x3f\xa5\x70\xe6\xa7\x14\x94\x87\xc6\xdd\x47\x44\xba\x59\x3e\x47\xe1\xf2\x6c\x39\x5e\x4f\x35\x1c\x3f\x2a\x88\x9b\x4b\xfd\xbc\x96\xed\xba\xd2\x34\xc7\x61\xe2\x7e\x68\x22\xc0\x03\xac\x02\x70\xf9\x88\x45\x5c\xd8\x6d\xdf\x20\x0a\x63\x92\x3a\x75\x13\x50\x1f\xd2\xd7\x8b\xc5\xad\xd8\xec\x6c\x7d\xca\x95\x00\xd0\x91\x81\xad\xbb\xa3\xc5\xba\x3f\xa8\x6d\xa8\xa3\x87\xdb\x3d\xd3\x0f\xe3\x90\xd4\x52\xca\x97\x61\x45\xed\x6c\x53\x01\xe8\x41\x6c\xe1\x0f\x2b\xb6\x7b\x9c\x67\x7b\x69\x8d\x81\xaf\xf1\xe7\x58\x63\x42\xe7\xa7\x58\x5b\x6f\x79\x4e\xc4\xf3\xf2\xa4\xca\x99\x6a\x2f\x5b\xf7\x42\x6f\xd5\x7a\xa1\x52\x20\x23\xc9\x14\x58\x0c\x4b\x3e\x5f\xde\xa1\x50\x9d\x3b\xbc\xb9\x4c\xdf\x11\xdf\x36\x72\x46\x04\x79\x08\x08\xdf\x46\x7c\x8f\x04\xee\x3e\xea\x04\x7c\x42\xeb\xd8\xc6\xea\x2e\xb3\x6b\x75\x2a\xf3\x28\x50\xb4\xcc\x35\x55\x05\xd0\x58\x7c\xdc\xa4\xd2\x18\x8e\xc6\x69\xb2\x6a\x2b\x31\x16\xa6\x66\xb5\x12\x2e\xdb\x52\x7d\x2f\x0d\x57\x89\xa7\xe2\xd9\x59\xb6\xb7\x1f\x4e\x14\xe5\xc6\x87\x2a\x8e\x29\x4c\xef\x13\x2d\xe1\x22\xfa\xff\xfd\x23\x34\x3b\xe9\x06\x0e\xfc\x0a\x2a\xc4\x54\x26\xd9\xfd\x6b\xf0\xa8\xf4\x2f\x4b\xbf\xb0\xe1\x4a\x6d\x77\x15\xa1\x1e\xe0\xa6\x22\x60\x4f\x26\x4c\x90\x12\x8e\xbc\x61\x66\x43\x25\x08\x9f\x86\x77\x45\x79\x7a\x66\x43\x55\x47\xf7\x6c\x34\x48\x49\x8c\x49\x7c\x42\x75\xe4\x98\x4a\x44\x66\x93\x76\xda\xc6\x85\x85\x32\xe9\xe6\x24\x5d\x47\xeb\x3b\x49\xe7\xfa\x26\x0f\x86\x61\x3c\x88\xb8\xe4\x60\x9b\x62\x6a\xba\x48\x59\xe9\x30\x30\x71\xc6\x60\x1d\xec\xaa\x9f\xe8\xe6\xea\x4f\xd4\x68\xde\x9a\x31\x2b\x51\xc2\x59\x8c\x30\x09\x69\x5a\xa1\x26\x21\xa5\x55\x93\x83\x8b\xdd\xf2\x3e\xdb\x76\x21\x50\x34\x22\x94\x62\xf1\x87\xeb\x51\xf8\x52\xcb\xb5\xb9\xef\xaa\xf4\xec\x6e\xa3\x9e\x72\x16\x24\x79\x30\x6c\xb9\x21\x0a\x9e\x90\x16\x9d\x18\xcd\xe0\x15\x11\xec\xa2\xe5\xf0\x31\x5f\xa5\x0b\xe2\xe3\x06\x69\xa3\xb6\x9f\xe5\x69\x12\x27\x23\xd8\xa1\x67\x67\xb7\xa9\x7a\xb3\x7d\xc9\xfb\x94\x06\x3f\x86\x71\x69\xab\x4c\x4f\x49\x38\xbe\xef\x39\x7c\xcb\xfb\xb5\xad\x3c\x7f\xb4\xdd\x0b\x53\x13\xe4\x49\x2a\xf5\x0d\xa0\x5c\x5e\xc1\xc5\xf3\x49\xd3\x7c\x68\xbf\x78\x31\x9c\x81\x9f\x10\x92\x32\x5a\x15\x28\x92\xe9\x1a\xf1\x2d\x0d\x55\xd6\x38\xe2\x77\x1d\xfd\x71\xb9\x7f\xb3\x9c\xc0\x57\x88\x38\x9f\xec\x54\x9b\xf9\x56\xe6\xff\xb8\xe6\x3d\xf9\x3e\x40\xf4\xb0\xd9\x7b\x37\xb4\x80\x67\xbc\x1a\xc6\x01\x51\x82\x2f\x2c\x54\xa8\xc9\xf9\x18\x41\x00\xb8\x4d\xae\x20\x0c\xe5\x13\xcd\x6b\x07\x3a\x3e\x11\xe2\xd6\x16\xb7\xcf\x74\x8d\x4d\x53\x86\x3b\x1f\xf3\xc2\x42\x3b\xf0\x73\x7a\x87\xe3\x21\xe7\xba\xda\xfd\xa1\x8e\xb4\xed\xb9\x54\xcd\x29\x47\x81\xee\xa6\x37\xa3\xea\x85\x07\x60\x3b\x84\x12\x43\x95\x72\x19\x7e\x28\xe1\xa3\xca\x9d\xef\x59\x8c\x09\xa9\xbb\xe4\x26\x1d\x21\x26\x12\xaa\x99\x96\xa5\x0d\x7c\xa5\x01\x68\x3f\x4e\x93\x40\xa6\x25\x4b\x6b\x29\x74\xec\xae\xd9\x73\x41\x85\x06\xa5\x8d\xc8\x1f\x73\x38\xe4\xcb\xaa\xe2\x7a\x9c\x02\x0d\xe4\x05\x20\x9a\x55\xa2\x24\xf3\x5c\x44\xfe\x7d\xdc\x14\x8a\x68\xdf\xa3\x54\xc0\x46\x89\xaa\x22\xcd\x71\x8a\x2d\xaf\x59\x42\x94\x57\xf0\x1c\xf0\x42\x2f\x78\x0a\x17\x76\x1b\x65\xd3\xca\xc0\x95\x40\xcf\x9b\xf4\xdc\xca\x5b\xb1\x82\x12\x56\x79\xca\xe6\xa0\x1f\xb8\x19\x4f\xdf\xff\x75\xf2\xfc\x08\x3a\x3e\xd9\x71\x7e\xf1\x82\x6e\x76\xef\xa9\xf1\x8b\x96\x3f\x43\x1a\xee\x69\x55\xa1\x04\x1c\x2c\x7c\x6c\xd7\x03\x73\x26\xcd\x68\x9e\xe3\x69\xf4\xaf\xe1\x1b\xfe\xde\x73\x48\xd3\x4d\xa2\xcd\x46\xe6\x74\x7e\xa2\xa6\x35\x37\xed\xf7\x75\x23\xdf\x92\x87\x21\xa7\x79\x7f\xa2\x8a\x7d\xe8\xb3\x08\x82\x4d\xcc\xfb\x9a\x9f\xe5\x66\xcd\x27\xa1\xbb\xf2\x4b\xd1\x3c\x38\xaf\xf4\xe9\xa6\x3a\x6e\xc8\x6f\x8a\x84\xcb\x85\xf4\xc5\x15\xc9\x5f\x2e\xd2\x95\x62\x18\x99\xb8\xa5\xd1\x7d\x74\xf9\x12\x66\xa9\x12\xc3\x1a\xcf\x08\xcb\x24\xde\x25\xd5\x01\xc2\x36\x45\x0d\x07\x23\x81\x7c\x5c\xab\xb4\xcc\x1f\x6d\x77\x23\xe3\xaf\xb4\xdc\x14\xcb\x0d\xfa\x22\x3e\xb6\x1e\xa0\x67\xfc\x88\xd5\xa6\xad\x18\x83\x85\xa1\x6c\x23\xa0\xc7\xd6\x9a\xee\xec\x98\x44\x28\xdd\xc1\xd1\xc3\x8f\x4f\x39\x45\x58\x6e\x97\x60\xd9\xbe\x47\x17\xcb\x34\xd9\xb0\x3c\xc8\x0c\x18\x58\x0f\x0b\xf0\x50\x4d\x87\xdd\xc2\xcf\x21\x63\xc1\x24\x3e\xb7\xc9\x15\xe3\xee\x6d\x58\x34\x6c\x20\xce\xb2\xb1\x48\xbf\xce\xfb\x84\xdb\xf4\xb4\x9d\x2c\x78\x6d\xe9\xf0\x11\x8e\xf4\x18\xda\x8d\xf7\xb7\xbb\xf3\x29\xd5\x7b\x4d\xb3\xe1\x88\x48\x9f\xe8\xb1\xa1\xb0\x76\x46\x41\x56\xcf\xd4\xa9\x9f\x0f\x1f\x69\x07\x43\x7f\xd4\xe5\xda\xdc\x11\xbb\xcb\x5a\x8b\x6e\xf2\xa3\x09\x8d\x4f\x51\xb0\x90\xd5\xca\x3c\x5d\x85\xd3\xd7\x45\x5b\xc3\xa4\xd2\x5f\xfd\x96\x42\x7d\x7f\x4b\x41\x81\x57\x93\x3c\x8c\x07\xd3\x6a\x62\x51\x69\x1b\xc1\x55\xa9\xd6\xab\x40\x2c\x5a\x1b\x9a\x8b\xd8\x2f\xdd\x93\x05\xe3\xa0\x3c\xc1\xcc\x97\x88\xcc\x90\x1d\xbe\xa7\x12\x8f\x0f\xc8\xec\x09\x3d\xe6\xce\x3e\xf3\xe2\xe2\x91\x76\x2f\xec\xf7\x4d\x6a\xe2\x3c\xe4\xf4\x42\x66\xd4\x5c\x11\xa0\xce\x8c\x34\x7f\xb4\x1d\xf8\x23\x93\x22\x3f\xb4\x8c\x29\xb6\x43\x79\xd9\x76\x28\x23\xe3\x0f\x0a\x2b\xdf\xcd\x32\xf8\x13\x35\x23\xfe\x8a\x92\xbe\x0c\xe3\xc0\x64\x4c\x99\x85\xd5\x75\x53\xc9\xbb\xdc\xac\xf1\x99\x2d\x2e\xd2\xc0\x48\x3e\x4c\x93\x35\x96\xc2\x52\x34\xf6\x1c\xa7\x43\xae\x1a\x31\xc1\x9b\x76\x6f\x75\xc3\x54\xa4\x7d\x64\xbc\x44\x35\x7e\xcf\x28\x4f\x32\x0a\x07\xc3\xfc\x13\x8a\xb4\x63\x5b\xc9\x7a\xdc\x9b\xb8\xb6\xc2\xfd\x89\x62\x03\x02\x19\x93\x45\xb1\x5b\x20\x07\x22\x11\x54\x18\x37\x2b\xb5\x4c\x4f\xb1\x67\x7f\x8f\x44\x37\x2c\xcf\xef\xfc\xd1\x6d\x2e\x21\xa2\x9b\x50\x97\x43\x3a\x7a\xb8\xbd\x96\xfa\x63\x8a\xcb\x4e\x79\xad\xe7\x96\xb6\x4f\xd5\x42\x80\xc5\xc5\xb6\x1f\x04\xc9\x68\xec\xc7\x56\x69\xd3\x06\x1f\x8e\xa0\xf3\x8a\xe2\x6d\xf1\xd3\x3c\x8c\x22\x93\xea\x71\xe1\x2d\xa5\x93\x73\x59\x39\xbc\x93\x8a\xd9\x80\x7c\x75\xaf\x20\x72\x68\xb5\x8c\x54\xe0\x75\x51\xc1\xbb\xc2\x28\x2a\xb2\x9c\x60\xad\xe4\x03\x84\xa8\xa7\x65\x55\x6b\xa7\x37\x2a\x54\xb3\x3b\x97\xe3\xd1\xc3\x6d\xf3\xd2\xd8\x8f\x11\x75\x5a\x11\x57\xcb\xd9\x70\xa1\xd1\x36\xf8\xab\x21\xba\xda\x2d\xcb\xc1\x58\xa1\x43\xba\xda\x84\xfa\x05\xb9\x03\x43\x06\x04\xdb\xe9\xb2\xf2\x66\x7b\x92\x9a\xdc\x0f\x63\xde\x03\x96\xd9\xe0\xd9\x59\xc5\x6c\xb0\x03\xb3\xbf\xd8\xfe\x15\x7a\x14\x08\x3f\x2e\xc1\x76\x0b\x45\x47\xf9\xd3\xd8\x12\x5b\x95\x78\x30\x48\x13\xee\x74\xc2\x42\x1c\xf7\x54\x53\xbc\xae\x2f\x56\x86\x84\x89\x2c\x04\x98\x8e\xdf\x53\xcd\xbe\xdf\xb3\x00\x5c\xbf\xe7\x8f\x1d\x3b\x9b\x40\x9d\x1c\x92\xee\xef\x6a\xb3\xda\x73\xf3\xed\x9e\xe9\xf2\xc5\xa0\x7f\xc0\x9e\x85\x4f\xec\x77\x47\x45\x77\xdd\x8f\x57\x7c\x05\x83\x66\xa4\xbd\x70\x76\x1d\xd0\x62\x82\x7e\xba\x02\x0c\xda\xf6\xdb\x6a\xc2\x75\x1b\x29\x23\x0b\x52\xd2\xfa\x54\xe2\x94\xc2\xf6\xf1\x75\x4f\x81\x5b\xef\x29\x9e\xb8\x2c\x09\x42\x3f\x0a\xb3\x9c\xa7\xd1\x59\xc8\xbb\x22\xea\xad\x86\xbb\xc3\xde\x5e\x37\xfc\xfe\x0f\x10\xf7\x08\xc3\xbe\x02\x30\x1f\xa3\x8c\x41\x6c\xf5\x8e\x30\xd1\xe6\x7e\x7b\x37\x54\xcc\x79\xb9\xf6\x8e\x9e\x9d\x6d\xa7\x61\xb6\xd2\x52\x16\x5d\x89\xe9\x7c\x50\x5b\x6d\x2f\xbc\xd0\x1e\xf9\xc1\x30\xa4\x7e\xd1\x6f\x3f\xd7\xc8\xd2\x23\x3d\xe8\xf5\x62\x05\x06\x50\xe8\xfb\x5d\x21\xea\x64\x65\xa4\x3f\x34\xfd\x19\xfa\xa0\x32\x5b\xcf\x33\x28\xe2\x81\xa7\xc6\xcf\x36\x95\xe6\x07\x1e\x1f\x7c\xf3\x6e\xcb\xde\x92\x0f\x89\x54\x29\xe6\x7a\x2d\x6e\x83\x63\x47\xd8\xc1\xbb\x15\x34\xb7\x2c\x13\xd4\x49\x02\xd3\x52\xf9\xc4\x15\xb5\xc3\xaf\x28\x39\xe6\x7c\xe8\xe7\xff\xb8\x7c\x48\xf8\x92\xff\x4c\xd8\x12\x54\x95\xf8\x97\x98\x42\x91\x8c\x2c\x62\x8d\x69\x6a\x0f\x20\x4a\x9d\xa2\x49\x6f\x18\x9e\x63\x7a\x1e\x84\xa5\xcf\x79\xea\x88\x10\x79\x80\x76\xbd\xa7\x0a\x10\xd7\x50\x3c\xc2\xba\x79\x8b\x1e\x88\x55\x52\x73\x03\x17\xa0\xc3\xb0\x4c\xe1\xa5\xf3\xe6\x89\x51\x84\x43\x58\x1c\xdf\xc5\xbe\xe7\x99\x1c\xb2\x18\xcc\xef\xa1\x15\xcd\x2f\x6b\xaa\x6b\x16\xa8\x65\x92\x3b\x3d\xcc\x85\x90\x5a\x16\x91\x12\x3d\xf9\xc0\x73\x3a\x90\x37\x08\x58\x2c\x53\xee\xf4\xb0\x99\x33\x9f\x9b\xf1\x08\xf0\x6f\xf2\x7a\x66\x69\xa0\x8d\x4f\xa9\xac\x37\x1d\x27\x00\x9e\x90\xcf\x80\xdf\xfd\x3b\x45\x4e\x76\x16\x5f\x2b\xe8\x15\x87\x45\x8f\x7a\xe3\x69\x6d\xda\x1c\x14\x73\x6b\xa2\x28\x79\x59\x1b\x4a\xba\x92\x22\xc4\x14\x85\x71\x90\x44\x71\x36\x0c\x53\x54\x11\x14\xb7\xca\x92\x95\xbd\x52\x2a\x03\x45\x1e\x0c\x4d\x3a\x53\xfe\xa2\xa4\x8f\xe5\x73\xb0\x69\xe5\xc2\x82\x6d\x72\xb7\xac\x9c\xd8\x69\x1d\x25\xfc\x58\x35\xe1\x66\x8f\xb2\xb5\x93\x91\x3a\xfa\x1c\x9f\x78\x4e\xec\x3f\x0c\x86\x23\x3f\xe6\x74\x83\xbf\xb3\xf2\xfd\x4f\x58\xb4\x78\x38\x08\x63\x3f\x92\xf2\x95\x90\xaa\xb9\xb9\xa5\x4d\x47\x47\x1c\x0c\x4d\xaf\x88\x04\x51\xac\xd8\x05\x8f\xd8\xc2\x41\xd3\x70\x78\xe4\x77\x4d\x24\x1e\x40\x1e\x02\xad\x52\x79\x0a\xf5\x82\xdd\x52\x9b\xae\xc9\xd9\x0a\x20\x0a\x65\x44\xd6\xd2\x5c\x25\x49\x34\x55\xe5\x69\xb7\xa9\x12\x50\x3c\x68\x13\xdc\x6d\x62\x4c\xe9\xf9\xa3\x98\x1c\xac\x90\xbf\x94\x9f\x17\x52\x18\x5d\xea\x3e\x38\x3a\x38\x53\x6e\x24\x04\x06\x8f\x61\x77\x33\x5e\x44\xb1\x1e\xdc\xa2\xb7\x29\x85\x00\xc5\xdf\x77\x59\xb5\xb7\x98\x1e\xef\x80\xe2\x41\x3d\x8f\xa5\x86\x9c\x69\x0f\x60\x26\xd2\x5d\x2e\xbf\x11\xff\xf0\x04\x59\x3a\x11\x21\x28\xf7\x8f\x70\xc9\x28\xb5\x86\xfb\x30\x24\x78\x18\x55\x19\x49\xf4\xc4\x05\x9b\x5d\xde\x8e\x0c\xd7\xa9\x5a\xf6\x13\x54\x9f\xc5\x2d\x80\x07\x16\xff\x7f\x8f\x96\x45\x65\x4c\xad\x08\x82\x35\xd5\x80\x92\x38\x0f\x63\xf0\xc3\x2a\x4a\x19\x00\x0a\xf8\x58\xb1\xa9\x65\xb9\x9f\x53\xfb\xb6\x0c\xe4\x96\x45\x05\xe5\x03\xfa\x34\x1f\x2b\xf4\x65\x96\x1b\xbf\x17\x46\xeb\xc4\x98\x87\xf8\xf8\x14\x4a\x65\x7c\x82\xc7\x89\xf0\xe2\x18\x55\x0f\xb7\x54\x3b\x61\x53\x35\xc0\xb3\x20\xf5\x47\xdd\x88\xeb\xb1\x32\x59\xe9\x0a\x61\xa7\xec\x42\xcb\xc6\x3e\x94\x2c\xd0\x86\xfb\x97\x8a\x52\x99\x79\x1e\xf0\xed\xb7\x3c\xd5\x90\x7f\x5f\x4f\x08\x04\xd9\x8c\xaa\x5d\xb0\x64\xb6\x34\x20\xc9\x98\x73\x5e\x45\xb7\x0d\x33\x0b\x2c\x32\x8a\x66\x57\x15\xf7\x8c\x9f\x26\xdc\xc1\x64\x49\x3f\x4f\xe1\x18\x6e\x4f\x9e\x52\x9c\xa3\x51\x18\x24\x63\x92\xb2\x29\xaf\x4b\xea\x76\x6e\xc0\xe2\x4d\x05\x96\xbc\xe9\xb9\xb1\xc9\x24\x8e\xd6\x9f\x74\x74\xe5\x77\xc9\x2d\x48\x4b\x42\x0f\xd2\x52\x2d\x64\x7b\x0b\xae\x42\x9a\xfb\x53\x4e\x2c\xf9\x13\x1b\xe5\x5a\x93\x24\x89\x1c\x82\xa8\xab\xd3\x9a\x42\x56\xb3\xab\x43\x3e\x08\x96\x0c\x33\xf8\x70\x93\x2d\x9d\xdf\x7f\x00\xef\x02\x77\xf8\x06\x7c\x10\x4e\xb8\xda\x25\x63\x02\xa5\xd3\x84\xe9\x66\x9c\xb5\xcc\x44\xbb\xe2\xcf\xad\x06\x39\xa6\xe7\xdb\x5d\x93\xe5\x53\xd4\xa4\xe1\xef\xa5\xfb\x66\x01\x61\xd4\x60\x25\x3c\x69\x10\xce\xe8\xfa\x59\x18\xb4\x5c\x9f\xef\x3d\x65\x52\xde\xab\xf5\x09\x97\x67\x45\x76\xbd\xe5\xa6\xcb\x3f\x50\x7a\x4b\x1f\x34\xc1\x67\xd6\x86\x49\x04\x69\x52\xc4\x9b\x18\x36\x81\x35\xda\x56\x44\x1b\x57\x54\x49\x69\x4c\x50\x0c\xa5\x22\x01\xa3\x2d\x92\x12\xb6\xd8\x15\x66\x26\x48\xd1\x29\x71\xa1\x12\x8b\x6b\x4a\x92\xe9\xf2\x68\xd3\xef\x9b\x20\x7f\xc4\x3d\xd2\xcb\xd8\x79\x3c\xda\x4e\x81\x29\xef\x39\xcf\xed\xaf\x63\x5e\x85\xb5\x5b\x49\xcb\xbe\xab\x37\x12\xd3\x25\x08\xd1\xbd\x44\x93\x99\x1f\x4c\xa9\x21\x77\x4c\x2b\x09\xe3\x55\x19\x50\x09\xf8\x6d\x67\x6b\x61\x6e\xae\xed\xd3\xf5\x86\x49\xec\xe7\x06\xf5\x2e\x6b\xc3\x2d\x80\x83\x79\xec\x95\xdd\x96\x6e\x4c\x18\x45\x61\x3c\xd8\x57\x2e\x66\x64\xb0\x2c\xa8\x87\xb5\xc1\xd4\x59\x68\x4a\x82\x9b\x53\x90\x27\xb4\x64\x85\xa2\xd0\x4d\x38\x5e\xd6\x99\x38\x20\xaa\x58\x28\xd3\xbc\xbd\x24\xd8\x6d\x12\xf9\xf7\x83\x15\x7f\x60\x94\x20\xf8\xcf\xe8\x41\xf0\xb1\xf7\xa4\xc2\x1f\xf8\x31\x71\x4e\xce\x38\xc4\xc6\x3e\x62\x0f\x42\x70\xc1\xac\xe2\x78\x65\x8c\x49\x16\x36\x53\x05\xce\xbf\xa9\x88\xd7\xb2\x62\x5c\x7e\xa1\xe9\x4d\xd1\x76\x40\xa8\xf8\x23\x65\x52\x8e\x2b\x98\xf3\x1b\x4d\xee\xc1\x8f\x63\x6a\x33\xfa\x29\xe6\x52\xb9\xe5\x5e\x69\xbf\xb7\xeb\x29\x47\x2f\xcc\xfc\xf1\x38\x09\xe3\x1c\x6a\xe8\x16\xfa\x75\x51\x31\x2e\xbb\xd8\xa0\x1f\x19\x7f\x4a\x05\x71\xc7\xd4\x58\x32\x58\x62\x50\x1a\x7a\xbd\xd9\x83\x8d\xd7\xd3\x70\x30\xcc\x19\xdd\x27\xc5\xe9\x4a\xd5\xda\x8e\xdc\x75\x33\x93\xae\x1a\xd2\xb7\x11\x60\x01\xad\x2f\x6c\xe3\x9b\x0a\x8f\xf2\x61\x2d\x10\x79\x6e\xa9\x1d\x25\xa2\x9c\x89\x6c\xe7\x2d\x2c\x42\x3e\xf9\x58\xc1\x86\xd5\x30\x1d\x84\x71\xe8\x53\x04\x8c\xfa\x29\x52\x23\x99\x96\x51\x6d\xfe\x8f\x6a\x9d\xad\x85\x85\xe5\xf6\x98\x44\x86\xe7\xb4\xac\x96\xa2\xc5\x3b\x24\x78\xd5\xfb\x8a\xda\x66\x14\x12\xed\x88\xcf\xe4\x74\x96\xc2\x41\x83\x48\x1d\xd1\x63\x6c\xfc\xb4\xcb\xa1\xa5\x25\xd1\xb4\x62\x77\x27\x94\x7f\xcc\xfd\x6e\xcb\x39\x69\xe0\x6b\x45\x70\xc8\x7d\xdf\x20\xf4\xe3\x3c\x23\x61\x64\xa9\x24\xbb\x98\x0b\xd4\xa3\x58\xe3\xbb\x36\x6c\xd9\x3f\x0d\x7b\x76\x0a\x8e\xfb\x2c\xd5\xa6\x8b\x93\x26\xeb\x19\x29\xb3\xc2\x91\x81\xcc\x86\x8f\x27\x3b\xe4\xed\xcb\x07\xb8\xb4\xbc\x44\x57\x8d\x7d\xcf\x94\x23\x7c\xa2\x18\x9f\x52\x13\x85\x66\x15\x1e\x9b\x79\x3f\x69\x4d\x08\x07\x68\x9d\x9b\xab\x9d\x9a\x41\x11\xf9\x69\xb4\x8e\x25\x6c\xc7\xf3\x97\x67\xed\xe4\xb2\x6b\x49\x9d\x68\x90\x97\x5d\x6a\xe7\x69\x52\x74\x9d\xe4\xa1\x66\x06\x17\x5d\x90\x06\xbc\x08\x01\xe9\xe4\x6f\x78\x5e\x60\xe2\x72\xac\xfa\xec\xc0\xd2\xf2\x52\x7b\xe8\xa7\x3d\x93\x82\xa1\xd3\x8a\xc6\xd9\xaa\xfe\x1f\xa1\x6e\xcc\x93\x70\x9e\x52\xe6\xbc\xa0\xd6\xca\xc8\xbc\x14\x06\xc9\x1e\x07\x3d\xd8\xf4\x94\xb7\xc7\x4c\x81\x40\xfd\xd5\x9c\xed\xa6\xaa\x8d\x6e\x6a\x75\xbf\x3b\x8a\x7b\x7d\x9c\x44\x91\x89\x5b\x8e\x9c\xeb\xa4\x4a\x27\x4e\xaa\x0f\x06\x49\x14\xf9\xe9\x94\x82\xfa\x5d\xa1\x1b\xc1\x1a\x68\x75\x94\xc0\xd6\xad\x46\x26\xac\xbe\xf1\xf3\x02\xbc\x4f\xcf\xdb\xe1\x10\xfa\x2b\x3e\x69\x22\xf3\xff\xe5\xb6\xe9\x0d\x8c\xd2\xa8\xb9\xe2\x39\xb1\xc7\x2b\x4d\xf6\x89\x81\x26\xa5\x21\x9c\xaa\x3a\x5d\xdb\x67\xdc\x54\xed\x93\xa1\x63\x77\x0f\x7b\x6b\xfe\x3a\xed\x7a\x3b\x5e\xa1\x59\xe0\x5d\xb1\xe3\x5e\xad\x10\x0e\x09\xff\x30\xea\x0d\x93\xa4\xa7\x10\xbc\x3f\x54\x40\xe1\x1f\x2a\xea\x8d\xfe\xc1\xb5\x83\x88\xff\x6d\xef\xf8\x90\x8b\x41\x5d\x20\xd1\x4b\x06\x03\xd3\x6b\xe9\x1e\x3b\x43\x24\xf9\x44\xd5\xc9\xc3\x9e\xf1\x79\x52\x8d\x49\x0f\xe8\xc7\x41\xd8\x74\x4a\x35\xa7\xef\x36\x91\xe6\x8e\xfc\x34\x67\x8c\x33\xe2\x5a\xce\xb4\xf9\x44\x35\x5c\xe6\xfc\x54\x09\x1b\x42\xe2\x16\x8d\x3d\xd6\x5f\x47\x18\x78\x47\x45\xe5\xe3\xd0\x04\xe6\x51\x87\xac\x6c\x91\xd8\x88\xa4\xaf\x14\x54\x22\x31\x3b\x8b\xc8\x15\x27\x37\x14\x54\xe4\x67\xb4\x96\x51\x45\xb8\xa6\x24\x55\x8f\xab\xf6\xf3\x4f\x11\x69\x03\x3c\xf0\x43\x84\xa4\xfc\xb5\xae\xd5\xe9\xe7\x61\x37\xc9\x31\xdf\xc2\xb2\xc4\x4a\x28\xe9\x0c\x11\xce\xa0\xaa\xca\xb2\xd7\xd8\x3f\xfb\x3a\xfb\xed\x24\x5a\x9e\xb7\x5c\x93\x97\x0b\x0d\x02\x33\xdb\x59\x88\x7d\xe1\x85\xf6\x30\x59\x83\xd4\x0b\x0a\x96\x1f\x21\x14\xb4\x04\x4e\x0e\x20\xb2\xa9\x18\x2c\xcd\xaf\xfe\xda\x94\xab\xaf\x9e\xd1\x25\x9b\x16\x05\x29\xb8\xb1\xbb\xb5\x3e\x7d\x19\x03\xa5\xe1\x6a\x18\x99\x01\x83\x97\x45\x8f\xcc\xbd\xda\xe3\x4d\x90\xc5\x5f\x9a\x3f\xf4\xcc\xa1\xa3\x47\x08\xc1\x8d\xf0\xf7\x3f\x68\x0c\xfd\x23\x84\xc6\x96\x72\x7e\x79\x69\x68\x08\xeb\x0e\x59\x96\x14\xf9\x70\x5f\x99\x61\x20\xe7\x66\x0a\x25\xc4\x3b\xef\x79\x42\x99\x6b\xa1\xce\x7f\xa6\x82\xdf\x9b\x14\xf4\x6d\x8b\xcc\x8b\x44\x5a\xe5\x8f\xda\xd4\xec\x90\x40\x53\xee\xa8\xad\x94\x1a\xbf\x47\xf9\x27\x58\x70\x90\x9b\x8b\x46\x3e\x99\x49\xfe\x07\xcf\x21\xe5\xcf\x34\x35\xd4\xb2\x3c\x89\xab\x02\x99\xbf\xab\x04\x32\x7f\xb7\x81\x7b\xb9\x7f\xd0\x1c\x6c\xe9\xbe\xea\xeb\x9a\x03\xe5\xf5\xda\xbb\x59\x9e\x6d\x17\x71\xea\xaf\x9a\x88\x1b\x2d\x78\xb4\x57\x95\x60\x24\x87\xfd\x8c\x51\xaa\x39\xaf\x85\x05\xa2\x5e\x2e\xd2\x2e\x0d\x71\x58\x54\xe0\x7d\xba\x52\x3e\xb6\x30\x8f\x35\xea\xd7\x5a\x97\x85\x87\x7e\x55\x79\xee\xab\x2a\x13\x22\xc4\x6b\xcb\x31\x88\x5e\x9a\xa8\xe9\xed\xba\x6d\xfe\x9c\x8c\x2a\xb5\x1c\x4a\xff\x9e\x42\xe3\xdf\x53\xe3\x49\x3d\xd3\x0f\x83\x30\xdf\xeb\x8a\xd3\x98\xbf\x43\x8d\xf6\xcc\xc4\xe9\xde\xa2\xa1\x2c\x9b\x56\xf1\x53\xde\xf3\x54\x96\x7e\x1e\x56\x42\x46\xf9\x9e\xb4\x08\xa2\x41\x9c\x64\x81\x89\xf3\x10\x6f\x11\x2b\x74\x4b\xc1\x17\xb6\x54\xe8\x11\xc6\xfd\x28\x0c\x72\xcc\x54\xb2\xec\xad\x22\x72\x3a\x59\x6d\xed\x14\xd9\x27\xca\xcb\x14\xfc\xae\x0b\xb1\xef\xe0\x39\x09\xe2\x91\xbc\x1b\x4c\xd0\x7b\x5a\xb6\xe5\x22\x3c\xbd\x42\x49\x1e\x61\x2f\xb6\x63\xc9\xab\xf8\x9b\xc9\x72\x99\x02\x08\x4f\xc0\x22\x42\x6d\x90\xf4\xfb\xb5\x74\x7d\x79\xb6\x9d\x99\x38\x43\x16\x64\xd1\x07\xe5\x23\xe3\x13\x35\x54\x2d\x0d\x01\xd3\xab\xb4\x18\x50\x9f\x06\x6b\xc0\x31\x3d\x8b\x44\x8f\x68\xfb\x6d\x2c\x74\xfe\xf7\xda\x05\x50\xe0\x63\x7c\x24\xd6\xa8\x3c\x1c\xd3\x85\xa8\x63\x15\x69\xef\x51\x12\x87\x01\xc2\x02\x91\x3c\x52\x38\xf0\xcb\x8a\x99\x14\x21\x04\xf5\xf1\xb5\x38\xe3\xf2\x52\x85\xf2\x0d\x75\xa4\x37\x2a\x58\x77\xe9\x63\x84\x71\x36\x0e\x53\x19\xd8\xb5\x68\x08\xab\x4d\x70\xae\x3a\x94\xa9\xaa\x93\x86\x82\x3f\xda\xb6\x88\xe3\xee\x55\x74\x35\x1d\xae\xf3\x7f\x3c\xaf\x68\x96\x03\x3f\x4d\xd7\xe9\xef\x96\x97\x38\xa3\xbd\xaa\x54\x32\xbf\xaa\xe0\x01\x57\x2a\x95\xd5\xd5\x24\xdd\xe3\xc6\x94\xcf\x68\x41\xa8\x4a\x29\x83\x9e\x94\xb4\xea\x14\x72\xe1\xcf\x68\x57\x49\x7b\xd9\x31\x03\x9a\x32\x75\xdb\xeb\x0a\x69\x90\x8c\xc7\x17\x7c\xcd\x53\xe3\x13\x28\x2b\xc3\x4e\x6c\x50\x25\x6b\x37\x5a\x65\x58\xc2\x67\x26\x8a\xcf\xe1\x4c\xa3\x4a\x1b\xcb\x7d\x4d\x29\x74\x06\x9b\x37\x84\x0e\xef\x78\x7a\xb7\xb9\x48\x33\x1f\x86\xb1\x40\x52\xf1\x56\x4e\xe1\x36\xf9\xa4\x16\x7d\xcd\xcd\x95\xc1\x4f\x4c\x92\xda\xfc\x66\x2d\x6b\xe1\xc2\x82\xa5\x6f\xa1\xab\x47\xd0\x71\xbf\xf6\x1d\x0c\x56\x29\x83\x61\x2e\x1f\x68\x92\x76\xe9\x23\x3c\xa5\xd0\x20\x71\xbf\xfc\xd1\x80\x05\xe5\xec\xbb\x39\xe4\x84\xbb\x5c\xb5\x31\xe9\x46\xe1\x80\x9a\x32\x7b\xca\x0f\x48\x49\x9e\xde\x17\x4e\x3e\x54\x96\xef\x43\x5c\x2a\xb0\x06\x77\xf0\xc8\xf8\x04\xfb\x52\xb4\xf6\xeb\x30\xb2\xa5\xb6\x9f\xe7\xa9\x1f\x88\x70\x04\x3e\x78\xcd\x53\xca\x6c\xd7\xd4\xf2\x94\x8a\x31\x2d\x35\xc6\x10\xa9\x16\x34\x30\x4e\xdb\x5b\x9e\x6a\x51\x1f\xa3\xe5\x27\x12\xfd\xb4\x60\x80\x5a\x7e\x68\xd3\xc5\x41\x92\x86\x49\xce\x9e\x51\xe6\xf6\xf4\x10\x5f\xc5\xb4\xa6\x79\xf6\x94\xe2\x73\xf8\x16\xe1\xd5\x98\x07\x19\x19\x91\x50\x41\x38\x59\xe4\x0f\xd1\xb2\x43\x68\x0e\x7e\x71\x94\x1e\xc0\x4b\x85\x00\x6e\xf7\x86\xa6\xb6\xfc\x26\x9e\x23\xf7\xc0\x60\x8d\x2c\x00\xd3\x0e\x8c\x13\x85\xc7\x33\x42\x74\x89\x6a\x03\x4c\xe2\x47\x78\xf4\xa8\x5f\xa3\x5d\xc9\x2d\x3b\x32\x40\x48\x19\xb8\x01\x80\xc0\x92\xd1\xfe\x68\x70\xde\x9e\xb8\xe1\x8a\xab\xde\x93\x3b\x87\x37\x96\x67\x81\x70\x41\xc1\xee\xa1\x6a\x07\xfc\x50\x11\xeb\x9c\xf2\x1c\xfb\xce\xd7\xa8\xd3\x81\x47\xf3\xf7\xb0\xd0\x76\x36\xab\x7c\x68\x42\xff\xa1\x6c\x02\xca\x2d\x30\xda\x6f\x4f\x1c\xd0\xf6\xba\x7a\x00\x5c\xea\x90\xa4\xc9\xc9\x57\xc4\x88\x7a\x51\x44\x40\xeb\x97\x8f\x55\xd8\xea\xa7\xe1\x54\xf9\x1b\xc8\x61\x3f\xc0\x03\xc0\x5b\xc2\xe0\x82\x14\x60\x5c\xd3\x22\x36\xdd\xd4\xcf\x18\x80\x20\x43\x81\x0e\xe1\xf2\x8e\x4a\x41\x7b\x45\x96\x33\x2d\x1e\xfc\xf0\x39\x15\xf6\x40\x42\x14\xdb\xe4\x5b\x4d\x15\x65\x42\xde\x48\xfe\x29\xe2\xbb\xaa\xd7\xf0\xe7\xca\x2b\x46\x61\xdf\x64\xfe\xaa\x9b\x2c\x87\xaf\xe1\x69\x09\x51\x43\x54\x54\xc1\xd7\xd5\xcc\x1d\xeb\xbf\x9b\xb8\xa5\x1a\x56\x67\xf5\x38\xe4\x59\x1b\xa2\x99\x08\xc8\x6b\x40\xbf\xb0\xec\x6e\x29\x53\x70\x4b\xd7\xaa\x23\x3f\xec\x69\x71\x0e\x98\x09\xc1\xb3\xa8\x41\xca\xb9\x0c\x28\x49\x54\x20\x4f\xab\xea\xd5\xd7\x7e\xb1\xe3\x8a\xf0\x0f\x14\x0b\xca\xa5\x27\x37\xd4\x24\x7e\x91\xae\x86\xab\x12\x0c\xe3\x45\x9c\x57\x0c\x46\xe7\x55\x8a\x3a\x2c\x46\xe3\x7c\xbd\x55\xbe\x14\x8e\xea\x95\xce\xc8\x9f\x59\x9b\x50\x8c\xf3\x22\x45\x7e\x89\x52\xc5\x6b\x08\xe2\xf8\x44\x05\xf4\x2b\x61\x8f\xd9\x4d\x9a\x6a\x98\x0d\x10\xb4\x22\xee\x99\x74\x14\xc6\x62\xfb\x61\x22\xb4\x94\xcd\x75\x3c\x29\xc9\xd8\x76\x16\xfc\x3e\xdf\x5e\x4d\x2c\x6d\x96\xe2\x28\x9b\xb7\x1a\xe9\x1f\x37\xff\x62\x5e\x0a\xcc\x38\xa7\xea\x09\x20\x0a\x4c\x37\xc0\x27\x93\x03\x15\x1a\xa9\x74\x15\x49\x30\x07\xae\x9e\x9b\x8e\x3f\x87\x0d\x2c\x11\xad\x6a\x38\x83\xef\x5a\x10\x5e\xb4\x76\xd5\xce\x96\x52\x1d\x9a\xad\x88\x20\x6f\x68\x41\xb0\xb3\x4a\x72\xea\x5b\x4d\xea\xc5\x91\xf1\xb3\x7c\x9a\x52\x70\x71\x31\xe5\x57\xc1\x48\xcc\x6c\xe8\xf1\x42\x4a\xa8\xb1\xe7\xb7\x2b\x03\x4f\x41\xc8\xa8\x5c\x51\xd9\x77\x45\xb1\xf3\x8a\x0c\xe5\x4d\x2c\x37\x71\x1d\x8a\x8a\xcc\x2f\x06\xc3\x5c\x54\x60\x85\xf0\xc9\x89\x2c\x9e\xb5\x66\xa8\x67\x5e\xf4\xd1\x84\xd2\x48\x1e\xf8\x5b\xbc\x70\x3c\xc2\x1b\xca\x6a\x80\xa3\xa5\xe5\x1a\x0f\xa7\xd5\xf8\xeb\x69\x35\xd7\x39\xf0\xc3\xf8\x11\xba\x49\xdc\xfd\x25\x4f\x2d\x08\x0c\x4d\x21\x2e\xbf\xef\xa9\x26\x10\xd7\x63\x04\x30\x53\xbe\x5f\xc4\x18\xbb\x37\x76\x16\x60\x61\x37\xf6\x6c\x34\xe8\xb1\x12\xa4\x9b\xa5\x21\x14\xca\xc7\x22\x15\x6d\x9b\x27\x0d\x7b\xd3\x1a\xd7\x64\x2b\x59\x4f\x3d\xd9\xb1\x50\xcd\xa7\x9e\xac\xa2\x9a\xf6\xbb\xb2\xb3\xbf\xc7\x41\x65\xd8\x0b\xb2\x0a\x3b\xc5\x4a\xe8\xd9\x54\xf8\xaa\x4e\x2a\x75\x86\x73\x70\xf8\xcc\x61\x5c\x53\xf2\x5b\x58\x28\x0d\x9a\xed\x41\x30\x78\xce\xd3\x40\xba\x9d\xdd\x27\x82\xfb\x86\x7e\x99\xb9\xe5\x61\x20\xec\x8a\x58\xef\xd7\xf4\xc4\xe3\x35\xd5\x72\x4a\x0b\x92\x05\xa5\x30\x16\xef\x6a\x4f\xc7\x09\xa4\x73\x50\x6c\x47\xfa\x9c\xe4\xf1\xdb\x8a\x1e\xf4\xf8\x44\x71\xf6\x30\x3f\x21\xff\x7d\x9d\x5d\x79\xbe\x9d\x91\xa5\xae\x32\xfd\x7c\x9f\xee\x0c\x9e\xff\x3a\x76\x1d\x5e\xf7\x2d\x95\x93\xc6\x59\x1e\xe6\x85\xb8\xcf\x26\xb8\xf9\x13\x0e\x63\x35\x36\x69\x1e\x1a\x71\x3a\xb0\x0d\xef\x79\x8a\x6a\x98\xab\x72\x78\x33\xaf\xa8\xf9\xba\xd5\x70\x90\xa4\x49\x81\x2d\xc4\xa3\xfa\x95\xb1\xfd\xca\x84\xe2\xd0\x3c\x46\x5f\x8a\x10\x83\x51\x97\x88\xff\xae\xd3\xeb\x46\xda\x01\x2d\x7e\xac\x8f\x9b\x8a\xdc\xfb\xc7\x9e\xa2\x66\xbb\x46\x90\x09\x40\x99\xce\x78\x3b\xdb\xd8\x82\x1a\x7a\x40\x9d\x67\xdc\x32\x87\xe2\x3c\x58\x8b\x5d\xc6\xb2\xa9\x0a\x5e\x73\x43\x05\x3e\x8f\x76\x76\x86\xba\x73\x73\xed\xac\x18\x0c\x4c\x96\xcb\xb6\x41\xed\xf9\x3c\xbe\x8e\x4f\x26\xff\xe4\x63\x0c\x77\x90\xc4\x83\xd4\x64\x59\xe9\xa5\x5b\x5f\xb2\x9c\x05\x13\xd5\x52\xb8\xa8\x68\x3a\xe3\x24\xff\x05\xba\x33\x66\x23\xa5\xe7\xc2\xcd\x76\x0a\x9e\xd8\x2c\xd2\x33\x12\x90\x08\x35\x41\x2d\x7d\xa9\x9d\xe6\x6c\x75\x54\x55\xea\xb4\x16\xba\xb9\xe9\xe9\x36\x3a\x21\xd4\x10\x30\xde\x56\x72\x84\xf7\x10\xfa\x56\x2a\xae\x28\x26\xde\x66\x54\x0b\xde\xf8\x1b\x14\x47\x4b\xc1\x9f\xde\x04\x02\x78\xe0\x87\x51\x22\xde\xd5\x01\xaa\x4c\x84\x4a\xe8\xd9\x09\x01\xbb\xca\xdb\xae\xa1\xb4\x8a\x4a\x1e\x57\x86\x60\x69\x99\x4e\x06\x46\xf2\xaf\x89\x3e\x05\xff\x30\xbd\xa1\xe1\xc8\x7e\x90\x93\x68\x5a\x4b\x83\x3b\x54\xdb\xb1\xbe\xe7\x16\x16\xda\x7e\xd4\x4f\x4d\x16\x24\x64\xbb\x79\xfd\xab\x3e\xf1\xe9\x26\xc1\x8c\x22\x0e\xb1\xd3\x2a\xfb\x45\xfe\xf8\x80\x12\x6d\xc9\x41\x03\x52\xbe\x55\x4b\xa6\x7d\x68\xd1\x12\xc9\x4b\xe0\x12\x0c\xc3\x28\xc2\x40\x2f\x0c\x11\x60\x05\xa2\xf7\xdd\x5a\x9e\xdd\xde\x56\xe1\xec\x8b\x7e\x90\x74\xb3\x84\xe8\x27\xe6\x79\xeb\x9c\xd0\x33\x46\xf7\xe9\x57\x2c\x97\xb7\x13\xf7\xd7\x65\x03\x33\x32\xe9\x40\x4a\x7c\x70\x98\x28\xe0\xf2\xb1\xce\x96\x93\xf5\x24\xf7\xa7\xab\x84\x6b\x73\x6a\x45\x3b\x96\xbf\x4d\xcd\x7a\xa7\x5b\x07\xfd\x28\x49\xd2\x7d\xca\x65\x30\xa9\x0e\xf3\x29\x61\xc5\x09\xcc\x81\xde\x20\xd6\x18\xf4\xcf\x10\x13\xb6\x28\x25\x42\x31\x77\x57\x47\x81\xfe\x6e\x28\x32\xd6\x5b\x4a\x9f\xf4\x7e\xad\x4b\x34\x37\xd7\x0e\x92\x60\x25\xf7\xc3\x88\x26\x35\x2d\xa3\x90\x0c\xd3\xfe\xdb\x7b\x6a\x1e\xea\xfc\xe4\x13\x0e\xf6\x13\xf7\x7e\xa9\x4c\x87\x58\x40\xad\x43\x17\x2c\x5c\x2d\x6a\xd6\x7e\xaa\xa3\xe4\x25\x7f\xe8\x29\x2f\x57\x61\x67\x61\xe9\x67\xf6\xfc\x18\x4d\x46\xe5\x6a\x77\xa7\x7c\xb6\x22\x64\x4d\x8b\x07\x5f\xb6\x45\x66\x00\xb9\xde\x25\x6f\xf7\x2f\x4b\xd6\x49\xd0\x0b\x04\x28\xdf\xa6\xec\x0d\xbb\xfb\x06\xad\x02\xd1\x7c\xd0\x9b\xf0\xc7\x9e\x62\x25\xfd\x37\xaa\x27\x7c\x05\xf2\x08\x48\xe5\xa6\x41\xcd\x81\x8a\xd2\xae\x8d\xd6\x17\x7e\x87\xc3\xde\x3d\x5a\xe4\xee\x4d\x62\x97\xbc\xed\xb5\x3e\xfb\x59\x0e\x49\x7f\x40\xc9\x2a\xb2\xeb\x27\x88\x26\x12\xfd\xa1\xad\x49\x69\x05\x11\x2d\x0b\xb8\x14\xb9\xda\x47\x30\x4a\x80\x47\xee\xde\x68\x7d\xf9\x8b\x55\xe2\x20\xfc\xfd\x39\x95\xb5\xef\xda\x20\xcb\x87\xdd\x72\x47\x55\x5c\xd7\xfc\xf5\x35\x3f\x45\x7f\x8c\x39\x3a\xe8\xfe\x84\xaf\xa3\xde\x55\x5b\x2c\xa3\x37\x9f\x86\x38\x5b\xae\x67\x77\x4a\x0d\xa5\x9c\x52\xe3\xaf\xe3\xd4\x64\x65\x36\x42\x4c\x79\xe5\x45\x5b\x49\xab\xf2\x05\xf2\x49\x0d\x39\xf4\xb9\x76\x16\x24\xfd\x3e\x78\x56\x58\xa3\x42\xd3\x98\x6e\x6a\x37\x76\x93\xde\x21\xde\xdb\x2b\x0d\xd2\x47\xdd\x24\x4d\x55\xc9\x1d\x0d\x6f\xcc\x48\xf2\x71\x6d\x08\x88\xba\x9c\xe3\x34\xe9\x09\x8f\x31\xad\x4a\x18\x08\x8c\xd3\xf1\xb1\x0a\x80\xc2\x38\x88\x8a\x9e\xd9\x8f\x17\x55\xa9\xad\x61\x9b\xfe\x5b\xac\x4d\x99\x9d\x76\xf3\x74\x3f\xc1\xdd\x48\xdb\x51\x8f\x75\x28\xcd\x33\x90\x16\x60\x39\xbc\x8a\x1d\x8f\x70\xea\xec\xc4\x51\xc9\xbf\x0d\x6f\x89\x31\xb2\x3f\x57\xf5\x7e\x51\xb4\x77\xdd\x9d\x4b\x8a\xc6\xed\x92\xb2\x96\xd4\x33\x4d\x4d\xfc\xa8\x6b\x0d\xdc\xd5\x95\xea\x1f\xd0\xcf\x09\xa5\x93\x73\x82\x0f\xb0\x49\xa4\xb7\x5d\xbe\x13\xfe\x03\x85\x49\xbf\xae\x5d\x13\xeb\xe3\xe3\x37\xde\xa5\xcd\xca\x5f\xa5\xab\xb5\x69\x41\xa0\x47\x90\x40\x62\x63\x5f\xc2\x63\x45\x0a\xc3\x91\x0b\x82\x92\x7b\xb5\xb4\x90\x8a\x88\x84\xf0\x74\x54\x92\xcc\x52\x36\x71\xa4\x02\x50\xf8\x61\x32\x7f\x35\x0b\x39\x0e\x93\xd8\x90\x84\x42\xcb\xf2\x0c\xed\x81\x25\xe5\x93\x0d\x65\xf6\x4d\x1c\x87\x55\x3a\xf9\x89\x1b\x32\xd8\x54\x6f\xa3\x9f\x1a\xd3\x13\x4a\x3f\x19\x0b\x76\x53\x41\x9b\x1a\x92\x45\x8f\x58\x42\xe2\x06\xf3\xcc\xd2\xa7\xfc\xbb\x80\x2e\x5e\xd2\xa4\x0c\x97\x14\x20\x66\xb5\x0c\x66\x03\xa0\x95\xad\x1b\x3b\xaf\xf9\xa8\xeb\x72\x8d\x5f\x9a\x6f\x8f\xfc\x15\xa3\xb4\x7b\xd0\xf0\x97\xc8\x7e\xe7\x13\x7f\x8e\x5c\x7e\xcf\xa4\x59\x4e\x6c\x4d\xe5\x65\x89\xb6\x9f\x02\x41\x5e\xd2\xb4\x22\x34\x83\x15\x51\x4e\x68\xb1\x82\x5f\x57\x4c\xe0\x5f\x6f\xd8\xd7\x23\x3f\x8c\x79\x86\xc8\x4d\xb8\x9f\xc7\x5e\x92\x4c\x57\x17\x87\x47\xa3\x30\xcf\x8d\x54\x50\x90\xa3\x9c\xf2\x54\xd3\xe4\x54\xad\x44\xf5\xec\xec\x52\x7b\x98\x24\x2b\x52\x88\x40\x53\x18\x12\x1a\x7c\x5c\x2b\xf8\x3a\xd6\x01\xc1\xf1\x60\x63\x7f\x55\x8f\xc2\x7d\x55\x95\xff\x47\x61\x9c\xa4\xe4\x5c\x51\x15\xc7\xb0\x8e\x9d\xd8\xb2\x98\xea\x07\xb5\xcb\x83\xea\xfe\xb8\x60\x4e\x33\xf8\x00\x2c\x6b\x3e\x6e\x20\xec\xc9\xfc\xbe\xc1\xcf\xd9\xb9\xe2\x72\x17\x4a\xb8\x5b\x7e\x11\xea\x67\x17\x54\xa9\xe4\x2b\x85\x1f\x85\xb9\xae\x49\x23\xad\x96\xe6\xb5\x96\x4c\x73\x8e\xe0\x7f\xc7\x57\x4b\x68\x49\x2f\x1f\x85\xe9\x8f\x14\x4c\xaa\xef\xc7\x71\x68\xa6\xf5\xf2\xf5\xf4\xf2\x85\xd9\x94\xb2\x83\x03\x7a\x9d\x6d\x54\x75\x18\x25\x79\xb8\xca\xeb\x6e\xc9\x6a\x35\xd0\x02\x17\xb1\x06\x87\xe5\x16\x6a\x97\x24\xe6\x31\x27\x84\x31\x30\xb5\x7c\xec\x26\xf4\xf3\x34\x89\x07\x34\x8c\x59\x3a\x32\xa4\x5d\x50\x88\xe1\xe3\x5a\x3f\x7a\x71\xb1\x4d\xf5\x41\xcb\x97\x7a\x46\x83\xe5\xce\xd4\xe8\xe3\x5e\x78\xa1\xdd\xc5\x46\x63\xc2\x20\x2c\x4f\x61\x0f\x72\x6b\xe6\x2b\x45\x98\x9b\xbd\xf4\x94\xf0\x5d\x27\x26\xaa\x19\xfb\x0d\x84\x25\x88\x1b\x19\x7f\x64\xad\xac\x25\x47\xf8\x06\x3d\x4b\xfe\xff\x9e\x52\xd5\xd5\xaa\x55\x2f\x86\x3e\x93\x7a\xa0\x52\xf7\x63\xcf\xe1\x2c\x7e\x3c\xf9\xd4\x4e\x90\x59\xb9\x24\x0f\x94\x5f\x6b\x05\x48\xca\xaf\xb5\xce\xc2\x06\x16\x17\x11\xa8\x60\xd8\x67\x6f\x47\x0d\xa1\xdd\xf6\xaa\x4d\xd9\xf2\x2d\xda\x4a\xef\x73\x16\xe3\x7f\x85\xdc\x85\x3d\x9e\x9b\xb7\x74\x9c\xf4\x50\x98\x62\x8c\xd6\x25\x47\x77\x13\x57\xee\xb9\x80\xc7\x8a\x70\xf0\xff\x25\xec\x5d\x83\x24\xb9\xb2\xf3\xb0\x99\xea\xee\xc1\x0c\x80\x19\x3c\xf7\x65\x49\xa1\xe2\x7a\x23\x20\x45\xac\x20\xdb\x11\x0c\xd3\xfa\x93\xa5\x9e\x5e\x82\xd3\xc1\x6d\x4c\xf4\x0c\x01\x09\xc1\x08\xe3\x56\xd6\xad\xae\x44\x67\x65\xd6\x66\x66\xf5\xa0\x11\xfa\x61\x2b\x64\xff\xf0\x0f\x85\x2d\xc9\xb2\x23\x48\x87\x69\x51\x41\x99\x14\x2d\x53\xa4\xc8\x15\x49\x91\x55\xcb\xe5\xbe\xb0\xaf\x59\xbc\xdf\x98\xf7\x7b\xba\x7b\xde\xd3\xf3\xe8\x71\xe4\xf9\xce\xb9\xf7\x54\x67\x82\xfe\x85\x4c\x4c\x57\x55\xe6\x7d\x9c\x7b\x1e\xdf\xf9\x3e\x09\xd1\xf0\x67\xdc\xd3\x8d\x11\xff\x99\x4a\xa3\xcf\x72\x3f\xfc\xd6\xa9\xd2\x20\x6f\x9d\x1a\x79\xee\x93\xae\xc9\x8b\xb6\x89\x63\xc4\x17\x4e\x48\xc4\xf1\xcf\x71\x1b\xab\x3b\x12\x16\xbd\xc2\xc8\x17\x95\x14\x3e\x69\x7a\xe4\x85\x4d\xc2\xc8\x72\x10\xc4\xdc\x33\xd4\xb2\x24\x3c\x34\x2a\x8b\x66\xe3\x38\x3d\xc2\x89\x09\xe9\xdf\x9a\xe0\x0f\x54\x68\x99\x77\x95\xe0\x4b\xdb\x46\xc9\xd2\xa3\x34\xb4\x4e\xff\x70\x51\x18\xe2\x2e\x60\x02\x90\x2c\xfe\x0d\x8c\x14\x8a\x37\xb0\x2c\x30\xc8\xfb\xa8\xc0\x83\x13\xf8\x63\x2c\x6a\xa1\x75\x2b\xa7\x1f\xb1\xf7\x06\x66\x59\x94\x5c\x68\x14\x60\x6a\x37\x50\x45\xc2\xf7\x1e\xa7\x10\x15\x6b\xaa\x8a\xe3\x22\xd1\x81\x28\x59\x71\x69\x05\x57\xf5\xa2\x21\x96\x0a\xd8\xf6\x8f\xd1\x21\x64\xfb\x83\x38\x5d\xe5\xd3\x5b\xa4\xb4\xe8\x8d\x44\x19\xab\x86\x58\xb2\x33\xec\x53\xd3\x30\x8f\x0d\x8c\x1b\x5f\x2b\x00\x55\x16\xe5\x36\x99\x9a\x80\x9e\x97\xbf\x02\x5b\xcd\xe7\x0a\x72\x2b\x9b\x35\x2c\xe4\xcf\x35\x97\xd2\x18\x68\x5d\x04\x0c\xd0\x90\xe3\x6b\x47\x05\xde\xb3\x71\x2c\xa9\x27\x3c\x32\xd7\x3b\x10\xf6\xff\x08\x2f\x83\x40\xea\xaa\x3a\x50\x4b\x8f\x27\x8b\xda\xc3\xc2\x42\x96\x0d\xf1\xe0\x5d\xf5\x2a\xe7\x47\x13\x74\x6b\xde\x2c\xdc\x0a\x7c\x2e\x73\x53\x75\x67\x0c\x13\xfb\xea\x80\xf2\x6d\x10\x3c\xc0\x0e\x3f\x46\xfb\x50\x90\x6f\x3e\xa3\x82\x08\x11\xc8\xf4\x3f\x26\x04\x17\x5c\x98\x5b\x54\x22\x13\xd8\x5c\x4d\x57\x42\xd8\x33\x59\x1f\x47\xb4\xe0\xda\x1b\xaa\x9f\x7e\xfb\x34\x4b\xf2\xa8\x6b\x42\xdb\x21\x4c\xb3\xa2\x1d\x14\x88\xc9\x16\x16\xa8\xf4\xbf\x7a\x1c\xaf\x89\xb2\x87\x7c\x69\x95\xe9\x50\x11\x47\xff\xa5\xce\x45\x9e\x87\x0d\x95\x91\xf3\x8e\xf3\x55\x5a\xed\x22\x02\xa5\x9a\x37\x76\xb7\x9c\xf0\x4c\x3b\x1f\x66\xc0\x16\x49\xf4\xe6\xa1\x93\x57\x31\x9b\x42\x05\x52\xcb\x60\x34\x30\x99\x94\xde\xa5\x07\x82\x7e\x48\xba\x23\x9c\x26\x50\xcf\x12\x11\xd1\xb4\xa6\xd2\x65\xd6\x7a\x9d\x9a\xa7\xb4\xde\xea\xcf\x29\xb5\xa0\xbf\xa6\x5a\x79\x87\x03\x2e\x54\xe1\x05\x19\x70\x89\x06\xa3\xbf\xd9\xf2\xfb\x68\xef\xd8\x97\x80\x1e\x01\x89\x15\x17\x55\x7a\xa6\x1d\xc5\x51\xa1\xd8\xd1\x35\x97\xae\x70\x0c\x69\x6a\xd3\xc2\x68\xe0\xe5\xbf\x67\x83\x2c\x9e\x92\x0c\x64\x27\x7d\xcd\x26\xf9\x94\xcf\x62\x4f\x8f\x15\x33\xc6\x39\x5d\x07\x7c\xb8\x55\x85\x53\x1e\x2a\xd7\x48\x81\xc4\x55\x9d\x94\x5d\x15\x2e\xb1\x00\xc9\x61\x9b\x81\x92\x07\x5b\xe2\x9a\xd2\x7b\xb9\x36\x91\xc1\x35\x51\xf2\x85\x72\x71\x8b\x7a\x51\x79\x28\xa1\x7e\x73\x17\x7e\x10\x8c\xe2\xeb\xb0\x83\xc8\x22\x5e\xc5\x01\x09\x63\xfb\x32\x76\xf3\x44\xc3\x06\x53\xb8\x8c\xb4\x68\x02\x6c\x27\x7f\xdb\xc8\xcb\x4f\x30\xe9\x33\xd2\x88\x1f\x50\x56\x01\x2b\x6e\x53\x75\x94\xdd\x27\x1b\x80\x13\xf5\x21\x6e\xde\x10\x2e\x89\xc9\x42\x4b\xb9\xe2\x71\x72\xff\x85\x52\x56\xbd\x4e\x1b\x9e\x29\x53\x68\xc3\x4b\x8b\x1c\x32\x26\x4a\xb2\xe0\x39\x49\x53\x63\xfb\x61\xe6\xcf\x06\x4f\x3b\x13\xba\x92\xc6\xc3\xa4\x30\x59\x94\xf7\xa9\x33\x1b\x7b\x82\xc9\x85\xf9\xa6\x36\xe4\x19\x66\x61\xcf\x70\x53\x19\xb3\x94\x2a\xf1\xd2\x8b\xf0\xab\x38\x7c\x8c\xfa\x51\x42\xce\x2b\xcd\xbc\x08\x2c\x79\x05\xf6\x3f\x55\x07\x63\x98\x99\x04\xf2\xa8\x8e\xee\x74\xee\xb0\xcf\x2b\xba\xf8\xfb\x98\x92\x81\x3a\x56\xb1\x62\xd4\x70\xfe\x0a\xe8\x64\xe5\x5c\x83\x85\x15\x9e\x7c\x9f\x7f\x19\xd8\xac\x1f\x01\x19\x22\xb5\x3a\x64\x15\xf9\xba\x62\xf0\xbe\xda\x34\x1d\x8a\xe2\x3c\xeb\x13\x36\x24\x16\x26\x5f\x2b\xc7\x65\xce\xe0\x98\xc1\xb2\x38\xa3\x09\xb1\xcf\xd4\x06\x2f\x7d\xb3\x64\x5e\x8b\x12\xee\x2b\x77\x9d\xdd\x2e\x90\x3d\x59\xd7\x61\x4f\x45\x15\xc3\x15\x15\xe9\x59\xa3\x2f\xe0\x9b\x1a\xe2\xc9\x43\xc4\xef\x1a\x16\x4a\x0c\xf2\x86\x12\x83\xbc\xa1\x92\x12\x7d\xf3\x6a\xd4\x8f\x5e\xb3\xd3\xaa\xf5\x1c\xfe\xa4\x28\xe2\x35\x16\x16\xb6\x10\xf6\x12\xfd\xda\x84\x5f\xfa\xf5\xb9\xe6\x8b\x8b\xb3\x14\xf3\xc0\xb8\x03\x50\xc3\x16\x4e\xe9\x35\x9e\xae\x60\x2a\x0f\x2c\x34\xc3\xb4\x28\x52\x3e\xe9\xb5\x1d\x75\x89\x4d\xdf\xb8\x72\xc3\xcb\x08\x45\x9d\x23\xd4\x9d\xe7\x11\xcf\x3b\xc8\x65\x82\x67\x79\x3f\x50\x38\xa3\x3a\x5d\xff\xd8\x76\x8b\x86\x96\xfa\xa2\x34\x80\xef\x59\x91\xf4\x44\x1c\x0d\xa2\x24\xc5\x54\xc1\x7f\xbb\xad\xf8\xec\x6f\x7b\xed\x95\x65\x7b\x44\xdc\x27\x9c\xbe\x0f\x68\x45\xf2\x75\xa0\x9b\x0a\x86\x59\x91\x4f\x79\xb9\x08\x30\x21\x63\x4e\x60\x49\x44\xb9\x42\x89\xf6\x64\x4b\x68\xf3\x43\xdc\x89\x74\x8a\x68\x58\xd2\xc3\x09\x14\xd8\xff\x50\xdf\x26\x26\x64\xcd\x69\x38\xf2\x1b\x23\x85\x66\xdb\x70\xcf\x1e\x97\xae\x1f\xef\x26\x1c\xe8\x6f\x05\x1e\xed\xfc\x56\x2d\xbd\x48\x3f\xcd\x63\xdb\x97\xda\x25\x03\x79\x03\xc5\x9e\xe7\xa9\xb6\x96\x32\x6b\x13\x9b\x41\xd6\x18\xfb\xe7\x96\x0a\x00\xb9\x8d\x4a\x84\x17\xfc\xc6\x8a\xed\xab\x7b\xca\x51\x82\xcf\x76\x87\xfc\x7a\xe4\x2a\x3f\x19\xa9\xb6\x1c\x46\x74\xc0\x12\xef\x45\xd3\x1a\xde\xf0\x0e\x1f\x74\x92\xd4\xf2\x0e\xe0\x3d\xcd\xd1\x01\x62\x33\xb8\x08\x4f\x57\x34\x33\x0f\x50\x9f\xc0\xb2\xed\x30\xff\x0a\x5e\xe0\x63\x65\x0c\x3e\xae\xe9\x58\x3f\xd4\x5c\x8a\x56\xb4\x9c\xe1\x1f\x8e\x54\xbc\xfc\x87\x81\x66\x49\x2e\x4c\x14\x97\xc3\x5f\x9e\x07\x38\x9b\xce\x28\x88\xe4\x99\x0a\x82\x81\x8e\xda\x28\xeb\x4f\x2b\x81\xae\x29\x34\xc6\x6a\xfc\x1e\x72\x94\xd7\x95\x02\xfa\x8e\xd6\x17\x27\xf7\xed\xe1\xe7\xc5\xbf\x9b\x60\x89\xa4\x42\x80\x56\x51\x90\x98\x72\xbb\x33\xff\xf2\xcb\xcd\xd7\xa2\x24\x9c\x88\xbf\xcb\x53\x59\xc2\x6f\x1f\xe6\x86\xd1\x52\x62\x68\xfc\x1c\x93\xa7\x2b\x74\x9e\x53\x25\xdd\xa5\x38\x2a\x0a\x9b\xad\xa2\xe7\xc6\xb1\x1d\x7a\x72\x26\x6c\x16\x84\x42\xeb\xea\x64\xe9\x96\x87\xd0\x43\x9e\xff\xe8\xa7\xf4\x77\xb2\x4b\x7d\x46\xf9\x01\x15\x27\x04\xea\x45\x23\x88\x9c\xe8\x77\x47\x9e\x21\x76\x27\xd5\x75\xb0\xbc\x06\x0a\x64\x94\xe7\x29\xb9\x47\xf8\x79\xb4\xa5\x49\x7c\xa4\xa2\x9e\x1b\x0e\xb9\xd0\x19\xc0\xf8\x22\xd9\xf4\xba\x06\x04\xbe\x1e\x3c\xe2\x4d\x42\xe7\xe1\x49\xa0\xb3\x83\xa7\x6e\xc2\x7f\xe1\x7f\x08\x14\x66\x10\xb2\x0d\x02\x6c\x53\x5d\x54\x67\xf0\x56\xf2\x57\xb4\xeb\x44\x04\xdb\xb3\xd4\x3c\x44\xaa\x13\xf2\xbd\xae\x55\x24\x8d\x4b\x53\x30\x43\xdf\x80\xf0\x7d\x6d\xa4\x18\x23\xcf\xa8\xa2\xec\x27\xf8\x6a\x38\xf0\x28\xf6\xa2\xf8\x35\xdd\xaa\x91\x11\x35\x49\x11\x85\xd1\xc0\xcb\x88\xf2\x7e\xa7\xe5\x29\x7b\xdf\x11\xcf\xda\x7c\x10\x15\x76\x1a\x1e\x8f\xe0\xe7\xca\x9f\x86\xd3\xbd\x15\x78\xaa\x15\x3e\x70\xa5\x03\x66\xfb\xf9\x32\x3f\xdf\x5c\xca\xa2\x9c\xab\x99\x88\xf1\x71\x92\x3b\xc6\x64\xa7\x96\x7f\x74\x82\x5b\xd8\x64\xc5\x13\x34\xf8\xf0\xbf\x50\x02\x45\x42\x05\x60\x3d\x9c\x55\x0f\x8f\x4b\x9f\xd4\xe1\x85\x7c\x8f\xcd\xba\x56\x76\x7d\x17\xee\x9e\xd2\xb6\x58\x70\x9a\x74\x5e\xd1\xee\xa8\x52\x47\x05\xb4\x07\xab\x60\xe7\xb8\x9c\x6b\xc4\x98\x3f\xc3\x7c\x70\x1f\x0f\x3c\x3f\x8c\xfb\x45\xad\x04\x77\x49\xa3\xd5\x2f\x21\x4f\x80\xc1\xbb\xaa\x58\x65\x6d\xd6\x36\xfd\x94\xbd\x0a\xbc\xdb\x0d\x7c\x25\xdf\x28\x4e\xf1\xbc\x30\x9d\x68\xd8\xcf\xb5\x30\xb2\x4e\xc2\x28\x72\xa3\xcc\x84\xb6\x97\x66\xb9\x65\x50\x1b\x96\x1c\xe2\x3a\xbe\xae\x13\x1d\xa2\x9e\x3f\xd6\x10\x65\xa0\x91\xee\x36\xf7\xd2\x61\x45\x2f\x5a\x02\xe7\xac\x00\xab\x7c\xb2\xbd\xca\xf6\x5a\x9e\x01\x94\xcc\xee\x66\x86\xb5\x26\x84\x78\x7b\x02\x11\xfb\x79\x65\xad\xb2\x70\xd8\x2f\xfd\xad\xd0\xe6\x04\x3d\xc2\xc6\x3e\x4e\xbe\xb9\xe4\xb8\x1a\x8e\x6f\xf1\x38\xd1\xfd\xf0\xff\x9f\x58\x44\x49\xb1\xba\x47\x75\x09\x5e\x56\xba\xed\x27\x31\x5d\x4e\x69\x46\x25\x22\x03\x5f\x96\xfb\x04\xd3\x01\x57\xfa\xda\x48\xb1\x0a\x9f\x45\x98\xe2\xba\xd6\x5d\x1d\xff\x64\xc5\xc9\x2a\x0f\xec\x5e\x3a\x10\xc6\x7a\xda\x05\x6f\x3e\xde\x52\x45\x37\x74\x81\x4b\x6c\xb1\xfd\xc4\x39\xfc\x7c\xb3\x97\xf6\x2d\x7a\x1b\x9c\x1e\xa1\xe7\xe2\xaa\x6b\xae\xeb\xa6\x99\x59\xe5\xb0\x1a\x7f\xf6\xb6\x96\x2d\x7c\xbb\x4e\xce\x9d\xb2\x2a\x69\x9c\xcf\xf8\x6e\x51\xa6\xd7\xc5\x69\x04\x12\x17\x61\x51\x2c\x1f\x80\xb3\x72\xb0\x92\xc0\x0e\xfd\x65\x0d\x5e\xf2\x60\xf3\x95\x61\x27\x0a\x23\x69\x54\xc6\x77\x43\x49\x80\xaf\xdd\xe2\xca\x86\xb1\xcd\x67\x74\x0d\x92\xa6\xc6\x69\x7e\x79\xb6\x1b\x21\x8c\x67\x77\x2d\x50\x99\xd1\x5b\x2a\xff\x5e\xa4\x59\x26\xa4\xff\xae\x4b\x71\x61\xc1\xc9\x34\x3f\xa9\x34\xde\x99\x17\x91\x8b\x9c\xa8\x33\xef\x68\x29\xd4\xe8\x23\x04\xfa\xc2\xa1\x73\x87\x96\x23\xb2\xff\xff\x18\xbf\x0e\x3b\x72\x55\xf5\x00\x6c\xaa\xde\x27\xe6\xef\xe4\x12\x01\x16\x13\x62\xde\x63\xaa\xe8\xc8\xe9\x0f\xe1\x47\xff\xfc\x64\xdb\x0a\x91\xe6\x11\x83\xdd\x0b\xb3\x3e\x5a\xf3\x91\x9b\x8a\x0d\x59\x0a\x2b\x32\x31\x2d\xbc\x39\x7e\x9f\xeb\x30\x8c\x30\xfa\xef\x68\xca\xda\x3b\x75\xd2\xde\xf9\x70\x30\x00\x21\xd1\x41\x9e\x61\x78\x72\x7c\x3d\x81\xab\xcf\x53\x6e\x3b\x86\xc3\xc3\x72\x48\x7c\x03\xab\x2b\x25\x69\x45\x1b\x5f\x27\x86\x10\x75\x2c\x13\x09\x02\xc5\x71\x52\xe3\x48\x4e\x06\xca\x12\x71\xfa\x5e\xe4\xf3\xe8\xcf\xf8\xc6\xc5\x11\xf9\xb2\x1d\x14\x51\x98\x73\xea\xc8\xc5\xf0\x7e\xca\x30\x86\x0a\xcc\x77\x90\xcb\x33\x37\x2b\x5e\xd7\xe2\x6c\xf3\x15\x13\x2e\x93\xcb\x06\x14\xd4\x05\x45\xee\x76\x2d\xf0\x7c\x56\xef\x55\x6c\x21\x71\xfb\x66\xb6\x13\x85\xbe\xad\xdb\x55\xc5\xdc\x9a\xf1\x54\x9a\x02\xca\x99\xf6\x40\x3e\xc0\x91\x00\x0d\xd8\xd2\xbe\xf7\x87\x23\x75\xca\x54\xa7\x72\x7e\xbe\x69\xda\x29\x61\x21\x9c\x23\xbf\x46\x66\x4b\xa8\xa9\x9d\x1c\x78\x86\xb6\xe9\x09\xc1\x22\xce\xcb\xf2\x4d\x25\xa2\x9b\x3b\xdc\x4c\x4c\x9f\x8e\x0e\x71\x55\x54\xb2\xe7\x8c\x3a\xf3\xe2\xa8\x6b\x8b\xa8\x6f\x51\xaa\x76\x8c\x1b\x8e\xb6\x18\x1e\x33\x3e\xf7\x81\x3a\xff\x3a\x51\x3e\x88\xcd\x6a\x3e\xad\xd4\x03\x80\x67\xe6\xeb\x91\xcf\x9c\xb1\x39\x17\xa0\x72\x85\x7e\x64\xae\xd9\x31\x85\x61\x00\x84\x04\x51\xc8\xc7\x71\xf7\x02\xdf\x38\xa0\x64\x37\xcd\xfa\xc3\xd8\xbb\x4f\xec\x82\x06\xde\x1b\xbe\x58\x89\xd3\x5e\x98\x9d\x6b\xe6\x36\xe9\x6c\x4b\x64\xfc\xa1\x3a\xb9\xfe\x70\xf4\xb0\x04\x03\x8b\xb3\x3f\x47\x7f\x04\xdf\x18\x11\x1a\xe6\x12\x80\x1e\xc7\x23\x71\xf0\x79\xe1\x51\xa5\xbc\xdb\xa1\xad\x3b\x10\x97\x71\x4a\x0b\x4e\x29\xeb\xc7\xd8\xdc\xec\x48\x13\x5c\x06\x4e\x1b\xa7\xe5\xa4\x4b\xb6\xe1\xb8\x5d\x76\x11\xac\x07\xe3\x76\x6f\xb4\xf3\x2b\x6c\xe0\x2f\x01\x8f\x84\x78\x00\xe0\x4b\x78\x36\xdf\xe7\xac\x18\x82\x9d\x9d\x48\xd0\x21\x79\xf8\x1d\xb8\x5c\x30\xd5\x4f\x8d\x7d\xf3\xe0\xc7\x9a\xa4\x4c\x3a\x11\xb1\x61\x8e\x06\x3e\x6a\x60\x1a\x25\x91\x17\x2e\xbd\x3c\xf8\xba\x3f\x43\x80\xc4\x90\x7b\x52\x52\x74\x99\xfd\x5f\xf9\x25\x0f\x78\x38\xfc\xfc\xa4\x1e\xb5\x4b\x23\x2d\x0a\xdb\xe7\x0c\x11\xb6\xb2\xbe\x4a\x30\x21\x81\x4b\xbe\x01\xfb\x75\x95\xa3\xf2\xf0\xf3\x84\xfb\xb1\xd9\x0a\x97\xff\xb5\xec\xb1\x3c\x70\xb5\x51\x8a\x95\x54\xdd\x72\xc0\x1b\xdc\x50\x1a\xdf\x37\x94\x4e\x70\xf9\xc7\x53\xda\x15\xf3\x1d\x1a\xb7\xb0\xd3\xe1\xc0\x9e\x74\x5c\xe0\x9d\x88\x4d\x26\x72\x19\x3b\x5a\x3e\xaf\xb1\x63\xec\x12\x25\xc3\x25\x3a\x85\xdd\x93\x9e\xa5\xc3\x8a\xaf\x6b\x15\xdc\x32\x93\x74\xd2\xbe\x9c\x01\x42\xbb\x5f\x4e\x28\x5f\x7b\x41\x53\xaa\x47\x4d\x0a\x6e\xd0\x00\x51\xaa\xe1\xa7\x4f\xd0\x78\x3b\x72\x38\xd7\x5a\x75\x56\x8b\x39\xe0\x74\x82\xff\x7b\x5e\x75\x43\x9a\xbe\xcd\xa2\xd0\xec\xf1\x98\x2c\x86\x8c\x4f\x74\x41\x38\xc5\x16\x2f\x22\xab\x1b\xc6\x34\x78\xff\x6d\x2c\x50\xc7\x71\xb2\x7f\xce\xe9\x33\x95\x5b\x48\xf8\x4e\xbc\xe5\x5a\x8a\xfa\xfd\x28\x5c\xce\x41\x57\x24\xf2\x42\x0d\xa7\xc8\x08\x56\x0c\xa1\xda\xa9\xb1\xbf\xed\x72\x24\xa5\xdc\x85\x33\x6a\x47\x4b\x65\xbe\x39\x95\x82\xbc\xcc\x8f\x2b\xdf\xf0\xf7\x48\x1c\x38\x12\x56\x14\xc7\xe6\xe4\xc8\x59\xd6\x55\x39\xab\x1d\x0d\x4c\x56\x44\xb9\x49\x66\x68\x06\x26\x46\x17\xb3\x7d\x72\xa4\xa2\x5e\xb4\x0b\xf0\x3f\x68\x42\xc0\x1d\xe3\xaa\x68\x53\xb3\x3b\x4c\x3a\xbb\x28\x19\xb9\xa1\x3b\x2c\x8e\xd3\x08\x00\xaa\xb5\xa7\xa5\x24\xb3\xce\xea\x8e\x42\xac\x89\xad\x8d\xd1\x84\x70\x02\x61\xd6\x05\x4f\x23\x08\x0d\x7a\x51\xbe\xa9\x40\x9f\xf6\xef\x6f\xd2\x3b\x22\xae\xa5\x25\xed\x04\xa8\x1d\x5c\xf6\xf4\xc8\x53\xda\xbe\x42\xcd\x5c\xd3\x0d\x45\x05\xae\x0c\x24\xbc\x5b\xb8\xa3\x6f\xa2\x0b\xf1\xfa\x48\x77\x94\xb7\x4d\x61\x49\xe9\xfd\x90\x17\x87\x9f\x9f\x77\x37\x75\xd2\x43\x2b\xb6\xb0\x19\x87\x54\x75\xfc\xf1\x8a\x9e\x23\x4e\x8f\xa0\xc0\x2e\x9d\x96\x8a\x3c\x10\x9b\x05\x8b\xe4\x3a\x19\x78\xbe\xae\xac\x11\x62\xe9\x2e\x0a\x91\xa1\x46\xe2\x61\xa7\xe2\xe2\xb9\xa7\xd4\xc2\x3e\x50\xd9\xca\x24\x85\x57\xf9\xe2\x41\x07\xc6\xf6\x95\xcf\x5a\xa9\x7c\x93\x2c\x49\xe9\xa8\xae\x92\xe9\xbf\xda\x44\x99\x80\x29\xb9\xaa\xa8\x48\x18\xae\x7a\xfc\x89\x50\xf2\x22\xb1\xe6\x14\xe1\xe7\xe7\x79\x11\xcd\xd0\x6b\xc0\xd6\xb3\xc8\x0c\x4e\xaa\x2a\x6b\xf3\x81\x05\xea\x93\xca\x39\x04\x7e\x69\xeb\x28\x52\xe7\x47\x1d\xbd\xda\x30\xe9\x94\x73\xe3\xfa\xb2\x71\x30\x42\x60\x15\x59\xc2\x19\xad\xe0\xf7\x46\x65\xa4\x0f\x2e\x1e\x2c\x2f\x32\x36\x8b\x98\xd1\x73\xd8\x39\x7c\x53\xa1\x12\x7a\xf9\x65\x7e\x2c\x49\x4e\xca\xf1\xea\xfb\x60\x2e\xb9\x27\xec\xd8\x38\x5a\x81\x74\xa6\xe2\x52\xf8\x3d\x15\x4f\xfc\x9e\x12\xa3\x4a\xa2\x70\xd9\xc6\x70\x4e\x50\x5a\xba\x80\x68\x83\x6f\x9c\xcb\x9c\xa7\xc3\x98\x2d\x08\x32\x07\x60\xed\xe5\xeb\xb1\x4f\xe9\x75\xd2\xa5\xbe\x21\x2f\xd7\xf5\x58\xcd\xcf\x73\x2d\xf8\xae\xda\xe8\xe7\xea\x30\xf1\xa5\x63\xde\xf0\x58\xab\x33\xf4\x59\xbe\xae\xcb\x3d\xd8\x57\x07\xa0\x0f\x70\xd1\xe1\x59\x15\x1d\x9e\x75\xd0\xf8\x04\x84\x3e\xde\x39\xfa\x20\xf0\x64\x30\x1f\xd4\x16\x98\x0b\x02\x58\xd2\x51\x2a\x04\xb2\xfe\xa5\x36\x95\x9c\xc0\xf5\x8a\xbb\xbe\x7f\x7f\xd3\x26\x61\x3a\xcc\xcc\x92\x9b\x06\x11\xd6\x6e\x28\xd5\xd7\x1a\x0b\xb9\x64\xfb\xdb\xed\xb4\x62\xbd\xdc\x0e\x8c\xfa\x6a\x33\xb7\x16\xd9\x01\x58\xdd\x0f\x46\x1e\xb8\x7d\x72\xa4\xa4\xa6\x37\xea\xa8\x17\xb2\x54\x78\x0b\x5d\x43\xf3\x82\x18\xf6\x6f\xab\x6a\x5c\x91\x45\x4b\x4b\x2c\x01\x84\x60\xf0\x1e\x8e\x4d\xbe\x51\xf6\x28\x4e\x43\x50\x50\x0b\xa0\xb9\xb4\x40\x82\x67\xae\x99\xf0\x8e\xe9\x0f\x14\x39\xdb\xa6\xaa\x30\x6c\x8e\xf6\xc8\xda\xb3\x94\xbf\x65\x01\x6e\x2a\x4f\x63\x4d\xb0\x88\x9b\xb0\xe3\xd4\x79\xd2\xe9\xb0\xc8\xa3\x8e\x9d\xf1\x5c\x4c\x30\x6b\xc2\x6a\x53\x5a\x45\xb4\xc1\x80\xac\x87\xf9\xe4\xe8\x8b\xb7\x8e\x29\x43\x1e\x47\xc9\x32\xcd\xa6\x6f\x3a\xde\x41\x10\x7b\xbe\x1e\x3f\xad\x8a\xfd\x83\x61\x3b\x8e\x42\x93\x30\x68\x00\x05\x2a\xf0\x55\x61\xc7\x5c\x53\x4c\xbe\x4c\x3d\x2e\x4f\x24\x6b\xb6\x1d\x75\x3a\x9c\xbc\x41\xf9\x08\x15\x50\xbe\x0e\xa4\x6f\xcb\x84\x61\x3a\x4c\x0a\xd3\x16\xe3\xad\x95\x04\x98\x46\x69\x82\x28\xcb\x7d\xd0\x17\x4c\xe9\x6c\xa3\x48\xe1\x6b\x5f\x6e\x79\x53\xb6\x77\xac\x38\xee\xc7\x70\x88\xe8\x0b\xbf\xf1\xf9\x71\x4d\xdb\x72\x3e\x48\x0b\x17\xe9\x20\x27\x76\x5c\xe3\xc6\x8e\x3b\x97\xb3\x0c\xe6\x1a\x3e\x75\xc5\x3c\xcf\x7c\xa3\xea\x9b\xb6\x33\x0c\x11\x3c\x95\xc7\x05\xcb\x05\x23\x93\x2a\xda\xc1\x3e\xcd\xdf\xb5\x0c\xfd\x03\x86\x80\x53\xa9\x82\xbd\xd7\xf1\x02\x78\xf1\xa5\x81\xd0\x47\xf0\x8f\x21\x65\xe3\xa2\x73\x87\x83\x3e\x5e\xbb\xb4\xbe\x31\x2c\x8d\x67\x46\x41\xb6\x08\xd2\xd3\xb3\x61\xff\x41\x53\x1a\x5f\x76\x02\x59\x43\x66\xb8\xf2\x44\x5e\x66\x29\xb1\xac\x62\xe1\x98\xd0\x7c\x46\x4f\xd5\x9b\x4a\x27\x3d\x5d\x1a\x42\x6b\xcf\xf5\x0b\x7a\x09\x95\x07\x08\x3d\xa4\x33\xfe\x61\xe7\x22\xfd\xed\x27\xfd\x9e\x7e\xa8\x55\x6e\x1d\x97\x1f\xf3\x54\xce\x6b\x41\xe3\x97\x0f\xf9\xcc\x93\x4b\x76\x5e\x21\xa7\x01\x2e\xeb\x6d\x44\x0f\x18\x29\x89\xbf\x30\xaf\xb7\x91\x91\x85\x57\x7e\x92\x5c\x62\x98\x4c\xae\x5c\xa2\x48\xc7\x15\x4f\xc9\x99\x93\xd5\x82\x3f\x75\x83\x8a\x22\x82\x25\x6b\x38\xe2\xc9\x3d\x63\x85\x04\xbf\x8b\x70\x95\x1b\xbb\x02\x0f\x0c\xbe\x5b\x27\x57\xd0\x37\x11\x82\x1a\xa9\x95\x34\x9c\xc0\xcf\x7a\x4d\xde\xf3\x50\xd3\xc4\x29\x73\x9f\x20\xbb\xf4\x17\x81\x67\x4e\xbe\xaa\x0a\x7b\x1b\x0a\x3c\x7d\x24\x2a\x12\xe8\x4c\x4d\x79\x5e\xf4\xe3\x4a\x30\x07\x5c\x60\x48\x9d\x56\xa1\x34\x2f\x1e\x6c\x0a\x76\xac\xa1\xf0\xaf\x6b\x70\xe1\xf8\x46\x61\xfe\x3b\x69\x3f\x4a\x0c\xc8\xe2\x0e\xba\x59\xf1\xc6\x13\x27\xb2\x68\x58\xeb\x04\x5b\x6c\x32\x5a\x06\x4e\x7b\xa7\x9c\x49\x37\xde\x73\x87\x39\xea\x3a\x89\x49\xc1\x6e\xdd\x39\x56\xfd\x9b\x57\x46\x9e\x15\x06\x92\x3e\xf8\x99\x3b\x74\xde\x80\x91\x6c\x27\xc3\x66\x00\x99\x3e\xa3\x8d\xdd\x24\x44\x95\x56\xaa\x63\xb7\x28\xd7\x30\x92\x82\x4c\xde\x21\x72\xdd\xe5\xd0\xe1\xc5\x40\x75\x0d\x9f\xf6\xa2\x56\x42\xd9\x84\xfd\xc7\x5f\xdd\x55\x1a\x7d\x83\x34\xcf\xa3\x76\xbc\x4a\xfd\xee\x08\x1f\xd0\x16\xcd\xd7\x0a\xc3\x6d\x5f\x1d\xa4\x59\x91\xef\x2e\xff\x15\x5b\xe3\x7e\xa0\x9c\x60\xce\xea\xe1\xa1\x8e\x8f\x3c\x40\xfc\x6d\x55\xc9\x03\x58\x02\x99\xe1\x2d\x45\xbf\xb7\x11\x28\xf2\x9e\xdf\x0c\x84\x80\xbe\x1d\x9b\x70\x79\x82\xa3\xd1\x71\xb2\x78\xee\x9c\xe0\x73\xfe\x6d\xb2\x34\xb7\xe1\x90\x00\xd9\x33\xbe\x9e\xf5\x10\xda\x33\x15\xad\xf2\x41\x0f\xf7\x2f\xdf\x00\x33\xfc\xad\x91\x67\xe7\xb9\x5d\x59\xfb\x2f\xcc\x3e\xd7\x0c\x33\xf3\x1a\x73\x54\xe2\x28\x05\xa4\x15\xae\x0e\x70\x79\x28\x4f\x9d\x52\x75\xfe\x4e\x64\x58\xd6\x4b\x68\xff\xe9\x0b\xb0\xf0\xa1\x6e\x8f\x43\x7a\x4d\x39\x71\xdc\x05\x0a\xab\xfa\x74\xcb\xe7\xd0\xdb\x36\xb1\xdd\xa8\x0c\xb3\x28\xba\xc6\x70\x23\x20\xc3\x2b\x31\xc7\x1d\xdf\x50\x90\xc1\x7f\x54\x79\xa5\x67\x9e\x69\x9a\x61\xd1\x4b\x33\x04\x85\x82\xaa\x2c\xbf\x4b\x10\x99\x75\x16\xa0\x9d\x59\x83\xf4\xac\x94\x7a\x55\xeb\x30\xd7\xd7\x70\xf8\x56\x91\xab\x87\x9f\x27\x69\x32\x4d\x02\x7d\x47\xf5\x0c\xdc\x19\x79\x74\xd7\x20\x2d\x20\xa1\x14\xaf\x4e\xf9\xba\xe1\x45\x25\x3b\x88\x36\x44\x91\x0d\x77\xfc\x1b\xb4\x4e\x9d\x40\x15\xe7\x11\x28\xc7\x27\x39\x85\xba\x02\x52\x56\x46\x9f\x9c\x3b\x00\x52\xe0\x78\xa0\x48\x81\x1f\x6e\x29\x6e\xf7\x7d\xe3\x9f\xab\xc9\xe3\xbc\x32\xcc\xa2\x9c\x52\xcf\x69\xc2\x99\x22\xac\x8c\xd3\x6a\x95\x9c\xae\x52\x8a\x3e\x7f\xa8\x49\xc0\xed\x4c\x79\xe7\x57\x94\x77\x7e\xa5\xd2\x17\x70\xf8\xf9\x66\x7a\x04\x25\x0a\x16\xe4\xa0\x5f\x10\x71\x8e\xed\x0f\xe7\xa8\x2d\x56\x6c\x52\x0c\xd1\xbd\xe3\xb0\x6c\x8c\x6a\x11\x4a\xdd\xed\xb6\x97\x5a\xd9\xc2\xd8\x44\x7f\x95\xbb\xfd\x88\x62\x7e\x9f\xf1\xf3\xc3\x6c\x39\xae\x35\xd8\x65\x96\x1e\x6d\xf9\x64\xc2\xfb\xd8\xfa\xcc\xf3\x5a\x7b\xe4\x10\x11\x2e\x8a\xf6\x8e\x94\x7f\x22\xb5\xe4\x1a\x2a\xff\x88\x1e\x0b\x7b\x73\x67\xcb\x77\xbd\x57\xd5\x8a\x88\x75\x36\x1c\x66\x3e\xfe\x03\x1e\x16\xe2\x85\x7c\xad\x40\xfa\x99\x85\x82\x99\xc6\xb1\x9c\xa0\x94\x2f\x5f\xbb\x24\xdd\xb0\x30\x3d\x93\x48\xd6\x1b\xab\x67\x4d\x2f\xa5\xb5\x5a\x2e\xd5\x25\x9b\xf5\x9d\x1f\x0c\x43\x78\x96\x0b\x70\xa8\x94\xb0\x48\x07\xb3\x8b\x04\x8a\x65\xf2\x5d\x25\x13\x15\x25\xdd\x78\x68\x93\xd0\x76\x1a\xe5\xd6\x97\x3c\x1f\xa5\x74\xf9\x26\xd8\x9e\xaf\x97\xf5\x31\xc8\xd2\x50\x96\x21\x1f\xe2\xba\xca\xb0\xa1\xda\x8b\x8b\x2c\xb2\x9d\x5d\x0d\xd7\x68\xbd\x1e\x4c\xe2\xdb\x9c\x21\x65\xdd\x4d\x39\xb1\x7d\x9f\xc0\x27\xe4\x32\xf1\xb5\xc6\xc5\xa7\xe1\x32\xc5\xfc\xcf\x6d\x11\xdb\xc1\xd6\x39\xc5\xe7\x11\x47\x36\x99\x52\x4a\xa1\xe7\x15\x75\xf2\x5d\xcd\x37\xee\xac\x41\x37\x33\x7d\x53\xa4\x5c\x18\x67\x60\x0d\xde\x4a\x50\x36\xb5\xdd\x9b\x51\x52\x6e\x96\x34\x8b\xa4\xe1\x8b\x1d\x57\xfa\x11\x71\x62\x3f\x8b\x43\xa6\x1d\xe5\xbd\x74\x80\xcf\xe1\x40\x38\x87\x9f\xe4\x1b\x07\x4d\x33\x99\xe9\x47\x9d\x29\x9f\x72\x00\x2c\x02\x68\x8f\x9b\xaa\xe8\x7d\x56\x1f\x28\x43\xfb\x30\x19\x59\x40\x8f\xef\x8f\x54\xe8\xc4\xd6\x1f\x01\xdc\xbf\xd2\xb2\x2e\x1f\x8d\x3c\xd1\xd4\x6f\x93\xeb\x85\xff\x8f\xc4\x24\x8e\xe4\xbd\xd0\xbd\x47\x18\xba\xe5\x21\x46\xbf\xfd\x65\xe0\xce\xb8\x5b\x7e\xbc\x27\x6a\x0e\x32\xdb\xfd\x2f\x9b\x73\x5f\x54\x2d\x98\x9b\xa3\xa9\x43\xff\xf0\xeb\x9c\xfb\xba\x30\x6a\xfc\xca\x2f\xf1\x76\x17\xa1\x1b\x38\x26\xf7\x47\x5e\x13\xe6\x83\xd1\xce\xaf\xb8\x3e\x2d\x9f\xb4\xba\x07\xf0\xb2\x02\x9a\xcc\xb9\xbd\x43\xef\x87\x84\xf0\xb3\xe4\xa6\xb3\x6c\x1a\x0e\x21\x21\x16\xf1\x3c\x2d\xbb\x81\xf2\xc6\xc8\xef\x20\x58\x90\x23\xdd\xf7\xdb\xfe\x77\x60\x85\x90\xa0\x7e\x7f\xe4\xca\x5e\x6f\x3e\x49\x8a\x0e\x8e\xc9\xb3\x1c\x4f\xd1\xaf\xf2\xc9\xf6\xb3\x24\xf1\xc3\xd2\x36\x8a\x07\xf3\xea\x48\x51\x4d\xfd\x57\xcd\xd6\x13\xba\xc1\xa2\xeb\x34\x7d\xe1\x48\xdf\xa1\x87\xe6\xeb\xe0\x51\xe7\xcd\xe6\x06\xfd\x27\x52\x92\x53\x79\xf8\xda\x0e\x08\xe2\xe8\xc3\x26\x71\x53\xe1\x52\xcf\x77\x03\x25\x61\x55\x31\x8a\xfb\xf7\x37\x13\x7b\x24\x1f\x64\x11\xd3\xbd\x60\x38\xd1\x4f\xca\xd7\x2e\x26\x7b\xc5\x66\x69\x1f\x09\x07\x64\x4b\x79\x8d\xb3\x28\x5f\xa0\xc5\x7d\x6b\xd2\xa8\x3d\x33\x18\xd8\x84\x4e\x76\x7c\xfc\x8e\xca\x2a\x5f\x56\xf2\xe8\x3a\xce\xcd\x6d\x98\xd9\x22\x86\x76\x9e\x0b\xf6\x5f\x98\x65\x73\xc0\x94\xd5\xf0\x77\xee\x3b\x55\xae\x01\x67\x88\x1d\x31\xcc\x82\xd3\xe3\xbc\xec\xf2\x76\x6d\xdb\x4e\x91\x61\x71\xbd\xd7\x8a\xe6\x5d\xf7\xc6\xd8\x84\x3a\x75\xf9\x88\x17\x01\x4c\x5a\xa4\x92\xf6\xae\xb0\x67\x52\xca\xce\x14\x53\x3e\xe7\xfb\xa9\x92\x6c\xff\x71\xe0\xeb\xc4\x67\xd4\xa1\x93\x94\x81\x8c\xb5\x90\x28\x57\xd8\xd0\x83\x0e\x3d\xe3\xca\x4e\x36\x5b\x61\x06\x5a\x04\x6f\xf7\xb1\x6b\xb0\x9f\x1e\x6f\x29\x94\xec\xce\xb1\xee\x3a\x58\x4a\x8b\x3d\x54\xf2\xe4\xf6\x39\xd5\x31\xfe\x26\xad\x64\x54\xc5\x2f\xa3\xce\x84\x08\xf3\x24\x07\xb5\x58\x5e\x60\x91\x41\x3a\xe8\x16\x2c\x0e\xc0\xba\x4c\x5e\x09\x14\xf0\x3d\x5a\x0f\x38\xaf\x36\x15\xf2\x37\x4e\x0d\x36\x81\xaa\x25\x1e\x74\x5c\x8f\x75\xd4\x42\x99\xcd\xcb\x58\xd0\xb4\x59\xaa\x99\xb3\xa4\x13\x19\xd3\x3a\xda\x01\xd3\xb1\x49\x1a\x0a\x59\x81\xee\x94\x96\x0e\x6a\x27\x71\x40\x4d\x05\x29\xfd\x9d\x6b\x12\xf7\xc1\xcd\xf9\x3a\x18\x47\x3f\x8a\x05\x42\x2b\x52\x52\x8d\x05\x2f\x31\x25\xf3\x54\x64\x36\xe9\xac\x62\x77\xc2\x46\x5c\x50\x2a\x06\xa8\x4a\x23\x1a\x39\x5d\x9b\x6c\x1d\xa4\x71\x14\x32\x0b\x34\x2c\x22\x38\xa2\xf8\xda\x95\x21\xbb\xa6\xe8\xd9\x6c\x57\xf9\x38\x1a\x4f\x84\xc7\x99\x69\x95\xe6\x4a\x0a\x00\x64\xc1\x59\xd3\x84\x9e\x05\x66\xf7\xec\xe4\x21\xa9\xa3\xe4\x8e\x89\x1f\x52\x2c\xef\x90\x0d\x74\x04\x98\x9e\x9c\x84\x79\xb1\xf9\x86\xf6\x29\xce\x99\x0b\x23\xdf\x44\x82\x04\x1f\xfc\x80\xb5\x8a\x73\x5c\x46\x5d\xdd\xcc\xe4\x82\xdf\x56\x48\x6c\x07\xcb\x56\x31\xea\xc0\x90\x60\x03\x65\x9a\x70\xc2\x6c\xe9\x5e\xcd\x2d\x18\x70\x16\x1b\xa1\x1f\x16\xe1\x11\xc9\xb8\x99\xa4\x83\xde\x76\x47\x8c\xe3\xf9\xae\x2f\xa9\x3c\x93\x09\x21\xed\xfc\x90\x0f\x74\x8f\x2b\x92\xb4\xff\x03\xeb\x98\xff\x41\x57\x42\xd7\x95\x26\xf7\xaf\x05\xbe\x12\xca\x7e\xb8\x14\xbb\xea\xfc\xe0\xa8\xef\x90\x42\xf0\x16\x2e\x29\x42\xd7\x4b\x2a\x74\x22\xe1\xf5\xfe\x20\x16\xf5\x77\x16\xfe\x0f\x7c\x69\xea\x4c\x45\x68\x63\x7e\xbe\x39\xb0\x45\x96\x4a\x1b\x18\x0d\x02\x02\xa6\x0d\x05\xb8\xde\x50\xda\xb2\xfd\x74\x45\xe0\x41\xf0\x88\x40\xa2\xc4\xd7\x95\x57\xf8\x2a\x11\x7b\x47\x78\x85\x97\xf8\xa4\x03\x40\x95\xaf\x2b\x99\x9f\xc5\xd9\xe6\x91\x2c\x02\x0a\x89\x4e\x6b\x64\xf4\xde\xa4\xa9\xe3\xeb\xda\x68\xae\xb0\x71\xcc\xf8\x1a\xae\x90\x62\xc9\x48\xb9\xd4\x2f\x99\xc2\xbc\x5a\x9a\x92\x19\x9a\x22\x39\x71\xc8\x5c\x22\x09\x79\x54\x51\xee\x1f\x25\x8b\x88\xac\xe5\x45\xca\x07\x49\x83\x94\x2f\x14\xc5\xd1\x0a\x25\x8a\x17\x45\x94\xfb\xa4\xa2\x99\x63\x04\xad\x70\xca\xc0\x8c\xf2\x9d\xe2\xbe\x69\x47\xc5\x8c\x6f\xb5\x04\x26\x8e\x65\xa2\x47\x8a\x84\x68\x0d\x6e\xbd\x54\x0d\x7c\x9a\xe5\x3f\x56\x6c\xc7\xd7\xe7\x9a\x65\x30\x5d\x70\xa1\xc6\xd1\xf0\xb8\x6c\x13\x24\x2c\x84\x75\x58\x76\x43\x9a\xbe\xc6\xc6\x86\xd5\xdb\x54\xe2\xe5\xbc\x3b\x3a\x29\x3c\xdc\xdd\x70\x3a\xda\x7b\x5a\xf4\x5c\xf2\x11\xd5\x9b\x74\x5e\x91\xdf\x30\xd6\x10\x39\xcf\xcb\xa3\x8a\x9a\x92\x70\xe7\x78\xd1\xba\x4b\x75\x0d\xf2\x71\x7a\x04\x2a\xfa\x42\x3d\x4e\xdf\x2a\x12\x96\xe5\xc8\x09\xd0\xbb\xe1\x54\x82\x6f\x28\x5a\x84\xeb\xc1\xd3\x82\x8c\x4c\xe3\xd8\x66\xa4\x09\xcd\x35\x1c\x66\x35\x9a\x60\x38\x72\xae\x7b\xb2\x64\xe3\x94\x8e\x2e\xd5\xea\xe8\xfa\x1e\xdd\xb7\xf6\xa3\x24\x4a\xc2\xb4\x3f\x18\x16\x52\xce\xc5\x8b\xdd\x57\x4c\xa7\xf7\x47\x5f\x70\x31\x4e\x94\xb1\x1c\x4a\x54\x44\x96\x79\x05\x24\x11\xa0\x13\x04\x35\x45\xa2\x95\xc8\x1e\x99\xf2\x68\xbd\x7b\xf4\x9a\x13\x68\x3c\x69\x41\xdd\x7e\xb0\x52\xcc\x43\xd9\xb6\xa1\x7b\x7b\x29\x1d\xf9\xf4\xcc\xed\x89\x86\xc5\x61\x5e\x3c\x55\x8e\x2f\xd6\xdf\xe3\x63\xa5\xe6\xbd\x41\xa7\x3d\xdc\x80\xa9\x96\xd6\xba\x98\x86\x8b\x86\xf9\xd9\x4d\xc0\xef\x09\x30\x02\xf3\xac\x63\x07\xc2\x38\xbf\xa9\xc1\xe5\x0f\x90\xdd\x66\x06\x5e\xa5\xfa\xf1\xbf\xd3\x7e\x44\xba\xf3\xec\x36\x4c\xca\xa2\xd0\xf4\x36\xa8\x10\x85\xe8\x81\x8b\x36\x8c\xf2\x01\xee\x0b\x19\x68\xac\x72\x44\xcb\xf7\x75\x73\xfa\xbf\xf1\x81\xdb\x60\x10\x5b\x96\xe6\xc0\x72\xde\x52\x02\xec\xac\x6c\x8e\x6f\xbb\xa2\x91\xe3\x69\xd1\xcb\x89\x21\x87\xba\x04\xe1\x73\xf1\xc2\x41\xb7\xce\x3b\xaa\x6a\x07\xb9\x66\xa1\x59\xf4\x6c\xb4\x52\x33\xb5\x33\x1e\xb6\x78\x8d\xf6\x8c\xd3\x3e\x5f\x9c\x9d\x48\x95\xca\xb1\x4b\xcb\x0f\xce\xd5\x69\xa5\x47\x5b\x0c\xb3\x04\x1a\xc0\x6c\x20\xdf\x55\x88\xf3\xd3\x81\xef\xc8\x9f\xa6\x09\x73\x30\x6e\xa7\xf3\x09\xde\x0f\xfe\x7b\x25\x73\xb3\x94\xa5\x47\x8a\xde\x1e\x45\xc0\xfc\x2e\x66\x16\x39\xa1\xdb\x23\x45\x95\x47\x35\xec\x2d\x6a\xf6\x7c\x69\x0b\x0b\xc8\xf1\x86\xba\xc0\xfe\x3b\x23\xc5\x35\xf3\x1d\xbc\x0f\x16\xfb\xef\x8e\x9e\xda\xb6\xa6\x7f\xf1\xc5\xe6\x33\x8d\xc6\x33\xcf\x48\x4f\x3d\xa6\x58\x1a\xec\xa5\xba\x37\xb0\x59\xd8\x8b\xd3\xcc\x14\x76\x9a\x96\x16\x56\xed\x71\xe5\x0a\x7d\x3a\x52\x08\xe5\xd3\x4a\x75\xe3\x6e\x4d\xf3\xd2\xc1\xe6\x52\xda\xe1\x9c\x81\xc3\xe1\x97\xf3\x2b\x38\xfc\xed\xa6\x79\xff\xfe\xd2\xc3\x49\x42\xc1\x50\x4b\xc1\x0e\xbb\x46\x6a\x79\x7e\x4c\x7b\xe9\x30\xb7\xf9\x6e\x1a\x46\x14\x17\xc6\xf4\xac\x42\x28\xe4\x23\xdc\x4f\xb1\x0d\x50\x48\xda\x52\xa3\x78\x85\xe0\x7e\x22\xd2\x45\x83\xe8\xa8\x18\x16\x67\xdd\xcd\xe8\x73\x1a\x40\x14\x46\x71\x64\x8a\x34\x5b\x45\x53\x36\x2a\x68\x57\x74\x39\xed\x8a\x8a\xd4\x96\xe2\xc8\x76\xfa\x26\x51\xfd\x08\x97\x94\x40\xe0\xa5\xfa\x44\xa3\x19\x76\xa8\x9b\xd5\xf5\x8c\x77\xe0\xa5\x49\xec\x59\xd3\x5e\x19\x95\xd1\x58\xa1\x42\xb1\xfb\x8a\x27\xe4\x7e\x1d\xb0\x26\x8b\xf2\xe5\xd5\x86\x62\xd9\x87\xdb\x2b\x34\x13\x4f\x28\xfd\x8c\x41\x96\x9a\xb0\xb7\x4b\xe9\x81\x32\x83\xac\xf4\x0e\xfa\xaa\xfd\x31\x9d\x5f\xa1\x47\xc0\x59\x7c\x5d\x21\x19\x6e\x6e\x97\xd5\x2a\xe3\x92\x85\x85\x43\x4f\xa8\x98\xee\x3a\xd2\x12\x4e\xb1\xce\x23\xc5\xfe\x22\x50\x95\xc8\xbf\x40\x41\x08\x26\xee\xdb\x0a\xf2\xfa\x00\xb5\x29\x17\x84\x38\x47\xfb\x06\x5c\x52\x21\x13\x2b\x37\xb5\x3b\x25\x17\x05\xa2\xf0\x7d\xcc\x27\xcc\xeb\x29\xc5\xc2\xf5\x46\xe0\xf3\xd9\x2c\x53\xe9\x3c\x7e\xcf\xa2\x89\x22\x99\xa4\x54\xb6\xaf\xf4\xc3\xcf\x37\x8f\x58\x0a\x4c\xb4\x8a\x04\xb1\x93\x88\xa2\x84\x0e\x33\x86\x26\x99\x56\x5e\xf4\x69\x0c\x0c\x22\x1d\x44\x4d\x7c\xad\xfa\xdf\x4e\x57\x90\xd3\x2f\x1e\x6c\xe6\xb6\x00\x40\x1f\xeb\xfa\x41\xa0\x2a\x40\xcc\xc5\x0f\xe7\xe1\x13\x17\x02\x42\x8f\x05\xd9\x0d\xac\xd8\x3b\xc1\x84\x70\x8d\xeb\x3a\x3c\x53\xb7\xa1\xf3\x7e\xba\x2c\xae\xb1\x44\x9a\xf4\xf4\x12\x6a\x3a\x80\xbd\x4d\x0a\xb4\xfa\xb0\x57\x49\x33\x29\x1e\x66\x0d\x81\x26\xb5\x0b\x44\x08\x87\x54\xd3\xa0\xe3\x4c\x3a\xa7\x64\x4d\x73\x6b\xfb\x54\xae\x93\xa3\xb3\x1c\x75\xa4\x06\x01\x18\xc2\xef\xfc\x34\xf0\x38\x8f\xdb\x58\x56\xf2\x47\xb4\x18\xf8\x26\x50\x64\xfb\xeb\xc1\x04\x39\xb4\x07\x35\xc5\x71\xba\xda\xc1\xb3\xd5\x33\x33\x8b\x53\xf4\x57\x46\xcb\xfb\xf4\x2b\x74\xf2\x29\x5f\x68\xe7\x64\xa0\x6b\x5a\x28\x1f\x09\x5b\x7d\x73\x42\x9d\xc6\xc4\x36\xcb\x1f\xa6\xc7\x07\x7e\xf5\x9e\xca\x0f\x70\xb5\x1d\x07\xfc\x0f\xf0\xc6\x8e\x28\xc1\x13\xee\x7d\xaa\xe2\xa5\x37\x68\xbf\xa8\x76\xb3\x97\xb8\x48\x74\x77\xa4\x14\x3a\x41\x90\x22\x94\xdf\xdb\x1d\xb4\x72\xf9\x53\xb5\xfd\x05\xc7\x11\x1e\xf8\x4e\x8f\x73\x15\xe3\xf6\x22\x89\xbe\x98\x8c\xcf\x85\x89\xa2\x14\xdf\xd4\xd1\xd6\x90\xae\x3b\x64\x2c\x7c\xdf\x0a\x27\xf2\xf9\xc6\xb5\x22\xa4\x2b\x36\x3b\xd2\xb3\x71\x7f\x7a\xa2\x15\xc1\xab\xa2\xff\x19\x26\x5a\xda\x12\xca\xd7\xe3\x7f\x50\xd0\xe1\x81\x09\xa3\x6e\x14\x12\x38\x06\x6d\x87\x1b\x5a\x11\x7a\x1f\x3b\x80\x0e\xfd\xeb\x56\xde\x8e\xf1\x3e\xe5\x2a\x98\xd0\x4e\x4f\x00\x74\x69\xc7\x30\x83\x8a\x82\xa1\xbd\xa1\x84\x82\x2f\xd5\x44\x99\xf9\xb0\xfd\x8a\x0d\x0b\x12\xd7\x13\x2d\x97\x86\x97\x6f\xc4\xe4\x4f\xb4\xc8\x3a\x45\x16\xd7\x6d\xf0\x64\x8b\x31\xb4\x9e\x8a\xb2\x13\xe5\xcc\x89\xc3\x81\xa5\x80\x95\x14\xa9\xee\x49\x95\xa6\xff\x3b\x6d\xdd\xd2\xbe\xbb\xe5\x91\x59\x3b\xc6\x13\x7a\x61\x35\x8a\x50\xe1\x90\xba\x21\xa2\x15\x58\x20\xa1\xc8\xa0\x8f\xb9\xc6\xce\xf9\x79\x0e\x81\x37\xeb\x10\x13\x4c\x5a\xc8\x80\x5f\x97\xec\x51\xd0\x4f\xe7\xcc\x2e\x47\x9d\xc4\xae\x92\x4c\x98\x83\x13\x3a\x44\xc8\x7d\xd5\x2f\x72\x41\x4b\xb5\xbf\xb3\xad\x79\x24\xcd\x39\x69\x20\xa8\x34\x85\x50\x53\x2d\xd0\xf6\x55\x9b\x85\x11\x43\x11\xe1\xf3\x42\xd5\x8e\xaf\x15\x46\xae\x88\xfa\xf6\x71\x9a\x2d\x46\x0f\x60\x00\xa4\x13\xcb\x2f\xc6\x6b\xaa\x6f\xf7\x8f\xe8\x08\x62\x09\x64\x00\x88\xa5\xb6\xa9\x68\xb4\xfe\x14\xeb\x1a\xe1\xfb\x8e\xb1\x22\x2b\x79\x83\x56\x3f\x57\x53\xd4\xc9\x32\x33\x56\x84\xcb\x97\xb4\x26\xc0\x9f\x60\xa1\xa2\x9c\x72\x49\xa5\x0b\xa6\x48\x13\x0f\x7b\x67\xda\x11\xfa\xe4\x85\xa3\x52\xd8\xa2\x9c\xff\xd6\x1d\x65\xb3\x3b\x99\x3d\xf2\x90\x2f\x04\x40\xda\x0b\x27\xd0\x4d\xad\x21\xa3\x79\xc0\xd0\x93\x82\x23\xec\xbb\x13\x69\x6b\x3a\xd9\x31\x2e\x57\x83\xcf\x29\x49\xed\xa2\xdc\xb0\x91\x23\x72\x74\x7d\xc7\x0e\xf7\xb9\xa5\x89\xc2\x4c\x3f\x1d\xe6\xbb\xe8\x8b\x99\xdd\x88\x8e\x12\xec\x21\xc9\x06\x8b\x94\x8f\xcf\xaa\x7d\x7b\xa4\xb0\x00\xa7\x47\xaa\xbd\xe1\xa4\xab\xcf\x45\x49\x3e\x8c\x21\xc3\xe4\xf0\x5c\xf7\x31\xa0\x38\x0d\x1e\x1a\xfb\x20\xe7\xc9\xd6\x53\xee\x00\xc9\x4b\xc7\x2f\x1b\x64\xb6\xa0\x1a\x82\xc8\xd4\x2a\x72\xc6\xef\x2b\xc4\xda\x27\x0a\xa0\xd8\xb6\x49\xe9\x85\x68\x34\xd9\xd9\x91\x22\x1f\x3d\xab\x9a\x1b\x3b\x59\xb4\x62\x19\x1f\xe1\x48\xf5\x1d\xa2\x75\x2d\x10\xf0\x7b\x9c\x1e\x21\x28\x31\xba\xae\x98\xe2\x9b\x86\x02\xd9\xcf\x0f\x35\x97\xda\xfa\x76\x37\x70\x71\x96\xd4\x55\xa7\xfc\xd2\x41\x31\x44\x9d\x79\xfe\x0c\x75\x05\x8b\x28\x2b\x7a\xf4\x11\x04\x53\x57\x47\x5e\xa6\x05\x0f\x89\x99\xdc\xd1\xf2\x36\xa9\xe8\xe5\xbb\x1d\x84\xf1\x7f\xf8\x1b\x63\xda\x1e\xe2\xd3\xd0\xfc\x68\x89\x66\xec\xc8\x87\xd1\x42\x41\xe1\xc5\xf5\xff\x1c\x30\x08\x7c\x73\x83\x4a\x60\xf8\xf8\xfb\x6a\x3b\xde\xf0\x8d\x81\x85\xe9\x0f\x6c\x47\x5b\x31\xe4\x2c\x75\x90\x85\xdc\xef\x3b\x2a\x4c\x4e\xa2\xd0\x64\x66\x69\xc8\xe1\x03\x8b\xf2\x28\xa0\xe6\x35\x05\x67\xcc\x12\x88\x02\x8b\x8e\x60\xc3\xf1\x52\x81\x38\x0c\xb1\xc3\xa6\x0a\x77\xed\xab\x51\x6c\xb5\x0d\x87\x9b\x2c\x7b\xe6\x49\x55\xa5\x63\xd2\xcf\xc7\x7d\xa2\x6c\x83\x36\xb8\x26\xab\x44\x9d\xb1\x81\xda\x29\x6c\xcd\x87\xf0\x9c\x50\xd9\x3c\xa6\x39\x05\xd1\x3a\x03\xdf\xf3\x63\x8d\x20\xdf\x49\x49\x79\xc4\x12\xe7\x34\x22\x99\x09\x2c\x01\x05\x3a\x4f\x3b\x5a\x7a\x43\x7d\xd5\xe8\x13\x82\x22\xf0\x07\x02\x05\xe7\xe1\x32\x16\x6c\xc0\xce\xd6\x53\x8a\x92\x33\x05\xc7\x16\x58\x92\x5d\xb7\xbe\xa3\x26\x45\xf3\x9f\xfc\x7f\x7a\x20\xf9\x87\x1a\x85\xca\xb4\xdb\xb5\x09\x70\xf7\x2e\x25\xf3\x5e\xe0\xfd\xd2\xf7\xdc\xba\xcd\x7b\x66\xd9\xce\x28\x79\x02\x56\x80\x76\x34\x26\x4e\x54\xe9\xf6\x64\x03\x7b\x79\x3e\xf1\x27\x26\xf2\x50\x36\xb1\x0f\xd1\xb6\x73\x02\x6c\xee\xf0\xe2\x26\x60\xac\x3c\xa6\x86\x44\xfc\xc4\x34\x12\xa2\x77\xe4\xb1\xbc\xac\x04\x22\x02\xce\x8e\x1d\x2d\xd5\x64\xb1\xa8\x07\x6c\xe8\x36\x3f\xcf\x37\x33\x48\x87\xe4\x7c\xb9\xbd\x71\x59\x29\xb5\xea\x48\xbe\xf4\x27\xc2\xa2\xe1\x0b\xa5\x37\x94\xee\xef\x8d\xd1\x84\x32\x19\x13\x10\xa3\xd9\x08\x50\xd6\x29\x6c\x4c\xbe\x19\x2b\x04\xdd\xba\x6e\xf8\x0a\x54\xf4\xfa\xdf\x29\xb5\x74\x9b\x17\x51\xdf\x14\x96\x13\x3f\x1a\xff\xc9\xc4\xd0\x93\x98\x0e\x55\x9e\x40\x52\x49\xa0\x35\xd4\xca\xb3\x31\x69\x34\x49\xed\xcd\xc3\x17\xd7\x55\x59\x71\xbd\x86\x54\x36\x1d\xd8\x04\x55\x4e\x49\x0f\xd0\x7b\x4a\xde\xe0\x71\xd7\xb2\x11\x52\xa2\xa6\x83\x70\x0e\xd9\x8f\x9b\xda\x67\x07\x7e\x42\xf6\x8a\x27\x2e\xe6\xe9\x8b\x92\x25\xb8\x98\x48\xec\x80\x96\x4a\x48\x63\xcb\xe5\x0e\xbf\x01\xb0\x3e\xf6\x21\x26\x1a\xd8\xf3\x9c\x64\xe9\xa6\x14\xcd\xfc\x7d\x05\xdb\xc3\x09\x8a\x7a\xf6\xef\x6e\xa7\x37\x9d\x3b\xdc\x7c\x61\x76\xee\xe9\xf2\x67\xe0\x81\xdd\xc1\x1a\x94\x2e\x07\xca\x3e\xc1\xd9\xb8\x42\x65\x7a\x91\xa9\xa1\x00\xc5\xa9\xa5\x97\xa3\x8a\x6d\x00\x71\x4e\x81\xf8\x94\xdb\x03\xd5\xf3\x6f\xe9\xbe\xf0\x0d\xa5\x95\xf9\x9f\xb4\xbc\x14\xb3\x2d\xb0\xbc\x09\x08\xd5\xe1\xe6\xb1\xea\xae\x68\x18\xd0\x21\x01\x67\x15\x3d\x8f\x30\x58\xbf\x8f\x15\x01\x5b\x74\x6a\xe4\x11\x5d\x92\xba\x52\x69\xfe\xe7\xd8\xb8\xfe\xc1\x68\xbb\xd4\xfd\x0b\xb3\x2f\x31\x08\x31\x2a\x4c\x16\x71\xa5\x5e\x72\x60\xe5\x58\x49\x06\xcc\x97\x6c\x18\x66\xf3\x65\x7a\x7e\xb6\xb1\x81\x97\xc6\x78\x13\xdd\xb4\xb0\xb1\x6f\xd3\x48\x2a\x0e\xf8\xe7\x5c\xaa\xab\x7c\x62\x66\x46\x51\x42\xb2\x54\x9b\xdc\x3a\x87\x41\x67\xed\xb1\xa0\xf1\xf5\x39\x4f\x1f\xf4\xa2\x53\xc3\xfd\x30\x50\x6a\x68\x13\xfc\xb2\x7f\xa4\x85\x8b\x3f\xa2\xb9\x01\x1b\xd0\xbf\x86\x4b\xea\x04\x3d\x7e\xe5\x97\x1c\x69\x52\xe9\xb7\x62\x61\x9c\x09\x76\x7e\x85\xb3\x28\xff\x93\x5a\xa2\xa7\x08\x7d\xee\xb2\xb2\xfb\xf7\xb3\x73\xf3\xe7\x81\x27\xf1\x3b\x1a\x10\x08\x67\xc2\xb2\x3a\x10\x98\xcf\xda\x9c\x0d\x00\xc9\x51\x04\xc7\xbe\x79\xd9\x27\xaf\xbe\x8f\xa3\x04\xc5\xab\x0f\x47\x8d\xc3\xcf\xf3\x69\xfd\x5d\xa4\xe1\xf1\x9b\xc7\x18\xe6\x22\x0d\xb7\xb4\x44\x45\x7d\x5e\x43\xe8\x08\x98\xc9\x64\x40\x58\xe8\xb7\xb0\x05\x5c\x8d\x7a\xee\x30\x8f\xf9\x0c\x8c\x1b\xe6\x84\x7b\x95\x91\xae\xfa\x40\x79\x1a\xb7\x70\x36\x6a\x88\x37\x5c\x9b\x1f\x96\x5b\x63\x0b\x07\x10\x0e\xc2\xbb\xc1\x5e\x6f\x4f\x87\x6d\x43\xd6\x86\x99\x9f\x26\x58\xa0\xb6\x1f\x6e\x02\xea\x5a\x4a\x57\x0d\xb9\x23\x70\x2e\x58\x86\x84\x6f\x14\x34\x6e\x98\x2d\xd9\x0e\xd1\x82\x62\x71\xdd\x0b\x14\x19\xd7\x09\x85\x82\xdc\xd9\xf2\xc2\x91\xef\x06\x4a\xbc\x87\x0b\x02\xf0\x31\xa6\xa9\xb5\x5b\x92\xe7\x3e\xe8\xee\x99\x24\xa4\x1e\x22\x47\xa5\xce\x98\x61\xbe\x51\x75\xda\xd8\x64\xb9\x4d\x08\x0f\x28\xe2\xd3\x9e\x70\xfb\x4c\x1d\xa1\x4c\xf3\x95\x74\x98\x25\x26\x26\x66\xc5\xcf\x68\x0e\xa8\xa1\x28\xe8\x9a\x62\xca\x27\x01\xde\xd1\xa9\x11\x98\x54\x2c\xfb\x3b\x9e\x5f\xe2\x48\x14\xda\x47\x54\x53\x1d\x47\xa8\x38\xc9\xef\xe3\x0b\x84\x58\x5e\x11\x21\x5d\xf2\x89\xd7\xf0\x6f\xa3\xda\x28\x8c\x0b\x34\xd8\xae\x8e\xe3\x62\x9b\xb5\xc0\x27\x70\xee\x91\xb1\x62\x15\xe2\x91\x07\xb2\x3e\xa6\x78\x4c\x97\xa3\x02\x1e\x22\x0e\x19\xe8\x53\xf0\x75\x25\xc7\xf8\xcc\x33\x4d\x13\xc7\x34\xc0\x92\xce\xa2\x67\x92\x7c\x96\x02\x30\x7d\x63\x58\xc6\x2d\x9c\x22\x13\x9d\x3f\x2d\x00\xe8\xcb\x3c\x5e\x3c\x80\x06\x48\x00\x7e\x1e\xa2\xb4\x19\x6c\xb7\xa6\x54\x7e\x18\xb6\x6d\x96\x98\x22\xcd\x22\x0e\xc8\x99\xa4\x97\x36\x83\x10\xf6\x6e\xef\x90\x2b\x3f\xd9\xa6\xb9\xc6\xce\xba\xab\x19\x88\xef\x2a\x71\xc0\xdc\xc6\x31\x13\xc0\xa3\x31\x88\x8b\x38\x70\xd9\x8e\x62\xfc\x71\xdc\xdc\x53\xf2\x8b\x2b\x69\x6c\x8a\x28\x8e\x8a\xd5\xdd\x34\xac\x4c\x98\x08\x8b\xcc\x0d\x21\xb4\xbc\x90\x33\x7a\x64\xec\x60\xb8\x7f\x93\xd1\x4b\x2c\xe0\x89\x2a\x8e\xf0\x2d\xfa\x58\x02\x5d\xe5\x22\x0c\x3e\xe1\xc3\x0f\xa2\x98\x00\x04\x5e\xd4\xf5\x7c\xe0\x45\x5d\xcf\xd7\xb5\x92\x17\x26\x2f\xac\x60\x78\x91\x64\xe7\xda\x3d\xdf\x28\x6b\x92\x98\xa5\x5c\xe9\x19\xdd\x57\x85\x96\xfb\x95\xf3\x6e\xff\xfe\x66\x68\x06\x51\x61\xe2\xe8\x35\x26\x9a\x71\x4c\x7b\xe7\x55\x1a\xff\x7c\x19\x23\x4e\xe6\xe8\xa2\x64\x89\x73\xa6\x82\x1f\xf0\x46\xe6\x92\xca\xc1\x92\xea\xf9\x2e\x6f\xf9\x58\x75\x5b\x8e\x37\x55\x7f\x03\xc9\x93\xb0\x0c\x94\x43\xc2\xa1\x64\xe0\x99\x77\xae\x56\x36\xfa\xfe\xb9\x66\xb7\x78\x96\x56\xf0\x16\xa5\x9e\xb7\xce\xa9\xf1\xb6\xf9\x20\x36\x89\xe9\x30\x33\x23\x4e\xbd\x8f\x02\x25\xb2\xf1\x91\x06\xf9\x67\x36\x26\x86\xd5\x8c\x51\x21\x5c\xd9\x0b\xd4\xce\xff\x8e\x47\x4f\xd9\x57\x4d\x08\x8e\x3a\x24\x81\x18\x9e\x23\x0a\xc0\x98\x2e\xf8\x53\x9e\x6e\x6d\x60\x3b\x26\x96\x5d\x04\xdf\xec\xd7\xf1\x3c\x7c\xe3\xfe\x32\x8f\x5e\x73\xb0\x32\x17\xae\x29\xd8\xb0\xb7\xbe\x79\xdf\xc6\x02\x95\x66\x77\x4f\x09\x88\xfd\x6e\x05\x59\x29\x87\x48\x3f\xcd\x40\x10\xeb\xe8\x46\x4a\x37\x03\x0b\x71\x06\x1a\x47\x4e\x7e\x5a\xbb\x16\x9a\xe8\x3d\x2f\xb2\x61\xdf\x26\x88\xde\xe0\x89\x62\x27\x7e\xa4\x18\x92\xaf\x29\x21\xbb\x73\x2e\xdb\xf2\x8a\x89\x62\xaa\x1f\xd2\x83\x33\xc1\x3f\xfd\xa5\x90\xfd\x57\x09\x2a\xe6\x9a\x99\x5d\x8e\x92\x4e\x8c\x90\xc6\x89\x40\x7a\x41\xc8\x3a\x78\x67\x01\x25\x79\x7a\x3a\x58\xe0\x33\x2a\x27\x71\xa6\x62\xb9\xf6\x97\x3f\x43\xac\x1f\xf4\x62\x1c\x47\xa2\x1a\x8d\xb0\x88\xaf\xd5\xe2\xb1\xaf\x0e\x6c\x16\x11\xd8\x1d\x71\x11\x53\x69\xd2\xea\x85\x09\xba\x34\x9a\x10\x84\x2a\xbf\x13\xe3\xf3\x80\xcc\x05\xff\x91\x6a\x88\x2a\x7a\x59\x7a\x84\x74\x2b\x1d\xd9\x2a\x06\x88\xaf\xdd\x5a\xb1\x49\x27\x75\x94\xa8\x48\x46\xbf\x85\x55\xc5\x37\x2a\x15\x1c\xa6\x31\xe6\x09\x1e\x0c\xd2\x06\x2c\xd4\x17\xf8\x73\xf1\x23\x95\xa4\x62\x7c\xd9\x43\xb4\x24\xf4\x11\x8a\x0e\xb4\xbb\x58\x1e\xdc\xc1\x89\xda\x92\x74\x70\xfa\x04\xdc\x2d\x3c\x10\xc2\xf6\x3d\x2d\x45\xcb\xb7\x67\x5c\xd7\x83\x90\x66\x1d\x7f\xde\x20\xdf\xb4\x13\x34\x13\x7c\xa3\x0e\xc8\xb6\x59\x52\xfc\x51\x17\xc9\x7a\x88\x40\xd9\x17\xbc\xa7\x55\xb5\x75\x7c\x1e\x4f\x9c\xcd\xaa\x21\x0d\xec\x4d\x18\x7f\x57\xad\x76\xd1\xf9\x95\x4a\x55\x65\xff\xfe\xe6\x50\x68\x08\x3c\xb2\xcf\x89\x8e\x6a\x74\x60\x6c\xdb\x26\x49\x11\x61\xc0\x6c\xee\x18\x2b\x3d\xe7\x1d\x2d\x27\x29\x9f\x67\xc6\xc6\x91\xd8\x7f\x0c\xf9\x66\xa0\x14\xd0\x36\xdd\x96\x0a\x6d\x6c\xdb\x59\xc4\x1a\x2a\x12\xa5\xf9\x06\x88\x77\x2a\x4f\x7c\x60\xa1\xd9\x33\x2b\x16\xb5\x4d\xd7\x82\x5e\x2e\x0f\xe1\x0d\xf1\x43\x03\x08\x08\xec\xe6\x25\xe5\x4b\x0f\xac\x8d\xdb\x86\x5b\xc8\xb1\xfb\x41\x2a\xcd\xd7\x75\xa2\xba\x69\x16\x2d\x45\x89\x70\x2c\x49\x1b\xe6\x95\x40\x29\x7f\x5c\xa9\xfd\x1c\x95\x53\x20\x1e\x5c\x0e\x32\x6b\xc0\xe1\x91\x45\x10\x6e\x82\xc9\x7c\x60\x1f\xf6\x0e\xe6\x05\xda\x69\x70\x6f\x6e\x51\xa0\x85\x8e\xad\xb5\x09\x25\x85\x91\x5a\xe8\xe7\x11\x63\x09\x5d\x34\x2d\x6e\x64\x21\xb0\x05\x34\xeb\x06\x00\x4d\x2c\xeb\x8d\x2a\xf2\x1d\x65\xa7\xb9\xf3\x94\x18\xf7\x10\x4e\x73\x2a\x4b\x3a\x8c\x1b\xf3\xf3\x5b\xd0\x10\x15\x1a\x27\xb5\x22\xb6\x54\x62\xfe\x35\x9b\xa5\x0a\x76\x7e\x19\x81\xb8\x58\x99\x86\xa3\x4a\xfd\x17\x0a\x35\x91\x87\x59\x34\x28\x8e\x64\x91\x40\xaa\x70\x3c\x7c\xa4\xb2\x04\x1f\x55\x8c\xe7\xe2\x6c\x33\x4f\x57\x22\x0b\xd6\x4a\x71\x11\xb5\x2e\xb4\x5a\xd2\xed\x28\x8e\x85\xfc\x83\xd5\x30\xb4\xe4\xc6\x71\x85\xb4\xce\xa2\x90\xed\x31\xa6\x02\x8c\x47\x7c\x3d\x91\x50\x4b\xfb\x2c\x3e\x28\x0d\xe2\xe5\xb7\x8b\xa9\xf1\xc4\xb6\x3b\x08\x6a\xc2\xd7\xad\x27\xb4\x54\xd2\xc0\x64\x88\xf3\x9e\xe3\x9c\x00\x2b\x18\xa3\x60\xb2\xa6\x1f\xf1\x6d\xad\xbc\x7b\x43\x55\xb2\x8f\x61\x61\xc2\xdf\x7a\x53\x09\x20\xbe\xab\x32\xb0\x57\xb1\x6e\x94\x08\xa9\xa7\x63\x74\x8c\x87\xd1\x8a\xcd\x76\x7b\xec\x09\xd7\xd1\x90\x1e\xbb\xa8\x09\xcd\x51\xfb\x81\xe1\xf8\x03\x0e\x6a\xf1\x60\x27\x95\xfc\xcb\x93\xad\x09\xf5\x34\x5a\xab\x88\xfa\x6f\x56\x19\x2e\xe6\x34\x7d\x00\xaa\x03\x38\xd3\x51\x18\x77\xe0\x0a\x6f\x0c\x55\x37\x5d\x7f\xf5\x51\xdf\xdf\xf4\x3d\xbc\x1d\xe2\xef\x1d\x63\xdf\xf5\x30\xdd\x22\x97\x98\xff\x01\x56\x1e\x37\x27\xb0\xd6\x59\xe1\x95\x92\x0d\xae\x4a\xb5\x38\x2b\xea\x16\xf4\x6a\xd8\x3a\xe7\x46\x4a\x83\xe6\xa2\x3a\x22\x19\x46\x2d\xe2\x1c\x8f\x2b\xad\xf0\xac\x13\x5b\x68\xd4\x62\x5f\x9f\xc1\x9f\xf2\x8d\x6b\xc2\xc8\xad\x99\xf1\x0d\x1e\xcc\xcb\xa4\xe3\x34\xec\xf0\x1d\x63\xaf\xb9\xc3\x39\x47\x1c\xd8\xf7\x83\xa7\x2a\xec\xce\x0b\x0b\x5f\x54\x65\xbc\x75\xca\x81\x63\x5b\xfd\x68\xa4\x44\x1d\x69\xcd\x0a\xf5\x1f\xa5\x5f\x18\xce\x37\x52\xa8\x90\x1d\xe3\xc6\x2f\xbe\xc8\x87\x32\xb7\xda\x71\x36\x2d\xf0\xc0\xf5\xd7\xd9\xc5\x74\x1c\x42\x3e\xa1\x3c\xd3\xa2\x85\x00\x1c\x01\x3a\x3e\x71\xda\xbf\x81\x1c\x0a\x8b\x77\x50\x8a\x43\x54\x04\xe8\xf5\xf0\x90\x17\xe1\x09\x62\x83\xbc\x01\x9b\x27\xc9\x6e\x9a\x51\xb8\x85\x80\x31\xc0\xcf\x01\x6f\x02\xeb\xbc\x52\x3a\x08\x16\xe8\x5f\x03\x16\xcc\x4d\x1c\x94\xd8\xdb\xda\x50\x31\xa8\x19\x0c\xac\x21\x4d\xba\xf9\x79\xce\xeb\x5d\x55\x10\x90\xab\xaa\xdf\xae\x6d\x0d\xca\x6b\xf0\x1a\x46\x13\x54\xd5\x3a\x33\xa5\x20\x1b\x2b\x51\xc7\xa6\xd3\xaa\xdc\x75\x51\xf9\x4f\xdf\x0a\xbc\x5f\xf5\x2d\x9a\x23\xb1\xca\x3e\xc2\xcc\x88\x60\x89\x4e\x36\x51\x92\x9d\xe8\x23\xad\x21\x68\xe9\x59\xb3\x02\x0a\x64\xa4\x01\x6e\xc2\x76\xb0\xa9\x56\xdd\x6e\xc7\x54\xfa\xbd\x1f\x95\x91\x2c\xc0\xc3\xd2\x7b\xd3\x70\xaa\x8e\x1f\x60\xd8\xa5\xc9\xdc\x83\xf6\x7f\x88\x69\xe3\xbf\x72\x6d\x9f\x51\x66\x12\x49\x5f\x62\xe2\xaf\xeb\xac\x55\x95\x4a\xea\xc5\xb9\xc3\xc4\x95\xc2\xa7\x2a\xe7\xd8\x90\x89\x93\x84\x5b\xa5\x8f\x68\xf1\xe0\x57\x9a\x69\x62\x1b\xe5\xc8\x61\xe8\xf5\x34\x54\xa9\x82\xf6\xef\x6f\xe6\x71\x7a\xa4\xe1\xed\xda\xa4\x73\xa4\xcd\x7e\x61\xf3\xcf\x6b\xad\xee\x3f\xc5\xf2\x66\x24\x1a\xf6\x0a\x2c\xe8\xa3\x28\x98\x23\xcd\x33\x45\x39\x61\x98\xc9\x77\x35\x23\xc0\x1d\xea\x8a\x13\xd5\x9c\xf2\x89\x71\x7e\x6d\x06\xde\xae\xdc\x84\x85\x82\xcb\x7c\x2e\xf0\x29\xaa\x9f\x28\xac\xc9\xc7\x13\x32\x45\xd8\x28\xc2\x3e\x46\x1b\x85\x55\x2d\x21\x5b\x06\xc3\xb3\x15\x78\x6e\xfd\x86\xf6\x7c\x2f\x62\x3b\x0a\xa6\xcc\x83\x76\x21\xea\x80\xd2\xc1\x54\x6b\xa2\x95\xb1\xa6\x8b\xfd\x1b\x43\x1b\x03\xca\xe3\x98\x41\x5c\xcf\xc9\xda\x48\xca\xd4\xe9\x60\x90\x66\xc5\x30\x89\xf2\x82\xa7\xd9\x75\xc5\x7a\xed\x35\x0f\xc4\x18\x44\x61\x12\x85\x53\x84\x83\xa5\xda\xa5\x1c\xf8\x3e\x2f\xb3\xb3\xb5\x1d\xba\x3d\x3f\xbf\x58\x7a\xcd\x7d\x62\x6e\xe2\x04\x81\xc4\x35\x0d\x27\x73\x70\x49\x39\x0d\xbd\x34\x2f\xcc\x92\x05\xb4\x1c\x76\x05\x87\x00\x5f\x57\x0a\x34\x65\x10\xd8\x19\x22\x24\xc3\x79\xff\x56\xe0\xc9\xee\xdf\xaa\x43\xc0\x95\x5e\x09\xf5\xe0\x97\x2f\xcd\x8d\x62\x58\x1c\xd2\x35\x56\x93\x75\xc9\xad\xed\x4b\xf8\x21\x2b\x94\x96\x9d\x2c\xdd\x2a\xd8\x27\x6d\xe7\x21\x31\x56\x39\x90\xc0\x65\xa5\xc4\x7e\x59\x99\x95\x30\xca\x42\x6e\x7f\x40\x33\xe8\x51\xec\x4f\xc7\xde\xed\x02\xda\xe3\x6e\x53\x0f\x32\x5b\xd8\xa4\xa3\xa8\x9f\xd6\xf5\x41\x58\xcb\xdb\x96\x87\xe9\xc0\x36\x74\x9f\x04\x7d\x42\x92\x4d\x4f\x2b\x69\x04\xd3\xed\x46\x59\x9f\x1c\x03\xcf\x17\xf6\x43\x25\x8e\x7c\x35\xf0\x50\x90\x35\x47\x96\x1a\xa6\x49\x8e\x4e\x7e\xfa\x19\x76\xaa\xe8\xc8\x11\x07\x6b\x7b\x77\x8f\xe4\x1f\x62\x73\x24\x1f\x46\x05\xd8\x31\x84\x87\xcd\x33\x45\x7e\x53\x53\xf3\x9e\x83\xc3\x81\xbd\xc9\x45\x6c\x64\xb1\xaf\x57\x66\x7c\x71\x56\x3a\xd8\x69\x26\xf0\x99\x53\xba\x59\xf7\x54\xa0\x9b\xd4\xed\x4a\x44\x1d\x7c\x33\xe5\x8e\x47\x64\x7f\x17\x39\x53\x27\xd6\x57\x2e\x02\x16\xe3\xa2\xc5\x86\xc3\x0d\xca\x0a\x22\xd2\xf5\xa4\xa6\xfe\xe8\xda\x9c\x08\x92\x1d\x5a\xe1\x3f\x40\xcb\x84\x4e\x9b\xef\x3d\xde\xf2\x35\xbd\xbb\xb4\xb9\x04\xcf\xf1\x99\x5d\xdc\x59\x64\xbb\xf9\xb4\x67\x46\xe1\x28\x8d\xdb\x4b\x03\xdf\x59\xc5\xc9\x1a\x0c\xfe\x07\xdb\x75\x2f\xbb\xc0\xd8\x4c\x90\xe3\x0b\x5d\xa4\x1f\x93\x61\xd2\x35\xfd\x28\x8e\x4c\x36\xa5\x94\xa8\xa0\x96\x0b\x33\x80\x38\x58\x62\xc1\xc7\x94\x98\x63\x5a\x18\x96\x00\x92\xdc\x97\xc7\x1c\x5f\x08\xbc\x5e\x65\x61\xfb\x83\x34\x33\x59\xc4\x66\x02\x49\x9f\xe3\x2a\x01\x74\xbc\x16\x30\x6d\xdb\x36\x46\xe8\xe0\x78\x8d\x17\x3c\xaf\xf1\xe7\x7d\x43\x58\x94\x97\xde\x6e\x02\x76\x63\xaf\x0e\xf2\xb1\x8a\xe0\x3f\x9e\xc0\xf8\x46\xaf\x01\x5b\x21\x84\xbb\xe5\x60\x63\xb9\xdf\x44\x05\x8e\x95\xf7\x91\xe1\xd0\xe6\x10\x1e\xee\x75\xcd\x1e\x71\x93\xac\x39\xb7\x03\x04\xaa\x57\xfb\x51\x64\xd6\x44\xc5\xdf\xcb\x68\x30\x49\x8e\xe8\x79\xd1\x02\x94\x4e\x25\x5a\xfc\x1a\x2d\x8b\x75\xbc\x35\x09\x7d\x2d\xd7\x2f\x4a\x5d\x37\x55\xa1\x78\x60\x8a\xc2\x66\x09\xfb\x58\xc2\xfa\xd9\xf0\x0c\xa0\x2a\x39\xf4\xdc\xd7\x16\x55\xaf\xf5\x2d\x58\x0b\x51\xda\x9e\xcc\x63\xa7\x79\x54\xd8\x3d\x13\xec\x7a\x8b\xb3\x8e\x99\x80\xde\x91\x91\x13\x88\x4a\x5c\x97\xa0\xe6\xe6\x73\xd2\x1f\xe8\x18\x13\x2e\x83\x86\xe2\xe9\xa3\x91\x17\x0c\x86\x9e\xae\x2c\x27\xd1\x08\x81\xa7\xbf\xa3\xe8\x36\xde\xa5\x42\x2b\x7c\xb4\x37\xd4\x3c\xae\xc1\x8a\x88\x74\x95\xf7\xd1\x98\x3f\x91\x79\xd2\x51\x16\x75\x3a\x3e\xe5\x18\x20\xb4\xbf\x36\xd2\xd5\xe4\x0b\x2a\x70\x39\x16\xe8\x43\x54\xcd\x2a\xa7\x34\xb0\x10\xde\xa2\xc8\x11\xf6\x9a\xab\x8d\xa8\x21\xbd\x15\x28\xc5\x68\xd5\xd9\x99\x33\x2c\x06\xbc\x95\x5a\x7e\x0b\x36\xf2\x7b\x13\x9a\xbf\xae\x55\x2e\x4f\xe3\x0e\x4d\x0d\x3e\x71\x8f\x06\x14\x51\xe1\x97\xc6\xbe\x41\xed\x9f\x7c\x11\xd1\x23\xaa\xda\x33\x04\x6e\x83\x2f\xf3\xc8\xb8\x71\x60\x61\x0b\xfa\xfb\x0c\x02\x83\x11\x44\x85\xfd\x99\xd6\x04\x69\x9d\xa4\xaa\x32\x0b\x44\x02\x2d\x34\x27\x5b\xe1\x25\x2c\x6a\x34\x89\x17\x9a\x26\x5f\x96\xa4\x01\x0c\x11\x73\x9b\xf3\xcd\x67\x12\x84\x98\xd8\x64\x7d\xd6\x49\xc4\xbc\x9d\xd0\x76\x1a\xe8\x21\x38\x11\x37\xeb\xa4\xb0\x0a\xb3\xec\x3a\x39\x19\x0d\x4c\xcf\x2a\xc8\x60\x05\xea\xea\xe7\x8f\xaa\xa6\x08\x84\xbb\xd2\x05\xe2\x72\x5e\x3f\xf8\xeb\x18\x59\xa4\xb9\x1f\x1e\xfb\x76\xe7\x07\x0a\x1a\x71\x17\x2b\x10\x5e\xde\x7f\x46\x0c\x10\x38\xc6\xfe\x9d\x2a\x50\xfe\xcb\xbf\xd5\xd2\x4d\xed\xf7\x54\xaf\x0a\xd3\x6e\x0b\xa5\xc3\x63\x13\x32\xdc\xaf\x31\x66\x59\x64\xca\xe8\xdd\x98\x9c\x84\xde\x4d\x13\x95\x88\xb0\xd9\xf6\xdc\xeb\xdc\xe1\x66\x37\xb6\xaf\x46\x6d\x0e\x7b\x9c\x1a\x8d\xa7\x7b\x9f\x48\x91\xa6\x03\x9b\x15\xab\x7b\x7c\x3d\xef\x1d\xa5\x3d\x72\x3f\xf0\x4a\x32\x57\x27\x78\xbf\x34\xa0\xfa\x07\xd8\x23\x2e\xb5\x50\x9a\x0b\xa1\xcb\x2b\x47\x08\x9e\xf3\xf7\xb1\x47\x11\xed\x7e\xcf\xf5\x4c\x95\xe7\x88\xcd\x3c\x55\x28\xea\xa2\xe7\x14\xdf\xd9\xb9\x3a\xdd\xbd\xfc\x88\xb5\x03\x59\x78\x4c\x4d\x1d\x28\xaa\xee\xb3\x75\x84\x14\xf6\xd5\xb0\x67\x92\xa5\xc9\xfa\xcd\xa9\x91\xaa\xdf\x9c\x0a\x74\xbf\x40\x22\xcd\x57\x30\x78\xa7\x14\x9d\x7f\xb5\xf7\xea\xc0\x42\x73\x60\xd5\xa2\xe4\xea\x32\x7d\x46\x2a\xcd\xe2\x75\x11\xd7\x30\x2a\x55\x7e\x5e\x80\x45\xe7\x6b\xb5\x34\xa8\x3e\x13\x37\x14\xe3\xfc\x4f\x55\xad\xed\xa7\x0a\x3a\x9d\xd9\x38\x32\x84\x17\x9b\x9f\xe7\xad\x7e\x4c\xb5\x05\x1c\x53\xc9\xcc\xcc\x76\x86\xa1\xed\x00\xab\x2f\xe3\xe7\x59\x48\x98\xfd\x82\x6f\xc6\x9a\xff\xbb\x66\xc1\x85\x69\x12\x96\xde\x2d\xfd\x2e\xd2\x50\x17\x54\x4a\xea\x42\xad\x98\x79\x3e\xb0\xb6\xb3\xda\x50\xf5\xd8\xb3\xaa\xf9\xff\xac\xa2\x42\xed\x9a\xa4\x6b\xca\xe5\x71\x60\xc1\x3d\x05\x2d\x32\x79\xee\x2a\xbb\x01\x31\x77\xe5\x32\xd1\x08\xc4\x4e\x63\xa2\xf9\xa6\xa2\x66\x38\x77\xb8\x99\xa7\xc3\xa4\x53\x64\x92\x0b\xe7\x7c\xba\x6a\xa3\x39\xe9\x66\xb0\x1d\xa5\x71\xba\x14\x85\x26\xa6\x44\x2e\xc2\xf9\x7f\xab\xe9\x40\xde\x1f\xf9\x44\xea\xc7\x81\xcf\x83\xf4\x87\x79\xb1\x97\x9e\xc4\xe5\xd2\xf6\x8b\xde\xc7\xde\xb1\xda\x3c\x4c\xbe\x88\xe3\x06\x60\x34\xac\x3d\x96\x04\x70\xf9\x1d\xaf\x4d\xb3\xb7\xa5\x49\xc7\xae\xe8\xc2\x0e\x50\x07\x22\x79\x4e\xc3\xc2\xbf\x4f\x7b\x9c\x7f\x12\xdb\x5a\xc8\x72\xea\xd0\x1c\x61\xda\xef\xdb\x2c\x14\x3c\x00\x46\xf3\x7d\xc5\xac\xfa\xfe\x24\x79\x00\x48\xf4\x56\x30\x7b\x70\x81\xde\x20\x67\x81\xaf\x95\x4b\x59\x9e\x3f\x4b\x09\x4a\x91\x1e\x3a\x78\x51\x75\xdb\xbc\x87\x14\x2d\xe6\xfd\x53\xb5\x47\x90\x87\x22\xa4\x0c\x92\x73\xa7\x27\x51\xa6\x0a\x6c\x02\x67\x0c\x83\x72\x6e\x34\x21\x44\xe3\x65\xe4\xbf\x45\xbe\x01\xec\xed\x83\x1a\x0a\x90\x83\x4d\x93\x98\x78\xc9\xe6\x51\xd8\xf0\x65\x04\x70\x52\x09\x6c\xba\x4e\x5b\x27\xb3\x79\x3a\xcc\x42\xc7\x0e\x87\xf4\x17\x53\xea\x62\xb7\x70\x2d\x03\x67\xc7\x09\x45\x1b\x9d\x99\x30\xca\xfb\x53\x9a\x22\x1e\x9f\xd3\x64\x41\x92\x70\xf6\x4d\x12\x45\x96\x0e\xdb\xb1\xe8\x4b\x39\x58\x5b\xb9\x00\xf9\x46\x75\x54\x98\x95\x34\xe9\x98\xd8\x72\xb5\x0a\xa3\xce\xc9\x27\xbe\x19\x7d\x4e\xd5\x8f\x0b\x9b\x85\x69\x92\xd8\xb0\xd0\xfd\xcb\x88\x19\xb8\xd2\xa8\x1a\xc7\x3f\xad\x19\xc9\x97\xca\x45\xb2\x12\x81\x65\xcc\x9d\x6b\xac\x74\x28\x8d\x78\x7e\x10\xc2\x9e\xcd\x58\x99\x08\x29\xc6\x0f\x30\x5c\x7c\xa3\x5e\x25\xb3\x0a\x13\x2b\x52\x7a\xf4\x90\xa2\xa5\xb7\x4f\xe9\x0e\x0d\x97\x7a\x53\x2a\x2b\x05\xae\x53\x5c\x1f\x9b\xe8\x9b\xf0\x98\x9a\xa8\x0c\x80\x0a\x93\x14\xbb\x3c\x70\xfe\x36\x7e\x01\xf1\xe5\x13\xbc\x1b\x15\x13\xc4\x73\x9c\xbb\xbd\xe6\x69\xa1\x58\xe8\x80\xf5\xa9\xd5\xf9\x93\xbe\x96\x26\x76\x5a\x21\x5c\x8e\x2b\x5a\xab\xdb\x8a\xfd\xe0\x5f\x8e\x14\xfb\xf9\x9a\xf2\x7c\x96\x87\x83\xdd\x0a\x3a\xac\xa0\x69\x8f\xb4\x94\xbc\xe5\x19\x0c\x36\xeb\x02\x68\xd4\xd4\xcf\x14\x17\xe0\x89\x40\x71\xf6\x6d\x6a\xa2\xdf\x57\xeb\xf8\x03\xf2\x1e\x48\xf2\x45\x08\x08\xc2\x11\x70\xbb\x1e\x6a\x79\x17\x63\x53\xc9\x29\x9d\x50\x25\xa6\x24\x4a\xec\x6e\x7a\x48\x27\x52\x53\x46\x12\xc0\xc6\x6e\x8c\x14\x6b\xe9\x5d\xf2\xca\xb9\x04\x43\x3b\x90\xff\x48\x03\x3f\x2e\x07\x8a\x50\xea\xa2\xa2\x0b\xdd\x1a\x3d\xae\x7b\xd7\xdb\x51\x62\x15\x4c\x0d\x09\x49\xbe\x1e\x6b\xcc\x86\xc9\x04\xb3\xc1\x2a\x8a\xf4\xcb\xa2\xa8\x28\x59\xb8\xa5\x8c\x0e\xb9\x86\x13\xd4\x43\xe4\x26\x28\xa0\x4a\x8a\x75\xae\x49\x40\x00\x8f\x9c\xe7\x86\x0d\xbe\xf9\x4c\x40\xe1\xc0\x64\x85\xea\x10\xdd\xd7\x52\xd5\x8e\x7d\xe3\x47\x15\x23\xde\xea\xb4\xf7\x92\x4f\x07\x8a\x53\xec\xf7\xa7\x5a\x8a\xed\x73\x0a\x8e\x2a\xff\xdd\xc8\x23\x94\x8e\xd8\xa4\xd8\xa3\xb2\x50\x37\xf8\x3b\x90\x64\xba\x8e\xf5\xcf\x37\xf4\xae\x38\x65\xb8\xf6\x2f\xc5\x18\xef\xb5\xed\x20\x01\x49\x2c\xe4\xdf\x82\x07\xe7\x24\xb1\x9d\xd7\xf1\x6e\xc5\xcd\x95\x17\x2f\x6c\x32\x55\x4e\x3f\x50\x19\x40\xaa\xa0\xfe\xc4\x78\x1e\x6c\xc5\xb7\xb6\x03\xa8\x5f\x7e\x99\x9a\xa5\x7d\x2c\xfe\x16\xc5\x9c\xd2\xa4\x5f\xfe\x34\x13\x98\x50\x30\x88\x2c\xdf\x55\x6c\x61\xc4\x11\x3f\x51\x6c\x08\xfb\xb4\x9a\xce\x66\xa0\xd0\xea\x9c\x22\x66\xac\xbb\x86\x6f\xfe\x3b\x1c\xc2\xae\xe8\xec\x29\x58\x6f\x69\x81\xb2\x0d\xe4\x2e\xf8\xdb\xc8\xc6\x63\xb3\x9c\x51\x7c\xac\xcc\x8e\x29\x5d\x07\x1e\x2a\x97\xdb\xa2\x88\x6d\xe9\x41\x3e\xa4\x68\xbb\xb8\x19\x82\x0b\x54\x23\x9f\xc4\xbf\x3b\x52\x9c\x76\x81\x8a\x9c\xef\x2b\x8a\xec\xef\xe9\x2e\x80\xab\xc1\x23\x9e\xc8\xf1\x59\x9c\x31\x42\x11\x44\x7f\x26\x1c\x41\x13\xa1\x7f\x0a\xa9\x40\xb8\x33\x3f\x82\xc5\xc1\x9e\x98\x6e\xf9\x76\x83\xb3\xba\xa8\xb5\x59\xe7\x70\x77\xe8\x68\x63\x59\x08\x90\xf7\xed\x1c\x7b\x54\x1b\x97\x20\x85\x88\x7b\x9f\xea\x32\xcd\x0b\x83\x93\xd4\x49\xa4\xbb\xec\xe7\x46\xa0\xa4\xdf\xbc\x92\x62\x98\x0d\x6d\x4c\x7e\x09\x16\x09\x9e\x14\x15\x82\x3b\xf8\x21\x69\xa7\x9c\xc8\x4a\x25\xd1\xb4\x82\xf2\x5c\xc2\xcb\x6a\x12\x16\x44\x39\x5c\x15\x95\xa6\xff\xa7\x14\x04\xcf\x14\x51\x5e\x44\x61\x0e\x5e\x21\xc7\x6a\xb7\x28\xc9\xd5\xb7\x60\x23\x6a\xa5\xa8\x0f\x2c\x38\xf2\xfb\xaa\x97\x7c\xa8\xbc\x58\xb6\xd9\x94\x82\x6c\x5f\x50\x82\xd2\x9c\x40\x92\x38\xe9\x09\x95\x60\x8c\xba\xab\x12\x7d\x21\x0d\xf5\xa1\x4a\x49\x7d\xa8\xce\xa0\xc4\xae\x3e\xa4\xe8\x6e\x77\xf1\x99\x28\xca\xf2\x1e\x2d\xf1\x58\x4b\x35\x3d\xad\x8f\x26\x3a\x48\x1d\x94\x91\xe9\x02\xe0\x3b\xde\xae\x6b\x6a\x2f\xa7\x36\xea\x0b\xd3\xa6\xf3\xff\x54\x5b\x52\xd5\xab\x3d\x44\x74\xa5\xc2\x2a\xee\x90\x20\xdf\xd2\xd5\xe7\xb5\x40\x05\x60\x57\x6a\x08\xd5\x9a\xbd\x34\xee\xb8\xc2\xbc\x74\x95\xfb\x43\xef\x4d\x2d\x3e\x7d\xb9\x62\xc9\x0f\x3f\xdf\xcc\x87\xfd\x3e\x27\x54\x5f\x98\x65\xbb\xf9\x09\x99\x22\xbe\x56\x81\x7b\x1e\x15\x43\x82\xdf\x94\xff\xcc\x35\xeb\xc0\x63\xd6\xd7\x47\x8f\xfa\x12\x8d\xc9\xbf\x58\xae\x03\x71\xcf\x29\x3b\x06\x37\xe0\x7b\x81\xe2\xad\xdc\xd0\x7c\x50\x00\x97\x63\xc3\xa3\xd0\x2c\x89\x3e\x75\x48\xdc\x25\x08\x0e\x59\xbd\x9d\x8f\xb7\x94\xda\x0e\x73\xf2\xb3\xc0\xf8\xc8\x13\xe5\x9c\x82\x03\x0f\x73\x8f\x4c\x0c\xce\xe7\x1d\x63\xdd\xb2\x86\x35\x02\x97\xea\x5f\x29\xe1\x9f\x2f\x13\x79\xe8\xc1\x2d\xb0\x88\xb1\xb9\x45\xb3\x0b\xf7\xe2\x8e\x7c\x9b\xc7\x26\xf7\x25\x08\x67\x29\xed\x1e\x66\xc0\x81\x55\x56\x07\xc5\x21\x4e\x42\xfd\xa4\x1e\xc2\x6e\xbb\x5d\x9b\xe5\xa9\xa3\xe2\x45\x02\x88\xe1\x09\x7c\x53\x47\x94\xd5\x1d\x66\x45\x8f\x21\xce\x70\x51\x67\xc6\x34\x34\x48\x39\xdf\x0b\x74\x85\xad\xc2\xe6\xbc\x78\xb0\x19\x96\x7e\x06\x83\xac\x44\x23\x8f\xa6\x49\xd4\xf3\xaa\x20\xcb\xe7\x9a\x99\x7d\xc5\x31\xdc\x4b\x46\x61\x4d\xf5\x5e\xaf\xa9\xf3\x1c\x15\x26\xa7\x79\x74\x4a\xe1\x09\x4f\x05\x55\x64\xf7\xa1\xe6\x33\x68\xde\x75\x2d\x81\x07\x9f\x97\x44\xd7\x13\xad\xc6\x33\xcf\x38\xf4\x27\x3d\xb2\x44\x92\x8d\xf9\xf9\x2d\x6e\x71\x13\x06\xf1\x7d\xaa\x4f\x39\x5d\xe1\x2e\x3e\x97\x75\x5c\x94\xfa\xc3\xf5\x09\xe1\x5c\x4d\x41\x52\xae\x69\x54\xe5\x67\xc6\xbe\xc1\x18\x5e\xf9\x74\x43\xb1\xf2\xd3\x78\xa1\x2a\x70\x11\x27\x38\xff\x0b\x7d\x35\xff\x83\x4b\xbe\x76\x8d\x64\x7d\x5c\x0d\xd0\xd7\x03\x2b\x1e\x5b\x39\xdc\x83\x61\x41\xc7\x19\x7c\xe6\x4d\x9c\xeb\x98\x6d\xa0\x71\x1c\xdf\x6c\xf9\x20\xc2\x13\xb3\xd7\xf7\x30\x0e\x84\xfe\x89\x59\xdd\x95\x74\x08\x93\x20\x62\xc3\x7c\x12\xf8\xe8\x83\x35\x16\x6d\x67\xba\xfc\x63\xc7\xff\x78\x40\x54\xcd\x30\x6e\xdc\xe6\x12\x28\x74\xa5\x47\x1b\xa6\x49\x77\xe8\xa1\x44\x32\x5a\xe5\xc7\x90\xb1\x7b\x52\xf1\x0c\xec\x1d\x3f\xa9\x54\x59\x4c\x9b\xe0\xf7\xf8\xa0\x10\xee\xa9\x00\xf0\x8c\x6a\x14\xbb\x53\xb1\xd2\xcf\x3c\xd3\xec\xa4\x61\x91\x89\xab\x2d\xe5\x29\xc5\x0f\xfd\x7a\x05\xd4\x7b\xf0\xf9\x43\xcd\xcc\xae\xa4\x31\x51\xf2\x4b\xe6\xcc\xad\x05\x57\x70\xbd\xa1\x54\x55\x07\xb1\x35\xf9\x30\x23\x1c\x36\x2d\xc7\xba\xb6\xeb\xcf\xf2\x2c\x4d\xbb\xdd\x50\x1e\xe4\xb9\x89\xc2\xe1\xf6\xca\xd6\xdc\xe1\xa6\x2d\x7a\x22\xf7\x06\x20\xdc\xb7\x15\x53\xc4\xb7\x2b\x9b\xfb\xc0\x42\x33\x34\x43\x87\x64\xc5\xb8\xb1\xc4\x0f\xdf\xa8\x8a\x5e\x27\xca\xc3\xcc\xe2\xaf\x17\x67\xa5\x60\xa0\xba\xab\x4e\xe9\x1e\x9d\x28\xe9\xd8\x04\x9b\x1f\x6f\x79\x3b\x50\xa6\xfd\xb6\x8a\xb2\xc2\x34\x7f\x76\xc6\xa3\x09\xdf\x42\xca\x49\x9a\x85\xfd\x0e\x43\x49\x1b\x1e\xd6\x71\x1a\x09\xfe\xff\x13\x60\xcd\xb0\x93\x3f\xa4\x42\xd1\xd7\x95\x7e\xd9\x4d\xa5\x85\x75\x0f\x87\x00\x12\xfd\xd3\x54\x32\xc6\x2f\xb2\x40\x09\x0a\x52\xc7\x47\x8a\x98\x73\xb3\x46\x43\x61\xa1\xf9\x8d\xa1\x40\x1b\x9d\x8d\x73\xcb\x69\x4d\x15\x74\x09\xa6\x5e\xba\x3a\xa0\x9b\x92\x3a\x0c\x3d\x85\x14\x93\x6a\x5c\x89\x30\x8e\xfa\xa6\xe0\x0c\x0f\x92\x2c\xc8\x05\xf0\x75\x1d\x56\x1d\xac\xc2\x0d\x5d\xbc\xf0\x68\x88\x9b\xaa\xd2\x3a\xc8\xd2\x6e\x54\xec\x55\x12\x35\x77\x02\x25\x64\x73\x11\xa7\x1e\x8c\x29\x38\xa8\x11\xe2\xec\xa5\xa2\x83\xb4\x76\xd2\xaa\x46\xde\x1e\x5d\x49\xfc\x0f\xd8\x4b\x98\xaf\xfb\x14\xc1\x08\xb5\xad\xa2\x43\x40\x63\x0c\x3c\x81\x1d\x3a\x21\xb0\x46\x68\x1b\x21\x87\xf8\x9c\xea\x75\x13\x2a\x11\x2e\xfa\x6a\x52\x35\xbe\x56\xf4\xeb\x51\x52\xd8\x18\x76\x1d\x06\xe5\x7a\xa0\xca\x74\x77\x26\x18\xe9\x4f\xe1\x7d\xa5\xe1\xac\xe1\x58\x53\xab\x89\xf6\xc5\xd9\x66\xd8\x33\x89\x3b\xdf\x84\xf3\x86\xbe\x5b\xc8\x70\x9c\x2a\xaf\x53\x33\x2a\xff\x14\x45\x9c\x06\x05\xf5\x7c\x5d\x11\x55\xda\xbf\xbf\x69\xda\x43\xd7\x7e\x5e\xcb\xc9\xec\x97\x56\xda\xb6\x51\x4e\x39\x77\x22\xe1\xd8\x28\xf7\xc6\xd6\x86\xea\xa0\xa1\xb6\xb4\x69\x9f\x46\xc1\x7a\xd7\x19\x19\xb1\xdd\xb4\xf6\x05\x15\xa9\x43\x88\x22\x5b\x7d\xb2\x9c\x42\x89\x71\x69\x99\x88\x1e\x33\xbd\x17\x02\xfd\x3d\x63\x45\xf8\xff\xcf\x31\xd3\x8c\x66\xd5\x70\xa6\x9f\xc0\x13\x72\x1a\xc8\xfe\x68\x86\x05\x65\xaa\x5d\x96\x7e\xe1\xf0\xde\x91\xfa\x2e\x0a\xce\xfc\x41\xe0\x45\x6c\x2e\x6a\x82\x5f\x50\x81\xc2\xa7\x44\x7b\x02\x7c\x52\x2e\x90\x63\xb5\xee\xa2\x86\x45\x84\xd5\x77\xea\x29\x24\x4d\xb7\x4b\x34\x71\x32\x79\x28\x43\x6d\x28\x7c\xeb\xc6\xc8\x27\x8f\x07\xa5\xfb\xde\xa7\x40\x69\xda\x17\xad\xee\x8c\x14\xa9\x3c\x84\x50\x45\x74\x99\x46\x91\xff\x41\xb5\x5c\xe6\x85\x5d\x41\x5b\x8d\xe3\x3d\x71\x71\xcd\xb7\x69\x1f\x4e\x28\x4f\x23\x89\xb5\xa3\xe5\x51\xac\x45\xda\x36\x61\x98\xa2\xa7\x89\x3a\xa6\xb7\x36\x14\x8c\xa3\x63\x07\x36\xe9\x90\x36\xc3\x73\xce\xab\xf0\x4e\xc2\x63\x74\xe6\xc2\xa6\x73\x13\x26\xac\xcd\x75\x95\xd2\x0d\x7b\xd1\x60\x20\x9c\x60\x8e\xe7\xd4\x89\xbc\xae\x07\x5f\xfe\x8c\x33\x8d\x54\xe3\x8d\x12\xb4\xc6\xda\x43\x5f\x37\x5f\xd7\xc8\x6e\x2d\x34\x8b\xcc\xf8\xd8\x06\x80\x18\x4d\x5e\x81\xa0\x11\x96\xfe\xf5\x89\xb5\x9b\x76\xbb\xfb\x68\xb9\x49\x67\x9d\x5a\xaf\x70\xd6\x85\x77\x4c\x2b\x18\x97\xbf\x82\xb8\x60\x86\x78\x6f\xe4\x57\x68\xce\x80\xd0\x7b\x8f\xb2\x7e\xa8\xcb\x5f\xd2\x44\xf6\x3b\xc7\x1e\x78\x39\x21\x0e\x0c\x75\x23\xe6\x7d\xa2\x90\x06\xf1\x25\xea\xb3\x78\xbe\xef\xa8\xb2\x53\xcf\x24\xe9\x8a\xcd\xd8\xe3\x77\x02\x02\xbe\xe5\x7f\xbd\x72\xa8\x7f\xb5\xd9\xb7\x9d\x28\x34\x11\x88\xc1\xb1\x82\xde\xd4\x34\x3a\x6f\x56\x0e\x1a\x5a\xeb\x7d\x93\x49\xc1\x56\xf7\x5c\xf1\xb5\x3a\xb0\x8f\x08\xe9\xb8\x2a\x60\x48\x89\xe7\xdc\x67\xa6\x07\xdb\x86\xdb\xb4\x30\x75\xfc\x29\xbe\x09\x04\x56\x1d\xdb\xe2\x51\xda\xa2\x08\x7f\x67\x5a\xaa\x62\x70\x4d\x35\xe5\x30\xc3\x0d\x66\xeb\x1e\x8e\x69\xe1\x7a\x51\xc9\x78\x50\xba\x60\xf5\xfe\x8d\x96\x47\x97\x40\xa7\x08\x25\x51\x4e\x33\xb2\x92\x2b\xbd\x33\x7c\xe0\x4b\x34\x41\x08\xfa\x8f\xab\x58\xa1\x9b\x0d\xd1\x4d\xfb\x1c\x47\x97\x37\x3c\x2e\xeb\xb9\x1b\x81\x46\xfe\x86\xd4\x71\xec\x4a\xef\x77\xe0\x97\xf3\x8d\x02\x26\xe7\xc3\xa8\x78\xc8\x23\xb3\x26\xb4\xe6\x6f\x96\x67\x27\xc4\x43\x1c\x61\xbd\x62\x91\x62\x06\x47\xbe\x19\xf9\x1f\xdb\xa8\xf4\xf5\xfe\xad\xe6\xc0\x84\x12\x3e\xe2\xab\x38\xbd\xc2\x37\x95\x73\x6e\xee\x70\x33\x1d\x16\x61\xda\xb7\x13\x08\x68\x3c\x9e\xf6\x64\xe9\xdd\xcd\x13\x2d\x6f\x45\xa6\xc7\x7e\xc5\x14\x3d\xdb\x7f\xa2\x9c\x09\xcc\xea\xad\x40\xb9\x3d\x1b\xc1\x24\x51\xcf\x01\x0f\x52\xa6\xad\x26\x25\x9f\x29\xaf\x08\xcc\x55\x76\x11\xac\x54\xfe\xea\x19\x3a\x1c\x1c\x83\xe5\xfc\xbc\x9c\x01\x5a\xd3\xfb\x96\xae\xdc\x82\xf7\x1a\xc7\x09\xa4\xca\x11\x78\x0a\x09\x00\x43\x79\xe9\x25\x71\x00\x01\xa7\x2e\x11\x87\x5f\x16\x7d\xb3\x9a\x66\x28\xe0\x28\xbe\x97\x97\x38\x3d\x7b\x46\xc3\xde\x2f\x28\x2a\x8f\x8e\x2d\xa4\x1d\xa9\x0c\x5d\xa5\x85\x9f\x0e\x4b\xe9\xe1\xaf\xa1\x65\x3d\x54\x86\x7c\x0d\x05\xf6\xfe\x24\xd0\xaa\x0a\x95\xd0\x85\x08\x91\xd3\x64\x29\x2f\x0c\x49\xcc\x4f\x79\xa8\x13\x2b\x87\xa0\x6e\x30\x52\xe2\x4e\x57\x1c\x92\x37\x1b\x0e\x2c\x67\xf7\xe1\x28\xbe\x87\x5d\xc6\x37\x0a\x6e\x44\xf5\x38\x9b\x17\x4f\x2a\xe6\xd5\x1f\xd3\x18\x0b\xc6\x54\xb5\x9d\xed\x1e\xfb\x1c\xca\xc7\x81\xaa\x28\xdf\xe6\xbc\x89\x6b\x2b\x2d\x1f\x50\x28\x25\x69\xf1\xe0\x5f\xb8\x08\x8f\x95\xb8\x31\xf2\x04\x42\x3f\xd1\x65\x49\x68\xc5\xe8\x6e\x1b\x38\x7c\x9c\x65\xc5\x76\xf9\x4b\xac\x43\x58\xf3\x63\x23\x65\x77\xfe\x80\xce\x08\xac\x6a\xa9\xa7\xe1\xc5\x2f\x4d\xf6\x19\x15\xbd\xbd\x8a\xdf\x94\xa3\x51\x49\x20\xd2\xb7\x0b\x0d\x85\xd7\xab\x42\x3a\x1d\x09\x00\x1c\x34\xbc\x2e\x69\x3a\xf1\x33\x3b\x20\xf8\x26\x54\x1c\x1a\x99\xdd\x70\x04\x3b\xcc\xfa\x06\x6f\x02\xbd\x4c\xce\x20\x7a\x8d\xec\x33\x75\x64\x47\xb9\x29\x6c\x1c\x47\xcc\xae\xef\x44\x97\xbd\x00\xb3\xc2\xed\x81\x36\x30\x2c\xd0\x83\x26\xa0\x12\x7a\x39\x2c\xf4\x3b\xd8\x9c\xb0\xd2\x70\x77\x1c\x0c\xc5\x69\x01\x5d\xd2\x9c\x98\x85\xe9\x76\x77\x29\x61\xfc\x8b\x81\x92\x7f\xbc\x38\xf2\xca\x6c\x67\x94\xfa\xee\x19\x78\x72\xd8\xea\xb7\x47\x4a\xe8\xe7\x76\xa0\x21\x26\x65\xf8\x6d\xa7\x7d\x8d\xec\x56\xa0\x10\x5e\x40\x7b\xf0\x3f\x60\x61\x0a\xbd\xbe\x40\xa6\xc3\x5e\x9a\xe6\x36\x47\xa2\x9e\x7d\x22\x3c\x1f\x3c\x55\x46\x74\x88\xa3\x56\x91\x7d\x7e\xfe\x50\x73\x10\x9b\x24\xd7\x9a\x74\x9f\x6a\x76\xf8\x4f\x27\x88\x3e\xf3\x22\x4b\x57\x29\x1a\x66\x4d\x38\x22\xfe\x00\x8b\x94\xa8\xc4\xd1\x3c\x23\xbf\x78\x8d\x1c\x60\x66\x3d\xd1\x31\x75\x96\x0e\x66\xfc\x3a\x61\xb2\x53\x26\xf3\x52\xd4\xb7\x57\x54\x36\xeb\xcf\x68\x25\xf2\xf5\x04\x4c\xd2\xc4\xf1\x93\x9a\x3a\x00\xf5\x52\x94\x09\xf0\x04\x72\xe2\xa8\x97\x9c\xd1\xf5\x3f\xe0\x7a\x94\x26\xca\x9c\x6b\xfa\x57\x41\xd1\x26\x3c\x65\x69\xf6\x2a\x1f\x07\x47\x20\x6b\x90\xc2\x96\xcf\x8c\x2b\xc2\x6d\xbc\x69\x31\x32\xf8\xab\x3b\x48\xc9\x0a\x65\x40\xb9\xb1\x80\x83\xf9\x33\xcd\x94\x05\xc6\x75\x64\xf9\xbe\x5b\x71\x8b\x0e\x3f\xdf\x8c\x92\xd2\x97\xe2\x9d\x81\xfa\xb8\x56\xe8\x39\x5e\x51\x99\x5f\x58\x38\xd8\x8c\x4d\x3b\xcd\xc0\x2d\xed\x8b\xbc\x27\x46\xaa\x7d\xe6\x44\xb0\x8d\x32\xef\xc5\xc5\xd9\xd2\x46\x4f\x37\xfc\xc1\x14\xe8\x21\xff\x70\xf2\xcc\x52\xbe\xe6\x87\xca\x5d\x6c\xdb\xe2\x88\xb5\xc9\xe3\x5e\x8a\x07\x94\x74\xd2\x2c\x06\xa3\xca\x12\x9c\xb0\xa3\x8e\xe1\xbd\x1c\x53\xb8\x30\x0c\xbc\x72\x44\xfb\xe5\x38\x3a\xd9\xce\xf2\x29\x78\x15\x10\x47\x91\x5b\x11\xfb\xe7\xf8\x0c\x7e\x87\x4f\x4e\x25\x64\xf5\x1c\x7b\xcf\xb7\x35\xc3\xed\xa7\xda\x6f\x1c\x97\xbe\x37\xdc\xf0\x4b\x8a\xb6\x91\x84\xa3\x5c\x6f\x68\xe7\x51\x2f\xaf\xf4\x8f\x68\xe6\xa4\xf4\xe8\xb1\x18\x17\xb4\x6f\x74\x15\x10\x68\x44\x15\x6b\xe4\xad\xc3\x05\xf8\x98\x2c\x30\x56\xdd\x15\x5a\x68\x72\x64\x97\x13\x80\x24\x2a\xe3\x3f\xb0\x9c\x1e\x6a\x4d\x48\xf4\xa9\x56\xdf\x5b\x35\xf2\x77\xcd\xcc\xe6\xb6\xef\x52\x7e\x78\x97\x0b\x2a\x6a\xbc\xf0\xd9\x28\x7d\x5b\x14\x36\x9b\xd2\x69\x18\x4c\x94\xb4\x71\x95\x0f\x8b\xf5\xfe\x91\xab\x0b\x76\xd2\x23\x9d\xd5\x69\x8f\x11\x03\x98\x5f\xc8\x16\x3c\xa5\x0e\x07\xf8\xd2\x1c\x51\x75\x2b\x4a\xc3\x71\x84\x25\xe9\xf0\xe2\x7f\x42\x63\x8b\x5c\xc1\x69\xd5\x07\x7e\x42\x13\x6a\x0e\x8b\x61\x66\xf7\x68\x06\xc2\x91\x4f\xcd\x9c\x24\xb7\x1d\x05\xe7\x7f\x3a\xf2\xdd\x5d\x1f\xc1\x72\x0a\x0a\x96\x06\x5b\x48\xd2\x69\xcd\x09\x86\x0d\xab\x96\xef\x02\x5f\xb6\xbf\x38\x21\x53\x52\x14\xb1\x7d\x52\x35\x75\x5c\x50\x36\xf3\xc7\x30\x2c\x0e\x92\x5e\x4e\x25\x96\xcb\x19\x5a\x14\xf8\xab\xe3\xba\x82\xfd\x87\xf0\xc0\x24\xe9\x4f\x23\x82\xf4\xf4\x55\xd5\xde\x89\x50\x19\x23\x35\x21\xa0\xbf\x86\x38\x51\x88\x03\xe9\xe5\xa4\xe5\xbf\x1c\x1a\xc6\xa3\x06\x9e\xe4\xe5\x6d\xcc\x0d\x8b\x87\x8d\x3c\xd5\xea\x0c\x65\xdb\xf8\x71\x6b\xca\x8d\x8b\xcd\x9f\x9b\x3b\xf0\xdc\x81\xc3\x87\x1a\x4a\x9e\x68\x5d\xd7\xad\xab\x41\xe2\xfc\x7c\x79\x2a\xad\xba\x18\x1c\xf0\xa0\x6f\x2a\x09\x8f\x6f\xba\xe2\x40\x46\xd8\xcf\x69\x6c\x6a\xe6\x8b\x55\xae\x35\xd4\x87\xe5\xb4\x52\x1b\xe3\xed\x4a\x34\x41\x4e\x68\x9e\x0e\x8b\x1e\xc5\x44\x98\xa7\xdb\x81\x92\x8b\xb8\x5d\xab\x15\x9f\xa6\xcc\x0f\x8e\xc1\x81\xb4\x1e\x5f\x2b\xe6\xcc\x30\x36\x53\x9a\xd3\x86\x06\x7a\x82\x58\x05\xa7\xe1\x6d\x7f\xb8\xc7\x26\xea\xa3\x76\x2f\x70\x23\x26\x50\x47\x9a\x8a\xa7\x14\x47\x55\xa3\x55\x85\x90\xce\x95\xfe\x41\x2e\x89\x6e\xfe\x90\x92\x71\xbd\x30\xda\xa7\x34\x07\xa2\x24\xa7\x2a\x9c\x94\xf5\x1b\xdb\x9a\xff\x71\x56\xde\x70\xe2\x4d\xa1\x8d\x63\xaa\xea\x00\xc6\xf6\x60\xa4\x94\x11\x81\x1f\x42\x74\xb2\xaf\xe5\x93\xdc\x5e\x47\xfe\x48\x3a\x4c\x3a\x02\xf2\x83\xd9\x39\x31\x52\xaa\x41\x9b\x13\x52\x04\x02\x2a\xed\xd9\x7e\x94\x0f\x7a\x36\x03\xc9\x29\xb3\xa1\xd2\x2b\xb1\x03\x3d\xf2\x61\xf4\xff\xa5\x8c\x40\x2f\x5a\xea\xd9\x6c\x2f\x91\xc6\xc1\x09\xe5\x64\x9b\xa8\xf4\xd3\x86\xc0\x3a\x79\x10\xf8\xc2\xc9\xff\x43\x7b\x80\x3f\xa1\x5b\x20\x2e\xc0\xee\xa1\x06\xf5\xe1\xc8\x9b\xfe\xdb\xf4\x04\xc8\x1c\xd0\x5a\xd8\xda\x0d\xb6\x48\xfe\x25\x38\xf2\xb0\x7e\xf7\x69\x7f\xf3\xc6\xd5\x6c\x91\xc3\x2c\x6d\xa7\x04\xae\x2e\x77\x9d\x14\x5e\x75\x15\x56\x05\x35\x45\x2f\x4a\xd0\x62\xf0\xc2\xac\xc3\x3d\xaa\x26\x28\xe5\x79\x75\xad\xcd\x1f\x52\x24\x2d\x58\x85\x38\xf1\xae\x28\x59\x91\x69\x40\xfd\x99\xe7\x17\x8b\x4e\x48\x7f\xfd\x91\x7d\x4b\xab\x1f\x68\x92\x26\x93\x45\x06\x8f\xae\xb8\x02\xe6\x5c\xaa\x55\xd6\x40\x48\xbd\xc7\xd3\x7e\xf3\x7c\xb5\xd9\xf2\xc5\xd5\x2f\x8c\x3d\xc4\xf5\xda\x68\x02\x1c\xf5\x98\x6f\x73\x6f\xa7\x59\x82\x3e\x43\x9c\xb6\x8d\x96\xaf\x26\x5c\x1f\x29\xfe\xfa\xf5\xba\xcd\xdb\x8f\x38\xa7\x84\xc0\xee\x75\x05\x0d\x79\xbd\x0e\x54\xdf\x4d\x33\x1b\x9a\x9c\x43\x5b\xe1\x69\xa1\x19\x15\x06\x17\xbf\xe3\x9f\xfd\xf9\x9f\xa7\xd6\x61\x29\xd9\xea\xfa\xed\x24\x02\xa6\x6f\x9f\x9a\x60\xc8\xd6\x4c\xd6\x13\x04\xdb\xde\x06\xff\xa3\xc0\x47\x43\x1f\x05\x93\x94\xda\xbe\x34\x11\x54\xc8\xb2\xe1\x37\x6d\xc2\x0f\x81\xf9\x99\x82\xcb\x8a\x65\xf8\x7b\xa3\x09\x16\x6f\xef\x88\xec\xa4\x64\x95\x20\xab\x14\xef\xc1\x16\x2d\x62\x8e\xe6\x54\xb7\x31\xe7\xd0\xf0\xec\xd2\x58\x24\x32\x00\xd5\xa2\x7c\x33\xcd\x96\x4c\x12\xbd\x66\x3b\x53\x0e\x33\xf1\xdf\x5f\xd6\x91\xee\xa6\x12\x3c\x3b\xad\xd5\x4f\x6c\x62\xb3\x74\x88\x1e\x38\x64\x67\xc0\xf7\xc0\xd7\xaa\xd6\xb0\x6c\x7a\xdc\x34\x89\x15\xf2\x8e\xaa\x3d\xbd\xa3\x91\xc4\xb6\x18\x66\x09\x05\x91\xac\xd1\xa3\x6d\xd3\xbb\x81\xcf\x14\xe2\xb0\x41\x24\x8c\x76\x49\x38\x93\x77\x14\x4b\x57\xcf\x9a\x8e\x09\x7b\x16\x3c\x3b\x13\x0c\x7b\x7c\xa3\x6b\x93\x69\xba\x6c\x3b\xd3\x8d\xaf\x0b\xc1\xe8\x2d\xac\x62\xbe\x09\x3c\x63\xc3\xa7\x4a\x20\xed\xd3\x4a\x78\x70\x60\x81\xba\xd8\x62\xe9\x3a\xc0\x22\xb8\xa9\x3a\x34\x6e\x8e\x1e\x55\x29\xbe\xfe\x94\xee\x5f\xf6\x09\x48\xf0\x69\x62\xd4\x6f\x54\x72\x3d\x2f\xcc\xbe\x44\x4a\xd7\x53\xde\x8e\x40\x57\x51\x53\xd1\x22\x9d\xf2\x69\x65\x43\x1d\x58\x68\x9a\xce\x8a\x21\x64\xb3\xaa\xc5\xa2\xff\x8b\xaf\xeb\x3a\x9b\xa0\xfa\x86\x54\x3b\xd2\x74\x33\x63\x97\x30\xfa\x6f\xd1\x7b\xca\x7d\x8d\xaa\x4d\x10\xb2\x60\xfc\x41\xdf\xf2\xdc\x70\xe2\xb5\x77\xb5\xfa\xd4\xd9\x3a\x00\x53\x27\x8a\x6d\xbf\x6f\x94\x42\xec\xd9\xc0\xc3\x94\xab\x1d\x35\xa5\xcb\x6a\xfa\x03\x13\x2d\x25\x98\x7b\xa9\xf9\x28\x0c\xe8\x89\x40\x95\xe3\x57\xf3\xd7\x96\x23\x7b\x24\x0a\x5f\x6b\xa8\x76\xe0\x73\x38\x78\x24\xd9\xa7\x12\xb3\x03\x93\x34\x14\x75\xe7\x3f\x0b\x3c\xd0\xfa\x9f\xd5\x0d\x77\xde\x8b\x06\xab\x92\x20\x97\x94\x83\xce\x32\x88\xcf\xfe\x8d\x61\x14\x2e\xef\xf2\x58\xd1\xbd\x2d\x6f\x6e\x76\xe2\x3c\xc3\xac\xc2\x44\x20\x9a\x3a\xad\xdb\x40\x3f\x19\xf9\x8a\xdc\x59\xe7\x34\x14\xab\xcb\xac\x71\x27\x99\xeb\x86\x63\xe4\x3b\xae\xd4\x80\x3a\x11\xc9\x6a\x74\xa8\x75\x5a\x0e\x91\x89\x66\xfb\x17\xa4\x8f\x95\xdd\x5f\xe7\x57\xbb\x0e\x99\xbb\x95\x3d\xb1\xb0\xd0\x1c\x64\x69\x67\x18\x16\x92\x67\x66\xa9\x85\x40\x21\x2b\xaa\x0c\x04\x14\x35\x47\x71\xa1\x18\x1b\xcf\x2b\xcc\x8b\x6e\xa5\xfb\xd5\xbf\xcb\xa8\x49\x11\x55\xf5\xcd\xec\x1f\xd2\x76\xc5\xbe\xa8\x76\xa5\x2d\x2c\x1c\x6a\xe6\xc3\xa5\x25\x2b\x87\x0b\xd6\xe4\xe6\x48\xb9\x0b\x9b\x95\x78\x7e\x71\xb6\x99\x0f\x6c\x18\x99\xb8\x34\x9c\xd8\x44\x02\xc0\xf3\x1d\x50\x57\x54\x37\x78\xc7\xc6\x5a\xcf\x15\xf5\x45\x38\x78\x7c\x3d\x7e\x5c\x43\x68\x0a\x93\x14\x38\xa1\xb9\xc3\x73\xe4\x91\x82\x28\x13\x0b\x14\xb0\x34\x13\xd8\x3b\x3b\xc7\x4a\x44\xfc\xbf\xf9\x85\x5f\xa0\x5f\x72\x61\xae\x2b\xa4\xad\x8d\x7c\x3b\xe7\x11\x06\x86\xe0\xb8\x3f\x19\x28\xa6\xc1\x93\xde\xe3\x4c\x0d\x53\xbb\x39\x67\xcf\x25\x18\xf7\x28\x2d\xef\x5d\xe3\xed\x5d\x14\xd4\x57\xdd\x4f\x3b\x36\x76\x41\x85\x63\xbe\x70\x7d\x7d\x3f\xa9\x39\x95\x16\x9a\x47\x7a\x36\xb1\x24\x4b\x50\xfa\x8e\xdc\x42\x40\xc7\x9c\xb4\x13\xf8\xb2\xa3\x34\xfc\x4f\xa9\x2c\xde\x5d\xd5\x48\x7e\x55\xf3\x7a\x1c\x1b\x3d\x55\xa1\xac\x3e\xb0\xf0\x05\x72\x2b\x85\xaa\x8d\xce\x75\x11\x0e\xa2\x31\x71\x80\x82\xfd\xfb\xbd\x4e\xc8\xe2\xac\xb4\x1d\x1e\xd7\x2d\xda\x28\x40\x62\x7e\xde\x47\xd4\x2a\xc9\x4e\x3a\xe4\xe1\xd1\xff\x90\xf6\x15\x26\xff\xbd\x40\x95\xb9\x6f\x04\x3e\xb4\x03\x67\x0d\x0e\xe5\xff\x95\x80\xe0\x12\xb3\x97\x0b\x1c\xd9\xdb\xc6\x58\x91\x85\xcc\x90\xf8\x1f\xa0\x5c\x7f\x4c\xc3\x05\xcf\xe3\x9a\x6e\xf2\xf8\x70\xa4\x2c\x2e\x17\xe7\xf1\x1e\x0f\x8d\x55\xd3\xd6\x71\x4e\x36\x61\xbf\x9f\xad\x34\x53\x2c\x2c\x34\xfb\xa6\x63\x69\xd4\xb7\x8e\xd2\x93\x22\x71\xc4\xa8\x63\xa6\x1c\x99\xa4\x4d\x1b\xb6\xb1\x0e\x9c\x70\xa6\xe2\x8d\x98\xc8\x2f\xae\xa4\xab\x80\x39\x09\x91\x85\xdf\x2b\x47\xeb\x34\xd2\xda\xb6\x67\xe2\x6e\x43\x29\x40\x02\xc5\xc0\xd7\xc1\x53\x13\xdb\x8b\x1a\x2a\x00\x13\x16\xdc\x32\xfd\x98\xb0\x7b\xd7\xd9\xa2\x5e\x3a\xe0\xdc\x0d\xe2\x23\xf8\xbc\x7c\x5d\x81\x6b\x94\x71\xe0\x30\xe9\x0c\x19\x91\x82\x27\x87\x33\xc8\xd7\xa3\x87\xfd\x12\xfc\x32\xf2\x19\xae\x9e\x5c\x2e\x40\x8c\xfb\x7d\xac\x0d\x67\x80\x17\x16\x38\xde\xbe\xad\x09\x9c\x4e\x07\xb4\x4f\x84\xb7\x0d\x13\x07\x3b\xc9\x09\x54\x1c\x35\x9b\x88\x83\x50\xb7\xb8\xad\xd2\xf9\xa7\xb0\x50\x85\xf7\xb9\x5c\xe7\xc2\x0c\x49\x8b\xd6\x61\x9f\xca\xc9\x03\x62\xf7\xd1\xb1\x67\x50\xbd\x87\x29\x77\x44\xe5\x4e\x30\x78\x27\x56\x27\xfe\xea\x1f\x13\xc9\x38\xd6\xff\x95\xa0\xf1\xcc\x33\x9c\x7e\xdd\xa4\xcc\x06\xd3\x5d\x2b\xbe\xdb\xb7\x47\x0a\xa1\x7d\x6a\xd4\xf8\xda\x3f\xe0\x0f\xfc\x98\xf6\x02\x93\xca\x93\x09\x44\x52\xe5\xff\xa6\xf4\xa3\x53\x85\x3c\xb0\xe0\x5a\x99\x14\xbd\xf0\x6f\x22\x8b\x83\x80\xf2\x36\x18\x39\x24\xe1\x48\x7b\xda\xb5\x13\x1c\xfa\x87\x5f\x97\x3c\x4e\xd0\xf8\x95\x5f\x72\x10\x28\x41\x2a\x9a\x4e\x27\xb3\xb9\x63\x66\x14\xd9\x39\xd5\xc4\xfe\x7f\x3a\x5e\xff\x70\x98\x17\x69\x5f\xf0\x81\x9c\x33\xa4\xe9\x94\xfc\xe1\x5f\x01\x8e\x48\x6c\x58\x44\xe1\x10\x47\x21\xc6\xe6\x63\x0d\xdb\xd6\x7d\x9c\x69\x1f\xc8\xfe\x83\x5a\x94\xe6\x39\xb9\x51\x6d\xbf\x6c\x16\xf9\xc6\x3d\xa8\x19\x0c\x6c\x1c\x9b\x02\xe0\x20\xac\xd5\x19\x5a\xea\xd2\xbc\xa0\x1c\x02\x7c\x85\x84\x2d\x9e\x49\xd0\x3c\xdb\x7f\x76\x97\xf7\x70\xfe\x5f\x4d\x1e\xb2\x45\x5f\x00\x33\x7e\x5b\xe5\x1b\x4e\x42\x65\x81\xe9\x2e\x10\xd9\x1c\x55\xb0\x2d\x4a\x68\xea\xd4\xd4\x49\x95\x9a\x3a\x59\x69\xe1\xa3\x2a\x4b\x96\x92\x90\x3a\x1f\x73\xba\x3c\x20\x4a\xd5\xf2\xda\x83\xde\x6a\x1e\x85\x11\xfc\x00\x49\xeb\x1d\x55\x8d\x10\x47\xab\x08\x89\xe7\x0f\x35\xf3\xa8\xf0\xa8\x95\xba\x4e\x07\x7f\xac\x47\x79\x3e\x2c\xfd\x60\x6c\x4e\x6e\xa8\x98\x54\xeb\x56\xa3\xb4\x56\x71\x24\x17\x67\x9b\x1d\x1b\xc6\x86\xd9\x4b\xe7\x3c\x7d\xaf\xa7\xf2\xf5\xaf\x93\x45\x49\x18\x0d\x0c\x72\x45\xae\xac\xed\xec\xdd\x5d\xe5\x11\xfc\x51\xa0\x7a\x70\xd6\x6a\x49\x8b\x8a\x2c\x1a\xf0\x2a\x77\x8d\xff\x8e\xc8\xba\x2a\xb5\xbb\x7f\x7f\xf9\xdf\x65\xa1\x99\xc0\x90\x22\xd5\xc9\x14\xfd\x7c\xe3\x30\x1e\x45\x3a\xd8\x43\x16\xc8\x85\xc0\x6e\xf1\xfd\x75\x82\x64\xe1\x6c\xbd\x3a\x52\x1d\xa9\xd3\x63\x2f\x33\x07\xbe\x49\xd7\x24\xbb\x7f\x8e\x27\xf8\x7f\x43\x06\xd5\x31\xe3\x79\xf6\xf8\x2d\xc5\xf0\x97\xa4\x47\x90\xdd\x5a\x74\xca\x61\x8a\x94\xe6\x9b\x64\x49\xb0\x4f\x36\x82\xc7\x15\xd9\x7f\x77\x98\x9b\x98\xd2\x77\x3c\x92\xf4\x29\xee\xa8\xa1\xe3\x57\x68\x1f\x7c\x4e\x6c\x98\xc4\x36\xcf\x41\xc9\x86\xea\x28\xd3\x87\xc0\x04\x71\x77\x20\x40\x86\x60\xd8\x80\xed\x85\x2e\x05\xd7\xc5\x95\x90\xd0\x20\x8d\x63\xa6\x3c\x55\x1a\x82\x58\x4a\xa2\x6b\xe2\xfb\xfb\xf3\xd8\x76\xb3\x68\x79\xb9\xa1\x41\x8e\x97\x34\x25\xd2\x25\x27\xeb\x3c\x4c\x48\x35\xd6\xf3\xa9\xca\x00\x5f\x51\x29\x81\x2a\x5b\xed\xdc\x61\x4f\x24\xaa\x83\x59\x61\x45\xf4\xad\x4a\x9b\x9e\x69\x18\x70\xc8\x86\xc7\x83\x80\x45\x8f\xaf\x95\x15\x58\x1a\x0e\x06\xab\x1a\x35\x79\x43\x0b\x40\xdc\xa8\x16\x5b\x17\x0f\x36\x4d\xbe\x2c\xbd\x0a\x42\xf7\xa9\x20\x19\x97\x02\x55\x23\x8d\x0a\x0e\x94\xf0\x7d\xc7\x95\x4c\xf2\xf1\x0a\xe3\xd4\xc2\x42\x73\x39\x49\x8f\xc4\xb6\xb3\x64\x9d\x6f\x2f\xbd\xc1\x1e\x1c\xe2\xf5\xac\xa8\x75\x76\x46\x7b\xb1\x0d\x47\xbd\xfd\x98\x4a\xd8\x5e\xa7\x01\xc3\xbc\x9f\x9e\xec\xa2\x55\xd2\x97\x26\x66\x63\x05\x47\xf0\x13\xfc\x21\xdf\xa8\x1c\xf8\xd7\x0e\x1f\x9a\xe8\x9b\x3e\xa7\xfb\xa6\x75\x60\x3b\x18\x26\xcb\x8a\x91\xf5\x53\x65\x5f\x3f\x75\x53\x15\x13\x6d\x7c\xd1\x20\xb7\xc0\x51\xde\x2c\x78\x1a\x19\x0f\x42\x8d\xd3\x76\x7b\x95\x78\xe1\xca\x7f\x47\xa6\xf0\x86\xaa\xd1\xdd\xa8\x23\xc3\x08\x7b\x26\x8e\x6d\xb2\x84\xc5\x20\xe2\x55\x0a\xbf\xbe\xbe\xdd\x83\xff\x7b\xcd\xf9\xf9\x43\x0d\x8f\x94\xfa\x90\x5c\x08\x69\xf9\xf2\x2a\x6c\x85\xcd\xda\x26\x59\xde\xe5\x7d\xea\x47\x09\xb6\x83\xe3\xe7\x2c\x4c\xcb\x04\x9e\x4e\x40\xe6\x9a\x23\x19\x56\x94\x19\x46\x5c\x90\xd4\x59\x95\xd6\x2e\x60\x4d\x20\x6e\xc6\xd7\x0a\xd9\xd3\xb5\x1d\x9b\x81\x28\x5a\x09\xae\x9d\xd0\xe0\xa9\x13\xc1\x3e\x65\x62\x96\x22\x3b\xa5\xe8\x5b\x6f\x93\xe7\xa3\x32\xc4\x2f\xb9\xfe\x09\xbf\x8a\x53\x1b\x76\x68\xfb\x49\xdf\x92\x97\x5f\x62\x09\x34\xe9\x50\xae\xa9\x6e\x9b\xbc\x6d\xf3\x22\xcd\xa7\xbd\x81\xff\x19\x7d\x01\x72\xa8\xb7\x46\x8a\x8d\xfd\x18\xad\x5f\x64\x1b\x1a\xad\x1a\x5e\xe5\xbe\x89\x48\x94\x48\xd4\x20\x30\xd4\x3f\xd4\x55\xbe\x1f\x56\x72\x4d\xa5\xb3\x9d\x17\x69\x66\xa1\xda\x84\x97\x20\x04\x33\x4f\xc1\x49\xcc\x8e\xe4\xaa\xbc\x08\xe6\x77\x55\x27\x3a\xf7\x23\xc1\xf2\x7f\x5c\x5f\x77\x2a\xdd\x1c\xae\xab\xba\xa1\x5a\x9c\xe5\x1e\xa6\xf7\x46\x3e\xad\x73\xb5\x8e\xcf\xa6\xb3\x9a\x98\x7e\x14\xf2\xbc\x33\xb1\x94\x82\xa3\x5c\x57\x85\x9e\xce\x30\x01\x60\xe4\x39\xaf\xe8\xeb\xf8\xc2\xee\x2b\x95\x83\x99\xb1\xdb\x68\x51\x17\xa2\x81\x4e\x7e\x9f\x11\xa8\x4c\x73\xa5\x20\x1b\x9e\xcd\xaf\xf3\x8c\x89\x2d\xf7\xaf\x4c\xf0\x36\x48\x08\xed\x53\x9e\xdf\x18\xda\xa1\x85\xaa\x83\x34\x02\x79\x89\x49\x2f\xfb\x57\xb0\xec\x1f\x5c\x1c\x21\xba\xd3\xac\x77\x35\xfa\xa4\x6d\x1b\xa6\x7d\xcb\x07\xbf\x8b\xb0\xca\xd5\x2a\x11\x96\x37\x4f\x73\x5f\x5b\xdc\x35\x91\x08\xf2\x4d\x05\x67\x95\xff\xc5\xbd\x22\x88\x3d\x50\xc0\x16\xd2\x08\xcf\x83\x74\x4d\xe1\x7c\x06\x36\x8b\xfb\x26\x61\xd3\xe7\x32\xdb\xe5\x2f\xf1\x8d\xea\x5b\x0c\x57\xc3\x38\x0a\x4d\x8c\x4e\x0c\xd1\x82\xa5\xc8\x49\x14\x63\xf7\x29\x45\x87\x28\xcd\x30\x1e\xf8\xa6\x07\xaa\xef\xef\x41\x85\xc1\xa5\xf4\x13\xa3\x24\xb4\x09\xf8\x46\x14\xe7\xab\x5f\x60\x6b\x23\xdf\x59\x3b\x48\xf3\xa2\x6f\xb2\x65\xca\xc9\x8b\x50\x1c\x23\xc6\x59\x94\x09\x85\x33\x01\x79\xd7\x09\x70\x00\x51\x6d\x07\x8a\xd4\xdc\xb9\xd9\x7e\x27\x9e\x0c\x9e\x54\xc9\xe8\x7c\x60\x93\x8e\xed\xec\x52\x15\x73\x46\xa8\x48\xdf\xad\x3f\xa2\x80\xa0\x97\x6e\x3f\xa5\x46\x85\x84\xa1\x48\xd9\x3f\xad\xa5\x91\x4c\xc6\xb4\x63\x98\x12\x56\x08\xd3\x71\x2c\x38\xa4\x44\x5d\xb8\xe6\x74\x70\x02\x0a\x0d\xbf\x2d\xae\x62\x65\x08\x2e\xad\xa6\x07\x2a\x2f\xec\x80\xb7\x29\xb3\xf0\xd1\xe6\x11\x46\x3e\x5f\x42\xeb\xa5\x29\x3b\x0a\x02\x05\xa0\xaf\x96\x42\xbb\x02\x61\xa7\xab\xb1\x59\xb6\xc8\x3a\x0a\xbd\xa6\x6e\x49\x38\xae\x07\xee\x46\x25\x85\xf8\x22\xe9\x47\x98\x24\xef\xa6\x59\x9f\xe7\x87\xd9\xb7\x82\x09\x2a\xae\x9a\x5e\x1e\xd3\xed\x9a\x88\xab\xdf\xe2\xf7\x7b\x3f\x62\xbd\xb2\xfe\x16\x16\x9a\xb1\x49\x96\x86\x51\xde\x93\xd0\x01\x8d\xbb\x1b\x9a\x6f\x67\x43\xc1\xef\x96\xd2\x6c\x99\x9d\x2c\x78\x70\xe7\x74\xac\x78\x4e\x6d\xde\xd7\x5e\x33\x3a\xb1\x7c\x5e\x25\x96\xcf\x2b\x28\x46\x9a\x99\xf2\x44\xa7\xbc\x06\x60\x38\xc7\x46\x8a\x62\xee\x98\xda\x89\xb6\xdf\x2e\x17\x6e\xae\xfa\xa7\xce\xe8\x16\xbc\x33\xc1\x53\xfe\x44\x8f\xfa\x51\xc7\x14\xae\x2c\x81\xc3\x1b\x25\x55\x57\x1c\x72\x85\xd3\xb7\xeb\x78\xe8\x63\x33\x70\x7c\x4c\x4c\x10\xae\x89\xf6\xab\x92\xd5\x0b\x0b\xcd\x25\x3a\xd1\xa6\x14\xd7\x07\x8a\x64\xd2\xa9\xae\x14\x29\xce\xd6\x82\x17\x86\xcb\xb0\x03\xf0\xcf\x99\x4f\x80\x6f\x2a\xd3\xf7\xc2\x2c\xd5\x7a\x7a\xa6\xdc\x9b\x54\x2e\x62\x8b\xc0\x78\x58\x25\xf3\xec\x40\x39\xbe\x56\x9b\xc6\x51\xc8\xb9\xd1\x97\x38\x99\xcc\x3b\x4e\x0a\xf2\x0d\x27\xe0\x7c\x5e\x85\x44\x69\xb7\x1b\x85\x36\x9f\xf1\x45\xf9\xb7\xc9\x0b\x40\xcd\x81\x9b\x49\xa5\x03\xbf\xdc\xf1\xf0\x4f\xae\x4f\xb2\x96\xd5\xb0\x0a\x87\x69\x5e\x18\xa4\xf6\xf8\x9c\xa5\x03\x5c\xce\x5c\x6f\xbf\x63\x1b\x12\xfb\x1a\x39\x9a\x4c\x87\x38\xf2\xfd\x9b\xc7\xea\x5a\x17\x97\xe2\xf4\x88\x3b\xab\x18\x0e\x49\x2f\x28\xd0\x48\x17\x70\xa0\x13\x79\x4a\x45\x35\x48\x19\x4f\x28\x68\x8b\x7c\x98\xaf\x15\xd1\x9e\x0d\x4d\x62\x3a\x06\x14\x38\xc2\xfe\x89\xbd\xcf\x22\x7c\x18\x60\x74\x15\xde\xd4\xea\xa4\x17\x2a\x50\xdb\xf9\x79\x8a\x23\x09\x7f\x4d\x6b\x42\xd8\xb7\x14\x07\xe5\x4f\x54\x84\x52\x98\x65\xbb\xd7\x97\xda\x40\xff\xca\xe4\xa9\x23\x2f\xf1\xca\xf0\x60\xf8\x6f\x57\x08\x6b\x8d\x54\xcc\x59\x0d\x8d\xff\x2d\x4a\xbc\xa1\x6e\xf3\x29\x4e\x3b\xd5\x57\xb6\xc0\xd9\x36\x82\xeb\x51\x73\xfb\x81\x05\xc7\x8e\x43\x6f\x08\x7b\x70\x47\xd3\x98\x1e\x9f\xd4\x2d\xb5\xc5\xbe\xc6\xfe\xfd\x9c\x5b\xf8\x64\xa4\x0e\xd4\xb7\xb1\xcd\xa4\xf3\xc3\xdb\xe3\xa9\xb1\x3a\x83\xdf\xc6\xb2\x46\x6e\xf0\xb4\x92\xb4\x02\xdb\xb6\xf0\xa2\x4c\x64\x05\xb0\x2d\x18\x8a\x8b\xbc\xa6\xc2\xe5\x3e\x27\x85\x72\x0c\x04\xaa\x02\x8f\xb4\x7c\x56\x6e\x57\x6b\xe2\x0d\xfa\xf9\xd3\xf4\x29\x58\xaa\x0d\xd5\x02\xa8\x7d\xbd\x0b\x5a\x6d\xe9\x1c\x3d\x9b\x50\x49\x60\x65\x20\xe9\xf0\x08\x74\x0c\x04\x22\xef\xe5\x10\x79\x68\x26\x6c\x23\x5c\x52\x20\x00\x5c\xcb\xce\x8b\xae\x3f\xe8\x26\x5e\xcd\x79\xe2\x07\x7c\x13\x09\x0d\x87\x4b\x2e\x94\xa3\xe9\x9a\x62\x26\x48\x94\x5c\x1e\x8e\x96\xcb\x4b\x1e\xc7\x5f\x8e\x39\x03\xe0\xdc\x96\xe9\x99\x7e\x3f\x4d\x3a\xec\x4f\xb9\xee\xc6\x05\x27\x90\x79\xae\xd2\x5c\x52\x7a\xf2\x1d\x26\xca\x47\xa6\x72\x73\x02\xba\x4d\x4f\x03\x3b\xb4\x19\xa8\xe3\xf9\xac\x8b\x98\xe3\xd2\xba\xcf\x78\xc6\x97\xff\xf1\xf1\xb1\x52\x53\x84\xf1\x82\xbb\xff\x78\x4b\x5b\x54\x3c\xa4\xe4\x78\x6b\xe4\x69\xc2\x94\x89\x1d\x45\x8f\xa5\xe1\xa8\x93\xab\x62\x4f\x14\x2c\x14\xd6\xf4\x71\xd6\x39\xb6\x20\x47\xc6\x57\x8b\xa6\x2b\x32\x33\x18\xc8\xd9\xe2\x78\xa0\x1c\x42\xa8\xea\xdf\xcc\x1d\x6e\x96\x3e\xd2\x52\x66\x06\xbd\x86\x47\x6b\x02\xfc\xc3\xd7\x3e\xc3\x97\x66\x45\x66\xc8\xb4\xfb\xd8\xf8\x9a\xe2\x1a\x7d\x7f\xa4\x70\x42\x17\x15\x1c\xa3\xf4\x75\x99\xc0\x4b\xd7\x4b\xb9\xf9\x4d\xa9\x17\x1c\x9f\xa8\x9d\x6e\x3f\x97\xf6\xef\x6f\x0e\x13\xfb\xea\x40\x51\x3a\x38\xed\x27\xd7\xe2\x7f\xa2\x3c\x02\xc4\xaf\xed\x99\xac\x6f\x42\x3b\x2c\x88\x9f\x90\x1e\x1b\x45\xda\x37\x89\x88\xe1\x98\xca\x76\x9d\x77\xf1\xc7\x60\x98\x44\x4e\x2c\x4b\xa4\xb1\x1b\x4a\x32\x7b\x1b\x6a\xfa\x20\x69\xd0\x3e\x47\xfe\x21\x0e\x67\x38\x25\x7c\xad\x49\x88\x86\xed\xbc\x88\x8a\x61\x61\x49\xd6\xb0\x4e\x27\x7b\xfb\x0c\x31\xbc\xc3\x16\xdb\x38\x5e\xef\xab\x71\xbf\x3f\x61\x01\xdb\xa6\xf3\x50\xe3\x57\x7e\x49\x54\x4f\x15\x48\xf2\x77\x46\x3e\x65\x71\x03\xc6\x48\xc8\x20\x3c\xc3\x14\xf3\xfa\x2b\x31\x66\x9f\x0a\xaa\x11\x42\x48\x07\x36\x69\x78\x8c\xeb\x71\x05\x1b\x3b\xae\x72\x86\x5e\x60\x0d\xf3\xe6\xd4\x2e\x9c\x70\xe7\x39\xaf\x65\x3d\xb0\x66\x99\xb2\xc8\x78\xec\xd7\x03\x55\x30\x3c\xad\xe4\x6b\x4f\x2b\x52\xf7\xd7\x9d\x26\x4a\x31\xe0\xc3\x1e\xe6\xf0\x4e\xe0\x4d\xe3\x9d\x3a\xd1\x01\x52\xa3\x9f\xf2\xc0\xbe\x2d\x95\x84\x5a\x1f\xe9\x82\x9d\x87\x2d\xe4\x83\x34\x33\x1d\x6e\x88\x67\x20\xa5\xe2\x33\xbb\xa8\xe2\x70\xb0\x6f\x96\xff\x26\xfa\x26\x5e\x7a\x74\xbd\xa6\xc5\x74\x8e\x72\xdf\xcb\x12\x42\xc1\xa6\x9e\xd0\x06\xf6\x84\xc2\x4f\x98\x78\xd8\x8f\x92\x61\x1f\xde\x28\x17\xba\x46\xdb\x51\x1f\x88\xf8\x3e\x70\x0a\x0a\x79\x69\x8b\x96\x99\x37\x96\x3e\xe9\x98\x13\x5d\x53\xff\xa5\x1a\xc1\x82\x97\x9a\x69\x82\x2a\x0d\x8e\x44\x66\x9c\x81\xa9\xbf\xae\x2a\x2b\x3b\xc7\xe5\xa0\x23\xbf\x30\xad\xe8\xa6\x9c\x34\xc7\x73\x4e\xb7\x5a\x83\x88\x3c\xfc\xd3\x74\xe2\x68\xa9\x27\x65\x14\x01\x10\x37\x16\xbc\x18\xb7\xa7\x72\x6b\x9b\xce\x1e\x58\x5f\xe6\xa0\x56\xc7\x0c\x4b\x9f\x72\xc2\x68\xec\x01\x47\x57\x51\xe5\xc4\xc1\x74\x1e\x47\x01\xdf\x8c\x14\x47\xf2\x05\xf2\x57\x24\x95\x41\x27\xae\x24\x9f\xb6\x0f\xcf\xfc\x3c\xe5\x66\x11\xcc\x21\x8d\xfc\x40\xa5\x94\x1f\x54\x75\x47\x9e\x3f\x54\x86\x49\x1d\x25\x37\xc6\x79\x71\xbe\xa9\xc4\x70\xe5\x0c\x64\x36\x2f\xcc\x30\x33\xcc\x4e\x8d\x23\xfb\x92\x3e\xbf\x2f\x05\x3f\xf7\x19\x85\x3d\xcf\xa0\x35\xad\x68\x11\x04\xb3\xe7\xea\xb2\x3e\x3a\x86\xaa\x88\x64\x28\xb7\xbf\xf1\xe2\x6c\x73\x98\x8b\x4b\x2b\x22\x06\x1e\x97\xf3\x53\x0d\x3e\xdc\x70\x41\xd4\xc0\x64\x45\x14\x46\x03\x92\x1c\x6f\x38\xe6\xf2\x77\x46\x4a\x7e\x9c\x3b\x6e\x31\x72\x53\xe3\x47\x75\x0f\xe7\xdf\xf0\x8d\x19\x57\x83\xc6\xd7\xfe\x81\xd3\x52\x28\x1f\x15\xa9\x82\x0f\xd8\x39\x86\xab\x7c\x03\xae\x25\x30\x0d\xb7\x48\xcf\xc8\x21\x25\x1d\xac\xf9\xca\x44\xa5\x58\x91\x7f\x70\xef\x39\x00\xf5\x0f\x83\xdb\x49\x98\x8f\x29\x50\x40\x34\xb4\x49\x69\x52\xee\xeb\xc0\xa2\x43\x3c\x77\x6a\xd4\x78\xe6\x19\x4e\x55\x43\x76\x18\xde\xe0\x6d\xdd\x2e\xfc\x7d\x0d\xf9\x3c\x46\xa4\x3f\x28\xd7\x1d\x87\x33\xe5\x8a\x9f\xa5\xcb\x86\xf3\xea\x81\xd6\xc8\x42\x6e\x0f\x99\xaa\xcd\xc0\x4b\xe6\xb2\x84\x1b\x42\x81\x33\xa8\x3c\x3b\x2c\xba\x6f\x1d\xbe\x86\x02\xb5\x8b\x2c\xf7\x4b\xbc\x3e\x35\xf6\x61\xf2\x4a\x64\xcb\x48\x07\xa9\x75\x8c\xc0\x1d\x45\x82\x7f\xa7\x6e\x79\x2c\x27\xf6\x08\x9a\x51\x11\xef\x81\x59\x16\xbe\x35\xf3\x6b\x72\xe3\xba\x22\x6f\x8e\x92\x3c\xca\x9d\x9c\xaf\x24\xc3\x7c\x98\x7f\xb9\x16\xef\x65\x8a\xc8\x26\x0e\xef\x25\x5a\xe7\x8a\xa9\xfb\x72\xa5\xdb\xa5\xf4\x7e\xb2\x74\x25\xca\xa3\x34\x61\x16\x5f\xe1\x5c\xf6\xf6\xfa\x6c\x3d\xb9\x49\x1c\x33\xe9\xa5\xb0\x28\x97\xd3\x2f\xf4\xca\xdb\xd3\x63\xae\xb0\x6e\xb3\xc2\x44\x49\xbc\x0a\x57\x44\x83\x6f\x71\x64\xde\xa7\x01\x15\x7e\x36\x9f\x1e\x29\xec\xab\x26\x7f\x08\xaf\xe6\x6a\xbe\xaa\x23\x86\x86\x58\xb4\xd3\xbc\x59\x60\x51\x36\xd7\x3e\x52\x2e\x64\x76\xb4\x38\x94\x17\xc9\x01\xed\x40\xac\x0e\xd0\x20\x20\x50\x7e\x4f\xfe\x01\xc8\xa7\x70\xb0\xd6\x01\x50\x4c\x98\xa5\x79\x3e\xe5\x17\xf0\x1f\x07\xbe\x43\x00\xb8\x59\xd1\x7b\xd6\x3f\xd9\x8f\x5e\x9d\xa2\x3d\x07\x47\x15\x62\x8d\x18\x06\x0d\x33\xbd\x58\x27\x8a\xc3\x6a\x98\xba\xe9\x62\x5d\xa5\x0a\x77\xb7\xfc\xbc\xee\x18\xfb\x21\x35\x51\x66\x3b\xd3\xca\xee\xdf\xa0\x83\x59\xfa\xb7\x54\x2f\x17\xc6\x8d\xff\x48\x51\x11\x89\x0c\x27\xcb\x79\xd7\xb1\x8b\x7d\x16\xe7\x7f\x91\x45\x49\xba\x62\x94\x44\x05\xf3\xc8\xf2\x8d\xf3\x45\x4b\xbf\x29\x4a\x42\xe0\x30\xb4\xf2\x97\xf4\xc0\x3f\xea\xab\x73\xd6\xee\xa3\x75\xe0\x24\x22\x4a\x63\x81\xc9\x62\x04\x3f\xe6\xfe\xfd\x09\xcd\x65\xdd\xc5\x87\x36\x57\xf9\x7c\xf9\x93\x08\xfc\x6e\xd3\xc4\xc1\xa1\xbc\x1a\x28\x92\xac\xa3\x23\x45\x1e\x02\x8e\x7b\x2d\x4e\x02\xd3\x38\x85\xae\x35\x96\xd8\xa7\xd5\x0e\x6b\x7a\xa7\x26\x71\x78\xb0\x99\x87\x99\xe9\x83\xa7\x79\x02\x29\xe8\x39\x2a\x4f\xaa\x9a\x64\xc7\x1a\x1c\xa0\x42\x3c\x4d\x43\x20\xcc\xd3\x35\xd0\xd8\xbe\x29\x2c\x44\xbc\x17\x84\x86\x1b\xfd\x97\x7c\x5d\x51\x66\x9e\x9f\x3f\xd4\x34\x5f\x21\xeb\x80\x25\x7d\x7e\xb4\xf3\x2b\x72\xa9\x9c\xfb\x7e\x18\x9b\xe1\x52\x2f\x8e\x12\x55\xd1\xe4\xe1\x15\xf8\x48\x15\x6b\x7c\xb0\x59\x18\xef\x86\x61\x54\x7f\x43\x15\x21\x7e\x43\xe1\xcb\x1d\x0f\xcc\x04\x9d\xdd\x48\x71\x03\xaf\x29\x2a\xe7\x7e\x14\xc7\xcc\xae\x02\x93\x01\x07\x0d\xa7\xd2\x51\x05\xd8\xe6\x6c\xa0\x54\xde\x6a\xea\x4e\x71\x3a\xc8\xa3\x8e\xc4\x5c\xc0\x3b\x4e\x91\x33\xc5\xd7\xad\xaa\x45\x3e\xd8\xa4\x0c\x6c\x26\xb9\x77\x11\x1c\xac\x5a\x24\x78\xb5\x17\xea\x7a\x05\x26\x74\x0a\xe6\x7c\xc3\x41\xf9\x18\x92\x54\xa9\xd3\xe2\x28\xa3\x12\x79\x5c\xcc\xd4\xa6\x16\xa5\xd9\x74\x88\x03\x9b\x84\xe9\x30\x33\x4b\xc4\x0c\x4b\x4b\x02\xa7\xfe\x6d\xa5\xf4\x7c\x5b\x79\xf3\x7d\x4b\x8e\xd7\xdc\x61\x4e\xaf\xec\x44\xbf\x3b\xdf\xa8\xa6\x90\x5f\xf8\x85\xff\xa2\xd1\x50\x4a\xe2\xde\x1f\xd6\xcd\x62\x7f\x7f\x61\x4e\xa5\x1a\x76\xed\x21\x80\x1b\x32\x65\xec\xb9\x0a\x5f\x37\x06\x51\xa8\x90\x1b\xfb\xf7\x73\xb2\xef\x0b\x2d\x5f\xc6\x71\x2f\x03\xde\x64\x49\xbf\xf9\x68\xe0\xec\x24\x23\x4d\xd1\x7b\x4c\x77\x6b\x9c\xf7\xfa\xff\xbf\xf9\x7b\x13\x62\x8d\xa3\x09\xe5\x44\x4f\x58\x7b\x8a\xbc\x63\x4c\xc4\x5b\xea\x04\xe4\xe6\x6a\xbc\xc8\x77\x11\xbe\x09\x51\xa6\xd2\x21\x38\x3f\xf2\x2a\x32\xeb\x23\xcf\xcc\x79\x5a\xc3\x92\x40\x3c\x8d\x38\xf5\x87\xf4\x2e\x08\x4d\x77\x8d\x9f\x52\x51\x50\x6c\x97\x5c\x8d\x5b\xd4\x38\xd0\x90\xcb\xd7\x1a\x7d\x9f\xa5\xc4\xc5\x9f\x66\x04\x8a\x59\x70\x71\x8a\xe7\x43\xc0\xd3\xf0\x35\x5e\x06\x27\x08\x83\x57\x25\xd5\xa7\xf8\x03\xca\xa0\x75\xca\xd7\x08\xd7\x15\xc7\xf8\xd9\x91\xd7\xca\xbc\x3b\x81\x39\xb5\xed\xd5\x5d\x3e\x6d\x70\x0b\xa6\x15\x13\xfb\x3f\x07\xde\xe4\x3f\x04\x24\xbe\x74\xe2\x96\x03\xc2\x7f\xa4\xa5\xda\x4f\x3a\xe6\x46\x93\x85\xbd\xa9\x0a\x3b\x8a\xa0\x9f\xe9\x0d\x70\xd0\x5e\x53\xa2\x03\x61\x6c\xb2\x28\xb1\x65\x80\x40\xcb\x07\xa0\xcf\x9b\x0a\x00\x7a\x73\x22\xcf\xd0\xb1\x9d\x2f\xc1\x89\x80\x03\x0f\xe8\x10\x76\xc2\xd3\x2d\xdf\xfc\xfd\x54\xab\xf1\xc2\xec\xd6\x31\x85\x1b\xbf\x88\x86\x68\x9c\x46\xcc\x90\x8a\xb5\xc2\x7e\xbf\x53\xd5\x2f\xf7\x16\x86\x00\xb2\x0f\xa8\x43\xfc\xb5\x31\x1d\x06\xae\x49\xc7\xe5\x34\xaf\x06\x8a\x3d\xe1\x2e\x70\xa4\x38\xcd\xb6\x34\xf7\xe5\x83\x91\xe2\x98\x7c\x0c\x2e\x3d\x66\xed\x4a\xe0\x0f\x3a\x26\xe7\x43\xa4\xfb\x80\xc4\xcd\x38\x53\x34\x52\x4a\xcf\xf7\xcb\x2d\xb0\x75\x1b\x81\xb0\xc4\x1b\x65\x28\x21\xd4\x20\xd8\x61\x52\x35\xab\x92\xf7\xbd\xd4\x1c\x64\x51\x07\x99\x41\x47\xfa\xa9\x88\x3e\xeb\x24\x17\xba\x51\x62\x12\xa7\x3c\x01\x2c\xdf\xa6\xc6\x8d\x6f\x6a\x52\x51\xdb\x1e\x16\x33\x2a\xf9\xc6\x36\x58\x3a\xeb\xcb\xaf\x90\xf6\xa4\x72\xd6\x38\x55\xaa\x38\xa2\xd6\x14\x5b\x5f\x6c\x0d\x55\xa2\xca\x6f\xc0\x8a\x3e\xaf\x9a\x88\x80\x99\x60\x0e\x43\x17\xce\xe7\x61\x16\xb5\xdb\x31\x2b\x17\x0a\xfb\xc0\xc6\x48\xa9\xb7\x6f\x28\xbd\x82\x30\x36\x7d\x90\x7a\x2d\x1e\xe4\x0c\xf9\x37\xe9\x7b\xf9\x5a\x41\x0e\x6d\x9e\x93\x2a\x9a\x52\xb2\x60\xc0\x1e\xdf\xd4\x11\xf2\xf7\xd3\x0c\x24\xab\x5b\xfc\x08\x92\xeb\x51\x4c\x3f\x4f\xb7\x3c\xc0\xe8\x36\x16\x02\xcc\xdf\xed\x0a\x6a\x76\xee\x70\x33\x31\x79\xc7\x7c\xe3\x57\xff\x2e\x24\x3b\x26\x04\x41\xb8\xfe\x2f\x76\xb1\x9a\xef\x39\xd8\x1c\xd8\x8e\x89\xe5\x88\x43\x08\xf8\xeb\x23\x55\xed\xfa\x75\x45\x76\xca\x5d\x20\xc5\x2a\x26\x54\x34\x85\xe9\x35\x10\xcd\xbf\xaf\x84\x61\xa1\x46\x82\xe8\xef\xbb\xa8\x99\xb0\x57\x5e\x09\xd6\xbe\xda\x24\xb2\xe8\xe9\xf2\x64\x41\x2e\xf2\x61\xb8\x6d\xd2\x6b\xad\x92\xe5\xf7\x91\xe7\x95\xfc\xf0\xe7\x14\xed\x4e\x98\x66\x83\x34\x03\x36\x70\xc1\xf7\x0e\x29\xb6\x9d\xf5\xc0\x23\x13\x97\x4c\x96\xb0\x88\x37\x7e\xe6\xaa\xe2\x16\xbd\xaa\x8a\x60\x59\x1a\x2e\xdb\xae\x0f\xba\x98\x12\x56\xc7\x3d\xeb\xa3\x87\xbd\xc2\x2e\xd2\x1b\x72\xe8\xd1\xa3\x3b\xc9\x28\xd7\xfa\x8f\x93\x45\x28\xab\xea\x30\x41\x71\xd4\x45\xb6\xfb\xa0\xeb\xb1\x55\x94\xc3\xe7\x34\x51\xe1\x5d\x65\x49\x85\x16\x36\xb2\xf9\x0c\x0d\xba\x93\xa0\x77\x7e\xea\x09\xac\x29\x57\xe7\xdc\xbf\x9f\x41\xe7\x5b\x81\xcf\x38\xbe\xaf\x33\x8e\x36\x1c\x66\x51\xb1\xba\xdb\xf7\x3d\xa3\xc8\xe6\xf8\x4a\xcb\x97\xc4\x77\x4c\x90\x8f\x81\xd4\x8d\xaf\xe9\x09\xa4\x98\xab\xfc\x46\x56\x1c\xe3\x9b\xc9\x06\x8a\x8e\xfd\xbc\x57\xf7\xba\xa3\x71\x63\x37\x61\x72\xf0\x34\x9c\xa9\x80\x87\xf2\x2e\x5e\x0f\xcb\xe5\x86\x16\xf7\xdb\x1c\x29\x47\x7e\x13\x16\x1e\xaf\xf0\x9f\x68\xb1\xc2\x5c\x6f\x20\x03\x23\x0e\x93\x66\x3b\xda\x82\x33\x82\x70\x8c\xf3\x1b\x02\xd2\xf2\xd8\xba\x46\xcb\xf3\xb6\x1c\xd5\x64\x3b\x17\x41\x00\xc9\xd2\xc4\x81\x97\xb0\xdf\x04\x14\x5f\xa4\xe0\xe8\xec\x40\x92\x16\x07\xae\x14\xb7\xca\x73\x80\x15\xf5\x94\x4f\xd1\x37\x45\xcf\x12\x47\x6a\x8e\x3e\x7e\xac\x8a\x93\xca\x05\xb9\x4c\x6b\x1b\xa9\xbd\xb7\x14\xb0\x63\x10\x9b\xa4\x34\xa9\x3e\x0b\x88\x7e\x2b\x16\x12\x1d\xd3\x18\xc3\x91\x78\x57\x05\x03\x51\x7f\xc0\xad\x00\xe5\x1f\x63\x38\xfe\x3d\x0d\x21\x5f\xab\x6e\x35\x9b\x74\xf6\x96\x4b\x0c\x61\xf8\x5f\xe2\xfc\x02\xc1\x44\xb3\xe5\x7d\x16\xb0\x40\x31\x67\xf8\x48\x55\x94\x9f\x1c\x7b\x4c\xf7\x97\x94\x2e\x01\x0b\xd0\xe3\x66\x1a\x4f\x2a\x0d\x16\x34\xcd\xf8\xae\xbd\x63\x4c\xa0\x8b\x00\x9d\xff\x72\x8e\xbc\x02\x01\x0a\x2a\xaa\xff\xd5\xa4\xe8\x59\x1a\xcd\xf2\x97\x15\xf6\xff\xa0\x57\x69\x3c\xb0\xe0\x80\x94\x12\x2e\x13\x86\x20\x32\x31\x21\x2e\x71\x3c\x7d\xa9\xe5\xb9\x15\x79\x63\xe0\x8c\x7c\x40\x8e\x2c\x8c\xe3\x09\x72\x64\x75\xce\x9f\xa9\x3d\x2b\x49\xdb\xfd\x73\xd0\xe2\x6e\x4c\x78\xa5\x8e\x3c\xeb\x87\x9a\x9c\x32\xb3\x44\x11\xdb\x50\xd6\xf9\x38\xcd\x10\x5f\xd7\xda\x9c\x4e\x16\x75\x0b\x14\x30\x1c\x75\x8a\xa7\x51\xa9\x20\x82\x49\x74\x2c\xcb\x6c\x3e\x48\x3d\xa3\x1a\x3c\x9b\xc6\x58\x15\x9f\xef\x8d\xfc\xb1\xf0\x78\xcb\x63\xb0\x12\xf3\x1a\x1d\x59\x96\x60\x79\xd2\x42\x4f\x3f\xcf\x37\x95\x20\xfd\xc0\x42\x33\x33\x83\xa8\xc3\x31\x93\x57\x54\x9e\x28\x9c\xd4\x64\xcd\x0a\xdb\x1f\x88\x64\x33\x33\xce\xab\x90\xb4\xde\x04\x0f\xb2\xf4\x55\x10\x18\x31\x3b\x13\x6d\x46\x61\x6a\xf2\x0a\x4c\x89\x25\xd9\x82\xc2\x30\xc6\x42\x98\xe4\x90\x51\x73\xc8\x13\xaf\x6d\xa1\xb6\x47\x11\x31\x65\x07\x16\xc3\x86\x6a\xe3\xba\x1f\x78\x49\xd7\xf3\xaa\x0d\x67\xc5\x24\xa4\xf6\xec\x7b\xd0\x98\x68\x8d\x6f\x46\xa2\xea\xd7\x89\xf2\x28\x09\xe3\xc8\x85\xa3\x48\x84\x22\x3f\xc2\xd7\x75\x0c\x04\x6d\x93\xdb\xd8\xe6\xf9\x94\x3f\x1c\x77\xb4\xc8\xc2\x3a\xd0\x9b\x7b\x97\xeb\x8a\x19\x2d\x2f\xd2\xb8\x78\xad\x6f\x98\x0c\xc4\x11\xe1\x78\xa0\x89\x4a\x59\xd8\x15\x9b\xad\x16\xbd\x28\x59\xda\x53\xae\x7f\x81\x83\x35\x1c\xcb\x33\x88\x91\x5d\x27\x7b\xb9\xd9\x61\xed\xa7\xe0\xa8\x0b\x2d\x54\xb9\x01\x70\x90\xbe\x07\xf3\xec\x52\xc9\x6e\x8b\x9d\x51\x74\x73\xd5\xa6\xeb\xb9\xc3\xcd\x41\xb4\xe4\x82\x70\x29\xcb\x78\xd3\x76\xbe\xb2\x13\x5f\x98\x2d\xfd\xae\x02\xed\x4d\x8e\xd7\x61\x71\xf6\x33\x79\x1d\x28\xb9\x34\xcc\x56\xa2\x15\x4b\xd5\x45\xac\xd4\x5b\x7c\xba\xe0\xac\x41\xff\x0d\xec\x3e\x53\x43\xc1\xeb\x3c\x5b\x93\x17\x6a\x76\x59\xa1\x82\xc1\xb2\x8a\xaa\xe1\x52\x25\xf5\xb7\x38\x7b\xc8\xfb\xed\xdc\xa3\xc7\xb4\x57\xf4\x9a\x42\x81\xb5\x3d\x49\x3d\x3f\xdf\xec\x44\x2b\x36\xcb\xa3\x6e\xc4\x81\x3d\x96\xe3\xdb\x1a\x59\xfa\x76\xf0\xb4\xa2\x32\x4f\xf2\xa8\x43\x10\xda\x5d\xaa\x7b\xee\xbc\x52\xf8\xbd\x47\xc1\x3a\x33\x54\x4e\x74\xe8\x29\x08\x32\xd3\x71\x31\xd6\xb0\x92\x67\x99\x3b\xdc\x3c\x62\xb2\xc4\x41\xe1\xa4\x4b\xbb\xe1\x98\x3d\xa6\x5b\x9e\xd9\x63\xb3\x32\x7f\x5f\x6d\xda\xa8\xe8\x59\x68\xd5\xb9\xee\x84\xfd\xfb\xb7\xae\x8f\x14\x17\xe7\x7b\x88\xac\x24\xa1\x57\x8e\x1a\xbc\x94\x3d\xc4\x98\x81\xcf\xb1\x08\xba\x24\x2e\x3d\xa2\x2b\xb4\x99\x35\x71\xae\x1a\xba\x27\x45\x0c\xb6\x5b\x9c\xfd\x73\xcd\x74\x98\x84\x0c\x52\x76\xdd\x7b\x1e\xee\xf0\x9b\x15\x38\x15\xfc\xc4\xa5\x9e\xc7\x04\x8a\x0b\xef\xf3\x2e\x6c\x50\xf1\x46\x1b\x95\x20\xe0\xab\x65\x24\xd3\xb5\x59\x36\x09\x0b\x04\xc5\x13\x5f\x57\x90\x2e\x65\xe4\x68\xf0\x9c\x58\xa1\x53\xe4\xf2\xf0\xf5\xd8\x7b\x8e\xdd\x34\x2d\xda\x26\x8e\x67\x7c\x9f\x3e\x4b\xf6\xea\x5e\x0a\x2c\xf9\x93\x81\xae\x31\xfc\x8e\x6e\xa2\xfb\x9d\x3a\x38\x46\x52\xbe\x78\x18\x0f\xdb\x9c\xac\xad\xb3\xea\xfb\x94\x6d\xb2\x06\xf4\x13\xa2\x23\x56\x3e\x12\x36\x1e\x24\x45\xa5\x0a\xa2\x79\x19\x87\xdd\xee\xb4\xe7\x46\x3b\x47\xc5\x31\xc7\xf9\xeb\x39\x94\xd1\xcc\xe7\xb8\x69\xbd\x94\x2f\x7a\xe6\x29\xcd\xe2\xb4\xa3\x5c\x9e\xef\x28\x3e\x85\x35\xce\x12\xc7\x28\x90\xed\x69\x29\x28\xf9\x5d\x9a\x0a\x1c\xdb\xb7\xd4\x11\xdf\xb1\xa1\xed\xb7\x6d\xb6\x8b\x9c\x4a\x84\xb2\x9c\xb8\x43\xa0\xf5\xbe\x42\xa6\xac\x21\x87\xed\xd2\xb6\xe5\xd8\x4a\x46\xa1\x7c\x22\x38\x4b\x3b\x5b\x9a\xca\x22\x59\x89\x3c\xd8\x85\xd5\x08\x02\x25\xcf\x7b\x69\xa2\xdb\x24\xc9\x85\x8f\x1e\xf8\x28\xb4\x3e\xf1\xf5\xf8\x31\x7f\x7a\x45\xb9\xcd\x72\x00\x72\x84\x81\x5a\x43\x89\x99\xe0\x41\x8a\x02\xaa\x56\xfc\xb3\xe0\x09\x87\x06\x12\xcc\x38\x1e\x0e\x65\x54\xce\xfc\xf1\x4d\xad\x4e\x72\x9e\xa6\x89\xf4\x40\xa0\xfc\x74\x27\xf0\xca\x77\x2c\x46\x00\x2f\xf2\xbc\x6a\x31\x89\xa3\x2e\x18\x34\x45\x5b\x4a\x35\x36\x2b\x04\x0d\x3f\x2d\xe7\x50\x95\x87\xfe\x4a\x3a\xcc\x12\x13\x47\x79\x19\xd1\x95\x51\x87\xd4\xa1\xfc\xb1\xf4\x6b\xe4\xc8\xa1\xc8\x78\xba\x56\xb5\xd2\x35\x39\x36\x3c\xaa\xe6\x82\x42\xa1\x5c\x98\x08\x9d\xba\xa6\x68\x28\xc9\xf0\x53\x4a\x26\xfc\x54\xf0\x39\x67\xa4\x86\x89\x19\x16\xbd\x34\x23\x6a\x87\xd2\xa8\xb1\x10\x00\x3d\x8d\x88\x02\x38\xb9\xd5\xcc\x74\xf2\x22\xb3\xb6\xe0\x4a\x27\xb2\x7a\xdc\x8a\xc5\x37\x95\xac\xc7\xfc\x7c\xb3\x67\x56\xb8\x99\x5c\x12\xe7\x1e\xd9\x7a\x4e\x75\x0b\x16\x3d\x9b\x66\xc8\x4a\xea\x96\x31\x05\xa7\x58\xf0\xec\x08\xce\xf8\xec\x24\xe3\x23\x4a\x4d\x8a\x15\xfb\x9c\x2a\x98\x11\x25\x45\x96\x26\x51\xb8\xbb\x1c\x3e\x39\x71\xe9\xc9\xf9\x86\x1c\x06\x11\xa5\x21\x6b\xca\x2a\xa6\xca\x3c\x30\xd9\x29\x62\x96\xb3\xc8\xf2\x29\x85\x1b\xe1\x9b\x3b\x5b\x39\x82\x17\x16\x0e\x35\xfb\x26\x19\x76\x0d\xe3\x7c\x49\xa8\x80\xb8\xbb\x36\x82\xcf\x7b\x0d\xcc\xcc\x24\x39\x29\x5a\x12\x77\xa2\x17\x9d\x5b\xd7\x7a\x76\xeb\xaa\xf4\x16\xa6\xcf\x3e\x5e\x4e\x9c\x74\x3f\x2a\xda\x76\x74\x2e\x62\xcd\x32\x5b\x2c\x8e\x29\x74\x91\xc3\x1e\xbf\x49\xe7\x9a\xab\xcc\xb8\xd4\xf3\xaf\x05\xba\x75\x97\x02\x81\xad\x73\x74\x74\xbb\xca\x4d\xb9\xbc\xa4\x13\x45\xb5\x06\xdc\xd2\x58\xd3\xab\x98\x35\x3c\x1d\xdb\x7e\x97\x41\xf1\xb9\x91\xf7\x55\x9e\xa9\x3b\x4c\x42\xd5\x49\x8b\x23\xe0\x4f\x02\xef\x73\xfe\x49\x0d\x74\xe9\x60\x33\x36\x4b\x4b\xae\x98\x85\x77\xd8\x41\x75\x22\xbe\xae\xd4\x89\xca\x0f\xd9\xb8\x63\x33\xb6\x5b\xc2\xf0\x59\x7e\x46\x18\x42\x95\x73\xdb\x33\x71\x9c\x1e\xb1\x19\xcd\xca\xd6\x4d\x9a\x8f\xad\x9b\xca\xfd\x35\x6d\x93\x74\xd2\x84\x1d\x25\xe4\xec\xaf\xa8\x6a\xfe\x15\xd5\x2c\xd8\xb6\x4b\x51\x52\xfa\x2f\xbb\xbc\x71\xe7\xd2\x03\xbc\xa4\xab\x4a\x01\xee\x06\xd6\x99\x13\x70\x28\x17\x02\x52\x22\x8c\x77\xe5\x1b\xd5\xee\xb4\x34\xb4\xd4\x89\x38\x77\xd8\xf5\x97\x94\x53\xcb\xd7\x13\x96\x22\xed\xac\xee\x6d\x38\xee\xbd\x7f\x8b\xf9\x12\xe3\xa6\x3a\x2e\xd1\x30\x85\xf4\xc3\x3e\x20\x68\xb9\x7b\x18\xcf\x8d\x61\xbe\x35\xf2\x2a\x5b\x5b\xbc\x84\xb0\x41\x76\x02\xa4\x0d\xcc\xc5\xef\x2a\xe9\xd5\x47\xc7\xaa\x53\xe2\xa8\xd2\x1c\x9f\xa2\x92\x94\x24\x42\x6b\xed\xb9\x81\x54\xa8\xfb\x08\x47\xd9\xb2\x8b\x9f\x50\x2a\xb9\x2b\x69\xbc\x62\x3b\xf0\x4a\x71\x86\x1f\x53\x24\xa1\x37\x94\xfc\xc3\x1a\x25\xb7\x84\x98\x5f\x39\x17\xac\x0c\x24\x28\x6e\x55\xfd\x7a\x75\x60\xb3\xc8\x26\xa1\x9d\xa1\xef\xc7\xd1\x8a\xe8\x19\x9e\xd7\x55\xcd\x5b\x74\x46\x45\x60\x68\xee\x42\x94\xf5\x4f\x6a\x3d\x3c\x49\xbf\xa1\xab\xc1\x71\x4a\xb9\xce\xaa\x37\x46\x4a\x21\xef\xba\xd6\x95\x8f\x87\xfd\x36\x6f\x09\x21\xa3\xe2\xac\x15\xdf\xb8\x3e\xd7\xc1\xb0\x1d\x47\x79\x8f\x22\x0a\x27\xb5\xe4\xa2\xbf\x6a\x5f\xc8\xfc\x7c\xf3\xb5\x34\x11\x14\x3f\xbc\x96\x3b\xb0\x3d\x7c\xa3\x48\x1a\xb2\x34\x5c\x9e\xda\x8e\x3e\x16\x05\x2e\x35\x5f\xe3\x40\xa3\xf5\x96\x7a\x05\x09\xe2\x63\x5d\x9d\xc4\x52\x74\xc6\xb0\x1c\x0a\xbc\xfe\xef\x53\x11\xc6\x41\xfa\x9c\xab\xc5\xaa\x68\xfc\x47\x23\x1f\x0e\x7c\x5b\x01\x7d\x59\x67\x40\x1a\xcd\xb7\xaf\xb1\x17\x0f\x36\x4d\x3f\x1d\x26\x92\x39\xc0\x89\xc8\xf0\x29\xbe\xa9\xb4\x7d\x90\x34\x8e\x0d\x01\x23\x15\xb1\x6d\x7a\x7a\x8c\x3a\xe4\x71\x51\x49\xfc\x68\xe4\xd7\xee\x78\xa2\xc4\xb5\x1c\x25\xc8\x24\x63\xa0\x76\x70\x1e\x0b\x8b\xe6\x38\x1f\x1c\x1a\x79\x55\x8d\x71\x7a\xd6\x74\x04\x22\x87\x59\x61\x81\x21\xb1\x47\xe5\x38\x48\x09\xb4\x0e\x35\x6e\x62\x68\x37\xc0\xc8\xa3\x8d\x8c\xaf\x27\x9e\xd5\x44\x9d\xcf\x29\x9c\xc5\x0e\x0a\x8f\xf8\x0c\xc6\x7a\x93\x0e\x39\xd5\x7d\xda\x18\xfb\x8c\xdf\x6e\x7e\x3b\x8c\xd6\x34\x88\xb3\x11\x28\xed\x68\x29\xa8\xd6\xee\x31\x45\x64\x4e\xd0\xce\x89\x8c\x7e\x9f\x92\x68\xc8\x1a\x7d\x8f\x4e\x37\x7c\xf1\xdb\x81\xd2\x2a\xff\xa6\xea\xec\xbd\xab\x02\x9c\x99\x31\xad\x14\x05\x3b\x96\xbc\x69\xa3\xa5\xf6\x1c\x97\x3a\x30\x03\xbb\x60\xcd\xb0\xba\xae\x8f\xbc\x95\x7f\xbc\x55\xb7\x87\xdb\xc3\x3c\x4a\x6c\x2e\x10\x31\xe6\xb1\xd1\x34\x3c\xb5\x5a\xf8\x2b\x91\x2d\x12\xd3\xb7\xb9\x56\xf5\x7f\x23\x50\x3d\xae\x6f\xf8\x4a\x97\x89\x57\x4c\x27\xcd\x4c\x32\xe5\x7b\x84\xd1\x5f\xca\x6d\x2c\xf8\x9c\xf4\xb8\x09\x26\x32\x1d\x16\x03\x9b\x75\xd3\xac\x4f\xa4\x0a\x13\x2c\xe1\xd2\x14\xf3\x67\x8a\x0a\xb4\x74\x63\xa3\x64\x09\xf4\xf7\x58\x56\x37\x15\x07\x39\xd0\x0b\x30\x80\xf7\x47\x7a\xa5\x53\xd9\xab\xaa\x24\x45\xed\x06\xdd\xd8\xb2\x60\x17\x52\x4c\x9b\x4a\x4c\x6e\x53\xb7\x2c\xda\xcc\xee\xa3\x69\x80\x7b\xc1\xdc\xb9\x2e\x6f\xec\xb3\x5c\xe7\x55\x93\xcd\xdd\x40\x69\xd6\x5c\x0a\x94\x5d\xb8\x4e\x08\x49\xbe\x56\xb4\xb5\x7f\x4e\x47\x80\x64\x6e\xbd\x0c\xf9\x25\xac\x27\x85\x63\x14\x16\x35\x5e\xa7\x70\x13\x77\x8e\x55\x43\xd2\x71\x95\x14\xe8\x9b\x64\x39\x4a\xe0\x6a\x63\x22\x7e\xa4\xf8\x36\x7e\xe4\x68\x4b\xa9\x51\x8f\x8d\x0e\x0b\x0a\x6b\x2a\x11\xaa\xf8\xb8\x56\xd3\x30\x5d\x4a\xa2\xd7\x84\xe2\x09\x75\x53\x96\x5b\xe0\x1b\xd7\xd6\xd2\x8e\x53\xcf\x6f\xc1\xda\xd1\x23\x0f\xaa\xbe\xa1\x34\x98\xba\xcf\xa6\xcf\xb6\x1b\x7e\x97\x68\x08\xcf\x75\xa5\xc0\xee\x88\x64\xa7\x26\x08\x5d\x1a\x4e\xd4\x79\x0b\x26\x40\xfe\xa1\x76\xfe\x7b\xd6\xac\x20\xd5\xca\x8a\x58\xf4\x79\x51\xc7\xaa\x29\x18\x66\x26\x5c\x6e\xe8\xa6\x5c\xdf\xca\x7e\xca\x33\x01\x46\x09\x94\xb6\xb1\x57\x9e\x18\xfb\xfd\x7f\x51\x57\x80\xd1\xc3\x41\x86\xf4\x9b\x5f\x68\x79\x74\xf7\x30\xb7\x4f\xd0\x44\x6a\x2e\x1d\xd1\x58\xa0\xb9\x11\x98\x9e\x17\xca\xfd\x64\xd4\xf8\xc5\x17\xb7\x80\x08\x46\xbe\x92\x11\xde\xa8\x17\xdc\x0d\x26\x0e\x6b\x98\x03\xae\x68\x60\xca\x5c\xf7\xd7\xdc\x61\xf9\x02\x25\x3f\x3b\xd5\x2a\xdf\x81\x2b\x39\x8a\x60\x6b\x6a\xac\xaa\x83\x97\x46\x0a\x75\xbc\x67\x4c\x4b\x16\x1f\x3f\xa1\xfc\xec\xa2\xdc\x4c\xdd\x34\x23\x85\x77\x4f\x67\xe6\x03\x2b\xf8\x8c\xc2\xde\x44\xdf\x22\x0e\x64\xc3\x89\xdc\x5e\x54\x80\x31\x66\x21\x40\x02\x76\x0f\x52\xc6\xe2\x7e\xfa\xf6\xd8\x88\xc2\xb0\xe9\x72\xc8\x60\x1a\x2e\x21\x94\x90\x06\x7b\x8f\xb3\x01\xab\x8c\x74\xe1\x6f\x5f\x38\xd4\x5e\x19\x97\x71\x1d\xb9\x2d\x2e\xa1\xe9\xd2\xe2\x55\x58\xd7\xdc\xe1\xa6\xcd\x8b\xa8\x6f\x0a\x11\xb4\x50\x55\x62\xc1\xfb\x3d\x60\xb9\xb0\xea\x81\x3a\x30\x43\xb7\x2b\x61\x53\xaf\x05\x2a\x4f\x79\xad\x8e\x4f\xde\xe4\x84\xb0\x70\xf0\xce\xb5\xc0\x3b\xc8\x6b\xdb\x05\xd1\x0f\x2e\x1e\x6c\xbe\x30\xfb\x79\xd5\x13\xfd\x30\xf0\x26\xf0\xc3\xa6\xc7\x1e\xe5\xf8\x1d\x3a\xf1\x34\x63\x15\xec\xde\x26\xce\x58\x18\xe0\xf7\x27\xda\x06\xc6\x8a\x51\xf7\xd1\x96\x6a\xae\xfb\xae\x0e\xc5\x58\xa4\x5f\xb8\xfd\x1b\x5f\x9f\xf3\x20\x85\x32\x0c\x41\x95\xf5\x8a\x12\x79\xdf\xd9\x6a\xbc\x78\xd0\x8d\x01\x9d\xd0\x0e\x2e\xba\x38\xcb\x7e\xd2\x3d\x15\x5e\x5f\xa5\x79\xc5\xb9\x77\x05\x6e\x9a\x34\xd5\x95\xab\x42\x90\x1f\xb4\xe2\xd8\x33\x56\x36\xb4\x9d\xd9\x23\x36\x5b\x45\xab\x2c\x32\xf4\x48\x75\xf1\xb5\x33\x76\x59\xda\x6e\x13\xf0\xc3\x43\x4e\xf8\x0c\x94\xb2\xeb\x23\xce\xdc\x86\xcb\x33\xe5\xb3\xaa\x52\xbb\xf8\xf9\xf7\x68\x45\x89\xa2\x4d\x43\x49\xcf\xd0\x40\x03\xa9\x7c\x61\xe4\x63\xaf\x57\x86\x71\x34\x44\xde\x97\xc1\xa9\xaa\x0e\x54\x05\xd5\x94\xee\x41\x68\xb2\x4e\x94\x98\x58\x00\x8b\x28\xf8\xde\xd4\x31\xc3\x6f\x69\xcd\xe7\x1b\xb5\x05\x06\x6b\xf2\xc2\x66\x24\xc5\xbf\xb5\xa1\x9a\x21\x1e\xe0\xa5\xa5\x91\xef\x89\xc9\x1a\x0c\x91\xf4\xcc\xcf\x7b\xec\xd8\x01\xe1\x71\xdf\xd9\xf2\x62\x1c\x77\x75\xe2\x63\x3d\x50\x5a\x10\x9f\xaa\x2f\xcc\x6d\xdf\x96\xcf\xd0\xf0\x89\x87\x4f\x46\x3e\x71\xf6\x89\xa7\xe5\x8e\x4d\xd4\xcf\xf7\x4c\x30\x6e\xd3\x70\x0a\x66\x91\x96\xaa\xa0\x11\x15\xc3\x35\x36\x2a\x9e\xef\xaf\xd3\xb2\x07\x4a\xf1\x89\xb1\x52\xe0\x59\x9b\x48\x99\xd2\x06\x42\x49\x6d\x6f\xcb\x17\xa0\xd2\x01\x15\xb1\x49\xcd\xd5\xe1\x6b\x01\x19\xff\x2c\xa0\x0a\xe9\x8b\xf7\x39\x2f\x83\x67\x78\x87\x5e\x8f\xaf\xb5\x34\x78\x2f\x1d\xc6\x1d\x9b\x69\xbe\xd4\x4f\x15\x5f\xea\xa7\x9e\x2b\x4f\x5a\xec\x90\xc1\xa7\x2d\xf5\xad\x27\x7d\x7f\x67\xfa\x04\x65\x31\x60\x54\xab\x5d\xfd\x5f\x6d\xae\xd8\xc2\x66\x4c\x39\x8d\xc0\xf6\xba\xc2\x5a\x5c\x57\x16\x7f\x25\x0a\xa3\x74\x98\xc7\x4c\x2c\x87\x3f\x38\x15\xf8\x0f\x9e\xaa\x6b\xe0\xcf\x0b\x93\x4d\xf9\x5a\xdc\x94\x12\xee\xbc\xac\x33\x9e\xb7\xb5\xa4\x51\x68\xda\x39\x79\x93\x88\xf1\xdf\x54\xfc\x84\x6f\x2a\xda\x12\xca\x75\x45\xdd\x29\xd5\x6a\x75\x03\xfb\xde\x41\x33\x7f\xf1\x45\x46\x20\x34\x5a\x4f\x7a\x57\xd7\xe6\x03\xd2\x02\x6f\xf8\x10\x1b\x11\x2b\x5f\xbb\x8e\xbe\x76\x16\x99\xa4\x0c\xc5\x78\x4b\x00\x3a\xf7\xe4\xd8\x23\x1c\xbf\xa7\xe1\xef\x5f\x68\x79\x67\x93\x64\xfe\x14\x95\xe8\x0d\xa5\xa3\x79\x43\x51\xe9\x9b\x7e\xb9\xe6\x3b\xa6\xbf\x8b\x9e\x1c\x36\xe4\x16\xd6\x33\xdf\x20\xbb\xcf\x79\xec\x91\xcf\x4a\x31\x1e\x4e\xb0\xe5\xb4\x1f\xc4\xfc\x4d\xe0\x65\x8f\xf0\x93\x4c\x74\xec\x4b\x55\xf5\xb3\xa0\xfe\xdd\xcc\x24\xcb\x9c\xdd\xd2\x78\x12\xbe\x56\x24\x2f\xdd\xa8\x5b\xf4\x1a\x0a\x5f\x7a\x59\x09\x14\x5c\x56\x0c\xd7\x9d\x72\xb1\xf5\xa3\xc4\x72\x47\x08\x4e\x93\x4f\xb4\x2e\xff\xba\x4a\x4a\x6f\x05\x8a\x74\x7b\x4d\x79\x9a\x97\x27\x14\xf4\x74\xe6\xeb\x93\xba\xf2\xfd\x91\x34\xe9\xd8\x6c\x4a\x15\xe7\x8e\x2a\x16\x1a\x08\x12\x61\x66\xcf\x07\xbe\x30\xcf\x44\xcc\xd1\x4a\xc4\xa5\x5a\xf8\x4d\x8c\x16\xe1\x9b\x4a\x5e\x90\x40\x75\xc3\x22\x8a\x87\xa8\x80\xb3\x6a\x09\x1c\x20\x56\x73\xa2\x1f\x47\xda\xed\x1d\x97\x44\xe9\x9b\x72\xad\x31\x45\x08\xc2\x08\x2e\x09\xf0\x8d\x8a\xa2\x88\x33\x88\xf2\x7f\x8e\xf4\xe6\xb6\x4a\x71\x6e\x10\xf9\xae\xc3\x16\xa9\xfd\x5f\xee\x23\xbe\xc6\xa0\x4b\x8b\x5f\x4d\x0b\xd4\x37\x86\x51\x31\xa5\xf2\xbe\x53\x3a\x9c\xbd\x45\x5f\x2b\x92\xb2\xd5\x66\xf6\x66\x2c\xb9\x03\xb8\x02\x58\xfd\x4a\x30\x4f\xe0\xd3\x8d\x96\xec\x35\xd3\x26\xaf\x7c\x51\xc5\x85\x8b\x07\xe5\xba\x56\xd3\xdf\x14\x85\x4d\x3a\xc6\x37\x4f\x21\x0b\xc8\x74\x05\x7c\x53\x63\xf3\x32\x6b\x7c\x6d\x4a\x82\x4d\x7a\x26\xbe\x51\xb4\x62\x71\x19\x79\x83\xe6\xc7\xf1\x89\x7b\x7c\xa0\xa6\xd3\x61\x8d\x45\xbe\x51\x25\x86\xf5\xc0\x7b\xc2\xeb\x95\xb1\x7a\xf9\xe5\x66\x67\x50\x28\xa5\xab\xd7\xb5\xd2\xd5\xeb\x95\x9a\xeb\x8b\x73\x87\x9b\xe9\xc0\x66\xdc\x4d\xf1\x92\x47\x08\x95\xcb\x5b\x34\xa0\xb6\xcf\xe7\xe1\xe7\x9b\xfd\x61\xd8\x9b\xf2\xed\xf1\x60\x8f\x45\xdd\xe5\x84\x3a\x24\x2f\x2a\xd2\xfd\xde\xb0\xaf\x5a\xc5\x2e\x8f\x1a\x87\x9f\x77\x80\x50\xef\x92\x83\xbb\x17\xb3\x8d\x05\xf8\x01\xad\x0e\x47\xa8\xbd\x38\xcb\xe7\xec\xb1\x89\xc4\x4f\xb6\x0a\x45\x04\x49\x00\x96\x9f\x91\xfc\x9f\x3f\x0b\x4d\x7f\x60\x32\x93\xa4\x0d\x72\x0d\xa5\xe9\x8e\x86\x48\xa4\x63\x3f\xa7\xf0\xf4\xa5\x0f\x63\x58\x0f\xf2\x85\x59\xa6\x35\x78\x07\x7f\xcf\x37\x75\xb4\x31\xe5\x39\x9a\xa5\xfd\x28\x07\x97\x1e\xe0\x46\xe7\x55\x83\xff\xf9\xfa\xb2\x9a\xcb\x7d\xa8\xba\x34\x57\x4b\xf8\xa6\x32\x15\x2f\x1e\x6c\xc6\x69\xce\xed\xe4\x52\x13\x54\x9f\x58\xab\x24\xe3\xf6\xef\x6f\xe6\x3d\x1b\x77\xa7\xfc\x22\x99\x84\x5e\x28\x7c\xcb\xff\xe2\x20\x65\x1d\x3b\x30\x99\x5b\xe6\x8e\x92\xae\xfc\x53\xbe\xd1\x18\xfa\x34\x29\x6c\x52\x44\xa4\x52\xb1\xe8\xb5\xe6\x3c\xc6\xfa\xb2\x42\xfe\xf5\xa3\xb0\x67\x6c\xfc\x70\xf9\x97\x98\x84\x1f\x8d\x14\x13\xd6\xed\x91\x97\x8d\xbd\xc9\xf5\x59\xa4\xc4\x36\x69\xf3\xa0\x92\x38\x18\x29\x29\xf1\x35\x98\x7a\x27\xcc\x5c\x8e\x26\xc2\xb8\x47\x5b\x7e\x2d\x71\xb1\x10\x71\xea\xbd\x8a\x46\x72\xb9\x95\xa2\x7c\x90\xa5\xe4\x17\xa4\x89\x29\xac\xc6\x34\xbe\xa9\x8e\xce\x2b\x2a\x7b\x7f\xfe\xb3\xdb\x1e\x87\x59\x66\x93\x82\x0f\x41\xb8\x9a\xef\x8e\x94\x3f\xfc\x6e\x65\x2d\xb9\x8e\x65\xd3\x89\x57\xa7\x1a\xbf\x7c\xc8\xe1\xe9\x3d\xc0\xfc\x0e\x0c\x94\xb4\xae\x7b\x26\xa1\x7c\x40\x9d\xaa\x0d\xd5\xe2\x14\x78\x6b\x33\x21\xcc\xde\xb1\x26\x6e\xf8\x7e\x59\x06\xa4\x0a\x41\x48\x75\xad\x1e\x6a\xf6\x4d\x1c\x2d\x25\x26\x29\xa6\x94\x82\x1f\xd7\x45\x31\x10\x6f\x8f\x7c\x0e\xeb\xba\xf2\xb3\xfa\x84\x09\x36\x4a\x96\xe4\x82\x92\x25\xb9\xa0\xa4\xb1\x97\x6c\xbb\x47\x7e\x4f\xf9\x30\xc0\x0b\xbc\x4e\x87\x0e\x5f\x3b\x12\xdb\x30\x39\xc2\x36\x5b\x49\xf6\x1e\x74\xaa\x30\xda\xfe\x2e\x4f\x36\xd4\xc1\x09\xe1\x6b\x1d\x3d\x30\x83\xee\x94\x8f\x1e\xb8\x01\xd2\x51\xfa\x2a\x5d\x3c\xa5\x2b\x15\x31\xf0\xee\x25\x36\xd1\x80\xbe\x0a\x86\xb0\x9c\x35\x1c\xc0\xef\xaa\x28\xad\x4b\xc8\x57\xb2\x8d\x32\x8b\x7a\x4a\x55\xe5\x2f\xb3\x83\x18\x12\x88\xf4\x13\x4e\x01\x58\xc7\xb9\xaa\x0a\xd8\x59\x49\x43\xca\x2f\xa8\x9a\x62\xb0\x5d\x36\x09\x41\xf4\x5d\x27\x55\xb5\x92\xe6\x4b\x56\xa2\x3f\xe9\xf2\x57\x7e\xc4\xfd\x91\xd2\x92\xfc\xd0\x21\xfc\xfa\x69\x52\x2c\xa5\x71\xd7\x45\x0f\x0e\x46\xea\x32\x63\xb7\x55\xad\xe9\xb8\x92\x6a\x8f\xed\x52\x94\xc7\x64\x67\xa7\x7d\xb1\x1f\x29\x25\x3e\xf0\x03\xdf\xf7\x7c\x63\xe4\x23\xf9\xb7\x54\xf5\xb9\x63\x56\xd1\xf8\xc9\x7d\x2b\x08\x0c\x85\x5b\x97\x16\xa6\x44\x16\xe5\x8f\x38\x6c\x8f\xef\x08\xfd\x99\xae\x58\x9f\x47\x95\x07\x5e\x1d\xbb\x69\x88\xc2\xdf\x43\xd6\x16\xab\xe2\x9e\xaa\x44\x4c\x83\x40\x49\x1a\xf9\x3c\xa2\xf8\x9f\xc3\x9e\xb9\xf2\xde\x0b\xb3\xec\x4f\x4c\xb7\xaa\xc5\x79\x02\x7b\x86\xd6\x76\xa8\xcb\x9c\x3e\x28\xf4\x38\x4a\x61\xe8\xbc\xe2\x43\xe6\x58\x0a\x40\x16\xa7\xd7\xa5\xc4\xbb\x46\x7e\x15\x73\x67\xa8\x9c\x14\xde\x0a\xc7\x69\x9a\x5b\x39\x78\x5d\x69\xc7\xd1\x0e\x32\x0b\xa4\x20\x63\x9d\x1e\x5d\xd4\xe1\x7e\x96\x97\xd8\x15\x64\x6f\x9a\x6f\x2a\x1c\xa3\x2f\xcc\xce\x35\xbb\xe9\x30\xe1\x83\x44\xaa\xa3\xe5\x58\x49\xd9\xd4\xe3\x8a\x44\x2e\x87\x79\x2d\x38\x1f\xae\xd2\x6a\x27\x74\x0a\xf3\xcf\x31\x7d\x52\x8e\x2e\xbf\x12\x7e\xf8\xb7\x14\x77\xd4\x31\x72\x9f\xb0\xe6\x7f\x3a\x52\x0d\x54\xeb\x5a\xf2\x68\xbd\x72\x6a\x1e\x58\x68\x76\x4d\x28\xdd\xf8\x4a\x8a\x45\x12\xfb\xeb\x4a\x10\xac\x6f\xa2\xf8\x91\xf2\x77\x60\xad\x4f\xd2\x9e\xc3\x90\x5f\x27\x3f\x54\x0a\xb1\xbe\xa9\xec\x3f\x04\x13\x4d\xcb\x5e\xd3\xf5\xb8\xf2\x8d\xb9\xe5\x0a\x37\xac\x51\xc8\xca\xbc\x93\x32\xbd\x34\x2a\x92\xf4\x78\x4a\xe5\xe7\x93\x74\x98\x84\x54\x87\x2d\xff\x1c\xed\x8b\xe0\x00\xe3\xeb\x3a\xbe\x55\x52\x09\xa4\x6c\x8e\x63\x90\x06\xef\x0e\x82\x61\xee\xd9\x86\xb3\x75\x74\x22\x56\x3c\x92\xe4\x0f\x97\xef\x2b\x19\x13\x9f\xb6\x3f\x85\x3a\x08\x03\x61\x69\x80\x60\x30\xff\x0d\x62\x6e\x41\xc8\xd2\x0b\xe3\xab\xd1\x15\xe3\x1a\xab\x9d\x58\xe3\x71\xe4\xbf\x19\x4a\xaf\x30\x13\xeb\x0a\xdc\x6c\xa2\x6c\x77\x63\x7e\x7e\xeb\xba\x22\x0c\x78\x1a\xe8\x5d\xe7\xd5\x95\x3f\x05\x4b\x75\x8c\x26\x00\x68\xcb\xeb\x23\x55\xe4\x79\x0c\x86\xc0\x89\xa3\xba\x04\xf8\x75\xad\xd0\x95\x59\x9b\x44\x79\x8f\x72\x59\x68\xb1\xd8\xd1\x52\x2a\xc3\x67\x47\x8a\x2a\xe4\x9f\xaa\x7e\x41\xf6\xbd\x10\x96\x1e\xaf\xd1\x57\x3a\xd8\xcc\x43\xaa\xed\x4b\x8c\x02\x84\x69\xa3\xa5\xf4\x1a\xea\x24\x31\x9a\xed\x2c\x1d\x2e\xf5\xd8\x4d\x94\x4a\x4c\xf9\x8e\x52\xa2\x79\x4c\xe1\x7e\x2c\x49\xf1\xcd\xcf\x1f\x72\x68\x8e\x86\x53\x88\x5c\x53\x0e\xc6\x52\x66\xda\x6d\xe9\x82\x73\xec\xa4\xf3\xf3\x9c\x84\xd9\x41\x89\x23\x04\x41\xb7\xb4\x42\x69\x66\x88\xa2\xb6\x9c\x66\x96\x36\x08\x54\xc2\xed\x9c\xf2\x00\x6c\xbf\x6d\xb2\xa5\x94\x5f\x16\xf3\xc1\xa4\x94\x7c\x53\xa7\x8e\x52\x7a\x33\x54\x78\x44\xbd\xfa\x07\x18\x6e\x57\xa9\x5d\x90\x26\x98\x6b\x81\x1c\x5e\x45\x2f\xb3\xa6\xb0\x1e\xc5\x8b\xa1\xbc\xae\x4a\xe2\xbb\xe9\x6d\x58\xd2\xb5\x4e\x2d\xab\x97\xc6\x51\xc7\xa0\x72\xa4\x4f\x30\x39\xa9\xf6\xea\xf3\x1e\x25\x4b\xd7\xe8\xb8\x78\xd0\xb3\x2c\x94\xcf\xea\xe8\x17\x9c\xc3\xfc\xb1\x36\xfe\xc7\x5d\x4a\xa9\x88\xfa\xdc\x0b\x56\x37\x55\x3a\x3e\x8a\x32\xfb\x48\xc3\x69\x06\x9d\x42\xc0\x8e\xa4\x2c\x7c\x14\xb8\xde\x37\x09\x57\x05\x83\xfa\xc9\x48\x31\xbc\x33\x8d\x30\x76\x0e\x6f\x79\x24\x56\x76\xb6\xd0\xff\xca\x36\x0a\xa7\xa3\x02\x69\x4a\xc6\x9a\xbb\x43\xc5\x94\xd5\x91\x00\xe4\x51\xb2\xc4\xef\xc3\xf4\x7c\x30\xf0\xc2\xd5\xe7\x5d\xd6\x57\xd2\x65\x59\x43\x88\x21\x7f\x80\x35\xc4\x37\x0a\x31\x79\xc4\xda\x65\x56\xcc\x86\x89\x40\x42\x43\x72\x67\xd4\xee\xe4\x8e\x21\x8f\x4c\xc4\xeb\xc2\x90\xfc\x30\xf0\x84\x10\x37\x71\xca\xc0\x82\xef\x20\x26\x1b\xac\x26\x96\xb2\x75\x72\x60\x8e\x7e\xe4\x3d\xb5\xe4\xde\x55\xb0\x35\x3e\x71\x30\xd7\x1f\x80\x95\xc6\x89\x75\x56\xd0\x7c\xc0\x23\x6c\x51\x2d\x4e\x69\xda\x1f\x74\x01\x95\xdf\x60\xfd\x34\xe9\x98\xd5\x47\xca\x67\x16\x49\x04\x75\x32\xee\x1e\x7b\xe8\xf7\x5d\xd5\x49\xfe\xa3\x60\x22\xe5\xa7\x2c\x05\x82\x6e\x01\x2a\xd1\x8f\xf2\x01\x1a\x78\x44\xf2\x31\x24\x19\x71\x8c\x5c\x87\x11\xe7\x9b\x4a\x52\xf0\x85\xd9\x66\x37\x05\x84\x2d\xef\x45\x03\x24\xb1\xb9\x3d\x6c\xa2\x55\xac\x6a\xc9\x0e\x96\xae\xb9\x50\xfe\x8b\x8e\x80\x4f\x31\x5f\x52\x13\x5f\x0c\xb3\xe4\x11\x2f\x9c\xf6\xa1\xa6\x15\xa7\x5f\x41\x9a\x75\xc7\x58\x65\xa2\xae\xe0\x1c\x15\xcf\x9b\x46\x04\xa7\xcc\xb5\x40\xd1\x28\xfc\x36\x9c\x43\x97\x50\x5e\x9c\x75\xe8\x84\x72\x44\x44\x7b\x9b\x86\x4a\x3c\xa1\xc7\x14\x5c\x3a\x8f\x96\x92\x5d\x0d\x27\x76\x75\x32\x50\x6e\x1e\xa2\x5a\x7c\xc5\x19\xd2\xd5\x71\x12\x32\xce\x49\x3a\x4a\x3f\x23\x3a\x33\xca\xb2\xc4\x56\x78\x22\xf1\x0a\xb7\x75\x70\x78\xdb\xb9\x6d\x71\x94\x2c\x33\x00\x6d\x6b\x63\xa4\xc4\x4f\x7f\x8c\xb7\xc4\xaa\xff\x52\xab\xf1\xcc\x33\x52\x8a\x1b\xf9\x4e\xaf\x7d\x63\xd5\xf1\xb9\x5e\x89\x77\xe7\x0e\x37\xed\xab\x51\x4e\x19\x00\x42\x1a\xd3\x7e\x16\xad\x29\x9f\x77\x3d\xef\x6a\x5e\x99\x35\x31\xa9\x33\x38\x3f\xc1\xf1\x43\x9d\x52\x5c\x9f\xd3\xb4\x72\x29\x74\xf9\x83\x2f\xb5\x54\x5a\xee\x91\xb1\xd2\xb2\x8c\x06\x36\xc9\x81\xab\x46\xf6\xec\xb6\x12\x79\xde\xd1\xa2\x85\x89\xf3\xfb\x98\xcb\x6e\xf4\x0c\x49\xcb\x0f\x14\x31\xe5\x71\x45\x4c\x59\x6d\x51\x5b\x9c\x6d\x0e\x86\xb1\x6b\x57\x96\xbe\xc4\x29\xaf\xa8\xfe\xee\x67\xe7\x01\xb2\xa8\x88\x42\xe1\xcb\xe1\xa2\x1d\xe6\x49\x2a\x78\x8f\x2b\x57\x92\x50\x1a\x33\x3e\xd3\x71\x49\x11\x1f\x5c\x82\x95\x12\xf8\x86\x52\x1f\xe2\x6a\xb0\xe0\x95\xa5\xc2\x63\xe3\xd8\xe6\x7d\x9b\x61\xff\x60\xf5\x9d\xd5\x39\x88\xb3\x35\xbd\xd9\x2f\x35\xad\xc9\xe2\xc8\x66\xb0\xb7\x08\xab\xcf\x2a\xb1\x87\xb3\x5a\x68\x21\x33\x49\xd8\x8b\xa8\x23\xf3\x80\x78\xb7\x5b\x0a\x59\xb8\x15\x3c\xae\x91\xfd\xa1\xcd\x92\xdd\x7e\xee\xef\xc3\x28\x3a\x45\x38\xdf\x30\x82\x9e\x1c\x6c\xd3\xbd\x63\x1f\x03\x34\x5a\x13\xc9\x56\x55\xe4\x82\x3a\x32\xbe\xb7\xd1\xaa\xe9\x28\x32\x71\x7b\xf8\x8d\xa1\xcd\xbe\x31\xb4\xbc\x6b\x24\xb7\x43\xbf\xcb\x37\xaa\x0d\x83\x3c\xbb\x69\xfa\x09\xa1\x6d\x68\x78\x92\x63\xda\xb8\xf0\x39\x76\xb5\x94\x98\xc9\x69\x05\x51\xc9\xd3\xbe\xa5\x16\xf3\x19\x45\xc3\xb9\xae\xe4\x6b\xce\x51\x17\x34\xbc\xc6\x35\x95\xfa\x9a\x02\xa8\x07\x5e\xcc\x4f\x15\xa4\xb1\x48\x93\x7c\xda\x4b\xe1\xdc\x81\x69\x12\x4f\xd3\x63\xae\xee\x52\x5a\x56\x88\xd2\x14\x7f\x53\xcf\x0c\x57\xa2\x84\xd6\xa3\x83\x06\x5c\x57\xed\xd2\xd7\x3d\xa9\x75\x2f\xca\x96\x1d\xb0\x19\xee\xda\x31\xa5\xa1\x70\x4c\xcb\x20\xad\x44\xb1\x5d\x62\xb9\x63\x8e\xff\x47\x0a\xfd\x89\x0c\x0a\x36\xf6\xee\x96\x52\x50\x39\x53\xf1\x0c\xe6\xe7\x9b\xe0\xbf\xe1\x70\x18\xb1\x01\x98\x26\xf9\xba\x06\x92\xfb\x12\xc1\xb0\x25\x63\x29\x40\x6f\x9f\xee\xa9\xe2\x0c\xe7\xe7\x9b\xbd\x88\x45\x53\x94\x72\xbb\x27\x5e\x7c\x4c\xf5\xf0\x64\x69\xb2\xf4\xa8\xca\x84\xc0\x47\x10\xe8\x7f\x39\x92\x4c\x44\x8e\x43\x04\x05\xa5\x3b\x48\xac\xc1\xb4\xdd\x51\x75\x71\x16\xdc\x85\x5d\x62\xe7\x4c\x37\xc5\xc0\x30\x6c\x69\x21\xe2\x3b\x74\x06\x60\xe0\x6f\x22\x04\x12\xd8\x85\x8f\xa0\x33\x1b\x9a\xa4\x28\x0f\x05\x72\xd1\x90\xcd\x60\x6e\x66\xbe\xa9\x43\x8a\xc4\x5e\xbc\x40\xe5\x29\x0f\xb9\x3c\xa5\x67\x39\xe7\x36\x3e\x02\xa2\x6f\x94\xaf\x4d\x3d\x04\x95\x8c\x73\x37\x1d\xc6\x53\xde\x86\x21\x4a\x83\x1b\xc3\x2c\xd6\x42\x2c\xec\x5b\x55\xec\x52\x66\x97\x50\x24\x9e\xf2\xe5\x52\x2d\x09\xbc\xae\x11\xe2\xc7\x1c\xfc\x30\xb6\x4b\x11\x90\x35\xb4\x2f\xf0\x33\xa8\x22\xd0\xfc\xfc\x8b\xcf\x93\x2f\x8f\x13\xfb\x49\x60\x92\x3e\x4b\x52\x63\xff\xfe\xe6\x30\xf3\x60\x7e\x01\xd8\xf9\x7c\xef\x8e\x8a\xfa\xe6\x8b\x73\x87\xcb\xd0\xa8\x33\x74\x0d\x8e\x4e\x30\xc5\x0b\xfd\x2a\x10\x52\xde\x8b\x6c\xdc\xd9\x05\x03\x04\x97\x09\x24\x00\x30\x82\x37\x47\x1e\x4a\xc7\xf3\x8c\xe4\xfc\x35\xcc\x09\xdf\xc0\x54\xf2\xc7\xf5\x28\x96\x21\x54\x66\x72\xa1\x5f\xfd\xff\xd1\x2c\xca\xb2\xd5\x47\x68\xc1\x22\xd9\xc6\xfd\xef\xb0\xdc\x8f\x8f\x49\xec\x10\x5e\xff\xda\x48\xc3\xdc\x7c\x50\x7d\x8d\x3c\x5c\x47\x6a\xe3\x03\xdd\x2d\xcd\x81\xfd\x44\xcb\xc7\x29\x3f\xc1\xb3\xe0\xb0\xde\x4b\xa0\x32\x4c\xcd\xb5\x1a\x85\x9a\x66\x3f\x2d\xa2\xee\x84\xf4\xcb\x6d\xe5\x22\xdc\x9e\x2c\x55\x77\xf2\x47\x14\x0c\x8c\x1f\x87\x19\xdf\x10\xa7\x88\x5b\x42\xcf\x86\x95\x72\x86\xde\x0c\x21\xd0\x06\xc5\x66\x08\x66\xae\x63\xf3\x3a\x7e\xc1\x03\x42\xd3\x70\x66\xe4\x9b\x03\x38\x1b\x2f\x1e\x4e\x43\xd1\xd9\x28\x22\x82\xbf\xf3\xf7\x29\x37\x80\xd1\xe3\xdc\x80\x43\x2b\x3a\xfc\xee\x2e\x8a\x2e\x84\xb1\x43\x15\xa9\xa6\x5b\xdb\xf7\xec\xb3\xcd\xa8\x3f\x48\xb9\xde\x84\x59\x65\x97\x82\x6f\x14\x20\x62\xc5\x2c\x0d\x91\x68\xe5\x99\x84\xab\xc0\xbd\x66\x58\x61\xd2\x78\x56\xbe\xbd\xcc\xb7\x12\xed\xb6\xa6\x63\xb3\x5d\xaa\x50\x74\x8b\xc6\x4c\x0e\x27\xfa\x0a\xe9\x55\xa5\xa7\x40\xd6\xe6\x96\x22\x51\x04\x50\x4c\x54\x42\x7d\x79\x80\xa4\x98\xe3\xd5\x47\xcb\xe7\x03\x48\xe1\xf2\x88\x96\x1d\x60\x59\x8c\x7a\xc5\xf3\x71\x5a\x96\xff\x85\x0e\xcb\x09\x0d\x7f\x44\x6f\x57\x46\x8a\xd7\x9e\xfb\x19\x85\x7b\xc7\xc3\x34\xfe\xe3\x24\x0f\x4f\xf9\xe2\xfc\xf3\x30\xe0\xac\xe7\x1a\xec\x9b\x10\x80\x5b\x9d\x29\xa7\x9e\xe9\xfa\x35\x43\xe2\xa6\x1e\x54\x26\x77\x12\x64\x62\xf9\x6a\xc2\xf0\xef\xbf\xae\xdc\xa6\xc8\x1e\x48\x43\xaa\xca\xd4\x5e\x50\x6a\x61\x45\x2f\x4a\x1a\xbe\xdc\xba\xa6\x34\x7d\xd7\x2a\x39\xa3\x97\x5f\x6e\x9a\x22\x4b\x43\xd4\xe2\x1c\x1c\xfa\x32\x1d\x1e\xd2\x1b\xa2\x6a\x71\x69\x9a\x44\xa5\xeb\xf6\xcc\x33\x1c\x21\xaf\x63\x9f\xf0\x8d\x32\x5b\x83\xcc\x16\xc5\xea\xb4\xf7\x13\x58\x18\x55\x02\x31\x6f\x1e\xbe\xaf\x12\x8c\x1f\xd5\x30\x39\xbd\xd4\xec\x99\xc1\xc0\xba\x1e\x0e\x61\xa9\x26\x8b\x2b\xf4\xd5\x4a\x5f\x28\x4a\x13\xcb\xc0\x2e\x9c\xb7\x3b\xb0\x0e\xf8\xa6\x42\x49\xbc\x38\xdb\xcc\x6d\x52\x4c\xfb\x86\xfe\x4b\x9a\xc0\xe6\xfb\x81\x27\x02\xf9\xf9\x35\xcd\xaa\x77\xa7\xd2\x04\x73\x60\xa1\x99\x9b\xc2\xc6\x71\x54\xd8\x29\x25\xc5\x70\x49\x41\x4f\xc7\x2a\xed\x73\xae\xa6\x17\xa2\xe8\x99\x64\x99\x31\x9f\x38\xb1\x77\x42\xfe\x17\xe6\x07\xd2\xce\x02\xae\xf1\x2e\x47\x66\xe0\x54\xfb\xde\x4f\xd5\x53\xe7\xc5\xa5\x97\x13\x6b\xa7\x1a\xce\xc9\x98\x68\x0e\xfe\x70\xe4\x51\x6a\x57\x95\x3d\x7a\x35\x02\x85\x83\x42\x5d\x3a\x08\xa6\x73\xe9\x96\xed\x6a\x62\xf3\x88\xd1\x5d\x4c\x56\x02\x1b\x23\xcc\x25\x35\x0e\x55\x3b\x5d\x65\x63\x8d\x5d\x0a\x7c\x3e\x5f\x57\xbc\xb6\xaf\x8a\x28\x38\x3b\x1f\x6e\xcf\xfb\x2f\xb8\xa4\xec\x50\x94\xe7\x43\xdb\xa1\x18\x5f\x70\x2b\xba\x53\xf0\x07\xa3\x6d\xdd\x92\x07\x9d\x66\x9b\x6a\x18\x64\x8b\x27\xe4\x7f\xf4\x53\xe0\xd8\xf9\xfe\x48\x25\xc9\xd6\x95\xb7\x06\x0c\x06\xff\x11\x86\x80\x7f\x51\x75\xda\x86\x69\xd2\xcd\xd2\x04\x52\x62\xae\x16\xf1\x80\x26\x0d\x85\xa4\x4b\xaa\xdf\xf9\x4a\x0d\x22\xa0\x19\x9b\x61\xd2\x51\x22\x60\xae\x27\x6c\xa1\x2a\x17\x66\xf2\x41\x94\x6d\x23\x32\x87\xeb\xc0\xd7\x81\xf2\xe2\x07\x03\x97\xe9\x44\xd4\xb0\x35\xf2\xcd\x53\x38\x9b\x91\x80\x98\x1e\xd7\x20\xa0\xba\xa6\x9d\x31\xe9\xbb\x8b\x82\x1c\xb4\xa1\x4a\xee\x75\x60\xa1\xd9\x8d\x3a\x36\x16\xe4\x93\xd3\xc7\xf0\xac\x97\x6b\x55\x8d\xd7\xc5\x83\xcd\xcc\x76\x86\xa1\x38\xf0\x4e\x49\xd4\x8b\xcb\x5d\xae\x6c\xcf\xf2\x53\xb6\x3f\x88\xd3\x55\xce\x22\x32\xff\x50\xe0\xbb\xed\x4f\xd6\xad\xd2\xee\x30\x01\xf3\x10\xf3\xdd\xa8\xbf\xe7\x10\x40\xb6\xd9\x64\xb3\x43\xbf\x4f\xc2\x5d\xf4\x53\xd2\xa4\xe7\xe7\xf7\x9c\xca\xaa\x1f\x49\xa9\x47\xbc\x5c\xaa\x8e\x11\xad\x5c\x90\x9f\xc5\x88\x76\xf8\x79\x34\xa8\x93\x4d\x7c\x61\xd6\x51\x5e\xd2\x9c\xf1\x4d\x5d\xad\x26\x29\x9d\xbd\x22\xc5\xdb\x23\x35\xf8\xb6\x4a\x23\xbf\x3d\xf2\x8c\x00\x09\xc3\x03\x16\x7c\x9f\x8a\x52\x2c\x3e\xaf\x8e\xa6\x7c\x39\x4a\x72\xe5\x3d\xc2\xf2\x48\x2f\xa6\x4f\x3f\x0d\x9f\x5d\x7e\x16\x1b\x57\xe4\x44\x3c\x25\xd0\x59\x45\xb8\xd2\x0d\xdb\xbf\xfa\x77\x63\xdb\x06\x26\x55\xca\xaf\x57\x02\xc5\xcc\x7c\xa5\x8e\x1b\x25\x4d\x96\x52\xb7\x70\xc5\xe8\xf8\x22\x0b\x84\xc1\x91\xb2\xb9\x55\xf7\xf9\xb6\x09\x97\xe5\x95\x15\x51\xee\x73\xce\x57\xf9\xac\x94\x8d\xeb\x4f\x98\xf6\xb2\x0b\x33\x68\x2a\x70\xd6\xc1\x99\x9a\xf3\xa3\xc6\x2f\x1f\x72\x62\xe3\x4f\xb9\xf1\xce\x8b\x6c\x48\x1d\xd7\x9d\x29\x25\x54\x75\x1f\x06\x1a\xfb\x00\x94\x57\x72\x52\xfa\x96\x51\x3b\x1c\xf4\xd2\x2c\x32\x54\xd5\xd0\x1d\x9d\xc8\x36\xec\x6c\x29\x33\x7c\x4d\xf5\x01\xdb\x57\x6d\x38\x2c\xa2\x15\xbb\x47\xf9\x12\xb7\x03\x55\xe9\x82\x46\x25\xa6\xfc\xc7\x18\x0c\x38\xfb\x90\x39\xe4\xde\xb3\xb1\x62\xef\xe3\x72\x0a\xaa\x66\xa8\x90\xc0\x75\xbd\x07\x43\xca\xdf\xeb\xa0\xef\xfd\x28\x19\xd8\x30\x9d\xd2\xe4\x57\x77\xe9\xe1\x51\x39\x3b\x35\x52\x1e\xb3\x07\xd6\x76\xa2\x3c\xcc\x6c\x27\x2a\xb8\x89\xd9\x65\x66\xca\x1f\x97\xcc\x4c\x0d\x03\x3a\x11\x40\x74\x64\x8c\x91\xff\xe2\x46\x3a\x24\xab\xa0\x46\x20\xf9\x33\x7f\xbe\xb6\x87\xdd\xae\x2d\x14\x47\xca\x69\xc5\x91\x72\xba\x12\x18\x1e\x7e\xbe\x99\x0f\x07\x83\x32\x36\x7d\x61\x96\x9f\x1e\x2c\x4b\xba\x2d\x56\x56\x81\x84\xa6\xe9\x8a\xcd\xc2\x9e\xc9\x96\xec\xb4\x42\xb8\xf2\xa9\x23\xa2\xbb\x3e\xe0\x07\x6b\x1d\x4c\xf1\x85\x3a\x61\xea\xcc\x86\x36\x5a\x91\x34\x24\xcc\xce\x31\x64\x09\xf8\xa6\x4e\x47\x2d\xef\xa5\x47\x6c\x67\xda\x1b\xc8\x75\xcd\xff\xb1\x0b\xd0\x4c\x41\xe6\xaa\xc2\xf2\x7a\x1d\x77\x7c\x27\xca\x8b\xcc\xe6\x79\x77\x08\x3a\x08\x78\x31\x1c\x7d\xf0\x8d\x16\x59\x64\xda\x59\xb6\x9a\x30\xb8\xa0\x35\xe5\xeb\xb1\x0e\xe1\x42\x63\xa6\xb1\x72\x98\x43\x06\xbe\x80\x90\xb8\x36\x14\xd5\x90\xb2\x1e\xdf\xaa\xa5\x98\xce\xd3\xc4\x14\x86\x33\x7d\xbc\xca\xf1\x29\x59\xf2\xde\xc9\x0e\x7b\x16\x08\x39\xc4\x81\xf7\x02\x95\xba\x5a\xf7\x3d\x5a\xff\x75\x15\xc9\x37\x3f\xdf\x5c\xb2\x89\x2d\x20\x6a\xee\xe7\x72\x4d\x89\x38\xae\xd5\x22\x50\x3b\xe9\x91\x24\xe7\xee\xb9\x05\xa5\x8a\x57\x3e\xa1\xa8\xe2\x09\xe4\x29\x19\xbe\xda\xf0\x01\x14\x17\x80\xf9\x66\xbc\x7d\xa1\xbc\xfc\x72\xb3\xff\xff\x31\xf6\xae\x41\x92\x64\xd7\x79\xd8\x4e\x75\xf7\xcc\xee\xce\x3e\x66\x1f\x00\x49\x53\x0e\x97\x24\x9a\x6b\x87\xd7\x90\x48\x2a\x6c\x99\x7f\xb2\x3c\xd3\xe0\x62\x26\x8c\xde\x76\xcf\x60\x17\x5e\xeb\xc7\xde\xaa\xba\xdd\x95\xdb\x59\x99\x85\xcc\xac\xee\xed\x0d\xff\xa0\x1c\x0e\x07\xc3\x3f\x1c\x96\xc2\x0a\x49\xb6\x6c\x4b\xa4\x6d\xd2\x26\x45\x93\x10\x03\x84\xf8\x40\x35\x00\x82\x20\x01\x02\xd8\xf7\xfb\x31\xef\x57\xcf\xfb\xdd\xf3\xe8\x75\xe4\xf9\xce\xbd\xf7\xab\xae\xdc\x90\xfe\x55\xed\x4e\x57\x65\x65\xde\x7b\xee\x39\xdf\xf9\xce\xf7\xc5\x9d\x3c\x5b\x31\x29\x0d\xb6\x81\xfb\xe4\x32\xa2\x40\xa4\x59\xb4\xab\x0f\x92\x8c\xe2\x54\x8b\xb4\xbb\x75\xa1\x20\x2c\x9c\x41\x59\xe3\xbb\x59\x55\x61\xe6\xa8\xac\x8d\x7d\xb3\x8a\x41\x02\xa7\x53\x47\x8a\x11\xc1\xb3\x9a\x85\xb1\x36\x97\x3b\x43\x79\x05\xa4\xd9\xea\xe3\x8d\xaf\x7c\x69\x8c\x0c\x0a\x12\xd6\x55\x96\x1c\x38\xca\x94\xd5\x5d\x2d\xe2\x8c\x5d\x19\x35\xbe\xf8\xd5\x71\x41\x08\x14\x2c\xdf\x91\xe5\xa3\x93\x56\xac\x65\x70\x94\x47\xa9\xee\x8c\x68\x42\xe1\xbe\x16\xa1\x89\x1b\x23\x62\xdc\x3c\x22\x13\x2a\xaa\xc4\x27\x58\x20\x50\x83\x75\xdc\x31\xd9\xe8\xbf\xf8\xf9\xf5\x90\x38\x62\x4e\x10\x93\x47\x37\x89\x8e\xdd\xb3\x26\x07\xf5\x27\xa8\x55\x5c\x25\xae\xfc\x55\x2a\xe5\x07\x89\xe9\xd8\x07\x49\x58\xef\x0c\x93\xd4\x30\x24\x08\xe2\xc2\x61\xc1\x28\xd4\xb6\x8d\x47\xb1\x8e\x61\x65\xeb\x1b\xb9\xbb\x58\x46\xd7\x25\xc9\xc5\x0d\x39\x29\x40\x00\x9e\xc0\xd1\x51\x50\x12\xfc\x0b\xda\xd8\x10\xdf\x2b\xe2\x15\xcb\x2c\x83\xb3\xdc\x55\x3c\xeb\xf9\xe9\xb9\x35\x9d\x9e\x2d\xd8\x00\x62\xc7\x3a\x4d\xd2\x6b\x99\xee\xc2\xce\x98\x58\x74\x6e\x1e\xe4\x88\xf0\x0e\x6e\x30\x22\xcd\x8d\x11\x35\x9c\x6f\xc8\x1d\x46\x78\x50\x6b\x37\x2c\xb0\x1b\xf2\xe0\x81\x03\x4d\xb5\x1a\xbf\xf2\xbc\x46\xf9\x33\xe8\x50\x3b\x10\x8d\xcc\x41\xd5\xba\xd1\x81\x29\x35\xbd\x84\xc5\x7c\x58\x94\xb9\x78\x62\x36\x08\xe7\x63\xab\xba\xba\x00\x9e\xe5\x5d\x13\x54\xf1\x54\xbc\x87\x0c\x11\x37\x98\xc3\x62\xd3\xc6\x98\x1f\xb7\xfc\x24\x37\x79\xf1\x53\xa4\x3f\xdb\xad\xae\x25\x86\xe4\x53\x23\x4c\x54\x1d\x23\xeb\xa0\x63\x84\x12\xdb\x35\xdb\xce\xb3\x55\xd5\xec\xf4\xa2\x96\x9f\xa5\x9c\x3d\xa1\xd3\x37\xdb\xec\x24\x36\x17\x1b\xdf\x86\xd7\x92\xfd\xa6\x7c\x99\xbe\xae\x1b\x7f\x2c\x3a\x3d\xdb\x1d\x7a\x6a\x3f\x32\xa0\x9d\xd2\xe3\x03\x64\xf6\x00\x9a\x75\x78\x80\x1f\x12\x2d\xc4\x14\x03\xdb\x51\xa0\xde\x4b\xad\x93\xbe\x70\x6d\x37\x40\xa4\xc9\xb7\xcb\x2e\xfa\xc1\xc1\x73\x94\xab\x0f\xcc\xc0\xe6\x05\x14\xe9\xa1\x62\x86\xaa\x15\x08\xc1\x35\x64\x49\x08\x74\x9b\x4c\x01\xbb\x4a\xe5\xd6\x1f\xf8\xa1\xaa\xd5\x2c\x2f\x80\x6d\x10\x82\x7c\x84\xac\xe5\x8e\x8c\x2d\xef\x3c\xee\xce\xb0\x8d\x93\xa2\x83\xc8\xaa\x6e\x44\x14\x14\x2e\x92\x6d\xdb\x7b\x23\x1a\xa8\xbf\x6f\x7d\xcc\x08\x2d\x4b\x66\x42\xe7\xfb\x56\x44\x53\xc4\x1b\x18\x78\xc4\x46\x00\x39\x78\xcc\xe1\x5c\xff\x87\x67\x9b\xf4\xab\xa5\x2a\x58\xbc\x93\xdd\x0a\x39\xce\x6f\x8d\x98\x8d\x10\x05\xaf\xa2\x7e\x8a\x52\x71\x6c\xc2\x49\xdf\xf8\x9a\xb4\x93\xf5\x07\x71\xe2\xb6\x01\x96\xc2\x15\x12\x9c\xbd\x42\xf4\xaa\xd5\xb8\x1b\xb0\x22\xef\xb9\xb1\xb0\xd7\x8f\x38\xba\x3b\x9f\xda\xd5\x62\x90\xc7\x69\x39\x13\x14\x71\x71\xce\x20\x72\x28\x7c\xe8\xff\xc7\x9c\xdb\x80\x9f\xc3\x3d\x77\x8c\x84\x9a\x13\x1e\xa5\x5f\x69\x14\xb1\xf3\x34\x11\xcf\x3d\xfb\x21\xed\xdb\xb6\x41\xe1\xeb\xf4\x85\x02\xd4\xf2\x1e\x79\x2a\x74\xcc\xb0\xb0\x24\xfb\x78\x82\x64\x1f\x4f\x7c\xa6\x85\x4a\x27\x4e\x3a\x59\x8e\xc6\x35\xa0\xd8\x4d\x96\x23\xde\xa4\x5d\xd3\x8f\xbb\xab\x56\x55\xed\x81\x54\x1d\x26\x4a\xc1\xe1\x3a\xcf\xbd\x62\xd8\xef\x9b\x3c\xd6\x36\x86\xc3\x7c\x08\xff\x21\x16\xaf\xb8\xfa\x19\xe9\xf9\x3f\x2c\x6b\x4c\x25\x79\x10\x9e\x55\x65\x12\x47\x3e\x96\xe2\x51\x48\x0d\xbb\xf8\x25\x67\xb9\x7a\x22\x01\xe4\xc5\xf6\xb8\xc3\x06\x49\xb7\xb1\x01\x9c\x66\x65\x50\x97\x40\x76\x85\x60\x7d\x89\xc0\x0c\xe0\x90\x8e\x63\x53\x9d\x68\xfa\xe5\x75\x42\x8e\x39\x8e\xde\x06\x4d\x90\xa1\x4d\xe9\x32\x99\xba\x21\xee\x6e\x5c\x66\xde\x49\xc5\xd9\x7b\x54\x17\xa3\xaf\x27\x82\x91\x78\x19\xa6\x65\x9e\x25\xd3\x41\x22\xe6\x0d\xc2\x82\x60\xc1\xe3\xd2\x9a\xc0\x5d\xfd\x70\xe2\x11\xcd\x3f\x7b\x50\x06\xcf\xcd\x40\x97\x8e\xa3\xbc\x57\x7f\xe4\xb8\xf0\x35\x72\x2a\xab\x71\x82\x73\x01\x65\xd0\x15\x2a\x89\xae\xd4\x8d\x9a\x26\x26\x1e\xdb\x9a\xef\xcb\x1f\xe8\x6b\xf2\x37\x84\x82\x9b\x70\x7a\x02\x3a\x8b\x4f\xd7\xd7\x1e\xa7\x1c\x0e\xb2\xf4\x01\x12\x50\x7f\x6b\x14\x58\x70\xd8\xf9\x48\x0b\x1e\x5f\xa7\xa6\x0d\xf6\x39\xa2\xfc\x7b\xf2\xf4\x91\xab\x9c\xa0\x09\x3c\x68\xc9\x60\xb9\xfc\x35\xce\x5d\x37\x6a\x1b\xbe\xb6\xc0\x39\x32\x26\x51\xe9\x6a\x8d\xbf\xf9\x19\xbb\x6e\x98\x02\x65\xaa\x62\x80\x54\x09\x88\x67\x28\xdf\xfd\xdc\x0e\x8f\x77\x73\x88\x8f\x97\xd2\x3d\x41\x2a\x56\x7b\xc2\x4e\xf1\x7b\x8c\xf0\xc3\x0c\xa1\xea\x56\xe1\x96\x7c\xa0\x28\x27\x4e\xae\x1b\x72\xe3\x5c\xdf\x82\x58\x1f\x97\xa4\xb4\x07\x07\x4d\x7d\xc4\x71\x87\xfe\x2f\x64\xb4\x6e\xc4\x27\x90\x24\x7e\x18\x31\xd4\x16\xd1\x68\xe2\x71\x12\x8b\x3c\x37\x0a\xcc\x98\x4d\x52\xe9\xe8\x5a\x93\x14\x0f\x04\xd3\xdc\xdf\x88\x68\xf4\x0c\x19\x04\xca\xe4\x8f\x90\x13\x7a\x39\xc8\x60\xd0\x74\x15\x51\x40\xdf\x8c\x02\xdf\x58\x55\xdd\xfc\x67\xed\x9b\xf5\x1e\xa3\x8f\x73\x47\x62\xc5\xa6\x3a\xa4\xf4\x8c\x96\xb6\x9f\x8e\x42\x99\xfb\x69\x14\x1c\x93\x56\x7b\xa6\x7c\xac\xba\xc1\xaa\x2a\x47\x9a\xe1\xf7\x40\x0a\xc4\x19\xf9\x0e\xc2\x0f\x6e\xd6\x7d\x92\xbf\xe3\xc0\x83\x44\x3d\x40\xe9\x2b\x23\x12\x21\x3b\x49\xd9\xff\x56\x14\x46\xf9\x6f\x82\xd5\xa7\x1f\x8b\xb6\x0a\x96\xc0\x83\xeb\x84\xdf\x7c\x8a\xbb\x83\x53\x49\x59\x67\xce\x94\x5e\x56\x8a\xc2\x43\xd1\x58\xda\xdf\xd8\xb7\xcf\xf7\x36\xea\x86\xfc\x4c\x51\xc4\x4b\xa9\xa6\x3f\xd4\xf4\x9c\xf5\xad\xca\xc9\x9c\xe9\x99\x66\x7f\xad\xb0\xc9\x22\x86\xe5\x50\x28\x22\x4b\xd0\xd7\x75\xb4\xa8\x32\x37\x71\xa2\xdf\x33\x36\xa2\xef\x18\x15\x93\xac\xe6\xe6\x30\xcd\x6d\x62\xbc\x2d\x38\x90\xf2\xd7\x68\x72\x5e\x7b\x70\x5a\x38\xf1\x9c\x4e\xdf\x14\x3d\x41\xd8\x7d\x52\x72\x9a\x78\x2e\xdf\x90\x87\xaf\x1e\x96\x41\x79\xc6\xda\x45\x1f\xe6\x01\xfb\x23\x4f\xd7\xd7\x74\x28\x9b\x55\x93\xeb\x90\x3d\xaa\xe1\x37\xb1\x5c\xf5\x0d\x41\x6d\x65\x55\xbc\xf7\xe2\x41\x31\xc5\x12\xf3\x01\x1b\x82\x99\xb7\xb7\x6f\xa6\x91\xed\xb4\x63\xab\xca\x21\x19\xa3\xc9\x8d\x75\x91\x43\xee\xb3\x6c\x96\x87\x7d\x93\x0f\x31\x21\xe8\xac\x27\x48\x26\xfd\x44\x8d\x6e\x5b\xd3\xf4\x25\x3b\x4f\x1d\x6b\x1c\x6b\xeb\x18\x8b\xc1\x1c\x1b\x3d\x31\xae\xff\xf1\x74\x73\x7e\x61\xfe\x21\xf9\x17\x4a\x6a\xc1\x35\xa9\x8d\x86\xfc\x32\x9c\x18\xff\x3c\x6a\x90\xee\x80\x3c\x41\xb5\xd3\x8e\xc2\xb4\xf7\x3d\x39\x7b\x11\x4c\xb0\x5b\xb6\xee\x92\x16\xc5\x3d\xd6\x84\x3c\x8b\x2d\x87\x22\xf6\xe6\x88\x8a\x7f\xea\x59\xc5\x36\xdd\x49\x46\xc0\x27\x68\xe0\x13\x1c\x7f\x2d\xf5\x98\xb6\x09\x81\x3b\xdf\xdc\x61\x5f\xc5\xa0\x1f\xbb\x92\xc5\x1d\x97\x5d\xba\xf1\x3e\x12\x72\xbc\xec\x4f\x30\x6b\x0a\xb8\xc0\x3a\xfd\x72\x6e\x4d\xc8\xfd\x01\xe7\xf7\x18\xd9\x9f\x4e\xea\x47\xcf\xcd\x55\x35\xa0\xf5\xa2\xc7\x40\x13\x34\x6b\xd2\x37\x13\x72\xf7\xfb\xe7\x9a\x69\x96\xea\xbc\xa8\x5f\xca\x0e\x50\x0e\x53\x5d\xf7\x22\xe6\xf5\x9b\xce\x72\xb1\x33\x30\x5f\x3e\xc5\xbe\x54\x04\x90\x3c\x88\x5f\x8e\x58\x8d\x6d\xfb\x8c\x8c\xaf\x38\x27\x8e\xd3\xf9\x85\xf9\xe6\x60\x58\x4e\x93\xb5\xc5\x77\x47\xa1\x79\x31\xc2\x0e\xc0\x6e\xfc\x71\x44\x3a\xc5\x3f\x9c\x08\x0a\xe2\xce\x9f\x60\x06\x6f\x9a\xe8\x11\xef\x8f\xc6\xc8\x8f\xc1\xc6\xc0\x49\x36\x23\x86\x9e\x20\x8e\x21\xd4\xc6\xad\x08\xf8\x79\xf5\xb4\x20\xf6\xb1\x03\x88\x8e\xc3\x1e\xab\x05\xa2\xab\x50\xb6\xc7\xd6\x25\x1d\x39\xc5\xd1\x09\x20\x06\xad\xd5\xfb\xd7\x89\x9b\xfe\x00\x44\xd8\x70\x72\xbd\xe5\x89\xb6\xab\x71\xd1\xcd\x40\xf4\x44\x6d\x86\xd4\x46\x5f\x7b\x38\x24\x5b\xb1\xb9\x49\x12\xe9\x64\x7a\xa5\x2f\xa7\x98\xfc\xab\x3f\x2f\xd0\x12\x08\xe0\x3b\xd7\x49\x7b\xe5\x8c\xec\x0d\xa7\x3b\x43\x13\x26\x17\xa5\x05\x81\x33\xeb\x04\xcd\xb2\x20\x15\x03\x19\xe3\x09\xc8\x34\xb9\x27\x5b\x45\x2d\x00\xcd\xff\x7d\xad\x03\x81\x20\x36\xd2\x8a\xf2\xd3\xbc\xbe\xc3\x74\x9e\x68\x01\xa2\x3f\x89\xa4\x08\x11\xff\x26\xb2\x0d\x3c\xf6\x6f\xc9\xcf\x72\x85\xca\x63\x34\xab\x2a\x3c\x57\xd5\x87\x24\xf6\xd0\xac\x6f\x2b\x3e\xe9\xa9\x85\x59\x12\x2f\x5a\x82\x5a\x90\x15\xbc\x8f\xef\xd1\x37\x24\x40\xba\xa8\x16\xca\xa1\x05\x30\x9e\x1f\x87\x18\x5e\x5d\x79\x9c\x5a\xf5\x14\xd6\xe1\x08\x92\x4d\x3d\x46\xd0\xdb\x6a\x96\xe7\xe0\xd8\x2b\x25\x1c\x00\xa2\xcf\xe9\xaa\x87\xa1\x64\x4b\xb6\x87\x3e\x4e\x4c\xd8\x0f\xa3\xa0\xcc\xf5\x6d\x49\xf6\x98\x2f\x81\x23\xf6\x03\x79\x30\xc8\x66\x95\x62\x8f\xdb\xba\x03\x10\x27\x7e\xc4\x26\x9d\x6d\xdd\xc5\x2c\x07\xb6\x8e\x34\xf0\xfd\x11\x69\xf4\xbd\x1f\x85\x40\x27\x20\x4a\x06\x3d\x15\x44\x75\x0d\x96\x4e\x0f\xb3\xba\x09\x58\x37\x1f\xd3\x91\xdb\x49\x62\x71\x78\x69\x84\xee\x08\xd6\x82\x53\x93\x0f\xa6\x9d\xa5\xcd\x6d\x51\xce\x48\xda\xc3\x8c\x28\x80\xa1\x7f\x4d\xb2\x65\xdc\xa3\x0b\x4c\x6f\x7a\x0c\x74\x08\xd7\x59\x0b\x5f\xdd\x35\xab\xdd\x44\x57\xc9\x0b\x5a\x20\x4d\xb5\x24\x91\xd2\x37\xeb\xe1\x80\xe8\x0f\xca\x07\xc2\x08\xc4\x83\xad\xb0\xf2\x61\x41\x83\x93\x78\x7a\x9d\xfa\x1b\x63\xa3\xad\x22\x46\x77\xef\x57\xf7\xb4\x48\x59\xef\x2d\xc0\x3d\x18\x61\xd1\xc2\xd4\xcd\xa6\x4c\x06\xf6\x83\x32\x46\xec\x58\xab\x58\xc7\x27\xb8\x4d\x71\x82\x94\x09\x3a\x59\x7f\x60\x72\xdb\x7d\x48\x1e\xab\x9a\x58\xe1\xeb\x5c\xd6\x1f\x4e\xd0\x6b\xb2\x5a\x1c\xf7\x95\x12\xc1\x69\x84\x21\x7f\xdc\xf9\x76\x94\x66\xd6\xb8\xc1\xa7\x65\x11\xe2\x70\xb9\x21\x11\xda\xa9\xb1\x37\xfc\x54\x9f\xe2\xf9\xfa\x07\xb5\xf6\x92\xa9\x35\x79\x1b\xd0\x80\x9a\x39\x53\x74\xbc\x45\x29\x4e\x6a\xe3\xa5\x5e\x3b\xcb\x95\xf4\x82\xf0\xfd\x22\x1b\x0a\x6c\x90\xc3\xf6\x06\x31\x3c\xfa\x26\x2f\x2d\x3a\x1d\xae\x02\x64\x83\x5b\xd2\x1e\x94\x92\x3a\x6e\x0f\x4b\xdb\xdd\x45\x3d\x42\x6d\x32\x20\x5e\x7e\x24\x37\x04\xcb\xfb\x9e\x94\x89\xfa\xdf\x59\x26\xfa\x36\x23\x64\xc7\xc8\xd5\xed\x76\x1d\xb1\x75\x30\x4c\x92\x46\xc8\xf7\x31\x0e\xac\xaf\xd9\x81\x21\x4b\x3b\x76\x50\x0a\x5b\xcc\xf7\xd0\x7d\xba\xf7\x3d\xec\x3b\x50\x86\xfe\x4c\x2e\xd2\x69\x8d\x55\x17\xe9\x1a\xed\x8f\x84\xa1\x2f\x11\x13\xc3\xc1\x04\xec\x51\x67\x3e\xf5\x4d\xc4\x36\xd2\x8b\xa6\x2f\xe4\xaf\xd9\x43\xc1\xa4\x7b\xbf\xc3\x34\x36\x27\xd6\xed\xc2\x7c\x33\x1f\xa6\x1e\x60\x03\xf1\x6b\x33\x22\xf1\xa1\xcd\xed\xb9\xe2\xbe\x7d\xcd\x2f\xcf\x4e\x55\x1f\x8a\xc2\xe0\x72\xc4\x94\x85\x60\x50\xf1\x47\x41\x0a\x49\xc6\xd2\xf1\x03\x50\x4e\xa9\x49\x33\xbd\x71\x92\x72\xd7\x28\x96\x77\xe3\xa2\xe7\x98\xc9\xce\x16\x4b\xf6\xa7\x13\xeb\xda\x43\x28\xf8\x62\x92\xad\x16\xd3\x01\xfe\x06\xe5\xd0\xf3\x06\xc8\xd1\x86\xe6\x65\x2f\xd4\x35\x4c\xbb\x71\xba\xcd\x9c\xf6\x55\x22\x7c\xbd\x3a\xc1\x53\x9d\x3d\xd4\xb4\x69\x29\x84\x17\x0f\x51\xbf\x47\x12\xb9\xef\xd1\x24\x9b\x49\x97\xf2\xb5\x9d\x81\x41\xfa\x63\xa6\xdc\x42\xaa\xd4\x67\xa9\xb8\x61\xa8\x06\x6f\x60\x62\xcc\x69\x98\x84\x2a\xfe\xb2\x37\xc0\x2c\xac\xd2\x60\xc6\x9c\xfb\xdd\x4c\xc8\xa4\x94\x4d\x3f\x4e\xba\x76\x15\x60\x25\xbe\xe4\xa8\xac\x52\x7d\x3d\x1a\x53\xf8\xa8\x6a\x96\x38\x2d\x0b\xa2\x83\x01\x86\x71\x29\x58\x38\xdd\x07\x59\x51\xc4\x6d\x45\x11\xb1\x9a\x8f\x12\x85\xe4\xe8\x04\xc2\x3a\x7b\xa8\xd9\xb5\x79\xbc\x02\xe3\x28\x3a\x26\xe4\x72\xdc\x91\xe1\xf6\xc3\xa2\x29\x4a\x5b\x94\x53\x72\xce\xe0\x7f\xee\x6e\x05\x70\x18\x63\x43\x28\x62\x26\x09\x92\xcf\xed\x9d\x6d\x96\xbd\x3c\x5e\xf1\x0f\xd8\x71\xf2\x42\x6a\xbf\xa3\xc5\x6d\x2e\x53\x64\xa9\x69\x27\x76\x27\x37\x92\xcf\x91\x63\xce\x31\xc4\x1c\xd7\xfb\x0e\xdc\x75\x14\x41\x63\x0d\x72\x3c\xd9\xb7\xd8\x1e\xc4\x26\x89\x1a\xe6\x39\xbd\xf1\x90\x4c\xdd\xe1\xe0\xa4\xf6\x72\x8e\xd5\x51\x7d\x0f\xaa\x8f\xeb\x6c\x7a\xb6\x64\x1f\xa8\x6e\x3b\xca\x21\x1d\x6b\x24\xf3\x0d\x1a\xce\x08\x67\xdf\x55\xd9\xc0\xfa\x27\x9a\x59\x8f\xe9\x79\x52\x22\xed\x32\x9b\xdb\xf2\x6c\xf4\x50\xa9\x19\xf9\x7b\xa1\x29\x64\xb6\x15\x93\x0c\xc7\x9d\x3c\x0e\x93\xc9\xf0\xe1\x71\xfe\xf6\xf0\x15\x6c\x75\xe7\x41\x2f\x47\xbd\x33\xa7\xaf\x71\x42\xca\x33\xd3\xd5\xe3\xd6\x0f\x4b\x11\xd9\xe3\x81\x58\x2c\x66\x7e\xa1\xf9\x55\xd1\xba\x47\x63\x69\x4a\x66\x89\xdc\x0c\x64\x70\xd6\x01\xab\xdb\x29\x28\x10\x39\xf8\x2c\x53\x9a\x1f\x6f\x71\xaf\x65\x60\xd6\xee\x6f\x7c\x79\x56\x8b\xbd\xab\xd1\xb8\xb5\xda\x5e\xed\x20\x5d\x62\xba\x1c\x6e\xa1\xa3\xd7\x56\x97\xe5\x38\xde\xf2\x95\x80\x24\x74\x10\x4a\x3f\x76\x02\xe0\x99\x7f\xf6\x20\xcc\x7f\xdd\x8d\x45\x35\xf3\x93\x28\xb0\x2a\x7e\x42\x8a\xff\x83\x78\x60\x45\x89\xaa\x11\x00\x36\xa4\xb9\xfa\x9a\x44\x9b\xda\x45\xda\xa0\xb2\xed\x6d\x39\x90\xf4\x35\xed\xf0\x4e\x96\x2e\xe5\xb6\x28\x1e\x69\x90\xfa\x32\x25\x2f\x9a\x59\xa1\xf4\x3e\xac\x2b\xca\x29\x68\x50\xca\x82\x1d\x82\x0f\xd8\x12\x12\xb6\x17\xe9\x3f\x70\x00\xcd\xb8\xa7\x55\x5f\xd1\xc1\xd5\x44\x14\x9d\x59\x0f\x0a\x50\x97\x10\xec\x80\x91\x1e\x06\xd4\x81\xfa\xe6\x68\x14\x0c\x9e\xdf\x8d\xc8\x39\xde\xa4\xd3\x2c\x34\x71\x96\x1c\xf0\xae\x0a\xa1\xc1\xb5\xd2\x49\xef\x60\x3d\xd0\x2a\xcb\xdc\x9a\xbe\x7b\x02\x4e\xab\x84\x66\x29\xae\x7b\xd3\x18\x53\xba\x54\x05\xce\xcb\x48\xb2\xdf\x96\xc7\x85\xef\x38\xce\xa3\xd7\x10\x21\xdf\xba\x34\x0a\xed\x8b\x6b\x34\xe7\xda\xc9\xf2\x01\x9a\x95\x4e\x17\x07\xbf\x02\xad\x4b\xc5\x09\x1d\x74\x16\xf8\xd5\x67\xc9\xa2\x9f\xe9\xe5\x55\x9d\xf7\x68\x68\x77\xde\x1d\x91\x95\xfc\xd1\x51\x50\x8b\x46\xe2\xa8\x4a\xe5\x04\xe5\x68\xbd\x87\x7b\xfd\x0d\xd4\xfc\x40\xc1\x8f\xc9\xc3\x05\x4a\xb9\xa3\x85\x8b\xf4\x52\x9f\x3e\x23\x3f\x8e\x75\xe3\xc3\x4d\x15\x4a\x69\x28\xf9\x05\x8d\xf0\x3b\x5a\xd5\xea\x70\xd4\x1a\x52\xc1\x7f\x93\x30\x8f\xdc\x96\xc3\x3c\xbd\x9f\x45\xa3\xee\x61\xb9\x29\x03\x37\x0a\x83\x5a\x60\x4b\xf8\x29\xc4\x90\xe7\x43\x95\x5a\xb5\xcd\x68\x7d\x2a\xfe\x80\x90\xfb\xa3\x1a\x19\xd4\x83\xe2\x4e\x99\xad\x60\x2a\x03\x00\x86\x62\x5b\xfa\x66\x22\x71\x10\x05\xea\x62\x39\x46\x01\xe7\xac\x6c\xd9\xd7\x76\xe2\x00\x5b\xd8\xdb\x6c\x67\x65\x8f\x68\xc2\x0e\x58\x6f\x78\x81\xaf\x0b\xa3\xed\x08\x92\xeb\x64\x98\x36\xd4\xad\x88\xa8\x74\x94\x67\x51\x8f\x52\x5f\x7c\x25\x46\xbd\xe8\x1b\xa8\x9f\x90\xb8\xe7\x15\x00\xa3\x40\xe5\x4f\x78\x00\xc4\xe4\x2b\x71\xda\x6d\x90\x8a\x3e\x46\x0f\x42\xb1\xe8\xc5\x5e\xf2\x6c\x98\x76\x77\x05\x3a\xea\x1d\x12\x90\xfa\x56\x14\x7c\xd1\x55\x89\xc0\x77\x7e\x67\x0f\x8d\x93\x00\xf0\x93\x6f\x47\x3b\x7e\xce\x7b\x87\xd4\x78\x37\xf6\x4d\x9c\x62\xcb\x4a\x01\x0c\xe0\xe6\x53\x56\x36\x3f\x42\xfd\x87\xa9\xd6\x76\xa5\xbd\x43\xcf\x36\x97\x2d\x7c\xef\x50\x50\xbc\x46\xc5\xc5\x6b\x04\x54\x26\xe6\xe5\x69\x76\xc7\x23\xd3\xed\x73\xa4\x2f\x81\x93\xca\x8d\xfc\x7f\x96\x10\xd8\x62\x92\x65\xf9\x14\xd1\x34\x8f\x53\x1e\xaa\x54\x31\x2c\x94\x6f\xd7\xe9\xa7\x2e\x99\xa2\xdd\x20\xd4\xea\x28\x29\x6f\x1d\xa5\x9c\x34\x35\xdd\x38\xa7\xd3\xe1\x14\x9d\x0e\xa7\x68\x45\xe4\xc3\xa2\x88\xcd\xce\x30\x91\xf7\xff\x49\x8c\x42\xe4\x39\xce\x9e\x02\xdf\x96\x9f\xaa\x32\xbd\x51\xc8\x8a\x11\x58\x41\xa6\xd8\x20\x76\x75\xd7\xe6\x76\x69\x98\x98\x71\x9e\xe0\x3d\x3a\xd1\xee\x8d\xf7\xd4\x06\x48\x5b\x55\x3b\x85\x8a\xab\x23\x44\x50\x2e\x73\x33\xc0\x1e\x71\x6a\x9f\x81\x9e\x53\x97\x10\x83\xa6\xa4\x6d\x09\xc4\x9d\x1b\x2a\xc9\x4d\xf0\xe5\x07\xa3\xe0\x3a\x98\xad\xd8\xbc\x67\x86\x89\xc3\xa6\x50\x4c\x1f\x23\xb9\x9c\x63\xb5\xec\x94\x81\x95\x59\xd5\x00\xc2\xfe\x13\x84\x20\x7d\x53\x63\x65\xb5\xd0\x1c\x64\xaa\x14\xe8\xca\x83\x86\x17\xc9\x3a\x4f\x0b\xb0\xcc\xd7\x1e\x92\xbd\x49\x82\xad\x6e\x2e\x0c\x14\x29\x0f\xf8\xf8\xd1\xbb\x1d\xad\xc0\x86\xf8\x59\x61\x48\xe9\x38\xfe\x68\x8c\x07\xc9\x64\x1a\x6c\x1d\x95\xe4\x19\x11\x07\xe1\xc8\x68\x9b\x7d\x93\x3f\x76\xf6\xac\x07\x81\xfb\xb8\x2c\x7e\x7a\xfc\xb3\xab\xc0\xef\x64\x9e\xaa\x4d\x8e\x83\xe3\x43\x24\x81\x08\x0b\x17\x30\xc9\x8a\xfe\xda\x06\xf8\x04\x38\xb6\x6e\xcb\x42\xc4\xb9\xb3\x73\x9d\xdc\xd8\xce\x54\x59\xc5\xd6\xbb\x51\x18\xc9\xd8\x1c\xb7\x2c\xa5\x61\xf8\x9f\x8c\x02\x20\xfb\xcd\x11\xe7\x06\xb7\xe1\x83\xe4\x80\x01\xb9\xa3\xc0\x42\xef\xc7\x90\x24\xfe\xd9\x49\x76\xf5\xbf\x22\x4b\x1d\x40\xd2\xfd\xa0\x36\xe1\x48\xfa\x14\xcd\x4d\xa4\x43\xd0\x34\x76\x38\x72\xf5\x14\xb0\x81\xae\x8e\x68\xd7\xef\x5a\x27\x91\xac\x74\x6d\xb5\x67\x73\x0c\xfd\xe0\x49\x42\xa5\xdf\x29\xa8\x04\x02\x01\x1f\x8d\x45\xcf\x26\x6d\x55\x5f\xf6\xd6\xcf\xd4\xb1\x26\x44\xd1\xe4\x71\xd1\x9b\x26\x7b\xcc\x0b\x81\xac\xf9\x77\xf6\xc8\x4a\x01\xc8\x36\xb5\x4e\x7c\xff\xed\x82\xf2\x87\x9e\xad\x16\xed\x74\x68\xda\xdf\x21\x12\xc1\x6d\x52\x53\x3c\x86\x93\xc4\x65\x2c\x84\xe8\xd9\xf4\xa1\x90\x51\x9f\xd5\x07\x82\xd4\xf9\x1e\x09\x90\x6a\xf3\x04\x2b\x7c\x7a\xbd\xf1\x95\x2f\x8d\x53\x63\xd0\x40\xbd\x25\x7a\xf2\x8e\xfe\x1a\x9a\xf8\x9f\x5f\xaf\x1e\x93\x13\x56\x0f\xc5\xdb\x98\x65\xb7\xc2\x50\x92\xc3\x7f\xff\x3f\x98\xd0\xed\x5d\xd8\xdb\x94\xf2\x78\xa9\x07\x28\xd9\x51\x2d\x43\x51\x7a\x6c\x2c\x7a\x99\xfe\x1a\x91\x8d\xd1\x23\x40\xc1\xba\x63\x3d\x18\x3c\x5f\xa4\x21\xb8\x25\x93\xe7\xb6\x54\x87\x64\xaf\xfd\xe3\x09\x9b\x3c\xad\x39\xb0\x79\x3f\x2e\x67\xe8\xe1\x1e\x23\x09\x3d\x8c\x3a\x62\xf1\x7f\x5d\x6e\x03\xd2\xb0\xad\x51\xa8\x7f\x37\x89\xce\xd5\x4d\xcd\x74\xb0\xc1\xd6\x09\x6c\x97\xac\x05\x6e\xae\x8a\xd9\xea\xff\xa0\x0b\xcf\xda\x2f\xd9\x4e\x29\x62\x75\xcf\x78\xdb\xf5\x86\xd3\xf5\xf8\xa5\x69\x0a\x3c\x17\x59\x68\xf5\x42\xd0\x3c\x32\x69\x77\x4d\xc1\x2f\xcc\xb2\x69\x26\xa6\x6f\x7c\x46\x3e\xc8\xb3\xfe\xc0\xe9\x6d\x3a\x73\x66\x59\xc6\x8e\xcc\x1c\x98\x2b\xc2\x62\x57\x21\xdf\x2a\xf0\xe0\x4c\xf8\xba\xdc\x52\x7d\xed\xf1\x86\xa5\x2c\x8f\x93\xc4\xc8\xb9\x84\xae\xcc\xd7\x71\x01\xfa\x66\xa2\x32\x3d\x70\xa0\xd9\x8e\x93\x44\x2b\x53\x75\xbb\x8f\xa8\x91\xf3\xd6\x04\xbf\xeb\xc5\x17\x9b\x7d\xf3\xb5\x61\x9c\x88\x8f\x4e\x31\x55\x85\x60\x30\x85\x36\xd9\x06\x0c\xc7\xbf\x4b\x85\x42\xd9\xb6\x6a\x7a\x53\xcc\x22\xfc\x2b\xf9\x77\x7e\x88\x68\xce\x9b\x39\x5d\x25\x4d\xf6\xc4\xa4\xdd\xa2\x63\x06\x56\x9a\x84\xb8\x9b\x1f\x32\xfd\xe1\x3d\x6c\x01\x37\xdd\x24\xd7\x81\x44\x6e\x93\xa7\xe0\x4e\x8c\x05\xfc\x13\x11\x69\xc8\xe6\x6e\x58\xc1\xb1\x75\x36\x23\x22\xa6\x6c\xd6\x56\xb6\x48\xe2\x1d\xdc\x39\xa6\xd9\xed\x5a\xeb\x61\x80\x75\xc5\xf6\xe2\x4e\x62\xd1\x83\xc4\xa7\x7e\x2f\x22\x63\xad\xef\xe1\x5c\xf1\x23\xc3\xfb\xe7\xfc\x90\x21\x3b\xb4\x15\x36\xf7\x3c\x12\xdf\x87\x9e\x9b\x73\xaf\xc7\x5c\xeb\xda\xc3\xa4\x41\xba\xa7\xe7\xd9\x8a\xe7\x7c\x8d\x3e\xd9\x7c\x73\xd5\xac\x35\xa8\x29\x73\xdf\x7a\xc0\xe8\xee\x6b\x3d\x1a\x06\x60\xca\x61\xde\x56\xb0\x13\xd1\xf0\x34\xf3\x20\x4e\x07\xcb\xb4\xc4\xa4\x5e\x9b\x57\xc9\xa1\xf8\x97\x8e\x29\xfa\x18\x89\xaa\x56\x1f\x6b\x19\xb6\x83\xba\xa6\xbe\xae\x53\x40\xe8\x99\xdc\x14\xf0\xa0\xf7\x9a\xb3\xd5\xaa\xc0\x89\x7c\x9c\xb4\xe8\x2f\x4e\xa8\x49\x2c\xec\x6d\x0e\xb2\xc2\x5d\x9c\xeb\xe9\x90\xf7\x17\xcb\x6a\xb4\x6d\xc7\xa8\xc1\x14\x76\x3d\x3c\x51\xf5\xf5\xc4\xa5\x3d\x3f\xdf\x1c\x64\x82\x41\xd2\xbc\xc2\x39\x9c\xa6\xfa\x66\x22\x0b\x7e\x5a\x34\xd3\xf4\x72\xbc\xdc\x56\xe0\xc3\x6f\xd4\x08\x3a\xcf\x36\x21\xe7\xec\x2b\x2c\xac\x25\x14\x28\xfa\x9a\x74\xa3\xbb\xf1\xe2\x62\xdc\x19\x26\x65\x0c\xa8\xfa\x19\x0d\x83\x38\xe4\xf4\x35\x11\xa7\x7a\xc3\xbe\x49\x77\x12\xf1\xec\xff\x88\x42\xca\xfb\x13\x5c\x9c\x73\x6c\xa1\xad\xf3\x8f\x88\xca\xfa\x13\xac\x71\x17\x94\xf7\x78\x9a\xfd\xc0\xac\xc1\x4e\xfc\xb9\xbd\x2e\x5b\x19\x6b\x69\xd4\x30\x1a\x65\x02\x7f\x25\xb6\xab\x8d\x80\x47\x9c\x1e\x51\x87\xe4\x34\x2b\xf8\xe4\x6b\x45\x69\x12\xe4\xa1\x4e\x95\x3c\xa4\xfa\x17\xc7\xfd\x1d\xf3\xee\x1e\xe2\x56\xe2\x6c\x73\xa6\x71\x0d\x3f\xb0\xf1\xbe\x08\xb4\x51\xfc\x79\x21\x4c\x8c\x54\x57\x01\x08\xe4\xd7\x65\x69\xe0\x7e\x9d\xc4\xcf\x77\xdd\xe8\xa0\x26\xf9\x8f\x89\xfd\x35\x23\x72\x56\x8e\xef\x23\x61\x00\x69\x16\x64\x09\x90\xe6\xfd\x1a\x78\x59\x8e\x09\x24\xe9\x1b\x04\x02\x0e\xb3\xbc\xd2\xe4\xc0\xe6\xd3\xcd\x6e\x6c\xda\xb6\x8c\x3b\xba\x63\x9d\x6c\x82\x5c\x99\x53\x5a\x78\x94\x60\x96\x3c\xb5\x5d\x85\x26\xf0\xbf\xc1\x5b\xf1\xe2\x1e\xa1\xb9\x78\x92\x83\x16\xe6\x46\x74\xce\x89\x02\xd8\x71\x86\x25\xcf\x0b\xf4\x08\xd8\xe4\x3b\xbe\x18\x2f\xb3\x3c\xf6\x6d\x17\xfd\xed\xb8\x73\x20\x9e\xaa\x82\x01\xf2\xa3\xc3\x3c\x7b\x6e\x65\x3d\x10\x3b\xeb\x26\x65\x46\x37\xa9\xd8\x58\x2b\xca\x99\x31\xf1\xed\x00\xb4\xc2\x65\xcf\x6b\x55\x55\xdf\x84\x62\xe3\x23\xd2\xf1\x7e\xb4\x15\x00\xb9\xe1\x4a\xbb\x41\xbe\x02\xef\x8d\x02\x8f\xe6\x3d\xda\x3e\xa2\x6c\x49\xb6\xde\x9b\x08\x4e\x88\xa7\x40\xac\xf0\x5b\xc1\x84\x40\x92\x09\x73\x19\xfd\xef\xbe\x61\x32\x30\x49\xd6\x08\x15\xd1\x6b\x7c\x52\xbe\xe6\x1d\x63\xfe\x4d\xde\xe8\x75\xb3\xcc\xc5\x50\xda\xed\x02\x9e\x20\xfb\xf8\x64\x14\x72\x59\xd5\x28\xd7\xd1\x55\xff\x45\xb6\x3a\x03\x32\x49\xec\x1d\x5f\xbc\xe1\xb5\xe1\x3e\x66\xc7\xe0\x73\xb4\xb2\xfa\xb6\x34\x89\xb2\x66\x7c\x5f\xd7\xb7\x50\xd0\x04\xf3\x32\x7d\x01\xc1\xfa\x28\xb0\x51\xda\x2b\x71\x36\x2c\xa6\x02\x6d\x17\x62\xc6\x58\x24\x67\x48\xc4\x63\x33\x7a\x9c\x5a\x42\x43\x69\xf8\x77\xc7\xa4\xb4\x94\x64\xe6\x66\xaf\x1f\xe3\x25\x65\x73\x39\x17\xaa\x64\xdf\x73\x41\xab\xfd\xe6\x30\x2b\xff\x54\xb2\x7c\x59\x0e\x1f\xdc\x9f\xeb\xa3\x71\xe9\x2c\xcf\xfc\x6d\xb4\xc8\x23\x77\x60\x3b\x02\x1f\x4c\x49\x97\xcc\x39\x87\x79\x14\xf9\x77\x7e\x47\x36\x9b\xab\x7c\xa9\x57\x95\xdb\x2e\x9a\xf6\x61\xb7\x8b\xc7\xa5\x7b\x1d\x85\x2c\x6b\x29\xeb\xce\x50\x5f\x54\x65\x28\xf4\x0d\xf8\x19\x5e\x05\xdb\x37\xf5\x5f\x93\x95\xe7\x8c\x1d\x6a\xac\x15\x96\xb2\x04\x83\xe2\xc0\x22\x37\x89\x0d\xb2\x49\x99\x4e\xd1\x1f\x2e\x2d\x25\x56\x9c\x6d\x74\x1a\x4b\xb2\xd5\x30\x99\xe5\xc7\xad\xb3\xdc\xc6\x4b\xa9\xcd\x71\xe8\xab\x28\x31\x9d\xda\xc7\xa2\x80\x26\x67\x69\x99\xcd\x50\x52\x7f\x7a\x34\x91\x90\x3b\x9e\x69\x20\x3b\xeb\x78\x94\xa3\xf2\x07\x35\xb8\x76\x6e\x5e\x89\x93\xd8\x38\x07\x65\xe7\xad\x25\x67\x9a\xe3\x42\x6e\x9f\xa6\xf2\x60\x97\x49\x3a\x59\xda\x20\x55\x95\xf7\xe4\x17\x3a\xc2\x53\xcd\xf4\x2f\xa4\x15\xdd\xf1\xee\x95\xc0\x49\x16\x7c\x22\x89\x78\x6e\x6f\xb3\x6b\xed\xc0\xe6\x33\x34\x01\xf8\x36\x8d\x06\xa9\x84\x06\x12\x8a\xc3\x24\xcd\xfc\x97\x38\x1e\x5c\xd7\x35\x4c\x5a\x0c\x7a\x6b\x45\xdc\x41\xc2\xe4\xa7\x53\xab\x9f\xef\x74\x8d\xc2\x72\x7a\xcb\xef\x3a\xdb\xc9\xd2\xac\xbf\x36\x45\xa3\x87\xaf\x8d\x42\x6d\x7d\x9a\xa5\xae\x3f\xa6\xaa\x38\x4b\x97\xf6\x08\x18\x81\x4c\xfc\x26\xae\x16\x7f\xf4\xe8\x3a\x7d\x2d\xba\x23\x9e\xe7\xbe\xb0\x37\xa0\xef\xd8\xb1\x48\x2b\x71\x0a\x61\x15\x4d\x03\x39\x41\xbf\x67\x6b\x44\xc6\xb3\x0f\xcb\x5a\xdf\x7a\x75\x14\xaa\xc7\x9d\x2d\xaf\x9b\x74\xe3\x67\x5b\xb2\xed\x3c\x3b\xd9\x69\xfd\x3f\xf5\x39\x71\x48\x07\x74\xf0\x04\x5a\x5c\x00\x7c\xee\x4d\x64\x8e\x10\x86\x59\xb1\x53\xc1\xad\xed\xf7\x70\x1b\xbd\x9b\x81\xaf\x50\x4f\x90\x86\xcd\x4a\x5c\x42\x93\xac\xba\x0f\xe8\xa0\x1c\xe1\x76\xca\x91\x89\x0c\x4f\x84\xdf\x8a\xea\x74\xec\x28\x0d\x17\xf7\xff\x3d\x92\xcf\x7b\xcf\x47\xe5\xa5\xdc\xbc\x02\x4c\x70\x9e\xd9\xf5\xbe\xb1\x8b\xef\x42\x64\xd9\x64\x41\x90\xdc\x76\xa1\x89\xa9\x64\x34\x64\x6b\x6a\x83\xac\x6f\xea\xd2\xef\x45\x13\x46\xa3\x90\x29\x1c\xc5\xdf\xe8\x1b\x02\x6e\xfb\xd6\xa4\xe5\x4c\xc0\x52\x4e\x8d\x48\xaa\x73\x03\x10\x92\xaa\xe0\x72\x14\xdd\xa0\xf9\xb6\xbb\x24\x64\x5e\x98\xc4\x8a\x12\x13\x0e\xd3\x93\xf8\x5a\xaf\x04\x5b\x3d\x62\xd4\x39\xca\xa2\x74\x52\xb0\x61\xb8\x6d\x07\x34\xf1\x71\x6b\xbe\x83\xde\x8b\x9f\x31\x0b\x13\x99\xa7\xa9\xe1\x7c\x5a\xd6\x14\x12\x1c\xe8\x4a\xa9\xf9\x10\x0f\xa8\x91\xa9\x43\xb1\x1a\xe7\x18\x3c\x44\x92\xfc\xba\xfc\x3b\x7d\xfd\x99\x83\x53\x2b\x26\xf7\x9a\x48\x6e\x3a\x52\x2e\xc8\x8d\x47\x3a\x21\x82\xf6\x30\xb7\x66\xd8\xc9\x4d\x39\x46\xe4\xfa\x36\xd9\xb9\x7c\x7b\x92\x44\xb3\xb7\xd9\x36\x49\x92\x65\xa9\x44\x72\x07\x3e\x10\x10\x41\x3b\xf8\x8b\x49\x3c\x15\x6c\xbe\x35\x54\x78\x77\xa3\x40\xba\xde\xa2\xf9\xf4\xb8\x9b\x58\x84\x69\x77\x37\x03\x49\xe0\xbb\x58\x81\xde\x85\xd2\x67\x60\xe7\xb0\x00\x5c\x27\x62\xfb\x36\xd8\xb7\xaf\x8a\xd7\xdd\xa2\xcc\xad\x2d\xf5\x14\x07\xa2\xa6\xb9\x86\xbe\x99\xc0\x37\x66\x0f\x35\x57\x65\x64\xb9\x41\xf3\xc6\xa4\x9a\x7e\x98\x24\x34\xc5\xe9\x4e\x00\x06\xdc\x88\xab\x11\xd9\xb3\x40\x3d\xc5\x0b\x61\x7a\x9b\x86\x6b\xb2\x3c\x10\x81\x61\x0b\x1a\x64\xf4\x3c\x55\x3f\x2f\x7b\xc3\x7c\x9a\x9c\x3f\x4e\xc9\x69\xe1\x94\xa8\x1b\xde\xb9\x0a\xf5\x36\xfe\xcd\x07\x94\x48\x0e\xf2\xb8\x63\x1f\x61\x62\xbb\xdc\x47\xc7\x52\x20\xaf\xcd\xd7\xc0\xbc\xd0\x4c\x02\x37\x07\xc1\xe5\x3d\xa4\x30\x2e\xc7\x90\x27\x84\xdf\x06\x42\x09\x88\x6b\x1f\x08\xe8\xe6\x0a\xce\x30\xbb\x08\x91\x71\x8a\x23\xcf\x68\xbc\xfe\x74\x34\xa6\x56\x57\xfd\x2e\x57\xbb\x7e\x56\xab\xc8\xc6\x55\x5a\x2c\x97\xa6\x24\x02\x49\x42\x10\xe4\xcf\xc9\x90\x84\x0e\xa5\xb7\x68\xb2\x0b\xa9\x22\x58\xac\x33\xeb\xdb\xab\xc3\x7d\xb3\xcd\x81\x49\x7b\x26\xed\xaa\x02\x33\x1a\x6c\x7f\xc1\x74\xad\xbf\x98\xe0\x0a\x3e\xf5\x54\xb5\x89\xda\x89\x23\x6e\x39\xe9\x95\xc6\x97\x67\xbd\xf2\x4a\x4d\x23\xb4\x69\x92\x2c\x85\xe2\x8a\xd3\xfb\xa8\xee\x1a\x40\xac\x8d\x51\xf8\x7a\x4c\xe7\x3a\xa1\xb4\x1a\x51\x1c\xd3\xb5\x5f\x1b\x9a\x12\x97\x8c\xa7\x71\x8b\x94\xaf\x6f\xb1\x6c\x29\x46\x25\x1a\x54\x8d\x6f\x44\x3c\x6e\xbe\x11\x02\x43\x9e\x99\x6e\xc7\xc0\x64\xd2\x5b\x44\xbf\x25\x8f\xd3\xc1\x7a\x35\xcd\xda\x97\x86\x45\x19\x2f\xc6\x2e\xa0\x3b\xcd\x0e\x8f\xa8\xff\xc1\x61\x9a\x3f\x69\x5b\x93\x17\x6c\x80\x83\x06\xb4\xc3\x4d\x1d\xa1\xe0\xa5\x6c\x98\xa7\x41\x6b\x59\xb3\x7e\x6a\xf0\x5f\xa0\x86\x6c\xb5\x4d\x24\xde\x38\xa2\x67\xa0\x64\xdf\x63\x5d\xf7\x9d\xad\xed\x72\x38\x22\xa2\x61\xfb\x71\x27\x4b\xbb\xc3\x8e\x53\x19\xc2\x7d\x39\x85\xfd\xa1\x6f\x26\x0e\xf3\x43\xcf\x36\x3b\x46\xee\xd4\x73\x7b\x6b\x05\x5c\x9d\xb0\x45\xd7\x74\x49\x25\xea\x24\xab\x44\x9d\x9c\x88\x58\xcf\x2f\xec\xad\xb2\xdb\x72\x98\xba\xa7\xeb\x77\x3b\x8d\xab\x85\xa8\xb9\x18\xbf\xfc\x32\x0d\x76\xfc\x31\x3e\x5d\xdf\x44\xdc\x8b\x5e\xce\xfa\x00\x78\x7d\x3b\x2a\xcc\x1a\x5c\x24\xa8\xb0\x6b\x4b\x39\x9d\x77\x06\x70\x0c\x78\x18\xb3\xbf\x90\xa3\xa8\x83\xbb\xef\x51\x04\x1d\x93\x0b\xe3\x62\x29\x0e\xe8\x5e\x31\x49\x2c\x22\xdd\x73\xde\x17\x44\xda\x5d\x7e\xa7\x2e\xec\x1d\xf3\xb8\x46\xc2\x0e\xbf\x4e\x14\x3c\xd7\xc5\xb3\x12\xdd\x83\x0f\x26\xa0\xb0\x43\xcf\x36\x7b\x71\x57\x75\xec\x78\x3c\x1a\x50\xfc\x29\x29\x50\xd1\x31\xb8\xe3\xb3\x9f\x7f\x13\x15\x92\x06\x9a\xb3\x2c\x2f\x76\xca\xda\xf5\xfe\xcc\xfb\x1d\xd9\xe5\x96\xe0\x3d\x63\x9c\x68\x7c\xc0\x2d\x9a\x16\x3d\x39\x0a\x4a\xfd\x1b\x54\xa3\x15\x36\x2d\x6d\xda\xc1\x28\x3a\x62\xfa\x11\x36\x79\xb8\x49\x19\xc0\x05\x66\xca\xd8\x24\x99\x21\x1b\x03\x0c\x10\x03\x85\xfc\x14\xe1\x56\xf7\x04\xd1\xc6\x7e\x35\x22\x2e\xff\xc7\x7e\x1f\xb5\x87\x49\x62\x31\xe7\x80\x0f\xb8\x33\xa6\x26\x50\xfd\x52\xe0\x9b\x1b\xb5\x3e\x1e\x8b\x59\x56\x56\x19\x42\x23\xe0\xf2\x3f\x19\x8d\x49\xeb\x3f\x4c\xe4\xaa\x65\x8b\x73\xcd\xf9\x9a\x84\xb1\x6d\x58\xa6\xfa\xe1\x98\xfd\xae\x54\x3b\xe5\xc9\x46\x4e\x0d\xc2\xaa\xa2\x81\x6b\xcf\xb1\xea\xbd\x16\x00\xf8\x8d\xf7\xb7\x48\x57\x56\x58\x0d\x5b\x97\xea\xd2\xd2\xc1\xb0\xe8\xb9\x28\x06\xb2\xc8\x0f\x90\x78\xe8\x1b\xef\xae\xd1\xc9\xfa\xfd\xac\x1b\x03\x0e\x0d\x3f\xe3\xaa\xc6\x55\x7d\x57\x27\xaa\xd1\xb5\x62\x9a\x19\x8e\x0e\xef\xc9\x5b\x5d\xa1\x83\x3e\x1c\x4e\xb0\xb6\x92\xa5\x53\x10\x3a\x46\x27\xe6\x2c\xb9\xdc\x9e\x62\x7e\xe3\x66\xdd\x94\x5c\xd7\x0e\x6c\xda\x75\xbc\x67\xaf\x7f\x5b\xad\x0a\x7d\x53\xf3\x57\xf3\x07\x65\xee\xd5\xe6\xea\x39\x8f\x93\xea\xbb\xfa\xd3\x50\x1a\x5e\x8f\x88\x91\x78\x8b\x28\xca\x89\x59\x5d\xb3\x79\xf1\xa0\xdc\x42\x20\x3c\x37\xa3\xb0\x93\xe1\xdc\x8e\xfc\x6e\x57\x8b\x00\xde\x0d\xbe\xaa\xf3\x94\x3f\x3c\xb0\x1e\xf6\xfe\xf7\x65\xf3\xe0\xaf\x3f\x8d\x28\xa7\xd4\x20\xef\x6c\xe0\x6a\x88\x2d\xe9\x2b\x3f\x37\xb5\xe3\xe7\x34\x1e\xdd\x8d\x68\x34\x03\x72\x61\xa1\xab\xa0\xc7\xe6\xb0\x9d\xc4\x98\xc3\x94\x0b\xc3\xb1\xba\x45\x56\x3c\x9b\x14\x23\x76\xb7\xb8\xf5\x39\x54\xae\x13\x2e\x1a\x35\x9d\xbe\xa6\xe4\x4e\x55\x7f\x83\x22\xc2\xef\xd3\xbc\xee\xef\x13\xde\x5d\x1a\x8a\x4f\xb8\x5b\x7f\x18\x85\xce\xcd\x1f\x52\xda\x9d\x66\x5d\x92\x4d\x80\x33\x81\x73\xb9\xaf\x93\x8f\x1a\xc4\x49\xe6\xcd\x41\x9d\xdf\x28\x3d\xf4\x06\xb1\x19\x0a\xb3\x3a\x13\x08\xf7\xd7\x75\x39\x20\x69\xbd\x16\xd1\x40\x1b\x90\x35\xfd\x67\x6c\x61\xfc\x71\x8d\x2e\xf7\x7c\xb3\x17\x2f\xc1\x76\x13\x30\xea\x0c\x10\x27\x87\x49\x07\x45\xfe\x7b\x13\xcc\xb2\x85\xbd\xcd\x4e\x92\x79\xcf\x78\x27\xf2\x27\x97\xe2\xe4\xff\xd8\x29\x6a\x90\xe5\xa5\xed\xa2\x8c\x7e\xc1\xd3\xba\xc8\xdb\xeb\xc4\xc4\x57\xec\x9b\x6d\xb6\xe3\xbc\xec\x69\x9d\xe4\x65\xaf\x16\xf6\x7a\xd9\xab\x47\x7c\x2b\xd0\x24\xfe\x31\xd5\x8d\x4e\x04\x08\xa9\xac\x32\xac\xc5\x61\xe2\xbc\xc9\xd0\xfb\xb8\x4e\x6c\xfa\x33\x2c\x4a\xc5\x74\x9f\x64\x18\xbb\xe7\xe5\x5a\x03\x63\x22\x25\x35\x53\x87\xfd\x6c\x25\xb6\x45\x69\xf2\x06\x35\x34\xff\xa9\xac\x5e\x7d\x4d\x60\x77\x16\xe7\xd3\x4c\xc9\x57\x9a\x30\x0e\xeb\xd7\x49\xa6\xf3\xcf\xb9\x3d\x7a\x7e\x82\x1c\x2d\xd2\x13\x71\xba\x62\x8b\x12\xcd\x9a\x39\x07\x37\xfd\x95\xfc\x4c\x7d\xed\xf7\x5b\x27\x4b\x17\xe3\x6e\x75\x02\x4e\x53\x6b\xf3\x53\xea\xde\x03\x8b\x01\x73\x44\xb5\x61\x9c\xf1\x37\x19\x28\xbb\x3e\xd5\x34\xcb\x0a\x4a\xa4\xc0\x4e\xdd\x8a\x48\xc8\xe3\x6d\x22\xfb\x1d\xf7\xc7\xe0\x52\x12\x97\x9d\x1e\x1e\x38\xb6\x3d\x98\xf0\xfa\xba\x46\xc1\x7b\xbe\x59\xc2\x60\x2a\xcc\x95\xaa\xeb\x8a\xbe\xa9\x13\xa4\x2f\x7a\x59\x67\x99\x34\x2d\x3f\x62\xef\x9b\x8f\xb6\x0d\x26\x0c\xfb\x83\x32\xce\x52\x49\xc9\x94\x9d\x4f\x21\x00\x5a\x73\xc0\x30\xdf\x94\x92\x08\x2b\xea\x83\x11\x59\xbb\x9d\x62\xa4\xf3\x16\x75\x42\x86\x83\xb6\x35\x78\x42\x9e\x01\xc1\x8a\x5b\x01\x86\xea\x98\x3c\x8f\x6d\x77\x26\xa8\x3d\x43\xd0\xc1\x0b\x06\xfb\x99\x40\xe8\x7c\xe3\x13\xbe\x3f\x0a\x34\xfe\x07\xc6\x02\xe5\xdf\xfb\x5b\xbf\x38\x45\x6e\x68\x87\xe5\x36\xab\x24\x17\xee\x86\x73\xe7\x77\xcf\x66\xd0\x8b\xdb\xb9\x33\xcf\xc2\x91\xf2\x2a\x7b\x9e\xbe\x1a\x7d\xde\xdf\xb7\xb4\x0a\xb0\x71\x07\x13\xb7\x8d\x50\x9e\xa3\xce\xd2\xd7\x44\x96\xee\xdb\xf4\x7e\x52\xd2\x7e\x9f\x64\x38\x15\x2c\x40\x6f\x65\x73\x14\xf0\x8f\x4f\x23\x9a\x04\xfd\x58\x1e\x09\x92\x41\x85\xcc\xb0\xb6\x5e\x45\xd1\xec\x7e\x99\x27\x73\x58\x9b\x27\xb6\x80\x23\x27\x30\xc8\xe9\x56\xb0\x8c\xbd\x42\x10\xfd\x4d\x56\xce\x4c\x97\x86\xc9\xa2\x92\x08\xbd\xdd\x68\xb0\x1e\xad\x53\x67\x19\xa6\xdd\xdc\xc9\x82\x78\x1f\x1e\xaf\xc3\x78\x92\xa0\xc6\x32\x13\x25\x5d\x99\xad\x02\xf6\xb2\x01\x54\x4c\xdf\xd0\xbc\x68\xdf\xe4\xf9\x9a\x66\x27\x38\x13\xd5\xb7\x13\x2b\xf4\x96\x84\x49\x17\x66\x27\xf9\x44\x0b\xcd\xfe\x30\xed\x9a\xd4\xd2\x61\xb9\x41\x8d\xd6\x0d\x9f\x6d\x15\xc3\x76\xd1\xc9\xe3\xb6\x0f\xaf\x0e\x15\x23\xe5\xbb\xd7\x89\x1e\xb4\x6a\x92\x65\x67\x39\xec\xfc\x77\x64\x27\x38\xdd\xfa\x49\x5a\xe4\x92\xc9\x7d\x9c\x02\x50\x7c\x85\xc6\xc7\xaf\xd4\x65\x72\x32\xfb\x51\x1a\x2f\xbf\xea\x55\x37\x0e\x1c\xf0\xc4\xc0\x1a\xea\xc0\x62\x92\xad\xa6\x48\x31\x9d\x1c\x79\x68\x61\x5c\xac\xb3\x67\x5f\xb6\x65\x99\xe0\x2e\x01\x00\xbb\x46\xe6\xc6\xd7\x48\x0e\x69\x90\xf8\xb9\x60\xcf\x54\xc4\xc3\x73\xb4\x45\x1a\xdf\x13\xcb\x9e\x62\x8a\x1c\xbe\x00\x43\xf9\x56\xc8\xfe\x39\x4f\x60\xaa\xe1\xdd\x26\x59\xba\x34\x1d\x06\x9e\x9e\x94\x12\x0d\xe0\xc5\xb4\x6c\x7e\xe7\x63\x24\xcf\xc8\xe1\x23\x0f\xd3\xe0\x6b\x69\x65\x64\x05\xad\xef\xef\x10\xd3\x73\x17\xd0\x1b\x35\x2d\x1d\x91\x70\xd2\xf7\xc8\x81\x14\x9d\xf3\xad\x4b\x74\x38\xae\xda\xa2\xdc\x1d\x88\xe9\xff\x2f\xcd\x6e\xfd\xe5\x18\x79\x0b\xb2\x25\x58\x0d\x50\xf4\x45\xda\xa5\x22\x15\x3a\x0a\xa4\x29\x0e\x30\xe4\x93\x38\x45\xfc\xa8\xdd\x57\xbe\xa4\xa1\x0e\x7a\x28\xfa\xf7\x23\xf2\x28\x7d\x3b\xe2\x3d\xbb\x12\x17\x8e\x93\x0e\xec\xea\x86\x3c\x44\x7d\x4d\xc9\x81\x1a\x08\xb9\x55\xa5\x62\x68\xb8\x30\xa7\x8c\xb6\xfd\xb4\x9d\x5f\x98\x6f\xc6\x69\x27\xcb\x73\xdb\x29\x91\xe0\x38\x0a\x2d\x3a\xc4\xfa\xba\x66\xe6\x55\x6e\x9a\xcd\x21\x81\xae\xb3\x56\x11\xf5\x50\xaf\xd3\x94\x4d\x92\x69\x34\x95\xd3\xd5\x31\x9c\xa9\x7f\xb1\x81\x70\x08\x40\x0e\x52\xdd\xfa\x7a\xe2\x9b\xf7\xcf\x09\x39\xcb\x6f\x69\x67\x8c\x10\x86\x04\xce\x8f\x69\x66\x9a\x3c\x41\xc1\x88\x9c\x68\xb7\x1c\x79\xf8\x87\x9b\x64\xc8\x8b\x75\xeb\x36\xbd\xcb\x2e\x86\x69\x6e\x55\x3a\x90\xb4\xf0\x61\xbf\xe4\xe6\x7c\xb7\x03\x31\xf3\xcf\x56\x75\x50\x3f\xeb\xe4\xa6\xb3\x46\x8f\x02\x1b\xdc\xa5\x16\xdb\x77\xc6\x73\x7b\x9b\x6d\x6b\x07\xd3\x61\xf6\x00\x0a\x4a\xe8\x64\x5d\x1e\x05\xaf\xf7\x37\xe5\x18\x71\x1e\x89\x93\x9d\xa2\xb9\xa6\x59\xcd\xd7\x44\x67\xdd\x5b\x9a\xd3\xe0\x62\xf5\xa1\xc0\x67\x5f\xab\x93\xb0\xcd\x6d\x6a\xe2\xa2\x30\x69\x07\x81\xc3\x35\xba\xe5\x16\xea\x1b\x5a\x9f\xd9\x20\x4e\x71\x4c\x2e\xec\x0d\xc7\xb9\xe7\x36\x9c\x23\xb6\x64\xcf\x74\x9f\x94\x47\x8e\x86\x3b\x4e\x7d\xc4\x97\x3b\x51\x38\x19\xaf\x02\xbd\xc0\xa5\xff\xac\x1c\x6b\x40\x90\x77\xb6\x48\xdb\xe5\x2a\x16\x8c\xf7\x2b\x5d\xd8\x7b\x30\x28\xb1\x56\x91\xc9\x8b\x64\xed\x77\x2d\xf1\xb7\x24\xe5\x90\x2f\x3c\xfd\xb8\x10\x5b\xf1\xb9\xff\x2c\x22\x73\x9f\x8b\x2c\x5d\xd0\x58\x0f\xa7\xe3\x16\xc0\x6c\x4f\xbc\xae\xe2\x00\x8a\xc2\xd7\x59\x3b\x06\x44\x5e\xd7\x1f\x25\x37\xb9\x87\xd7\x6b\x6c\x74\x93\x61\xda\xe9\x91\x43\x01\xf2\x45\x60\x5a\x77\xc7\x9a\x15\x75\xad\x30\x9b\x24\xd9\xaa\x74\x04\x5d\x99\xd4\xf0\x46\x8b\xf0\x8a\x73\x3c\xbf\x50\xcc\x98\xc2\xa5\x84\xd3\xe1\x18\x57\x2a\x95\x03\x14\xc2\x59\xaf\xec\x61\x07\x2e\xd4\xe4\xea\xfd\xb8\xe8\xda\xbe\x35\x69\x96\x6b\xa9\xe3\xf8\xb9\x0d\xef\x2a\x18\x2c\x92\xbb\x71\xd1\x37\x30\x3f\x72\x8e\x4e\xf2\xcd\x78\x10\x70\x42\x72\x9c\xeb\x10\x9d\x5f\x1a\xe6\x18\x68\xc0\x33\xc5\x2d\xd6\xd7\x63\xbe\x9e\xbd\x61\x3e\xfd\x6f\xd3\xe6\x18\xeb\x8b\xd4\x91\x12\x7b\x06\x8a\xd0\x38\x30\x4e\xe1\x2e\xb0\x75\x22\x8d\x0f\xb8\xed\xba\xa3\x55\xeb\xef\x9c\x5b\xdb\x95\x5b\xed\x7c\xb5\x29\x71\xc7\x2a\xa2\x29\x37\x3f\x66\x85\xab\x52\x80\x8f\x41\x66\x9a\x27\x3b\x4b\x0f\x6a\xcc\xc4\x2c\x4b\x8b\x58\x54\x74\x76\x55\x37\x03\xeb\xe1\x9a\x64\xf7\xfa\x3a\x22\xad\xc7\x37\x46\xac\x83\xf4\x46\x14\xa8\x4c\x18\x06\x75\x1c\xff\x70\x18\x9c\x21\xe5\xb0\xa5\x2c\x81\x75\xa2\xee\x44\xa8\x50\xe3\x64\xbe\x14\x85\x74\xff\x0c\x20\x36\xe4\x2a\x5a\x5d\xb8\x80\x24\x17\xe3\x98\x9a\x04\x50\x9a\xbe\xdd\x1d\x1a\x50\xb7\xc8\x38\xe5\x78\x44\x3a\x8a\x1b\xd2\xbe\x71\xe1\x06\x3f\x06\xf8\xd1\xa7\x51\x40\x85\xcf\x62\x89\x23\xdf\x3e\x1a\x35\xbe\xf8\x55\x2d\x4d\xa1\xda\x0e\x94\xff\x8f\x24\x5a\x78\xcf\xf3\xea\xba\xf4\x93\xa8\xea\x29\x6c\xd2\xcd\xfa\xd3\x55\xf0\x42\xc9\x7d\x19\x91\xc1\x4f\xfe\x7a\x55\xbe\xcb\x88\x25\xfa\x3f\xa8\x93\xd1\xcd\x63\x45\x3b\x41\xb9\xbf\x4a\xea\xd3\x57\x99\xe4\x8f\x09\x1d\xf7\x4b\x8f\x8d\x88\xb0\x7d\x8c\x9e\x78\x31\xec\x74\xa0\x3a\x0e\x6d\x7b\x6f\x77\x32\xff\xec\x41\xad\x09\x1e\x5d\x0f\x07\x88\x0e\x3e\xeb\xff\x68\x51\x7b\x80\xa6\x8f\xb5\xf5\x8a\x7c\x14\x2a\x09\xfa\xd7\x12\xab\x9d\x9c\x4b\x4d\x6f\x23\x8f\x97\x62\x90\x76\x80\xe8\x5f\xa2\x99\xc1\x4b\x51\x28\xb9\x97\x6c\x6a\x73\x19\x6a\xa2\xbe\xee\xb4\xce\x42\xea\xbb\x75\xea\x69\xb6\x87\x85\x45\xc9\x83\x4d\x02\x89\xfe\x2d\xc4\x2b\x44\xdc\xe3\x24\xf6\x60\x3a\x65\xbc\x12\x97\x6b\xbb\x08\x51\xfc\xd7\x72\x29\xa0\xb5\xa8\x3e\xa0\xd7\xf2\xae\xae\xc1\x2d\x7c\x59\xd1\x78\x73\x86\x78\x27\x8f\x61\x52\xc5\x89\x06\x3c\x4a\x5b\x6e\x30\xd0\xce\x17\xc0\xc7\x53\x00\x19\xf5\x4d\x68\x38\x89\x26\xe4\xf4\x18\x8d\x73\xcc\xeb\xd3\xeb\xa7\x3e\xd4\xa2\xbc\xed\x4e\x5d\xef\x6c\x90\x67\x2b\xd9\xf2\x36\x97\x93\x73\x24\xbb\x3b\x09\x38\xbc\xf8\xa2\xf7\x2b\xf1\x39\xf3\x1d\x9e\xbd\xbf\x13\x74\x35\xb2\xb6\xe9\x74\xb2\xe9\x20\x58\xa1\x5d\x1a\x5c\xd1\x75\xb9\x54\x74\x29\x76\xb6\x02\x2e\x73\x98\x8e\x9a\x2a\x3b\xb4\x59\xb9\x36\x40\x37\x4a\x51\x06\x09\xde\x0e\x71\x78\x9c\x67\x0e\x06\xca\x81\x0b\xed\x1f\x9d\x65\x75\xf3\x27\x35\xc4\x82\xbe\x29\x4b\x6f\xba\xef\xf3\xed\xea\x8f\xf4\x4d\x9d\xc6\x58\x51\x66\xb9\x59\xc2\x24\xaa\x1b\x9a\x08\x2c\xff\x73\x44\x53\x19\xa6\xa9\xad\x76\x96\xc9\x95\x8b\x84\x87\x86\xf6\x86\xf7\x7e\x0b\xbc\xa4\xda\xf6\x46\x99\x2d\xd9\xb2\x57\x2d\x8f\x05\xa7\x70\x7a\x31\x1a\x6b\x61\x78\x8d\x8a\x38\x5d\x96\xab\x72\x60\x55\x18\x79\x7a\x2f\x7a\xc8\x37\x05\xe3\x55\xed\xc9\x6a\x1d\x42\xc3\xba\xa7\xfc\x67\x75\x87\xcb\x48\xe0\x10\x59\x4f\x71\x98\x3d\x45\x33\x28\xc5\xb2\x2d\x3b\xbd\x35\x29\xdb\xb1\x17\x4e\x8d\x02\x35\xe3\xd4\x98\x41\x69\xe6\x4b\x56\xe5\xc8\xca\x7d\x70\x7c\xd9\xed\xa1\xa0\xaa\x2d\x7a\x71\x6e\xa7\x68\xc6\x4e\xc9\x3a\xde\xdd\xe1\xcb\xb3\x7a\x13\x3e\xa8\x87\x78\x4d\xa2\x74\x6a\x6f\x3b\x57\xfd\x0a\x7d\x43\xec\xc3\x5e\x5c\x3e\x44\x63\x76\xd7\xe5\x93\x1d\xed\x28\x50\x80\x60\x4b\x8a\x2a\xed\x3a\xb6\x28\xd2\x00\xa5\x66\xba\xfa\x8b\x60\xe1\x13\x92\x6d\xeb\xbf\x42\x22\x80\x86\xdc\x51\x28\x63\x22\x4a\x28\xe7\x07\xa1\xfe\x86\xdc\x40\x74\x57\x6e\x92\x64\x93\x7d\x79\x90\x64\xdd\x6d\xae\xc4\xaa\xf5\xa2\x6f\xbc\x24\x55\xcf\xa4\xdd\xce\x70\xd1\xb9\xfb\x61\x11\x40\x5b\x4a\x5f\xd7\xc5\x84\xdc\x0e\x72\x2b\xfe\x5e\x54\x5b\x61\x50\x14\x31\xf3\x26\x7e\x81\x4e\x0c\x8e\x82\xe6\xee\xb1\x1a\xff\x90\xf9\x2a\xae\xad\x6d\x43\x29\x46\x63\xe8\xed\x63\x6c\x9d\x1a\xe7\x7d\x93\xee\xe6\x68\x4c\x8c\xb9\xdb\x32\xf1\xe7\x38\xc2\xc1\x6e\x1f\x93\x5a\x78\xed\xf4\xe5\xd0\x38\xbf\x4c\x8d\xdc\x87\xd7\x49\x44\xf3\x37\xb8\xcc\x14\x2d\xc9\xb9\xad\xe3\x38\xae\x9c\x05\x84\xdb\x2c\x26\x71\x7d\x76\x9c\x3f\x50\x06\xd1\xd7\x74\xd2\xc6\x2b\x98\xe4\xc2\xd3\x3c\x2f\xad\x62\xb4\x2c\x41\x43\x41\xb5\xa5\xb9\x0a\xb0\xd9\x4d\xea\xa5\xf7\xad\x29\x77\xf2\x24\x58\x95\x1d\x00\xf4\xfb\xde\x88\xe4\x3d\xde\x05\xcc\xc5\xfd\x70\x44\x91\xb3\x51\x38\x06\x6e\x4e\x70\x8a\xf6\xed\x6b\xb6\x93\x4c\x5b\x34\xda\x49\x95\x1f\xe2\xba\xaa\x35\xfa\xcd\xa5\x69\x27\x59\xdc\x9d\x1a\x9b\xe7\x6c\x90\x32\x36\xd5\x0a\xd4\x86\x6b\xdb\x24\xb6\x8b\x85\xdc\x32\x64\xac\x67\x88\xdc\x75\x86\x9d\xd5\x6d\xbe\x64\x73\x61\x2f\xa1\x97\x76\x9d\x25\x75\xd4\x24\x04\x59\x3a\x84\xec\x31\x3a\xf0\x2e\xbb\x8a\x9d\x63\x29\x8c\x73\x63\xb6\xe0\x76\x90\xac\xc9\x2d\x75\x3e\xd0\xd5\x17\xe1\x7a\xd5\xb1\xce\xdb\xd2\x06\xc6\xce\x51\xec\x69\xe7\x23\x5d\x7d\x2b\x2e\xe7\xda\xc4\x39\x00\xb6\x44\x3b\xee\x16\xac\xe9\xa1\xb2\x0a\xfa\x86\x30\xde\x8e\x49\x77\xcb\x85\xfb\x06\xc0\x73\x7b\x35\x90\x3c\x0e\x9d\x31\xe0\xb0\xc7\x47\x8d\xa7\x9e\x72\x2b\x24\x1a\x47\x7e\x16\x5c\xa1\xf6\x7f\xcb\xa1\xef\xc6\x76\x1b\x5e\xa2\xf2\x22\x4d\xa6\x4d\xaf\xd3\xb8\xac\xca\xac\xe0\x6e\x4e\x36\xd1\xe1\x3c\xb3\x34\x8c\x8b\x71\x9c\xe2\x4f\x08\xa7\xf8\x93\xda\x59\x9e\x6e\x5c\xe4\xc3\x81\x9f\x97\x72\x85\x5e\xf5\x67\xae\x1a\xac\xd7\xb5\xed\xba\x49\x70\x17\x4c\xc3\x9c\xd2\x8f\x47\x64\x42\x7d\x39\xd4\x7e\x36\x19\xbe\x2c\xa9\xc0\xd6\x25\x9d\x1b\x27\xdf\xd7\xd2\x24\x56\xfb\x6b\xae\x75\x22\x9f\xe2\x7a\x27\x93\x4e\xdc\xb3\x4d\x93\xeb\x08\x5d\xf5\x5c\xe8\xf9\xcd\xfa\xe7\xf7\x38\x09\x83\xc0\x81\xae\x80\x80\xad\x43\x9d\x43\xc2\xb5\x11\x05\x5d\x23\xbb\x62\x3a\x43\x01\xac\xb8\xa3\xff\x3a\x77\xf4\x5f\xe7\xa1\xf2\xac\xb8\x9f\xd4\x06\x5e\x93\xb5\x01\xdc\x66\x6a\x1d\x11\xcd\x97\xd6\x0b\x7b\xc3\xee\xf7\xa7\xf6\x06\x16\x8a\x27\x7a\x78\xc9\xa9\x5b\xd8\x2c\xb2\xec\xff\xe6\x4f\x4d\x14\x98\x07\x0e\x54\x37\xae\x9d\xf0\x41\x3f\x6e\x8f\xb2\xbd\xa1\x3d\x37\xd7\x5c\x1a\x02\x94\xc2\x7a\x85\x2e\xad\xbe\xa6\x38\xb0\x62\x4b\x9b\x9b\x74\x3a\x70\x0d\xf5\x81\xb8\xc1\xb2\x50\x29\x1c\x8f\xe8\x50\x66\x41\xe2\x8e\x59\x31\x49\x6c\xa1\xaa\x08\x68\xfe\x37\x47\x63\xa1\x1b\x37\x07\xc9\xd3\x39\x5c\x2c\xc2\x76\x5a\xc6\x9d\x78\x00\x59\x4b\xc9\xb9\x3d\x0b\x20\x30\x02\x98\xad\x98\xad\xda\x7c\x4f\xc3\xfb\x59\x3f\xb0\xde\xd8\xb7\xcf\xcd\x6b\x20\x12\x39\x70\x68\xcc\x40\x89\x34\xfe\x3e\xc1\xa4\xb5\x23\xab\x55\x1b\x14\x29\xe4\x8e\x75\x0a\xfa\xc7\x46\x41\xe5\xf2\x9f\x22\xde\xa1\x05\x75\x17\x70\x39\x4a\x8b\xff\x91\xa7\x6e\xce\x4a\xe5\xad\x13\xcc\xad\x70\xf0\x3d\x04\x0a\x14\x0a\x93\x23\x11\xc9\x4f\x1d\x26\x0d\x05\xc9\xf2\x01\x9e\x36\xe8\x80\xc2\x57\xbb\xd3\xca\x6d\xb1\xbe\xc9\x97\x95\xc6\x5b\x2b\xe1\xbe\x3d\x6e\x38\x7a\x64\xdb\x74\x96\xa7\x83\x47\xe9\xae\x56\x00\x98\x8f\xca\x9d\x70\x53\x50\xf2\x69\xd8\x5c\x93\xc3\x03\x5f\xfc\x6a\xd3\x0c\x06\xd6\xe4\x48\xf8\xdc\x53\x95\x5f\xa9\x5e\x40\xa3\xc0\xba\xdf\xa4\xcc\x12\x2c\x5b\x0d\xc4\x64\xc5\xe3\x7d\x79\x3c\x0d\xac\x28\xcd\x22\xbc\xa8\x90\xdb\xbc\x23\xeb\x50\xad\x7c\x58\x68\xe1\xdb\x3c\x82\x00\x2d\xf4\xe9\x30\xad\x70\x3e\x28\xca\xae\x1f\x25\x6d\x98\xa3\x72\xf0\xbb\xe4\x66\x32\x60\xce\x35\xb3\x76\x61\xf3\x15\xeb\xc0\x2e\x3c\xe2\xd7\x85\x8c\xa9\xaf\x3d\x76\xdc\x8d\x8b\xd2\xa4\x1d\xcf\x04\x51\xec\x42\xd6\x1c\x40\xcc\x9b\x94\x99\x9d\x81\x4f\xf5\xf8\xee\x5e\xec\x23\xd1\xc7\xb9\x77\x98\xf0\xbd\xc3\x5e\x93\xa0\xca\x14\xb3\x21\x1a\x50\x2e\x4d\x24\xb1\x91\x49\x03\x98\xd9\x43\xcd\x81\xcd\x17\x6d\x07\xf3\xf8\x8e\xb4\x1e\x2e\x6b\xc7\xba\x5b\x50\x79\x96\x24\xb6\x3b\x2d\x8f\x02\xd5\x91\x1a\xaa\x81\x7c\x8b\x58\x43\x1c\xfa\xf9\xad\xd3\x35\x93\x28\xf3\xd5\x13\xe8\xc7\xc3\x7e\x83\xcc\xd4\x6e\x92\x48\xdc\x64\xc6\x23\xda\x3f\xed\x21\x0c\xe5\xc6\x64\x06\xb0\x29\xcf\x92\x5a\xcc\x5d\x4f\x7a\x4a\xe2\x04\x2c\x34\xfc\xc5\x4d\x32\xad\x53\xa0\x11\xc0\x4c\x90\xe4\x19\x24\x50\xae\xf6\x09\xe2\x23\x2d\x62\x11\x6c\x06\x85\xd6\xaf\xdf\xe1\xb9\xfa\xc3\x63\xb0\x63\xdf\x76\x1f\x93\xe0\xe1\x3a\xb8\xd5\xc7\xa1\xa3\x75\x97\x7c\x69\x3e\x87\x1a\x01\xfb\xea\x63\xcc\xcb\xe8\x5f\x20\x5e\xe0\x9f\xdd\x43\x8e\xe8\x08\xa9\x88\x57\x4e\xca\x58\x16\x92\xf3\x0f\x09\x89\xc3\x4f\xad\x93\xb1\xfe\xc7\x11\x99\x28\x00\x8f\xc2\xeb\xfb\x65\xde\x04\x70\xa3\x66\x5e\xde\x3e\x7f\xf6\x90\x57\x4e\x91\x1b\x80\x95\xb0\xab\x45\x78\xca\xb0\x1b\xdb\xb4\x63\x67\xd0\xb7\x55\x9d\x11\xc0\xf0\xee\x1e\x57\x3f\x16\xe9\xc6\x87\xc1\x62\xfe\xc9\x6b\xe3\xca\x24\xae\xc4\x71\xcc\x45\xcd\x3d\x70\xe2\x4d\x41\x62\x56\xdf\xac\x3f\x46\x4d\xf9\x7e\x9c\x5a\x3f\xb1\x39\xa6\x0f\x39\x26\xee\xeb\x0c\x23\xea\xd0\x58\xd3\xce\x56\xac\xb0\x10\x70\xe2\x41\xf2\x05\xad\x5a\x49\x4a\xbc\xab\xd5\x18\x59\x2e\xc8\xb8\x4f\xa6\x43\x07\x0e\x34\xfb\x81\xf7\x5c\x27\x27\x56\x47\x35\x35\xc9\xa2\xc0\xfe\x4e\xe2\x33\xc0\xfe\x5b\x02\xaf\x39\x47\xc9\x1a\xff\xd8\xae\x79\xe5\x95\xc4\x07\x15\x6c\xa0\xeb\x24\xcf\x06\x78\x1c\xb0\xf7\x5b\xa3\xcf\x91\xf8\x29\x48\x7d\x42\x16\x25\x3f\xab\x93\xf8\x7d\xd8\xc5\xaf\x8e\x42\xce\x7c\xa1\x0e\x3b\xe9\xda\x95\xcc\xa7\x8b\xd8\x0c\x3a\x53\xa6\x6f\x88\x62\xda\x37\x89\x15\x18\x1d\xa7\xe2\x35\x24\x10\x8e\x15\x2d\x9f\xe0\xf8\xd2\x01\x96\xbb\x46\x13\x73\xa5\xed\xf4\xd2\x2c\xc9\x96\xc4\x87\xff\x05\xef\x44\xcd\x96\x19\x23\xe2\x81\xa8\x42\x9a\xd7\xfc\x5a\xd8\xab\x41\xf7\xb4\x94\x57\xde\x31\xe3\xb9\xf1\x73\xc0\x75\xb5\xc2\x66\xff\x53\x44\xb9\x31\xc2\x12\xee\xee\x29\x2f\xe9\x3c\x4c\xd3\xea\x24\x10\x86\xf6\xd6\x2d\xf9\x6d\x5b\xb7\xea\xc6\x41\xd6\x62\x9b\xa0\x9d\x80\xda\x61\xcc\x37\x0f\x24\x63\x65\x4a\x62\x01\x3b\x1a\xf3\x1e\x9a\x43\x14\xaf\x57\x70\xdf\xbd\x97\xcf\x7e\xef\xeb\x43\x47\x69\x62\x05\x10\x23\xe9\xb0\x06\x44\xa1\xd5\x8f\x35\x9a\x98\x6f\xd0\xa9\x92\xea\xf3\x20\xe5\xf4\x82\xf7\x6e\x95\x55\xe2\x5c\x89\xfd\x11\xbc\x6a\xd2\x65\x62\x5e\x68\x8e\xe1\x66\xdc\x7d\x64\xcd\xb2\xbc\x2a\x0f\x9f\xf3\x73\xe9\x04\x19\x4e\xaf\x57\xe7\xac\x97\xae\xaf\x62\x27\x7e\xca\xcf\xb4\x42\xff\x41\x67\x5b\x5d\xf6\x19\x8a\x85\x32\x37\x2b\x36\xb9\x9f\xa4\x61\x1d\xee\xef\xf5\x47\xfd\x1c\x28\xa8\x09\xb8\xd7\xc7\x88\x78\xf9\x2e\xe2\xaf\xf3\x42\x09\xd5\x0b\x54\x1d\xf1\xfa\xd2\xc4\x0e\x90\x73\x29\xb7\x85\xe5\xb3\xf3\x32\x1d\xe9\x97\x6b\x4c\xce\x17\x6d\x92\x18\x4c\x40\x82\xd6\xa3\x72\x21\x58\xfc\x57\x23\x8a\x78\x1f\x93\x89\x60\x3f\x2e\x8b\x61\x3b\x2e\x7a\xb1\x7a\xfc\xa1\x16\xba\x42\x9d\xb5\xc6\x7a\xf8\x75\x7a\x3e\xd2\x9b\x79\xdf\xe7\x0d\xd5\xfc\x4c\x8b\xdc\x51\x8f\xb3\x3b\xaa\x22\x28\xda\x19\x07\x04\x86\x5e\xdc\x24\xbe\x70\xe0\x40\xb3\x9d\x67\x69\x27\xd3\x34\x48\x27\x26\xd8\x6d\xeb\x1e\xc1\x23\xcb\xa6\x7c\x85\xc8\xdd\x23\x26\x77\x8f\xa8\xea\x5f\xcc\xf2\xbe\x43\x80\xb5\x5e\xd0\x07\xeb\xaa\x87\x50\x74\x7d\xd9\x74\xa6\x88\xe9\x75\x3b\x62\xda\x36\x56\xb6\x63\xd4\x3f\x4e\x1a\x88\xc5\x20\x83\x23\x6e\xe8\x40\xfd\x39\xe9\x05\x6f\xf0\x20\xde\x25\x9f\x58\x74\xbf\xd0\xf9\x02\x33\x11\xf1\xaf\x1c\x2d\xb1\xa6\x8b\x3e\x30\x89\x2d\xca\x38\x8d\x4d\x2a\x1d\x0b\x27\x8d\x13\xa2\xc0\x9f\x23\x5f\x7a\x75\x22\xcb\x84\xc1\xc0\xe2\x90\x28\x0e\x8e\xda\xd9\xf0\x52\x71\x67\xa8\x51\x96\x64\x4a\x5e\x71\xbd\xaa\x6a\x6f\xb9\x3f\xc1\x61\xed\x07\x1a\x7c\x43\xee\x0e\x3b\xf7\x7d\x42\x1e\x90\xd7\x79\xee\x5c\xcd\x82\x9d\x66\x67\x60\xdd\x68\xcf\x5b\x65\x35\x47\x34\xb7\x7e\x89\xa6\x11\xfb\xf1\xcb\xb6\x2b\xbf\xdf\x39\x96\x35\xbc\x0d\xa2\x96\x55\x68\xaa\x1e\x8b\xc6\xbc\x33\xad\xc9\x83\x23\xa6\x36\xd9\x47\xe1\x4f\x2f\x61\x9d\xb9\xa6\xb1\x4f\x56\xe3\x15\x93\x14\x98\x69\x40\x42\xa2\x54\x6f\x24\x73\x1f\x51\x2d\xfd\x1b\xef\xb2\x97\x10\x70\x31\xb4\xdf\x2e\x52\xd8\xcd\xad\x64\x87\x0a\xd7\xba\xd4\x51\x3e\x45\xdf\x50\xe0\xb5\x2f\xcb\x34\x9f\x04\x5e\xe8\x4e\x5c\x87\x2e\x1a\x30\xe1\x0f\x69\x42\x5c\x41\x26\xc5\x07\x23\xd2\x8a\xfb\x1e\x16\x16\x4a\xa7\x5b\xc8\xf6\x90\x36\x6d\x4e\xc4\x95\x6a\x9d\xa4\x5f\x58\xc1\xba\xf4\xee\x0a\xd5\x9f\xeb\x9b\x28\xd8\x9b\x2f\xc6\xa9\x75\x2d\x0c\x1c\x6a\x1f\x8f\xc2\x85\x22\x8d\x77\xd9\x0e\xb5\x06\x06\x59\x59\x7a\xb8\x9a\x66\x75\xe6\xfd\xac\xce\xf6\xa5\x5f\x95\x48\x62\x19\xd9\xce\x4c\xde\x6d\x04\x25\xd3\x73\x44\xc8\x65\xa0\xaf\x3d\xcc\xbb\x36\x45\x47\x0c\xc9\xd0\xe9\x88\xc4\xcf\x4f\x93\xd8\xc2\x79\x9a\x79\x3d\x4f\x9b\xba\xb4\x89\x1d\xf4\x64\x3c\xce\x93\xdb\x6e\x8f\xc9\x65\x61\xad\xab\xba\xda\x98\xcc\x61\x20\xb2\x14\x09\xdc\x93\xe4\xa0\xc6\x01\xa8\xce\x8f\x9e\x18\x52\x5d\x96\xbe\x21\x81\xe9\x13\x5c\x69\x0e\xf1\x19\x14\x14\xef\x6b\x05\x72\x36\x58\x08\x58\xf2\xe3\x03\xb0\xdb\x73\xc4\x17\x5f\x6c\x76\xad\x41\x17\xd5\x63\xca\x24\x28\x16\x68\x97\xdd\xa1\xf8\xb8\x0b\xdd\x07\xeb\xe6\x3e\x29\xe5\x58\xda\x03\xbf\xfc\x12\x4f\x0d\x95\xb9\x4d\x97\xca\xde\x2e\xc9\x0d\xb0\x27\x1a\xc8\x4b\x74\x8c\x1b\x5b\xc7\x89\xcd\x86\xc2\xf3\xf4\x88\x24\x85\x1e\x94\x31\x7a\xa7\x5d\x24\x77\xd9\xa1\xfa\x35\x55\x67\x6f\x58\xb4\x4d\x0a\x14\x1b\xa7\xa5\x52\x97\xf5\x4d\xad\x27\x5d\xbc\xd4\x93\x47\x82\x2a\xf9\x2d\xea\x94\xdf\xa4\x36\x8b\x72\x3a\xdc\x6c\x5c\x9d\x41\xb9\xed\x64\x69\x97\x64\x08\xae\xe0\x81\x7a\xff\x50\x3f\x4e\xb1\xa3\x55\x17\x92\x93\xb8\x6d\xf3\x30\xb6\x03\x26\xc3\x0f\xc7\x74\xf7\x7e\x48\xc2\x23\xed\xc4\xbc\x62\x21\x1b\x8a\xfb\x86\x75\xa7\xaf\x7d\xcc\xea\xf4\xac\x55\xbb\x42\xe4\x2e\x20\x7d\xe9\xeb\xf5\x1a\xd6\x8f\xc9\x97\x86\xe3\x25\x93\x62\x9e\xfa\xa6\x06\x29\x9d\x6f\xe6\x26\x49\x62\xe7\x8c\xae\xa4\x16\x9e\xf0\x3e\xc5\x36\x62\x43\x72\x94\x05\x66\x8f\x51\x64\x7d\x4d\x67\xf0\x7f\xf6\x1f\xff\x27\xf2\x0b\xb1\xad\x6f\x09\x11\x43\x5f\x13\x47\x24\xc9\xd2\xa5\x87\xab\xfb\xee\xb8\xa4\x61\xf2\xf4\x12\x1b\x81\x41\xd3\x19\x3b\xe2\xfb\xf2\x59\x9a\x09\x23\x20\x38\x56\x21\x4d\x99\x1c\x8b\xe8\x78\xc4\xd4\x37\xee\xdc\x16\xc2\xbb\x3a\x68\xe2\x78\x72\x43\xe4\x01\x05\xba\x87\x24\xc7\xb5\xb7\x27\xba\x2e\xb3\xcd\x81\x59\x72\x96\x25\x6c\xe0\xed\x5a\xf7\x64\x47\xbc\x8c\xfe\x11\xa2\xcf\x49\x61\x79\xe2\x3c\x85\x8d\x34\xb6\xc8\x4d\x5c\x3c\x6a\xb3\x9d\x13\x4a\x89\xf3\xcf\x1e\x6c\xf6\xe3\x6e\x99\xad\x82\x54\xe9\xc4\x34\x02\x50\x7c\x79\x02\xd0\x7d\x6e\xef\x0b\xcd\xa5\x0c\xed\x3e\x37\xcb\x5e\xfd\x7b\xc8\xc3\xa0\xbe\x71\x49\x67\x75\x81\x2e\x7d\x20\x86\x69\xbf\x9d\x9b\x8e\xed\xce\x34\x48\xe1\xb7\x31\x2e\x03\x1c\x9c\x95\x83\xd0\xcf\xc5\x71\x7d\xe0\x49\x85\xcb\x85\xbd\x0b\xb2\xdd\xc6\x92\x04\xaf\x7e\xed\xa5\xa8\xbe\x5b\xeb\xca\x3f\xc8\xad\xe9\xb2\x07\xf3\x1b\x44\xac\xbb\x82\x94\x19\x37\xf8\x66\x1d\x6d\xbd\xec\xd9\xdc\x0c\xd6\xc8\x2c\x05\x0d\x33\xd7\x41\xa9\x6b\x27\x94\xbd\x3c\x1b\x2e\xf5\xa6\xaa\xe2\x41\x6f\x59\x14\x5a\xf6\x53\xad\xd0\xa1\x7b\x60\x9d\x2c\xeb\x96\x72\x6b\xfb\x36\x2d\xa5\x13\x86\x3c\x4f\xb5\x21\xf4\xb4\xc7\x5a\x04\x7e\xfc\x8e\x3c\x10\x9c\x00\x3f\x8c\xa8\x71\xf1\x2d\x6c\x47\x05\x6d\x26\xd6\xe2\xd3\xcd\x4e\x62\x86\x85\xdd\x29\x2b\x16\xc8\x9e\x8e\x8a\xa2\x35\xbd\x31\xda\xe1\xb8\xf4\xa7\x68\xe8\xe4\xfe\x16\x8d\xb0\x1c\x27\xe9\xa3\x6f\xf8\x3a\x16\xe2\xcf\x06\xf7\x0a\xe7\xfa\x6d\xea\x92\xde\xae\x99\xff\x6a\x76\xe2\xbc\xe3\x65\x38\x9c\xbf\x9f\xfc\x66\x7d\xc3\x9e\x63\x89\x29\x4b\x9b\xb2\x14\xbc\x96\x3c\xfa\x66\xc4\xa1\x62\x05\xc1\x10\xa7\xc8\xeb\x51\x80\xcb\x5f\x27\x5b\x88\xc5\x78\xb1\xec\x89\xd2\x32\xfa\x2a\x2a\xb0\xe0\x40\x66\x12\x87\xb9\x16\xb1\x63\x19\xb4\x8b\xb4\x13\x8e\x6b\x70\x8d\xb7\x9a\x03\x78\x90\x67\x1a\xec\x75\x58\x66\x9d\xc6\x0e\x77\xb4\x3e\x37\xbe\xe0\x9f\x9f\x3d\xd4\x9c\x9b\x3b\xf8\x28\xe9\xf1\x3f\x00\x2c\x11\x87\x03\x6a\x4c\x84\x5b\xe0\x8a\xae\x84\x23\xab\x0e\xe5\x14\xe8\x1b\x09\x55\x60\xa3\x1d\xe1\xb6\xfb\x7d\xad\xa0\x96\x75\x63\xc4\xce\x37\x17\xb1\xd6\x10\x68\x7f\x5f\xe2\xe9\x18\x91\xd3\x4d\xc5\xc8\x56\xf4\x34\x86\x30\x04\x7c\x8f\x48\x6a\x10\x8e\x61\x38\xa8\x11\xdc\x53\x46\x41\xc7\x12\xe4\xcf\x06\x25\xd7\xa7\xa9\x57\x7b\x9a\x55\x9a\x86\x9d\x8e\xb5\xc8\x0a\xd5\xc2\x43\x2e\xd1\xd9\x79\x4c\x26\x93\xcf\x34\x4d\xb7\x1f\x97\x18\xbe\x0b\xa5\x2e\xa2\xb0\xbe\x26\xc5\x97\xb6\x49\x12\xed\x22\x38\x5c\x40\x7e\xb6\x83\x05\xd8\x31\x71\x48\xda\x36\x67\xc8\xc6\xf9\xcc\x44\x6c\x78\x5a\x84\xac\x0b\xef\x1f\x8f\xb5\x74\x9e\xc5\x3a\x27\xc9\x18\x07\x0e\xa8\xd9\x9e\x47\xea\x80\x2c\x7e\x4c\x5c\xec\x5b\x34\xe0\xc9\x0c\xc3\x4e\x96\x26\xca\xf8\xc7\x63\x45\x0e\xa9\xaf\xd7\x3d\x10\xd3\xcb\x56\x0d\x59\xda\x68\xf6\xaf\x6f\x88\x1c\x33\x48\x3a\xc8\x48\x7d\x36\xe7\xbb\x5e\x1b\xe3\x74\x0e\xac\x25\x97\xa5\xd7\x69\xa2\x98\x62\xd9\xca\xb0\xf6\x74\x98\xd5\xdc\x20\x8d\x9b\x13\x34\x14\x0b\xbc\x05\xa5\xdf\x8e\x56\x6d\x48\x8b\xfb\xea\x83\x85\x20\xff\x29\x42\xa2\xa7\xa7\xec\x9b\xf5\xd4\xb8\xb0\x30\x8b\x8e\xe0\x8a\xb3\x87\x14\xca\xfe\x10\x8b\x1e\x75\x2d\x30\x7f\x7d\x3d\x0a\x78\xf7\x87\x3e\xe5\xb2\xb9\x70\x70\xe4\x6f\xbc\x29\x73\x30\x68\xa6\x31\xa5\x24\x2e\xca\x42\x7e\x27\xf9\x4a\x79\x93\x29\xc1\xcc\xdd\x74\xae\x20\x73\x6e\x6c\x37\xac\x78\xd3\x37\xaf\xc4\xe9\x92\x8c\xbf\x72\x0d\xce\x1c\x69\x87\xcb\x54\xd7\x00\xb4\xf2\x2e\x1e\x8a\x13\x35\xa9\x61\x83\x2c\xc6\xb9\x9a\x97\x63\xc6\x1e\x28\xbf\xbe\x9e\x08\xd8\x2f\xbe\xd8\x4c\xb2\xd5\x60\xab\x59\x27\xb3\xb1\x27\x8c\x53\x96\x59\xee\x11\x5e\x77\xb8\x34\xbc\x47\xe0\x46\x34\x79\xd2\xcf\x2f\xcc\xdf\xdf\xf0\x72\x37\xd7\x00\xad\xe1\x6e\x28\x07\x16\x61\xf6\x13\xb2\x05\xb8\x23\xf7\xcf\x6b\xa0\x56\x37\x76\x6c\xf4\x1f\x28\x49\xa3\x15\x2a\xa0\xdf\x8c\x9e\xf0\x2b\xdf\xe4\xb6\x97\x25\x5d\x3f\x6a\xee\xaa\x1d\x2c\x60\xb5\x38\x1f\xd1\x62\xba\xe1\x35\x00\xfa\xb6\x1b\x97\xc6\xfb\x3c\x00\x5e\x78\x5f\x6e\x86\xbe\xae\xf7\x7c\xcc\xda\x71\xca\x12\xd3\x4a\x65\x73\xd6\xe4\x35\xdd\xbb\xa7\x8a\x86\x94\x57\x4e\xa2\x4b\x16\xba\x1b\x35\xdf\xfe\x1d\xfb\xe7\x9a\xf6\xe5\x41\x96\x97\x88\x16\x0e\x0e\x6c\x78\x8b\xd2\x4d\x6a\xec\x5f\x9e\x14\x07\x5e\x98\xff\x39\x1d\xe3\x6a\x84\xe8\xfb\x2e\xb1\x7c\xde\x0d\x4d\x2f\x9b\xc7\x4e\x80\xd9\x33\x3e\xe6\x02\xff\x3f\xa8\xe5\x75\x86\x79\x6e\xd3\x4e\xac\x12\xb9\x5e\xb1\xae\xba\x0b\x4e\xb1\x8e\x4a\xe8\x52\x1c\x2e\x40\x17\xf3\x7e\xb8\xbe\x43\xf8\xcf\xe9\xa0\x2f\x56\x0d\x6c\xd1\x81\xe8\xe8\x47\xea\x9b\x89\x05\xbc\x6f\x5f\xb3\x67\x95\x0c\x50\xdd\x1c\x80\xf4\xe7\xa9\x3b\x77\x9e\x54\x95\x8a\xd5\xb8\x80\x60\x23\x20\xe0\x1b\x34\xb0\xa8\xb8\x00\x96\xdd\x4f\x6a\x30\x95\x66\x1e\x17\xcb\xc8\x85\xb0\x9d\x30\xeb\xa3\xaf\xa3\xdd\x21\xa8\x16\x52\x96\x02\x2e\x3d\x21\xbb\x9a\x74\x89\xdd\x58\xd2\x89\x28\xb8\xec\x9e\x26\x6e\xec\xa2\xed\x8a\x6b\xa7\x63\x98\x00\x55\xfb\x3a\x6b\xba\x7e\xbd\x6e\xe6\x4a\xec\x71\xf5\x58\x56\xe1\xbd\x88\x45\xf8\x1c\x60\x99\x9a\xc2\xb0\xb9\xc5\x9f\x47\x8c\x3c\x4e\x98\x62\x0b\x93\x36\x8f\x4d\x6a\x1a\x84\x4c\x6f\x8c\xc6\x94\x7f\x42\xce\x5b\xc4\x25\xe8\x31\xa4\x5d\xb5\xc1\x7c\xf1\x3b\x63\x93\xb2\xd5\xbd\x51\xcb\xb1\x28\xf4\x5e\xee\x48\xd3\xdc\x59\x91\x71\x3f\xb5\x93\x15\x33\xa1\x3f\x7f\x52\x88\x83\xfa\x5a\x74\x1c\x50\xa6\x2b\x13\xd1\x49\xde\x8f\x2b\x62\x4f\x96\x49\xcd\x55\x5b\x4e\x55\x65\x19\x50\xd2\xbf\x94\x2b\xf4\x0e\x5f\xfb\x66\x3d\x14\x43\x62\x6a\x89\xb5\xcb\x58\x71\x8e\xd0\x48\xe4\x46\xae\xfe\x52\xb3\x93\x85\x64\x31\x3a\x87\xb6\xc7\x96\xac\x52\xcf\x15\x3e\x70\x20\xc8\x9c\x56\x77\xda\xa9\x20\x12\xee\xf7\x60\xab\x2e\x11\x4a\x4c\x67\x39\x19\xa2\xd1\x48\x5a\xbf\xe1\xc3\x4f\x12\x72\xd7\xcd\x86\xed\x44\x07\x7d\x1d\xc5\x28\x54\x94\x1b\x23\xe7\x1f\x9b\x66\xa9\x4e\xaa\x39\x13\x53\x57\xe7\x49\x6c\x73\x85\x5e\xc0\x8d\xda\x71\x92\x78\x75\x33\x00\x02\xaa\xb5\xab\x6f\x18\xda\x33\x69\xaa\x29\x93\x63\x70\x8f\x71\xbb\xeb\xb0\xc3\xc2\x94\x71\xb1\xb8\xe6\x77\xba\xd3\x4a\xa8\x3e\xc4\x69\x28\xf0\x52\x59\x31\xc9\xc3\x5e\x69\x71\xe5\x2e\xd6\xa0\xb7\xf1\xf5\xe6\x11\x1f\xc9\x5a\xf3\xc9\xde\xec\x21\x0f\x89\xc9\x43\x40\xf2\x71\x39\x1a\x53\x40\xaa\x56\x2a\x58\xb9\x37\xc8\x39\x5d\x4b\x3b\xfd\x8a\x88\x0a\xa0\x73\x0c\xb5\x21\x06\xe0\xe1\x9e\x27\x42\x79\x31\xb0\x9d\x58\xc4\xa9\xd0\x0f\x02\xe1\xe6\x38\x8f\x42\x6e\x92\x5f\xcb\x79\xa2\x86\xbf\x02\xf1\x47\xac\xbe\x0f\x49\x85\x61\xaa\x45\x45\xca\x7d\xeb\xe1\x01\x74\x6c\x51\xa4\x1a\x06\x90\xdf\x03\x4b\xd0\xd7\xd4\x51\x8b\xd3\x6e\xec\x1d\xbf\xf0\xd5\x77\x46\x01\x45\xfc\x21\x51\xa8\x7f\x88\x87\xa8\xff\x68\x52\xdf\xf7\xd9\x83\x02\xf8\x58\x95\xdf\x72\x14\x25\xba\x88\x49\xbd\xe8\x2a\xec\xda\xce\x5a\x55\x52\x82\x54\x88\x66\xe0\x71\x9a\xff\x57\x83\x7e\x3c\xa9\xef\x4e\x94\x6b\xcf\xcf\xcb\xec\xb6\xdc\x21\x00\xee\xa7\x47\x54\x89\xdd\xc6\xd9\xeb\xea\x80\x1a\xa4\x47\x32\xaa\xa9\x30\xc8\x00\x65\x69\x80\x1b\x97\x47\xc4\xb6\xff\x80\x1c\x38\x5f\x1a\x76\x97\x6c\x71\x3f\x09\xdb\x01\x29\x43\x7a\x77\x53\x02\x9f\x97\x68\x7b\x6e\xaf\x0f\x76\xd5\x47\x83\x2e\xf7\x2a\x29\xef\x9e\xc0\x38\x98\x93\x60\x91\x4a\xf0\xb3\x34\x58\x66\x0f\x35\x87\x69\x31\x70\xf6\xcc\x40\xa5\x37\xb8\x51\x3d\x89\x71\xa0\x77\x69\xe2\xae\x72\x15\x70\x37\xde\x8c\x02\xe0\xf8\x66\x8d\x1d\xcf\x5c\xb3\x28\xf3\x78\xa0\xe9\x82\x03\xd4\x83\x12\x7d\xd0\x31\xe9\x67\x69\x91\x69\x56\xe5\x08\x98\x0d\xaf\x84\x70\x81\x96\xdb\xc0\x14\x85\xed\xce\x54\x7b\xd2\xc9\x75\xc8\xa7\x03\x1c\x7a\x47\x56\x1e\x98\x29\x6f\x8f\x02\xa6\xff\x3e\xcd\x95\xde\xdf\x72\x1a\x69\x03\xe3\x54\x1d\xb0\x68\xde\xc5\xc3\xd2\x37\x13\x23\x8b\xde\xeb\xab\xe8\x0d\xab\x1c\x9a\x3a\x91\x17\xe9\x79\xb1\x24\xe5\x2f\xff\xd2\xdf\x9e\x26\x4d\x8f\xe3\xc4\xa2\x06\xef\x02\xcc\x87\xff\x73\x14\xbc\x52\xee\x6b\x85\xc3\xd2\x0e\xf3\x6c\x60\x55\xf5\x77\x96\x47\x43\xfd\x9c\xe8\x98\x43\x7b\x99\xda\xa2\x90\xf1\x32\x97\xf6\x06\xe0\xff\x37\x51\x68\x60\x25\xde\x11\x62\xa1\xbe\x0e\x3a\xd9\x8b\x8b\xa2\xad\xed\x19\x4d\x27\x49\x7b\x45\x27\xff\xb0\x0f\x8f\xf0\x51\x57\x65\x9e\xdb\x8c\x22\xaa\xed\x83\x94\xf0\xd5\x71\xd7\x88\x90\x2b\xbe\x4a\x1f\x31\x28\xfe\xde\xdf\xfa\x45\x49\xbb\x70\x3e\xe3\x10\xf4\x02\x1d\xfb\x66\x15\x1c\xbb\x42\xac\xdc\x76\x5c\xed\x7a\x1f\xed\xc1\x25\x3e\x45\x43\x1a\xa7\x88\x66\xfb\x4b\x7f\xe7\xef\x92\xac\xdd\x69\xf9\x48\x7d\x3d\x91\x2a\xb9\xc7\xdc\xcd\x44\x0c\xdd\x03\x6e\xd5\x6f\x02\x2a\xfc\x60\x0b\xad\x51\xe7\xde\x19\x32\x99\x53\x9c\x58\x7c\x5a\xeb\x50\x65\x92\xb6\xcd\x4b\xa4\x6e\x6e\x83\xd3\x4a\xda\xa8\x0d\x8b\x1d\xd3\x8e\x53\x5b\x92\xce\xd2\x79\xd2\x59\x3a\x4f\x52\x1a\xdd\xb8\x53\x8a\x88\xdf\xec\xa1\xd0\x9f\xd8\x1f\xec\x2c\x3c\x83\xca\x0b\x7b\x57\x3f\x12\xd9\xf3\xab\xf8\x91\x9e\x01\xe7\x73\xd4\x3b\xb5\xa2\x62\x71\x21\x5a\xe5\xce\xa2\xab\x8e\x17\xfd\x08\x29\x21\x99\x2e\x72\x4f\x15\x71\x61\xe5\xfa\x13\x35\x7c\xc9\x17\x9a\x45\xd6\xb7\x65\x2f\x4e\x9f\x6a\x84\x95\x71\x39\x0a\xcd\x96\xcb\x13\x9a\x9d\x07\x0e\x34\x73\x2b\x2a\x5a\x1d\x93\xa2\xba\x03\xb0\xbd\xa5\x39\x1e\x33\x95\x5c\xc9\x4b\x5e\x4e\x65\x96\xda\x62\x9a\xc0\xbd\x11\xfa\xa8\x88\xe5\x60\xcd\x01\x1d\xff\x34\x0a\x7d\xdf\x77\x7c\x4e\xd4\x37\x9d\x3c\x83\x00\xb5\xe6\x44\x8e\xad\x1c\x3a\x83\xe7\x49\x3b\x22\x8f\xbb\x76\x26\xe4\x85\xea\x0e\x81\xb2\xf0\x7f\x27\x65\xce\x6f\x46\xec\x6f\xf0\x3a\x02\x80\x13\xc3\xad\x91\x60\x33\x45\x31\xcc\x31\x86\xff\xdc\xde\x50\x67\x84\x9a\xa3\x96\x13\xbf\x64\xe2\xd4\x0f\xc4\x01\xec\x7f\x8d\x5b\xd6\xaf\xd5\x19\x77\x17\x46\x7d\x19\x11\x25\x6e\x45\xe4\x6f\x75\x6b\xc4\x16\x42\x59\xa9\x74\x6e\xaf\x3a\xe3\x27\x05\xb6\x50\xe9\x23\x00\x9e\xac\x3b\xb1\xfa\x71\x37\x71\xfd\x3f\x3c\x8d\xb7\xd8\xa7\xe1\x2d\x3a\x59\xc5\xc4\xb1\xd8\x1d\x5a\xb5\xd7\x46\x41\xdf\x46\x1d\x4c\x91\xce\xa9\xec\x18\x12\xb2\x0d\xc9\xf3\xd0\x57\xf8\x00\xd7\xa3\xff\x63\x44\x70\x86\x1a\x1f\x21\xf9\x47\xd4\xc7\xcf\xd1\xde\xa6\xc3\xf4\x1a\x5e\xae\xe1\x3a\xd5\xc4\xba\x34\x8a\xb2\x98\x96\x60\x0c\x96\x95\x4a\x26\xe2\x4c\x44\xcd\xa8\xaf\xe5\xf3\xf5\x1f\x85\x96\x7c\xcf\x8a\xc4\x36\x5a\xf2\x28\xf8\xce\x52\x03\xeb\x81\x56\x00\x5e\x1b\x13\xd2\xb3\x2f\xbe\xd8\x34\xd0\x66\x4d\x1d\x1f\x12\xe9\xf7\x35\x7e\xd4\x2a\xc1\x0f\x5c\xee\x41\xf2\x03\xb0\xdd\x61\xc7\xf8\x2d\xef\xcc\x86\x1b\x73\xc1\x84\xd8\x5d\xe6\x72\x9c\x2e\x0d\xe2\x54\x97\x93\xb3\x81\x97\xef\xd0\x37\x91\xf7\x11\xfe\x2f\x1f\x11\x06\x3c\x76\x24\xe4\x88\x9c\xea\x24\x2e\x31\x34\xe0\x7c\x3b\x89\x68\xf6\x67\x19\x5c\x7b\x60\x9d\x58\x1c\x5a\x1c\xc9\x2f\x7c\xec\xe7\x5b\x61\x26\xe8\x86\x1c\x01\x48\x1a\xbe\x8f\xe4\xc9\x11\x96\x04\x81\x42\xf9\xff\xae\x3c\x0c\x40\x9f\x18\x69\xc7\x7e\x9c\x59\x0f\x77\x64\x31\xcb\x6d\xc7\x14\x6a\xe0\xad\xcc\x77\x79\x70\x8e\x05\x1f\x7a\xfc\xa2\x59\xdb\xb1\xd3\xf2\x15\xc8\xe8\x00\xea\xfa\x2c\x82\xe7\x79\x16\x5c\xd6\xf7\xf1\x84\xed\xe8\x73\x7b\x9b\x71\x0e\x46\x52\x11\xb7\x13\xdb\x98\x62\xcb\xbf\xea\x53\x9c\xc4\xea\xf6\x2d\xbb\x7f\xae\xd9\xc9\x86\x03\xa4\x64\x28\x02\xde\xa3\x82\x80\x0d\x41\xd2\x78\x79\x39\x23\x77\x2e\x28\x00\xe9\x6b\x8f\x08\x65\x8b\x8b\xb1\xea\x7d\x80\x32\x76\x22\x22\xfe\xd8\x89\x51\x70\xd8\x5b\x8d\xcb\x5e\x37\x37\xab\x72\x36\xf9\xea\x60\xbf\xaf\x14\x46\x63\x6c\xae\xaa\x0a\x90\x7d\xa1\x7d\xb1\x11\xf7\xc8\x6a\x8c\xe2\x86\xe9\xa2\x89\x73\xc5\xfa\x91\x15\x1f\x89\x02\x66\x78\x64\x22\x73\x9f\x3d\xd4\x2c\xb2\x61\xda\x95\x98\x84\x3a\x4c\x03\x02\x56\xd5\x0d\x76\x23\x99\xd4\x87\x96\x94\xb8\x63\x4a\x93\x64\x4b\x9a\xe1\xaa\xae\x0a\xa9\xa6\xb2\xb0\x76\xc7\x0c\xab\xcc\x95\x88\x98\xef\x46\x63\x9c\x8e\xe7\x3d\xdd\x08\x25\xa0\xfe\x0f\x59\xe8\x2e\x14\x6d\x0f\x8d\x87\x9e\x15\x8a\x60\x9c\xc6\x12\x84\x5d\x8f\x92\x47\xbe\x48\x0d\xa3\x6f\x72\xdb\x90\xc5\xae\xa4\x70\x6a\x49\x5f\xa4\xc9\x91\x38\x2d\xab\x0f\x5d\x92\x69\xd0\x79\xe2\x77\x07\xf5\x98\xad\x88\x30\x9b\xff\x07\xb7\xca\xfd\xab\x40\xc8\x6a\x0f\xf3\x2a\x45\x2b\x9d\xfd\xc4\x78\xb3\xc0\x11\x69\xb7\xc7\xa8\xfd\x73\x4d\xb3\xb8\x18\x77\xcd\x4a\x5c\x36\x08\xde\xe5\x19\xb7\x8b\xd1\xe7\xdc\x02\x5c\xb1\xb9\x13\xeb\x52\xca\x98\x0a\x39\x22\x70\xa3\x02\x00\x5d\x1b\x6d\xd5\x8f\x09\xee\xb0\x2f\x0f\x12\x13\xa7\xb2\x26\x01\xa1\x7f\x88\x44\x59\xdf\x78\x1e\x5f\x96\x76\xec\x23\xf2\x9b\xd1\xfe\x80\xac\x8e\x70\xf0\x77\xfe\x42\x4b\xcc\x2a\xbd\xbb\x52\x20\x1c\x9f\xe3\x46\xeb\xf4\x7a\x15\xbf\x70\x97\x3e\xa5\xe3\xfd\xb6\xdc\x57\x9c\x64\xf7\xe4\x37\x0a\xd0\xf4\x5f\xff\xcd\x75\x62\x3d\x5f\x1c\x91\x03\x8b\xb2\xf9\x01\x60\xfe\x6f\xb2\x42\xe4\x69\xbf\xf1\x33\xad\x2a\xae\xb9\xc4\xaf\x86\x70\x2e\x6c\x0e\x0d\xca\x63\x8e\xa3\xfa\x66\x82\xff\xf2\xcb\xcd\x81\xf8\xb0\xe2\x94\x47\x7b\xf1\x6d\x26\x8b\xbd\x5d\xe3\x20\x3f\xd7\x0c\xd3\x91\x34\x4e\xe4\x87\xa7\x6a\xf4\x0c\x9b\xed\xac\xf0\xb2\x9a\x5e\xba\x3d\xb0\xf8\xce\xd6\xe4\x2c\xcd\xb8\x0f\x7d\x4d\x94\xfe\xde\x84\xc1\x67\xc6\xff\x62\x44\x40\xfb\x59\x9a\x51\xd3\x11\x57\xc4\x4d\x24\x66\x47\x88\x98\x75\xc4\x4f\x0d\x0d\x12\x93\x16\x0f\xc8\x0f\x41\xf0\x71\x47\x92\x53\x1c\x6a\x78\x4d\x96\x5d\xec\x8f\xaa\x5b\xc2\xb9\x31\xd1\x8c\xdf\x0e\x21\x3e\xd1\xcc\xe1\x9c\x87\x4d\xe4\xb7\xcb\x9f\x1c\xfd\xe9\x31\xd1\xc2\x2f\xc4\x5f\xd0\x4a\xd5\xcb\x4b\x06\x89\x87\xf3\x04\xaf\xbe\x62\x3a\x3d\x93\xc7\xa6\x98\x22\x67\xb9\x37\xb1\x5a\x54\xb5\x46\xae\xd8\xb1\x54\x49\x87\xc2\x14\x71\x9a\x4d\x07\x95\xd1\xbb\xb2\x42\xd1\x7a\x3c\x39\xc6\x17\x90\xa0\xed\x5c\x14\xdd\x79\x2f\x76\x67\x12\xb4\xab\xf8\xa2\x69\x89\xc4\x17\x97\xa2\xd4\x0e\x9d\x77\xaa\xed\xeb\x5a\x46\xce\xa4\x5e\xee\xa3\xbe\x21\x7a\x67\xcf\xa4\xdd\xaa\x28\x48\xd4\x6f\xd5\x99\xfa\x87\x9a\xff\x02\x71\xfb\x24\x0f\x5c\x8d\x0b\x64\xd8\x48\x65\xae\xb3\xa5\xc3\xfb\xe4\x6b\x70\x09\x9b\x5e\xdf\x90\x92\xcd\x79\x4f\x5e\x1f\xa6\x71\xc7\x4e\x85\x6c\x1d\x7a\x19\x80\x84\xb5\x9a\x71\x1e\x6c\x8f\xd0\x30\xb2\x78\x48\x55\x5f\x8a\x67\x81\x7e\xac\xb3\xc5\x94\x5f\xad\xff\x63\x3d\xf8\x31\x7c\x7d\x44\xd3\xa7\xa2\x99\x17\x17\xfd\x9d\x21\xa7\xdc\xa4\xd1\xa0\x4d\x71\x79\xc3\x81\x72\x03\x93\x84\x0a\x5c\x8e\x02\xd2\x32\xd5\x0a\x83\x84\xbb\xeb\xd4\xa4\x16\xad\x58\xb6\x78\xbc\x15\x4f\xce\x6d\xc3\x9a\x12\x43\xc4\xe5\xcc\x92\xb6\xe4\xbd\x7c\x56\x10\x90\x1d\xe3\x09\x99\xbc\x8a\x3a\x00\x9c\xbc\x66\xf8\x5c\x30\x41\xab\x41\xf5\x3a\x49\xdc\xf7\xd0\xb2\xb7\x3c\x9f\x0b\x96\xe7\xa1\xba\x9f\xcd\xe0\xb1\x07\xec\x4c\xfd\x77\xf5\x4d\x9d\x06\x9c\xa8\xdd\x75\x2d\xc2\x93\xd3\x9b\x6c\x78\xcd\xa6\x8d\x7a\x07\x6b\xc7\xa9\xf6\x63\x42\xd8\x55\x6e\x66\xc8\x35\x18\x83\x87\x80\x5e\xbb\x17\x5c\x24\x77\xc7\x70\xed\xfb\x67\xbf\x88\x44\x5e\x87\x39\xe5\xc9\x22\x01\xb9\xc6\x52\xdb\xf7\xea\xdc\x50\xfb\xc3\xd2\xb9\xa9\x80\xef\xf6\x47\xf2\x2d\xfa\x9a\xb0\x77\x58\x4d\xa8\x71\x15\x31\x5b\x67\x3d\x12\xf7\x18\x57\xea\x00\x99\x25\x1a\xe1\x54\xfa\x5e\x44\x64\xcf\x57\x99\x42\xf5\x41\x1d\xc1\x7f\xd5\xe4\x41\x3d\x5a\x75\x15\x24\x7d\x76\x1a\x0b\x9f\x65\xb6\xd1\xcf\x52\xbb\x36\x4d\x5c\xe3\xb3\x64\x56\x07\xc5\x59\xef\xee\x32\xe7\xcd\xf5\xdf\x9f\xe8\xa0\x3e\xdd\x6c\x0f\xd7\xa6\x83\xd7\xd9\x6e\x70\x99\x54\xfc\x47\x3e\x13\xab\x74\xc7\x7a\x68\xb2\x71\xf7\x72\x69\x68\x73\x71\xa7\xd5\xdb\xeb\x3d\x49\x43\x59\x74\x9e\x28\x9b\x03\x9b\x17\x59\x3a\x13\xb0\x89\xf7\x22\xb2\x99\x9e\x02\x3b\x96\x3d\x92\xb1\x15\x1f\x16\x29\x39\x14\x90\xb7\x6b\xd9\xfc\x6d\x9b\x76\x7a\x7d\x93\x2f\x93\x8a\xea\x51\x6a\x4a\x1e\xad\x11\x03\x9c\xaf\x0e\x79\x19\x11\x43\x3a\x79\x66\x44\x51\xe1\x3c\x8d\x36\xfd\x09\x41\x70\x6d\x53\x76\x7a\xb2\x97\x71\x93\x4e\x48\x70\xd4\xd7\x13\xcf\xf8\x69\x3f\xa0\x4d\xd0\x8f\x76\x7e\x9c\x32\x8d\x97\xad\xaf\x0a\x77\x99\x68\x00\xd6\x84\x36\x07\xc6\xe4\xd4\x93\x80\x8e\x89\x5f\xa7\x89\x64\x51\xbe\x61\x89\xb1\x0d\xde\xda\x1b\x1e\xcb\x2a\x87\x79\x7b\x98\x38\x40\xdb\x85\xc2\xea\x33\xf5\xf5\x28\x88\xf8\xaf\xd8\x14\xda\xbc\x63\x4e\x6b\x63\x2d\xab\x27\x28\x0f\xb6\x2b\x71\x98\x92\x57\x37\xf1\xa8\x41\xce\xe2\xdb\xbb\x85\x07\x0e\x34\x73\xa3\x9d\x59\xc7\x45\x61\xdd\x94\x5a\x2e\x7e\xcf\x18\xd9\x2c\x32\x45\x25\x02\xa3\x94\xb4\x9b\xc4\x76\xf0\x79\x48\xf7\x3e\xa2\x61\xb3\x49\xde\xf3\xfc\xc2\x7c\x33\xd1\x78\xe8\x7d\x9c\x7c\x3d\xfd\x3a\x49\x3c\x0f\xd3\x22\x4b\xe2\x4e\x5c\x62\x4a\xd7\xd1\x0b\x2e\x8e\x88\x78\xc0\x32\xb1\x2a\x65\xa7\x6f\xa2\xc7\x88\x9b\x95\xaf\xc4\x2b\xd5\xf1\xe1\x79\xe4\x68\x68\xe9\x6b\x4a\x4f\x72\x5b\x64\xc9\x8a\xf2\x9a\x5c\x91\x74\x49\x76\x04\xf9\x4f\xcc\xea\x26\xda\xa4\x2f\xd1\xd2\x59\x2d\xbf\xd4\xc9\x0a\xff\xd8\xd9\x5a\xd1\x50\x78\x9c\xac\xd8\x7c\x8d\xe6\x9a\x31\xa7\xe0\x2c\xe0\x89\xcc\xd5\xe9\xed\x66\x61\x67\xc8\x2c\x78\xda\x3e\x1b\x43\x49\x82\x80\x3d\x7c\x3f\xe6\xef\x5d\xb5\x45\xd6\x54\x34\x26\x36\xbd\x1e\x4e\xae\xc7\x5b\x55\x75\x37\x46\x7e\x75\x06\xe3\xb2\xa2\x9d\xb3\x7d\xc0\x71\x07\x79\xb6\x12\x77\xed\xc3\x02\x15\x20\xf3\xdc\xc2\x3e\x56\xa2\x0f\x72\x07\xef\x3d\xb3\xdf\xc1\x3f\x37\xa4\x90\x74\xc0\x01\x5b\x15\x91\x53\xca\x59\xd4\xe8\x4c\xd1\xd7\x32\x69\x14\xc8\x38\x7f\x06\x59\x03\xfd\x72\x59\x45\xfa\x15\x02\x9e\x20\x0b\xda\x22\xb2\x58\x6a\xfa\xd3\xc4\x15\x3c\x3a\x22\xa6\xf9\x51\x52\x54\x3c\xc2\x5c\xe6\x23\xd1\x93\xd4\x22\x2e\xfa\x26\xef\x2c\xc7\xd8\x41\x2f\xe8\x3a\x38\x12\xd1\xa2\x38\x42\x4b\xd8\xcf\xfb\xe4\x05\x74\x5a\xb5\xbd\x1f\x85\x81\x91\xd3\x34\x1f\x7a\x56\x6e\x93\xc3\x79\x02\x2b\x0c\xea\xc8\x41\x5f\x63\x9c\xd1\x13\x8c\xbd\x73\xdb\x37\x71\xda\xb5\x39\x59\x38\xab\x95\x1e\xe0\xb6\x4b\xd1\x58\xc1\x16\x80\x1f\x53\x96\xa6\xb3\x0c\xa5\x53\xc0\x6d\xb7\x89\x17\x1f\x38\xfd\xa9\x5d\xad\x62\x3d\x35\x93\x2f\x93\xbb\xcf\xe5\x51\x18\xcb\x59\x8a\xa5\x9f\x8f\xb5\x8b\x7a\xef\x13\xd6\xe9\xfa\xc4\x0f\xf9\xab\x81\xda\x0c\xcd\xa0\xdf\xe5\x25\x0b\x44\x54\x0f\xa1\x11\x4f\x96\x34\xbc\xc1\xb1\x78\x4d\xf8\x69\xa5\x32\x37\xd8\x86\x40\xc9\xbe\x89\x5f\xad\x6f\x26\x80\x92\x85\xbd\x55\xc2\xb5\x12\x0b\x9f\xb1\x41\x50\xe7\x49\x82\x3a\x4f\x46\x4f\xd2\xb4\x71\x15\xa4\xc5\x63\x17\xcb\xc9\x77\x3c\x9e\x73\xf3\x3c\x47\x88\x05\xbb\x41\xe3\x51\x1f\x47\x9f\xa7\x20\xb0\x94\x8a\x16\x7b\x5a\x26\x6b\x33\x81\xf5\xa9\x9d\x77\x15\xa4\x94\x3f\xf6\x83\x8f\xd5\xb7\xe1\xb1\xaa\x1c\x10\xaa\xf8\xbf\xa2\x10\x06\xe3\xfd\x78\x45\x31\x37\xec\x46\x65\x95\xeb\x1b\xdf\xd6\x8c\xfb\x83\xa1\xe7\xc3\x01\x87\x3a\x43\x3c\xb6\x33\xd1\xf6\xd3\x63\xdf\xbe\xa6\x29\xa0\xe3\xe6\x59\xf3\x64\x1b\x3a\x59\x68\xcf\x36\xcd\xaa\x59\x9b\x0e\x4a\xb7\xff\xcd\x38\xfa\xd0\xf0\x72\x00\xf7\xf0\xb3\x5d\xd8\x09\x30\x9f\xb7\x11\x70\x39\x91\xd2\x53\xf5\x4d\x1d\xe4\xd4\xad\xd2\x61\xdb\x25\xbd\xb9\xab\x23\x8a\xaf\x13\xa0\xe3\x2f\x83\xaf\xc9\x7b\x1a\x0c\x2c\xb7\x5f\x27\x1b\x65\xb3\xaa\xe3\xd4\x20\xed\x4d\x74\xbf\x5d\x7f\xf8\x89\x71\x2e\xe1\x81\x03\xcd\xe7\xe7\x95\x4a\x83\xf1\x79\x30\x5c\x7c\xce\x37\x2e\xfe\xf8\x82\x33\x25\x88\x48\x43\xed\x16\x76\x90\xfe\xb9\x27\x36\xf6\x4d\x9e\xa5\x71\x69\x9d\x09\x06\xae\xe0\x4a\x44\x92\x26\x57\x26\x0e\xe2\xb9\x39\x31\x17\x6c\x34\xc8\x4f\x30\xd0\xb8\xbf\x5b\xd7\x4b\x49\xb2\xd5\x31\x6d\x90\x0b\xd1\x98\x66\x24\x7b\xd6\x7a\xf5\xc6\xb9\x40\x59\x99\xf3\xaf\xa3\x40\xc9\xec\xb7\xc9\xc8\xc5\xa1\x2f\x0d\x52\x79\x99\xac\x75\xbe\x36\x34\x49\x5c\xae\x11\x15\xef\x30\x51\xf1\x0e\x93\xf3\x45\x95\x98\xda\xd2\xe6\x05\xc9\xf4\xe0\xd3\xc9\x67\xfd\x19\xdf\xe6\x78\x88\x85\x2f\xe4\xe3\xbd\x34\x7a\x70\x53\x38\x37\xa6\x8e\x94\x3f\x4c\x6d\x95\xa9\x75\x1a\x1b\xb9\x23\x3a\x7d\xd8\xf6\x47\x09\x98\x3c\x4a\xf6\x2d\x4f\x48\xd1\x21\xff\xe6\xa7\xfe\x06\xa6\x97\xb1\x4b\x8e\x73\xcb\xf5\xc1\x96\xf0\x25\x9c\xea\xb3\xdc\x54\x3c\xa5\x5d\xeb\x63\xc2\x3e\xa4\x26\x08\xfe\x35\xea\xb4\xdf\x25\x21\xf5\x38\xed\xc6\x1d\x53\x66\x79\x31\x13\xfc\xeb\xfe\x74\x44\xbe\x1c\x20\xb2\x02\x31\xda\x24\x40\xf3\x4e\x44\x4e\x1e\x9f\x50\x38\xec\x54\xf9\xa7\x53\x72\xf7\x00\xbc\x26\x0e\xfa\x86\x70\x9c\x41\x6e\xcb\x72\x4d\xb4\x8c\xf1\x3f\xdf\x97\x24\x40\x5f\x47\x04\xad\x5c\x8a\x08\x74\xb9\x54\x6b\x1b\x10\x7b\x9e\x03\xb0\xab\xf7\xe4\x67\xeb\x6b\x92\x6b\x58\xb2\x20\x63\xbb\x24\x04\x2d\x21\xc2\x2a\x67\xb7\x6e\x45\x8e\x76\xb1\x68\x2d\x86\x8e\x1c\x46\x5e\xfd\x5b\x4c\xaf\x4c\xd1\xc4\x23\x54\xcf\x5c\xb7\x78\x82\x77\x38\x5f\x9d\xfe\xde\xa4\xd8\xab\x00\x23\x86\xbb\x6e\x77\x0d\xb5\x7e\x90\xe5\xe5\x62\x96\xc4\xe8\x6c\xe8\x9c\x37\xb6\xb2\x1b\xfa\x0e\x99\x41\xbf\xd3\x51\x07\x22\x1c\x17\x6f\x71\xd7\x9a\x2f\x10\x29\x87\x1f\xa2\x71\x78\xec\xc1\xcb\x35\xa8\xe5\x0b\xcd\x61\xba\x98\x98\xe5\x35\x7a\x9c\x27\x65\xd5\xba\x56\x47\x8d\x1f\x43\x27\x33\x79\x01\x35\x54\x6c\xa7\x4d\x72\x3f\xde\xa4\x24\xa5\x1b\x17\x65\x9c\xe8\x84\xcd\x0b\x3a\x8d\xb4\x8e\x15\xa8\x6f\x68\xcc\x7a\x35\x1b\x26\xdd\x27\x11\xd6\x70\xd4\x03\x28\x77\x47\x65\xc3\xdb\x51\x1c\x97\x82\x10\xf0\xa8\x8e\xf8\x3b\x60\x8f\xb0\xc8\x23\x51\x60\x8f\x4c\xb7\xc2\x83\x7d\x1f\xa3\xe1\xe8\x4a\x7d\x17\x71\x4d\xcf\xa8\xa8\x71\xe8\x59\x7a\xe4\xf3\xcc\x64\x3f\xa8\xcc\x84\xc3\xd8\x7b\xce\xab\x5c\x56\x1a\x2a\xfb\xbf\x14\x4a\x9e\x27\x52\x04\x54\xfc\x47\x58\x09\xb8\xa5\xb7\x85\xfc\x09\x2e\xc0\x87\x48\xa3\x01\x18\x5e\xa1\xd9\x89\x76\x96\x15\xa5\x02\xd0\x4e\xb2\x45\x6a\x21\x7d\x43\x9b\x6c\x25\xce\x12\x5b\x4a\xd3\x40\x01\x52\xb9\x6b\x0e\x2c\xdd\x7e\xac\x3f\xdd\x34\x89\xd1\x99\x74\xa4\x7c\x87\x69\xcc\xef\x3a\x51\xa2\xce\x4e\xa4\x4f\x73\x73\xcd\x5e\x36\x2c\x84\xb3\xae\xa7\x83\x4a\xe6\x10\x1a\x76\x66\xb2\x3d\xf5\xec\x41\xe7\x27\x66\xf3\x06\x89\x49\x63\x9a\x5a\x5f\x13\xbd\xd0\x74\xab\x12\xab\x6f\xd3\xb2\xa0\x71\xc4\xf7\x71\xe3\x1d\x60\x4a\x93\x0f\x67\x23\x12\x34\x3d\x4b\xa3\x0f\x2f\x55\xf1\xa7\x51\x2d\x16\xc7\x68\x95\xca\x49\xdf\x90\xf8\x40\x3b\x5e\xb6\x18\xb9\x77\x49\x49\xf5\x47\x7e\x56\xbc\xfa\x23\xef\xeb\x58\x7d\xaf\xff\x3f\x41\x3a\x6d\x8b\x06\xa8\x3b\xc3\xa2\x17\xa3\xd1\xe4\xaa\x2b\x34\x57\xf5\xb5\xcf\xca\xda\xc3\x3c\xb0\x44\xb5\xbd\x17\x05\x02\xeb\x06\xc5\xb5\x6c\x55\xb3\x1c\x30\x2f\xfe\x17\x2c\x75\x7d\x13\x91\xa0\xa5\x91\xde\x45\x68\x3c\xc0\x9b\x5c\x5f\x7b\x53\x4e\x5b\xb4\x65\xf4\x0c\xff\x5d\x0d\xa5\x70\x22\x3d\xd0\x62\x8a\xc7\xff\x30\x0a\x84\x7d\x00\xf6\x50\x7b\xba\x31\xa2\xa1\xd7\xe0\x1e\x65\x92\xd8\xa6\xba\xbe\x1c\x43\x5a\x6e\x99\x9b\x55\x67\x8e\x49\x9d\xce\x70\x27\xeb\xf7\x87\xa5\xeb\xbe\x60\x89\x2a\xc1\x55\xdf\xd4\x34\x79\x9e\x69\x96\xde\x7e\xd5\xe9\x06\x34\x48\x50\xe0\x71\xa2\x1a\xc5\xe2\x84\xa1\x98\xa2\x4e\xb4\xf2\xb0\xbe\x2a\x04\x02\xeb\x3c\x46\x05\xfa\xbe\x2f\x1f\x6c\x84\x89\xc2\x93\x2c\x21\x70\x72\x22\xbc\x57\x69\xe3\xc0\xac\xc9\x22\x66\xf1\xdb\xf7\x58\xd5\xec\xbd\xb1\x9e\x6c\x6e\x15\xc3\x42\xd4\xd8\x24\x70\x65\x93\x16\x35\x7a\xe1\x14\xfc\xff\x54\xdb\x40\xfa\x6e\x22\xcc\xbf\xf8\x62\xd3\x14\x6d\x5b\x94\x99\x8e\x99\xe8\xf8\xe9\x28\x30\x81\xa0\x31\xef\x30\xf6\xcf\xf1\x09\x5e\xc4\x6a\x71\x3e\x4d\xb7\x05\x6e\xc7\x60\xf3\x6d\xe2\xf9\xea\xff\x18\x05\xe3\xab\x4d\xc2\xf4\x4a\x6b\xfa\x22\x6a\x31\xef\x23\xbf\xac\x79\x44\xcb\x77\x48\xc0\xea\x34\x71\xd8\x3e\x21\x09\x9c\xd3\x13\x8f\x7d\xff\x5c\x73\x71\xf8\x52\x5c\x28\xe1\x17\xc0\xc5\x0c\xc4\xcd\xfd\x04\xb3\x5f\x04\xdf\x60\xb5\x93\x2d\xca\x1c\xed\x4a\x96\x0c\xc3\x0c\x83\x1a\x32\x8f\x02\x7d\xf9\x4c\xc4\xee\x34\x49\x62\xcd\xd2\x10\xeb\x67\x36\x78\x70\x55\xbf\xcc\xeb\xd6\x31\x56\x53\xc3\x7a\x18\x18\x75\x3e\x03\x80\xfc\x2a\x8d\x30\xbd\x5a\x05\x6c\x57\x35\xf6\xec\x8a\xc9\xbb\xa9\xe9\xbe\x02\x6d\x37\x2d\x07\x71\xb4\xd4\x35\x47\xe4\x17\xba\xa2\x31\x00\x56\x6b\xa6\x6f\xe2\x4e\x2f\x6e\x30\x83\x45\x4b\x74\x7d\x13\x05\xa3\xc3\x34\x5b\x7d\xbc\xe1\x87\x57\x1b\xe8\x24\xa2\x70\x7b\x07\x64\x24\x80\x4a\xeb\x28\xef\x50\xa1\xdc\xd5\x3e\x3a\x00\x9e\x6b\x51\xe3\x57\x9e\x67\x77\x09\x87\xb0\x5c\x1e\x11\xd5\x5c\x35\xa3\x9d\xc2\x1b\xa9\x0b\x42\x97\x13\x49\x00\x98\x47\x80\x2c\x1f\x90\xde\x11\xe2\xed\x7a\xc4\xd2\x6f\x92\x75\x63\xa1\xfc\x16\x68\x33\x7a\x91\x50\x91\xf3\xce\x1c\x0b\xce\xaa\x78\x7a\xdd\xd3\x0f\x87\x22\x79\x92\xa9\xe0\xa3\xe7\xea\x7b\x22\x11\x06\xeb\x9c\x2f\x76\x9d\x8f\x64\xd7\x26\x59\xee\x4a\x32\x84\x94\x63\x3c\xa2\x73\xac\xa6\xaa\x7c\xa1\x99\xc4\x65\x99\x68\xfe\x09\x30\x4f\xb5\xa2\xb0\x8e\xce\x8c\x82\x8d\x14\x88\x54\xa8\x04\x26\xdd\xf4\xf6\xcd\x62\x32\x0e\x67\x2b\xee\xc8\x5d\xdc\x05\x7d\x43\x80\xa4\xe9\x8a\x15\xda\x54\xe0\x4b\xff\x01\x51\xf5\xef\xd0\xcc\xc7\x64\x1b\x60\xff\x9c\xd8\x48\x56\x07\x8c\x8b\xb6\xde\x99\xd4\xcf\x80\x7e\x9f\x64\xd9\xab\x0c\x70\x98\xb7\xa1\x56\x8b\xfc\x00\xbd\x40\x7d\x5d\xc7\xa1\x57\x95\xc5\xb1\x04\x63\xbc\xdd\x46\x60\x56\xdb\xa4\xdd\x2c\x9d\x1e\x63\x66\xc8\x42\x42\x35\x76\x85\x78\x92\xf7\xe4\x33\xd4\x7c\x68\x52\x12\xeb\xd9\x83\xcd\x57\xb2\x50\x9f\xe2\x90\x83\x4b\x9c\xbe\x9e\xb0\x9d\x72\xad\xa2\x8e\xb1\x85\x71\x5a\x9a\xc8\x44\x8f\xf2\x0c\xd4\x51\xea\x3f\x76\xb2\xfe\x20\xab\xee\x5e\xb5\xaa\x91\x05\x5e\x92\xe8\xa7\xaf\x7d\xa5\xdf\x96\xa6\xb1\xbf\x1e\xaf\x06\x37\x17\x14\xe0\x68\x98\x34\xb6\xa9\x21\x5d\xed\x8b\x24\xfd\x7d\x91\x50\x4d\x99\xac\x5b\xb5\x98\xaf\xa3\x39\x19\xd6\x43\x70\xb9\x89\x4d\x5f\xca\xd6\x6c\x77\x3a\x68\x32\x29\x8b\xc5\xa9\x5d\xf2\x28\x0e\xb5\x5b\xde\xf0\x24\xee\x62\x90\xc4\x2e\x8b\x75\x63\x07\xe4\x43\xf7\x01\x9d\x7e\x4b\xb9\x49\x55\xac\x03\xab\x1f\xcd\x69\x7d\xbd\x5e\x23\xa9\xd2\x4e\xec\x2a\xce\x70\xa7\xa5\x13\x76\xec\xf1\x11\xb5\xb9\x6f\x51\x6c\x5b\x35\x6b\x8f\x54\x77\xc6\x7b\x87\x86\xb6\x2b\x4a\x25\x04\xbd\xef\x44\xe4\x5e\x78\x8b\x1e\xcf\x9f\x8d\x18\x03\x93\xe4\xdd\xe9\xdc\x91\x2a\xe6\x15\xd4\x24\x5e\x7c\x2a\x8c\x1c\xa8\xf9\x93\x87\xc4\x3c\xb8\xf6\xaf\x46\xe3\x75\x08\x09\xd5\x3c\x39\xb6\x76\x92\xaa\xa6\xc7\xe6\x7b\xc6\x33\xe0\x43\x2f\xfb\x08\x65\xa1\x66\xd8\x81\x43\xd2\x73\x24\x5f\xe4\x41\x38\x50\x27\x68\x7e\x3a\x4c\x4c\x87\x94\xe7\x40\xdc\x9f\xae\xca\x15\xc7\x17\x0e\x8f\xfc\x22\x45\x27\x05\x4d\x10\x7e\x77\xb6\xbc\x2a\x8c\x64\x34\xec\x38\x71\x91\x46\x90\xb6\xa2\x06\x49\x49\x05\xae\xc4\x62\x36\x4c\x4b\x13\xa7\x88\x50\x68\xa8\xdc\xc4\x9e\x46\x2f\x00\xf2\x43\x0e\x0c\x0e\x09\xf2\xc0\x24\xfd\x06\x9b\x34\x5f\xe4\xc5\x76\x71\x22\x70\x63\x90\x04\xdd\x22\x3f\xbd\xb2\x49\x3c\xbd\x4d\xe6\x63\x0f\xe2\x5c\xdb\x4a\xae\x05\x45\xed\xa8\xba\x40\xb9\x6a\x4a\x9b\xaf\x66\xf9\xb2\xc6\x05\x94\x39\x77\xa9\xe4\xb9\x3b\x36\x03\x66\xcb\x6c\x2a\x34\x53\xaf\x51\x4c\x56\x46\x87\x6b\x34\x4d\x8c\x95\xce\x36\x7b\xe2\x6f\xa9\xd4\x23\x27\x32\x37\xf6\xac\xf6\xcd\x7a\x9e\xcd\x76\xfe\x3c\x66\x6e\xb3\x12\x59\x1e\x91\x69\x6f\x93\x7d\xef\x6d\x5f\x38\x0c\xb2\xc1\x4c\x90\x1f\x52\x7f\x1d\x9a\xff\x3b\xe8\xa7\xc9\xc3\x63\xba\x42\x9e\xb7\xa7\x7d\x80\x11\xba\x66\x9c\x4d\xc9\xca\x77\x32\x08\x0d\xaf\x2b\xf0\xb1\xc4\x30\xb4\x48\xae\x93\x4d\x90\xc8\x69\xc6\x5f\x1b\x02\x92\x0f\x2d\xf0\xb1\x78\x46\xbb\xb4\xba\x58\xd7\x33\xaf\x01\x96\x96\xed\x9a\x3b\xcb\xd4\x6a\x5e\xee\x9c\xb3\x9d\x0f\x7b\x61\x60\x60\x38\x03\xb4\xf2\x18\x4f\x95\x1e\x9b\xb8\xa9\x92\x15\xc4\xb9\xed\x94\x7d\x13\x63\x81\x29\x28\x2e\xd7\xe9\x00\xf2\x47\xb9\x1d\xa9\x5d\xe3\xad\xd3\xa2\x2b\x7f\xba\x86\x32\x77\xb0\x99\x67\xc3\xd2\x8e\x0d\x31\xc9\x1d\x73\x3c\x0a\x56\x7d\x33\xce\x69\xeb\x85\x70\x32\xf2\x98\x50\xd0\x29\xef\x5b\x53\x1d\x7c\xe2\xc8\xdc\x20\xc9\x21\x45\xdf\xdd\xb1\x4b\x6a\x31\x4a\xdb\x36\x34\xb6\x85\xbd\xed\x84\xc5\x6a\xf5\x65\x97\xed\x70\x40\xb2\x59\x78\x64\xee\xd1\xd4\xe9\xb3\x0c\xcb\x30\x2d\x0d\x80\xf3\x2e\x91\x52\xee\x52\x01\x5f\x0c\xaa\x87\x78\xe0\xc0\x41\xcd\xfb\x34\x24\xe9\x1b\x32\xf8\x30\x9d\x72\x68\x92\x04\x8c\x0c\x67\xb4\x8a\xa8\x81\x15\x0d\x70\xc9\xd9\xb1\xd2\xe0\xc6\xf1\x89\xc9\x13\x19\x87\xc9\xfa\x7d\x9b\x77\xdc\xce\x41\x1f\x08\xda\x65\xfa\x7a\x9d\xd9\x73\x6b\xcb\x20\x2f\x22\x70\xdc\x41\x67\x47\xdf\x10\x27\x30\x4b\x4b\x93\xc7\x19\x1e\x86\xc2\x34\x78\x18\x0e\xb3\x71\x54\xb0\xdc\x74\xe3\x6c\x17\x7e\x80\x7b\x50\x81\xde\xf3\x50\xab\xda\x43\x8a\x7b\x8d\x68\x91\xeb\x9c\x33\xaa\xd7\xb7\x47\x63\x47\x79\xd0\x9d\xf9\x16\xcd\x7a\x0f\xf2\x4c\x14\xb5\x86\x70\xd5\xc0\xa1\x79\x8c\x4f\xd0\x63\xb5\xd6\xd0\xd9\x6a\xba\x8d\x53\xc7\xc0\xef\xef\x84\x7c\x47\xed\x30\xdd\x28\x00\xd0\xb2\x5f\x67\xe8\xed\xdd\x88\xae\xed\x6d\x1f\x47\x52\x33\xe8\x95\x3d\x33\x1d\x42\xc7\x0e\x92\xa1\x50\x47\x3a\xc5\x04\x47\x8c\xf0\x91\x2a\x74\x3b\xcb\xab\xb3\x92\x7a\x73\xd7\xe5\x80\x73\x8d\x86\x6a\x4d\x20\x9d\xba\x2e\xa5\xaf\xf6\xae\x71\x2e\x39\xff\xf2\x9a\xe8\x32\xc8\xb3\xd4\x4e\x05\xa4\x5a\x8b\x65\x5f\x64\x78\x82\xf8\x89\x1a\xe7\xa0\x83\xcd\xb6\x49\x96\xd9\xce\xf6\x7a\xc4\x53\x7b\x93\x5b\xe6\xa0\xca\x47\x4e\x4d\x2a\x46\xfa\xfe\x46\x15\x10\x80\xcc\x5c\xa7\xe8\xd6\xce\xd6\x66\x1a\x5f\xf9\x92\x76\x34\xee\x6b\x05\x0c\xf8\x7d\xde\x4a\xb7\x29\xdc\x1c\x45\xb8\x47\x31\x77\x18\x9d\x07\xba\x9a\x2f\x34\xcd\x17\xa6\x1a\x4f\x3d\xe5\xf5\x10\x3c\x00\xf6\x77\x1f\x5b\xa7\x61\xeb\x27\x5b\x0f\x91\xa0\xc0\xea\x03\x72\x81\x98\xf1\x3f\x4a\x62\x3d\x2a\xf9\x8a\xac\xe8\x16\xac\x32\x71\x38\xfc\xe1\x88\x20\x7c\xcc\xe6\x63\xc5\x5f\xe0\x91\xa9\xab\x3c\x5a\xf1\x87\x11\xb9\xa0\x1c\xf5\xbd\xec\xa2\x1c\xf6\xdb\xc9\x78\x69\xa3\x5c\x13\xa7\x8a\x52\x07\x6e\x66\x2b\x36\x6f\x0f\xe3\x04\x43\x71\xf8\xb9\x98\x50\xd0\xd7\x93\x43\xac\xcf\x1e\x6c\xe6\x76\x25\x38\x9d\x80\x56\xf6\x9a\x6c\x44\x7d\x4d\xe3\x0f\x1d\x53\x76\xa0\x1f\xe8\xf0\x56\x29\xa8\xb0\x95\x21\xcd\xe6\xf5\xe1\x83\x48\xdc\xb1\xb1\xfc\x22\x51\xa9\x0a\xdc\xc0\xdf\x23\x71\xa3\xdf\x9b\xb4\xfd\xdf\xd7\x1c\x24\xa6\x83\x8c\xc2\xf9\x90\xdc\x42\x56\xeb\x6b\xf7\xe0\x47\x77\x7e\x02\xf2\x9d\x3d\xd4\x5c\x8e\xbb\xa9\x51\x2f\x6d\xcf\x9b\x43\xc8\xd7\xd7\x54\xc7\x25\x22\xe3\xb8\xc6\x96\xd5\x3f\x24\x67\x91\x1f\x4e\x0c\xc0\xce\xcd\x35\xe3\xfe\x20\xcf\x56\xac\x22\x6c\xd5\xa5\x39\x0a\x9e\x3c\x5b\x7d\x43\x63\x9a\xfd\x61\x51\x64\x32\x9f\x20\xd7\x0e\xe0\x02\x8c\x13\x7d\x4d\xe7\x44\xdb\x74\x96\x65\x9c\x22\x28\xb7\x6c\xe2\xe6\x3a\xd4\xab\xae\xa4\x6f\x67\xb9\x1b\x48\xd2\x71\x32\xc0\x1a\x6e\xb6\xac\xa6\x8e\x59\x8c\xf3\xfe\x54\x20\xb4\xc0\x3d\x14\x0b\xf3\x56\x14\x52\xa8\xd3\xa3\x27\x89\xfc\x41\x5c\x93\x50\xe8\xfc\x19\x4e\x13\xe4\x16\x57\x46\x04\x86\x7e\x03\x81\xd3\x09\x90\x4e\x6a\xca\xcf\x35\x17\x4d\xa2\x3d\x1d\x26\xe7\xe9\xeb\xb1\x4a\x73\xd9\x3a\xc4\xcd\x51\xf2\xaa\xe0\x88\x70\x7e\x0e\x5f\xe4\x79\x7b\xb3\x87\xdc\xff\xa0\xb6\xd0\x62\x96\xf7\x55\x34\xa4\x5a\xc5\xd8\xab\xdf\x21\x85\xff\xef\xd4\x0d\xc8\x74\x7a\xb1\x5d\xa4\xd1\x76\xdc\x1c\x64\xcb\x77\x19\xcb\xfa\x09\x89\x36\x2e\x66\x39\x36\x25\x69\x81\xcf\xfb\x59\xfc\x1a\xdd\x94\x9e\x35\x5d\x5d\x4d\xce\x95\x4a\x56\x93\xb3\xab\xa2\x8f\x4e\xec\x6a\xa3\x3a\x0a\x30\x1b\x03\x0d\x30\x7d\xed\x09\x2f\xd9\x40\x8a\x7d\x4c\xae\xf8\xe9\x83\xea\xc1\xa0\x5c\x3b\x41\xd6\x73\x6f\xe1\x5c\x04\x64\xf0\x0f\x27\xb6\x94\x68\xfb\x65\x89\xcd\xbd\xa7\x31\xc6\x24\x4e\x93\x68\xd2\x69\x7f\x9a\x66\x9d\xce\x30\xcf\xbd\x6a\x17\x72\x3e\xb4\x34\x99\xb7\xad\xae\xa2\x35\x06\x3b\xf3\xcd\xa5\x0c\xdb\x51\x63\xe9\x58\x5c\xa5\x1e\x6f\x96\xc4\x9d\xb5\x87\xe4\x37\x79\x7b\x37\x5f\x58\x1e\xc3\x7a\x50\x74\x4b\xf3\x2c\xfc\xaf\x53\x54\x8b\x22\x84\xe1\x58\x86\x53\x19\x38\x40\x53\xeb\x72\xe3\x80\xd8\xbd\x81\xe5\x8d\xb3\xe7\x2e\x09\xa2\x7f\x30\xa2\x31\xd1\x33\x92\xef\x3b\x4f\x94\xd0\x16\x31\xe9\x5a\x96\xc2\x34\x41\xab\x2a\x84\x33\xa7\x0b\x1f\x58\x48\x6a\x7a\x09\xd0\xe8\x0e\x9a\x3f\xae\x10\x7b\x84\x14\xea\x4d\x8e\xd2\xda\xe9\x12\x91\x94\x34\x1a\x5b\xfa\x9a\xc5\x8b\x88\x4b\xd9\xb3\x9d\x65\x04\x22\x57\x49\x35\x82\x51\xb2\x67\xfa\x2f\xda\x3c\x57\xb0\x1f\x9b\xea\x3c\x31\x49\xce\x53\xb7\xdf\x14\x85\xcd\x95\x4e\x1a\x7a\x5c\xe7\x47\xa1\xf9\x75\x9e\x7a\xad\x9d\x2c\xcf\xd7\x84\x23\xec\x29\xb0\x0b\x7b\x43\x93\xc7\x2b\xdd\x80\xb7\xa2\xff\x46\x12\x1f\xf4\x23\xfe\x25\x6d\x84\x2c\xb1\x08\xf1\xe8\x00\xbc\x11\x11\x55\xfc\x0d\x76\x17\xed\x99\x7c\xc9\xee\x0a\x94\xe3\x8f\xa3\x49\x03\x34\x67\xf1\x26\x8f\xc0\x57\x73\x5e\xae\xee\x1f\x45\x64\xa0\x77\x91\xa7\xfb\x8e\xd4\x3a\xb6\xb4\xf3\xb8\x8c\x8b\x5e\x83\x74\x69\x20\xc7\xa1\xaf\xa3\x40\xb3\x5e\x89\xbb\x36\x2b\xcd\x40\xcd\x59\xf1\x7d\x27\xe4\xf7\x3b\xb9\x8e\x50\x45\x1f\x9e\x88\x50\x07\x0e\x34\x3b\xe8\xd9\xf2\x6c\x51\xa8\x17\x2f\x52\xf9\x94\x0f\x8b\x5e\x15\x99\x7a\x8d\x30\x65\xd3\xd6\x8a\x45\xdf\x50\x69\xd3\xcf\x8b\x2f\x4c\xd3\x90\xd4\x5d\xac\x4f\xaa\xe9\x9c\x67\xf8\x75\xf4\x88\x91\xb6\x1d\x8d\x02\xd3\xb8\xb4\xf9\x20\xb7\x8e\x47\x8f\x03\xec\x0e\x52\x20\xef\xd6\x45\x15\x73\x2d\x42\xd0\x0f\x67\x6d\xf5\x77\x20\x28\xe0\x3c\xd7\xd7\x13\x51\xe4\xd0\xb3\xcd\x25\x5b\x36\x82\x94\x9e\x3e\x31\xc7\x8f\x70\x90\x82\xe9\x94\xf7\xcb\x95\x39\x4b\x75\x76\xe0\x96\xfd\x0c\x11\x39\x74\xa7\xf5\xf5\xc8\x87\xc0\x6f\x3f\xd6\x92\x83\x84\x9a\xb2\x4e\x9e\x07\xf8\x2d\x8a\xd2\xc6\x3a\x89\x6b\x0d\xe2\x24\x21\xab\x44\x95\x58\xd7\x37\x58\x8a\x88\x75\x47\x91\xfe\xe9\x1b\x22\xdf\xc5\x69\x27\x19\x56\x05\xcb\x6e\xd2\xda\x3f\xac\xad\x38\xdc\xe2\x77\x90\x7f\xe2\x0c\xfe\x18\xd7\x85\xf0\x7e\x92\xdb\xd7\x97\x28\x81\x3b\x12\x4d\x8e\xc3\xe1\xbb\x77\xb5\x82\xa3\xca\x49\xd2\x3e\xd4\xfc\x14\xc8\xe1\xe1\x3a\xc1\xea\xc2\xa6\x45\xa6\x14\x64\xdc\x16\xcc\x53\xe9\xeb\x28\x38\x1c\x24\xf1\xb2\x7d\xa2\xda\xe5\xc8\xcc\xaf\xd0\xec\xf8\x4e\x41\xdd\x70\x98\xdf\x80\xaa\x8b\xcb\xd3\x88\xcc\xa7\xd3\x78\x7e\x12\xa9\xfa\xf9\xc8\xad\x7e\x10\x91\x0d\xc7\x03\xad\xc6\x97\x09\x5e\x7d\x6e\xaf\x87\xeb\x71\xfb\x70\xf7\x2e\x23\x63\xc7\xbd\x3c\x86\x94\x57\x07\xd9\xf1\xb8\x10\x8b\xe0\x46\xa6\xa2\xe1\xeb\xc1\x1b\xe0\x53\xdc\x4a\x54\x8b\x67\x59\xe6\xae\x01\x2e\x95\x1b\x8a\xf7\x12\xb2\x59\x37\x5e\x8c\x1d\x8c\x86\x0f\xbc\x41\xf3\x57\xef\x21\xff\x73\xeb\xf2\xf3\x0e\x27\x7f\xb9\xcc\x4d\x96\x77\xe3\xd4\xe4\x71\xb2\x36\xc5\x53\x02\x63\xd6\xea\x17\xc8\x2f\x74\x8b\x9a\x24\x1d\x5b\x6d\xd0\x62\x67\x68\x61\xfd\x1a\xee\x1c\x6a\x95\x47\x64\x2e\x04\xaf\x2f\xd2\x3e\x85\xbf\x99\x2b\x16\x68\x06\xe5\x96\x07\xe0\x57\x6c\x1e\x2f\xae\x35\x02\x23\xed\x6c\xc4\xd3\xc1\x23\x46\x26\xfa\x36\x7f\xb4\x7a\xf4\x88\x2b\xd7\xf5\x49\xa8\x00\x33\xb2\xd8\xb1\xe9\x7c\x37\x08\x23\xa7\x0d\x62\xb0\xba\x53\x61\xbb\xa9\x3d\x06\x6a\x07\x54\x43\x80\x3d\x77\xc9\x33\x42\xa1\x3e\xdd\xa2\xe5\xfe\x2e\x89\xf9\xdf\x64\x22\x6f\x0f\x24\x1d\x5c\xcb\x19\x09\xc3\x3e\xfc\x2c\xec\xd5\xd5\xb2\x39\x91\x5c\x3f\xdd\x5c\x4c\x86\x31\x86\xaa\x9d\x62\x6f\x75\x19\xba\x22\x24\xb0\x20\x01\x7a\x9f\x46\xc3\x5f\x32\x03\x93\xda\xc2\x3e\x24\x3f\xd9\xe3\x40\x81\x4c\xfd\x4e\x14\x04\x7c\xee\x8e\x28\x55\xbc\xc8\xdc\xba\x9f\x8c\x42\xdf\xe4\x2a\x89\xe6\x02\x1a\x22\xb6\xb2\x2b\x18\x8f\x33\x9f\xe2\x1a\x65\xc3\x4a\x34\xc0\x2f\xf8\x5e\xad\x30\x7a\x62\xda\xd6\x97\xad\xd8\x2f\x1b\xa4\xb7\x53\xeb\xac\x9a\x9a\x72\x98\x2b\x6a\x85\x72\xe3\x02\x4b\x56\x72\x2d\x34\x4c\xe3\xc4\xae\x58\x55\xc7\xd5\xcd\x1d\x8d\xed\xf4\xed\xa1\x7f\x61\xef\x42\xd3\x80\x64\xee\x88\x33\xcc\xa8\xf1\x1a\x8e\x26\x29\x73\x90\xcf\xd4\x02\x4a\x8e\x4c\x67\x07\x55\x53\x06\x94\x3d\xbb\x58\x52\x45\x79\x95\x2a\xca\xab\x1e\x15\xeb\x54\xe9\xd9\x83\x72\x43\x11\x7e\x6e\x07\xd1\xe8\x5f\xfb\xf7\x5b\x21\x48\xfc\x48\x1e\x13\x1e\xd9\xce\xf5\xc0\x38\x7f\x42\x1e\x13\xa4\x92\x7e\x7a\x9d\x48\xd3\xf7\x24\x6d\x45\xff\xe8\xa3\x11\x61\x15\x3a\x21\x8c\x8d\xb0\x45\x93\x3b\x9d\x5e\x95\xb1\x27\x49\x96\x93\xca\xed\x51\x56\xb9\x3d\x3a\xc1\xc0\x15\xe3\x04\x3b\x10\x72\x3f\x32\x82\xdf\x23\xc9\xed\xcb\x63\xf8\xf6\x63\x94\xe3\x9a\x64\xad\x88\xd5\x1c\x14\x59\xf3\x06\xf5\xbc\x37\x26\x48\xde\x0b\x7b\x9b\x3d\x83\x16\x9f\x9b\x4b\x20\x19\xb0\x37\x23\x86\x77\x69\x30\xe9\x66\xf4\xd7\x6b\x92\x2d\xd3\xed\xc7\x69\x5c\x94\xb9\x90\x4e\xb5\x15\x83\xf3\x4e\x15\x9b\xf4\x4d\x9d\xf3\xeb\x72\x96\x5b\xb3\x24\x72\x41\x61\x50\x91\x25\x8c\x2e\x52\x3e\xa3\xa3\x50\xf0\xd5\x23\x47\xe7\x83\xa1\xa8\x5f\x70\xde\x75\x5b\x11\x47\xb9\x3c\xce\x76\x55\x4f\xdf\x5f\x56\x20\x0f\x2a\xfd\x1a\xc9\xde\x31\xd6\xbf\xf9\xdd\x09\x6f\x45\x95\x49\x93\x50\x14\xec\x2b\x5d\x08\x59\x31\x85\x6d\x10\x25\xed\xda\x88\x4e\xfb\x49\x0f\x5f\x49\xaf\x16\x93\x38\xc5\xba\x46\x1d\x73\x84\xc7\x78\x8f\xd4\x2d\x90\x55\x93\x80\x9e\x8f\x13\x45\x55\x03\xf5\xcd\x04\x60\x22\x5f\x52\x0e\xf3\xd4\xe4\xd9\x70\x5c\xbd\x46\x9e\xb2\x53\xb2\x09\xeb\x56\xee\x58\x27\x96\xae\xc4\x73\x7b\x35\xdb\x40\xd7\x57\x5f\x8f\x9e\x24\x57\xf5\xb4\x63\xe3\x95\xea\xa1\x20\x4a\x38\x41\x53\xb9\xc1\x4e\xe9\xb4\x0e\x1f\x4e\xcd\x8a\x46\x21\x47\xf9\xaf\x9e\x8f\x63\xfc\x87\xbe\xe0\xc0\x74\x96\xcd\x92\x58\x9b\xec\x9b\x0d\x6d\x6e\x4f\x06\xbf\x2b\x0f\x49\x71\xeb\x88\x47\x29\x5d\x31\xde\xb5\x49\x32\xec\x83\x1a\x87\x52\xf5\xb5\x11\x91\xb1\x5e\xab\x1b\x6b\x4d\x4c\x19\x3b\x45\x41\x9c\x39\xef\x11\x58\x8e\x5a\x75\xcc\x9a\xde\xe9\x6d\x85\x03\x65\x31\xb6\x79\xc7\xba\xce\x8a\x37\x34\xf1\x52\x84\x17\x6b\x70\x88\x83\xcd\xe5\xd4\xae\xa2\xfe\x46\x88\xd5\x81\x66\x7d\xe3\xeb\x43\xd3\xcd\x06\xa5\xf4\xe3\x40\xbf\xdd\x25\xb1\xcd\x4f\x85\x07\xdf\x00\x0a\x03\x3a\xab\xe6\x32\x56\xa7\x2a\xb1\x94\x9b\xb5\x99\x40\x33\x3a\x39\xae\x39\xe2\x5b\xa4\xef\x3e\x26\x61\xd2\x91\x88\x7c\x7a\xf4\x1f\xfe\x3b\x2d\x86\x1b\xb3\xbc\xff\x48\xf5\x61\x5e\x08\x61\x2e\xb8\x87\xe3\x76\xaa\xb7\x1f\xec\x85\x90\x6d\xa9\x06\x36\xf2\x8c\x6f\x56\x0f\x71\xeb\x38\xf2\x3e\x25\xda\x0b\xa2\xa4\xf4\x98\x31\x08\x17\xf1\x05\x79\xcd\x4e\x9a\x76\xbb\x8c\xd4\xc1\xf3\xf4\xf7\xcf\x79\x76\x0d\x84\xd3\xf4\xfa\x68\xe8\x18\xd0\x89\xed\xca\x90\x3b\xd2\xae\x53\x24\x8c\x7b\x8e\x15\x4f\x41\x7c\x45\xda\xf5\x03\x50\x8d\x9c\x0b\xb8\x98\x45\x02\xa9\x7f\xcd\xab\x72\x65\x1d\x6b\xd2\x6c\x29\x37\x83\x5e\xdc\x69\x30\xeb\x82\xbb\x97\x84\x8b\xc6\x1d\x9b\x16\xb0\x1f\x74\x2d\x87\x6a\xf9\xfb\xd1\xb9\x6a\x77\x39\x02\x2d\xb5\x99\xcf\x79\x20\x68\x98\xc6\x2b\x36\x2f\x4c\x32\x15\x18\xa1\xff\x40\x9e\x26\x42\xe5\xeb\x58\xb6\xa8\xae\xdf\xd8\x3e\xc9\xf2\x85\xe6\xc1\xff\xea\xcb\x8d\xc6\x57\xbe\xa4\xf9\x8e\xe2\x7b\xfa\x66\x4c\xee\x36\x4b\xd4\xf8\x5a\x15\xd4\x23\x1a\x56\x3e\x31\xe2\x1a\x63\xd1\xee\xae\xce\x50\x4e\xe1\x5c\x05\x49\x33\x56\xff\x00\x04\x26\x8c\xe5\xfc\x3e\x12\x62\x35\x2f\xe4\x87\x7d\x56\x41\x25\x37\x02\x5e\xfd\x32\x64\x3d\xd7\x91\xae\xeb\x07\x44\x61\x38\xf8\x1e\x2e\xcd\x49\x29\x7b\x6d\x52\xeb\x78\xd1\x28\xd8\xd0\xb4\x66\x3a\x20\x48\x0c\xef\x10\x29\x37\xb5\x06\x72\x9b\x58\xda\xca\x6d\xf7\x80\x8e\xb7\x76\x98\xec\xba\x57\x75\x99\x49\x6c\x81\x71\xed\xcf\x74\xa9\x21\x39\xfd\x64\x58\x76\x7a\x1a\x8a\xdc\x9c\xf6\xf8\xbc\x9c\x1f\x1f\xc3\x7a\xd5\xd7\xd1\x4f\xfb\xcf\xe8\xc6\x05\xa4\x69\x4d\xc7\x11\x1e\x9f\x71\xc4\xdc\x6d\x86\x52\x6e\x37\xe8\x5a\x05\x28\xe2\x0d\x38\xbc\x07\x3c\x8c\x95\xc1\xa5\xbf\x5a\xe7\x4e\xbf\x6a\x4d\x52\xf6\xd6\x28\xc0\x9f\xc1\xaa\x75\x3a\x0d\x13\x7f\x33\xdf\x2c\x44\x46\x48\xfb\xbe\x38\x9c\x2f\xd0\x5c\x36\xfb\x5d\xad\xf6\x32\xe9\x31\xe0\xc1\xb1\x3f\x1d\x40\xaf\xcb\xe4\xac\x7c\xd1\xcf\x5e\x2f\xd9\xb4\x4c\x6c\x6a\x0b\x4d\x95\x78\x1c\x5e\x5f\x13\x74\xb8\x98\xc7\x5d\xb3\xf6\xa0\xac\xcd\x31\xc3\x7f\x27\x80\x52\xc5\x39\xc5\x88\x64\x35\x23\x7c\x7d\x0b\xa7\x3e\x2a\x8c\xdb\x22\xce\x8c\xa2\xf0\x81\xf5\x40\x96\x53\x14\x06\xf5\xc0\x3f\x21\x84\xed\x48\xc0\x37\xfe\xf3\x1d\x2d\x77\x84\x2d\xc6\x55\x2e\x09\xf8\xd7\x09\x1b\x36\x48\xf0\x70\xb7\x2f\xfc\x9c\xfa\x09\xd6\xef\x75\xa2\xb3\x5e\x9f\xc8\x02\x67\x0f\x35\x3b\xab\x46\x13\x36\xaf\x28\x31\x47\x2e\xb4\xdb\x8b\x8e\xd9\x43\xcd\x6e\xb6\x9a\x16\x71\x17\xf9\x1a\xa6\x0d\xc0\x45\xd0\xd7\x63\xcd\xa7\xd8\xe4\x33\x81\xfa\x83\xf6\xac\xbe\x16\xdd\x01\x2f\x41\x13\x88\x2e\x5a\x4d\x61\x7a\xea\xd3\xe8\x49\x1f\xcf\xf0\xf0\xfa\x26\x55\x01\x71\x7f\x83\x17\x5c\x39\x77\x9b\x7d\x00\xba\xb1\x17\xc9\x77\x20\x4e\xf5\x57\x0e\xdd\x79\x98\x1c\x5e\xb2\xd5\x5d\xb2\x34\xf5\x00\x8c\x48\xcd\x73\x87\xc0\x1f\x6a\x4d\x28\x1f\xe0\xc8\x75\x41\x2e\xf9\xac\x94\x06\x0e\x2c\x25\x1b\xcb\x9b\x94\x0d\x74\x7a\x26\xce\xfb\x26\x85\xdc\x2e\xce\x25\xe5\xa1\x91\x23\xc7\x0b\x1a\x43\xde\x1c\x11\x7e\x7e\x51\x90\x12\x27\xeb\x27\x17\xe7\xdc\xfe\x64\x6d\xea\x87\x41\x1f\x43\xff\x3e\xda\x1d\x76\x72\xb6\x47\x3e\xcc\xe9\xbb\x57\x1f\x06\xf1\xc1\x3d\x10\x85\x90\x0d\x33\xf3\xe4\x3a\xcd\x79\xa3\x3b\xe6\x9c\x35\x83\xff\xc3\x1f\x47\x41\x9e\xe1\x47\x28\xd5\x5d\x0c\xa8\x1e\x27\xea\xa9\xcd\x11\x85\xa7\xc3\xb8\x9b\xc0\xc4\xaf\xc9\x42\xc1\x73\x56\x03\x79\xb5\xc2\x1a\x91\xac\xd5\x55\x58\x48\xeb\x87\x51\x5a\x58\x2b\x24\x2c\xd4\x46\x15\xea\x06\x51\xec\x34\x36\xa0\xbe\xa9\x11\xea\x7e\xa1\xb9\x92\x25\xcb\xc5\xaa\x59\xb2\xe9\x74\xe0\xa5\xdc\xc1\x1d\xf4\xba\xb3\x7e\x68\xfb\x5b\x23\xc2\x91\xcf\xd1\x10\x64\x3b\x8f\xed\x62\x02\x84\x0d\xa8\xd6\xed\x11\x31\x08\x6f\x47\x7f\xe3\x33\x98\xa3\xa6\xd3\x11\xea\xb1\xd7\xc1\x22\x7b\x42\xef\x55\xe8\x75\x8d\x30\x17\xa3\xd2\x95\xb8\x7b\xf7\xe4\x41\x20\xdf\x53\x9b\x4b\x2c\x83\x33\x34\x9b\x5e\xe6\x26\x15\x69\x5c\x48\x26\x6f\x09\x1a\xb3\x75\x8d\xb1\xf9\x7c\xd8\xb5\x85\x1c\xf4\x88\xeb\xf8\xd9\xfa\xda\x0b\xca\x0c\x4c\x5e\xa6\x36\x2f\x7a\xf1\xa0\x98\xa6\x65\x7a\x7b\x44\x93\xab\xf7\x6f\x33\x06\xf6\x6e\x87\x1f\x4d\x40\xf4\xb3\x87\x9a\x7d\xd3\xe9\xc5\xcb\x71\x0a\x2e\x97\x9f\xa1\x24\x2b\xd3\x30\x9c\x79\x5c\x6a\x2f\x27\x5e\xe4\xef\x4a\x92\xd8\x25\x87\x6f\x22\x15\x03\xec\xab\xaf\x89\x56\xa3\xed\x80\x47\xaa\x8f\xc7\xfd\xbb\x83\xe7\xe4\x14\x02\xa7\x82\x75\xe0\x71\xc9\x35\x55\xe2\x85\x6d\xad\xbe\x23\x3b\x07\xa9\xf4\x4c\xab\xda\xf2\x6e\xf6\xb2\xba\x00\xc4\xab\xa9\x75\xce\x71\x4f\x88\x2e\x92\x57\x8b\xa9\x7e\x28\x30\x9f\x5b\x48\x6e\xa1\x2f\xf3\x36\x8d\x01\xa8\x9b\xb0\xfe\x8f\xd1\xe7\xc7\xb3\xb2\xaa\x3e\xa8\x92\xd7\x3d\xa1\x79\xf8\x29\x2b\x39\x28\x2d\x05\xb5\xd0\x98\xc1\xc7\xef\x8e\x08\xe7\x3e\x11\x35\xbe\xf8\x55\x6d\x86\xde\xa4\xf0\x09\x31\x2a\xa7\x0b\x28\x8f\xd9\x89\xfd\x07\x4c\xeb\x04\x52\x75\x84\x80\xcb\xf8\x1d\x3a\xf2\x20\xa7\x18\x72\x25\x38\xa4\xf9\x0a\x66\x61\xaf\x13\x08\xf8\x3e\x92\x65\x94\x6e\x3b\xbc\x19\x50\x3b\xc9\x3a\xcb\x3b\x49\x87\xe2\x6c\x14\xbc\xd7\xa6\xc8\xdc\xff\x7b\x11\x0f\x57\x92\x4f\xc3\x4d\x16\xe0\xbc\x38\x86\x70\x66\xa6\x94\xe9\x74\x14\xef\x20\x18\xeb\xeb\xf5\x40\x99\x52\xd6\xa8\x43\x20\xb6\x17\xde\xb3\x87\x9a\x2b\x41\xaf\xd4\x5b\xf3\x55\x7f\x02\x86\x0f\xee\xa4\x23\x18\x93\x8b\xac\xc9\x97\x8b\x5d\x0d\x6f\xd1\xf3\xe3\x51\xe0\x1a\x6d\x48\xd4\x54\x09\x5f\xf9\x7b\xf5\xaa\xa5\x3c\x4e\xa1\x52\x74\x3f\xf4\x70\xc4\x22\xbc\x5a\x67\x3d\xd7\xb6\x4b\xb1\x93\x96\xd1\x41\x0a\xa0\x55\x6e\xaa\xc2\xed\x69\x33\x18\xe4\xd9\x20\x8f\x8d\x57\x07\xa8\x25\xff\xb9\x13\x75\x31\x37\xe9\xf2\xe2\x30\x2f\xa7\x49\x7f\xe8\xf2\x98\x28\xf0\x35\xd4\x5c\x38\x5b\x4e\x50\x32\x76\x87\x44\x23\x8a\x32\x37\x71\xda\x20\xb3\xe6\x9b\xa3\xa0\x10\x7c\x73\xa2\x26\x96\x21\xc2\xc4\x9a\xc6\xf6\xf1\x6e\x37\xd9\x5b\x93\x7b\xb6\x6d\x12\xdb\x15\x18\xaa\x22\x44\xbe\x39\xf2\xca\x81\x5f\x7a\x02\x42\x4c\x58\x29\x0f\x55\x2b\x60\xeb\x92\xbf\xc0\x32\x37\x2b\xc6\xdb\xcb\xa8\xba\xb6\x2c\x66\xa7\xb4\x1d\xa8\x53\xdd\x64\x6d\x37\xf1\x99\xb6\x24\x7a\xc9\xef\x78\xe9\x3f\x6d\x11\x8c\xfd\xc8\x3a\x49\xe7\xec\x5c\x97\x6f\x47\xd9\x72\x6f\x44\x1c\x79\x7d\xb6\xf8\x3f\xbb\xd6\xbd\x50\xec\x9f\x7e\x7e\x3d\xa4\x7d\x3f\xbb\xde\xf8\x2f\x0e\x8e\x51\x91\x41\xaa\xde\xd3\x0a\xca\xa5\x85\xed\x56\x2b\x95\x18\x7a\x8c\x97\x34\x04\x29\x70\xa5\xd2\x63\xec\x00\x6c\x3b\xa5\xed\x3e\x5e\xfd\x0a\x64\xb5\xd3\x64\xc5\x7a\x4c\xc6\x57\x5d\x86\x54\xed\x74\x44\xbc\xcb\x3c\x5a\x79\x24\x22\x76\xd0\xbf\x96\xbc\x41\xff\x07\x4e\x50\xa7\x57\x12\x76\xc3\x25\x29\x6b\xb5\x95\x4b\xea\x1a\x9b\x48\x1b\x10\xf3\xcf\x49\x49\xb8\x75\x45\xe2\x13\x1a\xcc\x2a\x54\xe8\xf2\x02\xc6\x1c\xcf\x62\x19\xba\xc4\x9c\x6e\xea\xd5\x09\x00\xf2\x97\x9b\x59\x3b\x89\x97\x4c\x99\xe5\x6b\x72\xba\x82\x8c\xf3\xdf\x91\xbd\xca\x29\x72\xf1\x9b\xd4\x85\x3e\x70\x40\xb5\x87\x40\xef\x74\x7c\x22\xe2\x16\x8d\x9e\xf0\x6b\x3f\x4e\x4b\xbb\x94\x87\x0d\xe7\x6d\x02\xbd\xc2\xef\xeb\x13\x3d\xd8\x7d\xfb\x9a\xed\x61\x11\x57\x35\x4b\xdf\xaa\x24\x4d\x9d\x63\x3a\xf5\x95\xca\x9e\x35\xa5\xcd\x67\x02\xde\x79\x96\x0b\x46\x4c\x43\x79\xd1\x66\x3f\x5d\xdd\xc3\x61\xe7\xbc\x23\xa9\x69\xda\xb1\xa9\x7d\x50\x3e\x41\x07\x9e\xd9\x51\xe2\xd8\x28\x44\xea\x7f\x46\x74\x02\x9d\x19\xf3\xe2\x8d\xd5\x0f\x46\x0a\x7a\x85\x7d\xad\xef\x90\xae\xc3\xff\x44\x2e\xd9\x7f\x11\x11\x58\x75\xa5\x46\xfd\x2b\xb7\x2b\x36\x1d\x3a\x7f\x53\x3d\xa8\xe4\x59\xb9\x43\x6b\x22\x94\x2c\xcc\x4b\xf5\x22\x16\x99\x00\x89\x9f\x68\x05\xfb\x95\x3d\xeb\xa1\xbf\x73\x9c\xeb\x03\x93\xdb\x46\x88\xed\x67\x64\x15\xea\x6b\xe2\xc9\x0e\xd3\xc5\x3c\xb6\xa9\x58\xfd\xf9\x0d\x86\xc5\xa3\xaf\x89\xf7\xb6\x6a\xcd\xb2\x4d\x05\x92\xdc\xba\x2b\xf7\x7d\xeb\x6e\x9d\x54\x6a\x6e\xd2\x25\x97\x22\x62\x39\xfe\x31\x9e\xba\xbe\xa1\x01\xa3\x7e\xa7\x63\xf2\xdc\xa0\xe2\xa9\x15\xb8\x0f\x95\xed\x8a\x4d\xe3\x8e\xaa\xc7\x00\x46\x7f\x8d\x7c\x98\x5e\xf3\x41\x5f\x30\x7d\xbb\xa4\x2a\x82\xee\x37\xcb\x87\xba\x9b\x11\x6e\xc0\xd2\x30\xee\xda\xa4\x5a\xa9\xb4\x15\x2e\x11\xcd\xee\x12\xe9\x34\x95\x19\x9c\xe5\xbd\x3b\xf4\x42\xa8\x70\xaa\xdb\x87\x67\xb8\x35\x81\x7f\xcf\xcd\x35\x0b\x9b\x76\xa7\x48\xa8\x02\x4c\x01\x8f\x8c\x54\x4b\xcb\x91\x1b\x6a\x76\x6b\xdf\xa4\x43\xe3\xe2\x3b\x86\xc2\x8e\x47\xa4\x4b\x74\x9c\xf8\x1a\xdd\xb8\x18\x24\x66\x4d\x9d\x88\x10\x8b\x20\xcc\xa9\xaf\xeb\x6c\xd0\xf2\x2c\x49\x62\x4b\x73\xd8\x7a\xc3\x9c\x31\xca\x43\xa1\x24\x34\xf9\x03\xf2\xbf\x9c\x0e\x20\xd9\x8a\x7e\x84\x0d\xa3\x52\x21\x2c\x81\x46\xba\xde\x2a\x0f\xad\x92\x04\x7a\x16\x23\x82\xfd\xcf\x51\x28\xbb\xaf\x45\x64\xbb\xf1\x01\x51\x19\x24\x57\x48\xe3\x74\xe9\x81\xd0\xcf\xb8\x8a\x4c\xd1\xb5\x9d\xe5\x2f\x81\x65\xe1\x2a\x90\xf8\x37\x5a\x44\x27\xc6\x51\x8f\x0d\xf5\x6a\x14\x34\xd1\xdf\x8e\x68\x1a\x5c\xf3\x46\x1c\x1a\xd7\x3d\x05\xa4\x5c\x55\xcf\x2e\x2f\xd4\x51\xdd\x10\x77\xce\x07\xfa\xa1\x88\x98\xce\x04\x4b\x0e\x60\xdc\x2a\xf2\x20\xb8\x0a\x16\xc0\x43\xc2\x96\x70\x3d\x3e\x12\x40\xfc\xb3\x3a\x3f\xc8\x38\x35\x5d\xfb\xb5\xa1\x74\x9f\xc2\x58\x00\xcd\x34\x6e\x4c\xe4\x23\xbf\xf2\x7c\x73\xd1\x74\xca\x8c\xec\x0b\x51\x9e\xe8\x6b\x1a\xbf\x35\x69\x9a\x0d\x85\xb4\x17\x24\xd5\x59\x6a\xbd\x2e\x7d\x1b\x0c\x13\xe7\x7c\xe5\x10\x5d\x59\x15\x0e\xeb\xad\x91\x41\xcd\x06\xe2\xc5\x96\x2e\x4d\x35\xc8\x69\xb9\xe1\x2d\xd6\x36\x47\x34\x48\x38\xd3\xda\xed\xf3\x97\xa7\x8a\x3d\xc1\xff\xfc\x13\xee\x33\x7c\x2a\xfb\xd1\xa9\xd1\x84\xf1\xc2\x4f\x47\x41\xa5\xef\xb7\x9f\x68\x11\xa9\x67\x46\x0b\x1f\x9c\x46\xc7\x80\xe1\xfa\xd1\xff\xa7\x9e\xf2\x22\x0d\x81\x63\x75\x46\x36\x3a\x88\x5f\xd7\x24\x0d\x40\xea\x2f\x5c\x92\x83\x5b\x97\x04\x55\x41\x9e\xae\x22\x18\x72\x8b\xff\xfe\xdf\x68\x09\x3c\xe0\xb8\xa6\xdb\xf7\xf8\xf3\xb3\x87\xb4\x60\x06\x89\x19\xcb\xfa\xcc\x88\x9c\x84\x6f\x51\x57\x22\x8c\x25\xb5\xd9\xa3\xcf\x9b\xc0\x04\x43\x18\xe2\x65\x17\xa5\x49\x30\xdc\xe3\x1a\xed\xd4\x74\x9f\xb8\xa2\x17\x5f\x74\xf3\xaa\xd2\xb7\xc4\xc9\xfb\xdf\xe2\x82\x9c\x6c\x25\x2d\x11\x7f\x41\xc3\x74\x31\x7e\xd9\x69\xcb\x38\x5b\xa8\xc0\xa7\x90\xc1\x78\x47\x2a\x5c\x1b\xd8\x3c\x4e\x17\x13\x32\xe5\xc3\xa3\x7c\x2d\xa2\xe7\xfa\x1a\x65\xaf\x3d\x9b\xb0\x6e\x02\x8f\xcc\x9f\xa4\xf9\x80\xc4\xb4\x65\x5d\x21\xab\xff\x14\xa1\xd2\xa9\xfc\x53\x92\x7c\x91\x38\x89\xc3\xb4\x6b\xf3\x7e\x9c\xea\x42\xae\xe3\xab\x86\xec\xe2\x6b\xc3\xb8\x84\x3e\x32\xea\x6f\x88\x10\x03\x62\xc5\x59\xab\xaf\xe5\xa7\x63\x4d\xde\xdf\x0a\xa6\x7a\x17\x6a\xe4\x4a\xe6\x9b\x3d\xd3\x6f\x0f\xf3\x25\x9b\x03\xe8\x75\x52\xdc\x61\x8a\xe2\x5f\x10\xfd\x69\xd5\xa4\x4b\x72\x68\x2b\x33\x49\x12\x57\xc7\x52\x0a\x95\x9c\x38\x1e\x4e\x87\xf0\xaf\xc5\xba\xce\x71\x48\xf2\xea\x66\x3a\xaa\x9f\xa0\xff\xc8\xb7\xec\xfa\x36\x71\x4c\x3c\x07\x95\x36\xfc\x88\x3a\x66\x42\x9d\x4d\x52\x68\x4d\x24\xc9\x6e\x52\x1f\x3b\x89\xfd\xe7\x59\x08\xd5\xed\xf7\x10\x46\x78\x30\x6f\x8c\x82\x7a\xca\x4f\x93\x02\xce\x49\xec\x71\x2f\xea\xef\x5b\x4f\x57\xa3\x30\x9b\xbd\x07\x24\x29\xa7\x30\x2f\x8b\x0f\xa4\x9d\xad\xba\x46\x69\x7b\x98\x57\x3b\x2d\x8c\xaf\x1f\x21\x39\xf2\x9b\xe4\x4c\xcc\x64\x72\x29\xf7\xa7\x65\xa3\x01\x54\xbb\x44\x16\xad\xa2\x5b\xb2\xf5\x2a\xd3\x22\x7f\x8f\xb2\x51\xd3\x6e\xc7\x16\x20\x94\x9b\x2d\x20\x5e\xd2\xf9\x31\xd8\x88\x34\xbd\x8e\xd3\xf6\x5d\x1c\xa6\x4b\x71\x83\xd3\x7d\xf9\x04\x7d\x33\x01\x93\xef\x9f\x6b\x2e\x65\x1a\x4d\x50\x0c\xdd\x1c\x73\x63\x0f\xa4\x8c\x63\x75\x21\xbd\xec\x65\xc3\x25\xe8\xda\xb2\x9d\x82\xf3\x5c\xf0\xfe\x34\x71\xd9\xe9\xb9\xa9\x09\x27\xa0\x28\xb7\xc8\x49\x2b\x6e\x8f\xfd\x0e\x4c\x4c\x45\xd6\xd6\x7b\x40\x6e\x46\x81\x3d\xf2\xab\x64\x32\xba\xe9\xd9\x37\xa5\x49\x97\x12\xdb\x68\x7c\x79\xd6\x87\x68\x79\xcc\xae\x23\xb4\xfd\x47\x54\x01\x6c\x30\xb0\x26\x97\x53\xd2\x99\x44\x11\x1b\x75\x63\x0c\x6f\x29\x96\xd7\x66\x88\x9b\xb8\x15\x05\x76\xc3\x4d\x64\x01\xfa\x3f\x64\x9b\xa0\xde\x6b\xac\x87\x29\xec\xb3\x1c\x7e\x6c\x77\x4f\x20\xc0\x3c\x8e\xd2\x5d\x02\xc2\xf2\x93\xeb\xc1\xc4\x03\x87\x94\x9c\x2b\xdf\xfe\x79\x90\xc7\x7d\x8c\xaa\xbe\x50\x72\xbb\x8f\xfe\x36\x34\x42\x50\x53\x9c\x8e\xaa\x4a\xda\x19\xa4\x50\x24\x43\xe9\x8d\x6d\xf5\x1e\x1d\x78\xff\xd1\xa3\x98\x5e\xc2\x72\x16\x72\xd0\x33\xbe\x23\x2a\xbf\x57\xfa\x2c\x9d\x5f\x68\x79\x12\xc2\xf0\x73\xd2\xe5\x40\x24\x38\xed\xb7\x75\x3f\x4e\x96\x77\x86\x71\xd0\x5b\x72\xf1\x68\x6b\x3e\x2a\x83\x7b\xea\xae\x37\x0a\xfa\x6d\xff\x72\x34\x99\x25\xe1\x42\x26\xcd\x74\x9f\xdb\xfb\x4c\x73\x90\x18\xaf\xfe\x0d\xbe\x27\xcc\x63\xf4\x75\xab\x06\x35\x31\xed\x2c\x89\x8b\x9e\x3c\x63\x74\xd7\x21\x10\xaa\xaf\x59\xfb\xcf\xca\x7c\xe6\xfd\x92\x1c\xe2\x64\xb9\x49\x29\xea\x07\x12\xb5\x91\x34\x4e\x89\xdf\x04\xb2\xc9\x07\xe5\xc6\xe0\x88\x01\xf2\xe6\x8e\x1e\x8a\x38\x37\x91\x3a\x38\xd6\x09\xa9\xd1\x9a\x32\xcf\xd2\x82\x38\x29\x17\xb9\x69\xc0\xdd\x73\x21\xa5\x98\x04\x65\x93\x23\x32\x30\xab\x21\xda\x6e\x66\xe3\x0d\xd7\xec\xa2\xcd\x73\xed\x26\x28\x42\x11\x05\xe6\xfa\x25\xaa\x8c\x4c\x3b\x16\x89\x42\xe2\x2c\x6f\xb0\x24\x68\x9d\xbf\x44\x2f\x0e\xc2\x0e\x3a\x3e\x27\x9f\xee\x46\xe9\xb8\x75\xf6\xf2\x10\x8c\x15\xd4\x03\x47\x90\xc4\xe9\x9b\x89\x40\x3c\x7b\xa8\x59\xe6\xc3\xb2\x27\x35\x15\x20\xd8\x3b\xa3\x89\xb0\x88\x40\x32\xdd\xe2\xd3\x7d\x69\x26\xa0\x0f\x27\x89\x88\x39\xd5\x62\xfc\x08\x21\x16\x07\x2e\xb6\x2d\x2e\xf9\xb4\x8f\x29\x45\x36\xcc\x3b\x76\x7a\x6c\xf2\xbe\xe1\x4d\x7b\x77\xb6\xc2\x30\x84\x86\x65\x9c\x75\x57\xd9\xff\x3e\x5b\xb3\x39\x73\x19\x2f\x23\x77\xd1\x37\x23\xae\x06\x06\x59\x29\xfa\x82\xf8\xad\xa7\x44\x77\xc6\xb7\xab\xfc\xa4\xe2\x8f\x99\xe4\xf0\x5d\x1f\x6a\x4b\xd3\x59\x0e\x8d\x66\x4d\x73\xa3\x40\x9a\xf9\x0c\x26\x7c\x37\xeb\x94\xb9\xd4\xb7\x24\x6d\xf0\x09\xf9\xd7\x7c\x42\x6d\xfb\x97\xb2\xc2\x0e\x7a\x92\xf0\x91\xa5\x84\x97\x80\xc0\x2f\x73\x0c\x42\x8e\x9e\xf1\xa2\x4a\xc3\xa0\x7f\xf5\x26\xd3\x0b\x8f\x92\x83\xef\x95\xf1\xc2\xa0\x46\xb3\xad\x6d\x17\xb3\xdc\xf6\xc4\xb3\x6c\x61\xaf\x86\xaa\x46\x2b\xcc\x96\x35\xd6\xbd\xe1\xb2\x38\x5f\x2e\x38\x65\x74\x34\x74\xdd\x88\xcc\x36\xc7\xf4\xa7\x9e\xaa\x6e\x87\x1c\x53\x0a\x4a\x0b\x8a\xed\x00\xea\x3d\xa4\x99\x94\xe7\xb6\x53\xce\x84\x2f\xd7\xf2\xdc\x07\xcd\xc0\x0c\xff\x41\x14\xe0\x62\xd8\x52\xaa\xe2\xe5\x04\x02\xf0\xe5\x59\xf1\xc1\x91\x38\xe0\x6b\xc1\x50\x17\x12\x22\xb2\x64\xf2\xae\x4d\xd5\x2e\x54\x59\x1f\x63\x66\xda\x7b\x3c\x93\x7b\x60\xd2\x22\x76\x0e\x41\x75\xea\xb0\x8f\x7a\x0e\x22\x48\x42\x33\xac\x11\xce\x49\x92\x0a\x82\xe0\x6e\x3c\xd2\x0a\x3b\x18\xe3\x72\xc8\xe3\x8e\xd6\xb9\xe2\x97\xbd\x38\x05\xb1\x4f\xa9\x88\x34\x83\x72\xac\x46\x77\xf7\x99\x66\x61\x6d\x7f\x8a\x64\x9a\xb4\x8b\x0a\x6c\x1e\xee\x16\xce\x01\x7f\x7b\xee\xf0\xfc\xc2\xde\x66\x5c\x98\xb6\x4d\x12\x40\xeb\xda\xb1\x62\x59\xec\x13\xd1\x18\x99\x35\x87\x0c\xfd\x74\xe3\x8b\x5f\x0d\xa7\xae\x27\x97\xa1\x21\xee\xe0\x1c\x39\x19\xf4\x4d\x14\x26\x00\x57\xf3\x2a\xf3\x90\x9d\x57\xfd\x03\x67\xc5\x54\xfd\xa5\x63\x73\x92\x2d\x52\x5a\x7d\x9d\x8e\x35\x81\x01\x04\x0a\xb6\xbe\x26\xca\xe2\xda\x70\x29\x2b\x12\xb3\x12\x1b\x59\xc4\x3a\x4c\x14\x85\xfa\xf2\xc2\xa8\xf9\x19\x11\x3f\xb7\x5d\xc8\xa5\xc8\x5d\x70\x2a\x41\x04\x08\xbd\x39\xda\x1d\xc4\xf8\x8b\x7f\x57\x6a\x4f\x67\xba\xd8\xd8\xb7\xcf\x63\x20\x92\x74\x60\x31\xff\x91\xe8\x9f\x13\x9d\x61\x3e\x8c\x58\x7d\xf1\xab\xe3\xca\xba\xde\x5d\xbf\xfa\x95\x0e\x5e\xf5\x13\xd3\xdf\xfc\x5d\xb9\xc5\x38\x52\x76\x4b\xd5\x03\x4e\x8b\x1a\xfd\x48\xfc\xf8\x95\x27\xd6\x79\x96\x98\xa6\x2f\xb7\xa4\x86\x46\x5e\x7e\x07\x53\x15\xf8\xf2\x2b\x08\xe8\x08\x46\x1f\xa2\x41\x87\x0f\xd6\x76\x13\xd2\xb5\xa9\x75\x31\x95\xd2\xea\x01\xcd\x3e\xd4\x2e\x77\x23\xd2\xb9\xd4\xb4\xcc\xb5\xce\xaa\x58\xec\x21\xe5\xaa\x6e\x77\xd3\xc2\x81\xb5\xbb\x7b\x3d\x18\x82\x5e\x26\xe2\xd3\xfd\x63\x12\x84\xf7\xb5\x26\x57\x7d\x13\xb6\xc1\x6c\x36\x27\x7f\xef\xd2\xbd\x47\x3d\xe9\x73\x91\x54\x87\x51\x66\x1f\x23\x85\xd4\x63\xf5\x6e\x6a\x4b\xb9\x35\xa5\x27\xd1\xe0\x66\xdd\xa0\x69\xf4\x1b\x23\xc6\xd9\x87\x79\xbb\x3a\xb1\x9e\xf7\x37\xfc\x38\xcd\xc4\xf2\x90\x59\xb6\x62\xf3\x3c\xee\xba\x19\x61\x6c\xea\x53\xb4\xc1\x4f\xd5\x18\xb5\x36\x07\x82\x71\xc3\x0d\xd7\x9d\x88\x81\x9c\x78\x91\x9c\x71\xbf\x31\x1a\x53\x9a\x92\x79\xad\x19\x72\x7f\x3a\x17\x8d\xdb\x7f\x1c\x38\xe0\x3d\xdd\x65\x1d\x39\xf2\x13\xd1\x9b\x7e\x3f\x0a\x1c\xdc\xbe\xe9\xf4\xe3\x24\x71\xa6\x12\xde\xf4\xc8\xbb\x0d\x8e\x3b\xe0\xf7\x8d\xb2\x04\x5c\xf6\x50\xad\x48\x50\xfd\x54\xe9\xcc\xcf\xfe\x05\xcd\xdb\xeb\x34\xb1\x6d\x3a\x3d\x9b\xb6\xcd\xb0\x2f\x9c\x5f\x67\x14\x27\xdf\x8d\x0c\x6e\x93\x8a\xd7\x4d\x5c\xb5\x53\x1a\xaa\xf1\xe5\x5b\x8c\x57\xec\x62\x96\xe8\x80\x8f\xf7\xa0\x5a\x70\x53\x60\x50\x5c\x74\x78\x9b\x83\x5f\x3a\xb9\x29\x7a\xae\x55\x03\x88\xf6\x35\x76\x17\x7a\xed\x33\xb3\x48\x33\x18\x24\x66\x58\x58\x1c\x27\x88\x40\x48\x78\xf5\x75\xeb\x71\x9e\xdf\x1c\x86\xd1\x5e\x9c\x4c\x63\x8e\x0c\x17\x08\x05\xed\x64\xc3\x01\xe0\x44\xc4\xf8\x23\x51\xe8\x8c\x1f\xf1\x2c\xb7\x62\xd8\x2e\xe2\x6e\xfc\x8a\x3a\xd1\x01\xf3\xda\xd1\x0a\x54\xc3\x73\x38\xa3\x50\xa3\x5f\x1f\x6d\xe3\x7e\x3e\xdd\x3c\x70\xe0\xa0\xaa\x98\x23\xa4\xdc\x44\x80\x70\xad\x7d\x89\x74\xce\xf6\x57\xf6\x89\x42\xac\x24\xa6\xff\x31\x17\xe5\x37\x09\x14\x4d\x4d\x27\xce\x52\x93\x4c\x55\x1b\xc5\x9d\xb4\x34\x9d\x7d\x44\xc2\x87\x3b\xc2\x42\x7b\xb2\xda\xf6\xd5\xfe\x79\xb4\xda\x0c\x48\xe8\x36\x25\xcc\x22\x99\x78\x13\x4f\x06\xbb\xe1\x24\xae\x4a\xc7\x92\x51\x50\x78\xc5\xaa\x6a\xb3\x02\x31\xbf\x1a\x4d\xcc\x3c\xa0\xea\xbb\x3a\x0a\x74\xe3\xf3\xdc\xeb\x82\xa4\x2a\xb6\xd4\x40\x8e\x17\x2c\x9a\x37\x51\xc1\x38\x91\x5e\x1a\xc7\x3f\x07\x1e\x85\x03\x79\xfc\x7c\x78\xb2\xd6\x1f\x68\x79\x06\xee\x8b\x8a\x38\xea\x9b\x1a\x91\x81\xa6\x38\x1d\x57\xd9\x4c\xa0\x19\x44\x01\x6a\x99\x24\xd9\xcf\x1e\x6a\xb6\x6d\xcf\x39\xd9\x3b\x40\x4d\xee\x8c\x43\xd4\x26\x67\xcd\xe7\x9b\x83\x3c\x2b\xa5\x11\xdc\x20\xfd\x14\x94\x77\xfa\x9a\xfa\x58\xed\x3c\xee\xfa\x06\x15\x72\x1b\xc0\xb7\xee\x4d\xdd\xac\x7d\xdf\x2c\xc6\x66\xaa\x7a\xcc\x3c\x84\x0a\xe8\x0c\x2c\x0a\x27\x81\xe6\x57\x74\x3f\x2e\x7b\xcb\xe2\x00\x28\xe7\x2f\xd2\x1d\x55\xb2\xd4\x37\x63\xe3\x1e\x3d\xe3\x24\xc1\xc6\x88\x9b\x8e\xa3\x4d\xd6\x66\xbd\x38\xe9\xf6\xb2\x0c\x15\x1f\x80\xe9\x23\xd4\x8d\x3a\x42\x7d\xd5\x34\xcb\xb3\x6e\xd6\x6f\x90\xb3\x25\xb2\x1e\x57\x35\xd4\x70\x46\x8a\x78\x09\x8d\x2e\xdf\x50\xa9\xd6\x06\x22\xde\x99\x31\x4d\xb0\xdd\xbe\x38\x19\x58\x64\x97\x7e\xc0\x25\xb8\x5c\xe2\x89\xe3\x7c\xd9\xd3\x0a\xe0\xda\xee\xf5\x90\xbc\x1f\x1d\xf1\xbc\xab\xf8\x36\x2d\xec\x75\x6d\xdd\x51\x80\x39\x4f\xfb\x71\xc1\xb6\x49\x96\xc7\x9f\xf7\x55\x6c\x27\x7d\x53\x57\xca\x76\xcc\x70\xa9\x57\x22\xa2\x2a\x0f\x2a\x0a\xd5\xaf\x32\x13\x1d\xb3\xd1\x8f\x7d\x25\x26\x4e\xdd\x84\x10\x26\x36\x6e\x46\xa4\xa7\x75\x73\x14\xc4\xa9\x4c\xde\xe9\xc5\xd5\x4a\x1c\xe6\x3a\x54\x43\x3c\xc9\x39\xdf\x2c\x1c\x1b\xf2\x31\x4b\x12\x56\x40\x67\xba\x26\x2c\x05\xfc\xd6\xc3\xf2\x48\xf1\x25\xa7\x26\x92\xe1\x03\x07\x9a\x36\xb1\x9d\x32\x73\x73\x71\x75\x2e\x47\x7c\xc0\x0d\xe3\xa2\x41\x10\x0c\xc3\x9c\x37\xfd\x1e\x7f\x29\x2e\x4b\x9b\xaf\xa1\x98\x73\x83\xc1\xbe\x8f\xfa\xd7\x1f\x6b\x85\xfa\x62\x37\x90\x25\x8c\x41\x4f\xce\x98\x3f\x5d\x9d\x12\x71\x81\x79\x1c\x95\x6e\x40\x90\x71\x3a\x0e\x8f\x33\xbf\x26\x86\x37\x48\xe3\x2b\x5f\xd2\x50\x75\x9a\xe8\x1f\x93\x72\xba\x87\x9e\x6d\x96\xd9\xcb\x55\x30\xf2\x9d\x33\x54\x60\xfa\xba\x56\xdd\xe9\xa5\x61\x77\x09\x47\x96\x57\xa6\xa9\x7e\x81\x53\xa3\xa9\x21\xfc\x15\xc3\xc1\x20\x89\x6d\x3e\x1d\x80\x9f\xfb\x80\xc7\xa1\x27\x80\x47\x84\xbc\xf3\xc4\xd8\x80\x55\x0d\xea\x3c\xc8\xe3\x3e\xf8\x3d\x80\xcd\x6e\x13\x48\x73\x96\x91\xe3\x81\x76\x45\x91\x66\x6f\x10\x2f\x6b\xb5\x67\x73\x2b\xa3\x2a\xa8\x76\x76\x22\x89\xc5\x3f\x9c\x5e\x0f\x2c\x98\xcb\xd4\x6a\xbc\x20\x27\x03\x49\x69\x3d\xe3\x1d\xc3\xc3\x51\xfb\x6a\x14\x26\x95\xee\x45\x94\x03\xdc\x88\x58\xe5\xfe\x12\x8f\xe3\x9c\x06\xe7\x15\xa5\xfd\x5f\x91\x49\xd0\x45\x1c\x20\xb8\xc6\xf3\x13\xfd\xbf\x2a\xc8\x67\x49\x51\x06\x03\x4b\xdf\x6d\xf1\xfd\xc9\xd3\xec\xb4\xb2\x1a\x17\x25\xcb\xce\xc8\x8d\x43\xef\xf4\xf8\x18\xe5\xb5\xa6\xf3\x9e\x5a\xdb\x9d\x09\x53\xb5\xdf\x8b\x1a\x5f\x9e\x55\x91\x54\xf0\xf5\x9c\x24\x83\xdc\x49\x34\x84\xe1\xdb\xe1\x08\xfc\x34\xd6\x95\x67\x30\x94\x98\x62\xda\x5d\x14\xc6\xa3\xa0\x03\xe4\x28\x2b\x81\xdd\xd4\x8f\xd3\x61\xa9\x40\x93\xa7\x8d\xd0\xf2\x0e\xf3\x9b\xaa\xd8\x8f\xb4\xe5\x27\x94\xb8\x0f\x72\xdb\x8d\x3b\x5a\x44\xb8\xf6\x40\xf5\x19\xae\x6f\x10\x60\x9c\x22\x5e\x1a\xe6\xdd\x06\xb7\xd6\xf5\x2c\xd1\x37\x51\xb8\xb2\xaa\x80\x5f\x2a\x1e\x0c\x4e\xf4\x77\xa5\xfc\x72\xc2\x2e\x72\x31\xf8\xab\x4b\x28\xf7\x74\x5c\x0b\xa9\x92\x73\x6a\x6b\x78\xe7\x74\xe5\xd3\x39\xd7\xb6\xa0\x81\x70\x93\x6a\xed\xfb\x04\x05\x77\x83\x5f\xa1\x07\x37\xb0\x79\x31\x14\xc3\xc8\x19\x9a\x34\xf8\x2d\xea\xbf\xbe\x15\x79\xcc\xfc\xef\xab\xa9\x84\x73\x5d\xc2\xcf\x45\xd2\x72\xa9\x46\x36\xa8\x99\x64\x85\x75\xc2\xb7\x8e\x7e\x30\x15\xfc\x6f\x2f\x32\xaf\x2c\x2d\xe3\xb2\xaa\xe3\x43\x8b\x8f\xa5\x51\xce\x8d\x02\x21\x22\x1d\x96\x7a\xa7\x01\xf7\x5f\xc7\xe6\xd1\x37\x94\x76\x14\x36\x49\xdc\xe4\x3c\x6e\xef\x15\xf2\xdb\x3a\x27\xd1\xc3\x89\x9a\x92\xfa\xc2\x15\x32\x34\x3f\x3b\x0a\x76\xa4\x67\xc9\x46\x71\x39\x5b\xec\x64\x3d\xd2\x37\xbc\xcc\xc3\xed\x97\x27\x12\xb3\xa7\x9b\xdd\x3c\x96\xab\x61\xb3\x8b\x73\x6c\x76\xc1\x6b\x24\xb1\x2b\x36\x29\xa6\x83\xec\x39\x24\xe6\xf4\x35\x50\x41\x5f\x04\x54\xdf\xeb\x8a\x00\x52\x32\x8c\x73\x61\xd9\xec\x22\x08\xea\xdb\xa4\xc7\xa1\x6a\x9c\x1e\x9b\xaa\x6e\x21\x6e\xc6\x74\x2b\x6c\xd2\x13\x1a\x8b\xf0\xcd\x97\xc8\x11\xf2\xbe\xf5\xb0\xfc\xb3\x97\xd7\x96\x2c\xa0\x11\x2c\xe9\xa3\x58\xc6\xfa\x86\xaf\x2a\x29\xe3\xbe\xc9\xd1\x56\x03\x31\x47\x27\x23\xf5\x0d\xd9\xc9\xd8\x97\x25\x99\x97\x93\x3d\x00\x9a\x1f\x92\x58\xe8\x87\x75\xa3\xc2\x83\xdc\x76\x6c\xd7\x11\x1d\xc0\x29\xba\x81\x20\x8c\xa8\x8d\x99\x70\x14\xb6\x3f\x98\x58\xb6\x87\x9e\x6d\x9a\x4e\x27\xcb\xbb\x63\xc7\x68\x83\xd4\x90\xb6\x87\xbc\x43\xcf\x36\x07\x26\x46\xd7\x0b\x8f\xf2\x5d\xf9\x06\x7d\x5d\xab\x3c\xd3\x1b\x26\x55\x14\xd0\x75\xec\xb2\xae\xcf\x60\xd6\x0d\xb2\xc4\x16\x72\x20\x82\xfe\x0a\x11\x23\x3c\xb9\xfb\x70\x1e\xe9\x9b\x75\xcf\x2d\xfd\x01\x0d\x81\x96\x59\x1f\xb3\xf6\x0e\x08\x95\x27\xef\x90\xd0\x70\xd6\xf5\x32\xaf\xc5\x58\x27\xc1\xc9\x9e\xd4\x79\xbc\xb8\xa8\xd5\x3b\x96\x93\x92\x9c\xf5\xcd\x18\x73\x82\x38\x9d\xa7\x49\xb8\xa6\xb4\xa6\xbf\x8b\x66\xb8\xee\x03\x19\xd6\xd5\x2c\x54\x7b\x6a\x6d\xe6\x12\xdd\xf0\xf4\xae\xa0\xa0\x72\x49\x2f\x7b\x33\xd5\x22\xa1\x49\x56\x94\xd3\xf2\x59\x4e\x72\x83\x9c\xca\x8f\x61\x27\x61\xa5\xef\xc0\xc5\x60\x99\x1d\xaf\x4b\xd9\x7b\x6b\x03\x55\x5a\x45\x5e\x7b\x81\xa4\x47\xb7\x4d\x37\x2d\xdb\x27\xab\x6b\x46\xd0\x7b\x68\x7d\x4c\xf6\x24\x18\xf3\xfc\x68\x5c\x36\x65\x4c\xa9\x84\xf5\x48\x42\xf3\xe5\xa3\x09\xd5\x12\x92\x43\x09\x33\x2a\x1a\x22\x7c\x9b\x95\x04\x5c\xe4\x01\x2a\xee\x16\xfd\x5b\x8a\xae\x7c\xa6\xce\x0a\x79\x01\x4e\xc3\xff\x0a\x18\xda\xfd\xd4\x49\x5a\x33\xaa\xc6\xee\xe5\x69\x7d\xc1\x88\x4c\x17\xeb\xe4\x1a\x03\xcc\x8d\xf5\xb0\xf2\xfe\xfa\xec\xfe\x67\xf6\x1f\x3a\xf8\xef\xc9\x0f\x47\xe9\xfd\x70\x6b\xc7\xcf\x05\xc4\xa2\xfa\x6c\x24\x5e\xa7\x80\x40\x20\xa6\x6d\x61\xa5\x80\x0d\xf4\x51\x84\xe1\x5e\x75\x30\xc1\x29\x8b\x27\xf7\xe3\x28\x68\x52\x7c\x2c\x77\xc4\x4b\xe2\xfc\xca\xf3\xba\x1c\x74\x94\x5e\xb5\xe5\xc8\x78\xe8\x65\x41\xb0\x14\x3a\x15\xd4\x17\x01\xf0\xe3\x11\x09\xdc\xef\x5a\x6f\x7c\xf1\xab\xfa\xa9\x5b\x78\x4c\x08\x2c\x2e\xed\xc3\x97\x5c\x8b\xaa\xc4\x1c\x57\x78\x16\xd3\xc2\x2a\xdc\x34\x0a\x86\x07\x3f\x46\x58\xc3\x33\xff\x84\xe5\x42\x14\x50\x40\x58\xb8\x13\x85\xc1\xbb\xb7\xb1\xca\x70\x67\xaf\x4b\x0a\x8a\xed\xf3\x1e\xd0\x10\xa0\xd9\xb7\x25\x25\x41\x21\xf4\xd7\x50\x75\xe0\x81\xdd\xd7\x0a\x86\x92\x4c\x7a\x69\x67\xbe\xe1\x55\xe7\x3c\x31\xae\x34\x99\x3e\x12\x5a\xf2\xe2\x77\xfc\x8c\x96\xb7\xb7\xb1\x52\x91\xcd\x5d\x92\x1f\x8a\xc5\xad\xc3\x09\x9e\xdb\x5a\xdd\x7f\x30\x02\x7e\x14\xe8\xf4\x3f\x50\x10\x06\x69\xdd\x5f\xe9\xed\x74\x5e\x9c\x0d\x6f\x77\xba\x03\xf5\x84\x9f\x02\x0b\xa6\xd4\x3f\x20\xdf\xbb\x7f\x35\x22\x33\xdc\x2b\x5e\x5d\x22\xb7\xfd\x4c\xf8\xab\x0a\x19\xa3\x9d\x83\x5f\xab\xaf\x6b\x30\xda\x39\xa1\x8d\x59\x05\x46\x5d\xce\x51\x7d\x99\xcb\x45\x02\x08\x1c\x04\x41\x30\x43\x81\xcc\x79\xba\x15\xba\xfc\x3b\xd6\x43\x17\x7d\x73\xc4\xa5\xec\x1e\xf2\xbe\x1c\xd8\xb4\xb0\x33\xd5\x2a\x54\xad\x3a\x59\x9d\x6e\x14\x54\x2e\x5e\x6d\x50\x64\xcd\x6b\x82\x3e\x0a\xf8\xe3\xc9\xd1\x67\x22\x97\x69\xcf\x0e\x0b\x6d\x99\xe1\x19\xeb\x8e\xd5\x37\xfe\xec\xe9\xca\x18\x07\x8f\xcf\x04\x8d\xf4\x8b\xa3\x87\x98\x8c\xde\x94\x4b\xc2\x2f\xd9\xdd\x0a\xc3\xf2\xc3\xc7\x85\x69\x81\x3a\x67\xa6\x55\xfd\x20\xa0\xc9\x27\x65\xf5\x62\x19\xfd\xaf\xd2\xda\xc5\xed\x39\xa1\x11\xcb\xf1\x51\x65\x5d\x03\xba\xbe\x37\x22\xf3\x95\x8f\x24\xb7\x83\xe4\xec\x93\xeb\xd5\x5e\x77\x1d\x35\x84\x07\xa7\xb8\x29\x9b\x4f\xc5\x7d\x46\x61\x36\xec\x13\xf6\xb5\x7b\x00\x74\x28\x12\xf4\x70\xf4\x62\xf4\xb4\x11\xc9\x9f\x58\x6f\x3c\xef\x1a\x6f\x00\x09\xf1\x51\x3b\xd0\x40\x71\x66\x19\x12\xb7\xa0\x9a\xf0\x33\xad\xc6\x53\x4f\xe9\xff\xb8\x19\x51\xcf\xe5\xa1\x96\xac\x5b\xe4\xe5\xbb\x30\x94\x89\x85\x7f\x5b\x0c\xbb\x3c\xf0\x1a\xce\xd4\x47\x65\x1a\x0d\xc1\x51\x87\x18\x51\x88\xaa\x5c\xae\x1f\x8f\xde\xaf\x51\xe4\xd0\x9e\x09\xfb\xf3\x85\xbd\xcd\xc5\xdc\x0c\xbb\x62\x62\x2d\x88\x15\xc0\x32\xb0\x77\xc6\x7c\xaf\x5c\x93\x6f\x77\xe8\xc7\x67\x9f\x0b\x52\x32\x58\x75\xd8\xb8\x77\xf0\x8c\x00\x90\x7d\x17\x0d\x24\x2d\xcc\x47\x72\x67\xc6\x4c\x1a\x1d\xc9\x42\x7e\xc1\x98\x01\x32\xae\x05\xa3\x79\x6e\x50\x91\x64\x37\x4e\xe9\xc2\xc0\x49\x78\x9a\x5b\xf2\x11\xcd\xf9\x4d\xaf\x07\xfa\xd0\xc6\x75\x12\x5c\xbd\x20\x46\x8e\x8e\xbf\x49\x56\x8c\xdf\x95\x7b\x86\x32\x7a\x66\x5d\x96\x2e\x2e\x72\xa6\x45\x73\x25\xda\x33\x43\xa2\xfb\xce\x44\xea\x5a\x25\x9e\x55\x11\x94\x0f\x15\xc2\x71\xd3\xbf\x0d\xaf\xbf\x72\xde\xcf\x39\x77\x32\xf1\xc4\xee\x1a\xdf\x93\x74\x52\xf3\xac\x3b\x4f\xba\x0a\x4b\xb9\xe9\x53\x16\xfd\xe6\x88\xa6\x9e\x28\x6c\xf4\x4c\xbe\x62\xf2\xee\x14\x75\xb8\x5d\x09\xe0\x88\x06\xa1\x04\x78\x7b\xf4\xa0\xfe\x86\xe6\xf3\xf3\x9f\x23\x42\xce\xb1\x88\x4e\xc8\xc7\xb0\x97\x81\x5a\x7d\x48\x5c\x21\x55\xc7\x02\xa2\x3b\x05\xba\xae\xd3\x03\x91\x67\x8b\x70\x3d\x85\xb6\x25\x4e\xac\x47\xa5\x23\x88\x0f\x6e\x48\xa3\xd3\x59\x7a\x04\x62\xc0\x65\xac\x3f\x1c\xe8\x4f\x48\xc0\x20\x26\xa6\x63\x47\xbd\x23\xab\xc4\xe3\xa5\x0b\x7b\xbd\x14\x04\x0d\x6b\x9d\xc6\xce\xd0\xbf\x18\x91\x02\x90\xf2\x1f\x11\x23\xae\x8d\x42\x89\xf9\x0f\x27\xc0\x97\xfd\x73\x4d\xd3\xe9\xc5\x76\xc5\x1f\x1a\x3a\xc3\x4f\xc0\xe1\x11\xa2\xdc\x66\xdd\xee\xae\x6a\xa7\xfa\xa1\x2c\x1f\x1a\xfe\xf1\x28\x74\x26\x37\x10\x97\x5c\xe3\xbf\xe1\x35\xc4\xa7\x90\x88\x29\x2c\x16\x05\x15\xc3\x49\xec\xff\xc0\x81\x66\x31\xc8\xad\x51\xf2\x30\x5a\x5e\xc7\xa2\x40\xb2\x9c\xb4\x93\x98\x3d\xd4\x2c\xca\x6c\x30\xd0\xe0\xaf\x64\x9a\x88\xe7\xc0\x6b\x70\xd3\x38\xfd\xda\x30\xc6\x18\x73\x18\x46\x42\x9f\xd5\x51\xc1\x27\x81\xa4\xf9\xe6\x53\x56\x61\x74\xda\xff\xb3\xee\x4d\xcd\x31\x3b\xdb\x84\x7c\xd1\x54\x10\x79\xbd\x40\x3e\xd1\x7f\x28\x80\x88\x13\x46\x08\x85\x66\x6a\x87\x79\x96\x64\x4b\xb1\x36\x41\x6a\xc7\x62\x42\xe7\x34\xcf\xb2\x7e\xdf\x94\xb6\x81\x63\x02\x51\x17\x41\x47\x5f\x93\x33\x48\x55\x83\xe7\x40\x35\x10\x79\x59\x72\xe2\x72\xed\xed\x8d\x97\x52\xaf\xcc\xeb\xa7\xcc\x3d\xeb\xe8\x7a\x14\xa6\x59\x27\xef\xda\x81\x03\x55\xb9\x37\x20\xda\xcd\x31\x89\x4d\xfa\xba\x8e\x11\xd6\x96\x05\x10\x10\xb5\xdf\x1e\x85\x71\xbe\xdf\xa6\x1e\x48\x31\xd4\x69\x74\x09\xfb\x0e\xaa\x0c\x39\xfb\x61\xdc\x2f\x84\x89\x73\x63\xd6\x00\x82\xa3\x49\x57\xfb\xb9\x20\x1a\x2d\x4b\xce\x69\xcf\xd6\x91\xb3\xcb\x9e\xcd\xf2\xd8\x8b\xa6\x3a\xcb\x25\x4a\x8a\x4e\x4e\xfc\xfe\x7d\xfb\x9a\xb2\xcc\x10\xb2\x5c\x0f\x57\xfe\x44\xdf\x44\xe3\xaa\x34\xf6\x21\x7a\xca\x3a\x0a\x82\xe8\xb9\x89\xac\x9d\x64\xde\xfd\xa6\xc2\x69\xa3\x06\x02\x34\x66\xba\x9b\xdd\xf6\x8f\x8d\x48\xe2\x06\x4d\x02\x40\x54\x57\x51\x8b\x38\xc9\x78\x89\x8e\x4a\xc6\x93\x56\xa5\x23\xe6\x6d\xdf\x47\xc2\x3c\xb0\x26\x17\x78\x9c\xe0\xd0\x53\xf8\x3c\x64\x38\xd3\xad\xb0\x7b\x2f\xe2\x17\xe0\xc0\xd9\x20\x64\xb3\x6d\xd2\xe5\x38\x5d\xda\x15\x00\x92\x6b\x11\x35\x46\x2f\x20\xfc\x3a\x97\x63\xfa\xe5\x77\x46\x0d\x92\x09\x92\x1f\x3b\x66\x8c\xec\x0c\x2c\x1d\xbd\xa2\x13\xe7\x9d\x61\x5c\x8e\x51\xe1\x4e\xd1\xb9\x7b\xca\x4b\xf2\xf5\x4c\xac\x33\xfa\xa8\x40\x6e\xc9\x37\xe9\xeb\xcf\x70\xdd\x4e\x63\xdb\x9d\x26\x21\x82\x51\xa0\xfa\xa9\x24\xa3\xbe\x89\x08\x23\xab\xf3\x62\x7c\xa6\x59\xc4\x5d\xbb\x6a\xd6\xf4\x42\x59\xf5\xd8\x09\x76\x90\x23\xe0\xcb\xb6\x3f\x28\x1d\x49\x43\x47\x33\xd8\xe2\xea\x22\xcd\xd0\xc1\x70\x41\xbc\x34\x9d\x0e\x54\x75\x95\x58\x3b\x6f\x4a\x06\xea\xb3\xf0\xe7\xdc\xf0\xf9\x87\x52\x7e\x8d\x41\x69\xfa\x3f\x26\xe0\x2a\xf1\x5c\xeb\x67\xb9\xce\x47\xf9\xf2\x3f\xd4\x85\x93\x41\x62\x61\x6f\xb3\x9f\xe5\x76\x6a\x8a\x6d\xd6\x09\x49\x79\x0d\xeb\xc6\x89\x62\x8e\xa9\x93\xa4\x1d\xab\x33\xb0\x2e\x0c\x87\xfa\xf7\x34\x6e\x02\x3a\xf4\x77\xea\x62\x4d\x6f\x98\xe7\xca\x85\xf5\xa7\x9b\x77\x1d\xbf\xc8\x6e\x3a\xc3\x74\x86\x26\x52\xce\x47\xa4\x75\xa6\xdb\x0f\x0b\xf7\x0a\x85\xd3\x4f\xf0\x23\xc0\x26\x98\x74\xcc\xd8\xb7\xaf\xd9\xb5\xa2\x8f\xe1\x89\xef\x37\x22\x52\x03\x7e\x7f\x34\xa6\xc3\x4e\xf8\x9b\x49\x6d\x22\xb1\x4b\xb5\x38\x23\x12\x69\x38\x3e\x0a\xa4\xbf\x97\xa8\x23\xae\x6c\x52\xdc\x92\x40\x2d\xf5\xd2\x50\x59\xde\x37\xca\x24\x74\xd3\xb7\x63\xe3\xc9\x55\x6e\xa5\xff\xf6\x0b\xbb\x1b\x5e\x14\xf4\x65\x59\x32\xce\xcb\x93\x2c\xe5\xce\xb2\xcb\xd6\x25\x92\x62\xd0\xc1\x2e\x9d\x58\x95\x3a\xc9\x89\xee\x93\x75\xc5\x45\x9a\x55\xf8\x94\x14\x1e\xce\xe9\x55\x39\xd9\xd2\x87\xc3\xcc\xa7\x2d\x0a\x69\xf3\x80\xe7\x72\x8f\x74\xb8\x2f\x8f\x68\x2d\xe3\x66\xe1\x52\x3e\x66\x5e\xcf\xa9\x09\x62\xc1\x53\x4f\x51\x75\xd1\x08\xd9\xd1\x19\xa2\x7a\x9e\x81\x13\xf0\xb6\xb3\xe2\x95\x46\x98\xd9\x39\xc1\x93\x94\x27\x6a\xb6\xfb\x7c\x73\x30\xcc\x3b\x3d\x53\x00\x57\x66\x07\x69\x37\x33\xfd\x33\xe3\x64\x97\x85\xbd\x07\x5d\xf1\x8b\x47\x86\xc2\xe9\x1a\xcd\x64\x5f\xab\x75\x68\x49\xe2\x65\xbb\xb3\xba\x9b\x38\xb0\x77\x08\x7c\xa2\xb3\xe9\x6c\x49\x85\x47\x41\x16\x85\xae\x7c\xbc\x40\x62\x27\x17\xeb\x0c\xaa\x8a\x52\x68\x09\xcf\x39\x41\x4b\xdd\x84\xfa\x66\x22\x5e\xcc\x1e\x6a\xf6\xe3\x90\x5f\x20\xf9\x06\x89\x15\x15\x36\x0e\x10\x70\xee\x26\x45\x73\xe5\x37\xb9\x25\xae\xaa\x7c\xf8\x42\x27\xd1\xf7\x38\xf3\xeb\xa1\xae\x34\xdd\x08\x1a\xf9\xd1\x98\x60\x7e\x75\xd9\x08\x17\x27\xe4\x11\xeb\xeb\xc8\x51\x6e\xd3\xb8\x63\x72\xb3\x34\x34\x53\x3c\xbe\x3d\x0a\x67\xe9\x07\x78\xd6\x4e\xba\x2a\x48\xd6\x74\x6d\xdf\xa4\xdd\x87\x02\x27\x4e\xc7\xd0\xbc\x02\x41\xe8\xb7\x1e\x95\x68\x8b\x70\x86\xb9\x5d\x2c\x1d\xe4\xe7\x28\x04\xde\xc5\x8f\x04\x92\x72\x82\x55\x50\x75\x4c\x1d\xa7\xef\xcd\x51\x80\x52\x3e\x26\xd2\xc7\x1b\xd8\x83\x2e\x55\x0c\xb9\x64\x9c\xbe\x34\xac\x12\x96\xa9\x90\xa6\xbf\x87\x0b\xc5\xad\x80\xe0\x6d\xf0\x55\xf0\xc9\x58\xd6\xeb\xdb\x7c\x86\x32\xae\xe3\xa3\x6d\x4e\x8c\xf3\x21\x76\x06\x5d\xde\xf3\x63\x0a\xe4\x9b\x13\x3a\xa0\x0b\x7b\x9b\xdd\xb8\x30\x83\x41\x16\xa7\xa5\xd3\xba\x46\x59\x0d\x05\x39\x87\x46\x11\x9f\x78\xc3\x73\x19\x92\xa7\xb2\xdc\x9a\xa4\xc1\xec\x4c\xf5\x07\xd2\x37\x13\x53\x53\xfb\x66\x9b\xc3\x45\x38\xdc\x2b\x38\x3b\x22\x3b\x83\x8f\x88\x5b\x9c\x67\x65\xaf\x10\x22\x4e\x83\x90\xe6\x53\x1a\x9f\xf4\x1d\x89\x16\x15\x65\x9e\xa5\x4b\x0f\xc9\x85\xba\xee\xb3\x04\x78\xf5\xbe\x47\x52\x80\x48\xaa\xdc\x6c\xa0\x31\xdf\xe7\x39\x6a\xda\x19\x7a\xaa\xba\xf6\x6e\xf5\xa4\x81\x3e\xfc\xff\x7c\xbd\x79\x8c\x24\x67\x76\x1f\xd8\x9d\x59\xd5\xdd\x64\xb3\x49\x36\x39\x1c\x8d\xa4\x59\x3b\x05\xcb\xa6\x05\xd0\x63\xec\x5a\x0b\xc3\x03\xec\x46\xba\xab\x38\x9c\x2e\x68\x8a\xb5\xd5\x3d\xe4\xec\xac\x81\xe5\x97\x99\x5f\x56\xc6\x54\x64\x44\x4e\x1c\x55\x5d\x84\xff\x30\x16\x82\x20\x18\x5a\xff\x61\xec\x01\x2f\xb0\xbb\x5a\x7b\x0f\x59\x2b\xad\x4e\x5b\xb2\x64\x4d\xa6\x34\x87\x34\x1a\xcd\x0c\x87\xe4\xf0\x3e\xfa\xbe\xef\xfb\xac\x5e\xc4\xfb\xbd\xf7\x7d\x2f\x2b\x82\x02\x04\x4d\x04\xbb\x32\x33\xe2\x3b\xde\xf7\x8e\xdf\xfb\xfd\xee\x21\x31\x83\xb4\xc2\x9b\x1a\x33\xcb\x04\x5d\xb2\x6c\xca\x19\xe2\xdf\xa8\xf3\x5c\x07\x49\x84\x9d\xec\x30\x65\x5a\x36\xf8\x93\xe4\x45\xed\xd7\x49\xb1\xac\xe1\xa1\x08\x0c\x75\xe4\x1b\x95\x04\x88\xed\x3a\x9a\x79\x5d\x2c\xef\x20\x47\x6f\xeb\xd8\xea\xec\x58\x55\x1c\xae\x29\x92\x9e\xed\x13\xf2\x0c\x15\xb2\x41\x6a\x34\x4d\x0a\xc6\x85\x06\x52\x43\xaa\x55\x32\xe5\x77\xc6\x8a\x73\xfd\x1b\x81\x8a\x53\x7f\x07\x63\xcb\xfd\x18\x1a\x42\x8c\x8a\x36\x8e\x9f\x63\x18\x5b\xc4\xc2\x77\x15\x4a\xa3\x9f\x86\x86\xf9\xa7\x15\x93\xc4\x57\x9d\xe4\xbd\x2f\x40\xc6\x26\x4d\x93\xf5\x68\x63\x46\xe5\x21\xd5\x7c\x5f\x52\x0c\x91\x33\x6d\xd5\x81\x32\x33\x79\x46\xc1\xd9\xac\x59\xcd\x07\x29\x35\xec\x29\x68\xd3\x5d\x9d\x78\xb8\x1b\x6c\xc5\x92\x53\x4c\x93\x9a\x38\x33\x79\x64\x62\x6a\xbb\x72\x64\x35\xd7\x54\x14\x71\xad\xa6\x76\x35\xdf\x7a\x75\x60\x92\x86\xee\xb7\x9e\xc2\x97\xd5\xd5\x18\xbb\x66\x14\xe6\x2c\x5f\x89\x63\x66\x3b\x52\xf9\x7c\xd3\xf6\x0b\x23\xcb\x4d\xba\x53\x71\xc9\x5d\x53\x9d\xc6\xf0\xd7\xa5\x65\x55\x91\xb9\x9d\x03\x4a\x12\xc6\xe9\x75\xda\x0f\xf0\xc9\xde\x23\x47\x9c\xff\xbb\xd2\x16\xee\x26\x71\x66\xe3\x7c\x46\xd1\x1d\xff\x40\x71\xa0\xbc\x1e\x34\x34\xef\xa8\x27\x48\xfe\x81\x02\x84\x0c\x6c\xdc\x23\x4e\x4c\xa4\xa8\x04\x39\x5a\x7e\x0b\x6b\x1c\x50\x59\x5f\x0a\x87\x4f\xbb\xae\xda\x3c\x4d\x46\x49\x14\xe6\x26\x56\x80\xa0\x9d\x4a\x89\xaf\x39\x29\x5d\x23\xa1\xc5\x56\x38\xa5\x1f\xbb\xe3\xc8\x31\x3d\xcc\x78\x78\xf6\x31\x4d\x12\xcc\xf9\x56\x64\x52\x6f\xc3\xc2\xc0\x3d\xfb\xd7\x95\xe4\x0b\xf5\xdf\x85\xaf\xbe\xca\x9e\x3b\xbc\x6d\x80\xfd\xf8\x3a\x78\xca\xb5\x78\x97\xef\x9c\x1b\x67\x91\xb1\x4f\xe0\x7e\x60\x8d\xdf\xc4\x2f\x23\xae\xf8\x8f\x1a\x49\x6b\x73\x96\x19\xf5\x2a\x68\x67\x03\x3f\x04\x67\x55\xe9\x21\x8c\x49\xc3\x4f\x52\x8a\xb0\xd9\xaf\xab\x82\xeb\xeb\x95\x48\x6c\x6e\xae\xfc\x5f\xcf\x50\x87\xea\x17\xb3\x9d\xf3\x4d\xf0\x48\xd8\x1a\xa5\xb6\xff\x9f\xb6\xbe\xf0\x19\xda\xd9\xd2\x69\x5a\xce\x14\xba\x34\xf7\xb6\x9b\x07\xfe\xeb\x2f\xb9\x03\x5e\x29\x6c\x5c\x25\x87\x17\x27\xf2\x43\xe4\xbc\x60\xbd\x36\xc7\x53\xfa\x72\xe5\x92\x93\xb6\xc5\xc6\x97\xe6\x7d\x62\xb8\xb4\x64\xc8\xff\xf1\x18\x21\x31\xf4\x1e\xbd\x16\xbe\x8a\x38\x35\x58\x20\xec\x4f\x3e\x35\xf1\x15\x56\x90\x4e\xd1\xd7\xfe\xca\xde\x89\xef\x04\xbd\x4b\x94\x6d\x92\x15\xc6\x09\x04\xe6\xc3\xcf\xb4\x15\xf3\xe2\x95\x40\xc9\x28\x6e\x8e\xb7\xff\xac\x13\x9a\x2a\x97\x1a\x66\xf9\x0e\x6d\x1c\x21\xb4\xa6\xb5\x44\x88\x9a\xe7\xfe\x5e\xdb\xa7\x50\xd6\x08\x56\x5f\xd8\x35\x74\xe1\x70\x9b\x37\xcd\xa2\xb4\x7c\x7b\x26\x9a\xa1\x49\x57\x77\xd1\x9b\x4a\x1c\xab\x4e\xba\x3f\xc1\x80\x4c\x29\x1c\x3b\x01\x1f\xb7\xe7\xdf\x86\x6d\x16\x7f\x14\x2f\xa8\xd9\x81\xa5\x51\xab\x2e\xa3\xd8\x35\xd2\x1a\x09\x27\x94\xbb\xd8\xf8\xc6\xe7\x06\x52\xad\xa6\x87\xb1\x7c\x6b\xac\x1a\xde\xaa\xa8\xe0\x85\x85\xd6\xa0\x28\xc3\x26\x0f\xaf\x38\x4e\x46\x83\xaf\x95\x8a\xd8\x28\x4d\x86\x61\x4c\x3d\x20\x1e\xb2\xf4\xb1\x62\x82\xfb\x58\xed\x11\x16\xc8\x05\xc6\xc2\xe9\x32\x97\xe3\x84\xd1\xbd\x8a\x71\xe2\x7f\xc1\xe9\xc4\xff\x52\xd9\x10\x14\x90\xd3\x36\xc2\x8e\x83\x95\xc0\xb9\xc2\xd7\x53\x18\xe4\x43\x26\xdb\x89\x44\x22\x27\xd5\xd9\xa1\xd1\xc8\x13\x21\xe4\x53\xb1\x24\x58\xbd\x54\xab\xe4\x01\xcd\x0f\xb6\xe4\x80\x18\x55\xd5\x8b\x81\xa5\x36\x82\xe5\x7d\x53\x2e\x26\x5f\x8f\x7f\x62\x2b\x97\xe0\xd2\x01\xfa\x7f\xb4\xee\x84\x9d\x64\x6a\x71\x78\xa7\x74\x94\xc4\xa1\xed\x29\x47\xe4\x7d\xda\x95\x7c\x5d\xc7\x12\x6b\xba\x69\x38\x4c\xe2\x8d\x4f\xa4\x6d\xab\x21\xb6\x0f\x53\x03\x8a\x17\x00\xcf\x7e\x05\xef\x2b\x72\x6c\x18\x3c\xa4\x3b\xb7\xb5\x95\xfa\xd1\xbb\x63\x0f\xf9\x3b\xad\xb4\x3d\xe3\x24\xb7\x9d\x24\x59\xa5\x47\x90\x56\xa1\x29\xfa\x0a\x9f\x08\x58\x29\xc2\x88\xd3\x26\x08\x90\x20\x1a\xef\x06\xde\x4b\x20\x9c\x53\x7c\xff\x51\x18\x93\x5c\x88\x54\xfe\xce\xe0\xdc\x14\x52\x6b\xdf\x05\x7d\x9a\xb0\x19\xc2\x2f\x89\x37\x41\xb3\xfd\x4d\xb8\x47\x8e\x97\x64\x59\x98\x8c\xde\xa4\x07\x80\x79\x6b\xe0\x74\xe7\x4f\xe0\x69\x04\x6a\xaa\xea\xea\xc0\x7c\x22\xba\x7f\x6d\xfc\x98\xcf\x48\x3c\x9b\x7f\x46\x25\x04\x1e\x43\xd9\x05\x49\xfd\x27\xda\x1e\x96\xb7\x6b\xa2\xd2\x8d\x42\xed\x27\x6d\x35\xba\xfd\x18\xaf\x29\x0d\x51\x0d\xc7\x10\x74\x1e\x1b\x08\x7e\x34\xe7\x52\x10\x49\x7c\x96\xea\xa3\x1c\x95\x05\x8d\x83\x2f\x7a\x34\x50\xf9\x66\x02\x54\x68\x2c\xef\xdb\x6c\xea\xfa\xe7\xff\x35\xf6\xe1\xd3\xdf\xa2\x82\x0f\xcc\x37\x8a\x77\x38\x80\x77\x22\x37\x8b\xfc\xc8\x71\x0a\xf9\x1c\x11\xf8\x92\x8b\xff\x4e\x22\x07\x84\x04\xc5\xbf\x21\x06\x4c\x91\x34\x2b\xe7\x09\x3f\xb1\x6d\x52\xa3\x46\x3c\x4a\x6d\xe6\xf4\x3a\xe1\x00\x9c\x0c\x94\x37\x70\x12\x0d\x82\x42\xd0\xa9\x50\x80\x13\x94\xa5\x84\xb9\x12\xc6\x80\x29\x9f\x69\xd8\x60\x0a\x7e\x5d\xf5\x3f\xa0\x49\x0e\x51\xef\x15\x5a\x41\x4c\xeb\x4a\x09\x64\x56\x40\xa4\x77\x14\xc2\x38\x7a\x12\x60\xcf\xef\x61\x34\xa5\x08\x45\x15\x2e\x81\x5c\xd0\xfc\x49\x81\x76\xfb\xcf\x6e\x4e\x02\xaa\xbf\x3a\xb1\x90\xe7\xbf\x52\xfe\x27\x8f\x97\x7d\xa2\xad\xd4\x34\x6f\x22\xbe\xc2\xa3\xbf\x46\x99\x26\xe6\xc1\xc7\x09\xe4\x4a\xba\xe5\x78\x33\x28\x37\xf0\xb0\x86\x3b\x74\xa8\x3a\x36\xac\x72\x8d\x00\x16\xc2\xe0\x1d\x07\xf8\xfd\xf2\x17\xd9\xa6\x34\x50\x6b\x95\x7a\x7c\xe9\x4e\x48\x56\x1d\xcb\x92\x25\x6e\x69\xc5\x03\x9d\xf1\xef\x51\x36\xc6\x9a\xf8\x5d\x97\x7e\x36\x43\x33\xe0\xe4\x2f\x86\x82\x0f\x2d\xbe\x19\x6f\x69\x6e\x5e\x58\x68\x2d\xef\x3b\x00\x8f\x19\x19\x85\x6b\x8a\x4c\xe5\x2c\x76\x2b\x22\x8a\x6b\xb4\x06\xb9\xe7\x42\x55\x01\xa0\x4b\xe5\x70\x68\xde\x95\xf9\x56\x5d\x96\x27\x4a\xd6\x6d\x0a\xe8\x9a\xe3\xbf\x79\x69\x9f\x74\x66\x62\x46\x10\x55\xfd\xd6\x58\x35\x8c\xde\xab\x1c\xd0\xcb\xfb\x96\x5b\xd9\xc8\x32\xe7\x8e\xe3\xb8\x70\xe5\xbb\xd3\x5b\xfb\xbc\xe6\xe6\x5b\x8b\x8b\x8f\x35\xe6\xe6\x36\x21\x41\x38\xb5\xa0\x18\x41\x85\x9f\x84\x41\x3b\x81\xdd\x3d\xc5\xab\xc1\x79\x02\x9a\x6b\xc9\x7c\xab\xda\xef\xbb\x81\xa7\x8e\x7e\x5f\x51\x91\x37\x10\x80\xf1\x3f\x68\x72\xc2\xfb\x2e\x0f\x69\x87\x9d\xa4\xc7\xdd\x13\xf8\x99\x46\xdb\xab\x3e\x5d\x52\x68\x39\x24\x25\x91\xb4\x7d\x4d\x95\x5b\xd3\x38\x24\x7f\xc2\x41\xaa\x16\x9d\x88\xf4\x0f\x2a\x67\xd6\xd2\x8b\x07\x5a\x59\x68\x87\xd6\xf5\xa7\xc0\x24\xb0\x54\x08\xdf\x38\xb4\x50\x11\x87\xfd\x24\x1d\x86\x39\x52\xe6\xc8\x3c\x5c\xa1\x71\x10\x8b\xe9\x8d\xf1\x64\x5c\x95\xb1\x5d\x2a\x7d\xf2\x3c\x2d\x20\xad\xa7\xb1\xb8\xbf\xac\xf3\xbd\xbf\xec\x7a\x67\xec\xa1\x6e\x91\x59\x92\xec\xe1\x1e\x1b\x85\x08\xbf\x36\xf6\x80\x1d\x24\xce\x45\x52\x6f\x6b\x92\xf4\x39\xfa\xdd\x30\x2f\x5c\x3e\x5b\x44\x5a\x68\xde\x45\xbe\x45\xe9\x0f\x24\xfd\xbe\xb5\xb3\x5a\x65\x87\x16\x3b\x9c\x2d\x68\x6e\xc0\x77\xbe\x1d\xa8\x48\x05\x9d\xb0\x0c\x28\xaf\x6b\x20\xf2\x42\xc3\x12\xa7\x7d\x2f\xd0\x89\x61\xfa\x2e\x38\xd8\x47\x5d\x9c\xe6\x82\xc4\xc6\x54\x29\x5c\x11\x7d\x69\x3d\x9e\x41\x92\x91\xb2\xbe\x70\x0c\x60\x60\x85\x70\xa0\x66\x33\xc6\xd6\x8a\x0a\xac\x23\xc3\x2d\xdf\x5b\x29\xe1\x4f\xc3\xeb\x6d\x6f\x46\x41\x07\xe0\xe1\x38\xbf\x70\x59\xf1\x81\x7a\x6e\xd0\x5a\x71\xab\x70\x18\xc2\xb1\x96\x9c\x8d\x4f\x4e\xbd\xad\x7a\x1f\x4c\xbc\x62\xa3\x64\x46\x75\x84\xb0\xdc\x86\x74\xef\x97\xbf\x29\x65\x70\x55\xb7\x3a\xa7\xdc\xa2\x5e\x32\xb4\x59\x1e\x76\x77\x2b\xac\x1c\x38\x91\x71\xa0\xff\x91\x0a\x55\x7e\xe3\x03\x9c\x1b\xc2\xa1\xe6\xf3\x45\x27\x60\xc6\xe1\x2a\xfe\x90\xe6\x1a\xc9\x9b\x8f\x02\x7f\xb0\x9d\x1d\x2b\x1a\x20\x6e\x3a\x45\xbe\x87\xe5\xe3\x84\x72\x51\x35\x14\x26\x2c\x01\x51\x3e\x03\xba\x84\xa4\x7c\xc2\x77\x8a\xdf\xbc\x17\xf6\xfb\x36\xb5\x71\xce\x59\x1f\x69\xab\xa3\x5f\xe5\x1b\x1a\x7a\x85\xa8\xd7\x6d\xb5\xae\xdd\xd8\xe6\xb1\xc1\xb4\xb3\x23\x03\xb3\x2d\x5e\x8d\xa7\xb4\x48\x6d\x5e\xa4\x71\xd6\x2c\xdf\x11\x1a\x09\xdf\x1f\x2b\x21\x3c\xf8\x7c\x58\x60\x57\xeb\xd4\xb5\x57\xd2\x70\x24\x58\x09\x39\x8c\xe9\x77\xf9\xc6\x35\x72\x75\xcd\x70\x64\x80\x17\xd0\x1d\xec\xb7\x14\x4e\x44\x77\xd5\x0e\xcd\x4a\x6c\xf3\xb0\xdb\x50\x65\xea\x29\x3e\xe1\x3a\xb1\xa1\xd6\x20\xcc\xbb\x03\x3c\x8c\x74\x7e\xf8\x9d\x7d\x49\x21\xba\xd7\x4c\x8a\x34\x24\x96\xe4\xb9\xc0\xf7\x27\x69\x42\xe4\x43\x61\x77\x46\xd1\xc4\x02\xd1\xcc\x12\x81\x81\xc7\xb1\x3c\x08\x74\xa7\x59\x4d\xde\x21\xb5\x71\x12\x3a\x25\x31\x0c\x27\xc3\x03\xf8\xa6\x6e\x13\x45\xe1\xaa\x0c\x2d\x22\xd2\x3f\xa4\x5d\xc4\xd7\x15\x4a\x17\xc9\xb2\xf6\x4d\x3e\xb0\x69\x53\x87\xfd\x5e\xe6\xe4\x97\x34\x57\xcd\xa5\xc0\xef\xa2\xa4\xc8\xfb\x51\xb2\x0e\x8a\x1e\x0c\xd8\x15\x65\x16\xab\xf8\x8f\xfd\x8b\xa4\xf8\xed\xe6\x13\xa9\x77\xd0\xff\xf0\xb5\x32\x2f\xa9\xcd\x4d\x18\x91\xce\x77\xe9\x41\x62\xe9\x1f\x85\x47\xc7\x37\x34\xb8\xf0\xfb\xee\x68\x3e\xa8\x3b\xea\x29\xbb\x49\xb2\x5a\x86\x40\x4d\xb8\x9e\xd8\x6e\xdf\x82\x9b\x26\xf8\xd7\x86\x53\x14\xad\x72\x69\x13\x30\xc1\x44\xa1\x8d\x75\x2a\x0b\xc0\x35\xbe\x0e\x3c\xb5\xf7\x5a\x68\xd7\xe5\x50\x71\xf2\x4f\x0e\x1e\x7f\xae\x86\xa7\xef\x40\xab\x9b\x44\x91\xaa\xad\x22\xaa\xb9\x1a\xa8\x10\xe7\x6a\x45\x63\xf0\xf3\x44\xa7\xd0\xf4\xd9\x15\xd0\xa5\x63\xc3\x3f\x54\x08\xf7\x2a\xcd\xca\x73\xad\x51\xd2\x5d\xb5\x28\x41\xba\x63\x74\x61\xc1\xb5\xad\x56\xf1\x08\x2f\xb4\x36\x4c\xec\xda\x63\x91\x0d\xbc\x16\x28\x98\xfa\x35\xe7\xb2\x74\x6d\x9c\x15\xbc\x04\x5d\x9c\xbc\xe8\xe3\x64\x0f\x1e\x0a\x87\xae\xb1\xc4\xc9\xdd\x2e\xfb\x83\x5d\x71\x79\x17\xa9\x8d\xd8\x0b\x42\x00\x7a\x05\x21\x9f\x3e\x71\xf8\x1f\x60\xf7\xe4\xf8\x99\x96\x61\x01\xa4\x53\x28\x09\x1b\x8e\x90\x8d\x4b\xaa\x92\x8e\xf5\x16\x65\xcd\xe6\x36\x35\xa5\xa9\x73\x5d\xaa\x28\xd6\x4e\x61\x82\xe0\xb2\x5e\xaf\x18\x97\x57\x5e\x69\x45\xe1\x5a\xd8\x6b\x2a\xd4\x05\x27\xff\x1c\xde\xd6\x31\x6c\xdf\xa8\x54\x72\x51\xac\xea\x46\xd0\x50\x2f\xdf\x0a\xc7\x11\x77\xf4\xa9\xb0\x5c\x52\x66\x7b\xda\x7e\xa5\x6d\x57\x6d\x05\xbd\xd4\x96\xa7\x74\x73\x4a\x72\x6b\xbf\x80\x0e\x2f\x50\x24\x05\x4f\x6b\x33\x98\xa6\xb0\x88\x1e\xf1\x5c\xd6\x9c\x35\x56\xcc\x77\x2f\x70\x2c\xc6\x2d\x5b\x02\x49\xa3\x27\xe2\x9b\xc0\x83\x68\x21\x4f\x8b\x08\xe6\x06\x0c\xbe\x23\xb8\x74\x6e\xec\x91\x4a\x4e\xa4\xb4\x19\x91\x81\x0b\x23\x26\xc8\x57\x31\xaa\x39\x94\x97\xe7\x0f\xb6\x3a\x05\x74\x5f\xa5\x71\x92\x06\x4c\xf2\x03\xcf\x4c\x47\x00\x07\x5f\xe4\x0c\x90\x07\x47\x90\x65\x17\xa0\x84\xa3\x26\x04\x25\x40\x46\xce\xa7\x43\x20\x55\xc4\xa8\x65\x95\xd0\xfb\x31\x2d\x6c\xdb\x9f\x9d\xd6\x64\xf9\xd0\xc4\x6c\xd5\x51\x69\x7a\x1b\x03\xcb\x37\x6a\xdd\xf7\x29\x2e\xa2\x6d\x8a\xa3\xf1\x07\x1a\x87\xf4\x83\x4f\xac\x99\x75\x6c\x1a\x9b\xb4\xa7\x34\x41\x18\x3e\xc1\x37\x8a\x93\xa5\x6b\xa3\xa8\x88\x92\xb0\x07\x10\x1f\xf0\xfa\xa7\x15\x76\x9f\x08\xfb\x84\xeb\xdf\xcc\xa8\xf3\x07\xed\xc6\x38\xe5\x7e\x14\x4c\xe1\x88\xf7\x2f\x3a\x66\x95\xc7\x15\x6f\x50\x64\x86\xb0\xfb\x42\x5b\x5b\x7e\x88\xaf\x2b\x47\xd3\xfc\xc1\x96\xc9\xb2\xa4\x1b\x7a\x10\x30\x76\xca\xf7\x02\xbf\x6b\xbe\x57\x69\x3f\x2b\x43\x98\xa1\xb5\xb9\x90\x48\xba\xdc\xd3\xc2\x82\x5c\xab\xc3\x3a\x5a\x33\x4d\x9f\x1f\x6c\xb4\x55\x54\xcc\x9b\x1b\x11\xd5\xfd\x1a\x7e\xc1\xaf\xb6\x06\x26\xee\xb9\x14\xaf\x68\x6e\xd3\x57\x48\x3f\xf4\x33\x5e\x32\x3f\xec\xd8\x34\x37\x69\x68\xe2\x8c\xd6\x1a\x22\x84\xbb\x63\x1f\x35\xde\xad\xf3\xc6\x07\x26\xcd\x06\xb3\xbe\x27\x79\x06\x1d\x71\xa8\xc2\x71\xee\x1b\xf5\xdf\xa3\x2a\xd5\xfe\xdd\xb1\xd2\xec\xbd\xa4\x5e\xf8\x55\x0b\x9c\xb4\xb0\x0f\xd3\x3b\xf2\x4d\x1d\xcf\xf8\xc0\x44\x38\x27\x44\x74\x0f\x87\xa8\xc8\xf1\xd5\xa0\xbc\x57\xc8\x95\x70\x47\xbc\x14\x99\x7c\x97\xfc\x8f\xb7\xa6\x1b\xca\xe3\x65\x6e\x7e\x46\x45\xc3\xe7\x02\x5f\xb1\xf8\x2f\xb8\xda\x22\x6b\xd7\x1f\x54\xe7\xea\xd6\x4c\x18\xf7\xec\xa8\x0c\x90\x24\x37\x2e\x6c\x87\xfe\x8c\xa8\x12\x81\xbd\xb4\xaf\x65\x0f\xd9\xb4\x1b\x66\xec\x3c\x6d\x12\x52\x62\xf3\x72\x65\xda\x17\x16\x5a\x51\x92\x8c\x06\x49\x04\x74\x4d\x5d\xc5\xa9\x9a\x3e\x5b\x6a\x75\x07\x49\x2a\x8e\x19\xfa\x33\x38\xeb\xc7\x37\xea\xd0\x19\x51\xf9\x34\x5e\x61\x1b\xc1\x33\x8d\xbf\x96\x69\xdf\x3a\x53\xe5\x6a\x7c\x35\x1c\x35\x4a\x07\xae\xce\x8b\xdd\xda\xea\x42\x82\xfd\x71\x9e\x9a\xae\x1d\xe5\xe1\x9a\x85\x4e\x06\x4b\xfc\xd0\xa9\x84\x12\xc8\x5f\x05\x1e\xb3\xf8\xfb\xaa\xd4\xde\x4f\xd2\x1e\x68\xdb\xc5\x03\xf2\x0d\xdf\xdf\x09\x7c\xee\x65\x93\xfa\xc4\xf0\xf9\x0f\x60\x2d\x11\x31\xa0\xf7\xd2\x55\x01\xf6\x4b\x89\xe4\x36\x10\x34\xf0\x8b\x8f\x50\x7e\x10\x67\xb9\xa7\x94\xc8\x4d\x14\x39\x72\x2a\x87\x6e\xf2\x48\x27\x97\xf5\xca\xc2\x95\x41\xde\xd0\x78\x9f\x86\xe3\x7f\xbc\x03\x9c\x15\xfb\x21\x66\x25\x8c\x0d\x8d\x83\xb6\xfc\xde\x3d\xba\xf3\xd7\x82\xc6\xcb\xf9\x5d\x49\x4d\x9c\x73\xd4\x2c\x31\x01\x4d\xb6\x04\x0b\x8f\x29\x1e\x29\xdb\x54\xfd\x7f\x0f\x03\xcf\x05\x71\x71\xac\xe5\x5d\xe5\x85\xcd\xba\x49\x7b\x92\x25\x60\x6a\x73\x45\x17\xc6\x75\x79\x18\xaa\xc3\x75\x1d\xbf\xbd\x24\xee\x18\x90\x86\xc2\xa8\x1f\xd7\x0d\xd1\xc7\x15\x1b\x7f\xb2\x1e\xef\xf6\x44\x29\xef\x4c\xab\x8c\x96\x3f\x89\x4c\x0b\x8a\xe6\x08\x6a\x1e\x87\xd1\x74\x22\x76\xe5\x1c\x8b\xe4\xe0\x54\xaa\x81\xcc\x81\x60\x8f\xe8\x5d\xe0\x7d\x7d\x77\x3c\x95\x52\xf3\xfa\x13\xbb\x26\x1e\xd3\x1b\x99\x8d\xa4\xdf\xcf\x1a\x0a\xf9\x79\x4a\xf1\x8d\x9f\xaa\xa4\xb2\xe6\xe6\x5a\xb9\x39\x34\x32\x1b\x36\x6d\x2a\x78\x2e\x66\x15\x21\xd8\x0d\xa5\xba\xf1\x8e\x22\xd2\xeb\x98\x6c\xd5\xe6\x1d\x13\x45\xd8\x16\xcc\x1e\x36\x56\xfa\x58\xbf\xad\x01\xc5\x67\x3f\xf1\x20\x8e\x92\xae\x17\x3a\x61\xa0\x72\xa0\xfa\xc1\xcf\x29\xc6\xb2\xa1\xed\xf5\xa4\xf1\x4e\x34\x5d\xbe\x1b\xa8\x12\xcf\x77\x55\x52\xa7\x53\x64\x83\x3d\xaa\xdb\x6e\x16\xa7\x02\x9c\xb8\xf3\xaa\x82\xf2\xad\xc0\xa7\xcf\xaf\x29\xed\xae\x6b\x98\x0e\x0c\x04\x0e\x62\x17\xd7\xcc\xcd\x39\x5e\x66\xd5\x41\xfb\xa3\xf1\x54\xf9\xb0\x7c\x7d\xd8\x0b\xae\x54\xbb\x51\xf2\x2e\xf1\x8e\x89\xf6\x26\xcd\x7a\xb6\x8b\x9e\x52\x34\x9e\xbd\x93\xf1\xad\xb1\x82\xbd\x5f\xdd\xc2\x56\xe2\x2d\x10\x63\xf1\xb0\x3a\x0e\xa3\x6f\x98\x4b\xce\xd4\x2c\x87\x1c\xf8\x47\xf5\xd0\xf2\x30\x2e\xc3\x88\x1e\x4c\xb0\xe2\x7d\x73\xae\x4a\x1d\x98\x50\x84\x9a\xca\xcf\x68\x5d\x61\x21\xad\xa8\xe6\x9f\xcb\xff\x5d\xb5\xac\xcd\xa1\xea\x46\x02\xdf\x64\x6d\x7f\x01\x8c\xea\x06\x84\x74\x14\x15\x99\xcd\x90\x07\x17\x73\xe8\xf1\xbf\x2c\xe9\xca\xff\x30\xf6\x3a\xc4\x37\x94\x38\x78\x2f\xec\x1a\x10\xdf\x38\x1f\x09\xc6\x91\xaf\x55\x78\x9d\x99\x98\xc0\x10\xd9\xac\xcf\x7b\xdd\x9d\xa6\x2f\x2a\x7f\x4f\xd5\x38\x96\xdc\x08\xab\x4e\xb5\xa3\x81\xa7\x5c\x83\x9e\x2b\x53\x7a\xc9\x51\xee\xbf\xf1\x9c\xaa\x60\xd3\xd6\x28\x7f\x9d\x92\x56\x42\xac\xdf\x70\xe2\x1a\xe7\xc9\x10\xa0\xc8\xf0\x06\x2c\x84\xd4\x17\x1f\x57\x99\xa8\x30\x46\xef\x3f\xca\x6d\x6f\xd2\x87\xf8\x7a\x2b\x65\xeb\xdc\x5c\xeb\xe5\xe5\x7d\x64\x05\xa5\xf1\xdd\x4f\xe5\x71\x95\xec\xcd\xba\xa9\x65\xbe\x07\x2c\xea\xe3\xca\x50\x1c\x1f\x3f\xb5\x85\x0f\x34\x64\xad\x17\x9c\xb5\xe7\x30\x50\x7c\x53\xa9\x9f\xcf\x1f\x6c\xf5\x0b\xe2\x70\x83\x29\x73\x88\x09\xe7\x84\x9e\xd1\x09\x96\x7e\x9f\x5c\xa9\xdd\xf4\x9d\x4a\x2f\xd3\xd5\x16\xb0\x71\x70\xc8\xfc\xb9\xaa\xbf\x7c\x0f\x4d\x0e\x4a\x2f\x4e\xc2\xbd\x6d\xbe\x63\xf3\xf2\xd3\x6d\x45\x69\x7c\x56\x61\xfe\xb8\xda\x8b\xe1\x7f\x6c\x42\xb9\x12\xc4\xbc\xe7\x95\x33\x69\xfb\xd9\xac\x22\xe9\x63\x54\x1a\xdc\xa0\x9b\x5c\xab\x66\xf9\x8d\xc0\xa3\xd7\xfe\xcf\xa7\xdb\x2e\x70\xf8\x9f\xf6\x4e\x3c\xa4\x31\x0f\x87\x96\x65\x4d\xb1\x1a\x8f\x2a\xce\xc9\xa3\x63\xaf\xe4\x5b\xc4\x0e\x7c\x6b\xa2\x68\x83\xd2\x56\x52\x5d\xf2\x02\x04\x57\x82\xa9\xa6\x16\xdf\xa8\x39\xb4\xbb\x3d\x6f\xee\xa3\x6d\xdf\x1b\xb4\x0b\xad\x91\x30\x5e\x13\xcd\x70\xb3\x7d\xe2\x49\x6c\xa0\xdf\x09\x5b\x75\x97\xa0\x2e\x5c\x8e\xd5\x09\x9b\xcb\x81\xda\xf3\x54\xd3\x15\xad\x41\x5a\xa2\x30\xa9\x7b\x55\x60\xd8\x8d\x4c\x38\xb4\xbd\x59\x4d\x49\x51\xfe\x25\xe6\xe6\x2e\x25\x94\x1d\xf5\x4e\xe9\x22\x01\x1b\x86\x95\x23\x7c\x16\x0a\xac\x60\xb2\x8c\xe9\x66\x60\xd7\x99\xdc\x86\x6f\x14\x6c\x8d\x14\x22\xb2\x0c\x67\x94\xc0\xf5\x54\xa5\xbc\x2a\xb0\x57\xda\x45\x44\xa6\x64\x20\x98\x7b\x30\xf0\xc0\x99\x37\x2b\x16\x78\x71\xb1\xd5\x4b\xd6\x28\x9f\xc7\x4e\x12\xcb\x16\xd1\xa7\x44\xc2\xc8\x3f\x7e\x94\xac\xc9\x52\x10\x5d\xf0\x72\x30\x24\x79\x51\xc5\x03\x1e\x68\x65\x79\xd1\x0b\xc5\x4b\x92\x80\xca\x2b\xe1\x9f\xd6\x88\x81\xf3\xaa\x85\xad\x5b\xba\x93\x3d\x20\x18\x70\x12\xf0\x81\x26\x12\x19\xaa\xeb\xfe\xf4\x58\xeb\x6d\x3f\xa4\xaf\x17\x0f\x94\x7e\xd7\x09\x66\xbb\x66\x01\xcc\xb7\x74\x85\x79\xad\x8b\x5f\x51\x80\x8d\xfb\x81\x97\x35\x3f\x89\xd9\x15\xe2\xac\x1a\x6a\x8e\x34\xcc\x11\x7b\xc0\xe3\x03\xa6\x9b\xaf\xbd\xcf\x98\x67\x45\x36\x08\x15\xae\xe5\x98\x4e\xdf\xd4\xb6\xca\xf5\xa3\x90\xe5\x55\xf1\x7e\x70\x32\x11\xca\x72\x07\x0d\x76\xc0\x9f\x55\x02\xaf\x97\xf6\x2d\xb5\xb2\xdc\xac\xac\xa8\xc8\x0f\x79\xa8\xc6\xc4\xe7\xa4\x1a\x4e\xca\x99\x8e\x55\xa6\xe6\x44\x65\x64\x47\x5b\x79\x54\x9b\x38\x31\x65\xd4\xa4\x1e\xd0\x4f\xd2\x15\x9b\x13\x01\x73\x53\x31\xd9\x5f\x52\xc3\x7d\x4d\x71\x03\xfe\x95\x13\x58\x1a\x85\xac\x91\xed\x2a\x14\x2e\x73\x01\x2c\x28\x2c\xc6\x8f\x2a\x71\xd5\x73\x2d\xb3\x66\xb9\x73\x4b\xba\x1f\xd5\x7a\x38\x5e\x43\x0b\xf5\x02\xf4\x64\x95\x19\x7b\x4f\x99\xb1\xf7\x54\xe7\x60\x19\xaa\x1e\x62\xad\x9a\x72\x70\xf1\xd4\x6f\xa2\xc2\xcc\x37\x53\x5c\x80\x79\xd8\x0f\xbb\x21\xc1\xa1\x95\x2f\x7a\x1d\x2b\x5b\xb2\x90\xf2\xce\xc3\xb8\x8b\x00\x58\x32\x71\x58\xba\x92\xa4\xf3\x27\x31\xe1\x7d\x7b\xc9\x3a\x4e\x3c\xa9\x2c\xd3\x77\x0a\xab\xd5\xd6\xc5\xb2\x7f\x91\xd8\x74\x36\x9a\xaa\xdf\xf5\x14\xe6\x4c\x4b\x51\x00\xde\x72\x4f\xf5\x2d\xa4\xb6\x9b\xa4\xbc\xd9\x00\x1c\xd9\x54\x7c\x6b\x2c\xe9\x0f\x8f\xa3\xc9\x2c\xc8\xf0\x16\xdf\x0d\x7c\x16\xec\x2c\xda\x96\x61\x81\x6f\xa3\xb9\x9e\x6f\x28\x7e\xc2\x1a\xda\x36\x51\xa8\x9a\x1b\x78\x1f\xc4\x9b\x17\x49\xf4\x82\xff\xaa\xad\x44\xef\x3f\xd2\xbc\xed\xe9\x46\x96\x9b\x68\xb6\xa1\xd8\x0f\xe9\x0b\x45\xf5\x4c\xb1\x31\x32\x53\x8c\xf4\x1d\xe1\xb9\x45\x29\xad\x06\x4c\x63\x0f\x0d\xc2\x4e\x88\xbc\x8a\x63\x07\x5e\xde\xe7\x9a\xc6\xa4\xd0\x6b\xfa\x7d\xdb\xcd\xb7\x54\x4b\xde\x21\x4b\xc8\xd7\xca\x8e\x0d\x4d\xba\xba\xca\x9d\x24\x38\x6a\xbe\xaf\xe8\x67\x38\xdb\x80\xf2\xeb\x49\x25\xe2\x6f\x22\x93\xaa\x8c\x10\x4b\x6b\x0b\xcb\x64\x15\xaa\xfd\xd5\x56\x56\x74\x07\x0d\x82\xc2\x60\x06\x61\x80\xf8\x5a\x79\x07\x9f\xfb\xf9\x9f\x27\xbf\xc8\x61\x15\xe6\xfc\x82\xaa\x01\xcb\xe5\xdc\x76\xd8\xd4\x89\x65\x15\xe2\x81\xbb\x97\xd5\x5d\x2a\xe5\x90\x97\xf6\xb5\x06\x09\x48\xa2\x25\xff\x41\xcb\x51\xe6\xa4\xb1\xb0\xb0\xb9\xa9\x29\xc8\x92\x75\x21\x85\x95\xc6\x2b\x1a\x39\x29\xbc\x3b\xc5\xd7\x30\x1b\x58\x8f\xff\x85\x43\xc4\xa1\x3d\xdf\xa8\xb3\x74\x40\xa4\x05\x1b\x33\x0a\x43\x77\x6c\xac\xb4\x7a\x8f\x05\x9e\x19\x9b\x8f\x71\xbe\xa9\xc9\xbd\x2d\xb5\xd2\x90\xa3\x41\xe1\xff\xf1\x1d\x3b\xd5\xd0\xa3\x9c\x9a\xbe\x75\xa7\x32\x1a\x57\xdf\xa1\x6d\xc3\xd7\x35\x2d\x5c\x4b\xad\x6e\x32\xda\x00\x94\x13\x0b\x96\x75\x00\xf9\x66\x8a\x59\xd4\x86\xdc\x9b\x02\x4f\x90\x75\xaf\xf9\xa6\x0e\xcd\x9a\xc2\x3b\x73\x01\xf7\x3d\x5a\xe5\xa8\x45\xee\xd6\xbc\x3b\x77\xeb\x24\xdd\x7a\x61\x36\x0c\x3d\xe8\xcc\xe9\x1c\x95\xc3\x29\x82\x1e\x3f\xf3\x09\x81\xb7\x89\xf2\x64\xc5\xe6\x03\x66\x0a\x76\x8d\x2c\xe5\x4f\xf2\x8d\x4b\xec\x47\x66\x68\x63\x17\xa5\xe3\x14\x7e\x4b\x23\x2f\xde\xaa\xe1\xbb\xfb\x5a\x52\x64\x7e\x67\x72\x9d\x54\xe9\x2a\xfc\x92\xfb\x7a\x13\xe7\xe1\xc0\xa6\x09\x82\x48\x58\x69\x88\xdd\xf0\xb5\x5a\x3f\x79\x92\x76\x07\x96\x47\x59\x0e\xde\x72\xdf\xf0\x75\x5d\x72\xc7\x86\x28\xdd\xce\x1f\x64\xf7\xe5\xae\xaa\xf6\xdf\x24\xcf\x13\x91\xcb\x6b\x75\xec\xea\x5f\x2f\x42\x9b\x97\xe7\x49\xe9\xe1\x4b\x0e\xa7\xfc\x0c\x5f\xd7\x39\x20\x91\xe9\x6d\x28\x3c\xe9\x35\x45\x3d\x7f\x4d\x71\x1e\x26\x69\x9c\xe5\x36\x8c\x9b\x3e\x57\x84\xa6\xc0\xa9\x4e\x3e\x21\x55\x99\xca\x14\x84\x43\xf2\x0c\xf0\xa1\x1b\x81\x2a\x3a\x22\x87\x07\x2e\x92\xd7\x6a\x1a\xa7\xbf\xda\x32\xdd\x34\xc9\x32\xd2\x7d\x75\xf2\x45\x1e\x24\x7f\x5a\x15\xbb\x2e\x2b\x31\x36\x08\xdc\x48\x77\x7f\x4d\x1b\x72\x27\x49\x86\xb2\x46\x1c\x2e\xd9\x9f\xbb\xc7\x5d\x09\xb8\x9f\x14\x69\x6e\x6d\xdc\xa4\x5f\x75\x2a\x30\x0a\x80\x53\x4e\xa8\x64\x64\xaa\x8e\xd4\x22\x35\x92\x84\x3d\x4f\x66\xea\xb4\x25\x5c\xa0\xa2\xb9\x85\xb2\x81\x7d\xbc\xb1\xe8\x3b\x4e\x9a\x5e\xf6\xff\x30\x4c\x0c\xce\x46\x46\xe1\x39\xb5\xfc\x72\x89\x21\x9c\xbf\x4a\x4f\x07\x60\x2d\x3b\x13\xd8\xd4\xef\xe0\x5c\xc3\xd4\x5e\x19\x6b\xa4\x15\x99\x25\x78\xd9\xf0\x5e\x1d\x69\xd1\x7e\xc9\xd6\x3c\xda\x2e\xd7\xa4\x90\xe1\x96\x6b\x12\x9b\xfd\xf6\x54\x8d\x71\x25\x1e\x35\x55\xdb\xd3\x59\x45\xf5\xf1\xa7\x34\x27\xd2\x3f\x3e\xc5\xe7\x1c\xc6\x0d\x2f\x90\x7a\x71\x3c\xd5\xdd\x5f\x11\x0f\x9e\x6f\xf5\xc2\x14\xcc\xc6\xec\x39\x23\x58\xbc\x0d\x7b\xc0\x37\x3a\x03\x9f\x26\x2b\x69\x19\x13\x79\xfa\xba\x23\x81\x67\xac\x3b\xa2\xa8\x64\xbb\x03\x6b\x57\x9b\x8a\x5f\xe4\x9b\x4a\x08\x1f\x50\x38\x89\xe6\xb6\x56\xfe\x4b\x8f\x3b\x49\xfb\x96\x28\x20\x67\xa6\x98\x8c\x1b\x8e\x6e\x0b\x38\x4a\xd1\x90\x2f\xc7\x46\x3a\x42\xa6\x44\xa1\x72\x9b\xc6\x88\x7c\xe0\xdf\x43\xe0\x86\xdb\x20\x31\x3c\x4c\x1b\xa7\x90\x43\xa6\xb7\x66\xd3\x3c\xcc\x88\x1e\x55\xe1\xde\x70\x72\x22\xa7\x70\x0a\x79\x42\xa4\xe9\x70\x1c\xe3\xc4\xc2\x71\x8c\x58\xe6\xa6\x3a\xf5\xd7\x6d\xd4\x54\x7d\xdb\x17\x55\x3f\x45\xa3\xed\xd3\x28\x37\xe1\x6a\xb3\x1f\x0c\x2c\x1e\x85\xf3\xb3\x2a\xc3\xdb\x68\x6b\x3d\x4d\xd6\x5f\x82\x0b\xf1\x86\x62\xc4\x79\xa8\x05\x8e\xaa\xe8\x85\xc5\xc5\xd6\xc8\xc6\x26\xca\x61\xb4\xb0\xce\x98\x6c\x85\x6f\x14\xf6\xaa\xf4\x6b\xb3\x1c\x40\x1f\x04\x8b\xd7\x29\x82\xe3\xeb\xca\xea\x92\x13\x27\x1b\x98\x55\x61\x40\x73\x8a\x40\x5e\x1d\xa8\x56\x13\xaf\x48\x1d\x23\xa5\x7b\x93\xf2\xa9\xf8\x46\x41\x25\x7a\x76\x18\x66\xb6\xe1\x05\x40\xff\xf1\x69\xf8\xca\x42\x6e\xec\x20\x53\x83\x24\xb2\x59\x6e\xd3\x24\x6a\xfa\xbe\xbf\x87\xb4\xfd\x50\x92\x39\x4c\x23\x87\xad\xdb\x6c\x57\xcb\x9a\xad\x81\x19\x8d\x6c\x2c\x91\xb4\xeb\xd3\x76\x52\xaa\xdc\x25\x87\xba\xed\x9d\xe0\x19\x8d\xe7\x88\x42\xce\xea\x35\x3c\x62\x02\x32\xac\x7c\xed\x9b\xa5\x5e\xdd\xd3\xf8\xf2\x17\x1d\x2f\x70\xe9\x91\x8b\xfe\x16\xad\x00\xe1\x80\x2c\x3f\x8b\xaa\x17\xb4\xdb\x90\x52\x05\xef\xd1\x94\xa7\x87\xe7\xf9\xfe\x98\x3a\xad\xf0\x2f\xa7\xc8\x32\x21\xbe\x7c\xac\xed\xd3\x84\xd0\x99\x44\xd6\xe1\x8e\x56\xbd\xfb\xbd\x40\xb5\xbf\xef\x98\x6c\x9d\x6b\xf8\x4b\x54\x36\x73\xfe\x82\xd0\x63\xaa\xde\xc8\x8b\xee\x2c\x28\x43\x2b\x72\x42\x28\xa4\x03\x62\xed\x0d\x85\x5e\x7b\xa3\x72\xbc\x2e\x2c\x90\x2e\xe4\xac\xea\xba\x43\xa3\x36\x80\x3d\x57\x02\x45\x2f\x79\x54\xe3\xce\x27\x9e\x55\xfd\xff\x98\x26\x84\x8f\xd3\x0d\x2e\x25\x72\x28\x30\x56\x02\x27\x9e\x96\x3e\xcb\x4d\xbf\x9f\x61\xef\x22\x9b\x40\x21\xf9\xe2\x54\x3d\x11\xe9\xa3\x07\x4a\x85\xcc\xbc\x9a\xf4\xfb\x0d\xd5\x15\xc6\x55\x1f\xbe\x29\x5f\xd0\x35\x6e\x65\x99\xe9\x0e\x8a\xcc\xe6\x39\xb2\xbe\x08\xa2\x91\xe3\xe6\x6b\xfa\x15\xa0\xb2\x4e\x6a\xac\xf2\x49\x55\xaf\xcb\xf2\x70\x58\x44\xac\xf6\xeb\x96\x25\xe4\x3b\x9d\x10\x68\x79\xf8\x22\xab\x7c\x64\xca\xb7\x58\xb1\x11\x95\xdf\x5d\x6a\x5e\xc9\xa6\xd4\x75\x3b\x75\x07\x44\x49\xd3\x98\x62\x33\xf0\x75\xe5\x4b\x35\x9e\xeb\x92\x08\x0f\x66\x4d\x0d\xde\xbb\x8c\xb9\x73\xe4\xa2\xe5\x97\xa0\xbb\xb1\x59\xe9\xb8\x38\xf8\x22\x75\x63\x16\xac\xc9\xcc\x0a\xff\xb4\x10\x44\xed\xff\x49\x05\x70\x8b\x73\xe2\xab\x73\x80\xa6\xd9\x76\x43\x69\x16\x2a\x3e\x9e\x4b\x2a\xf2\x5b\x0f\x21\x21\x2e\x89\x7c\x74\xc0\xe3\xbc\xc6\xf9\x21\x5d\xe7\x7b\x74\x6f\xf0\xfa\xac\x2a\x60\xb0\xa4\x3d\xd2\x5e\x17\x94\x6c\xc5\x6f\x93\xd1\x94\x62\x59\x43\x11\x9a\x3f\xa5\x5b\xd8\x21\xac\xbe\xab\xfc\x1c\x36\xfc\xbf\x83\x67\xc1\x59\x68\x8c\x98\xa4\xa4\x4b\xcf\x0d\xde\x00\x42\x4e\xd1\x6c\xf6\x41\x1c\xe3\xb7\xe1\xea\xdd\xd6\x6c\x88\xdb\xda\x8a\x08\xd8\xc4\xbd\x0d\x2c\x59\x27\x22\xe4\xc5\x29\x5c\x39\x43\xd0\x27\x16\xfd\x58\xc2\x87\xa2\xd2\x3f\x57\x75\x2a\x7e\x27\x8b\x3f\x23\x3e\xdb\x8b\xbc\x02\x6b\x64\x05\x3e\x77\x9d\xda\xb5\x24\xc2\x59\x27\x61\xe5\x0b\xae\xa2\xe5\x0b\xef\x87\xd5\xa0\x27\x23\xdb\xa5\x35\x8b\xb3\xe4\x0e\xbc\x3a\xbe\xa9\x1c\x48\xcf\xb5\x4c\x6f\x18\xc6\xa1\xa7\xc3\x17\x16\xc9\x1b\x3a\x43\x73\xa3\x52\xb4\xa4\x2a\x59\xd2\xf9\x9a\x25\xe5\x04\xc6\x2a\xc0\x2b\x44\x2f\x26\x5f\x57\x92\xbb\xfb\x17\x49\x32\x52\x65\x2a\x70\xac\x9e\x0c\xfc\x79\x5b\x95\xa1\x9f\x9b\x6b\xf5\xc3\x98\x44\x7f\xc8\xf7\xc1\xc2\x83\xd8\x34\x5f\xd7\x90\x9b\x2c\xb6\xe2\x24\x0f\xfb\xa1\x98\xdf\x3a\x52\xb7\x27\x15\x22\x38\xca\x6d\x66\x9b\xbe\x2e\xc2\xda\xcd\x38\x0a\x85\xfc\x57\x94\x56\x1e\x77\xed\xd4\x03\x43\x4c\x3e\x2f\x2f\xef\xf3\xa5\x42\xcf\xf3\x70\xb1\x62\x28\x16\x16\x5a\xeb\x61\xd4\xeb\x9a\x9c\x14\x27\x84\xff\xdc\x37\x6f\x9e\xaf\xab\x04\xa5\x76\x54\x6c\x61\xd4\x41\x51\x9b\xaf\xb7\x56\xb0\xbe\xfc\xc5\xd6\x4b\xfb\xe6\xc9\x35\x71\x85\x05\xc7\xe7\xf1\x6e\xe5\x2c\xd9\xbf\xd8\x8a\xcd\xab\xa1\x2a\xc6\x31\x75\x02\xdf\xb8\x10\xb5\x1f\x76\x6c\x2a\x62\xde\x58\x57\x6f\xe0\x7d\xf9\xe6\x13\x0b\xdc\xe4\x29\x1b\x44\x6b\x82\xfe\x52\xb0\xa9\xf3\x0a\x9f\xfb\xc0\x9d\x8a\x76\xd8\x49\xa5\xed\x61\x9e\xf1\x20\xf7\x02\x45\x4f\x7d\x7e\x4a\x20\xbd\xea\x39\x1d\x68\x99\x28\xe9\xe7\x70\xbb\xdd\xb8\xb9\x4e\xab\x7b\x8a\x43\xee\x92\x72\xeb\xbb\xc9\x70\x94\x14\x31\xd3\x01\x62\x09\xe0\x09\xf9\x5a\x31\x45\x66\x05\x69\x2d\xf1\xc1\x09\x68\xf0\xdb\x5a\x6a\xe7\x6d\x6d\x27\x6c\x96\x0d\x85\xd3\x47\xd2\x28\x1e\x6a\xaa\x1b\x77\x8b\x78\x3d\x0d\xf3\x9c\xcb\x8b\x4c\x6c\x3b\xf6\x58\x98\xeb\x95\xd4\x18\x75\xdc\xe6\x4a\x33\x55\x12\x40\x1e\x01\x72\xbe\x96\x84\x7d\x64\xd2\x2c\x71\x8d\x3c\x52\xbd\x53\x09\x9c\xf3\x95\xdf\x72\xa4\x1b\x59\x67\x9a\x90\xdd\x61\x68\x30\xce\xb2\xfa\xe8\xcb\x70\xe4\x3c\x54\xf4\x56\xff\xe8\x1f\xfd\xc3\x86\x8f\xdf\xef\x28\xb0\xc8\x1d\xbd\x39\xc3\x78\x64\xbb\x20\x47\x71\x7d\x0a\x8e\xc0\xff\x4c\x1d\xba\xbd\x97\xba\x8d\xcf\xba\xd3\x53\x1a\xd4\x75\x59\xc5\x30\xb5\x59\x32\x44\xd8\xa7\x5f\x47\x68\xe4\xb7\x9a\xcf\xfd\x8b\x04\xac\x5e\x4f\xd2\x55\x37\xe2\xac\x6f\xa5\x04\xd2\xde\x54\xcb\xca\xe4\x36\x0a\x09\xa5\x5e\x8e\x06\xa6\x71\x93\xda\x03\x71\xfd\x3a\x4e\x09\xc7\xef\xbe\x7f\xd1\x91\x02\x69\x50\xd0\xc6\x53\x0d\x27\xe8\x7f\x04\x1f\x41\xf2\x00\x42\xe6\x30\xbe\xaf\xc3\x39\x86\x0f\x70\x6f\xac\xc4\x0f\x2e\x28\x20\xe1\x61\xaa\x33\x21\xcd\xf2\x6b\x9c\xf7\x87\x19\xde\xa4\x30\x16\xab\xe6\xe9\x89\x02\x97\xec\x44\x2f\x0a\x8c\x64\xb3\xdd\x78\xfe\x2b\x0c\xb8\x7b\x5d\x4f\xf2\x77\x15\x9c\x77\xd3\xa3\xa9\x92\x27\x49\xb0\x99\xb3\xce\x81\xe2\x70\x98\xea\x36\xf9\x68\x2b\xf4\x76\x69\xfe\x60\xb9\x52\x09\x51\xab\x88\xe6\x96\x1c\xd1\x9c\x96\x34\x55\xa4\x5d\x3e\x41\x1e\x85\x36\x2e\x4f\x68\xc0\x2d\x04\x0e\x4e\xef\x25\xa4\xa8\xe5\xe7\xd8\xbb\x77\x06\x7e\x60\x0a\xcf\xff\x83\x89\xd9\xd9\xf6\x8d\xd9\x6f\xeb\x3e\xfd\x99\x89\x87\x4c\xac\xd9\xd8\xbe\x5a\xd8\xc8\x34\xca\xf7\x05\xc2\xe6\x2a\x6c\x2a\xdf\x28\xbc\x6b\x37\x2a\x6c\xd6\xd0\x52\x88\x53\x1a\x89\x35\x92\xae\x1d\xd3\x85\xf6\xa9\x50\x9d\x7a\x0e\xe1\xe6\xa4\x02\x74\x5d\x5e\x6a\x75\x4c\x4e\xaa\x22\xf4\xf6\xaa\xbb\xfb\x80\x43\x53\x6d\xfd\x95\x9f\xd3\xed\x5d\x48\x67\x5c\x50\x2c\xfd\x9e\x52\xa4\x34\x96\x45\x6e\xd3\xf0\x55\xe6\x03\xc1\x9c\x6c\x47\x4c\x80\x89\x80\xb7\xee\xde\xae\x1c\x33\x24\x0a\xae\x2b\xef\x25\x0b\x7b\x2c\x54\xe3\xa6\x78\x69\x59\x4d\xb1\x3b\xee\xaf\x69\xf5\xa4\x6b\x1e\xee\x97\xac\x9b\xb4\x97\xcd\x28\xde\xa1\xe6\xc4\xd7\x0d\x3f\x18\x7b\x1e\xaa\x5d\x68\x82\x66\x61\x1e\xb7\x4a\x06\x61\x5c\xc6\xcf\x39\x54\xbd\x6b\x9d\x78\x45\x4f\x1b\x1f\x6a\x4c\x51\x14\x8c\xd5\xb6\x3e\x5b\xa7\x30\x6c\x4a\x73\xde\x33\x71\xce\xab\x50\x09\xe4\x88\x5a\xce\xfd\x40\x07\x9f\x75\x39\xbf\xf5\xb0\x67\x99\xac\xd6\x77\xab\x9e\x57\x48\xca\xf3\x40\x7f\x49\x2a\xbe\xfb\x88\x0f\x94\x3e\x0a\x94\x20\xe3\x09\x6c\x3f\xbe\x51\x41\xe1\x43\xd8\x14\x38\xd0\xef\xe1\xe9\x00\x0a\x6a\xb6\x1b\x2f\xed\xdb\x3c\x8e\xd6\x61\xfe\x77\x64\xfe\x18\xdc\xad\x50\x6a\x2b\x49\xd2\xdb\x20\x11\xfc\xe5\x25\x4f\xaa\xee\x98\xb3\xce\xaa\x76\xac\x32\x4c\x26\x1b\x5a\xfe\x29\xa3\x88\x02\x87\x3d\x19\x9d\x51\x2d\x7d\x49\x27\x37\x21\x24\xe2\x58\xbb\x81\x06\x4c\xc4\x28\x55\xab\xfe\x6b\xb5\x3c\x74\x03\x13\xf5\x1b\xca\xd2\x20\x83\xc6\xd7\xaa\x73\xcd\xf6\x78\x2d\x95\x7f\x8a\x4c\xe8\x69\xfa\x53\xd4\xc5\x6e\x2b\xba\x1e\xe6\xe4\xe7\x3f\x52\xbc\x6f\xa4\xd9\xe4\x44\x4c\x61\x3c\xb6\x51\xb8\xc4\xd7\x93\xad\x0c\x7e\x9f\x6f\x65\x06\xfd\x08\x38\x04\x19\x98\xc2\x37\x15\xff\x66\x6e\xae\xd5\x49\x92\x4c\xd0\xa4\x92\xeb\xa6\x09\xe3\x1b\x55\x44\xee\xd9\x7e\xd8\x0d\x6d\xdc\xdd\xd0\xc8\x87\xeb\xca\x61\xe7\x06\x44\x96\xa4\xac\xfc\x1c\x49\x83\xa6\x43\x8b\x46\x1c\xe9\xcf\xa4\x98\x51\x1a\x37\x5d\x3a\xa3\xe8\xad\x58\x67\x37\xb1\x38\x66\xe9\xd5\x9d\x24\xbf\xa7\x23\xbb\xab\x92\x04\x59\x12\x99\x74\x9a\xd2\x88\xbe\x02\x50\xaf\xe3\xba\xeb\xf6\x8c\x6b\x24\x32\x69\x57\xc4\xfb\xe1\x0a\xee\x9a\x28\xb4\xfa\xae\x76\xa5\xf1\x63\xa9\x15\x85\x6b\x56\xe3\x27\x99\x01\x86\x6f\xf4\x2e\x1f\x8e\x66\x55\x46\x1a\x7f\x26\xe9\x69\x5f\xad\x3f\xa9\xfa\x57\x4f\xea\x96\xd0\x9b\x15\x67\xfb\xf3\x2d\x13\x45\xc9\x3a\x0d\x22\x0e\xc8\xbf\xc0\x34\xf3\x8d\x52\xa5\xca\xbe\x5e\x98\x18\xf9\xfd\xf2\xeb\x85\x03\xa3\xb4\x63\xc2\x6e\xf1\x84\x42\x83\xdb\x38\xdf\x40\x4d\x4f\x40\x07\x8a\x0e\xff\xb8\x1b\x2e\x64\x13\x31\x35\xc8\x17\xc3\x4c\x62\xb8\xfe\x47\x8c\x31\x92\xca\x33\x6d\x99\x51\xa1\x86\x99\xa5\x41\x73\x29\xb4\xf2\x45\x95\xe8\x04\xe3\xc8\x0e\x3f\x55\xce\xf5\xe6\x0e\xa8\x2e\x0b\xa3\xd3\xd6\x73\xe9\xb9\x56\x18\x87\x79\x68\xb6\xb4\x56\x9f\x09\xa6\x26\x59\x4d\xc5\x28\x7b\x54\x35\x6c\x7e\xba\xad\x28\xb1\x67\x39\xa6\xe6\x3b\xf2\x32\x50\x24\xe7\xb2\x2a\x32\x75\x9b\xca\x41\x7d\x88\x07\xa6\x7f\x58\xfa\x9b\x44\x48\x09\x2b\x09\xc4\xa4\x53\xb0\x93\x4e\xf1\x5f\xf9\x49\x85\x40\x8b\xad\xc9\x05\x5c\xc1\x72\x70\x9a\x28\xe1\x78\x1d\x14\xaa\x57\x06\x71\x80\x2a\x49\x8a\xbd\xe1\xe8\xb0\x4f\xd5\x95\xff\xcb\x53\x7b\xab\x37\x3f\x55\xda\xad\x7e\xe6\x40\x0b\xb0\x52\x3c\x1a\x86\x80\x59\x0a\xf9\x66\xe2\xb6\x4d\xa7\x90\x2e\x06\xdf\x9d\xe0\x3b\x15\xd4\xae\x24\xf1\xbf\xdd\x1e\x0a\xf3\x6f\xf1\xae\x48\xe6\x7c\x08\xcc\xa5\x6f\x11\x93\xbe\xd7\x2b\x58\x1e\x42\x1c\x5d\x0e\x30\x52\x2c\x02\xd8\xc0\x31\x77\x5b\x69\xb8\xdd\x0e\x14\xba\xea\x22\x0c\x2b\x26\x82\x79\x4e\xe4\xa8\xfd\xa4\xe4\xba\xe9\x7a\x64\x00\xbe\xe5\xa4\x1a\x64\x8e\xe9\xf1\x82\xd7\xd5\xde\x59\xb7\xe1\xca\x20\x9f\xc5\x63\x09\xe6\x5b\xf5\x03\x9f\xc3\x3b\x4a\xc3\x21\xed\x31\x87\x7d\xf5\xdc\x93\x87\xd5\xf9\x97\x15\xe9\x28\x0d\x33\xcb\x3e\x02\x43\xf5\x03\x45\xd2\xe3\xe1\x1b\x61\xdc\x2f\xa3\x36\x86\x39\x09\x74\xa0\xe1\x94\x5a\x8e\xeb\xa4\xf1\xed\x60\xb7\xa2\x63\x05\xe0\x13\x89\xa5\x1b\x74\x16\xe2\xb5\x7f\x1d\x59\x7f\x29\xc7\xd0\xbb\x70\x2f\x21\x55\x7d\x11\x31\x9c\xda\xc2\xd0\xe1\xb2\x86\x3f\x0a\xa6\x39\x3d\x1c\xbf\x1a\x21\x6f\xe6\x37\x8f\xeb\x28\xfc\xfa\x54\xde\x34\x1f\x6c\x10\x6a\x12\x4f\x8b\x66\x00\x24\xe6\x76\x4d\x54\x63\xc2\xa5\x40\x11\x22\x62\xd9\x30\x09\x48\xa0\xba\x78\x2e\xaa\xa6\xe8\x23\x98\x04\x2c\xae\x1d\x6d\x65\xe8\xb6\x29\xde\x32\x7c\x5e\x0e\xcd\x6b\x8a\xde\xbe\x9f\x9a\xb8\x3b\x08\x49\x8a\xaf\xe1\x18\xc3\x2e\x06\x53\x5d\x09\xbe\x92\x62\xe2\x8d\x24\xb6\x3b\x14\xc5\xf1\x6d\x25\x67\x06\xa2\x35\xd7\x66\xe8\xf5\xfb\x95\x43\xc1\xb9\x7e\x69\x8a\x91\xd9\xce\xbe\x5e\xa0\xb5\x59\x53\xdb\xdf\x0c\x3c\xf7\xc6\xcd\xb1\x3f\x29\xff\xe7\xf1\xa7\x94\xd1\xe9\xda\x2c\x33\x69\x58\x5a\x9e\x32\x42\x90\xce\x75\xa5\xaa\xab\x89\xea\x47\xc9\xaa\xcd\x86\x26\x26\x0f\x90\x5c\xbb\x6f\xef\x6d\x7b\xbd\xe8\x0f\xa7\xda\x29\x02\xb5\x59\x1f\xd2\x74\x28\xea\x92\xf9\x4d\xa8\x04\x3a\x56\xc0\x72\x1e\x11\x36\xbe\x33\x95\xbf\xa8\x69\xae\x18\xa5\x61\xec\xad\x58\x9d\x48\x58\x4d\xfc\x3e\x4a\xc3\x84\xdb\x31\x60\xb9\xe1\x3b\xa2\x12\xf3\x40\x31\xa7\x5f\xaa\x54\x4b\xff\x6e\x6b\xb4\x41\x1d\x98\x83\x98\xa9\x25\xb1\xe0\xa0\xe3\xce\xd7\x75\xca\xa0\x43\x53\xee\x43\x33\x44\x0a\x9f\x95\x98\x54\x28\x7f\xb7\x4e\xa5\x20\x4f\x8b\xe1\x88\x3b\xa4\xb9\x2f\x9c\x06\x44\x7a\xc4\x5d\x00\x9a\x0e\x41\xc4\x3a\xeb\x33\x17\x60\xd5\x73\x4d\x44\xcb\x9e\xba\xd8\x9b\xac\x1f\xea\x92\xe5\xee\x76\x9d\xb8\x6c\x96\x87\x22\xa7\x28\xd4\x61\xb0\x39\xe2\x6b\xd5\x08\x51\xf4\xc2\xa9\xde\x3b\xc7\xa3\xb8\xe8\x38\x15\x5d\x73\x54\x14\x0e\x3b\x49\x53\xf3\x76\x8c\xfd\xa0\x3e\x98\xd2\xa6\xdc\x3a\x15\xaf\xbc\xd2\x32\x9d\x2c\x89\x8a\xdc\x32\x31\x2b\x8c\xc8\x77\x14\x61\xe3\x77\xdc\x0f\x91\x4a\xed\xec\x96\x96\x8e\x85\x05\x1c\xa9\x3f\xfd\x37\xc9\x7d\xa4\x7c\xd2\xe9\x4f\x4f\x54\xbf\xd0\xeb\xa4\x46\x23\x90\x77\x57\x35\xec\xfd\x0d\x25\x87\xd6\xf8\x05\xc7\x8c\x4b\x95\x3e\xd4\x31\xf6\x4c\x14\x1c\xe0\x26\x91\x8e\x01\x03\xde\x6c\x13\x6a\x8d\xa1\xb5\x98\x01\x4c\xcd\xcf\x01\xf8\xed\x98\xab\x1d\x5f\x0f\x07\xab\x72\x72\x29\x48\xfb\x4f\x3e\x33\x71\x75\xd4\xe1\x4f\x50\x39\xd2\x4d\xbf\x0b\x4e\x37\x49\x63\xcd\x51\xc5\x2e\x2c\x08\xbd\xcd\x00\x87\x8d\x90\x5b\x36\xbe\xfc\x45\x57\x68\xa5\x28\x4c\x42\x65\x4f\x04\x47\x41\x1a\x7b\x68\xbb\xdb\xbe\x93\xfa\x54\x40\x05\x4f\x41\x4c\xd0\xbc\x23\x4a\x68\x22\x54\x17\x23\x47\x2b\x09\xe8\xcf\x5d\x64\x2e\x90\x04\xe4\xc0\x02\xd1\xd5\x63\x6d\x42\x56\xe2\x1c\x63\x7d\x05\xa4\x80\xaf\x54\xb6\x16\x95\x0b\x52\xbb\x16\x3a\x84\x16\x3c\xcd\x3b\x8a\x29\xbd\x8a\xd3\x9b\x3f\xd8\xca\xfe\x4e\x84\x50\x00\xb1\xd5\x5d\x85\x85\x9a\x51\x6a\x52\x55\xc0\xc4\xdc\x5c\xab\x5c\xde\xd6\xf4\x73\x9b\xce\x78\xc7\x83\x7b\x53\xb8\x63\x91\xc6\x0c\x65\x65\xb8\xf2\x08\x32\x0e\xd7\xf9\x6e\x03\x93\xf6\x18\xf2\x8c\xe2\xc1\x39\x04\x3e\x52\x5b\x69\x78\x9a\x58\xc5\x40\x39\xb0\x78\xe3\x17\x7c\x35\xca\xe1\x54\x2e\xd7\xc9\x11\xf4\xa9\x21\x67\x6e\xde\xb3\x84\x7b\x56\xef\x13\x35\x98\xe3\x41\x92\xdb\xa8\xd1\x78\xf6\x59\xe7\xb4\xe9\x56\xd3\x27\x15\x2b\x51\x69\xa4\xec\x0c\x3d\xb3\xb3\xeb\xda\xfa\x7b\x76\xf5\x6d\xb4\x66\xf8\xba\xae\xde\xd8\x2d\xd2\xdc\x84\x11\x41\x28\x1d\xb0\xc7\xd5\x4d\x50\x22\x93\xb6\x5f\xdf\xd6\x3c\x4a\xa2\xdc\xa6\x2b\xd6\x0b\x99\x20\x84\xb9\x08\x4f\x82\x6f\x2a\x41\xfb\xfe\xc5\x56\x12\xd1\xd0\x3b\xe3\xcd\xed\x4d\xb0\x8f\x40\x97\x78\x02\x6e\xd7\xf0\x13\x46\x76\x8a\xc8\xec\x26\xd6\x35\xdf\x4c\xf3\x3d\x74\xcd\x23\xe5\xa0\xc3\x8b\xe2\x56\x67\x58\x20\x6c\x26\x9c\xe0\xd7\x55\x61\x7b\x06\x59\x50\xec\x2c\x98\x29\xd8\x9a\x5d\x8a\xbb\xe0\x5c\xa0\x7c\xd6\xab\xd8\x71\x72\x64\xd7\xac\x31\xd3\x4b\x93\x30\x9f\x72\x4d\x1a\x8e\xe4\xf4\xa2\x0a\x84\x0e\xbe\xb8\x4c\xe7\x0d\x4c\x12\xa7\x15\xf9\x66\xfc\xd4\x74\xe6\x74\xff\x62\xeb\xb9\xcf\x94\x8f\xc4\x3b\x80\x8f\x06\xb8\x4a\xb7\x31\x92\x1c\x28\x61\x80\x04\x57\xef\xb9\x91\x8e\x01\x45\x8d\x1f\x80\x99\xc4\xd9\x7b\x63\xac\x64\x1b\x2f\xea\x2e\xe5\xef\x83\x3e\x10\x5e\xc1\x66\xa0\x64\x4b\xff\x6d\xa0\xf6\x03\x0b\xc4\x71\xab\xe8\xd8\xa3\x83\xb7\xb5\x7d\x7b\xeb\x29\x58\x56\x21\x6a\x24\x93\x8d\x5d\x7b\x1f\x7e\x08\x8c\x31\x40\x64\xb0\x26\xdb\x28\x2d\x8d\x5f\x3f\x0c\xd8\x37\xce\x8a\xdd\x13\x8f\x45\xba\xac\x33\x5b\xef\xd3\x51\x2c\xbb\x59\x91\xa2\x6d\xa0\xec\xc0\xc8\xb8\x40\xa5\x2d\x2e\x56\x4c\xd6\xc1\x17\x5b\x71\xf2\x39\xda\x17\xb0\x52\xdb\xe9\xe7\x00\xce\x60\x12\x37\xfc\xf6\x7f\xd4\xcc\x02\x36\x7e\x14\x93\xc2\x24\x95\xc8\xdc\x8b\x69\x2d\x07\x85\xc9\xa8\x15\x6b\xd9\xce\x89\x16\x89\xa5\xc9\xc2\x1e\x60\x65\x3f\x3a\xa8\xb3\xbf\xd5\x56\x2a\xda\x9c\x67\xc4\x04\xdd\xd2\xaa\xef\x55\x91\xfb\x32\xf6\x4c\x93\x55\x8b\xc2\x9b\xb3\x0b\xce\x3b\xb8\x4a\x2e\x27\xe6\xea\x62\xc5\xbf\x90\x60\x2c\x37\xab\x40\x25\xe0\x43\x6f\x51\xe2\x82\xaf\x2b\x11\xdc\xfe\x45\x62\x09\x1b\xa1\xa8\x8c\x9d\x2b\x1d\x59\x0d\xc7\xfd\x7a\xa1\x06\x07\xd9\x32\x69\x27\xcc\x53\xf8\xc5\x8d\xe5\x7d\x9b\x54\xf1\xda\x3c\xaf\x83\x31\x9b\xe7\x91\x10\x3d\x48\x0b\x81\x6a\x27\x50\x74\xf9\x26\xde\x58\x37\x1b\x33\xe5\xa3\x62\xe7\xdd\xa4\xa5\x01\x07\x8c\x7b\xf6\xf8\x26\xf0\xf0\xd7\x9b\xca\xef\xee\x98\x6e\x6e\xd3\xb0\x18\x22\xc5\x02\xb3\x78\x4b\x29\xa6\xb3\xe0\x08\xaa\x20\x47\xa6\x20\x38\x6b\xd9\xe7\xc8\x00\x28\x51\x4e\x09\x2e\x4f\x4f\x65\xa5\xb2\x47\x54\x28\x8b\xdd\xea\x54\x8d\xcb\x3d\x2d\x19\x3d\x5f\xe0\x64\x2c\x3a\xa5\xd5\xbe\xf3\xb7\xdb\x9a\x25\xec\xbe\xef\x6f\xdc\xfd\xd3\x13\xc5\x38\x79\x7a\xac\xdc\xca\x9d\xed\x67\x6a\x48\x71\xe7\xe6\x1e\xc1\x57\x21\x5f\xf7\xae\x72\x08\x39\x6c\xe5\x50\x53\x09\x78\xe8\xfe\x62\x74\x88\xc3\xb3\xbc\x36\x56\x01\xe2\xa9\x40\xf1\x06\xbf\xaf\xab\xea\x7f\xa4\x29\x84\x72\x9b\x3e\xe2\x1d\x9e\x0f\xc7\xbe\xb2\xda\x68\xd3\x9b\xc8\x06\xa7\x61\x41\x3c\xdc\x9c\x28\x3f\xe0\x66\xe0\x41\x25\x8c\x68\x94\xc9\x2e\x5f\x45\x51\x30\x1e\x70\x28\x90\x27\x94\x60\x67\x6a\x4d\x3e\xab\x3a\xde\xc7\xaa\x7f\xe2\x2c\xc6\x0f\x95\xeb\x33\x2a\xa2\xbf\x8d\xae\x4b\xfe\x07\x25\x84\x21\x4c\x66\xbb\x7c\x19\xf2\x08\xac\x8e\xa3\x29\xf3\x9a\x00\x57\xc7\xaa\xc2\x79\x49\xd1\x60\x9f\xd5\x5e\xe3\xd5\x40\x31\x92\xbf\x47\xab\x59\xbe\xab\x06\x4c\x1f\x0e\x29\x6f\x2d\x91\x01\x3c\xc4\x49\xe0\xc1\xd4\x13\xd5\x7d\x37\x34\xbd\x94\xa9\xf8\xea\x90\x1c\x7e\x57\xad\xd8\x24\x5d\xb1\x90\xb9\x96\x68\xc1\x67\x1b\xde\xc5\x42\x11\x16\x0f\x0f\xd1\x78\x43\xa7\x80\xee\xe3\x38\x75\x2a\xd5\x9e\xd2\xf0\x9a\xc2\x7c\x0d\xc3\x2c\x2b\xff\x6f\x34\x0a\x75\xb7\xc2\x79\x45\x10\x7c\x7e\xbc\x5b\x41\xb0\x67\x55\xad\xfe\xd1\x49\x79\xee\xd0\x48\x99\x9f\x68\x7b\x95\xbc\x4b\xe3\x29\x5a\xf6\x86\xd3\x22\x39\xaa\xbd\x3d\x93\x83\x70\x12\xa9\x30\x76\x36\x9d\xc2\xf0\xc2\x02\x1b\xff\xdf\x50\x76\xe3\x68\xc5\x11\x78\xae\x35\x32\x1b\xa6\x13\x59\x55\xec\x7c\x03\x5f\x25\xc6\xaa\xfc\x2a\x98\x71\x54\xcc\x45\x7f\xa6\x06\x94\xb6\x4e\x10\xcf\x18\x00\x08\x7d\xa4\x20\xb3\xb3\x13\x87\x12\x26\x76\x73\xac\x65\x63\xec\xc8\xa6\xb3\x53\x68\x8d\x72\xdd\xc1\x5e\xbc\x35\x56\xfd\x62\x57\x95\x54\x04\x4b\x0a\xf3\x5f\x29\x58\x6a\x96\xa7\xe1\x08\x58\x3e\x86\x28\xd3\x80\x08\x5c\x99\x96\x31\xf3\x5e\xd1\x2b\x09\x07\x56\x8d\xee\x6a\x6c\xa9\x94\x99\x0c\x6d\x43\xa5\xb0\x01\x70\xe1\x6b\x25\x52\xb6\x92\x44\x36\xee\x24\xdd\xd5\x86\x2a\x6a\x31\xc2\x9d\x6f\xea\x32\xaf\x3d\x33\x34\x2b\x12\xae\x08\xdb\xa0\x52\x19\x3f\x59\x49\xeb\x2f\x2f\xa9\x7e\x27\xb8\x44\xef\x29\xb8\xc6\x7b\xe5\x12\x15\x95\x0e\xd3\x49\x19\xfe\x3a\xa3\x9a\x54\xae\xe0\xa9\x58\x61\x22\x50\xbd\x2c\x57\xe0\x5b\x89\xf6\x84\x3f\x07\xbe\xf4\xfc\x72\xd3\x1f\x63\xb7\xc7\xaa\xc7\xfa\xdf\xd3\xb4\x48\xcf\xcd\xa7\x94\x81\x21\x35\x8c\xf0\x55\x2e\x2a\x08\xd1\x7d\xb9\xd8\xf9\xba\xb2\x26\x5f\x79\xa5\xd5\x29\x36\x9c\x4d\x80\xff\xd3\x6c\x7b\xc7\xa8\x39\x51\x53\xbd\x31\xec\x24\xd1\xac\xca\xd4\x9f\x52\xf4\xd3\xb7\xe1\xff\x89\xe3\x4c\x56\x90\xff\x8a\x26\x1e\xeb\xfa\x84\x2a\x0b\xf7\xc2\x6c\x15\xe9\x2e\x07\x12\xf4\x80\x41\xdf\xc6\x1a\xf5\xcb\xff\x83\xdf\xe0\x16\xba\x63\x71\xb9\xe4\xd0\xab\xe0\xa7\x6e\xe8\x34\xc3\xc7\xda\xe3\xff\xb8\x12\xbf\xbe\xf2\x0a\x49\x38\x15\x5d\x0a\xce\x5e\xda\xe7\x29\x58\x16\x16\xe4\x5a\xc5\x5a\xb1\x5d\x4d\x92\xcc\xcc\x96\x96\x44\xb0\x2c\x3e\xd0\xbf\x8c\xf7\xc7\x6f\x71\x2f\xb0\xdc\xf8\xbd\x7c\xb3\xb6\xb1\xc4\xf6\x93\x94\x2b\xe4\x42\xb4\x56\xce\x20\x96\xc5\x9e\xb6\x6f\x90\x06\xc3\x1f\xdc\xe7\x5b\x75\x30\xf7\x7e\x18\xaf\xd8\x94\xe3\x23\xd7\x37\xbd\xe8\xfb\xa6\x9f\xae\x44\x11\x2f\xed\xfb\x49\x0a\x03\x5c\x69\xc9\x37\xab\x61\x7e\x91\x96\x60\xb1\x18\x27\xc1\x3c\x37\xc7\x87\xf6\x5f\x8e\x4b\x9f\x9c\x93\xc2\xda\x47\xb9\x3e\x56\xd9\x87\xfb\xe3\xc6\xcb\x4b\x9e\xa8\x78\xfe\x20\xaf\xc9\x07\x88\x21\x24\x27\xe6\x6b\xbe\xbb\x28\x52\x00\xe8\x04\x90\x19\x0c\xc7\x43\x24\x51\x5c\x2b\x6e\x39\xe8\x48\xbb\xbc\xab\x29\x48\xb7\xb5\x55\x7f\x0a\x8e\x24\x24\xc3\xb7\x21\x05\x84\x94\xc0\x07\x63\x5d\x19\xf8\xd1\x18\xd4\x56\xf0\x38\xae\x20\x3c\x71\xd5\x4a\x3f\x3b\xc7\xc8\xcb\x81\xf3\x9d\x57\x56\x55\x19\x48\x27\xa3\x8d\x34\x5c\x19\x00\x90\x8b\xa1\x07\xe9\x82\x40\x48\xbd\x08\xd2\xad\xba\x04\x49\x6a\x7b\x3b\x1a\x5f\x78\x99\xe9\xca\x5e\xc3\x40\x22\x59\xb2\xa9\x4e\x51\x66\x92\xc1\x20\xdd\xa2\x79\x66\x86\x8c\x69\x2a\x60\x0f\x14\x26\xf1\x65\x0b\x75\x04\xa0\x36\x4e\x8f\x3d\x3e\xe5\x74\xb0\xdb\xd9\xd7\xf5\xcf\x91\x4f\x8d\xc8\xe5\xcf\x30\xce\x7c\xe3\xb7\x5c\x18\x25\x8e\xb5\x59\x1a\xbc\xe9\x91\xa4\xf3\xbb\x4e\x29\xbe\x3c\x32\x56\x01\xc7\x42\x31\x92\xa3\x2f\xbe\xa9\xdb\x21\xaa\x10\x8c\xe3\x99\x4b\xb1\x7c\x13\x3c\x5d\x29\xc5\xe6\xeb\x4d\x8f\x99\x42\xa9\x08\xcb\x95\xd1\x1c\x42\xae\x52\x13\x20\xf5\x4d\xd7\x6a\xe6\xbc\x8b\xda\x89\xf1\xa5\x70\x92\xfe\xa4\xa2\x76\xb9\xd0\xa4\xdf\xdc\x67\xaf\x20\x3b\x81\x32\xc8\x15\x95\xc0\xc8\x4c\xdf\xa6\x33\x34\x9e\x12\x35\x78\x78\xe6\xfb\xb4\x03\x1c\x70\xc9\x41\x27\xb7\xb7\x75\x30\xd1\xb1\x11\x81\xf3\xa6\x88\x07\x10\x32\xde\xa8\x96\xfd\x11\xdf\xdf\x1e\x3f\xa9\x98\xe8\x60\x25\x7c\x45\xe3\xa4\x6a\x5c\xac\xb2\xca\x2e\x2c\xb4\x86\x61\x14\x65\x33\x3a\xb6\x38\x19\x28\x51\x8e\x63\x4a\x27\x82\x3d\x38\xfe\xab\x3a\x70\x43\xd7\xa6\x6b\xe1\xa1\xa6\xe2\xe1\xf9\xe7\xaa\x1f\xff\x5d\xd5\x94\xf7\x4e\xc5\x51\x58\x7a\xf1\x00\xf7\xa7\xb8\x63\x4b\x64\xe0\xbc\xa3\x70\x41\x95\x00\xf3\x64\x9d\xde\x75\xbf\x64\xde\xcf\x05\x5e\x26\xfe\x9c\x8b\x38\x46\x45\xba\x62\x7b\xd3\xa4\x02\x8a\x33\xa5\x89\x52\xab\xb4\x2e\x6d\xe5\x90\x9f\x6b\x2d\x2e\x7e\x96\x0c\x13\xce\xb9\x1f\x07\x8a\x31\xfe\xdd\xb1\x12\xb7\xf8\x55\xb8\x7c\xb8\x39\xad\x44\x95\x3f\xc0\x78\xe2\x1f\x1a\x6d\x2f\xb8\xcd\x7a\x2c\xb0\x51\x3b\xb8\x1e\xee\x0c\xdb\xb2\x80\x79\x1f\x60\xb6\x11\x15\x9d\xa3\xaa\x0e\xcc\x07\x2a\x5a\xa8\xd4\x9d\x22\x63\x2d\x46\xa2\xf1\xe5\x2f\xfa\xa5\xe2\x35\x0b\x5e\x09\xa6\xf0\xc5\x73\x73\x7c\x28\xbf\x46\x36\x5c\x32\xe1\x3e\xe3\xf9\xd3\x30\xa9\xc2\x34\x47\xb3\xef\x7a\xf9\xbe\xf0\x32\x27\xd0\x0e\xc3\xe5\x77\x9a\x0e\x5f\x9a\x77\x7f\x44\xe3\xcc\x3c\xd2\x81\x52\x97\xbf\x39\xf6\xe9\xd7\x5b\x2a\x4a\x2e\x3a\x4c\x43\x29\x9b\xa3\x1c\x2c\x2e\x63\xb2\x45\x17\xfd\x64\xef\x73\x6a\x2a\xc6\x30\xb6\x87\xa8\x53\xa9\x13\x6d\x34\x3c\xe1\xdb\x15\x9c\x20\x7c\x13\x3c\xae\xfa\x2b\x4c\x77\xd0\xf4\xa9\xb9\x9b\x63\x25\x11\x81\x70\x52\xb2\x96\x9e\xba\x27\x5b\xb7\x26\x97\x9a\x24\x0e\x1f\xd8\x68\xbe\x9e\xca\x0f\xf4\x6c\xef\x29\x1a\x45\xd8\x84\xcb\xb4\x30\x10\x24\xcc\x50\xec\x02\x5b\x7e\x27\xf0\x0a\x69\x37\x02\xc5\x02\xf3\x00\x6b\x0c\xbe\x08\xf7\x65\x8b\x22\xbd\xea\x71\xe4\xc0\x92\xb5\x52\x95\x1b\xfb\x3a\xad\x24\x96\x91\x52\xa2\xd7\x7b\x50\x0f\x10\x21\x39\x5a\xe2\xa2\x24\x47\xcb\x12\x3f\x32\x8b\xf8\x00\xc1\xd6\xb5\xb1\x6f\x01\xbd\x3a\xf6\x8e\xd5\xdd\x4a\x58\x3a\x37\xd7\xca\x43\x13\x9b\x78\xc8\x70\x68\x57\x77\x28\x1f\x59\x3c\x3c\x1f\x96\x6e\x14\xa3\x51\x68\xe1\x34\xd6\xb1\xc2\x48\x0f\x5c\x6a\x4d\x7f\x8a\x66\x9a\x05\x26\xa7\xc4\x26\x7d\xdb\x93\x35\xbd\x8d\x59\x8f\x6f\x40\x37\xe1\xe6\x65\x05\xad\xff\x29\xa4\x09\x98\xef\x4a\xd5\x2b\x76\x29\xec\x48\x66\xd6\xa4\x21\x49\xc8\xe7\x5d\x81\xf6\xf9\xef\x8c\x55\x99\xf4\xa4\xe3\x25\xe9\x45\x5f\xa3\xf5\x31\x75\x38\xf1\x8d\x5a\x80\xe5\x99\xc4\xf0\x62\x39\xed\x69\x10\x90\x7b\x3d\xa3\xea\xca\x7f\xae\x7a\x78\x3e\x54\x11\x45\xcf\x1a\x15\xce\xa3\x9e\xc0\xd7\x38\x04\xa5\x9e\x30\x2c\x62\x69\xe1\xdb\xad\x88\x00\xae\x06\x9e\x3c\x90\x49\x70\x36\x2f\x2b\x06\xe5\x7b\xc8\xea\x20\xf7\xf5\xe1\x78\x2a\x8b\x4e\x63\xe7\x14\x0e\x3d\x2f\xf6\x25\xc5\xa4\x7c\x39\xf0\x52\x4a\x97\x60\x2a\xa4\x81\xdd\xcf\x7f\x3f\xc9\x72\xae\xd6\x38\x3e\x9d\x97\xf6\x39\x01\x1a\xdf\x45\x76\x57\x65\x5e\xa2\x30\xb7\xa9\xe9\x6e\xe1\x12\x52\x44\xc8\xba\x64\x50\x74\x07\x4f\xfb\x22\xf4\x0f\x55\xf4\x74\x6c\xec\x89\x90\x77\xb4\x7d\x0f\xf9\x69\xf8\xbc\xb0\xa9\x37\x30\x81\x22\x28\x4a\xef\x2a\xda\x5d\x34\xff\x8a\x4b\x6d\x9e\x9d\x50\x26\x20\x81\xdf\xca\x34\x7e\xec\x36\x60\x92\x31\xa6\xbb\x27\xd4\x8c\x22\x2e\x8f\xca\x9f\xbc\xa5\x74\x15\x38\x37\xc6\x4f\xa3\x88\x81\xee\x93\xd3\x0d\x1f\x0b\xee\xbb\x74\xbe\xfa\xa3\xb2\x97\x14\x9d\x1c\x47\x25\x32\x1a\xff\x14\x0f\xc0\x37\x1a\xb9\x6f\xd3\x30\x4f\x52\x76\xfd\xf0\x52\xcc\xa1\xcd\x37\xca\x5c\x87\xb9\xd9\x51\x3e\x08\x16\xca\x03\x3c\xba\x53\xac\x2b\xdf\x9d\x55\x16\x34\xf1\x04\x8c\x3a\xb3\xe6\x2b\xfa\xf0\xc6\xc4\x33\xad\x67\x49\x91\x76\x25\xe4\x43\x1a\x8c\x9b\x4f\xf8\xa6\x96\xbb\xa0\x88\x22\x5a\x41\x38\x70\x6e\xe1\x74\x15\x69\x0b\xdf\xde\x7c\x58\x39\x4c\xc9\xb3\xab\x61\x77\x35\x24\xfa\x6c\x2c\xbc\x1f\x2b\x52\x27\x36\xc4\x82\x0c\x70\x76\x65\xe4\x23\x6b\xd8\x80\x8f\x68\x3e\xf8\xda\x45\xb8\xac\x21\x3f\xab\x1a\x73\x8e\x61\x33\x89\x82\xd6\x94\xfa\x59\xc3\x31\x65\x6f\xa7\x90\x42\x2a\xea\x5b\xd5\x38\xa9\x3a\xdb\x49\x13\xd3\xeb\x9a\xcc\x83\xa7\x44\x71\xbe\xe1\x14\xb7\x6f\x2b\xfd\xc3\xff\x45\x6d\xb6\x4e\x91\x5a\x53\xcc\xd0\xbb\x4d\xe1\x70\x9d\xcb\xe7\x2a\x77\xc7\x68\x34\xf8\x8f\x94\xa2\x44\xb6\x6e\x6d\x4e\xa1\xb5\x94\x60\x1b\x8e\xde\xef\x70\xe0\x75\xc5\xbb\x51\xd1\x13\x10\x3b\xce\x33\x46\x74\xf1\x8d\xd6\x2a\x8f\x4c\xcc\x09\x22\xbc\xca\x9b\x1a\x8c\xf3\x66\xa5\x8c\xb0\xb4\xbc\xd4\x0a\xe3\x3c\x4d\x7a\x45\x17\x79\x9f\xaf\x7a\x3a\x04\x55\xf4\xd1\x9d\x3f\xb9\x4d\xc3\x08\x68\x11\x27\xde\xec\xd8\xf9\x4e\x28\xc9\xde\xd2\x0f\x35\x29\x3a\xd8\x3c\xe6\xfe\x18\xfd\x35\x5f\x4f\x69\xe1\xc5\xdd\xc1\x63\x4a\x44\xed\x92\x52\xe9\x9a\x99\x28\x4e\x77\xcd\x92\x71\x5c\xf5\x51\x32\x23\x1d\x56\xd0\xae\xf6\x16\xae\x9b\x17\x1c\x50\x85\xde\x92\x3d\x51\xac\x1e\x49\xbb\x7a\x7a\x7d\xc4\x27\xb0\x6d\xd7\x5c\x23\x98\x3d\x64\x86\x61\x2c\xed\x14\x08\x51\x59\x5c\x05\xb6\xe3\xa8\x42\xdb\xfc\x71\xa5\xd8\x33\x37\xd7\x2a\x62\x33\x4c\xd2\x1c\x79\x28\x87\xb7\x39\x8d\x18\x4f\xaa\x0f\x8a\xd9\x9f\x68\x19\x66\x3c\x2e\x89\x15\x5b\xb0\x36\xef\xea\x5e\x06\x86\x27\xf1\xbf\x78\xd8\xeb\x46\x37\x49\x62\xcc\xac\x40\x56\x7d\x92\xfd\x42\x0d\x4d\xce\x3c\x50\x04\xcd\xd2\x17\xc6\x19\x75\x47\xb9\xbc\x5c\x2b\x00\x4e\xf5\xc4\x14\x5a\x32\x8c\xec\x1e\xe4\x08\xe0\xd1\xdc\xd6\x9a\xdb\x8c\xb6\x80\x43\xbd\x1d\x76\x5c\xe4\xdb\xc8\xbb\xe6\xcf\x28\xce\xf3\x47\x80\x6f\x93\x84\x4e\xb9\x1a\xe0\xd2\x9e\x50\xc1\xe3\xc3\x40\xb1\x8c\x6c\x9f\xf8\xf6\x9d\xe3\x9a\xa9\xe9\x1a\x79\x8c\xc2\x8a\xf3\x49\xdd\x7a\x26\xcd\xc3\x6e\x64\xe1\x49\x70\xdf\x9d\x82\x16\x34\x55\x8b\xfc\x2f\x8e\x7d\x9a\xfc\xd4\x78\x2b\x7d\xb4\x7c\x61\x37\x89\xb3\x62\xc8\x65\x7c\x9c\xe4\x9c\xad\x44\xdc\x84\xda\x26\xa2\xed\x59\x07\x3a\x1e\x9a\x30\x8e\x4c\xdc\x6b\xfa\x14\x03\xa7\x6e\x51\x3b\x3a\x46\x8b\x0c\x56\xee\x4e\xa0\x70\xd3\x45\x27\xcb\xcb\xed\xc6\x64\x85\x8a\x2b\x7c\xde\x31\x8c\xaa\x2c\xea\x97\x5e\x20\xe3\x83\x4a\x1d\xab\x17\xf0\x8d\x16\x97\x30\xc3\xc2\x46\x0d\xc5\x77\x76\x4a\x7b\x29\xa7\x6a\x71\x23\x45\xcf\x69\xf4\xc2\xe5\x40\xb0\xa2\x55\x96\x25\x94\xdb\x3a\x19\xf4\xf1\xa1\x89\x43\x90\xc1\x97\xbb\x64\x93\x7c\xee\xcd\x9b\x5a\x02\x28\x4d\xca\x55\x3a\xa3\x33\x54\x58\xd8\xd8\x00\xef\xd0\xef\x21\x2c\x38\xa2\xf5\x03\x1e\x04\x02\xbc\x4a\xcd\x68\x1a\x0f\x8e\xf3\xcd\x35\x80\x78\x49\xfe\x1b\xaa\x6b\x83\xda\x1e\x43\x51\x16\x47\xac\xd1\x80\x7f\x0f\x23\x7b\x18\x47\x26\xdf\x8c\x55\xaa\xf3\x01\xad\x19\xa6\xd5\x23\x87\x43\x7a\xd5\xcb\xdf\x75\x09\x2c\x05\x8e\x56\x04\x52\xaf\xd1\x1e\x14\x4e\x3e\x3a\x76\xa4\xeb\x9d\x76\x09\xa7\xec\x94\xa1\xce\x93\x6c\x10\x96\xb1\xa0\x97\x78\x62\xaa\x20\xd7\x04\xb2\xb0\xc0\x28\x08\x26\x76\x10\xec\xb8\xb6\xca\xd9\x00\xba\x49\x38\x02\xaf\xd2\x36\xe4\xeb\xc0\x43\x98\xff\x48\x75\x05\xfc\xd1\xd8\x27\xca\x86\x1b\x4f\x94\x7f\x84\x4d\x83\x58\x1b\xbf\xbe\xbd\xad\xb0\x75\x22\xdc\xe9\xd8\xca\x5d\x86\x1e\xe9\x76\xac\x75\x88\x8c\x33\xd9\x1c\x85\xe7\x28\x00\xdc\xa4\xcd\xcd\x15\xcb\x89\xe7\xaf\xbd\x3f\x56\xb2\x87\x67\xc8\xab\x83\x85\x3d\x8e\x59\xc1\xca\xfc\x2b\xdd\xb5\x7a\x85\x5e\x0f\x41\xdf\xdd\x1a\xcd\xe6\xc5\x56\x77\x23\x0e\xbb\xb4\x33\x15\x55\xf8\x01\x0f\xb9\x73\x41\xc4\xed\xad\xdd\x7c\x0b\x0b\xcb\xad\xc5\xc5\x03\x4d\x85\xbf\x78\x83\x46\x10\x5e\xdc\x45\xc5\xb0\x74\xbd\x0e\x73\xb9\x1e\xc6\xb1\x75\x82\x47\x4e\xc6\xaa\xfc\x36\x69\x0f\x75\x4a\xd5\x26\x37\xa4\xe1\x4f\x0f\x8a\xc1\xff\x7d\x0d\xa9\x14\x85\x44\x58\xc4\x13\x75\xdc\x3b\x5b\x20\x8c\x9c\x6b\x0e\xbc\xab\x7a\xa1\x2e\xc5\x4e\x4d\x1e\x52\x41\x12\x91\x37\xad\xf8\x16\x88\x63\xd7\xb3\x6b\x89\xeb\x81\xc0\x6e\xb9\x1f\x28\x67\xe5\xbe\x12\xd6\xf8\xc2\x97\x66\xb4\xb2\xeb\xf7\xf0\x2a\x70\xe3\x7f\x8c\x6c\x83\xa3\xd3\x71\x61\xcc\x2d\x45\x89\xb4\x1a\xc6\x5f\x0b\x1b\x1a\x85\x4e\xa3\x2d\x88\x74\x89\x37\x3b\x26\x87\xab\xe2\x14\xf2\xdd\x94\xbc\x59\xc7\xc9\x37\xb2\xe9\x9a\x4d\x33\xab\x14\x04\x31\x8d\x7c\xed\x70\xb0\xdd\x28\xb4\x71\x6e\x23\xf6\x84\x44\x4a\xb8\xa1\x18\xc3\xb7\x2e\xb6\x97\xe7\x0f\xb6\x7a\xeb\x26\xed\x37\x54\x66\x88\x1b\x76\x84\x4f\x42\x49\xa1\x98\x61\x18\x6d\xec\xc6\x28\xa9\x5e\x51\x29\x12\x80\x51\x7e\x73\x42\x66\x07\x29\x9f\xeb\x14\x1d\x8a\x7e\x1c\x1d\x96\x18\x0f\xc4\x72\x4c\xd5\x1a\xe8\x50\x98\xea\x56\x9c\x97\x85\x13\x8e\xf3\xe2\x7d\x55\x84\xff\x46\xad\xe4\x48\x37\x4a\x32\x09\xff\xa5\x67\x82\x7e\x12\xdd\xb9\x50\x01\xc3\x8e\xda\xde\xf6\xd1\xe9\xba\x89\x56\x93\x22\x47\x32\x16\x2e\x1b\x5b\x73\xbe\x51\x43\x10\x27\x79\xd8\xb5\xd4\xb6\x24\x24\x9e\xa5\xb9\x11\x3a\x87\x72\x63\x73\x0a\x95\x16\x89\x2b\xbb\xcf\xb9\x12\x7c\x5d\x0d\xcc\x1e\xea\xda\x28\xa2\xe6\x75\xc7\xd3\xfa\x3e\x0d\x0a\x5f\xd7\x75\x55\xaf\x44\x61\x9e\x0b\x2f\x2a\x07\xc2\x34\x44\x12\x14\x8b\x77\x46\x0a\x36\x7c\x08\x89\x07\x49\xb3\x86\x27\xe5\xc2\x8a\x10\x22\xfa\xec\x99\xe9\xe6\x85\x89\xa2\x0d\xc2\x4b\xc0\x73\x62\x95\x6a\x47\xe1\xf9\xfc\x57\x1c\x03\x68\x39\x9d\x42\x00\x4a\x5f\xc8\x5d\x3e\x81\xf2\x97\xcf\x52\x98\xcc\x9f\x56\x24\x0b\xd3\x87\xc1\x9a\x81\xd6\x93\x60\x22\xbc\x0b\xcb\x72\x30\xdc\xb1\x56\x09\x34\x16\x17\x5b\x71\x12\xdb\x7c\x60\x23\x26\x53\xfe\xea\x54\x13\x84\xb0\xed\x54\x19\x2d\x96\x5a\x91\x35\x69\x2c\x0d\x85\xc2\x59\x43\x8b\x87\x6f\x9c\x4d\x59\x49\x29\xa9\xd8\x50\xaa\x85\x6f\x6a\x30\xd1\x9b\x4a\xd9\xc7\x14\x59\x9e\x9a\x88\x5d\x0c\xf7\xe6\xaa\x9b\xf5\x62\x2d\x77\x8d\x59\x53\x8a\x3b\xc2\x4e\xaa\x3a\x8d\xaa\x20\x47\xe2\x99\x18\x45\x56\x4c\xb7\x13\xc2\xf5\x58\xb4\x91\xd2\xbf\xe8\x14\x1b\x8f\x50\x5a\x51\xd8\x0f\x28\xad\x28\xf4\x07\xaa\x0d\xfd\x7d\xca\xbf\x08\x85\xb9\xef\xde\x42\x06\x0e\x39\x1a\xf8\x8a\x7c\x1d\x28\xf2\xa2\xd3\x9a\x87\xe2\x74\x9d\x71\xa3\xcc\x5f\x28\xa3\x89\x20\x03\x2b\x9f\xaf\xab\x09\xcb\xf9\x72\x92\x47\x69\xd2\x67\x40\xa7\x44\x8f\x0a\x4b\x58\x43\xc5\xd0\x4a\x8a\x9c\x0a\x82\x0d\x45\x1b\x0a\x6c\xb7\x64\x56\x7d\x6e\xa5\x67\xfb\x36\xee\x65\x08\xd7\x35\xfc\x17\xcb\x10\x3e\x09\xd2\xb9\x6f\x2a\xc0\xd2\xc8\x6c\x24\x05\x69\xb2\x2f\x6e\x12\x91\xcf\xe6\xdd\x1a\x76\xc4\xc5\x96\x89\x4d\x94\xac\x28\x5a\x68\x9d\xe4\xfa\xa1\x22\xb6\xcb\x6c\xcf\x60\x0d\x60\x69\x7d\x30\xf6\x00\xb6\x0f\x2a\x99\x95\xb9\xb9\xd6\x4a\x12\xf5\xa8\xea\x86\x45\xfb\xdd\xb1\xd2\xe4\x44\x0a\x47\x78\x0c\xc5\x41\xed\x94\x86\x47\x69\x07\x5e\xa2\x7a\x81\x14\x12\x5c\xd3\xa9\xe9\xae\xae\x9b\x14\xea\x65\x70\x94\x1e\x4c\x21\x68\xbd\x4e\x40\x55\xd8\xe7\x95\x57\xd0\x9e\x5d\x2e\x68\x7a\x38\x14\x42\x66\x14\xe8\x71\x73\xac\xc0\x32\xc7\xc7\x15\x30\xdc\x81\xd2\xbe\xef\x2d\x3f\xeb\x1d\xd5\x25\xf6\x69\xde\xc2\xc6\x00\x78\xfe\x36\x1c\x63\xd1\xf4\xf6\xb1\xd4\x6d\x55\x87\xb8\x3f\x9e\x12\x6d\x57\xbd\xaa\x80\xd8\x21\x13\xb5\x7d\xd2\xf0\x7d\x40\x80\x16\x20\xc1\x77\x19\x95\x25\x01\x88\xd2\x66\x81\xab\x75\x45\xe7\xf6\x39\x9d\x20\x9e\x68\x39\x42\x88\xb3\x6e\x42\xf0\x1a\x1e\x08\xa1\x1b\x9d\x92\x42\x24\x72\x0c\x4e\x6b\xfc\xc8\x58\x65\x23\x8f\xa8\x6c\x36\x97\x6c\xa5\x1d\xaa\xaa\x2f\x38\x34\xab\x2e\xe5\x84\x24\x1e\x90\xfd\x78\x88\xbb\xca\xed\x38\x5f\x09\x56\x17\x16\x5a\x61\xdc\xc7\xd3\x90\xe2\xa6\x57\x65\x0e\x7c\xc0\xf8\xba\xd6\x6b\x29\xb2\x30\xb6\x59\x66\xb3\x47\xcb\x41\x47\x9a\x9e\x21\x00\x22\xd4\x56\xce\x19\xd2\xe5\x47\x68\x9c\x11\xfd\x7e\x08\x33\xcb\x92\xde\xf4\x58\xf0\x17\xee\x69\x1a\xcd\xf3\xe3\xa9\x9e\x36\xc5\x13\xfc\x9b\x63\xaf\xb3\x78\x72\xbc\xb5\xef\x7b\x6e\xae\x65\x90\x4f\x75\xfb\x78\x79\x9f\x83\xf1\xd7\x20\xc4\xa2\x22\x76\xe8\x24\x1c\x90\x27\xf4\x69\xa9\xb3\xaa\x2f\x3f\xbf\x0c\xbb\x85\x30\xf3\x2e\x8e\x3a\xbe\x81\x85\xe6\x98\x39\x4d\xed\x28\x0f\xf3\x30\x29\xb2\x08\x5d\xe8\x8e\xcb\x63\xd1\x4b\xf0\xd4\xb0\xce\x94\x7e\x81\x87\xf5\xd7\xc1\x49\x14\xa0\x7a\xc5\xee\x6e\x38\xb2\xf8\xfb\x1a\x09\x7b\x85\xea\x86\xaa\xa8\xaa\x32\x1e\x2f\x49\x77\xe0\x1e\x64\x4f\xa4\x69\x4a\x91\x0f\xec\x6a\x7b\x0e\xcd\xe6\x44\xe5\x8b\x37\xb5\xa4\x1d\x96\x14\x79\xfb\xbf\xf4\xe9\xb6\x02\xbc\xa5\xe1\x5a\x69\xe1\x3d\x1c\xeb\x08\xfc\x3a\xbe\xa9\x73\x6e\x32\xdb\x4d\x89\x13\xd7\xf7\x7e\xa3\x83\x56\xc0\x9f\x5b\x01\x15\xbd\x06\xb2\x42\x4e\x65\x7e\x69\x59\xf8\x40\x2e\x07\x9a\xee\x7d\xcd\x66\xf9\xd0\xc6\xf9\x5e\x3a\xf1\x5c\x15\x64\xbf\x23\x50\x2b\x97\xe9\xe6\x4d\xf2\x61\x11\x6a\xbe\xae\x44\x97\x80\x72\x67\x5a\x4e\x80\xf7\x85\x4e\x5b\x41\x6d\xb6\xb7\xa7\xb5\x18\x97\xe6\x0f\xf2\xb1\x09\x4e\x05\xf8\x95\xb3\x6d\xd5\xf5\xf3\x1a\x66\x05\x37\x7f\x41\xb3\x22\x55\x57\xda\x1e\x5c\x66\x42\xa3\x91\xf3\xd3\x3d\xe9\xc9\xb7\x2a\xf2\x62\x92\x1f\x0a\x63\xd2\x07\x3f\x84\xc8\x04\xb9\xb1\xdf\xa5\xb1\xe4\x6b\x95\xda\xed\x14\x61\x94\xef\x28\xdd\x3a\xd7\x2e\xb7\xbc\xcf\xe3\xf8\xf7\x4b\x79\x90\x29\x10\x9d\x57\xb7\x2c\xc4\xeb\xbf\xa1\x2c\xd4\xd9\x1a\x9a\x88\x96\x29\x7a\x21\x70\xff\x48\xba\xfe\x39\x0d\x2e\x5f\xd7\x51\x28\x1d\x80\xd6\x74\xd6\xd0\x4a\x67\x1c\xca\x8b\xee\xd9\xa3\x6e\x31\x3c\xfb\x18\x6d\x48\xa7\x33\xe5\x80\x62\x0f\xc6\x9e\x99\xf0\x06\xc6\x1a\x25\x22\xce\x95\xc1\x96\x70\xc2\xc0\xf1\x37\x38\x3c\xef\xa9\xb1\x76\xab\xb8\xe1\x04\xe3\x02\x9e\x3f\xd8\xe1\xc6\xc4\xa3\xe0\xb7\x51\x83\x97\x30\xcd\x54\xc3\x7c\xdd\xb4\xce\x36\xee\xaf\xe5\x3f\x7e\xae\x55\xc4\x91\x35\xd9\x00\xcc\x19\x70\x45\x36\x03\x5a\x5c\xf0\xd5\xde\x18\x4f\x01\x9c\xf6\x7b\xf8\x8c\x56\xda\x88\xbb\x36\x7d\x54\xb5\x7a\xb0\x4a\x0a\xdf\x8c\x7d\x5a\xe4\x14\x79\x25\x9a\x04\x1e\xb1\xd3\x07\x0a\x15\xc3\xc5\x32\x29\x76\x2a\xc1\xf2\x0f\x03\xdf\xac\x71\x9f\x26\x02\xf0\x80\x93\x75\x68\xab\x11\xf3\xdf\xd7\x49\xfd\xf8\x67\xb7\x87\x46\x49\x06\x9c\xa0\xc4\x0d\x5e\xfc\xe3\x98\x73\xd0\xb3\xbc\x18\x76\x22\xdb\xf4\x1d\xa0\x77\x60\x6f\x44\x80\xd9\x47\x66\xb7\x5d\xbd\x3a\x8c\x73\x22\x4c\x20\xfd\x39\x1f\x68\xeb\x80\xe3\x4d\x05\x4e\xbe\x5e\xd5\xd4\x9e\x6f\x8d\x92\xcc\x25\x1b\x10\x68\x9d\xd5\xb8\xaa\xb3\x4a\x3b\xcc\xa6\xdc\x40\x8b\xd0\x94\xe3\x4d\xbe\xf1\x6f\x92\xac\x85\x36\xcf\x76\x60\xed\xa1\x55\xe5\x19\x4a\x50\x69\xd1\x0d\x47\xf9\xe9\x51\x50\xa7\x71\x40\xc2\x68\xfc\x2b\x7c\x39\x7a\x18\x66\x26\x9e\xf3\x77\x44\xb9\xe8\x70\xe4\x43\x0d\xd7\x4a\x5f\x3e\xb5\x97\xc0\x73\x51\x43\x9a\xac\xda\x5d\xf4\x3b\xac\x70\xa4\x95\xbd\x51\x6b\x87\x73\x77\x4b\xb3\x56\xbf\x4f\x3e\xd2\xe6\xe9\x80\x8c\x32\xf6\x26\x7a\x16\x9c\xdc\xd9\xfe\xc5\xcd\xd3\x35\x8a\x90\x8b\x54\x09\x8a\x24\x2e\xe3\xea\x00\xce\x59\x29\x15\x3c\xbd\x55\xc8\x72\xa9\xf5\x73\x4d\x45\x54\x74\x1e\xeb\xdb\xf5\x90\x3b\xd7\xeb\xf7\x6b\x88\x84\x96\x5a\xa3\xc1\x46\x16\x76\xc3\x2c\x6f\x28\x94\xd0\x6b\x2a\x9b\xfc\x5a\xe5\x63\xa8\xf3\x95\x31\xa7\xf4\xc1\x20\x57\xfc\xae\x92\x1a\x7f\x57\x09\x37\xa6\xe1\x4a\x36\xe3\xfb\xda\x36\x03\xff\x4c\x10\xcf\x82\x61\xf9\x7f\xe9\x14\x80\x39\xb8\x5d\x33\x38\x5f\xa5\x86\x9a\x81\x4d\x2d\x2a\x9c\xd8\x07\xdf\x54\x7b\xe2\x9b\x81\x56\x1a\x8b\xf2\x57\x3b\x45\xba\xa2\xc8\xb7\xcf\x6b\x60\xca\x79\x55\x6d\x1d\x84\x2b\x2b\x61\xcc\x36\x17\xd6\xfc\xa4\xb2\xec\x27\x5d\x63\x71\xcf\x0e\x79\xe9\x30\xac\x42\x71\x05\x9f\xd4\x74\x2b\x45\xb7\x6b\xb3\xac\x5f\x44\x3b\xcb\xc7\x83\x51\x61\xe2\x09\x2c\x25\xa6\xb4\x10\x99\x04\x2c\x79\x89\x76\x3d\x39\x00\x1a\xb8\x71\xe6\xde\xa1\x04\x84\x34\xce\xfb\xc4\xc5\xba\x35\xab\xa5\x2f\x4a\x69\x1a\x06\xe0\x93\x2d\xc3\xa6\x6e\x90\x63\xcf\xd7\x64\xbc\x61\x25\xfe\xf7\xb1\xe2\x54\x79\xa0\x10\xfb\x91\x35\xab\x22\x5a\x07\xcf\xf1\xa2\x62\xf3\xb8\x58\x93\xa2\x3c\xd0\x82\x00\x2a\xd6\x10\xa6\xf9\x34\x7d\x86\xaf\xa7\x12\x1e\x69\xba\xf1\x0c\xbc\x17\x06\xad\x8c\x95\xb2\xdf\x45\xec\x1a\xf8\x5b\xe7\x03\x85\x12\x3f\xab\x79\x05\xfe\x80\xc8\xee\x30\x3d\xb7\x29\x0d\x2d\x35\x74\x3a\x10\x71\x28\xdc\xa5\x15\x05\xff\xf0\x28\x76\x28\xbe\xea\x7a\xa0\x8a\x8d\x3f\x0a\xf4\xe0\x03\xab\xc7\xa5\x38\x44\x57\xf0\xe7\xb9\x40\x80\x9b\x3b\x94\x1e\xc7\xe4\xfd\x05\x4d\x97\xa8\x05\x36\x1c\xb3\xe0\x0c\x3c\x47\x57\xf3\x72\x42\xb9\x57\x68\x72\x04\xca\xe5\x8a\x8a\x89\xe7\xe5\x84\x89\xe3\x71\xe1\x9b\x3a\x92\x46\x7b\x68\x04\x0d\xf7\x86\x63\xbb\xde\x0d\x66\x0c\xbe\xa9\x70\x6d\x2f\x2e\x96\x0e\x64\xdc\x73\x0c\x6e\x18\x9d\xb3\x70\x70\xf8\xa6\xae\x99\xc7\x46\x99\xc5\xe6\x2b\x5f\x04\x96\x16\x02\x39\x7c\x5d\x57\xb3\xfa\x9a\x5d\x67\x57\xe6\x00\x17\x0d\xbf\xcd\x83\xcd\x77\x95\xb5\xe4\xca\x86\x43\x62\x9f\xc5\xc6\xe1\x7c\x13\xdf\x28\x69\x1f\x93\x65\xc5\x10\x27\xa4\x0a\x5c\x97\x5c\x53\x92\xa4\x8a\x63\x93\xa6\xc9\xba\xc3\x46\x60\x71\x1d\x57\x8d\x34\xc7\xbd\x74\xc6\x9a\x4d\xcd\x0a\x0b\x97\x8b\x4e\x34\xcd\x03\x0c\xdb\x43\x98\x57\xb8\xca\xd7\x2b\x91\xe4\xfe\xc5\xf2\x7f\x57\xb3\x9c\x29\xc9\x35\x65\x0b\xc3\x92\xf8\x46\xd5\xbf\x52\xbb\x66\xe3\x02\x33\x22\x40\xe1\x9b\xf8\x1d\xbe\x71\xd0\x0d\x1b\xd9\x15\x13\x43\x54\x1e\x16\x62\x16\x61\x8c\x3b\x21\x9d\xab\x79\xaf\x4e\x48\x38\x4b\xa2\xb0\x1b\xe6\x80\x08\x4a\x33\x99\xee\x2c\x53\x09\xfe\xd8\xae\xc1\x75\x12\x5c\xc8\x36\x8a\x8b\x5c\x52\xa1\xfc\x14\xbc\x96\x7f\x86\x87\x85\x29\x79\x52\x85\xdd\xcc\x8b\x80\x75\xb5\x1d\x48\x21\x4d\x92\xc8\x65\x9d\xb1\xaa\x0e\x9f\x50\xf4\x3e\xdf\x0f\xbc\xb4\x87\xe8\x29\xec\x54\x2c\x5e\xe7\x69\x57\xc9\xb5\x02\xcc\x9d\xd4\x1c\xdb\x0f\x03\x45\x60\x79\x47\x79\x76\xb7\x95\x8d\x3f\xea\x30\xe6\xc3\x24\xce\x07\x4c\x4a\x0e\x1f\x0e\xef\x2d\xed\xa6\x8a\xcc\xf7\xae\xea\xd9\xca\x92\x78\x03\x34\xd5\xce\xd3\xff\xc2\xcb\xce\xd3\xa7\x0f\x21\x35\xf3\x3f\xf0\x16\x70\x00\x15\x97\x58\xfc\xb8\x56\x21\xcd\x0c\xb7\xa8\xb9\x2a\xfe\x92\x73\x35\x58\x83\x56\x16\x0e\x47\x11\xdc\x3a\x17\x9f\x95\x46\x11\xa6\xeb\x7d\x24\x6d\x90\x4c\xba\x5f\xa7\x11\xd0\x29\xfa\x7d\xa6\x66\x13\xe1\x02\x5f\xb0\xa8\xa2\xe5\x41\x1c\x52\xb0\x3e\x0b\x8b\xdd\x05\x5e\xcb\xa0\xca\x14\xeb\xba\x7a\x07\x76\x07\x0e\x02\xa7\xe2\xae\xd8\x58\x1a\x8e\x5f\x0b\xed\x1b\xe4\xde\x9c\x7d\xa6\xad\xf4\x81\xd9\x5f\x45\x1d\xde\xab\x35\x0f\x4d\xbc\x1a\xc6\x3d\xa5\xb4\x04\xb5\x59\x01\x58\x38\xbc\xd4\x20\x0d\x63\xb0\x5f\x22\xfb\x74\x2f\xf0\xfd\xc1\xf7\xea\x38\xa7\x47\x69\x32\x24\xf1\x0a\xe4\x99\x58\x94\x5e\xd5\xe1\x91\xe5\x43\xe3\xc8\x85\x3a\x58\x7b\x36\x4a\x2d\x12\x90\x38\x1a\xdf\x51\x2c\x5c\xef\xb8\x34\xa5\xc9\xba\x66\xc4\xc6\x63\xea\x55\xf9\xa6\xa6\xd1\x6c\xa9\xd5\x0f\xa3\x2d\x6c\xd8\x47\x15\xe8\xb2\x5c\xe0\x1e\xd5\x98\xf6\x1e\x6d\x38\x16\xcc\x3f\xa1\xbd\x88\xd2\xed\x61\x1c\x8d\x38\x0c\x4f\x21\x2b\x82\xc3\xe4\x5d\x05\xbf\xe2\x22\x0a\xf2\xa6\x7f\x80\x47\x93\x62\xa4\xcf\xb0\x08\x79\x89\xd4\x2c\x3d\xff\xfe\xe1\x3a\x19\x75\x3a\x5e\x4c\xc7\xd5\xa6\x98\xdb\x24\x50\xe5\xd8\x6a\x0b\xd2\xf2\xbe\x56\x6a\x09\x69\xd5\x54\x9b\x8f\x85\xe1\x24\xd5\xdd\x70\x0c\xb2\xaf\x29\xb1\xa0\x41\x18\x45\x60\x0a\x2d\xdf\x18\x4e\xd1\x29\x64\xe7\x30\xcc\x48\x82\xc3\xc3\xff\x2d\x1c\x02\x00\xb8\xdf\xad\x1c\xc6\x0b\x0b\xc4\xc9\x3c\xec\x44\x1b\x33\xbe\xcf\x84\xc1\x44\xf2\xd5\xe5\xfb\xeb\xce\x4b\xa6\x40\x73\xeb\xb6\x67\x36\xf2\x90\x49\x83\x00\x9f\x00\x64\x8a\xaf\xc7\x9f\x76\x8f\xbe\x16\xf6\x6c\xd2\x2d\x7f\x31\xcf\x59\x97\x10\x96\x78\x93\x3e\x20\xef\xaa\xf8\xfe\xef\x2a\x0d\xd9\x91\x4d\xb3\xc2\xf4\xd8\x6f\x70\xf4\x8b\xbe\xd9\xf8\xa2\x33\x86\xbd\x30\x22\x41\x00\x07\xfb\xbb\x44\xe6\x59\xfa\xcc\x24\x9c\x2c\xe2\xb0\xcf\x18\xde\x86\x07\x9c\x33\xaa\x5a\x66\xa1\x26\xfc\x38\xd0\x0a\x63\x92\x4c\x97\x93\x52\xba\x14\x54\x6a\xf1\x74\x1d\x8d\x7b\x6a\x3b\x26\x17\x1f\x06\xe3\x78\x0f\x07\x00\xdf\x54\x7e\x6d\x79\x5f\x19\xf4\xda\x95\xd4\x38\x36\x49\x07\x21\x59\x58\xd8\x9c\x6d\x2b\x1a\x84\x33\x75\x65\xf8\xa4\x93\x75\x8b\x14\x63\x21\x3e\x59\xf9\xae\xe2\xac\xf9\xb8\x31\xb5\x99\xcd\x81\x11\x11\x62\x03\xd5\xcc\x7a\x51\xa1\xbc\x99\xda\x16\x2e\xc1\x0f\x2b\xa9\x82\xfd\x8b\xad\x6c\x58\x4c\x71\xc3\xfe\xba\xae\xa6\xfd\x7a\x8d\x58\xde\x52\xab\x63\xb3\xbc\x49\xb9\x3a\xc4\xa3\xa7\x50\xed\xe2\x96\x61\x95\x18\x3a\x13\xb8\xee\x65\x6b\xd2\x47\x68\x2c\xdd\x2c\x3b\xaa\xf0\xcf\x62\x64\x60\xd3\x80\xb7\xe1\x0e\x15\x38\xb8\x82\x42\x55\x02\x62\xaf\xd3\x22\xc1\x96\xe5\x64\x04\x56\xe1\x6d\x25\xc1\xbf\x67\x52\x27\x34\x6a\x78\x84\x61\x41\xb0\x9c\xf9\x7a\x2a\x88\x30\x66\xa5\xc1\xa0\xf9\xf2\xb9\x37\x2f\x07\x8f\x79\xc5\xc7\x64\x7d\x07\x3d\xf3\x94\x8e\x34\x60\x31\xc7\x54\xc3\xd4\x99\x40\x29\x52\xa1\x58\xeb\x82\x4a\x97\xd7\xfa\xff\x54\xbe\x90\x5c\x3b\x12\xab\xc7\xf8\x5d\xd7\x7a\xe0\xb7\xd0\x9e\x80\x30\xe6\x11\x24\x8a\x10\x75\x7d\x03\x45\x13\x9c\x2b\x57\x14\xe1\xf8\x89\xb1\x27\x87\xb8\x4d\xf5\x02\x27\x41\xb3\xb8\xc8\xb6\x86\xcb\xcb\x52\x5a\x57\xfa\x24\xdf\xd0\x88\xe7\x0e\xbb\xd9\xc8\x65\x5d\x51\x50\xcb\x2b\x75\x89\xf6\xf5\x41\x98\xe7\xae\x10\xc9\xa8\xe2\xb1\x62\xea\xbb\xa1\xaa\xa7\xa3\x22\x7f\x8c\xcc\x22\x3c\x08\x00\x0b\xb8\x2e\x4a\x81\x10\x5c\xba\x99\x89\xe6\x18\x52\xde\xf5\xe5\x29\x76\x32\xac\x66\xee\x0e\x21\x3f\x01\xd7\x97\x01\x85\x80\x57\xfb\x9a\xa6\xc7\xb8\x84\xf1\x83\x03\x36\xd3\x56\x5c\xce\xd7\x54\x3b\x72\x6c\x57\x12\x4a\x69\xc5\x2b\xb3\xde\x08\x5e\x9f\xee\xec\x50\xc4\x34\xd7\x75\x52\xf7\xba\x02\xb9\xbc\x51\x5b\xa3\x8e\x4c\x11\x43\x28\xcf\xab\x8f\x5c\xd3\xec\x95\xd7\xc6\xc2\xce\x1f\x99\x78\xa5\x08\x33\xf7\xc7\xf0\x49\x59\xbe\x93\x6f\x2a\x8e\xdb\xc2\x42\x6b\xc0\x1c\xbf\x0e\x7a\x0e\xaa\x79\xc1\x73\xd5\x11\xee\x9b\x9c\x94\x81\xb4\xbe\xf1\x39\xa5\x34\x74\x6e\x0a\x0c\xdc\x4b\x56\x1a\x2a\x7a\xe1\x07\xe2\x1b\xe7\x7b\xf4\x8b\xaf\x85\xd9\xac\x87\xcc\x31\x8a\x91\xa6\xef\xbf\xdc\x4b\x58\x30\xe0\xf9\xa4\xf3\x09\x7c\x80\x3f\x05\x27\x93\xa5\xd3\xc6\xbb\xf8\xdb\x5e\x55\x59\x89\x89\x42\xc9\x5e\x09\xa6\xe4\x97\xb4\x80\x92\xca\xc2\x5c\xfe\x44\xb5\xc5\x6e\x12\xf7\x6d\x6a\xe3\xae\x55\x85\xe5\x07\xf8\x2c\xdf\x28\x1d\xdb\x6c\x64\xbb\x74\x42\x39\x1d\x5b\x95\x45\x9c\x77\xc2\x41\x2a\x7d\x44\x05\x19\x93\x6e\xec\xd4\x6a\x0c\x1a\x25\xfa\xf4\xc4\x1f\x74\xb3\x94\xa4\x54\x58\x68\x1e\xae\x6f\x8c\xc9\xda\x22\xd8\xfd\xb1\xe6\x99\xd8\xde\x56\xbd\x5e\x03\x6b\xd3\x19\xef\x5c\x5d\xc2\x8e\xc7\x26\xe7\xf0\x4e\xf3\xe5\xa1\xce\x72\xb2\x12\x7b\xce\x1f\x6c\x0d\x6d\x9e\x26\xa3\x24\x0a\x73\x86\x60\xd4\x32\x8f\xd7\xd8\xdd\x1e\x75\xa4\xbb\xb6\x6f\xd0\x90\x89\x5a\x95\xea\xe9\x29\x58\x53\x12\x01\xd4\xa6\x82\x18\x6d\x56\x76\x8d\x87\x00\x77\x10\x1b\x08\xb4\x9d\x1e\x46\xb0\xed\x35\x3c\x8f\xd9\x20\x19\x8d\x64\x27\xa8\xe2\xa8\x68\xe7\xdc\x53\xc9\xc5\xb5\x24\xcb\x14\x88\x85\x29\xb7\xf8\xa6\xf2\xe5\x8b\x8b\x07\x5a\x5d\x02\xb4\xf0\xd6\xc4\x72\xbd\x8d\x7d\xcc\x37\x75\xc5\x8b\x7e\x9a\xe4\x03\xbc\x05\xca\xdd\x80\x25\xf2\x75\x1d\x07\x24\xa7\x00\x13\x16\xe2\x12\xbd\x71\x3f\xc6\x97\x82\x3d\x4a\x10\x3d\x83\xdf\x28\x1d\x48\x8a\x7e\x81\xe9\xc6\x60\xc1\x3e\x86\x91\xe4\x1b\x35\x33\x4b\xcb\xff\x18\xd8\x60\x1c\x32\x37\x03\xb5\x37\x9f\x3f\x4a\x28\x07\xe1\xa2\xd9\x33\xc5\xac\xfe\xa4\x96\x0e\x3e\x0d\x4b\xcb\x2c\x79\x94\xa7\x62\xee\x5b\x3a\x1d\x45\x0f\xd5\x63\x4f\x98\xca\x02\x6e\xe3\xdd\xb1\x07\xb5\x9e\x84\xcb\x83\x08\xe9\x8f\x02\x45\xc2\x04\xae\x43\x1c\x6e\xac\x0d\xe2\xd8\x47\x1d\xe2\xed\x07\xf4\xc4\x4e\x04\xb9\x1c\x41\xfe\xaa\xb1\xa2\x23\xfe\x37\x63\x05\x98\xbb\xe5\x9c\xd6\x15\x6b\x52\xf6\xf1\x36\x6f\x2b\x74\xe5\x09\x4d\xe0\x7c\xb6\x9e\x58\xd9\xf4\x58\x03\x5e\xba\xaf\x15\x9d\xac\xae\x2b\x85\x69\xb7\x40\x98\xe2\x58\xfc\xca\x37\x91\x36\xf9\xc7\x14\x86\x3f\x79\x4a\x01\x28\xf8\x90\x85\x6f\x81\x83\x11\xd3\x0c\xca\x4c\x04\xec\xbb\xa9\x96\xe6\x52\x19\x4b\x2f\x1e\xd8\xbc\xac\x18\x09\x4e\x04\x0a\x84\x7b\x6f\x3c\x9d\xb8\x5f\xde\xb7\xb9\x49\xf5\x27\xa4\x50\x1e\x20\x4f\x23\xf6\x8b\xe6\x01\xa5\x91\xbd\x4c\xdc\x04\xd3\xf2\xa4\xd7\xa2\xd8\xf3\xd4\x44\xa3\x4a\xc6\xd3\xda\x27\xcf\x7f\x85\xd7\xef\x15\x95\x88\x0b\xe3\x32\x04\x6b\xaa\x68\xe7\xd8\x14\x40\x89\x9e\x81\xb1\xa5\x95\xd8\xb5\xf4\xcc\x87\x23\x88\x5f\xbe\xb4\xcf\x37\x57\x3b\x86\x97\x0b\x63\x0f\x31\x4b\xd6\x6c\x9a\x0f\x52\x91\x0e\x67\x28\x7f\xe0\x53\x4e\x55\x12\xb1\xf9\x83\xad\x0e\x61\x07\xc9\x2f\x2e\x5d\x61\x24\x6b\xb9\x0d\x4e\x53\x83\x21\xd2\xbd\x36\xe5\x69\x46\xdd\x41\xc3\x17\x6d\x41\xd5\xc5\xd7\x95\x25\xf4\xec\xb3\x2d\x1b\x27\xc5\xca\x40\x77\xcb\xd3\xb2\x46\x14\x89\xb6\x25\xa1\xa4\xf1\x0d\xa0\x33\xea\x38\xc8\x4c\x9c\x9b\x59\x7a\x34\x84\xe7\x77\xc8\x33\x54\x59\x2e\xdf\x07\x4c\xe3\x8a\xf7\x6e\x12\xe4\x86\xff\x2a\xd8\xc2\xdd\x37\x7f\xb0\xf5\xf9\x27\x68\xd1\xb8\x90\xdd\x13\x83\xfe\x85\x4e\x73\x3f\x1c\x2b\xa2\xb7\x9c\x28\x4e\x39\x2f\x87\x3d\x2c\xe0\x8d\xf2\x9d\xe0\x38\xdf\x56\xc5\x01\x56\x6e\x71\x44\xc4\xcb\xfb\x36\xdf\x19\x2b\x35\xcf\xab\x94\x14\x53\x2c\x07\x52\xdb\xf8\x66\xa0\x21\xd8\xb7\x60\x3c\xe0\x64\x7f\x47\xab\x1e\x15\x29\x9a\x31\xf0\xd7\x78\xe4\x53\x7a\xeb\x9d\x0a\x7c\xd5\xb1\x17\x66\x5d\xfe\x4b\x09\xa1\xe9\x2f\x25\xb6\x16\x88\x72\xb6\x1a\x7e\x62\xcb\x74\x9d\x7e\x75\x94\x98\x18\xb5\x22\xe6\xfa\x0a\xbc\x5b\x70\xa1\xc2\xad\xc9\xaa\x9b\x4d\x5f\xdd\xfa\x00\x63\x8c\x4a\xc6\x35\xfa\x39\xac\xc8\xd3\xaa\xaa\xb3\x62\x63\x9b\x26\x05\x04\x61\x61\x2d\x41\x90\xcc\xd7\xae\x26\x95\x8d\x6c\x14\xd1\xce\xc1\x86\xfd\x90\x56\x28\x5f\x2b\xe9\x55\xc4\xd9\xd6\xd2\xc1\x3a\x7f\x90\x93\xdb\x20\x68\xe6\xeb\x3a\x31\xc2\x51\x11\xf9\xb4\x92\xb8\xd1\x0d\xd5\x39\xfd\x98\xda\x2b\xaf\x10\x5f\x37\x8c\xf3\x03\x25\xc1\xf7\x7e\xa0\xf8\xed\xbf\x05\x0f\x49\x80\x95\xb4\xac\xe0\xf5\x6f\x63\x93\x04\xc7\x13\xba\xcb\x8a\xdb\x73\x9e\x2d\xcf\x43\x22\xaf\x45\xa0\xff\x5d\x7a\x5b\xfc\x0a\x73\x50\xd1\xaa\x7c\x6b\xef\xc4\x53\x37\xd9\x08\x52\xbc\x18\x26\x57\xdc\x29\x9f\x42\x72\x82\xba\xa9\xba\x6f\x51\x0e\x75\x5d\xc3\x81\xc7\x29\x57\x59\xa2\xf7\x2f\x32\xa9\x4f\xfe\xd7\x8a\x37\xd5\xa0\x7e\x5c\x3d\xb3\x34\xaa\x38\x5b\xcf\xd0\x74\xf0\xb5\x2a\x11\xf4\xc3\x9e\x8d\xc2\x7c\x03\x26\x56\x0c\x88\xea\xc1\xf9\xe1\x58\xf3\x10\x5d\x53\x1f\x4d\xd2\x1e\xf1\x33\xcf\x34\x5c\x0c\xc5\xc4\xe8\x4e\xe4\xd9\x8d\x20\x90\x41\xa2\xa3\x24\x2b\x6c\x3d\x5c\xb3\x42\xc5\x81\x88\xee\xb0\x86\x14\x5e\x83\x83\x82\x7f\xf9\x15\x3a\xd2\x44\xca\xc2\xdb\x6d\xdf\x11\x09\xea\x58\x47\xac\xe4\xfa\x20\x1e\xaa\x82\x21\x20\xa7\xc8\x97\x6c\x9b\xf8\x42\xed\xa8\xe8\x44\x61\x36\x20\x9d\xeb\x4d\x8e\x5f\x60\xaa\x4e\x07\x2a\xd4\xfa\x41\xc5\x21\xdb\xbf\xd8\x5a\x0b\x13\x08\x78\x62\x8e\x04\xec\xde\x70\x14\x68\x47\xb4\xbe\x71\x41\x7a\x09\xc4\x77\xce\x0c\xa3\xb0\x92\xb0\xe3\xe7\x14\x9c\xff\xc2\xb8\x31\x7f\x70\x13\x22\xdf\xd2\x44\xd0\x5c\x02\x00\x40\x71\x32\xc1\xa4\xf1\xc7\x03\x35\x8d\xaf\xab\x9f\xed\x26\xc3\x51\x64\x0f\xa9\xf3\xe6\x9e\xae\xe8\x28\x64\xd7\xa8\x88\xc3\x6c\x30\xb4\x71\xde\x54\x0c\xd6\x27\xc7\x0a\x38\x07\xde\x7f\xfc\xfc\x9d\x60\x6b\xb7\x6e\xb9\xfe\xfa\x49\x6a\x87\x40\xaa\x8a\x43\x0c\x3b\x0e\xbe\x31\xbe\xae\xa4\xd2\x16\x16\xa4\xe0\x2b\x18\x7e\xee\x45\x0a\x7c\x6b\xcc\x61\xd8\x05\xfa\xfb\xd5\xb0\xd7\x54\xb4\xfa\x77\x03\x0d\x2e\xe2\x13\x0d\x39\x80\xd3\xaa\x1b\x78\x34\x48\x4d\xc6\x42\x8d\x4c\x76\x43\x4e\xa8\x10\xdf\x6c\xb5\xcc\x07\x5f\x6c\xf5\xa3\xc4\xa0\xfb\xd7\x79\xad\xca\x21\x55\x61\x4c\xd8\xa5\xfe\x70\x1c\xbe\x3f\x09\x3f\x00\x6b\x96\x33\x2c\x88\x08\x6f\x8d\xb7\x70\x9f\xb8\x83\x6e\x76\xa2\x02\xe9\xf7\xd4\x0c\x76\x6c\xf8\x35\x5e\x63\x8b\x7e\xb6\xcb\x75\x2a\x2b\xc7\x83\x48\x57\x36\x86\x31\x44\x5b\x67\xb4\x75\xc3\x76\x82\x01\x3f\x81\x43\x12\xa7\xe7\x9b\x63\x4f\x7c\x7e\x71\xfc\xa9\x2a\x10\x64\xfe\xe0\x13\xe5\xfe\x45\x0a\xea\x2e\x0c\x1c\x20\x49\x5c\x17\xc7\xf6\x80\x4f\xec\xb8\xb8\x97\x1c\xf4\x8f\xed\x82\xd4\x44\x3d\x84\x78\x13\xaf\x20\x80\x75\xda\x09\x30\xcc\xcc\xef\x81\x2f\xdb\x3e\xa1\xf0\x01\x03\x7e\x74\xec\xd1\xd3\x77\xc6\xca\x44\x1c\xa7\x00\x00\x1b\x9d\x29\x6a\x05\x1a\xbb\x47\xb1\x61\x86\xd9\x33\x18\x7d\xd7\x70\xfc\xf2\xf2\x3e\xf6\x39\xfe\x6f\xbc\x8e\x60\x17\xe8\x3b\xb0\x2e\xee\x92\x05\x83\x1b\x0d\x44\x1b\xec\xf6\x39\x8c\x06\xbe\x8b\x55\x86\x85\xa5\xb9\xe1\xc8\xc3\x81\x77\x44\x76\xf0\x31\x2c\x0b\xcc\xc3\x8f\x03\xcf\x65\xfa\xdd\x27\x41\x3f\x03\xc7\x71\x0f\x31\x33\xe0\xc8\x7b\x1f\x53\x87\x1a\x07\xa8\x76\xb0\xc8\x9f\x40\x1d\x14\x08\x9d\xab\xe0\xaa\x73\x71\x83\xef\x3e\x98\x99\x94\x43\x86\x7f\xb8\x87\x5c\x06\x4e\xb9\x99\x0a\xaf\xd5\xdc\x5c\xab\x53\x9e\xcc\x22\xb7\x8a\x11\xbc\xa1\x80\xc6\x37\x54\xa9\x63\x64\xd3\xae\x0d\xd7\x2c\x6c\x05\xdc\xbe\x43\x54\x55\x93\x4e\x55\x95\x68\xaa\xa4\xa6\xa0\x41\x3d\x94\x74\xbb\x38\xc2\x34\x3c\xe2\x09\xd7\x50\xb5\xb3\x48\xb0\x28\xbf\xc9\x69\xa3\xd4\x61\x2f\x29\x51\xa9\x51\x9a\xf4\x93\x22\xa6\xf0\xcb\x91\xc1\x1c\xc7\x20\xf0\x8d\x2b\xd2\xe7\x49\xd1\x1d\x4c\x77\xaf\xa0\xa9\x91\xaf\x27\x9f\x52\xb5\xf5\x6e\x1e\x46\x61\x6c\x4d\xaa\x3b\x64\xfe\x74\xac\x84\x91\xff\xb4\x8a\x6e\x9b\x6b\x0d\x2c\x55\x48\x14\x9a\xe2\x8e\xd6\x3e\xbc\xa3\x4a\xd3\x24\x07\x92\x84\xc8\x43\xc0\x35\x7f\x7c\xa2\xfc\xf4\xc7\xdb\x35\x3d\x02\x79\x18\xaf\x42\x37\xa1\x7c\x70\x21\x51\x52\x40\xcb\x32\x88\xf4\x56\x25\x07\x07\x8d\x13\xbd\xd8\xef\x45\x2f\x34\xec\x68\x64\xd3\x2c\x89\xc3\xee\x54\xb7\x32\x6d\x64\xe9\x5c\xae\x6d\xa0\x17\x3d\x90\x8d\x86\xe2\x2f\x44\xe0\x22\xa5\x1e\x8f\x40\x36\xfd\x34\xec\x9a\x78\xc6\xa3\xbd\x1e\xc1\x7e\xc2\x86\x38\xa3\x8a\xa8\x17\xb4\xae\xd3\xae\x49\x0d\x25\x7b\x4e\x4d\x2a\x0d\xc7\xea\x08\x93\xcd\xd7\x2a\xf5\x6e\xf2\x3c\xec\xaa\x56\xb7\x7b\xd3\x92\x8f\xe5\x4f\xf2\xb6\x73\xe5\xb4\x7e\x19\xf4\x95\x9e\x5c\x19\xea\xc0\x54\x80\xe5\x94\xaf\xa7\xa3\xbc\x3c\x7b\xa4\xe1\xec\x0b\xbe\x50\x68\xe8\x15\x75\xca\xfd\xc0\xcb\x54\x62\x16\x38\x52\x22\xb7\x07\xb9\x8b\xcb\x5a\x68\xec\x3e\x7c\x7d\x98\x81\x25\x1a\x51\xe4\xef\xee\x6b\x12\xe6\x28\x01\x19\x07\x22\x9e\xb3\x2a\x62\xfc\x2d\x6c\x33\x64\x75\xce\x2a\x1e\x20\x34\x2f\x8b\xc2\x90\x84\x48\x59\x77\x60\x7b\x85\x77\xd8\x1d\xad\xf7\xe2\xa2\xeb\x12\x79\x52\x0f\xaa\x1d\x8e\x38\x7b\xcc\xbf\x4d\x23\x24\xcf\xb1\xf5\xe4\x3f\xf8\x62\x19\xea\x87\x6b\x61\xaf\x60\x67\x1a\xce\xd1\x7d\xd5\xe6\x7d\x5f\xe1\x93\xcd\x7f\xe2\x15\x00\x9a\x20\xba\xa7\x33\xf7\x7b\x4f\x11\x28\x0d\x51\xcf\x93\x93\xc6\x2f\x48\x1b\xea\x31\xc2\x72\x89\xf2\x21\x8d\x23\xca\xd7\xcc\xdb\x02\x07\xeb\x01\xf0\xee\x48\x53\x5d\x0f\x3c\x42\x94\x43\x41\x14\x07\x1e\x9f\x00\x5c\xc0\x7f\x36\xf6\x78\x8c\x73\x01\x95\xc7\x70\xfc\xff\x01\xd2\x4b\x18\xd5\x9b\x81\x62\xb5\xda\xd3\xf6\xe6\xf8\xfd\xb1\x22\xf2\xd8\xdd\xd6\xb2\x28\x8f\x4d\x68\x85\x39\x8a\x84\xd2\xb8\x23\xe1\xbd\x9d\xb2\xe5\x08\xd8\x1e\x69\x2b\x9d\xf0\x47\x29\xdb\x42\x13\xf2\x33\x3f\x35\x51\xdb\x73\xac\xf4\x9f\xef\xe2\x68\xc6\x5e\xf8\x74\x5b\x49\x15\xbc\x8d\xc3\x4c\xd2\x18\xbe\xbf\x7a\x47\xdb\xfb\x4f\x20\x9e\xdd\xe9\x61\x14\x08\x6c\x5d\xb6\x69\x6e\xde\x71\x27\x95\xaf\x29\xda\x02\xe5\x84\xf1\xb5\x26\x33\x3d\xa7\x31\xfa\x9a\xec\xce\x94\x66\x8c\x6c\x18\x13\x24\xd1\x11\x24\x64\x49\x3e\xad\x91\x27\xc3\x21\x4c\xbb\xa8\x53\x7b\x0c\xd3\xf9\x4a\xbd\x95\x30\xa6\x3d\xdb\x91\x56\x90\x3a\x41\x9c\xbd\xba\xe5\x82\x83\xd4\x72\x85\xb9\x5c\xb9\xa7\x77\x52\x7b\xcd\xf6\x36\x1e\xf5\x9a\x9c\xc7\xd8\xc3\xd3\x19\x48\xe4\xa9\x58\x1a\x94\x67\x35\x50\x5d\x53\xdc\x20\x8e\x9c\xe7\x7d\x1a\x3c\xb6\x7c\x63\x8f\x35\xdd\xdb\x56\x1c\x1a\xef\x8c\x55\x99\xf7\x54\xa5\xcc\x3b\x37\xd7\xca\x6c\x4e\x85\x12\x1c\xf7\xdc\x05\x25\xca\x8b\xf4\x61\xd8\x1c\x50\x24\x73\x7d\x5f\xeb\xc4\xdd\xad\x18\xf6\xe5\x7d\x07\xca\x73\x9f\xba\x21\xf8\xa8\x14\xda\x2a\x5a\xe3\x7c\x53\x27\xe1\x6d\xca\x18\x04\x03\x23\xd9\x6e\x1a\x0c\x49\x77\x6b\x76\xe7\x68\x68\x7b\x33\xbe\x04\xb3\x7d\x42\x5f\xce\x37\x6d\x95\x3b\x3c\xa6\x74\x93\x8f\x55\x2c\xcb\xc2\x42\x2b\x32\xdd\xd5\xa8\xc8\xf2\x72\x39\x39\x44\xe5\x71\x95\x1e\x39\xae\x78\xf8\xd7\x07\x61\x9a\x4a\xf7\x33\x2c\x1b\xd6\xb7\xb4\xdf\xeb\x8e\x8d\x4a\x4e\xe6\xa5\x7d\x2f\xb4\x42\xe1\xd0\x81\xd3\x70\x41\xc1\xfc\x2f\xb8\x4e\xc0\xaf\x15\xbd\x15\x27\xb3\x8d\xe2\x36\x74\x2e\xf9\x5a\x77\x2f\x86\x91\xc9\x14\x76\xe3\x5d\xda\x62\xc2\x29\xad\x50\xe5\xa6\x74\x89\x7c\xcf\xe7\x25\x6c\x73\xd1\x52\xf1\xe0\x24\x6b\x65\xf5\x3b\x5a\xf6\x45\x47\xd1\xee\x85\xd4\x6d\x96\x87\x6b\x06\x42\xea\x4c\xf2\x4d\x4f\x28\x84\xdf\xd5\x56\xb9\x9e\x5d\x0b\xa3\x2d\xd2\x29\x0d\x47\xe2\x59\x6d\x27\x7d\x69\xdf\x7c\xab\x0f\xfe\x14\x25\x7b\x70\x33\x50\x99\xec\x9b\x4e\xc4\x37\x4f\x4d\x9c\x99\x2e\xe0\x8f\x4a\xb5\xe4\xbd\x40\xc3\x18\xde\xab\x2c\x80\xf2\x47\x7a\x61\x96\x17\x69\x47\xdc\x2e\xa6\x26\x0e\x3c\x0d\xda\x39\x45\x57\x52\xc4\xdd\x64\x8d\x71\x6a\x22\x49\x42\xdb\x46\x14\x7a\x7c\xfe\xa7\x9f\x24\x39\xa1\x7d\x1a\xbe\x76\x7f\x92\xec\x03\x5f\x57\x1c\xc0\xf9\x83\xad\x28\xcc\xf3\xc8\x92\x97\x03\x37\xf1\x5d\x85\xad\xd9\x33\x71\xe9\xe9\xff\x66\x2f\xe1\x1a\x37\x2f\x2b\x6f\x65\x60\xe3\x74\x83\x77\x90\xea\xe1\x73\x0d\x7d\x81\x0f\x74\x56\x92\xd8\xee\xf0\xad\x5e\x37\x03\x4d\xd7\x04\xfa\x43\xfe\x17\x9c\x2c\xc8\x09\xdf\x1a\x4f\x55\xf7\x7c\x1f\xca\x2d\xc5\x43\x27\x38\x1f\x5a\x94\x98\xa7\x8b\xba\xfc\x50\x0f\x23\x5b\x0d\x73\xd3\x03\x75\x9f\xe0\xd1\x15\x91\xc9\xa5\x4a\x6a\xe5\xb9\x56\xd7\x46\xb6\x93\x7a\x3c\x8e\x10\xde\x28\xb8\xfb\x39\xaf\x83\x9d\xc4\x36\x93\x44\x96\x30\x6e\xf8\xea\xe0\x8e\xb6\x2f\xbe\x6c\xab\x08\x50\x97\x41\x6e\x96\xdb\xd1\x48\x96\x08\x7c\xa9\xf7\x02\xd5\x80\xf6\x5e\x65\xb7\x1f\x7c\xb1\x35\xf8\xdc\xca\xe7\x68\xa5\x20\xe6\xe3\x06\x14\xbe\xa9\xa0\x68\x4a\x13\xd8\x29\x32\x54\x44\xa5\xb1\xbf\xe1\xc4\x88\xa6\x99\x1c\x23\xa6\xae\xe2\xda\x01\xd6\xa0\x23\x39\x2d\xdf\x12\x9e\xdc\xdb\x53\xb4\x7f\x89\x19\x2a\x1b\x00\xdb\x28\x64\x5e\x35\x44\x25\x6b\xa1\xcd\x63\xfe\xc8\x94\x5c\xa4\x08\x49\xfa\x27\x32\x2b\xb6\x87\x7c\x82\x93\xb0\x71\xa5\x3b\x3e\x58\x84\x93\x42\x51\x7e\x54\x99\x47\xe6\x0f\xb6\xba\x03\x33\xca\xf9\x74\x97\x96\x5c\xb5\x8c\x8f\xb8\x0c\xe1\x4a\x6a\xd6\x40\x13\x81\x50\xed\xb7\xf1\x3b\x0e\x7f\xa3\x91\xb9\x1e\xda\x72\x53\x09\xfe\x7d\xab\x0e\xdf\x6e\x7a\xf6\xeb\x85\x61\xfc\x19\x53\xdb\x06\x1e\x1a\xf8\xae\x5b\x54\xa3\xd4\x76\xc3\xcc\x12\x8f\x02\xf2\x00\x4f\xd3\x06\x95\x76\x23\xd7\xf0\xbd\xf8\x4c\xbb\xe6\xe4\xb1\x45\x9a\xf4\x92\xc8\x09\x06\x23\x1b\x72\x77\x4a\x01\x44\x97\x11\x3f\x49\x33\xb4\x97\x14\xd4\x89\xb5\x2c\x68\x17\x70\x70\xe3\x30\xdc\x36\x51\xa0\xb6\x5f\xf5\xc2\x23\x26\xee\x85\x90\xeb\x84\x69\x6c\x50\x24\x8b\x1a\xdd\xdd\xb1\x0a\x0b\x8e\x2a\xb7\xab\x13\x82\x60\xaf\x74\x83\x31\xe4\x10\xd5\xc1\x26\xba\x43\x05\x40\xd9\x0e\x8a\x50\xbf\x88\x7b\x66\x4a\xd8\xf7\x03\x15\x39\x7d\xe0\xe0\x60\x51\x92\xac\xa2\x67\x0e\xce\xcc\xe6\x58\xf5\xcc\x9d\x55\x98\x86\x5b\x64\x44\x51\x3d\xb8\xa0\x70\x22\xdf\xb8\x47\xee\x22\x92\x47\x24\xe1\xeb\x58\x11\x7c\x2b\xec\x2f\x7d\x0a\xfd\xd2\x48\xc1\x83\x29\x0a\xc9\x9a\xd9\x89\x22\xb5\x8d\x4c\x36\x90\x30\x19\x55\x19\xec\x16\xbe\xf6\x86\xa5\xc8\xca\xa3\x75\x46\x2d\xea\x0f\xc7\xaa\x77\x10\xe9\x3b\x14\xcb\x40\x64\x28\xff\xdd\xb7\xa4\xf7\xcd\x5a\x92\x9a\x4e\x84\x9d\xef\x98\x8d\xca\xe5\xcb\x37\xaa\xbc\x34\x4a\x93\x11\x09\x8d\xb3\xb4\x2a\xb9\xce\x22\xb3\xfa\x49\x98\xe7\xcc\x1e\x52\x0a\x8f\x38\xdb\x44\x73\x6c\xeb\x0e\x7c\xae\xd5\x4f\x93\xd8\xc3\xb4\x04\xdf\x43\x6f\x28\x00\x9f\xbd\x53\xd2\x6c\x45\x6e\xd3\xc7\xa6\x08\xa9\x68\x04\x04\x71\x50\x3e\x21\xba\x5e\xc0\x79\x2d\x4e\x87\xb7\x44\xbf\x17\xa8\x4c\x15\x11\xac\x6c\x12\x85\xd0\x57\x37\x59\xe5\x4a\x9a\x81\x7d\x25\xe5\x0e\xb5\xcc\x88\xf2\xab\x22\x10\x3d\x53\x83\x15\x27\x55\xe1\xcc\xce\x50\xcc\x85\x2c\xd0\x1f\x6b\xbc\x0b\x43\x25\xe1\xbc\x3c\x9c\x4a\x25\x38\x70\x74\xd1\x0b\x93\xd9\x32\x7e\x14\x3d\x20\x7a\x47\xf4\xa1\x5c\x50\xf8\xfe\xdd\x6d\x5f\x51\x40\xbf\x81\xfc\x8d\x0f\x1d\xb2\xdc\xf4\xfb\x42\x4d\x2e\xdd\x0c\xbe\x1f\xf3\x9f\xd5\x31\x8f\x44\x49\xbc\xc2\x8e\x87\x03\xa8\x95\x0f\x2d\x54\x5b\xfe\x70\x5f\x0f\x7b\x9c\xc1\x16\xdf\x6a\xca\xe9\x7a\xd4\x45\x25\xaf\x36\xa7\x20\x50\x1a\x1b\x55\x3e\x98\x74\x6c\x39\x2a\x78\xd6\xf6\x99\x51\x65\x3f\x8e\x64\x1c\x1d\xb7\xcb\x2a\xdd\x08\x54\xf7\xc1\x2f\xea\x4a\x57\xd7\xc6\x36\x9b\x41\x94\x8c\xe9\xbf\x85\xc8\x9a\x6f\x00\x6f\xc4\xcc\xde\x40\x98\xcc\x37\x95\x23\x73\x69\x79\xa9\x15\x25\x59\x0e\x7d\x18\xc9\x0a\xd0\xe7\x9d\x34\x46\xb9\xb0\x10\x42\x6d\x6f\x6b\x07\x68\xc3\x00\x82\x8d\xd9\xe1\x42\x33\xdf\x28\xa2\x61\x44\x7f\x22\x45\x3a\xa5\x8e\xdf\x27\xa4\xcd\xac\x07\x55\xff\x28\x50\xf9\x3d\x86\x30\xc8\x14\x78\xab\xce\x2e\x2c\xcc\xd4\x5f\x2a\xad\x97\x7e\x6a\xe2\xd5\x7e\x91\xe6\xa0\xcd\xc7\x96\x61\x71\x19\xdc\x00\x99\xcd\xff\x10\x78\x75\x85\x1b\x15\xef\x63\xff\x62\x6b\x68\x7a\x56\xfb\x2b\x67\xb5\xbf\x52\xed\x1b\x5f\xde\xd7\x4a\x93\xc8\x02\x0e\xa1\x08\xaa\x9d\x1c\x49\xf0\xb3\xd5\xb3\x3a\xb7\x91\x9d\x26\x53\x86\x8b\x25\xbc\x2d\x1e\x4b\x75\x49\x95\xab\x4f\xa8\x8a\x73\xd7\x44\x36\xee\x19\x30\x2b\xc2\x80\xa2\xc1\x1b\x0b\xec\xdb\xb4\x83\x24\xdb\xea\x6b\x72\xeb\xd6\xae\xda\xb8\x37\x33\xad\x83\x52\x9a\x04\xfc\xdc\xc7\xf4\x39\xbe\x0e\xa6\xf4\x51\xf6\x38\x9f\x30\x59\xb5\xbd\x26\x16\xa2\xa3\x11\xf0\x8a\x7c\x0f\x69\x53\x23\x1c\xde\xd9\xf6\xa5\xcd\x75\x1b\x75\x93\xa1\xed\xcd\xfa\xa7\xfc\x10\xc8\x06\x14\xda\x99\x94\x0e\xa9\x25\x1c\xe1\xf0\x1c\x7e\xa4\x29\x94\x2f\x28\x9e\xf6\x9e\x8d\xc2\x8e\x2d\x7d\x59\xce\x43\xbb\x3e\xcf\xe5\x7d\xae\xcf\xd3\x85\x5e\x46\xeb\x11\x63\x8b\x6e\x2a\xe5\x87\x4d\x45\x8d\x64\x0f\x75\xc3\xdc\x0e\xa5\x60\x56\x47\x6c\x56\xd3\x4b\x96\xd2\x94\x82\x1d\xb1\xa1\x38\xfd\xc1\x7c\x25\xf8\xf8\x6a\xeb\x7c\x9a\x44\xae\x8b\x18\xa7\x33\x03\xe8\xf8\x46\x1d\x79\x9e\x5d\x08\x13\xa8\x3a\x17\x96\x1c\x7b\x73\x0d\xd4\xb0\x13\x92\x64\x5a\x1c\x87\x1c\x7b\x22\xcd\x86\xb4\x0e\x5f\x2b\xf4\x41\xd8\x4b\x93\xae\x49\x3b\x45\xca\x9c\x71\x82\x54\x69\x38\x7e\xde\xf3\x53\x0e\x72\x14\x59\xda\xcf\x12\xcf\x97\x3f\x21\x74\x11\xf4\x05\x0e\x22\x3b\x7f\xd0\x35\x2e\x96\x2b\x4d\x3a\x1a\xb7\x40\x60\x9e\x7d\xb6\xf5\x79\xc2\x60\xc0\xb0\x80\xcf\xc7\xc9\xc3\x38\x0d\x8c\xd3\x2a\xc7\x90\x14\x79\x3f\xb4\x51\x4f\xb5\xeb\x9c\x0f\xf4\x91\xa2\x0a\xd3\x36\x36\x51\xbe\x81\x80\x57\x7c\x72\xed\xac\x3f\xa5\xd4\xc0\x73\x45\xd3\x8f\x48\xe7\x75\x85\x73\x7f\xbd\xce\x1e\x90\x23\xd0\xf0\xd2\xbc\xd3\xcd\x8b\x0e\xba\x1b\x1e\xb2\xbd\x9d\x1e\x68\x82\xc5\x88\x7d\xf3\xf4\x44\x81\xc6\x2e\x04\x9e\x4c\xf0\x37\x5b\xe5\xc6\xd8\x64\x81\x3e\x49\x86\x4c\x31\x30\x2a\x49\xa2\x24\x5d\x4f\x12\x0e\xbe\x5c\x99\xd9\x85\xa2\xd5\xda\xd1\xfe\x45\xd6\x89\x6a\xaa\x93\xef\x2a\xbd\xae\x10\x12\xf9\xd3\xf6\xb4\xaa\xd1\x3e\xff\x0b\x5f\x68\xd0\x59\x04\x03\xb6\xad\xad\xca\xc4\xdb\x2a\x95\x84\x97\xf6\xbd\x50\x5e\xa0\x99\x4b\x9a\x97\x1a\x8e\x4d\xec\x54\x25\xd2\x7d\x79\xfe\x60\xab\x5f\xe4\x45\xca\xe7\xb3\x28\x91\x34\xbc\x2a\x89\xc2\x67\x8e\xcc\x0a\x82\x0b\x81\x8b\x34\x9c\x80\xca\xf7\x68\xf1\xa0\xa4\x76\x3e\xf0\xd6\x74\x68\xd2\x55\xdb\x8b\x36\x9a\xe5\x9a\x84\x6d\x42\x27\x36\x77\x1d\x2b\xdc\xcd\x4c\x45\x8c\x9b\x62\xaf\x22\xed\x0e\x66\x14\x7a\x9d\xb9\xc6\x34\xe1\xab\xd0\xa4\x34\x1c\x0f\xfd\x07\x4a\xe5\x3d\xb5\xc3\x30\x0e\xcb\x53\x3e\x57\xd8\xde\x73\x0a\xdb\xab\xbb\x56\xd6\x6c\xda\x0b\x1b\x2a\x95\xc0\x9a\x3e\x7c\x33\xb5\x39\x33\xd3\x6d\x2a\x4e\x8d\xb3\x8a\x50\xe6\x46\xe0\x75\xe1\x49\x91\xd2\x29\x18\x9b\x14\xf9\x17\x77\x0e\x2f\x3b\xb7\x28\xf8\xc9\x2a\x05\x16\x7b\xcc\x4f\x35\x1c\xc7\xdf\xf1\x40\x31\x35\xde\x52\x14\x7c\x1f\x8d\x15\xa6\xe4\x6d\x10\xd0\x20\x2a\x7a\x87\x9e\x8c\x95\x76\x69\xf8\xf1\xe2\x5c\x28\x70\x78\x8d\x72\x39\xc3\x9c\x5e\xa6\xb4\x1d\xf2\xec\xdc\x78\x00\x13\xb4\xb3\xed\x81\x05\xdb\x58\x14\x05\x41\xcd\x1f\x22\xa1\xea\xc8\x75\x9c\x00\xf4\x07\xf0\x79\xd0\x4d\xf6\x1d\xe4\x90\x85\x2c\x54\xa5\x1e\xaf\xd5\xe0\x94\x97\x5a\xd9\xba\x59\x13\xa6\x50\xd8\xb4\x93\xba\xc7\xe6\xe4\x14\xb4\xbf\xe8\x70\x16\x02\xd9\xe0\xe3\x70\x89\xb1\xbc\x90\x17\x95\x42\xad\x9f\x91\x7e\x6a\x0a\x10\x22\x23\xad\xb1\x49\x0b\x43\xc4\x2a\xca\x97\x15\x90\x7c\x4d\x17\x79\x36\xb2\x44\xb8\x85\x53\x09\x49\x9e\x53\xaa\x6a\x76\x2a\xf8\x94\xc4\xe6\x36\x4f\x93\xee\xc0\x0e\xc3\xae\x01\x0f\x3e\x7c\x81\xcf\xa8\x4c\xcf\x4f\x4f\x54\x6f\xff\xa9\x1a\xa6\xc3\x25\xf2\x6f\xd6\xc2\x4c\x3a\xcc\xf0\xc8\x27\x35\xde\xf0\xa4\xca\xf2\xaf\xd8\xf4\xc9\x72\x7d\x39\xa1\x00\xd7\xa7\xf3\x5f\xfd\x1d\x24\xa5\xe1\x0e\xcf\x4c\x14\x30\x61\x53\xa1\x67\xd6\xf7\x4e\x3c\x55\xc2\xcc\x64\x9a\x43\xfd\x0b\x2f\xb3\x8d\x38\x3a\xf6\x62\x62\xff\xed\x67\xda\x3e\x51\x79\x45\x59\x38\xee\x05\xc2\xfe\x04\x9d\x36\x2a\xf4\x0f\x69\x90\xe1\xa3\xee\xe2\x15\x85\xbf\xba\x3c\x56\x75\xef\xd7\x1c\x50\x31\x29\xf2\xc7\xdd\x51\xbb\xfb\x67\x50\x77\x92\x7e\x59\x25\xfd\x70\x9e\x63\x01\x41\x3a\x97\x23\x81\xdc\xc5\xcf\x69\x59\x91\xeb\x58\xb7\x53\x3d\x02\xf0\x95\xf8\x85\x1d\x47\x9e\x03\x88\xcd\x12\xca\x14\xdb\x71\xcf\x14\x35\x8b\xc4\x88\xe5\x40\x4b\xb5\x53\xfa\xef\x53\x9b\xe5\x69\xd8\xcd\x79\x8d\x62\x0b\xde\xc3\x16\x40\x05\x97\x71\xe4\xb2\xed\x24\x11\xd1\x4d\xa2\x10\x67\xaa\xa3\x32\x77\xe4\x9c\xb7\xd5\x61\xd1\x31\xd1\x0e\x8f\xcd\x9f\x01\x38\xc7\x35\xd8\x0a\x98\xea\x9f\x73\xf3\xf0\xd4\x0b\x0b\x6c\xb3\x9c\x0a\xac\xbf\x8f\x3d\xb4\xb2\x70\x2b\x1c\x01\xf1\x07\xb4\x45\xf8\xda\x73\x06\xd8\x34\xe9\x84\xdd\x8c\xca\x20\x68\x20\x7b\x0a\xbf\x84\x82\xf0\xe3\x94\x8b\x12\x6e\x53\x6f\xcf\xde\x51\xf8\xb8\x2c\x37\xb9\xcd\xd6\x6d\x06\x53\x2d\x3d\xbb\x0d\xc7\x7d\x7c\x54\x05\x6e\x7d\x93\xe5\x36\x9d\x51\x2c\x9c\x77\x31\x7e\x02\x3f\x6f\x38\x92\x25\x80\xf8\x05\x6b\x52\xa7\x4e\x91\x74\x57\xe9\x27\x39\x8b\xa3\xc8\xe2\x2f\xb8\xdc\x0a\x51\xf5\x59\x64\xa9\x60\x0d\x3f\xd3\xf6\xb2\x7d\xc9\x67\x31\xe0\x58\x22\x57\x82\x1a\xc6\xa3\xd8\x2a\xce\x82\xe6\x4f\xb4\xb7\x26\x1f\x60\xd3\x9e\x9e\xd4\xe8\x45\xe6\xca\xce\xc0\x5e\x22\x07\xc8\xd7\x75\x95\xa4\x2c\x4f\x8b\x6e\x79\xb6\xb3\xa3\x22\xaf\xa3\x5e\x2d\xd0\xc7\x99\x8d\xfa\x4f\xa8\xc5\x78\x56\xef\x25\x54\x44\x91\x30\xff\x17\x81\x32\xab\x3f\xa6\xaf\x83\xb5\xdb\xcd\xbb\x17\x09\x09\x86\x71\xa0\x68\xf5\x68\x5b\x75\x47\xa3\x6c\x80\xdd\xd7\xa4\xd8\x4a\x5a\xc5\xcb\xad\xe4\xc0\x99\xa5\xdb\x23\xc8\x06\xda\x31\xc8\xa7\x20\x93\x8b\x3d\xb2\x13\xe3\x8f\x03\x68\x47\x5b\xd5\x37\x4d\xbc\xdb\x81\x27\xbf\xf8\x37\xda\xaa\x83\x7b\xa6\xad\x58\x3e\x76\x4c\x94\xf6\xc9\x4e\x2a\x54\x0b\x5d\x02\xde\x45\x40\x2f\x1e\x0f\xc0\x3c\xba\x4e\x3e\xb8\xb4\x3e\x52\x61\x2b\x9f\x9f\x9d\x20\x32\x17\xa2\x35\xf8\x84\x52\xce\x5e\xb3\x29\x4a\x1d\x6e\x75\x3b\xb7\x9b\xcc\xe2\xe6\x6b\x63\x45\x99\x72\x22\x50\x24\xe2\xa8\xcc\x8a\x50\x8b\x4f\x1e\x74\xac\x8d\x1f\xf5\x95\xe9\x1f\xd2\xd3\x22\x7d\xcb\x36\x0c\x8f\x3e\xd3\xa6\xe2\x09\x5c\xb6\x37\x74\x76\xfa\xfb\x38\x96\xf9\x5f\xe8\x91\xf0\x78\xcc\x0f\x88\xc3\xaa\x41\xa7\x01\x86\xe4\x82\xce\xea\x7f\xac\xe2\x85\x51\x11\x87\x90\x1c\xf7\x44\xaa\xd3\xd4\x39\x5b\xd7\xea\x73\x54\xf2\x4a\xc3\x4e\xe1\x8a\x27\x30\xc0\xef\xc3\x38\xf2\x4d\x05\x5d\xf5\x32\x49\x36\x7e\xbd\x08\x53\xde\x94\x70\xd2\xb8\xc1\x05\x45\xe7\xd3\x9a\x94\xe3\xdf\x55\x7e\x5a\x12\x92\xa3\xc8\x74\x41\x1e\x26\x3d\xad\x1e\x25\xf0\x11\x4c\xa4\x50\x49\x7a\x5f\xb1\x17\x66\xab\x19\x41\x28\x51\x4a\xc0\x71\xe7\x38\xff\xe6\xe6\x78\x70\x2f\xe0\x7c\x14\x8c\x8c\xe2\xe6\x61\x0f\x05\xa5\xad\xaa\x00\xe0\xdc\x7c\x6b\x25\x4a\x3a\xc8\xc3\x4e\xc9\x61\xf3\x8d\x82\x5f\x75\x4c\x66\x3b\x26\x8a\x76\x79\xca\x7a\x2e\xff\x62\x73\x5d\x1b\x2b\xd4\xdb\x55\x5e\xdd\xac\x0e\x4b\xcf\x0d\x27\xf6\xbf\x53\x34\xb7\xa0\x93\x73\x3c\x97\xe5\xbc\x48\x6f\xde\xd6\xa9\x58\x58\x68\xc5\x76\x3d\x1b\xa5\x21\x7b\xd9\x38\x34\x91\xa3\xe6\xeb\xba\x0e\xdc\x7e\x18\x85\xa3\x30\x4e\x54\xe6\xff\xb2\x22\xfc\xbf\xaa\x9b\xf7\xbf\xa3\xc9\x7a\xd3\x64\x34\xb2\x3d\x2a\xb6\x38\x5f\x6d\xbf\xd7\xe7\xa5\x01\x07\x33\xd1\x75\xda\x89\x6e\x69\x94\x83\xcf\xff\x50\x81\xf4\x96\x01\xbd\x49\x57\x4c\x18\x53\x4d\xdd\x6d\xf9\x4d\x95\x68\x38\x0f\xb3\x86\xc9\xbc\xec\xce\xe8\xaf\x15\x59\xbe\xd3\x53\x1b\x7c\xb6\xad\x9c\x54\x48\x07\xe0\x20\x06\x4f\x12\x3a\xcf\x51\x6c\xc7\x90\x3e\x20\xc8\x8f\x83\xb4\x6b\x9a\xca\x67\x6a\x44\x0f\x97\x0e\xec\x69\x38\x4a\xac\x1b\x81\xe2\x97\x39\xab\xe8\xc0\x8f\x2b\x8a\xde\xef\xc1\x86\xe2\x97\x41\x2f\x23\x95\x77\xac\x05\xec\xf7\xeb\x9a\xa5\xf3\x01\x81\x23\x45\x0c\x4a\xc9\x0b\x1c\x0b\x14\x7f\x22\x5a\x2d\x30\x47\x47\x71\x68\x48\x26\x62\x2b\x31\xeb\x73\xad\x3c\xdd\xa0\x81\x15\xb9\xef\xf2\x39\x1c\xc3\x5b\xf9\xcb\x48\x2f\xbd\xe5\x51\x8e\x83\x30\x8e\x1d\x80\x8d\x99\x4d\x03\x5f\xe5\xb9\x52\xb7\x16\x7d\x09\xbd\xe1\xd4\xf3\x91\xb4\x10\xb1\x74\x7d\xf0\xad\x6e\x14\xd4\x0b\xc2\x4d\x38\x34\x68\xd2\x90\xe3\x04\x7a\xd6\x4c\x54\x98\x1c\x36\x02\x93\x7f\x33\x50\x31\xf3\x47\x63\x1f\x18\x57\x75\x60\xca\x48\x96\x75\xa2\xb3\x9c\x49\x00\xa5\x8c\xa6\x4a\x6a\x75\x84\x1a\x79\x4a\xe5\x34\x26\xf6\x60\x99\x1a\x8c\x32\x6a\x7c\x40\x62\x08\xda\x58\x92\x89\xe0\xcf\x6c\x62\x6a\x61\xd6\x7f\xa2\xad\xce\x95\x6b\x5a\xf2\xee\xa9\x1a\xc1\xd8\xf9\x56\x96\x24\x31\x97\x3d\xb1\x36\xde\x82\x1d\xe3\x9b\x5a\xf6\x8f\x6e\x37\x29\x62\x01\x6c\x08\xb3\x61\x43\x51\x1e\x2a\xa6\xf9\x3c\x32\xb1\xc0\x19\x91\x62\xbb\x49\x5b\x15\x03\xca\x14\x43\xf0\xa6\xee\x05\x3e\x87\x36\xb4\x69\x77\x60\xe2\x5e\x98\x59\x72\x35\x81\x84\xfc\x13\x5d\x92\xbd\x33\x56\x02\xa5\x3f\x52\xbe\xe6\x7d\x2d\x92\x65\x7b\x26\x6e\x7a\xa4\xf0\x3d\xe4\xf9\x1d\xfb\x9c\xd3\xcf\x39\x59\x13\xf9\x1d\x68\x8d\xd2\xa4\x4b\xcd\x7a\x8b\x8b\xbc\xf6\x3f\xd2\x1c\x0f\x1f\x8d\x55\xef\x49\x27\x37\x61\xcc\x8b\x51\xe0\x94\xe5\x22\xe3\x6b\x65\xc5\x87\x61\x6c\x53\x23\xb0\x14\xc7\xa1\xec\x1a\x2c\x2f\xa9\x9e\xca\x0d\x9b\xef\x2e\x63\x1a\x59\xaa\x9e\x02\x9c\x49\xec\x5d\xe3\x68\xf9\x58\x08\x0a\x0e\x07\x2a\x01\x0f\xfe\x7e\x1c\x25\xa8\x8a\xe1\xdc\xd8\x36\x99\xc2\x2c\xf8\x08\xf0\x6d\x85\xa0\x7c\x10\xa8\x36\xd2\x93\xce\x0e\x66\x89\x19\x35\x55\x73\xf4\x71\xd5\xed\x8e\xdc\x33\x56\xc2\x3d\xf7\x89\x41\xb1\x92\x34\xbc\xe3\x75\x49\xf7\xf6\x5d\xaa\xe3\x82\xa2\x20\xa1\xe9\x51\x40\x77\x54\xc7\x2c\x23\x3b\x60\x51\x66\xda\x8f\x48\xc8\xb8\x81\x98\x0b\x43\x25\x70\x37\xf1\xd4\xe8\x23\xb0\x3b\xb7\xeb\x9a\x98\x87\x36\x5d\xcd\xcc\xd0\xa6\xbc\x9d\x44\x81\x47\x61\x8d\xb4\xfc\xdd\xd9\x0a\x2b\xef\xdc\x5c\x6b\x58\x44\x79\x18\x83\x5b\x1b\x99\x62\xa7\x03\xed\xa4\xef\x4e\xd7\xa9\xa8\xfd\x6c\x69\xcc\x86\x61\x96\xf1\xc7\x04\xad\x51\x7e\x4c\x60\x1c\x3a\x07\xb2\x6e\x62\xce\x61\x73\x78\x8b\x8d\x21\xb1\xae\x53\xbf\x4b\x86\x23\x13\x6f\xcc\xe2\x4f\x9d\xaa\xa3\x64\xed\xff\xe6\x53\x6d\x1f\xe5\x3c\x18\x2b\x7d\x13\x6e\xb7\x14\x08\xb6\xd2\xad\xb3\x79\x6e\xd3\x9d\xaa\x72\x76\x4e\x01\x7d\xa1\xac\x2b\x69\x27\x7f\x02\xfc\x99\xa6\x95\x3b\x82\xa4\x15\x0c\xfb\x85\xb1\x2e\xc9\x9d\x0b\x3c\xc6\xac\xc8\x08\x77\x3b\x37\xe7\x62\x50\xc5\xfc\xf9\x81\xaa\x05\x87\xc3\x91\x09\x53\x91\x9f\x93\x5e\x66\xc5\x24\x72\x71\x2b\x91\xe8\xe2\x62\xeb\xf9\xaf\x34\x54\x43\x29\x73\x02\x4a\x0e\x41\x35\xe6\x24\xd4\x97\xa8\x18\xa0\xb0\x4f\x85\x45\xbf\x06\xde\xb8\x62\x73\x2c\x43\xe6\x28\x1d\x7b\xb7\xe0\xb6\xe2\x3a\x39\x5e\x29\x81\x97\x8e\x92\xed\x95\x86\xa1\x5c\xf6\xac\x90\x0a\xe3\x74\x54\xf7\x8e\xdf\xa9\xc3\xf0\x50\xd2\x9c\xd0\x18\xd8\x22\x70\x10\x44\x72\xd5\x3f\xf2\x15\x65\x1b\xf3\x41\x98\xf6\x76\x4f\x77\x51\xbd\xb4\xcf\xab\xfb\x3a\x10\x10\xf3\xf0\x63\xfa\x9a\x08\xb3\x10\xf4\x40\x7d\x03\x0e\xe6\x87\x0a\xa9\xff\x68\x5b\xa5\x5b\x40\xa2\x82\xd5\xf7\x6d\x1c\x6a\xfc\x55\x13\x45\x9a\x54\xcb\xfa\x38\x4a\x93\xdc\x3a\x92\x74\x4e\x99\xc0\xba\x49\xfe\xe4\x31\x07\xe4\xc8\x24\xae\x40\x3c\x79\x5f\x27\x5d\xee\xab\xf8\x3e\x0f\x53\x8b\x23\x9e\x55\x2a\x15\x96\x75\x4f\xdb\x77\x83\x6d\x9f\xec\x51\x22\xc5\xe9\x88\xc9\x7a\xe1\xc7\xa3\xe0\x8e\x0c\x27\x22\x26\x7c\xc1\xec\x44\x65\x43\xce\x6a\x08\xda\xa3\xb4\x39\x04\xb1\xbb\xd5\x08\x90\x70\x5e\xb8\x32\xc8\x95\xf6\xb6\x40\x8f\x34\x26\xc9\x1d\xfd\x59\x64\x2d\x1b\x61\x67\xc3\x97\xe5\x6c\xb8\x43\x86\x1e\x1e\x70\x95\x54\x8a\xa0\x65\xdd\x24\xb5\x5b\xc9\xe7\x15\xce\x4e\xbb\x4e\x26\x7e\x75\x97\x77\xdd\x2f\x6a\xf2\xe8\x40\xe1\xc1\x38\xcb\x85\xca\xd5\x69\xdd\x7f\xfc\x40\x51\xbb\x72\x77\x12\xdf\x68\x12\x86\xc3\xaa\xf8\xb2\x66\x53\xe4\x3f\x1d\x56\xf3\xa4\x22\x36\xf7\x27\x91\x71\x6a\x51\x58\x0f\xb3\x34\x15\x7c\xad\x52\x05\x23\x9b\xef\x54\x98\x1d\xa1\xe6\x91\x3b\x0f\x63\xba\xa4\x8e\xb2\x47\xb1\xd4\xe1\xb7\xfd\x88\x86\x87\x97\xbd\x6e\x08\xba\x53\x89\xe8\x68\x27\xaf\xb3\x6e\x9f\x4b\xaf\x97\x7e\x87\x30\x56\xf8\x05\xf7\x41\x5d\xc0\x54\xe7\x61\xfd\xce\x58\x0d\xf5\xef\xa8\xea\x4b\xc7\xc4\xdd\x34\xe9\xe7\xaa\xd3\xf9\x41\xe0\xb1\x4a\x0f\xea\x38\x3e\xd0\xb9\x4f\x09\x0a\x16\xd1\x98\x56\x64\xf0\x94\x86\x87\xa7\xa0\x3e\xde\xfb\x40\x86\x09\x21\xc0\x7b\xd3\xf9\xf9\x98\xf5\x22\xc5\x99\x99\xf2\x72\x9c\xd6\x0e\x34\x8e\xb0\x80\xf1\x0c\xf0\x22\x60\xe4\xae\x51\x69\x02\xc6\xe4\xe8\x78\xb7\xaf\xad\xe6\x3f\x45\x03\x89\x43\xf8\x28\x9e\x5a\xba\x2b\x1b\x2f\x3b\x3c\x1b\x7d\x1c\x03\x70\x4d\xe3\x3c\x2e\xe9\x62\xc8\xe3\x50\xfd\x65\xd4\x7f\xe0\x95\xdc\xf7\xb6\x29\x0e\x81\xd3\xf4\x50\xe3\x7c\x76\x51\x61\x05\x9b\xe4\xe9\x49\xc3\x29\x11\xb0\x26\x03\xd2\xb5\x8f\xb7\x75\xeb\x32\x49\xcd\x09\x13\x28\xed\x6b\x64\xdb\x76\x61\x75\x21\xe9\x33\xe3\x39\x29\xfe\xfb\x99\x89\x4f\xa8\x5f\x53\x7a\xfd\x8f\x53\x84\x29\x76\x8a\xda\x3a\xf8\x09\x03\x7d\xc0\x7f\x9b\x8f\x54\x47\x8b\xfd\x85\x97\xa7\x33\x6c\x30\x41\xbb\xdb\x7e\xb7\xf5\xac\x89\x6c\x9a\xd1\x7a\x80\x31\xbf\xa5\xa5\x57\x8e\xc3\x69\x96\xf5\x44\x63\x8e\xe3\xe4\x1c\xdc\x4e\x1c\x75\x7f\xa5\x18\xcf\xde\x53\x27\xf9\x9a\x89\xc2\x9e\x5a\x9d\xe0\xbb\x90\x44\xe5\xa7\xbd\xaf\x0e\xc2\x56\xa6\x93\x6d\x28\xc1\xc7\x29\x86\xc3\x27\x7c\xff\x4f\x38\x1c\xda\x88\x1d\x21\x9c\x75\x8c\x18\xe3\x1b\x75\xd8\xc5\xa6\x17\xa6\x38\x98\x5d\xbe\xa6\x7c\x74\x60\x9c\x4f\x63\xfa\x30\x32\xf7\xea\xf4\x77\x06\xe1\xca\xa0\xa1\x84\x33\x4e\x28\x5a\xc3\x13\xca\xb7\x37\xf1\x46\x19\xcc\xae\x3c\x36\x5d\xb0\x28\xc7\x4f\x58\x45\x3d\x27\x38\x57\xf9\x30\xed\xc7\xb0\x38\x90\x33\xe2\xae\x73\x61\xa1\xc1\x2b\x02\x97\xf7\x01\xd5\x38\xc4\x75\xf6\x27\x0f\x5a\x92\xe1\x7c\xbd\x1d\xa8\x20\x8e\x85\xba\x04\x2d\xe5\x43\x96\x3c\x15\xb8\x45\xf9\xc7\xac\x0a\x85\x67\x15\x89\xa8\x5a\x5f\x95\xa8\x41\x63\xc1\x77\xb8\x49\xf5\x89\x75\x85\xc3\x4c\xcb\xb8\x16\xb2\x37\x42\xca\xd3\x70\xea\x60\x60\x15\x74\xff\x7d\x6e\xde\xfd\x77\x39\xe6\xd2\xb0\x3b\x90\x63\x4a\x4b\xca\xf1\x75\x25\xcb\xff\xec\xb3\xad\x48\x50\xb4\x8e\x83\x70\x59\x44\xf2\x2f\x2a\x0e\xb5\x51\x6a\x7b\x61\x97\x45\x79\x96\xf7\xf9\xfc\xc1\x7e\x9f\x3f\x50\x28\xc0\x73\x0a\x55\x74\x2e\xf0\xf4\xab\x2b\x61\xd7\x44\x0d\xc5\x7a\x83\x1e\x5b\xbe\x0e\x3c\x2f\x57\x41\xaa\x3b\xb9\xef\x83\x84\x5f\xff\xae\x4e\xdf\xbd\xeb\xc5\x9b\x4c\xca\xe2\x3c\x92\xf8\xa2\x39\x14\xe2\xf0\x1a\x46\xb5\x3c\xcc\x8d\xb4\x21\xd4\x71\x57\xd4\x1c\x52\x99\xcd\x8b\x51\xc3\xf7\x19\xe1\x1d\x05\xae\x59\xe7\xa1\x8c\xc2\x98\x84\x21\xe5\xd0\x15\xe5\xbb\x86\x52\xc4\x53\x1d\x33\x84\x33\x7e\x4c\x55\x9c\x7f\x5b\xdb\x8b\xd9\xb6\xe7\xbd\x69\x52\xad\x10\xc6\xbb\x31\x51\xce\xe3\x1b\x63\x05\x9c\xfd\x4d\x5a\xfa\x22\xe8\x44\x5b\x16\xae\xda\xfd\xc0\x63\x1a\x27\x94\x94\xc5\x6a\x07\x85\x27\xfe\x06\x1a\xb2\x38\x5e\x66\xdb\x4f\xaa\x72\x14\x29\x52\x03\xa6\xe9\xb8\x1a\x1c\x12\x11\x22\x20\x58\x11\x57\xe9\xeb\x90\x66\x3e\x52\xd5\x2f\x9b\x6b\x8d\x6c\x3a\x34\x6e\x67\x20\xd9\xfa\x2f\x55\x9b\xe7\xbf\xac\x63\x62\xea\xa7\xc5\x70\xc4\x5d\x02\x42\x37\x57\x7e\x1c\xee\x9b\xce\x94\xfe\xa5\x62\x1a\xe8\x25\xeb\x14\x50\xe3\x08\xc0\xd4\xf1\xb5\x32\x7b\x2b\x26\x4f\xd8\x2b\x76\x34\x54\x9e\xdc\x95\xda\x9b\xa4\x8f\x23\xc9\x6d\x04\x79\x3e\x84\xbb\xb7\x34\xfd\xf3\x3b\x8a\xa3\xf8\x81\x12\xb6\x1a\x84\xd9\xc8\xc4\x61\x97\x09\xbd\x61\xfc\x31\x1b\x7c\xad\xaa\xf0\xa3\xc8\x6c\x60\xb3\x31\x1b\x7e\xa0\x7e\x01\xad\xf2\x7c\xad\xe4\x91\xcf\x8d\x3d\xdb\x65\x9e\x6e\xec\x56\xe7\xd2\x65\x4d\x1c\xfe\x1d\x95\x01\xfe\xb1\x4e\x83\xb2\x54\x1a\x0c\xe3\x35\xd5\x27\xcf\xba\xde\x48\x23\xdc\xa2\xd4\xac\x6a\x83\x95\x5a\xc0\x51\x45\xa9\x7b\x5d\x71\x85\xce\xb6\x3d\x3c\xba\x9f\x24\xbd\x1d\xf4\x65\x52\x9e\x57\xbe\x2a\xd6\xa9\xd4\x7e\x7d\x05\xe3\x02\x1e\x12\xf6\x9e\x6d\x8d\x10\x06\x7a\x85\xa9\x41\x92\xe6\x61\xb7\x88\xf2\x22\x35\x51\xb4\xd1\x54\x6d\x3f\xdf\xd7\xb5\xbb\x77\x54\x5b\xc5\x37\xa7\xbc\xf7\x30\x83\x24\x85\x88\xcb\xd1\x87\x90\x4f\x43\xc5\xcb\xb1\x7d\x7b\xde\x83\x5b\x95\x60\x8c\x9a\xdc\x4d\x41\xb4\xb7\xd3\x38\x6b\xcf\xf2\xe6\x84\x50\xd3\x64\x7d\x56\x53\x8c\x4e\x93\x92\x3a\x4c\xea\x6d\x05\xe6\xd9\xd4\x19\xa1\x2b\xd3\x25\xcb\xf5\xec\xc9\x72\x3d\x60\x6f\xc0\x9e\xe3\x17\x39\x43\xad\x64\x79\x5f\xe0\xb7\xf9\x01\x0e\x40\x26\x90\x08\x54\x26\x95\xc3\x42\x1c\x8d\xe0\xb3\x46\x41\xed\xa1\x3a\x58\xb8\xff\x5d\xaa\x41\x54\x50\x73\x14\x91\x5e\xad\xec\x77\xc6\x9a\x6d\x1c\xb1\x90\x10\x96\x7a\x68\xda\x9b\x74\xb2\x49\x43\xe1\xd6\xb4\x51\x69\x56\x89\x3d\x60\x38\x8a\x3c\x59\x1f\x22\xa2\xe3\x0a\x61\x78\x5c\x61\x00\x3e\xf7\x0f\x7f\xbe\xa1\xc0\x0d\x1f\xd1\x0f\xf0\xb5\x46\xed\x9b\x22\x9a\xd1\x07\xc2\xd8\xa7\xa4\xae\x6a\xc9\xe6\xdf\xe3\x70\x48\xf8\x9f\xc5\xc5\x0a\xe3\x81\x4d\x2d\xeb\x00\x23\x8a\x7d\x1c\xda\x77\x8e\xc0\xde\x75\x2f\xee\x6d\xd7\x54\xdc\x47\xc2\x22\xcc\xc4\xaf\x4a\x59\xf0\xb6\x72\x44\xa4\xf9\x85\x52\xbd\x8a\x0e\xc1\x25\x5d\x02\xe5\x73\xa2\x3e\x2a\x3c\x09\x9f\x52\x84\x32\x31\x11\x84\x0a\x18\xd4\x91\x3d\x7b\xd6\xbe\x8b\x75\x54\xc9\xc9\x28\x0f\x87\xc8\xd8\xd3\x9a\x41\xb6\x1c\x26\x98\xaf\x2b\x90\xba\x85\x85\xd6\xc8\xe4\xd6\x85\x68\xec\x6b\x2b\xf4\xd1\x25\x85\x98\x5c\x4d\x86\x23\xb3\x8a\x92\x19\x94\x8a\xc0\xc1\xca\xd7\x4e\x77\x39\x0b\x87\x45\x64\xf2\x04\xe9\x78\x21\x06\xa0\x79\x12\xc6\x80\x2a\x18\x70\xb1\x95\x9b\x68\x15\x8f\x21\xc5\xab\x86\x62\xa7\xf7\x39\xf5\x11\xd1\xc2\xa5\xc9\x6a\x68\x9a\x0d\xa7\x6c\xb8\x1d\xbd\xea\xce\x39\xdd\x2f\x2d\xa8\x57\x5d\xac\x96\xac\x24\xf1\x46\xb2\xda\x2c\x2d\x24\x40\xc5\xc0\x90\xa8\x9e\x27\xd9\xb9\xf7\x6a\x79\x28\x7b\x61\x16\x85\xab\x0c\x3f\xe4\xea\x62\xe0\xdb\xe5\x2f\xd5\x66\x28\xca\x4f\x30\x41\x21\x76\xfb\x13\x6d\xbf\xf3\x9f\x98\xf8\x63\xe5\xeb\x45\x38\xe2\x33\x4e\xa8\x48\x15\x3b\xdf\xb8\x46\xa8\x73\xa9\x65\xfa\xa9\xe1\x56\x24\xb4\x1f\x5d\xc5\x12\xd3\xfd\x33\xc2\xf3\xf6\xa4\x83\x9c\xa2\x8c\x29\xfc\x50\xd8\xdd\x7b\x11\xec\x21\x6b\xf6\x9d\xb1\x87\xca\x9f\xd0\x34\xf6\xbb\x95\x38\x53\x11\x8f\x52\xdb\xb5\x3d\x1b\x0b\xce\x84\xf5\x1a\x28\x68\x85\x39\x3c\x4e\x45\x39\xd9\xb6\x0e\x5f\x46\xe8\x65\xd3\x09\x89\x1f\xab\x9c\x02\x49\xf1\x34\x9c\xc4\x13\x48\x97\x11\xad\xfe\x58\x1d\xbe\x6b\x69\x92\x0c\x31\x03\x42\x20\xe0\xf3\x3d\xa7\x2a\x0b\x6b\x71\xb1\x55\x64\x36\xe5\x71\x85\x51\x3b\xab\xbb\x57\xea\x24\x16\xfb\xd6\xa4\x4e\x31\x00\xf6\xe2\xb6\x4a\x9b\x9c\x51\xa5\xd0\x53\x2a\x46\x58\x09\xd7\x6c\x19\xf1\xcd\x1f\xf4\x8a\x08\x4e\x36\xe6\x92\xe2\xf7\xfa\x9a\x89\xcc\xc8\xc6\x50\x99\xc3\xc1\xf9\x1a\x61\x30\xf9\xba\x4e\x85\x60\x18\x12\x2d\x8b\x76\x8b\xa7\x3c\x3d\x4f\xcb\x92\x15\x1d\x4a\x98\x77\xe1\xbd\x71\xad\x33\xf0\xb5\x9f\xa3\xda\x64\x45\x79\x38\x34\x69\xd8\xf0\x88\x0c\x3e\x1a\xf8\x46\x69\x10\x14\x23\x1c\x9a\x4e\x83\x1a\x2e\x81\xa7\xe2\x92\x27\xe8\xa6\x61\x1e\x76\xb3\x9d\x34\x7e\xd8\xf2\xef\x29\x8f\x01\x89\x54\xc0\x50\x36\x11\x3a\xe2\xf0\x87\xde\x80\x64\x4b\x4a\x1f\x99\xaf\x03\xa5\x36\x72\x24\xf0\x3f\x94\x5b\x02\xcd\x53\xc0\x0f\xb8\xce\x4d\x3c\xbc\x6e\x9b\x40\xde\x8b\x29\xcf\x44\x8d\x41\x4b\x33\x8c\x3d\x46\xe7\x54\x1d\x73\x7d\x66\x15\x09\x19\x4e\x31\xc0\xb4\xf9\xba\x62\x8d\x5f\x79\x85\xc8\x8e\xc3\x9e\x23\x3b\x16\xb5\x10\x65\x62\x34\x0c\x25\xb5\x2b\xa8\xb5\xd0\xc3\x03\xda\x08\x65\x43\xbe\x0e\x7c\x92\x23\x4a\x86\x1d\x93\xf6\x1a\xbe\x45\xf4\x84\x97\xb5\xdc\x71\xa2\x52\x13\x5a\xde\x57\x3e\x4c\xd7\xa6\x8e\x30\x4c\x94\xf0\x1b\x8e\x06\xec\xf7\x83\x27\x54\x93\x36\xfa\xc0\xcb\xc5\x25\x59\x05\xef\x3a\x9e\x76\x31\x63\x6e\x7b\xa1\x2b\x2a\x38\x7a\x15\x45\xc3\x2a\xed\xe5\xb6\x7c\xde\xd4\xb0\xf6\x98\x2b\x06\xdc\x0f\x94\x6e\xc3\xfd\xf1\x33\x53\x7c\xa1\xeb\x03\x1b\x0d\x79\xcc\x45\x09\xb4\x39\x21\xff\x85\x6f\xda\x2e\xb4\x4e\x92\xd5\xd0\x2a\xae\x46\x78\xb7\x38\x9d\xd1\x35\x28\x65\xd2\x9a\xe3\xcf\x84\xe9\x28\x49\x73\x2d\x81\x10\x28\xc9\x65\x65\x78\x48\xd3\x7f\x07\xbd\x2d\x93\x70\x92\x61\xdc\xbc\xcf\x59\x0d\x09\xe5\x55\x6a\x0c\xf6\x17\x3e\xea\x87\x4a\x03\xe6\x58\x2d\x7a\xb8\x9b\x0c\xfb\xf2\x28\x30\x67\xef\x07\x8a\x04\xfa\xfd\x0a\x09\xc5\xdf\x25\x35\xe5\x86\xff\x0d\xa0\xca\x45\x4c\x59\x27\x33\xc3\x95\x01\xf1\x3c\x22\x62\x7d\x13\x0f\xc9\xba\x5c\x2a\xa9\xcd\x54\x4f\x8e\x1b\x63\x59\x00\x2b\xaf\x07\x53\xb1\x57\xc3\x51\xc7\x9c\x84\xf3\x0e\x3f\xf2\x0c\x1d\x86\xe8\x33\xe5\xdc\x32\x32\x29\x4c\xdb\x8f\x51\xb9\xac\x3c\xc0\x8d\x18\xc5\x51\x81\x71\x36\x1c\x8b\xce\x58\x97\xd4\x8f\x05\x0a\xc8\x94\x9a\xa1\x69\xfa\x7c\x91\x8e\x99\xaf\xe2\xc5\x00\x82\x3e\xa6\x38\xde\x52\x33\x0a\x7b\xd1\xc6\x4e\x95\x38\x3c\x85\x53\x80\x6f\xc8\xcf\xe5\x53\x33\x50\x7c\x18\xc7\x30\x22\x88\xee\xaf\xe0\x70\xe5\x1b\x7a\x58\x46\xb6\x2b\xb5\xd7\x72\xf9\x9a\x28\xda\xa1\x9a\x71\xdf\x84\xe7\x8d\xea\xd9\x1f\x2a\x02\xfd\x37\x31\xac\xfc\x0f\xda\xf1\x87\x4c\x9d\x44\x5b\x4f\x6b\xef\x30\xcb\x4d\x9c\x47\x1b\x10\xd9\x44\x42\xe8\x2d\x3c\x18\xf2\xab\x68\xd0\xe1\x6b\x3a\x81\xf8\x8f\x6a\x32\xe8\xf3\xad\x7e\x6a\x99\x9d\xd1\xb1\xf1\x96\x1f\x47\x2c\xf0\x20\xd0\x4c\xc2\x8e\x30\xc2\x66\xb9\x21\x56\x47\x77\x48\xc2\x8d\x45\x77\xf8\x14\x07\x3d\xe6\xe5\x70\x05\x64\xf2\xd2\xbe\x17\xc0\x3b\xd1\xb7\x69\xca\x68\x03\xce\xc2\x6b\x54\xce\x7b\x35\xa7\xf3\x7a\x98\x0f\x92\x22\x27\xc9\x64\xee\x3c\xc3\xf2\x92\x36\x34\x87\x05\x1e\x24\xc9\xea\x8c\x62\x9c\x44\x5d\xd7\xb1\x3b\x96\xe3\xc7\x52\x73\xaa\x57\xe9\x74\x0d\xcf\xc5\x0b\xad\x6e\x94\x74\x3a\x36\x45\x9f\xfe\x22\x07\xdb\x40\x6b\x38\x8e\xf4\xf2\x87\xd8\xe7\xc4\xe2\x47\x14\xfd\x83\xba\x3e\xfd\x7e\x6a\x86\xa5\x5b\x02\xdb\x81\xbd\xf4\xbb\x63\x95\x3b\xf9\x5d\xa7\xd4\x42\xfd\x64\xe9\xab\x1d\x13\x03\xf5\x5b\xab\xd1\xbf\xdb\x41\x7f\x6c\xbc\xc7\xb3\x3c\xdd\xa5\x53\x94\x45\xe1\x15\xb6\x64\x13\x13\x8b\xa7\x7d\x64\xe2\x14\x0f\xbf\xf7\xb9\x76\xe9\xbe\x28\x0a\x99\x03\x3c\xb7\x9b\xba\x06\x08\x56\x2b\xf8\xfd\xdb\x00\xda\x44\x66\x8b\xb9\x88\x1d\x4c\x6c\xff\xa2\x23\x3f\xa4\x95\x8e\x7d\x7e\xce\xe9\x2e\x0c\x92\xa4\xb7\x1e\xc6\xab\xa2\xef\x82\xed\x8e\xc6\x78\x97\xbd\x2c\xbf\x1e\xe6\xfc\xaa\x83\x0c\xf5\x23\xb3\x5e\x7e\xa8\x3c\xa5\xa4\x2f\x52\xf1\x3b\x72\xb6\x02\x71\xcf\xaf\x2b\xd7\x64\xc5\xc6\x45\x18\x33\x8d\x8c\x50\xf8\xd2\xa3\xf1\x4d\x85\x75\x73\xe9\xc5\x03\x5e\xf7\x7c\xe0\x5c\x74\xb8\xdb\x87\x35\x3d\xf7\x61\x55\xcd\x1f\x86\x51\x44\x1d\x9d\x34\xc1\x9b\x97\x75\xf5\x08\x85\x6c\x89\xe9\x6b\x32\x14\x3f\xdb\x4a\x6d\x6e\xc2\x48\xb5\x00\x01\x8e\xc2\xd7\x15\xcc\xf5\xdc\x1c\x29\xe5\xc4\x90\xd6\x77\x1d\xce\xe5\x54\x60\x37\xa2\xa1\x44\x04\x17\x65\x65\xd1\x06\x1c\x19\x84\xc6\x2e\x84\x38\x1d\xf8\x3c\xf2\x61\xd5\x8e\xf6\x9a\x22\x33\x20\x1e\x17\xb8\xba\x22\x55\xaa\x64\x4b\x55\xaa\xab\x0f\x59\x67\xaf\x39\xe3\x53\xb3\x97\xea\xd2\xbf\xa9\x89\x7b\xc9\x10\x49\x44\x2d\xbc\x24\x7d\xd1\x7e\x44\x3e\x56\x2d\xe1\x79\x92\x0e\x11\xc5\x96\xc6\x48\x88\x49\x7d\x75\xf2\x74\xb0\x15\xdc\xf7\xec\xb3\xad\x38\x41\x5b\x23\xc2\xbf\x3f\xa1\x48\x85\xaf\x95\xaf\xde\xdb\x88\xcd\xc8\xa6\xf0\xa5\x45\xe3\xce\x17\x98\xbe\x5f\x27\xd9\x67\xf2\x3c\xcc\x8b\x9e\xd5\x75\xcf\x33\x8a\xad\xfc\x4c\x8d\x06\xdc\x52\x6b\x68\x4d\xcc\x24\xc6\x70\x58\x00\x48\xe5\x6b\xcd\x09\x91\x9b\x15\x8b\x2a\x17\x92\x25\x37\xa9\x38\xe6\x62\x0e\xaf\x8f\xac\x98\x35\x0f\xe3\x74\x61\xb9\x63\xa5\x68\xf3\x40\x55\x7d\x92\x22\xef\x47\xc9\x7a\xd6\xf4\x5d\x2e\x17\x28\x9f\xe9\xa8\x8e\xf7\x2f\xba\x6c\x98\x77\x19\xd7\xcd\x4a\xb9\xd4\xbd\x0b\x76\x7e\xac\xd8\x3a\x19\xf1\x09\xff\xfc\x03\x15\xa8\x84\xc3\x51\x9a\xac\x85\x99\x10\x62\xd6\x89\xc7\xd7\xc9\x34\xe4\x26\xcd\x3d\x5f\x1e\x43\xc2\x68\x95\x08\x3c\xcc\x7b\xcb\x76\xad\xf4\xc2\x73\xca\x1c\x32\x1e\x11\x71\x13\xa6\xef\x82\xea\x4b\x60\xbc\x2d\xff\x43\x0d\x29\xf8\x81\xd6\xc0\xa6\xac\xe2\xee\x68\xf2\x97\x96\x45\xa2\xf4\xa2\x6e\x66\x1a\x9a\x19\xb5\x86\x8f\xaa\x9e\x78\x24\xe2\xb1\x05\x6e\xe8\xa6\xa1\xd3\x53\xe9\xce\x94\x49\x80\x98\x03\x40\xf1\xf4\xfe\x62\x4d\xf7\x70\x39\x6b\x6e\x44\x04\x5d\xa6\x90\x66\x15\xab\x26\x58\xf2\x7e\x12\xe9\x8f\x4a\x76\x4f\x73\x87\x55\xe6\x60\x79\x5f\x2b\x2b\x46\xa5\xdb\x2c\x11\x05\x0c\x0b\x1c\x0f\xbe\xae\x55\xd2\x33\x6b\x6b\xdc\x70\xeb\x28\x1e\x7c\x6f\x6e\x25\xc1\xb1\xb4\xbc\xd4\xea\x27\xc4\x2f\xaa\xea\x8b\xc0\x87\xf0\x75\xe0\x39\x05\x4c\xaf\x97\xda\x2c\xb3\xe8\x8f\x13\x57\xae\xe1\x54\x06\x6e\x2a\x8c\xcf\x91\x1a\xc2\x54\xf0\x07\xf1\x0b\x71\x9d\x3b\x50\x04\x80\xe7\x55\xeb\xcf\x4a\x69\xfe\xe2\xa1\x1d\xc2\x2c\xb8\xc4\xa9\x27\xb5\x7f\x5f\x91\x06\x47\x26\xee\x65\x51\xd8\xb3\x19\x0a\x6c\x1c\x10\x60\x1d\x4a\x74\xb0\x57\x93\x23\x94\x8b\xb6\x37\xe3\xeb\x3c\xdb\xdb\x0a\x23\x79\x46\xe1\x90\xe0\xa3\x23\x93\x71\x54\xa9\xe7\x98\xee\xd7\x8b\x30\x0b\x99\x54\xe0\xe5\xf9\x83\x9e\xf7\xde\x39\xcb\x23\xf2\xd6\xa5\xa1\xfe\x09\x5d\xfa\x4d\x62\x74\x72\x33\xf3\x4d\xe0\x4b\x12\xb7\xb0\xb3\xf1\xeb\x40\xcb\xc2\xd3\x38\x4a\xb6\x41\x18\xad\xea\x04\x87\xbb\x49\x9e\x27\xb1\x96\x7e\x55\x40\x89\x4b\x8a\x3a\x35\xb6\xdd\x5d\x34\xe1\x48\x1d\x20\x53\xee\xae\xf7\x4b\x4a\xf1\xa2\x6e\x03\xb9\x83\x03\x16\x4d\x9c\xc7\xc7\x5a\x9a\xe0\x8c\x26\x53\x1d\xab\x2a\xc6\xdd\xba\xd6\xe7\xb5\x30\xcd\x0b\x04\xed\x22\x6b\x41\xdf\x2c\xba\x16\x3e\x2d\xfd\xb5\xa4\x93\xcd\xd2\x68\x08\xfd\xaf\xaf\xf5\xc3\xf2\x32\x36\x30\x50\x2d\xa5\x17\x35\x0a\xa3\xca\xe0\x44\x04\x02\x79\x98\x4e\xe7\xcf\xaf\xab\xfc\xf9\xf5\x4a\x18\xf8\x1c\x25\x9e\x9a\xbe\xfb\xf3\xa1\xea\x34\x67\x21\x5e\x9c\xe0\x77\x5d\x65\xe3\xd5\x84\x55\x81\x74\x6b\xb2\xc4\xbf\x5a\x09\x65\x63\x87\x8a\x00\x10\x1a\x63\x3b\xfd\x99\xa2\x9d\xdc\xa4\x0c\x8a\xcc\x4a\xe9\x71\xc2\xc7\xfe\xf3\xc0\xbb\x89\xef\xb8\xe8\xa1\x67\xd7\x6c\x94\x8c\xe8\xc0\x9e\xa5\x29\x44\xbc\xf9\x2e\x7d\x8b\xd0\xa6\x62\x06\x9d\x84\x8e\xc7\xcd\x31\xcb\xa3\xe8\xe9\xd4\xa9\xa9\x8e\x52\x67\xd0\x90\x30\x7f\x8f\xde\x8f\xaf\x9d\x63\xdd\x0b\xa3\x32\x2c\x34\x22\xc7\xec\x82\x09\x8f\x3a\xbe\xa8\x45\xd1\x93\x75\x08\x17\x8b\x85\xa3\xe7\x10\xd3\xe7\x98\xf7\x93\x34\xcb\x77\x2a\x3c\xcf\xaf\x8e\x7d\x0d\xf5\x31\xa0\xea\x90\xed\x7c\x4d\x47\xb8\x37\x14\x86\xfb\x71\x74\x89\xc2\xda\x7f\x16\x08\x19\xe0\xcc\x37\x2b\x48\xcd\xe7\x5a\x66\x68\x59\xda\x02\x41\xc9\x1d\x92\x5a\xe0\x6b\x2f\xd4\x3f\x2a\x52\x41\x75\xa3\x3a\x77\x46\x83\x59\xcf\x4c\x41\x9f\x46\x69\xb2\x43\x29\x13\xa1\xba\xe4\x60\xb2\x8b\x8b\x5e\x98\xf0\x0b\x2f\x73\xe6\x00\x49\x6d\x27\x72\x52\xbe\xa5\x78\x90\xfe\x54\x1c\x84\xa0\x43\x73\x6c\xdb\x4e\x5d\xf4\xb4\x4a\xb4\x74\xca\xd9\x43\x19\x12\x48\xfb\xb7\x68\x61\x48\xa3\x5e\x43\x43\x76\x5d\x4f\x22\x20\x18\x78\x6b\x08\xd9\x21\x0d\x71\xa4\x92\x0f\xfb\x7c\x19\x23\xa5\x40\xb7\x68\x5d\x01\x64\xd1\xa4\xc9\x68\x8f\x12\xa9\xeb\xae\xce\x7a\x0b\x74\x3d\xf0\x16\x08\x99\x26\x4c\xe0\x76\xe4\xcf\x35\xdb\x00\xa6\xf9\x76\x9d\x87\xd8\xb3\x99\x4d\xd7\x04\x11\xe2\x68\xf5\xbd\x3e\xf3\xf9\x4a\x5c\x20\xe4\xa0\x96\xf3\xba\x82\x90\x51\x68\x19\xc5\xb0\x43\xf9\xc7\x74\x68\x7b\x10\x38\x16\xb0\x8f\xd2\x22\x04\xab\x0e\xc2\x41\x66\x57\x17\x18\x50\xc3\x11\x28\x3e\xa8\x58\xa8\x83\x2f\xb6\xa2\xb0\x6b\xe3\x0c\x7b\x41\x90\x24\x0a\x55\xe2\x29\xe6\x22\xcb\x9a\x66\xdc\xf6\x40\xf3\x28\x2d\x10\x3e\xa3\x13\x25\xab\x16\x05\x12\x69\xe5\x52\xc4\x11\xc7\x35\xa7\x43\x12\xa1\x1d\x1d\x85\x06\x66\x91\xe7\x52\x8e\xe6\xc3\x54\xfe\x3b\xc8\x61\xa2\x0c\x44\xb3\x70\xbb\xc0\x6f\xc3\xd7\x75\xae\x40\x96\xa7\xd6\xac\xc2\x2b\xd5\xa3\x25\x1c\x30\x8f\xab\x71\x36\xdd\x01\xfe\x90\x17\xff\x94\x54\x7c\x0d\x5a\x65\x54\x3a\xef\x0d\x15\x36\x42\x76\x9f\xaf\x55\x8c\x15\x99\x72\x9d\x12\x19\x05\x52\xaa\x97\xe9\x15\x61\x5a\x4f\xd1\xde\x43\x7c\xfb\x7a\xdd\x31\x62\xd2\x61\xe2\x8e\x11\xad\x85\xc7\xd7\x75\xbd\x03\xfd\xc8\x64\x83\x8e\xe1\xee\x62\xac\x71\xe0\x06\xf8\x5a\x21\x5b\x57\x52\x13\x8b\xe1\x14\x35\x48\x1f\x70\x5d\x1e\x7b\xa2\xac\xe7\x1b\x7e\x6b\xb2\xdc\x1f\xdf\x68\x87\xc5\xa6\x49\x6c\x8a\x9c\x60\x48\xba\x25\x80\x0b\x87\x7c\xa3\x24\x43\x3b\x45\xfe\x99\x72\x5b\xc2\x46\xbd\x37\x6e\x3c\xff\x15\xce\xe0\xbc\x36\x6e\x7c\x49\x44\x12\x2f\xaa\xea\xd0\x2e\xa2\x5d\x76\xd2\xc6\xce\x76\x01\x2f\x2e\x4a\x37\xe5\x78\xbb\x4c\xdd\x97\xbf\xc8\xc7\xee\xe5\x40\x45\xfd\xef\xe0\x44\x47\x61\xee\xda\x58\x91\x5f\xfd\x87\x40\x57\xa0\x8f\x05\xaa\xb7\xbe\x39\x51\xf4\xde\xdf\x46\x70\x0e\xdb\x75\x25\xa0\xb5\x29\x34\xab\x65\xbc\xe5\x98\x07\x5c\xed\xe0\x4a\xa0\x78\x13\xae\xa2\xb9\x09\xce\xfd\x5b\x54\x36\x07\x9a\xe7\x06\x0e\x2f\x91\xfb\x52\x5c\xa4\xd5\x44\x03\x54\x70\x40\x27\xde\x70\xda\x91\xa7\x54\x0e\xef\x54\x25\x15\xb6\xf4\xe2\x81\x96\x3d\x64\xbb\x05\x35\xcd\x36\x1c\xa5\xca\x1f\x2b\xe6\x9c\x3f\xae\xac\x7a\x42\xb3\x65\x39\x67\x4e\x5c\x98\xb7\xdf\x87\x79\x0a\x06\x5c\x84\x51\xcf\xa6\xd9\x4c\xf9\xcf\xd2\x63\xa0\x04\x3e\xa0\x1a\x00\x97\x1c\xbd\x05\x72\x82\xd4\x38\x73\x79\x38\xec\x4c\x51\x5d\x7f\xa8\xa8\xae\x3f\xd4\x52\x06\xe0\x5d\xa5\x23\xa1\x9c\xb2\xda\x7a\xbd\xa3\x72\x1b\xd8\xee\xaa\x14\x33\x5c\xd4\xbd\xa8\x2b\x7d\x1c\x7c\xc6\x2b\x61\x6c\x6d\x0a\x2b\x2c\xcd\x48\x00\x68\xe0\x08\xfd\xa7\x9a\x04\xe0\x9b\xaa\x55\xe2\x32\x4d\x2a\xd6\xea\x69\xf7\xcb\x59\xd2\xcf\x89\xcc\xa7\xe1\xd4\x66\xae\xa8\x62\xfd\x15\x45\x12\x65\x7a\xbd\x90\x19\x7d\xcb\x95\x06\x8b\xc9\xae\x28\xdf\x8c\xb7\x72\x92\xa1\x53\x61\x64\xd3\x7c\xe3\x9f\xfc\xfd\xae\xc9\x0a\x22\x48\xf2\xc9\xfe\xdb\xca\xdf\xbf\xad\xa8\x22\x56\x8a\xc8\x4b\x34\x8b\x30\xba\x07\x02\x7f\x1c\x78\xe2\x81\x4b\xe7\x94\x3f\x30\x4c\x3a\xcc\x20\x26\x9c\x4b\x1e\xa0\x71\x5b\x71\x36\x1f\xad\x93\x62\x8a\x93\xdc\x76\x92\x64\xb5\xe9\x23\x1a\x16\xa1\x76\x1c\x83\x3e\x00\xff\x17\x53\x28\x8d\x64\x24\xf8\x9f\xaf\x3a\x06\x40\xfa\x63\xc9\x9c\xd5\x95\x67\x3a\xb6\x6b\x88\x60\x76\x79\x9f\x87\x6a\xed\x77\xb0\xad\x8a\x3d\x5d\x58\xa0\x9c\x5c\x3a\x4c\x7a\xa6\xe1\x5b\xd1\xf8\x0c\xe6\x9b\x1a\x20\xc4\x7c\x6b\x50\xa4\xf9\x8c\xcf\xc0\x20\x7e\x71\xf8\x2a\xdf\x21\x3e\x33\x45\x89\x59\x25\xde\x5d\x6c\xf5\x8b\x34\x1f\x30\x39\x37\x52\x5b\xe8\x7f\xe5\xeb\x4a\xcb\xeb\xc2\x42\x2b\x59\x6d\x94\x56\x0f\x6f\xf5\x51\xe0\xbd\xd2\x8f\x14\x4d\x11\x93\x94\x9b\xb8\x6b\x51\xe4\x85\xed\xba\xad\x18\x8e\x2e\xa0\x2f\x58\x08\xa1\x15\xab\x1b\x90\xb3\x70\x16\x20\x81\xa7\x30\xed\x07\x5c\xa3\xef\x53\x4a\x67\xc4\x66\xac\xb3\xeb\xca\xc3\x97\x03\xdf\xa5\x73\x59\x2d\xfb\xd4\x66\x96\x89\xd4\x96\x25\x1e\xba\x46\x7f\xcb\xd7\x9f\xd8\x55\x9f\x85\x2b\x82\x3b\x85\xd9\xb9\x8f\xd5\xc4\x37\xca\x58\xd8\x43\x24\x7d\xc8\xfe\xa3\x20\x92\x79\x09\x09\x60\xd3\x1f\x6d\x48\x73\x11\x91\x5c\xd6\x54\xea\x97\xa7\x94\x14\x2b\x8e\x76\x4c\xcb\x8f\x2b\x09\x17\x92\x5d\xcf\x36\xb2\xdc\x0e\xa5\x4b\x16\x29\x27\x48\x3f\x48\xbf\x97\xea\x99\xff\x65\x95\x18\x89\xc3\xae\x49\xcd\x4a\x61\x1a\x2a\x0e\x3d\x3b\xa5\x9a\x5f\x39\x1b\xe6\x0f\xb6\x86\x49\x9c\x8c\x12\x11\xdf\x95\x2c\xbe\xce\x5c\x57\x1f\xf3\x40\xab\x9f\xa4\xb6\x6b\x20\xc6\x26\xa8\xf4\xc3\xd8\xff\x7c\xa3\x81\xdb\xeb\x9e\x91\x48\x5c\xd1\xab\xb0\x88\xd2\xfa\xef\x1d\x8e\x61\x12\x67\xd4\x69\x51\xfe\xb3\x30\xc2\x61\x30\xa6\xe2\x29\xf8\xfd\x77\xc6\x9f\x94\xf1\x22\x66\x23\x50\xd6\x2b\x22\x57\x45\x5c\x51\xed\xe0\x3a\xf8\x22\x15\x9d\x06\x49\x84\x04\x3b\xaa\xa8\xd7\x15\x67\x0b\x92\xcd\x70\x21\x0e\xeb\x3c\x79\x94\x64\xb6\xf7\x48\xe9\x77\x30\xd5\x8a\x8a\x32\x1a\xc4\x42\x2e\xbd\x71\xf0\x15\x58\x65\x9c\x56\x2c\xa2\x9f\xcb\xba\x0a\x73\x5e\x9d\x78\xf7\x15\x22\x9c\xb9\xd6\x24\x63\xe7\x6a\xe3\xa6\x1b\x9a\x88\x72\xfb\xb0\x90\x8f\xd2\xe9\x09\x27\x82\xdb\xd6\x58\xb9\x63\x2a\xbf\x9c\x86\xab\x96\xb8\x22\x9c\xe8\xa9\x92\xa3\x51\xe5\xb9\x46\xdb\x33\x7a\x9d\xd5\x24\xa0\xcc\x2c\x0c\xe4\xea\x43\x95\xdc\x32\x61\xda\x49\xd2\xd8\xc2\xf8\xaa\x63\xd6\x53\x17\xf9\xf3\xa1\xbb\xca\xcc\x83\xb5\x42\x44\xae\xdb\xfd\x50\xd7\xa6\xa3\x3c\x9b\x51\xda\xa0\xcd\xb6\x4f\x9e\x5d\x52\x0d\x65\xfc\x5c\x78\xc8\x23\xfe\x5c\xcd\xcd\xc8\x67\x94\xb1\x9c\xd0\xc6\xc3\xd7\x15\x88\x87\x27\x07\x36\x29\x5b\x0d\xfc\xe9\x76\x8c\x2a\xdf\xb4\x75\x4a\xb7\xc8\xec\x67\xca\x53\x1d\x2f\x70\x6e\x8a\xa9\x03\x35\x67\xd8\x9a\xd9\x49\xe9\x9b\x0a\x6b\x2f\x0d\x94\x00\x62\x4b\xdf\x90\xf1\xbc\xd8\x27\x58\x23\x8f\x01\x1a\x81\x24\xc1\xe5\xf1\x14\x9b\xf5\x4b\xfb\xd8\x26\xbd\x41\x2e\xb2\xfc\x38\x76\x0e\x3c\x96\x6b\xfa\x54\xd9\xde\x6e\x3c\xfb\x2c\x9f\x84\xc7\x74\x39\xef\x8f\x91\xba\xe2\x47\x09\x3c\x90\xfa\xcf\x09\x73\x2c\x71\x6b\xb9\x72\x31\x09\xd7\x28\x56\x47\x81\xfd\x8a\x92\x26\x63\x99\x2e\x9c\x68\xbc\x09\x90\x7b\x6a\x40\x32\x05\xd0\xa0\x93\xb5\xa4\x62\x44\x7e\x32\x14\xc8\xa2\x7c\xfd\x37\x03\x55\xcc\xff\xe6\x78\xb7\xc7\x1d\xdb\x27\x68\x68\xe4\xa9\x95\xc8\xdb\x8d\xb1\x22\xf9\x7a\x74\x52\xc6\x0c\x48\x92\x02\xd0\x2f\xca\x77\xf4\x78\xba\x9e\x02\x5f\x0b\x74\x13\x22\x5c\xe0\x45\x81\xb7\xb7\xb5\xfc\x38\xe7\x1b\x31\xb2\x8f\x83\x3c\x9b\xfc\xa7\xdf\x64\xba\x29\x38\x0f\x7b\x15\x69\x2b\x75\xa4\x6d\x6a\x90\xc4\x9c\x89\xa1\x35\x04\xfb\xb2\x8b\x1e\x95\x7e\x6d\xe7\xa7\xd1\x7c\x25\x05\x7a\xfa\x7e\x2d\x8c\xc2\x0c\x18\x2e\x24\xa7\xae\x87\x5d\x8a\x9e\xeb\x2e\x3d\x3a\xe6\x6b\x47\xdb\x17\xe7\x76\x81\xac\x08\xc6\xe1\xe6\x58\xc9\xfa\x5c\xc4\xb0\xe1\xc1\xdf\x57\x28\xbd\x3b\x34\x3a\x58\x77\xa7\x54\xa4\x98\x15\xe9\x28\x2a\xd0\x09\x25\x54\x30\xe5\x5f\x0a\x47\x8c\x87\x4e\x44\xe1\x30\xcc\x6d\x6f\x47\xf9\xaf\x40\x6d\xbd\x8b\x4d\x82\x14\xe2\xaf\x05\x5a\x5d\xee\x9c\x6a\xcc\x66\xdd\x21\x6c\xeb\x7f\x45\x2e\x0e\x60\x42\x6f\x2b\x11\xac\x30\x8e\x93\x91\xe9\xd2\x73\xb0\x37\x45\x48\x45\xf1\xac\xb6\xc6\x0f\xcb\xfb\x5a\xc3\x10\x5d\xac\xe5\x33\x20\xf4\x3b\xaf\x82\x75\x4d\x43\x3e\xb0\x71\x8f\x84\xbc\x74\x41\xe4\x37\x60\xb0\xf8\xa6\xe2\xa1\x95\x3f\x60\xe2\xd8\xba\x30\xdd\x45\x80\xaa\xff\x6c\x6b\xc2\x6f\x61\xa1\x95\x25\x71\xd3\x43\x9c\x00\xba\x70\x5c\x0a\xe5\xd4\x4a\x11\x6e\xab\xd1\x5a\x5c\x6c\x8d\x92\x34\xef\x27\x51\x98\xb0\xd1\x92\xd6\xaa\xc6\xa2\x9f\xdf\x3a\x67\xbb\x08\x33\x43\x60\x36\x97\x1a\x42\x2d\x96\xaf\x15\xd4\x26\xb3\xe9\x5a\xd8\xb5\x3b\xcb\x7f\xc5\x7e\xe4\x8d\x26\x62\x56\x64\x45\xb4\x4c\x2b\x4c\x12\x16\x85\x6b\x69\xf0\x60\x54\x46\x3a\x08\x91\xbc\x4f\x07\x45\xe1\x9a\x7d\xa4\x5c\xbe\xf0\x2c\x6e\x2a\x1d\xac\x4d\xfc\x24\x8e\xaf\xff\x0d\xbe\x8e\xeb\xc2\x5b\xde\x27\xab\xff\x28\x9c\x54\xbe\xa1\x87\xc1\x23\xdf\x99\x8a\x4e\x95\x72\xea\x85\x60\xb7\x5b\xd8\xcf\xf6\x76\xfa\xa2\x37\x48\xc7\x60\x9b\x37\xc9\x36\xc8\xe1\xe6\x2d\xf0\x29\xac\x07\x78\xec\x97\x21\x22\xe3\xa4\x12\x3d\x6c\xf7\xb2\x0a\x87\xd3\x64\x48\xc4\x23\x33\x9e\x74\xe2\x1c\xfe\xd6\xa5\x9b\x1c\x23\xc9\x7d\xcd\x00\x7c\xbf\xd2\x9a\xbd\xb8\x08\x90\x40\x16\xf6\x43\x59\x71\x8a\x72\x7e\x5e\x6e\xea\xdc\x1f\x71\xeb\xc8\xfd\x71\xfd\xd3\x0e\x5d\x7a\x56\x35\x1a\x8d\x2b\x95\xd3\x2f\xcd\x13\x2c\x85\xf2\x85\xa2\x69\xe2\xd9\x87\x2e\xba\x26\xb9\x4e\x91\x6c\xd8\xde\x8c\x6a\x3c\x7f\x0b\xaf\xca\x37\x18\x3d\xf1\xb6\x75\x77\x54\x0d\x48\x68\x40\x5a\x30\x0d\xea\x8c\x15\x05\x23\xc5\x3e\x70\x2c\x78\x42\xa7\x08\x37\x4c\xac\x94\xe1\xb7\x54\xf2\x9e\x50\x49\x2f\x6b\xf2\x6c\xd6\x63\x25\xb6\xb7\x55\xc4\x79\x09\x59\x19\xb9\x29\x5f\x51\x83\xc4\x61\x25\xaf\x69\xef\x70\x90\xa4\x45\x06\xc2\x72\xb8\x4a\xa8\xa8\xf1\xf5\xd8\x93\x53\x22\x63\x29\xd5\x90\xc7\x95\x4c\x4e\xba\x92\x68\xad\x73\x0c\x98\x68\xa6\xf9\x33\xe4\x6f\xff\xbd\x7f\xd0\xf0\xcb\xfb\x0a\x19\x3e\x39\x99\xb7\xfa\xf1\xe2\xdb\xd8\x35\x9b\xee\xf0\x7d\xc2\xd3\xfb\x40\xa7\x92\xe1\x1f\x22\x59\x71\x78\xec\x1a\xa3\xbe\xb0\xb7\xed\xb5\xd3\xcf\x56\xea\x56\xf3\x07\x5b\xa3\x04\x7d\x7b\xd2\xee\x54\x7e\x0d\x5f\xd7\x69\xce\x9b\x22\x2f\x86\x12\xa4\x71\x8b\x59\xe0\xd3\x13\x67\x95\x7e\x50\x6a\xd7\x42\xbb\x2e\xc2\xd9\x18\x8f\x8f\xd5\xf1\xfd\xb1\x42\xbc\x9a\x38\x1c\x9a\x68\x97\xef\xe2\xfb\x0f\x1a\xae\x78\x9a\x4e\x48\xb8\x0c\x60\x6f\x11\xf9\xae\x86\xeb\xb0\xff\xd3\x29\x16\x37\xcc\x81\xa2\x74\x5b\xe2\x15\x7c\xb2\xb6\xc4\x6d\xd2\xa4\x88\x7b\xcd\xd2\x57\x82\xff\x0e\xe4\x2f\xae\x1b\x34\x84\xd2\xe6\x54\x93\x63\x58\x0b\xbb\x79\x92\x86\x9c\x68\x47\xd5\xea\xa4\xc6\xc3\x9d\x74\xfd\x0f\xeb\x03\xd3\x5d\x95\x9d\x2f\xc4\x48\x0d\x47\x57\x59\xc5\x07\x2e\x2e\xb6\x28\xe7\x31\xa5\xa9\x79\x25\x50\x9a\x9a\x57\xea\x3e\x13\x0e\x1d\xa4\xd6\x85\x06\xe5\x20\xf0\x4d\xcd\x47\x96\x5a\xd6\xa4\xd1\x46\xd3\x27\x14\x09\x77\xb9\xb4\x79\x5e\xa9\x4d\xff\x48\x75\xf9\x41\xe9\xe9\x49\x7a\x12\xa9\x6c\xd3\x6f\x08\x37\x28\x79\x42\x18\x75\x24\x31\x10\xfe\xbf\x0d\x1f\xd6\xc1\x95\xe7\xe6\x1d\x5f\x82\xea\xc1\xbb\xbc\x45\xee\xd8\xbb\x83\x88\x2b\xf8\xbb\x68\x57\xe3\xac\x7d\x9c\xfa\xe9\x19\xd4\x11\x28\x05\xb0\x6b\xd3\x5a\xc9\xe5\x52\x72\xcf\x5b\xfa\xa5\x38\x3f\x1b\x8a\x9c\x9f\xd2\x53\x16\xb0\x5e\x14\x64\xb8\x33\x85\x6f\xd4\x01\x94\x7e\x4e\xf5\xe2\xfc\xda\xb4\xab\x54\xd3\x21\x04\x58\x7e\xf8\xaa\x64\xea\xf0\x4a\x70\x37\x14\x17\xd3\xbc\xd3\x4f\x7a\x52\x11\xf6\xc5\xb1\x34\xfc\x22\x73\xf9\x81\x2a\x32\x7f\xb0\x95\xf6\xed\xa5\x7d\xf3\xad\x97\xf6\xbd\xb0\xb3\x5c\xd3\x08\x14\x8f\x91\x53\xe6\x60\x93\x8e\x11\x8d\x41\x37\x88\xa8\x0f\x6b\x3c\xa5\x52\x3e\x61\x3a\x37\x89\x02\x9f\x54\x50\x89\xb0\x1b\xc6\x2b\xb3\xaa\x70\x76\x53\x0b\xa5\xbf\x3f\xf6\x15\x82\x8b\x8a\xbc\xe8\xbc\x76\xcc\xce\xbb\x0d\x52\x2e\xdc\x8c\x7b\x59\xf0\x6f\xb7\x35\x1f\x02\x93\xd4\xa2\x16\xf2\x64\xbb\x56\x00\x31\x4f\x72\x13\x29\xe5\xbe\x7f\x4d\x8b\x8f\xaf\xb5\xe8\xb4\xe9\xae\x0e\x12\x64\x13\x11\xee\xc0\x9e\xf0\xb5\xf2\x2c\x21\x30\x5e\xba\xc5\x34\x52\xf8\xf5\xbb\x5a\x0a\xff\x7f\xa5\xb7\x44\x5d\x68\xcf\xc4\xcf\x26\x12\xcd\xfc\x37\x81\xa2\x75\xfc\xc5\x4a\xf7\xde\x73\xad\x55\x1b\x45\x1b\xff\xe4\xef\xaf\x99\x34\xb6\x51\xa4\x45\x65\xc1\xbb\xcf\xd7\x2e\xeb\xdb\x4d\x93\x2c\x73\xfa\x72\x48\xfa\x1e\x1e\x2b\x01\xc6\xc3\xea\xf4\xf9\x07\xff\xf9\x7f\xd6\xf0\xf1\xe2\x25\xda\x77\xd2\xc5\xe2\x13\x55\x61\xdc\xb7\xd4\xc9\xce\x18\x2b\x54\xb7\x98\x5c\x95\x6f\x5c\xc8\x9e\x8c\x46\x49\x16\xe6\x96\x1c\x23\xa7\x29\xeb\x38\xcb\x50\x26\x60\xee\x0f\xa0\xb4\x24\x39\xe2\x0b\x8f\xa3\xd0\x76\x2d\xcd\x36\x93\x92\x07\x1e\x53\x77\x7f\xac\xf0\x03\xd7\xab\x86\x9b\x50\xa1\x43\x93\xa2\x56\x86\x31\xfe\x98\xf6\x04\x5f\xab\xb8\xa6\x6b\x86\x23\x6b\x8a\x59\x9f\xa9\x7e\x8d\x86\x40\x1a\xac\x3c\x5e\xfb\xbe\x3e\x2e\x98\xd4\x96\xb5\x9f\x2b\x10\x2e\x82\x25\x27\x45\x9c\xdb\xb4\x1b\x99\x70\x38\x25\x0f\x78\x54\xb5\xee\x1e\xad\x03\x20\x0f\x8a\x95\x15\x97\xf1\xd0\x14\x8f\x7c\xad\x36\xff\x68\x90\xd8\x38\x3c\xc4\x99\x47\xc4\xb2\x67\x02\x05\xe3\x62\x92\x1c\x9c\xac\xff\x8f\x92\x90\xd8\xd2\xcb\xb8\x49\xd2\x90\x9b\xc7\x15\x92\x2a\x8c\x7b\x2c\x7e\xd2\xd0\x51\x8f\x97\x37\x7d\xcf\x27\x69\xa2\x70\x34\x32\x2b\xdc\x7e\xe7\xf0\xed\x8b\x1e\xf7\xee\x15\x1b\x06\x1b\xa3\xa4\x9b\x86\xd9\x86\xc6\x1b\xe8\x6a\x51\x85\x1b\x63\x61\x81\xf8\xff\xb5\xfe\xe1\x45\xd5\x26\x5d\x15\xde\xc3\xf0\x0f\x3b\x26\x57\x3a\x8e\x97\x94\x8e\xe3\x25\x87\x78\x31\xdd\xae\x8d\x6c\xaa\xba\x88\x98\x46\x20\xf0\x8b\xf4\xb7\xff\x7f\xc6\xfe\x34\x48\x92\xf4\xbc\x0f\xc3\x67\xaa\x7b\x66\x76\xf6\xc4\x1e\x00\x44\xfe\x83\x7f\x17\x25\x04\x20\x45\x00\x30\x45\xdb\xe1\x30\xec\x70\x96\x67\x06\x58\x4c\x07\xd9\x3b\x31\x33\x98\xa5\x36\xfc\x61\xb3\xb3\xde\xae\xca\xed\xac\xcc\x42\x66\x56\xf7\x36\xc2\x1f\xf4\xc1\x76\x28\x6c\x05\x83\xb6\xe5\xa0\x22\x24\xd2\x92\x6c\x53\xb2\x28\x45\xf0\x02\x49\x51\xb0\xb3\x48\x1c\x04\xb0\xe0\x62\x17\x7b\xef\xec\x31\xf7\xd1\x33\x3d\xf7\x7d\xf4\x38\xf2\xfd\x3d\xcf\xfb\xfe\xaa\x2b\x37\xe8\x6f\x99\x33\x5d\x55\x79\xbc\xc7\x73\xfc\x0e\xca\x98\xfb\x26\x19\x8c\xca\xfe\x0c\xb9\x5f\x9f\x25\xf1\xc9\xcb\x18\x24\x98\xe4\xaf\x4f\x75\xdb\xf6\x1c\x6c\x97\x99\x35\x0d\xf3\x2a\xc6\x48\x5b\xd5\x14\xff\x53\xe4\xa5\x94\xc7\x4b\x8a\x4b\x73\xf8\x7f\x57\x53\xbe\x40\xfd\xd6\x22\x7e\xf9\xe1\x96\x93\xf2\xfe\x63\xc2\xa6\x0a\xff\x1d\x3d\xc3\x07\x52\x59\x12\x5c\x99\x7d\x93\xc8\x8a\xde\x47\x92\xae\xe2\x8f\xf6\xe6\xb0\x63\xde\xc4\xfa\x8e\xcd\xe4\x56\xe0\xd5\xbb\x84\xcc\x2d\x1f\x69\xa2\xaf\x16\xe1\x72\x9c\xf6\x64\xe8\xe3\xef\xfe\x07\x7b\xaf\x72\xdc\x00\xe3\x6c\xa7\x46\x1c\x73\xb0\xa3\x3e\xa8\x7c\x4b\xe7\x9e\x0d\x11\x71\x27\x8f\x75\xa6\xa5\x23\x9e\xad\x9f\x58\x58\x9a\x5e\xac\x3d\x7c\x27\x60\xb2\xdf\x8b\x02\x3e\x49\x3a\x73\x49\x6c\x96\x8d\xe0\x9c\x10\x33\x9d\x0c\x5a\xcf\xef\xf3\x76\x91\x75\x14\x20\xff\x61\x07\x28\x6a\x31\xb3\x63\xb2\x3b\xbc\x1d\x10\x68\xd6\x99\x39\x3f\xec\xc3\x92\x0b\xc1\x04\x9b\xd9\x7e\x14\x03\x1d\x52\x3d\x1b\x97\x98\x15\x7f\x19\xeb\x0a\x2a\xca\xa0\xf0\xe2\x45\xfe\x2f\x68\x72\x63\x59\xba\x1a\x50\x99\xe8\x0a\xe9\x91\xde\x9a\x8a\x2d\xea\xc5\x30\x4e\xa3\xdc\x84\xba\x7b\xaa\xcb\x92\xfd\x55\xac\xc8\xaf\x54\x84\xab\x3a\xe6\x90\x68\x2f\xc9\xcc\x17\xb3\x39\x5c\xbb\x3a\xcf\x35\xbc\xbc\xc5\x4c\x9f\xbc\x8e\xb0\x09\x4b\xc4\x69\x38\xd8\xb3\xed\x24\x5b\x31\xf9\xac\x67\xb4\x9e\x45\x9e\x86\x64\x7b\xc6\x16\xfb\xb0\x74\xbd\x53\x91\xcf\xde\xb5\x09\x02\x95\x09\x87\x56\xf1\x81\xab\x40\x88\x1c\x91\x81\xcb\xb1\x1d\x3e\x5a\x1d\x6a\xc8\x60\xec\xae\x55\xe7\xb8\x75\xea\x3f\x11\x79\xe2\x6a\xce\x90\xde\xdd\x69\x8e\x3d\x2e\x10\x2a\xcf\xf4\x84\x17\x87\x4c\xff\x23\xb0\x8b\xe4\x64\xaa\x2b\xe3\x9c\x0e\xc3\x32\x9c\x61\x01\x9e\x0d\xbc\x60\x2c\x0a\x52\xb6\x46\xf8\xf1\xb6\x87\x8d\x99\xb0\x97\x8b\x89\x25\x8a\xd3\xe2\x6f\x28\x27\x4d\x59\x9a\x60\x83\x67\xc9\x38\x00\xde\x73\xf8\x4c\xab\x43\x12\x11\x27\x59\x51\xcd\x8d\x89\x7e\x5c\x3e\x51\x7f\x00\x70\x0e\x38\x32\x62\xe9\xdb\x32\xb6\x4f\x0e\x05\x9f\x1f\xe2\xc9\xa1\xc9\xfc\x64\xc7\x6e\xf2\xf8\xb3\xb3\x30\xe5\x56\x0d\x7d\x8f\x18\x10\x36\x09\xb6\xe8\xc7\x3b\x88\x33\x48\x46\x43\x4b\x46\xd7\xec\x7c\x56\x3d\x2f\x7b\x27\x78\x29\xf7\xed\xc6\x8d\x1c\xf8\x28\xab\x0c\x5f\x65\xcb\xd5\xdb\x3e\x4c\xca\x86\xab\x79\xdc\xeb\x8b\x6c\x1b\xe2\xdc\x3b\x41\xeb\x57\xf7\x78\xf7\xbb\x43\x5e\x7b\xbd\xbe\x52\x64\x14\xf7\xb0\x5a\x2a\x25\xd7\x07\x29\xa7\xd8\x53\xe6\x1c\xe1\x76\xa3\x6c\x35\x2b\x65\x77\xc4\x63\x38\x8a\x12\x93\x9c\x38\xb1\xb9\x61\x56\x94\x3b\x7d\x26\x72\xd4\x52\x8f\xe5\xca\x98\xa6\x8f\xfe\xb2\x34\x28\x71\xaf\xb2\xf9\xcb\x1a\xcf\xe0\x51\x3b\xfc\xfe\x5b\xf1\xd0\x46\x59\xe0\x0a\xde\x8f\x46\x8e\xdc\xa4\x8d\x4c\xbc\xac\xf9\x84\x13\x68\x73\x80\xe3\x23\xd5\xce\xb8\x3d\xcc\xcd\xe2\xdf\x6d\xff\xea\x2f\x78\xfc\xd3\x43\xd0\x39\xc3\xbe\x77\x1f\xf2\x9b\xa8\x61\xdc\x47\x74\xab\x6a\x16\xb8\x3a\x70\x16\x7e\xa1\xd3\xfa\xc6\xd7\x9d\x18\x02\x75\x25\xb7\x8e\x6d\x2a\xe8\x42\xc7\xfd\xbb\x24\xf5\x94\xbe\x98\x5d\x86\x7f\xff\x4b\x1d\xc2\x76\xcd\x8c\xeb\x95\x5b\xa7\xb7\x2d\x1d\xda\x5a\xc0\xff\xef\xe9\x4e\xfd\x08\x05\xe8\x8a\x78\x55\x64\xaa\x02\x8f\xe6\x81\x4c\xbb\x38\xbc\x02\x08\x8a\xb7\x7b\x1b\xcb\x0e\xbe\x77\x23\xb0\xb6\x82\xe4\xb1\xf1\xac\xcb\xb5\xed\xe3\x44\xf5\xe1\x0a\x06\x25\xde\xe0\xd3\x63\x2f\x9c\x71\x83\x38\xb8\x5b\xc6\xa4\xae\xf6\x86\x1d\x68\xe0\xb7\x7c\x4a\x7c\xf6\x31\x5a\xef\x5a\xc8\x2e\x2e\xec\xec\x54\x99\x66\x6e\xae\xdd\x4d\x81\x60\x50\x1b\x66\x72\x38\x15\x29\x07\xac\x4b\x89\x89\xca\x3c\x1b\x84\xbd\xd4\x94\x82\x3b\xc1\x80\x01\xa4\x50\x8e\x9b\x98\x01\x8b\x59\xae\xf1\xab\x64\x6e\x81\x87\x56\x1e\xf6\xfa\xda\xa2\x2f\x6d\x2b\x70\x36\x46\xde\x78\xaa\xe3\xc1\xa1\xb2\x94\xea\x50\x6e\x39\x97\x0a\x51\xcf\xd0\x47\xf7\x49\x4b\xe4\x20\x2b\xca\xed\xf6\x91\x61\xca\xdc\xc5\x1c\xd4\x8a\x97\xb7\x04\xb9\xc8\x01\xef\xa7\xc6\x3e\x60\xda\xc0\xa8\xb0\x00\xa3\xdf\xfe\x1b\x9d\x47\x7d\x8d\x29\x37\x3f\x67\xdf\x32\xb2\x90\x37\x6d\x85\x18\x6b\xe0\x6d\x0b\x45\xc3\xe3\xfc\x41\x35\xd1\x7a\xf2\x2a\xd1\xf7\x83\xd6\x57\x7f\xcd\xd9\xd9\xd5\x73\xc2\xae\x7a\x9f\x7d\xc6\x0e\x6f\x44\x4e\x47\xd0\x44\x44\xb1\xe8\x51\x40\x3a\xb1\x93\x42\xc8\x1d\x4f\xf3\x11\x8b\x82\x13\x83\x63\xac\x25\x48\x4f\x61\xa3\x84\x07\xb6\xb5\x43\x44\xe0\xed\x98\x29\x98\x03\x5b\xac\x7a\x1f\x06\xcb\x23\x63\x3b\xed\x50\xb1\x7b\x48\x1a\x5f\x6a\xf2\x61\x1f\x04\x22\xa9\x8f\xa9\xd3\xf6\x0f\x9e\x1c\x93\x5e\x10\x1c\x35\x30\xf2\xb7\x63\x6d\x97\xe6\x3a\xca\xf4\xf2\xf9\xe0\x33\x9b\x95\x6f\xf7\x59\x50\xc4\xc3\xbe\xf2\x29\x1a\x3a\x52\xc0\x93\x25\x00\x37\x23\xac\x60\x04\xf2\xc7\x10\x2a\xe1\x59\xfc\x6e\x40\xae\x68\x02\x18\xc2\x9c\x44\xd9\x5e\xf4\x99\xec\x48\x42\x67\xfe\x2e\x42\x1a\xed\xb0\x90\x47\xdc\xa8\x1b\x9b\x34\x32\xc5\xec\xa4\x1b\x38\x21\xde\xec\x04\x44\xad\x6d\x8d\xea\x6e\x6b\x14\x8f\x77\x2d\xef\xaf\xd8\x41\x26\x97\x97\x6c\x17\x15\x1b\xf3\x05\xfc\x3a\x86\xc4\xeb\xb6\x04\x8e\x57\x7f\x8d\x69\xd8\xaf\xdb\xf1\x21\x9f\xb0\x03\x0d\x95\xcc\x56\xe7\x49\x37\x8f\x4c\xd8\x1d\x58\x7b\x75\x02\x49\xa1\x0b\xa4\x15\x7a\x0f\xd3\x30\x2f\x97\x26\x8f\xb3\xbc\x55\x8f\x53\x31\xd4\xc0\xd3\x56\x77\x8d\x86\xba\x64\x68\xf2\xac\x18\x86\xd2\x32\x42\xe0\x39\x6b\x93\x72\x39\x1e\xfb\x1f\xb0\x14\xad\xb8\x5c\xb5\xd6\xbc\xea\x2c\x58\x4f\x04\x75\x1c\xf4\x36\xed\x8b\xf1\x62\xd9\xb7\x5f\x29\xef\x09\x33\x51\x5f\x9a\x4f\x57\x06\x03\x86\x0b\x9d\x9a\x98\x3e\x5e\x9d\x2e\x8d\x42\x02\x0a\x5d\x64\xa0\x21\x9b\xc2\x2e\xe6\xc6\xec\xf0\xca\x8f\x7f\x55\x91\x69\xe0\x1b\x2c\x4e\x8f\x47\x88\x80\x57\x04\x37\xdd\xe4\x52\x8e\xed\xff\xc8\x10\xf2\xb5\xca\xf7\xb3\xa2\xb0\x30\x8f\xd5\xbf\xa2\x8a\x61\xf5\x78\x91\x30\x1e\x50\x4e\x8d\x2e\xec\xdc\xc0\x9a\x77\x98\x74\x05\x2e\x22\x12\xc4\xdc\xbe\xc8\xed\x6d\xc1\x96\xcb\xff\xe0\xe5\x21\x9c\x38\x16\x30\xa0\xe8\x18\xa6\x8a\x13\xc5\x72\xc5\x57\x50\x72\x55\xef\x6c\x1a\xb5\xf6\x82\xe8\x15\xba\x27\x8e\x11\x2e\xc7\xae\xc2\x26\xbd\xe0\x99\x89\xf6\x9e\x1f\x14\x3b\x3a\xbe\x08\xb0\x65\xec\x93\x9e\xd4\xf4\xb2\x32\x86\xa4\xd0\xdc\x9c\xac\x95\x57\xa8\xdf\x77\x85\x9a\x34\xb9\x59\x0e\x07\xc3\x96\x7f\x11\x90\x92\x91\x63\x8f\x8d\x19\x2d\x2c\x98\x7c\x9b\x5d\x73\xd8\xd7\x08\xbd\x84\x9d\x1d\x2f\x7e\x20\xbb\x07\x2a\x37\x10\x8f\xc5\xf6\xec\x1d\x0c\x06\x59\xa9\x36\x67\xa2\xd6\x4a\xa6\x4c\x57\x27\x33\x89\xc5\xf2\x71\x72\xba\xbd\xee\x9d\xce\x5f\xbd\x48\x46\x2e\x6b\x36\x2a\x53\x87\xcb\x7a\xa6\x23\x5e\xfc\x51\x45\xd6\xa5\xf0\x09\x03\x56\xe3\xf1\x0e\x81\x55\x8f\x57\x13\x66\x23\xb4\x71\x79\x78\xc6\x0c\x16\x62\x24\x75\xb2\xd9\xe0\x1e\x7f\x8f\xcd\x01\xa6\x55\xa3\xe6\xe7\xdb\x65\x3f\xcf\x46\xbd\xfe\xb6\xfa\xdb\x10\xec\xed\xe8\x4c\x60\xff\xea\x71\xe8\xb4\x0b\x1d\x79\xe2\x5f\x54\x13\xae\x6c\x0d\xc9\x43\x62\xb5\xa3\xc5\x3d\x1b\x09\xc3\x19\x04\x77\x72\x42\x61\x64\x51\xe6\x59\xda\x53\xff\x2d\x84\x99\xc0\xb8\xcb\xf1\x54\x27\xf3\x8b\x56\xd9\x30\x2e\x4b\xb5\xa8\xc0\x80\x16\xd4\xb4\x36\x43\x5b\x4e\x4c\xfe\xe8\x54\xac\x32\x3f\xdf\xb6\xf0\x31\x24\x60\xaa\xd8\xe6\x19\x87\x27\xd8\xb4\x21\x89\xbb\x06\x45\x1c\x55\x20\xa1\xba\xfb\x29\xae\xb5\xdf\x99\x4a\xdb\xc8\x6f\x46\x55\x02\xb0\x92\x88\x46\xbe\x9c\x10\x2c\x31\x1c\x95\xd9\x20\x5b\x88\x13\x33\xc1\x1d\xc3\xcf\xe8\xca\xa3\x3b\x40\x98\x2f\xc4\x65\x6e\x67\x94\x1d\x8c\xce\x4c\xd3\x0d\xc0\x53\x4d\xc4\x88\xae\x19\x8e\xd4\x33\xd5\x09\x28\x3b\x06\xed\x7a\x40\x2c\xc2\xe1\x30\x31\x85\x1d\x20\x48\xa3\xce\x20\xeb\xc6\x08\xbb\x16\x78\x8d\x82\x35\xac\x93\xf2\x57\x80\xc1\x29\x42\xbb\x41\x8b\x6d\x61\xd4\x93\xf5\x03\xeb\xf4\x36\x1a\x78\x5b\xac\x92\x01\x32\xb5\xe3\x53\x1f\xde\xbd\xbb\xbd\x90\x2b\xd9\x18\xb1\xd7\x3a\xeb\xb8\xaf\x53\x4f\xb8\xc8\xa2\xc8\xc8\xb3\x71\x11\xc1\xfc\xbc\xdb\x75\x26\xb0\xb0\x83\xb8\x28\x62\x6b\x41\xbf\x7f\x9f\xdf\xec\x3d\x80\xa0\xc9\xbb\x27\x09\x47\x69\xd7\x78\xa2\x9a\x14\x5d\x48\x78\xeb\x2a\x49\xe0\x8d\xbe\x9c\x7e\x99\xeb\x4d\x3f\x0d\x3c\xde\xfc\xa7\xd4\x56\x10\x5e\x91\x2d\x8a\x23\x71\x7b\xb3\xa2\x07\x8a\xf6\xb2\xfc\x07\xa6\x95\xfc\x47\x93\x07\x76\x3f\x1b\x18\x00\x8f\x54\x8c\xd0\x55\x3d\xfe\xcb\xa7\x20\x2d\xad\xfb\x26\xf5\xba\x2b\x0f\xfc\xde\x3e\x25\x54\x30\x37\x67\x8d\x8e\xb5\x03\x05\x48\x08\x9a\x6a\x80\x51\x6c\xf0\x70\x65\x25\x75\xeb\x11\x63\x04\xe4\xe7\x9c\x88\x9d\x6f\x27\x80\x91\x6a\xd4\x43\x22\xb3\xc7\xdc\x90\x8f\xd3\x34\x5b\x0e\x1d\x71\x01\x21\xec\x4d\x4a\xca\xd8\xfa\xac\xcc\x46\xa5\xe9\xce\x7a\x46\xe2\x2d\xf2\x19\x03\xdc\x41\x65\x08\xec\x8f\xa1\x62\xff\x2a\x35\xf7\x01\xed\x21\xc0\xcc\x6d\x02\xcc\xdc\xa6\xf0\xaa\x27\x8c\x07\xcc\x5a\xd5\xa3\x21\x21\xe7\xd3\x4c\x0e\x0e\xf3\x32\x2e\xc2\xd4\x0e\x35\x57\xb6\xdf\xeb\xcb\xf6\xba\x23\x0d\x47\x79\x77\x64\x5a\x24\x23\x7d\x91\x6a\x4b\x17\x27\x8d\x90\xd3\x30\x2d\xb7\x91\x24\xe7\x03\x0a\x4f\x25\xdd\x93\x13\xa2\xc7\xc0\x12\x42\x73\xd3\x46\x92\x78\x31\x34\x69\x57\xdb\xc7\x18\x69\x62\xc5\x22\x27\xae\xe4\xd3\x1d\x46\x54\x92\xbd\xca\x9a\xad\x5b\x3a\x44\x27\xf4\xd8\xd6\x78\xe0\x89\x54\xb8\xf9\xbb\x04\x9e\xb8\x3b\x55\x09\x7c\x7e\xcf\xc1\xf6\x37\x47\x71\x69\x26\x4c\xdb\x2a\xef\x2a\x73\xb8\xd1\xbf\x65\x25\x2e\x8a\x59\x6a\xa7\xdf\xda\x54\xdf\x26\xe0\x19\xb4\xe4\x31\xbb\x6e\x05\xde\xa8\x61\x71\x54\xe8\x80\x47\xf6\xf7\xc4\x98\xe8\xa6\x15\x71\x89\x9e\xae\x23\x74\x4e\x74\xfe\x76\xfb\xcb\xdb\x28\xd2\xfe\x7d\x1b\x14\x88\xa6\x92\x5c\x08\x62\x17\xd0\x76\x44\x70\x86\xac\xdd\x5e\x6d\x82\x5d\x94\xd9\x2a\x36\x58\xf7\x10\x9c\xe8\xee\x61\xde\xbf\xfa\xf1\xb0\x40\x19\x4f\x60\x76\x88\x7b\x15\x73\xe7\xdb\xea\x18\x5a\xba\x18\x34\x59\xdf\xa9\x15\x00\xb6\x43\xa8\x26\x5d\x45\x98\x21\xdd\xe6\x8a\x68\xd6\xaf\x4f\x44\x4c\x83\x28\xde\xc6\xd2\xe9\x78\x62\xca\x56\xb6\x8f\x47\x53\x74\x3c\x12\xb4\x3c\xef\x23\xb9\x15\xc3\xae\x46\x9d\x8e\x3c\xaf\x97\x15\x19\x44\x4a\xa4\xa0\x9d\xfd\x7c\x83\x9e\xe0\x01\xbb\x82\x91\xa5\xcf\x77\x2b\xb2\xeb\x11\xac\x1b\x3a\x52\xb7\x82\xa7\x69\x65\x5e\x34\x69\x37\x4c\xcb\x02\x0a\x42\x82\x93\x0c\x3c\xea\x04\xea\x5d\x72\xcc\xa3\xe2\x74\x03\xbe\xa9\xcc\x43\xef\x30\x8f\xd5\xf6\x5f\xda\x17\x22\xc7\xd4\xe5\x2c\xca\x2c\xeb\x42\xa6\xc9\x89\x32\x3a\xa8\xd3\x39\xd2\x6c\xf8\x49\x03\x32\xe3\x40\x3b\xcc\x7b\x23\xa9\x2a\xaa\xc3\x89\x37\x6a\x3b\xd7\xc0\x46\x2f\x54\x37\x9a\x28\x2b\x0e\x65\xd9\x84\x80\xf9\x5c\x7b\x29\x35\x66\x02\xd6\x73\x81\x98\x46\xd3\x80\x44\x38\x0d\x99\x22\xce\xcd\x0c\x3b\xaa\xd8\xfb\x42\x49\xec\x2e\x19\x8d\x9d\x22\x75\xd5\xa1\xc9\x23\x33\x14\x69\xfe\xbd\x84\x1f\xad\x43\x10\x1d\xe5\x54\xb6\x49\xa3\x87\x7c\x13\x5d\xa4\x8e\x10\x3e\x4b\xe8\x80\xe9\x77\x3b\xf0\x68\xf9\x8f\xc8\x6a\x42\xd0\x08\xf2\x89\xc0\x63\x6d\x51\x4d\x42\x0b\xe6\x48\xe5\x01\x5d\x4b\xc6\x0c\x0b\x32\x9d\x43\xde\xc8\x5c\x46\xa9\x5c\x10\x76\x3d\x0f\xeb\xa0\x79\x1b\xd9\xc4\x40\x9f\x59\xf5\x12\x3d\xaa\xf7\xb1\x31\xa9\x26\x9f\x25\x93\xe0\xa7\x3a\x0d\x21\xca\x62\x12\x0e\x16\xb2\xd5\x50\x5e\x27\x16\x88\xe3\x81\x5f\x2c\x8e\x37\xf5\x1e\x97\xe3\x22\x2e\x49\x3f\xe1\x24\x0d\xeb\x93\x84\x6a\xee\x86\x29\x36\x73\x6c\xbe\xff\x6b\xd5\xda\xc4\x0c\x77\x31\xb3\xef\x37\xbc\x36\x15\x49\x89\x70\xde\x30\x4c\x63\xa3\x71\x32\xea\xb0\x47\x02\xc2\xc3\x1c\x21\x7a\x43\xd4\x0f\xf3\x9e\x79\x88\xba\x10\x47\xf1\x1b\x0a\xdf\xc2\xb7\x10\x7e\xeb\x59\xa7\x64\xe3\x19\xae\xb3\x63\xd2\x4c\x3e\xc7\xe8\xa1\xb7\xc9\x35\x71\x47\xa7\x21\x81\xe8\x86\x71\xb2\x6a\xbb\x49\x60\x09\xfc\x10\x83\xc4\x51\x6c\x1c\x45\xff\x3d\xa2\x20\x5c\x99\x42\x02\x5b\x56\x0a\x50\x95\x9a\xa9\xd9\x4b\x52\x48\x26\x2f\xa1\x05\x88\x33\xfb\x1c\x22\xa0\xe5\x4c\xfd\xae\x52\xff\x6a\xfa\x85\xd6\xcf\x37\x89\xd5\x91\x48\x7d\x1c\xd8\xd4\x61\x33\xf6\x67\x6e\xce\x96\xe6\x66\xa9\xdf\x81\x40\xcd\x19\x49\x39\x8c\x04\xda\x65\x72\x4c\x56\x30\x99\xe5\x2e\x1a\x41\xf8\x3b\x4b\x74\x97\x50\xdf\xac\x7c\x41\x68\x25\x37\xd1\x12\xc8\xdd\x92\xa0\xdb\xe9\xa7\xc9\x7a\x93\x9c\x67\x99\x87\xa3\x02\xc6\xf6\x13\xbe\xd2\x1a\xad\x3b\x9e\xe7\x28\x19\xe6\xb1\xee\x59\xce\x57\xc2\x5b\x0d\x5d\x27\x2f\x52\x2f\x3b\xb7\x90\x84\x03\xb3\xc3\x53\x39\x41\x13\x14\x35\x25\x7c\x1c\xd1\xcf\x5b\x36\x80\x42\x89\x04\x6d\x48\xac\x0d\x68\x8a\x61\x4b\x7b\x68\x4c\xbd\xfe\xed\x9d\x27\x5c\xe5\x2a\x09\xd3\x48\xa3\x0a\xed\x7b\xd4\xbf\xa9\xa1\x31\xc1\xf7\xd7\xa6\xbd\x5a\x77\x43\x65\x81\x58\x86\x4f\x74\x48\x3b\xe8\xd5\xca\x47\x10\xf7\x88\x48\xf0\x80\x34\xb7\x86\x19\x92\x1e\x68\x2a\xa2\xb6\xff\x7d\xdc\x1e\x10\x5c\x47\x31\x01\x51\xa0\x3c\x11\x78\x8b\x61\x6b\xe1\xba\xf1\x5a\xe5\x89\xc6\xb7\xc9\xf3\xff\xfb\x84\x1b\x9a\xff\xea\xf3\xdb\x5a\x7b\x0e\x4e\xd6\xfa\xa4\x8e\x4b\xc1\xd6\x8e\x89\x62\x4d\x6b\xf7\x1e\x29\x00\x7c\x3c\x85\x80\xdf\x3b\xef\xe9\x70\x29\xd9\x7e\x7c\x18\xd0\x50\xfb\x90\xec\x09\x22\x93\xcd\x10\xba\xec\x5a\x40\x16\x1e\x82\x96\x13\xc5\xb9\xa9\x87\x2c\x78\xb0\x21\xed\x85\xad\x8e\xa7\x72\xb6\xc8\x96\x2b\x2e\xcd\x60\x96\x02\xc4\x23\x44\x07\x44\xda\x80\xc5\x70\xab\x6d\xf4\x68\x2c\xd8\xe0\xc0\xbb\x9c\x39\x57\x62\xf1\x3c\xab\x48\x89\xf0\xed\x4f\xa4\x31\x0d\xb3\x91\x20\xb9\xc4\xcb\x36\x20\x8f\xc0\x2b\xb4\x6a\x27\x59\x4e\xad\x43\x0d\xb8\xd4\xb1\xd8\xb3\x08\x9e\x41\x03\x01\x23\xe1\x2e\x82\x22\xe7\xca\xe4\xd6\x1b\x4e\x1c\x8f\x57\xa4\x94\x2e\xe4\x28\xe9\xde\xb0\x2f\x4d\xf7\xa5\x11\xc8\x7b\x24\xfa\xdc\x9a\xf7\x35\xfc\x26\xa0\x56\x18\x6f\x96\x0b\x7b\x25\xf0\x3b\xda\x2b\xb4\xfd\x0e\xb2\xd4\xac\x3e\x59\xe7\x56\x18\x65\x57\x50\x9b\x40\x91\x11\xb5\x74\x27\x85\xe6\xca\x80\x33\x1d\x5b\x44\x54\xf7\x4f\x5b\xfb\xc2\xbb\x3b\x89\x62\x1d\x36\xdf\xbf\x24\x30\x22\x5a\x0a\xd4\x24\x50\xe5\x48\xf1\x35\x40\xf4\xf0\x1a\x81\xfb\xff\x18\xad\x04\x32\x44\xd5\x02\xb4\xc0\x81\x10\x90\x81\xeb\xaa\xd5\x1c\xea\x52\x4d\xdb\x7b\xcd\xcf\xb7\xc3\x95\x50\x43\x28\x76\xb5\x41\xeb\x00\x10\x3a\xcd\x7a\x7c\x65\x67\x21\x37\x61\x81\x90\xc0\xe1\x68\xe7\xe7\x1d\x12\xa5\x61\x9b\xea\xd7\xbb\xcf\xbe\xfd\xfb\x9c\x3a\x0a\xba\x8f\xc0\xd6\xdd\x09\x58\x11\x8a\x64\xde\x61\x6c\x13\x2e\x24\x06\x62\xc4\xa8\x85\x9e\x20\x0b\xf2\x13\x53\x91\xa1\x23\x79\x8a\x32\x05\xb6\x3b\x29\x6e\xca\x09\x29\x73\x99\x97\x2d\x1f\xc2\x06\x83\x4e\x42\x19\x71\xb8\xbe\xe6\xa6\x02\x60\x16\x4a\xcd\x51\xac\x28\x49\x54\x60\xdd\x9b\x8b\xf6\xe3\x61\xcb\xd3\x25\xde\x27\x33\x91\xf7\x59\x99\xd6\x2c\x26\x26\x2a\x11\xfc\x62\x9c\xad\xd9\x7e\xac\x1c\xbb\x7c\xb7\x6b\x06\x61\xda\x7d\xc4\xcb\xdf\x9c\x26\x60\xba\x98\x2e\x39\x7c\xa5\x1b\x36\x82\x21\x54\xf4\x24\x7b\xbe\xdb\x51\x83\x95\x0c\x30\x2d\xfc\xc7\xbb\x18\x5b\xd8\x95\x65\xc9\xc5\x0f\xde\xf7\xb6\xc1\xbf\xfc\x0b\x1d\x45\x38\x0c\x40\x85\x36\x79\x8b\x45\xb7\x5e\xc7\x07\xe5\x24\x78\x9a\x84\x31\x53\xeb\x9f\x6e\x0a\xfb\x70\x70\x95\xa7\x70\x31\x72\x42\x59\x53\x3d\xd4\x8a\xb8\x67\xa5\xab\xe7\xe6\x0e\x48\xe4\xba\x1e\xd8\x06\x88\x9c\x34\xbc\xa2\x03\xed\x22\x5e\x2c\x79\xe1\x7e\xd1\x3e\x2c\x27\x90\xeb\xe0\x2c\xe7\x2b\x8f\xab\x29\x57\xb2\xa7\xeb\xbf\x42\x55\xea\x2d\x44\x7e\x58\x78\x0f\x63\x8e\x49\x58\x16\x90\x13\xdb\x4d\xde\x11\x84\x15\x01\xc8\xce\x56\x74\xdf\xf1\x20\x8f\xe3\x3d\x60\xa9\x7b\x85\xa8\x33\x1f\xd9\x45\x05\x13\xf6\xd8\x84\x8b\xe8\x4d\xb4\x50\x11\xfe\xbd\x6b\x5f\x9d\x23\x9d\xd4\x37\xa6\x60\x6a\xee\xdf\xbc\x1d\x78\x3d\xb8\x1b\x14\xf8\x0b\x0f\x51\x9d\x37\x3d\x1f\x7e\xda\xe8\x7c\xcf\xc1\x76\x31\x08\xf3\xd2\x16\xb9\xeb\x1b\x50\xbe\xad\xbd\x1a\xc5\x60\x37\xf5\x04\xb2\x95\x30\xef\x16\x33\xde\x56\x51\x44\x53\x26\x62\x03\xe5\x9f\x36\x60\xf9\x96\xb2\xdc\x84\xa9\x46\xf1\x5a\xd0\x22\x22\xf1\x74\x12\x6f\xd3\x71\x16\x4c\x73\x2b\x9f\x27\x34\x9d\x9a\x5a\x92\xbe\xd2\x1e\x8c\xa2\x7e\xcb\xd3\x82\xcf\x12\x87\xee\x2c\xed\x76\xe6\xe5\xf2\x71\xea\xa2\xdd\xb1\x2b\xb8\x3a\x30\x7b\xa4\xe0\x53\x1d\xd2\xf5\xfb\xb7\x9c\xb0\x5c\xf1\xb2\x94\xdf\x7d\xa6\x33\xa9\x27\xf4\xb5\xe7\x59\x8a\x58\x2b\x02\x1f\xdb\x17\x4d\xac\xb0\x17\x64\xa0\x6c\x54\x64\x4b\xb9\x6d\x8c\x87\x84\xb4\x0a\xd6\x9a\x0a\xb3\xf3\x99\x7f\x1e\x96\x71\xb6\xad\xde\xc1\x36\x8e\x54\x5c\x5d\xf3\x80\x28\xb1\xa3\x45\xb9\xe3\x4e\xd0\xaa\xff\xd4\x55\x4c\x6d\xc9\x26\x5f\x15\x81\xb1\x03\xbe\x8e\xe8\xc4\x9e\xa6\xa9\x57\x56\xab\xa0\x6f\x12\x79\x1f\x28\x93\x09\x10\x50\x4e\xa6\x0a\x44\x87\x76\xed\x69\x2f\x98\xb0\xcc\xe3\x08\x72\xe0\x88\x83\xa1\x79\x8b\x80\xf6\x03\x3c\x55\x6c\x32\x1b\x4d\x66\x93\x49\x98\x76\x07\x61\xbe\x44\x5f\x20\x2e\xd9\xaa\xea\xe1\xe3\x8e\xd3\x8d\x03\x49\x74\x1d\x5a\xbe\x4d\x2f\xb8\x4a\x25\x46\x6e\x16\xb1\xae\x63\x0b\x0b\x71\xce\x12\x1f\x60\x60\xbd\xd9\x57\x79\xd2\xfd\x3e\x82\x6f\x5a\xc9\xdd\x58\xe5\x47\x54\x22\x55\x9e\x8f\x9c\x34\x99\x6b\x0d\xb2\xae\xc9\xe1\x00\x8e\x7c\xf9\x3a\x15\xae\x05\xbc\x27\xfe\xa9\xee\xf5\x41\x37\xc3\xa4\xa5\x3a\x7d\x60\x7d\xfd\x41\x40\x50\xae\x9b\x1c\xe8\xdd\xc0\x78\xc3\x38\xfe\xab\x06\x02\xa1\xdc\x6e\xbc\x30\x2a\x21\xff\xa5\x39\x1d\xd9\xa1\x9d\x0f\x3c\xba\x7b\xc1\x24\x59\xda\xb3\x00\xdd\xfa\xca\x51\x22\x43\xbc\x26\xc7\x53\x63\xe1\xc5\x17\xdb\xa5\xc9\xf3\x2c\x8f\x8b\x81\xfd\x10\x12\xf8\x1f\x92\xe2\xf4\x0f\x83\x69\x35\xf1\xf9\xf6\x30\x4c\x4c\x51\xc6\xa9\x52\xa1\x1a\x2d\x17\x1a\x96\xad\xdc\x0c\xc3\x38\x97\x96\x12\xc2\xb6\xbb\x6c\xc8\x75\x81\x40\x79\x4d\xda\xe0\xed\x91\xb5\xd0\x28\xad\xc9\xcb\xfe\x5d\x6e\x8b\x6a\x39\xdd\xb3\xe9\x1d\x6a\xcf\xc1\xf6\x42\x96\xa9\xeb\x0e\x76\xa5\x1b\xac\xd4\x78\x23\x78\x66\xca\xeb\xf9\xf9\xfd\xbb\x1e\xb2\xc3\x04\x40\x2f\x31\x0d\x95\x13\xbc\x01\xc4\xa3\xe8\x60\x62\x30\x9d\x0c\xa8\xff\x28\x90\x5e\x39\xa1\x08\x16\xb5\x5c\xf9\x84\x4b\x64\x53\x6b\xfe\x6a\x3f\xe2\x50\x04\xf5\x7c\x42\xfe\x72\xc7\xde\xa1\x9a\x05\x6a\x1d\x7f\x25\x2e\xed\xc0\xc0\x06\x70\x8f\x6c\x32\xee\x4d\x25\x1f\x73\x73\xed\x6c\x21\x89\x7b\x16\xfe\x4f\xaa\xad\x97\xa8\x76\xf7\xaf\x19\x6c\x76\xa1\xfa\xc5\x4f\x88\xf7\x92\x70\x21\xb3\xdd\xcc\xd5\x19\x4f\xc7\x40\x51\x0e\x9b\xb1\xc4\xc2\xd8\x4c\xcf\x4f\xd4\x46\xb2\xc2\x3c\x4d\x48\x0d\xd1\x6e\x47\xb0\x28\xe6\xa6\xce\x4e\xc7\xf5\x29\x01\x03\xc0\xae\x7f\x5f\xb6\x60\x7c\xe4\x12\x42\x31\x95\x04\xf7\xb4\x97\x9b\x40\x63\x3a\x19\x0d\x6f\x56\x79\x9f\x5d\x6b\xbf\x87\x49\x08\xcc\xfc\x29\x3c\x71\xc1\x54\x05\x1e\x87\xb4\x8e\x1d\x4e\x63\x7b\xef\xae\xfa\x88\x75\x20\xc4\xbe\x70\xd3\x06\x92\x28\xf3\xfc\xa8\x22\x3a\xc0\x11\xa7\x17\xbf\x12\xc6\xd0\x1a\x9a\xa0\x2b\x6a\x9d\xa7\xe5\x2c\x03\xcf\x58\x57\x5a\x2d\xf9\x34\x69\x23\x67\xa3\xd2\x6e\xfd\xc8\xd9\xee\x59\x64\x02\xae\xfb\x91\x8e\xe7\x7e\xdd\xad\x3e\xad\xab\x53\x3f\x2b\xb3\xc5\x3a\x1a\xec\x6f\x52\xeb\x3c\x45\x6a\x9d\xd3\x56\x51\x73\x73\x10\xe0\x6a\x79\x62\xd5\x35\x52\x0e\xbd\xe6\x1a\x2f\x51\x3e\x8a\x0b\x93\x23\x1b\xd6\x86\xa2\x1f\x8f\x47\xd8\x5e\x30\xcf\x56\x52\xab\xb7\x8b\xdd\x19\xf0\x5f\x6c\xf4\x68\x70\xab\xf4\x32\xc9\xab\xbd\x33\xa1\xd7\x9c\x2c\x67\x96\x6a\x8a\xb0\xea\x1c\x23\x89\xbc\x0d\x28\xda\xf3\x76\x15\xc7\x45\xc0\x7e\x1b\xb1\xc2\x43\x56\xf6\x03\x89\x9f\x67\xbd\x98\xe5\x2c\x59\x76\x0f\x48\x4d\x29\x3c\x00\xea\x38\x35\x2d\xbb\x26\x8a\xbb\x70\x1f\x53\x45\x88\x96\xd3\x3f\x3e\x45\xe2\xad\xa7\x2a\x9f\x73\x9d\x73\x63\x21\xcf\x86\x52\xe8\x47\x76\xff\x7d\xaa\xa7\x7f\x3f\x98\xa2\xf8\xbd\xd0\x3e\xb4\x6b\xdf\x0e\xca\x50\xab\xc9\x5e\xd8\xfe\x5d\xde\x12\x71\xaf\x56\x36\x6e\x58\x40\x2c\x76\x64\x40\x09\x95\xab\x6c\xef\x4f\x7f\x4c\x1f\x58\x91\xc6\x43\x11\x70\x23\xc1\xfd\x7d\x6e\x76\x69\x12\x62\xd2\x97\xb2\x55\x9b\x2a\xfa\xba\xc0\x45\x06\xf7\x4d\x3a\x81\xaf\xa4\x85\x85\x0e\x0a\x5d\xdf\xea\xfc\x21\xe9\x5d\xab\x26\x4d\x26\x7d\x15\x02\x1a\xb2\x08\xb3\x6f\x05\xa4\xaa\x79\xd6\x86\x72\xca\xf9\x99\x12\x2e\x46\xa0\xb4\xad\x43\xdd\x8d\x6b\xd4\xd0\xcd\x46\x65\x61\x92\xa4\x68\xd5\x61\x1f\x46\x9f\x98\x17\xc8\x09\x91\x9a\x4d\x1a\x65\xa3\x5c\x28\x50\xcf\x3a\xb5\xfd\xfa\xba\x54\x85\xbf\xa1\x08\xd5\xce\xe3\x05\xd9\x69\x54\xd1\xd8\x57\xe7\x9b\x42\xea\x7d\xed\x38\x2d\x46\xb9\x50\x39\x30\xd8\xd1\x5b\x75\xbe\x10\xf5\xf5\x29\xd4\xde\x8f\xbf\x85\xb8\xdb\x55\xec\x0e\x36\x99\xef\x62\x99\x93\x13\x47\x88\x2a\x46\x0b\x45\x19\x97\xa3\xd2\x19\x88\x20\xca\x03\xa4\xcb\x55\x41\x29\x49\xf2\x1d\x1c\xb3\x68\x59\x82\xcb\x26\x59\x7d\xa8\x1e\x3f\xf8\xa4\x68\x4c\x69\xff\xc0\xfe\xaa\x03\x23\xd5\xc3\x00\xf1\xc6\xdd\x80\x3c\x1c\xff\x90\x24\xe6\x66\xed\xb2\x29\xdf\x55\x91\x09\xdb\x39\x52\x10\x19\x8c\xba\xdd\xc4\xc0\x7a\xc9\x99\x70\x79\x31\xe2\x69\xdd\x38\x4b\x71\x4f\x92\x91\x13\x4a\x17\x6f\x9c\xca\xc7\x71\xeb\x0d\x30\x9b\x03\xed\xa5\x34\x5b\x49\x51\xb1\x57\x08\x1d\x29\x4d\xdf\x0f\x98\x4c\xa9\xd3\x77\x31\x51\x77\x12\x35\x75\xf2\x45\xc4\x0f\xf1\xca\x10\x8f\x48\xc1\x48\xd1\x90\x1e\x09\x30\xa8\x93\xed\x65\xb3\xdd\xfe\xb7\xe6\xad\xde\xd0\x56\x3c\x3c\xe4\x64\x92\x77\xe3\xdd\xa8\xa4\x2a\x2a\x38\xf7\x8e\xae\xc6\x61\x59\x86\xd1\x92\x84\x59\x22\xd2\x41\x36\x8a\x98\x2b\xda\x0a\x6e\x40\xee\xa4\x26\xcc\x67\xa9\x73\x8f\x70\x1e\xd1\xcf\xab\x95\xe7\xf0\xfc\x25\x81\x5f\x6f\x04\x4f\x4f\x2f\x5a\x7f\x67\x27\xf9\x53\xff\x69\xe0\xc1\x43\x67\xf1\x88\x35\xb1\xb1\x39\xbe\x43\x62\x3a\x62\xd6\x23\x1d\xa2\x45\x5d\x90\x84\x5d\x71\x91\xde\xb1\xeb\x5a\xe5\xa1\x71\x1f\xb9\x8e\x42\xd7\x0c\xb2\x28\x17\xc6\xa0\x28\x8d\x54\x24\x63\x74\x3b\xf0\xbc\x11\xb1\xec\xda\x5e\x7f\xa7\xab\x3f\xea\x2d\xff\xa3\x9f\x63\x3c\x26\x9e\x38\xde\xf4\x33\x68\xf1\x61\xe5\xbd\x16\x90\x07\xc8\xe9\xa6\xc7\x5a\x5a\x07\x29\x07\x75\x3e\x51\x4d\xf8\xa5\xeb\xcb\x33\x2f\x47\xa3\xc2\xa8\xf6\x9c\xd6\xa5\x49\xae\x0f\x1c\x1b\x95\xa6\xa5\x11\x15\x27\xc6\xae\x57\xde\x38\xfc\x55\xf6\xf4\x7e\xb5\x59\xeb\x2e\x09\x89\x9c\x2a\x16\x0a\x04\x4e\x3e\xe6\xf0\xa4\x8b\x71\x6e\x06\xa2\xdd\x81\x45\x57\x94\xd0\xe4\x64\xec\xd9\xc5\x45\x14\x9b\xb4\x8c\x8b\x72\xb6\x5e\xae\x45\x29\xba\x9a\xe0\x16\xfb\x91\xb3\x81\xd1\x0d\xa6\xc8\x6b\x0d\x6b\x64\x9d\x36\xe4\xb1\x59\x36\x98\xa4\x8a\xc4\x22\x39\xe7\xdf\x20\x4f\xa1\xd7\x08\x59\xb6\x1c\x9b\x34\x0d\x67\x49\x44\xe9\x5c\x35\xe1\x11\xda\x72\x5a\xac\x77\x31\xe1\xb0\x52\xdf\x6e\x88\x84\x0e\xb4\xfb\x61\xb2\x38\x63\xe3\x4a\x07\xac\x73\x14\x66\xe4\x01\x40\xf4\x7c\xd8\x74\x0f\x2b\x59\xda\x35\x5a\x2a\x55\x13\x0a\x3b\x00\xe4\xa4\x41\xe2\x6f\x0a\x95\x48\x76\x4f\xee\x84\x14\x4a\xb2\xb0\x88\x0b\xa2\xb9\xaf\x51\x85\x79\x2d\x98\x10\xac\x2e\x01\x16\xf2\xb1\xcd\x39\x82\xdc\x4d\x6b\x29\x7f\xed\x79\x58\x36\xb4\x7c\x39\x02\x70\x0a\xa5\xcf\x39\x1f\xa8\xf8\xe5\xb2\xbf\xcd\xa3\x8c\xe1\x77\xa4\xbd\x28\xea\x12\x9f\x47\xbd\xc0\xf1\x3d\xe6\xe6\x64\xc7\x9b\xed\x6c\x2e\x21\xd5\x0f\xc2\xe0\xa7\xa5\xd4\x4f\xc2\x9a\x27\x27\xd0\xc8\xbd\x30\x07\x90\x4c\x67\x31\x2d\x81\x17\xec\xa7\x50\xc3\xdd\x62\xb7\x20\x39\xee\x3c\xe5\x60\x4e\x83\xb8\x97\x4b\x8a\xe4\x5b\xbd\x04\xd9\x79\x25\x20\x90\xd7\xb4\xae\x73\xbd\xe6\xc5\x69\x1d\x45\x6a\xbb\x10\x0b\x19\xb2\x23\xb5\x94\x98\xf0\x7d\x6b\x6a\x02\x77\x33\xf1\x73\xc5\x4a\x75\x8e\x01\x6a\xe7\x88\xd0\x9d\x9b\xe1\xa8\xf4\x84\x6e\xb5\x6f\xa5\xae\xc6\x79\x92\x37\xea\xe6\x21\x24\xb6\xea\xc7\xa0\xe2\xdd\xbe\x70\x7f\x81\xec\x16\x8a\xa5\xb8\xc0\xac\x41\xe8\x8c\xfc\x13\x1b\x22\xdc\x98\x31\x81\xfe\x12\xf7\x22\x6f\x94\x8a\xfd\xb9\x79\x69\xb4\x6c\x52\xb5\xd5\xc7\xf6\xfe\x0e\x1e\x9e\x9c\xd4\x7b\xa9\x84\x88\xff\xd9\x2f\xcf\x40\x87\xad\x45\xc6\xd0\x9e\xb4\xff\x80\x55\x28\x2c\xa6\x58\x48\xd4\x98\x7a\x6f\x57\x7e\x1a\xbe\x4d\x0d\xcd\x2f\x95\x99\x0d\xaa\xb0\x87\x42\xf2\x41\xf7\x61\x52\xb9\xba\x48\x70\x85\xae\x59\x8e\xc5\x45\xd2\xf5\x93\x7d\x6f\x99\x92\x98\x70\x38\x4c\x56\x77\x60\x43\x72\x90\xd5\xdd\xbb\x55\x4d\x0f\x7c\x39\x55\xd1\xf2\x3e\x51\xe7\x2a\x66\x53\xd4\xd1\xb9\x6b\x38\x51\x5f\xc8\x25\x09\x2f\x65\x45\x9f\x48\xf5\x27\x98\x6c\x7c\xa2\x89\xa1\xbd\x98\xe5\x26\xee\x49\x05\xb1\xb1\xdf\x3e\x5d\x53\xd9\xd7\xee\xc6\x45\x6f\x54\xb8\xb8\xc9\x89\xd7\x52\x44\xd3\x80\x38\x04\x3f\x4c\xa5\x99\x51\xfa\x3e\x4d\x65\x70\x76\x6b\x35\x61\x11\xd7\x21\xa4\x53\xa2\x7b\x05\xab\xad\x8b\xdd\xf7\x1c\x94\x41\xf4\x1a\x66\x2c\xfb\x5b\xa8\x04\x2a\xe3\x5e\x6d\x0d\x01\xf1\xd0\x4d\x2a\xf0\xd7\xd1\x0c\xd1\x7b\x2c\x93\xc6\x29\x01\xec\xf3\x05\x98\xfd\xae\x18\x33\x31\x9b\xc2\x22\x4b\xeb\xc4\x66\xbb\x2f\xf7\x49\xee\x8f\x57\x76\x9d\x79\xa2\x82\x3e\x03\x42\xe5\x56\x40\xd2\x33\xb7\x50\x95\xd0\x98\x93\x34\x36\xc3\x7c\xc6\x35\xfb\xff\xde\x67\x6d\xc9\x15\x83\xe4\x19\x9b\x8f\x62\x9c\x9d\x72\x9e\x61\x56\xa3\x0f\x66\x68\xdb\xb8\xaa\x28\xf2\x9f\x78\x39\x37\x71\x51\xae\x23\xef\xc8\xd2\xa2\xc1\x25\xf6\xf2\x04\x82\xcd\x4d\x62\xd9\xe3\xb3\x9e\xb4\xb7\x16\x78\x87\xbf\x35\x16\x1b\x0b\xbc\xbe\xe5\x0c\xb1\x88\xa2\x2c\x5d\xcc\x33\xb5\xd0\x72\xe8\x74\x57\xd8\x5f\x9f\x32\x01\xab\xc3\xca\x6c\xc6\x67\xed\x3b\x3b\x1e\xaa\x04\x55\x00\xb5\x90\x6e\x68\x6a\x16\x06\x95\x2e\x54\xc0\xa4\x64\x28\x27\x9f\x28\x3e\xeb\x9d\x58\x3d\x46\xe8\x36\x3e\x2a\x27\x13\xa5\xa9\x85\xb8\xf7\x08\x1e\x32\x31\x51\x9e\xf5\x6c\xe1\xfd\xbb\x64\xc0\x9d\x64\x89\xa0\x16\xc8\xa5\x58\x7d\xb6\x77\x3c\x30\x1a\x85\x15\x80\x1c\x66\x3a\xf5\x62\x86\x84\x40\xb2\x22\xd7\x18\x7c\x9e\x2c\x00\x7d\xea\x7e\xbe\x49\xe2\x7a\x25\x4e\xbb\x8b\xa1\x23\x92\x09\x10\x8f\x34\xe4\x2f\x92\x83\x4a\x2f\x4b\x16\xe1\x27\x83\xf0\xeb\x26\x86\x2b\xd2\x15\x78\x35\xc9\x7f\x04\x13\x6e\x54\x2d\x27\x85\xf4\x23\x4e\x2e\x6e\x53\xe3\xde\xbc\x1c\x17\xe5\x0e\xbf\x7a\xfd\x0e\xe9\x8d\x8a\x88\x8f\x2e\x01\xf6\x02\xc4\x1f\x9f\xdd\x87\xdf\x25\x71\x2f\x94\x2c\xb0\xbb\x1d\x26\xc9\xc1\xdc\xa4\x62\xee\x82\xa7\xb8\x65\xec\x4b\x8c\x37\x58\x7c\xf1\x4c\x60\xb9\xca\xea\x79\xef\x95\x7a\xd1\x95\x53\xcf\x39\x7b\x61\xf2\x55\x53\x82\x42\xf5\xb6\xbb\x1c\x26\x23\x5d\x04\x01\x76\x11\x68\x8f\x9c\xb0\xce\xe6\xd0\x44\xf1\xe2\x2a\xa1\x38\xb6\xd8\x77\x2c\xc7\x63\xd2\xbd\x09\xd3\x18\x3a\x98\x02\x44\x0a\x7c\x33\xfb\x2d\xc2\x56\x8d\x8a\x38\xed\x3d\x6a\xb7\x35\xe5\x9e\xd7\x8b\x9f\x1a\x6e\x4c\x08\x01\xd4\xdf\x20\x8b\x1f\xee\x0a\x95\x26\xe4\x41\x28\x73\xbe\x41\x15\x63\x29\x45\xab\xf0\x85\x7d\xdd\x6a\x97\xe4\xa7\xf7\xfd\x8a\x08\xb8\xaf\x23\x71\x90\x2b\x21\xaf\x13\x95\xe4\x88\x66\xfc\x5e\x0d\x5a\x15\x82\xac\x8f\x58\x0e\x6d\xcd\xb5\x47\x16\xb3\x7c\xd1\xc4\xe5\x28\x37\x08\x2b\x14\x2c\xd5\x52\x36\xfb\xec\xd6\x0e\xa1\x73\xed\x17\x62\x31\x3d\x32\xd5\x06\xa8\x13\x7d\x93\x17\x26\xf2\xa9\x3e\x02\x39\x48\x02\xc9\x31\x75\x16\xcb\x41\x28\xf1\x33\xf6\xf1\xd3\x98\xc0\x72\xe2\x76\xdb\x2f\x94\x71\x82\x02\x26\xde\x0e\x80\x52\x72\x4c\x7a\x68\xf5\x9b\x32\x36\xb9\x56\xda\xe8\x2d\x0b\x15\x57\x6b\x1b\xfb\x15\x5a\x9a\xd4\x5a\xfd\x30\xeb\x32\x49\x1b\x85\x4e\x39\x26\x79\xbc\x28\xc9\x52\x29\x7a\x20\xc5\x46\xea\x2d\xc7\xee\x52\xbb\x59\xb4\x44\x95\x91\x2d\x96\xd9\x2b\xc7\xae\x0a\xb0\x38\x4a\xbb\x22\xd8\xb5\x8f\xe5\x15\x9e\x95\x21\xb2\x63\xec\xaa\xba\xdf\x7c\xda\xae\x5c\xa8\x6a\x8b\xfb\x28\xa6\xcd\xd1\xa6\x30\x23\x37\xc3\x2c\x57\x8b\x09\x24\x97\x77\x2a\x92\x38\xbd\x43\xdc\xa4\x97\xc2\x38\x31\x72\xef\x4e\x60\xc1\x67\x1a\x53\xeb\x9c\xed\xf3\x85\x79\x52\x66\xa9\x60\x12\x11\x18\xdc\xab\x18\x70\x7a\x8f\x76\xd5\xf4\x4b\xbf\xdc\xf2\xe8\x99\x8d\xc0\xe3\xfd\x37\xbc\x34\x44\x38\x18\x86\x5e\x74\x1e\xb5\x48\x80\x6e\xe4\x78\xac\x65\xd0\xb0\x97\x1b\xd3\x7d\x88\x2e\xf8\x53\x63\x27\xb3\xf8\x03\x70\x8d\x50\x77\xd8\xa8\xa8\xdc\xbd\x7d\xec\x2d\x19\x6f\x11\x96\xf4\xb3\xc0\x31\x63\x1e\x7f\x01\xbc\x41\xc4\x1e\x9f\xa9\x13\x1d\x27\xf8\xd3\x4b\xe3\xc5\x38\xb2\xba\xaf\xf6\x1d\x49\x7e\x3f\x61\x43\xd3\x24\x00\x92\x84\x45\x5f\xa7\x81\xd3\xdd\xae\x7f\xd1\xd3\xc4\x64\xd5\x2e\xd0\x3a\xdb\x5e\x5f\x27\x2a\x32\xf0\x54\xb2\x31\xf1\xb7\x9f\xec\x10\xea\xe2\x24\x2d\xcf\xd2\x0b\x07\xf1\x5c\x40\x17\x98\xa6\xef\x05\x6c\x4b\x99\x17\xe1\xca\xac\x7f\xa0\xa7\x28\xec\xfd\x6e\x45\x95\x40\x81\xcf\x60\x8f\xf9\xbf\x5c\xf5\xb9\xac\xb3\x13\x61\x40\x28\xbe\x0c\xf1\xb5\xc6\xb1\xac\xa7\xf2\x66\x45\xc2\x1c\x5b\x9c\x3f\xf9\x42\x66\x85\x48\x89\xfb\x43\xfe\x4a\xb7\x69\xb5\x8d\xb2\x3c\x5f\xdd\xe6\xc5\x8f\x44\xad\x02\x27\xd7\xb0\x23\xb2\xec\xbf\xfb\x2b\xaf\xfc\xfe\x41\x83\x0b\x84\x35\xc9\x2f\x43\x94\xc6\xc5\x88\x76\xe3\x92\xeb\x2f\xe4\x26\xca\xf2\xae\x48\x2a\x60\x0c\x7d\x87\x6d\xc7\x05\x9c\x80\x1f\x7b\xa8\xd3\x22\x86\x38\xa9\x2f\x5e\xa5\x2a\x75\x69\x12\x33\xec\x67\xa9\xd9\x4e\x64\xcf\xd3\x93\x4c\xfb\x96\x53\xce\x6f\x75\xa8\x01\xbd\x16\xf8\x01\xdb\x12\x88\x83\xfc\x4f\xa3\x79\x75\x14\xbb\xe5\x16\xcd\x1a\x3c\x5b\x39\xae\xfc\x58\x0e\x97\xc3\x38\x09\x17\xe2\x24\x16\x43\x13\x91\x00\xb7\x0f\x52\xe5\xc0\xc9\x63\xdc\x2c\x00\xf6\xab\xd2\x68\xd7\xa9\x98\x83\xc4\x13\x8d\xb4\x37\xa7\xc6\x3f\x34\xa2\xc2\xa1\xb4\x22\x18\x71\xa4\x92\x65\x9f\xa6\x70\xa2\x28\xf3\xd8\x6a\xde\x15\xd6\x24\x80\x91\xf9\x5a\xe7\x64\xdc\x5f\xe0\x4d\x16\xc5\x13\x12\x51\xc5\x25\xbc\x32\x04\xc8\xa7\x30\x10\x1d\x54\xd0\x63\x20\xce\x51\x57\xfa\xee\x44\x47\x64\x30\x34\xb2\x1f\x29\x2f\x9d\xca\x68\x6b\xc1\xdf\x6c\x58\x11\xeb\x91\x33\x18\x98\xb4\x1b\x8a\xcf\x8c\x17\x84\x43\x1d\x5f\x8e\x3f\x51\x6e\xa3\x37\x08\x23\x3b\x3b\x55\xa0\xa6\xe5\xfc\xa9\xff\xb1\x5d\xd2\x44\x5e\x0c\x97\x22\x2e\x9e\x4d\xa8\xd7\xd4\xac\x48\xf3\x5d\x60\xa5\x01\x43\x4c\x7d\x90\x58\x18\xd3\x2d\x66\x3d\xfa\xe0\x2a\xd5\xa2\x8e\xd9\x84\x4f\xab\xfa\xf5\x77\x69\x5e\x43\xd2\xd6\x51\x3f\x5c\x74\x40\x37\x3c\xec\x89\x27\x7f\x69\x6a\x94\xee\xdb\xbf\xaf\x5d\x98\xb4\x2b\x1b\x93\x22\x68\xec\xcc\xf0\x54\x3c\x5d\x00\x44\xe9\xd1\x96\x08\xf0\xc6\x9e\x1a\x53\x30\x75\x8a\x33\x85\x27\x3a\xd3\x73\xfd\xd9\x76\x5c\x14\xa3\x38\xed\xd9\x48\x48\xac\x40\xb0\xb6\x61\xec\x22\xc8\x56\xfe\xde\xa4\xc3\x78\x14\x87\x89\x60\xdd\x91\x3a\x48\xa5\x4a\x10\xa0\x44\xf7\x9a\xa6\x09\x1c\xda\x35\x5f\x2f\x74\xfd\x56\x6b\xf7\x6e\xdf\x31\xde\x73\xd0\xb5\x95\xb9\x0c\x33\x4c\xe2\xc8\x99\x2e\xa2\xe5\x72\x8d\xa8\x9c\xd7\x28\xff\xb5\x36\x76\x5d\xe3\x7c\x66\xb4\xcc\x47\xec\x28\xe1\x5e\x38\xed\xd5\x3a\x46\x54\x89\x9e\x96\x33\xd0\xbd\xc1\x1a\x3b\xe7\x39\x74\xfd\x61\xe3\x76\xdf\x0b\x07\x0b\x1e\xd3\xc3\x22\x68\x72\xcc\xa0\x61\xd3\x8d\xc3\x19\xdf\x25\x86\xbb\xb2\x72\x7b\x48\xea\xe0\x5a\xf5\x18\xbb\xb2\x60\x85\x70\xc4\x4a\x87\x9d\x3e\xd5\x54\xab\x4d\xc2\xb4\x37\x8a\x8b\xfe\x2c\x41\x74\x4e\x12\x84\x03\x31\x86\x6a\x2d\x7b\x40\xee\xfb\xe4\xac\x18\x97\x66\x50\x3c\x6c\x9f\x9d\x96\x1f\xed\xb3\x43\x20\x70\x99\x5a\x30\xc7\xc8\x16\xe0\xf5\xc0\xe3\xa1\xe1\xca\x84\x4d\xf8\x03\x06\x21\x43\x24\xd4\x39\x67\x90\xb1\x2c\x5d\xef\xfa\x14\x82\xea\xd0\xae\x76\x12\x16\x51\xbc\x1c\x67\xa3\x62\x62\x0e\x9f\x63\x89\xb5\x26\x1e\xf8\x20\x4e\x4b\x92\xbf\x3d\x11\x78\xb0\xd0\x89\xa9\x25\x07\xbe\xaa\x82\x03\xf7\x81\xd9\x0d\xec\xaa\x72\x42\x8a\x9d\xc3\x3c\x5b\x70\x6f\x1f\x53\x07\xc2\x4a\x72\x1c\x68\x0c\x3d\x2a\xe2\x59\x92\x00\x17\xce\x21\x20\x17\xeb\xe4\x54\x7c\xba\x62\x9e\x9d\x6e\xbe\x75\xec\x93\xc7\x61\xb2\x6d\xc2\x3a\xa5\xa5\x4e\x83\x37\x7e\xbe\xe3\x03\xc7\xc7\xc7\xa4\x44\x35\x81\xcb\xbd\x48\x49\x60\x94\x84\x45\x61\x8a\x6d\x24\xd5\x7d\x92\xea\x85\xa2\xa5\x0f\x36\xc7\x4d\xbc\x1b\xac\x06\x77\x44\x07\x44\xfe\xab\xc9\x1e\x30\x4a\xe2\xe1\x42\x16\xe6\x20\x0a\xa8\x9c\x8e\x97\xea\x3c\xd6\x84\x73\x8a\xc2\x38\xcf\x5a\x1e\xed\x7e\x8e\x6b\x7f\xe7\x5c\xbf\xab\x18\x86\xbd\xbe\x29\xcb\x98\xa5\x41\x1e\xeb\x78\xde\xd0\x8e\xb1\xef\x79\x4e\x77\xb2\xf6\x1c\x6c\x87\x49\xb2\x3a\xa9\xc4\x49\x01\x72\x83\xb7\x83\x35\x12\x91\x8a\x38\x56\xa9\x2b\x34\xb8\xa5\xc7\x0d\x48\xd4\xeb\x53\x46\x59\xf3\xf3\xed\x34\x6b\xf9\xea\xdf\xd6\x4e\xbd\xd8\xc9\xf1\x78\x33\x70\x6e\x6e\xae\x6d\x5e\x8e\x92\x51\x11\x2f\xdb\xf8\xc3\x79\x7d\xbc\x45\x19\xf1\x5b\x04\x0a\x58\xc9\xf2\xa5\x15\x63\x96\x66\xbd\x0a\x1d\xba\x03\x6a\x07\x5d\xcf\x48\xad\xd6\x7b\x20\xfe\xa9\x60\xc2\x6e\x66\xb0\x40\x82\xda\x70\x9b\xd2\x7a\xbd\xb7\xc2\xbe\x4d\xad\x29\xc4\x82\x3b\x3d\xfc\xfd\x21\x34\x13\xd1\x06\xbb\x44\x7e\xd1\x47\xc9\x63\x46\x5a\x3f\x18\xe7\x10\x39\xc2\x96\x7a\x8b\xca\xdb\x8f\xd9\x52\x84\x96\x87\x6c\x60\x8b\x35\xe1\x7e\xd3\xa0\x59\x8c\x13\x33\xa1\xe9\xf9\x3e\x69\x7a\xbe\xcf\x56\x5c\xcb\x26\x2d\x47\xf5\xab\x7f\x88\x90\x2e\xa8\x60\x39\xc8\xcf\xfe\x5d\x12\xa1\xdf\x0a\x3c\x36\xf9\x48\x40\x04\xc0\xf7\x02\x0a\x31\x4e\xc9\x4c\x70\x1c\xbc\xfd\x0a\x00\xbb\xe5\x26\xee\x8a\x49\x92\x28\x1b\x20\xac\xc7\x00\x15\xe9\x4a\x39\x21\x07\x52\x55\xc6\xdc\xc9\x8f\xcc\xb3\x34\xfe\xfb\xc0\xe3\xe5\xae\x55\x64\x03\x84\x15\x0d\x6f\xf9\x32\x9e\xb1\xd3\xe5\x71\x25\x8a\x2d\xc8\xde\x54\x49\xd8\x4e\x68\x0c\xc3\x37\x08\x46\x1f\x2e\x96\x26\x4f\x33\x71\x03\x7c\x56\x13\x27\xfb\x3d\x9a\x44\x7d\x9a\x99\x5d\xe5\x30\x4b\xad\xcb\x0e\xfe\x1e\xe9\xd3\xcf\x02\x9f\x4a\xfd\xac\x11\x37\x32\x30\x61\x37\x5b\x91\x58\xc7\xb9\xda\x7a\x61\x99\xf3\x6e\xdd\x4c\xba\xc3\x16\xe9\x26\x4d\xbe\xdf\xcd\x31\xf5\xf3\x56\xf6\x23\x4e\x34\x8a\xc2\x83\x43\xf5\x5d\x8e\xab\xcd\x8a\xd6\xf5\x8a\x30\x1c\xe6\xd9\xcb\x8c\xcd\x14\xc5\xa6\xc0\x4f\x8b\x37\xa8\x41\xc4\x7c\x57\x57\x43\x13\xc9\x2d\x45\x40\x3c\xe9\xb0\x91\x71\xaf\xbf\x90\x8d\x14\x38\x8a\xc2\x10\x2c\xc1\x5c\xf7\xd5\xe1\x46\x3f\x60\x65\x89\x78\x60\xd4\x55\x0d\x09\xe7\x3a\xa3\x89\x3c\x81\x64\x61\xd4\x9d\x60\xa6\x7f\x10\x78\x88\xe4\x07\x4d\x6c\xb3\x76\xd1\xcf\x56\x50\xd5\x50\xf1\x71\xfb\xc5\xaa\x3e\xde\x80\xbf\x1c\xe6\x71\x1a\xc5\x43\x37\xdb\x90\x95\x5e\x26\xa5\x8a\xcb\x4d\x76\x1e\x51\x56\x94\x2d\x0f\xea\xbb\x3c\x21\x4e\xec\xe3\xe5\xc5\x2c\x1f\x8c\x92\xb0\x45\x14\x94\x6b\x01\x29\xfa\x5e\xa3\x82\x58\x2f\x2b\xa5\xd4\xed\x6c\x90\xf6\x6f\xca\x41\xc5\x14\x15\xec\x07\x0c\x5b\x64\x4a\xe2\xfb\x53\x51\x07\x02\xfc\x2c\x84\x8b\x0f\xec\x12\x89\x3f\x82\xe0\x1c\xb6\xbc\x47\xc7\xfe\xd5\xfe\xf3\xcf\x75\x48\xf3\xe8\x02\xbd\xaf\x28\x2e\x2d\x53\x72\xde\xb1\x37\xec\xd7\xa1\x66\x3c\xc6\x84\x75\xf1\xb2\x77\x56\xb8\xd6\x60\xe0\xdc\x2e\xcc\x30\xcc\xb5\x01\xa9\xf8\x1d\xfb\xbb\x9a\x78\xf8\x60\x6d\x31\xcb\x7b\x80\x0a\x8a\xf5\x5b\x40\x9e\xc1\x48\x28\x01\x2f\xb9\x47\x35\x04\x8b\x83\xdd\xe1\xb3\xeb\xf3\x0c\xd9\x91\xaa\x09\xd2\xdd\xab\xdc\xf8\xbe\x32\x61\x78\x70\x84\xec\x3c\x3e\xc0\xe5\xa1\xe2\x78\x33\xf0\xcc\xf8\xee\x08\x1c\x57\x3c\x30\x90\xb8\x3c\xf4\x73\x97\x2c\x55\xa8\xab\xa9\x20\x8f\x7d\xdc\xaa\x18\x31\x21\x6f\x6a\x7f\x04\xc5\xe0\x9b\x53\xaa\xbf\x75\x3c\x5e\x2c\xad\x0a\xfa\x04\x85\x6f\x68\x18\x38\x7d\x77\x22\x2b\x92\x58\x5c\x62\x7a\x61\x82\xc4\x81\x62\x2b\xab\xd5\xe9\xdc\xc4\x9d\x27\x8a\xf0\x0f\x11\xa2\xdd\x08\x48\x00\xff\x9c\x3c\x1d\x75\x2d\xf6\x4b\x7b\x9a\x95\x71\x14\x87\x60\x8f\x89\x6a\xa3\x45\x03\xaa\x82\xa3\xd7\x07\x44\x75\x3e\x46\xc4\xf1\x82\x07\x82\x1d\xda\xe5\x9c\x85\xbc\x27\xce\xaf\x53\x2d\xe2\xa5\x51\xb7\x67\x76\xe0\x0a\xdc\x1e\xbb\x7f\x97\xe7\x10\x3b\x9d\xcc\xdf\x25\x58\x68\x55\x79\x07\xc1\xdf\xb1\x98\x4b\xa4\x09\xa2\x1e\x05\x1c\xe2\x1f\x04\xbe\xdf\xbd\xb7\xd8\x36\xa1\xcd\x35\x43\xb6\xff\xf6\xf7\x10\x04\x9c\xe0\x62\xdb\x23\x50\x10\xb3\xff\x33\xfa\x1b\x0e\xb2\x50\xf6\x4d\x1e\x0e\xcd\xa8\x94\x26\x83\x84\x9e\xe4\x25\x7a\xa1\xfa\xfc\x34\xec\x5f\xb4\xec\x73\xb3\x9c\x25\xa3\x32\xce\xd2\x30\x47\xad\x46\x09\xe2\x1e\xd9\x7d\xce\x6d\xc4\xa9\x59\xa9\xf7\x61\x40\x13\xd4\xcb\xde\x5e\xa2\xba\xdc\x37\x94\xea\x17\xc2\x74\x29\x1f\x0d\xcb\x68\x55\x52\xf9\x46\x2d\xc1\xcf\xb8\xd7\xfc\xd2\x28\x8f\x8b\x61\x3e\xb2\x89\x68\xab\xf5\x85\x2f\x38\x79\x10\xcb\xf5\x54\x74\xf8\x67\x7c\xfd\x28\x2e\xc2\xa1\xf5\x5a\x13\x6c\xc3\x86\xd5\x38\xda\x98\xa1\x26\xcc\xa8\x30\xb9\xe8\x82\xbb\xce\xf2\x9e\x83\xae\xfd\x4c\xfb\xf4\x6d\xf2\x1c\x1b\xdb\x77\xac\x06\x90\xd3\x58\x8f\xf9\x76\x99\xf5\x8c\x35\x7d\xb5\x99\x30\x66\x08\x1c\x65\xe4\xd8\xf3\xdb\xf3\xd8\xa6\x1f\xb3\x84\x32\x12\x82\x3a\xc2\x91\x67\x10\x5c\x28\x16\xc3\x03\xae\x77\x8e\xfd\xc2\x1d\x0f\x42\xcb\xd1\x76\x72\x48\xf5\x54\x56\x2b\xf8\x99\xe7\xf7\xef\xda\x38\x43\x7c\x76\x29\xd6\x22\x28\x7c\xa8\x43\xcb\x6c\x98\x97\x06\xb2\xec\xda\x8e\xb0\x37\x80\x5d\xf1\xdf\x55\x5e\x2e\xe1\xd2\x94\x2f\xa0\x38\x59\xab\xd3\x80\x7d\x74\x32\x8f\xed\x4f\xeb\x9c\xe6\xe8\x38\x2c\xe0\x9b\xa4\x5d\x4a\x92\xb0\xbf\xe8\x70\x6f\x20\x1f\x4a\xd4\x81\x96\xa1\x50\x75\xe4\xa4\x41\x99\x25\x4e\xa3\x64\xd4\x15\x20\x35\xf2\xf1\x53\x94\x9b\x9f\xa2\xd5\xba\x88\xbb\xa6\xb0\x15\x5f\x9d\xd8\xf6\x43\x48\xc7\x21\x96\xe9\x6c\x3f\xf7\xea\xfe\xf7\x66\xc0\xcb\x68\x9d\x99\x38\x9f\xbd\xa1\xc9\x17\xeb\xf5\x28\x69\x51\x66\x7e\x91\xa2\x9d\x8b\x0e\x38\x57\xe6\x71\xaa\xb9\x08\xaa\xbe\xff\x94\xe9\xfa\xff\xb4\x21\x53\x7f\xb6\x7e\xc8\xbd\xdc\x14\x85\x23\x84\x39\xdd\x59\xff\xc9\x23\x4d\x9e\xf7\x51\x96\x88\x3a\xa2\xb2\x84\x99\x3d\xec\xd0\xf1\x61\xde\x8b\xd3\x6d\xf5\xbe\xaf\xe8\x1d\xfb\x2b\xce\x15\xc9\x39\x3d\xbd\x4f\xdb\xdf\xa7\x3a\xa4\x00\xb4\x7d\xcc\x85\xa6\xd2\xa1\x8b\xf6\x3a\xe5\xb6\x80\xb0\x13\x17\x27\x0c\xa3\xea\x58\x48\x8d\x77\x14\xa0\xc0\x68\x85\x26\x3d\xbc\x24\x5c\xcd\x46\x08\x17\x15\x32\xc7\xf8\x39\xae\x8a\xf7\x73\x13\x96\x46\x98\xc6\x1a\x5b\x7a\x2c\xd0\x05\xea\x93\x97\xa1\x90\x04\xd0\x14\xbb\x6a\xef\xd6\x95\x73\x3d\xc9\x6c\x18\x7c\x7a\xe2\xfa\x4d\x61\xec\x8a\xb3\xc3\xd6\xba\x50\xa8\xfa\x88\x09\xc0\xd0\x85\x71\xba\x1f\x7b\xb5\x9a\xf5\x91\x5d\x7a\x04\x89\x6b\xf7\x21\x87\xca\x75\x92\x42\x1f\x53\x4c\xf4\x92\x59\x59\xc8\x56\x67\x26\xd6\x0d\xac\xa4\x58\x63\xee\x20\x56\xd1\x6c\x9d\xb4\xc6\xb2\x24\x8e\x0c\x9e\x01\xb7\xfd\xe5\xb8\x91\x8c\xda\x8f\xf3\x25\x37\xad\x91\x1a\x1d\x21\x06\xef\x11\x57\x3f\xad\xc7\x4f\x98\xc7\x29\xb2\x32\x71\x30\x0d\x7c\x2d\xf5\x38\x85\x9b\xbf\x12\xa2\x46\x2a\x5a\xe0\x1d\x9f\x68\x9f\x67\x2f\xe0\xeb\x94\x94\xf7\x4d\xfd\xe5\x3d\x49\xa1\x9c\x09\x9e\xb7\x08\x71\x80\xc3\xc5\xdc\x98\xdc\x42\xfe\x30\x74\xb7\x42\x2b\x06\x60\x12\x14\x35\xf0\x91\x53\x54\x9a\x59\xa3\xab\x8b\x8b\x2f\xdb\xc5\x49\x93\x1b\x7b\x45\x9a\xf5\x90\x79\xca\x00\x46\xd4\xcb\x66\x9b\x5d\x2b\x9d\x73\x92\x23\xb2\xfc\x3f\x28\x7b\xaa\xd7\x12\x19\xe1\x82\x42\xad\xe6\x22\x7e\xec\xf5\xc3\xa4\x9c\xa1\x31\x86\x3e\x2e\x3b\x24\x2a\xc4\x89\x81\x2a\x69\xfc\xb2\xa0\x81\x50\x55\x10\xf2\xb4\xeb\xe8\x3b\xbf\xa7\x75\xaa\xc9\x4a\xc6\xac\x82\xdf\x0d\xd3\xab\x6f\x92\xa1\xd6\x68\x64\x2e\x54\x1e\xb6\x20\xa8\x45\x7c\xf1\x03\xea\xef\x16\xc3\x6c\xc9\xa4\x24\x3c\xfc\x87\xa4\x31\xfb\x87\x04\xe8\xcf\x33\x5b\x11\x9c\x61\x1f\xe6\xca\xbb\x87\x42\x06\x0f\xdb\xfb\x0d\x12\x5c\x32\xc3\xa1\x23\x2e\x08\x5e\x84\x2e\xeb\x3e\x99\x72\x5f\x69\x20\x51\xee\x53\x14\x90\x1b\xd4\x58\x39\xff\x4d\xe0\x17\xe3\x7f\x33\x95\x75\xd5\xeb\x6f\x2f\x1c\x52\xf1\x12\x38\x28\x39\x26\x60\xdb\x68\xb8\x12\xe6\x5d\x6c\xea\xf8\xb6\xf3\x36\x3a\x97\x63\xac\x07\xd8\x8c\x7e\x4c\x1b\xd3\x8f\x27\x30\x87\x51\xdc\x05\xc3\x13\x00\x4b\x30\xcc\xe4\x98\x5a\xac\x2f\x85\xd1\x92\x11\xa2\x3d\x60\x2c\xeb\x24\x9f\x8a\xf6\x9a\xa2\x6b\x1a\x5a\x93\xb9\x29\x46\x89\x6b\xe1\xe1\x43\x27\xb1\x82\xca\x09\x8d\xcc\x24\x5c\xc1\x3b\x55\xef\xfc\x16\x99\xea\xfb\x0a\xe8\x4a\x1e\xa7\x4b\xd6\xf9\x71\xcf\x41\x8f\xec\x7e\xde\x2b\x34\x37\x74\xac\x73\x13\x46\xa5\x0e\x34\x29\xdc\x07\x9e\x44\x79\x93\xe9\xe4\x17\xea\x45\xd7\xb5\x27\xb2\xa1\xf5\xf5\x71\x16\x2f\x13\x44\x4b\x50\xd8\x2e\x10\x90\x18\x0b\x17\x3a\xdd\xaf\x55\x04\x72\x3a\x52\xf9\xa6\x73\x96\x0d\xb1\x42\x2a\x7a\x88\x42\xb2\x13\x54\x58\xea\xae\xa6\xe1\x20\x8e\x44\x38\x72\x42\xab\x58\x4e\xa6\xe6\xd4\xdc\x5c\xbb\xa8\xf7\x39\x19\xbc\x6a\x96\xea\x57\xc2\x6d\x1d\xf2\x10\x5d\x6b\x12\xcd\xeb\x9a\x30\xf1\x96\x3b\xce\xc7\x75\xde\x7b\xb7\x6e\x2e\xc5\xec\xde\xdd\x1e\xc4\x51\xdf\x24\x56\xc3\xd3\x01\xc7\x11\x42\x5d\x47\xf0\x20\x27\x8e\x21\x14\xa7\x42\x10\xca\x52\xa5\x1d\xe0\x02\xdf\x0d\xa8\xda\xf8\x2f\x03\xaa\xbd\x1f\xfe\xc4\x46\x63\x58\x7e\x1e\x24\x47\x95\xea\xa9\x07\xb3\x9a\xbf\xb5\x9c\xba\x8e\xa4\xc4\x68\xd3\xbe\x1b\x3c\xac\xac\x91\xbd\xf3\xbf\xd8\x72\xce\x5d\xc2\x2d\x42\x2e\xb8\x73\xdc\xfa\xea\xaf\x49\x5c\xb6\x4d\xdc\x44\xd4\x61\xae\xe5\xb8\x9e\xaf\x10\x4c\xf4\x76\x45\xa8\xda\x9b\x01\x95\xf4\x3f\xae\xb6\x7e\x4e\x99\x28\x50\xfb\x46\xa2\x5e\x05\x54\xef\xb8\x6f\xb3\x4b\x2d\xa5\x78\xd6\xe3\x85\xaa\xf5\x8d\xaf\xcb\xdf\x5c\xb6\xfe\x42\x68\x12\x9e\x64\x4f\xfc\x07\x80\xb7\xe3\xa2\x0e\x43\xa3\x19\x81\xf8\x05\x50\x53\x91\x80\xff\xb9\x45\x0d\x63\x89\xfe\x80\x1a\xc6\x37\x21\x7b\x81\x67\xf8\xbe\xc5\x42\xe3\x42\xae\x90\x59\xee\xe9\xca\x5b\x9b\x1c\xad\x88\x48\xf4\x53\x24\xfc\xd8\x03\xcf\x54\x75\x12\x25\x2d\x49\x54\x6b\x35\xba\xae\xa3\x3f\xb1\xe1\x86\x7e\x06\xba\x98\xb7\x26\x38\xb6\x6b\x98\x3a\x58\x8f\xae\x36\x88\x51\x1c\x68\x27\xb1\x47\x0f\x23\x56\xbe\xcb\x81\xf3\x64\xf7\x3b\x4b\xbb\x4f\xf9\xad\xed\xaa\x35\x42\xc0\xb6\x72\x16\x4f\x5f\x9a\x38\xf8\x06\x2c\xb9\xef\x43\x85\xdd\x79\x62\x78\x6b\xc0\x5b\xc0\xfe\x29\x42\x8f\x90\x4b\x60\x3c\x3a\x07\x5b\xc7\xd3\x9c\x19\xdb\x47\xab\xac\x43\xd2\x57\x0c\x30\xa8\xe4\x7f\x30\xf6\xf1\x78\xc4\x39\xd1\x01\x27\xf6\x7b\xa8\x48\x3d\xdc\x90\xca\xfc\xd4\x36\x61\x95\xdf\xf4\x49\xea\x4f\x51\x56\x94\xa1\x65\x17\x68\x0d\xd2\x13\x7f\xaf\xb0\xfc\xeb\x96\xce\xd3\x31\xfb\x12\x9a\x32\xb6\x0a\xd2\xf5\x23\x42\xe5\x62\x0d\xc3\x4a\x4e\x82\xa7\xa8\x0a\xde\x45\xd7\xd7\xe2\x6d\x11\x52\xa3\x5c\xea\x8a\x1a\x7b\xe7\x1d\x92\xc6\xa7\xc9\x2b\x59\xbe\x54\x48\xf9\x03\xe3\xf3\x6c\xe5\x3b\xd1\xd0\xa2\xc4\xce\x23\x86\x2e\x72\x42\x46\x9d\xe7\x2a\x32\xdc\x62\xd7\xfd\x7b\x53\x3e\x88\x20\x4b\x44\x59\x3e\xcc\xf2\xd0\x8d\x1f\x91\xe9\xc0\xdb\x57\xcd\x8e\x27\x48\xd3\x61\x35\x4e\x7b\xb3\x78\x53\x88\x94\x6e\x81\x58\x24\x27\xa4\x80\xf8\x1e\xa6\x81\x9c\x4c\x80\x7d\x47\xd1\x12\x7a\xb3\x0a\x39\xb1\x0b\x0d\x0a\xcb\xdf\xab\xfc\x57\x6c\xe9\x78\x04\x3a\xda\xc6\x48\xa4\xc4\xa2\x07\xa9\xf7\xc7\x15\x41\x05\xae\xdb\xa7\xe4\xc0\x21\xf5\xd4\xc1\x6e\x22\xe5\x41\x9d\xeb\x4f\xd1\xc6\x36\x58\x90\xd4\xc9\x71\xc3\x50\x73\xd4\x49\xcb\x2e\xc6\x66\x60\x5e\x96\x45\xbd\xb1\x17\xd2\x90\x11\x16\x2b\xe1\x50\x4a\xe7\x48\x6c\x6e\x92\x22\xd7\x45\x42\x22\x7e\x48\xbf\x94\x84\xc3\x42\x12\x34\xa5\x59\xd8\xdf\x51\x9e\xc5\x53\x93\x6c\xbf\x83\xcf\xb5\xff\xb6\xbd\x7e\xf5\xcc\xac\x7f\x41\x8e\x29\x99\x59\x8e\xc3\x28\x1b\xec\xf0\xc0\x88\x1f\xda\xc7\xa5\xec\x08\x72\x48\x39\x35\xc9\x5b\xc0\x1d\x23\x92\xff\x99\xdd\x53\x1c\xca\xc6\xd5\x98\x7f\x38\x15\x00\x3a\xc9\xb5\x3c\x5b\x8c\xcb\x19\xda\x45\x4f\x93\x7e\xda\x2c\xf6\x61\x3c\x8f\xfb\x14\x1c\x84\xcb\x26\xd9\x5e\x5f\x2b\x56\x8e\x1d\xe3\x69\xa7\x74\xf1\x21\xaa\x7c\xe0\x7e\x87\xab\xee\xff\x9a\x5d\x90\x66\x3b\x3e\xeb\xc8\x8b\xbe\xfd\x66\x34\x93\x20\xe8\x8f\x98\xe7\x6d\x96\xa3\x9d\x40\x84\x89\xf0\x84\x92\x54\xeb\x87\x80\x4c\xfc\x47\x9c\xcf\x8e\x52\x63\x97\x17\xa7\x8d\xee\x19\x27\x81\xdf\x5a\x7f\xa3\xc1\x63\xb1\x1d\x85\x85\x2f\xea\x60\x7d\xbe\x5d\x79\xb0\xf1\x6d\x8a\xe6\x23\x93\xd7\xf1\x50\x8b\xd8\xbb\x52\x51\x51\x58\x90\xb6\x56\x7a\x61\xda\x9b\xf5\xd5\x9f\xe3\xf8\x2b\xcd\x12\xed\x13\x55\x61\x8b\x96\x33\x65\xdd\xd2\x99\xc0\x07\x2c\xc7\xbd\xcc\x16\x16\x30\x36\x44\x42\x56\x4e\xdc\x0b\x0b\x17\xb2\x51\xda\x45\x69\x15\xf0\x96\x13\xf8\x31\x44\x99\x8f\xdb\xc4\x93\x1b\x46\x58\xe3\xee\xda\xd5\x10\xdd\xeb\xe3\x53\x71\x8d\x55\x16\x1c\x26\xe1\xaa\x0b\xe4\x90\x76\xbf\x4b\x92\x8a\xf7\xc9\x40\xe9\x66\xf5\xf4\xb4\x7f\xce\xdf\x99\xa5\xe0\x43\x25\x2c\xb0\xb5\x08\x13\x56\xfe\x0b\x51\x91\xfc\x8f\xc3\x46\x02\x4e\x01\x48\x2a\xf6\xe1\xef\xda\x5f\xb7\x7f\x76\xfd\x0b\x68\xd2\x08\xff\xd5\x56\xb9\x71\x93\x8f\x8e\x1d\x77\xe8\x1f\x7c\x66\x4c\xb1\xea\x29\x16\xc8\x02\xd3\x4a\x1b\xb8\x0d\x45\x81\xb0\xbb\x1c\x17\x99\xd4\x87\x11\x4e\x6f\x50\x68\xbd\xd1\x00\x50\x7a\xa1\x9d\x9a\x97\xcb\xd9\xfa\xb9\xaa\xa2\x95\x4f\xb1\x7f\xa7\x9a\x50\x70\xf2\x54\xbe\xcb\x84\x5c\x8a\xd3\xd2\xe4\xc3\xdc\x94\xc5\x66\x95\x01\xbf\xbb\xf8\x82\x4f\x98\x47\xfd\x3c\x5e\x0e\x93\x16\x03\xf0\x30\x43\x75\x9d\x78\x82\x84\x07\xf3\x3c\x2e\xec\x24\x51\xf1\x12\xfb\xbd\x28\x79\x9e\x21\x02\xc1\xb4\x9a\xe7\x9e\x83\x70\xe3\x6d\x11\x10\x0a\x8d\x17\x39\xf6\xf5\xcc\x3c\x5c\x50\x7d\x1c\x30\xff\x44\x69\x5d\x4e\xdc\x1f\xf6\xc3\xbc\xe8\x9b\xdc\x2a\x5a\x28\x7b\xd8\xde\x86\x9c\x50\x93\xaf\x67\xca\xd2\xd2\x04\xea\x59\xe3\x34\xfa\x0e\xed\x72\x72\x7b\xf5\x6e\x25\xd6\x53\x78\xe1\xce\x64\xdd\x77\x80\x6e\x07\xde\xeb\xfe\x7e\xc0\x46\x59\x04\x9d\x3e\x45\x4d\xe2\x0d\xd0\xd9\x1c\x9e\xcb\xdb\xbf\xc1\x38\x5a\xf3\x5b\x4f\xdd\xe8\x86\xcb\xc2\x43\xc6\xb8\x7a\x93\xb4\x40\xde\x24\x22\xea\x30\xcf\xe0\xe6\xb2\x7d\x22\x38\x71\x76\x0b\xd2\xb9\x92\xff\x98\xf0\xfd\xa4\xb6\xf7\xbb\x4c\x05\x7e\x77\x4a\x81\xec\xd0\xae\x76\x77\x64\x66\xea\x0f\xe3\x7e\xe0\x81\xc0\xaa\x39\xca\x50\xd6\xa2\x52\x36\xea\xf5\xcb\x1d\xde\x45\x68\xeb\xb8\x8e\xb4\x6d\xbc\xf4\x93\x5f\xb4\x9f\x56\xc1\x64\x0f\xbc\xbf\xcf\x0a\xa5\x1b\x15\x79\x46\xaf\x23\x40\x51\x9d\xb1\x4f\x13\x06\xc4\xd7\x11\xd1\x42\xc0\xc4\xbd\x13\x10\xbd\xf1\x0e\x47\x3f\x22\xf1\x5f\x0f\xa3\x26\x21\x72\xd2\xde\xce\x33\xcb\x90\x50\x0c\x16\x96\x14\xb8\x0c\xca\xf1\xb8\x01\xb8\x95\x9a\x15\x9b\xb3\xca\x5e\xe9\xd8\xb9\xae\xa6\x84\xd0\x01\x0b\xe7\xd1\xa6\x2e\x37\x14\xe2\x2c\x9c\xc1\x77\x22\xde\xab\xa8\x6e\xfc\x5e\xe0\x6a\x77\x59\x34\x2a\x1e\xf2\x37\x70\x7b\xd2\xc3\xb4\x5e\x97\xdc\x13\xf4\x86\x09\xd7\x49\x9d\xf8\x7e\xc5\x42\xe6\x76\xed\x43\x10\xb7\x45\x1c\xd2\x34\x4f\x7e\x92\x78\x81\x61\x37\x89\x53\xd3\xb2\x83\xba\x49\xe4\xe5\x61\xbf\x0a\x3d\x53\xa7\x67\xda\xd3\xb7\x39\x88\xeb\x46\xd5\x6f\x08\x21\xfc\xb6\x31\x15\x05\x7e\x86\x97\x8d\xa0\xfc\xb7\x51\x9a\xc3\x04\xd9\xb0\x69\x2a\x32\x95\x7b\x36\x87\x40\x32\x2b\x12\x18\x08\x3f\xee\x92\xbc\x10\x88\x51\x28\x25\xfd\xc3\x80\xcc\xc3\x7e\x9b\x03\xeb\x2b\x18\x77\x13\xd9\xac\xd3\x50\x72\x5d\xbc\xe3\x84\x96\x78\x9b\x3d\x59\xdf\x0c\x48\x4f\xec\x16\xb5\x96\x2f\x4c\x41\x43\xbe\x58\x8f\xaa\xee\x28\x52\x5b\x17\xf4\x4e\xce\x32\xae\xf1\xec\x54\x2f\xc3\x6a\x0c\xd4\xc3\x3c\xca\xe3\x05\x0d\xf2\xb1\xf3\x48\x8a\x27\x27\x6e\x1b\x5f\x09\x93\x44\xf8\x7e\xaa\x12\xd8\x72\xb6\x37\x67\xa7\x88\x85\x5f\x7b\xbe\x9d\x84\x98\x12\x2a\x01\x51\xe7\xed\xba\x1d\x36\xe8\xbb\x0d\xb3\x52\x65\xf3\x31\x5b\x01\xb6\x91\x63\x12\x24\x36\x49\x8c\x72\x9b\xd3\xfa\xdc\xef\x79\x39\xd4\xbf\x7c\x30\x95\xdb\xcc\xcd\xb5\x47\x69\x64\xf2\x32\x8c\xd3\xd2\xf9\x17\x8b\xf1\x7f\xe0\x6f\xe7\xe8\x44\x6a\x9c\x77\x8b\x27\x3c\xdf\xa3\xd5\x21\x23\xc5\x0f\xb0\xec\x8a\xa2\xa3\x7d\x4d\x68\x1b\x7c\x34\x01\xfc\xb2\x63\x5a\xb3\x26\x24\x49\xb8\xf6\xbf\x0c\x08\x8c\x68\xdd\xa8\x9e\x95\x50\x4b\x74\xea\x51\x7d\x7b\x6f\x42\xc4\x02\x45\x08\xf9\x02\x12\x19\xda\xb0\xfb\x8c\xba\x08\xd7\xa3\x1a\xf3\xf7\x5c\xf0\x8c\x8b\x58\xba\xb1\xc0\xed\x35\x6c\x52\x7a\x94\xbf\x79\xac\x25\x4a\x05\x9b\x32\x3a\xb6\x81\x57\x5e\xaf\x8e\x91\xe2\xe5\x89\xd5\xef\x74\xca\x48\xb0\x58\x1b\x93\x4f\xb4\x9c\x76\xd7\xf5\x80\xf4\x73\xfe\xa7\x80\xc4\x1f\xde\xb1\x0f\x51\xa0\x2d\x98\xa7\xd8\xd4\xde\xb3\x97\x85\xe5\x6e\xeb\x98\xfc\x26\x8e\x57\x8c\x4d\xf8\xe7\x18\xf7\xa8\xde\x5d\xc0\x02\x85\x7a\xd4\x77\x02\x2f\x3e\x7c\x8a\x90\xd9\xe7\x03\x96\x1c\x3d\x57\x91\xb2\xe9\x84\xad\xf7\xc7\x14\xab\xd4\xa9\x7c\x98\xda\x48\x0a\xb5\xdd\x23\x64\x32\x78\xc4\xfe\x90\x02\x9b\x5a\x4e\x74\x72\x9d\x8c\xee\x92\xac\x28\x76\x7a\xa1\xd2\x35\x84\x16\x62\x15\x8c\x5b\x70\xaa\x8f\xf5\xad\x22\xbe\x44\x85\xc0\x61\x5a\x1d\x71\xe3\x6e\x45\xd1\xf5\x07\x76\xa2\x21\xa8\x43\xc2\x87\x57\x72\x2f\x78\x8c\x71\x5e\x5f\xb6\x22\x20\x2a\xd9\xeb\x6b\x5c\x47\x49\x48\xe0\x34\xee\x5f\x75\xc8\x7c\x9e\xf4\x8d\x5d\x07\xc0\xb4\xd3\xda\xbf\x7d\x83\x4e\xa6\x7e\x7e\x5e\x35\xad\xa6\x60\xa3\x87\x76\xb5\xd3\xb0\xd5\x3a\xf8\x9c\x82\x9c\x08\xff\xb9\x4e\xb8\x12\xeb\x82\xa6\xb2\x08\x12\x0f\xda\xf1\xad\xb1\xe1\xd3\xbc\xa9\x76\x47\x96\x41\xb2\x9d\x2e\xe3\x24\x06\x0f\x6e\x04\xb6\xc2\x98\x1a\x78\x3d\xb8\x71\x94\x05\xf0\x7c\xde\xae\xa8\x86\x7f\xb2\x49\x5f\x33\x5b\x5c\x24\xbb\x2a\x7c\x33\x92\x0c\x39\xa6\xfe\xd5\xd2\x08\x86\xb1\xda\x5d\x23\x31\x95\xad\x63\xea\xa8\x85\x83\x38\x29\x45\x29\x42\xe4\xa4\xf0\xd0\x55\x5b\xca\xa5\x51\xc5\x6a\x32\x1a\xd8\x9e\xa8\x76\x26\xc9\xbc\x1a\x80\x25\x4c\x9b\x9b\x93\xc8\xcb\x64\xd4\x35\xc5\xa3\x2d\xa7\xc5\x39\x26\x87\xee\x33\x44\x5a\xbd\x6b\x8b\x9e\x58\x32\x1e\x60\x5d\x73\xf6\x25\x5e\xf3\xf0\x3c\x56\x1f\xd5\xb0\xad\x1f\x25\xbe\xf6\x0e\xca\x5e\xda\x36\xf6\xcb\xcf\x83\x09\xd5\x5b\xdc\x1c\xca\x2d\x25\xd1\x37\x07\xa3\x72\x14\x26\xdb\x36\xa3\xd9\x85\xa9\x16\x78\xe3\xf1\x4b\x95\x97\xd8\xfb\x19\xb7\xdd\xff\x21\x75\x6f\xe2\xb4\xde\x10\x5b\x3e\xe1\xfe\x6e\xe5\xbd\x0e\xbe\x4b\x03\xf9\xc0\xee\xe7\x66\x29\x93\xb1\xb5\x65\xf6\x2a\xd5\x1e\x16\x21\x38\x77\x52\xbd\x20\x5c\x2c\x1f\xa2\xb2\x27\x4a\x20\x0e\xbc\x51\x0f\x27\x27\x8a\xe6\xf5\x13\x84\x2f\xa3\x86\xeb\x2d\xe7\x2d\x30\x6b\x33\x43\x84\x25\x4f\x63\x9b\xc1\x88\x39\xe3\x42\xe0\xa8\x3f\x4a\xa1\xfb\x87\x2b\x43\xff\x5c\x8e\x9b\x94\x68\xdb\x69\x56\x1a\x21\xf0\x49\x91\x4b\xd6\x4b\xc4\xd0\x67\x70\x65\x18\x52\xd2\xfa\xd0\x7a\xf3\xa3\xbe\xe4\x92\xaa\x80\x2a\xfe\x4f\x0a\x6d\x08\x38\x6f\x23\x6f\xa5\x3b\xd5\xa8\xfa\x51\x7a\x54\x4b\x66\x60\x39\x8e\x08\x1d\xef\x92\xc0\x37\x7c\x0c\xdc\x0a\xe7\x1e\xc1\xfb\x95\xaf\x0c\xbc\xcd\xb2\xd2\xc7\x08\xe0\x56\x98\xf8\x5b\x70\x9d\x43\x7c\x7a\xd7\x0e\x15\x39\x9e\x28\x2e\x96\x11\xb0\x1e\x9f\x8c\x74\x9a\x08\xaa\x46\xc3\xc2\x94\x33\x9e\x8c\xf7\x66\x35\xb3\xd9\xaf\x0d\x31\xed\xd6\xb1\xb3\xea\xde\xfb\xb4\x6f\x9c\x7f\xf9\x4b\x1d\x3f\x18\xb6\x8d\x5b\xbf\x72\xc0\x29\x7d\xd7\x9f\x45\x9a\x28\x84\x79\xec\xf2\x0f\xe4\xc5\x60\x7d\xff\xf9\x0e\x81\xd1\x1e\x60\x30\x61\x9f\x9f\xe9\xd4\x13\x55\x8d\x67\xb1\x79\x29\xb8\xc5\xc6\x99\x8a\xcc\x21\xd5\x37\xa9\xef\x60\x23\x02\x85\x1a\x3b\xf1\x7b\x81\x47\x89\x3e\x3c\xa6\xfd\xf6\x81\x7d\x13\x08\x0f\xd0\x73\xc1\xed\x7e\x60\xa7\x36\xca\x49\x3b\xc6\x64\xf6\x16\x17\xb6\x32\xc9\x5b\x9f\x13\x2d\x58\x27\xb9\xf7\x28\x31\x61\x3a\x42\x1b\x57\x44\xbf\x03\x5f\x86\x38\xe6\x28\x59\xc3\xb0\xcc\xb3\x34\xfe\x96\x5b\x70\xb1\xbb\x62\x5d\x90\x63\xc2\x55\xf4\xe3\x52\x13\xb6\x03\x3e\xba\xaa\x9f\x80\x46\x4a\x9f\x8a\x37\xd7\xe1\xed\x7f\xa3\x4a\x09\x8f\x0f\xc4\xdb\x22\x01\x86\xd0\x7f\x66\xca\xbf\xc6\xf2\x1b\x6d\x73\xd8\x35\x35\x3f\x20\x6d\xc0\x0f\xbc\xbf\xaa\x49\xe2\x65\x81\x41\x21\xac\xbf\x46\xed\xf4\x6b\x13\x41\xa6\x89\x96\x1e\xa9\xdf\x8a\xb6\x1c\x7c\xb6\x7d\x1c\x2f\x15\x49\xf2\xb1\x09\x9d\xe1\xca\x3b\xa6\xac\xdb\x34\x06\xc5\x6e\xd9\x41\x5c\xdc\xcd\x52\xb2\xf5\xd3\x51\x05\x68\x7b\xfb\x18\x88\x7f\x64\xbb\x67\xf8\xf1\x8d\x29\x39\x9a\x17\x5f\x6c\x9b\x65\x93\xf7\x92\xb0\xab\x41\x33\x96\xb2\xf7\x03\xe2\x48\x4e\xa3\xd6\xe7\xe6\x0e\xb4\x87\x59\x5c\xc8\xfe\x86\xed\xe9\x43\xc2\xdc\x7f\xe8\xd0\x58\xc3\xb8\x28\x63\xd5\xd0\x70\x1c\x44\x97\xc6\x4f\xf3\x57\xea\xa4\x36\xec\xf5\x34\xeb\x71\x6e\x1a\x9e\xf6\x38\x05\x3f\xde\x3b\xdf\x8e\xeb\x50\xb4\x1b\xa2\x6a\x86\x65\xf3\x67\x04\x56\xf8\xd9\x54\xbc\xfb\xc5\x76\x3e\xea\xc6\x75\xe2\xac\x58\x4c\x55\x7f\x62\x32\x49\x03\xe7\xf1\x73\x96\x44\x30\xeb\xeb\x4c\xa2\xc2\x88\x1b\x17\xff\x64\xac\x0e\xc8\xa4\xf0\xee\x1e\x4c\x55\x80\x77\xef\x6e\x2f\x98\x28\x1b\xa8\xab\x89\xb6\x3d\xc8\x31\xe9\x94\x1b\x72\x8b\x26\xc9\xd2\xd5\x19\xc2\xf1\xde\xa1\x2f\x7f\xc8\x2e\x5b\xaa\xd5\xd1\x64\x24\xf5\x92\xa9\x63\x9c\x42\xa0\x6a\x28\x3a\x89\x99\xa4\x9c\x10\x3e\xdb\x96\x3d\x76\x62\x01\xd2\x2d\xc8\x17\x83\xde\xa1\x16\xc6\x65\xe4\xb6\xc8\x93\x77\x42\x2b\x1e\xab\x61\x6b\x4c\xa6\x2f\xd0\x8a\xb7\x2b\xde\x1b\x4f\x76\xbc\x6c\x86\xb4\x20\xf4\x37\x38\x0e\x2f\xac\xe8\x09\x89\xa8\xf2\x1a\x7a\x95\x4a\xeb\xa2\xd0\x8d\x80\xf9\x7e\xe5\x7b\x63\x17\xf9\x49\xfe\x80\xa5\xeb\x7f\xc8\x78\xa4\x34\x94\x1d\x50\x23\xdb\xd6\xfc\xfc\xc6\x9d\xca\x63\xd4\x44\x82\xdc\x2e\xbe\xd1\xb4\x9b\x98\x1d\x12\x45\x19\xa6\x5d\xa5\x8f\xa9\xd3\xb0\x0f\xcd\x7e\x8f\x24\x3d\xe2\x81\x25\x55\x96\x80\x72\x39\xaf\x3c\x12\x70\x27\x23\xa2\x3c\x1b\x66\x45\x98\x3c\x4e\x12\x03\x0f\xd0\xd0\x46\x31\xe3\x0a\xc6\x9e\x96\x86\xbd\xb7\xd8\x1b\xe4\x9c\x79\xd5\x2e\x21\x58\xf5\x24\x00\xd4\xd6\xae\x6f\x86\xfe\x1e\x91\xa8\xde\x40\x23\x0d\xdb\xcd\x4d\xe4\xa8\x78\x16\x17\x11\x32\xca\xc7\x95\x70\xcf\x18\x2e\x37\xf1\x7b\x79\x38\x18\x84\x22\xb2\x8d\xed\x06\x95\x2d\x14\x20\xa0\x80\x2f\xb8\xf8\xea\x33\x14\xd8\x96\x26\x49\x4c\x54\x47\x8d\x85\x45\x36\x68\x78\x48\xed\x8e\xad\x24\x9f\x2f\x74\x36\xed\x55\x35\x36\x14\xfa\x59\xd2\x75\x99\xb1\xa2\xff\xfd\x6a\x75\x95\xc4\xb7\xa6\x5b\xc9\x73\x73\x75\xa6\x5b\x8c\x12\x9f\x5c\xe3\x4f\x31\xd8\x98\x57\x82\x21\xc4\x25\x64\xf1\x19\x78\xb4\x0e\x64\xb4\x57\xef\xd3\xe5\x59\x54\x8d\x91\x94\xb6\x3a\xd4\x7c\x92\x66\x33\x5e\xa6\x6c\xf2\x98\x26\x7f\x01\x50\x81\x03\x34\x1c\xda\xe5\x9a\xa7\x76\x19\xc1\xb5\x09\x4c\x47\x2d\x6e\xea\xc1\xa0\xc4\x94\x7a\x90\xa8\xcb\xd3\x93\x6c\x7d\x53\xf6\x73\x83\xf5\x41\xc0\x02\x78\xd9\x8a\x1c\x68\x62\x45\x7d\xcb\x84\x49\x28\xf6\x4a\xa8\x83\x3c\xa8\x88\x5e\xc0\xc8\xb5\x61\x1c\x2d\x19\x50\x6b\x9c\x3b\xfa\x5e\xbd\xdd\x0b\x01\xeb\xe7\xc6\xdd\x38\xcc\x63\x23\x8c\x6d\x55\x3d\xb2\x37\x84\xf7\xbf\xdd\x36\xf0\xf0\xd1\xed\x63\x1f\x2b\x2c\x98\xdc\x7e\xae\xe5\x24\xd2\x6e\x92\x44\xda\x45\x56\x41\xfd\xb8\x01\xb4\x35\x0f\x09\x30\xa1\x6f\x63\x75\xff\x10\xb1\x86\x9c\x50\xf7\x3e\xcc\x4d\x58\x3c\xe2\xe7\xf0\x4d\xb6\xba\x80\x0a\x1d\x42\xb4\xc3\xb4\x76\x5e\xc7\x46\x8d\xec\xe7\x34\x02\x00\x39\xb1\xc8\x0c\x47\x10\x72\x8e\xa7\xc7\xec\xe4\x95\x4f\xb3\x1c\xe2\x69\xe4\xc1\x12\x2e\xd2\xea\x1d\x65\x69\x2a\xd6\xaa\x4a\x72\xb0\xcf\x51\x7a\x08\x15\x69\xc0\x5f\x20\x0c\x39\xe2\x2f\x0c\x8c\x07\x4d\xd2\xe4\x8b\x61\x1a\x61\xa7\xc4\x22\x0c\x08\x9c\x1c\x93\xbb\x51\x6e\x86\xa3\x85\x24\x8e\xc2\x54\xda\x36\x4e\x42\x76\x6e\xce\xc9\x82\x36\x16\x3b\x87\x99\x73\x93\x45\x4c\xfa\xe6\x04\x03\x94\xac\xea\xdf\x9d\x9a\xe7\x73\x73\xe0\xd1\xc1\x91\xc1\xd5\xb8\x2f\x4e\x30\x38\x1b\x41\x63\x7d\x6f\x57\x20\x70\x6c\x0a\xfa\xce\x38\xce\xda\xc0\x84\x40\x5a\xa9\xbb\x88\x57\xfb\x3e\x4c\x5d\x8d\x19\xa4\x5a\xf8\xa3\x5b\xb4\xee\x47\x26\x2d\x47\xb9\xf8\x0d\x3e\xeb\x0c\xae\xea\x4f\xca\xf1\xa4\x78\xe4\xca\x42\x18\x2d\xc1\x1a\x08\xc8\x22\x80\x14\xe4\xb8\x41\x33\xe4\xd9\x3a\x9f\x8b\x96\x5a\x14\x3b\xda\xeb\xd2\x38\xb2\x01\xcf\x3f\x20\x61\x21\x2d\xfe\x52\xe9\xf4\x2c\xf5\x8e\xcc\xcb\x65\x3e\x2a\xc4\xdc\xe3\x05\x2f\xd8\x55\xff\xb5\xc2\x81\x36\x97\x65\x3d\x48\x2d\x09\x53\x4b\x99\x71\x48\x4b\xe9\x16\xaa\x53\x6b\x43\x44\x67\x06\xc3\x24\x5b\x35\x90\xf0\xc3\xfe\xf1\x57\xb4\xa5\xfe\x7d\x9b\xba\x20\xe2\xfe\x09\x65\x21\xe2\xad\x35\xeb\xab\x4f\x1f\x12\x9a\xf2\x43\xda\x16\x2f\x57\x3e\xb2\xbe\x4c\x9a\x97\xcb\x61\x9e\x9a\x24\x91\x1a\x28\x0a\xfd\xa2\xa5\x2a\x27\xd4\x53\x0a\x93\xd2\xe4\x29\x60\x92\x2d\xda\x1b\xd6\x49\x0b\x6d\xdd\xe3\x6b\xa3\xd8\xa4\x91\xd1\x9c\x1b\x1d\xd0\x87\x21\xbb\xec\xa4\xc7\x7c\x79\x7f\x9d\x9d\x1d\x1e\x26\x82\x4d\x92\x2d\x8b\x4f\x1c\xba\x20\x20\x0d\xc8\x31\x35\x6a\xbb\x66\xd1\xe4\x46\x44\x8e\x5e\x98\xf4\xc5\x91\x93\xa9\x9c\x60\xef\x7c\xdb\x16\x93\x8d\x4d\xfb\x08\x51\x8b\x74\x5e\x8e\x37\x03\x52\xe6\xe7\xdb\x5f\x7c\xda\x9b\x66\x9f\xa5\x4d\xee\x32\x42\x0e\xa1\x04\x33\x0d\x58\xca\xbd\xc8\xd5\x1f\x05\x92\x1c\xab\xde\x5a\xe5\x69\xe0\x0f\x02\x72\xb5\x7f\x1d\xbc\x24\x67\x8f\xe7\x18\x43\xb7\x08\xa9\xb7\x7d\xec\xe7\xc0\xeb\x01\xc9\xc3\x3f\xdc\xb1\x7b\xa7\x60\xf8\x02\xc2\xc4\xc2\x84\x0a\x53\xf8\x3d\x6c\xb7\x78\x9c\x33\xe3\x7a\x94\x88\xdf\x2c\xde\x07\x42\xdf\x59\x62\xf8\x0c\xc2\x3c\xca\x8a\xed\x5e\x57\x53\x0a\xa7\x5a\x85\xd8\x44\xc5\xaa\x7f\x56\xd7\xed\xfa\x4a\x35\xe5\xaf\xef\x40\x8b\x64\xe4\x8b\x9e\x95\x61\x99\x39\x0b\x58\x51\x90\xb4\x53\x5b\xd5\x24\x37\x77\x81\x74\xe2\x7d\x73\x14\xa6\xe5\x68\xd0\x22\x20\x28\x6e\x41\x51\xa1\x4e\xbd\x3b\x37\x45\x37\x15\xae\x99\x62\xfe\xc9\x92\xf2\x02\xad\x04\x61\x77\x39\x4c\x23\xc9\xde\xf7\x78\x98\xac\x73\xc1\xe1\xf6\x9f\xcc\x62\x38\x37\x60\x13\xbd\x49\xea\xbc\x37\xd9\x11\x44\x74\x36\xe5\xa4\xf2\x90\xad\xd0\xe4\x59\x31\x0c\x45\x55\x04\xf1\xdb\x15\x36\xfd\xb8\x42\x68\xbc\xae\x29\x2c\x70\x19\x55\x42\x4c\xef\xa3\x94\x2b\x1d\x6d\xd2\x7f\x80\x9f\x90\xab\x48\xa0\xbf\x73\x89\x7a\x3d\x97\x18\xab\x95\xa5\x3d\x93\xef\xac\xd7\x1f\x05\x9c\x7a\x5a\xea\x1f\x05\xe4\x60\x26\xfe\xee\xe8\x2f\x1e\xa9\xbc\x65\xde\xbd\xc0\x0b\x92\x00\xa3\x8c\xbb\xbe\xc5\x51\xae\xa0\x52\x55\xa1\xf7\xe9\xcd\xfe\xe9\xf3\xf3\xfb\x76\xda\x87\x00\xfe\xe3\x47\x32\xcc\xd8\xdb\x07\xa1\xc2\x6d\x7c\x2b\x2a\x6e\x28\x71\xa1\xb4\xfa\xdf\x54\x2c\x7d\x47\xd3\xec\x72\x45\xb6\x2d\x72\x17\xa8\x10\xbe\x36\x61\xf0\x17\x76\xe3\x64\xd5\x96\xff\x54\x60\x6e\x9a\x08\xab\x74\xae\x49\x4d\xba\xbd\x13\xb0\xee\x17\x1c\xac\xfb\x09\x57\x37\x88\xca\x51\xee\x96\x4a\xf5\x57\x22\x4c\x19\xb8\xee\x13\xd8\x47\x05\xb9\x34\x10\x23\x97\x4d\x6a\xbe\x35\x32\x89\x40\x44\x90\x0d\x6d\x61\x28\xda\x96\x71\x83\x14\x86\x04\xc4\x78\xc2\x88\x58\xe5\x78\x2a\x44\xfa\xc2\x17\xda\x49\x58\x2a\x3b\xd1\xf9\x0a\xee\xdf\xa5\xc7\x54\x9e\x36\x19\x72\x1b\xcd\x5a\x08\x51\x71\x87\x72\xdb\x3b\x3c\x07\x7f\x36\x55\xcc\xdc\x3b\xdf\x0e\x8b\x25\x55\x5b\x9c\x70\x13\xd3\x96\xd1\x94\xaf\x97\xb4\xf9\xb4\x3f\xec\x41\x46\xe7\x09\x64\x74\xbe\xc9\x5c\x38\xcf\xb2\x45\x37\x43\x9c\x3f\x88\x2b\x05\x9e\x75\xea\x93\xf1\x20\xec\xc5\x29\xdc\x2d\x0f\xed\xda\xb7\x61\xb1\x5b\x1b\xef\x4e\x70\x14\x17\xca\x62\x07\x89\x60\x00\x4b\x20\x81\x5e\xf5\x89\xea\x64\x76\x08\x69\x38\xd8\x22\xa9\x32\x3b\x84\x94\x05\xc1\x45\x64\x33\x28\x1e\xa2\x62\xe1\x45\x86\x1e\xdd\x09\x3c\x75\xf4\x16\xb7\xe3\xce\xd9\xab\x51\x00\x49\xfd\x3b\xe8\x94\x41\xf5\x03\x7d\xdc\x1f\x60\xa4\x6b\x1c\xed\x27\xc5\x8a\x09\x87\xa2\x46\x31\x0f\x8d\xed\x8d\x4b\x0e\x82\x61\x95\x80\xb7\xf9\x49\x27\x7e\x15\xc8\xec\xe0\x03\x80\xfb\x7e\xcf\xfe\x2c\xba\x04\x47\x2a\x12\x24\x9f\x76\xcc\xdf\xbd\xa7\x1d\x99\xdc\x84\x09\x2d\xf3\xd8\x19\xe5\x98\x45\xa7\xe2\x5e\x98\x9b\xb2\x14\x8b\x4a\x07\xd7\x76\xad\x8a\x8b\x2e\x56\x59\xcc\x4d\x6a\xca\x38\x02\x83\x08\x2b\xc1\x11\x42\xe1\x5d\xb7\x29\x8e\x7a\xe5\x6f\x1e\x9a\x2f\xbe\xd8\x8e\xd3\xa8\xdf\x22\x1c\xbf\xbd\x3b\xc5\xf4\x13\xd3\x2b\x5d\x36\xa9\xb8\xd6\x3b\x6f\xb3\x07\xec\x6d\xf6\xc0\x5d\x53\x94\xa5\x8b\xa3\x62\xb2\xc0\x0b\x29\x2c\x2c\xb1\x02\x06\x45\x74\x71\xc6\x55\x9c\x47\x69\xd7\xe4\xb6\x44\x53\x10\x31\xf6\x1c\x5e\xb9\xea\xfa\x6b\x9c\xbf\x6c\xca\x6c\x3b\x29\xa7\xa3\x5f\xa4\xfa\x89\x2d\xa7\x32\xfc\x54\x87\xb8\x5b\x17\x49\x6e\xed\x06\xf7\x84\x6e\xb8\xfc\x21\x19\x45\x4b\x33\xd4\x31\x3b\x5c\x91\x00\x0d\xa4\x21\xc5\x1a\x61\x2a\x52\xdf\xbf\xab\x3d\x30\x49\x92\xad\x4c\x80\xf3\x5a\xf3\xec\x00\xe4\x84\x29\x92\x58\x0c\xa4\xd0\x52\x97\x9c\x51\x4e\xaa\x67\x36\xbb\x86\xec\x6b\x1f\xda\x65\x43\x6c\xc4\x83\xe7\xed\x9c\xd0\x82\xb7\x6f\x68\x7c\x40\xfb\xdf\xc0\xa4\x65\xa6\x52\x71\xb8\x19\xe9\x83\xca\xc9\x94\x4a\x90\xc6\x23\x65\x3f\x1b\xf5\xfa\xdb\xeb\x55\x54\xd5\xa6\xbc\x44\xf5\x45\xe6\x4f\x03\x3a\xe5\xa4\xdb\x3d\x2a\xbe\xf2\x68\xba\xcb\xa4\x6a\x25\xae\xe1\xdb\xeb\xb0\x91\x23\x24\x8c\x8b\x33\xa8\x64\xa8\x00\xac\x1f\x30\x67\x02\xdf\x74\x5c\x63\x4b\xcf\x26\x23\x30\x6b\x41\x8d\xaa\x3f\x0a\x0a\xef\x10\x12\xf1\x9d\xc6\x94\x39\x8b\x46\xc8\x46\xa5\x54\x1c\x30\xc8\xca\x6f\x07\x7b\xf6\x3e\x37\x43\x08\xf4\xc0\x17\x1f\xcf\xb1\xaa\xd5\xef\xb2\x3e\x83\xe9\xd9\xac\x03\x43\x0a\xb8\x66\xd4\x0d\xb0\x26\xde\x22\x49\x95\x13\xa4\xd3\x5e\x47\xf6\xc3\x32\x5b\x8a\xd3\xb0\x60\xb7\x80\xd3\x24\x4a\x36\xed\x21\x79\x68\x57\xbb\xec\xe7\xd9\x8a\x5b\xff\x05\xcc\x1a\x4c\x20\x5b\x3f\x45\x94\xdd\x30\x89\xbf\x85\xd7\x81\x75\xeb\x22\xbb\xfc\x48\x30\x80\x32\xe2\xcc\x98\xda\x84\xd8\xe0\xe5\x23\x81\xb7\x96\x98\x71\x3a\xbb\x71\x5a\xc4\x5d\x93\x6f\xe7\xce\x95\x7d\xbb\x58\x44\xd7\xa8\xe9\x78\x18\x0f\x0f\xc8\x82\x77\xc8\x49\x0d\x30\x44\x24\x0e\x4f\x4c\xf5\x81\xac\xc9\xee\x30\x14\x93\x22\x04\x07\xa2\x45\x8f\x3c\xe0\xc3\xca\xcf\xc3\x73\x34\x31\xea\x8c\xdd\x74\x77\xb2\xc6\xd2\x55\x90\x51\xc1\x4b\x86\xb4\x14\xa0\x15\x97\x08\xa1\xb0\x65\x4c\xb2\x0e\x57\x2b\xff\xd0\x2e\x53\x89\x65\x1d\x58\x33\xf9\x26\x14\x7f\x14\x30\xe8\xd9\xb9\x61\x1a\xd1\x78\xbb\x4b\xa1\xf6\x5d\xee\xa9\x8d\xd2\x5e\x98\xaf\xa2\xe8\xa1\x4e\xe4\x64\x08\xd6\xd4\x71\x3e\xd0\x2e\xfb\x76\x69\x71\x15\x99\x35\x62\x68\xac\xd1\x12\x64\xf2\xac\x0b\x00\x28\x6e\x55\x04\x0a\x95\xe2\x42\x1e\x39\x5b\x3b\x5e\x6a\x30\x4c\x56\x23\x33\xe3\xf9\x59\x7f\x44\x16\x63\x57\x6d\xe0\x85\x00\xf4\x5a\x93\x41\xef\x4a\x9c\x74\x23\x31\x1f\x42\x0b\xf1\x3c\xb5\x13\xcf\x4f\x89\xdc\xef\xde\xdd\x2e\x3e\x3f\x9c\xa1\x1a\xc4\x1b\x14\xec\xbf\x4a\xe0\x9e\xa3\x53\x0b\xc1\xf3\xfb\x77\xb5\x5f\x92\xce\x97\x82\xb2\xec\x17\xc9\xc9\x54\x31\x63\xcf\x41\x3b\x9c\x96\xd4\xbc\x01\x13\x54\x64\x6f\xe5\x64\x0a\xc8\xe7\x96\xcc\x3c\xac\x37\xaf\x19\x0a\x54\x15\x18\x85\x25\xec\x1a\xb6\x1b\x15\xe9\x6b\x58\x85\x56\xfa\xb1\xa8\xf4\x3a\x8b\x0c\xe7\x84\x70\x9c\xb8\x0c\x2f\x8d\x52\x63\xb5\x72\x51\x71\xbd\x44\x41\xfa\x06\x86\xbf\x02\x32\xbc\xa5\xb6\x54\xdf\x15\x35\xe9\x90\x05\xd9\x8a\xc9\x67\x49\x48\xe1\x3c\xc5\x71\x82\x93\x40\xaf\xf3\x03\xac\xba\x98\x97\xc7\x7c\xbf\x2b\x5c\xce\x72\x5b\x00\xde\x23\xc5\xbb\xfb\xac\xf4\xbd\xbd\x43\xa9\xe2\x85\xea\x19\x5f\x65\x36\xf9\xd0\x58\xd1\x74\x09\x12\x9c\x6c\xa4\xbb\x65\xc9\x51\xb0\x3f\xff\x8b\xea\x11\x77\xff\x5f\xfa\xd2\xa7\xed\xff\x20\x3a\x9c\x1d\xdb\x81\x8a\xad\xe6\x3a\xe7\x43\xdf\xb3\x9b\x16\x5a\x07\x8f\xe3\x42\x30\x56\x44\xb7\x16\xfc\x5e\x2b\xc1\xe4\x7c\x96\x2c\x2c\x02\x23\x6d\x66\xec\xc5\xe6\x9e\x9c\x04\xbc\xb5\x9c\x56\xfd\x96\x8e\x87\x68\x6f\x1b\xdb\x99\x8f\xc5\x4e\x0c\xdf\x35\x5d\xaa\xdf\x04\x28\x90\x97\x81\x91\xc5\x0a\xfe\xbf\x05\xde\x6a\x79\x9b\x60\x73\x45\x52\xc9\xa2\xc8\x50\xb7\xbc\x8e\xc5\x09\x09\xcd\xab\x76\x7d\x54\x09\x34\xe7\x93\x6c\xd2\xd2\xa4\x69\x2c\xd1\x25\xc2\x08\xf4\x6e\xe4\x78\x3c\xa1\xb5\x6b\xbe\xd5\x9a\x61\x6b\xc2\x09\x56\x91\x2f\x98\x58\x71\xbb\xe2\xd1\xd6\xf3\x5a\x29\x7d\xd3\x3e\x20\xb5\xec\xa9\xef\x0a\xd1\xdd\x9f\x06\xd4\x14\xb9\x11\x90\x62\x13\x5b\xd3\x9f\xad\x7c\x91\x46\x72\x3a\xf9\x0f\xbb\x85\x28\x18\x8e\x48\x6e\xc7\xc9\xfd\x61\x0b\xd8\x75\x72\x21\xd5\xa3\x6e\x30\xad\x9a\x62\x47\xeb\x1b\x5f\x97\xad\xf8\x3a\x91\xac\xb6\x76\xea\xef\x55\x21\x28\xfb\xd6\x55\x6a\xb9\x45\x42\xfd\xf6\x07\x1d\x0f\xb5\xbe\x11\x39\x21\xb5\xd4\x22\x1b\x98\xa7\xec\x20\x42\x69\x77\xc6\x72\xe0\x84\x4c\x8a\x77\xaa\x2f\x88\xf4\xcf\x1f\x25\xfd\xf3\x4b\x58\x49\xb0\xa4\x6e\x1b\x7b\x70\xed\x36\x7b\x63\x1b\xdb\xc7\xbe\x9d\xd0\xea\x78\x41\x9b\xd9\x0e\x87\x70\xc0\xfb\x0b\xc2\x16\x57\x0e\xf0\xd0\x1d\x5c\x39\x40\xdf\x5b\xa0\x25\x86\x55\x4b\xc8\x09\x18\xef\xef\xd9\x27\x8a\x65\x48\xe8\xc6\x58\x22\xee\xb8\x96\xe0\x42\x6e\xd2\xae\x58\x9a\x21\x46\x7f\x8d\xdb\xb2\xaf\x4d\xad\x9c\x87\x76\xbd\xd0\x5e\x30\x51\x38\x2a\x40\xb2\xc2\x14\x60\xca\xc8\x1f\xdb\x6d\x54\x68\xa3\xa4\xe1\x35\x08\xd3\x9d\x1e\xc3\xf6\xcf\xec\xe2\x2e\x50\x75\x4c\x39\xac\x0b\x12\xb7\xa2\x5a\x73\xbb\x62\xe7\xf1\x75\x42\x25\x9e\x43\x58\x82\xd4\xec\xbe\x85\x54\xc8\x47\x02\xcf\x2a\xbb\xeb\x52\x88\x85\xb8\x94\xde\xd5\x84\x3f\x3c\xee\xf2\x12\xe5\x41\xd3\x84\x17\x8b\x41\x19\x45\x7d\xc0\xe5\xf1\x4a\x2f\xd9\xc5\x4b\x8e\xa9\x10\x57\x9a\xa8\x9f\xc6\x51\x98\xd8\x52\x02\x9e\x81\x80\x11\xd4\x95\xd2\xf3\x0f\x44\x89\x4f\xbd\x2b\xb5\xdd\x36\xcc\x92\xd5\x28\x4b\x33\x4b\xb6\x67\x32\xba\xec\x69\x72\x32\x55\x25\xde\x73\xb0\xdd\x8d\x8b\x2c\xef\x9a\x3c\x41\x53\x48\xa8\xc3\xa4\xdc\xf0\x7e\x13\xbd\xa9\x97\x8d\x92\x6e\x16\xa3\xf2\x80\xed\x59\x84\xbb\xe4\x84\x64\x49\x4a\x93\x0f\xe2\xb4\x5e\x7a\x5c\xb8\x75\x9a\xd2\x9e\xd3\x2c\x2b\x1a\x96\x51\x3f\x4e\x7b\xdb\xa9\x74\x8b\xf6\xb6\xf3\x9b\xf7\x64\xc7\x35\xa6\x2a\x9d\xb6\x4b\x84\x7c\xc2\x7e\x3b\xfe\xfd\xf2\x54\x1a\xb6\x77\xfe\xaf\x53\xbc\x27\x60\x5d\x84\x60\xc4\x71\x79\x89\xb2\xdb\xa0\x9e\xd7\x0f\xf3\x41\x62\x0a\xb0\xa4\x9c\x34\x99\x73\xd2\x44\xcf\x18\x65\xa4\xd3\x0d\x1e\x66\xed\x85\xb0\x50\x18\x89\xd2\x39\xec\xfd\xca\xc9\x44\x1b\xb6\x97\x98\x12\xbe\x7a\x78\x1a\x1b\xec\x48\xf3\x26\x01\x6d\x6e\x37\x8c\xce\x7d\xed\x22\xcb\x4b\x52\x84\xbe\x45\xbd\xca\x57\x69\xe1\xbe\xc7\xe2\xe2\xa3\x85\x3c\x2b\x33\x5c\x1f\x56\x8b\xcb\x98\x51\x72\xe2\xb6\x9b\x41\x98\xc4\xbd\x34\x4c\xa3\xd5\x19\x4a\x06\x2f\x90\x08\xe3\xeb\x13\xaa\x06\x7e\x47\xb1\xa1\xaf\xd9\x4e\x84\x9b\x0e\x41\x8e\x2e\xe3\x8d\xbb\x36\x92\x93\xaf\xbc\x83\xd8\x14\x2b\xdd\xdb\x58\xcf\xe4\xa4\xc1\x85\x6b\x7f\xdb\x7c\x73\x14\x0f\x87\xda\x18\xc1\x2f\xdd\xa5\x69\x76\xd7\x15\x30\x47\xe9\xb2\x89\x13\x15\xc5\xe3\x32\x81\xc6\x3a\x04\x04\xbd\x35\x15\xd4\xee\xdb\xbf\xaf\x5d\x86\xc9\x92\xe2\xa0\xdc\x60\x75\x5d\xc7\xd3\x44\xf4\x1d\x64\x69\xd9\x2f\x1e\xf3\xd8\x9e\x4b\xe8\x2d\x8b\x90\xae\x8d\x06\x54\x0f\xc9\xce\x10\xdd\xec\x3c\x18\xe0\x24\xc5\xd8\xff\xc0\xae\x7d\x58\xf1\xe1\x2c\xc1\xce\xa4\xd8\xa5\x7f\x8b\xfb\xdd\x92\xb7\xa9\xec\x15\x2d\xea\xb7\x30\xba\xb4\xfd\xe6\xa1\xbc\x51\xdf\x98\x5c\x84\x96\x90\xd4\x5c\x0f\x88\x34\x8d\x5c\x56\x17\x92\xcd\x4f\xc7\x2a\xdd\xf5\x7a\x61\xcf\x10\x5e\x61\x9d\x34\x7c\xd6\xa7\x6a\xc0\x7b\xe7\xdb\xc3\x30\x2f\xe3\x68\x94\x84\xf9\xac\x47\xca\x1c\x0f\x48\x3a\xf2\x22\x65\x8f\x40\x80\x8b\x40\x04\x41\xfc\x87\x59\x96\x6f\x23\x21\x97\x3f\x67\xa3\xdc\xd3\x01\x89\x94\xae\x61\xfb\xd6\x04\xb8\x45\x2a\xcf\xbe\x72\x91\x9a\x95\x41\x98\x2f\xb5\x68\x93\xbd\x87\xb5\x5a\x4e\x3e\xc1\xb3\x50\xb5\xdb\x44\xc3\x27\x20\x39\xd5\x1b\x54\x5a\xc8\xca\xe2\xe1\x3a\xe2\x73\x02\x82\xf5\x37\xbb\x35\xb1\xbe\x3c\x8e\x90\xb1\x90\xbd\x4e\x2e\x0b\xf3\x7f\xab\x43\x4a\x61\x98\x89\x1a\x3a\x73\x69\xbe\x65\x21\x19\xb6\x11\xfc\x7f\xfc\xe2\xd8\x23\x1e\xcf\x53\x70\x9e\x9b\xae\x19\x0c\xa5\xd6\xe7\x42\xe8\x9b\xe0\x3b\x2a\xc6\xbd\xa1\x92\x98\xc4\x61\x6e\x57\x46\xe4\x93\x6f\x12\x8c\x08\xb5\x4b\xed\xcb\xf2\x4f\x81\xe7\x1f\x42\xe7\x77\x8f\xf3\xf4\xb1\x8f\x59\x3b\x1e\xfe\x31\x7d\xb5\xd7\xb3\x63\x62\x22\xa1\x43\xa8\x78\x99\x38\x34\xb0\x1c\x23\xfb\x05\x17\xf9\xc6\x61\xdf\x6e\x53\xf8\xbb\x59\x64\xf4\x72\xd2\x99\xd0\xae\xce\xcb\x47\xd8\x28\x2c\x20\x61\xbc\x75\x60\x7b\x10\x84\xbf\x1f\x70\x97\x58\xbc\xf7\x9d\x4c\xb2\x13\x8f\xc4\x83\xc7\xc3\x7e\x17\x6b\x8a\x23\x01\xbb\x41\x7e\xdd\x4e\x6e\xf9\xde\x8a\xd4\x89\xff\xcc\xcb\x4d\x86\x03\x53\x84\x4b\x98\x50\x4d\x85\x61\xbf\xd9\x76\xb3\xd1\x42\xb9\x38\x4a\xe0\x75\xa4\x3c\x7a\x1f\x77\x5e\xa0\x65\xe5\xac\xfd\x65\x27\x81\xe2\x4a\xa9\xd7\x83\x4f\x32\x92\x5b\xc8\xb3\x25\x93\x87\x3d\xf4\x0c\x51\x35\xd8\x62\x41\x83\xd8\x0c\xdf\xb2\x9a\x17\x13\xa2\xef\x5a\x1a\xff\xa4\xba\x63\x9a\x2d\x64\xdd\x55\x3b\x84\xd8\xd4\x57\x78\x8c\x01\x09\xce\xff\x61\x13\x83\x2d\x4e\xbd\xa0\x55\x13\xb2\x82\xd1\xe8\x2f\x4b\xc1\x0f\x81\xa7\x58\xc0\xc8\xc9\xd8\xe7\x9a\x61\x6c\xc5\x42\xa4\xa9\x8d\x19\xe0\xc0\x3f\xae\x75\x7e\x95\x88\x14\x45\x69\x56\xc4\x3f\xe3\xaf\x85\x36\x35\x14\x01\x12\x8b\x50\xf0\x45\x00\x01\x05\xc9\x49\x53\xac\xb3\x18\xa6\x69\x6c\x5a\x54\x42\xbb\x68\xf7\x11\x39\xf6\x45\xa7\xb0\x3b\xe9\x01\x7e\x92\x9d\xec\x4e\x06\x8c\xcd\xc8\x5e\x32\x51\xb9\x93\xc8\xc4\x5b\x3a\xac\xe2\x32\x41\x3f\xa6\x56\xfd\xd9\xc0\x4b\x5c\x4b\x24\x87\x60\x4a\xb0\x99\x40\x15\x5d\xc6\x56\x83\xed\xfb\x1a\x31\x60\x5a\x63\x0f\x89\x28\x22\x93\x86\x79\x9c\xc9\xea\x29\xee\xc6\x58\x3d\xd5\xea\xd8\x17\xca\x7a\x49\x3c\x18\x18\x91\x81\xf1\x82\x42\x5e\x5d\xa8\x69\x9b\x19\x64\xa9\x29\xc3\x3c\x2e\x40\x7a\xc4\xca\xf9\x91\x7d\xad\x72\xec\xdd\xa7\xbb\x71\x99\xe5\x85\x2d\x7b\xb9\x52\x75\x7d\x29\x98\x30\x77\xa9\x52\xc3\x13\x30\x0a\xd3\xb0\x1b\x87\xe9\xa3\xd4\x3d\xdf\x08\x26\x2b\xc1\x2e\x25\xf8\xb6\xdd\xcc\x91\xfd\xbf\x6a\x9f\x8a\x6c\xf8\xcc\xf6\xbe\x1a\x78\xd2\xda\xab\x56\xe8\x08\x41\x86\x74\x85\x81\x4a\xf8\x57\xa8\xdd\xe9\xad\xdb\xd9\x8f\x22\xea\x4f\x2a\xaf\x2b\x72\x9c\xf5\xbe\x46\xbd\x7e\x8b\x30\xbe\xb0\x69\x54\x31\xfa\xc7\x68\x45\x31\xc5\x63\xf6\xed\x39\x92\xce\x5e\xbd\xb4\x73\x13\xdd\x3d\xc6\x57\x1f\x45\x90\xe3\xd8\x4c\xf5\xed\x00\xcc\xb6\x11\x90\xef\xdd\x0d\xac\xaa\xba\xc4\xb6\x0e\xed\xba\xff\xf7\x3f\xdf\xf1\x04\xf5\x63\xf6\xa2\x30\x5c\x45\x0f\x4d\xf9\x02\xbe\x1a\xf6\xc4\xb8\x29\x42\x03\x14\x60\x86\xc8\xe4\xd0\x5b\x44\x7e\x2c\x6d\x07\xc4\x4b\xd7\x1b\x30\x6f\x71\x1a\x25\x71\xaa\xb3\x07\x48\x94\x6b\x2c\xb3\x79\x8d\xa0\x14\xa2\x01\x22\xd2\x32\xb8\x2a\x8c\x2a\xe7\x8f\xed\xf6\x9f\xb3\xd5\x04\x38\xc5\xb6\x62\x09\x69\x4d\xc8\xf8\x0b\xa4\x12\x5f\x8c\x86\xc3\x2c\x2f\x4d\x6e\x79\x45\xcf\x7a\x06\x82\x0b\x97\xdf\x24\x36\x05\x9c\x8f\x37\x6e\xd1\x74\x29\xe3\xa2\x18\x99\x82\xda\x0a\x1f\x07\x04\x68\xf8\xd8\x51\x35\x86\xc9\x68\x30\x30\x4e\x85\x08\x5f\x2e\x68\x58\x39\xe9\x34\x2c\x49\xb9\xc9\x47\x1a\xf7\x90\x0a\x98\x66\xe6\x27\x27\x5a\xcc\x89\x29\x1f\x61\x3e\x22\xd1\xf8\x7f\x33\xf0\x48\xb4\x07\xc4\xb7\x7c\x40\x0a\xd7\x6b\x76\x08\x22\x88\xbd\x56\x79\x35\xe8\xeb\xaf\x61\xa2\x29\xd1\x7b\x42\xbb\xd3\x0e\x34\xe9\xda\xda\xd7\x81\xee\xf2\x43\xec\x3d\x57\x66\xd1\x52\x3f\x4b\xba\x26\x87\x79\x38\x76\xe8\xc3\x64\x0b\x75\x78\xc2\xb8\xa2\x67\x71\xe5\xce\xb1\xf5\x86\xfd\x43\x39\x66\xd5\xf2\xd8\x7c\x22\x8d\xa1\xc1\x54\x70\x25\xcc\x17\xc3\xdc\x90\xbe\xeb\x09\x3c\x21\x39\x71\x72\x75\x83\x38\x8d\xa3\x6c\x30\x1c\x39\x68\x03\x36\x7c\xf4\xd7\xe4\x98\xe0\xa7\xc5\x8a\x49\x92\x99\x09\x3a\xf9\xfe\x5d\x9e\xf0\xbe\x57\xab\x63\xa7\x49\xdf\x77\x94\xda\x7a\xaf\x42\x06\x5e\x70\x66\x94\x64\x40\x70\x64\x4a\x69\x62\xcf\xc1\x76\x1e\x2f\xb4\x3c\x6c\x15\x30\x1f\x39\x9e\xda\xd2\x76\xef\x6e\xf7\xb3\xa1\xdb\xc8\x11\x58\xbc\x1e\xf8\x20\xe3\xf5\x26\x6e\xe8\x30\x4b\xe2\xd2\xcd\x3a\x95\x7b\xf7\xd4\x9b\x35\x52\x18\xbc\x41\x30\x24\xb3\xb8\x68\xa2\x32\x5e\x46\x4a\xca\x8a\x40\x88\x5c\xde\x66\x72\x1d\xba\x9a\x68\x06\x5d\xa2\x3c\xec\x5d\x84\x37\xc0\x57\xde\x09\x3c\x3e\xb4\x88\xc2\xb4\x1b\x26\x98\x69\xd2\xb9\xad\xb8\x8b\xdb\xe4\xa1\x00\x57\x0f\x47\x7e\xbc\xc4\xd8\x83\x69\x7b\xaf\xbd\xf3\x16\x66\x98\xac\xce\x7a\x94\xc4\x6b\xd5\x66\xfb\xbc\x3d\x13\xc2\x47\x78\x53\xad\x8e\x5f\xb4\x96\xc3\xd1\xcb\xfd\x30\x11\xd9\x66\xe5\xc3\xd9\x6f\x91\x13\x07\x1b\x19\xe6\xa6\x7e\x64\xa3\x5c\x7a\xac\x4e\x32\xce\x55\x0b\xcf\x4f\x0d\x81\x17\x5f\x6c\x0f\x8c\xd8\x22\x3b\x75\x42\xe7\x46\x74\xde\x83\x77\x43\x69\x8a\xab\x84\x0c\x09\xe1\x9e\x9b\xca\xbd\xbf\xd2\xee\x66\x03\x53\xa8\xc8\xbb\x50\xe6\x49\x0f\x77\xad\xf2\xf3\x6e\x38\x2a\x1f\x25\x88\xb8\xa8\x8c\x8b\x33\x39\xa6\x94\xae\x40\x88\xe7\x5d\xef\xd8\x61\xbb\xde\x21\xcd\xe8\x2d\x58\x04\x55\xc4\xcc\x73\x65\x5e\x21\x8b\xae\x59\x30\x6d\x10\xf4\xdf\x40\xd5\x42\x4e\xec\x48\x52\xdf\x37\x0f\xa1\x1b\x8e\xf2\xa8\x1f\x16\x62\x76\x8a\xb4\x5a\xa0\xca\x72\x32\x7e\xc4\x83\x5a\xd3\x4f\xd9\xff\xc1\x15\xfd\xb8\xf2\xa9\x17\xbe\xde\xf1\xad\x5d\xb9\x01\x1e\x38\x62\x79\x8b\xac\xd7\x6d\x1e\x7b\x7d\xbe\x85\x07\xa0\x00\x3f\x3b\x0d\x51\xec\x7a\x83\x6d\xe3\x1e\x01\x75\xc8\xc1\x46\xdc\x92\x0c\xe7\x72\xec\xb3\xaf\x22\x16\xc1\xcf\x5f\x20\x68\xea\xa3\xa8\xfb\x20\xd2\xba\xd3\x54\x82\x1c\x84\xe5\xc8\xd3\xbd\x71\x63\xdf\xb3\x37\x23\xc7\xe4\xc2\x33\x34\x79\x64\xd2\x32\xec\x99\x87\x5a\xbf\xa2\x8e\xb6\xd8\xe3\x45\xbf\x88\xbd\xe4\xef\xe3\x9e\x18\x5c\x8f\x62\xf2\xe5\xaa\x8e\xf0\x5c\x8f\x7b\x9f\x93\xa4\xbe\x16\xcc\x1c\xf8\x7b\xbf\x2a\xc1\xc7\x75\x4a\x48\xff\xab\xd2\xcc\x90\xc0\xe5\x6d\x96\x1d\xb9\x3f\x91\x19\xbe\xd6\x68\x59\x97\x1a\xdd\x5c\x35\x90\xf3\xa5\xcd\x8b\x24\xb4\x9c\x9a\x95\x22\x31\x65\x69\xf2\x19\x46\xa9\xde\x25\x4a\x8c\x80\x9f\x31\x56\x67\xc6\x4f\x4c\x08\x18\x9a\x7c\x9b\xaf\xba\xa0\xd0\x44\xe1\x81\x2f\x34\x91\xaa\xe5\x69\x0a\x5a\x4e\xd0\x18\xed\xc5\x49\x62\x1c\x9d\x44\x15\x3f\xed\x6f\xcb\xc9\x14\xc2\x7c\x7e\xbe\x3d\x08\x7b\x71\x01\xaf\x31\xb1\xc2\x69\x02\xc8\x50\xf9\x26\x8c\xbb\x0f\x51\xbf\x76\xeb\xd8\xa3\x0c\x4e\x11\x66\xe4\xdd\x80\x30\x0a\x8c\x36\xdb\xb0\x43\x1a\xb9\xe3\x0d\x3b\x22\xe5\x98\x25\x2c\xbf\xed\x96\x9e\x97\xc2\xf4\xcb\x3b\xb6\x7e\x4e\x0a\x49\x1f\xda\xc9\x84\xb4\xef\x41\xe0\x89\xc4\x67\x49\xda\xe8\x1c\xde\x35\xea\xe1\xe0\xaf\x62\x32\xfd\x79\x45\x31\xcc\x96\x06\x93\xc4\x7d\xb6\x90\xbc\x38\x4a\x5a\x44\xa2\x38\x43\x4b\xf3\x99\xa6\x5d\x71\x30\x2a\xa2\x44\x80\x24\x2a\xed\x43\xbd\xc4\xd3\xb4\xc3\xdd\xf1\x62\x42\x49\x38\x14\xd6\x84\xe6\x90\x9c\x5c\x36\x5d\x9b\x59\x8e\xbb\x2a\x54\x84\x09\x7d\x8c\xf8\x1d\xc7\x68\x50\x3a\xa5\xa6\x02\x5a\xc7\x28\x19\x40\xd6\x5d\x8e\x2b\xd5\x3e\xb1\x56\x48\xc3\x3c\xb6\x56\x9d\x2d\x8f\xba\x3f\x4a\x23\xf8\x68\x23\x83\x3e\x0f\xd3\xa5\xcd\xe6\x95\x7e\x93\x9f\x16\xfb\xdd\x3b\xdf\x36\x45\x19\x2e\x24\x71\xd1\x77\x8a\x4b\xe2\xbe\x42\x65\xa8\x75\x46\x2e\x47\x7d\x93\x2e\x84\xa3\x81\x4c\x2e\x95\xd3\xf2\xd8\x1c\xa9\x10\x60\x7f\xbd\x56\x7d\x86\x3a\x1a\x49\x12\x65\xcb\x86\x84\xd9\x9b\x76\x44\x5f\x48\x4c\xe2\x05\x93\x87\xc9\xc3\xf5\xa0\x42\xae\x73\x17\xfd\x5d\x15\x02\xa3\xe0\x6d\xb6\x33\x49\x33\xa8\xd3\x28\xd5\x0e\xb3\xaf\x5e\xfe\x6c\xcc\x12\x88\x81\x0f\x2f\x91\x9f\x61\x27\x13\xad\x1b\xd5\x49\xdc\xbc\x18\xc1\xfe\x24\x11\x19\x2d\xb7\x34\xfe\xaa\xc3\x4e\x52\x73\x22\x8c\x22\x33\x2c\xb7\x93\x56\x31\xd0\x7d\x2a\x6b\xe5\x4b\xff\xa2\xa4\x86\x1a\xda\x7a\x35\x19\x00\xb8\xbe\xdf\x91\x06\x8d\xf2\x03\x6d\xcb\x45\x89\x87\x61\x89\xa6\xa2\x6a\xcf\xd9\x5b\xc5\x2b\x14\x65\x2c\x55\xfc\x74\xf4\x8d\x6c\x60\xf2\xc2\x94\x13\x80\xdb\xf3\x0c\xb8\x3d\x5f\xe7\xb4\xee\x7d\x14\x0a\xcd\x55\x52\x34\xad\x65\x1f\x7a\x77\xf1\x3c\x1b\xee\xf0\x58\xf5\xcb\x04\x5c\x79\x97\x50\x13\x8f\x77\x48\x03\x4f\x00\x54\x48\x66\x50\x6e\x53\x2f\x3c\x32\xbb\xba\xcf\x06\x99\x83\x61\x04\xb3\x42\x2c\x38\xdf\xb6\x0f\x56\x8e\xa9\x46\x53\x66\x45\x51\xef\x8d\x60\xff\xe2\xd7\x8e\x43\x3b\x47\x4e\xa8\x03\x19\x65\x69\x6a\xa2\x52\xa2\x8a\x09\x6b\x55\x39\x99\x5a\x6f\xac\xd9\x46\x92\x15\x66\x3b\xf1\x32\xd6\xc9\xd2\x0a\x91\x24\x4a\xaf\xe0\xf9\xe1\xb9\xfc\x08\x2f\x19\xb3\x06\x2d\x60\x31\x50\x99\x8a\xdf\xf6\x1c\xac\x67\x8f\x77\x56\xd0\x22\x4f\xcb\x71\xef\x7f\x4a\x1b\x42\x14\x16\xfd\x47\x7c\xa7\xf0\x4f\xb0\x3d\xe3\xc9\xbc\xb5\xc9\x62\x62\xb7\x4a\x24\x5f\x08\x88\x27\x05\x8e\x3e\xe2\xd9\xd6\x98\x70\xdd\x44\x02\x9a\x19\x53\x4d\x7f\xcd\x4a\xb2\x38\x94\x9b\xa3\x07\xde\xa5\xe9\xdc\x1b\xa5\xa9\x4d\x11\xbd\x6d\x4c\x40\xf4\x93\xf5\x26\x01\xf3\x62\xb4\x30\xcc\x4c\x1a\xb6\x26\x8a\x24\xfe\xa5\x1f\xf5\xf0\xfa\x3c\xab\x57\xe3\xae\x6d\x1d\x23\xe5\xfb\x3d\xdc\xab\x28\x0f\xd9\x51\xa8\x26\x9c\xf6\xd2\x45\x00\x71\x6a\x4a\xd9\xbc\x3c\x5c\x5c\x8c\xf3\x81\x7b\xe2\x0e\x9e\x32\xef\x61\xfe\x9f\x9e\x86\x9e\xce\xcf\x1f\xf8\x0c\x31\x60\xaf\x23\x7f\x46\x11\xb9\x85\x3e\x3d\x5e\xca\x5d\xdc\x3a\x60\x20\x3f\xb0\x4f\x4f\x47\x9b\xcf\x86\xaf\x49\x58\xe4\x66\xc2\x26\x35\x60\xb2\xa6\xb4\xa0\x6c\xaf\x25\x7d\x9a\x14\x7a\x2f\x5b\x24\x8a\x03\xe9\x39\x07\x1b\x41\xf2\x61\xc5\xf9\x7d\x2c\xa6\x88\x64\xa5\xd7\x46\xc3\xd4\xab\xdb\xd6\x03\x03\x37\xf7\x46\x40\x70\xa8\x3b\x55\xeb\xab\xbf\xe6\x03\xe1\x7a\x29\xc3\x90\xf9\x33\xa7\x42\x5a\x94\x59\xae\x20\x26\x8c\x94\xab\x24\xbc\x71\xb4\x22\x4d\xb8\x93\xd5\xdf\xfa\x84\xc2\xf7\x30\xee\xf5\x56\x17\xc2\xc8\xcf\x05\xc7\x4f\x75\x68\xcf\xe3\x44\x52\x5c\x8a\xbb\x69\x68\xfb\x9b\x78\x94\x82\x70\xe1\x00\xf0\xdc\xd4\x00\xd8\xbd\xbb\x6d\x92\x78\x10\xa7\xa1\x97\xb3\x95\x1e\x27\x61\x1d\x8e\xd1\x62\x94\x98\x30\x4f\x5b\xe4\xdc\x40\xfe\x10\x93\x66\x53\xb9\xb1\x02\x50\x89\x29\x0a\x28\x5c\xe2\xc1\x1e\x26\x1b\xf1\xc3\x81\x27\xc6\x15\x7d\x5b\x7c\x70\x5f\x76\x82\xac\x52\x6f\xb2\x97\xda\xda\x74\x86\xfc\xdc\x81\xb6\xcf\x0a\x04\x44\x4b\x76\x71\xb7\xa6\xbc\x99\xbe\x52\xcf\xa2\xc8\x74\x47\x39\x42\x4f\x07\x47\x5a\x27\x17\xb3\x75\x2a\xe1\x9b\xc1\x30\xce\x61\x7f\x83\xa6\x99\x40\x87\xa4\x94\x34\xa1\xd5\x46\x44\xe3\x85\x51\x61\xec\x3c\x75\x4e\x6f\x8e\x1a\x80\xe6\x8f\x0b\x5e\xbf\xf6\xbc\x92\x83\x1b\x44\x20\x20\xf2\xba\x6c\xd2\x7a\x54\x4d\xc4\x7a\x1e\xda\x77\x86\x8d\xec\xa6\x81\xe8\x96\x3d\xb2\x1c\x1b\x00\xd1\x1d\x97\xc7\x89\xef\x9c\x9b\x28\xc0\x2d\xc5\xa1\x6d\x72\xa0\x81\xb4\x15\xdc\x3b\xb7\x65\xb9\x69\x7b\x85\x74\x1f\x7a\x61\xde\x35\xe9\x76\xfb\xa6\xa5\x29\x8c\xcb\x13\x71\x7c\x92\x1b\x7f\x9d\x83\xe1\x8f\xc9\x47\xec\x12\x32\x43\xed\x29\x37\xc8\x6e\x5a\x01\x7d\xdf\xd2\x51\xf6\x99\xa7\x61\xad\x39\xc8\xd2\x62\xdc\xeb\x97\x42\x42\xc5\x3b\x13\x05\x05\x75\x53\xac\x2f\x48\x7f\xd7\x67\x6f\xab\x89\xd9\x46\xb8\xfb\x9d\x96\x90\xe8\x6e\xdd\x0d\xcf\x0f\xec\x2b\x43\xee\xf4\xa1\x47\xdb\xff\x17\xcf\x74\xfe\xf6\xa6\xab\xfe\x72\xdb\xa4\x26\xef\xc5\xc6\x8a\xa2\x2d\x95\xb1\x59\x30\xdd\x3c\x7e\x69\xb1\xc5\xd6\x81\xe7\xb9\x5e\x74\x9e\xf8\x46\x91\x91\xf8\x1e\x59\xe7\x29\x92\xa1\xb9\x3d\xc1\xcb\xf6\xa1\x6b\xd9\x37\x59\x1e\x17\xa0\x07\x2b\x63\xf0\x76\x40\xf4\xc1\xdb\x9b\x29\x69\x5f\xac\x77\xf7\x87\xeb\xc5\x19\x53\xe6\x44\xa0\x24\x98\xbd\x0a\x17\xf9\x1e\x59\x30\x7d\x14\x90\x66\xee\x3a\x48\x42\x76\xc1\x54\x4f\x56\x7b\xc5\x28\x97\x7d\x84\x99\x82\x2f\xf9\x47\x95\x4f\x35\xae\x52\xe9\x31\x0d\x97\xd5\x20\x4c\xf9\x49\xf6\x72\x95\xa0\x44\x1c\xf9\x7e\x6c\x16\xb7\xe3\xd1\xf1\x9c\xc5\x77\xa2\x24\xac\x4d\xa5\x96\x73\x4e\x16\xe9\x50\x31\xaf\xc0\x77\x23\x1e\x99\xe9\xf8\xb8\x2f\x0a\xf3\xb2\xd5\xda\x3b\xbf\x71\xad\x6a\xed\xdf\xb7\x31\xed\x96\x79\x68\x57\x1d\x8d\x85\x71\xae\x19\x3a\xb6\xa5\xd6\xd8\x73\x96\x5b\x1d\xd7\x96\xcd\xf2\xd8\xf4\x84\xb5\x86\x49\x7f\x2f\x20\x68\xd6\x3d\xe2\x04\x88\x5e\x68\xb1\xcd\x13\x1c\x04\x32\xe9\x86\x47\x3d\xb1\x00\xd0\xb9\x45\x74\xf2\x3f\xaa\x48\x16\x6e\x83\x74\x8e\xea\xf9\x68\xe9\x4a\xa8\x2e\x6d\x05\xfa\x8f\x69\xf2\x08\x87\xee\x91\x34\xe2\xc3\x88\x74\xf0\xfb\xb7\xaa\x87\x1d\x7f\xbe\x7c\xc8\xc3\x83\x44\x9e\x1f\x5d\x8c\x6d\x63\x12\x8a\x04\x5a\x11\x79\x3b\xe4\xfd\xb0\xd3\xef\xc0\xd7\x22\x8f\xfd\xff\x23\x18\xc6\xeb\xfa\x74\x87\xb6\xdc\xad\xe4\xdf\xb7\xff\xab\x7b\xb6\x53\x0d\xe5\x71\x0b\x8d\x9c\xf0\xbd\xc1\x40\x7c\xa4\x43\x5e\x08\xf7\xf1\xc4\x9c\x92\xf2\xdc\x9c\xec\xec\xaf\xbb\xad\xd9\xa4\xdd\x51\x8e\x25\x19\x61\xff\xad\x80\x2c\xf1\xde\x9f\x60\x07\x78\xf6\xe0\xab\xc4\xef\x5f\x30\x49\x6c\x96\x4d\xb1\xdd\xae\x89\xc8\xee\xdf\x9b\xf0\xf3\xaa\xa7\x8c\xfc\x3b\x1e\x15\xb2\x9b\x23\x54\xc6\x39\x8e\x4e\xa4\xfc\x87\xab\xa3\xd6\x39\xe3\x82\x95\x54\xb6\x24\x78\x54\x92\xff\xd4\x66\x5c\x78\x8b\x27\x2a\x96\x9d\xb5\xb7\x8e\x4d\xd1\x9a\x7a\x3a\x94\x4b\x5e\x2e\x66\x49\x9c\x3d\xe4\x2b\x1f\xb0\x1c\x54\x5b\x63\x32\x0e\x5a\xc3\xb7\x60\x1f\xbb\x8e\x87\xe1\x3c\xbc\xf7\xef\xf2\xe8\x84\xfa\x65\xb8\x34\xcd\xd9\xf0\x9f\x0d\x1e\x63\xc7\x92\xfc\x33\x76\x38\x88\x4d\x19\x96\x5b\x54\x34\xef\x05\xad\x2f\x7c\x41\xe2\x10\x51\x11\x07\x16\xe5\x2f\x88\xcb\x7f\xd2\x8e\x45\x2c\xff\x3f\x62\xed\xd2\x1b\x95\x97\x93\x39\x61\x85\x38\x36\x2e\x49\x49\x52\x0b\x0c\xf6\x9e\xf0\xc3\x77\x03\xb2\x46\x3c\x6a\x83\x42\xa9\xfe\x8d\xfd\xe2\xd9\x42\x21\x16\x2b\xfb\x1a\xd2\x24\x31\x88\xb4\x41\x2a\xd6\x96\x0f\x6d\xe1\x02\x61\xe0\x5d\x2c\x64\xb2\x6c\xa0\xd2\x89\x6c\xed\x66\xe5\xd5\x0d\x66\xc6\x75\xaa\x81\x58\x60\x4b\x47\xa7\xd0\x4b\x9f\x47\x6c\x83\x30\xf8\x0e\x89\x27\x0a\x60\x05\xcd\xd8\xf3\x5e\xdb\x37\xcb\x9c\x66\x0d\x32\x00\x80\x9a\x94\x52\x4c\xcd\xbc\x26\x41\x8d\x41\x98\x2f\x75\xb3\x95\x54\xea\x3c\x62\xe6\x46\x4d\x8c\x35\x6a\x33\x16\xc3\x24\x2e\x0b\xbb\xe1\xa3\x8c\x85\x96\xb2\xcb\xd7\x5c\x93\xed\x63\xea\x38\xf6\xad\x3a\x74\xaf\xaf\x78\x59\xa7\xf3\xed\x5e\xd4\xbb\x88\xa7\xf1\x88\xae\xbb\xa4\xb9\x58\x8a\x53\x2b\x74\xaa\x32\x67\xd4\x5f\x58\xa7\x40\x0a\x4a\x41\xa2\x83\x44\x46\xe0\x96\x12\xb8\x62\x5d\x42\x21\x17\x83\x38\x62\xc6\xd6\xb1\x51\xae\xde\x3a\x26\xb5\xad\x37\xa7\x9e\xcf\xfc\x7c\xbb\x9b\x75\xbb\x10\x0e\xf5\x70\x9c\xe3\xe4\xe5\x7a\x9c\xbc\xbb\xfa\x71\x1d\xd0\xaf\x5a\x21\x4c\x14\xf4\xb1\xb3\xa8\xa5\x04\x49\x71\xbf\x61\xe7\xaa\x1c\x07\x54\x62\xb3\x7a\x64\x5e\xa9\xd6\x0c\xd2\x78\x31\x8e\x50\xf8\x22\x34\x83\x20\x24\x54\xd3\xfd\x11\x8f\x7d\x28\xec\xf0\x99\x20\x47\xb1\x7b\x22\x16\xda\x2b\x53\x21\xd3\xdc\xdc\x01\x2b\x25\x91\x0a\xc8\x74\x1f\x5b\x8b\x1e\x70\xd6\xa2\x4f\xb3\xd0\xbc\x28\xb7\x3e\x46\xb1\x38\x16\x09\x67\x3e\x54\x4f\x6b\x2d\x4d\x79\x2e\xcd\x6b\xc1\x84\x90\x3d\x15\xe4\xfe\xc4\x8e\x0a\x90\x2f\xdf\xc2\x2c\x52\xe9\x32\x7b\x27\xd8\xca\x3e\xb0\xf3\x4e\x94\x7d\xed\xaa\x80\xf8\xe2\x7a\xe0\x05\x95\x45\xc3\x1b\x71\x69\x13\xd9\x6d\xbe\xbd\x90\x25\x45\x69\xf2\x96\xb7\xfc\xff\xc8\x4e\x62\x39\x26\x2c\xc6\x62\x18\x27\xa3\x5c\xb0\x35\xe0\x09\x1f\xb3\x61\x9d\x1c\x37\x6d\xff\x45\x36\x30\x65\x3c\x30\x2d\x86\x50\x56\xde\x44\xff\x22\x35\x12\x07\xd9\x72\x2c\x55\xf1\x43\x93\xde\xd3\x9a\x9c\x35\xe1\x03\x7b\x59\x62\x7d\xf2\xb4\xa2\xf5\x1e\x99\x29\xff\x13\x7b\x79\x28\x4b\xfc\x15\x46\x81\xfa\xd3\x7d\x12\x0b\x29\x35\x2b\xf5\x86\x40\x2d\xb4\xd3\xdc\x42\x3b\xdd\x50\xe6\x11\x6c\x04\xb2\x36\xac\x83\x57\xf1\xd2\xe5\x84\x8d\xc8\xb3\x3c\x4b\x43\x62\x6f\x8d\x2b\x82\x84\x8f\x03\x85\x0d\x2c\x98\x41\x16\xfa\xc0\x5d\x30\x09\x13\xf8\x04\x4e\x40\x0a\x53\x3e\x69\x37\x58\x4c\x85\x9b\x01\x03\xdc\x65\x38\x2a\xac\xde\x2f\x13\x5b\x3b\xad\xe7\x95\xca\xfa\xef\xa9\x82\x71\x85\x2d\xe7\xa5\x42\x8e\xda\xe1\x84\x39\xcd\x0f\x31\x34\x51\xe2\xbf\x4f\xdb\x9f\xe8\x73\x21\x65\x3f\x8a\xbd\x5b\x4e\x2a\xea\x1c\x1c\xb5\x1b\x23\x5e\xc8\x59\x6a\x12\x42\xdc\x53\x85\x3e\x9f\x60\x79\x10\x87\xa3\xd0\xe4\x8f\x9a\x69\xa7\x5d\xc5\xde\x2e\x79\x33\x13\xb2\x70\x24\x17\x67\x3f\x82\x4d\x73\xba\xb4\xb4\xe7\x60\x7b\x94\x94\xf1\xc0\x96\x4c\xe7\xe6\xdc\x0e\xec\x03\xc0\x0b\xac\x2b\x72\xdc\xcb\xda\x86\xa3\xc2\x58\x7d\x08\x2c\x67\xac\xaa\x2c\x82\xeb\xf8\x4d\xd1\x9a\x55\xf7\xcc\x96\x53\x43\x5e\xab\xd8\xf0\xd7\x01\xc5\xfb\xd9\xa8\x30\xfd\x2c\xe9\xca\xde\xa4\xc2\xe2\xbe\x73\x74\x96\x7a\xb4\xd9\x4a\xfa\x38\x69\xb0\xff\xc0\x3e\x7c\xa9\x00\x69\x70\x57\x2f\x15\x58\x82\xe0\x35\xa3\xa2\x4c\x1e\xd6\xf8\x63\x0c\x00\xa7\xec\xed\x2b\xb0\xb7\x82\x7a\xc5\xd6\x6a\x59\xeb\xd0\xae\x8d\xed\xe3\xfa\xcd\x4d\x54\x88\xb1\x6b\x5f\x01\xea\x4a\x0d\x3b\xeb\xd7\x81\xf5\x78\xd6\x31\x5c\x87\x61\x32\x30\x79\xd6\x62\x5b\x38\xd1\x6a\x94\x93\xc0\x03\x5d\x0b\x13\xe5\x16\x6d\x26\xb0\x1b\xaa\x0f\x6b\x24\x73\x71\xaa\x72\xb1\x7f\xd7\x81\x76\x9c\x2e\x26\x23\x93\x46\x3a\x76\x34\x69\xac\xbf\x44\xd3\x85\x27\x1c\x06\x24\xea\xc7\xbd\x30\xdd\xd6\x22\x9d\x5d\xcf\x86\x82\xeb\xa0\x83\xb5\xfb\x05\x65\x87\x30\x8c\xb0\xf1\x1f\xaf\xbc\x27\x7b\xd6\x9f\xf1\xed\x39\xe8\x2d\xb8\xa5\xed\x1b\x5f\x77\x8c\x9a\x86\x1a\x67\x92\x2d\x2c\xac\xba\x25\xa0\x19\x8b\xe2\x5a\x22\x61\x21\xc6\xdb\x88\x82\x61\xad\x8f\x46\xfd\xff\x6d\x57\x41\xa5\x81\x4f\xeb\x04\x5b\xd6\xe4\x0e\xaf\x04\xff\x73\x1d\x2f\xe9\x76\xd1\xba\x7f\x4b\xc6\xc1\x94\x74\x74\x76\x10\x86\x48\xcb\x96\x81\xe5\x0a\xa5\x6d\x92\xd2\x2b\xca\x30\x77\x13\x59\xbf\xcd\x7e\x83\x4a\x57\x78\x65\xf4\x78\x30\xcc\xb3\xa1\xc9\x93\x55\x9b\xea\x81\x29\xb7\x75\x4c\xf0\xc7\x5b\x18\x66\xca\xb1\xf4\x31\x89\x2c\x0e\x2a\x62\x42\xdf\x99\xbe\x34\x4a\xed\x9e\xcd\xd4\xa5\x93\x12\x20\x3b\xad\xe4\x79\xf2\x12\x27\xbd\xce\x5e\x9a\x49\x65\x4b\xd7\xa0\xfa\xa1\x60\x45\xfc\xd3\xca\x33\x6c\xd6\x02\x6f\x9a\x32\x08\xd3\x78\x38\x4a\xc2\xd2\x14\xd2\x6e\xc0\x9b\xf9\x2b\xe8\xde\xc8\xc9\xd4\xc3\x3a\xf8\x9c\x35\xe8\x4b\xc2\x18\x25\x44\x15\xce\xf2\xb0\xd9\xf5\x89\x5d\x60\x10\x46\x33\x7e\x7c\xca\x42\xa5\x6a\x98\xad\x5f\x39\xe0\x00\xad\x0d\x6d\x84\x30\x49\x4c\x4f\x5f\x0a\x5a\x6e\x60\x66\xca\xf1\x78\xba\xf5\x6e\xdd\xab\xa4\xad\x88\x60\xe5\x2c\xab\xe8\x9f\xa5\x12\x7f\x38\xc8\x46\x69\x59\xec\xf0\x50\xad\xc3\x76\x41\x50\xdd\x40\xbb\x77\xe1\xb9\xdd\xb0\xe3\x07\x4b\xc8\xdb\xd6\x05\x53\xfe\xdd\xae\x5b\xf2\x01\x26\xf2\x9c\xa1\xaa\xee\x62\x1e\xf6\xe2\x24\x2e\x81\x80\x56\xb8\x24\x3f\xaf\x7a\x2a\x80\x77\x71\x7f\x42\x4a\x29\x8a\x0b\x6b\x53\x6a\xaf\x44\xf5\x93\x7c\xd7\xfa\xfb\x24\x59\xf5\x2e\xb5\x54\x52\xd5\xa0\x40\x74\xfe\xbd\x8a\x34\xf1\xbe\x47\x0e\x12\x2b\x7d\x63\xbe\x55\x67\x28\x1e\xfe\x24\xeb\x3d\xb6\x4f\xf4\x2e\xb0\x8a\xde\x70\x09\x6e\x6f\x64\xf2\x3c\x4e\x92\x50\xd6\x7e\xa7\xe6\x32\x3f\xaf\xc7\x53\x84\xef\xbd\xf3\xed\xe1\x7f\xf2\x1f\xe1\xef\x1d\xa9\xc8\x11\xbe\x9b\xdb\x54\xbd\x38\x57\xe1\x62\x44\x03\xb7\xc9\x78\xec\x76\x45\x9d\xbe\xf0\x5b\x90\x20\x77\xa9\x9f\x9b\x07\xe7\x9a\x2c\xad\x96\xc2\xf4\xa5\x78\xc6\xe3\x93\xaf\xd3\xe2\x70\x9d\x96\xa5\x6d\x9d\xcd\xf1\xd8\x8b\x2f\xb6\xbb\x71\x11\x0e\x87\x99\x18\xba\x3b\x17\x88\x35\x6c\x4e\xfa\x10\x37\xaf\x67\x7b\x0e\xb6\x87\xc9\x08\x40\x63\x04\xa6\x20\x7c\xe0\x2a\x2f\x93\xe9\xf8\x6b\x53\x9f\xfd\x4a\x7b\x29\xcd\x56\xd2\x16\xe9\x95\xfc\x30\xf0\xe5\xa8\x1f\xba\x74\x73\x21\xcc\x8d\x60\x30\x90\x2a\x8b\xcf\x84\x9c\x50\x7d\x34\xcf\x56\x1e\xf1\x59\xd7\xc7\x58\xac\x50\x91\x68\x59\xf2\x08\x52\x91\x7b\x28\x7d\xa8\x13\xb2\xfd\x32\x29\xfb\xd9\x35\xc5\xc6\x0e\x7f\xf2\x54\xc7\x17\x7f\x37\x26\x64\x34\xed\x16\x8d\x3d\x7f\x87\xc5\xec\x68\xf7\x85\x84\x0f\x6e\xb9\xcb\x8f\xfa\x71\x1e\x02\xf2\xe5\x04\x3a\x99\x27\xf8\x18\xe1\x5c\xd3\x55\x6b\x90\x27\x44\x9a\x80\xf5\x82\x7c\x3d\xce\xca\xc6\x0e\x4c\xbe\xbd\xe5\xf4\x28\xff\x12\x55\x05\xd5\xaa\xb0\xd7\x81\x41\x20\x48\x17\xdc\x86\xb6\xb2\xe4\x0c\x21\xa5\xea\xc6\x6c\x2e\xed\x1f\xda\xf5\x42\xdb\xbc\x6c\xed\xa7\x96\x81\x01\x45\x65\x1f\xaa\x80\x72\xec\x75\x68\xac\x8b\xbc\xb3\x1b\x59\x67\xaf\xa8\xf5\x86\x5c\xe2\x40\x7b\x38\x1a\x0c\xed\x4a\x2b\x64\x5a\x3c\x56\x65\xd6\x7a\xd8\xd8\x30\x82\x1d\x01\x82\x82\x7b\x01\xc9\xe0\x40\x70\x03\xc7\x17\xec\x1a\x27\xc7\x9f\x30\x50\xe1\xa2\xa5\x5d\x44\x66\xbc\x93\x5f\x50\x62\xd2\x16\xc9\x94\xff\x4c\x9e\x99\x5a\x36\xb8\xe0\xc5\x7a\xe7\xbb\xae\xbd\x94\xaf\x38\xfb\x7d\x3f\x60\x5a\x5a\x98\xf6\x8c\x35\x23\x43\xe6\x74\xb3\xf2\x08\x36\xe1\x8a\x29\x55\xc9\x7e\x05\x0a\x92\xe7\xf1\x8a\xc4\x09\x20\xa0\x97\x40\x77\xfe\x3f\x37\xf4\x6c\x0f\xb4\x57\xe2\xb4\x9b\xad\xc8\x8e\xa1\xec\x74\xfb\x3b\x72\x42\x0d\xf7\xdc\x44\xf9\x28\x2e\x4d\x77\xd6\x03\x69\xdf\x21\x11\x57\xd4\x61\x9d\x8f\x98\xd7\xc0\xac\x97\x21\x05\x59\x14\x45\x58\x14\xb6\x5b\x97\xa5\xc5\x2c\x71\x78\x3e\xaa\xc8\x9b\xa8\xd5\xf1\x98\x63\x11\xce\x57\x07\x2c\xb2\xa3\x1f\x2d\x58\x3e\xac\x2f\x5c\x75\x3c\xb6\x6b\x66\xfc\x28\xa9\xe5\x96\xb3\xdc\x52\xfc\xb8\xf2\x1d\x57\x60\x95\x35\x98\xa2\x56\xe3\xc7\xa4\x82\x18\xf5\xe3\xa4\x9b\x9b\xd4\x2e\x1b\x2a\x52\x57\x7f\x0e\x91\x1d\x6e\x5c\x62\x0c\xac\x1a\x08\x59\xe0\x56\xad\x45\x50\xfb\x58\xf1\x2e\xff\x84\xa2\x92\x53\xb8\x3f\x04\xf3\xa7\xc0\xc6\x51\x4e\xe1\x64\xfb\x69\xaf\x83\xd8\x7e\xa2\x62\xc7\x37\x47\x75\x20\x97\xcf\xda\x5c\x57\x71\xbc\xf5\x55\x23\xe6\x12\xf2\x31\x56\x22\xf8\x01\xe0\x7d\xb5\x3a\x8e\x37\x11\x46\x16\x7b\xea\x82\xed\xd3\x64\x98\xc6\xdc\xc1\x85\xb8\xd7\x33\x45\xd9\x9a\x70\xcd\xb2\x89\xa5\xc6\x8c\x9f\xa6\x1c\x7b\x30\x34\x69\x61\xdf\xfa\xac\xbd\x04\xd4\xd4\xce\x22\x93\xc5\x97\x5f\x26\x16\xa0\x94\x68\xe4\x3f\xa6\x76\xc8\xf9\xf9\x76\x61\x6c\xda\x81\xf7\x8a\x51\x73\x96\xb1\xbd\x67\xa9\x9e\xbc\x62\xba\xa9\x29\xba\xe1\xea\xf6\x3a\x55\xc2\x22\x7e\x9a\xaa\x4e\x58\x21\xb0\x35\xb5\x50\xd0\x77\xb6\x1a\xfb\x75\x71\xbd\x6c\x5f\x00\xae\xe8\xa7\x13\x41\x5e\x18\x2d\x3d\x63\x67\x20\x62\xe1\x63\x34\x34\xb6\x8e\xed\x13\x51\x14\xaf\x0d\x65\x84\x06\x80\x82\x2d\x12\xba\x53\x76\x04\xe1\x1d\x5d\xa9\x88\x96\x7a\x59\x7c\xa4\xe4\xcf\x58\xb2\xfe\x12\x9e\x9d\xd6\xd0\xec\xad\xab\x86\x13\x9b\x74\xa0\x54\x8d\x38\xe6\x12\x65\x9a\x37\x48\xbe\xfb\x32\xd1\x37\x44\xeb\xc7\xe9\xfe\x3a\xa9\x8a\xad\x63\x3c\x6c\xc4\x6d\x37\x79\x5a\x1e\x23\x32\x74\x6e\x0a\x93\x24\x24\x10\x7b\x8d\xa6\xc7\xb5\xa9\x90\x64\xf7\x1e\x5b\x4e\x7c\xb9\xe5\xcb\xfb\x6b\xbc\x3e\xae\xb1\xe8\x40\x96\x18\x4b\xb5\xb6\x7f\x2c\x8e\x45\x01\xf5\x16\x59\x0b\x2f\x1e\x0c\x93\x58\x48\x6b\x5a\x73\xb6\x6f\x49\xb5\x24\x7d\x3a\xc6\x54\x37\xc4\xc5\x3b\x3d\xb0\x1f\x76\x4e\x3a\x5e\xeb\xe7\x87\x81\x72\x0f\x11\xaf\x96\xb0\xed\xcb\xa0\xf4\x5c\xab\xf4\x57\x11\x49\xa3\x66\x0d\x4c\x82\x13\xc9\x7a\x5e\x9b\x63\xb7\xa6\xe2\xff\x3a\x2b\x33\x2f\x0f\x8d\xd4\xbd\xf0\x93\x17\xd8\x3a\xeb\x02\x85\x34\xbf\xf4\x4b\xff\xb1\x8d\x7c\x1c\xf9\x72\xb7\x23\x62\xba\xaa\xf5\xa2\x15\x86\xf0\xf4\x9d\x35\x36\x24\x11\x46\x1e\x8a\x45\xf7\xa6\x8a\xb0\x16\x41\x99\xc4\xbd\x58\x48\x12\xf3\xde\xb8\xd1\xa9\x85\xbd\x32\xd1\x7f\x37\xdd\xe2\x61\x7b\xb1\xe8\x55\x1f\x93\x54\xce\x65\xaa\x8e\x9e\x72\xc5\x3e\x12\xcc\x9c\x4b\x24\x29\xf3\x7f\x06\xde\xae\xfd\xae\x5d\x2e\x55\x5d\x86\xdc\x6d\x8f\x61\xa4\xcb\x09\x62\x03\xa5\xf0\x35\x48\xe9\x2f\x8c\x72\x13\x8e\xa2\x5c\xc4\x9a\xa4\x00\x10\x70\xcb\x6c\x73\x48\x50\xdf\xf9\xaa\xa2\xfc\x91\x27\xa1\xae\x26\xc7\x84\x5e\x33\x2f\x97\xc6\xaa\xfc\x39\xb7\xe9\x57\xed\xf6\x2d\xc7\x64\xa0\x35\x0c\xa3\xa5\xb0\x27\x21\x34\x26\xd7\x91\x8a\x2c\x2b\x8e\x4c\x95\x04\xf6\xef\x6a\x83\x7d\xe4\xe5\x96\x40\x90\x55\xf9\xb3\xcd\x9b\xfb\xbe\xe7\x0e\xd8\x66\x5c\x12\x22\x3b\xc0\x43\xfd\x76\xe0\x75\x1d\xbe\x4d\x0d\x82\x30\x2d\xe3\x6f\x8e\xe4\xd5\x2a\xaa\x94\x40\xdf\xeb\xcc\x9d\xcf\x8d\x2d\xc5\xed\x39\x28\x5b\xed\x10\x23\x5c\x84\x0f\xed\x6b\x53\xf0\xaf\xd7\xe5\x5a\xc8\xd2\x6e\x01\xee\xb1\x98\x62\x60\x31\x44\xd1\xee\xae\xfd\x94\xf0\x74\xec\x1c\x53\x9b\xef\xfa\x51\x6b\x08\x5e\xdf\x07\x12\x45\x01\xb4\xa9\x1d\x3e\xd1\xbc\x40\x67\x40\x86\x78\xdd\x0e\x1b\x4c\xf7\x2d\x1d\x82\x06\x5d\x98\xaa\xed\xd4\x8f\xab\x80\xe3\xee\x0c\x51\x3c\x65\xc5\x50\x77\x06\x1f\x4d\xdd\x23\x7c\x43\xcf\xc0\x41\x0d\x7b\xc9\xad\x6a\x52\x76\xd7\xf1\x36\xb6\x74\x7c\x0b\x36\x0a\xf3\x34\x5e\x0e\x93\xd9\xfa\x56\xd1\xb9\xbd\x54\x11\x6c\xfa\x3c\xc1\xa6\xcf\x93\xf1\xee\x25\xf2\x92\x0f\x87\x43\x13\x26\x48\x60\x75\x3f\xfd\xfd\xca\xf3\x65\x40\x5b\xc6\x9e\xb2\x65\xdc\x54\x23\x0f\x57\x16\x47\x58\xa8\xa5\xc2\x49\x82\xf0\x17\x09\x09\x55\xa7\x12\x71\xd7\xe4\x76\xfb\xb6\xb7\x8a\x2d\xf6\xea\x84\xaa\x26\xc9\x57\xbc\x3a\x35\x1c\x9f\xb7\x4c\x66\x0b\x10\x40\x13\x07\xef\xf7\x0c\x96\x1d\x39\x99\x9a\xb2\x16\x28\x6d\x8a\x61\x96\x3a\x96\x2f\x56\x58\x31\x4e\x97\x13\x07\x2c\x5c\x4c\x8c\xf1\x30\x30\x2c\x4b\xdb\xc6\x7e\x89\xda\x36\x65\xa0\x32\x37\xd7\x2e\xac\x0e\xfd\x8a\x09\x73\x68\xee\x61\xbc\xfc\x2b\x6a\x37\xaf\x91\x24\xdb\x59\xaf\x07\x1a\xe6\xa9\xe9\xc5\xd8\x8b\x04\x66\x57\x11\x9b\xfb\x0d\x2a\x51\xe5\x66\x10\xc6\xe9\x36\x3b\x32\xa4\xdd\x8d\x91\xe5\x9c\xed\xe6\x49\x95\xd2\x09\xee\x1c\x63\x41\xf6\xf7\x78\xa9\x49\x2c\xf2\xd5\xbe\x0b\x54\x1d\xae\xd9\xa5\xc6\x55\x46\xbc\x78\x44\x13\x73\x2d\x35\x2b\x33\x24\x54\x05\x0d\x11\xcc\xc4\xad\xb6\x09\x89\xe0\xff\x63\x02\x0d\x98\x30\x07\x18\xbc\xe5\x3c\x97\xd6\xa9\xe0\xbd\xce\x72\x38\x26\x5c\x4a\x4d\x51\xb4\x08\x67\x6a\xe7\xb4\x62\x4e\x3f\x45\x8d\xc4\xe5\xb8\x54\xf7\x27\x6c\xb7\xeb\xc4\x12\x5e\x27\x67\x87\x7a\x10\x96\xf9\x08\xb7\xed\xec\x1b\x1f\xd8\xbf\x66\x35\x18\x34\xef\x3e\xa0\x05\x6b\x68\xf2\x38\xeb\xee\xb4\xcf\x1b\x68\x53\x71\xae\xd1\x90\xc4\x8e\x5c\xb5\x9b\xf2\xf0\x15\xb1\x14\x42\x28\x7f\x0d\x61\x06\xaa\x0e\xe7\x29\x76\xf8\xb7\xac\x22\x7e\x81\x39\x6a\x6f\x34\x8b\x7d\x67\x83\x38\x55\x4f\x5a\xac\x32\x20\xd3\xcb\x71\x43\x47\x70\x8f\xf5\x41\x73\xcd\x74\xe0\x81\xd0\x5c\xd6\x56\xb8\x7f\x66\xd7\xab\xbf\x39\x3d\xc6\x31\x89\x8a\x78\x21\x4e\x62\xef\x51\xfb\x09\x5c\x15\xb7\x46\x89\xc0\x89\xd8\xd0\x07\x5e\x9d\xe4\xbb\xbe\xea\x92\xd5\xa3\x02\x8c\x5d\x94\x2a\x30\xdf\xec\xb6\xf1\x73\x9f\xed\x78\x62\xc9\x16\xc0\x0d\xb0\x64\x5f\xa0\xe1\x82\x80\xab\x9e\xdf\xde\x08\xfb\x58\x40\xac\xe6\x63\x13\xc1\xf6\xe2\x30\x41\xca\x21\x72\x0f\x01\x59\x71\x4f\x48\x9b\x0d\x33\x71\xb6\xe6\x92\x9b\x13\x8f\x9c\x9b\xdb\x18\x4f\xad\x37\x87\x76\x3d\xdb\xee\x9a\x65\x93\x64\x4e\x65\x07\x0f\xfb\x3c\x01\xb1\xce\x37\xb1\x0c\x16\x40\xe7\xf0\xf0\x77\xb1\x4b\xd3\xb0\xb1\x61\xdd\xe9\x9a\x41\x56\x87\x22\x71\x34\xe3\x87\xc2\xc7\x84\x8d\xbd\xc8\x9d\xbd\x23\xc1\x63\xa4\x37\x5b\x98\xed\x3e\x06\x81\x40\x25\x36\xea\x16\x08\x68\x92\x07\xd8\x0e\x9e\xdb\x55\x1d\xb2\xfd\x22\x21\x5e\xdf\x9c\x1a\xa4\xf3\xf3\x56\xea\xd8\xd3\x65\x90\xfe\xdc\x26\x41\xab\xdb\x54\x8e\x5a\x32\x43\x58\x93\x38\xc9\x6a\x07\x50\xc1\x10\x45\x7a\x7f\xaa\xa2\xbd\xff\x23\x0a\xd3\xfb\xf1\xa0\x30\xc9\xa2\x85\x67\xb9\x76\xc5\xde\x79\x8f\x31\xdd\xef\xca\xcd\xec\x0c\x75\x76\x02\x8d\xe9\xa3\x6a\xd1\xab\x96\xfc\x9b\x95\x13\xcf\x37\x44\xb5\xed\x30\x4d\xb3\x91\xef\x43\x89\x2f\xe4\x84\x81\x36\x17\x40\x7a\xa3\x24\xcc\x93\x55\x5b\x00\x41\x9b\xe8\xa4\x7d\x2c\xb8\xad\x4b\x01\xdd\xe3\x25\xbb\x15\xcb\x1f\x05\xbe\x18\x31\xf8\x7c\x68\xa7\xbe\x7e\xdc\xbe\x63\xff\x67\xae\x3b\x91\xe5\x2d\xa6\x7a\x4f\xf8\x7b\xfb\x20\xc0\x4a\x42\x0d\x4c\x5a\xee\xa4\xa1\x7e\xac\x22\xd0\xcd\xb7\x49\x49\xe8\x7e\xe0\x0b\x18\x20\x34\x39\x96\x95\xb3\x5f\x14\xa7\x6e\x57\xfc\xab\x73\x41\xc7\xc4\xf0\xba\x53\x27\x27\x6c\x30\x8b\xb2\x78\xb2\x1e\x03\x28\xb6\x5e\x27\x34\xc1\x16\x34\x5a\x71\x83\x8f\x75\xbc\x5d\xda\xbf\x7f\xd2\xbe\x5a\x25\xa4\x50\x1b\x70\x27\x24\x11\x51\xc2\xfa\x8b\xca\x47\xb9\xe8\x42\x63\x05\xf9\x75\x7b\xc9\x08\x00\x00\x0d\x53\x44\x85\x5d\x1c\x5c\x50\xed\x7d\x9b\xce\x61\x9d\x47\x20\x75\x01\x95\x0a\x11\x90\xb0\xc8\x2e\x15\x93\xa0\xb2\xeb\x77\x1b\x23\x92\x6e\x98\x97\x0b\x99\x1a\xae\xe1\x29\x5f\x65\x7a\xc4\xd5\x06\xbc\xce\x3e\xa8\x59\x0a\xec\xd2\x23\xd4\xec\xd3\x51\x24\x5a\x13\x51\xcc\xaa\x1a\x60\xc5\xd3\x86\x7f\xcb\x71\x71\xa7\x03\xd9\xbd\xf3\x2e\xb8\x9c\xf1\xd0\x84\x13\x15\x6d\xf7\xd0\x92\xd4\x02\x87\x36\x7e\x8b\x30\xcd\xc3\xa5\x91\x14\x54\xa4\xe9\xcc\xa8\xf5\x1f\x37\xd6\x67\x93\xac\x28\xb7\x91\x2c\xe3\x91\x8a\x4a\x4f\xff\xb8\xa2\x35\xf4\x44\x40\xc0\x97\x37\x08\x68\xf0\x9e\xdb\x4d\x5e\x1a\x0d\x86\xa6\xbb\xcd\x2f\x3a\xc7\xf1\x7c\x30\xe5\x1f\xe9\xf8\x25\x0c\x5d\x5b\x92\x09\xd1\x4e\xe9\x34\x97\x7c\x7e\xbe\x5d\x8e\xa2\x25\x9d\xe2\xb8\x19\x29\xba\xc9\x09\x95\xfa\xc2\x74\x75\xa5\x6f\x72\xde\xf9\xae\xd3\xce\x77\xbd\xfa\xac\xc3\xa7\xfe\x7f\xdd\x52\x9b\x1a\xae\xcb\x71\x92\xe8\xfe\x2a\x72\x3b\x78\xd6\xaa\xbd\x43\xba\x16\x79\xb8\xb8\x18\x47\xdb\xbd\xa6\x31\xba\x4d\x3a\xf6\x49\x48\xe5\x37\x2b\xdf\x91\xfd\x6d\x06\x6f\x49\x1e\x83\x28\xf8\x74\xc3\x8b\x6c\x2f\xc7\x5d\x03\x8a\x96\xc8\x8f\x04\x2d\xb2\x2e\x6d\xc0\x64\xc0\x80\x5d\xec\x2b\x11\xc0\x83\x94\x2d\xc7\x0d\xc4\xe0\x3d\x16\x96\x33\xe3\xeb\xd3\x82\x47\x50\xa5\x08\x5f\x26\xfa\x19\xd5\x19\x8b\x3a\xc9\x09\xb5\xd2\xa7\x3c\x2d\x32\x23\x9b\x36\xda\x05\x19\x55\xf8\x2b\x0e\xed\xe0\x1e\x8d\x64\x0f\x28\x77\xbd\x1e\x78\x19\xe8\x72\x35\x81\x72\xb0\x66\x01\x47\x88\x99\x8d\xc0\x1c\x8d\xd4\x75\x5b\x61\xf1\x02\xf8\x3a\x76\xc2\x64\xf5\x5b\xa2\x20\xa0\xfd\x06\xd2\xfb\xbd\xd0\xd4\x8f\xeb\x9b\x04\x8d\x3e\x47\xae\x92\x56\x82\x52\xad\xa6\x95\x5b\xba\x79\x36\xf4\x5a\x12\x58\xda\x61\x4f\x25\xc7\x44\x1a\x8c\xa3\x7e\x9c\x67\xf6\x25\x61\xc9\xf8\x01\x9b\x1e\xff\xa0\xc9\x58\xef\x40\x3b\x4b\xe2\x65\xf1\xe3\x69\x6c\xd4\x6c\xbe\xa4\xfd\xbb\xf6\x5b\x82\x87\x04\x0c\xa2\xd1\x47\xfa\xdf\xbf\x45\x52\x32\xa2\xa1\x5e\xcc\xc2\xc0\xd1\x2e\x9c\x1b\x97\x6c\x0d\x61\xc3\x0a\x93\x6f\x5c\xa2\x22\x7f\xd4\x37\x65\x19\x52\x71\xf0\x02\x59\xcf\x5e\xa0\x61\x12\x85\x45\xa9\x68\x48\xc5\xdc\x33\x00\xbf\x49\x87\x24\x31\xd6\x9c\x41\x9a\x03\xca\x31\x23\x75\xe7\xf7\x89\x97\xf1\x3e\x37\x92\x4f\x50\x72\x97\x98\xa2\xc8\xa4\x43\xe9\x82\xbf\xfa\xad\x6b\xf0\x47\xad\x47\xd3\x7d\xda\xee\xa8\xa8\xcd\xc2\x0e\xc7\x8e\xe2\x57\x9e\xea\x78\x95\x66\x99\xae\xe8\xa7\x5e\x0b\x1c\x57\xe9\x8b\x4f\x8e\x3d\xe1\xff\xd3\x9f\xb5\x38\x5d\xec\xe6\x8f\x74\x7c\xb5\xe6\xef\xfd\x92\xed\x9e\xd8\x27\xff\xcb\x7f\x63\x6c\x1b\x0a\xaa\xcc\xe4\x91\xeb\x5f\xfd\xa5\x0e\xc1\x04\x9e\x91\xda\xae\x1a\xd5\xb7\xbe\xf6\xbc\x57\xc9\xf5\xba\xc7\xbf\x60\xfb\xa3\x42\x45\xaf\x08\x2c\x29\x66\x31\x6a\x15\xdc\x52\xd2\xf6\xb7\x3f\x37\x7e\xdc\xb3\xfe\xbc\x78\x25\xee\xf3\x26\x9e\x93\x9c\x54\x1e\x9d\x61\xd2\xc5\x2c\x8f\x8c\x23\x3a\x63\xaa\x1e\xa5\x2a\xf5\x51\x6a\x2a\x59\x6e\x11\x5a\x4a\x61\x62\x66\x1a\x9c\xc8\xb1\xc2\x7c\x97\xfb\x03\xeb\x14\x50\x27\x66\x79\xf5\x93\x25\xd5\xa7\xcd\x18\xf6\xb5\xe3\x34\x95\x05\x09\x97\xf3\x5e\x45\x9a\x7b\xef\x05\xde\x33\x64\x30\x8c\x13\x55\x47\x45\xc4\xfd\x1d\xe6\xe2\x7d\xa7\x7a\xd8\x5d\xc5\x97\xff\x03\x1b\xf7\x38\x53\x1a\x97\x71\xdc\xb1\xa2\x73\x2a\xab\x6b\x03\x17\x2c\xfe\x13\xc9\xcf\x86\x8d\x88\x50\xef\x39\x06\x14\x0b\x8a\x65\x10\x46\x10\x31\x57\x1b\x42\x61\xf2\x6f\x85\xb4\xb7\xf0\x9b\x03\x4a\xcf\x8e\x59\xc4\x39\x5b\x90\x88\xcb\x13\x36\x77\xfc\xf8\x25\x59\xa7\x30\xca\xb7\x77\x26\x83\x00\xcf\x55\xb9\x58\xb5\x7e\x45\x2f\xb8\x65\x5d\xc6\x91\xea\x6c\xb1\x50\x76\xb4\x39\x76\x76\x5a\x5f\xfd\x35\xe9\x7a\x3d\x32\x26\x52\xfa\x0d\x14\xd9\x9d\x46\x5b\x3d\xe2\xd0\x53\x7f\xbb\x62\x65\xc9\x7a\xc0\xab\x0a\x3d\x89\xed\xde\x0b\x5a\xdf\xf8\xba\xd4\xdf\x5a\x1d\xb4\x52\x90\x33\xdc\x47\xa3\xcd\x21\xd6\xf6\xef\xd2\x86\xf7\x6b\x24\x75\x03\xbc\x97\x68\xa9\xe1\x46\x65\x29\x94\x93\x26\x6d\xe2\xa1\xe9\x9a\xa2\xcc\x63\xe1\xcd\x60\xec\x5d\x27\x4d\xa4\xeb\xd4\xa6\x37\x2f\x47\xc6\x74\x91\xfd\xaa\x65\xea\x1a\xd8\x9e\x72\x32\x05\x27\xf9\x4a\x3b\x0b\xcb\xc2\xb6\xd1\xb1\xde\x8b\xec\x8b\x9c\x34\x89\x58\x2e\x64\x49\x97\x1c\x6e\xde\x21\x36\xf2\x3b\x54\x29\x09\xbb\xe1\xc0\xc0\x29\x11\xcf\xec\x14\x7b\x40\x9d\x9a\xda\x2c\xf6\xef\x6a\x0f\x73\xc8\xa9\xb7\x48\x57\xef\x37\xd8\x2d\xf3\x37\x1a\xc1\xeb\x71\x11\xf6\x72\xa3\xfa\xb2\xea\xf3\xd6\x22\x03\x38\x8d\x09\xfb\xa1\x0a\xd9\xee\x71\x48\x18\xaa\xf7\x5e\xa4\x25\xed\xbf\x3b\x3e\xb5\xc1\xee\xdb\xbf\xaf\x9d\x5b\x5b\xf5\x43\xbb\x64\xdc\xbd\x83\x8f\xcb\xc9\xd4\xb6\x70\x68\xd7\xb3\xb0\x8b\x6d\xd0\xf0\x77\x22\x80\x7e\xd6\xdd\x03\xe9\x5e\x4b\xc1\xd9\x63\xf5\xc3\xc3\x10\xdb\x8e\xfa\x11\x12\xd9\x1d\x50\x33\x50\x50\xda\x8c\x37\xf4\x80\x93\x2f\x56\x8e\xbb\xc1\xd6\xcf\x79\x6b\xa1\x43\x0e\xc4\x66\xe7\x23\x76\x9e\x0d\x32\x6a\x5a\xc7\x7c\x44\x9d\x78\x9b\xad\xf7\xe2\x3b\xdf\xc2\xb4\x91\xf9\x8f\xe1\x81\x08\x71\xcb\xd8\xe3\x20\x9f\xcb\x2d\xbf\x06\xe3\xec\x0e\x49\x3f\xbd\xc6\x9f\xb8\xc0\x29\x2a\xc8\xf2\xfa\x1c\x3c\xd7\x65\x7d\x93\x1e\xd3\xee\xdd\xd2\xa5\xfc\xf9\x29\x87\x93\x7d\xcf\x1d\x68\x2f\x5a\xad\x4f\xd7\x21\xbc\xc2\x48\xe7\x69\x17\xe5\xe7\x0e\xb4\x07\x61\x1e\x96\xfd\x2c\x9d\xb1\xd3\x04\x6b\xc3\xbb\xc4\xeb\xb8\x4f\xb6\x35\x37\x1b\xaa\x2d\x07\xda\x51\x3f\x8f\x8b\x52\x27\x65\x13\x9d\xe4\x29\xaa\x35\x46\x4b\xb1\x2d\x61\x12\x84\x08\x14\x19\x39\x6e\x72\xae\xcc\xd5\xf0\x52\x26\x83\x73\x7a\xf2\x3c\x85\x73\x8d\x29\x5e\x91\x5a\x39\x93\xfa\x33\x88\xe3\x21\x34\x2e\xc7\x8c\x78\x88\x42\x9b\x40\xd6\x5f\xc8\xce\x21\x72\xec\xe8\x6e\x2b\xfd\x55\xab\x5f\x8a\x54\x5d\xa4\x1f\x50\x6a\xbe\x01\xf4\x28\xe2\x8f\x6d\xa0\xc5\xaa\xf9\xb8\x0f\xa6\x24\xe7\xd8\x49\x0e\x5a\x15\x39\xc7\x5e\x04\x90\x48\xf5\x34\x66\xbc\x5d\xd6\x75\x72\xfe\x93\xd4\xdf\x55\xf4\x7c\x81\xe5\x58\x45\xa6\x07\xe7\x49\x87\xe5\xca\x54\x68\xb9\x77\xbe\xdd\x8f\x7b\xfd\x95\x70\xd5\xe6\x0d\xce\xa1\x73\xf7\x1e\xd7\xc6\xf4\x5d\x99\x3b\x81\x27\xd9\x14\x43\x13\x59\x86\x8a\xd2\xa3\x1d\xc8\xd1\x15\xce\x0e\x37\xf9\x2c\xe5\x59\xb4\xd4\x22\xf6\xff\xc7\x95\x4f\x47\x3f\x6e\x94\x36\x2b\x46\x83\x89\xb7\xf7\x9b\x01\x39\x87\xfc\x26\xf9\xb5\x4e\x10\xe2\xbd\x54\x3d\xf8\xc8\x2a\xed\xd0\xd4\x08\x46\xfb\x00\x79\x85\x28\x1b\xdb\xf7\xae\x2a\xc7\x1c\x5c\x47\xc9\xa8\x6b\xba\x16\xf5\x85\x97\x2c\xc4\x07\x24\x96\x67\xd9\x43\x1d\x8b\x9a\x24\xe1\x81\x9f\xfe\xe7\x2b\x0f\x5b\x39\xdf\xe4\x78\xd3\x4b\xc3\x15\x57\x8e\xc6\x20\xbb\x5f\xf9\xa9\x04\x8b\x0e\x94\xda\x8f\x34\xf9\x21\xe6\x75\xdc\xfd\xad\xe5\x4c\xe4\x6a\x31\x5c\xee\x13\x72\xf1\x3e\x75\x0e\x85\xaf\xbf\xe7\xa0\x14\x75\x7e\x42\xee\x19\x3f\x99\x7a\x21\x7b\x0e\xb6\xcb\x7c\x94\x2e\xb1\xbd\xd0\xa4\x5f\xa9\xcf\xac\x53\x13\xe6\x46\x36\x77\x94\x18\xde\x0a\xbc\x78\xf0\x5b\x95\x4f\x0c\x87\x49\x98\x1a\xa4\x5b\x88\x1e\x11\x8a\xca\xf1\x54\x7a\xbc\x7b\x77\xbb\x9b\xc7\xa9\x17\x3e\x70\x4b\xac\xe3\x2c\xdc\x99\xa2\xbb\xd4\x49\x6b\x9c\x76\xe3\x45\xbb\x8a\x94\x76\xc7\x52\x5f\x7b\x5f\x47\xbd\xe0\x88\xa0\x0b\xa6\xce\xa3\x2c\x41\x16\x5b\xd1\xcf\xec\x83\xc1\x02\x75\xdc\xee\x18\x08\xed\x2e\xdb\x75\x1a\x9b\x84\x08\x7c\x0a\x35\xd0\x8b\xa5\x66\x89\xe9\x22\xfd\xc7\x7f\x1d\xe5\x82\xd1\xd1\x80\xe3\x95\x61\x98\x76\x4d\x17\xfe\x3a\x78\xc7\x60\xf3\xaa\x11\xa8\x47\x1b\x7d\x54\x91\xa8\xe3\x2d\x5a\x5e\xc2\x5e\x18\xa7\x45\xf9\x24\xd7\x9a\x2e\xb1\x8a\xfb\x35\x2b\xbc\x06\x79\xb6\x9b\xe4\x5f\xf0\x30\x7c\x7a\x85\x3c\x8e\xaf\xa7\x36\xcc\x1e\xf9\xc8\x2c\xd0\xe8\x60\x7b\xad\x07\xde\x5b\x06\x81\xad\x34\x71\xec\xbb\xc6\x22\xf2\xc7\x15\xed\xce\x1b\x24\x5a\x72\x1f\x93\x47\xd9\xea\xa4\x9d\xbd\x95\x54\xa1\xc5\x49\x56\xa1\x20\x4f\x6f\xaa\x18\xa3\x25\x59\x5f\xb8\x4a\xee\xd9\x2f\x55\x04\xdd\x74\x59\x7a\x5e\x50\x58\xe2\x3e\xe1\x90\x6a\x04\xfb\xdf\x3c\x7a\x76\xef\x6e\x2f\xc6\xb9\x19\xaa\x51\xa6\xaf\x88\xde\x45\x2c\x20\x27\xae\x58\xb1\x92\x5b\xad\x0d\xf4\x3c\x55\xb7\xde\xde\x9f\xe0\x82\x31\x52\xb0\x8b\x7b\x04\xe7\x20\x5b\x36\x90\x1c\x54\x1a\x9e\x57\x09\x94\xda\xab\x42\x12\x28\x8c\x3f\x61\x87\x20\x6e\x18\x04\x77\x3c\xab\xcf\x74\xec\x7e\xee\xa8\x2a\xf5\xb5\x20\x6f\x7d\xb2\xe3\xeb\xfb\x37\x27\x38\x85\x95\x17\x11\xfc\x31\xb7\x81\x2f\x51\xf3\xc7\x84\xc5\xaa\x5d\x02\x91\x2b\xac\x55\x08\xfd\x55\x7f\xdb\x26\x47\x72\x42\x75\xa1\x5f\xb7\x5f\x2d\xc7\x01\x71\x76\xd6\xa6\x48\x2c\xd2\x94\x2b\xc3\x25\x93\x26\xab\x33\xe4\xf6\x80\xa8\x08\x81\xd0\x03\x88\xbd\x4c\xbd\xe1\xfa\x65\x8d\xf2\x38\x1b\x15\x89\xf8\xa0\x39\xc9\xc5\xfd\xbb\xf4\xb8\x51\x2d\x2d\x5b\x76\xeb\x2e\x82\x3b\xe0\x10\xb1\x1a\xa2\x42\xa5\x0e\x12\x13\x64\xb4\x7e\xc8\x23\xa9\x22\xcc\x63\x43\xff\x67\x5f\x7b\x60\xc2\xc2\xf2\x0a\xe9\x85\x8a\xff\xad\x9c\x10\x3c\x60\x10\x96\x7d\x33\x08\xcb\x38\x8a\xc3\x54\xb2\x6f\x07\xd9\x70\x32\x68\xe2\xaa\x89\xec\xf6\x1a\x71\xc8\xfa\x61\x7d\x4f\x8f\xd6\x77\xae\xea\x8a\xf5\x90\xc2\xe5\x89\xa4\x94\x6e\x5e\xf5\xfb\x41\xe6\x75\xd2\xce\x64\xa7\x87\xe4\x7d\x9a\x8e\xd9\x6c\x17\x0d\xb0\x23\x18\x51\xda\x0c\xf2\x5c\x1c\x04\x9c\x18\x76\x82\x2f\x75\xa9\x94\x9f\x2c\xd7\x9b\x76\x97\x28\x2b\x4a\x3c\x4c\x6c\x55\xe2\x71\x29\x27\x4d\x3c\x8e\x65\x93\x77\x63\xb1\x64\x51\x65\x2a\xdf\x60\xba\x40\x30\x9c\x24\xcb\xd2\x58\xd8\x9c\x2a\x67\x5e\xdf\xb2\x57\x33\xd7\x65\xa5\x1c\xe5\x9e\x8a\x88\x9b\xc5\x2a\x2c\xc7\x53\x55\xf0\xb9\xb9\xf6\x42\x58\x2c\x99\xb2\x45\x72\x07\x17\x29\xb6\x99\x96\x61\x9f\x9b\x6b\x2f\xc6\x85\x2e\x42\x98\xee\x68\x55\xcb\x31\x3b\xdf\x67\xd1\x92\x41\x16\xe8\x27\x9d\x7d\xae\x3a\x83\x7c\x8c\x92\x2d\x9b\xbc\x1f\xaa\x4e\x20\x6c\x51\x2e\xe3\x8f\xe5\xa4\x71\x4c\x86\x71\x9e\xd4\x41\xb9\x8c\x30\x84\x70\x8f\xa1\xdf\x89\xf1\x7f\x8f\x2d\x17\xef\x4f\x3d\x82\x43\xbb\x44\x18\xd7\x32\x51\x18\x79\x81\x6b\x14\x2b\x20\x34\x63\x8e\x36\x3a\x5f\x0c\xb2\x30\x25\x33\xa8\x99\x0e\xf9\x4a\xb3\x5b\xf0\xa5\xa9\x71\xf0\xe2\x8b\xed\x5e\x1e\xae\xea\xd2\xcc\x60\x25\x39\x6e\x80\x9e\xb5\x93\x30\xed\xda\x36\x0e\xb6\xa9\xad\x64\xcc\x26\xfd\x02\x81\x69\xd2\x9e\xb3\x18\x2d\xfc\xd7\xff\x61\x62\x16\x8c\xba\xa4\x62\x5e\x9c\x62\x22\xe0\xa9\xa6\xa8\x6e\x21\x1f\x15\x7d\x6d\x64\xe8\x6b\xe3\x45\x94\xf4\x59\xcc\x60\x98\xe5\x61\x8e\x45\x16\xc9\xf7\x1b\x15\x69\x57\x40\x0f\xdc\x11\xe4\xfc\x16\x11\xb0\xe4\xa1\x5d\xee\x00\x1e\xff\xce\x84\x91\xc1\x70\x08\xe5\x5f\x17\xe2\xef\xd5\x47\x80\x2b\x12\xaa\x3e\x19\x0d\x4f\x33\xa8\x76\xef\x46\x4d\x5a\x9c\x46\x1d\xfe\xdf\x73\x01\xd8\x36\x32\x2d\x4d\xbe\xd3\x93\xac\xff\xd8\x86\xc0\x72\x1c\x4c\xfa\xe9\xdb\xad\x04\xbf\x2a\xc3\x16\x95\x8e\xf3\xd8\x57\x50\xd8\xbb\x41\x24\x95\x3b\x94\x66\x5e\x41\xca\xae\xf2\x47\x0d\x86\x0f\x5d\x53\x98\xbc\xb4\xd9\x8e\x9b\x48\xa4\x44\x4d\xd8\x9e\xeb\xd4\xba\x88\xc2\xbc\x0b\x5b\x6f\x2d\x2c\xda\xb7\xe1\x4a\x8e\xf5\x54\x13\xd1\xd8\x8a\x8c\x06\xcf\x04\x9b\x4c\x79\x7f\x75\x4f\x9d\x6f\x5b\xe8\x8e\x03\x0b\xec\x39\xa8\xc7\x8d\xbd\xac\x28\x1b\xe5\xb1\xb4\x0b\x9c\xde\x79\x7d\x93\xca\x84\xf1\xf5\xef\xbd\x5f\xdb\x6b\xff\x0c\x41\xaa\x84\x08\x72\x12\x6c\x96\xbc\x3c\xb4\xab\xdd\x35\x51\x12\x16\x45\xbc\xe8\x49\x97\x02\x20\xa1\x6d\xfb\x02\x89\xc0\xaf\x84\x8b\xae\x0b\x80\xf0\xef\x2d\x1b\x4a\xca\xf1\xd4\xa4\x3e\xf8\x5c\xfd\xe4\xf2\x55\x1b\x6d\x23\x5c\x3e\x8b\xd7\x2d\x27\x5e\x42\x26\xec\x6e\xf3\x25\xd9\x47\x2c\x21\x53\xa9\xa5\xf6\xe9\xa2\x93\x7d\x97\xb8\x87\xd2\x0b\xd5\xbf\xe2\x01\x3e\x4a\x92\xed\xf6\x76\xf0\x82\xa4\x51\x8d\xe8\xf5\x78\xe5\x63\xf7\xf7\x02\xbf\x17\xc0\x96\x18\xe9\x1a\x88\x21\x2a\x4d\xb9\xb9\x42\x68\x2b\x6c\xc3\x19\xcf\x31\x40\xcf\x18\x1d\xd2\x5b\x01\x61\x27\x8f\xb1\xc6\x7f\x1e\xdb\x98\xd3\xa6\x14\x9a\x0f\x71\x6b\xe4\x7c\x40\x7c\xb4\x7f\x62\xc7\x85\xa6\x4a\xf4\xee\xa7\xd6\xb1\xdd\xbb\xdb\xcb\x51\x5e\xb0\xee\x17\xa4\xc3\x50\x5a\x3b\xc6\x7e\x37\x77\xa7\xde\xd0\x17\x27\x84\xd3\xa5\xee\x35\x51\x03\xfb\x14\xf1\x91\x93\xc5\xb8\x80\x17\x0e\xba\x17\xef\x12\xb9\xec\x5d\x72\xcb\xb5\xc4\xf5\xbc\x45\x38\xed\xfb\x78\x2c\x72\xe2\xe2\xdd\xc2\xd9\xe9\xe1\x19\xa0\x1b\xa3\x0b\x08\xa9\x4d\xbe\xdd\xb4\xf5\x0f\x46\xc9\x62\x26\x40\x01\x41\xd7\x73\xa3\x60\xba\x7c\xfc\xfc\x9e\x83\xed\x9e\x49\x4d\x6e\x89\xa9\xf6\x77\x9d\x03\x6f\x3d\x9f\xb5\x1d\xf7\x8b\x9f\xc0\xff\x30\x61\x5e\xf6\xbf\x39\x0a\x97\xcc\x2c\xd6\x29\x27\xdb\xea\x3a\x0b\xa0\x27\x20\x26\xda\xc0\x96\x87\x71\x77\x78\x2a\xa9\x98\x9f\x6f\xd7\x09\x72\x3e\xb2\xca\xe8\x72\x3d\x2a\x5a\x40\x25\xc2\x4b\x8e\x73\x5f\x8c\x7a\x21\x28\x67\xa8\x4d\xcc\x62\x87\x74\x78\xa4\xb9\x39\x89\xba\xde\x6c\x30\xd6\x50\x1d\x5a\xea\xb3\x9d\x0f\x88\x72\x15\xc3\x21\x56\xe9\xc3\xf5\x2c\x41\xb5\xf8\xc7\xa4\x74\x04\x41\x52\xd5\x94\xf0\x4a\x6f\x1f\x4c\xbd\x9f\x83\xcf\xb5\x0b\x93\x2f\xc7\x91\x21\xc7\x00\xd4\x31\x54\xe5\xd8\x53\x23\x5f\x99\xfa\xf8\xfe\x5d\xed\x28\xcb\x73\x13\x21\x55\xc7\xfe\x76\x9c\x00\xf1\xc7\x27\xb6\xb4\x34\x32\x9f\xc5\x64\x12\x0c\xa2\x05\x9d\x40\xa1\x06\xf0\x32\x14\x52\xa4\x6b\xe9\xcc\x9e\x1d\x14\xea\x12\xc9\x3d\xff\x01\xba\x40\xf2\x69\x3c\x3d\xb0\x02\x7e\x1c\x78\x5a\xb2\xc8\xfd\xa8\x41\x95\x1d\xdf\xe8\x86\xde\x0d\xc8\x3f\x45\x88\x8e\x68\x77\xdd\x43\x81\x08\x9f\xb9\xcc\x9a\x98\xb3\x63\x1f\xb8\x9c\x43\x87\x02\xa5\x41\x01\x50\xaa\x27\xa6\xcd\xe8\xe4\x7f\x02\xe2\x2e\x5f\xb1\x0b\x31\x6a\x86\x7f\x61\x73\x59\x21\x7e\xd9\x80\x1d\x8d\xa3\x99\xce\x74\x32\xfc\x02\xb6\x71\x87\x00\x16\x16\xbc\x7d\x64\xca\x88\xa7\x12\xe9\x4a\x5c\x46\x7d\x0e\x72\x4f\x53\x90\x3b\x0d\x7d\xd8\x73\x50\xdc\x89\x38\xaa\xbc\x58\x4d\x38\x81\x37\x81\x80\xa2\x24\x2b\xfb\xb1\xc9\xf5\x83\x48\xf8\x0e\x33\xfe\xf3\x70\x13\xfe\x33\xca\x4d\x11\x99\xb4\x9b\xb5\xe8\xa5\x5d\xa8\x98\xe3\xa1\x45\x99\x61\x16\x17\xa0\x4b\x1d\x98\xd0\x51\xb7\x0f\xfa\xeb\x48\x90\x11\xce\xad\x31\x52\x70\x76\xdc\x60\x38\x5d\xc6\x90\xa7\x76\x8f\x7f\x6e\x4e\x8f\x27\xf6\xa5\xd2\x24\x3b\xec\xa0\xd1\x94\xa3\xe5\x54\x3f\xff\x5d\xe0\xe5\x44\x04\xb7\xad\x42\x82\xd4\xd0\xfc\x00\xc3\x57\x5d\x7e\xf0\x70\xd4\xe4\xaf\x01\x46\xd2\x8d\x8b\x32\xd7\xec\x88\x6c\x55\xf6\x39\x41\xad\xe9\x48\xf5\x40\x7b\x10\x16\x85\x8e\x07\xd2\x12\xdb\xe3\xfc\xc4\x9d\x06\x48\x9d\xad\xcd\x92\x3c\xc8\xe9\xca\xc7\x48\xd7\x84\x94\xa2\xe1\x9b\x4f\xea\x76\x74\xa6\x2b\xc3\x07\xda\x8b\xa1\xec\x18\xae\xe7\x51\x7f\xaf\x9c\x50\x5d\xb1\x6b\x8a\x61\x18\x23\x20\x42\xaa\xf4\x4e\x40\xda\x05\xef\x50\xc6\x37\x88\xf3\x30\x4a\xb0\x00\x11\x71\xd8\xc9\x34\xd9\x17\x8e\xa6\xfc\x83\xa6\xe1\x54\x64\xa3\xb2\xbf\x62\x1b\x5c\xf3\xa4\xdc\xe0\x3d\x01\x59\x28\xc1\xaa\xba\x16\x0f\xfb\x50\x67\x9d\x38\x70\x37\x88\x9a\x74\x06\x0b\x07\x0a\x41\x52\x0a\x54\xbf\xce\x7a\xd5\x55\x7f\x20\xbb\x08\x61\x27\x39\x62\x4b\xf2\xd8\x3d\x81\xe4\xd1\x68\xb3\x5e\xc1\xb0\xcc\xb7\x3a\x3e\x12\xfc\xbb\xbf\xf4\x9f\xce\xd4\x9f\xd0\xe2\x9f\x07\xa8\xc8\x60\x46\x9d\xe1\x15\x06\x24\x67\xc5\x97\x67\x7c\x23\x16\x2b\x35\x8a\x0b\xd2\xe2\xc0\xe0\x6c\x75\x98\x05\x9d\x64\x79\xd8\x55\x3d\x13\x11\x66\x0b\xe8\xc5\xfd\x88\xa0\xc8\x66\x94\x67\x43\x13\xa6\x3b\xed\x58\xd2\x02\xb8\x5d\x2a\x85\xaf\x6d\x37\x14\x1c\x6f\x54\x64\x9f\x7d\xb8\xf2\xd0\xa7\x1d\x40\x3a\xbb\x5a\xfa\x7e\xd5\xbb\x13\x97\x2c\xec\x53\x62\xcf\x81\x18\xe8\x4a\xf0\x94\xbc\x53\x3b\x1f\x4c\x51\x28\x33\x03\x4b\xfc\x6c\x87\xf4\x1e\x67\xa7\xc8\x1c\x7b\x0e\xb6\x97\xb3\xd2\x01\xb1\x15\x53\xe9\x91\xa9\x6b\xa4\x24\x73\x05\xcf\x0a\x45\xb3\x5b\xc4\x63\x29\x95\x1f\x86\x80\x75\x8b\x45\x91\x68\x83\xdc\x03\x70\x2e\x39\x74\xd1\xd0\x98\x64\x41\xcd\x4d\x14\x68\x58\xff\xa8\x1c\x07\x5e\xcb\x71\x21\x2c\xcd\x0c\x69\x79\xe2\x0b\x91\xd2\xdc\xb3\x17\x8a\xfd\xfe\x4c\x43\x3f\xf6\x85\x76\x94\x98\x50\xad\x97\xc4\x7b\x2a\x98\x30\xa2\xf2\x99\xe9\x20\x4e\xe3\x41\x9c\x88\x3b\x0d\x9a\x96\x90\x4e\x90\xe3\x89\x36\x5f\x5a\x86\x71\x6a\xf2\x6d\x3e\x3e\xbb\x4a\xc8\xae\xff\x9d\xeb\xd7\xe0\xa6\xb1\x95\xaa\x7c\x80\xa4\xc7\xc2\xe8\x9b\xa3\xb8\x80\x24\x9a\xd7\x65\x87\x12\xa9\xab\x36\x69\x01\x36\xcd\xd2\x28\x94\x60\x15\x35\x3b\xb0\x03\xe5\x98\x99\xb6\x59\x96\xd7\x61\xad\xdd\x66\xb1\x58\xbd\x0b\xa5\x32\x39\x99\x0a\xdc\xf6\xce\xb7\xd3\x7a\x30\x17\xa3\xbc\x67\x94\x72\xeb\xac\x7d\x1d\x92\x18\xf2\xab\xb8\xb0\xef\x59\x3c\x05\x8a\xe9\x1f\x56\x8f\x12\x04\xa2\xdc\x56\x07\x1e\x00\x47\x5c\x09\x68\x77\xb8\x6b\xe5\x72\x1c\x63\xc9\x25\x2a\x22\x98\xad\x5d\x89\x06\xef\xb2\xcf\x41\x9c\xa9\x35\x21\xaf\x44\xe4\x23\x37\x72\xa2\xb0\x18\x85\x52\x29\x72\xd0\x3b\x0f\xc3\x0b\x7e\x9e\x6c\x1b\xb0\x95\x2c\x8c\xea\xe7\x1f\x17\x03\x0c\x17\x07\xc8\x74\x1c\xbf\x8b\x53\x49\xf7\xf3\xfb\xda\x51\x3f\xcb\x0a\x41\xee\xb9\x64\xc7\x0b\x8f\x9f\x27\xfd\xe8\x7a\x49\xf9\xb2\x1d\xf2\xd8\x6f\x01\xe2\x92\x63\x32\xfb\x1b\x9a\x3c\x1e\x18\xc9\x32\x74\x31\x3d\x59\x51\xbd\xfd\xa4\x53\x15\xb1\xf2\x58\x45\x99\x65\xdd\xed\x24\xfe\x7f\x85\xe9\x3f\x8f\x23\x92\x96\xff\xa9\xbc\x6e\xfb\xc7\xa4\xce\xb2\x41\xcb\xd0\x8d\x26\xb1\xf4\xae\x81\xaf\xb5\x4b\xa8\x1c\xa8\xce\x03\xec\x9a\xba\xa2\xc3\x2c\x49\x08\xdb\x77\x12\xd3\x4f\x4e\x36\x4b\xf1\xce\xcf\xb7\xbf\xf0\x85\xc7\xa9\xfe\x70\x1e\xfd\x5e\x35\x80\xf1\xde\x66\xa2\xca\x89\x9a\x11\xdc\x46\x14\x9d\xe5\x59\x55\x87\x03\x22\xaa\x0a\xc1\x01\x0f\xf0\xfb\x36\xd8\x85\xf3\xcf\xef\x63\xdf\x54\x5d\xe8\xfa\xe6\x36\x2e\xa1\x0e\xe1\x82\x2c\xb7\x2b\x9d\xa8\x26\xec\xaa\x1b\x2a\xed\x51\x3f\x2b\x8c\xa8\x11\x69\xa2\x59\xff\x18\x10\xf6\xc2\x66\xc0\x28\xbc\x3d\xb5\x31\xa3\x2b\x9c\x2f\xc7\xcb\x46\x84\xf0\xb0\xda\x1e\x63\xdf\x2d\x21\x8b\xa9\xa7\xa7\xbd\x47\xa4\x2a\xf7\x88\xba\x0e\x9f\xf5\x6f\x8e\xcc\x0e\x7b\x29\xa8\x08\xdd\xc2\xe3\x17\x8c\x6a\xe5\x3b\x25\xb7\x83\x89\x30\xaa\xfe\x4a\xd7\x74\x71\x6d\x6f\xe8\xbb\xca\x71\x63\x78\xb5\x98\xe5\x03\x0d\xaf\xb0\xef\x9f\x62\xfd\xb9\x53\x54\x38\xeb\x87\x69\xb7\x98\xfd\x24\x39\x92\x3a\x58\x40\x48\xf1\x9d\xc0\x5b\x13\x7e\x67\x2a\xc9\xff\x8a\xa0\x42\x5b\xa4\x5b\x0d\xe1\x52\x39\xa6\x24\x7f\x29\x4e\x12\xd7\x04\x51\x0a\xaf\xbd\x54\xe5\x60\xf9\xed\xe4\x8f\x26\x52\xb0\x5e\x56\x3e\x6e\x1f\x9c\xe2\xed\xed\x1a\xaa\x04\x36\xfb\x15\x68\x78\x5e\x0e\xbc\x92\xe8\x69\x62\x98\x6d\x20\xd3\x71\xf4\xb7\xdd\x93\x0e\x64\xa8\x64\xde\x09\x08\x0a\x73\xdc\x6a\xed\xbb\xd0\xd3\x41\xb8\x5b\xb6\x7b\x88\xd9\xf1\x0f\xed\xc0\x92\x66\x65\xe5\xe3\xab\x1b\x9e\x65\x95\x84\x03\xc5\x4a\x39\x37\xb7\xbd\x5e\x0d\xed\x93\xac\x67\xcb\x78\xe0\x9e\x94\xda\xcc\x11\x5e\x24\xa0\xfe\xe9\x6f\x55\x4f\xb9\xb5\x68\x38\xb2\x36\x33\x3a\x02\x90\x27\x5c\xa9\x7c\xce\x30\x0d\xd3\xb0\x23\x3e\xc9\x86\x93\x50\xc7\xf3\x01\xc9\xec\x53\xd4\xbb\x90\x8f\x4a\x5b\xa7\x71\xca\x58\xa0\x58\xaa\x43\xbe\x06\x18\x2b\x61\xde\xcd\xb3\x05\xd9\x27\x10\x55\x9c\xa1\xf2\xc5\x99\x26\x4a\xcf\x30\x2b\xca\x61\xe6\x8c\x2d\x31\xe4\x3e\x20\x0f\xa5\x0f\x28\x04\x28\xb2\x64\x04\x29\x92\xfa\x65\x22\x18\xfb\x71\x45\x51\x10\x08\x86\x98\x5d\xa0\xb6\xa9\xe3\xd0\x53\x1e\xe3\xb9\x98\xe5\x65\xb8\x90\xa0\x8a\x08\xf2\x20\xe8\x3f\x72\xcc\xb9\x41\x1c\x2d\x19\x8d\x65\x50\x46\xfa\x83\x8a\x00\xe3\x7f\x30\xc5\xd7\x3c\xb4\xab\x1d\x8d\x90\x1f\xa1\xf2\x26\xf5\x46\x39\x71\x76\xae\x51\x16\x65\x65\x69\x5a\x34\x44\xc1\x58\x56\x79\xc2\xc7\x08\xb1\x9c\x76\x2d\x40\x48\x5d\x55\xea\xc1\x84\x25\xf5\x26\x96\x6a\x39\xc1\x0c\x51\xfa\xcf\xe6\x59\xfb\x7c\x9d\x80\x94\x66\x30\xe3\x59\x3d\xff\xf9\x45\xd2\xf8\xfd\x29\x56\x20\x1d\xfd\x4d\x6c\x48\x93\x0f\x4d\x39\x92\x16\x93\x04\x28\xf6\x1b\x34\x58\x69\x6a\xbc\x42\x1a\xdc\xdb\x32\x60\x4f\x3c\x42\x5e\x8f\x47\x1a\x71\x56\x69\xbc\xe4\x12\x7d\xdc\x93\xd0\x76\xe4\x84\xd8\xa6\xc3\xac\x10\x6a\xc7\x2a\x20\x67\x58\xf7\x11\xaa\xaa\xca\x43\x8b\xe8\xaf\x0d\x21\xf9\x4a\x36\x4a\xbb\xda\xae\x42\x1f\xfd\x18\x86\x16\x4b\x58\x6a\xf4\xf3\x04\x99\xaf\xc4\xa9\xe1\x16\xe3\x45\x6e\x31\x7a\x19\xca\x6c\xd9\xe4\xc3\x3c\x8e\x44\x47\x40\x15\x9a\x68\x70\x1c\x66\x87\xa6\xb0\xd7\xb3\xde\x3a\xf6\x72\x58\xa9\x44\x31\xbf\xbe\x25\xdb\x0b\x51\x71\x7d\x9e\x10\xb2\xde\x73\xe9\x22\x39\x84\x66\x79\x69\x7a\x21\xa4\x97\x10\xfc\x1d\x0d\xc8\xf2\xfc\x34\x5b\x9e\x9f\x46\xbe\x28\x7f\xd6\xc8\x91\xca\x16\x17\xad\xa6\x31\x46\x94\x13\x7b\xad\xd7\x2f\x95\xf1\x6e\xcd\xcf\x6f\x5c\x99\x2a\xe3\xec\xde\x5d\x8f\xc4\x70\xd0\xa2\x72\x23\x1b\x18\xbd\x4b\x5b\x6a\x94\xa5\xd1\x28\x77\x4c\x2c\xf4\x90\x2f\xe1\xcd\xc8\x49\x93\xab\xcf\x5f\x1f\xaf\x3b\x47\xd1\x61\x2f\x0f\xbb\x82\x17\xc2\xbb\x3e\x6e\x07\x8e\x1c\x53\x30\xb9\x60\xf2\x3c\xb4\xcb\x86\xa6\xeb\x9c\xbb\x93\xa7\x7c\x14\x0e\xe3\x32\x4c\xe0\x89\x50\x0f\x48\x95\x7b\xb3\x85\x38\xd5\x7b\x9b\x9e\x2d\x2f\x88\xf8\xb3\x05\x93\xf0\x3c\xb5\xcb\xb9\xce\x59\x6d\x2c\x97\x79\x98\x16\xf5\xee\x6f\x0b\x12\x88\x07\x6f\xb0\xd6\xb9\x94\x59\x54\xd8\x49\x37\xa8\x6e\x36\x5a\x48\xcc\xc3\xf6\x0f\x5d\x6e\xa0\xd6\x71\x7f\xe7\x53\x8c\xe8\xfe\x67\x14\x89\xfc\x2d\xcb\x79\x40\xd3\xf7\x43\x72\x45\xbf\xb2\x49\xbd\x72\xaf\xc2\x82\xff\x0c\x71\x1b\x7a\xb7\x17\xec\xbe\x29\x6a\x12\xd4\x8b\x8e\x12\x88\xc5\xda\x3f\x45\xd7\xed\x46\xc0\x76\x0b\x6f\xb1\xac\xeb\x65\x4f\xdf\x59\x59\xaa\x37\x1c\xc2\x19\xde\x21\x97\xf3\x73\x36\x3f\xd2\x86\x64\xd3\xe0\x15\xe1\x69\x69\x17\x20\x62\x38\x2f\x25\x26\xec\xbe\x57\xd9\xed\xfd\x0d\xc2\x40\x98\xc1\x30\xc9\x56\xb1\x61\x69\x22\x4c\x49\xf1\xd4\x70\xb4\x20\xe5\x2c\xd1\x5e\x47\x63\xdd\x47\x4b\x60\x49\x3c\x58\x90\xc4\x1e\xf5\x5e\x34\x5f\x90\x30\x5c\x9b\x20\x52\x11\x56\x31\xec\xe5\x71\x34\x4a\xca\x51\x1e\x26\xdb\x48\x0f\xf9\x35\x8c\x06\x27\x45\x4a\xaa\xc2\x72\xab\xf2\x77\x4c\xa3\xb9\xd5\x20\x71\xba\xe8\x2d\x28\x90\xc5\xbe\xc8\xbd\xd4\x17\x83\x4f\x4f\xa6\x46\x61\xda\xc5\x0e\xbb\x5f\xad\xc5\xd7\xa9\x68\xbe\x4e\x09\x6b\x16\x2e\x51\x03\xe8\x3c\x35\x80\xce\xbb\x36\x45\xb8\xb0\x10\x1b\xdb\x58\xc7\xcf\x09\x7d\x05\x9b\x8e\x18\x4d\x20\x29\x39\x32\x49\x3e\xef\x86\x2d\x12\x12\xbf\x5a\xf9\x3e\xe3\x55\x02\xc9\x59\x46\xbb\xb6\xfa\x05\xb9\xd6\x61\x14\x9b\x6f\xba\xe5\x71\xd4\x1f\x64\x69\x77\x42\xc8\x6a\xcb\x98\x88\x2a\x5b\x3a\xff\x2f\x63\xef\x16\x24\xc7\x95\x9e\x07\x02\xd5\xdd\x00\x08\x92\xe2\x75\x46\x23\x79\xb5\x2e\xc9\x13\x4b\x2b\x62\x96\xe1\x70\xc4\x7a\xd7\x7a\xc9\x32\x80\x11\x05\xac\xa7\x89\x00\x20\x50\xcb\xd8\x07\x66\x57\x9d\xae\x4a\x22\x2b\xb3\x26\x33\xab\xc1\x66\xf8\x61\x9f\x1c\x0e\x87\x1f\x64\xaf\x63\x77\x23\xec\x88\xb5\xb5\x11\xbb\xd6\xae\x76\x2d\xcd\xc8\x96\x2d\x59\xae\x9e\x8b\xe6\x22\xcd\x68\x78\xe7\x90\x1c\x92\x00\x88\xfb\xfd\x7e\x47\x63\x23\xff\xef\xff\xcf\xf9\xaa\x2b\xe9\xf0\x03\x23\xb2\x88\xee\xea\xaa\xcc\x73\xfe\xf3\x5f\xbe\x4b\x08\x17\x55\x3c\x72\x20\x4e\x79\x02\x82\x04\x69\x8c\x3b\x2e\x4c\x98\xa6\xd0\x7a\xc9\x94\x70\x2f\x34\x41\x89\x46\x71\xe0\x44\x62\x9c\xac\xac\x25\x7d\x41\x19\x77\x6f\x35\x8b\xcb\xfa\x20\x0c\x7a\x88\x28\x86\x7c\xef\xcb\xe3\x0e\x79\x24\xfd\xf5\x71\x5e\x29\x73\xd5\x08\x04\x84\xf6\x3f\x49\xe2\x12\xa3\x22\x5f\x71\xd9\xeb\x08\x84\x06\x30\xa2\x2e\x20\xcb\x1f\xf6\xf2\xbc\x78\xa4\x5e\x05\x08\x48\x73\x12\x42\xf0\x3d\xa1\xd8\x69\x14\x73\x12\xa5\x56\x0c\xb6\x09\x0b\x11\x4a\xe4\x4e\xc4\xbc\xa7\x1f\xb3\x2f\x9d\x7c\x2b\xf4\x46\xd6\x69\x84\x1d\xaf\x96\x8f\xd7\x1f\xd3\x54\x5b\xf0\xfb\x60\x64\x7d\xb1\x43\xee\x23\xdb\xd1\x06\xc4\x23\x3f\x27\xef\x0c\x98\xca\xdd\x09\xe9\x4a\xa8\x3c\xa9\x8c\x78\xc6\x3f\x2f\x56\x3d\xc8\xfe\xd7\x08\x34\xd0\x16\xa6\x97\x2d\x75\x59\x9d\xb6\x00\x43\x90\x7b\xee\xaf\xa2\x34\x96\x7b\xf1\xbd\xbf\xd6\xa1\x24\xd7\xc5\x45\x77\xa0\x25\xbf\x55\x0d\xef\x4f\xa8\x9c\x78\xbf\x41\x76\x5f\x12\x69\x78\xd5\x12\x58\x8a\x3a\x46\xc7\x1b\x91\x8b\x75\x56\x22\xf2\xf2\xf5\x57\x31\x1a\x71\x8b\x74\xac\x83\x42\xf2\xab\x2e\x3b\x54\xd2\x1e\xf9\x3e\xee\x85\xbe\x08\x6e\x9f\x45\xde\x57\x54\x0a\xd0\xa1\x50\x4b\xd3\x6b\x8a\x59\x66\x9c\x2c\x90\x6f\xf9\xaa\x26\xc4\x41\x15\xd9\xdb\x33\x53\x88\xaf\xb4\xcb\x51\x5c\x1c\x82\x94\xce\x9e\x3d\x8a\xef\x7c\x30\xe5\x52\x26\x47\x39\x3a\x88\xd7\x68\x31\x1c\xee\x69\x26\x8f\x35\x73\x4b\xea\x1d\xbd\x6e\x3c\x8c\xcb\x71\x9d\xb2\x95\xbe\xfd\x82\xc0\xb4\x6d\x2d\x04\xac\x6d\x5e\x8a\x3b\xc9\xca\x2a\x4e\xd3\x39\x6a\x33\x5f\xa2\x6d\x87\xca\xc4\xfe\x7f\x83\x83\x36\x80\x24\x53\x70\x1e\x42\x3b\xb1\x6d\xfa\xd2\xb8\x28\x2b\x94\x89\x3a\x38\x9d\x84\xa2\xf7\x76\x14\x8e\x98\x73\xfe\xc4\x4f\x93\x15\xed\x37\xef\xf5\xe0\x10\x79\x03\x84\x7f\x40\x9d\xd1\x5f\x41\xe8\x33\x42\xb7\x65\xaf\x3d\x37\xca\xcb\xa4\xca\x0b\x08\x03\x1b\x68\x34\xb0\xa4\xf0\x6b\xd8\x25\xad\xb5\x20\x38\x32\xce\xba\x6e\xa1\xde\x9b\x36\x50\x0f\xfc\xb4\xfb\x38\x9c\x10\x8a\xfe\x82\xb4\x82\x4f\xb0\xb7\xee\x54\x44\x4f\xaa\xd7\xe7\x03\xef\xf8\x22\x39\xdc\x9c\x9a\xf2\xa6\xaa\xff\x20\x36\xe0\x15\xaf\xa8\x36\xc8\x0b\xa5\x7d\x7a\x2d\x08\xdf\x67\x3e\x41\x2a\x37\x0a\xd6\x83\xfc\x8f\xf7\xee\xf2\x99\x37\x6e\x30\x5a\x3f\x42\x80\x65\x38\xad\x49\xc8\x5e\x64\x9a\xd6\x72\x9d\xce\x41\xc1\x07\x8b\xf5\x5a\xbd\xf0\xd6\x2f\x13\x49\xe9\x2f\x26\x61\x9f\x8d\xd2\xf8\xf5\x98\x74\x32\xf7\x62\x9f\xe9\x8b\x46\x7e\x63\xe6\x00\x8b\x57\x23\xd4\x28\xdc\xbe\xf3\x3e\x5f\x1a\x38\x31\x4f\x59\xa0\x36\xd6\x1f\x88\x01\x06\x5a\x1c\x3f\xd3\xd0\xa8\xff\x82\x10\x8c\xf2\x0c\x42\x9d\xf8\x87\x87\x93\x30\xef\xcc\x8b\x74\x75\x2e\xc4\xf3\x33\x84\xa5\xb9\x4b\x24\xfc\x73\x93\xa0\x56\x5f\x25\xa6\xa5\x83\x22\x03\x00\x45\xbd\x66\x68\xc8\x28\x71\x7d\xa7\x9d\x64\xdc\xa2\x7b\x74\xbb\xee\xd1\x1c\x64\xa9\x3e\x60\x16\x17\xf5\x43\x3c\x81\x98\x8e\x7d\xa6\x8f\x84\xbb\xe7\xa8\x18\x6e\x92\x4f\xf9\x55\xfd\xe2\xc8\x26\x1e\x20\xda\x23\xc9\x55\xa6\x9e\x49\xb1\xcb\x9d\xc3\x79\x7b\xa7\x41\xaf\x6e\x5f\xdb\x2d\x2f\x27\x5d\xff\x0d\x71\x27\xf0\x30\xf4\x7a\xf2\x0c\x8b\xc7\xa6\xa9\xcb\xfa\x8a\x1f\x55\x52\x0f\x0e\x3b\x63\xf8\x10\x17\xb7\x72\xdd\x4a\x90\x3e\xea\x48\x11\xd1\x37\x03\x81\xc3\x6b\xed\xfb\x34\xe9\xb7\x71\xdc\x20\x7f\x7d\xe8\xa1\x51\xf9\x70\x89\x95\xaa\xf5\xe8\xd6\x17\x24\xdf\x68\x76\x01\xab\xdb\x49\x89\xe1\x2d\xb9\x8b\xe8\x37\x3c\x00\x3a\x10\xd8\x07\x78\x51\xb0\x58\xa3\x2a\xbf\xa0\x09\x87\xf0\x3f\x95\xab\x29\xd9\x57\x7f\x9d\x59\x7a\x6f\xe1\x21\xe8\xef\xac\x35\xa9\xbf\x75\x8b\xfc\xb0\xc7\x18\xe0\x36\x80\xf1\xa5\xd7\x53\xea\x86\x95\xf9\x44\xe1\x73\x3f\x8c\x48\xc6\xf4\x1a\x63\x00\x36\x75\x82\xc1\x37\x60\x8c\x06\x4a\x20\xba\xf8\x07\x58\x55\xa6\x61\x24\x19\x1d\xfa\xd4\xb0\xf8\x46\xa6\xb3\x1e\x85\xac\xe7\x2d\xe8\xb2\xf8\x4c\x61\xe7\x2e\x5d\xad\x6f\x22\x08\x9b\x7a\x9e\xdc\x02\xe4\x10\xdf\xc3\xb3\xb3\xec\x28\xa0\xf0\x3e\x8a\xa6\x44\x5b\x01\x1b\xf2\xad\x18\x6f\xc4\x7a\x43\x26\xbf\xc8\x7a\x6e\xe3\x11\xd8\x6e\xc4\x72\xc7\x0a\x3f\x3a\xc3\xf7\x11\x9c\xcc\x50\x74\xaf\x4a\xf0\x30\x51\x85\x01\x5b\xa0\xd7\x4d\x78\xe5\xc3\x71\xe5\x0a\x3d\xf8\xd1\xa4\x04\xb1\x5c\xaf\x27\x4f\x86\x91\xa9\x98\xfa\x6a\xab\xdd\xd3\x0f\xea\x1b\x8c\xb6\xcb\x6d\x02\x8b\x6c\x86\x74\xa0\xa6\x62\xb3\x42\x80\xfb\xf6\xb6\x0b\x57\x9f\x32\x3d\xe2\x8c\x6e\xea\x10\x67\x74\xd3\xda\x53\xfe\x84\xee\x17\xae\x97\x18\x4b\xdd\xf7\x85\x83\x44\xda\x14\xb8\xc2\x39\xe9\x3f\xef\x5d\x7f\x83\xee\xe5\xcd\x09\xe9\xb3\xbe\x83\x87\x6f\x42\xcc\x81\xe8\x04\xc0\x3a\x72\xef\x1b\x13\x52\x66\xbc\x82\x81\x1c\x4a\x65\x35\x32\x31\x73\x3e\x79\xae\xa8\xa8\xd7\x27\x41\xa6\xe3\xb1\x0e\xe9\x67\x29\xb8\x14\xf7\x06\x3a\xe5\xc6\x41\xfc\xbc\xae\xf2\x21\x37\x1c\xb9\x62\x8e\x24\x2b\xf0\x5c\x4c\x22\x38\x28\x6c\x7f\x63\xea\xa8\x4d\x87\xe5\x1c\x1b\x43\x4c\x42\xcb\xf7\x26\x9b\x9f\x5d\xf2\x4f\xb6\x4c\xdc\x30\x71\x41\xfc\x03\x05\xd1\x09\xa6\xf1\x9f\x20\xe7\x76\xd1\x01\x28\xab\xb8\x52\xff\x4b\x6b\xb7\x84\xd4\xfb\x2a\x06\x27\x4d\x5e\xe6\xf5\x37\x37\x07\x25\x1a\xe2\x15\x42\xc4\xa9\xe3\x42\xfd\x60\xbc\x47\xd6\x4b\x7b\xbd\x47\xd6\x23\xbe\xa6\x14\x92\x9a\xe5\xfb\x94\xca\x9e\xa3\x86\xd9\x28\x2e\xbb\x83\xa4\x15\x66\xb0\x97\xa4\xaf\xa0\xd7\x84\x92\x17\x6b\xf9\x95\x38\xdd\x46\xe0\xd2\x3f\xc5\x5a\x01\xe9\xfd\x04\x8d\xcb\xfe\x3d\x02\xa7\xfe\x03\x62\x3e\x3e\xdf\x0d\x89\xa2\x68\xc1\xaa\xe3\xab\x16\xb6\x24\x6d\x71\x71\xc2\xf6\x59\xae\x97\x74\x05\x4c\x10\x46\x70\x37\x10\xe0\x10\xbb\x50\xcb\xe8\x3f\x20\x12\xe8\x3f\x50\x0b\xb1\x3b\x88\x8b\xbe\x7b\x54\xfe\x20\x7a\xa7\x00\x98\xa8\xac\x31\x96\xb0\x72\xac\x80\x9b\x36\x48\x74\x7d\x13\xd1\x9c\x50\xb9\x5b\xac\xed\x73\xca\xe1\xd1\x1f\x8b\xc8\x9f\xe2\xad\x49\x70\x5d\x07\x42\x03\x0b\xfd\x3a\x7d\xd0\x5b\xf5\x3a\xb1\x6e\x4b\xd6\x2b\xf2\x6e\x21\x5a\xf4\xbe\x60\x7c\x2f\x22\xb9\xda\xf7\x66\x26\xea\x07\x77\xbc\xd0\xce\xf2\xcc\xbd\x26\xf6\xad\x95\xc8\x9f\x22\xd2\xe0\x76\xa0\x61\x74\x3d\x0a\xf9\xe3\x47\xa4\x67\xa1\xa2\x72\x43\x97\x55\x62\xb8\x81\x91\xc8\xdf\xc3\x5d\xd0\x17\x98\x55\x9a\x7a\x8e\x3c\x75\x8f\xfa\x9a\x16\xf0\xde\x1f\x26\xa9\xfb\x76\x68\xa8\xbe\xd1\xa0\xe4\xd2\xee\x15\xda\xf4\x95\xc7\x60\x96\xf7\x01\x07\x76\xd1\x4f\x5a\xea\x14\xb5\xae\xdc\xb6\x72\xb4\xc5\x1a\xc6\xa2\xfa\x56\xd0\xd8\xfa\x9d\x67\x40\x1b\xc6\xb8\xeb\xb2\x4c\xb8\x18\xd0\x6f\x92\x43\xc1\x4d\xe4\xf3\x27\x54\x65\x55\xe4\x90\x5c\xb5\xa1\xf8\x3d\x68\x31\x78\x98\x88\x27\x3c\x2c\x74\xa6\x81\x6a\x23\x51\x44\xc2\xc6\x78\x44\xc6\x69\x5e\x0e\x2a\xc8\x6c\x5e\x94\x79\x1a\xce\xe2\x53\xa4\x77\xbe\x79\x4d\xee\x36\x66\xca\xf7\xa8\x69\xd1\x4f\x5e\x1f\xe6\x2d\xd1\x86\x40\xbf\xf2\x34\x69\x15\x9f\x9e\x96\xb9\x4e\xca\x6a\x2e\x80\x50\xef\xca\x97\x57\x14\x65\xc4\x6a\x9c\x61\x5a\x9a\xa7\x3d\x05\xca\x1b\xb8\x28\x70\x92\xce\xfb\x7c\x6a\x69\xbc\xba\x3d\xd4\x79\x5f\x94\x64\x0c\x0d\xc4\x2b\x58\x17\xd8\x50\xba\x16\x30\x8d\x80\x9a\x06\xf6\xe1\xfb\x11\x71\x21\x1f\x22\xf5\x31\xe0\x8a\x04\x10\xd4\x47\x4f\x76\x82\xf3\xc9\xbc\x08\xbb\x98\x8c\xfa\xc6\xc3\xf8\x2b\x36\x74\x65\xc5\xa1\x13\x24\x2c\x77\x62\x4a\xa8\xd3\xe6\x61\x4e\x1c\x3f\x90\x07\xde\xa0\xec\xe5\x2c\xdd\xd2\x23\x34\x77\x5c\xce\x8b\xbe\x94\x95\x2d\x22\x16\xa3\xa9\x65\x2d\xbf\xe0\x27\x98\x17\x5f\xa2\xe3\x1e\x34\x3e\x6f\x1f\xbf\xcf\x04\x9c\x16\x3a\x24\xe5\x72\x5c\xb0\x3d\x9a\x89\xcb\x13\x02\xa0\x6a\x01\xac\x52\x84\xe0\x85\x35\xd2\x66\xf8\x58\xbe\x23\x70\xaa\x7f\x1f\xe7\xa9\x5a\xdb\x8a\xc4\x01\x92\xf0\x7f\x45\x48\xf8\x13\x88\x65\x1a\xbf\x64\x45\x18\xae\x48\x1e\x96\x71\xfa\x5b\xbf\xf9\x1b\xa6\x45\x89\xbc\x0c\x08\x31\x3d\x07\xf1\xe0\xef\x20\x19\x40\x5c\x83\x6f\xaa\xe9\x2a\xca\xe2\xc5\x37\x7f\x5b\xec\xbf\xcc\x04\x94\x0d\x99\x9f\x80\xe4\xb1\x81\x28\x9e\x25\xc2\x9e\x20\x6a\xe3\xac\xeb\xe6\x03\xd5\xf5\xcc\x24\xe8\x05\x5f\x64\x47\x89\x4f\x48\xf8\x60\x73\x87\x4e\x28\x95\x4a\x9b\xa3\x39\x07\xd8\xf2\x48\x4d\x94\xf1\x87\xd6\xda\xad\x06\x85\xf3\x76\x4f\x70\x61\xda\x42\x41\x32\xab\x60\x66\x7d\x41\x7d\xbf\xa5\x71\x7a\x68\xfe\xf3\x01\xf1\x04\x05\xd5\x36\xa3\xbe\x98\xca\xc0\x86\x49\x3c\xc7\x80\x74\x79\xbc\xf8\x41\x08\x0d\xaa\x88\x75\x83\x0d\x4d\x95\x8f\xfb\x83\x05\x9c\x41\x36\x27\x0e\xdd\x3a\xe4\x12\x3e\x9d\x0f\x28\x86\x33\xf2\xb6\x58\x73\x2d\x36\x6a\xce\x47\xab\xad\x06\xdd\x29\x93\x97\x0a\xe3\x8c\xa5\x24\x5d\x2a\x1c\x3a\xdf\x68\xae\xe0\x63\xeb\xf5\xcc\x54\x76\xdf\x8e\xf6\x20\xce\xfa\x7a\x57\x35\x54\x44\x24\x0f\x39\xab\x28\x73\x70\xc7\xcb\xed\x18\x98\x26\x63\x56\x11\x64\x96\x67\x93\xe5\xb8\x58\x71\xab\x73\x21\x82\x1d\x61\xd9\x3a\x33\x39\xb4\x87\xf2\x8c\x75\x0a\x56\x47\x79\x35\x70\x65\xf2\xba\x15\x58\x5e\x70\x9a\x54\x55\x66\x85\x6f\xf7\xb6\xe3\x5e\x3e\xf2\xc6\x64\xfe\xd4\xf3\x26\x39\xaa\x57\x6b\x10\xfb\xfc\x49\xd9\x31\xde\x58\xca\x7b\x47\x9f\x46\x96\x8c\x6a\xe0\x2d\x01\xa2\x1b\x44\x45\x36\xb5\xca\x71\xad\x11\x1f\xe4\x7d\xd9\xd5\xa6\xcd\xc7\xc8\xfd\xdf\x9f\x90\xd4\xd1\xd5\x88\xbc\xf1\x2e\x12\xba\xe2\x3b\x4c\x2b\xbd\x85\xfb\x0f\x60\xce\x96\xb5\x70\x38\x3c\x94\x58\x85\x26\xce\xb7\x90\xc4\x21\xd2\x3f\xda\x09\xa7\x46\x55\x8c\xab\xc1\x42\xb0\xf5\xff\x18\x81\xc1\x58\xd3\xf5\xed\xc0\x93\xfd\x4b\x59\x18\x7a\x2d\xdb\x19\x4f\xf0\xc6\x34\x13\x61\x3c\x9c\xa7\xbf\xa4\xf2\x30\xfa\x02\x59\x88\x8a\x08\x50\x95\xf8\x59\x93\x95\xa8\x64\x43\x3e\x5e\xe3\x56\xc3\x2c\x4c\xaf\x67\x7a\x4b\xbb\x0e\xb4\xfb\x71\x92\x61\x13\xa2\xfd\xf5\x09\x91\x87\xae\x91\xa6\xfd\x29\x02\xe6\x96\x55\x3e\x1c\x59\x27\x1a\x60\x8c\x0f\x08\xf6\xf4\x41\xa3\x2e\xc7\x30\x2f\x2b\x0c\xef\x2d\x8e\x49\x66\x01\xbc\xe2\x65\x84\x0f\x3c\x9e\xa3\x3c\x3d\x1c\xc4\x59\xe6\x74\xe6\x85\x64\x53\x00\xbd\x2f\x6b\x13\xe5\x92\x54\xdb\x38\x2b\xf4\xb1\xea\x3f\x10\xaf\xfd\xa6\x6f\x5e\x67\xf1\xd0\x95\x0b\xf5\x61\x81\x0c\xf1\x13\xde\x2f\x73\x10\x05\xf2\x5a\x97\x81\xca\xba\x59\xcd\x0b\xb1\xc9\xae\x53\x1c\x2c\x2b\x37\x94\xca\x74\x4a\x9e\x4d\x5f\x34\x41\xc4\x5d\x6f\xac\x36\xbd\x01\x42\xf2\xcf\xa2\x80\x18\xf8\x67\x34\x3b\x2b\x7d\x50\x42\x61\xa0\x58\x6c\x7d\xc1\x1c\xde\xd1\x28\x2f\xa5\x46\xd8\x3d\x65\x18\x18\xc6\x8f\xb2\x24\xd0\xc5\x40\x70\xd4\x6b\x7f\x67\x4a\xf7\x9a\xb6\xaa\x70\xcf\xde\xe1\x0e\xe1\x3b\x54\x32\xc5\xbd\x61\x52\x95\x28\xc0\x10\x48\xdf\x95\xb5\xad\xd7\x4d\x89\xaf\xa5\xb3\xad\x40\x4f\x45\xb2\x6c\xb9\x69\x98\xd5\xa5\xe3\x43\xee\x70\x5c\x0c\xe5\x47\x4d\x56\x2d\xa0\x3c\x42\x8a\x3c\xcc\x45\x02\xdf\x51\x5f\xf4\xaf\x74\x42\x5f\xf4\xaf\xac\xcd\x96\x0c\xed\xb8\xdb\xcd\x87\xa3\x38\x0b\xf4\x45\x64\x3d\x6f\x50\x06\xf4\x46\x83\x7c\xe5\x62\x3b\xcf\x1c\x99\xb4\xbd\x3b\x21\x8d\x92\x49\x70\x19\x3b\xd1\xc4\x67\x71\xaf\xbd\x66\x00\x64\x54\xd7\x6f\x91\x4e\xff\x5b\x84\x29\x18\xc6\xa9\x5b\x8e\xbb\x55\x5e\x00\x2d\x6d\xdc\x1e\xe2\xf9\xcc\xb2\x6a\x77\x09\xdf\xb3\x34\x9e\xb0\x37\x19\xf7\xbd\x9c\x8f\x9b\x08\x80\xcb\xe3\x0c\x5e\xfe\x6a\x26\x8d\xdd\xa7\x92\x44\x11\x3d\xa5\x49\xa0\xcd\x02\x3a\x8f\x98\xf9\x41\x83\x9c\xe8\x0b\xed\x6a\x10\x57\x52\x05\xe0\x8d\xae\xa2\x28\xc4\x47\x87\xac\x16\x8a\x97\x0b\x64\x5f\x7b\x43\xe2\x3a\x56\x99\x8a\xba\x9b\xd7\xc3\xc6\xef\xfa\xb5\x5d\xa6\xa7\xd3\x22\x30\xeb\x6d\x62\x90\xdc\x9e\x41\x6b\x7d\x45\xe4\x20\xe7\xa8\x1f\x78\x6e\x03\xd3\xad\x8e\xaf\x66\x77\x48\x11\x2e\x75\x2e\xd0\x1c\xfd\xb4\x27\x4c\x78\x08\x43\x56\xb8\x61\xbe\x12\xa7\xad\x80\xb4\x04\x82\xcb\xe2\x48\x18\xec\x64\xf9\x92\xd3\x01\x92\x61\x3f\xc9\x2d\xe7\xf6\x94\x87\xee\xcf\x91\xc3\x47\x5e\x62\x45\x20\xed\xd6\x8e\xa6\xbe\xa0\xc1\xc6\x72\x9a\x1f\x76\xba\x78\x70\x8a\xff\x09\x61\x9a\xfe\x24\x68\x8d\xc4\xe9\x21\x0f\x44\xb4\x90\x1d\xa0\x15\x57\xb8\xf4\xbe\x3d\xd3\x40\x14\xbc\xb8\x59\x00\xcb\xdf\x62\x67\x51\x6b\x26\x35\xc8\x7b\x8e\x0f\x15\x71\x5d\xe4\xcb\xbb\x23\xf3\xfe\x8c\x94\xb5\x3e\xa3\x41\xde\x57\xb3\xde\x1c\x0d\x45\xd6\x69\x7c\x35\xd7\x21\xae\x5a\xf8\x4a\xae\xd7\x93\x01\x58\xfd\x4b\xb8\xb7\x57\x26\x54\x1d\xdd\x9a\x04\x6c\xd0\x63\x9d\x00\x13\xb8\x42\x7f\xb4\xca\xdd\x1c\x4d\xe7\xbe\x27\x55\x81\x97\x7f\xf4\x6a\x11\x57\x9b\xc6\xf7\x85\x4b\x93\x15\x5d\x97\xa8\x62\x40\xb9\xd7\x6b\xff\x39\xd3\xf8\xf0\xaa\x2b\x0c\x85\x66\x1d\x31\x62\x38\x4f\x91\x61\x3e\xa0\xa1\x60\x99\x0b\x2f\xfa\xa5\xbd\x5a\x13\xdc\x25\x95\x9f\xbb\xf4\x2d\x96\x2b\xe4\x83\x20\x08\xdc\xa5\xae\xd4\x02\x04\xf0\x6c\x31\x3f\x16\x40\x46\x5d\x87\x1b\x87\xb5\xf0\x43\xe9\x51\xa9\x5e\x94\xa6\x90\xfa\x2f\xf2\x6e\xa6\x24\xb5\xf1\x70\xdb\xbd\x28\x16\x49\x59\x99\xac\x38\xf1\x84\x00\x19\xe8\x02\xdd\xbb\x93\x34\xd1\xbf\xe3\x65\x39\x61\x58\x68\x85\x87\x51\x03\xe9\x2c\x3e\x45\x09\x41\xe1\x46\x69\xdc\x75\x5b\xd9\x6d\x8b\xec\x00\xae\x13\x74\xfe\x24\xe9\xa6\x9e\x9f\xb0\x45\x0d\x52\x0f\x94\x42\x1f\xa3\x58\x31\x21\xaf\x59\x99\x8a\xbd\xed\x58\x1e\x6e\x9d\x1a\x9a\x19\x64\xc8\x79\x4f\x45\xa1\x8a\x58\xcd\xc7\xc5\xb6\x30\x9f\xb9\x2c\x99\x2d\x56\xe3\x26\xdc\x7c\x26\x4d\x68\xfa\x3b\x45\xb6\x8d\xc8\x37\xec\xae\xa6\xb9\x06\x5d\xaa\x6f\xa9\x29\xca\x37\x9c\x33\xc3\xf8\xd5\xdc\x34\x26\xbc\x7b\x5d\xfd\x6e\xfa\x22\x9c\xf4\xa3\xc4\xee\x35\x92\x80\x23\x11\x79\xa7\x1e\x21\xe4\xdc\x72\x5c\x0c\x21\x8e\x66\x7d\xa7\xa3\x12\xd9\xcc\x91\x75\x4a\x23\xc2\x15\x8f\x93\x27\xc7\x11\x56\xb9\xfb\x84\xd6\x2a\xbc\x04\xc9\x01\xec\x65\xb3\x3d\x91\xbb\xa5\x51\x27\xa2\x56\xdc\x3f\x9f\x10\x2c\x49\x39\x04\xc8\x95\xfe\x02\x39\x0e\x3a\x2b\x70\xa5\x22\xbf\xe5\x17\xb4\xe9\xf4\xc7\x24\x7e\x21\x7a\x8b\x5a\xc7\x1d\x72\x18\x01\x7b\xf8\x9a\x97\xe8\xdb\xd2\x09\xa3\xc4\x63\x53\x63\xa2\x20\x33\xf0\x29\xdd\xa7\x41\x9c\xf5\x92\x14\xce\x4e\xe8\x6d\xbc\x21\xbf\xa5\xd7\xd4\xcf\x1a\xb8\x5e\x1f\x99\x04\x4e\x39\x38\xbd\xb1\xe2\xb6\x59\x55\x85\xf8\x3f\xc8\x2b\x97\x0a\x3b\x0f\xa3\x23\x6c\x22\xdc\xc1\xcd\x92\xf2\xa0\xc1\x70\x73\x42\x76\xbd\x49\x3c\xac\x3f\x94\xb5\xea\xf1\x13\x97\xf1\x50\xf4\x85\x87\x2a\x97\x95\x2b\x92\x14\xdd\x57\x7c\xe9\x47\xd6\xc2\x0d\x78\x64\xc6\xa5\xc7\xba\x85\x85\x4b\xd4\xa9\x5f\x25\xe5\xf1\xf6\xa6\x2f\xef\xfb\x67\xea\xcd\xb9\x7e\x5c\xe4\xa4\x8f\xcf\x9c\x0d\xbb\x17\x05\xd3\x34\x4c\xba\xcc\x71\x38\x4b\x03\x89\x59\xc5\xa7\x5f\x6b\x8f\xb3\x72\x5c\x8e\x5c\x37\x10\xed\x3c\x73\xc9\x43\x75\x37\xd1\xed\x79\x87\x85\x11\x4f\xcd\xce\xc5\xf6\xaa\xfb\xa6\x00\x99\x5b\xde\xf4\x07\x45\x5c\x78\x2a\x3e\x1e\x0f\x62\xbd\x65\x3e\x26\xec\xdc\xe5\x63\xc2\xcc\x11\xb1\xab\x3d\x4c\x7a\xbd\xd4\x21\x15\x61\xd6\x1d\xa6\xcf\xe7\xa8\x31\xf1\x20\x0a\xd2\x59\xaf\x8a\x34\xa7\x67\xfd\xfe\xee\x84\x44\xb4\x7f\x97\x9a\xe8\x7d\x97\x55\xa9\x83\xcf\xcf\xa2\x89\xa2\xc1\x95\x43\xaf\x1b\x52\xb6\x97\xdb\x3d\xf7\x6a\x4c\xae\x22\x28\xf8\xf4\x7a\xba\x89\x38\x72\x55\x52\x25\x2b\x4e\xe0\x19\x5a\x21\x23\x7b\x02\x70\xe0\x5b\xf2\x05\xd0\x6a\xba\x36\x25\xeb\x12\xce\xa6\x7d\x7f\xe7\xef\x0a\xb7\x0f\xc5\x2d\xd2\x40\xd3\x48\x97\xef\x85\x0d\xaf\xe0\x5f\x9b\x22\x87\x58\xbb\xb5\xc3\xe7\x9c\x74\x48\xd6\x4f\x4b\xf0\x5a\x9f\x65\x2a\x8a\xb0\xa1\x70\x7e\xe6\x42\x49\xae\x5e\x80\x38\x8d\x70\x56\xa0\xbc\xfd\x88\xd4\x28\x32\x68\xdc\xb6\xfc\x14\x04\x13\x0d\xc4\x86\x4d\x6b\xc1\x08\x8f\x19\xb4\x7f\xbb\x1a\xb0\x05\x35\xfa\x00\x56\x64\x35\x68\xee\x96\xe3\x62\x94\x8e\x4b\x8b\xc4\x66\xd5\x21\x6f\x61\xe0\xbd\x06\x81\x5f\x97\xf5\xc7\xe9\x32\x5a\x30\x2f\x7b\xbf\x10\x89\x96\x66\x18\xc2\x0a\xb8\xd5\xca\x56\x04\x00\x0e\x72\x9a\x1f\x45\xd4\xbc\x7e\x8f\xf0\xc7\x8a\x62\x33\x3d\x2c\xf9\x44\x68\xa8\xdc\xc4\xf1\x64\x9a\x2f\x8c\x02\xcc\x74\xc8\x17\xb4\x68\xa7\x19\x8e\xe8\x6b\x83\xb5\x89\x45\x02\x43\x34\xc4\x98\xab\x4d\xea\x50\xf9\xe1\xc0\x8b\xc3\xfe\x03\x8c\x49\xaf\x9b\x5c\x48\x25\x54\x96\xcc\x4f\xf9\x6e\x14\xf8\x29\xdf\x6d\x72\x18\xee\xbd\x9a\xc4\x2d\x56\x49\x53\xf2\xb2\xbe\x20\x20\x4a\x3c\xae\x90\x26\xe1\xce\x7c\x22\x69\x92\xba\x56\x4f\xc2\x46\x3b\x4a\xc2\x5f\x47\x66\xfe\xe2\xde\x17\xf7\xb7\x53\x87\xce\x09\x62\xdb\x37\x88\x6b\xf3\x0d\xe2\xc2\xc4\xe3\x2a\xaf\x53\x6c\x0c\xbe\xbd\xcc\x02\x81\xcc\x9e\xf0\x7c\xde\xae\x13\xd1\x04\x79\x6e\x18\xa2\xa8\x3d\xb1\xbe\x68\x32\x3c\xaa\xe2\xac\x0e\x1a\x89\xb2\x3d\x94\x89\x47\xce\xe9\xc7\xe9\x84\x7b\x35\xce\xc6\x71\x01\xa7\x1d\xe0\x36\x15\xf8\xe8\x25\xa1\xbc\x53\xa4\x3a\x15\x9a\x3e\x54\x18\xde\x26\xc3\x91\x2b\x96\x45\xa0\xc3\x4f\xe8\xde\x93\xbf\xa7\xd7\x4d\x45\x43\x99\xa7\x49\x4f\x81\xc6\x4a\x9e\x9e\x22\x52\xd3\x88\x33\xce\x2a\x9f\x00\x79\xb3\xcf\x10\xf2\xaf\x35\x08\x47\xec\x6f\xf7\xf2\x61\x92\xc5\xbe\xa7\x69\xba\x71\xf2\x15\x4c\x51\x2e\x1c\xc5\x43\x57\xc5\xe9\x96\x0d\x83\xd8\xfd\x1a\x8e\x2f\x00\xfc\xaf\x2f\xc8\xb9\xec\xe6\x84\x4d\xff\xf1\x99\xcc\xa9\x3d\x1c\x28\xf1\xb8\x52\xe1\x23\xcc\x31\x7e\x10\x91\x08\xe6\x0f\x1a\xc0\x9d\x2f\xb7\x87\x71\x16\xf7\x37\x54\xa9\xad\xb5\xb0\x44\x5a\x9d\x10\xd4\x5c\x52\x0d\x5c\xb1\x25\x88\x10\x5d\x47\x4f\x08\x8b\xf6\x0f\xea\xe7\xf0\x70\x8d\x7c\xe3\x55\xc5\xcf\xfc\xdb\x5a\x5e\xb3\xeb\xdb\x33\xd1\xec\x2b\x82\x32\x3d\x2c\xf8\x33\x79\xb6\xa6\xed\x1a\xb8\xf6\xfc\xa0\xca\x71\xaf\xe7\x32\xb9\x8b\x26\xc3\x4c\xdc\xde\xcb\x34\x5e\xbd\x18\xcd\x36\x46\x4d\x63\x90\xd5\x94\x42\x2d\x3e\x74\x71\x1d\x34\xd4\x42\x02\x23\xd1\x77\x68\xee\x7c\x8e\x88\xac\x0a\x0a\xd0\x1f\x8a\x9e\x9e\x66\xcd\xee\xd9\xd3\xfe\x32\xab\xd6\x5e\x24\xd5\xda\x8b\xd3\xde\xaa\x43\xf7\x68\xbd\x2f\xac\x6f\x11\x60\x07\xd8\xae\x68\xc1\x5d\xc1\xe0\x0f\x81\x54\xe7\x9d\xfa\xa2\x43\x26\xea\x6a\x16\x8c\xa5\x07\xac\x04\xc6\x1b\x5b\x3a\xb4\x96\x37\xa9\x3f\x84\x22\xd7\xa2\x30\x70\x3f\xcf\x38\xee\x71\x96\xc0\x07\xfe\xe0\x8e\x75\x39\x90\xd6\xcf\x7b\x9e\x5c\x39\x5e\xca\x8b\x9e\xac\x7d\x39\x1f\x01\xb6\xb8\x4c\x5e\x64\x3f\xc2\x0e\x47\xe9\x77\x66\x66\x1e\xf0\xdc\x73\x7e\xf3\x50\x03\xf4\x38\x37\x40\x8f\x13\xe1\x69\x34\x2e\xca\x71\x82\xf5\xa1\x9d\x66\xb2\x9a\xfd\x64\xca\x2a\x7f\x38\x1a\x57\x28\x27\xac\xee\xd8\xb4\x46\xb6\xf7\xff\x0f\x63\xc9\x36\x61\xfa\xed\x1f\x2f\xf1\x38\xc9\x74\x5e\x56\xd5\xfa\x36\x74\x8e\xb1\x84\x80\x05\x43\x31\x7b\x5c\x4b\x2d\xfd\x63\x9d\x50\x43\x7e\x88\x84\x81\x10\x1b\x46\xd1\xbc\x10\x31\x09\xbd\x9b\x0f\x25\xad\x37\xde\xa8\xfc\x16\x76\x12\xb4\xe7\x4c\x97\xc3\x77\x02\xd4\xde\x34\x64\x9a\xaa\xdc\xad\x3e\xd1\xa8\x60\x70\x54\xdf\x69\x14\x83\xcc\xcb\x32\x01\x0b\x9c\x3d\xd8\x0c\x95\xc7\x2b\xf4\xd0\xa1\x42\xc0\x30\x38\x64\x3e\x94\xbc\x4b\xaf\x3d\xd7\x48\x30\xe9\x95\xeb\x56\xf3\x01\x52\x7e\x57\xea\x1d\x43\x2b\xca\x77\x37\xac\x64\x78\x74\x8f\x76\x9a\x34\xb2\xd1\x95\xd4\x68\x6c\x90\x11\xc6\x8f\xd0\xd2\xe8\x0e\xe2\xe1\x92\x2b\xb6\xb6\xbc\x5f\xe4\x6d\xe9\x0a\x82\x1f\x73\x93\xe9\x76\x77\x10\xb4\x10\x63\x4f\xc8\xa9\x83\xa2\x08\x63\x0b\xac\x8f\xb9\xb5\xd6\xce\x9d\x2c\x15\x10\xe0\xc5\xd9\x73\x22\xca\x07\x7c\xcf\x14\xa2\xf7\x13\xda\x6b\xa8\xaa\x6c\x88\xf4\x14\xb1\xbf\x8b\xc2\x3c\x97\x77\x69\x75\x77\x1b\x6f\xa2\x2f\x9a\x98\x6a\x65\x9a\x1f\x16\x67\xf6\x40\x5c\x84\x2c\xb3\x5e\x4f\x02\x65\x54\x4c\x7b\xe6\x49\x66\x00\xa8\x22\x2c\x38\x6d\x21\xa0\x59\x79\x81\x9a\xf8\x47\x28\x77\x8d\x93\x02\x1e\xb4\xd6\xaa\xbd\x46\x54\xb7\xf7\xf1\x59\x91\xa3\x9d\x6b\x22\x49\xba\xee\x20\xb7\x5e\xb2\xe2\x66\xa6\x30\x34\x34\x7a\x1c\xe4\xe3\xb4\xf7\x58\x50\xd7\xfd\xce\x84\x04\x01\xcf\x32\x69\x57\x51\xaf\x78\x20\x47\x36\x08\x03\x84\x99\xfa\x11\x52\x85\xf8\x0e\x77\xb7\x64\x53\x63\xbe\xfa\xc8\x5a\x50\x4e\x3b\xab\xbd\x29\x2f\xaa\xf8\x92\x4f\xd2\x6f\xcd\x3c\x87\x9d\xbb\x20\xe4\x96\x74\x5b\xe1\x7e\x9c\x23\x76\xec\xb9\x99\xfa\x68\xcf\x9e\x76\x91\x94\x87\x4a\xd9\xd7\x68\xe4\xa9\xc8\x0c\x96\xd9\x39\xc6\xb7\x6e\xe9\x10\x9f\x3a\x17\xa8\x24\xfa\xab\xe8\x3b\x1c\x23\x3a\xdd\x4d\xb2\xfd\x3b\x43\x8f\xae\xac\xe2\xbe\xdd\x7b\x2c\xa7\x23\xbc\xb6\x8e\x44\xcf\x6e\xf8\x80\x5f\xfd\xad\xf6\x73\x4a\x6f\xc3\x1d\x9c\xeb\xc8\xf8\x14\x8d\xa5\x9b\x88\x92\x86\xbf\xe4\x6d\x90\xa6\xab\x5f\x0c\x2c\xbe\xf5\x09\x09\xe4\x7f\x7f\x42\x5c\x4f\x68\x69\xa0\x17\xf9\x30\x0a\x42\x6e\x47\x05\x6e\x61\xdd\x42\x39\xca\x10\xde\xe6\xd6\x08\xda\xf4\x0d\x46\x4d\x6d\xea\x90\x47\xc1\x5d\xf8\xe1\x58\x97\x0a\x8f\x11\xbb\xe1\x2a\x8e\x49\x8c\xee\xaf\x49\x18\xf0\xfe\x55\x5e\x25\x1a\x5c\x0b\xc9\xa7\xf6\x7d\x69\x8d\x30\x84\x97\xd9\x2a\xe8\x48\x14\x88\x9c\x0f\x81\xaa\xb5\x99\xc3\xdc\xde\x5d\x07\xd6\x2f\x03\xb5\x8b\xf3\xff\x67\x54\xa6\xae\x1e\x52\x8a\x3b\x1a\x95\x47\x49\x80\xfc\x28\xcd\x08\x86\xf1\x6b\x49\x37\x2e\xdc\x16\x7c\x7e\x44\xab\xe3\x11\xb5\x22\xde\x26\x67\x38\xad\x3c\x51\x17\x5c\x8d\xc2\x54\x56\xbb\x26\xfa\xeb\xd4\xf7\x59\x1a\xa7\x4b\xa8\xe6\x4d\x12\xb1\xe5\x2d\x63\x1e\x4c\xbe\x40\x7e\x4b\xd0\x04\x4c\xf2\x8c\xb1\xe6\xd8\xf8\x7a\x3d\x83\xf8\xaa\xeb\x10\x37\x2e\xf2\x5e\x9e\xa6\x71\x21\x4b\x5c\x6d\x88\x3a\xe1\xa3\x9d\xe7\x49\xc3\x8d\x99\x22\xe2\xe0\x8e\xc5\xfa\xb0\x1e\x26\x95\xcf\x9f\x4d\x3d\xb6\xe5\xf5\x17\xfe\xc3\xe4\xe7\x03\x95\xda\x15\xc5\xea\x30\xce\x7a\x60\x15\x87\x21\x17\x38\x90\x66\x8d\x4a\x26\x37\x67\x27\x1b\x17\xfd\xae\x03\xed\xe5\xa1\xec\x61\x93\xf8\x23\x78\xe5\x67\xa1\xa7\xfc\xf5\xb1\xf8\x00\xce\x53\x4d\x74\x69\xca\xf5\xfe\x16\x57\x48\x53\x44\xdf\x5b\x93\x50\xd9\x0e\xe2\x34\x9d\x0b\xc7\xc9\x1f\x52\x05\xfa\x97\x74\xae\x7f\x97\x7e\x25\x4e\xd5\xd5\x44\xf3\x90\x88\x5a\x1b\xff\x88\xf2\x9c\xc2\x55\x71\x92\xba\x62\x2e\xa0\xa1\x35\x13\xc6\x80\xf7\x24\xdb\xf1\xdd\xf1\x4c\x1d\x71\xd2\x10\xea\x31\x89\xd2\x1e\x63\x10\xc4\x69\xd2\x14\x6a\x02\x22\xee\x6d\x1f\x8e\xb3\x00\x14\x30\x98\x6a\xfd\x4b\x86\x65\xe5\xec\x61\x58\x3e\xff\x48\x50\x0b\x39\x22\xd1\x18\xa7\xd3\xd6\x4e\xbd\x3f\xa9\x51\xb0\x97\x9d\x5e\xd9\x7f\x86\xe8\x72\x75\xc0\xc7\x61\x0e\xc6\xc7\x94\x47\x15\x40\x58\xf3\x9d\x29\x05\xa9\xcc\x95\x79\x15\xe3\xc3\x22\x30\x41\xa9\x59\xaf\x9b\xc8\x56\x4b\xf5\x9a\xc4\x9d\x45\x4f\xed\x1a\x20\xb3\x5e\xff\x3e\xb8\x98\xd1\xc6\x1f\x17\xee\x89\xd6\xaf\xbf\xe4\x8d\x24\x5a\x3b\x77\xad\x43\x39\x02\xb1\xee\x5a\x44\x2c\xda\x5f\x00\x2b\x14\xc5\x09\xf0\x7e\x98\xb9\xfc\xb5\x8e\x3c\x37\xe4\x25\x0a\x56\xc0\x5e\x00\xec\x1b\x8b\x6c\xae\x43\x4d\x1b\xa0\x33\x0d\x9a\x15\x64\xd5\x37\x77\xc8\x96\xfc\x3d\x3c\x63\xfc\xc1\x2d\xd3\xc3\x1c\x62\x17\x56\x71\x25\x4e\x6d\xf3\x41\xb6\x1d\xe9\x9a\xd2\x61\x88\xa7\xfb\x31\x96\x26\x50\x0d\xc7\x67\x0e\xc0\xaf\xed\x6a\x2f\xb9\x7e\x92\xb5\xc8\x64\x28\x9a\xd2\x88\x6a\xb0\x3b\x1d\x15\xae\x2c\xc7\x85\x6b\xe9\xcd\x5b\x5c\x5c\xbf\x4c\x38\xcd\xc1\xb8\x57\x2a\xf6\xc1\x4e\x43\x82\x76\xdc\xf4\xb9\xd0\x72\x92\xa5\x71\xd6\x13\x1d\x10\x83\xbf\xc8\x0f\x5a\xb6\x86\xad\x8c\x02\xf2\x14\x89\x55\x3d\x68\x24\x50\xc5\x3d\xe5\x5c\xa3\x6f\xa0\x22\xb7\xd6\x7a\xc5\x7b\x19\x48\xc6\x42\x48\x9a\x8f\xca\xc4\x73\x50\x90\x25\xcc\xad\x85\xec\x61\x8e\xaa\xeb\x6e\x5c\xa4\xb9\x36\x60\x3c\x66\xaf\xfe\x13\x56\xc8\x6e\x0f\x4d\xd0\x39\xc2\xa3\x5d\xd0\xbf\x8d\x7c\x1b\x6a\xd2\x18\xa0\xdc\x6c\xb0\x05\xdd\xbb\xbf\x9d\xc6\x87\x5b\x01\xdd\xaf\x61\xcb\xa8\x41\x33\xc6\x06\xbb\xda\x85\x5b\xc9\xd3\xe0\x52\x80\x6e\xc2\x75\x12\xed\x7a\x38\x45\x16\x08\xdf\xa8\x18\x0f\xeb\x4c\x37\xb0\x07\x60\xd6\xa1\xd7\x33\x7b\xee\x95\x57\xda\xf5\xa2\xd3\x66\x92\xd5\xb2\x61\x16\x76\x7e\x7a\x84\x97\x17\x55\xf9\x48\x00\x17\xbd\x3d\x09\xdd\x80\x16\xca\x61\x4c\xbd\xe6\x60\x3e\xac\x4e\x63\x93\xc0\x87\x78\x9f\x30\x27\x5a\x1a\x23\x4f\x51\x0f\x5f\xfc\xc6\xbd\x88\xe0\xfa\x37\x1a\x80\xb4\x85\x1b\xa5\x4e\x2b\x60\x6c\x2c\x30\xd6\xcc\x98\xbe\xfe\x23\x40\x28\xbd\x43\x5f\xa0\x3e\xbf\xea\x85\x11\x26\x72\xf0\xfb\xd7\x6b\x2f\x97\x86\x81\x02\x72\x09\xe4\xaf\xa7\x49\xf9\x79\x56\x2e\x47\xfc\x0c\x44\xc3\xd6\x56\x9d\x21\xef\x5b\x5e\x53\x8c\xbb\x1d\x3d\xd7\x8d\x7b\xae\x9c\x0f\x79\xb3\x56\x69\xb8\x47\x37\x22\xc6\xce\x92\x31\xd3\x3f\x99\x7c\x61\xba\xd9\x71\x70\xc7\x0b\xf5\x7f\xd2\x9c\x47\x05\xf6\x0e\x0b\x87\x7e\x2c\x8f\xde\x86\x16\xe4\x7a\x7f\x9a\xc0\xf6\x17\x67\x66\x34\x12\x0d\xf2\xd2\x75\xc7\xe1\xb0\x41\xe4\xff\x23\xb9\xc9\x7a\xdd\x04\x45\x5d\x71\x65\xe9\x3b\xb9\x5e\x63\x7c\x31\x18\xd6\x07\x19\x4d\x71\x13\x2e\x08\x8a\x76\x81\xbc\xc8\x2f\xf8\x26\xe9\x38\x4b\xf3\x40\xb1\xc7\xc2\x39\xc1\x36\x07\x27\xa6\x9a\x3a\x59\x5e\xce\x07\xb2\xd7\x75\xea\xef\x62\xb8\xa1\xd7\xc4\xae\xb9\x4e\x18\xa9\xd2\x65\x49\x5e\x6c\x23\xb4\xd6\x45\xe2\x4a\xfd\xbf\x11\xe9\x69\xdc\xe0\xbc\xf0\x0d\x64\xbf\xde\x59\xda\x6f\xa5\xd3\xe8\x84\xf9\x59\x76\x10\xab\xbd\xeb\xe3\x55\x96\x74\x07\x79\x1a\xeb\x4d\xb3\x69\x2b\x45\xa1\xd6\x5a\xa8\x51\xfa\xae\x18\xc6\x59\xb9\x10\x40\x4d\x17\xb8\x5e\xc0\x84\x5b\xff\x81\xac\xc9\x95\xc7\x85\x09\xd1\xbd\x99\x05\xbc\x6f\x47\x3b\x1e\x8d\xf2\x24\xf3\x0b\x18\x75\xd3\x7d\x02\x43\xdc\x9f\xc9\x23\x9f\x7b\xae\x3d\x72\x85\xa8\x9c\x15\x1a\x43\x6d\x79\xc9\x57\xd1\x17\x5e\x83\xa2\x5b\xe7\xac\x95\x2b\xe2\x34\x79\x1d\x34\x33\x4b\xb2\x31\x1a\xc5\x47\x7d\x48\x1c\xad\x87\x08\xc6\xaa\x16\xd7\x04\x51\x03\xbf\xc7\x7a\xe8\x28\x33\xbe\x83\xc3\x4e\x5f\xd0\x38\x6c\x39\x2f\x5c\x37\x2e\x2b\xff\x71\xbd\x5a\x58\xe8\x00\x79\x5a\x32\xd4\x9d\xfc\xc7\xba\xc4\xae\x3c\xf0\xcd\xd6\x7f\x88\xa6\x00\xf4\xa1\x8d\x17\x57\xd0\x5b\x66\x70\x8a\xd2\x63\xd4\x7c\x45\x0f\x11\x53\xd8\x7f\xca\x93\xb3\x8b\x9e\xab\x5c\x9a\x62\xc4\x67\xea\x9b\xf2\x9b\x26\xbf\xb9\xf1\x09\x1e\x78\x11\xaa\x33\x75\x84\x96\x73\x1f\xf0\xd9\x53\xc4\xf7\x65\x24\xa8\xe0\xe9\x0a\x57\xb6\x02\xf9\xe3\x5d\x22\xdc\xbd\x4b\xe5\x4c\x3f\x8f\x55\x06\x14\xcb\xfb\x64\x14\x8a\x8e\x93\xc4\x78\x4a\xb2\xae\xcb\x7a\x89\x78\x59\xfb\xda\x47\xf3\x0e\xf3\x1c\x6a\xf0\x0d\xa8\x8a\x71\xc9\xd2\xdf\x97\xc8\x82\xf0\xd2\xcc\x92\x43\xa2\xb2\x12\x27\x41\xbb\x0e\x9f\xe4\x36\x19\xdc\x3f\x9c\x42\x34\x35\xa9\x2b\x40\x76\xda\x62\x9b\x07\x77\x78\x91\xe0\x0b\x8d\x5a\x84\x49\x56\x9f\xc9\xa6\x20\xd7\x24\xd4\xd7\x94\xb3\x27\x59\x09\xb9\xa1\x7a\xf9\x98\xfb\x98\x2c\x19\xb3\x25\x6b\xb2\xf8\x1e\xb8\x74\x34\x17\x2a\x67\x96\xf5\xbc\x41\xb6\x37\xcd\x72\xf9\xab\xf5\x12\x07\x9c\x08\x49\xc9\x6d\x69\x02\xa8\xb3\x0f\xca\x67\x03\x0a\x72\x7f\x21\x4f\x87\xf3\x61\x08\x76\x9e\x41\x2d\xe7\xb1\xfc\x31\x92\xff\x2e\xf6\xb7\xbe\x88\x1e\x25\xea\xe0\x5f\x25\xbd\x14\x90\x38\xb4\x4e\xc7\xc4\x05\x79\xcc\x71\x01\xff\xaa\x90\x91\xc0\x47\x94\x6d\xcf\xed\x43\x8e\x21\x0b\x62\x78\xeb\xed\x8b\x7e\xf3\x37\x14\x12\xa6\x48\x19\xd3\x8e\x62\x43\xd3\x88\x94\x20\x4f\x8b\x77\x2e\xea\x86\x1f\x4e\xa6\x9c\x9c\xeb\xa7\x87\x5f\x3f\x8b\x0e\x00\xfa\xab\xdf\x9e\x90\xf5\xee\x39\xa2\x8a\x6f\xef\x4c\xb9\xc0\xed\xdb\xb1\x3f\x40\x02\xeb\x23\xc0\xb3\x51\xf7\xbe\x68\xc3\xdb\x47\xd7\x5a\xcf\x3d\xe7\xe1\xb3\x92\x17\xa1\xc6\x7b\x6a\x2d\xcc\x9a\xe6\xd6\x02\x58\xe7\x04\xce\x7f\xe4\x35\xe0\x64\x21\x44\x9c\xc0\xe0\x1e\xf3\xba\x39\x31\xfb\xb5\xe1\x05\x22\x09\xda\x34\xeb\x4d\x23\xd6\x2a\xaf\xea\x7d\x2c\x5f\x0b\x5b\xe6\x26\xf6\xa6\xbe\xf8\x5c\x6e\xd9\xd2\x78\xd5\xef\x35\x8f\x2e\x5d\x5c\xf4\x32\x8d\x81\x16\x7a\x7c\x6a\x31\x95\x55\xbc\x40\xf2\xbd\xa7\x09\x8f\x63\x1f\xd7\x46\x6e\x72\x4f\xfc\x7e\xf2\x82\x4d\x77\x49\x0b\xa8\x3b\x70\x59\x92\xa6\xda\xe0\xc1\xd9\xfc\x6d\xe2\x5e\x7e\x7b\xf2\x38\x09\x98\x64\x6e\x5b\xc0\x28\xdc\x9a\x84\x6e\xd4\x26\xd1\xb9\x31\x3f\xfe\x80\xdb\xb9\x39\x09\x80\x93\xdb\x28\x39\x71\xea\x9d\xc6\x2d\x47\xfa\x02\xeb\x10\x34\xc6\x1e\x52\x4f\xf5\x50\xd2\xeb\xb9\x62\x7b\xfd\xd6\x2a\xe2\x24\xfb\x0d\x77\xe5\xb6\x7c\x71\xe4\x1d\x8f\x41\x5b\x06\x4b\x09\x62\x07\x88\xcd\x57\x88\xd5\xa9\x76\xb4\x5e\xea\xa0\x5e\xd4\xfa\x53\x13\x0a\xc3\x58\xa1\xfa\x56\xd1\xb3\x34\x86\xc9\x47\xae\x88\x2b\x8f\x6b\xc4\x3e\x5b\x93\x6f\xa8\xd7\x33\xae\x89\x7b\xf6\x08\xed\x37\x4d\x5d\xb7\x1a\xc7\xe9\x5c\x68\x83\xfc\x28\x6a\x6d\x74\xdd\xb0\x36\x87\x57\x96\x49\xf3\x22\x96\x5f\xf1\x6c\xc1\x69\x07\xc4\xfd\xeb\xb3\xd2\x55\x7b\xf6\xa8\xe3\x67\x60\x4a\x1e\xa5\x5c\xeb\x68\x93\x51\x44\x5d\xa9\x08\x02\xff\xe0\x8e\x30\x42\xf3\xde\x12\x97\x18\xe5\x13\xaf\xac\xac\xb6\x88\xc4\x0f\x8a\xa0\x79\x02\x3f\xc9\xcd\xdb\xfa\x2d\x05\x1d\xe3\x89\x31\x8b\xd3\x9c\x51\x63\x96\xd6\x81\xca\x28\xa7\x4d\xda\xe1\x49\xb7\x4a\x00\x80\x37\x31\x88\x80\xc2\x3e\x4e\x99\x6f\x16\x8f\xd4\xcc\xdc\x78\xe9\x6a\x26\xa4\x2f\xa2\x9f\xa3\x8a\x25\xed\x9a\xea\x3a\x92\x86\xa3\x6c\x9c\x7d\xd4\x27\x91\xd5\xa0\xc8\x83\x99\x28\x1a\x21\x0f\x10\x47\x58\x13\xc6\xb4\xe1\xc3\xb1\xdd\x73\xcb\x49\x96\x54\x2e\x5d\x85\xe4\x25\xfa\xa5\x17\xb0\x07\xf4\x45\x03\xca\x63\xb1\x5d\xc5\xd9\x21\x7d\x7c\x6a\x32\x17\xb1\xe1\x5c\xd0\xab\x00\x4c\x34\xc9\x33\x24\x42\x28\x47\x3e\x92\x3b\x6b\x70\x9c\xd0\x56\x58\x6f\x92\x4d\xae\x17\xa6\x3c\x74\x1d\xb8\x45\x61\xe3\x5e\x64\xbb\xc2\x55\xf4\x0d\xcd\xa5\x1d\xfa\x1b\xe8\x53\xfd\x08\xf7\x42\xff\x41\xba\x3e\xfa\x0f\x5e\x38\xa5\x88\xb3\x6e\x5e\x60\xdc\xd3\x24\xa6\xfd\x45\xff\x87\xf2\x51\x9d\x66\xc9\x94\xd6\x95\x0b\xf2\x17\x4d\x13\x95\x3b\x95\x0a\x10\xd6\x17\x11\xc9\xd2\x61\x58\x8e\xd2\xef\x16\xf1\x41\x7a\xae\x2b\xe6\x6c\x62\x28\x6d\x02\x5f\x21\xd8\xaa\x7e\x82\x59\x0e\x4a\xd8\xf4\xe6\x60\xe4\x6a\xd9\x0a\xff\x3f\x22\x7d\x0d\xdd\xbe\x98\xbe\x7f\xd8\x24\xd7\x5c\xc4\x85\x53\xd0\x06\x1e\x3d\x72\x0d\xbd\x9e\xfc\x4a\x13\xa4\xbc\x1c\x8f\x5c\x31\xad\xb0\x62\x80\x6b\x02\x5f\x37\xf1\xeb\x96\x93\xd7\xa6\x39\x69\xa7\x88\x93\x76\x8a\xed\x1d\x5c\x51\x24\x29\x00\x1c\xf8\xd7\xcf\x26\x41\x6d\xe8\xf2\x84\x94\x02\x7f\x86\x2f\xac\x2f\xf0\x85\xf5\x57\xe4\xcd\xf5\x57\xa2\xa7\xf9\x64\x19\x26\x5d\xc9\x71\x77\x1d\xd0\x16\xd1\x29\x1c\x49\xfa\xc2\x03\x2e\x07\x79\x9a\xf4\xe2\x55\xa5\x2f\xa2\x17\xf7\x2e\x49\x42\x6c\x46\x6b\x11\x49\xc7\x77\xa3\x40\x6e\x3f\x45\x53\xce\x6d\x33\x56\xde\xbb\x17\xe1\x3b\xd6\x9a\x32\x48\xa3\x6e\x91\xb7\x51\x5a\xca\x87\x4b\x73\x81\xe6\x81\xc9\x82\xe2\x3e\xe4\x34\xc1\x3a\xe1\x00\x67\x06\xa5\x81\x61\x8d\x64\xd0\x1b\x4d\xef\x5e\xf4\xe2\x8f\xb3\xdb\xfc\x85\x76\x9c\x78\x0d\x6b\x8c\xef\xfe\xa1\xfc\x51\xbd\xa6\x53\x37\x53\x8e\x80\x21\xb8\xfe\x90\x14\x86\xff\x90\x88\x98\x71\xda\xcd\x07\x79\x4a\x96\xc5\xa7\xe4\x03\xe9\xf5\x84\x85\x28\x04\x27\x9a\x17\xa5\x64\xa5\x1e\xe9\x40\x4e\xa3\x84\x6b\x53\xab\x51\xfd\x29\xc2\xd4\x8e\x8a\xbc\xeb\x4a\x45\xec\x99\x56\xd8\x55\xe2\xa9\x5e\xa5\x1d\xb8\x94\x17\x45\x7e\xd8\xdc\xc1\x9b\x64\xdd\x69\x66\x9b\xc5\x69\x0e\x7d\x07\x34\x8d\x55\xff\x10\x19\xe8\x3d\x8d\x05\xfa\x0a\x9f\x4e\x7f\x6e\xca\x2e\x22\x41\x5c\x44\x76\xfe\x38\x4d\x54\xb6\xae\x85\xb6\xf3\xa9\xa6\x44\x3f\x4e\x54\x23\xce\xcb\x0c\xfd\x64\x12\x96\xcd\x4f\x70\xe6\xda\x88\x5a\x10\x59\x60\xb0\x4d\x97\x22\xf5\x1f\xb7\x52\x64\x16\x6a\xd5\xce\x5c\x3f\xaf\x92\x78\xe3\xa8\x08\x27\x96\xcd\x8d\x9e\x22\xa8\x15\x3c\x4f\xb7\x84\x74\xe3\x2a\x76\x13\xbe\xd4\x5d\x4a\xf0\xb0\x45\x40\x37\x38\x31\x21\x22\x94\xba\x37\x11\x83\xd1\x6e\xf9\x8a\x2b\xe2\xbe\xeb\xcd\x07\x79\x8a\x37\x38\x5d\x82\xd6\x95\xfe\x43\x44\x92\x51\x67\x82\x38\xab\x4b\x5d\xbf\x88\x47\x83\x16\xfb\x26\x2b\x45\x4f\x5f\xcc\x94\x7f\x07\x5e\x6c\x97\x71\xb7\x48\x96\x93\x2e\x50\x33\x68\x34\x9e\x8e\x02\xb1\xe2\x74\x43\xf5\xb7\xbf\x3d\x4a\xaa\xee\xc0\xda\x13\x68\x6a\x20\x25\xb2\x17\x3e\xb8\x8c\x52\xf1\xb5\x9c\x27\xf9\xb7\x23\xb4\xd5\xee\xcb\x93\x05\x66\xf7\x41\x44\x04\x81\x63\x5e\xf0\xa0\x1b\x8f\xe6\xeb\x1c\x05\xfd\xd8\x9f\xe0\xcf\xa0\x20\x51\xa5\x7d\xef\xed\xe5\x87\xf4\xeb\x33\x13\xf7\xfa\xab\x8e\x5c\x2c\xbd\xb9\x83\x3b\x42\x82\x52\xff\x45\x4b\x50\x66\xb5\xff\xe2\x51\x5c\x54\x43\x91\xf4\x58\xb4\xd6\xe5\x05\xca\xb9\xd4\x1e\x16\xd8\x86\x37\x67\x4e\x83\xdd\x8b\xed\xe5\x78\x9c\x2a\xd1\x94\x4f\x5f\xd4\x50\xea\xb0\x66\xc0\xb1\x8d\xbf\xfe\xd7\xdb\xf1\xb8\x1a\xe4\xe8\x26\x22\x35\xba\xc7\x9d\x96\x7b\x53\xe3\xbb\x7e\x92\x67\x31\x02\x10\x6e\x21\x50\xb4\x7a\x5d\xa7\xd2\xd6\xd2\xe8\xb9\x3c\xcd\xfb\x70\xf3\xdb\x6d\x78\x1d\xb5\xaa\x65\xc9\x7a\xc4\xae\x4f\x85\xb7\xe2\xed\x7e\x02\x6f\xf9\x04\x4d\x9f\xc7\x85\x40\xbe\x57\xd9\xc9\xfa\x16\x3b\x59\xdf\x22\x29\xc6\x6e\x9e\xf5\xd3\x7c\x08\xc2\xa4\x6c\x22\xe5\xe6\x48\x44\x32\x9e\x4e\xc3\x34\xa7\x70\xdd\xbc\xe8\xc1\x97\x7a\xd1\x9f\xf8\xf5\x47\x45\xf2\x7e\x73\xfa\x3b\x3c\xe3\xff\xe2\x72\x92\xc5\x59\x37\x71\x85\x9b\xab\xbf\x0c\x16\x09\x48\xd0\x28\x35\xfe\x1d\xcb\xad\xbd\x4b\x14\x89\x61\x7c\xc8\x95\x8f\xc9\xea\x35\x43\x08\x02\x2a\x9f\x9c\x08\xcc\xc3\xf4\x9c\x02\x9a\xfc\x5b\xa8\x9b\x51\xe0\x5c\x9a\x3a\x77\x27\x81\xa4\x86\x2a\x18\x3f\x34\x27\xd3\x4b\xb5\x63\x93\xf6\x8b\xb2\xae\xf0\xc9\xb0\x5d\x6e\xcb\xf0\xd2\xd6\x5e\x08\x4f\x65\xd7\x65\x71\x91\xe4\xb4\x52\x30\x70\xd7\x6b\x42\x0d\x25\xd9\xab\xe3\x22\x31\x64\x87\x2e\x3d\xb9\xf1\xb6\x0c\x43\x14\xff\x3b\x2f\x7c\x75\xa1\xf5\xd2\x5e\x8d\xef\x17\xc9\xd8\xe6\x56\xc0\x1f\xfe\xa3\x2f\x90\xd9\xf9\xbb\x1c\x70\x66\xbd\x88\x84\xec\x59\x8d\x0b\x90\x4e\x50\x42\x03\xcd\x89\x2d\x04\x21\x10\x0c\x2e\xcf\x37\xf4\xb8\x4c\x22\xd3\xa2\x36\x22\xf1\x6d\x22\xcc\xde\xa6\x67\xb7\x9c\x26\xae\x68\x91\xb4\x86\x8a\xea\xe9\x0b\x12\xbd\xe8\xc7\x59\x7f\x69\x8c\x16\x6a\x30\x71\x82\xfa\x9c\x5e\xcf\x7c\x9a\xaf\xb4\x87\xae\x97\x54\x81\x3d\x8d\x1f\xfc\x90\x7e\xe9\xc3\x26\x88\x77\x1a\x17\xfa\xe9\x51\x98\x1f\xa1\x22\xfd\x08\x62\x10\x22\x67\x9c\xba\x3c\xab\x6c\xab\xa6\xab\x50\x30\xb3\xa6\x84\x2c\x49\x60\x07\x6f\x4f\x41\xed\x42\x41\xf4\x6f\x9b\x66\x19\x22\x3f\x6c\xf7\xcf\x2a\x47\xd9\xd5\x56\x52\x36\xb2\x56\xab\x05\x9a\x88\x9f\x94\xac\x0c\xd9\xe8\x11\xf6\x92\x7d\x07\x5d\x38\x53\xa5\x0c\xac\xa3\x39\xd2\x29\x3e\x1c\x67\x55\x29\x51\x58\xd7\x15\x27\x11\xb3\x51\x70\xdf\x8e\x76\xaf\x10\xdc\xa8\x1f\xb8\x9c\xa5\x6c\xe9\xec\xcc\xe9\xee\xa5\xc8\xf2\x5e\x7c\xa8\x55\xef\x77\xe4\x01\xdf\xc3\xd3\xd7\x17\x51\x20\x41\x66\xbd\x0d\xe8\x03\xec\x64\xbd\x26\x4a\x6b\x5f\x0c\xa1\x4a\x1e\xa1\xfd\x54\x76\xa4\x5e\x47\x8f\x05\x6d\xb0\x38\x6b\x31\x92\xe8\x22\xf7\xfc\xa7\x11\xbb\x55\x0c\xf8\xb1\xd9\x3e\x4b\xe4\xb0\x27\x13\x8c\x22\xce\x33\x54\xfb\x7b\x93\xa0\x95\xf7\xb1\x2c\x7f\x3c\x99\x4d\x4d\xf0\xc7\xfd\xed\x7e\x3c\xf4\xe6\x06\x3a\xa4\x66\xd3\xb9\x53\x93\x2f\x90\xfe\x55\x9a\xf4\x07\x95\x33\xb6\x83\x09\xaf\x7d\x8a\xb8\xa7\x2f\x68\xa8\x58\x0e\x9c\xc2\xbe\xbc\x5c\x5b\x7d\x7b\x0c\xcf\x10\xea\xbc\xf3\x4d\x16\x7f\x65\xbc\xb2\x92\x78\x3c\xa2\x79\x83\x05\x28\xcb\xf1\x99\x5f\xda\xb3\x47\xce\x01\x01\x74\xb6\x82\xa2\x05\x61\x18\xff\x92\x86\x23\x49\x56\x25\x75\x9e\x27\x0b\xc8\x03\xdd\xbe\x45\xf0\x92\x6f\x91\x99\x16\xe4\xf0\x57\xb7\x05\x3c\xc7\x8d\xa8\x0e\x80\x88\x67\xf7\xa5\x04\x35\xcb\x1a\x62\x97\x5d\xc7\x6e\x54\x14\xa1\xc4\x30\x20\x9d\xbe\x4f\x89\xab\xa2\x0b\xf5\xad\x66\x12\x94\xaf\xb4\xcb\x41\x32\x0a\x2c\x6f\xdc\xb3\x9b\x74\xff\x66\x05\x33\x76\x2f\xb6\x5f\x77\x05\xa2\xbe\x6f\x52\x79\xdf\xbc\x8b\x7e\x89\x17\x6e\xe4\x62\xd3\x9e\x57\xad\xb0\x28\x38\x95\xeb\x04\x0f\x7f\xe5\xf7\x7c\x03\x2c\xef\x82\xe9\xb7\x53\x63\x0e\x94\x1a\xbc\xab\x7e\x40\xcf\xfe\xeb\xc9\x33\xa4\x89\xe7\xca\x6e\x91\x2c\xb9\x9e\x04\x52\x65\x56\x46\xe4\x6c\x31\x0b\x0c\xd8\xbd\x68\xe5\x93\xe2\x21\x51\xb9\x61\x24\xa3\xd7\x93\x5f\x20\xfa\x57\x1d\xc1\x8a\xca\x15\x45\x5e\x24\xe5\x90\xac\xf0\xd4\x60\x52\x5f\xd0\x83\x1d\xd6\x7f\x20\x1d\x52\x4d\xa1\xf8\x5f\x7b\x66\x4f\x71\x61\xb5\x92\x1f\x52\xdf\x0c\x1d\x69\x45\xe1\x5c\x3d\xd1\xc8\x7d\x10\x75\xc1\xa4\x4e\xd5\x82\x10\x2d\x3e\x8b\xe9\x60\x6e\x7c\x76\x07\x5e\x6c\x83\xdb\x77\xd0\x74\xc1\x2e\x23\x67\xd0\x17\x54\x5b\xa6\x39\x54\xab\x39\xca\xcb\x66\x34\xa4\x75\x03\x5d\x29\x4d\xaa\x2a\x05\x92\x00\x6b\xf4\xbb\xe8\xd4\xf8\x61\xee\x3e\xf3\x94\x3c\x33\x13\xf0\x77\xee\x6c\x57\xf9\x48\xa0\xc9\x66\xf9\x26\xcf\x8f\x73\x43\x44\xeb\xfb\x72\x63\xd0\x19\x78\x67\x0a\xa6\xb5\x5a\x56\x5b\x83\x16\xca\x03\x8c\x86\xbc\xd4\x9a\x97\x04\x50\xc7\x2e\x83\x1b\x92\xd4\xdb\x9f\xc9\x47\xf4\x80\x24\xdf\x4a\xbb\xdb\x58\x90\xc4\x59\xdf\x79\xcb\x00\x73\x22\x99\x92\x8d\x24\x85\xe4\x71\x2f\xa9\x50\xc9\x99\x9d\x02\x5a\x1f\x96\xa0\xcf\x05\x27\xd9\x53\x84\x4d\xd9\xd4\xa1\x07\x7a\x45\xf6\x8f\x1a\xa1\x7e\xee\x11\xb4\x14\x17\xa6\xb6\x61\xe4\xbb\x7a\x57\x18\x29\x6f\xe3\x4a\xf2\xc2\x77\x71\xaa\xd2\xdc\x5e\xaf\x3e\x68\x20\x7c\x12\x3d\x1b\x10\xda\xa5\x2b\x56\x24\xb8\x95\x0b\x44\x26\x50\xae\xf6\x83\xff\xe9\x0b\x1d\x9a\xbe\xbf\x27\x77\x11\xb7\x5a\x2b\x1f\x7c\xb1\xd9\x3c\x6d\x71\x71\x6f\x3b\x5d\xcd\xe0\x95\xeb\x55\xa6\x71\x43\xed\x70\x0f\xb3\xd4\xe5\x38\x85\x3d\xde\xa2\xf7\xf8\x24\xbb\xec\x73\xbe\x46\x2d\x5c\x99\xa4\x89\x54\x53\x1e\xa7\xb1\xbd\x13\xba\xe3\x2a\xb1\x64\x68\xcf\x26\x1b\x0d\x37\x1e\x0d\xf2\x22\x89\xe7\xa8\x6f\x4a\x62\x0a\x7f\x89\x3d\x07\xc8\xf1\xc9\x26\xcc\x92\x90\x83\xe6\x5b\xfb\xf6\x7a\xe3\xa2\xfa\x81\x20\x95\x51\x94\x09\x96\xc1\x35\x2c\x59\x75\x9c\x6b\x3a\x85\xba\x71\x2f\x49\xd3\xb8\x2b\xe1\x17\xab\xe2\x1e\xef\xf9\x7b\x4d\xd9\x5f\xe1\xe2\x82\xb4\x76\x4e\x91\xd6\x0e\x37\x89\x20\x20\x18\x67\x5d\x25\x32\x92\x8a\xce\x0b\x53\xe4\x18\x2b\xef\x02\x5b\xe1\xfa\x84\xbd\x09\x23\x56\x74\x49\xc4\xd2\xd2\x2c\xf0\xc1\x89\xc3\x16\xd6\xeb\x20\x9b\xeb\x52\x55\x6f\x6a\x79\x8a\xe6\x47\x11\x91\x40\x3e\x6a\x9a\x15\x54\x8a\xd2\xf2\xf2\x18\xb7\x68\xec\x7d\x2b\xe8\x49\x26\x85\x2b\xf3\x21\x1f\xc8\x67\xe8\x40\x3e\xe3\x7f\x30\x4e\x53\xd7\x8f\xb3\x55\xe9\x61\x4e\x49\x24\x19\x93\x7f\xf6\x09\xef\x6f\x2f\xa7\x71\x35\x47\x22\x16\x20\xbf\x21\xd8\xdd\x93\xc3\xd9\x46\xae\x5c\xe6\xad\x2e\x19\x3f\x04\xa9\xd7\x69\x3c\x4a\x7d\xd1\x00\xd6\xaa\xf2\xa5\xb8\xdb\xcd\x45\xec\x93\x27\x44\x26\x29\x1a\x9e\xc8\x91\x86\x90\xe5\x7b\x3e\x73\x64\x2d\xf7\xae\xc4\x3c\x6c\x4a\x45\x03\x29\x92\xdc\xa3\x28\x96\xf3\xbc\x57\x56\xe3\xe5\x65\xcd\x42\xd5\x1f\x47\x6e\x9f\x79\xe5\x18\x32\x25\xc9\x7a\xe3\xb2\x2a\x12\x20\x53\x64\xd3\x61\xa1\xff\xd3\x09\xc1\xa9\x94\x1d\x64\x8d\x33\x4e\x9d\xca\xaa\x18\x0f\x5d\x56\x81\x74\x80\x3e\xeb\x5b\x13\xb2\x02\xf8\x80\x3c\x4e\x4e\x30\xe2\x28\x5e\x49\xb2\xfe\xd6\x3a\x77\xc0\x71\x76\x1e\xed\x2c\x76\x34\xf7\x15\x34\x63\x61\xf0\x04\xf4\x77\xb0\xde\xcc\x40\x20\x60\xc9\xff\xa8\x49\x39\xac\xcc\x97\xd1\xa5\x51\x20\x92\x74\x2d\x14\x83\x42\x02\x49\x0f\xc9\xf2\x78\xa4\x46\xd1\x61\x84\x7f\x9a\x66\xe2\xa7\x1b\x0e\xfa\x17\xda\xfd\x3c\xef\x1d\x4e\xd4\xef\xd2\xa6\x75\x04\xdf\xbc\x34\x75\x0a\x76\xc7\x29\xd1\xe5\x21\xf7\xa7\xd7\x33\x4b\xf7\xe0\x8e\xbd\xed\x43\x6e\x54\xf1\x19\x06\x06\x99\x79\x0c\x3d\x49\x49\x7a\x39\x96\xcd\xb9\xeb\x40\x68\x2b\xed\x0e\x43\x9d\x26\xec\x45\xe6\x5e\x03\x9b\x0a\x39\x3f\x76\x02\xe6\x18\x10\x1f\x37\x56\x8d\xfc\x7d\x1c\xbc\x9f\x4e\xb9\x51\xa7\x2e\xee\xbb\x6d\x02\x7f\x60\x3e\x10\x9e\xdd\x7f\x94\xf7\x30\x79\xf5\x90\x5e\x60\x0c\x66\x3e\xf9\x74\x2e\x5c\x12\xda\x86\xe6\x20\x13\x3a\x3d\x82\xc1\x6b\xdc\x0d\x70\x16\x7c\xd2\x63\x34\x7d\x39\x46\x0d\x90\x81\x2b\x92\x2a\xee\x3b\x22\x7c\x2a\x72\xdf\xbc\x99\xc3\xe4\x2e\xee\xad\xb8\xac\x12\x50\xf0\x41\x33\x9b\x52\xcd\x29\x93\xbe\x68\xd8\xaf\xcb\x2e\xae\x7f\x47\x7b\x9e\x38\xf8\xff\x2c\x22\xeb\x98\x3f\x9b\x84\x74\xbb\x3e\x96\xd1\xe3\xc0\x51\x04\x82\xa8\xaf\x04\x83\xd5\xf1\xff\x3c\x53\xee\xee\xdc\x69\xb2\x1c\x1e\x81\xf3\xfe\x24\x50\x2d\x80\xda\x40\x11\xf8\xc9\x4c\x54\xda\xb7\xa3\x3d\x1c\x8b\x65\x9e\x7c\x77\xec\x76\xb4\x73\xf5\xda\xc7\xd6\x5e\x11\x0f\xe3\x4a\x13\x6e\xb3\x02\x6a\x79\x67\x83\x0b\x4d\xbd\x83\xb8\xdb\x2d\xc6\x76\x0b\x6c\xba\xcd\xa3\xee\xc9\xb3\x1b\xcd\x5e\xf7\xb7\x77\x1d\xf8\x22\x71\x72\x5a\xe0\xe4\xe8\x71\x8d\x92\x08\x67\xec\x2d\x90\x62\xd0\xe8\x3a\x46\x82\x6c\x6f\x6f\x00\x7f\xfa\xb2\xe2\x4a\xd4\x7a\xee\xb9\xa0\x2e\x3c\x9d\xdc\x58\xbf\x75\xd3\x5a\xc8\x63\x4f\x00\xda\x82\xc3\xe3\x18\x16\xa3\x51\x60\xe4\xa1\x98\x0a\xb2\x7c\x41\x93\x8e\xa9\x93\x05\x75\x07\x9a\x1a\x84\x6a\xa2\x88\xfd\xbc\x40\x32\x4e\xf3\x42\x0b\x43\x77\xeb\x32\xc8\x45\x00\x4a\x5c\x90\x25\x8f\x1e\xdf\x1d\x12\x2c\xe8\xe7\x2b\xcf\x8b\xac\x8d\xa2\x33\xe4\xcb\x1b\x52\xa3\x81\x08\xd6\x7d\xbe\xf7\x7c\xa9\xac\x62\xdc\xd6\x77\x22\x02\x61\x82\x30\x68\xe5\x0a\x49\x74\x3c\x20\xde\x33\x68\x80\xb2\x46\xd5\xc6\x84\xd4\x36\xbe\x3f\x75\x10\x85\xa1\xd3\x20\xe9\x0f\xa4\x3d\x80\xc3\xc7\x6c\xe6\xc2\xd0\x6b\x96\xb7\xf6\x95\x76\xdc\x2f\x9c\xeb\x09\xd7\x1b\xbd\xdd\x33\xd4\x28\x55\x80\x34\x9a\x77\x37\x23\x92\xa8\x9f\x1a\x0b\x43\x3c\x1a\x1f\xf4\x12\x21\xfe\x84\xb5\x92\x61\xb0\x65\x77\xf9\x04\x41\x62\x4f\x78\xa2\x8a\x95\x8b\x86\x59\xc3\x14\xe6\x4f\xb0\x54\xf4\x85\x0f\x3c\x87\x5c\x5d\x3d\x11\x2f\x00\xfa\x59\x7a\x4d\x81\xf8\xd5\x71\x55\x59\x3e\xa5\x92\xbd\xf2\xd7\x4d\xbe\x77\xe3\x11\xf2\xca\x2b\xc8\xda\xb3\x72\x0c\x76\x54\x93\x05\x75\xa0\x4f\xf4\x92\xb2\x1a\x17\x4b\x0a\xee\x36\x51\x28\xa6\x44\x85\xba\x75\xa9\x18\x57\x75\x99\x88\x84\xc2\x00\xc7\xe1\x63\x7f\xc8\x9e\x4e\xb3\x44\x9c\xdd\x8b\xed\x5e\x7e\x38\xab\xf2\xc3\x2a\xc0\xe9\x45\x86\x3c\x50\xe6\x1e\x25\xab\x97\xa8\x4d\xec\xd2\xf4\x49\x59\xe5\xa6\x66\x23\x0f\x43\xe6\x47\xff\xe2\x0b\x9d\xa0\xbd\xf5\x34\x48\x26\xd8\xa4\xdb\x90\xec\xe3\x5f\x16\xc4\xc3\x0a\x3b\xfc\x0e\xe2\x23\x8e\xfa\xa7\x55\xea\x52\xe9\x43\x44\xf4\xbd\x1b\xb5\x7e\xf3\x37\x34\x6b\x79\xbc\x13\xc4\x2f\xa0\x96\x84\x5c\xe5\x19\x68\x37\x2b\xcc\x60\x8d\xec\x01\x37\xcb\x16\x35\xef\x66\x59\x03\xa8\x62\xb7\xcf\xf8\x7f\xec\xdc\x69\x10\x49\x5d\x39\x26\x62\xd9\x22\x73\xbd\x59\x95\xc6\x5d\x6d\x19\xaa\x79\x1d\xbb\xef\x13\x49\xe8\xfb\x33\x07\x0c\xdc\x52\xe3\xc2\x3a\xb3\xeb\xd0\x9c\x5a\xbf\xed\x0f\x15\x97\xf5\xeb\x74\x71\x0b\x51\xb2\xbe\x1d\xd1\x51\xbd\xd0\x21\xcd\xd2\x8f\xc9\x9c\xe4\x53\x00\x09\xd8\xc3\xc8\x66\xeb\x1b\x3f\x35\xdc\x38\xdc\x3c\xad\x20\xdc\x4e\xf6\x75\xc3\x2d\xdf\x0a\x75\x52\x95\x79\x6f\x82\xe6\x15\x24\x06\xe1\x25\x18\x7c\x9b\xfc\x2c\x1d\xde\xdd\x54\xe4\x42\xcb\xb9\x16\x69\xf7\xd6\xcb\x06\x4d\x71\x36\xf5\xbd\x3f\xd3\xac\xd8\xb3\xa7\x3e\xfc\x5b\xa8\xe0\xfd\x6e\xf2\x3c\xe0\x59\xf4\xea\xbe\x1d\x22\x15\xb5\x22\x4d\xc7\xfa\xce\x78\xab\x05\x4f\xc5\x66\xab\x85\x3a\xe4\x1d\x8e\x57\xa7\x24\xca\x7e\x30\x21\x6d\x9d\x1f\xf8\xa8\x31\xc8\xbd\x0c\x2d\x4a\x9e\x6b\x13\x1a\x1c\xcd\x2a\x7e\xd4\x15\x93\x18\xae\x87\x31\x34\xe6\x9a\x80\xf8\xe8\x35\xb9\xc6\xa7\x4e\x8b\x06\x91\x75\x33\x68\xe1\x94\xdd\x8a\x2c\x78\x53\x44\xab\x6f\x83\x04\xd6\xbd\x4f\xcb\x8c\x06\x3b\x07\xbe\x31\xbe\xa7\xe7\x7d\x4c\xd4\x01\xc2\xc0\x8c\x86\xce\x28\xf3\x24\x45\x39\xe5\x8d\xbb\x7d\xb8\xc7\xea\xc0\x11\x7a\x9f\xc2\xa2\x20\x91\x8d\xee\x88\x83\x4c\x9d\x42\x4d\xa1\x45\xde\x50\xff\x65\x12\xaa\xd1\xb3\x33\x18\xbe\x5d\x07\xda\xe3\x2c\xe9\xb9\xac\x4a\x96\x13\xed\xca\x29\xa2\x70\x0a\x5d\xb8\x71\x5d\x1c\x78\xb1\x1d\x77\x61\xbd\x62\xa0\xe2\xfa\xab\xea\xb5\xc7\xc3\xf7\x45\x30\xc2\x7f\xa1\x19\x37\xdd\x00\x2d\xcf\xca\x51\xa2\x39\x23\xf6\xcf\x7b\x84\x53\x79\x8f\x82\xf6\x72\xe1\xbe\x3e\x76\x59\x77\x95\x1b\xb9\xb7\xc9\x04\xfc\x36\xc9\x75\xc6\xd9\xaa\x80\x1d\x88\x76\x81\xf6\xb7\x5e\xd3\x47\x50\x00\x64\x57\x46\x98\xca\x82\x95\x5b\x80\x72\xe9\x34\x2b\x05\x1d\x9d\xf1\xa8\x90\x39\x40\xe9\xba\xe3\x42\xf0\x5d\x2d\x2a\xa3\x2f\x46\xd3\xaa\x4c\xb3\x73\xf0\x51\x5c\xc4\xe9\xea\xeb\xd3\xba\x34\x3c\x24\xbe\x44\xed\xca\xb2\x3b\x70\x43\xa7\x9a\xbc\x8a\x48\x96\xac\xcd\xd0\xc9\x34\x60\x3c\x70\x80\xc4\xcd\x2e\xb2\x42\xe0\xc5\x26\xf5\xda\x3a\x44\x2a\x75\x8e\xed\xd1\xbc\xc3\xa5\x07\x99\x1c\x0f\x79\x6e\x9c\x0c\xe2\xaa\x1c\xb7\x68\x34\x0c\x26\xf4\xe7\x59\xfe\xd5\x49\x6b\x37\x1e\x1b\xa6\xc4\x7a\x40\x5b\x24\xab\xd2\xeb\xb5\xd0\x83\x1b\x8e\xe2\x4a\xdd\xa0\xf1\xe3\x38\x55\x90\xe4\xe8\x75\xd3\xd6\x2f\x5c\x99\x8f\x65\xf4\x34\x47\x2e\x3d\x37\x48\xdb\x06\x79\x9c\xc1\xdf\x78\x7e\x3e\x1c\xe6\xd9\x61\x17\xa7\xd5\xa0\x15\xe6\x03\xff\x81\x15\x64\xfe\x43\x93\xf6\x83\x48\x3a\xd8\xac\x05\xb9\x22\x06\x0c\x7a\x3d\xf3\x31\x77\x2f\x02\x08\x57\xe6\x99\x56\x0a\xaa\xd6\x40\x4a\xae\xe7\x26\x7f\xf5\x73\xda\x98\x71\xf7\xeb\xe3\xa4\x70\x2a\x9e\x6a\x1c\x13\xd2\x93\x80\x4b\x3e\x76\xfe\xff\xd9\xb0\xec\xba\xf9\x68\xb5\x80\x8e\x4f\x18\xa3\x44\x53\x8a\x0d\x01\x54\x9a\xc6\x55\x17\x8e\xb7\xfe\xa8\xdb\xed\x87\xda\x33\x07\xd4\xae\x03\xed\x9e\x4b\x4d\x05\xda\x0a\xcf\x00\x21\x6b\x52\x9c\x6f\xd7\x1b\x3b\x38\xd3\x9a\xae\x70\x68\x66\x5e\x9d\x89\x42\xfb\x76\xb4\x47\x31\x74\x94\x54\xa0\x59\xee\x9c\x89\x35\xdb\x2a\xea\x8f\x97\x5c\x91\xc5\x55\x5e\x98\x00\x16\xde\xf0\x2c\x09\x52\x9d\x9d\x39\xae\x77\x2f\xb6\x0f\x25\x87\x93\x56\x48\x2c\x10\x9b\xad\xff\xdd\x50\xc1\x2d\xa7\x82\xa7\x65\x4d\x76\x34\x00\xf5\x9a\x6a\xd8\xb8\xe7\xbd\xb6\x51\xd5\x9f\xc0\xf9\x80\x6c\x72\xcb\x5a\xc0\x6a\x3c\xda\x69\xa8\x97\x93\xe1\x68\x9c\x7a\x41\x39\xb3\x77\x26\x75\xd1\x7f\x31\xd3\xc5\xd9\xb7\xa3\x5d\x3a\xb5\xd6\xf2\x8a\xf3\x81\x64\x7c\xa6\xa9\x23\xbc\xbf\x9d\xba\xb8\x3f\x36\x3c\xc3\xb4\x88\x83\x69\x8d\x7e\x1e\x09\xa0\x97\x14\xae\x5b\x49\xa5\xed\x29\xaf\x9e\x1a\x75\x23\x9a\x62\xe5\x3e\xe5\x37\x7c\x92\x75\xe5\x3c\x92\xfb\x8e\x5d\x0b\xe5\x60\xbd\x9e\xa9\x9c\x05\x50\xda\x73\x4b\x6a\xd4\x6f\x32\x53\xa1\x17\x73\xae\xb1\xd7\x5d\x8e\xeb\x6d\xae\x47\x1e\x79\x8d\x1a\x4d\xfb\x33\x92\x02\xeb\xc5\x2b\x49\x6f\x7b\x60\x7d\x4e\x01\xbf\xfe\x9c\xfd\xe4\xde\xc4\x2d\x65\x45\x6d\x84\xf0\x85\x35\xf2\x12\xdd\xdc\xa1\xce\xc6\xc7\x92\x48\x78\x75\x5b\xef\xe1\xb1\x19\xf9\xbc\xbe\x6f\x63\x93\xd3\x15\xf9\x52\xd2\x45\xff\x10\x5b\xf1\xa6\x6c\x32\x33\x07\x26\x39\xbf\x8b\x24\x5a\xb0\x94\xe7\x6a\x9e\x69\xf3\x2a\xf9\x3a\xfa\x22\xfa\xc2\xc6\x2e\xc3\xde\xfd\xed\x83\x3b\xb4\x7d\x8b\x6f\xa6\xf3\x6d\x7d\x41\xf8\x17\xc5\x10\x15\xa4\x4d\xf1\x3e\xde\x5d\x5f\x34\x9d\x3b\x4b\x85\x8b\x0f\x01\xdb\x64\xfa\x43\x2d\xb2\x51\x6c\xd8\x98\xaf\x3e\xdf\x7b\x7e\xea\x03\xe9\xbc\xd1\x24\xce\xbd\xca\x4e\x32\x5c\x4e\xdd\x6b\xd4\x0a\xbf\xc3\xce\x4a\x77\xd8\x38\x3a\x2e\xca\x41\x9c\x6a\x6f\x07\xb5\x30\xf8\xc1\x7a\x4d\xd6\x64\x3d\xa7\xda\x63\xd8\xe9\x26\xd3\x11\xfa\x48\xb3\xc4\xf4\x03\x2f\xca\x30\x19\xa2\x82\x46\x98\xab\xb7\x06\x9a\x2d\x77\x64\xb2\x0c\xa4\x1e\x2a\x6c\xe0\xa7\xaf\xcd\x54\x92\xaf\xbc\xd2\x5e\x8a\xd3\x38\xeb\xea\xd2\x55\x2b\x0a\xc4\x6d\xf3\xa5\x68\x38\x9d\x46\x71\x19\xbc\x6f\x31\xeb\xba\x4b\xa6\xcd\x77\x09\x6e\x96\x2f\xa1\xec\x97\x8a\x81\x55\x3e\xb1\xe3\x55\x78\xc5\xc4\xea\x1a\xe4\xaa\x46\xd4\xc5\xf0\x4a\x69\x5e\x07\x37\xf8\xa3\x1f\x8e\x57\x2c\xdc\x1b\xa4\x87\xfc\x63\x3e\x9c\x89\x2c\x10\x9b\xca\x96\x5d\xe1\xb2\x2e\x37\x10\xae\x4e\x48\x58\xe0\x6a\x9d\x7e\x6a\x0a\xd4\xfb\x7c\xbf\xb7\xf6\xe7\x9d\xab\xbd\x95\xbc\x0b\x6f\x9c\x30\xb7\xbf\x1b\xd1\xe9\x7f\x77\xaa\x0b\x5d\xe8\x5c\xda\x10\xf6\x9c\x55\xcc\xc2\x10\xf2\x71\x95\xa2\xa5\x12\xbc\xcc\x4f\x60\xf4\x67\x7c\xad\x26\x1c\x47\x95\x2c\x2f\xd7\xb9\x05\x37\xd0\xa7\x3a\xeb\x4f\xd1\x70\x6b\x79\xdc\x77\x0e\xf4\x4b\x8d\xaf\xd3\xc1\xd6\x2a\xaa\xb2\x8a\x57\x31\x22\xd9\x65\x0e\x60\x11\x1b\x02\x93\x8d\xe3\x49\x9a\xf6\x57\x71\x76\x48\xd9\xb0\xc6\xa4\x3c\x1b\x31\x51\xa4\xc1\x84\xa0\x2b\xd2\x2a\x5e\x50\xf9\x06\xc2\x24\x67\x96\xf8\x3b\x1f\xce\x68\xc0\x7c\xa5\x1d\xc3\xe7\xc8\x78\xac\x2a\x59\x6f\x54\xa7\xa0\x5a\xf6\xfd\xa6\xa1\x59\x9e\xf6\xa4\x11\xf7\xb5\x5d\x81\xd3\x5e\xdf\x37\x8c\x72\xd7\xa9\x66\xbe\xb8\x41\x3d\xac\xf7\x2c\x02\x0c\x8e\xc7\x7b\x24\x2c\xfd\x94\x80\x09\x91\xd5\x5d\x44\xfd\x6f\x43\x84\x30\xed\x5b\xc7\x8e\xf4\x3f\x15\x60\x86\x67\x65\x19\x5a\xcf\x34\xf4\xf5\x7f\x3c\x6d\x17\x56\x07\x72\x74\x4d\xd0\xbf\x41\x63\xe7\xbe\x18\x20\x62\xfc\xf8\x0e\xd8\x1c\x2a\x6b\x17\x91\x0f\xac\x8e\x32\xd5\x7f\x4a\x07\xf0\xda\x9b\x92\x8e\x2b\xfa\xd5\x15\xe6\x46\xd0\x04\xd1\x5e\xaa\x29\x23\x3c\xce\x4c\x8a\xae\x70\x9d\x90\x59\x28\x9e\x0d\x49\xf4\x4d\x02\x07\x6a\x0c\xd2\x7f\x98\x69\x25\xec\x3a\xd0\x1e\xba\x0a\x28\x19\x03\x18\x73\x9e\x4b\x3a\x7f\xb7\x09\xeb\x5e\x96\xb1\xa0\xcc\xf0\x21\xef\xb3\x8a\xc9\x7d\xef\x72\x34\xce\x12\x65\x89\x2b\x13\x05\x1b\x55\x44\xa8\xed\x3a\x2c\x7b\x91\xfc\xfd\x4f\x52\xa9\x68\xf2\xae\x6f\x68\xde\x87\xa1\xe3\x77\xd1\xab\xea\x77\xf3\xf1\x48\xa3\x85\x0e\xb4\xe5\xc7\x6c\xb8\x4d\xce\xbf\xc3\x5c\x05\x14\xd1\x3f\x7d\x93\x7a\xa9\x6f\x4e\xb6\xfb\xf3\xe5\x57\x9f\x0d\x38\xda\xb3\x51\xf0\xbf\xde\x0a\x89\x18\x35\x07\xe7\x73\xf5\x0b\xda\xc9\x33\x33\x9a\x30\x0a\x3b\xca\xe8\x92\x6f\xb2\x32\xfe\xb6\xb5\xd6\x6f\xfe\x46\x30\x37\xac\x9f\x0b\xa2\xc0\x0d\x90\x70\xb5\x7f\x47\xea\x9b\xf7\xa3\x40\x57\x84\xf0\x9e\x71\x03\x65\x4f\xe9\xd8\x2a\x22\x15\xc5\xcd\x6b\x33\x74\x42\x2c\xca\x79\x59\xd3\x4a\x9c\x95\xa4\x05\x91\xe1\x41\x14\xa0\x24\xa9\x4c\xd3\xe7\x08\xf1\x19\x6d\xb4\xfd\x32\xd0\x46\xe8\xbc\xaf\xc4\x82\xbf\x0d\x99\xd7\xe6\xb5\xc0\x14\xd9\x3c\xa3\x6f\x2e\xab\x72\x98\x17\x71\xd6\x1b\x0f\xe7\xc8\x53\x08\x76\x6a\x48\x9e\xae\x93\xca\xc4\x99\x86\xda\x5f\x60\x0f\x4b\xe3\x24\x0d\x50\x47\x7c\xcb\xcf\xe8\x1b\x7f\x36\x85\x82\x72\x2b\x2e\x43\xb3\x7c\xaf\x47\xe4\xb6\xbc\xac\xd0\xf9\x88\xf5\xb8\xb3\xaa\x48\x96\xc6\x95\x95\x7a\x48\x31\x1e\x22\x84\xe2\x0e\x5e\x9c\x4c\x09\x0c\x05\xa3\x77\xe1\xe9\x89\x47\x83\x6f\xa6\x6c\x95\xba\x57\x59\xef\x64\x6a\x3f\x6b\x64\x5f\xa7\x66\x69\x9e\xf7\xc0\x0a\x47\x7f\xea\x21\x96\x13\x27\xb8\xc8\x8f\xb6\xce\x60\x23\x0f\xee\xd8\xa5\xbf\x4f\xd8\x2a\xf4\x2a\x6c\x36\x3e\x5b\x94\x2e\x8f\x8b\x2c\xc1\xf8\xd0\x6f\x21\x98\xbb\x9b\xe9\x6c\x13\x9a\x66\x94\x1f\x76\xc5\x3c\x9b\x9e\x5f\x40\x30\xc5\xe4\xff\x02\x79\xcb\x7f\x07\x11\x04\xf7\xed\x2e\x8d\x89\xe2\x62\x88\x1e\x29\xda\xf1\x77\x64\x6f\x4e\x31\x19\x80\xca\x3a\xdb\x84\x9d\x2f\xbb\xc5\xb8\x4a\xb2\x55\x44\x15\xdb\x6c\xa1\x0f\xf2\xcd\x90\xf3\x24\x5e\x26\x06\x29\xde\xc7\x24\x39\xf7\x71\x83\xd5\xd7\xae\x3a\x3f\xce\x7a\x31\x60\xd0\xde\x7a\xaa\xfe\x40\xb6\xdb\x1f\x27\x17\x87\x4c\x17\x95\x1e\xe2\x24\x7b\x1e\xd6\x45\xbf\x48\xdc\x4a\x9d\x42\x96\x73\x24\xf7\x34\x99\xb2\xd5\xa6\xc2\xbd\x69\x58\xd9\xcd\x87\x4b\x42\xde\x0a\x0e\xca\xd0\x93\xd6\xeb\x99\x9b\xe4\x71\xc3\x87\x8a\x16\x05\xae\x73\xec\xe3\x75\xce\x23\x64\xba\xf1\x70\x29\xef\x25\x2a\xae\xa6\xa8\xec\x88\xf8\x24\xc7\xa7\xd2\xf1\x65\xd7\x05\x77\x39\x10\xb0\xfe\x98\x78\x30\x7f\xdc\xa8\x78\x10\xbf\x96\x0c\xeb\x3d\xbf\x6f\x87\x85\x2e\x00\x2e\x90\xa5\xe2\x0e\x20\x86\xde\x21\x96\xf0\xd0\xf5\x92\x18\x66\x12\x1e\xb8\x53\x9f\xc2\x06\x3c\x68\x2d\x2e\xae\xff\x14\xd8\x0a\xa4\xce\x67\xc8\x01\xe9\x4c\x13\x68\x69\x34\xb6\xa9\x99\xb5\x16\xa8\xcd\x30\x79\x2c\xf0\x93\xff\xab\x74\x41\x74\x08\x4c\xde\x81\x58\xde\xda\xf8\x41\xb8\xfa\x36\xa2\x81\xfe\x58\x44\x2a\x27\x97\x66\x48\x4a\x07\x77\xbc\xd0\x5e\x2a\xf2\x6a\x50\x67\x74\xd8\x40\x40\x34\x9e\x67\x08\xee\x79\xea\x3e\xaf\xc4\xe9\xd8\x1a\xf1\x40\x8f\xa0\xd8\xd6\xeb\xb0\xc8\xf2\xbc\x74\x4b\xae\x28\x56\x91\xbd\x11\xa7\x67\x91\x1b\x2a\xeb\x77\x9b\x24\xf3\x93\x2c\xcb\xbb\x3e\xcb\xf7\xd6\x22\xde\x70\x2a\x28\xa9\x2e\xe7\xc5\xe1\xb8\xe8\x6d\x0d\xb0\x2f\x95\xd9\xd1\xc1\x2b\x6e\x93\x31\xfe\xc3\xa0\xf3\x69\x19\x6b\xa1\xa1\x79\x5a\x92\x22\x9d\xc3\x44\x81\x01\x3c\xb7\x16\x1e\xfc\xab\xc9\x70\xb8\x8a\xa5\x6b\xbe\x9e\x2d\xaf\x35\xfd\x11\xb1\xa3\xbb\x79\xaa\x5d\x13\x8c\x93\xd4\x9e\x33\xa2\xb6\xd6\x3a\x3e\x94\x92\xae\xa6\x78\x35\x72\xdc\x7a\xd5\xfc\x45\x93\xa4\x5a\x9f\x4c\x61\x68\x85\xe4\x28\xe0\x28\x24\xf5\x9b\xa1\x8c\xec\x31\x7b\xbb\x0d\x37\x7a\x75\x66\xe9\xd7\x4f\x3c\xc9\xca\xa4\x07\xe3\x1e\xcf\x8d\xdd\x6d\xbd\x93\x5b\x11\xc9\x3a\x9f\xf7\x93\x8a\x34\x3e\xe4\xe6\x08\xd5\xab\x10\x3e\x76\xb5\x37\xee\x5d\x80\x2a\x2d\x8d\xcb\x24\x5d\xfd\x7c\xef\x5a\xeb\x23\x2f\x17\x89\xcb\x7a\xe9\xea\x42\x68\xce\xff\x0a\x9a\x24\x5e\x84\xd8\xe3\x55\x7f\x71\x2d\x34\x49\x14\x5e\x65\xf6\x11\x0d\xa5\x53\x3c\xae\xf2\x6e\x11\xa3\x9f\x84\x7b\x89\xae\xac\x5e\xcf\xe4\xa9\xbb\x17\xdb\xaf\x27\x23\x59\x76\x26\xc4\x4f\x5a\xcd\x97\x26\x5f\xe4\xf9\x71\xb7\x70\x55\x92\x67\x71\xb1\xba\x85\xc8\x66\xc7\x90\x57\x7b\x70\x56\x00\x1e\x9f\x27\x26\xe3\xf9\x49\xf0\xd7\x39\x21\x53\x23\x74\x97\x36\x77\xc8\x12\x3c\xa9\xaa\x72\x69\x5c\xf4\x07\x5b\xe5\x1e\xa2\x76\xbd\x86\x4f\xe4\xc3\x85\x4f\xd6\x3e\x90\xdb\x04\x7d\x24\x56\x49\x5e\x58\x0b\xc0\xef\x4f\xc4\x99\xe5\xfc\x4c\xff\x52\x2c\x42\xf2\xf1\x52\xa5\xa9\xac\x89\x0f\xd5\xef\xa2\xd7\x04\x70\xc8\x97\x97\x4b\xa7\x40\x40\xb4\xa8\xb0\x6f\x3c\xdb\xde\xbb\xf3\xad\xb3\xe8\x45\x51\x67\xe9\x72\x6f\xbd\xea\x7b\x80\xd0\x5e\x24\x66\x70\xe5\xd4\x17\xd0\x4b\xc9\x90\xae\x0c\xc1\x2e\xcb\x71\x51\x68\xa3\x7f\x5e\xde\xca\x7a\x7e\x92\x91\x1a\x5d\x2c\x40\xf8\xe1\x1f\x85\x68\xf0\x56\xb0\x49\x1a\x24\x45\xc5\xa7\xc7\x87\xf2\x2b\x7a\x1d\x6d\x6c\xc1\xa3\x7f\xb8\x54\x26\xbd\x04\xd9\xa6\x84\x58\xeb\xb4\xcb\xdb\xe8\x0b\xaa\xcb\x0f\x27\x3d\xa5\x7d\x84\x2e\x2d\x12\x75\x33\x26\xb4\x9d\x56\xe4\x39\x2a\x7d\xf5\x6c\x8e\xc2\xd0\xe2\x2c\x41\xc6\xba\x71\xb1\x94\xf4\x10\x20\xbd\xbe\x47\x68\xe4\x9d\x6c\x34\x37\x2c\x34\x8f\x50\x0d\xd2\x09\x99\x1e\x9f\xa3\xaa\xeb\xbf\xf9\xdb\xff\x6d\xab\x4e\xd0\x91\x8e\xea\xc9\xab\x2f\x7c\x21\x55\xe5\x85\x42\xb6\x28\x0f\x0d\xc9\xd5\xc5\x99\x25\xb6\x67\x4f\xbd\x6e\x5c\x61\xb8\x4c\x9b\x8c\xb6\xbc\xe4\x85\x9a\x62\x21\x76\xfd\x8c\xbd\xf1\x07\x49\x2a\x04\x0e\x87\xb1\xa7\x49\x43\x92\x99\xfd\x35\x08\xe8\xe8\xbf\x20\xdc\x5a\x17\x2d\x1c\x5f\xaf\x27\x69\x9a\x58\xff\x13\x61\xe8\x4c\x44\xbc\xcb\x33\xbe\xac\xfb\xfa\x38\xa9\x74\x1c\xe6\x15\xe0\x7e\xf3\x37\xb4\xa2\xd7\x82\x09\xb6\x27\x9b\x3a\x0d\x13\xfa\x9e\xeb\x17\x0e\x4f\x47\xcd\x6b\x89\xf8\xfb\xfb\x74\xa0\x0e\xe2\xa5\xa4\xaa\x03\xd4\xbe\xbd\x5e\x20\xb5\x8e\x0c\xa6\xc1\xfa\xcc\x06\x75\xb0\x58\x20\xa3\x3b\x77\x19\xb2\x6b\x12\xf6\xda\x5d\x1e\xb0\x7e\x7f\xaa\xa1\xf1\x9c\x1b\x4a\xbc\xf7\xec\xcc\x3d\x7b\xa6\x05\x91\x4c\xbb\x6e\x16\xf4\xdb\x1e\xc5\x65\x15\x33\x28\xe9\x14\x4d\xa9\x4f\x35\xb4\xe9\xda\x2e\x75\xdd\xaa\xc8\xb3\xa4\xab\xd1\x04\x7d\xaa\x37\x08\x01\xfa\xc6\x0c\x98\x49\x3c\x3a\x5c\xf7\x79\x80\xb2\xb1\x38\x6e\x48\x85\x82\x7b\xa6\x6a\x91\x20\xbd\x9f\x9c\x04\xe8\xcb\x8f\xb1\x0c\xb0\xdb\xff\x60\x12\x78\x62\x55\x3c\xc2\xde\x34\xdd\x6f\x62\xca\xf0\x72\xaf\x5c\xf1\x4c\x28\x67\x35\x62\x0b\xca\xe5\x7f\xfc\xe5\x4e\xa8\xbf\x37\xad\x05\x89\x52\xd5\x76\x43\x99\xfb\xac\x7a\x34\xa0\x43\xf5\xad\x3a\x9b\x58\x3f\x4e\xfe\x77\xef\x4e\x3c\x82\xf8\x27\xcf\xb0\x18\xec\x96\x35\xc9\xe8\x3c\x11\xe3\x25\x0f\xaf\x9f\x78\xd3\xf6\x8b\x4f\xe3\x24\x94\xc2\xe6\x57\xbf\xb4\x16\x94\x6c\x6e\x4d\x82\xe4\x65\xf9\x0b\x6b\xc1\x3f\xf8\xd7\xff\x1a\x0b\x6b\x7e\x97\x35\x3c\x4e\xd2\xd7\xee\xbb\x54\x44\x01\xad\xb0\xa9\xbf\x9d\xe5\xfc\x04\xb5\xdf\x8e\xbf\x8f\xed\x8f\x21\x8e\x0d\x9b\x9f\x26\x73\xdc\x38\xeb\xc5\x45\xaf\x9c\xa7\x74\xf8\x0e\x49\xc9\x7d\xc4\x6f\xf9\x51\x14\x92\xe2\x3b\x1b\x15\x2a\xeb\x75\xf0\xd2\xae\x03\x5b\xeb\x1f\xf1\xb2\x60\xf5\x27\xb0\x5e\x77\x7d\x07\x70\x9b\xae\x92\xfb\xd4\xb7\x99\x3e\x7d\x83\xe5\xef\x3f\xa2\xec\xe1\xd4\x14\x3b\x30\x1f\xb9\xc7\x83\x3b\xfe\xfd\x49\x50\x4a\x7f\xb2\x43\x71\xfa\xb8\xfc\x49\x74\xad\xee\xeb\xf8\x8b\xd1\xd6\xb8\x81\x2a\xae\x8e\x46\xdd\x8f\x58\xeb\xf1\x36\x53\xd1\xe7\x25\xad\x43\x3a\xfc\x18\x9e\xff\x94\xcd\x0e\x1a\x80\x1f\x49\x46\x60\x36\x3b\x24\x95\x9b\x25\xe5\x00\x51\x09\x0d\xe3\x1f\x93\xfb\x8c\x92\x68\x70\x6f\xee\x37\x49\xcb\xed\x6f\x77\x07\x71\xd1\xd7\x8e\x2a\x12\x91\xeb\x34\x5f\x7b\x1f\xcb\xda\xe4\xed\x9a\x6a\xfa\xae\x2b\x9c\x52\xe1\x71\xaf\x71\xf2\xeb\x35\x9b\x99\xa6\x71\x71\x48\xda\x5d\xbe\x26\xaf\x3f\x9d\xbe\x68\x12\x94\xec\xe6\xd9\x72\x52\x0c\x75\xf4\x80\xa5\xf8\x13\x16\x79\x7d\x30\xa1\xb9\xd5\xa6\x4e\x28\x7c\x2b\x41\x8f\xec\xdb\xa1\x1b\xb2\xd5\x09\x16\xdc\xad\xb5\x8d\x29\xde\xe2\x62\x7b\xa5\x7c\x7e\x21\xe8\x79\xfe\x0e\x8a\x24\x23\x94\xb7\x7e\xfd\x25\x3d\x46\xb6\x92\xcd\xf0\x69\xa2\x52\x5f\x23\x98\x45\x1a\xaf\xc8\x5f\x36\xed\x1d\x92\x34\x3f\x49\x99\xca\xa8\xc8\xbb\xe3\x02\x72\xcd\xf2\xf8\x80\x62\x3c\x46\x72\x51\xe7\x29\x31\x3d\x2d\x6b\x16\x6d\xea\xcd\x9d\x27\x7c\xe5\x5e\x27\x3b\xe3\x51\x2b\x34\xf8\x4e\x50\xa1\x7a\x02\xa6\xec\x5a\x15\xbb\xd1\x56\x79\xca\xd6\xdf\x6d\x79\x6b\x65\x90\xf3\xf1\x15\x01\x58\x52\xfd\x19\xf9\xa3\xe8\x13\xdd\xa6\x58\xad\x55\x1b\x92\x9a\xef\xb1\x14\xd6\x20\x2f\xaa\x74\xb5\x15\xa4\x35\x7e\x10\x05\x35\x8d\x1f\x34\xac\x9f\xf6\xd7\xc7\x79\x90\x88\xc5\xf6\x3e\x43\xd0\xe8\xc0\x4f\xa9\xea\x75\x5a\x59\xae\x80\x88\x77\x85\xb4\x85\xfe\x0d\x8e\x6d\x9c\xc7\x57\xa9\x44\x2f\x8c\xcf\xfd\xb2\x7e\xad\xb9\x0e\x61\x10\x55\x66\xd8\x46\xbe\x75\xc8\xb5\x89\xef\x0c\x98\x6d\x6f\x3b\xcd\xb3\x7e\x95\x0c\xd1\x40\x33\x55\xcd\x30\x78\x02\xd5\xcf\x94\xc6\x67\x9b\x37\x2f\xb4\xe3\x61\xe6\xca\x6a\x95\x90\x24\xbf\x47\x8a\xf9\xbf\xd7\x20\xe4\xb8\xd8\xce\x5c\x0c\x3d\x73\xd4\xd4\x37\x26\x41\x71\xf3\x4f\xe5\xc9\xa1\x5d\x72\x6b\xe6\x03\xef\xd9\xd3\xae\x0a\x90\x90\xe6\x48\xa6\x12\xf7\x17\xf1\xfb\xa7\xb2\xde\x90\x0c\x7f\x48\xfe\xe3\xdd\xa5\x52\x94\xdf\xf1\xc0\x2f\xb3\x12\x06\xdc\x73\xb4\xb7\x10\x4d\x91\x12\xbc\x81\xd0\x3f\x07\xd8\x1c\xbf\x70\x47\x90\xd8\xfa\x4e\x93\xa0\xf0\x75\x45\xb4\x5b\x10\x28\xee\x10\xb8\x64\x29\x3e\xe4\x0a\xcc\xa1\xac\xf9\x2a\x4f\xcf\x66\x42\x92\xd7\x21\x1d\x3a\x3f\xe5\xa7\x5f\xe5\xb8\xb1\x08\xac\xe8\x23\xeb\x35\xd5\xcb\x62\x06\x12\x57\x6e\x41\x76\x03\x16\x8f\x4a\xc7\x78\x05\x18\x2f\x86\x7c\x95\x90\xa7\xe7\x58\x52\xfa\xa8\x4f\x0c\x47\x2e\xeb\xba\x85\xa0\xe6\xfa\x29\xde\x0b\x5b\xf0\x0b\x12\x31\x10\xb7\x1f\x52\xc4\x78\xc8\x03\x8e\xb3\x74\x70\xe6\x4b\xae\x97\x48\xa7\x43\x9e\x98\x9f\x6b\x79\xca\xd1\x85\x06\x33\xb3\xbd\xed\x6e\x5c\x09\xa5\xd7\xba\x36\x38\x8e\x8e\x33\x45\xf7\x78\x93\x34\x4f\x5c\x4d\x75\x93\xd7\x2f\x63\x6b\xe3\xbe\xff\x5f\xec\x49\x30\xcd\xa3\x2f\x92\x74\x4b\xa8\x43\xbe\x4d\xcc\x69\x95\x69\xc1\x3b\x5c\xe1\xb7\xbb\x22\x0f\x44\xa5\x32\x65\x1d\xa0\x87\x7e\x87\xdd\xb7\xab\xb8\xf0\x54\x38\x54\xa8\xa0\x59\xeb\x75\x63\x9d\x5a\x24\xdd\x41\xbd\x62\xea\x34\x0d\x81\xe1\x0e\x9d\xc3\x17\x31\xbf\xc0\xa0\xf7\xb3\xe9\x61\x6d\x86\x69\x92\x79\xb8\x13\xa8\x6f\x96\x67\x7a\x70\x47\xdb\x65\xdd\x7c\x2c\xa0\xd0\x16\x0d\xd8\xdf\xc1\x6d\xd2\x17\xbe\x1e\x8a\xeb\x68\x88\x53\xc8\x70\x7b\xf5\x77\x26\xb8\xa3\x17\x9f\x28\xaa\xcc\x15\xe5\x16\x02\xba\xaa\x0e\x94\x4a\x7b\x47\xd4\x47\xd6\x0e\x96\x17\x6d\xdb\xb3\x47\x23\xfa\xed\x88\x4a\xa1\x8b\x0d\xad\xe3\x17\x4c\x7d\x8c\xf8\x54\xe7\x48\xfd\x70\x16\x19\x63\x5d\xda\xa1\x9c\xdc\x01\x62\x87\x0f\x67\x78\xbb\x10\x35\x7a\x79\x26\xb1\xdf\x1c\xa4\x5b\x7e\x1e\x79\x84\xd4\xfc\xca\xa4\x9f\xc5\x68\xea\x93\x5c\x6e\xb0\x41\xb8\x40\xd3\xe5\x43\xc1\x8c\xdd\xbb\x4a\xe2\x76\x9b\xc5\xe4\x13\xe4\x9a\xb2\xea\x8a\x72\x81\x6a\xce\xb3\x93\xa0\x3f\xf4\x0e\xee\x9b\x39\x0a\xf0\xac\xb1\xbe\x05\x18\x0d\x2c\x74\xd8\xdc\xbd\x9b\x8c\x6c\xee\xcf\x1a\xba\xd6\x3c\x0d\x7f\x59\x70\x73\xe5\xe3\xb2\x63\x91\x1d\xac\x81\x60\x83\xa0\x77\x57\xb8\x33\xb4\x3d\xcc\xf3\x05\xe4\x15\xf4\x82\x14\xe7\x8c\x2c\x07\x4e\x10\x4c\xa3\xf4\x4c\xbb\x45\x93\x86\xdf\xde\x91\x64\x91\xb4\xef\x17\xc3\x6f\x7b\x51\xfb\x33\x5c\xce\x2d\x74\x1a\x34\x34\xbb\x71\xe1\x84\x7f\x6e\x52\x65\x04\x74\xf8\x19\xa9\xf3\xff\x44\x96\x8a\x89\xd9\x37\x24\x51\xbd\x5c\x41\xde\x2a\x5c\x3e\x21\x73\xbb\xd3\x6c\x99\x36\x88\x4b\xf5\x82\x57\x63\x28\xc5\xc4\x9a\x4d\x94\x1d\xf9\xaf\x8e\x7b\x49\x37\x51\x2d\x51\x73\x46\x0d\x0d\xe0\xb9\x35\x3a\x95\xae\x44\x1b\xa5\x05\x03\xf0\x6c\x59\x21\x22\xfa\x2c\xbd\x4c\x2c\xa9\xc9\x3e\x43\xb4\x9b\xb2\xca\x8b\xa4\x0b\x5e\xd7\x7e\x4f\x9d\x6c\x79\xf9\x8b\x93\x84\x58\xef\xe6\x59\xd7\x89\x21\xc0\xae\x03\x3a\x01\x80\xae\x8e\x5e\x93\x66\x67\x32\x1c\xe5\xa5\xf6\x2b\xbc\xca\x48\x7d\x87\xf4\x05\xf5\x75\x94\xfd\x6d\x36\xba\x64\x36\x91\xa7\x69\x5e\x20\x5b\xf7\x42\x41\xbb\x8d\x02\xa3\x75\x05\x76\x51\x38\xa0\xf2\xb4\xe7\x0a\xa1\xe0\x63\x8d\x3f\x05\xa6\x06\x5a\xa6\xbf\x8c\xd2\xd0\x58\x7e\x81\x80\xa0\x4a\x84\x1e\xca\xb0\x6f\x87\x37\xef\xe5\x64\xb7\xb7\x95\xbc\xf6\x3e\xc4\x62\xf3\x84\x45\x62\x06\x84\x03\xec\x28\x96\x2a\x76\xc0\x79\xb4\x8d\xfd\xa1\xe0\xd1\x95\xf3\x33\x1a\x87\x75\x1d\x58\x56\x6e\xd4\x0a\xf5\x9e\xde\x27\x7d\x11\x46\xfa\xab\x45\x12\x67\xb2\x6a\x50\x5d\xdc\x93\x55\xa3\x8a\x71\x4c\xd2\xe2\x51\x4e\x37\x4e\x8a\x7c\x2e\x24\x94\xd7\x22\xb6\x7d\x97\xcf\x8c\x8d\xf0\xe9\x14\x27\xaa\x1c\xe5\x59\xc9\x0c\xc2\x3b\x93\x90\x81\x5f\x20\x9c\xc8\x2c\x45\x5e\xac\xfc\x52\x75\x0f\xb7\x3a\xa8\xbe\x69\x56\x20\x59\x9d\x17\x17\xe2\xf6\xc0\x2e\xf9\xda\xbc\xd0\x17\x33\x39\x81\x2d\xfe\x0a\x20\x57\xaf\xf7\x78\x8d\xa1\x7a\xd7\xfc\x1f\x28\x0f\xbb\x34\xb5\xdc\xda\xd4\xb3\x5b\xc1\x83\x00\x67\x3a\x62\xe4\xe6\x4e\x33\x80\x32\x4d\x93\x15\x2f\xc4\x63\xf0\x4c\x52\x2e\xf9\x6c\xe6\xfb\xef\xdd\xb7\xb7\xbe\x38\x24\xd1\x87\x4c\xb4\x2c\x5c\x9d\x05\xdd\xc2\x72\xe3\x80\x38\xbf\xc9\x84\x96\x7c\xc5\x55\xf9\x18\x33\x7e\xcf\x9a\xd8\xe7\x15\xd5\xa9\xc1\x51\x74\xdd\x63\xf2\x45\xc0\x55\xbf\x87\x87\xaa\x51\x16\x5d\x1e\x14\x05\xaa\xb3\x84\x01\xc6\x15\x8d\x4e\xea\x1c\x4d\x7e\x10\x1f\x90\xa7\xf2\xcf\x0b\xf7\x0a\x4f\xfd\x0a\xf2\x55\x9f\x7e\x04\x7a\xfc\x16\x6c\x2a\x04\xf3\xf5\x28\x24\x8d\xf7\x22\xa6\x3f\x80\x79\x32\x1f\x30\xd5\xb7\xa5\x2a\xc3\x39\xff\x0f\xc4\xc3\xcc\x5e\x90\x8a\xe9\x6d\x4f\x5c\x2f\x5c\xcf\xb9\x61\x2c\xfa\x00\x41\x5b\x8e\xa8\x83\x9f\x36\xb1\x59\xa5\x19\xab\x8b\xcc\xf4\x98\xc2\x4c\x62\x76\x3c\x5f\x57\xff\x3d\xb7\x22\x0a\x61\xf5\x9f\xc1\x61\x77\x1e\x77\x55\x5f\x34\xc8\xa5\xec\x6a\xc7\x01\xd7\x0d\x28\xf4\x1b\x44\xb3\x7b\x63\xb2\xdd\xdf\x89\x5f\x7d\x36\x64\xcc\x1f\xe0\x3e\xa2\x5c\x58\x90\x83\xd3\x16\x59\x20\x01\xbd\x8d\x80\x80\xc7\xf0\xef\x05\xf1\x6e\x1e\x2e\x64\xf8\x78\x0c\x33\x5a\xad\x1b\xa5\x8d\x8b\x8a\xe4\x4e\x14\x14\x50\xaf\xcb\x10\xd0\x5a\xcf\xf2\xd8\x50\xdb\x5c\x97\x5b\x8e\xfa\xe7\x3e\xbe\x2c\x6a\x29\x28\xcc\xe1\xb7\x7f\x84\x25\x80\xe8\xf1\x76\x04\xc8\x95\x71\x3f\x25\x4f\x30\xcb\x84\xcd\x5f\xd6\xba\x6e\xa1\x23\x79\xaa\xcd\x29\x43\x22\xb2\xe4\x62\xa4\xc4\x07\x77\x04\xfa\xe8\xee\x30\xd1\x6c\xda\x8e\x55\x11\xaf\x24\xb1\xb5\x69\xf1\xb7\x34\x15\xd0\x17\xe4\xc2\xb9\xec\x8a\x2a\x49\x5d\x4b\x66\xdf\x66\x06\x58\xdf\x54\xbd\x8e\x42\x1b\xa1\x74\x59\xbf\xc5\x9e\x13\xfa\xa6\xfa\xc2\xcb\x8f\xf4\x92\x72\x94\x07\x84\x29\x6e\x23\x2b\xd8\xdc\xa7\x93\xd1\x65\xaf\xe6\xab\xaa\x66\x8d\x65\x0d\x1a\xb5\x5e\xd3\xad\x10\x09\xfa\x74\x55\xb1\x1d\xc8\x45\xee\x46\x04\x6c\xfe\xb6\x6c\x4f\xf4\x67\xd5\x03\x1a\xe9\xda\xdb\x8d\xb7\x29\xae\xaa\xb8\x3b\xb0\xc5\xa8\xe6\x8e\x11\x75\x98\xce\xf1\x01\x91\x8f\x8b\xea\x89\x96\xb7\xef\x3e\x89\x1f\x44\xa3\xe2\x1a\x4f\x18\x3e\x96\x8f\x8f\xbb\xa7\xc1\x00\xdd\xc2\x3f\x96\xf0\xee\x7d\x61\x3c\x6e\x50\xc5\x29\x71\x8c\x2f\x48\x4f\xd7\x0e\x51\x7c\x55\x13\xdc\x93\x85\x0b\x48\xca\x19\xa0\xfa\x8c\x74\x41\xc7\xf8\x5f\xca\xf2\x40\x5c\xbb\x02\xf5\xf4\xfb\x33\xbd\x97\x9d\x3b\xdb\x71\xb7\x3b\x2e\x2d\xea\x1b\x94\xa4\xe5\xfd\x86\x74\x9c\x62\x7d\xfd\x27\x37\x8a\x42\x41\x05\x07\x85\xd9\x7b\xb2\x73\x4c\x9a\x43\x3e\x8b\x09\x63\xc9\xd3\xb1\x71\x29\xbe\x8d\xcd\x91\x1e\xf3\xa5\x52\x12\x67\xf3\x32\xa3\xe3\x81\x84\x27\xae\x2c\x2e\xfa\x74\x5f\xee\x13\x5e\xbc\xed\x1d\x8d\x59\x6d\x85\x78\x60\x68\x07\xeb\xb5\x3f\xeb\x7a\x6e\xd9\x65\x3d\x8d\x73\xfe\xa0\x09\x9e\x00\x67\xc9\xb6\xb0\x70\xa3\xc2\x95\x2e\xab\xbc\x18\xbe\xe1\xed\xc4\xdf\xcc\xae\x19\xa0\x18\x83\x7d\xad\x2a\x37\x94\xd1\xfc\x9c\xb4\x02\xcc\x60\x5d\x4e\x1b\xcf\xb9\xf4\xc9\x95\x36\x22\x4c\xc5\x85\x64\xdc\x8b\x64\xb9\x22\xbd\xc4\x8b\x92\x9d\x18\x56\xb5\xc9\xe3\x71\x94\x17\xd5\x72\x9e\x26\xb9\xa6\xbd\x26\x0f\xd6\xf2\xc6\xa7\x97\x26\x4f\x7b\x30\xa2\x13\x24\x4b\xe5\x7a\x73\x75\x38\xc4\x6a\x45\x3e\x86\x47\x77\x2b\x62\xc3\x24\x7f\x33\x97\xea\x63\xbf\x1c\xc8\x09\x8e\x6a\xfe\x4d\x42\xcd\xb4\x88\xc6\xa5\xd3\x09\x7c\xe2\x63\x54\xe2\xa5\x60\xbf\xe0\x79\x00\xfb\x7a\x06\x3d\x1e\x7d\x31\xd5\xe3\x29\xf2\xe1\x97\x5a\x5f\xfd\x2d\xef\x8d\x88\x05\x05\x04\xd9\x51\x85\xb6\xaa\x9b\x24\x10\xac\x53\xd6\x92\x6a\xce\x29\x0d\x29\xd3\xa2\x96\xd3\xd4\xe6\xa9\x92\x70\xa8\xc4\x2c\xc4\x01\x91\xc0\x5e\x11\x06\xb4\x39\x39\xb3\x55\x23\xbe\x16\xb6\xa4\x4a\x6f\x99\x36\x50\x68\x06\xfe\x54\xea\x39\xb5\x5a\x8b\x68\x3e\x7c\x56\x0e\x76\xe5\x81\xac\x05\x54\xfd\xb1\x88\x8c\xe3\x2f\x48\x07\xc4\x4b\x6f\xef\x9e\x52\xdd\x32\x12\x29\x44\x11\x94\x9e\x58\x9f\x2a\xc6\x4e\x6e\xc0\xa7\xad\xb8\x62\x29\xae\x92\x21\xcb\x85\xa3\x0c\x36\xde\x57\xa8\x6d\xc5\xd3\xa9\xdc\x5e\x7f\x7e\xe3\x53\x04\x44\xcc\x3a\xfa\x7c\xe8\xef\xdc\xc1\x67\x36\xe4\x4f\xe0\x5e\x9d\x61\x4f\xc8\x7b\xf2\x65\x50\xc1\x2d\x74\x42\x8f\xfe\x9c\x88\xff\xe9\x3b\x4d\x48\x52\xe3\x3c\x89\x42\x2a\xba\xa7\xd5\xda\xa0\xa4\x60\x47\xe1\xc6\x20\xb7\x7b\xb1\x5d\x15\xe3\xe1\xc8\x55\x2d\x66\xc4\x92\x0c\xd3\x59\x52\xff\x3f\x54\x24\xaf\x4b\x21\x67\x28\xd8\xfa\x56\x1b\xee\xb6\x61\xa6\xdb\x5d\xed\xa6\xae\xe4\x2e\x06\xdb\xfd\xcf\x36\xea\x0e\xee\x30\x97\xfa\xe5\x71\x0a\x86\x0b\x96\x31\x90\x93\x7a\xed\xb3\xb8\x40\xc4\x9d\x0f\x1d\x8a\x2d\x70\xea\x07\x10\xeb\x9d\x88\x9a\x09\x57\xb1\x12\xb1\x2c\x1f\xeb\xf8\xda\xa1\x27\x19\xda\xdc\x14\x7c\x3f\x80\x68\xaf\xe2\xd9\xe0\x19\x3c\x20\x66\x69\x91\x8f\xcb\xd2\xa5\xad\x60\xfb\x03\x18\x87\x79\xd1\xcd\x7e\xb9\x97\xdb\x65\x5c\x25\xa5\x67\x0e\xa3\xde\xda\xd4\x21\xd7\x82\x4d\x6b\x5f\x24\xb7\xa7\x95\x3c\x1d\x67\x55\x5c\x24\x8a\xaa\xc6\x78\xe3\xa6\xac\x70\xbd\xfe\x5c\xe0\xa0\x4b\x13\x79\x54\x8d\x80\x10\xee\xf1\x3d\xdf\x37\x6e\x10\xaa\xaa\x37\x79\xec\xf4\x26\xc9\xdf\xd4\x67\x21\x2a\x6b\xb3\x57\xab\x3f\x87\x41\x29\x58\x53\x26\x48\x59\x15\x81\x4d\x6e\x72\xf6\x01\x67\xf8\x0f\x9b\xd8\x4d\xa3\x3c\x75\xe5\x1c\x0b\x20\x6b\x08\xc3\x67\x3f\x1d\x91\xfe\xfd\xcf\x1a\xe4\xf4\x5f\x6e\xc7\x69\x9e\x39\xa2\x66\x9f\x91\x9c\xc2\xda\x40\x8f\x58\x44\x8f\x31\x15\xf4\xda\x14\xac\x02\x52\xff\x75\xf4\xa4\xef\xcd\xda\x65\xef\x6c\xff\xf2\xae\xdd\x2f\xec\x3e\xb0\x5f\x7a\xda\xc8\x98\xcf\x4e\xa6\x18\xbd\xe4\xab\x84\x39\x92\x09\x47\xd6\x5b\xdb\x84\xd9\x37\x7e\xf9\x97\xea\x6f\xef\xfa\x53\xa2\x3e\xca\x39\xd4\x17\x53\x08\x85\xb1\x4b\x81\xab\xd4\x39\x7e\x44\x9c\xfd\xeb\x24\x9f\x72\x0b\x0b\x58\xff\x81\x44\x2b\x66\x6d\x34\xeb\x7a\x7b\x9c\xf5\xf4\xf6\x5b\x9a\x8f\xdb\x8f\xce\xd9\x67\xf8\x6a\x08\x6e\xc7\x67\x36\x70\x7d\xac\xe6\xe3\x2a\x3f\x34\x1e\x8e\xc6\x44\x66\xfd\x74\x42\x50\xec\x4f\x09\x45\x3c\xc8\x87\xee\x29\xd9\xe8\x54\xde\xbe\xec\xb9\x75\xa4\xe2\x7e\x62\xc2\x77\x1b\x9f\x09\x11\xff\x18\xab\xb6\xac\x49\x4c\xd2\x79\xbf\xdc\x05\x14\x96\x1f\x30\x3e\xf3\x36\x75\x0c\x5b\x6b\x64\x24\x7e\x3d\x6a\x7d\x6d\x97\xc7\xca\x05\x44\xfb\x37\x80\x8f\x32\x72\x96\xdc\x69\x6f\xb6\xb9\xcf\xab\x44\xa2\x1c\xc7\xa7\xfa\x90\x6d\xea\xb2\x2c\x1f\x67\x5d\x37\x87\x8f\x8d\xec\xf8\x18\x62\x21\x8a\xba\xcd\x1d\xe6\xd9\x35\x79\xb2\x41\x36\xd5\xf5\x34\x14\x28\x52\x3b\x0a\x81\xef\x02\xf5\xe8\x46\x85\x1b\xc5\xab\x43\x97\x29\x4a\xcb\x13\xba\x02\xb9\x6b\x26\x5e\xef\xd9\xd3\x46\x1d\x85\x51\x18\x6e\x21\x7c\x88\x71\x8d\x41\xbc\x3d\x81\x27\x3d\x97\x64\x20\xdc\xef\x55\x92\x28\xbd\x80\x55\xab\x2f\x9a\xbe\x4d\xcf\x15\xc9\x4a\x10\xc2\xb5\x5e\x57\xcb\xcb\x26\x9d\x9f\xf9\xad\x7a\x6d\x95\xf9\xb8\x1a\x1c\xf6\xac\x71\xc5\x14\xc8\xd7\x32\x7c\xc1\x54\x80\xee\x0f\xd2\x55\x49\xbd\x90\x29\xbd\xcb\x38\xd2\x53\x92\x7e\xa0\x51\xb1\xa9\x43\xb6\x93\x97\x88\xfb\x59\xa6\xc9\x68\x41\xd6\xa7\xca\x3f\x71\x9a\x74\x6a\xc2\x71\xf3\x5e\x44\xea\x3d\x97\x90\x28\x99\x66\x94\x05\xd1\x24\x2b\x45\x6f\xfc\x60\x60\xb0\xca\x27\x42\x09\xc1\xac\xc1\x46\x93\x9e\x43\x6e\x54\xc1\x7d\x07\x19\xd4\x23\x1d\xaa\xa9\x6e\x71\x53\x47\x76\x01\x72\x88\x93\x44\xd6\x1f\xac\x8e\xf2\x7e\xba\xda\x75\xc3\xa4\xcb\x70\x41\x12\x79\x38\x3f\x43\xd8\xf0\x42\xa0\xa3\xc4\xf5\x5d\x3a\xc7\x10\x18\x2a\x20\x6f\x44\x53\xb0\x97\x8d\x8f\x6f\xdf\x8e\xf6\x72\x5c\x2c\xbb\x2a\x94\x93\x88\x6a\x9b\x05\x6c\xa9\xd7\x9d\x50\x28\xf4\x4a\xc5\x4b\x7a\x59\x38\x1f\x4e\xd4\xa8\x11\x5b\x67\x16\xc6\xfa\xca\x2b\x75\x79\xdf\x3d\xe4\xab\x1d\x3c\x64\xb5\x75\xd2\x17\x33\xeb\xff\xa5\x7d\x3b\xda\xdd\x42\xbc\x3e\xc2\xbc\x9a\x1d\x98\x59\x8c\x3e\x1d\x3b\x4c\xa3\x30\xb9\xbf\xcb\xe4\xa2\x6b\xda\x0f\xf3\x3a\x35\x7e\xe2\xaa\xb9\x30\x8a\x97\x73\xd4\x3f\xdc\x3a\x83\x88\x3b\xb8\xe3\x85\x3a\x17\x52\xa1\x5d\xa4\x25\xd0\x9b\xd3\x6b\x0f\x1c\x8f\x7b\xaf\x8e\x4b\xf1\x85\x68\x05\x58\x00\x92\x5d\xbd\x5e\x6b\x82\xa5\x0c\x9d\xf7\x21\x52\xad\x3d\x72\x06\xfa\x88\x5a\x0a\x87\x32\xcf\xd2\xb7\x8f\x0e\x21\x5a\xbd\x9e\x61\x86\xc2\x54\x7a\x28\x8a\x8d\x61\x8b\xeb\xde\x22\xec\xcc\xa5\x09\x57\xcc\xa3\x24\x1f\x97\x73\xe4\xe9\x46\xb0\xfe\x73\x6c\xc8\x75\x62\x66\xb4\xf2\xca\x2b\xed\xd1\x18\x72\x82\xd8\x17\xf7\x69\xad\x7c\xc6\x28\x23\x00\x93\x4c\xbd\x27\x74\x14\x07\xf1\xeb\x2e\xcd\xc6\x60\xdf\x7b\xb0\xfd\xaf\xbf\xa4\xd7\xb7\x68\x30\xf9\x69\x13\x39\xa2\xc8\x57\xe3\x54\x51\x0b\x2a\xb3\x39\x25\xb9\x69\xfb\xdf\xc5\x65\xe2\x8a\xad\x12\x1b\x70\x6c\x5f\x41\x00\xf0\x06\x43\x7e\x0b\xbf\x3f\x45\x44\x98\x30\xf1\x24\xac\x82\x47\x31\xa9\x90\x45\x74\xec\x99\xce\xe3\x1e\x7b\x6e\x76\xbe\x86\xf2\xbb\x80\x77\xb3\x01\x45\xc3\x57\x50\xa4\xe9\x14\xd1\x5d\xbe\x83\x91\xde\x1b\xa4\xf0\xbb\x71\x51\x40\x4f\x42\xd9\x0a\xd1\x14\x75\x21\x48\xb5\x65\x79\x71\xd8\xf5\x93\x38\x6b\x91\x36\xf9\x84\xf4\xc8\x27\x0d\x7e\x27\xae\x37\xee\x06\x43\x03\x3f\x1b\x09\x6c\xd6\xa3\x33\x50\xca\x3d\x7b\xda\xa9\xeb\x27\x65\x2a\xeb\x8e\x69\xb0\x47\x27\x84\x24\x97\xa5\x05\x68\xcf\x7b\xd4\xbf\x5a\xc9\x2b\xd7\xdb\x12\x24\x78\x01\xf5\xd1\x6b\x59\x39\x36\x48\xae\x1f\x93\xc9\x44\x87\xb9\x17\x0c\x8f\x90\xb5\xfe\x98\x1c\xe6\xe2\x5e\xcf\xf5\x1e\x09\x6d\xf1\x7f\x29\x7f\x1f\x7d\xed\x3b\x48\xdb\xd0\xb0\x51\x55\x76\xaf\xe8\x57\x07\x18\x5b\x8d\x84\x88\x03\xaf\xcf\xe4\x14\xea\xcf\xeb\x45\x61\x76\x1d\xd0\xe4\xee\xfe\x24\xd8\x15\x16\x6e\x39\x75\xaf\x25\x2b\xb2\xdf\x7d\xe7\x0c\x28\x17\x53\x9f\x6d\x50\x0d\x58\x8e\xd3\x14\xb7\xd0\x4c\xba\x5a\xde\xa0\x1b\xb2\x40\x48\x57\x6e\x10\x82\xb4\x70\xab\xe8\x92\xa2\x3b\xf8\xcf\xf0\xb1\xf5\x45\xc4\xa6\xf0\x59\x2f\x01\x6c\xcd\xdb\x3e\x04\x43\x81\x63\x94\xa8\xdc\x8a\x02\xaa\xd9\x75\xf3\x2c\x1f\x26\x65\x55\x6e\x0b\x60\xb4\xb7\xd0\x3f\x54\x69\x3e\xe9\x19\xa2\x72\x43\x15\x87\xc3\xf9\x5b\x9c\x23\x9e\x8e\x68\x58\xf5\x3e\xd6\x2c\xba\x20\x57\x27\x61\xba\xf4\xad\x99\x25\xb9\xeb\x40\x3b\xae\xd2\x38\x33\xa1\x4a\x24\x93\x3a\x07\xd4\x17\x9d\xf0\xd8\xcb\xca\xc5\x43\x39\x2d\x11\x70\xee\x4e\x8d\xae\x5a\x64\x33\x19\x82\xed\x72\xdc\xad\xf2\x62\x75\x4b\xe8\x26\x5c\x22\xf1\xc9\x4b\xe8\x8a\xd9\xe8\x4c\xc2\x88\x19\x7c\x86\x39\xc6\x8d\x09\xa1\x9a\x6f\x44\xdb\xc3\xcc\x63\x5b\x98\x0d\xb7\x3a\x75\x78\xf3\xf4\xb8\xa0\x84\xfa\x34\xa4\xf0\x64\x59\xc4\x5f\x5a\x0b\x18\xec\x5f\xee\x90\xd4\x91\xda\x82\x99\x99\x3d\x97\x08\xb3\xaa\x8b\x07\x77\xb4\x97\x5c\x3f\x81\xa9\xa4\xaa\x2e\x92\xbb\xce\x99\x30\x97\x1c\x39\xd7\x53\x0c\xb9\x47\x06\x78\xb6\x1f\xbe\xa3\x71\xa1\xa7\x8d\x30\x4c\xf6\xd0\x2a\x0c\x1a\xf6\x7f\x4a\xc7\x76\x56\xc5\xf3\xa1\x59\xaa\xc9\x1c\x9e\xdc\x5d\x2e\x36\x20\x32\x62\xbc\x93\x19\xe3\x98\x5d\xfa\x9c\xc8\x3b\x1a\x99\xb8\xe1\x7c\xe9\x81\x26\x59\x1a\x67\xbd\x39\xe1\xb9\x91\x10\x9e\x4e\xfe\x2c\x19\x9f\xf2\x57\x2f\xab\xa7\x82\x89\x0d\xd2\x3a\xf4\x62\xfe\x2d\x71\x1f\xb5\x95\x86\xdb\xb4\x2e\xe7\x03\x3a\x1b\xda\x19\x43\xab\xfc\xba\x38\x6a\xe2\xeb\xde\x42\xbf\x4e\x53\x28\xfc\x7d\x75\x5d\x9f\xb0\x4f\xd7\x65\xc6\x8f\xcc\xaf\x85\x6e\xe5\x76\xc8\xa5\x9a\x8b\xb7\x6c\x3b\xec\x9b\xf3\x52\x05\x81\x93\x70\x1e\xeb\xd2\x67\x6a\xf5\x93\x40\xdc\xdb\xdc\x79\xda\xf3\x97\xe2\xac\x3b\x48\x4a\x67\x90\x03\xbc\x27\x04\x44\xf4\x9a\x35\x1d\x93\x9e\x3c\x36\x22\xb5\xef\xf7\xad\x5d\xf9\x6b\x5e\x2a\x60\xdf\x0e\xbf\x42\x8d\x1f\xd2\x75\x99\x66\x92\x96\x77\x04\xcc\x06\xec\x66\xb1\xc0\xef\x52\xc8\x94\x4d\x9e\x8c\x44\xd7\x22\xf0\xd9\xef\x13\x9f\xfd\xbe\x87\x0f\xc4\x69\xac\xe4\x1b\x85\x26\xc9\x4f\x19\x4c\x29\x20\x5a\x7b\x49\xa9\xe8\x28\xb4\xc4\xf0\xe8\xb5\x34\xd6\x17\x04\x80\xed\xe6\xc3\x91\xab\x84\x8e\x3c\x1f\x54\x6a\x94\xc6\x68\x54\xab\x20\x39\x72\x21\x62\x9a\xd7\xc6\x25\x5b\x17\x90\x49\xf7\x90\x43\x3a\x89\x87\x76\x04\x7f\x59\x5f\x44\x6c\xba\xb7\x9a\x67\x6e\x81\x6c\x54\xd0\xc4\x40\x69\xa3\x75\x8e\xfe\xc3\x24\xa8\xc3\x9e\x9f\xf2\x17\x79\xca\xa3\xff\x5e\xcd\x29\x0d\xc4\x6d\x81\xb4\xb5\x5e\xd3\x83\xce\xe3\xd1\x1c\xf9\x5e\x1f\x27\xeb\x1b\xc8\x10\xaa\xba\x44\xa3\xc4\xe5\xc0\x15\x0b\xa1\xeb\xa3\xd6\xd8\xf8\x98\xdb\x3a\xc1\xf5\x1a\x9e\xc4\x08\x23\x17\xb5\x21\x6e\xd0\x23\xde\x86\x49\x5e\x3c\x5e\x6f\x43\x6c\x91\x33\x72\xb0\x68\xd7\x5e\xe9\x0b\x36\xd8\x22\x52\x12\x75\x00\x8f\x4d\xcb\x23\xc9\xde\xc3\x02\xfe\x57\x11\x79\xf6\x5c\xe7\xd1\xe9\xdf\xc3\xde\xb1\x2c\x9b\x8c\x99\x7e\x26\xfd\x75\x3f\x56\xdf\x67\x22\x51\xeb\x0d\x4d\xd4\xc5\x76\x91\xe7\xc3\x61\x10\x65\x69\x24\x04\x3f\x4b\xc4\xbc\x42\x3c\x20\x45\x7d\xd0\xd3\xfe\x6e\xd3\x74\xf8\x36\xd1\xf8\x24\xb5\x4f\x24\xb7\x57\x29\x17\xc0\x37\x94\x4c\xa3\x2f\x9a\x24\x10\x97\x12\x04\x69\x8c\x0f\x14\x7c\xaf\x2f\xd6\x08\x69\xd1\x93\x81\x89\x3f\xcf\x1e\x44\x9b\xbf\xac\x4d\x15\x28\x86\xa2\x81\x7e\x0b\x37\x0e\xfd\xbb\xa3\x8d\xf6\x0a\xa3\x71\x2a\xcc\xc4\x75\x64\x17\xeb\xe7\xc9\x93\x34\x2e\x86\x65\x55\xe4\x3a\x36\x26\x47\xf3\x45\x4f\x2f\x09\xd0\x7c\xd7\xeb\x25\x9a\x4e\xda\x88\xa3\x45\xa2\x43\xe1\xb3\xb2\xb8\x93\xd9\x34\x22\xa5\xf6\x55\xac\x37\x6f\x3d\x4b\x63\xe3\x2c\x5f\x79\xfe\x51\x89\xae\x44\x97\xd9\xa5\x2b\x49\xd5\x2a\x51\x59\x5f\x96\x5a\xc4\x5a\xe1\x53\x29\x62\x48\x1a\xde\x9e\x04\x88\xd5\x25\x6a\xf9\x9d\x8c\x08\xc0\x82\xd9\x9b\xd2\x6d\x91\x44\x21\xb4\x7d\x63\x83\x60\xcf\xf0\x17\xe5\x4e\xe3\xb7\xb6\x83\x37\x83\x58\xf0\x59\x14\x8c\xb7\xef\x44\xb4\xde\xd5\xdd\x15\x6d\xcf\xdb\x13\x0a\x25\xbf\x33\x09\x36\xa9\x7f\xcc\x7a\xd4\xf7\x64\xbd\x19\xe2\x95\xe7\xa0\x57\x27\xf4\xfd\x11\x5d\x71\x1e\x6e\x59\x0b\xd1\xe7\x6e\x24\xee\x77\xc8\xea\x4f\xca\x00\xcb\x6c\x78\xea\x9d\x83\x5b\x7e\x71\x42\xc6\x5a\xf7\x64\x4b\x63\x31\xcd\xad\x05\xc8\xe7\x56\x49\x8d\xb0\xd5\x4f\xc9\x4d\x45\x6e\x69\xc2\x30\xc6\xf4\x95\x5b\x69\xfc\x7f\x32\x76\xbb\x17\xb5\xbe\xfa\x5b\x1e\x9e\x2f\xfb\x1e\x07\xcc\xcd\x46\x87\xde\xbc\xe8\x43\xe4\xc4\xb4\x2c\xea\xef\x67\x1a\x17\x8d\x0e\xdd\xaf\x25\xdd\x58\x1d\x46\x4d\x90\x5a\x1e\x90\xa5\xc0\xd6\x9a\x5b\x8e\x93\x62\x39\x71\x69\x4f\xfb\xfb\xb8\xb5\x17\xd9\xd0\xbf\x91\x74\x58\xb8\x15\x17\xa7\xea\xd0\x64\x02\xc7\xf2\x05\x75\xe0\xcc\x72\x0a\xb3\x6e\x14\xfb\x76\xb4\xdd\xd0\x29\x69\xe6\x65\xdf\x7c\x09\x18\x26\x85\xf5\x59\x17\xda\x12\xd4\x41\x5c\x09\x64\x1a\x01\xef\xbb\x58\x34\x1a\x31\x27\x01\x18\xb1\xa9\x23\xb7\x14\x5b\x43\x07\x92\x88\x52\xdf\xc5\xa2\xb3\x51\x53\x38\xd0\x52\x17\xf7\x5c\xb1\x40\x1e\x1a\x5b\x05\x8a\x82\x5f\x3b\x4e\x9e\x2d\x17\x89\x11\xfc\x1e\xf6\xa0\xfd\xc3\x46\x78\x84\x08\xe9\x8d\xe2\xe2\x90\xa1\xb1\xbd\xd3\x52\xbd\xc4\x4c\x67\xc0\x92\x90\xe5\x71\x89\xa7\x8c\xd6\xf9\x3b\xf2\x37\xf5\x7a\x86\xda\xf3\xca\x2b\x6d\x68\x02\xe7\x5e\x65\xc0\x12\x1c\x22\xdd\x9e\x0d\xa9\x7d\xd2\xc7\xbd\xa6\x5a\xca\xce\x17\x9c\xca\x4a\xd8\x8a\x02\x63\xb8\x1c\x25\x99\x58\xcf\x78\xa4\x60\x68\x14\x03\xcd\xa8\xd7\xb2\xc5\x0d\x41\xd8\xe0\x96\xe5\x5e\xab\x5c\x56\xda\xf9\x8e\x73\xec\x66\x14\xa8\x0e\x37\x9b\xd5\x5f\xf1\x05\x87\x26\x5d\x68\x79\x24\xa5\x24\xe7\xbd\xf3\x7a\xcf\x0d\xe3\xac\x67\xcd\x09\x9d\x7a\xe2\xe9\xd8\x08\xf4\x59\xd2\x25\x46\x03\x20\x2f\x74\x05\x5b\x18\x24\x95\x83\xcf\x58\x7e\xfc\xce\xcc\xd9\xb1\x7b\xb1\x9d\xe5\x45\x35\x98\x0b\xa1\x06\xcd\x6f\x84\xad\x9b\xdc\x8e\xba\x42\x38\x9d\x32\x8f\x0b\xd7\x5b\x60\x38\x9c\xde\x57\x46\x79\xa2\xea\xf9\x53\xd9\xe7\x26\xd3\x8e\xe3\x69\xe6\xd0\xfc\x4a\x3b\xcd\x4b\xdc\x20\xeb\x41\xca\x07\xb7\xee\x24\x35\xd0\xe2\xa1\x2b\x62\x24\x96\x66\xbc\x41\xad\xea\x4b\xb3\xa4\xc1\xbd\xed\xbd\x2f\xee\x7f\xa2\x8e\x93\xb6\x70\x5b\xfb\x76\xac\xff\x14\x9f\x17\x8b\xfe\x3d\xf6\x08\xfe\x4c\x8b\x04\x6c\xcf\x9b\x48\xff\x3d\x90\xcc\x77\x1e\xaf\xe0\x18\xc0\xbe\x55\x0d\x7d\xe4\x33\xf7\x26\x34\x62\x3e\x29\x7d\x0b\xad\x18\x10\x95\xcd\xd2\x25\x70\x20\xe7\xd7\xea\x48\xac\x9b\x5b\x8e\x07\x33\x86\xf9\x02\x51\xfe\xfb\xfd\xd5\xa5\xd0\xed\xb5\x30\x81\x0e\x85\x5e\x37\x8d\x20\x0e\xc7\x65\xe5\x0e\xc7\x95\x2b\xe6\xa6\x78\xa4\xbe\x85\xf7\x48\x27\xa0\x3b\xe6\xd6\x02\xad\xb8\x84\xcd\x66\x5c\xa8\xc1\x2c\xe2\x18\x86\xbf\x7a\xdd\x28\xe3\xfb\xf5\x71\xe2\xfc\x34\xd4\x26\x08\x72\xb3\xf4\x45\x93\x06\x98\x8b\xd5\x34\xd4\x37\x8d\x3d\x96\xef\x1c\xb9\x8b\xf6\xf3\xbc\x57\x6e\x09\x5c\xfd\xbb\x34\x4a\xd8\x84\x26\xa1\x2f\xbc\xbd\x50\xda\xd5\x09\x77\xec\x09\x2f\xf3\x16\x69\x2f\x95\x6e\xc5\x15\x2a\x27\xfc\x82\x27\x58\x06\xd2\xce\x05\x5f\x07\x55\x2e\xcd\xb5\x78\x37\xe6\x5b\xfd\xb7\xbc\xd4\x6e\x18\x40\x5f\xa6\x62\xe3\x70\x5d\x96\x14\xad\x19\x4d\x6f\x43\xa7\xd2\xee\x72\x75\xac\x9d\x27\xaa\xd3\x49\x86\x8e\x02\x4b\xe3\x51\x42\x01\x50\x71\x89\x74\x18\x0e\x3b\x77\x28\x5d\x15\xe0\x28\x3e\xe3\xd5\x28\x94\xd7\x57\x27\x81\x69\xfa\xd3\x09\x9d\x16\x3f\x9d\x39\x25\x45\xb7\x7d\x18\x27\x99\x4e\x6b\x01\x6f\xb9\xc0\x6e\x93\x4d\x6c\xd0\xbd\xed\x58\x18\x89\x62\x15\x1f\xd8\xcf\x3b\xb4\x43\x76\x45\x62\xad\xf5\x82\x79\xd8\x3b\xc8\x0f\x3f\x2b\x90\x1f\xc4\xaf\x3b\x93\x50\x0d\x5c\x90\x37\x40\x1c\xdc\xa4\xba\x66\x5e\x09\xc1\xcb\xf5\xdd\x95\x8c\xc8\xec\x8b\x36\xaa\xdf\xbc\xa0\x40\x94\x47\x20\xbb\x0a\x78\xe0\x1c\x2b\x8a\x20\x11\xd2\x89\x0b\xf2\x51\x2c\xa8\x2b\x13\x96\xd6\x66\x90\x30\x00\xa2\x08\x55\x0b\x72\xde\xa2\xe8\xfa\x10\x45\x0e\x7a\xa6\x1a\x62\x4c\xfb\x23\xa0\xc1\x9e\x90\x92\xcd\x1a\xa6\x4d\xce\xec\x62\x1e\xab\x31\x1e\x99\xf8\x0d\x4d\x1b\x31\xc4\x50\x04\x78\xc0\xa4\x7b\x38\x67\x9e\x57\x4b\x71\x9a\x6e\xa1\x29\xd2\x5d\xf9\x7e\x88\x47\x6f\xe0\x96\x98\x3a\xa8\xef\x45\xfe\xd2\x93\x9d\x90\x9f\xbc\x23\x01\xcc\x7e\x66\xb6\x1e\x7d\xa1\x9d\x26\x2a\x00\x83\x9e\x12\x48\xed\xa8\xf3\xc1\xcb\x34\x2c\x57\xd8\x6c\x87\x5d\x9a\x76\xc5\x8c\xcc\xaf\x89\x3f\x91\x35\xa1\xd7\x1e\x8f\xe6\xc6\x45\xde\xcb\xd3\x34\x2e\xcc\x7a\x05\x30\x1c\xcd\xd3\x10\x50\x6e\x91\x18\xc9\x45\x6e\x0a\x6e\x5e\xb3\x8e\xdb\x28\x8d\x33\xab\x12\x71\x9e\x7d\x40\x56\xcd\x1f\xf8\xce\x5c\x91\xa7\xa9\x03\xc9\xd2\x3a\xc6\x54\x2a\xc1\x12\xdf\xf0\x0e\xb3\xf7\xa2\x9d\xe5\x95\x6a\x5f\x79\xcf\xdc\xe0\x9f\xdb\xb0\x4f\x5e\x16\x7c\xae\x4b\xf1\x3b\x48\xe8\x7e\x1c\x05\x1c\xd1\x8f\x1b\x34\xb6\xf6\xb7\x5f\x1d\x0f\x47\x0e\xd8\x27\x44\x0f\x3d\xe6\xf5\x05\xb1\x52\x44\x4e\x6e\x1c\xa7\x92\x91\x21\x85\x87\x6a\x9a\x5e\x33\x81\x25\x1e\x25\x55\x9c\xea\x3d\xf2\x0e\x4a\xc1\x4d\xc9\xc7\xbf\x32\x49\x57\xe2\x39\x5a\xce\x18\x43\xa1\x9d\xd5\xea\x10\x2c\xe9\x08\x77\x2f\x53\xe7\x96\xc7\xa9\xe8\xe8\x33\x19\xc3\xcf\x91\x79\xde\xec\x85\x7a\xf3\xac\xeb\x12\xc5\x6c\x61\x83\xfe\xc9\x24\x54\x30\x7f\x32\x93\xd1\x1c\x78\xb1\x3e\x49\x54\xa1\x1d\xd3\x02\x85\x1c\xe8\x8b\xb5\x10\x23\x7b\xae\x74\x45\xb5\x10\xda\x49\x6f\x46\xa4\x09\x8f\xdc\x10\x71\xfc\x2e\x51\x72\x8e\xc9\x3a\xd5\xff\xdf\xa4\xdb\x35\xcc\xcb\x6a\x81\xa6\x18\x9b\x3a\x32\x28\xc0\xce\xfa\x2f\x3b\x32\xd0\x47\xcf\xf1\x17\xa5\xe7\xc8\x29\x13\xa2\xde\xc3\xa6\x99\x78\xea\x96\xab\x79\x42\x10\x5f\xc4\xc2\x44\x3c\x82\xc9\x19\xa0\x52\x6f\x4d\xc8\x58\x7a\x53\x87\x7c\x6d\xf2\xc3\x59\xbf\x88\x7b\x48\x60\x15\x0f\x24\xc7\x82\x61\x83\x02\x9d\x3c\xce\xb2\xc4\x95\x8a\xe3\xc0\x1f\xbc\x3d\x8d\xea\x93\x6f\xa8\xce\xe9\x8d\xab\x74\x25\x4e\xc7\x96\x05\x98\xf9\xb7\x7c\x32\xb3\x05\xdf\x38\xd4\xda\x75\xa0\x9d\xe5\x59\x4f\xac\x6c\x47\x48\x06\x51\x7a\xe1\x90\xd7\xeb\xcf\xe5\x26\xa6\x89\x0a\xe1\x22\x2a\x9f\xa7\xbc\xe8\xbc\x47\x71\x98\x95\xb9\xba\x64\x98\xb3\x36\x67\x7c\x47\x26\xa4\xc2\xa7\x8b\xc7\x26\x55\x4d\x54\x24\x7b\x30\x96\xb4\x5d\x9e\xd0\x2c\xe9\x27\x78\x4a\x08\x5a\x9b\x05\xe5\x68\xe5\x4a\x43\x32\x5e\xb8\x51\xf9\x3c\x08\x71\x68\xbf\x6c\x5b\x63\xbf\xa9\x6d\x24\x6c\x50\xc6\x59\x0f\x9d\x4b\xa5\xe2\xcb\xdc\xce\xd3\xf2\x49\xf3\x55\x6e\x1e\x06\x18\xd7\xc9\xb4\xfa\xad\x99\xb1\x8f\xcc\xb3\x93\x62\x94\x17\xd5\x1c\x8b\x68\x73\x36\x7f\x82\x01\x99\x77\xa7\x00\xb9\xbd\x3c\x7b\xb2\x3e\x08\xf1\xa7\x8e\x4f\x02\x4b\xe1\xa3\x09\xc3\xf4\x31\x31\x46\x50\xd9\x04\xe5\x52\x85\xba\xa2\x12\x46\x52\xaa\xec\x61\x1c\x1d\xd7\x70\x92\x02\x8c\x71\x3b\x22\x7e\x80\x96\xd8\x2a\xbe\x13\x05\x42\xc6\x49\x34\x22\xf5\x57\x04\x8f\x86\x03\x52\x23\x0d\x66\x1e\xa0\x51\xe2\xe9\x7c\x12\x4d\xe9\xe4\x07\x90\x51\xcf\x8d\xf2\x32\xa9\xf2\x62\x95\x45\x63\x2e\x4d\xa6\xc0\xd4\x4d\x72\x6a\x83\x58\x34\xcf\xa7\x4d\x18\x03\x84\x87\xe6\xc6\x65\xdc\x2d\x92\xe5\xa4\xeb\x90\x69\x23\x33\x38\x85\x6f\xad\x2f\x08\xac\x33\x1a\xa7\x23\x34\xe9\x34\xcf\xa1\xe1\xd1\x9f\xc9\x23\x36\x62\x40\x48\x2a\x41\xb4\x9d\xa7\xa5\x7d\x14\x2d\x05\x9c\x04\x17\xe8\x2d\x8e\xe2\xd6\xe9\x3f\x10\xc8\x71\x84\x31\xb8\x47\x07\x7f\x4a\x8d\xf0\x4f\x49\x4b\xa9\x88\x57\x97\xc6\x05\xc6\xd9\x88\x10\x57\x38\x5c\x5c\x89\x02\xa6\x6a\xc5\x25\xa9\x87\xaf\xa0\x4d\xf0\x23\x82\x15\xff\x88\xf1\x19\x49\xaf\x97\x78\x43\x75\xdc\xf7\xcf\xf8\x21\x7c\x36\x03\x75\x79\xe5\x95\xf6\x70\x5c\x3f\x83\x39\xba\xad\xe7\xa8\x25\x31\x87\xed\x8d\xb4\xf8\xee\xe4\x51\xff\x40\x9e\x1b\xca\x0c\x51\x05\xc1\x64\x2d\xae\xb7\x30\x31\x44\x94\xfd\xf3\x09\x3f\x80\x49\x40\x7e\xfc\x1c\xde\xd2\x0b\xd4\x04\xe3\xbd\xfb\x51\x98\xda\x30\xc6\xe6\x75\x75\xb3\xf5\xb4\x6e\x26\x7c\x6f\x8c\x76\x3b\x77\x61\xcc\xdd\xf5\x0a\x18\x66\x0a\x4d\xb1\xf5\xde\x24\x28\x03\xfd\xee\x1f\x7c\xae\x51\xf2\xd7\xc7\xc9\x48\x03\xa1\x19\x10\x6c\x30\x33\xd8\xaf\x43\x86\x6b\xd3\xce\x06\x53\xaa\xe2\xf5\x67\x81\x42\xaa\x0e\xcc\x26\x21\x5a\xaf\xcb\x57\x36\x64\xc5\xd4\xf0\xaf\x9b\x23\x68\x7a\x2b\xda\x5d\x07\xf4\xa0\x81\x34\x84\x5e\xd3\xfc\xfd\x4c\x93\x8e\x9f\xaa\x64\xa1\x21\x60\x4b\x96\x14\x4b\x83\x46\x4e\x77\x90\x27\x5d\x73\xcd\x47\xf4\xf8\xdf\xd8\xb3\xf0\x41\x14\x4a\xce\x07\xb4\xdb\xf2\x61\x8c\x89\xae\x8d\xe1\x43\x9f\xe9\xad\x28\x74\xf3\xe3\x15\x83\x19\xd9\x54\x5e\x6e\x99\xbe\x88\x82\x59\x7b\x55\x1f\xc1\xc3\xb8\x38\x84\xcf\x8c\xb5\x77\x8c\xba\xbd\xc7\x9a\x30\x65\x71\x59\xa9\x9e\x5d\x2b\xc0\x19\x2e\x4c\xb1\x63\x66\x1a\x77\x2f\xee\x37\x37\x5a\x20\x76\x54\xe9\x16\x1f\xcc\x64\x6f\x59\xa0\x32\xeb\x8d\xbb\x95\x48\xe6\xd5\xf7\xc8\x6c\x1c\x48\xea\x0c\x14\x74\x34\xb8\xaf\x12\xe1\xf8\xcf\x67\x12\xb1\x9d\x3b\xdb\xdd\xdc\xfb\xfe\xe1\x59\x9c\x89\xe8\xc1\xb0\x11\xf0\x38\xab\x92\x14\x63\x01\x9b\xb4\x87\x61\xa4\xe6\x33\x68\xb1\x5f\x8e\xc8\x1b\xe5\x82\x7c\x02\x74\xdf\x8e\x93\xe2\xfb\xa7\xa4\x3a\xf9\xf6\x84\x36\xc9\x59\x92\x94\xbb\x8a\x0f\x63\x28\x76\xb9\x27\xaa\x73\xdd\xd4\x27\x2b\xe3\xe5\x3a\x94\xd7\x61\xc4\xd4\x07\xea\xf7\x32\x36\x92\xe5\xc6\xab\x49\xbf\xce\xb6\x77\xee\xf4\xcc\x19\x79\x63\x7d\x41\x58\x99\xd5\xc4\xa5\xbd\xc7\xea\xf3\x12\x41\xf1\x87\xd8\xbf\x78\x2a\x60\x8e\xe3\x30\x47\x45\x89\x2e\xfd\x03\x9c\x90\x3e\x41\xf5\xfe\x7b\x08\x40\x26\x5e\x1c\xc6\xbe\x9f\xa2\x4e\x35\xde\xb1\x04\x7c\x7d\x31\x69\x7d\xf5\xb7\x78\xd6\xfa\x82\x1e\x83\x27\x27\xdb\xf5\xdb\xb7\x0f\xbc\xf8\x4b\x98\x04\xa0\xf1\x70\x02\xe7\x02\xfe\xe2\xff\x8a\x5c\x19\x25\xdf\x9f\x45\xc1\x13\xf7\x81\xd6\xa6\x88\x22\xd7\x89\xd0\x79\x1c\x93\x4a\x55\xb8\x97\xca\xde\x5a\x2b\x75\x51\x80\x73\xff\x1d\xb8\x85\xa2\x2e\xfb\x97\x80\x23\x23\x64\x2a\x0b\x0d\x49\xf5\x5d\x11\xe8\xc1\x88\xef\x67\xd1\xe6\x2f\x6b\x6e\xf1\x86\x34\x77\x70\x22\x81\xfc\x8b\x7b\xf5\xa9\x24\x00\xd8\xdb\x37\x90\x3f\xe0\x17\xd6\x26\x64\xe0\xf7\xf8\x1a\xad\xfb\x87\xa8\xf7\xcd\x55\x9c\xc4\x13\x3e\x24\x56\xdd\x99\x89\xb0\x86\x6c\xda\x2b\x37\xd8\x7a\x4b\x21\xa1\xbf\xc1\x8d\xea\xd3\x51\xbd\x3c\x90\x4e\xbd\x1b\xf0\x0c\x4f\xfc\x52\x27\xe8\x67\x64\x4b\x5d\x34\x98\xd8\x0a\xc1\x1c\x39\x5a\xde\x55\xe2\xd4\x54\xef\xa4\x48\x62\x64\xdb\x6a\x3d\x19\x51\x0b\xf5\x43\xb6\xed\xcd\x45\x90\xbc\xd4\xfe\x2d\x4a\xdb\x7f\x8d\x8f\x68\x06\xb9\xf5\xdf\x43\x3a\x8c\x79\x34\x6e\xe9\x93\x6b\x44\x1a\x7f\x30\x73\xdc\x7e\xc5\x7a\x15\xd8\xf4\x1e\x65\x51\xbf\xb1\xbe\x68\x6a\x50\x12\x88\xbb\xe5\x75\xae\x90\xbe\xeb\x35\x09\x80\x76\x93\x8a\xbb\x06\xd0\xc5\x35\x77\x83\x46\x28\xf5\xc0\x2d\x63\x38\x14\x54\x2b\xb4\xe9\xa5\x2f\x1a\xa8\xc9\x75\xb9\xe5\x34\xd7\xb1\xda\x25\xf0\x60\x67\xeb\x80\x83\x3b\xda\x49\x59\x8e\x37\x88\xf8\x7b\x20\xdc\x9b\x33\xb3\xa3\xbd\xfb\xf6\xb6\x07\xe3\xc2\x6e\x15\x96\xfb\xb7\x74\xeb\xe8\xab\x49\x40\x53\xf7\x92\x38\xd3\xfe\x87\x69\xda\xd6\xef\x8e\x45\x84\x96\x3d\x16\xea\x67\xac\xa6\xc7\x6a\x64\x6e\x54\xfd\x9c\xac\x07\x84\xcb\x67\x3b\x64\xca\xa0\x81\xc1\x24\x86\x08\xa9\x7d\x4e\xba\x69\x68\x93\x9d\x20\x89\xa9\x76\x27\x7c\xd1\x13\xb2\xe7\x7c\x54\xf1\xf4\x9d\x4d\x6b\xa1\x4f\x09\x74\x0d\x02\xc4\x5f\x20\x88\xe1\xaf\x3d\xe4\x04\x6e\x7e\x8d\x26\x76\x9b\xd6\x02\xda\x2e\x7b\x7e\x05\xfd\x06\x2c\xc9\xf3\x5a\x4f\x98\xbb\x72\x98\xc7\xdc\xa5\x36\x6a\x9c\x75\x07\x79\x21\x4f\xc4\x20\x34\xa1\x4d\x78\x91\x7e\x50\x7c\x86\xca\x29\xf0\x2e\xa9\x15\xcc\xea\xdf\xef\xdb\xd1\x1e\xae\x96\x2e\x5d\x6e\x91\x1f\xc2\x51\x59\x1f\x7a\x4d\x58\x4b\xe0\xa7\xe4\x1b\x9b\xdf\x33\x91\x85\x67\x01\x2c\x68\xa8\xf5\x07\x30\x09\x46\x4f\xeb\x2a\xed\x05\x95\x5c\x43\xc0\x39\x42\x67\xe8\xe1\xe7\x57\x62\x23\x38\x4d\xa1\x89\xcd\xd4\x7c\x23\x7c\xb9\xde\x1c\xc3\x38\x1b\x2f\xc7\xdd\xba\x34\xf0\x13\x38\x2c\xaa\x7b\xb8\x07\xfa\xe2\x73\xb1\xf2\xcb\xae\xe7\x8a\x38\x15\x30\xa9\x02\x42\xf1\x44\x6d\x99\xca\xbb\x98\x91\x49\x58\x10\x60\x32\x1a\xcf\x36\xa0\xf2\xb7\x76\x02\xe1\xd0\x2d\x2f\xe7\x45\xb5\x4d\xce\x19\x9c\xdf\x9f\x44\x01\x84\x3a\x87\x46\x93\xd5\x52\x84\x3d\x50\x73\x09\xb3\x72\x6e\x79\x63\x37\x45\x62\x18\xa7\x16\x67\x9b\x4a\x85\x36\x74\xf3\x5e\x6e\xc7\x69\x3a\x5f\x9f\x6c\xfe\x7e\xd6\xb1\xde\x5b\xf4\x86\x26\xca\x24\x28\xa8\xce\xcf\x20\xdc\xc5\x7d\x38\x4d\x63\xa0\xe8\x6c\xaa\x14\x1a\xac\x37\x1b\xd6\xc0\x62\xdb\xbd\x26\xed\x8c\x83\x3b\x34\x23\xfa\x6d\x16\xd1\xf9\xed\x99\xda\xfd\xc0\x8b\x6d\xb7\xe2\x8a\xd5\x9e\xfa\xde\x79\x01\xb3\x3d\x7b\xec\x3a\x7a\x34\xb4\x05\x2b\x69\xc3\x99\xdb\x65\xfd\xf0\xd4\x45\x18\x4f\x1d\x1b\xfe\xdf\x90\x0c\x5c\xe9\xdc\xd6\xd6\xd7\x0c\x2c\x77\x8e\xd4\xc8\xdf\xd4\xcd\x88\x93\xe3\xb3\x88\x04\x9a\xce\x61\xa7\xe3\xf4\xd7\xb6\x8a\x11\xb2\xa9\x41\x76\xd1\x77\x7b\xd3\x38\xeb\x95\xdd\x78\xe4\x2b\xc2\x26\x3e\x4f\x03\x99\x0b\xde\x62\xd4\x83\xc6\x6e\x34\x57\xce\xd0\x02\x1b\x15\xf9\xb2\x2b\xcb\xba\x0a\xa8\xb7\x2e\x86\x01\x27\xa8\xf5\x06\x70\x06\xda\x9a\x97\x67\x5a\x4d\x07\x77\xec\x6a\x97\xe9\xb8\xdf\x4f\xca\x41\x8b\xc6\xac\x6c\x78\x71\x89\x58\xaa\x6a\x79\xbf\x85\x3b\xcd\x24\x97\xab\x1b\x14\xf7\x67\x41\xa2\x38\x42\xea\x0d\xa4\x3a\xbe\xe5\x42\x6a\x73\x4d\x9e\x8a\x95\xcb\x62\x1d\x2f\xe3\x1e\x3d\xa4\x16\xfc\xc3\x26\x02\x94\xd0\x46\xb4\xd5\x6b\x1f\x3b\xdc\x84\x26\x1b\xc6\xbd\xed\x72\x40\x2e\x86\xda\xe4\x89\x02\xb5\xe3\x38\xe1\x10\x46\x2e\x2e\xba\xda\x08\xb7\xfd\x3e\x05\xd2\xdf\x78\x63\x0f\xbc\x58\xef\x91\x7c\xb8\x24\x72\x3d\x7e\x40\x71\x9a\xda\x9a\x2a\x01\x6d\x4c\x83\x8d\xef\xb0\x67\x0f\xb0\xb7\x81\xfa\x6f\xa4\xb9\x30\xcf\x3e\x36\xd3\xa5\xd9\xbd\xd8\x4e\x93\xae\xcb\x4a\x90\x61\xbc\x35\x42\x60\xfb\x04\x77\x8c\xaa\x88\xb3\x72\x94\xc6\x06\xb2\xd4\x11\x2d\xf5\x40\x90\x2a\x29\x4b\x88\x48\x1f\xfd\x22\x76\x3d\x25\x14\x79\x65\x84\xfa\x4f\xd8\x10\x4f\x76\xd0\xfa\xdd\x99\xb9\xe8\x5f\x6f\x0f\x5c\xda\xe3\xb5\x8a\x1d\x8d\xd2\xe6\x2f\xd8\x71\xe9\x32\xb1\x3c\xac\xe8\x7b\x5a\x3e\xa7\x79\xe5\xca\x5f\xb4\x38\x3a\x3d\xe2\xae\xdf\x13\x49\xdd\x95\x88\xc7\x67\x75\x90\xf0\x2d\xc5\x3a\xf7\x47\xbe\xbe\xb0\x56\x47\x0c\xec\xf1\x8f\xa2\x00\xf6\xb8\x3e\x21\xdf\xe9\xb7\x60\xfe\xe3\x75\x83\xeb\xac\xde\x1c\x3f\x65\x61\xe8\xef\x50\xa9\x73\x84\x64\x1a\x54\x34\xd7\xc4\x29\x65\x0b\x58\xf0\x93\x6c\x45\x3f\x4a\x87\x24\x49\xc6\x05\xa4\x72\xbc\x88\xb9\xe7\x8c\x2c\xfd\xb6\x84\x68\x5c\xbf\x12\x4d\x75\xe4\x48\x39\x3d\x4d\x86\x4b\xae\xb7\x20\xff\x8c\x06\x25\xea\x17\xb4\xd3\x3e\xc0\x1b\xea\x3f\x50\x97\x43\xcf\x64\x6d\xff\xfa\xee\x16\x58\xcd\xce\x21\x07\x31\xba\x44\x6b\x31\x9c\x94\x0d\xd3\xd6\x6e\x3e\x5a\xf5\x4b\xd8\xfa\x71\x2d\xaf\x45\x15\xc4\xbc\xdc\x8a\xd9\xa0\x34\x5a\x1d\x36\xf8\x42\x2e\xb9\x34\x71\xde\x59\xcf\x23\xeb\xea\xdb\x6c\xd0\x91\x60\xea\x90\x61\xa6\xd7\x69\xed\xdb\x01\x2d\xc8\x5d\xeb\x97\x19\x01\x52\x89\xf8\xe1\x86\xa6\xcb\x5e\xdf\x74\x69\xb0\xee\xe8\xe6\x59\x37\x1d\x7b\x74\x0b\xb0\x47\xb7\xf1\x98\xf5\x05\xc9\x67\xa4\xa5\xdb\xee\x07\x3d\xbf\xf3\x14\x8e\x74\xab\x7a\x3c\x72\xe2\x9f\x3c\xdb\xa1\x32\x69\x41\x60\x72\xc8\x04\x7f\x11\x09\xae\x07\x0a\x85\xce\xf2\x69\x61\xbb\x60\x1c\x74\x86\x9b\x6d\x00\x16\x22\x34\x7f\xd6\xe8\xc8\x12\x97\xd5\x76\xf2\x5b\x50\xcf\x38\x2d\xbb\x27\xa4\x9e\x72\x3c\x74\x61\x7f\xed\x4b\xf8\x88\xf8\x07\x95\x9f\x30\xd8\x1b\xb6\xa1\x35\xa6\x83\x8d\xc9\x45\xd6\xd1\x8c\x82\x07\xc7\xa5\xa6\xa1\x63\x2f\x3f\x9c\x09\x20\x18\xc7\xf6\x15\xc2\xa8\x3f\xd2\xd9\xfc\x65\x7f\x0f\x02\x54\xf2\xa1\x1c\xf9\x7a\xbc\x34\xba\xf4\xc6\xc3\xb8\x8f\x98\x68\x5a\x53\x2d\xaf\xc3\xf3\x0f\x66\xbc\x87\x45\x68\xc8\x75\x07\x59\x9e\xe6\xfd\x30\x37\x32\xbc\x02\x61\xd2\x6f\xb1\x62\x24\xeb\x3b\x8e\x47\x65\x37\x4e\x51\xda\xe1\x43\xc2\x7b\x44\xaf\xbd\x16\x42\x59\x15\x63\xc9\x57\xa1\x85\x60\x5d\x42\x59\x45\xec\x29\x49\xf0\x52\x5b\x6b\x17\x67\x9b\xa9\x3b\xdb\xe5\x78\xe9\x55\x69\xa6\xf2\xae\x50\x8f\x55\x7d\xb1\x36\x23\xaa\xb2\x6f\x6f\x1b\xfe\xcc\xde\x58\xce\x6c\x95\xe4\xf7\x6c\xa4\xd9\x70\x63\xcb\x81\x94\xa2\x72\x47\x4c\x10\xbc\xe5\xc9\xc0\x3f\xa2\x0d\x30\x18\x97\xdb\xe4\x5e\x19\x4f\xb6\xf5\x77\x4d\x98\xe6\xc3\x49\x60\x33\xfe\x52\x27\x90\x95\x54\x84\x0a\x07\xd0\x39\x69\xb0\x78\xdd\x10\x82\x9e\xd5\xb7\xd5\x14\xb3\x1e\x63\x57\x35\xd9\x70\xde\x9d\x24\x64\x20\xc8\x6f\x8d\x95\x58\xbf\x95\x51\xbf\xeb\xb7\xd2\xff\x1f\x51\x88\x3e\x12\x11\x59\xe1\xff\x46\xd8\xd4\x17\x38\x5b\x51\xbe\xdc\x47\x0f\xc9\xe4\xc2\x1a\x04\x08\xc4\xe4\x2c\x87\x45\x24\xf2\x6b\x88\x92\xe3\xe0\x7c\x93\xe4\x2b\x2e\x7f\xae\x21\xf6\xa8\x5c\x4d\xd3\x64\x0c\x86\x12\x96\x45\xab\x13\x94\x93\x35\x70\x29\x8e\xab\x4e\x45\x19\x3e\xf6\x6b\xed\xdd\x8b\x5b\xa6\xf0\xc6\x9e\x5d\x77\x95\x88\x08\xbf\x8b\x6f\xef\x45\x7a\x7f\xf3\x37\x82\x5d\xbe\xd7\x64\x98\x25\x88\x8b\x12\x42\x91\x0f\x92\xa5\xc4\x3a\x01\x8d\x93\xd2\x86\x0a\x74\xc9\x75\xf3\x21\x18\xd6\x28\x9e\xdf\x67\x43\xa3\xdb\x3c\x76\x5c\x0f\x32\xf1\x85\x2b\x07\xe9\xea\x5c\x20\xd6\x5f\x23\xfa\xe6\x79\xd2\x42\x9d\x55\xc9\x7a\x69\x6f\xbb\x2a\x92\x7e\xdf\xc8\x93\x2f\x87\x20\x58\x7f\x54\x7d\x41\x62\x00\x65\x9c\x06\xcf\x3d\xc5\xfa\xc8\x2d\x33\xdc\xcf\x93\x9e\x57\x92\x26\x31\x54\x39\x83\x20\x84\x36\xf1\x0d\x87\x45\x27\x4f\x9d\x84\x96\x8f\x04\x28\xeb\xfd\x0d\x80\xc7\xbd\x2f\xee\xf7\x50\x3a\x2a\x45\x7f\x14\x11\x38\xfb\x18\x56\x9e\xc9\x73\x84\x46\xa1\x7e\x1b\xab\x99\x5b\x5e\x13\xfb\x36\xe7\x09\xf1\x70\xa9\x48\xe2\x56\xf8\x0c\x9f\x44\x04\xa1\xfd\x84\x84\xd0\xd5\xbc\x1c\xbd\x6d\xf3\x54\x92\xfd\x60\x56\xc3\xb2\x53\xbc\x09\x71\xa0\x8b\x23\xd3\xc3\x30\x73\x4e\x30\x42\x0a\x5a\x8f\xc2\x8c\x61\x9b\xb4\x58\xbc\x1d\xd1\x5e\xcf\xe2\xc4\x26\x57\x8c\x78\x44\xae\x64\x57\x1a\x9a\x5d\x2f\xc0\xd1\x52\x9e\x93\xb6\x8d\xa7\x5a\xc8\x0d\x51\x73\xb9\x18\x27\x55\xea\xca\x92\x2c\x94\x31\x42\x34\x8d\xc0\xa6\x16\xfa\x20\x2f\xd0\xd6\xc0\x41\x35\xbf\x16\xee\xfb\xbf\xa6\x8d\x35\xdf\x79\x8a\x9a\x38\x71\xba\x5a\x56\xe5\xcf\xd5\x0b\x1d\x37\x06\x72\xa2\xb8\x19\xad\x8e\xdc\x3e\x34\xf1\x2f\xd3\x97\xbe\xad\x19\x2e\x92\xd4\x53\x78\x3c\xfa\xfb\x2c\xda\xf0\x07\xe8\xf2\xe2\x97\x8e\x4d\x68\x1a\xb8\xb0\x26\x69\x37\x2b\x81\x23\xb0\x7e\x93\x25\x40\x2f\x91\xf4\xc6\xa6\x35\xd2\x89\xbd\xdf\x60\x04\xbf\x7f\x0a\xed\x83\x47\xc8\xd8\xb5\xb3\xd4\xa4\x1d\x15\xf9\x52\xbc\x94\xae\x6e\x93\xf5\x8c\x1b\x76\x14\x1f\x16\x47\xfb\x7a\x14\x1a\x56\xf7\x08\x64\xba\x3e\xa1\x66\xd3\x2d\xd6\x33\xbb\x4c\x98\xcf\x05\xc1\xfe\x1b\x91\x31\x00\xb3\x92\xe1\xa8\xc8\x57\x5c\x4f\x4a\x56\x6f\x9e\xef\x51\x84\x17\xa7\x86\x26\x11\x09\x68\xb4\xd6\x02\xbe\x10\xd9\x8b\xf5\xd2\x36\xde\x87\x3a\xe8\x2d\x8d\xf3\xd5\x3a\x7d\xdc\xb9\xd3\x1b\x79\xc9\x13\xd2\x17\xd1\xa3\xa1\x7f\xd6\xdf\x42\xdc\x2f\xd6\x61\xb8\xa4\x8f\x98\x15\x99\x8d\x22\x46\x76\xa6\x4a\x05\xd1\x17\xb4\x35\xe3\x22\x1f\x97\x88\x65\x2f\xe8\x3e\xfb\x50\x1e\x86\x5e\x53\x72\xa2\xd2\x49\xad\x30\x56\xba\xc2\x88\xe1\x2b\x53\x6d\x78\xd7\x5f\xc5\x64\x13\xa9\x9c\x3a\x02\xe9\x8b\x28\x48\xe6\x5f\xa5\x3f\x76\x75\xf2\x0c\x19\x42\x88\xd0\x9c\x57\xe0\xb4\xe4\x94\xf1\xd5\xa4\xfe\x91\x77\xab\x7c\xc9\x15\xdb\x03\xd1\x4c\x95\x9c\xac\xae\x9f\xea\x53\xc8\x02\x32\xbd\xee\x96\xb7\x12\xb8\x27\xcf\xd8\x8b\x7a\xd7\x7f\xd6\xf0\xfb\x64\xe7\xac\x0a\xa6\x68\x7a\xfd\x10\xcf\xc2\x54\xc6\xa7\xdc\x53\x92\xf4\x69\xf9\x08\x18\xf5\xfc\xe9\x84\x69\x19\x60\x2b\xa3\x88\x6a\x75\xea\x15\x80\x07\x78\x6a\x12\x70\x55\x3f\x80\xbc\xa1\x37\x40\xf5\xa8\x8e\xab\x92\xa2\xe3\x6b\x22\x13\xc0\xce\xc0\x00\xca\x63\xb1\x03\xfa\x65\x0a\x8e\xab\x6a\xae\xbe\x60\x09\xba\x03\xdf\xe4\xc8\xfb\x30\x22\xe2\xc5\x6d\x2c\x72\x1c\xff\x37\x26\x14\x6e\x6e\xd3\x6e\x1d\xe6\x43\x97\x55\xe3\xe1\x3c\xa9\xa1\xdc\x91\x3a\xc3\xac\x6c\x49\x5b\xe5\x8e\xdc\x6c\xfd\x07\xea\x9a\xf4\x93\x38\xab\xca\x47\x09\xbd\x85\x86\x82\xcf\xdf\x77\x9b\xf1\xe8\x11\xa6\x47\x5c\x8f\x42\xc3\xef\xa1\x94\xec\x96\x77\xb5\x9e\x7b\xce\x8b\x73\x90\x29\xdf\x59\x9c\x84\x78\x8c\x1f\x70\xa6\x70\x0c\xa7\xa7\x19\x1e\x36\x4c\x39\xe2\xc3\xf1\x21\x4c\x39\x6c\xa6\x57\x3f\x1c\xbd\xa6\xf1\xe6\x68\x90\x67\xec\xc1\x00\x89\x05\xeb\xf7\x7d\x5e\xaa\xe6\xe5\xe8\x5a\x5e\x45\x56\x3b\x85\xfa\x82\x34\xda\x52\x57\x95\x22\x79\x83\xb3\xfe\x49\xc8\x57\xe3\xf8\x41\x21\xe8\x75\xb1\xf7\xec\xd1\x3c\xf8\xdd\x59\x72\xcb\x8b\xfb\xc5\x3e\x6b\x38\x32\x7f\xbb\xff\x1c\x94\xfb\xae\x03\xed\xb8\xe8\x8f\xeb\x67\x2e\xe7\x19\x7a\x9f\xc0\xd1\x9b\xc1\x71\x6b\xf7\xe2\xfa\xe5\xc9\x17\x03\x5d\x23\x3e\x2c\xda\xe3\x2b\x49\x9a\xaa\xe8\xb9\x15\x60\xdc\x77\x3f\x41\xdd\x4a\xf7\xda\x28\x2f\x24\x10\x84\x50\x0f\xf4\xb7\x5e\x7b\x32\x21\x48\x26\x1a\x30\x74\x3c\x1c\x51\xd9\x75\x8e\xa0\xe1\x71\x7a\x38\x5e\x2d\x21\xf6\x63\x50\xa6\xfa\x76\x79\xe6\x58\x68\x1a\x5d\x24\xfd\x93\x87\x32\xe6\x31\xb2\xc7\xc6\x2c\xe2\xd7\xda\x4b\x85\x73\x3d\x57\x48\x46\xca\x2e\xc7\xde\xc4\x9c\xd4\xf8\xa3\x67\x3d\x57\x3f\x15\x8e\x41\x39\x48\x46\x8a\xcc\x30\x5d\x1d\xf9\x18\x88\xe7\x5b\xa9\x35\x3a\xb7\xf6\x04\x11\x14\x0a\x4b\x41\x70\xd7\xa1\xdc\xa0\xd7\x34\xfc\xfa\x5b\x7f\xfb\x6f\xe0\xe1\x1a\x8d\xac\xb5\x73\x97\x67\x91\x35\x35\x79\xab\xbc\xef\xaa\x41\xfd\x6d\xf6\x19\xc6\xe7\xfb\x51\x50\x31\xff\x48\x75\x7c\x0d\x7d\x3b\x6b\x4e\x3f\xec\x26\xad\x30\xf2\x3a\x35\x85\x6e\x25\x72\x66\x52\x97\x37\xbd\x71\x17\xc9\x97\x42\x06\x49\x98\xf3\x27\x64\x75\x57\xb8\xbc\xe8\xc7\x59\xf2\xba\x23\x8f\xa5\x33\x11\x79\x68\x9e\x69\xd2\x3b\x11\x10\x5a\x89\x75\x8a\xb2\xe9\x03\xb4\x2d\xcc\x39\x47\x6e\x8c\x0d\xe5\x0d\x01\x3a\xcc\xc7\x45\x68\xa5\xe2\xf4\x38\x45\x2d\xe2\x53\x7c\x90\x8a\x56\x04\xd2\x61\xac\x1b\x00\xf1\xf4\xda\x83\x79\x0b\x57\x8d\x8b\xac\x5c\xa0\xa1\xc0\xef\x4b\xec\x32\xdc\x10\x4b\x78\x6a\xfe\x2f\x4d\xba\x1f\x3e\x45\x8b\x7e\x61\xcd\xfb\x21\xc6\xd9\xa1\x05\x9e\x8a\x4c\x02\x17\xe4\x36\x99\xe9\xfc\x08\xe7\xa1\x4e\x2b\x11\xf6\x01\xa8\x3c\x4e\xb7\x37\x1e\x8d\xe2\xc2\x65\x55\xba\xba\x2d\x00\x47\xef\x4b\xa8\xc6\x29\x0f\xa9\x69\xaf\x51\x49\x32\x80\x81\x50\x02\xe9\x0b\x74\x64\x61\xd3\x6a\x22\xc7\x92\x9c\xeb\x2f\x13\x77\xb6\x97\x94\x55\x91\x74\x2b\x88\xe7\x23\x79\x3f\xce\xc2\xf4\x8a\x49\xd6\x7f\x91\x27\x80\x53\xe4\xb3\x09\x59\xb9\x1d\xa7\xf4\xf9\x3e\xc2\x3b\x72\xd2\x33\x93\x9f\x67\x8b\x02\x8c\xeb\x64\xc7\xb5\xa6\x98\xa7\xec\xe4\x78\x75\x26\xde\xed\xd9\xa3\x59\x89\xfa\xee\xe2\x8f\xfe\x53\xc6\x82\xfe\xd3\x26\x83\xc0\xb2\xbe\xa5\x02\x0d\x43\x3a\x3a\xd7\x09\x25\xd3\xa6\x35\x7a\x74\x6f\x34\x79\x92\xb5\x5d\x5c\xa4\x89\xc9\x0b\xa3\x24\x53\x20\x9a\x4f\x67\xea\xe3\xd6\xd3\x0e\xf6\xd9\x31\xf8\x58\x67\xca\x19\x64\x63\xff\x66\xf7\x62\x7d\xdf\xe3\x62\x18\x7b\xd0\x81\x49\x7b\x71\x03\xbf\x41\x7e\x69\x29\xee\xb5\x42\xc9\xad\xc9\x85\xf9\x06\x36\x88\x3c\x06\xc9\x04\x8b\xf5\x61\x6c\x3f\x8b\x9a\xde\xb3\xa7\xed\x32\x37\x0c\x20\x47\xb3\x9c\x60\xff\x09\xdf\x09\xab\xbf\x42\x59\x15\xa2\x26\x15\x3c\x6c\x65\x85\x18\x31\x47\x8e\x76\x24\x72\x3f\x23\x0c\x45\x99\xe7\xd9\x3c\x01\xf3\x90\x22\xa2\x82\xc7\xd4\xde\xe7\x7b\xa1\xb4\xdf\xd4\x69\x68\x29\xf7\xf2\x61\x92\x09\x9d\xde\xb3\x87\x61\x83\xa5\xd7\x93\x90\xc8\x57\x87\xe5\x3e\x18\xa5\xb3\xe5\xd5\x31\xcf\xce\xb4\x37\xea\x67\x9f\xe6\xf9\x21\x3d\xcf\xfc\x80\xea\x6b\xc1\x64\xf1\x49\x3a\x57\x8b\xbe\x2b\x2b\x6a\x1c\x7e\x93\x98\xe3\xdf\xa4\xfc\xaa\x74\x88\xb4\x3e\x53\x7c\x63\x42\x02\xfa\x6f\xcc\xb4\x56\xa5\x60\x8b\x5f\x6b\x85\x02\xed\x66\x44\x98\xbe\x9b\x74\xc0\xfc\xd7\x7f\xf3\x6f\x4a\x04\xc7\x5e\xb8\xcd\x1b\xe3\xf6\xac\x7d\xd8\x8e\x7d\xed\x51\xd2\x85\xf1\xcd\xbe\x1d\xfa\xb4\x7e\x38\x09\x4f\xee\x87\xd1\x13\x53\x2c\x3c\x07\xd9\x5d\xe4\xba\x0f\x10\x11\xd0\x4f\xfe\x69\x14\xba\x2b\x27\xe5\x7b\x23\xfe\x7d\xc2\x3c\xe6\x13\xac\xff\xf2\xdd\x49\x38\x5e\xb6\xae\xcd\xed\xff\x1f\xbe\x66\xe4\x4c\x39\x15\xd5\xba\x22\x22\xdf\xe8\x4f\x82\xfd\x7a\x9e\x95\xa3\x44\x7d\x5a\x77\x69\xee\x7f\x99\x39\xe1\x97\x98\x2e\xf3\xbf\xcf\x34\xbc\x76\x1d\x68\x27\x59\x37\x1f\x8e\x52\xa7\x1a\x0c\x8a\x25\x94\x45\x63\xb8\xc2\x90\x01\xad\xc4\xe9\x58\xa5\xb1\x0e\x06\x69\xd3\x16\x49\x9e\x36\x88\x1a\x6b\xd3\x70\x4a\x71\xe5\x02\x29\xae\x4c\xfb\x96\x14\x8f\x06\x87\x1d\x3b\x82\x2c\x69\xa2\x32\xee\xe2\x54\x27\x79\xe2\xd5\x54\x5e\xf9\xb2\xf4\x66\xac\xe5\x1b\x3a\x6b\x7f\x46\xca\x3f\xaa\x21\xe3\x8f\xa3\xa0\x2b\xb2\x7d\x8d\x06\x10\x5b\xd7\x36\x7e\x9b\x9d\x3b\xdb\x3d\xb7\xe2\xd2\x7c\xa4\x7b\xc1\x0b\x7b\x1d\x0c\xb2\x3d\x0d\x81\x77\x30\x1e\xea\x70\x48\x55\xc1\xe4\xc3\x98\x42\x58\xc8\x05\xc7\x59\x52\xae\x96\xb2\x25\xcc\xbd\xbb\x5e\x43\x7a\xdd\x30\x06\x5e\x6c\x8f\x8a\x7c\x98\xe8\xbc\x54\xfb\x86\x72\xe8\x59\x0f\x31\x38\x98\xb9\xb4\x74\x87\x07\xae\x70\x5b\x90\x2d\x01\x59\x7f\x84\x8c\xa6\x2e\x51\xc7\xf1\x1a\xd0\x81\xfa\x43\x72\x23\xbd\xdb\xda\xa2\xf7\xfe\xbd\x1e\x3d\x13\x40\x51\x6e\xe4\xb2\x9e\x3f\x94\x14\x13\x4a\x8c\xb3\x0b\x34\xb0\x5a\x4e\xb2\x38\x45\xae\xe8\x85\xeb\x3c\xe8\xf0\x88\x5f\xe1\xc3\x24\x1b\x97\xdd\x71\xea\xe6\x65\x60\xc9\xde\xa6\x68\xf8\x20\xff\x46\xf9\xaa\x1e\x69\x78\xde\x67\x48\x3a\x64\x9c\xf5\x92\xb2\x9b\x8c\xd2\x24\x73\x3d\xe8\x84\xa9\x16\x27\x86\xa2\x26\xcc\xd9\x60\xc2\xb4\x14\x27\x38\x91\x0c\x45\x46\xe8\xdb\x37\x59\xb0\x73\x9c\xc1\x89\xcb\x9a\x62\xa4\xe5\x7b\x02\xfd\x93\x2a\xee\xb7\x0f\xee\x78\xf9\x97\xeb\xf4\xc4\xeb\xfb\x79\x81\xf9\xa3\x02\xed\x42\x29\x7b\x75\x42\x82\xae\x27\x45\xd6\x01\x43\xf7\x8b\x12\x74\xbd\xa7\xe1\x73\xcf\xe9\xc9\x70\x1f\x82\x16\x5e\x0d\x2f\xd4\x12\x9f\x2a\xac\x06\x53\xb8\x1f\x41\xac\xc2\x2c\x66\xb9\x29\x89\x9d\x86\x24\xe7\x77\x45\xf2\x1b\x5f\xf2\x1f\x23\x41\x43\x42\x7a\x8b\x4a\x88\x8f\x23\x72\x21\xb8\x33\x21\x1a\xff\x15\x01\x6d\x18\x64\xb4\x7e\x56\xec\xab\x62\x50\x05\x89\xf5\x5e\xe2\x7c\xd7\x01\x53\x7b\x93\x6e\xbd\x0e\x34\xd0\xed\xc0\x77\xbf\xca\x8a\x85\xdb\xe0\x0e\xa9\xe3\x73\x94\xc9\x46\xcc\x90\xe7\xab\xec\x0b\x59\x54\x48\xf3\xbe\x19\xd1\x04\xf2\x07\x2c\x1a\x73\x1b\xab\x00\xb7\x72\x9d\x68\x20\x87\x93\xb2\x0e\xb1\x49\x36\x4f\x10\x6d\xed\xe0\x98\xc8\x6c\xcb\x8b\x57\x6a\xcf\xcc\xa4\x68\x43\x13\x2f\x5e\x8a\xb3\x5e\x9d\xe2\xc9\x73\x01\x16\xf0\x94\x3c\x7a\xbd\xe6\x00\x98\x67\x22\xef\x8c\x33\x40\xab\x3f\xfc\xd8\x95\x49\xc8\xa1\xa1\x1b\x82\x28\xf7\x58\x87\x46\xbd\x67\xa8\xe3\x8f\xee\xa6\x13\x11\x30\xad\xc4\x8f\x52\x69\xa9\xc4\x1d\x33\x75\x27\xdb\x91\xba\x74\xcc\x87\x94\x77\xcf\x09\xc2\x00\x7f\xe1\x63\x79\x58\x88\x05\xef\x6f\x50\x19\x38\xb8\x23\xb8\xf1\xf8\xca\xef\x31\xe9\x2a\xe9\x2f\x70\xd8\xbe\x3b\x53\xeb\x59\xe3\x61\x90\x0f\xdd\x1c\x16\x2e\x8b\x22\xe3\xa0\x5f\xc0\xf7\xc5\x59\x7a\x8f\xfc\xeb\xba\x69\x32\x5a\xca\x45\x86\x9e\x74\xab\x02\x02\x61\x56\x7b\xb8\x3e\xfa\x57\x01\x46\xf5\x3e\x54\xc7\xa3\xa0\xc1\x76\x9c\x15\xd5\x1c\xbc\xf1\x64\x79\xa1\xc0\x3b\x81\x85\xa3\x2f\xa6\xba\x8e\x55\xea\x9e\x09\x8d\xd2\x6d\xe8\x86\x20\x98\xfe\xbe\x6c\x0f\x9c\x7d\x47\x27\x44\x23\x9e\xda\x44\x9b\xd7\xea\x38\x61\x44\x35\xb9\x6b\x48\xe2\x16\xb0\xf4\xcd\x5a\x48\x96\x3e\x52\xa6\x7f\x87\xb0\x81\x17\x3f\x95\x16\x9c\xf7\x42\xa0\xfe\x06\x59\xd8\xdd\x22\x39\x21\xf5\x69\x55\x99\x38\xc4\x10\xe3\xf3\x22\x38\xd8\x50\x95\x9c\x63\x89\x38\x7e\x8c\xdc\xb7\x86\x71\x16\xf7\x5d\x51\x3e\xb6\x91\x04\x80\xf9\xf0\x9f\x47\x7c\x92\x23\x12\xf8\xe7\x1c\xae\xe5\xe8\xb0\xa1\xaf\xdc\x01\x3a\xfb\xcd\x60\x1c\x2c\x1e\x13\x19\x98\xed\xd0\xe2\xbd\x1e\x4c\x63\x88\x9e\xe6\x82\x6f\x98\x94\x65\x9c\xce\xb3\x77\x5b\x44\xad\x27\xa5\xc1\xe9\x0b\x09\x61\xd6\xc9\xe2\x07\xbe\xfb\xc0\xfe\x2f\x91\xde\x3c\xb4\x32\xb1\x19\x6e\xca\x03\x87\x9b\x1c\x44\xf4\x11\x8d\xff\xd1\x24\xd0\x58\xe6\x60\x1f\x80\x4f\xfb\x01\x42\x1d\x12\xc4\xf3\x68\x12\x7b\x92\x87\x87\x3c\x7e\x2a\x85\x2e\x1e\x91\xe2\x8c\x11\xc2\xce\x4e\x68\xc3\x21\x3b\xf5\xce\x19\xf5\x6a\x31\xc1\x1f\x59\x2d\xa6\x89\x8a\x47\x6c\x72\xe4\xd3\x3e\xcb\x1e\x38\x7d\x85\x38\x39\x3a\xcb\xc0\x3a\xbc\x1a\xb5\x5e\x79\x65\xfd\x32\x62\x2f\xf2\x1a\xb5\xe9\xb0\x08\x8f\xdd\x6c\xdc\xe5\x59\x7a\xde\x62\xbb\x4a\x86\x4e\x75\x87\xcd\x40\x28\xf0\x33\xef\x4e\xb6\x87\x21\xd4\xaf\xc8\xbd\x52\xb4\x60\x14\x90\xab\xb7\x27\xd4\x74\x44\xf1\x88\x6d\xa6\x5d\x06\x3b\x86\xf0\x59\x68\x31\xbd\x10\x2a\x90\xfa\x0b\xf8\xb3\xbe\xfe\x02\x58\xf5\xb7\xe4\xc6\x5b\x0b\xa5\xbe\xbf\x58\x65\x77\x90\x26\xa9\x3a\xa4\xac\x0e\x55\x01\xc0\xed\xc5\x4f\x3d\x14\x76\x07\xd2\xd8\x1b\xd2\xb8\x43\x3b\xe0\x28\x1e\x08\xb2\x9e\xa7\x45\x75\x04\x4b\xe3\x88\x1c\xf4\xde\xf8\xb1\x8e\x32\x00\x87\x6d\xc5\xee\xf7\x5e\xd1\x8b\x46\x80\x3b\xc6\x78\x3c\x15\xa5\xc2\x72\xb8\x8e\x0d\xe6\xb1\x9b\xbb\x17\xd7\xef\xcb\x21\x3b\xc5\xc8\x31\x01\x9d\xcd\x5f\xd6\xb6\xf4\x4d\xb9\xfb\x5e\x75\x25\x94\x2f\x47\x35\x1c\xe0\x66\x6c\xea\xd4\xb9\x02\x22\xf3\xfc\x5a\xeb\xc0\x8b\x9a\xcf\x3c\x6c\x54\x46\x8b\xc7\x55\x3e\xc7\x1c\xda\x9b\xa4\x63\xfb\xff\x61\x11\xab\xcc\x1a\xcd\x54\x96\x0b\x97\xf4\x07\xd0\x94\x5f\x17\xad\xbb\xf5\x37\x08\xd3\xbd\x34\x4e\xd2\xde\xa3\x61\x36\x0c\xaa\x07\xda\x1a\xff\x11\x8f\x41\x6f\x37\x46\xbd\xfe\xde\xd7\x77\x52\xdb\x5b\x53\x2a\x9c\x11\xfb\x3c\x05\x6f\x5c\x24\x4c\xbe\x1f\x46\xf0\x80\x09\x19\x17\xfc\x5e\xf4\x68\xa0\x78\x97\x10\xb5\xc7\x8e\xb8\x46\x3b\xe9\x01\x69\xf1\x7e\x36\x53\x32\xec\xd9\xb3\xaf\x3d\xcc\x71\xd8\xec\xd3\xb3\xe8\x34\x96\xa3\xbe\x68\x92\xf4\x5a\xca\x73\xc5\x28\x23\xe4\x62\x18\xaa\xd7\x24\x32\xb9\x9c\x17\xae\x1b\x97\xc2\x2c\xab\x7f\xda\x8b\x2f\x79\x54\xaf\x68\xf2\x68\xc4\x7a\x43\x4e\x50\xbd\x6e\x78\xa8\xfb\xdb\xcb\xb1\x6a\xcb\x63\x85\xb5\x70\xd8\x21\x63\xbc\x22\xef\x8a\x8c\xf5\x3a\x33\x6c\xc7\xc5\x4a\xb2\x62\xf4\x39\x0c\x87\xa0\x04\xae\xd7\x8d\x5d\x88\x3a\x2f\x28\x00\xf7\xc4\xee\x7d\x4f\xde\x1e\xa3\x93\x6b\x74\x30\x9d\x6f\x9a\x11\x14\xae\x0c\x43\x72\x1c\xa6\x37\xa8\x3b\x72\x83\xd0\xfb\xe5\xb8\x1c\x24\xf2\xd1\x80\x4a\x41\xa3\x48\xaf\xa7\x88\x93\xd5\xc0\xb5\xbd\xfc\xf1\x7f\xf7\xac\x24\x4a\x12\x45\x0f\x3c\xd9\xa9\xf7\xb0\x01\xa6\x08\x03\xfb\x28\x14\x08\x10\xd1\xbf\x81\x43\x1b\x80\xa3\xbb\x1a\x86\x15\xb5\x16\x4d\xa9\xad\xf8\x4e\xd5\x33\x6b\xb2\xbb\xcd\x10\x4e\x82\x21\x56\xee\x13\x1d\x59\x95\x28\xc6\xeb\xbc\x6b\x97\xd7\x40\xae\x8b\x05\xfc\xc6\x2d\xc9\xee\x91\xcc\x5d\x13\x7c\xa9\xf5\x2b\x24\x94\x61\x4d\xbe\xcf\x78\x8f\xad\x6b\x12\x41\x84\xbf\xfa\xab\xbf\xd0\x41\xf8\x34\xb6\x07\x21\x6d\x3e\xa6\x81\xf8\xf8\xe9\x35\x89\x6d\x88\xf8\xb7\x65\x1b\x61\x67\x7f\xca\xb3\x87\x47\xd6\xc8\x1f\x6d\x4b\xa7\x0e\x8d\xa8\xc6\xa0\x46\x81\xdf\xd8\x2c\x91\xd1\x13\xd5\x3c\x2a\x70\xa1\x43\xf6\x18\x0f\xb0\xb9\x2d\xff\x0c\xb3\xaf\x7e\x91\x97\x25\x2d\xb3\x73\xb4\xcc\xce\xf9\x0e\x7b\x77\xb5\x9b\x8a\xb9\x6c\xfd\x83\xd0\xcd\xbb\x1f\xda\x0a\xed\xfb\xc4\x18\x2d\xab\xc2\xc5\xc3\xba\x98\xc4\x52\x44\x00\xfe\x50\x96\x22\x3e\x0b\x60\x3c\x36\xbf\xf5\x8e\x3f\x65\x39\x1e\x3a\x6d\xb8\xa3\x97\xb3\xbd\x13\xac\x8c\x34\xd9\xf7\x25\x91\x6f\x9f\xaa\xaa\x90\x75\x41\x36\xf6\x41\xf7\xec\x69\x67\x0e\x03\x05\xad\x94\xf0\x46\xc0\x1f\xdc\x26\x62\xc4\xc2\x4c\xcf\x70\xd7\x81\xf6\x38\x4b\x93\x43\x76\xf0\x7a\xe8\xc8\xbe\x1d\x1e\x3a\x12\x0a\x83\x91\x13\x19\x8a\x16\x16\x80\xc7\x72\xd4\xab\x46\x5f\x80\xac\x88\x76\xc3\x94\xc5\x61\x14\xf6\xd2\x19\x4a\xaa\x07\x71\xf7\x50\xaa\x5a\xb7\xc8\x7d\xce\x48\xb8\xd1\xeb\x99\x1e\xe0\xce\x9d\xed\x81\xf3\xfd\x58\x4d\xa9\xb0\x9e\x2c\xbf\x7a\xc2\x8f\x23\x46\xae\x74\x8a\x12\x30\x38\x54\xc0\xe4\x5f\x9a\x16\x5d\xad\x12\x44\x6a\xd3\x43\x6d\x2d\x06\x48\x6e\x18\x68\x49\x14\xb5\x46\x67\x52\x0d\xf2\x7e\x11\x8f\x06\xab\xad\x30\x59\x3e\xcb\xd9\xda\xac\x39\x95\x88\xf7\x0d\xf3\x15\xb4\x48\x50\x0f\xa8\x3e\xaa\xbe\xa0\xbe\x70\x9c\xba\x6e\x8b\x25\xae\x4f\xb1\x9d\xcd\xa9\x68\x83\xb4\xda\xde\x17\xf7\xb7\x5f\xda\x75\x40\xbc\xe8\xac\x8f\x12\x3a\x41\x47\x22\x56\x4b\xef\x3d\x4a\x86\x58\x2a\xe7\x60\xbd\x4e\xb2\xae\xf8\xc7\xb2\x10\x8c\x80\x1e\x72\xbf\x53\x38\x8b\x14\xe3\x15\x91\x5a\xce\x99\x09\x0f\x7a\x88\xbe\x4e\x13\x9a\xb3\x93\x29\xb6\x09\x01\xb9\x80\xb3\x98\x0f\x3b\xfc\x12\xfe\x90\x79\xb3\x07\x3c\xf1\x75\xe2\x1a\x5f\x27\x98\xe6\xdf\xfa\x1b\xff\xfd\x5c\x38\xc7\xe6\x64\x04\x8c\x88\x76\x8e\x6f\xde\x1d\x5a\x83\xee\xb5\x51\x52\xb8\x92\xf0\x88\x5b\x85\x1e\x87\x48\xb2\x49\xa8\x75\xd6\x99\x6f\xe8\xb9\x77\x8b\xa4\x72\xca\xf5\x7c\xd9\x33\x90\xd8\xe3\xc9\xdb\x29\x66\xc9\x6b\x00\xb8\x04\x2b\x66\xd9\xd9\xfa\x82\x74\x59\x87\xcf\x1f\x7e\x9e\x42\xd6\x25\xd6\xb3\xbf\xe4\x6d\x5d\x86\xf1\x21\x57\xa8\xf4\x99\xb1\x51\xa7\xfc\x7c\xb0\x78\xd0\xe5\xf8\x5f\x26\xd6\xaa\x2b\x0f\x25\x55\x95\x94\x83\xcc\x69\x5c\xd4\x23\x26\x0a\xc6\x34\x17\x48\xa6\xb7\x9b\x14\xdd\xf1\xb0\x1c\xb9\x6e\x85\x7c\x04\xc7\xcb\x07\x78\x34\xfa\x82\xe6\x8f\xd5\xc0\x15\xf1\x68\xb5\x45\xcc\x1a\x34\x16\xed\x91\x6e\x58\xb7\x3b\x77\xca\xb6\xd0\xa8\x62\x88\x9a\xfa\xae\x5b\x21\xd7\xd8\x86\x95\x59\xbc\x9a\x4d\xd8\xc8\x47\xce\x22\x1b\x06\x35\x74\xf3\xf2\x15\x57\xcc\x73\x0c\x08\x09\x1d\xd2\x72\xdd\xfe\xcc\x0a\x7a\x9f\x70\x25\x55\xdc\xad\xe0\x40\x4e\x87\x1e\x1b\x30\x7e\x1c\xa4\x92\x8a\x44\x54\xa1\x48\x75\x0f\xa6\x46\x7a\x1d\x3d\xcb\xed\x49\x57\x1c\x96\x65\x24\x4b\x1f\x65\xca\x87\x44\x2d\x79\xb2\x13\xb0\x35\x5b\xd7\xa8\xff\x3a\x2b\x12\x2f\x6e\xdc\xae\x58\x51\xba\xcf\x94\xd9\xa7\x91\x5d\xc2\x34\x23\xcd\xb3\xbe\x2b\xb6\x05\x43\x35\x98\x9f\x0a\xa2\xe7\xea\x53\xe2\x77\x6a\xda\x93\x41\x54\xed\xad\xa0\x03\xfd\xe1\xb3\xf4\xc9\xe6\x91\xf8\xd9\x92\x0d\x73\xc6\x3b\xbc\x3a\x8a\x64\xc5\x95\x55\x8b\xc9\xce\x8a\xde\xd2\x17\x33\x0f\xee\xc0\x8b\x92\xf8\x49\x66\x8b\x87\xf5\x90\x4c\x0c\x1f\x46\x8f\xf9\x37\x5f\xca\x97\xf4\x8d\xd1\x61\xd2\x48\xa3\x2f\x68\xd0\x5f\x26\x15\x06\x19\xdb\x29\x5c\x9f\x24\xf7\xb2\x53\xc8\xef\xa1\xb3\x06\x13\x0e\x4f\xcf\xdb\xb7\x43\x8f\xf9\x2b\xa4\x47\xf8\x31\x6b\x7c\x68\xbb\xc2\x0b\x62\xd6\xb7\x05\x79\xc4\x26\x39\xf0\xd5\xb0\x7b\xad\x09\xfe\x52\x38\x79\x7c\xe0\x47\xa3\x48\xba\x8e\x85\xad\x2f\xa8\xcf\x52\xa6\xf9\x61\xa1\x1b\x50\xf5\x72\x06\xfb\xd2\x2b\x17\xf8\xc1\xde\x87\xf8\x4a\x9e\x28\x5f\x7f\x28\x2b\x66\x1a\xc6\x36\x71\x39\x4a\x0a\x0f\x39\x40\xd9\x71\x93\xe6\xda\x37\x67\x82\xa1\x1c\x6e\x52\xa9\x0d\x88\xfc\x76\x2e\x0a\x07\xf0\xb9\x66\x4a\x78\x15\x17\x55\x6a\xb5\x00\xd6\xd2\x19\xf2\x0b\x3e\x43\x5c\xaa\x72\x75\x38\xaa\xf2\xa1\x24\x51\x86\xd6\x3b\x4b\xd0\xdc\xb3\x74\x72\x9f\xc2\x77\x44\x52\xa4\x72\x59\x66\x23\xc6\xad\x9b\x57\xe3\xd5\x16\x47\x4a\x5d\x35\xfa\x82\xea\x50\x51\xd2\x4c\x57\xff\x13\x44\xba\x8d\x7d\x8d\xfa\xeb\x2d\x15\xa6\xd7\xb8\xd7\x87\x43\x8e\x8d\xa4\xa6\x3a\x4c\x0e\x0d\xe2\x24\x5d\x90\x45\xe9\xa7\xcd\x81\x19\x8e\x9d\x87\x34\xfe\x1c\xd3\xcd\xde\x92\xd2\xd4\xcc\x88\xc3\x98\x25\x1f\xb9\xcc\xf5\xb6\x50\x83\xf8\x9e\x6c\x1d\xa4\x6b\xdf\x89\x08\x89\xa1\x46\xc9\xf8\x50\x57\x08\xca\xaf\xc1\xc3\x2c\x2e\x9e\x24\x00\x43\x59\x8d\x87\x2a\x36\x68\xd0\x25\xdc\x48\xab\x94\x88\x99\x77\x97\x6e\x64\xd9\x8d\x65\x69\x05\x08\xd3\x59\x6a\x4c\x9f\x6d\x9a\x22\x0e\xe2\x91\x7c\x17\xb2\x93\x57\xe7\x5a\x7d\x11\x05\x1f\xe1\x6e\x32\xac\x13\x79\xdf\x99\xff\x8e\x2c\x0a\x93\x5b\x09\x09\xd6\x28\x4f\xf3\x39\x72\xd0\xba\xa1\x9f\x1e\xb9\xf9\xe6\x0e\x39\x6d\xcd\x4a\x2d\xd6\xf5\xe8\xe1\xb8\x98\x23\x1e\xdf\x3a\x76\x3a\xfa\x0b\x36\xbc\x34\xd4\x03\xa7\x9b\xa3\xaa\xdc\xd2\xf2\xca\x53\x77\x71\xe7\x81\x18\xd0\x31\x87\x3f\xa0\x7c\xa9\xaa\x00\x32\x1b\xa5\x11\xbb\xec\x5e\x43\xff\xa0\x9d\xc9\x19\x10\xda\xbb\x0a\xb3\xd6\x17\x34\xd3\xb5\xb1\x5d\x25\x56\x17\x38\x7b\x2e\x92\x51\xe1\x45\xf4\xc4\x50\xee\x1d\x41\x2f\x4a\x5f\xd0\xbb\xc4\x69\xea\xfa\xae\xa7\x1a\xa7\xa4\xaf\xfb\xb2\xd5\x70\x1d\x02\x4b\x9f\x47\xdf\xcb\xaa\x3b\xde\x8c\xf1\x30\x46\x34\xc3\x9c\x48\x99\x13\x56\x4a\x85\xe2\xec\x3c\xd6\xae\x61\x67\x09\xc4\x24\xb8\x47\x6b\x15\x16\xfd\xb1\x5b\x08\xac\xeb\xa3\x04\x8a\xff\x80\x0d\x47\xbf\x25\x65\xa5\x0d\x75\xd8\x46\x30\xda\x88\x8e\x3c\xb8\x63\x51\x0c\xf5\x96\x97\x93\x6e\x22\x56\x87\xa1\x7f\xc6\xe2\x07\xa7\x9b\x58\x77\xbd\xa4\xec\x8f\xc5\xf7\x35\x50\x75\x7f\x1b\x3b\x19\xe7\x8b\xba\xc5\x9a\x28\x4e\x20\x89\xc7\xfd\xf9\xc0\x2e\xd0\x21\x2c\xe1\xab\xf7\x7a\x9a\x25\xe3\xb3\x9f\x62\x68\x9b\x2b\x5c\x59\x3d\x16\x4c\x5c\x3f\xc4\x5d\xb3\xc2\x83\x7a\xde\xff\x31\x0a\x42\xdc\x3a\xef\xc2\xb3\xba\x11\x71\xf6\x8a\x0e\x1a\x7e\x05\x26\x54\xc8\x4a\x4e\x4f\xa6\x1a\x68\x9e\x66\xff\x0e\x9e\x99\xbe\x95\x74\x54\x01\x24\x3d\x1d\xb1\x84\x95\x9e\x7f\xb2\x44\xd0\xe4\x7f\x0f\x9f\x54\x5f\xd0\xc0\xbc\x5f\x67\x74\xd9\xdc\x14\x64\x68\x9f\xf5\xbf\x54\x86\x13\x67\xf8\x69\x6a\x3e\x15\xae\xce\xe3\x72\x0b\xca\xe8\xce\xdd\xa1\x99\xfc\x1d\x0a\x12\xe3\x52\x0d\x8c\x40\x51\xfc\xa1\xf4\x9b\x0d\xa9\x2f\xb5\xaf\xbe\x20\x39\xb1\x4f\x26\xc1\x27\xea\xdb\xf2\x3d\x95\x45\x2b\x89\x84\xef\xab\x79\xb1\xa8\x6b\xd3\x5a\x5c\xae\x78\x8a\xc6\x42\x27\x26\x61\x92\xa3\x14\x2d\x3f\x01\x5e\x5c\xd4\xf5\xfb\x10\xb7\xd6\x18\x46\xf5\x67\x44\x58\xfc\x3f\x50\x90\xe2\x24\xbd\x25\x9f\x0b\xd7\xef\x4e\x48\x5f\xef\xee\xa4\xf5\xb5\x5d\xbe\xc8\xad\x3f\xa4\xfa\xe2\x4f\x58\x02\x05\xf2\xb1\xd6\x9f\x91\x15\xe8\x65\xa0\xea\xb0\x80\xa1\xe5\x3a\x16\x0c\xb2\x84\xb9\xb5\x00\x3d\x5c\x98\xc1\x53\xec\x5e\x6c\x0f\x5d\xd1\x1d\x18\x5d\x1e\x61\x14\xc3\x43\xbd\xf6\xc5\xce\x72\x11\x0f\x2d\x9f\xf6\xea\x7d\x7b\xf6\x78\xc5\x89\xcf\x53\x55\xeb\x17\x71\x97\xcb\xed\xb9\x35\x2a\xb7\xe7\x3a\xbe\x36\x73\x45\xcf\x88\x92\xb8\x41\xd7\xd8\x21\xff\x1a\xb7\xd7\xe7\xd6\xa8\x48\x4f\x7a\xe5\x16\x3a\x01\x6f\x10\x35\x05\xac\x0e\x73\x9b\x92\xb5\x66\xc2\xb5\xf2\x7c\xbd\x2c\x43\xfd\x77\x10\xfe\x8f\x34\xb6\xcd\xd3\x3c\x3f\x44\x7e\xa2\x77\xb0\x0b\x6d\x48\xee\x79\xb9\xbf\xa2\x14\x74\x93\xde\x6d\x80\x9f\xf6\x92\xb2\xb2\xbb\xcd\x86\x87\x7a\xed\x35\x6e\xd2\x3c\xb3\x9e\x10\xaa\x86\x2d\x9d\x60\xfe\xb6\x65\xe6\x41\x1e\xdc\xb1\x17\xfa\xad\x2b\x48\xd3\xfd\x7e\x0f\xa6\x3a\xef\x50\x07\xfa\x70\x52\x0d\x54\xf6\xa8\x45\xba\xef\x27\x23\x12\x9c\x39\x39\x73\xe2\x3e\xf7\x5c\xbb\x14\xe3\x94\x7d\x3b\x74\xcf\xbd\x4f\x86\x8b\xef\x4f\x73\x1e\xd2\xde\xb3\xcc\xe6\xbd\x31\x69\xfd\xfa\x4b\xeb\xb7\x65\x72\xa3\xc6\xbe\x51\xe8\x0d\x5c\x23\x74\xeb\x6e\x88\xe4\x61\xa8\x7b\x21\x0a\x9b\x57\xcd\x36\xd5\x65\x47\xb6\x98\x09\xe1\xd5\x9b\x07\x9d\x11\x14\xae\xd8\xb8\x67\x30\x5a\x02\x2e\x01\xe8\x6b\xa4\x6e\x7f\x14\x31\x6f\x01\x0f\x13\x39\x07\x46\x0c\xd8\xd2\x27\xd8\xbe\xe4\x43\x1c\x0b\xe6\x8d\x2e\x7b\xda\xb2\x87\x3a\x8b\xb2\x1d\xd1\x00\x3e\x12\x6b\xe5\x16\x01\x5a\xff\x30\x0a\xa0\xd1\x3f\x64\x40\x5e\x95\x67\x66\x1b\x63\x3a\x79\xb2\x9e\x4c\x41\xcf\x90\xbe\x7d\xa7\x46\xd7\x53\x62\xc1\x36\x1e\x7e\x82\x05\x1a\x96\xeb\xea\xd2\xc3\x02\xb6\x4b\xb5\x88\xee\xf6\x1c\xfc\x34\x54\x9b\x1b\xbb\x03\xa1\xfa\x3e\x49\xfd\x1e\x99\x4c\x7b\x29\x70\x4f\x41\xcc\x0b\x2e\xcf\x2c\x13\xc1\xf3\x39\x58\x04\xd9\xf0\x23\x48\x25\x51\xf7\x24\xcf\x9c\xb1\x0c\xac\x66\xc5\x92\xb1\x3e\xcb\x93\x34\x0f\xe8\xf7\x5d\x59\x6d\x25\x77\x9c\x8b\x6c\xda\x73\x67\x42\xa5\xef\x67\xd2\xb7\x57\x2d\x74\x89\xf2\x80\xd5\x9c\x90\xa1\x9e\xd7\x48\xf7\x42\x59\x9f\xd1\x33\x78\x75\x9c\x8a\x8e\x80\x5f\x2b\x37\xb0\x27\xf4\xc5\x4c\x94\xdb\xb3\x67\x5f\x5d\x13\x2d\xe5\x69\x52\x02\xd9\x8a\x83\x02\x04\x0f\xbd\xa6\xa6\x84\x78\x39\xcf\x05\xf2\xf8\x3c\xe6\xce\xd8\xfe\xf7\xf1\x95\xcc\xf1\x3c\x1c\xb3\x4b\xf9\xb8\x3f\xa8\xd0\x33\x34\x02\x3a\x6e\x95\xcd\x4d\xeb\x77\x44\xc1\x72\x17\x31\x08\x7d\xa1\x2b\x78\x47\x7d\xc1\x46\x0c\x48\xf8\x4d\xc1\x4d\x36\x0a\x1b\x8a\xf9\x13\x6e\xf7\xa2\x67\x59\x93\x50\xec\x42\xa7\x01\xdd\x2b\x3a\x4d\x24\xc1\x70\x8f\xe0\xd9\xf7\x08\x63\x33\x70\xc5\x7f\xc1\x88\x86\x7b\x6c\xe9\xf1\xe8\x5a\xeb\x25\x6b\x26\x1f\xc1\x06\xb6\x6c\xb6\xde\xf1\x36\x45\x95\xb5\x2b\x81\x6a\xf5\x97\x3a\xc4\x2f\x16\xc2\x8f\x17\x01\xfc\xbb\x56\xfc\xfc\xfd\x49\xf0\x5e\x7e\x7a\xad\xf5\xd5\xdf\x0a\x72\x48\x5e\xfa\xff\xae\xdc\x11\x0c\xac\xbf\xd4\x09\x1e\xfa\xbf\x20\x53\x11\x74\x26\xaf\x20\x72\x20\x4b\xf9\x92\x74\x37\x65\x2c\xf2\x37\x9f\xc5\x4c\xc8\x38\xd4\xc1\x1e\xe9\x03\x16\x1a\xd9\xb6\x46\x83\xfd\x07\xd8\x4d\x92\xac\x7e\xe5\xe7\x41\xaf\xc4\x18\xea\x09\x41\xec\xc8\x59\xf7\xe8\x33\x3a\xee\xc1\x50\xe7\x17\x3a\x54\xe1\xcc\x63\x16\x6d\xa0\x03\x79\xd2\x20\xb5\x3f\xbb\xe6\x01\x7c\xae\x38\x54\xc6\x43\x57\x50\x7b\xf5\x6d\x56\x2f\x3d\xab\x0b\x09\x99\x23\x2b\x94\x1f\x72\x59\xe6\x7a\xd0\x4f\xc2\xb4\xef\x58\x14\x24\x19\x8e\x4d\x83\x38\x8a\xf1\xa8\x5e\xd8\x78\x2f\xcf\xd8\xf5\xf9\xf2\xdb\xcc\x54\xbc\x42\x05\x82\x28\xef\xcc\x93\x7d\xc2\x19\xe2\xe6\x6f\x70\xaa\x23\xc7\x85\x33\x33\xda\x30\x8b\x8b\xed\x43\x50\x46\x0f\x19\x35\xf7\xf8\x03\xb3\xa1\xec\x16\xf1\x70\x29\x4d\xb2\xfe\x5c\x68\x72\x62\x1e\x8c\x84\xe0\x0a\x65\x86\x67\xa6\xcc\x8a\xc7\x59\xe9\xd2\x85\xc0\x4d\x01\xfa\x11\x5f\x57\x35\x7d\xb1\x58\x6f\xd2\x39\x82\xd8\x24\x72\x21\x5e\x08\x29\x29\x93\xaa\x94\x3f\x8f\xfb\xf3\x11\x29\x26\xdd\x90\xa3\xcd\x10\xb8\xb3\xb4\xd9\xf6\xa8\x70\xc3\x64\x3c\x6c\x91\x09\x06\xf0\x59\x7a\x4d\x81\x63\x34\x2e\x07\xae\x37\x47\xf3\x05\x74\x99\x51\x80\x9c\xc5\x36\x42\x01\xff\x47\x44\xfe\x50\xc5\x9c\x24\x4e\xb7\x6c\xa0\x45\x1c\xdc\xb1\x6b\x7d\x0d\x41\x05\xff\xef\xb4\x04\x3a\xa4\xdd\xb7\x69\x45\xff\xde\xf1\x69\x0e\x85\x57\xcb\x1f\xb8\x42\xf9\x5e\xc6\x5b\x0d\x09\x5b\x50\x5c\xa9\x92\xd4\x41\xa5\xd8\x5c\xd9\x68\x1c\xd9\x09\xc0\xc9\xab\xf4\x7c\x94\x2c\x20\xcf\x87\x55\x0a\x51\x7a\xde\x41\x94\xf1\x12\x65\x7e\x1c\xa2\xf3\x72\x04\x16\xd1\x95\xb6\x2c\x29\x4e\x0f\xcd\x05\x0e\x0d\x94\x26\x7d\x56\x1f\x70\xca\x77\x68\x70\xbd\x1c\x27\xd5\x60\x4e\xc6\xb5\xf8\x08\x9f\x4d\x48\x25\x59\x85\x39\x94\x35\x45\x8d\xc4\x34\xc1\x68\x7c\x8e\x14\x83\xc0\x0c\x05\xb9\x13\x49\xa2\xee\x58\x9f\x24\xc6\xbd\x71\x5a\xe9\xfc\x01\x1f\x7f\x4b\x67\xca\xc9\xae\xb5\xb8\xb8\xbe\xde\x44\x58\xaf\x0a\x98\xd4\x15\xda\x78\xd3\x16\x07\xfb\x89\x9d\xf3\xc2\x3d\xc3\x38\x4d\xfa\x59\x9c\x55\x72\x67\x51\xe2\x3c\x8e\x9b\x66\x30\xc9\x96\x17\xe7\xdb\xbc\x16\x06\xa7\x3f\x9e\x90\x57\xda\xbb\xfe\x14\x1c\xe5\x87\x83\xe5\xf4\x7f\x96\x52\xc8\xce\x9d\xed\xc3\x71\xe6\x55\x49\x34\x37\xc4\x03\xb5\x44\xd1\xd2\x9e\x51\x9c\x64\x55\xbd\xb9\x49\xc4\x15\x1f\x90\x8d\xe4\xac\x43\xd9\x70\x6f\x92\xac\x3e\xa6\x4b\x37\x65\xfd\x70\x7d\x42\xfe\x33\xd7\xc9\x81\xe7\xd5\x7c\x90\x95\xc0\xff\x7b\x43\x89\xdd\x8b\x81\x37\x50\x7f\x08\x23\x46\x7d\x21\x68\x2c\x26\x32\x6b\xcb\xb2\x44\x27\xde\x8a\xe9\x65\x7d\xc0\x8f\x1b\x29\x44\xe9\x78\x38\x42\x94\xc3\x36\x83\x4a\x85\x5e\x47\xc1\xba\x70\x39\xae\xe2\x14\x8a\xd8\x68\x8e\x9e\xa1\x41\xf4\xbf\xc7\xad\x33\x71\xe1\xb0\x85\x06\xf1\xff\xcf\xd8\x9f\x05\x49\x92\x65\xe7\x61\x70\x55\x64\x66\x55\x2f\xd5\x4b\xf5\x32\x03\x6e\xff\x1f\x5c\x61\x26\xb5\xc6\x40\x51\x34\x99\x41\x92\x79\x20\x33\x81\x46\x95\x88\xec\x52\x56\xb1\x9a\x6a\xe3\x43\xdf\xf0\xb8\x19\xe1\x9d\x1e\xee\x31\xee\x1e\x99\x9d\xfd\xa4\x07\x3e\xd2\x64\x12\x4d\x46\x89\xda\x8c\x02\x37\x91\x14\x09\x02\x23\x81\x1c\x12\xa4\xc7\x00\x33\x03\xcc\x60\x06\xbd\x77\x4f\x2f\x55\x5d\xfb\x5e\x59\xfb\x5e\x9d\x25\xf3\xf3\x9d\x73\xef\xf1\x0c\x2f\x9a\x5e\x66\xdc\xbb\x32\x22\x7c\xb9\xf7\xac\xdf\xf9\xbe\xb1\x3c\xe6\x57\x9d\x39\x51\xa6\xa5\xb1\xd2\x15\xad\xe2\x59\xb9\x95\x53\xd6\x16\x55\x8d\x15\x3f\xb6\xc3\xdd\x7e\xf4\x95\x9f\xaa\x9b\x51\x73\xad\x80\x4d\xdd\x42\xe7\x01\x30\x94\xdf\x2f\x29\x5d\xfd\x9b\x81\xea\x1e\x6c\x06\x2f\xa8\x21\x11\x9b\x45\x71\x54\x6c\xcc\xf8\xca\xf4\x96\x1e\xeb\xd1\x1c\xfe\xd3\xa4\x93\x95\x8d\x35\x20\x5a\x71\x5a\x01\x48\x76\x1d\xc5\xe6\x61\x61\x6a\x28\x55\x27\x93\x14\xa2\xf2\xe1\x8c\x9f\x25\xba\xaf\x94\x5a\x4f\xd7\xc9\x95\xb4\xc0\x51\x98\xd9\xe2\xf1\xf3\x91\xcf\xa8\xc5\x96\xdb\x96\x0a\xc8\x4f\x6a\x2e\x8b\x93\x6a\x7d\x85\x69\x92\xa7\x71\xd4\x33\xde\x29\x0b\x75\xa5\x2a\x09\x33\x01\xa4\xc8\xde\xf9\x08\x6d\x64\x7b\xcf\xba\x51\x84\x53\x7f\x02\x31\x2a\x45\x08\xff\xc5\x2f\x74\x34\xd9\xe8\x31\x6a\x4b\x49\x98\x5b\xdd\x37\xec\xd5\x33\xd4\xc1\x15\x2a\x36\x5a\x4d\xc8\xcf\xbe\x28\x3d\x55\xe2\xb3\x13\x0f\x80\xfe\xdb\x3f\x0f\x83\x82\x5c\xf2\x45\x15\x27\xfd\xad\xbd\x28\x18\x88\x6f\xa6\xeb\x87\xdd\xa1\xa9\x62\x8e\xe4\x7e\xa2\xac\x69\x98\xd9\x3c\x4c\x0b\x91\x6d\x40\x9e\xce\x04\xee\x32\x83\x4f\xdf\x29\x0d\x62\x1f\xf4\x8c\xb2\x34\xb4\x79\xfe\x44\x75\x2b\x32\xf7\xad\x61\x48\x8a\x58\xe9\x2b\x4d\x2f\x74\x36\xa8\xf5\x17\xbc\xa1\x84\x44\x33\x42\x84\x7f\x80\x27\x21\x89\x50\x83\xf6\xfa\xc0\xc6\xa3\x96\x72\xa2\xf5\xdd\xdd\xd0\xfd\xb6\xc3\x6e\x66\x1c\x57\x8c\xe4\x36\xf4\x0d\x92\x00\x35\xb0\xaa\x75\xa3\x77\x4c\x26\xf2\x07\xb0\xd5\x00\xc7\x61\x29\x3c\xd9\x69\x29\x72\x5f\xc5\x00\x73\x45\x0d\xc4\x66\x36\x5d\xab\xb2\x3c\x47\xbd\xb4\xb3\xe3\xab\xfc\x3b\x1b\x2a\x14\x6f\x08\xb9\xd4\xac\x8f\xf0\xc0\xd5\x2b\xe0\x95\xea\xbb\x84\xad\x89\x9e\x2d\x0c\x03\x19\x4e\xbf\xb3\x47\xe1\x20\x8a\x7b\x99\x4d\x60\xdd\x1c\x7a\xce\x45\x65\x20\x14\x40\xb0\xaf\x45\xd6\xc3\x74\x38\x32\xc9\xc6\x0b\x7e\xc9\x02\x4e\x0c\x3b\xf5\x87\xa5\x4a\x82\xee\x04\x2a\xd3\xe4\x0a\x01\xcc\x08\x08\x14\x51\xa1\x3a\x12\x78\x3a\xe0\x1b\x64\xf6\xb1\x65\x5b\x94\x3d\xc0\xec\x3e\xdd\xa1\x60\x00\x8b\x81\x91\x41\xe8\xfa\xdd\x53\x91\xd8\xee\x89\x1a\x55\x7f\x17\x91\x13\xd6\xf8\xb3\x2c\x79\xe2\xf0\x76\x8e\x3b\x93\xe9\x71\x10\x40\x5e\x43\xd7\x51\x72\x01\x5f\x1f\x5b\x31\x43\x86\x49\xc1\xab\x5c\x53\xb2\xb0\xff\x9c\xcc\xef\xd6\xf5\xa9\x85\x75\x78\x7e\xb1\xbd\x92\x99\x31\x81\x3e\xfd\x8f\xdc\xa1\x5f\xe7\x63\xd5\x4e\x7a\x2b\x2a\x0a\xcb\xa4\xfa\x78\x02\xc0\x78\xf1\xb1\x73\xfc\xb9\x8d\xde\x19\x33\x56\x11\x57\x73\x47\x55\xeb\x76\x52\x3a\xc5\x51\x65\x53\x47\x34\x8d\x37\x86\xa3\x28\x94\x2a\x21\xea\xc1\xf7\x34\xa5\x0b\x77\x0e\xd1\xa1\x38\x57\x2b\xea\xc6\x69\xbe\xab\x86\x0e\xf6\x0c\x44\x57\x54\x7b\x8a\x75\xb6\x9d\x92\x58\xe5\x5f\x98\xee\x9d\x5e\xb0\x50\xbf\x37\x40\x22\x30\x48\xcc\x8d\x2f\xd5\x7a\x5e\x74\x5a\x8c\xda\x11\xae\x8c\xe3\x3d\x33\x5a\xd6\xb2\x4a\x4a\x05\x14\xd7\xf2\xcc\x45\xfa\xf6\x18\x63\x8c\xe5\xb3\x63\xa2\x89\x66\xaf\xe8\xd5\xfb\x99\x02\xce\x61\x02\x16\xd9\xdd\xdf\xa7\xec\x58\xca\x27\x1e\x9b\x34\x03\xd8\xa2\xc0\xea\x9f\xdf\x2e\x65\xfc\x2c\xe5\x0f\xc0\x12\x30\xfd\x2a\x4a\x72\x5c\x0e\x77\x0d\x05\x17\xc8\x5c\xa3\x6f\x47\xfe\xc3\x0d\x71\xfe\x38\xee\xc7\xb1\xaa\xf9\xe9\x65\xf0\xf7\x4b\xac\xe8\x2b\xcb\x37\xf1\x46\xc4\x9a\x69\x9d\x22\x3c\x5d\x6c\xdf\x0f\x31\xbc\x0a\x3b\x7d\x67\x0a\xf8\x55\xb9\xf4\x34\xca\x25\x82\x44\x6b\xed\x04\xbe\x80\x4f\xb6\x4b\x65\x2e\xcf\x2f\x57\x1b\x81\xf8\x76\x84\x3a\xd7\x0f\x03\x33\xbf\x21\x2b\x2a\x06\x7e\xdc\xf6\x43\x5a\x27\x02\xa3\x51\x3e\xe7\xe3\x86\x7e\xd4\xc1\xf6\xca\x38\x49\x6c\x2c\xd7\xc5\x90\x7f\x5c\x97\xe0\xff\x1b\x62\x54\x4a\x01\x7d\x10\x8d\x2d\xc9\xaa\x92\x7c\x32\xd5\x0b\x7f\xa5\x1d\xc6\x76\xcd\x66\x4c\xd1\xe7\x80\x3e\x4a\x73\xab\x41\x82\x2a\x8f\xfa\x83\x22\xb7\xd6\x21\x11\x50\x4b\xc3\x78\x2e\x1f\x07\xdb\xe9\xb0\x0f\xcf\x1f\x68\x17\x76\x38\xb2\x19\x66\x76\x7c\x4d\xe8\x8b\xd2\xd7\x84\xbe\x68\xa6\xc5\x1c\x8e\x62\x2f\xb0\x28\xba\x2f\x2d\x25\x08\xd3\x50\x56\x67\xde\xed\x96\x6f\xea\xb1\xbe\x3a\x9f\x34\xb3\x2e\x99\x24\x91\x27\x88\xa2\x18\x6b\x2a\xf0\xc9\x54\x8d\xe1\x95\xf6\xaa\x1d\x15\x80\x3c\xb1\x16\x14\x82\x4a\x11\x86\x6a\xb2\xa3\xe9\xca\x8a\x7f\x51\xd2\xd2\xab\xae\x53\x4a\x59\x8d\x94\xe7\xf6\xed\x31\xb0\x61\xd2\x73\x53\xb5\xef\x4f\xa6\x22\x07\x12\x44\x91\xf9\x70\xd1\x3f\xf1\x3d\xc0\xcb\xca\x1f\x74\x6d\x61\x10\x61\x30\x87\x4f\xa0\x44\x1e\x6e\xa9\xa8\xf4\xdb\xe3\xb4\xb0\xbd\x39\x15\x95\x5d\xd4\x7c\xb6\x9b\xaa\xba\xb3\xbb\xe3\x4d\xde\xbf\xd1\x39\xe4\x35\x1d\x94\x0d\xaa\xc7\xcd\x33\xa7\xd8\xff\xe7\xb0\xce\xf9\xa4\x66\xae\x69\xec\xd3\xa1\xf5\xd1\x1b\xe4\x63\x97\xfe\xda\xa4\x6f\xfa\x96\xfa\x32\xa8\x9f\xf2\x98\x17\x0f\x3c\x05\x0a\x10\x84\xfa\x88\x0c\x70\xd5\x54\x22\xd6\xec\xb3\x5a\xd6\x8d\x05\x6e\x9d\xd0\xe8\xeb\xce\x93\xff\x26\x6d\x72\xb4\x16\x8e\x68\x1d\x93\xcf\x95\x04\xc5\x15\x35\x66\x75\x02\xd0\x72\x80\x8d\x8e\x6b\xfd\xa0\x1f\x95\xaa\x49\x53\x2a\x2b\x76\x85\x72\x20\xd4\x20\x1f\xc0\x6e\xf2\xc7\xd5\x10\xff\x2d\xf7\x04\xba\x26\xf9\xf6\x18\xcd\x35\xc4\xdd\x6c\x51\xf9\x44\x11\x10\x75\xb3\xd4\x60\x10\x11\x95\xdd\x87\x0a\x50\x7f\x5c\x51\xa1\xde\x98\xb6\x36\x8b\x24\xb8\x10\x9a\x42\xa2\x4c\x47\xb0\xe7\xdb\x73\xd3\x12\x10\xfb\xf7\xb7\x57\x23\x6a\x7c\x54\x1f\xa9\x69\x28\x09\x22\xd5\xaf\x8d\x6e\x36\xce\xf3\x6a\x6d\xd4\x84\xd1\xb4\x2a\xc5\xb1\x5a\x16\x99\xc6\xf1\x53\x1e\xa4\x7a\xad\x54\x60\xa4\xcd\xc0\xb7\x58\x1f\xc1\x5b\xc0\x06\xfc\x5d\xac\x5e\x6e\x00\x06\x5e\x41\x1e\x71\x2b\xdc\xed\xdf\xc7\x4d\x39\x0e\x35\xd7\xa1\x7a\x97\x12\x1d\x19\x37\x7f\x4e\xad\x6a\x9b\xd8\x8d\x59\x6a\xbf\x72\x51\x8d\x5e\xa1\x6b\x21\x2d\xcf\xbb\x7f\x28\x55\x6f\x49\x81\xe6\xde\x0a\x47\x2d\xcd\x3f\xcd\x18\x52\x3e\x69\xd6\xd8\x33\x09\x88\x37\x24\x68\x51\x01\x8c\x2b\x84\x74\x9d\x40\x92\x0b\xab\x4e\xe1\x19\xf0\x49\xa0\xc9\x74\x72\x6b\xb2\x70\xc0\x6d\x1b\x04\xe7\x9c\x1e\xf2\xc9\xc4\x5f\x71\x61\x0d\x62\x6f\x96\x5f\x55\xc5\xcb\xaf\xb1\xa5\x51\xc7\xd6\x7a\x0c\x66\xa5\xb0\xd9\xde\xea\x09\xe0\xdf\xae\x06\xaa\xc5\x8e\xb1\x43\xbc\xcd\x7f\x49\x75\x7e\x21\xd6\x57\xd2\x05\x57\x4b\x85\x74\x47\xb4\xc0\xbd\x40\xec\x20\x69\x43\xb6\x9c\xc2\xce\xce\x89\x92\x68\xe4\x7e\x17\x22\xa4\xe3\x08\x5c\xa4\x4c\xe5\xc5\xdf\xb7\x34\xbb\xfc\x11\xcd\x6a\x27\x22\xb3\xa8\xec\x5c\xac\x55\x94\xb6\x13\x1e\x91\x90\xf8\x9c\x9e\xbc\xaf\xee\x0f\x61\xc0\xce\x8e\x9f\xfd\xc2\xc8\x4c\x4d\x73\x09\x59\xd7\xbd\x06\x02\x98\xb6\x89\xb2\x30\x33\x2b\xc5\xac\xa2\xa4\x3a\xaa\xda\x9a\xd0\x53\x94\x27\x4a\xcf\x44\x78\xe3\x45\x31\x3e\x8d\x50\xbe\x16\xfd\x5a\xfa\x49\xad\x2a\x00\x3f\xf0\x4c\x47\x4b\x86\xd1\xb0\x9a\x90\xcf\x35\x70\xe1\x84\x03\x3b\x74\xa3\x1b\x32\x52\xe5\xb7\xce\x49\xa5\x3e\x3f\xa2\x68\xc0\x31\xf4\xa2\xa8\xf2\x38\x05\xc8\x57\x00\xa2\xe2\x3a\x1c\x93\xc3\x63\xdc\x41\x98\xe2\x65\xad\x9b\xb0\x18\x3b\xf2\x61\x11\x02\x57\x38\x5d\x0d\xeb\xcf\x07\xd1\x08\xc5\x41\x0d\xf4\x95\x39\xfc\x96\x57\x33\x2b\x9f\x76\x05\x91\x5f\x3a\x88\x02\x97\xb4\xf9\xab\x75\xcc\xc7\x0d\x0c\xa2\x07\xc0\xed\xa9\x84\xf1\xc1\x09\x21\x39\xfd\x34\xc5\xd6\xab\xed\x9e\x0d\xe3\xc8\x69\xf2\xa2\xbe\x05\xde\x28\x3e\xf6\x93\x32\x69\x52\x64\x26\x2f\x28\x30\xd5\xe5\x7f\x7a\x28\xff\xf0\x79\x0c\xe5\x38\x20\x7c\xb5\x9c\x85\x00\xc7\x8f\x95\xb0\xf0\x02\xd3\x1a\x6c\x0f\x7d\xab\x5b\x38\xf0\xda\xc1\x59\x5d\xd3\x08\xea\x78\x72\x1d\xe3\x56\x3e\x52\x42\xc8\x86\xe0\x6c\xcd\x16\x36\x33\x09\x69\x6c\xc8\x20\x60\x0d\xd8\xe0\x8a\x6c\xad\x89\xaf\x41\x8d\xdf\x8a\xe8\x0e\x71\xed\xb7\x74\xf5\xa6\x05\xc3\x84\xd7\x77\x33\xa8\x8f\x68\xb4\x1c\xb1\xc9\x69\xb2\x24\x28\xd6\x5c\xf4\x72\xe5\xe3\x95\x02\x03\x2f\x92\xef\xa8\x06\xdd\x66\x20\x3b\x85\xf8\xbe\x7d\x98\x5c\xab\xdd\x69\xee\xdb\x6c\x1c\x46\x26\xa6\x20\x44\xd2\x4e\xc5\xa5\x0b\xde\x3c\x84\x03\x50\xb8\x47\x25\xe8\xff\x99\xaa\xed\xbe\xd2\xce\xad\x71\x79\x00\x67\x0c\xa5\xa2\x8d\xfc\x58\x61\xb4\xc2\xd8\x44\xc3\x88\xa1\x18\xdc\xaa\xa5\xad\x24\x6d\x5b\x1f\xc6\xad\x26\x69\x51\x30\x64\xb6\x49\xda\xc2\x57\x8c\xbb\x99\x74\xbe\x85\x5a\x49\xf3\x2c\x4d\xb5\xf9\xf7\x2d\xb5\x57\x37\x84\xba\x8f\xa9\x09\x88\xee\x41\x68\x0a\x9e\x8b\x74\x79\x93\xf7\xa6\x53\x26\x75\x58\xc7\x26\xbe\xa3\x83\xd5\xc5\x20\xe1\x90\xa0\x77\x17\xa4\x51\xf9\x64\xf2\x38\xb4\x51\x91\x8e\xfb\x83\x99\x6a\x75\x4a\xb3\xc4\x23\xa1\xef\xd4\x2d\x82\x5c\x5f\x92\x66\x43\x67\x3b\x50\xa7\x61\xc6\x22\x3e\x51\xda\xa7\xd1\xb0\x6b\x62\x26\x67\xae\x56\x3d\x8b\x10\x51\xcc\x21\x82\x44\xba\x61\x38\xec\x46\x09\x0c\x1e\x03\x9f\xe9\x2d\x09\x08\x7a\xfb\x8d\xef\x5b\x6a\x0f\xa3\x1e\x69\xd6\x38\x11\x8d\xb3\xf4\x09\x3e\xf6\x36\xc0\x0c\xbb\x69\x8f\x39\x97\x05\xe1\xaa\xca\xa4\x57\x54\x31\xbc\x6b\x8b\xc1\x4a\x9a\xf5\x2d\xf2\x37\xae\x76\xa9\x98\xf5\x0f\xa7\x36\x2d\xc9\x71\x99\xa4\x27\xd4\xd6\xb0\x19\xef\x97\x4a\xa1\xf2\x7d\xd5\x35\xe8\x9a\xac\x6f\x22\x4d\x4a\x74\x83\xb6\x21\x1f\x07\xa2\x67\x93\x8f\x6c\x38\x8e\x99\xc0\x68\xf1\x90\x27\xfa\x5f\xf2\xfc\xc1\x0d\x13\x72\x61\x9a\xac\xc4\x51\x08\x1e\x18\x07\xdf\x70\xf5\xe5\x0b\xa5\xbe\x92\x70\x55\x42\x1e\x37\xdd\x55\x6d\x28\x69\x09\x7b\x10\xe2\x28\x36\xa1\x05\x65\xa5\x07\xa7\x94\x8a\xe8\xe1\x01\x42\x19\x79\xf4\xdb\x8d\xf6\xf2\x7c\x7b\x38\x2e\xa2\xd8\xb8\xb6\x14\xb6\xfc\x07\x0a\xf2\xff\x81\x42\xe8\x66\x36\x4f\xc7\x59\x68\xf3\x27\x15\xdf\xf5\x69\x35\x0b\xf9\x1c\x19\x42\x20\x1f\x9e\x98\x28\x1e\x6c\x2e\xb9\xd4\xd8\xcf\x90\x79\x33\x0c\x19\x80\x9e\xa7\xb8\x32\x8f\x84\xe1\xe3\x52\x4d\xbc\xb6\x26\x0a\x6f\x1c\x8d\xe2\x74\x68\xc2\x0d\x2c\x07\xc4\x56\x1f\x29\x21\xde\x8f\x54\xa3\x3a\x4b\x13\x13\xf7\x66\x6b\xb4\x0e\xf8\x15\x46\x01\x83\xfa\x45\x55\x3b\x0e\x38\x7c\xf0\x8b\xdb\xc6\x8c\x16\xdb\x0b\x8b\xdf\xa0\x1d\x2d\xcd\x1f\x9f\x76\x9c\xa5\x6c\x55\xe2\xfe\xd6\xc2\x02\xdb\xc9\xaf\xc1\xcd\x88\x5b\x62\xf5\x58\x9c\x1c\x29\x55\xf5\xec\xcb\xd2\x13\x82\x5f\x25\x3c\x96\x70\xa9\xa9\x16\xde\x16\x2e\x4f\x68\x88\x3d\xc3\x2f\xc7\xac\x2c\xb8\xa8\xa4\x26\xee\xaa\x55\xc6\x79\xa1\x03\xd5\xfe\xca\xeb\x1c\x00\xfc\x53\x40\x42\xf0\x0f\xef\x53\xef\x1e\x0f\x7d\xb3\x26\xcb\x76\x1b\xd9\x1c\xe2\xc1\x8f\x91\x57\x4a\xe2\xdb\x54\x76\xb1\x45\x11\xd3\xf2\x44\x19\x40\x2a\x0c\x2a\x73\x9f\xde\x2b\x0b\x0b\x55\x70\xb3\x52\xb8\x5a\x0d\x23\x4d\x15\x33\xf0\xc7\xb5\x2c\x7b\x18\x01\xbb\xab\x21\x41\xe8\xd3\x5c\xa4\xe7\x23\x93\x03\x8f\xb3\xb6\xd9\x86\x13\x9a\x82\xff\xfc\x24\xf0\xd0\x51\x8d\x13\xce\x37\x9c\x73\x61\x9e\x5d\x32\x99\xc2\xb9\xdb\x20\xc9\x44\x52\xfd\x92\x10\x82\x89\xe3\x36\xee\x9e\x4f\x5c\x7b\x7a\xc3\x9a\xac\x0b\x7a\x3c\x4f\x70\x76\x1e\x51\x09\x9f\x4c\x85\x96\x0b\x0b\x60\xd4\x03\xc7\x2a\xe3\x7f\x02\x05\xa8\x80\xae\x83\x44\x08\x8f\xe3\xc9\x09\x63\xd3\x9b\xad\x45\x09\x3e\xda\x7a\x44\x8f\x02\x81\xf6\x47\xa5\xa2\xcc\x39\xad\x1a\x6d\x69\xbc\x82\xcd\xe5\x90\x7c\xdb\x65\xbe\x28\xee\x5e\x7c\xa1\xe3\x2f\x67\x76\x22\x5e\x60\x25\x4a\xa2\x7c\x60\xf5\x10\xe1\x67\x5a\x9e\xf6\x33\x35\x73\x9a\xff\x85\xd1\x2e\xda\x7c\xc8\x15\xfe\x91\xb2\xff\x73\x28\xff\xb2\x1e\x06\x9e\x02\xf0\x82\x67\x4a\x8f\x6f\x79\x54\x2a\xd6\x0f\xcd\x19\xb7\x6e\x7b\x7b\xbc\xf4\xed\x16\x2e\x00\x5f\xf6\xf4\x44\x29\x5a\x9c\x53\xfd\xc1\xdd\x13\x9f\xb6\xfc\xa9\x89\x9f\xae\xda\x78\xa5\xe3\x27\xb7\xaf\x51\x8e\xe7\xe8\xe7\x3d\x85\xe5\x7f\x08\x9a\x7b\xd1\x61\x54\x39\xe2\xb3\xe8\xa3\x20\xac\x7d\x6a\xe2\x11\xaf\x61\x6c\xb2\x28\xb1\x45\x94\x17\xad\x5a\xbc\xaa\x00\x19\x57\x82\x67\x14\xe2\x2e\x1d\xce\xfa\xee\xe2\x47\xaa\x79\x7e\x3e\x50\x96\xe7\x6f\x94\xbe\xd9\xeb\x89\x01\x7b\xb6\x30\x4a\xc8\x5b\x70\xd9\xd5\x3d\xcb\x53\xda\xab\x8a\xec\xc3\x34\x8b\x6c\xbe\x8b\x2e\xc5\x31\xda\xb9\x41\xaf\xef\xeb\xc9\x80\x0b\x6a\xfc\x1e\xf3\xb8\x28\xc0\x00\xbf\x24\x8c\x80\x1e\x5f\x35\x4a\x63\x81\x94\xe2\x4e\x58\x18\x9b\x4f\xd4\x28\x62\x66\x47\x26\xe2\xe9\x58\x04\xac\x68\xe8\xf2\xb1\x83\x6d\x8e\x13\x9b\x87\xe9\xac\xaa\xae\x82\xe8\xd9\x91\x50\xfd\xca\xeb\x35\x42\x2a\x18\xdf\xeb\x1e\x03\x19\x65\x61\x2c\x79\x8e\x9b\x0b\xf7\x33\xe2\x4d\xda\xa0\x7f\xae\x3d\x4c\xf3\x02\xd4\x4f\xd2\xe3\x23\xc7\xc0\x27\x53\xc1\xe9\xc2\x42\x15\x09\x66\xb3\x7a\x61\xd3\xd5\x20\x71\x7c\xa0\x84\x13\xff\x1d\x96\x00\x93\xbd\x35\x4a\xbd\x75\x63\x9b\xbb\xd6\x01\xde\xc3\x6d\x05\x7b\x9a\x56\x2c\x5c\x3c\xd4\x8e\x6d\x7f\x3c\x44\xe8\x87\xde\x29\x0a\x13\x7c\xdc\x04\x39\x48\xc6\xfd\xbe\x95\xc1\x4c\xd4\xfe\x2f\x6a\xf9\xd2\x8b\xc1\x5e\x05\x19\x18\x99\xcc\x14\x16\x6a\x90\x08\x75\x3f\x57\x60\x27\x86\x54\x3a\x76\x51\xa7\xf6\xfb\x21\xec\xa2\x7b\xee\xfb\x96\xb4\x6e\xc9\x1b\x75\xbf\xc9\x4d\x5f\x55\xab\x1a\x85\x48\x9d\x9a\x58\x39\xb6\x3f\xb9\x37\xdf\x6c\xf7\x63\x93\x27\x44\x8a\xb2\xb4\xe4\x07\xcd\x7e\xe5\x75\x37\x68\xe6\x49\x1d\x4c\x51\x64\x51\x77\x5c\xf0\x84\x99\x30\xae\xfa\x86\xcb\xa6\xba\xfd\x51\x9c\x16\xe2\xe5\x96\x7c\x9b\xa9\xba\x65\x3e\x51\x5b\xa0\x1f\xad\xd9\x7c\x77\x8d\x59\x5f\x51\x3b\x54\x81\x03\x03\xc4\x10\x1f\xb0\x9c\xe6\x44\x53\xce\xce\x10\x04\x14\x13\xf6\x68\x73\xa1\x9b\x75\x63\x2a\x8d\x23\x29\x9a\x7e\x44\xbd\xe9\x03\x5b\x20\x08\x72\xd4\xf0\x87\x65\x3e\xe5\x93\xa6\xd0\x3f\x5d\x59\xc9\x6d\x31\xa7\xc6\x86\x99\x21\x8e\x69\xb5\x15\x99\xf7\xef\xa9\x8a\x1b\x2a\x61\x82\x86\xf3\x89\x5f\x96\x86\xab\x56\x0f\x1a\x70\x3d\x95\x4f\x34\xa5\x6a\x9c\xae\xc7\x1b\x44\x7b\x07\x60\x2b\x9b\x54\x84\xe4\x77\x10\xdf\xc8\x6c\xa3\xdf\x38\x8c\x1e\xe4\x7f\x68\x28\x00\x1f\x6c\x27\xf6\x6d\x5c\x81\x53\xff\xd9\xb7\xe4\x90\xba\xdb\x9d\x6a\xf5\x08\x98\xd1\x9b\xb7\x5a\x13\x5f\xc8\x1e\xf7\x5e\xd7\xd3\x94\xd6\x15\x82\x14\x6c\x48\x3e\x6e\x40\x4d\x1e\x68\x9b\xa4\xef\x4b\xcc\xb0\x6a\xbb\x3a\xaa\x8c\xbf\x6b\xf2\x38\x55\x57\x66\xf4\x9e\xd5\x1c\x45\xa5\x67\xa9\xbb\xa4\x46\x3a\x3f\xd4\xdc\xb2\xf7\x5d\x8c\xf2\xff\x41\x75\xb9\xa9\x28\x94\x0f\xa2\x91\x57\xff\x74\x32\x84\x0e\x09\x79\x45\x61\x83\xe2\x34\xb7\x4f\xd1\x37\x4a\x63\xbc\xf5\x6b\x42\x73\x87\x31\x64\xa0\x29\x2e\x04\x2a\x8b\xfb\x0c\x6f\x1a\x01\xc7\x23\x2a\x37\xf1\x5f\x01\x1a\xb0\x6b\xa2\xa4\xb9\xbe\x44\x74\x82\x91\x23\x6c\x4d\x78\xf6\x9f\xa9\xf9\xf2\x6e\x14\xc7\x51\x9a\x3c\xa7\x80\x6f\x9f\x04\x9e\x3e\x06\xf4\x22\x2c\x81\x8a\x0d\x27\x35\x28\xa5\x87\xba\x1b\xb5\x5a\xc0\x21\x66\x26\xb5\xdc\x60\xff\x7e\x2e\x02\xdc\x26\xf4\x05\xf2\xa5\xab\x68\xb5\xe0\x03\x3b\x09\x7e\x81\x38\x1f\xf5\x51\xc4\x10\x37\x35\xf1\xf9\xf7\xb4\x10\xc8\x1f\x2a\x9e\x8d\x3f\x6a\xa2\x3b\x20\xf9\x59\x49\x2c\x71\x8d\xac\xee\xc8\x27\x8a\x02\xe3\x3f\x4a\x11\x54\x3b\xc8\xb7\x67\x95\x79\x44\xef\x01\x76\x64\x5a\x7a\x68\x61\xb1\xbd\x92\xd9\x24\x1c\xcc\x2a\x24\xf1\x1c\x67\x75\x6e\x92\x62\xff\x7e\x67\xe3\xfc\xe0\x51\x63\xff\x65\x68\x92\x34\x6b\x29\x4e\xc3\x93\x8a\x62\xea\x64\xf0\x82\xaa\xfe\xc7\xe3\xb0\x30\x49\x41\x65\x2c\x7c\x23\xf7\xd2\x24\xef\xf0\x53\xdd\xf7\xd4\x64\xf8\x91\xa9\x8d\xb6\x6f\xa9\x3d\x2e\x0a\xd7\x64\x7e\x0c\x09\xad\xd0\x19\xa7\xc3\x28\x44\x0d\x03\xf6\x94\x0b\x7b\x7c\x32\xf1\xf9\x43\x32\x1e\x76\x6d\xf6\x64\xcb\xe9\x60\x00\x03\x0c\x5b\xf6\x93\x52\xb9\xf9\xdf\xc1\x3a\x02\x58\xf0\x23\xae\x0d\xba\xe1\x50\x25\xce\x51\xfd\x2a\xac\xe6\xec\x44\x29\x18\x9d\xd5\x2e\xf7\x56\x23\x32\x66\x68\xad\x4f\xb1\xb0\xfe\xf0\x75\x7c\xac\x00\x14\x04\x46\x95\x14\x09\xab\x10\xac\x46\x7c\xac\x28\x47\xe2\x6f\x8d\x44\xaf\x5a\xc2\x49\xc5\x29\x78\xd4\xf1\x9c\x8f\xe3\x22\x1a\x9a\x62\x3c\x64\xe0\x2f\x2b\xf2\x2b\xe7\x0f\xae\x2a\x49\x2e\x15\xea\xdc\xc4\x3d\xfb\x0e\xa1\x6f\x5c\x42\x5d\x7d\x03\x10\xb4\x47\x14\x95\xd7\xad\xa9\x0e\xf3\xfe\xfd\xed\x6c\x9c\x0f\x6a\xcc\xc2\xb5\x79\xe8\x17\x94\x7e\x78\xba\x6a\x33\xd3\xb7\x4f\x10\x22\x43\xcc\xbd\x96\x1d\x0a\x7c\xc3\x65\x53\xa9\x54\x6d\x06\x8a\xda\x9e\x81\x3d\x7c\x52\xfa\xda\x52\x5d\xce\x48\xdd\xdf\x28\xb6\x49\xb1\x31\xdb\xfa\xab\xbf\xca\x61\xde\xf7\x4a\xd5\x39\xf8\x9e\x9a\x6b\xf9\x2d\x55\x2c\xfd\xad\x86\x72\xfc\x52\x7b\x9c\xac\x98\x48\x56\xb1\xf0\xec\x78\xa7\x7b\xb2\x91\xa0\xdf\x84\xa4\xc0\x41\xbb\x5f\xb2\x54\xbf\xe1\x2f\xd7\xde\xa7\x32\x99\xa3\x2c\x5a\x33\x85\xdd\xa5\x8c\xfc\x03\x15\xf8\x40\x73\x55\x64\xb4\x54\x76\xf6\x89\x9e\xe3\x90\x6a\x03\x93\xe0\xa9\xba\xee\x4a\x9c\xa6\xd9\xee\xea\xf1\x6f\x61\x86\xc6\x09\xc1\x2c\xcf\x6f\x5d\x52\x74\x4f\x7f\x27\x50\x5b\x07\x93\xd4\x78\xfa\x33\x0a\xa5\x77\x45\x85\x61\xd5\x32\xcc\xa2\x62\x03\x89\x25\xae\xf0\x68\xe9\xc1\x1e\x77\x4a\x2f\x54\x78\x42\x4d\xf5\x61\x0a\x1c\x0d\xce\xef\x6b\x12\x81\x2a\xd4\x74\xfb\xc1\x5a\x06\x7a\x61\x97\xdf\x54\x13\x55\x3c\x8b\x24\xd4\x00\xdb\xba\x17\xaf\x2f\xcf\x57\x61\xfb\xac\x12\x39\x65\x92\x71\x25\x7d\xb7\xe4\xa6\x34\x7d\x75\x76\x73\x6a\xd9\x33\x4c\x64\x46\xf5\xbd\x99\xd5\x02\x27\x5c\x23\x94\x26\x78\xc3\xb0\x46\x04\x95\x57\xc2\x9e\x39\x8d\xb4\xe5\x03\x72\xc3\x0a\x33\x75\x1c\xee\x49\x69\x0d\x48\x64\x32\xe3\x07\x8d\x7e\xeb\xb2\x1b\x91\x18\x58\x33\x52\x01\xd0\x3f\xa4\x07\xcc\xc7\x4d\xed\x43\x08\x24\x58\xe8\xae\xc3\xb9\x80\x7c\x9c\x8f\x9b\x2a\xfc\x69\xaf\xc7\x66\x06\xfd\xbf\x3d\xd5\x95\x6c\x6d\x91\x21\x45\xac\xf8\xc0\xf5\x16\x4d\xbe\xba\xab\xfa\xef\x82\x76\xf3\x9a\xaa\xe7\x69\x1d\x60\xbb\xa1\xca\xc9\xc4\xac\xf5\x71\x59\x35\x51\xf0\xe3\x46\x95\x6e\x52\x42\x9f\x51\x8a\xb3\x98\xbf\xc1\x43\x82\x5d\xc5\xec\xea\x89\x29\x77\xb8\x78\x08\x7e\xa9\xa5\x09\x1d\x3c\x26\xe4\xa2\x22\x19\xaa\x9e\x51\x95\xbb\xd3\x2b\x43\x25\x02\x0b\x96\x8f\x71\xd1\x70\x80\x0f\xb0\x94\x34\x47\x20\xec\xd2\x7f\xab\xb5\xcc\xcf\x39\xd1\x6c\xfb\x36\x81\x9b\x9c\xf7\x40\x87\xf4\xac\x22\xa3\x3c\x5b\x4e\x83\xa9\x5e\xa5\x89\x4f\x62\x3e\x62\x8b\xd4\xc4\xa7\x26\xf4\x52\x23\x9b\x24\xf9\x46\xbc\x66\x92\xc8\xb0\x43\x11\xf4\x2e\x5d\x93\x64\x75\x35\xd6\x87\xee\xc6\x1c\xfe\x54\x56\x99\xaf\x55\x80\xdd\x9f\xe5\xad\xf1\x15\xfc\x47\x58\xfc\xc8\xff\x6e\x39\xdc\x41\x3a\x2e\x98\xe8\xbd\x7a\x34\x0c\xdb\x0e\x54\xf9\xe6\x9a\x9a\xb1\xe9\x65\xe9\x68\xb7\x8f\x89\xaf\xc3\x04\x09\x0b\x00\x3d\x23\x4d\x04\x2a\xd7\xee\x5b\xc8\x4c\x80\xa8\xe5\xea\x95\x8c\x9f\x24\x97\xbd\xb5\x28\x4f\xb3\x0d\x5c\x92\x24\x9f\x2d\x47\x32\x76\xc1\x75\x07\x69\x32\x6b\xd6\x3b\x9b\x3b\x6a\xf0\xe6\xc7\x81\x2f\x02\x31\x98\x5f\x0a\x31\xde\x09\x55\x91\x81\xe5\x3d\x23\x4b\xa1\xe5\x88\xdb\xee\x05\x1e\x8c\x71\xb7\xd1\x87\xc4\x51\x37\x33\x8c\xa5\x75\x04\x3e\x9e\xcc\x47\xf3\xa6\xf5\x6c\x4c\xb2\x06\x8b\x87\x38\x22\x3e\xa3\x51\x62\x67\x1a\x30\x90\x07\xdb\x26\x8b\x72\x40\xa6\x60\x0b\x99\x33\x0a\xc5\xac\x8f\x4a\x3f\x63\x0e\xbb\x08\x73\x72\xb3\x89\xcb\x2b\xa4\x8a\x8c\xc7\x57\xd4\xf3\x92\x69\x2d\x97\x83\xed\xb5\xb4\x10\x92\x21\xb1\xb7\xbe\x1b\xb6\xd9\xb4\x65\xb3\x74\x5c\xa0\x86\xe2\x8a\x93\x55\x5e\x20\x05\x9d\xe9\xe7\x77\x90\x48\xc8\x1d\xef\x17\x9c\x21\xc3\xcc\xf8\x64\x6a\x84\x97\x3e\x95\x26\xa1\xcd\x12\xdb\x9b\x55\x99\xef\xd9\x72\x66\xbb\xb2\x25\xaa\x97\x4f\x42\x4f\x07\x27\x4f\x4f\x3c\x27\xa1\xc9\x73\x3b\xec\xc6\x1b\x43\xae\x75\xd7\x86\x1f\xf9\x64\xca\xc7\x1c\x7a\xad\x72\xd1\xeb\x8a\x2b\xe6\x48\xe9\x87\xd8\x8f\x04\xdb\xbb\x03\x92\x95\x0e\xc7\x99\x29\xcc\x8c\x42\x8d\xb0\x78\x95\x4c\xbf\xb7\x9c\x9e\xe2\x07\x1e\x28\x91\x6c\x14\x03\x32\x6e\x4e\x42\xed\x2c\x41\x9b\x44\x0d\x45\xf1\x9a\x5c\xc3\xfe\x43\x01\xef\xa9\x89\x6b\x43\xcc\x7d\x03\x8b\x86\xb5\x06\xa7\xe4\xeb\xf6\xef\x6f\x47\x49\x5e\x44\xc5\x98\x01\xd1\x7a\xab\xd0\x63\xf4\xdb\xc6\x37\x29\xbb\xd6\x64\xaa\xf4\xb3\x2d\xfa\xf5\x2d\xbe\xf5\x28\x49\x48\x03\xce\x0d\xe6\x7d\xa2\xb2\xdb\x4f\x74\xf0\x3d\xce\x07\xae\x48\x04\xd9\x9f\x9f\x90\x2d\xe3\xe3\xed\x21\xb5\x8d\x37\xa8\x6c\xc3\x89\x0e\x28\x40\x11\x63\x3c\xdb\xf1\x36\x6a\xf7\xc4\x27\xdd\x83\xa8\xc8\x67\x7d\xf5\xf3\x1e\xb9\x76\x6c\xa0\x33\x0a\xb3\x7a\x4f\x6d\xac\x33\x4d\xf2\xc5\xe1\x20\xcd\x6d\x42\xa1\xb9\x90\x74\x2a\x2e\xbd\x1b\x81\xae\x1a\x34\xa4\x5c\x26\x2b\xa2\x30\xc6\x4e\x41\xf6\xff\xdd\x52\x95\x02\xbe\xdb\xa0\x4f\x97\xd9\x21\xa1\x6c\x5b\x9a\xe4\xb0\x8a\x72\x64\xf8\xbe\xe1\x67\x72\x9b\xad\x45\x4c\xe6\x01\x1b\xb6\xa5\xec\xd9\x56\xe3\x0e\x36\xbd\x28\x6d\x69\x52\x2a\xb8\x16\x3e\x6e\x50\x85\x3d\xd0\xee\xc7\xa9\x11\xf1\x3e\x04\x10\x3f\x0d\x94\xfc\xf6\x4f\x35\x12\x26\x4c\xc3\x82\xbb\x38\xc2\x43\x85\x1f\x43\x9a\x78\x4c\x83\xaa\x9a\x92\xe4\xe5\xf6\xd0\xe6\x48\x41\x25\xa1\xa0\x4f\x48\xa2\xd2\xa0\x49\x35\x48\xb3\xe8\x9d\x34\x69\x29\x96\xa4\x9f\x95\x1e\xc3\xf2\xb3\x40\x47\xf6\x28\x1c\x7b\x89\x62\x78\x1d\xd1\xb7\xf5\xdd\x68\x9b\x63\x09\xe6\xbb\xd4\xd8\x22\xb0\xfb\x12\x29\xd2\xd2\x44\x6f\xe9\x33\x5a\x4f\x4e\xa7\xc8\x69\x00\x5c\x27\xec\x21\x6c\xf0\xa7\x4a\x1c\x72\xd5\x14\xef\x28\x5d\xc0\x6b\xaa\x94\x78\xad\x94\xee\x7c\x66\xab\x5d\x6b\xe2\xb8\x8e\x89\xc6\xee\xe2\xe3\xa6\xc9\xcc\x6e\x66\x4d\x38\xa0\xe6\xbf\x56\x9c\xe7\x63\xb7\xc9\xe2\x68\xc5\xe6\x66\xad\xda\xba\x78\x43\x42\xc4\x4d\xcf\x9b\x4f\x34\x19\x69\x6c\xf2\x81\xed\xd5\x54\x28\x55\x80\xb5\xe9\xbe\x78\x94\xa5\x44\x8e\x39\x06\xb4\x58\x2a\xd8\x2d\xa5\xae\xf5\x52\x3d\x41\xf8\xb5\xc5\xf6\xe1\xf9\x37\xe8\x8a\x79\xc2\x48\x55\xbe\x36\x15\x75\xb1\x87\x61\x33\x3e\xa9\xa3\xda\x1e\xad\x49\x43\x01\x27\xb3\x7e\x4c\x15\x01\xdd\x6f\x28\x9e\x93\xdf\x98\x72\x3e\xd5\xae\x22\x16\xab\x68\x25\x0a\xe9\xfa\x79\xa2\xa0\x54\x58\x95\xeb\xee\x5e\xfb\x31\x8d\xda\x98\x22\xe2\xdc\x88\x55\x47\x90\xde\xa0\x46\x84\xa0\x98\xa5\x23\xca\x97\xa6\x49\x6a\x0f\xcf\xcf\xfa\xc6\x1a\x26\x8a\x10\x9b\x5f\x57\x26\x8b\x83\x45\x60\x74\x7e\xec\x0b\x99\x26\x8e\xf2\xee\xb8\x1e\xa0\xe0\x4f\x25\x5a\x79\xd1\x93\x92\x85\x61\xe5\xa3\x6c\xbc\x01\xe2\x52\x34\x12\x8f\xc3\x89\xf3\x89\x8b\xbc\xcc\x3b\x85\x0d\x67\xaa\xe4\x1d\x65\x7a\x8c\xc4\xa3\xf9\xbe\xb3\xa3\x7e\xe1\xc1\xd4\x22\x3c\xf4\x5a\xbb\x6f\xb3\xa1\x81\x01\x15\x7c\x8f\x9f\xd7\x64\x20\x2b\xfc\xf5\xed\x46\x94\x7e\xb5\x88\x8b\xc1\x86\x8e\x59\xbf\xd0\x71\x6f\xd3\x40\x49\x1e\x66\xd6\x26\xad\x3a\x8e\xd5\x39\xf1\xcb\xaa\x36\x9b\x47\xe1\x2a\xfe\xce\xc9\xd6\x78\xb6\xb3\xa9\x1e\xc2\xa1\xd7\xda\x45\x3a\x0e\x41\xe2\x88\x46\xdd\x97\xf4\x01\x3e\xae\x45\xee\xe1\x90\xdb\x7b\xa8\x77\x9e\xd1\x22\x5d\x67\xf4\x64\x6f\x3a\xce\x8b\x34\x69\x79\x95\xa3\x9b\x81\x8a\x16\x6f\xfa\xa1\xf2\x95\x15\x13\x65\xb3\x6a\x41\x61\x3f\xa3\x82\xf9\x15\xed\x14\x84\x04\x1f\xe0\xbd\x0b\x5d\x89\xaf\x0b\x54\xff\x33\x8a\x0d\x53\xd0\xf2\x30\xba\xe6\x18\xbd\xe2\xc5\xee\x8b\xa2\x5a\xfc\x29\x5e\x1d\x02\x12\x0c\x05\xca\xf8\xa4\x22\x97\x3e\xd5\xf0\xea\xde\x68\x9b\x70\x10\x59\xe1\x5b\x15\x49\xdf\xea\xd1\xf1\xb1\x1f\x3f\x23\xce\x7b\xbb\x4b\x73\xbc\xbf\x57\xfa\x75\xfc\x15\x4c\x2c\x52\x48\x68\x0d\x23\x66\x9b\x9b\x28\x2f\x72\x96\x5e\x05\x8e\xbf\x56\x48\xc0\x22\x4a\x22\x9b\x17\xad\x7a\x2d\xc4\x75\x4b\x8e\xea\x3f\x15\x86\x5e\xdf\x71\xe3\xf2\xb7\xa0\x06\x1b\x06\x63\xcc\xca\x4a\x14\x47\x22\x2e\xe8\x20\xe5\x8e\x75\x5c\xe3\xe9\x47\x59\x3a\x4a\x73\x13\x53\x5f\x1e\xb8\xf0\xb3\x78\xfe\x8e\x26\xc5\xa9\x14\xdc\x63\x87\xa9\x8a\x6b\x92\xb7\x3f\x08\xfc\x74\xe7\x59\x54\xd8\x71\x81\xf7\xd1\xfa\x91\x07\xac\xda\x02\x17\x94\xb5\x2b\x55\x8b\xa0\x35\x51\x1c\x2f\xe7\x1c\xca\x32\xcc\xb8\x11\x2c\x2d\x4e\xdd\xef\x54\x84\x14\xf9\x38\xe9\xc7\x55\x74\x0d\x6b\xcc\xca\x2c\x74\x79\xa2\xd2\xa2\xfa\x59\xa3\xcc\x9a\xde\xac\xaa\xf8\xdc\x57\x72\x77\xc0\x9e\xa2\xa3\x71\xae\x54\x84\x57\x9f\x4c\xe1\x70\x96\x96\xda\xa1\xcd\xc8\x34\x1b\xce\x43\x14\x27\x9f\x27\xa3\x51\xbc\xb6\x83\x71\x41\x54\xaa\x33\xaa\x98\x81\xb7\xc4\x8a\x3f\x74\xcd\x32\x4a\xf7\xac\x46\xa3\x45\xc9\xac\x1a\x94\x3e\xab\x84\xbb\x10\x4a\x22\xad\x3d\xa9\x87\xbc\x4e\x2a\x08\x7f\x2f\xca\xab\x77\xde\x8d\xed\x5c\xf5\xd6\x95\xdc\xb9\x58\x1d\xf6\x12\x30\x4f\x37\x14\x75\xd7\x0e\x70\x43\x0a\x24\xb4\x81\x5a\xa5\x1b\x15\xe0\x03\x74\xc2\x7e\x4b\x9e\xba\xc1\xb7\x3e\xa2\xbc\x78\xce\xc1\x15\x1f\xbe\xd8\x71\x80\xbd\xcd\x97\x31\x06\x2b\x2a\xac\x55\x98\x22\x20\x03\xcf\x6e\xfa\xe5\x8b\xdc\x75\x85\x8b\xdf\x09\x10\x9c\xf0\x94\x7b\xe5\x1f\xd6\x33\x15\x31\x9b\x2a\xe7\xc7\xfb\xbc\x84\x1d\x4c\x4f\xfa\x07\x2f\x74\x14\xfb\xc1\x83\xd2\xa3\x3b\xb7\x28\x62\x12\x4b\xa4\xb6\xf6\x8c\xd3\xd2\x35\xb1\x01\x51\x35\x5e\xc0\x5d\xcf\xb8\xfc\xc6\x97\xf8\x04\xb2\xd6\xa3\x81\x6f\x2f\xdd\x9d\xca\xec\x16\x0f\xb5\x13\x8b\x9c\x72\xa9\xd6\x82\xa9\xa1\xec\x71\x42\x37\x7b\xd0\xa5\xb6\x62\x8d\x33\x53\x19\x8b\xdd\xd5\xcf\x13\xae\xee\xef\xbe\x48\xcd\x2d\x96\xf8\xd1\x4a\x0e\xb7\xb1\x27\x85\x25\x81\x1e\x9d\x93\x98\x57\x04\x49\x84\x9f\x97\x9e\xbd\x42\x22\x8d\x36\xe6\x94\x05\xbd\xaf\xab\xef\x78\xdd\x28\x13\x22\xe2\x57\xf2\x68\xee\x13\x8a\xb2\xbc\x3b\xce\xa3\xc4\xe6\xf9\x50\x86\xb4\xdd\x18\xc4\xfe\xfd\x6c\xae\xd8\xa5\xe3\x0a\x6f\x56\x91\xb9\x6c\xf5\x74\x34\x88\xf2\xa2\xda\x72\x95\x5b\xa0\x95\x89\xcc\x09\xa4\x3a\x32\xd2\xe6\x67\x64\x8f\x4d\x65\xa0\x8b\x87\xda\x43\x93\x8c\x57\x4c\x58\x8c\x33\x57\x33\x44\x8c\xb9\x4b\x71\xd2\xe3\xc6\xf0\xfc\x1e\x96\x2f\xaa\xb8\x3d\x0d\x6d\x6f\x9c\xd9\x7c\x56\x5d\xfe\x71\xec\x7a\xa9\xd6\x56\x17\x83\xfd\xc3\x44\x4c\x7c\xd2\xf1\x34\x0c\x23\x9b\xad\xa4\x55\x60\x12\x22\xb0\x17\x39\xef\x49\xa0\x6a\xaa\x13\x65\x1e\x2e\x6b\xf2\x2e\x6e\xce\x0a\xdd\xbb\x9f\x43\x25\x86\x1f\x2f\xfa\x3d\x0e\x57\x89\xc9\x17\xef\x01\x14\x76\x7c\xfc\x58\xe4\xda\xfa\xc0\x0c\x67\x49\xed\x14\xd5\xf5\x4b\xb4\x46\x50\x9e\xd7\x58\xa2\xcf\x34\xab\xd1\xb1\xa9\xda\xe4\xc2\x02\x8d\x23\x18\xc8\xde\x72\xdc\x8b\x1c\x85\x4b\x7e\x7c\x52\x9b\x7d\x8e\x0a\xbb\x57\x77\x2b\x5a\xd8\x08\x2c\x15\xdf\x51\xd9\xdc\xbf\x0c\xfc\xb4\xca\x5d\xc4\x8d\x02\x40\xf3\xfc\x6d\x57\x74\x9d\x02\xe4\x95\xd8\xb6\x57\xa1\xbc\x24\x6f\xcf\xb3\x1d\x7f\x82\x6b\x93\xa0\x9c\xae\x5a\xa4\xbf\x7c\x87\xe4\x7a\x4d\xc8\xb3\x7a\xaa\x30\x9d\xd7\x4a\xdf\x5f\xde\xd4\x48\xf1\xa7\x54\x65\xa0\x97\xd9\x75\x2c\x3b\xa4\x15\x27\x14\xaf\xd5\x4d\x85\x04\x9b\x2e\x07\x1c\x9e\x3f\xd0\x1e\x46\x85\xb0\x24\x31\xed\x39\x7b\x69\x21\x41\xf7\x1b\x77\xde\xfc\xa5\x59\x0f\x90\xd8\x43\x7d\x51\x5c\xff\x0f\xe9\x19\xe1\x27\x59\xa4\x03\x8e\x67\xc7\x44\x41\x69\xb2\xf4\x2d\x1b\x16\x39\x51\xac\xaa\x7e\xea\x92\xa7\x48\xa8\x4f\x41\x1c\xac\xab\x3d\x23\x32\x3b\x17\x28\x19\x68\xcc\x56\xc1\xe7\x60\xd9\xc2\x47\x1f\x2b\x3d\x1c\x71\x98\x0e\x77\xd1\xaf\xc8\x74\x0b\xed\x20\xf4\x69\xff\xd7\xd2\xfb\xf5\xeb\xf4\xdc\x05\x35\x5b\x3d\x77\x14\x64\x00\xcd\x95\x31\x19\xef\xfb\x47\x69\x9a\xd9\x0c\xde\x57\xd4\xf3\xaa\xbf\x74\x5a\x6a\xce\xe9\x7d\xd5\xd4\xad\x29\xd2\x04\x24\x76\x0b\x0b\xde\x57\x39\xfa\x9b\xf3\x2a\x9e\xce\x07\xe9\x7a\x94\xf4\x9f\xa4\x5f\xc2\x73\x3b\x57\x3a\xf1\xa1\x8f\xd0\x10\x16\x50\x19\xb9\x4e\x9e\x4f\x54\xe4\x62\x77\x02\xc5\xfa\xc0\x7a\x6e\xcc\x57\x47\x8b\x95\xbf\x0a\x26\x1b\x2e\xea\x2b\x35\xc8\x14\x46\xf6\x5b\xf4\xea\x59\x40\x50\xe3\x7b\x7e\x42\x98\x0b\x94\x8c\x26\x64\x11\xe0\x07\xdf\x77\xf9\xd6\x5b\x66\x18\x61\x32\xbb\xd6\x53\x13\x46\xc0\xed\x0f\xe7\xcd\x37\xdb\x61\x4c\x25\x0a\x6a\x6f\x02\xe4\x7d\x35\xf0\x8d\x29\xae\x88\x0b\xfa\xdc\xf7\x1f\xab\xb0\xad\xd8\x5d\xad\x0f\xb4\xa7\xef\x60\x7d\x00\x80\xf2\x35\x3d\x0e\xc7\xeb\xe5\x54\x20\x6f\x62\x0d\x62\xf3\xdd\xa4\x35\x28\x9d\x9a\xea\xc9\x20\xa8\xbc\x54\x4e\x63\xcc\x5f\x3f\x80\xf9\x6c\x5c\xe0\x29\x7c\x0d\x9f\xf8\x5a\x84\x49\x7a\x79\x1c\xf5\x2c\x69\x85\x6f\xfd\x0c\xeb\x1a\xef\x81\x25\x4f\x84\x53\x67\x5a\x29\x8f\x9e\x43\x17\xa2\xcf\xb2\x8b\x77\x10\xdf\x0d\xde\xf0\xef\x6a\x98\xc9\xce\x8e\xc7\xa0\x9a\x3c\x4f\xc3\x88\xdc\x1a\xf5\x26\xb7\x48\x2a\xfa\xc0\x16\xeb\xe6\xb2\x3a\x5e\xa9\x38\x09\xb6\x1a\xf5\xbe\x8a\x34\xe6\x1f\x47\x1d\x89\x7f\x90\x47\x02\x30\x32\x09\x5e\xc8\x73\xaa\xcb\x1c\xa6\xe3\x24\x8c\xe2\x39\xc5\xbf\x70\x1f\x0b\x53\x6a\x71\x7e\xc5\x32\xcd\x42\x8d\xda\x86\xff\xc5\x57\x02\xec\x9a\xcd\x2a\xcf\x46\xeb\x81\xc5\x91\x54\xc2\xa0\x75\x0b\xbf\xa7\x6a\x62\xdd\xcc\xf4\x62\xbb\x31\xe3\x5b\x38\x3c\xf0\x2a\x33\x7d\x74\x33\x32\x1a\xa2\x38\x9d\x46\x69\x92\xa7\x19\x0b\x0a\x39\x9a\x11\xd7\x70\xbc\x58\xb6\x1b\x9e\x55\x2d\x0c\x40\xcf\x0d\x26\x14\x25\x3b\x3e\x56\xa3\x55\xcc\x51\x82\x26\x3e\x33\x6a\xd2\xaf\x88\xd5\x6b\x39\x32\xf3\xf3\x35\xa7\xb6\x66\x93\x97\x2b\x1f\xca\x60\xcc\xd2\xcb\x99\xec\xea\x28\xad\xba\xff\x91\x8c\x32\x8b\x4c\xb1\x51\x17\x02\x2b\xba\x3c\x57\xee\xf3\xa2\x83\xdf\x0f\x14\x13\xde\x53\x1d\xe5\x64\x9f\x9c\xb4\x9c\xb4\x20\x00\xa6\xb8\xa3\x87\x74\x77\x08\xae\x76\x4f\xd4\xd0\x05\x73\x66\xc0\xb9\xdf\x0b\x28\xe6\x74\xa3\xe3\x55\xc8\x28\x70\x12\x15\xd1\xcc\x74\x3c\x5c\x03\x4a\xb4\x18\x75\x9a\x45\x5a\x8c\xda\xd1\x89\x52\xc9\x7d\x7a\x36\xb6\x81\xc9\x86\x44\x6c\x57\xdd\xb5\x0c\x2a\xf9\x39\xb8\x07\x8a\xfc\x4f\xcb\xf0\x0e\x4d\xf2\x8c\x0f\x63\x8e\x7a\x30\xfe\xcf\xbf\x00\x68\x98\x8b\xfd\x5d\x21\x73\x17\x03\xa5\xf0\x65\x4c\x8e\xe3\xa2\xaa\x03\xaf\x1d\xc4\x3e\x7b\xc3\xe9\x53\x57\x4f\xce\x15\x2c\x17\x16\x9d\x7d\x56\x98\x18\x44\x19\xc8\x2d\x9e\x50\x45\x80\x67\xf6\x76\x1a\x10\xc7\xf9\x5f\x88\xb9\xf1\x87\xbd\xc2\x03\x27\x58\xe4\x77\x4b\x2d\x8c\xa2\xdb\x14\xc4\x86\x9e\x66\x88\x9d\xb0\x30\xf0\x88\xf8\xd8\xed\xb8\x35\xdb\xb7\x45\x95\xe0\xd1\x0e\xc0\x2e\xdb\x41\xd1\x2c\x1f\x4f\x6a\x0c\xcc\x49\xb1\x4b\x0b\x45\x02\x74\x03\x47\xf6\x19\x3d\x76\xd6\xa4\x56\x94\xf9\x3f\x09\x3c\xc7\x0d\x47\x7e\xfc\xe1\x29\x3b\xf8\x4a\xbb\x9b\x66\x59\xba\x2e\x41\x1f\xa7\xba\x58\x5e\x92\xf7\xfa\x5d\x3f\x1c\xc7\x2b\x69\x86\xbd\xab\x0a\xda\x8b\x0e\xf8\xf1\x0d\x45\x3e\xb9\x66\x93\x22\x5a\xb3\xa4\x8f\x44\x5f\x0e\x00\xcd\x1d\x05\xa6\xb9\xa3\x94\xc0\xc2\x71\x5c\x44\x6b\xc6\x35\x17\x11\xfc\x9c\x55\x70\x9d\xb3\x35\x96\xe5\x71\x2f\x4a\xe7\x54\xa9\xe7\x04\x82\x0f\x7c\xf1\x11\xcd\xa3\x7a\x89\x9e\x07\xff\x43\xa0\x92\xce\x0f\xa6\x5a\x09\x87\xe7\xdf\x68\xf7\xc6\x05\xea\xa2\xd2\x77\xf4\x68\xc1\x73\xcd\xb0\xf6\x81\x35\x78\x26\xa2\x08\xe0\x13\xa4\xcf\x55\xf9\x23\x1c\x67\x99\x4d\xc2\xc8\xe6\x53\x15\x4e\x78\x45\xc6\x2e\x23\x2d\xbc\xac\x86\x0b\xc2\x94\x9e\x0b\x4a\xe3\x52\xec\xa6\x1b\x91\x6a\xf7\xf6\xa2\x47\x75\x23\xa4\xba\xdd\xf3\xb4\x25\xd8\x26\x78\xa2\x7c\xac\xb2\x25\x0d\xdd\x5e\x9e\xe7\xed\x08\x98\x20\x1f\x4f\x0d\x10\xed\x5b\x02\xcd\x62\x2f\xea\x32\xa2\xc1\x51\x31\x29\x3d\xef\xed\x6b\x8e\x88\x2b\xa3\x91\x6b\x50\x20\x2f\xf8\x7e\xa0\x64\x06\xbe\xef\xaa\x7d\xe3\x51\x3f\x33\x3d\x90\x4d\xa1\xc6\x89\xa9\x53\xc7\xa7\xe1\x02\xa7\x5b\xca\xf0\x98\xa8\x78\x52\x3d\x9e\x0b\xaa\xa0\xf0\xcb\x7b\x3a\x0a\xa2\xba\x73\xe2\xcb\x48\x97\x14\xc8\xb4\x45\x7a\xac\x88\xb3\x59\xa4\xd4\x29\xb3\x1d\x16\xf4\xe1\x39\xda\x8b\x92\xbd\x34\x42\x5d\xc2\x22\x0a\x1f\x3b\x06\x2a\xd5\x81\x9c\x31\xde\x4b\x4b\x3a\xf6\x76\x7a\x5c\xe5\x1e\x2d\xb1\xf7\x6c\xf5\xfb\xd8\xce\x3f\x0c\x3c\x88\x84\x09\x4a\x71\xc5\xdf\xc3\xfd\xa2\x41\x7a\x3b\x50\xfc\xc2\x77\x15\xb1\xc9\x4e\x52\xb6\x64\x11\x65\xba\x30\x7c\xed\x4d\x25\xf6\x7d\x8f\x5a\x51\xb8\xc5\x47\x25\x91\x23\x3b\x2d\x2c\xdf\x8d\xbf\x84\x75\x8b\x60\x8b\xb9\x09\x59\xb8\x5e\xc7\xda\xd6\xae\x46\x49\x1f\x15\x3d\xb4\x34\x81\xcb\x40\x36\xc7\x5d\x19\x3e\xc1\x04\x10\xff\x95\x7b\x52\x85\xc9\x0a\x6e\xca\xc3\xce\x5f\x0f\x7c\xc4\x76\xbd\x7c\xca\x2d\x80\x55\x2c\x2d\x87\x91\x73\x40\xde\x4d\x35\x1d\x14\x25\xab\x28\x44\x0a\x87\xb2\x1f\x67\xbf\xa0\x17\xd3\x68\xc0\xa8\x1a\xf9\x37\xba\x03\x2c\xef\x2f\x14\x69\x07\x84\x1d\x84\x3f\xb4\xc6\xce\xac\x44\x7b\xc6\x59\xdf\xa6\x89\xf6\x13\x17\xf5\x88\xea\x45\x85\x42\x79\xc7\x8c\x56\x6c\x4c\xec\x97\xa8\xf2\xe2\x79\x09\x76\x9d\x5e\xb2\x10\xd6\xf8\xe9\x8e\xa8\xc8\xf7\x7a\xde\xae\x1d\x80\xc5\x8a\x2c\xbf\xb7\x84\x1f\x93\xbb\x74\x1a\x9d\x12\x46\xfd\x27\xdf\x40\x59\x0e\x65\xd6\x47\xa5\x12\xf4\x86\x03\xc7\xe2\xe1\xca\x12\x50\xc6\x1f\x22\xb2\x11\x84\xa6\xca\x40\x76\x60\xde\x1b\x0b\x6b\x13\xb1\x89\x2c\x6b\x3c\x53\xa6\xdb\xc2\x20\x10\xea\xd2\xd7\x11\xd0\xe0\x92\x99\x61\x04\x0f\xe7\xeb\xc6\x91\x80\xae\xc9\x65\xff\xc8\xf4\x36\x5d\x82\x8c\x75\x4f\xa9\x65\x2d\x1f\xa0\x82\x4b\xbf\x1f\x0b\x19\x0e\x22\x34\x56\xc3\xe1\x13\x25\xfb\xb2\x6e\x8a\x70\xd0\x4b\x19\x84\x80\x97\x7a\x15\x9e\x8f\x4f\x6a\xb2\x09\x26\x7b\x87\xbb\xa3\x08\xca\xee\x6b\x3e\x1f\xe6\x19\x81\xcd\xcd\x32\x93\xf4\x69\x40\x14\xd7\x81\x07\xf5\x49\xa0\xb8\x41\xa6\xbb\xb5\xd5\x3d\x0f\xd3\xa4\xb0\xfc\x23\xa2\x27\xa7\xe2\xb8\x0f\x14\x87\x6c\x91\xae\x27\xf9\x5c\x4b\x4d\xaf\xab\xd2\xe7\x75\xcd\xcb\xb6\x49\xe5\x23\x99\x6b\xf7\xb3\x6b\x3b\x3a\x9e\x01\x26\xb4\x31\xb3\x3f\x61\x85\xfc\x14\xad\x06\x3e\xd1\x34\xaa\x83\x28\x4c\x57\x56\xe8\xb5\x08\x54\x43\xc1\x36\x54\x8f\x38\xb3\x2b\x69\x36\xcc\x67\xab\x5c\xd7\x11\x78\x48\xa9\xb4\x8d\x81\x3b\x16\xea\x57\x75\x84\x6b\x6a\x4e\x8f\xb5\x97\x66\x3c\x76\x69\x17\x8d\x1b\x88\x9a\xa8\x37\x6e\x7b\x3a\x4a\x87\xd0\x66\x59\xd4\x8d\xed\x4c\x65\xe3\x58\xf4\x15\xc6\xd2\xc1\x4c\xf6\x79\x80\xe9\xf6\xea\xa4\xd4\xe0\x46\x59\xba\x16\x25\x8c\xa7\x50\x53\x10\x6e\x24\x42\x11\x0f\x84\x26\xa6\xd1\xf9\xca\xc7\x2e\x1e\xe2\xaa\xcb\x25\x25\x0d\xad\xc9\x9e\x88\x6b\xe7\x79\x55\xfb\x3a\x8f\x08\xc7\xe1\xf9\x9c\xda\x2b\xb3\x52\x49\x4d\x55\x25\xe6\xbb\x3b\xbe\x89\xff\x29\x76\x29\x56\xe1\x55\xcc\x03\xf1\x09\x9c\x07\x36\xf3\x17\xfa\xae\x15\x91\x15\xdb\x67\x2e\xef\x4d\x3c\x38\xfd\x2e\x15\x29\x04\x3e\x46\xfb\xb8\x06\x76\x40\x46\xfb\x99\xb2\x50\xd9\x38\x79\xba\xba\x2e\xd6\x5f\x27\x43\x24\xb3\xae\x7e\x18\xf2\xe9\x8e\x1e\x2e\xc4\x23\x75\x63\xbd\x8e\x2d\xec\x98\xd2\xef\x07\xf7\x24\x8c\xc8\xdd\xd2\x2f\xa7\x3f\x42\xed\x45\x66\x6b\xab\xfb\x63\x6d\xe8\xa9\xb8\x69\x79\x7e\xb9\xdd\x8b\xf2\x30\x1a\xc5\xc2\xf9\x20\x4c\x7c\xbe\x93\x78\x56\xe1\x4c\x7b\x36\x8f\xfa\x89\xcd\xe6\xb4\xf4\x0f\x3d\x04\x3e\x51\x55\xc2\x13\x0a\x03\xf8\xa9\x4e\xf7\x7f\xd4\x24\xb4\x6d\xc2\x6f\x8f\xa3\xcc\x82\xef\x0b\x05\xa5\x4d\xcd\x6b\x74\xaf\xe6\x6e\x9a\x18\x5b\x4c\x18\xca\x4d\xe8\x3a\x1e\x1f\xab\xe2\x4e\x66\x47\x96\xe4\x38\xdf\xd8\x82\x82\xd5\xd6\xa9\xa6\x36\xc8\xc0\xc4\x85\x26\x49\x38\xa1\xe0\x19\x27\xdc\x68\x69\x3e\x8a\x56\x79\xfe\x0f\xe1\xc8\x79\x1d\x9b\x68\x19\x42\x61\x09\xa4\xd0\xd1\x01\xb9\xd5\xea\x9b\x2e\xaa\x2e\x0a\xc1\xc9\xe1\xf9\x2a\x13\xa4\xc2\x4b\xf0\xa4\xf4\x21\x11\xb7\x63\xbd\x7e\x8c\x15\xc3\x27\xae\x68\xd4\xcd\xc6\xf9\xa0\x6b\x42\x19\x34\x97\xf6\x57\x4b\x09\xb1\xd4\x25\x70\x86\x2d\x1f\xb4\x71\xb9\x54\xfc\xf6\x4b\xce\x02\x85\x36\x29\x32\x13\x47\xef\xb0\x2e\x88\x74\x44\xe8\xce\x11\xd0\x63\x30\x0b\x81\xeb\xe9\xb2\xd6\xe6\x2d\x2c\x51\x25\x56\x3b\x92\x77\x77\xa0\x91\xbb\xd3\x59\x1b\xf3\x0c\xd5\xf8\x08\xbf\x2e\x55\x3b\xf3\x6b\x27\x97\xdb\x4b\xfb\x43\xa3\x91\xac\x27\x14\xb0\xe7\x56\x50\xa3\x5a\x6d\x80\x7e\xe5\xa3\x8c\x99\x4c\x10\x82\x9c\x55\x72\xf8\x67\x55\xbb\x76\xdd\x9a\x55\x9b\xcc\xb4\x16\x16\x3c\x72\xd1\xa9\x2c\x62\x72\x0d\xd1\xdc\xf1\x1a\x6e\xd8\xb0\x74\x11\x87\xe3\x1d\x9f\x6b\xed\x9c\x02\xe6\x10\x4c\x20\x5f\x95\x9a\x9d\x46\x9f\xb2\x12\x63\xa9\xd5\xec\x1a\xb4\x06\xdb\x7d\x6b\xa0\xa1\xc1\x63\x46\xf4\x61\xd6\x95\x81\xb5\x12\x74\x8b\xf4\x10\x7b\xd9\xb8\x3f\xe7\x8b\x3d\x75\x71\x9b\x0f\x95\x82\x2a\xe6\xa7\x91\x3e\xb0\x03\x40\x01\xe1\xea\x94\x03\x7f\x7d\xf1\x50\x3b\x8d\x89\x74\xc1\xcb\xb6\x9f\xd0\xca\xeb\x27\x54\x6f\x28\x34\x49\x68\xb3\x5d\x8a\x32\x95\xb5\x24\x35\x6d\xbf\xfb\x87\xca\x43\xc0\xfc\x5e\xab\xf5\xf8\x3c\x9d\xfd\xb5\x06\xec\xec\x81\x76\x61\x63\x3b\x1a\xa4\x6c\x2e\x1a\x25\x89\x74\x9d\xac\x9f\x26\xa4\xbd\x88\xb9\xd1\x63\x41\xeb\xd0\x6b\x6c\x84\x77\xa9\x31\x87\x19\x3d\xc8\x7f\x41\x37\xae\x2f\x53\x69\x5c\x8a\x35\x4d\x82\x9f\xb9\x89\x4d\x06\xea\x77\x7c\x19\x07\xbc\x08\x2c\x7f\x57\xa1\x59\x4e\x36\xd8\x89\xa5\xb6\xe9\xf5\x64\x7f\x20\x10\xfc\x92\x9e\x07\x1f\x97\x8a\x8e\xfd\x5b\x16\x2a\xd1\x4c\xf1\x81\x9b\x16\xbe\x8f\xed\xbd\xb2\x7d\x4b\x80\x19\x57\xdb\x5d\xc6\x9c\x9d\x90\x5f\xf5\x63\x02\x74\xf7\x80\x3c\x10\x08\x89\x5e\x98\xce\x62\xf9\xd8\x4b\x42\x65\xa6\x3b\xe7\x4b\xe9\x33\x13\x9f\xad\x7d\xae\x5b\x54\x0f\xa9\x51\x83\xa7\xf7\x5b\xa5\x92\xa4\xbc\xe6\xf4\x3b\xb9\xbc\xbd\x9b\xfe\x51\x64\x45\x7d\x5a\x7e\x0d\x49\x2d\xcb\x6d\x95\x1a\xe2\x53\x7a\x7f\x71\x5e\x69\xff\x7d\xfe\xc7\x3b\xca\xf9\x7c\xad\x48\x01\xd7\xab\x90\x70\xc6\xeb\x89\x9d\x54\x90\xab\x93\xaa\xc1\x7a\xa3\x01\x27\xda\x5e\x37\x91\x1f\xc3\x63\x89\x05\x3d\xc2\xdd\xa8\xbf\x36\x20\x56\xfc\x0d\xe5\x9e\xaf\x28\xf7\x3c\x9d\x8b\x23\x62\x5e\x93\x68\x1f\xe6\x6e\x06\xf1\x05\x9f\x4c\x51\x9d\xef\xdf\x0f\xe0\xa7\x70\xdd\x39\x5d\x25\x25\x0c\xa9\x77\x44\x11\x6f\xbc\x50\xbd\x15\x44\xaa\x27\xd4\xa0\x03\x9a\x1d\x42\xb8\x4a\xf7\x26\xc0\x95\x96\x53\x02\xbc\xe1\x91\xfa\xbb\xbf\x39\xa1\xa8\x0f\x81\xc2\x3d\x64\x4d\x02\x55\xa2\x77\x80\xa4\xe9\x29\x02\x11\x30\x11\x23\x5e\x21\xd6\xca\x5d\xbc\x5c\x18\xe9\x27\x90\x82\x31\xb5\x76\xa0\xe4\x53\x8e\xa3\x25\x80\x74\x67\x07\x2a\xb2\x48\x1f\xa0\xaf\x8c\xf6\xcc\x4d\xea\xa5\x4a\x62\xa5\xb0\xae\xc3\x51\x9c\x6e\x58\x9b\x3f\xa9\xc6\x7f\x3e\x09\x94\x11\xbd\xa1\x56\x69\x8b\xaa\xcf\xd8\xc8\xb7\x68\xed\xcb\xc8\xab\x62\x78\x01\xb2\x40\xa6\x8a\x7c\xbb\xeb\x96\x6e\x4a\x69\xd7\x99\x8f\xac\x71\x4c\x51\x82\xdf\x50\x58\x8e\x1a\xa7\x54\x6e\x05\xd0\xaf\xeb\xd1\x7c\xac\x32\x74\x93\x14\x83\xcc\xbc\xdd\xd2\x9d\x7e\xc5\x13\x39\xa9\xc2\x8d\x51\x66\x57\xfe\x62\x7b\xed\xe7\x28\xd0\x63\xe9\x73\xc4\xdd\x48\xae\x77\x68\xd4\x0a\x17\x90\x98\xbd\x5b\x31\x79\xbf\x04\x38\x8d\x14\xa9\x3c\x57\xcf\x73\x8a\x44\xfd\x36\xb8\x12\x6b\x38\x1b\x44\x17\xcf\x21\x22\x47\xa4\xff\x67\x27\xbe\x44\xf6\x09\xe5\x71\x78\xe3\x1f\xc0\x3c\xb8\xd5\xeb\xdc\xc3\x59\x0a\x90\xe1\x1e\x76\x77\x74\xba\xfa\xf4\x84\x96\x82\xe3\xeb\xac\x5e\x2f\xae\xeb\x87\xf0\x2f\x0e\xbc\xe1\x00\xd1\x3b\x49\xeb\x4a\x48\xd0\x69\xc1\xba\x21\x08\x57\x94\xbf\xe0\x06\xa8\x88\xc3\x3f\x8b\xf2\x34\x41\x60\x82\xdf\x3d\xa6\x20\x14\x00\xcb\x0b\x7f\xef\xb6\x06\xe1\x9b\x6f\xb6\xf7\xef\xdf\xdb\xd2\x9a\x1c\xd5\xd3\xe6\x99\x1e\x4a\x47\x90\x4e\xf1\x16\x47\x8d\xe4\x11\x09\xca\x61\xb5\x33\xbd\x1f\xbc\x17\x0f\xb0\xe1\x87\x7f\x40\xcb\x1d\x09\x17\xd3\x54\xf2\x09\xb5\x1a\xd0\xcf\x46\x1d\xc5\xa5\x55\xd5\x5b\xc0\x66\x39\x45\x4b\x1e\x35\x01\xa1\x76\xc7\xeb\x45\x1a\x8b\xe0\xec\x0e\x76\x09\xbe\x6b\x37\x49\xed\xe0\x4a\xde\x6b\x82\x0c\xf6\x09\x3c\xe4\x6c\xa4\xeb\x52\xbb\x4e\xff\x39\x95\xec\x87\x69\xc6\xa8\x5e\x86\x10\x05\x35\xd5\x15\x5f\x52\x1e\x27\xeb\x69\x56\x0c\x20\x4e\x89\xf5\x04\x18\x14\x1f\x37\xcd\xcf\xb3\xa0\x14\xbe\x9f\x07\xc6\xb0\x35\x65\x7a\xac\xc6\x8d\x6f\xb8\xa8\xe1\x54\x62\x3c\x27\xe6\xcd\xa9\x91\xec\x37\xdf\x6c\x8f\xf2\x8d\x38\x8e\xc6\x43\x05\xd5\x3e\x17\x28\xa8\xf6\x74\x7c\xba\x6f\xa9\x6d\x86\x51\x66\x34\x8a\x7f\xa2\x29\xc3\x27\x2e\x0c\x8e\x23\x23\x28\x45\x56\xfe\xa6\xbb\x15\x15\xf0\xa7\xdd\x13\xec\x23\x18\x70\x03\x9c\x7e\x7e\x65\xd3\x39\x57\x13\x65\x45\xc4\xbc\x30\x88\x41\xde\x55\x95\xdd\x77\x5d\x65\xa2\xca\x33\x56\x22\x2e\xc0\x4b\x41\xf7\x6c\xa0\x86\x42\xce\x36\xcd\x91\xe4\xa9\xd7\x6c\x60\x16\x32\xca\x1d\x84\x91\xac\x21\x59\x8c\x4d\xd2\x1b\x9a\x6c\xb5\xe5\xfb\xa1\xef\x69\x60\xef\xf4\xca\x7a\x85\xfa\x03\xa3\x28\x23\x12\x39\xcf\x6e\xa0\x71\xc2\xd3\xe4\x64\x4b\x4b\x74\x53\x71\xda\xcf\x15\x2b\xce\x45\xcd\x34\x73\xd1\xb5\x0d\xc3\xcc\x9a\x61\x54\x85\xb9\x95\x3d\x41\x4b\xef\x86\xea\x15\xde\xf0\x62\x52\x26\x2b\x12\x1e\x6a\x15\x3a\x1e\x35\xc1\x71\xbb\x81\x68\xb3\x6b\x57\xd2\xcc\x52\xc2\x21\xd4\xb3\xde\x1e\x5d\xa5\x0d\x8a\xb5\xb6\xa5\x21\xb5\x26\x33\x49\x1a\x31\x21\x22\xbb\x41\x35\x32\x7f\x3c\x78\x41\xa9\x55\x76\xf3\xc2\x48\x65\xa7\x49\x10\xf2\xcf\x3f\x8e\x69\x64\x34\xca\xd2\x51\x06\x90\x80\x0c\x4a\xa0\x86\xca\xc4\x7f\x7c\xd2\x10\x10\x1d\x6c\xf7\x8d\xcf\xec\x44\x4d\x4f\x81\xb0\xce\x2b\xca\x87\x7e\x1a\xf7\xf2\x61\x54\x00\x64\x2e\x8d\x7e\x2f\xc0\x72\xb6\x96\xca\xae\x98\xec\xe9\xca\x3c\xc1\x0b\xff\x33\x45\xee\xc8\xee\xca\x51\x50\x7a\xdc\xcd\x35\xea\x9d\xa1\x9d\x8c\x6f\x86\xf1\x67\x5c\x18\x4f\x0f\x07\x50\x37\x14\xe8\xa9\xbf\x98\xa7\x27\x8a\x2f\x9d\x47\xe7\x85\xae\xd9\x47\xe0\x49\xba\x66\x1e\x5f\x3e\xfb\xc6\xb6\xd9\x87\xe5\x03\x7f\xae\x7a\x4e\x04\x81\xd8\x82\x2c\xd1\xd6\xd5\x52\x75\xcd\x55\x68\x0d\x58\xa9\x90\xe1\x69\x3d\x95\x6c\x48\x25\x38\xf7\x80\x5f\xf7\x27\xf5\x5a\x6e\x6c\x9f\x69\x39\x27\xcd\xfc\x81\x9a\x59\x4b\xbe\x9c\x6e\x14\x08\xab\xdf\xc3\x0e\xe7\x68\x58\x25\xa8\xb7\x28\xeb\x81\x13\x78\x57\x97\x61\x21\x61\x83\x42\xd9\x5d\x20\x08\x58\x04\x3c\xf0\x6d\xa1\x3d\x13\xd5\x73\x41\x29\x14\x76\xfd\xfb\xc1\x73\x0a\x92\x95\x14\x83\xfc\x09\xfa\x4b\x9e\x07\x81\x77\x64\x1f\x4b\xef\x10\x40\xc0\xab\x4a\x61\xe7\x42\x9d\x6f\xb1\xba\x00\x04\x96\xd0\xbe\x72\x8d\x54\xe7\xa0\x77\x4f\xb6\xaf\xdd\x43\xaf\xb5\x33\x5b\x44\x99\x9d\x96\x86\xc1\x32\xa1\xcc\x70\xeb\xb6\xcb\x76\x36\xac\xc9\x76\xf9\xb1\xbb\x16\x5a\xf3\x0c\x16\xe2\x3c\xdb\xb1\x5a\x2c\xcf\xd7\xd0\x5f\x54\x98\xfe\xcf\x7f\xae\x53\xeb\x81\xf8\x82\x7d\xd7\x00\xc0\x8d\x7d\xae\xa0\x6e\x0e\xf7\xa6\xc0\x22\xeb\xa6\x0f\xff\xda\x72\xac\x2c\xdc\x35\xe1\x13\x5d\xfe\x8e\xcd\x98\xb3\x08\x11\x2c\xa7\xab\x96\x69\xe5\xc6\x61\x56\x8a\x76\x78\xb4\xc1\x09\x1c\xbb\x69\xe2\x69\xc1\x09\x5a\xe2\x90\xec\x80\x65\xe6\x46\x24\x7d\x48\x9a\x92\x0e\x5b\x9c\x76\x53\x1e\x5f\xd4\xe2\x5c\xa8\xe8\xff\x7a\xa9\xf8\x9e\xef\xd4\x08\xda\xb6\x57\x47\x5e\x69\xaf\x44\x4e\xe2\x58\x34\xd5\xd4\xf4\xde\xe5\xa9\x54\x98\x6a\x94\x2c\xc7\x44\x3a\x9c\x8a\x74\x5b\xd1\x96\x82\xf2\x41\xee\x55\x85\x80\xc3\x71\x12\xe5\x45\x3e\xab\x46\x1a\xee\x68\xfe\x8b\xff\xf3\xe5\x8e\x12\x46\x7b\x72\xa2\x67\xee\x74\x6f\x3c\x59\xb3\x09\x46\xcc\x84\x44\x15\x78\x0a\x3e\x9e\x5a\xa8\x4b\x4b\xed\xc2\xc4\x44\x4c\xa9\x36\xed\x95\xda\xd8\x94\xa7\x34\xb3\x6f\x9b\x7e\xdf\x56\xc9\x3e\xfe\x1a\x99\x10\x0f\xac\xf3\x89\x9a\x0a\xc9\xd3\x78\x4d\x20\x0c\x88\x8a\x6e\x28\x7e\xb5\x1b\x6a\x8d\x56\xd9\x25\x98\x41\x5d\xf5\xf3\x13\x8a\x31\x25\x95\x52\x2c\xda\x59\x8c\xd5\xd3\xa8\xb3\x38\x05\x62\x59\x6c\x8f\xe2\x71\x3e\xe7\xbb\xd3\x67\x95\x50\x1e\x20\xcf\x4c\xcc\x4a\xe4\x4b\xd8\x63\x1f\xd7\x58\xdc\x3d\x6a\x21\x1e\x77\xb3\x28\x34\x49\x01\x49\x4e\xc4\xb9\xc8\xb2\x60\x52\x40\x89\x86\xa2\x1b\x47\xb6\x7c\x52\x2a\xe5\xee\x8b\x53\x97\x49\xf6\x22\x86\x32\xad\x63\x18\xf2\x6c\x43\x0d\xe5\xbb\x03\x6d\x13\xf5\x90\x31\xa0\x43\x73\xa9\x06\x69\x57\x90\xbb\xab\x0d\x74\x30\x6f\xb4\x8b\x2c\x1d\x77\x63\x2e\xda\x20\x51\xbb\x11\x28\x68\xca\xb4\x6c\xc6\xfe\xfd\x6d\x3b\x4c\x95\x22\x14\x0f\x99\xa8\x48\x59\x2b\xee\x15\xf9\x46\x4b\x0f\x19\x91\x81\x95\x81\xa3\xe9\xa9\xa7\xb6\x19\x5a\x7a\xb6\x2d\x5f\x98\xe1\x49\x4a\x3e\x69\x80\x15\x2f\x92\x7a\x1a\x2f\xdd\xa6\x09\xfc\x3d\x7e\xa2\x72\xcd\xce\xaa\xfe\x2d\xe6\x67\x1c\x35\xc4\x3e\xb1\x25\xc7\xe9\x05\xc2\xa7\xfd\x58\x51\x00\x15\x03\x9b\x66\xd5\x0e\x6d\xa9\x31\x32\x46\xfc\xf3\xc9\xd4\xde\x5a\x9e\x6f\x87\x69\x1c\xdb\xb0\x68\x79\xa0\xc4\x29\x44\x14\xc2\xd9\xf4\x9c\xaf\x9a\x47\x79\xb4\x06\xf8\xaa\x43\x20\x3b\x06\xa6\x73\x4d\x7c\x05\xdf\xfa\x8f\xff\xd3\x5f\xa0\xbd\x25\xac\x31\x95\x7f\xe7\xe3\xa9\x19\x7b\x12\x22\x4a\x8a\xcc\x84\xbe\xc4\x84\xf5\xb1\xa9\xf0\xe5\x9b\x0d\xf4\x50\xaf\xb6\x8b\xcc\xf4\xdc\x87\xa4\x2d\x5b\x7d\x48\xba\xb2\x6e\x70\xd5\x66\x79\xb5\x3c\x62\x9a\xbc\x58\xd4\xa5\xd3\x83\x9e\x42\xd3\x15\xc7\x9e\x20\xd3\x24\x02\x32\x33\x4b\x4a\x6f\xd3\x97\x20\x06\xb6\xd7\xa7\xe9\x78\x87\xa0\x06\x2a\x99\x8f\x95\xef\x1a\x86\x3d\x9b\x0d\x85\xf1\x13\x43\x28\x17\xd5\x74\xca\x45\x85\x77\x18\x98\x78\x65\x97\x8f\x5f\x77\x74\xbc\x3b\xb8\x81\x08\xb3\x86\xba\xe3\x13\xda\x93\x28\x19\x7c\x8a\xeb\xc5\xde\xfb\xb2\x01\x54\x7b\x80\x66\xd6\x6c\xdc\xf2\x9a\xc8\xac\xad\x24\x95\x39\x47\x27\x3f\x34\x71\x6c\xf3\x62\x86\x2a\x28\x28\xf5\xcd\x75\x7c\x8a\x0c\x44\x31\xd2\xfb\xf3\xca\xda\x67\x76\x64\x31\xa3\xe0\xa9\x83\xfe\x20\xf0\x0b\xe2\x0f\x1a\xa5\x2d\xd2\x7c\x68\x0b\x9e\xcc\xc5\xad\xdc\x50\x43\xd9\x37\x9a\x68\xd7\xd6\xd3\x4c\xa4\x98\x58\x7b\x00\x45\x77\x11\x22\xd8\xfe\x33\xcb\xf3\xcb\xed\x95\x34\x1c\xe7\x75\x49\x5c\x8c\x9f\xf2\x71\xf0\xb2\x22\x5d\x4a\xa2\x91\x63\x51\x77\x94\x56\x77\x15\xa5\xd5\xdd\x72\xbb\x20\xc9\x2b\xed\x74\x65\x65\xb7\x12\xae\xba\x48\x24\xdb\x4e\x6c\xb5\x5a\x02\x4e\x71\x52\x9c\xca\xdc\x9f\xa6\x62\x1e\x62\xe3\x3d\x93\x9a\x70\x5b\x15\xf3\x31\x2f\xd3\xd4\xbc\xd8\x2b\xed\x78\x9c\x0f\xc8\xa9\xcb\x24\x5f\xf5\x56\x79\x4e\x94\x6e\x4b\x14\x10\x7d\x7e\xf5\xd6\xb8\x17\x85\x11\xdb\x4a\x94\x34\x7e\x97\x9e\x34\x1f\xd7\x07\x48\xfa\x0c\xb4\x74\x12\x0e\x55\x9a\x88\x98\xeb\x16\xfa\xd3\x68\x19\x7d\xe6\xc7\x5a\xa3\xd8\x0d\x02\x81\xb8\xe2\x9a\x02\x15\x80\xa8\x13\xed\x9c\x69\xd3\x44\xa4\x04\xd1\x9a\x4d\x58\xe6\x96\x9b\xea\x88\xe8\xa5\xc3\xee\x89\x29\x73\x5b\x90\x7e\x28\xed\xe0\x0f\xf7\x12\x62\x56\x0c\x8d\x1f\x76\xfb\xeb\xe0\x3c\x17\x8e\x7c\x8f\x89\xfd\x5a\x45\x78\x1f\xc2\x35\x21\x3d\xba\x13\xa8\xb1\xf2\x47\xaa\x42\x39\x34\x19\xcd\xf6\x22\x02\x12\xe8\x34\x5d\xaa\x90\x97\x28\x96\xb4\x2c\x0a\x6d\x6f\x57\x75\x51\xe8\x15\x70\x74\xeb\xc8\xf8\xdd\x74\x29\x9a\xce\xa8\x2f\x61\x34\x1c\xb5\xfd\xd3\x0a\x75\x7d\x52\x59\x7d\x36\xdf\xdc\x77\xd6\xac\x5d\x35\xdd\x79\x11\x57\x52\xb9\x75\x9a\xe7\x51\x97\x29\x48\x05\x97\xe8\x53\xb1\x2d\xca\x30\xf0\x70\x2e\x2b\x32\x34\x64\x51\xfc\xdf\x55\x43\xb1\xb2\x0f\x1b\xf9\xac\xd2\x5a\xfd\x54\xb1\xf5\xa2\x41\xca\xff\xbd\x54\x54\x72\x9b\x9a\xc5\x27\x5d\x37\x59\xef\x09\x55\x97\x3d\x1e\x78\x36\x90\xeb\x4a\xb1\xe0\x5d\x15\xfc\x00\xff\xc6\xc3\x37\x74\xd1\x70\xf4\xdc\x75\x83\xcd\x78\x10\xa8\x70\xf3\x66\x9d\x8e\x7d\x88\xa2\x9a\x68\x51\xf9\xd6\xd2\xdf\x6f\x1c\x5a\x1f\xc5\xd6\x38\xab\x81\x05\xff\xec\xc4\xf7\x4b\x9f\xed\x34\xc4\xdd\xfd\x41\x9a\x17\xdd\x71\xee\x25\xb2\x65\x0e\xc9\x17\xaa\xaf\x2b\x42\x95\xa3\xe5\x0b\xf5\x2c\xfa\x95\xf6\xbe\xa5\x67\x3d\xd9\x03\x17\x00\x44\x2a\x88\xb6\x84\xd0\xbb\xd0\x5d\x63\xdb\x5f\x52\x65\x95\x9b\x7a\x14\x79\x67\x4d\xdf\x74\xb3\x54\xeb\xfd\x1e\x95\x5d\xe1\xd2\xb7\xd4\x3a\x7a\x80\xe8\x10\xa6\x91\xa7\x13\x50\xb4\x3b\x10\x78\x68\xcb\xdf\x29\x7d\xef\xe5\xbb\xc1\x53\xde\x43\xa2\x07\x8c\x1c\x15\x18\x5a\xf8\x5a\xd6\x7c\x15\x4e\x83\x86\x80\x6e\x14\x85\xab\x8a\xfa\xd1\x89\x6d\x2e\xf9\xe9\x31\x8f\x62\x5a\x37\xf1\x6a\x3a\x46\xe7\x8e\x29\x53\xe9\xea\x84\x3e\xb5\x61\xb0\xc4\x24\x76\x18\x19\x36\x6d\x9a\x92\xc1\x69\xdc\x3a\xda\xb5\xf7\xd5\xf6\xe9\x45\xf9\x68\x5c\xd8\x1e\x45\xd9\x28\xb7\x9f\xd1\x54\x5f\x27\x4b\xcd\x02\xc6\x9a\xd1\x58\x57\xff\x43\x6d\x5b\xfb\x16\xcd\xd0\x66\xe1\xa0\x8a\xdc\x69\x2b\xbb\x54\x7a\x9f\x54\xb3\x6e\x2b\xb2\xb9\x4d\xcf\x6e\x36\x8c\xfa\x50\x41\x9d\xf1\xad\xe0\xaf\x15\x72\x84\xeb\x38\x32\xc2\xd7\x84\xa1\x1e\xa6\x79\x31\x4b\x28\x3e\xac\x8f\xf7\x01\x89\xc1\x5b\x79\x14\xa8\x6a\xd3\x59\x8a\xe0\x24\x29\x7d\xb6\x1e\x02\x69\x95\x6c\x36\x70\x7c\xd2\x10\xb3\xb5\x07\x26\xeb\x85\x69\x66\x67\x7d\x52\xf0\x10\x3f\x05\x18\x10\x70\x60\xf0\x96\x1f\xc0\xd9\x08\x9e\xc8\xbf\x86\xbe\x19\x76\xa9\x72\xe0\x9d\xdd\xcf\xe0\x59\x65\xca\xa4\x69\x0f\xf7\x6d\xe2\x94\x2b\x6b\x22\xb6\xd2\x76\xdb\xbe\x0e\x29\xc5\x5f\x8d\x92\x95\x34\x5e\xc5\x4a\xc1\x75\x5d\xad\x49\x8d\x7b\x90\xd4\xcf\x6a\x9e\xd3\x8e\xbe\xd5\xaa\x0d\x38\xd0\x6f\x89\x86\xfe\xf6\x30\x98\x12\x2d\x9a\x30\x2d\xa4\x99\x09\x8f\x8e\x06\x1d\x1f\xab\xd6\x5e\x61\xb3\x8c\x22\x7f\x3c\x7f\x80\x00\x01\x0c\x92\x93\xc0\x33\x73\xbf\x65\x86\x96\x0b\x4e\x28\x13\x7d\x14\x28\xf0\x3d\xd8\xc8\x64\x6c\x7a\x5a\xf5\x04\x8e\xf7\x6b\xba\x12\x79\x72\xd5\x23\x40\xb3\xef\x86\xf2\xe8\xa7\xa7\xe6\x56\x17\x0f\xb5\xe3\xa8\x18\xa4\x45\x16\x8d\x84\x12\x91\xa1\x2c\xc0\xba\x09\xae\xa5\xc6\xe5\x13\x46\xb9\x25\xb5\x18\x11\xa9\xf6\x18\x10\xfc\x1c\x82\x89\x8f\x9a\xf8\xe0\xd3\x6c\x34\xe0\x74\x4d\xe4\x95\xfc\x84\xd1\x99\x52\x4f\x30\x8e\x93\x1e\xb4\x8a\xd1\x9f\x43\xd3\x13\x2e\x99\xe9\x3d\xdc\xa8\x4a\xf5\xb4\xdc\x3c\xcb\x82\x18\x4e\xf0\x45\x22\xdf\xbe\xad\x28\xc1\x07\x26\xe9\xc5\x76\x77\x75\x07\x48\xc0\x1f\x52\x1c\x87\xb2\x1c\x90\x36\x58\xd6\xd0\xe4\xaa\xf1\xe3\xab\x86\xe4\x92\xa3\x8f\xad\x5e\x10\xec\xf3\xb1\xd2\xd3\xbe\xac\xa4\x59\x37\xea\xf5\xa4\x96\x01\xd3\xfc\xdf\xd0\xd7\xf3\x71\xc3\xce\x7f\xb5\xbd\x3e\x30\xc5\x4c\xeb\x75\x51\x59\xfc\xbf\x51\x59\x45\x41\xe0\x34\xe5\xc3\xf0\x11\x27\xd4\x5e\x5f\x4f\x87\x26\xc1\x0a\x02\x68\xee\x43\x8c\xb4\x09\x57\xa9\x2f\xfc\x9c\x81\x6b\x92\x09\x53\x5a\x4e\xae\xd2\x7b\x78\x9e\x3d\xf5\x16\x2a\xa8\x6c\x60\xd4\x83\xbf\xaf\xe2\x1c\x1b\xa6\x49\x3a\x8c\xf2\x82\x20\x26\xe8\x46\x3f\x50\x48\xf1\x9a\x58\xeb\x8e\xce\x34\x66\xa6\xdd\x4b\xd7\x93\x3c\x7a\x47\x9e\x90\x00\xcc\x5b\x4a\x72\xc4\x57\x9c\xdf\x1a\xc7\x1b\xb3\x1a\xc9\xd7\x52\x93\xaf\x4a\xbe\x82\x3d\xa1\x10\xd4\x36\x55\xe9\xe2\x98\x13\x13\x69\x4b\x79\xf1\x8a\xcd\x46\x6c\x0f\xb7\xea\x33\xfe\x18\xc2\x9f\x73\x78\x7a\x7c\xd2\x34\x29\xda\xcd\xac\xe9\x15\x03\xc5\x4e\xfa\xdb\x8a\x9e\xfd\xb7\xcb\x97\x54\x8d\x2c\x8c\xc7\x55\x2a\x1f\x33\xf7\x0e\x1e\x27\xb0\x62\x7c\xdc\x20\x81\xd9\x0e\x07\x91\x05\x42\x18\x95\xe7\xcf\x95\xea\xd2\xe7\x0d\xcb\xab\x9d\x17\xd1\xca\x8a\xe2\xe5\xbe\x4a\x8b\x57\xda\x6e\x3e\xde\xb9\xa9\x86\x89\xd3\xf5\xc4\x66\xf9\x2e\x7a\x9b\x58\x94\xd7\x11\x7a\x08\x98\xd3\x4f\xeb\x00\x70\x43\x1e\xf6\x5b\x2f\x10\x62\x01\x01\xc6\x47\x81\x47\x25\x1e\x55\xd9\x68\x62\xfa\x7d\x9a\xcb\xd1\x33\x7f\x35\xba\xaf\xc7\x4d\xee\xf7\xd3\x18\x01\x36\xea\x82\x3f\xa5\x1b\x77\xd2\x73\xd5\xa5\x62\x8d\x1f\x73\x3d\xc7\x95\x28\xe9\xdb\x8c\xc3\x0a\xec\xc0\x37\xa7\x99\x9e\xa4\x40\xe8\x31\x76\xeb\x69\x96\x00\x5a\xc8\xb2\xf2\x75\x8d\x79\xbf\x21\x7a\x69\x38\x26\xa9\xa2\x39\xff\x42\x3e\x80\xd9\xe0\xd0\x01\xa9\x12\xf2\x8d\xb3\xa5\xc2\xa0\x5d\x85\xc5\x97\x08\xc3\x47\xe0\xc3\xb4\x17\xad\x70\x4d\x0c\x19\xcf\x45\x45\x2d\xa3\xc9\x3d\x89\x61\x3b\x4a\x33\x8c\x74\x29\xe1\x8c\x83\xb5\x59\x6c\xe4\x91\xb7\x55\x68\x7b\x02\x37\x2e\x53\xd6\xde\x8b\xf5\x33\xd3\x1b\x03\xa3\x75\x78\xde\x73\x60\xec\x5b\x72\xfc\xa3\xcf\xb8\xde\xf0\xb7\xc7\x51\x6f\x17\x3d\x24\xe4\x00\xef\xd1\xba\x82\xb5\x3c\x0e\x9b\x23\x34\x31\x74\x49\x70\xca\x83\xd2\x23\x70\xef\xa8\x61\xbc\x8f\x1a\xfb\x7a\xf1\x38\x5c\x95\x30\x1f\x56\xfd\x3d\x3c\x5d\x3e\x51\xf5\xde\xac\x9f\x3e\x51\x7d\x35\x7e\x66\xd7\x44\xcd\xf0\x6d\x91\xa7\xc4\x52\xbc\xa9\xaa\xb0\x97\x08\xf6\x80\x12\xdb\xbf\xd0\x09\xd1\x43\x18\x7b\xdc\xd7\x29\x0d\x16\xbb\xa1\xe2\xdc\x71\x12\xa7\xe1\xaa\x66\x49\xbb\xa4\x4c\xfd\xa5\xed\x04\x64\xcb\xf3\xcb\xed\x43\xaf\xcd\xd6\x66\xa1\x96\xc4\xb4\xff\x11\x19\x24\x36\xf9\xa5\x9f\xd0\xfa\x58\xed\x9c\xbc\x30\x90\xb5\x55\x39\x15\x97\xb5\x65\xeb\x08\xbb\x50\x3f\x19\x51\x43\x89\x21\x12\x6a\x82\x89\x53\x10\xc4\xe2\x57\x5d\xd7\x3d\x4b\xc3\x81\xcd\x1d\x61\xbb\x74\xa5\x35\x20\x4b\x58\x76\xf3\x81\xc9\x46\xf9\x20\x4d\x25\x7c\x60\xb5\x0c\x9d\x76\xdf\x99\x0a\xde\x16\x16\xda\x3d\x3b\xb4\x26\x91\xae\x07\xfc\x2d\x67\x34\xa8\xf7\x7e\xaa\x24\x0b\x77\x74\x9a\x48\x5c\xc3\x81\x91\x32\x2e\x27\xd3\xaa\x35\x7e\x45\xcd\x47\xc4\x69\xd2\xb7\x22\x9c\x23\x4d\x45\x8a\xa7\x05\x6f\xb7\x3d\x24\x7d\x7d\xf1\x50\x3b\xa2\xe6\x3e\x77\x9d\x9c\xf7\xf6\x9e\x7c\x2a\x9a\xaa\x3c\x05\xed\xc2\xb5\xc8\xae\x0b\x64\x81\x71\xf2\xd8\xdf\x02\x9a\xf7\xed\xb0\x7e\x66\x6d\xb2\x5b\x83\x7b\xab\xfd\x05\x3b\xf6\xb3\xb2\xf5\x6b\x6e\xaa\x49\xf5\x37\x8f\xd2\xde\xe2\xbf\xd7\xaf\xfc\xa2\x26\x11\xbf\xa8\x8b\x1d\x66\x83\x72\xb0\xe5\x79\xde\xe6\xd7\x15\x47\xc3\xf5\xa9\x80\x5c\x66\x32\xd7\x2c\x32\x18\x14\x8a\xd0\x5c\xa8\x75\x6f\x84\x2d\xd5\x97\x53\x41\xb9\x65\x99\x76\x0a\x61\xf8\x23\xc5\xd9\x72\xa3\xf4\x1d\x8a\x9f\xea\xa9\xb7\x26\xcc\xe1\xc1\xf6\xc0\x8c\x46\x1b\x5a\x09\x27\xa8\x91\x83\x7b\x5b\xd5\x8b\x56\x56\xa2\x70\x1c\x17\x4a\x59\xe4\x5c\x8d\x1f\xf9\x1b\x1e\x78\x97\x14\x99\x1d\x65\x36\xb1\x63\xf1\xe8\x32\x9b\x48\xef\x9a\x4f\xa6\x1e\x0b\x69\x49\xf4\xa3\x30\x32\x8c\xba\x72\x54\x16\xee\x19\x61\xa4\x80\x95\x6a\xa6\x42\x09\xcf\x3a\x13\x85\x83\x59\x8a\xeb\x50\x80\x79\xbe\x53\xbd\x5d\x37\xf4\xa1\x28\xd0\xb0\x8f\x60\x0a\x76\x4c\x54\xad\x2b\x65\x51\xbc\xfd\xfb\xb9\xe1\x7b\x8c\xee\x96\x8f\x6b\xf5\x94\x6c\x6c\xa9\x6a\x2d\xb1\x6b\xcb\xd1\x91\xfd\x2b\x20\xcd\xe0\xf3\x78\xf5\xf0\xbf\xd0\xcb\xe6\x7f\x80\xdb\xe2\x8f\x37\x70\x31\x1c\x68\xa7\x42\x80\xe0\x24\xf2\x3d\x3f\xf6\x2d\x7a\xe5\x78\x56\x3b\x3b\x1e\x7b\x91\x87\x03\xdb\x1b\xc7\xb6\x37\xeb\xfa\xd1\xbf\x73\x0e\x17\x04\x8f\xf0\x03\x8a\x48\xf1\x20\x50\xf8\x90\xa5\xe2\x94\xdf\x4c\x94\xd1\x78\xb4\x87\x04\x9e\xd3\x8c\x91\x9a\x8d\x6f\x98\x66\x45\xdf\xf4\xed\x13\x3e\x9d\x82\xbd\x40\xde\x78\xa6\x24\x28\xa1\x4c\x83\xf8\xf9\xac\x67\x89\x5b\x80\xff\x7b\xa0\xf2\x2f\xa6\x9d\x22\x6f\xfe\x4f\x5f\x60\x00\xa0\xd4\x12\x1b\x60\x68\x23\x93\xe7\xb6\x0a\x41\xb4\x92\x21\x3d\x66\x51\x17\xd1\xc3\xf0\xf9\x38\x2e\xf2\xe7\x15\x35\xd1\x47\x6a\xba\xf2\x5f\x07\x1e\x38\xf1\x45\xa0\x28\xe5\xfe\x46\xa9\x54\x35\x99\x95\x5d\xe6\xde\xe9\x6a\xe1\x03\x18\x4a\x86\xac\xfe\x61\xd0\xfa\xe5\xbf\xe6\xa5\x89\x0e\xcf\x33\x28\x02\x33\x8d\xd8\xe2\x37\xb1\x33\x04\xd4\xdc\xfa\x2b\xd2\xcd\xfa\x47\x64\x48\x60\xe7\x65\x22\x11\x66\xe5\x6a\x50\x25\x31\x82\xf4\xd9\xa3\x45\xab\x66\x14\xa9\xff\x85\xa9\x3e\x9a\x60\x5c\x9f\x71\x8d\xee\x24\x1f\xc7\x20\x78\xd6\xaa\xe3\xf0\x9b\x77\x03\x35\xb2\x70\xba\x6e\x89\x42\x6b\x7b\xd8\x22\xf8\xe7\x07\x8a\xbf\xfe\x81\x6b\xf3\xad\x47\x3d\xf0\x73\x1d\x60\x0c\xd3\xb5\x80\xe6\x74\xa5\x36\x5a\x85\x05\x30\xdc\xe7\x9a\xf4\x04\x8a\x41\x46\x14\x38\x08\x61\x81\x9b\xfd\x6d\x35\x09\xfd\xdb\x53\x1b\x86\xcc\x6b\x98\x6e\xa8\x9a\x18\xea\x5b\x7c\xac\x45\x05\xa3\x21\xfc\x8f\x14\x6d\x6b\x85\xda\x06\x60\x37\xf9\x63\x8b\x11\x0d\xbc\x87\x87\xa5\x12\x7c\xc7\x6c\x01\x9e\xfc\x55\xf7\x04\xba\xe3\xac\xcf\x8e\x54\x98\xb5\x5a\x8a\x8b\x4b\xc2\x02\x6b\xb2\xa1\xc9\xdc\xf8\x08\xd2\x12\x94\xec\x45\x7f\x54\xa9\xde\x4f\x8f\xfa\xef\xdf\xcf\xbc\x44\x80\xb3\x31\x1a\x25\xf0\xe5\x14\x4d\x21\x38\x18\x67\xd4\xd9\x45\xb9\x85\xc9\xef\x14\xdb\x51\xe3\xdd\x87\x71\x9a\xbb\x9e\x18\x9c\x04\x7a\xb6\x4e\xf9\x5b\x8d\xa0\x3d\xa3\xe4\x5d\xd3\xe1\xee\xd6\xb2\x2f\x14\xfa\xde\xcc\x0e\xc5\x22\xcb\xb8\x43\x37\xea\xb9\x2c\xdc\xa5\x77\x68\x0d\xab\x51\x6e\x27\xd3\xae\x5e\xe5\xa1\xbf\x70\x68\x97\xff\xae\x93\x8a\x14\x81\xf5\xe7\xb1\xf8\x76\x76\x3c\x00\xf6\x4c\xa9\x8d\xca\xa7\xf4\x8b\xf2\x91\x5a\x35\x2b\xef\xd2\x5a\xc2\xb6\x3f\xaf\xf5\x89\xcf\x4f\x45\xd2\xb4\xfa\x7a\x36\x97\xf9\x2d\xae\x38\xab\xf0\x73\xb3\x7c\x59\xc1\x61\x93\x95\x6a\x7f\x14\x91\x89\x91\x59\x08\xc8\x91\xae\x19\x96\xf0\x5a\x4d\x45\x59\xeb\x90\x5f\x2c\xd5\xf0\xf1\x15\x85\x11\x5f\x8b\xb2\x62\x0c\x4e\xf4\x83\x7c\xa9\x80\x11\xf2\xf1\xd4\x44\xca\x2b\xed\xcc\x86\xc6\x65\xee\x4c\x29\x45\xe6\x4a\xe8\xa5\x94\xa8\x71\x96\xae\x45\x3d\x41\x24\x35\x2d\x34\xed\x1f\x6d\xb6\x3a\xe7\x7b\x0c\xc7\xd4\x82\x3e\x56\x7a\x25\xef\xcb\x7a\xf0\x60\x8b\xf2\x59\xf1\xff\x5a\xc8\xd4\x3e\x4d\xb7\xc4\xe2\xa7\x9a\xc7\x8e\xfb\x56\x3a\x68\x60\x8a\x5f\xf0\xb3\xe1\x27\xef\xa2\xd0\x2b\xd0\x08\x7a\xe4\x7a\xd6\x0a\xe1\xcc\x8b\xe0\xd2\x71\x1a\x05\xbf\xf2\x3a\x83\x53\xfe\x2d\x2d\x12\x79\x8f\xb2\x73\x57\x6c\x56\x44\x71\xc4\xb4\x1c\x4e\x6b\xd8\x79\xd4\xb3\x6a\xb6\x34\x1d\x17\x7b\x2b\x87\x20\x5d\x40\x3f\x9f\xf3\x59\x49\x01\xb4\x74\xbc\x28\x7e\xc1\xe5\x6c\xc1\x79\xe2\x45\x7c\x4e\x25\x38\x27\x50\xfd\xba\x2b\x74\x23\x8c\x90\x4a\xb5\x1f\xa4\xdf\x4d\x63\x18\x70\x01\xbb\x27\x40\x42\xb2\x6e\x3f\xea\x50\x48\xd6\xae\xe2\xc9\xb8\xfd\xe3\xc0\x39\x4f\x76\x7c\xbe\xcd\x89\x34\x8b\xf7\x00\x7e\xce\xdf\xd5\x24\xec\xd2\xb5\x76\x85\x90\x5f\x0e\x89\xe3\xf4\x9f\x19\xfa\x2e\x70\x77\x3f\x56\xab\xf9\xfa\x47\x99\x2d\xcc\xdb\xbb\x7c\x1d\xe2\x1e\xde\xb8\xa0\x6b\xc8\xd0\xd5\x54\x0c\xa5\x21\xeb\xb9\x84\x50\xae\x85\xa3\xdc\xd9\xf1\x01\x8b\xa8\x46\xce\x78\xd9\xb8\xd3\x4a\x21\xe5\x37\x14\x4a\xf4\xa4\xc3\x01\x0f\xcd\x3b\xef\xd8\x0c\x60\x50\x5c\x3a\x73\xbf\xf3\x89\x22\x98\x31\x59\x38\x88\x0a\x1b\x16\x63\x2a\xbc\xbb\x92\xff\x25\xa5\x86\xa3\xf9\x64\x07\x36\x1e\x49\x4a\x88\x42\x05\x2e\x87\x8f\x1f\x5b\xa9\xd9\xb0\x26\x83\xf7\xd6\x9c\xe4\x58\xa2\x0f\x03\x8d\x4b\xac\x4d\x03\x0d\xec\xcf\x55\x37\x8e\x70\xf4\x2a\xde\xa4\x0b\x54\xab\x20\x11\xb6\xf7\x7b\x81\x9e\x1b\xae\xae\x1c\x0b\x64\xd6\xb3\xae\x26\xcf\x70\x70\x06\xcc\xe3\xf3\x1d\x5a\x47\x78\xf8\xac\x61\x81\xef\x7a\x71\xa2\x7a\x62\x1f\x05\x7a\xac\xa0\xb5\xb0\xe0\x84\xfa\x69\xad\x3b\x4a\xa5\x6a\x4b\xc0\x42\x40\x76\x85\x71\x83\x28\x12\xe1\xaf\xee\x05\x8a\xb4\x7e\x2f\x58\x32\xdd\x44\xba\xe2\x3e\xed\x28\x2a\xc1\xb9\x8e\x6f\x8b\x83\x6d\x0a\x7d\xf4\xe7\x27\x6a\x88\xe1\x54\xa0\x06\x63\xf6\x4c\x35\xec\x17\x16\xda\xa1\xc9\x7a\x91\x09\xa9\xd0\x00\x87\x08\x06\x46\xa7\x5b\xe0\xd0\x42\xc8\x36\x25\xed\xd8\xde\x02\x39\xb0\x7c\xa0\x3d\x4e\x7a\x36\x5b\xcf\xa2\x82\x73\x62\x99\xf1\xf0\x19\xdd\xe9\xf2\x69\xdf\x3b\x16\x19\x37\x74\xa6\x99\xcf\x83\x4f\x82\xed\x24\x65\xfb\x96\xda\x51\x96\xd9\xfe\x38\x36\x59\x54\x44\x22\x8c\xeb\x4c\x95\x37\x5b\x8a\x0b\x6d\x64\x13\x13\x57\x7f\x3c\xe7\xfb\x3c\x03\x32\x2c\xf0\x22\x97\x15\x18\xa4\x45\xe3\x3d\x88\xe3\x2e\x05\x8a\x15\xeb\xc8\x94\x87\x5c\x9e\x6f\x8f\x62\x93\x24\x3c\x89\x8c\x6a\xed\xdf\x2e\x95\x60\x30\xcf\xfb\x8b\xc9\x51\x5a\x1b\x83\x8d\x3c\x0a\xf3\x96\xa7\x23\xc3\x9a\x94\x7c\xe3\x79\xb5\xfb\x48\xab\x82\xb2\x11\x21\x7f\xf4\xbd\x13\x70\x26\xb9\xba\xdd\x3e\xa5\x0c\x58\xbd\x70\x6c\xce\x73\xba\xbb\x09\x95\xe8\x3a\x35\x08\x22\xe4\xc9\x54\x1e\x4a\x21\x40\x0d\x3a\x87\x3b\xd9\xdd\x51\xdb\x74\x1a\x9f\xbc\x3c\xdf\xee\x67\xc6\x95\xeb\x45\xa2\x99\xd6\xa3\x48\x80\x3a\x1a\xfb\x75\x93\xd9\xdd\x2e\x23\x7d\x7a\x2f\xb6\x96\x56\x20\xc4\x92\x99\xa1\xf4\x4a\xb5\xfc\x84\x18\x06\x68\x19\x74\x2d\xee\x97\x0e\xf3\xb5\xfe\xe7\xa7\x3a\x09\xfb\xf7\xb7\xf3\x22\x33\x51\x7f\x40\x25\xab\xca\x36\x30\x6f\x85\xca\xef\x2e\xa8\xa2\xcb\x30\x4a\xc6\x44\x79\xe8\x07\x1f\x34\xba\x73\x61\x81\xdd\xef\x6d\xdd\x0a\x4e\x93\xbc\xc8\xd2\xf1\xbf\x8f\xa8\xdb\x97\x82\x13\x1b\xda\x3c\xaf\x1c\x2e\x3d\x1d\x07\xda\x70\x32\xe2\x97\x9b\xd0\x8c\x2b\x76\x18\x25\x44\x38\xb0\x7f\xbf\xe3\xae\xf7\xc6\xf2\xcc\x14\xc4\xa8\x0a\x79\xc7\xd0\x69\x12\x90\xa4\x12\x37\x3f\xab\xb5\x3d\xbf\xa6\x7b\xe4\xe3\xa0\x81\x29\x78\x94\xa5\xb9\x0d\xc7\x45\x9a\x09\xfc\x08\xb7\x75\x52\xc5\x4d\xd3\xed\x94\x7d\x4b\xed\x95\xcc\xda\x5d\xba\x8e\x5e\x59\x41\x21\xac\xf1\x58\xbd\x1b\xa5\xa6\x0b\xd0\x3c\xac\xd0\xb4\x42\x8c\xf1\x62\x47\x72\xfb\xb7\xcc\xc8\x24\x36\xb7\x7b\xe8\x63\xa0\xb5\x9a\xe9\xa8\xe4\x7e\x37\x43\x26\x64\xd0\xb8\xe5\x04\xf7\xfe\x24\x11\x33\x21\x6a\x3a\x85\x38\x05\xe9\xcf\x3f\x2e\x6b\xc4\x8c\xfb\x54\x33\xe9\xf0\x7c\x4d\x6f\x1e\x11\x2b\x4b\x62\xba\xed\x56\x3d\x5b\xaf\x33\xe6\x2b\xef\x34\xd5\x45\x76\x68\xff\x7e\xde\x75\x00\xc7\x08\xb0\xbe\xfa\x29\x74\x0b\x7f\x40\x29\xdc\xd6\x55\x0c\x02\xf2\xbf\x07\xdb\x81\x6a\x8b\x87\xda\xe3\x7c\x86\x7c\x9e\xc8\xa4\x4e\xe5\x0b\xf8\x87\x9f\x36\xc9\x67\x1d\x6c\x47\x49\x1e\xe5\x28\x86\x71\x24\xa6\x79\x6a\x2e\xd4\x26\x34\xa2\x55\x43\xed\x5c\x6e\x94\x2b\x2c\xec\x0f\x35\x09\xd3\x8f\x6b\xcd\x86\x15\x82\x38\x91\x21\x68\x92\x74\x69\x14\x0c\x4d\x93\x62\x10\x6f\xcc\xa8\x09\xcc\x0b\xf4\x42\x1c\xba\xde\x81\x78\x4f\xfa\xd0\x35\xb6\xf9\x60\x94\x16\xb5\xbe\x0d\x14\x61\x24\xae\xf3\x60\xe4\x23\xb5\xca\xaa\x49\x7a\x73\x9e\xee\xe6\x9e\xf2\x75\xa0\xcc\x07\x59\x27\xb2\x3d\x61\x92\x21\xeb\x21\xe1\xf3\x33\x0a\x08\x92\x1b\x24\x1e\x58\xcc\x5c\x08\xe2\x13\x3f\x7e\x9e\xa6\xbd\xa7\xe9\xad\x69\x8e\x47\xfa\xab\x4f\xff\x62\x47\x51\x1a\xc0\x1b\x39\xdd\x64\xa7\x2f\x0f\xd1\x12\x58\xa5\x3f\x85\x69\x15\x98\xaf\xbb\xf0\x38\x80\x50\xec\x02\x95\xa5\x08\x84\xd0\xa5\x60\x4f\xec\x9a\x54\x69\x2c\xd7\x6b\xa7\x32\x64\x89\xc8\xfe\xfa\x7f\xa0\x5a\x86\x17\x4a\x2a\x32\xc9\x14\x8b\x03\x3f\x9b\x58\xa4\x55\x05\xae\xd4\x72\x4a\x98\x57\xd4\xc4\xd7\xfb\xae\xcf\xd0\x1b\x13\x94\x6a\x51\x53\x57\xbd\xe1\xe4\x06\xe8\x92\x31\x7d\x7f\x77\x2a\x56\x84\xcb\x1d\xe7\x11\xd1\x3a\xfa\x75\x14\xa8\xf5\x55\x6a\xc5\xcd\x28\x29\x4c\x94\x90\xf7\x74\x6d\x1d\x97\x3d\x72\x06\x8c\x52\xf5\x75\x3d\x68\x70\x1d\x91\x18\xbb\x74\x55\x4e\x38\xa1\xc9\x57\x1f\x90\x39\x10\xbf\xef\x23\x66\x9b\xac\x45\x59\x9a\x0c\x6d\x52\x18\x62\x90\x3d\xa0\xc9\xdc\x24\x1b\x3e\x4f\x57\x02\x83\xf5\x50\x2d\x4e\x56\x66\xe7\x3f\x6a\x1c\xb1\x37\x5d\x29\xd3\x3b\x91\xe1\x7d\x4e\x70\x38\x78\xc1\x17\xc4\x0a\x9b\x17\xc6\xcd\x5f\x38\x69\x36\xd7\x7f\xd1\x40\xa0\x22\x33\xe1\xaa\x9a\x28\x42\x01\x18\xe1\x2f\xe0\xb2\xf8\xcc\xc9\xa9\x4b\x7a\xa5\xbd\x3e\xb0\x99\x35\xf9\x8c\x27\xbf\xb8\x17\x68\xa2\x01\x3c\x68\x29\x9a\x6e\x77\xcc\x8b\x87\xda\xe9\x9a\xcd\xb2\xc8\x03\xc1\x5d\x37\x43\x31\xc2\x34\x91\xfb\x0e\xa5\xaa\xeb\x86\x84\xaa\x1f\x7a\xfc\x90\x10\xe8\x43\xdd\xcf\xb0\xca\xb6\xc2\xeb\x9f\xd7\xcc\x5a\xdf\x1e\x9b\x4c\x42\x4c\x06\x79\xaa\x26\xf6\x89\x29\xc2\xb3\xc3\xf3\xaf\x32\x1f\x67\xca\xc3\xbb\xa8\xed\xdd\x57\xa2\x50\xf7\x15\xb9\xe6\x20\xea\xf5\x2c\x71\xec\x38\x09\xde\xea\x43\xc2\xef\xa6\x58\x38\x23\x48\x91\x3a\xe4\xc5\x19\x2d\xbe\x32\xad\x5d\xb8\x7f\x7f\x7b\x68\x87\x72\x11\x2e\xca\x71\xa8\x2c\xa5\xf2\x82\xce\x3a\xb0\x8d\xa2\x37\xd2\x72\xc4\x2d\x3f\xa9\x31\x4c\x6e\x53\x8e\xad\x6e\xf7\xf5\xc5\x43\x8a\x5f\xf5\xac\xfa\xf3\xb3\x6a\xf0\x70\x24\xf4\x48\x35\x92\x29\x91\xe5\x9c\x2e\x82\x1f\xa8\x62\xaf\x34\x93\x4a\x84\x8c\xf0\xd2\xa7\x64\xb8\xf7\x19\xfd\x18\xad\x2a\x92\x5e\x50\x45\xd2\x0b\xba\x7c\x17\xe5\xf6\x69\xca\xe9\x18\xf6\x05\xe8\x33\xdc\xd9\x6d\x24\x62\x7c\x82\x72\x94\x4c\xd7\x54\x8f\x1d\x8f\xe6\xa6\x42\xfc\x3f\x00\x7b\x9e\x83\x90\xed\xdf\xcf\xe5\x84\x63\x30\xfa\x6e\x50\xc7\x73\x6c\xfc\xf3\x52\x8f\xff\x5f\x6a\xd2\xa6\x4b\x6c\x54\x0c\xaa\x57\xbd\xac\xf4\xc1\x16\x16\x9c\x3e\x98\xd2\x00\x4c\x8b\x22\x05\x67\x12\xbc\xdd\x7b\xaa\xeb\xf8\x5e\x0d\x2f\xbc\x6e\xb3\x95\x71\xbc\x9b\x42\x09\x87\x9e\xd9\xa7\x68\x1b\x1d\xa3\xc1\x09\xb4\x56\x1d\xd4\xc7\x0f\x78\x62\x67\x39\x8e\x75\xaf\x83\x7f\x63\xbb\x5e\xd8\xe1\xf9\xa5\xf6\xd2\xd2\x5e\xef\xad\xae\x52\xc2\x0b\xf3\xf4\x28\x50\x22\x1c\xd7\xa9\x2e\x87\x32\xf5\xff\x4e\x23\x59\xdc\x64\x09\x54\x6f\xeb\x7a\xa9\x99\x8a\x81\x22\x41\xcd\xfd\x2b\x35\x80\xfa\x14\xd4\x4f\x50\x7a\x01\x03\x81\xf0\x32\x54\x77\x8a\x1d\xfb\x63\xe4\xc1\x42\x4b\xa1\x32\x92\xef\x13\xfe\x58\x78\x84\x68\x29\x20\xda\xa8\xcd\x68\x4c\xa3\x21\xab\x7c\x37\xcc\xac\x57\x73\x70\xe8\x05\xa5\x78\x33\x55\xd9\xaf\x32\xa4\xb1\xc9\x7a\x64\x6d\x65\xc0\x46\x4d\x2d\xde\x42\x44\x8e\x0a\xc5\x17\x53\x86\xef\x17\xdb\x03\xb3\xe6\x6c\x18\xf7\x47\xf0\x5c\xa5\x59\xe2\x8d\x98\x89\x4d\xd7\x0c\x0d\xfd\x94\xd3\x1a\x76\x1b\x16\xc1\x94\x90\xe5\xfb\x4e\x70\x6c\xba\x36\xce\x67\xa6\xf4\xbd\xf8\x39\x62\x27\xc2\x77\x9d\x6a\x64\x05\x0a\x63\xcb\x9a\x30\x92\x3e\x2b\x65\xfd\x2b\x0a\x48\x77\xa4\xd4\x8d\x36\x89\xea\xab\x58\x39\xee\x0b\x8f\x8c\x20\x5a\x14\x7b\xce\x45\x67\xc1\x7a\x76\x65\x9c\x84\xc5\x1c\x5d\xab\x13\xe0\x77\xf9\xc4\xee\x8e\x1a\x7d\x60\xee\x27\x57\x5b\x74\x79\xd6\xc7\xa5\xf6\x9a\x3c\xc8\x04\xa3\x88\xba\xd5\xbf\x55\xd2\xd3\x08\xb2\x45\x90\x5d\x55\xf9\xcc\x46\x94\xf4\x09\x30\x88\x75\xfc\x5b\x74\x9f\x80\xee\x4c\xc7\x45\xfc\x37\x30\x3c\xb8\xbe\x9b\x08\x2c\x11\x98\x81\xca\x85\x3f\xed\x0d\x76\x81\x59\x16\x6c\x8a\x9a\x2c\x8f\x48\x87\xbd\x3c\x2d\x62\xb7\xb4\x74\xe0\x1b\xf4\x3b\x12\xe4\x2a\xee\x42\xd8\x2e\x34\xf0\xae\x12\x71\x89\xa0\x9e\xe8\x5b\x11\xe5\x7e\x42\x7b\x18\x55\xc9\x1f\xc1\x16\x20\x29\xf9\x10\x1b\x44\x38\x74\x5a\x8e\xeb\x61\xae\x43\x11\x2e\x0c\xd7\x1d\xe0\x28\xb0\x62\x6e\x07\x7e\x90\xf1\x01\x2a\x63\x6e\xdb\xf8\xdb\xff\x01\x99\x28\xe5\x30\x0e\x32\x28\x69\x07\x97\xe9\x50\x73\xfb\x59\x89\x4a\xb0\x70\x36\x28\x54\x1f\x37\xa4\x11\xd2\x1d\x23\xdc\x8e\x6c\xea\xea\xc9\x82\xff\xe6\xc9\x6d\x34\xe0\xa6\xa5\x3a\x16\xe7\xf1\x9c\x24\x16\x53\x50\x11\x4b\x53\x6b\x90\x72\xc7\x0a\xf9\x67\x4a\x21\x79\x77\x47\xcd\x43\x7f\x15\xa8\x79\xe8\xaf\x4a\x8f\x76\x83\x48\x2c\xd2\xe1\x0f\x95\x3f\x7b\x2b\x85\xfe\xdd\xab\x1e\x21\xe4\xd1\x42\x8d\xf8\x87\x30\x75\xd3\x83\x0a\xa2\xf0\xc6\x63\x21\x0a\x4b\x4b\xa8\xd2\x85\xe3\x82\xf8\xa4\x64\x77\xf8\x1a\xcf\x3f\x81\x05\x83\x71\x3a\xe5\x58\xda\xc2\x74\x3c\xda\xed\x9b\x86\xb3\x9d\xea\xa1\x02\x95\xc3\x23\xa9\x8e\x64\xc7\xcd\x7f\x9c\xd3\x5c\xf7\x9f\x95\x7e\x64\x0d\x88\x60\xa4\x07\x1a\x16\x4d\x4c\x5e\x43\x9b\x80\xbc\x93\xe9\x7c\xc8\x8c\x0b\xb5\x4f\xd3\xb4\x66\x86\xfa\xf4\xb2\x82\xa0\xf9\x0d\xd7\xc0\xca\x61\xdf\x26\xda\x29\x67\x47\x19\x34\x13\xf8\xa2\xca\x51\x97\xb0\xe5\x85\x1d\xce\xf9\x91\x0a\x56\x15\x43\x35\x19\x0a\x77\xb8\xb2\x2f\xb1\xfc\x50\x35\xc5\x94\x94\xb4\x18\x3c\xae\x98\x48\xe9\xd1\x6f\x16\x3d\xed\xea\x1b\x44\x67\xbb\x81\x1b\xb0\x67\xa2\x58\xc3\x5b\x4e\xd0\x37\x4b\x9d\x56\x2c\xc3\xba\xc9\x4d\x11\x02\x46\x5a\x93\x23\x12\x49\xa4\x06\x37\x94\x0f\x52\x59\x38\xe2\xe7\x5b\x8e\x3b\x6d\x53\x4d\x67\x6b\x0e\x13\xef\x36\xcf\x95\x0a\x93\x11\xec\xd5\x6f\xd0\x46\x23\x48\xcd\x7a\x56\x34\x25\x2e\x72\x1b\x26\x04\x49\xd5\xe7\x2a\x83\x36\xbd\x8c\x59\xec\xa5\x5e\xa3\x60\x0b\xb7\x55\x48\x99\xa5\xb1\x7d\x92\x4c\x1a\x1a\xcc\x77\x68\xc5\x21\xce\xba\xa0\x04\xd7\x58\x89\x0f\x05\x59\xf4\xe3\xf8\x8f\x60\x1d\x10\xf1\xfd\x4f\x0a\xd5\xcc\xd9\x8a\x58\x53\xdf\xfe\xfa\x50\x21\x07\x57\x23\xb0\x2f\xe0\xf5\xde\x54\xba\x88\xe0\x27\x84\x73\x7b\xd4\xb8\x5b\x57\xa2\xb8\x2e\x7a\x7a\x4b\x0b\x2c\xdd\x9a\xca\x8f\xde\x7c\xb3\x3d\x4c\x93\xa8\x48\x3d\x39\x91\xcc\xb5\xfa\x77\xfd\x23\xe7\x3b\x87\xb6\xd7\x8b\xa5\xfa\x2a\x83\xf3\xf4\x29\x01\x65\xf9\x02\x64\x95\x77\x11\x01\xc2\x8c\x86\xc4\xf9\xa8\x0c\x7a\xa7\x18\xa2\xb9\xa5\x6e\x7f\x10\x85\x20\x4a\x74\x23\x85\xd5\x12\x82\x0f\x61\x7e\x09\x58\x45\x00\x6e\xc9\x10\xbc\xff\x67\xa8\x6a\x41\x3d\x94\xd5\x97\x27\x5a\x28\xc9\x07\x1e\xb9\xc1\xc3\xf1\xd4\x42\x23\x96\xfd\xe0\x33\xbd\x56\xb2\x2e\xab\x42\xb2\x4e\x15\xd0\xec\x22\x5a\xb5\xc7\x8d\xc0\xa6\xab\x76\xb7\xea\xb7\xdd\xc7\x2e\x45\x14\x7e\x5d\xb1\x37\x32\xde\x05\xf6\xec\x7d\x7a\x0c\x2c\xe5\x15\xf8\xc1\xe2\x8b\x4a\xa6\x72\xa6\xe3\x18\xd3\xd3\xa1\xc9\x07\xad\xda\x14\xa1\xce\xb3\xb7\x83\x00\x1d\x85\xcd\xd0\x14\x76\x9c\xcd\x56\xdf\x0f\xb3\xc1\xa4\xda\xe8\xff\xde\xa5\xa8\x18\x0b\x03\xb8\x6b\x44\x38\x33\x9d\xed\x9d\x97\xc5\x43\x30\xe9\xfd\x2c\x1d\x27\xe8\x48\x38\x5e\x7a\xdf\x5d\xdc\x54\x72\xd2\x47\x14\x31\x6d\x1e\x15\x95\x49\x72\x79\x00\x66\x22\xf8\x78\xaa\xc2\xbf\x78\xa8\xbd\x92\x99\x7e\xc4\xda\x1a\xb0\x7d\xc7\xe8\xf2\xf8\x58\x4d\x43\x77\x6d\x5e\xec\x52\x78\xa8\x3b\x5a\x8b\x4c\x91\xb4\x7d\x89\x10\x81\xf5\x1c\x91\x5c\x21\x46\xf8\x91\x22\xe0\xf5\x7c\x1c\x36\xcb\x4d\xf1\x0e\x75\x3d\x05\x11\xe7\x27\x02\x6e\xab\xa9\xd0\x2f\x54\xc6\xbd\x12\xd9\xbc\x30\x2d\xc5\xde\x79\x25\xf0\x45\x8b\x69\x70\xe1\xbe\xa5\x76\x31\xb0\x51\x96\xcf\xa9\xaa\xf4\x23\xcd\x04\xaa\xaa\x72\x17\x40\x7f\x8c\x5d\x86\x9c\x1f\xe1\xd6\xce\xce\xb4\x48\xe4\x81\x76\x17\xda\xa4\x8d\x52\x20\xb2\x97\x8b\xcc\xac\x45\xa6\x30\xb3\x0a\xd6\xf4\x00\xf1\x84\x28\x9f\xfb\x17\xfa\x6f\xa9\xc1\x2f\xe0\x2b\xff\x15\xc4\xb1\xcc\x86\xc3\xe1\x12\x96\xa4\x81\xb9\x55\x7e\x53\x36\xca\x78\x94\x99\x35\x9b\x14\x59\x14\x8e\x63\xd6\x97\x67\xfa\xc0\x1a\x95\xa0\xcf\x2d\x4d\x6f\x18\x15\x34\x4c\xb7\x3c\xcf\x8d\xcb\x7b\x81\x9f\x98\x61\xfa\x37\x94\xf3\x78\xae\x53\x78\x7c\x5a\x4e\xb5\x76\xd3\x5d\x6b\x2f\x1d\x77\x9d\xe9\x92\xcb\xab\x5d\xb7\xa2\x16\x4a\xc7\xd9\x53\x4a\xc3\xeb\x14\xe7\x89\xd2\xf2\x6c\x39\xe6\x88\x2d\x6a\xcb\xc2\xa0\x6d\x21\xe9\x47\x83\xef\x98\x8e\x7c\x35\x37\xe7\x8d\xd2\xeb\xf6\x1c\xa3\x46\x05\x02\xc7\x6b\xc8\x1f\xf8\xd3\x8d\xe8\xf3\xa1\x2d\x0c\xd0\x27\x07\x1c\x07\x02\x7d\xf3\xe3\x48\x10\x7e\x6d\xd1\x71\x5b\xd3\x7a\x70\x3d\x6a\xa7\xd5\x33\xcd\x0e\xb6\x3c\xdf\x36\xa3\x91\x35\xce\x8f\xc8\x8e\xa6\x45\xc4\x27\x0a\xd8\xdb\x4d\xfb\x26\x2b\x76\x79\x0f\x79\x53\x49\xbb\x7d\x8a\x47\xc2\xff\x80\x0e\x3a\x8a\x61\x3f\xa5\xe7\xc3\x7f\xc5\x71\x36\xff\x8b\x72\xf6\xc4\x2e\x6d\x0b\x3b\xeb\xc1\xe3\xe7\xf8\x5d\xa8\xc2\x8d\x3b\xa1\x17\xc3\x7f\xa6\xca\xc8\xd9\x6a\x0e\x30\x30\x43\xfb\x35\x0f\x39\x47\xb3\xd2\x3f\xd3\xf5\x80\x47\x53\xb1\x60\x15\xd5\xa8\x84\x5c\x02\x40\x7a\x32\x12\x19\xaa\xfe\x6a\x5c\xd8\x0c\x50\xb5\x57\x9d\x34\x56\x75\x85\x20\x31\xff\x3f\x4a\xc5\x9b\x78\x69\x2a\x82\xe2\xb6\x16\xd3\x9c\x39\xea\x6a\xa5\x32\x11\xbc\xa4\x30\x52\xe3\xa4\xc8\x36\x72\xa9\x56\xa1\x1e\xc8\x89\x3b\x9f\x68\x20\xd8\xe2\x7f\x49\xdb\x00\x73\xfa\xe7\xf1\x3c\xf8\xc4\xc5\xe3\x2b\x69\x36\xdc\xa5\x06\x87\x1f\x96\xaa\xdc\x74\x86\x2c\x2d\x6e\xe4\xbf\x0f\x7c\xef\x9b\xb1\x90\x4e\xc8\xca\xe7\x30\x5f\x4f\x2d\xe9\x7d\x4b\xed\x6e\x3a\x4e\x42\x49\xc5\x1d\x8d\xb7\x83\xfd\x6a\x3a\x28\x0a\x27\xac\x41\x49\x16\x51\xc3\x4e\xd0\xa2\xf2\xc9\x44\x86\x5f\x07\x96\xfa\xb0\x09\x1e\xfd\xa2\x9b\xf3\xa5\x77\x06\x20\x1b\xc8\x85\x90\x65\x7a\x11\x02\xdb\x1b\x87\x7e\x68\x16\x39\x34\x72\x6b\x16\x55\xd3\xe4\x67\x47\x1a\x75\x2c\x46\xa6\x9f\x26\xfd\x96\x06\xa0\xbd\x5b\x2a\x76\xa9\x77\xa7\xde\xf3\xe1\xf9\x37\xe8\xde\xa8\x4f\xc4\xf5\x2a\x45\xe4\x05\x3a\x6d\x57\x5d\x71\x10\xa0\x93\x64\x3a\x10\x22\x9e\x52\x12\x4c\x99\x25\xc6\x79\xc8\x51\xf8\xae\xcc\x47\xa5\xf7\x86\xd3\xa3\x2d\x55\x1e\x60\xe3\x78\x3c\x44\xea\x50\xd3\xb4\xe5\x13\xc5\x57\x62\xe2\x38\x32\x49\x68\x67\x35\xd3\x8f\x6f\x38\xdc\x2c\x95\x43\xb9\x55\xfa\xc1\x82\x3d\x9d\x1a\xfb\x74\x82\x21\x5f\xa1\x5d\x50\x63\xaa\x5f\x96\x2a\x10\xbd\xa1\x67\x56\xbf\x74\x12\x5c\x2c\xe8\x6a\x59\x1f\x9d\x01\x33\x4a\xf0\xe2\xae\xea\x81\x9c\x23\xef\x25\x52\xe0\x0d\x02\xf2\xc3\x88\x14\xad\xe9\x1a\x5c\x51\x52\x0f\x26\xfa\x12\xce\x38\x29\x6c\xd6\x8d\x18\xd5\x0b\x23\x72\x59\x07\x77\x97\x15\x77\x62\xba\x9e\x08\x04\x10\xc1\xd5\xb5\xc0\x57\x79\xaf\x4d\x41\x5c\x68\xca\x97\xf0\x8e\x7d\x9a\xf2\x75\x2d\xa0\x59\x4a\xe7\xf9\x78\x2a\x3e\xab\x52\x54\x37\x7d\x80\xb2\xb6\xd0\x1d\xb4\x1c\xdf\xd1\x34\xa0\x66\xff\xfe\xb6\x49\x8a\xa8\xba\xf7\x88\x7b\x5e\x48\x65\x30\x93\xc4\xc7\x4d\x95\xe4\x75\x6b\x47\xce\xed\x8b\x15\x6c\x39\x2a\x49\x6d\x04\xd9\x32\x3d\xd7\x72\xb4\x67\x4f\x4c\x3c\x0f\xe6\x5d\x4d\x44\x01\xb8\x85\x90\x7b\x2b\x96\xe7\x89\x56\x82\x3b\x1e\x28\x91\xf3\x99\x8e\x22\xc9\xfb\x1c\x1e\x54\x18\x00\xc9\xf6\xc8\xe8\x67\xb5\xb9\x44\xc2\x1b\xce\x06\x2b\x06\x4d\x08\x47\xb4\x56\xf9\x27\xfe\x07\x40\xfd\x50\x41\xf8\xae\x33\x11\xf4\x72\xb2\xa1\xed\xcd\x56\x7e\x1f\xae\xe6\x52\xa9\x24\x65\xd0\x0a\x71\x3b\xbf\xba\x3a\xe6\x99\x57\x69\x7a\xda\x8f\xe2\x35\x90\x6c\x30\x95\x93\x0e\xd1\x6e\x07\x9e\x6b\xfa\x7e\xa0\x34\xdd\xc0\xa7\x0c\xdb\x3a\x3b\x51\xe1\x4a\x14\xc7\xb3\x1e\xaa\x72\xa1\xf4\x05\xe7\xcd\xa0\xd6\xca\xdc\xe7\xc8\x48\x55\x19\x97\x9b\xe2\x73\xbe\xbe\xf6\x69\xe9\xff\xf2\xf3\xba\xc2\x3a\x3d\x55\xc7\x01\xed\x5e\xe4\xe7\x4d\x44\x4f\xfd\x68\x8d\x71\x5a\x8f\xc5\xbf\x22\x8c\x1c\xd8\xcc\xbe\x54\x5d\x34\x2b\x56\x51\x5b\x02\xbf\xf8\x08\x3f\x8f\xaa\xfc\xef\x03\x16\xcf\x58\x7f\x78\x37\xd4\x4a\xef\x63\x89\x88\xc4\x7d\xf5\x30\x10\xd4\x7f\xad\xd5\x9a\x4b\x5f\x14\xfb\x0e\x52\x02\x78\xad\xfb\x48\x09\xf8\xa4\xf4\xa0\x3f\x1e\x32\x82\x2b\xe0\xdc\x0e\xb5\x91\x9d\x1d\x17\xdb\x2f\xbd\x4c\xe8\x51\xfc\xc6\xec\x44\xc1\xa3\x4e\x61\x45\xca\xa0\x05\xa5\x06\x88\xf6\x66\x69\x13\x48\xab\x42\xcf\x9c\xe7\x85\xed\xd1\xcc\x39\xbe\x0f\x41\x38\x8c\x29\x2b\x39\xf1\x3f\x04\x1e\x34\xf0\x5e\xa9\x29\x3a\x03\xc5\x48\x75\xab\x81\xea\xe0\x40\xdb\x10\x25\x3a\x47\x31\xae\x51\xe9\x58\xfa\xcf\x4f\x35\xc7\xf7\x2d\xb5\xbf\x3d\x36\x71\xb4\xe2\x60\x71\xb0\x0e\xc7\xb0\x4d\xf9\x44\x45\x85\x79\x3a\xce\x42\xbb\x9b\xfe\x54\xe2\x0f\x15\x3e\xdc\xc4\x26\x46\xed\xe3\x3b\x6a\x7a\xe9\x38\xc5\xd3\x22\xaf\x52\x5d\x92\x20\x09\x5a\x8e\x4d\xfd\x53\x27\x04\xd2\x37\x59\xdf\x24\xc5\xd8\xc0\x63\x63\xf1\x32\x43\x81\x93\x96\x71\xf8\xbb\xeb\x6a\x07\xe2\xfa\x5a\x8a\x40\xff\x62\xa0\xba\x24\x17\xb5\xb0\x0a\xf1\x82\xc1\xa3\x63\xb1\xef\xe8\xa8\xa8\xfb\xf3\xd2\xcf\x5b\x41\x37\x17\x86\x80\x27\x3e\x85\xd8\x69\xbb\xdb\x5f\x58\x68\x17\xe9\x38\x1c\xb4\x3c\xc6\xf2\x47\xb4\x9f\xa4\xfc\xf2\xb2\x6b\x57\xac\x64\xc6\x31\x3f\xcc\x78\x19\x0b\xd0\x72\xa2\x13\x05\x46\x32\x18\x9a\x7b\x0a\x9e\x98\x86\xe1\x78\x64\x12\x16\x55\x71\x22\xc4\x0e\x76\x36\x51\x96\xba\x97\x16\x4e\xb8\xb1\x49\x51\xc5\x4f\x7e\x59\x93\x25\x51\x9f\x6b\x69\xa2\xc0\x4a\xdb\x94\x4f\x82\x3f\xf3\x98\x92\x44\x98\x26\x45\x94\x10\x78\xa1\xe5\x1b\x1d\x2c\x5f\xca\x27\x53\x5c\x39\xaf\x2f\x1e\x6a\xe7\x85\xb5\xf1\xd0\xac\xba\x01\x78\x89\x82\xe8\x4d\xf0\x89\x22\xb4\xa8\x8c\x74\xbe\xa7\x7a\x58\x6e\xc8\xdc\xb1\x49\x5e\xa2\xb5\x04\x6f\x72\x07\x5b\x0a\xf6\xf5\xa9\x0e\xed\x50\xfe\x17\x7a\x1b\xa8\x2b\x1c\x27\xcb\x89\x24\x83\x65\xed\xe0\x32\xfe\x16\x99\x6a\xd8\x23\x0d\xf7\xfd\x7c\x1b\x55\x43\x75\x91\xc2\xb5\x32\x5d\x60\x6e\xbf\x65\xd7\xa3\x7c\xa0\xa0\x52\xbf\x8b\x3d\xcc\x27\xba\x41\x13\x8a\x2e\x8f\x90\x02\xd1\x4b\xe0\x13\x45\x2b\x5c\x98\xbc\xb0\x31\x41\x18\x1c\x73\x25\xd0\x7f\x7c\xac\xd2\x81\xbf\xf2\x4b\x07\x5b\x8a\x9d\xff\x32\xb5\x33\x84\x59\xa2\xd6\xc2\x58\x47\x50\x52\x03\x81\xc9\xd0\xc9\x8b\x9a\xa1\x39\x7d\x7b\x23\x1f\x32\xa6\x5b\xd2\x7c\xa5\x36\x77\x45\xfd\xba\xcd\xf3\x6f\x2a\xbb\x36\x43\x70\x7f\x6c\xc3\x67\x3a\x8a\x81\xef\x8f\x4d\xc8\xf8\x2b\x15\x25\x51\xb8\xbb\x57\x2a\x9e\xff\x67\x27\xbe\x3c\xf3\x42\x87\xec\xba\x46\x05\x4a\x12\xe9\xa3\x6d\xd6\xb7\x13\x01\x49\x05\x91\x7f\x7a\xa2\xa6\x43\x7f\x2f\xf0\x77\xfe\x11\xd2\x5a\xf4\x9f\xf6\x52\xa3\x02\x6b\xe0\x2b\x9a\x4b\x13\x7c\x40\xb5\x80\xd0\x57\x7a\xb6\xe3\xcd\x9a\xf4\x98\x50\x77\x6e\x4d\xc8\x0f\x21\x93\xba\x83\x7a\x1a\x16\xe3\x9e\x4e\xeb\xaf\xfe\xaa\x7b\x5b\x0d\x30\x8c\x9c\x7a\x82\x48\x2f\x65\x1e\xcb\x27\x47\xf7\x94\x60\xff\x29\x55\xd9\x4c\xec\xdb\xc5\x93\x1e\x51\x80\xe9\x22\x74\x53\x76\xe3\x71\x49\xf5\x87\x9e\x44\x8d\x38\xa6\xa6\x37\xcf\x25\x45\x2e\xa1\x22\xb5\xb8\x84\xc8\x5d\xd0\x05\xf4\x8e\x18\x2f\xd7\x30\x8f\x78\xa0\x6d\x86\x51\x68\x04\x70\x85\x6f\x7f\x57\x43\x31\xde\x9d\xc2\xc1\x80\x0f\x92\x40\x2b\x2c\xc6\x82\xa2\xd4\x3d\xc5\x9f\x74\xcf\x61\x80\x87\x26\xcf\x2d\xb5\xa1\x84\x3d\xbf\xfa\x2b\x44\x06\xe7\xc9\xcf\xc3\x4d\xdc\x6f\x68\xfb\xbc\xda\xee\x65\x51\xb2\x4a\x0b\x1e\x4e\x08\xc3\x7b\x7c\x3c\x55\x4a\xaf\x1c\xeb\xd0\xc4\x51\x3f\x31\x2c\x63\x27\xb3\xa2\xd5\xef\x0b\x63\xb6\xcf\x3b\x6f\x4c\xa5\x82\xfb\xf7\xb7\x07\x69\xd2\x33\x74\x5b\x4e\x87\xcc\x2b\xb6\x5d\x51\x2c\x7d\x0c\xde\xce\x1f\xab\x9f\xe2\xdf\xf8\xba\x35\xd9\x6e\x9f\x4b\x6c\x52\x78\xc8\x02\x4f\x81\x2f\x05\x9d\xc5\x0b\x77\x09\x87\x4b\x3b\x9f\xa2\x50\x47\x14\xa1\x68\x21\xf0\x37\x35\x36\xcb\x4c\x15\x1e\xb7\x54\xb2\xfd\xfb\x4a\x59\xfe\xf7\x03\xdf\x66\x59\x35\x85\xdd\x5d\x99\x62\xbc\x6b\xa6\xc3\x72\x63\x37\x7e\x15\x9c\xa4\xb7\xc6\x28\x3e\x3d\x7e\x7d\xb7\xfa\xe6\x2d\x96\x97\x14\x2c\xa6\xaf\x8a\x44\xc9\x9a\xcd\x0b\x9a\x52\x7e\x42\xc1\xca\x1f\x22\x8a\xc4\xce\xbc\xa0\x08\x9a\x2e\x61\xfb\x31\x22\x1b\x91\x37\xd6\x35\x6b\x0a\xf2\x47\x14\x73\x05\x38\x05\x65\x3a\x4e\xec\x74\x15\x32\x44\x92\x4f\x22\xfa\xe3\x98\x81\x4f\x26\x8f\xad\xd9\x27\x26\xde\xc8\x0b\x2a\x06\x60\x69\xfe\x04\x2b\x00\xd0\xf0\x23\x0a\xa0\xdf\x02\xdf\x9b\x63\xe0\x53\xe8\x28\xef\xd4\xc7\xf9\xb8\x0a\x5f\x70\xfb\x42\xfe\xe7\xe7\xb3\x4e\x94\xba\x55\xa4\x5b\xe4\xe7\xe9\x0b\xa5\x87\xa4\x38\x7f\x02\x35\x5c\x76\x1a\xf1\x2d\xdc\xd4\x43\x97\xf7\x82\x61\x89\xfd\x14\x7c\xe0\xa3\x52\x89\xa9\x3c\x52\x8a\xb2\x99\xcd\x8b\x14\x14\x07\x4b\x3e\xf5\xf2\x33\x9c\x3f\x69\xb0\x00\x07\xda\x3d\x1b\xdb\xbe\x29\xac\x10\xf3\x2b\xfe\x14\xcf\x05\x2d\x46\x20\xb1\xeb\xf1\xc6\xae\xca\xf8\xcb\xde\x68\x39\x36\xf7\x47\xe4\x08\x24\xcb\xa7\x8f\x63\x37\x80\x25\x80\x9e\xfa\xd5\x3f\xd1\xf1\x58\xd3\xaf\xa7\xe7\x52\x5e\x3b\xd8\x36\xe3\x9c\xa4\xe3\x78\x96\xc1\xe1\x14\x7d\x21\xe4\x9e\x82\x43\x66\xe9\xd0\x24\x2d\x25\xea\x71\x8c\xeb\x8e\x02\xf2\xf2\x4d\x85\x2a\x52\x1f\x82\xea\x4a\x30\x1d\xd5\x8e\x41\x92\x7c\x55\x41\x3b\x2f\x2b\xff\x9b\x93\xae\x55\x5f\xd0\xd7\xa8\x7a\x7e\xa9\x29\x69\xbe\x6c\x82\xf5\xf5\xb3\xa8\x28\xd0\x0b\x46\x9c\x8b\x4e\x07\x1f\x6f\x17\x70\x59\x3c\xd4\x3e\xf4\xda\x5e\x5d\x57\xa1\xd5\x03\x47\xf6\x3e\x41\x3a\x10\x8f\x93\x43\xdf\xfa\x19\xf6\x16\x1e\xe2\x8f\x34\x55\xe0\x29\x45\x19\xb1\xf4\x42\x47\xf1\xd3\x00\xcb\x23\xf5\x74\xa5\x6f\x51\x06\xaa\x62\x79\x9c\x1f\x1e\x92\x90\x2f\xe9\x9a\x85\x64\x57\x41\xf2\x8e\x2b\x9c\xf7\xa7\x54\x69\x70\xc5\x79\x2f\x23\xa3\xa7\xf5\x47\x36\x8b\xe2\x74\x9c\xb7\x2a\xd7\xcd\x21\x77\xe0\xa9\x8a\xee\xa8\x41\xef\x74\x65\x85\x08\x48\x94\x9c\xc6\x0d\x85\xc9\x99\xe6\xa4\x26\x6e\x8f\x22\x8b\x42\x53\xc0\xf7\x21\x34\xd8\xa5\xe8\x7c\x77\x4d\x1a\xd4\x1b\xd3\x9e\xb0\xbb\x23\x3c\xbb\xa6\x84\xb4\xaf\x35\x89\xe5\xa5\x09\xba\xfb\x5b\xd7\xab\xdb\xdf\xba\x1e\x78\x68\x53\x16\xad\x49\x85\x14\x6d\xcd\x33\xaa\x39\xcb\xd5\x52\x20\x35\xef\xab\xee\xec\x2f\xfc\xc2\x5f\x9e\xa9\x01\x08\x9d\x66\xc3\x39\x8a\xaf\x90\x37\x3f\x0c\x04\x91\x9d\xf7\xa2\x19\x8f\x71\x66\x81\x5b\xa7\x45\xe1\x7c\xd7\x17\x0e\xc2\x6d\x0d\x68\xa7\x05\x0d\xae\xc6\x9c\x34\xe2\xb2\x88\x6c\x6f\x46\x89\xa3\x60\x7c\x1d\x4e\xea\x07\x8a\x4b\x52\x97\x90\x7b\x51\x4e\xe5\xa8\x27\x14\xac\xe8\x64\xa9\x51\xa8\x8a\x5b\xeb\x6e\xa9\x5b\x61\x9a\x28\xf3\x34\x2f\x38\xa1\x57\xf2\x3d\xdb\xb9\x8e\x22\xae\x3c\x39\x95\x7a\xbf\xd2\x1e\x9a\x70\x10\x25\x36\xdb\x50\xea\xbb\xa7\x95\x77\x3b\xad\x52\xe8\xcc\x44\xb9\xed\x51\x63\x45\x70\x69\xd5\x73\x61\x65\x79\x45\x48\x8f\xb2\x86\x42\x15\x49\x41\xec\x0c\x5e\x22\x1b\x74\x35\x23\x46\x33\xf4\x45\xfe\x3c\xfd\x2d\xb6\xc1\x31\xec\x15\xe6\x08\x25\x83\x8f\x30\x96\x61\x9b\x38\x41\x35\x1c\xeb\x6d\x37\x29\x5f\x6d\x71\xc4\x8c\xf8\xe6\x16\x59\x27\xfc\x20\x53\x4d\xe1\x1f\x10\x66\x0a\x89\x08\x39\x53\xf6\xb9\x58\x11\x08\xdc\x9e\x9e\x78\xd9\x83\x13\xb4\xf9\x51\x48\xbb\x13\xa8\x16\xe9\x0d\xd5\x16\xbd\xae\xa6\x2d\x62\xd3\x4d\xb3\xdd\x9e\x1b\xea\x11\x5e\xa0\xab\xfe\x2b\xdd\x92\xc0\x8f\x2b\x61\x0a\x1e\x9c\x25\x97\x54\xad\xe5\x8a\xe2\x1a\x7a\xb4\x1d\x86\xfa\xfa\x81\xf6\xe1\xf9\x37\xe0\x54\xa5\xaa\xa8\x62\xdd\x9b\x58\xb4\xa8\x7b\x1c\x05\x72\x40\xa2\x13\xc5\xdd\x04\x17\xcb\x9f\x2f\x15\x62\xe4\x36\x6e\x57\x32\x3c\x85\x4a\x08\x8b\x7c\xd6\x27\xaf\x58\x04\xb0\xcf\xd7\x95\xad\xbe\x5e\x7a\x49\x80\x26\x0e\xfe\xea\xff\x57\x67\x7d\x83\x98\x91\x6d\x1a\xe0\x82\x2f\xda\x85\x81\x11\xd9\x49\x4d\x0d\x8f\x7c\x94\x66\xec\x34\x10\x56\x1f\x0f\x7c\x88\x7d\x7c\xca\xf0\x1d\x7a\xad\x5d\x85\xc7\x63\xa7\x96\x5f\x93\x95\x91\x02\x96\xd2\xea\x18\xd0\x8c\x85\x8b\x6b\x19\xf3\xec\x06\x2d\x0f\xcf\xfb\x50\xa4\x5a\xa6\x28\x81\x80\xef\x45\x20\x29\x3e\x2d\xff\x2d\x2c\x72\xfc\xd1\x1f\x62\xe1\xc2\x16\xdd\x69\x22\x29\x68\x5b\x93\x47\x36\x9b\xa1\x57\x23\x00\x16\x72\x63\xcc\x3a\x84\x34\xf0\x71\xfc\xa0\x55\x42\x30\x48\xf3\x51\x54\x80\x65\x40\x80\x17\xb0\x18\x7c\xac\x6a\x16\x66\x35\x4b\x13\x18\x64\x89\xc1\xe8\x0a\x45\x7c\xb9\xa5\x38\xa0\x1b\x86\xe0\xf2\x11\x3b\x20\x66\x5c\x57\x2c\xa4\xe7\x95\xe1\x1c\x46\xa3\x6d\x72\x46\x78\xa4\xa2\x6d\xe4\x0b\x5f\xdd\x68\xd5\xe6\x33\x1e\x51\x71\x52\x61\xa2\x3f\x09\xf4\x90\x7f\x43\x22\x43\xc8\x70\xba\x1c\x01\x9f\xd1\xaf\x08\x2a\x6d\x9a\xe6\xbf\x0a\xea\x86\x69\x98\x19\x21\x79\x47\xed\xff\x3d\xad\x6e\xfb\x9e\x2a\x6d\x45\x49\x8f\xdc\x67\x6f\x8e\x5e\x3c\x6c\xee\x03\x1d\x9d\x1e\xa7\x27\x20\xdc\x33\x2d\xc7\xe1\x71\x53\x8f\x08\x3c\x50\x52\xb6\x5d\x6b\x31\x93\x89\x10\xf0\x0b\xfa\x0c\x1c\xdd\x57\x3a\x50\xfe\x8d\x26\x20\xdd\x5b\x69\x2c\x70\x37\x21\x9b\xf7\x1f\xbf\x58\x2b\xa3\xc4\x4c\xbc\x02\xf3\x0d\xd3\xc8\xc7\x93\x1a\xa9\x46\x51\xcc\xd2\x72\x10\x8d\x38\xbc\x36\x99\x4f\xa3\x2b\x12\x29\x39\xa5\x38\x71\x52\xc5\x8f\x85\x4d\x7a\x36\x53\xcd\x01\xde\xeb\x48\x6b\xee\x97\xbe\x57\xb4\xa7\xe3\x69\x74\xae\xf8\x04\x3a\xed\xd9\x78\x97\x1f\x81\xda\x0d\x0f\x27\xe0\x0a\x05\x49\x44\xa5\x15\x01\xc3\xed\x52\xf1\x7a\xfc\x91\x66\x62\xfa\xa9\x42\xef\xac\x9b\x2c\x9f\xf5\xcb\xe8\x2e\xd5\xd2\xf8\x98\x2e\x4c\xb4\xee\xfd\x34\xe0\x85\x7a\x39\x2a\xcd\x9e\x68\x39\x3e\x13\xa0\x85\xb7\x20\x27\xe1\xc6\x0f\x96\x65\x22\x19\x3d\x0d\x16\x62\xc5\x32\x61\xfc\x64\xfd\xd9\xb5\xdc\xd4\xf3\xce\x29\xca\xb7\x7d\x4b\xed\x21\x89\x55\xce\x7a\x1b\x77\x8f\xee\x1b\xa1\xe8\x67\x30\x42\x48\x4e\x77\x63\xc8\x1f\x6e\xe6\x8a\x72\x54\x83\xb4\xb0\xf1\xac\xca\xeb\xff\x9e\x1e\x68\xc2\xed\x22\xe8\x05\x96\x06\xbd\x84\xb9\x89\x6f\xf2\x86\x51\x16\x8a\xf0\x00\x19\x27\xf8\x7b\x4c\x5e\xf0\xb1\x8e\x7b\x58\x69\x9a\x8a\x12\x6e\xbe\xc1\xe1\x71\xff\x67\xcd\x78\x75\xc4\x71\x48\x73\x8e\x25\x25\x61\x27\x61\xeb\x07\x03\x3e\xdf\xee\x17\xf7\xef\x6f\xef\xdf\xbf\x0c\xbd\x5a\x47\x61\xe0\x32\x90\x1d\xa8\x9c\x3a\x3d\x11\x5f\x0e\x3c\x1b\x28\xb0\x0d\xf7\x06\x34\x55\x18\x98\x23\x6e\xba\xe6\xaf\x25\x5f\x6f\x0a\x94\xc3\x01\x35\x87\xda\x04\x3e\xf5\x8c\x9a\x61\x7c\x58\x6a\x12\xba\x70\xd5\x66\x9a\xcc\xad\xd4\x64\x6e\x81\x67\xce\x8d\x86\x95\x5f\x23\xe5\x38\x32\xf8\x28\xd9\x9c\x85\xc1\xe7\x93\x86\xa9\xb1\x03\xed\xb5\x54\xb8\x09\xe0\xfe\xcf\x28\x1e\xa6\x69\xad\xb8\x7d\x4b\x20\x8a\x91\x5e\x6a\xd3\x94\xb6\x4f\xe6\x87\xe3\x21\xa4\x6f\x96\xe7\x3d\xe6\x6e\xdf\x92\x9b\x00\x6c\xe8\x31\xe4\xeb\x11\x97\x80\x79\xa6\x40\x37\xcd\x3c\x3b\x4b\xc1\x88\x09\x58\x6c\x67\xbf\xf6\xef\x77\xf6\xcb\xf3\xe6\x64\xa6\x32\xbc\x31\x2e\xd8\x39\x62\xcf\x7e\xd0\x84\x2e\x18\xc5\x26\xb4\xdd\x94\xbe\x1d\xe6\x02\xf4\x02\x7c\xdc\x24\x54\x49\x2a\x24\x59\x95\xbd\x38\x66\xdc\x1f\x06\xfe\xcd\xfd\x50\xcd\x62\x0e\xcc\x30\x8a\x8b\x94\x53\x6a\x11\xc3\xd0\x90\xad\x9b\x81\x47\x32\x17\xe1\x40\xf8\xa3\x9c\xf6\x88\x43\x34\x7e\x84\x38\x4e\x38\xec\x9a\x66\x88\xf3\x38\x1a\x8d\xa4\xc2\x05\x60\x08\x57\x3a\xf9\x64\x2a\xee\x5f\x58\x68\xdb\x62\xb0\x11\xdb\x84\x97\x06\xfc\xe9\xbf\xa1\xa7\xc6\xc7\x6e\x6d\x87\x96\x59\x54\x5b\x7e\x6d\x73\x78\x24\x94\x12\x8f\x91\xd4\x67\xc2\x73\x6c\xa9\x8b\xd8\x45\x7c\x02\x52\x0c\x1e\xac\xfb\xff\x93\x5d\x62\x1a\x36\x04\xe9\x6e\x54\x74\xf1\x10\x1f\x7f\x3f\xf0\xc0\xf1\x4d\x34\xc6\x11\x81\x7d\x48\x24\x1d\xc2\xdb\x8a\x5e\xba\xa3\xac\x5b\x3e\xe0\x85\xe0\xaa\xa8\x17\x11\xfb\x03\x5a\xa5\xb5\x07\x8c\xbe\xe5\x6d\x10\x99\x30\x12\x2b\xf0\xbc\xd9\x57\x70\xf5\x4c\x05\x42\x0c\x3e\x58\xe4\x27\xca\xd6\x2f\xff\x35\xd1\xbe\xc3\x53\x11\x91\x9c\x2a\xe6\x65\x91\x5a\xb4\x73\x11\x44\x71\xd3\x14\xeb\x00\xc3\xb0\xf0\x25\x0f\x83\x9d\x7f\x8e\xb3\xdd\xbb\x28\x4e\xa0\xc2\x72\x02\xe3\xfa\xe8\x20\x5c\x0b\xfc\x28\xec\x77\xd8\xff\x22\xff\xff\x54\x71\xd9\x5e\xa0\x8e\x09\x02\x0a\x1e\xc9\x40\x85\xf4\x36\x32\x01\xc4\xb5\xad\x0e\x59\x0f\x78\x9d\x8f\x1a\xa8\x91\x0f\x10\x1d\xf5\x9c\xe7\xe3\x98\xa3\x59\x6a\xf8\x54\xd4\x06\x40\x51\x70\x5c\xf1\xf5\x7c\xa0\x7a\xf5\xd3\x06\xe6\xf0\xfc\xab\xed\x15\x9b\x65\x11\x8c\x80\xf3\xa8\xde\xbb\xaa\xd0\x70\x64\xa2\x4c\xe9\xce\x1e\xab\x0d\x1e\x7e\x43\x41\x3a\x12\xf4\x23\xa3\x34\xc9\x91\x83\xcb\x9a\xab\x2e\x45\xa4\xf0\xab\x47\x82\xcb\xfa\x60\xea\x5e\x17\x0f\xb5\x0b\x33\x92\x6d\x88\xc6\xcf\xd7\x35\xd2\x1f\x0d\xe1\xdc\x1e\xec\x2e\xcf\xb7\x13\x67\x66\x39\xac\xc1\xb2\x92\x18\xe7\x59\x57\xfa\x2b\xaa\x5c\x47\x41\x62\x58\x8f\x41\xa6\x5b\x9b\x0c\x4f\x3c\x1e\x76\xc5\xeb\xc1\x08\xff\x03\x25\x0a\xf3\x0f\x54\x3e\xd6\xb5\x96\x51\x56\x48\x14\xbf\x2a\x7d\x01\xe8\x2b\x55\x34\x89\x92\xde\x73\xd5\xf2\x44\x34\xfe\xa3\xd2\xaf\x96\xb3\x3a\xef\xbb\xa4\x3a\x05\xe7\x15\x5d\xf5\xff\x0f\x69\x18\x1c\xe7\x4d\x4a\x7a\xb0\x0e\x9e\xee\xf8\x1d\x87\x82\x13\x32\xcb\x27\xb5\xca\xe4\x73\xd4\x10\x43\x40\xf1\xb3\x40\x8d\x1c\xb2\x46\xb4\x14\x8d\x15\x23\xe2\x5c\x47\xe5\xdb\xba\x72\x99\x87\x99\x19\x69\x9a\xc1\x4f\xd4\xf8\xf1\x27\xcd\x22\x88\xb1\x19\xf7\xb8\x16\x8c\x15\xcb\xd4\xf9\x7c\xa2\x60\xb7\xbd\xc8\xb2\x5c\x01\xaa\x21\xe8\x4e\xf0\xb1\x03\x67\xf7\xa2\xcc\x86\x00\x9c\x22\xab\x6b\x79\x82\xbc\x53\x2f\x81\x97\x80\x29\x6c\x4a\x37\x60\xf1\x9d\x3f\xd6\xd1\x0b\x95\x9e\x21\x4a\x55\x5b\x2e\xd6\x0d\x33\x6b\xb1\x54\xa4\x4f\xac\xf4\x61\x2e\x35\xc9\x3a\xaf\x99\xd0\x24\xa1\xc3\x44\x08\xf0\x9c\x9e\x31\x9f\xa8\x8c\x25\x4c\x87\xc3\xb4\x27\x83\xc7\xc8\x3b\x11\x3d\xf2\xb1\x5a\x31\x23\x93\x60\xea\x10\xf8\xba\x23\x2a\x89\xfd\x5b\xb8\x2c\xa4\xee\x98\xab\x72\x8c\xfb\x9e\x79\x85\x75\x9c\xe1\xb1\xa3\x7e\xd4\xab\xb5\x62\x15\xfa\x7a\x2a\xab\xaf\x12\xdf\x9e\x0d\xa3\x1e\xa2\x2b\xc1\x7b\xd2\x77\x33\xc2\x8f\x8c\x22\x0a\x17\x27\x7c\x0c\x61\x63\x3b\x1a\xa4\x3c\x8d\x5d\x23\x59\x11\x38\xc1\x8b\x53\x05\xb1\x24\x9d\xa9\x7c\x0e\xac\x25\x92\xca\x1a\x17\x3a\xea\x51\xa7\x6a\x64\x21\xe3\x55\x6e\x17\x30\x29\x9d\x4a\x3c\x7e\x47\xd1\x1b\xd9\xb7\x47\x36\x2b\xf2\x27\xbd\xf6\x19\xa4\x21\x50\x52\xe2\x91\x21\xdc\xdd\x1f\x91\xe3\x13\x3d\x2e\x35\xe7\x8f\x27\x25\xf2\xfc\xd5\x8e\x14\x6f\x43\xcb\x94\x2b\xcb\x81\x1a\x42\x3b\x5e\xfa\x84\xbe\x67\xd6\x22\xc9\xb5\x5d\xcd\xa1\xba\x2b\x3e\xa9\x49\x6d\x87\x83\x8d\x19\x95\x63\x5e\xd3\x75\x6c\xfa\x65\x24\x50\x1f\xab\x70\x76\xc5\x84\x45\x9a\xcd\x79\xe5\x3f\xee\x60\x08\x35\x78\x75\xed\x5c\xf0\xa6\x6f\xe3\x3a\x2d\x7c\x2b\xf0\x1f\xb7\x9b\x84\xa8\x57\x62\x4c\xee\x2b\x1a\x8c\x4d\x45\x83\xb1\x59\x67\x7e\x7c\x87\x04\x0a\xc5\x5a\x9f\xd9\xc6\xcb\xef\x58\x8d\xee\x29\x35\xf8\xdf\xad\x51\xd7\xe4\x2a\x95\x79\xb5\xa6\xe2\xc0\xc7\x0a\x1f\xd5\xb7\x49\x34\x86\x2f\x43\x62\x7f\x37\x50\xc4\xea\x77\x9b\xf4\x3e\xf0\x94\x94\x9a\x19\xba\xe4\x7c\xdc\x08\xb4\x1f\xc5\xe9\xba\x44\x78\xac\x42\x54\x97\x24\x7a\x46\x0d\xe6\x66\xab\xb3\x1a\xbe\x7e\x5c\x35\x65\x76\x55\xa6\x77\xeb\x21\x2e\x11\xe9\xc8\xfd\x60\x8f\x72\x1f\x32\x6b\xeb\xaa\x83\x9e\x85\xf3\x72\xd0\x34\xd8\xf1\xf3\xf9\xee\x7a\x11\xa0\xe5\x44\x89\x1e\xa1\xd0\x08\x23\xf1\x27\x31\x21\x8b\x20\xef\x5f\x04\x2a\x49\x24\xb0\xcd\xc1\x2d\x0e\x9e\x90\x0d\x5e\x6b\xa6\xb3\x08\xd3\xac\x27\x3e\x1a\xeb\xfe\x5e\x6d\xd2\x98\x1e\x89\x70\x31\x4a\xfd\xde\x24\xbd\x39\xc5\xac\xf4\xe4\xc4\xef\xef\x5a\xed\x41\x70\xfc\x4e\xb1\x7c\x61\x81\xcb\xa7\xdf\xec\x88\x45\xee\xa7\x92\x6b\xd7\x30\x64\x4e\x1b\xbd\x5a\x2f\xb0\xe2\x2c\x7e\x25\x18\x1b\x27\x51\x58\x64\xe3\x7e\x3f\x06\x31\x34\xca\xd6\x10\x43\x14\x15\x24\x37\x41\xf6\x5f\x9d\x2a\xf7\xf8\x97\xfa\x97\xff\xd2\x9c\x87\x7d\x9f\xc5\x0f\xe1\xbb\x8f\x07\xaa\x91\x09\x83\xc2\xff\x50\x2a\xb0\xf9\xd1\xd2\x4f\x88\xd9\x38\x26\x43\xca\x53\xf1\x78\x06\x58\xaf\x17\x14\x21\xd0\x29\x97\x01\xf4\xa2\xbc\x3b\xce\x9c\x9c\x18\x9e\xfc\x87\x0a\x38\xfc\x61\x13\xb7\xb3\x70\x59\x73\xd7\x19\x96\xfa\x52\xa9\xa8\xab\x2e\x05\xdb\x5a\x78\x3f\xff\xf3\xed\xe5\x79\x32\x1f\xb0\x5d\x5f\x53\xf5\x5e\x08\xa1\x14\x59\xd3\xe7\x88\xd3\x35\x95\x14\x5e\xe2\x6d\x55\x65\x88\x92\xb7\xc6\x48\x42\x96\xe7\x85\x19\x2a\xf0\x14\x9b\x3f\x2d\xb7\x33\x7e\x1d\x9e\x7f\xa3\xdd\x4f\xbb\x55\x4a\xbb\xd1\x4f\x53\xb8\x5e\x20\x6f\x50\xd9\xe6\xe3\x9a\xb9\xd9\xc8\x0b\x4c\x46\x8b\xa2\x31\xad\x08\xd8\xc9\x19\x6a\x1f\x88\xee\x31\x96\x17\xff\x4b\x47\x21\x71\xbf\xd6\x0e\xfa\xeb\x26\xe0\x6a\x1c\xad\xc2\xf9\x39\x2e\x09\x87\x1b\xbd\x48\x77\x2f\xa9\x90\x02\x33\x24\x76\xbd\xe5\x07\xdc\xff\x3b\xfa\x33\x3e\x76\x23\x15\xeb\x51\xd2\xa3\x62\x1a\x16\x3d\x5f\x15\x76\xd0\xbf\x29\xa7\xa3\x31\xfe\x97\xc0\xc7\x3a\x67\x94\x24\x81\xaf\xd2\xe5\xa1\x61\x51\x28\x19\x08\x50\xcd\xe5\x53\x81\x0f\x41\x4c\x3f\xb3\x34\x1b\xf0\x14\x3d\x02\x34\x6b\x7f\x53\x21\x49\x8f\xe1\x79\x0a\x2f\x03\x2d\x7c\xc4\x9d\xf7\x4b\x9f\x88\x7f\xa2\x6a\x69\xff\x9a\x7c\x27\xcf\x44\x04\x6a\x96\x1e\x65\x6e\x07\x4d\x59\x58\x74\x30\x64\xef\xa3\x47\x36\xc9\xa3\x34\xa1\x67\xa2\x32\xbf\x45\xfe\x0a\x26\x4e\xe2\x13\x60\x30\x00\x7f\xbe\xaf\x54\xe8\xae\x28\x58\xf4\x7d\x57\xbe\x1a\x27\xdd\x38\x4a\x56\x1d\x42\x4a\xe8\x21\xab\xcf\xb9\x69\x32\x25\x32\xaf\xa9\x7b\x6d\x4e\x84\xc3\xcf\xf8\xf6\xc2\x2d\xce\xfd\x10\x75\x6d\x95\xbe\x2b\x57\x06\x9a\xa0\xb7\xe5\xe4\x9e\x2e\x69\xd0\xfa\x65\xa2\x08\x45\x11\x9b\xe9\x0a\x51\x82\xc1\xd2\x42\x9e\xbb\x17\x51\x3b\x36\x2b\xb3\xb3\xc1\x66\x7d\x4d\x77\x08\x6b\xf4\xa9\x62\x51\xb7\xcf\x77\x1a\x06\xaf\x89\x1f\x63\xc6\xeb\x7a\xec\x9e\xa8\xf5\x8e\xc1\x78\xc4\x88\xcf\x76\xd4\x18\x57\x66\x4d\x31\xc0\x50\xb5\xbe\x34\x24\xc8\x47\x29\x60\x96\x7e\xe5\x73\xaa\xb2\x98\x24\x51\xae\xd4\x85\xd8\x42\xf3\x89\xc2\x2b\x85\x59\x54\x44\xdf\x1e\x63\x95\xe2\x85\xde\x54\x11\xc1\x4d\x08\xa5\x4a\x7e\x59\x64\x51\x77\x4c\xfa\x95\x0e\x5e\x09\xcd\x3d\x98\x7e\xcc\x5a\xf3\x28\x7c\xf9\xb2\x52\x40\xe9\xd9\xac\xa0\x0a\x2d\xeb\xf9\x30\x75\xbf\x62\x1f\xd8\x6a\xf0\xf8\x07\xda\xeb\xe6\xed\xa1\x11\x6f\x5c\x93\xc8\xe3\x93\xa9\xa2\xcb\xa1\xd7\xaa\x08\x33\xcd\xd0\xad\x46\xf8\x79\x4c\xd1\x1b\x1d\x6b\x22\x2a\x2c\xa2\xa1\x55\xb2\xe2\xb7\xf0\x2e\xf9\xa4\x59\x2c\xc9\xe9\x44\xbb\x62\x88\x5b\x30\x9b\x53\x7e\xe0\xf5\x03\x32\xce\x2d\xad\x7d\x98\x20\x26\x1d\x43\x59\x8b\xe7\xdf\x84\x4b\xd6\x27\x1d\xc3\xd1\xc6\xac\x52\x3c\xbc\xa0\x56\x33\x90\xcd\x58\x4f\x08\x84\x65\x48\x48\x5c\x6d\xbc\x31\x1a\xa4\x43\xc8\x6e\x48\x83\xae\xd5\xd1\x72\xb3\x78\xb8\x92\x76\xd0\xd5\x61\xa5\x9d\x50\x92\x65\x23\x02\xb6\xd1\x88\x28\xf9\x31\xd1\xd1\xa0\x3f\x17\x21\x0d\xad\x1c\x3f\x0e\x07\x4e\x83\xc6\x09\x4a\x7b\x71\xe9\x29\xf8\xd0\xc2\x42\xdb\x14\x7e\x7d\xb9\x0a\xc7\x29\x5c\x11\x0b\x87\xc1\x45\xa0\xe0\xf6\xbe\x4a\xa5\xba\x36\x4e\xd7\x77\x55\x16\x0f\xff\x76\x4d\xd1\x00\x5e\xd3\xe3\x1e\xbb\x3a\x2a\x45\xd9\x52\x7c\x11\xbf\x1f\x78\x76\xd8\x6b\x4d\x40\xfb\x7c\xdc\x1d\xa5\x36\x31\xfc\xda\x79\xc6\x44\x8d\x36\x36\x92\x3b\x0d\x4d\xf6\xb6\x08\xa1\x21\x9d\x84\x5a\x1d\x4c\xfc\xf7\x4a\x25\xbd\x70\x7d\x2a\xda\x13\xf4\x59\x3a\x06\xf2\x0c\x95\x33\x11\x94\x10\xa0\x9c\xd2\x20\x42\xa5\x02\xaf\xf2\x43\xad\x80\x3d\x3b\x51\x14\x64\xe3\xa2\x48\x93\x59\xf5\xe6\x2e\x61\x19\xca\x77\xe0\xeb\x6b\xe2\x10\x7c\xd2\xac\x99\x6e\xad\xc8\x39\x33\x5e\x03\xab\x42\xc0\x1b\x12\x3f\xe5\x69\xb5\x12\xd3\xcc\xce\x2a\x50\xf3\x79\x35\x72\xff\x1e\x2d\x60\x89\x90\xfc\x60\xdc\xd6\x54\x39\xe8\x17\xdb\x43\x9b\xf4\x4c\x18\x71\x8b\x1b\x65\x39\xd4\xf4\xf9\xb8\xc1\x9c\xb4\xc3\x41\x9a\xba\x79\x32\xe1\xcd\xa6\xb7\xc9\x27\x0d\x85\xe5\x37\xda\x99\xed\x8d\x43\x89\xfa\x1c\x5f\x82\x63\xd8\xbe\xf2\x58\x54\xbd\x19\x17\x83\x14\x9c\xc5\x33\xaa\x9c\xc4\xe4\x28\x82\x09\xa0\x87\x21\x3a\xbe\xcf\xab\x59\xe7\xac\x2f\x02\xee\x0c\x04\xad\x81\x42\xbd\x5d\xb6\x6f\x0f\xa2\x6e\x44\x55\x3f\x4c\xb9\xa3\xda\x7a\x5d\x11\xd1\x5f\x57\xbe\xc1\x14\x03\x9b\x98\x96\x16\x95\x3d\x5a\x2a\xda\x9f\xa3\x4e\x5e\x23\xb3\x5d\x1b\xf3\x72\x77\x83\x6b\x7e\x88\x4d\x4d\x1e\x84\x83\x28\x34\xfd\x94\x2e\x56\x26\xbf\x75\xa5\xd0\xc7\x63\x2b\x26\x62\x91\x07\xd4\x82\x6e\xa2\x75\xc3\x27\x53\xb6\x79\x61\xb1\xca\x13\x91\x27\xa0\x80\xd9\xea\xf8\xae\xc0\x6d\xc4\x66\x42\x96\xee\xa0\x4a\x49\xef\xa9\xea\xde\x11\xfc\xdc\xd3\x73\x8f\xbb\x28\x14\x45\x66\x80\xfa\x14\xad\xd2\x97\xff\x38\xf1\xc2\x3a\x2d\x08\xc7\xfc\x70\x4b\x01\x83\xcf\x52\x29\x1b\xe8\x85\xef\x23\x10\x94\x3a\x80\x4a\xef\x1f\xa9\x47\x9d\x87\x06\x7d\x21\x81\x56\xcd\x76\x3c\xa9\xf9\xec\xc4\x9b\xaf\x74\x3d\x61\xc5\x69\x11\xf2\x27\x2f\x89\x2d\x72\x44\x81\xc9\x8e\xe0\x8e\x01\xd8\xb9\x86\x67\xc7\x27\x74\xd5\xd2\xc4\xf3\x5f\xbd\x12\x9b\xa1\x9d\x51\xe8\xa3\xeb\xb0\xa1\x8e\x91\xdf\x15\x23\xce\xba\x9d\xda\xcd\xec\xba\xcd\x22\x07\xe3\x44\x80\x74\x4a\xb7\xfc\xf5\x4f\x54\x81\x4d\xd2\xaa\xc1\xb2\xbc\x2f\x3d\xaf\x1c\xd9\xbe\xc5\x5f\x6a\xb5\xfe\xca\x41\x0e\x5e\x38\x26\xe1\x13\x55\x64\x7b\xed\xaf\x2e\xcf\x2a\x3e\x98\x4b\xea\x1d\xb0\x67\x46\x80\xf9\x05\xb7\x39\xf0\x67\x45\x2d\x1f\xe9\x8d\xc1\x3c\x8c\x37\x84\xe6\x33\x8c\xfe\x53\x1d\x3f\x09\x08\x98\x29\x1c\xe1\x1f\x50\x9b\x04\xaf\x17\x81\xa4\x30\x39\x36\x17\xa3\x93\xbe\x6b\x0f\x6a\x96\x10\x61\xa5\x74\xda\x82\xd6\x90\x34\x2c\x19\x00\x91\x7a\x56\xa2\xb7\x97\xa6\xb9\xf4\x5e\x6d\x2f\x2c\x3c\xef\x63\xb0\xeb\x81\x22\x32\xb9\x8a\xa6\x30\xb7\xd6\x69\x8b\xcb\x08\x6e\x6b\xf1\xd0\x16\x37\xcd\x11\xd1\xff\x2e\xa5\x87\x5b\xe7\x60\xdd\xa5\xf2\xe7\x5b\x82\x50\x72\x42\xcc\xf9\xfb\x5a\x78\xfd\x5d\x8e\xaa\xa5\xc9\x58\x3d\x18\x47\xd3\xe7\x75\xc4\x4e\xa2\xff\xe4\x06\x3b\xab\x95\x29\x3d\xff\x26\x85\xac\x71\x5c\x44\x23\x1e\x2a\x40\xd1\xfe\x88\xea\xa8\x1e\x51\x1c\x35\x55\x24\x60\x42\x1e\xe8\x97\x19\x90\xdb\x74\xe9\x7c\xdc\xa0\x35\x45\xf3\x96\xe8\x4b\xe2\x62\x7f\x5d\x71\xae\xfd\x7a\xad\x54\x99\xdb\xb7\x67\x5b\x9a\x27\xd8\xcd\x6f\x9f\x55\x64\x55\x67\xb1\x0b\xa5\xee\x53\x13\xce\x8a\x86\x73\x1a\x66\xa6\x18\x07\x37\xd9\x7f\x0a\x0a\x56\x0d\x40\xa2\x40\xcb\x7f\x56\xfb\xbe\x6e\xd4\x7b\xda\xa3\xce\x7e\x8c\xee\x03\xd3\xb0\x95\x9e\x86\xed\x33\x8d\xc5\x07\x5b\x8d\x23\xdf\x72\x10\x39\xe6\x2f\x64\xe8\x03\x36\x0c\xfe\xea\x93\x40\xa1\x04\xa0\x6d\xca\x1f\x0f\xa8\x46\x25\xbc\x6f\x8d\xc2\x30\x59\xda\xe5\xb1\x06\x51\x6e\xa2\x6b\xe1\x13\x05\x90\x1c\x27\x51\x61\x49\x1a\xfe\x0d\xde\x72\x5f\xe2\x4f\x9d\xf4\x45\x75\x45\x88\x03\x7f\x56\x7b\x58\x0f\x02\x35\xb9\x7c\x51\x0d\xcd\xf0\xb4\xa9\x46\x8c\xe0\x5e\xcf\x36\xc1\xe8\x7a\xe9\x9a\x85\xc3\x45\x8a\x82\x77\x8a\xba\xd7\x67\xa5\xd2\xde\xbb\x3e\xbd\xf7\x16\xdb\x87\xe7\x77\xd3\x16\x73\x8f\xcc\xab\x35\xb0\xb8\x2f\xec\xc2\xa6\xa2\x32\xfb\x6e\xe0\xf1\x8d\x77\x54\x59\x00\x9c\x1b\xf0\x43\x37\xa6\xa8\xbc\x09\x07\x4c\xa9\x14\xe2\x9c\x9b\xca\xd0\x73\x96\x83\xbd\xf5\x99\x0e\xc4\x33\xdb\x8b\xa8\xc7\x47\xef\x02\x75\xad\x59\xb2\x69\x7c\x3c\x71\xea\x8e\x66\x44\x8e\x13\x8f\xed\x6b\xb5\xf8\x98\x4e\x5f\xc0\xc2\x92\x9b\x9b\x61\x37\x5a\x33\xb1\x4d\x8a\x59\xdd\x89\xa4\x9b\x46\x92\x79\x44\x73\x56\x82\x98\x13\x4f\x63\x47\xe7\x45\xdd\x50\x19\xa5\x89\x4d\x8a\x7c\x56\x61\xdb\xff\x26\xbf\x6a\xd1\xbe\x6f\x39\x11\x4e\x50\x02\x08\xc9\x7e\x13\x7a\x23\x34\x19\x62\x00\xfc\xd1\x0d\x0d\x5d\x7a\xc0\xc6\x0a\xd1\xeb\xb1\x86\xf9\x9f\xb6\xc9\xf3\x34\x8c\x4c\x61\xb9\x2d\x8a\xdd\x78\x8c\x3f\x88\xaf\xf9\xdf\xf0\x48\x44\x88\x76\xba\xc8\xdb\x1e\x99\x0d\xc2\x9c\xe3\x49\x5c\x56\xf0\xe0\xcb\x0a\x9e\x5e\xa4\x59\x65\xef\x7b\x84\xc6\x46\xbd\x06\x21\x8b\x54\xcd\xaa\xf7\x8d\xce\xfa\xad\x9a\xc7\x4a\x63\xfb\xa4\x87\x06\x7e\x97\x50\x57\xb8\xa7\xab\x0a\x90\x7d\x07\xf5\x07\x2d\xb9\x2a\xbe\x40\x8d\xfc\x72\x44\xc2\x62\x8a\x9a\x30\x02\x3c\x88\x78\x23\xa7\x94\x00\x6e\x3e\xb0\xd9\x06\x5e\x97\x34\xa3\x15\xb0\xff\x8a\xba\xd9\x8f\x6b\x2c\xf0\x35\xfc\x9c\x79\xbb\xa5\x30\x0c\x97\xc0\xf3\x28\x89\x52\x03\x68\x6b\xdd\x64\xb9\x59\x6f\x4d\x15\x92\x85\x26\xa5\x21\x84\x1f\x65\x34\x5d\x07\xbf\x80\x2a\x39\xc6\xd7\xf9\x58\x05\xa5\x23\x53\xd0\x1a\xf4\x98\xe9\x0b\xf4\x50\xdd\x18\xa0\xcb\x31\xcf\xe9\xba\xdc\x39\xc7\xa6\x9d\xd9\x7c\x94\x26\x9e\x79\x9c\x27\x50\x02\x05\x11\xbb\xa1\xf8\xf2\xf2\x71\x37\x2f\xa2\x62\x5c\xd8\x96\x9a\xaf\x3e\xaa\x80\x46\x47\xd5\x80\x4d\x34\x34\x7d\xa2\x48\x76\x2c\x4a\x0c\x66\xe7\x13\x47\x6d\x61\x63\x1b\x16\x19\x69\x4b\xb6\x7c\x02\x00\x14\x10\x1f\x37\xd0\x73\xc7\x69\x28\x84\x38\x8b\x5b\x4f\x50\xa5\x69\xeb\x89\xce\x5e\xc5\x47\x82\x5a\x5a\x7d\xac\x58\x31\xbc\xf8\xf0\xce\xac\xd9\x8c\x7b\x60\xd2\x28\xf6\xe4\xea\x8c\xd4\x42\x0c\x72\x3f\x78\x51\xd5\x7c\xd2\x6e\x6e\xb3\x35\x6e\x31\x23\x6a\xdc\x81\xca\x2a\x9f\x4c\x5e\x8a\x6a\xb2\x5c\x79\x94\x26\x26\x46\x59\x50\xd6\xb1\xef\xf3\xed\xf0\x54\x72\x17\xa7\x27\x37\x28\xd5\x4e\x7a\x06\x34\xdc\x6e\xe8\x1a\x6b\x43\x7a\xbe\x0a\xd3\x3b\xb0\xa6\x87\x4e\xae\x5e\x0e\x6e\x99\x2c\x2c\x38\xca\xe7\xd6\xe2\x21\x8e\x37\xcf\xd6\xcb\xed\x3e\x60\xfd\xa5\x1e\xd3\xd7\x09\xe7\xb3\x6f\xd0\xfe\x73\x25\x56\x38\xce\x23\x30\x7f\xbb\xb8\x4a\x81\xba\x5c\xcd\xb8\xb0\xd1\xbf\xb7\xfd\xf4\x8c\x46\x5a\xae\xfc\x29\xb2\xc7\x28\x12\xdf\x2d\xfd\x62\x7a\x3f\x68\xbd\xf9\xe6\x16\xf3\x1a\xc3\x01\x3c\xdd\x51\x7c\x18\x67\xb4\x8e\xfb\xad\xb2\xf5\xba\x87\x93\x23\xa8\x76\xb4\xba\xae\x8a\x3c\xd3\xa1\x20\x01\xcf\xe8\xa9\x89\x12\x05\x7c\x81\x46\x0e\x38\xad\x7a\x40\xf1\x0a\x80\xfb\x2f\x60\x72\xdb\x61\x2a\xbc\xd5\x06\xf5\x07\x72\x75\xd0\x27\x22\x52\x9f\x9b\x54\xcf\xde\xcd\x20\x54\x06\x84\x19\x78\xe9\xa1\x0a\xef\x47\xb5\x8f\x51\x84\xff\x33\x13\x0a\x42\xe5\x15\x93\xeb\xc6\xfa\x7a\x0a\xb8\x46\xe1\x95\x68\xc9\x8c\x68\xf9\xcd\x4e\xeb\xd7\x16\xd9\x82\x9d\x60\xaf\x84\x48\x61\x06\xd8\x50\xd4\x59\x66\xb1\x58\xb9\xb4\xe9\x92\xa3\xd1\xb8\x1b\x57\xe6\x92\xcb\x08\x2c\x15\x01\x6b\x29\xba\x11\x7e\x9a\x27\x24\xae\xa8\xea\xd2\x15\xb0\x44\xba\x97\x67\xa7\xc0\x0b\x8b\x87\x08\x8e\x30\x4e\xa2\xbc\x98\x55\x66\x7b\x27\xd7\x7c\xa4\x91\xe6\xeb\xa6\xd0\x55\x47\xd0\x70\x43\x51\x4f\x09\x52\xb2\x88\x59\x23\xdc\xe9\x06\x78\x0d\x81\x06\x68\xfc\x52\xfb\x2d\x33\x34\x4e\xfd\xc7\x4d\x51\xe8\x58\xf7\x39\xc5\xc1\xd0\xef\x73\xb5\xce\xc9\xd2\xbb\x11\x4e\x94\x63\x44\x7d\x74\x1a\x01\xb5\xd4\x1e\x27\x99\xe5\x61\x38\x37\xb7\xe4\xb6\xc4\x15\x05\xc1\x5f\x8f\x92\x5e\x0e\xdf\x02\x84\xcd\x69\x32\x7f\x7c\xec\x12\xff\x51\x9c\xce\xe0\x39\x89\x0e\xab\x47\xc8\x5e\xd0\x13\xbb\xd7\xa6\x5c\xcb\xfe\xfd\x95\xfd\x8e\xa9\x0e\xac\x88\xba\xb4\x6b\x52\xe8\xed\xa8\xd7\x8d\x8a\x56\xb5\x82\x1d\x2a\xa2\x5a\xe7\x32\xe1\xe8\xa1\x33\xe1\x4a\x11\xb6\xbc\xde\xf9\xfb\xf4\x85\x7c\xec\x90\x33\x83\x34\x2b\x38\x9c\xc3\x75\xff\x63\x2d\xa1\xf8\x8f\x15\x34\x7b\xc5\xc4\xf1\x13\x5e\x72\xfd\xd3\x52\x11\x6d\x3d\x50\x54\x0a\x77\x15\x1f\xfe\x27\x40\xdd\xa1\xe1\x71\x0b\x93\x16\x7c\x52\x7a\xad\x93\x77\x95\xe6\xcd\x51\xcf\x2b\x6a\x12\x43\xd3\xcc\x2a\xed\xf8\x91\x2a\xad\xfe\x48\x97\x7c\x63\x93\x45\x89\x2d\xe0\x29\xe4\x51\xb4\x9c\x84\x37\x67\x22\x42\xeb\xaa\xa9\xb1\xf2\x91\x0d\x89\x22\x97\x56\x12\x0a\x02\x20\xbc\xd5\x0c\xca\x78\x1c\xdf\x75\x95\x6d\x33\x1a\xd9\x22\x2a\x40\x57\x85\xe5\xf7\x75\xa0\xac\xd2\xc7\xd8\x6a\x82\xbb\xf6\x0b\xe6\xf8\x54\xd2\xf0\xe6\x9b\x04\xf1\x9b\xf1\x12\x29\x3f\xa0\x9f\x44\x5a\x72\x4d\x81\xa9\x36\xcb\x17\x75\x43\x24\x1f\xc7\xd5\x1e\x9b\x51\x84\xe3\x9b\x0a\x23\xcf\xa8\x36\xe6\xc2\x71\x36\x3e\xb3\xb9\x2d\x08\x22\xcf\x09\x0a\xd2\x1b\x26\x34\x28\x15\xfd\xcb\x1e\xe0\xa6\x44\x1d\xbc\xe5\xe8\x36\x77\x76\xd4\x10\x33\x0f\xd8\x0a\xa7\x89\x1f\xa2\x7c\xaa\xd3\xa0\xdf\x70\x60\xf9\xc0\x13\x3e\x62\xba\x55\x2a\x99\x3b\x9e\x6c\xc1\xc5\xdf\x07\x2f\xa0\x93\xe6\x53\xd3\xc9\xd5\x5a\x71\x71\xc8\xf2\x01\x17\x87\x78\x40\xf3\x56\x93\x69\x5b\x33\xf1\xd8\xb8\xd4\x45\x12\xf3\x96\xd3\xa8\xf8\xf5\xf2\x39\xc5\x7e\xb4\x16\x71\xbe\x29\x50\x7d\xba\x49\x3e\x69\x82\x6c\x9b\x21\x24\xc8\x68\x53\xb8\xe1\x47\x3f\x08\x19\x68\x1e\xd9\xe1\xc6\x9c\x27\x06\x86\x5a\xa8\xd3\x10\xac\xf6\xb2\xe3\xd3\x73\x35\x9d\x1b\x8a\xb2\xe8\x63\x15\xf7\x99\x2c\x2a\x06\x43\x5b\x44\x61\x4b\xf1\x5d\xb0\xda\x2b\x9f\xa8\x60\x61\xe1\xd7\x0e\xcc\xf8\x0a\x14\xe3\xa9\x90\x2e\xde\xa7\xcb\x10\x55\x3c\x59\xe7\xfd\xcc\x24\xc4\x4d\xaf\x47\xc9\xe9\x1e\x61\x67\xef\xe3\x97\x3c\x08\x48\xac\xf3\x30\x7a\x9b\x7d\x0f\xaa\x5a\x68\xec\xf1\xf1\xd4\x1e\xf8\xc5\xf6\x8a\x35\x42\xe3\x82\x64\xe5\x3c\xbe\x99\x4f\x9a\xb8\x2e\x40\x9d\xdf\xf2\xa1\xf4\xfd\x40\x85\xd2\xf7\xcb\x97\x3c\x76\x22\xcc\x6c\xf5\xea\x0d\xc7\x67\xa8\x96\xde\x53\xe3\xa1\xf7\x14\x98\xbd\x30\x59\xb4\xb2\x92\x13\x08\x4d\x02\x34\x7a\x2d\xf0\x41\x33\x14\x3d\x08\xab\x84\xd8\xd1\x3c\x49\x8b\x82\x45\xa4\x90\xe1\xfc\x5f\x0a\xf4\x73\x5a\x11\xa0\x9e\x52\x69\x42\x3f\x4b\xd7\x6d\x96\x2b\x99\xcb\xdb\x0a\xf1\x7a\x7b\xca\x71\xbd\xf9\x66\xf5\xff\xab\x6e\xa1\x21\x38\x82\x43\xe2\x63\x95\xae\xd3\x6c\xeb\x1a\xf1\x4d\xea\x59\x72\x7e\x67\xa2\xad\xd1\xf2\x42\x80\x0d\xd3\x7c\xed\xdc\x86\xe3\xac\x2e\xae\x8c\x2e\x12\xb7\x9e\x75\x8b\x6c\xb3\xa1\xf4\x76\xb0\xfd\xa7\x7f\xf5\xbf\x3e\xf0\xab\xbf\xbc\x34\xab\x66\x94\x2f\x2b\x5a\x0a\x70\xe4\xe0\x3d\x3f\x31\xa9\xe2\x37\x19\x1e\x77\xcd\x9b\x68\x18\xc5\x26\x8b\x37\xe6\xbc\x83\xdf\x8b\x80\x12\x85\x95\xcb\x4a\x62\x02\xc9\x3d\xab\x2c\x6b\xe1\x88\x4b\x6e\x51\x87\xa6\x18\xa4\x71\x14\xce\xe8\x0a\xf3\x84\x3e\x87\xc2\xcb\x4d\x3d\x51\x78\xdd\x13\xfd\xd9\xac\x88\x56\x68\xc2\x8c\xf6\x03\x0a\x02\x3f\xad\x89\x6f\x28\x99\xb6\x1b\x6a\xe6\xca\x7e\x7b\x2c\x63\xdd\xcc\xdb\x18\xf8\x29\xa5\xba\xc4\x68\xcf\x1a\xf2\xda\xf8\x75\xb0\x52\xf2\xf1\xa4\x81\xa6\x30\x1f\x38\x46\x12\x29\x64\xb5\x1c\x8d\xe7\x03\xb5\xf7\xb3\x08\x72\xcc\x02\x4d\x52\x30\xa5\xa9\xfc\xf8\xf5\xc5\x43\x6d\x13\xa7\x49\x7f\x96\x5c\x80\xc0\x6d\x2b\x73\x8b\x06\xcc\x51\x32\xc9\xd8\x3b\x08\xa7\x85\x3a\xb5\x89\x9a\x01\xa4\x1b\x69\x26\x35\x7d\x7c\xee\x6b\x3c\x65\x3e\x69\x82\xe9\x75\xa3\x7e\x5f\x74\xb9\xf1\x67\xb7\xf4\x67\x6e\x39\xb0\x4b\x2f\x2a\xc2\x41\x4b\xc9\xa9\xfe\x0e\x57\xfa\x44\x0d\xd2\xbf\x89\x64\x3c\xec\x32\xb3\xa6\x94\x2f\xe9\xfd\xa1\xa6\x77\x07\x3b\xdd\x55\x26\xab\x35\x06\xc7\x33\xd3\x51\x80\x14\x85\x2f\xc8\x2c\x90\x8a\xf9\x20\x1a\xcd\x78\xb2\x2e\xc0\xc0\xd0\x36\xba\x5f\xea\x01\x42\x15\xc1\x5a\xd3\x13\xe9\x5a\x91\x72\xf7\x71\xd4\xb9\xa6\xa1\x99\xd0\xc6\x45\x9a\x98\x96\x46\x5e\xaa\xaa\x7b\x13\x74\xb1\x5d\x45\x38\x11\xf3\x2e\x61\xd3\xbf\xa7\x26\xda\xde\x53\xdd\xbc\x2a\x22\xce\xb8\xc0\xa7\x4a\xa8\xec\x4e\xf8\xa4\xc9\x48\x64\x36\x8c\x4d\x34\x9c\x55\x33\xc3\x3b\x3b\x75\x61\x45\x0f\x63\xfd\xaa\xf4\xaa\x5f\x1a\x38\x92\x5b\x4b\x50\xb1\xc5\x43\xfc\xac\xbe\x83\x9c\x97\x4f\x14\x70\xa4\x9b\xa6\x39\x54\xb5\xaa\x8c\x0b\xbd\x1e\x94\x18\xf9\x78\xca\x0e\xed\x5b\x02\x73\x8f\x83\xfe\xa0\x7f\xda\xa2\x04\x06\x6f\x0c\x99\xa0\x04\xdc\x8e\x5e\x6b\x14\x15\x45\x6c\x67\x14\x8b\xc8\xc5\x52\x07\x7d\x7e\x32\x63\xb3\x2e\xdf\x6d\xf2\xe7\xaa\x5b\xe1\x5e\x5e\xe0\x4b\xfb\x0c\xa1\xe2\x61\x36\x44\xc8\xce\xb5\x56\x4b\x5d\xb6\x18\xbd\x58\xee\x8f\x69\x15\x42\xc4\xd1\x40\x71\xdc\xd7\xb4\x19\xa3\xd2\x87\xbc\x97\xf5\x23\x87\x2e\x35\xfa\xfe\x8f\x54\xaf\xe9\x54\x50\xe3\x33\x5f\x58\x74\xc5\x66\xb9\x7f\x13\x86\x69\xd6\xcb\x67\xb1\xb7\xd0\xd1\xbd\x89\xf5\xc0\x76\x93\xbe\xba\x36\x51\xcf\x91\xbc\x22\xc3\x10\xce\xe6\x19\x4f\x9c\x74\x39\x50\xfa\x0c\x4f\x00\xe6\x04\x67\xb9\xa3\xb3\x57\xb9\x30\xd3\xb5\x32\xfd\x8b\x06\x23\xef\x6c\x3e\x99\x9a\x7a\x3e\x3c\xdf\xce\xa2\x10\x63\x65\x8e\xce\x59\x71\x3b\x37\x8a\x8c\x9a\x2c\x8e\x0c\x09\xe8\x71\x84\x20\x05\xf8\xea\x5b\xf8\x78\x8a\x53\x7f\xf1\x10\x55\xb2\xfa\x09\xf6\x3f\x9b\x1f\xd7\x2b\xf5\xde\xee\x48\xb0\x47\x2d\x8c\xff\xec\x45\x5a\xb5\x4c\x16\x8f\xca\x29\xea\x59\x47\x03\x85\x04\xff\x5f\x4a\x4d\x09\xc6\xbb\xc9\x05\x2e\x4e\xb8\xf3\xbc\x2a\x4d\x60\x35\x23\x76\xe0\x02\x82\x28\x15\xab\xe9\xc3\xeb\x84\xbb\x43\x88\x7f\x24\x50\x64\x3d\x17\x4a\xd5\x50\x04\x23\x2b\x2c\xd1\x43\x1a\xb6\x12\x7c\x51\x8d\x3e\x4d\x89\x50\x7d\xa5\x8c\xca\xec\xc4\xb3\x15\x7f\x30\x35\xd8\x5d\xa5\xdf\x84\xc4\x8f\x6c\x12\x82\x3d\xce\x55\x01\xd5\x98\xc0\x5e\x57\xbc\x4a\x7a\x63\xa5\x90\xc4\x8a\x31\x2a\x15\x3c\xad\x54\x56\xcf\x36\xed\x7d\xfb\x76\x38\x30\x49\x1f\x75\x7c\x38\xbd\x39\x04\x10\x12\xdf\xfb\xbd\xff\x50\xe1\x57\xf3\x38\xcd\xbb\x36\x13\xf2\x66\xb9\x4a\x3d\xc0\xa0\x86\x39\xd6\x6d\x2f\xb1\x79\xcf\x6c\xec\xa2\x67\x8f\xd8\xe4\x9e\x9e\xc9\xde\x49\x3d\x78\x04\xd9\x3b\x89\x26\x8a\x95\xbc\x4b\x25\x23\x5a\x53\x3a\x9f\x72\xcd\x4b\x4b\x07\xdb\x71\x15\x35\xce\xd2\x32\x62\xe9\x21\x18\x0e\x84\x80\xb3\x1d\x4f\x22\x7b\x5e\x3b\xb7\x8b\x6a\x6e\xb4\x6f\x93\x22\x16\x5d\x62\xd8\xa5\x1d\x1d\xfa\x12\x3e\x99\xbc\xec\xb9\x1d\x93\xc2\x66\x85\x89\x12\x41\xf2\x36\x29\xfc\x35\x14\x35\x7a\x59\xea\xa7\x22\xe5\xef\x94\x7a\xe8\x05\x07\x6f\x5e\xaf\x3c\x8f\x57\x0d\x80\x33\xdb\x31\xf1\x5e\x6e\x47\x83\xbc\xf2\x72\x7b\x98\x8e\x73\x5b\xd0\xf8\x91\x52\x3f\x2e\xfd\x28\xcd\x45\x8d\x73\xcd\x73\x13\xc5\x26\x29\x70\x3d\x78\xbe\x08\xaf\xf8\x58\xe1\x94\xd2\x30\x1c\x57\x71\xb9\x53\xc4\xc2\x1c\xb5\x70\x63\x7c\xb3\x56\x40\xa0\x3a\x7d\x14\x47\xc5\x06\x29\x90\x81\xa8\x88\x87\x2d\x05\xab\x56\x7d\x13\x1c\xd9\x2d\xba\x3e\x00\x27\xde\x9f\xea\xf5\xbc\xd2\x4e\xd2\x04\x34\xda\xa8\x8f\xfe\x9e\x9a\x08\x65\xc2\x30\x19\x00\x6d\x29\x46\x9b\x97\x15\xfc\x6d\x48\x96\x8c\xe2\x2d\x35\x61\x85\x55\x2b\x55\xf4\xbd\xba\x75\x30\xce\xba\x86\x40\x59\x6f\xb0\xf3\xbe\x0b\x0b\x8f\x2c\xfd\xa2\xd2\xe5\xfb\x04\xb6\x14\xa1\xc0\x47\x35\xc6\xc6\x0d\xb4\x3d\xa5\x11\xdd\x72\xd3\xd6\xf7\x03\x0d\x93\x6a\x28\x9e\x8f\xb2\x74\x98\x7a\x95\x4c\x57\xbe\x51\xb7\xb7\xfd\xed\x2f\xcf\xb7\x47\x36\xcb\xd3\xc4\x48\xdb\xdd\xf1\xa5\x3a\x29\xb6\x1f\xa9\x31\xc6\x6e\x26\x28\x44\x78\xaa\xbb\x9a\xc1\xe6\x2e\xb0\x2c\x70\xc8\xc7\x61\x12\xf9\xa4\xdc\xde\x37\x5d\x9e\x6f\xff\x7c\xae\x73\xed\x09\x46\x2c\xf8\xa4\x89\x05\x62\xb8\x51\x0c\xb8\x8a\x25\x00\x75\xdf\x4e\xbc\x3c\xd5\x73\x5c\x9e\x27\x76\x3e\xb0\x6c\xc0\xe1\xf2\x90\x04\xa0\x9a\x4c\x83\x8d\x52\xc7\xed\x29\x2c\xe3\xa1\xd7\xda\xfd\x2c\xb2\x6b\x86\x48\xf4\xb5\x0c\x1f\x5d\x81\x64\x1f\xcf\xf9\x2a\x31\xe9\xa0\xce\xf8\x95\xb2\x19\xa8\x22\xc6\x7d\x25\x99\x32\x3b\xd1\x8a\x3c\x29\x5d\xa0\x4c\x8d\xb7\x34\x63\x92\x1f\xf5\x98\xd6\x4b\xa8\x82\xd8\x81\xc9\xfa\xf6\xb1\xa4\xb2\xdb\xfd\xec\xf2\x7c\x1b\x2e\xd6\xc4\xd1\x3b\x62\x4e\x90\x11\xbd\x1d\xf8\xec\xe8\x6d\x17\xb3\x84\x26\x33\xa1\xc1\xcd\xa3\xea\xc6\x21\x00\x9f\x4c\xc5\x0c\x87\x5e\xab\x2c\xfd\x3a\xdd\x10\x3b\x01\x2d\xcb\x5c\x7a\x5c\xf9\x45\xa7\xd1\x95\x99\x11\x6e\x01\xbf\xce\x31\x11\x9f\x34\xc4\xc8\x07\xdb\xb9\xf5\x97\x2f\x08\x2f\x35\x57\x76\xab\x49\xee\xa1\x9f\x66\xab\x1b\xec\x7d\x1c\xab\xae\x67\x2d\x3a\xef\x3a\x3c\x3d\x9b\xdb\x8c\x6b\x81\xae\xc2\xea\x12\x96\x39\x32\x73\x28\x46\x4f\xb3\x6e\x1e\x7a\xad\x6d\x8a\x41\x5c\xc5\x59\xbc\x4e\x1d\x42\xdf\x05\xad\x9a\x3c\x32\xcc\x2c\xb7\x19\x85\x7e\xbd\xda\x80\x7c\xac\xe6\xa0\x56\x0c\x4f\xcc\x22\x40\x40\xdb\x90\x8f\x5d\x52\x6d\x7a\x6f\xa5\xe3\x8c\xd4\x8b\x5b\xda\x70\x2b\x52\xb0\x69\x65\xdd\x03\xaf\x1d\x24\x9d\x25\x67\x33\x90\x7c\x23\xe9\xe2\xe3\xf2\xc5\xc8\xf5\xf7\x42\xdb\x1b\x67\xce\x54\xe8\x1a\x84\x20\x1e\xd4\xc0\x67\x5e\xa0\xda\xcf\x94\x9c\x4a\x31\xfd\x46\xd3\x6a\xa6\x9e\x4c\x38\xab\x18\xb0\x81\x1f\x45\xec\xb4\xa7\xe3\x23\x57\x2e\x47\x08\x91\x9d\x67\xff\xe8\x66\x2c\x19\x25\xf0\x00\x84\x00\xc2\x92\x4a\xfb\x1d\xa1\xdf\xc7\x9a\x2c\xed\x22\x83\x08\xb4\xdf\x73\x9a\x3d\xd5\xc2\x92\xa9\x83\xe9\xfe\xc7\x81\xf6\x28\xb3\x2b\x2c\x01\x23\x28\x72\x45\xab\xb6\x59\xbe\xe4\xae\x2e\x1a\x0e\x6d\x2f\x32\x85\x65\x51\x38\x51\x3b\xf4\xcb\xeb\x62\x93\xf7\x4f\xd7\x6c\xd6\x1b\x23\xe4\x12\x72\xe0\xea\xe9\xe3\x18\x83\xe4\x38\xbe\xad\x48\xb8\x57\x32\x9b\x84\x83\xa7\x34\x35\x27\xe5\x2b\xae\x04\xe1\x32\xe9\xef\xe0\x7a\x19\x34\x87\x08\xd7\x65\x32\x8e\x14\xf8\x66\xe0\x69\x33\xf9\x49\x22\x44\xbd\xc4\x0f\x4f\x06\xff\x55\x4d\xec\x92\x96\xa9\xb6\x79\x81\xfa\x1c\x32\xc6\xef\xe0\xc9\xf2\x89\x9a\x0f\xa3\x22\x8c\xe3\x90\xbc\xa7\x67\x66\xee\x35\x3d\x9e\x2c\x8d\x63\x62\xae\x56\x8a\xed\x81\xcf\x46\x4f\x37\xd0\x21\x1d\xac\x2c\x67\x12\xda\x38\x4e\x33\x0c\xba\x6b\x06\x5b\x3e\x6e\x62\x90\xcd\xd3\xb1\x60\x69\x61\x64\x51\xcc\xe0\xe3\x26\xbd\xad\x70\x23\x8c\x5d\xc0\xed\x70\x66\x4b\xa2\xe1\x7b\x5f\xc9\x16\x4e\x17\xfd\x5e\x69\xdb\x71\x96\x76\xd3\xa4\x97\x73\x89\x8d\x39\xfc\xf1\x90\x65\xbe\x56\xc1\x61\xa6\x2b\x9d\x0b\x8b\xed\xdc\xc6\x3e\x24\x44\x9c\x7c\xaa\xf4\x90\xf7\x53\x5a\x70\xc8\x9a\xc2\x26\xaa\x99\xf7\x28\xf0\x84\x84\x8f\x1a\x60\x3d\xe0\xfc\x68\xf9\x3a\xe6\x95\x40\x75\x54\xa7\x0b\xa1\xcb\xf3\xed\x81\x49\x7a\xf1\x76\x5d\x9a\x1a\xba\x71\xaf\x6b\xb1\xac\x44\x49\xf5\xa2\x58\xa8\x47\xe9\x24\x38\xc5\x5e\x47\x86\x38\x5e\xeb\x02\x18\x24\x22\x17\x2d\xa7\x8a\x41\x45\xff\xad\x73\x53\xf6\xba\xb2\x7e\xd4\xff\x19\x32\x39\x0b\x32\xea\xd3\x78\xa2\x7c\xa2\x49\xc4\x7a\xe3\x98\x87\xe8\x45\xf0\x8b\x5e\x84\x48\x81\x29\x7c\x76\xbc\x6e\x36\xf2\x27\x95\x8a\xd6\x51\x45\x6f\xc9\xd8\x7a\x86\x3c\x63\xfb\xa1\xd0\x7a\x15\x0f\x02\x35\x9d\xdd\x94\x7f\xc8\x64\x92\x9f\x7e\x79\x62\xe2\x67\x87\xb7\xd4\x2c\xdc\x7d\x4d\x67\x03\x32\xc4\x5d\xad\xed\x4a\xd0\xc2\x66\x4e\x15\x21\xc7\xbb\xe6\x09\x85\x6f\x50\xf5\xc2\x09\x49\x3b\xea\xb9\x07\xee\x41\x9b\x5e\xef\x49\xa5\xdf\x72\xa6\xac\xa1\x26\xe8\xab\x84\xe9\xca\x07\xeb\xa8\xe7\x0a\xb1\x8e\x4a\xa9\x59\xf5\x42\x20\x82\x2d\xa7\x28\xb0\xa9\x00\x18\xcf\x74\x3c\x4b\xfb\xb8\x27\x8c\x07\x28\xc3\x7c\x56\xaa\x71\xbb\xcf\xa6\x1c\xcb\xc2\x42\x7b\x48\xe0\xdd\x59\x8f\x4f\x38\xa7\xa1\xf2\x3b\x3a\xbe\xb1\xff\x29\x5d\xa5\xd0\x17\xa9\x01\xab\x41\xb6\x91\xc7\x36\xc3\x74\xa4\x34\x58\x75\x34\xe3\x29\xa0\x8f\xaa\x70\xe1\x62\x4d\x71\x17\x2f\x5a\xe4\x77\x9f\x53\x74\xf2\x5d\xde\x0f\xd2\x43\xda\x54\xf0\xc3\xcd\x26\x4d\x9d\x95\x34\x0b\xb9\x67\x2f\x8e\xca\xc3\x8a\xf8\x7d\xc2\x27\xe8\x81\x9e\xb5\x28\x8d\x6d\x51\x98\x27\xe8\xa7\x10\x99\xff\x66\xe9\xb9\x18\xef\x95\x6a\x42\xe9\x76\xa0\x86\x98\x41\xea\xca\x63\x8c\x8a\x94\xf3\xa8\x56\x2e\xe3\xc6\xa3\x74\x77\xfc\x0d\x86\x26\x8f\x92\x74\x4e\xf5\x28\x6f\x60\xfd\x89\xc3\xa5\xcf\x61\x09\x7c\xa6\xd4\x00\xcf\x04\x9e\x6e\xec\x4c\x9d\x9d\x2c\x2b\x5e\x84\x45\x74\x2d\x71\x5f\xcb\xc2\x48\x3f\xec\x03\x73\x80\xe0\x95\xfe\x36\xdd\x05\x12\xab\xab\xd4\xf3\xe4\x82\x8d\xd2\xe4\xb9\x54\xee\xac\x89\x12\x2f\xea\x89\xe8\x03\x1e\x9a\xf7\xfa\xe2\x21\x47\x1d\xe7\x47\xb9\x6a\x82\x9d\xf7\x03\x4f\x8f\xc0\x84\x99\xa8\x0a\x9e\xd6\xdd\xe1\x7f\x86\x92\x03\xb6\xe2\xc9\xc0\x57\x6d\xff\x1e\x83\x78\xb8\x3b\xa2\x7c\xfb\xc8\x26\x06\x63\x59\x07\xb8\x06\x72\x9c\x9d\x30\x9f\x4d\x2d\x99\x85\x85\xf6\x60\xdc\xb7\x1c\xb7\x39\x46\xb3\x25\xdf\x59\xf7\xd5\xf4\x38\x4d\x7a\x69\x82\x28\xca\x01\x63\xaa\xdb\x45\xdb\xed\xba\x42\xf2\xdf\xa1\xa0\x80\xff\x3b\x05\xb9\x8e\x6c\xc5\xb5\xa2\x4e\xd7\x6a\x5b\xbe\xf1\x5f\x14\x51\x31\xee\xd9\x39\xfa\x1d\x90\x90\x31\xe2\x11\x0b\xf3\x3c\x2d\x4c\x47\xe3\xea\xd0\x29\x5f\xd0\x77\xa3\x9a\x3b\xd7\xf1\x64\x34\xd9\x5a\xca\xe4\x05\x4c\x8d\x47\xb7\x27\x34\x79\xdb\xa6\xb3\x7f\xe5\xf5\xf6\xfe\xfd\x78\x80\x5a\xda\x5b\xe4\x96\xbc\x1d\xcd\xd2\x70\x55\xb2\x3a\x11\xda\xa1\xfb\x81\xaf\x3a\xa9\xb8\x74\x3e\x51\xd1\x4e\x1c\x25\x36\x6b\xd5\x49\x04\x35\xd9\xe0\x74\x20\xd9\x5e\xc9\xcc\xb8\x3f\xe0\xa2\x0a\x76\x1a\xfa\x1d\x7c\x3c\xd5\x8b\x97\x09\xa5\xa1\x49\x36\x9e\x52\xf3\x63\x88\x08\x91\x9f\xfe\x59\x52\xcf\xe1\x51\xe4\xba\x54\x86\xea\x96\x3c\x39\xa9\xc3\xc5\x68\x0d\xe3\x52\x3f\xa2\xb7\xe0\xec\xb9\x1b\x8f\x7c\x61\x42\x1b\x18\xf5\xa7\x2d\xc5\x8f\x6d\xf2\x3c\xca\x0b\x93\x14\x79\x8b\xfe\x42\x06\x00\x7d\x64\x75\x4a\xf9\xc9\x7c\x3d\x4a\xfa\xf9\x2c\x2d\x2f\x9e\xd4\x28\xbd\xa2\xc0\x29\x45\x70\xf7\x37\x4b\x0f\x01\xbd\xda\xf0\xfc\xde\x68\x63\x36\x15\x51\x0e\xa3\x28\x02\x0f\x51\xd8\x6c\x88\x1d\x97\xdb\x49\x5a\x44\x3c\x99\x24\x80\xa5\xea\xe7\x45\xb3\xdb\x27\xc5\xff\x4a\x99\xd1\x22\x43\x09\x6f\x17\xf6\x1c\xea\xe1\xa7\x55\xc7\xe9\x94\xea\x49\x9e\x2c\x15\xfd\x15\xec\x7a\x4d\xfc\x9d\x3f\xad\x9f\x60\xd7\x54\x1b\x50\x38\x42\x50\xef\xb9\x8d\x5d\xc4\x27\x4a\x30\xae\x97\x45\x14\xdd\x11\x80\x06\xf6\x0f\xf1\x81\xa3\x1a\x5b\x9e\x77\x80\x68\x55\xb8\x79\xba\xd3\x30\xdd\x91\x87\x54\x49\xe6\x10\x17\x59\x3e\xf7\x17\xf8\x64\xaa\xce\xf6\x8b\xed\x51\xcc\x3c\xde\x22\x35\x50\xd9\x01\x11\x17\xa8\x35\x64\x7b\x1b\x33\x6a\xcb\xdd\x09\x54\x03\xe9\xa4\xaa\xce\x5d\x6c\x98\x07\x38\xd0\x1e\x44\x85\xe6\x75\xbc\xa7\x37\xd4\x43\x84\x4d\xfc\x2f\xf4\xf4\x85\x93\xcc\x97\xae\xf2\x6f\x99\x6f\x61\xcb\xa3\xfe\xd3\x9a\xe0\xfd\xf1\xd9\xd4\xb4\xf7\xd2\x52\xbb\x48\x0b\x13\xcf\xf8\x92\xf6\x55\x35\x3a\xf7\xef\x68\x41\x4a\x42\xe6\xc7\x5e\x90\x0f\x66\xb6\x07\x0b\xca\x32\xf1\x0a\x03\x7b\x9f\x6c\x3c\xbe\xe4\x7a\xa9\xd8\x88\x37\x35\xf9\xd0\xe7\xe4\xab\x44\x64\xbe\xe5\xa8\x67\x2f\x4f\x15\xaa\x16\x0f\x69\xf4\x8a\x87\xeb\x81\x1e\x92\x8f\x7d\x4d\x67\x23\x29\x06\x91\x51\x99\xd8\x17\x5a\x27\xee\x8b\x29\x66\x94\x57\xda\x03\x9b\x75\x35\x7d\x0e\x46\x06\x04\x26\xe9\xfb\xf4\xb7\xd4\xe4\x63\x37\x7a\xc7\x64\xcc\x9b\x80\x38\xf1\xa8\x52\x28\x3f\xaa\x18\x01\xa2\xa4\xb0\x49\x6e\xe3\x1a\x43\x4f\x5d\x59\x8c\xde\xb4\xe0\x68\x1b\xa2\xa1\x28\x09\x07\x0c\x93\xe6\x7a\xf0\x3d\x2c\x5a\x3e\xa9\xb2\x4b\x57\xae\x2f\x5e\xac\x1e\xbf\x08\xaf\x7a\xf2\xd6\x9b\xec\x42\x51\x14\xfe\x1e\x85\x07\xa8\xe3\x71\x0b\x88\xa7\x97\x75\x70\x05\xda\x84\xad\x73\xea\xd6\x9e\x9d\x28\xc8\xc3\x39\xa2\x26\x70\x28\xe6\xe5\x79\x4e\x8c\x99\xff\x5c\xe8\x42\xa9\x6a\x2a\x73\x31\x14\xaf\xc0\x05\x7e\x46\xef\x9d\x1f\x7a\xa0\xc4\x94\x4e\x04\x0a\x12\xfc\x29\xf6\x11\x33\xd6\x29\x6a\xb3\xe7\xa6\x12\xd2\x7d\x4b\xed\x5e\xb4\x56\xc5\x8e\x6a\x06\x08\xed\x07\x3e\xae\x45\x59\x79\xb1\xb1\x5b\xb1\x9e\xd2\xba\xc5\x5d\x9e\x28\x6b\x70\x25\xd5\x6c\x80\x89\x73\x42\x23\x95\x61\x77\xba\x77\x6e\xd4\xe6\xb2\x52\xc8\x7b\xcb\x66\xd4\x67\x54\x20\xbb\x13\x41\x6d\x80\x5d\x2a\x85\xc5\x60\x9c\x68\x85\x71\x98\x59\x11\x3a\x90\x05\xde\xb5\xb1\x57\x91\x45\xb4\xf9\x9b\xf4\xd3\x7c\x3c\xe5\x3b\x5e\x27\x1e\xa3\xb5\x54\x60\x53\xae\x78\xab\x26\xa3\xfc\x58\x6a\x1c\x11\x9e\xa9\x36\x04\x28\xee\x51\x4d\x5e\x6c\x69\xb9\xa8\x81\xcd\xec\x0a\xcf\x4c\x1f\xd4\x54\x58\x4a\x8d\x7a\xa9\x46\x7f\xb5\xe8\xba\x25\x2f\x68\xa4\x62\x61\x93\xea\xd6\x7c\x33\x55\xcb\xa5\x5c\x50\xc0\xbb\xdc\x3a\x5e\x26\x07\x9c\x3a\x2c\xcc\x31\xa7\xb5\x1c\xff\x38\xc9\x77\xd7\xa8\xea\x3d\x97\x1e\xc7\xf3\x52\x8f\xf4\x75\x26\x1e\x22\x45\xc0\x7e\x9e\xfb\xab\x30\xea\x60\xa5\xc2\xe7\x1f\xa8\xc2\x42\x11\x25\xab\x9c\x64\xb3\xa6\x46\xa9\x3a\xd5\x97\x83\xed\xb5\xea\xca\xe2\xdb\xa4\x1f\x25\xd6\x12\xef\x8d\xfe\x0d\x7e\xd0\x12\xac\xbd\x54\x67\x25\x8b\x48\x93\xa6\xa5\xb1\x3b\xf4\xd8\x05\xd4\xa3\x17\xf8\xa8\xf8\x16\xde\x89\xc0\x9f\x14\xd9\x16\x2a\xd7\xfc\x0f\x81\x62\x66\x7e\xa8\xe2\xbc\x61\x94\xa4\xb8\x2b\x44\xb0\x0f\xe9\x7d\xf0\xb1\x96\xc7\x2f\xd2\x70\x35\x7f\x4e\x8d\x8c\xde\x0d\x14\x47\xda\x8e\x89\x87\x15\x5c\x2e\xd5\x76\x3e\x01\x54\x43\x8d\xe6\x1b\xfe\xfb\x7a\xe9\xe9\x3b\x98\xf0\x41\xca\xb1\x64\x1b\x50\x2a\xf8\x09\xb0\xf4\x4c\xb9\x4a\xb6\x01\x99\x29\xf8\xc6\x35\x6f\x0b\x3e\xc0\xf5\x3b\xa7\x11\xe2\xb4\x12\x7f\x30\xb5\x6f\xde\x7c\xb3\x9d\x59\xd2\x64\x52\x62\xaa\xd0\xc4\x14\x4a\xaa\xa7\xfd\x3c\xe1\x88\x34\x28\xd1\xdd\xb9\x4e\x03\x09\x48\xb2\xfe\x09\x6e\xca\x0d\x6b\x56\x31\x23\xc0\x46\xdf\x57\xa1\xd8\x56\xe0\x11\x57\xa7\x55\x55\xf8\x0f\x34\xbb\xfe\x43\xf2\xc8\xc0\x03\xec\xa5\x59\x70\xac\xd0\xef\xd1\xda\x17\x1d\x54\x15\x1f\xb6\x26\xf4\x74\x55\x43\x7e\x99\x13\xbc\x9f\x60\x25\x20\xcb\xb8\xa7\x61\x1a\x73\xc0\xec\xe2\x15\xb3\x06\x25\x8c\xba\x90\x70\x88\x25\x55\x84\x15\xd3\x02\xf5\xcb\xf3\xed\x38\x4d\x57\x05\x0f\xe8\x52\x1e\xd5\xbe\xa1\xcf\xe3\x49\x3e\x54\xb2\xdd\xab\x69\x91\x76\xc7\xab\x51\x0d\xa5\x75\x3d\x50\x28\xad\xeb\xe5\x37\x55\x53\x72\x64\x33\x6e\xfc\xa7\xd9\x8c\xd2\xac\x38\xad\xa6\xc6\xf9\xc7\x04\x32\x3c\x3d\x7d\xb7\x08\x71\x56\x1a\x36\x52\x00\xc6\x8b\x2a\x2f\xa3\x16\xb1\x6c\xc4\x30\x4d\xd2\x61\x64\xf3\xd9\x1a\x16\xfc\xf0\x3c\x4f\x8c\xfe\x2b\x55\x9c\xfb\xac\x86\x0b\x7f\x5e\xe1\xc1\x8a\x88\x74\x34\xab\xb7\x82\xa5\x0d\xed\x11\x3e\x0e\xa4\x2d\x61\x6c\x96\x26\x66\x5c\x44\xa1\x89\x77\x3c\x2e\x49\x1a\x98\x78\x85\xd4\x1d\xf0\xfb\xa8\xc1\xc2\x63\xcd\x10\x96\x40\x06\x82\xe8\x39\x8a\xc4\x87\x8e\x5e\xbb\xe3\xe2\xe7\xe8\x29\xa1\x7e\x70\x93\xbc\xa1\x93\x30\x5c\x5a\xf2\x44\xdc\xd5\x37\x20\xd4\x7b\x18\x78\x55\x91\x07\x00\x61\x21\xf0\x38\x4d\x95\x0d\x74\x03\xbf\x0f\x4b\x00\x6f\xb7\x13\xfa\x1d\x6e\x62\xcf\xa9\x16\x7e\x1e\xb4\x7e\xf9\xaf\xf1\xda\xb8\x85\x45\x8c\xb5\xc1\x25\x43\xa6\xed\x0d\x3c\x69\x29\x37\x2a\x85\x67\xad\xb2\xeb\x5c\xb4\xd1\xc2\xf1\x9f\x94\xaa\x47\xc3\xf3\x87\x08\x5e\xc0\x73\x00\xe7\xfd\x8f\x60\x87\x70\x57\xc7\x68\x9f\xa1\xbc\x2e\x02\x41\x38\xfb\x0c\xb6\x47\xc0\x32\x4a\xff\xd2\xe6\xa3\xa8\xb0\x4f\xd1\xa5\x62\x0d\xbc\x87\x48\x07\x35\x68\x56\x21\x46\xb0\xfa\x65\xad\x98\x43\x3b\x9f\xe7\xa1\xfe\x5f\xca\xfe\x34\x46\xb2\x2b\xbb\x13\xc3\xab\x22\x33\xab\x58\x2c\xb2\xb8\x77\x6b\x30\x83\xbf\xa2\xe7\x2f\x9b\x23\xb8\x41\x0b\x96\xe0\x19\xcb\x1f\x5e\x38\x2b\x5b\xec\x2a\x4b\xc9\x42\x56\x35\xa9\x69\xfb\x03\x6f\xbe\xb8\x19\x71\x99\x2f\xde\x8b\x7e\x4b\x66\x25\x3f\x0d\x0c\xc3\x18\xd8\x80\x00\x69\x06\x16\xc6\x92\x6d\x19\x63\x68\x46\x90\x3d\x6e\xb7\xd4\xd3\x23\x5b\xad\xc8\x1e\xf5\x2a\xf6\xc2\xb5\x9b\xcd\xb5\x58\xfb\x9a\xb5\xef\x55\x59\xc6\x3b\xbf\x73\xee\x3d\x91\xf1\xe8\x81\xbf\x10\x11\xac\x8c\xed\xbd\x7b\xcf\x3d\xcb\x6f\xa1\xbb\xe6\x3d\xf3\xeb\xef\xad\x14\x04\x9f\xf7\xb8\x26\x85\xbf\xa2\x18\x22\x7d\xe3\x06\x8c\xc0\x73\x03\xae\x09\xbc\x7a\x67\x50\xf2\x54\xf8\xe2\x57\x4c\xbc\x5c\x64\xe9\xb4\xae\xf8\x7e\xa0\x6a\xff\x6b\x63\x33\x30\xd5\x86\xfe\xb6\xc2\x43\x77\xcd\xc0\xf4\x58\x62\x1c\xf5\xc4\x1f\x2b\x52\xc2\x1f\x37\xa9\x45\x16\xa5\xcd\x13\xd1\xcb\x45\xe4\x66\xde\x2c\x3f\xa9\xd3\x75\x3f\xf1\x31\x55\xb7\x4a\x2c\xb1\x85\x5a\xde\xdd\x15\x1d\x7c\xd1\x6b\xd6\x2b\x3a\xb1\x87\x77\x2a\xf5\xc4\x75\x4e\x80\x71\xc7\x31\x05\xe3\x8d\x40\xe8\x36\x45\xef\x9e\xd3\xb9\x8a\x4f\x5c\x68\xb5\x22\xa7\xbd\xdb\x34\x2a\xb0\x83\x61\xc9\xe0\x06\x0f\x37\xf6\xd2\x3d\x10\x83\x46\xcb\xe8\x07\x13\x30\x05\xd9\xc6\xb9\x49\x86\xfd\x56\xeb\x4b\x5f\x0c\xee\x2a\xa1\x64\xda\x50\x0c\xde\x81\xc9\xf3\x35\xb9\x70\xd8\x80\xb0\xac\xe0\xc7\xaa\x9c\x77\xe9\x52\x16\x67\xf9\xb0\x35\xc6\x55\xf1\x9e\x89\x1f\xeb\x6e\x10\x72\xcb\x87\xd4\x25\x60\x2e\x18\x9e\x90\x6d\x9c\xa4\x80\xb7\xa2\x30\xc6\x3a\xa7\x55\x22\xd9\x80\x14\x5f\x1a\xc6\x50\xb4\xa6\x8b\x27\xd7\x43\x23\xe2\xea\x98\x80\xe9\xb2\x2d\x9f\xa8\xe3\x0d\xfa\x98\x37\x28\xac\x60\xb3\x20\x4d\xf1\x12\x71\x21\x2e\x7c\x37\x52\x65\xdd\x9f\x61\xcb\xa3\xb6\x01\x7d\x4c\x2e\x0a\x7d\x7d\xfc\xd4\xbb\x38\x4d\x71\x13\xfe\x02\xc9\x3b\x33\x0d\x69\xcb\x63\x65\x7c\x23\x0a\x52\x12\x47\x15\xe3\xf2\x28\x7e\xa3\x22\xcd\xc8\x44\xf5\xd8\x48\x19\xd8\xde\x84\x4c\x01\x8e\xaa\xd3\x3e\x6d\x77\x69\xd7\x99\x94\x3b\x0f\x48\x3f\xee\x72\x6c\xe1\x67\x0d\x95\xe9\xaa\x4d\x92\xe9\x7a\x35\xd0\xce\xfb\x9f\x9e\xa2\x69\x9c\x68\xb9\x86\x09\xf5\xa3\xeb\xca\x03\xb5\xc9\x24\x76\xae\xbd\x94\x25\xcb\xfc\xe1\x58\xe7\xb0\x78\xe1\xc7\x13\x2f\x21\x31\x05\xd3\x73\xc3\x56\x68\xb5\x9c\x1f\x03\xc9\x6f\x55\x25\xd8\xbb\xb7\xfd\xe2\xec\x81\xdd\x74\x21\x84\x98\x11\x14\x79\xdf\x42\x8a\x01\x94\x0a\x84\xd4\xb5\x85\x22\x2e\x23\x80\x6e\xde\x43\xac\xbe\xa1\x58\x5d\x17\xb5\xb1\xea\x19\xdc\x44\x0a\x0f\xff\xdd\xe7\x3a\xad\x97\x44\x9d\x65\x83\x56\x0d\xae\xfb\xc3\x0a\x81\x92\x65\x4b\x3b\xc7\x68\x2e\xf5\xd7\x12\x4c\x4e\x98\x3a\xb1\x4c\x98\xb4\x05\xe9\xe3\xf5\x98\x08\x9d\xda\x07\x91\xd2\x90\x7a\x5f\x57\x24\xc3\xdc\x9a\x2e\xf9\xa0\xa3\x49\xcd\x6e\x5a\xfc\x04\x87\x81\xd7\xee\x79\x71\x56\x67\x26\x12\xa1\x36\xf5\xa4\x32\xcf\xc4\x6e\x02\x55\x3e\x6c\xfc\xf9\x71\x47\xe0\x1c\xaf\xd8\x55\x9b\x08\xa4\x14\x9f\xf5\x1d\x2c\x4d\x7e\x12\x05\xb0\x4b\x9a\xa5\x0e\x85\x31\x32\xf1\x4f\x70\x43\xf9\x49\x03\x80\xf0\x40\xbb\x6b\xc5\x18\x48\x5a\x23\xf4\x12\x29\xd9\x03\xcd\xac\x6b\x97\x5c\xea\x4a\x12\x83\xf2\x3e\x0d\x5b\xe8\x45\xf2\x9d\x07\xb6\xf4\x56\xcc\x4a\x58\xfd\xe0\xa7\x0a\xab\x93\xba\x42\x62\x8d\x38\x3a\xf8\x98\x13\x46\xe7\x93\xf4\xf2\xba\xec\x2d\x73\xd3\xb5\xd0\x25\xc4\xa9\x7a\x93\xa2\x09\xc2\xc4\x89\x91\xf2\xaf\x3b\xeb\x1b\xf7\x4b\x59\x56\x2e\x9a\x24\x51\xbf\x83\xb3\x4f\x49\xee\x1f\xd7\xf8\xf2\x65\xe9\x63\xe2\xa0\x04\x05\x8d\x1f\x8f\xe9\x8d\x24\x6e\xd9\x22\xb0\x8a\x62\x90\x6a\xe1\x5c\x8f\xd4\x98\xe0\x83\x51\xe8\x8b\xf2\x04\x56\x74\x19\x94\xfe\xfc\x15\x8e\x1e\xfc\x2c\x0a\xa5\xe7\x5d\xd5\x6c\x8d\x5d\x1a\xbb\x34\x35\xa5\x6b\x05\x92\x19\xff\x1e\x7e\xa2\x58\x62\x8b\x36\xb5\x4b\xce\xdb\xb6\xb0\xca\x5f\x34\x26\xf9\xd7\x00\x3e\x8a\x4d\x61\x05\x7c\x24\xc6\x59\x2a\x47\x38\xed\xc1\x47\x36\xe9\xda\x5c\x66\xfd\xe8\xb8\x4e\x03\xaa\x08\xc8\xd1\x51\xbc\x0c\x13\xd9\x07\xe3\x8a\x5c\x09\x16\x8c\xb4\x12\x43\x8f\x80\x45\x6a\xb0\xb4\xb2\xdc\x24\xc4\x0c\x40\x86\x89\xc2\x93\x1f\x77\x9a\xdc\x37\x57\x4d\x69\xf3\xd5\x2c\x5f\x2e\xa6\x54\x3a\x79\x5d\x19\x99\xb5\x3a\x4a\xef\xa1\x71\x5a\x99\x64\xc5\xb8\xe6\xff\x77\x46\xca\x91\xe5\x3b\x4d\xd0\xbb\x61\x9e\x0d\x5c\xea\x61\xcd\x98\x81\x5d\x57\x92\xd7\xd7\xa3\x00\x19\xe9\x2f\x66\x2d\x65\x76\x70\x46\x35\x0f\x27\x79\x34\x92\x4a\x24\x2e\xed\x1a\x8d\x1a\x39\xa3\x7d\xd2\xce\x44\x5b\x48\x97\xf3\xf3\xf5\x36\x3b\x08\x70\x27\x62\xf3\x25\xad\xc8\x7a\x89\x16\x36\xa3\x90\x95\xa0\xe0\xeb\x0a\xdb\xf9\x2b\xcf\xfd\xc7\xad\x90\xf1\x9c\xa3\x3c\x95\x1f\x37\x55\xd7\xab\xb6\xdb\x95\xce\x3e\x9a\x30\xbb\x3b\x01\xcb\xc9\x4e\xd1\xc8\xb5\x2f\xe3\x82\x8a\xef\x7a\x83\x3a\x66\x62\x52\x78\x14\xe1\x40\xbf\x86\x4c\xdd\x03\xf3\x16\x66\x05\x48\xef\x01\x65\xc3\xdc\x62\x72\xce\x51\x45\x38\x2c\xa1\x59\x70\x7e\xac\x5b\x98\xba\xf8\xe1\x20\x5d\xcb\x18\x21\x14\x45\xdc\x55\xc0\x8a\x7e\x40\x9f\x86\x4d\x7e\x3a\x0a\xfb\xe8\x6f\x28\xcb\xc4\x61\xcf\x59\x15\x74\x67\x5f\x1f\x05\xbc\x03\x1c\x1a\x3c\xf3\x21\x74\xf3\x37\xc7\xa5\x98\x8a\x94\x98\xdd\xd8\xfc\x3f\x45\xf4\xe0\x27\x2a\x23\x5f\xcc\xb3\xb2\x6f\xf3\x69\x65\x9b\x72\x3c\x52\x03\x38\x8c\xad\x44\xa6\x55\x29\x9d\x69\x37\x78\xb2\x15\x16\xce\xaa\xc0\x18\x5f\xc7\xe9\xc6\x4f\x54\xbb\x7b\x29\x37\xe9\xf2\x52\x95\x83\x31\x8f\x9e\x32\x34\x83\xf8\x71\x93\x00\xe5\x92\xb5\x01\xc1\x23\x2c\xdf\x96\x57\xd2\x38\x33\x81\x55\x5a\x98\x25\x4a\x64\xda\x52\x12\x6c\xe3\xf3\x80\xd0\x35\x23\xd8\xa0\x49\x5c\x51\x16\x33\x61\x08\xf3\x07\x1a\x52\x79\x8e\x52\x15\x94\x1c\xaf\xe1\x62\x7a\xb9\xb4\xfd\xfb\xf9\x36\x7d\x3f\x70\x7d\x5c\x6a\xca\x5c\xe4\x09\x91\xd4\xbc\x87\xcb\xc7\x4f\x26\x86\x99\x75\x94\xac\x4f\x30\xb8\x42\xd5\x8b\xc5\x17\x73\x7e\xae\xd5\xc8\x51\xc9\x28\x44\x78\x55\xec\x33\x4a\x15\xfb\x4c\x13\x18\x6a\x60\x0f\x7b\x61\x04\x36\xa9\xd5\x32\xd7\x97\x26\x40\x42\xfb\xf7\x1f\x6c\x97\x55\x9e\x66\x2b\xa0\x98\x1d\xf4\x8c\x80\x90\x6c\x9e\xf1\x30\xe0\x61\x96\x97\xf5\x56\x6b\x85\x85\xb3\x45\x22\x6f\xe2\x3b\xed\x6d\x27\x18\x32\x6b\x80\xd6\xb8\x26\xe9\x96\x5c\xb2\x8e\xcb\xfb\xf7\xcf\x8c\x51\xa9\x43\x3f\x1f\xb5\x28\x3a\x4a\x2d\x74\x23\x7c\x43\xa0\x2e\x99\x83\x61\xc4\x7f\xe0\xcd\xe2\x8a\xbe\x4b\x7b\x65\x96\xee\xa9\xaf\xa4\xd8\xc4\xd0\xfb\x73\xdb\x2c\x0a\x18\x60\x74\x6e\x37\x8f\xa0\x3e\x10\x45\xf3\xd6\xde\xbd\xbc\xb6\xfe\xd7\x91\xc2\x16\xdd\x8d\xb4\x50\x58\xa4\x84\xa7\xce\x51\x13\x10\x6f\x79\x1d\xc1\x02\x69\xd3\xff\x4c\xdf\x1f\x71\xed\xfe\x28\x20\xf9\x78\xa6\xa3\x44\x0b\x64\x88\x5c\xe5\x2b\x76\x4d\x40\x62\x48\x70\xff\x9c\xde\x84\x1f\x37\x32\xed\xaa\x34\xf5\xd7\x1c\xdf\x08\x3a\xbc\xfc\x78\x7d\xb2\x09\xf6\x7c\x1b\x70\x34\x39\xcb\xbc\x11\x72\xfd\x16\x82\x2c\x6a\x16\x40\x2e\x3d\x42\xd1\x43\xae\x42\x71\x76\xb1\xd1\x86\x7b\xb0\x56\x17\xff\x41\xbf\x11\x5b\xfd\x44\xa4\x84\x93\x4f\x28\x2c\xf1\x92\x89\xcb\x5d\x41\x5f\x16\x8e\x46\xb8\x21\xdb\x40\x0a\x43\xaf\xf8\x67\x23\x25\x81\x7a\x35\x52\x26\x83\xa7\x47\x41\xad\xfe\x01\x6e\x2e\x12\x8d\x6d\xeb\x01\x44\x7b\x60\x14\x92\x87\x53\x8a\x73\x38\x30\x79\x61\x06\xfc\x55\xbd\x9d\x5d\xfd\x55\xc5\xce\xae\xa1\x03\xba\x98\x54\x39\xf3\xc4\xd0\xda\x7d\x47\x69\xfe\xbf\xd3\x88\xfd\x1e\x66\x85\x0c\x77\x36\x81\xa9\xd8\x3c\xdd\x84\xf7\xae\xeb\xf4\x7c\x3a\x50\xaf\x58\x44\x07\x05\xc6\x03\x55\x99\x1f\x43\x25\xc3\xbe\x53\x4a\x18\x62\xd5\x14\xa5\xa5\x3b\xc7\xf9\x98\x27\x26\x2b\x0d\x0a\x35\xb4\xba\xa5\x00\x3a\xb1\xc9\x17\xb3\x74\x3a\x20\x19\x6e\x51\xb7\x9e\x1f\x47\x61\x2c\x73\x5b\xa5\xa5\xb7\x27\x52\x95\xbd\x7b\xdb\x03\x57\x24\xd6\x74\xfd\x4a\xc5\x4d\x44\x7f\x82\x1f\x8f\x1d\x7c\x59\xbc\xfc\x34\xfd\x21\xee\xe3\xf6\x4e\xa0\x88\xbe\x43\xdf\x01\x17\x17\x4b\x1d\xb7\xf4\x5e\x14\x86\xf7\xe7\xd0\x27\x40\x5b\xf3\xc2\x48\x29\xd1\x7e\x4d\xa9\x12\xef\x82\xe8\xb9\x70\x2a\x42\x93\xf2\x64\x34\x36\xce\xa6\xeb\xb6\x79\x09\x27\x09\x9a\xe4\xef\x8e\x02\x8c\xf8\x0e\x3a\x01\xb8\xf4\x97\xb1\x14\x51\x38\x5e\xc6\xdd\xe2\xaf\x41\x9d\x56\x85\x9c\xfa\xb2\xbc\x64\xa4\x14\xbe\xcf\xa8\x6e\x1d\x5b\x30\x3f\x4a\xe1\x4e\x08\xc1\xca\x4e\xf6\x8e\xb2\xb0\xbd\x56\x2f\xe8\xcd\xe3\xda\xc0\x7d\xd7\x7a\x00\x47\x9f\xe2\x2a\xc2\x8b\x19\x85\xbd\xae\x64\xbb\xff\xff\x6d\x50\xbe\xf8\xed\x23\xa5\xd1\x74\x36\x6a\xed\x9d\xdb\xbc\x44\x7b\x0b\xf9\xf2\xcc\xba\x0c\x34\xed\x8a\xcd\xc9\x6b\x09\xa3\x85\xcf\x76\x42\xfa\x74\x96\xf6\xd9\x58\x23\xd7\xd3\x51\x43\x7f\x79\x53\xa9\x71\x8f\xd9\x35\xdb\x15\x9b\x3c\x14\xf8\xfb\x00\x6f\x8b\x11\xb3\x62\x24\x9f\x56\x6e\xcd\x60\x3d\x8a\x21\xae\x9a\x3e\xfc\x31\x7e\x0f\x6b\xda\x69\xbc\xe6\xed\x48\xd7\x7a\xa6\x1c\x78\xd3\x15\x69\xef\xa8\xb1\xc4\xe9\x89\xe3\xfb\xe5\x97\xdb\x03\x6b\xcb\xa9\x40\x5c\x7c\x4d\xdf\x87\xf3\x94\x10\x8a\xaa\x73\xf8\xa4\xa5\xca\xfa\x9e\x28\x83\x48\xd5\x91\x71\x31\x48\xf2\x54\x69\xc9\x33\x47\x04\x75\x8e\xba\xfc\x44\x7d\xf7\xa2\x5a\x2c\x5c\x77\x0d\x28\x6d\xd6\x09\x8b\xc2\xdb\xff\x99\x82\xa5\x4e\x16\x78\xbf\xdc\x8e\xb3\x2c\xb1\x70\x05\x10\xb1\x4a\x5a\x0e\x38\xcf\xb0\xc7\x85\xae\x21\x5f\x2e\x7b\xd5\xe4\xcb\xc5\xb4\xd2\xe4\xb9\xa0\xd4\xb2\x4f\xeb\x59\xf2\x36\x06\xaa\xe0\x9f\x1e\xed\x3c\x12\xc8\x87\x15\x66\x6f\xac\x3d\xaf\xec\xb6\xdf\x6e\xe4\x11\xba\x62\x58\x95\xe8\x40\x78\x3f\xad\xc0\x94\xbd\xa8\x64\x47\xb2\x6e\x37\x81\x97\x96\x76\x18\xe2\xc7\x4d\xb6\x1e\xb9\x2b\x60\x32\x82\x1f\x83\x10\xcb\x8f\xb5\xab\x5b\x96\x0d\x50\x43\xb1\x43\x18\x35\x13\xd9\xd8\x1e\x0c\x30\xb1\x0e\xab\x97\xac\x38\xde\x37\x14\x34\x43\x32\xb3\xf7\xf8\xae\xaf\xe1\x8a\xf1\x13\xdd\x59\x28\x5c\x9a\xe5\x54\xfa\x60\xd3\x00\xd6\x85\x65\x75\x59\x9f\xc3\x0f\x7c\x1d\x5e\x9a\xa1\xef\xc0\xa0\xfd\xc3\xa2\x44\xfc\x24\xe8\x88\x65\xe5\x30\xab\xf2\xdc\xe1\x70\x47\xac\x39\xa2\x06\x94\x47\x14\xd8\x6d\xc5\x99\x38\x1b\xe0\x5d\xd9\xd0\x09\xef\x2a\xee\x4e\x5b\x53\xcf\x85\x59\xa6\x45\x76\x05\xcf\x80\xe6\xe2\x2e\x6d\x66\xb1\x6b\x02\xc8\x55\x67\x2a\x85\x7b\xd5\x88\xe4\x61\x93\xc2\xe2\x56\xb9\xf3\xfa\x6c\xed\xba\xc2\x0c\x87\x99\x4b\x4b\x8c\xd0\xb5\x10\xce\x48\x77\xaa\xb6\xf6\x36\xe7\xe7\xdb\x0b\xb3\x5c\x1a\xa3\x45\x73\x44\x03\x23\xce\xe1\x57\xf2\xbf\xd0\xd7\x10\xdb\x09\x49\x9b\xdd\x60\x98\x67\x2b\xb6\xbb\x23\x58\x61\xdc\x56\xdb\xe1\xb8\x76\xb5\xbb\x86\x34\x56\xf8\x91\x74\x5d\xd0\x49\x80\xf2\x80\xe8\xb0\x3e\xad\xde\xdb\x16\x85\xcb\x52\xc7\x3a\x65\x5e\xc8\x77\x5e\x56\xd8\x35\x35\x78\x2c\xed\xe1\xd2\x25\x76\x26\x4c\xf5\x8f\xe8\x69\x30\x54\x17\x78\x60\x1b\x29\x24\x35\xa6\xb7\xe8\xea\x5f\x6a\x50\xbb\x5f\xed\xbb\xb8\x6f\xa9\x8a\xa8\x8f\x55\x94\x7b\xb7\x54\xe9\x77\x6b\x1c\xe2\x5c\x98\xe9\x60\x4d\xf6\x09\xea\x49\x9e\xcb\xd3\x89\x28\x96\x58\xf4\x15\x64\x60\xaf\x48\x63\x89\xe9\xcd\x28\x72\x26\x5a\x42\x4c\xe0\x89\xc2\x7c\x63\x06\xe8\x26\x74\xba\xf9\x74\xc1\x81\xb0\x7d\x42\x26\x65\xff\xfe\x05\x0a\x76\xbc\x36\x38\x01\xa0\x9f\x20\xc9\x80\xd7\x86\xc9\xcd\x60\x20\xb6\xa9\xe8\xd5\xb1\xbf\x31\x3f\x51\xb8\x8d\x6e\x16\x57\x22\x1a\xa0\x72\xfc\x71\xe0\xd7\x84\xde\xc0\x8b\xb3\xf3\x64\xe1\x11\xf7\x5d\xd2\xcd\x2d\x8b\x97\x4b\x9c\xd5\x74\x39\xed\xd6\x5c\x12\x36\x6f\x2a\xec\x0b\xc8\xe6\x20\xd0\x6f\xa7\x76\x18\x2a\xb5\x9f\x4e\x56\x8f\x7b\x45\xc4\x07\xdf\x12\xaf\x39\x17\x8c\x10\x7f\xf5\x9c\x3a\x53\xca\x6c\xd1\xc4\x71\xb6\x63\x2a\x58\xd9\x7e\xac\x0c\x72\xee\xd2\xc9\x8b\xbe\x25\x4b\x26\xe3\x8f\xee\xab\x33\xfd\x78\xa4\x84\x8e\xef\x35\x28\x84\x0e\x13\x93\xa6\xf2\x7d\x58\x73\x67\xa4\x78\x1e\xd7\x9a\x14\xbc\xcc\xc0\xe6\x75\x0d\x2c\x8d\x46\x7c\x77\x1e\x41\x30\x86\x18\xe7\x02\x12\x96\x49\x47\xf9\x17\x67\xdb\x45\xdf\x2c\xdb\x62\x68\x45\xd4\x17\x3d\x63\xd0\xc0\x59\x66\x7c\xa4\xde\xe3\x86\x47\x50\xa5\xb6\xdc\x45\xff\x40\x8d\x5d\xf7\xf8\xba\xef\xbb\xfe\xda\x2f\x76\x42\x27\xfd\xf1\x4e\x7d\xf8\x33\x80\x63\xa4\x98\xe6\x68\x56\x61\x4d\x6f\x52\x96\x84\x61\x22\x9b\x7f\x29\x88\x90\xe8\x34\x4d\x4f\xd4\x72\xfb\xe6\xdb\x5d\x9b\xb8\x15\x60\x8b\xe8\xe2\x23\x17\xfe\xaa\x82\x94\x7d\x55\x61\xe2\x8b\x41\x96\x95\xa0\x39\x79\x97\x58\x5f\x10\x4f\x8e\x06\xe8\x22\x67\x15\x33\x31\x05\xa8\xd4\x52\xf6\x6e\x0d\xcc\xd9\xb8\x6f\x57\x69\xb7\x68\x10\xb1\x88\xc6\x3d\xaa\x86\x81\xa9\xd1\x94\x66\x64\xec\x28\x91\x91\x42\xf0\xc8\x5e\xf1\x57\xba\x55\x0e\x8e\x49\x4b\xb9\x46\xd1\x32\x11\x52\xaa\x22\xea\x99\x42\xf4\xb7\x3c\xed\xdc\xcb\x7b\x7d\x47\x9b\x25\xdf\x9c\x70\x1d\xab\x4f\x11\x68\x14\xb9\x9e\x29\x85\xe3\xc5\xf5\xfe\x78\xf1\x1f\xba\xa2\xbf\xf6\x2b\xbf\x32\x1d\x32\x12\x20\x3f\xa5\x73\xd2\xda\x2b\xe3\x00\x96\x92\xc2\xad\x69\xad\x87\xe6\x6f\x9a\x95\xcf\x28\x06\x15\x74\xed\x50\xb8\xee\x00\x56\x07\xa0\xb5\xa9\x4e\xb0\x89\x7a\x88\xca\x22\x88\x85\x5c\xc1\x71\x82\x02\xe6\x6b\xd8\x04\xf8\xf8\xbf\xc2\x25\xf2\x0c\x93\xe0\xe1\xca\xa6\xcd\x78\x33\x78\xeb\x03\xed\xfd\x3e\x45\x66\xe4\xd6\xad\xf5\x90\xda\x5f\x01\x7e\x42\x0c\xd8\x28\xcf\x41\x7b\xf8\x69\x5a\xff\x48\x40\x66\xd6\xd5\x8e\x79\x6f\xa4\x4a\x8a\x0d\x0d\x0a\x03\x5d\x85\xf1\x76\x28\xd4\x65\x0e\xf8\x99\x50\x03\xd9\xb2\x9f\x75\xb3\x24\xeb\x89\x02\x9f\xf0\xf3\x02\x78\xf7\xa2\x8f\xd6\x8c\x0a\x65\x34\x12\xa6\xa6\x77\x95\x3c\x27\x87\x62\xec\xc0\xd3\x63\xe7\xd4\xb0\x80\x78\x23\xcb\x89\xd3\x8b\xbc\xb4\xf8\xbe\x79\xaf\x8a\x47\xdf\x93\x9f\x28\xad\x8f\x7a\x1f\xc6\x2e\xab\x8a\x19\x25\x06\x72\x3b\x52\x73\xf4\xef\x62\xf7\xa3\x48\xfe\x50\x55\xbe\xc7\x08\x44\x83\xb2\xe4\xb6\xca\x31\xbb\x79\x35\x68\x8d\xb1\x7b\x3c\x99\xea\x6c\x83\xac\xd6\x41\x9a\x3d\xc7\x01\x34\x8a\x04\xe2\x1e\x7e\x32\x3f\x89\x34\xc9\xd8\xb8\x74\x67\xbd\x80\xb0\x32\x4e\xe0\xde\x78\x49\x74\x3f\x16\x63\xca\x10\x32\x82\x3b\xca\x93\xfd\x75\x0c\x49\xfd\x84\xb3\x5e\x72\xfc\xa4\xa1\xc5\xf9\x7c\x7b\x50\xae\xd0\x1d\x64\x5c\x9c\x2e\xaa\xbe\x3d\x91\x68\xbc\x38\x1b\x54\x82\x68\x05\x09\xde\xb2\xfe\x7c\xd4\x90\x2d\x48\xb6\xe0\xfc\xbb\x39\x76\x37\x9f\xcb\x9f\x53\x33\x55\xf8\x39\x0a\x8a\xba\x21\xca\xe5\xd9\x62\xc5\xc6\x48\x88\x24\x77\xe9\x15\x5e\x41\x6e\x7e\xde\x0f\xbc\x1a\x0f\xa2\xc5\x2a\xa1\x8e\x6f\x68\xfb\x7c\xa8\x90\x7e\x1f\xaa\x28\x51\xe5\x8b\xe4\xa6\xc8\xae\x21\x91\xca\x7a\xce\x29\xb6\xd1\x43\x74\x00\xa1\x53\x73\x57\xdb\x04\x9c\xf7\xac\xd2\xa2\x4e\x4d\x16\x93\x2d\x02\xe4\xe7\x54\x7a\x7c\x4e\x35\xb6\xfa\xb6\xdb\xe3\x0d\x24\x19\xbd\x7a\xd7\x23\xa3\xe0\x38\x1a\x57\xc9\x54\xbd\xe0\xf1\xdd\xaf\x2b\xeb\x3a\xb6\xaf\x94\x25\x18\xe2\xb2\x49\xca\x7e\x56\xf5\xfa\x8f\x05\x5e\xda\x2d\x02\x6a\x79\x6f\xf8\x3a\x34\xb1\x35\x0a\xad\x76\x14\x20\xdc\x06\x19\xab\xe1\x90\x02\xbf\x83\x8f\x62\x14\x0e\x95\xfd\x28\xda\x4e\x20\x02\x89\xcd\x4a\x48\x94\x8f\x23\xe4\x09\x17\x1c\x29\x01\x62\xe9\x77\x55\xe4\xdf\x0e\x43\x6b\xfe\x62\xb8\xfc\x62\xcc\x26\x48\xbc\x38\xcb\x7d\xbd\x82\x48\x82\x6b\x81\xcc\xd8\x23\xc7\x83\x95\xe7\x8d\x48\xeb\xbf\xf5\x0d\x89\xbf\x18\x96\xb7\x62\x38\x6c\xa4\x10\x9e\x3f\x55\xe6\x50\x47\xf5\x8e\x77\x79\x39\x5d\xbf\xc6\x5b\x6a\x06\x87\x47\x56\xe3\xf1\x93\x2e\xb5\x24\x43\x21\xbd\x94\xac\x81\x84\x84\xf6\x07\x38\xa1\xaa\xe1\xe2\xbb\x2f\xa4\xe0\xc4\x7f\xb4\xde\x24\xd2\x98\x56\x79\xe1\x09\xdf\x12\x3c\xeb\x0f\xe5\xa1\xad\xea\x4b\x5f\x1a\xb5\x3f\x65\x36\xb9\x96\x15\x7d\xd7\x77\x85\x51\xc6\xd2\x0c\x2d\x10\x89\xe6\xd0\xbd\x1f\x9a\xd8\x0e\xcc\xb2\x65\x99\x1d\x2c\x4c\xd8\x70\xf1\x63\x85\x8b\xca\x56\x6c\x5e\x56\x79\x0a\xb2\x04\x5b\xfa\x8f\x54\x3b\xef\x6c\x93\x17\xf7\x6a\xdf\xda\x24\x71\xcb\x3c\x9a\x11\x4f\x89\x96\x72\xbd\x0f\xad\x83\x22\xab\xca\xfe\x2e\x5a\x6d\xaa\x7a\x9b\x0f\x13\x3f\x8f\x94\xbb\x8a\xf5\x2d\xeb\x30\x1c\x97\x40\x18\x62\xfa\xc1\x3c\x54\x4d\x2e\xc2\x4a\xba\x35\x52\x0e\x65\xef\x2b\xd5\xec\xa2\xcc\x6d\x5a\x65\x55\x91\xac\xb5\x26\x8e\x4d\x41\xe7\x2a\x72\xaf\xc9\x6d\x62\x0b\x5c\x3d\x8c\x33\x1e\x28\x8e\xe3\x03\x45\x00\x2f\xfb\xd6\xe5\x8f\x87\xaf\x70\x65\x8c\xe8\x55\xef\x4f\xdc\xf1\xbb\x5a\xfb\xf9\x2a\xb7\x10\xd1\x4c\xfb\xef\x29\x7d\x45\x07\xf1\xdb\xd8\x7a\x58\xb4\x9b\xd8\xa0\x08\x5d\xdf\xd3\x84\xa6\x53\x8a\x5a\xf6\x28\x09\x82\x09\x3e\x95\x7e\x1d\x8e\xcc\xf7\x47\xaa\xd0\x98\xe9\x04\x4b\xa4\x87\x90\x04\x61\xc6\x7a\x27\x52\x26\x52\xf7\x9a\x64\x51\xdd\x80\x31\x02\x9f\xa2\xb0\xd9\xc4\xa1\x37\xdd\x15\xb0\xf4\x43\xea\xf6\x3b\xe8\x19\xf2\x93\xa6\x0f\x22\xa9\xe9\xa5\x35\xca\x78\x95\x79\xa7\x64\x55\xe7\x95\x7a\x58\x6e\x87\x59\x5e\xda\xee\xc3\x2d\x2f\x7d\x3b\x43\xa5\x02\x06\x8f\xbc\xbe\x90\x8b\xbf\x47\x19\x18\x36\x5b\x8b\x2e\x03\xd2\xbc\x6b\x23\xd5\x3f\xbf\x8e\x6e\x30\x93\xb7\x30\x0a\x67\xab\x80\xd1\xb8\x35\xc7\xc2\x2c\xbf\xef\xdf\x34\x39\x48\xc6\xa6\x2a\x20\x61\x8a\xd9\xf2\xd9\xb1\x95\x4e\xdb\x5e\xec\x50\x45\x17\x65\x68\x56\xc4\x3e\x12\x97\xf4\xb5\x91\x82\x2e\x20\xbd\x41\x2d\xae\x95\x07\x62\xb7\x22\xca\xc4\x42\x0f\x53\xca\x03\xef\x35\x29\x5c\xfe\x3b\x79\x30\xa1\x5f\x6e\xea\xaa\x38\x35\xad\xfa\xc4\xe2\x3e\x3b\x36\x9d\x34\xdd\x43\xa9\x3e\xcc\x33\x31\xaa\x43\x84\xf7\xb6\x95\x5e\x3d\xf8\x16\xd6\x98\x30\xbd\x02\xf7\x2a\x67\x9b\x90\x26\xd5\xb3\xad\xfc\x0f\xf2\x6a\xcc\x57\xac\x4b\x42\x82\xd0\x44\x57\x7a\x4c\x61\x33\xbb\x55\x6c\x77\xd6\x77\x4c\x4c\x7f\x5b\xde\x3a\x75\x5b\x87\x6e\x38\x9f\x9e\x4a\x42\x99\x82\xc8\x97\x37\x8f\xe0\x72\xe2\x08\x7e\x4f\x17\xae\x93\xf7\x7d\xdf\x7c\x7b\x68\x52\x17\x4f\x69\x4f\x3d\x25\x93\x7f\x4d\x09\x6e\xbd\xa5\x2e\x5d\x69\x13\x0b\x7f\x0c\xae\x8b\xb4\xc2\x97\xf8\x49\x35\xe9\xbf\x54\x65\x62\xcb\xb1\xf1\x21\xd8\x1b\xc2\x9c\x0c\x33\xab\x61\x52\x9f\x05\xd2\xbc\x13\x85\x83\x8d\x31\x91\x91\xad\x1b\xf8\xe5\x97\xdb\x55\xea\xd2\x15\x57\xf2\x06\x46\xbe\xf0\x0e\xee\x22\x3f\x19\xcb\x11\x5d\x81\x99\x1d\xda\xa9\xa7\x95\x24\xf3\x69\xdf\x18\x4d\x89\xcc\xec\x6c\x4e\x51\x15\x85\xe4\xeb\xa8\x68\xf8\x49\x23\xcb\x60\x98\x67\x4b\x4b\xd6\x77\x58\x30\x07\xf8\x43\x45\x03\xfe\x43\x2f\x30\x34\xb0\xb9\x2b\x5b\xaa\xcc\x3f\xad\x38\xc6\xa7\x95\x13\xdd\x73\xff\x39\x93\x7c\xd0\xea\xfb\x37\xb4\x54\x91\xc7\xc0\xda\x69\x6c\x98\x87\x44\x63\xd2\xc8\x76\xff\xfe\x76\x8c\xa3\xbd\x15\xe6\xfe\x9f\xa0\x71\x23\x9d\xb8\xad\xc7\x39\x09\x5b\x0e\x73\x5b\x90\x8c\x9c\x60\xff\xb4\x98\x1b\x3f\x0e\xc8\x89\xc4\x0d\x87\x12\x1f\x50\x5e\xcc\x74\xc6\xf0\x16\xea\xa8\xbe\xb7\x95\xd5\x7e\x60\xe1\x40\xfb\x39\x5c\x39\xa5\xc8\xe0\xe5\x19\x54\x1f\x2c\xce\x52\x22\x69\x53\xeb\x06\x94\x97\x9d\x94\x39\x4b\x12\x4a\xd7\x02\x95\xc3\x75\x55\xad\x55\x29\x0b\x61\x53\xd8\x66\x0b\x57\x64\x5b\xe2\xe7\xfa\xb8\x02\xf4\xc6\xa6\x64\x7a\x94\x37\x5a\xf7\xfa\x92\x6f\x4d\x6c\x2c\xaa\x27\xaa\x5e\x5f\x29\x91\xc3\x2f\x86\x1f\xaf\x6f\xad\x8d\xe6\x0e\xb5\x07\x2e\x01\xd6\x02\xcb\x1b\xe2\x04\xfc\x38\x92\x8c\xbf\x9f\x15\x43\xc7\xde\x04\xca\xaa\x2e\x70\x57\x6e\xea\x23\x20\x54\xc5\x2e\x5d\xc9\x92\x15\x5b\xcc\x28\xbb\x8f\x8b\x63\x26\xe1\x41\xea\xef\xeb\x4f\x74\xd4\x60\xec\xc4\x48\x51\x86\xee\x35\x80\xe1\x0f\xb6\xfb\x36\x19\x6a\xfb\xff\x8b\x0a\x4f\xf2\x3f\xe2\x24\x14\xfc\x9e\x62\xb8\x15\xf5\x5a\x72\x26\xa9\xf3\xd5\x20\x32\x89\xa2\x5e\x7c\x27\xb4\xd8\x58\x18\xe9\xfd\x49\xf4\x99\x89\xd5\xf2\x4b\xed\x03\x73\x87\x14\x9d\xf0\xc7\x8a\x4e\xf8\xe3\x26\x08\x7f\xaf\x72\x5d\x5c\x44\xec\x93\x6b\x3a\x29\xbd\xaf\x8d\xed\x3e\x99\x68\x1a\x2e\xcc\xb6\x13\xb7\x68\x73\xa8\xcf\xe1\xa7\xe3\x6c\x3e\xaa\x78\x4f\x8c\x15\x47\xa4\x9e\xd4\x09\x5b\x98\x6d\x57\xc3\x45\x6b\x4a\x6d\xdc\x32\x52\x84\xe4\x91\x1a\xc3\x7f\xa5\x32\x79\xce\x53\x3d\x2f\x1e\xe1\x1d\xba\x21\x72\x26\x24\xc6\x09\xec\x63\x7d\x75\x96\x5c\xb7\x8a\x9d\x68\xd9\x22\x77\xb8\xad\x06\x18\xb7\x15\x8d\xc0\xf4\xa8\x74\xe9\xb6\x42\xff\x89\x07\xe8\xfc\x64\xa2\xb4\xdf\xbb\x37\x78\xa2\x89\x26\x5d\x7d\xef\x04\x69\xa1\xc0\xf8\x67\xc6\xd8\x00\x55\xd7\x71\xeb\xd6\xfb\xec\x86\x31\x8f\x36\xe8\xb9\x3f\x01\x8d\xa8\x13\x2f\x93\x48\x03\xdf\xb3\x38\x34\x2f\x35\xc0\xe3\x62\xd3\x5d\xb5\x49\x82\x91\xee\xe6\x69\xca\x09\x36\x4f\x4f\xf0\x54\xf6\xce\x51\xca\x6d\x06\x12\xb6\x95\x30\xcf\x9c\x17\xe6\x09\x32\xa8\x26\xcf\x4d\xda\xc3\x39\x85\x9b\x23\x99\x76\x80\xb4\x6d\xa7\xb6\x18\xba\x6d\x6f\x8e\x21\x1c\x92\x6c\x48\xa5\x9e\xc8\xb5\x8c\xa3\xa0\xfc\xdd\x45\xee\xc6\x7f\xd4\xc4\x99\xcf\x6d\x9c\xf5\x52\x5a\x8a\x1a\x93\xa9\x58\xb9\x77\x94\x90\x80\x96\xd1\x19\x16\x6b\x49\xe2\xaa\x01\xa8\x2c\x08\xae\x17\x22\x35\x6a\x39\xaa\x8e\xc4\x5b\xa3\x30\x54\xcc\x7b\xb6\xdc\xe5\x9b\xe5\xfb\x3f\xdb\x51\xf3\x8d\x13\xb8\xdd\xa2\xc3\x4b\x0b\x07\x6b\xf6\xd8\x48\x75\x8b\xce\x8d\x94\xa3\xdb\x55\xe5\x12\xf2\xed\x28\xc0\x30\x76\xac\x07\x0f\xe6\x23\x0d\x74\x87\xf9\x76\x9c\x8b\x59\x3a\x60\xbb\x47\xb5\x67\xdb\x51\x95\x1a\xf6\xab\x9c\xc4\xba\x5a\xde\xab\xe8\xa8\x32\x49\x3f\x3a\x0a\x48\xea\xae\xcb\x6d\x0c\x01\xe7\xfa\x5b\xa1\x05\xf8\x96\x6e\xfa\xbe\x35\xd1\x7c\xdb\x37\x4f\xf4\xff\xbc\xa8\x77\x0e\x44\xcf\xb5\x3d\xba\x87\xf3\x2a\x69\x08\xfa\x9e\x92\xb8\x87\xa6\xdc\x52\x96\x57\x34\x58\x7e\x5e\x38\x44\x51\xa8\xb3\x00\x18\x17\x6e\x51\x7d\x6d\xf8\xff\x37\xe9\xb0\xc4\x26\xef\x3a\x03\xa1\x6c\x5c\x73\x64\x5b\xfc\x58\x09\x9a\x27\x2e\x95\xb4\xcc\x9b\xbf\xd5\xab\x47\xcc\xdf\x9a\x2e\x3c\x64\xf0\xc6\x3a\x7e\xf5\xf7\x91\x56\x60\xa8\x4a\x87\x7d\x97\x24\x6e\x58\xa0\x87\x87\xed\x0c\x8f\x53\x9c\x10\x97\x47\x41\x47\x77\x5b\x67\xf2\x77\xcc\xb5\xeb\x7a\x9d\x99\x60\xa2\x91\xad\x61\xbe\x4a\x54\x3c\xb7\x2b\x8e\x44\x4e\x17\x0e\x78\x2d\xb3\xf0\xee\x67\x95\xe5\xda\x62\x62\x5c\xce\x10\x0f\xe5\x52\xe8\x75\x91\x26\xba\x91\x34\x31\xec\xbb\xd4\x16\x98\x45\x03\x9d\xc0\xc7\x06\x3f\x51\x79\x49\x51\x52\x68\x60\xe9\x1c\x2f\xb2\x16\x08\xf1\x67\x27\x4e\x04\x0a\xd4\xab\x59\xbe\xac\x9a\x88\x17\x54\x13\xf1\x82\x9a\x89\x9a\xae\x83\xcf\x89\x68\x69\xb4\x82\xae\x86\x92\xef\x2f\xaa\x5e\xcf\x16\xbc\x96\xf7\x09\x3b\x8a\x5b\xed\xfc\x64\xa2\x62\x39\xf4\x02\x18\xfa\x83\x61\x96\xd3\x89\xf1\xa2\x58\x34\xde\x1a\x85\xfc\xf5\x56\xfd\xfd\xe5\x30\x4f\x4b\x4a\x0f\x53\x5b\xe5\xce\x24\x60\xba\x4a\xca\x4e\xb7\x5d\x72\xf6\x09\x2f\xd7\x17\x0e\xb6\xab\xd4\x9a\x42\x83\xe7\x2e\x28\xf0\x5c\xd0\xe1\xec\x1a\x97\x90\x8e\xb6\x37\x21\x40\x04\x61\x57\x76\xd5\x99\xfb\x5c\x27\x10\xe0\xee\x8f\x54\x2d\x48\xab\x0e\xd1\x6c\xf7\xfa\x56\x1d\xdf\x43\x2f\xb4\x17\x81\xd1\x17\xa4\xa8\x42\x54\x9c\x1b\x69\x77\xff\x9e\x4b\x77\xd0\x0e\x05\xc3\xed\x89\x8e\x12\xc3\x51\x7e\xfa\x3b\xd6\x95\x10\x08\xd2\x2d\x96\xa0\xa4\x25\x8f\x3f\x7a\xa3\x49\x9d\x7c\x98\x67\xdd\x00\x95\x13\x91\xda\x90\xe2\x9f\xd1\x8a\xe4\x43\x56\x45\xac\xdf\x13\xcd\x91\x4b\x04\x90\xe3\xc7\x2a\x06\xf2\xf4\x8c\xb8\xcc\x28\x77\xa7\x3a\x4a\xfe\xe2\x06\x5d\x1f\x5c\xcf\xf3\xca\x28\xf2\xbb\xea\xc8\x58\x76\x79\xcf\xbd\x5a\x2f\xbe\xb9\x43\x1e\x55\x15\xc4\x35\xff\x58\x6d\xb1\xa1\x39\x5c\x71\xf9\x36\x26\xc3\xc0\x4f\xa2\x49\x39\xcb\x76\x51\xba\x41\x95\x40\xa8\x9a\xee\xb4\xf8\xea\xd2\xb7\xe4\x27\x0d\xac\x21\xb0\x2c\x0a\x39\xb6\x31\x47\x65\x82\x27\x3f\x69\x30\xd3\x9f\x6b\xe7\xc6\x25\xab\x66\x8d\x12\x17\xec\xe1\x7b\xca\x87\xf8\x06\xdd\x32\x7c\xea\xcf\x9a\xfc\x86\x7a\x49\x56\x14\x6b\x2d\x95\x74\xe0\x2e\xf3\x63\xc5\x23\x8f\xab\x3c\x27\x3e\xeb\xa3\xad\xbd\x73\x9c\x17\xfd\xd1\x48\xd9\x11\xe2\x94\xc7\x62\x3b\xa5\x85\x30\x8f\x8c\x34\x66\x0a\x07\x00\x8e\x10\xa4\x7d\xa8\xfe\x19\x9a\x88\xcc\xf3\xfe\x68\x0c\x07\x19\xec\x97\x6f\x47\xad\x2f\x7d\x91\xd3\x8a\xdf\xa7\x89\x33\x3f\x8e\x54\xd3\x60\x33\x1a\xf7\x81\x2d\x1e\xa1\xb7\xc6\x49\xf5\x01\xfa\x4d\xa0\xf1\x31\xb7\x01\xfd\xbc\x6b\xf8\x35\x48\x27\xaf\x62\xd7\x63\xc4\x01\x67\x7b\xed\xa9\x23\xe8\x9b\x60\x5a\x70\x1b\x49\x03\x12\x4c\xb8\x9d\xa1\x6b\xc1\xd3\x52\x76\xd0\xa3\xa6\x29\x8e\x8d\xbb\x13\xf5\xff\xfc\xfc\x81\xf6\xa2\x49\x4c\xd0\x7d\x02\x82\x98\x95\x57\xf9\x49\x13\x2b\x61\xd1\xa9\xdd\x06\xc0\xc2\xcc\x7a\x00\x2f\xcc\x74\x9e\x50\xc4\x29\x53\xe6\x2e\xb6\x2d\x35\xa9\xdd\xd0\x62\x8b\x4a\xe7\xc4\xc4\x5f\xa9\x5c\x1e\xf4\xb5\xbc\xa8\x9f\x47\xd4\xdf\x40\x23\x81\x65\xbc\x71\xab\xc4\x50\x46\xd5\x5d\x5f\xc5\x2f\x40\x37\x68\xa6\xa3\xd8\xdc\x36\x5d\x76\x29\x1a\xbe\xca\x07\xfb\x80\x97\x7e\x19\xb7\x7e\x82\xe7\x15\xe0\x4d\x02\xbc\x56\x05\xfa\x03\xc0\xd6\x3c\x3e\x3b\x68\xa6\x3c\x50\x41\xa4\x97\xb8\xb2\xb4\xf9\x94\x4a\x13\x01\x96\xf0\x23\x92\xf9\x79\x1e\xe3\x5e\x6d\x64\xa8\xae\xf6\x1d\xe3\xb9\xbc\x54\xf8\x3e\x51\x0d\xd8\x68\x68\xda\x1f\x6c\x17\x59\xe2\xba\x6e\x69\x0d\xc1\x44\x06\x18\xf4\xcd\x65\xb4\xf1\xa4\xdb\x3a\x2d\xc6\xc1\x85\x3b\x78\x5e\x41\x51\xce\x2b\xe3\xb5\x6c\x68\x91\x1f\xe1\xe6\x31\xd0\x83\x9f\x4c\x96\x39\x73\xc4\x5f\xa1\xe3\x99\x75\x85\x95\x30\xe2\x24\x14\x62\x7e\xbe\xdd\x77\xbd\xfe\x4c\xf8\xa9\xdb\xc6\x2d\x70\xc2\xfe\x9d\xa6\x11\x3b\x2c\xc9\xb7\x77\x14\xc9\xf8\x8c\x4a\x6f\x8c\xcd\xb3\x45\x52\xe4\xae\x2f\x03\x72\xea\xd7\x94\xf5\xcc\x6b\x4d\x7c\xca\x83\xed\x2e\x59\x92\x50\x8c\x43\x79\x72\x3b\x52\x8c\x98\x53\x9a\x7d\x35\x29\xdb\x4c\xfd\xd7\xd4\x26\xd5\x61\x45\x34\x79\x7b\xa4\x88\x26\x6f\x6b\xf8\x69\x3f\xcb\xcb\x64\x6d\xba\xb5\x77\x6e\xf3\x08\xf5\xaf\x3d\x56\x6e\x5f\xc0\xa0\xb5\xe6\xe7\x37\x8f\x8c\x69\xfc\x7c\xa5\xb2\x09\x7e\x95\x96\x98\x12\x30\xa7\x72\x6c\x88\x4b\xb7\x62\xa4\xbf\xd7\x84\x3c\x6f\x38\xd5\xbb\xe8\xf1\x88\xb6\x21\x7d\x75\x7e\x12\x7d\x46\x99\x24\xc8\xc8\x4f\xb0\x5e\xde\xea\x28\x4c\x08\xcf\xfb\xa4\x79\x68\xf2\x60\x1d\xa4\xe5\xb6\x71\x0e\xa2\x29\x26\x6e\x33\x5b\x4f\xba\xb9\x43\xf5\x81\x45\x3e\x93\xd4\x4b\xf3\xd3\xa7\x93\xf4\x5b\x84\x78\x1e\x3a\x7f\xc3\xc2\x4d\x85\xd1\xf0\xcf\x47\x0a\x61\xf0\x40\xfb\xca\x4c\x4d\x68\xbf\xed\xdf\xdf\x1e\x26\x66\x8d\x8f\x53\xd6\xcc\xa6\x4f\x11\xfd\xec\x86\x57\x2c\x92\x4d\xac\x92\xf5\xd9\x50\x4a\xa9\x1b\x51\x60\x6b\x2e\x67\x71\xbf\x15\x86\xd9\x6f\x21\x8a\xf3\x13\xed\xb4\x31\xa0\x4e\x7b\x55\x4c\xab\x7e\xf1\xc9\x91\xb2\x1a\x39\x06\x28\x09\xff\x4b\xa4\x5a\x42\xc7\xc6\xd4\x28\x7b\xfd\x92\x94\xbc\xb0\x92\x39\x31\x40\x81\xf8\x81\x66\x94\xc8\xac\xca\xab\xb4\x2a\xb1\x9c\x4e\xf8\xf9\x3b\xd6\x43\xa1\x3d\x99\x58\xd4\xd1\xca\xae\xd9\xc5\x3c\x43\xbf\x5f\x2a\xe4\xfa\x35\xfc\xd8\xa7\xa7\x24\x0b\xa2\x12\x89\xf3\x91\xf2\x45\xc1\x0d\x43\xe2\xf3\x27\xbe\x8e\x1e\xda\xe1\x90\x61\xdd\xde\x85\xeb\x37\x5e\xf2\x2e\x5c\x5b\xbf\xcd\xc2\x2c\x69\xa1\xdb\xd2\xc5\x34\x56\xf6\xf2\x5b\xf5\x55\x44\x67\xf1\x88\x02\x95\x5c\x57\xd7\xdf\xa5\x4b\xf5\x39\xc4\x8a\x5b\x5e\x39\xdb\xf3\x3c\x8f\xab\x98\x58\xba\x14\xb6\x7a\x5e\x3a\xdd\xd3\x24\x99\x39\xcf\xb2\x0c\x38\xfd\x71\xc7\x8e\xea\x0c\xed\xe2\x78\x8f\x27\x2f\x20\xd3\xeb\x79\x6d\xde\xf8\xff\x28\x85\x05\x91\x7a\xa5\xa5\x81\xd4\xe8\x1f\x21\x21\x11\xc6\x36\xdd\x3c\x46\x3f\x28\x30\xd9\x79\xfc\x74\x0c\x28\xfe\xf9\x44\x1d\x23\x33\xe8\xd4\xc5\xfd\x2c\xc1\x21\xe9\xd7\x69\x50\x1e\x79\x6b\xa2\xb5\x44\x2c\xf4\x2c\x4b\x54\xfb\x16\x1f\x2b\xe2\xea\x5b\xef\xcc\xcb\x2f\xb7\x17\x6d\xbe\x6c\x13\x4f\x8e\x1e\x53\xc6\x94\xca\xe0\x09\x3d\x7c\xea\xe5\x66\x50\x3c\x1c\x22\xc6\xbd\x91\x52\x9c\xe1\x17\x4a\x23\x50\x19\x1a\x6c\x57\xf6\x34\x47\x70\x78\x23\x69\x7a\x07\x7b\x0f\x0b\xee\x1a\x5d\x64\xb4\x36\x4e\x46\xc1\x59\xf4\x5f\x45\x61\xe8\x7a\x76\x4c\x42\xc5\xe6\x6b\x4f\xd2\x35\x07\xbc\x80\x85\x26\x94\xc0\x8d\x58\x4b\x7e\xc8\x1b\x0b\x37\xea\xb4\x46\x96\x7d\x48\xb5\x96\x78\x3c\x29\x4b\xb2\x7b\x91\x92\x6b\xba\x3f\x0a\x07\xc9\x07\xf4\xdd\x50\x9d\xb1\xe0\x02\x76\xcf\x15\x64\x93\xc0\x23\x9f\xa0\x81\x34\xc0\x3b\x3b\x3a\x8a\xa9\x04\x23\x00\xe1\x96\x04\xf5\xa5\x47\x3a\x61\x1a\x30\x8d\x81\x19\x7e\x73\x6b\x7d\xeb\x22\xd9\xbf\xbf\xed\x06\xc3\xc4\xc5\x6c\xd9\x15\x50\x93\xe7\xc7\x1d\x98\x1a\x7a\xc8\x45\xe9\xa4\x4e\x61\xeb\x2d\x44\x20\xf1\xe1\x6a\xb0\xa8\xb1\x69\x9c\x55\xb9\xe9\x09\xa2\x90\x93\x3d\xa5\xc0\x7d\xd1\xab\x04\xd6\x47\x0c\xb9\x12\x7a\x71\xe9\xc0\x42\xbb\xc2\xf0\x16\x01\x3b\x07\x38\x24\x3c\xaf\x19\xf7\xa7\x3d\x1b\x30\xc5\x08\x43\x3b\x59\x95\x74\x03\x65\xbd\x36\x48\xa9\x0e\xcc\x8a\xcd\x5d\xbc\xac\x27\x54\xe3\x2a\xb8\x0d\x1a\xcd\x49\x56\xa5\x3d\x3b\xd6\x57\x54\x42\xfd\x77\x94\xd9\xe7\x29\x45\x29\xb6\x83\x61\xdf\x14\xee\x55\x8b\x0e\x02\x16\xf6\x19\x1c\x06\xfc\x44\x35\x96\x8a\xb5\xc1\xd0\x94\x7d\xae\xbf\xb0\x22\x30\xb2\xe4\xc7\xaa\x48\x26\x47\xff\x2e\x77\x48\x91\x47\x5f\xc7\xa2\xf4\xd6\x49\xc1\x1a\xba\xb1\xb2\x28\xca\xaa\x6b\x7d\x9b\x4c\x56\x85\x82\x72\xea\x39\x7f\x37\x1b\xb8\x94\xec\x3d\xf7\xee\xf5\xd8\x91\x3a\x1d\x12\x84\x48\x83\x50\x40\x99\x9b\xb4\xe8\xd9\xd4\xc5\xd0\x71\x12\x5b\x80\x50\xf2\x68\x93\xff\x5f\xf9\x07\xff\x60\xaa\xde\x15\xa8\x29\xae\x45\x9a\x15\xa2\x54\x1c\xde\x53\x53\xeb\x57\xb2\x45\xb4\x4f\x54\x87\x78\xce\x7b\x93\xd3\x15\xc7\x0e\x65\x54\x1d\x0a\xb0\x2b\x63\x68\x5f\xba\x15\xc2\xef\x96\xa9\x14\x7d\x73\xe7\x9d\x94\x11\xc2\xae\x2a\x26\xd3\xd5\x51\xc8\xb3\x4c\x77\xe0\x52\x57\x94\xb9\x11\x5d\x47\xc4\xff\xcb\x51\x98\x68\x5d\x9e\xa8\x1b\xf6\xcd\xb7\x13\x6b\x7c\x81\x2f\x86\x5a\xf5\x4b\x04\x3a\xe7\x65\x3d\x12\xd3\x2b\xfa\x0e\x2a\x48\x68\x2f\x4f\x53\xd0\xe4\xc7\x0d\x96\xa9\x07\xdb\x65\x5e\x15\x65\x4b\xe9\x8f\xa1\x4a\xe3\xc7\x9a\x1c\x66\x88\x6d\x3b\xad\x18\xce\x7f\x34\x0a\x27\xda\x49\xb5\xca\xff\x88\x82\x9b\x64\x34\x7e\xda\x5b\xa5\x8e\x15\x28\x44\x11\xa4\xe5\x95\x16\xb5\x6f\xc7\x07\x4d\x9b\x31\xeb\x76\x5d\xe9\x24\x7a\x48\xc5\xa5\xe4\xb0\xcf\x44\x9f\xfb\x94\x63\x90\xda\x6c\x2e\xb5\x45\x31\x15\xe8\xf3\x50\x98\x17\x72\x7f\x08\x7e\x97\xa2\x87\x7d\xf2\xf0\xf9\xbf\xeb\x85\x9d\xae\xfe\x08\xba\x86\xe8\x7b\xcd\x90\x37\x2f\x32\xac\xbb\xa4\xea\x06\x98\xcf\xd4\x7a\x60\x99\x5d\x19\xb5\x5e\x0a\x8b\xb1\xde\x02\xb2\x39\x69\x95\x72\xe3\x89\xfa\x12\xe8\x77\x3c\xd2\xa1\x83\x03\x0b\xe1\x26\x3a\x95\x54\xa8\x3c\xf6\xd4\x3a\xfd\x68\xb1\x1d\x0b\xa1\xff\x2d\xfa\x11\x22\xdb\xa1\x2e\xc6\x0c\x21\xa5\x39\x23\x87\x4d\x21\x12\x99\xcd\x68\xea\xe0\x3f\xfc\x2d\x6f\xed\x49\x1b\x01\x4f\x4e\xa2\x06\x46\x3c\x7c\x30\x6a\xfd\xe6\x41\x9e\x9b\xb4\x3a\xf5\x5e\xc6\xff\xff\x99\x12\x63\x6b\x75\xa6\x5e\x5a\x50\x96\x5a\x07\x16\xa4\xab\xcf\xca\x14\xb8\xcb\x70\x72\x41\xa2\xb9\xbb\x83\xe0\x8d\x46\xf0\xbd\x08\x9a\xe5\x48\x62\x77\xaf\xd3\xca\xc2\x3f\xed\x5e\xa7\x5d\x89\xa9\xfe\x95\x48\x39\x52\xb0\x88\x2e\xab\x98\x8e\x02\xc3\xe0\xcc\xd8\x88\xc9\xe6\x15\x6d\x31\x9c\xfe\x67\x47\x21\x13\xd0\x92\x35\xb9\x5b\x4a\xd8\x19\x0c\x67\x3c\x7c\xf6\xf8\x71\xe7\xd3\x94\x08\x97\xd7\xb8\x8c\x17\xa0\x9e\x12\x62\x7f\xbd\x09\x76\x50\x17\xc3\xab\x66\x4d\x1b\x71\x8e\x95\x49\x0d\xe7\x25\x19\x56\xd3\x81\xa9\xe8\x37\x47\x95\x7d\xdc\x51\x05\x9c\x49\x6c\x51\x64\xa9\xa6\x90\x8c\x59\x85\x04\x4a\xcf\x52\x5e\x57\x9c\x29\xe0\xbe\x08\x80\x8f\x29\xf2\xcc\xce\x75\xc5\x1d\x9a\x74\x7e\xd9\x37\xdf\x36\x4b\x4b\x36\x2e\x8b\x29\x25\xf2\xc9\xe9\x82\xf8\xf5\x2b\x71\xb8\xcb\x13\x9d\x4e\xca\xe4\x2b\x8a\x81\x5b\x1c\xe2\x6f\x28\x87\xf8\x1b\xd1\xe3\x2a\x6a\xae\xb8\xc2\xe6\xd3\x21\x54\xbc\xcd\xcb\x46\xd4\x1e\x68\xe1\x89\x0e\x44\x60\x7c\xbd\xad\x44\x7f\x86\xb9\x1d\x9a\xb5\x81\x97\xbe\x44\xbb\x01\x22\x5d\xfc\x58\xc1\x58\x87\x79\xb6\x04\xb6\x99\x49\x1e\xd2\xe3\x5f\xfa\x7b\xcc\xbb\x37\x14\x47\x01\xec\x66\xfc\xfe\x77\x90\xb2\xb2\x4b\x8a\xd2\xed\x7b\x67\xab\x7b\x8a\x4c\xce\x37\x94\x0b\x72\x42\x2e\xc8\x3b\x83\x81\xf5\xb7\x94\xa7\xc1\x39\xe4\xb9\xc2\x34\xf4\x89\xc4\x4b\x4f\x12\x46\xce\xeb\xdf\x06\x92\xe3\xff\x19\x29\x39\xb3\x6d\xeb\x8f\x29\x0d\xa1\x15\x97\xf6\xc8\x59\xc6\xb3\x18\x83\x3a\xee\x49\x04\x0c\x64\x91\x47\xe0\xb0\xcb\x4f\x94\x37\x28\x0b\x5a\xf1\x13\x0d\x4c\xa9\x8a\x32\x1b\xd8\x1c\x66\x21\xdc\xe4\x8d\x14\xb4\x71\xa4\xec\x1f\xc6\x67\x67\x01\x92\xa4\xfa\x0d\x96\x1a\x13\x3b\xeb\xa8\x27\x9c\x07\xfa\x59\x5e\xd9\x35\x78\x4b\x02\xcc\x89\x7d\xfe\xd9\xf5\x3a\x36\x20\xd5\x3a\xa7\xf8\xa2\xf0\xac\xc7\xc6\x98\xea\xa8\x4e\x43\x1f\xe3\x01\xec\xc9\xab\x7a\x06\x7f\x61\x34\x91\x01\x4a\x4e\x3e\x29\x35\xd2\x4e\xdc\x57\x2a\xd7\x75\xe5\xda\x38\x73\xe8\x37\x5e\xf2\xb9\xc4\xd6\x17\xd5\xd5\x36\x72\x71\x57\xb6\x02\xaf\x1d\x98\x00\x7e\xdc\xa4\x90\x40\xaa\xeb\x6a\x18\x76\x46\x0d\xc3\x26\x67\x97\x73\x87\xea\x0f\xc9\xf2\x52\x0d\x8d\x37\x95\x7a\xe5\x66\x93\x1f\x65\x61\x12\x57\x2c\x56\x39\x7e\x0c\x4b\x75\xe2\xda\x88\x6e\xe7\x98\x68\x0f\xe6\x1e\x32\xe2\x41\x94\xe3\xc7\x63\x00\xb4\x65\xa7\x79\x9c\xe0\xe1\xf3\xe3\xf5\x47\x95\x8f\x89\x49\xb5\x2f\x06\x58\xff\xd2\x1d\xa3\x48\x83\x2c\x96\x85\x9f\x7c\x7b\xdd\x23\x88\xee\xa8\xd9\x51\x0b\xed\x45\x36\xcd\xa1\x4d\xab\xe0\xf7\x07\x3d\x20\x44\x4b\x16\x9e\xd3\x22\x25\xc3\x2c\x2d\xc4\x49\x14\xbf\x1e\x5a\xd9\xfc\x38\x0a\x46\x05\x4b\xc4\x6c\x5e\x98\x6d\x24\xee\x86\x8e\xf2\x52\x95\xe7\xd9\x6a\xa1\x30\x65\xef\x2a\x4c\xd9\xbb\xca\x52\x2d\x4b\xed\x67\xea\x7f\x41\x6a\xfa\x26\x5d\x07\x00\xfb\xbe\x49\x33\x0f\x65\x6c\x22\xae\xa1\x3b\xf1\x73\x01\xb0\xbd\xa4\xcd\x95\xcf\x2a\xdb\x98\x4d\x1c\xfb\x1e\x0d\x55\x87\x3b\x64\x48\x9b\x74\x85\x30\x6b\x7e\xa8\x53\x6f\x3f\x01\xae\xd3\xe9\xce\x9f\x38\xaa\x13\x18\x84\xb8\xaf\x8f\xc2\x20\xee\x4d\xbe\x8a\xc8\x3a\x18\xde\x8b\x73\x75\xc7\xba\xa2\x61\xb1\x57\x24\x52\x1b\x26\x4f\x21\xc7\xda\xb1\x5e\x87\x41\x5f\x09\xd5\x11\xc9\xab\xa7\xd6\x11\x49\xd4\x53\x03\x6a\x3d\xcf\x16\x5d\x3a\xde\xbc\x53\x78\xc0\x8d\x89\xc3\x48\x8e\xf3\x6e\x56\x2d\x0a\x57\x5a\x76\x1e\x7d\x2b\xd9\x7a\x4d\x36\x1b\x55\xbe\xe2\x56\x24\x1d\xe5\x45\x18\x29\x4b\xda\xc9\xde\x27\xed\xf2\xb4\xb4\xb9\xf5\xfa\x27\x1c\xd0\x80\x94\xe1\xc7\x1d\xa9\x82\x97\x8c\x4b\x76\x04\xd0\xec\x2e\x5c\x36\x64\xd8\x53\x1d\x3a\xf5\xd0\x32\xf8\xe1\x28\x4c\xee\x90\x05\xb2\x58\x05\x0e\xf8\x9d\x6a\x88\x93\xdb\xc2\x9a\x3c\xee\x3f\xac\xba\xb7\xa7\x70\x71\x45\x58\x9e\x2e\xae\x28\xce\xd3\x72\x40\x5f\xe3\xbf\xd5\x08\xaf\x48\xcd\xe9\xa4\x22\x47\x41\x06\x72\x38\xd2\xb3\x4b\xb4\x20\xf8\xe5\x91\x12\x5e\x7a\xa0\x76\x55\xcf\xe4\x5d\xb2\xda\x09\x10\x11\x0e\xf0\xb2\x39\x15\x2f\xa1\x9f\xad\x16\x3b\x94\x9c\xe4\x79\x05\xe5\x9b\xc6\xea\xc1\x5e\x97\x5d\xac\x92\xc6\xe7\xbd\x7a\xa8\xef\x82\x3e\xf1\x4c\x47\x29\x5e\x0f\x86\x49\xb6\x66\x6d\xb1\xbb\xbe\x9c\x18\x3f\xb1\x74\xdf\x98\x3e\x01\x76\xc7\x1d\xba\xc2\x68\xc6\x3e\xa6\xa4\x58\xd6\x23\xe5\x32\xfd\x31\xf6\x93\x18\x94\xd2\x97\xc0\x80\xe8\x94\x76\x98\x7c\x73\xa4\xc6\x3b\x90\x08\x45\x48\xde\xbd\xfe\x68\x60\x3c\x55\x4b\x4b\x63\x8e\xa4\x23\xcd\x04\x6d\xe8\x65\x2f\xb9\xbc\x28\xa7\xc3\x4d\xdb\xd9\x51\x2d\x63\xd4\x5b\xe0\x2f\x6e\x2a\x8f\xc8\xef\xaa\xe9\x44\xd7\x76\xab\xb8\x6c\x05\x3e\x3f\xeb\x92\x4a\x2f\x7d\x9c\x92\x92\xbb\xae\x9d\x56\x22\xf6\x53\x1d\xad\x1d\x06\x11\xd4\xb1\xe6\x20\x2a\xa0\xa3\x9f\xaa\xee\xb7\x9a\xe5\x45\x39\x53\xaf\xcd\xcd\x19\x7c\x75\xd1\x92\xa3\x4b\x27\xa3\xe4\x96\x36\x4d\x0b\xcb\xe6\xba\xc7\x31\x17\xae\x6b\x93\xba\xfc\x9b\x52\x57\xef\x81\x6a\xc4\x8c\x5d\xc9\x89\xa9\xc0\xaf\xb7\x5f\xa9\x06\x43\xf1\x26\xf1\xf5\x77\x30\xb7\x56\x4c\xb3\xc5\xdc\xa4\xdd\x02\xd0\x5f\xdf\xe0\xf2\x7e\xb0\x17\x68\x3b\x88\xa0\x55\x58\x78\x83\x2a\xef\xda\x9c\xac\xaf\xf6\xcd\x7b\xcb\x67\x7a\x13\xe9\xf0\x3d\xaa\x9c\xe6\x8a\x65\xc8\x86\x89\x0c\x72\xcb\xab\xcb\x9e\xd2\x17\x80\x65\xf2\x65\x8f\xe3\x66\xf0\x78\x7f\x22\xa2\x91\x4e\x75\x6e\x5c\xaf\x8f\xd2\x00\x7f\x87\x63\x19\x51\x1f\x8a\xc3\x98\xca\x1e\x6f\x34\xa1\x5d\xcc\xed\xaa\x60\xab\x21\x57\x84\x79\x01\x3f\xd6\xc4\x56\x53\x14\x26\xee\x57\x85\x2d\x59\xb0\x4e\xb0\x68\xf4\xa3\x59\xdf\x3d\x0a\xe3\x49\x6e\x84\x4b\x75\xa0\x78\x29\x27\x31\x7b\xe4\x41\x56\xda\xcb\x25\x71\x9f\x51\x29\xdb\x3d\xfe\xf5\x68\x6a\xbc\x8e\x4d\x29\x60\x3c\x05\x7d\xd7\xe9\xf2\xa4\x35\xf0\x8b\xb3\x5f\x6e\x17\xd9\xc0\x2e\x66\xdd\x35\x45\xea\x3a\x16\x05\x10\xf2\xb1\x09\x3a\xf5\xe7\x69\x02\x61\x8a\x32\xaf\xe2\xb2\x62\x37\x1d\x9f\xfa\x2a\xf5\xfe\x27\x94\xf2\x54\x69\x7b\x19\x03\x56\x71\x30\x6e\x07\x9e\x86\x9f\x74\x02\x66\xce\x95\x26\x59\xdb\xa1\xf4\xd9\x40\xc1\x62\x04\x04\xfd\x36\xa4\x3b\xdb\x3a\x6a\x40\x85\x44\x1b\x27\xc9\xbd\xd1\x58\x3b\x76\x52\xa0\xb9\xbe\x59\xdc\xdb\x17\x98\x95\x9a\xe9\x5c\x88\x02\xe6\x0a\x36\x40\x6e\xc9\x89\xca\x9e\x06\xff\x89\x96\x67\x43\x7f\x2b\x5b\x4d\xfd\x40\xd1\x13\x25\xfd\x00\xe2\xcf\xe9\x57\xb0\x82\x55\x13\x4b\xa6\xcc\x5d\x2a\xd9\x36\x4a\xbf\x3b\xb8\x91\xfc\x64\xab\xf4\xde\x8b\xb3\xf3\xed\x43\x2f\x4c\x2b\x8f\x9f\x7f\x39\x52\x8d\x54\x88\x61\x61\x44\x7c\x4c\x95\x5f\xb7\x15\x3d\xcd\xc4\x71\x56\xa5\x64\x91\x36\x33\xa6\xce\x17\x70\xf2\xb8\xbb\x28\x2e\x3f\xa0\x8d\x8f\x7d\xc0\x44\x52\xd9\xe5\x93\x8c\xa4\xe7\xdb\x71\x56\x70\x9d\x2a\x9d\x9d\x90\xb0\x6f\x4c\xd8\xac\x40\x61\x8c\x12\x8b\x61\xce\x4a\x4c\x38\x70\x4e\x68\x23\xdf\xef\x8f\x59\x3e\x6a\x51\x67\x93\x2f\x17\x53\x61\xc8\xa7\x39\xe3\x67\xa8\x87\x25\xe6\x1a\x61\x52\xf6\x4a\x95\xaf\x4d\x2b\x1e\xe1\x49\xad\xae\xc2\xf0\x6f\x01\x5e\x6a\x45\xf1\x3a\xee\x78\xe4\xdc\x8a\xcb\x33\xf2\xba\x86\x70\x25\xb0\xa3\x52\x38\xd3\x62\x40\x3a\x8f\x8c\x82\x1f\x53\xc3\x47\xaa\xe8\xa6\xa9\xa5\xc9\x07\x99\x27\x9f\xe8\x41\x9e\x4c\xe8\xfe\xb6\xaa\xf3\x5d\x1a\xdb\x32\x4b\xff\xcb\xff\x30\xb5\xab\x75\x65\x34\x15\x26\x08\x50\x75\x91\x06\x4d\x4b\xa9\x89\x49\x7e\x66\x12\x53\x4c\xd5\xd9\x2f\x4e\xf4\xeb\x91\x92\x45\xc6\x82\xc2\x96\x3c\xd2\x34\xcf\x44\x1f\x45\x30\xf4\xe2\xd0\x10\xe8\x54\x1c\x0a\x51\x66\x7e\xa2\xda\xb0\x4b\x36\x2f\x5d\x62\x5b\xea\x24\x3e\x11\x12\x9a\xdf\x3d\xa1\x4e\xe5\xae\x1d\xe6\x6e\x65\x3c\xd5\x1c\xd7\x0e\xf8\xb4\x8c\x38\xcd\x06\x55\x6e\xe8\x6a\x88\x32\x47\xfd\x11\x9e\xf2\x39\xef\x7d\xb7\x67\x26\x14\x87\xbd\x38\xef\x5a\xda\x65\x1f\x62\x81\x58\x68\xbc\x45\xc3\xca\x9f\x6f\x0f\xb2\xa2\x9c\xa2\x04\x14\x41\xf8\x1a\x52\x53\xdc\x3a\xc6\x4d\x23\xbd\xfe\xb9\x1a\x9e\x98\xd4\x24\x3d\x5b\x60\x7c\x70\xd0\x7b\xe5\x86\xf0\xb9\xd1\x68\x20\x3d\x30\x2e\x2d\x8d\x4b\x2d\x44\x75\xc5\xaf\x43\x49\xa4\x6f\x46\x6a\x1c\xb0\xb1\x95\xaa\xb3\x7f\x7f\x7b\xdf\xfc\x67\x68\xa1\xb2\x0f\x0e\x75\x66\x91\x47\xfc\x35\x2d\x54\x6c\xff\x1f\xea\xe1\xd8\x27\x54\xae\x01\x3d\xf4\x11\x66\x0f\x98\x2a\x30\x3b\x1b\xd1\xe3\xb5\x48\x71\xfe\x3e\x41\xcb\x13\xc9\x1a\xfc\xca\x82\x3c\x83\x2f\x62\xff\x40\x41\x2b\x7f\x17\x41\x5d\x68\x1c\x41\x11\xf4\xc6\x28\x50\xac\x7f\x8f\xd8\xe8\x5e\xdf\xe9\x80\x3a\x13\xf5\x88\x8d\xc5\x85\xc0\xd1\x45\xe2\xc3\x45\x68\x14\xe0\x5c\x3c\x05\xc7\xcf\x3a\xd9\x20\x86\x49\xc2\x65\xa6\x24\x93\xb7\x96\x77\xa1\xfa\xcb\x91\x42\xd8\xfd\x65\x03\x0a\x61\xbe\xdd\xcf\x92\x80\x50\x13\x34\x71\xfd\xc1\x02\x26\x0e\x95\x44\x6e\x89\x3c\x87\x79\xb7\x1f\x07\xfb\x2d\x35\x29\xcb\xfb\xd2\xdc\xa1\x76\x16\xc7\x95\xcc\x32\x95\xcb\xf2\x01\xbf\x74\x42\x87\xe8\x0b\x07\xf8\xd4\xc0\xf6\x79\x10\x8d\xab\x15\x79\x52\xf8\xdb\x34\xb5\x45\x81\x72\x5a\x61\x78\x8a\xa1\x8d\x9d\x49\xf8\xa8\xc2\x89\x7b\x57\x0d\x40\xef\x2a\x1a\xa0\xa1\x26\x69\xe2\x4c\x8a\xac\x55\xf0\x76\x4a\x23\x1a\x1d\x45\xe4\x44\xd7\x26\x20\x5b\x0b\xb3\xed\xd4\x1e\x46\x93\x45\x26\x5d\xf5\x02\x11\x3c\x61\xc3\x41\xda\xcf\x0a\x0a\x2d\x81\x70\x84\xc0\xc7\x8f\xd5\x95\x4e\x33\xa2\xf9\xaf\xe1\xb2\xf9\xd3\xa6\xbe\x6c\xfc\x44\x35\x5f\xeb\xc3\x72\x30\x4c\x5c\xd1\x9f\x52\xa8\xc9\x23\xa3\x50\x65\x71\xb3\x5a\x80\x9e\x5a\x28\x67\xb1\xe4\xdc\xc3\x2b\xbd\x78\xdd\xa1\x33\x57\x94\x38\xff\x20\x2b\xb3\x3c\x5e\x8b\x13\xc6\x27\x0a\xa7\x5d\x99\x22\x9d\x6d\x70\x32\x3f\x28\x54\xa4\x40\x5b\x41\xd2\xca\x8f\x27\x02\xc7\xfe\xfd\xed\x61\x96\xac\xe5\xfd\xb5\xb2\x3f\xe0\x91\x28\x3b\xdf\xaa\xde\xf3\x69\x8f\x74\x59\xb4\x89\xb3\x5c\xb7\xb1\x6f\x90\x72\xc0\x39\xa1\x11\x45\xa6\x9f\x2a\x5f\x99\xcd\x28\x94\x81\x9b\x6a\x61\xc4\x7d\x3b\x70\xb1\x49\x60\xb6\x78\x20\x08\x35\x85\xf3\xee\x9c\x46\x47\xdc\x6e\x9a\x47\x0c\x6c\x62\x52\xc7\x72\x5b\x68\x9d\xa3\x20\xe4\xc7\x8a\x7a\x59\xba\x02\x8b\x1e\xe1\xe7\xa1\xf5\x30\xe6\x7b\xa2\x13\x20\xbf\xbb\xa9\xdb\x8a\x7e\xc4\x24\x97\x61\x61\x96\x4a\x44\x93\x24\x4a\xb5\xeb\x14\xbe\x26\x72\x55\x80\x18\x70\xa6\xdc\xf5\x22\x7e\x5d\x1b\xe7\xd6\x62\x95\x41\xc3\x02\x8b\x9e\x1f\xab\xce\x79\x2f\xcf\xaa\x61\x01\x13\x0c\xe4\x6e\x5c\x0d\x62\x51\x89\x93\x00\xb3\x91\x46\x2a\xbd\xd8\xa6\x8a\xf7\x5b\x68\x76\xa3\x49\x71\x5b\xd9\xe5\x7d\x10\x8d\x4d\xd4\x87\x59\x61\xbb\x8f\xd2\x9b\x78\x60\xd9\xfe\xfd\xbc\xf6\x39\xc3\xc3\x77\x3c\x81\xc1\x31\x72\xbf\x1f\x51\x8a\x20\x7f\x15\x6c\xa2\xdf\x8f\x94\x3e\xc5\xfd\x28\x9c\x46\x57\xd5\x22\x60\xd4\x11\xbe\xdb\x87\x38\x39\xf8\x6d\xa9\x2c\xdf\xbc\x34\x52\x96\x7e\x17\x14\x67\xa9\xd7\x93\x1c\x40\x6c\xbe\xe8\x0b\x8a\xff\x57\xb8\xd7\xb9\x13\xed\x4f\xb4\x16\x99\x4f\xcb\x4f\x26\x32\xcf\xba\xe8\x1b\x66\xa5\xb0\x19\x5b\x41\xa3\xe7\x92\x62\x32\x5d\x52\x95\xae\x49\xec\x61\x93\x76\x6d\x3e\xa5\x2a\xd8\x33\xaa\xa1\x7e\x9f\xfa\xe4\x38\x53\x2e\x29\xbd\xd0\xa2\x34\x25\x49\xff\x7d\xe9\x8b\x82\xbf\xa1\xbb\x23\x58\x1c\xe5\x1a\x14\x77\xeb\xf2\xaf\xab\xa6\x7f\xe3\x18\xbe\x06\xbe\xd0\xc0\x1c\x76\x83\x6a\x40\x2f\x11\xba\x99\xa2\x9e\xa9\x66\x55\x95\x16\xae\xe7\xd5\xda\x50\x0d\x43\x0e\x83\x1f\x4f\x40\x61\xff\x5e\x3b\x7e\xce\x3d\xb7\x34\x15\xc2\xfc\x55\x45\xf2\x80\x06\x19\x8b\x05\x4c\xe4\x89\x84\xbe\x20\xd3\x15\x3e\xa0\xd0\x62\xbb\x15\x29\x75\xf5\x5b\x2a\xd2\xba\xf4\x15\xe6\x6f\x4d\x29\x8e\x31\x46\x45\xbe\x85\x55\xdf\x7a\xac\x9b\x33\x4d\xc2\x43\xf6\xf0\x90\x12\x53\x9d\x34\xfe\x4c\x91\x33\x7f\xd6\xf0\xa2\x2f\xb7\xeb\x4a\x7e\x5c\x53\xfb\x03\xad\xa9\x3d\x1e\xd3\x07\x6b\x0f\x05\x46\x08\xeb\x67\x22\x03\xfe\x1e\x32\x25\x11\x07\xa9\xaf\x8d\xd6\x21\x92\xde\x67\xbd\x46\xb8\xdc\xa5\xa3\x56\xa9\x78\x1f\xf0\x10\xe3\x26\xaf\x97\x32\x37\xb1\xe5\x25\x2e\x22\xe4\xf4\x89\xfc\x64\x62\x89\x1f\x7a\xa1\x6d\x7a\x68\x2a\xac\x10\x13\xeb\x45\x11\x93\x38\xab\x84\x25\xce\xaa\x78\x99\x25\xc9\x0e\x25\x6c\x74\x33\x0a\x0d\xca\x29\x8c\xf1\x91\x20\x5e\x47\xc6\xc4\xc2\x66\x68\x5d\x22\x47\x03\xa4\x05\x07\xc4\xee\xce\x67\x94\x01\x5b\x69\x73\x97\xe5\x06\x78\x13\x8f\x64\x80\xca\x1c\x3f\x9e\x64\x76\xee\xfd\xff\xaa\x0c\xd6\xa8\x45\x5a\xae\x05\xb5\x25\xa1\x4e\x04\x00\xe9\xef\x6b\x1f\x13\x6b\xf2\x47\xea\xeb\x24\x96\x8a\xca\x3c\xfb\x4d\x1a\x29\xb0\xcc\x14\xda\x30\x42\x52\x69\x79\xdd\xd9\x0b\x5a\xc0\x9a\x5b\x8e\xfc\x5e\xda\x70\xf3\xa3\x88\x5a\xe0\x80\x4b\x9c\x50\xf4\xc0\x0b\x4a\xb3\x6c\x77\x07\xb3\x62\xfe\x2b\x25\xb9\xd3\xb5\x45\x99\x67\x6b\x2e\xed\x31\x0f\x57\xac\xee\x03\xda\x78\x3b\x21\xee\x36\x6f\x4d\xb4\x04\x7f\x6b\xae\x5d\xa5\xae\xb4\xea\x26\xbc\x3d\x0a\x7e\x5e\x6f\xfb\xf3\x2b\xb5\x49\xc1\xd8\x20\xa5\xc8\x2f\x37\xfa\xbc\xa2\xc9\x98\x22\xc6\x9c\x73\x8a\x7e\x95\x78\x06\xb5\xbc\x6c\xcb\x6d\xca\xd6\xe5\x80\x6f\x38\x60\x57\x5c\xe1\x88\x1e\xef\x69\x26\x77\xc6\x30\xfa\x2d\xaf\x64\x72\x42\x35\x9b\x16\x2b\x47\xf9\xf5\x4e\xe5\x9b\x75\x41\x23\xc5\x4f\x62\x1f\x7b\xa0\x8c\x3f\xc0\x2e\xab\x84\x61\xcc\xff\x10\x95\x17\x46\x42\x1f\x2a\x3f\xe9\x81\xc9\x4b\x97\x3a\xa4\x2d\xa8\x8c\xfe\x92\xde\x43\x24\xf4\x69\x15\xca\x00\xa6\xa1\x4f\x94\xdb\xd2\xb8\x64\x3a\x44\xe9\x4b\x74\x4d\xd8\x19\x95\x6e\x00\x4a\x29\x04\x7c\x31\x54\x6b\xc8\x7f\x6c\x11\x67\x79\x29\xe2\x99\xbe\x6d\x11\xac\x60\x50\xfd\xe3\x0a\x6c\xf8\x51\xb4\x07\x3f\x68\x88\xc3\xa7\x23\x21\x9e\x52\xc7\x17\xda\x7f\x26\x69\x05\x52\xe6\x1d\x6c\x00\x21\x2a\x6f\xad\x99\x88\x14\x19\xe7\xb6\xeb\x44\x80\x41\x9c\x7b\x43\x5a\x72\xbc\xc1\x0f\xb1\x5b\x0d\x86\x2d\x45\x74\x81\x15\x97\xe4\xb6\x4f\x8e\xd7\xb0\x2f\xbf\xdc\xfe\xe5\x29\xa5\x3d\x76\x82\xc6\x79\x42\x96\xa8\x3f\x48\x60\x05\xa1\x03\x9d\xb8\x65\xfb\xa4\xb2\xf7\x8a\x54\x09\xfc\x37\x74\x47\x90\xd5\xfc\x93\x51\xeb\xb7\xe6\x3c\xff\x91\x16\x08\xab\xba\x44\x6a\x82\x73\x0b\xd3\x44\xd1\xff\x50\x0d\xe0\x0d\x2a\xa1\x51\xe8\x5e\x8e\x94\xe4\x32\x23\x9d\x50\x04\x7c\x77\x14\x1c\xd5\xfe\x2a\x52\xe6\x51\x3f\xe6\xa6\x2f\x02\xc1\x7f\x15\x05\xf4\x30\x24\x43\x30\x4c\x38\x8d\xf1\xa7\xb4\xe3\xea\xe5\x0d\x96\xe7\x71\xb5\x72\xcb\xac\xca\x5d\x31\x50\x86\x20\x1f\x45\xea\x8b\x7e\x34\x86\x27\x1e\xa4\x0e\x61\x52\x58\xe7\xad\xc0\x40\xf7\x4e\x65\x8b\x89\xe9\x76\xc1\x91\x95\x26\x24\x70\x05\xfc\xb8\x11\x90\xdf\x37\x79\xd1\xe7\x3c\x8b\x4b\x40\xfa\x55\x52\x0e\x36\x8c\xef\xa9\xc5\xe5\x86\x89\x45\xc2\x85\xdf\xbf\xa9\xb6\xc7\x1e\xca\xe1\xb1\xef\xef\x37\x59\xdc\x2e\xd9\x81\x91\x76\x93\xe0\xad\xeb\x97\xf0\xe3\x4f\x1d\xaa\x0e\x5c\x61\xf3\x35\xf2\x6b\xc5\x3a\xf9\x86\x72\xbb\x81\xc4\xa0\x87\xb5\x28\xcf\xa6\xa6\x7d\x6f\xbb\xae\x28\xb3\x56\x40\x8c\xb3\x8f\x0f\x3f\x51\x37\x2a\xaf\x52\x23\xac\x46\x0e\x95\xb8\x51\xc8\x13\x5f\x1e\x29\x5a\xaa\x26\xb6\x12\xc2\x72\x2a\xe8\xe8\x9f\xa3\x4e\x0e\x2b\xc7\x53\xcc\x13\x02\x84\x57\x0d\xcf\xed\x8a\x71\x89\xe4\x49\x3e\xd9\x57\x99\xbf\x3f\x05\x06\x55\x59\x99\x64\x4a\xb5\xc4\x71\x09\x05\xc1\xaa\x70\xdd\x93\x3d\xcd\xbd\x7b\x69\xe8\x50\x12\xd9\x7f\x41\xcc\xff\x80\xca\x97\xa8\xe3\xcb\x25\x1a\x54\x4d\xd3\x37\x62\x87\x29\xa5\xbb\xf3\x36\xbe\x9d\xd8\xbc\x06\xbe\xcd\xc6\x68\xc2\x28\xeb\x60\xbd\xe0\x1e\xa3\xf8\x84\xa4\xeb\x0a\xe1\xe7\xb1\xb1\xdf\x8a\xf4\x4a\x55\xca\x9e\x17\xa2\x31\x97\x83\x80\xe6\x39\xae\x8f\x74\x80\xda\x85\x12\x12\xd4\x29\xaf\xd3\x4e\xc6\x49\x7f\x03\x15\x1a\xb6\xf8\x47\x08\x11\xb8\xa1\xdf\x18\x05\xd1\xe5\x07\xb8\xb9\x2a\x8b\x11\xc1\x95\x93\xa3\x5f\x9a\x4c\x6d\x4b\x9b\xd8\x38\x1b\x0c\xaa\x34\xe0\xc1\x83\xf3\x1c\xc6\x14\x62\xc0\x18\xb0\x75\xf5\x7f\xc4\xae\x84\x1c\xc2\x36\x2f\x45\x01\x5a\xec\x06\x46\x23\x0e\xfe\x15\xae\xb1\x70\x0e\x54\xd9\x9e\xe5\x2e\x2d\xfb\xce\x70\xd1\x8d\x63\x06\xba\xdb\xfc\x58\x85\xd8\xa1\x93\x1d\x8b\xb0\x7a\x87\x60\xa2\xdc\xb6\x1b\x85\xd5\x7d\x5b\xe5\x5d\x89\x79\x15\x8d\x25\x6f\x2e\xee\x6d\x3d\xaf\x28\x12\x63\x9c\x9b\xa2\x6f\x8b\x16\x1d\x5b\x32\x9a\x53\x63\x3a\x35\xe5\x18\xe6\xa4\x02\xec\xb2\xaa\x68\x51\x5d\x8c\x9c\xfb\x12\x9a\xb2\xfc\x44\x4d\x05\x0a\xd7\xb5\x6c\xaf\xeb\x79\x61\x5f\xf8\xed\x30\x73\xf2\xce\xe5\x2c\x77\xc9\x7f\xa4\xd4\x5e\x06\x26\x35\x3d\x8b\xf0\xc9\x5a\xc0\x74\x85\x44\x17\x58\x5a\xef\xb9\x71\xa0\xf5\x61\xe5\x20\x51\xe3\xd8\x72\x1d\xeb\x00\xd3\xe5\xb3\xa3\x5d\xbc\x0e\xda\xcf\xed\x69\xed\xdd\x2b\xf6\xa9\xe0\x5c\x61\x83\x3f\x18\x29\x5d\xfe\xe3\x38\x9b\xc4\x9f\xad\x5e\x9d\xe2\xb9\x11\x5a\xfd\xac\x92\xc3\x6e\x1a\x6a\x27\x5d\x8a\x94\xaa\xff\xf1\x51\xeb\xd9\x67\xf9\xab\x5f\x89\x82\xbf\xfa\xb6\xce\xb8\x13\x7e\x18\x1f\xfe\x29\xe2\x1a\xfa\x17\x0f\xad\xef\x51\x47\x2e\x19\xdd\xd5\x47\xa0\x07\xfa\x04\x6f\xd6\x8b\x6a\x15\x94\x19\xeb\x16\x34\x59\xbd\x3d\x39\x5e\x4b\xf4\x08\x0f\x59\x6f\x4c\x14\x8a\x47\xa3\xd0\x92\x3b\xea\x21\xa3\x44\x89\xf3\xf3\x39\x44\x80\x7f\xae\x4e\x50\x4d\x69\xb8\xdd\xa4\xb0\xb7\x98\x5b\xb3\x4c\xdf\x09\xbd\x98\x3f\xa7\x0b\xc6\x8f\xc7\x40\xac\x83\x01\x17\x36\xe8\xa9\x1e\x53\xae\x1b\xc7\x3c\xdd\x2c\xee\x9b\x7c\xd0\x9a\x30\xdd\x90\xda\x21\x0c\xe3\x7b\x49\xb6\xc2\x8a\x18\x82\x10\xae\x97\xa0\x34\x1d\x3e\xab\x38\x62\x22\x77\x0d\x22\x4c\x18\x90\x44\x1a\x74\xd8\xe0\xf0\x74\xb0\xbd\x64\xbb\x36\x77\x71\x46\xaf\x52\x5e\x2f\x7e\x24\x38\xd1\x98\x9d\x3b\xd4\x5e\x32\x49\x42\x82\xcb\xd8\xdd\x60\x36\x21\xd1\xd9\xb6\xae\xa5\xc2\x90\x5a\x49\x06\x1f\x28\xcd\x3d\x9b\x12\x60\x20\x59\xd3\x73\xae\x73\x1a\x7a\x72\x2e\xb0\x69\xaa\x92\xd9\x87\x74\xf3\xae\x3d\xd3\x51\x93\x3b\x58\xae\x62\x82\xf0\x60\x14\xf8\x85\x17\x3d\x7c\x62\xa9\xca\x53\x57\x56\x39\xd0\x91\x52\x25\xa9\x5e\xef\x3b\x8a\x41\xb2\xa3\x13\x0c\x71\x83\xc5\x46\x37\x5b\x4d\x73\xd7\xeb\x97\xd3\x8a\xc3\x80\xf6\x9a\xf7\x38\xab\x97\xa1\xb8\x86\xfa\x46\xd2\xc6\x93\x13\xce\x18\x07\x16\x0e\xb4\x73\x4b\x02\x54\xb4\xa6\x70\x6e\xde\xc1\x17\xe2\x27\x8a\xff\x17\xe7\x26\x5d\x8e\x4d\xc1\x6d\x61\x49\x20\x5b\xde\xcd\x74\xa3\xd1\x14\xb6\xe7\x23\x0c\x8e\xbf\x5b\x6a\x9a\x7b\x9c\x4e\x20\xf1\x75\x9b\x9c\xed\x8d\xab\xa5\xe0\xec\x3d\xad\x4d\x71\x4e\x47\x0f\x07\x40\x96\x2a\x0e\x6f\xa8\x1c\xf5\x86\xd2\x70\x1a\xe6\x2e\xe6\x0d\x28\xe4\x98\x07\xb4\x32\x3d\x06\xca\x6b\xd3\x5e\x6e\xf2\x8c\x59\x35\xf9\xc0\x6f\x60\xd4\x57\x98\xa9\x32\x1e\x22\x0a\xb4\xb4\xd3\x4d\x06\x56\xa6\x2a\xb3\x41\xb6\xe8\x58\x7b\x0d\xa9\x10\x98\xef\xb8\x7d\x3f\xa7\x85\x23\xea\x04\x12\x38\x56\x0d\xc4\xf9\xf1\xb9\x5e\xfc\xd5\x47\x3b\xc0\x13\x80\x21\x7b\x5d\x9d\x50\xec\xba\xc0\x6d\x1a\x96\x04\xa5\x3b\x26\xf2\xa0\x0d\xe3\xa5\xa2\x5a\x1c\xb8\xd4\x77\xf1\xd0\x86\xbf\xa7\x5a\xf2\xf7\x94\x33\x4e\x6a\x06\xb6\x98\x09\xfa\xc0\x3f\x40\x41\x81\xb7\x7f\x53\xa9\x6c\x23\x4b\xc2\x86\x3a\x36\x0e\x4e\x51\xdf\xb7\xca\xd3\x65\xcb\x14\x7d\x8f\x5f\xd8\x37\xef\x85\x9a\xc7\x78\x09\x65\x89\x7a\x0b\x15\x01\xea\x4c\x7c\xf0\xd1\x91\xf6\x86\x6e\x00\x74\x15\x03\xf1\xec\xc5\x06\x3b\xa5\x03\xcd\x29\x9f\x6e\x16\x36\xe9\x66\x83\x1d\xf5\xaf\xc0\x87\x1c\x1f\xa3\xa8\x06\xb0\xe0\x67\x3f\x4b\xad\x6f\xb6\x7d\x58\x1f\x1b\x95\x28\xe1\xb2\xab\x23\xad\xe6\x01\x6c\x77\xb1\x9b\x02\x8a\xd8\xa6\x8d\xa9\x3c\x20\xd7\x43\xa7\x1d\xfc\x23\xb4\x23\xae\xa1\x13\x84\x25\x73\x9b\x7e\x2c\xcf\x4d\x35\x06\x94\x3d\xcf\xf1\x57\xdf\x1a\x69\xcf\xc2\x30\x1c\x41\x63\x44\xf4\x56\x03\x1c\xa6\xe8\x67\xab\xe2\xf0\xcf\x14\x17\x95\xab\xfe\x63\x85\x5e\x67\x62\x32\xff\x83\x92\xae\x28\x86\xd9\xb2\x2d\x06\x86\xb5\x51\xbd\xf2\x7a\x50\x3e\x18\x9f\x10\x2b\x24\x45\x69\xf2\x12\x14\x23\x69\xeb\xd7\xaf\x42\x6d\xf5\x09\x7e\xa3\x90\x65\xa4\x0e\xcc\xed\x52\x62\xe3\x52\xf5\x34\x6e\x8d\x65\xe9\xf4\xfb\xd1\x3b\x63\x45\x6c\x84\x90\x56\x67\x6b\xa7\x92\x9c\xf5\x4c\x5e\xba\xd8\x0d\x89\x7f\xf7\xe2\x2c\xe7\x1e\x1f\x21\xa5\xe1\x27\x0d\x7d\xd1\x83\xf5\x75\xcb\x96\xa7\x54\xde\x74\x54\xcd\x16\x4f\xeb\x71\xd2\xf5\x86\x70\xd9\x8e\x93\xac\x90\xf6\x22\xa2\xc3\x76\x15\x1d\xb8\x2a\x42\xea\x74\x7b\x22\x60\xce\x1d\x6a\xf7\xab\xb4\x9b\xdb\x2e\xa7\xe3\x38\x80\x40\x71\xe3\xc7\x1a\x62\x97\x98\xdc\x76\x09\xdd\xb5\x09\x97\x26\x91\xff\x68\x79\x87\x59\x58\xdd\x8b\xd9\x59\x98\x06\x6f\xef\x84\x92\x8f\xa0\xa4\x60\x77\xe0\x45\x1b\xca\xfb\x07\x7c\x21\xa4\x4d\x8c\x9c\xf6\x0b\x61\xee\x10\x6f\x92\x7f\xad\xb7\xd5\xf7\xa2\x09\xbc\x69\x10\xe2\x0a\x29\x72\xcf\x0c\xec\x74\xe0\x8e\x5d\xd5\x48\xc8\x6b\x94\xe4\x03\xfc\x0c\x5c\x39\x1b\xe9\x7a\x11\xcc\xdc\x92\x74\xa7\xd8\x71\xb3\x3d\x27\x4a\x25\xf1\xea\x7c\x42\x21\x05\xf3\x9e\x2d\x99\xf9\x89\x55\x3f\xdd\x09\x1d\x41\x16\xb8\x96\x36\x48\x43\x47\xb1\x28\x73\xb7\x2c\x10\x67\x19\x9f\xe8\xb1\x4a\x18\xbf\x95\x66\x48\x1c\x8d\xb9\x43\xdc\x7f\xe7\xd8\x24\x3c\x41\x74\x61\x05\x3f\x36\x96\xfa\xf8\x8e\xfa\x95\x91\x52\x4c\x42\x4d\x02\x0a\xe1\x9d\xa6\x61\x35\xef\x9c\x96\xee\xfa\xd1\xeb\xf9\x49\x14\x58\x04\x55\xc1\xea\x77\x48\xb1\x20\x9b\xc1\x8f\x7d\x8e\x02\x45\x43\x51\xc0\x40\x7b\xed\x34\x2e\x2d\x3f\x51\x92\x32\xc4\xfb\x1c\x66\x79\x09\xee\x18\xf7\x3a\x47\x4a\x6d\xe7\x43\x55\x47\xd9\xc3\x71\x52\x61\x80\x30\xa5\xf2\xa6\xeb\x08\x09\x80\xe1\x6f\xd0\x4e\xc7\x81\xfc\x6e\x43\x0b\xfe\x80\xb7\xcc\x53\x2d\xf8\x8f\x55\x0b\xfe\x63\x4f\x4a\x8d\x2d\xb1\x14\xfa\x6e\x88\x93\x06\x93\xa6\xab\x4a\x73\x05\x89\x86\x30\x8c\xb6\x5e\xdc\xcf\xb7\x07\xa4\xe1\x9f\x02\x3c\x80\x40\x77\x44\x09\x29\x1e\x09\xca\x64\xab\x26\x5f\xd2\x8c\x4c\x2e\xc2\x45\xcd\xac\x81\x40\x56\xa5\x4b\xee\x30\x83\x40\x44\x71\x8e\x5e\x23\x5a\x74\x72\x8c\x55\x24\x9f\x47\x3a\x91\xf2\xb1\xf5\xe2\xd5\xfe\xe0\x18\x92\xa2\x4c\x10\xb9\x9b\xa7\x94\x7d\x4a\xdc\x37\xa4\x0e\xa9\xc6\xea\x67\x23\x7d\x06\x3c\xa3\x46\x67\x45\x69\x92\x84\x67\x2b\x7b\xf7\x72\xeb\x01\x91\x84\x1f\x37\xe9\xd6\xb5\xcd\xaa\x71\xe5\xa7\x2b\xb8\x48\xa0\x4f\xdd\xe1\x6e\x96\x2f\xb5\x82\xd6\xd5\x16\xff\x58\xf9\xd9\x3d\x9b\xba\x8a\xc1\x70\x1a\xaa\x0d\x75\x02\xcc\xbe\xc4\x0c\x54\x55\xd1\x57\xfd\x27\x25\x36\x4b\x4d\x0e\x4c\x93\x4c\xc2\x5b\x5b\xb5\x45\xb9\xf2\x55\x73\x53\x5b\xef\xa6\x9c\xeb\x2f\x84\xd4\x93\xda\xb2\xed\x64\xb4\xdb\x67\xf3\x2b\xcc\x6f\x17\xa7\xc4\xfa\x1e\xa1\x4f\xfc\x73\xed\xd7\x71\x45\xcd\xe7\xcb\x7e\x36\x30\x1c\xe0\x3d\x5a\xdb\xd7\x24\xe5\xc5\xc6\x2c\x7c\xc5\xe5\x55\xa1\x1c\x0c\xcf\xd0\x74\x98\x1f\x37\xb8\x3c\xb7\x5f\xa9\xba\xbd\x41\xe0\xaa\x23\x14\x9d\xa3\x57\xf1\xe3\x86\x02\xf5\xf9\x76\xdf\x9a\xee\xa7\xc2\x96\x1b\xc8\x1f\xd0\x15\x62\xca\x02\x66\x7b\x20\xc6\xf2\xe3\x89\xaf\x76\xe8\x85\xb6\xcd\xf3\x2c\xb5\x04\xf2\x7e\x71\xd6\x77\x3b\xeb\x0f\x12\xb7\x7a\x35\x87\xcf\x96\x74\x67\x4a\xcf\xa4\x4e\x44\x01\x46\x1d\x67\x69\x61\xf3\x15\x92\xa5\x66\x15\x56\x9c\x24\x97\xd0\xd1\x40\x24\xc4\x2c\x5e\xea\xf6\x06\xa6\xa9\x4b\x97\x92\xca\x92\xf8\xbf\x6a\xa7\xb1\x0a\x16\x3f\x99\x98\x33\xd4\x11\x69\x60\x5b\x34\xac\x42\x16\x78\x52\xf7\x31\x4f\xfa\xe5\xb8\x98\x55\xf2\xd6\x02\x60\x66\x7b\x33\x7e\x32\xd1\xea\xa6\xc1\x47\x4a\xbf\x6a\x2a\x24\x50\xdf\x1a\x05\xb4\xda\x4f\xe8\xba\xb1\x1b\xad\xef\xa9\xf7\xb3\xa4\x5b\x0d\x0b\x2d\x8a\x70\x83\x42\x03\x3f\x56\x40\x07\x3b\x30\x53\xa1\x73\x0e\x00\x02\x0e\x75\x36\x7e\x45\x9e\x16\x6a\xe8\xc4\x94\xf6\xd1\x31\x70\x49\x7d\x17\xbd\xcf\xab\xaf\x8a\xfe\x3d\x14\xb2\x28\xa6\xae\x8d\x94\x19\xc2\x43\xeb\x5e\x82\xf1\x8b\xcf\x75\xc2\x6f\xe1\x0d\x89\xfb\xf3\xe8\xba\xc7\x1e\xfd\xe9\x2f\x81\x0e\x8e\xbe\x06\x0b\x08\x7a\xbe\xc2\xbe\x79\x3f\xe7\xa6\x5d\xc4\x6e\xfa\x4a\x23\x62\xd1\xc4\xcb\x4b\x2e\xb7\xad\xd6\x17\x7e\x5b\xac\xc5\x68\x8d\x8a\xcd\xd8\xd3\xe3\xa3\xd0\x2a\xc6\x05\x7f\x71\x36\xd0\x64\xf6\xef\xe7\x04\x19\x18\x19\x84\xa3\x2b\xea\xd8\x37\x05\x49\x41\xd5\xc7\xbe\x9f\xd9\x2c\xcc\x72\x7e\xb0\xbd\x13\x50\xcf\x57\x47\x4f\xab\x65\x9b\x0f\x69\x8a\x5d\x0c\x5a\x8a\x6e\x7c\x4a\xe9\x3a\x9f\x52\x15\x7c\x9e\xc5\xcb\xb6\xf4\xde\xfc\x22\x65\xa6\x63\xfe\x13\x5a\xeb\xcd\x9a\x82\xcd\x7e\xc0\x44\x43\xc4\xe7\xc7\x6a\x26\x37\xc8\xba\x36\x37\x65\x7d\x28\xd7\x3f\x5a\xa4\x61\xe8\x96\x21\x3c\x1e\xa3\x96\x1f\xfa\x61\x37\xbc\x8c\x81\x2d\x0a\x93\xb7\xea\x1b\x28\x11\x82\x7e\x84\x84\x8e\x90\xa9\x2e\x25\x6b\x94\x13\xf9\x44\x18\x54\x0d\x9c\x73\xdb\x68\x39\xe0\xae\x3f\x50\x5a\x30\x37\x23\xa5\xc5\x7a\x3e\xd2\x32\xad\xe7\x69\x28\x21\xb6\x9b\xa1\x62\xa9\xb3\xc2\x9c\x30\x92\xff\x2f\x28\xfd\xc7\x94\xb1\xb0\xbf\x40\x9e\xc8\x5b\x87\x0e\x21\xf2\x6e\x8d\x10\x44\x76\x5b\x5a\x72\xb1\xb3\x9c\x11\x48\xe7\x5f\x4d\x01\xb6\x4e\x10\xea\xa8\xfa\xd2\xc2\xec\x0e\x65\x8e\xc2\xf1\x01\xdd\xb4\x73\x6a\x9d\x6c\x53\x3e\x20\xef\xaa\xd9\xd2\x19\x2c\x6d\x7e\xb5\x5e\x40\x2e\x8f\x2b\x3e\xaa\xa9\xa4\x94\xab\x45\x7b\x4f\x2e\xd6\xd6\x40\xbf\x30\xdb\x5e\xcc\xb3\x65\xb4\xb1\xd0\x75\x80\x10\x94\xa7\x6a\x05\x83\xa7\x6d\x9d\x7a\x49\x63\x8e\x73\x61\xb4\x4b\x42\xd9\x7f\x34\x15\x74\xd9\xcf\x29\x0e\xc5\x36\xf4\x9f\x59\x01\x72\x22\x56\xee\xdd\xdb\xce\x52\x3b\xa5\xa4\x52\x69\x21\x40\xe3\xe9\x24\xc5\x35\x64\x18\x77\xa2\xa7\x55\x2b\x9c\xe8\x14\x26\x8d\x2d\xb4\xeb\xd1\xca\xff\x69\x14\xda\xfa\x3f\x55\xfd\xba\x63\xca\x8a\xff\x0d\x5a\x28\x72\xf8\x3d\xa5\xaa\x63\x9b\x94\x5c\x3e\xec\xf3\xde\x97\xd1\x98\x0a\x5e\xa8\xa5\x07\xd9\x8a\xed\x3e\x54\xbf\x13\xee\x31\xf0\x8d\x02\x94\xa9\x53\x24\x8f\x16\x08\xf2\x97\x48\x7e\x80\x89\xfb\x84\xbe\x9e\x44\xb9\xfa\xeb\xe1\xde\x73\xde\x2b\x9d\x86\x4f\x13\xaf\x5a\xed\xbb\xb2\x4c\x2c\xc0\x87\xc8\x2e\xde\xa0\xaf\x00\xf9\x83\x93\xaa\xb3\x7d\x9c\x68\x0a\xc8\x12\xdf\x6e\xd2\xa8\x82\x93\x23\x8b\x80\x09\xa2\x48\xc1\x9a\x27\x79\x2f\xbf\x4c\xd3\x0c\x3a\xab\x91\x33\x1f\x57\xf9\xf3\x71\x05\x85\xb5\x87\x4b\x9b\x76\x51\x91\x4a\x2f\xe6\x7d\x2d\x04\xfe\x03\xfc\x5c\x5f\x3f\x2e\xcc\x7a\xe8\x11\xf6\x2b\x6e\xd4\x75\xa5\x84\x5d\x0c\x73\xc3\xd8\x5a\xe5\x52\xf0\xbc\xe7\xd2\x6b\x8a\xde\xa2\x29\x51\x51\x4a\x73\x52\x61\x37\xa0\x12\xc5\x8f\x75\x07\x53\xe5\x7d\xab\x54\xf8\x94\xc5\x74\x68\xe2\xbe\x41\x5f\x92\x45\x7a\xb1\x3c\xf8\x1f\xa2\x60\xea\xf5\x86\xea\xa7\x15\xa5\x4b\x12\xc2\xfc\x60\x5f\x71\xc7\x80\x9f\x10\x24\xc0\xab\x6b\xd7\x6b\x45\xca\x03\x85\x9e\x9d\xea\x68\x4e\x3f\x5f\x19\xd6\x37\x53\x80\x5c\xc0\x4f\x91\x33\x5f\x05\x00\x48\xa4\xba\x03\x3d\xed\xb4\xaa\xde\x4f\x4f\x24\x96\x2f\xbf\xdc\x5e\xb6\x83\xa1\x78\xf8\x8a\x99\xa5\xb2\x15\xd7\x13\xa9\xbe\xa1\x9b\x1b\xa2\xd2\x09\x55\xa8\x4d\x75\x94\x6e\x0e\x61\xb8\x44\xd6\x1d\xf5\x3b\x82\xc9\x8d\x31\x88\x7a\x61\x07\x8b\x89\xd5\x43\xc0\xb3\x6a\x08\x78\xb6\x71\xf5\xa6\xa5\x2b\xb2\x54\xeb\x09\xdc\xa4\xe8\xc3\x8f\x9b\xf8\xc9\x8b\x59\xd9\x17\x13\x96\xe7\xc3\x60\x22\x4c\x86\x2f\x4e\xbc\xea\xf3\xed\x62\xd5\xda\xd2\x32\xbc\xf1\xcb\x41\x6d\xa1\xbe\x99\x32\x11\x99\xd4\x35\x7d\xbe\xdd\xcb\xcd\x8a\x55\x2e\x50\x5f\x1d\x05\x44\xe4\x57\xfd\xc8\x3c\xee\x9b\xc1\xd0\xf4\x52\x64\x75\xd8\xc5\xe8\xab\x4b\x7d\xa7\xc6\x17\x93\x3c\xcc\xb9\x43\xed\xc5\x8c\xf8\x21\xf5\x8f\x40\x94\x7f\x5b\x99\xa5\x5e\xa5\x34\x5f\x34\x9c\x43\xae\xf7\x0f\x2d\x73\xb4\xa4\xe8\x0b\x92\xb1\x67\x49\xe5\x06\xf1\xfc\x2d\x7a\x2b\x74\x5f\x70\xf0\xa3\x7d\x3b\xdd\x79\x46\xdd\x3d\x9c\x3a\x75\x6d\x3d\x13\x50\xba\x8f\x77\xe8\x22\x63\xf2\x7c\x14\x5d\x4e\x1e\x3f\x2a\x58\xf0\xf6\x75\x05\x5a\xd8\xbe\xae\x21\x23\x2e\xb7\x4f\x29\xb3\xf8\x4b\xd8\xed\x40\xe4\x68\xde\x25\x80\x1b\xc2\xcd\xa4\xab\x85\xf3\xfd\x07\x40\x21\xb1\xeb\x04\xc6\xe5\x32\xe9\xac\x43\x80\x80\xe7\xb7\x08\xa7\xd4\xc7\x25\xff\x19\xce\x5a\x16\x24\xc4\x2e\xc5\xbf\x7c\xa2\x04\x3a\xae\xd2\x56\x16\x9f\xa3\x3a\xa2\x23\x6b\xfa\x9a\x86\x7f\xfd\x18\xdb\x12\x1d\xb7\x7f\x4b\x17\x00\x89\xe3\xdb\x91\xaa\x69\xde\x68\xa2\xa0\x0e\xf3\x6c\x90\x89\xdf\x3f\x12\x02\x0c\x30\xf9\xb1\x4a\x7a\x8a\x6a\x71\x60\x72\x97\x5a\xa5\xa9\xa3\xfd\x31\x2f\xf8\xa6\xd9\xb0\x9f\x95\x59\x2f\x37\xc3\x3e\x36\x1d\x9b\xcd\x8d\xc2\x51\xf0\x7e\xa4\xfd\x32\x72\x00\x59\x17\x0e\x04\x15\xc1\xa0\x28\x38\x51\x3f\x91\x4c\x5c\x6a\x60\x85\x41\xdf\x45\x49\xb4\x7b\xf1\x54\x55\xdb\x2d\xba\x57\x5b\x21\x0d\x44\x54\xe6\xc7\x13\x9d\x98\xf9\xf9\x83\x5c\x3f\xcd\x04\x1d\xd7\x7b\x91\x62\x72\xbe\x46\x5f\x4e\xd0\x27\xa1\x4f\xf0\x2e\x85\x40\x84\xc6\x0b\x0a\x47\x9d\x5b\x13\xf7\x01\x11\x79\x5e\x78\x8d\xa3\x80\x04\xbd\x49\xa1\x08\x03\x6f\x80\xeb\x24\x9b\x7a\x5a\x87\xb0\x2c\xa9\xbc\x9c\xde\xbc\x5f\x03\x2d\x2f\x7d\xf5\xb5\x31\xe1\x5a\x96\x82\x26\x27\x74\x3d\x57\x45\x77\x19\x84\x55\x7e\x4c\xe7\xb8\x84\x9d\x09\xef\xee\x39\x2a\x6a\x92\xac\x87\x1b\x09\x34\xc9\x05\xe5\x8f\x73\x21\x0a\xe9\xbd\x59\x2c\x4a\x97\xd6\x65\x2d\x82\x99\x38\xfc\xa9\x36\xfc\xb1\x48\xcf\xd8\xec\xd0\xe4\x16\xb0\x08\xde\x79\xb4\xc2\x65\x17\x7e\x36\x40\x35\x87\xc3\x3c\x1b\xe6\x0e\xa1\x80\xe6\x2c\x00\xb9\x9d\xa5\xe3\x91\xf9\x0c\x91\x9a\x7a\x21\xdf\x63\xa3\x9c\x48\x79\x04\x9c\x45\xb0\x10\x0b\x9d\xa7\x94\x26\x6f\x52\x97\x9c\xb9\x49\x90\xe1\xa2\x50\xbd\x8a\xd7\xf2\x13\xd5\xbd\xea\xba\x22\x5b\xb4\x5d\x57\xff\xdc\x3a\xbf\xdd\xa4\x64\x6d\xf3\xf4\x48\xfd\xf4\x8b\xda\x51\xf3\xe2\x44\x9a\xbf\x77\x2f\x79\x1f\xb8\xb4\xda\xe2\xa7\x7d\x5e\xf9\x69\x9f\x57\xe3\xfa\xc5\xc4\x0c\xb8\x8e\x68\x72\xc7\x96\x72\xa9\x67\xaa\x1e\x36\xa9\x97\x5d\xac\xef\x80\x24\xc2\x8a\x68\x62\x93\x87\x5b\xcf\x3e\x1b\x42\xb3\xcf\x73\xa7\xd7\x5b\x4a\x2d\x5e\x69\x75\x9e\x0f\x9d\xe4\x3f\x7c\xa6\xa3\x61\xbc\x17\x88\x65\x87\x73\x05\xc8\x0d\xb4\xa4\x78\x0e\x8b\xc6\xfa\x6e\x6a\x3e\x4b\x1d\xbd\x55\x3f\x79\xee\x50\xbb\x5c\xa1\xcc\x0a\xc5\xf5\x19\xed\xaf\x72\x87\x3e\x19\xab\x7d\x77\xa7\xa5\x64\xd0\xa4\x63\xd0\x7f\xae\xf7\x5c\x2b\x40\x95\x98\x4a\xc1\x4f\x54\x63\xac\xa8\xf2\x5e\xbd\x21\xc3\x4c\xf0\x87\x91\x82\x0f\xfe\x90\x3e\x08\xbd\xbb\x6f\x44\x41\x51\xe6\x1b\x0d\x4e\xf2\x4b\x2e\x15\xa3\xbd\x4d\xea\xfa\x6c\x5e\x1a\xed\xf6\xf7\x6b\x19\xee\x1a\x98\xd2\xfe\x64\xa4\x94\x16\x7f\x82\xec\x97\xd3\xd9\xa1\x8d\x4b\x13\x8c\x33\x30\x6f\xfa\xa1\x42\x46\xfe\x50\xc9\x3d\x32\x3b\xaf\xd8\xa5\xf0\xa9\xa8\x07\x50\x70\xc3\x54\x00\xf9\xee\x6d\x3a\x49\x58\x25\x03\x2b\x13\xdb\xf6\x76\xa4\x02\x33\x3a\x2b\x5e\xd0\x31\x4c\x04\x6e\x8f\x94\xdb\xf9\x29\xdf\xed\x1e\xd8\x32\xcf\x06\xb6\xeb\xcc\xb8\x38\x06\xfd\x3e\x51\xc7\x68\xe4\x02\xf4\x73\x6b\x19\x01\x8c\x0c\xe2\x1b\x78\x11\x30\x45\x53\x24\xf1\x87\xb2\x68\xba\x23\xdd\x59\xaa\xc9\xba\x53\x9a\x98\x40\x5f\x11\x55\xce\x4d\xa5\x7d\x72\x44\xfb\x4a\xad\x58\x56\x3e\x0d\x66\xce\x37\x95\x78\xf7\xcd\x89\x22\x88\x85\x78\x87\x36\x87\xe9\x9c\x76\xf9\xff\x77\xf2\x68\x0f\xb4\xfb\x36\x19\x67\x40\x47\x8a\x01\xfd\xa9\x82\x1b\x36\x5f\x75\x69\x2b\xfc\xb6\xbf\xc6\x07\xf1\x93\x26\xe2\x8c\x4b\xeb\x2a\x29\xaf\xaf\xc7\xe6\x25\x65\x9b\x8d\x01\x03\x3a\xd3\xef\x2b\x63\x8c\xa2\x6f\x6d\x8e\xc3\x47\x74\x5a\x29\x59\xf0\x26\xd0\x9e\xf5\x0f\x61\x44\x19\xfe\x87\x03\x2c\xce\x86\xce\xb2\x04\x93\xe7\xeb\x05\xee\x9e\x2a\x4a\xba\xb9\x19\xe0\xef\x90\xa5\x69\x5e\xd5\xfd\x09\x9d\x86\x7d\xc4\x50\x35\xc3\x61\xe6\xd2\x20\x4d\xe7\xf9\x43\x61\xe8\x35\x21\xd3\x3f\x77\xa8\x0e\x9c\x4b\x55\xe1\x5f\xe5\xdb\xe2\x5e\x91\xfa\x94\x1a\xcb\x59\x93\xa7\xf5\x96\xd9\xa3\xfc\x89\x01\xdc\x11\xc8\x1a\xed\x1f\xde\x01\xc8\xac\x04\x29\x47\x2b\x1c\x01\xf2\x4d\x85\x88\xb8\x81\xdd\x24\x39\x4a\xbd\xe5\x00\xb1\x98\xa2\xd6\x0a\x26\xaf\xc7\x70\xd6\xa0\xfd\xc7\x95\x8b\x27\x05\xd5\xc7\x0a\xff\x0b\xc9\xcf\x20\xf0\x6e\x68\x61\xc3\xef\x7b\x60\x47\xb1\x0a\xdf\x95\xa9\x70\xbb\xae\xa9\x16\xea\x2d\xa4\xaf\x08\xd1\x3b\x26\x74\xd9\xf7\xcd\xb7\xb3\x57\xa9\x1f\xe2\xc7\xa0\xc8\x5c\x64\x26\x11\xc6\xb0\xd7\x26\xf6\xc5\xfe\xfd\x0b\xd2\xaf\x2e\x1d\x5b\xdc\xb2\xc4\x66\x14\x5a\x7e\xef\x4d\xe4\x0e\xf5\xa6\x88\x6d\x5a\x0a\xe4\xda\xd3\x16\xea\x4b\xc2\x4f\x7c\xcb\x7a\xc5\xc5\x65\x96\xaf\x4d\x29\x93\x1d\x14\x1a\x48\x8c\x30\xdb\x46\x68\xb9\xaf\x0e\xb0\xff\x6c\x76\x6f\x4b\xa3\x1f\x8f\xe9\xf9\xcc\x31\x05\x31\xa8\x7f\x00\x45\x58\xd2\x38\x16\x14\xb3\x8a\x6e\x9c\x3c\x20\x7d\x6b\x75\x42\x4b\xe5\xa6\x62\x71\xb4\xd6\x83\x6f\xb9\x8b\x79\x22\x23\x9d\x17\xe5\x6a\x02\x4d\x3c\x71\xe6\x93\xdf\xb8\x94\xe5\x8b\x4e\x68\x65\x6c\x80\x8a\xc4\x52\xdc\x50\xe5\x20\x73\xb9\xf9\x0a\x05\x05\xd4\x46\x1c\x59\xf9\x49\x14\xbe\xc3\x2b\x46\x24\xc0\xf1\x8b\xce\x6a\x90\xf6\xd9\x68\xab\xb1\xe6\x4b\xf5\xbe\xe9\x9b\xdc\xc4\xa5\xcd\xdd\xab\x32\x66\x46\x1b\xfd\x43\x7c\x15\x7e\xa2\x02\xc8\xc0\x96\x52\xb8\xe3\x66\x40\xcd\x8f\x1f\xaf\x7b\xc9\x1f\x46\x4c\x17\xbb\xe8\x42\x50\x76\xf9\x6b\xcf\x90\xa0\x98\xd7\xf3\xad\x3f\xc0\x1f\x16\xf5\x47\x8b\x23\x73\x18\xad\x5f\xd4\x20\x11\x5e\xd6\x38\x2a\x8e\x8d\xbc\x36\xc2\x77\x9f\xed\xd4\xa1\x4a\x70\x5e\x21\x03\x75\x69\x51\xba\xb2\x62\x91\x87\xe7\xbd\x83\x44\xc8\x92\x3e\x8e\x02\x5e\xf7\xbb\x13\x43\xa3\x3a\x23\xab\xf2\xd2\xa3\xcc\xbd\xfb\x3c\x62\x82\x58\xd1\x3f\xae\x92\xc6\xaa\x5e\xe1\x3b\xb4\x78\x16\x75\x80\xc0\x19\xc5\x2e\xf3\x8a\x77\xf5\x1b\x62\x6d\xbe\x35\x52\x41\xe6\x2d\x3a\xa5\xf9\x15\x2a\x41\xee\x67\xab\x76\xc5\xe6\x33\x21\xdd\xbd\x15\xa9\x25\x07\x96\x89\x27\xe5\x2d\xf8\xbc\x87\x7e\xa2\xf4\xbf\x03\xaf\xb7\xb4\x31\xa4\x4a\x84\x06\xaf\x56\x2c\xe8\x3b\x42\x1f\x0b\x0d\xf5\xc4\xc4\xcb\xb6\x4b\xd3\x59\x19\x13\xd4\x1f\x24\xe3\x83\xd0\x3f\x4b\x4d\x51\xae\xb5\x08\xa5\xec\x29\x65\x61\x96\x72\xc1\x07\x32\xd3\x1d\xb8\xb2\x14\xaf\x56\xef\x21\x5b\xff\xaa\xb1\x8e\x09\x02\xeb\x2d\x45\xd6\x5e\x74\x49\xb2\x27\x34\x74\x47\xca\xf8\xf3\x47\x94\x7a\x4a\x6d\x45\xcb\xcc\xcf\xa9\x7d\x53\xf9\x36\x95\x0a\x98\x25\xb1\x82\xa5\x00\xf3\x94\x75\xd3\x7d\x25\x33\xf5\xf1\x28\x64\x4f\x9c\xd7\x23\x13\x64\x59\x0c\x51\xbd\x52\x11\x9b\x0f\x0f\xe4\x33\xb7\x27\x12\x46\x9a\xb3\x0d\x5c\x8a\xae\x28\xde\x0c\xf8\x3c\x7e\xdc\x04\xd5\xa9\x52\xb7\x62\xf3\x02\x19\xbd\x18\x4d\xb7\xbc\xd1\xdf\x09\x95\x1b\x7e\xa5\x82\x01\x1b\x15\x7e\xdc\xde\xc7\xbe\x66\xc9\xe7\xb1\x66\x20\xad\x19\x74\x10\x7e\x3a\x7a\x5a\xf6\x71\x99\xdb\xb4\x57\xf6\x6d\x2a\xe4\x52\xa4\x0d\xac\x07\xc5\x4f\x9a\xfd\xe4\xbc\xfa\x01\x72\xac\x77\x68\x5d\xf3\xe3\x86\xf3\xe1\xcb\xed\x38\xcf\x56\x25\x22\x72\x51\x10\xe9\x02\x61\x6b\x8b\xf8\xa5\x03\xed\x61\xc5\xa3\x7f\x01\x9e\xd2\xcd\x13\x48\x6a\xc8\xbd\x07\x6b\x3b\x15\xb8\x68\x4c\xf2\x94\x6e\x1e\xe2\x17\x17\x27\x8a\x61\x24\x8a\x17\x40\x66\x7b\xd9\x28\xbf\x8d\x2f\xab\xdd\x5f\x18\x97\x96\x09\x6b\xc2\x7b\xf6\x87\x07\x0b\x9e\x6b\xb6\x47\xed\xda\xc4\xc5\x84\xf0\x6f\x79\x0b\x74\x36\x03\xe2\x27\x13\x57\x77\xee\x50\x3b\x57\x9c\x72\x8c\x71\x4f\x2a\x17\xba\x93\x91\x78\x12\xd9\xb4\xec\x57\x85\x33\x85\x48\x25\xa0\xcb\x79\x4d\x75\x3c\xaf\xf9\xa0\x50\x24\xd9\x6a\xb2\xb6\xa3\xbe\xe4\x9e\x11\x25\xe3\x99\xf9\xa7\x28\x93\xf1\xb2\xdf\x01\xb0\x7f\x5e\xf5\x1a\x6f\xe1\x6a\xca\x41\xf5\xd4\x04\xd7\xed\xd9\x67\x09\x4f\x22\xb6\xe0\xba\xa3\xdf\xf2\xce\x86\xac\x31\x21\x21\xa6\xc9\xf8\x77\xd9\xda\x14\x37\x1e\xc9\xd8\xb5\x51\x40\x4d\x5c\x8b\x9e\x92\x86\x67\x36\x18\x64\xe9\xaa\x35\x49\xd9\x6f\x69\x32\x1a\x7f\x02\x3f\x89\xbc\x57\x71\xd7\x92\x14\x92\x82\x78\x9e\x53\x46\xe4\xe7\x46\xcf\x38\x2d\xb5\x95\x53\xd5\x53\x4a\x0d\x83\x78\x79\x3e\xd2\x73\x6d\xfa\x18\x3c\xf9\xe6\x04\x33\x9d\x14\x42\x2c\x8a\x19\x9c\xd2\x3b\x3a\xca\x5f\x89\x35\xc7\x44\x62\xa8\x81\x97\xc4\xdd\x98\x02\xa0\x26\xa5\xed\x27\xca\xe1\x77\x68\xa5\x8b\x39\x6a\x13\xa2\xb5\xb4\x16\x72\xf5\x58\x0c\x70\x11\xe6\xc7\x7e\xb0\xbf\x54\x25\x4b\x2e\x49\xa6\x82\x10\xe1\x55\xc4\x11\x24\xb6\x6f\x69\xa9\xa4\x10\xdc\x07\x2e\xb5\xb9\x49\x0a\x08\xc1\x09\x7a\x31\xa4\xa9\x3f\xd5\x16\x25\x3f\xc1\xce\x15\xb7\x01\x6d\x65\xf2\x93\x26\x4a\x5a\x41\x7e\x3c\xb4\x67\x44\x6f\x3b\xb4\x66\x37\x94\xbc\xd6\xd0\x38\xb6\x72\x9f\xf7\x40\x1a\x8d\xaa\x51\xe6\xf2\x8b\x59\xda\xad\xeb\x69\x2a\x6f\xfc\x3d\xd9\x88\x42\x92\xb8\xa1\xfa\x6a\xb9\x2d\x84\xa8\x1f\xd4\x3b\xcf\x44\x4a\xbd\xf3\xcc\xc4\x1d\x7f\xf6\xd9\x76\x51\xc5\xfd\x29\xa5\x74\x7a\x5a\x29\x23\xb3\x6d\xa0\x44\xa6\x31\xc7\x5e\xb3\x4a\xaa\xd4\x20\x4f\xdc\x1c\x69\xe2\xec\xcf\x10\x8c\x05\xbe\xdb\x0a\x12\xc4\xb4\x16\x45\x4e\x8b\x6e\x83\x97\x83\x0d\xf2\xa1\xff\x72\xf4\x19\x55\xdd\xa5\x75\x96\xae\x28\xee\xa2\x7a\x16\xc6\xd5\x1b\x9a\xed\x62\xd2\x65\xaa\x42\x50\x3b\xfc\xb5\x6a\x5f\x32\x17\x17\xf7\x70\xd2\xe0\x68\xee\x50\x7b\x31\xcf\x4c\xd7\x8a\xe0\x14\xc6\xa8\x77\xc1\x6d\xc2\x0e\xb8\xa8\xe8\xd7\xa7\xb4\x91\x43\xbc\x9c\x66\xab\x89\xed\xf6\xa4\x08\x62\x71\x7c\xe5\x61\x00\x1f\x1a\xc4\xb1\xf3\x2a\x87\x19\x66\x89\x8b\xd7\x1e\x56\xf3\x31\x86\x3d\x4a\x99\x40\xf7\x46\x64\xe9\xea\x4b\x2e\xc5\x44\xa8\xae\xdf\xc5\xb9\x2e\xea\xab\xf5\x17\x10\x06\x1d\xfd\x66\x7e\x75\xa4\xb4\x82\xbe\x89\xce\x21\x9b\x32\xe9\xf6\x53\xb6\xe2\x6c\xb9\x9b\xbe\x02\xde\xf0\x9a\x36\x2e\xfe\x53\x0a\xc1\x00\x76\xdf\xc1\x5d\x43\xab\xf6\x5d\xfa\x6e\xc8\xd7\xde\x1c\x05\x98\xfd\x79\x1a\x67\xf3\xdf\xd0\xd2\x45\xf2\x03\xbd\x01\x24\x3f\x2c\x90\x22\x4c\x3d\xe5\x90\x73\x75\x82\x2d\x73\xe8\x85\x36\xb8\x99\x1e\x91\xf5\xa1\x36\x59\xa7\x6f\x21\x2c\xc1\x26\xf9\xa8\x45\x1b\x9b\xaa\x7e\xfd\x3e\x69\x8d\xef\x24\xe4\x05\x52\xaf\x5d\x9d\x90\x69\xbe\xae\x4a\xb9\x2c\xeb\x3e\x16\xd8\x8b\x57\x14\xbd\xe1\x1c\x52\x2f\xaf\x53\x7b\x60\x41\xc2\x10\x1a\x57\xd8\x05\x77\x68\xb0\x84\x98\xf3\xa1\xc6\xf9\x9d\xa2\xce\xb7\xa0\x75\xa8\xfa\x94\xc6\x61\xc8\x26\xff\x0f\xdc\x46\x64\x61\x4f\xad\x2b\x02\xeb\xdf\x86\x3f\x09\x2e\xf5\x2d\x04\x41\x24\xa7\xdb\xd7\x3d\x91\xc0\x7c\xb6\xa3\x3a\x2e\x43\x51\xfb\x47\x27\x1f\xfd\x44\xec\xcf\xab\xb8\xf4\x48\xce\x6f\x4e\x9c\xf3\x9f\x6f\x0f\x13\x53\x94\x2e\x6e\xa9\x24\x16\xa4\x0d\x7e\xec\x23\x74\x2f\xb7\xa6\x64\x66\xb2\x07\xe8\x28\x0f\xc2\xad\x65\x7c\x1d\x41\xab\xe1\x30\xb1\x90\xff\x53\xb9\xc7\x47\xb4\x85\xf9\xb1\xaf\x41\x0b\x6b\x07\xbb\x54\xab\x9c\x19\xe0\x9e\x59\xf8\xa2\x40\x69\x6e\xab\x65\x76\x01\x3f\x0f\xfb\x91\x09\x42\xb4\x04\xbe\xf5\x0b\x54\x52\x7b\x7a\xfc\xbc\xcc\x25\xee\x62\x61\x22\x77\x3f\xa6\xda\xf1\x64\x58\x60\x7b\xce\x16\x3b\xd4\xf1\x76\x5e\x49\x00\x5f\xa7\xfb\xa7\xc1\xdb\x00\x87\x31\x28\x99\xff\x88\xbe\x1d\xd6\xce\xf4\x04\xb3\xe9\xc5\xd9\x76\xd7\x0e\x13\xeb\xc5\x57\xb4\x90\xa4\x98\xac\x7a\x07\x35\x93\x3b\xc3\x13\x2d\x28\x7a\x5c\x50\x12\x7d\x17\x02\xf7\xd8\x38\x51\xe1\xf3\xad\x40\x45\x65\x78\xd8\x2f\xf9\x5f\x7d\x28\x70\xa2\x34\xfa\x7f\x73\xa4\x72\x5a\x80\x55\x70\x72\x6c\xeb\xd4\x6b\x1c\x4b\xf9\xb1\x4e\x30\x82\x39\xab\x33\x00\x8e\xf4\x18\x25\x5e\x6d\xf2\x58\xcc\x6d\xe9\x72\x8b\x7a\xc2\xe7\xc7\x0a\x88\x3f\x39\x13\x6b\xe7\x59\x55\xba\x94\x39\xe9\x5a\xd3\x99\x1f\x37\xd9\x32\xe5\x95\xf3\xb2\x3d\xde\x6a\xaf\xfe\x61\xe2\x5e\x13\x5a\x8c\xbd\x2a\x4d\xa5\xc5\xc8\x1a\xbb\x74\xcd\x44\x6f\xb7\x01\xde\xb3\x66\x53\x3d\x5c\x3c\xa7\x86\x8b\xe7\x26\x34\x65\xf6\xcd\x13\x72\xd3\x75\x2d\x79\x12\xd3\xe7\x00\xd3\xfa\x4e\x14\xb0\xae\xef\xf8\x5b\xed\x7a\x69\x96\x5b\x3a\x7e\xf9\x96\xd0\x05\xf2\x5e\x5d\xf5\xaf\x10\xe6\x9c\xa2\xed\x4c\xd1\x3d\xc1\x4e\x82\x10\x37\xd6\x10\x7b\xd1\xcb\x2b\x9a\x2a\xa1\x3a\x2d\x14\x3e\x07\xf6\xd5\x5f\xd3\xf2\xc6\xcc\xfe\x4d\x45\xec\xfe\xa0\xc9\x92\x58\x48\x0a\x53\xa1\xbb\xc1\x7c\x6e\x7c\x9b\x56\x27\x70\x3c\x03\xcf\xb0\xc8\xaa\xb2\xbf\x4a\xa0\x1b\x8f\xaa\xbd\xa8\x9d\x06\x2e\x4e\x74\xa0\x3f\x5f\x07\x1e\x9b\xba\x02\x56\x8c\xde\xeb\x25\xf8\xbe\x28\x9a\x56\xd1\x27\xd3\x8b\xa9\x96\xd6\x7e\x08\x2b\x00\x0c\x5d\x54\x06\xef\x29\xa6\xec\xc0\x94\x36\x77\x26\x29\xa6\xc3\x7c\x73\x53\xcf\xbb\xff\x2a\xd2\x11\x91\xde\x11\x41\x6a\xc7\xba\xf2\x67\xcf\x92\xc4\xd2\x04\xa0\x3e\x5b\x7d\xe5\xe2\x2d\xfe\xf5\x84\xf8\x25\x47\x53\xb5\xcd\x75\xfa\xf1\x9b\xeb\xaa\xed\xd0\x37\x69\x77\x47\x7d\x82\xb0\xd0\xa2\x12\xae\xbe\x49\xe3\x5a\xd5\xb6\x38\xe0\xc7\x8a\x01\x86\x79\x37\x0a\x70\xfa\xf3\x0a\x2c\x1a\x1b\xc1\x85\xf9\x84\x83\xdb\x0a\xd2\x79\xde\xa3\xd9\x14\xe8\x8d\x0a\x77\x04\x18\x0e\x1c\x82\x58\xf9\xd8\x29\x27\x9a\x6c\x61\x87\xe4\x2e\x18\x1c\x05\x95\xd0\xef\x79\x2d\x89\x1d\x77\xb3\x34\xb5\x49\x02\xe2\xaa\xe7\x66\x07\x01\x73\xb6\x14\x60\x38\x61\xa4\x30\x2a\x93\x95\xee\xdc\xa1\x76\xd9\xb7\xb9\x19\xda\xaa\x3e\xce\xea\x8f\x14\x96\x48\xfd\x55\x84\x3e\x22\x23\x4b\x92\xa3\x45\x1f\x00\x7b\x98\xcd\x36\xf9\xc9\xc4\x32\xac\x2b\xc2\x35\x93\x2e\x23\xbe\x1c\xf0\xa2\xb1\xca\xa6\xf7\xcc\x98\x31\x64\x1a\xaf\x3d\xa1\xc5\xd1\xdf\xc3\x9f\x4a\xb0\x19\x53\x24\xa1\x5f\x29\x04\xc1\xf1\x1e\x6f\x00\x7c\xeb\x82\x7a\x1b\x35\xf0\x71\xf2\x7e\x7f\x14\xac\x1f\x79\xca\x86\x0f\x61\x0f\x05\x2c\xa3\xa3\x5a\x4c\xee\x1d\x8c\x1f\xfc\xc7\xd7\xf7\x19\x17\xe8\x46\x14\x98\x31\x77\x22\x15\x69\x20\xbe\x84\x23\xee\x7e\x68\xae\xb9\x3c\xce\xcd\x52\x49\xe7\x0a\x5e\x75\x6f\x14\xf8\x86\xbb\x3a\x63\xa2\x53\xaa\xa5\x09\x73\x0b\x75\x86\x7f\x79\xdc\x19\x1a\x5b\x7b\x13\x5f\x0d\x49\xd2\xcf\xfc\xa7\x82\xcb\x9d\xe5\xb4\xcd\x3d\xbc\x36\x94\x69\x08\x28\x62\x4f\x10\x74\x1c\xf2\x57\x72\xf4\x58\x75\x19\xcd\x8f\x7d\xd3\xbc\xe8\x67\xab\x56\xc4\x42\x21\xbe\xf1\x01\xbe\x13\x3f\x99\x88\x86\x87\x5e\x68\x0f\x4c\x8f\x9c\x4b\x5b\x4a\x32\x87\x2e\x98\xb4\x73\xb6\x9e\x56\x2f\x41\xa7\x6c\x99\x3f\x87\x63\x15\x2e\xb8\x04\xae\x80\x49\xa2\x2a\x26\xae\xf3\xb4\xb4\x87\x29\x32\xc2\x3c\xf8\xb9\xe8\xd4\x7e\xa4\x78\x72\xfa\x08\x1f\x03\xd4\x58\x72\xb2\x5b\x61\xdd\x09\xe4\xca\xc7\x55\x41\x75\x45\x81\xee\x8f\x4c\xc8\xbe\xbc\x38\xdb\x5e\x4c\xb2\x78\x79\xb1\x2a\xc8\x22\x3b\x0c\x3a\x7f\xa4\x34\x44\x2f\x28\x29\xf0\x13\xca\xdd\x64\x90\x81\xb6\x2b\x1a\xc6\xad\xa0\x67\xac\x6a\xa7\x6e\x96\x24\x26\xdf\x53\xff\xa1\x20\xef\x69\xe1\x4a\x3a\x5c\xaf\x7b\x25\xc1\xf8\x65\xee\xe8\x6e\x5f\x1f\xdb\x29\xca\xf5\x11\xe0\x28\x6c\x95\x1b\xda\xb8\x9d\xd9\x6b\xe8\xc2\x5e\x1f\x05\x9e\xf9\x76\x70\xe7\xd1\xec\xe7\xfe\x2a\xbf\x17\xad\x5a\x40\x62\xdf\x50\x45\xf0\x03\xad\xb5\x5d\xe6\x55\xbc\x4c\xbf\x94\x31\x05\xf4\x87\x82\x2f\x68\x40\xbc\x15\xfd\xcc\x8e\x91\x59\x2e\xaa\x69\x8e\x56\x04\x88\x4d\xe2\x96\xb2\x3c\x75\x86\xce\x29\x95\xcf\x06\x97\xd1\x10\x76\x39\x2d\xc3\xea\xf8\xe9\x44\xd1\x55\x9f\xe1\x7d\xcb\xc4\x2e\xcf\xbe\xf5\x3e\x3a\x17\x94\x83\x5a\xe2\x06\x43\xc7\x28\x43\x99\x1c\x85\x6c\x7e\x23\x12\xec\xf4\x00\x0a\x09\xa8\x24\xd7\xe9\xcd\xf8\x71\x83\xef\xf9\x81\x76\x6c\x93\xa4\x4a\x4c\x4e\x95\x8b\xfe\xe5\x48\x8e\xb8\xcd\x8d\xf9\xd0\x3b\x0a\x5f\xc9\x6e\x61\xc5\x0c\x7d\x75\x41\xaa\xb6\xbc\x56\xce\x71\x04\x57\xc1\xb6\xd6\xef\x8e\x69\xda\x6d\xdd\x7b\x9d\xb4\x8a\x39\xb0\x70\x80\x92\x36\x0c\x74\xd4\x31\xc9\x4c\x4f\xf1\x5f\x08\xbd\x4c\x92\x3b\x08\x1c\x46\x64\xc8\xa8\xbf\x37\x46\xba\x57\x44\xb7\x08\xe5\xe8\xb6\x75\xdf\xbc\x32\x71\xdf\x96\x96\x74\xd9\x37\x8f\x68\xa6\xd4\x5b\x08\x38\x82\xa7\x6d\x68\xaa\xe5\x2e\x36\xc8\xf8\xc5\x80\x4f\xc1\x1a\x4e\xa8\x16\x52\x56\xe5\x85\x4d\x56\xd8\x00\x0f\x5d\x31\x4c\xee\xf9\xb1\x4a\x8a\x07\x26\xef\xb9\xb4\x78\xb8\xe5\xed\xee\xb9\x7c\xc5\x4e\xbc\x35\x52\x92\x5e\xef\x2a\xd5\xd2\x0d\x34\x34\x94\x0a\xd8\xf3\x3c\x52\x6d\xad\x87\x10\xfd\x70\x47\x71\xc6\x6f\x29\xc0\xdd\xff\x40\x67\x8e\xd8\x21\x4d\xf2\xfe\x0f\xb6\x73\x3b\x30\x2e\xf5\xb3\x77\xac\x8f\x0b\x6a\xad\x04\xa3\xea\xd4\x2d\x67\x90\xd8\x45\x09\xf6\x9a\xb6\xcb\x78\x2d\x7a\x44\xf5\xbb\x3e\xf7\x28\xfd\x38\x44\xad\x9f\xe3\x02\xa2\x66\x7a\x6c\x9d\x5c\x0f\x31\xcc\x3b\xae\x3a\x1f\xbb\xd1\x3c\x05\x5e\xec\xeb\xb0\x59\x94\x4c\x8b\x7e\x9d\x08\x4a\xb7\xbe\xf4\x45\xee\x83\x41\x2d\x03\x89\x3c\x47\x16\x21\x9e\x86\x98\xc9\x94\x3a\x74\x51\x7f\xae\x8d\x94\x26\xb9\x69\xfb\xe6\x71\x74\xf8\xcb\x21\xd6\x98\xba\x79\xde\xc0\x9b\xcb\xed\xb0\x5a\x4c\xc8\x60\x3f\x28\x8b\xbe\x1b\x85\x5d\xfa\x6e\x18\xfe\x7f\xa5\xb2\xf6\x55\xa9\x0e\x10\xe3\x30\x01\x02\x17\xe2\xd2\x48\xf5\x2b\xde\x6d\x42\x5f\x0f\xaa\x7c\x08\xef\x5a\x41\xa3\x9d\x22\xe8\xae\x34\xda\x1e\x53\xcc\x96\x25\x02\x8f\xf9\xca\x1a\x54\x4f\x01\xe9\x4e\x42\x91\xdb\xdd\xdc\xad\xd8\xb4\xa5\xf7\x1a\x7d\x4f\x7e\x32\x71\x3e\xbf\x34\x77\x88\xd9\x7c\x7c\xda\x7a\xab\x6e\x3f\x38\x3a\xa3\x0e\x49\x71\xb7\xe5\x80\xa7\x45\x0c\xf9\xb1\x47\x3b\xc3\xd4\xc5\xdf\x08\xd6\x3a\x8b\x5a\xca\xce\x2f\x30\x94\xfb\xae\x2c\x68\x32\x81\xdc\x16\x9a\x71\xdc\x56\x52\xb8\xfd\xd3\x91\x26\x7e\xed\xf1\xc3\xd4\x81\x49\xbb\x05\xd5\x05\x58\x7d\x08\xd6\xde\x21\xd9\xc3\x3b\x4f\x20\x90\x28\x55\x7a\xb1\x89\xdf\x45\x50\x38\xa0\x27\x36\x26\xf6\xd9\xcb\x2f\xb7\x57\x4c\xda\xb5\xe9\xa2\xcd\x31\x86\x43\xbc\xfa\x99\xd6\x2b\xfa\x99\x22\x30\x24\xf6\x70\x55\xec\xa8\xbf\x2c\xf2\x3b\xe6\xd0\x2b\x9b\x1e\xcf\x02\xc5\x79\xac\x9e\x1c\xf0\x7f\x16\x64\xeb\x2f\x29\x5c\xcf\xd0\x38\xdc\x2c\x99\xa8\xdf\x50\x42\x94\x37\x26\x02\xe2\xdc\xa1\x76\x2f\xc9\x16\xed\xa7\xda\xd8\xeb\xc4\xfc\xb9\xf4\xb9\x96\x62\xf9\xfd\x24\x0a\xbf\xf5\x27\x9a\x3e\x68\x86\x3b\x03\xef\x1b\xab\x1f\xe9\x05\x00\x37\x18\x1d\xed\xc2\x00\x45\x6e\x89\x6a\xb1\x42\xe1\x06\x64\x83\x1d\x1d\x1d\xcf\x55\xb2\x50\xe6\xa6\x2b\x48\x5d\xb4\x65\x7e\x4c\x3f\x54\x0a\xc6\x96\x77\x02\x7d\x0f\xb7\x01\x07\xca\x8f\xf5\xfe\xa9\xab\xce\xae\x32\xd8\xb9\x15\x05\x35\x24\xd8\x14\xf3\xff\xa7\x2f\x84\xef\xf0\x86\xf2\x4a\xdd\x68\x6a\xbf\x0c\x73\xbb\xe2\xec\x2a\x1d\x1a\xb8\xea\x47\xd4\x1d\x38\x12\x85\xe6\x63\x7d\x8a\xb3\xf4\x50\x23\xae\x23\x8c\x1e\xbe\x19\x85\xa6\xee\x37\x15\xde\xa3\x74\x65\x62\x5b\xad\xb9\x43\xdc\xfa\x86\x2a\x3a\x3f\x56\x44\x44\x82\x3e\x14\x3b\x34\x91\x2f\x00\x34\xcf\x52\x78\x11\xfe\x37\x21\x7c\xe5\x2c\xd5\x64\xf0\xa0\xc7\xfd\x56\xb3\x18\xa7\x4d\x32\x32\x4f\xa5\xb3\x15\x8d\x36\x68\x09\xf0\x63\x25\x28\xb8\x94\x64\x59\x0e\xda\x01\xd2\xee\xa3\x23\x35\x5a\xfb\xbf\x71\x0e\x6a\x7b\x70\xfe\x07\x26\xfc\x21\xfb\xbe\xa5\x58\x90\x76\xd1\xa6\xc5\x62\x95\xa3\x7f\xa1\xa5\xc3\xa4\xd8\x0e\xae\x96\x77\x14\xbd\x67\xc9\x25\x6e\xe8\x52\xa8\x27\x4a\x44\xa1\x3b\x22\x5d\xeb\x50\x03\x0d\x6d\xbe\x43\x25\x8c\xac\x31\xee\x2f\x4f\x00\x06\x20\x55\xf6\x17\xb4\xfe\x2d\xec\x00\x88\xdd\x8c\x48\xfe\xda\xc4\x49\x33\x77\xa8\x6d\xca\xd2\xa6\x5d\xd1\x16\x68\x6a\x49\x3e\xe2\x8b\x2d\xd3\x1b\xf3\x8a\x3f\x85\x5b\x27\x19\xfa\xd6\x5b\xb4\x6f\xbe\x3d\xcc\x8a\x72\x60\xf2\x65\xc1\xcb\x08\x42\x9c\x7e\x94\x54\x20\x4f\x6a\x51\xf1\x2a\x8d\xfb\xc9\x1a\x70\x99\x92\xdc\xaa\x44\x77\xb4\xdb\x5f\x9c\x67\x07\x44\x73\x65\x39\x78\xda\x2f\x28\x98\xa1\x64\x83\xed\x3f\x69\x19\x3c\x77\xa8\x5d\xda\xb4\x04\x8a\x33\xa0\xdc\xce\x29\x8f\xf0\x49\x4e\xfa\xdc\xa1\xf6\x62\x95\x17\x25\x54\xf7\x44\xd0\x3d\x74\x56\x2e\x28\x01\xc2\x5e\xc6\xd3\x1b\x16\x6e\x51\xfe\x2e\xd7\x91\xb7\x78\x50\xcd\x6f\xf9\x38\x3b\xa6\x86\x7f\x05\xbd\x00\x1f\x82\xeb\x6b\x81\xee\xeb\x7b\xd1\x98\x3a\x1c\x05\x2a\xe1\x4b\xd5\x5b\x4d\x6b\xc5\x88\x25\xbe\x6f\xd9\xaf\xba\x01\xda\x21\x92\x53\x8f\x49\xbb\x2a\x95\xc1\xbe\x4b\xb2\x22\x1b\xf6\x31\x68\x50\x8e\x9e\xf5\x8b\xc5\x59\x51\x47\xe9\x3c\xee\xef\xd2\x40\xbb\x8b\x4a\xe6\x89\x41\x25\xc8\x4b\xde\x18\x6d\x45\x1c\x6f\x1e\xc7\x72\x65\xb5\x02\xca\x34\xa5\x67\x4b\x3f\xcf\xe3\x76\x02\x29\xfb\x9f\xa8\x38\xd3\xcd\xb2\x01\x8f\xcc\x05\xda\x4f\xef\x87\x82\x02\xd1\x00\xf5\xe0\x31\x85\x84\xc9\x6d\x6c\xdd\x0a\x1b\x93\xe0\x7b\xc2\x49\x97\x1f\x2b\x81\x98\xbe\x41\xeb\xe9\x00\x37\x58\xb5\xbf\xfd\xb5\x06\x6f\xba\x72\xb5\xce\xe0\x89\x8e\xcc\xae\xcd\xd1\x98\x85\x73\x38\x0c\x56\x6c\xca\x30\xc1\x03\xc1\x1f\xcc\x03\x77\x2e\x28\xa8\xc8\x9f\x4d\x34\xd0\x48\x7c\x39\xce\x7a\xa9\x7b\xd5\x67\x34\xde\xe2\x58\xd9\x1a\x3f\xae\xec\x9d\x96\xb2\x3c\x46\xa5\x84\x1b\x70\x43\xf1\x08\x6e\xf8\x74\xb2\xeb\x8a\x38\xb7\xa5\xd6\x4a\x03\xe1\x80\x1f\x37\xe9\xd2\x58\xd3\xb3\x39\x4f\x9b\xb4\x2d\x8d\xdc\xc8\xad\x2f\x39\xf4\x42\xbb\x6b\x97\x4c\x95\x00\x59\x21\x79\x66\xfd\xd5\x24\xff\x6c\x00\xa9\xba\xdc\x71\x19\x85\xb6\xd4\xd7\x34\x68\xe3\x6b\x7e\xf4\xd5\xcd\x5d\xe2\x65\x60\x79\xf4\xac\xc0\x24\xe7\xb5\x3a\x55\x69\xcd\xf2\x18\xc3\x5e\xed\x8f\x3b\xd1\x18\xbc\x7d\x8f\x82\x11\xc6\x55\xae\xf0\xce\x67\x14\xde\xf9\x8c\xa2\xbe\xc7\x89\x4b\x5d\x6c\x12\xdc\x1d\x34\x81\x4e\xa9\xd9\xd1\xa9\x89\x29\xdc\xde\x39\xca\xb0\xf3\x45\x57\xf4\xfd\x6d\xc5\xfe\xc6\xb8\x99\x1f\x7b\x38\x4f\x69\x73\xca\x7f\x1d\x6b\x9a\x8b\x82\x9e\xa2\x9c\x6e\x28\xdd\xba\xc4\x2e\x95\xae\x28\x89\x59\xaa\x2d\xef\xbc\xa7\x6b\xfd\x32\xcf\xf5\xae\x77\x9f\xb4\xc7\xe4\x0c\x30\x8b\x59\x55\xee\x69\x05\x7a\x31\xee\x01\xca\x9f\xab\xa3\x20\x67\xf0\x8b\x9d\xc0\x02\x7a\x62\x9d\xce\x09\x2f\x56\xec\x27\xb4\xac\x0c\x8a\x3b\xb8\x81\x5c\xd8\x73\xf8\x03\x29\x07\x9a\x65\x34\x2e\xfd\xc1\xd3\xeb\x5e\xb5\xf4\x37\xfe\x1e\xe5\xc8\xd8\xb2\x8f\xaf\x53\x00\xda\x64\xa5\x0d\x50\xb9\xb7\xaf\x6b\x27\xc8\x2c\x5b\xe6\xdc\x47\xa8\xbf\x88\x59\x08\x2a\x3b\x3b\x0a\x1d\xcb\x82\x18\x62\xe5\x12\x64\x13\xbb\xdd\x30\x48\xc1\xeb\x6e\xea\x41\xca\x5f\xd1\x06\x96\xd8\x13\xf2\xd3\x81\xed\x3e\x1e\xb8\x94\x7b\x9e\xeb\xa8\xce\xef\x23\xeb\x81\x1c\xdb\x02\x25\x11\xa1\xfb\x6d\xce\x3d\x04\xfb\x40\x3f\x8c\xda\x7d\xff\xf4\xb9\x8e\xf7\x31\x1f\x3d\xb9\xae\x5a\x2b\xad\xf5\x20\x35\xfa\xf0\xfa\x18\xd5\x34\x34\x6e\xd8\x7a\x90\xae\xc2\xc2\x67\xd7\x5b\xbf\x79\x90\x0b\x0d\x00\xb0\xe8\x78\xea\xfc\xff\xd6\x5b\x7b\xf7\x7a\x51\xc5\xfa\x9e\x89\xbb\x71\x38\xaf\x4d\x1c\x67\x89\xe9\xda\x42\x29\x5a\xb1\x5e\x87\x57\x02\x5d\x98\xf5\x38\xde\xad\x1e\xf2\x90\x01\x42\xa8\x62\x88\x1b\x3f\xf1\xda\x0e\x45\x56\xa5\xdd\x5d\x01\x6f\x7d\x41\x49\x12\x23\x62\x43\x12\xfa\xf1\x4e\x80\x4c\x7e\x8f\xf0\x9e\xdc\x5e\x1a\xa9\xc1\x2d\x4f\x0d\x04\xbc\xa5\xac\x88\xe1\xc2\x85\x33\xea\xb2\x1a\x51\x2d\xdb\x34\xb5\xdd\x35\x06\x74\x71\x7a\x81\x63\x17\x57\xe3\x04\xde\x05\x35\x79\xd0\x7d\x5e\x72\x45\x6c\x12\x8c\xa6\x81\x33\xf8\x33\xed\x05\x03\x13\x79\xd1\xa5\xaa\x8f\x0a\x89\xd7\xa1\x86\x00\xc6\x01\x97\xf1\xbe\x32\xbb\x71\x85\x59\xb4\x49\x62\xa6\xd4\x1c\xe6\x34\x7d\x7d\x71\x0b\xa4\x9b\x2b\xc7\x4d\x28\x69\x57\x5d\x92\x7c\xa6\xf5\x92\x78\x14\xc3\x4c\x1a\x53\xb2\x9f\x8c\xc2\x49\xb0\xa3\xa3\x88\x3a\xa7\xa8\xdb\x83\x2f\xf4\x6f\xe9\x8b\x4a\x1e\x52\x7f\x39\x80\x1b\x7e\x01\xcb\x0c\xb1\x9e\x3d\x24\xf0\x8a\x3d\x1d\xc5\x5a\x7e\x7c\x9d\xa0\x19\x0c\x2b\x19\xd5\x11\x61\x93\x5b\x13\x58\x7c\xbb\xd7\xeb\x45\x86\xd8\xfb\x3b\xbc\x35\x71\xb9\xa6\xd8\x33\x42\x20\x29\x74\x4b\xd9\x46\x28\x52\x12\x63\x90\x62\xc0\x48\xf6\x51\x02\x95\x00\x49\xb1\x07\xdb\x0d\xc1\x64\x5b\xa7\xf5\x85\xdf\xe6\xdf\x7a\x7c\xcc\x2a\x3d\xcf\xdd\x54\x38\x73\x79\xbf\x61\xfe\x78\x63\xcc\x04\x7c\x8f\x02\x93\xe5\xe5\xda\x6e\xfa\xfd\x22\xa1\xa9\xda\x54\x67\x46\xda\x3e\xb6\xbe\xdc\xac\xab\x16\x05\xc4\xfe\xf9\x67\xc6\x04\xd7\xea\x2f\xed\xd1\x2b\x2a\x75\xa1\xeb\x24\x7d\x86\x40\xe5\xb9\x89\x15\x2d\x3c\x95\xc9\xd1\xef\x41\x2a\x0e\x6d\x5a\x4e\x29\xd7\x0e\x68\x5c\x0a\x82\x4d\x59\x0f\x1d\x1b\x05\xf6\x40\x6e\xd2\x1d\x21\x3b\xda\x54\x16\x28\xdf\xc4\x95\x11\x44\x7e\x28\x79\xc0\x54\x91\x36\x6c\x7d\x37\xb9\xdd\xa6\x48\x09\xab\xfd\xec\x89\xd0\x32\xda\xb3\xae\x0e\x80\x27\x61\xa1\xcd\x6a\x1e\x74\xbd\x64\x28\x48\xbf\x12\xc9\xf9\x4e\x8a\x70\xd8\x70\x70\xbf\x60\xca\x0a\x1a\xc9\xd8\xc3\x77\x71\x96\x00\x84\xfa\x08\x89\xfb\x88\x51\x2e\x9d\x2b\x82\xb0\x09\x9d\x98\x07\xb8\x71\x18\xc2\x5f\xc3\x66\x15\x89\x1a\xba\x42\x28\x71\x1f\x25\x76\x03\x1b\x6b\x8f\xd4\xd0\x79\xd3\x27\x50\x7e\x74\x4b\xcb\x02\x47\x08\x78\xe2\xfc\x38\x0a\x5a\x93\x71\x5e\xb9\x52\x09\x5d\xfd\x48\x4b\xd7\xfc\x48\xa9\x1e\xc4\xfd\x2c\xb7\xec\xfb\x25\xc5\x6d\x7d\x81\x05\x57\xae\x8a\x5e\xda\x9a\xfc\xff\x27\xf2\xd3\x97\x5f\xae\x8b\x2c\x26\xcc\x01\xc7\x7e\x5f\x31\xc2\x99\x24\x2d\xec\xed\xad\x9c\x2c\xe1\xa5\x2d\x9a\xc2\x2e\x92\x64\xb2\x67\xa5\xbf\x41\x3b\x7a\x0c\xfc\x81\x38\x33\xd3\x51\xbd\xda\x9b\x8d\xbe\x8f\x55\xea\xd2\x62\xe8\x72\xe9\x61\x6a\x3f\x29\x99\x0b\x29\x67\xb2\x73\xfe\x52\x2f\xd9\x81\x4b\x89\x72\xee\x27\x6b\x27\xe9\x52\xf0\xe3\x7a\x39\x7b\x5d\x8e\xa4\xa5\xe2\xf6\x85\x48\xdb\x6a\x5d\x98\xe8\x5c\xbe\xb4\x30\xdb\xee\x39\xa9\x8a\x19\x39\x14\x69\x14\x91\x72\x06\x4c\x83\xc6\xe7\xdc\xa1\x4d\x22\xc0\x6c\x4e\xad\x37\x31\x08\x8b\x2c\x76\x59\x92\xf5\x5c\xc1\x30\x75\x41\x11\xb5\x94\x4d\x6d\x38\x7e\x96\xb2\xdc\xba\x5e\xfa\x54\xc8\xd1\x6e\x93\xce\x0b\xa6\x01\xbb\x3b\x14\x44\x19\x63\x22\xd5\x62\x70\xb4\xbe\x86\xb6\x82\xc8\x47\x07\xff\xf9\x3f\x41\x15\x89\x8c\x81\xb1\xdb\x8c\xd7\x44\xf8\x96\xab\xa2\x84\x5f\xaf\xea\x62\xf3\x22\x36\x8b\xf8\x72\x68\xce\x47\xcb\x3b\x08\x61\xca\x83\xdd\xf1\x30\x30\x73\xde\x37\xad\x2e\x6f\xb1\xd5\x3e\x00\xbe\x93\x9f\x7c\x2a\x13\x32\x8b\xad\x49\xa7\x43\x2b\x0f\x06\xfd\xf8\x69\xa7\x28\x0a\xe0\x9a\xb0\x11\x05\xc6\xe8\xe4\xd5\x34\xc1\x58\x77\x22\x46\x27\xd8\xcb\xb0\x35\xcf\x6a\x5b\xbf\x2c\x5d\xb1\x79\x90\xb9\xc2\x5b\x6a\x16\xf4\xd9\x71\x08\x81\x8b\x1f\xd6\xe2\x50\x30\xc2\x12\xda\x6c\x7d\x57\x70\x7c\xdd\x56\x5d\x3e\x30\x34\xd1\xc1\xd8\xd1\x19\xd3\x39\xa3\xfb\xe0\x85\x6e\x16\x66\xfd\xb0\x42\x59\x5c\x4e\x77\x14\x9f\xed\x81\xaa\xe0\xbd\x7e\x18\x63\x76\x71\xa2\xb0\xbe\x28\x3f\x51\x90\x53\x93\x2c\x56\x03\x2e\x72\x25\x70\xd4\x5f\x4c\x82\xcb\xd6\xab\xb8\x7f\x7f\xbb\x67\x0d\x44\x21\x10\xc7\xbf\x47\x3f\x8a\x1f\x37\x10\xa1\x13\x6b\xca\xbe\x05\x06\x00\xdd\x0f\x9e\xee\x6a\x11\x1e\xb4\x75\x3f\x56\xf9\xe5\x30\xcf\x62\x5b\x14\xec\xb6\x83\x5a\xe4\x94\x32\xe9\x3e\x35\x11\x4e\x16\x66\xdb\x83\x2c\x2d\x7b\x59\xb2\xe4\x85\xae\xb5\xdf\x92\x06\xc8\x88\xfd\xf3\xd6\xaf\x7b\xe8\x85\x76\xdf\xf5\xfa\x32\x34\xf7\x59\x5f\xbd\x67\xbc\xe7\xe1\x8b\xb3\x7c\x13\xae\x2a\x56\x89\x8d\x49\x7c\x00\x2d\x72\xa8\x92\x23\x5f\x3a\xa9\x0c\x5e\x98\x5b\xca\x47\x31\x76\x9f\x37\x1e\x09\x22\xb5\x27\x15\xca\x28\x77\xa6\xdb\x52\xd4\xdf\xf7\x23\x25\x95\xf4\xbe\x56\x7d\xb5\xe4\xe5\xd7\xf2\x2e\x58\xff\x94\x56\xb7\xaf\xd5\xb4\xed\xf0\x13\x7a\xa9\x97\x79\x96\x10\x37\xef\x80\xf7\x23\x0d\xdf\x7e\x43\xe9\xc3\x5e\xc2\xd6\xf7\x87\xbc\x17\x93\x86\x41\x1f\x0e\xec\x4d\x7c\x3f\xcc\x3b\xce\xe0\xc8\x95\x81\x6c\xbd\x13\x84\xc2\xd9\x04\x75\xeb\x57\x03\x93\x9a\x56\x98\x38\x32\x42\x84\x9f\x8c\xed\xb9\xa2\xeb\x94\xfe\xd9\xa6\xd2\x3f\xdb\x54\x58\xaa\xac\x2a\xeb\x72\x1a\xa7\x04\x7b\x46\x47\xa1\x80\x3b\xa5\xe5\xf3\x48\x73\x6f\x57\x00\x71\x5d\x44\xac\x42\xa4\xe3\x03\x1f\x63\x3b\x34\xcb\xb1\x7e\x67\x10\xde\xb0\xfe\x67\x3a\x14\xd1\x10\xcd\x99\x17\x81\x50\x7b\x61\xcc\xa1\x8e\x36\x32\x0b\xc6\x37\x81\xf6\xb2\x15\x9b\x17\x59\x82\x69\x01\x7b\xbe\x8c\x82\xb0\xc1\xfb\x23\xe5\x73\xf3\x1d\x65\x18\x32\xdd\xa9\x13\x03\xd9\x20\xa1\xe6\x5a\x32\xc4\x11\xde\xa9\x92\xb7\x53\x23\x25\x93\x7a\x1f\x32\x31\x3e\xa3\xf0\xbf\xee\x04\xab\xd4\xe8\xd0\x00\x00\xe0\xc7\xb4\x48\x04\x18\xd4\xe0\x7c\x65\x4a\xc3\xe2\xdf\xb2\xf1\xd4\x88\x6b\xdc\xd7\x55\xe3\xd7\x42\xbb\x21\x37\x8b\x9c\xf5\x20\x59\x79\x78\x5d\x17\x06\x33\x48\xec\xb1\x4a\x6f\xa9\x14\xf5\x42\x83\xaa\xe8\x5c\xdb\x9a\xa2\xe4\x52\x4e\xb6\xa8\x32\xb0\x66\xcd\x38\x2c\xff\x9b\x4d\x2d\xe0\x38\xa1\xa8\xb7\x7f\x7f\xa3\xe6\x61\xc3\x0b\xcc\xaa\xc9\xbb\x0a\x3d\xa9\xbd\x07\x6f\x36\x9a\x4b\x0e\xcc\xab\xaf\xda\xdc\x28\xeb\xfc\x23\xb8\x32\xd2\x98\x6c\xe8\xbe\xc5\xd9\x8a\xf5\xc6\xe5\x5a\x32\x5f\x44\x50\x68\x71\x62\x09\x4e\x82\x65\x17\x66\xdb\x8b\x0e\xe2\xb4\x5e\x28\xa7\xfe\x7b\x56\x5c\x8c\x82\x3d\xf5\x9b\xa1\x95\x5c\x1a\x26\xb5\xa2\x3e\x7d\x63\xa4\xa4\xc6\xe8\xa2\x20\x05\x68\x75\xb4\x77\x86\x9a\x7b\x5e\xc5\x85\x97\x21\xe8\x13\x4a\x11\xcf\x0d\x87\x42\x2d\x1c\x2b\xb1\xf9\x49\x33\xb5\xb0\xcc\x56\x53\x9a\x06\xb0\x45\xde\x28\x6c\xef\xf7\xf1\x72\x26\x0e\x34\x79\xcf\xb9\xb4\xeb\x4c\x5a\x8c\xd9\x1a\xb3\x09\xa6\x68\x0e\xeb\x09\x78\x8f\x54\x0e\x43\x9e\x7a\x5e\x1b\x5a\x9d\x1f\x3d\x2c\xbd\xa2\xca\xee\x56\xce\x35\xb7\x09\x65\x80\xe0\x74\x04\xbf\xde\xcb\x40\xfb\xd6\xc3\x9f\x04\x45\xfd\xff\xfa\x69\xa5\x14\xb0\x63\x5d\x49\x4b\xdd\xc7\xc6\x47\xb6\xff\x80\x2e\x2a\x65\x65\xb3\x9f\xeb\x28\x71\x99\x1d\xe8\x24\x89\x53\xfa\x98\xb8\x55\xda\xfb\xc5\xd6\xb3\xcf\x7a\x83\x38\xda\xf6\xde\x65\x6f\xc1\x9f\x59\x51\xd0\xc5\xfd\x04\xa7\x9f\x87\x80\xec\x9d\xe3\xce\xc1\xc7\xba\x7c\xbc\x3f\x0a\xc7\xf4\x6d\xcc\x86\x58\xd9\x0a\x49\x1e\x6e\xf7\x19\xba\x12\xd8\xa7\x9c\x7c\x7a\x8f\x86\xb9\x43\x5e\x34\x50\xf9\xf5\x63\xc6\x88\xdf\x75\x13\xe7\x0f\x72\xa6\x1b\x60\x57\xe1\x20\xfe\x99\x46\xbc\xdc\x1b\x29\xc5\xac\xab\xa4\x62\x84\xa4\xf8\xcf\x51\x19\x0a\xd6\x59\x09\x77\x6c\xe7\xd0\x82\xa1\xeb\xcf\x23\x04\x3d\x26\x0c\x51\x35\x4b\x15\xe4\xaf\xfc\x2d\x52\x7c\xf6\x49\xc5\x17\x7e\x9b\x83\x09\xd3\xd1\xa1\xea\xff\xaf\xe9\xbe\xe0\xc0\x9f\xe9\x50\x65\x4a\xd1\xf9\x77\x9e\xa4\xb6\x1a\xa3\x4c\x9b\xd0\x89\xb1\x4b\xed\x30\xb1\x87\x5b\xaa\x1b\x3e\x1a\x83\x66\x78\xe0\x47\x59\x75\x6d\x5a\x16\xc0\x07\xe2\x46\x41\x0a\x41\x59\xc0\x4b\x40\xbb\xad\x3a\x41\x3d\xb3\x62\x77\x29\xc9\x47\x86\xe0\xf9\xbe\x47\xfd\x6d\xfd\xec\xe2\x25\xdf\x25\xfa\x18\xf5\x84\x74\x96\x70\xb5\xf8\x1d\x46\xc1\x65\x06\x9d\x0e\x16\x4f\xc5\x57\x60\x27\xff\x26\xf5\x71\x97\xae\x64\xc9\x0a\x53\x07\x04\xcf\x1b\x66\x07\xa7\x14\x04\xd9\x1e\x1e\x9a\xb4\x70\x59\xba\x33\x9c\xf9\xaf\xe3\x3b\x09\xbd\x4d\xb9\x40\x9d\xd1\xda\x31\x77\xb9\xdc\xd3\x74\x76\xfc\x8e\x7f\x81\x05\x2c\x75\x4d\x28\x18\xfb\xae\x7c\xa4\x5e\xe7\xa2\xa1\xa6\x79\x90\xf5\x62\xc0\x26\xe1\x86\xad\x50\x6e\x69\x05\x78\xce\xbd\x67\x32\xbd\x8b\x0f\x91\x6b\x1a\xa8\x4f\xd3\xd8\xb2\x02\xb7\x0e\xa7\xfb\x29\x0d\x2a\xfb\x01\x96\x39\x36\xd9\x65\xcf\x66\x1d\x9a\xc4\x16\xa5\x4b\x55\xf0\x42\xdb\x9b\x73\x0b\x7e\xa2\x10\x0c\xa9\x19\x58\x71\x28\xc2\x79\x7a\x51\x11\xda\x2f\x36\x29\x6b\xdb\xc3\x8e\x90\xac\x48\xa5\x71\xd4\x7f\x9d\x16\xb7\x7c\x56\x40\x64\x4c\x8e\x80\x0f\xbd\x00\x1f\x70\x16\x63\xf3\x76\x7e\xbf\xaf\x19\xbd\xbf\xef\xcf\x95\xd2\xa6\xdc\xa1\x17\x04\x66\xbd\x94\xfc\x78\x20\x74\x53\x67\x28\x38\xca\xd7\xd6\x7e\xcb\xac\x9c\xcd\x25\x1e\x52\x96\x4d\x55\xcd\x6c\xaa\x51\x7c\x6e\x93\x2c\xa6\xb2\xdd\xdb\x5f\x9d\x47\x6b\x4e\x44\x0b\x1b\x48\x8a\x71\xdf\xc6\xcb\xd9\xd2\x52\x2b\xb4\x70\x2f\x44\xca\x67\xe0\x42\x93\xd6\x78\xb5\x9c\x1b\xba\x51\x63\x04\x55\x05\x12\xd9\x18\x23\x77\xf6\x4c\xb2\x3b\xd4\x99\xbb\x3a\xc1\x25\x0b\x12\x68\xac\xc8\x15\x29\x93\xb5\xcb\x0a\x86\xba\x9d\xac\xdf\x71\xa5\xce\x61\xed\xc8\xa6\xa5\x5b\xef\xb9\x72\xf5\xde\xf6\xf2\x1b\xc1\xf4\x99\x47\xa8\x38\xdb\xaf\x2b\x42\xac\xe9\x52\x49\x5c\xb8\xb4\x37\xa3\xb4\x3a\x1f\x28\x5b\xb0\x53\xca\x4f\x08\xb2\xd8\xfc\x37\x88\xce\x58\x34\x3f\xd6\x9e\x76\x36\x5f\xca\xf2\x81\x21\xa1\xb4\x85\xd9\xa0\xa8\xed\x91\x35\xdf\x8e\x5a\xca\x40\x68\x0c\xd8\x3a\x61\x93\x78\xa0\xae\x21\x1e\xd7\xa0\xac\x90\xae\x7d\x5f\xf9\x5d\xb2\x98\xba\x22\x2b\xc8\x2e\xbc\xa5\x6a\xbb\xfb\x88\x85\xf8\x1a\xb7\xe8\x0c\xdc\x64\x3f\x3a\x6f\x62\xba\x30\x1b\x76\xdd\xfe\xfd\x0b\x9b\x8c\xe4\xc5\xfe\xde\x1c\xa7\x41\xd4\x71\x43\x76\xa5\x6a\xa7\x1c\xe3\x58\xca\x4d\x01\x05\xdb\x32\x49\x96\xf6\x76\xb6\xbc\x72\xe9\xef\x51\x53\x41\xf2\x29\x05\x60\x79\x5f\x65\x96\xe7\x28\xc0\x00\xe5\x74\x13\xc7\x1d\xff\xd1\x28\xe8\xe7\xdd\x54\x50\x96\xaf\x54\x19\x04\xc6\x30\x53\x10\x43\xa5\x10\xf1\xde\x8b\x14\x3d\xf8\x8a\x3a\x49\xba\x19\x9b\x6a\x79\x0b\x6e\x3f\x7b\x9e\x14\x81\xd8\xbf\xbf\x3d\x34\x45\x5f\x4c\x07\x90\x01\x7c\xa2\xb2\xf6\x4f\x1a\xba\x83\x07\xc6\xf6\xb4\xea\x67\x45\x8a\xc6\x77\x51\x55\x7b\x45\x69\xd3\x94\x4c\x9d\x94\x6c\x04\x2e\x95\x38\x22\xb4\xbc\xf9\xfc\x24\x3a\x8d\x3c\xe4\x12\xc7\x07\x92\x60\x08\xe9\x2e\x0a\xb8\x30\xc4\x53\xea\x10\xc2\xd0\xce\x0f\xed\xbd\x70\x78\x63\x20\x28\xd2\x6c\x75\xd1\xe5\xdd\xe2\xd3\x89\x3d\x9a\x9a\x9c\xe5\x12\xae\xbd\xe0\x54\x50\x89\x39\xa7\xf4\x06\x97\xaa\xb4\x6b\xc0\xdd\xc4\x5b\xab\xde\xb5\x6f\x64\x47\xe3\x12\xa7\xe5\xb4\xd2\x1f\xdc\xd6\xa1\xbc\x4a\xcb\xf8\x79\x3e\xba\xaf\x00\xde\x6b\xf0\x41\x99\xa7\x2e\xe5\x8a\xcd\x5b\x81\x48\x0b\xed\x5f\x41\xd4\x2b\x6f\xeb\xdc\x91\xa3\x0b\xd7\x84\x48\x99\x87\x0a\x47\x03\x98\xa7\x18\x02\xd2\xa2\xe3\x3f\xf2\x4d\xf3\x32\xcb\xe3\xbe\x8c\xf7\x99\x23\x8e\xe3\x55\x08\xe3\x61\xfb\xf4\xf2\xac\x28\xa6\x83\xbc\xec\xc9\x48\x69\x37\x82\x24\xc3\x8f\x23\x85\x0c\x3b\x19\x38\x9d\x2e\xc9\x4a\x8d\x12\xda\x46\x91\x95\x1f\x77\xc2\x60\x9d\x3e\x48\xcc\x64\xf0\xcf\x50\x1b\xc3\xe8\xf3\x8e\xea\xcf\x4f\x2e\x8b\xba\x34\x1d\xe6\xd9\x4a\x46\x30\xa9\x20\x59\xcc\x3a\xbf\x92\x3c\x05\x33\xd2\xbe\x35\x25\xf1\xa7\x45\xf8\x55\x9d\x03\xff\x0b\xdd\x2e\x41\x9a\x7e\x46\x49\x11\xa5\x65\x4e\x2d\x05\x52\xe9\x5a\x10\xfe\xf3\x39\x8a\xd1\x72\x56\x84\xd6\x1b\xf5\xe4\xab\xdc\x76\xa7\x03\x1b\x92\x7d\xa3\x24\x77\x56\x25\x1a\xa2\x29\xff\xc3\xd8\x32\x4b\x4c\xdc\x1a\x17\x6f\x18\x13\x79\x50\xbc\x05\xb3\x5a\x64\xe9\x0e\xe5\xef\x73\x5e\x15\x8c\x38\xde\x3c\x98\xd6\x07\x5d\x28\xae\x63\x09\xb7\xa8\xf1\x81\x94\xe9\x6a\x93\xf7\xf2\xc0\x96\x66\x50\xc5\x2e\xe1\x26\x80\x86\xfb\x89\x02\x09\x7d\x3b\xe4\x76\x57\xa2\x87\xfd\x48\x07\xad\x4b\x04\x90\x5d\x9d\x10\x19\x99\x82\x8f\x00\x7f\xb3\xc1\xca\x4b\x00\xd0\x8a\x54\x70\x4e\xa5\x4c\xe7\x26\x5e\x32\x77\xa8\x6d\x16\xf3\x6a\x58\xe2\x25\x32\x6e\xd0\x63\x88\x30\x3f\x5a\xb1\x29\x6b\x79\xa2\x83\x78\x3c\x52\xe3\xe8\xe3\xc1\x26\x3d\x8f\xfb\x86\x79\x76\x22\xd5\xdd\x0a\xb2\xdd\xaa\xbc\x7d\x25\x2b\xec\x90\xf5\x28\xa4\x3a\xd7\xe0\x1f\x7a\x7b\xae\x77\x14\xbe\xa1\x57\xad\x4d\x8f\x3b\x0d\x7b\xab\xb0\xdb\x74\x44\x7a\x58\xea\x8b\xb3\xbc\xa0\x47\xcd\xce\xa4\xd9\xb2\x9d\x09\x0a\x95\xe0\x4c\xb1\x49\xf9\x28\x20\x4d\xdf\x45\xc8\x0c\xe0\x5d\x5f\x3b\x34\xa1\x10\x8b\x65\x3b\x2c\x5d\x2c\x86\xe1\x9e\x69\xb8\x10\x8c\xaa\xb6\x7e\x97\xcf\x8b\x9a\x2a\x5d\x09\x6f\x76\xb3\x30\xeb\xcd\x6e\xc2\x29\x60\xd3\xd2\xe5\x7c\x60\x70\x2f\x0c\x09\x85\x34\xc6\x9e\x52\x53\xa8\x6e\x15\x97\xce\xeb\x8d\x63\x06\x7b\x52\xcd\x63\x4f\xfa\xe1\x56\x56\x95\xab\xd6\xf5\xfa\x33\xea\xbd\x3e\xa4\x0b\xe8\xd5\xd6\xeb\x4f\xc4\xb6\xc7\x54\xc1\x37\x5a\xf6\x89\xf0\xde\x2d\xd5\x00\x5c\x34\x69\x9c\xe5\x43\x6a\xad\xe2\x5f\x8f\xea\x39\xe7\x51\x75\x3f\x4d\x9c\xf1\x1e\x41\x65\x73\x56\x89\x5d\x9c\xd7\x22\x94\xda\xde\xac\xe8\xbb\xe1\x40\xd0\xb8\xc8\x65\xfe\x2f\xdc\x27\x7e\xd2\xa4\xf9\x91\xb8\xfa\xc0\x66\x85\x69\x5f\x40\x2a\xeb\xd6\xa7\x94\xb7\x49\xe1\x7a\x69\xfd\x09\xd3\x21\x67\xb8\x0e\xc5\x07\x5c\x85\x6d\x0c\x14\xe0\x67\xeb\x01\x55\x7e\x3d\x88\x9e\xc3\x6f\x9a\xd7\x82\x57\x62\x0c\x93\x91\x63\x13\xfc\xa7\xbd\x7b\xdb\x4b\xae\xe8\xdb\x7c\x20\xac\x72\xb6\x4a\x88\x02\x4d\xe7\xec\x68\x8b\x91\xff\x73\xed\xf9\xf9\x99\x20\x99\x09\xd8\xa0\xe4\x61\x5a\x13\x4c\x69\x64\x9f\xe1\x32\x55\xf8\xaa\x01\x63\xbf\x68\x7b\x26\x65\x8c\x25\x32\x61\xf4\xd9\xd0\xe0\x78\x40\x55\x81\x97\x68\x0d\x47\xd9\x25\xcd\xef\xb9\x84\x84\x1f\xeb\x6c\xa6\x13\x68\x45\x77\x68\xc1\x00\x3c\x73\x7f\xa4\x66\xed\x17\xa3\x50\x7d\xe7\x59\x61\xd3\x25\x9b\xc0\x28\x4c\xa9\x3e\x08\xad\x39\xc4\xa5\xd5\x2c\x5f\xa6\x12\x21\xf8\x9d\x80\xd9\x85\xef\xc1\x88\x4f\x9c\x16\x20\xc5\xfb\x64\xdd\x63\xc6\xa6\xd6\x9f\x51\x85\xbf\x29\x20\xbc\x8a\x14\x55\x78\x72\x70\x13\x15\xea\xcd\x58\x17\x2e\xac\x9a\x34\x0b\x08\x39\xcf\x77\x7b\x57\xc7\xc9\x77\x9b\x54\x10\x06\x26\x29\xc5\x31\xd6\xdb\x68\x86\xd7\x9c\x56\xe4\x83\xff\xe4\xef\xff\x7d\xfa\x33\xf1\x73\xac\x53\x74\x31\x7a\x7c\x5c\xb9\xe6\x2c\x2e\x12\x55\x35\x00\xbc\xae\x28\x9c\xee\x95\x89\x29\xdb\xbe\xf9\x76\x2f\xcb\x60\x16\x88\xdd\xff\x20\x10\xdb\xef\x3d\x41\xf8\x16\xa4\x68\xd3\x9d\xa7\x14\xb2\xaa\xeb\xea\x1f\x6b\x92\x5d\xa1\x40\xfd\x3a\xd2\x40\x0f\x86\xf4\xf6\xf9\x53\xe0\xfc\x7a\x89\xe6\xfd\xfb\x35\x8a\xf6\xcb\x22\xea\xaf\x7d\xf1\xce\x52\x08\x42\xe1\xf2\x16\x75\x42\x10\x75\xae\x6a\xdc\x7a\x36\x44\x7b\x58\x13\x05\x95\x21\x77\xe0\xbe\x85\xee\xc3\xb1\x71\x0f\xa5\x50\xbd\xbf\x3e\xb1\x1f\x5f\x9c\xad\x63\xae\x49\x7b\x1e\xe6\x89\xe5\x7a\x33\x00\xc2\x7e\xf5\xa6\x8a\x66\xd9\x92\x51\x1c\x99\x73\x91\xae\xa1\xf4\x7c\xa4\xe8\x93\x38\xde\x16\x07\x4b\x96\xc7\x57\x79\xd5\x1b\x91\x1a\xc8\x46\x21\xc7\x1a\xb8\x22\xb6\x49\x62\xe0\x2a\xa6\x94\x2d\x36\x94\x77\xe2\x46\xf4\x74\x40\x0e\x84\x7a\xfa\x21\xec\x6d\xdc\xd0\x7b\x2a\x58\x5c\x46\xcd\xee\x99\x02\xf5\x16\x46\xf3\x11\x7c\x11\x31\xe4\xac\xaf\x1e\xff\xff\x91\x12\xd8\xfa\x4e\xa4\x18\x41\x17\x15\x21\x62\xd1\x25\x49\xf1\x50\x60\xe8\x5e\x8f\x82\x8d\xc6\x71\x84\x0d\xb4\x65\x8f\x2b\xae\xda\xd4\xba\x5a\x2f\xac\x56\x83\x53\x61\xba\xa3\xf4\x3b\x2f\xe3\x6b\xf2\x1b\x4f\xa8\x0e\xcc\x1d\x6a\x2f\x39\xd6\xd9\x10\x13\xbc\x00\xdf\xbb\x18\x05\xd0\xb2\x71\x79\xe2\x52\xbb\xab\x5e\x66\xc2\x90\xae\xaf\x3d\x82\xca\x27\x91\xc2\x4e\x5f\x54\xb5\xe7\x15\x04\x03\xa4\x8b\x77\x91\x9c\x8a\x0b\x66\x98\x1e\x1f\x8b\x82\xe9\xce\x9f\x8d\xb4\x97\x98\x4a\x4b\x17\xfb\xa6\x67\x4a\x75\x56\x9c\x1b\x13\x57\xd8\xa3\x1c\x28\xab\x64\x6d\x2a\xc4\x81\x3b\x23\xa2\x25\x8a\x2c\xab\xc2\x41\x8e\xe5\xc7\x55\x6e\x9f\xae\xbf\x86\x8c\xfa\x15\xd8\xff\x6f\xc6\xfa\x3b\xa3\xba\xf2\xc0\x85\xff\xb9\x1e\x4e\x6c\xe2\x00\xf4\xda\xfb\xfe\x9a\x7e\x8f\xd2\x22\x5c\x90\x7b\xe8\xdf\xf3\xfb\x62\x6f\x63\x77\x4d\x75\xc2\x6d\x3f\xcd\xc7\x0f\x72\x61\x96\x74\xe4\x15\x41\x8b\x00\x1f\x7f\x79\xa4\x0c\x71\x61\x4d\xc3\x78\x84\x75\xe5\x50\x37\xdd\xa1\x35\x20\x26\x5a\xad\x97\x24\xe9\x07\xb2\x0b\x3d\x95\x1b\x2a\xf5\x8c\x93\x6a\x50\xb0\xc9\x8e\xa0\x47\xb5\xa9\xbc\xc2\xe4\x17\xd6\x2e\xef\xa4\x8b\x83\x0d\x79\x97\x7e\x2a\x7e\xf6\x75\xba\xd4\x7c\x7e\x29\x23\xee\xc7\x3a\x81\x5b\xfc\x73\x55\xf4\xf0\x6e\x91\xdc\xe6\x29\x2d\x7d\xb6\xe2\xd2\x58\x86\x51\x98\x9f\xfd\x6e\x14\x00\xbe\xbf\x1b\xc6\x94\x03\x52\xb4\xf2\xc8\xfa\x7f\x84\x78\x8b\xe3\x0e\x07\x35\xa6\x0f\xa7\x55\xaf\xb2\x57\x99\xdc\xa4\xa5\xb5\xdd\x87\xea\x57\xca\x7c\xbb\xfe\x63\xac\x20\x06\x9e\x89\xd6\x8a\x12\x3e\xdd\x18\x29\x4e\xc5\x19\xba\x9e\xaa\xe9\x7d\x70\x5c\xab\x85\xdf\x4c\x0b\xaf\x98\x15\x97\xf6\x0a\x52\x8e\x45\xc7\xef\x9c\xc2\xde\x9f\x1b\x37\xdc\x6b\x29\x6d\x2f\x35\xa3\x3d\xdf\xd0\x39\x69\xbb\xa2\xa8\xc6\xd4\x62\x54\x57\x4a\x33\x1f\x56\x4d\x9e\xdb\x14\x9d\x5e\xd9\x20\xda\xb1\xfa\x4a\x34\x26\x1b\xa9\xce\xdd\x2b\xbe\xa6\xc9\xaa\x32\xb1\x02\xe5\xf1\xcd\x51\xdf\x49\x98\x54\x57\x9d\x9f\x3f\x58\x3f\xc8\xe1\xda\x83\x9b\xcf\xbe\x50\xfc\x44\x6d\xfb\xc2\xba\x57\x2d\xa6\xa2\xc8\x97\xae\x20\xd8\x21\xf1\xb8\xa1\x80\x83\x6f\x28\xf5\xbb\xbe\x35\xdd\x1d\x01\x70\xf1\x71\xa4\x0a\xf8\xeb\x63\x1e\x96\x6a\xa0\xf3\x1a\x05\x5e\x59\xf1\xb8\x0c\xc2\xd7\x9a\xd4\xd7\x31\x49\x62\x7b\x1e\x5d\x28\x3e\x2e\x41\xb7\xe6\x6d\x15\x92\x96\x4c\x6e\x99\x98\xe9\x4d\x5a\xbd\xda\xc3\x19\x6d\x09\x92\x96\xfd\x2c\xc9\x7a\x6b\xad\x00\xa0\xc5\x8e\x17\x1b\x10\x59\xe9\xa5\x1b\xb8\xae\x52\xd8\x7b\x80\xc5\xa2\xdb\x46\x58\x2b\x97\x55\x4b\x6e\xc9\xc4\x2e\x71\xe5\x1a\xb5\x12\x00\x27\xbb\x4f\x61\x43\x7a\xee\x2d\xcf\xbe\xbf\xa5\xc1\x1e\x53\x13\x8a\x5c\x07\x5e\x20\x40\xeb\xc0\xd9\x1c\x14\x31\xa0\x3a\x61\x58\xc7\x8f\xd7\x9f\x54\xe3\x80\xb2\x2e\xce\xea\xd4\x6f\xee\x10\xf7\xef\x90\xfe\xf0\x63\x5f\x6c\x0d\xf3\xac\xb4\x85\x2c\x27\xb1\x4e\xa3\xdf\x26\xe0\x19\xe1\x5c\x64\x2b\x36\x4f\x0c\xa6\xd4\xe3\x46\xfa\xf3\xf3\xf2\x58\x5d\xdb\x61\x56\x94\x55\x2e\xba\x84\xc0\x99\x5d\x51\x0b\xf5\x82\x12\xf4\x7b\x7d\xf4\x77\x1b\x26\x30\xe9\x8a\xcb\xb3\x14\xcd\x3d\x11\x23\x65\x9d\x18\xe5\x3d\x77\x54\x23\x5e\x86\xc3\xac\x10\x53\x6a\x84\xa4\x5b\x0a\xe2\x7d\x4b\x49\x9f\x9b\x7c\xd1\x95\xb9\xe9\x59\x5a\xb7\x22\xe6\xd9\xf2\x6e\xc4\xcc\x50\x06\x12\xe4\xae\x76\x4e\x63\x9b\x6b\x7e\x89\x12\xdb\x38\x11\x3d\xad\x83\x28\x99\xbe\x90\xa6\x5c\x90\xd7\xd7\x4a\x3c\x17\x1a\x0c\x0e\x17\xea\x82\xc7\xa5\x41\x45\x00\xe9\xea\x09\xd5\x2c\x3e\x31\x36\xd0\xcc\x45\xea\x5c\x68\x02\xb4\x8c\xf8\xc9\xd8\x81\x3b\x30\xe0\x40\xe9\x2e\x96\x34\xae\x54\x66\x56\x0e\xb2\x62\xd8\xb7\xb9\x8b\x5b\x8a\x4f\x15\x85\x5e\xf7\x24\x13\x77\xee\x10\x54\x60\xdd\x40\xe9\x29\xdd\x52\x16\x0a\xba\x63\xd2\x75\xdd\x87\x82\x28\xc3\x59\x5c\x65\x74\x23\x4e\xea\xaa\xea\xa8\xaa\xbc\xef\x8c\x94\xef\xfb\x6e\x4c\x95\x01\x0c\xfa\xaa\xd6\x19\xbb\x4f\x1f\x89\x43\xbc\xd5\xd9\xad\x9a\x0f\x3b\xe9\xf6\x49\x99\x4b\x9f\x82\x9a\xe0\xed\x28\xf4\xc4\x2f\x51\xa6\xe1\x93\xfd\xbd\x7b\xb9\xe5\x71\x3b\x9a\x70\x03\x47\x34\xfc\xb1\xd7\xb6\xeb\x9b\xe1\xd0\xa6\x33\x41\x02\x92\x25\x18\x44\x94\x60\xdc\x5e\xdb\xaf\x4d\x08\x4f\xc8\x76\x68\x42\x08\x2f\xe5\x96\x88\xbe\xcc\x31\x6b\x72\x05\x7e\xcc\x37\xc5\x0a\x9b\xaf\xd8\xee\x8c\xba\x56\xdf\xd1\xaa\x49\x1b\xba\x18\x62\x48\x17\x40\x03\x08\xeb\xe2\x52\xaf\x32\x93\xbc\x72\x85\xe5\xa6\xb5\x38\x29\x87\x9c\xe0\x93\x28\xb8\xf3\x7d\xa2\x4b\xfb\x2b\xa3\x90\xb2\xbc\x52\x15\xe5\xe3\xa1\x13\x7d\x29\x52\x8a\x9b\x77\x46\xc1\xd8\x89\x07\x5c\x38\xfa\xae\x6a\x74\xe0\xb6\x8e\x9a\x8c\x32\x5c\x1d\xc3\xe9\x8f\xb4\xfb\x2e\xbe\x00\xd2\x75\x58\xe3\xa1\x93\x72\x79\x5c\x69\xf7\xc0\xdc\x21\xbe\x7d\x4c\xa1\x40\x73\xf1\xa4\xe2\xd7\x7c\x9f\x12\x0b\x94\x39\x97\x22\xb5\x74\x2e\x2a\x92\x5b\x1d\x0d\xeb\x63\x0f\xb4\x78\xc1\x16\xd2\xd7\x46\x4a\xfb\x6d\x25\xe7\xc8\x1d\x6d\xfe\x87\x48\x6f\xe0\x57\x0d\x05\x2b\xa4\xb1\x0f\x22\x85\x5c\x78\xa0\xee\xc4\xc0\x1e\x76\x71\xd6\xd2\xda\xdb\xf4\x97\x8a\xa6\xc6\xfb\xeb\x4b\xf3\x7b\x5b\xa1\xb3\xc0\x64\x1f\x71\xe0\x0c\x95\x6a\x5c\x0d\xa7\x42\x4b\x0d\x24\xbb\x31\x28\xbe\x80\x84\xb7\xae\x4a\x01\x26\xf7\x6d\x5c\x32\x3e\x15\x9b\x94\x35\xc3\xf9\x49\x93\xfa\xc1\x92\xcb\x8b\x72\xa7\xdf\x3f\xff\xac\x4d\xa7\x17\x75\x6f\xfe\xf1\x53\xeb\x34\xae\xc5\x79\x7a\x07\x37\xd9\xd7\x37\x0b\xb3\x1e\xd8\x4e\x77\x03\x7d\xbb\x1b\xda\xd5\xe2\xba\x0a\xed\xa4\xdd\x9b\xa7\xb6\x3b\xdd\xd2\x6a\xb0\xde\x15\xfb\x98\x62\x18\x3d\x4a\xbd\x73\x6c\x90\xed\xeb\x7a\x16\x9d\x75\xed\x43\xa1\x77\xc3\x00\x3e\xbc\xc1\xa9\xf1\x56\x13\xf6\x87\x9a\x5d\x88\x61\xc6\x09\xe5\xc7\xfc\xa3\x48\x29\x2f\xbf\x87\xda\x05\xbb\x6f\x5b\x67\x6b\x40\x3d\x30\x77\xa8\x5d\x94\x36\xb7\x19\x45\x6c\xed\x0d\xcd\x8f\x27\x65\x01\x5e\x38\xd8\x2e\x86\x36\x76\x26\x29\x91\xe8\xa1\x73\x0d\xc4\x2f\x3f\x9e\x98\x62\x2d\xcc\x8a\xd3\x1d\xf7\x13\x30\x21\xe7\x69\x1b\x3f\xf1\x06\x47\x45\x15\xc7\xd6\x76\xfd\xd9\xc4\x22\x1d\xca\xee\x64\x43\x9d\xc5\x2b\xb6\xef\xe2\xc4\x16\x64\x2d\xc2\x01\x3e\x52\xca\x32\xff\x1b\xf0\x57\xfc\x84\x6e\x0f\x32\xce\x3f\x8e\x5a\x5f\xf8\x6d\xef\xdf\xd9\x08\x7b\xeb\x5b\x97\xb7\xd4\x52\x00\xb0\x45\xbe\x8f\xf2\x90\x1a\x98\x94\x18\x0a\xc2\x13\xf5\xce\x88\x01\x81\x70\x54\x59\xdd\xda\xb4\x9b\xe5\x85\xdd\xd2\xcc\x3d\xaa\x64\x80\x8e\x8e\xe1\x15\x06\xe6\x70\x4b\x91\xb2\x2e\xa9\x66\xdf\xa5\x89\xea\x7f\xef\x5c\xbb\x97\x25\x80\x45\x22\x7e\x5d\xa3\xbf\xe7\xc7\x8d\x24\xa6\x15\x57\x38\x7f\x73\x3c\xae\x2f\xe8\x94\xbc\xaf\x1a\x95\x71\x3f\x77\x45\x49\x58\x0b\xcf\x88\xe5\x23\x95\x9f\x28\x13\x8d\x62\x98\x91\x9b\x47\xfd\xcb\x44\x8d\x53\x29\x73\x4e\xcc\xb0\x17\x66\xdb\xfd\x2c\xb5\x05\xac\x32\x24\x13\xa0\x3d\xeb\x85\x08\x3c\xf8\xfa\x46\x83\x30\x61\x3b\x5b\x5a\xb2\xb9\xed\xce\xd4\x21\xdf\x2b\xb4\x07\xd5\xdf\xab\x4a\x70\x9d\x79\x62\xd8\xd9\x97\xf5\x62\xfc\xd3\x26\x25\x47\x93\x24\x58\xf2\xdc\xb3\x57\x5d\xaa\xb3\x8a\x08\x9e\x2d\x16\x71\x95\xdb\x99\xfa\x94\xc7\x31\x83\xea\x8f\x4d\x85\x71\x59\x45\x6d\x84\x7e\x99\x10\x3b\x43\x8e\xb0\xe1\x21\x3b\xe9\x92\x5b\x6c\x4d\xe0\x78\x05\xe0\x2b\xc5\x9a\x35\xf5\x3e\x4e\x1f\x1a\x6f\x6f\xb7\xbc\x7d\xc4\x26\xe5\x19\xde\xc9\x7d\xef\xdc\xe6\xa5\x51\x90\xa3\x78\x18\x30\xdf\x31\x54\x1b\x8a\xfd\x1d\xd4\xbd\x10\xea\x75\xc3\xd5\xfe\xdc\xdc\xbe\xe7\xf7\x1d\x3a\x48\x57\x5b\xec\x33\xe9\xcd\xb4\x5c\x94\x0f\xb0\xbe\x1e\xfe\x17\xf8\x10\x60\x63\x2e\x7b\xe7\x4a\x97\xe7\x86\x14\xfe\xd9\xa0\xc4\x5b\xd5\x06\xad\xc4\xaf\x29\x0e\xe2\xe9\x26\xb4\xee\xaa\x4d\xe2\x6c\x80\x6e\x81\x77\xa2\xdb\x3a\x36\x16\x5c\x5e\x58\xd5\xa6\x2a\xca\xdc\x24\xce\x4c\x85\x6f\xfc\x40\x43\x5b\xef\x20\x71\x90\x8e\xed\x44\x2c\xad\xe3\x05\x51\xbf\x5a\x4a\x4e\xf0\x75\xe5\x50\xf9\xba\x62\x84\xe4\x26\xa8\x17\xe2\xee\x6f\x72\x78\x47\x95\x79\x44\x01\x04\x76\x77\x60\x6c\xd7\xb0\x22\x73\x6b\xb0\xcf\xd5\x0f\xf5\x4f\xa2\xdd\xa1\x1f\x60\xf7\x04\x00\xf1\xbf\x19\xf9\xd4\xea\xf4\x13\xeb\x2a\xac\xdc\x53\xe2\x30\x1f\x8d\xc2\xfc\x7b\x3b\x08\xd0\xa8\xd3\xee\x52\x04\xc5\x0a\x3b\xa1\xe8\xe5\x1b\x4f\x90\x83\xb8\x08\xb0\xb5\x7e\x6b\xce\x4b\xcb\x2a\x8d\xfd\x19\xf6\x2c\x44\x56\x7d\x07\x94\x42\xf9\x5a\x4a\x03\x7c\x7a\xc2\x44\xab\x8e\x52\xa9\x3d\x8c\xb9\x3c\x9c\x40\xff\x4e\x67\x5c\x3c\x49\x26\xb8\x1f\xfd\xc2\x7a\x18\x4f\x90\x05\xd6\x30\x77\xac\xa8\xee\x71\xc0\xde\x55\xea\xe7\xb8\xc9\x28\x58\x3f\x50\x39\xd3\xc0\x0d\x59\xbd\xd6\x33\x31\x7d\x53\xeb\x62\xd3\x0c\xcb\xa6\x71\x56\xd5\xa5\x5e\x6b\x6c\x96\xfe\xe2\xac\x3c\x8e\xc2\xd7\x4a\xdc\x57\x2a\xd7\x35\x94\xda\xf8\x8b\xfe\x53\x25\xfa\xff\xd3\xa0\x3f\xd6\xcf\x86\x43\x2f\xc2\xc9\x32\x63\xb8\x58\xa2\x39\xb6\xf5\x94\x5e\x98\x5d\x68\xf7\xb3\xaa\xb0\xab\x59\xbe\xdc\x52\x6e\x39\xc7\x94\x23\xd2\xb1\xa8\x01\xdd\x35\x3f\x7f\xe0\x6f\x29\xb5\xe4\x52\x01\xbd\xaf\x6a\x6f\xa8\x4d\xba\x18\x78\x3c\x03\x68\x8b\x00\x49\xe8\x76\xe3\x20\xbe\x33\x6a\x3d\xfb\xec\xe6\x11\x74\xab\x05\x7d\xd5\xfa\xd2\x17\xf9\xf1\x59\x5e\xf3\xac\x0f\x4e\xd8\x0f\xe4\x83\xec\x19\x8a\x0e\xfd\x6b\xb4\x9a\x40\x79\xde\xc0\x92\x41\x02\xbd\x1d\x84\x56\xc4\xad\x2b\x14\x8e\x91\x16\x5e\xa2\x70\x27\x96\x6e\x75\x6c\xc2\x86\xbe\x3c\x52\x9c\xd1\x37\x91\x97\x8b\x3e\x64\xbd\x7a\xb1\x2c\x6f\xa9\x70\x7d\x23\x52\x60\xf0\xcb\x51\x68\xb0\x30\x5f\x0f\x01\xf4\x1b\x1e\xc9\x50\x9a\xc3\x33\x98\x91\x8a\x69\xbe\x6e\x38\xe1\x20\x40\x63\xf7\x84\xda\xe2\xbb\x3a\x4a\xf5\x99\x38\x25\x22\x3d\x4c\xb8\x46\x2c\x5d\xae\x3f\x68\x8d\xa0\x11\xf0\x2d\xfa\x69\xd8\x97\x3f\x19\x4b\x18\xe2\xbe\x9d\x0a\x16\xa2\xc7\x70\x03\x04\xab\x5e\xdf\xb9\x4f\x0b\x63\x24\x84\x69\x52\xef\x75\xc3\x81\x16\x7b\x58\xa2\xee\xd6\x5c\xfd\xf3\xed\xb2\x6f\xd2\xe5\xa2\xe7\x56\x7c\xd2\x26\x95\x8c\x1a\xfc\x5e\x9c\x10\x06\xdf\xbb\xb7\xdd\x75\x75\xee\xb1\x62\x53\x5b\x14\x63\x9d\xcd\x31\x33\x78\xfd\xdb\xcc\xc0\x3e\x49\xbf\x07\x19\xf7\x2e\x0e\x29\x68\xc3\x6e\x87\x33\x35\xf6\x10\xea\x5e\x56\xe2\x05\x4e\xd3\x2b\xc7\xef\x9d\x0b\x98\x8b\x7a\xa9\x01\xf1\x78\x05\xcb\x4b\x6c\x9e\xe8\x12\xb0\xdc\x54\x14\xc4\xd9\x5e\xa7\xc2\x4d\x32\xc7\x30\x11\xe0\x35\x81\x57\xdf\xc7\xf2\xf2\xc2\x03\xfb\xa4\xb9\x39\x85\x70\x2a\x63\x07\xda\x3b\x48\x11\xb7\xad\x2b\xec\xce\x6d\x8f\x92\xca\xed\xd0\xb8\xee\x43\xaa\x59\xc6\x65\x3f\x2e\xc0\x71\x45\xd2\x7e\x63\xbc\x3f\x5d\xaf\x36\x0d\x70\x41\x74\x3e\xa3\xc4\x71\x6f\x8c\x14\xf3\xe1\xf6\x44\x35\xf5\xf9\xf6\x8a\xeb\xda\x8c\xdb\x76\x62\x16\xdf\xf2\x4a\x29\xe7\xb4\x72\x59\xdf\x0e\x6c\x4b\x39\x7b\x41\x3f\x97\x1f\x8f\xf5\x88\x32\x9b\xb6\xb4\xa1\xca\x39\x2d\x86\x72\x6e\x02\xc6\xb0\x77\xae\x9d\xe5\xae\xe7\x52\x36\x4e\x10\x15\x96\x90\x7f\x6e\x34\xb9\xf5\xc4\x36\x37\x03\x2f\xf1\x28\xfa\xa1\x21\xf2\x9f\x19\xb3\x17\xea\xda\x25\x97\xba\x92\xf1\xdb\xcf\x8b\x0c\x7c\x14\x48\x6d\x7f\x3d\x86\x82\x34\x83\xa5\x2c\xc7\xb0\x5e\xdc\x80\x55\x4e\x13\x14\x5d\xb2\x38\xae\x72\x92\x3a\x14\x1e\x9f\x6a\x8f\xdc\x19\x13\x02\xf3\x0e\x7b\x3b\xc2\xcd\x2f\x48\x8b\x9d\x02\x00\x1b\x0c\xd0\x4b\x30\xb0\xbe\x1a\x29\x71\xe7\x4d\x6f\x1e\x91\x53\xfe\xec\x5b\x64\x7b\x3a\x1a\xef\x41\xdb\x00\xed\x82\x1d\xeb\x7b\xb4\xff\x72\x96\xee\x50\x74\x2f\x96\x2e\xc5\x1a\xdb\xde\x09\x25\x2e\xdb\x24\x21\x05\x00\xee\x80\x1f\xa3\xc9\xc6\x2f\x6f\x72\xd1\x5a\x71\x45\xc5\xf7\x50\x5b\x7b\x35\xf9\xef\xbc\x62\x57\x28\x1c\x88\x2e\x19\xfd\x50\x11\x2c\x9b\x8c\x5a\x07\x98\x65\xc4\xcb\x6a\xcc\x5e\x8c\x9f\x4c\xbc\x6a\xee\x50\xdb\x24\x75\xf9\xcb\xb1\x0e\xed\x90\xbf\x88\x42\x9f\xe4\x2f\x54\xc3\xe3\x37\x66\xf7\x31\x64\x07\x79\x2e\xe2\x37\x0a\x09\x76\x7e\x14\x87\x7f\x81\xc2\x2c\x55\xb9\xcb\xaa\x82\x9b\x6a\x82\x0e\x50\xfe\x67\xe7\xb5\x54\x72\x35\x18\xd8\x7c\xb7\x92\x3c\x98\x5a\xa7\x3f\xf5\x68\xf6\x20\x8a\x7a\x41\x1b\xe8\xe9\x0e\xe8\x11\x25\x03\xbb\xa7\xa3\x42\xcb\xd9\xd1\x04\xaa\x9a\x1f\x2b\x30\xd3\x06\x05\x0c\x1c\xdd\x1f\xa9\x51\x76\xfd\x9f\x62\x87\x32\x9f\x38\x83\x03\x45\x30\x71\x41\xb2\x01\x9c\x5c\x19\x80\x28\xc4\xc8\x8d\x91\x62\x74\x4d\xd6\x6d\x2f\xce\x3e\xdf\x5e\xb5\x66\x59\x38\xc1\xe8\x61\x62\xec\x20\x82\x98\x61\xf4\xab\xed\xa6\x4c\x32\xc8\x8a\x92\x9c\x09\x11\xdb\x79\x79\xe2\x1d\x78\xdc\x81\xeb\x09\x64\x85\xf4\x17\xe9\xcb\xf1\x5f\xe1\xe7\xe0\xd0\x00\x71\x1a\xd2\x29\xd2\x9e\x7a\x4f\x39\x2c\xcc\xac\x87\xb6\x32\xdb\xd0\x7a\x94\xd9\x82\x88\x47\x60\xbf\x20\xc4\x72\x75\x85\xdd\xff\xba\x66\x5f\x9b\xdc\xc0\xa6\x3f\xf4\xf6\xaf\xd2\xc5\xe4\xc7\x6a\xf2\xb5\x58\xad\x91\xc4\xb3\x1c\x67\x30\xd5\x44\x44\xb8\x16\xa9\xec\xe1\x67\xb8\xea\xa2\x7b\x80\x15\xcb\xff\x34\x91\xb4\x86\x26\x9b\x10\x3a\x44\xd3\x9e\xde\x91\x9f\x8c\x89\xb8\x64\xc3\x62\x67\x50\x3a\xb8\xce\x1f\x20\xe3\x9e\xfa\x57\x8b\x26\x89\x62\x39\xf2\x18\x50\x77\xa6\xb1\x95\x99\x13\x8a\x97\x1f\x6f\x40\xb4\x2f\xb4\x57\x4c\xe2\x10\x66\x99\x97\xab\xa4\x73\xdf\xf7\x51\x96\xbc\xcf\x5a\xa1\x74\xe3\xd6\x19\x3f\xf1\x72\x47\xc3\x3c\x3b\xbc\x36\x1d\x1a\xb5\xac\x7c\xc2\xa2\x3b\x23\xbe\xf3\x2d\xaf\xd2\xf9\x61\x13\xc8\xbe\x30\x89\xe1\x29\x27\x87\x02\x0a\x19\x12\x16\x1e\xd7\xa0\xb2\x9e\x61\x5f\x15\xcc\xa7\x6f\x60\xe3\xf2\x13\x25\x74\x53\x5a\x93\xf3\x2d\xf0\x2a\xb8\x41\xbf\x72\x8c\x5e\x68\xf3\xe2\xef\x04\xdb\xf8\xe9\x75\x5a\xbb\xb8\xb4\x9c\xad\xa2\xce\x7f\x80\xe6\x1f\x66\x2f\xc7\x28\x23\x16\x76\xbd\xd2\xb1\xfe\x1b\x84\x79\x50\x53\x6f\x29\x25\xf3\xbf\x8a\x14\xb3\x01\xba\x13\x88\x0c\x47\x09\x0c\xc0\xaa\x24\x9a\x11\xf6\xcf\x68\xed\x22\xf8\x7c\xc2\x0b\x43\x28\xf4\x74\xff\xd1\x1e\x7e\xbc\xd3\x7a\x49\x36\x16\xf7\x56\x99\x87\x42\x59\x19\xd3\x08\x23\x85\x81\x78\x40\xb7\x1c\xe9\xeb\x9b\x80\x7d\xa0\x62\xbd\xa1\x50\x13\x8f\xad\xd7\xa9\xdb\xe6\x23\xd4\xb1\xe0\x06\xfb\x88\x68\x91\xa2\xab\x45\x79\x1e\x22\xdd\xb6\x4e\x5d\x52\xa0\xc6\x39\xa2\xc6\x0b\xbf\x1b\x6d\xa5\xef\xfe\x7a\x7b\x2d\xab\xf2\x16\x72\x7a\x4f\x42\xd8\x3b\xe7\x49\x08\x5b\x5f\x70\x60\xe1\x40\x3b\xcd\x80\xf0\x95\x4b\xdc\xf2\x60\x1d\x20\xf7\x05\xb6\xf5\x69\xfb\x71\x40\x00\xf4\xb9\x43\xfe\xf2\x85\xb1\x32\xb7\xee\x71\x95\x6e\x05\x51\x9c\x3a\x69\xf7\xc9\x37\x9a\x2f\x40\x39\xf1\x63\xa5\x52\x57\x94\x55\xd7\xd9\x82\xc6\x48\xc8\x84\x58\x97\x0f\x3b\xb7\xd5\x51\xee\x01\x27\x23\x85\xff\xc2\xf7\xc0\xf2\xb8\xa3\xe0\x68\x4b\x26\x7f\xb2\x7e\x33\xc4\xbe\x6d\xe0\xe7\x23\x40\x7c\x82\xb5\xe6\xf1\x5e\x9e\x68\x75\x57\xeb\x7a\xff\x88\xde\x98\x6d\x5b\x91\xa8\xf3\xcb\x11\x99\xf9\x25\xe8\xe4\x2a\x3f\xdf\x2f\xfb\x4c\x2e\x64\xb7\x3c\xfb\x14\x59\x41\x8d\x45\xc3\x92\x44\x86\x75\x93\x56\x31\x7e\xcb\x4f\x95\xf0\xf2\x35\xba\x59\x02\x01\x55\x3a\x26\xdb\x3b\x61\x4c\x62\x96\x96\x6c\x5c\x52\x1c\x1c\xb3\x67\x65\xff\x33\x95\xd4\x5c\xc6\xf5\x93\xb1\x50\x80\x76\x02\x58\x2f\xba\x07\xf5\x67\xf2\x63\xd5\x25\x1a\xac\x15\x36\x59\x9a\x51\x7d\x49\xa4\xf4\xc2\x41\x57\xe2\x02\x00\x40\x21\x21\xb8\x16\x29\xee\xc2\xe8\x69\x35\xad\x5f\xb1\x69\x99\xe5\x0e\xa0\x85\x39\x3f\xbe\x9d\x0a\xb6\x97\x17\x3c\xfe\x63\xe8\x62\x53\x14\x90\xd1\xc5\x5a\x60\xd5\x65\x7e\x32\xa9\x2c\x7e\x80\xf4\xea\xaa\x54\xac\x64\x3c\x41\x2e\xf0\x0a\xcf\x69\x71\x48\x9b\x16\xb6\xa5\xac\xf7\x00\x5c\x12\x9d\xaf\x67\x74\xfa\xb1\x5c\x80\x40\x05\x41\x51\x36\xa6\xa3\xa8\x2b\x26\x75\x92\xfb\xca\x41\x79\x20\x88\xf6\x07\xf2\xcf\x45\xd5\x60\xd9\xc4\xd9\x8d\x83\xf2\xe1\x4e\x20\x89\xdf\x6c\x50\xdd\x27\xff\xe6\xbc\x3e\x64\xf8\xb7\x89\x94\x9d\x0a\x7f\x97\x27\x28\x11\xf3\xf3\xc1\x97\xbb\x35\x76\x15\xea\x5f\x21\x97\x27\x20\x96\x12\x93\x76\x8b\xc4\x75\x2d\x8e\x0c\xaf\x10\xe0\xf1\x56\xc7\x46\x0a\x41\x53\x95\x25\x63\x6e\x71\xeb\xee\x2a\x13\x91\xbb\x0d\xe0\xff\x2f\xb7\x07\xa6\x6b\xb5\x8a\x3d\xe4\x12\xb0\x05\x6f\x8e\x94\xe1\xf6\xef\x35\x0e\x09\xe2\xdc\x85\xc6\x80\x8c\x33\xe9\x55\xfc\x44\xcd\xfd\x16\x5d\xef\x09\xfa\x27\x2e\x54\x10\x89\x11\x8b\x3e\x40\x05\x84\xa0\x7f\x49\x6f\xea\x3f\x18\x05\xbc\xe4\x05\xa5\xb9\x07\xbe\x83\x67\x90\x06\xe2\xfb\x2d\x9c\xa7\x1e\x99\x1d\xee\x28\xd4\x10\x70\xac\xdd\x41\xd1\xc3\x9f\x8e\xc0\x83\x7f\xf9\xa1\x06\x52\x5e\xa0\x2b\x2d\x1c\x64\xd5\x60\x63\x64\x32\xba\x78\x9f\x44\x4f\x4d\xb6\xcd\x3e\xff\x64\xc8\x06\x6e\x13\x1b\x7e\xcc\x97\xca\xcb\xa6\xef\x53\x02\x44\xf5\x77\x45\x2c\x92\xae\x28\xe2\x27\x3c\x12\x70\xa0\x7f\x0d\x7d\x30\x76\x03\xc2\x46\x05\xb7\xfd\x6b\x74\x08\x61\xb2\xb7\xce\x5c\x7a\xa6\xec\x44\x5a\x17\x47\x0f\x84\xc1\xb6\x44\x31\x0b\xdf\x6b\x54\x9e\x8f\xaf\xd7\x1b\xcf\xab\x16\x07\xcb\xa9\x47\xd7\x15\x34\x6c\x67\x43\x4f\xf6\x40\x7b\x60\xf2\x65\xd5\xef\xfc\xba\xbe\x54\x5f\x57\x8a\xc0\x03\x5b\x14\xce\xd8\xb4\x35\xe6\xf5\xa4\xf4\xfb\x26\x0e\xd2\xfd\xfb\xdb\xd5\xca\xa2\xe2\x05\x11\x6c\x66\x93\x8b\x3a\xfc\xa4\x0f\x26\x66\x12\x2f\xbf\xdc\x1e\x16\x6b\xb1\xd7\x56\x16\x4c\x42\x4b\x59\x60\x7d\xda\xb1\xbb\xfa\xdc\x2b\xcf\x4d\xb5\x3e\xc5\xda\x4b\xeb\xa7\xf8\x0a\x8f\xf8\xa3\x85\xeb\xda\x69\x4d\x40\x57\x9c\xa9\xd7\xb0\x00\x24\x29\x0a\x9d\x9a\xbb\x1e\xd4\x61\x8b\xd8\x0c\xd1\x33\x16\x3f\xc1\xe0\x34\x7a\xd6\x8f\x78\x8a\xaa\xd7\xb3\x45\xb9\x43\xc1\x2e\x6e\x63\x5d\x23\x20\xef\x82\xd4\x1f\x6a\xd0\x5f\x00\x96\x01\xfb\xe2\x1e\xbd\x9f\xe8\x4a\x87\x09\xe6\x7b\xaa\x79\x43\x5a\x38\x34\x33\x91\x86\x0a\x6d\x4b\x2f\x90\xe5\x25\xb6\x6f\x6b\xc8\xbd\x1d\x66\x79\x59\x3c\x1a\x30\xfc\xeb\x91\x82\x44\x5e\x52\x36\x95\xf7\x95\x2b\xfe\x19\xcd\x85\xbe\x89\x15\x8e\xfd\xbf\x9d\x24\x2a\x05\x26\xd9\xf2\x9a\xb6\x67\x70\xd8\x8b\x88\x18\xed\x79\x91\xc4\xad\x03\xcb\x26\xab\x26\x01\x38\xb5\xa3\xa3\xf7\x59\x33\xc5\xdc\x0c\xbd\x0f\x2e\x6e\xf6\x7d\x25\xd4\x7b\x57\x41\x2a\x46\x4d\x04\xb2\xc2\x26\x36\x2e\x5b\x3a\x9f\x78\x43\x1b\x28\xbd\xd1\xe0\xcc\x7a\xa0\x6d\xd2\xc3\x8e\x81\xeb\x07\x3c\xf6\xb2\xe5\x75\xbd\x2e\x2a\x62\xe5\xaa\x2b\x4b\x86\xea\x7a\xf1\x8b\xfa\x9a\x09\x33\x4c\xd9\xd9\x96\x59\x62\x53\x9a\xdf\xe3\x6d\x6e\x46\xea\xfd\x6f\x2a\xfc\xbd\x3d\x3c\xb4\x79\x59\x80\x35\x02\x2c\xdf\x3a\xa7\x44\xa8\x4d\xef\x61\xeb\x63\xe1\xdd\x41\x98\xc4\x62\xfd\x44\x29\x09\x35\x93\x88\xe3\x6c\x30\x70\x25\x06\xda\x7e\xc2\xf0\x96\x1e\xa9\xbe\xa5\x7a\x29\xa9\xb3\x3b\xf4\xc5\xbb\xa0\x50\xb0\xff\x3b\x05\x36\x8f\x1e\xf3\x28\x28\xd6\x27\x90\xc2\x96\x7e\x05\xba\xd8\x7b\x3a\xe1\x54\xcc\xb3\xee\xc0\xa4\x53\xaa\xcd\x7f\x43\xe1\x19\xb8\xdc\xc4\x1b\x1e\x9d\xb8\xb3\x0b\xb3\xed\xdc\xc6\x26\x49\xb4\xdf\xd9\x9f\x63\x07\x4b\x59\xf2\x98\xa7\xc9\xf6\x6c\xd9\xb7\xf9\x63\x08\xbd\x08\xa4\xc7\x28\xa9\xc4\x16\xdc\xd9\x19\xcb\x7c\xe9\x4d\xd0\x28\x38\x4b\xf1\x01\xe1\xf6\x92\xd6\x77\xb9\x38\x36\xb6\xd0\x62\x62\x23\x4f\xd9\xfb\x2f\xfe\x7d\xfc\x06\xf4\xe2\xef\x69\x80\xc7\x11\xa5\x76\xf7\xd8\x3a\x6d\x2b\x0c\x34\x4e\x93\x8a\x0a\x2e\xd6\x69\x32\xea\xc5\x17\xf9\x6f\xb4\x58\xba\x89\xab\x6a\x30\xad\x8c\x12\xce\x69\x48\x12\xeb\xae\x62\xcf\x22\xd3\xe0\xc7\x0a\x0f\x6b\x07\xc3\x72\x6d\x1a\x17\x44\x66\x9e\x2d\x2f\xfe\x07\xc2\xbb\x48\x3e\xd3\xf7\x96\x21\xe9\xe3\x61\xd4\x95\x97\x4b\x26\x49\xa6\x94\xec\xea\x25\x25\x76\x79\x4f\x21\x1f\x4e\x37\xcc\xa3\x0f\xb6\x17\x5d\x62\xd2\x57\xb1\xc7\xfc\xf0\x22\x5c\xb0\xd3\x0a\x22\xe8\xd2\xe5\x3d\x74\xf5\xd1\x12\x3a\x42\xb7\x45\xaa\x78\xe5\x7f\x08\x0d\x20\x0a\xfd\x57\x1e\x5f\xaf\x57\x27\x9a\xdf\xa7\x94\x33\xf0\x6d\x02\x93\x48\x37\x30\x20\x4e\x37\x75\x03\xea\xe8\xc8\x2b\x74\x3c\xfa\x4c\x87\x82\x8f\x37\x9e\x08\x55\x16\x8b\x3f\x8a\x6f\x40\x98\x71\x5e\xfb\xdb\x1d\xd5\xf7\x2a\x0a\x9b\x96\xd3\x2a\x44\x6c\xeb\xa8\x26\x3d\xab\x97\xf9\xf4\xc9\xbb\x2e\x9d\x6e\x98\x23\x1f\x6c\x0f\x6d\x4e\x68\x75\x19\x5a\xa9\x5c\x70\x43\xb9\xa3\xec\xe9\x28\x76\xd8\xc6\xb8\x4c\xed\xd6\xa4\x79\xee\x50\xbb\xeb\x8a\x32\xb7\x05\x09\x51\x7b\xc4\xe4\x95\x48\xe9\xfe\x5e\x69\xcc\x99\xab\xc5\x81\x2b\x3d\x1c\x05\x87\x15\x6b\xe8\xf0\x93\x89\xad\x4b\xca\xee\xa5\x71\x68\x2e\x33\x95\x25\x0a\x13\xb6\xf3\x0a\x31\x4c\xf6\xb2\x26\x8d\x2d\x57\xf5\x62\x50\x41\x97\x5d\x1c\x2a\x02\x9e\x63\x35\xcb\xa9\x64\xfa\xd4\x10\xdb\x70\xc2\x98\x81\x25\x53\xb2\xe9\x30\x1c\xda\x41\x2d\x41\x16\x5c\xd2\x28\x8e\x6f\xd1\x3e\xdb\xbc\xd4\x70\x29\x0e\xb4\x4d\x5e\x12\xba\x09\x11\x09\x65\xe9\xb7\xb1\x38\xf9\x49\xd3\x08\xaf\xa8\xf2\x61\x52\xb1\x70\x91\x77\xe1\xf2\x72\x39\x9b\x4a\xe2\xf1\xa2\x87\x5d\xd5\xc5\xa1\x4b\x8c\xbf\xee\x68\x52\x00\xab\xcc\x8f\x27\xd6\xce\xaf\xd7\xe7\x4f\xbc\xac\x7a\x61\x3c\x92\x10\x61\xa8\x70\x19\x59\xa2\xb2\xa5\x4c\xea\x59\x17\x84\x9f\xf8\x91\x47\xea\xe2\xbe\xfc\x62\x05\x2f\x3c\xe8\xe1\x85\x3e\x25\x2a\x4d\xd1\xe7\xc5\xe5\xdb\x7e\x41\xc7\xf6\x94\xda\xeb\xcb\x36\x7d\x44\xd9\xf2\xf0\xfe\x46\xc7\xe0\xaa\x4a\x0e\x4f\xd2\xe9\xe3\xe9\x92\xbf\x29\x78\xd4\xe3\x5a\xe1\xe2\x5b\xb4\x9f\x3c\x39\xda\x37\x6c\x19\x9c\x8a\x1e\x3d\xb0\xa1\x4c\xf5\x51\x72\x88\x4f\xa8\xf1\xc9\x7f\xfa\xb9\xce\x23\xbe\x6e\x7d\xf5\x55\xf4\x14\xe5\x28\x51\xb2\xbe\xc7\x9a\xe1\x26\x24\x9f\x40\xeb\x52\x4b\x70\x8a\xc5\xcc\xa7\x49\xbd\xc6\xb6\xac\x98\x26\x29\x4d\xd0\xfa\x37\xf3\x63\x15\xce\x97\xb3\xdc\x1a\xea\x12\xe1\xe8\x38\xcf\x1c\x12\x6f\x42\xee\xf7\xf4\xf4\x7a\xf0\x72\xff\x58\x73\xd8\x1f\xea\x3c\xbd\xe5\x5b\xfc\x72\xdb\xc4\x65\x4b\xb9\x72\x9d\x57\x66\x62\xda\x14\xb8\x30\x79\x4b\x89\x35\xa3\xe9\x26\x60\x64\xd5\x38\x5d\x75\xb1\x05\x57\x81\xc7\xa1\x91\xb2\xc8\x3c\x1e\x56\xb7\xeb\x65\x39\x0d\x63\xa6\x82\x67\xd2\x06\xdd\x48\xfc\x86\x7b\xca\xd4\xea\xac\xca\x55\x92\x38\x03\xf5\xde\x4b\x6f\x78\x99\x53\x88\x81\xf9\x84\x39\x74\x32\x3f\x50\xaf\x7f\x21\xb5\x0f\x29\xe0\xc8\x28\x8c\xe5\x2f\x6a\xb9\x7c\xce\x68\xf0\x21\xbb\xd6\x43\x3e\x74\x9f\x7e\x38\x4e\xaf\x9d\x1d\xa5\xf1\x0e\x53\x69\x91\x37\xda\x9a\x94\xbd\xfc\x72\x3b\xb7\x2b\xae\xfc\x7f\x18\x7b\xf3\x18\x49\xb2\xf4\x3e\xac\x3b\xab\xfa\x9a\xee\xde\xb9\x76\xb9\xb4\x24\x5a\x29\x99\x06\x49\x69\x34\x34\x65\x59\xb2\x16\x30\x22\x5d\x5d\xcb\xdd\x6e\xed\xd4\x16\x6a\x9a\x3d\xf2\x40\x06\xfa\x65\xe6\xab\xcc\x98\x8a\x8c\xc8\x8d\xa3\xaa\x6b\xe0\x3f\x08\x41\x10\x08\x83\x96\x6d\xd0\x86\x65\x19\x12\x0c\x99\xb6\x48\x53\x82\xb8\x22\x2d\xee\x92\xd4\x66\xcd\x72\xb9\xab\x25\xb9\xc7\x6c\xcf\xec\xdc\x33\x7d\x1f\x55\x7d\x5f\xd3\x67\xb5\x11\xdf\xef\xfb\xde\xfb\xa2\x22\xc6\xf0\x1f\x03\x44\x4c\x57\x66\xc6\xf1\xde\x77\xfe\xbe\xdf\xcf\x44\xe1\xab\xbc\xa3\x37\x09\x64\x3c\xbf\x79\xcd\x15\x4b\x56\xc2\x38\xc3\xcd\x61\x61\x43\xcc\x0b\xcf\x66\xd7\x9a\x17\x54\xf8\x3e\x8f\xab\x0a\xcc\x5e\x37\x04\xc6\xb6\xa7\x06\x0d\x3f\xd2\xe8\xb1\x8f\x2a\x4d\xdf\x71\xd8\x9f\x56\xfc\x37\x1f\x4e\x14\xe8\xec\x43\x7a\xf8\x28\xd2\xfc\x11\x3d\x61\x3e\x76\x59\x52\xf6\xfc\xf8\x79\xf3\x7c\xab\xda\x6e\x50\xcd\x83\x46\x8a\xcf\x7c\x98\x02\x92\xd0\x72\x6a\x7d\x27\x50\x31\xe0\x93\x86\x21\xa6\x79\x9a\x9d\x64\x1b\xe8\xde\x6d\xf9\x28\xa4\xed\xac\x64\xd1\x46\xc9\x0e\xbf\xf2\x59\x1c\x0e\xf9\xf9\x37\x27\x8a\xcc\xed\x34\xee\x95\xe7\x3d\xe9\xfe\x04\x8d\xfe\x29\xd5\xe2\x09\xa3\x7c\x77\xb9\x3c\x5c\x85\x73\xce\x89\x35\x5e\x55\x12\xe4\xf7\xe9\x0b\x50\xc0\x78\x08\x6f\xea\xd6\xd0\x4b\xb3\x87\x39\x54\xbd\xa4\xea\x46\x1b\x8a\xb5\x5a\xab\x60\x2f\x86\x7d\x1b\x85\xb9\xe8\x2f\xc8\x08\x98\x0f\x23\x2f\x69\xbd\xbb\x6d\x1d\xdf\x12\x34\x99\x19\x86\xfc\x36\x98\xf9\x3d\x50\x89\xc5\x99\x8a\x16\x50\x14\x92\xb7\xad\xc8\x8f\x78\x20\x78\xbd\x9d\x7b\xf8\xcb\xed\xd4\xae\xa4\x21\x8b\xe4\x20\x76\x47\x3d\x88\x8f\x1b\x24\x54\xdb\x2b\xa9\xcd\xf2\xc8\xd5\xc0\x59\x9f\x6a\xcd\xd7\x2f\xb7\x75\x54\x6b\xc6\x64\x4b\x36\xcf\xa6\x14\x29\xcf\x09\x95\x28\xbc\x39\x51\x89\xc2\x7a\xcd\x94\x42\x86\x33\x4f\xad\x78\xcb\x59\xe1\x5b\x0c\x54\xd8\x75\xb1\x99\x81\x34\x49\x63\x99\x79\xc4\xae\xe6\x61\x79\x3e\xa9\x74\xc1\x0b\xe6\x41\x43\xd8\xc0\x91\x2c\x9f\x28\x3c\x31\x05\x5a\x61\xb7\xc8\x93\x74\xda\xc3\x5b\xdf\x9d\xf8\xf1\x3a\xc4\xa4\x48\x2d\x6e\x68\x12\xfc\xa9\x8e\x07\xb4\x0f\x4d\xda\x4d\x52\xb9\xb8\xa6\x2a\xab\x13\x0c\x37\x59\x19\x31\xba\xd9\x15\xbc\x4f\xd4\x9c\x3e\x05\x69\x53\x07\x20\x73\x8a\x4b\xdb\xd7\xe8\x69\x23\x06\x39\xd3\xa4\x95\x36\x4e\x93\x3c\xc9\x57\xc7\x96\xaa\x3e\x88\xbe\x41\x51\x82\x60\x85\x67\x49\x25\x60\xf0\x00\x47\xdb\xdb\xa3\x26\x9e\x18\xb8\x53\x01\x29\x32\xeb\x72\xb9\x88\x36\xcf\x28\xe6\xf4\x0f\x81\xf8\x81\xcd\x7b\x37\xf0\x57\xfb\x18\x1b\x98\xff\x01\x3f\x8c\x34\x6d\xaa\xa3\x36\x6d\xd2\x35\xe9\x94\x72\xa6\xdf\x46\x7f\x0a\xa5\xb8\x1b\x8a\x8b\xfc\xca\xa4\x3a\xb5\x45\x83\x73\x05\xc2\x4a\xe9\x2b\xd1\x3d\x48\x63\xc9\x8d\x04\x26\x63\xf3\xea\x74\x99\x58\xe2\x86\xc0\xaf\xc5\xda\xa3\x8a\x46\xf8\xb2\x2e\xcf\xff\x48\x59\xa9\x99\xbf\xf6\x0b\xad\x0a\x2f\x5d\xf9\x19\xb1\x31\x3e\x40\xeb\xa5\x45\x66\xfa\xc0\x8d\x21\x66\xfc\x50\x71\xaa\x72\xea\x0c\x7b\xe6\xe1\x29\x5d\x9b\xda\x45\xa6\xd2\x41\xf1\x04\x24\x01\x7c\xac\xb8\xa9\xc6\x61\x9e\x67\x79\x22\x08\x0d\x24\xc9\xe7\x02\x05\x9c\x38\xe7\x6e\xd9\x8e\x53\x7b\xac\x45\xcb\x48\xb0\xc7\x2a\x60\xbe\xd8\x44\x98\x3e\x4a\x96\x2d\xa1\x6c\x90\xc2\x9c\x46\x88\x2e\x32\x92\x7a\xf8\x5c\x41\x92\x4f\x37\x31\xa6\xf4\xd2\x70\x14\xc6\x26\xa2\x35\xc8\x8f\x3c\xf0\x76\xe8\xac\xa6\xcd\xfa\x61\x53\x7f\x98\x07\xad\x3d\x39\xca\x45\x35\x56\x77\x71\xe2\xe8\x25\x87\x49\x9e\x50\xff\x3f\xec\x4d\x29\xd6\x13\xdd\x84\x85\x43\x96\x0b\x6f\xa0\xf7\x34\x79\x0e\xe1\xf4\xf2\xf3\x22\x41\xed\xbb\x74\x57\x54\x37\x3a\x8c\x17\xa3\x64\x85\x79\x13\xdc\x2c\xb7\xf3\xdc\xb7\xeb\x39\xd5\x81\xf6\xa2\xe9\xa6\xcc\x6b\x24\x45\x93\x96\x93\x7f\x38\x55\xe5\x3b\x5b\x09\x5b\x4a\x50\x0e\x8f\x59\x90\x51\x5b\x6b\xbb\x65\x72\x58\x60\x4e\xd0\x21\x72\x3d\x3a\x37\x78\x82\xff\xbc\xbd\x30\xf3\x17\xe9\x3d\x22\xe4\x7c\x44\x7d\x60\xf8\xd7\xbb\x18\xb1\x42\x2f\xe7\x16\x7a\xbb\x48\xc5\x6f\xa2\xa6\x8f\xc6\x03\xf2\x75\xd6\x7b\x42\xc2\x8a\xfe\xdb\x2e\x65\x56\x38\x73\x66\x7d\x9e\x35\x6a\x55\xb0\x64\x2c\xd5\xf2\x99\xbe\x03\x9d\x0a\x47\x55\x5e\x6e\x73\xc0\xf1\x36\x48\x34\x42\xf2\x01\x25\xb7\x7e\x1d\x09\x0e\x62\xb4\x27\x3b\x0a\xee\x7d\x83\xaa\x9b\x2e\x3d\xff\xfc\xdf\x75\x7a\xb9\x54\x16\x40\xb0\xf8\xb1\x62\x18\xb8\x83\xe2\x3d\x2a\x75\x6b\x81\x47\xb7\x7f\xac\x54\xe0\x2f\x23\x87\x85\x27\xf9\xf7\xb4\x7b\x61\x9f\x59\x44\x0b\x97\x78\x2d\x68\xfd\xcc\xcf\x78\x01\x29\xc7\x03\xb9\x8b\xa2\x78\x51\xdf\xc7\x36\x15\xa0\x69\x83\x5c\xdc\xa8\xd7\x33\x2b\x2d\xdf\x99\x7e\x84\xbd\xcc\x27\x13\x3f\xeb\xd9\x33\xe3\x10\xa3\xb5\xbc\x4e\x1d\xe8\xcf\x03\xc3\x37\x94\x16\xcb\x8a\x35\xcb\x65\xa2\xe8\x93\xd0\xaa\x06\xbc\x37\x59\x8b\xb6\x6f\x53\x13\xed\x57\x6e\xf1\x4e\xe0\xc7\xcd\xae\x56\x78\x1f\x77\xa3\xaf\xcd\xb3\xf6\x8a\x74\xe3\x2c\x56\x8f\x93\x56\x71\x1a\x3b\x57\x51\x01\x83\xd7\xfc\x30\x50\x9c\x17\x1f\x68\x6a\x0e\x96\xfb\x82\x45\x9d\x5a\xf3\x80\x41\x26\x87\x14\x99\xe8\xad\x51\x04\xa1\x5f\x33\xd3\xa5\xd9\xed\x29\x8f\x0c\xc6\x3b\x81\xe9\xba\xab\xf0\x87\xa7\x9b\x88\x3e\x8a\xe7\xe3\xe7\x35\xb7\x13\xac\x93\xf4\x57\xbc\xf9\x35\xa3\xb0\x67\x88\x17\xcb\xf7\x90\xce\xd1\xa6\xe3\x63\xf5\x02\xa2\x70\xc9\x46\xab\xfb\xf0\xf0\x24\x9d\xa4\x87\x87\x98\x01\x8d\x2c\x89\x57\x68\x5d\xe2\xb1\x80\x6f\x06\x3d\xf9\xe9\xb5\x72\xeb\x30\x82\x7b\xa2\xc0\xd2\x57\x15\xd3\xcb\x3b\xd8\xab\x2e\x0e\x2a\x1f\x17\x7f\x95\x1e\x3c\x9c\xa2\x28\x0e\xaf\xf1\xa9\x26\xc5\xd1\xd4\xf6\x92\xb4\x2f\xc2\x71\x70\x3e\xba\x72\x71\x7e\xa2\xde\xfd\x07\x6a\xb2\x79\x64\xfa\xf6\x49\xcf\x7b\xc6\xe8\x3c\xdc\xc1\xbe\x8e\x47\x15\xec\x5d\xd3\x64\x60\x93\x0a\x93\x3f\x5d\x35\x6c\xf4\x69\xf4\x39\xdd\xdc\x91\x57\x4c\x7a\x1d\xb1\x39\xac\xc7\x1f\x06\xbe\xe1\x76\x5f\x4f\xe4\xa3\x42\x08\x2c\xca\x59\x05\x23\x98\x06\x8f\x90\x64\xa7\x7e\x52\xf1\x56\x2d\x12\x3e\x38\xd7\x2e\xe2\x65\x1b\xfa\x48\x58\xd4\xaf\x5b\x4e\x56\xfb\xcf\x9c\xa7\xed\xaf\x3a\xee\x61\xb8\x3a\x70\x20\xe1\xd6\xee\x2b\xc2\xa2\xb7\x54\x44\x5f\x5a\x7c\x9b\xf2\xdc\xa3\xab\xd4\x2f\xcc\xb0\x27\xf9\x17\x0a\x7f\xb0\x1e\x78\xe4\xd6\x1f\xb8\x64\xae\x1f\x96\x5f\x80\x22\x2d\x9c\xde\x29\x35\x3d\x7b\xaa\xb1\x12\x96\xda\xbc\x48\x63\x49\xcc\xf0\x26\x4f\xc2\x84\xf0\x09\xf4\xec\xe9\x03\xaf\x98\xd5\x96\xaa\xb8\x73\x72\xce\x27\x35\x9f\x5d\x7e\x7d\x9c\xa4\x3c\xb8\xe1\x64\x7b\xca\x8f\xf0\x89\x1a\x0b\x19\xd3\x80\x87\x9b\xdf\xff\xaa\x52\x1e\xff\x6a\xf0\xe9\x6a\x6b\xf8\xe0\x5c\xf9\xdd\x9f\x2d\x1f\x07\xd3\x2c\xd2\xec\x37\xcc\xf0\x19\xcd\x8a\x7b\x8d\xea\x02\x4e\x74\xac\x5c\x5e\x6e\xd0\xd3\x47\x9e\xdb\x50\xd5\x47\xee\x78\x87\xb0\x2d\x30\x4e\xdf\xc6\xf6\xc4\x52\x7b\x47\xb1\x50\x3c\x56\xec\xa2\xe7\xa8\xbd\xe0\x08\x73\x3e\xff\x77\x45\xff\x1a\x1d\x75\x19\x49\x43\x51\x54\x58\x31\xe9\x29\x72\x67\x46\x6b\xcf\x01\x12\x29\xe4\xb8\x4a\x8e\x04\x40\x79\x94\xeb\x39\x27\x44\x7c\x3a\xdd\x51\xd2\x12\x7b\x9e\x46\x7b\x84\x19\xef\x9b\x88\x1d\x63\x9b\x2e\xdb\x0c\x40\x2a\x35\xfa\x2b\x6d\x81\x87\x81\xd6\x72\x73\xa4\x7e\x69\xc8\x64\x08\x0e\x69\x73\x37\x50\xe3\xfe\xf5\xd9\xd4\x23\x33\xed\x95\x30\x1f\x0e\x6d\xd4\xd7\x94\x52\x28\xd9\x49\x43\xb6\x89\xf4\xb0\x18\x8f\x13\xa7\x5f\x24\x23\x07\x18\xb5\x94\xa8\x64\x6b\x51\xe6\xc8\xcc\x17\xda\x43\x1b\x0e\x86\xb9\x8d\x45\x50\x02\x77\x00\x7e\x41\x29\x10\xd0\xe3\x94\x3e\x90\x07\x6e\x25\x5d\x1a\xbd\x6f\x95\xeb\x09\x79\xc9\x29\x5a\x36\x7c\xdc\x04\x70\xee\x9a\xde\x52\x14\x62\xca\x14\xad\x17\x80\x6a\xf9\x78\xed\x49\xd5\xbc\xe9\xa6\xab\x09\xfd\xa1\x30\x6f\xf9\x59\xc7\x2b\x9e\x16\xa6\x1b\x85\x5f\x29\x2c\xe5\x23\x58\x56\x24\xd9\xb4\x79\x9f\x5e\x07\x0a\x14\x0c\xb1\x10\xc3\xb1\xd5\x6b\x2d\xcc\xb4\xbb\x36\xcb\xa7\xcb\xdb\xc0\x75\xfc\x73\x6d\x03\xd7\x61\x43\xf9\x84\xbe\x96\xff\x2a\xf0\xcd\xcc\x7e\xd2\xcb\x93\x94\xe7\xb3\x24\xc1\x2a\x1d\x8e\xd0\xfc\xa8\x36\xcf\x22\x87\x1d\x70\x3f\x08\xa9\xf9\x78\xed\x13\xc6\xf8\x12\x56\xb3\x69\xaa\xab\xfa\x02\xe9\x2b\x49\x6c\xb3\x29\xff\x6f\x1b\xca\xd8\xdd\xd3\xe3\xed\xe7\xd4\xe5\xe4\x66\x48\x35\x23\x60\x66\x98\xa7\x9a\x79\xa7\x26\x5e\x3a\x11\x65\x51\x54\x31\xef\x60\x05\xf3\xb0\xb7\x22\x30\xee\x9b\x91\x19\x58\xaa\xe0\x6d\xde\xad\x70\x67\xf8\x6e\xfb\x57\x75\x27\xe8\x03\x55\xde\x1d\x27\x61\x9c\xef\xa6\xed\x25\x01\x99\x5f\x4c\x3c\x87\x2e\xc1\x99\x52\x60\x3c\xae\xd4\xdb\x8f\x07\xca\x84\x43\xba\xcb\x39\x9b\x83\x1e\xbb\xdf\x64\x6f\x07\xc9\xc8\xbe\xda\xaa\x17\x40\x25\x72\x71\x35\x7e\xab\x14\x98\x39\xc4\xa6\x85\x29\xe1\xb6\x67\x3a\xef\xd9\x34\x0f\x17\x43\xc7\x38\x2f\xe2\x22\xa5\x99\x14\xd5\x91\xbd\x6e\xd2\x74\x29\xab\x74\x79\x03\x0f\xd2\xfd\xdd\xfa\x30\x09\x11\x08\x8f\xc6\xae\x37\xc2\x36\x10\x76\x4f\x0c\xa2\x47\x53\xac\x98\xdc\xa6\x04\x0f\xf4\x60\x43\xa1\xec\xf8\xb1\x1a\xf3\x3d\x15\x28\x78\xd0\x65\x32\xc9\x30\x07\xe7\xd5\x10\xc2\x03\x8a\x48\xe1\x9d\x4f\x36\x54\x39\xe7\xdb\xd9\x30\xb4\x51\x5f\x34\x0a\x44\x6a\x92\x1e\x27\x9f\x34\xb9\xbc\x17\xdb\xfd\xc4\x32\x1a\x41\x75\xf4\x5e\x96\x93\x5a\x64\x71\xe8\xd0\x02\x23\x1f\xe5\x31\xe0\x2e\xd6\x15\x3a\x9e\x39\xb0\x11\x9d\x47\x21\x4d\x7e\xcf\xfb\xed\xe1\x38\xf4\x36\x54\x62\x3a\x8e\xcc\x6a\xb2\xb8\x48\x62\x87\xc8\x4a\xbe\x0b\x8f\xc4\x27\x15\x72\x3f\x6f\x95\xaf\xa8\x2e\xc0\xa8\xc8\xc2\xde\x2e\x45\x0c\x71\xab\x4c\x9d\x36\xef\x2a\x27\x75\x1c\x1a\x29\xb2\xbe\xc8\x91\xe2\x9a\x6f\x91\x8d\xe1\xe3\xf2\x61\x6f\xde\x55\x9b\x3c\x32\xc5\x60\xd8\xf2\x29\xf9\x87\x2a\xbd\xfe\xd0\x8f\xe9\x24\xbd\x1e\xeb\xaf\x21\x91\x43\x75\x1e\x9d\xea\xed\x18\xe4\x80\x57\xf8\xb7\x8d\x5e\xa1\x97\xc4\x8b\x36\xcb\x84\x3f\x80\x01\x63\xba\x27\x70\xb6\x56\x85\xe4\xb8\x77\x59\xa9\x61\x0a\xa6\xb0\xe5\x88\x88\x37\x94\xc0\x47\xdf\xc4\x03\x9b\x26\x45\x46\xc9\x86\x70\x30\x78\x08\x35\xc6\xe2\x78\x02\x5e\x3d\x82\xb4\x88\x6c\xb6\xa7\xf5\xc2\x2c\x7b\xf2\x8b\x9c\x57\xc9\x2f\x28\x04\xf9\x05\x58\x1b\x27\x55\xe4\xf0\x85\xdb\xd7\x7c\xc1\x73\x4f\xc7\xcf\xc6\x7f\xa4\x65\x27\x36\x34\x05\xe8\x0f\x9b\x2a\xfa\xa9\xcd\xc3\xd4\x4d\x2b\x34\x65\x87\x5b\x86\x5a\x17\x66\x16\xda\x47\x66\xe6\xa6\x94\x12\xb2\x9a\x20\x6f\x41\x14\x10\x97\xb2\x7b\x4d\x65\x96\xc5\x2b\x61\x9e\x15\x30\x11\xb8\x35\x66\xe9\xe4\x93\xa6\x7e\x77\x56\x64\x63\x1b\xbb\x97\xc8\xc3\xff\x4a\xba\x6f\xa3\x0a\xe4\x8f\x81\xae\x45\x41\xf4\x87\x54\xdc\xe0\x63\x35\x7c\x43\x33\xe5\x3b\x7d\x03\x1f\xba\xc5\x48\xeb\xbf\x47\x23\x27\x58\xd2\x8f\x03\x9f\xcc\x61\x9b\x48\xc8\x49\x46\x8a\xff\xc1\xb5\x7e\x96\x43\xbb\xb2\x9b\x9e\x36\x50\xdf\xef\x4f\x3c\x49\xde\x3f\xa1\x0d\x81\x4b\x86\xe6\x10\xa0\x93\x7b\x3b\x6a\xa6\x83\xe5\x11\x10\x8b\xee\x50\xe4\x7f\xbc\xda\x61\xf9\x2e\x2a\x98\xf8\xb0\x9b\x68\x91\x3d\x06\xcf\xf2\x89\xe2\x17\x5a\x2c\x32\xb7\xa0\x11\x50\x80\x3e\x89\x8f\x1b\xdd\x49\xd7\xc4\x4b\x19\xb7\x31\x70\xdf\x8f\xf0\xf5\xc2\xdb\x48\x3f\x2c\xc5\x6a\xfd\x16\xbe\xf2\x37\xfe\x33\x54\xdf\x00\xb5\x79\x80\xa8\x1c\x99\xcc\xf9\x8a\x82\xf9\xd5\xc6\x5f\x5e\x19\x12\xd5\xa6\xf3\xb7\x30\xd7\x7c\xec\x75\xb6\x87\x66\x6c\xc9\x23\x38\x54\xaf\x53\xcc\xd7\x24\x09\x1f\xc3\xa5\x88\x74\xa2\x82\x24\x9c\xc6\xf3\xe6\x7f\xa1\x37\x24\x73\x56\x9f\x76\x48\xc2\xdc\x74\xa3\x30\x1b\x8e\x6c\x8c\x01\x40\xbc\xdb\xbb\x8a\x77\xe9\x72\x99\x81\x6c\x9e\xa9\x74\x19\x22\xd3\x9f\x2e\x17\x1f\x8f\xe1\x90\xb3\x82\x81\x43\xfa\xc6\xc7\xaa\x51\x7b\x46\xa1\x00\xbb\x21\xe9\xde\xd1\x23\x40\x4a\x0b\x22\x01\x3e\xae\x34\x0b\x4d\xb6\xba\xcb\x4f\x8b\xa1\x08\x26\xcc\xdb\xc8\x3b\xb0\x6c\x00\x04\xd4\xca\xea\xcc\xc3\x85\x1a\x9c\xbc\x61\x3f\x30\x79\x32\xd0\x38\x77\xf0\xbe\x32\x18\x6d\x93\x3a\x61\x9b\x97\x6a\x71\xe8\xd1\xa3\xed\x28\x49\x96\xa8\x0a\x89\x8c\xfd\x41\xa0\x06\x70\x1f\x4c\x3c\xce\x20\x5c\x8c\x24\x15\x41\x58\x7e\x3f\x50\xc4\xdb\x40\x97\x0a\x9f\xdb\xfe\x0a\xe5\xfe\xf4\x94\x97\xcb\x87\x7e\xb6\x23\xd6\x77\xf6\x90\x51\xcc\x7c\xe2\x14\xce\x2c\x37\x2e\xb9\xfb\xae\x21\x6f\x97\x14\x59\x67\x9a\x64\x1c\x07\xe3\xdd\xdc\xa1\x05\xc8\xc7\x41\xfb\x93\x50\x00\x49\x9c\x15\x23\x47\x98\x8c\x35\x76\x5c\x0b\x41\x6b\xc0\x9e\x31\x7f\x7d\xca\x77\x9b\xf7\x53\x08\xed\x48\x34\x3d\xf3\xd3\xce\x35\x41\x72\x25\x45\x9e\x2c\x15\xa3\x71\xa1\x88\x81\x3f\xd2\xcd\xc4\x8f\x34\xbb\x7d\x18\xef\x55\x90\xfd\x5d\x04\x80\x96\x5a\x18\x7d\x06\xb6\xe8\x19\x92\xa6\xa6\xdf\xfd\x22\x04\xe9\xa5\x21\x53\x26\xb6\x8e\x32\xbb\xdc\x33\x5c\x89\x80\x6b\x42\x5a\xcd\x06\x01\x31\xde\xe6\xc4\x37\x54\x34\x9f\xdb\x95\x5a\xed\xe1\xc0\x81\x36\x29\x62\x64\x79\x6a\xe8\x19\x08\x74\xd2\xd7\xf4\x01\x1c\x97\x4e\x85\x84\x04\x83\xd2\x33\xc7\xd4\x93\x80\xf9\x64\xb5\x3e\xd4\x56\x00\x37\x40\x62\xbd\x7b\xcd\x8f\x25\x5c\x53\x12\xb9\x9e\xc1\x14\xec\x5f\xb8\xc3\x75\xad\x6e\x87\x59\x13\xfe\x87\x40\x51\x93\x7d\xe0\x56\x6f\x18\x2f\xb9\xfd\xc9\xc2\xfe\x58\x6f\xa2\xf2\xef\xd1\x93\xa4\xa5\x90\xed\xa0\x27\x08\xdc\x33\xa8\x98\xb1\x32\x01\x75\x41\x79\xee\x7f\x46\xcd\x94\xff\x88\x1e\x26\xaa\x6e\x97\xf5\xfc\x8a\x49\xc3\x98\x85\xf4\x1d\x27\x8d\x6b\x88\x61\xf6\x59\xa4\x7b\xbc\x3d\x29\x43\xa1\x24\x1d\x29\xfe\x22\xe6\xe9\xe1\x13\xe7\x29\x56\xad\x49\x3d\x83\x21\xc2\xae\xf3\xaa\xed\x70\xbe\x16\xc1\xce\x1e\x6e\x2f\x16\x51\x94\xf5\x0c\xb3\x23\x4b\xe6\xec\x61\x0f\xa7\x54\xbc\x34\x0e\xe3\x25\x9b\xe6\x49\x8c\x11\x1c\x71\x94\x95\xaa\x9e\x1f\xd4\x38\x4e\xa1\xcf\xe6\x05\xad\x98\xf6\x7a\x6d\xa2\x7e\x61\xa6\x6d\x7a\x05\x77\xb6\x79\xb8\x4e\xb1\x51\x9f\xd7\xc8\x13\x9b\x3d\x45\xd6\x03\x49\xe4\xfd\x89\x9a\xc0\x65\x6a\x1a\xd6\x02\x54\xa3\x12\x4c\x5c\xe7\xd4\x55\xcb\xa5\x42\xa6\xf3\xa9\xbf\x42\x51\x17\x4c\x27\x7b\x39\xfa\xc8\x7f\xfa\x97\xfd\xb0\xea\x97\xff\xf2\x5a\x19\xe6\x39\xc8\xd8\xc2\xbc\x23\x2a\x54\x13\x43\x9f\xa6\x46\x01\x1e\xf2\x6d\x5a\x14\x12\x5d\xc0\x5d\x62\x89\xfc\x85\x8e\xaf\x25\x3c\xbd\xf6\xa4\x22\x2f\x0f\xe3\x3c\xdb\xed\x19\x85\x77\x53\xc9\x1c\x7b\x84\x29\x18\xd1\x57\xd9\xd1\x51\x13\xaf\x17\xc8\x2d\xa1\x07\xf7\x04\x21\xbc\xa5\xec\xa7\xd8\x69\xce\x4f\x7c\xd2\xf5\x8e\x7a\x93\x26\x1d\x65\x79\x9a\xc4\x03\xa2\x8f\xa9\xd0\x42\x21\x40\xb8\xa8\xc6\x45\x1e\x3a\x3e\xa2\x41\x1a\xf6\xa3\xa4\xb7\x24\xb5\x1a\x24\x1e\xa7\xd4\xdf\x5e\x80\xbf\x46\x65\xf1\xdb\x13\xdf\x4b\x8f\xec\x62\xbe\x18\x5a\xe6\xe1\xaa\x58\x20\x3e\x51\x24\x7f\x39\xa9\x97\xc5\x83\x9d\xf4\x2b\x30\xac\x37\xf0\x22\xe1\xf7\xde\x56\xe9\x29\xf3\x14\x3a\x95\x8d\xb9\xb9\xcd\xcd\x89\x42\xfb\xbe\xdd\x14\x9a\x2e\x26\x45\xdc\xf7\xfc\x64\x00\x0c\xa3\x58\xc5\xc7\xae\x24\xbc\x6a\x72\x2b\xb9\x64\x23\xbb\x97\x10\xb5\x16\x71\x6a\x07\x85\x42\x0c\x3a\x6c\x87\xa7\x8d\xac\xc5\xf0\x65\x3c\xce\x7a\xc8\xe4\x78\x85\xfb\xbf\xe5\x34\x56\x2e\xd4\x9a\x4d\x04\x30\x2f\xa4\x7b\xd4\x54\x9f\x6b\x68\x8c\x74\x13\xbe\x57\x06\xf0\x05\x8a\xf2\xbe\x0e\x3e\x38\x58\xa6\x16\xbd\xd5\x9e\xaf\x9a\x0b\x59\x7a\xcb\x13\xa7\x2b\x30\x7d\x18\xbf\x52\xa4\xcc\x6b\x06\x13\x86\xc9\x6d\x3e\x76\x61\xb6\x5d\xe9\x77\x29\x08\x01\x76\x63\xf3\x82\xab\x40\xac\x58\x03\x5a\x08\xc7\x15\x57\xee\x6e\xc7\xd5\xef\x63\x79\x15\x1d\x6e\xaf\x09\xae\x1f\x3a\xd4\xce\x92\x08\x79\x04\x1a\xf5\x67\xe8\xa5\xf2\x71\xc3\xa3\x7c\xb1\xdd\x37\xa9\x9d\x52\xdc\x37\xb7\x02\x25\x8a\xf4\x51\x85\xea\xc5\x39\xb3\x91\x49\x73\x7b\xac\x55\x61\x73\xd1\x03\xca\x5b\xeb\x68\x07\x66\xdb\x51\xd8\x5d\x35\x71\x56\xd1\x02\xfa\x18\x3f\xc5\x4c\x16\x7a\x46\x7b\xa3\xf6\x4a\x50\x8a\xb3\x91\x7f\x25\x4e\xb6\xc8\xe3\x93\x82\xbf\xf8\x09\xf1\x4d\x31\x1e\xa4\xa6\x6f\x33\xda\xf0\x82\x81\xa1\x8d\x03\xb4\x0f\x4b\x13\xb3\xe8\x69\x03\xc2\x67\xfe\xc5\xb6\x89\xf3\x30\x8a\xdc\x66\x10\xa0\x99\x46\x9d\xd5\x6e\x7c\x61\xa6\xcc\xd8\x22\x87\x20\xe3\x39\xd4\xa0\x32\x94\xba\x5f\x55\x8a\xa2\x5c\x89\x11\x5f\x50\x52\x7c\x17\x14\x55\x40\x56\xc6\x12\x36\x1c\xc4\x2d\xdf\x79\xbb\xa5\x7b\x67\xb7\x1a\x07\xfe\x16\x43\xf8\xd1\xcd\xfb\x34\x3a\x75\xbf\x89\x52\x77\x1c\xe6\xbd\xa1\xd0\x3d\x33\x5b\xad\x42\xdc\xbf\xa1\x04\x68\x4c\x7f\xd9\xc4\x3d\xdb\xe7\xd9\x0d\x24\xf6\x3c\x2e\x8c\x58\xfd\x26\x85\x0b\xcc\xd2\xa0\xd4\x9b\xdf\x56\x33\xff\x4c\x2e\xc0\x9f\x5e\xdb\x6a\x20\x5e\x98\x65\x52\x63\xc6\x07\x20\x8d\xf8\x31\x2a\x65\x7c\xd2\xc4\x85\x16\x85\x4b\x76\xda\x03\x2d\xa1\x60\xa9\xc7\x27\xd0\xe4\xbe\xa4\xb5\xcc\x36\x1a\x14\xd2\xbf\x00\x02\x6a\x70\x76\xb8\x81\x6f\x07\x0b\xba\xec\x10\xa5\xa9\xed\xd9\x70\x99\x7a\xaa\x7e\x46\x6d\x37\x39\x3d\x3e\x5e\x53\x9a\x6a\x59\xce\x82\xfe\x08\x99\x98\x75\x8c\x4f\x1a\x78\x77\x5e\x49\x42\xd7\xec\x92\x6a\x0a\x5d\xf9\x27\x11\x56\x96\x3b\xae\x0c\x88\x2a\xc3\xb7\x98\xb0\x93\x6e\x78\x03\x7e\x64\xd9\x44\xa1\x61\x16\x4a\xe6\x0c\x0d\x5c\x34\xf0\xdf\xbf\x5b\x1b\xca\x9b\x3d\xdc\xee\x99\x31\xdd\x08\xf3\x4e\x51\xd9\x42\x38\xa8\xe4\xd9\x98\x22\x1f\x26\x69\xf8\x2a\x22\xd7\x59\x91\x49\x09\x94\xc0\x20\x4f\x28\xb8\x1f\x3d\x74\x48\x18\xfe\x9a\xb8\x7c\x46\x61\x96\xa7\x45\x96\xc3\x05\x08\x73\x53\xcb\x2b\x67\x05\x2e\x09\x8e\xf3\xd4\x8e\x53\x1b\xdb\x22\xcd\xa6\x7d\x60\xcd\xbb\x1f\x61\xc6\x1d\x8a\x13\x2a\xe4\x43\x78\xbd\xbb\x15\x46\xb0\x9f\xae\xc6\x36\x43\xb1\xcc\x01\xa2\x9c\x6d\xbd\x53\x91\x43\xdf\xfa\x9c\x0e\x7f\xb9\x3d\x36\xab\xb4\x80\xb1\x8f\xf0\xe7\x7c\xac\xb9\x8f\x13\x93\x66\x8c\x8d\x14\x94\x1d\x5d\x8f\xc0\xef\x94\xcc\x4a\x34\x62\x4b\xe4\xd8\x47\x3c\xa0\xe4\x8e\xfa\xc3\x03\x2f\xfe\x22\x2c\x35\xb3\x3a\x04\x3e\x5e\xb9\xab\xe2\xcb\xcf\x7f\xe9\x45\xfc\x2e\x2c\x3f\x33\x0b\xf0\x49\x9d\x56\xf4\x40\x7b\x31\xb5\x56\xcd\x08\x7e\x1f\x2e\x4b\xf4\xd9\x3d\xde\xe9\xba\xca\x01\x8a\x78\xd1\x84\x29\x95\xdf\x90\xf8\x81\x1a\x85\xd1\x0d\x8a\xc5\xe4\x4c\xe3\x38\x4f\x18\x2f\xdb\x2c\x6f\xa9\x2e\xe4\x07\x64\x62\xa4\x93\xef\x92\x9c\x2c\x2b\x5c\x27\x9b\xd3\x15\xba\x6d\x77\x75\xce\x41\xfe\x4a\x53\xb3\x31\x29\xf2\xc5\x30\x6f\xf9\xcb\x44\xcf\xa7\xae\x57\xb2\x98\xa4\x5d\x9e\xcf\x76\x60\x08\x07\x65\x3d\xab\x72\xa9\xae\x89\xa2\x24\x47\x62\x0e\x2f\xa3\xe7\x42\xaf\x2a\xb3\x1a\x41\x01\x38\x9b\xf2\x69\x28\x86\x45\x50\x44\xc2\xf4\x8e\xc0\x6a\x1a\x54\x8c\x56\x4d\x04\x69\x57\x57\x2f\xf9\xa5\x2f\x0a\x1f\x90\xee\x4e\x63\xb9\x20\xaf\xbe\x57\xc3\xd0\x1d\x38\xd0\xce\x86\x66\x45\x55\x43\xae\x6a\x29\xc1\xab\x6e\xe6\x75\x9c\xa4\x79\x6a\x56\x61\x9c\xe6\xdd\x04\x1f\xed\x73\x3e\x09\xf6\xab\x49\xc6\xd4\x02\xf6\x8d\xba\x07\xd3\x4a\x89\xec\x37\xe5\x52\xfc\x2f\x2a\x70\xb9\xa4\x55\x16\x22\x6b\xf3\x1d\xba\xc6\x8c\xe2\xbd\x90\x99\xb4\x9c\x98\x35\x2b\xb7\x23\x11\xbd\x0e\x2c\x14\xff\x55\x83\xc6\xd1\x17\xda\x69\x61\xcb\x74\x10\xa6\x1e\xb8\x27\x10\x28\xf1\xb1\x8b\xe2\x86\x12\xab\x49\x34\x4e\x77\x8e\x57\x75\x47\x85\xe6\x17\x2a\x3d\xac\x06\xe7\x42\xa4\x07\x49\x0a\x70\x60\x53\x1c\xe5\x77\xe7\xdf\xfc\xcf\xa1\x7a\xc5\xd2\x31\x54\x9a\x17\x19\x99\xa7\x1d\x84\x30\x8c\x92\x2c\x19\x0f\x57\xa7\x7c\x95\x16\xb5\x58\x57\xda\x70\xed\xff\xf5\xc6\x60\x30\x0d\x33\xe0\x26\x15\x6f\xba\x18\x8e\xf7\x27\x7e\xae\xe7\x9d\xa0\x32\x0e\xf0\x69\xc5\x7a\xdf\x8b\x4c\xea\x05\xc0\x84\xd9\x4a\x51\x6f\x5d\xaa\x11\xff\x1d\x99\xa1\xf8\xd0\xa6\x6a\x3c\x81\xd3\xc6\xff\x13\x6f\x97\x4f\x9a\xf6\x6a\xb7\x08\xa3\x3e\x57\xe3\x98\x07\x25\x50\x8a\x4c\x67\xf5\xcc\xfb\x25\x57\x1c\xed\x25\xf1\x20\x45\x8b\x85\xe1\x01\xc0\x11\xec\xeb\x28\xd8\xec\xbe\x5a\x43\x98\x4b\x06\x96\x75\x21\xb0\x95\x78\xf0\x9a\x4f\x1a\xc0\xe8\xf3\xed\xd4\x66\x49\x91\xf6\x2c\x5b\x6c\xc7\x64\x5c\xfe\x96\x88\x1d\xd4\xd7\xc7\x5c\x3b\x35\x71\x3f\x19\xa9\x7e\xfd\xba\x1a\xa1\x24\xad\x71\x01\x6b\x17\xfd\x8c\x1f\xb9\xb4\x41\x54\x25\xee\xaa\xc2\xdf\xf5\xed\x48\x70\xa6\xaa\xa8\x72\x5f\x91\x42\xdf\x9f\x68\x56\xf3\xd1\x28\xe9\x87\xf9\x2a\x74\x11\x91\xf1\x5f\x9c\xa8\x15\xff\xfb\x13\x85\xf4\xc7\x84\x27\xff\x03\x83\x06\x01\x99\x3a\x59\x43\x7d\xce\xcd\xb5\xd3\x22\x26\x21\x0c\xe0\x88\x7f\x0f\x8b\xca\x15\x38\x3d\x31\xc3\x1f\xe2\x07\x71\x79\xdf\xd8\xa2\x46\xe9\xfc\xf1\x66\xad\xaf\x49\x5a\xaf\x91\xe9\xb1\xfe\xa3\x70\x80\x78\xb0\xdf\x65\xad\xc2\x38\xca\x76\xd1\x05\x28\x15\x63\x5f\xcb\xf0\xdb\xfa\xda\x44\x8d\x2e\x30\x58\x14\x66\xf4\xcf\x75\x3c\xc5\xe2\x7d\x35\xd7\xf1\x64\x2d\xac\x9d\x9b\x6b\xf7\x4c\xae\x5a\x75\xa2\x31\xec\xcb\x03\x1b\x15\x05\xa6\x38\xdf\x53\x9a\x25\x34\x97\x4f\x4d\xfc\x10\xd0\x89\x89\x9f\x3a\xba\x41\x25\x1a\x96\x0b\x0b\x74\x37\x1d\x25\x3e\x19\x9f\xf3\x48\xb2\xed\x1d\x45\xdf\x71\x45\xb1\x8d\x6d\x5f\xdb\xa7\x3a\xb2\x00\x82\x08\x83\xba\x4f\xb8\xfe\xa5\xf2\x70\xf6\xd8\xd8\xf6\x70\x95\x78\x4f\xcc\xb6\x06\x83\x01\xe1\x2b\xe9\xbb\x63\x61\x30\xf1\xba\x22\x95\xbd\x8d\x2a\x07\xa6\xba\x99\x26\x4a\x08\x70\x3d\xad\xc0\x14\x9e\x39\x52\x86\xc7\x95\xf6\x4d\x68\x7a\x53\x4a\xde\x89\xbe\x1a\x66\xb2\x3a\xe5\xa8\xbb\x10\xb6\x18\xd3\xed\xa1\x1d\x74\x5d\x71\xe6\xd5\x39\x5c\x24\x9f\x4c\xc2\x88\xe7\x29\x71\x49\xc0\xbb\xc8\x4c\x2d\xdd\x37\x9c\x43\x3d\x25\x9c\x3d\xdc\x1e\x25\x71\x96\x0b\xb9\x9d\x74\xc6\x7c\xd1\xf1\x96\xd6\xcf\xf0\x4d\xe5\x95\x24\x5d\x12\xa1\x0d\xb4\xa7\xbf\xa1\xc1\x86\x4c\x2e\x82\x6d\xc1\x42\x1b\x8e\xc2\xc9\xf7\xd9\xb4\x53\xc9\x13\xd6\x50\x46\xf1\xee\x34\x9e\xbe\x04\xe4\x3e\x9c\xbe\x56\x95\x98\x59\xb4\xa9\x13\x08\xff\x02\x5f\x26\x04\x6f\xf8\x58\x05\x48\xa9\x8d\x42\xbb\x48\xb1\x0c\x9e\xce\xff\x1e\xf8\x22\xc9\x47\xf4\x21\xf0\x9c\x7c\xd0\xd4\xd0\x1e\x85\xb0\xd0\xec\x22\x81\xfb\xc6\xbc\x39\x1f\xab\xae\x0c\xd1\x58\x4d\x69\x8c\x2f\x53\x18\xa8\x21\x6e\x11\x9f\xba\xae\x60\xc3\x5f\x29\x4c\x9a\xdb\x74\x0f\x01\x02\xa4\x84\xa4\xe0\x12\x8f\x01\xc2\x96\x42\x93\x22\xc2\x3d\x41\x6b\x4a\xb4\xcc\x7c\x6e\x75\xde\x4f\x76\xff\x77\xe7\x03\x2f\xce\x0d\xf5\x75\x8c\xe3\x6c\x5b\x73\x8c\xce\x3d\x93\x0f\x9d\x21\x70\x14\x08\x2e\x71\xbc\xec\xda\x86\xb9\xb5\x31\x97\xbd\x10\xd0\x71\xf5\x81\x4f\xbc\x64\x82\x19\x99\x34\xcc\x7d\xb9\xc5\xf5\x7e\xfd\x47\xb7\xa9\xc0\xfb\x4a\xcd\xaf\x1e\x3a\xd4\xee\xdb\xae\x48\x6d\x70\xd7\x54\xa1\x50\x2e\x2b\x32\xc2\x41\x1a\x4a\x26\x02\xb0\xc0\x6d\x3d\xaa\x76\x5b\x39\x29\x13\x85\xe5\x0d\xa8\x29\x03\x55\x4f\xbb\xad\xa0\x6d\xc3\x22\x2a\x43\x60\x2d\x07\xfc\x3d\x38\x07\x3e\x51\xb5\xb7\x91\x39\x16\x8e\x8a\x91\xa2\x07\xbd\xa8\xca\x0b\x5a\x0f\x3d\xcb\xc3\x51\x11\x15\x19\xc9\x53\x89\x25\x70\x04\xe2\x7f\xe7\x6a\xa5\x37\x99\x9a\xe8\xb3\xf4\x42\x44\x4d\x57\xb1\xff\x5e\x9c\xa8\xf9\xeb\x16\xf5\xa7\x10\x9c\xef\x06\x8c\x11\xbb\x66\x0b\xd1\xca\x41\x99\xd2\x99\xea\x68\x4a\x68\x16\x69\x41\x68\xf4\x67\x8a\x6c\xf0\x09\xd2\x08\x11\x6d\xac\x96\xa8\x22\x19\xd6\x2c\x61\xf8\x08\x02\x34\x27\xce\x5b\xa6\x17\xa8\x20\xee\x20\x16\x1f\x3c\x84\x7b\x81\xca\x93\xa7\x69\x06\x02\x16\xff\x47\x94\xae\xcb\x66\xa4\xb7\xe6\xa6\xdf\x0e\x1c\x70\x02\xed\xb4\x33\xa4\x00\x44\xf1\x98\x90\xe0\x6b\xdb\x6b\xd2\xfe\x33\xbe\x32\x32\x85\xf1\x2e\x6c\x53\xa8\x75\x61\xe9\xdc\xd4\x1a\x66\xf7\x09\x64\x86\xe4\x96\x27\x06\x50\x93\xbd\x40\x0f\x8c\xf9\xe8\x02\xb5\x33\x98\x03\x0e\x4d\x96\xc7\x81\x0f\x68\x7f\x84\x07\x89\xd8\x03\xe2\x19\x78\x41\xd3\x40\x20\xe0\x4a\xee\xa1\x5f\x83\x67\xcf\x6c\x33\x08\xc0\xee\xe2\xa5\x22\x8e\x79\xc8\x2e\x0a\xbe\xe3\x04\xf9\x55\xf1\x29\x7e\x99\x8e\x8a\x6c\xb8\x64\x78\x7e\x59\x34\xc5\xe8\xfb\x05\xb3\xa2\xe6\xa9\x92\xd1\xd8\xa4\x76\xa7\x1f\x87\xba\x4d\xb7\xe8\xc8\x3a\x66\x0f\xcb\xb1\xf6\xdc\x1b\x3a\x87\x00\x3a\x87\x3f\xad\xa8\xdc\xfa\x76\xd9\x44\x85\x0f\xba\x59\x65\x90\x9e\x81\x28\x0e\x36\x8c\x1b\x44\xa6\xb7\x14\x15\xa5\x27\xc2\x70\x95\xb0\xdc\xfa\x6d\xfe\xf5\x5a\xc1\xfe\xe0\x5c\xbb\x97\x2c\xdb\x38\xaf\x50\x5e\xbe\xa3\x5d\xfd\x3b\xd5\x7d\x14\x67\x9f\x29\x17\x1c\x1c\xfc\x34\x56\x05\xfa\x36\x37\x09\xaf\x02\x4c\x35\x82\x32\x94\x0a\x59\x26\xd7\x89\xb9\xbe\x24\x02\xb6\x1f\xa3\xdf\x8f\x62\xeb\x26\x56\x05\xe2\xb3\x77\xb5\x2a\xcf\x79\x7e\x79\x80\x27\xdd\x83\x2b\xc4\x1e\xbf\xcd\xdc\x58\x82\x69\x55\xa0\x95\x4b\x93\x2a\x43\xd4\x91\x19\x7e\xd2\x8f\xe9\xdd\xc0\x48\xa1\x14\xcf\x51\x18\x56\x0f\xdf\x0b\xf6\x1e\xff\x95\xaa\x7b\x9e\x52\xd4\xf8\x77\xd4\x54\x85\x35\x59\x18\xad\xee\x52\x72\x6f\x4c\x84\x84\xf4\xf7\xa1\x5a\xd9\x57\xe8\x39\xc1\xb1\x23\xc0\x16\x2e\x8e\xca\x54\x72\xf9\x3b\xfc\x47\xb5\xb8\xe5\xb9\xb6\xfd\x4a\x11\x2e\x9b\x88\x59\x42\xe4\x89\xbe\xae\x9a\x57\xfb\x3a\x1e\xfb\xd5\xc2\xb8\xb7\x84\x0c\x8e\xe0\x6a\x4c\xed\x3a\x11\xe4\x10\xad\x5e\xba\x0c\xda\x9e\xff\xf0\x19\x4a\x37\x69\x3f\x27\x4f\xaf\xed\x75\x78\x97\x22\xdf\xe9\x47\x96\xef\x68\x6a\xb6\xa9\x35\x6f\x26\x5f\x9b\xf8\xe0\x8b\x13\x37\xa5\x86\x26\xe1\xf4\xee\x4e\x83\xbb\x32\x59\x19\x7e\x4e\xab\xd9\x9b\xdf\xc2\xf3\xd4\xeb\xcb\x89\x83\x1f\x3a\xc4\x2e\xf9\x4d\x77\x6f\xc9\xb2\x4d\xf3\x22\xb5\x15\x8d\x4b\x96\x96\x17\xb1\xb4\xad\x89\xeb\xdc\x5c\x3b\xcb\x53\x1b\x0f\xf2\xa1\x75\xf5\x59\x47\x24\x5f\x5e\xbe\xd4\x23\xb7\x36\x26\x0e\xce\xb5\xc7\xa9\xed\x93\x5a\xb6\x13\x5a\x13\x94\x7d\xcb\x11\xc9\xd4\x41\x46\xb3\x87\xdb\xe6\x58\x98\x8c\xa4\x0d\x21\x75\x68\x55\xb5\xf4\x01\x43\x56\x84\xb9\xc5\x33\x51\x43\xe9\x22\xab\xb1\x31\xd1\xe3\x5a\xe5\x05\xa0\x3c\x56\xaf\xbd\x95\xa9\xe8\x38\x5c\x32\xa1\xd1\xa3\x89\xe7\x54\x22\xc5\x03\x12\x58\x7f\x77\x9b\xb0\x7a\xf6\x18\xa4\x04\xc8\x6c\x60\x07\x01\xce\xcd\xc7\xaa\xe7\x3f\xb4\x66\x39\x8c\x56\xf7\x2a\xca\x8c\x89\xe7\xa8\xe6\xf9\x7b\xbc\xd7\x6d\x18\x2f\x96\x32\x9a\xc7\x1c\xf3\x74\x00\x1b\x7a\x94\x99\x60\x0b\x6f\x06\x7e\xc8\xed\x7d\x84\xbc\x52\x91\xd3\x5d\x05\xbc\x79\x06\x24\xa8\x28\x82\x74\xbe\xfa\x96\x41\x36\x18\x72\x06\x87\x13\x1f\xfb\xa7\x9f\x9b\xd5\x6c\x5a\xf1\xe6\x72\xbf\x4b\xa7\xca\x02\x8a\xf6\x3a\x7b\x5a\x29\xd4\x1e\x1b\xa7\x36\xcb\xa2\x55\xfc\x18\x3e\x78\x9f\xfc\x06\x1f\x2b\xee\xeb\x5e\x92\x0c\x4c\x8c\x35\xc8\x75\x4e\xc4\x4c\x52\xf4\x6c\x2c\x7a\xd9\xde\x52\x44\x62\x0b\x0e\xcf\xb3\xae\x04\x42\xd7\x6b\xf0\xd4\xd9\xc3\xed\x1e\x54\x54\x42\xdb\xb3\x68\x66\x32\x13\xdf\xd3\xba\x0a\x64\x47\x5d\x9b\xee\xa0\xcb\x96\x39\x43\x35\x75\x7c\xb3\x22\x9d\xa5\x44\x07\x5e\x57\x62\x0a\xd7\x26\x5b\xe9\x42\x9e\x6b\xaf\x26\x45\x8b\x9c\x80\xb4\xea\x68\xd9\xf1\x49\x6d\xdd\x1e\x3a\xd4\x1e\x16\x69\xdf\x31\xe6\xa0\x0c\xf6\x00\x4b\x83\x4f\x1c\xb6\xbc\x97\x8c\xba\x61\x6c\x51\xc7\x64\x1a\x4c\x25\x79\xff\xb1\x4a\x19\xb2\x22\x5d\x0e\x97\xb1\x94\xf1\xaf\xdb\xd6\x54\x4e\x5a\xd7\x56\x3b\x70\xa0\x1d\xdb\x30\x1f\x5a\xd4\xbe\xd1\xd7\xfd\x0e\x05\x59\x0e\x2e\x3f\x7b\x98\xcd\xe3\x35\x85\x9a\xee\xa7\x45\xbc\x84\xcc\xc0\xd5\x7f\x7d\x2d\xd8\x09\x8d\x8c\xcc\x18\xd7\x2d\x0c\x31\xaa\x3c\x77\xba\x89\xd9\x2c\x8b\x92\xa2\x37\x54\x6c\x02\x97\x94\x01\xb8\x54\x8b\x16\xa8\xfb\xba\x62\x00\x2e\x46\x59\x1d\xfb\x0f\x33\xc3\xc2\xd2\xaa\xd1\x5d\x3e\x42\x1f\x9b\x34\xec\x9a\x0c\xfa\x46\xc8\x5c\xef\xc2\xf3\x4a\x11\xd8\x23\xae\xef\x62\x73\x4b\x0d\xd8\xc3\x45\x57\x6d\xbc\xa7\xb4\x07\xa8\x40\x81\x63\xdb\x11\xf6\x38\xa6\xd3\xb3\xe5\x57\x6d\xde\xd7\x9d\x25\xd0\xa8\x39\x85\x6a\x17\x8a\xa0\x19\x06\x93\xf2\x2e\x3d\x7d\xfe\x9b\x5a\xfb\xed\xc8\xcc\x6c\x7b\x28\x1a\x6a\x0e\x53\xed\x39\x5b\x95\xe5\x8a\x4c\x4a\xb4\x8c\x0e\xd7\xf4\x17\x9f\x21\x34\x17\x16\x68\x8b\x48\xa9\x9d\xc6\xb7\xa2\x94\xff\xa6\x1a\x09\xf8\xf3\x1d\x45\xe3\x75\x66\x0b\x43\x7c\x6f\x58\xf0\x3c\x03\x47\xf0\xb0\xbb\x12\xce\x7b\x3d\xed\x7e\x98\xf5\xc2\x71\x14\xc6\x18\x08\x61\xd7\x79\x26\x50\x60\xba\xc0\x57\xa8\xce\x4c\xf4\xc0\x69\x93\x96\x73\x36\x34\x4b\xc8\xc2\xf1\xe2\x5f\x53\x3c\xd9\xaf\xd5\x3e\xf1\xb3\x68\x78\x30\xe6\x82\x05\xa5\xb0\x57\x45\x5d\x4a\xa7\x0e\xd1\x6a\x3c\xa5\xd9\x84\x6e\xc3\x50\xca\x6a\x54\x78\xaf\x0f\x1b\x59\x34\x86\x66\x34\x4a\xe2\x3e\xbb\x44\x69\x98\xd3\xc7\xa4\x93\xde\x64\xc7\x92\xd1\x62\x92\xe6\xe8\xd9\x3a\x88\x2a\x1a\xd5\xc2\xb7\xf6\x6c\xcd\x02\x25\xc3\x56\xeb\x97\xbe\x28\x72\x56\xaa\xde\xf9\x6e\xc3\x30\xd9\x6c\xbb\x88\x47\xc9\x32\xb3\x52\xa1\xb4\xb6\x0d\x35\x37\x3e\x59\xdb\xfa\xe8\x7e\xe6\x67\xda\xd9\x30\x2d\x24\xfb\x15\xa7\x42\xdb\x42\xbc\xcd\xd6\x52\xea\x73\x6d\x3f\xb0\x86\x1b\xde\xc4\x3e\xe2\x13\x35\x2a\xd5\x4d\x92\x57\x05\xff\x57\x41\xec\xcb\xc2\xde\x32\xb4\xf8\xd2\xec\xe1\xf6\xd1\xa3\xd3\x64\x73\x05\xf9\xab\x88\x29\xde\x44\x28\x27\xf8\x60\x85\x49\x7b\xb3\x56\xf0\x3d\x38\xd7\xce\x4c\xaf\xa5\x80\xd8\xa8\x7a\xf1\x71\x65\x2a\xea\xd8\x4e\x5f\x09\x6d\x11\xa0\x93\x87\xb0\x27\x1a\x81\xa8\x10\x40\xdc\xfe\xc4\xf8\xe9\x75\x0a\x6b\xb1\x9c\xb7\x37\x10\xd5\xb6\xa3\x70\x14\x82\x2b\x4b\xc0\x3c\x0a\xd8\xd3\x50\x89\x6f\x67\x36\xcf\x1d\x8a\xc3\x81\xad\x3c\x8b\xac\x72\x0e\x66\x39\x09\xfb\x08\x91\x45\x92\xf3\xbb\x0a\xd3\x07\xac\xb7\x14\xd2\x7d\x8d\x37\x5f\x5d\x02\xc4\x01\x61\xf1\x03\x3c\x4b\x3e\x51\xe3\xb6\xbd\x84\xc0\x46\x19\x8d\xd2\xc0\xc4\x9d\x26\x53\xc6\xc7\x95\x8d\x95\xc4\xf9\x6e\x8a\x70\xf0\x7b\x6f\xea\xd2\xa4\x0c\xf5\x3b\x56\xc8\x85\x19\x3f\x9a\xe3\x2a\xc4\xbf\x07\xb7\xed\x98\xe1\xcb\x68\x0b\xd9\xe8\x69\x35\xde\x7d\xb9\x66\x34\x0f\x1d\x6a\xc7\x49\xd7\x46\x2d\x3d\xa2\x43\xbf\x2e\xb3\x3b\xca\x41\xd8\x74\x68\xc6\x5c\x50\x95\xd1\x26\x0f\xd8\xf8\xd7\x64\x9c\xe0\x1b\x4f\xa8\x66\xb9\x3d\x96\xdb\x18\x23\x45\xc2\x65\x52\xa1\x84\xaf\x77\x03\x5e\x6e\x47\xe1\x60\x88\xde\x0d\x0c\xef\x15\x45\x43\x79\xa5\xd6\x12\x7b\x61\xb6\x9d\x25\x45\xf9\x1b\xce\xf3\x00\xdd\x2b\xf4\xe8\x4d\xe4\xa7\x61\x4c\xa9\x48\x22\x1a\x6d\x30\x25\xdc\x94\xe2\x13\xcf\xd4\xcf\xaa\x44\xd3\x4a\x09\x1d\x05\x4e\x11\xd8\xa3\x67\x06\x70\xee\x5d\x46\x54\xf2\x99\xe2\x0a\x77\x13\xef\x60\x90\x11\xd9\x48\x3f\x5b\x76\xa5\xb2\x2c\x62\x9b\x3d\x4d\x45\x1d\xa1\xf1\xa0\x35\x82\x26\xdb\x03\x44\xc1\x98\xb6\xda\x41\xd8\x4e\x96\x4b\xa3\x55\x26\x08\x0d\xba\x35\x24\xdf\xeb\x8a\xd5\x67\x87\x02\x2f\x33\x50\x10\xf5\x4e\xa9\xa8\x38\xb2\xb3\xd2\x86\xe0\x69\xfc\xa3\x89\xea\xf1\x3d\x08\xfc\x0d\xdc\x99\x28\x35\x7d\xae\xfa\x0b\x0d\x1a\x45\x96\xce\xb1\x68\xa1\xc3\x27\xd5\x08\x60\x19\xa8\xee\x56\xc5\x2f\x2e\xad\x23\xfd\x7f\x86\x47\x90\xd1\xdf\xbd\xa4\x14\xd8\xae\x11\xcb\x9a\x2a\xd0\x09\x29\xcd\x35\xa5\xa3\xbd\x17\xca\x5d\xd2\x92\xd9\x6a\xfc\x0f\x1d\x6a\x87\x71\x2f\xb5\x26\x83\xbf\xd6\x29\x8a\xe4\x1b\x7e\x2d\x0f\xd2\x70\x14\xad\x2a\x37\xf4\x0d\xe5\x86\xbe\x31\xf9\x8c\x82\x1a\xd2\x77\x86\xf1\x20\x02\xa0\x84\xe7\x3a\x15\xa3\xf2\x57\x27\x8a\xe8\x21\x36\xd1\x6a\x16\x66\x20\xda\xc6\x96\xfe\x28\x50\x63\x9e\x1f\x55\x7a\x21\xa1\x8d\x77\xf8\x0a\x12\x16\x22\xcf\x23\xe2\x65\x2a\x91\x00\x59\x23\x5c\xb7\x90\x2d\xa1\x95\x25\xac\x89\xf2\x21\x5a\x0c\xac\xa8\x41\x0f\x19\xf6\x83\xcb\xc4\x78\xa1\xb7\x15\xd0\x7d\x9c\x26\x3d\x9b\x95\xb7\x88\xfc\x41\x64\x8d\x69\x91\xc2\xd7\x9e\x23\x6b\x85\xba\x09\xf8\x27\x50\x61\x19\x4e\xbc\x3f\x3e\x17\x3c\xad\xc2\x68\x33\x18\x08\xf5\x1b\x52\xeb\x1f\xa8\x34\xfb\x07\x6a\x6e\xb4\x88\xfb\x36\xcd\xcd\x52\x18\x0f\x08\x40\xc6\x93\x00\x81\xe7\x06\x44\x33\x50\x04\x1a\x7c\x9b\xe4\x84\x2a\x8a\xa7\x61\x2f\xd9\xa5\x02\x90\x1b\x5a\x3f\xeb\x8c\x42\xff\x30\x0d\x8d\x70\x7a\x28\xa6\xda\x3b\x4a\x4c\xeb\xa2\x9e\xfb\xdf\x08\x7e\xa2\x52\x56\x4c\xed\xd0\xc6\x59\x99\x8f\xd0\x57\x39\x11\xaa\x72\x87\xf1\x49\x53\x73\x65\x1c\x99\x30\xce\xc3\x45\x19\x88\x66\x6e\x62\x05\xf8\xaa\x8f\x3f\x1c\x3a\xb4\xd0\xee\x27\x2b\xf1\x8a\x49\x81\x76\xc5\x8a\x7b\x87\x9e\x08\x1f\xd7\xda\xfb\x84\xa6\x05\x74\xc7\x51\x42\xbb\xa7\xaa\x66\x2d\xfc\x6e\xc8\x00\x23\xf6\x2f\x68\x5b\xc7\xd7\x47\xb6\xad\xed\x57\xf8\x9b\x24\x47\x76\x84\x7f\x3b\xad\x48\x78\x4f\x07\xfe\xef\x7a\x74\xbd\xce\x13\x9d\xd3\x9e\xe8\x9c\xcb\x00\x53\xb3\x5a\x86\x91\x53\xae\x84\x75\x15\x71\x81\xd4\x68\x55\xb3\x45\xcf\x84\x0e\xc2\x34\x02\x2e\x0c\x7f\xf8\x43\x35\x06\x80\x2d\x24\x4c\x0e\x5b\xab\x40\xa5\xbb\x28\x62\x74\x4e\x6d\x9f\xab\x40\x4a\xd1\xc4\x0b\x7d\x6c\xc5\xe7\x1c\x99\x99\x6b\xc7\x56\x23\xf5\xd6\xd5\x8b\xd3\x8c\x95\x0b\x2f\x1c\xd4\x25\x17\xad\x4d\xb6\xae\x9e\x50\x97\xd8\x72\x17\xe6\x9d\xe2\xa2\x57\x2e\xaf\x17\xa1\xca\xc0\xd6\x74\x93\x22\xa7\xd9\x75\x94\x22\xde\x9e\xf8\x7e\xc5\x34\x42\x5c\xb8\x01\x6c\x17\x07\x5c\x39\xe8\x01\x35\x3e\x5b\x31\x59\x96\xa4\xb9\x1b\x54\x73\x5c\x46\x6e\x75\x9c\xd2\x72\xa3\x97\xd4\x70\x75\x6a\xe2\x81\xdd\xa1\x5a\x7b\x57\x55\xaf\xe1\xbb\x81\x42\x32\x4e\xbc\xae\xd6\x36\x52\xed\x62\x89\x17\xa5\xc3\x6a\xa3\xe4\x2b\x85\x8d\xf3\x68\x75\xaa\x82\x4d\x2c\x3f\x09\x36\x86\x5b\x9a\x88\xa6\x5e\x55\x9f\x5f\x98\x6f\xf7\x6d\xd6\x4b\xc3\x2e\x82\x45\xaf\x49\x43\xaf\x53\x64\x07\x55\xa8\x1b\xda\x1d\x70\x43\xc0\x26\xa1\x92\xb7\x09\xda\x45\x6e\xe5\x4f\x7c\x7b\xfa\x72\xa0\x56\x6e\xab\xe3\x93\x43\x4b\xa3\xd8\xe1\x32\xe4\xe3\xf1\x3b\x53\x6b\x1e\xee\x7c\x1f\x81\x3a\xf2\x5d\x66\x58\xe0\x93\xc0\x0b\x9c\x1e\x83\x99\x82\x69\x3a\xa1\x44\x2e\x9f\xa6\xe2\xb0\x60\x2e\xf6\x29\x91\x92\xc1\xce\xd6\x0b\xbe\x58\x4f\x3c\x58\xa8\x48\x63\xa2\x87\xfb\x3c\xe4\x50\xf9\xb5\xd2\x1a\x50\xcc\xbb\xf2\x38\xbf\xe3\x66\xdd\x16\xa3\xd5\x9d\xe5\x45\xc1\xf8\x7d\x4c\xd7\x21\x55\xe1\x4a\x3c\x59\xae\x32\xa7\xec\xe2\x45\x30\xef\x2b\x9a\xc2\xd3\xba\x9e\xd6\x2f\x7a\xd4\x26\x99\x52\x28\xe5\xab\x0a\xcf\x7b\x3d\x50\x3c\xbb\xdb\xd6\x7c\x62\x3f\xb0\xe9\xc8\xc4\xd9\x2e\xbc\x2a\xac\xa8\xfd\x64\x94\x00\x15\x02\xd4\x00\x35\xac\xaf\xc3\x53\x21\x33\x40\x70\x84\x3f\xba\x35\x51\x9d\xa8\xa7\x3a\x8a\x77\xf1\x59\xd7\x0d\x5e\xb6\x43\xaf\x04\x2f\xc4\xc8\xe5\x77\x0b\xcd\xe1\x53\x6e\x90\x2b\x4b\xa2\x65\xb1\xa7\xb8\xfc\x93\x2a\x12\x3b\xe9\x20\x7a\x7d\xdb\x2b\x13\x12\x36\x2f\x28\x51\x9d\x54\xc3\xd8\x27\x6b\x66\xfe\xe8\x51\xe2\x87\x2b\x6c\xdc\x03\x8a\x1a\x86\x00\x82\xb5\xb8\x49\xb4\x6e\x11\x22\xbd\xa7\x94\x70\x2f\xd7\x8c\x9c\x60\x26\xb2\xdc\xa6\x11\xe9\x5c\x7b\x19\xff\x9d\x65\xb8\xf8\xe8\x97\xd1\x35\x80\xd9\x3e\xaf\xd5\xe6\xae\x2b\xe4\x5f\xd6\xb3\xcc\xc3\x01\x33\x0b\x41\x2b\x3e\x6e\xea\x60\x67\x39\xbc\x88\xd3\xe4\xdc\x06\xb2\x65\x3e\xe9\x3c\xad\xb0\xbd\xc9\x78\x4c\xe1\x81\xab\x69\xa0\xdb\x2d\xcd\x83\x9f\xfe\x84\x7b\xb2\xc7\xf2\xd4\x50\xe4\x2d\x18\x05\x29\xe1\xd1\x4d\xf0\x89\xb2\xc6\x7f\xeb\x6f\xfe\x2d\x78\x5b\x01\xa4\x95\xfb\x42\x08\xca\x7d\xbc\x62\x7a\x79\x61\xa2\x68\x15\x84\x1c\xc2\x9b\x57\x3e\x7d\xd4\xad\xcf\xa0\xf9\x25\xd5\xbe\x96\x26\x8a\x2e\xed\x0c\x7a\x4f\xdf\xc6\x06\x41\x98\x74\x1d\x31\x9b\x23\x8d\x75\xf8\xdc\xcb\x2e\x19\x29\xc6\x59\x6e\xc2\x94\x13\x31\x04\x66\x67\x95\x46\x34\x18\x8e\x59\xf5\xa4\x2e\x75\x36\x7b\xb8\x6d\xc2\x96\x2a\x01\x5c\xa6\xc8\x4c\x3a\x14\x0d\x9d\x8c\x30\xce\x99\xff\x79\xde\xf1\x45\xfb\x75\xff\x51\xf0\x8c\x1a\x03\x1c\x8d\x4d\x1c\xda\xec\xd3\xbe\xeb\xb8\x0b\x5e\x06\x29\x32\x74\x72\xd0\x77\x9d\xa6\xde\x37\xf7\xdf\xc8\xf2\x30\xc0\x1f\x4f\x0d\xfe\x0a\x94\x0c\x58\x86\x7f\x82\xa7\x26\x2c\x89\xd4\x60\xc7\xd2\x3e\x8e\x26\x1f\xcf\x28\x72\xfe\x25\x3b\x9b\x52\x28\xac\x5a\xf0\xee\x01\xb7\xb9\xab\xa3\x1a\xb8\x90\xda\x93\x5e\x20\x19\x06\x44\x10\x17\x90\xc2\xc0\x56\x12\x41\x85\x13\xe4\x55\x3c\xe8\xbc\x1b\xa8\xc9\xf8\xaf\x9f\x71\x56\x22\x4f\x4d\xe6\x31\x23\x08\xf2\xce\x29\x09\xd2\x73\x0d\x74\x1d\xed\x71\x6a\x17\x39\xff\x75\x84\x10\x98\x36\x14\xd8\x4a\x23\x9d\x48\xd2\x0b\x6d\xbe\xba\x43\x8d\xcc\xb3\x98\xb1\xab\xa9\xba\x61\x2d\x80\xac\xa5\x73\xad\x25\xec\xb5\xb6\x69\xd7\x2e\xb2\xaa\xc6\x3c\x1b\x0d\x26\x60\xe7\x13\xb5\x0f\xc6\x36\x2d\x96\x43\x13\x4f\x29\x44\xe7\x6d\x45\x0e\xf6\x63\xbc\x38\x61\x1d\x53\x15\x7a\xd4\x6b\x76\x79\xb0\x11\x46\x40\x30\x3a\xfc\x1d\x7c\x0c\xed\x40\x58\x68\x94\xe4\xe1\x31\xb1\x61\x3e\x40\xc6\x8e\xc8\xfc\x3c\xf5\x60\x61\xb9\xdf\xab\x2d\xe5\x83\x04\xe7\xcb\x23\xc6\x19\x32\x31\x1b\x5d\xa7\x90\xb4\x35\xe8\x19\x11\x8a\x74\x61\x86\x35\x1a\x18\xb0\xc9\x27\x0a\x82\x89\xc8\x39\x49\xb3\xa7\xfc\x18\xd8\x66\xa0\xc6\xff\xcf\xa2\xf7\x8c\x65\xf5\xbb\x9c\x67\xe3\xa6\x4f\x2b\x55\xe4\x29\xf4\x74\xdd\xd3\x38\x38\xe7\xfa\xbb\xa5\x61\x41\x98\x70\x6b\xa2\xf4\x18\x9e\x40\xbd\x5a\xa0\x92\xe5\x5a\xdb\x04\x5d\xa4\x43\x52\x3a\x9a\xb7\xab\x41\xeb\x25\xcf\xce\x4e\x8f\x01\x49\xfc\xf7\x03\x35\xd7\xf5\x03\x55\xa1\x0e\x47\xe3\x24\xcd\x89\x0b\xba\xa5\x95\xbe\xb5\x64\xb5\xc2\x4f\x14\x69\x6a\xe3\x7c\x9f\xb2\xab\x27\x54\xc6\xfe\x64\x47\xdd\xdc\x03\x4d\x83\x0d\x0a\x46\x14\x3a\xce\x05\x7e\xe0\xf3\x07\xc8\x82\xe5\x11\xd0\x46\x42\x8d\x99\x87\xc6\x59\xb9\x14\x71\x85\x23\x56\x7b\xc9\xe9\x30\xf2\x38\x2d\x92\xe0\xaf\xd7\x32\x2c\x70\xf2\x13\x3a\x3e\xcc\x5b\x15\x48\x87\xcf\x81\x37\x82\x67\x54\x66\xdf\x27\xb6\x22\x24\x2a\xd2\xa2\x55\x04\xea\x1b\x2a\xe7\x58\xb5\x26\xcd\x3e\x55\xde\x0d\x16\xd8\x7d\xea\x9b\xc1\x35\x5f\x24\x93\x87\x1f\x78\xb6\xa3\xca\x63\x81\x1f\x0b\xd8\x8e\xc5\xe0\xaa\x31\xa5\x91\x83\xc1\xe7\x5e\x29\x1b\xa9\x89\x87\x1b\xdc\x20\x4b\xc6\x3f\xa1\x46\x12\xd7\xf1\xb8\x58\x44\x46\x33\x21\xf0\x08\xba\xe8\x60\x6d\xdd\x35\x65\xb0\x9c\x96\xf6\x68\xca\x8f\x7e\x9e\x98\xf8\x61\xe2\x8f\x35\x87\x89\x73\x52\x84\x09\x8c\xa4\x4d\x8f\x08\x11\xad\x0c\x3e\x6e\xe2\x6b\x8a\x6d\x4e\xba\x81\x2d\x55\x66\xdb\x50\x65\xb6\x8d\xc9\x9e\x90\xec\xe3\x2f\xb4\x8f\x3c\x49\x17\x4d\xa8\xc4\x7f\xf6\x57\xb9\x44\x84\x17\xc0\x13\xc8\x0e\xe9\x53\x7e\x17\x3a\x2f\xc0\x7a\x21\x3c\x7e\x5b\xe9\x47\x6e\x5f\x53\xf8\xca\xab\x0a\xaa\xbb\x8b\x0c\x8d\xd0\xf5\xd3\x4a\x74\x35\x4c\x3f\x8d\xff\x70\xe2\x01\x3f\xbc\x19\x79\x21\x13\x73\xa0\x8c\x9c\xd0\xab\x94\x04\xab\x61\x24\x64\x60\x46\x08\x9c\x14\x58\xc0\xfb\xe8\x86\xb1\xf8\xa1\x89\xa2\x64\xc5\x5a\xb4\x6f\xe4\xb9\xd2\xa7\xe4\x81\x37\xa1\xdc\x99\x91\x8e\xab\xe4\x5c\x9d\x81\xa9\x95\x52\x4d\x03\x9f\x42\x99\xfb\xf5\x42\x23\x40\x05\x11\xeb\xf6\x40\xa9\x47\x81\xc6\x19\xf8\x64\xa5\x0e\x73\x99\x9b\xf3\xbb\x68\x4a\x89\xdf\x3e\x52\x14\x24\xac\xf5\x8c\xc6\xfb\xd9\x5a\xdd\xba\x5c\x94\x2b\x26\xce\x69\x0a\x02\xdb\x63\x57\x47\x09\xbc\xdc\x9c\x54\x29\xf6\xcb\xef\x12\xc4\x81\xaf\x68\x27\xe3\x71\x92\xc9\x1a\x05\x40\x94\xcb\x07\x7c\x52\xfb\xdd\xcf\xb5\x47\x26\x5d\x0e\x63\x74\xb7\x45\x52\x48\xb9\x84\xf3\xb5\xb6\xc4\xc1\xb9\xf6\x28\xec\xe7\xc9\x4a\xbc\x53\x5d\x13\x44\x4e\xf1\xb4\x20\x31\x87\x14\xac\xc2\x18\x02\xa0\xa1\x9b\xb4\x71\x10\xfc\x8f\xb7\xb6\x7f\x0e\xcc\xb6\xe7\xe6\x5e\x54\x0c\xf0\x3c\x06\xc4\x27\x8a\x7d\x2e\x2b\xe2\xbe\x59\x05\x3c\x19\x81\xcc\x75\x84\x5b\x00\x35\x9f\x53\xa2\xac\xd7\x69\x59\xc3\x88\xb3\x9a\x22\x50\x54\xff\x4a\x81\x45\xf3\x62\x94\x48\x28\x0a\xbb\x4c\x24\x29\x9b\xd7\x14\xe8\xf6\xcc\x64\xaf\x7b\xe4\xcb\xcf\xb7\x7c\xd3\x07\x5d\x72\xe9\x73\xfa\x26\x4b\x3f\x1c\xc9\x0c\x06\x36\x0f\x27\x7c\x7c\x32\xd1\x15\xa3\x68\xa4\x74\xa6\xb9\x1c\x23\x85\xdb\x06\x72\xec\x57\x92\xc8\x01\xa3\x58\x8a\x3d\x50\x55\x90\x73\x9a\x16\xad\xf6\xf9\x97\x48\x6c\x2c\xb3\xcc\x9d\x2e\xea\x2b\x2d\x25\x4d\xfd\xac\xcb\xfb\x48\x7b\xd4\xb3\x83\x35\xa9\x27\xaa\x26\x49\x0c\x22\x5c\xf7\xf0\x81\x69\xc0\xeb\xbb\xa7\x40\xcb\x7f\x54\xdb\x9b\x0b\x33\x0b\x65\xf0\x51\x66\x99\xbc\xa5\x99\x34\xa8\x42\x20\xb4\xd5\xef\x1d\xfe\x32\x05\xeb\x36\xce\x88\x79\xef\x88\xcb\xdc\x03\x5f\xc5\x38\x5b\xfb\xd4\xa1\x43\x8a\x5e\x81\x9e\x3b\x93\x28\x54\x19\x15\x7c\x22\xf5\xa5\x83\x87\xb5\xb8\x93\x96\x81\xbc\xe4\x38\x09\x6c\x4c\x79\x43\x96\x89\x39\x70\xbc\x10\xae\xb0\xc4\x75\x52\x74\x12\xee\xd6\xbc\xf8\xd1\xa3\xed\x5e\x91\xe5\xc9\x28\x7c\xd5\xa2\x30\x08\x57\xc0\xc2\x46\x28\x33\xfd\xe6\x44\x41\x5a\x3d\x23\x89\x3d\x36\x8e\x92\xbe\xac\x09\xb4\xd9\x76\xc3\x85\x20\xd2\x05\x0b\x9a\x64\x1d\xf5\xae\xe3\x6c\x99\x07\x26\xa2\x04\x2e\x68\x70\x4f\x73\xf4\xc9\xb9\x76\x11\x2f\x86\x51\x24\x77\x0d\x73\xf9\x1b\x74\xd7\xac\xe9\xa5\x99\xf6\xd7\x27\x5b\x34\x4c\x3f\xff\x77\xdb\x07\xe7\x08\xc3\x20\x8a\xe6\x6a\xf8\x87\x55\x17\x04\x54\xef\x27\x67\x3f\x02\xf4\x95\xff\x0a\x01\xaa\x34\x1c\x9a\xc6\xd1\xbb\x49\x3e\x9c\x2e\x43\x0a\x38\xbe\x07\xd5\x61\x86\x96\x6b\xef\xfc\xae\x2a\xe2\x11\xb7\xc3\x5f\x77\x6d\x82\x2c\x37\x83\xc8\x94\x2b\x5c\x4b\x1a\xdc\xd6\xa5\xd3\xdb\x9a\xd0\x26\x89\xbb\x86\x9f\x26\xbb\x5e\xfc\xa9\xf8\xe1\xad\x6f\x9f\x2e\xd3\xc6\xbd\xa1\xd3\x35\x45\x36\xf0\x3b\x8a\x87\xfb\x77\x9a\x26\x3c\xb2\x61\xb2\x22\xe9\xd9\x26\x75\x96\x36\x2f\x81\x90\x98\x97\xef\xcf\x3e\xed\xc7\x02\xde\x0c\x3c\x74\xf3\x84\x96\x8e\x6e\xad\x95\x5e\x1e\x91\xf3\x23\x18\x13\x56\x90\xa1\x6c\x04\xfe\xec\x9c\xa6\x26\x9e\xe2\x78\x05\x41\xe1\x8d\x40\xa5\x23\xdb\x81\x4d\x47\x01\xf4\x22\x22\x3e\x89\x4b\xe8\xc9\xc3\xb6\xdd\x9e\xa8\x87\xf7\x78\xa2\xf8\x20\x4f\x29\x36\x15\xc4\x7f\x48\x9e\x31\xe9\x84\xf7\xb3\xa7\xb3\x35\xf8\x9a\xff\xf2\x8b\x6d\xb3\x6c\x53\xc3\xc8\x3f\x47\x1e\xe4\x58\xf7\x2e\xd5\x1c\xdb\xd1\xa3\xed\x41\x9a\x10\xee\xad\x7c\x4a\x18\x10\x81\xd5\xe1\xe3\x26\x5e\x26\x6a\xdc\x80\x47\x63\x6e\x8e\x7b\x74\x98\xfa\xc1\xb0\xd2\x0d\xba\x7e\xa7\x9d\x52\xde\x18\xfe\x68\xdc\xc0\x96\xf0\x85\xf6\xd0\x2c\xc3\x7c\x31\x8c\x08\x0b\x5a\x30\x45\xba\x69\x16\xf7\x93\xe9\xad\x24\x2c\x0c\xd5\xb8\xaf\x95\x66\x29\x66\xe3\xff\xef\x7a\x0e\xfd\x22\x0d\x53\xb6\xe4\xa8\x12\xf0\x0b\xe5\x93\x60\x2b\x06\xee\x73\xed\x95\xec\x95\x96\xaa\x86\x5f\x50\xfd\xaf\x3a\x11\xc0\xc2\x4c\x3b\xb2\x59\x26\x94\x0e\x5c\xd4\x09\x54\xc0\x7f\xd6\xcd\x8d\x74\x4d\x14\xad\x0e\x93\x44\xcc\x7d\x93\xdc\x67\x13\xe9\xdd\xd0\x9a\x65\x3d\xc4\x7a\x7c\xa2\x98\x41\x8e\xab\xf1\xdf\xbe\x19\x8d\xf1\xd5\x52\x35\x55\x44\xe6\x57\x34\x59\x68\x18\x9b\x68\x17\xfd\x25\x1e\xd8\xdd\xc0\x37\xa2\x39\xf1\xc2\xab\x38\x1f\xa8\x47\xb1\x63\x8d\x96\x3f\xb3\xdf\x62\x77\xed\x5b\xf3\x93\x49\x7b\x55\xc1\xbc\x6b\xa3\x28\x4b\x8a\x1c\x6c\x9e\x42\x96\x46\x3f\x29\x6c\x69\xde\xdb\xfc\xed\xbf\xfd\x0b\x2d\x15\x89\xac\x2b\xc9\x98\xf5\xe0\x19\x85\x7b\x5c\xb4\x71\x9f\x18\x14\x94\x66\x6f\x4b\x51\xd3\x28\x1c\x69\x6a\x4d\x1e\x2e\xdb\x29\xcd\xb2\x4a\x4b\x54\x60\x9e\x0a\xe6\x7a\x56\xa9\xdb\x0c\x9f\xaf\x4c\xdb\x70\x8a\x28\xfc\x9d\x6e\x1e\x8a\xd9\xa8\x7d\x6c\x77\x55\x83\x60\xaf\xaa\x36\xf9\x72\x98\xe6\x85\xc8\x1f\xa2\xc4\xb1\x01\xa4\x3d\x9f\x34\xb8\xa6\x97\xdb\xfd\x22\xee\x19\xcc\x1b\x34\xf2\x93\xd6\x63\xf3\x17\xdb\x2b\xa1\x8d\xfa\xae\x6c\xe5\x18\x54\x3d\x9b\x6a\x0d\x61\x2d\x0e\x2d\x2e\x7a\x91\x6c\x6d\x44\x44\xf7\x55\xd1\xf9\x35\xc5\x32\xfe\xbe\x6e\x29\xdc\x56\xd8\x3c\x28\x37\xc2\x89\x4b\x61\x56\xf1\xd6\x7e\x5f\x01\x60\x6e\xaa\x81\xb7\xd4\x66\x79\x1a\xf6\x40\xed\x5d\x2e\x01\x46\xad\x56\x10\xac\x4d\x02\xe9\xa9\xed\x26\x45\xcc\x94\x17\x6e\x98\xc1\x4d\xab\xb2\x4e\x04\xc2\x89\xb7\xe8\xc7\x71\xcd\xe7\x55\x1b\x79\x98\x64\x39\x26\x6f\x61\xaa\x7e\x99\xf6\xba\x5b\x2c\x8e\xcf\xe8\x87\xf4\x30\xf8\x58\xd3\x67\xeb\x4d\x95\xa4\x4b\x76\x84\xa6\x94\x2a\xbb\xb9\x1a\x9c\x26\xc9\xb6\x8b\x7b\x2b\xe6\xae\xfc\x55\xa9\x85\xd3\x43\x00\x62\x66\xfb\x9a\xca\x24\x91\x9a\xe1\xe5\xdc\x22\xbb\x47\xa5\xbf\x77\xff\x03\x2a\xbc\xc1\x18\xfc\x64\x47\xd1\x8f\x6e\xe2\xf1\xf3\x7c\x26\x3d\x01\x6c\xe3\x13\x70\x48\x88\x57\x1f\x6b\xf5\xbc\x57\x42\x58\x3e\xcc\xb6\x5f\xa2\x42\x07\x1f\x37\x89\x92\x98\x81\x83\xab\x62\xb3\xde\xa2\xcd\x28\x9c\xfe\x2d\x25\x54\x57\xc7\xee\xbd\xdc\xee\x0d\x4d\x46\xd8\x89\xf2\x8e\xb1\x64\xee\x2a\xee\xd1\xbb\x6a\xee\x7d\x64\x7a\xbd\x61\x68\xd2\x24\x32\xbc\x3b\xdd\x88\x89\x07\x9c\x5c\xf1\x83\x14\xfd\x51\x98\x7b\xb6\x78\xce\x6d\x2b\x79\xae\x7f\x6f\xdd\x22\x1d\x64\x9a\x80\x66\xa2\xca\xea\x95\x11\x2c\x6b\x96\xf6\x55\xd4\x4b\xa6\xbc\x6a\x30\x06\x11\x91\x8c\x4c\xad\xf9\x4e\x2f\xf0\x68\xa8\x3c\x3f\x0c\x54\x15\xed\x3c\xd0\x54\x4e\x19\xe6\xe0\x9c\xb4\x28\x03\xc5\x90\x3a\xe1\x89\x1a\xfe\x33\x45\xbe\x7b\x5e\xa3\x01\x2f\x37\xf8\xd8\xf6\x62\x92\xe6\xc3\x29\x1f\x41\x02\xdc\x87\x0d\x01\x05\x6e\x61\x3f\xff\x49\x9f\x97\x45\xe5\x3b\x21\x5e\xef\x30\x91\x69\x48\x19\x96\x50\x83\x13\x4d\x52\x4c\x59\x31\x1a\x85\xf9\x94\x67\xc1\xfb\xe1\x8f\x2a\xec\x51\x2d\xc7\x2c\x7d\x4a\xef\x41\x1b\x8d\x49\x14\x84\x05\x85\xb4\x7c\xd4\xc7\x13\x95\x06\x7c\xcc\xa5\x57\x94\xcb\xfe\x3e\x42\x2c\xa7\x70\xec\x65\xa3\x2f\xa1\x60\xe6\x74\x90\x9d\x10\xc8\x99\xc0\xcb\x6b\x32\x0b\x28\x62\x3c\xf8\x1b\xd8\x48\x46\x3b\xa1\x06\x09\x1c\x32\xf2\xf8\xef\x6b\x41\x86\x53\x81\x27\xc2\xd8\xee\xda\x06\x51\x11\xf7\x86\x96\xa7\xc4\x50\x62\x7a\x5b\x29\xc1\xbe\x5d\xb3\x63\x87\x0e\xb5\x97\x6d\x1a\xe6\xa9\x01\x59\x00\x0b\x96\xe0\xae\x45\xbd\xc4\x35\x25\x44\x5f\x51\xe1\xc3\x51\x79\xe1\x63\xc7\x54\x61\xc6\xe3\x34\x31\xbd\xa1\xb0\xa8\x02\x1f\xc1\x23\xeb\x52\xd9\x2f\x1f\x39\x4a\x1f\x8d\xb2\xed\x34\x24\x22\x44\x0c\x42\x96\x4a\x9d\x1b\xa1\x51\xf5\x76\xe3\xbf\x3c\xf0\xc5\x29\x95\x20\x6e\x5b\x53\xa9\xc6\x47\x64\xb6\xb0\x2f\xa6\x3b\xcf\x54\x33\xa1\xb9\xb9\xf6\xcf\xee\x6a\x69\x29\xf8\x83\x73\xdc\x2a\xe0\xc0\x03\xfd\x47\xee\xc7\x21\x3a\xbd\xa8\x6c\xc4\xfb\x13\xa5\x13\xc4\xfb\x91\x4f\x9a\x64\xb0\xa8\x1b\xe6\x99\xc8\xb0\xa2\xa5\x02\xf1\xa4\x02\xc3\x47\x51\xb2\xd2\xf2\x1d\x2f\x30\x02\xf2\xb1\x9b\x89\x1e\xd9\x34\x0d\xa3\x68\xda\x13\x71\xdc\x57\xc3\xf6\xf7\x70\x03\x8e\xe9\xe4\x88\x60\x1c\xde\x6f\xa0\x06\x29\x33\x9a\x71\x85\x72\xef\x47\x2a\xae\xf9\x51\x2d\x42\xf8\x39\xa2\x94\x1d\x87\x29\xcf\x53\xa0\x5a\x80\xd1\x1b\x3e\xae\x7d\xe6\xa5\xd9\xc3\xed\xae\x1d\x84\x31\xd3\xd0\x0b\x63\x3f\xbd\x2c\xa1\x0e\xf0\x15\x9a\xd8\xae\x64\x7b\xfd\xe8\xd9\x4e\x74\x23\x5c\x96\xec\xe0\x70\x9c\x8a\x62\xef\x9d\x09\x54\xaf\xe4\x0c\x2d\x4e\x40\x06\xde\x98\xf8\x82\x2c\x86\x31\xb0\x8c\xb8\xcc\x2b\x44\xc7\xe5\x53\xe2\x6f\xc2\x26\xc0\xcd\x7c\xb7\xc9\xdc\xa4\xb6\x6b\xa3\xff\x0f\x31\xb6\x26\x1d\x49\x4e\x62\xb8\xff\x2f\xcd\x5a\x5a\x43\x7e\xe6\xd6\x35\x45\x4d\x37\xb2\x7b\x5a\x8e\x46\xec\xfa\xc4\x03\xa5\x79\x62\x0e\x8f\x03\xb5\x17\x74\xe2\xee\x2a\x6d\x99\x7b\xda\x7c\x6d\xeb\xb4\x5e\x98\x75\x4f\x00\xa6\x0c\xff\x72\x92\x9e\x8d\x8c\x6c\x37\xf0\x71\xd9\x63\xe3\x24\xcd\x2d\xa6\xc5\x39\x8a\x51\x7c\x0b\xe7\x1b\x39\x1c\x57\x92\x74\x09\xb1\x8d\xa0\xcd\xca\x87\x8b\x68\x80\xc9\x71\x5d\xb6\xeb\x10\x3d\xd7\x27\x8a\x1b\x41\x73\xfe\xa7\x61\xb6\x94\x11\x68\xdc\x09\x2e\x1f\x3a\x24\xf5\x1e\x8a\x9a\x50\xa9\x3f\x85\xe5\x84\x3d\xcc\xdd\x26\x3e\x51\xf9\xe1\x09\x37\xc4\x95\x9a\xe5\xaa\xde\x36\x13\xbf\xcb\xaa\xf9\x24\x5d\xe5\xa4\x97\x33\xf8\x19\x4b\xe7\x9a\x96\xa7\xbd\xd6\x44\x86\x12\x59\x44\xeb\xc8\x86\xce\x29\x01\xe2\x73\x9f\x58\xe7\x09\xe3\xac\x48\x6d\x5a\x51\x52\xab\x90\xc1\x3e\xd6\x23\xa7\x45\x9a\x8c\xed\xbe\xf2\x7b\x61\xfa\xce\x2b\x8c\xe9\x3f\xc2\x22\xc3\xda\xfe\xd6\x44\x8d\xb6\x9e\x9d\x54\x68\xc1\xbc\x2a\x08\xcb\x35\xa2\x92\xfe\x98\x57\x0c\x30\x3e\x17\x61\x0f\x91\x3f\x70\x20\x00\xab\xf3\x7f\x68\xb9\x2a\x2d\x77\x72\x51\x75\x88\x33\x6b\x22\xee\x83\x61\xd5\x83\xc6\x92\x8f\x55\x6f\x34\xcb\xd3\x84\x28\x21\xa7\xca\x80\x46\x10\x54\x2d\xa7\xc5\x77\x9e\x56\x2e\x7c\xfd\x7d\x47\x0a\x17\xc6\x79\x9a\xf4\x8b\x9e\x8a\x20\x64\xd2\x56\x81\xa4\xbc\xca\x4d\x9a\xac\x9a\x28\xc7\xc0\xb3\x83\x46\x39\x9b\x7a\xa2\x99\xab\x72\x31\xcc\x63\x9b\x65\x2d\x72\x49\x32\x4e\xa2\x46\x4b\x54\xe9\x7c\x31\x4c\x47\x9c\x98\x20\x14\x01\x2b\x1a\x6a\xec\x37\x75\x7d\xc7\xeb\x80\xae\x20\x4d\x2f\xaf\x5d\x51\x19\xca\x5c\x63\x5d\xff\xf8\xc8\x0c\x32\x4e\x57\x4e\x74\xb3\xc5\x8e\x6a\xef\x4a\x85\xf7\x87\x68\x3e\x2c\x0b\x44\x0a\x3d\x81\xe6\x2a\x68\xcc\xf0\xfa\x76\x1c\x59\x27\x83\x2b\x7a\xe7\xaa\xa7\xbc\xde\x30\x86\x38\xdf\xee\x87\xd9\x48\x48\xc4\xa4\x69\xf3\xd6\xc4\xaf\xd4\xb7\x3e\x51\xbf\x3c\x0b\x8f\xe5\xab\x53\xad\xd9\xc3\x9b\xd7\xa8\xf1\x01\x48\xd3\x03\x4d\xa1\x72\xae\x0e\x55\xf9\xf2\x8b\x6d\x93\x4d\xf9\xe6\x08\x9a\x0a\x08\x88\x3f\xa2\x35\x23\xef\xd6\x57\x0f\xd1\xd3\x99\x52\x84\x65\x3f\x9c\x28\x52\x88\x93\xea\x49\xfe\x48\xa5\x9d\xc9\xcf\x74\xd3\xd0\xc6\xad\x0a\x48\xba\x82\xa5\x56\x30\x65\xbb\x18\x3a\x39\x60\x16\x56\xa7\xaf\x15\x91\x75\x15\xd2\xfc\xd2\x97\xa6\x34\xbf\x32\x70\x3a\x9c\x96\x75\x14\x7d\xc9\xbd\xc9\x3e\xf7\xfd\x2b\x36\x6f\x95\x0f\xc9\xb1\x0d\x39\x77\xb1\x51\x2b\xc2\x1d\x38\xd0\x1e\xa7\xc9\x72\xd8\xb7\x3b\x7c\x9f\xf4\x91\x62\xec\x3e\x37\xf1\xb9\xe8\x3a\xd9\x4e\x34\x65\xa6\x3a\xaa\x63\x7e\xa5\xc6\x2c\x37\x7b\x98\x98\x03\xa7\x15\x89\xf0\x5d\x85\xc0\xbb\x18\xf8\xdd\x7b\x55\x75\x71\x6e\xbb\x95\x9f\x26\x86\xa3\x3e\xe7\x94\x17\x66\x9c\x5a\x41\x43\x16\x38\xb4\x8b\xf9\x6a\xab\x42\x84\xed\x2b\xe1\x57\x15\xfc\xb3\x5b\x7a\xdf\xac\x6b\xe2\x25\x64\x99\x1c\xe8\x29\x7c\xc8\xf9\x40\xeb\xde\xa5\xcb\x76\xd5\xf6\x77\x68\xf0\x9b\xaa\x7a\x33\xb7\x92\x73\x87\x9e\x74\x09\xbd\x77\x86\xa2\xa8\x42\xcc\x62\xd8\x2d\x6d\x79\xf9\x97\x6e\x6e\xc8\x81\x39\xbf\x3b\xd9\xd2\x9a\x3b\x7a\xb4\x4c\x52\x9f\x52\x02\xae\xdf\x81\xa5\x86\xb9\x03\xa9\xa5\x08\x04\xf8\xb4\xf7\x89\x35\x8f\x66\xfd\x07\x1a\x77\xf3\x1a\xd5\x27\x1d\x35\x59\xe9\x00\x90\xc8\x1d\x27\x21\x2a\xb4\x60\x80\xa0\x40\x66\x7e\x99\x7c\x01\xc2\xf5\x87\x13\x45\x96\xb2\xa7\xa3\xe8\xba\xee\xe8\x06\xdf\xf7\xe8\x86\x50\xd7\xbf\x03\x4a\x3e\xd1\x65\xde\xba\x4e\x9e\x6b\x67\xb9\x1d\xb1\xeb\x95\x26\x18\x3d\x38\xe9\x8e\x3d\xe9\xf1\x8d\x91\x49\x2d\xeb\xc9\x63\x57\x9d\x9c\xa8\xb1\xa5\xb3\x4a\xd8\xf6\x6a\x05\xfa\x53\x33\x93\x47\x8f\xb6\x4d\x37\x4e\xd2\x91\x01\x21\x35\x5e\xfb\x5b\x6a\x09\xbc\xe5\xa9\x0f\xd3\x24\xb7\x99\xe3\xbb\x96\x06\xbc\xee\xc6\x2b\x41\xf7\xd8\x8c\xc2\x6e\x4b\xd5\x72\x2a\x35\xe8\x0b\xc1\xd3\x4a\x9a\x77\xd9\xc6\x84\x03\x39\x32\xd3\x48\x6e\xda\x40\xd6\x18\x93\x46\x99\x82\xd1\x94\xaf\x4c\xd0\x1d\x75\xf0\x38\xb1\x4c\x2a\x0a\xbb\xd7\x03\x3f\x9f\xf8\x7a\x75\x34\x33\x7c\x95\x0b\x1a\xaa\xfe\xe3\xdc\x51\xed\x52\xe6\x17\xe6\xdb\x5d\x9b\xef\x28\x57\x06\xfa\x8a\xef\x4d\x7c\x9b\x0e\x62\x22\x48\x53\xb6\x77\xbc\xfe\xc9\x1f\x4d\xd4\xf0\xf2\x55\x55\xfa\xe8\x25\x59\x4e\xac\x6c\x52\xcf\xfa\x11\x7d\x1b\xde\xde\x34\x61\x98\x90\xfc\xde\xa5\x8e\x08\x82\xb2\x4b\xf4\x2b\x9c\x46\x62\xc9\x20\x26\xdc\x0e\xfc\x27\x0a\x46\xd7\x9a\x50\x5c\x71\x32\x2a\x52\xd3\xd2\x03\x00\x6a\xac\x50\xa7\x60\xc3\xa4\x20\x5a\xe0\x83\x42\x60\x75\x73\xe2\x7b\x15\x37\x6b\xee\xea\xd0\xa1\xf6\x38\x89\xc2\x3c\xec\x85\x26\x56\x13\x10\xeb\x81\x6e\x45\xfa\x09\xfa\xb1\x4d\xb3\x24\x36\xd1\x4e\x65\xc9\x61\x43\x44\x94\x87\xf2\x18\xad\xf0\x04\x4b\xfc\x7d\xc5\xf1\xbb\xa1\xd5\x94\xae\x36\x76\x39\xca\x88\xb0\xa5\x64\xc7\xfe\x78\xe2\x47\x7e\xfe\xb8\x81\xae\x9d\x84\x01\x4d\xaf\x4a\xd2\x78\x91\x7e\x9f\x8f\x15\x66\x8b\x51\x10\x53\xbe\xac\x75\x0f\xa5\x0f\xdc\x0f\xe0\xa4\x82\x8e\xa8\xcf\xb4\xf6\x43\xe9\x9d\x22\x47\xbd\xaf\xe7\xbc\x10\xdf\x4b\x65\xdb\xcf\x03\x40\x49\xae\x35\xb7\x05\xa2\x21\x4d\xf2\x67\x55\xf2\x34\x4a\x8a\xc5\xc8\x0c\x2c\x0a\x42\x08\x04\x2e\x28\x8a\xd4\x07\x74\x5b\x32\x77\xea\x77\xf2\x22\x61\x28\x95\xbd\x5b\x57\x5e\x71\xbd\xee\x48\x67\xdb\x63\x93\x2e\x89\x5b\xe7\x81\x9e\xca\x70\x4f\xc3\x74\x0e\x25\x82\x91\xd7\x63\x85\xf9\x85\x4e\x35\xa2\x0f\x8c\x08\xc0\x90\x3f\xd4\xc3\x33\xc9\x72\x68\xf3\x27\xca\x7f\x64\x35\xd1\x40\x09\x56\x9c\x20\xca\x27\xa9\x5b\x7b\xbf\xfb\x38\xd0\x79\xee\x44\x0d\xaf\x42\x5d\x08\xee\x7c\x27\x76\x90\x6c\x54\xb2\x66\x0e\x78\xec\xfb\x30\xbf\xd2\xc0\xa0\xfe\x62\x3b\x4e\xd2\x7c\x68\x4d\x96\x4f\xf9\x5a\xe6\x3d\xc5\x26\x88\xe1\x10\x21\x80\x57\x73\x64\x68\xa6\xee\x52\x9e\xee\xde\x44\x33\x87\x78\x18\xdc\x15\x72\x49\xae\xb9\x54\xde\x91\xa3\x1a\x71\x2e\xbf\x45\xd1\xb5\x70\x85\x35\x18\xd3\xd4\x46\xab\xd3\x1a\xae\xe1\x67\x11\x6e\x23\x97\xf1\xc4\x3c\x33\x02\xf6\x68\xea\xbc\xf5\x92\x3c\xe7\xde\x1e\x22\xb8\xe3\x2a\x9a\x3b\xae\xe6\x5f\x68\xa7\x84\x20\x70\x3a\x32\xe3\xf8\x14\x94\xd0\xe2\x86\xcb\x48\x97\x93\xb0\xc7\x43\xfd\x08\x8d\x2e\x2a\xaa\xc9\xfd\x1d\x9f\x98\x6c\xea\xf9\xcb\x2b\x4d\x4c\x1e\x79\x6a\xe2\xac\x67\x62\xd3\x97\xaa\x35\x70\x5a\x6c\xe4\xf9\x24\x50\x69\x81\x49\xc7\x34\x54\xa9\x69\x4d\xa6\xd6\xd4\x70\xda\x54\xc7\xcb\x59\xb2\xbf\xe6\x93\x5a\x11\xaf\xf4\x15\x24\x58\x27\xe4\xc1\x22\x06\xa8\xc8\x2b\x7c\x43\xab\x67\xa2\x91\xdb\x0d\x22\x68\xd0\x72\x9a\x22\x28\xcc\x7b\x26\x3c\xdf\xbe\x59\xb6\x71\x61\x41\xa7\x8c\x92\xf5\x63\x35\x38\xb0\x86\x44\x15\xdd\xb3\x6d\x6b\x0d\x82\x0a\x63\x13\xb1\x85\x74\x22\x58\xae\x86\xb3\xde\x80\x98\x26\x29\xd8\x28\x14\x52\x2d\xb7\x46\x15\xeb\x8d\x6e\x1e\x8f\x8a\xd1\x94\xd2\x36\xbb\xa0\xf8\x9d\xae\x29\x21\xa9\xd7\x03\x0d\xe9\xb1\xe9\x60\xb5\xa5\xc4\x99\xee\x21\x6f\xe5\x13\x9d\x48\x13\xbe\x96\xba\x66\x92\x54\x11\x48\x03\xcf\x8c\x39\x6e\xf8\xa4\x92\x6e\x79\x6b\xd7\x1b\x86\xe3\x8c\xc0\x20\xd2\xef\x54\x2e\xe9\xb7\x26\xbe\xd1\x09\x1a\x0f\xfe\xff\x81\x6a\x90\xc2\xb9\xcb\xd8\x77\x03\x8a\x2d\xb5\x34\xca\x42\x4b\xdf\x59\x26\xdf\x5d\x53\xa6\x37\x8c\xed\x38\x9f\xf2\x84\x1e\x1b\xac\x13\x26\x84\xb8\xd4\xb1\x60\xa1\xcc\xc6\xa6\x9c\x3d\x36\x0e\x49\xab\xda\xe1\xc2\x99\xe7\x15\xd7\x7a\x4e\xf1\x2e\x32\x72\x51\x04\x1c\x3f\xe5\xa2\x3e\x3b\x36\x61\x9f\x9c\x9a\x42\xcc\xca\x2c\xcc\x3d\xdd\x96\x54\x7e\xa9\x1b\x25\x09\x0b\x37\xb1\x66\x12\xbc\x19\xec\x2a\x24\xcd\x9d\x98\x92\x17\xfc\x9d\xea\xd4\x31\x29\x58\x3a\xbd\xd0\x72\x9f\x59\x74\xec\xf4\x94\x58\x13\x7b\x7a\x2f\x4a\x32\x71\xdc\x3c\x03\x81\x4c\x44\x06\x22\x9e\x74\xf5\x91\x7e\x98\xda\x1e\x6a\x90\xb0\x81\xb0\x99\x7c\xbc\xa6\x33\xd6\x71\x94\x94\x89\x7b\x69\x83\x91\x7b\x7f\x2f\xf0\x63\x46\xdf\x6b\x12\x58\x5e\x36\x3d\xaf\x3d\x23\x98\x89\x4a\x59\x6f\xeb\xd5\xbb\x72\x57\xb6\xc3\x63\x6b\xcf\x54\x4b\x81\x6a\xd6\x7e\x5f\x47\xfb\x7c\xbc\x1d\xa1\xd4\xf6\x61\xb6\xcd\xf2\x70\x64\x72\x14\x50\x01\x6f\x78\x6d\xa2\x78\x96\x60\x5d\x9c\x3e\xd7\x41\xa1\x53\xfd\x33\xad\x58\xc1\x34\x87\x1c\x24\x60\x3f\x09\x14\xa3\xe5\xbf\x2a\x50\xd4\x6e\xeb\xae\x61\xd2\x0f\xb3\x71\x91\x97\xab\xd1\xa9\x44\x7f\x1b\x2f\x1f\xb1\xc4\x7f\x4b\x72\x3e\xdc\xa5\x86\x4d\xbf\xe1\x8a\x58\x71\x12\x8f\x6d\xba\x98\xa4\x23\xd7\x72\x41\x89\x0e\x39\x3a\x1f\x3b\x28\x5c\x56\x8c\x6d\x3a\x32\xe9\x92\x45\xdc\x8f\xe7\x01\x88\x35\x1f\x37\x54\x66\xda\xa6\x6f\xe3\xa4\x27\xd3\xbe\x52\x2a\x54\x65\x43\xe7\x96\xa2\x64\x59\xf0\x66\x48\x1b\xff\x74\xa2\x7b\x12\x74\x5b\xc8\x7f\x4f\xeb\x21\x80\xd8\x1e\x4b\x52\xd3\xe5\x61\x76\xd9\xf1\xba\xd1\xae\x48\x14\x69\x7a\x05\xce\x67\xde\x55\x68\xc8\xcc\xba\x62\x89\xc3\x01\x9c\x08\x14\x01\xa5\xa7\xb0\x1b\x86\xd9\xd8\xc4\x61\xaf\xca\x14\xfb\x64\x47\xa9\x79\xb2\xdf\xc4\xc9\xb6\xb5\x26\xda\xac\x3c\x19\xd8\x7c\x68\xd3\x69\x5f\x76\xbc\x4d\x29\x17\xbc\x30\xc8\x34\x44\xe1\x95\x8c\x92\xcc\x10\xff\x84\xe2\xeb\x1a\x8d\x6c\xda\x0b\x89\xf4\x1c\xbb\x52\x49\x3a\x49\x29\x76\xdb\xda\x93\x7a\x4a\x96\xd2\x36\x97\x42\x63\x90\x9c\x8f\x1b\xfa\x09\xf3\xed\x2c\x1c\x15\x91\x11\x22\x57\x51\x7e\x57\xd3\x9f\xe7\x94\xf4\xc0\x38\x4d\x5e\xb1\xbd\x3c\xdb\x51\xbe\x0a\x11\x23\xa1\x07\x23\xa0\x11\xba\x4a\x64\xac\x77\x15\xc7\xca\x77\x03\xa5\xbc\xff\xaf\x6a\x7b\x9e\x54\x09\xd2\xfe\x4a\xc2\x20\x3a\x84\x52\xaf\x07\x0a\x50\xfe\xfa\x64\x4b\xe7\xed\xc0\x81\xf6\xe7\x9e\x6a\xbd\x20\x58\xe2\x07\x9a\x03\xf4\x2c\x55\x2a\xe0\xaa\x38\x5a\x90\x1a\x32\x6d\x40\x6c\xe6\x7b\xb4\x01\xb9\x9f\x4b\xeb\x1c\x5e\xfe\x3d\x42\x0d\x88\x78\xb4\x02\xf1\xaf\x73\xff\x16\xd1\xe8\x09\x35\x69\xfa\x2e\x5c\x18\x6e\x16\xdd\x10\x98\xe7\xf5\xc0\x27\xb1\xf7\x68\xf1\x61\x01\xbc\x8f\x7b\xc3\x37\x6d\xaa\x6a\x60\x69\x5a\x0d\x73\xe0\xc2\xb4\x6c\x5b\x53\xb4\xa7\xdb\x3a\x0e\x21\x90\x92\xda\x10\xd3\x6c\x62\x15\x63\x10\x96\x8f\x1b\x5f\xb7\x1d\x91\x39\xb6\xac\xe3\x88\xb4\x75\xdb\x9a\xa6\xde\x68\x20\x27\x9b\x6d\x9b\x6c\x58\xa4\x59\xce\x41\x20\xb6\xe9\x5b\xba\x8f\xf0\x56\xd3\x98\x00\x92\xd4\xd8\x46\xc8\xa0\xb8\x14\xa8\x4a\xf5\x97\x14\x99\xf6\x83\x26\x21\x97\x6e\x6a\x89\x69\xa1\xa5\xda\xa7\x55\xa0\x9f\xa7\x85\xe8\x15\xb4\x94\x19\x32\x35\xef\x40\x9b\xde\x49\x7d\x5f\xd1\x09\x9f\x0f\xfe\xe3\x86\xc2\x63\x48\x53\x73\x7f\xef\xe7\x3d\xc5\xc4\x94\x62\x11\x85\x94\x9b\x08\x5e\xb7\x94\x5e\x91\x9b\x0e\xf9\x3b\x4f\xfa\xf8\xfc\x2a\x72\x70\xe9\x51\xd3\xd3\x02\x6d\xea\x7f\xc2\x30\x4c\xec\xa1\xe9\x8e\x17\x12\xd9\x0f\x7f\xc1\xdd\xfb\x89\xeb\x91\xfd\xe9\x4f\xac\xa9\xb1\xd0\x9d\x04\xfc\x64\xe0\x78\xa0\x18\xd1\x6e\x4c\xd4\x0e\xfc\xe5\x40\x85\xa5\xa8\xc6\x8a\x66\x8e\x1a\xb1\x45\xbc\x8a\xc7\xf9\x93\x6b\x4f\xa9\x1e\x0b\x01\x50\xa0\x48\xaa\xf5\x18\x25\x41\xa5\xad\xc4\x41\x8d\x26\x53\xbc\xe7\x7c\x4a\x3f\x5c\xb6\x69\x16\x2e\x86\xb6\x8f\x72\x2e\x92\xd1\xcd\x40\x61\xad\xf7\xad\x79\x30\x37\x46\xf0\x64\x7a\xaa\x21\xe9\x25\x6c\xfb\x72\x68\x57\xb0\x41\xdc\x64\xb7\x22\xef\x6f\x5a\x87\x59\xd8\xb7\x51\x18\x5b\x9e\x16\xc0\x65\x3e\x56\x19\x1f\x0a\xc9\x72\xdc\xe0\xe6\x92\x5e\xaf\x48\x3d\x1b\x3f\x1b\x10\x05\x7c\xbc\xe7\xd4\x3f\xc6\x91\x59\xdd\xe5\x0b\x31\xa7\x60\x7f\x9c\x34\x5e\xf9\x46\x58\xf3\x9f\x76\xab\x12\x13\x90\x11\x9f\xf3\x6a\xde\xee\x89\x8e\x5f\xbe\x9b\x6a\x52\xbd\x1f\x66\x66\x20\xfd\x17\xb1\x68\xe8\x6c\xf1\x71\xd3\x83\x48\x6d\x56\x44\xb9\x5b\xd5\xc2\x06\xeb\x6d\xee\xb6\x35\xef\x3c\x5a\x35\x62\xac\xf2\x0d\xf4\xad\x01\x60\x00\x79\xc7\x3b\x81\x7f\x65\xa0\x91\xde\xbc\x46\x1c\x7b\xd7\x9a\x60\xcf\x2b\xd6\xc0\x2b\x3a\x82\xcd\x87\x8a\x88\x19\x01\x15\xaa\x6f\xdf\x42\x21\x48\x86\xbb\x74\x46\x54\xf4\x2c\x09\x5c\x3b\x82\x15\x27\x4a\xf0\x55\x58\x55\x2c\x78\xd4\xb7\x99\xa0\x5e\xe1\x63\xee\x04\x4a\xfd\xf6\xfd\x5a\x81\xf2\xd0\xa1\xb6\x8d\xfb\x28\xb2\x8b\xec\x97\x82\x93\x6e\xd4\x3e\xf0\xc2\x6c\x7b\xc5\x46\xa8\x06\x4b\xd7\xbc\xbc\x3c\x69\xb3\xfb\x8a\x52\x36\xb6\xe4\xcd\xb9\xc0\x81\xae\x36\x6c\x8a\x28\x57\xb4\x1c\x71\xdf\x39\x55\xf7\xef\x26\x2b\x4b\x36\x55\x1a\xa0\xbf\xa5\xf9\xe7\x7f\x2b\xf0\xe4\x34\x61\x14\x15\x59\x9e\x9a\x32\x68\xd4\xe3\xb5\x6f\x28\xfd\xe0\x5b\x4a\xd1\xfc\x16\xbe\x88\xff\xa8\x82\x15\xcb\x53\xb3\xc3\xcb\x48\xfc\x10\x0b\x54\xa8\x2e\xe9\x89\xa0\xea\x06\x1a\x1a\xe6\xf8\xa0\xd5\x80\xe3\xdf\x76\xb0\xe1\x51\xb9\xe6\x22\xb3\xca\xb7\xa0\xa7\x74\x85\xab\x5a\xc5\x18\x10\x98\xc3\x06\x07\xb6\x77\xdb\x9a\x07\x4c\x6f\xeb\xf8\x64\x6f\xc5\xc4\x7d\xc3\xb7\x89\x2c\x0c\xa3\x93\x78\x2c\xa8\xce\x21\x0a\xfd\x50\x53\x04\xfe\x78\xf2\x49\x2a\xc7\xe5\xab\x29\x93\x67\xe1\xce\xe5\x19\xd9\x89\x82\xb3\x9d\x6e\x18\x9c\x5e\x68\x87\x71\x2f\xf2\x02\x6c\x3c\xeb\xac\xc2\xdb\x4b\x0a\x76\x5b\xe4\x43\x33\xa2\x9e\x90\xf0\x4a\xe3\xc7\xe4\xac\xe5\xa4\x79\x6e\xa8\x80\xe1\x92\xae\xb8\x7c\x5c\x4b\xdf\x16\x66\xda\xe3\xa4\xb7\x64\x45\xf5\x52\xe0\x0b\xbe\x2d\x71\xb5\x06\x9d\x9d\x3d\xdc\xce\x93\x63\x61\x2f\x89\x92\x81\x54\xfb\xe1\x5e\xbe\x15\xf8\x92\xfc\xb7\x1a\xe3\x88\x30\x0e\xf3\xd0\x44\xd1\x6a\x4b\x6b\xfb\x03\x9f\x27\x34\x2b\xcf\x28\x57\x12\x67\x61\xe9\x98\xa7\x55\xa3\x1f\xe2\x7f\x02\xd2\xf6\x04\x75\xb0\x7e\xfc\x37\x8d\x8a\x7b\xa9\x1d\x99\x3e\xaa\x01\x78\x29\xac\xcb\xcf\x27\x6b\x0d\xb5\xf5\x5e\x32\x1a\x47\xa1\x9b\x25\x96\xac\xcb\xaf\xdc\x33\x0d\xdc\xcd\xf3\xed\x22\x0e\xf3\x61\x12\xf5\x1d\x82\xc2\x4d\x85\x94\x2f\x43\x02\x8c\x86\x1a\x4f\xb2\x6c\xd3\xa1\x29\xa2\x69\x55\x84\xb9\xaa\x76\xf7\x54\xc7\x8f\x8e\x6d\x68\x99\x9f\x53\x1e\x02\x3a\x48\xe2\xf0\x55\xe7\x72\x50\xb9\xc2\xb0\x32\x1f\x77\x7c\x09\xb4\x9b\x30\x7d\x95\x47\x7c\x11\x63\x80\xa0\xbf\x7c\x42\xde\x8d\x92\xde\x12\x3d\x3e\x27\x05\x73\x96\x42\x03\x3e\x56\x7d\xa6\x2c\x59\xcc\x57\x4c\x6a\x77\x29\x08\x80\xce\x60\xdf\x46\x70\xcc\x27\x1a\xbf\xf2\x3e\x02\x0c\x27\xcd\x32\x27\x2d\xc1\x8b\x70\xfd\x82\x27\x90\x7b\x4d\x6d\xb2\xb8\x48\x75\x3e\x6f\x20\x5a\x6b\x4a\x9e\xcb\xd7\x1e\xb2\x3c\x0d\xfb\x82\x7f\x42\x1f\xe2\xa2\xa2\x21\xbb\xd8\x24\xa3\x15\x9b\xf1\x30\x1f\x9a\x56\xeb\xf0\x97\x1b\xe7\xff\x9a\x66\x52\xba\xb6\x67\x8a\xcc\x2a\xc6\x0f\x50\x38\xf0\x71\xa3\x3a\x56\xd7\x9a\xbc\xca\x6f\xa1\x98\x30\x2f\x37\x39\xc4\x64\x14\x87\xdd\x02\xc6\x4e\x1e\x6a\xcb\x69\xcf\xbd\xdd\xb8\x28\xb9\xad\x68\xe2\x5c\xec\x14\x2a\xb8\xef\x06\xaa\x9c\xfb\xae\x7a\xb6\x03\xc9\xf0\x8e\xcc\xb8\x60\xb4\xfc\x11\x3e\x56\xb5\xbc\x41\x94\x74\xb1\x32\x5c\xe3\xe2\xe0\x9c\x6b\x5c\x34\xf4\xc3\xba\x45\xf9\xde\x68\x4f\xa1\x2e\xff\x16\xed\x29\x3e\x9e\x68\x13\xf0\x95\xc2\x42\x4a\x40\xed\x08\xac\x06\xd9\x1e\xf2\x8a\x17\xa3\x24\xf1\x53\x00\x5a\x6e\x86\x8f\x6b\x36\x58\x0c\xf8\xc8\xf4\x56\xa7\xfc\x1b\x43\xe1\x5b\x66\x37\xe9\xe9\x20\x17\x7f\xa4\x6a\x06\x61\x1c\x27\x63\xd3\x53\x90\x57\x90\xae\xf0\xb1\xab\xa7\x8c\xb3\xd5\xde\x30\x01\x5f\x1e\x8c\x25\x56\xf4\x5d\x85\x8f\xf6\xbc\x8d\xa5\x23\x89\x6d\x2e\x19\x93\x8b\xf2\x94\xe6\x96\xe2\x0c\xef\x9b\x91\x71\xf4\x73\x70\xab\xc0\xdd\xf2\xb1\xe6\xed\xb5\x34\xde\x19\xdb\xfe\xb4\x2f\xa1\xde\xd1\x28\x52\x0e\xc6\x5d\x77\xdd\xf7\xe1\xee\x55\xf5\x38\xf2\xe1\x6e\x2a\x3d\x88\x9a\xbf\x0f\x4a\xb8\x5a\xe6\x4e\x34\xfd\x1b\x0a\xaa\x58\x13\xff\x37\xf6\x39\x4c\xc7\x77\x27\x3e\x13\x7d\x54\x9d\x9b\x6b\x9a\x80\x4b\x8c\xe7\x8a\xc6\x0e\x99\xee\xf8\xc1\xac\xfb\x9a\x3c\xb4\xc6\xf3\xfd\xb9\x76\x64\xd1\x09\x01\x48\xe2\xb4\xd6\xfd\x3f\x5d\xd1\xa0\x7d\xa5\xc8\x72\x21\x5b\x85\x83\xf8\x81\x52\x9c\x3e\xab\xea\xc8\xef\xaa\x28\x24\xb7\x51\x94\x1b\xe6\xeb\xd8\xbc\x16\x20\xa2\x6d\xe6\x3d\x4e\x56\xd8\x39\x28\x42\x88\x97\xe5\x44\x8f\x57\xf4\x2c\xe8\xd7\x9b\xd9\xc3\x1b\x5c\xfa\x20\xf5\x53\x82\xec\x1f\x18\x53\xc7\x27\xb5\x0f\x1d\xfe\x32\xb0\xd3\x5c\x2c\x17\xe6\x5c\x8f\x8f\x6c\xb2\x8f\xb3\xed\x71\xb9\x58\x57\x15\x5d\x39\x6b\xad\xf0\x49\x63\x08\x20\x6a\xde\x0c\xd1\x46\x94\xc1\x0c\xf6\x28\x4d\x41\xfb\x7e\xf3\x5a\x03\x0b\x2a\xa1\x7f\x8b\x08\x46\x8c\x3e\x82\xd7\x7e\x23\x50\x00\x88\x1b\x4e\xda\x6a\xd5\xc4\xac\xaa\x3e\xef\x09\x0f\x3d\xb4\xea\x26\x56\x1b\x50\x87\xef\xaa\x6a\x8a\x1d\x75\x4d\x96\xad\xaa\x3a\xf5\x87\x81\x62\x19\xff\xb0\x76\x65\x44\xca\x99\xdb\xd4\x66\xb9\x6c\x47\x27\x6e\xe4\x85\x8e\x6a\x19\xe2\xc2\x4c\x3b\x1c\x8d\x23\x26\xe6\x3a\x22\x82\xa3\xa8\x54\xf0\xf1\x64\x9f\x5b\x5d\x45\x66\xf7\x12\xec\xcf\xe9\x0a\x78\xd6\xdc\x56\xa7\x34\x3e\x30\x11\x4c\xb5\x01\xa4\xc2\x87\x81\x1e\x5b\xa4\xbb\x07\x66\x06\x85\x7d\x07\x67\xf0\xe8\xf0\x27\x00\xf3\x72\x0a\x75\x8e\xc1\xfb\x22\x92\x2b\x6c\x81\x27\xd6\xf6\xeb\xf6\x5d\x34\xad\xaa\x6e\x7b\x29\x4c\xc1\x28\xef\x3d\x65\x90\x20\x66\x25\x46\xad\x49\x64\x34\x29\xd2\x29\x58\x0a\xe4\xfc\xb9\x42\x79\x70\xf1\x4b\xc8\x72\x1a\x98\x81\x17\xed\x8a\x0c\x24\x62\x09\x5e\xd6\xeb\xf1\xb2\x82\xb9\x75\xd3\xa4\xa5\x59\x5a\x79\xb8\x89\x4f\xb4\x1c\x6e\x12\xef\xf1\xd4\xfa\xcf\x74\x1c\xce\xfd\xd6\x33\x1d\x35\xf0\xb1\x73\x4d\x91\x8e\xde\x2c\x9f\xd9\xe6\x05\x0e\xd0\xe1\xd4\x3e\x9a\xa8\xb6\x0c\x14\x7e\x71\x87\xd3\x18\x1a\xc0\xc3\xaa\x2f\x91\x72\xcb\xf4\x43\x8c\x8a\xf1\x15\xbb\xb1\x3b\x45\x82\xe2\x18\xfb\x87\x5d\xc8\xb4\xa3\xca\x7c\x42\x97\x9c\x4f\x34\x93\x95\xc7\x79\x0a\x5a\x30\x5a\xb6\x48\x7c\x7f\x55\xd1\x8f\xfe\xaa\x22\x4f\xe8\x0d\x8b\x78\x49\xeb\xd2\x7e\xa0\x79\x0e\x3e\x00\xed\xb4\x3c\xb9\xc5\x9f\x6a\x1d\x38\xc0\xd9\xf3\x37\xb0\x74\x50\xf7\xfa\x5a\xd0\xfa\xa5\x2f\x72\x8a\xc5\x4b\x52\x3a\xf5\x6a\x24\xea\x0e\xf4\xd1\xb0\x0c\x6f\x20\xfb\x16\xa5\xcf\xf2\x02\x10\x11\xdf\x25\xdc\x01\x5c\xd1\x7b\x01\x31\x67\xb9\x62\x7f\xb9\x09\xf0\xde\x6e\xc2\x3e\xc0\x5f\xec\x24\xa5\x2a\x9e\x99\x21\x7c\x0f\x70\x32\xf7\xb1\x9f\x50\x40\xd9\xd4\xb4\x24\xf7\x82\xa9\xf9\xd9\xc3\xfc\xf1\x0f\xf0\x5e\x37\x1f\x06\x9e\xdc\xff\xbd\xc9\xf6\x9f\xe6\x4a\x12\x1b\x15\x84\x1c\x0f\x26\x9e\x88\xe9\x4f\x69\x27\x49\xbd\xad\xdc\x08\x28\x5f\xdc\x99\x28\x9e\xb2\x16\xe5\xac\x70\x02\xdb\x3b\xe4\x66\x59\xc0\x82\x3b\x92\x8e\x55\xfb\x25\x21\xc5\x3c\xad\x56\xeb\x5f\x3b\x7a\x94\x1a\x88\xe0\x2e\x03\x1e\x11\x0e\xf8\xc6\xa4\x75\xf4\xa8\x83\x01\x6b\x16\xa8\xdc\xa6\x5d\x13\x2f\x4d\xfb\x8e\x0d\x1b\x00\xe0\x84\x79\x70\x1b\xcd\x5c\x46\x3a\xf1\x60\x50\xad\xa6\x71\xf8\xcb\xe4\xd7\xc8\x94\x39\xfa\x08\x25\x19\xbc\xd5\x87\x3c\xd7\xee\x26\x49\xe6\xe6\x49\xb9\xf6\x8d\x17\x27\x85\x70\x7f\x73\xf3\x5f\xfa\xf2\x94\x1e\x1f\x78\x5d\x25\x46\xcc\x3f\x8a\xf4\xef\xba\xaa\x6c\x80\x04\x55\x91\x33\x4a\x71\xc6\x63\x70\x1e\x78\x15\xb4\x93\xf5\xce\x3b\x67\x81\x49\x11\xeb\xde\xec\x76\x6c\x7e\x3d\x75\x2e\x72\x73\x75\xc0\x61\x9a\x44\x11\x17\xdc\xb0\x13\xb9\x6f\xc7\x27\x35\x37\xb9\x30\xf3\x62\x3b\x2b\xb2\xdc\x94\xe1\xda\x94\xaa\xcc\x5e\x53\xd3\x57\x1b\x9a\x89\xff\x5b\x35\x8f\x74\x70\xae\x1d\xdb\x41\x92\x87\xc6\x33\x86\x3b\x78\x4d\xf9\xe3\x7c\xd2\x80\xa8\x51\xba\xea\xf8\x71\xf0\xf9\xbd\x19\x7c\xb2\xc8\x7a\xc3\xa4\x7d\xd7\xf6\xd3\xa4\x87\xc6\x8c\x88\x0d\xf8\xda\x8c\x96\xe5\x89\xac\x1d\x49\xef\xa2\x11\x1d\xe7\xdf\x66\xdf\x8e\x0d\xf8\x5c\x59\xf6\x83\x91\xd8\xe8\xe2\xa0\x5b\x7f\x4a\xe9\xcc\xa0\x8a\x2f\xf9\x64\x43\x65\xb3\x17\x85\x36\xce\x2d\xab\xeb\xa3\x2b\x73\x4d\xf3\xff\x5f\xd3\x4a\xae\x71\xff\x69\x2c\x40\x38\xa4\xfb\x1a\x81\xf0\x19\xef\xf3\x0e\x3d\x4b\x2c\x4c\x8e\x05\xa1\xb4\x7c\x15\xb2\x1c\x2c\x95\x3d\x84\x54\xc4\x22\xd8\xdb\xa1\x3b\x70\xec\xc0\x07\xa4\xeb\xb5\x9f\x88\xb6\x84\x48\x4f\xf1\xf1\xec\xd4\x7e\xe3\xe2\xa4\xf5\xc2\xac\xc3\xd8\x96\x5b\x0e\xc7\xd7\x34\x52\x86\xf1\x34\x88\x7d\xf6\xac\xf9\xa1\xc6\x7d\x4d\x15\xdb\x61\x31\x4a\x38\xeb\x82\x69\xfa\x98\xb6\x1b\x1f\x6b\x20\x47\x32\xb2\xd9\x8e\xd6\xec\xe1\xcd\x0b\x30\x93\x4e\xfb\xc4\x49\x8f\xdc\x50\xac\x4b\x3c\x1c\x2c\x7a\x2d\x3e\xce\x2d\xd2\x01\x27\xf2\x52\x16\x56\x25\x62\xc5\xd7\x99\x5a\xd3\x5f\xdd\xe5\x69\xb3\x4f\x05\x9e\x4e\xfb\xd4\x44\x31\x53\x30\xb7\xaf\x60\x7c\x5b\x8e\xcc\xf2\xde\xa4\x82\xf7\x55\x3c\xe2\xdb\x3b\x9f\x34\x28\x6e\xe2\x63\xa1\xcd\xa1\x80\x8d\xb5\x05\xee\xe8\xca\x82\x45\x98\x54\x97\x77\x3d\x7a\xb4\x6d\x8f\xd9\x5e\x91\x8b\xb8\x0f\x5e\xc8\x35\xe5\xc7\xea\x59\x42\x69\x4c\x7b\xa9\xe5\x84\x05\xdb\xee\x9e\x82\x51\xde\x73\xc5\xc1\x41\x5a\x8c\xba\x11\x04\xb6\x79\x34\x06\x37\xc5\x9c\x6c\x1d\x7f\xeb\xd7\x15\x69\xf2\xdb\x8a\x6f\x77\xd1\xf0\x80\x20\x16\xed\x79\xfa\x1d\x3e\x56\x3b\x20\xca\x51\xd9\x40\x71\xf1\x84\xa6\x7e\x3a\xa1\x0a\x77\xa9\x5d\x4c\x7a\x45\x26\x54\xc5\xf0\xf4\xd3\x1d\x82\x08\xf1\xc9\x9a\x9f\x71\xce\x92\x5e\xa8\x8b\x89\x4d\xa3\xe7\x4d\x82\x08\x59\x31\x18\x70\xc0\xad\x60\x0a\xe7\xb1\xe4\x85\xf4\x55\xb7\x48\x63\x88\x7f\x7a\x3c\xe2\x35\x25\xec\x75\xad\xa9\xbd\x1c\xc6\x8b\x54\xb2\x6c\x29\xca\xc6\xab\xda\xd5\x68\xe3\xe4\xa8\x92\xa3\x55\xd5\xe9\x7e\x80\xeb\x71\x41\x49\x19\x62\x08\x9f\x1e\x59\x06\x61\xbe\xa3\x47\x85\x0a\xee\x85\x1a\x6a\x75\x61\xa6\x6d\x59\x2f\x82\x75\xd6\x15\xa0\xab\xee\xb4\x8e\xcc\xcc\xb7\x33\x13\x2d\x9b\x81\xa5\x15\x0b\x0b\x08\x6a\x03\x9e\x2c\xa5\x5e\xb7\xc4\x09\x5b\x88\x7a\x5e\x9a\x6f\x1f\x9c\xdb\x4b\xd7\x8d\xf8\xf2\x7f\x51\x32\x52\x77\xe0\xbc\x54\x17\x71\x4e\x43\x9e\xa4\x3a\x08\x42\x21\x11\x1b\xa6\x9b\x93\x7c\x59\xf5\xf4\x6e\x51\xa3\x9b\x3f\x41\x73\x23\x6e\x96\xb9\x5c\x2c\xb0\x6e\x27\x27\x7f\xe9\x93\x0a\x37\x61\x7f\x94\xa4\xb1\x2b\x08\xc0\xc4\x9c\xa4\xd5\x2b\x2c\x64\x0a\x57\xfe\x4e\xed\xb9\x1e\x99\x69\xf7\xfa\xbc\x26\x84\x36\x86\x3e\x20\x9e\xfd\x49\x57\x0e\x1b\x9b\x30\x95\x52\xbd\xf4\x5a\xfc\xfe\x3d\xa7\xa7\x63\x43\x5b\x1c\x9b\xd2\x9a\x1a\x80\xff\x62\xa1\x31\xce\x47\x08\x7d\xfd\xe0\xe9\xc8\x9a\x78\xa7\x96\xb0\x3e\x47\x8f\x50\x86\xc0\xcb\x87\x23\x60\x51\xdf\x82\xfc\x98\xde\x0c\x9e\xff\x6d\x58\x3f\xfe\xb0\x42\xba\x52\x3b\xbc\x18\xb7\x3c\x22\xe9\xb2\xea\x41\x5e\x76\x3d\xc8\x3c\xb5\xb6\x22\x98\x84\xda\x33\x56\xc9\xe3\x8a\xd2\xb5\x17\x7e\x27\xb0\xa7\xa1\xa1\xb7\x7d\x8a\xb6\x6e\x47\x47\x25\x8b\x3c\xa1\xec\xe6\xfb\xca\x58\x1e\x8d\xeb\x56\x47\x69\x36\x1e\xa7\x90\x1a\x3e\x63\x5d\x97\xa3\x6e\x81\x00\x5c\x68\x40\x95\x67\xa1\x6d\x80\xef\x6d\xad\xf9\x7b\xba\x3d\xf1\x9d\x81\x8f\x2b\x64\xcf\x49\x6a\x15\xa5\x0c\xc8\x1a\xf9\xb8\xa9\x96\xd2\x4d\x93\x62\x30\xcc\x81\x4b\x05\x77\xce\xfa\x44\x05\xc1\xa7\x82\x2d\x63\x3a\x72\xff\x37\x02\x0f\xd2\x5b\x19\x5a\x93\xef\xf4\xe0\xf1\x56\xa7\xdc\x7c\x82\x89\x2e\xbf\x40\x52\x72\xfa\x19\xe1\x76\x55\x96\xea\x92\xe2\xeb\xfd\xf9\x7a\xe5\xb9\x0c\x52\x53\x6b\xc7\xce\x16\x6a\xda\x04\x61\x5a\xd0\x5a\x3f\x23\x8a\xa1\x30\x01\x81\xf5\xa2\xc3\x86\x2b\x8a\x09\x82\x4b\x3a\xc2\x98\x50\x6e\x57\x6c\xea\xed\x1d\x85\x27\xe4\x67\x82\xd4\xfe\xbd\xa6\x1e\xfc\x38\x0d\x97\x4d\x5e\x06\x95\xd8\x42\x08\x6f\x3e\x50\xa5\x8e\x0f\x34\x16\x3e\x2d\x53\x12\x55\x0c\xe4\x00\x5f\x30\x1f\x0e\xd6\xb8\xfd\x29\x8a\xbb\xe4\x4d\x37\x55\x9c\x7a\x91\x09\xbb\x49\x1a\xdb\x56\x65\xc4\xa4\x3a\x7d\xe2\x7d\xdc\x2f\x7e\xfe\xf3\x53\x0a\x56\x07\xfa\x63\xc7\xad\xec\x89\x4d\xb4\x1c\xca\x38\xb5\x83\xd8\xc4\x60\x1c\x95\xd5\x44\x0f\x57\xb4\xb9\x3c\xfc\xff\xa6\x42\x6f\x66\x61\xb4\xc4\x88\x5b\x54\x46\xdf\x9d\x78\x08\xc0\xbb\xba\xa7\x32\x34\xe9\xe2\xa8\xc2\x8b\x73\x51\xf3\xe2\x5c\x74\xc1\x40\xd7\x44\xc0\xe6\xba\xc9\xec\x6b\xf4\xd2\xf0\xe3\x80\x4a\x20\x21\x7d\x4f\xf5\xd0\xeb\x7a\x61\xb3\x87\xdb\x26\xce\x56\xb8\x4a\x0f\x88\xf1\x37\x03\x05\x7d\xff\x66\x53\x79\x96\x30\x70\x2c\xe8\x86\x54\x75\x8d\xd6\x20\x1f\x37\xea\x4d\x0c\xc3\x7c\x8a\xb6\xb7\x8c\x0f\x2a\x4d\xd6\x3b\x81\x07\xb0\xd6\xf9\xe4\x0f\x7f\xd9\x69\xe1\xf0\xaa\x42\x0f\xf7\x91\x52\x0f\x7c\x34\xd9\xef\x3d\xf4\xb2\x4d\x77\x53\x55\x01\xde\x7b\x43\xcf\xd5\xa1\xeb\x89\x98\x07\x9a\x44\xc8\x27\x1e\xea\x97\xfe\x98\x9e\xa5\x0c\x01\x63\x09\xe1\xc9\xbe\xa6\x86\x9e\x3f\x54\x70\xd0\xae\x8d\x42\x4b\x4a\x6d\x0b\x33\xdc\x46\x38\x0b\x80\x0d\x9f\xa8\xe9\x58\xb3\x98\xdb\x34\x4e\xca\x54\xb5\xb4\x9d\x52\x28\xf3\x5e\xe6\x4f\x28\x33\xc0\x2b\xbf\xa9\xa0\xdb\x69\x11\x2f\xd9\x08\xd1\x16\x8c\xe1\x15\xbc\x2a\x3e\x71\x3d\x75\x34\x01\x4c\x5e\x75\x64\xe0\x2c\xe7\xe3\xb5\x26\x7c\x73\xd7\x66\x61\xdf\x66\x04\xc7\x55\xbc\xcd\xf3\x0e\x4b\xf3\x69\x15\x9f\x8f\x6c\x3f\xf4\x48\x5c\x99\x03\x51\x33\x21\xb5\x17\x79\x70\xae\x9d\xf4\x7a\x26\xf3\x83\xd3\x8c\x89\xad\xe0\x63\x75\x9d\xfd\x58\x1e\xb2\xfc\xe6\x17\xfc\x7c\xf6\x9c\xa7\x92\x11\xbf\x3d\xb6\x69\x56\x48\xdb\x57\xc4\x77\xcb\x4b\x11\xed\xdd\x06\xae\xd7\xae\x1d\x25\x26\xde\xd2\x42\x7d\x43\x0d\x02\xbc\x31\xf9\x4c\x35\x60\x3a\x32\x33\x5b\xfe\x47\xd3\xe2\xa8\xb1\xb0\x26\x00\x4f\x97\x05\x5e\x23\xe4\x81\x56\xe1\x4c\x5e\xb5\xf1\x94\x42\xe2\xb0\x84\x28\x92\xc5\x87\x81\x06\x6f\x7b\xb8\x66\x94\xa4\x79\x68\x5b\x8a\x06\x66\x3d\x50\xcc\x2f\xeb\xae\xfc\xdd\x4b\x8a\x38\xe7\x3a\x3b\xd9\xef\x53\xcf\xa2\x6c\x41\xfd\x91\xcf\x41\x42\x52\x82\x32\x7f\x55\xe4\xad\xb0\x96\x1c\x62\xdd\x13\x45\x9e\xad\x71\x0c\xfc\x5c\x3b\x4a\x92\xa5\x96\xea\xd1\x43\x2b\x45\xc2\xe5\x27\xb5\x78\xe4\xc8\x44\x2d\xc5\x44\x0c\x8c\x06\x1f\x77\x3e\xe3\x5f\xf0\x30\x21\xc7\xdb\xa5\xe6\xee\x82\x60\x56\xa0\xf1\x21\xaa\xb7\x0d\xd4\x3f\xbd\xd0\x2d\x6d\x99\xe2\x55\x3e\xf9\x8c\x0b\xd2\xc6\x66\x35\x4d\xa2\x68\x87\xca\xfd\xbe\xaa\xa3\x27\x8c\xd4\x63\x86\x0c\xe5\x46\xd8\x4c\x9e\x9a\x17\x89\x17\x9f\x5d\x2c\xdb\x38\x2f\x52\xbb\x07\x26\xc1\x4d\xf8\x3a\x0a\xfb\x87\x60\xf5\x17\x81\x17\xfa\x5d\xc7\x48\xe3\x07\x19\x51\xf3\xe4\xbf\x02\x9b\x9e\xcc\x2c\x2b\x4e\x31\xee\x46\x00\x87\xb5\xb3\xe3\xa0\xd2\x76\xd9\x46\xbb\x5c\x21\xa3\xf3\x19\x25\x70\x78\x5a\x53\x2f\x70\x38\xc6\x1a\xd8\xb8\x18\x41\xdf\x54\xb0\x54\x0a\xf6\xd6\x24\x82\x9b\x5a\x92\xa4\x6b\xf9\xd6\xf3\x6f\x04\xbe\x25\xfd\x1b\x4d\x7b\x2b\xcb\xd3\x62\x30\x70\xca\xb9\x92\x98\xa8\x94\xe2\x7e\x55\x69\x30\xcd\x3e\x43\x6f\x10\xd7\xb4\xaf\xa3\x4a\x20\xd3\x65\xc0\xb7\x79\x06\x05\x16\x78\x98\x4b\x28\x1e\xe2\x99\x63\x2c\x14\x39\x01\x9a\x59\x78\x2f\x4f\xac\xd1\xb3\x70\xc2\xb7\xb3\x87\xab\x5c\xd4\x6c\xc4\x2b\x72\xef\x37\x83\x0a\x67\x7d\xb9\x0c\xf1\xf8\x2e\x06\x4a\xd5\xe2\xe6\x44\xb3\xd8\x53\x98\xcb\xe2\xd0\x54\xb0\x45\x10\x35\x1f\xa8\x2e\xe9\xa9\xc0\x4f\xb8\xff\x10\x6f\x02\x8f\xe1\x69\x2a\xfc\x88\x20\x6f\x03\x56\x24\xb5\x9e\x49\xc1\x59\xfd\x89\xb6\xfa\x4a\x0a\x11\x0d\x4d\xb0\x7d\x01\x52\xf1\x8e\x9a\xb8\x7e\xc7\x03\x51\x7f\xe1\x89\xf2\x7a\x10\xd4\x3d\x64\x07\x87\x80\xe6\x36\x82\x53\xd7\x22\x5f\x98\xe1\xec\xfc\x8e\xa2\x03\xfd\xd5\xa7\x51\x3b\x26\x1b\xf8\xfe\x5f\x58\x73\xe5\xb7\x7f\x00\xa5\x1f\x54\xbb\x3e\xb3\x56\x11\xa1\x2a\x7d\x1a\x19\xc7\x9f\xfb\xa9\xce\x7e\xb7\x96\xb3\xcc\xa6\x3b\x2a\x7c\x92\x2d\x27\xbe\xf3\x40\x03\xf3\xe8\x52\xf0\x98\x37\xb0\x16\x50\xeb\x78\xa6\x46\x1a\x4a\x61\x68\xd2\x75\xca\xac\x3c\xc2\x46\x4b\x43\xc6\xd9\x94\x34\x40\x12\x97\x7e\xa6\xe5\x53\xa0\x0d\xfa\x29\x3e\x56\x65\x91\xbf\xf5\xd7\x7e\xa1\xe5\xeb\xf6\x17\xe8\x86\xf8\xb8\x66\xa4\xca\x88\xb4\x1b\x46\xe0\x70\x61\x21\x4a\x6c\x67\x51\xa5\x94\x56\x4e\x64\xba\x60\x97\x12\x94\x54\x65\xea\xb6\xe5\xa6\xf9\x1f\x2b\x54\xc2\xd0\x74\xc3\xdc\xe4\x4a\x50\xf7\x62\x85\x9a\xae\x69\x7e\x07\xb3\x4b\xad\x0a\xbb\x82\x5f\x04\x75\x9c\xd2\xa1\x43\xed\x84\x06\x85\x0c\x6e\x82\x69\x5c\xd5\xb0\xf0\x29\x95\x7b\xae\x98\xbc\x37\x64\xd2\x15\x04\x8e\xef\xd2\x5f\xf2\x71\x53\xa5\xc3\x65\xe4\x48\x34\x4e\xe9\x21\x9e\x53\xca\x84\xa7\x3d\x1b\x31\xa7\x93\xd3\x54\xf4\x16\x4b\x03\x25\xc6\x69\x32\x48\xcd\x28\x7b\xc2\x5f\xc5\x95\xca\x00\xaf\x62\x8f\x01\x1f\x2d\xd6\x16\x46\x89\x61\x5a\xce\x68\x6e\xdb\xd3\x8a\xa4\x82\xaf\x8f\xc9\xc6\xa8\xae\x22\x54\x61\xb4\x1a\xf9\x13\x0d\xba\xa1\xb3\xed\x6c\x2c\xad\xdf\xca\xd4\x18\x9f\xe8\x08\xcf\x2e\xdb\xf2\x79\x1f\x74\xda\xee\x94\x2b\x8b\xce\xbb\x36\x99\x83\x24\xe2\x4e\xa1\x28\xc2\xd3\xf5\xf1\x49\xad\x6f\xfa\x5c\x7b\x64\x96\x6c\x31\x46\xdf\xd4\x95\x62\x9c\x4c\x58\x5d\x83\x75\x61\xbe\x6d\xe3\x9c\x47\x08\xa4\x8f\x50\xde\x83\x34\x18\x94\x7c\x58\x64\xba\x49\x6a\x72\x0b\xa5\x79\x20\x2d\x10\x69\xf3\x71\x13\x0c\x6e\x64\x62\xe0\x5a\xc8\x98\x23\x1a\xba\xab\x64\xbf\xea\x22\x41\xcf\x11\x74\x8e\xcc\x9b\x63\x77\x3e\x28\x23\x2c\xbf\xdb\xc4\xf3\x36\xb6\x36\xea\x9a\xde\x52\xcb\x23\xe3\xce\xa8\x10\xaf\xce\xf8\xf1\x5c\xbb\x97\x26\x2b\x82\x09\x81\xef\xbd\x80\xd7\x85\xa2\xf8\xbd\x40\xf1\x6f\x6c\x28\xd0\x75\x37\xec\x2d\x29\x85\x73\x41\xa7\xb4\x1c\xe3\x00\x49\x9a\x6d\x5e\x70\xd8\xab\x6c\x35\x5a\x66\xd4\x53\xb9\xe4\x1c\xc3\xd4\x9c\x93\xe4\x3e\x55\xeb\xe5\x02\x5e\x49\xf1\xfd\x31\xae\xa3\x0b\x2b\x7e\x85\x3b\x5f\x49\xdc\x59\xd3\x1b\xee\xa6\x2f\x45\xf4\xf9\xd5\xc0\x8f\xde\xdc\x56\xfe\xf2\x2d\x44\x25\xdc\xd2\x44\x93\x95\x47\x15\x70\xff\x68\x9b\xc3\xdd\xba\xfa\x9d\xe6\x34\xf5\x45\xae\x34\xec\x19\xac\x34\x49\x42\xe9\x16\xf9\xa4\xa1\x10\x39\x37\xb7\x87\x7e\x03\x48\x78\x46\x18\x21\x8f\xd8\x8f\x68\x16\x7e\xf8\x4d\xda\xb6\xf0\x48\x97\x74\xcf\xf2\x86\xe6\x69\xc3\x04\x15\x16\xf6\xd7\xf1\x40\x79\x9c\x61\xe2\x27\x79\xae\xaa\x49\x57\x26\xb1\x2d\x17\x13\x53\xb2\x11\x40\x52\xe8\xd9\x7c\x6b\xdc\x14\x83\x82\x85\x77\xe4\x11\x94\x1f\x92\x36\xf3\x1e\xa9\x23\x1a\xcd\x18\x78\x4b\xa1\x99\xdf\xa4\xbf\x97\xb4\x64\xbf\xca\xed\x22\xbb\x57\x49\x69\x5f\xa5\x8d\xef\xfa\x01\x0b\xf3\x1c\x49\x6c\x6a\x83\xb6\xa1\x31\x96\xbf\x82\x82\x9b\x4b\x27\x0f\x0a\xa3\xf9\x9e\x8e\xd7\x59\xc4\x24\xa6\xf3\x2e\x87\x0e\x61\x40\xf0\x65\xa7\x2e\xd3\x80\x78\x8f\x93\x9c\x27\xc6\x65\x33\xfb\x6a\x1a\x84\xb3\x98\x16\x9e\x8c\xa2\x8c\xcf\x2b\x19\x26\xd0\x65\x65\x4f\x78\xeb\x7b\x05\x05\x65\xec\x8b\x87\xb8\x70\x94\xfa\x3e\xa4\x0b\xe7\x63\xbc\x53\x44\x13\xc0\x7c\xa1\x60\x79\x9a\xec\x90\x03\xc8\x96\x4f\x0d\x21\xef\x9b\xf4\xa4\x71\xdb\x7f\x8a\x27\x25\x3e\xc3\xcb\x1d\x8f\xa3\x62\x34\xb2\xbe\xa3\x80\xd2\xd3\x87\x1a\x94\xf6\xa1\x4a\x94\xa2\x22\x1e\x30\x91\x15\x2c\xc0\x4d\x7c\x31\x9f\x28\x56\x8f\x30\xee\x25\x23\xfb\xa9\xf2\xda\x9c\xc4\xd1\x81\x03\x1c\x68\xde\x0f\x3c\xaf\x08\x6b\x0f\x62\xdf\x3d\x46\x04\xe9\x54\x5e\x94\xc6\x50\xb9\x04\x00\xa6\xf8\xf7\x8a\x32\xfd\x4f\xe8\xf9\x23\x14\xfa\xbd\x40\xd5\xef\x6f\x13\x4a\xc2\xa9\xe7\x94\xdb\x0f\x8b\x86\xc1\x07\xf0\x70\x77\xf5\x74\xd9\xa5\x40\x42\xb1\x2e\x55\x40\x77\xfb\x79\xb8\x7f\xfc\x97\x3a\xea\x2a\xf7\x81\x95\x07\x06\x71\x53\x81\x8a\xa6\x95\xe8\xd5\x65\x3d\x47\x8b\x52\x23\xf6\x30\xf8\xa5\x50\xa8\xfa\x4c\x6d\x26\x12\x42\x61\xe5\x2b\x19\xa1\xf1\x24\xd4\x01\xe5\x87\xe4\x9b\x95\xb7\x61\xbe\x40\x4c\xe5\xbb\x5b\x77\x81\x16\xe3\xfd\xa4\x7c\xf3\x6c\x8d\x94\xf3\xc0\x2c\x92\x0d\x6c\xef\xdf\xa4\x97\x84\x9d\x0a\x61\x2b\x01\x7a\xd2\x13\xc4\xef\xdf\x26\x04\x09\xde\xd1\x6d\x8a\xfc\xdc\x98\x5b\xb9\x84\x24\xfb\xf2\x45\xde\x7f\x07\x8b\x87\xaf\x65\xe3\x24\x6d\x52\x7a\xdf\x80\xdd\x6c\x2a\x46\xbc\x53\xc8\x18\xd0\x32\xf9\x9f\x26\x7e\x38\xfb\x4d\xe4\x28\x9b\xe0\xdf\x64\x3c\x08\x4c\xaf\x0c\xcb\xd2\x9b\x42\x6e\xf7\x23\x3d\xce\x70\x03\x09\x0d\xba\x41\x6f\x2b\xdd\xe3\x7b\xb5\x9d\x7e\xf4\x68\x7b\x90\x24\x80\x3f\x88\x62\xa3\x6a\x92\xbc\x4d\x37\x87\x68\xf1\x96\x5b\x35\x45\x1c\x25\x3d\xae\x0a\x88\x78\x9c\x8f\xb9\xcf\xa9\x38\x3b\x4e\x56\x86\x36\x65\x8d\x33\x26\x4f\x0d\x14\x61\xdb\x47\x0d\x0c\x33\x2f\xb7\x87\xc9\x98\x07\xf6\xb4\xa4\x94\xd0\xe0\xd3\xf3\x12\xd6\x06\xbf\x0f\x0d\x91\x36\x4c\xfb\xfe\xc1\x39\xcd\x54\xf9\x9b\x81\xb7\x30\xe7\x02\x0d\x35\xf9\x4d\x55\x1f\x4e\x72\x33\xfd\x89\x84\xdd\x2d\xc7\xba\x73\x1f\x9b\x49\xa0\x45\x4e\x34\x33\x59\x89\x07\xa9\xe9\xa3\x2f\x87\x86\xc6\x4d\xdc\xad\x74\x17\x5a\x8e\xda\xff\xc7\x15\xee\xc2\x34\xb4\xd9\x7e\x0f\xac\xfe\x27\xb4\x0e\x44\xd2\x0a\x57\x8b\xfd\x75\x0a\x70\x08\xad\x2a\xad\x2c\xe2\xac\x9f\xfa\x3c\x70\x80\xfd\xf8\x71\x2c\x13\xbc\xcf\xd6\x9a\x62\x20\x7d\x47\xa9\x0e\xfc\x09\xad\x12\xa7\xee\xba\x30\xef\xd5\x91\x67\x0f\x73\x82\x7e\x4b\xa1\x68\x23\xd3\xb5\x11\xe3\x21\x37\x29\x7e\xdb\xbc\x3b\xf9\xb4\xaf\xf1\x27\x45\xdc\x07\xdd\xf2\x0e\xaf\x72\x7c\x37\x50\x2f\x95\x09\x63\xf0\xf3\xd7\xd4\xa5\x5c\x9b\x28\xee\x99\x4b\x3e\x27\xc0\xa4\xf1\x6e\x3c\x0d\x18\x4b\x38\x25\x0a\x94\xbf\xf3\x1f\xa2\x67\x21\x02\xc2\x35\x05\x76\x58\xb4\x3d\x6b\x7e\x12\xf7\x8a\xe6\x25\x5f\xd7\x98\xbb\xef\xb8\x92\x7b\x9e\x8c\x43\xd1\xe9\x94\x61\x31\x9d\x9f\x3e\xad\xd4\xe6\xf2\x32\xe6\xcc\xa6\xf4\x74\x64\xe0\x63\xb5\x7b\xba\xbc\x74\xa1\x96\x31\x50\x37\xc3\xc4\xfd\xd5\x69\x55\x73\xb8\xac\x74\x32\x1e\xaa\x79\x64\x0c\xc4\xa0\x60\xf4\x8d\x4f\x24\xc0\x5f\x0c\xe3\xd8\x84\xe9\x94\xea\x35\x61\x42\x59\x04\x02\x14\x63\xdd\x4d\x85\xfa\x18\x9a\x22\x46\xb4\x23\xe9\xb0\x4e\x93\x2b\x15\x9c\x2c\xa3\xe1\x56\xc1\xa7\x2b\xd2\xc6\x53\x70\x45\xc0\x17\xdd\x9e\xa8\xf1\xdb\xf5\x89\x9a\xb6\xbb\x43\xef\x06\xa6\xf0\x47\xe4\x06\x39\x84\xd6\x3a\x24\x57\x68\x41\x22\x96\x81\xc2\x30\x56\x0a\xf6\x27\xca\x06\x1c\xa1\x3b\xac\x48\x69\x87\xf9\xc7\x03\xc5\x06\xbc\x4e\x93\xdc\x12\xae\x28\x95\xa7\x24\xce\x14\x50\xed\x46\xa0\x80\x6a\x37\x26\x4f\xf0\x13\x2e\xcd\x25\xfd\x03\x62\xda\xeb\x14\xa2\xc9\x98\x24\x01\x64\xb0\x6b\x36\xe8\x4e\x98\x09\x97\xf7\x2f\x56\xfd\x34\x6a\xc7\xf2\x4f\xad\x97\xe6\x7d\x1d\xf9\x17\x5f\x12\x3d\x2e\xc4\xe1\x28\x0f\x3f\xd2\xbd\x20\x40\x7b\x60\xf2\xdf\x0d\x5a\x5f\x72\x9a\xa3\xb4\x7d\x81\x56\x9a\xee\x28\xb6\xd9\x5b\x08\xb3\xf0\x7b\x5f\x0f\xfc\x44\xc3\xdd\x80\xfa\x32\x58\x4f\xff\x5b\xd0\x7a\x61\x96\x1f\xd7\x45\x5d\x67\x79\x0b\xcf\x0e\x3f\xf8\x6f\xe0\xdd\x9c\x9c\xfe\x01\x21\x9d\xf8\x13\x02\x7d\xc2\xc2\x9c\x20\xdf\x86\xe7\x73\x3c\xf0\x2c\x48\x53\x54\xb0\x64\x15\x46\xbc\x2b\xf8\xb4\x8f\x40\x76\x00\x9f\x79\x81\x78\x03\x91\xb2\xbc\xce\x73\x05\x15\x2d\x5a\x64\x7d\x6f\x80\xb5\x1b\x7b\xfd\x5a\x6d\xf4\xed\x39\xa2\x9e\xf6\x1d\x53\xe1\x30\xf0\xb0\x0a\x2f\xe0\x3e\x2e\x7a\x4b\x61\x36\x6c\x69\x29\xac\x96\x53\x24\xbd\xaa\xca\xc0\x59\x32\x4e\x4d\x9c\x4c\x29\x19\x24\xe8\xb3\xe0\x72\x31\x09\x8d\x45\xfa\x50\x95\x6d\xb2\x7c\x35\x92\x39\x2c\x57\x42\x77\x52\x40\x3a\xa1\x1e\xa7\xc9\x78\x35\xb2\x31\xd7\x6b\xf0\x6a\xfe\x40\x89\xe9\xfe\x41\x93\x26\xff\x4a\x9a\xc4\x83\x7e\x22\x40\x4b\x54\x0d\x4e\x62\xfd\xf2\x89\x1f\xfc\x49\x92\xd1\x08\x00\x7d\x9f\x1e\x9d\xab\xf4\xba\x4e\xc2\x28\x22\xe4\xbb\x55\xe1\x1d\x1a\x86\xf9\x3e\xba\x32\x0e\x7c\xb0\x36\x44\x50\xb4\x5c\x41\x48\xbe\xee\x61\xf9\xe2\xfb\xb6\xab\xdc\xe3\xb6\x9e\x4b\x3f\x15\xe8\x5e\xa0\x22\x02\xe2\x51\x52\x24\x85\x3f\xd6\x18\x8f\xdb\x13\x3f\x51\x7b\x5a\x25\x75\x37\x55\x4f\x0e\x8c\x61\x69\x3c\xed\xed\x12\x84\x01\x45\xeb\xd4\x43\xd6\xef\xea\x48\x67\x7b\x47\xfa\x68\x03\x1b\xdb\x94\xa0\x95\xb0\x9c\xb8\x0f\x34\xb9\x5c\x9e\xa5\x7a\x20\x8a\x5a\x38\x29\xc0\x56\x46\xee\x02\x37\xc0\xdc\x47\x7c\xd2\x54\x11\xe1\xbe\x5d\xa4\x2a\x1c\x18\xf9\xe4\xe3\xe0\x27\x6b\x34\x17\x6c\xe1\x7f\x92\x76\x01\x3c\x0a\x73\xf9\x3a\x45\x78\x3f\x3b\xfe\x04\x49\x1b\x63\x73\xb7\x28\x73\x83\x3b\xaf\x40\xbc\xee\x50\xc4\xe0\x58\x30\x5c\xac\xb4\xaf\x53\xc1\x1c\x90\x31\x81\xb5\x5e\xa7\xb2\xb7\xe8\x09\xd1\x8b\xa5\x2d\x73\xfc\x29\x08\x58\x62\xdb\x3e\x46\x6f\x44\x10\xbf\x64\x40\x60\x99\xf6\x77\xca\xad\x8e\x6d\x7f\x8d\x0c\x08\x8c\x06\x10\x30\xf0\x36\x18\xf1\x82\xdb\x68\x69\x89\xe4\xeb\xb4\x12\x10\x04\x3c\x00\x34\xd1\x4d\xae\x1f\x98\x75\x79\x3f\x59\x32\xe4\xaf\xbb\x15\x8f\x81\x9e\x01\xc1\xdb\x3d\x8b\xb7\xc4\x27\xaa\xa6\x31\xb4\x69\x57\xc9\x18\xb4\x3a\x4a\xc6\xa0\xb5\x26\xdd\x99\xd8\xda\x7e\xb6\xdb\x4b\xce\x43\xfa\x42\x82\x34\x7a\x17\xf4\xfc\xb3\x3f\xd7\x51\xb3\x6e\xb7\x27\x1a\x16\xeb\xe1\x1c\xac\xb4\xa5\x3e\x3e\xef\xb4\xd3\xbc\xb5\xe0\xd1\xf1\x1c\xb4\x73\x32\x5d\x42\x6f\x0b\x0b\xe7\x21\xed\x29\x1d\x48\xf0\xff\xaf\x75\x1c\x24\x60\x78\x25\x1c\xd1\xa8\x9c\x4b\x85\xca\x7b\xc5\xb5\x3e\xa2\xf5\x21\x5c\xc4\x4d\xb9\x5c\x6c\xc3\xc1\xb0\x9b\xa4\x5c\x9f\x14\xa4\x8f\x9f\x8a\x5b\xd7\x4c\x8a\x49\x9a\x02\x50\x47\x2f\x41\xe4\x0d\xca\x1f\x17\xdd\x03\x6f\x41\xad\x49\xa3\xd0\xa6\x2c\xa4\x2f\x35\x2c\x55\x00\x40\xce\xa8\xfa\x5f\xb3\x4e\xff\x7c\xca\xab\xb7\x73\x05\x99\xe7\x0c\x26\x95\x81\x93\x06\x84\x44\xd6\x1b\xda\x11\x67\x2e\x52\xfc\xd4\x45\x51\x1f\xec\x16\x71\x6c\x7b\x36\xcb\x4c\xba\xba\xb3\x5c\x96\x68\x05\xfd\x0f\x13\x5f\x65\xbb\x8a\x90\x07\x15\xac\x0b\xb4\xc0\x5d\xc1\xe7\xe0\x9c\xf7\x7d\xb3\x87\x9d\xbe\x98\xe4\x5a\x80\x45\xd3\x12\x04\x21\xc7\x1f\xd3\xd2\xe7\xe3\x26\x0a\xe6\xc5\xd4\x42\x21\xd7\x05\x6d\x1f\xd7\x81\x4c\x22\xf6\xa9\xed\x7b\x32\xca\xf6\x2a\x52\x95\xb3\x9a\xb6\xf5\x2c\xf6\x12\xf6\xf1\x8f\x03\x9f\xf2\xde\xa4\xdb\xc4\x96\xde\xdd\xa1\x85\xcb\x7f\x34\x51\x54\x23\xdf\x98\x6c\xad\xf6\x6c\x9e\xa0\xe0\x49\x00\x6d\x2d\x17\x8b\x10\xf6\xc1\x91\x37\x8d\xc7\x56\x56\x14\x4c\xcd\x1d\x2d\xde\x75\x47\x71\xbd\x98\x51\x37\x5c\x36\x91\xe5\xd0\x15\x4b\x15\x85\x37\x3e\x6e\x68\x2a\x7f\xa1\x1d\x85\xa3\x31\xad\x41\x44\x6e\x3f\x08\x3c\x76\xfa\x07\x7e\x74\x73\x75\xd4\x4d\xa2\xb0\xa7\x86\x72\x4f\xa8\xa1\xdc\x13\xca\xff\xa4\x49\xdf\xa6\x61\x6f\x89\xb1\x76\x68\xac\xdf\x54\x54\xce\xcc\x91\x83\x02\xe6\x7a\xe5\x05\xd8\x28\xdf\x5d\x5e\x2f\x8a\x01\x3c\x35\x28\xa4\x93\xb4\x10\xf9\x44\x4b\x31\x5e\x51\x23\x83\xdf\xc3\x7a\xc7\x43\xfd\x31\xac\x35\x7f\x59\xd0\x52\x3a\xfc\xfb\xdc\xe5\x7e\x65\x19\x2a\x2d\x58\xa7\x8f\x14\x3b\xc0\x23\xd5\xe8\x31\xf1\xc0\x46\x36\xdb\xad\x1e\xfd\x99\x40\xbf\x95\x33\xba\x22\x72\xdc\x2b\x39\xbd\x7c\x49\x35\xdb\x37\x03\x45\xe0\xb1\x3e\xf1\xe6\x92\x6f\x4e\xae\x54\x20\x8b\x2b\xc9\x12\x4b\x9d\x09\x13\x1b\xdd\x90\x53\x74\x2b\xd7\x31\xac\xc1\xe3\xda\x3e\x98\x3d\xdc\xee\xa6\xc4\x13\x84\xc2\x3c\xa2\x14\x14\x8c\x9c\xa6\xb6\x23\x5c\x78\xbf\xa1\x79\xd6\xee\x0d\x0d\xc1\xd6\x95\x1e\xe6\x14\x72\x4c\x3e\x59\x6b\xe0\x25\x34\xfd\x51\x98\x8a\x8a\x2f\xcc\xf9\x3b\x78\x8f\x7c\xa2\x2a\x87\x7d\x9b\xdb\x5e\x8e\xee\x89\x50\x1d\x96\xaf\x5f\xb8\x11\x65\xcc\xb8\x1f\x12\x12\xba\x08\xb3\xa1\x30\x56\x57\x86\x06\x64\xe2\xd1\xbf\xbb\xd3\x78\x38\x4c\x21\xd2\x44\x2f\xdb\x4d\xc3\x9c\xc2\xde\x43\x87\x78\x7b\xb0\xac\x2d\x9f\xa8\x15\xed\x88\xf6\x4b\xbb\x03\xeb\xf9\x86\x36\xa5\x6f\x34\x51\x4f\x30\x4c\xbc\xe5\xed\xe1\xfd\x40\x71\x57\xdf\xff\x84\x61\x38\xd3\xb5\xb9\x30\x51\x49\x1d\x1e\xeb\x4c\x2a\xf4\x5b\x2d\xf5\xcf\xb6\x97\x34\x38\x92\xeb\x42\xb8\x17\x29\x12\x89\x9b\xee\x9b\x95\x98\x31\x33\x28\x3f\xb1\xe2\x49\xa5\xb3\x80\x6c\x5b\x17\xb1\x7a\xc3\xb0\x67\x06\xc9\x5e\x5c\x08\xf7\x53\x54\xd5\xef\xa4\xa6\xf0\x39\x1f\xf0\x84\xeb\x94\x17\xf2\xfd\x90\xd6\x3a\x16\xf1\x7b\x13\x45\x39\xce\x33\x8c\x42\x19\x55\x2e\x4e\xb8\xdb\x8f\x11\x50\x09\xfc\x5e\x4d\x86\x9e\x57\x17\x96\xa7\x66\x60\xfb\x60\x94\x76\xd3\x18\x0a\x3f\xeb\x71\x83\x60\x81\x53\xd5\x97\x13\x0a\xfa\x78\x22\xd8\xaf\x78\x65\x4c\x3e\xa5\x98\x64\x36\xaa\xb1\xb3\xd3\x4e\xbb\x10\x7c\x46\x4d\x89\xc4\x59\x9e\x42\x1b\x63\x77\xe9\xc3\x44\xc2\xd5\x0b\x9c\x9f\x08\x14\x07\xeb\x25\x55\x6b\x5a\x57\xf4\x2c\x7f\x4a\x29\xb0\x93\x28\x9c\xf7\xdf\x34\xf1\xb1\xf7\xa3\x26\x97\x97\x27\xb1\x73\x79\xb0\x3b\x1c\x91\x22\xa4\x3c\x4d\x59\x25\x5a\x31\x7f\x5c\xdb\xea\xe5\xe7\x57\x42\x22\x65\xf7\xf4\x30\xcc\x43\x2b\x45\x6d\x1f\x3b\xe6\x69\x38\x18\x30\x6d\x8d\xa3\x54\x71\x43\xa4\x57\xdd\x5a\x0b\xb3\xac\xb0\xbb\x14\xb4\xf8\x8a\xe6\x0c\xda\xb6\x56\x3e\x1b\x09\x6c\x3d\x46\xe1\xd9\x0e\x85\xcb\x82\xd0\xa6\x17\x06\x9b\xff\x8e\x2a\x25\xed\x57\x6c\x9a\x8b\xa2\x8f\xe8\x09\xa2\x4e\xd1\x33\xe5\x63\x0d\x49\x4b\xcd\xd8\x42\x2c\x1c\x79\xe1\x5d\x35\x1d\x77\xb7\x69\xe8\x36\x8b\xc2\xbe\xad\x0e\x48\xa8\xcc\x47\x99\xb2\x45\x33\x0a\xa3\xd5\x3d\xe5\x35\xa0\x89\xf9\xfb\x55\x3a\x68\x7a\x98\x32\xb7\xab\xa7\x99\xfd\x48\x3f\x84\xc7\x39\xb7\x08\x7c\x8f\xfa\xbb\xd8\x49\x32\xe7\xeb\xb1\xdf\x57\x9b\x40\x62\x79\x38\x0a\xf5\xa4\xd1\x79\x35\x69\x74\xde\xd5\x12\xbb\x36\xb6\x51\x71\xac\xe5\x01\x51\x6f\xc0\x2b\xf3\xc9\x56\x49\xf3\xb9\xb9\xf6\x4b\xb3\x87\x77\xa9\x2a\xf6\x5b\x6a\x12\xed\x54\xa0\x14\x0a\xd7\x75\x55\x7e\x1d\x36\x4f\x7c\x7d\xcb\xc9\x0b\x91\x81\x7e\x79\xb3\xae\xe9\x7e\x64\xa6\x8c\xa4\x8f\x21\x86\x71\x72\x6f\x87\x0e\x39\x51\x38\xef\x94\x5f\x31\x71\x61\xd2\xd5\x6a\xc1\x9a\x9c\x09\xde\xcf\x1f\x29\x92\x95\xef\xaa\x96\xf9\x25\x5d\xea\xb3\x66\x79\x75\x07\xdd\x3a\xb6\x07\x12\x05\x81\x26\xd1\x57\x23\xd9\xf9\x6f\x60\x2a\x59\x53\xb9\xa2\xaf\xec\xeb\xe7\x2f\x26\x32\x1b\x81\x45\x85\xa5\x5d\x61\xba\x40\xf8\x7c\xbb\x09\x3f\x96\x2c\xdb\xb4\x5b\x84\x51\x4e\x2d\x1e\x54\x09\xb6\x75\x14\x36\x6e\x5d\x91\x77\xdc\x6c\x20\x42\x69\xe7\xb6\x37\x8c\x69\xde\xc8\x56\x38\x04\x7e\x99\x9d\x08\x9f\x35\x0e\x82\x9a\x34\x5d\x75\x6e\x44\x68\x57\xfd\xb0\xc9\x7a\x93\xc2\x59\x5a\x44\x12\x20\xa0\xcd\xf6\xdb\x13\x25\xdc\xfd\xdb\x15\x6e\x8d\x22\x8d\x76\x94\x11\x2f\xe2\x69\x4c\x0f\xcb\x9c\xb4\x6e\xf3\xa9\x0e\xcf\xd5\x40\x3f\x3e\x09\x46\x7b\x66\xd4\x4d\x43\x13\x4f\x79\xf9\xb5\xdf\x9d\x54\x69\x28\xe9\x49\x0b\x8d\xa5\xdf\xa5\xdd\xb0\xdf\x2f\x4d\x97\x8b\x31\xd6\x03\xcf\x77\xb9\xee\xe2\x8d\xd4\xf6\x92\xb4\x5f\x71\xab\x7a\xde\x9f\x8f\x6b\x76\xb8\x8c\xa6\x17\x59\x06\xc3\xc5\xd3\x30\x8e\x22\xb6\xd8\x30\xc9\xba\x18\xc6\x03\x9b\x8e\xd3\x30\x46\x92\x03\x2f\xf7\x5e\xe0\x3b\x1b\xef\x29\xeb\x9b\xda\xe5\x70\x99\x11\x47\xb0\x8b\x0f\xb4\xa2\xd4\x83\x4f\xd4\xd6\xca\x93\xa5\xd5\x02\x73\xa5\xc8\x06\x1f\x04\xca\xac\x7c\x8f\xaa\x06\x70\x16\xe7\x95\x8e\xf8\x85\x4a\x78\xde\x37\xab\x3f\x41\x11\xac\x14\xde\xe9\xd1\x20\x30\xf9\x5f\xe1\xd6\x1d\x84\x6d\x41\x56\xfa\x63\xad\x2a\x82\xc6\xb9\x08\xc6\x96\xde\x4e\x54\xea\xe9\xad\x0b\xb1\x51\xf9\x62\xd1\x88\xf8\x88\x2e\x0c\xae\xf2\xce\xa4\x12\x80\xc0\xb4\x68\xfc\x1c\x5c\xed\xd7\xe8\x9d\xe2\x26\x9f\xea\x50\xe4\xe0\xd4\x9e\x4a\xd3\xef\x46\x18\x3c\x37\xd3\x43\x14\x1c\x84\xcd\xa0\x5c\x1f\x9c\x86\x06\xaa\xe9\x7d\x1d\xf9\x04\x62\x92\x5d\x6b\x1e\xff\xfd\x40\x31\x06\x77\xb3\x5e\x0a\x49\x1a\xba\x23\x91\x83\x56\x48\x94\x93\x13\x5f\x06\x30\xe3\x71\x12\xc6\xb9\xb5\x98\x10\x96\xda\xac\xaa\xd3\xaa\x2e\x59\x6e\x48\xe8\x5f\x8d\x2d\xa3\x54\x24\x2d\x86\xa6\x10\x3e\x35\x65\xcc\xdc\x52\x2d\x99\xd7\xb1\x43\x85\x4f\xb6\x29\x0c\xb5\xc7\xc6\x91\x61\x49\x41\xc1\x49\x5f\x0f\x14\x4e\xfa\x7a\xad\x8d\x3a\x37\xd7\xee\x26\x71\xd2\xf2\x99\x3d\x70\x11\x22\xb6\xd1\x40\xb4\x96\xda\xf2\xce\x07\x44\xcc\xa7\x10\x8b\x3f\xc2\x7a\xe1\x93\xaa\x54\xeb\x28\x69\x55\xa8\x37\xd5\x9d\x5c\x54\x23\x9a\xa3\xb0\xdf\x8f\xec\xc8\xc4\x18\xb2\x91\xa9\xec\x72\x55\x61\x9b\xb0\x8e\x30\x5a\x0a\x1f\x60\x25\x88\x96\x85\x9e\xf4\xcc\xec\xa8\x4b\x70\xde\x72\x11\x31\x69\x07\x6a\xbb\xc2\xe0\xe1\xe3\x90\xa1\x89\xfb\x59\x22\x05\x13\x2c\xcb\x93\xf4\x26\xf9\x58\xfd\x6d\x6a\xf3\x50\x98\x33\xbd\x7d\x53\xd4\x97\xaa\x52\x14\x59\xd3\xb7\x69\x36\x0c\xc7\x3b\x54\xd3\xf5\xee\x44\x19\xbf\x40\x15\x06\xaf\x2a\xc0\xc8\xa7\x3a\x0e\x2f\xbd\x76\xc7\x15\x54\xa2\xa4\x67\x72\x4b\xc6\x13\x66\x1a\x6c\x85\xd2\x37\xf4\x1d\xa5\x8f\x94\xaf\xed\x99\xa2\x8c\x6e\xa7\xd1\x91\x90\x46\x49\x19\x55\xba\x01\x13\x97\xe0\x5f\xc5\x3e\xe3\x3f\x52\x38\x3f\x20\x45\xf6\xd0\x4b\x71\x4e\xb5\xdc\x78\x48\x8f\xd7\x02\x05\x37\x61\x45\x2c\x51\xa7\xa1\x9d\xe7\xe6\xf6\x0e\x2a\xa5\xaf\x23\x33\x8e\x1d\xb5\xa5\xb4\x68\xc9\x4e\xf1\xf7\xd6\x72\xa6\xa3\x47\xdb\xbd\xa8\x88\x97\x38\x76\x80\x47\x7a\x7d\xe2\xeb\x88\x8f\x02\x1f\x41\x5e\xa3\x85\x8c\x9d\x7e\xb2\x09\x29\xd4\x37\x23\xcc\x2e\x09\x5d\x83\x57\x73\x58\xaf\xd1\x48\x94\x4e\x3a\x01\x22\x55\xda\x70\xeb\x81\x17\xe3\x58\x57\xa2\x24\xdd\x22\x1d\x99\x61\xcb\x4f\x2b\xb3\xcd\xe2\x93\xda\x9e\x3a\x38\x47\xd0\x45\x3b\x4e\x6d\x6c\x0b\xcc\x36\x09\x63\x57\x4b\x31\x79\xf9\xa6\xdf\xa0\x88\x16\xa7\xfc\x08\x13\xfb\x4d\xb8\x81\x8f\x51\xac\x10\x4e\x61\xdf\x06\xca\xa9\xc6\x04\x83\xe5\x88\x30\x94\x76\x4c\x9d\x0c\x12\x32\x3e\xdd\x22\x4d\xaa\x6a\xe0\xaa\x07\x53\xd7\x3c\x2b\x1f\x6c\xb2\x12\xef\x54\xb3\x2d\x13\x3f\x82\x72\x49\x95\x4a\xdf\x9c\xf8\xb5\x07\xe1\x31\x49\x2e\xcb\xe7\x8a\xff\xff\x9d\x5a\xe7\xe8\xc0\x81\xf6\xb8\xe8\x46\x60\x37\x9e\x52\xca\x34\xb7\x54\xfd\x5d\x87\xfb\xc7\x6b\xef\x7e\x61\xa6\x3d\x24\x9a\x77\xd7\x1b\x47\xfa\xc9\xc7\x2e\xfd\x34\x7d\x33\x76\xa3\x1b\x02\xc0\x6f\x29\x26\xce\x06\x21\xd4\xbe\x1d\x17\x3c\x92\x0f\x9b\x8b\xf6\x1a\x9c\xd7\xf1\xa0\x82\xe5\x6f\x58\xde\x84\x32\xd5\x84\x57\xef\x28\xb2\xa6\x77\x1a\x58\xbb\xe6\xdb\xfd\x64\x30\x32\xf4\x83\x68\x18\xdc\xd6\xd0\x5a\x66\xaf\x61\x0c\x86\x8a\x78\x5f\x7d\x75\x95\x48\xd7\x84\x21\x44\xc5\xb8\xa7\xeb\x76\x09\xab\xe9\x41\xf0\x59\xb7\x9a\x5e\x29\xd2\x30\xeb\x87\x94\x3b\x63\x7c\x66\xce\x29\x03\xb4\x94\x94\x50\xd3\x15\x53\xac\x3c\xad\xcb\xed\xa7\xe0\x3c\x60\xe5\x41\x26\x2c\xc6\x81\x36\x1c\xbc\xfa\xd1\xa6\xf8\x77\x60\x46\xdd\xc8\xc5\x7b\x3c\x3e\xa2\xb8\xb8\xb5\x44\x48\xdf\x8c\xc6\x36\x9d\xf2\x4b\x93\xa5\xd3\x90\xe7\x70\x3a\xc4\x9d\x65\xed\xed\x7b\x79\xb8\x1c\xe6\xa1\xcd\xe8\x91\x21\xdc\x98\xd2\x0d\xa6\x47\x13\xd5\x71\x03\xf1\x30\x16\xd3\xdd\x60\x0b\xd7\xfb\xec\xe1\xf6\x73\xc0\x73\x09\x61\x3a\x41\x9e\xd0\xcb\x3b\x83\xc4\x19\xc9\xdc\x19\x98\x55\xd6\x6e\xd1\x81\xd6\x54\x47\x47\xcd\x6f\x28\x86\xd3\x0b\xd8\xfc\xc0\x20\x82\xfb\x0f\x6d\x9a\x7b\x81\x07\xe6\x5c\x45\xfc\xe7\xb2\xda\x5f\x7c\x89\x37\xde\x59\xf8\x48\x98\xf8\x0b\x30\xf1\x48\xc3\x9e\x59\xf3\x6d\x7a\x70\x5b\xc0\xc6\xfe\x5b\x25\x8f\xf0\xcf\x50\xed\x91\xa4\x58\x39\x67\x86\x4c\x22\xff\x61\x52\x01\xa1\x6c\x11\x0c\x6a\x81\x67\xeb\x20\xcc\x73\x73\xf3\x9b\xc0\x58\xb0\xe1\x80\x73\xc2\xbf\xef\xee\x78\xf8\x8a\xcc\x32\x4e\xab\xaf\xbd\xa8\xba\x6c\x3f\xc0\x6a\x76\xf4\x9a\x87\x0e\xc9\x3f\x6c\xd1\x7e\x8b\xb9\x4f\x83\xb8\xe4\xbb\x28\xfc\xc8\x98\x9f\x8f\xf0\x8f\x4f\x54\x4d\xe0\xa4\x0e\xc6\x4f\xd2\xe5\x62\x0f\x7d\x47\x93\x11\x9f\x08\x9e\x51\x63\xd7\xe1\x28\x0b\x7b\x0c\x9b\x6f\x6a\xdc\x6f\x4d\xd7\x8e\x1e\x6d\xaf\x1a\xd3\x35\x53\x9e\xa0\xea\xc3\x89\x5f\xdf\x17\x75\x59\xfe\x56\xad\x45\x36\x7b\xb8\x3d\x32\xe9\x6a\x64\xe2\x7e\x25\xc8\x53\x43\x1c\x1b\xea\xf2\x4c\xda\x1b\xa6\xe1\xb2\x11\xb4\xbe\xb0\xd7\xa9\x79\xeb\x1b\x2a\x31\xeb\x25\x8b\x8b\xd6\xaa\xb2\xc5\xe9\x89\x2f\x5b\x9c\x56\xdf\xdb\xb7\xbd\xb0\x6f\xfb\x11\x28\x2d\x25\x2b\x56\x08\x62\xd4\xeb\x50\x2c\xb8\xef\x64\x07\xed\xa8\x6b\xf2\xdc\xe5\xaa\x92\xf0\xf9\x80\x61\x3d\xd0\x92\x11\x63\xdb\xcb\x49\x35\x85\x79\xe2\xe8\x6d\x3b\xce\x38\x47\xba\x79\x5b\xf7\xe6\x81\x7a\x45\xac\xf9\xae\x06\xd6\x84\xd9\xb0\xa5\xbb\x70\x81\x77\xe8\x57\xd5\xfc\x6e\xdf\x9a\x68\x97\x1f\x81\xb8\x39\xf1\x23\x10\x24\xf2\x3e\xbf\x79\x01\xf7\x89\x76\x37\x31\x8a\x73\x9d\xe2\x1d\x35\xd1\x80\x2a\xb8\xf4\xe8\x1a\x8a\x0c\x7d\xdb\x0f\x7b\x7e\x48\x96\xa9\xb9\x3a\x2a\xcf\x69\xad\x79\xe4\x37\x09\x33\xad\xee\x55\xe2\x63\x9a\x5f\xe6\x1c\xdd\x33\x8a\xa3\xdf\x82\xcd\x11\x1a\x04\x9f\xd1\x6f\xef\xb4\x9c\x7a\xf8\xb7\xb0\x1b\x50\x10\x3c\xa5\x56\xdf\x6d\x18\x50\x78\xdd\xdb\x1a\x1a\x7d\x45\x35\xe3\xaf\x38\x35\xfc\xb1\x13\x23\x6e\x29\x0e\xd3\x8b\x6a\x4c\xf6\x62\x53\xe8\xb5\x1c\xda\x95\x96\x0a\x2c\xdf\x50\xcd\xbb\x37\x5c\xdf\xa5\x78\x7e\xe9\x79\xa4\xca\xf8\xd9\x9d\x1d\x05\x09\xf9\x9a\x12\x42\xdd\xbe\xa6\x10\x27\xb5\xd4\xfb\xd0\xa1\x76\x11\x5b\x93\x85\xa4\x69\xdc\x72\xcc\xa4\xdf\xa7\x87\xc3\xc7\x1a\x2b\x6a\xc3\x7c\x68\x53\xd4\xe7\x71\x13\xac\x30\x07\xe7\x70\x73\xa2\x84\xe4\xce\x23\x1a\x41\x5c\x9d\xa6\x36\x1b\x27\x71\x16\x76\x99\xec\x49\xfa\xc9\x4a\x3b\xe9\x72\x53\x8f\x77\x64\x47\x5d\x9e\x82\x47\x2e\x71\x41\x13\x98\x5c\x50\xb1\x7b\x2f\x19\x8d\x92\x78\x77\xcb\x09\x13\x7c\x18\x78\xf9\x22\x9e\x13\x74\x55\x5b\x1f\xa5\x7e\x34\xf1\xc2\x46\x17\x95\xdc\xee\x3f\xd7\x1a\x93\x8c\x11\x15\xe6\x33\x4d\xe1\x9c\x40\x2b\xb4\xfc\x76\x84\xa5\x57\xf5\x4c\xc5\xd5\x9a\xc8\x77\x19\x16\x24\xe9\xc0\xc4\xe1\xab\x7e\x4a\x1b\xf1\xdb\xaf\x69\x6e\x9b\x5f\x73\xa6\x61\xd9\x44\x05\x28\xd4\x5a\x4e\xef\x00\x58\x17\x58\x17\x16\x21\xe7\x92\xab\x4a\xe2\x32\x1b\xe7\x36\xee\xb1\x0c\x0d\x3c\xdf\x07\xd8\x1d\x7c\x52\xab\x10\x11\x89\x72\xb8\x14\xc6\x21\x56\xad\x74\x4c\xbc\x57\x38\xef\xd2\xb4\x34\x19\xb8\x2a\x02\x5c\xd7\x9d\x89\x82\xb0\xdf\x51\x03\x90\x43\x93\x2e\x97\x71\x28\x5d\x08\x42\xac\x8f\x55\xb8\xf5\xb1\xca\x26\x69\x8a\x66\x9c\xda\x3c\xd3\x44\x76\x13\x45\x64\xa7\xde\x79\x9c\xa4\x79\x12\xb7\x94\x32\xc5\x5b\x13\x05\x5c\x7b\x4b\xf1\xbb\x2c\x86\x71\x7f\x9f\xc2\x35\x6f\x60\x0b\xbb\x81\x80\x05\x19\x5c\x00\xfb\x00\x5c\xf8\xf7\x08\x33\x25\xa8\x6b\x1f\x75\xa3\x5b\xcc\x14\xbc\xf8\x45\x25\x5c\x23\x15\x89\xcb\x5c\x0e\xe2\x1e\x14\x41\x09\xdd\xf8\xbe\x27\x14\xa9\xb6\xf8\xd3\x82\xe7\xea\x9b\x68\x60\xb7\x56\xe7\x8e\xcc\xb4\x29\x9b\xca\x20\x2d\xab\xa8\x3d\xce\x2a\x6a\x8f\xb3\x8d\x19\x0f\xc0\xba\x5c\xd9\x60\x2d\x87\x40\xb1\xda\x9d\xa9\x65\x13\xb3\x87\xdb\xa9\xc9\x90\xef\xe1\x8a\xf0\x2b\x7c\xdc\x44\x29\xda\x4f\x92\x51\xcb\x27\x3f\x3c\x18\x23\x73\xd8\x0d\xda\x31\xbd\x24\xee\xd9\x7e\x95\x20\xe1\xf7\x27\x8a\x47\xed\xf7\x9b\x1c\xff\x72\x98\x85\xc4\xb4\x87\x07\x2e\xbb\x99\x7e\x4c\x0c\x40\x13\xbd\x8c\x8d\xed\x62\x88\x09\x40\xa7\x33\xa1\xc5\x28\x9e\xa9\x19\xf3\x8c\xa3\x79\x1e\x88\xd2\xd6\xef\xeb\x13\x3f\x17\xc1\xb1\x0a\x6a\x94\xbf\xae\x30\x10\x8b\x36\xef\x95\xf9\x5c\xb4\x8a\x3b\x64\x70\xa8\xe2\x14\x3a\xae\x19\x3f\x93\x64\xcc\x9d\x2c\xd1\xa0\x52\x88\xb0\x0b\x9a\x8c\x9a\xb4\xdd\xe4\xb9\xb9\x8b\x28\x9f\x1b\x9f\x04\x7e\xbe\xff\x58\xf4\xf7\x7e\xbe\x6f\x72\xd3\x4b\x46\x63\x0c\xb9\xa1\xbd\x07\x4e\x12\x3e\x56\xa8\xb9\x22\x16\x46\xb1\x96\xd3\x5b\x44\xe2\x29\xa3\x92\x8a\xe3\x27\xb7\x69\xcc\xef\x41\x6c\xa0\x4a\xda\xaf\x6a\xdc\x25\xc4\x6a\x80\xe1\x43\xf8\x0d\xaa\x16\xf8\x83\x07\xb4\xe1\x70\xf5\x6f\x2a\x59\x4d\xd3\xcd\x92\xa8\xc8\x6d\xb4\x3a\x45\x91\x32\xa3\x7b\xe9\x93\xf0\xdb\x37\x28\x1f\x10\x85\xca\xcf\xf8\x48\xc7\x8e\xa8\x11\x6a\xa8\x83\xed\xa5\x76\x51\xb0\x11\xbc\x4f\x43\x17\xc1\x44\xe1\x12\x46\x60\x44\x6e\xc9\x4f\x63\x6c\x73\x18\xb3\x57\x92\x25\x5b\x61\xb3\x82\xee\x23\x1f\xbb\xd6\x56\x6f\x68\xe2\x9e\xfc\x61\xd3\x78\xa5\x0f\xb9\xc2\x34\x89\xa7\xd5\xe3\xb9\xac\x1a\x46\x97\x15\x69\x3b\x23\xd7\xf9\xe4\x13\x65\xf5\x07\x91\x8d\xe3\x29\xb5\xee\x36\x14\x47\x02\x2f\x2d\x84\x41\xf7\x5d\xa8\x31\x36\x89\xa8\xaa\x31\xfd\x8f\x62\xa7\xfd\x97\xf8\x0c\x50\x06\x4d\x88\x81\x17\x4b\xb7\xdc\xf5\x2a\x1b\x48\xdc\x6f\xea\x59\xcd\x9b\xb5\x71\xd2\xd9\xc3\xed\x5e\x81\x58\xdb\xcd\x0d\xce\xc9\x30\xdf\x85\xda\xec\xe5\x81\x03\x15\xfa\x67\x32\x9e\x00\x9d\x3c\x52\x6a\x66\x8f\xdc\x6c\x4c\xd2\x2d\x0d\x9f\x2a\x2f\x42\x52\x02\x37\x01\xd1\x19\xc4\xff\x6f\x37\x8a\x4d\xf6\xa2\x70\xd4\x15\x72\x4e\x17\xa7\x3b\x6e\xaf\x8b\x5a\x3a\xe8\x7e\xed\x62\x0f\xce\xb5\x4d\x3a\xb0\x71\x1e\xc6\x21\x13\x0a\x35\x56\xe0\xb7\x96\xce\xa8\xe0\xb2\x6c\xa3\x64\x4c\xdc\x51\x28\x7c\xb3\x9a\x8f\x4e\xc9\xdf\x51\x5b\xb1\x17\x25\x05\x4b\x1a\x6b\x51\x07\x3e\x76\xc5\x9f\xa5\x94\xd0\x2b\x2d\xdd\x86\xa5\x6b\x91\xfe\xac\x62\x9b\x4c\x93\x31\x63\x6e\x1d\xf5\x62\xf9\xf5\x02\xd1\x2c\xbf\x42\x20\x27\xfe\x53\xdd\xd4\xc4\xfd\x69\x2d\x39\x37\xf1\x95\xbf\xaf\xa9\xca\xdf\xd7\xaa\xac\xca\xfb\x15\x19\x40\x84\x8e\x12\xcb\xbd\x57\xa4\xdf\x1b\x0c\x7b\x92\xf6\x6d\x5a\xed\xfb\x9d\xd0\x7d\xbf\x13\xb5\x37\x7b\xe0\x00\x93\xd5\xca\x9b\x15\x2a\x78\x9f\x26\xdc\xc5\x37\xc8\xb4\xf2\x96\x06\xf4\x81\xd9\xf6\x91\x99\x97\xf7\x61\xa7\xb8\xe8\xc1\xf9\xe0\x7f\xea\xb5\x7c\xfe\xc6\xb3\x04\xb4\x17\xe9\x05\x85\x6f\x39\x83\x37\x89\xd4\xe5\xc6\x44\xf5\x39\x79\x5e\x1e\x01\x3e\x73\x6e\xa0\xff\xf2\xf7\x03\x25\xea\x8f\x38\x49\x31\xcd\xce\x3b\x36\xab\x06\x24\x54\x16\x25\x03\x23\x94\x3f\xcc\x6a\x1e\xf8\x40\xe8\xaa\xea\x34\x24\xdd\x2c\x37\x3d\x26\x0e\x91\xf1\x94\x7b\x13\x4f\x74\x70\xaf\x49\x68\x22\xeb\x19\xf7\x16\xe0\x52\xc1\xbd\xcd\xc7\x0d\xad\xf5\xd9\x76\x6c\x4d\x3a\x5d\xe6\x63\x0e\xd1\xe9\x86\x64\x37\xd5\x7c\xcd\xc7\x15\x0a\x00\x2f\x9b\x61\x16\x17\xc3\x74\xc4\xfb\x43\x91\x10\xbe\xe8\x1e\x64\x43\x2c\xc4\x88\x11\x89\xe3\x9d\x26\xbe\xbf\xd5\xcb\x95\x36\xcf\x2b\x49\x77\xa7\x6f\xe1\x41\x41\x8b\xd3\x25\x60\xfd\x90\x42\xdc\xd1\x13\xa4\xf7\x54\xda\x7f\x07\xb8\x7c\xfe\x84\x03\xa4\x74\x6d\x18\x0f\x76\xd0\x5b\x47\x15\x15\x7d\x46\x87\x35\x7c\x69\x61\x86\x97\xe5\xfb\x93\xd6\x97\x04\xa8\x72\xba\x02\xc6\x6f\xd2\xbf\x4f\x93\x22\x17\x7f\xc3\xa5\xda\x40\x97\x6d\x2b\x08\xd3\xc5\xe7\xa7\x94\xf8\x04\xe6\xe4\xd1\x83\xfc\x43\x58\x28\x44\xb0\x17\xd5\xee\x1c\x9b\x5e\x8e\xed\xed\x08\x2c\x16\x3c\x81\x85\x6f\x15\x6e\x03\x34\x9b\x4f\xd6\xf6\x29\x98\x5d\xb7\x45\xc5\x41\xa6\xdb\xc3\xe3\x11\xee\xbd\x9a\x96\xf7\x6c\xdb\xac\x18\x26\x6e\x73\x18\x28\x17\xb8\x78\x4d\xed\xd8\xbc\x1a\x4a\x48\xc8\x04\x62\x55\x36\x31\x87\xe0\x0d\x6d\x26\x7a\x87\x7a\x7e\x80\x2b\xf6\x6a\x30\xff\xf5\xda\x32\x9f\x3d\xdc\x8e\xc3\xa5\x25\x1b\xb2\x93\xd4\xda\x74\x15\xce\x5d\x6c\xc4\xfb\xb5\xa4\x7f\xf6\x70\x3b\xb2\x06\xf4\x90\xe8\x29\xae\xab\x51\xcd\x3a\xa8\xe1\xd0\xa1\xf6\xa2\x09\x85\xd2\x5a\x0a\x5b\x8a\x9d\x64\x43\x15\xbf\x8b\xde\xd2\xfe\xf2\xd1\xa0\x28\x58\x81\x08\xaf\x4f\x2a\xd4\x35\xe5\x4a\x63\xb5\x6a\x5d\x35\x45\x4a\x2c\xa8\xf2\xd2\x6e\x21\xc4\xfa\x10\xc5\x14\x1e\x9e\x0f\x94\x7e\xd5\x2e\xa5\x0d\xf8\x0f\x27\x4a\xe9\xff\xe9\x8e\xca\x4f\x9e\x06\x10\x59\x30\xe8\x52\x35\x09\xe3\xc5\xa8\x28\x73\xd6\xfe\x0e\x45\xb2\x74\x89\xc1\x21\x7c\x36\x51\x94\x04\x28\x55\xb8\x26\x5c\xf9\x6b\xa8\x76\x9c\x0d\x2a\x4d\x6c\x6b\x52\x08\x49\x69\x60\xb7\x1a\xb9\xaf\x6a\x8b\x9b\x48\x84\x2b\xb8\x60\x4e\xeb\x4b\x92\x55\x35\xbf\xbe\x51\x53\x39\x39\x38\xd7\xee\xf5\x09\x1e\xe3\xe8\xc9\x5d\xb5\xf7\x6d\x4d\x22\x71\xcb\xb1\xa4\x8d\xcc\x32\x01\x92\xb1\xa2\x65\xf6\xd2\xa3\xff\xce\x34\x79\xab\x91\x35\x59\x91\x0a\x01\x91\x74\xd1\xe8\x1b\xea\x6d\xb4\x72\x81\x13\x91\x17\x36\xef\x1f\xd3\x06\xe5\xe3\xc9\x13\xe2\xc2\x5e\x98\xfd\xf3\xe8\x9e\x0a\xc2\xbd\x7c\xdd\xa8\x72\x9f\x25\x1d\x5c\x69\x18\x68\x91\xba\x33\x81\x92\xbb\xf8\x36\x20\x0f\xb8\xf3\xcf\xae\x51\x91\x1d\x59\xf2\x4d\xcd\x85\x7d\x7f\x52\x11\x75\x5a\x98\x61\x53\xb4\x4d\xd9\xbb\xff\x88\x24\x35\x18\x56\x1c\xf8\x11\xd7\x6f\xa1\x3c\x2e\x5a\xca\xb4\x8a\x10\xa8\xbc\x87\x75\x81\xaf\x7a\x80\xd5\x2d\xda\xd6\xdb\x7f\x9a\x21\x9c\x4c\x8d\xe1\x44\x63\x17\x44\xd9\x07\x40\x28\x2c\x5b\x1e\x3b\x82\x99\xb8\x8d\xe1\x15\xc7\x3e\x5a\xee\x20\xf8\x92\x6b\xe4\x83\x84\x34\x58\xb5\xe0\x4f\x90\xd5\x94\x9e\xa0\xcf\xa3\x46\x61\x1c\xdb\x2c\xc9\x4d\xcb\xa3\x86\x4e\xab\xa9\xa5\xd3\x4d\x3a\x58\x8b\xa4\x8f\x0c\xf2\x28\xc7\xe7\x5a\xde\x83\xf0\xb1\x4a\x92\x6a\xe3\x7e\x92\x66\x2c\x67\xe2\x64\xe1\xae\xa9\xa6\xc9\x35\xd5\xbb\x1d\x9b\x2c\x4f\x57\x51\xca\x73\x52\x08\xbe\x88\x78\x57\x55\x38\x7e\x47\x7d\x6c\x31\x1c\x14\xa9\xdd\x59\x3e\x37\xd8\x14\x96\xcb\xc2\x32\xb9\xae\xa9\xcd\xfe\x1d\x2a\x2c\xc0\xc0\xb7\x68\x82\x1f\xa1\xd0\x1e\x90\xa7\x4b\x83\x5c\xcc\xf5\x8a\x71\x44\xfd\xa2\x03\xaf\x46\x71\x36\xd4\x9c\xdf\xa8\xe0\xc6\xc2\xec\x61\x2e\xc8\x9c\x87\x61\xe7\x13\x38\x41\x18\x94\xd1\x38\x4d\x96\xc3\xcc\xe8\xf6\x9d\x2b\x2a\xf9\xa6\xb0\xe2\x12\x59\x4c\x52\xb3\x9a\xa1\xe1\xca\x64\x8f\xf4\x97\x8e\x14\xd1\x13\xf1\xd6\x8c\x39\xcd\xc6\xdb\x74\x07\xad\x12\xb9\x8b\xf2\x32\x65\xce\x0d\x1b\x0c\x5b\xe7\x7d\x45\xda\x74\x45\xab\xdc\x6f\x77\x44\x5c\x79\x38\x0a\xe3\xc1\x74\xeb\x20\x2b\x86\x0b\xcd\xfe\x34\xd5\x75\x61\xbb\xf7\x77\x94\xfa\xc9\x3f\x6d\x20\x59\x9e\x6f\x0f\x12\xaa\x71\xa8\xf1\xfe\x79\x37\xde\xaf\x84\x64\x92\x2c\xdf\x57\x5e\xac\xe3\x9a\x29\xdf\x05\x8a\x54\xb7\xab\xfd\xaf\xf2\xc5\xb2\x65\x50\xc2\xc9\xd7\x68\x3f\xa1\x26\x00\x97\xec\xc6\x8e\xcb\x17\x29\x89\x3a\xdd\x07\x2a\xf9\x4c\x19\x06\x9c\xe2\x2d\xec\x66\x3e\x99\x28\x92\x91\x0b\xaa\xe4\x3a\x32\xe9\x32\x33\x4f\xc9\x1e\x62\x32\x5c\x3e\x59\xdb\xea\x31\xe7\x17\xe6\xdb\x8b\x61\x8a\x66\xb3\x94\x46\x54\xad\xc6\x65\x42\x23\x93\x1e\x23\xa1\x4f\xc7\xd2\xbe\x8f\xac\x02\x62\xc0\xd7\x34\x7f\xc5\xde\x35\x89\x39\xc7\x36\xcd\xc3\x58\x36\x9d\xac\x40\x5f\x2b\x3c\x1f\x78\xb2\x75\x1b\x2f\x97\x29\x7d\xb9\x45\x77\xab\x61\xc0\x47\x78\x23\x3a\xe4\xe2\x19\x2a\x7a\xb8\xaa\x56\xfe\xb2\x9b\x08\xd5\x41\xfb\xc4\x67\xe4\xef\x6b\xc2\xf3\x73\x81\x1f\x23\x89\xfa\x63\x94\x3c\x60\xa9\xd7\xa9\x1a\xc9\xc7\xaa\xb8\x32\x48\x93\x22\xee\x77\x4d\x14\xe9\xb2\x0c\x5e\xb2\x4a\xf9\x5e\x66\x1b\x7f\x5f\xed\xca\x5e\x64\x8a\x7e\x98\xec\x50\xd2\xed\x1b\x4a\x5d\x6c\x03\x57\x86\xe5\x74\x76\xa2\x38\x35\xee\xea\xe2\xfc\x86\x22\xe8\xed\xa5\x26\xac\xa8\x48\xe3\xb5\xf1\x71\xe0\x68\xf3\x3e\xff\x59\xfa\x4d\x74\xe2\xcf\x07\x3a\x10\xfb\x2c\x56\x1b\xe4\x98\x9f\xc2\x68\x37\x9c\xca\xf4\x1a\x3d\x8e\xca\x4d\x61\xbb\xef\xa5\x71\x4c\xfc\xc3\x8e\x8e\x67\x8e\x7d\x13\x3d\x67\xa4\xa7\xbb\xc0\xa2\x87\x0a\x1f\x13\xb9\xe0\x15\x80\x55\x13\xbb\xe3\x26\xde\x13\x0f\x93\x4f\xbc\x98\xdf\x55\xf8\x0b\x1e\xce\x64\xb3\x80\x94\xe7\xd1\xc4\x53\x43\xfc\xc1\xa4\xf5\x4b\x5f\xe4\xb8\x0c\x04\xf2\x08\xcb\xae\x4f\xb6\xff\x74\x55\x64\x94\x0a\x07\x7f\xf5\xaf\x90\xd7\xc4\xd6\xbe\xaa\xa4\x19\xde\x55\x45\xa5\xc5\x30\x46\x2d\x0b\xd8\x68\x44\x50\x7c\x5c\xd1\x10\xca\xc3\x96\xb7\x32\xcc\xd5\x21\xdd\xb3\xca\xd4\xb1\xed\x3f\x85\x67\xae\xe1\x2e\xd8\x27\x3c\xf4\x0f\x7b\x79\x0f\xa3\xa6\x72\x79\xaa\x4f\x72\x1b\x8f\x16\x1b\x8d\xa7\x35\x60\x3e\xaf\xc3\x30\xe2\xd1\x9e\x99\x78\x50\x3e\xe3\x8e\xe1\xa4\x5f\xa3\x4d\x43\x05\xb4\xd7\x9e\x59\x53\xd9\xd5\xad\x89\x92\xdd\x98\xee\x68\xfe\xd0\x89\x7b\x06\x9f\x65\x14\x26\x5f\x98\xf6\x92\x76\x40\x03\x46\xe5\xc5\x21\x66\xb8\x8d\xcb\xe6\x93\x06\x2a\xb4\xb1\x09\xfb\x80\xf5\xc1\xb2\x33\x5b\x12\xcf\xdb\x4f\x54\xaf\x02\x89\x85\x68\x4f\x35\xe4\x05\xe1\xe2\xe2\xaa\xe2\x9c\x3e\x19\x78\x2d\x8a\x93\x4d\x8c\xa0\x63\x1b\xf7\x1d\x56\x08\x6b\xf6\x03\x45\x09\x3a\x54\xb1\xfc\x07\x0d\xbd\x84\xb9\x76\x2f\x0d\xf3\xb0\x47\xda\x33\x5e\xe7\x15\x4d\x7b\xe1\x98\xa2\xeb\x47\x27\xf7\xb1\xde\xfc\x28\x6a\xd2\x4c\xb7\x94\x10\x7d\xea\x78\x4b\xc1\xc2\xcf\x4e\x14\x41\xec\x1b\xc1\xd6\xfe\x58\x79\x19\xfd\x30\xeb\x25\x71\x1e\xc6\x85\x45\x28\x8d\x27\xf9\xfd\x89\xda\xbe\xa7\x15\xb3\xd0\x5b\x15\x80\x43\x2f\x59\x99\x52\xf4\xa6\xff\x97\xee\x39\x60\x28\x00\x48\x36\xda\x13\xae\xb3\xd9\x5b\x2a\xbd\x2c\xaf\x1a\x38\x32\x3e\x86\x8b\x02\x27\x0c\xd2\x59\x3e\xd6\x11\x49\x12\x87\xa2\xf6\xcc\x78\x1e\x35\xd6\x70\xd5\x8d\xf7\x8f\x92\xde\x12\xaa\xff\xe5\xf3\x65\x06\x2d\xfa\x4b\x61\xd3\x6a\x48\xf7\xf2\x70\x64\x33\xd6\x26\x80\x3d\x06\x6c\x93\xc7\xde\x69\x1d\x23\x3c\x3d\x37\xa9\x50\xef\xd0\x8d\x23\x2c\xe0\xa5\xcf\x1a\x7f\xb5\x2c\xf6\xc0\x81\x76\x54\x1c\x2b\x52\xe0\xb9\xa4\xa4\x53\x7e\xb1\x84\xcd\xbe\x0e\x76\xae\x81\x9c\x2f\x0a\x97\xdd\xc2\x83\x11\x00\x1a\x0c\x4f\x1a\xbc\xe7\x58\x34\x75\x5d\xc2\x83\x73\x35\x25\x09\x78\xf2\xeb\x6a\x32\x11\x7a\x2f\xb2\x20\xb7\xd4\xde\x5e\x5a\x98\x69\x2f\xcc\xec\xda\xaa\x21\x0a\xdc\x37\x67\x1e\xca\xce\x3b\x4f\x46\x73\x2e\x58\x5a\x1b\x30\x33\x4e\x76\xdf\xdd\xed\x8d\x5a\x95\xaa\x0c\x27\x06\x26\x1b\x03\x21\xe9\x90\xa6\x47\x66\x1c\xa0\xb4\xce\x83\xff\xe2\x56\x31\x7a\x98\x65\x8c\x2f\xf0\x71\x6d\x47\x42\x20\xae\xfc\x98\x15\x0d\x64\x85\xa7\x9d\x77\x93\x05\x0d\xd0\xe5\x9e\x19\x87\xb9\x89\x06\x00\x49\xab\x42\x89\xe2\x66\xaf\xf7\xdf\x8e\xcc\x10\x25\x26\xd9\x10\xbf\xbb\x36\x2a\xb4\x36\x74\xf5\xb0\xc6\x7f\xd8\xc0\x95\x30\xdf\xb6\x7d\xb4\xe2\x4a\x27\x26\x90\x65\xd5\xea\xb8\x50\x17\xee\x5d\x98\x6f\x0f\xcb\x14\x5d\xf0\xdc\xf2\x6c\x14\x5d\xcc\x7a\xcd\xd0\x1e\x38\xd0\x4e\x16\x17\x89\x4c\x0a\xd6\x14\x78\x77\x99\x0a\x28\xf7\x32\x92\xbf\x6d\x44\xe5\x8b\x50\xef\x81\xd2\x64\x5d\x4c\x92\x7e\x96\x17\x8b\x8b\xe0\x2b\x13\x5a\x32\x3f\x0c\xc1\xa3\x87\xa8\xd3\x6e\xe8\x69\xf7\x63\xbd\x22\xb3\x59\x45\x45\x7b\x43\xf3\xc3\x6e\xb8\x82\x64\x6e\x23\xbb\x1c\xf6\xad\xe8\x1d\x56\x94\xcd\x05\x1d\x59\x2b\x70\x1d\x68\xe7\x43\x93\xef\xa4\xfb\x87\x19\x3f\x39\x51\x21\xf7\x93\x6b\xde\x7b\x9f\x53\x62\x11\xfb\x09\xc7\x02\x2b\x3b\x4d\xa9\xb4\x4c\x75\xc8\xe5\x0c\x8a\x30\x8a\x6c\x3a\x82\x4a\xe1\xff\xaf\x8b\x99\x9b\x6b\x67\x49\x3c\x98\x56\x48\xc9\x0d\x05\x62\xd9\xd9\xf1\x93\x40\x8c\x97\x05\x8e\xef\x5a\xcd\x41\x1d\x9c\x6b\x9b\x11\x91\xa2\xb7\x3e\x71\x82\xe6\x59\x55\x13\x5c\x4c\xcb\x78\x92\x05\x3d\x91\xdd\xb0\x80\x28\x9f\x7c\x62\x9f\x6b\x1c\x99\x98\x67\x24\xf1\xa7\x0f\xd4\xe0\x26\xe4\x31\x81\x95\xba\xaf\xc4\x49\xa2\x64\xc5\xa6\x7b\xcb\xa7\x06\x5b\x3a\xdd\xf1\x09\xcc\x26\x7d\x1e\xd1\x32\x08\x0f\xd1\xe5\x78\x82\xb8\xaa\xb0\x1b\x2e\xe9\x1a\xdc\xf6\x8e\xd2\xae\xe5\xc8\x17\xa6\xe9\x11\x56\x95\x50\xd9\x7b\x0b\x74\x73\xa2\x38\xdc\x7f\xad\x09\x6d\x9c\xc4\x3d\x10\x97\x21\x08\x03\x7b\x84\x40\x83\xca\x0b\x41\x60\x73\xa7\x6e\xdd\x67\xdb\x24\xd5\xcd\xfb\x4b\xfa\x3a\x74\xbd\xd2\xf1\x69\x9a\xcd\x28\x7f\x90\x99\x0d\x1c\x8e\xda\xe3\xf7\x3c\xd3\xfd\xd0\xa6\x28\x25\xcc\x73\x7a\xfa\x6f\x54\x01\x04\x82\xb9\xc8\x78\xef\x34\xa9\xc0\x0d\xc3\xbe\xed\x96\x59\x47\x4b\xd9\x26\xfa\x90\xd8\xa9\xa6\x11\x90\xd4\x46\x4a\x79\x02\x4f\x81\x7b\x3c\x7c\x52\x07\xb7\x2c\xcc\xb7\x7b\x6e\xdc\x64\x96\x3d\xcb\x05\xe4\x55\x7c\xa2\x60\xe4\x7d\x42\x56\x64\x2d\x45\x18\x78\x81\x5c\xa2\x90\x41\x34\xbc\xa2\xa1\x8d\x38\xf8\x13\x80\x9b\x62\xa7\xd8\xd0\xf0\xa8\x8d\x40\xb7\x6a\xf6\xfa\x47\x09\xbc\x3b\x9c\xcf\xa6\x26\xa2\xd0\x64\x03\x97\x2b\x45\xfb\xc8\x9a\x5d\xe4\xbe\x78\x74\x55\xe9\xd4\x1f\x67\x8a\x26\xd6\x66\x84\xf9\xc6\x73\x3d\xaf\x64\x91\xee\x60\xbe\xc8\xf1\x98\x97\xd7\x29\x0a\x34\x0d\x11\x49\xb7\x48\x45\xcb\x4b\x44\xd3\xfd\xb0\xd1\x65\x4f\xb7\x67\x17\x6d\xea\xa9\x77\x51\x99\x7b\xa4\xca\xe9\xd7\xd5\x30\xc7\x79\x45\xa8\x91\x9b\x30\xc2\x7a\x72\x7a\x59\x6e\x0d\xc1\xe2\x60\xff\x6c\x5f\xab\x70\x9d\xd9\xec\xa9\x96\x17\x47\x9d\x28\x8c\xef\x1d\x7a\xda\xe8\xc4\xec\xe8\x28\xca\xa9\x4d\x3c\x55\x34\x98\x50\xab\x05\xbf\xdf\x33\x6b\x4a\x9d\x9b\xc7\x71\x90\x87\x4d\xd3\x64\x30\x70\x94\x9f\x26\xe7\x82\xaf\xfa\x26\x01\x8c\x85\xf7\x8c\x12\x0a\xd4\xf0\xf9\xe1\x62\x3b\x80\xf9\x9d\xb1\x09\x81\x62\xbf\x0f\x2a\x33\x9e\x8d\xc3\xf7\xf4\x5c\x50\x99\x9e\xe5\xba\xda\x7d\x3d\xcc\x0a\x25\x11\xd4\x62\xce\xb9\x69\xc4\x15\x99\x3f\xa6\xdb\x96\xde\x9b\xea\xc3\xa9\xe9\xbd\x91\x25\x02\xd6\x3d\x2a\xbe\xf8\x07\x2a\x9b\x7b\x8c\x28\x49\xa6\xf1\xfd\x20\xcf\x4d\xce\x60\xf9\x5f\x60\xe3\x5c\x9d\xfd\xc8\x8c\x53\xad\xa1\x5a\x2a\x9c\xf4\xb7\xf0\x8c\x50\x2c\x9c\xee\x6c\x35\x5a\x62\xcc\xbb\x53\x9a\xa0\xb5\xfc\x49\x27\xd9\xfd\xe2\x7f\xf5\x02\x3f\xd5\x47\x95\x84\x34\x2f\xec\x0e\xba\x50\x57\x85\x38\x74\xc8\x03\xb4\x34\x52\x02\x57\x2d\x05\x8a\x96\xe3\x53\x3f\xd7\x24\x32\x3d\x4e\x93\x71\x1a\xda\xdc\x30\xf9\xb6\xc3\x75\x29\x9e\x81\xfa\x14\x40\xdb\x64\x4b\x5b\xa6\x56\xcf\xa9\xa9\xd5\xba\x1c\xf8\xec\xe1\xf6\xa2\xc9\x7a\x21\x93\x54\x01\x5c\xb4\x9b\x42\x68\x3e\x56\xf0\xd7\xd4\x84\x99\xed\xef\xa2\x9b\x42\xc5\xe3\x36\x31\xc5\x09\x0f\xb6\xae\x85\x80\xcd\x88\xa9\x47\xe8\xad\x22\x60\x45\x09\x5e\x18\x24\x15\xa3\xf0\x86\x82\xda\x75\x93\xa8\x0f\xd0\x92\x10\xc9\xae\xeb\x01\x7c\x2d\x29\x3a\x2c\x06\x83\x90\xc9\xfa\x44\x09\x90\x2e\x50\x34\x02\x15\x25\x63\x52\xa4\xa1\x15\x1e\x2f\xac\xc7\xfb\x15\x5b\x42\x1b\x8f\x19\x03\x6a\x16\xf7\x73\xed\xe7\x57\x86\x26\x9f\x2a\xb7\x11\xb2\xbd\x6f\x23\x50\x82\x1b\xba\x46\x7b\x4d\x66\x2b\x1b\xe2\x91\xdc\xa4\xe1\xe2\x62\x86\xe0\x86\x35\x38\xb8\x7c\x84\x27\x70\x4f\xcf\xb1\xac\x4f\x14\x4b\x7f\x9d\x28\xec\xb9\x76\xdf\x62\xb6\x92\x9d\x12\x4a\x35\x67\xf5\x68\xbd\xa6\x87\xea\x99\x71\x5e\xa4\x12\xe0\x08\xf0\x83\x3e\x29\x90\x10\x27\x46\x90\xe4\x3b\x3d\x19\x4b\x8b\xa7\x22\xb0\x8d\xd0\x6c\x80\xe5\x7f\x62\xcd\x87\xed\xbb\x48\xe6\x4c\x5c\xa8\x1a\x71\x38\xa9\xfa\xfa\xfd\x24\x1d\x95\xe1\x3a\xa3\xd1\xb0\xe3\x7f\x7d\xe2\x53\x8d\x5f\x77\xe5\xf9\x3c\x0d\x6d\x7f\xa7\xdf\x49\x2c\xc2\x2b\x9b\xb1\xe5\x94\xb3\x1e\x4e\x54\xe0\x7e\x43\x9b\x82\xeb\xba\xce\xf9\x40\xf5\xdc\xfa\x09\x74\x91\x14\x71\x3a\xdb\x43\xc1\x3d\xf9\x38\xcd\x44\x91\x8d\xb1\x0e\xa5\x3b\xa8\xfa\x16\x97\x9c\x2b\x35\x59\xa8\xfb\x2c\x7f\x80\xef\xe3\x13\xe7\xa2\x30\x54\xe1\xf6\x27\x53\x29\x29\xd5\x86\xb3\xae\x3d\xbf\x92\xa4\xf9\x70\xaf\x97\xbb\x60\xa2\x48\xc4\xe4\x00\xab\xa1\xef\xf1\x2c\xf5\x3a\x50\x24\xf8\x74\xc7\x2b\xb8\xdf\xe3\xdd\x08\x17\xf1\x90\x1e\x19\xcc\x17\xaf\x11\x51\x04\xac\x52\x71\x96\x37\x87\x52\xdf\xf6\x35\x45\x00\x73\x31\x50\x4d\x82\xae\x4d\xa7\x7d\xa1\xe7\xc6\xc4\xcf\x27\xff\x0b\xad\xe4\xb7\xae\xe2\xd8\x6d\x1d\x5f\x68\x1d\x25\xcb\xa5\x11\x29\xd7\x08\xfc\xe5\x35\xd4\xe3\xb8\x91\x43\xf7\x86\xd5\xf6\xbe\xd2\x84\x7a\xa3\x4a\x2b\xad\x10\x00\xdf\x26\x77\xcb\x2d\x73\x07\x7c\x5b\x49\xd2\x25\x52\x51\x73\x4a\xb6\x13\x35\xa5\x32\xd1\x54\xe0\x69\xb8\x1c\x46\x76\x60\xb3\xa9\xf2\xe7\xb0\x17\xaf\x07\x3a\xa5\x29\xb7\x3c\x60\xed\xbf\xaf\x2a\xc6\x61\x9c\xdb\x68\x1f\x39\x7e\x38\x6b\x66\x8b\x46\xb3\xf8\x0e\x1a\x17\xfc\x2f\x81\x6f\x8c\xff\x3f\x54\xef\x11\xb9\xd3\xd6\x16\x0a\x29\xd4\x59\xae\x63\x0f\x01\x2c\x77\x82\xd2\x2e\x04\x27\x3b\xa9\x5c\xcc\x12\x34\xe8\x86\xca\xfc\x10\x39\x38\xf9\x39\xdf\xc2\x88\xed\xca\x38\x49\xf3\x0a\x0f\xdb\x8d\x40\xe1\xf9\x6f\x28\x6b\x3a\x4e\xc3\x11\x91\x48\x94\x8b\x02\xa9\x09\xd8\xbd\x24\x9f\xf6\xd0\x41\xa4\xbd\xfc\x37\x2e\x9c\x0a\xe3\xdc\xf4\xf2\x5d\xbe\x96\xc2\x0b\x57\xe8\xf6\x95\x00\xfa\x47\xea\x4d\xff\x14\xb4\x21\x9d\x5e\x47\xf9\x76\x9d\xde\xf1\x91\x19\xc1\x33\x34\x91\xb5\xac\xa4\xd6\x2c\x31\x5a\x54\xc6\x33\x69\x81\xf3\x49\x2d\xa4\x3c\x38\xd7\xce\x56\x92\x34\x9e\x72\x9b\xe8\xbf\x60\xb1\x73\x18\xe5\x3d\xe4\xfd\x04\x3c\xf6\xa4\x22\xaf\x1e\x15\xa9\x99\x52\x3d\xc3\x3f\xc2\x85\x22\xbe\xba\x51\x2d\xfd\x34\x55\x3c\x87\xc9\x28\x89\x92\x41\x52\x64\x14\x66\xe0\xb5\xdf\x55\x54\x5c\x3c\x8e\x25\x63\x6b\x1e\x5a\xb1\x12\xad\xee\x76\x72\x06\xff\xf8\xe7\xe8\x0a\x81\x16\xd8\x81\x4b\x77\xf4\x5a\x07\x3c\xdb\x7d\x4b\xb4\x57\xbe\xf7\x34\xa5\x8e\xf8\x00\x3f\x5d\xec\xf8\xed\x14\x5e\x0a\x69\x97\x5f\xda\x24\x4f\xf7\x54\xb9\xa2\x36\x7f\xa8\x5b\x81\xdf\xd4\x11\xec\x05\x5a\xc8\xa8\x75\x02\x88\x81\x8a\xdf\x0d\x85\xec\xfe\xaf\x59\x87\x0c\xae\xe1\xb1\x1e\x48\x9c\x5e\xa3\xdd\x22\x74\x38\xae\x46\xb9\xfe\x14\xca\x87\xf0\x90\xc0\x48\x3a\x24\xd1\x01\xd1\xfb\xbd\x3e\xd1\x84\x63\x5f\xd3\xe3\x36\x98\x91\x61\xd6\x93\x5a\x7e\xfa\x5c\x3b\x8c\x15\x98\xa1\x82\xad\x16\xe5\x09\x8f\x10\xc9\xd3\x70\x50\xb8\xa4\x02\x6e\x6a\xe7\x9a\x7b\xb2\x2f\x3c\x49\xaf\x02\xab\xfb\x7a\xd3\x4c\x49\x2f\x0d\x47\x36\xd3\x32\x93\xf7\x35\x75\xca\x15\x55\x26\x3f\xeb\x1c\xc5\x62\x92\xe6\x85\xf3\x51\x9c\x2f\xd0\xde\x93\xdc\xa1\x9e\x41\xcf\xb7\xcd\xc0\x8b\x44\x71\x05\x2d\x50\x00\x84\xf3\x13\x99\x0a\x34\x2b\x53\x8a\xde\xe6\x3e\xb5\x7d\x60\x6a\x36\xc9\xe2\x8a\x7e\xcc\x27\x31\x49\x77\xed\xb2\x4d\x79\xe8\x0c\xc0\xc8\x8d\x4f\x96\xfd\xf6\x8b\xb8\x6f\x46\x6c\x85\x1c\x84\xa6\xfc\x43\x3e\xa9\x04\xd5\x69\xf6\xfc\x13\xe5\xe2\x12\xc9\xba\xd6\x81\x03\xfc\x77\x77\x61\x56\x61\x1c\xf6\xad\xf9\x28\xfa\xfb\x9a\xaf\xeb\x61\xa0\xa6\x8b\xef\xaa\xee\xf0\x0d\x5a\x1b\x68\xde\x61\x14\x0b\x16\x73\x0a\xde\x0e\x5f\xf5\xa9\x4e\x43\xb6\x3d\x12\x25\xa7\x46\x8a\xd0\xcf\x3a\x7b\xbb\x64\xa3\x68\xf5\xef\xfd\xfc\xb2\x49\x63\x1b\x45\x9a\xa1\xe1\x63\xcd\xd0\xf0\x71\x03\x61\xca\x5c\xbb\x88\x57\xc2\x0c\x6f\x1d\xbb\xf8\x7c\xe0\xb5\x35\xce\xbb\x11\x81\x64\xd9\xa6\x2b\x43\x1b\x8d\x24\xfa\x83\x7d\x24\x95\x34\x39\xee\x6c\xcd\xea\x16\x66\xda\x51\x62\xf2\x21\xd1\x32\x94\x7f\x88\xd5\xfc\xad\xc0\x07\x60\xdf\x72\x2b\xb0\x88\xfb\xc4\x43\x0b\x66\x04\x6c\xbf\xd7\x11\x51\xe1\xfb\x31\x05\x88\x85\x7b\xd3\x85\x2d\x4b\x71\x32\x5e\x6c\xa9\x5a\xcf\x71\x8d\xee\x3d\xae\x66\x08\xb2\x3c\xb5\x86\xaf\xff\x0b\x8d\xf2\x5c\xb2\x09\xb3\xaf\x14\xa6\xab\x86\x91\x85\xb1\xd3\xe3\x7f\x2f\x05\x5b\xf4\x1d\x16\x66\xda\x2f\xcc\xee\x57\xdd\xfe\xfb\xe4\x45\xe8\x5d\x7d\xe5\xb3\x94\x46\xf3\x30\x6f\xe0\x01\x41\xaf\xe1\xf5\x20\xb8\x6d\xad\x4d\x55\x44\xf8\xca\x1b\x47\x88\xb1\x7d\xcd\x97\x9b\xb8\xb3\xec\x52\x54\x0d\x22\x72\xdb\xfa\x24\xe5\xa1\x9b\xd7\xe0\xd2\x61\x03\x6e\x54\xc8\x4f\xe3\xac\x88\x72\x13\xe7\xbb\xcb\x2f\x60\x6a\x05\x4d\x8f\xf7\x43\x25\xbb\xf0\x63\x3c\x50\xfc\xfe\xeb\x74\x5b\x80\x60\xdd\x81\x9d\xc6\x3c\x14\xc4\x92\xb1\x49\x98\x66\x59\xe4\xe2\xb7\x3a\x26\x62\xe7\x83\x4c\xb0\x1b\x85\x81\xf3\x7b\x4c\x3f\xcb\xc7\xb5\xe5\xea\xea\x9f\x6c\xdc\x10\xc1\xfe\x8f\x95\xde\x0d\x5d\x2a\x2c\xc4\xf9\xc0\x47\x5c\x23\x13\xf7\x86\xac\x7a\xe4\x57\xef\x3a\x9e\xbf\x48\x97\xd4\x59\xbc\xbb\x49\xb1\x3a\x28\x04\x5c\x8a\xd4\x92\x61\x9e\x7c\xb2\xd6\x30\x74\xd8\x0f\x17\x17\xc3\x5e\x11\xe5\xab\x4a\x8f\xff\x5d\xa5\xe7\xfd\xae\x93\x61\x4b\x47\xa1\x12\x2f\x63\x09\x00\x3e\x51\x76\xec\x95\x24\x05\x60\x10\x3b\x79\xfb\x1a\x8c\x9a\xab\x91\x3b\x0e\xb3\x67\x3a\x7e\xde\xee\x7c\x55\x89\x46\xc9\x24\x99\xb1\xdd\xe5\x21\x3f\xbb\xd0\x1d\x46\x08\xfd\x21\x99\x66\xc7\x90\xe9\x54\xa4\xde\xa5\xf7\x0e\x63\xc5\xf3\xbe\xfc\x0f\x81\xe6\xd2\xf3\x97\x3c\x1a\x0f\xf1\x96\xa4\x65\x51\x55\x9d\x75\x1c\xd8\x0f\x3d\xba\x79\x68\xc3\x78\x90\x44\x7d\x36\xd9\x22\x59\xa7\xf5\xeb\xdc\x98\xf9\x2b\x42\xca\x2a\x8c\x9f\x4a\x26\xed\x78\xd3\x0c\x55\x2f\x4d\x56\x62\xc9\x46\x01\x5d\xb9\xae\x64\x05\xae\x4f\xf6\xf0\x67\xda\x9f\xfb\x29\xc5\x74\xfa\x1a\x95\x1b\x1c\xec\x65\x41\x36\xc8\xce\x35\x8a\x9b\xb0\x54\xaf\x6b\x2a\xfb\x0d\x7a\x82\x8c\xfe\xa3\x5f\x40\x6f\x1c\xe8\x3f\xb7\x86\xca\x18\xde\x31\x2f\x3b\xe8\xf4\x37\xc9\x71\xf0\xf4\x09\xec\x3d\xcc\xc9\xfe\xb5\xd2\x21\xc1\x52\x3c\x02\x64\xcf\x21\x29\x5d\xc1\xed\xdc\x44\x49\xb5\xbe\x3b\x51\x12\xda\xe0\x3a\xdf\xbc\xa5\xc5\x81\x4f\x4e\x94\xe6\xe2\x3d\xf4\xfd\x11\x68\x9f\xe0\x72\x17\x0f\x06\x50\x19\x4f\x54\xe9\xf1\xd4\x91\x1a\xec\x58\xa3\x95\x23\xed\x46\x5a\x15\x08\x0b\x6f\x11\x37\x37\x3e\x7f\x0a\xfe\x93\x33\x0b\xd5\x94\xfc\x8e\x42\x26\xe5\x59\xd1\x47\x3e\xeb\x04\x14\x3c\xd9\xce\xa9\x26\xda\xf9\xd2\x88\xd9\x38\x2f\x58\x28\x50\x0b\x92\xf0\x71\x4d\x4c\xf6\xe0\x5c\x7b\x6c\xd2\x9d\xf4\x7a\x45\xf9\xb4\xe5\x68\x14\xf7\x77\x7c\x65\x1a\x5a\xc8\xa8\xdc\x5e\x55\xd3\x93\x90\xe6\xc3\xdf\x6f\xa8\x0c\x3f\x1c\x8d\x00\x92\x9a\x52\x52\xf4\x78\x01\x02\x29\xf9\x09\xf7\xc7\xa5\x2f\xcd\x86\xa6\x9f\xac\x90\x87\x29\x1f\x8e\x23\x58\xf1\x2a\x5d\xb5\x30\x92\xd8\x4e\xe2\x7e\x04\xa0\x17\x93\xd0\x06\xff\x2f\x63\xff\x1a\x64\xc9\x79\xde\x87\xe1\xd8\x33\xb3\xbb\xc0\x2e\xee\x00\x49\x5b\x2c\xd9\x47\xfe\x53\xe6\x5f\x29\x8a\x71\x6c\x2b\x49\x29\x1f\xfa\x64\x76\x28\x08\x53\xe1\x60\x6b\x76\xb5\xa0\x51\xfe\x80\x77\xfa\xbc\xe7\x9c\xc6\xf6\xe9\x3e\xe8\xcb\xcc\x0e\xa2\x2f\xa9\x52\xb9\x52\xfe\x16\xbb\xa2\xa4\x9c\xc4\xa5\x44\x89\x64\x29\x32\x25\x5a\x8a\x6c\x51\xb2\xce\x88\xa4\x78\x31\x41\x12\x24\x80\x25\x40\x10\xc0\xde\xef\xf7\xfb\x75\x36\xd5\xcf\xef\x79\xde\xf7\xe9\xe9\x5e\x57\xbe\x75\xef\xce\x39\xa7\x2f\xef\xe5\xb9\xfc\x2e\x34\x0c\x45\x91\xb6\xd9\xf1\x9c\xef\xe6\x23\xb2\x2d\xa2\xdc\xc3\x39\x91\x56\xc3\x04\x3b\x19\x4a\xc7\xbc\xeb\xb4\x76\x3c\x33\x1b\x1b\x71\x7d\x93\x0e\xb5\xda\xb7\x2e\xba\x09\x1c\x47\x79\x61\x13\xeb\x78\x8a\xca\x17\xc9\x9d\x38\x54\xb0\x0d\xd3\x24\x1d\x47\xe1\xcc\xe6\x78\x53\xe5\xdb\xd2\xd0\xff\x93\xc6\x9b\xa4\xe0\x33\x9f\x6d\xb8\x2c\x62\xe5\x67\xd1\x06\x16\xf5\xa4\x87\x8a\x81\x7d\x43\xd3\x87\xd2\x32\x81\x60\x27\x3b\xa7\x4e\x3d\xd9\xf3\x3c\xbd\x7e\x49\xe7\xbc\x12\xed\x24\x9d\x94\xb1\x61\x9c\xb5\x14\x11\xe9\xb7\xa4\x20\xa9\x98\xfb\xaf\x97\x26\x83\x55\xba\x40\x3c\xb5\xf3\x87\x22\x50\x6e\x28\x2c\xc5\xfd\xc6\x6e\x29\xbb\x5e\x98\x96\x13\xe6\x53\xa3\x90\x78\x46\x93\x39\xcf\x28\x99\x13\x5a\x81\xc3\xc8\x26\x05\x72\x08\x94\x6a\xce\xa8\x66\xc4\x4d\x05\x9b\x39\xa6\x94\x76\x4d\x52\xd8\x38\x9d\xb0\xef\x1a\xca\xa7\x28\x8f\x60\xc2\x63\x93\x17\x58\x1d\x3d\x7d\x04\xb3\x6f\x4e\x3f\xa1\xe4\x7a\x07\x03\x9b\xd9\xa4\x88\x4c\x8c\x8d\x13\x6f\x05\x9b\x3b\x1f\xb7\xb5\x5d\x62\x6b\x56\xd8\x76\x09\xd5\x4e\xae\xd6\x0a\x4c\xd7\xb3\xaa\xae\xb8\x50\x6d\xb9\x1c\x0c\xc0\xb3\xd4\x40\xba\x0f\x15\x90\xee\xc3\x86\x4e\x53\x35\x78\x28\xda\x5c\xcd\xa2\x42\xd2\x17\x04\x2b\xdf\xd5\x58\xbd\xef\x36\x72\x9e\xdd\x2f\xed\xe9\xe6\x69\x62\x18\xe2\x8c\x10\xf6\x86\x86\x2b\xdc\x98\x76\x1f\xf2\xfe\x28\xc1\x5d\x25\xb9\x22\x67\xe3\xf7\xd3\x40\xc3\x56\x5a\x59\x71\x12\x4b\x10\xc4\xdd\x01\x69\x18\xfc\x22\x21\xa5\x84\x13\xaf\x45\xe3\x59\x2d\x93\xdf\xd1\x8e\x11\x9b\x75\xf5\xf1\xfa\xb7\xb5\x19\xd9\xf6\xd3\xb0\x48\x33\xd6\x51\xe4\x96\x8f\x32\x48\xba\xf0\xd0\x3c\x2d\x4f\x63\x5f\x6d\x44\x80\x70\x01\xf7\xc8\x27\x6a\xb0\xa5\x65\x11\x47\x89\x3c\x7f\xc1\x09\xfb\xf4\xea\x42\x9b\x31\x71\x5e\x64\x06\x4a\xbb\x4b\x73\x1b\x1b\xaa\x90\xc9\xd8\x6c\x34\x2a\x4e\xb7\xf1\x84\xe2\xe8\xf5\x32\x82\xd1\x98\x40\x67\x74\x42\xa1\x3c\x0d\x47\x0a\x0d\xb1\x4c\x66\xc1\xfd\x1a\x95\xd1\xd3\x21\x0f\x37\x56\xcc\x17\x17\xbb\x99\x49\xfa\xe9\x38\x5e\xd3\x4c\xc2\x1f\x4f\xbd\x6b\xd0\x35\x95\xff\xb4\xd6\xed\x27\x36\x1b\x94\x63\x40\x62\x9c\xf9\xd7\xaf\xbc\xec\x74\xbb\x9a\x79\xdc\x2b\x5d\x7b\xc0\x8e\x27\xc0\xf6\xe2\x26\xe0\xfc\x27\x2c\x8d\x19\x6f\xa5\x79\xca\x95\xce\x6c\xf2\x5a\xba\xc6\x7a\xd4\x08\xf9\xd0\x87\x41\x5c\xf8\xc8\xba\x32\xf9\x6b\x0a\x40\xd1\xde\x12\xc5\x31\x20\x7c\xdc\xc0\xaa\xb9\x0d\xfa\x5e\x40\x5a\x8c\x6c\xe6\xf2\x4c\xcc\xe7\x8b\x0a\xb4\x70\x51\x97\xe1\xc3\xfd\xb4\xc1\xa1\x54\x88\x5a\x20\x1f\xb7\x29\x7c\x14\x99\xe9\xdb\xb1\xc9\xf6\x73\x90\xce\x78\x43\x95\x8d\xb4\x0a\x6f\x2c\x67\xe9\xfe\x2a\x19\x78\x18\xf6\x6d\xf3\x23\xde\xfb\x52\xb7\x6f\xf3\x89\x89\xb2\x19\x0f\xf6\xda\x82\x54\x40\xb0\xb0\xd5\x55\x4b\x8d\xdb\xcb\x54\xac\x44\xd9\x30\x4a\xb8\x58\xef\x8a\x92\xd5\xe7\xf8\xa4\x56\x86\xc8\x6d\x42\xa0\x1f\x94\xfb\xbf\x1d\x78\x76\xcd\xb7\x95\x16\xd2\xc7\xb5\xaa\xa6\x6a\x38\x51\x68\x91\xc6\x7d\x55\x2d\xff\x77\x24\xf2\xe0\x4c\xcb\xf7\xcd\xf9\x2d\xc8\x9b\x61\xde\x69\xe5\x37\x56\x7b\x34\x46\x3e\xa0\x17\xdf\xa6\x47\xc4\xc7\x6d\x10\x8e\x55\x13\xb3\x2b\x1f\x36\xe5\xdf\x56\xc2\x74\xbf\xdd\x86\xc1\x18\xc6\x51\x51\x05\x27\x4a\x7e\xff\x98\xf2\xf9\xbc\x4a\x5b\x26\x82\x13\x6f\xce\x5c\x66\xb6\x18\x65\x78\xa0\xd8\x97\x20\x19\xc7\xc7\xaa\x80\x3a\x32\xe1\x7e\x9b\x11\x6a\x53\xa1\x0c\x5e\x70\xfa\x20\x1a\x30\xaa\x84\x94\x2e\xb6\x99\xa3\xed\x21\xd4\x52\xc7\x17\xe6\x7f\x84\x5e\x1c\x9f\x28\x42\x70\x61\xf6\x5b\x98\xb1\x38\x11\xbb\x17\x17\xbd\x93\xe0\x92\x6f\x7e\xf8\xbc\xfe\xb6\xca\x45\x2e\x06\x4a\x3c\xff\x42\x4d\x4a\x0c\x3f\x29\x21\xbb\x22\xc2\xf5\xd7\x76\xd0\xeb\x44\xea\xf0\xa6\x6e\x0b\x7c\x1f\xdf\x80\x8d\xf7\xe3\xc0\x77\xb5\xb7\x02\x49\x5c\x2b\xd2\xba\xd4\xc0\xf3\x4d\x00\x94\x14\x0b\x7c\xcf\x77\xbc\x47\x0d\x0b\x7c\xe0\x6e\x63\xad\xae\x96\x87\xb0\xcc\x96\xdd\x6e\xd0\x66\xe5\xf6\xb8\x82\x37\xfc\xc2\xd3\xd5\xd7\xa1\xba\xf5\x57\xca\xe2\xee\x02\xd2\x07\xd6\x1c\xa1\x5c\x44\xf4\x47\xe8\x7b\x31\xe3\x8e\x2b\x39\xe3\x2f\x4f\x6b\x86\xa4\xd5\x3d\x02\x46\xcd\xdc\x36\xc4\x35\x77\xb5\xfd\x13\x0b\xb6\xe1\xd7\x6f\xd3\x33\x42\xa4\x34\xb3\xee\x7b\x0e\x1f\x05\xaa\x7c\xfc\x11\x9e\x97\xc3\xfb\x57\xcf\x0b\x89\xd7\x96\xf5\x96\xe6\x7a\x94\x90\xa8\x55\x94\x0a\x60\x11\x88\xbd\x0f\x95\xd9\xe8\x87\x53\xc5\x29\x4f\x33\x9b\x50\xa0\x80\xdb\x80\x9e\x13\x1f\x37\x00\xaa\x2f\x2e\x76\x97\x05\x7b\x29\x3d\xc0\x93\x81\x82\x9a\x9e\x9c\xee\xf4\x36\x95\xf9\xdf\x54\x48\x9b\x19\x2a\x4d\x21\xf6\xfc\x3a\xd1\x6e\x1d\x92\xbb\xca\x07\x11\x30\x5c\xc3\x70\x02\x96\x66\x7b\x8f\x80\x09\xa8\x2a\xdd\x0b\x94\x42\xc2\x9b\x8c\x37\x40\xaf\x88\xad\x40\x44\x6c\xcd\x1b\x8e\x6e\x59\x27\x32\xac\x10\x74\xaa\xb7\x8e\x95\xf0\x41\xe0\xa3\xee\xad\xf4\xdc\xa9\xbc\x7b\xe8\xef\x23\xd7\xe6\xaf\xe5\x2a\xbc\x04\xb5\xf4\x30\xb1\x5a\xf0\x2d\x4b\x45\x55\x83\xa5\x34\xf8\xec\x36\x06\x14\x1b\xb9\x29\x57\xcd\xed\x3d\x1f\x7c\xdc\xa3\x41\x4f\xed\xd9\x5b\x9f\x26\x42\x3b\x32\xf7\xdf\x0c\xbc\xf5\xf6\x28\x5d\x49\x0c\xe9\x1c\xa8\x4a\xee\x47\x8a\xf5\xf4\x51\x4d\x38\xda\xc4\x51\xb1\xb6\x5d\x25\x43\x1f\x07\x4a\x84\xe8\x03\x5a\x18\xd8\xa6\x8c\x06\xb3\x58\x96\x75\x16\x17\x37\x48\x22\x76\xe3\x06\x3d\x45\x19\xe4\xca\x1d\x25\x7c\xbd\x8c\x32\xbb\xa3\x7a\x7c\xda\xc7\x83\xff\x32\x50\x03\xee\x30\xfd\x8c\xf3\x6a\x70\x40\xc7\xc3\x48\x24\xb1\x84\xc2\x1f\x01\xd3\x84\x5d\x39\xf8\xd3\xaa\x33\x77\x0b\x60\x17\xfe\x84\x7a\x2c\x63\x4b\x6e\x0c\x26\xee\x60\x38\xa0\x46\x7f\x15\x8d\x26\x3e\x71\x39\xa3\x89\xe3\x68\x68\x8a\x34\xab\xfb\xbd\x2f\x69\xbf\x77\x9f\xb1\xad\xd8\xc4\x24\x45\x3e\xe3\xcb\x47\x57\xe8\x8a\xd0\xc8\xfd\x1e\x66\xa1\xf0\x8c\x7c\x2a\x36\x89\xc2\xfd\xe5\x04\xc4\x6f\xe7\x00\xe4\x5a\x60\xac\xba\x2a\x78\x4d\xd9\x65\xf2\x49\x66\x4d\x3f\xdf\xda\x51\x9a\x78\xca\xae\xf3\x04\x16\x03\x76\xd3\xa4\x27\xa9\xa8\xc3\xaf\x38\x78\x75\x0b\xe0\xb4\x6f\xc3\xcf\xd3\xed\x62\x1b\xe0\x5c\x90\x4f\x34\xaf\x37\x2e\xd2\xa1\xad\x42\xa7\x6d\x9b\xda\xf2\x2f\x38\x6c\x40\xc7\x15\xa1\x66\x7b\x3e\x56\x38\xa7\x65\xb0\xb6\xf4\x94\x40\xd6\x96\x75\x1f\x95\x15\x36\x49\xaa\xe0\x96\x3d\x6e\xc4\xa0\x53\xaf\x6b\x78\xf9\x52\xad\x6e\xad\xc2\x8c\x27\x26\x33\xa4\x7b\xf6\x10\x6b\xa2\xc7\x23\xa5\xd8\x45\xc5\x7d\xe5\xd2\xb7\xe4\xac\x75\xaa\x8f\x60\x4d\x38\xaa\xa2\xa7\x28\x8e\xcb\x9c\x74\xc4\x9c\x6e\x25\x92\x50\x3e\x76\x41\x81\x19\xa6\x49\xf4\x06\xdf\x8a\xb3\xdd\xdb\x37\xe7\xd0\xb4\x3a\x2c\x69\x44\xed\xd5\x40\xed\xe6\x11\x15\x88\xab\x99\x06\xd3\xfc\x3b\x4d\x72\xfe\xae\xee\x28\xe5\xc8\x9c\xa1\x54\x6a\xbe\x9f\x50\x2b\xf8\x38\x32\xe3\xa8\x53\x7b\x96\x1e\x54\x75\x5c\xdb\x06\x87\x59\x9a\xe7\x33\x3e\x30\x43\xa2\x2e\x50\x33\xaf\x41\xf1\x95\x87\x96\x06\xc0\x6a\x9b\x99\xd1\xfe\x7b\x1d\x67\xac\xf1\x28\xa2\x54\xcc\x91\x2d\xeb\xce\x79\xbb\x8a\xb4\x79\x33\xc2\xc6\xf2\x55\xb5\xc9\x7c\x55\x45\xef\xe3\xb4\x6f\x59\x54\xa8\x7a\xb8\x20\x56\x5f\xc7\xaa\xc2\x27\xaa\x14\xb6\x9a\xd9\xbc\x88\x2d\x33\x4c\x01\xe9\xda\xa2\x18\x12\x80\x69\x89\x8d\xbd\xa7\x67\xe6\x54\x9c\x7d\x71\x71\xe3\x56\x35\xa8\x37\x6e\x35\x30\x82\xbb\x97\x76\x57\x53\x27\x16\xd1\x8d\x57\x7c\xb7\xc3\x0f\xf6\xc3\x8d\xd0\xed\x0b\x5f\xea\x8e\xca\x64\x98\xad\xe9\xfc\x00\x7a\xf5\x7c\xac\x1c\x4a\xb2\x94\x9e\x49\x35\x2e\x11\x75\x7e\x59\x95\xc7\xbe\xac\xd2\xc2\x95\x74\xcd\x0c\x59\xb9\xcf\x95\xe2\xaa\xef\x97\x52\xdc\xe6\xab\xdf\x37\xf7\x42\x77\xcd\x1a\x62\x81\x20\x20\x02\x5c\x13\x30\x55\x3e\x56\xab\x68\x6c\x57\x6c\x52\x8c\x9c\x80\x27\x47\x69\x81\x12\x09\xbd\xd0\x98\x90\x68\xe8\xc5\xa9\xf1\x80\x48\x71\xa3\xe9\x38\x47\xac\x53\xd3\x4f\xd6\x8b\x60\x36\x0b\x63\x13\x8d\x73\x1d\xa7\x5d\xac\x89\x30\x37\x19\x1f\xbb\x9d\xfc\x1e\x37\x70\x30\x75\xef\x07\x4a\x2d\xee\x7e\x8d\xb7\x54\x96\xe3\x59\xb5\x59\x33\x35\x16\x6b\x17\x44\x97\xf8\x78\xaa\x1c\xb7\xce\xd6\x92\xa3\x34\x2d\xb6\xd2\x7f\x82\xb5\xc3\xc4\x0b\x3e\x51\x5b\x13\x86\x9b\x70\x4c\x6b\x0d\x9f\xb6\xba\x40\xb5\x06\x72\x2a\x88\x4b\x00\x78\x99\x8f\xa7\xcf\x39\xc4\x55\x9e\x86\x11\x3c\xa5\xf9\xa5\x60\x6d\xf9\xd7\x53\x25\x39\xff\xaf\xbd\xee\x41\x94\x53\x26\xd0\xa1\x5a\xbf\xf8\x45\xd3\x9f\xf2\x49\x8b\x3c\xe8\x9e\x2e\x71\x08\x4c\x94\x20\x98\x6b\x33\xfe\x93\x1f\x18\x59\x53\x45\x7d\x10\xdc\xc5\xc6\x7a\x1f\x61\x9b\x70\x97\x55\x2f\x7e\x67\x8f\x6e\x50\xca\xe4\x1e\x8c\x6c\xfa\x9c\xc2\x03\x56\xf1\x18\xf1\x02\xf8\x78\xdd\x57\x6b\xc0\x34\x17\x6c\x39\x7a\x7e\x7f\x81\x10\x8f\x4f\xda\xf2\xbb\x68\x3c\x76\x75\x24\xc4\x33\x47\x95\x2e\xc5\x51\xd7\xfc\x35\xfd\x15\x93\x84\xac\x96\x26\x9d\xfc\xef\x6b\x5d\x59\x68\x12\x4a\x33\x6b\x33\x43\x6a\xf7\x67\xba\xbb\x76\x51\xd9\x40\x6f\x27\xd2\x19\xdd\x5c\xad\xaa\xa6\x89\x3d\x60\x86\x43\x9b\x79\x21\x56\x8c\x90\x19\xd5\xd0\x9e\xe9\xd5\x06\x5f\x06\x5a\x89\xc8\x07\x56\x39\x86\xe8\x0a\x3e\xab\x3c\x7a\xc7\xb6\x18\x45\xc9\x90\x74\xd3\x9d\x63\xb4\xd3\x5e\xe0\x74\x0e\x1f\xfc\xa9\xd6\x59\x3d\xa3\x5a\x0b\xb7\x29\xcd\x41\x4d\xf9\xa4\x0a\x64\xc6\x29\xb8\x47\x52\x8b\xda\xff\xf4\xba\x67\xc7\xee\x7f\xba\xa7\x18\x7b\xe6\x40\x34\x2e\xc7\x98\xd2\x2c\x7c\x42\x97\x21\x22\x28\x2d\xbd\xfa\xcc\xc6\x65\x58\x98\x04\xe2\x61\xa2\x3f\xa5\x70\xea\xe7\xd4\xaa\xd9\x04\xce\xef\xda\x05\x92\x09\x7d\x1a\x29\xe2\x3f\x0b\x14\xb5\xf4\x03\xec\xf7\x22\xf1\xe3\x6d\xd5\x6d\x41\x7e\x43\xae\x53\x06\xb9\x40\xc9\x43\x5a\xe4\xd3\x46\x51\xb1\x55\x51\xee\x41\x87\x43\xd8\xb7\xbd\xe7\x21\xf2\xa8\xe2\xe3\x6f\x40\x4e\x46\xcc\x7f\xac\xb1\x0a\xbc\x3c\xbf\xb7\x3b\x88\x9c\x2a\x8a\x10\x65\x15\x1b\x87\x37\x19\xb1\x91\x6f\x42\x7c\xc8\x70\x5e\xc6\x12\xc2\x81\x1b\x81\xe2\xc9\xde\x98\x3e\xa9\xc4\x29\xb2\xa2\xc6\xf0\x67\xef\x7c\x3e\x09\xfe\xee\x43\xf6\x79\x16\x0f\x4d\x57\xa2\x24\x8c\x78\x56\x39\x93\x56\xdf\x2e\xbb\xd0\x78\x35\xbf\xdc\x7d\xad\x4c\xa2\x14\xb5\x2b\x60\x02\xd1\x02\x40\xeb\x83\x0b\xc2\xdc\x2a\x74\x6f\xa6\x1f\xe5\x21\xd5\xab\xdd\xfb\x3c\x81\x3b\x12\x6b\x14\x4f\x30\x5d\x2e\xf3\xd1\x33\x8a\xb0\xfc\x15\x2c\xe2\x00\x4e\x81\x70\xee\x18\xb6\x5e\xff\x1c\x7e\xab\x6e\x65\xac\xe6\x82\xe8\x3c\xd1\xb8\x71\xf1\x71\xf5\x52\xb8\xc5\x1c\xf8\x6a\x23\x66\x0c\x32\x13\x48\x34\x73\xfb\x06\x36\xcd\xcc\x80\x20\x3b\x3c\x5e\xcc\x67\xea\x49\x61\x95\xd6\x01\xb8\x7c\x97\x02\x69\x11\x12\xf6\x35\x8e\x0b\xaa\xac\x33\x28\x63\x20\xc4\x5f\x70\xe6\x19\x1d\x27\x4c\xf0\xeb\x53\x4d\xbd\x2b\x93\x3e\xed\x13\x68\x35\x22\x47\x78\x4f\x89\xbc\x3e\x82\xeb\x50\x46\x92\x3e\x8a\xa8\xc6\xac\x68\x01\xfb\xda\xa7\xae\xa6\x66\xe9\xb2\xcd\x8a\x3c\x4d\x94\x5d\xdc\x41\xd5\x3b\x3b\xd8\xe2\x14\xb5\x7b\x4f\x77\x60\x78\x4f\x71\x24\x42\x4f\x28\x74\x7b\x4a\x1e\x11\xee\x85\xe3\x42\x26\xc4\x29\x5a\xd4\x59\x2f\xe7\x55\xc5\x8f\xb3\xaa\x97\x7a\x16\x84\x07\xc7\x58\x77\x80\xfe\x59\x9a\x93\x22\x5f\xfd\xd0\xd6\x41\x61\x32\x27\x4f\x27\xfa\x82\x1d\x25\xc8\xa9\x58\x66\xc7\x55\x52\x91\xac\xd9\x8e\xc2\x96\x9e\x09\xea\xf6\xbf\x4f\x29\x77\x73\x5b\x54\x09\xb8\xef\x19\xb2\xa4\x0e\x93\x8b\xe9\xc7\xb0\x8a\xb0\x63\x3f\x22\x8b\x1b\x81\x0a\x33\x6e\xd0\xd0\xc2\x32\x70\x4a\x6d\x32\x67\x15\xbe\xa2\x4c\xa2\xe2\x49\x8d\x61\xe7\xf2\xbb\x28\x9d\x6f\x66\x6f\x0b\x98\xe4\x9b\x58\x2d\x51\xa5\xe8\xa0\xfa\x8e\xfa\xfd\x5b\xd8\xd6\x31\x5b\x37\x02\xef\x6f\x72\x2d\xf0\xe2\xdc\x97\x02\xc5\x58\x3a\x4e\xd7\x89\x6d\xfc\x81\xaa\x6c\x7f\x13\x93\xc9\x39\xde\x29\x3b\xfe\x87\xf7\x74\x56\x22\x5b\xe4\xd0\xe5\xc7\x5e\x7f\x8a\x8b\x30\x48\x19\xd9\x18\xdb\x09\xc7\xef\xf2\x3d\xd9\x36\xd7\x08\x5a\xc5\x38\x80\x52\xdd\x2c\x0f\x90\x7a\x5e\x59\x4c\xa7\xfb\x6d\xbe\x9a\x8e\x4d\xb2\xad\xa3\x64\xe5\xab\x9b\x46\x82\xdd\xa1\xb5\x85\x8f\x29\xec\x13\x1f\x1d\x05\x85\xf8\x37\x74\x4d\x02\xa0\x92\x78\x2e\x2f\x97\xc3\x74\x3c\x8e\x8a\xc2\x72\xc3\x53\x5b\x0c\x62\x85\x7a\xb2\x57\x5b\xa1\xaa\x47\x87\xae\xf2\x7d\x17\x41\x8d\xed\x38\xcd\xa8\xd7\xb3\x7b\xe3\x92\x22\x13\x3d\xdf\xf3\xbc\xdb\xa7\x1b\xa2\x2d\xfb\xe6\x5e\xe9\xc6\x56\x94\x2e\x51\x5c\x45\x08\xcb\xc7\x6d\xc9\xf6\x24\x4b\x43\x6b\x7d\x6c\x8f\x60\xe1\xa4\xf2\x79\x3e\xe9\x50\xf3\xe3\xa8\xdf\x37\x00\x20\x39\x90\xb1\xeb\xb4\x3f\xd6\x80\x2d\xcd\xef\xed\xc6\x51\x11\x0d\x59\xb4\xdb\x51\xd0\x4e\x29\xa1\x2e\x2d\x47\x9e\xef\x8f\xc6\x13\x4e\xa9\x50\xfd\xbb\xa5\xe0\x71\xb7\x02\x79\xc8\x61\x9a\x84\x51\x1c\x19\x22\x61\xf8\x52\x0d\x28\xf3\x7c\x5c\x3d\x1c\x07\x70\x1f\x64\x06\x5e\x9e\x25\x4c\x7a\x5e\x71\x68\x4d\xfa\x2d\xc1\x71\xfa\x0a\x81\x1d\x4f\x46\x26\x8f\x72\xaa\xcc\xbb\x42\xcd\xcb\xfe\x44\x39\x0b\xa0\xa6\x43\x52\x61\x8e\xdd\xb4\x34\xe7\xd8\x4d\xca\x63\x27\x2b\xc3\xfd\xd6\x92\xb7\x83\xb3\x0d\x58\x58\x70\xb6\x01\x0d\xd2\x7c\x15\x95\xa4\x13\x40\x33\x94\xa0\x8d\xaf\x46\x79\xa4\x73\x61\xf2\xfd\x39\x74\x10\x75\x57\x1d\xa1\xed\x65\x9a\x92\xd8\x37\x3f\x56\xac\xfb\xe3\x1a\x6e\x7c\xa5\x4d\xe0\xa0\x88\xe2\xa2\xd6\xa7\xac\xb1\x2e\x5a\x45\xb2\xc3\x91\x19\x4f\xcc\x30\xb1\x33\x9e\x77\xc6\x24\x53\x9d\x77\x00\x8f\x76\x2b\xa8\x29\x7d\x95\x85\x15\xb2\x83\xab\xb0\x78\x46\x72\xb3\x01\xbb\xf7\x25\x46\x41\x77\x3c\xba\x1e\x44\x31\xa9\x6a\x6f\xae\xb5\xbc\xfa\x6a\x37\x37\xe1\x7e\x65\x74\x5a\x1f\xe9\x8a\x6a\x94\x8e\x27\xb1\x2d\x6c\xff\x31\x55\x1b\x3b\x44\x2f\x4c\xe4\xcb\x7c\xc5\xf0\xdb\xb8\x41\x66\xff\xd1\xfb\x47\x68\x72\x94\xfa\x19\xe0\x10\xdc\x08\x94\x8a\xc7\x0d\x8a\x33\x9c\x35\xbe\x57\xbc\x39\xde\xe8\x7a\x2c\xcd\x75\x73\x6b\xf2\xd4\x29\x02\x4b\xdf\xc6\x5f\xcb\x31\x25\x1c\x3f\x88\x48\x8d\x80\x6a\x8c\xe8\xd0\xad\x6b\xfd\xff\x43\xda\x96\x9a\x1d\x6c\x39\xa5\xa0\x1b\xe2\xde\x45\x63\x34\x54\x8b\x4b\x3f\x33\xab\x2c\x1d\x2f\x90\xd2\xea\xf6\x04\xe8\xf3\xb8\xab\xbf\x2e\x97\x63\x24\x5d\x5a\x36\xcc\xe9\x84\xb8\x00\xe3\x5f\xfa\x5c\x2d\xb1\x61\x3f\x2d\xaa\xf8\xd3\x41\x8f\x7e\x4c\x37\x28\x9a\xaf\xcf\x2a\xb3\x5a\x6b\x8a\xb1\x4d\x8a\xed\xde\x16\x18\xa6\x27\x8e\x48\xaa\x45\x08\xaa\x2f\x41\x3c\x75\x4f\x6d\x6c\x1f\x61\xc7\x64\x76\x46\x50\xa3\x6a\x48\xdc\x92\x59\x58\x29\x6c\xef\x7c\x71\xde\x43\x1e\x84\x50\x73\xef\xb9\x9e\x5f\x9c\xb8\x19\xe0\xf8\xf9\x0b\x0b\xce\x1f\x55\xed\xcc\x1b\x78\x11\x78\x10\xf7\x14\x79\xc7\xe6\x13\x5b\x45\xdf\xf1\x1a\x55\x65\x05\xab\xe0\x43\x81\xeb\xb4\xdb\x60\x36\x1d\x0b\x6a\x70\x16\x1f\x47\xfd\xb1\x36\xe3\xbd\xa9\x50\x11\x13\x53\x64\x51\x98\x0e\x3a\x5e\x4c\xe9\xac\x56\x18\x3f\xeb\x42\xb5\xcc\xe0\x32\x66\x3c\x64\x10\xdc\x42\x87\xf3\x5f\x58\x70\xc2\x29\x7e\xee\xf6\xa3\x7c\x1c\xe5\x39\xc4\xe2\xe6\xb9\x28\x87\xc2\x3e\x1f\x37\x56\xb7\x57\x5f\xed\x26\x76\x95\x55\x5d\xa4\x10\xa5\xf9\x1d\x9b\xa7\xee\x2f\x74\xf3\x51\xba\xca\xc8\x02\x84\x3d\x77\x02\xa5\x8a\x70\x52\x09\x98\x9c\x57\x69\x44\x31\xb2\xc9\x4e\xdf\xe6\x3e\xaa\xc5\x10\x4f\xe0\x0b\x98\xa3\xc1\x51\x1e\xa2\x20\x68\x19\xa0\xde\x7c\x4f\x83\xcb\x31\x8b\x45\xa5\x06\xed\x08\x59\x6e\x14\x44\xe5\xab\x8a\xa7\xb5\x7d\x5d\x21\x49\x2f\x2b\x2e\xe1\xeb\xa5\xcd\x21\x91\x5f\xfd\x98\xb3\xbf\x53\xaa\xd2\xb8\x24\x65\x9d\xfc\x82\xd3\x22\xf0\x3b\x8b\x3d\x60\xaa\xc5\x6a\x66\xb3\x6f\x1e\xda\x8d\x0f\x02\x8d\x12\x68\xd1\x40\x4a\xd2\xc2\x2c\xf3\x9b\x70\x4a\x3c\x5e\x95\x47\x01\x70\xd7\xd2\xfd\xf4\x23\x35\x77\x21\x64\xb6\x77\x83\x2a\xf3\x11\xaa\x7d\x8b\xfa\xe6\x4a\x3a\x8e\x0a\x91\x49\x51\x86\xe0\x2f\xd4\x9a\xc5\x1b\x87\xda\x4a\x3e\x59\xb4\x62\x37\x99\xad\x1d\x99\x2a\x2a\xed\x91\x06\x98\xef\x57\x5e\xee\x92\xab\xd1\xae\x5d\x0e\x72\x47\x17\x2b\xdc\x2a\x47\xb0\x8b\x0a\xe7\xe4\xe2\x04\x19\x3d\x00\xe3\xf2\x66\xcd\xea\x85\x85\x2a\xde\x7c\x42\x29\x73\xb3\x57\xab\xf8\x16\x68\x3b\xd3\xff\x1d\x2f\x0c\xa1\xc0\x79\x95\x79\xb1\x91\x3a\x5b\xd9\x53\x12\x87\x50\xfa\x0e\x96\x25\xa9\x64\x57\xcf\x1a\x69\x0b\x0a\xf8\x28\xe6\xf3\xad\x63\xd2\xdf\xd4\xf0\xdb\xe3\x34\x83\x10\x1f\x5e\x56\x5d\xae\x22\x33\x49\x3e\xb0\x19\x5a\x02\x28\x62\x1e\xd7\x36\xd5\x4a\x51\xe4\xcf\xfd\x62\x60\xa9\x94\x9b\x6b\xf3\x1a\x56\x6e\xc6\xc8\x3a\x5a\x03\x83\xf9\x61\x12\x15\xa3\xad\xda\x89\x44\xeb\x09\xff\x70\xaa\xb2\xc0\x0f\x94\x9e\xe4\x07\x78\x8e\x48\xc3\x9b\x5e\x55\xfb\xe6\x16\xbb\x45\x16\x8d\x1d\x59\x44\x90\x2e\x1d\xa7\xb4\x73\xd1\x37\x6e\x62\x93\xef\x67\xad\x78\x68\x13\x30\x1b\x8b\x4f\x1a\xa1\xf3\xd2\x5c\xd7\xbe\x5e\x72\xf9\x03\xa3\xfb\xc3\xc0\x8f\xf4\x0f\x6b\x55\x67\x13\xe7\xcf\xf8\xce\xd2\x75\xbc\x0d\x8c\xe8\x2d\x50\x3d\x40\xad\xa8\xd3\xa3\x90\x11\x4b\xd2\xfb\xd4\x67\x15\xb0\x16\x25\x12\x82\xe2\x52\xdb\x15\xec\xe5\x31\x2e\x0e\xf2\x7a\xc4\x6b\x1d\x8d\x12\x64\x6b\x7f\x34\x55\xc4\x17\x3c\x4f\xfc\xc8\xef\xe9\x0d\xe6\x02\x46\x1f\xf7\xbf\x50\xb2\x10\xd7\x9c\x6a\x98\x88\xce\x18\xbd\x5d\xc9\xdf\xdb\x1e\x7b\x68\x94\x4d\x80\x02\x66\x7b\x9a\xa0\x8c\x18\x13\x9a\x49\x19\x87\x29\x92\x67\x21\xa5\x55\x17\x2b\x9c\x34\x89\xe1\x07\x65\xd2\x37\xd5\x26\x6e\x62\xae\x0b\xb8\x3e\xad\xaf\x4a\xb7\x81\x17\x43\x53\x54\xc1\x7c\x3a\x19\x45\xe1\x43\xd5\x4f\x14\x5b\x1e\x52\x50\x84\x64\x91\x49\xfa\x27\x78\x4a\x92\x14\x29\x3a\xd3\x61\x2d\xb0\xf7\x01\xd2\x3d\x3e\x09\x14\xda\xed\xdb\x14\xe1\xe1\x91\xff\x70\xea\x8d\x3e\xaf\xd1\xdb\x63\x6d\x9b\xa9\x2f\xfa\xfe\x8b\x96\xd1\xfc\x42\x37\x2f\xd2\x2c\x92\x06\x98\x2c\x9c\x8a\x26\x70\x3e\x78\x46\x07\xc7\x11\x51\xb7\xe8\x2a\x9c\xf1\x9a\xb7\x3f\xbc\xa2\xfe\x38\x1f\x45\x93\x89\x73\x09\xc1\xea\xf3\x40\xd5\x95\xae\x4d\x7d\x3d\xf3\xb8\x7b\x77\x13\x13\xee\x37\x43\x99\x5d\x08\x6b\x50\x65\xe1\x63\xed\xcf\x6f\x56\xd2\x2c\x2a\x2c\x3a\x27\x82\x6f\xf3\x15\x53\x0e\xa8\x90\x72\x9c\x0d\xea\x0a\xb2\xce\xca\xec\xb6\xf2\x19\xa9\xbf\x56\x17\x2d\x82\x87\xc2\xc7\x81\x77\xc7\x1a\x9b\xa4\x1c\x18\x4a\xe8\x32\xb8\x1e\x21\x47\xf8\x70\xaa\x0c\xa4\x3f\xac\x29\xd0\xa7\x39\x1a\xe4\x62\xf9\xa6\xd8\x99\x17\x14\xea\xc9\x46\x31\x61\xbb\xc4\x93\xa1\xe3\xcc\xc0\x6e\x2b\x15\xa3\x77\xa8\x54\x2f\x96\x94\xbe\xe1\x58\x8c\xca\x7c\x27\x3d\x14\x00\x8d\x0e\xd2\x67\x9c\x05\xe0\xa2\xc8\xbe\x72\xd1\x13\xe3\xf5\xba\xd6\x6d\xfd\x0b\x55\x80\x44\xc1\x05\xc7\x97\xb1\x57\x62\x01\xf9\x0f\x18\xa7\x48\xa1\xaf\x4c\x55\x2f\xfe\x43\x05\xac\xba\x13\x3c\x57\xf3\x7c\xcb\x80\x3a\xa5\x45\x09\x31\x3b\x22\x2e\x3e\x6e\x13\x1a\x22\x80\xf1\xd8\x14\xa3\x8e\x82\xb2\xde\x99\xfa\x56\xfc\x1d\xf5\xe8\x4c\xd6\x7f\xce\xd3\x26\xae\xd5\x4d\xbd\x28\xea\x12\x44\xbb\xd7\x98\xd8\x41\x0c\x16\x51\x2c\xab\x82\x7f\xac\x14\xb7\xe8\x3e\x28\xc6\xfd\x8d\x4f\xa3\xb2\x89\x62\xd9\x5b\xca\x15\xfc\xbd\x40\xcd\x50\x06\x40\x22\x50\x7d\x14\xf8\x04\x60\xaf\x98\xf1\x87\x64\xeb\x30\x45\xd2\x08\x1b\x58\xe9\x12\x4b\xef\xb3\x4c\x80\x42\xad\xeb\xe6\xd4\x4b\x41\xdc\x44\x11\xd2\x79\x44\x78\x9f\x84\xd9\x75\x99\x3d\x2b\x51\x1a\x5b\x11\x9b\xc2\x24\xd8\xd2\x73\x70\x9f\x03\xd8\xfc\x79\x6f\x53\x85\x46\x53\x8a\x53\x0c\xae\xe8\x5e\xa0\x54\x3d\xce\xd4\x57\x73\xb5\x9d\x8f\xd2\x32\x37\x49\x3f\xd7\x34\xee\xbb\xb8\x4b\xf4\xf8\x79\x55\x93\x37\xfb\xa4\xab\xaf\xa6\x86\x25\x49\x3c\xc1\xa3\xba\x4a\x29\x14\x3f\xaf\xb2\x2c\xd3\x8f\xa0\x00\xbd\xdd\xbd\x8a\x59\xa4\xad\x08\x7c\x3a\x60\xbb\x63\x42\x80\x45\x8d\xc8\x02\x18\x68\x94\xc9\xce\xa0\xca\x88\x0c\xf3\x98\x46\x0d\xde\x54\x3d\x28\xa8\xcd\x3f\xd6\xf9\xc2\x97\xf8\x91\xcf\xae\x2b\x9e\xd7\x4f\xb5\xc7\x89\xf0\xd4\xf0\x2c\xb7\x43\x98\xc8\x71\xc5\x9d\xa5\x01\x90\x2b\xfc\xef\x3a\x61\xfa\x1d\x7a\x13\xc2\x30\x68\xc6\x9a\x7b\xba\x79\x9c\xae\x4a\x4f\x12\x7b\x24\xeb\xa6\xf2\xc9\x7a\x1b\xa1\x65\x64\x21\x39\x8e\x8b\xc3\xb8\xfb\xca\x54\x91\x6b\xbf\xa2\x5c\x9c\x62\xb3\x6c\x63\xdb\xdf\xd6\x71\x0a\x9f\x4f\xd2\x42\x8b\x08\xe9\xbc\x52\x0e\xe6\x34\x4d\x10\x1e\xf8\x76\x27\x3c\xb0\xe4\xe1\x1d\x2d\xa5\x91\x41\x94\x44\xf9\xa8\xe3\x19\x62\x67\x54\xcf\xf0\x8c\x76\x8c\x8e\x56\xec\x93\x04\xbc\x42\xab\x9b\x4b\xa7\x52\xf4\x44\x8a\x83\xad\xe3\x10\xad\x48\xc8\x30\x6f\xd3\x2b\xc7\x2e\xf8\x88\xe2\x39\xdd\xd1\xfa\xb5\x77\xb5\xf1\xca\x91\xa9\x77\x87\x85\xab\xb2\xe0\x79\x94\x60\xed\x21\xea\x53\x62\x4c\x73\x7b\x8f\x0d\x59\xa6\x3a\x38\x6b\xc3\xf1\x87\x36\x31\x59\x94\xd2\x1c\x44\xa0\xbd\x81\x78\x1a\x63\x91\xe1\xa8\xc2\x1a\x70\x44\xb1\x6a\x6f\x35\x31\xd5\xab\x50\x0a\xac\xa1\x9b\xce\x2b\x87\xc3\x6b\xad\xa8\x05\xfb\x7a\x19\x91\xc7\x10\xc2\x1e\xac\xf6\x40\x61\xf2\x71\x5d\xa7\xa3\xca\x83\x56\x2c\xe4\xe9\x79\x8b\xa4\x07\x23\xdb\xe5\x93\xca\x10\x36\xcd\xed\x0e\xba\x05\xa9\x18\xd2\xb3\xe5\x7a\x7c\xa0\x9a\xcc\xff\x22\xf0\xad\x97\xff\x13\x03\x1e\xaf\x03\x64\x2c\xd7\x13\xac\x9e\x00\x1e\x34\x57\x23\x1c\xca\x5e\x79\x00\xfb\xec\xef\xed\xe9\xf3\xca\xa7\xb5\x20\x36\xb5\x33\xb9\xc7\xf4\xfa\x40\x99\x67\x7e\xd0\x00\xb9\xcf\xef\xed\x8e\x53\xdc\xaf\x92\xb4\x3c\xa6\x24\x38\x8e\xa9\x7e\xca\xeb\xa5\x5d\xb6\x21\x81\x0f\x58\x05\x81\xd6\x12\xa7\x88\xb0\x24\xdb\xe1\x79\xb5\x4d\x9e\x77\xce\x5b\x83\x28\xb6\x8f\xd2\xcf\x30\x9c\x98\x86\x2b\xd6\xea\x99\x9e\x87\x7b\x41\x5c\x17\x51\xc2\x13\xc4\x9b\x84\x56\xbc\x6c\x1f\x68\x12\x21\xae\xd9\x06\x44\x33\xc6\x7c\x53\x00\x14\xb0\x95\x71\x94\x98\x8c\xa6\x9a\xe3\xf7\x39\x62\xd4\xc5\x1a\x5f\xdc\x8e\xc7\xf4\xfc\xaa\x8b\xc4\x82\x02\xc6\x09\x1f\xeb\x45\x71\x30\x48\xb3\x3e\x80\x43\xd8\xfb\x0e\x4d\xbd\xbc\xec\x21\x95\xff\x67\x65\x92\xb0\x54\xe1\xa2\x93\x7f\x53\xbd\xe5\x63\x0e\x80\x58\x16\x05\x99\xf6\x54\xb7\xa7\x10\xcf\xf3\x0e\x0a\x2d\xfb\x59\x3f\x8d\x63\xdb\x07\xc0\x51\xc6\xc8\x37\x11\x68\x08\xb2\xd8\xe7\x20\xc7\x1a\xe9\xf7\xc2\x42\x77\x85\xe3\x2d\xa1\xf1\x56\xfb\xa9\xf4\x5b\x5b\x4a\x9c\xd4\x82\x76\xcd\x6e\xa7\x83\xa6\xb4\xfc\xea\xd1\x70\x5e\x40\xe0\xe5\x15\x5e\x4f\x7e\x07\xef\x4f\x84\xf1\x14\x24\xe6\xb6\x86\xbe\x9f\x51\x2d\xf3\x61\x56\x0e\x06\x4a\xef\xe8\x6c\x6d\xa6\xf8\x1c\xc2\x8e\x27\x71\xba\x26\x56\x47\x6c\xa0\x34\x55\xf8\xdc\x26\x97\xf4\xe5\xa5\xb9\x6a\x07\x5d\xb1\xf1\x26\x9d\xa4\xc3\xda\x5e\xb8\x69\x2f\xbb\x48\x44\x9d\xbc\x34\x2d\xea\x73\x8b\xde\x11\xea\x09\x57\xbd\x08\x45\x34\x06\xb5\xc1\x0d\x2c\x09\x7c\xa2\x10\x81\x2b\x26\x89\x0a\x74\x4b\xc4\xcc\xb3\xba\x59\x51\x78\x53\x1d\xe9\xd8\x30\x16\x91\x0b\xa8\xca\x33\xef\xec\x54\xb7\x3d\xac\xd9\x8f\xba\x89\x80\x8d\x35\xf2\x38\x78\x42\xc1\x5c\x86\xe3\x6d\x74\x2b\x52\x6d\xec\x38\x21\xbd\xbf\x54\x45\xbb\xf7\xb5\x60\xeb\x61\x25\xb0\xf6\x0e\xcd\x75\xa9\x54\xb4\xc9\xfc\xc5\xa6\x24\x2e\x3e\x2d\xa9\xd2\x71\xa3\xc1\xc1\x27\x35\xc8\xd7\x38\x89\x66\x55\x9a\x7e\x1c\x79\x32\x9f\x04\x9e\xac\xc4\x09\x16\x9f\xd4\xbd\x59\xc7\x83\x12\x1c\x61\x96\xa3\x57\xe4\xc7\x53\x0d\x4c\x65\x15\x55\x4c\xca\x6a\x37\x26\x50\x6b\x5d\x38\x65\x61\x41\x8e\x95\xdc\x11\x1b\xd7\xcd\x7a\xc5\x84\x0b\xd8\x0a\x25\xd7\x52\xe0\x8a\x0b\x75\xb5\xed\x96\x36\xce\xd8\x78\x39\x3d\x86\xb7\xd0\x6d\x0a\xd4\x65\x87\x5b\x49\x7e\x7e\xb6\x8a\x8e\xb1\x6b\x3d\xd5\x53\xe5\x64\xec\x09\x10\xb5\xb8\xa5\x75\xed\x6f\xb4\xc9\x6f\x93\xee\xd7\x8c\xef\xd6\xff\x99\xaa\xd2\x9c\xa5\x9c\xc3\x53\xf7\x5c\x4e\x99\x99\x64\xbf\xdb\x5a\x9c\xf1\xb7\x03\x76\x9d\x55\x69\xd6\x30\x8e\x96\x3b\x7e\x14\x1d\x54\x93\xe3\xa0\x02\x35\x50\xf6\x92\xa4\x69\x32\x53\x45\x2a\xd8\x1b\xa1\x61\x8f\xc5\x00\x3a\x31\xd8\xda\x8f\x4c\x37\x99\xf1\x7f\xbe\xbb\x34\x47\xbf\x81\xf5\xee\x7b\x1a\xb3\xfe\x3d\x15\x8c\xf7\xa3\xdc\xe4\x85\x65\x08\x95\x68\x3f\x55\x5f\xcc\xc7\xc1\x27\xdc\xc0\x79\xad\xcc\xa2\xbc\x1f\x29\x8f\x6b\x67\x94\xeb\xcc\x31\xf5\xfe\x9f\xd9\x95\x30\x55\x93\xf1\xa4\x9a\x8c\x4d\x0d\x8c\x5d\xbb\xba\x99\xf5\x8d\xce\x6a\x37\xc2\xc8\x3a\xa2\x4a\xf8\x47\x1a\x6b\xce\xde\x97\xba\xcb\x26\x8e\xd3\xd4\x8b\x89\xcb\xc4\xf0\x6c\x28\xed\x33\x74\x43\x35\x1e\xc7\x66\xbf\xcd\x9f\xf1\x65\x8f\x6d\x3d\x95\x99\xfe\x34\x50\xf6\x42\xc7\x95\x4f\xde\x6d\x0c\x59\xbc\x05\x66\xbc\x49\xb5\x08\x31\xae\x54\xd4\x7d\xe7\x12\xe2\x7c\xb2\x3a\x77\x3e\xfb\x59\x4f\x25\x72\x6d\x98\xc7\x00\x70\x40\x37\xef\xc1\x94\x4a\x5e\x82\xee\x50\x09\xc5\xbd\xc0\x6b\x93\xfe\xf7\xcf\xae\x57\x69\x87\x78\x36\x29\x1f\x84\x8f\x54\x45\x33\x37\xf9\x8c\x32\x9b\xbc\xae\x95\xdb\x3a\x3d\x4f\xbe\x3d\x07\x73\x2b\x44\xf9\x91\x2d\x0b\x26\x17\xd0\xef\xa9\x56\x91\xe7\xb0\xd0\x05\x23\xab\x3f\xa3\x98\xe4\x93\x74\xd5\x66\x8f\xd3\x53\x72\x36\xbb\xd5\x83\xc5\x5c\xe8\xac\xfb\x48\x68\xcb\xba\xf2\x35\x39\xab\x8d\xd3\xfe\x29\xc5\x74\x40\x57\x6c\x4c\x55\x77\x9f\x9d\xe1\x91\x29\xdd\xa5\xc2\x24\xfb\x91\x2a\xa1\xd9\x4f\x28\x5f\xd9\xff\x91\xc6\xb3\x78\x96\xfa\xde\x4a\x1e\x47\xd8\x7d\x98\x0a\x48\xaf\x42\x68\x81\x9b\x17\x22\x68\x09\xf7\x87\x16\xe9\x27\x12\x63\x2c\x44\x7c\x3c\xf5\x81\xd2\x28\x8d\xe3\x48\xc0\xd0\x52\x8b\xf7\x05\xeb\xcb\xae\xd9\x38\x4a\x73\xc1\x91\x38\x81\x3c\xd7\xec\x99\xe2\x3d\xb5\xc1\x8f\xdb\x2a\x72\x71\x15\x9a\x0b\x5c\x48\x8b\xd6\x60\xe5\x7a\x1b\x81\x84\x94\x5a\x9f\x97\xc2\x59\xbe\x16\x8e\xd2\x38\x1d\x46\x61\x95\x45\xec\x9b\x73\x42\x58\x1d\x67\x42\x7c\x47\x89\x76\xb4\xff\x76\x66\x07\x29\xb9\x30\xfa\xea\x38\x38\x2b\x0f\x83\xbd\xec\x9b\x7b\xa5\x3b\x28\x5f\x8b\xf2\x8e\xea\xee\x0a\x88\x46\xbc\xde\xdb\xe2\x92\x28\x19\xd9\x2c\x72\xed\x14\xa9\x04\xd5\x0a\x06\x9b\xd7\x74\xb0\x32\xa2\x90\xd6\x74\xe4\xef\xff\x56\x89\x0e\xa1\xbc\x81\x0d\x41\x6b\xcc\x64\x7d\x03\xf3\xe7\x8d\x63\xca\xd6\x06\x7b\x09\x76\x06\x66\xb9\x61\x92\x76\x7a\xaa\x87\x10\xf7\x77\xd6\xd0\x59\x9d\x5f\xfb\x55\x99\x27\xb4\x84\xe3\xf3\xdf\x51\x29\xe5\x85\x69\x9d\xf5\xed\x24\x9f\x00\xe0\xc4\xbf\x83\x8d\x2c\x12\xbc\x4a\x9e\x88\x4b\x2f\x18\xe4\x2c\xa4\x85\xcc\x41\x2f\x04\x69\x96\x3c\x56\x7d\x01\x0c\x61\x9f\x5e\x57\x02\xe6\x57\xa7\x9e\x88\xfc\x28\x2d\x56\x02\xb6\xa5\xe7\x4c\xcb\xe3\x3f\xee\xf6\x7c\xb9\x65\x66\x5d\xb1\xa4\xb9\x20\x09\x6c\x16\xd4\x28\x11\xfd\x1c\x6a\xac\xf3\xd5\x44\x8a\xc6\x13\x9b\x99\x2a\xaf\xa2\xf9\x87\x0b\xfd\x7e\xe0\xd3\x9d\xef\x2b\xfb\x9a\x49\x9a\x17\xe4\xbe\x29\x3b\x30\x52\x7a\xa7\xa8\xec\xa0\x5f\x17\x14\x4d\xe4\x0a\xdd\x0e\x1f\xd3\x46\x29\x5a\x34\x3a\x96\xb2\xcb\xc5\xd3\x7e\x68\x77\xd6\x69\x91\x02\xc6\xf2\x08\x16\x79\xe7\x22\xb2\xb4\xdb\xcb\x9b\x2f\x89\x7b\x38\xe3\xb1\xf1\x32\x6f\x52\xea\x8f\x55\xf5\x5e\xa0\x5c\xe9\x59\x06\x5c\x9c\xad\x28\x4e\x74\xf6\x46\xae\x61\xf2\x97\x53\xdf\x0f\x98\x25\x41\x51\x5c\x3d\xa7\x76\xd2\x55\x57\xaf\xec\x62\xbd\xc2\xf6\xbc\xd2\x76\x2a\x46\x76\x6c\x8a\x28\xcc\x01\xe2\x97\x3e\x23\xdd\x9f\x74\x20\x7d\x23\xd7\xf4\x5f\x2b\x11\x04\xd4\x00\xab\xbe\xa8\xf3\x95\xe0\x29\x05\xfa\x24\x54\x6f\xc7\x79\xc2\x1f\x56\x9e\xf0\x87\x9b\x1c\x95\x97\xf6\x74\x6d\x99\xa5\x13\x6b\x12\x94\xf4\xa5\x61\xea\xd1\xb6\xec\x55\x82\x85\xe7\x76\x8b\xce\x2e\xf7\x39\xa5\xdd\x20\xd6\x0d\x0a\x6a\xa9\xa5\xad\x08\x4e\x37\xb0\x19\xeb\x43\x38\xef\x8f\x7d\x73\xae\xe5\xe3\x34\x63\x4b\x28\xd4\x78\xa4\x2b\x5d\x09\x9f\xb4\x51\xc0\xb3\x88\x42\x75\x45\xf5\xc1\x26\xc0\xc7\x8d\x9a\xdc\xab\xaf\x76\x97\x0d\x79\xc0\x74\x3c\xb7\xf9\x34\xc6\x0d\x9f\xa8\x10\x6b\x62\x93\x24\x5f\x8b\xab\x7c\xc7\xcc\x2a\xae\x02\x1a\x4b\x6d\xb8\xab\x9a\xb2\xe7\xf3\xae\x28\x14\x8e\x6c\x6c\x92\xa1\x8d\x53\xa9\xea\x29\x92\xd2\x6e\x47\x52\x7a\x52\x29\x6b\x56\x8f\xd7\x73\x62\xce\x29\x15\xff\x73\x6d\xfc\xda\x62\x64\x33\x3b\x53\x45\x1f\x88\x70\xee\xd2\xbc\xd0\xee\x4c\x4c\x6a\x53\xd1\x66\x94\x8c\xcc\x32\x2d\xde\xda\xb7\x9f\x99\xe6\x52\x79\xf2\xcb\xd5\x2f\xff\x83\x5f\xea\x54\x11\x3d\x96\xec\x1f\x07\x4a\xca\xec\xc7\xcd\x26\xfd\x3c\xf9\xcb\xc7\x2e\x0c\xd4\x56\xe2\x98\x56\xd8\x83\x45\x1f\x4b\x59\xd8\xc7\xe5\x98\xc9\x90\x58\xf3\xbe\xab\xe6\x22\x8a\x83\x00\x41\xdd\x7b\x88\x33\xc1\xb0\x8c\x4d\x01\x04\x83\xe0\xe1\x69\x50\xb9\x8e\x81\xd2\x97\xf4\xa8\xd8\x51\x39\x4c\xb7\x2a\xff\x1e\x66\xef\x48\x2f\xbd\xe3\x84\xdf\xb0\xe4\x60\xfb\xe0\xba\x17\xbe\xf9\x63\xf5\x6d\xfd\x34\xb1\x8f\xd1\x6c\x47\xe9\x93\x6b\xd7\x7c\x12\xf8\xd5\xfd\xe4\xd4\xbb\x4a\x21\xac\xc5\x8b\xba\x39\xf5\xdd\xa2\xab\xb8\x7e\x71\x91\xf5\x65\xf3\xdf\xa5\x78\x0b\x53\xf8\x92\x7a\x55\x85\xdd\xcf\xef\x14\x90\x1f\xce\xa7\xf9\xa4\xa5\xde\xb9\xbb\x3b\xb1\xe9\x24\xb6\x39\xb6\x58\xc7\x33\x52\x5d\xbf\x3a\x14\x51\x55\xd1\x9b\x75\xac\xf9\xbd\xdd\x51\x35\x97\x37\x51\xc9\x2e\x4e\xf5\xb4\xd1\x96\xaf\x55\xb8\xc2\xf1\x19\xf6\xcc\x2d\xaa\x59\xb8\x65\xbd\xf9\x9a\xa9\xb2\x91\x26\x89\x65\x05\x1f\x57\xe0\xf3\xc5\xbe\x16\xf2\xd9\x0b\xdd\xb4\xcc\x72\x1b\xaf\xd8\x9c\xb2\x38\x89\xb3\xe9\x2b\x10\x0c\x9e\x46\xf9\x18\x98\xee\xbb\xae\xd6\xc5\x40\xb8\x59\xba\x1b\x14\xcd\xfe\x5d\xe0\xe3\x17\x44\x21\xf8\xf7\x2b\x78\x36\x08\x95\x1f\xe9\x35\x1d\xca\x62\xb3\xc6\x2b\x27\xa2\xbf\xc3\x81\xea\xba\x1f\x6e\xa3\x74\xf6\xcb\x7c\x7f\x9d\x7f\xec\xfa\x9e\x17\xa7\x3f\xf7\x10\x58\x74\x66\xc3\xcc\x12\x5c\x56\x99\x4a\x3d\x08\xfc\xb2\xf7\xfe\x54\x91\x67\x6f\x6f\xa6\x82\xe7\x63\x95\xb0\x9e\xd6\x09\xeb\xe9\xa9\x97\x0a\xb3\x79\x61\x96\xe3\x28\x1f\x8d\x6d\x02\x71\x17\x67\x2c\x59\xed\xb8\x22\xe1\xa5\x5c\xcb\x0e\x57\x3b\xa3\x6f\x24\xda\x6c\x6c\xb2\xfd\x96\x78\x73\xa2\x42\x7a\x53\x2d\x0c\x30\x1a\x57\x1c\x17\xe9\x25\x00\x4c\x8d\xe1\x78\xb7\x25\xa0\x5d\xec\xee\x37\xcb\x65\x4c\x55\x1c\x71\x75\xd0\x16\x0f\x6d\xf2\x65\xe9\xf2\x6b\x36\x2c\x28\xd9\x45\xd7\xf3\x98\x42\x3c\x1f\x6b\x55\x98\x85\x6b\xfd\x8c\x2a\xeb\x02\xd6\x87\xa0\xf0\x28\xae\x58\x92\xcb\x36\xc3\xf5\x15\x9b\xad\x75\xbc\xe1\xfa\x49\x65\x21\x7f\x52\xcd\xe8\x51\xba\xfa\x78\xb5\xf8\x22\xa0\xf9\x48\xb7\xa6\x9f\xea\x79\x04\xea\x13\xba\xc0\x7c\x9b\x56\x07\x2d\x3f\x86\x22\xf9\x93\xf4\xe8\x10\xf3\x3c\xd5\x53\x06\x2e\xbc\xe4\x21\x02\x7e\x1c\x61\x2b\xde\xda\x77\xe8\xa6\xd8\x81\x07\xd1\x14\x16\x93\x47\xd6\x5b\x94\x68\x32\x13\xe5\x6e\xe1\x77\x6e\x66\x4e\x76\xfc\xe8\x54\x09\xc4\x69\x35\x94\x34\x2f\x38\x96\xc1\x03\x38\xaa\x06\xfa\xd1\xb6\x96\x72\x9a\xad\xda\x38\x8e\x18\x9d\xe3\x54\x3f\xab\xeb\xe6\x13\x87\x37\x9f\x8c\xbc\x5d\x0d\xc2\x45\x66\x30\xf0\x49\xaf\x85\x2e\x96\x47\xc3\x11\x07\x17\x22\x71\xdb\xf1\x72\xb7\x6a\xbb\x1e\xa4\xb1\x45\x41\x94\x17\xec\xda\xe2\xdd\xea\xed\xb3\x62\x33\xc9\x0e\xb1\x7e\x1f\x54\xae\x14\x8c\xca\x42\x20\xf1\x5d\xd5\x49\x25\xba\x79\x41\x64\xe7\x59\xea\xb2\x89\x9d\x28\x96\x6d\x67\x37\xe0\xe5\xe5\xce\x52\x1c\x2c\x84\x24\xbf\xcb\x66\x51\x5a\x30\xa3\x56\x70\x16\x0a\x73\xd1\x08\x31\xf6\xbe\xd4\x5d\x35\x94\x21\xec\x93\xfe\x2d\xa4\x8f\xf8\x58\xc1\x2f\x08\x20\xc6\x51\x53\x47\x35\x50\x6e\x29\xde\xd2\x2d\xf7\x5e\x56\xd2\x28\xb4\x04\x37\x97\xa2\xc6\xa9\x69\xad\x17\xac\x89\x18\x3f\xd5\xe8\xe6\x9b\x41\x0d\x16\xfc\xa4\x36\xe5\x88\x39\x93\x45\x44\x7b\x48\x71\xc9\x88\xef\xef\x05\x06\x3a\x7e\xba\x3d\x42\x61\x3e\x1f\xaf\xb7\x68\x32\xe5\x65\x24\x42\x10\x8e\x0c\xe5\x4a\x68\x17\x55\xc1\xa1\x9c\xf4\x4d\x21\x31\xa6\xf4\x95\x54\xbf\xe3\xbc\xee\xe1\x95\x59\x38\x32\x39\x31\x32\xbd\xef\x46\xa0\xca\x06\xb0\x95\xe1\x63\x25\xf7\x72\x06\x28\x0e\x71\xea\xf0\x36\x84\x67\x54\x25\xd4\x4c\x26\x59\xba\x62\xb0\x0e\x0a\xfd\xce\x1b\x93\x5e\x50\xab\x71\x3f\xca\x8b\x2c\x5a\x2e\x0b\x21\x1b\xe3\x31\xff\x9e\xd2\x1d\xfc\x3d\x0d\x6e\x59\x59\xdb\xea\x81\xd2\x67\x82\x9a\x48\x05\xbd\x41\x97\x61\xef\x9b\xf3\x06\x4e\x0b\x0b\x1b\xcd\xb8\x6d\xd7\x7c\x77\x92\xa5\x03\x95\x54\x20\x24\x3e\xaf\x49\xfc\xe7\x1b\x83\x72\x69\xae\x1b\x47\x2b\x32\xab\x31\xe3\x79\x56\xf3\x49\xaf\x51\xd7\x9c\x57\x2c\x95\x5c\xb7\xce\xde\xa1\xf8\x86\x8f\xdb\x5c\x61\x98\x8b\xbe\x55\x41\x43\x64\xde\xf1\x99\x32\xee\x28\xa6\xca\x83\xfa\x03\xe5\x47\xfc\x41\xf0\x9c\xaa\xea\xf5\x87\x36\x5b\x4d\x53\xd6\x0b\x00\x95\x82\x61\x91\x7c\xd2\x06\xb2\xad\x06\xf8\xaa\x59\xd3\x76\x97\x53\x0f\xf4\xbd\xa8\xf5\x02\xec\x72\xc9\xa2\x9f\x48\x1e\x2e\x4d\x7d\x52\x71\x49\xd9\xf1\x15\x69\x14\xdb\x22\x13\x15\x3f\x91\x3d\xeb\x28\x39\xb4\xb6\x5c\xd2\x94\x45\x9a\xa4\x63\xf0\x78\x58\xb7\x0b\x97\x2f\x22\x5e\x4d\x2d\xb8\x79\xb6\x44\x98\xf1\x08\x2a\xa8\xf7\xba\x7a\xb7\x5b\xf4\xaf\x7b\xde\xdf\xc4\x86\xd1\x20\x0a\xe1\xdb\xec\x14\x1e\xab\x67\x2c\x20\x04\x5f\x08\xe0\xe6\x3c\xde\xe5\xb1\xa9\x72\x9d\x05\x0c\x16\x15\x02\x60\xb0\x70\x01\x7f\xab\xe7\x17\xdf\x8d\x5a\x51\x22\x1d\xaf\x3d\xda\x71\x5a\x15\x6c\xae\x22\x42\x77\x84\xe5\x41\x78\xf0\x1e\x2e\x86\xad\x39\x30\x7f\xb1\xf5\x5d\x55\x6f\x9f\x0d\x6d\x94\x5d\xe8\x0b\x9c\x6e\x3c\xd6\x93\x5b\x1d\x1a\x4a\xe6\x78\x73\x70\x70\x0b\xc7\x74\x60\xdd\x56\xa9\x53\xb4\x98\x71\x7e\xf6\xb3\xb4\x4c\x33\x46\x1c\xc9\x83\x00\xc6\x1d\xad\x99\x70\xfc\xfb\xc9\xbb\x47\xca\x67\x3e\xfe\x66\xd8\x06\x5e\xfd\x6d\xa7\x6a\x9c\x1e\xe8\x78\xba\x15\x33\x9e\xc4\xed\xb4\xa5\x15\x90\x17\x99\x4d\x86\xc5\xa8\x5a\x66\x9d\x23\xca\x51\xa8\x03\xf3\x89\x76\xa1\x59\x4b\xcc\x38\x0a\xf3\x8e\x6f\xa4\x9c\x20\x59\x41\x3e\x76\xe8\xc2\xe5\xcc\x96\xe8\x51\x7b\xc0\xfd\x11\x8d\xc1\x3b\xe2\x45\x72\xaa\x5c\x52\x16\x08\x6c\x55\xfc\xf8\xf8\x44\x75\xbe\x27\x66\x2d\x4b\x63\xd8\xda\x73\xf4\xbe\x5e\x0b\xe5\x55\xd3\xce\xc6\x13\x9b\x81\x5d\x24\xb4\x8f\x8e\xa3\x9e\x9f\x56\x7b\x91\x35\x59\xbc\xf6\xb8\x97\x45\x3a\x83\x87\xc6\x05\x47\x2d\xb0\xa4\xa3\xa2\xb3\x58\xda\xc5\xf5\xc2\x83\x5e\xf9\xe2\xdd\xf6\xe3\xec\x0f\x2f\x71\xb1\x16\x3d\x6b\xe4\xb8\xec\x5b\x8d\xa2\x04\x17\xdf\x03\x5f\xee\x9c\x6d\x28\x6b\x56\x51\xf3\x6a\x9a\x65\x51\xbd\x9e\x0b\x8b\x6a\xd1\x3c\x10\x65\xd3\x55\x53\xd8\x6c\x90\xa5\x80\xaa\xec\x11\x53\x7d\x65\x15\xf7\x53\x55\xa7\xaa\xc6\x9a\x5d\x53\x6e\x01\xe0\x56\xf3\xf1\xe6\x7e\xd9\xc2\x42\xf7\xff\x4f\xec\x15\x60\xbd\xee\xa8\xce\xee\x9f\x05\x6a\x6f\x3a\x3d\x55\xc6\x70\xb0\x0d\x41\x93\x96\x63\x03\x26\xb9\x34\xe9\x70\x2f\xed\xe9\xc6\x65\x3e\xa2\x15\x54\x1b\x1a\xf3\x71\x23\x9f\xf8\x5c\x77\x10\x0d\xbd\x45\x46\x6b\x9d\xbb\x2d\x3d\x40\x72\xa3\xac\xb8\x3e\xd6\x56\x5c\x5a\x19\x31\xb7\x79\x1e\xa5\x09\xf4\x9c\x44\x18\xb2\xe3\x7c\x1d\xce\xab\x72\xec\x19\x35\x51\x19\x9b\x81\x6a\xcd\x4d\xc5\x39\x23\xeb\x8b\x2a\x2b\xdb\xe9\xfb\x99\x97\x74\x0f\xed\x3a\x3d\x2e\x20\xf1\x4f\xeb\xfa\xc0\xd7\xa7\x35\x6e\x30\xbd\x27\xcc\xab\x7f\x13\x28\x7c\xc7\x75\x65\x9e\x79\x51\x01\x97\x79\xf1\x45\x16\xfe\xb5\xa9\xd2\x36\x54\x73\x6d\x60\x81\x66\xf0\x84\x58\xd6\x06\x97\x69\xe9\x67\x50\x51\x66\x49\xbe\x95\xca\xb4\x48\xb6\x8f\x2a\xf9\x3b\x28\x91\x39\x8e\x90\xff\x9b\xa9\xaa\x02\xaa\xfd\x70\x64\x4d\xd6\x47\xae\x29\xe4\xfd\x8e\x63\xf0\x70\xcd\x1f\x8d\x69\x90\x78\xc5\xd9\x41\xc9\x04\x9f\x6c\x20\xc9\x97\xe6\xd8\xbb\x21\x06\x9e\xc9\xcf\x80\x43\x53\xa5\x71\x53\x43\xd9\x40\x12\x14\xf5\x26\xd7\x21\xf5\x62\xb6\x78\x86\x4e\x87\x6a\xf7\x4b\x7b\x6a\x98\x02\x40\xc7\x8f\x29\x4c\x46\x3a\x18\x44\xa1\xdd\x59\x7d\x05\xee\x1a\xf5\x23\xb4\x18\xef\x2b\xc1\xc1\x13\x18\x03\x8e\x4a\xbc\x24\x7c\x50\x76\x6e\x40\x11\x43\x96\x13\xd1\xd5\x50\x36\x13\x5c\xf2\xc2\x88\x7a\xae\xe7\x5c\x24\x2e\x3f\xd2\x53\x3c\xf4\x4b\x6a\xee\x0f\x4d\x94\xd8\xfe\x36\xe5\x1d\xb0\x95\x2d\xd4\x90\x8f\xae\xd3\xa5\x0a\xc6\xcf\x97\x18\x19\x6b\x29\x16\xfa\x1e\xf5\x7a\x43\x6b\xa7\x99\x24\xb1\xd0\x80\x40\xf0\xf9\xb6\xa6\xcf\xbd\xdd\xe8\x5a\xed\x9b\x7b\xa5\xfb\x7a\x99\x16\xa8\x8c\xd0\x9f\x8a\x54\x6e\xc7\x59\xf2\x1d\x56\x09\xc3\xee\x46\x45\x86\x76\x36\x86\x68\x01\x3c\x7c\x4a\xe9\xa0\x9e\x6a\x2c\x1e\xbf\x20\x10\x8c\x19\xdf\x46\x67\xa5\x7b\x21\xe4\xa8\x8a\xfb\x87\xaa\x43\xf4\xf7\xff\x1e\x9b\xe3\x49\x11\xd1\xb3\xaf\xe0\x32\x2a\x26\x49\xd5\x43\xc3\xc3\x7c\xaf\x0d\xbe\x99\x91\x75\x65\xc7\x07\x59\x77\xbc\x15\xd2\x17\xef\xa8\x55\xc8\xac\xa4\x51\xdf\x01\x27\x30\xa1\x7f\x84\x59\xcf\x27\x2e\x80\x08\x47\xa6\xb0\xa6\x9c\x51\x64\x88\x77\xe8\xfa\x50\x3b\x63\x8f\x8d\xcd\x66\xb5\xb1\x41\xc1\xc3\xf3\x64\x71\xef\x42\x9a\x6d\xb1\xe1\x9f\x90\xe2\xae\xe2\x03\x74\x9c\x0e\xc2\x69\xf7\xbd\x2b\x36\xcb\xd9\x44\x0a\x05\x9e\xeb\x0a\x06\x01\x55\x7c\x71\xcd\xf7\x63\x67\xd9\x66\x09\x97\x1d\x9d\x7e\xa9\x77\x01\x3a\xd6\xa6\x01\x6e\xb2\xcc\xe8\xcb\x47\x88\xcc\xc7\x2d\xf5\x68\x82\x74\x90\x0b\xd1\x8c\xf2\xf3\xba\xa7\x0b\xab\xa7\x95\x7e\x7f\xb3\x35\xbb\x6b\xbe\xdb\x8f\x32\x2a\x4b\x39\xe7\x0c\x44\x94\x7c\xdc\xc2\x07\xd9\xdd\x9d\x94\x6f\xbc\x11\xcb\x2e\x8e\x5a\xd4\x07\x4a\x59\xf5\x03\xc5\xaf\xa5\x42\xb5\x6f\x34\xbd\x4f\x63\x49\xf6\x65\x35\x95\x18\xef\x89\xda\xe1\x03\x5a\x36\x1d\xe0\xd4\xb5\xb5\x61\xfe\x44\xb7\xf2\xdf\xfe\xdc\xba\x2b\x39\xfd\x77\x3f\xdf\x53\x19\xe1\x85\x5a\x80\x6d\x32\x43\x99\x00\x6b\xce\xd2\x55\xb2\xac\x3e\x45\x2e\x1b\xa7\x1a\xdb\x77\x95\x43\x14\x69\xdc\xdf\xa6\xca\x27\x8f\xf6\x3a\x5f\xf8\x52\x8d\x1e\x87\xe9\x78\x0c\x6b\x17\x77\x0e\xa7\x1e\xce\x7b\x61\xaa\xf0\x1d\xdf\x52\xdc\x7a\x56\x85\x9d\xad\xc6\x8c\x93\x78\xf5\xa1\xf8\x89\x7a\xa2\x51\x7d\x07\xff\x47\x4b\xa1\x67\xb7\x9b\x7a\x6e\x6d\xbf\xa7\x84\xca\x9b\x99\x70\xf5\xf2\xf2\x72\x32\x49\x5d\xb1\x0a\x10\x88\xb7\x02\x0f\x8d\x78\xcb\xdb\x27\x96\x71\xdc\x4f\xdf\xe0\x31\x8c\xae\x08\x8a\x1d\x7c\xec\xe6\x47\x96\x16\x85\x4d\x66\xfd\x97\x6c\x20\x8e\x42\xf0\x82\x85\x05\x91\x24\xe8\x28\xd2\xae\x91\x98\xbb\x4c\x06\x51\x1c\xdb\xfe\xac\x76\x80\x41\x64\x09\xa4\xda\xbf\x9a\xfa\xa2\xed\xdd\x40\x59\xe4\x9e\xd1\xda\x7b\xa6\x08\x47\x36\x13\x9e\x02\x5e\xca\x49\xe5\xe5\x73\x4b\x13\x20\xdb\xc1\x6f\xdc\xdf\x49\xd1\x1f\xdd\xcd\xb7\xc3\x45\x7c\x3e\xa9\x41\xf4\x4c\x79\x60\xa6\xba\x25\x44\x37\x9c\x5d\x0b\x92\x94\x7e\x4e\x78\x0e\xaa\x07\x45\x82\x85\x8a\x91\x48\x2f\x0d\x89\xc0\x1d\xad\x06\x72\x4c\x03\x72\x6d\xb6\x12\x85\x36\xa7\x5d\x18\xab\xd0\xb6\x75\xef\x0f\x7f\x9d\xe2\x13\x64\x6d\x0f\xb4\x34\xdc\x36\xb2\x9c\x43\xb9\x8e\x60\x04\xf3\x1b\xe7\x20\x5e\x8a\xdf\x60\x6f\x42\xa7\x17\x54\x8d\x67\xdd\x88\xc4\xd7\xb3\x49\xb2\xb8\x83\x3e\xab\xbc\x3f\x20\xc9\xc4\xbd\x18\xc4\xc4\x6f\x06\x1e\xe8\xf9\x66\xc3\x13\x60\x7e\x2f\x0a\x47\x93\xac\xae\x27\x87\xa8\x9b\x41\x56\x7c\xd2\x28\x00\x57\x43\x38\x4a\x0a\x67\xef\x80\x21\x76\x42\xd9\x15\x9f\x55\x36\x0d\xdf\x6c\xab\xeb\xc2\xfa\x3c\xb1\x50\xc3\x17\x1b\x61\x1a\x6d\x88\x35\x10\xeb\x8b\xd5\x72\x9b\x8a\x4b\x06\xea\xb9\xab\xd5\xfd\xa0\x96\x6f\xa8\x7d\xff\xb8\x8a\x54\xf6\xa7\x99\x35\xe8\x97\x88\xc9\x51\xc7\x29\xcf\xdd\xc5\x7b\x67\x5e\x43\x8b\x86\x55\x6c\x8b\x82\xa7\xa2\x68\x6f\x2a\x60\xef\x09\xd5\x61\x21\xe8\xb6\xed\xcf\x76\x9c\xce\x2f\xfa\x9a\x08\xe3\xb1\xc3\xf1\x31\x6d\x5d\xfc\x37\xeb\xbe\x5e\x13\x8e\xc8\x88\xd5\x71\xec\x18\x5d\x12\x78\x00\xc7\x47\xda\x51\x29\xcd\x2d\x09\xd4\xe0\x8b\x76\xf4\x7c\x31\x7e\x3b\x6c\xbd\x30\x5c\x3f\xa4\xb5\xcd\x31\x1c\xaa\x25\x5b\x9e\xb1\x02\x86\xdd\x55\xd1\xf9\x20\xb3\xd5\x7d\xec\x53\x4d\x96\x6a\xea\x4b\x93\x85\xc2\x76\xe1\x22\x28\x5e\x82\x62\x02\x84\x69\xf2\x5a\x99\x38\x18\xe3\x1e\x87\xcc\xa8\xae\x97\x8f\x15\x21\xb1\x6f\x21\xa5\xa1\x7c\x92\x90\x07\x0b\x18\xab\x45\x38\x8e\xcc\x34\x86\x69\xc2\x70\x59\xd4\x22\x8f\x91\x92\x15\x1f\xab\x98\xcb\x0c\xd3\x1d\x4e\xe9\xee\xff\x7e\x9e\x30\x36\x98\x61\x9f\x02\xd4\xad\xd6\xeb\x17\x18\x96\xaf\xf4\xf2\x30\xc1\x62\xda\x59\xaf\xf6\x49\x67\x54\xe2\x00\xa8\x04\xd7\x11\xc1\xe7\x9b\x78\xb8\x42\x3c\xda\x1c\xb1\x4a\x43\x2f\x89\x46\xdc\xcb\x73\x86\x29\x2e\x2d\xff\xf2\x54\xe9\x5c\x9f\x53\xef\x27\xb1\xb6\x0f\x45\x00\x44\x4c\xff\x97\x82\xd5\x41\x9b\x58\x54\xed\x6b\x12\x6b\x4f\x7b\xda\xb6\x8d\x56\x88\x69\xef\xb0\xc5\x3f\xc2\x8e\x8a\xfa\xd3\xf7\xe9\xa6\x50\x02\x3b\xa4\x50\x1f\x83\x28\x31\x49\x18\x11\x28\xc1\x31\x30\x2f\x68\x7c\xc4\x5d\xb5\x02\x35\xb7\xf8\x57\x5f\xed\xc6\x69\xba\x9f\xf3\x6d\xcc\x54\xcc\x0b\x3e\x6e\xc3\x26\x4f\xaa\x4d\x0e\xcb\x36\xc6\x30\x2b\xdc\xd5\xde\x98\x74\x12\x5a\x84\x8f\xe3\x52\x4a\xc2\x5a\x35\x43\x30\x60\x7e\x88\xfc\x17\x9f\xff\xcf\x08\x09\x01\xb0\xcb\x0f\x30\xcb\xf9\xa4\x4d\xc1\x73\x35\xcd\xf6\xf3\xc2\x20\xbe\x5b\xf4\x11\x3e\x99\xee\x74\xaf\xeb\x35\x92\xf7\xe5\x9c\xff\x36\xde\x09\x9f\x04\x5e\x15\x35\x0f\xb3\x68\x52\x90\x3b\x0c\x43\x85\x91\x92\xbf\x4f\xd7\xcb\xc7\xd3\xc7\xbd\xcd\x74\xb6\x46\x3b\x3f\x5a\x7e\x68\xc5\xf1\xf1\x54\xf7\x50\x02\x4d\xb4\xd7\x7c\xd7\x65\x86\xc3\x23\x44\x3c\x4c\x6b\x12\x1f\x37\x82\x9e\xdd\x2f\xed\xe9\x4e\x62\x4b\xd8\xcc\xea\x51\x0a\xaa\x44\x51\x98\x54\x99\xc2\xb9\x2a\x02\x76\xc9\xf0\x5e\x85\xb7\x43\xc2\xeb\xe4\x1a\xfd\x46\xf8\xcf\xda\xc4\x1d\x26\x16\x7d\xfa\x8e\x73\xf2\x41\xec\x8f\xe0\x72\xa6\xa7\xd0\x08\x67\x35\x1a\x41\xa1\x62\xa0\xe9\x45\x8a\x5e\xf3\x7b\x19\xd6\xfe\xbe\xfe\xe1\x27\x7a\x75\x6d\x30\xcf\x3e\x3a\x84\x1a\x06\x97\x7d\x15\xfe\xf5\xa9\x75\xad\x59\x58\xe6\xa0\x19\xb3\xe2\x20\xc6\xa8\xc8\x0f\x3a\xe3\xa0\x34\xcb\xc8\x80\x8b\xc1\xc2\x82\x95\xa2\x67\x8a\x3f\x7e\x80\x4f\xca\x72\xdd\x82\x75\x2a\x32\x33\x18\x44\x21\xe5\x9d\x22\xac\xd9\x71\x1a\xa1\x2c\x8e\x8f\x93\x4b\xaa\x11\x0b\xbd\xe6\xad\x35\xa1\x25\x7a\x72\x1a\x7f\xe0\x12\x49\x27\x40\xf6\x03\x7a\xd4\xd8\xd6\x37\xd4\x92\x6d\xaa\x77\x9c\xa7\x49\xcd\x70\xf9\x82\x36\x5c\xd6\xd8\xfd\x32\x29\xcc\x64\xc2\x7d\x60\x91\x31\x51\xae\x47\x17\x55\x3c\xb9\x6c\xc2\xd1\xd8\x24\x09\x22\x1b\xd4\xfb\xaf\x28\x0a\xd4\x15\x35\x09\x6c\x5e\xa0\x75\x83\xea\x27\xc4\x37\x11\xb9\x3f\x89\xca\x05\x9e\x10\xd0\xa5\x78\x87\xd7\x95\x89\xab\xd6\x81\x89\xd3\x64\xb8\x93\x3e\x83\x1a\xc1\xce\x9e\x82\x78\xde\xa2\xd1\x8b\xed\x08\xc2\xc1\xe8\xd3\x5f\xd7\xca\x55\x0f\xb4\x80\x13\xcc\x04\xb0\x92\x5f\x22\x70\x23\xae\x6b\xcb\xba\xcf\x67\xd9\xfe\xd2\x61\xd6\x17\x16\x44\xf1\xdf\xc5\xe8\x63\x9b\xd9\x7e\x54\x8c\x3a\x0d\x8d\x8c\xdd\x72\xa2\xfa\x77\xcb\x45\x0e\x7a\x1b\x60\x45\x3f\xdb\xeb\x7c\x71\xbe\x46\x8e\xd3\xe3\x1b\x73\xf1\x69\xf4\xd6\xdc\x2a\xa0\x80\x6f\xaa\x58\x86\xb8\x01\x55\x9b\x4b\x81\x56\xb9\x8f\xd3\x22\x7f\x14\x17\xc7\xd6\x7b\x4a\x55\x1d\xf3\x05\x3b\xed\xbb\x8a\xa5\xf3\x1d\x0a\x9b\xf9\x18\xc3\x5f\x00\x19\x4a\xd0\xeb\x6a\xe0\x2b\x40\x67\x15\x1f\x35\x33\x13\x5e\x87\x5c\x33\xc6\xbd\xdd\xab\xaa\x30\x98\xc7\xd6\xee\x9f\xf1\x75\x28\xa6\xe9\x0a\x28\xc8\xa3\xc5\xaf\x2a\xc6\x75\x6c\xc2\x8e\xa6\xd1\xfe\x00\x57\xc4\x27\x41\x0b\xd6\xf6\x33\xdd\x2c\x8d\xd3\xbe\x3d\x60\x79\x5a\xcb\x60\xc4\xd7\x08\xc0\x9b\x2e\x58\xba\x3d\x0a\xc7\x9c\x8d\x77\xd6\x27\x65\xf5\x77\x8e\xa1\xe0\x4b\xb8\x88\x47\xb0\xf6\xdc\x0c\x7c\x7d\xe3\x69\xdc\x95\xa3\xe6\x56\x23\x0a\x4d\x06\x70\xe4\x11\x3f\xb0\x8c\x87\xe3\x74\xef\x9b\x73\x81\x29\x65\x25\x88\x99\x9a\x30\xc4\xf9\xbd\xdd\xd8\x14\x51\xa2\xd4\x9a\xd9\x7d\x8e\x4f\xd4\x7b\x19\x58\x5b\x6c\xad\x46\x3a\xc0\xc2\x5b\x14\x09\xe1\x7b\xca\x6f\xf2\x12\x85\x76\xcc\xf8\xc5\x72\x87\xd8\xe5\x94\x82\x69\xa6\x59\x34\x8c\x12\xc3\xe2\x47\x4e\x8f\xfe\x87\x98\x6f\x4e\x96\x4b\x69\x74\xa9\x41\xf0\x43\x67\xf5\x30\x8a\xb2\x34\x1f\x45\x63\x33\xab\xa0\x03\x70\x44\x66\x41\x95\xe9\xcc\xcb\x4b\x73\x1b\x58\x42\xc5\xaa\x50\x49\x1a\x5b\x93\x48\xa4\x84\xdc\xe8\xaa\x5a\x8a\x40\x3c\x13\x2a\x92\x7e\xa7\xf6\x49\xfa\x3d\xf0\x16\x7e\x48\xe3\x18\xf7\xb8\x9d\x62\x4f\x11\x66\xe8\x38\x75\x9b\xa7\x7b\x3e\x92\x3e\x49\xd9\x3a\x7a\x3b\x67\x01\x66\xd6\xe2\x18\x18\x1b\xdb\xd6\xab\xb9\x2d\xa5\x1f\x7a\x2a\x58\xa5\x3f\xd2\x1c\x5e\xb6\xcb\x15\xee\xd7\x8c\xb7\xbd\x65\x65\x49\xec\x3a\x3b\x1a\x6d\xa3\x17\x17\xbb\x66\x6c\xb3\x28\x64\x1c\x8e\x24\x79\x74\x5b\x92\xbc\x3d\xa1\x42\xd2\x08\x74\x37\x3c\x18\x64\xa2\x7c\xec\xa9\x18\x5e\x92\x40\xb5\x71\xf7\x38\x08\x52\xc7\x53\x62\x15\x0b\x73\x39\x36\xc9\xfe\x8e\x82\xd3\xc1\x67\x4b\x84\xbc\x5a\x1c\xa1\xfa\x96\x85\x7a\x44\x43\xd3\x67\x46\x17\x1b\xb5\xe3\xc5\xc5\x3d\xd5\x36\x12\x8d\x4d\x61\xfb\xb3\xf5\x02\xae\x6f\x29\x5c\x53\x84\xdf\x83\x81\x32\x39\x3d\xd3\x86\x2a\x18\x5b\x5b\xc8\xa8\x11\xcf\x4f\x7a\x0f\xa8\xb7\x3e\xba\xee\x11\xf1\x4f\xf7\xbc\xbe\x25\x71\x7a\x72\xb4\x88\xf1\x53\x98\xc1\x28\xc0\x5c\xd4\x54\xa0\x23\x4a\xbd\x6d\x68\xf3\xa2\x14\x28\x36\x9a\x6b\xb0\xc8\xe6\xe3\x9e\x93\xe7\xa4\xf0\xa3\xa3\x21\x29\xde\x8a\xf9\xbc\x4a\x65\x4d\xb2\x36\x4e\x33\xbb\x55\x09\x44\x6b\x9c\xe7\xb7\x02\x6f\x7b\xf9\xbb\xf4\x60\x90\x0c\x9d\xa6\x89\xcd\xff\xde\x00\x90\x3a\x4f\xc2\x6c\x3c\xeb\xc1\x2a\xd8\x2d\xb0\xcb\xdc\x51\xfc\xda\x8b\x5a\x5c\xfa\xab\x6a\x9b\x1e\x96\x49\xbe\x75\x33\x57\x04\xf3\xe9\x1b\xf8\x0c\x9f\xd0\xa4\x43\x2a\xc2\x85\x79\x66\xe9\x34\xb2\xc9\x17\x17\xbb\x79\xb9\x9c\x17\x26\x09\x35\x2b\x0e\x64\x07\xe1\x5e\xaa\x9e\xb6\x35\x90\x2b\xf6\xa8\x8b\x53\x74\xe5\x62\x75\x50\x83\x1a\xc4\x09\x94\x22\xa4\xfd\xe1\xa3\xd8\x66\x5d\xf8\xd5\x57\x6b\x54\x4c\x81\x92\x56\x1f\x11\x24\x69\xcb\xb5\x13\x18\x7f\xd9\x24\xd8\xea\x70\x11\x57\x14\xca\xe3\xeb\x53\x95\xcb\x5c\x74\xee\xea\x99\xcd\x27\x69\xd2\xb7\x89\x53\xa5\x40\xa8\xc3\x65\x01\x3e\x71\x60\x0d\xd3\x4f\x27\x85\x03\x00\xa2\x14\x79\x4a\xcd\x8a\x13\x2a\x69\xfc\x23\x2f\x28\x62\xb3\xc4\x64\x7d\x00\xb7\x04\x55\xa4\x10\x46\x8d\xe9\xcb\x90\xac\x8e\x6f\x3a\x5c\xac\x09\x32\x3f\xa5\x28\x18\x59\x1c\x25\xaa\x89\xf0\x6e\xe0\x53\xe2\x77\x95\x35\xe9\xfe\x28\x4e\xc7\xd6\xa5\x55\xd8\x8f\x01\xbe\xe7\x63\xe5\xb1\xd1\x8f\x86\x51\x61\x62\x44\x95\xc8\xde\x8f\x2a\x7c\x09\x4b\xa2\x3a\xfa\xb9\x63\xb0\x1e\x57\x72\x7e\x3f\xd6\xfc\x47\xb8\x7d\x56\x4f\x54\x97\x65\xf9\xb8\xcd\x34\x7a\xc5\x26\x7d\x5b\x14\xa6\x53\x0b\xc5\x14\xc8\xda\xef\x33\xaf\x97\x30\xa4\x93\xe4\x87\x2e\x9a\x4f\xda\xba\x2e\x89\xe1\x55\x1a\xc1\x02\xe6\x1b\x1f\xbb\xaa\x72\x99\x0c\x4c\x84\x94\x15\x1d\x62\xa0\x72\xf9\xb8\x21\xe2\xbb\xb8\xb8\xbb\x1b\xa6\xc9\x20\xea\x73\x71\x70\xb7\x03\x77\xfa\x21\x78\x5b\x89\xae\x7a\xcb\xfb\xcc\xe6\x36\x21\xa5\x4e\x65\xab\x77\x43\xd9\xea\xdd\x70\xe3\x28\x4b\x0f\x2c\xa7\x19\xeb\x86\x89\x28\x53\x47\xa9\x35\x3d\xaf\xfc\x0a\xe0\x65\x51\xa4\x13\xba\x09\x74\xe0\xbe\xa7\x7c\xf7\xbe\xb7\x19\x5f\xb3\x6f\x6e\xbe\xfb\x2b\x2f\x53\xe5\x0e\x31\x15\x37\x47\xb1\x31\x9d\x50\xf2\xef\x27\x68\xc7\xe7\x3f\x0a\x9c\x77\xbf\x33\xbf\x9d\xf5\x99\x3e\xda\xa8\x90\x23\x39\x8f\xbd\x04\x91\xf8\x2d\xc5\x97\xf0\x02\x41\xc4\xb9\x33\x43\x50\xeb\xd1\xae\xfe\x1a\x5e\x28\x9f\xb8\x5f\x33\x45\x91\x99\xd0\x49\x25\x3a\x62\xa7\xf7\xc5\x87\x2c\x17\x2f\xaa\x2d\x8a\x14\xdd\xcc\xf4\xdf\x58\x1b\x47\x92\xbd\x39\x3a\x83\x97\x75\x39\x13\xec\xe4\x8f\x75\xf7\xcd\xed\xfe\x5b\xd5\xa3\x01\xda\xea\x1a\x3a\xd7\x12\x93\x2a\x3f\xae\x5b\x04\xec\x91\x92\x1d\x85\x2d\x22\xfa\xd1\x79\x79\xb7\x0f\x3b\x3c\xc5\xe4\xc1\x54\xb9\x33\x5c\xc2\xfe\x46\xcf\xf6\xd3\x9f\x62\x15\x1f\x46\x81\x68\x2f\xb8\x0d\x44\xd2\x58\x97\x4f\x04\x9d\x2f\x7c\x89\xa1\x57\xdf\xa4\xed\x07\x9d\xf2\xc3\x08\x0d\x9d\x66\xff\x92\x8c\xca\x9b\x8a\xfd\xf9\x83\xa9\x97\xa4\x7c\x00\x8e\x80\xd0\xb8\xaa\x89\x81\x22\xda\x3b\x01\x59\xa9\xb0\xbd\x7d\xa0\x1a\x4f\x1d\x04\xde\x88\xf1\x76\xa0\x52\x2f\x8e\x28\x1d\xa7\xb5\x72\x63\xda\xd9\xfb\x92\x1f\xb2\xae\x11\x76\x8d\xf6\x5e\x71\x69\x9e\x59\x58\xd8\xb3\xb1\x1e\x74\x7e\xed\x57\x9d\x1c\xe5\xe6\xf9\xfb\x85\x2f\x91\xd3\x26\x09\xe0\xba\x3d\xf9\xc5\x45\xd7\xcc\xd8\xbc\x99\x2c\x2c\x74\xb3\xb4\x74\xab\x8f\x58\x46\x7a\xdc\xdb\x8f\x5c\x45\x30\x27\xe4\x72\x34\x44\xa8\x27\x68\x1b\xdf\x9b\xbc\xd9\xc2\x48\xdd\xdd\x0d\xd7\x92\x28\xe4\x48\xcb\x61\x0b\x3d\xce\xb0\xd5\xbc\x75\x39\xcd\xa4\x62\x0b\x3c\x3b\x3a\x98\x7c\xac\xe0\xb6\x43\x93\xa7\x71\x84\xbf\x7d\xc1\x39\x06\xf8\x72\x77\xd3\x4c\x84\xba\x6c\x45\x96\x26\x43\xc1\xba\x72\x35\x33\xf0\xc5\xca\xef\xbb\xdd\xcf\x1e\x98\xc4\x26\xf1\x12\xe1\x0e\x46\xab\x6c\xdd\x7d\x40\x64\x93\x21\x49\xdf\x75\x84\xd9\xb9\xef\xfb\x4a\xb5\xf0\xfb\x6a\xff\x30\x93\x49\x1c\xd9\xfe\x63\x3a\x85\xbc\x18\x78\x7f\xe4\x2d\x3d\x9a\x31\x18\x34\xc7\xa7\xca\x64\xf0\xf8\xb4\x96\x64\xcc\xef\xe5\x5d\xe6\x26\x6d\x3f\xc2\xbf\xd4\x6e\x87\xec\x94\x86\x5b\xbb\xe6\x96\x55\x7b\x60\x62\xb3\xc8\x26\xa1\xa5\x38\x89\x49\xa6\x34\xa4\xa5\xa7\x5d\xfd\x92\x54\xc9\x15\x28\x10\x79\x21\xba\xc1\xf7\x5b\x35\x09\x6b\x42\xab\x4a\x4e\x79\xde\x39\x36\x3f\x2c\xec\x1b\x19\x02\x3f\x4a\x3c\x79\x3b\xa8\xf2\x2e\xee\xdf\x83\xfe\x24\xf5\x64\x5f\xe8\x5e\x36\x49\x98\x12\x76\x0f\xb7\x7f\x89\xfe\x8e\x8f\x1b\x45\xca\x6a\x7c\x0d\x94\x30\x0a\xf7\x2d\x6b\x3d\xcc\x4f\xa9\x92\x54\x98\x26\xd5\x18\xeb\x1b\xe9\x3c\xa0\x91\x74\x59\xf1\x01\x2e\xab\x14\xa7\x4f\x54\x56\x4d\x52\xd5\xb4\x56\xcd\x45\x7d\x28\xb3\xb4\x46\x6b\xd5\xdc\xd7\x87\x73\x5c\x6b\x74\xd9\x87\x72\x5c\x6b\x2c\xd5\x87\x11\x5e\x6b\xbc\x56\x3f\xb6\x27\xd5\x5e\x69\xe1\xde\x2b\x8e\xf5\xca\x2f\xe8\x1c\xae\x14\x99\xcb\x4f\xd4\xc2\xf6\x27\xad\xe2\x68\x93\x32\x1f\x09\xcc\x15\x11\xfa\x75\xba\x6d\x69\x84\xa8\xba\xe8\x8f\x55\x75\x72\x39\x33\x6f\x10\x70\x7f\xb7\xb7\xc3\x72\x8c\xb8\xb3\xb5\xde\xf8\x28\xcd\xc4\xcf\x14\xcb\xfb\x41\xd5\x79\x3c\xa8\xf2\x22\x7b\x20\x22\x5d\xd2\x6d\x0a\x90\x75\x15\x9b\x07\x9f\xd0\xa3\x72\xd0\x30\x97\x54\xfe\x1e\x95\xca\x50\x1e\xc1\xd0\x64\x83\xcb\xe9\x4e\xdf\xb2\xd2\x8b\xc1\xc1\xa9\x52\xa8\x38\xd8\x10\x3b\x5a\x9a\xeb\x8e\xd3\xb1\x4a\xcf\xd0\xf8\xe7\xe3\x96\xb5\x75\xbe\x1b\x47\x49\x48\xa9\x43\xf5\xbd\x28\x4b\x7c\x47\x49\xb2\x7c\x47\x51\x91\xab\x61\x5c\xc6\x85\x49\x44\xe6\x40\xb0\x55\x58\x82\x44\x2a\xd0\x57\x47\x58\x62\x48\xa0\x63\xfe\x25\x58\x93\x15\x23\x76\x9b\xc1\xfb\xba\xaa\xa4\xbb\xae\x36\x94\x75\x5e\x5c\xec\xda\x03\x85\x4d\xe0\x95\xe8\x41\x18\x81\xd7\x5d\xaf\xc3\x42\xca\xfc\xc0\xa3\x3e\xbf\x62\xa8\x34\xeb\xa0\x07\x5e\xe4\x18\x62\xed\x4e\x1f\xfd\x65\x27\x3c\x07\xd4\xac\xe8\x1a\x57\x2f\x06\xf3\xfa\xbe\x66\x8d\xdc\x6c\xeb\x16\xc6\x51\x5e\x58\x6f\x83\x27\xba\x7f\xfe\xee\x7c\x91\xbe\x1f\xe5\xa1\x85\x65\x9e\x4e\x6d\xe9\x73\x7c\xd2\x96\xb5\x90\x08\xa6\x6f\xe4\x9d\xa8\xa5\x46\x4a\xc9\xfd\x80\x0d\x4b\xae\x6a\xbd\xe8\x45\x4f\x15\x67\xe7\xae\xca\x4c\x7e\xaa\x94\x10\x7e\xa8\xfa\x19\x83\x34\x2d\x46\x51\x1c\xe7\x35\xb0\x2b\x4d\x3a\x41\xbb\xb6\x38\x1b\xf4\xcb\x31\x54\x71\x34\x0a\x54\xdc\x62\x5a\x3a\xf6\x71\x34\x1c\x15\x0e\xfd\x88\x3d\xfa\xb2\xda\xaf\x2f\xab\x42\xd9\xc4\x66\x59\xc4\xfd\x30\x71\xd4\x54\xea\xdf\x47\x35\xbd\x3d\xab\x12\xed\xc7\xbc\x74\x29\xfb\x5c\x49\x4b\xbd\xe3\x64\x05\x1e\xed\xa9\x06\xd2\x69\x6d\x59\x7a\x43\x05\xff\xb3\xeb\x0a\x98\x7f\x97\x86\x05\x1e\x42\x07\xea\x0b\xfc\x71\x2f\x02\x97\xa6\x7d\x55\x15\x3e\xab\x64\x3f\xb8\xcf\x2b\xc5\xae\x67\xeb\x1e\xe7\x85\x29\xa0\xa6\x20\x7c\xa7\xea\xf9\x09\x0f\xca\x37\x3b\x26\x59\xda\x2f\xc3\x2a\x08\xa9\x5e\x2a\x4a\x8e\x00\x13\xf2\x71\xdb\xf0\x59\x4d\xb3\xfd\xb3\x44\x3d\x70\xdc\x1f\x97\x4e\x83\x2c\x24\xda\x5e\xb4\x36\xcb\x5a\xef\xab\x12\x03\x6b\xb2\x3c\x1d\xdb\x4d\x02\x21\x6e\xbe\x34\xc5\x92\x1d\xa9\xd4\x14\x09\xd5\x9d\x3c\x2f\x7f\x5b\x4f\xcb\x84\xbc\x33\x55\xb5\xeb\x99\x75\x09\xa1\xa2\xa4\x5f\xe6\x45\x16\x99\xb8\x66\xe7\xcf\xf6\xc8\x58\x56\xef\xd5\xdb\x59\xde\x07\xf4\x3f\xee\x84\xff\x49\xbf\x3b\xa5\x79\x1e\x2d\x47\x71\x54\x44\xe2\x6a\x88\xeb\xb8\x45\x31\xb3\x9c\x28\x59\x9d\xcc\xae\x54\x19\x7c\xf4\x06\x0b\xb2\x6d\x00\x21\xbd\x71\x49\x99\x17\xbf\x96\x8e\x92\x3c\x4d\xb0\x5e\x62\x7f\x3c\xa9\xad\x34\x4f\x22\x30\x13\x3f\x54\xba\x07\x3e\x51\x28\x07\x13\x86\xe9\x78\x9c\x56\x01\x84\x06\x6c\x80\xec\xc2\xc7\xc1\xe3\x3e\xd9\x15\xe7\x1d\xc1\x97\xd2\x0f\x0a\xc0\xd4\x09\xc5\x9a\x2c\x82\xb5\xad\x7a\x1e\x7e\x2d\xb9\xd0\x2a\x30\x68\x62\xa7\x49\xba\xe8\xcc\x54\xe9\xaa\xc5\x65\x55\x77\x7e\xd7\xd8\x43\x05\x8b\x27\xeb\xaa\xf3\x49\xab\x87\xa8\x29\x0a\x43\x42\x72\xf4\xfd\xdc\xde\xc0\x53\x91\x5e\xc7\xf3\x4a\x81\x60\x90\x66\x63\xaa\xdc\x3f\x41\x63\x55\x1c\x4f\xab\xd9\x22\x0f\xb1\x9a\xa4\x0c\xb6\xd2\x7a\xef\x17\x35\xf5\xfe\xa6\xb2\xaa\x3f\xac\xd1\x67\xcc\x7e\x90\xea\x04\x8d\x22\x3c\xc6\x3b\x84\xae\xc7\x68\xfb\x11\x65\x7a\x48\x07\xdf\x0d\x54\xab\xf3\xae\xea\xa8\x5f\x57\xeb\x12\xd1\x9e\xad\x5a\xeb\xd0\x91\xe3\x63\x25\xbe\x36\x4e\x93\x62\x14\xaf\x6d\x53\xe2\x30\x40\xb6\x60\xcb\xda\xb9\xae\x04\x9e\x19\xf5\x8d\xf8\x7a\x67\x4f\xef\xc9\x17\x94\xe4\xcd\x56\x45\x44\x19\xaf\xe5\x85\xcd\xd6\x30\x56\x6a\xee\xfc\x92\x5b\x6f\x6e\xd2\x7c\xae\xbb\x12\x85\x42\x63\x54\x4a\xe1\xbb\x9d\x52\xf8\x53\xca\x53\xd3\xc6\x7d\x43\x7c\x1c\xe7\x09\x30\xbf\x57\x8e\x5b\x99\x69\x76\x6c\xa2\x84\xc7\x6e\xdb\x88\xfc\x84\x0a\xb9\xaa\xd4\x03\xb2\xed\x9a\xa1\xc6\x8c\x06\x3e\xd1\x68\xdd\x32\x8b\x6c\x7f\xab\x5f\x8d\x4f\xe2\x4e\x11\xbe\xde\x0c\x14\xa5\x1e\x6e\xfb\x22\x02\xa2\xc2\xe7\x93\xad\x92\x11\xa1\xcd\xec\x38\x4d\xd6\x3a\x4a\x04\xfd\xad\xa9\x5f\x85\xdf\x0a\x36\x03\xe4\x64\x3d\x1c\x64\xb6\x6f\xb3\x88\x5d\x80\x58\xa0\x6e\xaa\x3a\x7b\x7f\xd6\xc0\x89\x2d\x2e\x76\x13\x43\xe0\x2f\x27\x16\xc9\xc8\x14\x54\x53\xb6\xf5\x3c\xca\xe5\x7c\x4d\xd2\x6b\xfa\x5c\xbd\x14\xf5\xcb\x55\x14\xfd\x3c\x7d\x94\x09\x69\xc0\x5b\xa1\xfe\x79\x9b\x26\x0e\x86\xee\x61\x0e\xf0\x44\x08\x5d\xd1\x38\x58\xd0\x1a\x51\x2e\xa6\x11\x9e\xdb\x7d\x9a\x1f\xa8\x10\x72\x28\x8c\x25\xfe\xd6\xd4\x73\x49\x8f\x60\x65\x75\xa2\x2e\x8e\xff\x78\x68\x4a\xeb\xaf\x43\x2d\x54\x89\x2c\x8a\xed\xc7\xa8\xf1\x8e\x97\xf6\x87\x98\x6b\x40\x90\x1e\xd3\x66\xde\x8f\x52\x45\x4c\x0a\xd4\x94\xff\x89\x64\x10\xbd\x67\x74\xc8\xee\xb5\xc2\xfb\x4d\x1e\x02\x06\x82\x5d\x95\x1f\x41\xe0\x71\x32\x87\x15\x7f\x20\x23\x3b\xa4\xad\xd5\xbd\xea\xbb\xc0\x64\xb8\xaf\xb8\x88\xf7\x55\x4a\x76\x02\x2f\x0c\x15\xa7\x77\x74\x4a\x9f\x14\xa3\xcc\x1c\xa0\x29\x83\x7a\x08\x7b\x7d\xf1\x49\x23\xde\x9f\xdf\xdb\x4d\x07\x03\x4a\x66\xda\xf6\x61\x2d\xdf\x47\x4c\x4e\xef\x6e\xf0\xb1\x72\x37\xf8\xb8\x86\xd6\x19\x09\xef\x1a\x37\x74\x52\x21\xe1\x4f\x06\x4a\x70\xad\x8c\xd8\xae\x18\x08\x00\xc8\x1f\xb9\x25\xc1\x87\x59\xdb\x7a\x54\xc6\xe3\xbf\x42\xe8\x88\xf1\xf2\x60\xfa\xb8\x82\xcc\x26\x5b\x3d\xb0\x08\x6b\xca\xc6\x21\x14\x21\x36\x0e\xe1\x53\xda\x6d\x0a\xdf\x7d\x4b\x79\xd3\x4e\x4c\x66\xe2\xb5\x6a\x2f\xae\x1e\x07\x5e\xf7\x51\x7a\xea\x7c\xac\xed\xcb\xcd\x7e\x9b\x6d\xf7\xdd\x0e\x86\xf5\xa2\x84\x7a\xbf\x5e\x38\xd4\xea\x36\x87\x75\xb5\xf6\x88\x7a\x32\x33\x3d\x1a\xc9\xf8\xb6\xd3\x0d\xb3\xc1\xf9\xbd\xdd\xac\xda\xd7\x0a\x6b\x33\x89\x72\x51\x63\x3c\xa5\xfa\x97\xa7\x54\x0d\x60\x6c\xb2\xfd\xdb\xf0\xd3\xa2\x8c\xda\x71\x16\x98\x2c\x07\x8a\x0e\x26\x63\x0d\xb0\x61\x81\xe7\x82\x02\x10\xdb\xc1\x30\x17\x56\x45\xd0\xb1\x19\x2f\xdb\xac\xf0\x9e\x24\x3f\xc3\x05\x7d\xa1\x0f\xb6\x10\x11\x88\xda\x41\x6d\x2b\x7a\x52\xa8\xfe\x02\xec\xc2\xc7\xda\x26\x78\x92\x45\xc9\x7e\x72\x49\xaf\x9e\x0a\x4a\x95\x20\x88\x62\xe2\x9f\x50\x82\x38\xff\x93\xeb\xda\xbe\x61\x9c\x36\x73\x8d\x47\x2a\xb8\x44\xef\x06\xb3\x62\x93\xd2\xe6\xfc\x7c\x1c\x86\xb1\x5a\x89\xb0\x3b\xff\x2b\x5a\x64\x58\x4f\x1a\x53\x1e\x0b\xea\x7d\x6c\x92\x18\x65\x8c\xbb\x11\x51\x0c\x0f\x2f\x18\x95\xc3\x14\x11\x9b\xf2\xca\x95\xa5\x1d\xb2\x6d\x42\x08\x56\x8c\x8f\x2b\xea\x1b\xfa\x11\x8d\x43\x61\xad\x5e\x54\x0e\xe0\x17\x95\x97\x6a\x3e\x89\x6c\xbc\x92\x0e\xad\xf8\xa0\xbb\xdf\xf3\x09\x4d\x5b\x23\x79\x77\x37\x37\x85\x8d\xe3\x88\xd3\x04\xac\x0f\x18\x22\x7c\x1c\x78\xce\xcc\x2a\x29\xc4\x2e\x2c\x08\x4b\x24\xf0\xc5\xfc\x36\xd2\xc9\xee\x2a\x3e\x19\x0c\x58\x42\xec\x15\x37\xb2\xe8\xc9\xf1\x89\x8a\x51\x96\xcb\x38\x26\x75\xf7\x45\x2f\x2d\xa0\xd5\x04\x5a\x14\x3e\x56\x4d\x96\x99\x04\x52\x29\xae\xd3\xee\x26\xe3\x79\x05\xbb\x8a\xcd\xea\x53\xd5\x74\x46\x64\x77\x38\x50\x0b\xe7\x86\x66\x26\x9f\x54\x60\xd4\x6d\x5c\xd1\x47\x38\xb5\x75\xbd\xb3\x6b\x17\x97\x20\xb7\x13\x1c\x03\xc1\xc4\x06\x66\x07\xf2\xec\xbb\xd8\xfe\x51\xec\xdc\xda\xf3\x06\xd1\x3f\x0e\x7c\x61\xf3\x32\x46\x01\x5a\x2b\xac\x75\x89\x81\xb4\x85\x10\x58\x88\xaf\x08\x9b\xfb\x82\xac\x17\x35\xf1\xe1\xb1\x05\xfe\x06\xb9\xd6\x25\xcd\xf2\x7e\x5f\x1b\xe3\x6d\x59\xf7\x56\x7d\x3b\x7a\xd5\xed\x23\xf5\xbb\xa6\xa8\x32\xe8\xec\x23\x0c\xbc\x43\x28\x0e\x2c\xb0\xd7\x03\x45\x6b\x58\xa7\x69\x80\xd5\xe0\xa6\xb2\xf9\x7b\xa6\xd7\x02\x33\xed\xdb\x9c\xea\xf2\xae\xae\x7e\x56\x17\x6c\xcf\xb6\x35\x10\xc3\x74\x3c\x31\x8e\xd6\x2a\x43\x5d\x39\x52\x69\x7d\x96\x7e\x99\xec\x8f\x18\xa4\x8d\xf5\x9f\xf3\x6c\x3e\x69\xf1\xf9\x9b\xef\x86\xa3\xc8\x0e\x66\xd4\xb3\x39\xa4\xbb\x6b\x81\x87\x3d\x9c\xd4\x18\xec\xc4\x3e\x4a\x3c\x08\x36\xb7\x92\xd5\xb5\xfa\x6b\x34\x24\x8e\x68\x25\x10\xf6\x44\xc3\x73\xdd\x46\x2f\x1f\xff\x41\xaa\x18\xec\x7a\x4a\x8a\x10\x7b\x9f\xe9\xe9\x9d\x32\x59\xe3\x36\xa1\x80\xc8\xb4\x6d\xfe\x55\xb7\xac\x15\xcb\x69\xd2\xc7\x3d\x48\x75\xaf\xe3\xe8\xf8\x33\xb4\x9a\x60\xd5\xba\xa5\x64\xfc\x32\x5b\x65\x7c\x36\x41\xfd\xc0\xf9\x92\x6d\x56\x24\x17\xaf\x2f\xb5\xa4\x14\x59\x39\x1c\x82\x1e\x3b\xbf\x57\x78\x51\x0a\xc6\x7a\xa6\x25\xea\xd9\x2d\x1c\x43\xc9\xbc\x18\xb9\x86\x10\x59\x60\x6c\xca\xd7\xc7\xc6\x36\x14\xb0\x34\x4a\x2b\xef\x52\x60\x86\xa9\x09\xd4\x1f\x3a\x0f\x57\x03\x5f\x27\x0d\xd3\xa4\xc8\x4c\x5e\xcc\x28\xc5\x8d\x6f\x4f\x15\xe6\x0a\xbf\x87\x48\xef\x4f\x5a\xca\x95\xaf\x38\xea\xaf\xf2\xce\x3f\xaa\xb4\xd9\x8f\xaa\x61\xf0\x8b\xe9\xa0\xe3\x57\x95\x1f\xaa\xb2\xeb\x0f\x9d\xf9\xd3\x68\x6d\x92\x0e\xe3\xb5\xd0\x8e\x45\xa3\x0f\x80\x36\xdc\x01\xe6\x3d\x34\x3b\xdd\xbf\x3b\x21\xdb\x2b\xea\xb7\x5e\x78\x71\x37\xde\x30\xf6\xe4\xfb\x41\xcd\xdf\xc1\xc3\x37\xce\xa9\xaa\x31\x2d\x82\x43\xde\x27\xda\xc2\x37\xa9\x45\xaf\x8e\xa2\x2c\x5e\x8d\x12\xf4\x0e\x24\x14\xab\xe6\xbc\x84\x68\x9b\xd7\xd8\x17\x17\xbb\xe5\x24\x0f\x4d\xac\xf5\xd3\xef\x2b\xbd\x99\xfb\xd3\xbf\xdd\xfc\x48\x35\xe6\xb2\xfe\x7e\x6b\x27\xee\x09\x0b\x94\xbc\xe3\xa4\x0a\x6e\xb7\xca\x9e\x0f\xd3\xb8\xbf\x6c\xb3\x21\xdd\x8b\x02\x1b\x3b\xe4\x71\x2b\xd0\x5b\xf1\xdb\x91\xbd\x1c\x09\x54\x63\xf8\x48\x9b\xdc\xe8\x67\xba\xb1\x5d\xb1\x99\x19\x4a\xe9\x1f\x7d\x11\x28\xbe\x61\x05\x46\xc4\x8a\x9a\xf7\x0d\xad\x9c\x6c\xc5\xb7\x5a\xde\x05\xe5\x15\x4a\xa4\xdd\xef\x26\xf4\xfa\xd0\x2d\xde\x4a\x24\x0c\x24\x51\xac\x93\x8a\x09\xf1\x28\x2d\xd3\x38\x7e\xbc\xa7\x6c\x57\xb7\xf7\x3c\x23\x72\xf0\xff\x23\xb8\x9d\x24\x64\x9e\x0d\xbf\x85\x16\x70\x84\x36\x6f\x2a\xb6\xca\x8e\x75\x15\xb5\x7d\xab\x91\x80\xef\xda\xd5\x8d\xad\xc9\xa1\x4f\x28\x4e\x28\x74\xe9\x20\x2f\xde\x54\x90\xe1\xf3\x6d\x88\xb1\x15\x13\x9a\x24\x04\x09\xb5\xad\x38\xbd\x79\x5c\x78\x77\x7e\xaa\xc1\xe1\x83\xc8\xe1\xd9\xc9\x8e\x4f\x1a\x4c\xae\xa5\xb9\x6e\xf5\x53\x56\x8a\x76\x78\x23\xe7\xb0\x41\x61\xc2\x7f\x65\xaa\xc4\x6a\x4e\xab\x77\x35\x31\xf1\xa3\xf4\xe5\xd8\xb8\xdf\xa1\x0a\x0b\x06\x20\xa8\xb9\xb8\xdc\x47\xd6\x29\xb7\x90\x65\x75\x66\xcf\x3f\xfa\xa2\x96\xba\x90\x80\x44\x2f\xb8\x9f\x46\x77\x0a\x29\xef\x95\x36\xdf\xe0\xd5\x6a\x5a\x3a\x7d\x01\x89\x4f\x14\x4e\xea\xbc\xf6\x1b\xa5\x5d\xd3\x0a\x9d\x50\x44\xfe\x69\x34\xc8\xc8\x6a\x23\x98\x85\x59\xba\x6a\x39\xe8\x73\x96\x44\xd5\x0d\xf3\x49\x23\xd5\xfb\xe2\x3c\x35\x36\xbd\x2c\xe5\x31\xdc\x21\xb3\x0a\x83\x1a\xb2\xf7\x19\x55\xa3\x1c\x54\x4b\x35\x6b\x05\x60\x82\xbc\xad\x79\x8b\xdf\xd6\xe8\xf8\xb7\x15\xb9\xe3\xaf\xa7\x2a\xbb\xfe\x9f\x5d\xd5\xd0\x26\x45\x94\x59\x38\x37\x2d\xd6\xec\x8e\x64\x34\x29\x75\xaa\x91\xc9\xc6\x26\xa4\x7a\xea\xc2\xc2\x92\x63\x83\x75\x94\xfb\xd8\xc3\x6a\x23\x36\x8e\xde\x30\xcb\xb6\x18\x29\x61\xb4\xd3\xba\xd4\x74\x5a\x15\xd4\x26\xb1\x49\x8a\x9c\x88\x57\x3c\x60\x10\xf4\xcb\x4a\xe4\xc9\x7b\x87\x75\x49\x0e\x13\x47\x84\xf7\x54\xd2\x7b\x31\x50\x3a\x1b\x97\x69\xf0\xe1\xe3\xef\x4f\xb5\xf5\xa0\x8a\x28\x3a\x3d\x65\x72\x9b\xd9\x95\x28\x2d\x79\x48\xb8\x49\xe6\x27\x9c\xb6\xcb\x8e\x86\x23\x64\x62\xb5\xba\xa4\x6c\x07\xb2\x05\x84\x51\x16\x42\x97\x94\xbe\x93\x9d\x9b\x95\xe6\xda\x6d\xa5\xd3\xfc\x8d\x06\x80\x67\xc5\xce\x7a\x09\x1d\x5e\xea\x44\x85\xc8\xe1\x88\x16\x9e\xee\xf9\x5a\xed\x96\x75\x7f\x3f\xfd\xb5\xbc\x48\x27\x11\x10\x60\x68\x17\x01\xa5\xca\xc7\x8d\x01\x5e\x85\x86\xa3\x28\x33\xa1\xd2\x98\x62\xa6\xbe\x58\xc6\x4a\x76\x92\x66\x43\x23\x4d\x56\x57\x41\x59\xf2\x84\x95\xcd\x8b\x8a\x0c\x8f\xea\xe9\xee\x5e\x12\x75\x9d\x73\x81\x92\xda\x39\x57\x2b\x67\x58\x33\x86\xe3\x22\xda\x04\x57\x94\x0b\xf3\xe3\x04\x1b\x47\x69\x0f\x2e\x5d\xc8\x18\x1f\xe9\x29\x75\xf5\xcb\x08\xd3\x99\x06\x3a\xd5\x96\xe9\x74\xd1\x0e\x37\xe7\x1a\xbc\x57\xe8\x06\xf0\x5a\xee\x2b\x74\xe0\xb0\x8c\xfa\x55\xf0\x62\xf3\xd9\xc6\x4b\x44\xbd\xf5\xa4\x82\x4b\xdc\xd0\x16\x37\xc7\x55\x72\x5d\x6d\x7f\x6b\xcb\x69\x7f\x6d\xd6\x8b\x67\x5c\xa0\xca\x2a\xe0\x3e\x57\x6a\x2c\xcc\xea\x7a\xf9\xdf\x5b\x85\x5b\x33\x9b\xa7\x59\xc1\x7a\x77\x62\x07\xad\xcb\x7d\xf7\x94\x5b\x98\x29\x0a\x3b\x9e\x14\xb3\xbe\xd2\xf3\x60\xea\xe3\x8b\x07\x94\xf6\xe1\x19\x60\x7c\xa0\x25\x70\x4d\xe1\x2c\xc2\x38\xcd\xed\x4e\x25\x4f\xf2\x1d\xba\x65\xe6\x49\x29\xcd\xef\x6b\xb0\x4c\x70\x06\xa8\x2f\x2e\x3a\x0a\x92\xa2\x17\x80\xb7\xe1\x80\x60\xbe\xb5\xc9\x86\x54\xae\xa6\x5d\x0d\x15\x31\x50\xad\xae\x92\xbf\xab\x11\xcb\xec\x9b\xeb\x9a\xc9\x24\x25\x9c\x42\x47\x21\xe9\xea\xe6\x4f\x6d\x62\x8f\x45\x9a\x58\x68\x62\xe3\xb9\x31\x88\x82\x15\xea\xe9\xce\x18\x82\xd2\xa8\xe9\xce\xef\xed\x0e\xa3\x7e\x1f\xf0\x20\x17\xd3\x3a\xb6\xe7\xd1\xcd\x95\xdb\x17\x17\xbb\xf3\x7b\x77\x7a\x78\xe0\x31\x55\x6b\xe5\x95\x4b\xd4\x18\xe8\x91\xb0\xd3\x94\x72\xa7\x80\x8e\x9b\xb3\xc4\x7f\xd9\xe1\x40\x0e\x6a\x0d\xcf\x6f\xf2\x40\x10\x4f\x04\xd5\xc4\x0d\x94\x6f\x9f\xf6\x7f\x36\x21\xe9\xdc\xc1\x64\x47\x4c\x8f\x3c\x0b\xea\x5d\x85\x63\xfd\x33\xfa\x3e\x51\x6d\xa3\x9f\x75\x58\x25\x4f\x81\x7d\xb3\x69\xde\xf0\xd2\x9e\x6e\x5e\x98\xa4\x3f\xeb\x3d\xf6\xce\x4e\x95\x02\xe4\x2d\x2d\x21\x77\x44\x89\x8a\x4c\x55\x7d\x2d\x1c\x84\x35\xb8\xda\x05\xb5\x96\x5f\x50\x6e\x95\x65\x32\xc9\x6c\x95\xe4\xa2\xac\xe8\xec\x90\xbd\xcf\x46\x20\x5d\x4a\x52\xae\x24\x6e\x25\xcc\x8d\x9d\xa0\x8c\xd7\x39\x03\xbb\x0c\x2b\xef\x99\x46\x78\x2b\x6b\x5b\x68\x32\x61\x82\x63\x45\xfb\x03\x2d\x0a\xfc\x07\x8d\xfc\xed\xc5\xc5\x6e\x3a\x18\xe4\xb6\xf0\x92\xc9\xce\x6d\xc5\xf1\x6e\x8f\xb4\x2a\x4c\x15\xe9\xd8\x70\xed\xc6\xd1\x07\x14\x84\xbb\xb5\xf4\x14\xa7\x69\x95\xff\x99\xc1\x0c\x4d\x51\x20\xbd\x20\x99\x84\xd1\x7e\xbb\x4e\xce\xf3\xdb\x74\x38\x4a\x27\x13\xb8\x7b\x8b\x53\x7f\xf5\x50\xc5\xc1\x5f\x89\x68\x18\x92\x11\x9b\xa5\x91\x89\x80\xee\x23\x5a\x03\xf8\x18\xcf\x14\x53\xfd\x3c\xa7\xdd\x7c\x56\xb3\x4a\x59\x85\x63\x1d\xf6\xf1\xab\xf8\x14\x2a\x77\xef\xe1\x3e\x31\x30\x90\xf4\xbb\x15\x6d\xc9\xdb\x80\xaa\x5e\xe0\xa7\x81\xa7\x43\xac\x7a\x5e\xc7\xdc\x8f\xaf\xfb\x56\xfd\x4f\x54\x99\xf6\xa0\xea\x03\x8f\x4d\x99\x59\xcb\xe5\x0f\xd7\x9e\x59\x74\x3e\x2e\xde\xef\x2c\x1c\x71\x91\x98\x5e\xa4\xd3\xef\x70\xbc\xeb\xb7\xda\x24\x7a\xfa\xd5\x18\x45\x41\x8d\xa3\xb7\x5a\x24\xe7\x4c\xd7\x54\x52\x88\xe1\x8b\x95\x80\x8f\x1b\x48\xd0\xbd\x2f\x75\x0b\x9b\x17\x34\x9c\x31\x39\xef\x07\x4a\xb5\xf0\x9c\xb2\x02\xf7\x2e\x86\x58\x3e\x45\xa5\x03\x1b\x3e\x3f\x7b\xac\x44\x67\x74\xb1\xeb\x91\x9e\x04\x2b\x93\x2c\x1d\x44\xf0\x7f\x57\xeb\xe8\x05\xe5\x92\x74\xa1\x51\x23\xda\xb5\xab\x3b\x5e\xcb\x6d\x3c\x40\x34\xa0\x7d\x78\xf8\xd8\x21\x01\xf2\x72\x79\xcc\x70\x7f\xa9\x7d\x56\xb7\x25\x35\xd1\x87\xf1\xe6\x8b\x74\x62\xde\x50\x02\x95\x3f\xc2\xc5\x8b\xb8\xd1\x0e\x0f\x8b\x40\x15\x8c\xe9\x6d\x81\xca\x5e\x9a\x5c\xb7\x85\x85\xee\x20\x8a\xc7\xb9\x02\x87\x20\x98\x14\xaa\x1b\x3d\x00\x9c\xdc\x6f\x30\x01\x5f\x5e\x9a\x23\x18\x5b\x14\x47\x26\x61\x34\x85\x74\x48\xf1\xd0\x6b\x82\xcc\x58\x86\xef\xb6\xe8\x47\xbf\xd0\x0d\xd3\xd0\x28\x9c\xfe\xb9\xc0\x63\xf3\xce\x79\x0f\x73\x72\xa5\xcc\xf5\xee\x86\x85\xac\xee\xaa\x8e\xe0\xf6\xeb\xed\xb0\x01\x5b\xd8\x2c\x31\x8a\x11\x74\x9c\x8a\x96\x62\x1f\xe9\x58\x74\x69\x3e\x89\xc8\x89\xbb\xc6\xf6\xc5\x8d\x08\xe8\xcb\xaf\x13\xaf\x97\x26\x8e\x8a\xb5\x47\x55\x50\x8e\x26\x24\xe6\xf5\x1f\xd2\xf8\x74\x19\x41\x95\x82\x08\x4e\x96\xa6\x2f\xa6\xc7\x23\x3d\xaf\xe2\xfb\xf1\xd4\xab\xf8\xc2\x01\x1d\x7b\xbe\xae\xf5\xfc\xe7\x9f\xff\xa5\x9a\xd9\x5c\x67\xd7\xbc\xf3\x9a\xf3\xec\xce\xe5\xa8\xd8\xea\x3b\xf5\x9f\x04\x76\x00\xe9\xe8\x9f\xd2\xc3\xa3\x1a\xe3\x6f\x3e\x03\x48\x11\x62\xcd\x2d\x30\x2d\x41\x41\xb4\x89\xcb\x86\x24\x60\x32\xa3\xdf\xf1\x31\x55\x9a\xd9\x8e\x7c\x1c\x19\x5b\xc7\x91\xc6\x87\x51\x92\xdb\x2a\x9b\x75\x4c\xcc\x47\xa8\xf6\xc0\xc7\x3d\xa5\x22\x48\x66\xda\x0c\x47\xd3\xd2\x35\xd2\x68\x6e\x0a\x1b\xf6\x6d\x6c\xd6\x24\x56\xc2\x2f\xc3\x6f\x9c\x8f\xdb\xa0\x7c\x79\x61\xe2\x28\x21\x8d\x78\x17\x91\x9c\xd2\xad\x9e\x53\x8d\xb1\xfa\xea\xab\x04\x08\xc6\xa6\x88\xc5\xe7\x06\xa6\x18\x9f\x68\xf5\x1d\x5b\x94\x13\xc5\xff\x3e\x5b\xd3\x8e\xf1\xa9\x71\x18\x9b\x2c\x4a\xb8\xfe\x84\x15\xf0\x1d\x82\xca\xf3\x71\xcb\xdd\xd6\xa4\x70\x38\x62\x0a\x7c\x36\x7b\xb0\xa1\xbe\x31\xbf\x97\x45\x30\x1c\xe0\x03\x7f\x79\x47\x29\xd0\xdc\x51\x1d\xe0\x34\x2c\xd2\x65\x9b\x3d\xee\xe1\x20\x5c\x4b\xe0\x12\x07\xa5\x16\xa8\x9d\x40\xdb\xc5\x79\x40\x56\xcf\xdf\xd5\x41\x3c\x96\xf7\x82\x6e\x8b\x21\x6e\xe1\xca\x18\x14\x9c\xf8\xaf\x74\xd1\x7e\x3b\xa5\x42\xa2\x83\xa6\x78\xc1\x77\xdb\x34\x13\x1c\x66\xa3\xfa\x02\xd1\xa5\x52\x72\x5d\xf7\xdc\xc6\x56\x8c\x32\x6b\x0a\x9b\xcc\x54\xd7\xed\x1c\x6d\xf7\x09\x91\x0a\x71\xa2\x84\x80\xca\xe7\x88\x97\x0d\xa5\x0f\xb9\xdb\x89\x05\x6f\xae\x56\x2d\xcd\x91\x05\x6a\x98\x26\xfd\xd2\xe1\x54\xd8\xff\x39\xf0\x79\x51\x03\x0c\x31\xbf\xb7\xbb\x6b\xd7\x27\x15\x8e\xe4\x1b\x88\x8a\xf1\x14\x6e\x73\x88\xc1\xee\x90\xf4\x45\x78\x70\x2c\xae\x84\x88\xee\x3f\xe0\xc1\x23\x76\x3a\x4a\xeb\x02\x26\xce\x55\x8a\x5d\x30\xad\x0f\xd3\xba\x87\xbd\xef\x37\x48\xd0\xfa\x86\x76\x06\x3e\xa3\xf7\xd7\xdf\x0a\x94\x40\xd8\x47\x81\x32\x41\xbc\x89\xd5\x4c\x78\x80\xf4\x8e\xd1\x30\x3a\x47\xc9\x00\xd3\x9c\x15\x0a\x85\x21\x15\xc2\x65\xa4\x11\x8c\x28\xe7\x47\x53\x8d\x1f\xa0\x7d\x54\x82\x1c\x15\x91\x8d\xa8\x56\xbd\xb5\xba\x11\x51\x9e\xe8\x38\x21\xde\x93\x53\x25\xd5\xf3\x03\x1a\x65\x40\xa5\x01\x8e\xc2\xc7\xeb\xb2\xca\x0f\x4c\x52\x98\x3c\x7a\x03\x55\x4c\x2c\xc9\x27\x71\x13\xc8\x49\x38\x84\x17\xc7\x08\x95\x81\xf6\x57\xa2\xbc\x8a\xc5\x1d\x54\xfa\x27\x40\xad\xf0\x49\xeb\xe6\x53\xa5\x24\x61\x14\xeb\x8d\xf2\x4e\xd0\xf9\xe2\xbc\x37\x7b\x57\x3d\x2f\xbf\x3e\x2c\x5b\x12\x39\xb6\x33\xbe\xea\x7e\x55\x55\x57\x41\x3a\x97\xfc\xbb\xb9\xb9\x6a\x3a\x31\x5e\xf7\x39\x65\x54\x7b\xce\xc1\xf5\xec\x81\x28\xb6\x5b\x95\x2f\x3c\x00\x99\x08\xab\xd9\xff\x19\x21\xfc\xd7\x94\x6e\xc3\x9f\xd2\xf0\x12\x6e\x54\x0b\xbd\x93\xfc\x73\x50\xf6\xc1\x76\x36\x0b\xde\x90\xa8\xa1\xfb\xaa\x1a\xe7\x5b\x48\x89\x2f\x4d\x9f\x53\xc4\x85\x6a\xc9\xcd\xa3\x82\xed\x6d\x25\x50\xa1\xef\x61\xa9\x4b\xc5\x66\xbf\x8a\xd1\xca\x32\x3f\x35\x11\xb5\x2c\x9d\x60\x8f\x96\x5f\xec\x2c\xcd\x6d\x60\x9d\x01\xc7\x62\x66\x5d\xe1\xf8\xef\x06\xde\xfa\xf3\xc3\xc0\x37\xae\x8f\x62\xc9\x62\xd0\x9d\x16\x39\xed\xac\x2b\x80\x7f\x6a\xb2\x7e\xbe\xad\xb3\x6b\x17\xef\xdd\x27\x50\xe7\x97\x9e\x1e\xfd\x10\xae\xfe\x3a\xfd\x10\x62\x85\xad\x3d\x8f\xc1\xbe\x4e\x73\x08\xfd\xa9\x4b\x53\x91\xaf\xee\xa3\xfa\x2a\x40\x7c\x0f\xac\xff\x23\x3c\x40\xdc\xc9\x4f\xbc\x7a\x74\x9a\x0d\x47\xe5\xb8\xe3\x35\x66\x7f\xa8\xca\x00\x3f\x6c\x0c\x99\x5d\xbb\xba\xf9\x28\xb5\x50\x77\x91\x6c\xa6\x96\xe8\x38\x84\xa7\xe9\x9b\x6c\x46\xfd\xd7\x71\x45\xf5\x44\x2b\x04\xdd\xcc\x9b\xd3\xbf\xf3\x90\xb0\x36\xb1\xd9\x4a\x5a\xe6\x89\xcd\xf3\x99\xea\x51\x39\x02\xaa\xeb\x36\xf2\xd2\x86\x74\xe9\x50\x8b\x8a\xe2\x62\x77\x9c\x66\xa4\xbc\xb3\x7b\xe3\x12\xd6\x23\x2c\x00\x08\xa8\xb0\x33\xb1\x73\x11\x7a\x1b\x6f\xd6\x00\x2e\x51\x4c\x01\x12\x3e\xb3\xb3\xa7\xbf\x07\x57\x83\x5e\x06\xff\x3f\x42\x23\xb1\x4a\x52\xa4\x7d\xd3\x8f\xd7\xb6\x2a\xb7\x5d\x5e\xab\x55\x5b\x47\x66\xec\x03\x25\xc7\xf6\x08\x88\x34\x28\x32\xfc\x41\x0b\xcc\x6e\x4f\xd7\x0e\x87\x5c\xc2\x15\x8d\x66\x45\xae\xbd\x50\x93\xc9\x9f\xd8\x18\x88\x61\x26\x61\x62\x11\x17\x46\xe6\xd3\x4a\x4a\xc9\xae\x0d\x50\x18\x9e\x77\x1d\x45\x9a\x5b\x7c\xe2\xea\xa2\xe1\xc8\x3a\x98\x2d\xf2\x7e\x66\x2d\xf2\x49\x6b\xb7\x9c\x78\x28\x34\x7c\x9c\x37\x51\x75\xf9\x52\xa8\x78\xca\x25\x5a\x36\xcf\xcb\xcc\x6e\xab\x76\x22\xf1\xd5\xe9\xec\x9a\xdf\xb8\xa4\x8a\x71\x8c\x94\x41\xa5\xfc\xc1\x54\x19\xae\x79\x59\x8a\xf1\x33\xbd\x67\x15\x18\xdd\x0c\xc9\xa7\x4e\xe5\xf7\xe8\x3b\x0b\x05\xd9\xbf\xfc\xd5\xcf\xbf\xf6\x79\x7a\x08\x1b\x77\x00\x99\xbe\xd3\x8a\x54\xb7\x79\xb1\xdd\x97\x65\x7e\x82\x69\x86\xd1\x79\xa3\x56\xa4\xfc\xbe\x6f\xd7\x9e\x7b\x0e\x50\x2c\xfc\xd9\x2d\xbc\x7f\xd4\xc6\x18\x4c\x27\xe0\x03\x2f\x87\x10\x25\xaf\x95\xd9\x1a\x54\xa2\x75\x36\xc6\x78\xed\xa9\x47\x77\x5c\x9e\x7a\xba\xdc\x23\x3d\x65\x94\x72\x52\x99\x32\x2f\x9b\x6c\x68\x22\x96\x15\xc2\x38\xbc\xad\x38\x8e\xb7\x95\xdb\x49\x3f\xca\x29\x87\x19\x08\x5e\xc8\xb9\x8c\xb9\x7d\x96\xc8\x01\xee\x42\xf3\x12\x9c\x06\x85\x57\x63\x9c\x17\x42\xe7\x77\x94\x42\xd3\x4f\xf5\x82\xcc\x81\x20\x66\x16\x42\x62\xf4\x91\x0e\x4d\x7d\x61\x85\xb1\x52\x88\x05\x2e\xf3\x4c\xe2\x2f\x76\xab\xcf\x80\xaa\x61\x0a\x11\x75\x4a\xfb\x8d\x34\xe9\x92\xf3\x7b\xd9\x1a\x89\x0c\x60\x5c\x87\xe1\xa4\xf2\x69\x6a\x02\x6b\xf7\xcd\x75\xc7\x69\x12\x15\x69\xb6\x49\x7f\x5f\xd9\xc6\x9c\x78\xa8\xf2\x43\x6e\xc6\x9d\x6a\x83\x7f\x08\x8c\xcc\x67\x00\xd6\x24\x79\xc7\x0b\xc9\xdc\x0a\x3c\xed\xef\x96\x6b\x79\x11\xe1\x9c\x3c\xcb\x9d\x7e\xf2\x6d\x65\x23\x7d\xdb\x35\xea\x53\x72\xc2\x4c\x33\x4e\x95\x51\xd9\xc1\x2a\xa6\x74\x51\x5e\x71\x36\x68\xae\x2c\x93\xc4\x69\x28\x6a\x75\x78\x8c\x4c\x05\xe0\x13\x2d\xc6\x58\xc6\x96\x2c\x25\xd8\x1a\x38\x50\xa0\xa4\x5b\x1a\x52\xf4\x3f\xd0\x3b\x46\xce\xfc\xac\x02\x28\xb1\x2d\x9b\x54\x16\x7d\x73\x1b\x1e\x18\xc8\x89\xb7\xa9\x89\x9d\xd9\x55\x93\x11\x20\xb6\xda\x28\xb0\x1c\xc3\xc5\x8e\x8f\xdd\x83\x1a\x98\xbc\x58\x36\x71\x3c\xe3\x73\x46\xac\xb9\x0a\xa8\xec\x29\xc5\xc2\x92\x59\x36\x19\x0a\x21\xd2\xb5\xa6\xc7\xc0\xba\x55\x5a\x36\xf8\x66\x23\xdc\x87\xbe\x33\x69\x92\xbc\x5e\xda\x18\xa5\xc5\x36\x8f\xdd\xcd\x89\xcb\xe7\xba\xc3\xac\xb4\x79\x3a\xd6\x8d\x74\x20\x84\xd0\xce\x86\x03\xa2\x88\xf7\x39\x2c\x9d\x1d\x9a\x70\x4d\x8b\x47\x4e\x7d\xa9\x49\x2b\xd4\xd3\x12\xcb\x1e\x8c\x98\x66\xb0\xcd\xe2\xe3\x86\x3f\xd0\xbe\xb9\xdd\xdd\x41\x74\x40\xc6\x3a\x06\x08\x34\xad\xf8\xd8\xb1\xc6\xaa\x05\x23\xe9\x5b\x37\x2f\xb0\x4a\x00\x04\xc3\xc7\x8a\xbf\x65\xc2\xd0\x4e\xe0\x26\xe4\x28\x44\xe8\x0a\xf1\xb1\x72\x71\x61\x8b\x9a\x22\x9d\x74\x14\x64\xf2\xb8\xf6\x9c\x38\xae\xaa\xb9\xab\x36\x1a\x8e\xf2\x19\x05\xf5\xbd\xa0\x55\xe3\xb5\x16\xef\x39\xd5\x06\xeb\xdb\x89\x4d\xfa\x36\x09\xd7\xb8\x90\x81\x8e\x11\xa2\x70\x88\x4e\xdd\x56\x1a\xfd\x27\x55\xb3\xdd\xf4\x5f\x4b\x23\xe1\xd6\x79\x87\x20\x95\x7a\x9e\x69\x40\x6f\x59\x75\x07\x3e\x73\xf2\xcc\x80\x95\xbb\x89\xb9\xc3\x27\x6d\x20\x9a\xe5\x2c\x2a\xa2\x7c\xc4\x17\x2a\x26\xba\x5e\xa4\xe1\xd2\x54\xd1\x26\xef\xaa\x47\x39\xb1\xd9\x38\xca\x41\x57\xdc\x37\xc7\xb7\x02\xb1\x04\x3e\x5e\x7f\x46\xf3\x2a\x8b\xcc\x64\x6b\x34\x14\xf1\x24\x0f\x22\x66\x45\x25\x6e\x96\xe2\x29\x6c\x68\x5b\xd6\x5b\x18\x01\xe3\xb4\x0f\x2b\x43\xc9\x44\xd1\x62\xe7\x63\x6d\x13\x91\xae\x2d\x5b\xd7\x6f\x15\x0f\x08\x5f\x85\x39\xe6\x3a\xc7\x45\x99\x25\x86\x84\xfc\x3a\x1e\xcb\xa5\x53\xf4\xdb\xad\xae\x79\x6a\x0c\x63\xc0\x40\xa7\x93\x8f\x1b\x8f\x78\x69\xae\xbb\x6c\x43\x53\xe6\x48\x54\xd0\xb5\x62\xe5\x13\x71\x52\xae\xee\x1d\x73\x72\x3b\xad\x62\xb4\x83\xbd\xfc\x6c\xcf\xb3\xa3\xf2\x72\x39\x0f\xb3\x68\xd9\xf2\x3a\x82\xe2\xc0\x0d\x2d\xb4\x7c\x48\xf9\xac\x6a\x5b\xfb\xe5\x68\xbf\xcd\x29\xc1\x43\x90\x72\x10\xbf\x0d\x61\xfc\x43\x53\x8f\xda\x3d\xeb\x48\x7d\x2b\x69\x61\xe1\x23\xe4\x22\x5c\xef\x2b\xf8\xa7\x53\x9f\x2c\xde\xd5\xc2\xac\xcc\xf7\xc3\xb0\xb9\x36\xf5\x6f\xfa\x9e\x77\x9c\x0d\x9f\xeb\x69\x7f\x96\x36\xa3\xd6\x30\x4b\xf3\xbc\x6e\x97\xe4\xa5\xf6\x2f\x78\x2d\xbf\x34\xb1\x85\x61\xb0\x0e\x32\xdb\xb7\x35\x9a\xf3\xed\x46\x2f\x98\xe0\x5f\xc4\x3b\xac\xd5\xf2\x0e\x04\xbe\x96\x77\xa0\xc6\x7b\x58\xb6\x71\xbe\x55\x89\xff\x22\x6b\x45\xa2\x76\x52\x93\xab\xbe\x35\xf5\xcc\x51\x40\x6b\x45\x80\xf6\x61\xfd\xaf\xb1\x49\xfa\xcc\x62\x76\x22\x29\x1e\x66\x7d\xae\x55\x28\xdd\x0c\x48\x4b\x86\xfe\x0e\xb1\x34\x88\x90\x7c\xdc\x26\x4d\xd2\x8f\xf2\x09\xdc\x34\xbd\x28\xe6\xd9\x40\xad\xa9\x67\xd5\x3a\xda\xb7\x79\x94\x51\x11\x4f\x61\x30\x99\x42\xc4\x27\x6d\xfa\xfd\xcb\x76\x18\x25\x9e\x0d\x2c\xfc\xfa\x8e\x53\xac\x3f\xe2\xdc\x91\x6c\x42\x44\x55\x31\x44\xea\x2c\xfa\xa0\xcc\xa3\x6b\xbe\x4e\x4b\x37\xb6\xc3\x1d\x3d\x35\x8b\x4f\x29\xad\xc9\xd3\x54\x62\x42\x25\xe5\x0e\x52\x11\x15\xde\x09\xb6\xe2\x63\x15\x00\x67\x66\x52\x65\x0e\x4a\x1c\xe0\xbc\xea\xd4\x9e\x57\xa0\xc5\x7e\x64\x96\x6d\xc1\x3b\x1b\xf6\xbd\xab\x78\x3b\x7c\xa2\xe0\x3f\xc5\xc8\x8e\xe1\x97\x4a\x2e\x32\x40\xca\xdd\x44\x1a\xc3\xea\x82\x08\xcf\x45\x6a\x90\xee\x87\x41\x03\xda\x33\x14\x8a\xae\x0c\x19\xe3\xa8\xd4\xcd\x24\xa7\x4c\xbb\x15\xfa\xac\x08\xef\xb7\x40\x22\x99\x4d\xe1\x03\x1f\xd9\x1c\x57\xaa\x46\x7b\x22\xac\x6e\x22\x5f\x4d\x3f\xc9\x27\x8d\x04\x0b\xc0\x78\x3b\xe1\x30\x0d\x97\xb9\xa1\x19\xee\x1b\x2a\xd3\x8b\x92\x7c\x12\x65\x16\x7f\x2b\xba\x7d\xbe\xbf\x7f\x36\xf8\x94\xc7\xb8\x47\x61\x15\x5f\x72\x36\xae\x54\x57\xbe\xab\x54\x57\xbe\x5b\xab\xa7\x4c\x46\x96\x10\x55\x1b\x6f\x91\x6e\xc3\xc6\x5b\x0e\xd0\x6a\x48\x98\x24\x1d\x43\x2f\x65\xdf\xdc\x06\x15\x9d\x36\x74\xd4\xfb\x7a\x19\x65\xfb\xb1\x34\x20\xf9\x63\x82\x25\x9f\x4c\x3f\xe5\x73\xf4\x28\xcf\xec\x04\xe2\x49\x96\xa5\xb5\xd0\xcf\x93\xdc\x80\xcf\x5a\xe4\x90\xf7\x74\xcb\xdc\x52\xa9\x57\x09\x13\xc9\xd8\x03\x14\x55\xa2\x11\x4f\x7e\x5e\x2e\xa3\x98\xac\xf5\x68\x2b\xc4\x8e\x37\x43\xbb\x26\xc2\xd5\xbf\xd0\x43\xad\xb3\xbe\x49\x5c\x69\x69\xae\xbb\x34\xb7\xf4\x68\xf5\x9b\x28\xf6\x5c\xa6\x71\x83\x82\xdb\x3d\x2a\x9d\x63\x40\xbf\x3f\xd5\xab\x9a\xf2\x27\x61\xd0\x0d\xee\xea\x28\x9a\x44\x4e\xaf\x74\x69\x6e\xe3\x52\xb3\x68\x33\xdf\xcd\xa2\x15\xd6\xa6\x41\xad\xe4\x56\xe0\x09\x22\xb7\x54\xe4\x6e\xca\xe1\xe7\x3b\x1e\x4a\x7c\x8c\x06\xa5\x98\x74\xe9\xb7\x9b\x94\x61\x87\x72\x51\xbc\xfa\x9b\x6a\x18\xdc\x6c\x69\x0a\x75\xb3\x32\x61\x88\x25\x12\x65\x76\x09\x63\x31\x3f\xba\x1a\x10\xcf\xee\xb5\x09\x65\xe7\xd6\x64\x8c\xff\x41\x2a\xfb\x5d\x12\x51\xe2\x63\x50\xb4\x04\x51\x4d\xde\x04\x0e\xe3\xfd\xdf\x88\x4a\xec\x8e\x9e\x17\x24\xfe\xf1\xb4\xf6\x9c\x17\xa5\x4e\xbb\x01\x74\x26\xde\xe9\x53\x3d\x25\xa1\x0f\x60\x89\xa6\x1d\xf2\xa7\x03\x4d\xef\xae\x2b\xee\x79\xae\xf3\x24\xff\x3c\x87\x67\xf8\xbf\x47\x7b\x1e\x4b\x7b\x08\x1f\xc2\xc4\x9f\x75\x0d\xb1\xdc\x44\x49\x11\xaf\xd1\xb6\xef\xe0\xc3\xae\x9d\x79\x56\x01\x84\xae\x69\xbd\x36\x20\xe4\x15\x70\xf6\xa4\x02\xce\x9e\x74\x7b\xaf\x29\xfb\x51\x21\x81\x1f\x3a\x06\x90\xe7\xe7\xe3\x75\x4f\x60\x9e\x94\xcb\x71\x14\x3a\x2f\x21\xd1\x3b\x01\x52\x87\x45\x51\x14\xb8\x5d\x63\xf2\x62\x93\x0c\x4b\x33\xa4\xc2\xf1\x0b\x1c\xc2\xfe\x3f\x10\x71\xd1\x02\xd5\x48\x65\xbf\xaa\x20\x38\x32\x73\x45\x66\xa5\x61\xbd\xbe\xab\x3b\x28\x93\xc4\x3a\xff\x17\xcc\x58\xb6\x64\xe6\x93\x06\x3a\xf5\xd5\x57\xbb\xe3\xbf\x0b\x27\x16\x4c\x3d\x2e\x4a\xb8\x0d\xe9\x65\xdf\x9f\x70\x69\xf5\x78\x92\x55\x19\xf3\x8c\xc7\xa8\xc1\x58\x08\x3b\x1a\xcc\x60\x50\x06\xef\xac\xef\x70\x8b\xf6\x2e\x08\xac\xb2\x8d\xf6\xb4\xa3\x84\x9a\xb6\x7c\xc6\x51\xf6\xfd\xb2\x7e\xbc\xd1\x94\x5b\x58\xa8\x32\x89\x32\x67\x41\xb8\xff\x8f\xf2\x9d\xfb\xe6\xc0\x77\x29\x22\x8e\x02\x5e\xe0\x98\x0f\xd0\x21\x3e\x6e\xf4\x3b\x97\xaa\x8f\x25\x09\xd1\x25\xf0\x40\xd1\x1f\xfa\x78\xea\xc9\x2b\x1f\xab\xdd\x20\x31\x45\x99\x99\x38\x7a\xc3\x14\x22\x76\x82\x92\x14\xab\x5c\xf0\x89\x06\x04\x1e\x08\xe3\xb2\x2f\x84\x0f\xe1\xba\x2b\xde\x7b\xa0\x8d\xe5\x63\x3b\x43\x25\x56\x76\xf4\xd3\x32\xcc\x4a\x67\xe8\x62\x5b\x3d\x6e\x50\xa5\x42\x9d\x4d\x66\x3b\x78\xe0\x1f\x69\x61\xa0\x83\x2d\xb4\xf1\x55\xca\x59\x29\xca\x17\x3f\x03\x5a\x02\xd0\x07\x44\x5f\x05\x8d\xfa\x43\x53\x65\x42\xdd\x54\x17\x99\xdf\xdb\x4d\x27\x16\xfa\x61\x18\x6a\x5b\x7b\x7e\xd8\x6d\x6d\xb8\xbd\xef\x9b\x7b\xa5\x9b\xb3\xb0\xfb\x8c\x42\x08\x5e\x56\x5b\xd0\x0c\xf5\xc3\x41\xb7\xbb\xde\x02\x93\xec\x46\x49\x58\x66\xae\xea\x25\xca\xd2\x8a\x29\xf3\x1d\x8d\x72\x32\xe3\x89\x80\x7f\x51\xbf\x99\xa8\x3e\xdc\x44\x69\x7d\x44\x49\x61\x87\x99\x54\x96\x90\x18\xea\xdc\xf7\x76\x63\x76\xbe\xb8\x48\xa5\x85\x72\x0c\xfa\xc3\x2b\x4e\xb1\xb5\xe3\x2c\x8b\x18\x0a\x2e\xb6\x70\x8a\xb1\x3b\x2a\x69\x51\x02\xa3\x69\xa3\x89\xf6\x99\xdf\xdb\x1d\x97\xe1\xa8\xe3\x0d\xa5\x7e\xa6\xe7\xbb\x2f\x3f\xb3\xde\xb2\x54\xc0\x20\x58\x46\x36\x37\x9a\xd6\x15\x16\x7d\xb6\xe1\xa1\xbb\xb0\xd0\x1d\x9b\x2c\x1f\x8d\x49\x4a\x42\xd1\x09\xd8\xae\x97\x4f\x1e\x5a\xdb\x2b\xd2\xf1\x8c\x52\x9e\xbf\x13\x40\xa8\x0c\xe3\xf6\x24\x89\x2c\xf3\xa0\xbc\xa0\xfa\x97\x79\x41\x64\x1b\xd2\x9e\xc2\xa6\x75\x19\x03\xd0\x29\x09\x2d\x8a\x29\xc1\x65\xb4\x99\x14\x7c\x4d\xb4\x3c\xca\x84\xe8\x2a\x0b\x0b\x4e\x6b\xa6\xa3\x44\x68\x5a\xd2\xb5\x3c\x35\x13\xce\x2f\xc4\xd3\xc4\x2f\x4c\xe7\x95\xa6\x8a\x3d\x30\xa9\x26\x48\x1f\xeb\x0a\xba\x4a\x57\x94\xf2\xcc\x95\x87\xfa\x7a\xbc\x56\xc6\x91\xad\x61\xa1\x35\x58\xf0\x5c\x1b\x58\x90\xf5\x58\x5d\x56\xe2\x24\x7a\xbd\x5c\xaf\x62\xa2\x4d\xcc\x78\x32\x8a\x6d\xc1\xf7\x81\xe7\x7c\x96\x82\x17\x3e\x6e\x7a\xfb\x2e\xed\xfe\x4c\x77\xd5\xf6\xfb\x42\xa2\x60\x2c\x67\xe0\xb1\xd7\x6f\x4e\x77\xc8\x36\x50\x14\x1a\x59\x74\x46\xf7\xc8\xb4\xb3\xdd\xe5\x46\xde\x47\x02\xcc\xe3\x34\x89\x80\x33\x77\x82\x11\xaa\xdc\xea\x67\x65\x6c\x4d\x22\x93\x06\x5f\x78\x5a\x57\xc4\x2f\x52\xce\x84\x87\x7d\xaf\x8d\xeb\xd8\xb7\x65\x91\x87\x23\x54\xb0\x31\xe9\x41\x5a\xe5\x63\x85\xf5\x1b\x98\x28\x2e\xab\xd8\xdf\x0b\xa7\x9d\xa7\xf5\x58\x04\x17\x55\xc9\x2d\x8b\x8a\x28\x24\x05\x99\x2a\x4c\x27\x76\xe3\xc6\x21\x35\x6e\xd3\x71\x12\x2d\x63\x35\x91\xc2\x2e\x8c\x4c\x04\x04\xe2\xfb\xd5\x63\x9b\x85\xb6\x2f\x6c\x4c\x9e\x1d\xa8\x41\xc8\x54\x79\x5a\xe5\x66\xe9\x38\xaf\xf6\x97\xf9\xbd\xbc\x95\x42\x2a\x85\x8f\xdb\x16\xc1\xbc\x28\xc7\xcb\x2e\x2c\x70\x8d\xff\x6a\xae\xf3\x89\x62\x68\x8f\xc9\xb5\x71\x46\xf1\xf6\xef\x4c\x35\xcd\x88\x3e\xc6\x0c\xdd\x9e\x6f\x0c\xe5\x26\x26\x3f\xb9\x17\x1c\xce\xa1\xa3\xfc\xa4\xe9\xdb\xb0\x3f\x1f\x05\x68\x42\xc4\x0a\x95\xb0\xcc\x45\xdd\x27\xbb\x45\x3f\x8a\x9b\x82\x18\xbb\x44\xc5\x4a\x0b\xe6\xeb\xae\x65\xbb\x6a\xf3\xc2\x66\xc9\x56\x15\x0d\x3f\xbe\xae\xf2\x96\x9a\x81\x06\x16\x5d\x14\xd9\xfe\x06\xed\x41\x62\x01\xd1\x86\xb4\x4b\xec\x81\x82\x22\x4e\x31\x19\xae\x26\x90\xee\xc0\x08\x23\xca\xc7\x78\x45\x3a\xb4\xc5\xc8\x66\x54\x17\x40\x3e\xc1\x4a\xa0\x58\x72\x9e\x45\x14\x2d\x86\x44\x74\x69\xb8\x68\xc6\x77\x20\x67\xe0\x77\x84\xf0\xf3\xf1\xf5\x2a\x6c\x07\xc6\xfe\x18\x76\xda\x9a\x3b\x0a\x32\x88\x3b\x4d\xb1\x90\xa5\xb9\xa5\x8e\x87\x9c\x7f\x83\x82\x64\xa1\x9b\x28\x67\xd6\x18\xca\xe2\x1d\xa7\xa7\x73\xbf\xe6\x82\x43\x57\x22\xf8\x42\xc9\x59\x43\x43\x98\xbf\x28\x2f\x78\x26\x63\xf7\xbb\xa9\x64\xda\x6f\xaa\x52\x4c\x9c\x86\x2c\xba\x54\x5d\x03\x76\xd5\x63\xca\x72\xf3\xd8\xd4\x83\x32\x7f\x71\xfb\x8c\x77\xfc\xbe\x80\x84\x0e\x2f\xe0\x47\xf4\xf6\x90\x9b\xb2\xdf\xaf\x48\xc5\x57\x09\x8c\x34\x09\x3d\xde\xec\xad\x40\x49\xdf\xfb\x52\xdb\xc0\x86\xfb\x63\xcb\x45\x39\xe6\xe0\x4d\x7d\xdd\xfe\x66\xad\x29\x90\xf6\xcb\xb0\xd8\xd1\x71\x2a\x2b\x1f\xd3\x65\xe3\x31\x6e\x04\xbe\x41\x70\x4b\x5b\xc1\xdc\xc4\xb8\x17\x99\x02\xba\x07\x25\x24\xf2\x8a\x57\x83\xdc\xb5\x4b\xbe\x17\xec\x09\xfe\x0f\x1a\x6a\x18\x3f\xc7\x14\x53\x78\x25\x4a\x63\xb1\x3d\x70\xb6\xdc\xd0\x57\x41\x30\xfb\x91\xd2\x55\x7e\x1b\x17\x01\x16\xd4\xe9\x36\x59\x1a\xd8\xbf\xd3\x05\x31\x2c\x45\x79\x22\x5f\x74\x2f\x7b\x39\xb3\x66\x7f\x31\xca\xd2\x72\x38\x9a\xf1\x2c\x84\x0e\xa1\x69\x44\x8d\xa2\xfa\x20\xd2\xf3\xc7\x7a\x5e\x0c\xa0\x48\x27\x4f\x76\x9c\xb9\xc3\xd6\x1e\xad\xaf\x2e\x16\x5d\x9a\xe3\x06\xd2\xff\x36\xf5\x72\x2c\x90\x34\x15\x5f\xbf\x8e\x77\xb9\xd7\xf5\x75\xb6\xd3\xd2\x66\xc4\x8e\x4c\xe1\x84\x82\xff\x97\x43\xa8\x0d\x20\x61\xef\xb0\xbe\x12\x12\xb3\x0f\xa6\x4a\xd1\x8b\x21\x73\x40\x8f\xbc\xa7\x44\x0f\xd3\xe5\xc2\x44\xc9\x36\x5f\x53\xfe\x16\x04\x7f\x25\xed\xa4\x42\x1d\x9f\x28\x7d\xfa\xef\x22\xa4\x11\xf1\x1d\xc5\xa8\x72\xcb\x56\x66\xfb\x65\x28\x1e\xa1\xb8\x5a\x16\xa2\x77\x77\xeb\xa5\xa1\xde\x6e\x84\x12\xfb\xe6\xba\xab\xa3\x28\x9f\x28\xd8\x39\x03\x30\x14\xd5\xf2\x66\xdb\xf6\x5b\xad\x96\x51\x0c\x0d\x0a\xc4\x6d\xc8\xa4\xf9\xd8\x65\xdc\x66\x39\xcd\x24\xff\x79\xb0\xde\x59\x58\x70\xa0\x6f\x6b\xb2\xb1\xc9\x9c\x12\xfd\xc6\x31\xda\x01\x8f\xa9\x1d\x90\x75\x6e\x67\x3c\x76\x0a\xeb\xa5\x68\x8a\x79\x95\x8d\x7f\xdb\x88\x68\x5f\x5c\x24\xa2\xc7\xac\x6f\xd2\x69\x51\x83\x3f\x7e\x7a\x5d\x83\x08\xae\x69\xc5\xce\x27\x1b\x3e\x15\x84\xfe\x1c\x45\xcb\x51\x51\xb3\x15\xe3\xf6\x18\x9f\x28\x18\x2a\x69\xcc\x6c\x53\x3c\xf5\xaf\x7b\x2b\x95\x4f\x3f\x0f\x3c\xb0\xd3\x06\x12\x47\xa4\xef\x3d\xb3\xae\xf4\x46\x79\x5f\xc3\xf6\x75\x47\x69\x16\xe7\x65\x36\x30\x61\xf5\x40\x5f\x76\xca\x48\xe7\xa8\x77\x2d\xe5\x63\x25\x36\x66\x62\x93\x31\x5d\xd3\xf9\x5f\xb8\x0e\xd6\x1d\xa5\x32\x37\x4e\x93\x62\x98\xc6\x83\xa8\xca\xc9\x9d\x92\x13\x44\xd9\x95\x67\x8c\x54\x77\xae\x2b\x41\x9d\x24\x15\x35\x00\x9e\x2c\xca\x36\xe6\x1d\xac\xae\x82\xbc\xf4\xe5\x8f\xc2\xc6\x76\x25\x22\xdf\xf2\x8e\x57\x30\x87\x7e\x3a\x1f\xab\xe7\x99\x41\x3d\x77\x7e\x2f\xe7\x23\x58\x31\xf8\xb8\xe7\xd5\x4e\x0a\xe9\x03\x3b\x49\x64\x9f\xd4\xbb\x55\x5b\xe4\x9b\x1f\xf5\xdb\x18\x74\x1e\x30\xaa\x18\x6d\x84\xe8\xe2\x0c\xf2\x01\xa8\xec\xfd\x9d\x5e\xad\xe1\x42\x93\x0c\xa8\xee\x2b\x4a\xfe\x17\xc6\x9d\xf2\xcc\x64\x16\x8c\xcb\x3c\x74\xf1\x13\x42\xb2\x77\xb0\x23\xf2\x89\x92\x4a\xf0\x60\xd9\x7d\x73\x0e\x2c\x4b\x17\xe5\x6c\xfd\x1d\xfb\xe9\x76\xab\xd5\x48\x66\x97\xd3\x52\x72\x0a\x6f\xf4\xaf\x60\x4f\xcd\x6a\xe6\xd2\xdc\x9e\x6e\x9e\x96\x90\xee\x77\x56\x1b\x4b\x73\x8e\xa1\xdd\x54\x42\x5e\xac\x62\xd8\xb1\xe8\xf6\x00\x11\x80\xde\x3b\x1f\xb7\xb1\x43\xb3\x28\x1c\x89\x2a\xa3\xe8\xd5\x78\x80\xcc\x59\x95\x18\x0d\xb3\x88\xfc\xbf\x90\xba\xa3\x1d\x70\x5e\x61\x5c\x6e\x29\x7c\xc1\x51\x15\x0c\x9b\x71\x14\x3a\xcc\x35\x76\x2d\xc6\x39\xf2\x89\x72\x39\xa4\x80\x62\x87\xd7\x5c\xb9\x01\xb2\x37\x56\xf0\xb7\x74\x3a\x7d\x3d\x50\x10\xe1\x6b\x53\x2f\x6d\xf7\xa1\x92\xb6\xfb\x50\x13\xb9\x4f\xa9\x9c\xe7\x1a\x20\xb8\xfc\x1f\xaa\xcc\xf8\x53\x85\x8b\x1b\xc4\x66\x55\x6b\x26\xaa\x51\xf5\x41\x8b\xf4\xc2\x9e\x6e\x62\xb2\x2c\x5d\xb5\xac\x79\x8d\xae\x29\x6b\x42\x21\x32\xbc\x32\xd5\x0a\x04\x2d\x6a\xad\xb1\x14\x9a\x98\x78\xa0\x65\x59\xce\x07\x7f\xb3\x1e\x09\xee\xf9\x47\x5f\x94\xdc\x73\x56\x75\xf8\x2f\x21\x14\xe1\x93\xa0\xd6\x92\xef\x28\x17\x8e\x26\xa6\x3e\xa4\x81\x5e\x33\x22\xbd\x80\x67\x2e\x22\x97\xcf\xe8\xd0\xa1\x9f\xae\x4a\xff\x5a\x28\x06\x3e\x5a\x38\x57\xab\xa3\xf7\xcb\x14\x9a\x1e\xd8\x05\xdf\x9e\xfa\x52\xdf\x14\xf7\x28\xc8\x73\x6c\x03\xec\x6b\xa9\xb0\xe7\xab\xb6\x98\xa9\xe2\x21\x17\x1a\xfc\xda\xaf\xf2\xe2\xf7\x1d\x05\x10\xbb\xda\x82\xfe\x7d\xa5\x6b\x56\xeb\x05\xbf\xad\xeb\xbe\xe0\xb7\xb5\x27\x90\xa1\x38\x2d\xa3\x3c\x32\x89\x61\xc2\x0b\x37\xa9\x74\xe1\xba\x49\x18\x5d\x5c\xdc\xdd\x5d\x8d\xe2\x98\x30\x4e\x88\x61\xd8\x55\x97\x4f\xd6\x15\xe4\xd0\x8c\xcd\x50\x62\x03\xa7\xcf\x24\x8d\x21\x9e\x71\xbf\xad\x84\x12\xf3\x49\x66\xd6\x18\xc1\xe4\x78\xee\x8b\xf2\x6a\x60\x9a\x81\xfe\xf8\x7b\xb5\xa7\x9d\xe5\x69\xa7\x91\xba\x0b\xd6\xb5\x19\x72\x2c\x76\x4d\x9e\x9b\x28\x16\x1d\x28\xd4\x5e\xfe\x6a\xea\xeb\x30\x7f\xd5\xd8\xce\x5f\xde\xdd\x2d\xd2\x28\xee\x28\x90\x1a\xc3\xc6\xf9\x24\xf8\xb9\xe6\x5a\x63\x93\x95\x28\x4b\x13\x48\x45\xc6\x6b\x64\xf2\x8e\x0d\xf9\xb2\x4a\x1a\xd0\x70\xc5\x74\x7c\x53\xa9\xc7\xae\x19\x2e\x11\x83\xeb\xfe\x26\x6e\x8b\x4f\x82\x67\xb5\x27\x6f\x94\x2c\x9b\x70\x84\x52\x0c\x12\xb4\x93\xca\xa0\x4e\x03\x04\xc7\x51\x3f\x36\x09\x37\xd4\x04\x9d\xe9\x59\x28\xe7\xd4\x08\x5c\x2e\xb9\xda\xe5\x7c\xb9\x1c\xf4\xeb\x92\xaa\xbf\xfe\x4b\x15\xd7\x0f\x8d\x0d\x47\x11\xcc\x09\x7c\x68\x72\x5a\x61\x73\x4e\x2b\x48\x48\x94\xe4\x51\x5e\x48\x65\xa4\x46\x0f\x60\xa8\x78\xe0\xb1\xc5\x5f\xd6\x54\x5f\x92\x6a\x85\x65\x9a\x98\x4e\x28\x16\xca\x8f\x14\xf1\xf6\x0f\x69\x05\x92\x3a\x59\x53\xd6\x67\xb1\x3b\x88\x12\xff\x44\x1c\x8d\xc8\xcf\xeb\x9a\xf6\x9b\x89\x71\xb9\xe2\x46\x7d\x6e\xaa\x40\x53\xa7\xb1\xc3\x61\x21\xba\x53\xeb\x9a\x46\x71\x7f\xa7\x1e\x3a\x58\x65\x64\x6b\xab\x2e\x91\xcd\x86\xa8\x16\x84\x7c\xeb\x91\x5e\x95\x55\x61\xfd\x3d\x4b\x70\x71\x3e\xc6\xb8\x03\x35\xf4\x8a\xae\x26\x30\xf8\x41\x28\xa0\x9e\x75\xf5\x2e\xdd\x10\xa6\xce\xb9\xe9\xcf\x6e\x86\x5d\x65\x76\x25\x8d\x49\xb0\xdb\x85\x6b\x62\x6f\x4b\xd7\xc9\x27\x35\x67\x4c\x13\xaf\xe5\x11\x17\x87\x5c\x10\x5b\xfd\xb1\x77\x6a\x70\xa3\x22\x8a\xc9\x61\x1a\x93\x47\xbb\x30\x48\x75\xc5\xe3\xac\xc2\x34\x8e\xed\x30\x32\x31\x56\x01\x61\x31\x7a\xa8\xff\x4d\x95\x9f\x1c\x6d\x95\x90\x8b\x92\x7e\x9a\x97\xf6\x0d\x5e\xd6\x44\xeb\x49\xa5\x46\xdf\x56\xc2\x02\x79\x91\x66\xe2\x48\x83\x55\xf8\x10\xad\x4e\x7c\xdc\x58\x3e\xe6\xf7\x6e\x06\x28\xa1\xdc\x03\xd9\x01\x3e\x6e\xc1\x94\xce\x77\xed\x01\x30\x59\xe8\x43\x5c\x26\x56\xf3\xe8\x02\xe4\x9d\xd5\x87\x3e\xdf\x35\xa2\xde\x25\x3e\x16\xd5\x88\x10\x31\x24\xdc\x9e\x84\x3a\x4f\x2b\x80\xcc\x6b\x69\x94\xa0\x2a\x20\xa5\x3a\xfa\x12\xa9\xe1\x35\x43\x2f\x88\x23\x28\xa1\x8e\x93\x53\xaf\x4f\x01\x1c\x15\x62\xe8\xff\x03\xe3\x5d\x98\x1c\x9b\x7b\x71\xbb\x97\x76\x77\x87\x29\x2d\xaa\xe2\xc2\x41\x63\x95\x4f\x1a\x79\xdc\xab\xaf\x76\x97\xd3\x64\x10\xb1\xd9\x32\xd6\xa0\x4e\x4f\x29\x9b\x5d\xaf\xdb\xf9\xf9\x96\x42\x3a\xb1\xc9\xa3\xbe\x13\xf3\x7b\x3a\x17\x3a\x1d\x28\x7a\x33\xd4\x41\x71\xf9\x27\x74\x71\xea\xbb\x35\x55\x48\x25\xa2\x74\x0e\x8b\x09\xe2\x86\x13\x4a\x29\xd4\x24\x6b\xcf\x52\xda\x83\xdf\x44\xf7\x58\x44\x2e\x15\x34\x63\x87\x66\x43\xa2\x0e\x88\x4a\xd7\x8d\xa9\x42\xe7\xbf\x8b\x3c\x19\x65\xef\xcb\xca\xd4\xfb\x1b\x53\x55\xb6\xbf\x4d\x35\x21\x8c\xfd\xdb\x81\x42\xfa\xbf\xab\x0b\x2d\x27\xa7\xaa\x38\x77\x15\x25\x1c\x51\x2a\xf7\x6f\x95\xd5\x45\x50\x82\x3b\x35\xf5\x64\xb8\xa7\xa8\x3e\x89\x3d\xff\xee\xb4\x65\x27\xcb\xa8\x5a\x53\xef\x0d\xb2\xef\x90\xca\xe8\xce\x38\x60\x6d\x31\x32\xc5\x33\xd5\x85\x63\xcd\xb9\x81\x75\x84\x8b\x4a\xf4\xc3\x34\x82\x7e\xfe\x73\xbd\xce\x17\xbe\xe4\x97\x7e\x4f\xf8\x7b\x82\x14\xae\xb0\x59\xee\x5c\xf7\xf5\xb2\x67\xd6\x7d\x6b\xf6\x67\xc0\xdc\x41\x8d\xec\xda\x54\x71\x8c\x3a\xeb\xf4\x9a\xb0\x14\xfd\x5c\xcf\xeb\xdf\x6e\x5d\xef\xbc\xec\x39\x85\x98\x41\x2e\xd2\x10\xd7\xe4\xff\xea\x3f\xe9\x29\xca\xf8\xf6\x75\xd5\xed\x7a\xe0\xf6\xe7\x62\x94\x96\xc3\x11\xf4\x5d\xa4\x8a\x4d\x3f\xea\x8c\x4c\xa5\x0b\xfa\xfb\x5d\x28\xfc\x3b\xa0\xaa\x43\x15\xf2\xfb\xc0\x5d\xde\xa6\x0b\x90\xfa\x2e\x3d\x0a\x3c\xbc\x5b\xca\xfa\x03\x7c\x7f\x68\x1d\x3c\xba\xfe\x9c\x02\x4a\x9b\x3c\x4d\x40\x60\xf7\x86\x8e\x68\x0f\x0b\xcf\xf2\x13\x35\x37\x8d\x22\x2a\x4a\xb2\xc5\xab\x7e\x15\x05\x8a\x99\x75\xaa\x4c\xf1\x49\xaf\xcd\xa5\x3a\x5a\x49\x0b\x46\x9c\x30\xcb\x21\xf0\xb4\x9d\x5b\x2d\xfb\x6b\x37\x4a\x56\xd2\x78\xa5\xca\xd0\x9d\xb6\x01\x8b\x09\x8a\x0b\x66\xc7\x69\xea\x6e\x34\xb2\x0c\x69\x35\xad\xad\xa4\xc9\x8c\xef\x7e\xf1\x46\x27\x39\x28\xda\x70\x92\xe5\x6b\xd0\xee\x4a\x1a\x1a\x29\x0f\x00\xea\xf5\x43\x8c\x13\x6c\xb1\xe8\xd8\xa0\x5a\x7c\xdc\x25\xcb\x61\x3a\x1e\xa4\x19\xb4\x66\x84\x59\x40\x2f\xca\x91\xf7\x5d\xb7\x8a\x75\x5c\x31\x55\xef\x3e\xd4\x7d\x20\x37\x93\x49\x9a\xa5\x2a\x23\xfc\x2b\x9d\x11\xfe\x55\xe0\x9d\x4e\xc8\x9f\x64\x0c\xae\x6f\x75\x01\x2e\x93\x59\x58\x70\x99\x8c\x0a\xe7\xca\x9c\xe0\x56\xb4\xac\x70\x6f\x09\x8b\x84\x34\x9a\xda\x16\xfb\xcc\xac\xc0\x03\x52\x84\x98\xb4\x2a\x53\x6b\x46\x5f\x26\x21\xd9\x67\x71\x5b\x85\xcb\x8d\x0a\xdb\x71\x15\x4f\x08\xb4\x84\x3f\x57\x4c\xbe\x3c\xcc\xcc\x78\x39\x16\x23\x37\x97\xce\x2c\xcd\x79\x98\xed\x8b\x32\xa3\x1f\xb8\x60\x4b\xc7\x86\x8b\x1b\x57\x34\x8f\x1a\xbf\x84\x89\xfe\x40\x81\x11\x80\x65\x0e\x8b\x7c\x3b\x2d\xf2\xce\x8b\xd2\x21\xa2\xde\xa2\x02\x33\x8e\x4f\x05\xca\x19\xf6\x5b\x4a\x03\x7f\x3b\xaa\x60\x60\x0b\xce\xe8\xad\xe8\xb4\xf2\xa3\x99\x98\xd8\xe6\x45\x94\x44\x26\xa1\xd6\x84\xe8\xeb\x54\x4b\x9e\xd8\x3d\xb5\x99\x0c\x90\xc5\x86\x35\xb9\x2a\x3f\xa3\x9c\x82\x3a\x3f\x66\x93\x84\x96\x3a\x2a\x4a\xf2\x72\x6c\xb3\x7c\x87\x8a\x1b\xff\xbd\x96\x15\x38\x8b\xfb\xc1\x22\xf9\xef\x03\x0f\x00\x82\xcf\x0f\xe3\x1b\x02\x0f\x15\x7b\x6f\xea\x25\xcb\x18\xf7\xc0\x0d\x1c\xba\x06\x04\xb1\x87\x50\xf7\xe1\x9f\x68\x64\xd0\x0b\x0b\xdd\xd0\xc4\xb1\x14\x00\xf0\xf2\xb9\x57\x86\x35\xf1\x90\x8e\x48\x3f\x6a\x94\x7f\x49\x50\x67\x94\x45\xc9\x7e\xa1\xfe\x63\x85\xf8\x7d\x4d\x12\xfe\xfd\x46\x32\x46\x82\x74\x2b\x76\xc6\xb3\x96\x10\x4e\x32\xde\x19\x8f\x02\xf9\x68\x13\x7e\x5b\xfd\x66\x56\x12\x32\x76\x46\xa1\x36\xe1\x26\xcb\x8f\x5e\x49\x20\xdd\x0e\x36\xf5\xa3\x3e\x53\x05\x73\x74\xad\x2e\x38\x75\x3b\xf7\xb9\x06\x4d\x64\x61\xa1\x9b\x87\xa3\x34\x8d\x0b\x6b\x7c\xe1\xc9\x31\x61\x17\x5d\x2c\xd5\xd6\xd7\xa0\xf0\xbc\xa3\x44\x7c\xc0\xaa\xe6\xe3\x06\x12\xea\x97\xbb\xe3\x28\xb1\xb3\x55\x8c\xe8\x64\xc2\x95\xab\x28\x65\x87\x6c\x1a\xd3\x53\x50\xb2\xc6\x6b\x5d\x9a\xeb\x9a\x6c\x58\xb2\x61\x98\xca\xcb\xe6\x9d\xad\x7d\x3b\x42\x35\x15\x84\xaa\x60\x5f\x15\x8f\xef\xbc\x73\xa5\x5b\x2e\x33\x6b\xca\x30\x33\x21\xe9\x88\x6d\x5c\x42\xb8\x83\xcc\xfb\xbc\xca\x5b\x41\xe0\xe1\xf8\xae\xed\x2a\xf3\xfd\x9e\xa9\xc8\x1f\x99\xfa\x4d\xe2\x41\x0b\x51\x71\x77\xb5\x53\xb2\xdc\x15\xef\x07\x94\x4f\xc8\xde\xa0\x11\x17\xe3\x89\xed\x6f\x45\x88\xe0\x78\xf5\x6e\x76\x62\x2a\x89\x8c\x55\x35\x02\x84\xc6\xaa\xca\xd4\x57\x35\xdc\xbf\xec\xf7\xd7\x74\x30\x7f\x8b\x8c\x10\xf1\x2e\x0f\x4d\x95\x10\xab\xb2\x79\x19\x56\xeb\x05\xd5\x0f\x60\x07\x8c\x7d\x76\x83\xa6\xae\x0b\x5b\xf6\xcd\xb9\x24\x91\x06\x3e\xfa\xa8\x97\x40\x4e\x17\xe2\xe4\xe6\xdc\x82\xc8\xe9\x1d\xb5\x79\x1d\xaf\xe1\xd6\x5a\xf0\xe4\x93\xb4\xb0\x49\x51\x65\x66\x9e\x17\xc9\x52\xd4\xce\xa5\x78\x51\x54\xe3\x1e\x73\x55\xf1\xcc\xc6\x36\x29\x3a\x0a\xf0\x82\xbd\x8c\x8f\x1f\x2a\xfa\x59\x03\x3d\xa0\x58\x76\x5a\x57\xce\xb4\x06\x63\x66\xf3\xb0\x04\x59\x1e\xa5\xd9\x1b\x08\xe7\x6b\x3a\x14\x62\x1c\x2e\x21\xea\x30\xb5\x35\x9f\xee\x47\x7a\xca\x12\xf8\x1a\x7e\x4a\xac\xd9\x5a\x78\x85\x45\x34\xb6\xde\x4b\x05\xbf\x04\xbf\x44\x3e\xd6\x10\x9b\x32\x4b\xfb\x76\x99\xc5\x87\xb1\x4c\xde\x55\x03\xe8\x94\x2a\xad\x5c\xd0\x5d\x11\x3b\x4e\x33\xb3\x1c\xc5\x91\xa1\x30\x0d\xa3\xf4\x30\xbd\x7e\x3e\xf6\x86\x4f\xd6\x40\x4e\xa4\xcd\x83\xd9\x6b\xc3\xf4\x4b\xbb\x4d\x4d\x11\xfa\x2a\x94\xf5\xbf\x4d\x89\x06\xc6\xe6\x06\x8d\x47\xb4\x62\xef\x04\x9a\x0d\x51\x8d\x74\x56\x8b\xed\x3d\xe9\xd1\x94\xb1\x6b\xc0\xb2\xd9\x05\xa6\xbe\x38\x5f\xf8\x46\xea\x24\x02\x2c\x47\xe4\x83\xb5\xdd\x83\x52\x76\xef\xdb\xd0\xf4\x6d\x3e\xab\x1b\x00\xd5\xa5\x0a\x1d\x9d\xde\xa8\x23\xaa\x57\x7b\x94\xb4\x0c\x54\x6c\x64\x92\xd2\xc4\x39\xba\x8a\x8e\xb2\xe8\xb1\x82\x1f\x29\x84\x2d\xe2\xe7\x5c\x5b\x3e\xd6\x43\x2e\x4f\xb9\x1e\x94\x36\x46\xd4\x8c\xaa\xcf\x75\x84\xfd\x7c\xd2\x50\x4c\x5a\x9a\x03\x52\x6d\x92\x45\xe4\xac\xb5\xcf\x53\xfb\x7c\xe0\xab\x9d\xb7\x4d\x1c\x47\x26\x09\x2d\x43\x8b\x11\x9c\x9e\x57\x9c\xff\x53\xba\x94\x71\xa7\xb1\xc8\xcd\xef\xed\xc6\x36\xe9\xcb\x56\x83\x79\x76\x83\x46\x18\x1f\xb7\xca\x28\x4f\x32\xdb\x8f\x42\x69\x30\x4a\x79\x82\xa6\x91\xd4\x27\x14\x89\xda\x9a\xfd\xd4\x4d\x76\xae\x65\x3e\x7b\xfe\x0d\x44\xf7\x4e\x66\x64\x69\xce\x99\x93\xd1\x57\xe3\x3f\x8e\x69\x63\x96\x63\x6d\x60\xc3\x41\x66\x5f\x2f\x05\x25\x8b\xd7\x70\x4d\xd5\xf3\xaf\xa9\x4a\xe5\x70\x94\x6f\xf3\xb1\x32\x18\x68\xf4\x9b\xff\xe4\x6f\xac\xab\x92\x1c\xca\xce\xf8\xa3\xa7\xd6\x3d\xe3\xf5\xc8\x27\x30\xf5\x11\x8c\xff\x8d\x9e\xb7\xfa\x89\xa3\x62\x94\x16\x59\x34\x11\x51\x3c\x76\x77\x56\x12\x93\x17\x1a\x1b\x53\x75\xed\xf1\x9a\xeb\x67\x0b\xa2\xdc\x93\xd1\xde\x77\x5b\xe1\xc4\x66\x51\x3e\xaa\x56\x11\x5e\x8a\x44\x28\x52\xa1\xd2\xae\xd1\x23\x04\xcb\xb6\xd9\xc4\xa8\x5e\x5d\x92\x66\x05\x00\x0d\x8e\x90\xb3\x34\xc7\x97\xf7\xfb\x18\x2c\x9e\x07\xcf\x2b\x12\x81\xfe\x68\x34\xb2\x30\x5a\xe0\xf1\xf2\xcd\x5f\xf9\xe5\xae\x81\xf2\x35\xbd\x0c\xa4\x3e\xa7\x15\x68\xef\xb4\x53\x9c\xcf\xa3\xb4\x3c\x40\x7f\x25\x98\x6b\xfa\x7d\x3e\x69\xe3\x30\x98\x30\xb3\x39\xfa\x39\x4e\xc2\x58\x61\xf2\xe8\x57\x9c\xd2\xe9\x8b\xbe\x9d\xe3\x5b\xd2\xab\x99\x99\x4c\xa2\x64\x38\x4b\xcf\x1b\xa0\xb8\xe3\x0a\x5d\x0c\xbd\x6b\xfe\x77\x7a\x9a\xfc\xef\xbd\x4f\xa9\xa2\x59\x3e\x49\x13\x76\x61\x5b\xdb\x56\x4d\x6f\xe9\xf8\x69\x73\x5e\x15\xb1\x5d\x47\x6f\x56\x10\x8c\xb4\x08\x39\x5b\x3b\x87\xca\x3e\xa8\x16\xa4\xd7\xcb\xb4\xc8\x80\xb7\x7f\x85\xd1\x36\xa7\xea\x4e\x77\x34\x58\x51\xd1\xbb\xdb\x28\x96\xbd\xbc\xbb\x6b\x92\x7c\xd5\x99\x63\xb8\x2a\x92\xe7\xe3\xbf\xdb\x26\x93\x04\x39\x16\x0e\x93\x30\x42\x58\x82\x82\x4f\x7a\x35\x2f\xff\xb4\xff\xbc\x87\x34\xc2\xa5\x12\x19\xc3\x25\xaa\x3e\xca\xbe\x4d\x37\x0f\xf0\xff\x71\x3c\x22\x81\xa0\xd1\xc5\x89\x4e\x7d\x35\xc2\x90\x58\x89\x47\x01\xc2\x6a\xce\x17\xb1\xdb\x6e\xe9\x79\x5f\xcc\x27\x75\xca\x35\xb3\xae\xfc\x5c\xff\x98\x36\x28\xac\x81\xeb\xe0\x96\x41\x5f\xe0\x06\xc1\x0f\x1c\xc7\xab\xca\x7e\x9d\x69\x47\xf5\x56\xb0\xc8\x14\x81\x02\xd1\x1c\xc3\x0e\x22\x5c\x1d\xaa\xa4\x71\x22\xab\xbd\x42\x0f\xd8\xf1\x84\x16\x20\xf8\xeb\xcd\x6f\x5c\x6a\x94\x3c\x77\xed\xea\xe6\x29\x8b\x2b\xb2\x31\x95\x5f\x7f\xb6\x35\xa5\x56\xaa\x09\x6b\x4d\x96\xe0\x1d\x8a\xe5\xa7\xca\x58\x8e\xa9\x46\xc7\xc8\x84\xa3\x12\xfc\xda\x3d\xdc\xc9\xfd\x75\x2d\x51\xfa\xeb\xaa\x79\x96\x66\x7d\x9b\xe5\x4f\x54\xcf\xc8\xb5\x8f\xab\x8f\xa1\x0c\x78\x8b\x52\x42\xec\xc7\xdf\x45\x93\x19\x5b\x3d\x6e\x8c\xb7\x19\x06\x26\x23\x14\xbf\x4e\xc3\x18\xd5\xb5\x59\x92\x92\xe7\xef\xd5\x1e\x95\x98\x5b\x18\xeb\xd7\xb0\x13\x8b\x19\x2b\x8d\x10\xe4\xf8\x27\xf0\xec\x19\xfb\xd7\xd2\x92\x7b\xa1\xbb\x62\xe2\xd2\xd7\x16\x9d\x00\x59\xf5\x4b\xa2\x92\xed\xd3\x6f\x63\xb3\xb4\xbf\x96\x98\x31\xa3\xf6\xb0\x72\xdf\x54\xa6\xc6\x37\x15\xed\x9b\xe4\xdb\x06\x59\x8a\x5c\x4a\xc2\xd0\x13\x53\xad\xf3\x77\xa2\x0d\x92\xbe\x1c\x73\x54\xc9\x5a\x2d\x58\x96\x05\x13\xd3\x71\xa4\xf1\xbb\x6e\x5d\xed\x9b\x84\x0c\x69\x1c\x43\xf1\x6c\xa0\x68\x63\x67\xb5\x13\x92\x8d\x72\x42\xea\x56\x8f\x0c\x6b\xf5\x11\x3c\x32\x3e\x69\xcc\xff\xf9\xbd\x62\xca\x37\xe3\x41\x4f\x1a\xa9\x88\xaa\x8a\x70\x3c\xfc\xc8\xb0\x09\x95\x2a\x3d\x64\xf4\x27\x81\xd7\x46\x61\xa0\x8f\x18\xc3\x78\x19\xcf\x0f\xa9\x98\x21\x5a\x36\x1e\x31\xf0\x68\x8f\x2e\x19\xc5\x6d\x5e\xbf\x44\x3a\x4d\x57\xd3\xe8\x8d\x63\x95\x6b\x1a\xaf\xee\x9b\x7b\xa5\x9b\x96\x05\x49\x52\x77\x74\x75\x34\xf0\xca\x72\x17\x5a\x20\x1f\xaf\x74\x07\x26\x8e\x6d\xa2\xd5\x69\xc0\x66\x13\x5b\xa8\xb6\xea\x55\xdf\x16\xd0\x00\x99\x51\xa1\x27\x7d\x0a\x2f\xf6\x7f\xc5\x5d\x20\x5a\x3e\xa9\xc2\x42\xc0\x66\xf2\xad\x9e\x46\x7c\x51\x19\x1d\x31\x30\x11\x65\x93\x0f\xa6\x9e\x02\x73\x0a\x0b\x22\xd2\xa2\xfb\x4e\x61\xb2\xac\xa2\xb2\x55\x6b\xc0\x45\xc1\x30\xe2\x07\xe8\xca\x62\xae\x23\xb1\x5d\x71\x0f\xaf\x28\x74\x89\x4d\xd2\x6c\x9c\x96\x2d\x5d\x72\x2c\x86\x4f\xf5\x3c\xc1\x70\xfb\xfa\x73\x0a\xb7\xb5\x9c\x73\x40\x55\x9b\x54\x7a\xb6\x39\x96\x9a\x5d\xb1\x49\x31\x82\x56\x38\xca\xaa\x10\x00\xc3\x4f\x80\x53\x86\x6d\x8a\x1d\x6c\x90\xc6\x5e\xf2\x1a\x42\x59\x94\x5b\xd6\x07\xc5\xa6\xf8\xae\x86\x83\x23\xa6\x11\xf9\x63\x8f\xe5\x1a\xa5\x49\x9a\x01\x38\x51\xf3\x03\x47\x70\x7f\x5c\x71\x59\x4e\x05\xca\x48\xe0\x50\xf0\xb8\x7b\x65\xa3\x28\x7f\xbe\x1a\xb8\x4e\x48\xd3\x19\xab\x5f\x43\xf3\x05\x95\x5f\x94\x46\x30\x6e\x6f\x62\xfd\x67\x0d\x10\x1a\x81\x62\x94\xa1\x74\x55\x4f\x05\xda\xdb\xe9\x32\x96\x4d\x74\x09\x6f\x90\x23\x0a\xba\x57\xa7\xa6\x1e\x52\xc0\xb5\x66\xce\xf1\x31\x5a\xd0\x7b\xe2\xc7\x86\xb9\x0a\x85\x1e\x74\x88\xbe\xa6\x55\xb0\x0f\xd2\x63\x12\xff\x7d\x9a\x76\x18\x79\x77\xb9\xe4\xed\x94\xf3\xaa\xe1\x86\xdf\xfc\x4a\x9b\x50\x6d\x3f\x7d\xc3\x0a\x51\x53\xba\x3f\xf4\x3b\xc8\x5a\x60\x16\x2a\x12\xe3\x4e\xf8\xdf\x66\x85\x89\x92\x78\x6d\xab\xf7\x25\x7a\x7f\xaa\xf2\x3a\xac\x0a\xa8\x49\x40\xc3\x0c\x63\x02\x12\x42\xa8\x87\x7c\xe0\xbe\xce\x94\x45\x3a\x36\x85\x65\x09\x2a\x3c\x07\x36\x45\xe4\x13\x57\xfd\x5d\x49\xc7\x51\xe1\x0a\x74\x78\xb0\xc0\x48\x6e\x40\x19\x01\xe1\xce\xe9\x56\x92\x92\xc9\x60\xcd\xd9\x71\xea\xc2\x75\x84\xc3\x93\x6a\x4e\x0c\x4d\xb6\x4d\xb9\x84\x62\xde\xba\x15\xcc\x37\xf1\x8e\xf1\xcb\xe7\x33\x8a\x44\x9c\xb3\xa8\x5f\xf4\x5a\xea\x62\x64\x17\x1a\x16\x98\x4b\x18\x88\xa8\xbe\x71\x89\x68\xaa\xac\x40\x51\xcc\x11\x65\x37\x9d\x72\x26\xc9\xda\xac\x92\x90\xfe\x76\xed\x72\x98\xb0\x0e\xa8\xd1\x59\xbd\xa0\x1c\x6d\xc9\x17\xc8\x7c\x57\x56\x5d\x74\x34\x2e\x23\x52\xe0\x93\x46\x49\x86\xd2\x43\xcf\x17\x05\x04\x6a\x03\xa6\x21\x1b\xc7\xdc\xaa\x51\x6d\xc8\x79\xb1\x36\xe3\xd7\xa2\x1f\x11\x9a\x41\xd0\xdd\x74\x91\x98\x71\x4d\x81\xd9\xea\xc5\xa5\xd0\x01\x58\x74\x65\x83\x8e\x13\x3d\x3a\xab\xc2\xe8\x91\x35\x71\x31\x22\xe5\x5d\xaf\xe8\x53\xbd\x6c\x20\x23\xaf\x21\xcd\x44\xac\x72\x6a\xda\xf9\xe2\x7c\x4d\x4f\x96\xff\x48\xd3\x01\x6e\x60\xfe\xf3\x27\x30\x4d\xf9\x7f\xda\xc4\x15\xc7\x69\x91\x02\xa5\xea\xb6\x84\x7d\x73\x1c\x0a\x7f\xa8\xe2\xe5\x1b\x8d\x9b\x5c\x58\xe8\x0e\xd2\x32\xeb\x74\x76\x09\x9d\x95\xe1\xff\x82\x18\xf7\xcb\x7c\x3f\xca\x6c\x58\xa4\xd9\x56\xba\x4e\x34\x73\xee\x2b\x9b\xd2\x0d\xdd\xf0\x3d\xab\x12\x8e\xdf\xc1\x37\x8a\xe0\x52\x53\x6c\xf4\xe5\xdd\xdb\x3c\x32\xe0\x3a\xad\x5c\xf8\x24\x0a\x1e\x02\xa0\xa7\x11\x01\xb0\xd1\x25\xed\x4a\x79\x76\x5a\x17\x41\xd8\xbc\xdf\xee\xda\xd5\x1d\x9b\x70\x14\x25\x51\x5e\xf0\x26\x25\x1f\xac\xe5\x3d\xf8\x16\x5c\xe6\x6d\xbf\x6f\xa4\xe9\x84\x53\x6d\xfc\xf6\x29\x8d\x7a\x3a\x15\xf8\xa4\x6f\x25\xcd\xd2\xc4\xbe\x31\xc2\xb4\xe0\x2e\x78\xa0\x29\x7d\x3e\x48\x3a\xaf\xc9\x0a\x27\x35\x5f\x32\x9d\x6c\x9a\x0a\x6f\xeb\xa9\xf0\xb6\xf2\x90\x9b\xa4\x50\xff\x74\x7e\x2c\xe7\x55\xb4\xa9\x49\x6b\x61\x9a\x14\x51\x52\x5a\x40\xbf\x31\x7c\xdf\xc6\x6e\x51\x6b\x5e\x02\x99\x73\x5a\xd9\x51\xfe\x58\x47\xb8\x21\x31\x7e\x13\x92\xa2\xd7\x66\xe7\x54\x6c\x42\xb4\xf6\x5e\x4d\x09\xbb\x5a\xc6\xf8\xdf\x6b\xe0\x38\x1b\x16\xcf\x2b\x56\xe4\x55\x0c\x1c\x67\x63\x5e\xdd\x3a\xb2\xb0\x2b\x58\xdb\x31\x18\x1e\x85\xa2\x85\x7b\x96\x6a\x54\x77\x5e\x16\x8a\xdf\xb6\x75\x4a\xb6\x18\x63\x8e\x0d\x4a\xf8\x5e\x74\x9d\x28\x6f\x3e\x42\xe8\x02\xf1\x24\xa8\x9e\x20\xb2\xe9\x6f\xd0\xbd\xb3\x19\x07\x12\x32\x96\xc0\x0b\x94\xc9\x01\x82\x62\xe1\x94\x55\x77\x89\x3f\xba\x8a\x81\x8e\x1d\xec\xfe\x54\xfb\x19\x5d\xc2\x4e\x2f\xd8\xf7\x66\x18\x39\xdf\x1d\x7b\x35\xe5\x0d\xda\x1e\x36\xce\xa9\x88\x39\x2d\x46\x36\xcb\xb7\xf9\x6d\x99\xe5\xf8\xd9\xd3\x9a\x26\x8d\xa8\x51\x6c\xae\xa6\xb2\x9f\xdc\x54\x83\xda\x1a\x15\xb7\xdd\x2f\xed\xe9\x4e\x4c\x41\xe2\x16\x33\x2a\x31\x3f\xa7\xf8\x3b\xb7\x31\x68\xd8\x59\xbc\x55\x5e\x76\x98\xa5\xab\xae\xd0\x84\x87\xfd\xa6\x6a\x21\xbe\xd9\x12\x41\xbf\xd0\xcd\xd3\x30\xe2\xed\xb1\x15\x75\xdb\xb2\x6a\xad\x92\x12\xff\xe6\xf6\xbb\x3c\x6c\x3c\x7a\xf1\x1d\x7f\x4a\x09\xd7\x84\x99\xb5\x0a\x87\x74\x5e\xd1\x07\xcf\xab\x04\x2d\x4c\x93\x15\x9b\x44\x14\x9b\x56\x63\x48\x74\x2e\xe9\xcd\x4b\x9a\xf2\x4c\xe4\x7b\xa1\x08\x64\x15\x21\x1c\xb2\x46\xce\x81\xd5\x0d\xab\xeb\x81\xdf\xed\xfb\x65\x5e\xac\x75\xbc\xa7\xe5\x11\xa5\x45\x76\xa4\xd1\x4c\x5b\x5c\xec\xbe\x66\x99\x1e\xea\x90\x34\x8b\x02\xc0\xbe\x17\xf8\x0d\xa7\xdd\xad\xde\x75\xe6\x7d\xfa\x07\xf9\x2e\x3e\x6e\x19\x95\x8b\xdd\x22\x1a\x33\x6f\x75\xe3\x52\x15\x87\x6e\x5c\x6a\x80\xa6\x3f\xd7\x0d\x47\x51\xdc\x47\x3c\x81\x35\xe4\xbc\x0e\xca\x00\xfc\xc4\x2a\xfe\x40\x29\xd8\xbe\xdd\xf8\xa6\x2f\xce\x77\x5f\x2f\x23\x40\x60\x85\x67\x56\xcd\x3b\x3e\x76\x81\xdb\x68\xad\x9f\x99\x32\xae\x52\x6d\x27\xe7\x81\x86\x3c\x1f\x2b\x3d\xd2\x11\xf9\x38\x7a\xa6\xc4\xdb\xf4\x8c\x65\x69\x55\xcc\x90\xb5\xbc\xb0\xe3\x67\x3a\xe2\xe1\xb8\xf4\x34\x10\x3b\xb5\x16\x32\x56\xc5\xc7\x68\xf5\x40\xf4\xf9\x51\x0d\xb2\xf3\x48\xaf\x9a\x87\xc8\x07\x7e\x0b\xcb\x84\xf2\xe3\xf1\x48\x43\xd5\x74\xeb\xf4\x14\xa0\xf1\xda\xd4\xf7\x96\xce\x83\x95\x85\x6e\xf2\x7d\x0a\x6c\x31\x23\x99\x9a\x03\xb4\xe5\x35\xd5\x6d\x7b\x10\x50\xd4\x20\x10\x46\xd5\x04\x56\x95\xe9\x64\x7f\xa4\x60\x0f\x3f\x56\x49\xd4\xd7\x74\x78\x79\xa8\xa5\x97\x1b\x47\x83\x02\x96\x5b\xb2\xc7\x78\x37\xd9\x6f\xd0\x75\x60\x88\x5f\x56\xa1\x51\x1e\xbd\x21\x42\x51\x12\x1a\x9d\x0c\x6a\x7c\x4c\x1f\x61\x14\x99\x35\x85\xb4\xdd\xc5\x17\xa6\xe3\x3d\x62\x02\x6d\x65\x15\x0d\xd9\x7d\x19\x23\x0e\x99\x18\x1f\xb7\x88\x62\x75\x87\x99\x79\x63\x73\x05\x7c\xea\xa3\xde\xf7\x55\x91\xcd\x4c\x26\xb1\x70\x38\x30\xd1\xbe\x46\x7f\xc9\xc7\x2d\x74\xe0\x3d\x5d\x13\x47\x43\xc7\xf1\xc5\x66\xd2\xe9\xf9\xae\xe2\x41\xac\xd6\x58\x9f\x1e\x69\x28\x1e\x2e\xcd\xc1\x26\x7a\x38\xe3\xc3\xed\x59\xec\x77\x78\x9b\x77\x95\x4d\xdc\x19\x57\xac\x0f\x47\x59\x3a\x4e\xf3\xd4\x31\x4e\x50\x89\xbe\xa0\x9a\x12\x17\x5a\xd4\x88\x76\x77\x5f\xff\x87\xbf\x84\x10\xc3\x09\x03\xeb\x62\xf7\xe6\x68\x7b\xdf\x5c\x77\x92\xa5\x71\x34\xb0\x99\xf1\xae\x3a\xa2\x38\x5e\xdd\xa4\x08\x8e\xb7\xe8\x7d\x44\xc9\xa0\xba\x31\x6e\xdd\x3b\xde\x59\xf5\x34\xa4\x1e\xe5\x47\xc0\x4a\x94\x97\x26\x8e\xe1\xe6\x85\x3d\xe7\x7b\x88\x0e\xf8\x31\xa8\xe5\xfa\x30\xbe\x44\x74\x32\x65\x31\xce\xcc\x24\xea\x5b\x88\x99\x38\x28\xec\x06\x85\xfd\x7c\xac\xb0\xbd\x83\x38\x5d\x0d\x47\x26\x2b\x1e\xce\xfd\x6f\xf1\x44\xec\x97\x45\x34\x28\x63\x66\x56\xc9\x02\xe1\x63\xab\x8b\x53\x0d\x83\x23\x53\xb7\xe8\x0d\xdb\x51\x24\xcb\x3b\x54\x04\xe0\x63\x2d\x50\xc9\xf0\xb0\x7c\x9b\x0a\x99\x4f\x4e\xbd\xe3\x0c\x24\xc6\x51\x7c\xb8\x1c\xa8\x4a\x17\x3c\xf9\x9d\x1e\xbe\x67\x38\x36\x95\x02\xe6\xf7\x76\x97\xcb\xd4\x61\xf9\xb9\xea\x43\xd7\x2f\x15\xa0\x67\x14\x97\x2d\x1b\x1b\xdc\xaa\x44\x36\x10\x10\xe3\xe3\x36\x10\x44\x34\x4c\x58\x0b\xfb\x15\x2f\xf6\xbe\x4f\xd0\x55\x97\x82\xcd\x6b\x81\x43\xb9\x6a\xa2\xde\x5a\x3f\xb1\x6b\x9d\x9a\x05\x08\xad\xa7\x12\x20\xf8\xfa\x4a\xdf\x1c\x98\xf1\xc0\x72\x66\x25\xd5\xa8\xf5\x48\x56\xde\x6d\xc3\x10\x94\x45\x14\x47\x45\x15\x72\xd7\xf4\x7d\xa7\x4a\x4d\xee\x9d\xc6\x13\xfc\x5c\x77\x90\x66\x63\x9b\x55\x03\xf5\xc5\xba\xef\x23\x6a\x19\x4f\xab\xda\x03\x77\x36\x24\x9f\xf6\x8c\xbf\x74\x32\x49\xb3\xa2\x4c\xa2\x62\xad\xa3\x42\xdb\xbf\x9e\xfa\x94\xe1\xaf\x1b\xe9\xfb\xe7\xba\x26\x8e\xed\x50\x52\x04\x76\x5e\x0f\x54\x26\x7e\x6e\xea\x65\xb3\xcb\xa1\x89\xb8\x6b\x8b\x87\xff\x9b\x4a\x84\xea\x42\x7d\xd6\x6b\x61\xe5\x15\xd2\x60\x4b\x66\xaa\x51\x8a\x10\xe6\x3d\xf4\x94\xb1\xb2\x5d\xa1\x8a\x94\x74\xc1\x7d\x8f\x7c\xd5\x64\xcb\x65\x36\xe4\x47\x89\x11\x72\x5c\x07\xc5\xc7\x15\x50\x70\x39\x36\xfd\x3e\x67\x56\x08\xf7\x0f\xe2\x4f\xf9\x44\x05\xbf\xe3\x08\xfa\xb1\xce\xc6\xfe\x84\x82\xf8\x9e\x50\xa8\x34\x7b\x80\xb4\x66\x81\x39\x7d\xc5\xa9\x55\xd2\x80\x13\xe4\x44\x93\xca\x9a\x97\xf4\x26\xa4\x21\x85\x60\x83\x3b\xcd\x7c\x52\x27\xf7\x84\xa3\xa7\x69\xa7\x45\x14\xf1\x5d\x2d\x93\xf8\x14\xb5\x25\xb0\xa1\x3e\xd6\xab\xb6\x60\x0c\xbe\xc3\x78\xd8\x08\x9d\x4f\xd7\x72\x83\x75\xbd\x90\x01\xc1\xc8\x85\x33\x2a\xe0\xd6\x3c\xb6\x80\x9c\x62\x4b\x5e\xc9\xad\x7c\x07\xff\xd2\x54\xed\x19\x8f\xac\xfb\x07\xb6\x41\x2a\x37\xec\x45\x82\xfa\xd8\x37\x1b\xc0\x80\xbd\x2f\x75\xc3\x51\x1a\x93\xec\x43\x4a\x82\x79\xdc\x9b\x42\x85\x8b\x8f\x5d\xf1\x38\x5d\xb6\xfd\xc8\x26\xa1\xad\x49\x41\xd3\x6d\x8a\x16\xb4\xde\xb0\x57\x6d\x7f\xa7\x27\x4d\x1c\xc7\x78\x92\x4d\xca\x5b\x58\xb0\x70\x21\x32\xa5\xbb\xf4\x04\x04\x74\xa7\x4c\xca\xae\x52\x2b\x40\x4b\x4f\x20\x24\xe1\x35\x51\x5b\x9d\x2a\x15\x4e\xef\xaa\xf9\xa4\xe2\x54\x9a\x28\x99\xf5\x2d\x15\xdc\x2b\x5e\xda\x71\x44\x2a\xfc\x1f\x81\xf7\x8f\x3f\xde\x00\xb1\xce\xef\xed\xa6\xfd\x7e\x0c\x1c\x17\xda\xb1\x00\xe3\xf3\xb1\xab\x27\x2c\x97\xd9\xd8\x8c\xe8\xe1\x8a\x36\x19\xdd\x97\xc8\xb1\xfa\xd9\x34\x2a\x93\x7e\x66\xfb\xb3\x18\x2b\x80\xbb\x30\x24\x88\x01\x74\x81\x67\x15\x5d\xd4\xaa\xa0\x8f\xac\xab\x4a\x9d\x5d\xb5\xd9\xf6\x8e\xd3\xa0\x66\x51\x4f\x49\x03\x7d\x78\x7d\x07\x83\x43\x34\xd1\xb5\x45\x19\xd7\xf6\x98\xd8\x34\x55\xb7\x18\x7c\xd2\x27\x33\x36\x8c\x4d\x9e\x47\x83\x35\x01\x0a\x0b\x4a\xa3\xe3\x45\x88\x1c\x38\xa8\x9f\xe6\x18\x37\xec\x79\x18\x68\xff\xc3\x16\x9b\xa4\x41\x94\x44\xf9\x48\x24\x74\x10\xe6\x7f\x1f\xa3\x9d\x4f\x14\x62\x99\xd8\x43\x55\xa4\x12\xf3\xca\xca\x26\xc1\x34\xb7\xc4\x30\xd8\x35\xc8\xca\x24\x34\x90\xd0\x72\xcd\xe3\xea\x51\xf2\x49\xb0\xd3\xcb\x58\xe6\x7f\x5b\xab\x3f\x07\xb4\xa1\x0b\x4b\xae\x9a\xea\x18\xda\x97\x69\x6c\x22\x2b\xbb\x85\xbc\x1f\x7b\xf4\x77\xa6\x9d\xcf\x7e\x96\x9f\xc4\xf7\x03\x45\x99\x82\x1a\x0c\xa2\xbb\x0e\xc6\x3f\x97\xd8\x03\x25\xc1\x78\x99\x56\x5d\xbc\xee\xb3\x64\xd9\xc2\x65\xac\x40\x13\xf7\x37\xa6\xaa\x43\xf0\xf4\x3a\x41\x2c\x51\x40\xb9\x47\x2f\x02\x4b\x0b\x17\x79\x69\x36\x7c\xf6\xd9\xf5\x2a\x8e\xe7\xeb\x42\xcd\x04\xbb\x05\x77\x4c\x01\xc6\x7a\x02\x12\x13\x80\xa6\x3d\xbf\xee\xfd\x6e\xe0\x94\x8b\xa0\x6c\x2b\x7a\xe5\x6c\xe1\x0f\xdc\x37\x12\x8a\x3b\x53\x34\x08\x30\x88\x76\x50\xa2\xe4\x3a\xdf\xd5\x62\x8a\x2f\xbb\x49\xfd\x3e\x04\x5f\x1f\x06\x24\xf6\xe0\x6a\xaf\x5f\xf8\x92\x23\xd4\x3f\xad\x1c\x4e\xd2\x9c\xb8\xf0\xbb\xe6\x3d\x28\x43\xc9\xb8\xf9\xf9\xb4\x9c\xa5\xa6\x1f\xaf\x21\x44\x47\x33\x1c\x51\x93\x38\xff\xd0\x23\x41\x49\xee\x07\x8d\x3a\xc5\xde\x97\x44\x00\xbb\xe3\x9d\xce\x81\xab\x10\x01\x24\xbf\x0f\x8d\xcb\x24\x0a\xa3\x89\x61\x9b\x1d\x3c\xda\x23\x58\xb5\x99\x76\xaa\x7c\xd9\xdf\x6a\x14\x63\xe6\xf7\x76\xcb\x64\x35\x8b\x8a\x82\xc5\xdd\x84\xae\xe4\xa9\x26\x17\xd5\xbe\x5b\x26\x51\x15\x90\x74\x54\xd3\xe5\xbc\xe2\x8e\x9e\x57\x58\x2e\x82\xa4\xa7\x71\xae\x00\x31\xa7\x10\x61\xf3\x89\xca\xdd\xa4\x21\x5c\x0d\x67\x49\xc1\xaa\x21\x24\xa9\xd9\x53\xea\x5b\xc7\xb6\xbf\xb6\x55\xb9\x6d\xfe\x84\x06\x1b\x06\xc5\xf1\xa9\x5a\xb4\x1e\xa0\x18\xee\x04\x5c\x3c\x31\xf6\x7d\x15\xfe\x15\xa3\x2c\x1a\x70\xed\x05\x23\xe6\x44\xa0\x28\x44\x27\xda\x78\xf4\xaa\x80\xc6\xa3\x14\x90\x58\x3e\x6e\xf3\x1d\x2c\x46\x36\xb3\xb3\x35\x16\xc0\x17\xbe\xe4\x0c\x5f\xbd\x1c\xc2\x1d\xaa\xaf\x61\x84\x7e\xec\x90\x45\x66\x6c\x72\x88\x35\x88\x4d\x81\xd7\xe0\x39\xf7\x50\x8d\xb2\x61\xb4\x62\x93\xd9\x19\xe7\x87\xfb\x4f\x9f\x23\xac\x89\xd4\xcd\xe9\x81\xa0\x89\xf7\xd8\x7a\x35\xc9\xb1\x5b\x9f\x51\x02\xc5\xcb\x76\x14\x25\xfd\x47\x7d\x97\xe7\x32\x5d\x1e\x02\x88\xe3\xa8\x73\x8a\x6d\x1b\xcd\x7f\x04\xa2\xd7\x95\xe3\xcb\xb7\x48\x84\x52\x7c\xde\x30\x33\xf9\xaf\xe8\xb6\x45\xd6\x7c\xf3\x33\xfb\xe2\x3c\xb5\xae\x33\xba\x6b\xf6\xd2\xa0\xbb\x16\x5f\x8d\xcd\x1f\x78\x79\xf7\x67\xba\x45\x2a\xf9\xa9\xd6\x56\x94\xc9\xea\xc9\x6c\xcb\x16\x05\x34\x74\x61\x59\xf6\x07\x15\xad\x33\x4a\xf9\xf3\xa4\xaa\xa0\x99\xe5\xb4\x2c\x3e\xad\xa4\xcb\x6e\xa3\x73\x22\x1d\x2b\xdf\xd6\x7e\x44\x2f\x5f\xc7\x54\xb1\xec\x6b\x94\x8b\x89\xbf\x75\xb5\x8c\x60\xc1\x9a\x65\x3d\x14\x50\x9e\xde\x9a\x2a\x66\xd7\xd6\x1e\x3d\x56\xe7\x50\xb5\x24\xd4\x86\x07\x88\x51\xc4\xda\x9d\xd6\x7e\xe4\x36\xc0\xac\x62\x64\xfd\x13\x54\x76\x6a\x32\x50\x18\x35\xeb\xda\x12\xe3\x78\x50\x2d\xcb\x08\x5f\xfe\x9c\x57\x4f\xa7\x47\xbd\xe4\x3d\x4e\xe8\x31\x09\x52\x80\x46\x3f\xee\x7e\x27\xa0\x4a\xb8\x98\x6f\x62\x5d\x77\x10\xb6\x2f\x7c\x89\x6f\xec\x18\xe0\x49\x7c\x95\x14\x88\xa1\xb5\x71\xcb\x9b\xb0\xa6\x25\x71\xa8\x31\xb5\x44\x14\xcd\xe7\x8e\xe7\x94\x4c\x57\x58\xc6\x93\x2c\x2a\x72\x65\x54\x8f\x7e\xa4\x98\x5d\x3d\xa5\x34\x64\x43\xd3\x07\xc5\x13\x9b\x25\x23\x30\x5d\xe5\x67\xc9\xfd\x07\x1e\x8b\xac\x41\x7e\x99\x58\xce\xac\x09\xb1\x20\x8b\x8f\x0a\x8d\x05\x31\x52\x91\x46\xe0\xa0\xcc\xb2\x74\x95\x73\x26\xe4\x30\x37\xf0\x63\x7c\xe2\xe6\x74\x9f\xd6\x1d\x0f\x3c\x3f\xaf\xa5\x5b\xcf\x7b\x4d\x79\x26\xd0\x6b\xbb\x50\xba\x60\xb1\x0e\x7d\x5c\x89\x84\x73\xa1\x0a\x28\x1a\x60\x41\xf9\x58\x71\xe6\xfb\x69\x1a\x47\x45\xc1\xe8\x6d\xb1\x89\xaf\x86\xa3\x17\x38\xf2\x29\x48\x6c\xb2\x67\xbd\x46\xdf\x11\xad\xd4\x3c\xb3\xae\xbb\x5a\xca\x90\x91\x29\x8f\xc8\x68\x6e\x00\x88\x26\x94\x94\x6a\x0a\xf0\x78\xa0\x0d\x58\x98\x94\x34\x50\xa5\x3c\xde\x71\x5a\xc2\x97\xa6\x2a\xa5\xfa\x16\x2d\x00\x22\x91\x4f\x8f\x0b\x61\xfd\x15\x8c\x46\x90\x5e\x0f\x63\x9c\xa1\x1c\xb6\x05\xb6\x44\x7c\xb2\xae\x0a\xa5\x77\x29\xc8\xc1\xcc\xdc\x51\x83\x01\x86\x45\xfe\x0c\xdd\x19\x76\x0b\x01\xef\x61\x3d\x43\x8d\x19\x3f\xcb\x36\x71\xd0\x63\x64\xfd\x4a\x27\x27\xba\x24\x46\xdd\x67\x03\xcd\x09\xae\x6e\x0d\xdd\xd6\xc7\xa0\x23\xc7\xa2\x08\xc8\x52\xb0\xb2\x72\x64\x86\xc9\x75\x0e\x7b\x1a\x4b\x96\x28\x4b\xf6\x27\xd7\x95\x84\xf6\x86\x72\xff\x9b\x59\xaf\x5e\x26\xe6\xf9\x6e\x3c\x26\x14\x7d\xaf\x78\x1e\x8a\x49\xf6\x9b\xb1\xcd\xa2\x50\x14\x30\x5c\x19\xa3\xfa\x73\x3e\x09\x3c\x1c\xdf\x26\xcc\x97\x17\xb1\xcc\xb6\xc4\x40\x19\x06\x92\x2f\x40\xbe\x55\x99\x63\x9c\x41\x84\x89\xc8\xf5\xb4\x36\x70\xc1\x68\xe1\xff\x08\x3c\xbb\xe8\x1b\x2e\x01\x9c\x64\x69\x18\x9b\x68\xcc\xf3\x8a\x95\xf4\x03\x8f\x68\xfa\x78\xfa\x09\x0f\x5c\x32\xc3\xc4\x16\x51\x88\x59\xe3\x36\x22\xa8\x86\x8a\xa8\xaf\x6b\xdc\x93\xd7\x1e\x04\x4a\x01\x68\x9b\x81\x46\x94\xa0\xb3\x3b\x4e\x42\x9a\x3d\xec\xc4\x37\xa5\x59\x81\xdc\xc3\xc5\xcb\x28\xc4\x34\x14\x9b\xc8\xea\xbb\xf9\xb8\x69\x2a\x3c\xbf\xb7\x6b\x0f\x90\x59\x8c\xa0\x0b\x5c\xbb\x53\x77\x38\x5b\x15\x80\xe2\x34\x97\x42\x30\xd2\xfd\xfb\x4a\x3a\xee\x81\x76\xb1\xfc\x53\xb7\x9e\xf4\xa3\xbc\x88\x92\xb0\x50\x4f\xe6\xbe\x7a\x32\xf7\xb5\x72\xad\xb5\x63\xce\x09\xb9\x61\x8b\xa1\x28\x92\x08\xd5\x37\xb0\xc6\x42\xe0\xbb\xd6\xef\x3c\xdc\x60\x3d\xca\xc2\x32\x57\x2a\x3b\x67\xb5\x80\xe4\x59\xa5\x95\xbf\x1a\xf5\x2d\xe2\xe7\x57\x1c\xbe\x6f\xc6\x3b\x8a\x3d\xd6\xf3\xe4\xac\x2d\xeb\xca\x7d\xa3\xc8\xac\xa8\x27\x08\x23\xd6\x53\x87\x4e\x68\xf4\xe8\x2d\xb5\xb5\xe7\xab\x51\x4e\x43\x55\x5c\xe6\xe0\x6b\xc6\x28\x01\x7a\xa4\xc8\x1f\xde\xd3\xc0\xab\xb7\xb8\xb4\x82\xab\x6f\xd5\x69\x4b\x27\x05\x0c\x01\x9c\x86\xc0\xd7\xe8\x41\x09\xac\xec\x13\x5a\x88\xd6\x86\x05\xcb\x02\xd2\x7b\xc3\x1a\x81\x40\x4f\x2a\x7a\xf4\x08\x38\xc3\x53\x4e\x58\x7f\xee\xda\x55\xb9\xcd\x56\xa2\xd0\x6d\xa0\x0c\xde\x52\x76\xcc\xa7\xda\x1a\x16\x61\x1a\xa6\x24\x51\xa1\xb8\x24\xaa\xfa\x7b\xba\xd5\x8e\x7e\x5c\x2d\x07\x26\x4a\xc4\x70\x1c\x51\x25\x57\x0d\xd0\x82\x3b\xaa\xb1\x13\x37\x95\x24\x7f\xdf\x9a\x84\x97\x1d\xa4\xa5\xb7\xf0\x97\x7c\xa2\xac\x22\x76\xbd\xf4\x5f\x77\x94\xe1\xe2\x69\xd5\xb5\x3a\xed\xe5\x43\xa3\x24\xb1\x99\x5c\x08\xb6\x7f\x1e\xaa\x08\x16\xef\x29\xc5\xf8\x8b\xb5\xeb\x48\xd6\xb6\x57\x8b\xb3\xc3\x6e\xb9\x3d\xf6\x1a\x40\xd6\x22\xd7\x4e\x4f\xde\x25\xb4\xd5\x4a\xed\xc6\x97\x2b\xa2\xc1\x6e\x56\xfc\x64\x9f\x51\xc6\xc8\x86\xcc\x31\x15\xa3\xf0\x81\x06\xaa\x3c\xf0\xc1\x43\x66\x6d\x3f\x1d\x93\xf9\x9e\x58\x62\xaa\x40\x85\xcb\xa8\x08\x24\xfe\x64\xea\xf7\xc2\x43\x4a\x29\xe8\x59\xca\x77\x45\x19\x43\xf5\x12\x8f\x4e\x77\xf0\x6b\xec\x7e\x71\xfe\x93\xb4\xc6\xb1\x29\xeb\x54\x09\x5d\xce\xf4\x3a\x9f\xfd\x2c\x6f\x5c\xd0\xc4\xa6\x91\xff\xab\xcf\xae\x3b\xce\xf4\x5f\xfe\x22\x2c\xf9\xa5\x79\x58\xa5\x0e\x08\xcf\xde\x9b\x2a\xa5\x4f\x24\xee\xe2\x21\xe8\x65\x26\x9f\xe9\xd1\xf6\x8c\x49\x74\x0d\xc1\x01\xe3\xe2\x03\xd5\x1b\xb9\x8d\xc7\xcc\x3e\xf6\x0a\xb4\xbb\x85\x6a\x08\xce\x87\xa7\x7a\x4b\x58\x78\xce\x69\xa1\x85\xab\x08\xe4\x58\x76\x8a\x66\x1d\x6a\x78\x3f\xbb\xae\xf8\x2e\xd7\x35\x63\xf1\x3b\x4e\x1b\x79\xd9\xfc\x03\x0a\x16\x11\x82\xb0\xa3\x11\xf2\xf8\x47\xd6\xfd\xbc\x7b\x9c\x2a\xb0\x78\x88\xdf\x6c\xac\xd0\xa4\xc6\x1c\x8e\xec\xca\x9a\xf6\xf5\xc6\x77\x09\x28\xcb\xb5\xd7\xa8\x1f\x99\x26\xe4\x23\xa9\x20\x7e\x5e\xfb\xe1\x74\xf0\x9c\x52\x9e\xb7\x61\x89\xfd\xa2\x8a\x32\x5c\x72\xe4\xca\xc1\x17\xea\x8e\x28\x11\x11\xa2\xbc\xb4\x10\xf6\x58\x29\x1d\xb6\x70\x6f\x27\x69\x29\x44\x0b\x51\xca\x57\x48\xa3\x8f\x1b\xb7\xba\xb0\xd0\x5d\x8d\x0a\xb2\x51\x51\xca\x89\x6f\xa9\x46\xcf\x5b\x0d\xee\xc0\xde\x97\xba\xcb\xac\x8c\x20\x18\x1a\xef\x4a\xdc\x59\xf7\xb5\xb7\x19\x65\x39\x35\x49\xe3\x38\x4a\x18\x2a\xbf\x34\xe7\xab\xaf\x9e\x13\xea\xca\x9f\x66\x30\x48\x33\x80\x96\xf0\xba\xd8\x58\x84\x4f\x74\x96\x9b\x45\xcb\xdc\x35\x14\xef\xae\x9a\xa9\x57\xab\xce\xf6\x24\x36\x49\x22\x85\x7c\x54\x5a\x20\xdc\xca\xc7\xae\xfe\x98\xa4\xfd\x7c\x56\xb5\x50\x78\x89\x44\xd0\xf8\x81\xc6\xf8\x22\xbf\x13\xd5\x85\x06\x77\x9b\x7e\x95\xa0\x88\x74\xa9\x0c\x59\xad\xc1\x57\x95\x13\x5a\x96\x12\xee\x3b\x4d\xe0\x00\x8c\x34\xe0\xab\xca\xf3\x03\xf0\x67\x8c\xc4\x3f\xd7\x7a\x88\xd7\x34\x7b\x81\xf5\x2a\x1c\x74\xd9\xd9\x4a\x1f\x9c\x2a\x3e\xc1\x4c\xaf\x05\x6b\x49\x1a\x82\x3c\x8c\x84\x67\xab\xc4\x5d\x9a\xa8\x9e\xf9\xbd\xdd\x7c\x94\x66\x45\x58\x22\x3b\x17\x82\x01\x5d\x8e\xbb\x68\x17\xe0\x9c\x54\xd4\x4e\x3b\x31\x84\x58\x12\x9b\x1f\xba\x1d\x24\xb7\x0f\x90\x8f\x32\x26\x5a\x6b\x56\x3d\x50\xa9\xfe\xd9\xa9\x52\x06\xfd\xd8\xbd\xbc\xac\x2c\x46\xbc\x53\x39\x9b\x44\x4f\xd1\x39\xaf\x5a\xf9\x2b\xca\x21\x8f\x15\x7b\x68\x46\x8a\x7a\x8f\xac\xf1\xa3\x74\x62\x07\x65\xdc\xd1\xda\x40\x53\x5d\x78\x93\x45\xa8\x3f\x08\x3b\xca\xfe\x75\xaa\xc0\x92\x17\xd5\x0e\xf9\x5f\xfe\x3d\x60\xb5\x1c\x93\x7f\x17\x17\x5b\x7f\x97\x6b\x07\xba\x7e\x88\x20\xe0\xc9\x75\x5f\x1e\xfc\xd5\x4f\xf5\x14\x24\xfe\x7a\x9d\x16\x1a\x8e\xa4\x9c\x22\xf2\x08\xf4\x90\x44\xec\x5a\xd9\x74\x45\xf9\xb0\x04\x46\xd0\xfb\xff\x07\x5a\xb7\xe2\x93\xee\x55\xb9\x66\x24\xe9\x4e\x2b\x9f\xc9\xdb\x0a\x4d\x7c\x5b\x11\x2e\xe3\x28\x4d\x66\xa9\x3e\xdb\xda\x9e\xed\x3c\x4c\x57\xc4\x15\x15\x6c\x1c\x47\x79\xf1\x1f\x09\xae\x9b\xbe\x19\xb9\x8d\xc9\x0b\x6d\x69\x8e\x37\x87\xcb\xca\x98\xeb\x72\xa3\x26\xb8\x6b\x17\x47\x70\xf4\xc6\xb0\xb2\xfe\xb5\x16\xe5\xf9\x6b\x35\x52\xc6\x66\x94\x19\x28\x8c\x8a\x5c\x86\x27\x22\x9c\x54\xaa\x58\x5f\x6e\x5c\xd8\xae\x5d\xd5\x62\x65\x07\xca\x9f\x04\x83\x47\xb0\x83\x0a\x5a\xc2\x36\x00\x4e\x6c\xf0\x9f\x2b\xa9\xcf\x7f\xde\xd6\x55\x9a\x94\x71\x6e\x11\x3c\x3b\x41\x36\x17\x56\x5c\x0b\xd4\xda\x36\xd5\x2e\xa5\x79\x99\x0d\x6d\xc2\x68\x31\xb4\x32\x30\xd8\x7c\x05\x69\xce\xfd\x6c\x0b\x42\x20\x0f\x7d\x6b\x0f\x81\xfa\x05\xed\x38\x7c\xc1\x4d\x08\x03\x1c\xb8\x64\xcc\x4f\x50\x7c\x41\x3f\x38\xfd\x64\x4f\xbd\x5b\x48\x15\x20\x70\xb8\xae\xf0\x48\x9f\xff\x87\xbf\xa4\x05\x2c\x47\x53\x5f\x81\x1b\xd5\x5e\x4f\x56\xc0\x45\xd8\x41\x6f\xe9\x76\x04\x86\xfb\x30\x99\x9e\x22\xb3\xfb\x3b\xda\xbd\x94\xae\x55\xa8\x3d\xcf\xaa\x42\x62\x9e\xc6\x2b\xf2\x6e\x9c\x8e\xa9\xeb\xc4\x7f\xa8\x76\xa6\x55\x13\x27\x25\x42\x02\xc4\x4b\x4c\x29\xe5\x13\x95\x31\xc5\x36\xcf\x79\x53\x14\x5b\x78\xdf\x02\xbd\xda\x18\xb0\xb4\x99\xbc\x66\x22\x48\xce\x3a\xf5\xeb\x85\x05\x27\x8b\xbd\x43\x60\xd3\x9f\xfd\xec\xcf\x7a\x8d\xbe\xf7\x10\x70\x61\x81\x39\x82\x78\x0d\xb1\xe6\xe5\xa9\x47\x17\xde\xc0\xd0\x17\xab\xbd\xce\xab\xaf\x32\x22\x06\x26\xe9\x22\xee\x85\x42\x23\x7a\x22\xb7\xa8\xb0\xec\xa0\x92\xbb\x76\x71\x96\xf9\x53\x14\x73\xf8\x07\xb1\x94\x23\x8e\xfc\x18\xe5\x7d\x34\x80\x2e\x69\x40\xda\x55\x14\xa6\xd9\xd6\x12\x7b\x8e\xb4\x97\xe9\xf1\x21\xb7\xff\x29\x95\x60\x51\x99\x3e\x14\x78\x24\xe0\x6f\x05\x55\x08\x8c\x65\xf3\x34\xca\xda\x7c\x8d\x35\xe5\x1e\x85\xf7\x60\x24\x88\xf4\x7f\xb1\x5f\x28\xe2\xcd\x12\x07\x8f\x68\x32\x23\x3c\xfe\x89\xb2\x3e\x39\xaf\x65\xd1\xaf\xb5\xe1\xee\x57\xb3\x94\xbd\x64\x45\xd3\xd6\xf7\x91\xaf\x05\x7f\xd3\x97\x49\x26\x36\x2b\xd6\xfe\xf1\x7f\x1a\x9a\xbc\x34\x71\x81\xd0\x13\xeb\xf5\x4e\x6a\x9e\xf1\x71\xc3\xaf\xe7\xd5\x57\xbd\xcb\x35\x8d\x09\x16\xae\xa5\xd9\x2b\x22\xb6\x8e\x23\x15\xc5\x2b\x36\x03\x15\x0f\x03\xfc\x46\xa0\xf2\xc5\xa9\xcf\x59\x9b\xb2\x93\x8b\x8b\x24\xd7\x50\x3a\x23\x5d\x54\x46\x98\x8a\xc9\x27\x8d\x12\x02\x8d\x57\x56\x8f\xe6\x18\x59\x30\xd5\x34\x20\xf9\x44\x01\x70\x57\x4d\x96\xfc\xbf\x94\xfd\x69\x8c\x24\xe9\x79\x27\x86\x77\x67\x55\x75\xf7\xdc\x27\x49\x69\x17\xff\xbf\x53\x6b\xc2\x94\x8c\xf1\xd8\xc6\xc2\x36\x2c\x7f\x88\x54\x75\x51\x64\x97\xc5\x62\xa3\xba\xd9\x23\xd2\x07\xe6\xcd\xc8\xb7\x32\x63\x2a\x32\x22\x19\x47\x55\xd7\xac\x3f\x2d\x8c\x85\x61\xd8\x0b\xac\x17\x8b\x5d\x03\xb6\xe1\xf5\x1a\x96\xd6\x90\xb4\x3a\xa0\xa5\x2e\x32\x8b\xe2\x39\x14\x45\xcd\x0c\x39\xf7\x70\xa6\xaf\xea\xab\xba\xbb\xfa\xbe\xbb\xc6\x88\xe7\xf7\x3c\xef\xfb\x64\x45\xf4\xc2\x06\x08\x22\x62\xba\x32\x33\x8e\xf7\x78\x8e\xdf\x61\x33\xa2\xef\x60\x21\x3a\x4e\xdb\xb1\xb3\xa0\x7d\x49\x16\x8f\xe0\x96\x0a\x84\x3e\x40\xe4\xb7\x53\x42\x3a\x4a\x56\xd2\x65\xe1\xa9\x63\x47\xbf\xa2\x46\x0c\xe3\x2a\x84\xd3\xe5\x97\x9c\xbf\x5b\x0c\x66\xaa\x41\x86\x91\xf1\xc8\xba\xc2\xd7\x9f\xa4\x37\x48\x83\xe4\xa3\xe7\x3b\x1e\x09\xc0\x65\x60\xd1\x72\xdb\xf9\xf8\x16\x67\x17\xdb\x45\xba\x6a\xb2\x1e\x0a\xdf\x48\x51\x3e\x54\xbe\x53\x1f\x2a\xc8\x01\x39\x8b\x3e\x55\x4d\x4c\x4e\xaa\xf0\x94\x05\xe2\x46\x97\x83\x0e\xd0\xed\x89\xd6\xee\x47\x4a\x03\xe3\x6d\x65\xc6\xb0\x5b\x65\x3c\xb7\xc7\x4a\x2d\x61\xd7\xba\x5a\x99\x37\x29\x92\x67\x62\x05\xba\x24\xa8\x0e\x30\xb6\x15\xff\x32\xbd\xae\x96\xd8\x63\x28\xe0\x8a\xa3\xaf\xc7\xde\x6d\xa8\xd5\xb0\x4c\x72\x6b\x93\x69\x0f\x85\xdb\xdd\xa9\x45\x02\xf2\x75\xfe\x5d\x9f\xab\xe1\x12\xab\xd4\x23\x4d\xb1\x57\xe3\xc2\xae\x28\xe5\x9d\x2b\x0d\xd2\x39\x55\x30\x34\x62\x06\x84\xe2\xab\x3b\xdd\x92\xda\x94\x7d\x89\x95\x28\x5a\x9a\xe2\x35\x56\x70\x34\x5d\xed\x1a\xd8\x78\x64\x7b\x8f\x54\xaf\x49\x50\xd5\xbe\xaa\x7a\x06\x95\x71\x07\x9f\xac\xbe\x42\xd8\x01\xd5\x4d\x62\x03\x03\xd9\x9c\x86\xed\x3f\x6c\xa3\x2a\x2d\xba\x6c\xbe\x40\xc1\xf5\x7a\x29\xb2\x37\x74\x29\x73\x9b\xe4\xdc\x43\xd0\xba\x36\x02\xe1\xf0\x9b\xe4\x52\x94\x0f\x18\x51\x85\xfc\x14\x10\x54\x3e\x5e\x7f\x5a\xc5\x07\x2b\xe4\xd3\xa8\x8c\x07\x27\xd7\x94\xe7\x6b\x24\x9d\xf9\xf9\x43\x08\x26\xb0\x9c\x00\x88\x88\xd2\x10\x9a\x73\x58\xcb\x5f\x57\x22\x33\x99\x5d\xb1\xb1\xcd\x28\x1f\xde\xbe\x5d\x3d\x97\xed\xdb\xb5\x77\x72\x60\x01\x64\x32\x7c\x39\x26\x2b\xec\x48\x90\x68\x00\x8d\x29\xe4\x31\x67\xbb\x1f\x97\x69\x46\x53\x0d\x55\xe0\x07\xd8\x42\xf8\xc4\x05\x99\xd5\x3b\xac\xf6\xe0\x29\x9f\xf3\xa2\x24\x8f\xb0\x1e\xf0\x77\xdc\xd0\x74\xc7\x63\x66\x6c\xb6\x1a\x81\xf5\x8d\xdc\x9a\xc3\x7c\x3e\x09\x7c\x2d\x76\x54\xc6\x4c\x85\xd7\x74\x59\x3e\xae\x29\x1c\xbd\xd0\x36\x11\xde\x0e\x13\x33\x03\x4f\x08\x3c\x5b\xcb\x67\x5d\x7d\xd6\xe4\x2c\xd3\x83\xcc\x77\x8a\x96\x25\x54\x5d\xb8\x7f\x8e\x17\xfc\x49\x53\xd1\x60\x29\xca\x04\x2b\x88\x8a\xdf\x0f\xc6\x8a\x01\xf5\x83\xc0\x2b\x3b\x89\xa1\x43\x94\x26\x33\x0a\x26\xf6\x11\xb5\x47\xa5\x7b\x47\x9f\xe5\x7f\x40\x29\xc8\xf9\x0b\x3b\x54\xfd\x9f\x7b\x33\xfb\xd4\x14\xd3\xfe\x7e\x21\x4f\x2f\x9a\x9e\xba\x53\x8a\x35\x0f\x71\xf7\xf1\x86\xcd\xe9\x50\x7b\x29\x0d\xcb\x5c\x36\xa7\x09\x81\x3f\x11\x49\x50\x6f\x25\x4d\x0a\xe4\xf6\x12\x80\xd3\xd7\xbb\xc8\xdc\xed\x2b\x67\x94\x5e\x7e\x5d\x74\x6c\xee\x70\xbb\x1f\x99\xa4\x90\x12\x26\x1e\xf9\x34\x82\x5a\x54\xf6\x79\x81\x45\x61\xf5\x03\x95\x7a\x8d\xd2\x18\xf2\xc5\x4a\x2c\x0a\x5c\x13\xa9\xcf\xd5\xab\xb7\xe0\xa3\xa6\x45\xb4\x62\x1f\x2e\xb2\xad\x7a\x9f\x36\xae\x72\x0e\xc5\x9d\x62\xc9\x58\x81\x48\xf8\xe9\x1e\x47\x85\xcd\xb8\xe2\x8d\x5d\x06\x0e\x03\x7c\xdc\x64\x2b\xd8\x8d\xd3\xd5\x29\x3f\x3c\xb7\x75\xad\xf5\xb8\xa2\x41\x4e\x75\xfc\xcf\x8c\x6c\x36\x30\xa3\xfc\x31\x0a\x07\xd1\x20\x38\xa9\xdb\x6f\x27\xc7\xca\x04\xec\x9c\xf6\x97\x44\x38\x89\x52\xf0\x03\x04\xb3\x7c\x82\xa5\x15\xb1\xc2\x2d\xd5\x12\xfe\x2e\x2d\xb3\x7c\x1c\x78\xad\xd8\x73\x14\x00\xa0\x30\x32\xd5\x99\x70\x17\x24\xc3\x21\x3b\x5d\x45\xb4\x88\x02\x61\x32\xa4\x89\x40\x8e\x35\xe5\x64\xfc\x36\x95\x21\xef\xc0\x46\x89\x1d\x9a\x04\x90\x1c\x5c\x13\x6a\x62\x7c\xec\xf4\xa7\xc2\x81\x35\x23\x80\xcf\x0e\x72\x6b\xea\xba\x12\x55\xbc\xae\x6c\x0f\x97\xd2\xb4\x18\x44\x71\x9c\x73\x4f\x47\xba\x03\xf4\xbc\x51\x75\x7a\x5d\x49\xb3\xbf\xae\xb9\x23\x1a\xac\x43\xa5\xa5\x1c\x12\xa1\x62\xbf\x4e\x3f\xaf\x1d\x7f\xb5\x5c\x28\x2e\xe5\x74\x2d\xa8\xab\x92\xbf\x22\xb3\x66\x18\x47\xae\x92\xa6\x55\x64\x04\x24\x5f\x33\x40\x9c\xab\x06\x40\x3e\x30\x19\x86\xaf\x03\x6e\x38\x8a\xeb\xf9\xda\xcc\x7e\xf9\x65\xe6\x7e\xc5\x80\x7a\x6f\x5f\x66\x67\xe1\x9d\x7f\x38\x3f\xdf\xb6\x49\xbf\x8c\x97\xb8\x98\x21\x52\xea\x34\xe0\xf9\x44\x39\x7b\x8e\xd2\x34\x9b\xf6\x7c\xa0\xf3\x93\xa6\xba\x0b\x5e\x96\x9d\x1e\x26\x96\xb0\x99\x5a\xb5\x8c\xb6\xde\x38\xe6\x1d\xb5\x49\x35\xe9\x61\xea\xaa\xa3\x74\xa5\x8a\xf8\x5b\x3e\x80\x3c\x1e\x28\xf7\xbe\xe3\xae\x35\xd4\xb5\x26\xe9\x9a\x38\xe6\x32\x88\xa6\x05\x4b\x69\x5a\x79\xda\xa5\x49\x1e\xd9\x32\xfb\x7f\xe9\xdb\x37\xe1\xfe\x90\xe6\xca\xdb\xf5\x63\x65\x03\xf3\xb1\x0b\xa7\xbb\x66\x60\x86\x46\x56\x3b\xd4\xb4\xe0\x3b\xeb\x5c\x6f\xab\x5b\xc0\x76\x49\x52\xbf\x1e\xfd\x45\x78\x88\x8c\x61\xd7\xd8\xb8\xa1\x72\xcd\xc7\xde\xa3\x38\x35\x3d\x26\xe1\x3a\x2d\x6f\x27\xa1\x70\x01\xc1\x2b\x4b\x43\x8d\x9f\xf0\x19\x77\xba\x0c\x18\x9a\x2b\xe9\x2e\xce\xba\x92\xae\x6f\x19\x8e\x06\x69\x62\x89\x3d\x8f\xfd\x8a\xcd\xd8\x51\x7e\x87\xec\x34\x2a\xa3\xd7\x69\x36\x20\x08\xb8\xa3\x90\x39\xf8\x62\xe1\xbe\x7a\x0c\x47\xdf\x16\x3c\x3d\xb9\xf9\x10\x28\x44\xdb\x3b\x81\x97\x4a\xdc\xd4\xa9\xac\xa6\x5d\xe5\xc3\x7c\x4a\x19\x02\x20\x96\x44\xad\xef\x69\x24\x20\xc0\x15\x3c\xdf\xa9\xe7\x99\x73\xed\xd8\x2e\x15\x34\x9e\x9d\xf3\x90\x77\x18\xc5\x68\x51\xd2\x50\x73\x72\xe2\x1a\xf5\xb6\x6b\x93\xbc\x5b\x66\xfd\x69\x97\xdd\xfc\xd7\x27\x70\xa5\x42\x20\xf0\x1a\x54\x58\x1d\x20\xae\xb0\x51\x9b\x88\x07\x16\xa0\x18\x9b\xc6\x90\x30\xe6\x1e\x1d\x52\x08\x76\xdc\x1e\xeb\x92\xd6\x33\xca\xe8\x21\x8e\xa3\x34\xc9\xf7\xe0\x49\x62\x7d\xdd\xd5\xd1\x90\x46\x15\x54\xff\x11\x2d\xea\x7c\x8c\xb8\x03\xd7\xf4\x9a\xde\x10\x2f\x34\x4a\x03\x90\x11\x66\x5e\x64\xa2\xed\x20\x81\xc0\xe6\x04\x66\x64\xb3\xa9\x63\xf2\x4a\x99\x17\x51\xc8\x05\x37\x2c\x5b\x30\x6f\x40\xe7\xf7\x4f\x02\xa5\xc2\xf8\x83\xa6\xb6\x6d\x52\xc6\x71\xb4\xb4\x06\x9e\x1c\xf2\xfa\x5b\x93\xca\x72\xd5\xb7\x09\x0f\x40\xc1\xa7\xa3\xa5\x25\x9b\x41\xcf\x92\x15\x02\x51\x48\x38\xa5\x4c\x73\x4e\xa9\x4a\xb0\x3d\x4a\xe1\x1a\xe8\xf8\x78\xa7\xb7\xe9\x35\x22\xc2\xe0\x2c\x4c\x64\x44\x7d\xfd\x92\xb7\x72\xfe\x44\x6d\x09\x23\x69\x05\x9b\x45\xa3\x41\x15\x32\x08\x2d\xc6\x61\xe8\x7c\x23\x69\x57\xad\x5a\x51\x85\x0d\x26\x2e\xa2\x61\x9a\x59\xbd\x64\xea\x76\xde\x7b\x93\x5b\x56\x68\xf3\x7c\x1f\xdd\x01\xeb\xf2\x60\x20\x21\x77\x7c\x30\xb1\xdf\x54\xd3\x1a\x91\x27\xb3\x1c\xdc\x3f\x2c\x8a\xc2\xe8\x7d\x65\xee\x77\x76\xac\x59\x5c\x3b\x37\xb9\x2a\xa4\x1c\xa5\xa3\x32\x56\x84\x36\x7e\x27\xe8\x47\xc9\x0b\x7a\x5c\x99\x8c\x87\x58\x78\x31\xeb\x4f\xaa\xf7\xc8\x77\x88\x9a\xec\xe5\x40\xf3\x82\x47\x51\x26\x70\x78\xdc\xd4\xf1\xb1\x92\xf8\x3d\x1e\xec\xd4\x22\x61\xe0\x08\xc2\xf3\x77\xe8\xd5\xb3\x0f\xba\x36\x95\xbe\x14\xec\x7c\x6d\x44\xdf\xb6\x59\x3e\x82\xac\x10\x2d\xf6\x42\x14\x6f\x79\xd2\xb8\x8a\x1f\x87\x65\x51\x9a\x98\xf2\x76\x36\x0e\x0d\xfc\xea\x70\x69\xac\x24\x90\xce\x63\xfa\xf1\x49\x93\x1f\xec\xaa\x8d\xfa\x03\x51\x35\xe7\xb4\x96\x26\xf6\x04\x4c\x04\xf9\xcb\x4d\x25\x23\x92\x17\x26\x42\x8b\x0f\xcb\xe2\x6d\x4c\x2f\x3e\xd1\x7a\x8a\x26\xde\xe7\xa1\xd6\xcf\x75\x3c\x4e\xe9\x01\x91\x50\xd9\x9c\x6c\xac\x84\x9e\xff\x44\x6d\x12\x57\xf5\x02\xc2\xb9\x22\xea\xba\xf7\x78\x49\x90\x92\x9f\x9f\x5f\xcb\x36\x8e\xd3\x3e\xbd\xba\x6d\x1a\x4c\xdb\x5a\xec\xa1\x28\xb3\xae\x48\x45\x79\xcd\x05\x4f\x44\xb9\x58\xab\x57\xcc\xcf\xb7\xc3\x32\x2f\xd2\x61\x4b\xc9\x0e\x5d\x50\xee\x5d\x75\x2d\x42\x22\x96\xae\xd8\xb0\x55\xdb\xe3\x05\x0a\xe6\xe3\x48\x6b\xfa\x36\x4b\x6c\x9e\x53\x04\x28\xb5\x01\xfa\xa0\x2b\x1a\x38\xe9\x65\x7e\x04\x7c\xa2\xe0\xe1\x5d\x53\x98\xa4\x6f\x72\x92\x10\xf7\x76\x0f\xb3\x72\x5c\xe3\x86\x7a\x71\xdc\x25\xd7\x6a\x13\x9d\x29\x60\xbb\xf8\x78\x67\x49\xe1\x57\xaa\x95\xe6\x50\x4b\xcb\xa6\x06\x2a\x57\x52\xef\xfe\xcb\x8b\xff\x39\xfe\x4c\x3c\x8d\xe9\xda\xc5\xd4\xf8\x19\x0f\xc6\x2e\x6c\x99\x89\xd6\x19\x42\xe0\xef\xd3\x57\xf2\xb1\x4a\xcf\x32\xdb\x37\x99\x33\x64\x16\xc3\x9e\x96\x37\xef\x71\x01\xda\xc8\x44\x89\xe7\x7a\x36\x89\x06\x38\x9d\xc9\x41\x6a\x73\xea\x1f\x39\xfe\xb6\x77\x50\xdc\xdb\xf1\x90\xd2\x4f\xd4\xbd\x99\x28\x7e\x92\x96\x3f\xe0\x92\xb9\x7a\xe7\xca\x7d\xfb\x45\x11\xf1\x18\x05\x2f\x08\xdf\xaf\xe1\xad\x62\xb7\x7e\xa2\xa3\x32\x50\xf8\x4d\xe2\x76\x1f\xe9\x28\x71\x27\x96\xda\xc6\x77\xfd\x98\x5e\x28\x5e\xcb\xf4\xba\xa2\x8a\x3e\xb2\xee\x9b\xed\x84\xb4\xa9\xe2\x71\xb4\x03\x44\x57\xc6\x87\x64\xdd\xb4\xb7\xb6\x8f\x3e\x8c\x44\xe2\x7d\xbc\x16\xf1\x93\xd5\x8c\xa1\x37\xe9\x2d\xa0\xee\xc7\x38\x1d\xe7\xd2\xe8\x58\x37\xd7\x26\x1c\x1b\xe9\x31\xf0\x17\x2b\x0d\x92\x6e\x59\x14\x36\x5b\x22\x6d\x5f\x8f\x14\x7f\x93\xbe\x46\x4a\x47\x82\xde\x58\x1d\xd8\xcc\x12\x3e\x9c\x83\x6b\xc4\x84\xa8\x2b\xf3\x71\x6d\x92\x52\x45\xbb\x88\x32\xdd\xf8\x42\x79\x4b\x60\xf8\xf5\x9d\xa4\x6d\xc2\xe5\x24\x5d\x8d\x6d\xaf\xcf\x3c\x77\x2c\x7a\x77\x14\x12\xf2\x8e\x56\xea\xb7\x79\x1e\x0d\xd9\xe0\xd7\xd5\xdc\xee\x28\x63\xba\x3b\x35\x40\x62\x95\x8a\x94\xdd\x2a\xd0\x8e\x0a\xcb\x66\xda\x12\xc5\xf8\xae\xe3\x66\x13\xdc\xad\xc8\x4c\xcf\x49\x91\x62\x3d\xbe\xa1\xba\x1c\x48\x68\x26\xc4\x8f\xa5\xe8\xe5\x78\x0e\xab\x26\xeb\x4d\xfb\x5c\x79\xba\xe3\x3f\x72\x4b\xad\xb2\x13\xd2\x68\x3f\x57\x6e\x95\xc4\x41\xdb\xa7\x18\xf0\x2c\x69\xe4\xcc\xff\x5c\xb5\xef\x01\xde\x3c\x77\x73\x02\xa5\x3c\x76\x49\x47\xd6\x2c\x67\x27\xf4\x16\x45\x62\x73\xf0\xb3\xd0\x24\x26\xb1\xa6\x35\xc1\xc1\xf7\xd8\x88\xb7\x03\x5d\xb7\xb0\xdd\x18\x4b\xb9\x08\x63\x9c\xa4\x32\x02\x1f\x8f\xdb\xf5\x1d\x2f\xb3\x45\x94\xa4\xdd\xd8\x54\x2b\xba\xa1\x7d\x4f\xb8\x8c\x0a\xe8\x08\xdd\x00\x6e\xc5\x35\x0a\x6f\x86\x26\x8e\x69\xd1\x40\xfc\xf3\xba\x42\x52\x20\x33\x62\x20\xa3\xe2\x0d\x67\x76\x14\x9b\x90\x28\xee\xa8\x72\x29\x5d\xa2\x43\xae\x21\xea\x23\x87\x0b\xca\x3e\xe1\x42\x63\x24\x04\xec\xce\x6a\xd4\xb3\x08\x5b\x91\xe4\xdc\xa7\x6b\x01\x22\xe6\xd1\x8e\x27\x39\x90\x90\xa5\x0f\xe1\x96\xa2\xc2\xbb\xbc\xb8\x56\x83\x03\x10\x6d\x36\xc9\x41\x77\x53\x2b\x8b\x6f\x23\x09\xd2\xdf\xec\x52\x66\x12\x46\x0d\xd3\x63\x12\x69\x43\x55\x59\x81\x0b\x1f\xd0\xd7\x97\x1d\xa2\xd6\x0e\x47\x03\x93\x47\xd8\x0e\x51\x59\xbc\xa8\x65\xfd\x1f\xa8\x52\xed\xe3\x34\xa0\x45\xad\x6c\x02\x6c\xe1\x5d\x80\x9d\xb0\x95\xeb\x49\x6c\xaa\xed\x37\xb3\x51\xb2\x94\x66\x21\xf4\xb4\xb1\xa4\xfd\x31\x16\x6a\x3e\x69\x82\x27\x8c\x6c\xbc\xc2\xc0\x21\x44\x30\xa7\xe9\x5d\xf1\x71\x53\x2f\xc0\x64\x69\x6e\xa1\x57\x27\x75\x7b\xe5\xbf\x5b\xa7\xe3\x2f\x2c\xb4\x97\x62\xb3\x92\xb2\xfd\x5d\x93\xcd\x83\x4b\xcd\xa3\xdc\xc2\xd2\x06\xb0\x24\x44\x53\xdb\x77\x95\x0c\xff\x39\x45\xca\x1e\xa4\x59\x6e\x19\x4b\x8e\x32\xee\x6d\xcc\x4a\x3e\xc1\x14\x97\x65\xb3\xe5\xb4\xdf\xd9\x62\x08\xcb\xf5\xd5\x66\x40\x55\xcf\xc6\xe5\x51\xcb\x32\xb7\xa4\x3d\x53\x9b\x83\x12\x78\x54\x9b\xb3\xcd\x0a\xae\xb4\x0a\x66\x50\x03\x08\x6b\xf2\x41\x54\x16\x4f\x7a\x33\x9e\xc3\x74\x15\x6f\xca\x19\x29\x2c\xce\x72\x0e\xfd\xd7\x48\xa8\xb1\xfd\x6d\x6a\x53\x92\x93\xea\x51\x64\x36\x2b\x13\x4e\xda\xc0\xa2\x00\xa3\x93\x8f\x5d\x3b\x22\x49\x0b\xdb\x4d\xd3\xe5\x19\x05\x37\x3c\xa3\xf9\x9a\xa7\xc6\xca\x63\xee\xb2\x02\x7a\xec\xa1\x11\x8a\x56\xf4\xbb\xb5\x71\x71\x70\xf1\x60\x7b\x60\x4d\x6f\x4a\x3b\xae\xd0\xa7\x81\x0f\xb8\xac\x8a\x56\x3a\xb2\xfa\x8d\xcf\x1f\xc2\xa5\x60\xb5\xba\xaf\x5a\x03\xff\xfd\x33\x1d\xcf\x53\xb9\xa9\x42\xc7\x4d\x8a\x4a\x50\xed\xf8\xa9\xaa\x31\x0f\xa3\x9e\x35\xdc\x04\x46\xf7\x0b\xf3\x92\x8f\xdd\xb6\x4c\x34\xe1\xcc\xeb\xea\x8a\xca\x14\x5d\x07\x9f\xd4\xb2\x9b\x17\x94\x58\x82\x93\x47\x13\x93\x4c\x35\xa9\xbf\x1d\x3c\xa7\xf8\xc8\xe4\x23\x48\x86\x52\x0b\xd2\x9b\xd8\x52\xfa\x43\x1a\x73\x9c\x17\x76\xa8\xa9\xc2\xaf\xd3\xd3\xe3\x63\xc5\x36\x1d\xa5\x79\x6e\xf3\x9d\x52\xa7\xae\xac\x0f\x1d\x45\x8c\xf3\x1b\x2a\x58\xca\x52\xd3\x9b\xf1\x0b\xc7\x3b\x88\x95\xb0\x2f\x8c\x03\x65\x13\x0f\x56\x8a\xf3\xad\xf7\xa8\xed\xcd\x09\x05\x82\x91\x49\x1e\xf5\x94\x93\xc7\x69\x71\x66\xc6\x09\x46\xb2\xcb\x2e\x1c\xc9\x61\x1b\x81\x17\x76\xbf\xab\xe3\x49\x4d\x7d\xcf\x13\xbb\x34\xf6\xd0\xcc\x0f\x50\x89\x67\xcc\x3b\x36\x77\xe4\x91\x97\xd4\x8b\x67\x4f\x55\xc4\x24\xa8\xd7\x7c\x40\xb1\x0c\x1f\x2b\x54\x5c\x68\xe2\x27\x54\x47\x1a\x82\xb2\x78\xe5\x2f\x92\x56\x82\xf4\xea\xab\x8f\xe3\x16\x8e\xa1\x81\x80\x01\x7a\x5b\x8b\x20\x80\xdd\x0f\x08\xc7\x03\x2d\x6c\xc0\x3b\x30\xea\x4b\x7b\xd7\x5d\xe0\x7c\xea\x79\x66\xf4\x09\x57\xc4\x57\x67\x3f\x19\x6b\x1f\x0c\x45\xb6\x58\x31\xd9\xda\x94\x5a\xd5\x4e\xab\xc6\x2d\x54\xb5\xe5\x19\xfa\xbb\xb4\xff\xde\x2c\xc6\x07\xa2\xa5\x7f\x34\xde\x49\x34\xc0\xa4\x5c\x6f\x92\x23\x49\x97\x96\xc8\x78\x9e\x43\x56\xc1\xea\xd0\xdd\x89\xfe\x6c\x3d\x36\x3c\xd4\x1e\x46\x79\x6c\x29\xce\xc3\xd5\x0a\x5c\xd5\xff\xf4\xb6\x92\xd3\xbf\x5a\x5b\x41\x8e\xcc\xb6\xf3\xa2\x0c\x97\x49\x57\x18\x3f\xf4\x36\x16\x70\x0c\x98\xbb\x4a\x6f\x0f\xd6\x30\x8e\x2b\xbf\x38\xbb\xe8\x24\xd8\xd5\x84\xb2\xb6\xb7\x47\x25\xba\x3f\x53\x42\x4e\xa7\xc7\x8a\x4b\x71\x17\x3f\xa3\x35\xf2\x25\x92\xa7\xbb\x16\x37\x70\xc5\xf8\x36\x59\x46\x86\x17\x9e\x43\xa2\x22\x74\xdd\xf7\xe2\xfd\x7b\xaa\xe5\xc0\x42\x77\xe9\xda\xf1\xcb\xf7\x03\xaf\xb3\xfa\xbd\xf1\x73\xfc\x24\x8a\x81\x49\x96\xf3\x7e\xb4\xb2\x43\x2c\x6a\x02\x94\x7e\xc3\x85\x99\x26\x29\x06\x69\xc2\x36\x3a\xe2\xb3\xea\xe1\x3d\x67\x68\x28\x8b\x88\x48\x4d\x3f\x7f\xee\x70\x3b\x4f\x33\xcb\x8c\x28\xd1\x33\xd1\x3a\x27\x0d\xad\xb9\x5e\xda\x97\x66\x91\x2a\x3a\x0b\x76\x1f\x4b\x90\x63\x48\x54\x97\x25\x4d\xb6\x9d\xab\xea\xe2\xec\x62\x3b\x4c\x87\x23\x92\x51\x95\x56\x8f\xd0\xdb\x5a\xce\xdd\x43\x93\x19\xbb\x65\xf1\x94\x87\x17\x70\xab\x0e\xe1\xca\x9f\xd1\xad\xaa\x3a\xf4\xd7\x74\xfd\x4f\x7c\xa7\xf7\x21\x5f\xc5\xdb\x68\x81\xf9\x27\x7a\x69\x5e\x3f\x87\x4d\xc7\x85\x4a\xae\x94\x0e\xaf\xeb\x8d\x15\xf5\x62\x07\x01\xae\x46\x22\xb6\x4b\x66\xb5\x39\x46\x9a\xf3\x10\xfc\xc0\xbd\xb8\x6e\x96\x96\xfd\x41\xf1\x88\x27\x2f\xc3\x89\xd1\x01\x7b\x95\x45\xb4\x32\x63\xdb\x52\x24\xa4\x47\xe1\xf6\x48\xb3\xa2\x7c\xba\x53\x2d\x34\x80\x7c\xff\x25\xd5\x68\x5c\xbf\xdd\x5b\xa6\x3f\xbf\xa3\x23\x19\x25\x79\x04\x3c\x31\x86\xc8\x55\xbc\x30\x3e\x51\x04\xdc\x15\x9b\x14\x19\xfa\x49\x13\x25\x47\x3e\x71\x25\xc7\xae\x49\x96\xb3\x72\x54\x84\x6b\xd3\x93\x66\xac\xf4\x0a\x40\x66\x3f\xa5\xc0\xb9\x2c\x59\x09\xf6\xd2\x7b\x4d\xa3\x2d\x4d\xe2\xb5\x69\xe5\xa3\xb3\xa5\xf0\x13\x4f\x52\xc1\x80\x52\xb2\xbb\x9f\x56\x35\xb9\x2d\xa5\xa4\xe8\x72\x95\x7c\x2f\xfd\x14\xb6\xac\xe9\x8e\xb6\x9d\xa1\x27\x24\x4e\x8c\xd5\xa3\x73\xae\x21\xca\x8f\xc6\xeb\x6c\xbe\xa3\xd5\x05\x3f\x68\x0c\x79\x33\x9b\x87\x29\x06\x34\x4a\x0a\x1f\x2a\x9f\xb2\x0f\x95\xe2\x58\x37\x4b\x93\xa5\xa1\x61\x0b\x0c\x09\x1f\xf1\xec\x44\x31\x48\x31\x03\xae\x04\x0a\x6d\x17\x85\x62\xb3\xc0\x8a\x20\x4a\x4f\x6e\x23\xf8\xec\x43\x02\x56\x13\x17\x36\xab\x32\xae\x15\xcb\x55\x25\xe7\xf3\xee\x8b\xc8\x4d\x0a\x8e\x6d\x7b\x74\x94\xb2\x20\xc3\xac\xb3\xba\xf6\x7b\xd0\xff\xa6\x82\x9f\x28\x29\x6c\x46\x38\xb3\x96\xef\x1e\xc0\xcb\x8f\x8f\xc7\x1e\x8f\x96\xd8\xac\x47\x6f\xe7\x10\x47\x3c\xec\x9f\xce\x1b\xc7\xd8\x33\xb4\x2f\xf0\x93\xd1\x5b\x0a\x66\xfc\x1d\x7a\x57\x2e\x6f\xaf\x1e\xa6\x28\x53\x37\xa9\xb9\x94\x49\x62\x63\xb7\xc2\x8a\xe2\xa5\x2f\x54\x9f\x68\x14\xd8\xa9\x36\xc7\x69\x85\xb5\x02\x83\x4c\x7c\x50\xfd\xba\xc7\xb0\x45\x04\x20\x75\xc5\x27\x12\x7e\xc8\xd4\x0a\x2f\x72\xc0\x3e\x49\xa9\x57\x52\x0e\x2c\xb4\xc3\x81\xcd\xca\xee\x44\x35\x09\xa5\x40\x3e\x9e\x90\x3b\x5a\x31\xf1\xbe\x09\x95\x3b\x1a\x8c\xe2\xf3\xaa\xb4\x32\x81\xab\x03\x7a\xf6\x24\x8d\x72\x2d\x5e\xe0\x24\xdc\x9d\xc5\x34\x32\x50\x00\x6c\x5f\x77\x5c\xa5\x51\x6c\xd6\x56\xb3\xa8\x3f\x28\x98\xed\x83\xb9\x7e\x36\x50\x13\xff\xec\xce\x1a\xec\xe2\xec\xa1\xf6\xe2\x6c\xcb\x27\xbf\xe8\x25\xf2\xb1\x8a\x5f\x47\xd6\x8e\x10\x74\x8b\xd7\x8d\x92\x1b\x3c\x1f\x3c\xa7\x40\x44\x76\x25\x4a\xcb\x1c\x6b\xc6\x1c\x87\x67\x2c\x95\x33\x41\x98\xc4\x30\x44\xe6\x8d\x7d\xf3\x91\x9a\x2c\xe2\xcb\x2f\xb7\x63\x4f\x77\xd8\x26\x83\x8b\xed\xbb\xca\x36\x36\xb3\xa8\x3b\x53\x36\x41\x5f\x8b\xe7\x82\x2d\x98\x8f\x1d\x1c\x29\x2f\x93\x35\x05\x8e\xdb\xd0\xe0\xa9\x0d\xe5\x71\x32\x34\x45\x35\x7b\xf6\xd1\xe6\x24\xc5\xb0\xea\x05\xa0\x31\x7d\x7a\xec\xe5\x3f\x79\xd2\x62\xb7\xbe\x4f\x6f\x0c\x43\x10\x98\x6a\x71\xfc\xf7\x45\xfe\xcb\xc1\x84\xf6\xc3\xb3\xae\x78\x1c\x8d\xba\x65\x14\x3b\x93\x2c\x4d\x6b\xe7\x63\x8d\x56\x8f\xe3\x74\xd5\xeb\x6a\x36\xe5\x36\x0d\x50\x0b\x93\x0c\x6c\x99\xc3\x09\x5f\x5a\x66\xe7\x03\xcf\x07\x3c\xef\x8a\x27\x65\xd2\x27\x9d\xfd\x96\x07\x86\x1f\x0f\x7c\x1b\xe0\xb8\xe7\x2d\xdb\x51\x6c\x5d\xd7\x0a\xdd\xb6\xef\xd1\x75\x4c\xb0\xc8\xb1\xb6\x9f\x57\x68\x33\x9b\x17\xa6\x1b\x47\xf9\x80\x01\x1d\xce\x79\x55\xad\x22\xfe\x7e\x5f\x49\x07\x49\x5e\xa4\xab\x28\x4f\x88\xb5\xbc\x07\x37\xbf\x45\xb1\x07\x76\xb1\x7a\x9d\xed\xc0\x42\x7b\x25\xea\xd9\xb4\xe5\xc1\x90\x30\x29\xe1\x63\x05\xb1\x78\xd5\xc4\x65\x37\x0a\xf9\xb9\x3a\x15\x72\x57\x55\x3f\xaf\xa4\x2e\x46\x59\xba\x92\x2e\x57\xd7\xbf\x28\x5c\xd5\xad\x40\xf9\x25\x6d\xa9\xde\x37\x5c\x56\x2d\x48\x41\xd8\x4a\x6e\x11\xb6\x1e\x4b\xc7\x7b\x08\x5e\xb8\xc7\xac\xdd\x01\xb9\x11\x27\xd8\x78\xd5\x48\xfe\xb0\x89\x3e\xd0\x5e\x89\xec\xea\x44\xcf\x9b\x15\x16\x65\x3c\x35\x89\xe0\xd8\xa3\x52\x22\x17\x70\xbe\x2f\x0f\x7b\x0f\xe2\xa1\xcd\xfa\xe4\xf4\xa4\xe0\x8e\x0a\x9b\xb9\x35\xb1\xfa\x65\xa3\x17\x9f\x54\x0b\xc0\x45\xba\x57\xe7\x78\x5e\xdd\x2b\xe2\x80\xb3\x60\x08\x38\x79\x23\xe7\x12\xf6\x67\xfa\x56\x2f\xa8\x89\x75\x5a\x61\x36\xd1\x31\x72\xfe\x4f\xd5\x4d\x23\x0f\xff\x63\x3c\x42\xe7\x9c\xe8\x79\x00\x5b\xa8\x51\x31\xf8\x89\x96\x5b\x44\xea\x57\x6a\x35\x77\xb7\x61\xf7\xd2\x78\x34\x68\xb5\xf6\xef\xf7\xf2\xa5\xca\x41\x47\x19\x04\xaf\x98\x5c\xca\x1a\x4e\xe6\xdd\xb7\x1a\x2f\x2a\x1c\xfc\x28\xb5\x55\x3c\xa7\xe0\x47\xa7\x68\x22\xf2\xb1\x52\x42\x1a\xc5\xd6\xe4\xb6\xe5\x95\x18\x6f\x02\x25\xcf\x27\xaa\x0a\x95\x5b\x2b\x0a\xb2\xf8\xc7\x56\x47\x79\x27\x01\x6f\xc7\x22\x5b\x0f\x05\x9b\x16\xd1\xd0\xce\xb4\xbe\x34\xe7\x08\x72\xbe\x74\xf2\xc1\xd8\x37\x2b\x90\xa7\x21\x8f\x3d\xa5\xf9\xcf\x33\x1d\x25\xc6\x98\x14\x69\x49\x16\x6d\x6a\xe7\x60\xa8\xa7\xf8\xe2\x49\x9b\x2d\xb1\x7d\x8a\x88\x78\x78\xa1\x00\x8d\xc2\x35\x1f\x2b\x3d\x7b\x53\x0c\x62\x5b\x44\x21\x88\xb6\x12\x99\x78\x6c\xe0\x85\xa6\xcd\xbb\x67\xa2\xa1\x40\xb9\x24\x1f\x53\xc1\xf6\x25\xb5\xfe\x33\xc7\x6e\x9a\x9e\xb3\x88\x7b\xf9\x91\x0e\x81\x75\x3e\x1e\x7b\xa3\xaf\x8b\x6e\xa3\x31\x65\x91\x72\xfc\x8d\x88\x13\x66\x87\x08\x2d\xb0\x33\x08\x29\x83\x2e\x01\x0f\xf5\x0f\x6a\x0b\x57\x95\xec\x59\x86\x83\x7c\x8d\x47\x11\xe3\x4f\xf9\x64\x5d\x29\x2d\xc7\x69\xdf\x24\x3b\x8a\x5d\x07\xfc\xb8\x7f\x46\xe1\x63\xe3\xb5\x21\xe1\xb2\x8f\xcc\x36\x3a\x5b\xc8\x7d\xc4\x36\x01\x7e\x57\x0c\x73\x15\x08\x14\x91\x0f\xf2\x9d\x9b\x7a\x95\xbf\x39\x01\x3c\x5b\xc9\x5f\xac\xbe\x61\xfb\xdd\x60\x02\x91\xe0\x7a\xa9\x6f\xe0\x09\x30\x1e\xbb\x49\xf3\x3c\x25\x03\xe1\x39\x5e\x29\x77\x75\x26\x77\x65\x37\xa6\xbf\x41\x6f\x42\x16\xcd\xa7\x95\xf9\x41\x5c\x0e\xf9\xb1\x38\x31\xaf\xf9\x79\x39\x6e\xaa\xca\x17\x69\x14\xdb\x42\xed\x7d\xa8\x97\x8b\x20\xd0\xa7\x15\x29\x2d\x29\x97\x4c\x58\x94\x59\x94\xf4\xf7\xd1\x70\x61\xba\xc8\xd8\xc7\x74\x28\x01\xb8\x05\xbc\x5a\x7d\xa4\xbe\x3f\xe1\x16\xed\xeb\xfe\x58\xb1\x71\x5b\x7b\x3b\x0a\x08\x7a\xb6\x56\x41\x38\xb0\xd0\x36\xf1\x52\xf5\xbf\x56\xcd\x7d\x69\x27\xf5\x1a\x76\x6c\x20\xeb\xe1\x45\x88\xe1\x18\x2e\xee\xff\x1c\x2b\xcb\x38\x34\x2f\x19\xdf\x5f\x03\x08\xcf\xcf\xb7\x97\xac\x8d\x95\xc2\xf2\x05\xd4\x1d\xf9\xa4\x41\x18\xe5\x60\x7b\x50\x26\xfd\x6a\xcd\xab\xde\x5f\x13\xc5\xb6\x21\x8f\x1b\x9a\xa5\xc8\x30\x4f\x5b\x54\x96\xe8\x77\x98\x13\x86\x2b\x46\x35\x00\x85\x0f\x99\x6f\xda\xfd\x62\x38\xb2\x05\x75\x40\xab\x3f\x76\xa6\x8b\xae\xe7\x88\x5b\xe5\x63\x6c\x4e\x52\x8d\xf2\xa5\xa4\x25\x93\x15\xc4\xad\x58\x94\xd5\x15\xab\x13\x1f\x3b\x35\xc9\x25\x53\xc6\x05\xb7\x12\xf1\xfe\x39\xf7\xe6\x13\x85\xb5\x48\x6c\xb1\x9a\x66\xcb\x58\xc5\x80\x5e\x86\xed\x20\x1f\xaf\x3b\xce\xfc\x8a\x4d\x4a\xcb\x48\x2c\x57\x60\xa9\x5e\xa3\x00\xfd\x14\xa0\xa0\xbb\xb6\xc7\xc3\xd5\xd8\x75\x58\xf0\xe9\xd5\x16\xc6\x92\x83\xf4\xe4\x5d\x5b\xc3\xb7\xf1\xff\x52\x1b\x29\xbc\xee\xc6\xce\x20\xf2\xb5\x45\x16\x79\x57\xbe\x32\xdb\x4a\x7c\x7a\xd3\xc7\xb4\x65\x37\x2f\x4c\xe2\xe0\x48\x18\xdd\x6f\xaa\x0e\xd7\x9b\x0d\x2e\x6c\x6d\xd3\x4d\x25\x2e\x9c\x9f\xe7\x11\x78\x1a\x2b\x0f\x9f\x3c\x94\xec\x69\xfa\xd1\xa8\xa5\x78\x24\xbc\xc2\xf3\x49\xa3\x45\xf8\x2b\xe5\xb0\x9b\xb6\x54\x0b\xed\x38\x3d\x19\x3e\x6e\xfc\x48\x37\x73\x8f\x42\x2f\x0f\xc8\x6e\xce\x60\x7c\xa2\x80\x71\x57\x03\x86\x32\xb3\x62\xd9\xf4\x52\xb8\x47\x7f\x35\x56\xa8\xdf\xbf\x52\x3b\x50\x98\x96\x59\x0e\x66\xdb\x17\xbc\x95\x9e\xfb\x91\x07\x8a\xb7\x50\xb7\x82\x5e\x58\x38\xd4\x1e\x5a\x93\x97\x8e\xf9\x21\x74\x6f\x45\x21\xda\xac\x2d\xb5\x73\x87\xdb\x4b\x71\xa9\x82\xf1\xb7\x03\x1f\x8c\xbf\xed\x54\x38\x46\x36\x7b\xcc\xd3\x38\x9e\x26\xd9\x0f\x67\x6b\x50\x0d\x36\xe9\x10\xd0\x73\x70\xc6\xc2\xb2\x36\xcf\xfc\x0a\xf6\x2f\xed\x1e\x8f\x51\xfc\xd8\x7a\x15\x23\xa2\x42\xbc\xa7\xa3\xba\xc9\x5b\x20\x6b\x8a\x88\x99\xa7\x5b\xde\x57\xc1\x4f\x68\x8a\x22\xb6\xd3\x0a\x3d\x78\x4e\x55\x0a\x4f\xe1\xd2\xf0\xa3\xf7\x55\xd9\xe2\x2d\xed\x8c\x60\x62\xf2\xaa\x44\x3d\xe1\x0e\x6e\x00\x0d\x9b\x3b\x63\xef\x42\x08\x2b\x06\x64\x73\x40\xff\xbb\x18\xbe\xfa\x0d\x07\x73\xa9\xae\x59\x60\x33\x74\x59\x08\xc1\xe1\xea\x4f\x97\xb8\xf0\xef\x12\x71\x4f\x18\x16\x98\xdf\x6e\x99\x73\x7c\xa6\x5f\x7c\xba\xa3\x0a\xe9\xdb\x2a\x5b\x09\xa3\xa4\xca\xbf\x8e\x4e\x2b\x50\xaa\x60\x5c\x5d\xf1\xaa\xfa\xe9\x46\xd9\x7d\x1f\xa9\xe5\xe5\xa8\x4a\x4f\x7a\x08\x33\xb9\x9c\x4b\xc1\x83\x94\x76\x1f\x06\x74\x4f\xd2\x6c\x35\x4d\x7b\x53\xad\xdf\x10\x01\x09\xf8\x4d\x41\xbe\xf6\xae\x66\x5b\xef\xea\xec\xdc\x45\x5e\x7e\xb9\x1a\xe8\x23\x8a\x58\x45\x76\xb8\xe5\x54\x51\x4f\x51\x25\x10\xdc\xc3\x5b\xc1\xce\xf6\xef\x0b\xed\xd1\xc0\x64\x43\x13\xda\x92\xe0\x01\x02\x5b\xc7\xc3\x64\x35\x0f\x0c\xa6\xab\x1a\xb7\x3e\x59\xa4\x19\x99\x78\x4f\x15\x5b\x20\x9c\xd8\x9c\xa0\x9d\xd1\xcc\x41\x47\xf8\x94\x16\x8f\xfe\xc1\x78\x42\xd3\xd5\x27\x74\x7f\xa5\x6d\x2f\x86\x29\x72\xf9\x87\xa1\xfa\x1b\x84\x35\xd3\x30\x2c\x21\xac\x29\xde\xc4\xd5\x40\x13\xd3\xe2\x9d\x7c\x21\xea\x93\x27\x66\x68\x73\xb3\x0c\xb4\x92\xa8\x41\xf8\xee\x43\xfd\x67\xf6\xef\x6f\xc7\xd6\x2c\x33\x67\xd6\x79\x43\xfa\x25\x13\x8d\x1e\xc1\x4b\x3c\x3d\xe1\x21\x65\xf3\x62\x8a\x14\x1f\x9c\x40\xc2\x81\x85\x49\xa3\x60\xdc\xdd\x9d\xa6\xad\xdc\xd7\xa6\x44\x02\x97\x95\xbf\xf8\x44\xb1\x37\x96\xa2\xcc\xce\x78\x4c\xfd\x96\x06\x6f\x5e\x54\x81\xd2\x9f\x29\x11\x30\x06\x0e\x63\x56\x5f\x09\x3c\xf6\x28\x8c\xcb\x2e\xa2\x3f\xfc\x1b\xfb\x9b\xf1\x89\x0b\xd9\xc3\x34\x7e\x91\x77\x58\x0c\x39\xde\x61\xf9\x24\xf0\xb5\xb0\xbe\xc9\xe0\x28\x37\x61\x07\x86\xbc\xf3\xc6\x84\x52\xf6\x09\x17\x15\x0c\xac\x87\xf6\x32\x35\x81\x5e\x93\xb3\x15\xaa\x1e\x1e\x5a\x1f\xbb\xd7\x15\xea\x35\x0a\xf7\xd2\x2a\x84\x55\x0c\x4d\x19\xb4\x3b\x9e\x20\x0f\x1a\x2c\x55\xfc\x80\xc4\x21\x42\x81\x0b\x3e\x20\x70\x34\xee\xe1\x0d\x15\xc4\xde\xd2\x18\xdc\x32\xeb\xa3\xa4\x2c\x43\xcd\x0b\x0b\x5c\x70\xc9\x6d\x9a\xf5\x12\xb0\xd0\x1d\x5e\xf8\x47\xea\x55\xfc\xa8\xa6\x46\xb6\x7f\x7f\x3b\x4c\xb3\xac\x1c\xb9\x4e\xbf\xd3\x5d\x74\xa1\xf1\x66\x0d\xbd\x5f\xc5\x89\xa6\xdf\xcf\x6c\x9e\xfb\xfa\x38\xb6\xa0\x13\x6a\x3b\x3a\xd1\x14\x08\x77\x6d\x68\xca\x1c\x8e\xaa\xc8\x64\xae\x29\xfb\xd9\x93\x74\x5b\x28\x6d\x3e\xa8\x45\x10\x24\xe1\x91\x9a\x5e\x5e\x18\xd0\x4a\xc5\x32\x42\xb1\x76\xde\x6a\x4a\x2b\x63\x9b\xf4\x5c\x1d\x19\x4b\xcc\xae\x75\x5f\x98\xda\xd5\xf1\xf1\xde\xd7\x4b\x93\x15\x36\xcb\x09\x08\x00\x88\x07\x97\x26\xea\x38\xb8\x3b\x84\x03\xe0\x3f\x42\x0b\x5c\x62\xf1\x27\x14\xe4\x22\x8e\x11\xd4\x22\x44\xb8\xa5\x14\xea\xcf\xe9\x2b\x67\x9f\x7b\xfe\xab\xe6\xa5\x64\xd5\x64\xbd\x2c\xed\x32\xcf\x58\x6f\xcf\x7c\xac\x1c\xf1\xe2\x34\x59\xa3\xbc\x10\x8f\x16\x51\x2b\x18\xeb\x17\x94\xa2\x0d\xeb\x3a\x88\x85\xbb\xa7\x56\xe7\xa3\xcc\x9a\xde\x23\x4a\x36\xe2\x01\xed\x36\xc8\x04\x36\xb5\xc7\xf2\x0d\xc5\xd4\xd9\x54\x12\x22\xb7\xe8\x77\xb0\x3c\xb3\x16\xa7\x54\x1c\xbd\x7e\xf1\x7b\x81\x92\x0f\xfa\x41\x53\xa3\x68\x94\xd9\xc2\x1c\x55\xaa\x8b\x67\x94\xea\x62\x23\x25\x34\x2f\xcc\xb2\x73\x0b\x41\x46\xff\xb1\xa6\xd4\x7e\x5c\xc3\xc7\x1f\xfe\x32\x95\xff\xc2\x74\x68\x69\xab\x93\x31\x48\xaf\x5e\x44\x2c\xfd\x98\xbb\x58\x13\xe5\x22\x0b\xd1\x35\x25\x62\xb3\xa1\xf0\x5b\x1b\x4d\xe2\xe1\xe0\xbe\xf4\x19\x5a\xf6\x34\xeb\xad\x29\x02\xc1\xb7\x82\x47\xa2\xea\xe6\x97\xfe\xc3\x76\xf7\xdf\xaa\x9e\x30\x36\xec\xdb\xc8\x4f\x39\x91\xa7\x0d\x18\x0b\xdb\x86\x72\x5a\xff\xbe\x32\x95\x7b\xb2\xd3\xfa\xca\x17\x19\xbc\xfc\x63\xdc\x11\x8a\xaa\xbb\x21\xb7\xec\x02\xa0\x83\xce\x9e\xf4\xc1\x78\xd2\x28\x5d\xf5\x5c\xab\x25\x0d\x17\x32\xd3\xf1\x06\x02\xbb\x09\x1a\x82\xe1\x30\xbd\xde\xfa\xfc\x6f\xba\xeb\xc0\x4b\xa0\x7d\xe1\xab\xff\x7f\xf4\x92\x91\xf7\xfc\x10\xd9\x28\xf6\xe5\x33\x18\xfd\x62\x34\xa0\xe4\x15\x66\x3a\xaa\x81\xfc\x16\x4a\x91\xce\xbe\x73\x51\x44\x05\xb8\x1b\x46\x6b\x75\xf9\xc2\xba\xdb\xc5\xfb\x9f\x02\x92\x0d\x39\xd0\xee\x8e\x12\xd4\x5d\x0f\xbc\x72\xf7\xa5\xf1\xd4\xa1\xaf\x7e\x89\x15\x94\x10\xb9\x3b\xb3\xe6\xc5\x59\x69\x2c\xde\x51\xd2\x84\x85\x19\xd9\xbc\x60\x25\x0f\xa6\x4b\xd3\xb0\x14\x80\x80\x96\x4c\x82\xd7\xd0\x24\x0f\xd3\x00\x8e\x80\xe2\xcc\xd5\xc0\x9b\x9f\x7d\xa0\xc5\x87\x1b\xcd\xac\xf3\xa2\x5a\x7b\x69\xbd\x66\xda\x1c\x5d\xb1\x50\xe8\x1a\x1a\xc4\x79\x6c\x57\x5b\x3e\xe6\xbb\xa4\x1c\x82\x2f\xd5\x96\x9a\xc5\xd9\x43\x24\x18\xa1\xfc\xff\x31\xc0\xfe\x89\x42\x51\xfd\x93\x40\x5b\xbf\x84\xcb\x76\x4d\x1b\xf4\x9e\xd1\xae\xc5\x67\x26\xc2\x39\x5b\x66\x7b\x27\xb9\x91\x3a\xfd\x6b\x29\x29\x23\xcd\x93\x9c\x24\x57\x38\x92\x24\xf4\xeb\x44\x50\xd7\x6f\xca\xa3\x28\x9c\xf6\x15\xbc\x3b\xf8\x0d\x40\x66\xce\xd3\xaa\x8d\xca\x36\x98\x1d\x48\x54\xee\x06\x5e\x53\x54\x81\xc5\x7b\xd3\xbe\xfc\xbc\x89\xaa\x2e\x9f\x8c\x3d\xb5\x0e\x0b\x12\x1f\x37\xe4\xcb\x0b\x6d\x93\xac\x15\x03\xaa\xfc\x3a\x6c\xd1\x29\xed\x95\xf2\x31\x69\x00\xa1\xde\xf5\xdd\x26\x7f\xe2\xae\x09\x0b\x9b\x45\x5c\x42\x62\x7f\x16\x25\x54\xb4\x81\x15\x69\x47\xc9\xcb\x82\x51\x8a\xdd\x41\x17\x5f\x5a\xeb\x9f\x52\x86\x8b\x99\xed\x13\xcb\x2a\x4d\xa6\x54\x84\x86\x02\xb2\x54\x8b\xe8\xed\xca\x3c\x90\x88\xc3\x64\x05\x63\xe4\x5d\x1a\x47\x58\x50\x39\xd6\x66\x51\x36\xb3\x09\x82\x60\x47\x6f\xf7\x54\xf7\xc6\x55\xdc\xac\xb8\x24\x9e\xd1\x96\x81\xa7\x82\xfc\xa1\x56\xca\x52\xa1\x52\x38\x88\x46\x5c\x16\xe6\x97\xac\x5a\x6e\x77\x94\xb1\xe0\x1d\x9a\x73\x32\x10\x3c\x53\x76\xd5\xe4\x85\x5d\x35\x85\xcd\x68\xfb\x74\xdb\x97\x57\xc8\x44\xd6\x8a\xf7\x36\xd5\x51\x01\xe3\x39\x6d\x13\xb6\xb4\x14\xc5\x91\x29\x2c\x1e\x29\x0f\xbe\xb1\x03\x63\xbc\xfa\x5d\x0d\xeb\xa8\x93\x38\x09\x76\x34\xb4\xab\x03\x53\x10\xff\x0b\x5f\x30\x03\x09\x50\xac\x86\xc7\x15\x0b\xf4\x13\xfa\x66\x8c\x85\xd7\x54\x1d\x39\x8e\xf2\xc2\x26\x6c\x06\xe0\xdc\x60\xf5\xda\xa4\xa2\x4c\x13\xdb\xfc\x69\xfa\x47\xfc\xc0\xff\x8a\x46\x8c\x43\x77\x38\x48\x43\x6b\x5d\x11\x62\xfe\x02\x8b\x27\xfb\x95\x8f\x95\x50\xcd\x6e\xd8\x33\x0a\x75\xc8\x2f\xd1\xff\xd1\x2e\x82\xfc\x61\xbd\xfd\xb6\xd6\x0f\x38\x3e\xae\xd2\x54\x6c\xd3\xbf\x35\x41\x35\x0e\x5c\x1d\xf9\x89\x67\xb1\x8e\x3b\x7f\x63\x27\x0c\x8e\xb8\x58\xbc\x42\x1e\x96\x10\x2f\x99\x6c\xe8\x55\x6f\x31\xb4\xee\x62\xc1\x46\x6a\xfa\x21\x2e\x15\xb7\x77\x35\x78\xd4\xad\x2b\x47\xa7\xe8\x56\x51\xf3\xf8\x23\x2a\x38\xa0\x36\xfc\x0e\x5d\x36\x5a\x1b\x1f\x36\xc7\xa0\x45\x51\xb2\x40\x14\x0a\xa3\x80\xff\xf3\x71\xed\x5a\x3f\xf7\x39\x42\x0b\x4b\x3c\x3a\x01\xa4\x53\x02\x1f\xa7\xd5\xeb\xb3\x47\x8b\xcc\x4c\xf9\x0a\xd4\xa6\x1a\xf8\x27\x09\x11\x2c\xf2\x2f\x9e\x8d\xbd\x1c\x25\x3d\x26\x3d\xe3\x39\x40\xa5\x55\xf1\xd6\xa5\x53\xba\xa7\xf3\xb4\x62\x09\xe7\x39\x49\x0b\x56\x3b\x33\x06\x26\x4b\xe1\x22\x32\xde\xbd\xee\x21\x8a\x77\x91\x38\xf1\x3f\x74\x1a\x52\x10\x9b\xf4\xb2\x34\xcc\xa2\xc4\x4e\x29\xa0\xfa\xdb\xca\xc2\x08\x8a\x6c\x9c\x44\x4e\x60\x07\xc3\x68\x24\xfc\x3e\xc7\x3c\x73\xa6\x39\xbf\x75\x69\xfc\x98\x82\xc0\xe2\xdb\x19\x57\xa8\x80\xa5\xec\xee\xc9\xb6\x35\x2e\x1f\x34\xf9\xb2\xa3\xe4\x60\x91\x86\x63\x9c\x30\x6b\x7d\x7a\x09\xa5\xfd\xed\xcb\xb5\x45\xec\x05\x76\xa6\x96\x50\x54\xc0\xa6\x74\x21\x7c\x52\x9b\xf8\x55\x7a\x95\x9b\x84\x24\x58\xe9\xc6\x94\x5d\xab\xf3\x6e\xd5\x16\x54\x26\x09\xd3\x70\x99\x5e\xbc\xa8\x99\x56\x03\x13\x3d\x02\x26\xa2\x61\x3a\xff\x4d\x2d\x36\x78\xf9\xe5\xf6\x6a\x14\x43\x9e\x49\x88\xa4\x1e\xd0\x75\xde\xf1\x0e\x8a\xac\x0c\x79\x25\xd3\x0a\x87\x58\x43\x98\x3b\x2d\x7a\x3d\x2e\x5d\x2f\xbb\x66\x5a\x53\x25\xe8\x06\x50\xb6\xdf\x4d\xb1\xa3\x78\x65\xe2\xe9\xc8\x88\x76\x65\xfa\xd8\x38\xd3\x4c\x21\x73\x28\x62\xc7\xd8\x03\x15\x4c\x6f\xc5\x56\x3b\x11\xb5\x4e\xaa\xdb\x15\xd0\x0b\x2d\x3f\x12\xf3\xd0\x9a\x21\xd8\x98\x6a\x9d\x90\x00\xe8\x71\x05\x5b\xfd\xbb\x53\x7e\xe8\x3e\x41\x1b\xa6\xe0\x0b\x55\xca\xbe\x67\xbd\x49\x90\x23\x0d\xa3\x34\x4e\xfb\xa4\x44\x3c\x3f\xef\xb4\xce\x5b\x4e\x82\xf0\xf5\x26\xa6\x7e\x9c\xae\x5a\x14\xab\xab\xef\x17\xfd\x1b\x05\x73\xbf\xa9\xd4\x27\x3f\xa8\xbd\xc0\xfd\xfb\xdb\xc3\x34\x2f\xa6\x29\x5e\x97\xe6\xb3\x53\xb4\xfa\x09\xab\xb6\x70\xad\x23\x50\x9b\xf8\x96\xeb\xeb\xa6\x65\x11\x2b\x5e\x28\xcb\xf7\xd1\xaf\x8a\x94\x9f\xbc\x92\xea\xff\x38\x26\xdc\xbe\x1c\xb0\x1a\xc8\x63\xbe\x63\xfe\xa2\xb2\x6d\xde\xd0\xc3\x7c\x43\x49\xff\xe4\xa3\x88\xa1\x7c\xaa\xc7\x7b\x48\xc8\x65\xf4\xbb\x18\xae\x9b\x8a\x50\xb5\x92\xc6\x65\x52\x98\x2c\xca\x87\x2d\x8f\x53\xb8\x1b\x28\x10\x5c\xbd\x4f\x38\x77\xb8\x5d\xbe\x98\xbf\x68\x5e\x9c\xd2\x66\xd3\x5b\x13\x99\x99\x7a\xad\x3f\x55\x11\x64\x19\x2f\xb5\x6a\x56\x50\x7c\x5c\xaf\xa3\xcc\xb5\xbb\x78\xf7\xa2\x59\x8f\x89\xc8\xd8\x5e\x3e\x51\xba\x65\xa3\x34\x2f\x6c\x36\xe5\x19\x1b\xb8\x26\xa5\xb0\xf1\x05\xbe\xd8\x07\x2a\xce\x26\xac\x20\x37\x27\x44\x9e\x9b\xf2\x21\x3e\x71\x64\x40\xbb\x2a\xcc\x2d\xc7\x12\xaa\xae\x83\x4f\x74\x09\x94\x0c\x95\xf3\xc7\xbd\xa2\xc6\xc7\xb4\x76\x38\x3c\xe6\xa2\x2c\xc7\xdf\x57\xed\x8c\x7d\x58\x30\x19\xe2\x83\x05\x46\x50\x9b\x13\x5a\xbb\x2d\xa7\xe8\xf5\x43\x12\xa6\xe4\xaa\x3d\x92\x03\x87\x10\x72\xfe\x89\xd7\xc6\xca\x49\xe0\x99\x75\x8f\x4f\x1d\xda\x5e\x14\x7a\x3a\x0a\x12\x43\xa0\x8c\xf9\xb8\xd6\x96\x5f\x9c\x5d\x6c\x0f\x52\x5e\xd9\x38\x62\x0c\x94\xc6\xfa\x1f\xaa\x4d\xb0\xb0\xbd\x1e\xaa\x58\x6c\x67\x4b\x85\x0e\xb1\xb6\x6d\xe8\xab\xa6\x09\x57\xbd\xb0\xf9\x43\x0d\x99\x8f\x1b\xc8\x7b\x07\xdb\x26\x0b\x07\x51\x61\xc3\x42\x76\x02\x94\x14\x78\xf4\xf1\x49\x2d\xd7\x5b\x58\x68\x8f\x0c\xd8\x31\xf4\xce\x11\x2b\xfc\xfe\x58\x19\x4b\xfe\xfe\xa4\xdf\x72\x31\xf8\x45\x5a\xe5\x58\x9e\x9e\xee\x03\x00\x9b\xbd\x48\xbd\x11\x2c\xbe\x17\x78\x84\xc5\x75\x2c\x0a\x78\xe8\x2d\x50\x8d\xb1\xc9\xc0\xe6\x4d\xaa\xd4\xb4\xd7\xe3\x65\xde\x47\x05\x42\xe1\x0a\xbe\xc6\x41\x02\x98\xa6\xe8\x2e\xdd\xa6\x72\x84\xf8\x03\x50\x71\x41\xc1\x4b\xa4\xe4\x74\x19\x09\x36\x5e\xe3\x59\xd2\x15\x45\x78\xfc\xdf\xb2\xe3\x95\xa0\x50\xaa\x49\x0f\x3c\xf4\x1f\x04\x4a\x40\xf0\x3c\x28\x33\x0e\x38\x54\x2d\x83\xfc\x65\x08\x2b\xa5\xef\xe5\x51\xa8\xbb\xa9\x2c\x8b\x16\x5b\xab\x83\xf7\x81\xcf\x7f\x12\x78\xed\xe4\x4c\x74\x66\xb9\x57\xa6\x80\xaf\x97\xdc\x16\x57\xe6\xb6\x87\xea\xaf\x4b\x5a\x5d\x22\xf4\xb7\xd7\x55\x17\x71\x8b\xa6\x95\x28\xd1\x7a\x9c\xe2\x36\x42\x2c\x44\xd5\xfb\x90\x4b\x00\x44\xdf\xee\x28\x63\xa4\xc4\x70\xe8\x88\x14\xf8\x3b\xca\x95\xe1\x3b\xaa\x66\x37\x32\x05\x99\x82\x2e\xce\x3a\x0e\x6e\xf5\x21\x3e\x56\x88\xea\x6a\xfd\x19\xa5\x09\x88\x90\xc0\xa7\x43\x42\x9d\x8f\x95\x5e\xcf\xd0\xac\xa5\xd9\x1e\x7a\x49\xce\xbe\xa9\x7a\xc8\x62\xdf\xe4\xbb\xca\xdc\x29\x15\x7a\xb8\x66\x3f\x6c\x29\x41\xa7\x5d\x9d\x26\xe3\xfb\x62\xb0\x96\xdb\x6a\xcd\xad\xc6\x09\x87\xa2\x1d\x25\xa3\xb5\x6b\x5d\xf9\x57\x99\xe1\xc8\x44\xfd\x84\x0c\x28\xf0\xb2\x4f\xd1\xd5\x63\xdc\x1e\x57\xd2\x59\xcc\x70\xc4\xc6\xc8\x65\x04\xfe\x44\xe0\x91\x86\x8f\xae\x57\x13\x85\x3f\x5d\x6b\x63\x49\xda\x90\xa7\x65\x31\x00\x7f\xce\xf1\x6c\xdf\xa3\xfb\xe7\x63\xc5\x7f\xe9\x45\x66\x24\xe8\x1d\xd1\xf2\xf1\xa1\xd0\x89\x40\x53\x0c\xf2\x92\x7c\x30\xa7\x7c\x32\x7f\x0f\x3b\x80\x68\x1c\x79\x26\x77\xbd\x3f\x37\x77\xb8\x3d\x32\x71\x4a\x97\xc4\x48\x56\xed\xd7\xf7\x86\x02\x68\x8e\xd2\x78\x8d\x7c\x63\x75\xfb\xfd\xbc\xe2\xe5\x9f\xaf\x6d\xa0\x07\x16\xda\x3d\x9b\xac\x30\x24\x4b\x80\x7e\x5a\x3e\xa9\x46\x03\x5c\x58\x68\x17\x36\x1b\xb2\xd7\x00\x87\x6f\x28\xb1\x5c\x50\xd8\xf6\x0b\x2a\x71\x89\xd3\x34\x87\xc3\x9f\xc0\x13\xaa\x6b\x12\x69\x73\xfa\x02\xfe\x07\xbc\x4d\x2f\x74\xee\xea\x1d\xa6\x6f\x67\x94\x1a\x0a\x22\x60\xc0\xdd\xce\xea\x08\x18\x99\x04\xaf\x82\x9a\xe2\x74\x6a\xa2\x48\x95\x16\x21\x82\x21\xe4\x83\x68\xb8\xf1\xb1\x77\x31\x8f\x56\x6c\xb6\x94\xa5\xec\x62\xae\x89\xa9\x7c\xec\xa5\xeb\xcb\x61\x19\x47\x49\x4b\xb9\xba\x40\x16\x9d\x8f\xc7\x3b\x1c\x30\x6d\xa2\x41\xef\x37\x14\x32\xed\x86\x52\x87\x29\xb2\x74\xd5\xc6\xd8\x1b\x04\xde\xee\x7b\xdd\x17\x95\x07\xd5\xc8\xae\x65\x36\x4e\x93\x7e\x09\x98\x07\xae\xef\xf6\xd8\x5f\xb7\x77\x92\xeb\x9a\x70\x39\x2f\xd2\x11\xf5\x99\x85\xbf\xe9\xc1\xa6\xdf\x56\xf6\x0c\x85\x7d\xc2\xe5\xb3\xf6\x17\xa9\xc3\xe0\xb2\xe9\xea\xa2\x04\x5c\xa5\xb8\x7e\x5b\xe3\xd6\x57\xbe\xe8\x1a\xdf\xd5\xb4\x93\x47\x50\xfd\x9c\x53\xb7\x3a\x22\x62\xdc\xbb\x28\xe7\x42\xe0\xf5\x24\xa1\x0f\x44\xe8\x55\x59\x78\x31\x90\x81\xf2\xf5\xe1\x33\x1d\x15\x49\x6f\x2a\xa9\xd3\xea\xdd\xc2\x85\xcb\xbb\xa8\xa0\x15\xe2\x45\xc1\x3d\x4e\x33\x7a\x95\x51\xcf\x68\xfc\xdc\x1c\x2b\x01\xb0\x9b\xb5\x40\x9e\x64\x02\xc8\x62\x83\xa1\xfd\x4e\x2c\xff\x25\x77\xac\x28\x8b\xa6\xf8\x77\xb0\x8a\x20\xc4\xbf\x8e\x1d\x91\x4f\x54\x64\xb2\x14\xd9\xb8\xb7\xa7\xe5\x1c\x71\xef\x2b\x21\xb6\x16\x98\x4d\xd8\x85\xef\x6a\x4c\x14\xc4\x16\x18\x92\x42\x9b\x38\xe2\xab\xbf\x0e\xfe\xce\x43\x09\xda\x49\xcf\xc0\x2f\xaf\xe5\x2b\x54\x30\xa6\x93\x9d\xa4\xe9\x96\x7f\x69\xee\xc0\x17\x0e\x1c\x3e\x44\xb6\x3b\x82\x22\x56\x4a\xb9\x6c\x25\xe4\xac\xd9\x7c\x13\xf6\x38\xb6\x87\xed\xcb\x2a\x3d\xba\x40\x35\x0a\xf1\x40\x7f\x58\xf1\x26\x4f\xcb\x2c\x94\xb4\x50\xd0\x8c\x8a\xaf\x76\xd3\x2d\x0b\xdd\x2c\x4d\x42\xa6\x01\x63\x4f\x65\x1e\xa3\x0b\x09\xdc\x9e\x74\x5a\x2b\xc7\x0f\xd2\x58\xa4\x12\xc4\x6f\xb7\xe5\x94\xb9\x7e\x52\x6b\xe5\x1c\x99\x6d\x97\x49\x92\x16\x51\xc8\x70\x28\xa1\x7d\x78\x18\xda\xeb\x4d\x02\x8e\xa3\x2c\x1d\x65\x91\x25\x49\xbe\xd6\x0e\x29\x5d\x3e\xae\x95\xe6\x0f\x2c\x68\x0b\x9b\x87\xba\x32\x34\xf0\x92\xf2\xb2\xdf\xb7\xb9\x44\x92\x78\x1c\xbb\x3b\xea\xd9\xec\xae\x09\x66\x1f\x99\x85\xfa\x97\xed\xf1\x4f\x71\xcd\x1d\xd1\x9f\x14\xe0\x9b\xf4\x90\x46\xa5\xfc\x10\x37\xbf\xb1\x88\x4b\x27\xdc\x8f\xef\x34\x5b\xb6\xc3\x69\xfd\x8f\xf8\x72\x00\x74\x7e\xae\x82\x36\xbc\x2d\xfe\xef\x4d\x79\xf4\xc0\x64\xbd\x55\xc3\xa2\x30\xd8\x63\xce\x2a\x55\xb6\x3a\x2c\xf3\xc8\xec\xc1\xf6\x52\x96\xbe\x6a\x93\x29\x65\xc8\xce\x38\x20\xef\x12\x2d\xae\x95\xdf\x69\x6a\x67\x67\x36\x5c\x0b\x63\x84\x51\x4d\xa2\xad\xcf\xba\x3a\x79\x66\x92\x3e\x51\xec\x5a\xbe\x03\xb0\xaf\xe3\x11\xda\xfb\xd6\x9f\x51\x8c\x99\xd0\x46\xa3\x42\xfb\xff\x4e\x61\xf2\xf0\xc9\xfa\xf3\x91\xcb\x08\xfb\x76\x75\x10\xe5\x14\x6c\xd0\x13\xe7\x65\x36\x98\x58\x73\x9b\xe6\x6e\x6c\x4d\xcf\x71\x05\x1a\x8d\x34\x5d\x33\x39\xb3\xa6\xb0\xd3\x4a\xb8\xe0\x86\xaa\xdd\xe3\xcd\xe8\x7d\x17\x85\xa0\x93\xb5\xd0\x60\x7e\xbe\x3d\xac\x12\xce\x0c\xec\xa3\x96\xcf\x3a\xb7\x7c\x71\xf7\x7f\xac\x5f\x2d\xfc\x7b\xa2\x38\x2d\x74\xff\x60\x17\xed\x06\x7c\xdc\x91\xd4\x37\x8c\x6d\xb6\xdc\x52\xda\x95\x27\x15\x3d\xe7\xa4\x73\xc4\xe8\xa7\xc5\xa3\x3e\x8a\xfb\x9f\x95\x82\xc4\x3f\xfe\x6c\x47\xb5\xbc\x6e\x20\x78\xd0\xbc\x7b\x7c\xd5\x27\x1c\xdf\x3a\xd5\xd5\x45\xbf\xce\xfb\x90\x70\x6a\xdd\xa7\xc0\x8f\x23\xb7\x12\x83\xaa\x9d\x81\xdc\x4b\x73\x87\xdb\x59\xc9\xee\x19\x22\x68\xef\x8b\x94\x17\x1b\xb2\xc3\x83\xed\xc2\xe4\x85\x95\x42\xb6\x3c\x3e\x45\xfe\x60\x20\x0d\x56\xa1\x63\x4a\x35\x65\x49\x8c\xda\x5d\xcc\x8f\x82\x8f\x48\xea\xa9\x35\x74\xd9\x26\x7b\x7d\x6f\x61\x8a\xe0\x70\x48\xc4\x8e\x8f\x55\x9f\xf6\x5d\x05\xfa\xfb\x9d\xb1\x27\x05\xdc\x1e\xeb\x1e\x7a\xe0\x37\xea\x8b\x75\x5d\xc8\xf9\x79\xd8\xc2\xd3\xfa\x66\x98\x4b\xcb\x70\xf1\xc0\xb3\xaf\x2f\x29\x8b\x9b\x30\x1a\x72\x4f\x4c\xa8\xa6\x2d\xe7\x32\xf6\x81\x22\x5b\x66\x76\x54\x66\xe1\xc0\x40\x98\x65\x61\x12\x73\x28\xae\xaa\x4d\x6b\x59\xcf\x9a\x9e\xf2\x0b\x38\xa5\xf8\x0e\xa7\x6a\xeb\xf3\xfc\x7c\x3b\x1a\x8e\xb2\x74\x25\xca\x25\xcc\xc6\xb6\x71\x5a\x71\x40\x4f\x37\xc9\xce\x0d\xd3\x6e\x14\x23\x38\x73\xc4\x00\x4f\x12\x70\x09\x67\x5c\xe6\x03\x02\x28\xb0\xa4\x37\xdd\x2d\xdb\x39\x76\xfc\xdc\xb8\x55\x9b\x43\x2f\xb4\x63\xdb\x8f\xf2\xb8\x9a\xc8\xbe\x45\xf0\xaf\x68\x44\x8b\x04\x8a\xf6\x88\xf6\x95\xee\x53\x8a\x85\x3a\x2c\xf3\x28\xdc\x43\xa5\x00\x4c\x89\x13\xba\x96\xc3\x52\x76\xf2\xaa\x5b\xfe\xaf\x26\xbb\xe1\xad\x2f\xcd\x39\x4c\xc5\xce\x8d\x71\xff\xfe\xf6\xd0\x44\xe4\x8f\xb8\x43\xa9\xee\x8c\x52\xaa\x3b\xa3\x46\xc0\x20\x8d\xed\x94\xaa\x98\x69\xf6\x37\xd6\x29\x71\x63\x90\xc0\x7d\x94\x45\x49\x18\x8d\x62\x9b\x4f\xf9\xd4\x8a\xe7\x8d\x40\x82\x5a\xce\xc8\xe3\x8a\xf2\xec\xc9\x07\xe9\x6a\x96\xa6\xc3\x9c\x26\x0e\x20\x0e\xa7\x29\x8a\xe5\xe3\x5a\x74\x70\xf8\xcb\x3a\x6f\x74\xa5\x35\x46\xa4\x09\x6c\x67\xe7\xdb\xaa\x16\x83\x51\x1a\x25\x5c\xee\x3b\xe8\x74\x8f\x68\xb8\xf2\x49\x0d\x1d\x7c\x60\xa1\x3d\x14\xe9\x42\xd1\xe7\x6d\x39\x1d\xfa\xf3\x81\x36\x4b\x5c\x35\x98\x5d\x02\xbf\x68\x39\x19\xa9\x33\x4d\x51\x47\x66\x0b\x32\xda\x93\x57\x22\x46\xa9\x7e\xc8\x7d\xd2\xa8\xf2\x9a\x59\x08\x0f\x7b\xfc\x95\xf0\xac\x5a\x8a\x80\xd5\xa0\x89\x1f\x47\x09\x67\x9d\x78\x93\xa0\x36\xf2\xb1\xb7\x18\x48\xb3\x62\x30\x33\x61\xba\xe6\xe1\x86\x57\xd5\x72\x0d\xac\x88\x88\x97\x57\x8b\x35\x56\xba\x6b\x0f\xc5\xa9\xbf\x52\xbe\x92\x6a\x96\xee\x05\xc5\x48\xb9\xa0\x40\xcd\xc5\xc0\xa6\x19\x6b\x4b\x38\x14\x83\x6b\xa1\x3d\xb2\xee\x37\xc7\xdd\x9d\x06\x0f\xa7\x91\xc9\x4c\x2f\x3d\x3a\xa5\x74\x34\x40\x83\x47\xdf\x1d\xfa\x3c\x22\x1c\xa5\x2a\xa2\x69\x92\xc6\x69\xbf\xe4\x06\xbf\x96\xcd\x17\x3d\xfd\x67\x54\x83\xbf\xc8\x4c\x58\x40\xfe\x65\xfb\x6a\xd0\x3a\xb0\xb0\x7d\x55\x93\x24\x4d\x16\x03\x37\xe8\x9d\xf8\x75\x07\xf4\x98\x7b\xde\x85\x35\xe1\x00\x89\x36\xba\x30\x28\x17\x23\xe1\x7c\xb4\xa3\x34\x0f\x91\x68\x23\x01\x64\x05\x7e\x29\xe4\x34\xc5\x51\x26\x8a\x57\x0d\x0b\xf2\x3a\x5b\xfc\x6a\xb8\xb8\x32\x93\x6b\x00\x5e\x6e\x04\xfc\x97\x49\x24\x31\x27\x23\x7d\x31\xc3\x04\xf6\xfb\xbc\x46\xc9\x52\xb7\xa8\x1b\xdb\x69\x35\xe5\xb1\x55\xa3\x32\x00\xfb\x4e\xf0\x03\x18\xa6\x81\x34\xeb\x4d\x05\x12\x89\x12\x13\x16\xd1\x0a\x97\xa5\x5d\xd2\x74\x4a\x25\x4d\xa7\xd4\x43\x8e\xd3\x6e\x77\x4d\x6a\x8a\x0e\xb6\xe3\x21\x3c\x4d\x34\x8b\x91\xed\x45\xa6\xc8\xa2\x50\xb5\x8d\xc1\x0a\xe1\xe3\xda\xc2\x71\x70\xf1\x60\x3b\x8f\x92\xbe\x43\xee\xa0\x8a\x7d\x51\xdb\xfa\x69\x75\xa9\xa3\x69\x32\xdd\x52\x6e\x57\x74\xaf\x98\xd0\x7b\x3b\xda\xc0\x18\x60\x10\x81\xef\x35\x69\x50\xa4\xaf\x5a\xad\x5f\x76\x4e\x75\x59\xce\x05\xde\x6f\x90\xb8\x86\xd5\x9f\x49\xaf\x92\xde\x99\x58\x32\x7a\x35\x8d\xe1\x28\x2d\x93\xde\x94\x9f\x0a\xb7\xb5\x1d\x15\xf2\x76\xb1\x2c\xf0\x1d\xa8\x22\x6d\x53\x05\xd1\x89\xf2\x2f\x0a\xd6\xe7\x67\xe4\xa7\x0f\xac\xdb\xcc\x3a\x95\x00\xd0\xc6\xff\x00\x8d\x41\xc7\xf6\xa8\x16\x13\xd4\x79\xaf\x52\xd3\x02\xd9\xeb\x03\xaa\x5b\x20\x90\x82\xd3\x2b\xbe\xf6\x94\x46\xa4\xdd\x19\xb7\x0e\x7f\xd9\x25\x6f\x74\xb9\x78\xe4\xf7\x02\x1f\x1f\x3e\xbe\xee\x5b\x12\x27\x18\x8b\x8c\xc5\xeb\xaa\x76\x55\xf8\x0e\xab\x7a\x22\xa5\xbf\x43\xf5\x6f\x6c\x7e\x7f\x15\x28\x8a\xdf\xad\xc0\xc7\x26\xbb\xd6\x69\x67\x46\x79\x0c\xee\xb2\x78\xae\x27\xd0\x08\x75\x81\x9a\xc3\xbd\x5c\x0d\x14\x93\x68\x9b\xf2\x6f\xa7\x71\xe7\x3c\x51\xdf\xc4\x4c\x9c\xa8\xa6\x89\xdb\xa7\x2a\x47\xa0\x29\x84\xf0\xf6\x38\xaa\x00\xb8\xf9\x6b\xb5\x09\xfb\xd2\xc1\x76\x3e\xb2\x66\x99\x27\xac\x10\x95\xe9\x0b\x3c\x53\x59\x26\x6c\x12\x85\x03\x3b\xc1\x09\xad\x6e\x59\x28\xa1\x3e\x49\x29\x93\x90\xf7\x02\x65\xdc\xb8\x7d\x5b\xf3\x1b\x4e\xd3\x72\x25\x24\xcd\x96\x33\x4d\x3c\xae\x0a\xff\x5d\xb2\x18\x74\x13\x13\x4c\x44\x6d\x33\x2a\x7d\xee\x4f\x6b\xcb\xd0\x38\x5a\xb2\x4a\x31\xcd\x19\x5d\x38\x74\xe0\xb9\x5a\x00\xff\xc2\x04\xdf\x68\xc1\x63\xda\xbd\xa7\xfb\xc5\x09\x9e\x66\xdf\x16\x4f\x55\xd7\x8f\xee\xce\xdb\xba\x0d\xb2\x8b\xdc\x2b\x45\xa0\x82\xde\x17\xfe\x41\xe8\x83\xa2\x89\xdf\x72\x3e\xcd\xc7\x14\x77\x83\x1d\x0a\xf0\xec\xbf\x11\x4c\x44\xf2\xf3\xf3\x9c\x59\xfc\x53\x1a\xc4\x78\xdb\x97\x69\x7c\x20\x88\xfc\x44\x79\xb3\x5d\x9a\x14\xdd\xa7\x47\x8f\xb5\xea\xfa\x44\xa7\x2a\xb7\x66\xcf\x04\x31\xd8\x19\x85\x5c\xc0\xd0\x41\xa4\x7f\x5e\x07\x65\x7f\x3d\x56\x98\x63\xa1\xd0\xa0\xe8\xf3\x23\xf5\xfe\x8a\x28\xd6\xf8\x72\x6e\x69\x31\x9c\x93\x6e\x07\x1d\xb1\x99\xce\xbf\x5d\x07\x43\x2c\x47\x49\xcf\x66\x45\x5a\xd8\x24\x8e\x6c\xaf\x0a\x41\x7e\xfd\x25\x9e\x9e\x5c\xc0\xe2\x93\xf5\x86\x35\xd0\x64\x43\x44\x55\xa2\x78\xa0\x48\x2d\x6f\x05\x1e\x66\x10\xdb\x82\x3c\xab\x18\x79\x1b\x78\x98\xf6\x1e\x00\xab\x30\xd7\x76\xaf\x2b\x7a\xc3\x06\x15\xf2\x28\xfe\xf8\x2f\x3e\xdb\xf1\xea\x5e\xbb\x60\x06\x86\x2a\xea\x63\xeb\x9e\xb1\xf0\xb6\x96\xa6\xab\x32\x08\x27\xd0\xbb\xf6\xb7\xe8\x47\x44\x03\xb6\x7a\xf6\xc8\x76\x3f\xc1\x02\x04\x6e\xd6\x1d\x05\x2d\x3e\x47\xbd\x3c\x6c\x8e\xff\x92\x9a\x74\x2c\xfb\xc4\x4d\x3a\xa9\x7d\xd0\xc0\xc3\xac\xbf\x85\xf7\x88\x80\x69\x1b\xd7\x82\x37\xcc\xb5\x0c\xac\x86\xd7\x00\x50\xe0\x9f\xc4\x52\x8c\x76\xfe\x09\x2c\xc5\x98\xa0\xf7\xc6\x4a\xc3\xfb\xe9\x8e\x5f\xc1\x50\x6f\x47\x09\xeb\xa3\xc0\x6f\x39\x3f\xc7\xba\x8c\x60\xe4\x1d\xb4\x1f\xa5\x2a\xe3\xf5\x9f\xdf\x42\x5b\x53\x8a\xe7\xf4\x24\x59\x6d\x52\x09\xab\x7e\x40\xd9\x3d\xb2\x88\x4b\x3c\x9f\x30\x07\x2f\x2b\x77\xd6\x51\x66\x7b\xe9\x30\x4a\x4c\x52\xc4\x1c\xc9\xa0\x90\xf2\xd6\x58\x73\xf4\xd4\x90\xd8\x70\x8b\xd7\x52\x9a\xe7\x11\x4a\xaf\x78\x91\xdf\x50\xdd\x81\x6f\xd4\xda\x32\x2f\x1d\xfc\x6c\x7b\x29\x8a\x87\xb9\x4e\x31\xd1\xa1\xe4\xe3\xf1\x2f\xd5\x53\x4c\xc2\x87\x85\x65\x96\x45\x61\x19\x33\x85\x02\xe5\xcf\xf7\x95\xee\xdc\xfb\x2e\xd7\x1c\x5a\x93\xec\xf1\x0d\xac\x56\x47\xfb\x46\x2b\xce\x2a\x5b\xab\x61\x3f\x82\xee\x30\x62\x86\x4f\xb4\xe6\xd9\x85\x49\x8b\x65\x28\xd2\xda\x19\x7a\xe1\x52\x30\x52\x2a\x5c\xec\x5d\xcc\xff\x42\x4f\x10\x7b\x0e\xd7\x13\xc4\x61\xe8\x29\xad\x66\x47\x78\xad\xea\x0b\x71\x61\x0f\x94\x40\xe4\x05\x4d\xf6\x03\x64\x50\xdc\x0c\x9e\x9a\x50\x00\xe1\xba\x94\x93\x12\x3c\xb0\xe0\x0c\xb0\x14\xf7\x33\x36\x65\xce\xb1\x37\x36\x4f\xe8\x36\xf1\x71\xed\x85\xd1\xd3\x8f\x5c\xf9\x15\x3b\xfc\x49\xac\x95\x7c\x52\x4b\x82\xaa\x1c\xb0\x48\x33\x96\x39\xc1\xbe\x7a\x65\xac\x36\xd9\x2b\x2e\x5a\x2a\xd2\x51\x3f\x33\x3d\x04\xf0\x0c\xde\x55\x04\xca\x0d\x95\x38\xf4\x6c\xd7\x26\x84\x0c\x9e\xf1\x81\xc3\x5f\xe0\xc9\x03\x8a\x7a\x4e\x6b\x0a\x5e\x57\x3e\x21\x67\x68\xe2\xcb\x98\x7e\x5a\xa1\xa5\xc3\x94\x4c\x15\x17\x67\x45\x44\x66\x52\x51\x66\x67\x8e\x7f\x60\xa1\x1d\x25\x2b\x36\x2f\xfe\xcb\x7f\x3f\xb1\x30\xac\x96\x98\x51\x2b\x9d\x06\xd2\x22\x50\xf9\xb7\x0d\xcb\x2c\x2a\x6c\xae\x70\x65\x27\xc6\xca\x99\x11\xad\x43\x3c\xd2\x69\x14\xf2\xb0\xfd\x5c\x1d\xff\x82\xae\x05\x65\x36\xb7\x49\x01\x39\x8b\xe9\x6a\x35\x61\x8f\x15\x0a\x81\xb4\xdf\x0a\xf7\x07\x68\xbb\x93\x5e\xc1\x63\x2e\x7c\x5e\x48\xf7\xf9\x02\xc3\x79\xc5\xe8\x07\xde\xd2\x71\x26\xbe\xf2\x45\xa1\xc3\xd2\x97\x42\x75\xeb\x87\x54\x21\xa1\x02\xe2\x2f\x31\x7d\x54\x10\xee\xf4\x18\x10\x78\x4e\xaf\x2b\xff\x00\xd2\x77\x49\xc2\xb5\x47\x3d\x96\x9f\x95\x08\xd8\xf0\x02\xef\x0e\xed\xb2\xeb\x58\xf5\x04\xe5\xa6\x44\xbb\x4f\x8c\xab\x58\x58\x50\xa2\x1a\x40\x11\x78\x03\xd2\xcd\xb1\x56\xa6\x50\x92\x1f\xb7\xb5\x57\xf2\x52\x16\x85\x66\xda\x3b\xd3\x20\xef\x73\xe1\xe1\x01\x11\x8f\x66\x6c\x8f\x88\x4b\xee\x2c\x0d\x0b\xb7\x2b\x34\x79\xe1\x40\xdf\x12\x92\xfb\x2e\x25\x44\x72\xb1\xf6\x9e\xd7\xcc\xe2\x2c\x4d\x97\x59\xdc\xd7\x59\x48\x39\x70\xd5\x9d\xe0\x59\xc5\xda\x8e\x63\x1b\x52\x5d\xc5\x87\x05\x1f\x4c\x40\xec\x74\x8a\x97\x17\x51\x81\x6e\xcb\xde\xd6\x91\xd9\x6d\x86\x66\xb1\xc1\x2e\x3d\x2c\xe7\x46\x5f\x6d\x63\x18\xb9\x6f\x62\x89\xe2\x13\x0a\x98\xb7\x2f\xa8\x5e\xc4\xff\xe2\xfa\xc2\xa4\x8c\x25\x0c\x70\x31\xd1\x54\x80\xc7\x2b\x1a\xd8\x6e\x93\x02\xbc\x34\x8c\x12\xb6\xce\x95\x5a\x2a\x2d\x6f\x78\xd6\x1f\x07\x7e\x87\xfb\x39\x1a\x83\xfc\x0f\xde\x89\x81\x6c\xec\xba\x14\x2a\xb9\x92\xe3\x53\x04\x83\x40\x52\x75\x8f\x9e\x3a\xaa\x74\x9f\xae\xb9\x6e\x1d\x99\x9d\x6b\x7f\xbd\x8c\xc2\xe5\x29\xbf\x27\x9c\x54\xa1\x22\x43\xbc\x44\x41\xc2\x2f\x9c\x5d\x56\xfb\xa4\xc7\x88\x01\x7e\x4d\x75\x79\xee\x29\x7b\x89\x9f\xd7\x56\x44\xd4\xd2\x12\x60\xba\x30\xac\xc1\xed\xe5\x63\x57\xa6\x20\xf4\x3e\x05\x62\xce\xb4\xc8\x0b\x98\x6c\xa9\x1c\xbe\x17\xe5\x45\x16\x75\xcb\x42\xf0\x72\x2e\x29\x55\x19\xaa\x92\x83\x30\x51\xb6\x6a\x56\x2c\x8f\x34\x84\xc2\xbf\xaf\x92\xa0\xdf\x77\x12\xa5\x26\x8e\x89\x4d\x9b\x44\xcb\xbc\x4b\x8b\xc2\xbc\xa7\x8a\x5c\x51\x5a\xac\x45\x16\x8d\xf0\x54\xb0\x5d\xc2\x87\x51\xdb\x07\xb0\xdb\x93\x6a\x68\x8f\x4c\x66\xe2\xd8\x22\x6e\x40\x96\x31\xd3\xf1\xd9\xc7\xcc\xba\x0f\x8a\xfb\x59\xba\x3a\x43\x13\x1d\x0d\x8b\x0d\x8a\xd9\xc5\xa0\x9d\xae\x0f\x81\xd6\x06\xc2\x36\x3e\x19\x7b\xbf\x87\x0f\xdd\xd3\xed\xa6\xa9\x90\x84\x91\x49\xdc\xc4\xe3\xe5\x13\x85\x1d\x22\xf0\x65\xcb\x03\x07\xb7\x34\x88\x76\x2b\x78\x4e\xbb\xe0\x93\xf2\x49\x0c\x06\x9d\x8b\x4a\xe6\x0e\xbb\xa8\xa4\x49\x41\xc1\x8c\x46\xd6\x38\x3b\x64\xd4\x8d\xa6\x10\x41\xf3\x49\xcd\xa9\xeb\xe0\xe2\xc1\x76\x62\x6d\x6f\x4f\x95\x1d\x8b\x07\x75\xf5\x9b\x82\xe7\x51\x2c\x26\x56\x1c\x76\xd7\xee\x3d\x68\x49\xf1\xe5\x6b\xce\x4d\x40\x59\xa0\x47\x71\xcf\xae\xa2\xe7\x8c\xfa\xd1\x75\xe5\x03\xfb\x49\xe0\xe5\x13\x4e\x8f\x1f\x57\xf9\x90\xf9\x05\x45\x06\x79\x2d\xf0\xaa\x82\x53\x94\xd8\x61\xc6\x7f\x00\x78\x1b\xa0\x66\xbb\xd7\x15\x27\xea\x01\x45\xa8\xce\x08\xb5\x5a\x0a\x00\x4d\xbf\x1f\xec\xfe\x2c\xc7\x84\xe2\x53\x2c\xd1\x75\xcb\x89\x24\x3f\x86\xbb\x71\x38\xb0\xb9\xc3\xce\x52\x9f\x9e\x06\xe6\xcd\xd4\x3a\x6d\x27\xc2\xde\xa6\xc0\x19\x99\xf4\x39\xac\x8a\x20\xef\xbd\xa9\x1b\xa8\xc7\x95\x7c\xef\xbe\xf5\x6a\xad\x40\x3e\x70\x1f\x43\x4e\x9a\x67\x44\x58\x97\x7c\x95\xd6\x2b\x5c\xfd\x4c\xa7\x7a\x5e\x12\x2c\xfb\x80\xe6\x91\x8e\xd2\xab\xb6\x6c\x91\x2b\x20\x0e\xc5\xd3\xbe\xd0\x14\x88\x45\x59\x9a\x30\x63\x09\x0f\xe6\x5b\x2a\x70\xfe\x56\x13\x1b\x3f\x59\x4b\xec\x51\xd5\xe3\xdd\xd2\x65\xb2\xad\x5a\xd7\xe8\x85\xf6\xaa\xa1\xca\x7d\xf5\x13\xbc\x49\x63\x58\xc9\x8e\xed\xab\x82\x66\xc5\x66\xa6\x5f\x8d\x60\xef\xaa\x7d\x2e\xd0\x16\xcc\x0d\xcc\xd1\x2a\x90\x2f\x45\xc5\x6c\x9b\xba\xdc\xdb\x67\xbd\x82\xa2\x49\x96\x67\x14\xb2\x09\xa2\xb7\xac\xb9\x4b\x05\x0c\x3c\xf6\x07\x4a\x1f\x0c\x44\x38\x2e\x78\x2a\xf1\x8a\x55\x53\x84\x03\x29\x5a\x02\x3e\xfc\xa3\xc0\xe3\x8a\x7f\xa4\xfe\x34\x1a\x8e\xb2\x68\x18\x81\xa9\x82\x08\x02\xfc\x79\x3e\x56\x08\x0b\x6b\x72\xfa\xce\xfd\x73\x5c\x50\x63\x05\x4c\x3e\x19\x3f\xa7\x18\x49\xa5\xcd\x96\x33\x53\x16\xb4\x4d\x01\xed\xb3\x4b\xf1\xd8\x6e\x8f\x35\x74\x79\x02\xc2\xd5\xb3\xfb\xaa\x49\x21\x4e\x63\x34\x29\x44\x66\x8d\xc6\x18\x8a\x1a\x20\x46\x63\xbc\x4f\xad\x7b\x03\xb3\xfb\x81\x32\xed\xb9\xc2\xc5\x38\xa4\x0c\xbb\xb8\x32\xca\xd6\xdc\xae\x59\x9a\x99\xcc\x42\x54\xf3\xe0\x04\xd1\x19\x4b\xd8\xa3\x94\x19\x61\x2e\xdc\x18\x2b\x04\xb5\x96\xfd\x2a\x06\x59\xea\xc0\xdb\xf8\xb5\xb3\x2a\x59\xf1\x6f\x79\x29\x36\x05\x25\x67\x58\x4d\x50\x13\xc3\x14\xfa\xdb\x1d\x1f\xcd\xdc\xc0\x6c\xc4\xd2\x8c\x87\x85\x45\x7f\x17\xca\x22\xe2\x24\xd6\x54\x52\xff\xa5\xaf\x7e\xfe\xd7\x16\xa7\xaa\xb7\x84\xc7\x26\xc2\x09\x48\xee\xb8\xb8\x21\x82\xc3\xcf\x2a\x59\x5b\x02\x6b\xa7\x19\xa8\x33\xb8\xc7\x2b\x63\xdd\xca\x6e\x39\x81\xc8\x2b\xa8\x38\x48\xbf\x7b\x67\x47\xeb\x97\xdb\xc9\x5a\x2e\xaa\x4a\xc8\xd2\x19\xde\xc8\x27\x13\xf5\x31\x6b\x46\xf4\xdc\x44\xb6\xb0\xe5\x2c\x47\xce\xaa\x74\xa5\x6f\x8b\x6a\xbb\xdf\xd7\x72\x54\xc2\xcb\x5a\x79\x86\x35\xf4\x9d\xf9\xd1\xa2\x38\x9d\xbf\x43\x9b\xa1\xab\x2e\xe8\x8d\xac\x1a\x67\x6c\x8c\x4c\x3f\x2a\x59\x6b\x03\xa0\x3b\xb3\xc3\x74\x45\x22\x3e\x81\x68\xd1\xcf\x8b\x84\xd0\x13\x6a\x10\x2f\x0d\xf9\xde\x45\x1f\x81\x7e\x96\x4f\xd4\x46\x1b\x85\x66\x90\xec\xad\x16\x6e\x5e\xab\x3b\xde\x61\x97\xf5\xcc\x5c\x22\x33\x3f\x3f\xd1\x67\x92\xa4\xc6\xfb\xf3\x1c\x53\x37\xfa\x40\x9b\x08\x44\xf9\xa8\x2c\x2c\xc2\x08\xa4\xa0\x40\xca\x73\xf1\x08\x19\x86\xc3\xfe\xcf\x1d\xe6\xd5\x9a\xdd\xf2\x25\x19\x6a\x00\x27\x95\x49\x1c\x2d\x8b\xc2\x3a\xda\x44\x78\xf2\x7c\xac\xde\xde\x20\x5d\x5a\x1a\x9a\x04\xca\xb5\x78\x31\xcc\x40\x70\xbe\x04\x9e\xf4\xa6\x2c\x54\xdf\xd9\xa9\xab\x5b\xa5\xd7\x07\x16\x9e\x50\xde\x66\xbb\x88\xb7\xce\xf3\x89\xae\x1f\x8d\x07\x96\x48\xd0\x8a\x62\x98\x68\x4c\x6d\xc3\x10\xfb\x71\xe0\x53\x47\x08\xe9\x89\x73\x1b\x3d\x16\x7c\x15\xcb\xb8\x60\x61\x3e\xcb\xa5\x24\xa9\xb2\x7b\xf9\x60\x06\x21\x89\x19\x61\x3d\xf4\x39\x48\xdc\x86\x28\xe9\x0b\xf6\x03\xd3\xf0\x81\x06\xcb\x32\x7c\x1a\x61\xe3\x53\xeb\x7a\xa2\x84\x69\x57\x21\xd5\x26\xee\xef\x58\x8d\xbc\xb8\x7f\x3f\x29\x06\xdb\xa4\x50\xca\x08\x6c\xee\x83\xd5\xf1\x13\xa5\x1b\x78\x5b\x51\x7e\xa3\x04\xba\xc0\x1e\xff\xf1\x46\xe0\x41\x37\x6f\x4c\xb8\x65\x44\x66\xd8\xf2\x61\xd8\x9f\x06\x3e\xfb\xf8\xd3\x9d\x6f\xee\xc8\xec\x42\xfb\xc8\xec\x2f\xe0\xc6\x1d\x62\x78\x51\x62\xa1\xdd\x1d\x8a\x53\x30\x1c\xde\xa7\x1f\x64\x36\x6a\x47\x3d\x7c\xee\x49\xe2\x27\xce\x05\x2a\x02\xf9\x16\x18\x09\xa2\xab\x4f\xeb\x93\x08\xee\xd3\xfb\xc6\x12\xbe\xa1\x80\xd3\xa7\xab\x28\x8b\xd5\x5c\xc6\xbe\x55\xc7\xda\xf7\x78\x62\x90\x18\x44\x2c\xf3\x4d\x4d\x96\xdc\xbb\x5e\x0d\x35\x2c\x87\x2c\x50\x80\xbf\xba\x81\x12\x98\x20\xa4\x68\x16\x63\x12\xbd\x03\xd2\x03\x7e\xfc\x26\xd5\x33\x9d\x41\xd9\xfe\x39\xde\xdf\xdf\xa2\x24\x9f\x15\x3f\x14\xe0\x3c\x4c\xf3\x21\x29\x73\x3e\xa2\x54\x06\xdf\xe4\xb5\x5d\xfa\x1c\xf4\x76\xb1\x34\x5c\x0f\x54\xcd\xea\x06\x4d\x2f\x85\x16\x13\x4f\x92\xbb\xca\xa7\x7b\x23\x50\xde\x47\x0f\x70\xaf\x08\xe8\x4e\x35\x58\x99\xb6\xf3\xb2\x9b\x66\xbd\x28\x31\x62\x4e\x29\x44\x7d\xfa\x16\x44\x1a\x6f\x06\xca\xb6\xec\x4a\x33\x16\x2a\xcd\x32\x31\x08\x43\x8c\x7b\x49\x97\x93\x2e\x4d\x28\x60\x9b\xb0\x88\x42\x01\xdd\xa3\xd7\x70\x35\xf0\x74\x82\x63\xda\x64\xed\x64\x0d\x10\x51\x25\xa2\xa8\x44\x45\x4e\x66\x04\x17\x3d\xdd\x51\x52\x03\xd3\xb5\x56\xf7\x91\xd9\xb6\x4d\xfa\x71\x94\x0f\x5a\x6a\x72\x42\xce\x8e\x8f\x9d\x4d\x80\x49\x4c\xbc\x56\x80\x51\x76\x64\xd6\xb1\xf6\x7c\x59\x5a\xeb\x14\xf2\x1d\xd9\xbd\x8a\xfe\x73\x42\x53\x63\xce\x28\xdb\xd9\xe3\x4a\x6d\xe2\x0c\x62\x77\xd6\x3c\xa7\x31\x8d\x65\xe7\x9a\x42\x2c\x7d\x54\x5b\xb4\x8f\xcc\x7e\xad\xdd\xcb\x4c\xbf\x8f\xe4\x6b\xce\x95\xc0\x14\xfb\xfb\xbc\x2b\x6f\xe7\xa1\xc9\x42\x02\xe8\x8b\x00\xf4\x35\xd5\x1d\xbe\x83\xd8\x0c\x3d\x8f\x63\x63\xd7\x7a\x7f\x0c\x91\xab\x18\x22\xf8\xf8\x31\xb6\x79\x1c\x59\x40\x26\x44\xc5\xa9\xe5\x84\xe5\x99\x13\xc8\x60\x01\xa7\x82\x9d\x17\xd6\xc4\xae\xf4\x80\x4e\xd7\x3d\xb5\x41\xe0\xc9\x7a\xc5\x0a\x59\xc4\x06\x26\xe9\x51\xf1\xc7\x99\xb4\xab\x5a\xe9\xf1\xf1\x04\x4c\x98\x9e\x37\x72\xfb\xbf\x19\xfb\x20\xfe\x0a\x3d\x6f\x45\xc5\xf3\x4c\xc4\x9d\xd3\x81\xe4\xd6\x92\xa5\xa8\x07\x93\x61\x8c\x12\x47\x7e\x75\xee\xf7\x75\x5b\xe4\x23\xb3\xd5\x3c\x7a\xc5\x86\x05\xd6\x5b\x7d\x53\x82\xdb\x7d\xbe\xce\x31\x37\x1a\xc9\x74\x49\x21\x99\x9a\x94\x18\x0f\xb5\x49\xfe\x7c\x4a\xc1\x3c\x70\x51\xd8\x33\x7f\xa4\x68\xc7\x1b\x9e\x46\x5d\x14\x26\x1c\x4c\xf9\x96\xed\xe9\x1d\x96\xf7\xce\x3f\xef\x8a\x56\x1f\x0a\x07\x69\x1a\xef\xad\xae\x07\x9d\x5b\xf6\xd7\x11\x5f\x2f\x7a\x88\x6c\xdf\x12\x78\x53\x8f\xf3\x8a\xa8\xf0\x07\x28\xbc\x9d\x42\x7d\x93\xbf\xa5\x49\x4a\x96\x8d\xee\x94\x83\x10\x2f\x1c\x7c\xa2\xb8\xd6\x65\x12\xc6\xd6\x64\xc8\xd6\x30\xc9\x2f\x13\xc4\x9f\x8f\x5d\x61\x6f\x35\xcd\x96\x7b\x0c\xb1\x72\x2a\xf4\xd5\xb8\x11\x9c\x6c\x7d\x42\xcd\xb5\x4d\x18\x96\xb9\x54\x33\x50\x1c\x43\x07\x99\x8f\x1b\x96\xbd\x43\xa4\x12\x20\x9f\x91\x8c\x54\x15\xc4\x27\x25\xbf\x97\xba\x51\xcb\xdb\xfe\x6d\xf1\xa2\x2f\x12\x8e\x0d\x91\x19\xa8\x35\x8e\xc0\x8e\xfe\xdb\x06\x16\x7e\x3e\x51\xd9\x4b\x2f\x33\x43\x53\x44\xec\x85\xeb\xea\xcb\x1e\x2e\xbe\xd9\xa4\x6d\xbe\x14\xc5\xf1\x1a\x4a\x26\x28\x41\x80\xc0\xc5\x99\x12\xad\x5b\xc2\x43\xae\x45\x02\x07\xdb\xf3\xf3\x4f\xd1\x9a\xe7\x44\x2a\x5c\x28\x72\x99\x2a\x19\x78\x76\xbf\x8b\x45\x01\x7d\xc2\xf3\x14\xb0\xb3\xd4\x23\xb4\x8a\x95\xcb\xc9\x41\x37\x03\xd4\x74\xfe\x24\x98\x10\x37\x55\x62\x77\x37\xc6\xbe\xc8\x7d\x6f\xac\x44\xa0\x37\x14\xe4\x0c\x15\x3c\xe7\xe0\xe6\x0b\xf6\xef\xa8\x5a\xc0\x52\x66\x92\xe5\x38\x4a\x54\x69\xe2\xbc\xd6\x31\x3c\x5f\x9b\x92\x8b\xb3\xed\xcc\x8e\x4c\xc4\x20\x41\x84\xf5\x8c\x69\xe5\x93\x26\xbd\xea\x81\x5d\x2a\xd6\x94\xa3\xc4\x19\xe5\x28\x71\xa6\x86\xed\x59\x9c\x25\x1d\xe1\x29\x3f\xcb\x50\xd2\x16\xa7\x85\x40\x03\xd0\x1e\xaa\xcf\x9e\xe7\xb6\xc8\x89\x52\x24\x16\x75\x0a\x28\xb0\xa9\x0a\xf4\xf6\x68\x91\xd9\xa1\x05\x03\xe3\x6b\x9c\x6c\x56\x31\xdd\x97\x25\xf3\xdc\xbd\xee\x8c\x9d\xf2\x41\x99\xe5\x62\xfb\x2f\xc6\x33\xd5\xf5\xa0\xf5\x74\x82\xde\x8d\xb2\xd7\x11\x0e\xf4\x76\xf0\x98\xe2\xe2\xfc\x22\xbd\x5b\x2c\x42\xe8\x5f\x20\x82\x3a\x87\x89\x04\x54\xc5\x2d\x6a\x28\x6f\xbf\x4b\xab\x0d\xa2\x19\xa9\xa8\x09\x2b\xd4\x57\xcf\x4f\x62\x20\xe1\xcf\xae\x62\x5f\x10\x9d\x9e\xea\x19\x38\x4b\xac\xc5\x83\x5e\x3f\xc3\x3b\x96\x4c\x18\x07\xed\x5b\xd7\xbe\x03\xc1\xc4\x32\xd5\xfa\xf5\x97\x78\x27\xba\xa8\x70\x40\x1c\xb1\x49\x3f\xa1\x0a\x03\xb9\x83\x87\x9d\xd6\xd5\xe6\xbe\xf2\x45\x8e\x21\x2f\xd3\x58\xc5\x55\x5d\x27\xd4\x13\xe3\x62\x28\x9e\x44\x1b\x9a\xc9\xb5\xc2\xab\xf4\xd1\x94\x66\xa4\xf8\x06\xfa\xa5\xb1\x82\x13\xab\xd6\xe9\x52\xd4\x2f\x33\x9b\x53\xfa\x8d\x3e\xd8\x31\xcd\xd1\xbc\x8a\x59\x87\xa9\x72\x3e\xf0\xb5\x19\x28\x8f\xf1\x7f\xd7\x79\xf0\x99\xb1\xd7\x26\xdd\x52\x55\xcd\x2b\x4d\xce\xff\xfd\xcc\xf6\x53\x26\xdc\x28\xc5\xdd\x83\x4e\x71\xf7\x71\x37\x2e\x56\xd3\xe4\x11\xd5\x6a\xbe\x10\x28\x08\x03\x73\x20\x01\x90\x3e\xc6\x79\x1c\x62\xf3\x2b\x8a\xca\x70\x12\x8f\x0c\xeb\x2b\xb7\xb7\x19\x3a\x1f\x28\x04\x1a\x8f\x16\x01\xd5\x7b\xda\x5e\x34\x1c\x12\x02\xd0\xc6\x6b\x54\xeb\x71\x08\xc0\xc5\x83\x13\x46\x33\x8e\xa2\xef\x6a\x61\xd0\xbc\xc7\xd0\x62\xab\x1f\x7c\xfd\x15\xed\x50\x22\x12\x45\x2d\xd5\xa7\x3f\xa5\x18\x59\xa7\x6a\x4a\x07\xf0\x5e\xce\xcc\x8a\x89\xd8\xdd\x4d\xdc\x64\xe9\x2b\xc4\x4e\xd6\xbf\xee\x28\xc9\x6d\x58\xb0\x96\xa9\xab\x0d\xf8\x6a\xa2\x22\x2c\x9e\x53\x85\xbf\x91\xc9\xe2\x88\x18\x69\x53\xf4\xd4\xf0\xaa\x67\xa8\xa3\xbb\x7d\x5f\x49\x6f\x6d\xd5\x94\xf8\x7e\xb5\xdd\x75\x2d\x01\x27\x9d\x52\x7d\x87\x48\xa7\xd4\xf5\xeb\x0f\xb6\x23\xae\xc8\xc8\x0d\x28\x07\xc4\x4d\x25\xea\x14\x9a\x61\x37\x8b\xc8\x43\xba\x1a\xa5\xdc\xaa\xa1\x67\x2d\x6d\x9b\x06\x0d\x8a\x41\xd4\xeb\x59\x2c\xeb\xd8\x94\x6f\x28\xdc\xf4\x0d\xd7\x93\x4b\xec\x6a\x3e\x32\x4a\x2e\x46\x80\x66\x5a\x5d\xa5\x86\xf8\xdc\xbf\x9f\x0a\x33\x69\x6e\x20\xf5\x2e\x4b\xba\xf2\x73\x3b\xd3\x08\xcd\xce\x47\x36\x8c\x96\x60\xdb\xdb\xf2\x65\xca\x13\x0a\x0b\x72\x42\xbd\x11\xb2\x42\xeb\x97\x52\x9b\x74\x83\xdd\x01\xe8\xaf\xd4\xea\x14\xfb\xf7\xb7\x4d\xb7\x57\x86\x0e\x15\x27\x22\x11\xba\xab\xd4\x00\x62\xcf\xad\x99\x9a\xe0\xca\x54\x9f\x05\xaa\x68\xaa\xe3\xe9\x1d\x77\x6a\xc1\xc4\xaf\xb4\x57\xa2\xdc\xe1\x80\x45\x59\x8b\x26\x17\x9f\x28\x65\xce\x34\x2c\x5e\xa4\x1a\x34\x82\xf4\xe3\x78\xe7\x7c\x32\x21\x84\x69\x48\x00\xde\xe5\x60\x98\x73\x7c\x3c\x51\x80\x0c\xcb\x6e\xcb\x03\xee\x4f\x2b\xf9\xd8\xd3\x0a\x73\xfb\xf9\x85\x03\x34\x16\x26\x96\x12\x59\x64\x9e\x57\xb1\xe6\x52\x9a\xc1\xe3\x10\x39\x0b\xd6\x41\x28\xe1\x0b\x61\xdb\x3f\x8d\x33\x13\xe5\x94\x61\x9a\x29\xbf\x6b\x98\x80\x39\xef\x6b\xaf\x90\x73\x49\x61\x2b\x0a\xb3\x6c\xc9\x02\x07\xf1\x3d\xc6\x1b\x9a\xb3\xc8\x56\x3e\xa6\xf7\xc6\xae\x04\x35\x50\x07\xad\x0c\xdd\x34\x43\xfd\x1a\x57\x8c\x0d\x0c\xba\x73\x5a\x19\x0a\xc7\xaf\x8d\xbd\x67\x61\x62\x8b\x27\x68\x92\xa2\x12\x0c\xb4\x3f\x36\xf1\xcb\xd8\xb4\x58\x8b\x92\x76\x01\x57\x7e\x7b\x49\x71\x86\x35\xdf\x90\x66\x24\xbe\xea\x8a\x92\xed\x7c\x54\x41\x3e\xaf\xd1\xe6\x89\x1a\xc5\x14\xca\x2e\xd8\x8e\xde\x1d\x6b\x0c\x45\xa0\x76\x9a\xdd\xb5\x7c\x7e\x81\x0c\xc7\xaa\x39\x3b\x61\x99\x10\xe8\xd6\xb3\x7e\x2d\x3d\x7b\xf4\x71\xba\x68\x2c\x2d\x67\xb4\x0f\xf9\x25\xed\x58\xb3\x9b\x5b\x0c\x6e\x5b\x5b\x10\x5d\x88\x6f\xe1\xf2\x9c\x75\xa5\x73\x64\x3d\x4f\x8f\x46\x90\xcb\xca\x7b\xfd\x4a\xa0\x40\x43\x6f\x29\x03\xb5\x33\xf4\x42\x31\x12\xde\x77\x89\xf2\x2b\x69\x99\x7b\xa2\x07\x00\x23\xff\x40\xe9\xfa\xfe\x83\x87\xda\x3c\xe7\xe9\xd0\x16\xd1\xd0\xe6\xd3\xaa\xe0\x0b\x29\x76\x3c\xda\x27\x69\xf6\x3a\xc5\xf8\xea\x76\x19\x36\xea\x7e\x5d\x4c\x98\xe0\x27\x81\xae\xc7\x54\x47\x65\x8c\xc7\x30\x1c\xa4\x95\x50\xdd\xda\xf6\x65\x95\xaf\x77\x6d\x96\x99\x56\x75\x63\xb2\xdb\x68\x49\x1a\xd7\xc4\x8e\xb2\x65\xd9\x24\x04\x7c\xed\x6f\xb1\xee\xbd\x7a\x60\xa1\x1d\x47\xfd\x41\x31\xe3\x7b\x0a\x2d\x92\x3c\x15\x76\x69\xcb\xd9\xa4\x7f\x4c\x63\xd7\x09\x39\x55\x03\x4b\xfa\x3c\x9f\x52\x30\x94\xe1\xa8\x2c\x6c\x06\x96\xb9\xdb\x18\xae\xa9\x8d\xe1\x5a\x13\x69\xb8\x17\xe5\x5f\x2f\x23\x5b\x48\x4f\x8e\x05\xff\x94\x10\xe4\x6b\x4a\x34\xc9\x64\x7d\x9b\x14\x51\x12\x99\x84\x56\x78\xc6\xf7\xd2\xec\x10\xac\xaf\x4f\x6e\x4d\x18\x5a\x61\x9d\x0a\x6d\xc0\x8b\xe2\x34\xb2\x74\xfa\x91\xc1\x0e\x7d\x70\x22\xd1\x41\xfd\x09\xd6\xc1\xc8\xbf\x76\xad\x3f\xa3\xb5\x31\x86\x69\xd2\xcb\x5b\x14\x1c\x61\x64\x30\x1f\x8a\x4f\x94\x90\x46\x5e\x66\x2b\x76\x2d\x27\x15\x4e\x67\xe7\xb7\x13\xb2\x89\xdd\xea\xcd\xc0\x63\x07\xde\x54\x64\xfb\x55\x1b\xc7\x4f\x4f\xd8\x75\x55\xf1\x13\x23\xe3\x11\xa1\xb1\x50\x01\xcd\x07\x2e\x66\x60\x06\x39\x8f\xe6\xb9\xc3\x5c\x17\xdb\x50\x04\x40\x36\x7e\x11\x47\x6c\x55\x4f\xbd\xce\x31\x21\x7e\xe5\x72\xa0\xb3\x5b\x2c\x5b\xfc\x6d\x6a\x76\xbc\x8b\x25\x4c\x64\x95\x3c\xdf\xf1\x04\xcd\x72\x94\xe8\xa6\xd6\xfd\xce\xe4\xfd\x14\xe6\x9c\x06\x2a\x7d\x37\x0a\x61\x6c\xb0\xea\x04\xa6\x0e\x48\x85\xec\xbc\x0b\x39\x56\xec\x80\x48\xc9\x9c\x6d\x6d\x53\x1e\xb0\x7d\x39\x10\x69\xb0\x81\x19\x76\xcb\xac\x5f\x2d\x6f\xd5\x38\x46\x79\xf7\x9f\x2b\x82\xdd\x3f\x9f\xa0\x19\x85\x19\x7c\xb0\x94\x54\x96\x57\x6f\x38\x3f\xfe\x4c\xe4\x42\x09\x9b\x85\x69\x35\x32\xbd\xe4\x00\xc2\x53\x56\xb9\xe3\x13\xad\x75\x91\xae\xa5\x85\xd9\x47\xff\xca\xf8\xaf\x40\x23\x71\xb1\x15\x3a\x77\x5e\x2f\xc4\x8b\x87\x00\x22\xf4\x26\x3d\x6d\xe4\x42\x5b\xca\xff\x7a\x82\x2d\xed\xcd\xc2\xc2\x18\xa6\xa8\x2d\xdd\xee\xe5\x7c\x41\x6a\x72\x0d\x95\xe8\x43\xed\x3c\x5a\x16\x85\x02\x41\x60\x2a\x41\xfb\x0d\x47\xc4\x0b\xd3\xd2\x59\xc6\x8a\x48\x98\x56\x0c\xab\x55\x64\xf6\xcf\xb5\xf3\x70\x60\x7b\x65\x6c\x5b\xfa\x1e\xf5\xbd\x7b\x98\x6d\x66\x8b\x28\xa3\x5b\x98\x56\xd1\x30\xc2\x29\xa1\x48\xa8\xc8\xf8\x5c\xa0\xcc\x77\x2e\xd6\x7c\x66\x5f\x7e\xb9\x1d\x66\x06\x01\x0e\x42\x0e\x70\x4f\xf8\x58\x45\x12\x43\x93\x2d\x5b\xf4\x58\x1d\x6a\xf2\x4d\x24\x21\x68\xe8\xb1\x98\x06\x6a\x42\x77\x02\x2f\x57\x7f\x5d\x15\x9d\xef\xe3\xcd\xe1\xe3\x97\x68\x0a\x48\xec\xe1\xab\xd4\xcd\xf8\x88\xbc\x88\x86\xa6\xb0\xbd\x69\xcf\x41\x63\xc4\xb2\x13\x2f\x74\x31\xc1\x35\xfc\x0c\xca\xc5\xc7\x82\xcf\x68\x16\xbe\x89\x43\xd6\xc5\xe5\x2e\x16\xab\x3c\x29\x2b\xeb\x4b\x6e\x2e\xe5\x69\x1c\xf5\x4c\x16\x15\x6b\x0a\xab\x70\x5e\x99\xb3\xcd\xac\xab\xa6\xf1\x63\x1d\x6f\x07\x9c\x2f\xdb\xa2\x6b\xe2\x98\x68\xd6\xd8\xa6\x77\x51\x53\x48\x44\x63\xe9\x69\x89\x38\x5c\xb5\xc8\x39\xc4\x9d\xeb\x4e\x63\xe1\xa5\xdf\xf9\xf3\x4f\x61\xbf\xc4\x70\xfe\x81\xdb\xf2\xf2\x81\xe9\x21\xf3\xc5\xb6\xca\x7d\x3f\x3e\xa9\x11\x21\xab\x1c\x61\x18\xc5\x51\x61\x32\xc6\x34\x08\xdc\xbb\xe5\x04\xee\xee\x2a\xb2\xdb\x31\x2d\x76\xf7\x97\x63\x2d\x0f\x9d\x90\x14\x92\x2b\x14\xb3\x21\xa7\x20\x17\x1a\x60\x7e\xfd\x38\xcd\xd6\xa6\x74\x63\xe5\xbc\x9a\xd3\x0c\xcd\x10\xbe\x8c\xf2\x5a\x49\xe3\x74\xd8\x8d\x4c\xcb\xb3\x5c\x20\xb6\xc5\xc7\x0d\xb3\xf5\x50\xdb\x1e\x2d\x6c\xc2\x15\x34\xa0\x64\x7e\x42\x77\xc5\xc7\x5a\x5e\x2b\x2d\x48\xc0\xc1\xa1\xed\xc0\x7f\xe5\xe3\xda\x7d\x50\x44\x4c\x66\x07\xae\x9e\xf7\xd1\xd8\xe3\x1b\xe1\x04\x20\xf8\x89\x9d\x4f\xff\xe0\x97\x0f\x41\xc4\x3f\xe2\xbc\x0e\x15\xca\x8f\x68\xe8\xf1\xb1\x52\xc0\xc4\xa5\x45\x55\x2e\x37\xa3\x80\xaa\x62\x25\x48\x21\x93\xc8\xd9\x7a\x80\xfe\x2d\xf0\x2d\x64\xcb\x7c\x46\x29\x0d\x66\x36\xe9\x17\x83\x3d\xb4\x3b\xe2\x5b\x78\xa2\x38\x71\x37\x67\x46\x71\x0a\xbf\x85\x88\x07\x09\x03\x9e\x37\x80\x3a\x18\x5f\xeb\xca\xca\xa6\xb0\xb1\x5d\x89\x72\xee\xf6\x21\x7a\x65\x9a\x96\xe4\x62\x3e\x5f\xb9\x1c\xec\x4c\x5e\x25\xdc\x1c\x94\x49\x2f\x73\xe2\x24\xa2\x5c\xa6\x2a\x67\x75\x76\xf9\xdc\xe1\x76\x99\x50\xd2\xeb\x72\x52\xe7\x81\xea\x83\xef\xad\x89\xa4\x6e\x79\x39\x52\xe5\x22\xae\xe2\xf0\x49\xad\x22\xff\x62\xbb\x5b\xe6\x51\x22\xf2\xec\x8d\x8a\x5c\x3b\x6b\x2a\x2e\x7c\x0e\xd3\x02\xa3\xcb\xa5\x34\xd5\xc7\xf8\xa4\x51\x9c\x20\xb7\x71\x8c\xf0\x8b\x2b\xb3\x63\x2f\x15\x7d\x82\x56\x0a\x69\xd3\x3c\xad\x31\xac\xa3\x34\x03\xa0\x0a\x91\xec\x87\x78\x81\xc8\x68\xaf\xb1\x81\xaf\x77\x8f\x2d\x8b\x6a\xcf\x99\xf6\xb5\x46\x68\x74\xa2\x18\xb5\x4e\xc3\xc9\xed\x26\xbe\x5a\x7d\x79\xfc\xbc\xe3\x91\x64\xe1\xc0\x24\xbd\x28\x77\x89\xa1\x5e\xed\xd1\x30\x02\xbb\x44\x10\x55\x35\x71\x8c\x83\x55\xc4\xbc\xc3\x49\x97\x5e\x84\xe0\xd3\x1b\x76\xab\x5e\x99\x43\x6d\x05\xf5\x7c\x20\x6a\xf9\xb8\x49\x62\x9d\xd9\x78\x00\x0e\xa3\x1a\xf9\x43\xad\x9f\xf1\xc3\xf1\xa7\x04\xe8\x65\xf3\x51\x9a\xe4\x51\x37\x8e\xe2\x62\x0d\xe3\x4f\xe8\x41\x2d\xe7\x43\x7b\x69\x82\xf1\x16\x47\xe1\xe3\x3e\xeb\x6f\x11\xd2\x0c\xd9\xc6\xf6\x58\x2b\x97\x4d\x34\xe2\x1f\xa7\xa7\x82\x19\xf2\x26\x26\xab\xf3\x25\xa8\x1e\x05\xb7\x6a\x03\x15\x92\x9c\x41\xe0\x8a\x14\x1b\x28\x6e\xce\x09\xc7\xca\xc6\xf5\x8c\x26\xd3\x9e\xad\x3d\xbd\x17\xa8\xd3\xc7\xad\x44\xc9\x97\xe9\x79\xf3\x49\xad\xcc\xb5\x7f\x8e\x60\xb5\x92\x53\xa1\x99\xfb\x61\xa0\xd8\x6c\x1f\xd6\x26\x0b\x91\x95\x6d\xdc\x4b\x87\x53\xda\x0a\x62\xec\x9d\x4a\x6e\xe3\x0b\x84\x0c\xf8\x9c\x82\x01\x0d\x6d\xba\x5a\xed\x2b\x53\x5e\x2b\x8c\x59\x8c\xda\x4b\x00\x4f\xeb\x3b\x35\x53\xed\x83\xed\x23\xb3\x73\x8f\xfb\x52\xff\xc5\xc0\xc7\x17\xe7\xb5\xcc\xff\x96\x8a\x2b\xef\xe3\x0d\x28\x6d\xf4\x05\x4f\xb6\x75\xd8\xd6\xef\xaa\x2c\xe2\x2e\xe5\x2a\x22\x1c\xa7\xe0\x12\xdf\x07\xb6\x83\xbf\x0a\xaf\x0c\x81\xca\x27\x0a\xe0\xdd\xb3\x61\x6c\x32\x5e\x27\xc5\xa6\xbb\xe5\x1c\xaa\x98\xac\x2c\x93\xb8\xbe\x81\x3b\x84\x38\xd7\x5f\x11\xb2\x5c\x0d\x94\x87\xc0\x6b\x78\xad\x6c\xbc\x51\xdf\x86\xaa\x57\x54\xf6\x7a\x36\x91\x86\x8c\xd6\xb0\x14\xc8\xad\xcf\xb5\xc2\xa5\x22\xa4\xe4\x1b\x65\xaf\xdf\x0b\xbc\xd4\xe5\xef\x39\x6c\xbc\x3d\x3a\xb2\x59\xa4\xe4\xc6\xb8\x18\x35\x51\xa5\xaa\xbb\x52\x2c\x56\xdb\x52\x94\xf4\x65\x0f\x86\x6c\xc9\xbb\xca\x6f\xe0\x5d\x35\x42\x44\x45\x84\xf3\x6b\xe9\x5c\xf9\x50\xfb\xcd\x26\x65\xd7\xb0\x8c\x8b\x87\x6f\x0b\x0a\x82\x90\xe6\xb9\xcd\x67\x3c\xfb\xe1\x46\xe0\x15\xa5\x99\x91\x84\x29\xcc\x10\x01\x3e\xc1\x08\xc2\xa0\x39\xe7\xc0\x9c\xdd\x28\xc3\x55\x0a\x56\x56\x63\x68\x1b\x02\xdc\x24\xea\x0f\x8a\xa1\x88\x5d\x21\xab\x40\xa7\x98\x8f\xbd\x5e\x4c\x37\x65\x05\x34\xac\x3b\x37\x27\x9c\x2a\xe8\xe6\xb0\x52\x6c\xd4\x5e\xfd\x81\x05\xc8\x7f\xe5\xae\x25\xed\x0a\xc4\x8e\x38\x78\x42\x31\xcb\x40\x29\x29\xa2\x15\x4b\xe6\x96\x88\x36\x4e\xe1\x86\x1d\x8b\x74\x71\x76\xb2\x85\x83\x8d\x7a\x37\x51\xe2\x81\x2a\xc2\x7d\xe0\x41\x4e\xd5\xe4\xe2\xab\xb0\x28\xb3\xd5\xfe\xe5\x2a\x54\x62\x53\xd5\x52\xf6\x55\x3b\x57\xf7\xf9\x79\xe5\xb6\x58\x3d\x0d\xd9\x54\x7d\xd9\xa6\x1e\x82\x1d\xfe\x32\x5a\xb2\x4b\x65\x56\x70\x0a\x28\x1e\x5f\x74\xed\x7c\xa2\x44\xa3\xd3\x9e\x99\x56\xc1\xc8\x15\x25\x2e\x78\xd3\xc7\xe7\xff\xd9\xc7\x81\x02\xff\xec\x72\x3a\xaf\xab\x26\xee\xa5\xd9\x12\x0d\x04\xac\x5b\xff\x02\x3f\xc4\x27\xc1\xf3\xda\xd6\x3c\xb4\x16\x00\xc0\xea\x99\x4a\x87\xce\xb7\x62\x21\x7b\x85\xc5\xfe\x4e\x2d\x97\xdb\xbf\xbf\xdd\xcb\xec\xea\x04\xb8\x74\x4b\x37\xd5\xb6\x1c\x0c\x49\xec\xfb\xe5\x71\x23\x42\xfb\x63\x7a\x72\x7c\xac\xb9\x80\x3d\x92\x3e\x82\xd9\x21\xc0\x90\xa7\x02\x15\x5d\x6c\x29\x2f\x3e\x5c\x2e\xff\x91\xea\x7a\x0d\x6d\xf1\xaa\x4d\xba\xa6\x1c\x4a\xe6\x8d\x4d\x7b\x1b\x8f\x8d\x4f\x54\x41\xfd\x6b\x9f\x9f\xa3\xfa\x10\x86\xdc\xcf\x70\x1f\xce\x94\xf4\xa5\xc5\x59\xad\x35\x21\x08\xa4\x4f\x9a\x3a\x29\x51\xb2\x92\xc6\x2b\x93\x2e\x70\xf7\x34\x09\x82\xad\x43\x95\x5f\xb3\xf7\xce\x58\x31\xbd\x34\x53\xf0\xf7\xbf\xc1\x85\xf0\x89\x03\x43\xd9\x3c\xcc\xd2\x55\xe5\xd3\x00\x91\x22\xb4\xf6\xce\x2b\x15\xad\x63\x4a\x76\x9d\x24\x09\x7d\xc1\x0f\xb9\x03\x1f\x6b\x83\x6e\xe1\xb6\x55\x97\x8f\x2d\x14\x94\x39\x3e\x1e\x7b\xcf\x3d\xc2\x35\x3d\xa2\x70\x03\x1f\x8e\x3d\x95\xf1\xfb\x74\x19\x68\x39\x1f\x53\x23\xe9\x07\x1a\xb7\x7e\x0f\x09\x01\x56\xf7\x9f\x30\x13\xdc\x95\x31\x0e\x2e\xfa\x32\x06\x6d\x1c\xbc\x20\x28\x35\xa9\x7c\x90\xae\x26\x7b\x7c\xe9\x72\x43\x83\xfc\xbe\x89\xd2\x29\x86\xc7\xeb\x4a\x7d\xe4\xa7\x63\xc5\xbd\xe1\xdc\x58\xf4\xfe\xfd\x98\xb0\x51\x48\x2d\x1b\x3d\x33\xf8\x78\x22\x2c\x2b\x7b\xf6\x19\xdf\x50\x61\x24\xb8\xd0\xef\x5b\x9f\xff\x4d\xef\xa2\xef\x50\x1e\x3f\xd0\xa2\xf3\x22\x20\x2d\x85\x0d\x0f\xff\xfe\x04\x5b\xbc\xc3\x4a\xbe\xe4\xa0\xa0\x60\x05\x20\x2a\xb8\x4a\xa5\x45\x5c\xd9\x0f\x28\x62\x17\x3d\x18\xba\x7d\x91\xe2\x53\xfa\xdf\xff\x7b\x30\xa1\xd1\x4d\x93\x0b\xeb\xeb\xf7\x02\x55\xa4\x38\x5d\x9b\xf4\xf3\xf3\xed\x22\x4b\x01\x91\xe7\x28\x84\x7a\x20\x12\x91\xf8\x62\x5b\xb5\xec\x85\x69\x4b\xbd\x8d\x73\x4a\x05\xa3\xae\x5d\xf7\xf2\xcb\xa4\x29\xd5\x52\x75\x8f\xc0\x03\xf2\xce\x2b\x7e\x54\x46\x89\x5f\x4b\xf1\xa3\x00\xa8\xe6\x63\x5f\xab\x88\xad\x5d\xa6\xef\xc3\x52\x0a\x5e\x1b\x1f\xaf\x3b\x88\xe4\x08\xfa\xe8\x2c\xd7\xe9\xca\x97\x3b\x03\xcd\xc5\xd9\x76\x3f\xb3\x89\xe9\x19\x64\x10\xd2\x7f\x52\xfb\xdf\x6b\x4e\xd6\x36\x1f\x98\xd5\xe9\xea\x45\x34\x40\xe8\x68\x2a\x48\xe5\x56\x61\xc4\x66\x6a\xba\xcc\xf3\xf3\xed\xbc\x0c\x07\x53\x84\x00\x16\x1a\xdf\xa4\xfd\xb7\x13\xb0\x79\xa0\x7c\x35\xfb\x52\x62\xc3\xf0\x42\xad\x8b\x8f\x6b\x01\xf4\xcb\x2f\xb7\x6d\xaf\x0c\x4d\x01\x05\x4a\x44\x88\xdf\x0e\x7c\x56\xf5\xed\xa6\xf2\xd8\x52\x1a\xc7\x68\xd2\x55\x7f\x88\x7a\x53\x6b\xdd\xd5\x15\xbe\xfa\x7c\x87\xc6\x14\x72\xf8\x3d\xeb\x92\x08\x8e\xaa\x77\x97\x96\x28\xe4\xb0\x2b\xb5\xe6\xc8\x6c\x36\x60\xda\x0e\xb6\x8b\x2a\x54\x91\xf6\x98\x38\x1d\x7a\x2e\xc8\x39\xb5\x77\xe4\x45\x96\x52\xdd\xd4\x33\xf8\xb7\x94\x05\x36\xcf\x5b\x6c\x11\x6b\xc5\x00\x72\x56\xbc\x1d\x5c\x55\xd0\xc5\xab\xae\x7c\x1d\x46\x19\x49\x1d\x70\xf8\x0b\xc8\x01\x8b\xd1\x61\x96\xdc\x0e\x34\xeb\xd3\xd5\x65\x07\x26\x77\xd2\x98\xd8\xa6\x5f\x53\xc2\xd1\xd4\x62\x91\x8b\x0e\x23\x9b\x14\x69\x9c\xf6\xd7\x5a\xaa\xd1\x04\xea\x81\x94\xe9\x76\xa2\x3c\xa9\x32\x94\x0f\x6c\x5c\x90\xf5\x47\x4b\x41\x70\x41\x45\x16\x33\x70\xef\xb3\xb5\x6c\x92\xdc\x70\x28\x87\x31\x87\x8c\x19\xab\x08\x47\x24\xe8\x66\xde\x50\x7c\xdb\xa5\xf2\x95\xa8\xc8\x4b\x0a\xc9\x85\x16\xa3\xbc\xb1\xce\xd6\xf0\x90\x55\xc0\x6f\xba\x69\x09\x79\x62\xa4\xf2\xbf\x47\x0f\x97\x8f\x15\xe8\x38\x1d\xd9\xcc\x14\x36\xdf\xa3\x64\x20\xb9\xf0\x84\xe2\x19\x30\x40\x0e\x99\xe7\x4a\xbb\xff\x30\xf0\x0c\xa0\x7f\x81\xb5\x4d\x70\xea\x8f\x29\x9d\xae\x3d\x74\x53\xd8\x0c\x85\x73\x85\x08\x6a\xaa\xe3\x1f\xef\x96\x62\x7c\xdc\x99\xe0\xa0\xe0\x45\x0b\xb3\x7f\xe7\x4c\x20\xc1\x4d\x4b\xb6\xed\x0c\x5c\x42\x9a\xff\xdb\x63\x45\x46\xfb\xed\x87\xea\xc3\x15\xe6\x68\x04\xd5\x37\x94\xc7\x20\x51\x86\x37\x70\x8e\xb2\x49\xcc\xda\x3f\x6c\x2a\x35\x8c\x6c\x92\xbc\x9a\x46\xb1\xe2\x28\xbf\xa3\x39\xca\xef\xd4\x96\xb0\xb9\xc3\x6d\xa3\x90\x14\xa2\x24\xa9\x0a\x2e\xa7\xd1\x4e\xe7\x7d\xed\xef\x3d\xa5\x9b\x49\xd8\xd6\x40\x76\x78\x4d\x97\x93\x47\x1a\x4f\x3e\x56\xcf\xfb\xbf\x09\x94\x40\x8d\x6a\x9b\xdc\xd0\x96\x98\xaf\x05\x8a\x13\x7b\x03\x72\x03\xa8\x8c\x6d\x29\x98\xdc\x87\x4a\xc9\x12\xa2\x02\x2c\x9d\x85\xa1\x22\x3d\xbf\xd6\xdc\x61\x5f\x13\x27\xb1\xf2\x2a\xbc\xd5\x22\xc7\x9b\x81\xba\xa7\x4d\x15\x48\x64\x65\x9e\xa7\xb4\x2e\x09\x6f\xb5\xe5\xc4\xe4\xcf\x8c\x77\xc2\x9e\x5f\x7e\xd9\xc1\x7d\x44\x59\x52\x41\xc0\xce\xa8\xef\x5d\x4a\xd3\x5e\xae\x70\x14\xdc\x4c\x62\x62\x2f\xfd\x08\x3a\x55\x9f\xd4\x5e\x32\xa9\xb9\xe6\x79\x64\x92\x1d\xed\x23\x4d\xef\x9f\x50\x27\x8f\x6d\x8f\xfc\xfb\x7d\xf7\x18\xfc\x49\xf1\x94\xad\x1e\x9c\x34\x0a\x7d\x18\x57\x64\xd6\xa2\xd6\x28\x81\x86\x22\x68\xd4\x36\x8c\xf9\xf9\x76\xd7\xe4\x76\x68\x12\x6c\xee\x4e\xbd\x56\x15\x42\x64\xf1\xec\x45\x79\xbf\x74\x55\x5a\x4c\x87\x3f\x41\x2c\x2c\xfa\x8a\x0a\x74\x7c\x25\x10\xad\xe3\x42\x84\x35\x08\x56\x74\xd0\x5b\xe3\x2b\x4d\x72\x9f\x48\x17\x59\x19\x2e\x43\x8b\x44\x62\x00\x25\xd7\xcf\x3a\x02\x42\x03\x53\x23\x1f\x23\x5a\xb8\x62\x8d\xab\x58\xd6\x2f\xb9\x62\xe8\x34\x91\xab\xcf\x88\x26\x72\x13\x87\x04\x9e\x5f\x58\x8f\x85\xc4\xe0\x0b\x7a\xe7\xbd\x6e\x43\x06\xd4\xb5\x37\xb1\xbb\xa6\x3c\x0b\xae\x29\x27\xea\x81\xcd\x79\x0c\x3b\xd8\x43\x75\x11\x02\xc0\x7e\x5a\x65\x3d\xbd\x28\x34\xf1\x63\xb4\x3a\xb3\xe0\x63\xe0\x19\xba\xeb\x81\xb7\xea\x78\x0f\x41\x1f\xe2\x90\x2b\x63\x25\x03\xb6\xbb\xa3\x90\xb9\xad\x75\xa5\x19\x0d\x1f\x2a\xa4\xac\x57\x03\x05\xb5\xb9\x46\x03\x4b\x14\x26\xe9\x4a\xb1\x4f\x5e\x72\xe6\x5f\x4b\x26\x13\xc6\x22\xc2\x0a\xd6\x75\xe7\x13\x6f\x08\x60\x8f\x16\x4f\x62\xb0\x8b\x99\x1f\xfd\x90\xb2\x1f\x97\x9c\xe7\x63\xbc\x65\x2c\x04\x77\x95\xbe\xc1\xf3\xc4\x12\x17\x0d\xa0\xea\xd2\x90\x90\x3e\xdb\x51\x8c\x1c\x5e\xa9\x90\x59\x5f\xf5\xfa\x11\xff\x53\x9b\x08\xe3\x82\xbc\xa9\x16\x61\x67\x83\x55\x5d\x3d\x36\xce\x6d\x94\xcd\x00\x6b\xf8\x5d\x05\x1d\xe9\x67\x26\x62\xe3\x85\xa6\x28\xd6\x27\x17\xff\x46\xc3\x0d\xa5\xe9\x90\xa6\xcb\x8f\xf8\x88\x91\x07\x33\x40\xa3\x8c\x16\xc0\x98\xff\xd9\xd8\x03\x81\xa7\x68\x5b\x47\x53\xfb\xbe\x32\x50\xde\x4b\xc2\xcb\xf8\xef\x33\xeb\x74\x91\x78\xc8\xb7\xb4\xb3\xf1\x9d\x86\x52\xae\x89\xd3\xc4\xb6\x26\x04\x0b\xaa\x9f\x90\xa2\x9b\xcf\x61\x57\x6c\x16\x15\x99\x09\x5b\x8a\x7d\x08\xaf\x4b\x3e\x6e\x32\xa9\x0c\xcb\xb8\x28\x33\x13\xd3\x2a\x81\xad\x10\xb4\x1a\x81\xa5\xa9\x12\xc6\x56\x2d\xdc\xf8\xd2\x5c\x7b\xd5\x9a\x65\x9b\xb4\xbc\x97\x30\xe3\x16\x04\x01\xdf\xc0\x74\xe9\xa7\xf1\x92\x9b\xa7\xee\x3a\xdd\x83\x3e\xa7\x7a\x4d\xf9\x5a\x52\x0c\x6c\x11\x85\x28\xcc\x88\x7e\xab\xef\xdb\xdd\x50\x92\x32\xac\xce\x85\x32\xf0\x1f\xfa\x64\xc4\xda\xe5\x7c\x8f\xef\x6b\x71\xc1\x1e\x0b\xdf\xa7\x3a\x5e\x8e\xf9\x98\xa2\x9f\xbc\x81\xb1\x8f\x12\xc9\x27\x18\xee\x22\xa5\xe9\x65\xa9\x47\x65\x37\x86\x14\xf7\xb4\x26\x79\xd1\x8d\x61\x7a\x41\x97\xd4\x55\x4f\x5c\x21\x78\xaa\xf3\x9c\x22\x5a\xe6\x51\x52\xda\xa4\xc7\x39\xdb\x84\x48\x97\xc0\xa0\x9c\x2d\x5f\x66\x51\x7d\x00\x4d\x81\x47\xa5\x18\x26\x56\x23\x43\x78\x04\xf2\x89\x51\x99\xac\x21\x82\xc6\xfd\x9f\xf5\x1c\x2d\xde\x05\xf1\x89\x63\xb5\x40\x77\xee\x70\x7b\xb0\x36\x4a\xf1\x06\xb8\xd8\x2b\x42\xff\x9e\xf8\xb3\xa5\x5a\xb8\xb6\xcc\xd2\x91\x35\x90\x1c\xc7\x10\xba\x87\x01\xee\x48\x6d\xaa\xc7\x44\x8b\x22\xa3\x9c\xc7\x1a\x31\xc7\xb4\x36\xed\x93\x0a\x06\xee\xe3\x9d\x67\x14\xe0\xe9\xeb\x65\x44\x4b\x5b\xb5\x1e\x70\xab\x40\x77\x59\xbe\xe3\x1e\x81\x59\xb1\xe1\xd4\xa4\x6d\xf1\x84\x23\xb1\xb2\x2a\xae\xc3\x8b\xdb\x9f\x4b\x3e\xd7\x6a\xed\xdf\xef\x84\xda\xa8\x11\x23\x4a\x6d\xde\x8d\x2d\x34\x79\x94\xa4\x6c\x20\xa2\x95\xd4\xf9\x38\xd0\x6e\xba\x71\x2f\x1d\xaa\x52\xe1\x96\x6a\x77\x6c\x29\x08\x58\x61\x9d\x95\xb1\x4a\xa7\xef\xe8\xea\xeb\x9d\x5a\x6b\xf1\x2b\x5f\x6c\x8f\xb2\x28\x85\x44\x1c\x80\x3e\xef\x29\xfd\xe5\xf7\xc6\x9e\x4d\xea\x40\xcb\x33\xbe\xd6\x79\x0a\xfb\x8b\x68\x8f\x7a\x44\xec\xb7\x68\x78\x01\x3b\xc5\x46\xb1\x02\xc3\x52\x12\x2a\xa6\x28\x33\x3b\x39\x90\x3d\xe6\x61\x4b\xb9\xd7\x75\xcb\x5e\x9f\x58\x25\xae\x64\x06\x21\x49\x71\x1b\xf2\x9b\xeb\x2b\x69\xbf\x4f\x0b\x46\xf5\xa2\xe5\xc1\xfb\x68\xe2\x92\x0b\x5e\x46\x36\x23\x73\xd3\x2e\x6b\xb1\x6b\x9d\x53\xd1\x6d\x69\xa0\x90\xc5\xd6\xac\x4c\x6e\x91\x17\x03\x9f\x91\x5f\x1c\x7b\xf9\xdb\x74\xd5\x12\x0b\x06\xab\xef\x75\x85\xc0\xbc\xae\x36\x98\x5f\x3b\xf4\x6b\x53\x1e\x48\xf7\x7d\xbc\x2d\x11\x60\xc5\x38\x47\x68\x7e\xd2\x75\x59\xd3\x2c\x1c\x58\xf2\x94\x97\x1c\x81\x25\xc1\xf0\x61\xd1\x07\x93\x8c\x72\x29\x36\x45\x61\xb3\x35\xb2\xc9\x46\xd9\xfc\x1d\x94\x9c\xf4\xc0\x03\xb2\xe3\xba\x42\x2a\x6c\x36\xe8\x14\xcf\xb5\x43\x53\x16\x54\x1b\xa0\xb7\x26\xd1\xa7\xa6\x0a\x3f\xe3\xb0\x5f\x61\x66\x7b\x51\x97\x31\xe7\x5c\x10\x0b\x3c\x19\x89\x1d\x45\xf0\x36\x06\x26\x1b\x9a\xd0\x96\x58\x3d\x94\x56\xed\xbb\xfc\x14\xf8\xac\x41\xbf\xa2\x5d\x8e\xf2\xa8\x67\xa7\x3c\xe1\x7c\xb7\xaa\x21\x61\x5b\x43\x68\x7d\x53\xad\xc7\xc3\x2a\x5b\xee\x56\x2b\xf2\x23\x1e\x4c\xbf\x85\x25\x12\x8b\xdc\x77\xb5\x40\x12\x77\xbc\x91\xed\xde\x9d\x00\xa4\x41\x51\x01\x0f\xf0\x66\xa0\x28\x59\xdf\x1d\xfb\x45\xfc\xb1\x75\x05\xd3\xdf\x52\x22\xa6\x71\x14\xeb\x0e\xfd\xb6\x72\x85\xe1\xc2\x13\xc2\xd8\x6b\xb5\xc4\x63\x7e\xbe\xdd\x4b\x57\x93\x55\x93\x41\x3c\x99\xf9\x6b\x63\x4f\xfb\x03\x67\x13\xe1\x7e\x9d\x24\x53\x85\xce\x43\x9b\x31\x01\x4b\x54\x6e\x3e\xa0\xcf\xf3\x71\x13\xa7\x8c\xd4\xea\xf5\x27\xce\x28\x28\xeb\x99\x06\x6a\xe1\xa1\x76\x91\x99\x9e\x43\x04\x48\x05\xb3\xfa\x19\x09\xf2\xfc\xa4\x3b\x5f\x4b\xc3\x17\xc9\x9c\xe6\x15\x55\xee\x46\xcb\x88\x59\xe3\x7c\x32\x21\x1d\x18\x5b\xca\x9f\x81\x2c\xc6\xa6\xf1\x36\xb2\x31\x3e\xa1\x7b\x14\xc5\xea\x96\x52\x25\x7c\x4a\x69\x11\x27\xb6\x58\x9b\xf6\x52\x0f\x6c\x29\x84\xc0\xe7\xb7\x14\x87\x98\x77\x5f\xd1\xd4\x69\xa8\x0f\xf6\x33\x26\x88\x02\x06\x70\x5b\xc9\x84\xde\xae\xdd\x2f\x69\xf0\xe7\x69\xbc\xe2\xe2\x1e\xc4\xaf\x80\xca\xf0\xb1\x0e\x51\xa3\x08\xf8\xa9\xed\x77\xb1\x7d\x3a\xb4\x5b\x35\x78\xc4\xc2\x7e\x42\x81\x21\x8c\x38\x53\x45\x2d\xfc\x84\x76\xe6\x3f\xe1\xb9\xdc\x69\x9a\xd8\x8c\xe8\x48\x88\x64\xef\xd2\x75\x23\xb4\x46\xb0\x82\x71\xfa\x24\x1c\x27\x91\x20\xdf\xc2\xda\x82\xbf\xfa\x85\x8e\xb7\x46\x7a\xb4\x33\xd1\xd5\x62\xb6\x48\x3e\x8d\x6e\x02\x3a\x30\xdf\x56\xd0\xec\xb7\x03\xff\xc4\xde\x46\xc5\x81\xff\x68\xfc\xa9\x9d\xe4\xd0\x2f\xb4\xe7\xe7\x17\x01\x5d\x03\xe0\x84\x25\xc4\xe5\x03\x2d\xa7\x21\x79\x9b\x72\x05\xf9\x35\x0f\x5d\xb3\xc3\x6e\xda\x5b\x9b\xa1\x07\x21\xca\x00\x78\x46\xa8\xc5\xef\xee\x50\xba\x86\x46\xc9\xeb\x81\xa7\x25\xdd\xa3\x8d\x88\xff\xbb\x4b\x1b\x0b\x13\xc3\xcd\xf3\x61\xc6\x4d\xfe\x97\xbb\xa4\x25\xd4\xaa\xfb\xd6\x4a\x3f\xc2\xe3\xb6\xf3\x22\xcd\x4c\xdf\x4e\x29\x42\xe5\x03\x5d\xa8\xb8\x80\x70\x55\x52\xbc\x86\xa5\x32\x4b\xfb\xae\xdc\x89\x35\xf1\x7d\xdd\x44\x7b\xbf\xc6\x1c\x7f\xa1\x9d\xbc\xf8\x0a\x8d\x5d\xa4\x1d\x0c\x8a\xe5\x93\x06\x77\xb4\x43\xed\x51\x6c\x92\x44\xe6\xaa\xf8\xbf\xd1\x14\xe1\x13\xc5\x01\x75\x52\x90\x33\xbe\x37\x70\x96\xb4\xd3\x26\xae\x0e\xfb\xe6\x09\x84\x62\xa8\x32\xc2\x35\x9c\xff\xc1\x85\xbc\x26\x1b\x82\x40\xe7\xa2\x04\xa7\x2e\x72\x0f\x25\x2c\x6d\xf4\xc5\x15\x2c\x4c\x1b\xe9\x73\x2b\x42\x58\x1d\x8a\xf5\xab\xed\xa2\x0c\x97\x27\x59\xd8\x67\x34\x0b\xfb\x8c\xd2\x71\x1c\x65\x66\x05\xe9\x23\x50\x53\xc7\x95\xd3\xf2\xf1\x1a\x53\x4b\xca\x8d\x3d\x13\x0d\x0c\x55\x72\xdd\x70\xf9\xe9\x58\xe9\x28\x6b\xef\xe2\x22\x03\x5a\x8b\x21\xf9\xbc\x2d\x21\xf1\xbe\x45\xf7\x2e\x60\x7d\xd5\xa0\xbc\x55\xeb\x17\x2d\x2c\xb4\x43\x93\x59\x60\x73\xb0\x26\x73\x0b\x43\x86\x92\x87\x81\xdd\xaf\xed\x23\x47\x66\xbf\xd6\xce\xa3\xe1\x88\x03\x29\xb1\xc8\xf4\x4f\xfe\xbd\x09\x66\x7a\xcf\xac\x3d\x4f\x73\x09\x8b\x47\x0b\x8b\x07\x8a\xf4\xdf\xd7\x70\x61\xd6\xbd\x43\x85\xec\x0a\x71\x58\xd9\xca\x59\x75\xd2\xde\xa1\xe8\x0b\xed\x80\xc7\x3a\xfe\xf9\x3e\x0b\x71\x40\x4c\xfa\xed\x40\xf1\x7e\xbf\xa3\x72\xe2\xdd\xeb\x2a\xbf\xe3\x15\x13\xf3\xea\x8a\x12\xf6\xb9\x31\x56\xf0\x83\x47\x41\xd2\x45\xaa\x7e\x0a\x48\x2b\x7c\xf1\x2d\x0a\xf1\x90\xbf\x4d\x77\xaa\x3c\x1f\x83\xf0\x26\xbf\x16\x3c\xcb\x7d\x1d\xbf\xf7\x5b\x53\x1e\x9d\xaa\xde\x1f\x42\x3c\x76\xc0\x64\x6c\x92\xae\x7c\xd4\x3d\xcd\x08\x7d\x8e\xd0\x5d\x51\x71\x4f\x2b\x2a\xee\xe9\xda\xe0\x3d\xb0\xd0\x5e\x49\x7b\xcb\xec\xa2\x84\x9f\xf9\xfb\x0a\x37\xf6\xf7\xdd\x34\x8a\xd3\xdc\xce\xf8\xa6\xea\x73\x1d\xc5\x96\x7f\x94\xd6\x74\xa4\xbe\x8f\x53\x33\x49\xd8\xb9\xf4\xc4\xb1\x8b\x3c\xb9\x2e\x5f\x35\x48\x63\x84\x9e\x08\x43\x7e\x1e\x78\x88\xeb\xd5\xb1\x8a\xf3\x6e\x06\x4a\x48\x7b\xc3\x6b\xdc\xc5\xe5\x70\xa2\x32\xac\xdc\xe8\x37\xeb\x68\x87\xb9\xb6\xed\x4b\x29\xb9\xc9\xc6\xc9\x4f\x9d\xd1\x60\x6d\x6f\xf5\xe8\x45\x1c\xc5\x43\x77\x1f\x41\xa8\x86\x1e\x34\xcf\x1c\x27\xad\x72\x64\xd6\xbd\x1f\x2d\xb2\x08\xd0\x32\xe1\x0d\x6e\x7f\xba\xb3\x63\x7f\xa2\x26\xd0\xcb\x2f\xcf\x54\x3b\x0f\xca\x12\xf0\x5b\x64\x61\x80\x71\x4d\x05\x40\x2c\x1b\x5a\xce\xd3\xfe\xb4\x46\x59\xdb\xa4\xe0\x8c\x0d\xc9\x16\xbb\x22\xf2\x89\x8a\x71\x99\xa7\x41\x35\x87\xfd\x73\x8e\x4c\xa9\x44\x4a\x21\x55\x87\xea\xfd\xdd\xb1\xda\xfd\x7e\x5f\x3d\xaa\x3c\xea\x29\x07\x21\x16\x75\xe7\x93\xf5\x06\x99\x87\x70\x10\xd9\x25\x25\x71\x8e\x70\x9c\x8f\x1b\xcc\x07\x0f\xb6\x8b\x32\x4b\x96\x2d\x62\x24\x6c\x02\x57\x95\x31\xcb\x55\x45\x1f\xec\xd9\x08\x6d\x43\x29\x36\xd3\xc5\x48\xb5\x79\x27\x88\xa8\xca\x58\x6c\x62\xb3\x3e\xb1\xaf\x14\xdb\xef\x12\x85\x9f\x7c\xec\xd1\x59\x99\x49\x5a\xca\xc8\x12\x4b\x28\x1f\x2b\xaa\xf3\xaa\x89\x97\xa3\xa4\x3f\xd3\x72\xab\xd8\x7b\x78\x05\x52\x95\xaa\x26\x3f\xe2\xfe\x37\x68\x46\xf2\x1f\xa9\xca\xfe\x31\xd5\x7c\x20\x4d\x37\xc2\xb5\xa0\x7e\x7a\x99\x3e\xcf\xc7\x08\xa7\x70\xf2\x13\x00\x0d\xf8\x44\x61\x52\xc4\x47\x10\x91\x01\xae\x02\x8b\x36\xbf\xda\xc0\xa3\x2a\xce\x68\x2c\x8b\xe0\xab\x54\xbe\xa4\x19\x4c\xe7\xc6\x5a\x92\x7a\x14\xa7\x6b\x36\xcb\x67\x94\x80\xf5\x3d\xa5\xf6\x77\x4e\xb9\x21\x9d\x43\x24\xc2\x8a\xd4\xbc\x00\xa2\x6e\x7a\xae\x66\xbb\x5c\x25\x22\xc4\x81\x2d\xca\x84\x28\xf0\xb4\x67\x62\x25\x38\xae\xba\x1c\xde\x0d\xaa\x67\xa2\x6c\x6d\xca\xdf\xdf\x3e\x5a\x93\x64\x3b\xaf\x3e\x81\xdf\xda\xb5\x2e\x9f\x18\xc5\x26\x02\x4b\x84\xf3\x0f\xfa\x2b\x2c\x3d\x1c\xd9\x23\x64\xfd\x88\x4a\x10\xca\x9b\xc4\x33\x6d\x0d\x12\x35\x07\xf8\x74\x4c\x4d\x26\x74\xa2\x77\x70\x7a\x3c\xc1\x89\x4f\x97\x4c\x36\xe5\x0b\x23\x33\x1d\x0f\xa7\xbc\xaa\x42\x98\xdb\x2e\x74\x5c\x8a\x4d\x3e\x90\x46\xa5\x23\x17\x7a\x9b\xc3\xad\x26\xcc\x5b\xd7\x0e\xcc\x4a\xc4\xa0\x24\x80\x57\xc0\x2b\xe3\x63\xf7\xed\xb1\xe9\xda\x58\x60\x4f\x08\xae\x31\x38\x5c\x78\xe7\xcd\x76\xcf\x2b\xd5\xe2\x9e\xa9\x5e\xcb\xdc\x61\x7e\x7c\x1b\xca\x4b\x62\xc3\xa5\xfc\x65\x62\xf2\xbc\x1c\xba\xc4\x45\x32\xd7\x96\x33\xcd\xbf\x16\x7c\x5a\x4d\xe5\x61\x9a\xb8\x3a\x06\x8d\x6c\x41\x5b\xf9\x36\xe2\x56\x2d\xdc\x38\xb0\xd0\x8e\x86\xd5\xb8\xcd\x5b\x13\x4f\xa5\x5a\xcc\xe5\x71\x3d\xad\x66\x06\xf5\x7d\x9f\xf2\xf8\x4d\x96\xc6\x40\x1d\xf7\x87\x81\xd2\x4f\xbd\x40\x1b\x38\x0b\xfb\x69\x35\xed\x33\x63\x2f\x1c\x7f\x3b\x50\x3d\xa3\xbb\x10\x03\xe7\x36\x0a\xea\x5c\x4e\x50\xb7\x8a\x71\xb0\xac\x5f\x1f\xef\x1c\x37\x68\xcf\xb0\xc5\x0e\xd7\xcf\x03\x6d\xbd\x3a\x56\xc4\x99\x1f\x35\xc1\x5c\x86\x66\x34\x72\x0f\x1a\xc5\x87\x9f\xa9\x4a\xce\xcf\x82\x1d\x40\xe8\x5f\x7f\xa9\x0a\xce\x69\xc9\x72\x49\x86\x8a\x1c\x5b\x9f\xff\x4d\xa7\xca\x5a\x3d\x2b\x00\x80\xee\x61\x59\x93\x20\xb2\xe1\x55\xe4\x69\x5c\x4a\x09\x0d\x8d\xe6\x77\x95\x4a\xf6\xbb\x6a\x33\xca\x47\xb1\x4d\x7a\x51\x2f\x5e\x9b\xa1\xbb\x96\x4c\x88\xee\x1a\x75\x95\xd3\x78\x82\xae\xb5\xee\x0c\xd1\x78\x39\xc1\x18\xbd\x57\xdb\xf6\xe7\x0e\xb7\xc3\xb4\x07\xfd\x69\x71\x9a\xa3\x0b\x17\x0b\x3a\xdf\x45\x1d\x0d\xc4\x0c\x1f\x51\x12\xf4\xc4\xf8\x78\x82\xe2\x38\x2a\x95\xe6\x1b\xc2\x1d\x8e\x10\xf9\xa4\xf6\x38\x0e\x7f\xb9\x1d\xa6\x49\x1e\xb1\xff\x9f\x88\x0b\x79\x62\xc2\x25\xdd\x05\x36\x45\x99\xf5\xcc\x1a\xa1\xda\x51\x6d\x6f\x21\xcc\x12\xe5\x7e\x7a\x16\xe8\x2a\xdc\x53\x7d\xe0\x55\x93\xf4\x0c\xe6\xef\x84\x7c\x1e\x76\x85\xb7\x75\xd5\xfc\x23\x8d\xc7\xaa\x5e\x13\x6f\x10\x4e\x8e\xdd\x21\x13\x61\xbe\x2d\xde\x83\x3b\xf7\xf4\xc5\xd9\x45\x6a\xf9\xb5\x3c\xa9\x1b\x2a\x73\x42\x6e\x57\x7e\x19\x69\x12\xda\x2c\x79\x42\x99\x36\x3f\xde\xd1\xa2\xe1\x64\x56\x25\x6d\x5e\x3c\x5c\x11\x70\x53\x1a\x9b\x17\xb4\x89\x01\xf8\xee\x80\x4d\xde\xa5\x39\xca\xc7\x4a\x0f\x71\x22\x46\xdf\x54\x12\x85\x8f\x83\xb9\x8b\x5d\x77\x5b\x59\xaa\xbd\xdb\xc8\xb3\x59\x8e\xc2\x65\xf0\x6c\xb1\x5e\x73\xce\x89\xb0\x4d\xa0\x29\xf8\xe6\x8b\xca\x0e\xf7\x84\x0a\x97\xe2\x34\x9f\xc1\xdf\x21\x04\x78\x2f\x50\xb4\x91\xef\x2b\xf1\xcf\x4d\x95\x84\x7e\xa0\xe3\xcc\x2b\x70\x51\x93\xd8\xf1\xd3\x5e\x22\xe1\x53\x88\x4d\xe9\xcf\x4e\x3d\xdb\xa1\xd5\x07\x85\xf5\xdb\xf4\x60\x44\xa9\x4a\x95\xbf\xdf\x0e\x54\x43\xf0\x89\xf5\x2a\xb4\xc0\xb6\x77\x96\x16\x00\x6c\x45\xd7\xb1\xaa\x09\x9f\x48\x45\x4a\xff\x5a\xc5\xcf\x8f\x74\x54\xa0\x79\x99\xd4\x83\x84\x7f\x45\x8f\x0c\xf5\xd0\xa9\x75\xc5\x21\xbc\xe5\xf1\x9c\x33\xcf\x10\x8f\x1e\x99\xd3\x75\x8e\x09\xf0\x23\x77\x21\xbe\x89\x81\xf0\x48\x47\xc7\xbd\xbe\xef\xf3\x24\x32\x2f\x64\x1b\x77\xbc\xdc\x5f\x98\x66\xc9\x52\xa9\xb5\xf1\x8f\x2b\xb6\xde\x71\x65\x20\xda\x4d\x33\x14\xcc\x99\x29\x1a\xf8\x92\xb8\x96\x66\x26\x81\x7a\xb7\xb6\x32\x6f\x4f\x31\x60\xeb\x00\x72\x32\x85\x37\x5e\x1a\x49\x08\x18\x4c\x07\xe7\x93\xda\x82\x31\x77\x18\x05\x10\x8b\x08\xc1\x69\x8f\x7a\x34\xe9\x0c\xcd\x4b\x6e\x38\x29\x49\x93\xa1\x1d\xa6\xda\x4b\xec\x9c\xf6\x12\x3b\x17\x3c\xaf\xdc\x06\x4c\x92\x1b\x2a\xb5\x51\x5f\x13\x95\xbc\x77\xc7\x9e\x5b\xf2\x89\x46\x3d\x6f\x8e\x15\x89\xfa\xde\xd8\xef\x9a\x1f\x63\x7c\x8a\xe3\x53\xbd\xf7\xbc\x04\xc3\x5a\xf7\xb5\x1f\x8c\x55\x6b\x08\x5a\xbd\xd8\x5f\xea\x96\xfa\x52\xf9\xe8\xf7\x00\x59\x45\xd5\xe0\xd6\x58\xe9\xb6\xde\xf2\x2c\x35\x32\x72\x08\x0b\x8d\xc8\xfa\x24\x98\xf4\x45\x6e\x29\x8b\xe9\xc7\x5d\xe0\x93\x89\x79\x27\x36\x75\x58\x3f\xca\xc6\x53\x4d\x05\x51\x1a\x68\xd8\x6d\xab\xb8\x26\x13\x05\x4c\x2c\x99\x67\x34\xca\xe1\x4c\x8d\xbb\x48\x09\x7a\xd4\xb3\x69\x9c\xf6\xa5\xa7\x71\x68\xc2\x38\x5a\xca\x82\xba\xbe\x57\xf6\xa2\x94\x65\x59\x9c\x5f\xf6\xe2\xac\xb7\xc3\x3b\x20\x37\xf6\x4f\x27\x72\xa2\x1c\x8a\x9b\x9a\xf3\xec\x8c\x9b\x7d\x6d\xea\x86\xca\x3a\x77\x75\x94\x85\xca\xae\x75\xed\x17\x9d\x24\x26\xca\x74\x81\xeb\xa7\xba\xc0\xf5\x53\x55\x23\x37\xdd\xbc\xcc\x7a\x98\x26\x40\x97\x7e\x73\xec\x91\xa6\xdf\x54\x3e\x68\x59\xda\x9d\xe8\x99\x69\x58\xc9\x45\x25\x54\xb5\x66\xf3\xc2\x56\xdb\xe2\xe3\x1e\x64\x03\x45\x71\xdc\xdb\xae\x8e\xc2\xb7\x31\x20\x46\x68\x39\x54\x8a\x11\xf5\x41\x7a\xd1\x58\x43\xf6\x50\xdf\x1e\xd1\xbd\x64\xed\x8e\xc8\xec\x95\x4f\xd0\x14\x40\x90\x77\x0c\x6b\xa6\x30\xfd\x94\x08\x62\x5d\xfb\x08\xf9\xeb\xb0\x1b\xbb\x15\x83\x15\xf8\xd5\xf8\xaa\x63\x1b\xc8\x00\xbb\x6b\x0a\xa1\xa9\xa8\x52\xe2\xd7\x1e\xda\x4b\x59\x9c\x25\xcd\xd0\x32\x97\x00\x9e\x11\x26\x8a\x89\x7b\x57\xbb\x22\x9c\x75\xb6\xf4\x65\xd2\xb3\x59\xb5\x52\x4a\x1a\x2c\x59\x28\xfd\xb5\xa8\xb3\x69\x4a\x7c\x9a\xf5\x4d\x12\xbd\x4a\xc1\xf9\x23\xaa\x7c\x06\xf3\x17\x44\x10\x17\x69\x40\x62\x8a\x6f\xd3\x4a\x8d\x27\x76\x95\x06\x9a\xd0\xcd\x7d\x13\xf4\x04\xe2\x27\xa4\x88\x7f\x8d\x2b\xc5\x68\xbe\x0d\x97\x09\xa9\xf3\xee\xf4\xeb\x93\x15\xa2\x0a\xaf\x6c\xb6\x42\xa0\x33\x6d\x87\x8b\xef\xf5\xd1\xbf\xa3\x89\x67\x65\x3e\xe0\x5b\xde\xa6\xf6\xc5\xf6\xdd\x5a\xc3\xe5\xc8\xec\x5c\x3b\xb3\xba\xc1\x24\xea\x9a\x2d\x65\x7d\xbf\xb3\xb4\x40\xa4\xdc\x72\x54\x25\x22\xf2\x31\x44\xfe\x3f\xc5\x33\xe5\x93\x46\x22\x7a\xd7\x86\xe9\xd0\xc2\xba\xc1\xb9\x19\x1f\x99\xe5\x72\xc7\x6d\x64\x05\x0c\xbd\x43\x6e\x8a\x6a\x0d\x30\x95\x18\xbb\x17\x9a\x96\xa9\xb2\x88\xe2\xe8\x55\xc4\xb7\xd8\x27\x01\x7a\xe1\xe3\x46\x71\xdf\xa1\xc9\xb2\x88\xb9\x73\x08\x1f\x76\x23\x64\xe2\x93\x75\x85\x45\x28\xb2\x68\xc4\xad\x5f\xb4\x38\xcf\xea\x7e\xe7\x59\xc7\x4f\x29\x93\x38\xf5\x2d\xbf\x6d\x58\xc5\x21\x86\x02\x04\x4c\x84\x42\x3c\xbc\x1a\xf0\xf6\x28\x4d\x18\x3c\x02\x80\x03\x1b\x23\xf2\x49\x47\x41\xc8\x4d\xbc\x42\x06\xb3\xd5\x84\x03\xc6\x12\x44\x28\x3e\x0e\xfc\x76\x6e\x46\xa3\x2c\x5d\xb1\xbd\x3d\x35\x42\x32\xd2\xbe\x53\xca\x1e\xe3\x71\x18\xa4\xc8\x3e\xaf\xa6\xe6\xb5\x49\x0d\x05\x5d\x18\x28\xac\x51\x86\xca\x8c\x89\xa8\x93\x60\x8a\xb4\xec\x0f\xf6\x50\x5a\xe8\x8c\xd3\x17\xc5\xa3\xf4\x7b\xf4\x6a\x45\x3b\xde\x97\x19\x4f\x04\xca\x92\xf5\x18\xcd\x2b\x04\xdd\x57\xc6\x8f\x79\xa1\x6f\x43\x59\x04\x72\x85\x8b\x13\x46\xed\x63\xff\x13\x7f\x3c\x71\xd1\xaf\xda\x64\xc6\xc3\xa9\x7f\xaa\x4d\xf3\x36\x29\xde\x46\x2c\x01\xe1\x03\x64\x3c\xf7\xc6\x0a\xb0\x5f\x2f\xbe\xfe\x6a\xdb\xe4\x51\xcf\x12\xbc\x49\x4c\x58\x15\x04\x16\x97\x82\xbc\x70\x77\xc7\xe3\xcc\x3f\xaa\xad\xa8\xf3\xf3\xec\x1a\x97\x66\xa2\x7a\x8f\x7b\x66\xd5\x7b\x67\x78\xa1\x5e\x48\x6d\x68\xb3\x4a\x59\x2f\x92\x15\x96\xab\x5f\x74\x3f\x52\x09\xf3\x59\x55\xbc\x46\xa3\x55\x53\x8c\x7c\xbb\xf5\x0e\xbd\x1c\x8e\x9a\x9b\xb2\xcf\x74\xc5\x66\xd3\x55\x64\x8d\xd1\x75\x5e\xd1\x1f\xa1\x89\x86\x09\x08\x63\x09\xa1\x03\x35\xc1\xd4\x45\x14\x6b\x4a\xc5\xec\xbc\x1e\xa8\x2d\x6b\x6e\xfb\xb2\x13\x23\x11\x40\x46\x8c\x4c\x52\x30\xaf\x1e\x5b\x8c\x38\x47\xe4\x94\x9f\xd5\x93\xd9\x28\xfb\x68\x07\x5a\xf6\x76\x0b\x9b\xb5\x45\x8f\x24\x0e\xab\xf7\xa2\xd0\xce\x22\x8d\x49\xcf\x8e\x4f\x9a\x18\x77\x50\xdf\x90\x9f\x73\xdc\x45\xcf\x63\x54\x58\xe1\x15\x13\xc7\x76\x6d\x4a\x7b\x15\x8e\xd5\x63\x0c\x54\x05\xfa\x83\x06\x39\x93\x43\x6d\xd3\x5b\x31\x49\x28\x3f\x86\x82\x07\x37\x28\xf8\x44\xa1\x8b\xd2\xb2\x88\xd3\x74\x99\xef\x67\x42\x5b\x9c\x4f\x6a\x19\x71\xb5\x67\xe4\x64\x94\xb0\xe0\x77\x61\xfa\x2d\x84\x6a\xbb\x69\xc5\xc3\xa5\xdf\x70\xc5\x37\x80\xdd\x39\x43\x70\x0b\x4e\xf5\xdc\xf8\x64\xfd\x39\xed\x85\x6c\x32\xd3\x2f\x0d\xe3\x54\x51\xd0\x44\xce\xc9\xc7\x0d\x2a\xc1\x8b\xed\xa5\xd8\x5a\x10\x9b\x31\xeb\xdf\x0a\x7c\x55\xe4\xad\x26\x0c\x49\x96\x0e\x4d\x52\xb0\x4f\x12\xbb\xa8\x06\x2a\x4e\x7e\x67\xec\x45\x78\x73\x43\xac\xe9\x45\x01\xc2\xa0\x7a\xc2\xc7\xc1\x23\x92\xb4\xfe\xf2\x73\x34\x62\x51\x91\x38\x41\xab\x09\xe6\x3d\x33\xda\x04\x60\x44\x4d\x7d\x24\xd3\x7f\xa0\xf2\xab\x6b\x6a\xea\xfd\xae\x92\xcd\xba\xaa\x58\x73\xbb\x3b\xad\xaf\x7c\x91\x13\xa3\x9b\x5a\xd0\xf1\xd6\x58\xe5\x5f\x97\xf0\xca\xc5\xf5\x9a\xd6\x38\x14\x39\xee\x51\xc4\x8f\xc2\xdd\x9f\x69\x64\xc7\x37\x28\x8f\x66\x3c\x22\xb1\x3b\xb0\x58\x7c\xc0\x39\x86\xab\xc4\x57\x2f\x05\x99\xf0\xd5\x86\xbe\xc3\x42\xdb\x9a\xbe\xcd\x9c\x3e\x08\xd2\xf7\x4b\x4a\xed\xd0\x93\x90\xd2\xcf\x85\x71\x1a\x2e\x4f\x7b\x45\x0f\xb0\x5e\x90\x99\xa2\x7c\x8a\xf9\xcb\x49\xd5\xc3\x8c\xe4\x17\x16\xda\x36\x59\x89\xf2\x2a\x0d\x9d\x52\x52\xb0\xd7\xf0\xd8\x05\xd3\xa7\xdc\x16\xce\x37\x4d\x71\xc2\xe5\xc1\xf1\xc0\xb7\x90\x79\x33\xe4\x93\x46\x69\xd5\xaf\xbf\x38\xa5\x34\xbd\xee\x05\x93\x9c\xe3\x96\xa2\xa3\x3b\x2b\xef\x41\xd4\x13\x34\x9d\xa8\x51\x55\xef\x58\x54\x46\x9e\x56\xbe\x71\xfd\xa8\x30\x31\x6d\x2e\x2c\x0a\x49\xe3\x0a\x8b\xc3\x69\x65\x8a\x84\x0a\x11\xff\x77\x15\x06\x44\x71\xcc\x56\x5a\x8e\x50\xbb\xa1\xd4\xf4\x36\x94\x8e\xdc\x30\xcd\xec\x67\x94\xd2\xc6\xcc\x7a\x6b\xff\x7e\x8e\xe8\xae\x21\x52\x45\x27\xfa\x62\xa0\xd4\xd2\x6e\x21\x9b\xc0\x9b\xba\x85\xfa\x2f\x72\x61\xac\x06\x0a\x0f\x2f\x68\xe1\x7b\x5a\x5f\x9d\xc5\x7b\x30\xa6\x9e\x55\x8e\x08\xd8\x2d\xd1\x58\xbd\x3a\xd6\xab\xee\xeb\x34\x8a\x15\xf2\x5d\x3a\x12\xf7\xc7\xbe\xd0\x7b\x83\x30\xe7\x88\xb8\x00\xdb\x41\xbb\x6c\x73\xac\x28\x92\xec\x06\xe8\x7c\xf2\x16\x85\xd3\xf3\x63\x02\xcc\x70\xe3\x9d\x9a\xf0\x58\xae\xef\x35\x11\x61\xfa\x59\x69\x63\x51\x2c\x74\x7e\x95\xd5\x53\xe1\x93\xda\x62\x4d\xed\xc2\x2c\xca\x8b\xa1\xc9\x27\x16\xe0\xd3\x63\xb5\x00\x9f\x56\x0e\x48\x61\x66\xcd\x70\x5a\x0b\xe6\x8c\x3d\x87\x13\xdc\x2c\x3c\x9c\xfb\x81\xe6\xd7\x37\x72\xc0\x21\x63\x37\xe5\x01\x9c\xfb\x3a\xba\xcc\xe3\xab\x48\xbb\xd6\x3f\xad\xc1\x4b\xe4\x69\x1c\xc5\x51\xb1\x36\xe3\x5b\x4a\x17\x11\x1e\x31\xf1\x8d\x46\x24\xaf\x61\x81\x4a\xb9\xee\x06\xca\x03\xe3\xac\x5f\x5b\xfb\x26\x4a\xf2\x62\xa6\xf5\x25\x1f\x4d\x57\x97\x85\x15\xee\x7d\x0a\x1c\xa0\x4d\xb2\x07\x12\xa6\x8e\xf5\xee\xd5\x14\x2f\x78\x1c\xb7\x89\x7a\xfb\xe8\x47\x69\xdd\x3d\xf1\xff\x43\x65\x19\x63\xe0\xaa\x22\x79\xb1\x95\xd3\x44\xbc\x2b\xf4\x15\xff\x0e\x1f\x5d\x77\x54\xc5\x9f\x7e\x1a\xc0\x0a\x0c\x88\xbf\xd5\xd9\xa9\xbb\x44\x95\xb0\x34\xc9\xcb\x18\xba\x0d\x5e\x8b\xff\x5b\x58\x32\x45\xdb\x54\x95\x8c\xcb\xcc\x48\x43\x9b\x5d\xca\x02\x0f\xd8\xba\x54\x93\x76\xa2\xc8\xce\xd8\x2c\xcd\x47\x26\x84\x30\x06\xfb\xf9\xe0\x61\x88\xb9\x8f\xd2\x98\x8e\xcd\xda\x2a\x99\x74\x6a\xff\xd5\x77\x00\xde\xe0\x93\xe0\xb9\x9a\x19\x2c\xaf\x7f\xa8\x7d\xb2\xd8\x00\x9f\x34\x81\x29\x3f\xdb\x5e\x1d\xa4\xdc\x0a\xc1\x7e\x8b\xc6\x37\x1f\xaf\xd7\x37\x89\xaf\xb5\xcd\x70\x14\x47\x4b\x91\x04\x2a\x08\xf8\x7e\x14\xf8\xbe\xe0\x8f\x6a\x28\xae\xb9\xc3\xed\xa5\xc8\xc6\xa2\x86\xe5\x58\xeb\x1e\x31\xd6\x58\x9e\xcc\xa3\x7e\x62\x38\xda\xfb\x9a\xab\x8e\x29\x58\xd6\x96\x76\x19\x4b\x7a\xf6\xe8\x93\x7e\x2a\xdd\x1d\x2b\x34\xcd\xa5\x09\x44\x7c\xa0\xd8\x16\x67\x03\x2d\xd0\x4e\x4f\x57\xba\x05\x4a\x73\xfb\x8c\x32\x59\xff\xd7\x9a\x5b\x3d\xd5\x51\x95\x24\x00\x70\xd0\x27\x7b\x6c\xdd\x7b\x3b\x09\x0d\x9f\xd5\xe9\xb1\x66\x0a\x66\x60\x27\x2b\xc1\x09\x88\x59\x13\x17\x03\xc8\xf5\x09\x84\xb7\xfa\x4a\xd7\x6c\xa8\x2e\x42\x92\x2f\xdf\x33\x19\x95\x59\xdf\x02\x5c\xeb\xba\x55\x9e\x30\x7d\x5d\xf9\x0f\xb4\x6a\xb4\xf0\x2a\x04\x48\xd2\x17\xb1\x50\x69\xf6\x1d\xe7\x52\x13\x46\x52\xae\xdd\x5d\x8f\xd0\x8e\xcc\x1e\xf4\xf0\x77\xc7\x10\xb8\x80\xa9\x2a\xf8\xf7\x06\x26\xc2\xc0\x14\xc0\xbf\x62\x6d\xf8\x6d\x58\x13\x40\x35\x86\x57\x2a\x74\x61\xbe\xab\x64\xe0\xaf\x3e\x44\x37\x6f\x64\x43\xf4\xbe\x25\xf2\xa8\xde\x33\x07\x4f\x18\x0d\xb2\x1f\xfa\x8e\xf1\xaa\x8d\xe2\x29\xed\x7b\xb6\xb7\xa3\x70\x8b\xcc\x16\x02\xe8\x6e\xb7\x6b\xd3\xaf\x44\x3d\x9b\xee\xf1\x24\x8e\xb3\xd4\x64\x90\x8a\x87\x12\xbb\x78\x5d\xe9\x2f\xfc\x60\xec\x81\x57\x7f\x85\xef\xc5\xaa\x7d\xce\x11\xdb\x48\x88\x94\xf7\x17\x4c\xe1\x0b\x7a\x3e\x5f\x68\xc2\x4a\x0d\x4d\x11\x0e\x5a\x13\x77\xa7\x96\xbe\x8b\xda\x0d\xc5\x2e\xc5\x6e\x09\x43\x39\x72\x53\xd1\xc2\x37\x9b\x9c\x36\xba\x65\xbe\x06\xb1\x4e\xb1\xad\xf7\x1b\x06\x40\x02\xee\xbf\x2b\xed\xfd\x86\x2c\x97\x72\xc6\x6e\xc4\xb5\x69\x66\x21\x21\x65\x14\x4a\x52\x83\xd1\x5b\xcf\x0e\x0d\x29\xf3\x56\x43\x44\x3a\x25\xf4\x7e\xa4\x85\xf2\x30\x7c\x62\x1c\x2d\xdb\xd5\x28\xb7\xd3\xbe\xcd\x7b\x57\x83\x42\x19\x5f\x24\x53\xcb\xd1\x8c\xfe\xab\xa7\x3b\x0f\x2b\xeb\x8d\x6c\x16\xa5\x3d\x11\xa8\xff\x8d\x43\xae\x7c\xe0\x49\xe5\xa7\x1b\xa0\xa6\xed\x9e\x5d\xb1\x71\x3a\xe2\x58\x17\xe1\xf2\x14\x46\x19\x9b\x0e\x51\x7c\x84\xad\xae\xc9\xa4\xf1\x50\x3b\x1f\x65\xd6\xf4\x00\x1d\x46\x67\xea\x82\xee\x7e\x7d\xa4\x88\x99\x5c\x2c\x45\x7c\x46\x92\x6f\x2e\x5c\x4c\xec\xda\xb3\x55\xc0\x85\x54\x61\x46\xd3\x31\x61\x36\x86\xe9\xc5\x19\x88\x93\x83\xaf\x66\xa4\x32\x2e\x70\x6e\x72\x78\x7b\x48\x54\xa6\x28\xf8\x43\xec\x79\x85\x56\x4e\x1c\xdf\xc2\x60\xc4\x6a\x76\x1f\xfe\x73\x58\xa4\xbe\x83\x8d\x16\xef\xf1\xa2\x96\x7f\xbb\x8d\xdd\x1e\xe1\xea\x3f\xd2\x86\xff\xe3\x6a\x9a\x21\xbe\x40\xb1\x0e\xbd\x90\x6b\xca\xd9\xa6\xd5\x79\xd8\x88\xb0\x5f\x2f\xa3\xd1\x88\xe9\xc3\x7c\x0d\x5a\xe4\xf1\x1c\x6e\x8e\x35\x99\xdd\x9c\xcc\xd3\x9e\xe1\x4d\x0c\x0f\xfb\x72\xe0\x4b\x83\x97\x9b\xc4\x42\x97\x32\x6b\x33\x2a\x6e\xe2\x55\xed\x06\x76\x94\x4f\x6a\x4b\xf0\x0b\xed\x7c\xd5\x9a\x42\xa1\x6f\x6e\x62\x1f\x9a\xf0\x79\xe6\x26\x6d\x93\x7e\x06\xaa\x50\x8e\xb9\x80\xb7\x73\x55\x79\x52\x7c\xac\x5a\x13\x77\x9b\x8a\x1e\xe1\x20\xcd\x8a\x6a\xd7\xdd\xb1\x87\xcc\xe9\xee\x8f\x13\xc0\xce\xab\x75\x76\xcf\xce\x08\xd4\xa9\x9f\x7d\xfe\x37\x85\x5b\x4f\x9b\x97\xf0\xec\x95\x69\x04\xe3\x35\xf0\x52\xaf\xa8\x15\xea\x15\x9b\x24\xd1\x92\xcd\xb4\x45\x23\x8f\x20\xe9\xb6\x3d\xa3\x70\xcb\x55\x80\x6b\x7b\xd3\xf4\x74\x05\x43\xd1\x72\x92\xb5\x2c\xd8\x23\x48\x8b\xea\x5a\xa4\xe3\xf3\x30\xc1\x78\x28\xf8\x0d\xa2\xd1\x94\xd2\x82\xff\xcb\x09\x62\xd6\xd4\xa1\xaf\x7e\xc9\xd1\xaf\x9f\x55\x00\x9e\x51\x66\x73\x9b\x14\x2d\x05\x14\x39\xaf\x74\x5b\xcf\x37\xb9\x59\x81\x60\x50\xdd\x82\x16\x62\xf1\x11\x71\x17\x80\x07\xf6\x20\x40\x4d\xed\x58\x93\x26\xde\x67\xdb\xbf\xf4\xc5\xaf\x1e\xfc\xe2\xe7\x17\x50\x3d\xc6\x3c\x3a\xa5\x6d\xab\x28\x3f\xc2\x75\xdf\x0c\x3c\x8d\xee\x9e\xb6\x8e\xba\x35\x29\xf9\xd0\x54\x2e\x20\x6a\xdd\x6a\x9a\x2d\xb7\xfc\xad\xbd\xad\x49\x47\x6f\xd7\xc6\x17\xed\x51\x59\xdf\x64\x56\x54\xcb\xb0\x25\xbf\xaf\x0d\x90\xde\x0f\x3e\xa5\x9e\x65\x3f\x9a\x20\x8e\x89\x5f\x5c\x4b\x09\xdf\x3c\xa1\x90\x26\x6b\xf9\x23\xd5\x8a\xc3\x28\x37\x25\x8c\xb2\x67\x5d\xe3\xb5\xe8\xf3\x88\x33\xfe\x3b\xda\x8b\x1d\x2c\xce\x57\xe7\xaf\x54\xeb\xe0\xf6\xeb\x98\x73\xe8\xb2\x6d\x07\x1a\xc0\xa5\x10\x14\x51\x68\xa6\x3c\xa0\x88\x77\x6a\x94\x9d\xf7\x74\x74\x19\x66\x5b\xa5\x11\x2b\x91\x5d\xb5\x59\x4e\x58\x63\xb6\x5d\xd5\xe0\xae\xb3\x18\xb4\xa2\xf5\x48\x97\xcf\x27\x8a\xc4\xdf\xb7\x26\xdb\xe3\x59\x86\x3f\xa6\x5a\x82\x40\xe3\x5a\x0e\xd0\x05\x61\x79\x0e\x03\xe9\xb1\x20\x2a\x39\x35\x56\xa8\xaf\x4b\xae\x67\x5d\x0d\xe0\x6c\xc5\x42\x60\x62\xc2\x20\x1f\xb5\xe0\xfb\x98\xc3\xd2\xae\xdc\x19\xf1\xbf\xd0\x4e\x97\x96\xac\x6b\xdd\x61\x2f\x79\x57\x37\xfa\xde\x55\xcf\x81\x4b\x9f\xf4\x5b\xc8\x32\xa7\x00\x9c\xc0\x12\x78\x5f\x5b\x80\x35\xf4\xf1\x4d\x37\x5d\xb1\x53\xd5\x6d\xa3\x30\xf0\x20\xf0\x65\xa9\xf3\x58\xba\x24\xc0\xf7\x8f\x2d\x8c\x4b\x4b\xca\x33\x32\xa0\x54\x9f\x7c\xcb\x75\x85\x46\x99\x0d\xa3\xdc\x72\xa5\xda\x2d\x71\x8b\xb3\x9c\xcc\x5e\x57\x88\xaf\x37\x26\x18\x32\xf1\xab\x26\xa4\x65\x7c\x42\xde\x8d\xe3\x8d\xc0\x3f\xd5\x93\x2e\x03\x1e\xd8\x78\xf4\x68\xf5\x33\xc8\x60\x1f\x23\x3c\xbe\xce\x6c\xb1\x55\xb7\x80\x55\xc1\xa0\x46\xd8\x25\x20\x28\x05\x92\x67\xc9\x62\xa4\x57\x9b\x4a\x25\x6d\x6f\x47\xe9\x3f\xf2\x36\x87\x24\xe9\xee\xf8\x51\x77\xfd\xaf\x12\xea\x0e\x1c\xfe\xd7\xb4\xd4\x2f\xca\x7c\x82\xe0\xf0\x35\x97\x53\x14\xb6\xc8\x7f\x6f\xe0\xe0\x99\x3c\x32\xc9\x94\x0f\x18\x19\xee\xe6\x54\x3f\xe7\xe7\x65\x34\xfd\x64\x42\x08\x2e\x8e\xb9\x7b\x27\xf1\xa4\x07\x74\x6d\x3a\xde\xd7\xc8\xf6\xfb\xd2\x60\x66\xfb\xb3\xb1\x9f\xe0\xff\x4c\x43\x7d\x6e\x07\xff\xa6\x4e\x6d\x91\x29\x1d\x1b\x94\xf4\x5a\x40\x10\xf1\xc9\xba\x4f\xb5\xc8\x0e\x3d\xdf\x53\xbd\x25\x3c\xda\xdd\x94\xf3\xf1\x31\x3d\x27\xf1\xaf\x26\xd0\x13\xfb\x3e\xc3\xd4\xc1\x99\x40\x3b\xb9\xca\xd3\x8a\x61\x99\x47\x85\x9d\x56\x1e\x0f\xa7\x54\xa4\x7d\x51\x91\xda\x4f\x05\x0a\xe2\x72\x51\xf3\x78\xd2\x28\x29\xf6\x79\x2b\x8d\x3b\x34\xfb\x91\x80\x3e\xd2\xf1\x80\x07\x46\x41\x39\x93\x97\x6a\x89\x71\x3e\x82\xd5\x0c\x14\x2b\x73\x5a\x24\x30\x30\xe1\xc7\x26\x16\x81\x7e\xdb\xeb\x99\xa4\x6f\xb3\xb4\xcc\xf7\xd0\xed\x8a\x44\x09\xdd\xae\x73\x60\xad\xbe\x13\xdd\xc9\x3f\x42\x55\x49\x3b\x63\x03\x3c\x01\xdb\x09\xe4\x46\x77\x14\x84\xdd\xae\xd9\x6e\x96\xae\xd2\x6a\xc9\x6a\xbc\x5a\x93\xef\xa2\x52\x6f\x3c\xa3\x45\x4e\x2f\x2a\x19\xaf\xcc\x90\x72\xcf\xde\x96\x93\x99\x43\xec\x88\x8d\xe7\xbe\x6a\x56\x9f\x0a\xb4\x16\xa7\x86\xba\xdd\xd3\x22\xc6\xb7\x14\x93\xf6\x94\x82\x8e\xda\xa1\xcd\xd6\x56\xa2\x38\x06\xa3\x1a\xbb\xc7\x7d\x85\xd6\xbd\x3f\x56\xf0\x20\x93\x17\xb6\x5a\xc4\x0f\x6e\x9f\xa2\xef\x63\x10\xba\x27\x01\x7e\xf4\x7c\x87\x82\x0d\x11\x16\x6c\x39\xdd\x5f\x6e\x37\x23\x6c\xdd\x50\x68\xcd\x70\x60\x87\x10\x6d\xa9\x9e\x91\x9b\xca\xd5\x0b\xc0\x78\xd9\xc0\xc6\x86\x7f\xf9\x53\x05\x52\x64\xf4\x08\xc2\xbd\x29\x92\x3f\x45\x4d\xf3\xfd\xb1\x42\xe0\xa0\x7e\x83\x88\xe2\xe7\x58\x3d\xf1\x48\xa0\x0c\x84\x69\x78\x4c\xdb\x86\x4c\x75\x64\xbe\x0e\xd3\x22\x5a\x9a\xa8\x06\x61\x5d\xe1\xe3\xf5\x67\x14\xbe\x28\x2b\xfb\xfd\xea\x29\x2e\xba\x6e\x31\x8d\x65\xe9\x1c\x37\x44\x18\x5d\x13\x57\xdb\x09\x67\x8a\xf0\xf2\xfa\x2e\x5e\x27\x9f\xb8\x56\xe4\x28\x4b\x0b\x1b\x52\xbc\x5c\xdd\xa6\x68\x39\xd3\x6d\x22\x9d\xbf\xaf\x64\x56\x2e\xd5\x2a\x5b\x2f\xb4\x97\x52\xe5\x8b\x8a\x01\xf2\xe7\x63\xa5\xfe\xfd\xe7\x6a\xab\xce\xca\x24\xa7\x12\x95\xb8\xb2\xd3\xdb\x70\x93\xcf\xc3\xd8\xce\xa0\xcf\x84\x2c\xe1\xc7\x63\xbf\xb5\x5d\x63\x25\x4b\xfe\x17\x8c\x44\x91\xc7\x50\x9c\xde\xbb\xda\x17\x9b\x43\x07\xd9\xc5\xbd\xea\x31\x58\x1b\x28\xb0\x1c\xa7\xc6\x11\xb0\x91\x1b\x5a\x81\x61\xa3\x89\xee\x3b\xca\x2c\x4b\x21\xb4\x9c\x52\x20\x06\x84\x90\x5c\xea\xac\xcc\xb0\x84\x43\x91\x2a\xb2\xcf\x79\xa5\xaf\x23\x52\x3d\xb8\xab\xca\x10\x44\x76\x13\xaa\xb3\xa6\xb3\x0c\x6d\x5c\xbc\x5a\xe5\x06\xbe\xe3\x71\x32\xf0\x22\xed\x27\x55\x67\xa4\xb0\x66\x88\xc2\xb2\x13\xe3\x75\x36\x8c\x17\x35\x4b\x51\xb8\x88\x22\x01\xe1\xa1\xb2\xad\x8e\xb2\x91\xbe\x84\x39\x84\xf7\xf1\x06\x1e\xad\xc8\xa8\x3e\xed\x00\x9e\x99\xb5\xe1\x40\x4a\x97\x22\x02\xa2\xd0\x43\x97\x54\x33\x77\x54\x92\xb8\x16\xa6\x03\x97\x50\x14\x1c\xe9\x82\x8a\x94\xf2\x61\xba\x4c\xdc\x28\x87\x9e\x7a\x9d\x92\x75\xe5\x23\xb2\xe0\x30\xe7\x0a\x36\xaa\x50\x2b\x61\x9a\x24\x20\x9b\xe7\x53\x74\xf1\x28\x07\xde\x54\x72\xc3\x1f\xe3\x16\xa5\xea\xe4\xc1\x49\x99\x4d\xcc\x90\x81\x37\xd8\x5b\x07\xba\x9a\x3f\x50\xec\xe4\x61\xda\x8d\xe0\xff\xb3\xe0\xc2\x59\x0f\xde\x40\x03\x44\x94\x04\x95\x09\xde\xee\x4e\x43\xbb\x65\x68\xa2\x64\x29\x33\x43\xab\xdc\xfd\x4e\x2a\x77\xbf\xba\x09\xfa\xfe\xfd\xed\x32\x86\xd1\x0a\x73\x73\x1c\xa3\xd9\xc3\x18\x75\x39\xcc\xa9\x12\x38\x8a\xff\x15\xa5\xfd\x09\xe3\x6f\xec\x5b\x27\x95\x60\x46\xd7\x64\xd8\xa6\xb1\x73\xdd\xd2\xe0\x11\x94\xd3\xf8\x1f\xb4\xe9\xe9\xe6\xf8\x33\xfa\x65\xf4\x33\x53\x90\x91\x8b\x60\xf1\xd8\x33\xd5\xd3\xf3\x8e\x6a\x36\x40\xcf\xc6\x06\xec\x44\x64\xa4\x77\xb1\x06\xf0\x09\x5e\x9c\x33\xd3\x58\x94\x60\xf2\xaa\x4a\x55\x7a\x51\xb1\xd7\xb7\x9f\xfe\x86\x7e\x87\x8a\xe1\x7f\xfb\x39\xa0\xb3\x05\x6b\x4d\xaf\x45\x40\x88\xd5\x2f\x62\xcd\x9d\x01\xa0\x5b\x4c\xad\x95\x54\xd4\x31\x5f\x28\x59\xb5\x71\x3c\xad\x6a\x5c\x9b\x0a\x6b\x77\x09\xc5\x22\x0d\x7c\x97\xa9\x55\x4f\x33\xc9\x87\x28\xb7\x1e\xaa\x88\x04\x78\x43\xb1\xb8\x36\x6a\x39\xc1\x91\xd9\x2f\xb4\xbb\x51\x6f\xda\x9b\xe6\xaf\xd3\xdf\x03\xb8\x7e\x6b\xac\x16\xeb\x7b\x81\xef\xd6\xff\x89\xeb\x6d\xe5\x65\xb5\xc2\x61\x75\x63\x8c\x73\xa0\xf1\xce\xca\xa7\x34\x8e\x6d\xdf\xf6\xe2\x35\x2d\xdd\x70\x77\xac\xcd\x77\x4f\x6b\xb6\x36\xcb\x22\x62\x6e\xdd\x55\xc5\xe7\x41\x99\xc5\x50\x0d\x65\xc7\xd1\xc0\xdb\x8a\xd5\xcc\xa5\x17\x67\x0f\xb5\x17\x16\x28\xf6\x74\x1d\x45\x57\xd9\xff\xbf\xb1\xd0\x88\xd7\xbb\x5a\xfb\xb0\x46\x22\x76\x84\x2a\x29\x36\x85\x07\xd8\xa4\x44\x9e\xf8\x45\x5d\xe2\xba\xad\x4a\x5c\x75\x6b\x0a\x06\x00\xc5\xa9\xe9\xb5\x54\xc1\x40\x67\x1c\x9b\x6a\x55\xe8\x0f\xd2\xbc\x80\x5f\xa5\x98\xeb\xa9\xe1\x7b\xc9\x2d\xa0\x90\x51\xb7\x22\x8e\x8a\x7a\x12\x03\x76\xf0\xe8\x50\xb8\x90\x74\xbb\xde\xd3\x3b\xd4\xee\x67\x51\x2f\x4e\x3d\xf5\x5d\xd8\xf2\x3e\xe4\x3e\xe1\xcc\xae\x72\xcb\x78\x73\x51\x88\xf8\xc6\xf3\x1d\xe5\xa5\xc2\xc0\x69\x0d\x85\x76\x59\x8c\xdf\x67\xcf\xe8\x66\xde\x7d\xe5\xcd\x83\xc8\x18\x2f\x57\xfa\x7e\x9e\x3b\xf9\xad\xa6\x0d\x76\xc9\xf6\x6c\x66\x44\x58\xbb\x49\xa6\x50\xc5\x48\xf0\xd6\x27\x44\xf5\x17\x7c\xec\xa8\xf0\xda\x74\x91\x22\xc5\x4f\x0f\x11\x61\xf7\x7d\xcc\x71\xe1\x3c\x36\xa8\x2f\x8c\xb2\xe8\x55\xc1\x76\xc9\xfa\x47\x5f\x80\x7a\xc9\x6d\x65\xc8\x7a\x49\xe5\x1f\xa1\xc9\x6d\x4e\xaa\x06\xa8\xd5\xfd\xcb\xb1\x12\x52\x81\x7e\x89\xc8\xee\xd3\x63\xc6\x44\x79\x53\xbb\xf8\xbc\x89\x6b\xe3\xcf\xab\x4e\x5f\x61\x47\x51\xaf\xa5\x6c\x5a\x31\xa3\xc4\xb3\x55\x49\x56\xa5\xc3\xa1\x49\x50\xe3\x45\xc1\x13\xe5\x5a\x11\x18\x69\xfd\x86\x18\x8a\xbd\x36\x41\xf7\x1f\x99\xb5\x27\xbd\x6e\xda\xbb\x14\x24\x21\x5e\x38\x1e\x28\x4b\xb2\xb7\xe8\x1d\x22\x00\x7e\xa0\x10\x43\x67\x71\x3d\x82\xa6\x54\xe2\x6a\xc7\x55\x88\x72\x4d\x99\xb1\xfc\x5f\x3a\x8a\xd8\x52\x5d\xc4\xab\x54\xa9\x63\xbd\x5a\x3c\x1c\x8c\xfe\xbf\x08\x14\x40\xb0\x4e\x38\x9c\x3b\xdc\x0e\x07\x51\x62\x73\xcb\xf6\xe3\x58\xeb\x9e\xe8\xf8\xf5\x6c\x5d\x99\x2d\x70\x7a\x03\x5c\xef\x9e\xf5\x9d\xc3\x60\x7e\xbe\xca\x75\xcb\x9c\xeb\x99\x02\xc5\x50\xb0\x8c\x46\xa1\x9e\x51\x66\x8b\x02\x9b\x2f\x36\x91\x13\x78\x7a\x7c\x52\x33\xd7\xdd\xbf\xbf\x0a\x90\x11\x31\xa0\x96\x75\x5b\xc9\xf2\x6a\xb8\xf1\x87\xd8\x40\xf0\x8c\x2e\x2b\xca\xa7\x35\xe5\x51\xca\xb7\x5c\xaa\x7c\x60\xc1\xcd\xd4\x4f\x4f\x54\x8b\x6d\x9e\x13\x72\x97\xab\x0b\x62\x1e\xa4\xf0\x7b\x0f\x34\xf5\xad\x30\x49\xcf\x6d\x41\x4d\x31\x9a\x93\x51\x21\xa3\x1e\x9e\x31\x58\x17\xf6\x74\x26\x3c\xd2\xe8\x59\x8b\xf2\x51\x5d\x99\xe2\x0b\xed\xcc\x56\x89\x82\xb6\xe8\x43\x6e\x2b\x9d\x50\x4f\x95\xe9\xdb\xc4\xa2\x36\x9a\xef\xad\x46\x0a\x76\x9f\x9f\xa8\x08\xf7\xdb\xf4\x08\x26\x94\x31\x15\x5d\xed\x0b\x3c\xbd\xce\xd1\xc0\x44\x93\x07\xc6\x58\x2c\x61\x51\xdb\x90\xa5\x58\x92\xd9\x7e\x84\xed\x51\x74\x03\xe9\xb6\xf8\xa4\xb6\x92\x1c\xfe\x72\x3b\x33\xbd\x28\xcd\x95\x2a\xe9\x0d\x5c\x0e\x9f\x78\x41\xcf\x17\xd3\x17\xbb\xf4\xcd\x08\xfb\x31\x69\xf8\x58\x09\x62\xe6\x36\x8e\xb1\xc4\x80\xa4\x73\x41\x35\x87\x20\x8a\xb5\x7d\x79\xec\xe1\x34\xac\xb2\x89\x92\xc0\x6e\xbc\x11\xa0\x08\x3c\x5a\x30\x4a\x0a\x9b\xe4\xb8\x2d\x5a\x20\xcd\x67\xe8\x61\xf0\xb1\x6b\xf9\x2e\x9b\xe4\x95\x48\x71\xb9\x21\x50\x8e\x65\xe5\x06\x15\xc2\x90\x54\x3f\xee\x12\xde\x9e\xb5\x43\x29\x50\xe1\x19\x3d\x50\x82\x3c\xdc\x5f\x91\x75\x49\x53\x81\xf3\x24\x0a\x97\x5b\x48\xfa\x94\xf6\x8b\x97\x32\x7e\xce\xed\x98\x4b\x65\xd6\x85\x5c\x63\x4b\x69\x17\x23\x8f\x11\xba\x84\x8f\x78\xf3\x41\xb4\x24\x31\xa7\xcc\x63\x6e\xaf\xf0\x89\x0a\x72\x56\xd2\x35\x5b\x66\x51\x3e\xd4\x76\x66\x50\x2e\x14\xdf\x50\xc5\x60\x48\x93\x5e\x9a\x90\x34\xcb\xc2\x36\x44\x11\x5c\xdf\xc7\x57\x09\xde\xd0\xdd\x9b\xc8\xf6\x86\x69\x22\x2d\x01\x34\xad\xd8\x75\x95\x4f\x9a\xd4\x3d\xe3\x34\xe9\x17\x36\x1b\xb6\x14\x88\x9e\xde\xb8\x24\x84\x0d\xea\x9c\xa3\xd8\x1a\x97\xae\x8b\x41\xad\x22\xa2\xbd\xa6\x26\x7d\x94\xac\x50\xb6\xd5\xd2\x9c\x3b\xba\x28\x21\xe3\xed\xdc\xb8\x5f\x60\xae\x57\xb7\x2c\x00\xd1\xc2\xd5\x5f\xc7\x6a\x8d\xad\x82\x60\xc1\x4d\x9d\x9b\x2f\x1f\x6a\x17\x83\x28\x49\x6c\xb5\xd0\xce\xcf\x8b\x2a\xd6\x15\xa5\x48\x7f\x65\xec\x03\x24\xc6\x2b\xa1\xcf\x87\x9a\x3a\xa6\x2e\x61\x24\xfe\xd9\x33\xeb\xbe\x9a\xde\xea\x3c\xab\xcc\xa9\xe2\x78\x6d\x35\x4d\x7b\x53\x13\xe0\x48\xd5\xe3\xba\x34\x11\xbc\xfe\x1f\x0d\x4b\xd4\x42\xbb\x30\x59\xb4\xb4\x34\x55\xad\x39\x8c\xd4\xd7\x0f\x06\xb4\x06\xcc\x81\x0d\xc5\x50\x8e\x92\xa5\x34\x1b\x32\x5b\x42\xbb\xe9\x79\x63\x73\x27\x0d\x69\x92\x65\x9b\x4d\xa9\xf6\x3e\x12\x22\x81\x35\xe8\xea\xae\x9b\x96\x49\x1a\x2e\xd3\x63\x07\xda\xf8\x4e\x30\xa9\xd6\xaf\x46\xc9\xf3\x13\x66\xc7\x26\x8b\xf2\x34\x81\x79\x00\x70\x2f\xdf\xa3\xcb\xe2\xe3\xa6\x6e\x5d\x98\x9a\x6a\x87\xe5\xc7\xaf\x6d\x2e\x31\x21\x60\x3f\x8a\x98\xe4\x94\x97\x32\xb0\x44\x6a\x9a\x51\x8d\x94\x53\x08\xce\x30\xfa\x8e\xf3\xa3\xe7\x7f\xc2\x02\x89\xe6\x39\xaa\x2b\x80\xa5\xbc\xaf\x62\xcb\x55\xc2\x89\xcc\xa8\xe4\x43\x08\x63\x88\x14\x18\xa1\xc4\xa8\xce\x75\xcf\x76\xdc\x8d\xba\x36\x42\x88\x3b\xaa\xf6\xff\xf7\x9e\xfa\xff\x2e\xb5\xde\x9a\x3b\xdc\xd1\xa2\xea\x0f\x55\x71\x9f\x50\x58\xd7\x92\xec\x13\x72\xeb\x13\xf2\xf0\x2d\x25\xd0\x3e\x29\x15\xaf\xf5\xdd\x15\x5f\xde\x9a\x65\xbc\x4b\x8c\x40\x98\xd2\xf3\xf1\xd8\x6b\xf8\xbf\xf2\xe2\xb4\xd7\x0b\xc2\xbb\x13\x8d\xb0\x96\x93\x0b\x65\x8f\x75\x3e\xa9\xa1\x62\xf6\xcf\xb5\xd7\x2c\xab\x65\x60\x5d\x47\x6f\x47\x54\x9f\xe8\xc3\x88\x23\x2f\xa8\xe6\x53\x9e\xb2\x47\x2e\x53\x59\x02\x4d\x6b\xf1\xe4\x25\x2a\x63\x72\xd4\xe5\xdc\x5d\x17\x0f\x3a\xa4\xb8\xf2\xb7\xca\xf3\x34\x8c\x4c\x61\x73\xd2\x40\x92\x0a\x2d\x06\x02\x02\xae\x9b\x4a\x1e\x6a\x4b\x49\x28\xbd\x39\x56\xb4\xd4\x2b\xca\xb6\x53\x0a\x45\x61\x59\xe8\xe5\x72\x43\xf3\x76\x37\x6a\xeb\x32\x4c\xd9\xfa\x7d\x5a\xc5\xaa\xd7\x28\xda\x43\x4a\x87\xc8\xf7\x6d\x4c\x91\xa5\xf1\x94\xbf\xe4\xf1\xd8\x43\x74\x2e\xd0\x05\xa3\xb4\x7e\xb6\x81\xce\xf0\x85\x36\x84\x63\x5d\x3d\x15\x1f\x90\xf0\xa6\x01\x41\x14\x66\x65\x6e\x7a\xf8\x08\xba\x1c\xcc\x99\xe0\x93\x87\x46\x3b\x26\x1a\xee\xf4\x19\x53\x58\xb0\x13\x93\xb2\x36\x69\x99\x14\x6c\x11\xef\x1a\xa7\x55\xe6\x27\xda\xda\x9e\x4d\x0f\xe3\x1e\xe1\x62\xd4\x25\xce\x0e\xb5\x47\x25\xeb\x56\xe2\x71\xbf\xa7\x9f\xfd\x7b\x5e\xf6\xb0\x8c\x1c\xa3\x4f\x94\xf2\xe9\x0f\x05\xc4\xe7\x9b\x56\x55\xd4\x64\x81\xfa\x42\x69\x01\x6c\x29\x3e\x56\x65\xd3\x70\x10\x8d\x5a\xd5\xfa\xee\x42\x6e\x5f\xe7\xa9\xbb\x25\xce\xcf\x33\x04\x83\xe5\x1a\x38\x94\x51\x2d\x82\xef\x61\x98\x81\x85\xb9\xa1\x9b\x1f\xd5\x86\xcc\xb5\x7a\x36\x93\x1c\xab\x14\xf5\x4d\x05\x37\x19\xa5\xab\x36\xb3\xbc\x73\xb9\x72\xb6\x93\xa2\xbd\xab\xb0\x0c\x1b\x6a\x41\xe8\x67\x26\x1f\xb5\x7c\xcb\x04\x59\x20\x1f\xab\x28\x27\xb3\x21\xb2\x02\x0a\x52\xa5\xf2\x42\x97\x2d\x25\x99\x27\x34\x36\xff\x45\xc6\x0a\x62\x95\xd7\x56\x54\x67\xf4\xcd\x5e\x53\xf5\x0f\xd2\xf2\xc8\x29\x45\x71\xfc\xb8\xaf\x7c\x51\x8e\x75\x91\x2e\x85\xc2\x11\x1a\x53\x37\x03\xa5\x7d\x7f\x53\x19\x09\x16\x76\x38\x2a\x18\x1c\x71\x44\x30\x2d\xd8\x53\xf9\xb8\x19\x21\x02\x2f\x3c\x7e\xea\x13\xb2\x26\x75\x90\xcf\x20\x2d\xf3\x22\x4d\xa6\xf4\x43\xa9\x7e\x60\xc2\xdd\x05\xeb\xfb\xbd\xa6\x30\x2d\xb7\x23\x93\x99\x02\xed\x7d\xdc\xc2\xde\x8e\xdf\x5e\x3f\x41\xf2\xcb\xbb\x9c\x56\xdb\x4e\xf2\x92\x34\x0d\xaa\xa7\xe5\xc4\xac\x0f\x38\x76\x87\x0a\x7d\x45\x9c\x73\x05\x3f\x22\xfc\x00\x7f\x95\x37\xc7\xaa\x46\x70\x56\xc9\x11\x7e\xf9\x37\x0e\xb5\xbc\x10\xd3\x4f\x75\x6c\xfd\xd3\x26\x1f\xd1\xfc\xeb\xa5\xc9\xec\x94\x47\x70\xef\x5d\x57\xa0\xff\x4b\xaa\xb1\xff\x49\x0d\xa0\x39\x3f\xdf\x1e\x58\xb3\x82\x92\x0e\xf6\xdd\x2b\x8a\xdb\x77\x45\x25\xb2\xb9\x89\x8b\x29\x45\x5a\xdd\xb5\xee\x1f\xde\x8f\x30\xb7\xb1\x09\x6c\xeb\xd2\x70\x96\x8e\xb0\xf1\xa1\x8f\x07\x75\x6b\x3e\x9e\x94\x53\xed\xd9\x67\x7d\x2b\xe6\xa6\xfa\xbb\x89\x26\xc5\x6d\x8d\x3d\xbb\x31\xf6\x22\x95\x97\xc1\x5c\x47\xf5\xe2\x32\x96\x37\xae\x96\x50\x8c\x80\xe7\x7c\x81\x20\x7a\x48\x71\x6e\xa0\x82\x86\xc9\x79\x0d\xf9\x3b\x5e\xcd\xcc\xba\x6f\x6f\x1d\x27\xe6\xb5\x88\xb7\x2b\xa8\x0d\xa3\xc4\x30\x48\x44\xd3\x44\xf2\x14\x55\x41\x3c\x4d\x05\x13\xec\x25\xff\xaa\xa9\x2c\xb2\x1c\x15\x79\x38\xc0\x2b\x90\xdd\xc8\xef\x85\xe7\x1b\x16\x61\x6a\x20\x4d\x29\x1e\x1e\x2f\xe7\xce\x2e\xcd\xe9\xad\x7d\xa2\xde\xc5\x20\xea\x0f\x80\x7e\x56\xd6\x43\x73\xce\x49\xa8\xa1\xc4\x42\xbe\x99\xac\xaf\x2e\xc2\x81\xb8\x4f\x69\x4f\x3d\xaf\x3a\x46\x59\x54\x98\x24\x0a\x4d\x4c\x1d\x0b\x5c\xd8\x35\x42\x1e\xbb\x10\x7c\xee\x30\x17\x27\x4e\xa9\xee\x8f\xc9\xed\xa8\x10\xd8\xea\xe2\x41\x07\x0d\xf5\xb6\xa8\x97\x1e\x2a\xf3\x19\xa6\xc3\x6e\xe4\x64\x52\xdd\xef\xb8\xe4\xe8\x64\x83\x3c\x4d\x3b\x0f\xd3\x11\x76\x5c\x04\x77\x47\x03\xc5\xdf\x3f\x3a\x81\x9a\xcb\x07\xe5\xd2\x52\xcc\x06\x6c\x62\xc0\xae\x44\xa5\x2e\x35\x7c\xff\x41\x02\x51\xd1\xda\x84\x09\x71\x1e\x61\x21\x4e\x38\x7a\x43\xb7\xf4\x43\xd5\xb8\xc9\xcd\x70\x4a\x8b\x74\x63\xf1\x16\x82\x19\x7d\x08\xe8\xf6\x1b\x4d\x10\xc9\xd8\x94\x09\x75\xf7\xaa\x9f\x45\x55\xe6\x2d\xbc\x5f\x3e\x09\x1e\x73\xb7\xb5\x66\x5a\xad\x97\x5c\x6a\x05\xcc\x83\xe4\x59\x0d\x0b\xc4\x28\xb2\x21\x74\xc1\xb1\x27\x70\x0e\x80\xa0\xfb\x1f\x2b\x6d\xd8\x8d\xe0\x33\xbe\x2b\x58\x76\xc3\x34\x29\x32\x13\x16\x29\x9b\xd9\x63\x3c\xbf\x1f\x28\xcf\x88\xf7\x15\xb1\x9b\x0c\x16\xf7\xf9\x0c\xf1\xbb\x4a\xa7\x63\x8b\x7b\xcc\x32\x71\x3d\xf5\xe1\x7c\x30\xc1\x6c\x74\xd3\xe6\x7d\xcc\x67\x07\x12\xae\xe2\x7a\xfe\xb4\x0a\xf5\xca\x7c\x92\x37\xc7\x14\x3f\x3e\x69\x94\x6e\x17\x1e\x7c\x4b\xf5\xc6\x11\x34\x09\x69\xf8\x53\xee\x95\x96\x49\xb4\x62\xb3\x1c\x24\x40\xa5\x44\xc7\xfc\x60\xb1\xb9\xf3\x53\x34\x4b\xd3\x61\x0e\x8c\x24\x42\x30\x60\x24\xb1\xc5\x71\xee\x88\xd0\xf9\x6d\x6c\x51\x7c\x82\x9b\x15\x52\x90\xa7\x00\x35\x91\x1b\x0f\xf9\xb1\xa2\x5a\xb3\x27\x31\x58\xf8\xa4\x36\xc2\x88\xa9\x4b\x54\x67\x94\xa2\x50\x21\x3b\xae\xfa\x89\xc7\x55\x92\x10\x9a\x2c\xaf\xb6\x7f\x87\x43\x7b\x4f\x99\x7d\xbd\xa7\x18\xca\x61\xb5\x8d\x0f\x27\x19\x6b\x9a\x32\x5c\x37\x0f\x78\xa1\x6d\x4d\x16\x47\x36\x83\x7e\x25\xc2\xf2\xed\xc0\x93\xe2\xb7\x95\x86\xb9\xab\x48\x4c\xab\x64\x01\x85\x4b\x8c\x98\xdd\xeb\x2a\x78\xbd\xa8\xf0\x59\xbb\x3b\x8a\x2a\x17\x5b\x93\x11\x82\xd3\x59\xd1\x54\xdf\x06\xb2\xce\xcf\xe8\x43\x08\xf6\xae\xeb\xbd\x69\x53\x75\x14\x38\x3f\xc1\x92\xfc\x73\x6c\x54\x22\x5e\xa5\x86\xe9\xd9\xb1\x8e\xbd\x1d\xdd\x39\x7a\xd5\x64\x99\x9d\x56\x2e\x96\xd7\x14\x51\x13\xd0\xa9\x09\x26\x92\xb4\xdf\x7c\x48\x71\xe0\xf3\xbf\x3e\xa5\x48\x64\x57\x95\x74\x3a\x80\x97\x68\x87\xff\x89\xab\x5b\x14\x83\xcc\xae\x42\xc1\x0b\x3a\x98\xcc\xb0\x46\xcd\x07\x75\x0f\xac\x46\x0f\xc6\x5a\x14\xd0\xd7\x81\x49\xca\x78\x68\x93\x2a\x0b\xa8\xfe\x02\xe0\xc0\x8b\xb4\x63\xf3\xb1\xe2\x96\x45\xc3\x61\x99\xf0\x3c\xf1\x0c\x9b\x5b\xf4\x40\xf8\xb8\x91\xa1\xbe\x12\xa5\xb1\x71\x89\x06\xe3\x9f\x34\xf2\xe7\x56\x83\x31\x76\x95\x17\x0c\xa2\xae\x4f\x50\xd8\xf2\x8e\x22\x25\xb1\xbf\x7b\xc2\x71\x69\xb2\xa2\x64\xb1\x70\x24\xec\x17\x95\xea\x05\xdc\x62\xc5\xad\xc3\x2f\xe6\x9f\x8b\x91\x42\x72\x04\x83\xf9\xc9\x3c\x6b\x7a\x60\x28\x20\xfd\xbc\x06\x62\xa6\x2e\xa1\x29\x06\x24\x9d\x05\x09\x23\xc9\x98\x54\x4c\x71\x7b\xec\x7b\x5c\x53\x1d\x49\x5c\x42\x9b\xad\xc0\x36\xe6\xc8\x2c\x7f\xea\xde\xd8\x17\x90\xea\x8a\x7f\x54\xdf\x4b\x91\x87\x20\x0c\xb8\xaa\x60\xb8\x57\x9b\xfc\x33\xd7\x22\x1b\xf7\x44\xc2\x09\x70\xa4\xdf\xc1\x7c\xe0\x93\x26\x79\xae\xd8\xac\x56\xf9\xe0\xb4\xce\xf6\xe9\x33\xac\xb6\x83\x0d\x45\x4b\x14\x20\xfb\x7d\xac\x23\xe3\xd1\x14\xb1\xc1\x2e\x82\x8d\xf3\xd8\x58\xed\xa2\xc7\x9a\xa2\x2a\x11\x64\xa1\xdf\x41\x50\x09\x2a\x2b\x1f\xab\x04\x79\xc9\x76\xb3\xd2\x64\x6b\x88\x6e\x91\xac\x83\x96\x86\x15\x6b\x63\xa2\x49\xa4\x52\x27\xca\xac\xa1\xb6\x85\xf7\x09\x99\x00\x3e\x56\x45\xf3\x62\x60\x0d\xa9\x8c\x3b\x48\x11\x34\xaf\xb9\x1d\x30\x21\xb7\x84\xd6\xc1\x74\xe7\xb3\x0f\x09\x79\x86\x26\x29\x97\x4c\x58\x94\x99\x75\xc2\x1e\x48\xf1\xb8\x0d\x8a\x7d\xe8\x96\x56\x1f\xd8\xac\x75\xb6\xaa\x24\xa8\x04\xa6\x54\x12\x7f\x55\xbb\xda\x01\xce\x61\x22\x27\x40\x36\xa0\x59\xbf\x11\x28\x92\xfa\x1b\x0d\x2e\x5a\x4b\xb6\x08\x07\x68\x39\x89\x6b\xd1\x44\xb0\x5e\xfd\x98\x18\x47\x35\x29\xba\x99\x38\x4e\x19\xf4\x2a\xe4\x4c\xcd\xd4\x6c\x82\xd7\x24\x69\xb2\x9a\x66\xde\x91\x4e\xb2\xc1\xea\xaa\xf9\xb8\xc9\x1d\xde\x24\x49\x5a\x26\x21\x33\x6f\xb8\xf8\x38\xa1\x37\x49\xe3\x02\x51\xd9\xa9\xf1\xdf\x79\xc8\x7b\x59\x2a\xb3\x6a\xda\x0e\xd3\x0c\x86\xee\xc8\x2b\xde\x18\x6b\xcc\xea\x58\xa9\xb4\xc3\x3b\x0a\x29\xca\xe3\x9d\xd6\x81\x85\xed\x53\xba\xec\x75\x6b\xa2\xff\x1b\x17\x83\xbd\x9a\x05\xf8\xa6\x6a\xa1\xdc\x0e\x26\xbe\x95\x9e\xac\x63\xe7\x55\xcf\x1f\x23\xee\xfa\x58\xc1\x0d\xb9\xc8\x84\x36\xee\x4f\x9a\x52\xe4\x7e\x69\xb2\x5e\x64\x12\x95\x19\xf2\x00\xe5\x93\x06\x05\xa8\x2f\xb4\x57\x6d\x5e\xac\x9a\x0c\x4b\x3e\x56\x04\xd8\x59\xf2\xb1\xee\x5f\xa6\x4b\xd5\x9f\xda\x69\x55\x92\xe3\x86\x32\xba\xfa\x40\xc5\xf1\x3f\x68\x05\xb6\x4d\x0d\x54\x8b\xcd\x9a\xcd\xd0\x6a\x94\x3a\x93\x2f\xe5\xdf\x09\x94\xb0\xf5\xbd\xb1\xaf\xad\xde\xa1\x88\x41\xe4\x20\x14\x89\x63\xac\x2b\x56\xe3\xe7\x26\x21\x2e\xbf\x5a\xdd\xe3\xb4\xaa\x26\x31\x93\x55\x0c\x00\x7d\xad\xfd\x62\xa0\x7a\x8f\x13\x28\xe8\x2c\x1a\xda\xbd\xba\x70\x15\x28\xd1\x21\xce\xae\xc4\xe0\xc8\x3f\xb8\xdf\xa1\x3c\xca\x59\x81\x39\x63\xaa\x0d\xbc\x54\xf6\xcc\xaf\x25\x23\x24\x75\x36\x8c\x42\x6c\x5f\x52\x32\x9f\xf2\x66\xed\x1b\xca\xd7\xe7\xae\xaa\x41\xfc\xa7\xff\xf1\x7f\x32\xed\xa9\x4a\xe7\x54\xf5\xe6\x9c\x36\x41\x80\x67\xa0\x80\x04\x9e\xd2\x34\xd1\x28\x85\xc5\x95\x86\x2e\x8a\x3b\x14\x7d\x03\x93\x10\xb0\x12\xb0\x3a\xc8\x58\xe5\x59\xa7\x95\x36\x5f\x1e\x1d\xdd\x47\x03\x40\x4c\x7f\xe9\x16\x50\x8d\x7b\x5f\xb5\x35\x8e\x51\xc0\xc0\x39\x53\xa0\xda\x3f\x9b\x94\x32\x48\x32\xe5\xab\x2b\x57\x94\x7d\xf0\xc9\x1a\x64\xe7\xe5\x97\xdb\xc3\x32\x8e\x8a\x68\x44\x11\xa7\x5f\xdb\x37\x94\x34\xa6\x2f\x1c\x66\x36\x5c\x8e\x6d\x0e\x82\x0a\xcd\xac\x17\xd1\xac\xa5\x95\xe3\x3f\xf8\xd4\x7a\xeb\xd7\x5f\x62\x24\xdf\xc7\x0f\xad\xeb\xf6\xad\x5d\xe6\x8a\xa5\xb0\xed\xaa\xaf\x70\x89\x8c\xdf\x22\x8e\x4d\xac\x10\x79\x9a\x3c\x55\x8d\x24\x71\xe6\xab\xee\xd1\xd9\x41\xf8\x7e\xea\x8d\xb1\xea\xa7\x7e\x8c\x50\x14\x6b\x10\xcb\x28\x0b\x95\x91\x32\x26\x8c\xab\x0b\x2a\xc8\x79\x9b\x92\x78\x56\x94\x0d\x94\x3e\xe0\x4f\xb8\xb2\x8f\x1a\xc4\x35\x34\x4f\x84\x59\x4d\x53\x9c\xcd\x38\x35\x3f\x16\x90\x39\x84\x5c\xd7\xdd\x73\xec\xc6\x69\xb8\x6c\x7a\x28\x9c\x29\x12\x94\x48\xf6\xe0\x53\x18\x3f\x77\x83\xa7\xb4\xe2\x40\x94\x17\xd3\x44\xe2\x94\x6a\xaf\x32\x2a\x3e\xa5\x24\x60\xd0\x5b\xe1\xff\x1e\xf8\xd6\x5b\xda\x85\x32\x5e\x9a\xad\xed\x70\x21\xd5\x7e\x26\x0d\x9a\x71\x54\x62\x17\xdf\x6e\xad\x5f\xc5\xc7\x3a\xe9\x89\xab\xbc\x53\x9b\x12\x5d\x54\x52\x3d\x17\xc7\x8f\xca\x72\xf3\xf9\xdf\xa4\xb6\x57\xb5\x2f\x54\xb7\xc4\x21\x23\x36\x14\x24\x16\x5c\xc2\x62\x6b\x20\xb8\x5c\x4a\x2e\x41\xef\x59\x24\x91\xab\xd5\x43\xd4\x05\xe8\x12\x91\x2c\xb5\x08\x7d\x23\x43\x92\xde\x12\xb6\xb9\xd7\xa9\xea\x85\xd7\xf7\x3f\xd0\x0a\xc5\xb8\x9e\xb1\x87\x0b\xbd\xa3\xba\x9f\x9c\x38\x03\x37\x7e\xb3\x01\xfc\xd8\x4e\x22\x66\x53\xa1\xff\x0c\x37\x6e\x21\xd4\xb6\x1c\xb7\xf4\xbc\x82\x53\x50\x5b\x9c\x3e\x83\x77\x7d\x35\x50\xd6\x0a\x67\xa9\x92\x87\x58\xe7\x1d\xd5\x7c\x0c\xcd\x28\x2a\x4c\xcb\x97\xe0\xb7\xf1\x29\x3e\x71\x69\xd5\xd7\x4b\xeb\xe3\x43\x6e\x01\xd0\x38\x97\x76\x80\x27\xfc\x2d\x65\x90\x7e\x75\x15\x2a\x8c\xc9\x8f\xe8\x59\xf0\xb1\xf2\x1a\x1c\xa6\x3d\x9b\x17\x7b\x3c\x47\xe1\x2f\x03\x30\x23\x31\x18\xb1\x8c\xbe\x85\x39\xe1\xa2\x61\x5f\x51\xd9\x9a\x70\x00\x75\x66\x22\xab\x51\xc2\x65\x28\xec\x60\xbf\xa5\xba\x83\xbf\xd5\x00\x2b\x58\x60\xc0\x62\x4b\x71\xd8\x37\x54\x67\x7b\xc3\x11\x0e\x32\x9b\x5b\x43\x6e\x78\x28\x85\x70\xfa\x18\x4c\xe4\x92\xbe\x25\x31\x30\xa3\x91\x4d\x28\xa9\xae\x32\x35\x67\x93\xe0\x84\x0f\xdf\x08\x7c\xbe\xf7\xc6\xb8\xf5\x92\x18\x3a\x5c\x7c\xa8\x37\x78\x12\x1a\x83\x2a\x23\x2f\x73\x0a\xfb\x73\xa1\x16\xba\xbe\x50\xad\x75\x68\x45\x60\xca\x7c\x53\xab\xea\x7e\x53\x01\x4a\x46\x69\x1e\x91\xc8\xa5\xaa\x0e\x3e\xc0\xc4\xe0\x93\xe0\x71\x8f\xe1\x4b\x19\xe8\xc5\x3a\x34\x98\x27\x78\xc0\xfc\x30\x26\x14\x6a\xf8\x5f\x76\x22\xb2\x4c\xd6\x9b\x9e\xa0\x40\xf8\x4e\x2f\x5c\x18\x00\xf7\xb9\x16\xa8\xcb\xd8\xdc\x19\x68\xfc\x72\x95\x07\x3e\xe2\x97\x73\x31\xbf\x41\xb1\xf9\x24\x16\x57\xcc\xc8\x93\x0a\x52\xfd\xa1\xfa\x31\x36\x6a\xe2\xd9\xb6\xee\xa3\xb8\x93\x8a\x51\xf4\x21\x3d\xb9\xed\x63\x2a\x6f\x4f\xb3\xa8\x1f\x25\x0e\xfb\xfd\xff\xf0\xf5\x67\x51\x92\x64\xe7\x7d\x18\xde\x9d\x55\xdd\xd3\xd3\x3d\x3d\x2b\x06\x0b\x71\xf4\x57\x42\xc2\x5f\x90\xe5\xe1\xd8\x96\x6c\xd9\x47\x2f\x91\xaa\x2a\x71\xd0\x6d\xa0\xa6\xdc\xdd\xec\x11\xe7\xf0\x61\x6e\x46\xde\xca\x8c\xa9\xc8\x88\x44\x44\x64\x55\xd7\x3c\xfa\x41\x47\x2f\x3e\xa6\x17\x1d\x1f\xd3\xb4\x25\x11\xe7\x88\x94\xe9\x23\x42\x24\x28\x92\x10\x81\x4c\x2c\x04\x89\x7d\x00\x0c\x66\x6f\x4c\xef\xfb\xbe\x6f\x53\xed\x13\xdf\xef\xfb\xee\xfd\xa2\x22\xc6\x6f\x11\xdd\x95\x99\xb1\xdc\xfb\xad\xbf\xef\xf7\x7b\x59\x6b\xaa\xec\x77\x8a\xb3\x4d\x69\xab\x29\x18\x66\xd2\x52\x12\x62\x4c\xab\x2e\x16\xb1\x12\xd3\xda\xde\xb3\xe5\xa5\x20\x3c\x7d\x14\xe3\x95\x0a\x7d\x24\xf9\xc1\xff\xac\xf8\xc3\xae\x06\x55\x66\x65\xd7\x33\xfc\x26\x2d\x34\x00\xcc\xce\x4e\x50\x2d\x14\x7e\x73\x2d\x0a\xc6\xa4\x6c\xd8\xb5\x5b\xa7\xb4\x84\xc5\xab\xd0\x53\xc5\xd7\x6d\x87\xa4\x11\x4a\x2c\xa7\xe0\x0c\x81\x58\xdb\xda\xf1\xb2\x22\x5b\xc9\x88\x61\x21\xa0\x69\x09\x5f\xb8\xb5\xa3\x10\xa4\x4c\x55\xc4\x37\x46\x76\x15\xbf\x7e\x2a\x50\xc2\xf9\xf7\x14\x13\x02\xa9\x63\x52\x3f\x07\xd3\x9d\x34\xf4\xcb\x51\x16\xee\x59\x74\x43\x75\x03\x25\x8f\xc2\x5d\xbe\xd1\x72\x45\xb3\x6c\x1c\xc5\xb4\x1f\x6e\xed\x36\x9e\xad\x94\xfd\x7d\x0f\x9c\x71\xcf\xf0\x0c\x5f\x09\x74\x71\x90\xd6\x98\x88\xd9\x56\x1a\x74\x2d\xaf\xb3\x88\xb1\x3a\xfe\x11\xa7\x66\xd1\x8b\xf2\x62\x9c\x75\x05\xb3\x84\xb7\x70\x5f\x11\xed\xdc\xaf\xd5\x28\x69\xe2\x1f\x93\x62\xc2\x66\x25\xb3\x89\x6a\xe6\xed\x78\x4d\x3d\x77\x71\xb1\xd2\x77\x53\x3c\x22\x97\xd5\x00\x4f\x5d\xc9\x9c\xda\x8f\xab\x91\x5d\xe3\xb8\x0b\x13\x36\x1b\x2a\x34\xbc\xac\x6a\xaa\x5a\x7e\xa0\x9b\x59\xb3\xe2\x10\x6b\x08\xcf\x4f\x7b\x7d\xed\xa7\x4f\xab\x12\x57\x98\xa6\x59\xaf\xdc\x59\x6c\xc6\xc5\x28\x7a\xfd\xee\xba\xd6\xdc\xc1\xb9\x97\xcb\x83\xdc\x62\x2c\x06\x2b\xf0\xb6\x42\x4d\x9c\x87\x2d\x12\xfa\xfc\x9d\x6e\x98\x6d\x44\x45\x20\xa4\x92\x60\xeb\xe4\xe3\x5a\x85\xff\x8b\x0b\xed\x7c\x64\x63\x5d\x35\x3a\x4c\x17\xc5\xc7\xd5\x28\xd3\x24\xbb\xf5\xe8\x38\xe6\xd2\x36\x1e\x04\x1e\x86\x83\x35\x81\xec\xf7\x5f\x83\xbe\x48\x21\x20\xbd\x2e\x20\x2d\x23\x9e\x3a\x83\x71\x11\x71\xd2\x0a\x9b\x32\x3d\x59\xbe\x71\x7a\xb2\x70\x0b\x77\xc8\x28\x48\xd4\xaf\x98\x42\xa6\x1e\x82\x30\x30\x19\x00\x8e\x0b\x1a\xf9\x2c\x63\xdb\x40\x1e\xe3\xdb\x76\x4c\x3f\xe9\x9d\x46\x45\x44\x35\xdf\x56\x9a\x28\x58\x51\xe6\x1a\xe1\x93\x40\xe3\xa2\xb6\xa0\x3c\x0a\x17\x74\x78\xa2\x12\x9c\x7b\x4d\xc4\xac\x79\x1a\x33\x39\xbe\x87\xab\x42\xd3\x8b\x8f\xfd\xd4\x47\x98\x59\x9b\xe4\xa0\x56\x11\x50\x3b\xfd\x16\x2a\x81\x28\xff\xaa\x42\x85\xc8\x3d\xdc\x50\x23\xa6\xc3\xfe\xf0\x37\xff\xb3\x31\xcb\x5d\x60\x83\xb6\x08\x1b\x25\x25\x5c\xd5\xfb\x7c\xbf\x96\x05\x2d\x1c\x68\x17\x36\xb6\xf9\x7a\x5e\xd8\xa1\x6c\x48\x18\x96\xc3\xb8\x14\x3e\x69\x6a\x21\x8e\x32\x5b\x98\x43\x2d\x5f\x6f\x3e\xa6\x04\x29\x8f\x35\x89\x2b\x16\x03\x93\xac\x30\xd4\x98\xd9\x10\x02\x45\xc1\xf4\xcf\x1d\x1b\x77\xba\x6a\xb3\xe5\x38\x5d\x73\xf5\x1e\x1e\x8c\xa0\xed\x21\x43\x12\x4d\xd2\x8a\xdd\x2c\x1d\xf7\x07\xdc\xcc\x46\xae\x0d\x22\x2b\x89\x71\x69\xc9\x20\x2b\x39\x51\xdb\x2f\xe5\x37\x7c\x69\x1c\xbd\x36\xa3\x58\x53\x00\xf4\x95\x95\xa9\x0a\x69\xc7\x15\xc2\xaa\x4c\x6b\xe0\x52\xe1\xd4\xcf\x69\x9d\xee\x73\x6e\xee\xc3\x26\xbd\xb1\x63\x29\x50\x9a\x38\x0b\xae\xcc\x20\x79\x92\xe9\xa6\x99\x9b\x0c\xaf\x70\x83\x0b\x03\xf8\xc7\x36\x4b\x7c\xb6\x17\x17\x97\x76\x93\xc9\x10\x61\x2d\x7a\x72\x18\xa5\x79\xb3\x02\xb9\x0c\x94\xc9\xf9\x29\x61\xbc\x10\xd2\x9d\x0c\xbc\x72\xdd\x3b\x6a\x10\xe7\x4d\xdd\xa6\xc7\x24\x0f\x53\x58\x62\xd7\xa1\x7c\x7a\x2a\xf0\xbb\xee\x5a\xa0\x5e\xf2\x0d\x2c\x5e\x6c\xd4\x37\xd4\x0c\xb7\xe3\x91\xdb\x56\x03\x45\xa0\x36\x72\x4f\x21\x1c\x6e\xb3\xb3\xe7\x4e\xa5\xa2\xea\xff\x40\x31\x3d\x9b\xe2\x57\x14\x9f\xcf\x15\x78\x47\x26\x16\x84\x41\x65\xa6\x64\x2a\x6f\x00\xdb\x71\x57\xcf\x9b\xbf\xaf\x78\x56\x7f\x8e\x0b\xc7\x1e\xd8\x3a\xa5\x54\x0d\x21\xf6\x61\x94\xfb\xa4\x39\x4a\x4f\x1a\xcd\x8c\x5d\x24\xce\x21\x52\x46\x74\x2f\x70\x4e\x6f\x05\x9a\x59\x7f\x03\x8f\x14\x43\x05\x77\x26\x2a\xa0\x3b\x53\xbe\x90\x8d\xe9\x64\xeb\x67\x3d\x5c\x7e\x71\xd1\x0d\x16\xb7\x7e\xed\x25\xae\x09\xdf\x0e\x50\x67\x56\x53\x56\x6f\x4c\x54\xf5\x64\x63\xd2\xfa\x27\xff\xd4\x35\xb3\xcb\x97\x26\xc3\x3a\xe4\xcd\x9d\xa4\xd3\x41\x61\x62\xfe\xdd\x5a\xb1\xf0\xc0\x8b\xae\x84\xaa\x28\xd3\xd1\xff\x12\x19\x4c\xff\x3a\x9d\x36\xc1\x93\xf4\xd8\xa4\x34\xa7\x1c\xbb\x60\x0c\xb0\x60\x40\x31\x43\x91\xc2\xda\x53\x54\x41\x81\xed\xf8\x2e\x5e\x14\x5e\xf4\xfb\x74\x7b\x42\xd5\x52\x5e\x04\xca\x4e\xcc\x5d\xe2\x4a\xb1\xe5\x2d\xa9\x4a\xca\x7e\x4d\x5d\x2b\x53\x8e\x27\x95\xf8\xc2\xee\x8e\x32\x99\x8f\x80\xfe\x11\xc9\xef\x7d\xbc\x5b\x91\x89\x6a\x10\x96\x6c\xc7\xb6\x6f\x42\x8d\xac\x81\x67\x94\x01\x99\x86\x1c\xd9\xae\xda\x84\xca\x6e\x58\xd8\x77\xe8\xae\xb0\x62\x0e\x53\xdd\xc5\x59\x9b\x7d\x12\x1c\x7f\x4b\x0d\x17\x0d\xd2\xbc\x88\x62\xfb\x08\x5d\x19\x5e\x3f\x3a\xd3\xb8\xe5\x37\x60\x46\x39\xff\xa4\xef\xe3\xff\xa0\xc2\x68\x65\x6c\x1e\x31\xf9\x14\xcf\x98\xbf\xaa\x56\xe4\x7f\xe5\x95\xf6\xc8\x66\x76\x46\xd5\xa4\xb0\xce\x84\x63\xa2\x7c\x5b\x38\xfe\x99\xea\xca\xa6\x23\x4b\x54\x95\x9c\x6e\xb2\x6e\xd7\xa4\x22\xe2\x55\xe7\x64\x2e\xdd\xf9\x8a\x4d\x60\x16\x5d\xea\xa3\xb2\x1a\x9f\xc2\xf4\xa2\x3c\x8c\xd3\x7c\x9c\x31\x57\x0c\x80\x60\x3f\x0f\x7c\x0f\xfa\xac\x16\xd6\x77\x96\x77\xd9\x44\xd9\x1a\x6b\x4c\xc3\xd6\x7d\x2f\xf0\x69\xed\xf7\x14\x16\xaa\x9f\x99\xf5\x59\xe5\x85\xb9\xea\x2e\xd1\x13\xad\x26\x86\xd6\x07\x7e\xc8\xf3\xe7\x6a\x1b\x84\x29\x75\x3c\x73\x10\x02\x0a\x97\x81\x2b\x16\x7e\x65\x06\x18\x2e\xec\xb9\xed\xae\x0f\x96\xa4\x5d\x86\xe9\x22\xc0\x7c\x4f\x05\x9b\xef\x05\xcf\x68\x76\xd5\x11\x9c\xc3\xac\x07\xa3\xbe\x81\xd7\x29\x45\x69\x8f\x4c\x7d\x03\xb6\x9e\xff\x43\xe5\xc4\x61\x8f\x81\xe1\x78\x6c\x47\x27\xd5\x11\x7e\x8d\xd6\xf7\xe0\xe6\x9b\xaa\x0e\x7e\x56\xf1\x4f\x64\x76\x34\xee\xc6\x51\x68\xf8\x25\xb2\x58\x7f\xe0\x1b\xe8\xdf\x75\x5d\xd7\x3c\x2a\xad\xc4\x8c\x6f\x73\xdf\xa2\x78\xcf\x69\x13\x3a\x62\xd3\x77\xd5\x33\x4d\xec\x5a\x98\x0e\x2d\x16\xd6\x0b\x6c\x84\xff\x52\xb5\x03\xfe\x72\xf2\x68\x54\x46\x24\xcb\xff\x45\x7b\xf4\x69\x32\x06\x98\x4e\x65\x62\x4e\x98\x47\x96\xb9\x85\x1f\xe3\xa9\x1c\x58\xa9\xa7\x3a\xf4\x98\x60\xd3\x7e\x42\xab\x1b\x1f\x61\xaa\x39\x3c\xa4\x9d\x14\x91\xc1\x6f\x7e\xba\xd3\xfa\xa2\xd7\xc0\x42\x56\x8a\xfb\xb9\xa4\x95\xf1\x76\x4e\xcb\x9b\xc3\x46\x7f\x8c\xb0\x67\x28\x12\x3c\xde\x51\x8c\x69\x1b\x74\x23\xb0\x51\xdb\x20\xb0\x00\x27\x3c\x4b\xce\x44\x92\x9b\xd6\xaf\x7f\x5e\x34\x86\xd9\x8e\x22\x59\xfc\x9b\x53\x4f\xd5\xb9\x93\x82\x3f\x04\x09\xbb\xa8\x36\x88\xc6\xca\x16\x0c\x5b\xbb\xdc\xee\x9f\xfc\x53\xc5\xd0\x20\x82\x57\x0f\x90\x0d\x2b\xb6\x43\x06\x46\xfc\x4f\xbf\x3a\x55\x22\x3c\x08\xcc\x66\x7c\x89\x0c\xba\x3b\x52\x5d\x2b\xbf\x0f\x9e\x86\x32\x5f\x97\x60\x98\xcc\x70\x84\x29\xfc\xbd\xf4\x03\xa2\x93\x51\xaf\x3b\xb4\x7b\x44\x6d\x96\x9b\xa4\x50\xe2\xf0\xa7\x94\x04\xfa\xa9\x89\xa0\x32\xbb\xe3\xcc\x9a\x71\x98\x19\x22\x6a\xf7\x92\x9b\xb4\x15\x44\x7e\xb3\x09\x30\x36\xb0\x96\x0b\x69\x8e\x1b\x46\x66\xb0\x8e\x5e\xaa\xaa\x58\xfc\x9d\x82\x78\x8a\x9c\xa0\xad\xc3\x30\xdd\x47\x00\x01\xd3\xce\xf4\x88\x0c\xfe\xc4\xf2\x13\x24\x68\x53\x5f\x6d\x90\xe6\xa3\xa8\x30\x71\xcb\x7b\xf9\x0b\xaa\xef\x71\x41\xd9\xa6\x55\x5b\xa4\x8f\xa9\x69\x76\xe4\xa3\xc8\x10\x1f\x20\xdc\x73\x28\x43\xf7\x52\xc1\x30\x09\x48\xd5\x9d\x0a\x9f\x37\x5d\x1a\x4a\xc7\xb3\x1d\x2f\xe0\x70\x41\x71\x3c\x9c\x06\x30\x49\x02\x66\xba\x33\x37\x8b\xec\x8b\x68\x8d\xca\x87\xcc\x48\xae\x14\xab\x60\x98\x44\xdb\x63\x73\x32\x52\x66\xc4\x99\x25\x21\x29\x37\xea\xc2\x83\xa9\x15\x06\x31\xdd\x13\x92\x78\xb9\x34\x8a\x36\x2b\x20\x79\x0a\x33\xfb\x08\x45\x17\x30\xd5\x27\x35\xdb\x62\x6b\xea\xeb\x31\x99\x5d\x66\xc2\x44\x20\xb6\x4e\x2b\xbd\x85\xd3\x8a\xf1\x38\x1f\xd9\x30\x32\x31\xf5\x20\xca\xa7\xa6\x5a\x17\x8a\xfd\x6d\xef\x5e\x89\x91\x11\xf8\x49\xc0\xac\xa7\x1c\xc2\x95\x2c\x35\x54\x91\x2d\x5f\x8b\xf4\xae\x55\x1f\x5b\x25\x77\x85\x2d\x4c\x32\x86\xa7\xc3\x93\xe0\xc5\xe5\xbc\xb0\x7b\xb4\x77\xdd\x44\xe3\x30\x2d\xd2\x6c\xd6\x77\x1e\x0f\x23\x06\xd6\x73\x49\x08\xde\xf1\x80\x44\xf5\x5f\x81\xf6\xc7\x49\xcf\xac\xc3\x83\x57\x74\xb7\xf9\xa4\x69\xd6\x21\xb3\x84\xd5\x99\x51\xe2\xa8\x1b\xb8\x54\x40\xc8\xc0\xd2\x23\xa1\xbb\xaa\xb2\x10\x71\x2f\xe3\x88\x70\x59\x27\x55\x7e\xd1\x38\xf0\xf1\x59\x06\xee\xb4\x7c\x6b\xe1\x1b\x15\xac\x4e\xc3\x20\xde\x5a\x54\x90\xd2\x80\x92\x41\x42\x14\x2b\x40\xbd\x27\xdc\xd3\xeb\x45\xcb\x91\xcc\xa0\xc3\x70\xb0\xaa\x8a\x08\x1d\x29\x7a\x9b\xf3\x93\x67\xd4\x5c\x7c\x36\xca\xa2\x9c\x2c\xa3\xeb\x54\xde\xa0\xa2\xa0\x60\x45\xcb\x9b\x64\xa4\x98\x57\xb3\x35\xc9\x32\x61\xbc\x0f\x0a\x90\x19\x2a\xa5\x30\xe1\x78\x47\x48\x66\x66\xa7\x0d\x0f\xbe\x9f\x99\xe5\xa2\x2a\x51\xc2\x12\x60\x7c\x32\x7d\xd6\xcf\x2b\xe7\x85\xe9\xc6\x18\xda\xc4\xf6\x42\x2e\xf4\xed\x89\x0f\x24\x6e\x29\x8d\xe2\xba\x80\xe7\x73\xed\x22\xed\xdb\x62\x60\xb3\xd9\xd2\xb5\x20\x8c\xe7\x5d\xe0\xa4\x28\xf7\xcd\xc9\x6c\xb7\x12\xb1\xb9\xe2\x9e\x70\x98\xa5\x63\xc0\x59\x95\x6b\x9b\xf1\x3a\x65\x97\xdd\x4a\x36\xbd\x61\x54\xe0\x45\xa0\x0a\xc2\x79\x12\x72\x09\x70\x9e\xa1\x74\x7a\xbc\x82\xec\x5d\x4e\xb3\x21\x93\x39\xbc\xc0\x8b\xf6\xc3\x89\xef\x35\x6d\xa3\x0f\x0a\x47\x98\xbc\x07\x34\x97\x62\x4f\xad\xfc\xfb\xff\x7f\xf0\xc8\x03\x31\x0a\x47\x42\x61\xd4\xff\xd8\x46\x05\x19\xb9\xf1\x29\xcd\x83\xb7\x01\x3b\x23\x9a\xb1\x7e\xba\x80\xaa\x89\x1c\xbe\x2c\x6a\x29\x41\xa7\x2b\x58\x5b\xe9\x9f\xfb\x5c\xdb\x1e\x0a\x63\x13\x0d\x39\x9a\x56\x52\x5e\x9e\x13\xb2\x4e\x61\xf2\x42\x19\xb9\xe7\x69\x92\x58\x96\xd4\x73\xd8\x89\x45\x8f\x7e\xa8\x57\x23\x97\xda\xc3\x30\x34\x6b\x2d\xd5\x59\x3f\xcd\x19\xab\x38\x9b\xa6\x0f\xc5\xa9\x29\x06\x68\xae\x88\xbc\x88\x9f\x83\xf8\x0e\x3d\x34\x04\x3f\x1f\x22\x90\x92\x08\x4b\x7a\x5f\xc9\xf3\xc3\xe7\x69\x23\x3b\xd4\x45\xf9\xfb\xc2\x3b\xe9\xc7\xe7\xf2\x94\x46\x08\xd0\x1d\xb8\x0a\x7f\xcb\xaa\x12\x8a\xa8\xfc\x88\x86\x69\xfe\x47\x2d\x71\x7b\x92\x9c\x1a\x8c\xe8\x09\xb8\x4a\xbc\xd8\x87\x13\xbf\x43\x2f\x05\x8a\x14\x89\xbb\xa9\x4e\x60\xba\x5c\x0b\xcc\xeb\xa0\x75\x21\xee\x52\x1a\x06\x98\xc5\xcc\x54\x53\xaf\x7f\x2b\x20\xc3\xeb\x4a\xa7\xf3\x42\x11\x87\x5e\x9d\x34\x26\xe9\xd9\x31\x85\xed\x44\x4b\x89\xad\x0b\x2d\xae\xd4\x58\xf5\x78\xb9\x87\x9d\x0c\xd3\x55\x9b\x3f\x5a\x3e\x03\xcc\x18\xed\xee\xa8\xb2\xe8\x2d\xdc\x04\x88\xcc\xdf\x0f\x14\xab\xf9\xfb\x13\x45\x96\x04\x20\x95\xcc\x05\xa9\x06\x2b\xee\x14\x7d\x83\x13\x5a\xfd\xe0\x6a\x03\x2e\x2c\x1e\x87\x51\xda\x52\xb2\x2a\x1c\x42\xf2\x49\x43\x26\xdd\x66\x50\xd7\x8c\x62\x7a\x43\xe3\x9a\xb9\x35\xe9\x5a\xb8\x10\xa0\x98\xa1\x4a\x0b\x64\xbb\xeb\x84\x42\xc1\xc5\xfd\x16\x25\xba\xa2\xbe\x59\x7e\x0a\xaf\xb4\x35\x55\x9d\x8f\xdf\xc2\xc3\xe6\xfa\xba\x2b\xb6\x15\x6b\xbe\xd4\xff\x02\x1b\x35\xa8\xb0\xf1\x71\x25\x8c\xcd\xcc\x08\xed\x51\x45\x77\x22\x72\xd7\x6f\xd2\x3b\xe2\x63\xf2\x63\x12\x70\x7b\xb6\xc5\xfe\x78\x3d\xd7\xe1\xac\x66\xc3\x38\x15\x48\x05\x34\xa1\xe9\x30\x93\x45\x4c\x06\x8a\x2b\x79\x40\xd6\x55\x2b\x71\x60\xa9\x5f\x57\x2d\xed\x3c\x1e\xf7\xfb\x51\x3e\x80\xbf\xf3\x2d\xf0\xc3\x4a\x97\xf0\x70\x13\x9c\xa8\x6b\xe3\x74\x8d\x6a\xe2\x88\x70\xd1\x02\x13\x21\x43\x85\x20\xb9\xac\xc6\x26\x5f\x57\xa4\x07\x7f\xac\x82\x88\x22\x33\xa1\x05\xac\x13\x26\x1a\x2f\x85\x8f\x6b\x8b\xa7\x0c\x17\xcd\x5a\x32\xab\x14\xbe\x8f\x4f\xfc\xac\x09\x9a\x34\x22\xba\xee\xdf\xee\x4c\x8d\xd2\x7a\xe1\x40\xbb\x30\x63\x2d\xc4\x7c\x53\x69\xc2\xdd\xd4\x1b\x6c\xdc\x8d\x2d\x4f\x8d\xe2\x8d\xfd\x52\xeb\x10\xff\xd2\x7b\x68\x08\x7e\xa2\x81\x84\x6d\x75\x44\x35\x42\x4e\x6a\xea\xe2\xeb\x0d\x50\xe6\xa5\xf6\xd0\xf6\xa2\x90\x9b\xfc\x4b\x5e\xd0\xd0\xad\x81\x4b\x8a\xcf\x60\x68\x12\xd3\xe7\x8d\xef\x86\xd6\xfd\x00\x7b\x85\x2b\xd6\xf6\x2c\xa7\x46\x52\xef\xd0\xb0\xac\x86\x39\x72\xd6\x63\x64\x87\xd2\xc8\x45\xfb\x51\x18\xc8\x30\x4d\xf2\x51\x14\x8e\xd3\x31\xde\x2a\x73\xa4\x23\xd0\x15\xc2\x74\x9d\x2e\x99\x24\xdc\xae\x40\x44\x5c\x43\x46\xb2\xb2\xa5\xd3\x7a\x69\xc9\xc7\xe6\x07\xe7\x96\x36\x40\x7a\xc6\x7f\x1b\xf8\x10\x50\x6b\x1c\x15\x29\x8d\x2d\x6d\x53\x43\x92\xb0\xa5\xd8\x11\x20\xd7\x62\x79\x79\xd5\x40\x3e\x89\x90\x0d\xfe\xba\x3e\x07\xb3\xf4\xe2\xfe\xb6\xef\x34\x38\x09\x0e\xb7\x68\x4e\x2b\x36\xa0\xbc\x48\x13\x6e\x82\x23\xbe\x3a\xad\x06\xfd\x9b\xd8\x82\x87\x51\x38\x80\x83\x53\x8a\x7f\x4b\x8e\xb3\xdf\x47\x08\x03\x33\x4e\xa8\x33\x8f\x52\x82\xc8\x33\x51\x42\x2e\x1a\x4e\x0d\x29\xf2\x9a\xb1\x59\x91\x47\xb1\xb1\x2d\xad\x1b\x4e\x3f\xc2\x27\x6e\x72\xb1\x46\x39\xcb\x6c\xad\x81\x22\xef\xbd\x5b\xf3\xf2\x4b\xfb\x96\xda\x3d\xdb\x1d\x43\xb3\xdd\x15\xd9\x7c\xc1\x2d\x78\x56\xf1\x90\x76\x4d\x96\x99\x3c\x27\x0c\x89\x9f\xb7\x39\x0a\xf7\x29\xb2\x6c\xf4\x3a\x44\xaf\x4d\xcd\xe8\xd4\x5d\xc4\x73\xed\xe1\x38\x0f\xc7\xb1\x01\x44\x4f\x78\xa3\x5b\x8a\xa8\x67\xf3\x43\xd9\xb3\xd8\xce\xc3\x2c\xea\x2a\xbd\xd9\x26\x85\xea\x06\x67\xd4\xb3\xcb\x51\x22\x50\x19\x01\x4b\xa9\xf6\xe5\xeb\xd5\x11\xf8\xf1\x70\x54\x3e\x49\xaa\x09\x60\xad\xce\x74\xc8\x31\x38\xe8\x8a\xc7\x33\x7c\x10\xf8\xe8\xe5\x03\x72\x0c\x48\xe1\xca\x5c\xd4\x6f\x99\x38\x4a\x76\xd1\xb3\x41\xf2\xf0\x7f\xc3\xb5\x68\xc2\x19\x71\xd7\xb4\x97\x84\x54\xb7\xfc\x3a\x07\x67\x2f\x9f\x33\x7f\x5c\xd3\xb9\x1f\xa1\xbd\xc1\x7f\x35\xf1\xb5\x7c\x04\xc6\x78\xf7\xdc\x83\x47\x15\x6b\x57\xc7\x03\xaf\xf2\xc2\xac\xdb\x1e\xa2\x49\x67\x84\xbd\x41\x0e\xbc\x84\x74\x5e\x70\xe6\xa4\x06\xde\x45\x85\xe5\x44\xc5\x21\x36\xc8\xaa\x95\x6e\xb8\xf4\x5a\x22\x48\x89\x14\xe8\x67\x81\x4f\x87\x7e\xd6\x34\xf2\x91\xd8\x7e\x5a\x44\x7e\x54\x84\xc9\x1f\x82\x96\x22\x82\xf0\x39\xf5\x8a\xb5\xa3\x28\xe9\xef\x70\x40\xce\x7f\xf7\x04\xd1\x54\x38\x6f\xee\x49\x52\x4f\xc1\x6e\xc0\x1f\xa0\x8d\x28\xe3\x44\x74\x7d\x32\x74\xa4\xa8\xa5\x05\x91\x82\xaa\xe2\xee\xce\x93\x1a\x83\x54\xda\xae\xd9\xd6\x26\x42\x6b\x6d\xae\x00\x42\x3a\x5c\x3e\xa7\x8e\x07\xec\x7e\xfe\xd7\x17\x67\x14\x47\x06\x27\x41\xb0\x66\x48\x82\x04\x30\xec\xdf\xd8\xb0\xfc\x2d\x34\x28\xb0\x7c\xce\xd0\xe5\xf3\xf1\xc4\x97\x81\x63\x9b\xb6\x3c\xba\xe5\x9c\xe6\x59\x3f\x57\x2b\xd5\x2f\x1c\x68\x23\x21\x99\xf1\x30\x65\x66\xa1\x44\x64\xdb\x42\xca\xc4\xd8\x52\x4d\x8b\x9a\xa6\x2b\xbb\xca\x94\x11\x4b\x86\x05\x74\x1d\x79\xdc\xfc\x42\x55\xd3\x9c\x7b\x64\xf4\x0a\x61\x1a\xee\x2a\xa8\xf9\x96\x8e\x17\xef\xc4\x1c\x11\x0c\xe4\x77\x35\xc5\xd3\xc3\x89\xee\x66\x5f\xa4\x92\xae\x10\x24\x6e\xf6\x00\xcf\xb5\x57\xa3\x7c\x6c\x62\xec\x7c\xd8\xe6\x4b\xaa\xb6\x76\x29\xf8\xf8\xe6\x6e\xeb\x0b\xa4\x5f\xae\xb4\xf2\x21\x39\x21\xa0\xaf\x4f\x78\x62\x64\xa0\x47\xbb\x51\xaf\x57\xe6\x7f\xde\x72\xfd\x5f\xb8\x55\x3e\xf1\xd0\x86\x18\x8a\x7f\x9e\xd2\xe4\xb7\xb0\xc0\x24\xce\xdd\x1c\x60\xec\x9b\x6b\xf7\x6c\x18\x1b\x2f\xc8\xef\x28\x76\x1d\x8b\xd7\x51\xd5\x4a\x2a\x2d\x74\xc4\x20\x3b\x4c\x1c\x1c\xa3\xe7\xcc\xc7\x15\x1f\x6e\xf3\xe2\x13\x2a\xbc\x3d\x17\x28\x90\x05\xf3\xfc\x49\xeb\xb0\xb5\x4f\x1c\xce\x1b\xf4\xc3\xa8\x2b\x1e\x51\x9e\xfc\x2c\xbf\x11\x91\x36\x56\x85\xf9\xf7\x29\x09\x43\xcc\xff\x3d\xc5\x42\xf7\x26\x5c\x05\xde\xc2\x0d\x64\x7d\x30\x6e\x1b\xf4\x42\x5d\x91\x77\x9f\x80\xa8\x98\xfd\x0c\x8e\x7f\x1b\x80\x67\x80\xe0\xfc\x02\xfb\x86\x65\xb5\x02\x1f\x1e\x5c\x05\x54\x5a\xc4\x11\x15\x1c\x78\xcb\xd4\xa3\xb3\xce\x13\x4c\x1f\xe5\xf7\x29\xf0\x50\x02\x1d\x69\x70\xcb\x26\x0b\x07\x51\x61\x43\x31\x87\x8c\xc3\xd6\x7b\x05\x2b\x5a\xe6\x21\x1e\x57\x03\x45\x51\xd2\x7f\xb4\xbc\x3c\x44\x35\x7f\x83\x56\x3b\x6a\x9a\x4f\x4e\xfd\x18\xec\x33\x53\x85\x1c\x78\x17\x45\x3e\x17\xe9\xcf\x8b\xf0\xc1\x3d\x44\x10\xae\x34\x5d\x5e\x37\x16\x29\x33\xf2\x60\xfd\xfd\x58\x4d\x14\xfe\x6a\x3f\x6d\xf9\xbc\xfd\x47\x6a\x19\xfd\x48\xa5\x9d\x79\x91\x86\x2b\x8f\xd3\x25\x38\x92\x92\xf2\x31\x0a\x60\x84\xde\x15\x16\xc1\x1d\x45\xfc\x7c\x57\xe5\x69\x0c\xcb\x13\x3c\x87\xef\xa0\xde\x0f\x7c\xa3\xe4\xe1\xc4\xc7\xb4\x3f\xa4\x65\xc2\x84\x07\xba\x37\x7f\x58\x17\x90\xde\x52\x1d\xe3\xd9\x8e\x62\xef\x78\xaf\x69\x98\xac\x6b\xe3\x62\xcd\xac\x73\x67\x02\x6d\x17\x0e\xe9\xf9\x44\xcd\xd9\x17\xd9\x38\x2f\x30\xc4\xab\x87\x75\x04\x0c\xd1\x52\x74\x0c\xf4\xbb\xf0\xd0\x1f\x43\xc3\x0f\x27\x27\x03\xdd\x03\x79\xaa\xf3\xa8\x80\xe9\xd2\xdd\xf4\x30\x2b\xd2\x3b\xf4\xd6\x7e\xe7\x6f\x51\xa6\x87\x3b\xbd\xaf\xbc\xfd\x45\xad\xfb\x01\xe1\x4a\x18\xf8\x6d\x53\x9f\xb9\x81\x21\x4e\x7a\x1b\xf4\x98\xd4\x4f\x48\xc7\xef\x3e\x77\xb0\x44\xf6\x80\xae\x5e\xd8\xed\xcb\x37\x46\xef\xb8\xf3\xc9\x8e\xe3\x96\x8a\xba\xeb\x26\x91\x21\x35\xbc\xaa\xdb\xb8\x69\x74\xb2\x4f\x4c\x2a\x33\x1a\x7e\x24\x2f\x4f\x87\x76\x6d\x60\x8a\x6d\xe5\xa2\x80\x5b\x07\x77\x30\xb6\x3f\x0a\x6d\xd8\xb2\x87\x69\x1d\x20\x47\x7a\x13\xd7\xce\xff\xd1\x38\xfc\x9c\x59\x48\xbb\x22\x3e\x17\x50\x9c\x02\xc8\x35\x0d\x43\x45\xb9\x1e\x33\x95\x71\x91\xf2\x1a\xf8\xb8\xe6\x05\xff\x2e\xb1\x78\xc5\xf6\x90\x62\xf0\x3a\xac\xaa\x6b\x87\x9b\x0a\xe4\x79\xa8\x0c\xb4\x94\xfc\x5a\x4e\xa1\xed\xbc\x1b\xcf\x1d\x65\x51\x28\x3c\x9a\x12\xbd\xa8\xac\x18\xe5\x35\x24\x83\xdb\x3b\x8a\xfa\xf3\x8d\x46\x8a\xb7\xdc\x24\x51\x61\xb2\x75\x35\xb0\x7d\xb6\xd2\x2c\x97\x3a\x5c\x6e\xc5\x54\x71\x87\x51\x45\x5d\xba\xd5\x75\xb9\xca\xec\x11\x0f\x79\x76\x8d\xcb\x4d\x13\x35\x9d\xb7\x65\xea\x47\x89\xef\x23\xc9\x84\x15\x3b\xa6\x49\x82\xf1\x14\x10\x2e\x7e\x2b\x50\x09\xf2\x2d\xd5\xf3\x4e\x47\xc0\x7b\xa7\x09\x2f\x38\xfc\xfd\xb1\x49\x95\xc2\xda\x63\x85\x1a\xba\x89\x4b\xed\x5e\x94\xd9\x90\xe6\x3f\xbc\xdb\xbe\xa9\x47\x89\x6e\xa2\x4c\xc3\x37\xf7\xca\x2b\x9f\x50\xe4\x0e\xb7\x08\x79\x83\x10\xec\x2f\xe0\x07\x85\x5f\xda\x57\xf3\xbe\x4e\x0b\x99\xdd\x8a\x9e\x78\xba\x32\x29\xb3\x33\xc4\x7a\xb8\x63\x89\xa3\x15\x17\xe3\x1f\x00\x84\x88\xa8\xf4\x71\x14\x99\xf1\xf1\x07\x81\x6f\xaa\xde\x01\xf0\x12\x15\xc3\xd7\x27\x9e\x4a\x63\x67\x47\x49\x2e\x5f\x0a\x5a\x5f\xd8\xcf\x71\xd1\x31\x6c\x45\x74\x7a\x1e\xd0\x76\x06\x3a\xe4\x16\xa2\x5d\x5c\xd6\x4d\x6a\xc3\x0b\x53\x06\x1e\x33\xea\x9d\x27\xe0\x85\xe1\x50\x5e\x27\x1b\x8c\x8f\xd4\x93\xc5\xc5\xc5\xf6\xd0\x0e\xe5\x11\x3b\x66\x70\x37\x9b\x7b\xad\x59\x86\x7e\x44\x94\x78\x1f\x89\xa7\x79\x4a\xf5\xeb\xbe\x34\x8e\x32\xdb\x7b\xa4\xbc\x6d\x37\x3d\xed\x07\x01\xdf\xa2\xbb\x43\x39\x62\x16\xcf\x83\xb9\xaf\x27\x7e\x1e\xf6\x3d\x72\x96\x3c\xa0\x8b\x30\xf2\xc3\xe0\x69\xd5\x93\x2a\x0a\x9b\x2d\x1b\x14\x91\x84\xa5\xa2\xa5\x46\xf1\x3f\xd3\x40\xa1\x30\xb0\x26\x2b\xd6\x4c\x36\x8c\x92\x3e\x93\xc0\x3b\xe5\x51\x97\x61\x5d\x6e\x08\x3d\x97\x4d\x1c\x0b\xf8\xc5\x71\xf2\xaa\xa9\xc5\x86\x44\x15\x44\xac\xf1\x36\x5a\x9e\x58\x3b\xa7\x35\x19\xfc\x65\xa5\x1b\xf6\x64\xc7\x07\xd1\xdf\xc3\x62\x47\x1a\xba\x6d\xfa\x8c\x66\x53\x90\x39\x11\x9f\x17\x5d\xa6\xc5\xec\x19\x07\xfe\x53\xcf\x66\x82\x40\xb9\x42\x31\x2b\x2c\x6a\xbe\xc0\x66\x92\x7c\xcd\x66\xb3\x0a\x2f\x7f\x4e\x8f\x8e\x9d\xd0\xf4\xcb\xcc\x82\x22\x89\xa2\xcf\x4f\x6c\xd2\xdb\xa5\xea\x53\x9c\x38\x20\x9c\xda\x4a\x78\x0a\x19\x2f\xf5\xc4\x21\x8c\xf0\x67\x01\xdf\xc0\x8f\x96\x3f\x36\xf5\xa3\x8a\x8c\x50\xc4\xb2\x39\x4d\xb7\x2a\x8a\x86\x6a\xbe\xf3\x2c\xae\x58\xa0\x92\x4d\x1a\xa6\x8e\xb0\x0e\x3e\xf6\x1c\xfd\x1e\x1f\x57\xc8\x55\xbf\x34\x76\x2c\x75\x78\x58\xaf\x60\x27\xf3\x49\x13\xf5\x4b\x77\x1c\xc5\x3d\x26\xb9\x78\xc1\x0d\x7c\x7b\xe4\xe3\x2e\x25\x27\x03\xed\xc2\x8d\x2b\x9a\x77\x25\xcd\x72\x28\xc2\x48\x13\x8b\x0c\x0c\x9f\xd4\x1c\xdb\xc1\xb9\x25\x1a\x01\x5a\x6f\x11\xd2\x11\x43\xac\x68\x0d\xf0\x71\x2d\x80\xfa\xb5\x97\x64\x00\x5e\x29\xa1\x9f\xa7\x90\x43\x9a\x60\xe2\x61\x8a\x70\x38\xa2\x52\xb6\x10\x67\xb4\x1c\x77\x2a\x77\x7d\x64\xa8\xc2\x6f\xc5\x74\x79\x39\x0a\x23\x13\xe7\x8f\xd3\x03\x40\x5a\xf8\x1d\x14\x93\xb0\xa3\x3e\x50\xea\x7a\xd7\x29\x5c\x90\xa1\x0b\x35\x1f\xbd\x41\x36\x0b\x66\x99\x79\x80\x55\x0e\x23\xb9\xe7\x9f\x23\xdd\xc7\xee\xb8\x8e\xd5\x89\xcd\x85\xf1\x62\x94\xe0\x37\x94\x82\xc0\x1d\xd5\x55\xdc\xda\x51\x02\x06\x1b\xb5\xc9\xa6\xbd\x7b\xdb\x69\x62\x67\x55\xe5\xf2\x22\x45\xe9\x2e\xb5\x29\xa3\x74\xa7\xea\xe9\x24\x97\x9a\xe1\x87\x49\x5a\x44\x21\x57\x93\xd9\x45\x07\xa5\x7f\x11\x77\xbd\x79\x99\xd2\x5b\x32\x05\xf8\x37\x60\x35\x4f\x06\xde\x82\x9e\x6c\x32\xe3\x7d\x9b\x64\xd5\xb1\x31\x8e\x0a\xf9\xe4\x23\xa5\x84\x47\x59\xba\x1a\xf5\xd3\x59\x55\x15\xbf\xcb\x31\x2f\x20\x59\xdf\x9f\x28\x3a\x64\x90\xb7\xca\xfc\x89\x82\xa7\x8d\xc1\xca\x0c\x6f\x76\x2a\xf0\xbd\xfe\x53\x7a\xe4\x3a\x36\xeb\xf9\x76\xcd\x24\x87\xa9\xa7\x2b\x48\x3f\x10\x7b\xa0\x41\xe8\x14\x39\xf6\x48\x4c\x72\x5b\x36\x8c\x52\xc2\x22\x11\xe1\x7d\x7e\x6c\x46\x1b\x98\x26\x4e\xc8\x34\x61\x5b\x8f\xbb\xf9\xd3\x89\x77\x19\x7f\x1a\x3c\x5d\x69\xff\x52\x5e\xd7\xf2\x13\x46\x57\x14\x29\xff\x15\xb5\xe6\xc3\x34\x59\xb5\x59\x61\xa1\x27\x81\x2a\x29\xaa\x74\xb2\xb2\x3d\x30\xfb\x0a\x6c\x95\x80\x70\x9e\xd1\xf4\x56\x69\x3c\x26\x90\x20\xed\x1c\x7c\xcd\x9f\xab\xa0\x0e\x44\x31\x42\xdb\xa7\x38\xa8\xee\x06\xcf\x2a\xb8\x4a\x12\x46\x71\xa4\x86\x66\x91\xaf\x82\x4e\x9e\x8f\x6b\x4b\x74\x7e\x9e\xa8\x67\x5d\x5f\x0f\xd7\xfd\x36\xfd\xb8\x50\xb6\x96\x3f\x2e\x62\x1f\x9e\xaf\xd6\x24\x2e\x46\x46\xa0\x8f\x60\x95\x8f\x5d\xef\x23\xb6\xfd\x28\x2f\xa3\xf6\xd9\xf2\xd1\x23\x13\x43\xbd\x46\x53\x2b\xc1\x63\xfc\xe1\xc4\x37\x7e\xef\x29\xd1\xb3\xd0\xe4\x70\xf0\x22\x26\xd2\x52\xfa\x2b\x1f\x53\x0c\x96\xfd\xcc\xf6\xc1\x79\x48\x16\x81\xbb\x12\x14\x0d\x4a\x87\xc2\x17\xc0\x49\x71\xa2\x3b\x26\x4d\x54\x5a\x17\x78\xd8\xa7\xe8\x5d\xf3\xb1\x1a\x6b\x06\xc5\x81\xd2\xa9\xfb\x91\x2e\x76\x6a\xed\x8e\x23\x2e\x52\xef\x9b\x18\x33\xb0\x2e\xd3\xf6\xd3\x60\x87\x27\x7e\x1d\x2d\x93\x2a\x68\x34\xce\x49\xbc\x00\x46\xf7\x3a\x6d\x05\x3e\x56\x45\xd1\x70\x60\x46\x85\x10\x20\x0b\x0d\x8b\x1f\x3e\x7c\x03\x51\xaa\x84\xaf\x4f\x28\x5d\x67\x53\x0c\xf2\x19\xfd\x8e\x54\xe1\x0a\x2d\x1d\x84\x21\x37\x6a\xbe\xf3\xc0\x8b\xed\x9c\x58\x3f\x0f\xce\xb1\x61\x78\x97\x6e\x9e\x8f\x27\x9e\x72\x20\x4c\x87\x6e\x59\xb0\x0c\xb7\x1a\x95\xab\x4b\x72\x1f\x78\x91\x06\x16\x4d\x58\x90\xbf\x41\x1c\x00\x28\xa5\x23\x76\x74\xed\xee\x3b\x35\xe3\xb7\x6f\x8e\x20\x8e\x31\xaf\x78\xe1\xfe\x2a\x1f\x87\x70\x82\x3d\xcb\x7f\x3a\x58\x1f\xd9\x2c\x4a\x96\x63\xaf\x18\x2a\x59\xa3\xca\x20\x6b\x41\xdf\xfc\x3c\xea\xa8\x48\x54\xe1\xd5\x0a\xba\x79\x3e\x56\x71\x43\x6c\xcb\x68\x34\xdf\xe6\xfb\x51\xef\x4d\x2a\x32\xcb\xad\xf9\x85\x0d\x26\x5d\x11\x4a\x3d\xbf\xb9\x8e\x4d\x76\xb9\xcd\xbc\xf6\x7c\xab\x62\x45\xe6\x17\xe4\xb8\x29\x61\x4d\x4c\x31\xce\x98\x3c\x9b\x67\x9d\x27\x8a\xbe\xeb\x5b\x81\x12\x35\x2b\x9d\xb4\x74\x22\x45\x5b\xc7\x37\xc2\x2f\xd5\xd4\xd7\xf7\xee\x6d\x2f\x47\x85\xba\x1a\x4c\x73\xc8\x2c\xff\x6e\x65\x0b\x33\x3b\x5b\xbe\x37\x29\x23\x50\x60\xa2\x0b\xae\x02\x46\x54\xd2\x0b\xb5\x16\x2c\xa5\x18\x26\xcb\x6d\xc2\x68\x44\x44\x1d\x37\x03\x1f\x81\xdc\x54\x1b\x67\xc5\xae\x27\x36\x27\x7e\x14\xd7\x32\xf9\xa9\x2a\xbb\xfc\xb4\x86\x5c\xdc\xbb\xb7\xdd\x8b\x4c\x3f\x49\xf3\x22\x0a\xf3\x8a\xd4\xec\x29\x3d\x8c\x70\xaa\x82\x27\x7d\xcd\xc6\x6a\x6e\xf2\x7c\x45\x42\x33\xf8\x54\xb5\xe0\xfc\xd2\xbe\x39\x71\xb0\x8f\x97\x9e\x1e\xe9\xe6\x8f\x02\xbf\x28\x31\xb2\x8f\x46\xd5\x9d\x89\xe2\xe3\xfd\x85\xe6\x3d\xf9\x45\xa0\xa0\xae\xdf\x9f\xe8\x41\x42\xdd\xfd\x44\x29\x0f\xd8\x73\x70\xb5\x08\x9d\x8c\x62\xfd\x39\x8f\x08\x1a\x0d\xb5\xe3\x15\x59\x14\xaa\x95\x4a\x98\xd3\x10\x5c\xac\x9a\x90\x40\xbd\x7b\xf7\x3a\x5e\x81\xf2\xea\xf9\x58\x01\x3d\x42\x9b\x14\x99\x89\xb7\xab\xb8\xe9\x43\xce\x4d\x11\x33\xb0\xb0\x04\xe2\xbc\x5b\xaa\x19\x7c\x5d\xa9\x50\x73\x61\x0a\x96\xf4\x4a\xb0\x69\x74\x6a\xe9\xc5\xfd\xed\x7d\x73\x33\x7e\xb4\x8c\xc9\x96\x90\x2c\xfe\x40\xf1\x71\x9d\xfb\x48\xf9\xe6\x6e\x94\xe6\xe9\x38\x0b\x79\x00\xd4\xc1\xda\xfc\xf8\x4f\x7d\x2a\x64\xe1\x00\x0d\x0b\xc2\xad\x60\xeb\xde\x50\x38\xc6\x1b\x0d\x24\xd4\x2f\x97\x16\xb7\x37\xe3\x7b\x3e\x2c\x8b\x0e\xcf\x8d\xd2\x19\x22\xdb\xfb\x8a\xf9\x82\x88\x8c\x07\x29\x31\x22\x7a\x27\xf9\xd7\xf4\xb0\xf8\x58\x91\x42\x51\xfc\x06\xb5\x92\x59\x35\x74\xf8\x6f\x50\x91\xe4\x7c\x49\x97\xa4\xee\xc2\x03\xc9\xd4\xe8\xe6\x34\xe6\xb9\x76\x37\x4b\x4d\x8f\xfc\xad\xba\x58\x34\xee\xf9\x58\x0b\x0d\xd8\x6c\x35\x8d\x32\xae\xf3\x38\x25\xcf\xf2\xe7\x50\xf4\x41\xc9\x15\x77\x79\xd5\x5b\xa1\xd8\x9a\x9e\x4f\xbd\x99\xce\x2d\xf0\xea\x18\x17\x6b\x33\xc5\x8e\xa2\x20\x5d\x1b\xd8\x0c\x9a\x8f\xd2\x32\xd7\xfd\x73\x3d\xdf\xb2\x6a\xb3\x32\x27\x23\x53\xb7\xf1\x80\xfe\x6c\xe3\x41\xed\x45\xed\x59\x6c\x2f\xa7\xe3\x04\x20\x8e\x8a\xf4\x29\x9f\x94\x49\x11\x5b\x81\xff\xfa\x1f\xce\xe8\xb6\x74\x69\x95\x51\xb5\xe1\xde\xa9\x04\xbd\x4f\x2b\x29\x92\xa4\xb0\xa2\x38\x29\xa8\xa9\xd3\x6a\x72\xb8\x3e\x1a\x49\x16\xd0\x0e\x47\x51\xc6\x0b\xb4\xa9\xca\xe2\xa3\x18\x13\x86\xe3\xa1\xa8\xc4\x79\x8d\xe0\x0b\x58\x02\x7c\xa2\xfe\x7e\x60\x87\x69\x96\x0d\x4c\x5f\xa2\x1e\xf4\x65\x6e\x92\xd1\xe4\x63\x15\x7a\x0d\xd2\x91\xe5\xb2\xa1\x23\xd9\x74\x12\xca\xa7\x60\xe3\x85\x8f\xa1\xe5\x69\xc9\x28\x89\x73\x0c\x0e\xe5\x5d\xc8\x90\xa0\x9e\x18\xac\xb0\x8f\x67\xab\x36\xaf\xcc\x1c\x5c\xd0\x33\x07\x17\xfc\x60\x26\x88\x27\x1f\x2b\x2f\x03\xc6\xed\x93\x1d\x0f\x7c\xff\xaf\xfe\x36\xa6\x43\xa8\xce\x78\xe7\x63\x1d\x35\x4a\xb9\x63\xea\x00\x7a\x37\x7e\x65\xaa\x78\x8c\x18\xd2\xca\x3a\xde\x93\x9a\x7b\x86\xc1\xda\x45\x15\x0c\xcc\x5b\x9c\x9d\xa8\x5c\xeb\xfa\x44\x41\x37\xef\xd7\x4c\xe8\x9e\xc5\xb6\x49\xc2\x41\x9a\xb5\x3c\xde\xfd\xde\x44\x5d\xd7\x3d\x85\x28\xea\xa6\x6b\x31\xd7\x10\x44\x14\xf0\x2e\xa1\x21\x45\x19\xc1\x4b\x75\x83\xae\x45\xfa\x87\x8d\x74\x7f\xb9\x97\x0e\x44\x60\xf5\x65\x85\x00\xfb\x72\x13\xae\x2c\x4f\xe3\x55\x8c\x0f\xba\x52\x8d\x22\xff\xda\x6c\x15\xf7\xcd\xb5\x43\x93\x59\xf0\x23\xc2\x7c\x23\xc7\x97\x6a\x93\x27\x5f\xb9\x55\xd1\x91\x2b\xd6\x48\x67\x17\x99\x0e\xa6\xbb\x1c\xc3\x6e\x79\xe7\xe8\x45\x71\xd9\x07\xd9\xe0\x43\x3c\x32\xc0\x35\xaf\xb1\x5f\xc1\xae\x47\x8f\x99\xd5\xa6\x6b\x77\xf5\xd2\xc2\x01\x95\x51\xbb\xa1\x1a\x0f\x6f\x70\x2b\x2b\xb3\xcb\x9e\x89\x56\xb4\x2f\xe9\x12\xf8\xc4\xc5\xf5\xdd\x34\xee\xcd\x6a\xe6\x59\xc5\x0f\x3b\x03\x35\x79\x47\x4e\xe3\x90\x0d\x4f\xd4\xb4\xd0\x17\x17\xdb\x03\xd3\x8d\x0a\x6e\x21\x23\xa3\x39\xa1\xb2\x9b\x13\x0a\x03\xb7\x1c\xe5\xa1\x89\x67\x3d\xd4\xf1\x1c\x1c\x3c\x8f\x03\xab\xb2\x07\x9b\x60\x99\x13\x7e\x4a\x41\x8a\x98\x87\xd5\x03\x18\xae\x4e\xfc\x8b\xf8\xa9\x26\xe5\xf8\x06\x82\x0c\xa6\xde\xa8\x04\x43\x51\x3f\xdf\xd5\x72\xa4\xc8\x0f\x02\xa5\x5d\x74\x16\xbb\x07\x65\x96\x77\x03\xcf\x56\xfc\x06\x3d\x71\x57\x3b\x2f\xbf\x1a\xd7\xf7\x6f\x03\x5f\xc5\x64\xc2\x0e\x06\xd8\xe2\xf6\x44\x15\x54\xa9\x2a\x5c\x9b\x78\x00\xfe\x1d\xd7\x8c\x19\x58\x1b\xf3\x83\xd4\x0c\xb3\x82\x02\xf1\x4d\xf5\x38\x4a\xec\x90\x19\xf5\xb4\x20\xa7\xd7\xe0\xac\xcd\x57\x86\x03\xc3\xe2\x4f\x30\x7c\x28\x2c\xf1\xb1\x82\x72\x74\xa3\x95\x28\x81\xfe\x93\x93\x66\x2b\xaf\x5b\xa4\xea\xe8\xe1\x48\x95\xb6\x36\x15\xbe\xd8\xde\xbb\x77\xbb\x57\xaf\x43\xcd\xdb\x89\xad\x38\x09\xeb\xeb\xc0\x2a\xbb\x21\x93\xbd\x7b\xdd\x49\xe0\x65\xc6\xff\x4a\x31\x38\x11\x61\xf0\xa3\xde\x15\x33\x05\x04\x57\x75\x02\xcd\x9c\xaf\x13\x2f\xba\x74\x18\xc2\x7b\x2a\xfc\x3c\xce\x9b\x0f\xf8\xa6\x13\x94\x9c\x20\x48\xbd\xa6\xea\xa9\xd7\x1a\x68\x9b\xdb\x71\x14\xda\x24\x17\x44\x43\x93\xf0\xea\x66\xc7\x8f\x41\xa3\x51\x9a\xe7\x36\x77\xea\x4c\xcc\x43\xa5\x2a\x7a\xd7\x14\x05\x7a\x94\x14\x69\x6c\x33\xd3\x8d\x2d\xf6\x3c\x23\x84\x02\x0f\x97\x3d\xe5\x82\x98\x28\x59\xb5\x79\x91\x66\xf9\xf6\xd6\xbe\x39\x6e\x33\x20\x3f\x3f\x5b\xfa\xb0\x8d\x2b\x3a\x7a\x62\xc1\x77\xdc\xe0\xee\xa9\x26\xb4\x79\xb2\xa3\x8c\xb8\x19\x98\xa1\x61\x97\xcf\x13\xfa\xb4\xcd\x64\x5a\xff\x09\x55\xc4\x4a\x4c\xc1\xa3\xbb\x28\xd1\xfc\x1c\x9b\x43\x82\xe1\x96\x93\x73\xbd\x56\x63\x84\x28\x9f\x4d\x12\x85\x26\x33\xfd\x31\xaf\x67\xa9\xec\xeb\x32\x7f\x53\x50\x3f\x4a\x3d\xb9\x01\x36\xe5\x71\xdd\xdd\x3a\x5e\x4b\x03\x0f\xce\xb5\xbb\xe3\xf5\x6d\x2a\xfe\x85\x6e\x8b\x70\xb1\x79\xec\xfb\x55\x85\xf1\x3f\xa3\xa8\x42\x8e\xa8\x5c\x31\x4b\xc3\x15\x8d\x6b\xe5\xf4\x44\x08\x58\x9b\xc8\xdc\x63\xbb\xca\x73\x4e\xae\xd1\xe9\x9b\x9e\x8d\x5a\x33\x6b\x29\x49\x2a\xb5\x94\xc4\xff\x9b\x13\x45\xfc\xf0\xa6\xd2\xec\xe8\x8d\x71\x41\x4b\xbe\x2c\xee\x36\xc5\xf9\x40\x51\x74\x45\x79\x61\x92\x10\xb4\x40\x88\x4c\x30\x6b\x5d\x21\xa5\x67\xe1\xf4\x0a\x65\xcb\xab\xe1\xa8\x12\xdd\x70\x24\xc4\x27\x3a\xa8\x1e\xd9\xd0\xf5\xb8\x11\x46\xbf\xab\xfa\xae\xef\x36\xf0\xed\x2c\xb5\xbb\xe3\x3c\x4a\x6c\x9e\x0f\x6d\x52\xa9\x84\x20\xdc\x17\x27\xb5\x99\xbe\x7f\xef\xde\xfd\xbe\x0a\x46\x8f\x4a\xcd\x52\x07\x3e\x5c\x69\x04\x6e\x8e\x62\x13\x25\x45\xb4\x2c\x6a\xed\xac\xc5\xa5\x28\x19\x35\x1c\x78\x64\x72\x12\x05\xa7\xe7\x8f\x48\xeb\x0c\x5a\x2a\x7c\x52\x5b\x71\xcf\xb5\xd7\xcc\xba\x80\x16\x84\x16\x99\x5c\xab\x48\xb5\xab\xc0\x5f\x77\x52\x8a\x74\x14\x85\xdb\xe9\x65\xe2\x45\x1f\x53\x63\x88\x27\xc8\x0a\xf0\xbf\x2b\xb2\x86\x13\x58\xfe\x4e\xf4\xac\x7c\xf8\x62\x07\x9f\x74\x0e\x34\x1b\xa5\x19\x95\x32\x0f\xce\x79\xf1\x49\xa7\x1e\xf3\x49\x02\xf8\xa1\x0f\xbb\x6b\xaa\xd4\xa1\xee\x29\x48\xc5\xc8\xac\x0f\x6d\x52\xe4\x84\x1a\x12\x2e\x15\xfa\x6d\x60\xe1\xde\xa1\xd0\x19\x3b\xe1\x03\xac\x11\x07\xb6\x70\x84\x0a\x37\xb4\xcf\xfd\x50\x8b\xbf\xd2\xba\x65\x7a\x71\xba\x3d\x3c\xde\x2b\x4d\x01\xe2\x88\xaa\x8e\x28\x05\xa1\xe1\xfc\xf8\xd4\x8f\x19\x3e\xde\xa9\xb3\xcf\xbf\xd0\xfe\xd2\x38\x2d\x32\x2e\x9f\xe1\x2d\x5f\xc5\x45\xf2\x49\x13\x21\x70\x94\xf4\xa2\xd5\xa8\x37\xe6\x0a\x15\x4a\x42\x6f\x29\x11\xf2\xb7\xb4\xb6\xcb\x70\x14\xa7\xeb\xd6\x02\x38\xee\xa4\x0e\xca\x65\xa3\xb0\xba\x0b\x1a\xa2\x2d\xf5\x85\x8d\x4a\x4d\xb2\x21\x85\x5f\x8e\x58\x12\x10\x6f\x16\x44\x46\x7c\xdc\x34\xf1\x32\x30\x59\xd7\x11\x24\xc8\xc0\xad\x02\x19\x5f\x50\x48\xac\x17\x8c\x64\x2f\x4e\x6d\xc2\x43\x4d\xeb\xf0\xcc\xbd\x7b\xdb\x2b\x59\x9a\xa4\x10\x08\x03\x5a\xe0\x18\xf5\xe2\x60\x81\x7f\xa0\x63\xb8\xb3\x81\xef\xe8\x0e\x4d\x38\xd3\xfa\xc2\xfe\x8a\xf0\x2f\x9c\x1a\x1b\x1f\x54\x7e\x1f\x06\x9e\x05\x3d\xec\xe5\x33\x8a\xb7\x97\x29\xe9\x9c\x97\x2f\x57\x12\xea\xf2\xa7\xb4\x9e\xfc\x28\x4a\xd2\xd8\xb4\xb4\x68\x8b\x2a\x1b\x5d\xd0\x94\x5a\x26\x8b\xf2\x6e\x96\xa6\x2b\xfc\x04\x1c\xa9\x7e\xf9\xf7\xc2\xc3\xdf\x80\xe7\x31\x45\x11\x15\xe3\x1e\x27\x10\x0e\x79\xac\x96\x56\xcb\x51\x85\xbe\xd7\x34\xb6\x1c\x47\xfd\x01\xd5\xc2\x4b\xb3\x00\xef\xfa\xa1\xe2\x69\x7d\x80\xee\xa3\x68\x5f\x0b\x6c\x33\x1b\xc7\xae\xdf\x01\x3f\x0b\xf5\x3b\x3c\x9e\x27\x3a\x1e\xfe\x7d\xdf\x55\xb6\xd7\x4c\x61\xfd\xa8\xb3\x9b\x74\x71\x93\x25\x37\x2b\xd3\x44\x0d\x9b\xc0\x84\xa1\x2d\xa3\x92\x02\xe9\x15\x50\x41\x7f\x12\x28\x5a\xc8\x3f\xd1\xb8\xbe\xff\xf2\x3f\x47\x53\x4e\xc8\x6d\xca\x20\xcb\x31\x6e\xba\x41\x9d\x87\xaa\x88\x76\xb1\xe2\x6e\xa2\xbc\xd8\xdd\x72\x12\x5b\x47\x03\x25\xc4\x73\x83\xd6\x0c\xfe\x83\x6b\x52\xaa\x47\xbf\xb1\x43\x93\x1a\x6c\x99\x96\xd6\x48\xb4\x11\x35\xd2\x89\x8b\x90\x68\x25\x60\x64\x98\xd9\x29\xe0\x73\x50\x20\xfe\x7d\x2d\x4f\xf5\xdb\x81\x9a\xa7\xa8\x6b\x4a\x3f\x47\xc9\xe4\xf2\x18\x56\x42\xe6\x0f\x7c\x7a\x72\x51\x3d\x9f\xbf\xff\x0f\xf2\x19\x65\x20\xbe\x4a\xcf\x07\x31\x47\x0b\x22\xf4\xa8\xba\xb6\x3a\x4a\xc9\xbf\x34\x42\x36\xe9\xcd\xfa\x67\x76\x52\xe3\xea\xce\x4f\xd4\x10\xea\xb7\x15\xa4\xf8\x5e\x13\x49\x4c\x79\xad\x2d\xed\x22\x95\x72\xb9\xea\x10\xf6\xa2\x3c\x4c\x87\x52\x41\x87\xd9\x60\xc9\x29\x3e\x69\xda\x18\xe1\x20\x8a\xfd\x48\x04\xcb\xc7\xaa\xcd\x70\xd3\x65\x3d\x89\xb5\x3d\x88\xfe\x6b\x2c\x18\x80\x32\x00\xd8\x20\xb2\xe6\x3a\xa9\x48\xf3\x2b\x85\xd5\x34\x2b\x32\xc3\x63\x6e\x4e\x9c\x4d\x31\xf4\xaa\x0a\xff\x38\xeb\xb6\xd4\xd0\xec\xdd\x89\xb7\xa5\x77\x9b\x6e\x23\xed\xe6\x85\x09\x99\x29\x05\x33\x0c\x88\xf6\xf9\x78\xe2\x5f\xce\x60\x9c\xf4\x32\xdb\xcb\xb7\xfb\x47\x7a\x6d\xe2\xd3\xfa\x5b\xe4\xd7\xf8\x98\xd6\xd4\xc6\xeb\x54\x17\x41\x7e\x0a\xf4\x79\x13\xea\x6d\xc8\xd3\x28\x28\x9c\x5d\x57\xfc\x62\xd7\xab\x75\x54\x52\xa2\x20\x92\x52\x0f\x6e\xb9\x40\xb9\x0d\x1f\xab\xf1\xf1\x32\x8b\x1e\x9a\xc2\xc6\xeb\xdb\x2a\xfd\x6c\x9f\x56\x5f\x57\x10\xf8\x1f\x56\x49\xd3\xcb\xab\x16\x24\xf1\xe6\x88\x7e\xdf\x5c\x7b\x9c\xf0\xe0\x17\xf3\xfc\xe3\x9e\x99\x41\x89\x4f\x5c\x17\x76\x2d\x1d\x27\x3d\x89\x15\x11\x75\xbe\x43\x57\xc1\xc7\x4d\x38\x95\x2c\x35\x3d\x8a\xac\x68\xe9\xc3\x7a\x21\xb6\x80\xad\xf9\x3f\xb0\x52\x10\xd2\x9c\x73\xba\xfb\x43\xd3\x4f\x60\xac\x37\x95\xf4\xcb\x3f\x76\x6c\x00\x2e\xe0\xb8\xd3\xd4\x69\xce\x6c\x98\xae\x32\x87\x83\x24\x65\x64\x00\x25\x2b\xf3\x73\xe7\xd1\x68\x14\x8b\x2c\x32\xb6\x3f\xc6\xeb\x45\x79\x85\x1e\x07\xe3\x15\x6b\x00\x8e\x3d\x8b\xed\x62\x35\x57\xd4\x9d\xac\xba\x07\x63\x71\x0b\xd7\x8c\x3b\xdf\xda\x91\x9a\xce\x68\x3c\x44\x83\x13\x69\xd3\xbf\xd2\xe3\xb4\xff\xaa\x66\xac\x5e\x22\x6d\x8b\xf5\x2e\x4a\xd1\x88\xd0\x2e\x6a\xc5\x93\x8b\x5a\x7c\x3c\xe9\x31\xa7\x25\x56\x04\x4c\xb8\xa3\x86\x72\x03\xfd\x3f\xac\x17\x83\x5f\x24\x42\x57\x3b\x1c\x15\x33\x2a\x20\xf8\xde\xc4\x07\x4f\xb0\xbd\xd2\xc5\xf0\xa9\x65\x37\x4b\x57\x6c\x36\xd3\xda\x27\x12\x7c\x6c\xdf\xf8\x09\x2a\x4e\xb6\xb7\x26\xbe\xc4\xfd\x0f\xfe\x61\xcb\xcf\xf6\x1d\x23\xb3\xca\xc7\x4d\x30\xcd\xfd\x6d\x7b\xa8\xb0\x59\xc2\x91\x5d\x45\xcf\x91\x4f\x6a\x4f\x8e\x3e\x16\x47\x2b\xa0\x51\x80\xf5\xb8\x8a\x65\x80\x9b\xc0\xcc\x15\x12\xcb\x3a\x19\x7c\xe9\x4a\xc7\x45\x3a\x4c\xbb\x51\x6c\x61\xb5\x44\x20\xb0\xa2\x89\xeb\x1b\x01\xa3\x2c\x8d\xd3\xa4\x6f\x7b\x98\x72\x93\x31\xce\xf2\xc1\x34\x8d\x77\xd2\x43\x92\xff\x70\x73\xa5\x69\x38\xce\x85\x69\x02\xef\xe0\xa1\x76\x6d\x97\x74\x75\xbe\x21\xe1\x5e\x6a\x2f\x67\x26\x01\xdb\x0d\xcf\x54\xd0\x6b\x93\xf9\x8a\xcd\x39\xdd\x9e\xc5\x76\x5e\x64\xd6\x0c\xe3\xc8\xc3\x2c\x98\x97\x8d\xde\x9c\x70\xb4\x35\x74\xea\xc3\x71\xd7\xb4\x36\x55\x03\x97\x5c\xcd\x50\x06\x0c\x73\x53\x44\xf9\xb2\x61\x8c\xed\xde\xbd\xbc\xa1\x77\x74\x3c\xc6\x67\xc7\xd4\x27\xc8\xdd\xb4\x87\x3f\x63\x08\x63\xe0\xdd\xc5\xe9\xda\xfe\x5b\x5c\x6c\xaf\xdb\xa2\xe5\xa9\xc5\x31\xfa\x24\x51\x86\x8e\x53\xc6\xaf\xa6\xad\x32\xea\x45\xc5\x97\x43\x4c\x3e\xd1\xa2\x79\xe9\xc8\xe6\xdb\x14\xe9\x18\x62\x2f\x14\xf7\x58\xcf\x43\x13\x6a\xa1\x34\x77\x2c\x50\x7d\xb0\xbb\x6a\x80\x73\x64\x93\xc2\xf4\xd3\x04\xef\x93\x1b\x86\x13\x25\xc5\x7d\x51\x35\xb9\xff\xac\xf6\x90\xcb\x44\x68\x79\xc0\x5c\xd9\x4c\x35\x42\xaf\x53\x68\x47\x74\x81\x27\x8e\x6d\x36\x4b\x45\x3a\xde\xfc\x28\xdf\x69\x4b\xa0\x49\x5c\xe5\xa4\x49\x22\x65\xcd\x9a\x15\xe2\xfc\x9e\x51\x83\x80\xf8\x14\xcb\x27\x4e\xbc\xf7\xff\xb0\x4a\x4b\xbc\x12\xd1\xe2\x6b\x4c\x4e\x36\xef\x31\xa7\x71\x33\x2e\xc6\x26\x9e\x51\xed\x8d\x5f\x4c\xfc\xf8\xd1\x4c\x47\x15\x3b\xb6\x4c\xeb\xd5\xa9\x17\x30\xfb\x6f\x96\x8b\xd2\xe6\xbb\x31\xb0\xcb\x2a\x44\xb9\x5c\x09\x5a\x47\x69\x41\xfe\x9f\x35\x29\x60\xe4\x45\xe6\xb7\x35\x3f\xcf\x2d\xb9\xbb\xc8\x7e\xf9\x3f\x14\x95\xcf\x9b\x88\x0c\xae\xd4\x0a\x48\xcf\xb7\xbb\x26\xf9\x12\xd3\xd0\xb8\xc2\x69\x79\xf5\x52\x38\x7d\x5a\xc7\x02\xc3\x11\xba\x69\xf3\xf3\xbc\xd7\xdf\x99\x78\x2e\xf5\x77\x9c\x4b\x5c\x4e\xd3\x22\x2f\xec\x88\xcd\x02\x42\xca\xb3\x9a\x8f\xed\x3e\xae\x54\x42\x44\x8d\x58\xef\xa5\xcf\x2a\x19\x97\xd3\xf4\x03\xe8\x13\xdf\x57\xd5\xe8\x0f\xe0\x52\x80\x9a\x9f\x9d\x2a\x76\xa0\x6f\x4f\x14\xd9\xd9\x4d\x25\x7f\x06\x20\x1c\x76\xf0\xb6\xa9\x16\xfc\x3e\x03\xdb\x86\xca\xf4\x95\x89\x52\x6e\x1b\x29\x39\x89\x53\x04\x7f\x17\xbd\x6b\xba\x33\xc9\xd2\x7d\xd9\xe3\x54\x30\xf3\x92\x87\x73\x61\xc4\x8a\xaf\x0b\x78\x84\x8a\xbe\x14\x53\x52\x21\x09\xc1\xcf\x6f\xeb\x28\x9a\xa2\xd9\x4e\x85\xb4\x61\x25\x27\x09\x0d\xf1\x5a\x2d\x27\xc9\x7b\x07\x1b\x1d\x5d\xca\xdb\xf8\x6e\xe1\x45\x2f\x6f\x00\x49\x1b\x37\xbc\xa5\x4c\xa8\x38\xa0\xae\xe1\x0a\x1c\x08\xc3\xe1\xff\x81\x46\x65\xa1\xeb\xc0\x97\x95\x6f\x68\x09\xdb\xcb\xe4\x32\x98\xa8\x09\x68\x7c\x19\xec\x54\xb4\xc0\xa7\x54\x37\x2f\x5d\x5e\xb6\x99\xed\x3d\x8a\x97\x80\x50\x04\x14\x07\x78\x3d\x47\xf4\xb0\xfb\x9b\xfa\x2b\xdf\x9c\x7c\x64\x51\xde\xc7\x4b\xcc\x40\xcc\x8d\x1c\x3d\x1c\x71\xd9\x75\xaa\x5e\xb3\xac\xc2\xe0\x4a\x4d\xe5\x5f\x09\xa1\xaf\x07\x1c\x2d\x8b\xfc\x1f\x42\xf3\xe3\xf8\x3b\x3e\x09\xb4\xfc\xec\xd0\xee\x6c\x39\x36\x46\x18\x1c\xbc\x10\xd6\xe7\x12\x7b\xa8\x56\x0e\xaa\x52\x68\xdd\x81\xf1\x18\x16\xfe\x1e\x16\x24\xd6\xda\xe9\x89\x12\x1d\xe2\xfb\xc4\x5a\x39\xa5\xd8\x25\xae\x56\x0c\x46\xcf\x76\x5b\x5a\x8f\x69\x1b\x4c\x12\x9f\xd4\x38\x98\x0e\xce\x2d\xb4\x33\x13\xb9\xa1\x65\x8c\x42\x7d\x1d\x49\x20\x9f\x28\x2f\x81\x19\x94\x78\x7d\xbb\xf7\x7b\x7f\x40\x7b\xc0\x29\x3c\x3a\x05\xb9\x0f\xb5\x36\x19\x8f\x6e\xb9\x3e\x9a\xd6\x22\x91\x1a\x44\xb1\x66\xa9\xd3\x3a\xbf\xe0\xa6\x16\x66\xbc\xea\x54\x7d\x92\xe0\xe0\xdc\xcb\xed\xd5\x28\xeb\x47\x49\x4b\x71\xb9\xfd\x1e\xed\x7b\x51\x9f\x78\xcc\x33\xeb\xe6\x2b\x2d\x5f\x0b\x03\x0b\x1f\x1f\x37\x31\x6e\x25\x69\x92\x93\x00\xdd\x3e\x69\xb0\x7e\x8b\xbe\x58\xb8\x71\x9e\x56\x20\xd3\x71\x52\xc4\x36\x07\x38\x85\x3b\x16\x6a\x38\xf2\xe7\x0d\x40\x98\x05\x42\xde\xce\xf8\x89\x1f\xd6\x0d\xd2\x52\x26\x58\x41\x47\xdd\x64\x6d\x99\xd6\x18\x88\x8e\x20\xb9\xfa\x32\x16\x24\x4e\x90\x78\xc2\xe6\xdf\x0b\xb4\x3e\x11\x04\xb4\x9d\x40\xe0\x9e\x45\x87\x2e\xa9\x17\x33\x89\xd3\xdd\x8b\x8f\x20\x87\x81\x48\x3f\x1f\xab\xa6\xe1\x1a\x46\xd1\x5b\x0a\x56\xcd\x55\x62\x2f\xcd\xc1\xab\xc6\x32\x71\xc3\x2a\x22\x5c\x5c\xf2\x1f\xd3\x03\x65\x16\x12\xa5\x6a\x76\xcc\x7f\x2e\xca\xcd\x68\x64\x4d\x26\xb2\x7e\x08\x04\xb6\x63\x8a\x82\x4f\xa6\xf5\xc7\xdb\x36\xdd\x74\x15\x69\x08\xd3\x82\xd1\x7d\x0b\x45\x58\x85\x15\xb1\x58\xdf\x41\x46\x06\xb5\x82\x13\x30\x3f\x7c\x12\xb4\x3e\xf7\x39\x3f\xb6\xb0\x6f\xce\x73\x2c\x2e\x1c\x70\x25\x26\x7a\x09\x7c\x42\xe6\x50\xc8\x17\xc9\xe8\x0b\xdc\x7c\x73\x9f\x61\x71\x71\x3f\x58\xf9\x96\x59\x5f\x98\x36\xb7\x9b\xdd\xde\x37\xe7\x6a\x42\x3e\x11\xf9\xc7\xcf\x3f\xa2\x66\x3b\xc4\x91\x21\x3a\x03\x92\x83\x22\xef\xbf\xf9\x2b\xe8\x19\x4b\x45\xa1\xf4\xd9\x52\xf1\x28\x6f\x08\x4d\x4a\x84\x59\x32\xcb\x5b\x83\x78\x2e\x94\x01\x61\x68\x89\xa2\x08\xae\xf6\x21\xdc\x86\x8c\x86\xf8\xd1\xe2\x0f\x26\x1e\x10\xf0\x3b\x4f\x76\x5a\x6a\x2c\xf8\x09\xa5\x47\x10\x25\xfd\x7c\xc6\x6b\x9b\x01\x5d\x83\x90\x0f\x18\x0e\x24\x89\x0f\x6b\x51\xde\xfc\x7c\xbb\x67\x0b\x9b\xf5\xa5\x30\x2f\x71\xbb\x06\x61\x4b\x3f\x6a\x79\x9c\x10\x41\x88\x90\xf9\xe1\xda\x79\x1c\x42\xd0\x5f\x3e\x32\xf8\x65\x2d\xbd\x3c\x38\xb7\xd4\x2e\x06\xc4\xc3\x3e\xe3\x6b\xe1\xd8\x92\x88\xad\xaf\x06\x5e\x1b\x64\xea\xd6\xaa\x2a\x52\xd0\xe7\x60\x04\x77\xe1\x55\xc0\x23\xdf\x9b\xa8\x4d\x7e\x5f\xd1\x0b\x2c\xdb\x38\xde\x59\x3e\x50\xbc\x9a\x1b\x5c\x55\x14\x51\xb2\x96\xe3\xd0\x43\x37\x9b\xf5\x42\xe8\x01\x3a\x66\x79\x57\xe1\x3d\x13\x28\xde\x8c\x0d\x4a\x57\xf1\x45\xe7\xb0\xb6\xd1\x53\xe1\x19\x61\x26\x1b\x50\x1a\x50\xcb\x66\x98\x8e\xf3\x59\x8f\x71\x61\xca\x17\x74\x80\x4f\xd2\xf7\x21\x29\x05\x25\x12\xe2\xa8\xbf\xa8\x3d\xc7\x85\x03\xed\x5e\x66\x86\x20\x34\x75\xd3\xe0\x17\x2b\xd5\x59\x5f\xbc\x1c\x67\xc9\x63\xbe\x96\x71\x17\xae\x0e\x8f\xf0\x13\x1d\xc5\xa9\xc6\xe2\x34\x78\x9e\x77\x26\xaa\x21\xf8\x00\x77\x87\xe0\xef\x5f\xd3\xeb\x02\x60\x64\x03\xbe\x0c\x27\xb7\x68\xdd\xa2\xe5\xff\x68\x47\x8b\x5a\x5f\x50\xba\x5b\x3c\x85\x8f\xfb\x7f\x7c\x2a\xaf\xb8\x1b\xa7\x69\x0f\x39\x68\x95\x39\xc1\x75\x70\xce\x2b\x1c\x6e\xb5\xb1\x0f\xf3\xf9\x4d\x65\x4a\xbf\xd9\xc4\x21\x12\x25\xbd\x28\x2c\x86\xb2\xd2\xb1\xe0\x60\x80\xf9\x58\x93\x54\x0d\x32\x96\x10\x92\xdb\x63\xb9\x0a\x3e\xa9\x19\xf8\x7d\x73\xed\x68\xc8\x85\x34\xdd\xb6\x0e\x14\x22\xbb\x09\x01\x39\x4e\x42\x9b\x15\x26\x42\x43\xdd\xb5\x2a\xcb\xd7\x22\xad\xca\xcd\x2e\x74\xef\xde\x76\x37\x4b\xcb\x64\x47\xe1\x1a\xce\xab\x51\x96\xf3\x6a\x5a\x66\xc5\x82\x0b\x4d\x4f\x1b\xc0\x70\xbe\xa5\x55\x03\x4e\xd1\xc7\x59\xed\x92\x56\x39\x8d\x8b\x89\xab\x1b\x67\x5d\x93\xd0\xde\x43\x62\x06\x05\x3d\x51\x9e\xa7\xfb\x45\xb2\xf4\x75\x85\xd0\xb5\x59\xda\x23\x27\x56\x2e\x1e\xe1\x90\xf0\x63\x19\x5a\x53\x35\x2f\xc6\x26\x2b\x5a\x6a\x68\xfd\xbc\x82\xc9\x9f\xaf\x81\x3b\xa8\x9d\x18\x25\x61\x34\xe2\x5a\x10\xe2\x64\x34\x56\xf8\xb8\xe3\xbf\xde\xac\x46\x3d\xf8\x01\xa1\xc1\xfd\x23\x25\xb6\xff\x47\x0a\xf6\x64\x8d\x5b\x56\x82\xa2\x57\xb8\x94\x4b\xae\x10\x6e\x7c\xd3\x1c\xa8\xc0\xbb\x30\xe1\x7c\xa2\x6e\x8d\x84\xd4\x81\xf7\x74\xfb\xd4\xef\xd9\xc9\x66\xd8\xf0\xe2\xe2\x52\x3b\x2f\x4c\xdf\xae\x0d\xa2\x7c\x64\xa5\x1d\xe8\x1a\xec\x7a\xee\xa0\x41\x91\xce\xac\xda\xcc\xb0\x5c\xb7\x63\x23\x76\xf8\xe9\x73\x3a\xb6\x8a\x4d\x34\x34\x49\x91\xcf\xb4\x7e\xfd\xf3\xde\x8c\x79\x6a\x57\x56\x37\x91\x54\x7f\xb3\x1b\x5b\x38\xd0\x4e\xd2\x28\xb7\x8a\x2d\xe4\x9c\x62\x0b\x39\x57\x6b\xff\xd3\x9d\x0d\xa2\x91\x4c\x2e\xb6\x54\xe9\xeb\x9c\xa6\xba\x3b\xa7\x24\x29\x57\x6d\xf2\x24\x3d\x58\x26\xe8\x24\x54\xa4\xc4\xbd\x9a\x1c\x5f\x35\x66\xb7\x4f\xcb\x94\xd2\x33\xab\x2e\x71\x21\xfb\x1a\x7e\x04\xa9\xee\x43\x5a\x89\x70\x61\x60\x51\x40\x8d\xeb\xb6\xaa\x77\x3d\x09\x5d\x07\xc7\x6b\x34\x2f\xe2\xc7\x37\xa8\xac\x2e\x52\x2f\x4a\x33\xe9\x33\x1d\x25\x03\xf2\x21\x9e\x26\x62\xec\xfa\x1a\x2e\x9f\x07\x8f\x7e\x72\x4a\x8f\x26\x18\xd4\xb2\x9d\x24\x56\x79\x5f\x80\x62\x6f\x34\x44\x95\x2f\x10\xf0\xd8\xc4\xd8\x05\x2e\x83\xdb\x37\xe7\x9c\xab\x2f\x35\x98\xa1\xcd\xa2\xd0\x24\x50\xb7\x81\x73\x79\x80\x1c\xd5\xa1\x0b\x16\x0e\x70\xe4\x7e\x4e\x13\x92\xc0\xb5\xf0\xb1\x73\xcb\x26\x29\xa2\x72\x07\x16\x0c\x62\xdc\x20\x5d\xec\x8d\x2b\x2e\x1b\x5c\x89\xc2\x15\xe6\x2b\xc0\x2a\x82\x88\xb6\xe8\x16\x29\xcb\x78\x0c\x5e\x09\x79\xda\x96\x1a\x14\x60\xe9\xc5\xfd\xed\x71\x12\x2d\xa7\xd9\x90\xee\x13\x0f\x0a\x34\x29\x7c\xdc\x44\xb5\x42\xdd\xb0\x55\xeb\xf4\x80\x04\x6e\xaf\xa8\x1e\x27\x8a\x10\xff\xc2\xa4\x4a\xe6\x58\xcc\x2a\xd1\xab\xf3\x81\x52\xe2\xae\xa2\x55\x54\x53\xe6\xbc\x9a\x18\x4c\xd2\xc2\x3e\xe2\x6b\x18\xe7\x2a\x22\x25\xdf\xa1\x6f\x70\xc7\xce\xf1\x7f\x30\xa9\x64\x3a\x0a\x15\xa4\x5a\x0a\xdf\x51\x46\xb6\x9f\x99\xa4\x90\x18\xde\x11\x9a\xce\xbb\x63\x95\x54\x44\x85\x89\x23\x93\xcc\x6a\x1e\x2a\x14\x36\xf9\x38\xf0\xb5\x78\xa6\x80\xe1\x93\xa9\x14\xa6\x0d\x28\xe2\x08\x91\x02\x93\x71\x23\x50\x9c\x53\xa8\x4b\xc3\xb4\xbd\x13\x28\x12\x99\x53\xb5\xc2\xfa\x81\x17\xdb\x3d\x6b\x62\x9b\x95\x26\x81\x13\x64\xc7\x66\x7a\xd0\xcb\x4a\x35\x51\x57\x8c\x32\x9b\x8f\x87\x1c\x0c\x62\x64\x99\xe7\x38\xe4\x45\x2a\xb0\xec\xf1\x9a\x99\xfc\x47\xa8\xaf\x3b\x13\xa4\x85\x7c\xa5\xbe\xfe\xa4\x7e\x8d\xa6\x1b\xaf\xcf\x52\x31\x8c\x0b\x43\xa8\x40\xb9\x2a\x91\x66\x3e\xf2\x73\x16\x97\x27\x3e\x43\x5e\xb7\xc5\x2e\x3c\x76\x21\x9c\xa7\x0f\x39\x71\xcf\xf2\x11\xa2\x4a\xf2\x67\x64\x97\x90\x24\x21\xb5\xe2\xa2\x06\xe6\x80\x1d\x2b\xb8\xab\x0d\x5d\xd4\x83\xa5\x0a\xcd\x30\xd3\x29\xed\x3a\x6b\xc6\x4d\xd4\x30\xe8\x6d\x2f\xb9\x1a\xc5\x71\x94\x26\xec\x62\xb0\x82\x7f\xae\x97\xf3\xcf\x03\xd1\x16\xeb\xa7\x98\x2d\x91\x65\xee\xad\xcd\x71\x8d\xbb\xb8\xad\x8a\xe8\xa3\x28\x5c\xc9\x67\x15\x6d\x2e\x83\x47\x1d\xde\x71\xd1\x6b\xac\x94\x5f\x87\xf6\x5a\xdd\xd1\x00\x5c\xb7\x62\x35\xed\x38\xab\x35\xf1\x49\x53\xf3\xaf\x6b\xf2\x3c\x4d\x13\x95\x13\xb3\x2d\x15\xda\xab\xf2\xe7\xf1\x98\xef\x04\x1f\xd7\x23\xb6\x79\xd4\xb3\x19\x4f\xed\x39\xca\xbe\xa3\x98\x3d\xe0\x93\x86\x2e\x13\x0d\x06\x8a\x14\xac\x53\xb0\x2a\xb3\x5f\x29\x85\x79\xc6\xe2\xc4\xcc\x28\xf9\xeb\x6f\xe1\xf5\x63\xcf\xb3\x04\xaf\x6c\x7a\x15\xc7\x61\x26\x70\xb1\x34\xb2\x8b\x8b\xca\xc8\xf6\xd3\x78\x79\x9b\xe2\x36\x66\x75\x6a\xbd\xbd\xb1\xe6\x3e\xde\xf1\xb9\xd9\xec\x54\x35\x13\xae\xaa\x06\x02\xd9\x4b\xf4\x32\x45\xf8\xce\xa7\x48\x18\xfc\x44\x5e\x73\x7b\xf3\xac\x54\xe9\x8b\xf6\x2d\x3d\xe2\x15\x05\x6e\xd1\x6f\x3b\x6a\x10\x57\x39\x3a\xad\x38\x63\x58\xaf\xde\xf5\x26\x0f\xce\x79\xe6\xb7\x7d\x4b\x6e\xac\xb4\xb1\xa9\xf7\xaa\x59\x17\x0c\x94\xf0\x58\xd3\x97\x09\xf7\x87\x0f\x22\xec\x30\x7f\xcc\xd7\x07\x7f\xfb\x6f\x20\xb0\x41\x50\xf0\x71\x18\x3a\x32\x1c\xff\xfc\xd9\xa9\xaf\xbd\x3d\x45\xb1\x24\x2e\xf3\x93\x98\xdf\xc0\x86\x67\x52\x73\xa9\x35\xd2\xfb\x82\x6b\xbc\xaa\x18\x07\x44\xd5\x9b\xa2\x90\x53\x7f\xb3\xd3\xfa\xb5\x97\x18\x97\xfd\x53\x0a\x24\x44\xfc\xcf\x55\xf7\xb3\x71\x54\x74\xd3\xb5\x78\xd6\xd7\x83\xc1\x98\x8e\xc2\xd3\x2f\x27\x8a\x3f\x0f\xa8\x25\xd4\xcb\x36\x1c\xc7\x62\x37\x5b\x37\xc9\x47\xb7\x5d\xfc\x6c\x3c\xa1\x8b\x1e\xd7\x33\x21\x60\x7f\x90\x71\x69\xa5\xea\xfb\x2d\x6c\x34\x18\x59\x48\xe5\xc2\xe1\x22\x03\xc0\xca\xfa\x51\xe0\x0b\xe8\x2d\x14\x90\xf8\x03\x93\x0a\xc5\x98\x07\x58\x9c\xa1\x35\x20\x53\x84\x7a\x72\x90\xd9\xa6\xf8\x23\xcc\x0e\x20\x93\x2b\x9b\x7d\xfc\x73\x32\x12\x1f\x75\x63\xe8\x0c\x03\x0e\x79\x0b\x59\x97\x0c\xc2\x95\x57\x27\x04\x9b\x9e\x30\xa6\x6f\xf2\x34\x8e\x12\x8b\x31\x78\x21\x33\x6e\x39\xc6\x9e\x8b\x9a\x33\x96\x5c\xb1\x10\x32\x6e\xb6\x50\xff\xa8\x6d\xb2\x84\xe7\xf5\x5e\xf6\x25\x65\xdd\xae\xdb\xec\xfe\x08\x4d\x36\x8c\x0a\xb2\x33\xec\xfe\x90\x6c\xb3\x1a\x3e\x9f\xd4\x32\xc6\xf9\x79\x8a\xf8\x46\x26\x62\xb8\x02\x0b\xa9\xe1\x8e\xdd\xf4\x83\x13\x91\xad\x93\xda\x3e\xd7\xce\x53\x2a\xfb\x29\x50\x3c\xde\xf2\xe6\x09\x95\x3c\xb2\x43\x9b\xc8\x26\x13\xaa\x3e\x45\xdc\x7d\x36\xf8\x58\xbd\xb8\xf5\x39\xf6\x27\x58\xc3\xc7\x00\xbb\xe5\x93\x26\x2a\xfb\xe5\x34\x2e\x4d\x27\x93\x88\x36\x5e\x90\x6c\x12\xd3\xc7\xc8\xfd\x26\x28\x94\x03\xad\xd7\x51\x5e\x7b\xf7\xb6\x0b\x9b\xf4\x4a\xc3\xec\x29\x4a\x11\xa6\xf0\x71\xe0\xf9\xb1\xed\xa1\x91\x0d\xf9\x95\x50\x8c\x8c\x82\xdc\xa9\xc0\xf3\x1a\x41\x13\xc7\xcd\xa6\x39\xb9\x99\x7f\x43\x5f\x29\xa4\x19\x8f\xfb\x19\x98\xe2\x73\xbd\xe7\x91\x27\xa2\x05\x79\x57\xb5\x23\x1b\x19\x75\x3f\x4b\xbc\x73\x9a\xe5\xf1\x8c\x22\xd5\x6e\x12\xc3\x59\x6a\x2f\x47\x89\x49\xc2\x88\x73\x61\xd7\x09\x50\xe3\x35\xae\x13\xb0\x3c\xb6\x31\x47\x4e\xf0\x7e\xd7\xb4\xdc\xdc\x36\xec\x5e\xd4\x43\x6e\x2b\x66\x1f\x93\x99\x19\xbf\x35\x50\x35\x11\x50\x00\xb9\xa5\x33\x18\x27\x2f\x3d\xc1\xe2\xe2\xfe\xbf\x4d\x7b\x0a\x26\x84\xbb\x24\xe8\x1b\x3d\x04\x1b\x21\x9a\x53\x3f\x20\x6a\x12\xbc\xba\x73\x41\x25\x0d\x7d\xc9\xe9\xe9\x5d\x44\x6b\x07\x85\x75\x26\x64\x44\x29\xa9\x85\x64\x0b\x3b\xe5\x53\x1d\x32\x35\x0e\xad\x3f\x3f\xef\xe3\xba\xf9\x05\xb6\x0b\x6f\x53\x91\x56\xb3\xcc\x20\xe3\x78\x64\xda\x7a\x49\xc0\x37\x4b\xf4\xb6\x51\xe0\xbd\x49\x1b\x49\x64\x2b\xa9\x07\x89\x8b\xba\x0a\xd7\x8e\xe4\xb3\x45\x62\x16\xb8\xa5\x0a\x4c\x63\xdb\xb4\xf5\x05\xa5\xdc\xed\x84\x95\xae\x4f\xf4\x08\xeb\x96\x29\x3d\x73\x98\xd2\xab\x5e\xcf\xe6\x6f\x3f\x3b\xf5\x9a\xa8\xcf\x7c\xa2\x43\x01\x08\x3e\x72\x03\x91\x14\xc6\x2d\x9f\x98\xc2\x64\xb2\x50\x01\xa1\x7a\x85\x35\xa5\x5c\xac\xc8\xb0\x76\x29\xca\xf6\xeb\x68\x12\xe1\xe4\x89\xe9\xcc\xfe\xdf\xf8\xa2\x93\xcd\x11\x67\x92\xdb\xa8\xcf\x13\xa1\x4e\xc9\x69\x71\xd1\x09\xda\x34\x40\x14\xd7\xd2\x6c\x65\xc6\x4f\x49\xdc\x08\x54\x0f\x7e\xe2\x67\xfc\x7e\xa6\x32\x12\x13\x0e\x22\x2b\x65\x36\x27\x1e\x54\xde\xb4\x0c\xec\x7b\x22\x8a\x65\x43\xd2\x1d\x3b\xe9\x35\xbb\x94\xdc\x91\x06\xfd\x25\xdd\x2b\xca\xb4\x5b\x3a\xde\x75\xff\x1e\x5d\x86\xe8\xd3\x94\x2f\x0a\xf9\xff\x4f\xb0\xac\xb0\x2e\x8e\x4c\x14\xbd\xfb\xb1\x40\xab\x0f\x6b\xfa\xdd\x8b\x4d\x94\x3b\xfb\xdb\x5d\x93\xac\xc8\xe4\x00\xbe\x8f\x47\x09\xf1\xb0\x7e\x0c\x8b\x29\xce\xa8\x42\x19\x59\x0c\x10\x30\x3a\x79\x25\x37\xa8\x7f\xa1\x66\xf9\xf7\xee\xdd\xd7\xce\x0b\x1a\xae\xa2\x6d\xce\xf2\xaf\xaa\xbb\x53\xb7\xf5\xa4\xa0\x17\x2d\x83\xed\x02\x11\xe1\x55\xf5\x01\x6e\x57\x63\x6f\xfd\x54\x4d\x33\x27\x69\x56\x0c\xac\xc9\x0b\xbe\x2d\x94\xc2\x5b\x1d\x85\x46\x6f\x4d\x15\x1f\xef\x57\x2b\x28\xc8\x22\x4a\xb7\xa9\x10\xeb\x5e\xb9\xa3\x36\x8e\x50\xa5\x81\xc9\xdc\x75\x3b\x57\x14\x68\x37\xc3\x7a\x5e\x79\xa5\xdd\x1b\x5b\x85\x0f\xbb\x44\xaf\x52\xe2\xc3\xcd\xe5\x25\x41\x91\xf4\x32\x80\x59\x01\x9d\xd6\x12\xe9\x95\x01\x02\x81\xb3\xf8\xea\x7c\xdf\x0c\x69\x86\xab\xb4\x29\x70\x3c\xa7\x03\x9f\x3d\xd4\x27\xa7\xcb\x80\xb7\x6b\x43\x33\xce\xd1\x0e\xc3\xab\x47\x64\xc3\xc7\xaa\x90\x75\x20\x5b\x9f\xf5\xa8\xa4\x0b\x93\x0a\x3b\x4f\xf9\x33\xac\x30\x89\x74\x1a\xdd\x9f\x7f\x59\x0b\x1b\x16\x17\xf7\xb7\xa3\x9e\x4d\x8a\x68\x39\x42\x55\x63\x49\xab\xc5\xba\x81\x5f\x44\x03\x22\x43\xd3\xc4\x88\x29\xcd\x1c\xdc\x2f\x13\x89\x2b\x18\xd2\x85\x5a\x65\xf2\xe0\xdc\xcb\x6d\x33\x1a\x65\xe9\x21\x46\xa3\xb6\x3c\x2f\x02\x7a\x38\x7c\x1c\x7c\x5c\xa5\x13\x49\x3f\xb3\x39\x38\x03\xb6\xab\x71\xb6\x0d\xba\x67\x54\x0a\xae\x4e\x7c\x61\xf9\xf1\x8e\x1f\x92\xf9\x2a\x56\x27\xf7\xd4\xd4\xdc\xd3\x9d\xa6\xf2\xbe\x1f\x4d\xdb\x44\x04\xd9\x72\xda\x16\xec\x89\xb0\x0e\xb6\x4e\x3d\xcc\x60\x14\xf5\xf3\x0a\x87\x79\x85\x87\x71\xb3\x93\x9e\x9f\x6f\xf7\x29\xa6\x98\xf1\x23\x69\x37\x61\x52\x1d\x7f\x97\xe7\x33\x6a\x9a\x0c\x01\xc3\x90\x83\xec\x02\x54\x24\x10\x2d\x87\x4a\x4d\xc7\x59\x61\xf3\x75\x8d\x1a\x83\x11\x46\x3a\x7d\x4f\x8d\x69\x9d\xaa\xad\xce\x3d\x8b\xed\xae\xcd\x56\x6c\x6c\x41\xb8\x28\x13\x72\x3e\xdb\xd9\x71\x46\xa9\xcf\x77\x4d\x12\x02\xb9\x81\x11\xb1\x13\x4a\xe8\xf0\x44\xb0\xcb\xcf\x83\x3c\x5f\xae\xe2\x8d\x0b\x74\xbb\x1b\x17\x94\x94\xc2\xf5\x89\x62\xe2\xb8\x5e\x0b\xf4\x16\x17\xdb\xbd\x2c\x1d\x8d\xa4\xba\x0e\x8b\xfa\x2f\x90\xac\xf2\x89\x23\x84\x0b\x4d\x1c\xef\xf0\x71\xd2\x07\x44\xd6\xe0\x24\x6a\xcb\x05\x2b\x50\x20\xdf\x4b\xfb\xef\x35\x01\xc9\x65\x0d\x3c\xd9\x31\x75\x28\x8a\xf5\xa7\x3a\x3e\xa5\x3a\x57\x91\xe8\x42\x83\x31\xcb\xc1\x4a\xe8\xd0\x7d\x07\xe7\x1c\x97\x13\xfd\xb0\xc8\x65\x2a\x19\x0a\x95\xa5\x0f\xa3\x43\xdb\x2b\xe3\xec\x2e\x4c\x7d\x80\xc5\xcc\xfc\xee\x58\x2d\xa2\x52\xa4\x62\x2e\x10\x75\x08\x2a\xc6\x27\x2b\x61\x16\x91\x32\xf9\x6c\xf9\xbb\x22\x32\xaa\x93\xdf\xc3\x6a\xcc\x82\x63\x74\xe1\x9f\x6d\x90\x22\x0f\x33\x13\xae\xf4\xd2\x35\xa4\x8b\x18\x6a\x3b\x41\x0f\x93\x8f\x55\xf6\x9c\xc6\xbd\x8f\x95\xf7\x84\xdd\x7d\x95\x4a\x4f\xf8\x1d\x26\xcc\xa3\xd0\xf1\xda\xd3\x53\xcf\x8e\xb6\x93\x18\x95\x60\x98\x8e\x4d\x34\xc6\xae\x7c\x91\x78\xd9\xd7\x49\xb4\x52\x94\xed\x68\x19\xb8\x39\x82\xf9\x05\x27\xcb\x8b\x7b\x44\xb1\xf6\x0f\x61\xe3\xf0\x74\x7e\xa5\x53\x51\x46\x56\xb4\xcc\x5b\xa6\x9e\xd6\xea\x21\x85\x5d\x8e\x0a\xc8\xf1\x9a\xed\x44\xf3\x18\x41\xdb\xa7\x3a\x6a\xf3\xde\xd6\xb2\x13\x4f\x4d\xfd\x73\x88\x4c\xc2\xd0\x2a\xa7\xdf\x29\x45\xb0\xff\xed\x79\x25\xff\x79\x17\xd5\x41\x2c\xd7\x1f\xe3\x92\x2b\xd5\x7c\x44\x7a\xdb\xa6\x9e\x61\x60\xe9\xd3\x53\xff\x84\x31\x60\x27\x0b\x50\x9a\xef\xf9\x78\x64\x33\xa2\x6b\x51\x42\x86\x2d\x35\x3c\xc4\xea\x73\x58\x93\x37\x9b\x78\x3e\x7c\xef\xdd\x21\x02\x6e\x06\x9e\xa1\x0e\x40\x68\x51\x29\xdf\x1c\xe9\x94\x9f\x5f\x8e\xfa\xe3\x0c\x03\x45\x3c\x88\x8b\x3d\x21\x53\xb9\x9b\x3d\x78\x69\xe9\x22\xc3\xe6\x58\x3e\xd1\x72\x7a\xf7\x27\x75\xd3\xe7\x9e\x12\xff\xce\x07\xd1\x68\xdd\x64\x3d\x16\x29\x62\x9a\x56\xa5\x60\x73\x4f\x57\xb5\x93\x24\x1d\x99\xb0\xe5\xc5\xe5\x1e\xe8\xef\x7d\xa0\x24\x5a\x96\xed\x9a\x24\x82\xff\x5f\x1c\x72\x45\xba\x96\xa8\xaa\x34\xe6\x01\xae\xaa\xd1\xa0\xab\xbe\x82\x9a\xc6\x3c\xca\xfa\x91\x32\x6c\x8f\x2b\xa5\x83\x9e\x59\x7f\x42\xd1\x55\xfe\xaf\xd8\xf9\x58\x36\x47\x03\xd5\x64\xe7\x52\x16\xf2\x8b\x37\x78\x13\xe0\xd5\x9c\x62\x6d\x6f\x2c\x53\x9e\x97\xc7\x4f\xe2\x5b\x4f\x28\x5a\xbb\xb7\x51\x35\x12\x52\xf0\x72\x63\xa1\x79\x06\xa6\x08\xb4\x7a\xe0\x54\x44\x95\x90\xf6\x85\x23\x5b\x77\x03\xfe\x5b\x6b\xf0\x36\xe2\xd5\x36\x99\x15\x80\x8d\x06\x58\x09\x71\x8c\x24\xc2\x23\x43\x31\x80\xa2\x41\x63\xc4\x9e\x94\x73\x15\xf6\x3a\xea\xa6\x19\x55\x5e\x31\x80\x76\x81\x96\x25\x1f\x07\x9e\x7e\xcf\x1e\xc2\x0c\x4d\x9a\xe4\x33\x6a\xac\xed\xa8\x62\x96\xbb\xa4\x6d\xee\xed\x0a\xac\x70\x3d\xff\x98\xd6\x0f\xa0\xe4\xc1\xd5\x13\x16\x17\x37\x8e\x04\x2a\x2b\xbe\x10\xa8\x74\x76\x2b\x06\xd6\x10\x4c\x6f\x21\xa9\x5f\x67\xdc\x54\xc7\x9a\xde\x2c\x03\x59\xc8\x59\x08\xc1\xb5\x27\x93\x38\x82\xd2\x08\x72\x96\x3b\x41\x99\x82\x3a\x98\x49\x99\xe4\xc8\x64\x48\xf9\x40\x91\xd0\x3d\xc2\xb8\x24\x54\x28\x5b\xd0\x30\xc0\x96\x38\x81\xad\x08\x4b\x77\x53\x4f\x7b\xb3\x9a\x31\x5e\xe3\x69\x57\x37\x1e\xa4\x43\xcb\x3d\x09\x21\x1a\x77\x1e\x64\xee\xe9\x8e\x33\x32\xa3\xbf\xd3\x21\x7b\xe6\xac\x4c\xf9\x9b\xc0\x87\x31\xf1\xba\x83\x4d\x0a\xf1\xde\xd5\xcf\x4c\x3d\x14\xe4\xf1\xa9\x92\x5d\x78\xc8\xe5\x3d\x11\x7d\x55\x20\xd2\xed\x1d\xff\x7e\xba\xb6\x00\x9e\x49\x91\xce\x2b\xca\x97\x3d\x52\x5f\xbc\xd9\x84\x8d\x20\xcd\x17\x8e\xaf\xf0\xca\x30\xd0\xce\xc7\xae\x7d\x49\xd2\xe2\x39\x41\xe0\x66\xfd\xff\x9f\xd2\x9c\xc5\x53\x76\xb1\x82\xb9\xf2\x46\xfe\xb6\x0a\xed\xc7\xd1\x6b\x33\xaa\xed\x7b\x1c\x86\xd8\xa9\xb6\x3b\xf4\xd0\x9d\x5a\x75\xea\x95\x57\xda\x99\xed\x49\x48\xc4\x4a\x96\x78\x77\x22\x6b\xd9\x64\x87\xc3\xcc\xca\x60\x27\x8a\xae\xef\xe1\xe5\xf3\x89\x83\x35\x8e\x6c\x11\x15\xc8\xa0\x70\x05\x37\x14\x96\xe9\x46\xa3\x30\xaf\x19\x92\xc4\x98\xe2\x97\xe2\xc4\x42\xd0\x10\x6a\x46\x63\x5c\x3e\x64\x07\xd7\xba\x40\xcc\x6e\xd2\xe9\xf1\x1d\x85\x61\x9a\x14\x83\x9c\x30\x28\x88\xcd\x76\xd1\xda\xc2\x9b\xdd\x4e\x1a\xd8\x2c\x31\x4d\xdb\x44\xb8\xad\x69\xc7\x21\x81\xbe\xa1\xd9\x54\x52\x30\x3e\xb6\xf6\xee\xdd\xa0\xbb\xd9\xb8\xa1\xa6\xdd\xd7\xd2\xb4\x97\x8d\x97\x97\xe9\x71\xa2\x69\x7e\x46\x69\x55\xff\x77\x67\x82\x67\xb4\xc8\x5b\x1e\xf5\x22\x93\xad\x13\x39\x10\xc2\x82\x0f\x27\x0a\x6c\xc0\x77\xce\x2a\xba\xde\x60\xfe\xce\x33\x1d\x05\xc3\xe0\xce\x2c\x6e\x9c\xf5\x23\x45\x60\x60\x73\xe8\xbf\x77\x6f\x3b\xb3\xa6\xb7\x89\x2e\x74\x51\x0b\x9a\x29\xde\xed\x71\x5c\xe4\x8f\x7a\x00\x30\x98\x1f\x1c\x89\xa2\x23\x68\x61\xfc\x8d\x9b\x41\xf6\x73\x64\x4b\xb8\x1b\xfe\x9f\xa0\x8c\x84\x50\x9b\x81\xa9\x82\x71\xc2\x63\x17\x76\x49\xff\x7c\x46\x36\x63\xb5\xd4\x96\x77\x15\xdf\x57\x33\xef\xdf\x6f\xc8\x2b\xdb\xcb\x69\x66\xcb\xec\x86\x3d\xa2\xe3\xc1\x28\x9f\x97\xf0\x60\x3c\xa9\xc4\xe1\xfb\xe3\xd8\x64\xdb\x7c\x42\xf0\x27\x81\x57\xc8\xbd\x14\xf8\x28\xb2\xd2\x74\x39\xaf\x84\x3f\xce\x54\x39\x53\x93\x22\x7f\xcc\x13\xaa\x42\x8b\x4a\x29\xc9\x2e\x71\x36\x09\x59\x09\x19\xbb\xa2\xa7\x24\x02\x29\xf4\x30\x9d\x7e\xa8\x6b\xcc\x73\x78\x85\xe7\xf4\xbe\x2e\x82\x5f\x0c\x7c\x91\x90\xe7\xb9\x04\x68\xe0\xd1\x0e\xe7\x26\x9b\x2b\xe5\x2f\x2d\xb5\x3f\xd7\x9b\xd1\x12\x67\x13\xa5\xce\x79\x2d\xf0\x1b\xe3\x44\xe3\x84\x57\x91\x45\x02\x2c\x87\xb7\x3d\x8e\x88\x80\x4f\x94\x7d\xb2\x09\x54\x5b\x9a\xc4\x8d\xc5\x1b\x64\x2e\x03\x76\xbb\xd9\x51\x91\x5d\x50\x31\xcc\xb2\x89\x63\x96\xcf\x15\x16\x4b\x3f\x6d\xfb\x30\x50\x78\xf8\x1b\xaa\x87\xbe\x06\x6e\xb0\x6d\xe5\x83\x42\xcd\xe3\xaa\x52\x05\x02\xf2\x52\x28\xf5\xfc\xfc\xc5\x7f\x50\x2c\xfc\x97\xd5\xd6\x18\x65\x69\xc1\x7c\xe9\x2f\x38\x6a\x38\x0f\xd1\x3e\xd5\x48\xcf\xf2\x99\x85\x3d\x2f\xec\x39\xb0\x7f\xa6\x7c\xac\xd8\xb8\x7f\x35\xf1\x03\xaf\x17\x34\x51\x61\x5d\x05\x8a\xf8\x18\xfb\x7d\x64\xd2\x70\x77\xf7\x14\xf7\xe5\x3d\xc5\xa8\xd8\x8b\xf2\x22\x8b\xba\xe3\x42\xac\x28\xee\xf7\x03\xba\x40\x3e\x6e\x10\x7b\x5f\xc0\xf4\x86\xc3\x24\xb8\x56\xa9\xfb\xd4\xe9\xa0\xa2\xb0\x93\xa2\x86\x8f\x40\xe7\x96\x12\x97\xb8\xa8\xc0\xbf\x47\x2a\x88\x96\x34\x5d\x79\xba\x7c\xea\x48\x99\xb6\x83\xc6\xce\x71\x6d\x3b\xcc\x11\x24\x4e\xd0\xfd\xfd\x3e\x7d\x19\x5a\xe6\x37\x39\x0c\x15\xf8\x4e\xcb\x09\x09\xfc\xbb\x89\x1a\x17\xbe\x80\x8d\xe2\xe8\xa3\xcb\x48\x46\xfc\xa7\xaa\x8a\xf2\x54\x3a\x0f\x01\x07\x08\x0b\xb8\xe5\x4c\x77\x23\x11\x1f\x95\xbd\x1d\xc4\xfe\x25\x09\x71\x3e\x44\xfc\x88\x55\xf3\x1d\xb2\x14\x28\xd4\xdd\x74\x98\x85\x65\x0b\xde\x37\xdc\xef\xeb\xb8\x14\x27\x83\xb0\x6f\xce\xe5\x3a\xe5\x3d\x4a\xc7\x95\x2e\x11\x89\x18\x87\x1d\xa8\x87\xcd\x4e\xfd\xfb\xfe\x54\xc7\x6f\x88\xb5\xa8\x67\x13\xc5\x57\x5b\xad\xa1\x69\x79\x48\xd3\x27\x92\x77\x0e\xdd\x97\x36\xae\xd0\x16\xc0\x2e\xfa\xda\xc4\x9b\xbd\xaf\x35\xd1\x81\x66\x96\x9b\x3b\x2c\xca\x14\x54\x14\x9a\x36\xb5\xe2\xf7\x2d\x95\xc1\xf9\x23\xde\xae\x5f\x20\x60\x17\x36\xd5\xcf\xe9\x67\x51\x80\x85\x7e\x28\x2b\x57\x4d\x3c\xc6\xeb\xe4\x44\x11\x5f\x9d\xa3\xd7\x81\x52\xca\xef\x2b\x9e\x8f\xbc\x78\x7e\x46\x95\x7c\xde\xe1\xe5\x21\x1b\xca\xef\xdd\x0f\x14\x9d\xf4\x72\x66\xfa\x51\x5c\x01\xd6\x32\xc7\x89\x68\x0a\xf8\x34\x70\x39\xcd\xfa\x96\xac\x9c\xb7\xa3\xa8\xf8\x08\x96\xdf\x67\x0d\x61\x96\xae\xa1\xa3\x89\x0e\x39\xe8\x52\xf9\xd8\x25\xd1\x6b\x51\x31\xe8\x65\x66\x4d\xa6\x0c\xb1\xfa\xce\xab\xa5\x8c\x8c\x1a\xe0\x89\xdb\x0a\xc0\x63\xfb\xfd\x96\x72\xb3\x60\x29\xe7\xe3\xc9\x6e\x85\xf0\x8e\xe3\x1d\xf4\xd5\x52\x91\x57\xb0\x2d\x10\x14\xa2\xb0\x71\x94\x32\x0e\xa1\xf8\xf7\xd0\x5f\x50\xaf\xc2\x17\x1e\xa5\x07\x0f\x2f\x7d\x23\xf0\x84\x99\xbe\x28\x10\xc6\x65\x5e\xb5\xec\x86\x4a\x50\x73\xf8\xa5\xd2\x4b\xfd\x65\x43\xcf\xbc\x9b\x26\xbd\x41\x1a\xf7\x1c\x05\x13\x53\x9e\x04\x7e\x82\xe0\x3d\xd7\x07\x22\x4e\x53\x02\xd0\xc3\x41\x42\x51\x0d\x8e\xe1\x06\x3d\x38\xaa\x75\x2f\x3c\xc9\xa9\x89\xcc\x99\xb4\x7e\xed\x25\xa7\x29\x48\xd6\x01\x1e\xf9\xd1\x8e\x87\x66\xfd\x3f\x6d\x7a\xd8\x48\x86\x6e\x4c\x2a\xd1\x5f\x79\x59\x70\x2a\xf7\x75\x89\x3e\x8e\x8a\xd7\x50\x77\xe6\xee\x8c\x42\x6b\x9e\x9e\x7c\xa2\xba\x0d\xfe\x91\xe7\x45\x76\x75\xcd\x4f\xd0\x3c\x98\x08\xfc\xf8\x29\x87\x6d\xd3\x4a\xef\x1e\xf7\x22\x14\xb4\x64\x38\x9c\xe4\xd5\x1e\x59\x04\x5c\xc4\xc7\x8d\x6d\x9d\x2a\x2e\xe5\x93\xf4\x90\x9c\x0d\x5f\x38\xe0\x6d\x63\x79\x63\x58\x0e\x4c\x3f\x88\xf5\xc0\x1a\xe8\x48\x1a\xae\x20\x58\x80\x3f\xb1\xbd\x71\x48\xf8\x86\x5c\x97\xfb\xef\x60\xd3\x88\x9c\x62\x79\x53\xc2\xcc\xb8\xf9\x85\x53\x4f\xb9\x67\xc6\xc4\x5d\x83\x76\x93\x0c\x67\xe9\xa1\x2d\x1f\x45\x9b\x61\x14\x12\x9d\x9d\x47\x65\x7d\xa8\x65\x00\x3e\xac\x8d\xb4\xec\xdd\xdb\x4e\x7b\x3d\x26\xd8\xc5\x6d\xa3\x39\xce\xc7\x4d\xa9\xc6\x72\x04\x1d\x00\x9f\xa6\x9d\x52\x48\xb6\xb7\x10\x48\xc3\x5a\x5f\x6d\x00\xbe\x2e\x88\x90\x00\xfc\x25\x2a\xda\x0f\x26\xbe\xd4\xfd\x20\x50\x4c\xe9\xcc\x4d\x5a\xbe\x09\x6e\x58\xd1\x62\xf7\xcd\xab\x5f\x55\x14\x1e\x03\xb2\x23\x4a\xd9\x62\xc9\x8d\x1a\x79\x06\x91\x7c\x90\x8e\xcb\x2d\xd4\xaa\x4c\x4e\x2a\xdc\x6d\x83\x18\xe3\x28\xb3\x61\x3c\xee\x09\xd1\x04\x2c\x0e\x76\x2b\x16\x11\xf7\x6d\x10\x40\x5d\x9b\x78\x5b\x9b\x7c\xae\x78\x9a\x16\xa8\x8a\x86\x5f\xf0\x62\x00\xe5\x87\xe8\xb9\xed\x7e\xa6\xa3\x6a\x21\x2d\x2a\xc9\xc2\xb0\xbc\x4e\x66\xdf\x95\xb5\x17\x0e\xb0\x87\x86\x5f\x43\x56\xf1\x5d\x0d\x65\xbe\x4c\x11\xa8\xcb\x1d\x0e\xce\xf1\xd6\x7e\x1a\xc9\x0f\xf7\x96\xc8\x2c\xc1\xcc\x73\x43\x10\x01\x36\x44\x13\x00\x15\xbb\x0f\xec\x1c\x3c\xc8\x2d\xb4\xae\x9d\x5a\x6d\x19\x83\x30\xf9\x87\xae\x75\x72\x31\x1e\x7e\x42\xcc\x9a\x52\x20\xfd\xa5\x0a\xfb\xfb\xb6\x37\x8e\x11\x0e\xa1\xaa\xc9\x15\x75\xe1\x78\xf5\x73\x3d\xc7\xab\xa4\x45\x19\x04\x4e\x61\xcc\x8e\x28\xf2\xdd\x23\x6a\x37\x64\x36\xcc\xc6\x51\x01\x27\x04\xfb\xc0\xa8\x35\x3e\xa9\x75\x22\xe7\x17\xda\x2b\x49\xba\x16\xdb\x5e\xdf\xba\x7d\x84\xd0\x06\x24\x69\x7c\xac\xca\xfb\x43\xe2\x7b\x32\xec\x3b\x5c\x71\xd5\xf7\x6a\x50\x9c\x87\x09\x46\x29\x12\xa5\xa9\x07\x78\xf9\x52\x81\xa5\xfb\x46\x4d\xfd\x0c\x55\xfb\xf0\x68\x37\xe8\x19\xc8\x84\xb3\x14\xe5\xa2\x64\xd5\xc4\x51\x6f\x46\xd1\xf0\x9d\x9a\xa8\xf1\x3f\x64\x4f\x78\x6d\x77\x54\xe6\xdc\x8b\xf2\x91\x29\xc2\x01\xd6\xf1\x0b\x8c\x8c\xb9\xad\x26\x2a\xf0\x49\x69\x25\xe8\x04\xad\x7c\x26\x2d\x8f\x03\xbb\x40\x0b\x4b\x8c\xe3\xe6\xb8\x67\x71\xb1\xfd\x9b\x7f\xef\x37\xff\x5e\x8b\x00\x0a\xfc\x36\x15\x4a\xd7\xcb\x83\x14\xda\x14\x30\x95\x87\xd2\x76\x3f\xde\x34\x41\x45\x16\x21\x12\x36\x2f\xb4\xd1\xd0\xf7\x13\x76\x14\xa5\x80\x76\x7c\x22\xba\x0e\xaf\x8e\xb3\x28\xef\x45\xd4\x3b\xe5\x90\x4c\x04\x96\x5b\x4e\x3c\xef\xa4\x87\x51\xac\x59\x3b\x9a\xf5\x98\x3c\x6e\xa1\x0b\x8c\x56\x3d\xed\x4b\xda\x6b\x2b\xc6\xa4\xa1\xe9\x67\x63\x02\x30\x95\x7f\x0b\xf0\xec\x75\xad\xec\x71\xbd\x66\x6a\xf6\x2c\xb6\x5f\x35\x51\x4c\xbc\xee\xaa\xd9\x06\xf8\x9e\xa0\x5f\x9e\xd4\xa4\x51\xa3\x71\x61\x1f\xa1\xbd\x86\x62\xf8\xd1\x40\x55\xc9\x8f\x56\x01\x0c\xf0\x8d\x7c\x46\x26\xcf\x31\x94\xbb\xc4\x12\xa8\x09\xb8\xb6\xfb\x2a\x71\x19\x58\x93\xe5\xac\x63\xee\xe0\xf3\x4b\xbe\xf6\xaa\x68\xde\x30\xa0\x9a\x46\x2c\x06\x00\x97\xfd\x81\x1e\x3b\xff\xa0\x96\x53\xef\x59\x6c\xf7\xd3\x96\xef\xa6\x9f\x57\x5a\x99\xbf\x79\xde\x55\xa3\xd7\xa2\xcc\x16\x66\x54\x99\x5c\x51\x00\x48\xbf\xae\x46\x26\x2b\x04\x55\x05\xd3\x32\x4b\xc5\x2b\x3e\x9e\xfa\x67\x98\x0f\x6c\xd6\xb5\x05\x5c\xb4\x48\xcd\x54\x06\x76\x5b\x8b\x8b\x1b\x9a\x7b\x3b\x1f\xa5\x85\xb0\x2e\xc1\x4e\x1e\x55\x36\xf3\xa8\xbb\x86\x61\x5a\x44\xab\x16\x90\x5c\x54\x81\x99\x9f\xb0\x82\x6a\x86\x17\xbf\xd7\xd4\x76\xcd\xc7\xc4\xf1\xc9\xb6\xd4\xdd\x6f\xf9\x29\xb9\x5f\xe9\x7c\xd8\x30\x4d\xd2\x61\x14\x82\x17\x0b\x45\xa4\x1b\x2a\x4a\x3a\xa5\xe7\x83\x18\x29\x0e\xa0\x3e\x53\x1e\xe1\x64\x7b\x47\x53\xf6\xb6\xa6\x62\xd7\xfb\x26\x5e\x35\x49\xf4\x9a\xed\x51\x25\xc0\x41\xb9\x7d\x9a\xcc\xb5\x2c\xdc\x1a\x70\x01\xb8\xe7\xb7\x03\x45\x5a\xb9\xad\xb3\xb9\xd3\x74\xe0\xc5\x76\x6e\xd6\xe9\xcd\xbb\x9d\xbc\x28\x20\xca\xc6\x66\xd6\x67\xdb\x5f\x1a\x9b\x15\xab\x7a\xe3\x37\xd4\xe6\xbf\x51\xb3\x45\xc4\x27\x95\xf0\x0b\x96\xae\xa5\xc3\x6a\x7d\xf9\x0e\x19\x32\xa1\xd1\xf6\x39\xcc\x60\x3c\x1c\x0d\x50\xa9\x29\x9f\x9c\x53\xb9\xf4\xd8\xdb\x63\xb5\x1a\xf6\x41\x8a\x14\x08\xe1\xe9\x21\x77\xcc\x3f\x21\xf4\x67\x1e\x88\xfb\x4d\xf5\x6b\x43\x13\x47\xfd\xc4\x24\x05\x3a\x32\x9a\x1c\x4c\x94\x7d\x1a\x00\x92\x89\x35\x59\x97\x25\x6d\x04\xeb\xe6\xcb\x63\xc7\x2a\xf4\x72\xe0\xb4\xcb\xa9\x39\x2f\xf5\x3c\xba\x30\x41\x40\xd3\x0f\x0b\x10\x44\xcf\x67\x94\x81\x02\x0f\xa4\x4f\x7c\xb3\x13\x78\x4a\x3c\xf4\xf7\xe9\x57\x85\xb5\xf8\x71\x1d\x8f\x66\x46\xbd\xdb\x53\xea\xdd\x9e\x9a\x68\x1d\x75\x93\x97\x3b\x0a\x8b\xaf\x61\x5d\x9e\x76\x40\xd2\xfe\xd8\x66\x59\x14\xc7\x66\x46\x53\xa1\xd3\xfb\x44\x6b\x1b\x4f\x58\x90\x6f\x6a\x86\x2a\x07\x27\x2f\x03\x34\x55\xbe\xb2\xe4\x24\x1a\x3f\xa1\x6b\xcc\x61\x9a\x90\xde\x50\x2a\xc9\x16\x0f\xaf\x05\x8a\x26\xe9\x92\xe2\x86\x33\xbd\x57\xc7\x39\x4d\xa9\xe6\xe4\x36\x70\xe5\xe7\x03\xd5\xf9\xbe\xa9\x30\x02\xdc\xe9\xe1\xbf\xaa\x87\x22\xf3\xed\xa1\x49\xc6\xcb\x26\x2c\xc6\x59\x19\x4f\xe1\xd9\x34\x0a\x9c\x36\x15\xa5\xcc\x68\x64\x32\x9a\x98\xd5\xf5\x25\x87\xf9\x68\xe2\x39\x78\xa1\x3d\xb4\xb1\x49\x22\x34\xfb\x84\x5b\xa9\xfc\xbc\x90\x2e\x49\xf3\x34\x2f\x4c\x31\x2e\x2a\xa6\xed\xcc\x44\x1b\x29\xcd\x9c\x76\x57\x2d\xc3\x7c\xdc\x7d\x15\xac\xc5\x9e\xdc\x03\x9b\xd1\x53\x39\xe1\x2f\xd3\x2c\x4a\x63\x94\x49\x97\x2a\x55\x59\x29\xea\x7a\xd7\xf4\xaa\x19\x99\x64\xb7\xee\xaf\xa1\xcc\x2c\x32\x90\x6a\x61\xff\x5c\x95\xcc\xa1\xad\x28\x28\xe0\xd2\x0a\x40\x72\x69\x41\xa8\x82\xf1\xe6\x50\xb4\xba\x8e\x8e\x9f\x57\x6e\x9d\x73\x65\xef\x4a\xcf\x58\x01\x66\xff\x44\x61\xe4\xde\x50\x32\x6e\xa3\x2c\xcd\x47\x36\x8b\x58\xca\x5f\xaa\x8c\x0a\x56\xf6\x41\xad\x8e\xb4\x77\x6f\xdb\xe4\x2b\x79\x85\xd7\xba\x22\xe6\xbb\x39\x75\x14\x4c\x9d\x5d\xb5\xd9\x3a\xa9\x2d\xa1\x85\xf3\x14\x79\x41\x24\x16\x0f\x54\xc3\xf7\xaa\x56\x2a\xba\xa9\x19\xb8\xad\x89\x77\x2b\xfe\xa6\x9f\x72\x14\xc1\x67\xf4\x24\x94\x10\x80\x08\x14\x1d\x9d\x28\x8c\xc7\x06\x7c\xb4\x88\x97\x7b\xd4\xf7\x96\xa9\x82\x25\x7e\x85\x0c\xb1\x4b\xc3\x5d\x48\xf6\x4d\xad\x75\x74\x94\x5e\x20\x2c\x0d\x8b\x6b\xf0\xa7\x9b\xec\x7e\x9a\x14\xe9\x4c\xeb\x8b\x0b\x0e\x36\xe4\x81\xb0\xbf\xa4\x72\x00\x9e\xf7\xcd\xcd\x13\x31\x8b\x8b\x4b\xed\xf9\x85\xc7\x15\x20\xf8\x0a\x5d\x9c\x9e\xe1\x60\x26\x12\x35\x12\xc2\xa3\x61\x2c\xe8\x85\x7b\x56\xec\xa9\x42\xfc\xc4\x19\xb9\xcc\x64\xe2\x71\x22\x27\xb8\xa6\x73\x82\xf7\xa8\x12\x23\x74\x07\xb4\xfc\xa4\xfb\xdc\x72\x6a\xda\x5b\xa0\x87\x8b\x64\xef\x0d\x65\xee\x06\x66\x38\xca\x07\xac\x0d\xb3\x54\x61\x4d\xe0\xe3\x06\x9a\xf8\x05\x62\x5e\xec\x93\xa3\xc7\x08\xa5\x23\xb0\x3d\xe8\x55\x63\xe9\x2e\x45\x07\x97\x2e\x58\x78\x4e\x9a\xa6\x3f\x57\xcb\x7d\xcc\xa1\xa0\x6b\xe1\x2c\x2e\xca\xb1\x8f\x96\x6c\x31\x30\x89\xad\x70\x08\x28\x2b\x77\xbe\x59\xff\xa6\x67\x87\x32\xc9\xac\x47\x21\x65\x86\xaa\xc1\x67\x76\x4d\x92\x20\x78\xdb\xc0\xb4\xe1\x46\x5d\x01\xf5\xe0\xdc\xcb\xe5\x36\x1d\x49\xd5\x85\x7b\xca\xf4\xdc\xa5\xbf\x5c\x17\x5a\x7d\xb9\x3d\x1e\xe5\x88\x24\xab\xa0\x30\xac\xbe\x07\x8a\xfe\xe6\xb2\x1a\x5c\x1f\xa4\x85\x8d\xd1\xaa\x63\x20\x78\xe0\xb3\x0e\x5d\x29\xcd\xa2\xdc\x32\xea\x53\x68\xbf\x35\xdf\xc8\x4e\x17\x23\x27\x3b\x3c\x1a\x99\x6b\x78\x08\xf4\x3f\x44\x85\xdf\xf1\xfd\x95\x5f\x25\x25\x2d\xff\xd8\x7e\x42\x5b\x03\xa1\x30\x0a\x54\xf8\xaa\x9d\x1d\x5f\xd5\xbc\xa4\x52\xe0\x32\xe9\x8f\x23\x9b\xcf\x6a\xe5\x0e\xad\xbc\xe1\x9b\x44\x57\x14\x69\xc3\xd1\x26\x2b\xd7\x33\x85\xc0\x8e\x90\xbe\xfe\xf5\x44\x91\xc6\xff\x82\x9e\x0c\x12\x98\x6f\x6a\xa9\xc3\x34\x29\x4c\x58\x50\x95\x08\xcd\xc5\x6b\xa8\x5c\xf0\x49\x0d\x8d\xbb\x70\x00\x3c\x8b\x83\x28\xb7\x76\xd3\x10\x8f\x0f\x51\x2e\xa9\x06\xf5\x30\x4d\x6c\x61\x32\x50\x32\xb0\xd4\x1a\x3d\x7e\x18\x42\x10\x6d\x0a\x03\x6c\x79\xc3\xc0\x50\xbc\xa7\x81\x12\x37\x9d\x77\x8b\xf2\xcc\xd8\x38\xe2\x81\x5e\xe1\x7c\x2a\xbf\x1a\xc5\x4e\x10\xc6\xb8\xc1\x8b\xf2\x2b\x78\x3e\xca\xe5\xa7\x2b\x49\xba\xc6\x64\xa1\x42\xbb\x4c\x0b\x8f\x27\xf2\x60\x71\x58\xd2\x5b\xb5\x14\xd3\xbc\xf8\x24\xfd\x17\x5e\xd4\x63\x53\x5f\xf9\xda\x02\x30\x1d\xbe\xe0\x83\x89\x9e\xb0\xc5\x52\x81\x93\x9b\xa1\xba\x13\x50\x05\xbb\xc1\x34\x87\xe6\xca\xa7\x69\x9a\x02\x85\xaa\x99\xa9\xd2\x46\x27\x43\x86\x9a\xd9\xce\x8e\x52\xea\x7d\x86\xc0\x26\xa8\x47\x7d\x17\x73\x19\x68\x64\x3d\x24\xab\x8a\x4f\x03\x6d\x28\x85\x26\x5a\xcc\xa8\x79\x3d\xda\x51\x48\xd1\x16\x06\xfe\xb5\xfe\x2c\x16\xed\x15\x06\x82\x08\xc6\x89\x6a\x58\xa8\x86\x7e\xba\xe3\xe9\xb7\xd6\x3f\xde\xf1\x23\xa3\x17\x29\xb4\x95\x39\xe6\x4f\xf8\x70\xb6\x37\x8c\x92\x28\x2f\x32\x53\x26\x76\xb3\x8a\x3d\x87\xa7\x9e\x9c\x09\xf2\x18\x4a\x74\xc1\x04\x50\xb9\x79\xc5\x3f\xd7\x1e\x0d\xd2\x22\xc5\xa6\x76\x25\x61\xd7\x0b\xa9\x5b\xa6\xbd\x7b\xdb\x61\x3a\x1c\xc5\xf6\x10\x16\xad\x70\xc8\xfa\xdc\xb6\x41\x2a\xf1\xc5\xfd\xed\x61\x14\x47\xe5\xf2\x6d\xf9\xe6\x0a\xb4\x5b\xf9\xb8\xa1\x51\xbd\xbf\xbd\x1e\xd9\xb8\xb7\xcd\x0b\x05\xf0\xe3\xaf\x0c\x53\xc2\xb0\xcc\x76\xca\x27\xa6\x27\x57\x45\xb2\x49\xe2\xf6\x7c\x94\x99\x35\x8f\xee\x87\xd1\x7a\xab\xa2\xd6\xde\x72\x6c\x86\xb7\x6b\x97\xf3\xca\x2b\xa5\xa9\x37\x2c\xbf\x26\xdb\x9a\x16\x80\x6c\xf8\x7a\x69\x7b\x7f\x3b\x4d\x42\xdb\xaa\x5c\x9a\x57\x40\x08\x24\x9a\x2d\xc6\x59\x32\x8a\x56\x98\x5d\xde\xcd\x18\x39\x20\x38\x77\x0b\x64\xe4\xd8\x11\x89\x64\x43\x50\xc5\x2e\xb9\xd6\x4b\xeb\x0b\x12\x22\x7e\x5f\x69\xf2\xf0\x50\x3b\x5c\xfc\x9d\xc0\x2b\x78\xac\x46\x76\xcd\x15\xbf\x98\xdf\x91\x0c\xa4\x70\x3d\x36\x01\xf7\x6c\x42\x48\x50\xba\x56\xb7\xbf\x1c\xf7\xfe\x2d\xfa\xbc\x4c\x3e\xfb\xfe\x4b\x6e\xed\xa8\xf4\x7a\xfb\x04\xeb\x74\x93\x3e\xc4\xc7\xb5\xb6\xc0\xe2\x62\xbb\x18\xd8\x61\x65\x8c\xe8\x94\x8a\x9e\x4e\x05\x1f\x53\xdd\xc4\xcc\x14\xb6\x1f\x31\x74\x64\xc9\xeb\x35\xb9\xd6\xc6\xbf\xd5\xed\x54\x13\x0e\x72\x35\xed\x76\x4e\x29\x51\xd4\xe5\x0f\xe6\xe7\xdb\xcb\x36\x49\x6c\xdc\x52\x61\xf6\x69\x5d\xaf\xf2\x2b\x6c\x90\x45\xc9\x8a\x91\xd9\x27\x47\x72\xe9\xf2\xdd\x4b\x0e\xa5\xde\x8b\x46\x6c\x3a\xe1\x96\x36\x94\xc6\xc4\x65\x15\x5d\x5d\x74\x19\x4f\x2f\xea\xdb\x24\x5d\xc5\x28\x9d\x7b\xad\x9e\xeb\xe7\x0e\x9a\xda\x48\xae\x4e\x36\xaa\x3c\x16\x54\xb4\x38\x38\xe7\xf5\x0f\xcb\x87\xc5\x27\x35\x04\xee\x9e\xc5\xf6\x38\x07\xae\x5f\xee\x84\x7e\x4e\x6e\xa5\x4e\x8a\x3f\x34\x89\xe9\x4b\x87\x02\xd1\xc3\x9b\xd8\xb0\x48\x92\x99\xef\x01\xa5\xc7\x8b\x0a\x41\xbf\x9c\x66\x36\xea\x27\x36\xcb\x77\x94\x6b\x02\x16\xe1\x08\x3d\x38\x7c\xf2\x8d\x4d\x9a\x27\x7e\x36\xfe\x0c\x6e\x42\x78\xf7\x5b\x8e\xe2\xeb\x26\xbd\x7d\x54\x10\xbe\xa7\x99\x67\xeb\x54\xe3\x0b\x07\xda\xf9\xd0\xc4\x31\x01\x43\x4a\xeb\x8c\xfd\x09\x7b\xc0\xc7\x4d\x1c\x21\xe1\xc0\x94\xe9\xb9\xeb\x35\x20\x41\x38\xab\x45\xf6\xce\xaa\xaa\x64\xdf\x64\x7d\x93\x14\x63\x93\x60\xbf\x89\x47\x69\x39\x59\x96\x73\x55\xf1\xb2\xd5\xf5\x19\x45\x3b\xc0\x02\x08\x78\xf5\xf7\x2a\xbb\xb4\x01\x73\xf2\xaa\x19\x46\xe8\x1e\x20\x21\x7e\x77\xa2\xf0\x35\xef\x2a\x89\xc2\xbc\x10\x85\x31\x40\x1d\xce\x69\xf5\xba\x73\x0a\x34\x6b\xf2\x3c\x0d\x23\x9a\x70\x7d\x1c\x55\x58\x69\x8c\xf8\xb6\xfa\x35\xdc\x3b\xde\xfd\x83\x89\x8f\x4e\xee\x02\xdc\x84\xd8\xf3\x3d\xda\xf9\x88\x33\xee\xe8\xa1\xa5\x09\xd6\x30\x82\x9b\x7b\x15\xcc\x08\x90\x7f\x28\x77\xff\xb8\xb2\x1a\x68\xf7\x22\x96\xbf\x45\xcd\x29\x3e\x0e\x14\xc0\xe0\x9b\x0d\xd3\x50\x4b\xed\x28\x29\x32\x93\x17\x24\x6b\xe5\xcd\xc6\x9f\xab\xed\xf7\x0b\x3d\xa9\xae\xe6\x1a\xa2\x61\x97\xf6\x21\xf6\x0e\x5e\x06\xf2\x6c\x20\xa8\x25\x19\xdf\xbc\xd2\x08\xb4\x99\x8f\x63\x47\x00\x25\xfd\x16\xba\x21\x3e\x09\x3e\xe5\x29\xa5\x92\xd5\x28\x4b\x93\xa1\x4d\x0a\x13\x47\x39\xf1\x9b\x6d\xbc\x5d\xa6\xbc\x1b\x6f\x37\x0c\x95\x2d\xb4\xc3\x38\x1a\x76\xe5\xcb\x91\x28\xbc\x82\x0c\x89\x4f\x1a\x2c\xfa\x52\x3b\x1f\x45\x3d\x9b\xb5\xb4\x78\x26\x37\x2f\x05\xa7\xd8\x90\xc6\xa4\x6b\x89\x43\x01\x60\x9b\xf1\xec\x08\x9f\x34\x9a\x74\x6b\x86\xbc\x59\x64\x9c\x5a\xcf\x56\x2b\xcf\xd4\x1f\xc7\xa6\xb0\x6c\x23\x65\xcc\x4f\xa3\xd7\x11\x24\xde\xae\x99\x2d\x00\x09\xa9\xb5\xca\x93\x13\x81\x42\x00\x5f\x9e\xec\xf4\x8a\xcc\x18\xd7\x11\x04\xb3\xfa\x56\x48\x1f\xc0\xd0\x7d\x57\xd9\xef\xef\x06\x75\x45\xab\x32\xf4\xef\x11\x96\x7c\x13\x00\xeb\xbc\x02\x60\x9d\xaf\xb2\x36\xf7\xc6\x61\x69\xeb\xc8\xd6\x38\xd8\x76\x99\xac\xcb\x89\x2f\x5e\x1f\xa1\x72\x83\xb8\x74\x55\xa2\x41\xf5\x53\xe0\x7f\x7e\x99\x1e\x06\x69\x37\x7f\x93\x22\xbe\x33\x49\x92\x8e\x93\xd0\xf6\x1e\x53\x03\x7e\xe7\x10\x8e\x72\x75\x02\xe5\x03\xf4\x03\xbe\x86\x2b\xe2\x31\x3b\x02\x80\x32\xb4\x55\xa9\x7c\xfe\x50\x65\x97\x70\x74\x9e\x39\x52\x9a\x86\xf7\xf1\xfc\xb1\x55\xae\x4c\xd4\x0c\xc3\x57\xe9\xde\x64\x90\xcf\xb7\x16\x09\x9c\x3f\xe3\x35\xa4\x36\x70\x5d\x28\xc6\x5c\x57\x2a\xeb\x27\x1a\x55\x08\xba\x86\x48\x2d\x5b\x7a\xe0\x86\xe1\x85\x7c\xd2\x34\xf1\x46\x64\x5a\x6e\xa8\xd1\x31\x8a\x2e\x2e\x3a\xe2\x50\x25\x01\xfb\xa5\xb1\x91\xba\x86\xcc\x97\x2a\x10\xcd\x25\x65\x29\xf2\xdc\x12\x90\x0c\x48\xe0\xef\xd1\x34\x1a\x90\x1a\xf7\x74\x5d\x56\x47\x50\xec\xd6\x79\xee\x98\xb3\x07\x37\x85\xec\xf4\x78\x27\x2a\x37\xec\x66\xd6\xac\x08\x22\x42\xc8\x43\xcb\x3f\x55\xb3\x36\x8b\xae\x78\xd4\x30\x01\x39\xca\x4c\x7f\x68\x80\x7d\x77\xb8\x1a\x24\x02\xa2\xa2\xf4\x58\xe4\xf3\xd0\x75\x82\xdd\x52\x9c\xfa\xec\x93\x1d\xcf\xf2\xc2\x97\xce\x84\x9c\x6c\xc0\x19\x44\xa0\x49\xeb\xef\x2b\x90\x77\x12\xf5\x07\x45\x3e\xeb\xeb\xfa\xa7\x55\xe4\xfa\x86\x52\xc6\x64\xf3\x22\x73\xe8\xbe\x42\xf8\xea\xf3\xf6\xf9\x96\x52\x76\xbd\xac\x31\xff\x97\x6b\x76\xe8\xb9\x76\xcf\xe6\x65\xce\xd3\xf2\x4c\xff\xc8\xe4\x84\xf6\xbf\x6e\xb9\xf6\xb7\xbb\x36\x2f\x40\xe4\xa4\x38\xc8\x96\x3c\x7e\xa1\xdc\x46\xd8\x14\xa0\xba\xc1\x7a\xdf\xd5\x69\x20\xda\xcb\x43\x33\x1c\xa1\x2b\xeb\x10\x70\x58\x0c\x02\x87\x6b\x98\x67\x1e\x65\x52\x96\x40\xac\x70\x4c\xcd\xc3\xb1\xb1\x16\xd1\x73\xe9\x99\x75\x4d\xb8\xd2\xcf\x9c\x64\xb4\x30\xdd\xf8\x89\xd9\x8b\x0d\x7a\x01\x4b\xed\x74\x79\x79\x56\xf3\xf2\x96\x76\x06\xb9\x33\x7a\x3b\x4e\xfd\x51\x0f\x56\xd4\x8b\x51\x60\x09\x64\x6b\x2f\x37\xa6\xe6\x39\xde\x71\xb3\x06\xeb\xe3\xc2\xac\x18\xcd\xe0\x78\x9c\x18\x1d\xf8\xb8\xc1\xd1\xbd\x4c\x05\x97\x2c\x8d\x69\xc1\xc3\x94\x41\xf8\x13\xdf\xbd\xad\xe3\x0b\x20\x97\x37\x29\x6d\xaf\x0d\x6c\x3c\x24\xeb\x22\xa4\xda\xe5\x0d\xb2\x44\xfd\x44\xf7\x4d\x1a\x84\xe8\xf2\x35\xdb\x8b\xf2\x41\x4b\xd5\xaa\x5b\x54\x8d\xe0\xe3\xda\xeb\x5e\x5c\x64\x9d\x38\x7e\x10\x02\xc8\xd5\x20\xaf\x06\x0a\xaa\x30\x76\xf4\xca\xe2\xc7\x4e\xc3\x8f\xf3\x49\xed\x43\x07\x5e\x6c\x97\x61\x02\x4d\x4a\x1d\x9c\x6b\xc4\x8c\xd4\x1b\xbc\xfb\xdb\x61\x66\x86\x43\xf9\x21\xe4\xef\x0c\x26\xe7\x93\xc0\x23\x14\xc3\xd4\x26\x6c\x55\x05\x03\xae\x72\xa2\xf3\x2e\x9d\x5d\x8b\xc2\x15\x2b\x90\x2e\x61\x8f\x6c\x29\x56\xc9\x5a\xa1\x7c\xa1\x3d\x34\xcc\x00\x01\x2b\x0f\x6a\x7b\xd4\xd9\xde\x01\xef\x07\x20\x44\xf5\x89\xf4\x97\x96\x44\x19\x0a\xb7\xb1\xe4\x29\xa0\xcb\xdb\x10\xe2\x4c\x51\x13\x19\x65\x36\x0f\xb3\x68\x54\xc8\x4c\x19\x02\xfc\x0f\x54\xd5\xf6\x03\xdf\x66\xb2\x45\x11\x8b\x5d\x45\x8e\x8d\x2b\x43\x2f\x83\x15\x50\x25\x88\xfb\x28\x71\x0a\xb3\xdc\x1f\x18\x56\xbb\x44\xe1\xe7\xa2\xc6\xc4\x5d\x0c\x74\x25\x33\xe9\x91\x6a\xa7\xea\xb3\xdc\x63\x17\x20\x22\xa9\xf4\x51\xa4\x8d\x67\x4a\x4b\xe1\xc5\x64\x6d\xb6\x8a\x25\x40\x80\x26\x2c\xef\xc3\x81\x6f\x6e\xdd\x51\x3c\xf0\x57\x03\x45\xe7\x1d\xa6\xe3\x0c\xc3\x3b\xe5\x32\x40\x00\xcd\x6d\x73\x3e\x51\x2e\xed\xf3\xff\xed\x67\x51\x74\xc0\xab\xda\x02\xf8\x23\xd2\xb1\x0b\x93\xad\x9f\x65\x8f\xf1\x44\xc7\xb7\xb8\x2f\x34\x41\xda\xf2\x71\xbf\x6f\x73\x47\x40\xc8\x99\xab\x36\x84\xf5\x34\xf6\x8b\x0b\xed\x41\xea\x46\x44\x24\x6b\xf0\x45\xe8\x89\xc2\xfa\xaf\x0d\xa2\xd7\x5e\xb3\x39\x6d\x75\x87\xba\x2c\xd7\x07\xd0\x6b\xd7\xd5\x00\xe7\x2f\x54\x29\xb7\x6b\x57\x6d\x16\xaf\x6f\x53\x33\x92\x77\x02\x0d\x50\x3d\xa7\x51\x07\x88\xf2\x00\x5d\xba\xa7\x83\x8c\xdb\x8a\xce\xb1\x67\xc3\xe7\x77\x78\xc4\xc8\x0d\x2d\x95\xf1\xd8\x54\xf5\xc0\x67\x01\xc1\x73\x4a\x11\x4e\xa9\xe8\x4f\xf0\xd5\x22\x2e\xea\x63\x23\xb4\x47\xb1\xc3\xef\x35\xc8\xd1\xee\x6f\x8f\x9d\x18\x31\x4a\x5b\x0c\x00\xe2\x93\x9a\x1d\x79\x6e\xd3\x34\x81\x93\x9d\x70\x94\x7b\x75\x20\xc0\x73\xed\xbc\x28\xf3\x67\x7e\x93\x78\x68\xdf\xd0\xc3\x5f\xdf\x68\x8a\xd3\x6d\x42\x3d\x1e\x21\x02\xb9\xe7\xa3\x2d\xf3\x24\x19\x70\x69\x4d\xfb\xaa\xee\xdd\x8f\xe4\xee\x28\xf7\x75\xd4\x8b\x52\x5a\xfa\x18\x84\xb9\xa0\x42\x77\x2e\xd5\xa1\x86\xfd\xba\x9e\x0a\xb3\x49\xbf\x18\xa0\x2c\xc9\xd5\x02\xba\x57\xa9\x1c\x78\x1e\x23\xcb\x02\x6d\xcc\x42\x11\x54\x28\x29\xea\x41\x06\xca\x64\x2d\x6f\xc7\x20\x37\xcc\xc7\x6a\xc1\x8d\x47\x79\x68\x62\x4b\x2d\x7b\x3c\x09\xc8\xc4\x63\xbf\x9f\x50\x92\xb0\x47\x94\x8b\xbb\x58\xa1\x4d\x89\x8a\x74\xc6\xdf\xec\x2d\x5a\x20\x6e\x50\x72\xef\xde\x7d\xce\x4f\x37\xe0\xe4\x8a\xcc\xda\x96\xe6\x6a\x41\xfd\x54\x80\x18\x9b\x77\xee\x73\x60\x97\x30\xe3\xb8\x97\x57\x74\x82\x8f\x4c\xd4\xe4\xe8\x11\xbc\x70\x8e\x4e\x53\xd3\x0b\x19\x47\xab\x09\x72\x98\xff\x91\x4f\x14\x61\x0f\x7d\x02\x11\x12\x93\x18\xfd\x2f\x87\xe8\xa2\xf8\xd8\x85\x0e\x26\xe9\xc7\xd2\x3e\xc1\x93\x3d\xaa\x3a\x34\x47\x15\x99\x7b\x3c\x66\x15\x44\x9e\x3b\xa1\x97\x21\x33\x28\x9b\x17\xf4\xbe\x25\xf7\xfa\xdc\x32\x44\x5f\x4f\x6a\xf2\xfe\x02\xd6\xd7\xcc\xfa\x23\x9a\x2f\xd3\x57\x78\x9f\xc6\xbc\x2f\xea\xb6\x5f\xc1\xcd\xf2\xf4\x04\x05\x1d\x78\xc3\xbf\x35\xf1\x98\xcc\x99\xa9\x22\x98\xbd\xec\xfd\x50\x38\x2e\x8a\xd8\xb2\x92\x3f\x73\xfd\x2a\x20\x0f\xfb\x3a\x69\x89\x7a\xd4\xea\xe5\x3a\x25\xe6\x8b\xfb\xdb\xaf\xda\x35\x79\x75\xcc\xa8\x19\x28\x32\xf9\xb3\x5a\x0c\x79\xfc\xda\x6b\x31\xdb\x50\xbc\x58\x4c\x67\xc0\x9f\x1c\x51\xef\xe4\x6d\x05\x3c\x0f\xd3\x21\xcd\x8f\xa6\x59\xbe\x5d\x11\x7c\x33\x0d\x06\x6e\xee\x27\x8a\x5c\x09\xd4\xcc\x62\x36\xca\x27\x23\xb7\x48\xb7\x85\xf5\x31\x5b\xa3\xf6\xa5\xd9\x16\xaa\xdf\xb0\x81\x93\x46\x7c\xcb\x09\x58\x7e\xa5\x36\xc3\x20\xf6\x02\xac\x25\xaa\xc8\x81\xc7\x26\xa3\xca\x7a\x73\x85\xe3\xd1\x8c\xcf\x15\x6e\x4d\x14\xe9\x1f\x98\xc0\xb0\x55\xb6\x74\xbc\xc5\x5f\xe3\x41\x53\x7e\x50\xef\x2b\x27\xfc\xbe\xea\x91\x87\x69\xb2\x1c\x47\x61\xc1\xf8\x7c\x46\xc0\xd2\x13\xc6\x86\x05\x35\x3b\x32\xa8\x7b\xb5\x00\x83\x1a\xd0\x49\x9a\xad\xd9\x7e\xc4\x45\x3c\x41\xb1\xd0\x8d\x09\xbc\x65\x97\x12\x07\xf9\x14\x5d\x3d\xe2\x7f\x88\x09\x21\x4d\xff\x01\x85\xdc\x4c\x96\xc1\xfe\x0e\xdb\xe3\x1a\x6a\x04\xbc\xbc\x03\x85\x3b\xfd\x31\xea\x75\x02\x7c\x2e\x5f\x1c\x2f\x12\xb8\x48\x99\x77\x2e\x57\x8f\x50\x43\xb7\xe6\xe7\x19\x8a\x77\x11\x95\x0a\x37\xfd\xba\x6f\x6e\x9f\xc3\x24\xd0\x7b\x87\x6f\x66\xd5\x01\x0c\x4c\x1e\x55\x32\xed\xdb\x88\x18\x13\xc1\xd7\x57\x61\xe5\x98\x03\x2e\xf0\x81\x27\xf7\xe8\xe0\xb9\xef\x29\xf1\xd5\x37\x88\xcf\x8d\x71\xcd\xd4\x2f\x43\x5e\x07\x1e\x78\xb9\xa8\xd6\x17\xf6\x73\xba\x7e\x43\x75\x10\xc2\x01\x31\xce\x97\xf7\x8e\xf4\xfd\xb6\x9e\x3a\xb9\x1d\x6c\xa6\x3f\x92\x35\x57\x0c\xd2\x71\x6e\x92\x1e\x87\x2f\x78\x3d\x6f\xe0\xb3\x7c\xd2\x54\x69\xcb\x47\x51\x62\xe2\x2d\xde\x67\x85\x71\x64\x93\x22\xdf\x5e\x5e\xb5\xb6\x27\x30\x34\xad\x8e\x37\x6d\x1b\x13\x0f\x90\x7a\x5d\x95\x95\x5e\x9f\x78\xf0\xfd\x9f\x7a\x8e\xc4\xe1\x28\x56\x23\x41\x08\x3f\xbf\x1f\xf8\x21\x83\xef\x3b\xbb\x97\xdb\x70\x9c\x41\x87\x44\xda\x20\xbe\xe9\xb6\x95\x7a\xba\x18\xe1\x39\xa2\xb4\xb8\xb6\x77\x2a\x10\xc8\x8a\x03\xeb\xa7\x2d\x2a\x38\x39\xe6\xf9\x3d\x9e\x79\xde\x5d\x5f\x16\x0e\xb2\x68\x95\x51\xb5\x58\x83\xf7\x94\xb8\xea\xbd\x9a\x7b\x7b\xe5\x15\xe9\xc0\xcd\xb9\xf2\x7c\xf9\xcd\x52\x9d\xf7\x51\x6d\xd6\xcb\x77\xab\xf6\xc4\x55\x25\xe3\xb1\xb5\xe3\x91\xe6\xb7\x26\x9a\x56\xf4\x53\x14\xe3\xd2\xc4\xc4\xc3\x36\x28\xf7\x18\x4d\x4b\x2b\x8d\x99\x06\x60\xf8\xd1\xa2\x7e\x72\x5a\xbe\x28\x61\x1a\xf2\x00\xde\x67\xe8\x91\x29\x55\xa6\x97\x37\x6e\x04\xbe\x41\xf4\xf6\xaf\xd6\x32\x4b\x58\xbf\x91\x0d\x51\xb2\x41\xe1\xed\x7d\x55\x84\x7b\xbf\x2e\xd9\xb2\xd0\xb6\xbd\xd2\x2c\x13\x30\x79\xd1\xd1\x5c\xd3\x1b\x16\xca\x6b\x5f\xe6\x1a\xa6\x65\x46\x89\x58\xdf\x31\xfa\x1e\x9c\xe3\xde\xc0\xbb\x28\xe9\xc3\x6f\x9d\x50\x2a\xb2\x7f\xa1\x62\x9b\xa1\x1d\x76\x6d\x96\xef\xa2\x27\x2b\x7e\x94\x50\xdb\x6e\x48\xd4\x51\xba\xed\xec\xa8\x18\x17\x58\x2c\x9e\x13\x56\x70\x94\xd9\xa9\xea\x2e\x3d\x98\xe8\xd9\xcf\xef\x07\x5a\x17\x8c\x69\x00\xe0\x54\x4e\xd1\xeb\x10\x4a\x50\xcf\xb9\x54\x98\x6c\x46\xe5\x1b\x50\x3c\xc3\x8b\x3a\x56\xd5\xf4\xf3\x61\x60\x62\x43\xaa\x2e\x33\x6d\x39\x99\x0e\xa1\x30\x57\x34\x21\xe9\x72\x31\x4b\x0b\x5a\xca\x87\x7e\x60\xea\x6b\xf4\x19\x29\x31\xd2\xa3\xe1\xff\x68\x08\x23\x87\xd1\xa1\xc2\x42\xab\x05\x5d\x63\xae\xa7\xf2\x89\x82\xf1\xf4\x4d\x1c\x73\x4e\x0b\xe7\x77\x4f\x39\xc2\x7b\x35\xc3\xb2\x6f\xae\xdd\x8b\xe2\x31\x93\x41\x38\x1a\x65\x2f\xf7\xaa\x0c\x5e\x37\x4e\xd7\x92\x99\xd2\xdc\x62\xe5\x3e\x54\xcc\x03\xf7\xe9\x57\xd0\x08\xfe\x41\xcd\x45\xed\x59\x6c\x87\x69\x3a\xb2\x40\x2c\xb4\x7c\x5e\x7a\x56\xe9\x02\x9c\x9d\x3c\xab\x70\xc8\x1e\x73\x8a\xec\xc0\x4d\xd7\xfb\x76\x29\x2a\xe4\xb8\x33\x8c\x0b\x21\x95\x3e\x5b\x1d\xc7\xb2\x87\x5a\x15\x55\xc1\x89\x6a\xd7\x9f\x51\x33\x5e\xc3\x70\xc5\x26\x89\x51\x3c\x40\xff\x4c\xf3\x00\xfd\x33\xdf\xe1\x2d\xad\x5e\x54\x48\xc4\x89\x75\x77\x4c\x15\x59\x8e\xb9\x90\x6d\x68\x0f\x91\x60\x42\x45\xac\xee\x3a\xde\x1d\x9f\x4c\x1e\x57\xaa\x34\xab\x36\x27\x94\xa4\x63\x1f\xf0\x4c\x04\x81\x6f\x7b\x33\xfc\x9b\x4f\xd4\x60\x4d\x42\xd4\x25\x14\x0a\x79\xe0\x0e\x6c\x1d\x1f\x6b\x51\x51\x26\xc1\x6f\xf9\xb9\xe4\x6b\x6a\xe9\x5f\xab\x52\xd8\x0f\xa2\xa4\xbf\x83\x36\x13\x96\xec\xbb\x81\x02\xda\x5f\x06\x2c\x15\x43\x63\x28\x4f\xf3\x5f\xd1\x6f\xcb\x96\x23\x7f\xc7\x7f\x84\x67\xe0\xba\x77\x4e\x5a\xb7\x8e\xde\xdb\x37\xc7\x18\x05\xf1\x48\xc2\x6d\xde\x72\x14\xf2\xe7\x2b\x5e\xe4\xd5\x68\xb8\x43\xa5\xba\x3c\x19\x29\xe4\xe6\x7e\xae\x84\xc1\xa6\x8e\xe6\xf3\xe0\x9c\x03\x2a\xe1\x75\x69\x54\x8b\xb4\x05\xc9\x1e\x88\xc0\xa4\xac\x88\xd0\xd8\xdc\x64\x96\xa3\x2f\x14\x21\x3e\x0c\x14\xa6\xfb\x43\x05\xd0\xa6\x1c\xa8\x6f\xca\x3c\x68\xd6\x03\x8f\x4e\x69\x19\x04\xcd\x46\x70\x29\xd0\xdd\x95\x7a\x07\xb3\x1d\x25\xab\x96\x01\xdf\xad\xca\xd8\x69\xa0\xca\x4b\xf5\x22\xca\xbe\xb9\xf6\x6a\x1a\xb2\x0b\x60\x22\x79\xc5\x86\xf7\xad\x06\x61\x99\xb6\x8d\x6d\x58\x64\xe9\xd0\xf4\x13\x2b\xe5\x17\xf4\xd3\x8f\x6a\xa8\xf5\xd1\xe0\x19\xdf\x70\xea\xd9\x2f\x8d\x99\xed\x51\xe9\x5b\x97\x3f\xc4\xc7\x1e\x0e\xb1\x6e\xb3\x99\x6a\x95\xab\xe5\x84\x8e\xbf\xab\xa5\x2d\xaf\xba\xd4\xcf\x16\x83\x24\x0a\x29\x02\xc1\x6f\xef\xee\x54\xe2\xcc\x85\x03\xfc\xb2\x2f\xea\x47\xaa\xe5\x1d\x7c\x16\x17\x47\xc3\x51\xd4\x53\xa3\xf8\x27\xd4\x28\xfe\x09\x9d\x0f\x65\x51\x18\x25\xfd\x6d\xb4\x1d\x10\x18\xe2\x4f\xd1\x1b\x83\x10\x3c\xba\x40\x6f\x4e\xfc\x74\x24\x82\x14\x94\x30\xce\x4e\x76\x09\xca\x77\xef\xde\x7d\x9f\x2e\xff\x83\x99\x41\x80\x6b\x40\xa8\xfa\x6c\x47\x61\xbf\x7f\xa4\x29\xea\xce\x92\x2f\x43\xa0\x0e\xc9\x0f\x2c\xb4\x3f\x0c\xbc\xfa\xc3\x03\xda\x7c\x6e\xb8\xec\x25\x29\xb1\x5c\xc0\x52\x43\x60\xfd\x23\x28\xa3\x3a\x08\x8f\x4b\xe5\x7e\xbf\x0c\xd2\x37\x2e\x70\xa4\x83\x44\xe4\x3e\x02\x6c\x44\x34\x8f\x74\x14\xaa\x03\x5c\x04\x12\x9e\xd3\xc2\x40\x7c\x7e\x02\x79\x83\x63\x47\x5f\x38\xc0\xb1\xce\x87\x98\xdb\x42\x2d\x66\x1a\xe8\x16\x2f\xc0\x6a\x2e\x0b\xf0\x7c\xcf\x7f\x00\x5e\x67\xd4\x60\x7f\xc0\x9c\x0f\x4c\xf1\x84\x40\x04\x6f\x60\xeb\xd4\x87\xc9\x70\x3b\x4c\xcb\x0a\xe3\xc3\xe0\x0c\x3e\x51\x74\x32\x7d\x9b\xd8\xcc\xc4\x8f\x96\x3e\x0e\x6f\xe0\xbb\x5a\x9c\x03\xb5\x1b\xf4\xa4\xb6\x10\xca\x10\x29\xed\x8f\xaa\x2e\xc5\x57\xde\xaf\xf0\xd3\x13\x32\x0d\x3f\x9e\x3c\x43\x09\x06\x0c\xe3\x7b\x2a\x00\xdd\x1f\x1d\xda\x5e\xc9\xc2\x5b\x5f\x5c\xe0\x00\xe8\xb7\x27\x95\x51\xb9\xf9\x05\x8e\xb9\x1f\x05\x71\x35\xee\xfc\x5d\xfa\x0d\x61\x03\xaa\x4f\x64\xbc\xdc\x5e\x8e\xfa\x83\xc2\x15\xf6\xf0\x97\x57\x95\xf4\xd9\x55\x1f\xdd\x8f\xbb\xe3\xac\xdb\xd2\x38\x40\x7a\xe3\x02\x10\x6c\xe8\x58\x50\xf9\x39\x82\xc6\x0e\x6a\x0f\x1f\xd0\xc6\xe0\x63\x3f\x17\x97\xa5\xcb\x51\x6c\x67\x5a\x8a\x74\xc5\xcf\xa7\xfe\x9f\x13\x4f\x8e\x59\x1f\x47\x3f\xf0\x62\xfb\xd5\x71\xaf\x0f\x38\x44\xcb\x17\xfa\x4e\xd0\x83\xe7\x63\x15\x11\x65\x36\xb7\x71\xac\x98\x57\x58\x52\x8d\x4f\x6a\x0d\x11\xf2\x37\x5f\x1a\x47\x99\xed\xcd\xfa\x98\x7a\x16\x5b\x11\xc6\x84\xb4\x47\x80\x41\x58\x70\xbc\x68\xde\xc2\xaf\xa6\xf1\x38\x29\x4c\x16\x95\x46\x6f\xe1\x00\x97\x2e\x78\x4e\x8d\x4f\x6a\x91\xd8\xc2\x81\xf6\x0a\x75\x41\xd9\x88\x57\x28\x02\xf8\x44\xa9\x82\xad\x45\x45\xe1\xcc\x25\xc0\xd0\xef\x2a\x8d\x8c\xdb\x1a\x85\x51\x9f\xb7\x5f\x38\xd0\x2e\x32\x93\xf0\x5c\x0b\xef\x54\xec\x41\xd9\xb6\xd2\xe9\xed\x59\x9b\x59\x25\x91\xc6\x0d\x58\xd9\x3c\x1e\x17\xde\x8f\x4c\x52\x28\xbe\x94\xaf\x28\xda\x8f\x7b\x1a\x3e\x7d\xb8\x8a\xc5\xf0\x23\x38\x77\x02\x15\xad\xdf\x52\x2d\xca\xb3\x75\x0a\xdd\x05\x0e\x0a\x5a\xad\x57\x5e\xd9\xb8\x82\xf7\xe1\xbc\x42\x5e\xd8\x38\x4c\x67\xf4\x2e\x57\xe5\x35\xee\xf3\xa2\x83\x7a\x4b\x41\x0e\x72\x09\x37\x5f\xae\x62\xd3\x51\x77\x7d\x43\xf7\xae\xff\x52\x09\x51\xdd\x50\x41\x24\x35\x5a\xcb\x40\xc5\x1b\xf1\x2b\xe0\x65\xe4\x93\x26\x3f\x1c\xa6\x43\x19\x31\x52\x63\xa7\x2f\xbb\xb1\xd3\x7a\x5b\x75\xa1\xcc\x08\x6c\x0f\xed\x09\x51\x57\xc6\x5a\x40\x5e\x76\x49\xcb\x7a\x73\xe7\x1f\xff\x83\x7c\x80\x5c\x5f\xff\xe9\xce\x66\x28\x4b\xb9\x30\x06\x29\xb1\x7c\x76\x65\x03\x38\x85\xb4\xf2\x4b\xa4\x7c\xd5\x12\xe2\x8e\xef\xbc\x8e\x05\x21\x63\x6f\x8e\x3b\xce\x44\x89\x44\x6c\x58\x86\x08\x0c\xf9\xb8\x96\x96\xee\x59\x6c\x0f\x4d\x1e\x8e\xe3\x28\xc1\x72\x63\xbf\x4d\xf6\x43\x7c\xb8\x2c\xca\x6c\xbd\xc7\xe2\x85\x8a\x20\x6c\xc9\x0d\x14\x7a\x1a\xe0\x0c\x23\x90\x48\xe1\xef\x07\x7e\x0e\xf7\xa2\x72\xd2\xe7\x54\xca\x56\x98\x38\xc6\xab\x70\x00\x44\x07\x55\x3e\xa2\xf6\xdf\xaa\x19\xc7\x3c\xd3\x8f\x56\x0f\x20\xb3\x7c\x5c\xeb\xdd\x3f\x47\x6a\x5e\x33\x1e\xb5\x42\x4b\x96\xc3\xbd\x0d\xaa\xba\x89\xcc\x9b\xe4\x0e\xa3\x71\x1c\x77\x4d\xb8\x82\x2c\x43\xf0\x92\xe5\xa7\xf8\x58\x61\x51\x62\x5b\x5a\x83\x59\x7f\x35\x1f\xaa\xab\xf9\x90\xcc\x29\xcb\x7d\x53\x89\x48\xa4\xbf\x15\x1e\xdf\xc2\x94\x62\xdd\x73\x82\xc1\x27\x2a\x9a\x0b\x4d\x1c\x2d\xa7\x59\x12\x99\x9d\x2d\x2f\x96\x00\x7b\x2a\x8a\x1e\xf4\xc6\x51\x25\xfd\x6b\xad\xca\x76\x86\x9e\xb8\x92\x39\x7f\x99\xf7\xe3\x11\x0d\x08\x98\xe5\xd1\x5f\xf4\x2d\x90\x8b\x57\xe2\x1f\x14\xe5\x76\x39\x45\xb1\xc4\xf6\xcb\xa8\x74\xd6\x61\x51\xfe\xc5\x4c\xa7\xa5\x44\x3f\xfd\x70\xd9\x71\x72\x9a\x02\x86\xf1\x37\x95\xa4\xab\x11\x65\x4d\x4c\x17\x8b\xc5\xf2\x83\xc0\x17\x75\x7f\x50\x2b\x29\xed\x9b\x6b\x17\x2c\xd8\xb2\x89\x0b\x9f\x4f\x6a\x26\x17\xa0\x24\x1e\x12\x72\x55\x31\x17\x6b\x1e\x69\xd8\xe5\x2f\xb4\x43\x53\x84\x03\xaa\xbb\x8b\x62\x1d\xfd\xa0\x60\x41\x7d\xb3\xa8\x0e\x82\xda\xbb\x97\x80\x0e\x03\x33\x86\xef\x13\xbf\xa3\x9a\x2d\x97\x15\x78\xa8\x97\x86\x63\x27\x6d\x0a\x4b\x01\x97\xcc\xc7\x6e\x59\x9a\x78\x39\xb3\x79\x98\xce\x78\x1a\x9f\x7b\x81\x2b\x80\x05\x27\x69\x81\x49\xdf\xc1\xa7\xa6\x03\x1b\x47\x61\x3a\x2a\x78\xdb\x02\xcc\x73\x51\x23\x85\x2e\xfa\xa1\xcb\x55\x9b\xe5\xd6\xce\xfa\x70\xf9\x36\x85\x97\x42\x8a\xe5\xb3\x94\x63\x4a\xd9\x64\xd4\x34\x66\x55\x44\xc3\x2e\xff\xa4\x8e\x33\x84\xf4\xad\x91\x4f\x33\xb4\x09\x80\x67\x70\x57\xc0\x13\x03\xc1\xca\x13\xaf\x58\x90\x87\x6b\xa1\xc9\xc1\xb9\xa5\x76\x98\x26\xa1\xcd\x9c\xe9\x83\x3b\x3d\xa2\x2a\xd6\x47\x14\x51\x71\x31\x48\x87\x26\x8f\x92\x68\x46\x01\x73\x2f\xd1\x7e\x15\xee\x83\x32\x16\x95\xca\x85\x34\xeb\x85\x15\x7f\x68\x12\xb8\x2b\x5c\x29\xc7\xb5\x6e\x7a\xc4\xa1\xd3\xb7\x75\x5a\x8a\xf4\xca\x17\xe6\x5e\xb3\x26\x36\x49\x8f\x6e\x16\x35\x95\x23\x4a\xad\x0b\x93\x19\xd2\xba\x6d\x8a\x25\x4b\x1b\xef\xd4\xd5\x79\x68\x53\xc5\x7b\x37\x15\xe8\x86\xd9\x32\x5f\x63\x94\xad\x10\x0a\x2b\xfc\xeb\x2d\x05\x21\x6e\x75\x3c\x51\x8e\x70\x0a\x3c\x49\xc1\x01\x6a\x7e\xc7\x14\xae\x6d\x07\x4a\xae\x4a\xb8\x60\x49\xb3\x82\xbf\x2c\x8a\x79\x2a\x01\xfc\x31\xb6\x11\xab\xf3\x4c\x7c\xea\x72\x31\xf0\x84\xe4\xd9\x2d\x35\x6e\x78\x9a\xc8\x49\x05\x70\xe8\x99\xd2\x0f\x13\x00\x0b\x73\x5a\xb7\xb4\xf6\x34\x55\xf7\xf8\xef\xb5\x46\xd9\x7d\x07\x90\xb1\x87\xcc\x30\x4a\x6c\x86\x30\x45\xd4\x6f\xfd\xf4\x09\xeb\x4c\x08\xd0\x53\x7c\x5a\xf1\x7c\xf1\x3c\x1c\x14\x0f\x07\x04\x7a\x50\xc0\xcf\xf7\xe6\x76\x64\x32\x4a\xbc\x67\x75\x4b\x8b\x9e\x15\x37\x85\xf1\xac\x2a\xca\xb0\xd2\x2e\x7e\xda\x4f\x87\xa4\x71\x99\x2e\x30\x90\x47\xe4\xe9\x95\xec\x47\x45\x28\x2d\x1e\xed\xf4\x40\x2a\x8e\x78\xb1\x55\x59\xe6\x50\x40\x0a\x0a\x6b\xad\x71\x5a\xe7\xf5\x00\x30\x74\x2d\x10\xd1\xef\xea\x78\xac\x7b\x8b\x92\x27\x3c\x4f\xce\x42\xa5\x84\xe8\x5d\x62\x12\x8d\x46\xa9\x20\x95\xf0\xa6\xaf\xe9\x6e\xfd\xb5\x26\x4d\xe0\x32\xff\xeb\x5b\x91\xc5\xc6\x22\xfd\xf7\x8a\x97\xe5\xdf\x2b\x64\x49\x37\x8b\xf2\x95\x78\xbd\x4a\x75\x5b\xde\x89\x30\xdd\xba\x91\xd2\x28\xcf\xa3\xd8\x6e\xd3\x44\x3b\x1a\xc5\x78\xd6\xd3\x68\xfd\xce\xd3\x1d\x9f\x06\x6d\xa5\x86\x28\xf6\xe2\x09\x4d\x55\x37\xb0\xe1\xca\xce\x96\x1a\xbb\xa6\x14\x19\x05\x80\xd3\x78\xb2\x8c\x0b\x99\x78\xb0\xc1\x0e\x4a\x58\x5d\xf0\xe3\x0a\x23\xdc\xf5\x45\xcc\xfe\xaf\x14\xae\xf6\x3b\xa0\xa1\x97\x99\x31\xb5\x53\xbf\xaa\xe2\xa5\x6e\x7a\x68\x1d\x3d\x1b\xd4\x5c\x7e\x46\xc6\x8b\x8f\xdd\x5a\x5f\xb1\x71\xbc\x96\xa6\x6c\x13\x5d\x66\xaf\x06\x90\x5d\xcc\x56\x98\x43\xd1\xac\x2a\xcc\x9d\x56\x73\x5c\xb7\x29\xa5\xe0\x8a\x0b\x79\x73\xc4\xbe\x7f\xa4\x46\x8c\x96\x6d\x96\x45\xb9\x92\x9a\xbe\xad\x64\xcd\x4f\x62\x45\xca\xd0\x85\x7f\xa6\xab\x36\x2f\x60\xc6\x58\x64\x48\x91\x11\xfd\xac\x96\xe9\x2e\x1c\x68\xaf\x99\x2c\x33\xec\x2e\xb1\x69\xae\xd3\x46\xe4\xe3\x4a\x41\x32\x7b\x35\x9b\x55\xef\xfb\xa2\x52\x14\x41\x78\x8b\x7d\x70\x16\x9b\x93\x4f\xd4\xd0\x45\x98\x0e\x47\x45\x96\xc6\x31\xc0\x10\x2f\x70\x77\x64\xaa\xe8\x43\xa6\x8a\x57\xb9\x6f\xa2\x64\x47\xf9\x16\x98\x1f\x2c\x50\xa0\xf6\xfb\xf4\xe6\x85\x38\x4c\x4d\x96\xdf\x53\xe5\xd4\xab\xb8\x90\x4a\xc8\x81\xde\x1a\xb0\x9f\x58\xc3\xdf\x6e\xe0\x8a\x59\x6a\x67\x96\xb8\x2a\x54\x94\xc3\xbb\x8e\x4f\x14\x27\x59\x96\x5a\xea\x26\x20\x54\x24\x59\x4a\x36\x29\xef\x28\xca\xf6\x13\x0a\xbd\x9e\x1b\x68\xce\x80\xf1\x01\x41\xf9\x03\x7c\x7d\x45\x07\x02\x55\x84\xf3\x8d\xd3\x84\x45\x7a\x28\x62\x18\x1e\x93\xb3\xab\xd4\x50\x67\xd8\xd6\x14\xd2\xbf\x87\xc5\xf8\x5a\xe0\x81\xe0\x5f\xd3\x73\x20\xf9\x60\xb7\x9f\x34\xb8\x3f\x51\x62\x54\x40\x06\x50\x05\xe1\xf7\xff\x0e\x66\x4e\x05\xc2\xe4\x07\xfb\x8e\x4c\x14\xee\x92\x78\x04\x97\x1c\x06\xb1\x7c\xdc\x2e\x92\xf5\x7b\x76\xa2\x4a\x81\xbf\x32\xf5\xee\xfb\x93\x1d\xad\x95\x70\x7c\xb2\xf5\xb3\x8e\xa2\x5f\x69\xa5\x8f\x87\xc3\xa8\xd8\xe6\xc3\x83\xdb\x5a\x81\xf5\x34\x17\xbf\x91\xf4\x9e\x99\x54\x04\xc3\x5b\x4e\x9c\x76\xa6\xa3\x8a\x56\x4b\x8b\xf0\x48\x32\x41\xa0\x25\x52\x9e\x52\x0f\x34\x2f\xd6\x4c\xc6\x2a\x87\x0c\x6c\x0a\x94\x4e\xdd\x09\x75\x91\x36\x29\x88\x35\xc0\x53\x2b\x5c\x40\x93\x41\x94\xae\x3c\xe6\x71\x34\x88\x62\xd3\xb3\xf1\x68\x10\x19\x34\x8b\x34\xf9\x2d\x53\x80\x07\xbe\x0e\x8b\x45\x8c\x32\xde\xef\x34\x68\xa0\xef\x6f\x0f\xd3\xd5\x4d\x02\x50\x67\x94\xf4\xc7\xdd\x4a\xd3\xca\x55\x8f\x6d\x7f\x3c\xb4\x2a\x21\x7c\x4b\xa5\x60\x6f\xa9\x2e\xcf\x5a\x19\xd3\xcf\xfa\x22\xe1\x03\xb8\x61\xbc\xd9\x77\xf4\x9e\x44\x1b\x40\x0a\xf8\x8f\xb9\xa4\x56\x78\xe7\x10\x71\x73\x39\x85\x4f\x14\x21\x89\xc9\x23\x93\xcc\x90\x6d\x16\xa6\xa4\x96\x63\x3c\xe0\x5f\x95\x04\xd8\xdb\x4f\xb0\x4a\xcd\xf8\xcd\xf8\xd3\x89\x9a\x4b\xbf\xa1\x6e\xea\xb2\x2e\x89\xa7\x49\x11\x99\x10\xf6\xdd\xd5\x28\x5d\x91\xff\xb2\x1b\x1c\xc8\x8b\x68\x79\x99\xca\x0a\xc0\xb3\x40\xaf\x09\x36\x6f\x3b\xb5\xbf\xb1\x8d\x7e\x32\x51\x73\xcd\xe7\x95\x0d\xb0\x87\x42\x4b\xb8\xdd\xd9\x0a\x46\x94\xde\x15\x5b\x04\x85\xdf\x06\x1d\xab\x30\x83\x54\xfa\x82\x11\xb2\x77\xb8\x4d\x18\x6f\x3e\x6e\x9a\x0c\x09\x07\x36\x89\xe2\x98\xa7\x3a\x61\x4c\x31\xe0\xcd\xc7\xc1\xb3\x55\xf2\x0e\x82\xe5\xec\x9b\x7b\x44\xbd\xcf\xdf\x0e\xfc\x13\xf9\x39\x7d\x16\x0b\x6a\x2b\x04\x12\xb0\xb1\x8e\xc3\x9b\xf3\x09\x6a\x47\x2e\xdf\x73\x88\x96\x4b\x8a\xb4\xc9\x1e\xb2\x43\x7a\x22\x33\xf4\x35\x58\x98\x3f\x52\x6c\x84\x5b\x3b\x1e\xb7\xf9\xb0\x81\x6f\xe3\xe5\xb6\xc9\xf3\x32\x9d\x10\x82\x0c\x31\x1f\x2d\xcf\x80\xa7\xd8\x73\xc2\x34\x59\x1e\xe7\x3c\x25\x23\x0c\x0d\x7f\x4d\x7f\xcc\xc7\xaa\xb0\x30\x48\x93\x59\xdf\xef\x65\x4b\x23\x69\x23\x5d\x2f\x22\x8f\xb7\x95\xae\xcb\x8f\x2a\x13\x90\x69\xbc\xbc\x5d\x73\xaa\x4f\x14\x5a\x14\x38\x34\x25\x83\x24\xfd\x98\x0b\xca\xaf\x7e\x0f\xee\x0c\x1d\xd0\xbb\x9b\xb9\x8e\xcb\xdb\x9f\x9f\x7f\xd2\x77\x8d\x6e\xe0\xcf\xe1\xfb\x7f\x17\x03\x50\x70\x45\x6f\x4f\x94\xb1\x5a\x42\x2f\x04\x65\x77\x90\x60\xba\x18\x6a\x71\x71\xe3\xed\x49\x65\xb0\xc3\x4b\x70\xa0\x2b\x03\x33\xbe\x93\x70\x20\xa2\x8b\xa4\x96\xf0\x0c\xc4\x1a\x1d\xf4\xbd\xbc\x7d\x26\xee\x0f\x14\xeb\xf6\xb6\x8e\x17\x16\x9d\xad\x61\x43\x0e\xce\x69\x44\xae\xf0\x80\x1d\x56\x85\xf6\xc3\x3e\xab\x1f\xda\x2c\x0a\x8d\x74\x10\xf1\xb6\x76\x75\x54\x84\xb6\x6b\xaa\xb5\x05\x86\x29\xb5\xaa\xe7\x15\xd9\x80\x83\xcb\x9e\x04\xb6\xc3\xcd\xba\xbb\xa2\xdf\xc9\x49\x7d\x72\x6e\xa9\xbd\x9c\xd9\xa8\x3f\x28\xd6\xbc\x1a\x33\x2c\xc0\x4d\x5d\x26\xbe\xa9\x6c\x4d\x2f\x8b\x96\xa5\xc5\x2d\x73\xe0\x7e\x97\x9f\xaa\x59\xf4\x97\x48\x30\x4d\x10\xd0\x22\x6c\xff\x21\xe2\x1a\x3e\x51\x73\xc8\x6b\xc6\x66\x45\x1e\xc5\xc6\x2a\x6d\xab\x0b\x13\x45\xc9\x74\xa1\x56\xab\xd9\xb3\xd8\x2e\xec\x21\x13\xa6\x2d\x25\xda\xbc\x59\x3f\x59\x51\xf7\x0d\x4c\x36\x8a\xd7\x1f\xa1\x15\x04\x13\x7c\x8a\x2a\x1c\x4e\xe8\xd8\xc9\x13\x5c\xc3\x65\x3a\xd4\x4c\xf9\xf2\xf9\x13\x64\x0e\xa4\xfd\xea\xe3\xbd\x53\x13\x1f\x39\xe6\x45\x46\xc8\x66\x0b\x8d\xf6\x17\x3c\xb1\x9a\xc7\xf6\x2a\x84\xc7\x28\xb6\x06\x9c\x58\x32\x39\xa8\xfa\x03\x67\x9c\x0d\x5f\x33\x79\x61\x5b\xf4\x92\x35\x73\xa3\x98\xfa\x8a\x95\xed\xd3\xb8\xaa\x88\x33\xab\xb1\x89\xf3\x4d\xfd\xa3\x22\xed\x9a\x30\x4c\x5b\x8a\x8f\xe9\x6d\xc5\xa2\xf1\xb6\xcb\xa9\xe2\xa8\x9b\x09\x8f\x04\x27\x82\x95\xa4\x70\x33\x40\xfc\xc0\x8b\xed\x51\xbe\x1e\x0e\xd2\x38\xed\x47\xd4\xf5\x3e\x38\xc7\x85\x01\xc4\x68\x7c\xac\xa8\x26\x0b\x1b\xa7\x5c\x11\xc4\x7f\x5e\xc7\x1a\xe0\x93\x1a\xa6\x74\x7e\xbe\xdd\xb3\x23\x9b\xf4\xa8\x13\x5f\xe9\xf5\xa8\xfa\x9b\xb2\xdb\x61\xe9\x33\x93\xb1\xed\xed\x50\x02\xb5\x17\x61\x63\x24\xcf\x2e\x2f\x13\x8b\xe2\x87\x70\x71\x82\xa5\xf0\xe1\xe3\x0d\x3d\x83\xf6\x01\xec\x15\xcc\xce\x55\x2a\x48\xf0\xb1\x03\x2b\x8c\x93\x9e\xcd\x8a\x34\x5d\x41\x4b\x14\xfe\x64\x03\xf7\xc6\x27\x7a\xca\x71\x90\x86\x2b\xb9\x1a\x1d\xbb\xab\xfa\x32\x77\x7d\xaf\x30\x8d\x45\xd0\xd1\xe9\x33\xee\x9b\x73\x28\xf9\x86\x67\x35\x4e\xa2\x55\x9b\xe5\xc4\x3f\xe6\xc4\x94\xdf\x55\xba\x89\xef\xaa\xf4\xcc\x44\x39\xd3\xe0\x22\x1d\x46\xc5\x91\x8f\x1b\x46\x9a\x96\xda\xb1\x19\x8e\x52\x06\x42\xc9\x50\xb6\x4a\x14\x4e\x34\x0c\x04\x9a\xac\x3f\x16\x9e\x45\xc6\xe6\x21\x3a\x15\xa0\x9e\x2c\xbe\xf1\xa8\xe7\xe1\xc6\xac\xa1\xdb\xf1\x8d\xc8\x27\x94\xe6\x9b\xc1\xc8\x8f\x24\xb3\x7f\x15\xf8\x16\xf0\x5f\xa9\x62\xcd\x5a\xd4\xb3\xf9\x28\xb3\xa6\xb7\x9d\x6c\x02\xb6\x26\x53\xe9\xc8\xc0\x45\xf9\x40\x99\xfc\x3d\xf0\x15\x42\x1e\xd4\x92\x09\x0d\x32\x10\xfc\xf1\xa0\x81\xcd\x2f\xb3\x79\x91\x8d\xc3\x62\xec\x87\x3b\x84\xa0\xce\xcf\x41\x9d\xae\xe8\x0e\xac\xc7\xd0\x1d\xe0\x78\x15\x2c\xdb\x70\x60\x3b\x3a\x1e\x30\x30\xc0\xf3\x15\x76\x9e\xfa\x48\x89\xc9\xf3\xa8\xef\x0a\xa3\x32\x47\x5c\xd1\xcb\xf9\x28\xcc\x6c\x9a\x84\x69\xdf\x26\x02\xb9\x82\x35\x3c\x0e\x3f\xc3\x27\xaa\x32\x63\x0f\xd9\x70\xcc\xba\x45\xdc\x7f\x0c\xfc\x75\xde\x6b\x28\xdb\xbe\xd0\x8e\x92\x30\xb3\x26\x17\xe2\x0a\x56\x3f\x53\x6b\xfd\x64\xa0\xd4\x55\xae\xd4\x8a\x47\x72\xa5\xfd\x34\x5e\x56\x4c\xcf\x57\x35\xd3\xf3\xd5\x8f\x1e\x0e\x8b\xbb\x36\x2b\xb0\x52\x98\xf1\x2a\xf0\xf1\x54\xbd\xd5\x4e\xcd\x84\x71\x46\xca\x11\x2e\x6c\x42\x25\x50\x18\xba\x7d\x1f\xae\x9f\xba\x89\x0b\x96\x2e\x9e\xa8\x5e\xe3\x4f\x1a\xc5\x44\x7a\xe9\x5a\x52\x44\x9c\xcf\x00\xb0\x71\x36\xf0\x40\xd5\xb3\x0d\x23\x24\xfb\xdb\x36\x2f\x34\x81\x7b\x65\x50\xbd\x81\x08\x60\xa9\xfd\x6a\x1a\x25\x33\xaa\x21\xc1\x74\xbb\x32\xe0\x44\x0f\x9c\x19\x13\x9b\x38\x8a\x09\x8e\x94\x66\x8c\x02\x60\xcc\x50\xe0\x3b\x02\x17\x26\x8f\x3a\x2a\xff\xff\x5f\x69\x49\xd1\x38\x3b\x0a\x1b\x09\xcf\xf9\xaf\x03\x0f\xc5\x05\xd5\x9d\x1b\xd4\x28\x23\x30\x11\x92\xa1\x6d\xc5\x50\x17\xed\x06\x4e\x52\x9d\xd7\x69\x48\xbe\xe4\xf2\x97\xcb\x08\x6e\x11\x03\xfd\x15\x78\xf3\x5c\x5e\xf8\xc5\x05\xd7\xa6\xc3\x7b\x71\x22\x34\x8e\x16\x72\x6b\xa7\xf5\xeb\x9f\xe7\xd4\xff\x34\x23\x5d\xdc\x14\x98\xe7\xda\xdb\x3a\x55\x7c\x97\xd7\xb0\x21\xdc\x68\xb0\x27\x19\x82\x21\x01\x6e\x66\xeb\x54\x71\x22\x3e\xa8\x08\xd5\x92\xed\x11\x72\x1b\xda\x69\x28\x66\x7f\x9f\x6a\x6d\x0c\x94\x23\x41\x4c\x51\x19\xf4\x31\x18\x13\xc3\xa0\x8a\x71\x97\x10\xfe\x4c\x9d\x56\xab\x13\xed\xdd\xdb\xce\x4b\x57\x6c\x84\x39\x82\x2b\x3d\x5e\xba\xfc\xcb\x27\x3e\x42\xfa\x0a\xc3\x57\x42\x48\xe1\xd1\xcb\xe7\x55\xd0\x03\x40\x5c\xd4\x37\x85\x9d\xf1\xb4\x71\x95\xce\x00\xb8\x13\x85\x8c\xab\x61\x69\x75\xc7\x71\x3c\x48\xb3\x84\x2f\x10\x8f\xf4\x4d\xfa\x41\x3e\xae\xc5\xb2\x6e\x2f\xf7\x4d\x94\xe4\xc5\xb6\xf2\x2d\x63\x10\xe2\x0c\xd5\xb1\xd1\xa0\x00\x22\x12\xdf\xc1\x0a\x3a\x42\x44\xab\x78\xc4\x2e\xd4\x6c\x54\x19\x61\x8e\x87\xdd\xd8\x42\x74\xd5\x15\x33\x80\x0b\x15\x2e\x1f\x05\xd6\x35\x79\x94\xcf\x7a\x0b\x78\x84\x3c\xc3\xc6\x15\x65\x08\x31\xaa\xb5\x71\xc5\xf9\xb5\x7c\x60\xe3\x55\x06\x84\x62\xad\x30\x21\x3c\x9f\xe8\xe2\x37\x74\x2b\x09\xde\xc2\x82\x0b\xe4\x93\x44\x7c\xa1\x61\x4a\xc7\x8c\x8b\x34\x49\x87\x70\xf7\xa8\xbe\x00\xc1\xcb\xc7\x35\x64\xc4\x9e\xc5\xf6\xb2\x5d\x15\xc1\x4d\xd1\x43\x69\x79\xb5\x72\x55\xf3\x1c\x27\x51\xb1\x8b\xfe\xae\xc2\x92\xe1\xca\xdd\x07\x7d\xaf\x5f\x29\x24\x30\x77\x38\x96\xd0\xed\xf2\x62\x36\xa6\x81\xda\x50\x97\x78\x7b\xa2\x2c\xba\xbd\xe3\x3d\xe4\x0e\x20\xd0\x51\x30\xf8\xc9\x44\xd7\x52\x9a\xc0\x36\xcb\x59\x0a\x0c\xfd\xfe\x0a\xbd\x1a\x8c\xc0\x16\x8a\x1d\x60\xea\xdf\x9e\x28\xa0\xfd\x39\x55\x64\xfc\x0d\x5b\x3c\xda\x5a\x54\x5c\xef\xf3\xf3\x9c\x58\xec\xee\xf8\xd8\x1f\xd0\x7c\xe9\x06\x96\x06\x00\xfb\xff\x51\x2d\xfe\x7f\x4e\x17\x66\x26\x8a\xba\xef\xb2\xc6\x58\xde\x6e\xc0\x9a\xee\xa7\x52\xb4\x21\x35\x91\x96\xe2\x5d\x7b\x4f\x7d\xe3\x7b\x0a\x0d\x13\x8e\x0b\xd4\x50\xf7\x2d\x79\x18\xa6\x8b\x5c\x2e\x3a\xac\xc8\x72\x94\x0d\x31\x6c\x2b\x14\xa1\xb7\x74\xe8\x73\x51\x75\x7c\xf9\xfd\x09\xd7\x8c\xb7\x71\x4f\x34\x4d\xdd\x0f\x4d\xb6\xe2\xe2\x9c\x26\x07\xf1\xb8\x9a\x73\x58\x8d\xec\x8c\x0a\x61\xce\x6b\xee\x42\xb0\x15\xc1\x34\xdf\x50\xa0\xa7\xe5\x34\x0b\xed\xa3\xbe\xac\xf6\xfa\x44\xcd\x70\xbd\x4b\x25\x5b\xa6\xe9\xd2\xa1\x24\xd4\xb2\xd0\xe4\x3a\x8d\xb8\x1e\x6d\x76\x20\x70\xf1\x78\x6e\xd2\x86\xaa\x90\x7c\xc9\x54\xe5\x53\x8a\x17\xb7\x37\x0e\xe9\x0e\x3d\x76\xeb\x42\xa0\xf0\x97\xf5\xd8\xa1\x74\xbc\xa3\x2c\x7a\xcd\x4a\xba\x8d\x3b\xe4\x48\x85\x4f\x54\x87\x27\x1e\x47\xa8\xb7\xa3\x88\x08\x10\x4d\x85\x0c\x4c\xa4\xc1\x9f\x55\xe2\x26\x26\xb3\x2c\x11\xb4\x4b\x53\xd4\x28\xf9\x9a\xf7\x27\x7e\x62\xfb\x5f\x06\x7e\x56\xe8\xed\xcd\x55\xca\x05\xaf\x16\xe4\xf0\xac\xd7\xe1\x04\x01\x80\x7d\x88\xc5\xc2\x30\x2d\xd8\x79\xa6\x7d\x08\x3c\xb8\xfd\xc7\xc1\xd3\xd5\xca\xcf\x73\xed\x5f\xff\xfc\x4e\x12\xd4\x3a\xa2\xfa\x64\x4c\xe7\x8b\xed\xf8\x7a\xa0\xa4\x87\x98\x19\xc7\x35\xdd\xca\x20\x02\xe1\x20\x18\x70\x10\x33\x3e\x42\x35\x19\xfe\x77\xca\xdf\xc4\xbe\xf9\x0a\xc9\x55\x4c\x92\xf0\xd6\x7e\xee\x6f\x29\x84\xcf\xb6\x0e\x05\x11\x0e\x32\x58\x3a\x08\xd7\xbd\xdc\xff\x1b\x5f\xd4\xb4\x6d\xc2\x1b\x83\xe6\x34\x73\x19\x52\x74\xc1\x92\xc8\xc0\xde\xa2\xf0\x75\x9b\x40\x46\x78\xc4\x8f\xd1\x35\xc2\x94\xdc\x20\x7f\x8e\x20\x7a\x66\x4a\x11\x00\x4b\x67\x07\x4a\x23\x66\x17\x82\x06\x21\xf6\xa1\xd7\x8e\xa8\x01\x63\xc6\x5c\x74\xa4\xc7\x2d\x28\x68\x7a\x8e\xc2\x00\x87\xa5\x86\x2f\xe3\xb7\x8a\x3b\x39\xa5\xf6\x70\x0b\x66\x0a\xf6\x78\xdb\x94\x8c\x33\x7e\xf2\x86\xd2\x57\x78\xe2\x19\x2a\x9b\x21\x13\x46\x1d\x15\x6e\x67\x57\x87\xc2\x2c\x3c\x88\x87\x6a\x6c\xaf\x45\x26\x52\x94\x2f\x11\x4c\x61\x7b\xec\x9a\xb6\x5e\x12\x9b\xf3\x2e\x85\x7f\x12\xec\x52\x15\x56\xa8\x87\xca\xf0\x07\x0b\xef\xbe\x42\x6f\x8c\x6c\x36\x34\x89\x14\x4d\xb1\x73\x30\x40\xca\xc7\x9b\x6b\x8d\x2f\xed\x9b\x6b\x2f\x2e\xee\x52\xc4\x6f\xdf\x55\x46\xfa\x2d\xfc\xa6\x1b\x08\x2c\xdf\x9d\x0c\x04\xb6\x9c\x92\xd2\xcc\x54\x97\x16\x26\xde\x27\xcc\x74\xaa\x89\x60\xb9\x3e\x60\x6e\xb6\x4c\xcb\x57\x8c\xed\x7b\x3a\x50\x36\xfe\x7c\x2d\x31\x27\x16\x20\x9b\x47\x3d\x9b\x84\xeb\x2d\x3d\x06\x71\x56\x7b\xd4\xb3\xae\xb3\x4b\x1c\x25\xce\xc4\x62\x49\xa0\x3f\xcf\xc7\x1d\x6f\xac\x4c\x5c\x44\x43\x93\x45\x48\xb1\x80\x1e\xc4\x6e\x57\x4c\xda\x0b\x1c\x73\x5e\x53\xad\xb8\xe5\x2c\xb2\xcc\x5f\x03\x4f\x35\x4b\x2e\x93\x8f\xa7\x0d\xc1\x46\x2f\x7a\xed\xb5\x75\xd7\xc3\x41\x0e\xf2\x96\x9a\x70\xbb\xac\x60\x85\x37\x6b\x9e\x6e\xef\xde\xf6\x28\x36\xeb\x6b\x19\xb1\x12\xb5\xd4\x68\x26\x57\xc4\xf8\xa4\x01\xb3\xb5\xd8\x1e\x58\x23\x9c\x7d\x32\x3a\xe0\x8b\xc3\xd0\x0d\x15\x6b\xd8\xd0\x57\x2e\xc6\xd9\x4a\x94\x83\x31\x80\x7b\xd6\x78\x63\xd2\xc0\x6e\x6c\xba\xa6\x71\x1c\x25\x5c\xba\xe0\x64\x44\xb3\x85\x9e\xa9\x51\x96\xa9\x01\xe8\x15\x9b\xe5\xdb\xf0\xa6\x01\xc4\xda\x8e\x46\xa5\xf8\x2d\x3f\x9b\xf7\xe1\xc4\x77\x9d\x2e\xea\x07\x71\xa5\x16\xad\xbf\xb4\x70\xa0\xbd\x62\x49\xd8\xfb\xe5\x8d\x2b\xe5\x03\xd8\xb8\x12\x78\x7d\xf4\xd8\x66\x86\x26\x32\x3d\x71\xbf\x2a\x91\x9f\x69\x68\xdc\x52\x44\x6e\x0b\x45\xd6\x72\x9e\xfc\xa3\x34\x88\x1e\x77\xd0\xa8\x2c\x93\xba\x0f\x2f\x24\x5c\xa9\xac\xaa\x26\x30\xad\x89\xd3\xa4\x4f\xaa\xf6\xe8\x45\xff\x07\xa5\xa0\x0f\xe1\x09\x11\x4e\xd8\xed\x4a\xa0\xd1\x6a\x75\x1e\xe9\xb4\x12\xef\x3a\xad\x45\x25\x32\xd3\x1b\x87\x28\x46\xb8\x69\xa9\x72\x99\x4b\x25\xaf\x61\x24\xaf\x6b\x43\x93\x23\x79\x11\x30\x97\x92\x6e\x03\xc4\x02\xaf\xe1\xba\x9a\x63\x4c\x13\xfb\x6c\xf9\x3f\x68\xac\xbd\x8d\x52\x10\xe2\x8a\x3b\xf8\x3c\xe2\xcd\xeb\x88\x7a\x79\x46\x46\x0d\xf6\xde\xa1\x78\x45\xc0\xa1\xe5\xaf\xa3\x25\x7c\x5e\x53\x2d\x6e\xed\x94\xce\x06\xb1\xcb\x43\x04\x35\x32\x77\xab\xa6\xfc\x7f\x01\xeb\x8f\x80\xe5\xfd\x89\xe7\xbe\xc5\x1a\x72\x5c\x11\xa5\x51\x47\x5a\xfd\x00\xad\x2e\xa4\x1a\x3b\x3b\xca\xf7\x70\x2c\xcf\xcd\x57\x72\x57\xcc\x99\x40\x8f\x1c\x55\xc0\x33\x1c\xaa\x23\xbc\xfe\xeb\x89\xc7\x8f\xad\x0d\xd2\x74\x24\x12\xd9\xc8\x05\x5f\x57\x93\x83\xaf\x37\xee\xfe\xcc\x2e\xdb\xcc\x26\xa1\x0b\x92\x14\xef\x8e\x3b\xa9\x54\xba\xd3\x51\x01\xd4\xb7\xa3\xa4\x2f\x6f\x47\x80\x90\xba\xb1\xdd\x8f\x12\x4b\xfa\x38\x08\x12\x8e\x28\xf9\xb5\xff\xe1\x43\xfd\x10\xb7\x82\x09\x1b\xee\x1f\x9d\x57\x64\x6e\x5b\xa8\xe5\x8f\x10\xe5\xcf\x9a\x66\xc2\x88\x18\x4b\x44\x64\x7d\xb5\xad\x35\x55\xd5\xb6\x56\xe7\x59\xdd\xd2\xeb\xc7\xe9\x90\x27\x65\xbc\x24\x30\xcc\xa4\xe4\xc9\xfe\x99\xc6\xa5\x61\x24\xa6\xd4\xf2\x6f\x1d\xe3\x84\x43\x01\xd6\x49\x2f\x41\x81\x95\xae\x39\x9e\x54\x14\xaf\xdf\xc0\x0a\xe2\x93\xca\xd4\x46\x68\x93\x62\x37\x5d\x2f\x9c\xf8\x06\xfa\xff\xae\xe3\xb3\x67\x51\xb4\xb5\x10\xef\x4a\xfb\x87\x16\x0b\x4f\xdc\xd0\x02\x81\x13\xbc\x1f\x78\x5a\x50\x66\x73\x77\x4a\x2a\x5e\x84\x6c\xcb\xd4\xa1\xe3\x4f\xdf\xa6\xa5\x8a\xe3\xed\x18\xff\x90\x01\x53\x5a\xb7\xd8\x81\x7f\xd9\x48\xc1\x99\xdb\x6c\xd5\x79\x45\x44\xa9\x00\x88\xf3\x71\xad\xe6\x30\x3f\xcf\x8b\x2e\x93\x12\x24\xcc\xcf\xfd\x40\x83\x85\xe8\x71\xe0\x7e\xb6\x4d\x1b\x54\x5e\xdd\xa4\x0b\xd6\xcc\xb1\x40\xf1\x18\x1e\xab\x60\x92\x06\x76\xb8\x5b\x09\xe0\x62\xba\x1d\x0b\xf2\xb1\x8e\xe2\xfc\x01\x74\x14\x86\xe7\x49\xf2\xeb\xb4\x43\x7f\xf7\xa9\xa9\x82\xb3\x6d\xc3\x48\x3f\x2c\x07\x53\x1a\x22\x74\xfa\x0b\x7a\x03\x78\x1b\xe8\x7c\x22\xcc\xbd\x1d\xe8\xd1\x3c\x0a\xc2\x59\xd0\x97\xb5\x4d\x1a\xb8\xe4\x5e\x6e\x67\xb6\x6b\x71\x7f\x82\x1a\xf3\xad\xe5\x8b\x4d\x1a\x91\x79\x61\x92\x5e\x17\x7d\x09\x84\xc1\x17\x95\x98\xd1\x45\xa5\x1e\x90\xd8\x3e\x0d\x27\x23\x60\x80\x15\x02\x72\x0c\x2e\x01\x42\x1d\x32\xae\xed\xe1\x12\x51\x12\x0e\xa4\x69\x20\x55\x6c\x2f\x07\x7c\x49\xb5\xcd\xe3\x34\x1d\x0d\x52\xe1\x51\x11\x13\xa2\xec\xfa\x6f\x4f\x7c\x05\xe5\xbc\xd3\x32\xcc\x6c\x91\x31\x14\x49\xb1\xe7\x3e\x54\x2a\x0e\x0f\x27\x9f\x69\x28\x68\xf7\xa2\x3c\xcc\xa2\x61\x94\x98\x22\xe5\x46\x99\x63\x16\x51\x3a\x7b\xda\x84\x65\xf6\xb5\x19\xc5\x52\x80\xf1\x63\x5c\xe8\x2d\xc2\x21\x8b\xfa\xd4\x93\x6a\xe2\xb8\x58\x4b\xb3\x95\xed\xe5\x2d\x39\x74\xac\x0b\xfe\x4a\x5f\xb1\x20\x3a\x0b\x0a\x02\xbd\x13\x31\x2c\x36\xe3\x9f\xe1\xbd\x03\xe3\x30\xd3\x79\xd2\x63\x9c\xf3\x28\x77\x06\x0c\xb7\x7a\x1a\x9e\x88\x4f\x6a\x95\x96\x7d\x73\xfb\xda\xb1\x5d\x46\x15\x1a\x77\x78\x4a\xdd\x6d\x9d\x36\xee\x39\x8f\x4b\xae\x18\x4a\x94\x48\x44\xbe\xb8\x41\xd2\x65\x64\x6d\xd6\xf2\xf0\x60\x94\x22\x45\xf1\xd3\xe7\xce\xc6\xc9\xa6\x49\x45\x47\x35\x52\xce\x05\xba\x17\x38\x1c\xc5\xa6\x8c\xe1\x7c\xa7\xed\x17\xaa\xfb\xf0\x0b\xb5\xe4\x7a\x26\x8e\x4d\xde\xf2\x15\xa0\x1b\x81\xea\x33\xdf\x68\x8c\x10\xcd\x72\x16\x85\x26\xe1\x79\x31\x27\x6c\xe9\x3c\xca\x6c\x47\xcd\x63\xdf\x9f\x78\x39\x72\x13\x17\x36\x4b\xa0\x34\x50\x2e\x07\x2e\x5a\xd0\xf6\x95\x02\x86\x87\x8c\x20\xfb\x11\x8c\xab\xc2\x05\x67\xfd\x59\x15\x11\xdf\x53\x59\xcf\x65\x25\x1b\x7d\x58\x8f\x12\xed\xe8\x78\x6f\x60\x0f\x15\x69\x86\xe0\x4f\xf0\xe8\x2d\xa7\xfe\xf0\x8d\x86\x39\xc7\x76\xcf\xc2\x47\xf1\x6b\x65\x5a\x7a\x45\xa3\x75\xab\x5c\x3d\xb5\x8a\xb1\x03\x17\x0a\x8b\x85\xbf\x9f\xf3\x9a\xb8\xe8\x72\x8d\x17\x72\x7e\x9e\x82\x69\xca\x39\x3c\x35\x03\x13\x50\x20\x7e\xbe\xaf\xb4\x92\x74\x97\x3e\x4c\xc7\x49\x61\xb3\x7c\x1c\x15\xf4\x56\xf1\xd7\x37\x03\xcf\xec\x72\x53\x37\xe9\xcd\xc8\x66\x3b\x3d\x67\x0f\x37\x29\xb1\xa6\x7e\x86\x27\x88\x45\x73\x98\x62\x38\x64\x8a\xf7\x27\x4a\xdb\xf2\xb2\x16\xb0\xb8\x31\xf1\x58\x67\xa0\xf7\x79\x9c\x10\x76\x1c\xf9\xf0\x4f\xf5\x10\x7d\x7d\xe3\x3d\x57\x9a\x29\x13\xc5\x00\xf7\x23\xb2\xc5\xba\x60\x25\x3e\xa5\x99\xf5\x56\x53\xa1\x37\x1f\xa4\x6b\xbc\x53\x90\x61\x32\x52\x97\x4f\x6a\x79\x2a\xb3\x7f\x2e\x8f\x73\xc1\x68\x22\x42\x67\xbd\x10\x3e\xa9\x0f\xe1\xec\x5b\x62\x03\xe1\x78\x45\xb8\x92\x22\xea\xa0\x0a\x3b\x31\xb2\x61\x54\xa6\xac\x56\x8f\x79\x5d\xae\x00\xe0\x1a\x12\xb8\xf5\x32\xa3\x72\x61\x23\x1c\xf7\x4c\x47\xc1\x7f\x67\xa6\x0d\xea\x02\x5d\xbb\x9c\x66\x98\x78\x11\x73\x49\xb1\x9f\xe3\x88\x71\xfb\xe5\x3a\x59\x65\xac\xe1\xed\x1d\x6f\x6a\xfa\x66\xd5\xee\x50\x12\x0e\x77\xe9\x33\x32\x75\x58\xde\x00\xec\xf3\x0e\x44\x32\x12\xd3\x95\x06\x1a\xc7\x37\x27\x4a\x7b\x12\x78\x47\x24\xd8\x4c\xc9\x22\xf3\xb8\x35\xfe\xa9\x17\xf7\x53\x6d\x1f\x3a\x93\x4a\x10\xf7\x8c\x06\x7b\x9d\xa9\x2a\xe2\xa6\xab\x36\x5b\xd7\xc9\x39\x86\x03\x91\xe4\xb6\x3a\xbe\xa7\x71\x6a\xa2\x35\x32\x11\x3f\xfa\x34\xfe\x03\xd5\x02\xfa\xa0\xc9\xf0\xed\x6f\x77\xd3\x71\x7f\x50\xb4\x54\x48\xc5\x61\x94\x34\x4a\x1b\x1a\x4d\x51\x4f\x80\x7e\x52\x44\xf5\xbe\xeb\x42\x8d\x45\x5e\x72\xe9\x30\x1d\x0e\x99\x75\x13\xce\x0c\xdd\x71\x27\x8b\xe3\x47\x9d\x66\xa6\xa2\x92\xf4\xb9\xff\xe6\x1f\xce\x78\x1f\x89\x80\x03\x0f\xec\x82\x16\x1e\x3c\xde\x20\xd9\xf2\xaa\x79\xed\xb5\x75\xfa\x35\xd4\xfb\xef\xab\xee\xd4\xa9\x89\x52\x89\xad\x2f\x53\x6a\xd6\x46\xc5\xa0\xf4\x61\xf3\xf3\x9c\x8d\xa1\x34\xc1\xc7\x0e\x18\x96\xd9\xd1\xb8\x1b\x47\xe1\x36\x45\xcb\xf3\x00\x01\xb7\x44\x2a\x0d\xb4\x98\x42\x81\xed\x6b\x73\xe7\x1d\x7a\x88\xd0\x5e\xdb\x4a\xdb\x86\x44\xf5\x02\xad\x41\xda\x1b\x7f\xff\xe3\x1d\x35\x24\x02\x41\x5b\x04\x09\xdb\xa6\x8a\xc1\x4b\x53\x6b\x9b\xe4\xf9\x47\xca\x5d\x83\xe2\xed\xc3\xc0\x8f\xe6\x60\xac\x02\x9b\x86\x33\x58\x3c\xd9\x07\x6a\x46\xfe\x9b\x9a\x03\x64\x4b\x67\xeb\x67\xdd\x6c\x97\xc2\x3b\x9a\xac\x17\x25\x26\xce\x67\x34\x32\xfa\x56\xa0\x5a\x97\x47\xaa\x63\x2b\x75\x7f\xb4\xd4\x2e\xd2\xbe\xc5\x13\xdf\x27\x1e\xee\xaa\xba\xda\xab\x2e\xe0\xa3\x19\x7a\x22\xb4\x23\x5a\x0b\x18\x63\x16\x32\x40\x2c\xfa\x58\xc7\xf3\xa5\xdc\xc7\xae\x75\x61\x8b\xd3\xfb\x9c\x51\x78\xbd\x1c\x53\xc9\x34\xb2\xc7\x8a\x38\xf4\x97\x22\xcf\xdb\x52\x7a\xf8\x7e\xbb\x15\x69\x61\x62\xe6\xed\x60\xee\xbe\xc0\xa3\xa0\xeb\x1b\x87\x08\x42\x72\x92\x01\x56\xba\x5d\x4e\x93\x78\x0b\x78\x10\x91\xed\x33\xae\xdc\xa9\x44\x95\x37\x27\xab\xd5\xdb\x2d\xc8\x04\xc2\x15\x3f\x32\xf5\xb6\x2e\x2a\xec\xb0\xe5\xff\xec\x92\x82\x54\x5e\x0a\x1e\x57\xc4\x4e\x79\x01\x83\xe4\x38\x7a\x9c\x90\xf6\xb1\x89\xa7\xa6\xec\x5b\x81\x85\xc5\x90\x80\x85\x63\x85\xa6\x05\x1f\x2b\x60\xd8\x28\x8b\x20\x90\xfa\x82\xd7\x6a\xf1\xba\x2d\x8a\x61\xc7\xe4\xb9\xcd\x08\xa9\xb8\x6f\x8e\xef\xee\xcb\x8a\x10\xe7\xcb\x81\xe6\x00\x1c\x0e\xd3\x5e\x54\xb0\x4d\xc4\xaa\x42\xcb\x00\xd6\xed\x2d\x2c\x00\x9e\x8f\x50\x00\xdb\xcf\xa7\x6b\xe5\x3a\xd9\x60\x6b\x8b\x65\x3d\x3b\xa5\x2e\x02\xc5\x76\xcf\x3c\xdb\x51\x5a\xbd\xd8\x93\x52\x3d\x7e\x46\x35\x92\xf2\x51\xea\x45\xb0\x37\xa8\x41\xb9\x71\xe1\x23\x99\x13\x8b\x41\x96\xae\xcd\x2a\x66\x21\xea\xe6\xe0\xc6\x5a\x70\x18\x28\x4f\x5c\x99\x28\x98\xd4\x11\x87\x62\x5f\x8e\xcd\x5a\x3e\xa3\xc6\x67\xef\x4c\xbc\xd1\xe7\x1a\x37\xd2\xc3\x27\x3a\x52\xdb\x5b\x1e\x2b\x79\x16\xdc\xe8\x5d\xc5\x41\x75\x77\xb2\xa9\xc1\x33\x3f\xdf\xfe\x4f\x1e\x9d\xf1\xaa\x8d\x10\x9b\x86\x8f\x61\x92\x12\xfc\xc7\x55\xec\x65\x6c\x0d\xa8\xcb\x22\x4a\xbb\x04\xbb\x81\x52\xe8\x86\xf2\x89\xe7\x83\xad\x9f\x95\x5e\xbd\x8a\xea\x7e\x56\x63\xb8\x2d\x7d\xfb\x78\x9d\x1c\x3b\x7c\xf9\x23\xc8\x95\xf5\x2c\x2b\x2a\x17\xd7\x26\xde\x7e\x9f\x53\x63\x32\x71\xf1\x7c\x4b\x97\x67\x37\x0d\xcd\x7a\x66\xee\x24\x2d\xec\x76\x3f\xe1\x7e\x72\xa2\xa1\x41\x54\xb1\x40\xf8\xf6\x1f\x27\xbe\xd4\x0a\x0a\x40\xb4\x8b\x4e\x51\xc0\x09\x77\x7c\xbc\xe6\x33\x68\xb6\x55\xa1\x89\x75\x83\x4d\x38\xd6\xeb\x44\xf2\x2f\xb7\xfb\xcc\x45\x2e\x14\x43\xb4\xbe\x85\x63\x48\xbc\xcc\x60\x9c\x77\x4d\xd2\xcb\xc1\x78\x2d\x38\x56\xd5\xf7\x67\xce\x06\x91\x4c\xdd\xad\x4c\xdb\xd0\x3e\xa5\x68\x94\x34\x4a\xf2\x3c\xda\x67\x88\xd8\x6f\xea\x75\x78\x41\x71\xd8\xff\x31\xb5\x7d\x64\x4b\xd2\x6f\xc2\x69\x30\x47\x15\xde\xf2\x56\x25\x37\x77\x4e\x33\x92\xee\xc4\xfb\xc4\xe3\x64\xae\x57\xf8\x99\x0d\x72\x6c\xb8\x64\xd1\x7f\x83\xb1\x7f\x62\xea\x27\x14\x4e\x4f\x14\x0a\xf8\x4d\xbc\x27\x69\x25\xa9\x69\x4e\x53\x44\xf9\xf2\x3a\x6f\xcf\x45\xb7\x3c\xfd\x48\xfd\x25\x95\x4d\xf2\xc8\xac\xcd\xb7\x29\x2e\x19\x1e\xb6\x45\x0e\xff\x00\xef\x01\xd0\x13\xaa\xcf\x0b\xe5\x21\xad\x66\x69\xef\x6e\x76\x64\x98\xf0\x5a\xb5\x89\x03\x4a\x3a\x52\x57\x3f\xc4\x7a\x51\xfb\x90\x01\x85\x5f\xdb\x7d\x31\xf9\x3e\x6d\x42\xa4\x1b\x77\x15\x6f\x36\x73\xe0\xf1\x1f\xa9\x8e\xff\xa5\xc0\xb7\x7d\xef\x2a\xc1\x07\xb3\x6a\xc3\x96\x82\x62\x31\xf3\x80\x4c\xfb\xaa\xee\x51\x6c\x56\x53\x00\x87\x84\x39\xa1\xe5\x59\x14\x2a\x15\x10\x9b\xac\xcf\xaa\x39\xd8\xff\x5d\x43\xd8\x6e\x6b\x69\xe1\x63\x13\x0d\xa8\xdb\xd2\xf1\xbe\x76\x39\xb6\x43\x4f\x71\xec\x10\x67\xfe\x3d\xd4\xdb\x3e\xe5\xd6\xca\xec\x30\xcd\xcc\x47\xc3\x86\x3f\xaa\x81\xf3\xea\x38\x2f\xa2\xd0\xce\xa8\x19\x9d\x63\xca\x1d\xbd\xa5\xdb\x7d\x3f\x08\x7c\x5e\x3f\x48\xd3\x38\xea\x9b\x84\xf4\x84\x9c\xfb\xaf\xfe\xa6\x7e\x32\xa6\x1b\xb2\x4c\x24\xac\xe4\x3b\x9a\xdc\x95\x4d\x12\xff\x4f\xa0\x54\x66\xeb\x32\x80\x0b\x07\xa0\x09\x61\x3c\x5f\x99\xa3\x7d\xf2\xf8\xdc\xf7\x9b\x92\xc4\x22\x3d\xc4\x93\xb9\xa8\xf9\x1f\x51\x28\xe0\x23\x4d\x88\xa9\x9e\x5d\xb5\x31\x8a\xff\xca\x2c\xbc\x47\x1f\xe3\xe3\xfa\x38\xc8\x62\x7b\x7e\x9e\xa6\x6b\x99\xcd\x90\x96\x1f\x9a\xa7\xdf\x0e\x94\x5f\xe2\xc1\x59\x04\xcc\x27\x94\xd4\xfc\x19\xf0\x57\xc9\x1c\xa7\x6a\xc4\x1e\x57\x13\x3c\xf7\x26\x3e\xbd\xff\xf3\xc0\x13\xb7\x4e\x1b\x54\xaa\xda\x34\x6c\xda\xb7\x8e\xa0\x01\x97\x03\x38\x3d\x1f\x7f\xc4\xd0\xd2\x30\x12\x8e\x37\x14\xf5\x6e\x29\x44\xc4\xad\xda\x67\x1c\xde\xf6\xd5\xa8\x55\x1a\x2f\xe1\x0e\xd6\x44\xc2\x0a\x1c\x6e\xc6\xc5\x78\x98\xa0\xed\xc1\xe8\x90\x89\x27\x74\xbe\xaf\x52\xbe\xd8\x82\xcc\x71\xc6\x5f\xf1\x43\x45\x99\xc6\xc2\x64\xb0\xe1\x77\x5c\x90\xd0\x1f\x9b\x0c\x52\xff\x12\x4e\x92\x8d\xc0\x6a\xbe\x89\x97\x51\x91\x03\xc6\xca\x7d\x6f\xa2\xf3\x75\xcf\xc7\xfc\xea\xb8\x87\x68\x56\x11\x12\xba\x3e\x5c\x6d\x87\x95\x79\xed\x5a\x14\xc7\x51\xd2\x4f\x6c\x9e\x43\x82\x17\xa0\x51\x70\x2b\xf0\x71\xad\x12\x44\xc3\x20\xf4\x39\xac\xba\x26\xe8\xb7\x47\xae\x59\x93\x17\xdb\x3d\xa2\xfa\x4d\xc5\x88\xcd\x16\xa7\xc2\x10\x8c\xbf\x3a\xa6\xf9\x6e\x6e\xd0\xea\x11\xa8\xa8\xbf\xdd\x81\x30\x33\x08\x77\x71\x79\xd1\x7c\xac\x5e\x62\x91\xe6\x39\x6b\x32\x3a\xaa\x49\x45\xd4\xa2\x8d\xc0\xb2\x41\x7a\x8b\x28\xf4\x7a\x05\xa2\x5c\x2e\x17\x90\x37\xbc\xa9\x80\xfb\xf9\x9a\xb5\xa3\x4d\x86\xa3\xe5\x14\xb1\x2e\x2b\xee\x02\xf6\xb6\xc8\x65\xb7\xd6\xe0\xe3\x8b\x8b\xdc\xe5\xe6\x96\x3e\xd2\xb4\xbb\x95\x6a\x7e\xcb\x09\xd7\x9e\x68\xaa\xcc\x0c\xd2\xb8\x47\x32\x1e\xbe\x2c\x35\xf1\xc9\x01\xf5\xc6\x04\x56\xbb\xab\xd3\xd0\x5c\x59\x36\x79\x31\xe3\xe6\x79\xff\xee\x23\x1d\x7f\x23\x28\xb6\x30\x7f\xac\xca\x4e\xf7\x1c\xd8\x4f\xc4\x34\x4e\x0d\xb8\xbc\x45\xd4\xe0\xee\x4f\x34\xb6\xf0\xb4\x36\xa7\xbb\x3b\x0d\xf3\x12\x51\x92\xa4\xab\x9e\x3f\xd5\xd1\xd1\xbb\x40\xa2\x2e\x33\x5d\x1a\x8e\x7e\x66\x45\x40\x4d\xe8\xf6\xcb\x4b\x15\x6e\x79\x5a\x60\x22\x32\x25\xa5\x77\x88\xba\x0d\xa2\x11\x2a\x99\x88\x18\xbe\x45\xcf\x8a\x61\x86\x55\x28\x92\xa7\xc1\x0f\x07\x3c\xfa\xcd\x6c\x1c\x13\xf5\x05\xf7\x9a\xa4\x74\x7a\x51\x6e\x4d\xce\xc5\x16\x17\xd4\xb8\x78\xfa\x52\xad\x82\x47\x12\xf4\xc2\x73\xce\x63\xad\x81\x37\x89\x8d\x8d\xc7\xe5\x74\x9c\x15\xd6\x62\xed\x3a\xca\xe1\xf9\x05\xd7\x43\xa7\xad\x2d\x04\xa1\x8a\xfa\x38\x8a\x0b\x99\x72\x74\xe4\xb1\xa5\xc9\xa8\x93\xc7\x66\x76\x39\x0d\xc7\x39\x65\x7a\xa2\x24\x5c\xfe\x1a\x1f\xab\x80\x75\x25\x4a\x98\xb7\x4b\xda\x05\xa5\x1f\x40\xd7\x4b\x38\xbc\x00\x87\xb9\x8f\x60\x90\xff\x0b\xdb\x43\x6a\x96\xf2\xaa\x7a\x36\x8f\x32\xd3\x8d\x41\x2d\x85\x3f\xbd\xa7\x9e\xc7\x55\x45\x73\x75\x6c\xb3\xaf\xdb\xb7\xd4\x3e\x38\xf7\xc2\x63\xbe\x59\xf2\xb3\xc0\x8b\xa0\x82\x16\xc5\x75\x5b\x17\x0e\x08\xac\x14\x91\x23\xd2\x0f\xe0\x70\x50\x6d\xbd\x0a\x13\x8c\x56\xee\x0f\xd1\x22\xad\xf0\xd2\x70\xe1\x9b\xae\x0e\xad\xd7\xd6\x94\x5c\x87\x80\x9c\xe8\x35\x88\xb5\xdb\xa5\x58\x19\xb7\xfb\x96\x12\x67\x64\x5c\x21\x42\x55\xda\x95\x8b\xf6\x48\xf1\xe3\x2c\x5d\xb0\xd0\x6b\x54\xd4\x05\x9b\xe0\x90\x5d\x12\xe1\xae\xc8\xb7\xe3\x45\x08\x7c\xbe\x49\x74\xc0\x84\x91\x89\xe3\xf5\x19\x3f\x4c\x8e\x07\xef\xf2\x6c\xf7\xfa\x4f\x29\x84\x75\x64\xbd\x62\x06\xba\x8c\x5c\x19\xe4\x13\x2d\x03\x14\x0e\x6c\x6f\x0c\xa4\xed\x0b\xdc\x21\xb9\xaf\xba\x25\xf7\x55\x30\xdc\xb3\xe1\xf3\xdb\xbc\x42\x0a\x82\x6c\x01\xe6\x7b\x3c\xe5\x91\xc0\x97\xd4\xb8\x66\x25\x13\x3f\xde\x68\x7d\x61\xe9\x1f\x63\xb8\xaf\x51\xf1\xf5\x69\x55\x07\x49\x63\x3b\x5e\x89\x34\xd8\x66\x23\xf0\x35\xab\x0d\x45\xff\x53\x26\x8e\x7d\xdb\x8b\xd7\x1f\xf1\xc8\xd7\xf3\x5a\xdb\xfb\x94\x9a\xe4\xc5\xbc\xb2\xd0\x15\xd1\xfb\x46\xe3\x75\x4b\x47\x0d\x02\x6f\x55\xd3\xe2\x9e\xc4\x35\x19\xf7\xfb\xb6\xe0\x4a\x1d\x92\x86\xdb\x4a\x14\xfd\x87\xb8\x19\x78\x8c\xfb\x0a\x62\xd6\x8f\x5e\x1b\xa6\x28\xf4\xcb\x1c\xb6\xcf\x6c\x8f\xd7\xa2\xd8\x7d\x73\xed\xb4\x6b\xa3\x9c\x50\x4c\xe5\x45\x39\x0e\x42\xe1\x31\x19\x8d\xe3\xd1\x8c\x12\x04\xf8\x89\x82\xea\x7d\x43\x53\x99\x4d\x55\xba\x64\x0f\x99\xb0\x88\xd7\xa9\x2a\x0b\x23\x03\x68\x2a\x1f\x07\x0d\xb3\xcb\x0b\x07\x28\xfd\xc5\x3b\xbd\x87\xa7\x25\x23\x2c\xe5\x0e\x46\xca\x8a\x39\x78\x26\x52\xa3\x2b\xc1\x06\x7e\x64\xda\x72\x75\x01\xc6\x82\xb3\xb0\x20\x76\x23\xdc\xdb\xef\xd1\x45\xc0\xd3\x9f\x20\x26\x59\x44\xba\x4c\xb7\xc1\x23\xe9\x81\xd7\x8b\x63\x2c\x10\x36\xe0\x2f\x02\xc5\x02\x77\x0d\x46\x8d\x3f\x1f\xa8\xc9\xc7\x47\x90\xe2\xcb\x74\xe8\x6e\x45\x06\x9e\xad\xcf\xa8\xf8\xf0\x97\x74\xfd\xf8\x3a\x84\xb3\x32\x1f\xaf\x98\x42\x92\x68\xd5\xc6\xd2\x1b\xe2\xb8\x32\x50\x9a\x97\x77\x7c\xed\xc1\x9a\x9e\x09\x07\x78\x8d\x9c\xfa\x1f\x57\xb5\xe3\xe3\x81\x14\xeb\xd7\x46\xa3\x99\xf2\x71\xc1\x9f\x5d\x52\x0b\xe4\xdb\x58\x56\x22\xf1\xe3\x1b\x97\x66\xdc\x1f\xe7\xc5\x63\x58\x8e\xcc\x29\x1f\xf8\x66\xcc\x2d\x5c\x92\x23\x7f\x9a\x5f\xe0\x7e\xdb\x37\x11\xdc\xf2\x89\xd6\x0e\x38\x36\x51\xb4\x14\x27\xd4\xe0\xf3\x25\x0d\x1d\xfa\xba\x42\xbe\xa0\x63\x84\x4c\xe3\xa2\x62\x9d\xa7\x22\x13\x5f\xe7\xb2\x31\xdb\x95\x5d\xbf\x5b\xed\xe9\x3a\xdd\xb3\xd3\xfa\xbd\xde\xa4\xdf\xc0\xb3\x07\x58\x9d\x8f\x9d\x77\x42\xd5\xc2\x49\x49\xe0\xbb\x77\x51\x25\x85\x8f\x6b\x72\x2e\x7b\x16\xdb\xd1\x70\x94\xa5\x23\x9b\x29\x0e\xa6\xb3\x8a\x83\xe9\xac\x32\x2b\x76\xd5\x66\xeb\xdd\xb4\xb7\xbe\xa3\xfc\x5b\x94\x5a\x8a\xea\x50\xd2\xd2\x8b\x12\x56\x31\xe3\x30\x42\xf0\x0f\x94\x38\xe9\x65\xe5\xf6\x2e\x61\x49\x22\xcc\x7e\xb4\xa3\x46\x4a\x36\x14\xb5\x46\x77\x9c\xb3\x5a\x14\xbe\x01\xc3\x93\x7c\xdc\x44\x2c\xe5\xd6\x23\xa2\x57\xec\xd6\x33\xf4\x29\x47\xb6\xe0\xee\xe0\x3b\x0a\x69\x65\x0f\x8d\xd2\x4c\x58\xf3\x9a\x50\x2f\xaa\xdc\x4d\xec\xb1\x95\xfc\x46\x97\xd5\xfd\xa2\x1c\x9a\x24\x8a\x0d\xd8\x22\x84\xf0\xb1\x7c\x1a\xb0\x8a\xe8\x5a\xe1\x53\x33\xd3\x86\x0a\xd0\x7e\x61\xb4\x6a\xf9\x32\x0a\xf8\x33\xf8\x58\xcd\xea\x53\x0f\xc1\xf6\xa8\x50\xec\xc8\x48\x15\x33\xa9\xea\x37\x9f\x0b\x14\x4e\xf3\x5c\x13\x4f\x2a\x21\x24\x08\x3d\x23\x74\x67\xe5\x55\x6b\xbd\x1f\x49\x2b\x94\xe3\xe9\xf5\x32\x9b\xe7\xdc\xc3\x45\x81\xe4\x1c\x6d\x34\x3e\x0e\x3e\xae\x51\x70\xb9\xcd\x10\x64\xe7\xdb\x4a\xe3\x29\xc0\x70\x5a\xbe\x22\xff\xeb\xe7\x1f\xbe\x4b\x3b\xcb\x31\x80\x3b\xee\xaf\x1f\xd7\x42\xf1\xe7\xdb\x9f\xf9\xfc\x6f\x2c\x7d\xfe\x9f\x2c\xce\xfa\x38\x8d\xe9\x01\xf4\x40\x10\x56\xf8\x3b\x04\xd5\x17\xd8\x9f\x2f\x2d\xc5\x9f\x4b\x33\x6b\xe2\x4a\x6b\xf9\xeb\x9a\x49\xec\xeb\x6a\x32\x85\x86\x2f\xc0\xcc\x25\x86\xa3\xbc\x58\xb1\x41\x0e\x2f\x6b\x46\x65\xf8\x38\x5b\x05\x30\x1d\x14\xd0\x03\x26\x7b\xe8\x33\xcf\x3f\x4d\x0b\x03\x09\xd2\xa3\xd3\x4a\x8d\x6f\x98\xa7\xc9\x76\xcd\x2c\xea\xfd\x05\x6e\x8c\xd9\xc9\xf1\x20\xe1\x23\x50\x32\x11\x92\x29\x4d\x51\xaa\x50\x59\x69\x36\x2c\x83\xac\xed\x5e\x7b\xe5\x0e\x2d\x19\x04\x96\x3c\xfb\x8c\x3e\xe2\x19\xad\xeb\x87\x9e\x16\x7e\xe8\x7d\x3c\x22\xfe\xab\x26\xe2\xe5\xd1\x38\xeb\x8d\x91\x57\x89\x68\xb7\x1a\x04\xba\xac\xca\x66\xbd\x28\x0f\xc7\x79\x1e\xa5\x49\x4e\x26\x07\xae\xef\xff\x65\xec\xcd\x82\x24\xc9\xb2\xeb\xb0\xaa\xc8\xcc\x5a\x7a\x5f\x39\x10\x8c\xa2\x82\x32\x8a\x4d\xca\x1a\x6d\x04\x49\x81\x14\x7e\x22\x50\x95\x83\x9e\x2e\xe3\x64\xa7\x65\x15\xaa\x89\x36\x99\xa9\x5f\x78\xbc\x8c\xf0\x4e\x0f\xf7\x18\x5f\x32\x3b\xdb\xa4\x1f\x9a\x3e\x64\x32\x7d\xc8\xb4\x90\x34\x09\x12\x01\x0a\x26\x02\xa0\x08\x61\x86\x00\x06\x20\x96\xc8\x99\x01\x66\x30\x98\xad\xf7\x65\x7a\x99\xda\x2b\x2b\x33\x6b\xaf\xea\xda\xb3\x64\x7e\xcf\xbd\xef\x5d\x4f\xf7\x36\xc3\x9f\x7b\x55\x46\x84\xfb\x5b\xee\xbb\xcb\xb9\xe7\xb4\x48\x84\x08\x86\x85\x33\x11\xd2\xfb\x48\x0e\xae\xb4\x54\x7a\x9a\xd7\x7f\x31\xf1\x8d\xb2\x90\xb6\x73\x1d\x14\xb3\x47\x24\x5d\xe7\xdc\xc6\x45\x42\x4b\x8b\xdb\x28\x85\x6b\x7a\x44\xc9\xef\xef\xcc\x5e\x3c\xf3\x4c\xdb\x04\x4b\x71\xb2\x12\xd9\xbe\xd3\x74\x54\x0a\x5c\xb3\x2e\x59\xfb\x80\x5b\x5f\x7f\xf7\x31\x2f\x69\xf2\x29\x3d\x88\xa4\xf7\xca\xd7\x13\x84\x04\xf9\x05\x72\x12\x2b\x79\xe8\xf3\x4a\x3c\x73\x0a\x6d\xa9\x98\xdc\x1b\x1d\x45\x4b\x89\xea\x0a\x17\x5f\x3b\x8a\xbb\xef\x4e\x47\x85\x0f\xa7\xb4\x96\x2d\x37\xac\x4a\xc1\x87\x0c\x28\xb3\xda\x4f\xb4\x7e\x9b\x32\xfb\x9d\x07\x3d\xdd\x92\x7d\x92\x7e\x05\x63\xca\xac\x1f\x32\xb1\x34\x3b\x82\x97\xf6\xdd\xd3\x3f\xc0\x19\x8b\x45\x76\x5d\x1b\xac\x8f\x26\x0a\xa3\x72\x6b\xe2\xdb\x7b\xbe\x3f\xf1\x49\x18\x16\x70\x44\xbc\x0d\x79\x2d\x4c\xfa\xa7\x14\xeb\x21\x5c\x61\xe9\x40\x09\xc4\x5b\x5f\xfc\xa7\xbe\xa4\xe2\x9a\x91\x3e\x54\x54\x46\xfb\xd6\x28\xad\x88\x38\xe6\x2e\xce\x32\x09\xcf\x68\x4e\x64\x1c\x74\xc6\xa6\x58\x0a\x2b\x49\xd6\x2b\x3a\xc9\x7a\x45\x71\x96\x67\x63\x1b\x14\x91\xc9\x93\x34\x6b\x79\x5c\xfd\x8f\xe8\x81\xf9\xba\x02\x77\x0e\xad\x06\x9a\x72\x8c\x20\x2a\x37\xaa\x3c\x9f\xd3\xf0\x73\x73\xe4\x7b\x5f\x40\x7d\x04\xfb\xf2\x61\x54\xf9\x60\xbe\x7f\x7a\xcd\xa7\x17\x9e\x82\x9b\x8f\x31\x7b\x80\xdc\x05\x18\xc9\x47\x69\x9f\xb9\x66\xc5\xf2\xfc\x82\xef\x78\x0e\x45\x14\xa9\x03\x96\x2f\xe0\xf4\x3e\x5c\x87\xea\x45\x44\xd7\xdb\x2c\x3f\x2e\x45\x2b\x1a\x48\xb1\x27\x9e\x4a\xed\xaf\x77\x15\x55\xe6\x83\x6b\x8a\x10\xf9\x91\xae\x8a\x5a\xaf\x29\x82\xe1\x8f\x6a\xb6\x65\x6e\xae\x9d\xaf\x06\x09\x92\x08\x2f\xf3\xa4\x22\x7b\xc8\xd7\x4d\xd9\xc3\xcc\x86\xaf\xbb\xec\x21\x17\x0a\x95\x14\xc5\x96\xca\x26\x04\x66\x64\x89\xdf\x13\x51\x27\xd0\xba\x2e\x3e\x72\x78\xbd\xef\x50\x8a\x90\xcb\x7c\x0d\x2c\x3c\x87\xdb\x26\x08\xec\x38\x27\x33\x33\xad\x09\xe8\x8f\x61\xf3\x4a\x74\xea\x23\x29\xb6\xaa\x18\xb8\xd3\xca\x63\x19\x25\x45\x9c\x13\x05\xa1\x0e\xe2\x16\x0e\x1c\x66\x17\xf4\x2a\x3a\xe3\x55\x78\x37\xef\x6e\x34\x10\x81\x7e\x57\xda\x5a\x69\x28\xf8\xaf\x68\x7f\xc8\x75\x9d\x56\xa0\x3d\x4c\xc6\xb6\x3f\xa5\x36\xed\x26\x4c\xb2\xe2\x74\x9f\x65\xff\xfb\x76\xc7\xbb\xc0\xc1\x32\x93\xe9\x4a\xa5\x9e\x9e\x0c\x49\x4b\xa0\xb0\xa5\x0d\xda\x7b\x12\x67\x1c\x51\xaa\x70\x2d\xbb\x79\xe3\x5f\xa3\x0f\xca\x2f\x57\x0a\x2a\x39\xb0\x06\x4a\x92\x64\xde\x49\xbe\x88\xe1\x37\x11\x31\x66\xa0\x4e\x8e\x47\x46\x24\xc7\xc9\x62\xbc\x0b\x3c\xa0\x5d\x0a\xf0\xb1\x68\xb2\x61\x98\xc4\x33\x8a\x1c\xf8\xcf\x61\xc6\xb0\x15\x50\xe5\xc3\x3b\xbc\xa5\x5a\x5b\x4f\x4d\x2a\x62\x9b\x4f\x29\x4a\x8d\x71\x94\xa4\xc6\xe9\x25\x33\xdd\x22\x4d\x85\x50\x2f\x3e\xa9\xb2\xfd\x03\x13\xb9\x35\x3c\xe7\x30\x27\xf4\xe5\x7c\xa3\xdb\xbb\x28\x29\x42\x68\x17\x2c\xe3\x6f\x76\x14\x3e\xf8\xd4\x44\xb5\x5a\xdf\x50\xc1\xc8\xf7\x60\xf6\xe0\x0b\x5e\xd5\x68\x53\x93\x3f\xd6\x12\x82\xc8\xaf\xfe\x14\x9c\x78\x2a\x13\xfd\xc3\xc7\xd6\x5a\x47\x5e\xd4\x27\xf5\xbc\x57\x90\xfb\xa5\x2f\xb1\xfb\x06\x01\x17\x18\x93\xeb\x64\x4c\x5c\xee\xc9\x0b\x07\xdc\x24\x70\x25\x9e\x64\x17\x6c\x05\x3a\xda\xee\x76\x14\x00\xe6\x8a\xca\xa2\x5d\x50\x32\x91\x1f\x81\x2b\x02\x36\xe4\x14\x19\x29\xd8\x23\x3e\x60\x70\xa4\xde\xaf\x13\x7f\x2c\xcc\x97\xa6\xda\x2c\x65\x5a\x79\x70\x13\x07\x29\xdf\xa8\x36\xfd\x91\x35\x59\x91\x5a\xe2\xe4\xe5\x06\x65\x95\xa0\xd9\x40\x7d\x5c\xba\x6c\x3c\x9d\xd4\x69\x98\x53\x91\xfe\xa3\xf5\xac\xf8\x95\xbd\x26\xb5\xef\xdf\xba\xa6\x73\x7c\x1c\xfe\x63\x8f\x6e\xa8\xe3\xa0\x08\xd0\xc5\x8e\xe8\xef\x3f\xee\x7a\x25\xc6\x8f\x69\x0c\xb4\x5a\x20\xcc\xfc\x1d\x85\xd9\xf9\x1b\x70\x04\xf0\x22\x90\xc7\x75\xee\x5a\xf9\x54\x12\x1f\xd2\x2c\x49\x7f\x7b\x83\x4c\x71\x64\xb2\xa1\x6c\x2a\x4c\xc7\xe6\xc4\xdb\x4d\x76\x8f\xb0\x15\xef\x2a\xd5\x2f\x22\x44\x89\xc1\x34\x8f\xf3\xe8\x21\x1c\x54\xb0\xab\x80\x53\xf3\xc7\xb4\x76\xe5\xf9\xc9\x83\x2a\x1c\x79\x00\xd6\x15\x01\xc4\x09\x95\x0c\xdd\xdb\x55\xb3\xc1\xca\x13\xc8\x40\x5c\x86\x9b\x85\xa3\xee\xbb\x18\x68\x04\x1d\xeb\x1d\x85\xb4\x39\x33\xf1\x22\x88\x48\x86\xf2\x27\x30\x67\xc2\x7c\xd1\x00\x96\xce\x92\x91\x5d\x19\x92\xce\xc7\xd1\x03\x8e\x51\xc3\xd3\x46\x6f\xea\x29\x1c\x23\xee\x73\x8c\x64\x9e\x90\xe7\xa2\xd6\x51\x08\x85\x22\x00\x5b\xe4\x8f\x26\x7e\xe3\xfe\x51\x13\x23\x88\x35\x69\x1c\xc6\x83\x06\x35\x61\x77\xe3\x9a\x4e\xc7\x36\xa5\x0e\xf3\x29\xd5\x9b\xd8\xf1\x68\x97\x3b\x5a\x8f\xe7\x8f\x95\xe8\x4c\x38\x32\xe9\xea\xb4\x77\x53\x4f\x76\x54\x17\xf5\x45\xa5\x9a\x78\x4d\x73\xd6\x6e\x29\x37\xa9\x57\xa4\xd6\x14\x41\x6a\x02\x46\x6a\x39\x4d\x75\x47\x95\xbf\x9f\xc2\x24\x6c\xe0\x3b\x0a\x86\x00\x21\x45\x0a\x32\xe0\x2e\x5c\x56\xcd\x55\x97\xdd\x53\xe6\x49\x91\x86\x59\xae\x5a\x23\x71\xa8\xf3\xf5\x9a\x3f\xfb\xc7\x61\xb0\x44\x4d\x8b\x62\x51\xbd\xe2\x2f\xc8\x38\x84\x08\x66\xe7\x16\x78\x69\xbe\x3d\x88\x92\x15\x51\xca\x07\x26\x85\x97\x3d\xdf\x34\x95\xed\xc3\x38\xcb\xc3\xbc\xc8\x2d\x67\x57\x81\xe4\x3b\xa6\x8e\xc3\x6d\xc5\x26\xf3\x99\x4a\x38\xd8\x65\x1b\xe7\xd9\xde\x4a\xbd\xd6\x0f\x36\x17\x55\x1c\x1c\xa6\x74\x15\xa4\x78\x5b\x65\xa4\xd1\xf8\xfb\x96\xa3\x2b\xbe\xda\x54\x58\x0a\x4c\x9a\x4b\x1f\x28\x67\x55\x3a\x3a\xc3\xe2\xd3\x26\x51\x92\x8c\x50\x27\x45\xf8\xbb\x6b\xcd\xd7\xa5\x77\xa9\xee\xe5\xc5\x24\xb5\x01\x95\x00\xdd\x57\xb2\xd1\x63\x25\xdb\x89\xef\x94\xda\xdd\xad\x0b\x80\x44\xe1\x32\xef\x08\xa0\xfb\x90\xba\xe4\xeb\x06\x4c\xc8\xcb\xed\x3c\x35\x81\x18\x7a\x41\x17\xd2\x0f\x0a\xec\xd0\x6f\xb7\x71\x64\x56\xf7\x95\xf3\x2f\x68\xdb\x72\xfe\xf1\x5c\xe8\x23\x10\x1a\x71\xcd\x60\xa9\x09\xe6\x37\x55\x1b\xff\x7d\xa5\xe0\x07\xd2\x63\x11\xea\xf8\x82\x8f\x17\xc2\x51\x11\xe5\x26\xb6\x49\x91\x45\xd2\x29\x0e\xdb\xf3\x29\xb6\x1f\xdf\xd4\xe0\x0c\x47\x0f\xcc\xb5\xc3\xb8\x1f\x2e\x87\xfd\x82\xa9\x9b\x14\x17\x89\x33\xdc\x9a\x2e\xd1\xe6\x79\x64\xb3\x3d\xbe\x44\x7d\x85\xc6\xce\x49\x8f\xb9\xa4\xfd\xb7\xe0\xcd\xbb\x94\xca\xc2\x01\xd7\xbd\xee\x71\x6e\xef\x55\x52\x61\x4b\x36\xcd\x08\xee\xc1\x8a\x23\x08\x2b\xe0\x52\xdd\x44\xe6\x1a\xa3\x72\x1a\x87\x9a\xc8\x75\x78\x2f\xac\xd5\xa5\x25\x8b\x73\x6c\x0b\x67\x2a\x86\xfb\x0a\x25\x9a\xe0\xb7\xad\x63\x2d\xf3\x7f\x68\xf9\xce\xdd\x6b\xbe\xe4\x38\x28\x40\x44\x7e\xf4\x80\xd3\xa1\xa7\x19\x13\x21\xfa\x46\x90\x87\x49\x07\x92\xe9\x96\x8e\x73\x15\x3a\x9c\xaa\xc6\x6d\x71\xfe\xa8\x56\x58\xd1\x00\xca\x0f\xf1\x5b\xc8\x25\xdd\x42\x70\x8c\xa1\x64\xfa\x05\x21\x3f\x2b\x27\x42\x8c\x1d\xad\x4e\xc7\x52\x52\xfe\x2c\x4e\xa3\xbb\xaa\xce\xfc\x3e\xde\x9d\x7d\x66\x95\x40\xdb\x98\xf8\x0e\x95\x8b\x9a\x82\x10\xe7\x17\x8c\xd9\x2d\xac\x0b\xc0\xae\x2f\xd5\xb4\xff\x67\x8f\xb4\xb3\x64\x3c\x0c\xb3\x3c\x0c\x4c\x2e\xe7\x3a\x8e\xde\x73\x13\xd5\xdd\x0c\x27\x09\x27\xda\xd9\x06\xf4\xf2\x7c\x3b\xfb\xdb\x91\xaa\x00\xb1\x3e\xa4\x68\xbf\xed\x8c\x9a\x5e\x98\x03\x95\xe2\x4a\x1a\xfa\xee\x3c\x17\xc8\xf8\xd8\xa7\x32\xfc\xb1\xc9\x66\xca\x18\x56\x1a\xd2\xca\xc7\xc3\xb0\xdc\x56\x70\xcd\xd3\x1d\x0f\x68\xfe\xb6\x06\x0d\xdc\xd3\x92\x3d\xa9\x21\x0e\x6f\xec\xf2\xd6\x9a\xdf\xb3\x17\x74\x13\xd0\x39\x4c\x2a\xd3\x16\x75\x55\xcb\xc5\x49\x7f\xe6\x58\xe3\xbb\x18\x15\x9a\xce\x41\xeb\x6a\xa3\xf5\xf3\x6d\x0b\x9d\x2b\xdf\x18\xfe\x51\x47\x75\xc3\x7f\x54\x83\x63\x71\x90\x49\xad\x4e\x9c\x8e\x82\x87\xc7\x3d\x7d\x7c\x53\xa1\xfe\x1d\x16\xa3\x56\xe9\xaf\x33\x8d\x13\x2d\x55\xa1\x74\x72\x18\xa1\x34\x11\x20\xb1\x12\xd3\x7d\x79\x1b\xfe\xb9\xc4\xf5\x7e\x87\x8d\x4d\xba\x04\x4e\xa9\x79\x4f\xa6\xe9\x00\xa0\xf5\x52\xef\xc2\x81\x76\x92\x86\x36\x76\x2b\x0b\xa8\x51\xf8\xa5\xdc\x7b\x8e\x37\x10\x76\xff\xa7\x54\x85\xd4\x46\xd4\x82\x99\xae\xaa\xfc\xfd\x71\x95\xbf\x3f\xee\x19\x34\xf3\x24\x58\x62\x00\xac\xa4\xca\x68\xe6\x9c\xc6\x8e\x3b\xf0\x2e\x2a\xda\xa2\x81\x19\xd9\x8c\xe0\xc5\x8c\x71\xc6\x29\x29\x28\xfb\xf2\x57\xf9\x9a\x48\x4c\x04\x08\xbd\xf3\xb8\x39\xf2\x62\x7b\x68\xa3\x51\x91\x0f\x5b\x3e\xa7\xc5\x21\x3e\xdf\x28\x34\x6a\x2f\x4c\x46\xb6\x4f\xc8\x32\x65\x13\x51\x8c\x12\x0b\xa4\x44\xa3\x86\x26\x35\x41\x6e\xd3\x0c\xf1\xa8\x93\x7c\x2c\x1f\x14\x76\x80\xa5\x08\xf8\x7f\x34\xf7\xd3\x87\x13\x0f\x9e\xdf\x54\x85\xb5\x7e\xb8\xb8\xc8\x55\x11\x7c\x0a\x44\x15\x7c\x5d\xab\x1e\xcc\x1e\x69\xc7\x61\x9c\xa3\xc6\x0f\x3f\xff\xbe\xf2\xf9\xef\xab\x6f\x0e\x8a\x60\x29\x49\xa6\xca\x1d\xc8\x15\x4f\x7a\x04\xa7\xe1\xe9\x4a\x36\x17\x1b\xd7\xf8\x5f\xa5\x6f\x75\xa7\x73\x70\xe4\xc5\xb6\xc9\x96\x5a\xbe\x2f\xf8\x03\x45\x52\xf5\x41\x43\x2b\xf4\xf3\xed\xa8\x48\x83\x61\x4b\xc1\x1f\x6e\x2a\x01\xe2\x9b\x2a\x18\x1e\x98\x90\xfd\x35\x9c\x7e\xff\x7c\xe2\x4b\x2e\x17\x74\x8f\x91\xe7\x68\xb7\xcb\xa6\x8f\x50\x80\xc5\x03\x68\x68\x45\x48\xe0\xa9\x3a\x36\x29\x5f\xc6\x7e\xc2\x2f\x20\xa8\xe1\x6b\xe5\x68\xf5\x6d\x64\x56\xf7\xd2\x41\xc2\x90\xff\x8e\x6a\xab\x9a\xf8\xea\xf1\x16\xc5\x82\xf0\x44\x79\x13\xc0\x05\x3c\xd9\xf1\x31\x1f\x4a\xb4\xd2\x93\xa5\x19\xb1\x22\xe2\xf1\x9c\x51\xa2\x64\xac\x74\x23\xb2\x98\x64\x03\x71\x40\x9c\xae\x68\xd2\xb5\x9c\xc2\xf8\x85\x8a\x83\x68\x62\x92\x85\x17\xa4\xd9\x69\x7c\x9d\x30\xb2\xf8\x0c\xcf\x6e\x98\x57\x56\x72\x9d\x28\x6a\x03\xd1\x51\x75\x90\xf3\xb9\x39\x46\xe5\xfc\x10\x4b\x03\x21\xce\x3b\x64\xf8\x71\xe6\x7e\xd0\x51\x2d\x57\x50\x15\xc5\xea\x5e\xa7\xf3\x97\xff\x68\xa2\x92\x69\x1b\x2a\xf2\xcf\xd3\x22\xcb\xad\x6d\xb5\x5e\x9a\x77\x04\x25\xaa\xc5\xf7\x6c\x6d\x51\xbd\x30\xd7\x5e\x34\xa1\x83\xf7\x23\x78\x82\xd5\xe1\x6b\x35\x24\x81\xc9\x6c\xb6\x97\x5e\x16\xb3\xf1\xf5\x8e\x6f\xf4\xd9\x50\xbc\x09\xdf\xd3\x84\xb4\x6f\xab\x36\xc6\x93\xf4\xa6\x48\xb5\xde\xd4\x12\x34\x4d\xfd\xcb\x87\x89\x11\xa5\xc8\x2c\xe4\x1d\x50\x56\xb8\x4e\xdf\x86\x63\x63\xa6\xeb\x97\x1c\x5c\x07\x1c\x13\x1f\xd6\x0c\xc1\xc1\x83\xed\x6c\x6c\x61\xcb\x5d\x81\x87\x1e\x18\x6b\xef\xa6\x1a\xe8\x63\x13\xdf\xcb\x33\x28\xc3\x84\x90\x2d\x8e\xb8\x66\x9e\xcb\xe7\xbb\x0a\x04\x97\xad\xd8\x94\x40\xab\x72\x6c\x51\xde\x5e\xce\x2d\x05\xd4\x06\xa4\x8e\x9d\x2a\x1a\x40\xe1\xbb\x6b\x80\x00\x8f\x4b\x1b\x2a\x3d\x4a\x7a\x18\x3d\x50\xa1\xb6\x35\x17\xca\xd0\x7e\x9a\xd6\x97\x83\x78\x94\xd3\x01\xef\x16\x76\x8d\xe9\xf7\x69\x3a\x90\x93\x6e\x8c\xa7\x7a\xb6\xbf\x98\xa4\x7d\x95\xf3\xff\xb1\xce\xf9\xff\x58\xf5\xa1\xf4\xcd\x6a\xb6\xcf\xab\xe3\x1e\xd7\xdc\x75\xa7\x3a\x0a\xbd\x79\xae\xe3\x73\xe7\x5a\xe9\xef\x1c\x9e\x12\x16\xf7\xdb\xd8\x6c\x1a\x66\x2d\xe1\x4f\x13\x9c\x6d\xee\x01\x32\x30\x48\xc3\xbc\x47\x6f\x08\x94\xdf\x34\x21\x5d\x70\xfd\x7b\xc8\x6f\x31\xb1\xaf\x02\xf3\x82\xe3\x16\x98\x22\x2e\x15\x39\x61\x19\xdf\x4a\x82\x6a\x25\xaf\xc2\x8e\x07\x34\xe9\x8e\xf7\x17\xe6\xbe\xd8\x52\x65\x47\xe4\xef\xa5\xe1\x51\x89\xce\x1b\x9b\xe5\x69\x52\x11\x9d\x56\xa9\x87\x53\x0d\x5c\xc5\xb3\xed\x30\x0e\x6c\xec\x9a\x6d\xa5\xd7\x59\x37\x41\xfb\xe7\x78\xee\xe0\x73\xd3\xba\xe4\xa5\x3c\x82\xef\x6b\xae\x49\x10\x80\x08\x73\xef\xe7\xf1\x30\xbb\x44\x11\xa1\xde\xe0\xb7\x83\x10\x1c\xdb\x80\x8b\x92\x62\x5b\x1f\x57\x6a\x64\x91\x0d\x72\xdb\x9f\xf6\x7b\x16\x4b\xd7\x75\xc7\x96\x9e\x01\x12\x16\x17\x3a\x8a\x73\xf5\x82\xf2\x75\x72\xf3\x9a\xcd\xf6\xd1\x6e\xe2\x66\xe4\x8e\x6a\x20\x3b\xa3\x10\x14\xbf\x5e\xa9\x5a\x68\xba\xba\x0b\x95\x46\x9c\x77\x71\x16\xc0\xc5\x3a\xa5\xba\x6f\xb5\xea\xd0\x20\xb5\x36\x5e\x09\xcb\xe3\xb6\x52\xb1\x73\x6c\x2e\x17\x6b\x44\xdb\x2c\x04\x48\x8e\x40\x9c\x47\xab\xb0\xa9\x32\xba\x8a\x23\x59\x15\xec\xbf\x52\x84\x55\x4d\xf5\xab\x13\xa5\xa9\x7e\x55\x79\xfe\x3f\xf3\x73\x7f\x5f\xe9\xfb\x33\x71\x23\xdf\x34\xe4\x3b\x23\x6b\xbc\x9c\x0d\x1c\xe2\xfb\x2a\xff\x7f\x81\x82\x54\xa1\x2b\xa8\x5b\x9e\xf9\xf6\x62\x18\x9b\x38\x08\x4d\x24\xc9\x39\x21\xce\xa7\x1f\x16\x22\x64\xe9\x5f\x35\x41\x50\x64\x9e\x74\x04\xe9\xb9\xd3\x4a\x8f\xe3\xb4\x42\xbf\xaf\x0c\xc3\xb1\x92\x1c\xd9\xec\xa8\x60\xa7\xde\xd2\x40\xfa\x4d\x60\xc1\xc5\x88\xc2\xff\xfe\x0c\x47\x28\xdf\x74\x9e\xac\x9a\x85\x57\x5e\x69\xbf\xf2\xca\xb4\xf2\xf7\x37\x79\x09\x60\xb3\xdc\x9a\x28\x90\xde\x2d\xd5\x1a\xb2\xa9\x96\xef\x28\x59\xb6\xc8\xfd\x3a\x76\xa0\x93\x3a\x58\x06\xde\xd2\x75\x53\xb9\x75\x7d\x5d\xa5\x1a\xc6\x26\xb5\x71\xbe\xc7\xb3\x10\x5d\xc2\xf8\x51\x8e\x76\x15\xdc\x3a\x7c\x4d\x14\x5b\xc8\x40\x9d\x99\xa8\x66\x92\xf3\x4a\xf5\x7d\xa6\xeb\xb2\xa1\x66\x95\xd4\xff\xa7\x14\xce\x75\x57\xd7\xc7\x4a\x9c\x10\x87\x55\xbb\xda\xc4\x76\x1c\xc6\x59\x12\x2d\x4b\x76\x12\x66\xf1\x38\x0d\x05\x5f\xab\x26\xfc\x61\xd8\xb7\x49\x91\xb5\x5a\x5f\xfc\xa7\x0e\xc5\xe7\xfb\x09\xb7\xd4\xbe\x19\xa7\x36\xb3\xa9\x10\x0a\x23\x8c\x86\x26\x13\x5f\xd7\x8a\x77\xe5\xe1\xec\x89\x20\xb0\xb0\xb8\x37\x93\x6f\x54\x6b\x41\x9c\x10\xaa\x47\x35\xe6\x2b\x87\xd0\x77\x53\x8f\xc6\x11\xf2\x02\x58\x31\x58\xff\xa0\x56\xe1\xeb\x0a\x2f\x52\x66\x62\xf0\x33\x6a\x72\x13\xc7\x26\x35\x7b\x84\xfd\xc3\x9b\x78\x2a\x46\xce\x63\x80\x95\x14\x91\xc7\xd4\x2b\xb8\x6b\xc7\x3b\x7d\x8c\xd5\x73\x39\xf4\xf2\xc8\x62\x62\x24\x45\xba\xf3\xab\x2e\xc8\x8d\xc2\x5e\x92\xc2\x65\x11\xb3\x58\x55\x3f\x2a\x7f\x1f\x4e\xd6\xad\x26\x80\x4b\xe0\x5b\x87\x58\x67\x4a\x11\xcd\x7e\x58\x5b\x12\x0b\x07\xda\x8b\x45\x1a\x87\xd9\x50\x86\x4d\xc2\x34\x9f\xba\xf9\xd4\x15\x29\x7b\x44\x00\x29\xb6\x01\x99\xdb\xfb\xd8\xc8\x7c\x53\x97\xef\x3e\xd8\x4e\xa8\xa3\x89\xd0\x5c\xc8\x5f\x1f\x57\x8a\x48\x57\x15\xd7\x7c\x5d\x01\xfe\xe8\x81\xb9\x76\xcf\x04\x4b\x59\x6e\x06\x96\x9c\x21\x18\xfa\xfb\xaa\x38\x78\x5f\x9d\x81\xc9\x38\x9f\xf1\xe1\x1c\x12\x2d\xd2\x35\xe5\x35\xf5\x4f\x6a\x2b\x82\x12\x14\xf0\x93\x0f\x77\xf7\x3b\xb4\xfd\x03\x4a\x1b\x88\xb9\x0e\x44\x32\xd3\x5b\xd4\xc7\xd6\x54\x68\xcb\x1c\xd3\xc8\x0b\xa3\x04\x88\xaf\xdd\xb3\xe6\x88\x3c\xfe\xf0\x29\xa4\xd1\xe4\xab\x14\x21\xd2\x0c\x41\x1e\xf0\x4e\x0f\x75\x35\x67\x4c\x3a\xa6\x82\x6c\x96\x4f\x29\xde\x64\xfc\x80\xee\x03\xc0\xf5\x19\x8d\x8d\x5d\xb2\xe3\x1c\x6d\x61\x87\x0e\x39\x2a\x4b\xcd\x6b\x59\xf3\x9a\xcb\x88\x33\x4b\x58\x82\x83\x65\x8e\xe8\xdb\x45\xf2\xa8\x89\x61\x62\x29\x0c\x96\x24\x45\x84\x46\xff\x4d\x9c\xd7\x7c\xe3\x60\xa2\x2b\x66\x30\x08\xb3\x21\x37\xdf\xa3\xd0\x8b\x53\x92\xaf\xc1\xc0\xe4\x70\x2a\xb9\x09\x8a\xc8\xa4\xac\x37\x22\x0d\xd9\xde\xea\xd6\x85\xff\x8e\xbc\xd8\x8e\x92\xc0\xb0\x02\xb7\x10\xc1\x7a\xbc\xff\x4f\x68\xba\xf1\x32\x9f\x39\x08\xf7\x62\xb8\x0c\x0e\x06\x60\x87\x1e\x22\x13\x8d\xfc\x24\xd3\xcc\x21\x2f\x3e\xb5\x56\x9a\x65\x58\xa8\xbf\x81\x6a\xb3\x68\xeb\x34\x74\xa3\x24\x45\xde\x4b\xad\x59\x6a\xe9\x64\x88\xd2\x53\x5f\xab\x55\xc7\x66\x8f\xb4\x47\x26\xcb\x4c\x90\xda\x2a\xff\xa5\x2b\x64\x6d\x82\x50\x98\x2b\x6f\x63\x78\x7c\x88\x1c\xdf\x50\xfa\x99\xb7\x34\x66\xe3\x1c\x70\x18\x12\x7e\xd4\x59\xec\xe6\x48\xcc\xd1\x99\x00\x91\xe0\x54\x45\xfc\x1b\x4d\x0d\xc2\x87\xdb\xbd\x34\xcc\xc3\x6c\x58\x51\x73\x82\xbf\x24\xda\x08\x0d\x94\x8b\x36\xce\x87\x45\x16\x9a\x6c\x94\x29\x0d\x6a\xae\xb0\xf0\x4d\x73\x0e\x96\x75\x64\x42\x51\x07\x11\xba\x67\xdf\xe8\xf8\xc3\x0a\xf2\xa2\x1f\x06\x9c\x11\x81\x61\xe6\x13\x06\x93\xfc\x36\x86\x88\xc9\x31\x35\xa8\x20\x1e\x4c\x7b\xf3\xc2\x4e\x17\xac\xd5\x9d\x8e\x57\xaa\xde\xb5\xa6\x9d\x8b\xb3\xd8\x49\x9c\x98\x48\xd2\x81\x89\xc3\xd7\x09\x45\x31\xa3\x34\xc9\x2e\xe3\xc8\x70\x2d\x46\xe5\xd3\x48\x8b\x91\xea\xb5\xff\x16\x2d\x71\x49\xc9\x34\xb1\x7c\x8d\x6c\x9a\x86\xcc\x00\x88\xb8\x65\x5d\x8b\xde\xac\x37\x52\xd3\x27\xab\x36\x05\xa5\x82\x64\x33\x5b\xae\xab\x76\x5d\xed\xbc\xd4\x86\xa3\x5e\x91\x66\x38\x4a\xe8\x89\x45\xf2\x95\x9e\x58\x34\x5f\xfd\x09\xfd\xaa\x09\x92\x5e\x4b\x85\x33\xc7\x54\x86\xf0\x98\xc2\x8b\xb0\x12\x92\x73\x52\x5d\x2b\xba\xab\x26\x4e\xad\xf9\xaa\xfb\xb5\xce\x03\x6e\x56\xe6\x5a\xbe\x3c\xb5\xa5\xf7\xe4\x56\x9d\xa0\x6b\xb6\x0c\x20\x4c\x8f\xad\x18\xbc\x28\x98\x0d\xbe\x56\xe1\x3e\xab\x78\xa3\xe6\x84\x59\x66\xe1\x39\xe4\x4f\x76\xad\xd1\x99\xcd\xd0\x41\xb2\x55\x48\xa9\x5d\x52\xd9\x87\xbd\x8a\xa7\x65\x57\xd7\x93\xe6\x0d\x52\xf3\x3a\xbf\xab\x12\x2e\x2d\x23\x52\x97\x90\x76\x52\xcb\x7f\xa8\xd0\xb0\x79\x5a\x2c\x2e\x9a\x02\xec\x55\x72\x80\xd1\x3b\x4b\x3f\xb0\x4e\x83\x05\x14\x79\x3c\xa8\xd6\x19\x43\x2c\xf9\x86\x1e\x5a\xf2\xfb\x34\x9d\x0e\x15\x59\x4e\x27\xf2\xd3\x7f\x42\xdb\x16\x19\xe0\x77\x68\xac\x70\x78\xed\x23\xe8\x86\x82\x88\x89\x4a\xd8\x3b\x13\x8d\x1e\xab\xe8\xb1\xce\xac\x55\x14\xd0\xc6\xa2\x0c\x00\x73\xf4\x09\xbd\x34\x5f\x43\x8e\x4d\x4d\xde\x97\x67\xdb\xcf\xb4\x5a\xcf\x3c\xc3\xb1\x3f\xfc\x2a\xbe\x56\xa9\xe6\x91\xcd\xc3\xa0\x88\xc8\x3f\x75\x18\xbb\x0f\xe9\x1d\xf8\xba\x46\xe6\xf7\x6c\x3b\x37\xd1\x52\x36\x55\xfa\xb3\x42\x56\xae\x2a\xae\xad\xae\x62\x7f\xde\x56\x14\xf7\xfd\x30\x03\xc5\xaa\xab\xfd\x38\xf4\xf4\x9c\xa7\x7f\xf4\xf6\x23\x30\xe3\x19\xef\xe0\x4c\x75\x2b\x8a\x4a\x34\x2f\x8e\x34\xc9\x45\x4d\xc7\x09\x78\x2b\xfd\x43\x3e\x94\xe8\x25\x45\xdc\x07\x4e\x13\x48\x9a\xd3\x34\x78\x7c\xed\xbc\xc6\x71\xb2\x24\x45\x1d\x78\x9a\xb7\x34\x5a\xe3\x56\x23\x51\x60\x56\x8c\xc7\x44\xb5\x77\xd4\x89\x4d\x4d\xbc\xdb\x78\xdc\x45\x79\xbd\x72\x0d\x47\xa1\x89\x85\x15\x49\xa4\x4e\xe8\x17\x70\x6e\xdf\xe9\xe8\xce\xb1\xda\xcf\x1d\x3a\xd4\x0e\xe3\xe5\x32\xf0\xa0\x6c\xdc\xac\x57\xce\xf1\x4d\x5e\x48\xd2\x4b\x9f\x67\x53\x6f\x67\x64\x5f\x0b\x65\x4f\x33\xfa\x5e\xe9\xd6\xff\x50\xd3\xec\xd9\x34\x0f\x17\x29\x18\x00\xd0\x0f\x0f\x76\x5b\x57\x58\x4f\xab\xee\xe4\xaf\x2b\x2d\xfc\xad\x89\x8f\xb6\x06\x45\x2a\x0d\xa8\x92\xdc\xa5\xf7\xe4\x9b\xa6\xec\xd9\x38\x4d\x02\x9b\x81\x59\x10\x1b\x7e\x5b\xf5\x79\x5f\x54\x29\xe4\x0b\x2a\xc2\x19\xdb\x71\x16\xc2\x7e\xc2\x65\xfa\x09\xfd\x21\x5f\xd7\x0e\xc3\x85\x03\x54\x15\x29\x37\x00\x0e\xc3\xf2\x1d\xa5\x35\x8a\xde\x91\x6f\x94\x6e\xca\xd0\x14\xd1\x8c\x22\xa4\xe1\x03\x87\x97\x22\x19\x60\x61\x21\x6f\x7d\x79\x56\xfe\x88\xbc\x25\x2e\x13\xeb\x9c\xf3\xb0\x48\x7b\xd0\xa8\x96\x04\xf2\x3b\xba\x61\xf6\x1d\x17\x32\xac\x0c\x13\x4f\x1a\x0f\x74\xdc\x09\x85\xdf\x3e\x51\x8b\x61\x0e\x1e\x84\xd4\x06\xbf\x15\xce\xea\x8f\xf4\xc1\xfd\x91\x62\x25\x5d\xb4\xfd\x3e\x11\xc5\xb9\x5c\xed\x71\x95\xa4\x3a\xae\xa8\x9f\x02\x33\x0e\x73\x13\x0d\x40\xbd\x79\x54\x34\x28\xfe\x60\xe2\xe1\xb6\x7f\x80\x96\x7a\xde\xc6\xd1\x73\x53\x94\x09\xc4\x0a\xdf\x9c\x78\x97\xf0\x82\x26\xc1\xb8\xd7\xe4\xc4\x55\xe8\x18\x90\xb2\x07\x62\x86\xaf\x4b\x2f\xda\xe9\xd9\x04\x09\xc3\x6d\xc2\x24\x66\xbd\x42\x9c\x36\xa7\x70\x0e\xf1\x4d\xa5\x5e\x6a\x97\xed\x9e\x8a\x88\x8a\x3f\x47\xde\xec\x78\x40\xd8\x1d\x00\xc2\xe0\x1f\xde\x9c\x28\x1e\xb3\x9b\xa4\x24\x21\xf1\x90\xa2\xbc\x8a\x4c\x9c\x81\xd8\x0b\x4e\xf2\x31\x54\xf4\x11\xb0\x9c\xc3\x13\xc1\xe4\xff\x99\xd2\x78\xfc\x08\x3f\x04\x67\x18\x5e\x12\x0a\x20\x6f\x63\x59\xb0\xa4\x82\xab\x43\x0f\x52\xb3\xec\x08\x9e\x9c\x22\xa0\x57\x07\x54\xac\x48\x03\x9b\x3f\xe9\x51\x82\x67\xab\x82\xf6\x9e\x8f\x82\x23\x0e\x58\x96\x27\x49\x06\x02\x47\xcc\x65\x3c\x9a\x6b\xe5\xfb\xa5\x2f\x39\x7c\x9d\x0f\x09\xd9\xd9\xc5\xfc\xb2\x2b\xca\x8d\x77\x04\xd8\x97\x86\x2f\x95\x30\xd8\xa4\x14\x8d\xe4\x83\x29\xf4\xe3\xd4\x32\xeb\x4e\x48\xe5\xad\x3c\xf9\x9c\x1c\x5b\x39\x96\xb0\xde\xdf\xed\xf8\xee\xfe\x29\x4a\xe2\x20\xcf\xfc\x40\x93\xca\x41\x31\x1e\x5a\xb3\x5c\xe1\xf7\x38\xa1\xdc\xde\x13\xb5\x3c\x2e\x89\x12\x9b\x20\xb0\x91\x4d\x59\xde\xdc\x05\x71\xbf\x83\xd7\xe0\x1b\x55\x10\x8d\x4c\x3f\xb4\x50\xd4\x87\xa3\xd4\xea\xfa\xb4\xfa\x75\xac\x7a\xe1\xf0\xa9\xab\x69\xb7\x17\x4d\x6c\x72\xe6\x6d\x71\x0d\x6c\xbe\x99\xad\x91\x09\x3b\x89\x56\x6d\x26\x5d\x6f\xdc\xad\xd8\xf1\x00\x07\xdd\xff\x9e\xdb\x74\x60\x63\xa0\xb2\xe0\x27\xdf\xa8\x60\xae\x2b\xe2\x09\x0d\xb9\xaf\xd4\x46\x36\xf6\x87\x38\x1a\x5b\xae\x28\xe6\xe7\x2b\x0a\xdb\x1e\xc6\x59\x91\x12\x85\x79\xb9\x42\x45\x56\x9a\xe0\x3f\x7c\xd3\x00\xe4\x9a\x2d\xbd\xc9\x65\xbb\xaa\xce\xd4\xf3\x4a\x7e\xe2\x7c\x23\xd5\xb5\x97\x24\x70\x48\x99\x05\x51\x03\x40\x4b\x09\xf3\xc2\xd5\x7e\xf0\xd0\xa1\x76\xdf\x2e\xda\x38\x43\xb0\x28\x9d\xfd\x6a\x9a\xde\x9a\x3c\xad\x79\xaf\x93\x3c\x04\xf1\xed\x0c\x8d\x00\x97\x5d\x94\x44\x11\x07\x48\x38\x77\xce\x2a\x9e\xb6\x6f\xeb\xc2\xdd\x07\xce\xef\x08\xe3\xa0\x48\x81\x64\xe0\x5c\x29\x0c\x04\xb6\x27\xf7\xbc\xd6\x9b\x39\xc7\x69\x32\x0c\x7b\x61\x8e\xa4\x1e\x6a\x14\xf0\x39\xf9\x7a\x22\x81\xf9\xc0\xe6\x8c\x94\x10\x20\x72\x8d\xa4\x7f\x9e\x6b\x8b\xeb\x93\x9d\xc5\xf6\x2f\xcf\xb6\x7b\x06\x9c\x64\x4d\xca\x0d\xde\xc4\x24\x61\xb4\xbf\xfc\x2b\x6c\xc0\xaf\xe2\xb1\xe1\x1a\x5c\xd7\x8d\x6c\x28\x63\x73\x01\x77\xa2\x42\x50\x70\xb9\x80\x33\x1e\x8d\xfb\x12\x9b\x28\x35\x86\x1b\x9d\x4a\x6b\x88\xe3\xc7\x0b\xd3\x91\xb8\x56\xb0\x3f\x27\xb4\xa1\x66\x3e\x34\x7c\xea\xd6\xc4\xa7\xe2\xe2\xd8\x2d\x65\x18\x67\xd0\x82\xf2\x75\x0d\xc7\x33\x7b\xa4\xbd\x6c\x42\x38\x33\xf0\x4c\x81\x4a\xe5\x6b\x8f\x9d\xb5\xe9\x28\xcc\x33\x90\x63\x89\x46\x5d\x05\x48\xa0\x1c\x38\xf8\xcf\x70\x9c\xf6\xb8\x34\xf5\xa2\x89\x83\x70\xb1\x88\x14\x81\xd3\x1b\x8a\xc0\xe9\x0d\x9d\x2a\x2f\xb2\xa1\xed\xef\x51\x64\x4b\xa0\xee\x73\x7c\xf1\x1e\x5d\x7e\x01\xd8\x68\x86\x60\xaa\xd3\xf4\x82\x82\x40\x9e\x9f\x68\x56\x9c\xd4\x3e\xaa\x64\x0b\xde\x9f\xf8\xc2\xeb\xc3\x14\x65\xca\x71\x45\xbf\x82\xa5\x07\x6e\x54\x2c\xe6\xd2\xfa\x49\x3d\xf2\xb3\xaa\xf5\xc3\x74\xb1\x96\x25\x2a\x9d\x5c\x87\x56\xed\xd1\xef\x76\x3c\xcb\x2f\xb3\x77\x0a\xea\x8b\x5e\x05\x56\x67\x03\x83\xa8\x5c\xe2\x59\x17\x44\x7b\x47\x27\x1c\x99\x41\x18\x63\xa3\xe3\x7f\xdf\xa0\xf3\x87\xaf\x55\x1f\x6c\x14\x7e\xa5\x08\xfb\x61\xbe\x3a\x43\x3f\x22\xbc\xca\xe5\x07\x05\x45\xdb\x7a\x61\x6e\xfb\x0d\x3a\x48\x15\x05\xf3\xbc\x03\xec\xfa\xe0\x38\x2f\x17\x43\x0c\xf0\xcf\xcb\xce\xb7\x53\x69\x8b\x77\x74\x8b\x76\xbf\x08\xa8\xad\x6c\x4a\x85\xcf\x67\x27\xbe\x3d\x1d\xf5\x43\xe9\xcc\xd5\xee\x4c\x98\x64\x14\x32\x71\x3a\x80\x2c\x12\x3c\x81\x6f\x6a\x3d\x93\x4d\xfc\x34\x2a\x7a\x77\x54\x1f\xf0\xee\xee\x23\x4a\x09\xdb\x2c\x59\x04\xc3\xec\xde\x74\x6a\x3c\x8c\xa2\xc0\x5c\xfe\x8e\xa8\x6f\x57\xf5\xbc\x7d\x11\x97\x25\x24\x30\xf3\xff\x0c\x76\x90\x89\x97\x3b\xbe\x2b\x79\x0b\x8b\x48\x25\x98\x5f\x76\xd2\x75\x3b\x73\x60\xa5\x83\x98\xc4\x41\x32\x0a\x73\xc3\xb9\x7a\x6c\xfc\xb7\x3a\xbe\xd3\xf4\xad\x89\xe2\xc7\xef\x17\xc1\x0e\x19\xe2\xbb\x5a\xa4\xb6\xae\xa1\x40\x5c\x27\x51\xc1\x89\xb2\xed\x37\x68\x82\xb7\xdf\xa8\xf9\xaa\x0b\x07\xda\x61\xdc\xb7\x3d\xf7\xed\x48\x13\x5c\x57\x4a\xd9\xd7\x6b\x61\x4e\x79\x6a\x0d\x8b\x78\x90\xae\x6a\x26\x05\xc4\x36\x7c\xdd\x40\xd8\x8f\x0e\x71\x82\x4b\x60\x90\x3f\xd5\x52\x37\x40\x45\x60\x5c\x4f\x56\xbc\x06\x7a\x4f\x41\xd0\x3c\xe6\x8b\x3d\xd4\xec\xdd\xd7\x74\xcf\x0f\xad\xf9\xc6\xce\x87\xba\x4a\x32\x32\xb3\xfd\x87\xbc\xaf\xfa\x2d\xaa\xee\xe0\x54\xda\x43\x09\x5d\x64\x3d\xfe\x47\xcc\x2d\xb6\xc4\x9b\x34\xb7\x88\x7c\xfe\x4f\xd5\xc6\x77\x4f\xf7\xfc\x5c\x82\x49\xe2\xaf\x02\x24\x48\x58\xed\xc8\x35\x75\x7d\x2a\xe5\x8b\xe2\x0b\xbe\x41\x69\x23\xb8\x7d\xdf\xea\xa8\x43\x40\x22\x1e\xac\xc7\x2d\x9d\x1c\xdc\xea\xf8\xa4\xef\xa2\x5d\xd9\xa7\xa8\x19\x8e\x63\x71\x8b\x54\x93\x27\x5c\x38\x4d\xbf\x03\x0b\x39\x4d\x2a\x70\x4e\x13\x72\x41\x02\x8c\x37\xd4\x40\x5f\x9f\xa8\xf4\xfd\xfb\x2a\xbf\xb4\x62\xcd\x92\x65\x31\xe7\xe7\x79\x22\xae\x28\x10\xd0\x15\x05\xb9\x34\x71\x5c\x98\x68\x6f\xcb\x09\x93\x73\x4b\x2d\xf7\xde\x74\x54\xf5\xec\xba\x16\x9d\x43\x48\xc8\xec\xd6\x13\x8f\x41\x6b\x75\x55\x58\xb1\xa9\x59\x66\x06\x83\xd4\x0e\x0c\x4b\x3f\xc3\x08\xcc\x28\x9a\xae\x99\x9a\x13\x3d\x37\x27\x39\x08\x1e\x67\xec\xdb\xbb\x1d\xa5\x40\x7f\x77\xf2\x74\x9d\x76\x65\x6e\x6e\xfe\xa7\xc9\x6d\x17\xa1\x40\x78\xf7\xcc\xaa\x8a\xe1\x77\x43\xfe\x8b\x2f\xf1\xfa\xb9\x07\x85\x5e\x27\x08\xb3\x70\x80\x7d\x88\x4b\x24\xe8\x09\xdc\xc4\xbb\x6c\x74\x04\x95\x40\xab\x89\xcf\x0e\x98\x10\xe6\x59\x23\x44\x27\x6a\x93\x5b\x1d\x1f\x8f\x80\xb1\x90\x33\x48\x48\xf2\x3b\x51\xbb\x72\x70\xb1\x15\xf6\xac\xa9\xcc\xe0\x69\x32\xfb\x4e\x3e\xb2\x9c\x0f\xa0\xd6\x77\xaf\x91\x73\x0b\x0b\xfc\x2e\x0e\x5e\x54\xaf\x31\xd9\x58\xca\xdf\xa0\x68\x46\x54\xb9\x7d\x09\x7d\xcf\x9a\xd2\x12\xfa\xde\xc4\xd3\xb4\xb2\xf2\x2d\xd2\x5f\x97\x54\x93\xcc\xd0\x14\xb1\xa0\x20\x34\xcd\x0a\x5f\x37\x45\xd5\xa9\x0d\x07\xde\xe9\xe1\x8c\x9a\xea\x1a\x3b\xe3\x52\x37\x83\xd4\x9a\xdc\x66\xf9\x34\x8d\x09\x8d\xd5\xbf\x7d\x1c\xe0\x7d\x4c\x15\x28\xc3\x91\x39\x9a\x59\xf3\x95\xb4\x0b\xce\x0f\x4a\x4d\x9e\x3b\xf4\x81\x1b\x7a\x57\x22\xde\x52\x05\x83\x7f\xf4\xb3\xff\x45\x4b\x13\xba\x94\x6f\x2f\x7c\x2e\xfa\x94\x8b\x92\x9c\xd0\x52\x92\x7d\x2d\x67\x02\x95\x20\xee\x12\x40\xcc\xf3\x16\xc2\x33\x97\xbc\x75\xbf\xf9\xfd\x89\xef\x37\xba\x4f\x5d\x8c\xf0\x7c\xd1\xfe\x20\xb0\x1f\x1f\xc3\x8c\xd3\xa4\x87\x2c\xf8\x82\x00\x3c\x7f\x8b\xac\x02\x5f\x57\x32\x0a\x8b\x61\xfe\x98\x57\x45\xfc\x06\x16\x00\x96\xd6\x77\x15\x76\xff\x7b\x70\x62\x71\xee\xac\x77\x54\x91\x74\x9b\x16\xb6\xc8\x18\x28\x10\xd5\xa6\xd2\x58\x63\x7e\x54\x24\x3a\xdf\x9f\x78\x5f\xe9\x32\xad\x4b\xbe\xc6\xea\xc5\x31\x0f\x12\x19\xfc\x07\x74\x79\x71\xc6\x6e\x76\x74\x3f\x31\x92\x14\xb0\x6a\xb7\x1b\x39\x9c\xc6\x1c\x07\x4f\xf9\xdc\xcf\x3a\x06\x1a\x2e\x3c\x42\x70\x56\x90\x9e\x68\x77\x22\x0d\xc7\x2d\x95\xa8\xbc\xac\xd0\xc4\x97\x9b\x9a\xba\x83\x94\x9c\x5a\x0a\xa3\xc5\xf3\x6f\x79\x9a\xca\x89\x02\x69\xfd\x64\xe2\x45\xdd\xb2\xa5\x55\x2d\x1d\xa7\x36\x97\x66\xaa\xeb\xdb\x9e\xc9\x41\x93\x86\x61\xbf\xdb\xd1\x14\x04\x13\xcf\x06\xf6\x43\x1a\x5d\x27\x7f\xec\x67\xed\x94\x52\x83\xb9\xd6\xa0\x92\xd7\x0e\x92\x9c\xd8\xf0\xca\x1d\x2d\x52\xa9\xfe\x04\x3c\xa7\x9b\xfe\xc3\xfe\x43\xbe\x7d\xe3\xa4\x78\x19\x2d\xa7\x3c\xfd\x01\x4e\x15\x0a\x1b\xe7\xff\x7a\xd7\x6b\x10\xe8\x5e\xdf\xed\x36\x68\x14\xd8\x72\xd2\xe3\x89\x64\x1b\x3d\x37\x1a\x8c\xb6\x71\x96\x20\xca\x7a\x64\xcd\x2b\x3d\xef\x27\x7e\x30\xf4\x49\xee\x5f\x93\x23\x75\x29\x8c\xfb\x6c\x5f\x84\x6a\x98\x3e\x2f\xe4\xc4\x3b\x3d\x94\x57\x5e\x69\x07\x51\xd1\xcb\x54\xf0\xfe\xe6\x44\x05\x26\x6f\x2a\x62\xf8\xc8\x14\xa9\x51\x40\x7f\x76\xa0\xf9\x46\x39\xe3\x8b\x66\x39\x49\x4d\x2f\x82\x7c\x03\x7c\x83\xbb\x64\x20\x1c\x29\x41\x39\x0c\xc2\x6d\xf0\x80\x5b\x0d\x7f\xe7\xa7\x68\xe0\x90\x12\xb8\x8b\xbf\x82\x9b\x82\xae\x43\xf8\x59\x77\x3a\xbe\xed\x08\xd6\x89\xfd\x57\xa2\xee\x92\xac\xfe\xd4\xfc\x8b\xc4\x85\xf0\x92\xcb\x11\x9e\x07\x98\xd8\x3d\x7c\xb9\x79\xdc\x4e\x2a\x0f\x21\x24\xef\x3e\xa2\x4d\x09\x87\xfd\xc7\xd4\x3b\xc1\x35\x71\x8d\xf5\x05\xa9\x09\x5a\x81\xfe\xaf\x89\x66\xac\xb9\xae\x34\xaa\x8f\x93\xbd\xc2\x5f\x7d\xca\x09\x32\x7e\x16\x2c\x60\xd8\x24\x70\x11\x62\x7b\xde\x55\x7d\xca\xcc\x92\x05\x83\x72\x47\xab\x20\xdd\x6c\xec\xef\x79\x26\x7e\x86\x4c\xb2\x70\x8c\x79\xd3\xb4\xe9\xb4\xa8\x33\x33\x2a\x6c\x34\xa5\xe8\xc6\x6f\xd3\xcc\x38\x04\x96\x83\x5c\xd6\x7b\x88\x08\x5c\x5c\xa4\xd4\x8e\x81\x93\x11\x52\x26\x1c\x11\x6a\x8e\xda\xcd\x0a\x5b\xe9\x23\xba\x3d\x25\x47\x3f\x07\x5e\xfd\xc7\x13\x8f\xf4\x03\x3a\x15\x47\x52\x0b\x8c\x14\x38\x28\xb6\xbd\x1c\x6b\x9a\xc4\x4b\x61\x6e\xb9\xf6\x8e\x24\x18\x37\xe4\xf1\x4d\xe7\x49\x85\xd0\x4a\xc6\x49\x6c\xf9\xc4\x95\x78\xea\xac\xe7\xfc\xf9\xed\xb3\xae\xff\x39\x2d\x48\x4b\x4c\x00\x1d\x8c\x3c\x52\xa8\xe5\xd3\x4d\x02\x6c\x23\x9b\x65\x69\xf6\x1c\xeb\x8b\xc2\x36\xfd\xcf\xd8\x3f\xf8\x14\x06\x48\xb7\x70\xb8\x2d\xe0\x23\xeb\xdd\x0d\x34\x54\x8c\x04\x74\x07\xbf\x54\xb8\x5a\xae\x37\xf9\x56\x2d\xf5\xf3\x6c\xdb\xae\x5a\x7e\x57\xf1\x2e\x14\x07\xc9\x05\xe7\x78\x8f\xcd\x6b\x45\x36\xa5\xd2\x48\x97\xb4\x95\xb8\xa8\x4e\xdc\x5d\x4e\x9d\x20\x32\x45\xdc\x4f\x57\x55\x8d\x07\x89\x21\x1c\x58\x37\x26\x15\x8e\x96\x9d\x66\xe6\xc8\x8b\x6d\x33\x1e\x47\xab\x30\xaf\x38\xb1\x80\x41\xe2\xeb\x5a\xdd\x72\xf6\x48\x7b\x14\xc6\x96\x10\x89\x8e\x4c\xce\x6f\x80\x4f\x27\x2a\x89\x8e\x9a\x24\x6c\xef\xbf\xac\xfd\xf6\xb3\xed\x9e\x8d\xc3\x01\x52\x62\x8e\x83\xd5\xf5\xcd\x5d\xa8\xfd\xf4\x2b\xaf\xb4\x97\x24\x77\xec\x14\x42\xcb\x9f\xe6\x9b\x26\x6d\xac\xbe\x35\x7e\xae\x98\xec\x5e\x75\x41\xbc\xa7\x64\x3b\xb2\xdc\xf6\x81\x44\x74\x29\x9e\xf2\xcb\xc5\x12\xf9\x08\x2e\x1f\x9a\xf8\x29\x55\xf3\x5f\x87\x7f\x01\x8f\xfa\x91\xae\xaa\x69\x3f\xda\xf5\xeb\xf4\x0b\x70\x7c\xe1\x3c\xb5\xb4\x72\xe1\x09\x65\xd8\x76\xad\xf9\x3c\xfe\x55\x9a\x08\x04\x4a\x0f\xad\x29\xb5\x48\xae\xe2\xa2\xef\xe0\x26\x5c\x6d\x97\xfa\x2f\xa7\x1b\xeb\xea\x11\xd0\x04\x40\xe4\xef\x89\x35\xaf\x5c\xb9\xab\x8b\x7d\x81\x55\x71\x5b\xd9\x96\x8b\x44\xd8\xc2\x3c\x1c\x54\x94\x81\xed\x05\x2c\x0a\x49\x94\x1b\x4d\xe1\xb4\x89\x92\x98\xa9\x0c\x91\xb7\x44\x03\x15\x5f\x77\xf6\x87\x24\x33\xf9\xb3\xed\x5f\x7e\x8a\x70\xa5\x2e\xfa\x73\xd9\xd0\x1b\x3a\x57\xbb\x4d\x85\x11\x5c\xef\xeb\x7a\x7e\xd1\xfb\x7a\x77\xfe\x8d\xae\xd6\x89\xbe\xaf\xc4\xc8\x6f\x20\xdc\x81\xc5\xbb\xa1\x19\x5d\x5a\x6b\xad\x7f\x22\xf4\x2c\x6f\xb3\xe1\x77\xe0\x57\x47\x10\x71\x7f\xa2\x7a\xd6\x60\x3d\x61\x92\x91\xaf\x41\x36\x7c\x3f\x48\x64\x31\xb9\x4c\x04\x24\x62\x44\x3e\x13\xf3\x59\x85\xf4\x6a\xa2\xb4\x12\x5e\x0b\xcc\xb2\xc9\x13\x50\x93\xe3\xb7\xe0\x99\x49\xd1\x40\xa1\xd1\x37\x6a\x15\x84\xf9\x85\xf9\xf6\xc8\x84\xc4\x78\xd3\xf2\x60\xc6\x73\x1d\xc5\x1e\x53\xcf\xf5\x08\x9e\x7e\xf4\x5c\xef\x39\xf3\x1c\x99\x0c\x44\x8e\xf0\xc2\x2a\x7d\xd4\xa2\x15\xe4\x05\x00\x17\xd3\xe4\x75\x1b\x7f\x6e\xef\x9b\x62\xdf\x1e\xa7\xd6\xd2\xb7\xa3\x1f\x62\xf7\x9a\x12\x08\x43\x66\x06\xde\xc0\x7e\x95\x29\x5b\x19\x86\xc1\xf0\xa7\x94\xfa\xda\xe5\x8e\x57\x4b\xfb\xdf\xe9\xcc\x44\x93\xf9\xd7\x3b\x8a\x7d\x86\xb7\x9b\xe3\xf5\x5e\x98\xf7\x05\x2d\x67\x26\xc0\xd9\x01\x14\xcf\x1e\xd0\x59\x89\x4b\x55\xae\x2d\xbc\xe9\xf5\x8e\xd2\x80\x7a\x7c\x4d\x71\xb4\x30\x6d\xaa\x74\x99\xd1\xb4\xcb\x76\xd1\xa8\xab\x7b\x1c\x8c\x23\x4d\xf2\xb1\x92\xdf\x7e\x90\x9a\x40\xb0\x3a\xae\xa1\x3a\x07\xdf\xe5\xc7\x58\x37\x4c\xce\x86\x48\xc3\x29\x19\x97\x01\xa2\x53\x4b\x3e\x38\x2b\x9e\x34\xf6\xbb\x20\xc5\x14\xc3\x73\x12\x0f\x88\xe5\x04\x5b\xf6\x1e\x38\x28\x39\x84\x56\x24\x04\xbf\xae\x49\x43\x05\x37\xc6\x77\x5d\x95\x3c\x86\x4c\x14\xb7\xe3\x4f\x14\x83\x00\xd3\xa7\x4a\x70\xde\x80\xfb\x5d\x49\xd2\x7c\x88\xde\x53\xcc\xc6\x55\x95\x0b\xaa\xf7\xf9\xcc\xcd\xb5\x17\xc3\x2c\x18\xda\x94\xfd\x87\x46\x60\x95\x12\x87\xcc\xb2\x24\x08\x15\x9e\xcd\xb1\x08\x79\xbf\xf7\x71\xb6\x0e\x88\xaa\x7f\xdb\x37\x7f\x3f\x03\xc8\x3b\x76\xd9\x37\xb4\xd6\x49\x10\xda\x38\x0f\xb3\x3c\x53\x2a\xc9\x7f\x4c\x1f\x84\xf1\xd8\xa0\x04\x07\x92\x25\x5c\xc7\x95\xb9\x2a\xa7\x97\xff\x43\xd3\x1b\x9f\x9c\x7c\x41\x69\x72\x42\x6c\x09\x35\x2f\x1c\x48\x58\x85\xf7\x15\xd2\xe5\x7e\xad\x49\xb3\x0c\x17\x57\xd0\x16\xe9\x20\xa7\x1e\x7e\xaa\xaa\x17\x49\xef\x55\x1b\xa0\x20\x29\xbd\xd4\x1e\xcd\xcc\x95\x23\xdc\x1c\x57\x72\x83\x8b\x49\x6a\xd3\x22\x8e\x2d\x13\xb0\x21\xa0\x39\x4e\x9e\x2f\x5f\x77\x7c\x67\x71\xdf\x06\x91\x11\x3e\xa6\xd9\x23\x4e\x26\xbc\xfc\x24\x5f\x77\x3c\x59\x43\x98\xa6\x76\x50\x44\x26\x0d\x05\x18\xf2\xbc\x83\x02\x94\x8f\xc9\xd7\x4d\x8a\x5e\x03\xc7\x5a\x81\x23\x04\x25\x03\xbe\x76\x89\xd7\x64\x71\xd1\x12\x08\x1c\x55\x39\xec\xa2\x13\x1a\x1f\x8d\xa2\xac\xe8\x49\xa8\x58\x71\x34\xde\xeb\xe5\x81\xae\xa8\x3e\x8a\x0b\x8a\xa6\xf8\xcd\x8e\xe2\xf0\xbb\x88\x96\x08\x14\xfb\x4e\x29\x80\xd0\xb7\xb4\xd8\xc9\xc5\x9a\x74\xd5\xb3\xed\x51\x12\xe7\xb6\x1f\x66\xc2\x62\x85\x1f\xdd\xd5\x55\x87\xd9\xae\xb5\xa7\xfd\x42\x8c\xc3\xc1\x80\xde\xab\x8c\xd4\x0e\x1e\x64\x48\xd8\x49\x5a\x65\xd2\x27\xe4\x49\x57\xae\x76\x76\xea\xf0\xfe\x9d\x76\xdf\x26\xaf\xad\xa6\x61\x2f\x89\x8b\x20\xb2\x61\xd0\xd2\x5d\x56\x2d\xc5\x58\xba\x33\xb1\x45\x95\xfa\xd4\x06\xd4\x73\xe7\x32\xe8\x67\x55\xbb\xdf\xd9\xcf\x3d\x55\xc6\x36\x19\x47\x76\x0f\xf6\x1d\xfc\x47\x64\x41\xe1\x17\xdf\x9b\x78\x23\x06\x47\x4f\x08\x70\x94\xf8\xd1\x43\x5d\xd5\x1a\x3c\xbd\xa6\x13\xbf\x76\x29\xa2\x55\x54\x5a\x3f\xe1\xd1\xf1\xb0\xe4\xba\x54\x61\x79\x44\x26\xb1\x9d\xaa\xca\x4b\xba\xc2\xd3\xae\xae\xd6\xa0\x54\x6a\x8f\x96\x78\x36\x09\x81\x09\xdf\xef\x84\xaa\x38\xb2\x06\x93\x34\xc7\xd3\xa6\xe2\x1b\x9a\x12\x44\x11\xa0\x3e\x16\x39\xa5\x9d\x63\x0c\x50\x91\x1d\x25\x59\x8e\xa0\x46\x9a\xd8\x7c\x5f\x67\x9d\x08\xc7\xf5\x78\xf7\x59\x01\x58\x3c\x03\xd5\x9d\xb1\xa1\x28\xbd\xb3\xdc\xef\x52\x81\xb3\x97\x0f\x25\x30\xf7\x46\xb0\x77\x18\xa5\x49\x02\x61\x1e\x9d\x99\xe4\xeb\x06\x1c\xdc\xe1\x76\x6a\xfb\x45\x50\xad\xd7\x7c\x32\x51\x1c\x0e\x9f\x74\x76\x76\x87\x1e\x3d\xd0\x36\x19\xf5\xb9\x0b\xe5\x8a\x47\x63\x62\x0c\x40\xb9\xf1\xbb\x0a\x60\x29\x2a\x14\xc2\x68\xc8\x6d\x0d\x34\xff\xd2\xe2\xd0\xf0\x46\x8b\x24\x40\x98\x4a\x41\x1b\x29\x8b\x2b\x9a\x58\x93\xa3\x77\x11\xe7\x7b\x44\xa9\x2f\x46\x51\xf6\x80\x07\x58\x9f\xa7\xa7\x54\x9a\x1d\x8e\x54\x7d\xa2\xc4\xce\x2f\x28\x02\xeb\xeb\x2a\xfd\x05\x11\x14\x56\xe3\x51\x90\xa8\x87\xe0\xc9\x23\x68\xff\x35\x1c\x1d\x00\x9d\x5f\xf0\xac\x53\x49\x14\x7a\xe2\x30\x1d\x2b\xe3\xc8\xb8\xac\xdd\x93\xf7\x3c\x60\x30\x49\xf3\xd4\xac\x72\xd2\x49\x1a\x21\x3c\x90\xaf\xde\xad\x30\x7b\xa4\x3d\x30\x51\xc4\x46\x4a\xdb\x4f\xbe\x56\xc4\xdd\x59\x98\x13\x27\x39\x5e\x6f\x77\x97\x4c\xa3\xa6\xa6\x94\x38\xb7\x61\xf1\xa7\xb6\x6f\x17\xa9\x7c\x7c\xf4\x80\x48\x31\x76\x2a\xba\x8c\x3b\x4d\xe8\xc2\x01\xd2\xe4\x31\x71\x6e\x05\x6d\xef\x30\x14\x6e\x43\x9f\x6d\x5a\x01\xfd\x30\x23\xee\x0f\x20\x08\x04\x68\xeb\xe1\x3d\xdb\x8a\xc9\xfc\x04\x66\x52\x12\x01\x4d\x51\x4e\x19\x2b\x53\xd1\x10\x96\x61\x0a\x61\x1c\x7c\xb9\x4b\x1a\xf3\x75\x51\xf1\x73\x82\x18\x54\x10\x0b\x0d\xa5\xa0\xb1\xed\xf7\x7d\x94\x2a\xac\x63\xe5\x43\x0a\x1d\xd9\x8e\xde\xc2\x43\x87\x16\xda\xcf\x4e\xfb\x28\xff\x5d\xfa\x63\xfc\x32\x12\xdc\x30\x08\xef\x69\x0e\xc3\xcd\xa6\x2a\x46\x18\x2f\x46\xbe\x4b\x0d\xcf\x8b\xc5\xc5\xd7\x0a\x57\x6f\x4a\xe3\x33\xa3\xfd\xed\x89\x86\x16\xd1\x37\xc0\xe6\x61\x5a\xf0\x47\x97\x27\x8a\xa4\xf0\x83\x26\xdf\x6f\x9c\x26\xcb\x21\x33\x3f\x20\x43\x7c\x1b\x33\xc1\x37\x1d\x9d\xff\x4e\xa2\xa8\xa5\xc5\xbe\xcb\xa1\x15\xc2\x78\xd7\x0b\x1f\x45\x76\x95\xf3\x2d\x2a\xad\x73\xd8\x31\xdd\x7a\x01\x4c\xee\x31\x8d\x07\x0f\x96\x5f\x0a\x97\x76\xba\xeb\xd7\xff\x55\xcd\xc1\xbd\x81\x74\x24\x9a\x80\xaf\x2a\xc4\xdc\x0d\xcf\x9f\xf0\xd5\xa7\xd7\x4a\x43\xa1\x10\x37\x0e\x64\xd3\x51\x09\xfe\x2b\x13\x95\x51\xdd\xa0\x93\x5d\x3a\xd5\x15\x8f\x8b\x49\x73\x96\xc4\x99\xf6\x3c\x52\x0c\x3d\xe1\x1b\x0c\xbb\x68\x9c\xd0\x97\x8a\xd2\x77\x85\x90\x77\x34\x9e\x51\x68\xc9\x2d\xf2\xef\xa4\xb8\xeb\x25\x4d\x6f\xeb\x66\x46\x7a\x29\x41\x11\xd6\x33\xf3\x73\xed\x2c\x29\xf2\xe1\xb4\x47\xc0\x7d\xa4\xb5\x40\x01\x8a\x11\xee\x0b\x7f\x36\x7e\x54\x73\x90\x16\x0e\x90\xa7\x18\xd9\x65\xc3\xad\xa0\x78\x30\x50\x9b\xf3\x75\x03\xc0\xad\x5c\x39\x36\x37\xaf\x91\xb9\x82\xf7\xf9\xae\x0a\xd0\xdf\x55\xdc\x00\x3d\x6b\xf2\x07\x54\x89\x66\x43\xf1\x6f\xb0\x06\xbd\x00\xae\x5b\x73\xaa\xed\x70\x41\xe0\xd5\xc0\x4d\x63\x90\x66\xd6\x28\x82\x93\x84\x71\x39\x4a\x22\x00\xe6\x29\x3f\x7f\x77\xab\x53\xc9\x2b\x2b\x47\x7d\xc8\x1c\xe9\xe5\xd2\x60\xab\xd0\xd1\x98\x26\xed\xa5\xda\x47\xbd\x0a\x21\xa3\x0f\x2a\x0c\xb6\xd8\xf3\xe0\x5a\x13\x9d\x3f\xdd\x69\x0e\x0e\x6d\x38\xf2\xe7\x14\xbf\xe8\x69\x72\xc6\x9c\x34\x93\xc3\x94\x23\x2f\x0a\xe3\xfd\x58\x97\x82\x53\xc9\x00\x29\x5a\x91\x2b\x9a\x91\x74\x17\x15\x3f\x10\x2e\x4d\x23\xe5\x24\xf8\xdc\x9d\x38\xd0\x43\x87\xda\xe3\x6c\x35\x18\x26\x26\x36\xd1\xaa\xa0\x33\xf1\x51\x40\xee\xf8\x5a\x25\x4a\x7a\x69\x18\x45\xa1\x91\xde\x1f\xc6\xae\x76\x28\xb8\x15\x20\xab\xc7\x08\xad\x98\x34\x0d\x93\x34\x03\xfb\x04\x4b\xe9\x61\xa8\x90\x9f\x5b\x9f\x28\x61\xbc\xfb\x1d\x55\x01\x9d\x3c\xe9\x31\x1a\xa5\xd7\x30\x0a\x63\xee\x21\x56\xba\x06\x5e\xdc\xba\x81\x01\x78\xd1\x84\x11\x87\x22\x48\x8d\x5e\xd3\xc7\xda\xfb\xb4\xb4\x84\xe7\xe5\x71\xd5\xe0\xb4\x18\xc6\x42\xa4\x06\xd7\x07\x63\xc1\xd7\x0a\x60\xde\xb7\xa4\xab\x45\x96\x52\xda\x1b\xfc\x7a\xbd\xa0\x6a\x42\xcb\x09\xb1\x24\x95\xbf\xee\x38\x73\x3d\x7f\x6e\x93\x4c\xd9\xd8\xe4\xa1\x34\xeb\x72\x43\xa8\x3a\xfb\xcf\xab\x07\xb6\xaf\x05\x36\x1d\xe7\x68\x2b\x40\xaa\x89\x45\xdc\x51\x2f\xe0\xde\x15\x69\x32\x10\x87\x24\x59\xb6\x69\x66\x4d\x86\x7d\xc8\xea\x05\x13\x05\x4c\xd8\x54\x84\x47\x7f\x8d\xb2\x7e\x28\x1d\x70\xa9\x0d\xeb\x70\x9a\x56\x9b\xfc\x87\x07\x46\xed\x5f\x53\xac\x82\xef\x73\x5e\x46\xda\x21\x7d\x33\xd1\x4f\x75\x77\x46\x2f\xcf\xb6\x63\x5b\xa4\xa4\xc4\x9c\x09\x04\x00\xef\x7c\x5a\x07\x92\xa7\x95\xaa\x60\x18\x45\x85\x0b\xe6\x84\x60\xa5\xe5\x14\x70\xcf\x3b\xd7\x6d\x64\xf2\x22\x15\xed\x37\x05\x5a\x17\xb8\xf3\x36\x4d\x0a\x52\xfd\x57\x9a\xfc\xb1\xac\xe8\xf7\x6d\xac\x16\xe1\x6e\xa5\x92\xb1\x7b\xad\xa1\x10\xd4\xb7\x8c\xda\x77\x70\x44\x45\x87\xfd\xb8\x02\xfa\x2f\x5b\xcf\xba\x23\xfd\xb7\xba\x31\xd7\x57\x79\x29\xde\xcf\xf0\x97\xf0\x94\x5a\xc8\x65\xf3\x4d\xb7\xa9\x6d\x37\x32\x2b\x78\x6e\x76\x67\x27\xbe\xb9\xf2\xc2\xe7\xaa\x3b\xf7\x93\x38\x36\x9a\x97\x41\x93\xd0\x6d\xaa\xe5\xdd\x8b\x4c\x96\x4f\x6b\x3f\xb3\x34\xd5\x52\x4e\xf1\x3e\xe1\xb7\x14\x7d\xd9\xb7\x5c\xda\xa0\x88\xc3\xc5\x24\x1d\x31\xa3\x0d\xe2\xc7\x1b\xaa\xad\xf5\x86\xca\x65\xf6\xa2\x30\x7f\xbd\xe5\xf1\x99\x70\xa1\xa5\xd8\xa8\x8a\x02\xab\x63\x78\x30\x48\x09\xed\xee\x2a\x55\x88\xdd\x6b\xf5\x11\x7a\x99\x5a\xc9\xa7\xcb\xc7\xc6\xb9\xf8\xb6\x22\xbe\xbd\xa7\x70\xe0\x27\xc8\x82\x4b\x7d\xa4\x09\xe6\xdd\xb3\xc3\x30\xee\xcf\xb4\x0e\x1e\xe4\x35\xf6\x5d\x1a\x0d\x2c\xf8\xa9\xae\xa2\xe7\x54\xc6\x42\xcb\x72\x6c\x4c\x74\x93\x60\xb2\x12\xc6\x83\xe9\x8a\x78\x59\xf9\x31\x58\xc9\xef\x4c\x7c\x5d\xf7\x8a\x0e\x3c\xb6\x15\xb8\x3b\x48\x46\xe3\x22\xb7\x69\xf8\xba\xed\x93\x91\x80\x1d\xbe\xac\x04\x1e\x19\xb9\xcb\x59\xb8\x89\x77\xc8\x4c\x30\xb4\x71\xcf\x14\xa3\x29\x65\xee\xb9\x37\x0b\x1b\x85\x49\x8e\x45\xcb\x46\xea\x60\x36\xce\x6d\x2a\x51\x12\x62\x36\x78\x03\xac\x64\x8f\x4f\xe1\x85\xef\x76\x9e\x70\x15\xb7\x3c\x0d\x4d\x1a\x0c\x4d\xc4\x41\xa2\x43\x63\xba\x12\x39\x50\xf9\x88\xf6\x7e\xa8\x4e\xa6\x2c\x4f\x4d\x6e\x07\x61\x00\xbf\x1d\x53\x07\xa8\x04\x5f\x37\x95\x26\x7b\xa1\xd2\xe8\x14\xa9\xb8\xd6\x9c\x97\x90\x73\xa8\x42\xe2\x71\x71\x7f\x2a\x84\x47\x2d\xc5\x84\xb4\x53\x78\x7c\xb6\xfd\xec\xa3\x34\x6c\x38\xe4\xef\xeb\x2e\xa8\x4b\x54\x20\xc1\x8f\xfc\x80\xd6\x1a\x2a\xba\x77\x27\x35\xfd\x2c\xe6\x10\xd7\x85\x93\x3f\xad\xb4\xd0\xb6\x1c\x15\x6d\x8b\xb2\x28\x2e\xda\x28\x1d\x53\x78\xed\x67\x3a\xaa\x05\x93\xcb\x52\x0e\x23\x72\xf8\x97\xbf\xcc\x85\x30\x5e\x43\x70\x2b\xd6\x27\x5a\xd9\x70\x94\x10\x3a\xee\x25\x57\x2e\x02\xb4\x5a\xba\xe8\x1f\x56\x07\xa8\x89\xf6\x96\x9b\x84\x71\x6c\x78\x09\xd7\x81\x56\xf1\x7a\x5d\xf1\xfb\x92\x3e\x9a\xef\x68\x95\x43\xf4\xfc\x22\x7b\x71\xaf\x86\x48\x79\x61\xae\x3d\x22\xe2\xd3\x29\x0f\x1f\xde\xad\x9c\x26\x76\x8d\x84\x31\x51\x26\x33\xb7\x69\x9a\xa4\x61\x36\x9a\xf2\xe3\xc8\x58\x5e\x59\x2b\x2d\x27\x44\x71\x45\x29\x3c\x2e\x87\x69\x5e\xb0\x49\xc7\x59\x3b\xb5\xa6\x6a\x3c\x53\xb5\xf3\x8c\x2c\x42\x91\xf6\x6d\x9c\x25\x23\x66\x2e\x13\xf2\x8e\xd2\x2c\x38\x8a\x2a\x07\x87\xdf\x56\x06\xf3\xa4\x42\xf7\xc4\x49\xba\x62\x60\x23\xf1\xa1\xa9\xae\xd7\x14\x99\x5a\xdb\x99\xa8\x3e\x74\xa8\x9d\x15\x23\x32\x95\x02\x14\xa5\x59\x97\x28\xc3\xbf\x53\x18\x87\x79\x68\x22\x6c\x55\x98\xa6\x5d\x6b\x3e\x2b\x79\x55\x17\x78\xb6\x5c\xeb\x27\x6d\xf0\x71\x1a\x66\x96\x70\x0a\xc2\x3a\xdf\x72\xaa\x9d\xf0\xd1\xa5\xb4\xa8\xf2\x3a\x7f\x39\x79\x54\x47\x02\x45\xce\xf5\x6e\x27\x67\xbc\xe0\xfb\x9a\x3d\x5a\x26\x4b\x82\xd0\xfa\x8e\x46\xa7\x87\xa9\x59\x2f\x1e\x52\x50\xa8\x50\x0b\x39\x92\xd1\x16\x51\xc7\x47\x95\xde\xd9\x32\x41\xd2\xbd\xbc\xd7\x86\xa6\x2f\x9d\xea\xfa\x98\xf2\x81\x9a\x16\xed\xa1\x43\xed\x5e\x11\x46\xfd\x62\xdc\xf2\x2b\x14\x4e\x1a\x5f\xeb\xf7\x4c\x6c\x18\x0f\xf6\xc1\xa6\x61\x7c\xae\x75\x3c\xa8\x8c\xe3\x4f\x9c\x17\xbf\xd9\x51\x5e\xfb\x6f\x52\x64\x80\x45\x79\x55\x51\x86\xde\xa8\x34\xec\x69\xc2\xad\x3b\xb5\xf3\x7c\x6e\x6e\xbe\xdd\xb7\x51\x18\x84\x49\x21\xc9\x37\x38\x0b\x58\x77\xac\x67\xaf\x0b\xec\x57\x2a\x7c\xb5\xe3\x00\x9a\xa6\x82\x61\xf2\x8f\x51\x6f\xa6\x5a\x38\xd0\x2e\xe2\xc0\xc4\x71\xc8\x07\xba\x0b\xcc\x14\xb6\xfe\x09\x8d\x43\x1c\x27\x99\x89\x98\x15\x14\x81\xfa\x1b\x30\x13\x1c\xdd\x28\xb5\x4a\xc0\xc7\xf8\x1a\x63\x26\xfa\x52\x0d\xa9\xf3\xf6\xd0\xc4\xfd\x48\x56\x8c\xa4\x37\x15\xfa\xbf\x7e\x22\xcc\xcd\xb5\x7b\x49\x92\x39\x80\x0b\x4b\xfc\x60\x46\x44\xef\xa7\xc1\x33\x1c\x15\xb9\x44\xcb\x92\x6b\x50\x9d\x3e\x8a\x76\x65\x54\x9a\x9d\x61\x98\x9b\x19\xff\xb7\xbb\xbb\x9e\xe5\x04\x7c\x30\x42\xc9\xb3\xa3\x59\x42\x9a\xac\xee\x36\xf0\x74\xcc\xb6\x7b\x61\xbf\xef\xce\x27\xf8\x0a\x1b\xaa\x6f\x52\x17\x27\xc3\xbe\x35\x34\x39\xc0\x16\xec\xea\x7a\xd4\xdf\xae\xda\x42\x3f\x78\xb0\x9d\xa7\xa6\xef\x78\x19\xe0\x25\xdc\x52\x74\x89\x98\x22\x96\x70\x50\x10\x40\x1b\xf6\x30\x8c\x92\xe6\xa6\x15\x26\xf9\xef\x9d\xef\xf0\x12\xa9\x2b\xa7\x23\xea\xac\xab\x11\xb7\x89\xf6\x8c\x38\xf3\xa6\xbf\x1c\x66\x82\xd9\x54\x2d\x47\xcf\xb3\x37\x78\xaf\xa2\x95\xe3\x9f\x69\x1c\xe6\x53\x64\x08\x5d\xfd\xdb\x59\x48\x8e\x0f\x71\xee\xbc\xa5\xf0\xc8\x79\x1a\x32\x05\xfb\xf3\xec\xc7\x9d\x52\x6a\xa2\xa7\x9a\x30\xa5\xa5\xd3\x15\xd9\xbc\x4a\xa4\x79\x45\x7b\x00\x57\xd4\x40\x0d\x4d\x84\x66\x74\x81\xed\xd4\x9d\x1f\x9c\x45\x48\x86\x21\x2c\xbf\x52\x5b\xf3\x2f\x51\x7b\xb1\x89\x9d\xd4\x17\xc6\xe5\x47\x1d\xd5\x97\xf5\x23\xd7\x5c\x96\x8d\x6d\x9c\xef\xf3\x60\xb2\xc7\xd6\xb4\x8f\x37\xf1\x51\xed\x15\x4f\xd3\xff\x1b\x4f\x20\xd6\x70\x29\x89\x85\x03\x0b\x5a\xb3\x44\xe4\x06\xfe\x56\x57\x11\x10\xef\x5d\x73\x2a\x9b\xe6\x75\x1b\xc5\x45\x8e\x7c\x80\x02\xbd\xbe\xec\x59\x76\x8f\x1e\x70\x00\xd8\xf2\x67\x91\xe4\xd9\xd5\x75\x08\x34\x3b\x2e\x7a\x51\x18\xf0\x1a\x81\x01\x04\x53\x2e\x5f\x3b\xd6\x2f\x47\xce\x00\x82\x29\x66\x16\xd5\x7d\x42\xe4\xea\x6d\x1f\xd3\xdd\xf6\x69\xc8\xfb\x18\xbb\xfd\xaa\xa2\x9b\xbe\x5a\x83\x92\xbd\x30\xd7\x36\x61\xaa\x48\x00\x10\x03\x4b\x92\xaa\xc6\x6c\x36\xdb\x0e\x4c\xdc\x07\xe0\xd3\x59\xb1\xf2\x71\x70\x4c\x9e\x99\xf8\x7a\xe4\x05\x75\x4e\x65\x36\x0d\x6d\xf6\x50\x69\x00\x5c\xfb\xe5\x82\x74\x51\xdf\x50\x64\x8e\x8f\x63\x76\x90\xe1\xbc\x0e\x37\xaf\xd2\x92\x88\xe2\xd8\xba\x66\x00\x7a\xac\xdb\x7a\xc9\xeb\x43\x2a\xce\xa0\x35\xda\xd5\xf8\x44\x8b\x7c\x0d\x38\xe0\x8f\x52\xc7\x88\xe4\xd8\x76\x1e\x36\x2f\xcc\xb5\x53\x13\xd8\x61\x92\x66\x62\x79\xe1\xee\xb1\xea\x00\xdf\x28\x9f\xaa\x47\x68\x7a\xb4\x16\xc3\x54\x81\xc5\x98\x81\x20\xe4\x10\x0b\x55\xea\x4e\xd3\xbb\x70\xa0\xbd\x98\x5a\x92\x6d\x76\x16\x88\xb9\x33\x45\x5f\xb0\x0e\x74\xa3\xc6\xd8\xbe\xaa\x77\xb0\xa8\x04\xdf\x34\xa1\x7f\x87\x26\xcb\xd9\x7b\x73\xe2\x38\xde\x44\xfd\x5b\xa5\x20\x7f\xbb\xa3\x68\xd7\xcf\xeb\xc6\xd6\x24\x0b\x1d\xd8\xc0\x8b\x3c\x79\x5c\xce\x05\xb7\x33\x83\xa1\x19\x83\xb7\x00\xa3\x75\x5b\x0f\xdd\x6d\x95\xfa\x48\x8b\x7c\x18\xd9\x2c\x6b\x11\x3a\xc5\x75\xfd\x1c\x3a\xe4\x6e\xd4\xd2\x26\x7e\x77\xb2\xfa\x2c\x72\x80\x27\x15\xc5\x03\x89\xc1\xd0\x23\x08\x3c\x3c\x59\x3c\x44\x10\x6f\x29\x4c\x12\xc4\x16\x70\x86\x9e\xad\x09\x89\x49\xfa\x80\xbc\x2b\x09\x01\x61\xf4\xff\x15\x7d\x09\xae\x59\xea\x1f\xdd\x49\xb7\x54\xec\xde\x4f\x58\x54\x14\x8b\xe1\x9a\x26\xee\xac\x63\xd2\xa9\x44\x3e\x48\x0d\x00\xf2\xbc\xad\xd5\xfa\x39\xa7\x8a\xc9\xcb\x06\x1c\x80\x3e\x9c\x67\x54\x21\xdf\xa8\x82\xed\x38\x09\x96\x2c\x37\x21\x6b\x24\x02\x5f\xeb\x22\xc8\xd0\xa4\x63\xcd\xd8\x79\x5e\x33\x76\x9e\x77\x65\x90\x15\xf3\xda\xc8\xc4\x53\x8a\xd5\xed\x5e\x47\x0b\x54\xc3\xcc\x0b\x7d\xbc\xf7\x90\x32\x93\xdb\x28\x0a\x73\x3b\xa3\xb0\xbe\x6f\x74\xb4\x1e\xc8\x44\xeb\x81\x28\xba\x8e\x6f\xd0\x23\xb3\xc0\xb4\xe3\x26\x5e\x0c\x3d\xeb\x06\x7e\xfa\xab\x4a\x76\xf4\xab\x35\xf7\x71\xf6\x48\x7b\xd9\x66\x91\x5d\x4c\xc3\xa5\x25\x86\x04\x09\x84\x43\xf1\xc5\x6d\xd5\x8e\xc1\x83\xb3\x14\xb4\xd8\x81\x10\xa5\xe0\x6c\xf8\xb4\xa3\xd2\xd5\x9f\xaa\x40\x64\x91\x24\x99\x50\x8c\x96\x13\xd9\x3b\x26\x8c\x27\x12\x84\x5c\x03\xe7\x58\x3b\xb6\x2b\x41\x32\x62\xc2\x00\xe9\x48\x50\xf0\xaa\x7a\xdd\xa4\xfc\x54\x94\x24\x99\xdd\xe3\xbb\xcd\x6f\x2b\xdc\xdf\x9b\x38\xb1\x5d\xf9\x7d\xe1\x80\xf4\x61\x63\x02\x10\x76\xaf\xeb\x25\xfa\x63\x97\x62\xa5\x52\xa7\xdb\x46\x78\x8b\x2b\x2a\xf3\x06\xb7\x0b\x39\x90\x0b\xae\xad\x7d\x98\x8c\xa9\x87\x63\xfb\x94\xe6\x9d\xd8\xa3\x55\xaf\xfe\x5a\x57\x11\x6f\xdd\xd6\x6a\x2e\xfb\x29\x1f\x8b\x90\xe5\xba\xae\x5d\x25\x51\xc8\xbc\xd1\xd3\xca\x33\xb8\x31\xf1\xc0\x61\x34\xb9\x38\x10\x88\x6f\xde\xf9\xd7\xee\x40\x8d\x6d\xbe\x92\xa4\x4b\x6e\xf5\x48\x9a\xc2\x7b\x82\xf5\xfe\x1a\x46\x4a\xe4\x61\x5c\x30\xf8\x03\x18\xcd\xfb\x38\x87\xc5\xf4\xe9\x8e\x96\xcf\x33\x28\x41\x14\x12\x4a\x1d\x4b\x50\x28\x0d\x55\xf4\x76\xa6\x41\x7a\x71\xbe\x9d\xac\xd8\x58\x3e\xa4\x38\x1b\x05\xeb\xb3\xa1\x40\xc7\x63\x92\xda\xf1\x31\xec\x19\xdd\x88\x78\xc6\x77\x98\xc6\x8b\x51\x61\xe3\x80\x79\x56\x10\x77\x81\x5c\x06\x98\x28\x40\xb0\x30\x73\x57\xb4\xf1\xde\x9a\xf8\x7c\xf9\x86\x62\x72\xbb\xed\x40\xe7\x26\x8a\x0c\x48\x22\x80\x0e\xfb\x50\xc1\xc6\x3e\xac\x79\x7c\x47\x5e\x6c\x47\xab\xe3\x61\x32\xb2\x7d\xf2\x71\x84\xbc\x0d\x6f\x2b\x52\x85\xf4\xb6\x4c\xb3\xd2\x30\x41\xed\xac\x08\x02\x6b\x9d\x92\x07\xe2\x64\xc6\xa8\xf1\x8d\x4b\xd1\xa5\x36\xcb\xd3\x22\xc8\x8b\xd4\x2a\xb6\x8d\x93\x84\x0e\x85\xa1\x41\xa7\xb2\xb0\x5c\xfb\xc3\xaa\x6f\xa8\x4f\x7d\x00\x5b\x29\x8d\xc1\x0a\x6d\x74\x51\xab\x01\x16\xe5\x2f\xec\x57\xe4\xd9\xeb\x8a\xed\xeb\x2c\x4a\xbf\x40\x5c\xed\xa2\x90\x49\x7a\x20\x4a\xdf\x84\xfb\xc9\x14\x47\xc5\x35\x95\x60\x39\x36\xd1\x8d\x3f\x58\x86\xd2\xf4\xf5\x84\xca\x20\xf4\x59\x49\xa6\xfc\x59\x11\xc2\xa6\xe5\x20\xf0\x9e\xf2\xeb\x51\x38\xb9\x5d\x69\x97\xeb\x1b\xc0\x88\x11\x61\xdc\x53\x80\xee\x93\xb4\x2e\x50\xe8\x9c\xea\xee\x5c\xe7\xf3\x2f\x1e\x6e\xf7\x93\x95\x78\x80\x68\x4b\x2b\x7f\xfe\x86\xa2\x22\xfa\x8d\xda\x14\xbe\x30\xc7\x70\x43\x61\x03\x67\xf8\x8e\xe2\xb7\x3d\xef\xc9\x52\xc2\xac\x67\xa3\xd0\x2e\xb6\x54\xe3\x19\xac\x99\x38\xe4\xbe\x38\x5a\x1e\x6e\x5c\x59\x81\x51\xb9\xaa\xc5\x22\xae\x36\x61\x18\x6c\xbc\x6c\xa3\x84\xf5\xe1\x5c\xf0\x7f\x70\xd6\x45\x33\x3e\xec\x79\x71\xe1\x8b\x2d\xf2\x51\x51\x2b\x3d\x0d\x5b\xcd\x37\xca\x23\x18\x15\x99\x6d\x29\x0a\xc8\x0b\x3b\xa1\x39\x9e\xc8\x2a\x58\x12\xbd\x6b\x64\x34\x4f\xd1\x88\xf3\x75\xed\x68\x3b\x7a\xe0\x65\xbf\x99\x55\x27\xc3\xdb\x1d\x2f\x1e\xfb\xb6\x12\xd8\x1a\xda\x28\x9a\xf2\xbe\x05\x8e\x6c\x07\x41\x5c\x90\xfe\xa0\x5b\x4d\xbd\x0f\xe3\x62\x34\xde\x91\x3e\x3e\xa3\xd8\x6c\xce\x34\x42\x51\x52\x9b\x85\x7d\x89\xe6\x84\xd7\x5d\xc9\x3c\xfe\xa4\x01\xc1\x31\xdf\x8e\xac\x19\x14\xb6\xa5\x5c\x8d\xf3\xec\x6a\x48\x1a\x76\xe7\x40\x94\x91\x63\xdf\x46\xe1\x60\x98\x73\x95\x15\x1b\xed\x47\xf8\x31\xbe\xe9\x78\x54\xe4\xd8\xa4\x44\xb2\x67\x52\x39\x51\x58\xb3\x99\x76\x29\xb2\x88\x48\x11\xb0\x6e\x1b\xa5\xf5\x84\x94\xf3\x61\x95\x5c\x5a\x79\xae\xe5\xc9\x2a\x6e\x4f\x7c\x42\xf6\xb6\x8e\x80\x72\xb3\x24\x98\x55\x58\xd2\x75\x85\x8d\x58\x57\x56\x26\x28\xa2\xbc\x48\x4d\x44\x14\xdb\x92\xfc\x56\x5e\x9c\xa2\xe0\xff\x40\x4b\xce\x5d\x24\x4c\x3b\x7f\x80\xe6\x12\x65\x92\x8f\x3a\xbe\xc4\x60\xc6\x63\x4b\x34\xc7\x33\x2a\x55\xfc\x1d\x55\xd4\xba\x3c\xf1\x2a\xbc\x6f\x4d\x3c\x82\xe6\x2d\xfa\x55\x99\x8a\xc7\x74\xdb\x41\x91\x95\x1e\xcf\xec\x11\x2e\x4e\xdd\x52\xd5\xff\x77\xb0\xcc\x71\xb6\x6d\x37\xb6\x93\x26\x71\x60\xc7\x8c\x5b\x14\xea\xb8\x96\x13\x93\xbc\xa0\x8e\xb6\x5e\x64\x82\xa5\x87\xcb\x10\x12\xcb\xfa\xac\xfa\xa1\x53\x40\xd1\xa3\xc2\xcd\x79\x62\xbe\x99\x78\xca\x93\xb3\x1d\x25\x4a\xca\x6c\x40\x12\x82\x12\xe0\x4c\xca\xd9\x3e\xf3\x75\x8a\x1a\x03\xdd\x49\xed\x25\x77\x8f\x4d\x14\x56\x73\x1d\xa7\xac\x30\x4a\x2b\x5e\xba\x62\x90\x60\xe9\x0b\x65\x94\x92\x0a\xaf\x33\x26\xcd\xcd\xb5\xcb\x55\xc9\xb2\x89\xdc\x9e\xa7\x14\x11\xce\x2a\x08\x63\x56\xf4\x44\xc7\xd0\x87\x24\x60\xbd\x11\xf8\x7a\xf9\xe8\x38\x3d\x3e\x6d\x8a\x3b\x07\x49\x1a\x26\x39\x36\x99\x08\xde\x63\x93\x89\x82\xbd\x2f\x90\xa6\x66\x1c\xf6\x91\xe1\x91\x36\x47\x55\xcd\xf9\x94\x9e\x51\xe0\xc3\xe5\x23\x48\xc7\x91\x3f\x0f\x83\x28\x11\xd7\x44\xf8\xc2\x7d\x72\xfa\xa2\xaa\x18\x06\x36\xcd\x4d\x18\x3f\x5c\x3e\xbd\x1c\x4e\xaa\x42\xf7\xc8\x5a\x45\xf2\xa4\xb4\x94\xdb\xb7\x69\x6f\x62\x75\xfe\x40\x31\x8f\x8f\x09\x64\x89\xdc\x47\x8b\xca\x30\xee\x00\x2d\x23\x4c\x25\xd8\x26\x39\xd9\x47\xba\x4a\xa7\xe7\x22\x99\x02\x54\x8b\x51\xf9\xc5\x4f\x1c\xf7\x04\x80\x26\xed\x53\xfe\xc4\x65\x3d\xce\x68\xcf\xec\x8c\x46\x50\x98\xa8\xb0\x0f\x94\xcf\x06\x67\x6c\x0f\x92\x55\x2c\xed\x4c\xa7\xbe\xb4\x39\x96\xdf\xe6\xfa\x80\x3c\x3f\xfa\x9d\x8a\xb6\x0a\x3d\x27\xfc\x84\x7b\xf8\x4d\xf8\xf8\xbc\xc4\x04\x08\x44\x27\x89\xa4\x40\x1a\x02\xa3\x71\x98\xc4\x96\xc0\xe1\x70\xf2\xb1\x8e\xae\x2b\x22\x99\xdd\xaa\x25\x77\x53\x21\x5a\x7b\x61\x14\x65\x0f\x95\xff\x27\xfc\x1c\xaa\xe3\xea\x0c\x6a\x77\x5c\x54\xc5\xc3\x22\x2f\x37\xd5\x55\xb5\xb1\xdf\xa2\x89\x43\xf0\xfa\xfb\x78\x70\x60\x8b\xce\x53\x75\x11\x11\x28\x27\xaf\xb1\xaa\xf3\x89\x4f\x3d\x41\x6c\x49\xae\x55\xee\x6f\x53\x11\x25\x65\xd6\x4a\xcc\x27\xdc\x66\xf4\x34\xc2\x7a\xe6\x77\x94\x29\x06\x45\x96\x87\xb1\x15\x5f\x1b\xe7\xf8\x75\x7d\xa8\x5f\xaf\xa1\xd5\x0f\x1d\x6a\x9b\xc5\xc5\x30\x1d\x19\x38\x2f\x2e\x4a\x84\x7e\x94\x88\x97\x7a\x9f\x21\x4d\x93\x96\x32\xa6\x93\xca\x21\xe7\xd0\xb6\x91\x29\x03\x8e\x51\x4b\x05\x07\x30\x8c\x52\x37\x7a\xaa\x62\x09\x82\x34\xec\x49\x2e\x99\x85\x1a\x31\x1d\xc8\x19\xf2\x0e\xc2\x76\xda\x52\x5c\x97\x99\x59\xb4\x2b\x46\x84\x2f\x61\x32\x8f\x69\xa1\xc2\x63\x35\x7e\xce\xf2\x7c\x1e\x16\xf1\xc0\xa6\x8b\x49\xda\xaf\xc6\x25\x27\xf4\xea\x3f\xe1\x5c\xee\xbf\xf2\x9f\x7b\x5e\xdd\x70\x0c\x31\x08\xdf\xcd\x06\x71\x0a\xb7\x2f\xca\x71\xe1\x15\xff\xf9\x1d\x04\x61\x24\x83\x52\xe1\x38\xc4\x82\x85\xb8\x04\x23\xab\x5c\x72\x61\x64\x16\x43\x93\xc1\xd4\x89\x18\x84\x1a\xc9\x5f\xc5\x2f\xe3\x74\x00\xba\x0d\x03\xf5\x99\xaa\x74\xe6\xa9\xe9\x5b\x90\x3e\x21\x1d\x02\x0e\x68\x26\x99\xa0\x55\xcb\xeb\x9f\x90\x9a\xb2\x17\x68\x30\x84\x95\xec\x49\xf1\x76\x4d\x6e\xc6\x69\xd2\x2f\x82\x3c\x9b\xa9\x24\x92\xe8\x11\xe5\xcc\xc4\xb0\xe2\x68\x7b\x14\x46\x0c\xc9\x80\xfd\x40\x17\x4a\x58\xdc\xc4\xe7\x59\xa4\xa9\x8d\x83\x55\xa5\xab\xc0\x62\x47\xc2\x96\xdb\x20\xd7\x99\xd9\x38\x03\x61\xad\xfb\xd0\xee\xae\x07\x91\xef\x5e\xd3\xe5\xb7\x95\x08\xe5\x37\x3c\xf9\x09\x55\xd3\xd1\x1b\x23\x0b\xad\xae\x3f\xed\xec\xd6\xaa\x6d\xbb\x41\x42\x33\x0b\x9f\x9f\x79\xb0\xe0\x27\xff\xbf\x38\xdb\xe1\x90\x9c\x9e\x7c\x41\x89\x6d\xc4\x44\x62\x98\xe6\xf4\xec\x4a\x41\x0d\xa1\x86\x28\x5d\xd7\x61\x31\xed\x57\xed\x8a\x8d\x58\x00\x11\xce\xf3\x71\xd5\x17\x7d\x5c\xd5\xa6\x56\xc2\x28\x7a\xb4\xe5\x1a\xe7\xf6\x12\x7b\xcc\xf6\xa5\x89\x2a\x4f\xff\x1b\xcd\x6b\xf1\x91\xa2\xa0\xd9\x4f\xa1\xa0\x34\xe5\x90\x1f\x83\x19\x3e\x33\x69\x7d\x59\x6a\x85\x20\xea\x46\x85\xf9\x32\x19\x4a\x51\x84\x29\x57\x93\x20\xfa\x55\x66\xeb\x63\xf2\xe4\x80\xa6\x63\xce\x1a\xf8\xf9\xfb\xbb\x64\xa6\x25\x6d\xe4\x9d\xd0\x41\x11\xf6\x0d\x85\x14\x0e\xea\xb6\xd5\xf1\x92\x8a\x5b\x8a\xa8\xff\xd5\x70\xb4\xaf\xe5\x54\x71\xfe\x50\xfb\xdb\xef\xe3\x9d\x61\x94\xef\xe1\x9d\x5d\xef\xb9\x6f\x38\xc0\xa3\xca\xc8\x94\xbf\x02\xcf\xf5\x56\x47\x77\xe4\xea\x94\xe2\x62\x6a\xfb\x36\x0d\x83\x25\x9a\x0e\x9c\x59\x27\x75\x71\xee\x64\x53\x60\x97\xad\x8e\x7a\x49\xc4\x28\x51\xec\xb3\x63\x8a\xce\xe3\x58\x53\x73\x41\x9e\x8c\x92\x34\x4d\x56\x5a\x5e\x4f\xed\x83\x89\xca\x63\x7e\x50\x4b\xb6\x3f\xdb\x36\x71\x38\x32\x08\xb3\x60\xfe\x6f\x2b\xfe\x2f\x20\xf9\xa5\x29\xb7\x8e\xfa\x3c\xdc\x4e\x0b\x49\xb1\xe3\x54\x60\x5a\x73\xbe\x69\xec\x9a\x19\x99\xb8\x1c\x12\xf8\x72\x80\x2b\x1f\x87\xc9\xe7\x9b\x26\xc5\x5d\x92\x92\xa8\xe3\x81\x5c\x40\xf7\x63\x85\xef\x33\xf1\x6a\x3e\x0c\xe3\xc1\x7e\x65\xfd\xb6\x94\xf0\xcf\xad\x1f\xf2\x5c\x81\x31\xfc\x6b\x13\x05\xe8\x03\x57\x0b\x37\xb4\xe8\xac\x63\xae\xf5\x7d\x6f\x2a\xd9\xc2\x13\x0a\x4e\x7d\x5e\xb9\x86\x3d\x13\x2f\x71\xf0\x22\x6a\xf1\xd7\xa8\xaa\x2c\x3c\x1a\xbe\xf9\x62\x77\xd7\xa3\xcd\xbf\x41\x91\x91\x28\xca\xef\x74\x82\x5e\x79\xa5\x3d\x5c\x1d\x27\x41\x1a\xe6\x52\xef\x11\xe5\x24\x05\xd0\xad\x77\x3b\x1c\x3c\xd8\xce\x92\xd5\x9e\xf5\xdc\xe1\x38\x21\x98\xdc\x0c\x8b\x96\xc1\xe0\x38\xa8\x6e\xb9\x3c\x64\xd2\x8b\xc2\x01\x89\x4b\xd1\x01\x87\x34\x17\x22\x4c\xe4\x04\xce\x28\x4c\xd4\x7f\xe7\x32\xab\x69\x12\x45\xd3\x3e\xe9\xf1\x7e\xc7\xef\x4e\xce\x09\xc1\x9d\x64\xf8\x2c\x8e\xaf\x9b\xb5\x16\xd0\xa3\x07\xe6\xdb\x59\x32\xe5\xe3\xd9\x7d\x64\xb9\x99\x7f\x44\x65\xfe\xae\x35\x26\xa9\xc7\x45\x1a\x0c\x0d\xf3\xb2\x4a\x0b\x04\xcd\xb7\x34\x47\xa8\x36\xbb\x61\x92\x20\x69\xa0\xd7\x8d\x42\x16\xd4\x86\xf5\xc8\x8b\x24\x89\xd4\x0f\x97\x41\x0a\x81\xc4\xe1\x3d\x32\x6d\x00\xec\xfd\x19\x59\x33\x81\xa8\xf8\x71\x5a\x77\xf4\x56\xcb\x61\x56\x98\x88\x0b\xac\x5a\x8c\x40\x12\xb4\x3b\x81\xae\x87\x0e\xb5\xb3\x61\x11\x63\xd7\x61\x61\x9d\xe8\xa8\x55\x76\x42\x85\x42\x99\x59\x4e\x56\x2b\x54\x95\x4a\x1a\xe2\x8d\xce\x5f\x53\x14\x9d\xb9\x4d\x93\x81\x25\x71\xf1\x96\xe2\x81\xd1\x79\xd3\x8d\x46\xfa\xfa\xd4\x52\xbf\x58\x4b\xb5\xa1\x72\xa7\x20\xdf\x68\x5d\xda\x64\x34\xb2\x69\x10\x9a\xe8\xc1\x72\x5c\x98\xc5\x81\x1d\x02\x44\xf8\xbb\xd6\xbc\xd4\xe2\x45\x95\xd3\xe0\x58\xca\xa9\x79\x3a\x32\xae\x99\xae\xe2\xbf\xbf\x88\xe8\x16\x7f\x45\x2d\x4a\x82\x87\xb8\x05\xfb\x8e\x31\xda\xdb\x55\xf0\x9b\x4b\x9d\x07\x04\xa9\x96\xac\x4e\x29\x56\x96\x93\x38\xd4\x38\x35\xa1\x40\x08\x97\x3a\x4f\x86\x5e\xb6\x42\x5e\x69\xaf\xaa\xbf\xee\xc6\x43\x01\xa8\xf6\xdd\x49\x95\x6b\xcb\x95\x89\x76\xa3\x65\xc0\x09\x45\x96\xe7\x9b\xe6\x70\xc4\xaf\xdd\x55\x7e\x47\xbf\xbf\xba\xd7\xb7\xb3\x6f\x2b\xb7\x7d\x9b\x42\x68\x5d\x3b\xe1\x74\x03\xb9\x6d\x42\xb4\xad\x5a\xc1\x36\x34\xd7\xe8\x54\xb7\xa9\xc9\xa5\x88\x17\x43\xc4\xf7\x78\xaa\xef\x28\x66\xc9\xef\xb8\x24\x7a\x16\xbe\x2e\x9d\x69\xc2\xc7\xef\xeb\xf2\x5b\x2e\x15\x6a\xc6\x63\x43\xf0\xcf\x69\x97\x24\xf8\xaf\x1f\x43\xd3\x3d\x06\x60\xf7\x9a\x27\xda\xc0\xcc\x4b\x57\x97\x82\x1a\x8b\x62\x9a\x68\x4b\xb4\x94\xe6\x84\x7b\xa0\xdc\x84\x5c\x09\x15\x32\xe4\x96\xa7\x3d\x51\x7a\x50\x17\x6b\x3c\x2b\x0b\x07\xda\x51\xc8\x49\x39\x01\x0e\xd3\x22\x12\x91\xff\x8a\xc6\x72\x14\xd9\x78\x60\x33\xc5\xe8\x7d\x5b\xd3\x33\xdf\xae\x65\x32\xa8\x7e\xba\x98\x24\x9f\xdf\x6a\xa0\x5c\xcc\xa5\x55\xe2\x42\x16\xac\x86\xd2\x5d\xe4\x94\x2c\x72\x38\x97\xc8\x5a\x60\x41\xc1\x5c\x21\xa1\xf0\x0a\x98\x40\x24\xcd\xec\xb3\xd3\x8f\x77\x95\xd6\x1b\x07\xe7\x58\xa8\xe7\x9d\xf5\x8e\xc2\xb4\xa2\xfc\xca\x7f\x06\x03\xf7\x14\x85\x12\xb8\x06\x2b\x1c\x17\x0d\x74\x79\x31\x49\x72\x33\xb0\x2a\x35\xff\x36\x3d\x9b\x93\x1b\x2d\x07\x55\x9a\x38\x15\x75\x2d\xc4\xbb\x73\x3b\x0d\x47\x94\xc6\x86\xf1\x1a\x1d\x5f\x61\xa0\xf4\xd6\xfc\xf6\xa5\x26\xd1\x69\x68\x8b\xa8\x46\xc9\x56\x57\x37\x5c\x7b\x27\xec\xba\x3a\xad\xcd\x20\xb6\x51\x14\x52\xcb\xb0\x74\x4e\x28\x85\xb7\x8b\x2e\xd8\x1d\x14\x61\x1c\xdb\x4c\x62\x43\xa7\xa7\x5e\xfe\xad\xe8\xa9\xeb\xf6\x81\xd2\x30\x20\xab\x26\x75\x28\x95\x3e\xdc\x50\x39\xa7\xc8\x9a\xb4\xf4\xa5\xe6\x1d\xad\xe3\x34\xe1\x8b\xa5\x1d\xfc\x31\xdd\x9e\x5b\x1a\xea\x29\xdf\xee\x75\xab\xa3\x90\x28\xa7\x27\x8a\x45\x79\x4b\x19\xdf\x9c\x12\xce\xb1\x3b\xe1\xb0\x4c\xd6\xd5\x92\x21\xed\x21\x45\x60\x90\x8d\x13\x44\x4e\x53\x7e\xcb\x5d\xd5\x80\xc9\xd3\xaa\xea\x73\xa2\x21\x45\x78\xb8\x4d\x92\x73\x2d\xc5\xa0\xf1\x99\x42\x0f\x7d\x56\x73\x70\xa8\xef\x63\x3c\x8e\x58\x3c\x4f\x31\x4a\x7a\xd0\xc7\x19\x2d\x7c\x9b\x9a\xc1\x94\x67\x52\xbc\x46\x49\x34\xec\x85\x63\x4a\xce\xec\xac\xca\x59\xaf\x98\x34\x26\xf1\xbc\x0a\xe1\x1b\x0d\x20\xdf\x38\x18\xba\x19\xa4\x96\x9e\x04\xc6\x04\xe9\x65\xd0\x83\xc1\x0d\xfa\x48\x73\xbc\xff\x33\xc5\xf8\x98\x5a\x13\x80\xec\xdf\x35\x36\x20\x43\x27\x88\x67\xd9\x68\x7d\x6b\xc7\xfb\xcb\x3f\xc2\x42\x7b\x88\xb4\xe7\x04\x6f\xef\xc1\x05\x4f\x63\xcf\xe2\x09\xbe\x39\x51\x64\xda\x53\x6b\x1e\x93\x77\x9d\x9c\x47\xe9\x24\xa6\x34\x31\x96\x0f\xa0\xc2\xd8\xb1\x7b\xd6\x7c\x85\x79\x25\x8b\x6c\x9e\xdb\x74\x0f\x1d\x74\x42\x9d\xe3\xd1\x3d\xa2\xa1\x2d\xd1\xa9\xcf\x6a\x20\x45\x89\x03\xf4\x69\x84\x69\x22\x14\xe0\xd3\x6e\xa3\x30\xb2\xd9\x1e\x5f\xa3\x38\xcb\x5f\xe7\x28\x90\x5c\x82\x75\xa6\xab\x22\xce\x8b\x0a\x83\xc7\xa6\x8e\x3f\xe1\xcf\x9c\x82\x31\x82\x2f\x7b\xd5\x09\x05\x6b\x9e\xf8\xda\x49\x12\x04\x26\x23\x41\x0f\x16\xbb\xd3\xa0\x7e\xbe\x56\xab\x83\x90\x8e\xa5\xaf\xab\x3b\x09\xaf\x6b\xd5\x13\x6e\xcc\x91\x45\xd6\xd0\x0b\x17\x27\x0e\x8a\x28\xf2\xdc\x8a\x3b\x79\x43\x39\x0f\x23\x13\x0c\xc3\xd8\xf1\xae\x20\x2c\xbd\x8e\xdd\x8c\x15\xcd\x9c\x3b\x58\xf9\x2c\x41\x29\x79\x14\xda\x55\xaa\x7f\x5e\x06\xf6\xff\x69\x40\xac\xbe\x5c\x9e\x57\xa9\xc3\x2a\xba\x0e\x29\x45\xf9\xe5\x1f\x2b\x8c\x73\xca\xe2\xd8\xfe\x8c\x67\x77\x79\x17\xf9\x59\xc4\x9f\x6f\xe0\xb1\x44\xed\xb4\x5c\x17\x7c\x4d\xc5\x3c\x04\x06\x27\x9a\x2a\xe8\x44\x17\x5d\xa4\x68\x18\x92\x52\xb4\x77\x31\x2e\x3a\x68\xd4\xc8\x8e\x7a\x68\x00\x66\xe7\x02\xc8\x69\xf6\x75\xf9\x46\xa1\xbe\x4d\x24\x61\xa5\xa4\x93\x6e\x63\xa6\x24\x63\x50\x6b\x24\x6f\xcf\xcd\x3d\xa1\x2a\xa2\xe7\xc9\x53\x02\x55\xd2\x67\x08\x51\x70\xdc\xde\x55\x8d\x64\xdc\x28\x8f\x51\xf8\xef\x27\x0a\xa3\x7b\x5c\x45\x74\x7f\x8a\x05\x03\xeb\x0c\x36\x62\xc7\xda\x56\x0e\x3f\x53\xaa\xd3\x58\x21\xf2\xb9\x34\xd9\xfd\xb7\x1c\xd0\xa7\x1c\x1a\xae\x4a\x71\xa8\x8a\x4d\xf7\x61\x47\x97\x94\x14\xce\x14\xed\x45\xac\xdf\xa4\x05\x7d\xcf\x3a\x44\x14\xd4\xa3\xa6\x54\x5a\x76\xa2\x72\x78\xdb\xa8\x43\x49\x63\x65\x43\x9b\x72\x90\x8c\xc6\x26\x75\x5a\x6e\x92\xba\xf0\x36\xb6\xce\x42\xf2\xcc\x33\xa4\xe2\x4b\x33\xed\xb2\xe0\x0e\x52\xbe\x55\x93\x24\x7c\xe5\x15\x11\x07\xf2\xed\x88\x95\x0e\x5c\xbe\x51\x95\x0a\x12\x96\x27\x49\x33\xd6\xdf\xa1\x21\x15\x2d\x1e\xbf\xa2\xfb\x24\x86\x6d\x24\x09\x88\x46\x80\x0f\xa8\x52\xce\xd7\x0a\xb9\x96\x27\x59\x26\x4a\x69\x98\xdb\x0f\x29\xd0\xe4\x6b\x05\x25\x5e\x48\x80\xb5\xaa\xa8\x60\xf0\x4d\xe7\x29\x75\x1a\x38\x18\x07\x12\x18\x68\xf6\xd8\x54\x54\x01\x9b\xb5\xc4\xf0\x2b\xaf\x94\x7b\x65\x64\xfb\x21\x80\x11\xbf\xf4\x25\xb6\x02\x68\xe0\x16\x42\x3a\x5a\x05\xac\x66\x50\x9b\xb7\x43\x87\xa8\x99\xa8\x6f\x23\x21\x0f\x44\x26\xe8\x33\x2c\x5c\xbe\x51\x9c\x00\x59\x30\x34\x76\x71\x91\x51\x5d\xd8\x0b\x10\x1b\xe6\x6b\xe5\xe2\x71\xbb\x1c\x95\x55\xb0\x1d\xd9\x3e\xa1\x46\xf2\xa9\xde\x29\xa0\x21\x13\xfe\x56\x1a\x26\x24\xf8\xbf\x4f\x8b\x1d\x07\xef\x69\x2d\x58\xc9\x0c\x75\x2e\x11\xf5\x82\xb4\xa1\x6d\x63\x6f\x49\xfa\xb3\x9c\x24\xc4\x91\xff\x1c\x58\x4c\x86\x78\x75\x1e\xf0\xfd\x20\x53\x8a\xb8\x01\xb1\x00\x8c\xcd\x0d\x5d\xac\xdb\xd2\x48\x8c\x3c\x89\x2c\x78\x70\xb8\x4f\x5c\x89\xa2\xdc\xc6\xce\x13\xb3\x42\xc7\xac\x64\xe5\xbc\x46\x3b\x28\x8b\x24\x73\x27\xd1\x7e\x3e\xb4\x26\x67\x4d\x51\x2e\xa7\x91\x75\x90\xd2\x9a\xc3\x2f\xda\x34\xb6\x29\x90\xa6\x80\x7e\xfe\x1f\x58\x5c\x7c\xa3\x04\x29\xf8\x2b\xa7\x7d\xf8\x77\xa3\xe3\xb9\x05\x37\x99\x74\x56\x01\xf4\x6f\x37\x4a\xc7\xf6\xc2\xd2\x11\x98\xf2\x01\x1e\x1a\x25\x18\x02\x84\xb9\xc4\x01\x76\x73\xe2\x0b\xdd\x36\xb6\xa3\x55\x0a\xe8\x9c\x30\xb5\x23\xd6\xdb\x02\x8d\x9b\x1c\xdd\x34\x39\x72\xf2\xcb\x78\xf4\x53\x12\x96\xa5\xf1\xc0\x2c\xb2\xbe\x07\xdf\x28\xbe\xfd\x9e\x59\x9d\xf2\xac\x6c\x60\x9b\x71\xa6\xb0\xfc\x08\xcc\x5f\x53\x47\x4e\xdb\x8e\xc6\x43\x53\xc6\xa9\x3a\xb2\x7b\x5f\x47\x76\xef\x77\x9e\x56\x4d\x75\x5f\x29\xc2\x94\x1c\xbf\x8c\x18\x4f\x64\x76\xd5\x82\x3e\x86\xd3\xd0\x75\x86\x3a\x21\xc5\xcb\xaa\xa7\xf0\x9a\x9b\xf7\x7e\x38\x28\xed\xda\x54\x55\xbe\xd8\x75\xdd\xde\x53\x8a\x31\xe7\xd5\x16\x0b\x86\xc6\xcd\x4a\x85\xc1\x0e\x01\xe6\x4d\xe5\xd6\xdd\xea\xf8\x3a\x62\x2f\x89\x13\xca\xbd\x55\x5a\x89\x91\x27\xbb\x4d\xeb\x8d\xf2\x95\x3f\xff\x74\xd7\x17\x12\x4a\xb7\xd0\x95\x1e\x4c\x9a\x26\x2b\xd1\x6a\x8b\x0e\x79\xec\x9b\x9f\xe0\x84\xe0\x9b\xa6\xb6\x1c\xe6\x76\x68\x39\x61\xac\xf7\xf0\x11\xbe\xf9\xdc\xca\x57\x96\x2c\x87\x16\xce\x3e\x9c\xaa\x9b\xda\xc3\xba\xa9\xcc\xed\x28\x89\xa9\x93\x07\x89\x25\xb4\x67\x30\x42\x9c\xcf\x49\x86\x04\x55\xe2\x31\x4c\x9b\xf4\xde\x3e\xea\x92\x04\xd4\xc1\x8a\xec\x18\x03\xc8\xab\x68\x72\xcd\x5a\x91\x2c\x49\xc6\x1a\x46\x88\x91\x90\x7c\x53\x4b\x23\xcc\xbf\x58\x6e\xa8\x81\xa2\x78\x78\x00\x19\x27\xbe\x69\x68\x8a\x9e\x6d\x67\x36\x8a\xa6\x69\xc4\x9c\x40\xc5\xd1\x03\x0e\xe6\xdc\x72\xa2\xa9\xc8\x80\x62\xd6\xef\xd7\xf6\xf2\xb3\xed\x41\x18\x91\x57\x8f\xe7\x65\x02\x35\x85\xe7\x3b\xa9\x5b\xbc\x4d\x3f\x5a\x9d\x51\xc9\x30\x44\xd6\xdc\xc7\xf0\x31\xfb\xeb\xfc\x5f\x88\xfc\x60\xc4\xd9\x49\x15\x6e\x50\x85\xbc\x2f\x7a\xc4\xd9\x94\x4e\xfb\x27\xe6\x72\x87\x13\x65\x77\x1c\x7e\x3f\x52\x34\x27\xc7\x6a\x6b\xea\xd0\xa1\x76\x96\x04\x41\x69\x07\xbd\x73\xfb\xfb\x2a\xe4\xfc\xfd\x8e\x96\xbe\x0f\x47\x26\x0d\xa3\x55\xea\x90\xc4\x0a\x01\xd6\x03\x48\x19\x58\x40\xfc\xd4\x4d\x9c\x53\x92\x27\x71\x9d\x00\xc9\xc8\x32\x87\x05\xf6\x0a\xb3\x39\xc8\x09\xad\xda\x2a\x6f\xee\x90\xd2\x4d\x4d\x90\x27\x29\x79\xcb\xd2\x70\xa8\xbc\xb0\x8b\x0a\x91\x74\x4f\xe5\xd0\x36\x3b\x1e\x63\x71\x4d\xc5\x4d\xc3\x64\x6c\xb3\x7d\x64\x60\x1c\x5e\x4a\x21\xb5\x5a\xfe\xdf\x71\x16\xa2\x2e\xfc\xbb\x13\x5f\x51\xff\x5d\xe4\x41\x71\xb2\xa1\x0f\x1e\xa3\x3f\xbd\xe6\xfd\x9f\x9b\x8a\xf6\xc3\xa7\x31\xf7\xd1\x27\x9d\xf8\x49\x39\xcb\x30\xb3\x97\x31\x6a\x08\x38\x70\xa0\xe3\x7b\x50\xbf\xe0\x6b\x40\x45\x94\xc4\xb9\xb4\x60\xde\xc5\xf8\x49\x7f\xac\x5f\x31\xfd\x70\x39\xec\x5b\xe2\x88\x2f\xff\x9a\x53\x5c\x34\x75\x92\xee\xda\xb9\xbf\xc0\x21\xd0\xaf\x10\xe6\xa8\x6f\x3f\xa5\x22\xf1\xbe\x0d\x42\x90\xda\x1d\x15\x6c\x15\x57\x00\x84\x4f\x7b\x4a\xcb\xfa\x7b\x59\xe1\x2b\x8a\x5f\x69\x37\x91\x98\x22\x22\x9b\xea\xca\x21\x3d\x4e\xc3\xd7\x2d\xf7\x52\xc2\x35\x3d\xc9\x1b\x46\x9a\xfe\xe9\x85\x60\xab\x81\xf8\x86\x17\xb5\x8d\xa1\xe0\xbf\x72\xb9\x00\x13\x99\xe7\x14\xe8\xe8\xac\x46\x7f\x9e\xad\x55\x46\x0e\x1e\x6c\xf7\x43\x3b\xa5\xd5\x69\x68\x6b\x88\xaa\x2a\xed\x63\xd1\x7b\x72\xbd\xd8\xa9\xe9\xdb\x91\x49\x51\x8c\x74\xe5\x06\x4f\xf4\xd2\x44\x8f\x12\x0c\x4d\x19\x8a\xd1\x31\x5f\xa1\x37\x07\x18\xe0\x2f\x61\x0b\x11\x3b\x20\x51\xc3\x41\x54\x47\x80\x01\xbd\x22\x0b\x63\x9b\x65\x51\xb8\x84\x5c\x12\x90\x33\x0f\xd3\x98\x38\xb5\x36\x47\xc1\x79\xbf\xb9\x75\xc0\x9a\x3e\x6f\x4f\xb8\x9b\xdb\x15\xea\x20\xcd\xbf\x54\xfb\xfc\x33\xcf\xb4\xc7\xc6\xcb\x14\x89\x51\x54\xf5\xdf\x93\xca\xde\x07\x49\x31\x4e\xd0\xe5\x0e\xf8\xc5\x0d\xc5\xb6\xc8\x18\x2c\x64\x06\x3e\xa9\xd3\x93\x1d\x6e\x3f\xcb\x3c\x90\xb2\x7a\x5b\xae\x43\xfe\x6b\x15\xc2\x3c\x55\xbf\xac\x90\xa2\x7f\x0d\x6b\x59\x36\x42\xfd\xac\x98\xa3\x1e\x9c\x69\xff\x7c\x77\x34\x3f\x0f\xb8\x64\x04\xbf\xda\x52\x04\x51\xfe\x0d\x49\xd9\xb5\xbf\xd7\xe3\x0d\x91\x18\xc5\x84\xde\xd6\xb0\xac\x33\x9a\x42\xff\x56\x47\xe7\x86\x7c\xde\x8d\xc1\x31\xb8\xf9\x0f\x4d\x05\x5c\x6a\xf4\xdd\x51\xc0\xad\xea\x4b\x6a\x50\x77\xf1\x6a\x38\xe3\x7b\x2b\x38\xfa\x43\xb9\x16\xd1\x0f\x2a\x72\x97\x14\x23\xc4\x5f\xea\xdd\x72\x51\x35\x17\x99\x72\xf1\x2d\xdb\x1d\x05\x36\xd5\x01\xf1\xa4\xb2\x15\x51\xb8\x6c\xa5\x61\x47\x02\x8e\x0b\x18\x0e\xa9\xc9\x3e\xae\x82\x4a\x98\x96\x19\xb5\x26\x7f\x5b\x17\xa0\x2a\x4b\x05\xb9\x52\x09\x61\x15\xac\xf8\x64\x0d\x6c\xba\x70\xa0\x9d\xda\xc5\x32\x62\x6d\x79\x35\x44\x16\x98\xe2\x9b\xc9\x7f\xd2\x40\x3c\x93\x9a\x60\xc9\xe6\x0c\x91\xf3\xad\x2f\x68\xec\x91\x62\x2d\x3d\x9f\x24\x68\x76\xee\x93\x9f\x6f\x8f\xa3\x24\x77\xe9\x2b\xec\x63\x0e\x78\xf8\xa6\xe3\xe5\x1a\x83\x22\x7f\xb4\xe5\x68\xb0\x59\xd5\x19\x2e\xd8\x87\x14\x98\x21\xcf\x71\x9b\x70\x1f\x58\x41\x7f\x44\xa3\x80\x64\x27\xef\x3f\x57\x8e\xf2\x20\xd5\x35\x0a\x9e\x58\xff\xa1\x74\x5d\xb6\x2f\xd1\xa2\x46\xc5\xef\x1d\x54\xca\x34\xb5\x27\x0e\xb7\x3d\x68\x19\x60\x6a\xda\x89\x12\xa5\x65\x27\x90\x09\xc0\x9a\x06\xdc\xf4\x47\x5e\xfa\xcb\x61\x2a\x95\x9c\x4f\x03\x53\x6f\x94\xac\xf0\x07\xe0\x07\xfd\x2e\x16\x2a\xdf\x34\x02\xe0\x41\xf8\xe7\x36\x02\x8e\x00\xb8\x44\x7c\xdd\x48\x4f\x9a\xf4\x6d\x2a\x22\x5b\x18\xaf\x6d\x85\x41\xd8\xae\x59\x6d\x2a\x34\xfd\xcd\x5f\xfe\xe2\x2f\x2c\x68\x95\x6e\xa2\x37\x10\xc5\xee\x86\xc4\x25\x27\x48\x14\xc3\xaa\xaf\x2f\x6e\x28\x3f\xfc\xbf\xfc\x47\xff\x90\x60\xe4\xce\xb7\x74\x10\xf6\x93\xce\xbf\x4e\x2d\x5a\xc6\xf1\x9e\x4c\xaf\xde\x51\x2e\xf4\xa7\x0a\xea\xbf\x68\x82\x7c\x3f\x05\x88\x8e\x56\xd8\x4b\xa8\xff\xdf\x5a\xc7\xe1\x42\x15\x99\x53\xf5\x91\x5e\x98\xab\xfa\x45\x4a\xbc\x72\xd6\x9f\xfd\x65\x50\x2a\x4b\xa4\x61\x10\x82\xc4\x25\x9f\x04\x5b\x4e\x5f\x26\xe0\x72\x9f\x71\xcc\x56\xb3\xdc\x8e\x9e\xa0\x75\xeb\xc4\x55\x5e\x90\x36\x95\x8f\x69\x07\x60\xbb\x5e\xef\x28\x15\xba\x5b\x78\x05\x51\x3c\xa7\x57\x40\x31\xee\x07\xe4\xda\xe1\xe3\xef\x90\xfa\x37\xcc\xfb\x9f\xb3\x5b\x81\x1d\xf8\x86\xc2\x56\xde\xc4\xbb\x55\x24\xa1\x80\x3c\x38\x46\x1e\xbf\xdb\x23\xae\x0c\x77\x95\x36\xa3\x83\xaf\xbb\x5a\x3b\x23\x48\xb0\xfd\xb6\x35\xcc\xe9\xac\x2a\x4a\xfe\x83\xe7\x7e\xb6\xa5\x22\x9f\x0d\x5a\x51\x7c\xdd\x71\x4d\x75\x45\x4a\x8c\x83\x92\xc3\xfe\xac\xa3\x44\x22\xb8\x90\x49\x3e\xe1\x9f\x3c\xde\x55\x00\x69\x44\xd1\xcc\xd8\x83\xfc\x2b\xf2\x5a\x9f\xe0\xd1\x04\xa0\xeb\x91\x6c\xa7\x15\x3a\xef\xf1\x35\xdf\x43\xbf\xd1\x24\x66\x9e\x87\x59\x56\x60\x75\x0b\xe5\xad\xaf\x29\x9d\x50\x35\xa5\x65\xe2\xd7\xf2\x4d\x8d\x13\x5f\xfc\x3a\xd7\x51\xe8\x60\x66\x66\x92\x16\x7e\x0d\x22\x1c\x24\xfd\x29\xd5\x78\xc5\x71\x84\xd0\xcc\x10\x7f\x1f\x70\xf5\x77\x14\xa7\x92\x19\x0c\x52\xb3\x6c\x72\x3b\xe5\x21\x73\xd7\x95\xbe\xdf\x06\x0c\x1a\xea\xc1\xc7\x14\x84\x33\xa1\x53\x8b\xde\x0c\xb1\x0e\x67\x2a\xf8\x46\x61\xfc\xc7\xe1\x00\x5d\xb6\x62\xe0\x68\x9a\x3f\xcf\xc2\x3d\xdb\x5e\x09\x9d\x4a\x1f\x4b\x33\x62\x2a\x44\xa7\xf1\xf1\x2a\x83\x7c\xc0\xfc\x7c\xce\x51\xf2\x74\xf0\x17\x55\x26\xc7\x8c\xf3\x19\x45\x33\xb1\x39\xd1\x88\x5e\xd6\x01\x64\xe6\x61\xbc\x32\xfe\xee\x7b\x48\x27\xf0\x4d\x1d\x00\x37\xdb\xb6\xaf\x69\xd6\x28\xd8\x2d\xf4\xa3\xf0\xb5\xcb\x3b\x65\x41\xb2\xb8\x68\xfb\xd3\x5e\x71\x99\x9d\x0c\x5d\xab\x46\x62\x84\x6b\x83\x38\x3a\x76\xd5\x08\xdf\x4a\xcf\x74\x31\xb5\x58\x58\x52\x74\xf5\xfd\xad\x5b\x2e\xba\x5c\x35\xa9\xc8\x60\x39\x18\xb8\x5f\xd6\x5b\xb5\x33\x69\xf6\x08\xe5\x28\x62\x2e\xa2\xc3\x7c\x7d\xd4\xf1\x69\x9d\xcb\x1a\xf8\x7a\x5a\x99\xe7\x15\x93\x22\x2c\x60\x81\x36\x7a\x1c\x54\x05\xf7\x75\x7d\x7e\xae\x8a\x7b\x35\xe1\x68\xca\xcb\x45\x1e\x87\x59\x72\x15\x41\x27\x43\x72\xbd\x86\xb1\x3e\x78\xb0\x3d\xb4\xa6\xff\x95\xc2\xa4\xb9\x63\x13\x71\xd4\xc6\x9e\x80\xb9\x4e\x1b\x79\xe8\x50\x3b\x37\xf1\x12\x7f\x84\x05\xd2\xe8\x05\x45\x2c\xcd\xaf\xdc\x15\x33\xa0\x06\xd0\x97\x9d\xbf\x48\x1f\x72\x8e\xa4\x43\x60\xac\x4f\x54\x2d\xfc\x43\x6c\x51\x01\x88\xb4\x9c\x2a\xc5\xba\xa6\x0b\xb7\xe9\xd8\x82\x63\x53\x00\x3e\xbf\xa2\xd0\x6a\xbf\x52\xcb\xaa\xcf\xbf\x78\x18\x8c\x8e\x94\x50\x2c\x3f\xb6\x4d\x56\x69\x7b\xbd\x4e\x42\x71\xb0\x9d\xe5\x45\x1f\x95\x47\xf6\x10\x95\xe2\xe1\x6f\x77\x1e\x56\x32\x54\xc1\xd2\x94\x47\xd7\x5e\xef\xa8\x0c\xfc\x44\xed\xd3\x9f\xd4\x12\x69\x0b\x07\x16\x40\x81\x12\x12\x0c\x96\x21\xbc\xad\xb9\xb9\xed\x4b\x8d\x3e\x48\xdf\xa2\x69\x30\x9d\xf2\xa8\xef\x5b\x0a\xf5\x8d\x22\xd5\xf6\xba\x6e\x74\x49\x8a\x71\xc4\xcd\xfc\xb2\xe0\x3c\x2a\xd6\xab\x12\xa4\x2c\x10\xc5\x73\x8a\x74\xd7\x31\xcc\x02\xdf\xd4\x70\x7a\xa5\xe7\xca\x48\x67\x40\x69\x24\xe7\xaf\x36\xe4\x45\xb7\x8d\x86\x60\x87\xf9\xdc\xfe\xc4\x06\xea\xea\x6c\x1c\x85\xf9\x0c\x3d\x03\x4a\xb8\x97\x15\xab\xdf\xd7\x27\xde\x7b\x01\x0f\x8b\xf4\x32\x91\x0d\x95\x66\xa6\xc7\x5c\xcc\x6f\x47\xa1\x4d\xc5\x41\x16\xba\x20\x5a\x73\xc2\xcb\xfd\xb0\x83\xc3\x87\x4b\x2c\xf4\xcd\x2a\x1a\x13\x85\xd3\xdb\x68\x40\xc7\xb6\xcd\xb8\x74\x10\xa5\x37\x58\x48\x7e\xa6\xbc\xf2\xf9\xc7\x0e\x97\x99\x0d\x6d\x94\x5b\xcf\x2e\x80\x03\x03\x06\x82\xaf\x55\x75\x74\x85\xd2\xfb\x8c\x5a\x41\x77\x1e\xa7\x59\xf9\xa6\xf3\xb8\x9a\xec\x78\x31\x0a\x39\xf8\x90\x1e\x0e\x5d\x38\x6c\x90\xd2\x1a\x05\x81\x01\xf0\x58\xf1\x32\xcc\x3b\x5e\x86\x06\xe5\x65\xd1\xd3\x48\x52\xcd\x26\xf1\x89\x62\x93\xf8\x44\x57\x64\x2c\x31\x2a\xd2\x48\x38\x36\x0f\x4f\x27\xa7\xa9\xf4\xae\x68\x39\x9e\x3c\x09\x96\x9e\x52\x28\xf2\xf3\x9a\xe8\x9c\x33\x5a\xa8\xd9\x5e\xc2\x13\xe3\xcf\xde\x44\x98\x04\x98\xca\x7e\x92\x1f\x47\x91\x78\x77\x57\x95\x8c\x3e\xc0\x51\xee\x6a\xb0\xb3\x47\x38\x79\xcc\x84\x25\xd2\x6f\xaf\x74\xc5\x2f\xe3\xb0\xe3\x78\x86\x19\x58\x26\x5e\xe9\x62\x53\x79\x90\xb7\x95\x63\x7d\x1d\xf5\x06\x49\x23\x94\x03\x2d\x94\x7f\x2d\x47\xdc\xb3\x0d\x4f\x59\xe2\x26\xc5\x4a\x69\xd2\x20\x8c\x93\x81\x8d\xc3\x60\x4a\xf5\xf8\xfd\x49\x95\x92\xac\x7c\x33\xe6\xc7\x50\x7d\xbe\x69\x51\xee\xe8\x3d\x1e\x42\x87\x67\x57\xcc\xde\x2f\x73\x01\xef\x43\xbc\x36\xdf\x90\x03\x2a\x22\xfb\xde\x8d\xb9\xa4\x24\x8d\x97\xc3\x24\x72\xdd\xc0\x22\x2d\xde\x72\x52\x78\x75\x9e\xfe\x67\xdb\x83\xb4\x18\x8d\x4c\x8c\xe4\x36\xd7\x0d\x3b\x9a\xc1\xe9\xb4\x56\x27\x1e\x9b\x34\x1f\xda\x90\x61\x01\x2c\x2a\x8a\xc5\x22\x0a\xa3\xaa\x67\x3e\x59\x89\xf3\x22\x8d\xa7\x5b\xaa\xe9\x98\xd6\x8e\xc0\xbb\x69\x51\xc0\x8e\x41\x00\x4a\x98\xc8\xf5\x49\x7a\xe4\xef\xff\xcc\x7f\x5a\x4e\xa2\x13\xdc\x77\x4d\x60\x7f\x41\x4b\x84\x13\x65\x1d\x92\x81\x54\xfd\x64\xc2\x45\x7b\x0c\xc0\x3d\xd5\xfe\xb7\xc0\xf9\x8e\xbf\xc0\x12\xe5\xb6\x33\x3c\x0d\x72\x3b\x9f\x90\xce\x24\x82\x9f\xb7\x29\xf0\x70\xe4\x0b\x65\x54\x05\x4f\xf0\x1d\x9d\x7d\xba\x32\x69\xfd\x93\xc3\xb2\x5c\x29\xd6\xc0\xb2\xf9\x4d\xd2\x87\x44\xdc\xf1\x7b\xcc\xe3\x8d\xbb\x77\x3b\x0a\xb4\x77\x8e\xd6\x2c\x56\xce\x9f\x76\x76\xff\x2d\x4e\x1d\xfd\x0f\xd4\x83\xea\x9a\xd7\xe6\x5d\x38\xf3\xf1\xc4\x0b\x64\xfe\x3a\xd6\x0c\x6c\x31\x70\xb5\x78\xf3\x53\xf0\xfd\xe0\x31\x9e\xa5\xf5\xc3\x21\x4f\x47\x71\xee\xbc\x8b\x70\x42\x34\xc4\x31\xf7\x88\xa6\xae\x4f\x88\x5f\x13\xd5\x81\xf7\xb0\x65\x90\x6b\xf8\xa8\xd3\x3a\xf2\x22\x6f\x93\x6f\x97\x71\xfd\xf6\xba\x3f\x52\x4c\x11\xc3\xd8\x31\x0f\x49\x85\x93\x64\xa7\xc2\x8c\x23\xc8\xb0\x71\x96\x10\x3e\x85\x56\x2f\xcc\xc3\x55\xdd\x80\x77\x55\x15\x4a\xb3\xc8\x04\x4b\x1a\x9c\x72\x4a\x55\x94\x4f\x4d\x7e\x5a\x21\x5c\x23\x1b\x24\xa3\x51\x11\x87\x01\xab\x7e\xbc\xe4\x84\xa2\xd7\xc9\x3a\x34\xf4\x61\xdb\x91\xcd\x2d\x77\xfc\xc8\xa9\xe1\x53\x75\x1f\xab\x7c\x78\x90\xda\x6c\xc5\x46\x11\x30\x79\xf0\x10\x91\x94\xe1\xeb\x9a\x23\xfa\xca\x2b\xed\xbf\xf9\xa5\x5f\x9e\xff\xd2\x17\xe7\xf6\xb5\x34\x71\xa6\x97\x79\xc1\xb6\x17\x4a\xbb\x72\x04\xb6\xb7\x55\xf8\xf9\xa3\x89\xaf\x39\xac\x61\xa5\x3b\x71\x76\x4f\xd1\xf9\xed\x9a\x5f\x43\x49\x8c\x65\x13\x15\x2c\xe7\xe2\xea\x49\x88\x67\xf9\xba\xa9\x5d\x78\xe8\x08\x36\x3e\x07\xe1\xa7\xa5\x0f\xd3\x72\x06\x5f\x10\x64\xfe\x9f\x61\x06\xf9\x46\x9d\x40\xd4\x53\x92\x3d\xa2\x1c\xeb\xb7\x11\x90\x38\xa6\xed\xa3\x07\xf8\xc0\xb8\x84\x95\x8f\x12\xdd\x79\xca\x22\x61\x6b\x5e\xd6\x79\x8d\x8b\xb0\x00\x28\xb5\x6d\x69\x25\x57\xe4\xb4\xe0\x7c\xbf\x49\x36\x83\xbf\x0a\xe7\x95\xcb\x77\xb8\xec\xf7\x15\x0c\xa4\x88\x56\xd1\x1b\xf0\xf7\x56\xf2\xaa\x79\x6a\xf6\x62\xbf\xb0\x11\x9b\x68\xf1\x27\xfa\x72\x6c\xd1\x53\xf0\x7e\x5c\x1b\xbf\x03\x22\x32\x6d\x84\x80\x96\x3c\xa4\xf1\xa4\xaa\xc5\x95\x61\x4b\xb6\x48\xb2\x5a\x8e\x78\xfd\xae\xaa\xc5\xdd\x6d\xe0\x09\x1b\x27\x51\xc8\xce\x2b\x77\x7f\xfd\x6f\xb4\x43\xf8\xba\x89\x4e\x38\x36\xe3\x61\x3e\x04\x78\x00\xc7\xd6\xf1\x8e\x2a\x51\x1d\xaf\x39\xee\x47\x0f\xb4\x93\xc5\xc5\xcc\xe6\xb9\x24\x48\x45\xb5\x90\x4c\x29\x56\xf6\x15\x3a\xab\x50\xb4\xde\xd5\x7d\x54\x95\x4a\xe3\x25\x2e\xc5\x8b\x4a\xa7\x6f\x2a\xe1\xe2\x20\x9b\xcd\x06\xc5\x88\xd9\xf6\x8a\x35\xdc\x42\x23\x34\x20\xe5\xc7\x9d\xbe\x56\xb9\x92\xe4\x5d\x1b\x84\x47\xf3\x22\x5d\xfc\x2b\x91\xb6\x35\x95\xa2\x87\xa6\x3f\xad\xf2\x9f\xc7\x31\xd3\x70\x9d\xfe\x40\xc5\x4e\x6b\xd8\x24\x38\x20\x4e\x34\xe9\x95\xd8\xd7\x02\x6b\xfb\x15\xe4\x25\x36\xa3\x30\xde\x2b\x98\x72\x91\xe5\xc9\x28\x03\xe7\x88\x04\x74\x9e\xb1\xe1\x82\x42\x1d\x0d\x4c\x3e\x74\x7d\xdd\x12\x77\x1f\x57\x82\xa8\x37\x71\xf4\x08\x78\xf6\x61\xa5\xc5\xf3\x3a\x5a\x6f\xd4\x2e\x77\x5b\x9e\x36\x1e\xeb\xf0\xd3\x18\x89\x26\x7f\x13\xfe\x25\x20\x8e\x5d\x0c\x93\x03\x7a\x96\x8f\x2e\xe9\x31\x8f\x13\x60\xa5\x07\x99\x79\x8f\x46\x1b\xa4\xe1\x68\xd4\x52\xbd\x6c\xe7\xb0\x1e\x05\xf4\x2e\xd9\x87\x41\x6a\xfa\x44\x6c\x7c\xe8\x90\x67\xcd\x70\x61\xef\x19\x65\x74\xc6\xc3\x30\x0a\xc7\xd3\x74\x04\x20\xc5\x88\x9c\x17\xfc\x40\x14\x50\xf8\x9a\xde\x90\xff\xa6\x92\x8c\x0a\x52\xe4\x8d\xe1\x6a\x6c\x10\xfe\x83\xaf\x6b\xc0\x85\x17\xe6\xa0\xd7\x5b\x1e\xee\x58\x8d\x8c\xfc\xe7\x9b\x8e\xaf\x7e\x04\x69\x11\x3a\x98\x1c\xd2\x9c\x6f\x2a\xe1\xd3\x37\x1d\x79\xb1\xe9\x8f\x42\xd2\x15\x43\xea\x49\xb8\x8a\x94\xec\xae\x4f\x92\x24\xe9\x92\x1d\xed\x51\x34\x71\x27\xe8\x1c\xc1\xc1\x7f\x87\xe0\x8f\xd8\xb2\x27\x74\x1b\x87\x4a\xe4\xfd\x78\xe2\x5b\xc5\xde\x53\x48\x9a\x51\x48\xac\x26\xaa\x69\xf7\x94\x22\x8d\x3d\xd5\x84\x67\xe9\xa7\xe1\x32\x6f\x78\x99\x18\x85\xbb\xbe\xa8\x2a\x6b\x77\x14\xd6\xcf\x44\x91\x1d\x40\xe8\x70\x8f\xe2\x63\xbf\xa3\x9e\xf7\xde\xc4\xf7\xbe\xa2\xc5\x92\xff\x5d\x83\xf9\xee\x00\x58\x26\xb6\x42\x4f\x68\x64\x90\x9f\x94\x2c\x9c\x8f\xdc\x2f\x6a\x68\xda\x31\xad\x80\x74\x43\xb3\x93\xd8\x41\x11\x2b\x14\xe7\xa4\xe3\x9b\x22\x26\x4d\x79\xb5\x51\x18\x85\x79\x69\xbd\xa6\xbc\x8a\x34\xc0\x7a\xb0\x3a\x1b\xaa\x9e\xf6\x2d\x15\x74\x8e\x92\x3c\x71\x0a\x64\xc2\xbc\xd0\x9a\x53\x1d\x4f\xe5\x44\x63\x70\xb7\x15\x1f\x55\xdf\xe6\x36\xc8\x77\xa8\xc4\x38\x3a\xfb\x0b\xea\x17\xd2\x30\x58\xb2\xab\x2d\x95\xa1\x3b\x5f\x15\xe2\x79\x5c\xd1\x15\x8d\x46\x26\x58\x02\xe3\x1d\xc2\xfa\x1b\x38\xe5\x24\xc9\xe2\x85\x7a\x4e\x7a\x99\xc5\xb4\x74\x96\x84\x53\x0f\x6e\x3c\x43\xd4\xf8\x46\xa5\x57\x33\x9b\x67\x33\x3e\x96\xdd\x45\x71\x23\x6c\x06\x58\x12\x39\x96\xa3\x5f\xe2\x7f\xd7\xdf\xb5\xee\x3a\xfb\x83\xa8\xc8\x83\xe1\x94\xc7\x2c\x6c\xe2\x84\x17\x36\xc7\x96\x53\xed\x3e\xab\x46\x83\xa4\x41\x23\xae\x3e\xc3\xab\xba\xa6\x0c\xcb\x86\xb6\x8e\x08\xc9\xe0\xa8\xfe\xf9\xa4\xc2\x24\xa2\x1a\x5f\xde\xd6\xf2\x04\x71\x38\x62\x4f\xcc\x35\xdf\xa1\x9b\x83\xaf\x55\x2f\xe5\x57\x0a\xdb\xb3\x41\x92\xee\xf5\x2b\xeb\x0e\x10\x80\x0e\xb2\x57\xba\x3b\x28\xe9\x02\xcb\x87\x6d\xf5\x13\x78\x48\xfc\x1f\x78\x14\x98\x7d\x34\x3a\xc8\x7f\xf8\x9f\xca\x4d\x18\x25\x29\x23\xfb\xc4\x2e\xd2\xe7\xc4\x30\x36\x38\x88\xcb\x26\x28\x98\xb0\x5d\xfc\x1a\xe5\xe3\x38\x43\x9d\x8c\x89\xc7\x8f\xbe\x1a\x90\xa0\x6f\xd2\x0b\xf3\xb5\x22\xa7\x30\x23\x93\xdb\x22\x55\x3d\xde\x38\x17\x85\x8c\xb9\x41\xda\x34\x4a\x56\x66\x34\xa2\xd0\x73\x04\x7d\xf7\xb1\xae\x67\x00\x07\xa0\xd0\x65\x96\x5d\x91\xe3\x76\x2d\x91\xf6\x6c\x3b\xb2\x83\x30\x2f\x67\xc9\xe2\xd8\x45\x29\x08\x82\x9d\x7c\x5d\x2b\x8d\x50\xb1\xb9\x0c\x7b\x69\xe5\x22\x09\x0f\xb2\x08\xd7\xab\x5e\xce\x08\x72\xce\x1f\x4d\x3c\x98\xfb\x0f\xb0\x7b\x80\xfb\xbf\xde\x04\x1c\x21\x05\x4e\x03\xca\x5e\xc7\x1a\x5d\xce\x0c\xdf\x34\xb1\x5f\x16\x71\x6a\x96\x3d\x5e\x19\xe5\xa0\xf5\x8e\x47\xfa\xac\xab\x65\x66\x11\x1d\xd8\x3d\x5e\x3e\x52\xcb\x36\xbe\x89\x4d\x83\xff\x00\xa1\xbb\x13\x37\x2d\x17\x3c\x7f\x82\x8e\x18\xfe\xa3\xc6\x83\x20\x5c\x16\x7f\x11\xf5\xd6\x9b\x13\xc5\x4e\x7d\x4d\x65\xfb\xf7\x74\x1b\x3b\x64\xc3\x41\x41\x6b\xe3\x17\x5f\x92\xc3\xa3\xa3\x00\x71\x17\x55\xbe\x2a\x30\x69\x0a\x26\x77\xc7\x6b\xe5\x98\xb5\xde\xaa\x89\x9d\xbe\x30\xd7\x0e\x4b\xaf\x25\x48\xca\x43\x27\x94\x02\xb1\xd3\xca\x9d\x9b\x73\x24\x33\xbe\x68\x1f\xf5\x12\x78\xd9\x12\x4b\x51\x0e\x4b\x82\xa9\x86\x86\xc8\xd8\x32\xc5\x1e\x9c\x8b\xa9\x35\xff\x78\x90\x05\xc6\x21\x7e\x53\x95\xd0\xc6\xd6\x2c\x21\xc0\x74\x4a\xe2\xe5\x2f\x0a\xcc\xb2\x81\xc6\xd8\x03\xff\xe9\x15\x80\x95\xbb\xae\x70\x73\x5a\xa7\x34\x30\x69\x2e\x0b\x04\x79\x07\x54\x79\xf8\x5a\x85\xdd\xcb\x26\xe3\x9a\x14\x92\x4f\x27\x54\x22\xea\x44\x23\xb1\x7b\x56\x8c\xc7\x49\xca\xd5\x00\x46\x2c\xd2\x92\x12\xf4\xe2\x4e\xe0\x85\xe4\x03\xcc\x68\x94\xc4\x21\x68\x70\xe6\x39\x8c\x02\x22\x8b\xaf\x6b\x08\xae\x32\x84\x49\x49\x72\x74\x1b\x7c\xab\xdb\xa7\x3a\xba\x4f\x2d\x0f\x86\x94\x78\x7b\xc1\x97\x22\x75\x7e\x44\x27\x93\x6f\x56\x80\x67\xd8\xbe\x5c\x60\x56\x40\xba\x33\xaa\x48\xf4\xdc\x3f\xfe\x39\xcc\x10\xe2\xf2\xf5\x89\xef\x85\x58\xef\x3c\x55\xd7\x5c\x3c\x78\xf0\xc1\x0a\xc0\xc6\x3b\x1d\x7b\xd6\xfc\x91\xfe\x47\x1d\xa5\xad\x70\xba\xa3\x6a\xff\xb7\xb5\x1e\xe0\x2d\xbc\x08\x0e\xe9\x5b\xe4\xd6\x55\x10\x33\x4e\x84\xaa\x7c\x40\x64\x93\xce\xa8\x84\xe9\x5d\x97\x62\x8f\xcc\xd8\x81\xba\x10\x93\xae\xe3\x09\xf8\xa6\x51\xbb\x2f\x18\x0a\x21\xa3\xb0\xcf\xfb\xc5\xf3\x56\xad\x80\xf0\x77\xda\x69\xd8\x8f\x2c\xeb\x66\x28\xdd\x5e\x47\x54\xd3\x18\x4f\x64\x79\x1a\x2e\x41\xae\x43\x24\xf5\xe8\x6d\x1c\xf8\xdb\x11\x36\x82\xee\xfb\xf3\x72\xeb\xcf\xb6\xfb\x76\x64\xe2\x3e\x31\xf4\x20\xa9\x77\x1b\x86\x17\xa8\x1b\xe6\x73\x73\x0c\x9f\xe5\x48\x88\x2c\xac\x4f\xee\x7e\xda\x44\x23\x30\xb6\x6c\x30\x2a\xee\x98\xe0\x24\x1a\x34\x4e\x8a\xcc\x12\x8c\x52\xd4\x5f\xbd\x81\xd9\x43\x7d\x8b\x48\x2a\x7c\x3c\xa9\x76\xb5\x97\xcf\xca\x19\x39\x9a\x43\xe9\x0e\xd8\x59\x48\x3c\x74\x88\xcb\x40\x99\x53\xbb\x15\x3f\x0e\xdc\xca\x7c\xad\xce\xfe\xd4\x0e\x8a\xd1\x48\xba\xbe\x44\xe1\xdb\x83\xe2\x8f\xab\x1c\x59\x9c\xe4\x61\x10\x1a\xd0\x34\x61\xe5\xde\x50\x0a\x17\x7f\x80\xb7\x17\x52\x8a\x9d\x1c\x3e\x7f\xb7\x3d\xb6\x29\x0e\x55\x69\x6f\x29\x67\x8d\xaf\x2b\xee\xf9\xc0\xa4\x7b\x68\x4e\x9a\xd2\x18\xb4\x09\x84\xbb\xaf\xa2\x51\x47\x3f\x2f\x37\xd8\xcd\xf2\x77\x3b\x13\x63\x07\x0f\x52\x60\x98\x64\xc9\x78\xc8\x14\x31\x42\xaf\xeb\x57\xc9\x86\x73\x26\xc3\xd1\xa8\x88\xed\x8c\x6f\x33\x9f\xe9\x2a\xf9\xd9\x89\xa2\xd5\xfd\xc1\x44\x23\x2a\xcb\xc9\x82\xd7\x7e\xbc\x89\x4a\xcc\xb3\x52\x66\x5a\x53\xe6\xa2\xd2\x94\xf1\x22\x40\xc3\xa4\xc8\xec\x4a\x92\x72\x0e\x14\x09\xb4\x93\x2a\xef\x78\xb2\x56\x23\x2a\x7f\x82\xc2\xdf\xb1\xe2\x39\xc3\xf3\xdc\xd7\x74\xe6\xf7\x15\x3e\x25\xcc\x46\xfb\x15\x2d\x0a\x92\x72\x38\xb7\xe0\x75\x03\x91\x72\xd3\xd3\xc4\xfe\xab\xff\x0c\xd1\xbc\xa4\x32\x5d\xb5\xee\x1f\x7f\x61\xcd\x6b\xd7\x72\xb9\x59\x44\xeb\x55\x03\xd3\x74\xd7\x9f\x36\x69\x98\x2d\xad\xb6\x28\x6e\x13\xbe\x80\x96\x22\x12\x78\x5c\x09\x1f\xd8\xbe\xc9\x45\xe2\x49\xe0\x24\xe5\xcf\x79\x34\x89\xcf\xda\xf5\x4c\x3a\x2d\x45\x5d\xa7\x2b\x8a\x1a\x26\xac\xff\x25\x0d\xbf\xbc\x50\xa1\xc7\x5d\x0c\x91\x1f\x93\xf6\x1c\x7a\x0d\xd9\x81\x4d\x8c\x3e\x8b\x26\x8a\xa6\x7c\x37\xe1\x1d\x95\xd6\xbc\x0b\xbb\x03\x4f\xf0\xdf\xab\x53\xf6\xd5\x24\x8c\xf3\x7d\x5a\xe1\xcc\xe3\xda\x99\x45\x47\xf5\x1c\x1e\xf6\x35\x45\xaf\x26\x42\x67\x80\xd3\x0f\x9e\x9b\xd3\x2a\x23\xde\x5f\x6c\xc0\xe0\x05\x49\x9f\xfb\xcb\x85\x84\xa0\xe5\x38\x47\xd7\x5d\x0e\x22\x32\xa4\x6b\x29\x4e\x03\x1c\x80\xdd\x60\x9f\xe0\x9b\x5a\x4f\xc6\xfc\x8b\x87\xdb\x10\x2a\x5f\x38\x20\x30\x8d\x56\x97\x82\x18\xbe\x59\x73\x34\xfe\x76\x10\x66\x91\x29\xa3\x5d\x72\x36\x24\x78\xa2\xb7\xe5\x1b\x07\x8f\x4a\x46\x71\xd8\x6a\x29\xce\x07\xa5\x0c\x70\x5e\x65\xc5\x1c\x1e\x48\xa1\xfe\xa0\xd6\xcf\xd7\x0d\x01\x80\x09\x82\x22\xf3\x35\x55\x94\x74\x90\x32\xe2\xeb\xc9\x83\x6e\xb3\xfc\x57\xff\xf9\x94\xd2\x60\xd9\x40\xed\x84\x97\xb8\x8a\xeb\xae\x34\xc9\x4e\x0c\xad\x89\xf2\x61\x60\x52\x5d\xbb\xbb\xa8\x29\x45\x2e\xd6\x36\x34\xe5\xf3\x7b\xa9\x35\x4b\x8b\x86\x79\x43\x85\x6a\xb4\xe5\x44\x8e\xce\x37\x88\x1c\x1d\x6e\x9b\xfe\xb2\x89\x03\x0e\xf2\x90\x74\x39\xaf\x49\xa3\xce\xd7\xd6\xf2\x0b\x73\xed\x51\x12\xf5\x81\x92\x86\x45\xbc\x89\xc2\x9a\xf4\x88\xb7\x1c\xef\xc1\xaf\xea\x86\xa3\x53\x0d\x69\xe3\xf9\x76\x16\x0c\x6d\xbf\x88\xaa\x5a\x2f\xf0\x82\x64\xa5\x7a\xff\x34\x59\x5c\x0c\x03\x9b\x3e\xec\x99\xcc\x28\x5b\xb2\xbd\x86\x47\x46\xd0\xbd\x17\xd8\x37\x54\x10\x71\x9a\x08\xf7\x09\xcd\x4a\xe5\x50\x16\x9e\x1f\x18\x41\x9c\xbf\xef\x75\xfc\x1b\xfc\x0e\xce\x5c\x98\x06\xa4\xe1\x9c\xca\x68\xb9\xfd\x64\x94\xca\x68\x82\x7f\xa5\x53\x11\x3e\x2c\xa8\xff\xa2\x5c\xdb\x98\xf4\x2d\xb5\x00\xb6\x6a\x23\x22\x3e\x6f\x9c\x2c\xb1\x7d\x11\x9e\x01\xe5\x23\x6e\x76\x1e\x55\x8d\x35\xfd\x50\x48\x62\x5c\x9d\xd7\xd7\x7c\x9b\x84\xad\x7a\xc4\x65\x26\x3b\x16\x07\x2d\x53\xc4\xf3\x8d\xea\x98\x19\x14\x26\xed\x2b\x2e\x79\x64\x46\xf9\x5a\x9d\x0f\x36\x78\xee\x01\x1a\x10\x61\xdb\xa7\xe7\x45\xe2\x7f\xba\xeb\x85\x6b\x76\x75\x31\xd2\x8e\xfd\xa4\x9c\x37\xdc\x7c\x15\x26\x09\x7b\x10\x5e\x29\x0a\x72\xd5\x16\x6e\xd7\xd0\xf8\xfb\x64\xb4\x25\x75\x2d\x06\x69\x64\xd3\xc0\xc4\x79\x18\x59\x3e\xd8\x1a\x1d\x4b\xff\xe0\xbf\x30\x7b\x78\x5a\x51\xab\xfd\x80\xfd\x7d\x51\x29\xa1\x81\x05\xa8\x93\xb1\xf8\x82\xad\xf3\x5f\x51\x44\xf9\x03\x1e\x08\x0e\xaf\x1d\x3a\x43\x5f\xc0\x52\x94\x1a\x55\xf9\x4a\x12\x0f\x7a\x7d\xe3\x63\x1d\x45\xba\x7a\xb1\xca\x4a\xeb\xb5\xf1\x36\xa8\xf8\x8c\xfc\x2b\x3f\x09\x57\x6d\x55\x0d\x72\x90\x16\x36\x4b\x46\xdc\xbc\x22\xfc\x03\xad\x5f\xfa\x12\x87\xd4\xeb\x34\xaa\x48\xa2\xdd\x51\x48\xad\x25\x1b\xc7\x36\x1f\xf2\x88\xe1\x3d\x36\x34\xfc\x67\xa3\x16\x9d\x95\x7b\x97\x84\xf0\x21\x8a\xc0\xdb\x57\xb8\x71\x69\x5a\xf9\x46\xd1\x04\x66\x86\x50\x12\xb3\xce\x93\x2a\xdf\x4f\x18\x56\xbd\xa8\xf4\xf1\x26\xa3\x03\xf5\x61\x9f\xba\xb8\xad\x52\x17\xb7\x6b\x1f\xa0\xc7\x33\xb9\xc1\xce\x70\x7a\x06\x73\x73\x72\x5d\xa3\x9f\xf7\x7a\xb1\x36\xdb\xeb\x03\x87\x13\x7a\x9f\xef\xdd\x81\x37\x2d\x07\x88\x49\x45\x3b\x9e\x38\xfd\x38\x95\xf0\x1d\x8f\xb4\xcb\x28\xd6\x81\x7a\x84\x62\x33\x69\x3e\xe5\xa9\x3c\x50\xbd\xc2\x0a\x3f\x33\xf1\x85\xa9\xb7\x9a\x20\xd5\x24\x4a\x4f\x75\x02\x19\x6b\x1f\xd7\xd7\x19\x3b\x5d\x40\x9d\xda\x69\x4f\x0d\xbe\xa9\xe4\xcd\xcf\xf1\xea\xc7\x34\x7c\x82\x0d\x09\xa3\xb0\xab\xfb\x44\xc5\xcb\x0a\x83\xdc\xf6\x67\xca\xaf\x91\xba\x83\xcf\xf3\x1d\xa7\x52\x48\x45\x5d\x05\x49\xd3\x2b\x0a\x00\x70\x75\x67\x30\x3c\x37\x37\xdf\xfe\xc5\x97\xa8\x42\x02\xbb\x71\xaa\xe3\xcb\xe2\xa7\x9c\xc3\x9b\x15\xe9\x38\x2a\x9c\x2c\x13\x9c\x80\xeb\xda\x23\xb8\xae\xce\xfa\x22\x5e\x49\xc3\x3c\xb7\x71\xab\xc2\xe0\xa2\xd0\x93\x8d\x8c\xe4\x43\xc2\x5c\x52\x66\x0a\x89\xbb\x2b\x4a\xa2\x17\xa5\x05\x24\x41\xbf\xa9\x9c\xcf\x30\xce\x53\xd3\x37\xab\x54\xf4\xc6\xac\x41\x82\x92\xaf\xbb\x52\x8c\xe9\x85\x79\x30\x6c\xd5\x9a\xbb\x04\xbf\xd2\x50\x1e\x5c\xb2\x69\x94\xc4\x70\x09\x24\xb7\x4b\xe3\x2a\x69\x5b\x6f\x8d\x96\xc3\xfe\xb4\x6f\xaa\x7a\x9f\xa6\x05\x19\x0b\x6e\x66\xaa\x50\x9e\xc0\xea\xbc\x5f\x0b\xe7\x0f\xce\x96\x81\xb6\xb5\xf9\x94\x07\xec\xc2\x9b\x70\x6d\x70\x9e\x88\xe3\x07\x2a\xd1\x16\x25\xbd\x1e\x7c\x24\x61\x1e\xf4\x5e\xf2\x4d\x95\xd7\x2d\x23\xcc\xc8\xa4\x33\x9e\xbe\x80\xfd\x35\x78\x2b\xef\x4e\xaa\x10\x2d\x87\xe8\xb9\x30\xd1\x0f\xd4\x90\xf9\xc9\x4d\xaa\x91\xf4\xef\xd1\xdf\xcb\xc1\xfe\xa8\xa2\x84\x2e\x67\xab\x55\x29\xcd\xb7\x9c\x8c\xcc\xa9\xc9\x53\xea\x49\xc7\x26\x35\x4e\xf4\xea\x65\x97\xb0\x52\x45\xab\xcd\xda\xee\x7c\x69\xbe\x9d\x8d\x92\x25\x76\xa1\x51\x0d\xbb\x02\xbb\xc8\x37\xea\x04\xf9\x99\x7f\xf0\xf7\xa6\x55\xe3\xdf\x95\x4a\x00\x4b\x23\x81\x52\xca\x07\x2a\x49\x7e\xdb\x79\x01\xc5\xa8\x97\xda\x28\x32\xf8\x29\x16\x5e\xab\x88\xb0\xfd\x94\x4f\x20\xa6\x49\x90\x9a\x2c\x0f\x63\x7a\x23\x48\xd8\x09\x8b\x29\x0d\x86\xf0\x9b\x96\xbf\xca\x72\x2f\x70\xef\x44\xfb\x45\x91\xe6\xd9\x10\x67\xa7\xab\x05\x4b\x07\xfc\x7f\xb8\xa7\xa4\xaf\x2b\x3a\x3c\x5f\x6b\x30\xd5\xcf\xc3\x54\xfb\xf8\xe2\x92\x2e\x62\x5e\xea\x28\xaa\x6a\x4a\xfe\x64\xd3\x2d\x45\x8d\x51\xee\x36\x7c\xf7\x5b\x74\x46\xba\x26\x04\xd7\x03\x77\xb7\xb6\x4e\x9e\x6b\x47\xcf\x8d\xd1\x13\x8a\x67\xdf\x85\x36\x72\xbe\x59\x6b\x20\xe5\x1f\x5a\xe3\x04\x35\x31\x1b\xd4\x92\x2b\x50\xe2\xdd\xdd\xa7\x3c\x35\x52\x91\x67\xb9\x89\x45\x6c\xf2\xe5\x6d\x56\x8d\x13\x2e\x2d\x95\x48\x3b\x55\x09\x48\xe3\x5e\x30\xe5\x3b\x96\xce\xe2\x53\x30\x97\xe7\x95\x22\xc2\x6d\xc5\x74\x94\x25\x45\x3e\xec\xa5\x49\x22\x04\xe7\xd8\xeb\x9c\x08\xe7\x9b\x89\xd2\xe5\xb1\x71\x4b\x33\x95\xbe\xa1\x79\x0f\xde\x50\xf5\x56\x9b\x95\x5b\x24\x24\x7a\x27\xfa\x13\xb8\x0d\xef\xd2\x78\xf3\x75\xcd\x2b\x98\x3d\xd2\x0e\x92\x78\x90\xda\x0c\xd4\x50\x64\x08\x94\xf7\xed\x44\x8c\xdd\xe2\xed\x45\x96\x49\x61\x3c\xe1\x60\xc7\x37\x86\x7c\x58\x2b\x7f\x1c\x3c\xd8\xfe\x4a\x91\xe4\x29\x97\xcb\xa4\x7b\x50\x35\x40\x5d\x70\xec\x10\x66\x85\xdc\x21\x25\x05\xb2\xa7\xeb\xcb\x85\x7b\xd6\x1a\x3a\xc2\xc6\x45\x36\x4c\x96\x99\x6e\x81\xcf\x41\x3a\xdb\xe5\x4c\x7c\x5a\xd5\xed\xf2\x30\x08\xc7\xbc\x91\x0e\x1d\x5a\xe0\xef\xdd\xbd\x46\x35\x38\xbe\xa1\x8a\x93\xf0\xc8\x78\xbc\xff\xe9\x5a\xbd\xe8\xe8\x81\xb9\xf6\xd0\xac\x2c\x65\xd3\x00\x07\x4a\x05\x5d\xf5\xe8\xef\xea\xd2\x4e\x94\xe8\xc1\x03\x6d\x3e\x55\x9a\x3f\xac\xee\x1c\xad\x4e\xf9\x63\xe0\x47\xaa\x66\x76\x96\xd8\x79\x44\x3b\xb6\x01\xa8\x10\x99\x3e\x2c\xb8\xe2\xca\x9f\x77\x04\x4c\x35\x7d\xb4\x83\xa5\x85\x8c\x4c\x96\x73\x27\x33\x92\x47\xe7\xc8\xc3\x45\x6d\x6c\x77\x97\x46\xc7\x95\x83\x9d\x8f\xf2\x89\x8a\xed\x16\x4d\x50\x3e\xf6\x94\xaf\x19\x9d\xdb\x21\x26\xe0\x65\xc4\x6f\x2a\xdf\x95\x9b\xa8\xf7\x68\x6a\x57\x55\xee\x7f\xb7\x33\x55\x11\x6f\x3f\x38\xcb\xc3\x77\xb3\xe3\xab\xad\x8c\xd8\x96\x26\xd6\x1d\x8e\xc9\xc1\x83\xed\xa3\x07\x5e\xde\x4f\xef\xe0\xc8\x1d\x5f\x72\xb9\x28\x12\xe7\xd8\xe6\xc6\x2a\x38\x6e\x0f\x93\x35\xd9\xbe\xd4\xf1\x6a\x56\x77\x95\xf0\x1e\xaa\x3b\xd2\x04\xa6\x34\x34\xee\x36\x72\xed\x16\xe3\x54\x75\xfc\x89\xc8\x53\xcb\xf1\xce\xac\x37\x79\x0c\xa0\x95\x82\x66\xa8\x28\x7f\xd1\x70\x0a\xb3\xa1\x87\x0e\x6e\x55\x5b\xac\x6c\xfa\x84\x87\x20\x42\xa3\x13\x91\xc4\x36\xc6\x95\xbb\x77\x50\xde\xc2\x78\x9c\x03\x22\x54\xd2\xd7\xb4\x48\x9d\xaa\x5f\x39\x2c\xc2\x74\xa6\x59\xef\x3e\x51\x24\x2b\xdc\x72\xe3\x10\xb4\x47\x05\xbe\xb7\x8f\xf2\xdf\x22\xd3\xa9\x4a\xf5\x37\x3a\x1e\x71\xf2\x17\x1d\x75\xe0\x9f\x00\xba\x08\xb1\xd5\xf7\x27\x4a\x94\xe5\x02\x96\x02\x5e\xfa\x77\x1c\x34\x66\x31\x74\xfa\x8e\x48\xcd\xa1\x9f\x45\x50\xb4\xf4\xce\x12\xfc\x7a\x38\xcd\xc0\xc4\x9a\xce\x17\xe4\x85\x7c\x5d\xab\x27\x96\x6f\x0d\xad\xf1\xdc\x84\x31\x28\x18\x1d\x59\x23\xeb\xee\xf1\x8d\xb3\x5d\x99\x5d\x0a\xb3\x22\x54\xbc\x3a\xff\xa6\xca\x91\xfe\xa8\x96\x1c\x5c\xb2\x02\x07\x71\xc4\x5a\x3e\xa1\x33\x51\x3c\x24\xd7\x6a\x45\x42\x09\x0b\x86\x28\x91\x2a\x40\x93\x82\x0b\x6d\xe8\x1d\x97\xc4\x79\x9a\x44\x0f\x4e\x79\xa5\xdc\x2b\xc8\x60\x8a\xf6\x8e\x27\x78\xb8\x4e\x73\xe9\x64\x78\x9c\x3f\xbf\xae\xd8\x7a\xaf\x55\x91\x50\xf4\xab\xd2\xde\xa9\xe3\x11\x86\x9a\x0a\x82\x54\xf5\x10\xd7\x32\x62\x07\x67\xcb\xa7\xcc\x6c\x50\x38\x41\x0e\x66\x54\x51\xe2\x38\x5b\x35\xf0\xc0\xdc\x5c\xbb\x67\x62\xc5\x64\xb6\x55\x91\x8d\x57\xb0\xa7\x31\xf1\x07\xc5\xd8\x92\x58\x2a\x57\x27\x1e\x77\x78\x55\x49\x6b\x06\xa6\x17\xb1\xec\xa5\x38\x97\xaa\xed\x1e\x25\x45\x29\xe0\x7a\x9f\x65\x6a\xad\x34\x55\x98\xc0\x7f\xa7\xc8\x46\x17\x4d\x40\xa0\xa1\x9c\x19\xcf\x30\x84\x80\x8b\xf0\x75\xbd\x69\xf9\xc5\xc3\xed\x5e\x92\xe7\x09\x80\x19\xd8\x99\x37\x54\x13\xc4\x8d\xca\x9b\xb1\x66\xe8\xe7\x68\x1c\x08\xf5\x44\x4a\x68\x6a\x4b\x5e\xce\xb4\xe7\xd3\xfd\x0b\xec\x38\x38\x61\xdb\x9d\xd6\x0e\x99\x31\xe9\x25\xf3\xee\x35\xe5\x8f\x91\x28\xa3\xdf\xc4\xba\xc1\xd3\xf1\xf5\xc4\x37\x5c\x8c\x4c\x1c\x8e\x8b\xc8\x15\xb2\xe6\x38\x01\xc4\xed\x23\x7c\xb3\xe6\xe8\x2c\x23\x13\xc6\x94\xe3\xd7\xf6\x48\x8e\x11\x8c\xbd\x70\xc8\xab\xcd\xf5\x2f\x26\x4f\x29\x35\xc5\x34\x8f\xc1\x97\xc8\x00\x20\x71\xf9\xe9\x45\xb1\x50\x4f\x2b\x96\x87\xa9\xae\xfa\x89\xe9\xae\xf7\x83\x1f\x27\x04\xb7\x52\xb5\xf2\x46\xb7\x97\xbc\xd6\xfa\xbc\x34\xbf\xd3\x0a\xcf\x73\x3b\x1a\xe7\x2c\x4b\x02\xfb\xb6\xae\xeb\x0e\xdb\x2a\xd4\xda\xa6\xed\xc1\x7f\xa4\xfa\xcd\xc8\x08\x71\xbf\x99\x43\x73\x2a\x98\x67\xa5\xc4\x61\xfa\x8a\xa3\xfa\x3e\xfd\x1d\x5f\xab\x9c\xd3\x38\x4d\x46\xe3\x5c\xf4\xd3\x10\x9b\x00\x35\xc0\xd7\x13\xfd\xd6\x15\x5d\xaf\x9d\xbb\x76\x6e\xee\x70\xdb\x8c\xc7\x51\x48\x5b\x86\x8e\x2e\x7c\xc7\xbf\x86\xe5\x87\xe1\x86\x67\x2f\x14\x0f\x4a\x2f\x26\x1c\x95\x0b\x83\x5f\xce\x6d\x77\xbf\xf5\x9b\xd2\x2f\x71\xe2\x08\xff\xa5\xf3\x5a\xb7\x61\x37\xe8\x4c\xce\x97\x6b\xd0\x0c\x6c\x2a\x95\x33\x16\x6b\xa9\x2a\xb7\x78\xe3\xbc\x64\xc3\xd7\x4d\x38\xe5\x03\xfc\x0d\x55\x3e\xfe\x6d\xcd\xa4\xb9\x55\x29\x30\x65\x36\xfb\x42\xb9\xc2\xb6\x19\x83\x8e\xa5\xfd\x10\x2d\x59\x3a\x40\x2f\x3d\xd1\xa5\x02\x0a\xca\x2c\xd7\xc8\xb5\x41\xfd\xe4\x12\x0c\xa5\x4b\x41\x38\x78\xd7\x8f\x81\x0e\x43\x8a\xf5\x3d\x45\xa8\xd6\x5a\xa3\x43\x53\x00\xca\x34\x95\x22\x07\xe6\x11\x2a\x8f\x74\x55\xe2\xe4\x24\x25\xec\x18\x34\xaa\xf9\x07\x3e\xe3\x24\x12\x0e\x70\x96\xd9\x42\x15\xe6\x4d\xf8\x09\x8e\xf3\x64\xf6\x88\xd3\x46\x22\x9f\x41\x44\x13\xcb\xb5\x8b\x6d\x49\x7b\x46\x34\x40\xef\x4c\xbc\xce\xc9\xf5\x46\xcd\xc0\xbe\x8d\x43\x5b\xa1\xcc\xbf\xa2\x15\x5a\xaf\x54\xa3\xad\x3c\x79\x5a\x49\x6c\x7c\xa2\x7a\x53\xf7\xae\x29\xe2\xde\xe9\x35\x38\xe4\xf0\x4a\xbf\x4b\x27\x1a\xfe\xe7\x3a\x45\x06\x78\xb8\xab\x1d\xd5\xc1\x7d\x0c\x33\x00\xec\x05\xeb\x7c\x0a\xef\x6e\x39\xea\xd2\x19\x86\x91\xe2\x9e\x6c\x2a\xd5\x01\xb1\xba\xa9\xdc\xbb\x0f\x68\xa0\x91\xe8\xfc\x3e\x8d\x99\x63\x6c\x28\x07\x1d\x4f\x75\x1c\x33\x8b\x30\xe1\x0a\x26\x10\xae\xd5\x55\x44\xef\xfc\xf0\xc8\x35\x4b\x67\x01\x8d\x13\xab\x7f\xd7\x62\xe4\x67\x89\x78\x6e\xaa\x42\x79\x58\x8e\x96\xd0\xe2\xd1\x1b\x22\x9d\x7d\xb6\x06\x6e\x3d\x74\x68\xa1\xdd\xb3\x81\x29\x32\x74\xdd\x3b\xbb\xf0\x82\x14\x09\x7f\x58\xe9\x7c\x54\xac\x55\x36\x88\xc2\x58\x22\x42\x2c\xbc\x77\xd5\x22\x7c\xb7\x96\xab\x22\x25\x22\x3b\x22\xbe\xd2\x1d\x31\x80\x78\xf4\x3e\x3f\x45\x12\x6c\x0f\xd3\x54\xb1\xeb\xa2\xc5\x08\x36\xf1\x56\xaa\x57\x51\x0a\x41\xff\x53\x47\x8b\x9e\x96\x8f\x26\xd4\xee\xe4\x07\xbb\x76\x83\x72\x84\x04\xed\xe8\x7b\x40\x6e\x4e\x54\x67\xd6\x45\x25\x33\xfb\x97\x13\xc5\x0a\x86\x90\x84\xfb\xaf\x54\x11\xc6\x7e\xa5\x30\x11\xa5\x6c\x25\x8f\xe4\x01\x22\x10\x5c\xe2\x6b\x2a\xac\x4b\x7a\xa9\x3e\x25\x68\x66\xde\x01\x4e\xe9\x68\xae\x22\x7f\x2c\x9b\x20\xb0\xe3\xdc\x10\xf5\x80\x62\xbc\x42\x7a\x5a\xe0\xe1\xde\x6b\x58\x09\x49\x82\x00\x40\x0e\xbc\xff\x2d\x2c\x49\xbe\x51\x29\x8b\x71\x9a\xe4\x36\xd8\xd9\x7a\x04\x4b\x28\xd8\xb9\x86\x5e\xa9\xd4\x2e\xdb\x78\x60\x95\xe7\xcc\xdc\x64\x7c\xe3\x08\x8e\x93\x5e\x66\xd3\x65\x14\x6b\x69\x72\x98\x2c\x6e\xe2\xdd\x8b\x8b\x0d\x1a\xcb\x87\xdb\x59\x54\x8c\xc6\x53\xba\x8f\x15\xcd\x43\x8e\x6e\xd8\xc1\xb1\x3e\xaa\xb9\x8e\x47\x0f\xb4\x97\x2c\xdc\x67\x46\x3c\xd0\x48\x09\xfa\x41\x0e\xf1\x51\x18\xa4\xc9\x32\xfb\x98\xd8\x86\xc0\x32\xf0\xb5\xa2\xbf\x1b\x99\x74\x10\xc6\x08\xe4\x17\xe6\x1d\xe0\xb0\x9c\x2e\x69\xca\xf3\xc0\x86\xdd\x5d\x29\x80\x11\x21\x6f\xea\xd0\xb5\x38\x33\xef\xaa\xe6\x86\xbb\x13\x91\xe5\x18\x8d\x87\x53\x8a\xe7\x6e\x1d\x3b\x41\xf3\x56\x61\x2d\xdd\x6d\xb4\xb5\x41\x94\xc4\xb2\x38\x24\xe9\x48\xdf\x26\x59\x47\x4f\xfc\xd9\x0f\xb3\x3c\x0d\x7b\x85\x03\x39\x4b\xa9\x58\x73\x8b\xd7\xa6\xe4\xd0\xa1\xf6\x30\x1c\x0c\x6d\x3a\x45\xb3\x00\x5f\xff\x64\x47\xc7\xe1\x0a\x96\x73\x53\x11\x48\x8d\x23\x13\xc7\xe4\x97\x3a\x84\xd0\x27\x9a\x5e\x1f\x90\x55\xfe\x8f\x89\x42\xd6\x5d\x55\x78\xce\x51\xfa\xdc\x3e\xd8\x67\xe7\x91\xbb\xb6\xa4\x3b\x94\xea\x84\x05\x20\x2e\x84\xd9\xed\x4b\x34\x1b\x98\xc6\xb3\xd8\xee\x08\x7b\x98\xbc\xc8\xd9\x25\x17\x08\xfc\xb7\x3f\xdd\x7d\x5c\x65\x99\xb3\x30\xcb\x05\x71\x25\x1b\x8c\xde\x55\x76\x9e\x3e\xbb\xd2\x10\x1b\x41\xda\xcd\x14\x09\xe6\x56\xb5\xa7\x21\x49\xd9\x6d\x75\xe8\xe9\xaa\x60\xf2\xbc\x23\xa7\xf6\x4e\xe7\xcd\x8e\x2a\x28\x5f\xd4\x71\xe0\xcd\x26\xb3\x42\x39\xc8\x32\x1a\xf2\x88\xc8\x2b\x9a\x6a\xad\x0e\x74\x20\xea\xa5\x38\x89\xc2\x5c\x70\x56\x78\x08\xac\x53\xbe\x56\xba\x23\x69\x22\xc5\x49\xe4\xad\xbe\xa7\x49\x7b\xbf\xd7\x79\xba\x9a\xb0\x29\xe3\x9d\xf9\x85\x79\xea\xaa\x14\x49\x9e\x8a\x18\x9c\x67\xb2\x3c\xd1\xf1\x05\x88\x5b\x9d\x4a\x38\x50\xae\x0a\x2c\x91\x3f\x47\x97\x6c\x05\x0a\xc8\xe5\x15\x07\x84\xc9\x4d\x3c\x40\xbe\xf4\x73\x5b\x61\x1a\xc8\xb1\x82\x24\x5e\x2c\x32\x70\x9c\x20\x15\xb5\xae\xd2\x52\xeb\x4d\xe0\xc2\x3c\x89\x61\x66\x1c\xc8\xda\x71\x13\x9e\x73\x8c\x87\xc5\x62\x92\xcd\x68\xa6\x7d\x06\x0a\x53\x70\xf0\x8d\xc7\x90\x8f\x13\x06\xaf\x96\xe3\xc6\x78\x13\x68\xd9\x56\x23\x8d\x6a\x24\x94\xe3\x5c\xe5\x54\xe0\x97\xe3\x4d\x38\x83\x30\x5e\xb6\x99\x6b\x08\x84\xbf\x7e\x8b\x86\x5b\xda\x08\x55\xd7\xf7\xa5\x26\x1d\xdc\x6c\x1c\x3a\x01\x24\xe0\xcb\x8f\x77\x94\xe6\x23\x57\x96\x79\xa1\xbf\x3e\x53\xd1\xe6\xd1\x9a\x3d\x55\x9d\x1e\x2f\xcd\xe3\x01\xed\xe7\x9a\x46\x3a\x35\x21\x62\x09\x6c\x40\xd6\xa4\xe0\x9b\xda\x92\x3e\x78\xb0\x1d\x85\x79\x38\xf0\x3d\xb5\xf0\xb9\xbf\x49\x13\xca\xd7\x0d\x64\x67\xf3\xed\x3c\x49\x60\x45\x51\x61\x61\xc1\x64\xbe\x71\xe1\xdf\xd0\xf4\xca\xb0\x9f\xb1\x1e\x4e\x21\xd5\x65\xa9\xcf\xbb\xc8\xbc\x17\x52\xcf\x5d\x1c\xcb\x62\x44\xc0\xfa\x75\x25\xca\xfb\xf5\x26\x32\xb4\x2c\xb2\xd6\x8b\x7b\x23\x92\x59\x57\xda\x78\xeb\x93\xfd\xfc\xc7\xab\x66\x4a\x81\x3d\xbe\x39\x51\x0a\x52\x67\xe1\xc9\x0b\xef\x76\xc3\xcf\x94\x87\x81\x93\x15\x44\x2c\xf1\x1d\x3a\x6c\xf8\xba\x06\x14\x26\xb2\xf5\xcc\xe6\xd3\xaa\xa9\x88\x73\x28\x70\x2b\x01\xc8\x45\x92\x66\x7f\xd7\x9f\x74\x37\x75\x18\x9f\x26\xaf\xc2\xe9\xc8\xd0\xf5\x07\xaf\xe1\x77\xc8\xea\xf1\x75\x47\x91\x93\x31\x39\xa1\xf4\x57\xee\x5c\xdf\xb3\x47\xda\x63\x9b\xa7\x49\x64\xb9\xdb\x45\xca\x2e\xbe\xdc\x7a\x51\xe5\xe4\xed\xa8\x97\x26\xa1\x10\xbd\x48\xbb\x64\xcb\xd1\x0d\x9f\x6b\xa0\x1b\x26\x40\x97\x9b\x0e\x9c\x4f\xe7\x14\x9f\xf5\x39\xd5\xa0\xd4\x4b\x6c\xb6\x84\xfe\x06\x41\x6f\x78\xb9\x88\x8d\xda\x88\x3e\xf3\x4c\x7b\xd1\x8c\x04\xb4\xc1\xa4\xb5\x3a\xd5\x75\x53\x05\xb0\x7d\x93\x8e\xb8\x4d\x4b\x98\x31\x68\x81\x4a\x4e\x57\xbc\x89\xa8\x97\x4c\x79\x0f\x0b\x89\x8f\x8a\x0e\x25\x8e\xce\x7b\x2a\x77\x90\x85\x7d\xbb\x62\x56\xb3\x96\x62\x98\xab\x50\xcf\x55\x88\xb0\x4c\x1c\xdb\x34\x03\x80\x04\x07\xcb\x7b\x13\xd5\x06\x8a\xc6\x39\xa4\x5d\x2e\xd5\xa2\x99\x72\xa3\xad\x3c\xd7\xaa\x38\x99\x2a\x82\xb9\xa8\xba\x4d\xe1\x6e\xd3\xa8\xa3\x7e\x01\x54\x2b\x5f\x93\x05\x43\xd4\xbc\xae\x22\xe8\x75\x45\xec\x61\xb2\x61\x92\x72\xcb\xb5\xeb\xfd\x2a\x1f\x54\x08\xc1\x14\x76\xe8\xd5\x84\x46\xb6\x02\x96\xe0\x1b\x07\xc6\x0f\x86\xd6\xa9\xb2\x08\x4b\x84\x82\xcd\x9e\x53\xd5\xff\x2f\x25\x56\x51\x5b\x5e\xd5\xc9\xd4\xab\x8a\xf5\x29\x35\x01\x70\x23\x15\xf5\x0c\xbe\xa9\xf8\x0f\xf9\xdf\xce\xf1\x22\x88\xda\x2e\x68\xc5\x95\x0b\xb5\xf4\xc8\x4b\x0b\x07\xda\x91\x5d\xb6\xa9\x61\x47\x1d\x49\xe7\xf7\x94\x1e\xca\x7b\x35\xcb\xf9\x6c\xdb\xbe\x66\xd3\x20\xcc\x28\xeb\xa3\x2c\xe1\x67\x34\xa3\x52\xfa\xf2\x31\x4f\x5d\x11\x63\x6e\xae\x3d\x8e\x8a\x6c\xba\x75\xf0\xa0\x13\x0b\xac\x38\x52\x3e\xef\xb9\xa9\x14\xe0\x7e\x45\x91\xbd\x8d\x4d\x14\x25\x69\x4b\x61\xac\x2b\xfd\xd7\xf5\x5c\xd5\x7c\xbb\x6f\xc7\x49\x16\x02\x14\xea\xbe\xff\xa2\xca\xab\x5e\x54\xee\xbc\x7d\x6d\xcc\x65\x51\x6c\x68\xa4\x00\xce\xa8\x64\xd0\x99\x8a\x87\xd7\x0b\x2d\x66\x1c\x8e\xd7\x67\x78\x1f\xbe\xf9\x7c\xe0\xa0\x19\x09\x1c\x10\x2e\x32\x93\x16\xf0\x8d\x6b\xc0\x1b\xda\xfe\xa0\x4a\x66\x7a\x82\x9e\x5b\x81\x43\x9e\x17\x01\x57\xb5\xb2\xcb\x85\x9d\xb3\xc2\x93\x54\x13\x95\x16\xa0\x66\x34\x1c\x86\xe3\x7d\xbe\x93\x95\xd9\xe7\x40\x3a\x35\x85\x44\x28\x6e\x00\x84\x86\xc9\xfc\x4e\x05\x9f\x7f\x4c\x29\x4a\x3c\x0e\x29\x24\x11\x7b\x56\x6c\x24\x1b\x4d\x8b\x21\x2f\x18\x2c\xd3\x24\x33\xaf\x18\x78\xec\x28\x0c\xd0\xb8\x20\xe9\xed\xf2\x43\xc8\xc7\xdc\x40\xa4\x21\x9c\x72\x4e\xee\x3d\xcc\xf2\xc5\x02\x07\x2b\x5a\xf4\xe0\x09\xf1\x75\x6d\xa1\x1c\x3d\xf0\x7c\x7b\x64\xc2\x38\x37\x61\x2c\x16\x17\x75\xa6\x5f\xc3\x5e\xe2\x1b\xe7\x49\x8e\x4d\x9e\x86\x26\x0d\x86\xdc\x19\xe3\xda\x4a\x5d\xca\xf6\x7c\x83\xde\xec\x57\x0a\x2f\x8e\x04\xdf\x94\x73\x19\x7c\xd3\x74\x82\x65\xb9\x19\x0c\x3c\xe7\x16\x4e\xf9\x7f\x49\x2b\x92\xaf\x3b\x4a\x64\x10\x2c\x68\xaa\x3e\x7b\x5a\x95\x34\x6f\x57\x68\xc5\xe5\x53\x8b\xa9\x19\x90\xda\x03\x56\x32\xec\x0b\x27\xca\xf8\xa6\xa9\xbe\xdf\x4b\x92\xd7\xdd\xc1\xc7\x52\x0b\x8a\x9f\xaf\xce\x5e\x54\x6e\xc6\x2c\xb7\x36\x9a\xd2\xca\xe2\x40\x55\xe1\xfd\x6f\x69\x92\xf4\x56\xd7\x23\x4a\x46\x36\x0d\x8a\x54\xc4\xcf\xe1\x37\x30\x4b\x27\xdf\x68\x62\xd2\x71\x98\x72\x26\x06\x7e\x14\x34\xbd\x91\xb6\x3c\xa7\x1a\xd7\xff\x1d\x9d\x0c\x00\x30\xff\x48\x05\xa6\x59\x1e\x8e\x8a\xa8\xc8\xa6\x3c\x5b\xe6\xed\x1d\xa1\xc9\x9c\x3f\x26\x76\x0e\xcd\xa1\x43\xed\x9e\x8d\x42\xbb\x5c\x11\x7e\xdb\x52\xc2\x6f\x5b\x4a\xf4\x7e\x69\x3c\x42\x0e\x8d\x15\xb5\xe8\x51\x45\x5d\x4b\x8e\x96\xc5\x24\x35\xab\x4c\xfe\x8d\x47\x78\x17\x47\x0b\xca\x74\xd7\x14\x11\xc2\x05\x05\x75\x93\xdc\x04\x75\x2d\x09\xf3\x3c\x2d\x37\x66\x74\xc2\x79\xe7\xe8\x9d\xca\xbd\x8b\xf3\xf3\x92\x82\x6d\x6e\x4d\x54\x33\xed\x25\x55\xa5\x18\x85\x7d\x6b\x32\xee\x15\x64\x6c\x4f\x47\x81\x88\xde\x52\x05\xb1\xcc\x06\x45\x1a\xe6\xa1\xcd\x1e\xa3\xf5\x82\x88\xe4\x0e\x0d\x8a\x96\xca\x66\xa4\x5b\x47\xf9\x2e\x53\x6b\xf4\x9d\xb0\x36\xa7\x90\xa5\x85\x17\x7b\x07\xae\x20\x2c\xcc\x05\x45\xf3\xcc\xbe\x2e\x0a\xbd\x97\x54\xab\xd2\x36\x65\x6f\xd9\x72\x50\xc8\x81\x8d\xc1\xdc\x06\x5a\x81\x4a\x0a\x3b\xba\x9d\xfc\x92\x26\xb4\x68\xad\xd5\xa5\x56\x0e\x13\xda\xb6\xf0\x54\xeb\xcc\x41\x89\x61\x11\x42\x4a\xdf\x29\x6a\xfb\x03\x3b\x5d\x3e\x92\x93\x2a\xd9\x89\x49\x91\x8d\x55\x41\xae\xd4\x76\xe3\x6c\x3b\x88\x4c\x96\xc9\xa1\x22\xa4\xa3\xca\xce\xd4\x89\x82\x8e\x1e\x98\x6b\x67\x2b\x61\x96\xb5\x54\xe3\xdb\x49\x25\x2c\x73\xb2\x96\xeb\x99\x3d\xd2\xb6\x26\xcd\x87\x08\x6d\xf1\xbd\x57\x95\x7c\x19\x25\x66\x5c\x63\xfa\x6b\x8f\x57\x90\x5b\x9e\xa9\xf7\xde\x44\x69\xaa\x7f\x4f\xe3\xfd\xdf\xc6\x00\x30\x59\x36\x25\x73\x1d\xe2\xda\xdb\xa6\xb7\x3b\x8a\x5a\x75\x53\x29\xa6\xef\x46\x7f\x8a\xe8\x6f\x53\x3e\x40\x29\x73\xcb\x99\x01\xd8\x1b\x66\xe3\x06\x0e\x51\xe9\x9d\xad\x50\x75\xff\xe2\x4b\x1e\x1b\xa7\x29\xb7\x1b\x52\xdb\x83\x34\xcc\x22\xf0\xdb\x68\xfa\x15\x96\x8b\x9e\xf8\x02\xeb\xef\x29\x14\xe6\x28\x49\x59\x3e\xb5\xce\x54\x7e\xed\x73\x9d\x87\xa5\x38\x59\xe1\xaa\x2a\x83\xeb\xb4\x26\xdc\x05\x05\xd6\xe9\x15\x51\x14\x66\x43\x98\x21\xc9\x77\xd2\x38\x4a\xc2\xd3\xf7\x12\xf6\xed\x22\xa0\x73\x2d\x47\xf8\xb1\x51\x21\x4f\x70\xc8\xde\x7c\xb5\xfc\xd2\x08\x71\x0c\xf0\x46\x1b\x4a\xfc\x6d\xa3\x49\x95\x34\x8b\x92\x31\xbb\xda\x48\xd3\xc1\xea\xf3\xb5\xa6\xea\x4b\xe2\x2c\x89\xc2\x7e\xf9\x28\xd3\x9f\xef\x58\x79\xb4\xe8\x9f\x6a\x4c\xd9\x9f\x76\x3c\xbc\x2f\xb6\x45\x9e\x9a\x08\xea\xbc\xbe\xb2\xf3\x43\x5a\x54\x7c\xed\xfa\x11\x7c\x3d\x73\xfa\x73\xeb\x99\x34\xe2\x5a\x9f\x18\x8b\xf1\x96\x82\x78\xbc\x9a\x64\x76\x3c\x9c\x2a\x17\x11\x00\x9a\x60\xd5\x10\xfe\x71\x7a\x52\xee\x2a\x72\x67\x36\x39\x6b\x66\x20\x5b\x57\x81\x60\x5e\x76\x39\xbf\xcf\x23\x61\x33\x19\x71\x5e\xe4\xb6\x3f\xa5\xbe\x7b\x57\x57\xf1\xee\x5f\x57\xd2\xb7\xa7\x75\xc1\x33\x4d\x62\x0b\x6e\x02\xd8\x36\x66\x27\xe7\x1b\x5d\x34\xb0\x59\x6e\xd3\x78\xaf\xef\x88\x79\x47\x77\xb5\x6e\x60\x6f\x48\x7a\xc3\x9f\xb4\xa7\x15\x35\xfd\x6e\xd4\x24\xf1\xe5\x17\x3a\x0a\x37\x7a\x57\x51\x40\x43\x0f\xd2\xa6\xab\x33\xba\x29\xe4\x7d\x18\x08\xc7\x0b\xeb\xbc\xd5\xbd\x14\x6c\xe0\xdf\xef\x6b\x78\xce\xb6\x7a\xcf\xc5\x24\xcb\xc2\x68\xca\xe3\x73\xae\xaa\x06\xd9\x73\xd8\xfc\xac\x66\xda\x94\xdc\x0a\x86\x26\x2e\x4d\xb4\xab\x87\xb7\xba\x1a\x20\xa9\x57\x08\x13\xa5\xfb\x56\x17\x15\x53\xd8\x38\x83\xb6\xce\xf3\x95\xf5\x8f\xb8\x67\x6f\xd7\xa3\x78\x3d\x28\x62\xb1\x74\x44\x01\x78\x82\x0b\x7e\x59\x51\xda\x31\xcd\xaf\xa0\xb0\x1f\xd3\x44\x7b\xd9\x10\xcb\x41\x08\x1e\x3e\x54\x34\x02\x9f\x28\x80\xfc\xa6\x72\xb1\xa3\xa4\x20\xa1\x5a\xcf\x44\xfc\x4d\xb5\xf9\xbf\xd9\x40\x44\x99\x8d\x4d\x1c\x66\x43\x1a\x58\x9c\xc6\x6f\x77\x7c\xb5\xe4\xfd\x89\x0a\x69\xbf\xda\x08\xde\x37\xd1\xc0\x30\x92\x09\xab\x93\xb9\x60\xf8\xa6\x12\x65\x85\x71\x38\xe3\xf3\x9f\x40\x30\xc3\x2f\xbb\x44\x8b\x0c\xce\xf9\x57\xe9\x24\xe0\xbf\xe9\x28\x72\x1d\xed\x13\x2d\x86\xe5\x63\x4b\x06\xdf\x2d\x48\xb5\x3a\x35\x5b\x60\x12\x25\x69\x19\x46\xd0\x34\x48\x4f\x51\xcb\x09\xe0\x6e\x36\xd1\x56\x47\x76\x31\x17\x22\x87\x26\xc8\x47\x53\xbb\xfc\x52\x18\xb9\xe6\x3a\x14\x5b\x2f\xc1\x65\xe0\x1b\x05\xc9\x8f\xc2\x51\x48\x8a\x88\xae\xa6\x72\x46\xc9\x44\x5f\xc1\x20\x62\x46\x3e\xea\x54\x14\x8e\xc6\x91\xcd\xc3\x24\xc6\x9a\xc2\xee\x7b\xa3\xe3\xbb\xcb\x36\x74\x24\x72\xb9\xf6\x98\x47\x0f\x08\xa4\x0c\x43\xe7\x0c\x9c\x93\x55\xac\x4b\x5a\x42\x20\x7f\x60\xd2\x7e\x64\xb3\x8c\x4a\xcc\xe2\x48\x79\x0b\x0e\x5d\x06\x81\x1c\xb9\xaa\x57\xe9\x16\x1f\x3d\x50\x55\x9d\xe5\x9b\x86\x1a\xd4\x42\x3b\x0d\x97\xb9\xf3\xa8\x89\xf9\x7c\x07\x58\xf4\xe8\x81\xd9\xf6\xdc\xdc\x7f\x44\x23\xe1\x54\x5c\x5d\xcb\xdc\x19\xaa\xdf\xc3\x2d\xbd\x46\x8b\x0a\xe6\x62\x37\xf0\x06\x88\x9f\x76\x03\xe5\x8b\x4c\xdc\x35\x72\x1c\x1c\x52\xb0\x74\x42\x2a\xa5\x7c\x38\xcf\xef\x4c\x14\xaf\xf1\xf7\x3b\xca\x88\x9e\xc0\x0a\x84\xdf\xbf\x3e\xf1\xc4\x49\x9f\x60\x1d\x4b\x97\x53\xb9\xd8\x01\x5e\xdd\x80\xbc\x20\x32\xd6\x97\x58\x2e\x12\xe1\xc0\x16\x7c\x64\xec\xc4\xfb\x4a\xf8\x6b\x6a\xad\xdc\x38\xae\xab\x6b\x41\x3a\x9b\x19\x7d\xc1\xd9\x3a\x30\x6f\x89\xf6\xab\x22\x80\xbd\x4c\x90\x64\xa4\x35\xaf\xab\xa5\xd5\x0f\xb3\x71\x64\x56\xcb\x58\x10\x76\x1b\xfe\x31\xe7\x34\xf8\xa6\x56\x8a\x7d\xa9\x5c\x1a\x7d\x45\x77\x72\x4e\xf7\xa3\x9d\x53\x4e\x72\xdf\xbe\x6a\x14\xc4\x09\xb5\x70\x39\x88\x5d\xc0\x6f\xcd\x92\x2d\x83\x91\x72\xec\x65\x41\xab\xc5\xbd\x53\xa9\x68\xe1\x40\xfb\x95\x57\x9e\x28\x7f\x1d\xf5\xc1\x19\xdd\x0d\xfd\x29\x2d\x00\xce\xb2\x28\x34\x04\xfa\x8f\xb1\x54\x89\x62\x9c\x2d\xcf\xbd\x49\xeb\xa5\x79\x67\x38\xa7\xbc\x4a\xf1\xfe\xae\x0a\x44\x1e\x86\x38\x18\x3e\xfe\x3b\x58\xd1\x60\x13\xbb\x4e\x58\x03\xcc\xfe\x25\x8e\x38\x44\x7f\xa8\x5c\x0b\x42\xc3\xdd\xfa\xa5\x2f\x39\x8d\x2f\x25\xde\x74\x83\x76\x10\xe6\xfb\x3b\x9d\xd6\x33\xcf\xb8\x6c\x84\x1c\x26\x69\x52\x0c\x86\x54\x7a\xe1\x82\xda\xc4\xa7\x15\x2f\x2a\x2a\xb3\xc7\xb5\xe4\x1b\xdc\x56\x94\x47\x77\xad\xf9\xd6\xcd\xc8\xc4\xc1\x30\x89\x60\xbb\x51\xb9\xbb\xa2\x04\x36\xaf\x28\x63\x35\xb4\x2b\x91\xcd\x39\x44\x44\x4b\x2e\x1f\x5d\x7c\xd3\x58\x7a\xb0\x41\x6a\x4d\x86\x24\x86\x80\x8a\x7d\x9a\xf2\x33\x46\x72\xfb\xa4\x60\x96\x9b\x9c\x0b\x94\x0e\x44\x70\xf4\xc0\xe7\x82\x08\x8e\x1e\x78\xbe\xbd\x58\xbc\x1a\x0a\x34\x8c\x61\x3e\xda\x8b\xae\x3b\xb1\x84\xb8\xcf\x99\xcf\x9c\x15\x3b\xb4\x7e\xc4\x77\x6a\x9f\x98\x5f\x98\x6f\xaf\x0c\x4d\x0e\xef\xd3\xb1\x30\xbd\xe4\x18\x99\x94\xf7\x6d\x7a\x60\xe5\x44\x32\x45\x68\x01\x7d\xab\xcd\x56\xad\x12\xf4\x52\xe9\x55\x8f\x51\xad\xa0\x35\x26\x79\x53\xb5\x2e\x36\x15\xa2\xa6\x17\x25\x49\x7f\x9f\xef\x0a\x39\xad\x79\xad\xfe\x3d\x0c\x80\x50\x1b\xd0\x6b\x39\x42\x6e\xa7\x9c\xb8\x49\x8b\x46\xb4\x47\x68\x4a\x59\xb8\x85\x56\x90\x88\xb8\x3c\xa5\x44\x09\x93\xdc\x66\xb9\x89\x73\x19\x6a\xee\xca\xc6\xcf\x49\x8b\xb6\xca\xb3\xa3\x2b\xcc\x27\xbc\xbd\x9b\xbd\x59\x63\x3f\x98\x3d\xd2\x7e\xe6\xe7\xfe\x5e\x36\x55\xae\x7d\x1c\x5a\xbb\xbb\x8a\xa1\xef\xba\x02\x82\x6c\x7a\x86\x7e\xfb\x95\x22\xcc\xc2\x1c\x2e\x1d\xfc\xaf\xb3\xea\xf1\x77\x51\x17\xb4\x38\x84\x9e\xa8\xee\x7c\x6d\x02\x16\x0e\xb4\x4d\x9e\x9b\x60\x09\x81\x4a\x73\x12\xbd\x02\x4b\xa7\x01\x97\xa6\x6c\x4d\x99\x58\xba\xd7\x26\x0f\x97\xed\x3e\x3a\x5f\x84\x15\x80\xa6\x15\x89\xcd\x63\x64\xf9\xb1\xf5\x67\x88\x57\x0f\xbf\x70\x5b\x25\xcf\xae\x57\xc0\x54\x38\x1e\x64\x0b\x90\x15\x87\x15\xfa\xad\xc9\x53\x15\xcf\x34\x25\xe5\x92\xfe\x34\xfd\x3d\x37\x20\x2b\xe8\x13\x2b\x7e\xf3\x0d\x48\xec\xa4\x4d\xd9\x31\xfd\x27\x11\x35\x09\x3a\x75\x84\xc7\xc9\xa3\x45\x90\x75\x45\x83\x27\x05\x75\x88\x72\xce\xa6\xee\x9a\xb9\xa0\xb2\xf0\x66\x64\xe3\x3e\xa5\x24\xe1\x33\x4b\x4b\x96\xf7\x01\x7f\x8d\x5e\x9c\x3d\x7a\x15\x42\x24\x63\x9b\x96\xdb\x74\xf0\x90\x06\xb9\x4c\x7c\x02\x8c\x49\x97\x45\x47\x8c\x66\x0e\xe5\xe8\x63\x3a\x9b\xf4\x1e\x00\x63\x42\xa5\xed\x81\xb2\x9f\x21\x1b\x06\xb0\x2a\xea\xae\x78\x19\x86\xda\x01\xa4\xf3\x0e\xa1\x01\x81\xe0\xbc\x80\xd1\xe7\x4f\x34\xf1\xfe\xb8\x9e\x03\x6e\x45\x7b\xde\x69\xb7\xfa\xdf\xc5\x61\x86\x91\xff\x63\x35\x54\x44\x36\x1c\x3a\xc8\x8e\xc8\xe6\xfb\x3e\x87\xba\x0c\x7d\xe9\x70\x86\xf1\x62\x44\xdc\x1a\x4e\x01\xe6\x96\x2a\x3c\xdf\x6a\x92\xd2\x36\xfd\x57\x8b\xcc\x8b\x88\x4b\xc7\xbe\x87\xf9\xd6\x09\x4a\x7e\xbe\x9d\x9a\x68\x8c\x20\x01\x07\xcf\x19\xc5\x77\xfe\x31\x56\x86\xa0\xe5\x1e\xf1\xd0\x28\xd7\x7b\x81\xff\xdb\x52\x5d\x24\x75\x7c\xf0\xa1\x43\xed\x91\xc9\x32\xab\x7a\xc1\x10\x21\xf0\x75\xcd\x47\x3f\x78\xb0\xfd\xaa\x5d\xb1\x51\xca\xa9\x7b\x6e\xe9\x56\x2b\x4a\x57\x34\xf3\xa4\x48\xc3\x2c\xcf\xa8\x6b\x0a\x7e\x1c\x58\x25\x61\x30\x6e\xe8\xe5\xfd\x0e\x6d\x53\xa9\x37\x3c\xa6\xb1\x74\xfd\x22\x20\x55\x28\x49\x95\x83\xfc\x87\x4f\x37\x2d\xc4\xfd\xd9\x44\x25\x65\x8f\x63\x4d\x72\x67\x3a\x6d\x4b\x64\xaa\x6e\xc2\x3a\xf0\x0d\x42\x70\x07\x50\x75\xed\x6b\xe7\xab\xba\x8a\xf5\x83\xb0\xad\x20\xfd\xf2\x8b\x1e\xb5\x72\x5c\x05\x96\x79\x91\x96\xcb\x93\x74\x09\x99\xb2\x80\xce\x32\x21\xdb\x52\xd9\x91\xeb\x6a\xa9\xfe\x37\x30\x4a\xfc\x1f\x4d\x46\x74\x6c\x6d\x5a\x46\x07\x2d\x0f\xc0\x00\x1d\x30\x5f\x37\xe4\x2d\x5f\x6e\x67\xb9\x1d\x73\xb9\xc2\x75\x8b\x6b\xe1\x1d\x41\xd8\x04\x26\x15\xd5\x0f\x56\x76\xc0\x74\x79\x99\x07\x4e\x16\x91\xe4\xb3\x4d\xa7\x68\x73\x63\x32\xe1\xd3\x00\x1f\xfd\x67\x95\xb6\x48\x8f\x61\x24\xb2\xbc\x22\x0e\x73\xd4\x16\x9d\xe2\x45\xf9\xc7\xa2\xd3\xa1\xeb\xff\xc5\x60\x98\xef\x2b\x0f\x2c\xcc\xcf\xe5\x49\x05\x22\xf4\x82\x94\xaf\xb9\xb4\x81\xa4\xe6\x39\xca\x59\xc3\xb9\x84\x03\x2a\xe7\xb4\xaf\x82\x5d\xd6\x99\x7c\x0f\x30\x1a\x86\xa9\xdd\x47\x03\xe3\x48\xd3\xbf\x3c\x2b\x92\x00\x64\x14\x61\xe0\x1e\xed\xea\x06\xac\x89\x4a\xca\x63\x65\x02\x1d\xfa\x0d\x98\x4e\x19\x48\x1f\x74\x6e\xa8\x6c\x51\xdf\xf6\x4c\x6e\xb3\x19\xfa\x55\x6c\xd9\x9b\x1d\x95\xac\x44\x65\x01\x70\x22\x76\x62\xf9\x3f\x26\x8a\xc9\x6d\xd3\xf9\xf5\x71\x32\x0a\x63\x83\x04\x8e\x50\xec\xb6\x1c\x41\xd2\x49\x1a\x0f\xd8\xdc\x8f\x95\xdf\xc9\xf4\x03\x2d\xa5\x2b\xc1\x62\xbe\x52\xb5\x6f\xb0\x22\x83\x70\x51\x80\x3b\xe8\x8e\x84\x1a\x0b\x5f\xeb\x8e\x6a\x88\x5e\x0a\x26\xef\xdb\x15\x1e\x9c\x96\x63\xa5\x81\x50\x08\x46\xfe\x7f\xa1\xd1\x46\xec\x74\xaf\xe6\xf4\x12\x35\x50\x3e\x2c\x46\x3d\xfe\x7d\x78\xd2\x5b\xca\xab\xde\x6a\xcc\x1b\x24\x63\xcb\x59\xa2\x59\x47\x12\xa0\x90\xb1\x8c\x82\xe3\x26\x2f\xe5\x0d\x2e\x52\x59\xa8\xd2\x1a\xaf\xba\xcf\x3e\xc5\x54\xf0\x4d\x47\x71\x41\xa2\x44\xeb\x24\xc3\x74\x9f\xbd\x4a\xb1\x58\x0b\x11\x24\x04\xa5\x52\x0d\xa5\x70\x59\x02\x13\x25\x2c\x60\x22\x96\x9f\x92\x7c\x16\x9a\x52\xf9\xba\x8a\xa7\x5c\xca\x1e\xf2\x05\xd6\xeb\x14\x8f\xba\xbc\x76\x69\x02\x91\x88\x00\x47\x80\x48\x79\x95\xdb\x8a\xff\x5d\x0b\x88\xdc\x99\x68\x8e\x1b\x9c\x18\xf0\x5e\xee\x91\x61\x73\x7e\x54\xe9\x07\xa0\x12\x75\xba\xa3\xda\x24\x4f\x6b\x6c\x93\xe6\xc2\x0d\x6c\x58\xbe\xfe\x8c\x4a\xdd\xc1\xd8\xe3\xdb\xdf\xc4\x96\xe2\xff\x80\x19\x87\xbf\x79\x11\xc3\xce\xd4\x3a\xce\x86\x45\xa6\xbf\x3a\x5d\x69\xee\x25\x27\x4c\xb3\xa5\x20\xe1\x0a\xaf\x0b\x49\x95\x87\xd7\x76\x56\x92\x8f\xbc\x48\xb4\x02\x36\xcb\x2c\xda\x05\x1c\x46\xa5\x7c\x4e\x77\xb0\x1d\x3a\xe4\x1a\x3f\x9f\x54\x9b\x9a\x24\xb3\x08\xee\xef\xf8\x43\x76\x53\xfa\x95\xaf\x5d\x78\x48\x20\x62\xeb\x0b\x60\xc8\x56\x4c\x11\xc3\x06\x5f\x77\x1b\xea\x27\xc3\xd5\x5e\x1a\x22\x1b\x80\x80\x13\x8c\x14\x7c\xad\xf2\xb9\xd0\x31\xde\x57\x4d\xc8\x1d\x9c\xf5\x7c\xe9\x8e\xc8\x85\xf9\xc7\x2a\xcc\xbb\x88\xbd\x3f\xe0\xa9\x07\x4e\x01\xc7\x95\xa2\xcc\x9d\x75\xd9\x3d\xbf\xe5\xbf\x38\xf7\x7c\x4b\x89\x2c\xc1\x23\xe1\xeb\xa6\x58\xb1\x8c\x7b\x78\x2f\x37\x9d\xab\xce\x73\xb6\x59\x38\x88\xf7\x2a\x89\x7e\xb0\x71\x62\x0a\x5a\x6b\x2a\x1a\xe7\x0c\x37\x4c\xcb\x3c\xb9\x02\x3a\x87\x87\xb5\xf1\x24\xca\x6c\xe2\x3e\xfa\x45\x19\xc6\x41\x54\xf4\xed\x83\x2d\x47\x74\x72\x8d\x72\x1c\x92\xad\xa6\x1f\x42\x0a\xba\xa2\x25\x7e\x97\x7e\x48\x6a\x40\x9a\x84\xf0\x1c\x59\x37\x54\x65\xaf\xa0\x6c\x57\x51\xe6\x11\x50\xae\xf7\x90\xff\x3f\xb8\xce\x02\x8a\xf4\x32\x06\xa3\x24\x89\x19\x13\x80\x02\xc3\x1f\xd3\x20\x28\x21\x34\x39\x0b\x2f\xbb\x5d\xd1\x37\x29\x5c\x44\xd1\x31\xf7\x5b\xfe\x74\xcd\xcd\x78\x96\x05\xeb\x06\x43\x30\xa5\x20\x64\xdf\xa4\xc3\x03\x6e\xc6\xd7\x26\xea\xa0\x3b\xa7\xea\xf3\x63\x1b\x2c\xb5\x3c\xb3\xc0\xee\x35\x65\x42\x76\x37\xf0\x1d\x1f\x6e\x67\x36\x5d\x0e\x03\x86\x48\x61\x33\x73\xf1\x48\xdc\x07\xdf\x32\x73\xab\xa6\x27\x08\xa9\x6f\xf0\xe9\x15\x4c\x2f\x87\x25\xbc\xa9\xc9\xa3\x37\x1b\xa1\x73\x7d\x03\x43\x21\x98\x05\x8f\xfd\x7d\xb3\xe3\xe1\xdb\xc0\x90\x8b\xe3\xe6\xf3\x78\xb1\x1d\x44\xe1\x20\x2c\x1d\x7c\x7a\x76\x21\x52\x56\x4b\xaa\x09\xd4\x71\xb8\xdd\x4b\xad\x64\x21\xb8\x83\x0d\x9f\x91\x76\xb6\x06\x2e\xd5\x7e\x91\x7c\xbe\xf3\xdd\xc4\x22\x6d\xa3\xbe\x4d\x39\xe7\x84\x5d\x7c\x5b\x25\xe3\x6e\xab\xd7\xc8\xf2\xd4\x64\xbd\xa4\x48\x39\x9b\x22\xe4\xbf\x2d\xc7\xc3\x70\xa6\x49\x4e\x25\x33\xcb\xe5\xa1\x35\xa3\x21\x26\x5f\xc3\xbe\x00\x85\x17\x3a\x87\x71\xca\xee\xea\x7a\x3b\xb3\xa9\x71\x28\x5f\x73\x2e\x25\x47\x58\x5c\xc2\x71\xd4\xf7\x0e\xd5\x76\x0c\x63\x24\x28\x53\x6f\x6a\xf2\x60\xf8\x20\x1e\x02\x99\xc9\xef\xe2\x9c\x85\xbd\xbf\x3f\xf1\xfe\xc9\x04\xa2\xaf\x00\x01\x7d\xa1\xab\xd4\xa4\xb7\x27\x8a\xe7\x8b\x35\xdf\x50\x56\x7e\xa8\xeb\xcd\xd0\x9d\x49\x05\xd0\x59\xbe\x04\xfc\xb9\x6d\xdf\xf3\xbf\xff\x89\xae\xea\xca\x4a\xa2\xe5\xa4\xe5\xcd\x06\xbf\xb9\x34\xc8\x28\x5d\x92\xa1\xed\x4f\x7b\x19\x76\xd6\x23\xc6\x83\xee\x5e\xf3\xe0\xdb\xeb\xaa\x96\x32\xdd\x7d\xcc\x57\xbe\x4c\x1c\x58\xab\xe9\xe4\x7f\xa2\xa8\x31\x7e\xe2\xcc\xe7\x90\xe6\x8c\x42\xe6\xed\xbb\x0a\x03\xfd\x01\x1e\x8c\xdd\x84\x9a\x39\x90\xf2\xa9\x1d\x00\x7a\xc3\xf2\x03\xb4\x9e\x44\x8a\xc0\x3b\x28\x2b\x69\x69\x37\xf6\x96\x43\x8d\x6d\x7f\x83\x33\xb4\x88\xf3\x70\x02\x23\xba\xff\x5f\x95\x7a\x1b\x13\xc7\xc3\x9f\xfd\x09\x46\x80\x6f\xaa\x0c\x01\x3b\xd9\x59\x0e\x1d\x3a\xdc\x1e\xa4\x26\x2f\xc2\x3c\x29\x32\xae\xb3\x8b\x13\xe5\x01\x06\xe7\x55\x70\x36\x0c\x7b\x3d\x93\xf2\x89\x2b\x24\x31\xb4\x1e\x84\x3e\xa6\xc2\xc4\x11\x4b\xfd\x08\x8f\x50\x4d\x1c\x75\x54\x61\xec\xbd\x8e\xe6\xcd\x7a\xb5\x48\x43\xa6\x13\xc7\x29\x84\x53\x90\xaf\x15\xf4\x23\xcc\xb3\xa7\xbd\xfa\xdd\x87\x13\xad\x9f\xae\xdb\xcd\xee\x4f\x88\x32\x4a\x5a\x2e\x15\x23\xc4\x15\x0c\x1e\x4e\x80\x4d\x55\xc2\xbe\xa3\x34\xef\x77\x01\xed\x21\xda\x60\xb4\xca\x19\x64\xd1\x51\x50\x83\xcf\xe8\xa0\xc3\x32\xbf\xd7\x51\x35\xc6\xcb\x14\x58\x09\xad\x32\xe5\xbf\x44\x5b\x4c\x25\x37\xa7\x08\x86\x03\x07\x12\x50\x22\x09\xc5\xb4\x6e\xef\xc7\xa8\xf3\xe0\xdc\xbe\x8a\x78\x1c\x56\x78\xbf\xab\xe8\x8e\x92\xe5\x32\x30\xf2\x12\x58\x37\xf0\x98\xa0\x0b\x6c\x75\x75\x8b\x9f\x2f\xb6\xdf\xc5\xf0\xe1\x7c\xbf\xe0\xda\x07\x32\xfb\x95\x82\x0a\xf3\x2e\x67\x84\xd1\x7e\x53\x81\xf4\x89\xf3\x84\xa3\xd9\x8f\x55\xfc\x12\xe5\x66\x7f\x39\x3f\x4c\xa1\x3d\xf1\x89\x93\xcb\x8a\xdf\x8f\xd1\xcb\xd2\x12\x8e\xb7\x95\x4e\x00\x7a\x26\xf9\x2f\x25\x33\x00\xa6\xcf\xed\x8e\x82\x92\x5f\x57\xd2\x58\x14\x77\x84\x99\x80\x53\xa5\x7f\xdb\xfb\xad\x1b\x4d\x42\x0a\x26\x08\x92\x22\x06\xff\x1e\x36\xf8\x50\xd3\x36\x83\xa2\x44\x42\x36\x85\x5b\x37\x91\x49\x5d\xa3\xb1\xf3\xb1\x7d\xa7\xf2\x45\xfd\xc7\x45\xdc\x07\x72\xd2\xe1\x2a\x7f\x63\xa2\xd8\xbe\x76\x51\x5f\x19\x0a\x90\xbb\xbb\xde\x3a\x40\xe4\x65\xba\xc2\x8e\x5e\xae\x37\xb1\x7c\xbe\x7c\x83\xba\x95\xfc\x8d\xa7\x0f\x0e\x22\x6b\x62\xa2\xb9\x47\x36\x88\x0d\x07\xdf\x60\x89\x70\x99\x09\xc3\x2a\x35\x27\x05\x8c\xff\x11\x82\x34\xbe\x51\x50\xc6\x30\xce\x8a\xd4\xa6\xd9\x8c\xae\x25\xd0\x07\x5d\x91\xe1\xa8\xb4\xbf\x5e\xd2\x4c\x82\xdb\x1d\x55\x26\x6e\xe2\x4a\x6e\xe7\xd6\x04\x43\x45\x7f\x7b\x15\x1f\xe7\x1b\xcf\xee\x44\x69\xc3\x0a\xb6\x94\x31\xfd\xb2\xd6\x1b\xda\xce\x02\x93\xe5\x91\x8d\x42\x96\x2c\xc2\x77\x5e\x57\x4d\x71\x75\xc1\x8d\x83\x07\x85\xf1\x10\x9e\x17\x6c\xed\xe5\x8e\x12\xbe\x7b\x93\x02\x4b\x11\x3d\x7b\x5c\x13\xd6\xd2\x3e\x7a\xa4\x0c\x24\xdc\x0e\x3c\x2a\x5d\x1a\x38\xec\x61\x0d\xde\x55\x8d\x5c\x68\x1d\x86\xe5\x9f\x5a\x2b\x63\x46\xfc\xfd\x19\x58\x32\x1c\x56\x9b\x5a\xd0\xfb\x56\x47\x31\x18\xdd\x9b\x54\x88\x2a\x3a\x5e\xe8\xe0\x81\xae\x6a\xed\x67\xfd\x54\xa9\xdb\x91\xf9\xe4\xaf\xae\x1d\x6c\x5f\x9e\x6d\x9b\x34\xb5\x99\xc3\x18\x2b\xde\xd8\xd9\x06\xde\xd8\xd7\x6c\x9a\xbc\xd6\xf2\xdc\x2f\xc7\x54\xd0\x75\x4c\xe9\x8c\xad\x98\x74\xb4\xc7\x7b\x5e\xac\xd6\x27\x55\x7f\x7a\x5b\x8d\x77\xc2\x89\xb0\x46\xc6\x92\xaf\x3b\xaa\xf4\xa9\xc9\xe9\x7e\xe1\xe0\x7c\xab\xd6\x82\xc2\x37\xb5\xc4\xed\xd1\x03\xed\xb4\x5c\x74\xf2\x76\x40\x39\x00\x12\xc4\xd7\x0d\x1d\x3a\x66\x91\xb2\xeb\xaf\xa9\x0e\x0e\xbc\x27\x5f\x37\xf1\x3b\x07\xc9\x68\x9c\x26\xa3\x90\xb3\xca\x88\xaf\x8f\x2b\x18\xf1\x71\x75\xa2\xda\xd7\xc6\xa1\x00\xf9\xe0\xce\x7d\x38\x51\x3c\x75\x1f\x56\xa0\xc9\x36\xee\x67\x33\x4a\x0a\x68\x13\x07\x8f\x2b\x78\x2d\x08\x45\xcb\x31\xc5\xad\xf2\x36\x2d\x0e\xb8\xd3\x9a\xcf\xf7\xf5\x84\x69\x53\x98\x6d\x81\x0c\xa1\x30\x2f\x28\x9e\x46\x91\x88\xe5\xbb\xc9\x53\x8a\xf6\x26\x37\x59\x9e\x26\xe3\xa1\x6d\xa9\x43\x8f\xdb\x6d\xf9\x66\x27\xd5\xd6\x4b\xb3\x47\xda\xb3\x47\x5a\x4a\x2c\xee\xac\x52\xf3\x3b\xab\x7b\xe2\xcd\x80\xa5\xf9\x45\xc4\x45\x8b\xbb\x34\x28\x40\x67\xc3\x64\x25\x4d\x92\x11\xcc\x05\x1c\x60\xc0\xad\xf9\xba\x81\xeb\xe3\x30\x54\xc7\x5c\xf9\xd4\x09\x0c\x7a\xb1\xc1\x26\x87\x9f\x5a\xb0\x65\x29\xc9\x8e\xf2\x5e\xe6\x66\xc7\x17\x98\x23\xb3\x4a\x72\x8e\x2e\x73\xf9\xb1\xd6\xf4\xfe\x58\x55\xd4\x72\x9b\xa6\x61\x9e\xc0\x51\x72\x0d\x0b\x3c\x19\x82\xc8\x73\x1a\xd6\xd4\x00\x18\xb8\x13\x1c\x19\x00\x54\x17\x58\x3e\x17\x0b\x09\x29\xc0\x4b\x2a\x0d\x62\x17\x17\x6d\x90\x3f\x58\x9e\x34\x38\x0e\x4e\x93\x21\x47\x38\xfe\x67\x88\xc0\x91\x6e\x41\x76\x12\xc7\xce\xfe\x6e\x69\xa5\xe0\x57\xec\x59\x23\x27\x05\x45\xd8\x5d\x5d\xbf\xf0\xb6\x54\x4a\xe9\xfe\x44\x05\x7f\x9c\x4d\xc4\xef\x31\xed\x1b\x32\xbc\x9f\x29\x2e\xd7\x20\xb2\xcb\x36\x32\x31\x0f\xac\xd2\x49\x9e\x75\x72\xc8\x3b\x83\x48\xca\x4d\x85\x59\x12\xd3\xe9\x2b\x3d\x4c\xe5\x0b\xa1\xfa\xba\x7b\xcd\xf7\x6e\xec\xef\x3e\xa6\x46\xfb\x35\x17\x24\x73\x7d\xa9\xa3\x6b\x4d\x95\xdc\x61\x0f\x20\x12\x96\xd4\xc5\xc0\x8a\xbe\xae\xd6\x49\x2b\x62\xa9\xc4\x4b\x87\x22\x77\x19\x0a\xc0\xde\x57\x1b\x83\xd5\x38\x0c\x84\x7b\xf1\xb0\x88\xb8\x74\x14\x04\xab\x7e\xba\xbd\xf2\x8a\xe0\xa8\x1c\xe2\x0b\xeb\x02\x08\x24\xbe\x76\x61\x64\x64\x8a\xb8\xb4\x78\x84\xe1\x47\x40\xf7\x2e\x26\x05\x3e\xe4\xc9\x89\x5a\x89\x33\x5d\xdf\x0c\xf5\xb6\xd2\xc5\xe4\x33\x44\x78\x9b\x1f\x53\x0a\x22\x63\x6b\xf2\x4c\x85\x18\x37\x3a\xbe\x11\xf7\x86\x92\x3f\xeb\x87\xa9\x0d\xf2\x24\x5d\x9d\x6a\x39\x6e\x18\xb0\x5a\x54\x10\x5a\x52\x7b\xf7\x16\x26\x8c\xfb\xb6\xb4\x7a\x36\xce\xf7\xab\xe6\x80\x6b\x1d\x45\xea\xfa\x31\x16\x2c\xce\x8a\x75\xd5\x2e\x7b\x6b\xe2\xf9\x34\xae\x75\x7c\xb3\xe4\x05\x1d\x42\xa1\x4c\x2a\x8c\xd1\xe5\x19\x8e\xfc\xce\x4f\x9a\x79\xfa\xe2\x65\x8b\x1e\x4f\x57\x5b\x3d\x81\x01\xe5\x1b\xd7\xe2\x93\x5a\xf4\x82\x89\x5d\x71\x31\x98\x6f\xf1\x51\x6e\x5c\x5e\x8c\x92\x14\x4c\x16\xd2\x99\xa6\x65\x42\xd5\xa0\x8f\xe9\x0c\xcb\x3e\xff\x4b\xbd\x39\x29\xe2\xb1\x4d\x17\x93\xd4\x75\x81\x0a\x91\xa4\x6a\xaf\xfc\xb4\xc6\x15\x77\xf4\xc0\xf3\xc0\x43\xc5\xee\xd9\x81\x39\x43\xa7\x3b\x5f\x3b\x33\x34\x4e\xcd\x60\x64\x80\x59\x74\xc7\x3f\x62\x3b\xa1\x84\x6b\x70\xb6\x38\xcd\x35\xad\x31\xe2\xff\x3f\x63\x6f\x1a\x24\x49\x7a\x9e\x87\xcd\x54\x77\xcf\xb1\xbb\xb3\x3b\xd8\xc5\x82\x26\x2d\x5b\x05\x07\x44\xc8\x0a\x68\x43\x0e\x9a\x61\x9a\x7f\xaa\xdc\xdd\x20\x30\x1d\x44\xef\x44\xcf\x60\x16\x5a\xcb\x11\xf3\x55\xd6\x57\x55\xb9\x9d\x95\x59\xc8\xa3\x7b\x7a\x7f\xf1\x87\xc2\xa1\x70\xf0\x87\xc2\xb2\x65\x47\xc8\x21\xcb\x32\x45\x93\x11\x12\x2d\x1e\x12\x2f\x00\x55\x00\x48\x80\x24\xae\x5d\xec\x7d\xcf\x7d\xdf\xf7\xd9\xab\xc8\xf7\x79\xdf\xef\x7b\xb3\x2b\x97\xc1\x7f\x99\x33\x5d\x55\x99\xdf\xf1\x7e\xef\xf1\xbc\xcf\x43\x9e\x80\xab\xb9\x3b\xb3\x73\x86\xb6\x32\xca\x3c\xb3\x6d\x7f\x7c\x65\xd6\xcc\xf9\x52\xe1\xb3\x6d\xdf\x54\x00\x19\x65\x27\xe0\x86\xd3\x4b\x29\x1c\x4a\x39\xef\x81\x42\xd3\xe7\xc9\xc8\xbc\xdc\x50\x2b\x52\x9d\x49\x17\x54\x2a\xd4\xc6\x5d\xd4\x1b\x1d\xf1\x07\xb8\x3d\x84\x68\x5b\xd2\x10\x45\x1c\xa0\x2a\x4f\x90\x70\x3c\x23\xc8\xf1\x80\xe4\xdc\xdb\xf6\x09\x87\xa7\xf0\xbc\xa2\xbb\xf1\xac\x2b\x3f\x42\xd6\xeb\x65\xdf\x6e\x2e\xfb\x5b\xed\xf5\x0a\xb1\xe3\xd0\xc4\xe8\x90\xc1\xce\xd8\x84\xe9\xc1\x5b\x40\x2a\x49\xca\x65\x1a\x23\x7d\x02\x3c\x8f\x48\x54\x7d\x73\xac\xbc\xa3\x6b\x5a\x6b\xaa\x31\xf1\x45\xe7\x1b\x54\xf1\x70\x12\xd6\xa5\x31\x17\x68\xba\xe2\xad\x07\x2f\x15\xac\xf0\x03\xd5\x3d\x76\x93\x1a\xc8\x37\x6f\xb6\x3c\xbe\x7d\x13\x46\x06\x07\xd7\xae\xb6\x37\x1d\x69\x52\xe4\x61\x6c\x99\xea\x14\x4f\x02\xd3\xc1\xc4\xa3\x44\xa2\x27\x79\xd8\xad\x7b\x76\xff\xf3\x07\x9a\xbd\xb0\x63\x53\x13\x45\x6a\xce\x5e\x83\x05\xe0\x1b\x85\xfb\x27\x7e\xef\x80\x71\x0a\x2b\xf3\x5e\x42\xcf\xcb\xe9\xb9\xfa\x2d\xf4\x7c\xc3\xb8\xcf\x89\x45\x18\xa0\x93\xca\x89\x3d\xe9\x1a\xa7\x4b\x17\x58\xe9\xcc\xfc\xc9\xd8\xf7\x6d\x3c\x81\x44\x84\x90\xb5\x56\xe2\xf8\x7d\x1e\x87\x51\x69\xd0\xfd\x24\x1d\xb5\xbe\x8d\x47\x69\xd2\xc1\x99\x06\xd8\x27\x43\xce\xf9\x66\xaa\xb0\x43\xe4\x04\x76\x38\x4a\x52\x26\x12\xe0\xbc\x39\xbd\xb1\xe4\xd0\x3d\x73\x53\x79\x34\x67\x51\xd8\xb5\x68\xaf\x90\x96\x50\x55\x00\x3e\x3f\xae\xe4\xec\x55\xf2\x66\xaa\x6a\xba\x6f\xb9\x59\xc4\x61\x9e\xcd\xa8\x1e\x9e\x07\xad\xed\x9f\x73\xfc\xa7\xf4\xe4\xd2\xc2\x23\x89\x90\xbc\x5c\x11\x4a\x7d\x92\xdd\x65\xbe\x51\x8a\xa2\xb1\x5d\xcf\xf6\x7a\xbf\xe6\xfa\x58\x09\x88\xb0\x7a\x29\xe3\xcd\x69\x1d\x0a\x5d\x2d\x99\x21\xcc\xc6\xa3\xb1\x9f\xf7\xa3\xd8\x24\x38\x59\x6e\xb0\x4b\xac\xe0\x94\xcb\x9c\xfe\x3c\x4d\x68\x4e\x14\xfe\x6f\x62\x33\x38\x66\x60\x07\x40\xba\x83\x48\x8c\x7f\x05\xa6\x1e\x36\x02\xec\x5f\x82\xb7\xa7\x81\x91\x3c\x85\xe2\x6f\x2c\xd2\x51\x92\xd9\x19\x5a\x38\xc8\xed\xbc\xa9\x94\xb7\x51\x5b\xe3\x12\x4c\x1d\x25\x49\x56\x74\x5e\xb2\x01\x40\xe6\xa2\x37\x52\x0e\x94\x08\x91\xf8\x90\xa3\x9f\xe4\xb9\x8d\x67\x3d\x66\xf6\x04\x2d\x4a\xe4\x6e\x38\x32\x74\x72\x51\x0e\xdf\x77\xc9\xb5\xb5\x77\x8a\x34\x94\x2c\x36\xbc\x69\xe8\xaf\xb2\x7e\xf6\x58\x65\xfa\xef\xaa\xac\x69\x56\x06\x5d\x2f\xff\x35\xaa\x71\x7e\x96\xbb\xc9\x3a\xd9\x3c\x81\x89\x7c\x5f\x41\x04\x36\xe9\x61\x61\x70\xe7\xd0\x44\x22\xdd\x25\xf4\x6d\xc8\x47\xa1\x07\x0c\x48\x63\xb4\xcd\x21\xc1\xf3\x9a\x16\x2b\xe1\x46\x15\xa4\xe8\x1e\xf0\xf4\x4b\xb1\xd5\x67\x90\x76\xb7\x15\x2a\xfc\x1e\xe5\x72\x9c\x9b\xe1\x24\x1c\x76\x93\xc9\xc2\x79\xcd\x6c\x27\x58\x2f\x8d\xc9\xd3\x8a\xcc\x22\x8c\x83\x70\x24\xdd\xf2\xc2\x41\x39\xe3\x55\x68\xff\x72\xac\x9b\x7f\x5b\x7e\x79\x98\x38\x1f\x08\x83\x8c\xa3\x65\x55\x67\xb3\x54\xc1\xb2\x50\xe8\xee\x5d\x03\xa1\x07\x72\x5e\x68\x79\x4f\x15\x00\x17\x2a\xe0\x2e\x1e\xe4\x85\x7a\x92\xc6\x96\xaf\xa7\xb0\x5b\x0b\x8b\xcd\xf5\x30\xe6\xa6\x53\xac\xca\x0f\x75\x99\x10\x64\xa6\x72\x26\x6f\x35\x4a\x4b\x4b\xcd\xac\xa0\x68\x57\xd6\x0e\x62\x49\x6c\x21\x6c\xe7\xbb\x3a\x0d\x74\xc1\x8b\xff\x9a\x34\xb7\xdc\x64\x20\x52\x5d\x0d\xa5\xe1\xf5\xa4\xf2\x49\x8f\x84\xac\xa2\x82\x62\x36\xc4\x5b\x9c\xb4\xb4\xc3\xc0\xfd\x89\x0a\x49\x87\x49\xd2\xdd\xd8\xa1\x48\x9a\x7f\x4b\xb1\xf8\xfd\x56\xa5\x53\x58\x69\xb5\xf1\xe2\x05\xde\xe3\x07\xbc\x78\xe0\x66\xde\x53\x4f\x94\x9a\xae\x49\x89\xb2\xc1\x11\x40\xef\xf3\x04\xd0\x1e\xf3\x99\x74\x22\xe6\xa0\xc9\x08\x51\x85\x15\xc0\x26\x0d\xb5\x91\x0b\x15\x4d\x08\x8f\x65\xbd\x37\x56\xa9\xd3\xd3\x6a\xa3\xe7\xe9\x06\x91\x69\x39\x16\xb2\x33\x4a\x52\x0d\x2e\x98\xea\x01\x74\x0d\x81\xca\x85\x1d\x86\x91\xcd\xe0\xa4\x0b\xf3\x82\x6f\xa2\x3e\x43\xaf\x82\x3a\x16\x0b\x58\x22\x8d\xce\x5c\xc0\x9a\xb7\x01\x7b\x01\x4d\x1e\xc8\x82\x83\xec\x70\xf3\x62\x4b\x91\x13\xea\x32\x6b\x90\x30\xa9\x38\x3e\x0a\xcd\x5e\xfc\x19\x7f\x3f\x22\x8b\x57\x15\x2a\x21\x32\xc1\x6a\x54\x80\xd1\xdc\x2b\x7c\xb5\xaa\xfd\x9c\x2b\xf3\x22\xd3\x52\x11\x8e\xd8\x5a\x76\x5d\x99\x5f\x69\x5a\x42\x37\x72\x77\x90\x0f\x4e\x2e\xaa\x0f\x5e\x9c\x0a\x5d\x3f\xff\xf9\x66\xc7\xf6\x92\x14\xce\x06\x92\x14\x37\x68\xa8\xf8\x7a\x2a\x8b\xf5\x85\x32\xb0\x48\xd2\x2d\x39\x3a\x8e\x41\x04\xc6\x20\xe1\x5f\x56\xa4\x6b\xae\xb1\x05\xeb\xe8\xa8\x32\xbf\x47\x55\x67\x13\x35\x06\x09\x44\xa3\x42\x5b\x2e\x0c\xe8\x4f\x2a\x24\x9a\x59\xb5\x5c\x72\x77\x0b\xc4\x75\x6f\xf1\x62\x87\x9f\xf8\xa0\xb5\xa5\x73\xe2\x8b\x5f\x6b\x1e\x3e\x0c\xb3\x20\x90\x4c\x3a\x57\x71\x06\x6c\x56\x73\xbb\x7b\x5d\x35\x34\xb7\xfd\x94\x71\x72\x9b\x34\xa4\x9b\x17\x5d\x04\x42\xc2\x97\x71\x48\xa8\xcf\x2d\xa9\x56\xbe\x76\x90\xb6\x5e\x98\xda\x1d\x64\xc8\xdd\xa1\xe5\xba\xe2\x58\x91\x03\x1f\x61\xb2\x72\x9d\xe6\x96\xd6\x12\x1f\x17\xec\x6e\xd7\x51\x3d\xbd\x64\x84\x69\x00\x07\xf7\x31\x4d\xa5\x73\xac\x26\x2d\xb9\xd8\xec\x16\xc3\x11\xc7\x94\xd8\x3a\xaf\x63\x9b\xf2\x4d\xcb\x67\xe4\xd7\xc2\x24\x22\xf1\xc3\xf2\x6f\x19\x68\xde\xf2\x65\xd0\xf7\x2a\xd1\x80\xdd\xc8\x76\xd1\x48\x73\x02\x9b\x5c\x0b\x87\xed\x52\x48\x31\xa5\xd1\x3b\x3b\x51\x3b\xf8\x75\x84\xd9\x7c\xf6\x60\xf7\xa1\xde\xb6\xbd\x4d\xa3\x28\xd0\xd2\x67\x75\xa7\xd8\xd0\xa6\x01\x34\x25\x3c\x8f\x21\xfc\x49\x21\x4d\xda\xab\xba\x73\x88\x5e\x65\x87\xaf\x4c\x72\xc1\x1a\xe1\xf4\xef\x69\x0e\x1c\x86\x86\x38\x83\xe2\x9a\xb5\x38\xc3\x22\xb2\x13\x12\x3f\x71\x6a\x72\x23\x0b\x03\xe9\xa8\x73\x4d\xdf\xcb\xcb\x35\xe7\x66\x6a\x83\x24\xed\xc2\xa6\xb2\x4a\x8b\x06\xca\x5e\xa7\x8f\x21\xb2\x79\xac\xed\x9b\x7f\x18\x5b\x03\x60\xcc\xed\xba\x06\xe6\x3c\x1c\x72\x3d\x5a\x68\x5d\x3d\xc2\xfd\x72\x1d\x05\x84\x3d\x32\x08\x3b\x21\xb3\xf2\x48\xb9\xbc\xa1\xe8\x24\x1d\xbc\x2b\x89\xfb\x8f\x95\x46\x1b\x3e\x36\xd7\x1e\x01\x77\xd9\x46\x54\xa1\x78\xde\x8f\x31\xaa\x8c\x29\xc7\x03\x23\x61\x78\xdf\x4b\x8e\x3e\xd3\x6c\xfb\x78\xfc\xc9\x09\x79\x97\x0a\xad\x27\x46\x7f\xe7\xc4\x77\x9c\x3e\xd9\x96\x83\x37\x2d\x3c\xf7\x89\xd0\x0a\xd3\xb4\x48\x2b\x92\x37\x4a\x51\x14\xae\x19\x91\x28\x41\xa4\x70\x42\x53\x83\x6a\xc6\xe7\x20\x89\x7b\x21\x32\x18\xa5\xc7\xec\x96\xfc\x8a\xef\xb3\x78\xda\x65\x5c\x86\x26\x5d\xb5\xb9\x15\x4d\x55\xf8\x1d\xdc\x9a\xc3\x37\xba\xbd\xc8\xc4\x94\xf6\x2d\xbf\x0b\xbb\x13\xc5\x00\xbe\xae\x61\x79\x79\x91\x6c\x4d\x48\x49\x57\x64\x46\xe0\xf5\xfd\x39\x7d\x8e\xaf\xdd\x8b\xe6\xc4\x1f\xcf\xfb\x5a\x7a\x29\x1a\x9e\x9f\x54\xa5\xe2\x93\x38\x41\x2a\x1e\x2d\x75\x47\x15\xc8\x07\x50\x59\x71\xd0\x7c\xef\x6a\xa3\xfd\x64\xe8\xb7\xdc\x90\x11\xfc\xf0\x68\xd1\xa5\xcc\xd7\x75\xbd\x98\x7d\x1b\x5b\x09\xf8\x50\x56\x39\xd9\x52\xe5\xff\x93\x95\xe6\xa2\x6e\x41\x99\x6e\xe0\x31\x25\x51\x46\x78\x4c\x41\x11\xea\x8a\x61\xcf\xf3\x73\x4b\x4f\x8f\xea\xef\xd1\x64\x4c\x49\x14\x06\x1b\xbb\x95\x10\xe5\x0d\xc0\x30\x1d\x42\xb2\x7c\x20\xd8\xe9\xf7\x14\x71\xd1\x69\x3a\x1f\xf1\xa0\x37\xe1\x3d\x33\x7e\x02\xf6\x41\x6a\x9a\x1e\x60\x76\x72\xec\x73\x2d\xd7\xa7\xa6\xd5\xc5\xce\x51\x92\x65\x20\x61\xc0\xf9\x03\x85\x63\xac\x1b\x66\x38\x17\x88\x74\x4d\xaf\xf7\x7a\x1a\xe6\xd2\x86\x8f\xd0\xeb\x75\xec\x39\xbe\x51\x75\x6c\x08\x0b\x64\xe5\x94\x1d\x9a\x77\xec\xad\xaa\x19\x7c\x5a\x23\x64\xdf\xb2\xd2\x74\xa4\xd7\xd4\x3d\x24\xd2\x1d\xa2\x31\x1d\x39\x2a\x5d\xe5\x80\x0a\x93\x97\x6f\x45\x9c\x96\xca\x5e\x58\x68\x9a\x7e\x6a\xd1\x36\x87\x9d\x75\x4f\x37\xea\x6f\x43\xf8\x04\x7f\xf6\xbd\x3a\x23\x17\x98\xb8\x0b\x20\x3b\x4c\x0e\xe0\x26\x7c\xad\x5a\xa8\x32\xe2\x06\x84\x3d\x86\x47\xfc\x88\x5e\x82\xaf\xa7\xe6\x87\xe0\xcd\x45\x9c\xad\x9b\x7e\x5f\x7a\xd3\x25\x95\xed\x51\xff\xef\xd2\x77\x48\x2b\x77\x4d\x51\xce\x1e\x09\xc2\xdc\xf7\x86\xb0\xfa\xa2\x92\x62\xd7\x44\x5e\xbd\xd4\x14\xdd\x22\xb2\x31\x13\x12\xc2\xf0\x9d\xd0\x0e\x2d\x7d\xd2\xd5\x2d\x0f\xcd\x8b\x05\x9e\xca\x72\x94\x66\xa3\x6b\xd2\x55\xca\x5f\x55\x08\x63\xb0\xb6\xe1\xf4\xf2\x90\xb7\x34\x4e\x9c\x57\x13\x30\x7b\xd8\xd3\x7c\x3d\xf6\x4c\xcb\x76\xcd\x44\x85\x13\xfa\x7a\xd1\x67\x53\x7d\x37\xfe\x79\x05\x7b\xb9\xdc\x52\x3c\x02\x97\xa7\x8a\x68\x34\xd8\xa3\x24\x37\x79\xd2\xf0\x40\x7e\x40\xa2\xf9\x5a\xb1\xe8\xf5\xa3\xb0\x6b\x29\x60\x61\x99\x4b\xda\x9a\x22\x79\xf9\xb4\xe2\xf5\x83\x00\x6c\xa6\x54\x9a\x7e\x42\x0f\xc5\xd7\x53\x93\xfe\xc2\xfe\x66\x36\xb2\xa5\x1b\x01\x0a\x0e\x8f\xc1\x38\xd1\x52\x20\xdb\x13\x53\xe8\xc0\x85\x85\x66\x94\xac\xcf\xf8\xce\xa4\x13\x4a\x65\xee\x8c\x8a\x29\xfe\x44\x4b\x4a\xdb\x34\x2b\x4c\xd7\xea\xfd\xa8\x04\x00\xeb\xb8\x91\x0f\xd0\x34\xd9\x14\x75\x4c\xac\xbb\x4b\x6a\x0d\x5e\x1a\x7f\xc6\xb7\x95\x75\x98\x96\x92\xd2\x8a\x74\x8e\x21\x81\x72\xbe\xd5\xf8\x55\xc1\xc8\x9c\x57\xb4\xc4\x5f\xff\x6f\x7f\x11\x2e\xb2\xb4\xd2\xe2\xa8\x54\x60\x3b\x39\x37\x1f\x4c\x2d\xb7\xc5\x83\x44\x8d\x6c\x95\x56\xf3\x66\xcb\x17\xc6\x36\x2b\x65\xad\x68\x34\x98\xf5\x7d\x20\x1f\x68\xca\x9f\x8f\x68\xdc\xf8\x3f\x74\xa6\xe1\x23\x55\xda\x1c\x26\x48\x4d\x2f\x1e\x74\x24\xab\x64\x71\xf8\xc6\xeb\xef\x98\x28\x62\x98\x0b\x9e\xfb\x29\xe8\x67\x09\x97\x04\x19\x57\x04\x6f\xb7\x5b\x4a\xe6\xfd\xb1\x76\x4d\xf6\x8a\xc2\x5f\x59\x14\xc2\x78\x52\xce\x96\x00\x54\x85\xc2\x34\xcc\x76\x28\x24\xdf\xe3\x93\x6a\x87\x63\xf9\xaa\x52\x5e\x51\x5e\x1e\xa4\xdb\xe1\xf8\xb3\x00\x30\x90\xda\x7f\xab\xfd\x94\x2b\x79\xd8\x61\x58\x0c\x33\xda\xd1\x70\x6f\x66\xd1\x9d\x5d\x21\x2e\x45\xbd\x72\xf7\x14\xcc\x77\x69\xa9\x19\x94\x87\x45\x1a\xb2\x74\xa9\xaa\x13\x2e\x2b\x22\x2e\x77\x02\x0b\x28\xc3\x27\xa4\x4f\xaa\x8e\xce\xe9\xe4\xcb\xe2\x41\x62\xdd\x9c\xf1\xcd\x24\x33\xe4\xae\x8a\x38\x17\x0d\x0a\x06\xeb\xae\x3a\x33\xc2\xe1\x28\x0a\xcb\x9f\x59\x3c\xc8\x09\xac\x53\x98\x4d\xbe\x69\xf9\xa6\xfa\xa0\x48\x3b\xa8\x3a\x0b\x45\x82\x3f\x61\xf1\x5b\x38\x35\x1e\x4e\x8b\x4e\x2e\x34\x87\x1b\x69\x68\xd0\x45\x00\xfe\x83\x57\x94\x6c\xcc\xf5\x8a\x9c\x4c\x8d\x6b\x1c\x0c\xc2\x60\xd5\xa2\x1c\xc2\xe2\xdb\x70\x02\x44\x89\x5b\x51\xa7\x94\xfe\x9d\x65\xc9\x32\x3c\xe8\x79\x82\xfb\x73\x57\x4d\xcb\x87\x10\xe7\xe1\xd0\x48\xbb\x4d\x0d\x75\xd5\xc8\x44\x79\xaa\xa9\xab\x6e\x29\xea\x2a\x5f\x95\x87\x13\x6a\x3a\xd1\x86\x6a\x41\x3c\xab\x0a\x91\xd3\x07\xc4\xf2\x72\x33\x4a\x92\x21\x8b\xbe\xc0\x8b\xdc\xd3\x56\x18\xc4\x4d\x64\x8b\xb1\x0c\x01\xb8\x13\x52\x5c\xf1\x01\xf3\xac\x88\xcd\x30\x9c\xa9\xb0\x4e\x79\x14\x2f\x40\x10\x08\x38\xee\xab\x70\x72\x54\x74\xa2\x30\x88\x36\x1e\x2b\x9f\x0f\xf8\x8e\x3b\x94\xbf\x66\x05\x27\xc5\x97\xf3\x2e\xd6\x82\x48\x3b\xa9\x76\xa8\x06\xc5\x19\xf0\xda\xee\x60\x11\xc3\x21\xe1\xad\xec\xf8\x19\x0f\x49\x12\x19\x76\x58\xf8\x67\x6a\x38\xe1\x3b\x61\xb7\xcb\xd0\x0f\x09\xa2\x1b\x4e\x12\xf4\xd8\x54\x2b\xe2\xca\x3c\x15\x63\x46\x39\x91\xcc\xaa\x83\xee\x45\x77\xd0\x3d\xa5\x78\x82\x56\x6d\x9a\x3d\xd6\x70\x84\x7a\x4f\xa3\x00\x23\xbe\x03\x7d\x4c\x80\xe5\x2a\xb2\x7b\xa8\xe4\x32\x77\xc2\x96\x38\x79\x88\xa5\xa5\x15\x5e\xcb\xc0\x42\xe0\xe8\xb9\x43\x1e\x17\xdc\xf8\x63\xe3\x0a\x60\xdd\x1f\xf3\x07\x0f\x1d\x98\x6d\x1c\x7c\x5e\x24\xd7\x94\x68\xf4\x37\x68\xd5\x20\x9d\xc8\x7c\xbc\xf8\xde\x1b\xaa\x39\x34\x88\x8a\xd2\x99\xa4\x4d\x2b\x1d\x2d\x34\x51\xd2\x85\x22\x91\xe2\x4b\xc5\x70\x44\x61\x36\xe6\xe6\x1f\x6b\xf9\xcd\x8b\x8a\x05\xed\x03\x05\xb2\x41\x33\x1f\x23\x92\x5b\xea\xa4\xf3\x08\x03\x3b\x1c\x45\xc9\x86\x4d\x61\xdc\xa5\x56\xd3\x70\x1d\x98\x00\x15\x48\xf7\x73\xb9\x3c\xb1\x8c\x7f\x58\xc3\x0a\x14\x24\x45\x1c\x84\x11\xd9\x2d\x14\x0d\xef\x54\xb2\x67\x8a\x62\xea\xb8\x0a\x24\x86\x76\xd8\xb1\x50\x99\xc5\x5f\x52\xeb\xc2\xe6\xdb\x4a\x59\xf9\xb4\xee\xdd\x7a\x43\x75\xc2\x5e\x76\x89\xe3\xc8\xc6\x5d\x9b\xce\x28\xce\x79\xa6\xe6\x47\xc9\x12\xac\x61\x70\x1d\x66\xda\x35\x9a\x98\x61\xdc\x2d\xb2\x3c\x0d\x09\xa1\x4a\x7b\x1f\xfd\x7a\x70\x83\xf9\xba\xa6\x0d\xaf\x9c\xc1\x4e\x47\x54\x47\xf1\xb8\x97\x69\x7f\xf0\x75\x4d\xfc\xf6\x62\xb3\x13\xe6\x24\x5e\xec\x9a\xb6\xb9\x4d\xd2\xc5\x89\x8e\x13\xf2\x64\x4d\x3f\x4b\x30\x20\x91\xd0\x3e\x57\xf1\x90\xcd\x7a\x8d\x16\x81\xb4\xe7\x28\xad\x37\x10\x10\xc1\x91\x3f\xa7\x08\x86\x87\x61\xb4\xfa\x38\x59\x26\x97\x2f\xf4\xcd\x60\x47\x75\x7f\x1f\x43\x95\xb9\xdf\xb3\xa5\xd0\x17\x58\x2a\xa8\xaa\xa0\xd9\x4e\x88\x9b\x7d\x1d\xf4\x06\xe6\x41\xf2\x90\xf0\x85\x24\x83\x49\xa3\xc6\x3f\x59\x63\x59\x0f\x34\x5f\xb2\xeb\xc2\x1f\x51\x9b\x0f\xd8\xea\x79\x1e\x7c\x1e\x72\x65\xc3\xd0\xe3\x1f\xa4\x81\xcf\x67\x07\x4e\xa9\x62\xd5\xb0\x48\x47\x03\x04\x8e\x6c\x43\x5a\xaa\x84\x8e\x37\x64\x81\xd7\x29\xfc\xd9\xa1\xf9\x2f\x35\x93\x34\x24\xa2\xcd\x86\x57\xb6\x05\xfe\x41\x28\x64\xbc\xc3\x1d\xf6\xc2\x38\x6f\x28\xd7\x89\xe1\x42\x22\x5a\xbd\xd5\x13\x38\x7c\xb8\xb9\x66\xd3\x8d\x19\xb2\x08\xc8\x81\x5f\x22\xab\x22\x90\x60\x1f\x9a\x5f\xd2\xc8\x40\xc7\x6e\xc2\x7d\x23\x9a\x63\xfa\x63\x17\xcb\x99\x2c\x2b\x52\x13\x07\xa0\xbd\x83\xbb\x83\x93\x06\xfe\xdf\x23\x9a\x44\x61\x32\x57\x85\xb1\x77\x54\x45\x85\x9a\xb1\x67\x3d\xfa\x11\x35\x1e\xe1\x0b\xa5\x65\x28\x5a\x62\xf4\x0d\x48\x39\x9e\xa9\x6d\xf3\xe9\xda\x20\x49\x99\xac\x5d\xec\x9f\x42\x6c\x5f\x98\x9a\xec\x95\xf9\x95\xe6\x28\x4d\xe2\xd2\xf0\x48\xf2\x8a\x69\x90\x94\x90\xe1\xc5\x96\x8f\x0c\xb3\x62\x44\xcc\xd7\x71\xde\xa8\xb6\x01\xd2\x08\xf1\x8d\xda\x24\xf9\xc0\x6e\xfc\x5c\xe3\xab\x5f\xe6\x97\x60\xaa\x26\x1c\x9c\x27\x15\x9d\xc1\xfd\x71\x19\x0a\x60\x8d\xef\x6a\x2b\x99\xa9\xbb\xad\xc6\x17\xbf\xc6\x16\xe9\x5f\x50\x11\x11\xc6\x14\x24\xe5\xb0\xd9\x37\xc6\xbe\x2b\x9c\x59\xe9\xb0\xa7\x1f\x6f\x2b\xf8\xff\x75\x4c\x01\x0e\xbd\x3d\xa5\x5d\xde\x9c\x9d\x94\xe7\x86\x88\x7d\xd1\xba\x42\x86\xf1\xa3\xb1\xd7\x77\x94\x5e\x57\xb8\x77\x7f\x34\x56\x8a\xad\x0f\x91\xb1\x41\xe6\xf5\x3d\x82\xff\x0b\xb0\xac\x5c\x12\x28\x0e\x34\x26\x8a\x6c\xea\x5d\x68\x07\x20\x11\x79\x1b\x64\x57\xa8\xcd\xdd\x6e\xe9\x16\x8e\x96\xc2\xf2\xee\x9d\xf8\x2a\x53\x16\x10\xef\x9b\xc3\x1e\x32\x5d\x15\xdf\x28\x71\xa3\x4e\x91\x85\xb1\xcd\xb2\x21\xfb\x8a\xaa\xa7\xd9\x35\x38\xd7\x71\x1a\xa4\x36\x4b\x22\x5e\x0a\x4e\x54\xc1\x1d\xe9\x7f\xa8\x5b\x7b\xc2\x38\x2e\x6d\xf0\x0b\xfb\x7d\x14\xe2\x8a\x86\x2c\x37\x2b\x04\xdd\xb5\x52\x44\x83\x24\xc9\x11\x3f\x3a\x9e\xd6\x72\xb6\xc4\x86\xfb\x08\x20\x33\x71\x77\x3d\x0c\x06\xe4\xc8\xc2\xac\x5f\x54\x6a\x90\x8c\xc9\x77\x92\x61\x3e\x4d\x7f\x59\x1d\x93\xa9\xed\x11\x59\xc3\xca\x3c\xdb\xf2\x7b\x63\x9f\x1f\xbe\xe7\x0f\xf4\xaf\x17\x26\x72\xa0\x52\xac\x3b\x88\x28\x3a\x2e\x6f\x87\x12\x39\xe1\xfc\xcf\x97\x92\x22\x8d\x2d\x7c\x5e\x01\xf2\x2a\xd2\xb5\x33\x53\x31\xca\xbe\xe5\xe6\xc8\x84\x3c\xce\x8c\x10\x55\x92\x57\x57\xea\xc4\x2b\xba\xa5\x97\x4c\xe2\xfb\x2e\x61\x72\x42\xf5\x80\x9d\x50\x29\xb6\x20\x49\x47\x49\x6a\x72\xbb\xdb\x3f\xd1\xad\xb1\x2a\xb5\xcf\x6a\x3a\xad\xfb\xe4\x11\xa0\x1a\xfd\x08\x93\x00\x63\xf9\x00\x36\x07\x83\x79\x9e\x2a\x55\x9b\x6c\x94\x10\x54\xde\x53\xa7\xfb\x34\xeb\xdd\xe7\x3f\xdf\xec\x40\x34\x0b\xa3\x29\x1d\xa6\x3e\x93\x73\x47\x25\xc9\xa6\x05\x4a\x16\x16\x9b\x91\xc9\xd1\x55\x82\x3d\x76\xaf\xa2\x38\xa5\x03\xc2\xa7\x5d\xc7\x44\x79\x72\x65\xc8\x82\x7b\x57\x96\x7b\xc8\xf8\x46\x61\x49\x7a\x49\x1c\x84\xec\x6b\x8b\x32\xa6\x96\xc9\xac\xd1\x8c\x4b\xad\xe9\xd2\xdf\x0b\x04\x8d\x46\x4c\xb0\x69\x35\x11\x5f\x81\xcc\x47\xc3\xc9\xd5\xbe\xa1\xd9\xdd\xde\x50\xe8\x46\xd3\x8f\x6d\x14\x85\x58\x16\x08\x98\x5e\x19\x2b\x45\xfd\x57\x54\x69\xc0\x8c\x46\x49\x18\xe7\xdc\x2c\xc8\xb4\xf1\xd4\x32\x23\x14\xf2\x2a\x40\x53\xca\x96\xb7\x5c\x39\x30\x89\xf3\x64\x67\xf9\x61\x69\x96\x68\xb8\x5e\xe8\x0f\x61\xa7\xe0\x83\x41\xce\x11\x55\x28\x08\xb0\x51\xc9\xf0\x9f\xfc\x6c\xbb\xf1\x95\x45\xc6\x0b\x9f\x27\xdb\x0c\x07\xf8\x9a\xab\x01\x04\x03\x6b\xd3\x30\x11\xe1\x5e\x78\x43\x7b\x61\xdf\xd5\xaa\x14\x75\xad\x9d\x13\xdf\x89\xda\x09\x93\x60\x60\x87\xa1\x70\x64\xeb\x8a\xa5\xd7\xbc\xc3\xdf\x16\x71\xd8\x4b\xd2\xa1\x06\x52\xc1\xef\xd0\xc0\x43\x38\xde\x9b\x55\x6e\xcc\x23\x47\x68\xcf\x62\x9f\xff\xa9\x96\x5c\xfa\x53\x07\x5e\x5b\x0d\xf3\x86\xda\x2d\x38\xb6\xa4\x6c\xf0\x49\x44\xc3\x49\xba\x6a\x87\xc4\xbb\xe9\xf4\x19\x5c\x11\xf5\x98\x72\xa6\xdf\xa5\x55\x0c\x6f\xec\x4d\x0d\x03\x6e\xb4\xe5\xf7\xd7\x4d\x36\x57\x0e\x3a\xce\xa9\x6b\xe3\x6a\x01\xf7\x90\x60\x36\x3e\xc2\x42\x41\xc4\x37\xdb\xa6\xee\x40\xb8\x9c\xbf\x39\x95\x10\x3e\xf8\x7c\x33\xb5\xa3\x22\x0d\x06\x42\x15\xc7\x01\xc7\x78\xfb\xe7\x7c\x92\xd6\x93\x4e\x6f\x6f\x6f\xfd\x06\xca\x94\xda\x22\x4d\x46\xd6\xc4\x33\x3e\xc1\xca\x22\xb3\x18\xec\x9b\x63\xdf\xe9\x3b\xeb\xf2\x47\xfd\x70\xcd\x9a\x75\xb3\x41\xd1\xba\xf4\x65\xf8\x48\x7b\x9b\xb2\xb6\x37\x5c\x62\xc1\x25\x11\x65\x2d\xe1\xe8\x67\x30\x05\x3e\xb9\xbd\xad\x58\xe8\x8e\x2b\x74\x47\x6c\xb2\xae\xf9\x3a\xa1\x3b\xc4\xef\xf5\xf5\x58\xd0\xa0\x20\x95\x3d\xa1\xe7\x60\xf1\x50\x87\x65\x26\x87\x38\xcb\x4d\xdc\xdd\xd9\x50\x7a\x19\xf4\x63\x08\x18\x2e\x11\x37\x8c\x04\xdb\xe5\x78\x62\xbf\xe2\xe4\x70\x0d\xbf\xbe\xb4\x7c\x14\x56\x14\xab\x68\x73\xea\x78\x38\x7c\x98\xf8\xad\xa1\x35\x88\x90\x80\x85\xfa\xf8\xe6\x13\xcb\x38\xa9\x09\x42\x66\x7c\x71\x8a\x8b\x4e\x2d\x88\xe3\x40\x1c\xd1\xd3\xbe\xff\xf2\x72\x73\x54\x7a\xfe\x59\x16\x0a\x51\x15\x9c\xad\x9f\x2a\x0e\xaf\x9f\xaa\x5c\x42\x44\xcc\x00\x08\x1a\x11\xff\x23\x3d\x83\xa3\xe4\x9e\xea\x2d\x9a\xee\x7d\xff\x42\x33\x49\x63\x9b\xe7\xb6\xa1\xda\xba\xae\x90\x0f\x25\x6b\xdb\x23\x5c\x80\x79\x74\xfd\x1a\xb7\x14\x71\xed\xad\xba\x6a\x54\x14\x7e\xbd\x60\x46\x0c\x71\x3c\x1b\x8e\x85\xf8\xf8\x54\xf9\xa6\xf4\x83\xd7\x93\x74\x95\x76\x02\xe0\x10\x4c\x75\xe6\xe8\x50\x5d\x7e\xef\x95\xad\x74\xa8\xa5\xe7\xbd\x32\xbf\x1b\xab\x12\x11\x78\x63\x42\xe7\x5d\x85\x1a\x56\x42\x5b\xb2\xab\x92\x52\xa4\xc5\x8b\x45\x30\xc1\x99\xe0\x32\x4f\x8e\x9d\xf9\xdb\xb4\x3e\x15\xd6\x58\x0c\xd1\xa4\x92\xcb\x2e\xf2\xc1\x13\x2a\xf9\x74\xb6\xe5\xcb\x84\xb7\x2b\x70\x3f\x3c\x0e\x36\xe5\x7b\x4a\x75\x14\x2d\xfa\xa2\x03\xde\x58\x58\x70\xe9\x49\xf2\x52\x19\xfc\x83\x8e\x2b\xa7\xf2\xed\x33\x3f\x17\xe9\x31\x71\x7d\x94\xb6\x00\xb6\xd1\x5d\x35\x8d\x9d\x02\x84\xea\x42\x54\x7a\x0d\x0f\xc6\x37\xce\x9b\xea\xd8\x20\x19\xda\x6c\xae\x7c\x06\x26\xe3\x1d\xab\x96\xa6\x3d\x6d\x85\x83\x62\x44\x3b\xc2\x52\x74\x3c\xc8\x4a\xac\x91\x03\x41\x85\xdc\x39\x24\x58\x41\xd8\xa4\x0c\xbb\x22\x03\x80\xd4\xdc\x8d\x9a\x12\x78\xb3\x20\x8a\xf5\x20\x74\x08\x24\xce\x49\xd1\xe7\x24\x3f\x25\x49\x95\x2c\x2a\x52\x56\xce\x61\x5e\x98\x0a\x47\x4c\x1d\x2b\x62\xbc\xb1\x3e\xb0\x0c\x88\x72\x54\x61\x8e\x14\xf1\xb2\xaa\x7c\x05\x49\x1c\x58\xf2\x55\x1b\xbe\xfc\xfe\x31\xcd\x02\x5f\x3b\x3e\xe0\xae\x38\xda\xd2\x24\x42\xa3\xc9\x37\x75\x39\xea\x32\xb4\x1d\xa2\x1e\xc4\x2e\x00\xdc\x6a\xf1\x07\xbc\x09\x88\x93\x4e\xd2\xdd\xa0\x08\x58\xc5\xa9\x4a\x0c\xdb\x11\x1e\xbc\xa5\xd4\x23\xdf\x52\x79\xb9\xbf\x4e\x1e\xaa\xf9\x09\x56\x2e\xdb\x88\x93\x51\x1e\x06\x72\x18\xe0\xc8\x66\x0a\x4b\xd8\xba\x77\x75\x03\xf2\x43\x6d\x4b\xc2\xcc\xee\xf4\xdd\xc4\x1f\x8d\x7d\x63\xd3\x55\x2c\x68\x18\xce\xdb\x78\x11\x18\x23\xcd\x1f\xce\x58\x7d\xe4\x99\x19\x25\x06\x17\x58\xd3\xd9\x13\xa5\x72\x36\x4b\x7b\xc7\xb1\x0a\x94\x7b\x47\x58\x05\x1a\x9f\x20\xe1\xfd\x8c\xea\xfe\xc9\x6d\x3f\x35\x4e\x32\x93\xe9\xbd\x54\xe2\xfd\x82\xf2\x1d\x93\x22\x1f\x25\x0c\xf4\xe1\xd3\xb3\xa5\x4f\xd2\xba\xec\x50\xc6\x25\xde\x45\x06\xe3\xbf\xab\x29\x95\x20\x99\xb5\x89\x96\x3a\xa1\xde\xdc\xba\x66\x0f\xcd\xbf\xd8\xb4\x86\x48\xee\xe9\x97\x01\x24\x64\x50\x3a\xdf\xb8\xe0\xaa\x88\xf2\x70\x68\x72\x8b\xaa\xb2\x24\x05\x7d\x81\x12\x47\x3f\xe6\xe5\x63\x4d\x3a\x74\x71\xea\x84\xdc\xbf\xb2\xbf\x99\x95\x3e\xc4\xa1\x79\xb6\xb3\x1f\xe2\xd9\x85\xfa\xd9\xf7\x56\x78\xb1\x1e\x33\x2c\x1f\xb4\x6b\x86\x0d\xad\xdf\x7d\x51\xd7\xdf\x2e\xd6\x09\x54\xa4\x36\x0b\x0a\x38\xf0\x88\x5b\xde\x52\x31\xcc\x5b\x4a\x05\x76\x94\x26\x99\x0d\x48\x04\x96\xbb\xf4\x05\x23\x42\x83\x2c\xe8\x91\x9a\x36\xfd\xcc\x46\x91\x17\x5c\x97\x5e\x3f\x55\x48\xbb\xd4\xfa\x24\x21\x03\x50\x7e\x84\x62\x35\xf0\xd2\x1c\x80\xf3\x8d\x6a\xcb\x0a\x92\x7e\x1c\xbe\x6c\xb9\xeb\x40\x1a\x72\x95\xeb\x78\x7a\xac\xac\xc3\x4d\x55\xed\x24\x42\x77\xc6\x34\x8b\x46\xb0\x62\x33\xbf\x4d\x43\x2e\x79\x06\xef\x7c\x99\x38\x1c\x9a\x68\x07\xc1\x1c\x91\xea\x40\x5d\x45\xca\xff\xf4\x7d\xfc\x1f\x63\xa5\xd5\x7b\x57\x11\xbf\x4f\xf4\x19\x7a\x5e\x75\xd6\x05\x49\x9c\xd9\x38\x2b\xd0\x91\x84\xb9\x67\xc4\x21\xdf\x54\xa4\xde\xe2\xdc\xd0\x18\x49\x1b\x7b\xc3\xd1\xda\x9c\x6f\xe9\x7c\x43\x64\xb3\xa1\x89\xe1\xd8\x60\xa7\x3d\x18\x7b\x6c\x58\xa3\xed\xd3\x93\xc7\xa7\xd0\xb0\x32\x2d\x45\x56\x38\x14\x20\x36\x02\x83\x71\xf9\x06\xd2\x9e\xb0\xcf\xb6\x43\x8b\x0b\xfc\x29\x6f\x2b\x9d\xfb\xb7\x55\xb5\x2a\x49\xf3\x41\xd2\x4d\x8e\xcc\x68\x06\x95\x6a\x6e\x59\x4b\x40\x9d\x54\xad\x70\x51\x98\x0f\x92\x7e\x6a\x28\x51\xeb\xe0\x1f\x28\x55\xb2\xd8\xf9\x58\xf5\xc9\x68\x98\x58\x1a\x06\x03\xe2\x06\xf7\xcd\x08\x17\x14\x19\xc3\x85\x29\xbb\x72\x68\xfe\x4b\xcd\x4e\x11\xad\x36\x7c\xf0\x73\x46\x49\x6a\x9f\x71\x2e\xfd\x96\x75\x8b\x2c\x03\x0b\xa7\xf1\x4d\xdb\x4f\x4a\x27\x29\x36\xfa\x85\xe5\x6d\xc5\x8c\x56\x64\x3b\x84\xdd\xaa\x82\xfd\xb4\xd1\x5e\x5f\x85\xb9\x09\xbb\x0e\x67\xee\x3e\x3c\x3b\x00\x9b\x1f\x8e\x55\xe1\x66\x17\xd2\x85\xe2\x82\x51\x9c\x55\xa1\xeb\x93\x14\x32\x26\x00\x3b\xe4\x30\x3d\x83\xf8\x33\xbe\x6d\x74\xa6\x5d\x1e\x7d\xc2\x2b\x42\x2f\x85\x08\xfa\xc6\xd8\xa3\x33\xd0\x35\x22\x01\x85\x1f\x05\xee\xa3\x80\xbf\x73\xac\xae\x01\x7b\x54\xba\xde\xf9\xc6\x8c\x22\x48\x40\xc0\x8f\x5f\x7c\xa4\x4a\x97\x97\x15\x19\x41\x3e\x08\xb3\x67\xca\xdf\x07\x9a\xe5\x09\x32\xb8\xd8\x89\xbf\x4f\xe5\x29\xd8\xd2\xab\x2d\xd5\x8b\x09\x11\x6e\xc1\x96\x6b\x8a\x5d\xa4\x87\x90\x7d\x9f\x9b\x28\xde\xab\x6b\x54\x45\x85\x3d\x79\x48\xef\x88\xfc\xcd\x23\x4c\x04\x7e\xe4\xba\x92\x5e\xf8\x4d\x6c\x70\x78\x07\xd7\x5a\x0a\x9d\xbb\x67\x52\x0e\x0b\xf2\x03\xef\x8e\xbd\xb6\xc0\xc3\x96\x82\x1c\x3c\x86\xc8\x0f\x27\xca\x6f\x63\xe6\x24\xa9\x58\x63\x6c\xed\x91\x3c\xb5\x43\x3b\x53\x4d\x2c\x2c\x2f\x3b\x1d\x08\x5f\x76\xdb\x36\x85\x5f\x78\x61\xf1\x60\xb3\x63\x63\xdb\x0b\xd9\xa9\xd2\x42\xdd\x52\x4c\x98\x2e\x5a\x2d\x37\x7b\x51\xd8\x1f\x48\xde\x5c\x4e\x7b\xed\x05\xec\xad\x50\x4c\xc6\xdc\x1f\xea\x44\xec\x5d\x48\x37\x33\xa9\x94\xf3\x66\xb4\xcc\x89\x6f\xe9\x34\xa3\x51\x64\x49\x78\x86\xd5\x51\x14\x08\x62\x0f\x65\x71\x90\x37\xf8\x3e\xe1\xa2\xf9\x5a\xe3\xfc\x6e\x71\xad\x49\xf4\x13\x68\xe6\x45\x35\xc3\x57\x4b\xf6\x7d\xe5\x8b\xd4\x88\x8a\x53\x80\x33\xd7\xf0\xfd\x6f\x52\x58\x2c\x21\xb2\x26\xc1\x01\xea\x8b\x17\x85\xea\x20\x4f\x7a\x3d\x52\x16\x9d\x53\x5c\xee\x4c\xea\x0b\xaf\x19\x8b\x1c\x07\xe9\x3d\x1c\x5b\xfc\x1f\xaa\x3c\xb5\xab\x06\x99\xde\xcc\x92\x1e\x9a\xd8\x85\x9a\xad\xb4\xb2\xc2\xcc\xe6\xed\x8c\x13\x56\xa7\xe5\x85\x50\xf9\x34\x25\x48\xf9\x1a\xe3\x80\xd3\x05\xad\xa8\x7c\x5d\xa3\xfa\x19\xd8\x98\x75\x94\x38\x5a\x70\x49\x1f\x77\x80\xbc\x5b\xd5\x32\xcf\x0d\xb8\x2f\x11\x42\x5f\x53\xc3\x74\x42\x83\x0e\xee\x92\x11\x41\x96\x85\xe9\x8c\xa5\x81\xb0\x46\xdf\xec\xb3\x5f\xfe\x87\xfb\xbf\xfc\xc5\xe5\xc7\x7c\x74\xc4\x6c\x9e\x98\xa6\x27\x26\x6a\xb4\xcf\xaa\x02\xd4\x93\x6d\x8f\xa2\x7a\xa8\x15\x26\x2e\xd1\x11\x85\xf4\xfb\x44\xe7\x95\xef\x8e\x1b\x87\x0f\x73\x2f\xec\xf6\x36\x66\x1c\x2e\xf8\x9f\xd4\x75\x7f\xc4\x89\x27\xee\x97\x33\xd2\xb7\xa3\x5c\x1a\x7f\x46\x6b\x5b\xe5\x29\x88\x08\x4d\x34\x5b\xfe\xba\x14\x40\x1a\x8e\xff\xe8\xb4\x12\x46\xe1\x54\x87\x14\x46\xbc\x17\x03\xad\xdf\x19\x9f\xa3\x21\x49\x04\xae\x50\x1e\xd3\x54\xc5\x17\x94\xdd\xec\x24\x11\xd2\x09\x9c\x1e\x6d\xe9\x54\xa9\xc4\xad\x59\xec\x4a\xd9\x52\xbb\xe1\xa4\x0f\xdf\x28\x67\xaa\x9b\x04\x79\x92\x2a\x12\xc6\x4b\x8a\x84\xf1\x92\x42\xf1\xc8\x8e\x98\xf5\x99\x24\xf4\xf8\xf1\xb5\x16\xfe\x11\xaa\x12\x51\xac\x72\xb2\x13\xe6\x48\x38\x0c\x5f\x26\x35\x54\xb7\x5e\xdf\xa0\x25\xe4\x64\xf8\xcb\x29\xc0\x9a\xbb\x39\x55\x48\x5e\x58\x6c\x06\x45\x27\x0c\x70\xda\x30\x70\x9e\xd6\x09\x2c\xf9\x2e\x5a\x27\x38\x2d\xee\x28\x4d\x7b\x6b\x56\x1b\xbe\xc6\x07\x7b\xcf\xd7\x5a\x39\xba\x4b\xa4\x1f\xa5\x8f\xe8\x2d\xfa\xd9\x96\xc2\x9e\x9c\x1e\x7b\x28\x0c\xf4\xa1\x81\x8f\x3b\xdb\x52\x0d\xb6\x67\x35\xff\x48\x85\x25\x47\xa2\x44\xe4\x53\x76\xb7\xfd\x83\x5f\xd6\xb8\xfb\xc6\x44\xf8\xc1\x86\x61\x90\x26\x9d\x30\x89\x92\x3e\xa2\x77\x58\x50\x26\xb2\xe6\x9b\xa9\x40\xe1\xf0\xe1\x66\x90\x5a\x21\x86\x77\x6e\x95\xcf\x55\xdc\x9b\x8a\x62\x0e\x3e\xdf\xec\x15\x36\x52\x81\xf6\x69\x85\x7d\x38\x5d\x57\x05\x12\xfb\xd4\x50\x44\xa1\x6f\x90\x51\xe4\xeb\xaa\x96\xed\xba\xed\xee\xf2\xfa\xff\x97\xe8\x00\xe5\xeb\x96\x6a\x6e\x7f\xd0\xaa\x48\x47\x60\xbc\x70\x82\x72\x7b\xb3\xe0\x3a\x7d\x4e\xed\xbe\x0a\x82\x4a\x4f\x4d\x56\xec\xd7\x0b\x93\xe6\x36\x07\xda\xd5\xe1\x0d\x75\x92\xaf\x4e\x2b\x2c\xb2\x46\x4a\x36\xd8\x04\xec\xd9\xf2\x8d\xe3\x6e\xfb\x1b\xb2\xfb\xb9\xb2\x5f\x91\x95\xa1\x55\xc3\x67\xdc\x59\xdf\x59\xd0\x05\xd3\x79\xc9\xd4\x76\x8b\x40\x10\x29\x2c\x5a\x4a\x07\x80\x08\x98\xd6\xc0\xe3\xa2\x70\x38\x62\x09\x43\xa1\x8c\x2b\x9f\x0d\x39\x82\x8f\x15\x4a\xfd\xee\x14\x64\x77\x65\xbe\x19\x96\x0f\xe8\xc2\x04\x00\x2d\xf8\xba\x8e\x3c\xac\x57\xc4\xdc\xde\x8a\x6a\x33\xdc\x6b\xbe\xae\xe3\x4c\xd1\x89\x04\x7f\x94\x7e\x53\xb1\xe5\x7e\x73\xaa\xce\x45\x28\x4a\x96\xb7\xac\xe3\xd9\xa8\xe1\x1f\xca\x93\x1c\xf9\x28\x5a\x30\xa2\xe1\xd4\x70\x9c\x5f\x7f\xa9\xd4\xc1\x3a\x49\x92\xe5\x74\xcc\x7a\x9a\x5f\x4a\x9b\x8a\x42\xe8\x25\x45\x33\x75\xb6\x55\x31\x72\x4f\xb9\x5a\x9f\xfd\x7a\x61\x72\x3b\xdb\x58\x5a\x7a\xf4\x6b\x9f\x22\x23\x84\xfd\x3f\x3b\xf1\x69\x30\x86\x5e\x88\xc3\xed\x33\x34\xc1\x20\xb4\xbd\x4c\x95\xe5\x3e\x18\xab\xb2\xdc\x07\xaa\xc9\x7a\xdd\xc4\xf9\x9e\x86\x6b\x21\x9e\x9b\x90\xca\x93\x8c\x84\xc2\x0a\x41\x8d\x0e\x8e\xeb\xdb\x88\x19\x04\x06\x43\xef\x89\xb5\xb1\xb3\xad\x18\xfe\xee\x8d\xbd\x52\xcf\x95\xb1\x16\x4c\xfd\x1e\x36\x9e\x0c\x07\x39\xb5\x08\x40\x21\xdc\xc6\xd7\x63\xcf\x39\x73\x69\x6a\x35\x53\x9a\x64\x64\x63\x14\x2c\xf1\x60\x7f\x81\x27\xe6\x9b\xa9\x0a\xd6\xca\x7c\x33\x1f\x90\x1d\x8b\xb9\x79\x47\x1a\x89\x69\x1c\xa5\x93\xd8\x07\xf8\x83\x24\x59\x25\x78\xae\x40\x64\x5e\xa5\xc7\xe3\x6b\x15\x85\x32\xa4\x3d\x0f\x45\xce\x0f\x05\x98\xff\x8f\xd6\x21\x52\x78\x28\xf0\x02\x04\x71\xb7\xd2\xcd\x97\xf6\xed\x13\x65\xf0\xb0\x79\x91\xc2\x11\xf8\x21\x3f\xa2\x97\x87\xd3\x7d\x4b\xb3\x12\xdd\x05\xce\x1f\xcf\x80\xce\x66\x39\x14\x7d\xe5\xe7\x0e\xfd\xb0\x83\x1f\x97\x13\xe4\x60\x45\x3e\x5d\xf3\x6d\x38\xd8\x2e\x01\x5f\x4e\x83\x28\xd3\xfa\x5c\x5d\x9e\x86\xfd\x3e\x08\x25\xbd\x13\x02\xbe\x7e\x16\xc3\xd5\xcc\xce\xff\xc1\xf9\x0c\x7d\x1b\x17\x61\x4c\x4b\x18\xe7\xd3\xea\xb3\x88\xfd\x9c\xe8\x80\xa3\x1a\x7d\x1c\x6e\xbf\x74\x8d\x7b\x8e\x81\x6c\x60\xa3\x0a\x65\x1d\x7d\x48\xe8\xeb\x6a\x7a\x69\xa4\x6e\x27\x07\x23\x4a\xb8\x2c\x13\x8a\xb3\xea\x98\xae\x85\x5e\x50\x88\x9e\xa0\xc8\x33\x72\x24\x79\x6b\xe2\xb5\x1c\x79\x8a\x4f\x46\x9c\xa6\x5a\x34\x9c\xe6\xcb\xaa\x35\xfc\x92\x26\x2f\xba\xab\x78\xee\xae\xaa\x14\xcb\xf9\xb1\x22\xf8\x7d\x00\x07\x17\xa1\xc7\xff\xaa\x56\x9e\xe9\xa4\x89\xe9\x36\x34\x25\x83\x2f\xf3\x4c\x8b\x5f\x50\x55\x6d\xcd\x19\x28\xde\xa6\x2d\xbd\x65\xa7\x8c\xf3\xfe\xe6\xc0\xa6\xdc\xfc\x85\x1c\xe9\x43\x94\x70\xf8\x46\x45\x0e\x83\x24\xea\x12\x75\xbf\xc2\x01\x5e\xd4\x08\xbd\x8b\x35\xfc\x6b\xcd\x51\x6a\x7b\x36\x4d\x45\x08\x09\x09\xbb\xc6\xc4\x77\x48\x9e\xd7\x4e\xce\x75\x1d\x7d\xcc\xb6\x3f\xad\xab\x01\x59\x11\x91\x5c\x14\xbe\x88\x07\x9e\xc6\x17\x47\x4f\x3e\x56\xac\xb6\xff\x0a\x46\x40\xd8\x96\x74\x25\x29\x31\xd1\x2e\x4f\x6e\xcc\x8c\x9a\xcc\xfa\x3d\xf6\x74\xb0\x27\xaa\xad\xe5\x95\xfe\x73\xb7\xfc\xbe\xa7\x27\x1b\x8d\xe9\xf0\xb4\x1b\x6d\xbf\x77\x8a\x38\xe9\x64\x36\x5d\x03\xdb\x81\xd4\xc0\x6e\xb7\xd4\x3e\x40\x1b\x8b\x34\x59\x4c\xd7\xef\x9a\xeb\x36\x04\x87\xaf\x67\x73\x50\x8d\x83\xae\x22\x13\xc6\x59\xd8\xb5\x44\xe0\x8a\x04\xd0\xe3\x13\x8f\x82\x7f\x02\x29\x0c\x58\x9f\xdb\x4a\xd8\x8a\x79\x80\x1c\x4c\xc2\x25\x24\x76\x12\xa9\x10\x05\xe2\x47\x3f\xdb\x56\x90\xcf\x0a\x74\xfa\x5d\xe5\xec\x76\x6d\x14\x06\x61\x52\x64\x0d\x4f\x47\x74\x5e\x49\xb6\x4c\x57\x65\x17\x16\x9a\x5d\x9b\xe5\x69\x11\xe4\xe1\x1a\xba\x1a\x90\xb2\x3c\x4e\x63\xee\x92\x37\x0e\x7f\x79\x4a\xe5\x0c\xed\x91\x51\x92\x49\x89\x48\xd8\xcf\xcb\xe7\x17\x5a\xf4\xad\x2b\xd2\x55\x58\x8a\x60\x40\x78\x69\x32\x37\xff\xf5\xa7\xda\x74\xe4\x31\x49\xcb\x78\xe6\xc0\x3f\xfc\x8a\x30\x78\x8c\x55\xa9\x4a\xb1\xa3\x5c\xd6\x59\xd8\x7b\x9a\x35\x31\x89\xfb\xa9\x42\xa6\xb9\x9c\xa2\xa3\xbc\xba\xa0\x18\x77\x4c\x96\xd9\x94\xba\x6c\xa8\x78\x82\x29\xf8\x29\x54\x1c\xf8\x46\xc9\x81\x85\x65\x90\xd8\x2d\xa4\x41\xf5\x45\x4f\x17\xee\x11\x85\x47\xc7\x95\xba\x3e\x35\x2e\x52\xcf\x33\xe2\xdc\xfb\x2d\xc5\x8e\x7b\xaa\x52\x7b\x6b\x2c\xab\x86\x02\xd7\x35\x7b\x4a\x79\x9b\xe1\x70\x94\xa4\x79\xb6\x8b\x4a\xf5\x88\x82\xd1\xfc\xe0\x84\xdf\x96\x96\xdc\x7f\x68\x21\xee\x9f\x50\x92\x8c\xf5\x2c\x69\x2e\x81\xa9\x7b\x48\x47\x29\xce\x9e\x33\x9a\xfd\xe4\x92\xaa\x13\xd9\x23\xe0\x5a\x4b\x62\xcd\x73\xc6\x6d\xe1\x7c\x53\x93\x91\x5a\xe4\xe2\x9d\xea\xcc\xfe\x1d\xd5\x99\xfd\x3b\x35\xbc\x24\x07\x58\x91\x54\x1c\x49\x47\x0a\xa0\x84\x28\xf7\x2a\xdd\xfa\x3c\x8f\xa4\xd2\x80\xed\xf6\xa6\x22\xe9\x04\x27\x9d\xe8\x1e\xfc\x67\x8a\xce\x22\xee\xa5\x49\x9c\x53\x57\x1f\x77\xe9\x0a\x8f\x0b\x59\x3f\x21\x72\xf9\xc4\xb5\x3b\x30\xeb\x0d\xdf\x30\x71\x4a\x33\x10\x9c\x9a\x42\xce\x12\x03\x41\x9a\x8c\x46\x30\x3f\x82\x1d\x7d\x6f\xac\xfa\x91\x6e\x57\xe8\x87\x1d\x15\x53\x11\x57\xd9\x2e\x8e\x6a\x19\xb3\xa3\x6a\x5d\x64\x45\x9c\xd9\x3c\x23\xc4\x0b\xac\x1b\xfa\xce\x25\xa2\xa8\xb4\x66\x49\xd5\x36\x31\xec\x7e\x23\x01\x77\xbb\x92\x8e\xbb\x5d\x47\xd6\xda\x4f\xad\x75\xc7\x9b\xd4\x50\xbd\x1b\x3d\xcd\x44\x7c\x68\xfe\x4b\xcd\x7e\x12\xf5\x1a\x3e\xd1\x88\x8d\x28\x81\xe0\xd3\x0a\x3f\xb9\x16\x5a\x90\xe0\x38\x35\xc9\x6a\x69\xfa\x09\x1f\x77\x26\x71\xa3\xb1\xb0\xc0\xae\xca\xef\xd2\x9c\xf3\xb5\x73\xde\x89\xec\x53\x60\x71\x30\xb9\x3f\xc4\xf0\xf1\x4d\x4d\x63\xcc\x81\xe6\x28\x0c\x56\x39\x4a\x64\xa2\x99\x96\xaa\x63\x9d\xf3\x9a\x9d\x26\x8c\x78\xf4\x30\x6b\xdb\x27\x9a\xf2\x6d\xbb\x22\xd2\x2b\x46\xf9\x0e\x9a\x43\xcc\x3b\x9c\x42\xd8\x82\x1d\x30\xe9\x12\x8a\xa9\x58\xe8\x5c\xcb\x23\x1c\x6e\x2a\x99\x8e\x1d\x13\xff\xc5\xbf\xf0\xdc\x2f\xa9\xaa\xce\x45\x55\xd5\xb9\x58\x27\xea\x9c\x0d\x93\xa8\x6b\x75\x4a\x88\xdb\x10\xf8\xc6\xa1\xdd\x46\x51\x92\xbb\x50\xce\x31\xc3\x6b\xa6\xb1\x69\x5c\xef\x62\xb3\x67\x02\x76\xe7\x71\xe6\xbf\x87\x8f\xf0\x4d\x0d\x32\x7f\x7f\xd3\x0c\x6d\x1a\x06\x26\x56\xf4\x6e\x87\xb5\x90\xca\xe1\x96\xa7\xfb\xc3\x5e\x67\xba\x22\x51\x7d\x2f\x3f\xc7\x09\x63\xfc\x1a\xe2\x9f\x9b\xee\x55\x78\xdf\xed\xf6\x07\x19\x07\x4a\x15\x89\x70\x94\x31\xf0\x75\xc8\x57\x9d\x18\x57\x76\xaa\xd7\xf8\xc2\xe1\xec\x38\xb3\xca\xdf\x24\xa7\xe4\x7f\xfa\xb9\xb6\x6a\xf0\xbf\x3a\x7e\x56\x5b\x9b\xd2\x25\x48\x4d\x27\xb2\x3b\xcb\x2f\x62\xd1\x32\xda\x9f\x7c\x7e\x6b\x39\x00\x24\x1c\xe5\x60\xf7\x95\x91\x3f\x83\x9f\xc4\x2d\x9d\x2d\xc5\x57\xf7\x50\x15\x43\x47\x24\x6f\x44\x87\xb8\xf0\x1b\xa8\x22\xe3\x35\x7a\x13\x84\xad\xdb\xda\xbe\xef\xa1\x88\xf3\x30\x22\x98\xa7\x63\x18\xf6\x2b\x1b\x0c\xdb\x0c\xda\x6b\xf9\x18\xb8\x31\xa9\x49\x1d\x0c\x4d\xba\xca\x9d\x76\x22\x18\xa2\x3a\x04\xaa\x5c\x2a\xe5\xbb\x49\x9b\x8a\x4f\x5c\xf6\xd3\xa4\x18\x65\xbb\x54\x05\x02\xc9\x11\xe4\x53\x50\x52\x45\x1d\xe6\x0e\x2c\x28\xec\x95\xe6\xfc\xf8\x97\x64\xf8\x51\xb1\xf8\x01\x55\x1f\xf8\x5a\x97\x93\x4f\xaa\x7e\xcb\x97\x8a\xe1\x68\xa6\x1c\x1a\xd4\x3f\x40\x94\x8d\x83\xed\xbe\x82\x82\x9d\x9b\x22\x06\x2c\xb7\x7c\x33\x8c\xa2\x22\xcb\x55\xfa\x03\x09\xbc\xd7\x75\x36\x4f\xf3\x13\xe4\xa1\x89\x4d\x5c\xba\x27\x4a\x84\x82\x3b\x4d\x44\x39\xb9\xa6\xa8\x54\x8c\xb2\x5c\x74\x75\x30\x00\xaf\x2a\x74\xf4\xab\x2a\x23\x39\x1c\x25\xb3\x1a\xc6\x4a\x4e\x01\x7c\xdb\x53\x8a\x72\xef\xba\x96\x15\x3b\x5f\x93\xa8\x8a\xac\xd9\xda\xa4\x83\xec\xa8\x34\xd3\x3d\xe9\x33\xb1\xc3\xa1\x6c\x4e\x5a\xad\xbf\xf1\x29\xf2\x7b\x15\xc3\x2d\xdb\xdd\xe1\xb3\x6d\xcf\x16\x14\x21\x33\x09\x17\x85\x3b\xe0\xf8\xc6\x7d\xf7\xa8\xe8\x76\xdd\x43\x88\x34\x9d\x0f\xe2\x4f\x4e\x59\x16\x42\x8e\xf6\x42\x52\x29\x51\x2c\x08\x68\xda\x92\xed\xb3\x35\x51\xba\xb4\xd4\x34\x41\xfe\xd7\x30\x02\xd4\xa4\xaf\x46\x69\x48\x93\xe1\x54\xff\xcb\xd1\xe4\x9b\x96\xc7\x03\x65\x3f\x1f\x71\xc8\x26\x22\xa7\xbe\xd2\xf6\xbe\xfa\xbb\x5e\x9a\x0c\x7f\x8e\xfe\x0e\xcb\xfe\x63\x15\xdf\xfe\x09\xe1\x16\x91\x91\x3f\x43\xab\x13\xa5\x99\xfb\x1a\x76\xce\x39\x56\x3c\xc1\x63\x8a\x04\xef\x1e\xf5\xb8\x88\x7c\x12\xce\x29\xae\xa6\x8d\x7d\x83\xca\xcc\xc4\x6f\xce\x9d\xd0\x4f\xc7\xb2\x7f\xd0\x22\xac\xaf\xab\x7b\x78\x4c\xde\x6d\x12\xbd\x06\xe4\xf5\x32\xcb\x9c\xbb\x2e\x68\x2f\x7b\xf1\xa0\xa5\x34\xf0\xce\x20\xc3\x01\x27\xfe\xae\x12\x2a\xdc\x31\xf1\x2c\x68\xef\xc1\x30\xe3\x21\xef\xb7\x14\x65\xd1\xbf\x26\xe4\x20\xde\xfe\x7d\x40\x56\x31\x2a\x27\xd4\x46\xbd\xd7\x7a\x66\xba\xc2\xd0\xa1\xc9\x72\xdd\xbb\xde\x37\xbe\xe2\xa2\xb7\x21\x11\x96\x35\xbc\x8c\xe6\xf1\x96\x0f\x3e\x8e\x57\xd2\x45\xeb\x66\xa4\x0e\x5f\xf6\xb5\x45\x9f\xc6\x17\x5a\xfb\xa9\x89\xf3\x04\x9d\x84\x08\x27\x6e\xd2\x39\x2d\xd1\xb3\xc2\x20\x6d\x6f\xfb\xb0\x2a\x5b\x0d\xd3\x61\x98\x0d\x54\x3f\x34\xe8\x4a\xc5\x58\xd4\xb4\xe8\x42\x7c\x0d\x2b\x0d\x87\xe2\x4f\x5b\x8a\xd3\xf9\xa7\xd3\xed\x0f\x0b\xcd\x34\x19\x8e\x1a\x3e\x36\xb9\x8b\x61\xe7\x1b\x95\x08\xe9\x11\x02\x6b\x46\x71\xee\x5d\xd0\xab\x58\xf1\x52\xdc\x9c\xf2\x7f\x97\x96\x56\x08\x7d\xe4\x36\x31\x6a\x2b\x9b\xaa\xce\xb2\xa9\xc2\xb7\x91\x49\xf3\xd8\xa6\xd9\x20\x1c\x51\xce\x1a\x49\xb2\x77\x54\xca\xef\x9d\x3a\x5a\x8d\x66\x3e\x20\x01\xcf\x59\xbf\x39\x2e\x52\x75\x58\x1a\x5a\x2b\x1a\x07\xfe\xe0\xfe\xa0\xd1\xf6\x67\x0f\x40\xe0\x33\x2a\x12\xbc\x8b\x48\x50\x72\x56\x10\x37\xf7\x74\x5c\xac\xbd\x47\x6a\xc8\xa0\x2d\x84\x1b\x0a\xfd\x35\x77\x02\x97\x0b\x9e\x29\x4b\xc7\x2e\xe6\xfd\x6d\x88\x8a\x0a\x95\x69\xb9\x11\x85\xb3\xef\x09\x97\x7a\x8b\x44\x74\x12\x31\xc9\x75\xa5\x01\x71\xbd\xb2\x1e\xa3\x64\x04\x79\x31\x17\x1d\x97\xdb\xd4\x69\x8a\xb9\xa2\x0a\x0b\x1e\x4b\x47\x55\x4d\x87\xd6\x6a\x92\x5a\xf6\xc9\x6a\x17\xb7\x8f\x9d\xc3\x38\xb7\x69\xe9\xb5\x53\xae\x01\x96\xf2\x23\xe4\x91\xf9\x66\x6a\xcd\x2d\x1e\x6c\x0e\x92\xf5\x48\x8b\x14\xab\xc0\x5c\xc3\xba\xb2\x41\x52\x44\xe8\x3d\xc1\x02\x06\x3f\x98\x08\x0a\xf9\x3e\xee\xa3\x38\x37\x58\x2a\x48\x79\x12\xd2\x16\x73\x68\xde\xb9\xb8\xda\xf7\xf5\x51\x7d\x11\xa7\xb6\x5f\x30\xb1\x92\x2b\x21\xde\x1c\x53\x4a\x82\x6f\xd4\xf9\x5d\x46\x41\x71\xc7\x8a\x84\x19\x57\x76\x5b\xbe\x0f\xf5\x98\x32\x00\x9c\x93\xde\x49\xd3\xc1\x40\x68\x7a\x63\x24\x0b\x6e\xd2\xd6\x11\xae\xf0\x72\x0d\x08\x1b\x5c\xf9\xe2\x38\x3e\xaf\xab\x56\x93\x9b\x98\x3e\x41\x54\xd7\x60\x09\xbb\x36\x37\x21\x06\x18\x19\x1f\x80\xeb\xf9\x5a\x05\x51\xa6\xdb\xdd\x3d\x4d\x46\xa7\x08\xf2\xf6\xbb\xfe\x37\x5f\x6a\x02\x0e\xd9\xf5\xc8\xed\x13\x83\x7a\x03\x07\x11\x8e\x85\x7f\xaf\xab\x9e\x67\x94\x00\xd0\x39\x05\x41\x19\x99\x8d\x72\xdb\xec\xf0\xb3\xff\x18\x15\x58\x90\xb2\xda\x83\x52\x0d\xd2\xbe\xff\x0e\x33\x8c\x2c\xf2\x43\x25\x0c\x78\x97\xfc\x59\xa4\xbc\xff\x8d\x0a\x87\x3b\xd6\xf6\xc8\xdc\x94\x63\xc5\xad\x09\xf0\x82\xa4\x4f\x61\xba\x42\xb8\xbf\x19\x0c\x42\x2e\xe4\x61\xa9\x5f\x1d\xab\x75\x7f\xb5\x96\x59\x30\xb3\xc6\x09\x05\x38\x8e\x7b\xcf\x77\x5f\x2b\x8f\x6c\x3a\x49\x91\x53\x24\x80\xe4\x21\x86\x14\x27\xf5\x36\x95\x2d\x3c\x0d\xf7\x16\xee\xdd\x5f\x82\xa3\x02\x27\xd1\x6c\xdb\x8b\xeb\x9d\x6c\xe9\xae\x6e\x0f\x5c\xa4\x75\xd7\x23\xbe\x91\x7d\xcb\xae\xe6\x5d\x7e\x4e\xaa\xd9\x7b\x5d\xe7\x4b\xc6\xc9\x9d\xf2\xb7\x35\x1f\x27\x5f\xbb\x6e\xab\x62\x34\xb0\x66\xcd\x80\x41\x00\x87\xf6\x0c\xc2\x1e\x07\x10\x5b\x5a\x62\xc8\xcb\x1d\xe5\x8f\xa6\xd1\xc6\x93\x34\x83\x8c\xc2\x05\xbb\x83\x83\xe1\x96\x2f\x26\xbb\xd7\x29\x28\xff\xf3\xff\x06\xb1\x31\xde\x78\x8e\xc6\x85\x92\xe8\xff\xf4\x19\xf2\x6c\x84\x47\x56\x01\x3a\xf7\xa0\x7e\xe1\x28\x79\x57\xf6\x3b\x9f\xa7\xe1\xd8\x5a\xff\x8b\xb6\x62\x68\x05\x81\x31\x56\xf3\x43\x25\x6c\xbb\x73\xb2\x75\xb2\xf7\x3f\x7f\x80\x18\xd5\x32\xe8\xa5\xe3\xd8\x42\xee\xc3\x71\xb9\xf8\xb6\xf7\x1f\xab\xbc\x46\x4e\xbd\xee\x46\x7c\x40\x44\x2b\x18\x5f\xbe\x56\x16\x35\x35\xc1\xaa\xcd\xad\x15\x5d\x6c\x21\x90\x54\x42\x23\x17\x5b\x8e\x20\x3d\x26\xe5\x2d\xe2\xc0\xa3\x11\x75\x7c\x2d\xe5\xc0\x09\x5f\x8b\x9f\x86\xe7\xbf\xca\xa9\x32\x0c\xf6\x6e\xda\x6e\x38\x2a\x79\xa9\x23\x4c\xda\x3e\xa9\xe1\x5f\x18\x65\x1b\xc1\x20\x89\x92\x7e\x18\x70\xca\x0c\xc1\xf1\x15\x45\xe4\x7f\x65\xec\x91\xca\x49\x10\x98\x8c\xf2\x6b\xd1\xc6\x8c\x82\xe0\x5e\x84\x65\xc1\x8c\xfd\x59\xcb\x7f\xd1\x19\xd5\x05\x6e\x62\x6a\x19\x17\x46\x64\xa6\xa1\xa4\xc9\x12\x4a\xca\x1a\xe2\x22\x96\x51\x25\xe8\x0d\x4e\x6f\xee\x2a\xc0\x39\xf1\xfa\x56\x78\x88\xfc\xd8\xb0\x13\xe6\x61\x52\x70\xd8\x0a\xe7\xe7\xb4\x26\x84\x47\xd4\xcb\x82\x92\x4a\xc4\xf6\x82\x52\x1b\x19\xa5\x09\xd8\x9a\xe6\x7c\x32\xe3\x6d\x1c\x9c\x70\xdb\xef\x90\xab\x0d\x5f\x15\x36\x51\x9a\xca\xe0\x37\xc3\x42\xbe\xe1\x32\x4c\x43\xd3\x0b\xcd\x8e\x86\xe2\x15\xf2\xc0\xa5\x07\x14\x0e\x08\x75\x5e\xb9\x67\xd0\x75\xce\xf8\x66\x2c\xe2\x1f\xe9\x7a\xe5\xc5\x0a\x0a\x6c\x60\xba\x4f\xd3\xb6\x63\x1e\x00\xb2\x21\xac\xce\x07\xc7\x1d\xd0\xa5\x4d\x1c\x81\x38\x73\x59\xb7\x12\x0b\xe6\x6f\xf3\x53\x3b\xd5\xd4\xaf\x7e\x99\x7d\xef\x77\xf0\x0c\x18\xa1\x07\xb0\xba\xb0\xe9\xdf\x1a\xfb\x4c\xeb\xfb\xb4\xdb\x60\x5a\xb7\x51\x31\x1d\x91\x19\x99\x03\x51\xd5\xbd\x00\xe7\x0b\x29\xa4\xef\xd2\xf8\x61\x94\x88\x1b\x68\x93\xd1\x39\x54\x01\xf8\xec\x67\x26\x65\x5c\x80\xec\xcd\xf6\xb6\x77\x27\x4d\x77\xcd\xa6\x79\x98\xd9\x34\xdb\x55\xc9\x99\x28\x51\x93\x93\xad\xad\x74\x33\x22\xef\xc9\xb5\x44\x44\x51\xa7\xab\x54\x91\x5e\xc0\xa5\xa5\x16\xce\x43\x07\x85\x4f\xd2\xbe\x89\x19\x14\xb5\xbc\xec\x30\x5f\x3e\xf7\xce\x4a\xde\x22\xc4\xf7\xa4\x86\xd5\x88\x02\x09\xce\xb6\x4b\x0a\x7f\x73\x49\xc9\x3e\x76\xc2\x34\x1f\x74\x0d\x70\x21\x98\xb2\xc7\xdb\xde\x59\x38\x4b\xa1\x06\x76\xcc\x9c\x4a\x1c\x76\x6c\x30\xe3\x95\x58\xbe\xaf\xd5\x45\xaf\x2b\x67\xe1\xb2\x5b\x8b\xc5\x68\x64\xd3\x39\xbf\xfd\xce\xab\x26\x75\x16\x40\x70\x3c\x4f\xe5\x7c\x6b\xad\x22\x6e\x11\x9b\x82\x8d\x30\xdd\xa7\xa0\xeb\x1d\x5b\xd5\x45\xdd\x26\x36\xb5\xcd\x9f\x6b\x06\x66\x38\x32\x61\x3f\x56\x5d\xa5\x1f\xa8\x2e\x75\x66\x8a\x90\xf2\x53\x0d\xfa\xc6\xc4\xab\x2e\x14\x41\x80\x79\x94\x5e\x87\xaf\x15\xd9\x6e\x96\xa7\x66\xbd\x63\x53\x08\x46\xb9\xc2\xef\xdd\x96\x77\xa7\xef\x8e\x7f\xc6\x63\x4b\x5f\x4e\x62\xdb\xb5\xa3\xc8\x82\xb5\x6d\x65\xbf\xe3\x4a\x2a\x17\xb8\x74\x6f\x2a\x9a\xaf\xa8\xe8\x20\x07\xc4\xc9\x2d\x38\x51\x92\xe9\xf2\xc6\xa5\x1b\x66\xc3\x30\xcb\xd8\xf0\x0a\xbb\x82\x02\x79\x5c\x19\x6f\xe1\x81\x7e\xae\xf4\x68\x9e\xf0\xa6\xf9\x46\x4b\x65\xa6\x4e\xb6\x1a\x9f\xff\x3c\xc3\x31\xff\x42\x3b\x6e\x6f\xb7\xf4\xa0\xe2\x08\x12\xe8\x4a\xf9\x0a\x48\xaf\x72\xf8\xc4\xdf\x45\xf1\x38\xe2\xfc\x7b\x40\x75\x0b\x0d\xb1\x8f\x5d\x99\x81\x8e\x65\xbc\x15\xbd\xd2\xa0\x0c\xf4\xac\x10\x3a\xe3\x24\x65\x21\x45\xbe\x51\xf6\xd0\x11\xba\xc1\x86\xbf\xaf\x5b\xb9\xde\x6f\x4d\x37\x9b\xee\x6f\xa6\x36\xcb\x4d\x91\x1a\x26\xa5\x14\xe5\x65\x85\xcf\xba\xaf\x55\x11\x08\x3f\x3d\xeb\x21\xff\xe7\x34\xdd\xef\x39\x9a\x44\x17\x08\x7e\xf1\x6b\x72\xad\xf8\x63\x56\xe3\x24\xcf\x1a\xe5\xe0\x72\x22\x1a\xe4\xdb\x92\x95\xfe\xb4\xaa\xd7\x74\x88\xa5\x33\x34\xd1\x1c\x3d\x0d\x7a\x3f\x91\xd8\xc2\xb6\xe4\x19\x73\x25\x3b\xc7\x70\xf6\x17\x64\x7a\xf8\xba\x4e\x86\x2f\x2f\x03\x61\xa6\x8c\xda\xe4\x96\x33\x38\x68\x70\x1c\xa5\x45\x99\xbe\x9f\xc5\x48\xa7\x12\x8e\x65\x48\x3d\x28\x86\x26\xe6\x63\xd1\xd1\xee\x97\x07\x6a\x0d\x07\xff\xf6\xb6\x6a\xf3\x9a\xee\x80\xdd\xb7\xdc\x2c\x23\xfa\x4c\x53\x2e\xc3\x75\x10\x56\x73\x8f\x73\xc8\x93\x23\x61\xc0\x6c\xe4\x3e\xf9\xe1\x13\x21\x53\x19\xbf\xc3\x87\x9b\x66\x34\x32\x8a\x09\x42\x2f\x41\xc4\x7b\x8f\x54\x36\xef\x82\xa2\x22\x0d\x92\xe1\x30\xcc\xcb\x48\x84\xc5\xa5\xe1\x0d\x5e\x05\xbe\xc7\x51\xec\x7a\xba\x5d\x45\x8a\xfa\x1d\xac\x54\xee\x36\x50\x54\x7f\xeb\x83\x30\x8f\x2c\x5a\x61\x44\xaa\xa5\x1c\x79\xc4\xfa\x67\x95\x54\xcf\x69\xdd\x09\x03\xf9\xc4\x1d\xe5\x39\x87\xef\x7c\x13\x9b\x13\x1b\xf2\x12\x27\xd8\xb0\x3c\x00\xdc\xe1\xff\x01\x62\x84\xff\x83\xd6\x29\x7f\x5e\x91\x89\x82\x4d\x45\x8b\xc4\xdf\xc0\xfc\x21\x80\xe3\xde\x76\x29\x92\x88\xcb\xcf\x84\xe8\x9c\xda\xc5\xa2\xbb\xaa\xe8\x98\xb9\xb4\x88\x9f\x7e\x4b\xfd\x5c\x37\xb5\x66\x08\x97\x97\xc5\x48\x5a\xce\x85\xdf\xfb\x47\xa5\xa3\xe8\x04\xb7\x72\x9b\x76\x92\xb4\x5c\xb4\x28\xa8\xe1\x54\x05\x68\x81\xaf\x35\xdc\xf6\xef\xff\x02\x75\x83\x02\x79\x7d\x76\x5c\x25\x46\x73\xfd\x46\xaf\x2a\x55\x86\x3b\x8e\x6a\x61\x60\x98\xb3\x12\xdb\x0a\x28\x77\x1c\xdc\x3f\x86\xaf\xe3\x18\x05\x5d\x59\x9c\x3b\xc8\x08\xd4\x7a\x97\xb9\x25\xa4\xbb\x62\xda\x0b\x3d\xd0\x8c\xc2\x55\xcb\xd0\x51\xd1\x08\x6f\x38\x32\xf3\xbf\x54\x10\xed\xcc\x06\x49\x4c\x31\xb8\xc4\x20\x47\x55\x1f\xfc\xf1\xb1\x77\xca\x4e\x8d\x15\x54\xf5\x58\x4b\x03\xbd\xe8\x35\xe5\xbb\xe9\x41\xb1\xc8\xde\x27\x53\xee\x24\x03\x3c\x83\xc8\x07\x53\x80\xbc\x85\x85\x66\x6a\xd9\x5b\x41\xba\x84\x11\x65\x30\x94\x02\x2f\xdb\xab\x99\x41\xa2\x10\x5c\xc1\x82\x43\xdf\xc6\x58\x7c\x11\x01\xf7\x3b\xfb\xde\xd8\x13\x69\xc7\xb9\x8d\xc1\x4c\x09\x6f\x8f\x35\x35\x10\x16\x92\xf2\x76\x69\xb0\x1c\xb9\x47\x11\xe5\x45\x2a\x4c\xa4\x30\x33\x67\xb4\xcd\x39\xa3\xba\x44\xb2\x30\x23\x67\x19\xf0\x98\x9d\x13\xfa\x33\xf8\xaa\xdb\x11\x17\x6a\x32\x61\x71\xf5\x1a\x42\x28\xf4\x7f\xfd\xed\xb6\xc2\x80\x5d\xd6\xc1\x6b\x77\x63\x27\x7d\x5e\x2a\x99\x3e\x72\x03\x2c\x5d\x4c\x1e\x0d\x16\x92\xef\x3f\xd4\xf4\xa7\xc8\xd7\x23\xa7\xff\x48\x3b\xe8\xdf\x9c\xca\x8e\x2d\x2f\x37\x5f\x32\x43\x36\x92\xae\xed\x5d\x75\xcd\x7b\x13\x33\x34\xb1\xe9\x8b\x62\xb5\x83\xe5\x1d\x12\xc9\xdb\xf7\xf1\x43\x82\xd1\x53\x5d\x40\x38\x35\x11\xa4\xdf\x52\x67\x97\x4d\x43\x56\x0c\x06\x22\x8a\x35\xbc\xf8\xa6\xe5\x91\x60\x91\xed\x87\x59\x64\x48\xdb\x91\x5e\xd3\x09\xa7\x7b\x95\xa0\x8f\x5c\xff\x75\x6c\x4d\x3e\xe3\xfd\xa5\x4d\x45\xfa\xbd\x39\x56\x3d\xe3\xa3\x1a\x07\x71\x7f\xb3\x17\xa6\x59\x3e\x30\xbc\x68\x24\x1d\x46\x1f\x43\xc4\x83\xdc\x14\x4e\xb7\x6d\x8e\x2c\x3f\x0b\xf3\x20\x19\x2a\x11\xab\x4b\xaa\x07\xe3\x92\x5b\x60\x5d\x85\x8c\x13\x75\x0f\x24\x68\xe1\xf0\xb3\xcc\x32\xaa\x2b\x6f\xa9\x27\xbf\xea\x30\x14\x2f\x25\xa0\x0f\x12\xce\x79\x1a\x33\x1c\xe6\x57\x61\xbc\x05\x83\xba\x57\x09\x96\x16\x71\x97\xdb\xf6\x39\x71\x42\x8f\x27\x49\x14\x07\xff\x08\x87\x36\xdb\xe3\x4b\x5d\x3b\x28\xc4\x01\xa4\x83\x55\x88\x1d\x07\xde\xca\x3c\xa3\x7e\x6e\x93\xd9\x60\xbb\x37\x56\xca\x97\x4f\xb7\xcb\x21\x44\xdc\x0d\x16\x02\x71\x48\x15\x32\x7f\x1b\x74\x27\xdc\x52\x29\x17\x17\x12\x50\x22\x88\x2c\xea\xee\x65\xfc\x80\xeb\xe3\x75\x44\x08\xa6\xc8\x93\xa1\xaf\x88\xc2\x03\xfa\xa1\x92\x3c\xff\x21\x16\x3f\x27\x32\xd6\xc2\x34\x89\xcb\x43\xd8\x44\xb3\xf8\x1d\x09\x1b\x54\xc2\xe2\x86\x22\x67\xfa\x58\xb3\xa3\x4c\xb3\xc7\x94\xce\x9f\x2d\xd2\xa4\x93\xc4\x5d\xde\x4e\x02\x14\x55\x0c\x25\x97\xc1\x09\xcd\x1b\xfd\xef\xef\x52\xc7\xe1\x99\x96\xc2\xc2\xce\x4d\x1a\x5f\x59\xe4\x70\xe7\x8c\x12\x60\xdd\x09\x9f\x07\x86\xe5\x6d\xad\x29\xf2\xeb\x0a\xf4\xf9\x5b\x18\x46\x21\xdb\xd8\x3a\x58\x07\x9f\x6f\xf6\x4c\x9c\x9b\x4c\x8c\xaf\xe0\x9c\x14\x13\xfb\x39\x25\x01\xd0\x4f\x4d\xdc\xcd\x92\x18\x49\x15\xac\x8c\xb3\xb4\xf3\x91\x60\xb9\x0e\xab\x0d\xbf\xee\x2d\x65\xc8\xf6\xa5\xa6\xa1\x51\x65\x15\xd0\x52\x4d\xbd\x39\x30\xd9\x20\xb4\x29\x38\x62\x04\xa2\xd2\x50\x5a\x3e\xde\x89\x12\x8a\xc5\x68\x63\x56\xcb\x32\xb5\x3c\xa2\x60\x86\x80\x8c\x7c\x8d\xfc\x9f\xb0\x80\x56\x08\xb3\x57\xb3\xc7\xcb\xb8\x09\x87\x0a\xd8\xbb\xb0\x2f\x21\xba\x86\x84\xc1\x2b\x18\x6a\x46\x79\xd1\x82\x77\xe8\x00\x47\xb3\x85\x4d\xe1\x88\x44\xbc\x6a\xe3\x6f\x60\x64\x91\x17\x39\xaa\x79\xe4\xee\xe8\xba\xd0\xf6\xb6\x37\xb6\x60\x3a\xce\x66\x95\x8b\x74\x0b\x91\x2e\x0e\x92\x6b\x48\x62\xf2\x8d\xea\x3e\x9f\x26\x8f\x59\x5a\x6a\xf6\x6d\x1c\x16\x60\xb7\x66\xf2\x1a\x4a\xe7\x60\x2a\x98\x89\x56\xa0\x84\xfe\xd0\x1d\x99\xd4\x74\x93\x23\x0d\x45\x13\xfc\x36\xe5\x6d\xf8\xba\xa2\x3c\x9d\x60\xcd\x8b\xc0\x60\xc3\x8b\x0d\x2a\xf8\x5c\xb2\x66\xd3\x22\xb3\xf8\x53\x47\xd8\xbf\xe2\x9b\x05\xa6\x77\x55\x93\x0b\x25\x89\xb4\xd2\x20\xec\x67\x6d\x1f\xbe\x71\xa8\x9d\x4e\xc8\x3d\xe1\xfa\x69\x2e\xa8\xa7\xd1\x00\xf7\x34\x29\xb2\x9c\x72\xe3\x0d\xd5\x02\xfc\x91\x22\xad\xfb\xc8\x91\xb0\x05\x49\x1c\x27\x61\x96\xd9\x02\x95\x55\xee\x49\x1e\x6b\x94\x19\x0d\xa3\xc8\x82\x3c\x5d\x61\x50\x18\xd9\x20\xcf\x66\xbd\xdc\xfc\xe9\xb1\x12\xa5\x47\x75\x86\xcb\xeb\x58\x10\xf0\x29\xae\xd5\xb2\x0c\xf6\xd0\x56\x54\xbe\x1f\xab\xdf\xd2\x10\x8a\x12\xae\x1f\xed\xd8\x30\x6b\x83\xef\xd4\x3e\x45\x2f\xc7\xd7\x75\x8d\x38\xdd\x30\x0f\x06\x1c\x1c\x73\xca\x19\xcb\x43\xf2\xcf\x4a\x6e\x2d\xc9\xd0\xf5\xb0\x5f\x83\x2e\x96\xb5\x70\x8d\x74\xca\x3e\xa8\x25\xbb\x48\x8a\x7c\xae\xdc\x7a\x98\x7c\xe4\xb7\x30\xee\x0f\x90\x86\x13\xe6\xc0\xf2\xf5\x60\xcc\x58\xbf\x5f\x10\xc9\x72\xe4\x17\x99\x41\x23\x2c\x46\xff\xbd\xb1\x9a\x8a\xf7\xb4\x02\x83\x3d\xb2\xd3\xa7\xa0\x3f\x4b\x30\x23\x72\x74\xfe\xd5\x33\xd4\x3e\x8c\x92\xc8\x29\x98\x4f\x9c\x1a\x4c\xfd\x2e\x30\x1d\x45\xa4\x27\x3d\x65\x92\x8d\xf7\xc6\xc9\xc3\x73\x1a\xde\x95\xe2\xdc\xa1\x50\xf9\x88\x47\xb0\x6e\xd2\xd4\xc4\x1c\x7a\xc2\xdd\xbe\xa6\xfa\x26\xaf\x4d\x73\xd9\x2c\x36\x83\x81\x49\xfb\x68\x9f\xc4\x8f\xcf\xb4\x15\xc4\x8c\x41\xb5\x2e\x40\x59\x99\x77\x34\x85\x4f\xf8\xa0\x44\x1a\xed\x11\x2c\x8e\xe9\x78\x86\x0d\xfc\x58\xf5\x37\x3d\x9a\x8a\x37\x0e\x3e\xdf\xec\x12\x5f\x7b\xa6\x59\xae\x18\x1d\x26\x04\x18\xe2\x15\xd9\xe1\x28\x4c\x01\x45\x76\xd4\x28\x8e\x39\x68\xae\x5d\xb5\x18\x4e\xcd\x09\xaa\x1c\xc8\xda\xfe\x99\xdb\x81\xbd\x22\xee\x1a\x1c\xd8\xaa\x20\xb2\xa3\xed\x33\xb9\xb0\x3a\x48\x4f\x3d\x9a\xaa\xd8\x2f\x2d\x35\x8b\x38\x8c\xec\x5a\x79\xc0\x78\x22\x91\xd3\xd4\x34\xcd\xd7\x5b\x89\xb0\x0e\x3e\xdf\x3c\x34\xff\xa5\x3d\xe5\xd2\x40\xdc\x7b\x0a\x66\x1d\x63\xfb\x96\x6a\xbc\xf9\xbe\x76\xc6\xcf\x12\x57\x80\xe6\x3d\x56\x22\xb5\x82\x9d\xb9\xa6\x99\x2d\x1e\x52\xec\x24\xcc\xe0\x9a\x0e\x0e\x8e\x9a\x4c\x26\xcd\xac\x13\x19\x2d\x8f\x03\xd1\x9a\xd8\xca\xd9\xb1\xb4\xd4\x4c\x8b\x8e\x8d\x6d\xf6\xf5\xc2\x72\x1f\x1f\x92\xc0\xd7\x5b\x7e\x49\x5c\xd2\x75\x9e\x57\xdc\x7e\x1a\x58\xd3\xdd\xe5\x5b\x3e\x6f\x78\xc1\xc5\x6f\x3f\xd3\x56\xd2\xed\xe7\x28\xdd\x8b\xca\xd6\x71\xad\xb9\x00\x3e\x11\xfa\xbd\xcf\x3f\x83\xc8\x08\x01\xcc\x26\x7e\x10\xe3\xb1\xad\xed\xad\x89\x29\x7f\x73\xb6\x92\x60\xa4\x97\x65\xe8\xdc\xb8\x92\x86\xf4\x3e\xd0\xc9\x1a\x3c\xc1\x97\x40\x14\x00\x13\x59\x11\xc8\xe2\x1b\x97\x30\x0f\xe3\x2c\x0f\xf3\x22\x97\x72\x96\xe8\xdc\xa8\x4a\xb0\xd6\x42\xca\xa2\x70\x38\x84\xa8\xa2\xa3\xe8\x21\xab\x85\xb2\xe5\xf6\x76\x69\xcd\x70\xe4\xa3\x75\x17\x9b\xa8\x96\x24\x3c\x8c\xd7\x6c\x96\xf3\x99\x86\xa5\xc2\x9b\x88\x6f\x3e\x91\x0f\x6f\x18\xe6\x59\x11\xce\x28\xdc\xd8\x4c\xdb\x63\x34\xce\x6a\xea\x9f\xfb\x2e\x6a\x18\x06\x21\x1d\xff\x18\x35\x84\x1c\xb0\xbb\x67\x74\xe9\x7c\x5b\x5b\x86\x06\xf4\xfb\x72\x7e\x1c\xf0\x6c\x76\xcb\x9e\x5f\x42\xc2\xec\x41\x98\x41\x0a\xde\xfd\xdf\x83\xad\xc2\x99\xfb\x1d\xf9\x79\x4d\x04\xda\xb3\xdc\x30\x0c\x30\x25\x82\x47\xbe\x56\x04\xc0\x94\x04\x08\x58\x3b\xdb\x81\x5d\x6e\x69\x7c\xc2\x2d\xe5\xbe\xc4\x36\xcc\x07\x36\xdd\x49\x93\x29\x84\xb2\x1e\x9a\xfd\x0d\x58\x79\x99\x22\xa5\x22\xfe\xbb\x78\x60\xd9\x7f\xd8\x8d\x88\x75\xfe\x2d\xb6\x39\x36\xd2\x9b\xaa\xa4\x17\x0c\xd2\x30\xcb\xc3\xd8\x50\xf4\xb1\x89\xea\xe6\xe6\x55\x2d\x5e\x1c\xc6\x76\x56\xed\x04\xc6\xcb\x48\x7b\x9e\x8f\xf1\x19\x2f\x23\x36\x4d\x2d\xbf\xa4\x88\x48\xaa\x9c\x36\x9a\x28\x6a\x34\xbc\xba\x86\x82\x4f\x51\x9d\x36\x83\x27\x8d\xbc\xd5\x7d\x78\x8c\x7c\x53\xd7\xb0\x6c\x7a\xa9\x61\x8a\x41\x2c\x6e\x56\x64\xe5\x1b\x55\x1d\x18\x98\x61\xa7\x48\xfb\x36\xd5\x9c\xc2\xb7\x54\x2e\x0c\x67\x88\xe8\xf5\x7c\xd2\x4a\x36\xe9\x5a\x18\x77\x61\x8d\x91\xa0\xb8\x44\xfe\x25\x5f\xd7\xc9\xcc\xa7\x26\xf4\x0a\xfc\xc8\xee\xa3\x1f\x97\xaf\xa7\x96\xd7\xbe\xe5\x66\x2f\x34\x79\x43\xb3\xaa\x13\xea\x45\xc6\x77\xab\x13\xf4\xcb\xcd\xd8\x0c\x25\x9d\x56\x07\x41\xfd\xf4\x74\x2e\x38\x03\xfa\xb5\x82\xf4\x73\xf1\xc1\x3e\x9f\x53\x2c\xbf\x12\xb6\x76\xae\x5d\x55\x79\x8f\xa8\x01\x51\x90\x63\x9e\x56\xee\x4a\x95\x3f\x4a\xb9\x62\x47\x5b\x15\x9a\xa9\x72\xfb\x20\x87\x80\xae\x1e\xa5\xed\xea\x59\xa6\xa6\x18\xab\x24\x73\xb9\xd5\xef\x5e\x5a\x6a\x76\x4c\xbc\x9a\x16\xa3\x3c\x80\x6b\x52\xab\xea\xe7\x0b\x4b\xbd\xc4\x66\x48\x6a\xb0\x54\x21\xc5\xfe\x8e\x82\x42\xc3\x6c\x15\xce\x7a\x7a\x8a\x0f\x3e\xdf\x7c\xa9\xc8\xf2\xb0\xb7\xd1\x50\x4d\xc4\x78\x6f\x09\x12\x6a\xa6\xb8\x93\x0c\x01\xb6\x94\x46\x21\x9f\xef\xbe\xac\x65\x65\x8b\x54\xd8\x6a\x34\xa7\xae\xf0\xd1\xd4\xf4\x95\x06\xc9\x90\xf4\x2c\x81\xeb\x15\x76\x17\x5f\x5d\x7d\x34\x05\xd0\x5e\x58\x6c\x8e\x6c\x9e\x82\xea\x37\x60\xa9\x56\x81\x74\x69\xac\x97\x77\x4b\xff\xfb\xff\xee\x97\x1a\xe5\x41\xea\x78\x71\xfc\x33\x69\xec\xdb\x70\x68\xbb\xa1\xc9\xed\x0e\x5f\x18\x7b\x1f\x46\x0c\x41\xea\x4d\xac\x15\xbe\xc1\x98\xf1\x9f\xa9\xe4\xc0\x59\x95\x15\x3f\xab\xc6\xa6\x9f\x98\x68\xc7\xdf\xa8\x49\xf2\xaf\xed\x85\x84\x5f\x71\xab\xd2\x7e\x19\xe5\xd9\x93\xbe\x9f\xea\x03\xac\x49\xc0\x6c\x7e\x4c\x1b\x5e\x7c\x3d\x5a\x27\x58\x34\xe8\x47\x43\x75\xfd\x4e\xa5\xa1\x9c\xcc\x98\x22\xbe\x12\x68\x0d\x83\x76\xe1\x5c\xfe\xa8\xa5\x92\x8e\xf0\x5f\x10\x0e\x3c\x8e\x7c\x93\x2b\xc3\x7b\x3a\xda\x31\xbd\xa4\x14\xca\xa7\xc9\x00\x0e\x34\x23\x6b\x52\xd7\x1f\x85\xfc\x39\x23\x8b\xf8\xc6\x11\x02\x67\xb6\x0c\x9e\x73\xbb\x53\xa1\x41\x8e\xfa\x36\x8b\x5f\xff\xaf\x68\x7b\xa0\xc1\xe3\xb4\x2e\xca\xc3\x5f\x87\x01\x3c\xa5\xd8\xaf\x7e\x76\x42\x4f\x2a\x2d\xdb\x7e\xed\x2c\xcc\x33\x5b\xad\xeb\x46\x5b\x58\xd4\x84\xed\xd2\x08\x71\x4d\x1d\x45\x26\x5b\xcd\xa8\x9b\xc9\x51\xf9\x2d\x3b\x31\x88\x4b\x53\x68\x5a\x27\xa7\x18\x8f\x1a\xde\xcf\xd8\xae\xa1\x4f\xdb\x15\xab\x19\xb5\xed\x0e\x6d\x8a\x3c\xb1\x10\xca\x6c\x49\x4e\x2d\xbb\xc6\xce\xf2\x1b\x2b\xad\x66\xfc\x1f\x75\x8d\x0f\xcd\xc0\xa6\x79\xd8\x2b\x7d\x00\x5b\xe5\x15\xbc\x81\xe9\xe6\x9b\xfa\x34\x02\xa4\x91\x9c\x4c\xa9\x48\x2c\xd2\x07\x85\x61\xb6\xe6\xc4\xc9\x8a\x30\x20\x51\x3c\x27\xfe\x74\xb2\xe5\x4b\xa3\x27\x9d\xcf\xdc\xb1\x86\xe1\xca\x8e\xcc\x5d\x29\x34\x95\xef\x2f\x41\x46\x4d\xd8\x6d\xa2\x28\x59\x47\x7e\x4d\xbc\x03\xdf\xd0\xfb\x3d\xcd\x6e\x70\xbd\xb2\xb3\x8a\x34\x7b\xbc\x92\xb5\xf3\x76\xef\x21\x05\x36\xd8\xff\x9b\xf4\xc4\x58\xe6\x4f\x80\x27\x1f\xa9\x2c\x54\x76\x9d\xba\xec\xe2\x41\x29\x47\xb4\x14\xb4\x18\x0d\xc5\xc0\x31\x3e\xd6\xa6\x75\x28\xe4\x0c\x8a\x50\xee\x9a\x6b\x81\xca\xcc\xb0\x48\x0d\xfc\x4d\x64\x95\xbe\xa1\xa8\xbe\xee\x12\x29\x1b\xc2\x84\xdb\xaa\x1a\xb0\x96\xe4\x36\x23\x28\x13\x0e\xda\x1b\xda\xcd\xbf\x0b\x67\x09\x36\xe3\x4d\xa5\xe4\x77\x5e\x47\x09\x77\x75\x71\xc1\xa4\xd1\xc6\xe3\x1e\x46\xca\x8d\x57\xb0\x0e\xe7\xc6\x9e\x7d\x9c\xc3\x50\x1c\xd1\x3f\x6d\x29\x8e\x80\xf7\xb0\x31\x31\x9d\xdc\xfa\xc3\xad\x2b\xb4\xcb\xe0\x7c\xff\x04\xbc\xf2\xe2\x47\x36\x1c\x0d\xd6\x4f\x15\xe4\x6a\x57\xe5\xb8\x4f\x62\xfb\x99\x32\x54\x80\xad\xfc\x14\x4c\x08\x4a\x52\x77\x5a\x9a\x6d\xca\xc3\x0e\xb9\x36\xcf\xb3\x46\x68\x0a\xfc\xd1\x45\xc5\xd7\x75\xa3\xa5\x23\xc7\x53\x63\xc5\x1e\x7a\x0b\x90\x70\xee\x0a\x6f\x2b\x7e\xf0\x96\x62\x1b\xde\x49\x59\x10\x8a\x68\xff\x97\xbd\xb0\x38\x78\xfe\x87\xe4\x32\x71\xc3\x3e\x30\x17\x1c\x49\xd0\x06\xc6\x6c\xde\xc7\xe0\x49\xaf\x28\xd9\x69\xec\x12\x54\x3d\x71\xe6\x5f\xa3\xf9\x87\x5d\x78\x53\x77\x98\xfd\x60\x6a\xf7\x7d\x65\xb1\x99\xf4\x93\x78\x23\x59\x6d\x78\xb2\x1a\x0e\x27\xf8\xc6\x2d\xba\x41\x92\x86\x2f\x27\xb1\x0e\x56\x6e\x8d\x7d\x40\x72\xab\xae\x7f\xa1\x18\xad\x9b\x14\x02\x1a\x8e\x63\xd5\x0d\xe6\x07\xca\xf3\xee\x99\x20\x8c\xc2\x7c\x63\x96\x06\x11\x30\xd2\x9f\x50\x8b\x8b\x68\xa0\x78\x84\xf0\xbb\x74\xa2\xf1\xdf\x68\x3d\x7e\x7b\xc4\x48\xd2\x04\x20\x38\xee\x7d\xe0\x9b\x96\xa7\xe6\xea\xa5\xd6\x82\x66\x17\xc5\x9f\x0f\x61\xc8\x25\x1d\x46\x63\xe6\x14\x36\x0e\x09\xbc\xe2\xc3\x7a\x4d\x12\x11\x98\xdd\xef\xd5\x92\xca\x55\x2d\x90\x0c\x5f\x13\xe1\x7a\x2c\x92\x86\xe0\xb3\x95\x08\xab\x5c\xac\x4e\x46\xc6\x89\xd7\xe0\xac\x12\xee\xa8\x2d\xa9\x93\x43\xf3\x2f\x36\xf7\x2d\xef\xa5\x07\x77\xc8\xd9\xf2\x3b\xb1\x38\x8f\x61\x3d\x0a\xc9\x67\xc3\x31\xd6\x80\xff\x44\xde\x6e\xc6\x8b\x4f\xff\x94\xec\x19\x2c\xd2\x3b\x4a\xde\x8c\x8b\xd3\x2e\x7e\x58\x99\x67\xd8\xf6\x63\x54\x00\x80\x01\xba\x4e\xd8\x5c\x66\xc1\xaf\x0c\x20\xad\x11\x9c\x39\xdf\x1e\x2b\x81\xec\x0b\xd8\xd6\xfc\x7b\xaa\x53\xd5\xb8\x86\x1d\x2d\xa9\xc6\xd7\x4a\x22\xd5\x1e\x19\x45\x26\x8c\x51\xeb\x7b\x91\x13\x75\x8d\x09\xed\x1d\xbe\xa1\x6d\x28\xd4\xf5\xaa\x4a\x74\xbe\x62\xe3\x37\x52\x88\x2f\x57\xba\x2b\xa5\x6f\x43\x49\x9e\x96\x6e\x6a\xb8\x56\x7a\x87\xfb\xd9\x23\xfa\x50\x75\x64\x73\xf5\x00\xb6\xf0\x04\x36\x27\xdf\x28\x06\x6f\x10\x63\xf2\xa7\x6b\x0e\xaa\xfd\xcd\x8d\xa4\x10\xf2\x10\x96\x78\xd0\xea\x5b\x6f\x8e\x15\xa6\x30\x2a\x86\xf0\x18\x30\xcb\x6f\x2a\x72\xcc\x37\xeb\x98\x4c\x4c\xbc\x91\x20\x46\xde\xaf\x2b\x85\x07\xbc\x84\x96\x4b\xa6\xce\x92\x69\x94\x98\xe4\x49\xb5\xc9\x46\x21\x46\x0b\x87\xed\x6d\x75\xf0\xde\xae\xab\x1a\x0a\x08\x81\xe1\x26\x08\xad\x00\x12\x96\x66\x02\x85\xde\x38\xae\x9a\xe7\xd6\x4d\xd7\xce\x68\x7e\xd1\x86\xa3\x92\x7a\x87\x46\x11\xe5\x62\xad\xae\x9b\x05\x26\x82\xba\x2e\xa2\x70\x34\x16\xf0\xb5\x52\x3d\x0f\x6c\xb8\x66\x3a\x91\xcd\xe6\x34\xa9\x33\x77\xde\x61\x89\x7c\x6a\xa2\xba\xae\x4e\xfb\x16\xcb\xf3\xcf\xb4\x2b\xf9\x1f\x95\xae\x4f\x37\x5e\x32\xba\xc3\xfa\xaa\x66\x61\xb9\x3a\xf6\x3a\x25\xd9\xaa\x1d\xe5\x61\x10\x66\x43\x84\xd9\xd8\x7f\x68\x04\xe2\x6b\xc5\x88\x57\x04\xab\xbb\x1b\x42\xf5\x73\x81\xcf\x29\xd4\xa5\x9e\x6e\x7b\xce\x2a\x38\xb3\xc0\x27\x70\x39\xce\xc9\x3a\x96\x6b\x51\xf8\x8b\xc9\x46\x20\x44\xba\x8a\x8d\x2a\xd0\x50\x45\x37\x75\x71\xfc\xb8\xd8\x99\x95\xf9\x95\x67\xca\xd1\x46\x74\xf0\xda\xd8\x53\x60\x9e\x68\x11\xbc\x06\x0b\xfb\x0d\x0c\x9e\x23\x65\x2e\x7f\x1f\x0e\xd5\xc3\xb1\x62\xb0\x60\x46\x28\xbc\x25\xd8\x48\xd8\xcf\xa0\x82\x19\x0c\xc8\xf7\xf0\xc4\x18\xb8\x1d\x6d\xef\xb2\xbc\xa1\x22\xb7\x5b\x78\x13\xe7\x97\xad\xec\xf7\x8b\x63\xf1\xa0\x00\xc4\x75\x25\xfc\x35\x18\x32\x6c\x3e\x88\x81\x21\xaf\xf3\x06\xc6\x41\x90\x94\x8a\x83\x61\x64\xcd\x6a\xa5\xbf\xfe\x98\x8a\xc1\x8e\xb9\x34\x67\xa7\x48\xe3\x30\x1b\x10\xb8\xfd\xd0\xbc\xc3\x13\xd3\xcf\x09\x9d\x4c\x0d\x87\x5b\x9a\xac\x37\x5c\x85\xa4\xc9\xb5\x0f\xc1\x88\x38\xfa\x99\x32\x3e\x06\x02\x1e\x11\x31\xf4\x21\x61\x82\x39\xdb\x2b\x39\x6a\xcf\x95\x46\xac\x82\x61\xdc\xdf\xe9\x99\x09\xd0\xf6\x8c\x69\x7c\x8f\xc6\x08\x2b\x0a\x0b\x47\x74\xdf\x95\x82\xcb\x9f\x62\x84\xf9\x06\xae\x28\xce\x90\x6f\x3a\x73\x9d\xda\x61\xb2\x26\x78\x1e\xe9\xbd\x54\xd2\xc7\xd3\x6d\xcf\xe5\x99\x99\x9a\xb8\x2f\x61\x1e\xea\x16\xef\xe0\x87\xf9\xc6\x31\x3e\x04\x26\x0e\x6c\x64\xbb\x94\xfd\x61\xb5\xe3\xb1\xd2\x9c\x43\x09\x19\x2e\xd4\x77\xf0\x15\x88\x34\x4e\x56\x89\xc0\xcc\xf0\x71\x05\x0e\x7f\x02\xdb\x83\x37\xd4\xd8\xb7\x38\x7f\x6e\xbb\x22\x63\xfb\x23\x32\x32\x28\xe7\xfe\xfe\x78\xba\xff\x1d\xc9\xd7\x47\xe4\x20\xc0\xb7\xbc\x52\xa9\x83\xd2\x78\x09\x80\x4f\xb5\x1d\x5d\x54\xcc\x58\x3d\x5b\x30\x03\x11\x8e\x57\xee\xf7\xe5\x1b\x17\xfa\x64\x45\x6a\x77\x39\xc2\xc7\x5f\xff\x19\x90\xaf\x6a\x67\x1d\x43\xf0\x5f\xb6\x1d\x92\x21\xf8\xec\x44\xb5\xf1\x7c\xec\x35\x2a\xb2\xbf\x43\xc7\xb6\x88\x26\xab\xd2\xf4\xfb\x8a\xe8\x6e\xdd\x44\xb9\x4d\x77\x94\xbf\xc9\xc0\x7d\x7a\x37\xac\xa4\x9d\xed\x72\xaf\x22\x7d\xff\x81\xd2\x78\xfd\x33\xc5\xe5\xf3\xe1\x58\x21\xac\x74\x3c\x1d\x87\x39\xc0\x57\xac\xb9\xa0\xd0\x6e\x2c\x24\xe6\xec\x51\xf9\xfc\x42\x83\xa9\xb4\x6f\x90\x07\x71\x02\xa9\xee\x27\xcf\x4f\x9d\x79\x07\x9f\x6f\x8e\xd2\xa4\x17\xe6\xb4\x2d\x25\x94\xd6\x31\xf6\xd6\x13\x6b\x61\xb1\xd9\x49\xad\x59\xed\x26\xeb\x68\x9e\x82\x1f\x7d\xbc\xe5\x21\x44\xc7\xdd\xb4\x58\x9b\x04\x0d\x05\xa9\xfa\xae\x22\x55\xfc\xae\x06\xd7\x0d\x29\x59\xbc\xc3\x53\x18\x3c\x20\x7b\xa5\xfa\xaa\x65\xcf\x5d\xc3\x5b\xf3\x0d\xd6\x10\x23\xff\x55\x55\xe9\xd1\x54\x26\x6d\x69\xa9\x59\xe4\xa5\x0b\x1d\x5a\x4e\x57\x88\xb6\xa1\x26\x1e\xe7\x13\x0e\x4f\x78\xa1\xae\x82\x47\x67\xe3\x28\x67\xca\x7e\x59\xd6\x0a\x5d\x71\xbb\xe5\xbd\xb1\x77\xc7\x9f\xa4\x2f\x60\x02\xca\x8f\x3b\xf0\xae\xae\x1f\x62\xad\x70\x2c\x23\x33\x5a\x47\xcf\x15\x92\x61\xf1\xa2\xce\xa0\x54\x16\xc5\x81\xc7\x9d\x95\xde\x30\x8d\xc6\xc1\xe7\x1d\x29\x5f\x39\xb2\xb2\xba\xeb\x68\x37\x6d\x96\xd9\x74\xc6\xcf\x2d\x58\xbb\xdc\xf1\x54\x9e\x55\x48\x0b\x34\x14\x9d\x06\x01\x98\x67\x3e\x31\xf5\x53\x49\x10\xa9\x22\xc1\xc0\xae\xb3\x0a\xb9\x13\x7a\x52\x2d\x04\x75\x8c\xd3\x36\xaf\x88\xd0\x5d\x69\x69\x4a\x0d\xd5\x9b\x64\xb2\xcc\xc6\x7d\x56\xea\x16\x20\x88\x4f\xd0\xde\x1c\x7b\xcf\x07\xd2\xe7\xcc\xda\x5b\x27\x2b\x18\x99\xdc\xce\xd1\x2b\x20\x62\xff\x78\xec\xa5\x64\x1b\xed\x4a\x68\xe4\x40\x6d\x3f\xd9\x4b\xfb\x08\x2b\x64\xcf\xa4\x42\xa4\x1f\x45\x9f\xa6\x59\x17\xc4\x84\x4f\x4d\x42\x40\x51\x84\xf9\x68\xac\x5d\x3f\xc5\xe2\x41\xe7\xf0\x7a\x62\x38\x61\x30\x82\xaf\xf8\x96\xda\x03\x7b\xda\x1e\xff\xbf\x7b\xa2\x88\x57\xb7\x81\x92\x0d\xc9\x83\x07\x04\x01\xde\x44\xdb\x0c\xce\xb8\xeb\xb4\x42\x90\x37\xe2\x84\x3f\x4c\xdc\x99\x96\x8a\xa8\x8f\xc2\xcf\x02\x92\x63\xdb\x84\x62\x15\xb7\x46\xca\x11\x01\x64\xea\x8f\x91\x13\x95\x32\xc6\xd6\x65\xbc\xb4\xd4\xec\x9a\x30\xda\xa0\x59\xc2\x62\xd9\xdd\xae\xb0\xd5\xf8\x7e\x9a\xb7\x95\x12\xd1\x43\xd5\xca\x3c\x4a\xca\x6d\x1d\x10\x14\xab\xf1\xd5\x2f\xfb\xba\x87\xab\x30\xce\xa0\x64\x8c\x1d\xcf\x15\x74\x1c\x6e\x9a\xd6\xb6\x17\x99\x3c\xb7\x31\x99\x42\x9c\x6a\x27\x30\x03\x7c\x33\xb5\x07\x17\x0f\x36\x7b\x44\x3f\x4f\x23\x81\xf5\xf3\x1e\x3d\x30\x5f\xb7\x9e\x51\x18\x9c\x30\x0e\xc2\x51\x64\x39\xb0\xc5\x09\x76\x4f\xa9\x96\x43\x68\x89\x45\x6f\xa8\xc3\x44\x04\x70\xd4\xd9\x90\x64\x73\x5e\x05\xf5\x23\xb6\x5d\xb0\xd5\x9f\x6a\xfb\x1d\xf7\xaf\x3f\xa5\x44\x08\x9e\x9a\xf8\x3a\xff\xf9\xbd\x93\x3a\x95\xdb\x20\x19\x8e\x22\x7b\x44\xc1\x33\x4f\x29\x78\xe6\xa9\x29\x26\x90\x83\xcf\x37\xf3\x04\x2c\x0a\x2c\x7a\x4d\x7f\x2e\x02\xd8\x1e\xe1\xb4\x96\x44\xab\xd9\xba\xe9\x97\xc3\xba\xb0\xe8\x12\x17\x8a\x6a\xe7\x27\x53\x79\x56\xb1\x91\x1d\x9b\xe6\x03\x27\x9c\x2a\x3e\x87\x82\x0b\xfc\x91\x0a\x3e\xc9\x0b\x14\x32\x6e\xe6\x93\x1a\xfb\x30\x8c\xb1\x01\x40\x47\x50\xd2\xcf\x71\x8c\x26\x85\x54\x64\x44\x4c\x83\x7e\x42\x54\x36\x54\x38\x39\x0c\x73\xb4\xc2\x0a\x7d\x4c\xf9\xfd\x58\xf3\xdf\xc0\x87\xe0\xcd\x9c\xa9\xe0\xfb\x3a\x36\xdd\x4b\x2b\x0e\x79\xd5\x9f\xe2\x00\xc3\x32\xbe\x4b\xdb\x4e\xd1\x1b\x1e\x70\x94\x12\x78\x24\xa4\xdb\xde\xc6\x09\x28\x44\x57\x3e\xc3\xc7\xac\xb7\x12\x93\x78\xb4\xee\x43\x5a\x40\x0e\x3f\xf5\x82\x0b\x43\xee\xc0\x51\x83\x8f\x0f\x65\x79\x72\xd3\xfe\xce\xd3\xb0\x0a\x78\x96\x8f\xc8\xaa\x52\x46\xf1\x97\xf7\x92\xe8\x06\xa3\x6e\x6b\xce\xd5\x03\xcd\x75\x93\x83\xa5\x95\x5e\xd3\xa9\x70\xb8\xb4\xc6\xad\x4a\xdc\xed\x92\xb4\x70\xc0\x67\x14\x4c\xf1\x26\x7d\xc8\x65\x8c\x9d\x86\xd1\x09\x95\x09\x0b\x22\x93\x65\x61\x80\x1a\xf4\x26\x00\xc7\x9b\x57\x5d\x38\x68\xa3\x4e\x02\xa2\x3a\x5d\x78\x92\x5a\xd5\xa7\xb4\xe8\xf2\x28\x22\x91\x52\xb7\xcc\xef\xc1\x30\xf0\x8d\xea\xd8\xea\x85\x79\x6c\x33\x6e\x24\x86\x5f\xcd\x8d\xa1\x72\xd6\xfa\x3d\x3f\xd7\x7e\xdc\xeb\xf0\xef\xa3\x6f\xaf\x68\xcd\xf3\x8d\x5a\x81\x71\xd8\x07\xd5\xec\x8b\x4e\xef\x54\x8b\x9f\x8e\x9f\xd4\x6c\x39\x2f\xa3\x0c\x28\xe5\x54\x2c\x12\x91\x13\xdb\x1a\x49\xbc\xb0\x78\xb0\x99\xe5\x54\xaa\xa0\xaf\x97\x6d\x41\xef\x21\x9c\x6b\x35\x74\xe8\xa9\x1d\x25\x69\xce\x61\x1d\xc3\x0e\x5a\xde\x07\xf8\xb7\x53\x86\x90\x18\x91\x07\x16\x88\x75\x94\x40\x30\xe7\xb8\xe6\xd8\x45\x7c\x0e\x8f\x31\x4d\xed\x30\x8c\xbb\x99\x12\x53\x7e\x4d\xb5\x1a\xbf\x36\x15\x1a\x2d\x2d\x35\xb3\x90\x5a\x19\x15\x2b\xf8\xc5\x0a\x40\x97\xa6\x90\x89\x8c\x1d\x20\x7f\x3d\x64\x6c\x88\xb4\x25\x2b\xbd\xa5\x0b\x8a\xb0\x98\x08\x54\x7d\x67\x52\x96\x15\xa9\xf0\x7c\xf2\x71\x44\xe7\xab\x1c\x4d\x5b\x87\x6e\xdf\x72\x33\x0b\x06\xe1\xcb\x09\x63\x18\xb8\x97\x46\x41\xb8\xb5\x28\x86\xfd\x7a\x11\x0a\x41\xa2\xcf\xad\xf9\x73\xf0\x91\x26\x4c\xbe\xe4\x7c\xea\x9e\x09\x53\xd2\x06\xc1\xd1\xf6\x2c\xb0\x4d\x22\x4f\x4b\xdf\x85\x20\xe4\x4d\xfa\x2e\xe4\x80\x3e\xad\xd9\xb1\xef\xa8\xaa\x79\x27\x01\x9a\xc3\x01\xc7\x70\xaa\x0b\x8a\xcc\x73\x2b\xac\x99\x80\x84\x85\xb2\x19\x1f\x90\x5f\x6f\x4d\x05\x97\x1e\xe0\xec\xdd\x1d\xd3\xb7\xcf\xd0\x39\xca\x08\x36\x38\xed\x08\x7c\x38\xc9\x09\x8f\xe5\xdb\x8a\xee\x87\xf5\x33\x24\x37\xd4\x70\x74\x6c\x08\x4f\xe0\xae\x4f\x28\x93\x8f\x40\xfa\x42\xcb\x4b\xe2\x7c\x97\x37\x06\x0a\xb9\xef\x68\xbe\xe0\x1d\x6d\xc5\x9c\x82\x12\x2f\x76\xc2\x2d\x38\x2a\x92\x7f\x53\x21\xc2\x2e\x22\x69\x92\x54\xa5\x4a\x81\x1d\x1f\x2b\x6e\xf5\x47\x2d\xe4\x24\xf9\x55\x5c\x02\x00\x03\x07\x08\x83\x5b\x44\x7e\x41\x8d\x7d\xa2\xa0\x57\x64\x26\xfa\x64\x10\xf3\x13\x0a\x5a\x23\x62\x6b\x8c\x69\xc4\xd3\x0a\xc0\x71\x4b\x5b\xec\xca\x7c\x73\x69\x69\x0f\x8d\xa6\x03\x04\x3a\x79\x8f\x87\x63\xc5\xae\x79\x16\x41\x24\xf6\xc2\x13\x28\x53\x8b\x9b\xe4\x75\xa1\x5f\x27\xef\x13\xff\xbe\x63\xe2\x5b\x35\xce\x22\xdb\xc5\xe6\x1f\xeb\x48\x64\x2d\xc8\x6f\x14\x8c\xae\x47\xc5\x3f\x20\xa7\x56\x0e\x0c\xbf\x2a\xa3\x64\xdd\xc2\x64\x49\xfb\x0a\x8d\x8a\xf4\xb5\x6c\x45\x1a\x2e\x03\x25\x51\x94\xa7\xd0\xcb\xcc\x67\x53\xdb\xce\x55\x23\x15\x61\xd2\x61\xd6\xa8\x14\xf7\x35\x32\xdc\x57\x44\x52\x93\xa1\x53\xa8\x4e\x4f\xa0\x2e\x85\x93\xdb\xb8\x2b\xa8\x3e\x2e\x87\xb5\x54\x6b\xed\xa9\x3a\xb2\xff\x20\x4c\x83\x22\x32\x29\x82\x4b\x58\xdb\x1f\x2a\x45\x81\x5b\x4a\xc2\xf4\xda\x16\x2a\xa4\x00\x03\x06\xf4\xc0\x79\xbc\x06\xdf\xa8\xd7\x58\xb3\xe9\xc6\x6e\x9a\x65\x44\x99\xe0\x21\x40\x5b\x34\xb4\x27\xe0\xdd\xcf\xb5\x55\xb5\xef\x24\x76\x2c\x5a\x7c\x40\x15\x0f\x2f\xe3\x3a\x76\x83\x68\x02\x94\xc3\xc8\x5f\xdb\xd6\x00\x62\x05\x20\xfb\x7a\x51\xfa\xd8\xdd\x19\x2f\x95\x74\x85\xf6\x2d\x42\xc3\xff\x59\xf7\x90\x4d\xdb\xd7\x2f\x10\xe3\xc4\xc8\xcb\xdb\xc0\xd0\xa1\x7f\x9f\xaf\xa7\x3e\xe4\xc4\xa3\xbb\x8c\xf3\x62\xe5\x60\x2a\xe6\x88\x8a\xf0\xd6\x15\x45\xcc\x1a\x5d\xdb\x0b\xe3\x30\x27\x24\x96\x3b\xd7\xb0\x13\x44\x3e\x70\x9a\x7b\xfc\x40\xb3\x6b\x83\x28\x74\x20\x0d\x24\x6c\x79\x9b\xf1\x8d\x6b\x16\x20\xbe\xd6\x3c\xe1\xbe\x28\x59\x25\xbe\x19\xfb\x94\x4a\x38\x75\x92\x64\xc8\xcc\x36\x92\xd7\xa7\x59\xe1\x1b\xe5\xae\x74\xc2\x7e\xdf\x66\xf9\x0e\xc5\x74\xf8\x63\xb8\x36\x70\xe2\xee\x29\xe5\xdd\x23\x18\x71\xd1\xd2\x69\x38\x7a\x6e\x56\xb6\x47\x30\xaf\xa5\x5f\xc2\x0c\x40\x77\xfe\x2e\x78\x35\xf2\xc5\x2a\x33\x9c\x9b\x28\x2a\x9f\xd7\xd5\xd2\xa0\x09\xcd\xd7\x8a\x4f\x2c\x8c\xe9\x9b\x83\xd0\xc6\x39\xbd\x1e\xaf\x33\xfa\x73\x59\x73\x5b\x01\x7c\x2b\xf3\x64\x30\xd3\x4e\x58\xfa\x1d\x0d\xcd\xee\x8f\x2d\x2f\x54\xff\xfe\xbc\x1d\x9a\x30\xce\x72\x23\x8d\xf7\x88\x3e\xce\x68\xd6\xcf\x33\x53\x1e\x54\x19\x9e\x16\xdd\xbe\x95\xb2\xae\x8c\x66\xc3\xd1\xf5\xfe\xb8\x8e\x76\x76\x68\x23\xef\xda\x02\x99\x73\x5d\xf1\x70\x9d\xa2\x2d\x2d\x74\x61\x5b\xd7\x1e\x69\x63\x8e\x22\x13\x58\xa2\x58\x6b\x68\x35\xba\x4a\xcf\x5c\x5d\x20\xd7\x4b\x52\x1b\xf6\x63\xac\x74\x4e\x5f\x2b\xa3\x71\x6a\x2a\x21\x75\x68\x7e\xb9\x39\xd8\x18\x95\xfe\x7b\x19\xff\x0a\x25\x12\xb6\x20\x0a\x73\x7c\xed\x5c\xec\x91\x35\xab\xfc\x58\x48\x71\x02\x8e\xc6\xd7\x2a\x30\x8f\x93\x34\x1f\x98\xe1\x28\x4f\x04\xf2\x82\x33\xf8\xfd\x96\xaa\x41\xbf\xaf\x10\x60\xc3\x34\x7b\x6e\x17\x4d\x1f\xf2\x67\x0f\x61\x31\x39\x15\x81\xf5\x8e\xad\xf7\xc4\xc4\x23\x60\xae\x93\x45\x12\x9d\x25\xb5\xea\x9f\x24\x38\x34\xc2\xae\x77\xf5\x9c\xd5\x75\xfe\x7f\xae\x19\x98\x98\x89\xbb\x75\xa0\x25\x39\x69\x29\x65\x98\x61\xc7\x64\x99\xe9\x26\x20\x1b\x70\x30\x76\xdf\x22\x77\x4e\xd3\x71\x8c\xb5\x2e\xf0\x3f\x9d\x3a\x81\xbe\xd0\x4c\xd6\x9d\xad\xc0\x1f\xbd\xd2\xf2\x6c\x3a\xaf\x4c\x4d\xf2\xe1\xc3\xcd\xd2\x67\x8e\xca\x78\xc4\x97\x39\x10\x8a\x22\xd4\xfd\x90\x2c\x94\xc0\x1b\xb6\xae\xae\x43\xf3\xfb\xcb\x58\x39\xa2\xc5\x25\x3f\xcc\xdc\x25\xf4\xc3\xc2\x63\x52\xb3\xac\x39\x69\xd9\xf0\xaf\x0a\xb4\x2c\x5f\xab\x03\xdc\xae\xd9\xf8\x69\xd5\x2a\x70\x81\x9e\x49\x81\x0e\x24\x7d\xf7\x7f\x60\xff\xa1\x1d\xe6\xa4\x86\x0f\x5e\x85\xd3\x80\x69\x65\xd0\x0f\x3c\x93\xfb\xad\xc6\x57\xbf\xcc\xa1\xd7\xbb\x58\x14\x30\xfe\xc8\x91\xe1\x28\xb9\x49\x5e\x8a\x63\xe7\x77\xb1\x28\x4b\x2a\x22\xae\x7c\xc0\x51\x36\x7e\xe4\x72\x4b\x89\x29\x8f\xab\xb1\xac\x03\x65\x70\xe5\x50\x80\xbf\x4a\x14\xa9\xf4\xdf\x6c\x77\x06\x5e\xa0\x23\x63\x70\x60\x80\xf3\xf4\x40\xcc\xf9\xe5\x4e\x80\x20\x89\x92\x61\x27\x34\x31\xa5\x75\x44\x2d\x0e\x4f\x85\x1f\x3f\x43\x3f\x0e\xe4\xca\xd3\x6d\x1f\x4a\xb0\xe5\x12\x5e\x62\x8f\xd2\xcc\x72\x53\xc4\xc1\x80\x4f\x2d\xfc\x31\xd7\x02\xf9\xc6\xfd\x7a\xb6\x31\xec\x24\x51\x98\xa1\x6d\x58\x10\x04\xe5\xef\x09\xb2\xa0\x46\xc8\xa6\x5f\x98\xd4\xc4\xb9\xb5\xdd\x59\xef\x17\xdf\x1b\x2b\xe6\x8e\x9d\x6d\xad\x8e\xa5\x32\x8f\x6f\xd4\x15\x20\xc2\xe1\xc8\x76\x11\xd6\x62\xea\x3e\x54\xc8\xb3\x0f\x5b\x3a\x64\x27\xaa\x4a\x8e\xc3\x1d\xdf\x8e\x13\x5b\x87\xd2\x31\x83\xd4\xa6\x4a\xed\x44\x5b\xcc\xe4\x61\x34\x32\xa2\x6a\x46\x23\xc3\x37\xd3\x2a\x6d\x0b\xcd\x5e\xe8\xe8\xee\x60\x6f\x6e\xe2\x95\xf8\xa6\xe5\xe3\xfd\x79\x54\x21\x51\x9e\x99\x6b\x2b\x9e\xf9\x87\x64\xa2\xa4\xec\x59\x83\x02\xe8\x26\xeb\x71\x3f\x35\x5d\xab\x35\x67\xce\x2b\xd1\x0f\xad\xa5\x6b\x82\x9c\x64\x70\xd1\x58\x20\xb8\x07\xd5\xcb\x7f\x53\x51\xa7\x3c\x4d\x88\x2a\x60\xa5\x76\x13\xe8\x53\xdb\x76\x64\x56\x21\x59\x2a\x0c\x19\xbe\xfa\x36\x32\xf9\x40\x29\x8e\xfd\xbe\xea\xbd\xf8\xfd\x6a\x88\xb7\x91\x7d\x46\x09\x2b\x3d\x1a\x2b\x72\xa9\x3f\x1e\x6b\xad\x1f\x5d\xf5\xbb\xa3\x1b\x93\x4f\xf3\x5e\xc4\x1d\x0b\xc2\xb8\x42\x71\x69\x0a\xb0\xb8\xbe\x47\x8e\x1b\xe7\xc5\xca\x1d\xbb\xf9\x4a\x4b\xb5\x23\xa0\x7f\x16\x8e\xd6\x0e\x02\x1a\xa2\x15\xe2\x80\x63\xfc\xc5\x06\x95\xaa\x73\x69\x31\x98\x64\x71\xec\x71\x11\xdb\x27\x1e\x3a\xf9\x2f\x69\x30\xb1\x1c\xaf\xd2\x26\xc6\x20\xef\x68\x37\xbe\xf8\x35\x1e\xd8\xb3\x48\x14\x63\xc4\xdf\xae\xf0\x8e\x15\xfd\x64\xb6\x02\xf7\xa1\xa1\x81\x79\x07\x99\x02\x76\x7d\x45\xa5\xfd\xfa\xd4\x41\x41\x0a\xa9\x61\x77\x46\x69\xf6\x33\x31\x0d\x82\x90\x57\xf1\xbd\xb0\x64\x57\x6b\x7a\x92\x96\x01\x48\x9c\xf1\xe5\x90\xd7\x94\xe8\x0a\x9f\x9b\x52\xcf\xda\xba\x42\x57\xe6\x9b\x1d\xdb\x0f\x21\x92\x57\x3e\x33\x06\xf3\x06\xac\x24\xdf\x28\xa1\xf6\xcc\xd0\xa6\xf1\x66\xf7\x18\x79\x73\x7c\xad\xca\xf0\x49\x27\x4b\x22\x9b\x5b\xe0\xc3\xc4\xcb\x51\xc1\xf7\xa5\xb1\xca\x94\x25\x6b\x16\x68\x76\xe9\xf9\x6b\x28\xcd\xeb\x3d\xce\xa9\x8e\xbb\xcc\x04\xe4\x5a\x7e\x7c\x60\xf3\x94\xd2\x67\xfe\x78\xac\x98\xbb\xae\x6a\x70\x80\x19\x99\x20\xcc\x37\x9e\x20\x62\x36\xd4\xe6\xce\xa0\x23\x14\x79\xd7\xd9\x09\xad\x48\x6e\x5e\x50\xad\x8b\xdf\xc7\x42\x70\x7c\x2c\x0b\x8b\x9e\x8a\xdb\x01\xb6\xe0\x8b\xa0\xf8\x73\x17\x58\x46\xd7\x14\xfd\xf9\xcf\xcb\xf5\x58\x29\x90\xde\xd2\x75\xc9\x7f\x56\x49\x2f\x77\xad\xa1\x74\x10\x16\xe8\x3f\x6f\x4d\xb5\x34\xa2\x4e\x74\x54\x35\xa6\x1f\x63\x56\x1d\xc9\x2c\x6c\x35\x7a\x87\x0f\x93\x5a\x19\xc1\x81\x17\x2b\x22\x62\x22\xed\x5a\x7e\x17\x0c\xff\x99\x3a\xba\xdb\x8e\x89\x22\x74\xfe\xb0\xee\x33\xbd\xb0\x68\x40\x6f\xfd\xb9\x2f\x34\xcd\x68\x64\xb9\x4f\x01\xc9\x9c\x8f\x34\x2f\xfa\x47\x53\xde\xff\xa1\xf9\xc5\xf2\xd8\x48\x93\x91\x4d\xb9\x4f\x46\x54\x05\x1a\x4a\x48\x40\x31\xf3\xd8\x75\x93\x56\xca\x86\xe8\x44\x91\x1a\xe2\x93\x4a\x68\xd1\x5a\x10\x01\x63\xa6\x19\x1b\xcf\x37\x2e\xab\x13\x0c\x4c\x9a\xdb\x74\xd6\xe3\x80\xbf\x03\x23\xa5\x73\x92\xae\x9d\xdb\x45\x55\xc7\xa6\xd2\xad\x5f\x68\x66\x49\x10\x9a\x28\xcc\x58\xf9\x58\xe8\x8b\x69\x0f\x08\x65\xb1\x24\xff\xd6\xc2\x80\x5b\xb8\xb4\xf4\x8b\x86\x01\x22\x0b\xcd\xe4\x63\x52\xd0\xf7\xaa\xe8\x61\x1c\xcc\x29\xc2\xa1\xeb\x2d\x4f\x7d\x73\x9c\xdd\x0e\xa6\x99\x6d\xa9\x06\x27\x0d\x2a\xbe\xae\xea\xf6\x83\xa4\xd7\x1b\x1a\xe6\xf4\x87\xe5\xba\x8d\xf5\xcc\x37\x75\x19\xdc\xc0\x8c\xc2\x9c\x67\x1b\xe1\x25\x14\xfe\xf8\x7a\x52\x93\xa4\x09\x92\xa1\x9d\xf5\xb5\xed\xed\xa8\x74\x09\x4d\xd6\x8c\xd7\x6a\x7e\x4d\xe9\x09\x4d\x07\x48\x5f\x10\xf8\xbe\x9c\xe7\x0c\x01\x50\x51\xd5\x39\x45\x63\x9c\x5a\x13\x85\xf9\x06\xa2\x38\x78\x33\x1f\xd3\xf7\xc3\x64\x3e\xd1\x56\x3d\x41\xf7\x10\xc5\xf0\x9e\x5c\x7d\xae\xa1\x50\xdc\xff\xa2\x45\x66\x84\x6f\xb6\x76\xf8\xae\xcc\x1f\x68\x2e\x2c\x22\x9c\x62\xa2\x67\x85\x18\x39\xeb\xf3\x88\xac\x14\x43\x4f\x83\xd9\xff\x8f\x2d\xbf\xf1\xff\x63\xf9\xbd\xf0\x0e\xb2\xcc\x64\x59\x18\xfb\x60\x0e\x89\xc1\x3f\x56\xca\x09\x7f\x5c\x57\xf8\x1f\x26\x69\xca\xb5\x13\xe1\xd8\x2a\xed\x97\x30\x71\xb9\xce\x92\x32\xb4\x0d\x2d\x58\x08\x1c\xf7\x4f\xb9\xf6\x71\xc4\x9f\x18\x2b\xd8\xf6\x79\xcf\x33\x9f\xa4\x26\x43\xaa\x5f\xb4\x52\xcb\x2f\x10\x2f\x71\x6b\x85\x91\x9a\x68\x33\x2a\x0b\xe3\x60\xdf\x41\x67\xa5\xa3\x46\x73\x0e\xe6\x5f\xb6\x3c\x17\xc6\xb6\x89\xf7\x5d\xfa\xc5\x46\xd6\x28\x03\x05\x24\x48\x40\xc2\xc3\xd7\x2a\x9d\xf1\xab\xbf\x7a\x80\xd9\x57\x84\xf3\x98\x66\x82\xb3\xa3\xf4\x21\xa1\x62\xa5\x29\x45\x52\x6e\xd3\x31\x09\x77\x6d\xcf\xc6\x19\x89\x88\x1d\x9a\xaf\xa8\xe6\xf2\xe3\x55\xc0\xb9\xbe\x98\x98\x97\xce\xde\x1e\x05\x4e\xbb\xcb\xfe\x0f\x3c\xe5\x0f\x60\x76\x70\xb6\xbd\xa6\x2b\x01\xaf\xb6\x94\x2b\xfa\x0a\x0e\x09\xc7\x2d\xb7\x6f\xd9\x57\x19\xcb\xd7\x60\xfa\xab\xb1\xf2\x5a\x28\x70\x46\xc4\xf6\xe7\x0a\xcf\xfa\x76\x4b\x75\x6a\x02\xe5\x25\xec\xd7\x35\x32\x10\x36\x1b\x29\xc9\xa2\xf3\x55\x51\x0d\xef\x06\xe4\x26\xc8\xc3\x60\x46\xd1\xca\xbd\xa1\x68\x2b\xc1\x32\x80\x10\xed\x8c\xaa\xc3\xdb\x61\x18\x9b\xcc\x36\x54\xe3\x20\xb7\x59\xf1\x4d\x05\x9c\xdc\xb7\xdd\xa7\x75\x9d\x4a\xc1\xe4\x2e\xe9\x77\x62\x95\x3f\x24\x94\xee\xc3\x4a\xe1\xb7\xaf\xe0\xb0\x71\x02\xa1\xe5\xc0\xe1\xd8\x7d\x0a\x39\x70\xa4\xea\xef\x90\xaf\x28\x24\xbe\xaa\x95\xf5\x3a\x66\x04\xe7\xf9\xf6\x89\xe7\x8a\xd8\x43\x40\x32\xe1\x5b\xa0\x31\x82\x71\x7d\xa8\x64\xa2\x4f\xf0\xbc\xe3\xd4\xdf\x36\x71\x70\xe1\xff\xf0\x99\x49\xe9\x0d\xf0\x33\x4e\x19\xb3\xf2\x0c\xb4\x91\x0d\x1c\x51\x1d\x4c\xee\x43\x45\x54\x77\xae\xa2\x10\xac\x0a\x89\x59\x12\x85\x6c\x02\xf1\xa4\xe7\xc6\x0a\xf0\x77\x4e\x31\x94\x98\x3c\x4f\xc3\x4e\x91\x97\xc1\x9e\x6b\xde\x3e\x8a\x71\x45\x8c\x7b\x8f\x7e\xd0\x91\x8a\x3a\x3c\xdc\xbd\x29\xc7\x60\x69\xa9\xf9\xf9\x5f\xfa\x07\x9c\x39\x72\xb8\xfb\x85\x45\xb9\x6e\x79\x26\x65\x1b\x24\x71\x32\x04\xa6\xa3\x51\x81\x6b\x78\xa0\xef\x74\x9f\x18\xd8\xc9\x15\x25\xa2\x6c\x12\x5f\xbb\xdc\xa6\xf8\xd6\x1f\x6a\xa6\x99\xc1\x46\x16\x06\xcc\xfb\xe8\x58\x69\x7c\x9e\x9c\x31\x2d\x98\xbe\xcd\x0a\x87\x89\xcf\x7a\xe4\x03\x1b\x13\x77\x15\x12\x1d\x27\xb1\x68\xe1\x7f\xcd\x22\xef\x20\x8c\xc7\x65\xe8\x00\xbf\xff\x7a\x4b\x35\xdf\xbd\xa6\xb5\x4d\xa0\x62\x0b\xeb\xb0\x93\x52\x59\x52\x7f\xf5\x4d\x9c\x3b\x90\x8e\xc0\x86\xda\xd1\x56\xf3\x02\x1b\xa9\x7e\xe3\x45\x27\x98\xf7\xac\xf6\x76\x32\x52\x84\x23\xd1\x80\x7d\x92\xc4\x03\xef\x27\x5f\x4f\xe5\x00\x10\xb3\x27\x59\x16\x76\x22\x98\x3d\xfc\xe5\x8f\x30\x46\x02\x3a\xf0\x40\xd1\xeb\x9a\x02\xdf\xa6\x3d\x1b\xe4\x50\x1e\x74\xf9\xb2\xd2\xb3\x96\x5e\x7d\xd5\xb0\x12\xa2\x0d\xda\x45\xf5\x60\xdf\x17\x82\xf0\x67\x35\x57\xac\xe9\x95\x5f\x4b\x27\x9e\x1b\x9c\xa3\x4a\xa7\xed\xe8\xf8\x33\x1e\xc8\x61\x87\x61\x90\xc4\xdd\x22\xc8\x93\x94\xd6\x35\x0c\xcb\x4d\x9c\x5c\xec\x42\x29\x57\x92\x15\x08\xc4\xb7\x7a\x4a\x11\x9d\x1f\x31\x41\xa2\xb5\xe1\xaa\xbf\x59\xd3\xf2\xb3\xa6\xe4\xf9\xa5\xf3\xa2\x21\x94\x7c\x7f\xeb\x7c\x95\xb6\x27\xb0\xa4\x6f\x52\x3e\x09\x13\x17\xd3\xd7\x0b\x89\x71\xcd\xd7\x0f\x4c\xda\xb5\x29\x54\x00\xb0\x29\x67\xb0\x2a\xf8\x66\x52\x69\x8b\x0d\x93\x1d\xb4\x7e\xb0\x64\x4e\x60\xc1\x32\x13\x9a\x16\x97\x1a\x57\xb2\xdf\x8a\xf0\xed\xff\x54\xbd\xbc\xbf\x55\xa9\x12\x64\xbb\x15\x22\xf5\x61\x4b\x73\xbb\xff\x85\x02\xdb\x3e\xdb\xf6\xa5\x8f\xed\x13\x05\x78\xde\x3e\xd1\xbc\x2a\xf4\xfb\x38\x00\x8f\xe9\x94\xfd\xce\x89\x67\x6d\xd8\x54\x1a\x9d\xd4\xce\x18\xc6\xfd\x1d\x34\x10\x2e\x47\xeb\x30\xaa\xb7\x75\x9e\xf8\x32\x3f\x9d\xd6\xa4\x14\xe8\x23\x8d\x1d\x7f\xbe\x26\x72\xe9\xda\xc8\x81\x30\x71\xc0\xbe\x8b\xf4\x26\xdf\xb4\x9a\x9f\x54\x8e\x1a\x74\xcc\x86\xc9\x06\x90\x53\x12\x4d\x19\x45\xc8\xf2\x7e\x8d\xa8\x0c\xd1\xe8\x05\x03\x29\x2b\x0a\x15\xb7\xa2\xe5\x56\xc9\x9b\x81\x4d\xb1\x72\xe0\xc3\x1f\x6b\x29\x3e\xe2\x63\xaa\xb2\x9f\xb2\x26\x24\x98\xd8\x24\x87\x3c\xe3\x85\x73\x3f\x54\xe3\x1a\x24\x51\x31\xec\x14\xf0\xe3\x94\xc2\xd8\x7e\x27\x3d\x26\xa1\x4a\x1e\xa6\x68\x59\x45\x2e\xe6\xbc\xca\xcb\x9c\x57\x8a\x1c\x85\x89\x9e\xc0\xe8\x4b\x9e\xab\x34\x74\x02\x84\xf1\x08\x4a\xe6\x29\xc3\xd8\x9c\x45\xd6\x97\x8b\xf8\x2d\x9f\x5b\xbb\x43\xe7\x09\x77\x72\xe0\x94\x42\x66\xef\xff\x1e\x2b\x35\xaa\xb3\xd8\xce\x9c\x74\x26\x5b\xc7\xdd\xa0\x78\x15\xcc\xdd\xf1\x0a\x6d\x53\x42\xf2\xbd\x88\x51\x7e\xa0\x39\x06\x99\x6c\x01\xdd\x97\xc7\x78\x25\x61\x41\x7e\x48\x2b\x09\xb9\x80\x99\x76\x63\x61\x41\x93\x0c\x8a\x33\x8a\xd3\x09\x29\x94\xef\x8f\xab\x30\xd1\xee\xb3\xe5\x94\x20\xc1\x73\x43\x57\xa6\x1f\x8c\xbd\xcc\xe7\xdc\x84\x06\x03\x37\xc7\x14\xe8\xe3\x3a\x66\x1c\x1f\x97\x27\x63\xea\x91\x96\x6a\x2c\x85\x7b\xb9\xb9\xb9\xa5\x7e\xbf\x7f\x45\x2a\x48\xf7\xc6\x8a\xd1\xfe\x77\xc6\x0e\x33\xf6\x6f\x66\x69\xf3\xe2\xa5\xfe\x0c\x2f\x05\x2f\xfa\x28\xe5\xd2\xb0\xf7\xef\x33\x30\xc2\x71\xfc\x95\x63\x0f\x24\xc2\x0d\xea\x60\x74\x48\xcf\xc5\x83\x8e\xb0\x94\xf6\x90\x28\xd7\xd6\x11\xec\x10\x6a\x94\xd6\x17\x1e\x05\xe9\x4c\xbe\xae\x43\x4b\x17\x69\xbf\x74\x62\xf6\x09\x5e\xe3\xdf\x8d\x75\xf3\x11\x5c\x38\x11\x8c\xd1\x15\x58\xcf\xfe\x32\x4c\x62\x9b\x9b\x34\x64\xd2\x1c\xe9\xa4\xb8\xdf\x52\x56\xf3\xfe\xd4\x4f\xbf\xb0\xbf\x0c\xba\x0b\xae\xe9\xb3\x6e\x17\x5c\x0b\xac\xd3\xdb\x2d\xed\x7b\x55\x64\x8d\x49\x68\xc9\x76\xe7\x7c\xe8\x02\x68\x3f\xfc\x03\x36\xd7\x70\x36\x04\x30\x88\xd5\xc6\x18\x2f\xbe\x51\xfb\x37\x5b\xb7\x76\x24\x98\x26\x64\x17\xee\xd3\x2e\xe3\x6b\xa5\x66\x61\x7b\xbd\x24\xcd\x23\x9b\x65\xf0\xc1\x94\x6a\x9f\x27\x3d\xbd\x32\x15\x1d\x2c\x2f\x37\x3b\x09\x90\xa4\x12\x96\xd0\xdf\x0b\x9b\x48\x8d\x22\xd7\x28\x2a\xfa\x33\x5e\x89\x84\xdb\x86\x31\x19\xd7\x95\x64\xd6\xfb\x75\x7c\x2c\xeb\xa6\xdb\x8d\x04\xe1\x06\x67\x89\x45\xd7\xf9\x46\xe5\xf5\x86\x26\x27\x44\xd7\x9c\xc7\x23\x3e\xc4\x8f\x61\x19\x9c\xd4\x66\x0f\xe3\x02\x1b\xc3\xac\x6f\x38\x26\xdf\xaa\xab\x8d\x05\x91\x35\x31\x43\xe6\x60\xe5\xee\x63\xd7\xf0\x8d\x4a\xdf\x77\xc3\x8c\xca\xbb\x78\x64\x84\xef\x0c\xd8\xe0\x1b\x05\xd0\x0a\x92\xe8\x39\xfa\x52\x87\xf0\xf2\x56\xfc\xd2\x54\x9a\x97\x6a\xcf\x43\x61\x42\x82\x51\xb9\xa5\xa4\x97\x5e\x67\x56\xa0\x1a\x7e\x82\x03\xcd\x5e\x91\xc6\xa1\x50\xdc\x4a\xfe\x15\x01\x1b\x5f\x6b\x7a\x1f\x93\x76\x38\xbd\xc0\x7b\x56\xc5\x01\x17\xab\xd8\x94\x2c\xd9\xab\x48\x26\xd1\x58\xe6\xac\x81\xe7\x75\x86\x6f\x8e\x04\xda\xd1\xb1\x52\x8c\x86\xf3\xab\x37\x27\x53\x47\x03\xbb\xce\x95\x42\x67\x8e\xcb\x29\x14\xf1\xdb\x72\xbf\xe3\x28\xbf\x4f\xde\x34\x1c\xe5\x3f\x6d\xa9\x03\x7b\xfb\x84\xdc\x4f\xc7\xf9\x55\x4e\x1a\x2a\x02\x97\x75\x9f\xee\x9d\xa9\xc6\x80\x43\xf3\x4d\xb3\x6e\x36\xa8\xdd\x15\x99\xed\x67\x14\x17\xdc\x2d\x85\x65\x3d\x0b\x9e\x6d\x51\x83\x69\x38\x6a\xec\x4b\xf4\x50\x08\x8d\x2f\x69\x9d\xaa\x7e\xb2\xb3\x7c\x74\x81\xd3\x29\x8a\x88\xd7\xc9\xb4\x6a\xb6\x51\xf7\x47\xe5\x93\x3b\x56\x99\x05\xa6\x48\x5b\xfa\x54\xdb\x63\x0a\xb7\x4d\x65\xd7\x96\x96\x9a\xc5\x88\x27\x12\x11\xf0\x9b\x4a\x73\xe6\x4d\x95\x19\x8d\x4c\xda\xb7\xbb\x3c\xb6\x0a\x24\xa4\xb0\x3e\x67\x31\x52\xac\x8a\xd8\xf2\xcc\x3b\xf7\x5a\x55\xe0\x99\x23\x2e\xbe\x46\xbb\x8b\x53\x3b\x88\x8d\x30\x81\xaf\xb5\x3c\x3e\x74\x14\x99\x7e\x81\xfe\x65\xc9\x84\x9f\x41\x01\xc9\x39\x15\xae\xdd\xf1\x0c\x3d\x8e\x38\x18\x35\x65\x73\x1b\x77\x3d\x9c\x93\x33\xe9\xaa\x1f\xe9\x9f\xd5\x88\x3f\xf7\x4c\x18\x79\x36\xee\x5a\x68\xd5\x56\x73\x7f\xf0\xf9\xa6\x59\x4b\xc2\xae\xb2\x67\x37\x2a\xd8\x78\x9f\xb0\xfd\xa9\x6b\xb8\x2d\xe3\x97\x2c\xb3\x43\x91\x6e\x93\x33\xb8\xfc\x5b\x29\x41\xd7\x6c\xf5\x7e\x68\xe2\x5c\x68\x48\x80\x62\xfc\x18\x67\x3e\xdf\xd4\x51\x37\x46\xd6\x64\x92\x32\x80\x81\xb8\x53\x61\x60\x57\xbd\x56\x17\x1c\xe8\x61\x94\x5a\xd6\x2e\x6b\xf8\xf8\x16\x3b\x9e\xaf\xa7\x4a\x46\xfb\x9f\x3f\x50\x1a\x89\x74\xc3\x45\xe3\xd8\xfe\xaf\xd3\xbe\x70\xd8\xaf\xa5\x25\x47\x5f\xe9\x0b\x3d\x3d\x13\x45\x4c\xec\x89\xec\xc9\x51\x95\xd7\x65\xb6\x58\x91\xcb\xa9\xd0\x5a\x84\xf9\x0e\x8c\x86\x13\xb5\x75\xf5\xf2\x7b\x30\xe1\x92\xf2\xd1\x53\xa2\x88\xec\x78\xab\x61\xf1\xbe\xda\xf2\x42\x19\xc3\x8d\x34\x34\x5d\x84\x6d\x75\xc4\x67\x3e\x1f\x38\x4c\x82\xd4\xe4\xd9\x2e\x3c\x08\xdc\xad\xcf\xd1\x1e\x74\x15\x67\xef\x97\x32\x25\x81\x68\x49\x95\x13\x8e\xd2\x20\xbb\x40\x42\x3e\xa8\x18\x42\xd8\x49\xa5\xf9\xfa\xfa\xd3\x13\x1f\x5a\xf7\x92\x32\xe8\xe1\xfe\x12\x24\x44\x8f\xc3\x51\x76\xc2\xfb\xae\x21\xe8\x38\x59\x46\xa1\x45\x96\x69\x1e\x9a\x30\xce\x89\x32\x80\x5c\x0e\x35\x24\xe2\x78\xfe\x40\xf3\x1d\x7d\xab\xe5\x8b\x89\xd7\x74\x5d\x73\x7b\x5b\x31\xee\x52\x7f\x7b\xd0\x50\xd8\x47\xc6\x04\x08\xbd\xdd\xd3\xaa\x51\x6d\x58\x86\x44\x39\x48\x9b\xb1\x88\xaf\xa9\xb6\xf6\x6b\xaa\x9b\x3c\x4f\x8a\x60\x30\x4b\x96\xdf\xa1\x3c\x3c\x25\x1f\x19\x03\x47\xcf\x57\x8e\xb7\xc8\x60\xa8\xd6\x8f\xf2\x1b\x1a\x8a\xb0\xfc\x8e\xd2\x4c\xbb\xa3\xab\x99\xb9\x35\x51\xd6\x50\x9c\x2f\x2d\x8f\x19\x3f\xaf\xd3\x01\x83\x75\x93\x82\xfa\x1d\xa7\x15\x73\x79\x3b\x0e\x2b\xd7\x7e\xb6\xbd\xed\xdf\xda\xae\x25\x51\xe1\x52\x17\xd8\xef\x7f\x88\x7d\xcc\x37\x5a\x5b\x31\x32\x84\x78\x2b\xcd\x84\x62\x9d\x12\xc2\x85\xfb\x35\x3d\x8b\x2b\xa5\xe7\x1a\xe6\x49\xaa\x60\x8c\x90\x6e\xe4\xeb\x3a\xac\x04\xc8\xf6\xa5\xdc\xcb\x1d\xa7\x30\xe6\xd2\x7e\x5a\x53\xdb\x19\x16\x99\xd3\x4a\x63\x80\x77\xcb\xc3\xc9\xb4\xf4\x7d\x16\xc6\x7d\x33\x4a\x52\xbb\xab\xc2\x35\x38\xc5\x48\xe8\xae\xf7\x2d\x57\xd5\xcc\xe5\x3f\x34\xad\x9e\x92\x3b\xe6\x3a\xbb\x90\x46\xee\xd5\x5a\xdb\xeb\x36\xcd\x66\xcb\x68\x03\x8e\xde\x65\xec\x41\xdc\xa0\xb7\x8e\xaf\x69\x15\xf1\x1f\x4d\xf5\xa7\x7f\x81\x24\x17\x69\x78\x70\x80\x9f\x52\x25\xd6\x53\xd5\x48\xce\x76\x9f\xa1\x84\x33\x4a\xa0\xec\x19\x72\x9e\xae\xa5\x82\xc1\xb3\x18\x61\x96\x29\xd2\x6a\x04\x77\xc6\x9e\x02\x85\x41\x14\xa2\x54\x5c\xfe\x2a\x8e\x77\xb0\xa4\x39\x69\xf7\x85\x45\xed\x66\xbd\x28\xbf\x4e\xe3\x8a\x4a\xda\x5f\x69\x28\xcb\x5d\xcd\xf4\xb7\xbd\x4d\xf3\x22\xb9\x44\x1a\x21\x14\xca\xef\xb6\x3c\x63\xfb\x29\xc5\xa6\x7b\x4f\x1d\xc0\x97\x15\x70\x35\x0b\xa3\xb5\xd2\x31\x5e\x11\x6a\xd6\xd3\x2a\xe2\x3e\xad\xb2\x78\x45\x1c\x76\x6d\x8c\xfa\x1c\x15\x56\x41\x82\xc0\xd5\x3e\x29\x52\x7a\x67\x16\xd6\x5d\x1c\x10\x6f\x19\xc2\xa1\xe9\x5b\xd5\xbb\x02\x16\x23\xbe\x9e\x48\x7e\x22\x28\x72\x2e\xa5\x0a\xce\x4a\x85\x71\x77\x75\x65\x64\xec\x52\xf2\xbf\x38\xd7\x9e\xd6\x1e\xda\xdf\xcc\x92\x24\xb6\xe9\x4c\xf9\xc8\x42\x02\xe9\x91\x74\x0f\xe1\x9d\x62\x59\x7c\xec\xca\x61\xa9\xed\xca\xe6\x82\x45\xe0\x4e\x4b\xbe\x51\xa4\x5e\x29\xa3\x39\x45\x4e\x54\xe7\xf7\xeb\x82\x29\x93\xf1\xd1\x89\x43\xe5\x1e\x7c\x5d\x01\x99\x34\x96\xbd\xd9\xaf\x21\x85\xed\x15\x69\x9a\xac\xb3\xc3\x83\x95\xc0\xd1\x14\xdf\xa8\xee\x9d\xb8\x30\x71\x60\x33\xed\xb1\x68\xee\xf0\x2b\x75\x68\xda\x4e\xb2\xee\x45\x91\x9d\x56\x88\xb3\x10\x67\xd4\x89\xdb\xb1\x79\x6e\xd3\x5d\x95\xce\x37\x95\x62\xb8\xa8\xc9\x17\x66\xc8\xf1\xc6\xda\xfb\x10\x27\xa7\x93\x6a\x74\x52\xb8\xb3\x54\x5b\xc1\x26\xc0\x04\x23\x87\x79\xdd\x69\x0f\x67\x36\x2f\x46\xba\xf3\xb9\xe5\x91\x1d\x17\xf4\x19\x7c\x5c\x75\x92\x95\xe1\x9c\x10\xf8\xbe\xb8\x79\xb5\x3c\xc3\x37\xa7\x95\x53\xa9\x75\xdc\x74\xad\x90\xc8\x63\x39\xb3\x33\xc9\x37\x08\xe7\x38\xb1\x1c\x0c\x62\x91\x9e\x8c\x36\x1a\x3e\x17\x7b\x5e\x63\x62\xcf\xd7\x91\xd9\xe6\xa1\xf8\x77\xb0\xef\xe8\xf2\x93\x32\x2e\x8d\xa7\x90\xa8\x68\x23\xb5\x1a\x0e\x1b\xa5\x91\xf2\xd4\xb1\x5a\x8c\x6d\xcd\xa6\x59\x98\x73\x31\x46\x14\xe5\xbd\xb9\xf5\xf0\x9b\x6e\xd2\xed\x57\xda\xea\x3e\x18\x2b\x38\xcf\x07\x4a\x0b\x28\x2d\x3a\x36\x42\xfe\x13\xd1\xd0\x31\xad\x49\x78\xac\x66\x79\xee\x07\x52\x24\xc5\xfa\x86\xcd\x83\xf7\x2a\x94\x49\xe5\x97\x09\x1b\xb4\x54\xce\xf3\xb4\xfc\x54\x97\x82\x7e\x85\xad\x91\x86\xb4\xb9\x89\x87\xd1\xfd\x6f\xe8\x9b\x75\x2c\xe0\xfb\x84\xa9\xfd\x87\xde\x15\x16\x51\x50\x64\x9f\x5c\x53\xfd\xaf\xbc\xe0\x1a\xdc\x54\xc7\x9e\x09\xd9\x71\x70\x78\x33\x25\xa7\xf8\x29\x25\x04\xd0\xb5\x69\x18\xac\x36\x54\x92\xb4\xa5\x92\xa7\x35\xd5\xbf\x2f\x95\x26\xa4\x08\x04\xca\x80\x42\x3c\xf4\x3e\xf9\x5a\x09\x4e\x15\x71\x16\xa4\xc5\xa8\x88\x92\x02\x8f\x83\x98\xf1\x81\x8a\x25\xa7\x19\xf2\x97\x96\x9a\x2f\x99\xf8\x39\xd0\x21\xa1\x0c\x36\xa7\x8a\xf0\x40\x01\x49\x97\x22\x0d\xa8\xd0\x6c\xf9\xf4\xc5\x3f\xfa\x7b\xff\xe8\xef\x35\xb4\x36\x2b\xac\x9c\x08\xb5\x8a\x95\x0b\xe3\x38\xab\x40\xc4\xb7\xb5\x15\x44\x7c\xdb\x44\x16\x57\x84\x08\x4e\x17\xf7\x5a\x1e\xdb\xf5\x4a\x4d\x08\x17\x98\xd8\x74\x43\xc3\x36\x14\x41\xce\x79\xc5\x8f\x71\xde\x6d\xfe\x7e\x14\xc6\x79\x43\x89\x3a\xa0\x2e\x23\x22\x8f\x35\x9c\x89\xc4\xd2\x02\x77\x1b\xab\x04\xaa\xd5\xb0\x36\x0d\x68\xf9\x8a\x48\x4e\x69\x86\x84\xf8\xc2\xb7\x86\xc5\x61\x14\x19\x0c\xb0\x8c\x9d\x87\xa6\xc2\x30\xf2\x29\xd2\xf2\x51\xeb\xff\xab\x69\x0e\x22\x1b\x87\x79\xd1\xe5\x6a\x79\x2d\x47\xc6\x27\x95\x20\x4c\x2f\x32\x79\x72\x24\x44\xf0\x8f\x45\x73\x15\xf3\xc3\x37\x0a\xcb\x1f\x24\xa3\x8d\x34\xec\x0f\xc8\xd0\x95\x63\xa4\xe9\xf4\xa5\xdc\x5e\xb3\x63\x0f\x34\x53\x29\xe2\x8a\x8b\xf5\x63\x3a\xff\xf9\x5a\xd5\x60\x83\x24\x0e\x04\x06\x26\x42\x02\xbe\x53\xee\x4c\xc5\x21\x37\x7d\x79\x0e\x1c\xd2\xcc\x96\xc1\x37\x63\x0f\x78\x5a\xb5\x31\xf5\xa0\x48\xff\xa5\xd2\x38\xab\x93\xa5\x59\x0b\x3b\xa9\xf1\x05\x3a\xb7\xbb\xfd\x4e\xaf\x3a\x76\x7d\xc3\x01\xa7\x62\x98\x5b\xf4\x74\x09\xa5\xcf\xe7\xe8\xe6\xca\x39\xe1\xff\xc1\x11\xe5\xe8\xe3\xd4\xfc\xd7\xb8\x99\xb9\xb5\x50\xfe\x84\x6f\xf2\x1b\x63\x9f\xbd\xbc\xdc\xf2\xb4\x0d\xd3\x4d\x32\xce\x8d\x27\xb0\xff\x8c\x4e\x10\x5f\x52\xe7\xdf\x45\x2d\x8b\xf3\xa8\xf5\x8c\xd2\x88\xef\xda\x74\x3d\x0d\x59\x45\x42\x89\xe8\x1c\x70\x21\xa5\x3f\xaf\x47\x45\x9a\x15\xb4\x1d\x24\x5f\x0b\xa2\x5f\x64\xd9\x40\x22\xc2\xff\xae\xb1\xca\xb7\x55\x99\xa5\x17\xc6\x33\x8a\x64\xeb\xa8\x56\x1b\xb8\xa2\xbc\xbd\xbb\x2a\x47\xd4\xdd\x88\xcd\x30\x0c\x54\xe2\xf5\x38\x90\x1e\x7c\x33\x55\x46\x3b\x7c\xb8\xd9\x29\xc2\xa8\xeb\x26\x19\x88\x99\xab\xf4\xfd\x7c\xad\xbf\x3f\x89\x22\x93\x66\xe4\xbf\x3a\x1a\xb8\x95\x79\xb9\x76\x81\x7f\x69\x8c\x49\x24\x86\xc7\x59\x24\x0b\xe9\x7d\x2a\x64\x42\x22\xb4\x55\xa3\x3f\xd4\x4b\xad\xed\x26\xc3\x2d\x2c\xed\x5e\x90\xeb\xc4\x58\x81\xa0\x34\x7a\xfa\x78\x1d\x75\x34\x1e\x49\x02\x4b\x41\x35\xf8\xa9\x7c\xa3\x8e\x60\x65\x98\x64\x79\x83\x32\xa2\xae\x14\xb8\x32\xef\x6e\xd4\xf1\x3d\x34\xe9\x2a\xc3\x42\x58\x63\x05\x8b\x5f\x6a\xdf\x3e\x39\x74\x56\x37\x3e\xde\x51\x34\xc0\xbd\xc8\xf4\x75\x9b\x1c\x0c\xb3\x9c\x7f\x4e\xd9\x6c\x60\x56\x25\x07\x27\xca\xce\xe5\xaf\x0a\x3b\x50\x1d\xe9\x64\xbe\x1e\x06\x9c\xc7\x16\x82\xaa\x72\xd2\xf8\xba\xb5\x95\x41\x7d\x69\xa9\x99\xf4\x98\x54\x10\x55\xa7\x2b\x63\x4f\xa2\x79\x45\x4b\xf6\xd8\x9c\x99\xc3\x74\x1b\x0c\x3d\xb7\xb4\xc4\xf8\xf7\xeb\xd2\x91\xbe\xbc\xec\x09\xf0\xcb\x19\x13\x02\xfc\xad\x3b\xfd\xef\x36\xd3\x30\x48\x68\xae\x18\x12\x3f\xae\xe0\xe3\x7d\xe6\x62\x98\xc4\xf9\xe0\x29\x5a\xbc\x88\xe3\xae\x52\x21\xcd\xb1\x4b\x96\x9f\x82\x17\xf4\x63\x3a\xe1\x31\x3f\x77\x14\x04\xee\xa8\x02\x33\x71\xdc\x87\xc8\x03\x01\x16\x9c\x3a\x2e\x30\x01\x45\x8a\x16\x06\x58\xfa\x73\xe3\x99\x17\x56\x5c\x23\xc1\xd8\xeb\x74\x7c\x1b\x1e\x1c\x7f\x02\x89\x09\x58\x2a\x04\x7d\xa8\x45\x4e\xf7\x4d\x52\x45\x2f\x59\x8f\xc1\x86\xea\x5c\x18\x80\x96\xf9\xba\xae\x51\x8e\xa8\xa8\xf2\x01\x84\x34\x35\x8a\xd3\x17\x2d\xce\xe9\xc6\x89\x6e\x42\x8a\x12\x80\xf9\xb0\xde\x14\xc2\x1b\x11\x9f\x52\x99\x0b\x4d\xd0\x75\x61\xca\x8c\xac\xcc\x37\xb3\x64\x68\x3b\x49\x97\xab\x63\x48\x8b\xc0\x69\xe0\x6b\x27\x5b\x1f\x0c\xcc\xa8\x6b\x89\x8d\x93\x1e\x13\xee\xc2\x51\xdd\xfc\x74\x54\x75\xe9\x76\xac\xed\xcd\xe9\x60\x85\x46\xd5\x25\xd1\x9d\x87\xfa\xa0\xa5\xd2\x4b\xdf\xc7\x6c\xf1\x5f\x29\x2c\x86\x79\x19\x4c\xc8\x42\x50\xa3\x78\xc9\x1b\x13\x6f\x95\xe7\xda\xde\x5f\x0c\xe3\xdc\xa6\x41\x32\x1c\x99\x98\x85\xac\x04\x63\x4c\xbf\x21\x70\x46\x5f\x1b\xcd\x8a\x4e\x92\x76\xc3\x58\x14\x87\x90\x12\x38\xa5\x88\x3d\x4f\xd5\x85\x2a\xfd\x24\xea\xd2\xb3\x21\x37\xbc\xa9\x68\x2f\xf9\x28\x15\x23\xf8\xa4\x62\x5e\xcb\x83\x01\x32\xca\x5c\x63\x18\xab\x2d\xd3\x52\x0e\xaa\x73\xed\xd2\x22\x8e\x11\x43\x31\x9a\x8b\xfe\x4a\x90\x5d\x5e\xa2\x38\xb6\x45\x4a\x41\x57\x86\x24\x9e\x64\x58\xe8\xa5\xb5\x06\xad\xe8\xe2\x55\x31\xb1\x92\xe8\x46\x19\xe4\x3e\x3d\x16\xdc\xc7\x9d\x6d\x1f\x98\xdc\xac\xe3\x8d\x88\xc2\xc0\xc6\x02\xf5\x61\x39\x4b\x5d\x57\x7e\x5f\xa5\x00\x4d\x98\x8e\x92\x34\x07\x8b\x19\x2b\x80\xd3\x1e\xc4\x82\x87\x5a\x2f\x8c\xcc\x5d\xd5\x16\x4c\x65\x09\xf1\x9a\xb8\x61\x4e\x71\xd6\x5d\x56\xfb\x64\x94\xda\x8c\x44\x2e\x3c\xbd\xee\xeb\x0a\x94\xfc\x7a\x0d\xf2\xee\xc5\x66\x64\x8d\x3f\x53\x45\xaa\xc2\x1f\x3c\xd3\xdc\x4f\x87\xe6\x9b\xdd\xa2\x9c\x4b\x1c\x98\x8c\x53\x18\xfb\x3a\x3e\xef\x40\xe4\x94\x6f\x4f\x19\x8d\xc5\x83\xcd\xd8\xf6\x4d\xee\x69\xd0\x38\xeb\xdf\xf2\x90\x9a\xe9\x3e\xc6\x85\x85\xe6\xc0\x9a\x35\xa7\xf2\x87\xb5\x7c\x5e\xb1\xb6\xe9\x8c\x6e\x37\x34\x23\xae\xea\x32\x87\x9e\x12\x42\x3f\xaf\xb9\x66\x47\x36\xee\xee\xd2\x60\x28\x85\x30\xbf\xd4\x52\xfc\xe9\x60\xe1\x77\x7c\x61\xfb\x96\x9d\x32\xa3\xaa\x36\xbe\x85\x9d\x8d\xa4\xd5\x59\x32\xe2\x22\xe6\x38\xed\x20\x0e\xc2\xd4\xce\x78\x5c\x18\x0c\x32\x0a\x54\xb7\x15\xf5\xce\xf9\xa9\xb1\x28\xa7\xcd\x9a\xcc\x8d\x05\x53\x88\x03\xa2\x21\x7c\xe2\x4f\xeb\x9e\xee\x9c\x5c\xc9\x59\x9d\xc2\x68\x29\x1e\x58\x58\x3f\x97\xdb\x28\x37\x30\xff\x87\x76\x14\x4d\x1a\xe6\x1b\xb3\x1e\xd0\x78\x15\xcd\x18\x2e\x89\xbb\x22\xa8\xc7\x39\x02\xd0\x0a\x61\xe5\x56\xf7\x76\xff\xca\xfe\x66\x6a\x47\xd6\xe4\xb6\xcb\x5d\x20\x4c\xdc\xa7\x5b\xc0\xeb\xe0\x23\x8b\x4d\x33\x32\x69\xde\xf0\x29\xd5\x47\x74\xd2\xf0\x75\x6d\x3e\x5c\x20\xa9\x0a\x52\xf5\x48\x43\xaa\x1e\x29\xa1\x8c\x34\x29\xf2\x30\xb6\xd1\xc6\x8e\x29\xb6\x53\xe0\x09\xce\x61\x41\xe8\xa4\x00\xff\x07\x16\x01\x26\xec\xc3\x96\x82\xca\x7e\x58\xf3\x54\x07\xbc\x27\x5b\x8e\x3b\x57\xad\x91\x43\x96\x12\xb6\xc6\xfb\x99\x51\xb6\x53\xb5\xca\x9f\x40\x75\xc8\xc9\x3f\xbb\xf3\xf3\x58\xcb\xcb\xad\x9f\xc5\x43\x38\xb1\x57\x4f\xd9\x7a\x46\xb5\x27\x3e\xac\x69\x6c\xe9\x25\x49\x3e\x08\xa3\x88\x37\x27\x02\x1c\x6e\x5b\xe5\x1b\x45\x90\x46\xa2\x52\x9d\x30\x1b\x84\x3b\x95\x3e\xcb\xa9\x96\x56\xe4\x3f\xa6\x9a\xe8\x6f\x60\x79\x89\x22\x57\x39\x7d\x4a\xb6\xcb\xe7\xff\x14\x8d\xc1\x15\x65\x44\x47\x69\x12\x50\x27\xa8\xd2\x46\xf3\xb1\xe1\x6b\x5e\xcb\xd7\xe4\x89\x92\x2e\x3b\xaf\xe5\x67\x1e\xb5\x74\xbd\x41\x19\xe8\x3c\xb7\xc3\x51\xbe\x43\x31\x6d\x9d\xa6\xd1\xd5\xf2\xc6\x8e\xee\xdf\x67\xf3\x3e\x44\xc0\xc8\x9f\xa0\x57\x62\x66\x5a\xb5\x09\x47\x45\x1a\x0c\x50\xc2\x2d\x9f\xc4\x09\xf6\xf8\xfa\x22\x7d\x3d\xb2\x1b\x3f\x75\x69\xab\xcc\x14\x36\x5d\x4d\x4d\x91\xcf\x78\xbd\xd0\x8f\x14\xbb\xde\xcd\x8a\xa5\xf0\x52\x82\x2c\x24\x22\x51\x04\x7e\xe3\xff\xa7\xdf\xe0\xeb\xa9\x83\xbd\xdc\x60\x29\x73\x20\xc1\x78\x03\xc5\xc3\xd7\x53\x66\xe8\xef\x36\x93\x11\x34\x6e\x66\xbc\x36\xf9\x65\x30\x03\x09\x94\xda\x3b\x06\xf7\x6a\x71\xdf\x03\x33\x1a\x85\x6c\x05\xdc\x30\x2b\xea\xe0\x8a\x66\x85\xcd\x9e\xa1\x95\x8f\xea\x2a\xf8\x43\x58\x9f\x0b\x8b\x07\x9b\xf1\x77\x61\x08\x85\x24\x84\x66\x0a\xc5\x6a\xf4\x01\xc1\x9e\x6f\x92\xef\x2d\x98\xc3\x32\x1e\x17\xb9\xc5\xf2\x65\xe0\xbf\xfc\xd5\x58\xb5\xed\xdc\x26\xdf\x9b\x35\xf7\xe1\x7b\x33\xfd\x3b\xac\x82\x74\x81\x93\x49\x46\x57\x01\x13\x18\xc2\x51\xbb\x3b\xf6\x56\xf1\x1f\x8f\x2b\x5e\x00\x36\x0b\xb6\xfe\xe9\xb1\x97\x63\x7f\x55\x45\x30\x41\x12\xf7\x6c\x6a\xe3\xc0\xce\x29\xd6\x81\xab\x8a\x2c\x8f\x2d\xb7\xc4\x29\x3e\x07\x73\x41\x13\x44\x9f\xae\xe9\xd9\x69\x26\x3d\x38\xae\xa2\x00\x5d\x3e\x29\x1e\x61\x66\xe2\x19\x9a\x2f\xd0\x81\x86\x4d\xf9\x78\xdb\xb7\xd7\xfe\xe6\xd4\x57\xfe\x72\x73\x3d\x8c\x20\xcd\x86\x39\x61\x00\x14\xdf\x4c\x01\xa0\x16\x0f\x36\x3b\x45\x6a\x4d\x41\xe7\xa1\x74\x1c\x7a\xc0\xcd\x39\xad\xac\xf6\xbf\xd7\x91\x9f\x09\x66\x01\x7e\x0c\x2b\x86\x28\x8f\xe2\xee\xd4\x33\xbe\xb0\xff\x73\xcd\xe4\x08\x8c\x1c\x22\x1f\x94\x59\xf8\xba\xf5\x99\x6a\xc3\x17\x25\xc5\x96\x96\x0e\x20\x3a\x55\x8c\xc9\xee\x46\xd5\xa8\x89\x73\x90\xb8\x01\x70\x1c\x83\xb1\x8a\xb1\x03\x2d\x0f\x85\xba\xab\x70\xe1\x9c\xdd\x16\x80\x81\x0f\x2b\x5e\x4a\x3a\x59\xc3\x23\x2e\xb0\x88\xf9\x7a\x6a\x28\x96\x97\x9b\x76\xd8\x49\x8d\xcb\x30\x23\x88\xe4\x02\x02\xdf\x68\xfd\xad\xc2\x46\x84\x1a\x80\x2d\xe3\xaa\x11\x20\xdb\xbf\xdb\x52\x14\xd2\xe0\x06\x42\xc2\x9e\x51\xbd\xfc\x1f\x53\xe0\x24\x3a\xa9\xa3\x88\x6a\xb5\xa8\x65\xdc\x01\x48\x15\xc0\x9a\x6b\x8a\xa2\x1c\xd5\x47\xa9\x10\x6f\xfd\xa2\xc3\x87\x9b\x71\x12\x5b\x45\xee\x71\x52\x33\x4e\x9f\xac\x2b\x85\x51\x3a\x32\xe4\xae\x4c\xc6\x8d\xa9\xee\xa5\x3f\x75\xd1\x45\x2f\x0a\x47\xd9\x8c\xa7\x2e\xe3\x03\x48\xaa\xad\x34\x0e\xd2\x2c\xe2\x03\x06\x13\xad\x93\x0b\xe2\xb4\xee\x6e\x2a\x59\xab\x9b\x6a\x09\xac\x99\x0c\xd9\x0f\x47\x05\x86\x41\x93\xee\x5d\x0f\xee\x8c\x4c\x9e\xac\x67\xab\x21\xe2\x51\x61\x05\xac\xe8\xaf\x4d\x77\xd2\xbe\xd8\x34\xbd\x5e\x18\x85\x5e\xb8\x1c\x7b\x77\x66\xe2\xf7\xf1\x4c\xfb\x93\x04\xf4\x06\x26\xce\x18\x3d\xc6\xcd\xef\xd8\x60\xd2\x09\x5f\x53\x06\xb3\x26\x8d\xdd\xfe\x02\x02\x09\x47\x16\x5f\x4f\xc9\xdb\x1d\x9a\x6f\xc6\x09\xad\x01\x98\xaa\xb3\x3a\x23\x06\x77\x51\x14\xfb\x1b\x5f\xfd\xb2\x93\xb1\x91\x93\x2f\x32\x99\x4d\xb3\x20\x19\x21\xf4\x86\xa9\x65\x3b\xc0\x37\x8e\x4e\x3d\x4a\xe2\x7e\x6e\xd3\x61\xc3\xbb\xe8\x27\x54\xe3\xf3\x09\x55\xd6\xa6\x23\xcb\x36\xbc\xec\x0a\x60\x6f\x02\x8e\x78\x46\x2a\x1b\xc3\x51\x9a\xac\x09\x95\x8f\x77\x9b\xdf\xd5\x95\xbf\x77\x55\xbe\x31\xb0\x21\x35\x30\x35\x96\xbd\x74\x88\x0a\x76\x5f\xd5\xa4\x34\x53\xf9\xbb\x85\xc5\xa6\x49\x87\xa8\x4c\x21\xfd\xcf\x6a\x77\x7c\xe3\x99\x3f\x8a\x4e\x16\x76\xc3\x97\x39\x47\xe6\xba\xab\x1c\xb3\xdb\xa5\x4a\x93\x5d\x9c\x74\x55\x5e\x0a\x94\xe4\x7c\xed\x3c\x8c\x22\xb6\x6b\x36\xce\x7b\x45\xf4\x37\x26\x4c\x5c\x5e\x46\x4f\x7f\x98\x01\x57\xe6\xec\xda\x3e\xaf\x1e\xec\x91\x1b\x83\x24\xea\xda\x34\xdb\xa9\x36\xe4\x6b\xf4\xf5\x70\x15\xff\x5c\x11\xa5\x7d\xa0\x28\xfb\x2f\x62\x07\xc0\xcb\x99\x8c\x95\xde\x1a\x43\x2f\x04\xfb\xef\xab\x2a\xa0\x10\x10\xb5\x02\xd1\x03\xa3\xdf\x15\xd5\x30\xf1\x0f\xcd\x73\xc3\xe7\x66\xfd\x0f\xcf\x11\x71\x04\x37\x67\xb7\x7c\x63\xfa\xe3\x6d\xd5\x41\x73\xb5\x96\x39\x72\x90\x8c\x46\x6e\x5f\x20\x6a\xfa\x3d\x95\x40\xff\x3d\x57\x61\xcd\x46\x61\xca\x65\x12\xe4\x33\x67\xda\xbe\xb4\x39\xa3\x00\x61\xf6\x88\x09\xf2\x68\x63\xb6\x92\x39\x55\xa8\x77\x26\x86\x75\x02\xb7\x2f\xec\x77\x9a\xb6\xb2\x7c\x93\x35\x9b\x56\xb3\xe5\xf0\xfd\x4f\x28\x41\xbb\x13\x75\x14\x58\x9d\x22\x58\x75\x9f\x71\x54\xdd\xcb\x7e\xdb\x6a\x95\xf7\x60\xd5\x30\xb4\xd4\xf9\xbe\xfb\x5c\x34\xde\x52\x5a\xd8\x9c\xac\x93\xf2\x80\x4f\xaa\x9c\xd6\xc8\x03\x76\xd5\xf8\x06\x60\x19\x09\xed\x9d\x4e\xbb\xd0\x59\xcc\xd2\x13\xd2\xe4\x7d\xf3\xe9\xb6\x9f\xc9\x07\x63\xef\x46\x7f\x47\xb7\x3c\xed\x98\xf8\xda\x7f\x90\x14\x69\x68\xd3\xac\xa1\x2b\xec\x5e\xac\x79\xba\x45\x71\xdf\x72\xb3\x6f\x86\x1d\xdf\xa2\x88\x1f\x38\xad\xc8\x6e\x51\xc4\xc6\xb1\x3e\x51\xbd\x7a\x61\x1c\x24\xe9\x28\x49\x89\xcf\xd5\x37\xc6\x5c\x51\x1f\x9d\xd6\x12\x5d\x58\x50\x70\x54\x97\x3c\x77\x74\xe3\xe7\xd4\x4b\xfe\x9e\x56\xb1\x19\xd8\xcc\xee\x29\x4d\xae\x13\x24\x2f\xc7\x1d\x80\xba\x7b\x55\xfa\x66\x65\xc7\xaf\xa9\xd6\xa9\xa7\x54\x23\xec\xab\xba\xe1\xe5\x68\x4b\x31\xee\x80\x68\x18\x1e\xef\x6c\x5b\xf1\x08\x10\xca\x68\x53\x9a\xa2\x45\x2b\xaa\xa1\x68\x08\x6a\xd2\x49\x14\xd5\xcf\x78\x45\xf7\x13\x8a\x07\x07\xbc\xfc\x70\xfc\xce\xd5\x62\x0b\xbe\x5e\x98\x8d\xc8\xce\x78\xca\x26\xa4\xc7\x44\xfb\x41\x65\xd5\x6f\xbb\xfd\x51\x6d\xa0\x5c\x5a\xf2\x02\x7d\x5e\xac\xaf\xa6\x40\x41\x8c\x06\xdd\x0d\xf4\x84\x20\x7f\x80\xa9\x80\xbf\xc4\xca\x73\x18\xaf\xb7\xeb\xea\x7a\x07\x9a\xc3\x24\x26\x21\x28\x18\x7b\xc7\x87\xb3\x32\xef\x38\xa3\x3f\x49\x7b\x20\x48\x86\x43\x9b\x06\x21\xcb\x98\x63\x33\x41\xc1\x19\xbb\x64\x53\x17\x04\x8f\xa9\x86\xcc\x34\x09\x56\x39\x47\xc9\xac\x6a\x2d\x5f\x34\x7b\x77\xec\x99\x90\xbe\xf2\xb5\x86\xee\x6a\xbe\xa0\x59\x02\x2f\x28\xa7\xb1\x9b\xac\xc7\x4f\x96\xf3\x05\x87\x0e\xaa\x78\x95\x5e\x2c\x4d\x4a\x05\x17\x78\x0f\x99\x58\x6c\xb0\x37\x74\x63\xe6\x2d\x0a\xbe\xb0\x6f\xce\xc3\x50\x48\xb4\x4a\x46\x1f\xc7\xc1\x4d\x60\xf1\x45\x03\xb5\x8c\xdd\x70\x34\x30\xe2\xd6\x91\x69\x2c\x1e\xe4\x95\xbc\x9d\x22\x14\x6c\xc8\xa7\x95\x60\x78\xd7\xa4\x52\xaf\x64\xe0\x3b\x0e\x17\x69\xe6\xf3\x49\xc3\xdb\x2d\x5f\x48\x07\x82\x85\x90\x53\x44\x69\x81\x1a\x0c\xd2\xab\x88\x7c\x7f\xac\xac\xfe\xbb\x63\xa5\xd9\x7f\xd4\xf9\x29\xd9\x28\x0d\xe3\xd5\x88\x4f\x6f\x0e\x6d\x34\x7a\xe6\xdc\x74\xb6\xec\xf9\x03\xcd\x5e\xf9\xbb\x83\x30\xb3\x80\x99\x4b\x82\xcc\x83\xe0\x2f\xb4\x7c\xb3\x4c\x98\x65\x04\xf0\x52\x07\x4d\x63\xa2\x68\x24\x1b\x6d\x4f\xdc\x37\xda\x18\x0e\xa9\xcc\x8e\xbc\xce\xbd\x96\xe7\xf7\xbc\x57\x2b\xe2\x55\x9e\x76\x8a\x9b\xe2\xb7\xc7\x8a\xc1\xf6\xb7\x6b\x03\xfc\x30\x8a\x6c\x9f\xa1\xa5\xce\xe1\xf2\xce\x57\xad\xe5\x1b\x16\x2c\x0c\x04\xc7\xf1\xd7\x70\x84\x0b\xd9\xad\x77\x11\xce\x4e\xe5\xd6\x4a\xbf\xb8\x6b\x83\xc8\xa4\xe2\x15\xb3\x3c\x04\xe6\x43\xb4\x22\xa6\x53\x72\xcd\x20\x0d\x87\x61\x6c\x22\xf6\xf6\x44\x1f\x4b\x35\x9c\x9c\x76\x91\x03\x31\x32\x3d\x56\x3e\xa0\xa0\xe8\x7d\x7f\x1a\x67\x02\x61\x58\xaf\x78\x20\xc4\xcf\x7c\x8e\x76\x2a\xd6\xef\x4e\xf0\x10\x31\xab\x1c\xac\xac\x74\x80\xd0\xbb\x4a\x6e\xd2\x73\x69\xf2\xbe\x82\x61\xfe\x7f\x1c\x16\x65\x68\xba\x61\xc6\xb2\xe6\xb5\x82\x70\x35\xb2\x18\xa9\xe1\x16\x4f\xf1\xa9\x95\x7f\x5d\x17\x5a\xdb\x23\x61\x96\x53\x0f\x81\xce\x34\xba\x4a\xdd\x31\xd5\xbc\x9a\xda\x2c\xdf\x22\xb1\xe2\xd9\x0a\x98\xd0\x59\xc8\xfc\x15\x6f\x53\x92\x26\xb1\x15\x71\x16\xc1\xed\xc1\x12\xc1\xb2\x3e\xa8\xe2\x8f\xa6\x97\xe6\x81\x66\x64\x56\x79\x5f\x55\x84\x7a\xf8\xa6\xe5\x33\x63\x91\xed\x87\x79\x38\x34\xb9\x25\x3b\x0a\x80\x39\x92\xef\x52\x7c\x55\x5c\x83\x17\xa6\x24\xae\x17\x0f\x36\x3b\xa9\x09\xcb\x1d\x19\x71\x59\xa6\x4e\x13\xba\x46\x75\x22\x88\x92\xcc\x92\xd7\x29\x39\x06\xfa\xb4\x63\xa8\x75\x67\xcf\x9e\xb6\x77\x41\xf7\x28\x72\x94\xb4\x88\xec\xae\xd2\xee\x22\xae\xb9\xa6\xf4\xa4\x39\x79\xee\x56\x51\x69\xd1\x60\xe0\xef\x02\xc9\xca\x37\x3a\x2d\x44\xcb\x96\xbf\x4a\x73\xab\x5f\xf1\x32\x58\x61\x30\xa0\x29\x5d\x5a\x92\x43\x01\x32\x5d\xc0\xc5\xc2\x71\x40\x54\x73\x77\x7a\x2b\x2f\x36\xf3\x24\x37\xd1\x8c\xb2\xe9\x57\x94\xf3\xb7\x87\xbe\x09\x4e\xf7\xdc\xc4\x01\x32\x3c\xa9\xac\x6b\x89\x45\xc3\x2a\x5f\x4f\xc4\x9a\x9a\x4e\x9c\xa4\xc3\xf2\x38\x3c\x34\xcf\x1b\xee\x2d\x5e\x35\xb0\xfa\x68\xd9\x12\x2e\x80\x69\x5b\x41\x0d\x3c\xfd\xd4\x8a\xad\x90\x7e\x71\x9f\xad\xbe\xa4\x95\xfa\xc5\x8d\xdb\xa5\xc0\x66\x1f\x6a\x61\xab\xbd\x13\xfc\x3a\x1c\x36\x64\xe0\xd0\xd1\x76\x5b\x91\xc9\x6f\x27\x95\x29\x1c\x5e\x57\x5b\xbe\x63\xe2\x1e\xa6\x40\x4e\x35\xc7\x1d\x15\x5b\x44\x59\xa2\x3a\x43\x3f\xc8\x37\x8a\x66\xd1\x1e\xc9\x6d\x1a\x26\x29\x10\x73\xa2\xc9\x5c\x3e\x82\x50\xd1\x3b\xb8\x6c\x14\x0e\xe1\x2f\xc1\x1a\xa1\xb5\x47\x86\xa9\xe1\xf8\xff\x2f\xd5\xb2\xd9\x95\x8f\x43\xfb\xc3\x21\xdf\x1c\xd6\xf6\x8a\x2a\x5b\x76\x93\x20\x4f\x52\x96\x76\x97\xfe\x5e\xfa\x1c\x5e\xf6\x5b\x2d\x05\x12\x3a\xd1\x52\x08\x9b\x6f\x8d\x9f\xf0\x59\xf3\x5f\xfc\x85\x86\xaa\x53\x5d\xd5\xb5\x29\x02\xba\xba\x18\xb3\xc8\x2c\x89\x8e\x94\x63\x2b\x2e\x6e\xf9\x5a\x22\x5d\xa2\x5a\x31\x42\xdb\x8f\xb8\x84\x20\xa5\x5d\xe5\x24\xde\xd4\x80\x0d\x6b\x62\x24\xde\xb1\xc6\x1f\x2a\xea\x9b\x2b\x1a\x31\xa0\xca\xf6\xff\xe0\x8b\x2b\xb3\xca\x54\x63\x91\x63\x7d\xdc\xa1\x8f\xc0\x1d\x7a\x95\x70\xfe\x38\xbe\x3f\xae\xe5\x04\x0e\x6c\x9c\x97\x31\x8a\x16\x8b\xb8\x8c\x81\x12\x7e\x3c\x55\xf0\xb4\x59\xd8\x8f\xe7\x3c\xe0\x8d\x13\x58\x22\x65\xdf\x70\xe4\xa0\xd7\x95\xb6\xe7\x1b\xd5\x3e\x02\xc5\x92\x36\xec\xd8\x74\x87\x5f\x16\x7b\xdb\xaa\x12\x8a\xac\x3e\xf2\x58\xac\xc9\x50\x69\xf1\x40\xc9\x85\x51\x30\x30\xd9\x7f\xa5\xce\x88\x97\x8a\x68\x83\xbe\x1a\xa9\x70\x56\x93\x64\x02\xc5\x96\xe2\xc4\xb9\xae\xdb\xad\x4f\xe3\x87\xf8\x06\x09\x6d\xfe\x82\x3a\xc3\xd3\x4f\xcd\x90\x0b\x58\x4e\xe0\xd5\x49\xf6\x68\x72\xc2\x5e\x52\xc4\xdd\x27\x54\x33\x0b\x03\x2d\x24\xf3\x56\x5a\x5b\xd7\x9c\xe4\x34\x6a\xd8\xd3\x77\x14\x90\x2b\xf3\x07\x9c\x98\x3d\xd9\x4a\xbe\x69\x79\xb0\xd1\x31\xad\x44\x7d\xbf\xe5\xc9\x7e\xcf\xb7\x7c\x5d\xe0\x0f\xc6\x2a\x53\xff\xa6\x73\x38\x56\xad\x1d\x65\x04\xd9\x52\x91\xb2\x68\xec\x3f\xd6\xf6\x14\x6b\xdc\x14\x87\x3c\xc9\x1d\x2d\xd2\x6f\x22\xd6\xf0\xe4\x5a\x01\x5e\x40\x0a\x07\x1a\x1c\x19\x87\x88\x53\x55\x87\xf3\x7e\xd7\xe1\xac\x0a\x4c\xc1\x60\x98\x24\x2f\x4b\x11\x13\x7b\xf2\x3b\xb4\x41\xf8\xba\x06\x39\x72\xa0\x19\x27\xcf\x91\x13\x8b\x2a\x05\x6a\x6a\x7c\x5d\x97\x5e\xe9\xd9\x60\x35\xb2\x59\xa6\x1a\xdf\xaf\xab\xc6\xf7\xeb\x5e\x96\x66\x94\xe4\xb9\x30\x6c\x88\x8e\xa5\xb2\xea\x3a\x1e\x1a\x26\x5d\x1b\x65\x73\x8a\x7e\x94\xc5\x2d\x38\x20\x51\xb0\xb0\x3b\xaa\x5b\xf0\x94\x2a\xe0\xec\x68\x6b\x39\x14\x6a\xce\xdc\xa1\x9a\xa5\xb7\x4d\x14\x87\xd0\x36\x04\xc8\x30\x21\xbc\x2f\xf9\x86\xbc\x0e\x24\x99\x1b\x14\x1f\xf1\x75\x7b\xaa\x03\x74\xa1\x99\xdb\x58\xa6\x06\x8b\x08\x20\x01\xbe\x76\x4d\xa9\x59\x30\x48\x22\x93\x66\x83\x10\x2d\x11\xcc\xb0\xa1\x5a\x36\x99\x65\x40\x54\xe5\xe5\xe0\x05\x9b\xa3\x24\x7f\x36\x49\x97\x76\xf3\xaa\xda\xb8\x99\x35\x39\x2d\x42\x21\x2b\xf0\x6d\x56\xf7\xc7\xbe\x2f\x0b\xe7\x9e\x70\x18\x78\x00\x10\xc1\xae\x49\x2b\x10\x29\xf6\x93\x58\x59\x78\xa6\x77\x68\x52\x91\xdd\xd8\x86\xaa\x99\x2a\x5d\x4b\x4f\xcf\x64\xec\xe1\xd4\x67\xc6\x75\x05\x9a\xfd\xcf\x1f\x98\xf3\x09\x29\xf6\xe4\x24\x87\x58\xfe\x04\x50\x5b\x67\xc9\xb3\xe6\x7f\xd7\x79\x91\x2b\xaa\x7b\xa2\x9f\x86\xb1\x5d\xcb\x56\x11\xaa\x4b\xe6\x52\x15\xee\x5e\x53\x6b\xca\x0e\x07\x80\x26\xcc\x3b\xfe\x0b\x32\x2a\x7c\xa3\xce\x9f\xdc\xc6\x59\x98\xc4\x80\x6e\xa0\x20\x73\x4c\x75\x07\x4d\x37\x50\x2c\x1e\x6c\xa6\xa6\x08\xa8\x07\xc0\x45\x9b\x00\x37\x4b\xcd\xd5\x2f\xc6\xa8\xe8\x74\x92\x60\xb5\xa1\xfa\xeb\xce\xa8\x7a\xf7\x99\xda\xa3\xa6\x5c\x2c\x23\xf1\x82\xe0\xf7\x72\x9d\x9e\x6f\x1c\xa8\x93\xb4\xd6\xd2\x2a\xd0\xb5\x7c\x28\x38\x8e\xd0\xce\xc3\xbf\xcf\x42\x06\x1e\x71\xfd\xe9\x4a\x21\x37\x29\x50\x94\xc6\xce\xbc\xa3\xfc\xad\x3b\x15\x5c\xf9\x70\x48\x82\xe2\xca\xdf\xc1\x62\x70\x90\x23\x97\xce\x7e\xa8\x33\x2f\xaf\x4c\x19\x9e\x95\x79\xa2\x36\x9f\xf5\xad\x5e\x77\x60\x1b\x98\x06\x98\x5e\x41\x44\xc0\xca\x2d\x89\x98\x6b\x30\xe5\xfb\x2f\x2c\x70\x65\x20\xcc\x64\xb8\xb0\xc7\x59\x19\x98\x6f\xea\x32\xab\x50\x67\xe2\xf0\x52\x10\xc9\x5a\xa5\xda\xe5\xa6\xed\x5a\x88\x78\x19\xce\x11\xbc\x7c\xbe\x9e\x3a\xeb\x96\x96\x9a\x69\x32\x1c\x55\x90\x54\x47\x55\xdd\xf3\x68\x65\xe4\x03\xdb\xfd\x19\x5a\x96\xf0\x5e\x77\xb5\xe1\x5c\xc0\xd6\x7d\x80\x41\x04\x72\xf2\x3d\x0c\x35\xce\xb1\x4d\x1a\x20\xcc\xc1\xb3\x93\x72\xab\xe3\xfa\x38\xb1\xfe\x88\x22\x6e\xe3\x57\x0f\xb0\x29\x3f\xab\xfa\x26\x98\x80\x17\x23\x7d\x9f\xbc\x1e\x8c\xf4\x35\x6c\x4e\xd9\xcd\xe5\x23\x13\xd3\xc2\xb7\x9f\x41\xd2\x1d\xa7\xe3\x1e\x74\x94\x60\xa1\x9f\x6e\x55\x01\xac\x4e\xd1\x84\x5b\x33\x61\xa7\x67\x27\x4a\xd8\xfd\x96\xd6\x8b\x67\xac\x16\xec\xd4\x55\xaf\x22\xf4\x3f\x3e\xdb\xa6\x23\x9c\x1f\x52\xc1\x5b\xec\x70\x34\x30\x19\xc9\xd3\xd0\xf7\x60\x39\x43\x0c\x87\xaf\xa7\x8a\xd9\xa4\x4a\x30\x08\xfb\x10\x9e\xe1\xa6\xc7\x96\x6e\x80\xac\xd1\x4c\x36\x23\x0e\x9c\x45\xd0\xa6\xfc\x7b\x10\xb4\xdd\x53\x5d\xb4\x27\x14\x5e\x25\x32\x71\x57\xd0\x7e\xf0\xed\x8e\x8f\x7d\x02\xfe\x78\xeb\x31\xc9\x99\x87\xfd\xb9\x0a\xbd\x80\xe7\x79\xf8\x36\xc7\x4b\x30\x0e\xcc\x06\x8f\x4a\x30\xf6\x35\xea\x9a\x4f\x4f\x9d\x47\x87\xe6\x9b\xa6\x17\x25\x06\x69\x5b\x7c\x31\x34\x56\x90\xaa\x7d\x40\x4b\x50\x52\x22\xcf\xa8\x50\x7f\x38\xb2\x79\x98\x27\xe9\x8c\x92\x30\x78\xa8\xa4\x34\xb7\x6b\xd1\xc7\x0f\x5c\xe5\x35\xb5\x2f\x81\x34\xd1\xfb\x9e\xdb\x27\x0a\xb5\x3c\x0b\xe5\x1b\xce\x2f\xba\xa2\x4b\x40\x72\x26\xe8\x46\xc4\x53\x3e\x40\x29\xba\x72\xba\xd0\xbc\x2f\x7e\xba\xad\x72\x2f\xef\x8c\x3d\x9e\xf9\xd3\x50\x62\xc4\xd9\x0c\xcc\x26\xef\x0b\x05\x5b\x9d\x2e\x93\x49\xe2\x36\xeb\xd9\x19\x2d\x5e\x72\x45\x65\xef\x4f\xeb\x82\xe6\x83\x9a\x0c\xda\x97\x9a\x9f\x5d\xdc\xf7\xa5\x7d\x07\x0f\x20\x8a\x86\x07\x7e\x56\x61\x45\x2f\xd2\x96\x82\xcb\x75\xdf\x65\x1a\x93\x20\x28\x46\x8e\x30\x17\x50\x18\xb4\xe5\xf0\xb5\xea\x08\xe8\x85\xfd\x22\xb5\xbb\xcb\x89\x44\x02\xfd\x4d\xc5\x21\xf7\x2d\x80\xfc\x44\x96\xbb\xb1\xaf\xf4\x09\x54\x8a\xeb\x86\xc2\x35\xcf\x51\xda\x82\x4f\xf7\x2d\xf8\x33\xdf\x16\x76\x51\x9d\x56\xd9\xba\x2f\x44\xe3\xd8\x60\x7f\x93\x6f\x34\x73\x0d\xa5\xde\x67\x2b\x29\x22\x05\x50\xab\xe8\x52\x23\xb3\xc1\xd7\x3a\x89\x9b\xe7\xa9\x21\xba\xc1\xac\xd1\x58\x58\xe0\x2c\x06\x17\x95\xf9\x46\xf5\x9c\x8f\x4c\x46\xbc\x3a\x9e\x91\x11\x98\x14\x41\xfa\x4c\x1f\xa5\x07\x9a\x36\xce\x3c\xf5\x88\x2b\x65\xf9\x7e\xe5\x69\x5c\xe3\xf2\x72\x73\x3d\xec\xda\x98\x3f\x83\x19\x66\x37\x91\x6f\xea\x14\xb0\x06\x36\x1a\xcd\x78\x41\xd9\x87\x4a\x2e\x86\xc1\x36\xf2\x83\x1e\x43\x64\x8f\xd8\xe1\x88\x5f\xdf\x35\x34\xf2\xe4\xf0\x4d\x5d\xde\xea\xa5\x64\xe0\xfa\xfc\xe4\x54\x51\x94\x77\x47\xeb\x3e\x33\x8a\x4c\xcc\x09\x3d\x91\xaf\x57\x95\x73\xe4\x43\x04\xf8\x57\x43\x45\x9e\x45\xac\x21\x8f\x53\x00\xde\x0e\x5f\x6b\x36\x89\xf5\x30\x46\x3e\x5e\x84\x2e\xe9\x47\x30\x95\xe0\x3e\x57\xfc\x42\x2f\xca\x7f\x28\x58\x3a\xe9\x81\xcf\xfa\xce\xb6\xd3\xad\x4a\xfa\xd4\xb3\x0a\x9c\xc6\x71\x25\x49\x56\xd9\x68\x61\x0c\xd9\x28\x98\x33\x27\x52\xec\x8c\xd4\x6c\x5b\x55\x02\x6e\x4e\x1d\xdf\xfb\x96\x51\xd2\x6c\xa8\x50\xf7\x72\xab\x5c\x9b\x12\xb9\xab\x7d\x1a\x25\x69\x98\x60\x47\x3b\x06\xdf\xf2\xcb\x85\xc1\xb7\xa6\x4e\x6f\x82\x20\x49\xbb\xf2\x78\xb0\x8e\xb7\x2a\x34\x18\xf4\x0d\x52\x99\xad\x31\xf3\xa9\xf1\xbe\x8e\x42\xaa\x2e\xba\x62\x5b\x4d\x87\x65\x6e\x62\x91\x1a\x72\x9c\x38\x2e\x78\xbd\xa2\xd0\x18\x83\x64\xdd\x46\x11\xaa\xcd\x38\xf8\xe0\xac\xf2\x75\x5d\x44\x98\xac\xd9\x74\x60\x4d\x57\xf5\xe0\x7f\x48\x2f\xc4\xd7\x75\x20\xa2\xd5\xb0\xcb\x8f\x53\xe7\x11\x7b\x97\x33\x4f\x4d\x9c\x85\x48\xb7\x39\xa8\xfd\x3e\x0f\xb5\xf7\x95\x56\xea\x60\x21\x93\x29\x02\x83\x3e\xa0\x6f\x4c\x54\xdf\xc7\x19\xe0\x21\xdd\x09\xb9\xcf\x93\x4b\xa1\x6f\x89\xff\x47\x71\x26\xfe\x44\x77\x84\x9c\xa1\x77\x43\x60\xba\xa3\x5d\xe3\x8f\xae\x85\x76\xdd\x52\xb8\x47\x71\x35\x8e\xdc\x1f\x8d\xfd\xf1\xfb\xa3\x29\x6f\xf4\x57\x5e\x68\x66\xb9\x49\xbb\x09\x04\x64\x58\x1d\x40\xe9\x7c\x5d\x70\xb9\xc2\x20\x09\xe3\xac\xd2\x5d\xab\xb8\xb5\xcf\xab\x83\xbd\x6b\x23\x02\xf5\x33\xde\x14\x87\xcc\x0f\x14\xd1\xd3\x0f\x7c\xff\x6c\x18\x45\xa6\x2f\x67\xa2\x63\x14\x76\x22\x7d\xef\xc0\xb8\x30\x5e\xb8\xb5\x55\x67\xb8\x5c\xd5\x45\x3e\x48\xd2\xf0\x65\xcf\x95\x8e\x4a\xd1\x49\xa5\xc1\x34\xad\xbd\xbe\x7f\x65\x7f\x33\x48\x40\xd8\xff\xa2\xa3\x2f\xa2\xb9\xe2\x1b\x97\x70\x31\x9d\x22\xb3\x73\xe5\x80\xb8\xa8\xc0\xf5\xda\x3e\xc1\x4e\x73\x85\x61\xd8\xb5\xd5\xba\x88\xfc\xb2\x22\xb0\x33\x45\x37\xb4\x71\x60\x77\x93\x97\x89\xe0\x91\x5d\x0f\x56\x19\x82\xff\x2a\xe4\x1a\x8d\x2d\x0a\x51\x88\x10\xae\x22\xb5\x84\x2c\x32\xbb\x31\xc0\xd0\x5c\x22\x3b\x25\xa4\x29\xb4\x9b\xf8\x3f\xea\x91\x63\xc3\x4e\xb8\x66\x22\x1b\xb3\x04\x36\xac\xe2\x07\x63\x9f\xd8\xff\x40\xc7\xed\x36\x0c\x06\x33\x5e\x96\x09\x6e\x04\x72\x86\x17\x35\x55\xf5\x3d\xd5\x42\x17\xa6\x49\x0c\x9b\x83\xb7\xbd\xd1\xf2\x14\x6b\x5c\xaa\x60\xf6\xb8\x89\x4f\x9d\xfe\xfc\xaf\x66\x73\x18\x5b\x4e\x80\x61\x6c\x29\xd6\xd8\xff\x74\xdb\xf7\xe3\xc3\x83\x12\x23\xa1\xaa\xde\xb3\x93\xad\xdd\x66\x54\xbf\x1a\x19\x0a\xb9\x4d\xba\x81\x17\x96\x1e\x09\x5f\x9d\xbe\xa4\xda\x94\x4d\x6c\xa2\x84\x1b\x1c\xeb\x48\xf2\xb6\x1a\xc9\xe7\xb8\xc9\x60\x03\x2e\x9a\xcb\xef\x4a\x40\xf3\x3f\xb0\x4a\x8b\x34\xc4\x3e\xe5\x6a\x77\x69\x3f\x8c\xb9\x36\x5a\x97\xa5\x9c\xa6\xc3\x3c\xd0\x8c\x92\x35\xab\x36\x3a\x8b\xc9\xf0\x8d\xaf\xdb\x98\xe1\x88\x52\xd7\x4e\x68\x65\x0f\xfc\x63\x44\x14\x97\x14\xc9\xdd\x8e\x49\x1d\x18\xd7\xc4\x31\x23\x06\x14\xf5\xa5\x6c\xe5\x13\xee\x77\x46\x36\x0e\x42\xe9\x14\x60\x02\x87\x56\x43\x91\x39\x3c\xe6\x46\xf5\xe7\x1f\xc7\xd4\x62\x14\x1b\x94\x29\x10\xcd\x61\xfa\x6e\x55\xbe\x94\x76\xe7\x07\x63\x4d\x60\x39\x56\x95\x8d\xa7\xda\x9a\x9d\xf4\x12\xd2\xa6\xf0\x04\x3f\xa2\x30\x44\xea\x8f\xbe\x01\xfb\x0f\x54\x9d\xf3\xde\x34\xc5\xda\x42\x33\x18\x24\x04\x0d\x3c\x34\xef\x54\x10\x1a\x4e\xbf\xf6\xbc\xca\x19\x0f\x4d\x8a\x56\x36\x49\x7c\x7f\xb7\xa5\x9a\xab\x2f\x69\xad\xf3\xb3\x75\xf4\x83\xeb\x49\x82\xe3\x0b\x51\xc4\xfb\xb4\x37\xf8\x5a\x39\xc7\x81\x49\xbb\xa1\x09\x1a\x7e\x6f\x7f\x97\x5e\x4d\x7e\xd3\x7b\x06\x91\x01\xc7\x9b\x92\x8a\xf1\x6a\xad\xc7\x7c\x50\xd0\xeb\x11\x3c\x6e\x87\xe2\x75\xbb\xef\x31\xcf\x7f\xfc\x9f\x63\x8d\x20\xe6\x63\x7a\x25\x69\xff\xf0\xe1\xeb\x2c\xa4\x8b\x59\x7c\x4d\xe1\x94\x87\x45\x96\x3f\x49\xd9\x05\x9c\x97\x14\xc9\x7d\xc9\xeb\xa1\x1d\x12\x99\xfc\x73\xaa\x1a\xc6\x12\x39\xe2\x0a\x36\x5c\x63\x0b\xeb\xcd\x09\xe4\xad\x3c\x6a\x61\x71\x4f\xb6\x54\xe4\x88\xd2\x3b\x2c\x01\x2a\x93\xb0\xfe\xff\x7e\xac\xf2\xdb\xdf\xa2\x61\x83\x3f\x76\x43\xa7\xe1\xa7\xd1\x48\xa5\x0b\x9f\x9a\x78\x15\x75\x2b\x05\x21\x7c\x91\xe3\xcc\x93\x18\x16\x11\x06\xf4\xa7\xd6\xad\xfa\xee\xd8\x30\x23\xf1\xb2\x19\xcf\x62\x79\x43\xa1\xe8\x2f\x28\xae\x88\x6d\x6d\x2f\x85\x94\x39\x79\x00\xde\xb0\x8a\x86\xf9\x32\x5e\x8d\x85\xf8\xea\x0a\xf6\xb9\x49\xfb\x36\xaf\xaa\x9f\x9d\x1c\x6b\x98\x93\x0f\xab\x06\x21\xe9\x09\x96\x8f\x84\xa3\xee\x23\x15\x3b\x7d\xa4\x9a\xfc\xd3\x94\x79\x97\x10\x99\xdf\x18\xfb\x34\xeb\xee\xb6\x46\x08\x56\x28\x45\x7c\xfb\x18\x38\xb0\x75\x0b\xda\x55\x46\x89\x21\x8e\x3d\xaa\x5b\xee\x8f\xc3\x62\x0a\x3c\xad\xc6\x42\x65\x79\x6a\xb9\x30\xaa\xe5\x91\xa5\x09\x75\xeb\x5c\x2c\x2c\xd0\x54\x44\x49\x56\x55\x78\x7d\x73\xac\x14\x5e\xdf\x74\x76\x2d\x8c\xb3\x51\x28\x8c\xaa\x8c\x42\x51\xbd\x30\xbf\xa6\x9a\x4f\x53\x4b\xc0\xac\xb8\x74\xb2\x1b\xae\x3d\xf5\xac\xea\x62\x99\xe0\x44\x16\x7f\xc1\x9f\xac\x43\xe2\x24\x56\x9e\xb1\xe2\xc4\xb9\xa2\xaa\xa0\x43\x43\x3d\x1f\x8b\xae\xda\xa8\x88\x76\x19\x31\xc5\x10\xbf\xb1\x2f\xa7\xcc\x20\x71\x26\x25\x2a\x5f\xc7\xb6\x47\x6c\x50\xe4\xe1\x9a\xdd\x4d\x8f\x85\x24\xf8\x2b\x5a\x49\xe2\x49\xd8\x01\xc4\xe0\xa7\x69\xb9\x62\xa2\x81\xac\x43\xea\x08\x92\x17\x4a\x50\xec\x45\xb6\x28\xac\x2e\xcc\x37\xda\x18\xde\x9c\xf2\x44\x4b\x63\x98\x86\x9e\xb8\x43\xca\x7b\xde\x9f\x3f\x5d\xa7\x47\x31\x74\x8a\x7b\x8e\x90\xd2\x93\x53\x2a\x6a\x32\x1b\xe7\xa9\x1d\xa5\x36\xb6\x05\xa8\x8d\xa4\x6c\x5e\xc9\x29\xd7\x40\x64\xfa\x49\xd4\xc3\x13\xb9\xe4\xa6\xcb\x72\x5c\x69\xf9\xb2\xda\x4b\xe6\xe5\x97\x29\xfc\x44\xee\xfe\xcf\x69\xac\xa4\x18\x5a\xfe\x20\x22\xe4\x4d\x05\xa1\x3d\xa3\xfc\xc2\x6c\xd5\x8e\xf2\x30\xf8\x9b\x73\x4f\xf8\xf2\x5b\x60\xa2\xa0\x88\x0c\xf6\xae\x87\x6a\x97\x7b\x57\x20\xdc\x7e\x93\xf7\x92\xb8\x2b\x64\x2e\x78\x8a\x0b\xea\x89\x2e\xd4\xb5\x68\x7e\xae\x99\xda\xdc\x84\x1e\xf1\x0a\x5b\x78\x43\x41\xfe\xdf\x6a\x79\xfc\xf2\xf4\x81\xba\xbc\xdc\x5c\xb3\x69\x5f\xb6\x1b\xac\x3d\x57\x15\xf8\xa6\x52\x94\x47\x23\xb6\x2f\x2f\xdd\x51\xa5\xc4\xcb\x74\x78\x30\x0e\xb5\x06\x41\xfa\x22\x55\xea\x1b\x8a\x12\x9a\xa1\x35\x72\x7a\x78\x33\x96\xac\x9b\x19\x4f\x38\x09\x47\x08\x05\xc2\xf3\x9a\xa3\xf9\x81\x82\x27\xa5\x36\xb3\xe9\x9a\xcd\x76\x28\xa9\xc4\x6b\x2a\x0c\x82\x62\x3f\xff\x3b\x76\x02\xbe\xf1\x38\xbe\x91\x6f\xc8\x47\x17\x7e\xde\x3a\x24\x79\x6e\xd3\xc4\x05\xaa\x48\x2e\x03\xa8\xc9\xd7\x2a\x6e\x26\x44\x60\x36\xe7\x63\x83\x4d\xca\x02\x0a\x91\xaf\x6a\x31\xfc\x90\x8d\xac\x53\x17\x59\x5a\xe2\xe1\xbf\xa3\xbd\xb8\x98\xbc\x45\xe7\x92\x5c\x54\x0a\xc2\xaf\x8d\x95\xfa\xe4\x56\x19\xac\x43\xf3\xcd\x43\xf3\xfb\x1b\x8d\x2f\x7e\x8d\xa7\x0d\x8a\x81\x7c\x5d\xc3\x57\xbd\xbf\x39\x2a\x3a\x91\x92\x7f\x66\x06\x0a\x2c\x0c\xa1\xa3\xd0\x35\x8b\x3c\xb7\x3b\x1b\xae\x4b\xea\x0f\x91\xe7\xc3\xcb\x9d\x56\x8a\xcc\x17\x54\x27\xd1\x2d\x6a\xd5\x63\x9d\x01\x6c\x27\x6c\x0a\x6e\xab\x80\x5b\x70\xbb\xae\xcd\x65\x68\x8f\x84\x81\x41\x10\xcb\x02\xf9\xf8\x8c\xa8\xe5\x3f\x1b\x2a\xef\x2c\x59\x33\x19\x49\xbf\x37\x7c\xd7\x0d\xb6\x16\x5f\xab\x0e\xd0\x88\xfa\x2c\x06\x26\x9a\xf5\xf8\xc7\x87\x38\x1a\xe0\x62\xde\x54\x34\x2a\xb7\xd5\xfa\xd2\xba\x57\xbd\xde\xc6\x8c\xb7\x37\xe8\xba\x17\x1a\x27\x8f\x91\x7a\xbb\xae\x31\x8a\x75\x49\x54\x51\xb8\x01\x3b\xef\x62\x2a\xe7\x3e\xde\xaa\x00\x02\x8a\xc8\x3e\xae\x58\x39\x39\x9d\x89\x12\xd9\x3f\x69\xa9\xee\x82\x2b\x34\xec\x78\xb4\x7b\x64\x0a\x05\x98\xec\x7f\xf3\x0a\xea\x31\x0e\x31\xb7\xb4\xb4\x79\x75\xec\x39\xb3\x77\xb7\x95\x5b\x0d\xaa\x32\x1c\xa2\x8d\xa9\x5e\xa6\xaf\x2c\x12\xdf\x45\x14\x85\x7d\x72\x7e\x0f\xb9\x3f\x9d\xf8\xb3\x77\xba\x92\xbe\xbc\x4c\x10\x59\xf1\xaf\xb4\x23\xa7\x6a\x02\x8b\x1c\x8e\x5c\x55\xa8\xe7\x4e\x64\xd7\xa9\xdc\xe1\xd4\xf5\x14\x6f\x68\xf9\x0a\x08\x67\xee\x29\xc7\xbc\x5f\x84\x51\xbe\x31\xab\x70\x28\x90\xdb\x47\xa0\xcf\xb8\x5c\x06\x6c\x2b\xc2\xdc\xd9\xf6\x63\x2e\x11\xd1\x21\xfb\x8e\x10\xe6\xac\x66\x14\x3f\x5b\xd9\x25\x51\xba\x01\x7a\x3d\x21\xe3\x6f\x38\xae\x34\xb0\x58\xa0\xce\xd6\x98\x8a\xf6\x56\xe6\x9b\xbd\x30\x1d\xca\x76\xe4\x33\x08\x21\xba\x1c\x48\x5b\x53\x30\xa4\xd8\x54\x74\x4a\xc7\x27\xcc\x73\x6b\x1b\x4a\xe6\xf2\x8a\xc2\x25\xd7\x22\x6d\x53\x1b\x6c\x04\x91\xe0\x46\xe0\xac\xfc\x10\xcb\x88\x6f\xd4\x7a\x8f\xfb\xf6\x71\x0d\x49\xe7\xce\x43\x38\x90\x0f\x11\x94\x22\xab\xc0\x4a\x4d\xb8\xd9\x4b\xc9\x02\xee\x71\xa7\x11\xc7\x82\x9b\x6d\xfb\xa2\xd6\x87\x9e\x03\xed\x67\x7f\x0e\xcb\x0e\x13\xb8\x7d\xa2\x9a\xcf\x9f\x9a\x28\x99\x94\x0b\x53\x16\xe3\x85\xfd\xcd\xae\xe9\x74\x58\x6a\x78\x3f\x3f\xd8\x69\xfd\x94\xa7\x15\x4e\x2d\xb6\xeb\x41\x32\x74\x6c\x92\x48\x15\x30\x1e\x83\x6f\x14\xa4\x4f\xa0\xdc\x33\x95\xb0\xac\x7c\x03\x84\x4b\x2c\x6f\x20\x16\xb4\xe6\x4c\xc9\xd3\xd0\xc4\xfd\xc8\x2a\xb5\x9a\x6f\xe8\xd4\xfd\x37\x94\x83\x1f\xf6\x63\x1e\x6a\xc7\x4a\xeb\x0e\xe0\xbb\xf8\x25\x64\x07\xcf\x8c\x15\x41\xd3\x35\x3c\x3c\x00\x97\x90\xf5\x81\xdd\xbd\xd5\xf2\x60\xb7\xdd\x6d\x1f\x92\x5f\xa3\xad\xc2\x5a\x2d\xd5\x18\x4f\x49\xad\x6d\x9b\x62\x6c\xdd\xff\xfc\x01\xe6\x16\x85\x4a\x12\x5c\xd5\x59\xa8\x24\xf1\xcd\xa4\x0e\xb3\xde\x4f\x52\xcb\xc5\x0b\x78\xae\xef\x68\xb2\xf0\x77\x2a\xbb\xa8\xdb\xdf\x50\xb4\x8f\xcc\x66\xc8\x37\x93\x9a\xf4\x7a\x10\xe6\xe1\xcb\x36\x66\x6d\xeb\x4a\x42\x4a\xd0\x84\xf8\x65\x61\x93\xf3\xbe\xa9\x59\x33\x61\x64\x3a\x61\xc4\xf4\x9c\x52\xa5\x7b\xa0\xaa\x74\x0f\x5a\x0a\x0a\xc9\xc8\x7b\x54\x21\x67\x95\x56\xf7\xec\xc4\xf3\xe6\x75\x62\xa4\x93\x1c\xe3\x70\xf9\x28\x9f\xa4\xe1\x41\xea\x11\xd6\x2a\x15\xf1\xf3\x68\xf2\x91\xae\x2b\x25\xcb\x68\x63\xbb\x43\xc5\xfd\xdf\x41\xc6\x45\x1a\x1c\x7c\xa1\xe5\x35\x2c\x7d\xa6\x31\x19\xab\x06\x62\xa8\x13\x62\xd4\xcf\xb9\x46\xcb\x20\x89\x73\x33\x24\x06\xa2\xae\x4e\xce\xf1\xda\xe6\x1b\x55\xf5\x46\x03\x67\x77\xc6\xb3\x3e\xdc\xc0\x81\xe4\xa8\x59\x56\xe6\x39\x53\xf1\xc3\x3a\xb0\xcb\x81\xa6\x09\xd2\xa4\x4a\xb6\xfb\x9e\x6a\x38\x42\x46\x01\x0e\xf7\x34\x68\x78\x61\xa1\xb4\x5f\x66\x84\xba\xa0\x6b\x1c\x7d\xb7\xa5\x42\xb2\x77\x55\xb0\x05\x2e\x3e\x1b\xe7\x33\x2a\x17\x72\x47\xa9\xfd\x6c\x6f\xfb\x3a\xc6\x69\xe5\xe1\xad\xdb\xb0\x3f\xc8\x67\xcb\xf3\xf1\x22\xba\x65\x70\x66\xbc\x4b\x44\xb5\x17\x75\xbe\xf8\x5d\xe5\xe9\x77\x8a\x6e\xdf\xe6\xd4\x9b\x80\x9c\x76\x03\x49\x18\x14\x65\x1f\x62\xbf\x21\xb4\x38\xad\xf4\x53\x95\x5c\xc8\x4f\x3e\xd5\x56\x79\xdb\xc7\x60\x55\x1d\x73\xf3\xca\x7c\x45\xb7\x41\xd4\x6d\x68\x02\xb8\x7a\xe1\x92\xe8\x51\x11\xf7\xb7\xe2\x52\x5c\x48\x74\xd4\x95\x03\x46\xa9\x1d\x86\xc5\x70\xae\xb1\xb0\x50\xa5\x02\x41\xb4\x75\x07\x5f\xae\x15\x6d\x69\x14\x97\x7f\x46\xa9\x9f\xcf\x4c\xa6\xfc\xd2\x17\x9b\x0b\x8b\xbb\xe9\x4d\xb0\x30\x1e\x54\x0a\xc4\xf4\x24\x22\x0a\xaa\xfa\x74\x8f\x11\xa2\x85\x55\xfd\xa8\xb5\xd2\x35\xe7\xfb\xb4\xd1\x9b\x0a\x79\x82\xca\x24\xf2\xbc\xd3\x2d\x63\x87\xe6\x9b\xdd\x24\x19\x72\x2a\x55\x3a\xff\x14\xcc\x4a\xf3\x8f\x74\x93\xa2\x1f\x99\x4c\x29\x65\x5f\xa9\x28\x41\xb6\x76\x4b\x76\xe2\x39\x55\xfc\x9a\x6d\x2b\x02\xea\xd9\x89\x56\xcd\x49\x37\x22\x13\x77\x67\x75\xe9\x8e\xe6\x59\x54\x73\xca\x90\x81\xaf\x2b\x25\xbd\xa9\xe8\x84\xe2\xc1\xcc\x06\x49\x8c\x17\x41\xd6\xf5\x81\xc2\xec\x3d\xa8\x6d\xcd\x4b\x93\x22\x17\x92\x27\xf8\x8b\x6f\xd3\x67\xf8\x5a\xa9\x16\x65\x45\x50\x3a\xa7\xbd\x22\x8a\x36\xe6\x94\x6e\x08\xc3\x90\x58\x76\x45\xb7\x4a\x5d\xaa\xe6\x86\xcb\x15\x0f\xd3\x74\x7b\x0a\xb5\x25\x40\x8c\x97\xc2\xe1\x10\xf6\xbd\xf6\x20\x50\x8a\x90\x61\x17\x56\x11\xff\x75\xaa\xa5\xfe\xee\xd4\xd6\x10\xe8\x57\x5e\x28\xdf\x75\x47\xe3\x57\x5e\xa8\xe8\xc8\x02\x3e\xf1\x3b\xf8\x28\x32\x07\x33\x5c\x39\x12\xef\x45\xeb\x84\x34\x14\x97\xeb\x13\x9e\x1a\x40\x94\x31\x36\x8f\xaa\x48\xf0\x76\x4b\x89\x74\x5f\x85\x75\xe0\x1b\xfa\x69\xfe\x2b\xda\x38\x9b\x47\x6b\x08\x88\x9a\x26\x0a\x6d\x69\x72\xb9\x42\x5f\x29\x9e\x3b\x21\x48\x27\xcf\xf6\xfb\x8a\x57\x26\x2f\xd2\xd8\xa4\x49\x11\x77\xe7\x68\x3f\x89\x08\x4e\xc3\x29\xfe\x9e\x53\x12\x31\xc0\x88\xc2\xc8\x9e\xa1\xe4\x2e\xf0\x97\xf7\x6b\x6b\xd5\xe9\xaa\x89\x33\x83\xae\x5c\x79\x0a\x1a\x3e\xe9\x08\xaf\x11\x53\x29\xb2\x22\xe3\x16\x10\x66\x29\xa4\x47\xc1\x4c\x20\x8a\xc2\xaa\xfe\x50\x85\x62\xa9\xed\x53\xee\x24\x63\xf2\x6f\x6a\x5a\xbd\xaa\xe8\x67\xfb\x49\xbe\x5b\xcf\xd5\x4d\x9a\x1f\xbc\xc7\x1d\x74\x36\x33\xf1\x0c\xe6\x97\xcd\x6b\xcb\x57\xc9\xee\x01\x37\x83\x6a\xc7\x6d\xc5\xce\x08\xbe\x22\x29\xf1\xa8\xe4\xdd\x03\xd5\x3d\x91\x86\x4e\x0e\xf5\x45\x27\x31\xe6\x9b\xda\xaf\xe1\xb8\x91\x4a\xd3\x56\x38\xd9\xc2\x62\xb3\x53\x6c\x68\x48\xc1\x9b\x4a\xc3\xe2\xcd\xba\x92\x44\x6c\x8f\xa0\x5a\xe4\x18\x91\x57\xe6\x1d\xb2\xaa\x7c\x60\xd8\xca\xdb\xbe\x9b\x7d\x68\x85\xe0\x1c\x8f\x01\xba\x72\xbe\x9e\x78\x88\x46\x14\x66\x79\x46\x84\x5a\x1a\xca\x81\xb0\x6b\x3f\x9c\x05\x59\x43\xb4\xaa\xa5\xae\xa0\x0e\xa1\x0b\xaa\x81\xf8\xa1\x02\xe8\xe2\xb0\xe3\x71\x12\xd5\xf5\xef\x29\x07\xf9\x1e\x96\x0f\x42\xea\x87\x35\x3a\x90\x99\x4d\x6d\x0c\x12\x36\x29\xde\xf8\x52\x01\x8a\x1e\x9f\xb4\x60\xbf\xd0\x0c\xe3\x6e\x18\x78\xbf\x05\x23\xc4\xa4\x8f\x7c\xa3\x90\x84\x24\xde\x4b\x14\x6a\xf8\x73\xa9\x7b\xd3\x9f\x8b\x94\xee\x93\x15\x2c\xb6\xe4\x05\x91\xa2\xbd\xab\x2b\x25\x77\xf0\x66\xc8\xd6\xfc\x81\xa2\x0c\x0f\x06\x26\x35\x41\x6e\x53\x22\x89\x28\x3f\xe0\x18\xca\x3c\x01\xcf\x39\xe5\x31\x8c\x6c\x32\x8a\xec\x7f\xa2\xec\x4f\x63\xe4\x48\xd3\x3b\x31\x9c\xcc\xaa\xe2\xd1\xec\x83\x7d\xcd\x48\x7f\xfd\xb5\x4a\x69\x05\xf7\x2e\x30\x3b\x6b\xad\xd7\xf0\x5a\x1f\x1c\x39\xc5\x9a\xe9\x21\xa1\xa9\xa6\x49\x0e\x29\x0d\x16\x30\xdf\x8c\x7c\xab\x32\xba\x22\x23\x72\x22\x22\xab\x58\xfd\x69\x61\x2c\x04\xc3\xd6\x07\x61\xd7\xb0\x16\xb2\x65\x48\xda\xb5\xb4\x86\xac\x95\x46\x33\xba\x2d\x45\xce\xad\xb9\xbb\xd9\xc7\xf4\xdd\x6c\xde\xf7\x7d\x1f\x45\x23\x9e\xdf\xf3\xbc\xef\x93\x15\xd1\x82\xfd\x2d\x82\xac\xcc\x8c\xe3\x3d\x9e\xe3\x77\x3c\x5a\xbd\x20\xb4\xd6\xde\xd2\xfb\xe1\x5b\x81\xd7\xe9\xb8\xa4\xe4\x5b\x67\xc6\x1a\x79\x52\xaa\x5a\xec\x07\x5a\xb9\xe2\x16\x16\x27\x4c\x22\xee\x28\x21\xc9\x82\xf8\x81\xf6\x02\x77\xf8\x8f\xb9\x7d\xce\x70\x46\x46\xdb\x0a\xc1\x74\xa6\x94\x07\x21\x2a\x59\x98\x5e\xcc\xdf\x41\x05\x8e\xf8\xad\x4e\x9f\x7d\x30\x9c\x56\x60\xf7\xb3\x6a\x99\x82\xbb\xb6\xd4\xb8\x55\xee\xf8\x70\x22\x23\x58\xb5\xf9\x26\xdf\x56\xda\xd4\xd1\x3e\x6e\xa5\xef\xcc\x6d\xf4\x3c\xec\x27\x9e\x44\xcc\x84\xb2\xcc\x9d\xb2\xf5\xf9\xcf\x72\x9c\x7c\xbf\xb6\x80\xed\x9f\x9d\xa7\xf2\x22\xc8\x6e\x5c\x87\x0c\x74\x4d\xd2\xaf\x09\x09\x29\x75\x6a\xe6\xe6\x09\x0d\x1e\x3c\xa1\xaa\xa9\x61\x94\x85\xa3\x08\x5f\x3a\xe1\x3e\xc4\x27\x4d\x9a\x8c\xa3\x64\xc5\xc6\x55\x72\x4a\x9f\x12\x34\xbc\xa7\x50\x5d\x52\x48\xa4\xcc\x9a\x38\x5e\xdd\x5c\x85\x4a\xe8\x5d\xfd\x5d\xb0\xbe\x39\x8f\x99\xfb\x80\x04\xf6\x45\xff\xa6\xfa\x62\xc9\x91\xaa\x37\xce\x9f\x2d\x95\x89\xfe\x79\x95\xfe\x92\xe9\x21\xa9\x34\x78\x71\x42\x8a\xdb\x44\xa8\x70\x9b\x67\x74\xd8\xc7\xaa\x8b\x61\xc8\x62\xa0\xed\x2c\xf0\x6a\xb1\xc4\xa2\x4c\x03\xb4\xf3\x34\x50\xc6\xc8\xaa\x4f\xd2\xab\xe4\x3f\xa2\xdf\x40\xc7\xe2\x26\xc6\xaf\xf8\x6a\xd1\x02\xc5\x27\x08\x27\x85\x76\xa3\x90\xe5\x88\x4b\xf8\x7b\x69\x34\x63\xfe\x1e\x77\x4c\x8b\xcc\x2e\xa4\xe1\x88\xed\xbc\xe6\x34\x0f\x5c\xa6\xd7\x9b\x74\x0d\xd8\xf6\xea\x4d\xca\x1d\x3b\xda\x3d\x9b\x0b\xc2\x4a\x4c\xfe\x74\x34\xef\xc5\x85\x7a\x76\xc1\x66\x19\x64\xe7\xf6\x72\x26\x08\xc4\x3d\xf6\xac\xf3\x9a\x26\x7b\xb4\x41\x6a\xb2\xbd\xd2\x37\x24\x1f\xa0\xc2\x48\x00\x44\xf9\xb8\x96\x64\xfd\x62\x15\xd2\xe3\x57\x5b\xaa\x55\x7b\x5c\xb9\xab\x1c\xaf\xcd\x84\xf9\xf9\x76\xfe\xc5\x91\x30\x93\x45\x72\xa0\xa5\xbc\x1f\xea\x72\x0a\x7b\xab\xec\x31\x8f\x7a\xd6\xfd\x92\x12\xae\x9e\x73\x16\x33\x0d\xe0\xc9\xd8\xac\x40\x9b\x5d\x9c\x61\x5b\x4a\x44\xbc\xe5\xf4\x5f\xcf\xaa\x07\x99\xd9\x2a\xf4\xe1\x76\x0b\x92\x82\x07\x4a\xbd\xeb\x81\xb2\x85\x28\xb2\x74\xd4\x8d\x6d\x6f\x33\x96\x6f\xa1\xa6\xd2\xb2\xca\xf5\x75\x45\xf6\x5d\x53\xc2\x1e\xc4\x1b\xfa\x82\x93\xce\xa4\x77\xc6\x27\x81\x52\x40\xbb\xd5\x20\xd9\x4f\x56\x96\x99\x30\xa0\xb8\x08\x1b\x28\x09\xb0\x3b\x0e\x78\x52\x3d\xe7\xc2\x16\x3c\x7e\xd8\x31\x35\xf0\xe0\xed\x13\x8d\x6d\xf1\x7e\x1a\xf7\xd0\x86\x14\x20\x4c\x35\xb7\x5d\xfc\xba\x7f\x96\x27\x16\x07\x27\xd8\x1a\xc0\x98\xc4\x8d\x5e\x76\x9c\xd6\xc4\x9a\xec\x11\x27\xa1\xfa\x2f\xff\x11\xaa\x6f\xc8\xe6\x2f\x81\x37\x33\x41\x87\x17\xff\xdd\x2a\xf5\x3d\x4e\x53\xca\x4d\xee\xea\xa1\xc8\x07\xab\x6b\xd0\xac\x54\xfa\x9b\x95\x27\xc7\x2a\x59\x6a\xa8\x10\xb5\xf3\x25\x87\x71\xc3\x0e\xc8\xbe\x4b\x7c\x32\x51\x0b\xcf\x6c\x36\xa3\xf4\x5e\x3f\x50\xf1\xf6\x61\xc8\x40\xf2\x7f\x04\x0e\x56\xf1\x5f\x5f\xd6\x54\x9a\x53\x0a\x59\x15\xf6\x4d\xca\x12\x61\x2e\x5c\x56\x61\xb4\xc7\xed\xc6\x51\x11\x31\xb8\x4e\x95\x48\x4e\xe8\x12\xc9\x09\x6d\x0d\x6d\x97\xa3\x3c\x22\xee\x4c\xb5\x46\xb9\x5a\x5b\xf5\x5c\x31\xd1\xdf\xc0\x52\xc6\x27\x81\xaa\xc8\x7d\xa4\xed\x04\x64\x15\x5c\xa7\x16\x63\x0a\xde\x74\x7c\xdc\xd0\x98\xdb\xdd\x2e\xb2\x68\xa0\x70\x44\x97\x14\x22\xb0\x2e\x7b\x73\xf0\x60\xbb\x48\x97\x56\x47\x2d\xcf\xd4\xfa\xbe\x16\xdb\xfe\xbe\x6a\xbd\x2e\x44\x09\xec\xee\x94\x02\xa4\xd4\xd2\x37\x8e\x3d\xd4\xe7\x81\x86\x04\xff\x40\x99\xcd\x9d\x50\xea\x5d\xc4\x02\xb5\x00\xe5\x20\x8c\xe4\xde\x1d\x9f\xd4\x42\xc7\xdd\x2f\xec\x25\x1e\x35\x96\x55\xc6\x80\x96\x8a\x3b\x1d\xf8\x86\xc2\xab\xb5\xa5\xcb\xcb\xb0\x2d\x4b\xd3\x53\x52\x62\xfa\x55\xb1\xd2\xa1\x5b\x92\xf6\x8e\xaf\xd4\xda\xc2\x3e\x46\xef\x4f\xa1\x9f\x24\xb4\xbb\xa6\xd7\x09\x20\x62\x68\x8d\xfb\xef\x7f\xb2\xe3\x7d\x3f\x5f\x2b\x7d\x0f\x69\x13\x27\xa5\xd2\xb2\xf4\x84\xf4\x6b\xa5\x4f\x39\xaf\xea\xfe\x1c\x1b\x95\xa0\x90\x33\x35\x56\x16\xbe\x4f\x8c\x95\xea\xf8\xcd\xd2\x33\xf5\xf3\x34\xeb\x4e\xa2\x90\xa7\x95\x72\xcd\xfd\x52\xc1\x6d\xce\xd4\xc1\x1b\x73\xed\x5e\x64\xba\xb6\x88\x42\x9e\xa7\xbc\x77\x4d\xec\x63\x4f\x2b\x2a\xbc\xc0\xdc\xa7\x34\xcc\xbd\xb5\x63\x87\xab\xab\xd2\xe3\xc3\xc8\x39\xa5\x04\x94\x0c\x51\x4c\x68\xa2\x60\x59\x07\x6e\xd1\xcd\xa0\xea\x53\x88\xe5\x8e\x97\x5a\x4e\x2a\x59\xb6\xc4\xed\xaa\xa6\x1b\x96\x0d\xd8\x9b\xf3\x71\x13\xc2\xbd\x6b\x72\x8b\xfc\xce\xf5\x4d\x9c\x7d\x35\x54\x7d\x84\x12\xf7\x8c\x6f\x08\xc4\xf1\x28\x2f\x58\x4a\x6a\xff\xac\x23\x52\xf9\x6d\xe8\x4a\xa3\x7b\x57\x1c\x15\x2f\x49\x1d\x86\x35\x99\xe8\xd1\x89\x3e\x93\x1f\x5a\x7d\x33\xd8\x5c\x05\xac\x88\xa5\x1f\x04\x3e\x03\x3a\x5f\x4e\x0c\x2c\x0c\x1a\xf9\x2f\x6f\xd2\x00\xfd\x2d\x61\x00\x4f\xed\xfd\x95\xcf\x39\x9e\x8a\x28\xce\x15\x26\x29\xcc\xc0\xa1\xa2\x04\xf7\x57\xfd\x94\x03\xa8\x3b\x4d\xa5\x0f\xbd\xf6\x62\x3f\xb3\x3d\x07\x65\x47\x02\xfd\x9e\x12\x6b\x67\xb1\x55\xac\x00\x0f\x15\xcc\x26\x37\xb1\xcd\x9f\xa9\x7e\x0a\x63\xf9\x36\xd5\xf8\xd8\x50\x45\x51\x5d\x80\x5c\x44\x44\xc0\x18\x6e\x7a\x0c\x7f\xf4\x64\x47\x11\xbc\xd9\x18\x4e\xc0\x08\x74\x31\x60\x47\xdf\xa6\xc7\x80\x59\xb1\x95\x58\x72\x52\x16\xc4\xc3\x42\x38\x77\x1c\xa3\x08\xcf\xf1\x75\x90\xe3\x9c\x9c\xc7\x0e\x51\xce\xbf\x8b\x28\xd2\x99\x7f\xb8\xfc\xe8\x4e\xa0\x3c\xfd\x8e\x63\x85\xc0\xb5\x6c\xe8\x28\xed\xf1\xf3\x93\x62\x5f\xeb\xa3\xad\x4f\xb4\x07\xa3\x3c\x8c\x27\x39\x8c\xaf\x69\x0e\xe3\x6b\xc1\xfa\x45\xeb\x13\x13\x70\x1a\x5a\xb4\xf0\x5b\xd0\x8c\xc0\x4c\x66\xe1\x23\xe9\x7e\xaf\xff\xdd\x03\x73\xfb\x08\x0c\x9d\xb6\x54\x8a\x74\x61\xa2\x8b\xed\x3b\x1e\x2f\x66\x9f\xa4\x14\x03\x4f\xf4\xa6\x62\x94\x5d\x50\x56\x2e\x6f\xd3\xc3\x41\x7a\x76\x9b\x4a\x4c\xe2\x9c\xaf\xf4\xa8\x1f\x70\x1b\x46\x2a\x0d\x8f\xa9\x40\x84\xd5\x87\x11\xbc\xdc\x0b\x3c\xf7\xfb\x5e\x83\x29\x27\xd1\x0f\x72\x6b\x88\x8d\xbf\x06\x3e\x32\x0a\xed\x17\xb0\xcf\x68\xa0\xa6\x20\x06\x95\x77\xa9\xcd\x06\x28\x86\x68\x77\x1c\x0c\x9f\x29\xd4\xdd\xf1\x9a\xa1\xb6\x8a\x35\x79\x23\x8d\x25\x57\x17\xf1\x92\x5c\xaf\xaa\x35\x8f\xbb\xfb\x51\xb2\xb8\xd9\x43\x3c\xae\x04\xbe\xb3\xce\x6c\x29\x4c\x46\xe6\x5e\x63\xcd\xf8\x31\x95\xad\x50\xa2\xbc\x53\xfa\xf5\xee\x70\xe9\xd9\x01\x0f\x55\x53\x1b\xbe\x89\x33\x7a\x21\xa6\x39\xb1\x36\xa6\xc5\x52\x9c\x37\x68\x98\xe3\x64\x42\x5a\xf5\xbc\x76\x8a\x86\x86\xe0\x94\xaf\x8e\x7f\x40\x17\x83\x27\x32\xad\x24\xc3\x36\x74\xd6\x23\xbb\xf7\xcc\xb6\x33\x4b\x8e\xec\xac\xd2\x59\x5d\x4f\xa3\xd9\x9e\xba\xf4\x61\x66\x56\xb1\x76\x2a\x50\xf1\x5e\x67\xcd\xf3\x84\xb2\xce\x13\x46\xf4\x6e\x7e\x8f\x77\xd5\x3b\xbd\xab\xa2\xb8\x41\x5a\xa4\xd9\x23\x1e\x23\x73\x49\x11\xa2\xff\x9a\x49\x1e\xfc\x3f\x81\xe2\xee\xbc\x1f\x78\x0e\xe9\x5d\xad\x23\x7c\x23\xf0\x9e\x45\xf0\x3b\x74\x4c\x83\x6a\xad\x10\xde\x4e\x75\x31\xa0\x85\x7c\x5d\x33\x0d\x7a\xcb\x69\x68\x42\x50\xd6\x31\x64\xde\x56\x3e\xd1\x6f\x37\x79\xe0\xf7\xd3\x51\x1c\x31\xe4\x45\x74\xbb\x15\x5f\xef\xb8\xf2\x0b\x19\xc6\x66\x75\x85\xfc\xc4\xb8\x7f\x06\xa5\x8e\xd3\x4a\x0b\xe5\xa8\x2e\x4a\xdc\x50\x51\x4b\x3e\xb2\x9b\xe9\x61\x23\x6a\x41\xaf\x18\x91\xfd\xe3\x1d\x7f\xb9\x4f\x63\xb1\x55\x76\xb0\x93\x98\x06\x59\x5f\x55\x96\x7d\xd1\x25\x16\x79\x3f\x1d\x12\x6d\x03\x68\x1d\xa6\xa9\x61\xb1\xbc\xac\xf4\xdb\x79\xad\x64\x67\x07\xe5\x14\x4a\x74\x04\x94\x9c\xd2\x51\xdc\x9b\x6e\x7d\x4e\xd2\x9d\xe9\x0e\x11\x2e\xb0\x34\x9c\xa1\xaa\x8e\x98\x27\xd0\x8f\x08\x33\xb8\x89\x5f\xff\x62\xda\x75\x22\x16\x18\x94\xb8\x18\x3e\x6e\xa2\x50\x75\xad\x91\xa4\x84\xc5\x8c\xe8\x13\x22\x6c\xe4\x6b\x3d\x03\x53\xe4\xa3\x9e\xa1\x17\xce\xa6\x52\xe5\x84\xc3\x94\xef\x26\x2c\xe7\x9f\xa4\x4b\xc0\x18\x66\x30\x09\x9f\xa8\xa1\x3f\xb4\x26\x63\xfd\x38\x04\x82\x1f\x96\x8a\x3e\xfc\x61\xe0\x6b\xbb\x55\x0c\xd3\x63\xd0\x00\x80\xca\xbf\x45\xe3\x52\x7c\x4e\xfd\x36\xfe\x4a\xa0\xe8\xe4\xc7\x69\x84\xe3\x81\x1f\x2d\x55\x91\xf2\x15\x6d\x9d\xbb\x81\x74\x4d\xb0\x4f\xbe\x87\x8d\x0e\xa5\xf5\x2d\xe0\xe9\xe2\x4d\xa0\xee\x81\xfd\xe6\xc9\xb1\x82\x3c\xc6\xa3\x85\x85\xd5\xd6\x84\x20\xa3\x02\x48\xd5\x2a\x60\x55\x40\x6f\x86\xc3\x2c\x35\x21\x78\xdb\xb2\x24\x54\x5f\x2f\x6b\xc5\x76\xa5\xc6\x3e\x18\xc6\xf6\xd0\x23\xbe\xe6\x7d\x02\x97\x28\x56\x49\x74\x89\x60\x58\x5c\xd7\x35\x5e\x2e\x6c\x4b\x6e\x52\xad\x01\x2a\x9b\xfb\xc2\xa4\x49\x18\x44\x68\x6e\x2b\x0f\x97\xdb\x4a\xab\xe9\xb6\xb2\x1e\x1a\x5a\x3b\xd4\x08\x94\xc9\x42\x99\x68\x83\x2c\x58\x93\x47\x0c\x39\x68\x39\x35\xba\xf3\xb4\xe4\xf2\xb1\xea\xc9\x45\x49\x91\x99\x51\x61\xb3\x28\x61\x24\x34\x26\xcf\xd7\x4a\x3f\x91\xbe\xe6\x94\x21\x86\xe4\x2b\x36\xa5\x7a\x9b\xd8\x4b\x45\x48\x67\x42\xc0\xb6\xa1\xc1\xd8\x0e\x63\x13\x0d\x64\xc9\x45\xec\xcb\xec\x2c\x3e\xa9\x45\x24\xbb\x76\xed\x6d\x17\xe9\xa1\x28\x84\xaf\x27\x0d\xa4\x26\xbc\xae\x1f\xda\x89\xb5\xe4\xa5\xe3\x49\x0a\xda\xaf\xe1\x64\x93\x5b\xff\x82\x89\x63\x9b\x50\xb8\x83\xd2\xfb\xb5\x52\xc1\xea\x01\x28\x42\xd9\xed\x86\x0b\x55\x97\x23\xbb\x12\xb9\xe6\xb7\x66\xf8\x09\x0f\x50\x8b\xdf\x0d\xba\x51\x22\xf7\x0d\x5d\x26\xd6\x84\xe4\x93\xf2\xd9\xc9\x86\xe3\x81\x3d\xb3\x22\x44\xff\xbc\xd0\x20\x02\xcf\x23\x38\xef\x3a\xeb\x36\x59\x48\x69\x26\xbb\xed\xee\x9c\xf6\x59\x9a\x50\x86\x88\x86\x28\x17\xa3\xec\x8f\x8b\xe5\x63\xb5\x7f\x46\x45\x6e\xe3\x85\xcd\x8a\x5c\x58\xfa\x38\xf9\x9f\xfe\x21\x9e\x0c\x9f\x04\xde\x15\x7f\x6b\xc7\xb3\x28\x99\xe0\x83\x28\xf3\x5d\x65\x2f\x78\xb7\xc9\x99\x7c\x21\x4a\x9c\x98\x25\x82\x37\x4c\x78\x3e\x56\xfc\x82\x85\x6c\x24\x3a\x93\x58\xb0\xd1\x31\xe5\xe3\xa6\x7d\xaf\x8a\xfd\x22\x9b\x4d\x7b\xec\xf8\xa9\x52\x69\x96\x40\xa7\x12\xb9\xc5\x9f\x21\xe8\xc7\x5a\xf6\x55\x85\xef\x58\x31\x8b\x8b\x51\xde\xaf\x62\xc8\xfd\x93\x02\xff\xa2\x77\x57\x87\xc0\xb6\x4d\x18\xda\x61\x01\xed\x59\x27\xe5\x7f\x42\xc5\x92\x27\x82\x47\x15\x45\x76\xb1\xa5\xe6\x91\x12\xa7\xae\xbb\x08\xef\x9f\x6d\xdb\x55\x49\xf4\xa4\x10\xa5\x30\x10\x1f\x34\xd1\x9e\xaa\x3d\xdd\xf6\xa6\x15\x32\xe4\x6e\x39\x91\x15\x78\x63\x1f\xa6\x9e\x60\x19\xde\xdc\x59\xbf\x86\x92\x67\xbd\x29\xc2\xbe\x80\xfb\x1c\xf5\xc7\xd1\x1a\x4e\x35\x09\x52\xae\xd8\x38\x9e\x56\xd1\x33\x30\x3c\x78\xf2\x8f\x2b\x0b\xae\x0d\xe3\x6a\xd7\x45\x68\x7b\x4a\x6d\x81\x4c\x28\xa5\xc7\x84\xf5\x17\x75\x29\x3e\x76\xd1\xbe\x89\x17\x32\xdb\xe3\xa6\x9a\x38\xa1\x2b\x74\x3a\x97\x13\xb1\x6a\xdf\x6d\xb0\x8e\xdd\xdb\xee\xa6\x45\x9f\xa4\x03\xb0\x6d\x7e\x83\x12\x0e\x3e\x56\xf4\xc7\x15\x6b\x96\x94\xa7\xc9\x69\xca\x51\xc4\x5f\xa4\xc1\x92\x6e\x10\xf5\x92\x2a\xaa\x52\xbe\x36\xa0\x9c\xf2\xb1\xea\xd7\x99\x3c\xb7\x45\xbe\xcd\xd7\xdd\x2e\x94\x4a\x4c\x17\xa2\x28\x22\xe6\xa9\xb0\xe8\xec\x53\xce\x80\xdc\x60\x9d\x1e\x85\x63\x72\xa0\x4a\x82\x27\xb0\x86\x10\x1e\x1b\xfb\xeb\xf4\x4e\x94\x0a\xbf\x54\x8c\x6e\x37\x40\xc2\x77\xbf\xb0\x77\x5a\x01\x5e\xe8\x9a\xf0\x32\x5e\x51\x19\xda\x2b\x8a\xf3\x7c\x29\x98\xf0\x67\x7d\xa9\xdf\xf2\x74\xb1\xef\x94\x2a\x59\xfc\x4e\xc3\x6b\xd9\xdd\x5e\x88\x72\xec\xda\x22\x06\xa1\xdd\x5d\xbd\xc9\xf5\xb2\x89\x97\x45\x9b\xa1\x51\x43\x62\xc2\x75\xa9\xb0\x3f\x41\x11\x37\xf2\xa7\xff\x55\x23\x80\xd8\xab\x54\x52\x13\x8a\x58\xf9\xcf\xd0\x31\xc2\x6e\xfd\x0d\xca\xe8\x1d\xb9\xe7\x73\xce\x80\x83\x2b\x02\x78\x9c\xec\x64\x8d\xa8\xe7\xdf\xe2\x66\x91\x2a\xbd\xac\x54\xbb\xb6\x74\x54\x2c\x7b\xbe\xf4\x39\xe4\x43\x0a\x22\x50\x29\x98\x1a\x23\xdf\x60\x09\x17\xf4\xa8\x50\x85\x38\x1d\x28\x7b\x89\x8d\xa4\xf2\x8d\x57\x7e\x2a\x68\xed\xd8\xb1\x76\x13\x53\x5b\x67\x9c\x40\x97\xfd\x26\x01\xb9\x19\x1b\xa7\x04\x47\x6f\x05\x8a\x15\xfe\x67\x5e\x3b\x70\x95\x5c\xe8\x28\xa3\xc3\x66\x87\x30\x90\xa3\x35\xdd\x90\xbf\x1a\x7c\xcc\x4d\x18\x7b\xa8\xc8\x0c\xac\x08\x59\x1a\x5b\x25\x00\xee\x44\x85\x9e\x49\x9a\x15\xfd\xc7\xbc\xee\xf4\x77\x31\xbe\x51\x91\x78\xac\xe3\x35\x5a\x8e\xf3\x58\x70\x3d\x5b\x57\x2b\xbb\x05\x49\x69\x81\xc5\x56\xaf\x8a\xfd\xaa\xf0\x0e\xdc\x7b\xdb\x23\x1d\x88\xd7\x14\x33\xfb\x87\x98\x1d\xae\xb7\xb9\x47\xd4\x80\x51\x84\x10\x7c\xad\xef\x0a\x0d\xa2\x24\xca\x59\x3c\x4b\x1e\xe8\x5d\x25\x38\x7e\x57\x41\xb6\x8f\xe2\x6d\xf0\x49\xf0\x73\x0d\x2b\x51\x92\x16\x2b\x51\xd1\xcf\x0b\xa8\x00\x4d\x69\x3e\x0f\x0d\x4e\xc7\x04\xdd\x33\xcb\x13\x5a\xeb\x59\x0f\x4d\x94\xd8\x15\xdb\xed\xda\x0c\x35\x20\x56\x8c\x0f\xfc\x8b\x3b\x51\xdb\x2d\x08\x07\x46\x42\xbb\xbe\x8a\xcf\x70\x57\x3e\x69\xe8\xeb\xed\x6d\x67\xd6\x84\x00\xe8\x2b\xd8\x87\xf0\xea\x76\xd7\x42\xf1\x83\x07\xdb\xb9\x89\x4d\xb6\x3a\xb0\x49\x4b\x09\x30\x5f\x54\x02\xdb\x17\x15\x9a\xa7\x17\x2d\x90\x33\x52\x31\x43\xf7\x2d\x12\x06\x4a\x8b\xf2\x0d\xfa\xa4\x58\xd1\xf8\x14\xe8\x38\xea\x12\xfc\x47\xeb\x05\xe5\xe8\x6e\x0f\xec\x99\x9d\x56\x35\x3a\xf4\x2f\x00\x5b\xb8\x10\x4c\x56\x97\xe7\x1c\xa9\xa8\x4e\xdc\x6e\xe7\xb1\x8b\xd0\xdd\xb4\xf3\x53\xb0\x01\x38\xf8\x85\x76\xb1\x1a\x5b\x96\x73\x45\xd9\xfa\xdb\xf4\xe3\x7c\x5c\xab\x92\xd3\xe5\x2e\xa4\xa9\x93\xf0\x73\x37\xe9\x5b\x51\xc7\x1d\xc2\xa4\x3b\x8a\x17\xd7\x99\x43\x5c\x0a\x34\x09\xa2\x01\xca\xb8\x14\x25\xe2\xd8\x27\x1e\xd8\xbe\x66\xfd\x61\xed\x82\xa4\xcb\x11\x7f\xf2\xc5\x4f\x4e\xf9\xa2\x14\x38\xaf\xc8\x86\xde\xd0\x3e\x58\xd7\x3c\xfc\x25\xcb\xa2\x65\xe9\x59\x8b\xea\x4b\x35\x4a\xd7\x5e\x46\x64\xcc\x88\xb2\x06\xbd\xa4\xdd\xed\x94\x38\x09\x13\xf2\xdf\xf7\x94\x88\xc6\xbd\xf5\xfb\xd5\x9e\xd9\xbd\xed\xfd\xb3\x53\x3e\xaa\xfc\x41\xa9\x0a\x71\x24\x15\xb2\x76\xc4\xf5\xee\xa3\xe4\x8b\xa3\x28\x8b\x24\xc8\x42\x5b\x11\xb5\x49\x3e\xae\xbd\xfd\x4f\xb4\xbb\x69\xe6\x78\x74\xd2\xb3\x69\x39\xfb\x54\x68\x32\x0b\xcf\xfe\x09\xd5\xba\xb7\x03\xdb\x9b\xf1\xc1\x1f\x5a\x26\x48\xea\x0e\xeb\x8c\xf8\x03\x5c\xb1\x13\xa6\x75\x84\x40\x6f\x75\x1a\x9a\x2c\x89\x96\x4d\x4c\xeb\x04\x22\x91\xcb\xca\x3a\xee\xa4\x66\x96\xbc\xa6\x54\xb7\x62\x32\xea\x9c\xf6\x8a\x03\xef\x29\xd5\x84\x1b\x2a\xc4\x3e\x4e\x25\x11\x24\x78\x2f\xbb\xc7\x65\x93\x30\x1d\x65\x66\xd1\x6e\x72\xec\xb7\x6f\x42\x25\x10\x7f\xc9\x75\x76\x6c\x8b\xaf\x63\x5d\x60\xd8\x83\x92\x5a\x62\x67\x03\x49\x20\x54\x3d\xaf\xc8\xa2\xb0\x40\x9b\x53\x32\x67\x2c\xf7\xce\xbd\xd1\xab\x50\x9d\x0b\xb4\xd9\x53\x5d\x18\xe3\xf9\x76\x36\xca\x0b\x86\x74\x79\xfe\x1b\x6f\x41\x52\xc2\xf3\x88\x80\x61\x96\x0e\x53\x36\x79\x7a\xde\xe9\x36\x79\xf0\xc8\xdd\x5a\x9a\xfb\x89\xf6\xb2\x09\x4d\x15\xae\x22\x58\x9d\x10\x36\xf0\x35\x48\x57\x64\xc8\xa2\x81\xcd\x37\x53\x74\xe1\x76\xa6\x6a\x2d\x12\x5b\x45\x0a\x35\x9c\x2a\xc7\x1e\x81\x33\xc1\xf3\x99\x8f\x29\xb9\x77\xee\x08\x2e\xab\xab\x6b\x8d\xcd\xcf\xb7\xed\xa1\x30\x1e\xf5\x24\x42\x92\x4d\x97\xde\x90\x6c\xc7\xbe\x9e\xf7\x4f\x7e\xe1\x5f\x4c\x79\x92\xda\x4d\xe5\x19\x3c\x35\xae\x16\x43\x14\x14\x2e\x3b\x59\xc3\x7c\x94\xb0\xa8\x86\x6b\xc3\xb8\xf6\xe2\x6d\xf5\x4e\xbb\x26\xf9\xe2\xc8\xce\x78\x42\xd5\x2b\x04\x22\xc2\x57\x73\x29\x0a\x73\xe0\x6e\xa0\x98\x5a\x2c\xa6\x88\x98\xe8\x9d\xd2\x57\xbd\x8a\x14\x4b\x56\x53\xf1\x42\x97\xb2\x1c\x43\x16\x9b\xe5\x79\xad\x8c\x54\x87\x9e\xee\x98\x6b\x17\xfd\x28\x59\x62\x04\x2d\x1e\x02\x43\xf4\x80\x50\x3b\xa6\xdc\xac\x2f\xd4\x31\x9a\x3b\xda\x43\xc3\x72\x66\x98\x4c\x1f\x2a\x1b\xa7\xc7\x50\xe2\xe2\x1a\xc3\xd8\xf7\x5a\x8e\xd7\xc6\x54\xb5\x53\x84\x71\x34\xe8\x0a\xf4\x43\xa1\xcc\x77\xbb\x08\xbc\x61\x35\xaf\xa6\x8e\x60\x88\x9a\x36\x00\x59\x8c\xfb\xd6\xc4\x45\x7f\x95\x16\x48\x56\x5b\x54\xfe\xde\xdc\x16\x14\xc7\xdb\xa6\xea\x67\x36\x8a\x51\x0c\xf1\xf2\x66\xac\x9a\xc3\x27\x55\x4e\xe8\x2c\xb4\x13\xbb\x10\x85\x91\xa1\x25\xb6\xfa\x19\x6c\xce\xd0\x61\xe2\xe3\x5a\x3c\xe4\x94\xf6\x46\xdd\x3c\xcc\xa2\x2e\x11\xac\xaa\x1f\xc0\xd3\xe4\x56\x10\x9f\x78\x08\x6b\x15\x3a\xe5\x33\x6a\xb1\xbf\xa4\x24\xc3\x19\xe6\x8b\xf8\xee\x06\xcd\x22\x65\xcd\xb5\x77\xed\x7a\x53\xb1\xa8\x30\x59\xb4\xb0\x40\x8f\x0a\x0d\xfd\xe3\xfa\xf1\x00\xf5\xc3\x95\x7d\x05\x37\x1f\x98\x9c\x17\x11\x21\xe3\xb7\x9c\xbf\xe7\xcb\x6e\xfe\xc4\xe9\x4a\x3e\xe1\xe0\xab\x5b\x17\xdb\xc0\x83\x72\x70\x34\x37\xf2\xee\xa9\x0d\x05\x8e\xfc\x53\x1e\x15\x78\x57\xd9\x12\xfe\x88\x9e\x30\x33\x4e\x83\x47\xdc\x34\xff\x14\xd7\x77\xb5\x4e\x27\x96\x93\x0d\xf8\x4d\x27\x17\xf9\xf9\xcf\x7a\x3f\x0c\x87\xb1\xbf\x57\x8d\xea\x35\x60\xbf\x90\xf6\xcd\x8c\xab\x1f\x42\x08\x75\x86\x62\x65\x8a\x0b\xbe\xfe\xb3\x54\x93\x5f\xbb\x8c\x27\xc6\x1a\xfa\xb5\xba\xcd\x27\xa8\xf4\x6a\x32\x40\xd7\x9f\xd7\x8d\x50\x31\x9d\xb8\x83\x59\x28\x1e\xff\x4d\x31\x42\x9f\xd8\x35\x7f\x8f\x44\xd9\x36\xfe\x50\x7b\xff\xec\xfc\xcf\xd0\x02\xac\x94\xb7\x77\x3b\x3e\x42\x75\xf5\x4e\x02\xa1\xfa\x2e\xc4\xb4\xd7\x03\xcf\x46\x9d\xa6\xc5\x10\x1b\xf8\x65\x24\x64\xe2\x71\xdd\x72\x9a\x2a\xaf\x61\xb0\x21\x2f\xfa\x16\x5d\x89\xc8\x7f\xe1\xe9\x33\x78\x88\xdb\x49\xe8\x6e\xbc\x8b\x10\x00\x1f\xda\x34\xde\xf8\xf3\x8e\x33\xe1\x21\x6a\x1b\x3b\xad\x03\xbb\x9d\xd6\x64\x95\xdb\xa3\x00\x7e\x5a\x71\x6e\xa7\x3b\x55\x86\x83\x30\x6b\x3b\x99\x13\x60\x9a\x9f\x24\x97\x1d\xfc\xfd\x79\x64\x3b\xa8\xb3\xdf\x43\xc5\x01\xd1\xee\x35\x68\xb2\xa2\x42\xf3\xb7\x50\xa5\x72\x1e\x8a\xd5\x66\x85\xd5\xed\x2d\x1a\x1f\x18\x38\x87\x4b\xa5\x89\xb7\x86\xed\x95\x65\x43\xa1\x96\xe6\xd4\xe9\x3d\xf5\xf2\x4a\xe0\x25\x37\x4c\x4f\x72\x29\x60\x43\xf1\x04\xce\x2a\x8d\x94\xb3\x4d\x92\x21\x5d\x6b\x46\x5c\xf8\x76\xce\x66\xbb\x76\x39\xdd\x92\x2d\xfc\x97\xcf\x6d\xa5\x57\x2c\xb5\x11\xa5\xfd\x32\x05\x2e\x28\xde\xc5\x06\xea\x5f\xf1\x88\x03\xd8\x9f\x2e\xfb\xf2\x53\x9d\xd6\x73\xcf\x3d\xf8\x57\xcf\x76\xbc\x56\x0f\xd6\x15\x67\x34\xe6\x42\xe1\x6b\xf5\x7a\xdc\x1c\xe1\xf8\x44\x0c\x52\xc4\x63\x69\x6c\x09\x09\xcb\x6f\xc1\x4b\x36\x56\x8d\xbe\xb3\xaa\xd1\xa7\x6a\xfe\x26\x0f\xa3\xc4\x14\x2e\x00\x75\x51\xb8\x6b\x2a\x6c\xe8\x78\x00\xfc\xb5\x26\xbf\xff\x2c\xca\x11\x02\x62\x49\xfa\x1a\x26\x01\xe2\xe9\x2b\x28\x30\x6a\x7b\x0f\x71\xc1\x7b\xdc\x47\x91\xd6\xe4\x96\xfc\x50\x31\x8d\xae\x80\xef\xeb\x54\x2b\x1c\xf9\x05\x88\x25\x54\x1b\xef\x6a\x19\xcb\x2b\xb5\x1d\x74\x7e\xbe\x1d\x9b\x15\x2d\x1d\x1a\x68\xe9\x50\x5f\x91\xc8\xa2\x41\xce\xb2\x74\x08\x27\x71\xbf\x7c\x3c\xde\xe6\xe9\x6a\xbd\x96\x76\xe2\xe5\xc6\x9e\x08\xb1\xad\xef\x3f\xcb\xa6\xd3\xcd\x4c\x2f\xb6\xab\xad\x09\x15\x71\x7a\x61\x32\x84\x1e\x75\x2d\x92\x48\x36\x26\x27\x96\xe0\xf4\x2e\xfc\xbe\x94\x98\x2c\x4b\x57\x66\x7c\x5f\xe2\x2a\xa6\x08\x66\x2b\xf8\xa1\xb4\x73\xfe\xfa\xc7\xd0\xc6\x14\x84\x6c\xcb\xb9\x3f\xac\x95\x8f\xa9\x72\x5a\xfc\xc9\x29\xed\xe7\xa7\xa9\x03\xf7\x79\x7d\x91\x56\xe6\x33\xca\xd0\x32\xb6\x5d\x38\x48\xc3\x6b\x0f\x4b\x1b\x4a\x40\x78\xf5\xd0\x26\x64\x17\x03\x5c\xa3\xf0\xd4\x7d\x67\xca\x10\x97\xca\x29\xfe\x73\xd7\x91\x4f\xdc\xe6\xb6\x12\xc5\x31\x8c\xb7\x1d\x05\xd0\xe3\xd5\xd7\xca\xd6\xe7\x44\x4f\xf1\x63\x1d\x2f\x2d\x7d\xa9\xa4\xa5\x47\xac\x5a\xaa\x15\x4d\x24\x1b\x54\x8a\x30\x22\xb5\x61\xdc\xa6\x86\x59\x32\xc8\x4e\x1b\xca\xbe\xec\x34\x93\x4d\xd4\xdb\xea\x07\x3c\x90\x41\x78\xe6\x3f\x0b\x98\x86\xc0\x84\xaa\x1f\xc5\x08\x45\x5c\xc0\x57\x70\x5f\xb3\x20\x2e\x29\x2d\x61\x06\x83\xa2\xdf\x79\xaf\xf4\x80\x89\x7a\x46\xe2\x8c\xdf\xfa\xa3\x45\x13\xb5\x7c\xb4\x7c\x71\xa2\xe3\x5c\x6b\x8b\xc9\xe7\x16\x32\x9b\x84\x7d\x65\x00\xba\xae\x31\x2c\x13\x84\x38\xaa\x8b\x29\x4d\x70\x3c\xe4\x1f\x95\xca\x1b\x01\x92\x2f\x18\x2e\xff\x41\xcb\x25\x79\xb7\xd4\x81\x29\x6c\x16\x99\x38\x7a\x49\x72\x87\x26\x95\x19\x5d\xe1\x0d\x57\x4c\x4b\xf9\xb6\xb1\x8a\x91\xf0\x8e\xd7\x6f\xfa\x7b\x66\x09\x7e\x1a\x25\xb0\x05\x9b\x50\xe2\xc2\xf4\xbc\x3d\x69\xc8\x51\x4f\xc1\x63\x33\x5a\xec\xf3\xc5\x21\x32\x78\xa0\xa0\x3e\x0f\x1a\x95\x4a\x08\xec\x94\x93\xb8\xc4\xbc\xd2\xa7\x53\x32\xb0\xaa\xe4\xbf\x14\xd9\x21\x1a\x8b\xec\xe7\x8e\x87\x2d\xe6\xee\x1e\x03\xb4\x92\x66\x71\x6f\xbb\x6e\x9a\x7f\xa8\xe0\xf4\x2c\xae\x8a\x81\x83\xd8\x61\x22\x4b\x44\xc9\x60\xe3\xb8\xf5\xdc\x73\xce\x1e\x9f\xae\x08\xc3\x0b\x64\x2d\x47\xcb\xa9\x1e\x2a\xea\xa3\x17\x03\x55\xb1\x7e\x18\x50\x48\xe3\xa4\xba\xe7\xf6\x71\x29\x1a\x2b\x23\x36\xe6\x97\x27\x85\xdb\x69\x87\x13\x77\xfe\x6a\xd8\x62\x10\xcc\xd4\x10\xd5\xbb\x76\xed\x6d\x2f\x88\xc2\x1d\x33\xa9\xe8\x06\x85\x55\xb5\x7e\xbc\xce\xed\x03\xfe\xd6\x40\x99\x98\x2e\x9a\xb5\x92\x26\x74\x93\x3e\xe6\x01\x97\x64\x8d\xb3\x10\xd9\xb8\x67\x33\x18\xea\xe3\x49\x8a\x95\x3a\x62\x6c\x36\xb3\x46\x85\xa3\x6e\x52\x5e\xbd\xe2\xe7\x12\x7c\xdc\x29\x11\x56\x77\x89\xf1\x75\x84\x4a\x7a\x52\x4d\xd4\x95\xe7\x28\x47\xfa\xce\x0e\xfc\x58\xf9\xc4\x8e\x5f\x56\xf1\x45\x93\x25\x36\x6b\x79\x6f\x96\xef\x2a\x5e\xcf\x77\xb5\x06\x76\x61\x4d\x96\xe4\x24\xc1\xc6\xd9\x22\x15\x2a\x24\x73\xf4\x05\x07\x9b\x87\xa3\x1e\x31\x74\x5c\x19\x10\x14\x09\xb1\xba\x7f\x4a\x61\x1e\x49\x19\xa5\xc0\xb6\x8d\x41\x73\x84\x1f\x0e\xaa\xbb\x9b\x68\xa7\xc5\x42\xfa\x38\x02\x1b\x0c\x8e\x5b\x4a\xaf\xa2\x58\x1d\x46\xa1\x89\xe3\xd5\x4d\x8a\xe6\xf8\x77\xaa\xb9\xfe\x23\x8c\x24\x2c\xe7\xb7\x31\x62\xf8\x64\x72\xd1\xab\x5e\x04\x56\xf3\x8b\x0d\xe4\x85\xdd\xed\xa1\x89\x0d\xf7\x79\xc5\x4f\x55\x05\x5b\xe7\x02\x2d\xd2\x4b\xec\x8a\x69\x4f\xe5\x99\x1a\x2b\x9b\xfe\x35\xaa\xd7\xf3\x7f\x74\x3c\xbc\x6e\x4d\x51\xa9\xa2\x6a\xf8\x30\x2e\xbd\xc9\xf9\xd3\x99\xca\x44\x87\x16\xd2\xb8\x37\xad\x6a\x54\xcc\xd0\xc0\x77\xfe\x2f\xb4\x7e\x63\x7c\x42\xd1\x92\xdd\x9e\x9b\x2c\x93\x87\x59\x3a\x18\x3a\x8b\x1a\xbc\xb2\x63\x81\x52\x7e\x38\xa6\x76\xad\x30\x4d\x96\xb9\x6e\x21\x2a\x22\xd5\xfd\x8a\xbc\x88\xab\xe2\x5a\xeb\xcd\x87\xf1\xfa\x10\x53\xf0\xb1\x6a\x92\x42\x79\xdf\xb6\x3c\x96\xf0\x2c\xa4\x78\x24\x78\xf4\xad\xf4\x7c\xd4\x1d\x65\x5d\x85\xda\x5f\x57\xe3\x97\xea\xa0\x3d\x54\x40\xf7\x8e\x6e\x02\xe1\xe9\x65\xc5\x43\x3a\xa1\x0d\x25\xee\x35\xf5\x9e\x17\xb2\xc8\x26\xbd\x96\x97\xc4\x41\xea\x2a\x4b\x96\xff\xa1\x7e\xd4\x8d\x24\x5f\x93\x91\xaf\x1e\xdd\x39\x75\xa3\x7d\x93\x2d\xdb\xbc\x40\xd5\x5e\xdc\xd4\x3c\xb2\xf7\x58\xe0\x30\xf1\x2d\x96\x83\xe2\x3f\xaa\x6d\xa4\xa4\x16\x91\x8f\xb2\x61\x15\xff\x8a\x00\xba\xcc\x25\x85\x62\x38\x52\x23\x4d\x90\xdf\x47\x11\x25\x69\x37\x36\x79\x91\x0e\xcc\x94\x7f\x29\xf7\x14\x34\xe7\xa2\xf2\x62\x38\xe3\xaa\xae\x29\x81\xd7\x19\xcc\x80\x2c\xeb\x75\x7a\xab\x7c\x5c\x6a\x1d\xea\x74\x05\xa1\x2d\x56\xb0\x33\xaa\xd3\x71\xa6\xa9\x0f\xd1\xb7\x26\xe3\xda\xb8\x54\x5f\x7c\xc5\xf2\x7c\xd9\x00\xb2\x54\x9b\x7b\x4f\x5b\x48\xfd\x27\x2d\xb1\xf9\x9f\x26\xf4\xd2\x56\x93\x34\xee\x01\xee\x26\x79\x81\xda\x0c\x75\x1b\xaf\x9b\x26\xbd\xfc\x69\x8f\x32\xdf\xdc\xf1\x2d\x3d\x46\x71\xba\xe8\x76\x8f\xe8\x08\xbe\x59\x2a\x5c\x0d\x1b\x6e\x3a\x46\x7f\xf5\xd6\xb1\xfc\x6f\x44\x7d\x02\x21\xe9\x5d\x14\x4b\x05\x6b\x55\x65\xc5\x88\xed\x4e\x62\x67\x13\xba\x2b\xcd\x24\xec\xb8\x37\x94\x28\xd4\xab\x58\xe7\xf8\x8b\x41\xf0\x74\xbf\x5f\xa5\xac\x6c\xed\x8e\xfb\x44\xfe\x7c\xb9\xf4\x6b\xef\xf9\xc0\xe3\xe2\xde\xf3\x00\x9d\x81\xcd\x16\x25\x64\xc2\x3c\x64\xf5\x44\x3e\x69\xac\xa7\x0d\xcc\x6a\x9a\xf1\xe8\x60\x13\xe2\x40\xd1\x52\xcf\x68\x98\x5a\x1c\xd9\xa4\xc8\xb7\xa8\x26\x37\xa7\x5e\x02\x7f\xf0\x0e\xa3\x87\x68\xe8\x38\x15\xfc\xea\xd1\x63\x15\xbd\x53\xd6\xfc\xfe\xf8\x3f\x34\x4f\xea\xab\x35\x95\xa8\x5d\xbb\x48\xdd\x25\x8b\xba\x23\xf6\x1c\xd0\x2a\xa1\x7e\x97\xd7\xe3\x81\x4a\x54\x53\xbe\x99\xfa\xae\x4a\x6a\xae\x2b\x51\xba\x73\xb5\x27\xb3\xef\x85\x76\x1e\xf6\x6d\x6f\x14\x23\xdd\x40\xb1\xe9\x8a\x52\x68\xbd\xa2\xb8\xa5\xdd\xb4\xe8\x13\x6d\xb0\xfa\x29\x2c\x06\xd7\xd4\xc2\x70\xcd\x67\x8f\x69\x92\x99\x08\x02\x03\x5a\x0b\x5c\x44\xbe\xe9\xc1\x4b\x97\xe9\x59\x8d\xea\x1a\x44\x79\x1e\xa5\x14\x03\x28\x5b\x50\xb5\x90\xd6\xb1\x41\xfb\x67\xdb\xd6\x64\x45\xbf\x5b\x85\x43\x84\xa0\xc0\xb3\x05\x61\x13\xb3\xe7\xc7\xa5\x37\xe8\x7e\x0b\xa1\x07\xca\x25\x27\x94\x7a\x4c\x98\x2e\xd9\x98\x89\xe6\xc8\x4e\x3e\xd0\xc9\xf4\x07\x35\x51\x75\x57\x41\x65\x45\xca\x96\x92\x82\x38\x12\x28\x11\x86\x23\xb5\x07\xbf\x67\x77\x9b\xc8\x1c\x26\x4a\x94\x39\xd9\x45\x65\x4e\x76\x51\xe9\xc4\x67\x51\x2f\x0a\x47\x71\x3a\xca\x75\x83\x0e\xd5\x08\x3e\x0e\x9c\x95\x59\x91\x59\x33\x88\x05\x1d\x37\x59\x41\x11\xab\xf6\x47\x1d\xb6\x31\xcb\xb0\x61\x3a\x82\xb8\xd2\x86\xad\x27\x04\xc3\x2c\x1d\xda\x78\x9a\x86\x36\x82\xb2\x93\x0a\x20\x7a\xa4\x54\x95\x56\xac\xd2\x78\xca\x1b\x3b\x1a\x23\x92\x9b\x95\x69\x57\xc1\xdc\x71\x0c\x1b\x2a\x9f\xa8\xe9\x84\x91\xcb\xc7\x0d\x6f\x7d\xae\x3d\xcc\x6c\x2f\x0a\x5d\xdb\x12\xbd\x13\xc8\xd9\xf3\x71\x1d\x33\xf9\xc2\xde\xff\x6f\xfe\xac\x3a\xff\xea\xda\xec\xa9\x49\x49\xaf\xdd\x73\xfb\x9c\x72\x7e\xcb\xd9\x8c\xcd\x74\xaa\x20\xd8\x51\x8c\xf7\xcf\x72\xda\x7c\x27\x50\xd5\xd7\xbb\x1a\xa0\xf3\x16\xe5\xe1\x58\x5e\x7e\x10\x28\x54\x19\x70\x11\x82\x5f\x51\x12\xff\x5f\xe5\x1a\x84\x90\x97\x95\x3c\x6f\xab\xe3\x99\x45\x0f\x4b\xcf\xf6\x3a\x82\x45\x1b\x49\xe9\x37\xf0\xd8\x11\x6a\xb2\x71\x0a\xe6\xc7\x97\x9a\xbc\xd4\xf2\x61\x9a\xe4\xf0\x49\x75\x75\x98\x52\xd5\x61\x82\x67\xd6\xfb\xca\xb5\xf7\xcf\x3e\xff\x8c\xa2\x33\x70\x81\x99\xdd\x53\xe9\xa9\x60\xc5\x3f\x8a\x80\x07\x55\x35\x04\xd8\x42\xdb\x68\xed\x9c\x5f\x83\x8a\x35\xf6\x90\xc3\x94\x75\x21\x88\xfe\x00\x0f\xd3\xc9\xd5\x7d\xe6\x00\x57\xc0\x6e\x63\xd3\xe2\x5f\xc5\x83\x71\x1e\x7e\xd5\x03\x40\xed\x79\xc3\x58\x69\x62\x7e\x2b\x68\x7d\xfa\x97\x9d\xdc\x8f\x2a\xf5\x7c\x23\xf0\x6b\xfd\x5f\xa8\x70\xf7\x08\xde\x9e\x63\xb1\x78\x67\xc9\x63\xc1\xfa\x94\x89\xaa\xa8\x3c\x46\xf1\xbc\xaf\xab\xe2\xdd\xf5\x5a\x97\x6c\xd7\xae\xf6\x20\xcd\x72\x1b\xb7\xaa\x61\x84\xbc\x12\x38\x6c\x3e\x56\xfc\x80\x1e\xdb\x9b\x63\x9e\xbd\x47\x7f\xc5\xc7\x9a\x7c\x52\xa4\x89\x65\xa6\x9d\x30\xa3\xbd\x2d\xe3\x71\xc5\xc2\xee\xda\x30\x1d\x44\xc9\x22\x90\x85\x7a\xe9\x40\xde\xfb\x50\x59\x12\x70\x8f\x17\xfb\xc4\xff\xe9\x16\xff\x85\xa8\x48\x6c\x9e\x6f\xaa\xfe\x50\xbc\xa7\x7d\x20\xb7\xa5\xa3\x3a\xa3\xa7\x10\x79\x68\xef\x2c\x71\x96\xa6\x77\x80\x65\xe5\x8f\x9b\x9e\x10\xa9\x35\x60\x77\x14\x11\x04\x5f\x9b\xad\x63\xa5\xe7\xe7\x19\xa9\xbe\x6c\x5b\xd5\x9d\x63\xa6\xbc\x8f\xb7\xc8\x27\x35\x94\xe5\xdc\xbe\x76\xdf\xc6\x3d\x0d\xf5\x61\x2d\x5e\x31\x34\x6d\xc0\x65\x86\x69\x86\xd8\x52\x58\x57\x4a\x66\x43\x1b\x26\xbc\x68\xc2\x25\x0b\xf9\x58\x56\x2d\xa6\x1b\x10\xfc\x18\xfd\xa6\xc0\x1e\x1a\xbc\x5a\x07\xd6\x59\x05\xa9\xd4\x4f\xa0\x65\xd7\x55\xda\xfc\xf6\x04\x64\xb9\xc8\x56\xb7\xeb\x66\xff\x2d\x42\xdb\x31\x94\x93\xb2\x40\x25\x01\xe1\xc9\x8e\xbe\xfc\xbe\x81\x82\x4d\x66\xe2\xa1\x99\xe2\xb4\x76\xdc\x82\xf2\x6e\xe0\x73\xc8\x9b\x58\x69\x50\xd4\x67\x67\x17\x2d\xeb\xe9\x82\x5d\xef\xff\x72\x2c\x40\xcb\x86\xff\x4c\xd7\xb9\xee\x6a\x86\xda\x15\x07\x99\x18\x98\x6c\xc9\x2a\xe7\x5f\xc7\xfb\xf3\x05\xc5\xba\xda\xf2\xc1\x83\xa4\xfc\xb2\x88\x02\x19\xd3\x62\x02\xdf\x37\x66\xd5\x47\x5c\xd3\xb9\xf2\xe3\x5e\xcf\x29\x33\x49\x3e\x4c\xb3\x82\xaa\x2f\x33\xca\x40\xfd\x68\xa0\x9e\x08\xd0\xc9\x7c\x8c\x55\x4e\x1c\xe4\x5a\x9f\x9b\x73\xd6\xb9\x8f\xaa\x2d\x66\x09\x7b\xab\x08\xef\xb6\x1c\xdf\x14\xc2\x57\x58\xba\x38\xcb\xc7\x05\x6f\xad\x89\xb5\xee\x9c\x6f\x77\x47\xb9\xdb\x16\xd1\x38\x7b\x57\xf1\x80\xde\x6d\x50\xdd\x9f\xaf\x96\xf8\xcc\xf4\xa2\x10\x89\xa9\x8c\x1d\xdf\x1e\xc2\x98\x92\x48\x52\xd3\x03\x4c\x16\xaf\x3e\xee\xfb\x72\xf7\x4b\x1f\x78\xfd\x51\xe9\xbb\x7d\x3f\xa6\xd7\xed\x6c\xd4\xf7\x48\xfd\x89\xad\x02\x10\xe7\xdf\xd0\xf5\x37\x56\x08\x44\xc4\x7b\x2f\xf0\x11\xee\xe5\xc0\x23\x76\x7f\x07\x4f\xd6\x49\x4b\x79\x4b\xa9\xf7\xa9\x18\xc5\xcf\x0c\x2f\x46\x40\x71\x0d\x6b\x74\x2f\x31\x68\x47\x60\x39\x82\xfe\x2e\x1f\x07\xdb\x3c\x22\x31\x6d\x79\x5d\xce\x7b\x74\x1d\x7c\xac\xc8\xcd\xe9\xc2\x42\x14\xda\x2c\x9f\xd1\xb2\x26\xa5\x86\x8d\xe1\x36\xb1\x65\xdc\x51\x7c\xda\xf7\x03\x1f\x0e\xbe\xa1\xcb\x58\xb1\x0d\x8b\x2c\x0a\x91\xf6\x34\x11\x36\xd6\x47\x48\xa0\xfa\x65\x69\x6f\x14\x0a\x51\x02\xb9\x0e\x13\x44\xf8\xa4\x56\x58\x3a\x78\xb0\x9d\xf7\xd3\xac\x60\xd0\x1a\xd3\x71\xe9\x12\x3f\x5a\xb1\xef\xf9\xf6\x62\x66\xb8\xe6\x8b\x37\x7f\x4d\x01\xfa\xaf\x4d\x7a\x25\x1b\xd6\x17\x42\x44\x0f\x0f\x25\x77\x47\x9f\x39\x20\xff\x5e\x2a\x9f\xcc\x26\xbc\x63\x98\x26\xa1\xcd\x5c\x9c\xeb\x7c\xc0\xf6\xcc\x3a\x1f\xb0\x6d\xae\x9f\x97\x0d\x66\x3c\xdb\xf0\x0e\x9e\x3e\xf6\xfb\xa3\xf4\x14\x31\x96\x7e\xaa\xe3\x01\x39\x8f\x8d\x55\xe1\xff\xb2\x52\x8b\x1a\x25\xf6\xd0\x90\x7c\x15\x91\x2d\x48\xc7\xf1\xd7\x4a\xd5\x71\xfc\xb5\xc0\xc3\xc1\xcc\xc2\x42\x94\x0d\x68\x9f\xe6\x5e\x3f\x3a\xbe\xd2\xf8\x77\x70\x33\xe2\x47\x15\x76\x8b\xab\x93\xda\x9f\x81\xca\x07\xb6\x0f\xb8\x28\xa2\xe5\x78\x23\xf0\xb2\x92\x97\x54\x72\xf5\x08\xb0\x61\xa0\xbc\x8d\xcb\xf5\x8a\x07\x5e\x80\xc0\x97\x3d\x07\xa3\xcc\x10\x21\x8e\xde\xde\xc4\x06\xcc\x27\xc1\xd3\xca\x95\xa9\x48\xc3\xcc\x14\x51\x48\xa3\x03\x01\x10\xa4\x23\xf8\xb8\xa3\xd0\xbb\x69\x62\x0b\x93\x31\x62\x47\x16\x22\x25\x6e\xf9\x2e\x62\x35\xd7\x8a\xf5\x6d\xd9\x52\xf5\x41\xcd\x21\xc6\x96\x39\xc6\x81\xd7\xc3\xbf\xa4\xe4\xbf\x62\x9b\x14\xab\x33\x0a\x9d\x7a\x51\x79\xd4\x4e\x03\x1d\x84\x25\xe7\x3d\x25\x92\x7d\x5a\x99\x00\x3e\x50\xee\xdf\x0b\xd6\x64\x5b\x5a\x4e\x2b\xe3\x56\x39\x01\x98\xf3\x61\xea\x61\x8a\xdd\xe5\x7b\xe9\xd7\x11\xaf\x9f\xc6\x9d\x22\x88\xb9\x8d\xf5\x47\xbc\x14\xbc\xa2\xc6\x87\x13\xa0\xdc\xbc\x48\x33\x5e\xb9\xc5\x1a\xe2\xba\xae\x9a\x5d\xaf\x4d\xf3\xb9\x7d\xd5\x63\x1e\x0d\x6c\x52\x70\x79\x03\x94\x52\xc0\x2b\xf9\xb8\x41\x68\x72\x6f\xbb\x67\x87\x51\x58\xb4\x94\x70\xe4\x31\x2c\xa5\x82\xaa\x74\x7e\x66\x71\x1a\x2e\xd1\x57\x6b\x47\x0b\x3e\x56\x4d\x1a\x93\x65\x66\x75\xa6\xb5\xce\x3f\x1b\x1b\xff\x86\xb1\xd2\x74\xbc\x35\x01\xe5\x67\x51\x29\xc1\x61\x3c\xa6\xc4\x38\x97\xec\xd3\xd5\x93\xc2\xd0\x86\xd9\x37\x36\xa3\xcb\x81\x62\xdb\xdc\xa5\x37\x80\x20\xfd\x65\x62\x0c\xf0\xf0\xe7\x1c\x09\x95\xbd\x2b\x54\xbf\x12\x0b\x75\xba\x6b\x24\x79\x53\x1d\x9f\x55\xfc\xa8\x54\x6d\xdb\x37\xf1\x38\x30\x54\xbf\x1f\x28\x95\xa1\xbb\xda\xd1\x7a\x6a\xec\x51\xda\x77\x09\x2e\xc2\x76\x26\x5e\x4f\xe7\xd6\x2d\x15\x5a\x3d\x28\x55\x26\xf4\x0d\xc0\x42\x30\xc1\x6f\x29\x1f\xcd\x2a\x32\x89\xa5\xcc\x85\x39\x7f\x46\xbb\x76\x9d\x09\xb6\xb9\x2c\xe0\x85\x79\x92\x58\xe7\x62\x7b\xc7\x57\x3d\x2f\x68\x94\xe4\x15\x45\xa0\x8b\x92\xe5\x74\x49\x18\x47\x0a\xfc\xf6\xbc\x03\xbf\x35\x2c\xb8\x55\xc4\x93\x99\x55\x13\x2b\x65\x6c\x96\x58\xe2\x13\xd7\x8e\xef\xa6\xcb\x24\xbb\xe6\xf8\xf8\x7f\xa5\x22\xd2\xbf\xaa\x85\xe7\xcf\x3d\xd7\x36\xbd\x17\xab\xa0\x05\x85\x1f\xf4\xb3\xbf\x4e\xd3\x84\x8f\x9b\xfc\xa9\x17\xd3\x14\x15\x1f\x11\x83\x6c\x39\x6d\xd5\x13\xaa\xe2\xf3\x3b\x08\x3a\xa5\x65\xec\x89\x68\x79\x91\xc6\xc5\x4b\x03\xb8\x60\x7c\xc1\x49\xc6\x7a\x4f\x84\x4b\x6a\x3d\x08\x4d\xc6\xc0\x72\x36\x0c\xa5\xbf\x13\xf3\x50\x1d\x63\xbf\x98\x42\xa8\x09\x41\xea\x06\x35\xbc\x8e\x01\x11\xc4\x28\x2b\x3c\x3a\x69\x48\x7a\x4a\xee\xb7\xd5\x8e\xf4\x3b\x58\xec\xd0\x05\x7a\xbb\x54\x6d\xf4\x4d\xd4\xe7\x44\xfd\x00\x84\x05\x0c\xe7\xeb\x35\xd0\x45\xb5\x3d\x47\x89\xad\x62\x92\x88\x1a\xb3\x2e\xcf\x40\xb4\x2b\x5d\x84\xf5\x4f\x78\xc7\x8e\xf6\x60\x14\xf6\x69\xa1\xc7\x9b\x03\xbe\x98\x8f\x9b\x4c\x66\xba\x86\xc7\x14\x76\x41\xe6\x92\xf3\x49\x93\xcc\x4a\xcf\x0e\xd3\x49\xf7\x48\x20\x72\x04\xb6\x2c\x03\x6a\x10\x15\xf9\x28\x9a\x52\xd2\x9f\x50\x0f\x9c\xa0\x65\x23\x06\xbf\x59\xfe\x7c\xfd\x77\x8a\x2a\x80\x4a\x07\x83\x51\x12\x85\xe8\x99\x4e\xa9\x59\xf8\x04\x2d\x2d\x68\xdd\x3f\xd9\xf1\x9b\xc6\x07\xaa\x6b\x90\x9b\xa4\x97\x4f\x4f\xb8\xec\xb7\x9c\x8a\x31\xa4\x27\x44\x0b\x52\xfb\xf5\xd7\x8b\x68\x2b\x51\xde\x97\x89\x2d\xc2\x23\x3e\xe9\xf0\xe1\x40\xd7\xe6\x91\x5d\x94\xde\x97\x04\x45\x53\xde\x52\xae\xae\xac\x3f\xb7\xaf\x1d\xa6\xa3\x24\x8c\xe2\x29\x45\x0a\x67\xf3\x09\xf1\x26\xf6\x41\xe3\xa9\x26\xa2\xa5\x2b\x3f\xa3\xb2\xd0\xe4\x9c\xff\xb4\xc3\xf5\x87\x69\x56\xa5\x0d\x2e\xd9\xc0\xd0\x7c\xa8\x09\x07\x0f\x3f\x12\xa3\x21\x42\x22\x4a\x3c\x44\x8b\x8a\x6c\x57\x52\x5e\x83\xa8\xb0\xbd\x69\xaf\x14\x7b\x49\x23\xf9\x81\x42\x64\x91\x01\x4c\x2a\x51\x1c\x98\xe0\xa6\x2d\xe5\x9b\x7d\x44\x7b\x1e\xeb\x39\x9f\x28\x70\xcb\x77\x94\x82\x07\x73\x5b\x31\xc8\xd6\x10\xac\xf0\x49\xa9\xc2\x89\x0b\xb5\x29\x37\xb7\xaf\x1d\x57\x4f\x27\x4e\xf2\x7e\xc4\xfa\x7c\x42\x5b\x51\x2e\x5d\xa7\x5c\x25\x76\x18\x9b\x28\x21\xda\x02\x76\x98\x42\xc1\x51\x4f\x50\x54\x8c\x0d\xe6\xb4\x8a\x01\xa1\xe8\x82\xee\x4c\xab\xf3\xb8\xce\x3e\x6c\xf6\x18\x85\x2b\xd8\x89\xee\x2a\x10\xff\x96\xb1\xf2\x9d\x78\x95\xea\x70\xa2\x3b\x8f\xdd\x52\x21\xb9\x9f\xe7\x31\xf9\x7f\xa1\xc5\x8f\xe7\x73\xad\x6c\x3d\xf7\x9c\x1c\x2b\x29\xb3\x47\xd1\x39\xc2\x36\xfc\xef\x4a\xdf\xd1\xbc\x56\x7a\x75\xd2\x5b\x81\xd2\xf9\x7f\x43\x05\xd5\x45\xdf\x24\x4b\xf9\x62\xb4\x4c\x9d\x59\xdf\x37\x7f\x93\xae\x90\x8f\x9b\x2a\x93\x5d\x6b\xbc\x15\x96\x48\x47\xb5\x9c\x86\xc2\x09\xdd\xa2\xb5\x26\x0b\xfb\x9b\x54\x5f\xe7\x18\x7d\x3b\xc2\x35\x76\xf3\x72\xf6\x12\xbe\x3d\xfb\x7f\x4f\x52\x2c\x14\x13\xf2\x58\xad\xf7\x27\x63\xdb\xe6\xb9\x8d\x0b\xd8\x60\xa3\x4b\x77\x44\x8b\xb2\x1d\xf1\x6d\xda\x2a\xb1\x8b\x96\xad\x0a\x70\x5f\x55\x56\x7f\xaf\x36\xe1\x7a\x56\x4c\x11\x3a\x2f\x20\x60\xa7\xc0\xb2\xe3\xe3\xc0\xab\x5f\x25\xa3\x22\x8b\xa4\x33\xaa\x6a\x42\xca\x64\xe9\x6d\xd5\xe2\x29\xa2\x41\x9a\x51\x9f\xa1\x1a\xea\xe8\x1c\x1e\xc7\xa6\xc5\x27\x35\x44\xc8\xae\x5d\xed\x25\xcb\x76\x2d\xf8\x42\x94\x37\xf1\xf7\x58\x18\x51\x8c\xfe\x72\xa0\x4d\x81\x26\xe6\xe6\x70\xc5\x4c\x55\xa3\x04\xc3\xea\x2d\xc4\xda\xd8\x01\x81\x51\x93\xac\xa7\x0e\x4c\x9e\x6b\x77\xb3\xc8\x2e\xc4\xab\xd3\x7e\x2f\xbb\x8d\xce\x23\x66\x27\x90\x6b\xe8\x4a\x1c\x55\x52\x1b\xdf\x2c\xd7\x77\xa0\x77\xed\xda\xd3\xee\x45\x99\x25\xb7\x73\x27\x3e\x82\x17\xf1\x8e\x7a\x29\xef\xd4\x56\xf5\x5d\xbb\x60\x90\x43\x4b\xa6\xab\x3e\x28\xb3\x65\xdf\xad\x7b\xd1\xbc\xf4\x12\x16\x3d\x14\x96\x10\xaf\xf1\xf1\xb8\x2e\x20\xd5\x33\x85\x41\x1a\x5f\x30\x94\x5d\x78\xe5\x98\xaf\x98\xa2\x57\x03\x8a\x71\x1c\x00\xd7\xc3\x7b\xce\x28\xd9\x9d\xbe\xc9\x8b\x55\x7a\xd0\x08\xa3\x8f\xe2\x41\xa3\xc0\xf2\x63\x7a\xd0\xc8\x18\x2e\x36\x98\xd0\xec\x6e\xe7\x85\x4d\x12\x5b\x14\x5c\x64\x73\x72\x93\xaa\x3d\xe7\x16\xb4\xbc\xc8\x22\xce\xf3\x59\x02\x5c\x91\x48\x8e\x2a\x04\xce\x07\xfa\x62\xeb\x2f\x78\xe7\x7c\x7b\x98\xd9\x22\xcd\x22\xc8\xb5\x20\x69\x66\x77\x58\x3e\x99\x28\x2f\xe4\x45\xda\xd2\x6c\x75\x66\xbf\xf0\x49\x93\xed\x3a\xb5\x0f\xa7\x5a\x8a\xf0\xe7\x79\x46\x57\xf0\x69\xd1\x05\x50\x66\xbd\xcb\x96\xd5\x33\xd8\x7d\x11\x7f\x28\x56\x8c\x92\x95\xf6\x56\x13\x33\x88\xc2\x29\x1f\x37\x71\xea\x22\x79\xae\x1f\x55\xdf\xab\x4d\xad\x4f\xb4\x17\x47\xab\x1c\xa8\x08\xfd\xb7\xf5\xf9\xcf\x7a\xb5\x79\x8f\x3b\x53\x86\xf5\x61\x9a\x2c\x44\xd9\x20\x12\xe6\x10\x86\xcb\x59\xec\xc9\x7c\x52\x7a\x22\x45\x6c\x4d\x6f\x93\x2e\xc4\x56\x33\x44\xf7\x13\x10\x22\xdd\x0c\xd6\x4d\x64\x11\x1e\xf8\xf7\x81\x52\xd7\xfa\xb2\x13\xac\xcb\x57\x45\xe9\x7b\x4a\x81\x5c\x6f\x2a\x21\x8a\x0f\x4b\x85\xda\x3b\x57\x0b\x45\x3e\xd1\x1e\xda\xcc\xe6\x45\x96\x46\x4b\x78\xf5\xd8\x35\x4e\xd2\x6e\xc8\xc7\xca\x5d\xdc\xc4\x69\x62\x11\x9f\x61\xd9\x66\x39\x38\x6c\x81\x47\x4a\x8f\xd4\x64\x9a\x0f\x4e\xae\xa9\xa9\xb9\x60\xe2\xdc\x62\x27\xd1\x4b\x47\x7d\x1e\x0d\xd2\xa4\xe8\x6f\xa5\x65\x51\x41\xde\xbd\x9e\x11\xcd\x45\x94\xbf\xdf\xa7\x59\xc5\x72\xc5\x6a\x53\xfd\x8f\x4f\xd3\xca\x88\x0c\xf6\xbe\xd2\xdc\x7f\x82\xe2\x7a\x7c\xe0\x4a\xe0\xeb\x14\xc7\x15\x29\x85\x5c\xd1\xf2\xcd\xd5\x2d\x61\xbf\x3d\xaf\x34\xaf\x6e\x63\xbd\x16\x05\x41\x25\xe5\xfc\x21\xa6\x3b\x03\x3e\x83\x09\x04\xcc\xce\x79\x65\x7b\x29\xa5\x17\x86\x72\xca\x3b\x14\x4d\x75\x0f\x72\x62\x6b\x29\x29\xf6\xd6\x57\xe7\xf9\x76\xb1\x12\x91\x33\xab\x47\x33\xde\x0a\x3c\xca\x9f\x03\x5a\x11\x62\x50\x3d\xab\x7e\x94\x15\xf9\xb4\xdf\x9f\x4f\x6b\x02\xf4\x90\xee\x17\xc7\x6b\xca\x97\xe4\xaa\x2a\x4c\xc7\x66\x65\xd5\x66\x33\xf4\x2e\x84\xd9\x88\xbe\x82\xa3\x36\x3a\x77\x4b\x54\x4b\xd0\xbc\x68\xd1\x0b\xc0\xdb\x3b\x3b\xe9\xaa\x67\xf2\x96\xea\x18\x61\xf2\x0a\x91\x62\x52\xe7\xc8\x24\xab\x1f\xab\xbe\x1e\xf8\xf3\xbf\x2e\x15\xc7\xad\xc4\x4a\x81\x52\xf4\xef\x22\xff\x47\x95\x71\xad\xf4\x78\xb5\xef\xd2\x30\x07\x05\xe6\x68\xa9\x06\xec\x0d\x4c\x64\x4c\x80\xb3\x14\xc0\x70\xda\x18\xb4\x76\xec\xd0\xa2\x23\xcf\x4f\x48\x43\x62\x3f\x66\x7c\x0f\x56\x90\x77\xa9\x2a\x21\x04\x31\xda\x32\xd1\xcd\xbb\x46\xb5\x12\x71\x6a\xa4\x69\x84\xf5\xf3\x06\xc5\x72\xae\xbc\xb3\x67\x96\xc7\xdc\x75\xa0\x18\x05\x35\x4a\xef\x14\x57\xf8\x18\xfa\xac\xf8\x9f\x35\x05\x09\x5d\x31\x49\x62\xf0\x38\x31\x09\xb8\x44\xc4\x27\x1d\x1f\xb7\xf5\xd3\x95\x28\x5c\x6a\x51\xcd\x94\x15\x28\xb5\xb2\xea\x05\x17\x4b\x99\xe1\xd0\x64\x36\x29\x28\x12\xe0\xb8\x98\x44\x1b\x04\xed\x3e\xe5\x2d\x5a\xd1\xd3\xa2\x94\x79\xdf\xf6\xce\xc4\x06\x62\x62\x58\xf7\x09\xa2\x89\xde\x10\x10\xfb\x3f\xc4\xc3\x40\x4d\x6f\x4d\xe9\xfc\x33\xb2\xce\x79\xae\x54\xf7\xac\x8b\x90\x3c\x0e\x68\x9e\x21\x4f\x5f\xc3\x22\x2a\x41\x8e\x52\x51\x39\xaf\x34\x35\xb7\x8e\x7d\xed\x75\x98\x45\x49\x18\x0d\x63\xcb\x3a\x72\x4e\xf6\xaa\xfa\x65\x94\xf3\x5f\xd1\x1a\x08\x27\x6b\x61\xca\xbe\x17\xda\x99\x19\x46\x3d\x65\x86\x7e\x43\x19\x71\xde\x70\x40\x5c\xc3\xda\xac\xbe\xba\x7d\x5a\xf3\x69\x4e\x7f\x64\x4e\x37\x34\xab\x2e\x1a\xe7\x56\x0f\xf6\x07\xe9\xfb\xac\x5f\xe6\x0f\x1e\x6c\x47\xc9\xb2\xc9\x22\xd3\x8d\x57\xa7\x7c\xbd\xf5\x0f\xb4\x96\x30\xb4\xe2\x11\x9a\x5c\xd6\xae\xf3\xbd\x65\x2a\x68\xcc\xed\x63\x6e\x1c\x3c\xbc\xf9\xd8\xf3\xf6\x4d\x6e\xb9\xca\xa3\xf0\x30\x9e\x5d\xa4\xc4\x15\x43\x9b\x59\x13\x73\xaf\x1c\xb3\xf2\xbb\xa5\x53\xdd\xfe\xff\x7f\xb7\x16\x9f\xc8\x8d\x8f\x92\xb0\xa5\x02\xa1\x73\xaa\x3e\x7f\xce\x6f\x8a\x40\x0a\x45\xf9\x40\xa9\x26\xa3\x1a\x2c\x37\x5a\x6f\xcd\x55\xeb\x70\x9a\x15\xa2\x57\x81\x04\xe2\xb2\x72\x7a\xfd\x37\x04\x94\xb8\xac\x2a\xa7\xdd\x51\x56\xb4\x94\x30\xe9\x69\x2d\x4e\x74\x5a\xdd\xae\x49\x92\x11\xbb\x6b\x7c\x81\x59\x84\x6b\x97\x15\x72\x20\x31\xcb\xc4\x29\x55\xe2\x1c\x13\xfa\x1f\xfe\x9b\x96\x23\x53\x85\xa8\xff\xef\x34\x4c\xea\x04\x45\xa6\x3b\x71\x4e\x83\x45\x99\xc5\x69\xf9\x64\x2c\xdb\x52\xdf\xc4\x0b\xfd\x2a\x66\x93\xbf\x16\x92\x4c\xf5\xd3\xc2\x91\x59\x3f\xcc\xaa\x00\x3d\x59\xcc\x6c\x2f\x12\x6a\x02\xbb\xc9\xd0\x73\x14\x67\x99\xed\x7a\x75\x2a\x38\x15\x15\xbf\x03\xf4\x27\xf8\xb8\x49\x1b\xab\x30\xdd\x38\x8d\x7a\x4a\x2e\xf0\x88\x52\x34\x3f\xb2\x5e\x43\xa1\xca\x36\xf6\xcc\x6e\xf3\xd4\x9c\xaf\x63\xd1\xc6\xc2\x85\xb4\x47\x26\x32\x5d\x86\x33\xc9\xf1\x1d\x8e\x6f\x71\x89\x5b\x6a\xc2\xbe\x74\x76\x51\x49\xa7\xfd\x65\xa0\xd2\xb9\xf3\x58\x2f\x18\x5b\x41\x13\x8b\x55\x05\x15\xae\xa4\xb0\xbd\x27\xab\x0b\xc3\xfe\xf3\xf4\xd8\x83\xbe\x7f\xaa\x53\xed\x32\x4e\xf8\xe8\xf3\x9f\x65\x6c\xce\xd9\x52\x75\x26\x51\x4f\xc3\x42\xfb\x8f\xc7\x8a\xe0\x71\x49\x79\x1b\x71\x17\x0e\x3b\xc3\xc7\x69\xd3\x65\xd5\x1d\x54\x5d\xf0\xde\xcf\xea\xf0\xfd\x5e\xa9\x0d\x86\x6e\x2a\x8d\xc0\xde\x3f\x03\xc5\x88\x42\xcb\xff\xf6\x9f\xa3\xd9\x83\x1d\xe8\xe3\x63\x4f\xed\xdc\x36\xf6\x80\xf6\xbe\x8d\x87\x24\xfd\xba\x53\xf8\xc5\xc0\xac\xd1\xf1\xfb\x4f\x13\xc1\x53\x47\xda\xd2\x17\x56\x38\xe0\xe3\x88\xf4\xc4\x6a\xc9\x33\x23\x6f\xd5\x95\x46\x5e\xd8\x4b\x38\x62\x2f\x71\xc7\xee\xc2\xca\xf9\xf6\x52\x13\x04\x3e\x4f\x17\x0a\x9b\x70\x07\x4c\xe4\x05\x5a\x4a\xec\x67\x7d\x19\xf6\x17\xdb\xbe\xae\xe6\x4c\x68\xbc\x21\x8d\x6b\x8a\x0e\x47\x31\x20\x9a\x62\xb4\xa2\x5a\xd2\xe0\xc5\x21\x53\x3f\xdf\xa4\x31\xd7\x8d\x7a\x3d\xc7\x8e\x74\xe2\xac\x0e\xee\xf0\x8a\x32\x2c\x3a\xad\x0c\x1c\x17\xd3\xb8\x97\x87\x7d\x1b\xf5\x6c\xd6\xd2\x08\x36\xde\x00\x85\xcb\xb1\xfe\xe9\xed\x99\x6d\x47\x49\x98\x55\x4b\x04\xef\x4a\xd8\xfb\x19\x1b\xc2\x27\xaa\xb4\xdf\xb3\x83\x34\xcc\x4c\xb8\xda\x52\x7c\xeb\xa3\x98\x07\x7c\xd2\x10\xad\x52\xaa\x99\x45\xdc\x48\x43\x08\xf8\xab\x0a\xcb\xf2\xab\x4a\x57\x3c\x1f\xa6\x4b\x36\x5f\x49\xab\x8d\xc5\xb7\xbd\x8f\x69\xd0\xf6\xb1\x1a\x72\x89\x0a\xb4\xc3\xa1\xcd\x70\x59\x88\xb8\x8f\x94\x9e\x5a\x79\xa4\x06\xa8\x27\x8d\x0d\x6b\xf2\x34\x81\xf8\x9d\x07\x9e\xab\xb0\xee\xbc\x7b\xab\x99\x11\xc8\x3f\xbe\x10\xe6\x71\x7c\xdc\xc4\xf0\x8d\x4d\xd8\x17\x65\x16\xec\x2d\xaf\x95\x7e\x9f\x79\x4d\x61\xd4\xc3\xd8\x0c\x88\x39\xe1\x4b\x4d\xe7\xf5\x38\xa9\xe5\xd6\xd5\x0a\x17\xa6\x79\x81\x65\x9a\x9b\x6a\x2a\x72\x7f\x53\xe5\x5e\x45\x7f\x34\xe8\x4e\x70\xcb\xe9\x0f\x85\x67\xee\x39\x96\x8b\xe9\xb2\xcd\x12\xc8\x17\x57\xa3\x97\xc5\xa4\x90\xd3\x89\xb2\x54\xdd\x92\xe5\xf9\xf6\x30\xca\x8b\x14\x55\x30\x0e\xe6\x02\xa5\x95\xf3\x43\xb5\x7d\x16\x54\xb2\xdd\xa3\xe2\x7c\x4f\x92\xf6\x41\x85\x5d\xf4\x62\x40\x72\x11\x9e\xbe\x75\x49\x65\xe4\xbd\x68\x61\x21\x0a\x47\x71\xb1\x4a\x04\x1c\xd4\x3d\xae\x61\xb5\xc7\x3a\x0e\x5d\x0f\x3e\xa6\x35\x99\xff\x48\x19\x14\x65\xd6\xf4\xe4\xe9\x4b\x4e\xae\x80\xaf\x37\x15\xfe\xa4\x6b\xb2\x2c\xb2\x19\x09\x6e\x73\x90\xb0\x36\x41\xad\x2b\x7d\x9d\x4a\xd7\x62\x36\x76\xfc\x77\xf4\xd8\xc1\x9d\x82\x0e\xd6\x00\x57\xdc\x55\x26\x6b\x0a\xc1\x75\xfd\xa8\xdd\x33\xbb\x07\x8c\x21\xeb\x91\x48\xbc\xc8\x22\x7f\x91\x15\xd7\xb7\x8f\xfb\x69\x62\x57\x91\xc0\x4f\x38\x37\x63\xb7\x10\x96\x1a\x9f\x05\x9a\x39\xab\x7a\xd0\x59\x94\xdb\x84\xb2\x46\x67\xb2\xe7\x24\xf8\x6e\xd0\xe5\x4b\x0b\xda\x6f\x44\x57\x6a\x41\x1d\x0d\xdc\x2c\x5d\xe9\xc9\xa5\x37\x05\x0b\xfe\xfd\x0e\x6c\x91\xa5\x03\xdb\x8b\x0c\x81\x0b\x85\xa1\x4d\x9f\xe4\x13\xc5\x0f\x73\x0b\xd9\xa3\xf4\x07\xa8\x2e\x30\x1c\x15\x37\x74\x84\xd6\x6b\xc4\xc1\xaf\x22\x9b\xc7\xde\xcf\x4e\xf9\x78\x59\x57\x30\x7c\x11\xec\x5e\x29\x55\x01\x1c\xdc\x48\x06\x65\x4f\xf8\x02\xd0\xd3\x45\x3e\x7d\x5d\x2b\xe1\x5c\x51\x78\xd0\x23\xaa\x4f\x5c\xd8\x6c\x10\x25\x26\x9e\xf6\x70\xfc\xbf\x2e\x27\x7b\x60\xce\xf1\xf0\x92\xaa\x0b\xfc\x75\x6d\x2d\xd8\xb1\xa3\x9d\x8f\xf2\x3e\xb7\xf0\x04\x7a\xa3\x1e\x2e\xaa\xf6\x82\x5f\xdc\xee\xa9\x04\x8b\x69\x6c\x73\x8b\xe0\x1a\x37\x0b\x60\x1d\x1f\x2b\x8d\x03\x27\x6a\x26\xc0\x1c\x36\xdd\xc1\x83\x12\x07\x9e\xf5\xa1\x61\x15\xb9\x45\x83\xae\xcd\x62\x93\xf4\x94\x20\x22\xee\x47\x18\x1c\x5e\xe2\x37\x4c\x93\x30\x1e\xe5\xd1\xb2\xad\x36\xd9\xb9\x7d\x5e\x28\x68\xa7\xa8\x7c\x5c\x54\xa1\x54\x9a\x15\x8f\x57\x5f\x4a\xb9\xdd\x36\x50\xb1\x11\x11\x6e\xe9\xe8\xe0\x8d\xd7\x03\x84\x43\xef\xd3\xb0\x45\xce\x31\xd5\x51\xa0\x92\x99\xb1\xc2\x93\x6e\xe9\x78\x8c\xd5\x31\x3c\x4b\x4c\xce\x8d\xe3\x09\xe7\x55\x7f\xfb\x73\x4f\x02\x1f\x24\xb4\x78\xa5\x49\x70\x2c\x50\xd7\xaf\x9c\x20\x4c\x98\xd9\x7c\xba\x8a\xce\x50\x36\xbf\x07\x9c\x80\xe8\xa9\xf8\x37\xf1\x9d\x52\xb5\xde\x4e\x38\x68\xe6\x62\x66\x92\x5e\x94\x32\xfd\x13\x17\x7e\x45\xf9\x12\x5c\x99\xa8\xde\x5a\xd3\x7b\xc6\xaf\xea\xd7\x34\x9c\xef\xac\xf2\xd6\x3e\x4b\xe0\x30\x8e\x3b\xa8\x52\x82\x14\x9f\x3b\x07\xb8\xbd\x3f\x60\x18\x29\x02\x25\xce\x43\x11\xec\xdc\x54\x92\xfd\x5f\x43\x82\xef\x50\x86\x0e\x89\xcf\x78\x7d\x2c\x71\xbf\x8d\xbe\x0f\x0a\x69\x0f\x79\x31\x62\x27\xbc\xa0\xa5\x09\xc0\xd5\xf3\x15\xeb\xf3\x09\x81\x56\xe5\x97\x77\x0a\xe5\x7a\xbe\x32\xc4\xbb\xd8\xea\xbe\xad\x28\xbb\x99\x5d\x8c\xc8\xba\xc4\x31\x81\x9a\xc4\x72\x1b\x7c\xe9\xe2\x28\x59\xb4\x5e\x3e\x4d\x9b\x74\x39\x79\xd1\x79\xcf\x49\xf3\xa5\x2b\x7b\xa8\x6f\x62\xf6\xf4\x61\xbd\x02\x02\x51\x8a\x76\xc1\xa3\x6e\x65\x78\x29\x37\xd3\x4a\xfd\xf2\x24\x95\x92\x50\xff\x64\x22\x94\x23\x88\xec\x11\x13\x91\x93\x2e\x11\x1e\x66\x69\x92\x8e\x92\x50\xd6\x57\xb1\x44\xa8\xae\x50\x1c\x0f\xfc\x96\x3f\xb0\x26\x1f\x65\x64\x59\x40\x01\xab\x5c\x19\x3d\x50\x2c\x73\x2f\x4f\x68\x07\xd4\x16\xf4\xb9\x7d\xed\x65\x5b\xd8\xcc\x24\x82\x10\x66\x43\x43\x0c\x0a\x71\x37\xf4\xb3\x36\xb3\x10\x3d\x61\x84\xa6\xb6\x7e\xb8\xa3\xfa\x65\x36\x59\xb4\xf1\x12\x4b\x5d\x3b\x99\xd1\x9d\x9e\x7f\xad\xf0\x37\x77\x5c\x9d\x6a\x21\x26\xeb\x24\x4d\x74\xbe\xa8\xf0\x31\x17\x55\x1e\x6a\x0f\xd9\x70\x54\x4c\xd4\xb5\xcf\x97\xbe\xde\x31\xd1\xa7\x04\x5f\x8e\xff\x43\xd5\x23\x17\x6d\x36\x30\xc9\x2a\x9b\xb3\x8a\x6a\xbc\x8f\x83\xd8\xfb\x0f\xe3\xfc\x20\x12\x7c\x07\x87\xaa\xae\x1f\xbb\xc7\x35\x25\x5c\xf8\x7f\xe0\x15\x73\xf1\x39\xf0\xe2\x79\x97\xe8\xe2\x80\xd9\x39\xa5\x9e\xa7\x8d\x2d\x56\x7e\x8c\x04\x48\xf9\x33\x40\x66\xcc\x65\x07\x69\x1d\xf5\xd3\xa1\xed\x01\xc7\x27\x0d\x70\xfa\xa8\x94\x90\xe8\xa7\x51\x0c\x3a\x4c\x23\x06\x0b\x28\xef\x6e\x98\xbb\xad\x4e\x03\x8f\xb3\x2b\x56\x5c\xc2\xa2\x39\x83\x19\xce\x27\x0d\x5e\x5c\xed\x38\x5d\xb1\xd9\x8c\x9f\x2c\x17\x31\x57\x99\xe1\x4e\x37\xee\xa4\x06\xaa\xcb\x62\xba\x36\x96\x14\x41\xcc\x3b\xd7\xee\x7e\x6a\x93\xe8\x10\xba\x62\x80\x23\x41\x82\x4e\xe2\x1d\x0f\x03\xe1\x6e\x31\xaa\x7a\x0f\x5d\xd0\xb9\x10\x93\x06\xd3\x74\xf5\x21\x07\x02\xd8\x3f\xeb\x84\x5a\xe9\x9b\x01\xc4\x7c\x5c\x99\xa4\xaf\x35\xba\xb2\x8c\x8a\x85\x38\x5d\xe1\xd0\xdf\x59\xe0\x28\x58\x4a\xdd\x8a\x66\xcf\x6c\xdb\xd8\x22\x31\xd4\xd7\x16\x61\x7a\xa5\x3d\x75\xde\x89\x93\xf4\x22\x5b\x4c\x6b\xfc\x1d\x36\x6d\x44\x65\x28\x0d\x61\x91\x7c\xa7\x9c\x10\x59\x5e\xbf\x3b\xef\x98\x6b\x77\x4d\xbe\x64\x8b\xae\xa9\xd2\x55\x6f\x53\x8c\xd9\x2f\xc2\x9e\x1e\xf3\x76\xa7\x96\x74\x1d\x3c\x58\x65\x45\x7d\x9b\x51\xe7\x13\xb9\xe2\x2b\xa5\x9f\x2b\x57\xb0\x08\x60\x44\x9d\x6d\xd2\xd9\xff\xf9\xf6\x70\x94\x0d\x63\x2d\x22\x70\xa5\xf4\x61\xf3\x15\x25\x70\x98\x17\x51\x08\x64\x9d\xa3\x2d\xa1\xc0\x27\x01\xef\xcf\x7e\x94\x62\x09\xe0\xcc\x2e\xa5\x70\xac\x10\xcf\x10\x51\x76\x75\x04\xd1\xce\x8b\x74\x48\x11\xc8\xc4\x10\x94\xb2\xb0\xac\xb5\x26\xcf\xd3\xac\x18\x48\xdd\x8b\xd1\xc0\xca\x40\xf1\x82\xea\x2c\xa5\xd0\xe0\xd7\x6b\x24\x3b\xa6\xf2\x49\xa3\x10\x41\x6c\x46\x49\xd8\x6f\x29\x93\xbf\x1f\x2b\x14\xcd\x8f\x27\x6c\xd8\xf2\xc7\x68\xbc\xa1\x9a\xf4\x4f\x48\xa0\x79\xed\xa7\x09\x42\xc9\xae\x39\xa5\x36\x55\x54\xf5\xf2\x52\x19\x1e\xb6\x89\x62\x37\xb1\xb1\xa2\x76\x74\x9d\xd6\x1f\xa1\x6c\x28\x9d\x9e\x8b\x3f\xa3\xcc\x73\x9f\xa5\xfa\x14\x95\x43\x7f\xeb\xe7\x10\x11\xa1\x8f\x77\xcd\x0b\xdd\x8d\x06\x83\xa8\xa0\x99\x8f\x6b\x79\x9c\x3e\x8f\xfe\xc8\x9d\xd2\xe7\x71\xb0\x50\x74\x82\xab\xd5\xbd\xa1\x72\x75\xb8\x14\x61\x9c\x9e\xcd\xb7\x54\x1f\x60\xeb\x20\xdc\x08\x13\xdb\xf1\x09\x04\x0f\x13\x9e\xbc\x50\xfc\x44\x61\xe8\x03\x2c\x6d\xd8\xf7\xee\xa8\xce\x10\x7a\x5f\xc2\xef\x93\x90\x6b\xa5\x1f\x0d\x73\xb3\x62\x7b\x53\x3a\x11\x52\x68\x11\x84\x02\xc2\x41\x7e\x42\x41\xdb\x47\xb9\x90\x05\x04\xb1\xe8\x73\xa6\x63\x4d\x96\x6c\x3d\x6b\x87\x34\x2d\xd9\x90\x80\xc6\xab\x8b\x68\x3d\xee\xec\xfd\x06\xf1\xd0\xb9\x76\xba\xb0\x90\xdb\xc2\x03\x78\xa4\xaa\x53\x7d\xa1\x14\x75\xd6\x7f\x6e\xe7\x7c\x3b\xec\x67\xe9\x20\xcd\xd3\x81\x14\x2e\x98\x73\x4a\x3f\x2e\xfc\xd3\xa7\xd4\x06\x98\xd8\x8c\xdc\x77\x55\x42\xf9\xce\x44\x39\x97\xda\x57\x58\x2c\x2f\x97\xd4\x09\x63\x19\x25\x45\x70\x7e\xa7\xf4\x49\xd2\x57\x88\x8a\xc8\xc7\x2a\x80\xa2\x4a\x7d\x8a\x78\x00\x05\xb7\x07\xea\x1b\x6e\xd0\xab\x43\x1b\xf5\x48\xf9\xf4\x64\x3d\xf8\x73\x73\xed\x1d\x3b\x36\xfb\x7a\x2c\xfc\xc7\x11\x12\x1c\x46\xb2\xc6\x4d\x49\x55\xe9\xbe\x4e\xd7\x04\xbc\xf3\x71\x5d\x50\xbd\x4b\x9d\x41\x11\x09\x7e\x54\xb5\xc9\xe3\x27\xbd\x07\x31\xab\xb3\x89\x4e\xa8\x6f\x26\xfe\x3e\xb2\x11\x14\x81\xee\xeb\x85\xe5\x5a\xa0\x4c\x37\x1e\xef\x50\xbc\x8d\x99\x70\x4a\xe1\xb0\xb9\x5d\x84\x71\xfd\xc7\x4a\x40\x9c\x09\x0a\x88\x42\x66\x3a\x14\x06\x0b\xd8\xce\xd7\x69\x6f\x71\x5d\x1b\x53\xff\x88\x1a\x0f\x37\xb0\x01\x73\xed\x42\x59\x09\x5c\x56\x37\x19\xdb\xc5\x96\xe2\x64\x9e\xd2\xa5\xcd\x53\x93\x6e\x2d\x36\xe3\x76\xad\x62\x9c\xdf\x50\x99\xec\x0d\xaf\x1b\x62\x92\x6a\x61\x9f\xf6\xd5\x2f\xa6\x88\xa8\xd5\xf7\x79\x2e\xc6\xdc\x55\xc8\x89\x9f\xec\x38\x4c\x4c\xba\x60\x78\xc0\xca\x76\xd9\x72\xaa\xbe\xf5\xdd\x96\x8a\xbf\x23\x72\x38\x98\x77\xad\xc5\x72\xa2\xcf\xa8\x02\xd6\xc4\x6e\x51\x22\x29\x97\xb4\x47\xc3\x3b\x84\x1a\xc1\x12\x75\xd2\x1b\x37\xfd\xe9\xc7\x3b\xca\x5b\xea\x21\x16\x1f\xfc\xd5\xed\x09\x84\x3e\x9a\x65\x08\x69\xbf\xed\x56\xc8\x05\xbb\x62\xf3\xa2\xa5\xc4\x75\x2f\x4c\xd8\xcd\x3d\xad\x26\xc5\x70\x14\x03\xa6\xf7\x51\xaa\x1b\x8f\x6a\x38\x9c\xee\x0a\xb3\x2f\xb1\xf4\xb1\x1a\x50\xe0\x00\x58\xee\x17\x71\xd5\xdb\x81\x92\x76\xba\xed\xd6\x44\x0a\x9c\x12\x81\xbc\x3b\xab\x37\x6f\xfb\xd6\xe4\x18\x9d\x0e\xa3\xd1\x40\x99\x3a\x4d\x2a\xbd\x4f\x68\x73\x99\x95\x96\x2f\x0e\x71\xbb\x8b\x4f\xb4\x36\x50\x66\x96\x6d\x2c\x57\x21\x7a\xf6\x5a\xdc\xde\xf7\x0a\xa3\xc1\x30\x8e\x16\x22\x49\x91\xf0\xf8\xaf\xa8\x26\xc3\x95\x5a\x99\x73\xf7\x0b\x7b\xdb\x83\x28\x21\xec\xae\x43\xd5\x9e\xd1\xf0\xd8\x86\xfe\xe2\x17\xda\x51\xb2\xac\xca\x74\x98\x26\xc8\x31\xf9\x78\xa2\xb4\x98\xdb\x2a\x14\xa3\x69\x80\xc2\x0f\x10\xee\x2c\x76\xa6\xe4\x70\x37\x50\xe3\x45\x44\xd0\x9a\x44\xee\x09\xb3\x33\xa5\x2c\xfa\x2f\x29\x2b\xd5\x3b\x0a\x15\x7d\x5c\xe1\x3a\xa0\x7a\xc4\xe2\x74\x80\x1f\x00\xfd\x88\x2d\xfc\x8a\x1e\xc7\x37\x1b\x9d\x2f\x32\x13\x25\xa8\x27\x69\xa9\x49\x81\xff\xfb\xd2\x47\xd4\xb3\x06\xd2\xaf\xec\x50\x35\x09\x41\xa1\x91\x2f\x14\x70\xe5\x1e\x9e\x45\x0b\x85\x44\x80\xae\xb6\xb5\x67\x56\x8e\x55\x66\x96\x17\xd4\xc6\xdc\xa6\x18\xe7\x77\x79\xe6\xf1\x19\x46\x3f\x56\xbb\x37\xe8\x5b\x90\xe2\xbe\xaa\xe4\x6e\xd7\x02\x65\x21\x74\x42\xf9\x5e\xbe\x4a\x49\x39\x5f\x61\xe9\xad\xe3\x68\x4e\x3d\xbf\xb6\x91\x22\x1a\x60\xe8\x36\x8f\xfd\x52\xf2\x0b\xff\xd5\x7f\x4e\xd4\x73\x96\xd8\xa1\x81\x20\x72\x3b\xdb\x75\x19\xac\xc8\xd2\x98\xb3\x4a\xec\x4c\xf7\xf1\x80\x10\x30\x5d\xd3\x15\x93\x7b\x7a\x90\x9f\xa6\xbd\xc9\xe9\x44\x38\xf8\xe3\x31\x25\xa2\xc0\xea\x76\x08\xca\x37\x42\xac\x0a\x18\xb3\x4b\xca\xe4\x59\x50\x66\x69\xa6\xe5\x9c\xce\xa8\xe6\xfe\x99\x5a\x46\xb1\xef\x05\xa8\xf7\x91\x94\x71\xcb\x2b\x7d\x7f\x8d\xc6\x1b\x1f\x37\x0e\xd7\x30\x4e\x73\x4b\xc4\x76\xda\x3c\xff\xc5\xb3\x14\xa2\xa1\x0a\x75\x52\x6b\x14\x9e\xc1\x73\xd0\x08\x0b\xb7\xc7\x39\xa4\xdd\xbd\xda\x62\xb6\x73\xbe\xbd\x30\x62\x79\x52\xc7\x6a\x77\x18\x9b\x7a\x1f\x6e\xff\xec\x7c\x7b\x68\x72\xd7\x36\xc7\x6e\x0f\x5c\x13\x1f\x2b\x0a\x69\x98\x0e\x06\x36\x0b\x2d\x80\x01\xd2\xa7\xa3\x0f\xf2\x89\x42\xe7\x90\x63\xce\x26\xfa\x4b\xe4\xe0\xef\x61\x43\xe1\x93\xc0\xd3\x7d\x59\x96\x9a\x5d\x6d\xe9\x7a\x5d\x39\xc2\xb5\x91\xce\x2b\x35\x93\x34\x2f\x6c\x92\x47\x5d\x6e\x51\x4a\x8b\x55\xe9\xa5\x9c\x57\x75\xa6\x74\x25\x79\xc6\x83\xf3\xff\x12\x09\x3b\x16\x0b\x58\xc9\x4b\xbe\x41\x01\x12\xe6\xe9\x5f\xe2\x5d\x60\x80\xf1\x98\x64\x7b\x4e\xd4\xdd\x90\x2b\x5c\x55\x26\x30\xaf\x97\x7e\x0d\xfb\x4a\xa9\xf5\x83\x8f\x51\xa9\x51\xd8\x86\xf4\x10\x10\x95\xb0\x30\xb1\xc8\x44\xb6\x76\xcc\xad\xcd\x8c\xf5\xe6\x8e\x38\x9f\xe1\xce\x28\xe3\xf3\xf5\xd1\xf8\x47\x3c\xb3\x91\xd4\x3a\x10\x86\x72\xfc\x8f\x42\xf5\xb8\xb6\x74\xed\x9f\x7d\xbe\x5d\x98\x18\xcd\x49\x84\x69\x37\x54\xf7\xf8\x46\xa3\xf0\x91\x3d\x44\xde\x32\x8a\x56\xc5\x80\x5d\x3e\x51\x9b\xd3\xd0\x64\x26\x5e\x7d\x49\xe8\x87\x4a\xc9\x7f\xce\x29\xf9\x37\xc0\x67\xf3\xd8\x5a\xd0\x03\x31\x8c\xae\x29\x42\xe5\xb5\x2a\x0a\x70\xc1\x56\x92\x2e\x1b\x60\xdd\x5d\x74\xcc\x44\x68\xe9\x53\x37\x6e\x12\x2b\x26\x2a\x5a\x0a\x84\xc6\xb3\x8b\x4f\x02\x2f\x4d\x9e\x91\x83\x94\xe2\x26\x2a\xa4\x5c\x1d\x59\xb3\x7b\xcf\xee\xb6\x29\x0a\x6e\x7f\x56\x5f\x8f\x30\x9a\x23\x0e\x3e\x51\x73\xa2\x37\xb2\x31\x03\x00\x31\xaa\xaf\x2b\xab\xe7\xeb\x6e\xe3\x8e\x0a\x13\x47\x26\x31\x05\x2c\x5a\x11\x88\xac\xd1\x43\x11\xd7\x32\xe5\x4f\x72\xad\xf6\xd6\x76\xec\x60\xb3\xb3\x49\x06\xff\xf7\xcb\x09\x36\xa2\xb7\xfc\x5d\x31\xc0\x06\x60\x50\x8f\xf1\xe5\x7c\xd2\xa0\xe1\xb3\x60\xa2\x58\x00\x9d\x08\xef\x6e\x95\x1e\x8d\xce\xaf\x1b\x37\x3f\xd5\xd9\xae\xdb\x81\x21\x41\xeb\x7c\x4f\x24\xf0\x5b\xd0\x1f\xe3\x57\xa5\x59\xa2\x74\xd9\xff\x58\xa1\x89\x16\x46\x79\x6e\x01\xaa\x47\xfa\xf1\x17\xb4\x59\xf1\xb1\x0a\x66\xe7\x3e\xbd\x77\x4a\x27\xb6\x13\x99\xb0\x62\x65\xbb\xba\x58\x6c\xa9\xc0\x33\xed\x57\x9c\xa9\xce\x04\xf7\xb9\x9a\x64\xe2\xe7\xe6\x55\xbc\x2f\xa9\x7e\xfe\xc0\xe4\x85\xcd\x16\x46\x71\xbc\xda\xd2\xe6\x60\x98\xb8\x02\x50\xf5\x6e\x2b\x69\x95\x2a\x4f\xe9\x96\x04\x3d\x39\xf1\xa3\x55\x75\xd9\x23\x35\x95\xaf\x2a\xb2\x0f\xfb\xd1\x4b\xe9\xb0\x9f\xd9\x84\x91\xed\xf8\xe3\xe3\x64\xdc\xc0\xc7\x0d\xbc\xdd\xdd\xed\x45\x93\xf5\x2c\x30\x07\x78\x70\x3f\x2c\x95\x6e\xc1\x0f\x3f\x52\x73\x39\x27\xe3\x7c\xa9\xed\x08\x5e\x5b\x89\x21\x7f\xd9\x75\xdd\x7a\x26\x5b\x89\x12\xf1\xb7\xc5\xa6\x7d\x5b\xef\xe0\xb7\x6b\xd1\xf2\xce\xf9\x76\x37\xa6\xf9\xe7\x64\x58\x5e\x0b\xfc\x46\xf6\x5a\xed\x56\x0e\x54\x4b\x47\x91\x8d\xc2\x25\x60\x21\x04\x99\xae\x61\xea\x0a\xde\xbd\x10\x65\x03\xea\x98\xce\xb9\x6d\x8e\xde\x92\x83\x8f\x54\x6b\xb1\xd8\x04\x54\x6f\x18\x45\x98\xeb\x94\xa7\xe3\xdf\x8f\x96\xbe\x79\x80\x65\x17\x2d\x17\xf6\x12\x13\x43\x4a\x9a\xe0\xac\x43\xaf\x1b\x6c\xaa\x45\x3f\x35\x56\xbe\xb6\x17\x9a\x68\x49\x89\x21\x74\xc0\x94\x8a\x5b\xbe\x5c\xfa\xa2\x0b\x1a\x60\x42\xa0\xf0\x03\x7f\x98\x26\x8f\x7a\x75\xc3\x13\xb4\xf5\x20\x22\xb9\x1a\x78\xbe\xfd\x5b\xca\x42\xe6\x26\x09\xb8\xa0\x92\xce\x5e\x30\x38\x39\xa1\xbc\x09\x7e\xb2\xa3\xf6\xe8\xcb\x13\xde\x2c\x74\x51\xa8\xed\x6d\x83\x4c\xa7\xfb\x2e\x2f\xb4\xf2\x40\x85\xdf\xbd\x2c\x5a\xb6\xf9\x66\x1f\x00\x40\x6e\x0e\x69\xff\xff\x80\xec\x1c\x01\xfc\x0d\x6c\x90\xd8\x54\x71\xfd\x38\x46\x8b\xc4\x89\xc0\xcc\xed\x73\x1a\x85\x8f\xb9\xb6\xef\x28\x61\xd9\x79\x34\xaf\x00\x3a\xe7\x63\x6f\x6f\x3f\xea\xbe\x68\xc3\x49\x8d\xcb\x4b\xca\xf0\xa9\x09\x08\xb2\xbb\xad\x19\x63\xe8\x69\xa2\x61\xce\xc7\x0d\x0a\x90\x7b\xdb\x69\xc2\x7a\x18\xd8\xdb\x41\x11\xe1\x63\x97\x63\x9a\x85\x85\x28\x8e\x68\xe1\x77\x32\xf7\x1b\xbc\x11\xc9\x7f\x04\xb5\x14\xef\x70\x6a\xdc\x20\x63\x1f\x47\x89\x4c\x6d\x3c\x78\x94\x69\xf9\xb8\xfc\x98\x92\xca\x4b\x96\x6d\x96\x4b\x67\x70\xbf\x8c\x8c\xef\x94\x7e\x94\x7c\x47\x61\x47\x86\x55\xc4\x95\x26\x9b\xfc\x5f\x5e\x53\x08\xad\x4d\x98\x00\x68\x83\x20\x2b\x40\x11\xe9\x28\x42\x18\x41\x14\xd2\x53\x16\x12\xe8\x76\xa5\x00\xb3\x94\xa6\xb9\x21\x51\x37\x16\x67\x2e\x95\x69\xd7\x25\x25\x90\xf0\x21\xf6\x56\xfe\x8f\x9a\x7e\xd2\xae\x5d\x44\xb3\x6d\x29\x57\x1a\xe4\x66\x7c\x1c\xac\xaf\x29\x64\x51\x01\x93\x15\x35\x01\x64\x25\xbd\xab\x04\x6b\x6e\xd4\xe2\xf9\xcf\xcd\xb5\x17\xa2\xc5\x11\x97\x0e\x10\x0c\x41\x7a\x9b\x8f\x1b\x0c\xa6\x77\xef\x6d\x2f\xda\x02\x99\x23\x52\xdc\x63\xb8\x51\x3e\x09\x3c\x5b\x7c\xd1\x0e\x98\xb8\x23\xa0\x8a\xd6\xae\x5d\x6b\xb7\x95\x36\xf3\x25\x4d\x76\xa0\x32\xcf\x8c\xff\xf5\x29\x4c\x58\xf6\x8b\xa5\xa9\x83\xbd\xf5\x83\xd2\xf3\xdd\xd9\x54\x57\xa2\x3a\xbf\x8a\xf4\x47\x66\xc6\xa1\xdb\x5f\x03\x1d\x0f\x2b\x2a\x1b\x85\x00\x62\xba\x1d\x1e\x8c\x42\x61\x57\x1a\x70\x75\xc9\xa9\x7d\x2f\xb4\xfb\xb6\xb7\x88\xa7\x85\xe8\x00\x55\x39\x3e\xae\x7d\x60\x6e\x5f\x9b\x6b\x57\x1e\x86\x48\xb2\x47\x1f\x15\xea\x41\x67\xd5\x21\x6e\x50\x38\x7c\x1b\xe3\x85\x4f\xd4\x2d\x86\xfd\x74\x0b\x8d\x4d\x47\x57\xf5\x95\xac\x0b\x9a\xdd\x88\xe6\x8b\xf6\x78\x99\x30\x31\xc5\x7a\x7e\xbd\x54\x06\x92\xe0\x28\x21\x6c\x9b\xea\xf8\x9f\x5c\x2c\xfa\x53\xaa\xbc\x8f\x2f\x73\xfa\xc9\x4e\xab\x50\x63\x27\xc8\x69\x7f\x4a\x91\x09\xa0\xd9\x88\xe3\xad\xd4\xc3\xc0\x2a\xd8\x1a\xab\x6e\xb7\x49\x46\x0b\x26\x2c\x68\x6c\xee\x7b\xc1\xe7\xef\x2e\x80\xbc\xd0\xd0\x84\xd9\xcb\x41\x23\x2d\x3d\x78\x28\xf7\xb5\xef\xca\x0c\xe9\x76\x09\xdd\x79\x7d\x2c\x4c\x2c\xbb\x34\x1f\x62\x31\xad\x3e\x85\x92\x03\x23\x8f\xf9\xa4\xf6\xb3\x64\x00\x1e\x86\x69\x06\xc4\x80\xa3\xcf\x7d\xe6\x80\xd3\x9b\xf7\x3a\x33\xdd\xd8\x24\x4b\x96\xa2\xda\xea\x3b\x91\x0a\x31\x3b\x8f\x4f\x1a\x80\x58\xed\xdc\x66\xcb\x26\x91\x35\xbe\xc9\x61\x5c\x76\x83\x78\x94\x79\x1b\x5d\xc0\x02\xae\x23\x14\xe5\x13\x05\x7c\x87\x67\x12\x9e\x16\x6a\xf3\xf7\x02\x0d\x86\xa1\xa7\x2d\xd0\x2a\xdf\x49\x58\xe9\x47\x61\xdf\x2e\xdb\x8c\xf6\x02\xa0\x98\xae\x2b\x25\xfa\xeb\x75\xa3\xbc\x2a\x6d\xdb\x4e\x43\x55\x50\x06\xd5\x3a\x29\x1a\x2b\x34\x36\x5c\xeb\xdc\xe5\x50\x53\xb4\x6b\x20\xca\x3d\x49\xeb\x27\xa6\x3f\xa7\xb9\x80\x85\x33\xfc\x0f\x02\x61\x2d\x54\xe2\xa5\x11\x32\xa1\x78\x41\xcf\x00\x17\xf8\xbe\xd2\x47\xe2\x4a\x29\xe2\x8b\xb7\x4b\x25\xfc\xfb\x15\x2d\x35\xfb\xfb\xa5\x27\x89\xbf\xdf\x90\x94\x7e\xa1\xdd\x37\x59\x0f\x3c\x2b\x51\x96\xf6\x3e\x1c\x1b\xb0\xb7\x20\xd9\x3d\xa1\x84\xe4\x9e\xea\x50\xfd\x4c\xc0\x9e\x5e\x35\xc8\x8c\x8a\x34\x49\x07\xa8\x0e\x40\xdf\x02\xe1\x12\x1f\x2b\x78\x5a\x36\xca\xf3\xc8\x63\x3a\x64\xc6\xeb\xe9\x5f\x6b\x1f\x91\xe8\x84\x89\x6d\x96\xf7\xa3\x21\x8f\x2a\xb6\xf0\xa3\x5f\x11\x3b\xbf\x06\xad\x5c\xbb\x6c\xe2\x91\x61\x61\x04\xa1\xfe\x57\x9f\xe1\x63\x1f\xbe\x8c\xc2\xa5\x34\x55\x62\xfe\x1b\x3a\xca\x96\x67\xc3\xd8\x67\x1d\xac\xd2\xed\xb6\x71\x44\x38\xdf\x2d\x7d\xe4\xf3\xdd\xda\xac\xdb\x39\x4f\x02\xdb\x31\xeb\x1f\x22\x22\xc7\xb6\xcd\xc7\x63\x3f\x62\x61\x06\x1e\x25\x8b\x8f\x79\x91\x3b\xb0\xa0\xf1\xe4\xa1\xaa\x83\xdc\x81\x3d\xac\x59\x7c\x8d\x86\x9d\x28\x40\x29\x09\x3e\x96\x32\x42\xb9\x94\xd9\x68\x18\x90\xbf\x4b\x0c\x34\xc4\xd1\x0f\x10\x9e\x33\x5c\x04\x2b\x11\x1b\x1d\xd2\x7c\x91\x5d\xd6\x9b\xe6\x1e\x6e\x52\x65\x5b\x5a\xec\xb6\x7c\x0f\x96\x57\x76\x3e\xa9\x8d\xc5\x6a\x15\xeb\xa7\x09\x46\x8e\x08\xe7\xb7\xe6\x3d\x2a\x63\xc2\xbc\x3d\x5e\x9a\x56\xfe\x4c\x90\xa2\x77\x4a\xcb\x5e\x8c\x10\xd3\x52\x5a\xba\xbe\x9c\x31\xb4\x59\x95\x10\x9b\x45\x0b\xa8\x8a\xd3\x18\xf5\x10\x8c\x33\xca\xfa\xf7\x21\xdd\xb5\x83\x86\x7a\x4a\x54\x1d\xc0\xb5\x73\xbe\xbd\x40\x92\x5c\x62\x5b\x20\xec\x00\xfa\x94\xd0\x06\x9a\x24\x2e\xf3\xc2\x0e\x06\xb2\x83\x22\xb9\xdf\x8c\x7e\x1b\x9f\x74\x9e\x52\xa1\x6a\x36\xa0\x6a\x0c\xc5\x4f\x78\x81\xb7\x83\x89\x88\xc2\x03\x32\x8f\x36\x70\x93\x0b\xb3\x04\xa7\x04\xe4\xd5\x9c\x38\x21\xea\x9d\xa2\xf4\xca\x01\xa2\x5c\x80\xf6\xcd\x06\xa7\xa4\xdd\xed\x3c\x3d\xc4\x33\x18\x63\xf2\x46\xa0\x74\x97\x6f\xa8\x0a\x0c\xa1\x71\x9e\xd0\x12\x8f\xd7\x14\x8e\xe9\xba\x2e\x66\x7e\x89\x86\x2f\xb2\xad\x2f\x05\xca\xfb\x85\x59\x23\xfc\x57\xc8\xee\x31\x00\xd7\x4a\x2f\xcb\xf5\x7a\xa9\x2c\x0a\x2f\x6a\x6d\xcd\x8b\x54\x54\xc7\xf6\xf6\x1a\x81\xe3\x84\x1f\x5c\x45\x78\x37\xb1\x40\x63\xc0\x6d\x03\x0d\x45\xca\xd6\x0a\x60\xde\xb7\x83\xa7\x3c\x28\xe4\x24\xd6\x5e\xd4\x11\xde\xa6\x8c\x15\x75\xef\xdb\x81\xf7\x64\xfe\x0f\xa0\x58\x62\x4f\x7a\x10\x28\x0d\xe6\xb3\x55\xbe\xbb\x76\x1b\x57\x8c\x48\x19\xfc\x0d\xc0\x0b\x8f\x51\x86\x88\x65\xed\x36\x66\x38\xfa\xf9\xf7\x90\x9f\x61\x40\x31\x9a\x98\x71\x17\xa4\xa2\xc5\x36\x71\x98\xee\x5a\x10\x52\x94\x2b\xe9\x41\x62\x5f\xd9\x30\xa6\x58\x92\xaf\xae\xbe\x0b\xee\x69\x7f\xe6\x40\x6b\x62\xd4\xe3\x2d\x0a\x3c\xda\xc7\xc2\x8b\x99\x89\x12\x20\xd7\xb1\x00\x5e\xd4\x50\xa8\x3b\xfc\x39\xf1\x28\x50\xc0\xb0\x6d\x1d\xc1\x5b\xf4\x47\x03\x94\x70\x9a\x42\xa7\xa6\x12\x63\xba\xe2\x64\x04\xc5\x31\x9d\xee\x4d\xbc\xd4\xfd\x9b\xeb\x9b\x65\xfb\x93\xf4\xd8\x10\xf9\x31\xc9\x1c\x5b\xfb\xcc\xd8\xbb\x75\x5d\xa3\xa1\x81\xfe\xd9\x9f\xd3\xdc\x77\x66\x78\xbb\x1d\x32\xe8\x36\x3d\x67\xa9\xbe\xeb\x96\x37\x5a\x34\xfc\xbd\x1b\x3a\x2a\x4c\x78\x50\x2a\x85\x7f\x58\xd5\x39\xc3\x18\xd7\xd9\x7c\x08\x14\x1f\xf2\x92\xaf\x03\xd0\xc0\x4c\xe7\x72\xf2\xc9\xec\x94\x12\xde\x6f\xa3\x9f\xe5\x5e\x7a\x35\x22\xd1\xcd\xb8\x85\xc1\x86\x69\x0e\xe7\x1b\xac\x93\x0f\xa8\x3e\xe1\x7a\x68\x4e\x46\x7c\x43\x47\xe1\x5e\x59\xf5\x03\x78\x95\xeb\x0e\x13\x33\x18\x71\x1c\x88\xf7\x0a\x35\x69\x3e\x56\xc6\x25\x03\x73\x28\x1a\x8c\x06\xe4\x6c\x2a\x28\x28\x45\xeb\xe7\x01\xa0\x25\x80\x45\x6f\xaf\xe5\x18\xf5\x47\xbd\x2c\x99\xc9\x5c\xe6\x8f\xe6\x3c\xf7\x1d\xf8\x44\xf5\xfe\xc2\x34\x2f\x72\xda\x33\xf1\xa2\xb7\xe0\x9e\x50\x7b\xe2\xee\xba\x2c\xc5\x4a\x2a\xe7\xdd\x72\xbd\x9a\x3a\x3d\xc3\x7f\xfc\x14\x5e\x21\x4f\x3c\xcc\x77\x71\xd3\xaf\x06\x0a\x6a\x4c\x77\x50\xc6\xd2\xfc\x74\x2c\x34\xf7\x15\xce\xfe\x9c\xe6\x0a\x7f\x5f\x75\xe4\x56\xd2\x6c\xc9\x66\xf9\x96\x09\x05\x44\x55\x19\xb9\xa5\xb4\xc8\x6f\x04\x8a\x7d\x82\xa0\x10\xdf\x7e\xaf\xf4\x50\xd6\xbb\xba\x8d\xf5\xd0\x7b\xa8\x6d\xdf\xd2\xd1\x12\x50\xc9\xb2\x4d\x9c\xb0\x18\xd6\x86\xef\x29\x86\xda\xf7\x7c\xb9\x66\x68\x2d\x7c\xd7\x1d\x8d\xe4\xba\x7a\x4f\x27\x71\x4d\x28\xbd\x55\x41\x92\xc3\xd4\x55\x79\x89\x09\xab\x7c\xbf\xe5\xe1\x45\xef\x69\x39\xbc\xf7\x14\x2b\xb8\xa0\x15\x84\x7e\x04\xd5\x72\x0c\x06\x31\x47\x50\x40\xe1\x2b\xca\x14\xc6\x0c\xdc\xd0\x10\xf7\x3a\x7f\x69\x67\x6b\x9b\x34\xc9\xab\xae\x64\x66\x38\x94\x62\x3a\xdb\x80\x2a\x41\x7c\x26\xb0\x4a\x2d\xc5\x07\x65\xd5\xd6\x99\x2e\xdb\x2c\x9f\xf2\x7d\xd6\x8d\x4a\x42\xec\x46\xa9\x0c\x96\xce\xa8\xb4\x37\x49\x58\x69\x07\xbb\xd4\x95\x52\xe5\xca\x17\x95\xee\x2e\x82\x16\x94\x59\xb6\x74\x54\xef\xdc\x69\x64\xce\xf1\x5a\xbd\x01\xec\x02\x96\x35\x0f\x14\xa8\x92\x81\xb6\x2c\x93\x01\xed\x74\x51\x3f\x77\x56\xd5\x87\x6c\x16\x92\xd1\x0b\x7c\x48\x69\x0f\xbc\xfc\x91\xae\xe6\x76\xd1\xf4\xa6\x95\x86\xde\xef\x60\x78\x62\x99\xb9\x46\x6c\x52\xd4\x11\xd1\x2e\x11\x0d\x35\x3f\xc4\x6d\x48\xa9\xc1\x63\xbe\x0b\x01\x45\x72\x9e\x7c\xb4\x36\x89\x1c\x35\x5d\x3d\x30\x01\x0f\x30\x90\xd9\x40\x12\xdb\x1e\xff\x19\xd5\x8a\x31\xc9\xbe\x42\xf3\x03\xed\xa2\xab\xa5\xf2\x09\x7d\x5f\x21\x28\xee\xe8\x06\xc9\x65\xb4\xb8\x81\x85\xba\x10\xa8\xcd\xe8\x56\x2d\x60\xda\x3f\xdb\x4e\xd2\x4f\x4e\xf9\xde\x18\x04\x8d\x51\x34\x38\xab\xed\x19\x54\xb1\x35\x4a\x0a\x13\x16\x9b\xbd\x15\xf3\x45\xbd\xcb\xf3\xca\xa3\x23\x5d\xcc\xcf\xab\xb8\x48\x7c\xdf\x09\x2d\x4d\xf0\x0a\xde\x70\x7d\x64\x45\x59\x01\xed\x69\x16\x00\x9a\xd0\x61\xa6\x91\x85\xf2\x28\x38\x27\x0c\xf6\x53\xc0\xb7\x05\xb3\x9c\x66\xcc\x52\x05\x34\x0d\x22\xe0\x7c\xfc\x91\x82\x01\x2b\x51\xdc\x1d\x65\xf4\x31\x6c\x11\x4c\xf8\xe5\x93\x8f\x34\xea\x5b\x4c\xe3\x1e\xe3\xee\xb5\x1d\x86\x78\xbe\xaa\xaa\xc2\x1d\x55\x35\x8c\xe2\x78\x44\x8c\x0a\x0b\x7f\x46\x45\x0d\x51\xb1\x8f\x5b\xba\xce\x4d\x60\x51\xb7\x3b\xe2\x6c\x16\xf6\x4d\x2e\xf3\x9e\x1f\xb9\xf2\x9d\xe0\x10\x13\xe9\xfb\x61\x87\x6b\x3f\x64\xb3\xf4\xd0\x4c\x35\x44\x45\xdd\x50\x21\xe2\xcf\x6a\xec\x03\x3d\x6f\x47\xf9\x9a\x77\x86\x9a\x8f\x76\x7c\xe5\x3b\x5b\x30\xa1\x5c\x82\xc3\xf4\x3b\x83\xb5\x35\x5c\x02\xd6\xf7\x8d\x9d\xa7\x15\xfb\xac\x30\xc9\x62\xd4\x8d\xed\x94\x2a\x25\x40\xca\x02\xf3\x83\x45\xef\x44\xbc\xad\x29\x60\x0f\x4d\xb7\xa5\x5c\x2a\x2e\x2a\xc3\x99\x8b\xc1\x33\x8a\x84\x1b\xc6\x26\x33\x45\x9a\xa1\x94\xcf\x08\x6b\x7a\x52\x82\xb6\x56\xdb\x97\x89\x97\xa2\x64\x71\x8b\x97\xdf\x3c\xa5\x3b\xe8\xec\x1e\xc5\x28\x17\x04\x15\x4e\x4e\x7d\x8f\x14\xac\x36\x74\x3c\xdd\x04\x33\x02\xab\xef\x4d\xc5\xe1\xac\x2b\x5d\xe2\x9e\xb2\x8f\xee\xa9\x35\xa4\xe0\x83\x34\xc9\xd3\x34\x51\x7c\xd2\x8b\x8a\x1e\x79\x51\x29\x47\x26\x36\x5c\xe2\x62\xb0\x70\xfb\x15\x05\x9f\x5d\x18\x11\x51\x1d\xd3\xb5\x26\x1b\xe5\x64\xd7\x37\xa5\xd2\x9a\x0b\x0a\x4c\xc2\x66\x04\x58\xfb\x36\xd6\x74\xe0\xe7\xf6\xb5\x87\x59\xda\x15\x88\xac\x83\x75\x39\x28\xe6\x25\xf5\xf0\x33\xb0\x3d\xb7\xfa\x29\x7b\x5e\xd5\x6a\x50\xc2\x17\x15\x95\x75\x76\x81\x5a\x8c\x99\x56\x56\x49\xba\xaa\x91\xee\x7a\x75\xbe\xe4\xc7\x49\x3c\x3e\xff\xb6\xaa\x99\x17\x11\x68\x1f\xcf\x3b\x54\xae\x8a\xdb\x95\x94\x33\xb3\x71\x50\xea\xe2\x4a\xb9\x28\x79\x3c\xa9\x2a\xf0\x89\xad\x26\x3a\x06\x2a\xf2\xdf\x0f\x4b\xa5\xb9\xf2\x61\x83\xc6\x59\xf5\x1c\x86\x69\xc2\x2c\xf3\xdd\x5e\x44\xa9\xfa\x98\x68\x07\x3f\xa1\x59\xe6\x26\xe9\x3d\xaa\xc0\xd9\xef\x04\x4a\xcf\xe8\x9d\x52\xad\xa8\x27\x35\x5c\xe4\x26\x3d\x50\x0c\x4d\xae\xa7\x60\x6c\x42\x88\x08\xcb\x2b\xdb\xe6\xe1\x6a\x1f\xd0\xe3\x64\xc7\x68\x7d\x1b\x0f\x4a\x9f\x74\x9c\x2a\x7d\xa2\x71\x2a\x78\x56\x49\x1d\x98\xde\x17\x47\x26\x23\x87\x04\xfa\x35\x94\xb7\x37\x51\xf1\x87\x8f\x6b\x8c\x99\x5f\x6c\x17\xfd\x74\xb4\xd8\x87\x18\x8a\xeb\x17\xee\x74\xbd\x43\xd7\x2f\x06\x45\xcd\x30\x41\x02\xab\xd1\x97\x68\x36\xf0\xb1\xd2\x1b\xcb\xa3\xc5\x64\x0b\x0d\xa1\xb5\xcb\xa5\x27\x8d\x5d\xa6\x15\x08\xfb\xd2\x05\x55\x88\x3b\xbd\x4e\x0b\x50\x81\x12\xbd\x07\xc0\x05\x3c\x42\x41\xb7\xad\x7f\xaf\xbb\x76\xb5\x8b\x51\xd6\x1d\xc5\x93\x41\xea\x0d\xb5\xd2\xdf\x68\xc2\xb6\x2f\x92\xdf\xa1\x53\x15\xfc\x1f\xe9\xd7\xf9\x58\x8b\xa8\x90\x70\xb1\x9d\x56\x6f\x6b\xba\x43\xe1\x12\x9f\x8c\x3d\xd7\xe2\x56\xa0\x9c\x3d\x6e\x7d\xe4\xae\x58\x64\xe9\x60\x68\xa7\x94\x08\xfb\x25\xd6\xae\x92\xf6\x5b\xeb\x33\x07\x84\xdc\xd3\x50\x93\x9d\x6b\xa7\x09\x3a\x0f\x22\x65\xf6\x5b\xa5\x17\xdd\xba\x13\xf8\xd2\xde\x9d\xa6\x5c\x7d\xff\xec\x26\x9f\x2a\xe0\xa1\x8b\x5f\x56\xcb\x19\x36\xf2\xad\x20\x48\xbb\xac\xf2\x1e\xb8\xe2\x43\x72\xe0\xa6\x9a\x91\x83\x30\x34\x59\xd1\x47\x79\x0e\xd1\xe7\xb5\x52\xd1\x7a\xaf\xd5\x1c\xb6\x98\x45\x1e\x0d\xa2\x9e\xea\xd9\x82\xd0\xf0\xba\x92\x92\x7b\x5d\x31\xe6\x32\x6b\xc2\xbe\x85\xa4\x9d\x82\x6d\x4a\xc2\x77\x5a\x61\xd1\x2f\x61\xf1\x12\x88\x9a\x5f\x59\x3f\xd0\x9b\xee\x06\xd5\x03\x1a\x46\x6c\xc1\x8b\x0e\x37\xb2\x56\x3e\x9e\x30\xdc\x31\xc9\x4b\x66\x66\x12\x2a\xe4\xf6\x96\xab\xa5\x83\x10\xfe\xc5\x55\x5c\x82\x6b\x90\x39\x5c\xe4\x61\xdd\x1e\x1c\xda\xa4\xc7\xcb\xb8\x93\x17\x72\x08\xf5\x73\x0a\x9d\x3b\xb0\x79\x6e\x16\x45\x20\x0a\x93\x0f\xef\x4f\x82\x44\xc5\xaf\xff\x9f\x1b\xc4\x89\xc3\x7e\x15\xdc\x68\x25\x23\x58\x48\xf1\xb1\x03\xdc\xe4\x36\xe9\xb9\x17\x82\x2a\xc5\x9f\x06\x1e\x4a\xf0\xa7\xe5\xd6\xa8\x3d\xcc\xec\xc2\x2f\xb4\x57\x9f\x6d\xed\xd8\xc1\x71\xd9\x26\x34\x29\x84\x04\x46\x95\x10\x24\xd1\x8f\xd1\xbe\x8d\x75\x6f\x7b\x47\x3d\xfd\x7f\x30\xae\xb2\x02\xc4\x16\x1b\x49\x93\x05\x13\xf0\x2a\x33\x04\x30\x16\x59\x4b\x06\x03\xf6\x41\xa0\xf4\x26\x6e\x97\x0a\x0e\xce\xaa\xb6\xd8\x6b\x37\x8e\x3d\xd2\xe2\xab\xd4\xb3\x72\x75\x4f\xe7\x24\xfb\x40\x73\x75\xa8\x8e\xb4\x36\x8d\xa4\x0e\xc5\xba\x27\xc6\x54\x34\x41\xc3\xf9\x66\xa0\x44\x3d\x40\x17\x42\x31\xe7\x66\xf9\xec\xe4\x1c\x23\x4a\xd9\xdc\x3e\x85\x55\x6b\xd1\x9f\xf3\xf1\xf8\x71\xc7\x9d\x4e\x43\x9b\x4d\xda\xef\x6b\x13\xc0\x26\x65\x96\x5e\x54\xd3\xa5\xb8\xa2\xe8\x76\x57\x14\xcc\xca\xc4\x4b\x8f\x4c\x79\x5b\x2a\xd6\x0a\xa4\x27\xf2\xab\x4f\x22\x2f\x44\x05\xec\x81\xd6\xf8\x7c\x9c\x36\x0d\x6c\xdf\x8f\x76\x14\x9d\x5c\x96\x28\xe4\x46\xbc\x69\x3a\x33\xd1\xfd\xb3\x58\xf5\xf6\x6c\x57\x44\xaa\x99\x71\x93\x64\x60\x98\x66\x99\x0d\x8b\x29\x15\xb7\x7c\x5b\x17\x2e\x4f\x29\xd6\xf9\x85\x26\xdb\xa6\x9c\x70\xdb\x1a\x1c\xea\x65\x9c\xae\x2a\x0b\xeb\x33\xaa\x9e\x9f\x8f\xba\x79\xd4\xb3\x49\x68\xb1\xdf\xb9\xa2\xda\x4e\xe7\xc8\xac\x40\xac\x0b\x26\x8c\xe2\xa8\x88\x6c\x3e\x33\x69\xf4\xe8\xa0\x30\xd3\x00\xa0\xa1\xee\x7d\x43\xe9\x21\xdf\x41\x05\x8e\xff\xa3\x09\x03\x11\x5b\x83\x86\xaa\xa8\x9f\xf8\x5d\xbd\xfe\xca\xf7\xcc\xb6\xc3\xbe\x49\x16\x25\x64\xc1\x1b\xe3\x76\x3e\x9f\xb8\x69\x3b\x18\x2d\x2c\xc4\x2c\xb2\xef\xfa\xe3\x4e\x9a\xf4\xa2\xca\x07\xe7\x53\xd0\x5e\xd9\xfc\x87\x8a\x54\x62\xf5\x55\x4d\x68\xca\x06\xcb\xa7\x31\x55\x91\x44\xcc\x8c\x5b\x07\xbc\xd0\x5b\x43\x38\xda\x4d\x93\x1e\x93\xcb\x19\x22\x8e\xb7\x2a\x78\x71\x17\x4e\xd8\x61\x16\x25\x0e\xff\x88\x02\x1c\x74\x4a\xf8\x58\x59\x4d\xa6\xb1\x1b\xed\xce\xdc\xc3\xb5\xe4\xde\xd3\x88\x91\x2c\x7d\xd1\x86\x85\xd3\x45\x75\x34\x14\x4f\x49\x51\xf7\x3f\x9b\x82\xd0\xe1\x38\x86\x8a\x2e\xa0\xf4\x46\xd0\x6f\xa2\x01\xe3\x76\xe6\x9d\x4e\x29\xbd\xa1\xd8\xbc\x7b\x6f\x3b\x4c\x07\x40\x08\x61\xbb\xfc\x40\x63\x48\xb8\xb2\x88\x09\x75\x4b\x6b\x5b\xd8\x2a\x70\xa2\x38\x0b\x00\x6e\xac\x95\xaf\xe1\xef\xf9\xa4\x96\xa7\xec\xd8\xc1\x1f\x64\xaf\x30\xe4\xf0\xec\xc5\x87\x4d\xe7\x94\x42\x57\x4e\xfa\xcd\x0f\x8b\x4f\xaa\xbc\xfc\xb0\xce\xcb\x0f\x07\x8f\xf9\x62\x56\x34\xb0\xcf\xb4\x84\x4f\xf9\xde\x71\xd4\x91\x95\x4e\x8b\x48\xa1\xbe\xa1\xbd\x93\x61\xe1\x84\x14\x08\xab\x83\x73\xfa\x75\xea\x37\x1b\x3b\x2a\x41\x5e\xe3\x05\x9f\x81\x66\x81\x87\xc6\x1d\xc6\xaa\xee\xc4\x07\xaa\xcb\xc4\x0e\x77\x5d\xaf\x1a\x3f\x52\x86\xea\xac\xaa\x82\x4c\xe5\x5e\xa9\x34\x42\x41\x60\x47\x64\xfe\x2d\xac\xfe\x28\x48\x72\x46\x8d\xfb\xbf\x88\x92\x3a\xbb\x19\xba\xd1\x38\x30\xd9\x92\x1b\x8d\x22\x8d\xe3\x71\x56\xe7\x4b\x8f\xda\x8d\x4d\x58\x4d\x84\x35\xe0\x75\xd7\xc6\x0e\xc6\xdc\x8d\x47\x64\xca\xe9\x16\xa9\xd7\x55\xf5\xe9\x75\x45\x01\x1e\x66\xd1\xc0\x64\x51\xbc\xca\xbd\x33\xdc\xf2\xbf\xd6\xf7\xff\xaf\x4b\xff\x9a\xba\x31\xcb\x53\x63\x2f\x05\x0f\x8c\x8f\x6b\xe3\xa6\x0a\xbc\x56\x6c\x24\xdc\x33\xb1\xe3\xf2\xf1\xef\xdb\xae\xa8\x3b\xcc\x6c\x51\x44\xa2\x68\x85\x9d\xf0\xfb\x8a\x06\xf0\xfd\x5a\x94\xb1\x7b\xcf\x6e\x5e\xe2\x76\xed\xe2\x27\xf3\xb2\x66\xd6\xbc\xec\x84\x12\x86\x26\x33\x89\x48\xea\x49\x98\xa5\x42\xae\xf2\x11\xef\xa7\x47\xe4\x6e\xa1\x66\xb5\x44\x70\xe5\x7f\xe2\x02\x3f\xda\x25\x77\x54\x8c\xd6\x35\x85\x31\x89\x72\x31\xba\x80\xd8\x48\xf2\x4d\x5f\x84\x5b\x34\x99\x59\xb4\xda\x3a\x58\x35\x2b\xce\xa8\x00\xf7\x8b\x23\xdb\xb5\x61\x9a\x81\x88\x27\xb6\x69\x34\x04\x59\x48\xbf\x54\xad\xa3\xa3\x4a\x7b\x0f\xab\x86\x3b\xd6\x50\xd6\xfd\xee\x6f\x94\xba\xd4\xb5\x26\x63\x70\xa2\xa7\x4c\x68\x2d\x31\x9a\x96\x4f\x1a\xb1\x1b\x69\x12\xaf\x4e\x79\x39\x81\xc7\x3b\x9a\x43\xae\x4a\xfe\x9b\x94\x72\xde\x20\x8a\xe3\x28\x4d\x9e\xd5\xe3\xee\x26\xfa\xfd\xb8\x4f\x16\xc9\x13\x46\x12\xdd\x34\xf7\xb5\xe8\xa6\x1d\x74\x75\xa7\xc3\xc4\x53\x7a\x8b\x41\x0e\xe7\x5e\xa7\x8c\xbc\x63\x87\x97\x6c\xfd\xcc\x01\xdf\x00\xad\x56\x19\xb1\xb9\xf1\x71\xe1\x59\xda\xa9\x90\x65\x43\x7a\x15\xc9\x2a\x1b\x4f\x8a\x9b\x34\x2d\x2c\x58\x7e\xa7\xc7\x13\xac\x0b\xa5\x98\xb2\x61\xac\xa0\x50\xac\x83\xcb\xd0\x19\xd4\xc8\xb0\xbd\x6e\xe8\xd4\x6d\x34\x76\x8b\x0c\xb7\xbc\x10\x71\x52\xa4\xab\xe0\x93\xc0\x17\x7b\xa4\xa6\x98\xcf\xf8\xc6\xf9\xdf\x69\x08\xee\x37\x69\xf2\xe1\xbe\xfe\x4a\xc1\xe6\xff\x6e\x52\xce\xd1\xc7\x33\x66\x54\xa4\x83\xb4\x88\x96\xed\x0c\xdd\x2c\x68\x4a\x20\xa6\xb2\xc9\x01\x7d\xa5\x33\x3c\xa8\x7e\x4b\x3a\x36\x78\xb3\xf8\x85\x35\x65\x29\x1f\xe5\x85\xe4\xd0\x08\x66\x30\x1d\xf9\xb8\xf4\x96\x44\x9f\x02\x4b\xc5\xf5\x3c\x7d\x3f\xbf\xd1\xb5\x84\xe5\x3f\xa7\x94\x6e\x2c\x62\x29\xf6\xc1\x57\x52\xcd\x5e\x44\x66\x60\xfa\x26\x33\x2f\x9a\x7e\x4e\xac\x04\x47\x09\x9e\x9f\xe7\x96\xf9\x6b\x34\x60\x26\x3a\x61\xc2\xc6\x78\xd4\xfb\x7c\x85\x21\x7d\x1c\x83\xf5\x0c\x82\x33\x67\x0d\xb7\x47\xe8\xe2\x2c\xd2\x83\xb0\x62\x63\x67\x7d\xd8\x7a\xf0\x60\x3b\x36\xbd\x1e\xd9\x63\xd3\x0b\x71\x6e\x2b\xce\xda\xef\x6f\x95\x2d\x83\x89\x63\xbb\xc8\x3e\x34\x2d\xe7\xe2\x3c\x4d\x18\x14\x64\x47\xdc\x67\x90\x01\xde\x50\xd2\x78\x71\x94\x10\x48\x70\xc2\x77\xfa\xbc\xaa\x1f\x69\xd2\x15\xf0\x6e\x61\x64\x62\xde\x2d\x9c\x54\xb9\x47\x46\x68\xd5\xaa\x7e\xca\xbc\x4c\x0c\x9b\xa3\xca\x59\xf6\x86\xc2\x47\x9e\x56\x11\xd3\x8e\x4f\x7d\x8a\x49\x99\x78\x48\x3f\x28\x35\x77\x4d\x69\x43\x5d\x51\xc0\x64\x5a\xb3\xe2\xd5\x4d\x5e\x15\x6b\x6d\x1d\x91\xae\x7a\x1d\xe8\xd6\x3d\x0c\x54\xb1\xfb\x0c\x76\x70\x76\xed\x2c\x95\xa6\xc4\xf9\x5a\xfd\x67\x6e\x1f\xeb\xe8\x08\xda\x05\xa5\x8f\x7b\xaa\x41\x71\x5a\xab\xca\x5c\x54\x85\xd1\x45\x9b\xd8\x22\x0a\x67\x70\x67\x88\x5d\xfe\x04\x3f\x87\x54\x17\xdf\x82\xe3\x6f\x4e\xe0\x40\xb5\x40\x9e\x6f\x1e\x64\x76\x60\xaa\xd7\x46\x83\x0e\xcb\xe5\x96\x8e\x42\x73\xbc\xad\x1e\xf5\x83\xd2\xaf\x06\xa7\x1b\xb0\xec\x5f\x68\xe7\x71\xba\x22\x43\xae\x49\x1c\xca\xef\x77\xe9\xa8\x18\x8e\x30\x75\x31\xc2\xd0\xe8\xe0\x63\xa7\x1f\xf9\xe2\xa8\xb7\x8a\xf4\x9f\x7f\x36\xf0\xfd\xe0\xd3\xa5\xe6\x03\x15\x26\x8a\xf3\x47\xe9\xfd\x38\x08\x71\x75\x19\x1c\x61\xe9\x7d\x97\x01\x55\x12\x7b\x55\xb3\x8a\x4d\x7f\x15\x83\x6a\xe3\xd8\x2f\x25\x77\xf0\x76\xb1\x71\x4d\x77\xfc\x26\x7d\x86\x96\x3e\x71\x0c\x56\xe6\x88\x7f\x58\x7a\x6c\xfb\x99\x60\xbd\xb3\x47\xb5\x20\xa7\xd9\xa2\x49\xa2\x97\x18\x33\xaf\x11\x83\x57\x35\x62\xf0\x6a\xed\x39\xef\xd8\xd1\x1e\x9a\xc2\x75\xb8\xb1\x24\xc1\xb6\x83\x8f\xc7\x8f\x2b\x40\x5f\x94\x17\x9b\xe9\x41\x20\xa0\xe4\x5b\x11\xb9\x1f\x7a\xd3\x58\x52\x4e\xa9\x78\xea\x6a\xa9\x34\x61\x67\x3a\x4a\x6e\xea\x96\xd6\xdb\xab\x9b\xd8\xce\xcf\xb7\x07\x51\x6f\xc5\xac\x4e\x55\x1b\x25\x5b\x1a\xe2\xcb\x84\x36\x50\x5d\x28\x66\xf8\xdd\x06\x3e\x58\x37\x36\xe1\x12\x13\xe0\x1c\x07\xa7\xfa\xb8\x70\x70\xea\x38\xf8\xf6\xa2\xd7\x61\x75\xf1\x70\xf5\x11\x3e\xa9\xa5\x3d\xd5\x48\x8d\x4d\x61\x33\xf4\x9c\xd8\xa7\x40\x0d\xee\x0d\xda\x3c\xe8\x48\xf9\xcc\x7a\xf8\xa2\x89\x63\x76\x91\x14\xec\x5f\xf5\xb6\xc5\x4b\x47\xd5\xd9\x8e\x94\xde\x9e\xb8\x91\x98\x33\xb0\x59\x16\x31\x87\x52\x4c\x47\x95\x35\xa1\x46\x69\x55\x59\xf5\x8c\xef\xe6\x9f\x0f\x94\x15\xdb\x75\xe5\x27\x31\x85\xe9\x2b\x0e\x04\x0a\x71\xdc\x44\xd9\x85\x79\x44\xbc\xaa\x78\xe5\x7f\xa9\x44\x2a\x19\x87\x25\xf5\x84\xa6\xa5\x6c\xd0\x35\x45\x11\xcb\xac\xd7\xed\x43\x3e\x6e\x92\x9d\x4d\x47\x45\xc8\x95\x24\x24\x37\x98\x7a\x7c\xac\xcc\x8d\x87\x7d\x93\x0d\x4c\x68\x47\x45\x14\xb2\x10\xae\xa0\x98\xd4\xa8\xfc\xf3\xf2\x19\x55\x71\x85\xb3\x92\xcd\x60\xb0\x85\xcd\xec\xeb\x13\x42\xc9\x78\x47\x22\x9d\xe9\xc3\xca\xe3\xf4\xbe\x50\xa6\x61\x1d\x26\x6c\xf3\xa2\x40\xc1\x67\x0d\xc6\x3f\xed\xa2\x9f\xb1\x5f\x54\xf5\xc4\x1d\xe9\xc3\x11\x93\xee\x36\x48\xce\x54\x61\x19\xb1\xce\x5c\x75\xc1\x19\x29\xb8\xfa\x5b\x5d\x02\xaa\x5a\x3e\xba\xa3\xc1\xd0\x1b\x4c\x0b\xbd\x7a\xca\xfb\x40\x9e\x6b\x86\x64\x8e\xb2\xc5\x75\xc0\x92\xf7\x03\x05\x9c\x7b\x5f\xed\xa0\xab\x26\x9e\xa1\x2f\x64\x74\x01\x3f\x02\xd1\x2d\x51\x03\x03\xcd\x6e\xac\x76\x88\x1a\x84\x59\x5c\x9f\x7a\xed\x62\xc5\x26\x4c\x93\x41\xc2\x7b\x41\xeb\x1d\x50\xbc\x8c\x5c\x69\x2d\xf0\x6d\x1a\xd3\xeb\x55\xb1\xa8\x28\xa5\x41\xe3\xc1\xa9\x5e\x57\x01\xbd\x83\x2a\xef\x99\x75\x2a\xc4\xd5\xcb\x94\xc2\xc4\x93\x8a\xf9\x9b\x17\x51\x31\x62\xe6\x8c\x00\xdc\x26\xe0\x6e\x5a\xda\x2a\x49\x57\xba\x51\xd6\xe3\x4e\x95\xeb\xee\xfb\x4e\xff\x84\xd7\x46\xd2\x1b\x85\xc5\x74\x15\xe8\x61\xf5\xb8\xaf\x64\xa8\xbf\xaa\xa8\xc8\x5f\xc5\xbb\xe2\x3f\xaa\xb5\x7b\xaa\x00\x2e\x15\x39\x13\x3c\x4c\x86\x90\xf0\x49\x83\x68\x7d\x9f\x98\x98\x32\x90\x50\x49\xbe\xa2\x8d\xbe\xaf\x34\x18\xec\xed\x6e\x17\x59\xb4\xb8\x68\x05\x2c\x81\x68\xf7\x1d\xcd\x04\x78\xa7\x51\x64\x0b\xda\x21\x53\x9e\x74\xfb\xdb\xa5\x2a\xbe\xfd\x09\x66\x98\xa8\x6d\xb8\x18\x79\x94\x44\x61\x34\x24\x4b\x83\x6a\xf8\x70\xe7\x38\x50\xae\x46\x75\x06\xf2\xdc\xbe\x76\x68\x7a\x51\x1c\x1b\x18\x17\x39\x36\xa2\xc3\xe4\xfc\x9d\xde\xdd\xcf\xa9\x1e\x6e\xde\xb7\x60\xb3\xa2\x8b\x71\x52\xb7\x6a\x4f\xd6\xa4\x18\xa4\xdd\x65\xe2\x98\x53\x71\x5c\xd2\x31\xed\xba\x74\x4c\x8d\xca\x81\xcd\x42\xc0\xad\x11\xa9\x5d\x87\x33\x1d\x82\x86\x8d\xa4\x37\xc2\x05\xe7\xc0\x63\x21\xce\xe3\xd9\xca\x7f\x3c\x39\x29\xa2\xe6\xea\x81\x08\xdb\xde\x57\x21\xdc\xfb\xe5\x13\x6a\x91\xeb\xda\x38\x57\x44\xeb\xcb\x81\x22\x5a\x5f\x9e\x28\x9c\x8d\xc2\x82\x64\xfd\xc5\x8c\xcc\x6f\xc0\x47\x31\x3a\xa4\x2d\x40\xbf\x8b\x04\xec\x43\xbc\x3f\x2c\x25\xe8\x18\xb2\xc4\x2a\x30\x46\x42\xd7\x57\x26\xe2\xc7\x30\x0f\x45\x33\xdd\x77\x2d\xb8\xf8\x8b\xe2\xce\x9f\x34\x6d\xe0\x74\xe7\xd3\x1e\xdf\x06\x7b\x79\xe7\x58\xe4\x10\x3e\x5b\x51\x81\x13\x20\xee\xfa\xc5\x65\xd7\xae\x6a\x37\x4a\x7b\xab\xe8\x37\xb9\xb0\x5a\xcb\x41\x3a\x47\x8f\x53\x2a\x7a\xec\xa7\x79\x61\x16\x6d\x4b\x37\xcb\x03\x9f\x08\xbd\xe3\x2a\x6a\x79\x91\x66\x91\xc4\x1a\xce\xc6\xa5\xba\x26\x3e\xf9\xc8\x31\x35\x08\x43\xb3\x32\xa5\x9e\xf0\x09\x15\x58\x33\xaa\x06\x7b\xf9\xfd\x86\x85\xbb\x9d\xd8\x62\x25\xcd\x04\xb7\xe1\x1c\x6f\x5c\xa8\xcf\xae\xf5\x92\xa6\x34\x12\x97\xc2\x91\xe3\x27\x62\x0a\x7d\xa8\x64\x57\xdf\x28\x95\x1e\x6d\x5d\x3b\xfd\xc0\xdc\xbe\xf6\x4a\xdf\xb0\x16\x92\x73\x14\x3e\xe0\x8e\x5d\xc1\x30\x8d\xa3\x65\x9b\x4d\x79\xed\xae\x3f\x57\xe5\xa9\x0b\xda\x6c\xe8\x72\x30\x21\xb5\x5b\xa4\x53\x4a\xf9\xf6\x37\x4a\xef\xb6\x7b\x29\x50\xfa\xc1\x17\x1b\xba\x4c\x7b\xdb\xa3\x61\xd7\x1a\x5d\x1d\x3c\xac\xa2\xd9\xc3\x4d\xfc\xc1\x7c\x68\xb2\xa5\x96\xb7\xbb\x00\x14\x45\x3a\x9f\x0d\xbe\xd6\xa1\x89\xc3\x51\x6c\xc4\x3c\x8a\x79\xb3\x28\x50\x31\x6c\x89\xee\x14\x51\xc5\x7b\x4d\xc2\x8d\xdc\x1a\xe1\x15\x1a\x43\xe6\xab\x58\x0e\xf8\xa4\xb6\x61\xca\xf8\xc9\xa6\x3c\x9c\xfa\x54\xd9\xfa\xa5\xbd\x4e\xdb\x79\x6a\xef\xaf\x7c\x4e\xa8\x99\x0a\x1a\x5e\x0d\x97\x67\xe8\x69\x0b\xbe\x84\x46\x88\x6c\x38\xd5\x5e\xea\x44\x52\x5c\x12\xf6\x03\xd8\x2e\xa1\x86\x76\x3c\x50\xc3\xf5\x0a\x0a\x0e\x4e\x82\x7e\xa7\xd7\x41\xa6\x21\x89\x5c\xfa\x9b\x81\xe7\x22\x01\xcf\x30\xa1\x7d\x81\x3d\xfe\xeb\x54\x07\x11\x54\x31\xed\x70\xfc\x83\x65\xeb\xd3\xbf\xec\x41\x5c\xce\x86\xe6\x6a\x49\xf0\x71\xac\x6d\x77\x03\x35\x04\xdf\x45\x78\x2b\x7b\x5d\x15\x14\x88\x38\x5e\xa3\xce\x0e\x3d\x7f\x17\xff\xf0\x60\xa7\x05\x46\x06\xbe\xeb\xe4\xf4\xcd\xb0\xb0\x99\x02\x1e\x3c\x28\x7d\xa1\xe1\xbe\xd7\x93\x7c\xb7\x8d\x64\x01\xab\x15\x2e\x1b\x03\x9f\x61\x7f\xb8\xd2\xad\xe3\x06\x93\xc6\x24\x2d\x2c\xbb\x28\x0a\xfd\x1c\x61\x88\x32\x4e\x14\x68\xd3\xa6\x8e\x62\x1e\xeb\x44\x3a\xab\x86\x54\x4b\x61\x7e\xb9\xaa\xc7\x27\xc1\xcf\x7d\xc4\x88\x4a\x87\x43\x9b\xf4\x6d\x34\xb0\x18\x5b\x58\x55\xd9\x8b\x13\x0d\x72\xc8\x7b\xa1\x83\x7c\x5c\x69\xe3\x87\xf1\x6a\x8f\xc0\x35\xde\xa4\xc7\x2f\xa6\xd1\x80\x25\x5e\xf6\xcf\x3a\x49\x02\x6f\xa4\x7b\x41\x89\x28\x84\x26\xca\xd2\x96\xa2\xed\xd2\x88\x11\x0a\xaf\xe0\x14\xab\xf5\x84\x67\x0c\xa6\xf3\x34\x38\x44\x7c\xd2\xf1\xd1\xd7\x60\x94\x17\x26\x83\x31\x2f\xa6\x27\x23\xac\x9c\xb8\xed\xbc\xa8\xe5\x00\xde\x2c\x55\x27\x2d\xc1\x47\xfa\x7b\x45\xd4\x8d\x6d\x4b\x63\xe4\x02\x5f\xa8\xbc\xa0\xb6\x03\x93\xf4\xba\xe8\x8e\xb8\x4c\x50\xd1\xc3\xea\x88\xae\xbd\x6d\x7b\x68\x18\xa7\x8e\x57\xdc\xf8\xc6\x74\x57\x20\xb3\x5c\x10\xc7\xa4\x42\x74\xed\x8c\x4d\x5d\x0b\xf2\xba\xaa\x11\x89\x8b\xd2\xc4\xfb\x51\xf6\x00\xa3\xb8\x88\x86\x26\xab\xfe\x62\xff\xac\x97\x86\xae\x66\x15\x9f\x04\xdb\xd4\xf0\xfa\xb8\x37\xe8\x7c\x23\xf0\x9a\x03\x6f\x52\xa4\x8e\x59\xbc\xa9\xe3\x65\xca\x1f\x06\x6a\x4a\xb2\x01\x18\x8a\xe4\x8f\x8e\x95\x26\xfc\x74\xc7\x43\x1c\xce\x51\x0b\xd7\xe9\x25\x7c\xfe\xb3\xde\x17\xf6\x80\x2b\xc3\xdf\x51\xfc\x79\xf6\xac\x07\xa0\xfc\x46\xe0\x9a\xf9\x87\x4f\xd0\x4a\xb1\x76\x1a\x75\x3a\x64\xbd\xf7\xb1\x72\x01\x6f\x3f\x91\x9d\x9f\x57\x50\x14\x36\xd2\x65\x1d\x53\x5a\x1e\x51\xbf\x6b\xa1\xfa\x81\x5d\xf2\xc9\xb1\x4e\x13\xd6\x1c\x96\x36\x31\xe9\x20\xa2\xdd\x47\x55\x00\x77\xcb\x89\x22\x90\x2c\x64\x69\x52\x18\x84\xcd\x1c\x76\xd1\x1c\x63\xe6\x03\x3e\x26\xad\x5b\xdf\x2d\xeb\x65\x66\x65\x2b\xe0\x0c\x08\xa9\xbf\x81\xb6\x26\xc2\xdf\x35\xec\x8f\x82\xd4\xa1\x7b\xe7\x13\xa0\xfc\xd0\x4c\x78\x99\x62\x32\x3e\xa6\xb9\xe0\x04\x72\xaa\x45\x9f\xbf\x0b\xdd\x47\x86\x9d\xbb\xe5\xd0\x14\x45\x66\xc2\x82\x52\x30\xbc\xff\x23\xd4\x17\xd2\x5c\x61\x5c\x19\x13\xbf\xb0\x80\xc0\xd9\x03\xe3\xfa\x09\x05\x5c\xea\xd9\xde\x76\x7a\x53\x97\xe9\x93\xa0\xe3\x3e\xd3\xf1\x0a\xee\x5f\xfd\x2f\x50\xc5\xa0\x3d\xff\x57\x9e\x19\x7b\x15\xb9\x16\xe1\x64\x10\xea\x3f\x3d\xae\x06\x91\xcb\x22\xc5\x62\x7f\x69\xfb\x18\xcf\x0a\x11\xfb\x25\x7a\x9b\xa2\xbb\xa4\xf8\x05\x5b\xc6\x1e\x6e\xd2\xff\x85\x4e\xf5\xdc\x30\x61\xb8\x19\x7d\x7d\xfb\x58\xd9\x00\x81\x04\x4d\x9b\xe9\xe9\xff\x6c\xec\x89\xe4\xc3\x2c\x1d\xae\xc6\x36\xe1\xf5\x42\xba\x77\x1a\x2c\xea\x8d\x80\xc2\x34\x29\xa2\x64\x64\x62\x04\x52\xe2\x10\x4d\x9f\xf4\x16\xd1\xf2\xda\x97\x53\x40\x24\x7d\xfd\x8b\x47\x23\x9f\xd4\x44\x3b\xe6\xf6\xb5\xbb\xa3\x55\xa7\xf4\x82\xcd\xfe\xe5\xd2\x97\x56\xa0\x42\x81\xed\xe5\x46\xa3\x93\xd2\x28\x8e\xa3\xbc\xdf\xf2\x80\xae\x63\x4a\x1c\xe6\x58\x93\xfc\xad\x59\x5c\xcc\xcc\xb2\x42\xc4\x35\xf5\x67\x7d\x9a\x33\x1c\x25\x11\x64\xb7\xf6\x48\x99\xeb\x1c\x8d\x4c\x3e\x56\xab\x71\xb5\x91\x44\x3d\x9b\x14\x91\x89\x11\xf9\xb2\x4d\xa5\x4a\xa4\x3f\x54\x3e\x02\xc7\x14\xf6\x2c\x5d\xb6\x59\x9f\xfd\xff\xd7\xde\x24\x26\xc8\x9b\xe5\xd3\xbe\xe5\x31\x4c\xe3\x74\x31\xca\x0b\x24\x51\xdc\x54\x43\x12\x25\x1d\x36\x8f\xe2\xeb\x5b\x53\xbd\x09\x90\x5d\xb0\xac\xbc\x59\x7a\x86\x33\xaa\xaf\x4a\x67\x4d\xe8\x09\x5e\x49\x34\xec\x5b\xbb\xd4\x52\x22\x82\xb7\x4b\x8f\x41\xbf\xad\x0c\x46\x06\x43\x1b\x3b\x45\x2c\xac\x53\x77\x69\x7e\xaf\x5d\xc6\x62\x8a\x97\x7a\x5c\x85\x7a\xf9\x70\x04\x0c\x8d\xd4\x48\xab\x2b\x93\xe2\xa9\x9f\x74\x3b\x77\x7c\xaa\xa5\x5d\x77\xb8\xe4\x21\x1e\x3c\x13\x96\x22\x24\x73\x50\xbd\xa5\xcd\xf4\x9b\xae\xe6\x53\xad\x33\x92\xea\xf8\x8e\xc1\xf5\x40\x33\x52\xb1\x88\x21\x54\x3d\xc6\x01\x0d\xd6\x55\x58\x53\xa0\x86\x76\x54\x65\xb3\x5d\xdb\x8f\x92\xde\x16\x0f\xf0\x79\x04\x6c\x7c\xf1\x2e\xd2\x34\x60\x68\x09\xe0\xb9\x81\xff\x89\x2e\xe4\x7d\x86\x7b\xf1\xff\xf0\xcd\x89\xb9\x96\xd6\x30\x77\xef\xa4\xe8\xdb\x28\xdb\xec\x63\x9f\xab\xb4\x5a\xb1\x69\x03\x7d\x35\x77\x61\xb1\x68\x38\x1a\x9d\x82\x1f\x2b\xe9\xb4\x19\x5e\x74\x68\x28\xfe\xe6\x4f\xa9\xb8\x64\x85\x0a\x33\xa0\xc7\x23\x5d\xbb\x40\x1b\x29\x1f\xab\x37\x59\x45\x30\x8f\x4d\x24\x97\xd5\x8f\x61\xb1\x7b\xa8\x59\xef\x67\x27\x74\x39\xbf\xa1\x18\x65\xaf\x21\xd4\x76\xfb\x50\xf5\xe8\x90\xd5\x7c\x39\x50\xe6\xbb\xef\x29\xcd\x8a\x8d\x80\x07\x73\xd0\x49\x97\x86\x36\xd4\xc6\xb1\x17\x3c\xff\x0b\xdc\x2b\x6a\x99\x57\x6b\xd9\xcd\xce\xf9\x76\x37\x03\x9f\x4e\x0b\xc6\xdf\x56\x82\xf1\xb7\x1b\xf5\xc3\xcc\xb2\x4d\x46\x76\xc2\x23\xfb\x82\x36\xd9\xbb\x10\x78\x2f\x31\x16\x7c\x91\xda\x78\xf5\xd5\x52\x34\xf7\xac\xec\x6e\x1a\xe5\xf2\x7d\xc8\x6a\xb8\x92\xcb\x27\x4a\x10\x25\x34\x05\xd0\xa5\xcd\x6a\x4d\x8a\xc3\x37\x0a\x97\x6c\x86\x90\x0d\xa0\x0e\x86\x67\xf0\x89\xaa\x25\x2c\x8c\xa8\x0b\xfa\x18\x3d\x04\xa1\x0d\xd1\xf3\x95\x68\xd3\x43\x93\x4b\xdd\xef\xfc\x6e\xe9\x15\x17\xde\xe6\xd7\x2b\x8e\xff\xbe\x6d\x8b\x65\x03\xf9\xd2\x16\xe0\x57\x91\x60\x00\xc3\x0f\x72\xca\xbb\x9a\x08\x76\x86\xd2\x22\x8c\xea\xef\x05\x2a\xa3\x38\x5a\x8b\x4f\x77\xec\xf0\x02\x0d\x34\x5a\xb1\x12\xa2\x36\xcf\xc7\xb5\xaa\xcb\x27\xda\x71\x34\x88\x0a\xae\x1f\x3a\x75\xb6\xea\xe9\x88\x3a\x9b\x76\x0d\x83\x08\x4d\x75\xab\x98\x5c\xc7\x55\xb7\xe1\x16\xc1\x2b\xb0\x53\x9d\x55\x5a\x2d\xf6\x10\x45\x1f\xd5\xaa\x58\x5d\xbe\x2b\xef\xba\x90\xfc\x56\xa0\x68\x94\xc7\xd4\x9a\x77\x60\xf7\xee\x29\x45\x5e\x44\x8a\xe8\x32\x4c\x27\xfc\xf0\xf5\x09\x2d\x86\x41\x9a\x6c\xa7\x20\x0a\xd7\xff\x26\xcd\x08\xe7\xee\xbc\x63\x8e\x93\xc5\x23\x81\x7f\x61\x47\x79\xbd\xc1\xf3\xbf\x89\xac\x56\x24\x65\x29\xbc\x72\x52\x28\x3e\xec\xdf\x3a\x56\xda\x4d\x5f\xd6\x98\xa3\xe3\x4a\x03\x11\xba\xa2\x28\x66\xdd\x00\x91\x5a\x00\xb2\xd5\xcd\x60\xd6\x6f\x18\x57\x4f\xce\xc1\x6c\xaa\x65\x9a\x2f\xbe\xf4\x3a\xe4\x79\x2f\xa2\x77\xa4\x49\x8d\x7c\xfc\x91\x3e\x10\xc3\x2c\x2d\x6c\x88\xfd\xda\x35\x72\xd9\xbc\x48\x76\x8e\xf5\x12\x7f\xf3\xf3\x6d\x93\x85\xfd\xa8\xfa\x20\xc9\x06\x39\x0d\xe6\x57\x69\x24\xf1\x71\x93\x48\xd3\xc0\x9a\xa4\x98\x56\x0e\x53\xd8\x66\xd1\x8b\xbf\x5b\xea\x1a\x88\xaa\x28\xcc\x74\xdc\x1a\x31\x8a\x49\x00\xc3\xfb\x51\x7a\x54\xd7\xbf\xaa\x26\xd8\xda\x55\xba\x6d\xac\x1a\x9b\x50\x4f\xc4\x4b\xd3\x9a\xc3\xbf\xf4\xa9\x79\xba\xea\x09\xb5\x60\x3e\xa9\x4d\x80\x3d\xb3\xed\xae\x4d\xa2\xc5\x84\x7a\xe8\x18\x83\xc8\x56\x58\x6c\xb5\xf4\xf9\xdb\x0f\x68\x96\x22\x8a\x39\x5a\xfb\xa6\xfd\xb3\x73\x6d\xaf\x8f\x8a\x2c\xf2\xf5\xc0\x93\xfe\x5e\x6f\x68\x05\xed\x6d\x0f\x23\x3c\x66\x1a\x3f\x68\x9d\x20\x93\xe6\xe3\xda\xfb\x39\x30\xb7\xcf\xb9\xd9\x2f\x09\x85\x00\x55\x37\x70\xe7\xf8\xb8\xc1\xfc\x71\x8e\xe2\xaa\x61\x16\x39\xaf\x24\x54\x24\x50\x2e\xe5\xe3\xa6\x36\xe1\x42\x66\x92\xb0\x1f\xe5\x56\xf3\x06\x2e\x29\x30\xff\x25\xcd\xd4\xcb\x4c\x4e\xfd\xbe\x78\x15\xe5\x75\xbc\xc0\x5f\x57\x54\xbd\xad\xd0\xb6\xe5\xff\xd0\xad\x7e\x6c\x60\x88\x58\x36\x2a\xdf\xee\xcc\xf4\xa2\x34\xc7\x45\x3b\x10\x4d\x35\x86\xf8\x44\xe1\x61\xc2\x74\x30\x88\xf2\x3c\x4a\x93\x7c\xd3\x94\x37\x8f\xda\x8a\x4a\x0f\xea\xc7\x77\xb0\x9b\x02\xa7\xf6\x03\x44\x25\x62\x4c\xe1\xf9\xc0\xdb\x94\x9e\x4d\xd3\xd2\xb9\x10\x29\xe2\x02\x93\x6f\x03\x5f\x95\x3d\xab\x6d\x20\x6d\x1c\x3f\xda\x72\x78\xbd\xeb\x34\xaa\x70\xcb\xd0\x87\x02\x44\x8d\xd9\x9e\x38\x79\x17\x6b\x0f\xc6\xde\x1f\x2a\x42\x66\xab\xe3\x35\x0f\x6f\xd0\xc6\xc3\x72\x24\x84\x86\x60\xfd\x08\x04\x61\xfc\x61\x00\xea\x24\x71\xa6\x07\x81\x94\xea\x7d\xb5\xa1\x66\xd1\x22\xc3\x23\x91\x9b\x43\x04\x82\x8f\x1b\x94\x0c\xdb\x45\x3a\x0a\xfb\xe4\x1f\xa4\x05\x20\x05\x5a\x35\x51\x26\xf5\x1d\xee\x07\x81\x7f\xab\x49\x94\xe7\x26\xd9\x4a\x17\xe7\x34\x7c\x0f\xb8\xe6\x20\xdb\x9a\x3b\x6f\x94\x5d\xbb\x78\xed\xfd\x33\xd5\x74\xfc\xb2\xc2\x87\xbe\x4b\xa9\x08\xdb\x5c\x28\xf7\x16\xee\x01\x49\x2d\x55\xf5\x80\xd2\x2a\x64\xab\xfe\x0f\xf0\xbb\xb7\xe8\x42\x05\x6d\xe9\xeb\x25\xa0\xdc\xe0\x07\x37\x81\x4a\x87\x82\xe6\x06\x8c\x64\xed\x2d\x81\x5b\x7e\xbc\xe3\x05\xa1\x6f\x71\x40\xa0\xec\x45\x9f\xe7\x15\x92\x2d\x2c\xc4\xbe\x8e\x9e\x19\x76\x8b\x12\x43\x14\x8b\xe7\xd6\x8e\x86\x53\x15\x8f\x54\x57\x86\x4c\x86\xc3\x5b\xa7\x4d\x2b\xbd\x9e\xbf\xe1\x84\x1c\xb9\xd5\x8f\x34\xbf\x6a\x43\x47\x29\x2a\x5e\x41\xc9\x40\xa0\x55\xd5\xed\xa3\x82\x81\x8c\x19\x83\xe9\x4a\xa9\xdc\x4d\x2f\xae\x67\x79\xed\x9f\x9d\x6f\xef\x98\xdb\x54\x8d\x3d\xce\x28\x68\x74\x8b\x3b\x9d\xaf\xcc\x63\x03\x91\xb0\xdc\xcb\x85\xbc\xac\x85\x9b\x8f\xd5\x20\x57\x3b\xe7\xdb\x3d\x53\x98\x61\x1a\x25\xc5\x94\x66\xea\x9c\x50\xe1\xd4\x57\xb4\x12\xf5\x29\xd5\xd5\x5d\x8e\x52\xc7\xd5\xc3\xbc\x3a\xa2\x30\xa1\x47\x1a\x9c\x7b\xe7\x45\x0b\x14\xcb\x8d\xe4\x62\x2a\x2f\x53\x84\xbd\x81\x49\x7a\x24\xe3\xe5\xa5\xa1\x02\xc5\x91\x6a\x8c\x9a\xd1\x48\xd0\xc4\x89\x49\x95\x41\x65\x0c\x3c\xca\x59\x6e\x13\xbb\x8a\x33\x49\x73\x81\xc0\x79\xc5\x9b\x1f\x98\x43\x2b\x36\x86\xe6\x3b\x8b\x8b\x28\xf7\xcf\x4b\xaa\x92\x61\x7a\xcb\x69\x68\x0a\xe1\x79\x88\x86\xa6\x9f\xef\x97\x1c\xc8\x2c\x8c\x4d\x16\x2d\xb8\xbe\x99\x93\x20\xf7\x7b\xef\x69\xed\x59\x03\xc7\xaa\x2d\xd5\x60\x40\x4a\x72\xac\xd4\xb0\x8f\xea\x17\x5c\x8e\xf6\x99\x03\x3c\xa4\xe0\x46\xc0\x5c\x9f\xc0\xa3\x38\x2e\x51\xc4\xc7\x30\x85\x40\xc9\x42\x9f\x53\x25\x89\x7e\x9a\xa4\x99\xc4\xbc\x5c\xbc\xa7\x07\x24\x85\xfc\x7a\xdf\x7c\x2f\x6d\x84\x21\x3c\x7f\xaa\xbb\x12\x29\x40\x7a\x1a\x02\x58\x96\xbe\x77\xdf\x24\xbd\x3c\x1d\x58\x16\x99\x47\x60\xfe\x37\x74\xc9\x7c\xac\x14\xb4\x17\x7b\xc3\x96\x57\x44\xfb\x80\x6e\x86\x8f\x55\x0d\xfe\x45\x5b\xb0\x53\x3e\x07\x26\x00\xd0\xf1\xb1\xc3\xc3\xa7\x49\x98\x2e\xda\xc4\xaa\x2e\xf8\x45\x62\x97\x49\x70\xba\x7e\x74\x1d\x3c\xd8\x5e\x4e\xe3\x91\xbb\x2f\x59\xbc\x55\xc5\xf5\x54\x0d\xd0\xb6\x6b\x57\xdb\x0c\x87\x59\x3a\xcc\x22\x65\x0f\x89\x6b\x61\x0d\x32\x3e\x51\xb5\x50\x7b\x88\x04\x1e\xb7\xd2\x22\x83\x58\x05\xf8\x1b\xce\x81\x14\xb4\xfe\x1a\xe2\xde\x09\xd9\x7b\x04\xbb\x58\x28\xb0\x79\x9c\xa3\x86\x24\xd6\x77\xb6\x19\xd5\x61\x27\x52\xe2\x6f\x29\x89\xf9\xe5\xc8\xae\xd0\x9a\xc0\xe9\x22\x3a\x1d\x2f\x63\x98\xf0\xc9\x44\x2b\x7d\x25\x5e\x25\xed\x1f\xc1\x33\xd2\x32\x8c\x1f\xbf\x83\x95\x17\xb7\xb9\xb9\xe3\x09\x13\xef\x69\x08\xc6\x99\x46\x09\xe0\xcc\x44\x02\x95\x5f\xa3\x99\xb9\x76\x5e\x6f\xaa\x69\x8c\x2e\x91\xd8\xb1\x5e\x9f\x30\xfa\xf3\x6c\x3c\xc0\x70\x64\x0d\xf4\x43\x25\x89\xc2\xbe\x05\x21\xc2\x71\x68\xbd\x85\x4f\xad\x65\x3d\x3f\xdf\xb6\x55\x4a\x97\x18\x87\x4a\x9a\x30\xec\x15\x57\xdf\xc7\x54\xbc\x96\x0e\xb7\x78\x16\xe9\x59\xe5\x84\x70\x0f\x77\x8f\x3d\x68\xaa\x43\xaf\x51\xe4\x6d\xe9\xab\xd1\x1b\xb8\x53\x7a\x36\xcc\x14\x55\x1d\xdc\x95\xfa\x0f\xd4\x02\xd9\x5d\xbb\xda\xdd\xcc\x9a\xa5\xa2\x9f\x11\x33\xbc\xfa\x59\x91\x8e\x6b\x79\x19\xb9\x5a\xd1\x72\xf7\x0b\x7b\xdb\xf9\xb2\xcd\x7a\x71\xba\x9c\x2f\x7d\xb4\xda\xc7\xe3\x8e\x01\xb6\x6c\xb3\xdc\xce\x78\x2b\x58\xc8\x73\xae\x9d\x56\x56\xfc\x6f\x04\x4a\xbf\xef\x92\x4a\xd9\xdf\x70\x93\x11\xc9\xb5\xb4\xfc\x38\xb0\xd0\x65\x9d\x9b\x4a\xa2\x8f\xc9\xc8\xd8\x70\x4f\xab\x40\x30\x8e\x86\xe8\xae\x31\xb7\x2d\x50\x42\x66\xe7\x6a\xe2\xee\x0e\x80\x60\x32\x53\xf4\x53\x76\x9a\x11\x6e\x7a\x4b\x31\xdb\xb7\xf1\x27\xab\x30\xff\xa7\x29\xf4\xc3\x5e\xc5\x8a\x00\xd2\x97\xab\xe6\x98\x30\xcf\xe8\x3e\x10\x13\x3e\x8e\x30\x86\xbd\xd6\xd0\x47\x46\x6e\x7a\x57\x61\x58\xd6\x10\x28\xe3\xaf\xee\x20\xa6\x74\xf6\xb6\x55\xd8\x86\x26\xff\xa6\x71\xb5\xfa\xd3\x40\xfb\xbd\xa7\x3a\x9e\xec\xf7\x1d\x4e\xb3\x75\x43\x0f\xe9\xc3\x29\xbd\x79\x6f\x43\xa0\x8e\x34\xf9\x26\x75\x94\xc4\xc6\x95\xc6\x1c\x36\xee\xf3\xb4\x35\xa0\xd2\xb5\x81\x8c\x90\x31\x16\x1f\x52\x3b\xca\x45\x5a\xbb\x1d\x01\x0b\xac\x72\x87\x57\xdc\x29\x70\xc2\xcb\x5c\x7a\x64\x69\xf4\x52\xf9\x94\xfc\xff\xc6\x5e\x73\xef\xcb\xcf\x50\xbb\x82\x5b\xab\xd4\xeb\x16\x0f\x1e\x45\xe9\x36\xd9\xe6\xea\x9b\xb1\xf3\x31\x35\x4e\xda\xc1\xd5\x35\x62\x1b\x9c\x1a\x7b\xf3\x1d\x44\xff\xf8\xf1\xfb\x54\x9f\x90\xa2\x98\x47\x95\xde\xa9\x81\x4a\xf6\xbd\xd0\x5e\x88\x23\xea\x86\x53\x35\x06\x39\xe9\xc9\x52\x69\xf8\xdc\x55\x99\xc8\x45\x55\x61\xa3\x14\x75\xab\x32\x05\xa7\x55\xdb\x19\x84\x57\xef\x01\xec\xb9\x5b\x98\xfc\xa2\x64\x53\x53\x73\xc4\xe6\x7f\x9c\xb6\x71\xa4\x19\x27\xe8\x1e\xb9\xe2\x18\x78\x4e\xd8\x9f\x34\x81\x48\x4d\x56\xe5\xb0\x53\x13\xc0\x76\xc5\xf6\x83\x18\xa3\x90\x62\x7c\xbc\x55\x40\xd9\x65\x5a\xe1\x47\xb1\x73\xf0\x31\xa5\x40\x88\x60\x21\x03\xc1\xc7\xca\x97\xb2\x97\x26\xa3\x22\x6f\x51\x59\xcf\xb1\x57\x9e\x7b\xce\xb1\x57\xd4\xb3\x8a\xed\x4a\xae\x8c\x3a\x8f\xe9\x92\xf1\x31\xd5\x36\xcf\x8b\x74\x38\xb4\xbd\x19\xdf\x15\xc0\x10\x73\xec\xac\xfd\xde\x89\x8f\xc6\x14\x16\x9a\x63\x13\x1c\xae\x8f\x74\x5b\x18\xd8\x43\x51\x68\x78\xf2\xbb\x76\xa0\x0b\xa5\x5f\x2e\xb7\xb9\x0b\x59\xf9\x64\x6b\xea\xc0\x9e\x59\x4e\xc2\x78\x45\xe4\x93\x26\xf0\x96\x59\xcc\x2c\x0a\x7a\xcc\x98\x40\x08\x84\xb5\xef\x3e\x26\x03\xe6\xc9\x5f\xb8\xc6\x79\x3a\xb4\x09\xbd\x82\x6a\xb0\xa1\x4b\xb6\x85\x40\x66\xe2\x51\xe6\x81\x34\xdb\x3a\x4a\xa1\xeb\x8c\x37\xc4\x2c\xcc\x92\xcd\x67\x7c\x43\xe6\x1f\x3e\xd9\x99\xac\xfb\xec\x99\x65\x62\xd3\x45\xce\x9d\xc4\xb2\xc3\x87\x15\x0f\xd6\x9b\x1e\xee\x9c\x6f\x7f\xfa\x97\xb1\x3a\xbb\x62\x82\x5b\xf3\x2f\x29\xb5\x89\x49\x1b\xaa\x06\xc0\x56\x98\x8d\x06\x5d\x87\x8a\x46\x7b\xf7\x0d\xad\x82\xf4\x86\xeb\xf9\x2c\x64\xf6\x8b\x23\x9b\x84\xab\x28\x8d\x48\xd8\xaf\xd3\x81\xc7\x54\x80\xbe\x64\x9f\xa1\x65\x13\x4f\x1b\xae\x41\x4a\xed\xe5\x0b\x5a\xd5\x55\xcc\x7f\x30\x8e\xb1\x1c\x6f\x19\x57\x4b\x04\xe7\xee\x74\x7b\xf8\x9b\x2d\x48\xf7\xb9\x69\x8e\x69\x0c\xc1\xba\xd7\x34\xe4\xe6\xc9\x31\x0d\x38\x00\xf2\x4e\x07\xbe\xe4\xf5\xbd\xd2\x17\xd6\x78\x6f\x47\x1e\x7b\x83\x26\x14\x26\xe8\xf5\x52\xb3\xf4\x58\x00\x01\x61\x1d\x57\x63\xa4\x67\x4b\x1b\xc8\x44\x07\x1f\x61\xe1\xd6\x8e\x6f\xe2\xe5\x55\x62\x53\x44\xcb\x16\x33\x0c\xf9\x30\xb4\x0b\xf8\x78\x3c\xa1\x82\x51\x8c\xf2\x19\x7f\xc3\xe7\x95\xc9\x35\xb7\x7d\xc5\xb0\xdb\x2b\xdc\xc3\x73\x03\x6b\xdb\x36\x55\x21\x1c\x2d\xa1\x96\x2a\x7a\xfa\x6a\x57\x3d\xa2\x88\x74\x03\x9b\x2d\xe5\x66\x60\xd9\x10\x0c\x0b\xdb\x71\x05\x44\x39\xee\xe8\x6c\xbd\x28\x37\x59\x66\x58\x51\x8f\x35\x08\x95\x94\xd5\xd6\x8e\x0f\x62\x6f\x6b\xb1\xd3\x8b\x0a\x0d\x94\xa4\xd9\xc0\xc4\x84\x80\x41\xde\x7d\x46\xa3\x1f\x50\x56\xe6\x63\xac\xcd\xfc\x57\xc1\xb3\x4a\x92\xab\x9f\xe6\xc3\xa8\x30\x04\x81\xf1\x29\x40\x0b\x5d\x22\x3e\x19\x37\xa8\x15\x99\xa2\x1f\xdb\x22\x0a\x27\xc0\xbd\xe7\x54\x30\x78\x4e\x2d\x8c\x99\x89\x87\x7d\x18\x89\xb3\x30\x2f\xc6\x8c\x56\xe9\x75\x5e\x5f\xbe\x0b\xff\x9e\xda\x2b\xff\x5e\xfb\x4a\xff\x67\x45\x7f\x75\xeb\x94\xf7\x18\x61\x19\x24\x27\x60\xb5\x67\xd6\x0b\x4e\x54\xbf\x83\x02\xc4\x69\x5a\x70\x71\xb3\xdf\x56\x26\x95\x3f\xd1\xf1\x9b\xed\x75\x14\x4e\x84\x85\x4b\x97\x82\x25\xe1\x82\x13\x16\x8d\xcd\xca\x94\x07\x51\xa1\x7b\x83\x00\xfa\xa9\x8e\xea\x72\x6d\x1e\x2b\x1b\x3e\x1b\xa6\x49\x0f\x43\x1a\x17\xf0\x01\x22\x30\x3e\x69\x04\x48\xf7\x4d\x36\xa0\xad\xdc\x99\x36\x90\x9a\xc1\xf3\x55\x88\xea\xda\x1c\x0f\x9b\x34\xad\x63\xd3\xd5\xa8\xd2\x4b\xaa\xad\xf2\x30\x50\x0d\x8a\xba\xd6\xc3\xce\xf9\x76\x1e\xc5\x51\x88\xa0\x72\xef\x04\xdd\x59\x1c\x2a\xfd\xb6\x1b\xf6\x4d\x4e\x39\xf6\xdc\x3e\xbe\xe9\xf7\x02\x0f\x1b\x7a\x6f\xa2\xb4\xf0\x22\x69\x18\x21\xca\x15\x60\x9d\xa2\xee\x5f\xac\x45\x33\x7b\x66\xdb\xd5\x2c\xa3\x3d\xce\x73\xb8\x8e\xe0\xfa\x85\x8b\xb3\xfe\xe6\xab\x2c\x7e\x34\x9c\xf6\xcc\xff\xeb\xb4\x52\xb1\x89\x02\x8d\x0c\x56\x25\x0a\x26\x14\xb8\x15\x8e\x25\xb6\x64\x90\x83\xed\x7c\x6b\x07\x8b\x1b\xf7\xdd\x4a\xb7\x72\xfc\x2e\xdc\x93\xb1\x3c\xb0\x7d\xad\x88\xb8\x28\x1c\x08\x4b\x36\xe2\x5a\x36\x8e\x95\x0d\xe3\x65\x44\xca\x82\x74\xa1\x18\x1a\x71\x24\x36\x3a\x11\x22\xa1\xb9\x2e\x65\xd0\x86\x5d\xa9\x17\xe5\xc5\x28\xeb\x72\x6a\x8f\x31\xc9\x06\x63\x7c\x52\x7b\xc9\xfb\x5e\x10\xee\x30\xbd\x0d\xa4\x54\x67\x55\x7a\x75\xd6\x5b\xb0\xa6\x71\x9c\xae\x6c\x52\xf5\x20\x58\xcc\xa0\x44\x77\x5b\x95\xeb\xce\x6b\x5c\x1e\xe2\x5a\x88\x17\x6c\xec\x78\x54\xf4\x96\xb1\x0f\xb8\xf2\x61\x9a\x15\xf9\xd6\xc9\x1a\xb4\x17\xf8\x86\xa4\x0c\x3a\x5e\x8f\x20\x0e\x10\xa3\x27\xba\x53\x04\xd0\xb7\xb4\x7d\xc4\xd1\x40\xa1\x33\x5f\x0b\xbc\x72\xf8\xb9\xc0\xc3\x90\x3e\xbc\xae\x98\x20\x64\xcf\x6b\xf3\x02\xfc\x5e\x54\x78\x37\xc1\x32\x18\xb3\xfe\xad\xd2\xb3\x5d\x8f\xe3\xeb\xb1\xcd\x6e\x19\x3b\x18\xc8\x68\x10\x41\xa4\x0f\x95\xe4\x2f\x05\x4a\x3b\xed\x4b\x8a\xa4\xc2\x8e\x10\xa0\x30\xf1\xd7\x07\x3e\x31\xb8\x34\xd1\x20\xa4\x0b\x16\xd4\x18\x3d\x23\xb9\x20\x7a\x14\xce\x30\xa7\x7a\x60\xa2\x20\xfb\x84\xea\x82\x67\x03\x9b\xb4\xbc\x6e\xdb\x25\x2d\x78\xee\x0d\x2d\xf2\x81\xc9\xfb\x0e\x5b\x84\xdc\x10\xae\xd0\x48\xda\xae\x2b\xc0\xcf\x45\x17\xea\x0d\x4d\xb8\x64\x16\x29\x77\x5e\x63\xec\x2e\xfb\x1d\xaa\xb5\xf0\x96\xf2\x53\x62\xd9\x7f\xc4\xed\xaf\x78\x00\x8d\x49\x4c\xac\x9a\xd2\x37\x55\x53\xfa\x66\xad\xb5\xb0\x7f\x76\xbe\x3d\x20\x05\x38\xcf\x90\xa0\xdf\x13\xb6\x44\x9d\x3e\xd3\xcd\x46\x79\x4e\xa4\x0a\xc5\x17\xd0\x1a\xe1\x6a\xe7\x29\xd2\x98\xe8\x0a\xa8\x3d\xfe\x10\xcf\x0b\x01\xd9\x4d\x4e\x51\xf9\x4c\x97\xbd\x7f\xa8\x92\xf8\x74\x25\xc9\x67\x7c\x3d\x96\x67\x3b\x1e\xf9\x34\xb1\x9b\x26\xfc\x83\xb1\x9c\xbe\x85\x60\x5f\xcc\x84\x9d\xa8\xd5\xbe\x9f\x56\x92\x21\xf7\xd4\x30\xf9\x51\x40\xa1\xbc\xf4\x9f\xaa\xbc\x56\xe1\xe0\xa4\xb8\x70\x04\xa9\x37\x08\x9a\x20\x05\x88\x03\x7c\xeb\x73\x73\x4e\xdd\xa9\x0a\x1b\x91\xfc\x4e\xf3\x42\x47\x1f\xff\xe7\x1f\x27\x42\x2c\x72\x96\xb5\x52\xb1\xdf\xd8\x6c\x03\xf1\xc6\x5a\xd9\xda\xf7\x02\xaf\x6d\x0c\xb6\x74\x1a\xb2\xd5\x88\x75\x39\xab\x33\x8c\x79\x4d\x9b\x70\xfe\xa3\x8e\xef\xfd\x3d\x3a\x56\x7d\x89\x47\xc6\x4a\xe7\x76\xfb\xd8\x63\x1d\x9e\x20\x79\x2e\x51\xb2\x6e\xfd\x92\xbc\x85\xa3\x58\x25\x1d\x36\xf0\xf3\x9f\xe5\x5a\xe8\x46\x06\xf0\x60\x25\xbc\x4e\x55\x52\x7c\xed\xab\x41\x95\x1e\x72\x37\xa2\x9c\xa0\x7b\x2d\xa4\xd5\xc2\xe8\xb4\x38\xde\x0a\x94\x3a\xfc\x5b\x6e\x65\x34\x79\x1e\xe5\x05\x85\x65\x78\x31\x33\x68\xa0\x00\xba\x74\x16\xf8\x76\xad\xe6\x81\x6c\xf8\x4a\xf9\x0f\x3f\x22\x9f\x2b\x32\x93\xe4\x26\xd4\xe4\x61\x7c\xd7\xdb\x18\x70\x7c\xd2\xa4\x14\x4a\xc6\xab\x09\xb8\x12\xce\xcc\x6d\xd7\x2e\x57\xbd\xf8\xa8\x02\x52\x9e\x46\x61\x5f\x00\xdb\x5c\x4b\xd5\x30\xd7\x6f\xa9\xbd\x3e\x4f\xc3\xc8\x16\xa8\x95\x0a\x5c\x8c\xc6\x98\x83\x35\x39\x7a\xe3\x45\x25\x45\xf7\x86\x06\x9f\x1f\x53\x05\xfa\xa2\x3f\xca\xf2\x9e\x59\x9d\xf1\x51\xe1\x0f\xb4\xde\xf6\x14\xca\x2c\x08\xa9\xcf\x2b\x33\xe2\xbb\xaa\x19\xfc\xa0\x16\xfd\xfc\x62\x7b\x41\xc0\x28\xe2\x8c\x4c\xdf\x83\xb5\xed\xee\x84\x59\x87\x33\x53\xc9\xd2\x15\xc0\xf3\x9e\xe7\xb4\x96\xc9\xfa\x3c\xd2\x02\x65\x7b\x7e\xae\xfc\x98\xab\x20\xe2\xb1\xf7\xb8\x3c\x4e\x2f\x09\xa1\xee\x55\x45\x69\xbf\xaa\x98\xaf\xa3\x24\x1f\x85\xa1\xcd\x73\x98\x40\x56\xf7\x21\xe8\x7f\xad\x72\xe6\xe5\x30\x72\xaa\xcb\xc0\xe7\x45\x32\x11\x9d\xa2\x3c\xa9\xb4\xa7\x6c\x3e\x1a\xd8\xde\x94\x77\x20\x44\xd8\x87\x1b\xba\xab\x9c\x68\x4f\x28\x66\x6d\x94\xd8\x85\x05\x1b\x16\x0c\x5f\x95\x4b\x38\x16\x78\x0b\xcb\x63\x4d\xbc\x0b\xb2\x42\x1d\xc4\x51\x02\xf8\x96\x6e\xd3\x4b\x66\xdd\x40\x4c\x1e\x66\x76\x20\x7e\xe7\x58\x4f\xae\x2b\x36\xed\xf5\x5a\x78\x73\xa0\x0a\x83\x6d\x22\xa2\xa2\x42\xa9\xe0\xa0\x4a\xb8\xbe\xcf\x28\x94\xe3\x60\x68\x0b\x32\xbb\x01\xc8\x40\x82\x30\xaf\xfe\xc4\xd1\x19\xdb\xd1\x04\x0a\xa5\x7b\x41\x13\x24\x4f\x29\x75\xdd\xa1\x49\x7a\xa6\xa5\xc1\x79\xa7\x03\x15\xc8\x51\x1d\x97\xff\x74\x29\x49\x57\x58\xc8\x81\x8d\x14\x31\x77\x01\x1d\x9d\x51\x76\xd8\x5b\xc7\xbe\xb2\x7d\x19\x69\x12\x06\xd8\xb7\x5d\x87\x29\x4c\x47\x49\x6e\xbd\xf8\x18\xea\x3a\xd8\x63\xf9\x58\x01\x2c\x86\x99\xed\x45\xbc\x7a\x54\x2f\x6f\x42\x30\x57\x44\x76\x7d\x03\xa1\x4f\x3a\x74\x2d\xaf\xcc\x16\xe8\xc6\xa3\x86\x4e\xa5\xbd\x5e\x4b\x89\x1a\xfe\x86\xf2\x87\xff\x8d\x1a\xc9\x75\xd7\xae\x2a\x3a\x28\x5a\x1a\x73\xa7\xaa\x63\x97\x26\xf8\x61\xbd\x8c\xb1\x1b\x4e\xe0\xc7\x4b\x47\xde\x9c\xb8\x86\x25\x9b\x6f\xaf\xc6\x96\xf0\xc5\x94\x9a\x85\x46\x77\x17\xff\x96\xde\xb4\x83\x19\x39\x92\xda\xbd\x40\x31\xd9\xaf\xd2\xb6\x27\x6a\x2c\x9e\x34\x72\x99\x8a\xc7\x00\xae\xdf\xd3\x44\x9f\x35\xe4\x6a\x82\x8d\xa2\xab\x44\x89\xfa\x7b\x78\xbc\x40\xa2\x6d\x82\xa0\x21\x2a\xce\x1f\x72\x55\x04\x3d\x0f\x88\xc0\x63\xcd\xba\xd2\xc0\x21\xd9\xdd\x2e\x46\x59\x32\x8c\x96\x58\x91\x95\xc3\xeb\x40\x99\x9d\x23\x07\x93\x40\xb9\x49\x68\x69\x21\x36\x68\x68\x63\x3f\x3a\xa7\x70\xe1\xe7\x9c\xfa\x46\x37\x2d\xfa\xdb\xbd\x2c\xe5\xd6\xb1\x17\x09\xd8\x34\x56\x5a\xf9\x9b\xc7\xaa\xf8\x0e\xe1\x0c\x84\xc7\x1b\xc6\x1e\xee\xb4\x19\x2e\xa5\x88\x8b\x78\xff\xc3\x16\x70\x57\xab\xc6\x01\xd5\x86\x0a\xee\x27\x68\x0b\x47\xc8\x76\x9d\xa2\x17\xba\xa3\x5f\xfb\xb8\x6a\x09\x3c\x44\x2c\x81\xc8\x69\xc3\x58\x59\xb2\xde\x29\x15\x5c\xc7\x77\xa3\x47\xc9\x4a\x54\x78\xb0\xba\xa6\x82\x08\x21\x4e\x15\x8d\x46\xdd\x51\xd6\x9d\xf2\x01\xff\x49\x11\x48\x53\x2a\xc9\x47\x1d\x44\xb5\x3b\x8a\xbb\xda\x47\xe4\x15\x35\xac\x5e\x51\x54\x5f\xd6\xb7\xee\x51\x32\x2c\x2a\x21\xf4\x78\x44\x57\x44\xea\x07\x36\x33\xd3\x8a\x99\x79\xbf\xac\xa3\x17\x90\xaf\x6e\x25\x42\x8d\xc8\xc7\xd4\x91\x46\x26\xee\xda\xac\x90\xa5\x49\x70\xab\xf4\xd5\x82\x68\x55\x50\xf1\x7d\x9f\xc6\xaf\xe2\xfb\xbe\xcf\x0d\x0e\x57\x07\x75\x86\xb6\x6b\xca\xcf\xf0\x64\x63\x6f\xb3\x4b\x10\x7e\xda\x69\x1c\xaa\xc6\xd5\x22\xaf\xd3\x50\x17\x60\xec\x93\x8a\x6c\x12\x75\x47\x85\x65\x99\x40\x2c\x1f\xb7\x03\xc5\xaf\xf8\x50\xe9\x07\x5f\x6a\xa2\x77\xa6\x0b\x0b\x36\xa3\xed\xa6\x89\x98\x25\x4f\x37\xb1\x2b\xa4\x80\x2f\xa2\xc6\x74\xcf\xce\x42\xdd\xc1\x3d\x36\x77\xb4\xe5\x41\x35\xf6\xa4\x14\xf3\x51\x8a\xc9\xa3\x24\x0d\x39\x5d\x69\x74\x76\x69\x88\xcb\x32\x1b\x46\x43\x91\x4f\xe2\x92\xcb\x64\xfd\xa5\x3e\x8f\xdb\xf1\x28\x5c\x5a\xc5\xba\xe8\x84\x95\x77\xed\x92\xe3\x1a\x80\x6f\xdf\x0b\xce\x58\x91\x10\x9d\xfb\x67\x27\x22\x32\x09\xd5\x1a\x2a\x07\x4b\x51\xb2\x38\x8c\x12\xde\x5a\x45\x1e\x5e\xa9\xbf\x1e\x6b\xaa\xc9\x64\x96\xec\xa1\xb9\x0a\x2e\xe6\xa7\x5e\xb6\xe6\x46\xa3\xc5\xe2\x48\x9c\x1f\x7d\x90\x74\xba\x54\x98\xd0\xd3\x4d\x42\x96\xf0\xf7\xa4\xfa\x97\x33\x1d\xf9\x9c\xd4\x37\x1f\xa2\xed\x28\x19\x6d\xdd\x3d\xac\x9b\x1e\x02\x34\xc3\xed\xd9\xd5\x3a\x22\x7b\xb6\xef\xc5\x2f\xa7\x51\x08\xad\x24\x8c\xbd\x2d\x1d\x25\xca\xf0\xa1\xca\xff\xf9\x7d\xb3\x99\xa3\x62\xe7\x0d\x6d\x3a\x8c\x6d\xbe\x89\x6e\x0e\x85\x8e\xd7\xb5\x36\xd3\xb0\xd4\xaa\x55\xaf\x03\x3a\xee\xe2\xb2\xe7\x9e\xe3\xfa\xe4\xf1\x89\x09\xb0\x7e\x93\xd8\x3f\xab\x25\xa6\xf6\xcf\x4e\xe0\x2d\xa5\xe9\xe8\xe5\x1e\x5e\x0d\x7c\x6c\x38\x4a\xa2\x85\x28\xcb\x0b\x12\x30\xc4\x6f\xdd\xc4\xc6\xe5\x44\x65\x5d\x50\xff\x96\xf2\x07\x10\x81\xfb\xde\xb4\x12\xda\xfd\x6d\x55\x92\xbd\x4d\xef\x9d\x8f\xb1\x68\x8b\x70\x44\x7d\xdd\x78\xbe\x3d\x1c\x75\xe3\x28\x9c\x52\x33\x58\xb5\xf3\x3e\x54\x1a\xb4\x3f\x0e\x9e\x51\x9d\xc9\x2a\x27\x22\xe0\x28\xf0\x0e\x58\x2d\xd8\xfd\x8f\x4f\x6a\x3f\xb7\xfb\x85\xbd\xfc\x73\xaa\xa4\x3f\xa3\x4a\x76\x33\x63\xaf\x39\x57\x0d\x4d\xe8\x79\xaf\xa1\x1f\xec\xb8\xba\x3e\x1e\xe1\x8c\x80\x26\xfb\x4f\x3d\x85\xad\x4e\xda\xd4\x1e\xd9\x75\xb9\x29\x20\xca\xd3\x28\x56\xb2\x38\x67\x95\x2c\xce\x59\xf5\xb4\xe1\x3c\x13\x85\x39\xb4\x9d\x30\x8e\x3e\x2c\x3d\x97\xf6\xbc\xa6\x12\x4e\x77\x7c\x21\xf5\x64\x49\x25\x01\x67\xcc\xb6\x67\x96\xf3\xe2\x9b\x13\xd8\xad\xf5\xcf\xe8\x17\xdb\x51\xd2\x8b\x42\xb1\x9b\xc4\xbe\xcf\xc6\xca\x7c\xd2\xd4\xa2\x1d\x1a\xa5\x52\x83\x3e\xc6\x61\x2d\x07\x71\x58\xd1\x81\x49\x18\x16\xae\x2f\x6c\x15\x87\x72\x87\x88\x76\xb5\xb4\x87\xdc\xce\x79\x67\x64\x57\xb7\xcf\x68\x77\x4d\x0e\x69\x35\x24\x0b\xff\x1b\x7d\x16\xdd\xc0\xcb\x2a\xba\xba\xa4\x08\x61\xc3\x2c\x5d\x88\x42\xc8\x6a\xa9\x2e\x3f\x3d\x45\x91\x25\x7a\x6a\x12\x21\x5c\x54\xa3\xbd\xfa\x66\x11\xd0\x52\xbd\x3e\xbc\x38\xfe\x0f\xdd\xf7\x3b\xab\x7a\x20\xbd\xf4\x25\x9b\x4c\x79\x8b\x90\xa9\x8e\xf7\xd5\xba\x47\xac\x45\x06\x23\xfa\xb6\x67\x9c\x0e\x05\x99\x85\x7b\x3b\x4f\x51\x2c\x1f\x7b\x5d\x37\xf2\xa3\x76\xf8\x1d\x6c\x69\x57\x15\x5d\xca\x53\x3b\x17\x98\xb5\xd3\x72\x16\xb3\xa0\x76\xf1\x71\x03\xfc\xb0\xdd\xb5\xa1\x19\xe5\x76\x7a\x42\x1b\xca\xe7\x8f\x33\x63\x6f\xae\x7e\xb7\x74\x78\xa9\xff\xe6\xd9\x8e\xaf\x6f\x2e\x58\x92\x9d\x63\x69\x78\xc4\x68\x90\xea\x70\x85\x19\x57\xde\x3b\xa9\x65\x66\x6d\x36\xb4\x55\x06\x3a\xb5\xbe\x84\xc0\x49\x3e\x46\x97\xd0\xf9\x7d\xad\xa6\x97\x8e\x7c\x3f\x16\xa1\xfa\x37\xb0\xca\xf3\x49\x13\x1b\x26\x1f\x75\x07\x26\x8b\x18\x3e\xd7\x24\x76\xdf\x40\x06\x88\xa3\x25\x1b\xaf\x4e\xfb\x9a\x0a\x57\xa4\x5d\xa2\xbd\x47\x24\x05\x36\xe8\xb8\xf9\xd5\xc6\x50\xbf\x67\x07\xc4\x7f\xc4\x66\x88\x21\x0f\xc0\x07\x1f\xd7\x8a\x1a\x7b\x66\xdb\xb9\x59\x9d\x56\xfa\x3b\x5f\x29\x6b\x2a\xaa\x18\x2f\xc7\x4b\x4f\xa7\xba\xa7\x5a\x80\x26\xfc\xe2\x28\xca\xe1\x03\x4b\xfc\x38\xd9\x38\xe9\x7b\x10\xc1\x5f\x57\x7e\x70\xdc\x08\x93\x1b\x54\xc8\xfc\x0d\x5c\x29\x44\x1c\x85\x05\x93\xff\x2c\x78\x7c\xc2\x24\x81\xf5\xd5\xb5\x5e\x8e\x6c\x32\xd5\x87\x90\x04\xd4\x8d\xbd\x49\xbb\xde\x26\x3d\x95\x9d\xde\x57\xd9\xe9\x7d\x97\xcb\x2c\x98\xbc\x20\x80\x31\xf6\xea\x13\xf4\xad\xa8\x34\x7d\xbc\xe3\x33\x16\xae\x2d\x0a\x1a\x85\x6e\x18\xd7\x74\x5f\x19\x87\xd6\x2d\xaf\xe9\x3a\xba\x71\x9a\xb2\x8f\x20\xe3\x8d\x94\x48\xd1\xf9\xda\xfa\x78\xf0\x60\xbb\x67\x43\x41\x16\x63\x2f\x3f\xa7\x60\xe2\x75\xd3\xf7\x03\xd5\xf0\x4a\xab\xc9\xea\xd2\xea\x73\x34\x69\x04\x00\xe8\x27\x58\x91\xae\xd8\xcc\xa9\x09\x09\xd5\x50\x53\x10\x9b\x04\x4a\xa2\x24\x27\x4e\xac\x52\x9a\x3e\x1f\xe8\x19\xe5\x9e\x67\x9f\xf9\xb0\xa2\xb3\xf3\xa3\x89\xce\x3e\xdb\x23\x61\x98\x61\xe7\x47\x52\xdf\xea\xf8\xe4\x6a\x25\x2a\xfa\x51\x32\xa3\x40\x94\xef\x28\x79\x6a\x50\xc3\x59\x2c\x07\xeb\x30\xf6\x0c\xc9\x81\x50\xe6\xbd\xf7\xd1\x32\x4e\x8b\x26\x4a\x48\xc0\x16\xa3\xaf\xa5\x58\xba\x2f\x97\xaa\x64\xff\x1a\x7f\x21\x6e\xe4\x9c\x96\xd3\xbc\xd0\x48\x78\xee\x2d\xdb\xac\x88\x72\x87\x60\x41\x5e\xb4\x65\xec\xe1\xc3\xf0\x5b\x50\x7e\x3d\x12\x0a\x7e\x2f\xf8\x98\x1a\xf6\x61\x9a\xf5\x96\xac\x1d\xf2\x7b\xda\xed\x7a\xf3\x9e\xcf\x79\x5c\x41\x5e\x56\x63\x46\x3a\x88\xb8\xec\x44\x3f\xab\x09\x27\xbe\x6c\xbc\x5e\x11\x5b\xc9\x72\x7f\x42\x8c\x65\xe5\x7d\x2e\xda\x41\x3e\x55\xa5\x90\xd2\x78\x51\x5c\x65\x70\x17\xa4\x0f\xe0\x63\xc5\x5e\x94\x17\x59\x14\x16\xd3\x13\xb6\x0b\xd5\x9a\x22\xe6\x44\x9e\x15\xf4\x07\x0a\xd0\xf2\x35\xed\x6c\x69\xb2\x5e\x3e\x8d\xfc\x12\x2b\xd4\xb7\xe9\x53\x80\xf7\x1e\xa6\x5f\xe6\x63\xf4\x3d\xf9\x8f\xd4\xd6\x9d\xd9\xee\x28\x8a\xc1\xa3\xa9\x02\x06\xac\xba\x30\x2a\xe7\x63\xb7\xdb\x45\x83\x61\x1c\x09\xbd\x1a\xef\xea\x9e\x32\xca\x3a\x49\x57\x2f\xad\x55\xbf\xdf\xf7\xd2\x24\xb1\x71\x6c\x57\x5b\xad\x1d\x3b\x9c\x5d\x43\xcb\x29\xa1\x9f\xa9\x4d\xee\x3d\xb3\xed\x34\x0c\x47\x52\x8c\x04\xf9\xf4\x82\xd2\xda\xb9\xd0\x04\x67\x8d\x92\x30\xcd\x86\x69\x26\xc0\x7a\x11\x52\x60\xa3\x0d\xb9\x30\x5d\xc5\x1c\x51\xc9\x73\x14\x15\xa8\x67\x88\xcd\x5b\xcb\x39\xb6\x1f\xae\x8d\x61\x52\x33\x4a\x7a\xb1\x8d\x9d\xa6\xba\x68\x65\x7a\x2c\xec\x64\x61\x6f\x64\xe2\x67\x14\x60\xff\x26\x6a\x2b\x28\x49\x5e\xe5\xf2\x00\xd6\x46\xe0\x0e\x78\xd1\xdc\xd8\xf1\x18\x77\xa0\xba\x00\xcf\x7e\x74\x4c\x79\x0d\x22\x7b\xb6\x0f\xc6\xcd\x6d\xa0\x18\xc8\x71\x5a\x77\xcc\x39\x6c\x9b\x32\x88\xbb\x1a\x28\x9a\xcb\x35\xa5\x4a\xfe\xbe\xa2\xec\xfc\x51\xa9\xba\x4c\x6f\x63\xf0\x60\xc2\x1f\xd7\x2d\x6f\xee\xd4\x3a\x6f\x92\xcf\x7f\xd6\x51\x27\xfd\xb8\x78\xbf\x21\xe5\x6c\xdb\x64\xd1\x2c\xc2\x74\x1a\x25\x14\xa6\xc5\x30\x93\x48\xbb\x49\x62\xe5\xc5\x12\x78\x4a\x51\x32\x17\xba\x11\x07\xc7\x0e\x7d\xe1\xbc\x4f\xeb\x91\xed\x9e\x59\x82\xac\xb7\xbc\x02\x06\x56\x7f\x3e\xae\x05\x10\xd5\x8a\x4e\x85\x90\xba\xe4\x91\xeb\xf1\x9d\x0f\x1e\xf5\x36\x22\x51\x41\x16\xa0\xa8\x83\xbd\xab\xe6\xe1\x65\x45\x8c\xae\x9b\x49\x7e\xa2\x5d\x8c\x12\x33\xe5\xb1\x4a\xb7\x95\xe8\xda\x39\x9a\x87\xe2\xb8\xaf\x7e\x2c\x5e\x25\xc6\x3f\xc2\x81\x57\xf1\x4a\x44\x0b\x98\x6a\x61\xd2\x70\xa3\x87\xaa\x49\xbb\x2e\xd0\xa8\xde\x2f\x86\xc7\xef\x95\x93\x4e\xe7\xce\x59\xe0\xa2\x22\x8b\xe5\x05\x91\x2b\x69\xec\x38\x9d\x0e\xa7\xe5\x75\xa1\xb6\xdd\xee\xda\xd5\xee\xa6\xe9\x80\x2b\x11\x28\xdc\xbe\x42\x4f\x82\x8f\x9b\x14\x34\x84\x8e\xd9\x72\x82\x0c\x17\x95\x20\xc3\x45\xd5\x00\xc8\x4c\x04\x2d\x31\xcc\x0f\x60\x1f\xd4\xf2\x2b\x80\xb2\x35\xd5\x5f\x58\x4c\x4d\x9c\x4f\x29\x11\xff\xfb\x78\x70\xe2\x10\xa9\x48\xa0\xe7\x15\x2e\x6c\xc5\x44\xcb\x36\x6b\xe9\x45\x84\xee\x63\x62\x41\xd1\xb1\xef\x5c\xbb\x58\x6e\xf9\xe2\x25\x47\xaa\x7c\xd2\xf1\xf5\xce\x70\x69\x5a\x29\x44\x60\xf1\x17\x31\x6e\xba\x16\x4c\xb2\x8d\x08\x81\x05\x43\xee\xc1\x07\xbd\x28\x1f\xb0\xae\xab\x72\x4a\xfd\x82\xf3\x43\x5d\x3f\xed\x9e\x7b\x8e\x2a\x99\x11\x93\x84\x45\x0c\x43\xfb\x2e\xd3\xe0\xc6\xf1\x11\x25\x4d\xbf\xa1\xb3\xbe\xb3\x39\xb7\xaf\xbd\x98\x2e\xdb\x2c\xa9\x42\xec\xdc\xa2\x78\x24\x0e\xc7\xaa\xae\x03\x0c\xa0\x24\xf0\x4e\x12\x27\x1b\xa4\x99\x65\x03\x59\x2c\x4b\x27\xb5\x62\xda\x1d\x15\xbf\x70\x57\x90\xff\xaa\x11\xad\x00\xda\x95\xa3\xfa\x9e\x51\xf5\xca\x3a\x69\x64\xc7\x0e\x31\x16\xd3\xe1\xdd\x99\x09\x48\x9f\xda\xa7\x63\xbb\x6c\x33\xb3\x68\x37\xd1\x1a\x80\xbe\x08\xb4\x38\xf8\x18\xaf\x0a\xcb\x26\x58\x24\x58\x52\xae\x68\xe5\x0b\xb6\x4d\xe4\xff\x09\x7e\x42\x27\xc3\xe8\xa4\x2d\xdb\x84\xe7\xd7\xf3\x7c\xe9\xb7\xd4\x6d\xdc\x6a\x64\x2f\x77\xad\x22\x51\xe1\xbb\xdf\x21\x19\x00\x3e\xae\x3d\xac\x2a\xac\xa1\xa0\x06\xeb\xa6\xf0\x23\x55\x37\xf8\x56\x6d\xe1\xdc\xb1\xa3\x5d\x44\x52\x4e\xc6\x8b\xbc\x47\x6b\x84\x23\xf2\x78\x5d\x81\xd3\xe5\xc7\xdc\x83\xcb\x6c\x8c\x86\x6d\x3f\x1a\xc2\xc2\x49\x14\x59\x7c\x57\xe4\x84\x96\xce\xd2\xa2\x11\x99\xcd\xc3\x91\xa5\x4f\x61\x59\x83\x54\x3d\xdb\xf3\xe2\x82\x05\x92\xa8\x24\xe8\x47\x59\x66\x93\xe2\x51\xda\x1f\x19\xc0\x1c\xf8\x60\xf2\x2a\x8d\x68\x0c\xfb\x3e\xaa\x68\xe8\x66\xfd\x7b\x6a\x48\xa1\x51\x75\x8b\xa6\x21\xaa\x16\xbf\x87\x4e\x05\x16\x2c\xf8\x23\x00\xee\x70\x55\x8b\xe0\x9f\x50\x75\xfc\xc3\x81\x22\x76\x7f\x0f\x7b\xb3\x88\xaf\x34\x48\x6e\x66\x24\xbd\x8e\x3c\x1e\xe5\xa6\xa3\x8a\x87\x04\xc1\x32\xae\xc2\x3a\x30\xcf\x20\x4a\xd2\x6c\x8b\x02\x4c\x82\x35\x2b\x81\x91\x16\x47\xf1\x05\xdd\x69\x98\xfa\x4f\xc8\xec\xb8\xc4\x74\xb7\x13\xa6\x42\x2b\x87\x46\xec\x7f\xf7\x0f\x3a\xba\x85\xd8\xb5\x3d\xca\x00\xd1\x8f\x42\x37\x8b\x7b\x56\x1d\xbf\x5a\x9f\xa5\x9f\x47\x1d\x0c\x7b\x17\x9e\xdd\x23\xc0\x6b\x02\xa4\x74\x12\xcb\xb8\x38\x97\x15\x1f\x43\x04\x84\xa6\x08\x36\x29\x61\xb2\xd0\xa7\x44\xbc\x83\x62\x18\x71\x90\xd5\xad\x18\x30\x5e\x9c\x2d\xc7\xae\x5d\x9e\xb4\x4c\x93\x5a\x6a\x9d\x74\xd7\x58\x6c\x37\x77\xb4\x3c\x5a\xe9\x1d\x4b\xd0\x1c\xc1\xc3\xbc\x16\x28\xdb\xb2\x19\xaa\x03\x62\x45\x3e\x02\xba\x12\xc2\xb1\x9b\x18\x24\x28\x17\xbc\x1b\xa8\x8e\x29\x57\x6a\x35\xbd\x13\x01\xf8\xb6\x4e\x35\x49\x31\xb3\xdf\x23\xd6\x09\x90\x5f\xbf\x59\x7a\x1b\x95\x47\x6a\x7e\x6a\x3b\x76\xb4\x87\x59\x3a\x70\x74\x37\x97\x21\xd2\x4d\xf2\x49\x93\x25\x47\x5e\x58\x13\x17\xa0\x78\xb1\x91\x74\xa9\x98\x26\x27\x9a\x3e\x13\x47\x5d\x9b\x71\xa5\x88\xa3\x04\xba\x01\x21\x80\xd2\xe7\x45\x74\xaf\xc9\x16\x68\xc1\x9a\x6c\x4a\x11\x3a\xef\x29\x8a\x25\x23\x00\x98\xf1\x36\x11\x2b\xf7\x4d\xfe\xb1\xd6\xa7\x7f\x99\x23\xcf\xa3\x93\xf6\xfa\xaa\x7f\xf2\xfb\xe8\x4a\x20\x52\x7e\x8c\x9e\xa7\xd8\x57\xd2\xa5\x21\xcc\x79\x40\x0f\x17\x31\xf9\x55\x1e\x33\xd8\x61\xdf\xc5\x68\x70\x44\x57\xd7\xf8\xd9\x32\x56\x76\xd9\xbf\x89\xea\x3d\x55\x9c\xde\x7c\x4a\x19\x1b\x1e\x0f\x54\xa0\xde\x1a\x2b\xa2\xc6\x9a\x76\xda\xbf\x43\x53\xd3\x09\x1e\x55\x03\x18\x83\xf1\x16\xbd\x69\x04\x1e\x4f\x10\xf0\x0a\x11\x25\x26\x13\x46\xdc\x13\xd4\x95\xc4\xfc\xfd\x40\x99\xe2\x0f\xfb\x51\x1c\x0d\xa7\x7c\xf9\x89\xe5\x14\x10\x79\x43\x31\x43\x6c\x77\x3d\x30\xd8\x21\x30\xa7\xaa\xc9\x82\x10\xe1\x86\x22\x43\xde\xa0\x2b\x42\xf9\x60\xb7\x6a\x67\x86\xa3\xe2\x51\x5f\xd2\x44\xde\x86\xe2\xd2\x35\xbc\x1c\x27\xed\xb4\x67\x96\xf3\xf4\x5b\x78\x51\x28\x4c\x32\x70\x14\xf3\x76\x6a\xec\x53\xc4\x3b\x78\x84\x4e\x78\xc0\xf9\x77\x7e\xe7\xa9\x8e\xdf\x98\x67\x9f\x41\x5e\x80\x3b\x9d\x1a\x2b\x35\x91\xf7\x54\xaf\xb9\x30\xd9\xa2\x2d\xb6\x54\xc3\x80\x27\x62\xa9\x8a\x95\x47\x4a\x4f\xb8\xe2\x6d\x19\xa1\xca\x37\x68\xe1\x77\x53\xb7\xba\x50\xfe\x8f\x52\x89\xe2\x20\x1a\x61\x2d\xd2\x9a\x39\x33\x29\x31\x14\x24\xcb\x5d\x7d\x31\x00\x23\xe7\x03\x6f\x8e\x74\xbe\xc9\x40\x8f\x7b\xd8\xaa\xc2\x7c\x5f\x5b\x8d\xdf\x57\x3c\x88\xc2\x1c\x1a\x9a\x55\x9b\xe5\x9b\xb5\x52\x18\x32\x2f\xc7\x86\xf6\xe2\x5b\x81\x86\xc5\x5c\x29\xbd\x21\x14\x36\x30\x6c\xc2\x53\x63\x2f\xe7\x70\xb5\xa9\x91\x48\x96\x61\x2e\xf5\xe1\xb5\x59\x49\x90\x69\x4e\x5b\x98\xc6\x29\x7c\xdf\xb1\x08\xad\x69\xb9\xab\xb5\x7a\x40\x31\xd7\x2e\xfa\xa6\x98\xf6\xf6\xe9\xad\xb1\xb2\x93\x7b\x44\xb1\x04\x4e\xfa\x0a\xf8\xdf\xfe\xb8\x96\x3a\xcd\xed\x6b\x77\xa3\x82\x14\x30\x30\xbc\xb6\x76\x7c\xed\xe7\xba\xe2\x6b\xac\x95\xbe\x85\xfe\x57\xb5\xce\xd1\xfe\xd9\x2f\xb4\x13\x8b\x54\x9e\x99\x36\x81\x57\xbe\xb9\xde\x08\x7d\x4f\x17\x80\x1f\xd1\x5b\x1d\x26\xf6\x35\x04\x92\xc8\xd9\xde\x6a\x90\xa9\x69\xe7\x55\x44\x09\x48\x10\xe2\x84\x53\x81\x07\xa8\x9d\x6a\xb2\x05\x59\x8c\xd3\x3c\x47\x8f\x95\x85\x9f\x02\x8f\x4d\x3a\xee\x40\xc6\x66\x54\xa4\x61\xc6\x52\xce\xb8\x73\x20\x7d\xf9\x58\x81\xef\x43\x33\x68\xe9\x86\x81\x12\x69\xaf\x07\x2a\x73\xfb\xda\x3d\x6b\x9d\xff\x95\x33\x02\xf7\x70\x91\x73\x2a\xcb\x2a\xb2\x51\x5e\x6c\xf1\x09\xd2\xa9\x40\x21\x4e\x39\x21\x45\x7c\x7a\x0a\xab\xab\x58\x5d\xf8\x49\x76\x57\x41\x1b\xce\x6a\x80\xd0\xdd\xd2\xa7\xef\xa7\xdc\x7d\x17\xfd\x28\x59\x72\xe0\x6a\xac\x53\x40\x2c\xa3\x00\xb1\x46\x5f\x2d\xe9\xbb\x1f\xb7\xa6\x37\x88\x50\x3f\x66\x4d\xef\xc0\x03\xc6\x3f\xac\xbd\xf6\x83\x07\xdb\xf1\xe8\x50\xab\x5a\x93\x65\xdf\xd4\x9b\xa8\x2a\x1f\x0f\x33\x13\x81\xae\xb1\x6b\x97\x53\xe7\xa2\x87\xc0\x27\x4a\x1d\xb1\x1b\xf5\xd0\x41\x72\x49\xf7\xd7\x74\xce\xce\xd5\x3e\xa7\x3d\x92\xb5\xbc\x77\x38\x26\x07\x1f\xab\xfd\xc1\x14\xf9\xbf\xfc\xa7\xff\xac\xa5\xca\xef\xec\x77\x22\xfc\x01\xff\x04\xf2\x81\xc9\x0a\x25\xab\xf0\x30\xf0\x25\xa7\x87\x0d\x9e\x1b\xcf\xb7\xf3\x51\xb7\xb0\xd9\xc2\x68\x91\xc5\x88\x04\xfd\xd1\x72\x3a\x5b\xde\x4b\xbc\x6b\xe2\x38\x2d\xa4\x3f\x26\xd5\x7f\xd5\x09\x50\x98\xee\x2a\x23\x23\x3a\x88\xb4\xcd\x7d\x07\x6f\x66\xec\x91\x3a\x27\x75\xb0\x73\x5a\xc5\xf3\xff\xae\x54\xf1\x3c\xfa\x34\xa2\x0f\x49\xd7\x09\x36\x1e\xcb\x72\x03\x87\xf8\x4a\xe0\x91\x6e\x94\x63\x3f\x3f\x69\xa5\x85\x09\xf9\xd7\xc1\x53\x7c\x3b\xcb\x76\xd1\x16\x26\x8b\x8c\x83\x0d\x0b\x30\x52\xa3\x24\x9b\x5a\xaa\x66\xd9\x86\x34\x70\xd8\x2e\x39\x50\x65\xcd\x33\x6a\x30\x2c\xa4\x59\x18\x25\x8b\x9b\x54\xa0\x0a\xe5\x6c\x69\x3f\xa9\x44\xef\x92\xce\x28\x51\x3b\xd0\x0a\x02\xe2\xf2\xec\x71\x53\x55\x08\x98\x8e\x16\xfb\xdb\xbc\xf2\xd9\x37\xe8\x29\x63\x0a\x6f\x85\xff\xb1\x74\x2e\x15\x50\x12\x8d\x6e\x84\x5d\x4f\xe1\x39\x61\x9f\x6f\x75\xbc\xf8\xd1\x77\x3d\xcf\xeb\xbf\x04\xf3\x8e\xc3\xdb\xd2\x0b\x12\x30\xcd\x0b\x97\xf9\xbf\xd7\x84\x66\x76\xbf\xb0\xb7\xda\x4a\x46\x83\xee\x28\x07\xd9\x96\x8b\x21\x13\x2e\x65\x0d\x75\xbd\x85\xc8\x14\x13\x0e\x30\xa5\xe2\x8f\x9c\x0d\xb6\xb9\x47\xb0\x38\xd8\xa4\x7d\x1a\x26\xf8\x43\xa5\x6f\x76\x1c\xa1\x7b\xc1\xa6\xf9\x9e\x2a\x3e\xb2\xc9\x38\xa6\xc7\x2d\xd5\x1f\xb5\xc9\x62\x3c\x4a\x34\x22\xed\x82\x8a\xe4\x2f\x04\xcf\xba\x3e\x41\x96\xad\x0e\x4c\xd2\x53\x55\x45\x24\x5e\x00\x9b\xf2\xb1\x02\x83\x77\xb3\x2a\x0e\x5f\x9d\xf2\xb4\xb0\x7b\x13\x4f\x63\xa2\x8b\xbc\x3e\x0c\x3f\x78\xb0\x9d\xf7\x0d\x97\xd3\x30\x1b\x6e\x2a\x19\xb0\x9b\x4d\x5b\x8d\x49\x56\x57\xd0\x01\x9d\xf7\x91\xdd\xe4\xf4\x13\xec\xc9\x1f\x97\x3e\x7a\xbc\x37\xb1\x4e\xf5\xa2\xe2\x71\x55\x50\xff\x2e\x66\x1d\x42\xe2\x87\x6a\x9d\x7f\x97\x43\x72\x2c\xd3\x67\x4b\x4f\x07\x83\x00\xbe\x8b\x6e\x0e\x48\x7a\xf7\x3e\x2e\x40\xf0\xfa\xd5\x05\xa0\xae\xf6\x80\x1e\xb8\x18\x47\x52\x60\x2a\x92\x60\xf4\x96\x51\x0d\x44\xbc\x87\x87\xf7\x7d\xed\x51\x74\xd8\x2d\x5a\x36\xce\xed\x4a\xdf\x66\x76\x8b\x8f\xe0\x7e\x52\x55\x17\x99\x17\xe4\x18\x64\x8e\x02\x71\x98\x46\x0d\x02\x82\x6b\x78\x31\x8e\x7e\xe7\xcb\x15\xf7\x4a\x0d\x91\xf6\x43\xa8\xc8\xd2\xa2\xb0\x19\xe5\x5b\xb8\xa4\xb7\x11\x1f\x3b\x2f\x62\xc7\xf9\x3f\xe2\x1a\x32\x89\x1d\x15\x19\x57\x00\xa5\x97\x52\x2d\x33\xd2\x63\x51\xce\xbe\x26\x5c\xa2\x8c\xc1\xc1\x3b\xab\x87\x82\x2a\xc7\x06\xc0\x69\x45\x80\xce\xf7\x47\x6c\x9e\x43\x3f\x38\x5e\x45\xd5\x54\x2a\x86\x3e\x3a\xfa\xf5\x40\xa5\x3e\xc7\x6b\x89\xe0\xae\x5d\xa4\x4a\xc8\xc5\x23\xbc\x10\xb1\x7b\x17\x8d\x18\x7a\x52\xd2\xb4\xf5\x11\x8a\x1d\x0d\x67\x7c\x61\x61\x53\x47\x6f\x1b\xca\x08\xe3\x6b\xe5\x84\x36\x8b\x02\x81\x9f\xd1\xac\xc8\x51\xd1\x4f\xb3\xe8\x25\x00\xba\x1c\xbe\x58\x6d\x60\x8a\x35\xff\x37\xcd\xd8\xa2\x1e\xe3\x08\xd0\x94\x00\x5f\x8d\x8f\x9d\x81\x47\x2f\x1d\x75\x8b\x7c\xb3\x1f\x8a\x17\xf5\x78\xbd\x8c\x25\x9b\xae\xfb\xdf\x3c\xd9\x69\x7d\x6e\xce\xb9\x14\xb6\x9c\x1c\x2b\xc3\x70\x45\x35\xa6\x1a\x84\xd8\xbb\xce\x2b\x0d\x85\xbe\xcd\xf2\x98\x15\x8c\x84\x0e\x5e\xfd\x25\x1f\xd7\xf6\xa0\x83\x07\xdb\xa1\x11\x35\x6c\x5c\xcc\xcd\x40\x01\x36\x6f\xd6\xa2\x9d\x03\xbb\xdb\x5d\x5b\x4c\xfd\x7d\xd6\x68\xde\x40\x4d\xb9\x61\x66\x64\xa9\xe0\x48\x32\x78\x7b\x6b\xaa\x88\xbf\xa6\xfd\xa1\x46\xc3\x61\x9a\x15\xb6\xb7\x09\x43\x42\xcc\x85\xbc\x3e\x07\xe7\x85\x8e\x5b\xee\xb5\x5c\xf1\x2c\x27\xbc\x89\xa4\x50\x54\x13\x48\x9b\x6b\xef\xd8\xf1\x71\xaa\x17\x20\x08\x3c\xae\x2d\xd5\x59\x49\x05\xeb\xcb\x75\xe5\x39\x7b\x98\x5b\x73\x52\x59\x51\x56\xd0\x07\x95\xd9\x21\xaa\x4f\xd2\xa3\xd1\x7c\xa2\xbb\x18\x9b\x78\x7d\x47\x30\x53\x14\xe2\x6d\xb7\x33\xa3\xa7\xab\xc7\x62\xf1\x2d\x0a\x7d\x91\x09\x5d\x0c\xb4\x2b\x62\xe0\xab\x79\xa5\xd2\x19\x7e\xad\x54\x4a\x83\xef\x41\x3b\x06\xf3\x94\xfd\x8a\x01\x9b\xbd\x1b\xf8\x22\xc3\xb8\xf4\x4e\x23\x0c\x9d\x46\xe8\xff\xa3\x89\x55\x3c\x67\x0a\x20\xea\x2a\x60\xf4\xf0\x71\x13\x8d\x3a\xcd\x86\x7d\x93\x4c\xaa\x1e\x61\xb1\xe7\x63\x15\x77\xae\xa4\xb2\x5d\x8a\x4a\x68\x75\xd7\x22\x12\xda\x4c\xbc\x1a\xc6\xf6\x90\x02\x7b\xdc\x52\x60\x8f\x5b\x13\xc1\x37\x81\xa6\x7b\x24\x91\x2e\x90\xc2\xea\xdb\x45\xb6\x67\xfd\xa6\x47\xe8\x93\xa5\xa8\x07\xc6\x34\x5b\xab\x68\x05\xac\x73\x81\x9a\x78\x69\x6f\x51\x04\xa5\x84\x7a\xaf\x57\x8e\x6a\xf5\x75\x4d\x53\x27\xc2\xff\xd6\x1b\x0d\x95\xf8\xf6\x20\x5d\x46\x59\x7d\xce\x49\xfb\x29\xe8\xc8\x9b\xc1\x04\x40\xa1\xde\xf6\xd8\xdd\x36\x2b\x66\x95\x6e\x13\x4b\xe9\x55\x5a\x02\xf8\x38\x98\xf0\x78\x8e\x0a\x48\x95\xce\x4d\x20\xec\x04\x54\xf7\x8c\x9a\x90\xdd\x3c\xa4\x90\x23\x9f\xf2\xfb\xd4\x19\xfa\x62\xbc\xfa\xfb\x81\x2f\x5c\x69\x2b\x95\xee\x28\x8e\x2d\xb7\xd1\x05\x2c\xe1\x0b\x7e\xaf\x6b\xc1\xf2\xd4\x3a\x05\x19\xe4\x5a\xf7\x54\xd6\xf1\x03\x5f\x81\xfe\xe0\x41\xe9\xbb\xeb\x6f\x07\x4f\x3a\x78\x5e\xb6\x64\x86\x69\x1c\xe1\x85\x21\xfe\xe0\x39\xc4\x27\x8e\xd7\x45\xe0\x28\x17\x6a\xc9\x88\xf7\x24\xc1\x33\xea\x0e\xe2\x28\x2f\x6c\x6f\x73\xf5\x3c\x9d\xdc\xcc\xff\xc3\xd8\x9b\xc7\x48\x92\x9d\x77\x62\xd3\x59\x55\x7d\x4d\x0f\xe7\x26\x29\xed\x81\x94\xc0\xd5\x48\xc6\x80\xa0\xbd\x58\xac\x96\xff\x44\x6e\x75\x69\x86\x5d\x26\x6b\x0a\xd5\xcd\x9e\x55\x1b\x06\xe6\x55\xe4\xab\xcc\x98\x8a\x8c\x48\x46\x44\x56\x4d\x0d\x64\x60\xb1\x10\x0c\xc3\x30\x0c\x63\x2d\xc3\xb0\x57\x36\xd6\x5c\x79\xad\x95\xb4\xbb\xd6\xbd\x2b\xc9\xcc\x22\x39\xbc\x39\xe2\x90\x3d\x9c\x93\x73\xf4\x7d\x77\xf5\x7d\x4e\x57\x1b\xf1\xfd\xbe\xef\xbd\x2f\x2a\x62\x64\xff\xc5\x4c\x4e\x57\x66\x46\xc4\x7b\xdf\xfb\x8e\xdf\xe1\xa1\x19\xdb\xd1\x93\xc2\x5e\xde\x04\xb8\x52\xcc\xb8\x7d\xc7\xfe\x7f\x54\x6d\xbd\x1f\xe0\x27\x49\x7a\xe9\x90\x28\xa3\xcc\xc6\x6b\xad\x6a\xf2\xee\xe6\xd0\x55\xde\x8e\xe9\xa5\x7b\xb4\xfe\xca\x65\xa5\x7b\x7f\x2d\x50\xbd\x6d\xa8\x90\x6f\x5e\xa2\x76\xa7\xab\x4a\xbc\xae\xeb\x0f\x02\xdf\xc7\xc5\x98\x1f\x39\xe3\x07\x63\xa5\xbe\x79\x66\xac\xc0\xb6\x80\x2a\xf3\xbf\x42\x1c\x02\xb7\xe9\xdd\x86\xac\x71\xbe\x6d\x57\xe8\x94\xf7\xca\xc6\x53\x0c\x5e\xc3\x62\x9e\x5c\x57\x7e\x30\xdf\x1b\x7f\x9a\xff\x72\x39\x2a\x53\xe1\x22\x2d\x6c\x12\x47\xb6\x6b\x33\x2a\x92\xf0\x33\xd9\xad\x81\xdf\xac\x7b\x73\x02\x52\x97\x25\x30\x8f\x63\x8e\x82\xa0\x20\x36\x59\x7e\xb7\x0e\xd3\xc2\x14\x69\x4b\xb9\x1f\xc0\x92\x97\x5f\x2b\x35\xbb\x30\x8d\xd3\xc1\x62\x64\xc0\x2f\x17\x93\x34\xba\xc3\xfc\x26\x50\x21\x26\x5d\x2d\x4b\xe0\x78\x4a\x11\xa2\x36\x94\x68\xf1\x8e\x75\xdf\x6f\x78\x80\x9a\xb8\xc0\xc7\x71\x3c\x17\x17\x6b\x6f\xe9\x3c\x34\x65\xa6\xd5\x23\xf6\x5d\xb9\xb0\xb8\xee\xa2\xad\x26\x35\x58\x1d\xa6\x3e\x43\x76\x41\xe9\x8a\x20\x72\xb0\x36\xb5\x66\x05\x8f\x4e\xa5\xcf\x2e\x29\xee\x57\x46\x51\xb8\xbc\x12\xd9\x55\x2a\x2b\xa4\x66\xf2\x90\xc4\xd3\x3a\x61\xbd\xdd\xe4\xc1\x9c\x0f\x4d\xaf\x6f\x8b\x22\xc2\xbd\xc5\x47\xc0\xc9\x81\x5f\xaf\x6f\x0d\xe2\x0b\xd3\xed\x51\x99\xe1\xb2\xd6\xb9\x68\x7d\x28\x7d\xbf\x0b\x9a\x3b\xd4\x4f\x57\x69\xe2\x24\x89\xc0\x65\x25\xb7\x76\x89\xc2\x2c\xd2\x92\x0f\x70\xfc\xe1\xc6\x03\x33\xe5\xd4\x5c\xcb\x9f\xc6\x56\x0a\xb5\xf8\xb9\x77\xa6\xfc\xdf\xa2\x3f\xe5\x7d\x5d\x50\x83\x21\xc7\x7c\xb0\xa3\x84\x17\xdf\x53\x53\x2d\xad\x83\x7b\xb6\x36\xfa\xff\x7c\x7b\x30\x40\x2f\xc7\xa9\x24\x7b\xf8\xda\x39\x65\x48\x5b\x10\x7b\xd0\x29\x45\xdd\x50\xb4\xa0\x1b\x81\x77\x7e\x4f\xd2\x64\x09\x5c\x43\xb8\x59\xb2\xbe\x0a\x4e\x79\x11\x5b\x69\xaa\xa3\x05\x6b\xaf\x69\x7f\x85\x62\xb4\x16\x8e\x30\x94\x17\xa6\xb0\xf9\xaa\xcd\x8b\x29\xfa\x0a\xa1\x7c\x79\x66\xf1\xc9\xb1\x9a\x7b\xe0\x82\xb0\x91\x77\x76\xb4\xb9\xfc\x69\x0d\x08\x8f\x8a\x22\x5f\x1c\x65\x3d\x98\xa1\xb0\x14\xd2\xb8\xa2\x8b\xb4\x15\x7a\x48\x08\xae\xbc\xc8\x46\x94\x3c\x2a\x35\x0f\x80\x12\xc4\xb9\xb7\xd1\xd0\xd5\x24\xcb\x1e\x2a\x8f\x84\xe7\x8a\x26\x0d\x5d\x69\x04\xf8\x85\x7d\xeb\xfc\x92\x65\xbc\x41\xdf\xcb\x6f\xd4\x7a\xcc\x22\x87\xf3\x46\x5f\x03\xf3\x68\x7e\xad\x2d\xc1\xf3\x32\xc0\x77\x75\x01\x7d\x9d\x7e\x3f\x9e\xd6\x64\x47\xf5\x01\x2f\x00\xed\x85\xd4\xb1\x8e\x87\x99\x39\xd0\x0e\xd3\xd4\x37\x36\x1d\xca\xc9\x01\xd1\x31\x2d\xc2\x31\x54\xb7\x95\xa0\x4b\x4c\x57\xbc\x91\xbd\x48\xd6\x2a\x2b\x94\xf3\x0a\xe1\x33\x8c\x4d\x22\x1c\x2a\x1c\x2b\x2c\xb8\xc6\x6f\x34\x20\xdc\xc6\xf1\x68\x00\x3c\xa5\x68\x0b\xb5\x94\xe8\x90\x53\x50\x1d\x15\xb1\x71\xae\xe6\xc8\x26\xc0\x3f\xe1\xd7\xb5\xc3\xe4\xc0\x73\xed\x3c\x5d\x89\x2c\xba\x92\x00\xe3\x70\xa9\xc2\x6f\xc6\xd2\x8f\x8b\xa3\xa2\x9f\xf6\x32\x33\xec\xaf\xb5\xb4\xa7\xfb\xd9\xb1\x67\xfc\x9e\x75\x36\x53\x7d\xb3\x62\x13\x31\xb4\x59\x98\xde\x7c\x6b\x8b\x33\x7c\x66\x62\x0c\xd5\x71\xde\x3f\x8c\x49\x13\x56\xc2\x55\x2e\x59\x11\xea\x1f\x41\x0f\x4c\x68\x1c\x2d\xa7\x9e\x72\x1e\x95\x04\x3e\xe0\x2e\x66\xc4\xfc\x86\x1e\x1a\x83\x6e\x55\x2e\x14\x5b\x43\x02\x5c\x0b\xd2\x6d\xbc\xa7\x46\x01\xf7\x54\x35\x9c\x45\x83\x07\x29\x51\x77\xa0\x8b\xf2\xc3\xd1\xae\x7a\x1d\xe7\x36\x26\x26\x40\x57\x20\x34\x9e\xf2\x32\x1f\xd1\xa3\x4a\x1c\x66\x8a\xb4\x14\x9d\x64\xc2\xde\x99\x8a\xbd\x06\x02\xc4\xeb\x5a\xb4\x96\xd7\x01\xae\xf8\x0f\x55\x1e\x5f\xf4\x6d\x6e\x9f\x6c\x39\x73\xbd\x7f\x31\x56\x77\xe0\x07\x54\x66\x60\x49\x70\xaf\x9c\xe3\x06\xc0\x08\x88\xd3\x3f\x1d\xab\xfb\xf4\x03\x3a\xf2\x1c\xd8\x7e\xef\x8c\xc3\x5e\xd0\x26\xc5\xb6\x39\x81\x4a\x4c\xa4\xe0\xca\x6b\x44\x70\x78\x8d\xb0\x2f\xce\x23\xb8\x5c\x72\xb8\x29\xef\x50\xca\xe3\x26\x10\x65\x98\xe3\x2f\x0f\x14\x78\x87\x55\x34\x9d\x48\xa9\xaf\x17\x31\x53\xc5\x0e\xfe\x21\x71\x4b\x90\x8f\xbd\x19\xa8\x82\xfa\xfb\xc1\xa3\xaa\x05\x5f\xa4\x59\x62\x59\x81\x1f\x4b\xf1\xe8\xb8\x22\x43\x30\xff\x9c\xac\xd7\xa3\x81\xa7\x1e\xb1\x15\x2d\xe2\xca\xff\x39\x7e\xd0\x2d\x80\x7f\xfc\x19\x22\x45\x48\xa6\xb6\xed\x33\x9c\xc1\x7e\x82\x86\xd2\xb8\xc9\x67\xf0\x98\x50\x13\x6d\x6b\x32\xb8\xea\x65\xd1\x80\x3d\xf1\xb4\x8a\x29\x82\xe4\x71\xa5\xbb\xfa\x35\xd5\x9a\x5a\xed\x47\x45\x11\x5b\xa4\x26\x02\xcb\x2e\x9f\x93\x00\x95\x9f\xac\x0b\x92\x1f\x9c\x9e\x79\x44\xb5\x90\x3f\xc0\xad\xc5\xdd\xbc\x12\xf8\xef\xa7\xb4\xfa\xd9\x4d\x74\x46\x36\xd7\x95\xfc\xd5\x19\x6d\x30\x70\x9f\x16\xc9\x66\x6b\xdd\x37\x99\x8f\xd2\xf2\x70\x2a\x98\xfb\xe4\x2a\x5e\xd7\x4b\xf0\xf7\xe9\xc1\x0b\xff\x41\x1d\x3f\x3f\xa4\xce\x37\xee\xff\x03\x10\xef\x13\x1e\xd8\xc3\x2e\x60\x24\xdd\xd8\x05\x5f\x27\x2e\xee\xb2\x90\x57\xc6\x3e\xd9\x38\x33\xf6\x67\xb6\xc9\x16\xa3\x22\x33\x45\x9a\x01\x66\x87\xbb\x74\x1c\x4f\x9c\xdf\xa8\xb2\xf8\xeb\x5a\x18\xf8\xeb\xae\x93\x14\xe5\xf9\xc8\x76\x77\xd0\xf2\xc4\x5a\xbb\xa7\xaa\xb0\xf3\x63\x25\x42\x05\x72\x05\x56\xc6\xff\x42\x3f\x50\x4e\x0a\x25\xa7\x31\x85\xfa\x05\x81\x61\xbb\xb2\x76\xe8\x5a\xd3\x65\x69\x6d\x27\x71\xbd\x30\xed\x24\xae\x1b\x7a\x29\xb3\xb3\x0f\x96\x37\x8f\xbf\x90\x1e\x99\xa8\x18\x56\x71\x45\xe5\xbe\x16\x8f\x07\xb4\x52\x30\x76\xf8\x19\x16\x39\xbf\x19\x7b\x7e\xdd\x7f\xad\xee\xcb\xd5\xc0\x0f\x77\x18\xfb\xc3\x9f\xa5\x78\x77\xb7\x14\x18\xbe\x3f\x1a\x98\x64\xa2\x22\x8a\xd8\x72\xfe\x78\x5f\xd7\x5c\xeb\x26\x02\x4a\x3b\x49\x8b\x28\x64\x23\x10\x0e\x87\xc8\x9e\x25\x36\x2a\xe9\xc4\xc2\x9a\x6e\x94\xd8\x9c\xfb\x9a\x02\xb6\xa0\xab\x47\x90\x3c\x31\x56\xd2\xcd\xb7\x5c\xc3\x96\x1a\xcb\x26\xdf\xae\x2c\x2b\x10\x74\x2b\x5e\x96\x48\x41\x4f\xd0\xcf\x17\x03\x51\x2f\x67\xba\xbb\xa3\xc4\x82\x5f\x6d\x20\x51\xed\x27\x75\x8c\x04\x67\x2e\x96\xc2\x65\xfa\x2c\x7e\x5d\x29\x31\xd3\xa4\xf7\x64\x19\x35\x81\xd6\x7c\x5b\x3b\xfd\x9f\x57\x6e\x4b\x7b\x80\x97\x72\x20\xb3\x7d\x32\xed\x63\xac\x07\x12\xa6\x6b\x63\xcf\xa7\xfb\x19\x9f\x99\xb8\x1f\xf7\x02\xbf\x11\x59\xd4\x03\xc1\x7c\xdb\x3a\xdd\x0b\xec\xdd\x0f\xd5\x14\xe4\xc3\x40\x71\x9a\x5e\xc3\xc9\xea\xfc\xb1\x9f\x79\x9e\x9b\xbc\x17\xb0\xad\xd0\xf0\xfe\xa9\xd6\xda\x7c\x05\xeb\x4f\x3c\x7a\xca\x60\xe1\x1a\x36\x6e\x91\xb1\xfc\x97\x8c\x70\xb7\x82\x5c\xcb\x0c\xaa\x6f\x4d\xf7\x2b\x23\x93\x79\x0f\x3b\x27\xff\xe9\x78\x91\x77\xb4\xb1\xf7\x61\xee\x01\x62\xab\x7f\x54\xd6\x08\x8a\xb3\xd2\x4b\xa2\x97\x65\x34\xdc\x24\x08\xf2\x84\xa4\xe5\xe9\xc0\x66\xb9\x19\xc5\x85\x0b\x41\x9a\x6d\x2e\x02\x57\x2d\x67\x9b\x79\xb4\xa6\x1e\x43\x4a\xdd\x51\x2f\x21\xb2\x20\xb5\x73\x70\xc6\x40\xaf\x43\xba\xc0\xbe\xa3\xd6\xa4\x7a\xb7\xbf\xcc\xad\x4d\x62\x98\x6b\x28\xe6\x3b\x8a\xdf\xc2\x62\x22\xe2\xc1\xeb\x53\x96\xff\xec\xb3\xff\x80\xae\x12\x77\xfd\x92\x7a\x02\x97\x14\x7d\xcd\x9a\xc2\xb2\xb4\x2e\x42\xfd\x75\xbe\x7d\xfc\xae\xb6\x57\x5f\x78\x41\x68\xe0\xc4\xb8\x11\x46\xb7\x02\xa1\xde\xa9\x5c\x93\x57\x62\x59\xb5\x26\x43\xca\x2a\xe8\xf6\x96\xd3\x48\xbe\x58\x6b\xd0\x3d\xdd\x5e\xb4\x34\x91\xa1\x65\xe4\x7c\x54\xdd\xbd\xff\x21\x62\x12\xfa\xc1\x37\x94\xde\x52\x18\x93\x96\x62\x8c\xfd\xc7\xa6\xcf\xb8\x49\xe2\x00\xed\x1d\x0b\xe3\xd8\x0c\x73\x01\xd7\x62\x47\xdd\x0b\x94\x20\xe4\x6d\x7a\x56\xb2\xd7\x7d\x82\x61\x07\xc3\x38\x5d\xb3\x59\x8b\xb2\x14\x1c\x10\xc7\xb8\x5f\xcd\xef\x82\x3d\x6a\x9b\x3f\xf5\xb0\xe2\x8a\x1e\x56\xa8\x1a\x6e\x9c\xb1\x1f\x24\xb6\x3f\xba\x3e\x57\x15\x3d\xe2\x5d\xcd\x4b\x79\x6b\xac\x14\x1d\xb9\xfe\xc6\xf2\x3d\x3a\x56\x10\x28\x6c\x66\x66\x89\xa1\x62\xe5\x7f\xa5\x61\x95\x20\xa0\xe0\x1b\xe5\xd1\x03\xbb\x77\x4e\x19\x28\xd7\x21\x4a\x73\x73\xed\xcc\x96\xab\x1b\xdd\x0f\x59\x80\xd7\xd1\xf3\x76\x36\xbb\x8a\x7f\xb9\x95\x31\x54\xa6\x29\xca\xac\x08\x75\x8f\xd3\x57\x9a\x73\x96\x48\xb5\x69\x10\xb4\x20\x97\x27\x3c\x1c\xf2\x9e\xca\xe0\xae\x69\xf2\xf8\x51\x45\x3b\x1f\xc6\xa6\x58\x4a\xb3\x01\x3a\xab\x08\x22\x2c\x3c\xe3\xf0\x1c\xaa\x1d\xa3\x3c\x2d\x4c\xfe\x90\x6f\x28\xdd\xc2\x15\xea\x51\x89\x20\x87\x94\x3b\xd4\xe1\xb1\xda\xaf\xdf\xa0\xe7\x2d\x28\xb7\xf2\xec\xc6\x01\xf9\x83\xb1\xc2\x74\x1f\x0e\x3c\x46\xea\x0a\x1e\xb7\xeb\x6f\x3a\x86\xe7\xfb\x58\xc7\x58\x14\xd7\xf5\xd4\xe5\x8d\x26\xc9\x4c\xe2\xc2\x66\x55\xcf\xf6\xbb\xda\xb3\xfd\x6e\xf0\xb8\xce\x99\xed\x60\x58\x38\x26\x1a\xce\xdd\x77\xc6\x1e\x0a\xf4\x8e\x2b\xe6\x86\x64\xe0\xe1\x67\xa5\x27\xf5\x2c\xf7\xe4\x78\x8f\x6f\x44\xfc\x52\x6f\x92\x96\x1e\xb2\x95\x13\xf4\x69\x08\x5c\x27\xb1\x72\xf9\x3f\xd0\x6d\xe1\xff\x50\x6b\x16\x2d\x4c\xb7\x17\xb3\xc8\x2e\x4d\x78\xd9\x07\x36\xd2\x70\xce\xe5\x73\x72\x83\x7f\x47\x4d\x5d\x97\xa2\x04\xc6\x07\x4e\x61\x5d\xe1\xe2\xe8\x6f\x04\x23\xe7\x27\xaa\x57\x2a\x4e\xc3\x3e\x9c\x2e\x98\xb5\x09\x45\x19\x95\x92\x14\x8b\xee\x35\xba\x2e\x91\x2a\xdc\x3a\xcb\xdb\x37\xd7\x5e\xfb\xa5\xac\xd5\xfa\xf2\x17\x18\xc5\xf1\x26\x7e\x08\xbf\x09\x3e\xe9\xfd\xc7\x93\xc2\x66\x09\xc1\xf6\x4d\xcc\x43\x39\x24\x50\xec\xdf\x85\x73\x9a\xc1\xb3\xc2\x9b\xd1\x61\x94\xd6\x20\x42\x03\x9b\x30\x88\xcd\xd6\x6e\x47\x26\xce\xa6\x3c\x71\xe8\xc7\x81\x72\xe8\xe5\x14\xca\x41\x28\x5c\x9e\x37\x81\x66\x30\xc4\x6c\x2e\x39\x28\xfc\x92\x09\x8b\x94\x1e\x0a\x32\x0b\xa8\xe1\xa3\x26\x00\x8d\x0a\x4f\xf7\x42\x6d\x0f\x93\xbc\x42\x98\x4f\x28\x2d\xc6\x3f\xf9\x48\x39\x9d\xf0\xcc\x5e\x26\x24\x0f\x29\x32\x50\x52\xec\x54\xc5\xcc\x6b\x6a\x12\x78\x65\xec\x67\x6c\xaf\x51\x2a\x84\x3b\x24\x7d\x32\xdc\x49\xee\xfa\x38\x19\x5f\x77\x1e\x55\xae\xfe\x84\x82\x05\xad\xd8\x7e\x14\xc6\x76\x57\x79\x82\x22\xd3\x7e\x57\xb3\x21\x50\x0e\x33\x3a\x01\x4f\x06\x19\xe4\x99\x8a\xc4\x44\x05\x20\x85\xfd\x82\xbb\xb6\xae\x46\xd9\x6c\x3a\x2e\x30\xaa\x87\x55\x83\xdc\x14\x36\x9f\xf4\xca\xf0\xac\x37\xc8\x6f\x14\xa1\x1d\x9a\x7c\xfc\xda\x55\x53\xa4\x48\x67\x33\x4b\x8f\x1e\x75\xd7\x57\x91\x35\x39\x9f\x7b\xa7\x30\xba\xa3\x53\x91\x83\xf6\x21\xee\x72\x23\xfb\x27\x4f\x63\x36\xb7\x54\xd6\x32\xc2\xf3\x85\x88\x21\x7e\x65\x5d\x64\xe9\x69\x92\x03\x4b\x57\xca\x63\xfe\x79\x37\x8d\x3c\x42\xfe\x12\x8e\x95\xe5\x7c\x1c\x6e\xd5\x66\x87\xfb\xe6\xda\x31\x15\xc7\x53\xde\xa6\x70\x67\x47\x71\xf8\xcf\x2b\x6d\xa0\xed\xeb\xbe\x8f\xc9\x1c\x6a\xb4\x11\xce\x35\x11\x60\xf3\x28\x5e\xb1\xb0\x26\x06\x94\xe0\xa4\x92\x88\x3d\xe9\x52\x88\x41\xda\xb5\x59\x12\xe5\xe8\x97\x71\xe1\x43\x4f\x40\x8a\x20\x1f\x42\xfe\xfe\xe7\x3e\x87\x46\xd9\x26\x65\x63\x9b\x97\x5c\x5d\xd2\xb5\xbd\xcc\x4a\x1a\xc2\xbd\x74\xbd\x95\x71\x20\x22\x3c\xfe\x51\x3d\xd1\x5c\x98\x77\xb9\x2d\x57\x50\xac\x94\x1b\x28\xa9\xf5\xb3\x0a\x23\x3a\x30\x59\x04\xb1\x45\x44\xf6\xa3\xda\xcc\xf5\x68\x45\x50\xbd\xb0\x71\x1c\xf5\x48\x44\x8f\x7e\x9d\x38\xef\xd0\xaf\x13\xd8\x87\xea\xa8\x45\x76\x91\x6f\x9b\x4c\x15\xf4\xb8\xe1\x93\xd5\x72\xb6\xfc\xe5\xe5\x0d\x69\x29\xa2\x0e\xee\x9e\xd8\xe6\x34\xaa\x25\x75\x6d\x9a\x70\xcb\x51\xc4\x03\x54\x40\x3d\x57\x99\xa2\xdb\x6c\xb0\xd3\xcf\x65\x3f\xaa\xcc\x29\x11\x09\x10\x71\xfe\x4c\x65\xad\x7b\x54\x5f\x77\x6a\xbd\x3a\x21\x2e\xa3\x30\xce\xb9\x3d\xe4\xba\xce\x89\xe2\x65\x17\x14\x57\xfb\x29\xaf\x47\x27\xe2\x57\xde\x2a\xc4\x1b\x4c\x10\xb1\xec\x76\x02\xf1\xe7\x3c\xc0\x64\xfd\x7c\xf3\xc9\x4e\x83\x1c\x95\x7d\xa9\xb0\x49\x97\xa7\x37\xf8\xce\xef\x69\x1f\xdf\xef\xa9\x51\x6a\x6e\xcb\x3d\xb1\xa3\x2a\x97\xe6\x93\x9b\xf7\xa9\x4f\x87\xfd\x09\xc6\x10\xc2\x3f\x26\x93\x38\x46\xaf\x69\xf3\xc1\x7b\x55\xac\x8a\x1f\x9c\x91\x94\xeb\x30\x36\x2c\x03\xa1\xe4\xce\x9f\x75\x72\xe7\xca\x79\x24\x4a\x12\x9b\x4d\x7a\x5b\xfd\xb3\xe3\xaa\xb0\xaa\xa3\x58\x9f\x0d\xb4\xfa\xaa\x2f\x21\x16\x4d\x97\xd5\x49\x04\xf7\xec\x11\x3d\x8f\x9d\x1b\x57\xe0\xd1\x9e\x9f\x7b\xae\xa6\x25\x56\xae\xa2\x28\xe9\x8e\xf2\x22\x8b\x6c\x8e\x2e\xa1\xb8\xa9\xe0\xae\x61\x2b\xb0\xc9\x2a\x4a\xe5\x1f\x97\x8f\x68\xf3\x92\x1e\x29\x9d\x6a\x6c\xfa\x2f\x66\x76\xd5\x55\x8d\xd8\xc0\x77\x95\x7a\xd5\x19\xdc\x4d\xf1\x7b\xdb\xfa\x09\x4f\xb7\x97\xed\x5a\x62\xf3\x88\xe5\xe0\xd1\xb3\xbd\xa0\x1b\xb8\x17\xc6\x8f\x55\xf7\xd1\xaf\xb4\xbf\xb8\xbf\xe5\x59\x68\xef\x69\xd3\xe8\xf7\xd4\xe9\x19\x65\xfc\xa1\x68\x45\x9c\x52\xdd\xaa\x53\x0d\x38\xfb\x76\x1a\x6a\x58\xfe\xbc\xd6\xfa\x9a\xaf\x55\x86\x7b\xf7\xb6\x97\xa3\xd8\xcb\x78\x36\x89\x82\x6c\x0d\x5d\x07\xa7\x0f\xb5\xf3\xa1\x0d\xa3\xa5\x48\xd2\x54\xd1\xbc\x53\xf6\x3b\x17\x14\xf1\xd8\xc4\x79\xfa\x08\x35\x1d\x70\x58\xec\x22\x99\xc6\x8a\xa6\x2f\x6e\xf3\x76\xb4\x15\x55\x73\x68\x1e\x36\xf4\x87\xb8\x8f\x71\x55\x61\x31\x1f\x5e\xf7\x19\xe4\x1e\xcc\x88\xb0\x12\xbf\x4d\x67\x91\xe3\x76\x2e\x4c\xf3\x79\x79\x93\xf3\x3f\x94\x64\x37\xb0\x90\x81\xe2\x81\x51\x33\x16\xef\xc4\xba\x12\x8b\xdf\x4d\xd2\x8f\x42\xaa\x97\x4e\xe3\x30\x5a\x36\x91\x99\x50\xdc\x92\x93\x5a\x9c\x01\x97\x84\xca\xfa\x96\x1a\x4d\x52\xb2\x4e\x99\xe2\x44\x05\xc1\x57\xfe\x44\xe9\x9a\xd3\xc5\x4a\x51\x2e\xbc\xe7\x38\x1d\x75\x27\x94\x97\xce\x35\x6c\x1b\x6d\xa1\x89\x14\x7b\x9b\x92\x3c\x0a\x63\x6b\x12\xea\x9b\x2c\xcc\x73\xed\x83\x3d\xca\xaf\x55\xb9\x14\x76\x73\x4a\x32\x50\x03\x7e\x97\xda\xf5\xc8\xa9\x60\x6a\x84\x89\xc2\x19\xa5\xfd\x7f\x99\x3e\x89\x45\x0c\x6a\x73\xc9\x99\x03\x6d\x53\x6e\x54\x13\xcb\x8e\xc0\x79\xf6\xfe\x58\xe5\xa4\xef\x37\x00\x74\xe8\x47\xb3\xf1\xb9\x76\x36\xe3\xd7\x6a\x1a\xbc\x5a\xfe\x3b\x1f\x2f\xd8\x33\x99\xdf\x6c\x6d\xc1\x2e\x4c\xef\x6f\xcf\xce\x4e\xea\xfd\x5c\x5e\x8a\x34\x60\x94\x5c\xd2\x39\x45\xf8\x3f\x17\x3c\xe8\x6e\xe6\x28\xdf\xed\x91\x33\x97\xa9\xf2\x41\xb3\xea\xc3\xaa\x41\xa4\xeb\xfe\xc1\xe2\x09\x7b\xff\xaa\xe6\x54\x02\x25\x82\xf0\x74\x55\x3b\xa6\x9e\x47\xc3\x9f\xff\x04\xd7\x23\x1d\x3b\x9f\x90\x0c\xec\x4b\x2d\x8f\xc7\x38\xaa\x71\x9d\x47\x15\x05\x2d\x0a\x8b\x07\xab\x72\x59\x0e\xec\xfe\xb5\xb1\x1f\x41\x72\x33\x0f\xdf\x79\x0f\x37\x42\x56\xa5\x6a\xeb\x02\x4a\x8a\x6f\x61\xe8\xab\xd3\x5f\xf7\x87\xf8\xfd\x40\x9f\xef\xb8\x19\x58\xa2\xf7\x2b\x59\x71\x92\x44\xc0\x57\xbb\xe9\x92\x57\xe1\x3e\xa5\x48\x19\xb9\xed\x9a\x24\xa7\xa7\x86\x5e\xcb\x23\xf4\x33\x90\x6b\x6d\xea\x6c\xf0\x7a\x95\xc9\xd0\x40\x7a\xea\xd9\x01\xba\x15\x32\xd8\xf0\xa9\xf3\x87\x75\x2e\xe6\x73\xfb\xdb\x2b\x04\x21\x77\x61\xf7\x01\x9a\x19\x21\x0e\x5c\x57\x1e\x88\xa7\x1a\x5a\x1d\xf3\xe5\x61\x3e\x55\x01\xca\xab\x0a\xe3\x82\x8a\x14\x1c\x31\xf1\x15\xf7\x74\x41\x7e\xb1\xe2\x03\xf9\xe2\x2f\x2d\xb6\x3c\x5b\x84\x6f\x18\xbf\x51\x8d\xc1\x7c\x68\xe0\xcb\xfd\xac\x23\x8d\x2a\x02\x69\xa0\x47\xa3\x90\xab\x93\x3a\x42\x35\x97\xef\x51\x4f\x43\xf2\xd9\x07\x1d\x81\x7a\x88\x42\x06\xcb\x89\x7f\x81\xe0\x0b\xf0\xd8\x45\xe3\x4b\x41\x84\x3f\x50\xa3\xf2\xd0\x64\x85\x05\xee\x1a\x77\xe5\x0c\x21\xaf\xf8\x75\xed\x94\x21\xc9\x81\x22\x33\x51\x22\x20\x02\x27\x9a\x5a\x5e\x9f\x40\x90\xeb\xc2\xb3\xe4\x20\x9f\x17\x53\x1e\x77\x30\xd1\xf1\x93\x1a\x10\x80\x5c\x99\xe4\xa4\x05\xbf\x3e\x56\x84\xf2\x93\xde\xea\xe0\x2b\x9f\x2c\xf3\x2e\x90\xc3\x7f\x8a\xf6\x25\xf6\xf7\x36\x3a\x18\x50\xec\x6e\xa2\x2d\x82\xfd\x71\x96\xfc\xff\x80\x80\x3a\xab\x27\xaa\x7c\x90\x71\xf7\x01\xb3\x52\x05\x62\x7c\x96\x5b\xea\xb7\x35\xf8\xfe\x37\x29\xd2\xe0\xc3\x7e\xa2\x48\x05\x4c\x0e\x47\x2e\xff\xf7\x88\x21\x2a\xe4\x35\x1a\x79\x63\xa9\xbd\x57\x91\xbb\xa5\xa5\x86\xb2\xfd\x35\x85\x1e\x7c\x18\xf9\x12\x90\x02\xad\x8e\x96\x4e\x64\x23\x2c\xcc\x39\x2e\xd3\xd1\x8b\x88\x7f\xb5\x96\x01\xed\x9b\x6b\x0f\xa3\x38\x1a\x46\x09\x6a\x14\x11\xfd\x54\x87\xfb\x89\x06\xc1\x39\x27\x0f\xcb\xbd\x44\x91\xe1\xd0\x9a\x1c\x0a\x6b\x19\xf6\xb3\x28\x2f\xd2\x61\x5f\xb4\x45\x78\xea\x42\x31\x58\x26\x30\x52\xe6\x75\xa3\x15\x9b\xf5\x44\xee\x0c\x4d\xef\x9f\x05\x1e\x57\xf2\xb3\x46\x3f\xfc\xc4\x0c\x44\x53\x54\x31\x88\x24\xc9\x85\x29\x16\x4f\xdb\x70\x47\xa5\x62\x68\x40\xab\x86\x71\xca\x2e\x9e\x28\x8d\x8e\x51\x48\x64\xbb\xa4\xc0\x87\x81\xfb\x6a\x3e\x31\x81\xa1\xa3\x20\x0a\x1f\x77\x17\x93\x0f\x53\x96\xc8\xe3\x32\x4a\x8a\x01\x85\x79\x3d\xab\x20\xac\x51\x92\x17\x26\xe6\x96\xba\xf8\x8b\xe8\x66\xdc\x27\x54\xcf\xcd\xc6\x5d\xaa\xb8\xb0\x84\xa7\x3a\x8a\x32\x7c\x24\xf0\x1a\x06\x53\xeb\xbe\x0b\x75\x4f\x25\x89\x68\x50\x42\xa5\x5a\x40\x85\x37\xc7\x6a\xb2\x74\x5a\xa9\xfe\xac\x70\x4a\xc0\xed\x5e\xfa\x18\x69\xfd\xfa\x03\xb7\x6b\x77\x29\x2d\x90\x53\x9c\xe2\xcb\x6d\xa1\x3b\x2f\xbc\xab\xd6\x33\xcf\xf3\xd1\xf6\x08\xd6\x32\x16\x2c\xa7\x61\x5a\x53\x85\x71\x71\xb4\x91\x5c\x17\xd0\x4d\x88\x37\xeb\x69\xc3\x42\xfb\x4b\x33\x14\x29\x45\x55\xd9\xcb\x25\x9d\xa2\xe8\x21\xd6\x0d\x0d\x62\x8e\x61\x9a\x84\x16\x32\x38\x65\x74\x70\x9e\xc1\x73\xa2\x4c\x7c\xce\x4d\xae\x17\xb3\xa8\xd7\x67\x59\x33\x87\x31\x71\x77\xfa\x89\x8e\xa7\x3a\xec\x5c\x57\x91\xf7\xca\xd6\x9a\xe2\xf3\xed\xa7\x9e\xda\xe5\x9d\x45\x2f\xeb\xbe\xf7\x51\xc4\x15\xfe\x2f\x63\xc5\x5f\x41\xa7\xa2\x62\xf6\xc0\x7f\x82\x14\xd9\xa5\xa9\xfb\xa4\x43\x74\x8b\xd2\x65\xf1\xdf\x7a\xd0\xad\xd1\x70\x19\xa3\x1f\x00\xdf\x34\x27\x8c\x35\x87\xa5\xd9\xd2\xd0\xf8\x26\x62\x43\x6e\xb9\x2d\x55\xd9\x7b\x52\x2d\xd3\x4f\xe3\xbc\xd4\xf5\x61\xec\xa0\xdc\xe5\x8c\xe7\x14\xe5\xda\x96\x77\x9f\xae\x52\xc4\xfd\x19\xf8\x1c\x93\x7e\x65\x64\xa1\x1a\xaf\x1b\x4d\xea\x0e\xe5\xd5\x59\x76\x9a\x16\x2a\x96\xa2\xd9\xfe\xac\x26\x8c\x39\x3b\xdb\xee\x66\xe8\xb8\x6b\x96\xa1\x20\x4b\x9f\xf4\xa6\x7d\x69\x92\x0e\xd3\x98\x87\x9c\xce\x7b\xfe\xb6\x02\x49\xdf\x76\xad\x0a\x53\xa4\xdc\x20\x47\xaf\x83\x31\xbf\x38\xa1\x4e\xd0\xc4\x50\xf0\xf8\x2d\xa7\x84\x72\x84\x9e\x1d\xda\x29\xdf\xad\x64\x16\x2b\x36\xff\xb9\xb2\x5a\x62\x80\x2d\x1d\x18\x62\x55\x47\xcb\x16\x19\x28\x4f\x20\xd8\x2c\x1f\xcb\x4a\x34\xc9\xe9\xfb\x31\x33\xfe\x6e\xa0\x40\x07\xef\x41\x25\x05\x1d\xbe\x7f\xab\x29\xa5\x3f\x0c\x3c\xca\xe9\xb2\x22\x6b\x7e\x27\x50\x55\x3d\xba\x88\xc8\x1f\xb7\xaf\xd3\xb2\xc2\x51\x7d\x06\xcd\x5b\xe9\xe4\xb6\x9e\x7a\x4a\x8b\x5d\xcc\x73\x15\x77\x1f\x4a\xd6\xe2\xc4\x5e\xee\x5b\x76\xd1\xa3\x13\x72\x73\x13\x8e\x8f\x7c\x79\x94\x8a\xe0\xba\x7f\x8c\x45\x8f\x1f\xf1\x1d\x5a\xe8\x38\x59\xde\x1a\xfb\xac\xff\x5a\xa5\x5f\x35\x0a\x97\x77\x28\xe5\xf4\xeb\x9c\x10\xa1\x93\x8d\x0a\x0a\xbb\xeb\xc1\x75\x5d\x08\xe0\x66\x39\x14\x65\x79\x85\x82\xa2\xf4\x4d\x84\x56\xe7\x71\xdf\x0a\x48\xc2\xcc\x92\xab\x1d\x25\xc5\xf8\x07\xdb\x10\xf3\x18\x4e\x37\xf6\x24\x85\x8f\x94\xae\xcd\x7b\x8d\xf8\x8d\xa5\x34\xeb\xa5\x85\x76\x2f\x61\x04\x91\x14\x49\xf5\x4e\xde\xfe\xf6\x20\x1d\x31\x51\x09\x0b\xf0\x16\xee\x3a\xbf\x51\x1a\x0c\xd4\xfd\xca\xa3\x34\x51\x78\xd6\xbf\xd2\x80\xa2\xbf\x52\x3e\xa3\xa6\xf8\xa5\x62\xd2\x9f\xd3\xe7\x35\x1d\xf5\x16\x07\x7f\x35\xff\x93\x33\xbc\xde\x8a\xd9\xbb\xb7\x9d\x9b\xac\x9b\x26\x51\x88\x48\xe2\x60\x12\x2e\xdf\xbd\xaa\x94\xa7\x4f\xb9\xe8\x55\x44\x71\x3c\xe1\xad\x78\xff\x5a\xf1\xa1\xcf\xd2\xf6\x61\x4b\x0f\xcf\x7a\x4c\x58\x0c\xb1\xe5\x0f\xc2\x8d\xca\x1c\xbd\x09\x65\x9c\x8f\xb2\x95\x68\x85\x09\x88\x58\x58\x1f\x2a\x2d\xe3\x0f\x6b\xf7\xfc\xe0\xf4\x7c\xbb\x58\x8d\x42\x3b\xe1\xd9\xb6\x9b\x4a\x57\x06\xf5\xa4\x58\xcf\xd6\x3b\x53\x3d\x9b\xd8\xa4\xb0\x21\xb4\x6c\xf0\x37\x7b\x10\x34\xf8\xcd\xba\xca\x04\x2c\x39\x92\x1d\x54\x1e\x5e\x7e\x48\xa6\x38\xb6\x26\x31\xf1\x5a\x5e\x4c\x55\xfc\x93\x68\x1d\x08\x9d\xd4\x77\x90\x51\x3a\x89\xdd\x93\x6e\xd5\xd5\x35\x44\xcb\x0c\x8c\x1c\xf2\x39\x1f\x54\xe9\xc5\x21\x79\x53\x63\xea\x3d\xdd\xce\x0b\x13\x81\x07\x5a\xb1\x2c\xc6\x9e\xf8\x50\x5b\xd6\xab\x0e\xc2\xe2\x28\x4b\xa0\xda\xee\x3a\x6b\xea\x70\xf7\x6a\x66\x61\xdf\xc0\xb6\x5a\xb9\x8c\x7e\x40\xcf\x99\x25\xa7\xe9\x61\x60\x49\x6f\x5b\xd7\x94\x87\xac\xac\x5f\x0a\x8c\x66\x79\xb6\x11\x78\xc5\x98\xf3\xb5\xf5\xf1\xc2\x0b\x65\xd6\x06\xfc\x0a\x3d\x2d\x24\x3f\x37\x95\xf9\xde\x4d\x45\xc0\xc8\x4d\x02\x4f\x9d\x29\x3f\x4a\x3f\x4e\xa1\xd5\x71\x7a\x3d\x39\xe5\x32\x5d\x1d\xcf\x22\xc7\x1e\x03\xf3\x7e\x6d\xc9\x2c\x4c\xb7\x93\x34\xc9\x6d\x92\x5b\x20\x58\x1c\xd5\xd8\x8d\x65\x6e\xaa\x7e\xff\x31\x45\x24\x5b\x2d\xcf\xc8\x2e\xa8\xaf\xcf\xf2\xad\x82\x04\xbd\xf3\x71\x74\x03\xdc\xbf\x6a\xca\x98\x17\xad\x29\x78\xa4\x22\x06\xe3\x4a\x28\xe0\x8c\xd2\xa4\xd9\xf8\x1b\x9c\xe7\x7b\xe6\xe5\x28\x81\x12\x1a\x7e\xfb\xb6\x8e\x47\x9e\x1f\x41\x68\x41\x7b\xf0\xae\x82\x8b\x7e\x69\x6d\x0a\x60\x10\x5a\xee\xbf\xfa\xf3\x94\x75\x39\x66\xcf\xc2\xb4\xef\xdf\x38\x75\xbe\x7b\xf8\x2c\xfc\xd4\xa9\xf5\xad\x35\x2c\xa1\xc9\x6d\x52\x8c\x32\x8a\x82\x6e\x62\x78\x59\x63\x83\x2f\x37\xa9\x1f\x2c\xa5\x29\xf0\xfc\x9b\x84\xe4\xdf\x3c\xef\xa8\x5c\x99\xcd\x87\x69\xe2\x90\xf5\xb8\x97\x77\xb4\x0d\xde\x9d\x5a\x3b\xee\xe0\xf4\xa1\xb6\x89\xe3\xc8\x24\xa1\x28\xdf\x49\x93\x96\xee\xae\xb4\x6f\xf7\x38\x20\x55\xaf\x87\xc4\x05\xc7\x2f\x94\x8c\xf9\xf5\xfa\xd6\xc7\xb6\x6f\x8e\x54\x2b\xd6\x5a\x8a\x17\x75\xa1\x32\x49\x7e\x4c\x69\xd4\x85\xd9\x28\x92\x98\xc9\x9b\x35\xd0\x1b\xd7\x83\x13\xed\x8a\xcd\xd6\x3e\xe1\x6d\x71\x4f\xa9\x3e\xe9\x87\x00\xc7\xe0\x29\xbc\x8b\x2c\x51\xa8\xd2\x4a\x3a\xe5\x1c\x99\xf8\x20\xeb\xbf\x19\x50\x3e\x23\xf9\x94\x6f\x84\x7e\x84\xbe\x1b\x02\xc4\x4d\xe5\x30\x4d\x2e\x6f\x87\x9c\xda\x69\xcb\x61\x9b\xc1\xae\xc0\xf2\x6f\x75\xb4\x82\x81\x3f\xd0\xe2\x34\x47\xcb\x50\xa3\x09\xd1\x70\xba\xa1\xe4\x8d\xef\x52\xc6\x26\x3a\xf8\x15\x86\x9b\x52\xed\xf8\x6d\x8d\x12\xbd\x1b\x28\xcf\x82\x1f\x8c\xb5\x7d\x64\x79\x51\x52\xde\xd5\xa5\x42\xf7\xb7\x97\xb2\xc8\x26\x5d\xda\x18\x00\xe7\x9e\x0d\xbc\x72\xdf\x59\x8d\x7f\xf9\x67\x8d\xe6\x3a\x61\x3f\xcd\x84\xee\x80\x5f\xc6\x96\xb7\xfc\x46\x0d\xe0\xcd\x12\xb9\xe3\x02\x49\x82\x40\x79\x1c\x57\x81\xb2\x12\x9d\x7c\x7e\x8d\x54\x93\xff\x95\xea\x19\x65\x36\x29\xca\xa3\x72\xe6\x80\xa7\x6c\x3b\x5a\xaa\x56\xdb\xb7\x79\x6e\xe3\xc2\x72\x65\x2c\xb7\x59\x0d\xec\x6f\x54\xb2\xde\x2c\x1a\x4c\x78\x40\x1f\xc0\xe4\xce\x7b\xa4\xfc\x23\x3c\xcf\xfb\x8e\x37\xb1\x94\x66\x36\x34\xb9\x07\x16\x3a\xad\x32\xb7\x31\x60\xa0\x86\x1c\xe5\x8a\x12\x58\xcc\x4c\xf9\x57\x68\x63\x32\x5f\x99\xd6\x02\x12\x26\x9e\x4e\xe2\x23\x5e\x1d\xfb\x05\x53\x47\xf1\xcd\x1c\x68\x2f\x45\xb9\x17\x98\x12\xb9\x37\xff\x34\x8f\x56\x2c\x9f\x68\xa7\xa1\x5e\x61\x34\x34\xae\x4d\xa0\xd1\xfe\x20\x59\xb4\x4b\x6c\x51\xe5\x9b\x66\xb7\x15\x59\xe7\xb6\x12\x9d\x59\x34\xe6\xef\x13\x1a\xcb\xa9\xed\x3a\xc7\xdd\x07\x90\x55\x00\xe3\x76\xb5\x22\x51\x17\x8f\xf2\xed\xe5\x3f\x44\x61\x08\x0e\x8e\xc0\xc3\x2b\xbd\x71\x5a\x21\xae\xb7\x5d\xae\x47\x2d\xd2\x88\x9c\xff\x44\xad\x71\x33\x3b\xdb\x0e\xb3\xa8\x88\x42\xe5\x9b\x70\x5b\xf9\x26\xdc\xae\x9d\x35\xfb\xe6\xda\x26\x8e\x2c\x72\x53\x54\x70\x50\x1d\xe7\xd7\x9a\xe9\x42\x7e\xb5\x4c\xaf\xd2\xee\x13\xfc\x3a\xf0\x83\xae\x3c\x4d\x93\x5d\xf4\xef\x98\xd0\x1c\x54\x24\xa1\x7d\x67\x15\xec\x08\xe4\x55\x0f\x75\x7c\xfe\xf8\xc7\x81\x9a\xa7\xbd\x17\x94\x95\x99\x94\xb1\x7e\x75\x5d\x2b\x37\xc1\xe6\xb5\x86\xc1\xdc\x0c\x41\xb2\x97\xd6\xdc\x1a\x91\x3c\xab\xe5\x8c\xe4\x8e\xaa\xe3\x3a\x22\x3b\x51\xf6\x8d\x62\xf5\x04\x85\xf4\x3d\xa2\x65\x07\xc2\xbe\xed\x8e\x62\xdb\x9d\x2c\xe3\x55\x25\x49\x47\xe2\x71\x25\x50\xad\x97\xef\x29\xe9\xed\xf7\x9b\xd4\x64\xed\x4b\xc3\x38\xcd\x2c\xb5\x94\x45\x00\x87\x36\x82\xb3\x1b\x76\x78\x18\x80\xdd\xc1\x68\xde\xd6\x79\xcc\x49\x8e\x44\x83\x28\x31\x9e\xa8\xec\x78\x21\x8e\xc7\x74\xb4\x06\x5f\x5c\x98\x6e\x57\x3d\x2e\x0f\x4e\x3b\xfc\x9b\x27\x16\x9e\x0c\xfc\x79\x55\x44\xbd\x7e\x61\x13\x3e\xaf\x30\x06\x43\x23\x94\x5f\x6f\x6d\x19\x95\x65\xd5\xcc\x81\x29\xbf\xf4\x58\xf3\x0b\x79\x08\x1b\xd1\xba\x13\xc5\xc9\x11\x72\xf2\x8c\x69\xc6\x31\xaf\x5b\x9a\xc6\x5d\xcc\xce\xb1\x25\x6e\xa1\x6b\xac\x5b\x49\xc8\x25\xff\xa5\x7e\x14\xc7\x1b\x3c\x54\xe6\xdb\xa1\x01\x23\x45\x41\xc7\xe8\x66\x09\x8c\x6c\xeb\xcd\x9a\x39\xd0\xee\xa6\x03\x9b\x8b\xbf\x91\x5f\xa4\x87\x95\x17\xd4\x61\xc5\x26\x58\xcc\xac\x59\xa6\x4b\x77\x56\xfc\x07\xa7\x9d\x27\x48\x4b\xd9\xf2\xfb\x34\xee\x14\x25\xc4\xf2\xbb\x1b\x84\x8a\xf2\x34\xee\x6a\x58\xfe\x61\x3d\x32\x39\xac\x28\x37\x66\x95\xac\xbf\x26\xf4\x8d\xe0\x42\x1c\xc1\xe5\x3b\x81\x82\xa2\x9f\x1d\x7b\x5f\x04\x33\x2a\xd2\x81\x71\x3e\x4e\xe5\x3f\x72\xee\xc0\xae\xf1\xb6\xa1\x5a\xab\x4b\x71\x9a\x45\x5d\x33\xa9\xd1\xfa\x0c\x51\x13\x1b\xf0\xf2\x0f\x51\xab\x5d\x43\xd4\xc5\x2a\xff\x77\x8d\xe0\x98\xf2\x8b\xf9\x54\x75\xe2\x72\xe5\x3a\x11\x71\xb9\x0a\x36\x66\xf8\xd9\xed\x8a\x33\x0e\x8e\xaf\x60\xa2\x94\x34\xf7\x86\x3a\x64\x18\x63\x8c\x6d\xf1\x8d\x40\xd1\x74\xeb\x64\xc2\xd9\x59\xf0\x68\x34\x8c\xea\xac\x82\x51\x9d\xad\xd5\x0b\x65\x76\x99\xd9\x22\x4a\x4c\xac\x24\x8b\x7f\x48\xab\x5b\x07\x2f\x74\x25\xb4\xca\x02\xa1\x50\x6c\xb7\x45\x7d\x10\xd6\x27\x03\x05\x50\xc4\xca\x9a\xd0\xf5\x90\xc1\xef\x4e\x28\xcd\xd0\xf7\x70\x6e\x60\x04\xc2\x66\x6a\x40\x7b\x1c\x76\xfa\xd9\x31\x3a\x27\x13\xca\x2e\x73\xac\x1a\xc1\x57\x14\xdd\xff\x52\x13\x30\x37\xb3\xd4\xcd\xed\xb6\x54\x17\xf2\x4c\xa0\xe0\x87\x67\x1c\x70\x2f\x1a\x0c\x47\x49\x54\xb0\x51\x9e\x94\xe6\x9e\xfb\x70\xb1\xa9\x57\xf8\x72\x9a\x56\xf0\xd4\x63\xd5\x9c\x54\x29\x51\x19\xe0\x2b\x2d\x95\xe3\x4a\xef\xe6\xb8\x4a\x89\x42\x93\x65\x91\xcd\xa9\x2a\xc6\x19\x8a\xbe\x37\x46\x3b\x0f\x00\x9b\x2a\xeb\xdc\xb7\x45\xff\x41\xd1\x9f\xf0\xa0\xc9\xc7\xd6\x7d\x9d\xfb\x24\x8e\x77\x61\xb3\xc9\xc5\xae\x9a\x22\xf4\x36\xed\x4e\x23\xd4\x65\x3b\x7f\xa6\x1a\x29\x7f\x54\x49\x0a\x48\xe1\x6d\xce\x67\xac\xca\x58\xbb\xc9\x62\xee\x50\x7b\x98\xd9\xa1\x71\xd8\x68\x67\xc5\x3f\x3b\x2b\xaf\x95\xe0\x40\x66\xe3\xc8\x92\xe5\xe5\xc2\xb4\x88\x28\x2b\xd7\xf7\x93\x4d\xe6\x05\x9f\x69\x0f\x4c\xf6\x92\x00\x03\xb1\x63\x6f\xe8\xed\x7b\x43\xb5\x05\xca\xc8\x38\x30\x85\xdd\xed\x05\x10\x79\x74\x87\x4e\xce\xef\x8e\x7d\x01\xf5\xea\xb8\xe2\xfa\xe8\xb1\xa7\xb7\x03\x3f\x0e\x38\x8c\x8c\xdf\xc9\xed\x94\xd7\x28\x56\xf2\xb4\x7f\x59\xc5\x14\x35\x1b\xef\xf2\x26\x9f\x88\x5e\x64\x92\x22\x9f\xd4\xb9\xf0\x5b\xf8\x23\xde\x13\xca\x7c\x95\xfb\xde\x68\x83\x5e\x56\x33\xa1\xc2\xbe\x64\xf2\x5d\xf4\x23\x30\x6c\x58\xc7\x8f\x10\x61\x60\xd5\x75\x9e\x5c\xc7\x57\xc9\x19\xed\xfd\x36\x99\x37\xcd\xcd\x7c\xfa\x5a\x94\x3a\x18\xc9\xb2\xc6\x2a\x7e\x9b\xf0\x2c\xfc\x52\xcc\xd3\x64\x57\x4b\xa9\x17\x95\x9f\x2b\x0e\xe6\x65\x70\x41\x7b\x67\xd7\xba\x46\xf5\x00\x22\x4e\xf1\x7e\xf5\x51\x80\x82\x54\x7c\x96\x2e\x1b\x0f\xa9\xe9\x37\xfe\xe6\x63\x18\xa9\xa0\x9c\xfa\x74\x67\x8f\x92\x46\x2f\x76\x2a\xbb\x0b\x6a\x05\xcb\xd4\x9f\xfe\x9e\x59\xe8\x58\x21\x08\x75\x9b\x4a\xcd\x1e\x17\x2c\x47\x91\x12\xf1\x3c\x37\x56\x15\xe7\xa9\x26\x91\xf3\x45\xbb\x24\xe9\x11\x9d\x01\x0f\x3f\xda\x51\xd4\x40\x8c\xf5\x45\x4b\xbf\x3c\x40\x71\x88\x4f\xad\x3b\xc5\x94\x74\xa9\xb0\x19\x4c\xb9\x34\x58\x18\x37\xf9\x31\xb4\xd3\x69\x09\xfe\xdc\xdf\xed\xf8\x31\xc3\x03\xeb\x5b\xb3\x80\x39\xe8\x08\xd9\x24\x37\x85\x34\x31\x9c\x00\xb4\x12\x43\xf5\xfb\xa2\x4c\x18\x96\xa3\xa4\x37\xe5\x75\xb0\x58\xef\x5e\xd4\xc6\x7d\xd6\x71\x23\xf0\x09\xe0\x51\x02\xcc\x08\x76\xd6\x67\x15\xd9\x5a\xd7\x66\x2d\x65\xcc\x7a\x11\x81\x82\xdf\xd4\x0e\xb0\x7d\x73\x50\xf0\xe3\x28\xe1\x48\xa8\xce\x07\xf1\xa2\x6b\xf9\x46\x99\x61\x63\x4c\x5c\x3e\xcf\x3d\x69\xcf\x2e\x3c\xc2\xeb\x0a\x98\xa8\xed\x94\xa4\x57\x9c\x26\xc4\x94\xb4\xbc\x04\x9c\x57\xff\x5d\x2d\x25\x7f\xe1\x85\xb6\x19\x96\x31\x2b\x29\xa0\x3d\x36\x07\x17\xc7\xcd\x4b\x8d\x12\x21\xa3\x61\x66\x07\x96\xdd\xd7\xb1\xed\xde\x52\x64\xed\xb7\x54\x59\x39\x18\x65\x5d\x92\x1c\x72\xd0\x52\x60\x9a\x38\xad\x52\xc3\x9f\x3f\x6d\x98\x73\x3f\xdb\x36\x8b\xe9\xa8\xa0\x7e\x37\xea\x02\x98\xe8\x81\x6c\x06\x5f\x40\xdc\x93\xc3\x9a\x78\x36\x08\xad\x55\x58\x44\xb6\x9b\x16\xc9\x27\xb7\xf8\xac\xc9\xc2\x3e\x15\xbc\x38\x67\xd1\x7e\x73\x32\x7f\xde\xea\xf4\x77\xc6\x95\xa4\x47\x11\x82\xf3\x7c\x34\x18\x96\x2b\x8e\x24\x8f\x71\x21\x37\xd1\xa8\xc1\x6f\xdc\x45\xbf\x97\xad\xd2\x28\x89\x14\xa1\x2e\x95\xa7\x45\x89\x11\x27\x71\x2c\xb8\x6f\xab\x94\xf7\xdb\x4d\xea\x11\x43\xb3\x96\xa5\x71\x3c\xa9\xc6\x14\xcc\xaa\xd4\xb4\x15\x44\xba\x3b\xca\x73\xf1\xaa\x83\x1d\xe4\x49\xb4\x42\xc6\xe8\x13\x1e\xa8\x79\x8c\xa2\x82\x70\xa0\x29\xfe\x7f\xb5\xbc\xfe\xd7\x4f\x07\xde\x26\x9a\xcc\x1f\x6c\x97\x12\x68\x9c\xcb\x8f\x92\x58\x28\xba\x8b\x17\x11\xbf\x1c\x60\x60\xc1\x2b\x4d\x69\x73\xa1\x26\x44\xe8\xa2\x2d\x26\x54\x06\x7d\x4a\x39\x5b\xbe\x8b\x3f\x66\xaf\x87\xc0\x2f\xaf\x7c\x79\xad\xcc\xa7\xab\xc8\x74\x0f\xe4\x3b\x8b\x67\x55\x1d\x34\xa4\x54\x50\xb1\x2b\x8a\x2a\xa6\xcf\xd7\xf2\xfa\xa7\xdb\x61\x6c\x72\xb0\xba\x74\x54\x10\xce\x92\xc2\x23\xbd\xed\xee\x10\xfd\x49\x96\xa6\x83\x09\x05\x2c\x40\x2b\x4e\x90\x33\x2d\xe5\xe1\xd8\x24\x20\x3e\xb4\x32\x07\xe1\xfe\x6d\xa0\x7b\xb9\x1e\x79\xb6\x14\xc5\x36\xcb\xa9\xf0\xc2\x1c\x10\x3a\x3d\x4e\x3b\xc2\x2b\x3f\x33\x1e\x5d\xf0\x7f\x0d\x1a\x6f\x66\x48\x66\x25\x16\xf2\x26\x4e\xbc\xd0\xf5\xd2\x8f\xa8\xc0\xcc\x3c\x46\x5c\xce\x4f\xbd\x48\x75\xd8\xa7\x5c\x66\x52\x09\x47\xbe\xa6\x40\xe0\x0c\x33\xc2\x4a\x44\x1f\x8a\xe7\xf4\xb5\x25\xbe\x30\xdf\x2e\x32\xe3\xda\xc7\x38\xa6\x3f\xc2\x45\xf0\x1b\x37\x59\x5f\x34\x51\x9c\x8e\x30\xeb\xc3\x7c\x77\xb2\xe3\x09\xe6\x93\x35\xb9\x22\xd2\x3a\x26\x5b\xe4\x96\xba\xd6\xb3\x81\x1e\xa4\xf9\xd3\x7d\xf4\xf2\xcb\xaa\x09\x7c\x4d\x35\x81\xaf\x7d\xac\xcd\x75\x5e\xa4\x99\x50\x2e\x10\x41\xce\xf3\x40\x09\xcd\xd8\x6f\x6a\xe1\xfc\x4b\x41\xd5\x39\x2e\x4a\x42\x9e\xc5\x88\xda\x57\x79\x31\x22\x41\xbc\x75\xdf\x1c\x9c\x9e\x6f\x27\xa6\xd5\x3a\xf0\x9c\xa7\xbe\x2e\xcc\x7f\x2c\xf5\xf5\xf9\x99\x03\x65\xbe\xc0\xdd\x75\xd1\x6d\x56\xd4\xf4\x0b\x4a\xf1\x31\xb7\x61\x46\xb2\xc8\x6c\xaf\xc7\x3e\x5d\x74\x0b\xc4\xb3\xab\x49\x2d\x70\x48\x10\x20\x40\xf7\x58\xd5\x82\xb6\x19\xa2\xe0\x87\x98\xb7\x0b\xf0\x5d\x0e\xb9\x70\x29\xcc\xa7\x94\xc3\xc6\xc5\xca\x34\x95\x39\x03\x08\x2b\x8f\x75\x7c\xcd\x71\x4e\x8d\x49\xfe\xf8\x91\xf5\x27\x55\x63\xf1\xc5\xd1\x8a\x4d\x8c\x2b\x43\x9c\xef\xcb\x9c\xb3\xae\xfd\xd7\x0a\xef\x69\xb2\x74\x94\x03\xef\xc9\x50\x29\xba\x4e\x81\x4d\x79\x82\x4b\x1c\x2d\x5a\xb4\xa2\xc4\xfd\x85\x6e\x1f\xbf\x69\x94\xa0\x1f\xa6\x43\x44\x28\x06\x99\xd0\xdd\x10\xc0\x49\x1d\x1a\xb8\x98\xa6\xb9\x13\x78\x42\xff\x82\xbd\x72\xf9\x4d\xb0\x35\xfd\x91\x85\x57\xd6\xb7\x99\x80\x4c\x70\xdc\x12\xb5\x40\xb4\x56\x34\xad\xf3\xac\x9a\x31\x46\x49\xd8\x47\x7f\x4a\x6c\x92\x7d\x4a\x78\xde\x6d\xb4\x41\x9a\x44\x45\x9a\xed\x50\x1d\x7f\xce\xff\x91\x63\x5c\x1f\x2b\xc9\x15\x1c\xa6\x88\x17\xef\x92\xe7\x38\x42\xf2\x51\xca\x89\x71\x08\x42\xd4\x1f\xad\xa1\xd6\xba\x42\x05\x17\x6b\x0f\x95\x61\x03\x9d\x80\x49\x82\xe1\xe3\xaf\x4f\x62\xe7\xe0\x60\xdb\xb3\xee\x6b\xe1\x1b\x4a\x43\xf3\x57\x48\x98\x4d\x5a\xa0\x13\xde\x63\x7d\x52\x4f\x4a\x76\xac\xab\x95\xf0\x77\x3a\xce\x2c\xef\x4f\x1f\x21\xd5\x4f\x84\xac\x5b\x34\x99\xc1\xd7\xf1\xe0\x01\x3f\xf7\xa3\x26\x8f\xb3\x22\x8b\x7a\x3d\xc1\xfc\x39\xff\x00\x37\xc4\x3f\x17\x3c\x5e\xf5\x88\xb4\x79\x6e\xbb\x2d\x4c\xf3\x80\xbc\xb8\x8e\xce\x19\xbf\x51\x7b\x51\x39\x72\x4d\x2a\x0e\x1c\x16\x29\xf6\xc8\x47\x94\x58\xf1\x6b\xfa\x5a\xfe\x37\x8a\xbe\x43\x60\x43\x84\x4a\xf4\xb8\x61\x7e\xcc\xaf\x1b\xa4\xb4\xda\x51\xd2\xb5\x2f\x59\xb8\x3c\x09\x6c\xbd\x5e\xe6\xa1\xb0\x9d\xea\xf8\x93\xb9\x6f\xb3\xdc\xc6\x4b\x93\xde\x15\xe4\x47\x00\xc4\xe0\x43\x6e\x56\xb8\x1b\xe5\x6f\x90\xd9\xa9\xdf\x92\xd1\x60\x98\x66\x05\x14\x35\x9c\x35\x46\xf9\x08\xdc\x57\x7b\x8a\xcf\x55\x65\xe4\x71\x4b\x79\xb1\xb3\xd1\x0f\xff\x07\x45\x72\xc8\x87\x91\x8d\x57\xd2\x9e\x8d\x79\x1a\xa3\x4a\xae\x79\xa7\x7a\xac\xfb\x00\x59\xf1\xf2\x64\x45\xe8\xd5\xef\x91\x3b\x8a\x5f\x7a\xb6\xaa\xf9\xaa\x0d\x91\xc2\xee\xf6\x96\xb3\x28\xbe\x37\x56\x0a\x30\x1b\xc8\x19\x11\x44\xae\xab\xe2\xec\x1e\xe5\x8c\xfc\xff\xff\xcd\xad\x87\xb2\xa2\x08\xfb\x59\xda\xf5\x7a\x69\xae\xbc\xf5\xa2\x2c\xe7\xd5\xb6\x2f\xeb\x9f\xed\x5e\xd7\xe3\x52\xa0\x66\x46\xaf\xea\xd9\x81\x1e\xb9\xfd\x11\xfd\x3a\xa1\x2a\x57\x1c\x8e\x1b\xa8\xb8\xa3\xac\x67\x15\x16\xed\xbc\x92\x08\xaf\x03\x0b\xe6\xe6\xda\x43\x13\x2e\x9b\x9e\x6b\x97\x4b\xc7\x55\x57\xa8\x7e\x81\xf4\x6d\x3c\x18\x15\x2d\xad\xe0\x75\x18\xd7\x2a\x45\x41\x93\x11\x61\x96\xae\x44\x5d\xab\x4c\x4d\xb8\x50\x92\xce\xde\x83\x8e\x6d\x67\x8a\xdd\x5e\x1d\xea\x86\x0e\xc1\x98\x61\x52\x29\xfd\xdf\x7e\x72\x5d\x23\x48\xb1\x28\x11\x31\x1e\xe9\x78\xdb\x83\x4d\x25\xcd\x01\x59\x1f\x20\xce\xee\x53\x3d\x49\x9f\xfa\xe7\xbf\x4c\x43\x5a\xb4\x1e\xee\x6b\x7e\xed\x8a\x89\x62\xce\x27\xf0\xc9\xbb\x3a\x8a\x15\x7b\x5b\x59\xfb\xdd\xd2\xe6\x2d\x7d\x93\xdb\x29\xe5\x30\x78\x49\xb9\x65\xfc\xdf\x5a\x1d\xe2\xc7\x0a\x8e\xf1\xbf\xaa\xa9\xf1\x55\x55\xeb\xa4\x61\x68\x72\x62\x8f\xb7\x7c\x33\x68\x43\xeb\x49\x6e\x28\xe4\x8d\x7d\x69\x18\x9b\x28\x69\xa9\x63\xbb\x6a\x0c\xfb\x90\x96\x29\x12\xca\x25\x36\x4d\x65\x07\xd5\x2d\xa8\x88\x07\xb7\x96\x75\x31\xc8\xc7\xc9\x76\x42\xd9\x4f\x9e\x68\x32\xac\x5c\x32\x51\xc6\x4d\x73\x74\x40\xde\x51\xe0\xcb\x77\xd4\x40\xb2\xe8\x47\x09\x61\xf9\x15\xbb\x6a\x43\xa1\x61\x37\x1c\xfc\x80\xda\xe1\x53\x3e\xb1\xe1\x2e\x92\x68\x80\x2a\x3a\xd8\x27\x3b\x3e\x0a\xbe\x89\x80\x89\xbc\x62\xf7\xba\xaf\x02\xf3\x51\x3e\x24\xc7\xee\xb9\x39\xee\x73\x61\xc8\xcf\xaf\x2b\x2d\xc9\x62\x34\xa4\xf5\xcb\x34\xfd\xc0\x57\x4a\xe7\x54\x5d\x99\xd9\x81\x89\x92\x7c\x87\xef\x3c\x42\x2a\x0e\x7d\xe0\xdb\xf8\xb9\xc8\x65\x2f\x81\x33\xc0\x08\x86\x40\x89\x3a\xa0\xe0\x66\x30\x0b\xba\xde\x82\x73\xf0\x4f\x3b\x19\x29\x42\x14\x12\xc9\x6f\xe9\xac\xf2\x5b\x2a\xaa\x97\xd5\x4d\x97\x5d\x20\xc4\xd1\x55\xb9\xbb\x36\x85\xb5\x61\x66\xc3\x28\x97\x86\x83\x5b\xb2\xce\x1c\xf3\xc7\xb5\x24\x6a\xfe\xb9\xfd\xed\xa8\x6b\x19\xbf\xc6\xc6\x9f\x74\x9b\xbc\x09\xa8\xa3\xfd\xb1\x4d\xcb\xcc\x81\xcd\xd3\xa4\x1f\x78\xba\x72\xaf\xd3\x51\xf1\x73\xe5\xd7\x8a\x9f\x77\x99\x10\x60\x4b\x7f\x48\x69\x0d\xc2\xe5\x09\x6d\x4c\x70\x12\x85\x0a\x96\xfa\xc3\x24\xe0\xcb\x85\xf4\x6b\x48\x7e\x91\x74\x7c\x44\x70\x4e\x80\xba\x8f\x07\x5e\xc8\xe3\xbc\x3a\xcb\x1e\x59\x57\xca\x85\xf7\x01\xc5\xc4\xe4\xe2\x38\x56\x98\x33\xf1\x9e\x39\xc0\x0f\xe6\x4d\xaa\x00\x10\xed\x1f\xa8\x74\x1d\xef\xb0\x8c\x0c\xba\xbd\x13\x88\x5b\xe8\x09\x5f\x0f\xca\x30\x84\x92\xe9\xb4\xf2\xd9\xde\x44\xbe\x4c\x5f\xf2\x3b\x9f\x22\x06\x07\xee\xf9\xb6\x8e\x4a\x7b\xef\x62\xc5\xa0\x7f\xcf\x82\x52\xb8\x96\x89\xf5\x26\x74\xe1\x30\x4b\x7b\xe4\x39\xdb\x72\xc6\x79\xd0\x84\xe1\xd7\x4a\x46\x27\x29\xa2\xc4\x26\x05\xcb\x39\xe0\xe8\x7d\x73\xec\xc1\xf8\xdb\x3b\x0a\xdd\x3c\xb1\xae\x48\x18\x66\x18\x15\x26\x8e\x5e\xc6\xe4\xc6\x73\x0f\x08\xc4\x21\xac\x04\xd9\xcc\x8b\xe9\x60\x31\x9f\x50\xf4\x7e\x68\x1d\x08\xa5\xbf\x7c\x38\x02\x5d\xf5\x79\xea\x33\xcf\xe5\x53\x9e\xad\xf5\xf5\x47\xd0\xfc\x44\x9c\x00\x9e\xcc\x61\x75\xe7\xe6\xe6\x37\x5b\xfc\x30\xc4\xc3\xb1\x9e\xf9\xc3\xc6\xa5\x80\xec\x0d\x9e\xec\x15\x24\xb0\x18\x07\xc0\xc3\x1f\xb5\xfe\x31\x35\x54\x1c\x44\x71\xd7\xae\xae\x29\x52\x2f\xd0\x8c\xfc\x7a\xfd\x61\xe5\x67\x52\x7e\xc3\x1e\xe5\x8d\xa6\x95\x05\xef\xd3\x39\x80\xe3\x1c\xbd\x04\xf4\x8e\x6f\x62\x75\x63\xa9\x03\xa5\x2d\x32\xa2\xe5\xd7\xc8\x0f\xa2\x7b\x81\x90\x77\x13\xb9\x84\xb8\xfb\xb6\x9c\x7f\xf6\x35\xe2\x41\xb0\x74\x1b\xa1\x8a\x44\x3b\x54\xce\xbb\x70\x94\x75\x3d\xd5\x17\x51\xe8\x36\x7e\x25\xbf\x09\x1e\x77\xdd\xa8\x30\x4d\x56\xa2\x24\x14\xdd\x2d\x9c\xfb\xa7\xb4\xff\xdc\xa9\x26\xd1\xf9\xc4\x44\x59\xba\x18\xb5\xfc\x3a\xba\xa8\xc5\x7d\x2e\x36\x89\xca\xee\x6f\xaf\xa4\xce\x7f\x5c\xc4\x3a\xe8\x92\xf9\xcd\x78\xb7\x9f\x09\x4c\x6a\x1e\x01\x1e\x21\xd6\xc2\xdb\x0a\x08\x73\x12\xd1\x00\xff\xea\xbe\x82\x19\x87\x69\xba\xdc\x52\x28\xf1\x0b\xfa\xf2\x2f\x04\x4f\xa8\x7f\x38\x58\x4a\xb3\xc2\x2c\x8a\x88\x23\xce\xf6\x77\x28\x9a\xf0\x6b\xaf\x07\xfc\xff\xc3\xe0\xc9\xc9\xd9\xd9\x78\xc9\x64\x16\xad\x79\xd1\x2d\xf1\x67\xdd\x6e\xaa\xee\xb0\x1b\xef\x52\x06\x23\xa6\x18\xca\x83\x2b\x4e\x13\x3b\x85\x25\xaf\x9a\x83\xcf\x72\xc4\x83\x8f\x38\x1e\xfe\xa4\xd2\x97\xe6\x07\x81\x3b\xf4\x93\x5a\xa3\x70\xef\x4c\x19\x91\x27\x15\xb6\x0b\x93\x45\x87\x80\x74\xf0\xc5\x0b\x81\x67\x82\x9c\x54\x59\xe3\x62\x96\x2e\xdb\x64\x42\xd9\xdd\x5c\xe3\x5e\x03\x58\xcb\xeb\x58\xc7\x80\x42\xdc\x68\xe2\x80\x0c\x6d\x96\x47\xb9\x74\x51\x9c\xd7\x84\x32\x9e\x70\x14\xec\x30\x1d\x0c\xd2\x64\x52\xc3\x89\x2f\x2a\x8c\x1d\xfa\xf5\x88\x32\x4c\xff\xc7\xb6\x3c\xdd\x00\x6c\x3b\xd4\x1e\xf6\xd3\x22\xe5\x11\x3c\xdb\xba\x52\x44\x10\x8b\xd7\xfa\xcc\x7b\xa6\x1d\xa7\x8b\x8b\x8e\x01\xcf\xa5\x4b\xd5\xb0\x42\x25\x9a\xbd\xc4\x24\x05\xd5\x6c\x4e\x28\xbd\x8c\x96\x72\x8a\x7b\xd0\xc4\x23\x1d\xdf\x08\xdd\xa1\x4a\xf7\x5f\xdb\x37\xa3\x2d\xc1\x70\x49\xd2\x67\x6a\x02\x9e\x9a\x24\x1a\xf8\x99\x0d\x62\x1e\x6c\xa1\xf8\xb5\x8a\xb7\xdd\xa2\x3f\xa1\xca\x39\xd4\xae\x68\x27\x02\xab\x25\xe9\x9a\x87\x3a\x0d\x4c\x6c\x77\xf8\x9e\xdd\x2d\x82\x47\xa2\x6d\xfd\xa3\x40\xe5\x20\xe7\x14\xa6\xed\x5c\xa0\x0c\xa1\x31\x27\xe4\xbf\x50\xce\x73\x27\x9b\x00\xc9\x99\xcd\x8b\x2c\x0a\x8b\x96\x17\xbe\xe4\x92\x55\xda\xf2\x5b\x6f\xc1\xc2\xf4\x7e\x58\xbf\x26\xcc\x00\xdc\xa4\x27\xba\x59\x77\x96\xa4\xc1\x6f\x16\x2d\xf2\xe3\x77\xae\x47\x4a\xb5\xb4\x01\xa1\x9b\x99\xc2\xf2\xea\xc3\x0e\xfd\x09\x56\x37\x62\xc3\x49\x3f\x86\xbc\xf9\x4d\x3c\x2b\x3c\xf7\x2b\x15\x25\xc9\x6e\x0c\xcb\x24\x87\x56\x75\x60\xfb\x37\x50\x00\x0a\xf2\xbe\x3c\x56\x90\x5c\xdc\x0d\x94\x21\x18\xef\x7b\x74\x89\xbe\x43\x4f\x8d\x5f\x53\xaa\x82\x43\xff\xaa\x83\x40\x10\x23\xad\x0b\xf6\x10\x32\xad\x4b\xb8\x89\x38\x35\x26\x51\xfb\x48\x48\x69\x39\x26\x12\xbb\xc8\x8a\x55\xb9\x0f\xa7\x2f\x9a\x7e\xa2\x60\xc8\x58\x5e\x52\xfb\x3d\xe4\xba\x5b\x45\x9a\xc9\x38\x1a\x09\x5a\xe5\x9b\x26\xd6\x35\xd0\x9a\xee\x15\x4e\xb4\x8b\xc1\x16\x70\xd5\xec\xec\x42\x7b\x6e\x6e\xd2\xcf\xd5\xd1\xfe\xd4\x6e\x64\x78\xfd\xb6\x3a\x49\x3f\x08\x3e\x5d\xfd\x94\x99\x03\xd2\xd6\xfb\x64\x79\x4a\x8a\x29\x53\x79\x7a\x62\x2d\xbf\x8f\xa4\x0b\xe7\xed\x4f\xc7\x6a\xa6\x7f\x1a\xa4\x22\x5c\xe1\x1f\xe0\xb7\x42\xe5\x6d\x5b\x87\x52\x21\x3c\x96\xf7\x91\x4e\x62\x13\x9f\xa4\xc7\x22\xb4\x21\xcd\x9b\x23\xa6\xae\xd8\x5a\x51\x1e\x20\x8d\x41\xa5\xdc\x7c\x1f\x8d\x2b\x2c\xa5\xcb\x81\x77\x18\xf9\x16\xc7\x56\x34\xbb\xaf\x21\xfb\x62\x26\xf9\x58\x59\xa2\xc3\x8d\x0d\xb8\xbc\x7b\x28\x4d\x90\xce\x4e\xd0\x06\x44\x51\xcc\x0e\xbe\xf8\xca\xed\xb5\x29\xb0\xb4\x41\xd9\x2c\x7c\xc2\xe3\x97\x39\x7f\x90\x44\xc5\x77\xa6\xb7\x75\x1e\xd3\xe3\x14\x62\x06\x03\x04\xcb\xd2\x07\xf4\x88\xd0\xf9\xc0\x6d\xe1\xd7\xf4\x19\x22\x8f\xf0\xa8\xea\xa4\x02\xab\x88\x4e\x91\x23\xc2\x97\xb7\x50\xa1\xc0\x9f\x75\xac\x78\x3f\xd8\x79\xb7\xa9\xfb\x96\xaf\xda\x38\xb6\x5d\x6a\xa5\x63\x05\x9c\xd6\xd6\x15\x77\xb4\x0f\x50\x3d\xfc\x13\x68\x2b\x1b\x45\xb9\x4c\xa6\x51\xfc\x80\x69\xc2\xaf\x2b\x30\x66\xd3\x33\xc9\x4e\x8f\x89\xe4\xd8\x25\x02\x81\x2d\x27\x87\xf6\x3a\xdd\x15\xc0\x5c\xb9\xc3\x26\x3d\xb9\xf2\xc9\xf3\x1f\x50\xac\xe5\x7f\x44\xab\x9e\xff\xd8\x37\x94\xa3\x6e\x6c\x18\xe8\x8d\x32\xf7\xa7\x5a\x07\xe6\x3c\x3e\x59\xb8\x81\x0f\xf9\x52\x39\x4e\x57\xa9\x93\x86\x94\x6a\x8a\x56\x88\x60\xb4\x3d\x71\xfe\xeb\xb8\xd5\x58\x53\x27\xe8\xd7\x00\x3a\x79\x47\x69\xac\x4d\x34\xd9\x59\x24\x36\x2a\xfa\x36\x9b\x28\x6b\x3d\x10\x5d\x6f\x07\x4a\xff\x12\x9a\xbd\x02\x80\xdf\xda\x6d\x20\x5b\x6e\x93\x71\x8e\x22\x38\x9e\xf2\xe7\x62\xf8\x79\x4b\x01\x33\x99\xfc\x8b\xd0\xfc\x7b\x6e\x18\xa2\x8c\xfc\xb1\x64\xb7\x29\xf0\xc7\x7f\xbe\xad\xd3\xa0\x9c\x4a\x24\xaf\x8c\xd9\x0d\x18\x63\xbd\xa3\x3c\x65\xde\x51\x90\xab\x28\xcf\x8c\x8d\x23\x64\x04\x42\xaf\xa1\x55\xc5\x6f\x6a\x43\xff\x03\xcf\xb5\xc3\x28\x0b\x47\xb1\x29\x2c\x9d\x6d\x58\x71\xaf\x28\x89\xf1\x57\x5c\x20\x5d\xb5\x76\x39\x5e\xdb\xe1\xb5\x8f\x19\x09\x21\x08\x69\xfa\x85\xce\x24\xe4\x79\x67\x69\x8d\xbc\x08\x5a\x01\x4f\xd2\x71\x8e\x68\x36\x85\x3a\x15\x49\xb6\x2f\x0d\xa3\x5e\x92\x66\x98\x9b\x3b\x11\xcb\x8b\x81\xb2\x64\xa9\x9d\xa0\x7b\x67\xda\xa1\x4d\xf2\x51\xae\x2d\x7a\xde\x1d\xfb\x96\xec\xbb\x5e\x35\x6d\xd4\xed\xd9\x94\xdb\x57\x48\x04\xfe\x5a\xa1\x59\xfe\xba\x36\x81\x29\x33\x2d\xd3\x5d\xb1\x59\x01\x7f\x58\x45\x74\xf9\x0d\xc5\x26\xfa\x0d\x77\x97\x16\x63\xf3\x32\xa3\x17\xf1\x7b\xdf\xd0\x71\xfa\x0d\xef\x89\x34\x4a\xa2\xbc\x8f\x04\xdf\x8b\x34\xe0\x5e\xf1\x6b\x8f\x68\x48\xa3\xb8\x0a\x28\x39\x3a\x56\x6e\x6e\x47\x2b\xed\xec\xc4\xa5\xa5\x82\x6b\xf0\xab\x05\x1b\xc4\xf1\x63\xcb\xdf\x25\xe4\x66\x3f\xac\x4c\x17\xd9\xe9\xba\xe5\xdc\x7a\xce\x04\x15\x6e\xf8\x1e\xc7\x59\xec\x0a\x1d\x83\x9b\xcb\x74\x4b\xa4\xd1\xdc\x80\x6f\x58\xb4\x66\x20\xc3\x5f\x19\xe5\xd3\x2d\x95\x19\xbf\xef\x72\x2d\x9a\x2c\x23\x46\x77\xf9\x2b\x45\x95\x5b\xab\x32\x32\x70\x4b\xc6\x8a\xbe\x6b\xd5\x33\x8b\x59\xc4\x5a\x1f\x6c\x82\xa9\x00\x81\x27\x1b\x87\xa7\x03\xd3\xb5\x2d\x05\x27\x39\x16\x28\xc8\xc2\xb1\x26\x40\xa6\x28\x4c\xb7\x34\x4e\x87\x25\xf8\x24\x87\xf7\x7b\x73\x68\x12\x1b\xcb\xde\x74\xe4\xc6\x39\x4f\x6e\xfc\xd8\x99\x73\x3f\x4d\x2c\xe0\xcf\x68\x16\x9d\xd3\x56\xb7\xe7\xdc\xca\x7e\xb9\x3c\x50\xc4\x2f\xb0\x92\xcd\xf0\x9b\x26\xf1\xad\xa5\x51\x31\xca\x5c\x48\xc2\x7a\x61\x9a\x06\xbf\x51\x3c\xf1\x6e\xb4\x62\xf3\x22\xc2\x5f\x78\x64\x32\x43\x10\xf8\x4d\x23\x9a\xec\xff\x63\x4b\x68\x93\x92\x25\x9b\xe4\x76\x97\x67\x2a\x5c\x0b\x7c\x2a\xc5\x33\x3f\x4c\x0f\xff\x08\x89\x91\x16\x1e\x56\x8c\x8e\x43\xbc\x2f\xf9\x79\xa0\x5d\xf1\x86\x22\x3e\xb1\x53\x18\x83\xe4\x6b\x4b\xf5\x57\x48\xdb\x36\xe9\x5a\x84\x45\x1c\x29\x48\x65\xf8\xb5\x1b\x27\xa4\x43\x1b\x4e\xb5\xb6\x58\x32\xa0\xe4\x7d\x83\xce\x13\xe9\x4c\xd2\x35\x63\x88\xba\x9d\x4e\x36\xf9\x0f\x7a\xf7\x9a\x6e\xfe\x20\xdd\x4f\xc4\xcb\xef\x29\x7b\x85\x13\x5a\xc6\xe9\x14\x5a\xb6\x3c\x28\x08\x94\xf4\xe9\x1b\x81\xc2\x33\x42\x78\x89\xbd\x45\x34\x8b\xeb\x94\x72\x04\x45\x8f\x12\xc5\xdc\x75\x82\x8a\xf2\xeb\x06\x32\x70\x7b\xd1\xf6\xa3\xa4\x3b\xe5\x01\x40\xe5\xb5\x88\x14\xcc\x09\x7c\x85\xb3\x74\x9e\x53\xae\xab\xfb\xa4\xd9\xf5\xfd\x5a\x3d\xb3\x6f\x8e\xd8\x76\x2d\xaf\xf0\x73\x4c\x31\x8c\x8f\x35\xf0\x09\xda\x6b\x91\x8d\xbb\x12\x13\xd1\x22\x6f\x75\x14\xfe\xbc\xb5\xee\xf3\xbf\xa1\xcd\x96\x6c\x58\x80\x17\x7a\x88\x9b\x67\x3c\x74\x13\x64\x9b\xfe\xa9\x75\xb8\xd0\x52\x44\xd4\x93\x83\xde\x6a\x9c\xbe\x17\x95\xec\xad\x40\x19\x07\xfc\xc9\x58\xc9\x53\x5d\x54\x4d\xfb\xc5\x28\x8d\xd3\x1e\x6c\x81\xd5\xa4\x66\xbf\x10\xb1\xa8\x57\x2e\x03\x34\x85\xb3\x33\x49\x3f\x4d\x11\x8b\x51\x96\x70\xe7\x96\xdf\xa8\xb0\x37\x48\x93\xae\x59\xe3\xe6\x85\x93\xf1\x70\x2e\x6b\x75\x3a\x3d\x25\x44\xb6\x0b\x60\xcf\x3c\x67\x71\xe7\xb5\x58\x14\x58\x72\x22\x37\x49\x97\xc9\x84\x8f\xc0\x3b\xb5\x86\xe9\x00\xc0\x90\xed\x6a\x68\xc8\x75\x22\x2e\xee\x0e\xd6\x3e\xd6\xfb\x71\x54\xe1\x42\xb2\xf2\x08\xec\x73\x8a\xfb\xb8\x51\x2b\xa8\xf7\x11\x3b\x37\xec\x2f\x65\x69\xa2\x95\x53\x37\x94\x72\x6a\x3d\x67\xdb\x3b\xd3\x5e\x02\xbb\xc1\xdb\x34\x32\xa0\x8e\xdf\xd4\x42\xbb\x04\xde\x34\x8a\x27\x5d\xa7\x74\xd7\x23\x9d\xd6\x97\xbf\xc0\x69\xa2\xee\xe3\xf3\xb6\x46\x7d\xb5\xad\x46\xc1\x95\x0f\x8b\xd3\x51\x94\x4f\x78\xc5\xd9\x0b\xaa\x49\x76\x42\xd3\x71\x6f\x37\x73\xd2\x63\x9b\x14\x6b\x4a\xbe\xfc\xe6\xd8\x3b\x7e\xbc\xa3\xa8\x8c\x97\xdd\x79\xb0\x94\xa6\x71\x94\xc3\xcc\x0b\x25\x11\xb8\x1a\xfc\xba\x01\x94\x39\xdf\x2e\xa2\x81\xad\x10\x41\x8e\x29\x90\xed\x31\x05\x37\x78\xd9\xac\x99\x6e\xa4\x37\x1f\x2a\x1e\x7e\xed\xc1\xf9\x69\xda\xcd\x46\x4b\x4b\xad\xd6\x97\x66\x1c\xe9\x41\xd1\x47\xc6\x81\xef\x0d\x18\xc1\xc6\x88\x5a\xca\x5f\xe0\x08\xe6\x37\xee\x33\xbb\x91\x29\x57\x7a\xae\x37\xf3\x4d\x8d\x2f\x07\x5d\x98\x47\x1e\x4d\xb3\x68\xd1\xf0\xe7\xe8\xe1\xd8\x64\x5e\x62\xe4\x7c\xed\x38\x06\xb8\x2c\x8c\x4c\x4c\x0d\x42\x1c\x98\x62\x37\xaf\x46\x39\x7f\xe9\x12\x41\xd3\xb3\x49\xb8\xa6\x04\x55\x4e\xe9\x11\xf6\x29\x95\xe9\xa4\xbd\x34\x59\x4b\x97\xd5\x49\x73\x46\x79\x69\x9f\x19\xb7\x1b\xca\x3f\x9b\x14\x36\x2b\x4c\x44\xd0\x91\x96\x1e\xa2\xf0\xa9\x2f\x1d\xc1\x0a\x79\xa7\x6b\xa9\x0a\x64\xe9\xed\xc0\x43\x69\x4f\x8d\x3d\xe4\x96\x15\x52\xb1\xd0\x98\x54\x29\xea\xb7\xf8\x22\x60\x26\x59\x72\x1e\x91\xff\x3f\xd2\x82\xe4\x0f\xa8\x34\x99\x96\x46\x49\x4b\x81\x14\x4f\x29\xc1\xc2\x53\xb5\xa7\x23\xfb\x65\xd1\x84\xfd\x09\x85\x93\xda\x50\x06\x61\x3f\xd1\x68\xa7\x6b\x0a\x7b\x63\x5f\x0a\xed\x10\x12\x55\x1e\x2d\xcd\xc0\x0f\x7e\x53\xc3\xd9\xed\x9d\x69\x0f\x86\x7d\xc8\x06\xe9\x56\x33\x86\x42\x4c\xff\x97\xd6\x6d\xc3\x08\x13\x92\x60\x91\x65\x27\x4d\x64\xa6\x22\x63\x86\x3d\x79\x53\xab\xfc\x9f\x53\xbb\x28\x89\x96\x97\x6d\x34\xa1\xb8\x56\x3f\x1a\x2b\xcf\x07\xe8\x84\x20\x4e\x5e\x54\x16\x99\x5d\x13\x2d\x47\x32\x59\x47\x6c\x67\xa1\x33\x7e\x33\xae\x88\x70\xae\xd8\xac\x42\x9f\xdb\xd0\x32\x8b\xf5\xac\xf0\xe0\xf4\x21\xfe\x2b\x0a\x57\x88\xe6\xc8\x16\x50\x70\xf3\x4c\x50\x0e\xcb\xfa\xb0\x2b\xcc\x4c\xb8\x2c\x60\x35\x64\xe7\xb7\x14\xbb\xe9\x5f\x63\xa3\xe1\x84\xbc\xe5\xb6\xcb\x92\x19\xc5\x1c\xe2\x80\x7b\xde\x4e\x03\x6a\xc4\x89\x7f\x3f\xf6\xa0\x52\x72\x42\xf2\xb6\x3e\x2b\x96\x6d\x73\x44\xb8\x90\x3e\x9d\xdf\x28\xe0\x02\x8d\x26\xcd\xe0\x93\x2d\x37\xa6\x7d\xb0\xe3\x6b\xf7\xf3\x8a\x13\xb8\x73\xdd\x4b\xa6\x1d\xe6\x8a\xc3\x59\x29\xce\xce\x4a\xe9\x7e\x0c\xe7\x18\x42\x1e\x0f\xdd\x65\x59\x7b\x65\xc1\xb7\xd9\x46\x09\x8f\xe6\x6d\xe5\x3a\xf1\x78\x47\x91\x0a\x36\xc7\xca\x60\xe3\x26\x86\xf6\x2c\x71\x49\xc9\x99\xab\xb1\xcb\x2b\xc5\x4f\x7b\x17\xd0\x22\x1c\xce\x77\xb4\x09\xd9\x7d\xf4\xa5\x84\xcf\x4e\x6b\x5b\x7c\x19\x15\xe0\xe7\x2c\x5a\x7b\x48\x24\x6e\x28\xe5\x83\x30\x8b\x06\x96\xf0\x43\x58\xb3\xc7\x02\xaa\xe6\x25\xa7\x51\xea\xa8\x00\x03\xe2\xc7\x5d\xa7\x10\x82\xac\xfd\x75\x6d\xa4\xfb\xf5\x06\xa3\x16\xf2\x63\x5a\xab\x0e\xf1\x55\x46\xbc\x75\x97\x3e\xdd\x1e\x44\x31\xec\x3b\x70\xbf\x0f\x07\xfe\x2c\xfd\xb7\x34\x79\x14\x0d\xff\x86\x78\x9f\x59\x13\x47\xe5\x1e\x85\xa4\x05\x0c\xdb\x36\x2f\x35\x41\xb4\x87\x59\xba\x14\x21\xbd\x70\xfc\x0a\x5f\x33\x04\xbe\x55\xd5\x4f\x47\x19\xf2\x1d\x19\x6d\x97\x7f\x83\x8a\xe6\x52\xb0\x05\x0d\xe6\x20\xa5\x63\xbf\xa5\xae\x07\xde\x91\xe9\x7a\xa3\x57\x74\x9c\x26\x3d\x95\x32\xbc\xa7\x9c\x52\x5f\xd5\x92\x13\x7f\xad\x39\x4b\x45\xbe\xa7\xfc\x5c\x64\x16\xf7\x55\xde\xf5\xe0\x67\x68\x59\x53\x3b\x6e\xfc\x38\x4f\xac\x69\x1f\xbc\xf1\x73\x1d\x05\x70\xd9\x1c\x2b\x61\xf5\x7b\x63\x8f\x7f\x83\x16\x3e\xdd\xe5\x4b\xbf\x08\x1d\x72\xb9\x2a\xb5\xd3\x37\x91\xff\xd2\x93\x5f\xfa\x4f\xd0\x67\xa7\x9b\xf2\xcc\xe7\x3a\x7e\x84\xd8\xeb\xa7\x79\x41\xf4\x22\x11\xfe\xa2\x8f\xd0\x26\x3f\x0a\x6e\x33\xe3\x60\xcf\x0d\x6a\x4b\x5d\x1b\xc6\x91\xf3\x30\x97\x11\x3c\xfd\x15\xbf\x71\xc0\x9e\xa5\x54\x88\xc4\xd8\x00\x00\x56\xf2\xeb\xaa\x55\x7f\x6a\xd9\x3e\xc9\x69\xa1\x39\x66\x29\xb2\xbf\xad\xa2\xfe\x6b\x26\xeb\x12\xf5\x88\x48\x05\x6c\x2f\xa8\xa0\x76\x60\x6d\x0b\x79\xf1\x51\x65\xad\x9d\x45\x49\x8f\xdd\xdc\x10\x60\x6f\xe2\x66\xf0\x1b\x55\x42\xac\x46\x99\x2d\xcc\xb0\xa5\xf4\x69\x58\x7e\x91\xdf\x04\x4f\x7a\xf0\x4b\x4e\xd9\x4a\xe1\x7d\x72\x9c\x51\x82\x4b\x16\x8f\x38\x6e\x43\x3f\xea\xf5\x63\xd2\x00\x2c\x7f\xbd\xd3\x28\x76\x98\x04\xa4\xe6\x22\x77\x5e\x71\x8f\x6a\x70\x16\xf8\x4c\x3b\x5f\xb5\x26\x73\xa4\x4c\xec\x8a\x93\x4a\xc7\xfe\x2e\x7d\x9e\x80\x10\x25\x07\xec\xa7\x23\x4f\x91\x65\xa2\xde\xba\x4f\x84\x6e\x06\x4a\x46\x7d\x23\xf0\x88\x90\x28\x8e\x49\xed\xb9\xcc\x1f\xcb\xea\x15\x67\xf7\x5b\x24\x84\xca\xaf\x15\x2c\xa8\x48\x57\x4d\xd6\xdd\xa5\x5c\xe7\xde\x55\x06\xc1\xb7\xd4\x18\x7f\x47\xc7\xfb\x58\x9c\x0b\x74\xa3\x3d\xf0\x27\x44\x45\x23\x90\xcd\x68\x5d\x80\x2e\x7f\xef\xc7\x01\xc8\x9f\x9f\x39\xd0\x8e\x2d\x63\x42\x58\xf0\x34\xd0\xbc\x6b\x6c\x44\x11\x47\x11\x68\x84\x19\x15\x7d\x9b\x14\x51\x18\x95\xa7\xe5\xc2\xbc\x17\x3b\x74\xfe\x09\xb0\x81\x62\x17\xcf\x26\x82\x5a\xd1\xb7\x69\x86\x9d\xc0\x40\x8e\xc0\x73\x94\x2e\x8e\xbd\x56\xa6\xcd\xcc\xa4\xda\x4a\x27\x70\xe4\xe0\xfc\x82\x45\x3f\xbf\x26\xc4\x93\x88\x00\xd6\x85\x21\xe6\x29\x37\x8b\x63\x9a\x85\x1e\x9c\x76\x2b\x49\xad\x2a\x25\x8d\xf8\x0f\x3f\x97\x4f\x95\x9f\xc7\xfe\x0b\x81\x97\xe2\x5a\xfd\xdb\x1d\xdf\x08\x03\x39\x18\xf3\x85\xdd\xeb\x5a\x3f\x71\xec\x8b\xd3\x34\xeb\x32\x0b\x8b\x7e\x3a\x9f\x61\x81\xf7\x14\xba\xd8\xa4\xa0\xbc\xbf\xdd\x4b\x5b\x6a\x34\x79\x82\x1e\x38\xbf\x56\x9e\x5e\x51\xb2\x44\xa4\x29\xed\x01\x8e\x73\x90\x5f\xab\xab\x4a\x96\xf3\x87\x5a\x62\x6e\x35\xf7\x77\xd7\xcb\x2b\x54\x5c\xf9\xcd\xed\x00\xb1\xd3\xff\xf5\xcc\xa7\x3a\x5e\x86\x32\x7d\x8a\x68\x2f\xa8\x0f\x27\xc1\x9d\xc4\x3a\x7c\x5d\x8b\x50\x3f\x4c\xf1\x1d\xf5\xd0\x11\x4e\xd4\xb1\x1e\x76\x76\x74\x38\xc4\x7a\xc5\x39\xfd\x21\xd6\x18\xb6\xd4\xbb\x0d\x5e\x2b\xfd\x51\xbe\x68\x92\x2e\xd7\xcf\x62\x2e\xad\x46\xc0\x27\xeb\x0a\x78\x33\x44\xac\x4f\x5c\xb7\x9c\xe5\xc5\x95\xa6\x86\x97\x93\x12\xed\x49\x81\xdf\x08\x6e\x43\x19\x09\x5e\xab\x7d\xc3\xc2\x74\x59\xfe\x44\x85\xeb\x89\x4b\x0b\x85\x2e\x53\x84\x6d\x9a\x94\x0e\x96\xfc\x37\x31\xf6\x05\x8b\x4b\x80\x30\x3f\xe7\xd5\x9f\x92\xa2\x3f\xca\x23\xe3\xf4\x27\xe8\x46\x01\xe1\x82\xbd\xc6\xaf\xd5\x9c\x6d\x94\x44\xf9\x5a\x4e\x8c\x41\x46\xb9\xd0\x46\xe4\xdc\x8d\xc2\xa9\x76\x63\x14\x24\x8c\x6f\xf6\x0c\x4d\x56\x24\x36\xdb\xae\x60\x0a\x17\xd5\x24\xff\x8f\x69\xbf\x00\xbf\x77\x87\x96\xb0\x33\x82\x9f\x39\x20\xaf\x11\x74\xf0\xc7\x47\x9d\x80\x50\x37\xca\xbf\x32\x8a\x6c\x21\x78\x2a\xa4\xa3\xdf\x53\x26\xfc\xdf\xfb\x58\xd6\xd3\x6a\x54\xf4\xa3\x64\x4a\xa9\x1a\xa0\x9b\x47\xcf\xf2\x3f\x3e\x4e\x42\xd4\xa8\x28\xcf\xab\xe1\xe9\x5d\x3d\x5e\xb8\xae\xaa\x9e\xb0\x9f\x66\x23\xf0\x0e\x84\xfc\xe4\xd1\x9f\xd0\x9d\x15\x2a\xe5\xa3\x0e\x0e\x46\xe2\x09\x36\xc7\x9f\xa1\xbb\x0e\xca\x16\xb2\xd7\x4b\x63\x4f\x0c\x7b\xad\xe1\xc9\x93\xfa\x02\x3f\xf9\x4d\xf4\x84\x95\xa6\x99\x8d\x6d\x58\x64\x69\x12\x85\x3c\x38\x41\x6b\x07\x9a\x8d\x32\x93\x6f\x39\xae\xd8\xfb\x5a\x77\xf5\xc3\xda\xea\x9c\x39\xd0\x0e\xa3\x22\x7a\xd9\x26\x6c\x3e\xc9\x87\x4c\xe0\xe7\xe0\x67\xb4\x0f\xc1\x49\xde\xab\xd8\xc5\x97\x6b\x33\x3a\xd7\x42\x32\x85\x9d\x50\x51\x6e\x82\xea\x23\xfc\xd5\x7d\x05\xb2\xfc\x60\x4b\x3f\x3d\x2c\x72\xf2\x11\x63\xc6\x27\xbe\x5a\xe8\x9f\x5b\x63\xdf\xec\x6c\x3b\x8b\xc0\x19\x3a\xe4\x75\x5e\x66\x67\x9d\x64\xf0\x27\xb5\x90\x3e\x61\x3d\x61\x3c\xd6\xf2\xc4\xec\xb1\x37\xb2\x61\xe5\x0f\x09\x15\x3a\x6e\x68\x16\xe3\x06\x85\x57\xfe\x93\xe0\xe3\x84\xf5\x7a\x99\xe9\x8e\xca\x9b\xe0\x67\x0f\x2d\xaa\x3f\x90\x50\x33\x14\x40\x9c\xed\xb7\x2e\x82\x2f\xcd\x94\x67\x10\x51\xc1\x0e\x4e\x4b\x97\x91\x56\x9e\x74\x1c\x3f\x0e\x75\x90\x2f\x47\x71\xcc\xe3\x30\x97\xae\xfa\x7e\xfb\x45\xa5\x2f\x37\x8c\xcd\x28\x8f\x16\x63\xab\x64\x1f\xb0\x53\xf9\xb5\x1a\x76\x2f\xa6\xe9\x72\xcb\x37\x7d\x71\x9c\x8a\x5c\x75\x43\x69\x62\xb3\xcc\x14\x06\xb9\x1c\x1a\xcf\xf0\x7e\xe0\xd7\x6e\x28\x97\xaf\xda\x61\x01\x2e\x11\xaa\x0b\xf4\xc3\x10\x4c\x27\xa1\x00\x0b\x04\xf3\x91\xc0\xcb\x18\xbc\x36\x7e\x5c\x99\x9e\xf6\x46\x31\x7c\x42\xc8\x73\x6a\xac\xbb\x19\xd7\xb5\xb3\xfb\xeb\x0a\x16\x48\x1d\x29\xca\xe9\x51\xa7\x1f\x55\x82\xcd\x47\x91\xd8\x30\x96\x10\x71\x5a\x80\x85\x0d\x5d\x69\xd3\xcb\xac\xd0\x4d\xd1\x6f\x7e\x2d\x50\x96\xff\x10\xce\x17\x3b\x1d\xba\x52\xe1\xf3\xfb\x29\x66\x2f\x8b\xba\x51\x56\x5e\x82\xeb\x60\x62\x25\x3b\xab\x5e\x2f\x21\x1b\x38\x59\xa7\x97\x86\x36\x8b\x6c\x12\xda\x2e\xf5\x7e\xf1\x7d\xec\xb0\x86\x50\x73\x74\xec\x09\xf1\xdb\x3a\x8a\x14\x7d\x7d\xfc\x29\xb5\x37\x06\x83\x51\x12\x85\xc8\xbf\xb5\x24\xd7\x59\x4d\x2e\xbe\x40\x0f\x80\x5f\xe3\x28\x76\xc4\x84\xd9\x59\x81\x2d\x06\x5e\x73\xae\xc0\x7e\x42\xca\x87\x29\x3d\x3a\x1d\x37\x02\x45\x1e\xf3\x4d\x95\x9e\x89\x12\xe9\xc4\x00\x0e\x74\x45\x35\xd9\xaf\x6b\x2e\xfc\x2b\x4d\x30\x95\x30\x25\xd8\xcb\x44\x65\xa2\x56\xfe\x66\xe4\xab\x0c\xdf\xc2\x4f\xf8\x46\xa3\x9b\xed\xc0\x44\xc9\x52\x66\x06\x56\x4d\x63\xcf\x2a\x27\x81\xb3\x3a\x5a\xa5\x71\x6c\x98\xf7\x8c\x50\xdb\x42\x5a\x87\x72\xea\x62\xc5\xb9\x49\xf1\xcc\x5a\x1d\x47\x7e\x0f\x6d\x62\xb2\x28\x85\x24\xa9\x9b\x5b\x28\x00\xb0\xae\x6e\x19\xd8\x8c\x14\xf6\x13\xb4\x4b\x10\x3d\x36\xcb\x6c\x5b\x63\xb6\x0e\x4e\x3f\xdb\x7e\xfa\x53\xd8\x06\x78\xda\x3c\x8c\x53\x9f\x7a\xc8\x9b\x52\x1d\x9c\xf6\xf0\xe6\x85\xe9\x05\x4e\x06\x27\x3a\xfa\x90\xa2\x33\x1e\x29\xe8\x37\xf0\xa3\xd0\x48\x9d\xa0\xc4\x10\xff\x6a\xaa\x43\x1d\x1a\xbc\x39\x8e\xf0\x89\xb4\x63\x77\xa7\xb5\x77\xaf\x80\xf4\xf5\x16\x78\x80\x22\xa2\x7b\xd6\x33\x07\x44\x40\x82\xc8\x8f\xd8\xeb\xe0\x54\x62\x4f\x5c\x85\x61\x83\x73\x98\x28\x93\x4b\x9c\x4b\x37\xb8\x73\x25\x43\x38\x4a\x71\x9d\x06\xa9\x3b\x7a\x6e\x57\xcf\x79\x5f\xad\x26\x69\xa6\x7a\xd3\x4e\x3b\xdb\x8f\x3a\xce\x54\xe9\x18\x99\x69\x95\xf7\x47\x22\xb3\xc2\x86\xd4\xc7\x3a\xfb\xe6\xda\xab\x59\xc4\x98\x15\x99\xa0\x57\x80\x89\xbb\xa4\xa6\xb4\x13\x74\x0f\xf1\x90\x71\x77\xc4\xc5\x9c\xda\x40\x77\x2a\xbf\xc2\x8e\xb2\xed\xad\x67\x9e\x67\x88\xda\x4d\x3a\x1f\xb0\xef\x21\x74\xc2\xaf\x03\xc5\x8e\x82\x7b\x02\x0e\xd4\x3b\x0a\x12\x72\x45\x55\x21\xe4\xc7\x6f\x96\x85\x42\xca\x3a\x82\xaa\xc9\x7f\xa2\x09\xcc\xbe\x68\x8a\xc2\x72\x9d\x86\x4e\xdc\xa9\x40\xb5\x92\x4f\xa9\x96\x9d\x79\x39\x7a\xd9\xd0\x16\x43\xa3\x1b\xf0\x61\x7e\x5d\x21\xe9\x94\x65\xf9\x4e\xcf\x04\x3b\xac\x87\xca\x37\xf5\x84\x18\x17\x8f\xce\xd7\xff\x45\x17\x2f\x38\x4f\x0d\x31\xa0\x08\x56\xb1\x11\x41\x8a\xff\xa1\x07\x83\x99\xe1\xd0\xd5\x02\x48\xb4\xb7\xad\x7b\xba\xd2\xb6\x4e\x03\xbb\x70\x29\x4a\x10\x30\x80\xa6\xba\xa7\x58\x60\xf7\xf4\x11\x1a\x2d\x57\x99\xdd\x15\x47\x8c\x46\x54\x72\x16\xf6\xa3\xc2\x86\x45\xab\x62\x8e\xed\x7b\x42\x47\x83\x27\xea\x3d\xa6\x5e\x8a\x66\x90\x98\x64\x69\x31\x17\x2f\x33\x73\x57\x01\xfd\x63\x93\x17\x0f\x51\x50\x40\xec\xda\x0e\xcf\x74\x84\x8b\x4b\x81\x07\xcd\x81\x8d\xc1\xfa\x47\x78\x16\x38\x5a\xff\x4e\xc7\x8f\x98\xff\xcb\x47\xd6\x09\xf8\x89\xea\xe1\x0c\xf6\x86\x9b\x18\x78\x51\x12\xf0\x0f\x25\xdb\xf2\xa6\xb4\xeb\x14\x08\x58\x65\x63\x5c\xd9\x27\x2e\x6b\x08\x4d\x6c\x27\xfd\x85\xb1\xaf\xbd\xeb\x7b\x7b\xf2\xec\x35\x65\xc9\x35\x55\x43\xac\x91\xde\x47\x98\x0e\x44\x26\x41\xac\xc4\x3e\xd6\x70\xac\x01\x24\x94\x8d\x94\xd2\x29\x36\xd6\x77\xc7\xbe\xd6\xbf\x1e\xf8\x19\xfa\x95\xa6\xbf\xef\xc5\x26\x8c\x98\x22\xc6\x13\x5b\xfa\x13\x99\xde\x7a\x14\x79\x99\x83\xed\xa4\xdf\xe9\x92\xb0\x99\x03\x3c\x12\x43\x17\x45\xe4\x55\xca\xbf\x47\x97\xed\xc6\x58\xd9\x08\x5f\x02\x22\x57\xd2\xb6\x32\xcf\x96\x29\x47\xcb\x09\xac\xbf\xd5\x94\xce\xe5\x6b\x83\xc5\x14\x94\x4b\xb4\x78\xd0\x83\xe1\xd7\x0d\x88\xff\x76\xde\x8f\x68\x27\xe1\xbe\xe0\x87\xfd\x40\xe1\x0f\x71\xb4\x23\x72\xe9\x16\x48\x1e\x46\x65\xb9\x9c\xb3\xfa\x84\x33\x53\xdb\xe7\x8c\xd5\xdc\x5e\x1d\x66\x69\xd7\xa1\x2a\x98\xb6\x81\x4d\x25\x1c\x8e\xad\xbf\x6b\x76\xb6\x6d\x07\x8b\x99\x09\x65\x70\x2c\xb8\x48\xba\xab\x22\x7c\xb6\xb5\xa6\x79\xba\xcc\x31\xa3\xbc\xb0\x4e\x27\x49\x50\x5c\xf4\x65\xe2\xb2\xdf\xa4\xff\x6f\x5f\x8a\x72\xb4\x29\x39\x01\x0c\x54\x9b\xec\xa2\xea\xe8\x5e\xac\xf4\x69\x65\x9d\x27\xa3\x2c\xb7\x13\x74\x2a\x63\x65\xfd\x07\x45\x93\xf9\x80\x60\x86\x38\xba\xdf\x6e\x68\x63\xcd\x91\x9a\x52\x0c\x75\x1d\x47\xbe\x6c\x75\xb4\x06\x32\x3d\x1c\xec\xed\x6b\x0d\x73\x8c\x45\x13\x2e\x53\x4a\x8a\xbc\xf6\xce\xd8\x5b\x5b\x22\xb3\xc4\x49\xbc\xad\xf3\x69\x5f\x54\xf4\x4d\x36\x30\xa1\x1d\x51\x2b\x22\x9f\x2c\x1f\x1c\x72\xf1\x6f\x51\xf4\x75\x82\xcd\x5e\x57\x7c\x43\x41\x02\xbe\xb5\xe5\x98\x5d\x7e\xd2\x43\x79\xaf\x55\x06\xba\x27\xb5\xe8\xdb\x69\x4c\x87\x44\xbc\xda\xcb\x20\x5d\xc6\xdc\x4b\x0a\x00\xaf\x4c\x7e\x7d\x4c\x7b\x01\xe9\xec\x09\x32\xc6\xe0\xd7\x63\xad\xe7\xa0\xe2\xd5\x7f\xc0\xda\xe2\x2f\xd4\x02\xfe\x7f\xa1\x33\x11\xce\x99\xd1\xcc\xba\x4b\x5b\x19\xb9\xd2\xdd\xc0\xab\x38\x30\xff\x01\xbf\xf7\x2e\xf2\x2e\xd1\x7d\xde\x32\x41\x3b\xe4\xb2\x6c\xdf\xf3\x1f\xa4\x79\x98\xae\x22\x66\x29\x45\x11\x19\xc9\xbd\x49\xdf\x8a\x6f\x7a\xa7\x69\x0e\xdc\x25\x67\x7b\x77\xce\x89\x84\x88\x3f\x68\x37\xaa\x04\xee\x08\x8e\xda\x4d\x0e\x38\x9e\xe2\xb5\x19\x54\xac\x10\x94\xfe\x8b\xff\xe1\x19\x62\x1d\x7d\x2b\x52\xbd\x2b\x63\xdf\x24\xb9\xa2\xce\xa4\x17\x47\x79\xf1\x24\x3d\x61\x0c\x94\x5e\x1d\xab\x03\x0a\xd5\x1a\xb6\xc4\x1e\x1c\x56\x68\x20\x5f\xc7\xfc\x10\x87\xf5\x11\x3c\x30\xa4\x9a\x70\xb2\xc7\x70\x08\x83\x40\x54\x45\xa0\xbf\x62\x4d\xff\x19\x2f\x30\x64\x39\x78\x76\x6e\x50\x54\x3e\x22\x11\x02\x50\xea\xbd\x6f\xe3\x71\xa3\x60\xdd\xb1\xee\x5d\xde\x77\x74\xb6\x7d\xc6\xa3\x94\x66\x67\x95\xb2\x6a\xb9\x72\x98\xc5\x42\x41\x18\xdf\xf1\x11\x2d\x5b\xe7\x45\x77\x50\x24\xe1\x27\xd7\x1d\x98\xc4\x16\x36\xcb\x04\x77\xc2\x26\xe8\xa8\xa5\xc4\x11\x5d\x03\xac\x8a\x68\xc5\x92\x4e\xc7\x21\xa7\xef\xe9\x86\x6a\x01\x7b\x77\x23\xff\x81\x45\x06\x6e\xf4\x99\xa6\x49\x63\x38\x0a\x97\xd3\x54\x59\x00\x31\xd2\x82\xdf\xac\xfb\xdc\xae\xcc\x25\x78\x1a\xe5\x88\x71\xce\x56\x0f\x73\x25\x91\x63\xf1\x82\xc9\xe9\xa8\xc8\x23\x52\x8c\xa0\x67\xe9\x50\x47\xee\x47\x5d\x08\x7e\xb1\x01\x68\x64\x5f\x2a\x32\x83\x9e\x79\x16\xb1\x64\x9c\x57\x51\x75\x90\xa3\x8b\x81\xef\x81\xdb\xd8\x42\xbe\xa4\xbc\x13\xd2\x98\xa0\x2f\xc5\xbe\xbe\xa6\x84\x6a\xee\x06\x1a\x87\xe0\xa7\x60\x03\x93\x90\x38\xc4\xa4\x22\xde\x71\x41\x2c\x82\xfe\x74\x73\x18\x30\xc5\x43\x79\x81\x4f\x79\xd5\xc8\x15\x13\x8f\xec\x27\xd4\x2c\x51\x0c\x3f\xd0\xe3\x04\x47\x07\x0b\xfe\x9a\x3e\x6a\xde\xc1\x62\x54\xa9\x8f\xc8\x65\x5c\xc6\xf2\xc7\xce\xff\x48\x29\x78\xfe\x84\x08\xe3\x82\x00\x2c\xd7\x19\xbf\x1e\x7b\x03\xac\xfb\x74\xb9\x08\x9b\x0f\x90\xda\x0d\x7f\xb7\x86\x6b\x5c\x50\xe2\x25\x43\xd2\x3b\x06\xaa\xba\xbc\x08\x96\x6d\x1e\x57\x34\x9c\xa5\xb8\xb7\x26\x73\xc5\x3d\x4a\xc4\x4b\x4a\xc2\xe9\x4d\xfc\x91\x94\x17\x0d\x70\xba\xa1\xc9\xe2\xc8\x0c\xb6\x92\xb0\x81\x7f\x41\x97\xa4\x62\x9b\x75\xdd\xb5\x49\x32\xbb\xe2\x29\xd8\x24\x2a\x28\x23\xf5\x86\x01\xed\x30\x4b\xc3\xd8\x44\x03\x80\x0c\xb1\x55\x18\xba\xad\x07\x83\xe8\xff\x7e\x7d\xec\x35\xd9\x6e\x34\x18\x49\xcc\xb5\x87\x69\x51\x66\x33\xac\x56\xc1\x6e\x01\x74\xdd\x1f\xe7\x1c\x30\xbf\x30\xdf\x1e\xa6\x69\x66\xb3\x96\x57\xc3\x60\xbd\x6f\xf1\x69\xaf\xd3\xf7\x88\xa2\x9e\x99\xd0\x09\x36\xe1\xf8\x61\x24\x3c\xbf\x51\x63\xc5\xcc\x9a\xb8\x58\x6b\xb5\xbe\xe8\x85\x5c\x94\xdc\x7d\x1d\x67\x43\xd8\x21\x93\xf5\x24\x51\x16\x53\x16\x25\xac\x71\xaf\x02\x88\xf4\x1d\x74\x13\x17\x7d\x6b\xc0\x44\x56\x46\x9e\x32\x84\x84\x7d\xba\xf3\xd6\xf4\x7e\xdf\x17\x1c\x86\x6e\x10\xf6\x32\xdb\x4b\xa9\x1c\x9d\xdf\x24\xbc\xc2\xe6\xa5\xb1\x9f\x1e\x93\x82\x65\x3f\x8d\xcb\x00\xb2\x9b\x76\x03\x22\xed\x6d\x9c\xde\xce\x47\x62\x76\x56\xda\x87\xb4\x03\xc4\x13\x9c\x7e\x19\xe0\xd0\xaf\x8f\xbd\x6f\xed\x75\x25\xca\xb7\x63\xdd\x33\x8d\x2e\x68\x7d\xe8\x5b\x38\x76\xf9\x4d\x83\x3e\xf4\x42\x7b\x29\xcd\x06\x9c\x6d\xb2\xe3\xb2\xd2\x7b\xff\xb6\xf2\x1a\x97\x21\xb8\xed\x4e\x4d\x2c\x4c\xef\xdf\xbc\x02\x96\x1a\xe2\xc6\x65\x85\xec\xf8\x73\x55\xeb\xfe\xcf\x9a\xd4\xf8\xe7\x1f\x0f\x0f\x4d\xec\xce\xf2\x9a\x9d\x53\x9c\x2f\x70\x36\x34\xc4\xf1\x3e\x7d\x0d\x80\x39\xff\x13\x9d\x8c\xd8\xf6\xdb\xd1\xdb\xc1\x8f\xde\x49\xc7\xa7\x48\x8a\x96\x77\x46\x54\x33\x34\x03\x2d\x8c\x47\x5d\x9b\xef\xa4\x47\x20\xbc\xbd\x72\xbd\xe1\x35\xea\x15\x1c\xfb\xc7\xd5\x67\xfc\xf1\xd8\x7b\x88\x61\x9f\x7a\xbe\xa7\xcb\x61\xcf\x05\x13\xfb\x7f\xfd\x4b\xdc\x5b\x3b\x56\xf3\xb6\x39\x38\xdd\x8e\x12\x33\x1c\x66\xe9\x30\x8b\xa8\x05\x7f\x50\x32\xd8\xff\x41\x69\xde\x00\xb1\x86\xf8\x73\x55\xf9\x66\x46\xc9\x8a\xcd\x0b\x3a\x25\x76\xb6\xbe\x24\x1a\x63\x7f\x10\x78\x89\xa2\x3f\xa8\x38\xc8\xe8\x99\x17\x2d\x32\x74\x3f\x7f\x8b\xae\x8a\x39\x55\xb4\xe0\x84\x5f\xa5\xee\xf7\x6d\x05\x08\x5c\x2d\x23\xe9\x30\xb3\xa6\x3b\xe5\x67\xab\xdf\x3e\xa6\x39\x1a\xaf\x29\x7b\xa0\xaf\x8e\xf5\x99\x4d\x9f\xc9\xe9\x64\x43\x24\x7a\xb6\x9d\xa7\x03\x0b\xc4\xac\x37\x9b\xf9\x37\x9a\x2d\xfe\x6f\x54\xa5\xb9\x12\xd9\xd5\x5d\xf4\xe4\x90\x1f\xdc\xa1\x6b\x01\x8d\xf4\x1e\x3d\x21\x84\x14\x72\x12\x17\x71\xd7\x73\x8a\xf5\x7e\x04\x3b\x19\x19\xf5\x4d\x5d\x83\xc2\x3c\x00\x01\xfb\x9e\x52\x4f\xa9\xff\xea\xe7\x67\x0e\xb4\x13\xdb\x4b\x8b\xf2\x19\xa2\x03\x22\x15\x60\xf9\x11\x52\x19\x2a\xe6\x60\x1a\x2e\xcb\x74\x1b\xbd\xf2\xb3\x74\xdf\xf9\x75\xe5\x04\xcf\x7a\x26\xb3\xec\xe6\x86\x78\x73\x44\x91\x17\x8e\x34\xca\xfd\x2c\xc5\x76\x15\x7f\x81\x66\x22\xcb\xe1\xf1\x1b\x77\xde\x44\x04\x76\x5d\xf5\x30\x1f\x94\x0f\x10\x9d\xe2\xd7\x63\xdf\x6f\xca\x32\xc7\x8b\xc7\xc2\x79\x60\xdd\x2f\xa2\x07\x3a\x8f\xfa\x99\x68\x19\xe3\x2d\xdb\xc9\x21\x60\x7e\x4b\x05\xcf\x6f\x35\xb4\x90\xf6\xb7\x4d\xc1\xc7\xc2\x84\x52\xa7\x3e\xaf\xf4\x32\x36\xb4\xa0\xd4\xbd\x5a\x11\xfb\xc2\x0b\xed\xc2\x44\xab\x86\x4d\xd8\x31\xb0\x7f\x5b\x8d\x94\x8f\x6b\x48\xf9\x25\xb5\x9c\x97\x6c\x56\x44\x74\xea\xa2\x05\x50\x09\x3d\x6c\xb9\xab\xcc\xb5\x6f\x2a\x39\x72\x9b\xf4\x6c\xbc\x0c\xa8\xe4\x21\x31\x7d\x08\x94\xd7\xc0\x31\xd5\x4c\xec\x45\x71\xc1\x09\x08\x96\x04\x2b\x49\xf2\x1b\xa5\x99\x18\x75\xad\xc9\xb7\x7b\x63\x38\xb6\x66\x44\xea\x74\x15\xad\x29\x57\x0f\x3a\x25\xf7\xd3\x81\xb7\x20\x3f\x31\x56\xc4\xff\xf3\xaa\xae\x59\x4c\xd3\x01\xc9\xa7\x8b\xdb\x28\x62\x1a\xbf\xae\xf1\xf4\xca\xd5\x34\xb4\x19\x99\xf9\x46\x2b\x56\xa9\x8b\x9e\xd6\x2a\x69\xa7\x83\xc7\x95\x01\x5b\xd2\xb5\xf9\xa2\x49\x96\x5b\xbe\xb9\x74\x5f\x0b\x92\xdf\x77\xb9\x56\x92\xae\x58\xf1\x48\x40\x9e\xf1\xcf\x55\xce\xf1\xcf\xdd\xa4\x3a\x1a\x94\x31\xd2\x66\xf1\xda\x84\xd7\x50\xc6\x00\x4e\x46\x05\x7e\xc0\x7d\xc3\x75\x25\x96\x4d\x66\x93\x96\x3f\x83\x36\xb4\xaf\xf9\x86\x53\x50\x59\xb1\xd9\xa2\x29\xa2\xc1\x84\x92\xf9\x38\xa7\x74\xde\xef\x07\xaa\x4f\x77\xc5\x4d\x81\x48\x8b\x7e\x09\xcb\xd5\xcd\x68\x1d\xe2\xe9\x23\xc5\x11\xa9\x08\xfd\xa5\x71\x37\x4a\x7a\x24\xb2\x80\xf4\xb2\x1f\x78\x1f\xc2\xef\x53\xcc\x42\x83\x99\x45\x3c\x2b\xca\x61\x78\xa0\x1a\x8a\xbf\x7b\x5d\x51\x51\x2f\xa2\xcd\xca\xd3\xfd\x32\xcd\x28\x0c\x61\xfa\xcb\x34\x5c\xb0\xd7\xe5\xfd\x70\x56\x72\x65\xb6\x26\x5c\x64\x47\xa7\x35\x21\x80\x73\x28\xee\x6f\x2b\x88\xc5\x6d\x15\x9b\xc2\x2c\x2a\x6c\x16\x19\xaa\x50\x30\x22\xbb\x86\x92\x51\x14\x75\x7d\xa7\x68\x53\xc5\xac\xba\x2a\xeb\xcc\x81\xf6\x20\x5d\x54\xd6\x14\x47\x35\xcf\xb7\xee\x27\xf8\x34\xb9\xf0\x8d\x7a\x65\x81\xee\x01\xb1\x17\xb8\x7e\x11\xe1\x80\x26\xbb\x94\xa5\x34\x73\x66\x69\xf8\xc9\x1f\x69\xa7\xe5\x8f\x6a\x3f\xed\xe9\xf2\x7f\xec\x64\xeb\x79\x6f\xc6\xaa\xba\xe1\xe4\x9a\x3f\xbf\xf9\xe1\xd8\x23\x89\x2e\xb8\xf5\xd1\x2f\x53\xd7\x7e\xcb\x8b\x8f\xff\xe4\xa6\x32\x96\xba\xd9\xd4\xbd\x1c\x9a\xbc\xc8\x80\xd6\x16\x91\x4a\xc5\x97\xdc\x50\xee\xc1\x67\x1a\xac\x14\xe6\xdb\x90\xd3\x10\xbb\x13\xd7\xa7\x59\x98\x76\xa8\xe5\x46\x99\x0c\x13\x0d\x2a\x6d\xc6\x8b\xf4\xc4\x45\xd2\xc4\x43\xc9\xe3\x30\x4d\x26\x55\x14\x3d\xcd\x65\x20\xf6\xe3\x69\xba\x3a\x14\xf0\xf7\x69\x4d\x8b\x6c\xc3\x63\x2a\x65\x29\x6c\xb6\x64\x33\x3b\xa1\xb4\xe5\x6e\x54\xfa\x39\xea\xa4\x7b\xdb\x67\xd6\x51\x5e\x64\xa3\xbc\x98\xf0\xbd\xbc\xbb\x63\x25\x6a\x73\x5e\xa1\x20\xa7\x3a\x5b\xf3\xac\x7d\xd4\x61\xcc\xd2\x97\xc8\xda\x81\x75\xd1\x78\xb4\x46\xf1\x46\xc6\x6c\x0d\x14\xe8\xa5\x28\x0f\x4d\x0c\xc8\x89\xcb\xfc\x1c\x35\x0a\x89\x81\x3c\x92\x32\x0d\x95\x8e\xab\x6c\xa6\x61\xd4\xe3\x7b\x8b\xbf\x9e\xa2\xbd\xcb\xaf\xd7\xbd\x4f\xe1\xca\x88\x7e\x95\x1c\x3e\x2d\xa7\xf4\xb5\x51\xa1\x7d\x0c\xd6\x6c\x6b\x6b\x61\xe3\x05\x00\xe4\x4b\x63\x5b\x30\x4a\xc6\x8d\x86\x9d\x9f\xd7\x69\xdc\x61\x34\x44\x26\x91\x17\x09\xe4\xa2\xc9\x1d\xae\x67\xb2\xae\x90\x01\x9c\xc5\x91\x03\x62\x9f\x53\xa7\x61\x98\xa5\xa3\xb0\xcf\xe6\x1c\xdc\x50\x22\xc5\x12\x69\x2e\x6d\x5d\xb2\x28\x07\x7b\x36\x89\xb0\x93\x7d\xa6\xdf\xf2\x7e\xab\x35\x30\xcd\xf3\xf3\xed\x61\x6c\x18\x3a\xc6\xd6\xfe\x81\x1a\x1b\x9f\xd4\xa8\x28\x93\xc5\xa9\x96\xfc\xde\x50\xf0\x89\x6f\x8f\x95\xa2\xcd\x3d\x6a\x52\xe3\xe0\x69\x14\xab\x59\x64\xeb\x91\x09\x75\xd6\x33\x4c\x42\xbc\x71\x34\xa8\xba\xa1\xcb\x3e\xdf\x1e\x98\x17\xb9\x3a\xf4\x42\xa6\xe5\xdf\x48\x69\xeb\xcf\xe9\xf2\x0a\x99\xba\x89\xd0\x7e\x54\xb9\x7b\x1e\x75\xd8\xeb\xcc\x26\xa2\xab\x84\xdb\x75\x4c\x8f\x84\x8e\xd5\xc0\x67\xb4\xdd\x87\x59\x5a\x58\x5f\x81\x33\x87\x5d\x19\xba\xdc\x51\x04\x8f\x30\x1d\x25\xb9\x8d\xe9\xbc\xc2\x40\xe4\xad\xc0\x43\x0e\x7f\x86\xdf\x2f\x21\x97\x3e\x0f\xe9\xd6\x6b\x38\x0a\xd0\xcf\x86\x31\x1a\x26\x00\xe8\x45\x30\x01\x26\xd0\x36\xc8\xdd\x68\x25\xea\x8e\x4c\xbc\xd3\x4f\x66\xff\x12\xdd\x2a\x64\x19\x88\x64\x3c\x08\xc5\x2a\xc6\x77\x7d\x17\xa1\xc0\x25\xbb\xe5\xfd\x45\x65\xfd\xe7\x81\x16\xf3\x01\x4f\x1f\x55\xc4\xdb\x35\x84\xd9\x81\xe7\xda\x69\x56\xf4\xd3\x6e\xfa\xd2\x84\xf6\x4f\xf4\x3b\xfc\x26\xad\x11\x31\xe8\xd9\x9a\x79\x2f\x4c\xc3\x7e\x61\x8a\x46\xff\xae\xd3\x53\xde\x12\xb7\xab\x9d\x30\xe2\x6d\x0a\x90\xd8\x84\xa7\x02\x4f\x0a\x69\xd4\xc7\xe8\x8e\xf2\x02\x27\x32\xc2\x38\x98\x10\xfc\xda\x65\xe8\x89\x2d\xbc\x71\x1a\xfb\xae\xa8\x36\xe6\xe1\xc6\x1f\xdc\x65\x9e\xaa\xd0\x83\x5e\x57\x40\xf6\x9f\x62\x41\x33\x82\x9b\xf2\x06\x51\xcd\x74\x2a\x40\x66\xad\x6f\x86\x44\x5b\x46\xf1\x82\xc1\x2b\x46\x7a\xef\xe0\x49\xa0\x69\x77\x42\xab\xba\xfc\xe5\x58\x49\x4a\x9c\x53\x44\x8b\xd8\x0e\x26\x81\x8f\x70\xf0\xd6\x05\xe5\xe6\xe6\xfa\x36\xc7\x74\x33\x64\x5b\xa7\xe1\x28\x5d\x8a\x16\x1d\x6f\x5f\x18\x0b\xbe\x6d\xe8\x4f\xe9\x45\x6b\x87\x36\x9b\xf2\x96\x0c\x67\x95\x5a\xe2\x64\x47\xf9\x77\x5f\x56\xc6\x10\xf7\x74\xe8\x50\x92\x60\x2c\x2e\x37\xa1\xce\x5f\xd8\xf2\xe2\x23\xae\xaa\xde\xce\xe9\x3a\x1a\x66\xae\xfd\xf9\xed\x65\xbc\x84\x92\x04\x7c\x71\x75\xf7\x10\x23\x8b\xff\x7e\xac\x50\xfe\xd8\xee\xd2\x07\xa1\x1f\xc5\x7f\xed\x92\xec\x45\x53\x0c\x4c\xd2\xaa\xa4\xbe\x9e\x89\xb3\x31\x7e\xb2\x0e\xca\x99\x7f\x6e\xff\x83\xe5\x17\x62\x70\x71\x9c\xc4\x2e\x05\x47\xd8\xfa\xb5\x7f\xc2\xdb\xee\x16\xfd\x40\x7e\x4d\xeb\xb9\x02\x4f\x44\xe5\xfd\xb6\x96\x87\x63\xa5\xcf\xca\xf8\xdb\xcd\xdc\xf6\xce\x38\xe3\x03\x0f\x9b\x6f\xcc\xc8\x6c\x5e\xa0\x71\x8f\xdf\x07\x44\x29\x82\x13\x1b\x3b\x61\xe4\x71\x41\xe1\x66\xca\x12\x26\x32\xf1\x84\x82\x9f\x1f\x51\x7e\x0d\x53\x0a\xcd\xa7\xa7\x04\x4b\x51\x6c\x73\xda\x7a\x42\xad\x6d\x39\xe1\xf4\x71\x65\x04\xb8\xbc\x96\xee\xa2\xfd\x82\xa7\xf4\xef\xb0\xf3\x95\x4d\xd1\x21\xe7\x39\xa7\xb4\x37\xae\x50\x34\x64\xa7\x37\x4a\x20\xd0\xe7\x39\xa7\xf4\x0e\x70\x6f\xb1\xf0\x91\xfa\x8b\xc1\x97\xa3\xf9\x8e\x68\xeb\x4f\xd2\xdd\xc5\xae\x7a\x40\x69\xd7\x5e\x50\x37\xe8\x35\xfa\x42\x84\x84\x73\x4d\x73\x67\xa2\xf1\xf6\x24\x49\x66\x45\x2e\x3c\x44\x91\xe7\xaa\x93\x9c\x0f\x95\x37\x4a\x92\x48\x6c\x91\x73\x6a\xd0\x7f\x4e\x0d\x13\x16\xd3\xc5\xc5\x35\x8a\x18\xf8\x38\xf6\xc7\xc5\xd2\x79\x63\xec\xa7\xf5\xb7\x54\xcd\x70\x55\xdf\xb3\xd7\xc7\xbb\x25\x25\x2d\x3e\x5b\x56\x0d\x9b\xa7\xe9\x33\x36\x4f\xbb\xca\x6f\x25\xe2\x36\xac\xcc\xc8\xee\x29\x91\x89\x7b\xca\xdb\xb3\x88\x32\xab\xe4\xa2\x80\xfd\xc4\x62\xe5\x22\x04\x8b\xf5\x4f\xdc\x76\x8a\x9f\x4a\x6d\x84\x36\xb9\xa0\xd1\xfc\x78\xfb\x76\xb0\x95\x55\x5c\x6e\xa7\xb2\x7c\x05\xa4\x57\x5c\xc8\x18\xf3\x41\xdf\x26\xf8\x8f\x06\xf7\x38\x67\x4e\x80\x4f\xdf\x46\x0d\x17\x6c\x38\xa6\x26\x62\xb5\x7c\xe0\x6a\x59\xb3\x44\x04\xe6\x97\xe8\x5b\xd8\x24\x5f\xc9\x0e\x79\x3c\x2b\x11\xfe\xc9\xbd\x15\x49\xf8\x1d\xa5\x8a\xcc\xc3\x7f\xa7\xbf\xe8\x9e\xd5\x4d\x0d\x96\x7b\x00\x28\x42\x69\x5a\xe9\xbd\x10\x2d\x2d\xed\x2c\xd7\x2c\x3a\x66\x17\xa8\xb9\xc5\xaf\xd5\xe9\xbf\x5d\x89\x22\x1e\x0d\x14\x2c\xf5\x52\x6d\xef\xcc\xbb\x85\xd8\x52\x9e\xa7\x82\x4f\x8c\xa3\x81\x25\x9e\x15\x3d\x15\xb4\x7e\xce\x50\x8c\xe3\xd7\x6a\x48\x9c\x8d\xba\x2c\x9a\x82\x8e\x24\xa2\x3a\xbf\x6e\x62\xf5\x64\x69\x51\xd8\x64\xd2\x0f\x62\x37\x03\xa5\x5d\x8c\xd3\x02\x45\xc8\xeb\xb4\x10\xb0\x5e\xbc\x50\xde\xe2\x68\x69\xc9\x66\x94\x51\x88\xd3\x95\xaf\x55\x8e\xa9\x66\xf1\x9b\xaa\x03\x44\x52\x41\x2d\x9f\xee\xbc\xe2\xa9\x01\xff\xe8\x15\xa5\x9f\x96\xae\xd8\xac\x6f\xca\x43\xbf\xac\xf0\x71\x0c\x5c\x47\x55\xcf\x6f\x9a\x34\xdd\x43\x33\x24\x85\xa4\x96\x93\xf5\xba\xa0\x40\x73\x17\x2a\xa6\xca\x26\x2f\x9e\xa0\x0f\x17\x11\xe7\x6d\x9f\x71\x2e\x25\x14\x6e\xf0\x60\x26\xd7\xcb\x6b\x97\x99\x30\x2d\x0c\x34\x06\x7f\x93\xee\x2f\x92\x8b\x3d\x04\xd5\x64\x36\x2d\x05\x7c\xb6\xdb\xa1\x6f\x17\x17\x61\x7a\xdc\x08\x70\x97\x11\x37\x71\x60\x6e\x63\x76\xa5\xe0\xf1\x69\x29\xb2\x70\x08\x56\x0f\x4b\xe8\x69\xec\xe5\x7b\x28\xa0\xb1\x4d\xee\xd1\xb0\x1f\xcf\xfa\x7f\xa3\x4e\x8b\x30\x83\x7d\xbe\x77\x54\xcd\x2c\xce\x55\x16\xf5\x60\x88\xfd\xc2\x6e\xe1\x81\x67\xb4\xfd\x24\x50\xfa\x43\xef\x03\xbb\x84\xd0\x8d\x61\x3e\x92\x89\x3b\xb8\x18\xfe\x0f\x1e\x3a\x63\x4d\xc6\xc1\x16\x50\x85\xdb\x5a\xf8\xe0\xb6\x2a\x66\x86\x26\x8b\x4c\xbf\xa5\x87\xef\xd4\x0a\xe4\x37\x8e\x78\x11\x25\x61\xa6\x6d\x31\xe9\x7a\xff\xce\xa7\x69\x18\x82\x3c\x04\xd1\x10\xa4\xd5\x47\xd6\x75\x05\x67\xc9\x7c\x77\x4a\x71\x62\xb5\xbf\xea\xe6\x58\xd5\xa8\x15\x51\x2a\x7a\xe2\x4c\xfa\xae\xe1\x92\x0e\x4e\xcf\xd0\x74\x09\x94\x79\xa7\xe7\x78\x41\xb9\x12\xfb\x84\x2c\x1b\x0d\x64\x6d\x3a\x89\x1f\x5f\x49\x9c\x57\xc4\x20\xcc\x3f\x08\x51\x8e\x2c\xe9\xb2\xd6\x68\xb8\x0c\x6c\xbb\x08\xf6\x68\xf5\x9e\x26\xb9\xe2\x76\x91\x99\x70\x39\xaf\x94\xa1\x95\xb1\x7a\xdd\xa9\x66\xa6\xbd\x66\x8b\x96\xf7\xba\x63\xba\x2d\xbf\xa9\xa5\xdb\x73\x73\xed\x61\xea\x44\x53\x70\x4a\xdf\xd6\x89\xf0\xed\x1a\x48\xf2\xe0\x74\xfb\xa9\x7c\x3b\x4d\xb4\x58\x18\x80\xd6\x93\x6b\x09\x7a\xf5\x15\x6e\xc7\xba\x98\xe6\x3c\x88\x3f\x00\x7c\x08\x11\xf7\x9b\xb5\x6f\x28\xa3\x41\x77\x42\x45\x75\x74\x52\x90\x37\x7c\x6f\xac\xe8\xef\x97\x15\xa4\x7c\xd1\xc4\x26\x09\x2d\xc6\x3f\x0e\xf1\xea\x39\x9a\x87\x95\x70\x14\xa4\x66\x05\x37\xa0\x6b\xdf\x86\x39\x40\xbb\xe8\xdb\xcc\xd2\x21\x46\x9d\x5e\x44\xcc\xdd\x1d\x3f\x49\x98\xa2\x33\x10\x15\xc1\x51\xd7\x65\x49\x93\x78\x6d\x8f\x0a\x1c\xb0\x52\xa3\xe6\xc7\x8e\x9f\xef\x78\x5a\x18\x43\xca\x1d\x26\xe8\xe0\x34\x2f\xda\x4d\x6d\xcc\x8a\x52\x45\x92\x32\x7a\xa8\xb8\xcb\x2d\x08\x6a\x7a\x71\x83\x79\x0f\x81\x70\x02\xcf\x9f\x06\xe2\x44\x82\xe9\x1e\x15\x4c\x3f\xff\x44\xb9\x79\xf1\x60\x2e\x73\x69\x0a\x40\xcc\x07\x4a\x98\x75\xb2\xa3\xe0\x40\x57\x08\x10\x21\x26\x0c\xf4\xf5\x00\x5c\xde\x52\x22\x32\x1f\x50\x86\x28\x7d\x5c\x14\x50\x32\xed\xa9\x58\x8e\xf8\x64\x13\x6e\x09\xf8\x29\x0c\xcd\xc1\xc8\x87\x7b\xb8\xc8\x38\x58\xa7\x1f\xc7\xe8\x05\x2d\x91\x76\x9f\x92\x55\xb1\x2b\xa6\x38\x84\x0b\x39\x87\x1c\x9f\xa9\x1c\xeb\xa4\x71\x20\x12\x6b\x5b\xb7\xc4\x0b\x2f\xb4\x87\x7d\x93\x83\x7b\x84\x7f\x74\x59\x29\xde\xb0\x3b\x09\x46\x1a\x67\x6a\xcd\x8c\xa7\x89\xd9\x17\x85\xd1\xd0\x50\x17\x84\x55\x08\x60\xc7\xb8\x75\x8b\x1f\x78\xae\x1d\x47\x4b\x1e\x00\xcb\x62\x0d\x74\xdb\x65\x1c\xa9\x8c\xee\x14\x04\x81\xd0\x2f\xf9\x4e\x65\xd6\x74\x4c\xd9\x9a\x31\x68\x1d\xb3\xfb\x16\x91\x45\xb1\x5f\x4e\x68\xff\x1e\x84\x12\x37\x14\x2e\x1f\xaf\xd3\xe9\xf3\x87\xf5\x09\x25\xc2\x5b\xee\x83\x4f\x94\x4f\xd8\xc9\x83\x94\xff\x0e\x49\xd4\x55\x3c\x22\x2c\xc3\x6d\x9d\xd6\xcc\x81\x4d\x56\x5f\x92\x0e\x18\x96\x16\xe2\x04\x78\xd8\x38\x43\xbf\x3b\xf6\xd6\x1a\x37\xc7\xea\xd0\x9c\x58\x57\x75\x13\x80\xe1\x9c\x9e\x03\xc3\x83\x91\xc4\xeb\xd8\x0c\x00\x98\x5c\xa1\x52\x10\x61\x79\x9b\xb2\x12\xb3\x79\x59\x03\x47\x79\x5f\x14\x09\x71\xb0\xff\x8c\x6e\x1a\xbf\x56\x63\x04\x6b\xb2\x24\x4a\x7a\xf9\x1e\x3f\xaa\x7b\x00\x33\x0d\x90\x69\x27\x50\x83\x53\xfa\xf1\xbb\x8f\x00\xbe\x8d\xf5\xf8\x09\x50\x7b\x71\x04\x21\xb1\xc4\x9e\xb9\xa4\xa6\x41\x4c\xa6\xc1\xb0\xe4\x86\xb2\xf5\xbc\xa5\xe5\x52\xbf\x85\x45\x8b\xab\xdc\x84\xd0\x2f\x56\xc8\x9d\x4a\x36\x54\x44\x98\x6a\xa1\xc6\xbe\xaf\x9c\xc9\xee\xeb\x83\x3a\x1d\x25\xdd\x7c\x07\x7d\x24\x42\xca\x31\x35\x09\xc6\x50\xd2\x31\x0f\x94\x78\x1c\xdd\x21\x64\xbd\xd7\x15\x90\xf8\xed\x2a\x3d\x41\x29\x32\xaa\xb3\x52\x7a\x73\xea\x20\x7e\x6b\xec\xa7\x41\xf6\xa5\xa1\x0d\x0b\x56\x0e\x77\xf6\x21\xb0\x95\xe2\xd7\x63\x2d\xc3\x41\x5c\xbb\x79\x86\x0c\xbd\x41\xbf\x9e\x5f\x8f\xbd\x14\x56\xe6\x8c\x04\x18\x38\xaa\xa5\x8b\xee\xaa\xde\x5e\x98\x26\xf9\x30\xca\xe8\x5f\x3b\x1d\x07\x20\xb3\x85\x84\xf4\x90\x9a\x8e\xe7\xf6\x21\x7a\xe6\x32\xd4\x6a\x39\x67\xb9\x5b\xba\xdf\x78\x46\x35\x45\xb6\x63\x61\xf0\x7f\x08\x14\xff\xfa\x36\x5c\x03\xd0\x2f\xf9\x80\x16\x00\xe3\x80\xe8\x16\x4b\x7e\x80\x1d\x23\x52\xbc\x74\x1d\x15\x2d\x08\x91\x3c\xa5\xfb\xcb\xc0\xc0\x86\x3c\x62\x3f\xdb\xc8\x4c\xf8\x96\x1e\x3b\x57\x39\xd6\xa0\x6b\x8e\xff\x4c\x51\xde\xc3\x38\x2d\xca\x0d\x33\xe9\xeb\xb6\xe3\x54\x4e\x38\x01\xcc\x85\x69\x29\xc0\xd9\x17\x1d\xe1\xf6\xbe\x6b\xfa\x27\xa3\x82\x41\x4f\x02\x67\xf5\x64\xf7\x8d\x9b\x74\x42\x88\x23\x45\x83\x20\x6e\x94\x14\x36\xc9\xb1\x96\x10\x9a\x40\xce\xe5\xd7\x0a\xfe\x13\xf6\x0d\x4d\xea\xb3\x7c\xd2\x2b\x16\xbf\xaa\xdd\x2c\x5e\x55\xe3\xf2\x57\x03\x8f\x48\x7a\xd5\xfd\xd6\xbf\xd9\x90\xa8\x2e\x1d\xb0\xbf\xdd\x8d\xb0\x22\x05\x67\xe6\x87\x85\x27\x03\xaf\xac\x90\x2f\xbd\x44\x21\x47\xa2\x2e\x7d\x85\x1c\x7e\x7b\x54\x32\xff\x02\x54\x66\x14\x7b\x77\xbf\x60\xe5\x2a\x30\x48\x60\x3b\x59\x7e\x27\x50\xd6\x34\x50\x45\x67\x78\x40\x45\x0e\xcc\xc4\xcb\x3b\x7c\xdb\xf5\xb6\xba\x8b\xac\x3f\xed\x68\x0d\x0b\xd3\x8e\x4b\x54\xde\x24\x4c\x61\x40\x3b\x17\xfd\x5b\xa5\x6e\xd9\x5a\xaf\xe8\x7f\x59\x1e\x04\xa1\xb4\x42\xda\xc6\xaf\x6b\x3d\xb3\x17\x5e\x68\x17\x36\x69\x95\x27\xb6\x68\x9a\xe8\x86\x67\x5d\x95\xad\x1d\xa6\xc3\xb5\xac\x2c\xa9\x65\x4a\x80\x9c\x0d\x89\x1d\xbf\x56\x38\x9c\x55\x6b\x97\x77\xfa\x60\xf8\x2a\x15\x77\x58\xf1\x97\x69\xcb\x21\xaa\x5d\x1e\xeb\xae\xb7\x52\xd6\xe7\x56\xb1\x98\x00\xd2\xf6\x63\x2f\x15\x85\x54\xba\xe4\xa0\x2b\x66\x10\x15\x6b\x2b\x51\x1c\x3b\x95\x55\x19\xbb\xd0\xe7\xc8\x06\xf0\x8d\x65\xbb\xb8\xb6\x87\xfe\x13\xa2\xfa\x3b\xd0\x5e\xc2\x76\x87\x6d\x39\x0e\x82\xdb\x9a\xc9\xb8\x31\xae\xda\x73\x2f\x4c\x33\xb0\xfa\xd3\x1d\xaf\x40\xca\xc6\x42\x42\xc2\xa1\x8b\x72\x38\x23\xc7\xa7\xb8\xab\xc8\x50\xef\x68\x55\xab\x7a\x16\x7c\x70\xfa\x50\x3b\x8f\x06\x51\x6c\x32\x81\x0a\x8b\xfc\xb3\x37\xa5\xbf\x50\x8b\x3d\x33\x07\xda\x66\x60\x93\x2e\x53\xaa\x59\x69\xb2\x2a\x3b\xa9\x73\x51\x16\x82\x13\x39\x37\x3f\x71\xbb\x19\x28\x7b\xf7\x73\xb5\xcd\x38\x3b\xdb\xce\xc9\x10\xce\x95\x5d\x90\x9d\x11\x77\x93\x7a\xd9\xb3\xbf\x9d\x17\x66\x6d\xd2\x93\x72\x7f\x8c\x9b\x8c\x30\x77\x07\xa7\x2d\x0a\xd3\x23\x8a\x02\x59\xff\x6a\xca\xe1\x56\x00\x93\x63\x8b\xa6\x40\x85\x7d\xf4\x73\x91\x02\x5d\x19\x6f\x71\x19\x78\x7e\xbe\xac\xf2\x26\x55\x7c\x64\x7e\x28\xcb\x36\x07\x2d\x6d\x57\xe0\x89\xc9\x27\x3d\x8b\x39\x21\xf4\xc0\x40\xa4\xf2\x11\x2e\xee\x2b\xed\x67\xce\xa8\x44\x2c\xc4\xb7\x73\x0a\xd7\x6e\x41\x24\xf9\x2b\x2c\x77\x7e\xa3\xf4\xaf\x42\x13\xf3\xac\x19\x77\xea\x0f\x95\xcc\x3f\xf7\x40\xc5\xa7\x54\xeb\xf4\x2a\x96\x39\xc1\x3e\x06\xc2\x4f\x9e\xd1\x13\xd5\x4d\xdd\x6f\xac\xeb\x39\x3c\xdd\xfe\x85\x99\x7d\xcf\xee\x3b\xb0\x7f\xbb\xa7\x50\xdc\xd4\x5c\xde\xb7\x2a\xe2\x02\x63\xb5\x4a\xaa\xe2\x77\x54\x19\x20\x09\x78\xbc\x46\x43\x3c\x38\x4d\xb2\x48\x2d\x05\x4a\x18\xfb\xc9\xd6\x71\xa5\xec\x92\x99\x90\x3a\xb3\xd8\x8b\xa7\x54\xa3\xed\xaf\x2a\xd1\x42\xc9\x33\xa1\x23\x10\xf5\x4c\x91\xa2\xc7\x87\x48\xf5\xae\x8a\x5a\xef\x7a\x4b\x6f\x93\x84\x4a\xc8\x09\x67\xe3\x19\x25\x07\x76\x46\x3f\xc1\x74\x79\x2d\xdd\x89\x50\x23\xe5\x6b\xe5\x12\x1c\x2f\x14\x3c\x0d\x51\x4e\xa5\xa7\x24\x67\x78\xf9\xd1\xd8\xbe\x27\xb4\xcf\xe6\xe9\x40\xd5\xee\x3f\xad\xcd\xbb\xf7\xcd\xb5\x6d\xb7\x67\x39\xce\x55\x5c\x33\xf9\x8d\x9a\xc1\xe7\x45\x66\xcd\xc0\x76\x27\xbc\x13\xe3\x79\xe5\xc9\xb0\x49\xf3\x78\x7c\xed\x25\x27\x63\x12\xa6\x83\x61\x91\xa5\x71\x6c\x33\xb4\x02\xd0\x0a\x7b\x5f\xdb\x9d\x04\x0a\xee\xf5\xba\x9b\x3f\x0f\xb3\x74\xd4\x9d\xf4\x1d\xd4\x09\xa4\x61\xae\xbe\x76\xb8\xd5\x73\x0a\x3a\x7b\xcc\xf5\x7a\x86\x91\xb3\x54\xc7\x8d\xbc\xb6\x55\x83\xe0\x59\xc6\x8c\x3d\x50\x9b\xf1\x91\x02\x5d\x2f\x1a\x58\xcd\x74\x43\x5e\xc0\xaf\x15\x49\xa7\x6b\x78\xff\xb9\xd4\xca\x2b\x4b\x37\x68\x35\xce\x53\xad\x28\x47\x9f\xa4\xf0\xb4\xe0\xf9\x4d\x03\xfc\xa6\x3d\x88\x92\x51\x1e\x8e\x62\x4b\x2d\x29\xb4\x28\xb8\x95\x8d\x16\xdd\x19\x64\x71\xa8\xdf\x3f\x54\x2d\x83\x56\xc7\x2f\xfb\x2f\xda\x62\xa7\xd6\xcf\xf0\xb2\x47\xa7\xc6\x9e\x2e\xc6\xde\xc4\x38\xc1\x51\x76\xa2\xde\x79\xa8\xe3\x71\x67\xac\xb0\x80\xbc\x82\x1b\xab\xd2\x3b\x72\x52\x41\xa3\xb8\x88\xca\x3a\x1a\x84\x68\x1c\xba\xd8\x05\xfc\x5a\x15\x36\x79\x98\xae\xa2\x81\x35\xe3\xa6\x98\xaa\x43\x7b\x3a\x78\xa2\x41\xe9\x27\x57\xde\x8b\xd0\x70\x94\x29\x83\xd2\x60\x4b\xb3\x8c\xd4\x3e\x9f\x77\xb9\x0f\x46\xbf\xd8\x89\xb7\xe9\x2e\xe0\xca\x27\x3a\x0d\xb4\x75\x6a\xde\x01\x11\x82\x96\xc4\x06\xa5\x9d\xfc\xba\x52\xc2\x65\x66\x11\x23\x72\x36\x7f\x19\xfb\x98\x78\xba\xc9\xbd\x2a\xb3\x79\xd4\x1d\xd9\x4a\x8b\xf6\xf7\xc7\xaa\x45\xfb\xfb\x4d\xe2\xec\xc3\x34\x5e\x1b\xe6\x54\xed\x08\x3a\x4a\x09\x63\x9f\x6e\x94\x23\x1e\x94\xf9\xd6\xda\x04\xad\x11\xa7\xdb\xe3\x6c\xe9\x2e\x28\xef\xe2\xaf\xd5\x06\x77\xcf\x2f\x4c\xb7\xf3\x51\xd6\x13\x62\x3b\xa3\x5d\x02\x8d\x9f\x7d\x58\x45\x89\xb5\x98\x51\xa0\x4e\x54\xdc\x09\xd5\x36\x89\x97\xf2\x03\x62\x42\x17\x3a\x1f\x5f\xd3\x6a\x89\x5f\x6b\xc0\x72\xe3\x2c\x2a\xcc\xb2\xc0\x87\xb0\x42\x6f\x29\x5b\xd5\x5b\x4d\x70\x87\x28\x49\x6c\xd6\xf2\xdd\x6a\x0c\x27\x44\xa4\xa4\xe9\xce\x99\xe1\xd0\x1a\xf0\x50\x84\x86\x55\x5e\x8f\xd0\xb3\x94\x5a\x58\xba\x4a\x2a\xf8\x4c\xe7\xa5\x0f\x86\x5c\xd2\x6e\x12\x88\x70\xb8\xc8\xf2\x59\x0b\x12\x94\x1e\x9c\xf8\x26\xab\xfa\xf3\xeb\xb8\x01\xce\xeb\xc7\x4f\xa4\x1f\xa5\x8c\x12\x55\xde\x66\xf0\xb8\x9f\x26\xa7\xa3\xa4\x4b\x45\x78\x45\x12\xe9\xbc\x52\x8d\x07\x89\x5f\xcd\x38\x64\x90\x32\x59\x23\x85\xcf\x1c\x68\x87\x36\x29\x32\x13\x33\xd3\xc8\xe1\xc3\x9d\xa4\x0e\x37\x5c\xc5\x76\xb2\xa1\x25\x9d\xf9\x96\x34\x9a\x81\x7c\xe4\xf3\x9b\xc0\x23\x57\x09\xe1\xce\xf3\xcb\x26\x3b\x2d\xa7\x37\x58\x3e\x8d\x84\xf9\x7c\xd8\x58\x8f\x76\x14\xc4\x77\x92\x3a\xb8\xce\x48\xc0\x2b\x53\x7b\x7b\xc9\xd8\xbe\x34\x82\xda\x30\xb3\x25\x71\x19\x42\x9d\xdc\x5a\xaf\x94\x29\x66\x94\x14\x59\xda\x1d\x85\x12\xb4\x99\xd3\x17\x54\xdc\xd7\xeb\x40\xd2\x7c\x94\xad\xd8\x35\xf9\x23\x34\x06\x58\x75\x96\xdf\x28\x4e\x5e\x66\xf3\x74\x94\xb1\x85\x0a\x6e\x30\x0b\x2e\xf1\x9b\x46\x6a\x80\x43\xb6\xeb\x42\x8a\xd3\x27\x41\x81\x35\x99\xe2\x84\x36\x61\x20\x09\xca\xba\x8f\x54\x2e\xb8\xa7\xa3\x81\x90\x5b\xff\xfa\xa9\xa7\xda\x54\xbb\x29\x46\xf4\x25\x85\x04\x62\xa9\x49\xb6\xdc\x1e\xef\xf1\x48\xf8\x30\x9c\xf0\xf3\x6f\xf4\x5d\xb0\x3b\xb8\x0f\x2c\x9c\x60\x9f\xb0\x76\x4d\x61\x27\x55\x01\xf4\xaf\x02\x4f\x2c\x3d\x4b\xd1\x8b\x5f\x6b\x5c\xda\xbf\x6a\xe0\x1f\xb5\x87\x76\x38\xe4\xc9\x2c\x9b\xbf\x12\xda\x4a\x8c\x60\x1b\xc2\x4b\x9e\xc6\x51\x18\xf9\x96\x2e\x2b\xad\x06\x1e\x36\x70\x5b\x59\x83\x1f\xf6\xa3\x6f\x33\x4a\x0c\xee\x2c\xda\x82\x77\x14\x81\xf6\x22\x75\x5d\xd0\x4a\x3f\xe9\x4e\xc9\x30\x1d\x0c\xa2\x02\xa9\xbf\xeb\xd1\x31\x77\x04\xa7\xc0\x61\x45\x78\x3f\xd7\x70\x8e\xcc\xb7\xbb\x56\x19\x62\x4a\x56\x55\xde\x21\x31\x94\xab\xaf\xce\x30\x5d\xb1\x99\xc3\x74\x09\x33\xdf\xc3\x6c\xeb\x4a\xdf\x33\x07\xda\x76\x94\xa5\x43\x6b\x92\x7c\x42\x93\x84\xb9\x41\x83\x98\xc4\x84\x25\xc1\xad\x7a\x79\x27\x16\x0e\x64\x5f\x24\x21\xbb\x29\xe2\x5b\xed\xac\xdb\x37\xd7\xee\x46\x36\xb7\xf1\x44\xc5\x22\xc5\xef\x10\x80\xee\x84\x96\xe0\xa7\x77\xc3\x28\x4e\x0b\xb0\x1c\x50\x48\x83\xbb\x83\x21\xc4\x77\xc7\x15\xc9\x4e\x4f\x8e\x99\x22\x85\x1e\x3c\x9e\xb3\x63\x8d\xbd\x6f\x40\x89\x9b\xd0\x74\xed\x20\x0a\x5b\x9e\xbf\x79\x4a\x71\xa9\x4e\x35\xce\xf4\x5e\x4c\x19\x3e\xed\x54\xb1\xfc\xe1\xa3\xaa\x93\x99\x7f\xfc\xeb\x24\x49\x28\x5d\x59\x0c\x5d\xc4\x96\xcb\x97\x03\xb7\x74\x0f\xea\x5d\xd5\x32\xc9\xa4\x88\x66\x88\x64\xe0\x27\x9e\xa7\xd5\x06\x8b\x4d\x61\x77\x68\xb6\xed\xed\x40\x2d\x86\x0d\x65\x32\xba\x9d\x24\x03\xf1\x0b\x26\x88\x07\x28\x46\x51\x74\x39\x88\xb1\x4c\x87\x16\x9b\xac\xad\xeb\x74\x5f\x99\xef\x0c\xd3\xac\xb0\xdd\x49\x35\x6b\x62\xf7\x0a\xfc\xd5\x6d\x85\xa2\xbc\xa0\x39\xb4\x7f\x5d\x0b\x63\xf3\x0b\xf3\x34\x9a\x43\x66\xe6\xca\x43\xb7\xe6\xeb\x81\x6f\x6e\xae\x4d\x12\x94\x2d\xa5\xd0\xac\xf8\x63\xef\xa9\x68\x9c\xa7\x6b\x8b\xe5\x32\x6f\x95\x2b\x42\xdc\x23\xcb\x47\x22\xe6\x91\x7e\x59\x17\xd6\x84\x18\x47\x3c\xf3\x3c\xcf\x08\x00\xaa\xe2\xd7\x7a\x59\x8e\x6c\x56\xa4\xad\x2a\x95\xa0\xc2\x32\xd0\x76\xb2\x49\x37\x2a\x4f\xf3\x32\x97\xf2\x99\x5e\xe0\xb1\x22\xa7\x5d\xb5\xd9\x8d\x72\x64\x29\x93\x7e\xe8\x78\x7c\xac\x1c\x42\x00\xd8\x72\xdd\xbc\xd9\x59\x51\xcf\x70\x1a\xb5\x85\x0d\xfb\x49\x1a\xa7\xbd\xc8\xe6\x53\x95\xb1\x9e\x52\xd1\x7c\x0b\x4f\x9b\xbd\x6d\x34\x31\x71\x07\xe3\x27\x80\xeb\xdf\xd3\xd1\x49\x71\x1e\x65\x2d\xad\xc3\xc5\x97\x2c\x9b\x5e\x77\x32\xc2\x08\x30\x1b\xa9\x9e\xca\x07\x25\x55\x95\xc7\xcd\xc1\x4d\x5c\x89\xfb\x9e\x47\xf3\x54\x46\xfa\x0d\xf2\x74\x2f\x8e\x06\x43\x39\x24\xd1\x01\xda\xd0\xbc\xb5\x0d\x27\xab\x0c\x01\x27\x27\x39\xca\x20\x45\x5c\xb7\x20\x16\x7d\xcd\xb2\x64\xa2\x2c\x5e\x9b\xac\x70\x69\x3c\x7d\xe6\x2d\x05\x4f\xf9\xe1\x58\x61\x10\x6b\x21\xbc\xac\x32\x4c\xb8\xec\xad\x96\xc5\xe0\xbe\xa5\x9c\x54\x1b\x54\x2b\xd7\xac\xc9\xe2\x94\xe7\x24\xc8\x15\xcf\x68\xda\xfd\x19\x4d\xa9\x11\x85\x4b\x8f\xb0\x86\xfc\x8c\x03\x0b\x3a\x7f\xa0\x13\x81\x17\x24\xaf\x77\xcc\x67\x67\xdb\xdd\x35\x2b\xcf\xb4\x91\x2b\xf0\xb0\x5b\x55\xd9\x20\x4a\x4c\x4c\x66\x4b\xe0\x75\xec\xee\xf8\xd6\xc6\x79\x45\x1d\x60\xc4\x97\x38\x50\xe3\xc3\x45\xa3\xd4\x93\x3c\x4c\x18\xa6\x83\xa1\x49\x78\xdb\x0b\x3c\xa5\xe5\xd4\x15\x78\x28\x8e\x7f\xbc\x18\x82\x52\x82\x86\xd1\xdb\x81\xc2\x8e\x0a\xa3\x87\xff\xd3\x58\x21\x7e\x2e\x8c\x9f\xac\x92\x4a\xc2\x34\x49\x6c\x58\xa8\xae\x0f\x91\x73\x9e\x95\x37\x4e\x9b\xa2\x48\x47\xbd\xbe\xcd\x8b\x16\x91\x96\xe5\x8b\x5a\x73\xbe\xcb\x2a\x6d\x91\x22\x33\x49\x8e\x60\xd8\x52\x34\x9c\xab\x81\x32\x34\xbb\xaa\x8a\x8b\xff\xf4\x57\x3f\xd7\xf2\xb4\xae\xd3\x63\xaf\x38\x77\xba\x02\xa8\x5f\xb1\x24\xa9\xbd\x77\x86\x83\xda\x7d\x15\xe0\xee\xab\x7f\x99\xdb\x6c\x45\x46\x42\x0e\x9c\xe4\x84\x8d\xce\x06\x15\x4b\x24\xef\xc7\xfb\xee\xd8\x17\x1c\xe9\xd2\x52\x14\x46\xa4\xb4\x5b\xe6\x65\x92\x14\xfb\x29\xe8\x71\xed\xec\x5f\xf4\x6d\x62\x14\x0d\xe5\x03\x3a\x91\xa5\x16\xf1\x47\xd7\x8b\x26\xf9\xec\xa4\xb2\xae\xbb\x10\x28\x93\xef\x0d\xb4\x64\xb5\x34\x84\xb4\x32\x1a\x38\x9b\x43\x9b\x0e\x63\xb1\xbd\x16\x47\x1c\x85\x69\x7e\xb4\xe3\x51\xa4\x1b\x4a\xa8\xb7\x62\x10\xb4\xd9\x84\xdb\x83\x26\x1b\xb6\x2a\x42\x1e\x54\xcf\xf9\x75\x8d\x24\x54\xa6\x68\x65\x11\x61\x46\x65\x70\x49\x70\x36\xb3\x0c\xe4\xd8\x63\x4e\x6e\xd4\x38\x92\x65\x19\x66\x0a\x93\x17\x59\x3a\xec\x73\xb2\x51\x81\x45\x09\x90\xca\x0b\x9a\xae\xd8\xa4\x67\x21\x9f\x5d\xfe\xbc\x26\xe2\xb8\x0f\xb9\x61\x9a\x0d\x3f\xfb\x89\xf2\xf9\x3a\xc9\xbc\x67\x9e\x67\x6e\x35\x8b\x46\xa3\x04\xc3\x56\x75\xea\xbf\x6e\xb8\xc9\x48\x28\xdc\xd0\x3f\x45\x57\x8d\x21\xf5\x08\xca\x52\x0d\xab\x49\xff\x69\x8c\x50\x31\xf3\xbd\x86\xe3\xdf\x75\xa4\x1c\x81\xf0\x2f\x68\x3d\x82\x4d\xc3\xd2\x66\xb2\xa1\xfc\x39\x5d\xe6\xb0\x64\x16\xe5\x15\x2e\x01\xe5\xe7\xd7\xaa\x0d\x44\xf8\x33\xcb\xd4\x25\xfc\xf8\xbf\x54\x54\xa8\xbb\x4a\x28\xe4\xe4\x58\x2f\xc0\xa6\xf3\x84\x70\x1b\x8c\x9f\xc5\x50\x00\x90\x19\x95\xd2\x88\xa9\xf7\x31\x35\x89\x4d\xc8\x90\x16\x39\x8b\x68\x82\x3e\x00\xdc\x0f\xbf\xe9\x48\xa5\x6b\xe2\x38\x5d\xb5\xdd\x9d\x5e\x21\xfc\x82\x7a\x04\xc8\x02\x1d\xcb\xb0\xfc\x36\x24\x67\x7f\x1a\x78\x12\xf0\xec\x13\x68\xcb\x09\xba\x52\x7b\xb3\x2b\x31\x8f\xa3\x63\x0f\xbe\x0a\xad\xef\x9a\x62\xb5\x00\x33\x83\x5e\xc2\x2b\x63\x0f\x1a\xf1\xca\x14\xe9\x62\x5e\x98\x30\xd6\x53\x9b\x0d\x35\xb5\xd9\xa8\x00\x1d\xbb\x23\xbb\x83\x2e\x5e\x7a\x43\xf4\x43\x10\x68\xf6\x20\x7f\x44\xfa\x76\x97\xa7\xe6\xa8\xcb\xcf\x28\x75\x55\xc0\xa9\xf0\x8b\xae\xd1\x5d\xc7\x4e\x3d\xee\x25\xca\xa3\xd8\xe6\x45\x9a\x88\xc0\x99\x1c\xf2\x1e\x1b\x5b\x8f\x17\x7b\xf7\xb6\xcd\x20\x1d\x25\x00\xdd\x39\xb2\x80\xd3\xdb\x3f\xdb\x04\x76\xed\x9a\x81\xe9\xc9\x34\xc4\x49\x69\xf8\xa9\x11\x38\x19\x18\xb1\x9e\xaa\x95\x99\x33\x07\xca\xff\x5d\x36\xfd\xb2\xd6\xa4\x5b\x8e\x20\x85\x39\xbe\x76\x1d\xab\x4b\x72\xf7\xb2\x68\xc8\x9e\x8e\xce\xa3\x4d\x19\xb6\x35\x88\xd1\x3d\x4b\x67\xe7\x88\xa9\xf3\x62\x69\x55\x7e\xba\x78\x5d\x35\x69\xb7\x2d\x96\x8b\x90\x6e\x89\xc8\xdc\xd1\xb5\x8a\x76\x9b\x7e\xb4\xa1\xcd\xf6\xa8\x95\x78\x04\x2b\x51\xd4\x63\xca\x23\x09\x67\xc8\x61\x0a\x1f\x18\x62\xdc\x1c\x2b\xcc\xc3\x29\x3a\x68\x90\xb1\xb2\xfa\x22\x90\x19\x9b\xca\x5e\xe4\x21\x78\xf0\x60\x1b\xbc\xa7\x8a\xeb\xef\x23\xaa\xb0\xd0\x89\x1a\x67\xfe\x58\x31\x35\x62\xdb\x93\xfd\xe7\x7c\x84\x02\x0f\x71\xf9\x18\xdf\xe6\xbe\x29\xac\x19\xb5\xaa\x33\x2f\x0f\xdf\x54\x12\xc6\x84\xc5\x1f\x65\x76\xa7\xbf\xaf\xdf\xa4\xba\x01\x5b\x98\x73\x66\x67\xb2\xeb\xf0\x52\xc0\x8e\x70\xe9\x49\x17\xe5\x9c\x9e\xf7\xee\xe5\x7c\x7f\x1d\xd0\x41\x90\xa5\x8f\xd4\x20\xfd\xcf\xcf\xb7\x97\xa4\x1a\x72\x6a\xa5\x0b\xd3\x4e\x4e\xc8\x9f\xc5\xa4\xc7\x87\xce\x39\x12\x98\x63\x1a\x3a\x79\xac\x56\x86\x97\xc5\x6e\x68\x87\x05\xdc\xf0\x04\x12\x45\x8f\x01\xb7\xfe\x12\x4d\xfc\x45\x19\xb7\x91\x17\xb8\x44\x96\x0e\xee\xd0\x64\x08\x76\xe0\xe3\xef\xe5\xda\xad\xa7\xbf\x5b\x31\x5e\x19\xc2\xb9\x47\x3b\xdf\x95\x13\xb5\x4d\x09\x6b\x7e\xd3\x8d\x52\xe5\x32\xff\xdb\xca\x65\xfe\xb7\xb7\x52\xa3\x16\xe6\xdb\x07\xa7\x1f\x46\x89\xed\xd4\x78\x9c\xfe\xcb\x65\x1c\x5c\x78\x02\x37\x94\x4e\xf0\x09\x7a\x62\x22\x04\x5d\x26\x40\x8e\x84\xa0\xca\x2b\x7a\x62\xa8\x8e\xdf\xd1\x94\x24\x06\xf0\x29\x17\x84\x39\x87\x5c\x22\x48\x91\xc8\xff\x28\x27\xa8\x1b\xb4\x6f\x58\x3d\x9e\xda\x16\x58\x60\x77\x9b\xc6\xf5\xc3\xd8\xac\x09\x46\x0e\x4d\x24\xd0\x89\xf9\xb5\x16\x40\x8f\x92\xe5\xb2\x2c\x4d\x70\x9a\x61\x67\x43\xa9\x1f\xdf\xf5\x01\x7e\xb8\x58\x88\x34\x59\xa3\x0f\xe3\x48\x50\x92\x8e\x22\xa1\xc0\x74\x67\x9a\x6a\x97\xbe\x49\xba\x51\x68\x86\xca\x46\xe7\x88\xea\x42\x1e\x51\xc9\xea\x92\xcd\x12\x93\x74\xab\xa6\x38\xea\x6e\x1e\x51\x6d\x70\x2f\x91\xd5\xf2\xb9\x2d\x17\x17\xfc\xa6\x53\x5b\x69\xcf\xed\x2f\xff\xce\xf4\xd2\x84\xfe\xc8\x41\x75\x95\x41\x49\xa0\xac\x90\xd2\x51\x8c\x98\x88\xe1\xeb\x77\x29\x95\xe5\xd7\x15\x46\xf5\xa8\x97\x6b\x51\x93\xdf\x42\xf0\xe4\x37\x8d\xc9\x5e\x9a\x90\x06\x9c\x9b\xe9\xa3\xfb\x71\x56\x51\x87\xce\xd6\x54\xef\xf7\xee\x6d\x77\xa3\xbc\xc8\xa2\xc5\x51\x91\x3a\x77\xe3\x8a\xcb\x18\xbf\xa9\x1d\x41\x22\x8d\x64\x06\x69\x98\xd2\x17\x22\x2b\xbb\x88\x6b\xe7\x37\x81\x32\x5a\x32\x49\x97\x26\xc0\xf3\x28\x6c\xcf\x7e\xaa\xe3\x79\xc4\x1f\x29\x93\x89\x47\xd6\x95\xe7\x9b\xb5\x03\xdb\xdd\xae\x90\x37\x17\x14\xc6\x6a\x7b\x47\xc9\x8c\x31\xed\xc0\x81\xe4\x9d\xdd\x21\xa6\x48\x1f\x07\x98\x27\x32\x3d\xe7\xd5\x1a\xd9\x27\x91\x56\xb0\x61\x5d\x6b\xba\xdb\x3d\x50\x79\x43\x71\x15\x3e\xb5\xae\xec\x79\x4f\x69\x6c\xcb\x19\xaf\x1f\x1f\xfe\x22\xa6\x0d\xa2\x53\xa2\xaa\xa1\xa1\xcd\xa0\x1d\x4f\xc8\x5a\xb7\x84\xca\x4b\x53\x79\xda\x21\x71\x4e\xd5\x8b\xeb\x3a\xe7\x3a\xca\x33\xf9\x59\xb9\xa5\x5a\x20\xf9\x16\x7e\x15\x8e\x8c\x87\x3a\x65\xaa\x8e\x6e\xf1\x5d\x75\x8e\x5f\x46\x4a\xe5\x66\xd6\x07\xa7\x19\x41\x02\x1a\x22\x72\xa8\x1b\x14\x3f\x64\x69\x7f\x9c\x60\x56\x61\x5e\x6a\x29\x2b\xc6\xf3\xaa\xf5\x78\x5e\xb5\x2b\x47\x6b\xf9\x0e\xca\xf5\x91\xe8\xf0\x45\xbb\x06\xef\x97\xbf\xc0\xc9\xed\x79\xad\x0e\xb0\x1b\x37\x12\x39\xf6\xa3\x1d\xaf\xf4\x78\x53\x91\x04\xf6\x28\xb6\xe4\xd0\x26\x21\xc0\xdc\x8e\xb6\xea\x0e\x30\xc0\x42\x10\x33\xef\xd7\x28\x22\x0b\xd3\xed\x51\x62\x62\x92\xae\x05\x1f\x59\xc4\x17\x5b\xca\x02\x83\xee\x33\xeb\xb6\x2b\xd7\x81\x07\x3a\x3e\x7b\xe8\xda\x38\x5a\xe1\xf1\xa1\x00\x44\xca\x8f\x10\x68\xd9\xd6\x23\xf9\xa9\xa7\xda\x45\x3a\x68\xf9\x9e\xfa\xbb\x63\xe5\x87\xf5\xee\xc7\x1a\x88\x87\x66\x60\x33\xd3\xf2\xe8\xc0\xf3\x81\xc2\xf4\x68\xc9\x9d\x5e\x59\x00\xb1\x37\xbe\x0c\xba\xe8\xfc\xe0\x37\xea\x29\x7d\xe1\xb9\x2f\xa2\x8d\x8e\x25\xf3\x63\xe5\x9a\xc5\xbb\x1d\x99\xc5\xd5\x06\x75\x81\x76\x16\x75\xb7\xf4\xa6\x4e\xa9\xde\xd4\x29\x85\x2d\x1f\x98\x11\x64\x9c\x79\x31\xd3\x3f\x93\x85\xed\xb7\x4b\x37\x5a\x5a\xb2\x99\x7b\xa4\x0c\x68\xa8\xa8\x43\x95\xdb\x08\x41\xe1\x5b\x0d\x16\x81\xfb\xdb\xb1\x19\xf5\xfa\xee\x57\xb9\xd2\xd4\x9b\xd4\xd4\x66\x57\x07\xa7\x67\xda\xf9\x28\xec\xb7\xe8\x58\x66\x72\x86\x4a\xff\x36\x3f\xd6\x50\x27\x1a\xd8\xb8\x6b\xa8\x1b\xdc\xd8\xb7\x6d\x38\x14\xbb\x99\x82\x79\x88\xbe\x0f\x2d\x32\x7e\xa3\xd8\x46\x7d\x53\x64\xd5\x46\xd0\x86\x6e\x04\x6d\x8c\x3d\xf6\x01\xa9\x58\x59\xdf\xe7\x53\xca\xab\x06\x38\x43\x86\xd8\xfb\xa8\x16\x5c\xa8\x82\x1f\x11\x67\x10\x03\xae\x28\x61\xa5\xd0\x64\x51\x68\x8a\x51\xc6\x88\x17\x21\xec\xd3\x8f\xe0\x37\x8d\x6e\xf4\x51\x6f\x94\x89\x1e\x22\x80\x1a\x57\x30\x8d\xc3\x53\x7c\x4b\xd5\x6d\xa7\xdd\xc4\xab\x67\x13\x0a\x96\xf2\xec\x04\x6f\xe7\xe7\x0d\x77\x6a\x87\x1c\xb1\x87\x93\x30\x8a\x23\x53\x90\x13\x9a\x43\xc6\x9d\x50\x48\xf9\x13\x2a\xd7\x1f\x98\x38\x4c\xe3\x01\x26\x88\x90\x0d\x7a\x65\xac\xbc\x58\x30\x61\x66\x66\x12\x36\x98\xd0\x94\x1a\xc0\x81\x2b\x91\x2d\x54\xfb\xe5\x88\x6e\xbf\x1c\xa9\xdd\x9a\x03\xcf\xb5\x17\xd3\x38\x2f\x58\xc0\x52\x44\xb5\x29\x97\x94\x1e\xc3\x93\xaa\x0b\xe3\x4f\xfd\x09\xe5\xa3\x75\x5a\x69\x3e\xa1\x85\x2f\x42\xa8\x5e\x2a\x7c\x68\xf2\xdc\x26\x3d\x9b\xa1\x3c\x71\x56\x1b\xfb\xe6\x1c\x80\x4f\x8c\x15\xba\x9c\xa1\x21\x69\xbd\xa7\x6d\x4d\xee\x95\xcf\x46\x67\xc5\x9f\x6f\xff\xca\x76\x4f\xd4\x60\x61\x22\x64\xb8\x27\x34\xd2\xf8\x12\x21\xd2\xf8\x5f\xa9\x39\xf0\x0f\x70\x7f\xf0\x17\x37\x2b\x0e\xba\xbd\xbe\x60\xc9\xdd\xc9\xee\x34\x3e\xbf\x8f\x2f\x62\x35\x32\xd5\x16\xcc\xcc\x1a\x2a\x16\xa1\xc3\xb5\xe6\x3c\x1b\xee\x61\x35\x63\x5c\x89\xb8\x2c\x06\x28\xff\x1c\x7e\x2c\xbf\xa9\xed\xef\x7d\x73\xed\x61\x96\xf6\xa3\xc5\x08\xec\x05\x47\xbc\x66\x87\x6f\x7e\xa3\x58\xb1\x4b\x69\x66\x07\x69\x8e\xf9\x37\x86\xe4\xd0\xf9\x41\x97\xe5\x87\xf8\x3b\x70\xaa\xae\x34\xfa\xab\x94\xcb\xd8\xfa\xc6\x2f\xef\x1a\x45\xa4\xb9\xa2\xd8\x70\xf4\x8f\x87\xc5\x0e\xba\x2d\x4e\xb8\x6e\xef\x5e\x9f\xa7\x29\x45\x3b\x7a\x16\x02\x76\xf4\xf3\xf9\xe3\x74\xd8\x23\x1e\xdc\x56\xf2\x1e\xc7\x55\x67\x6a\x94\xac\xa6\x59\xd1\x07\xc0\x07\x39\x10\x1c\x24\xf9\xb5\x83\xd5\x8d\x92\x6c\xc4\xde\x97\x38\xee\xdf\xa4\x6f\xe2\xd7\xe3\x27\xd4\xa3\x88\xf2\x62\x94\x45\x2f\x63\x69\xca\x51\x76\x3a\x50\xfc\x9b\xd3\xe5\x42\x96\xce\xfe\xa8\x48\x07\xa6\x88\x42\x34\xc7\x64\xda\x49\x2b\x96\xdf\xd4\xe0\x8b\x33\x07\xbc\xcb\x2c\x42\x1c\x54\xad\x99\x85\x33\x56\x9e\x1f\xda\x0b\x7d\x71\xf4\xf2\xcb\x65\xd0\x9a\x9d\xdd\xef\x2c\x16\x5a\x4e\xb6\xb1\xd5\x51\x9d\x94\x2b\x9a\xac\x65\xf3\xa2\xcc\x7d\xdd\xe1\x76\x3f\xf0\x62\x4f\x48\x5b\xf0\xff\x7f\x50\xee\x6d\x19\x0f\xf6\xd3\x2c\x1d\xf5\xfa\x4b\x26\xb3\x2d\x8f\x5c\xff\x51\xe0\x47\xfa\x3f\x52\x10\xdb\x7c\xb4\x18\x47\x34\x33\x69\x29\xf7\x96\xab\xb4\x9f\xf9\x75\xad\x02\x23\xa9\xa3\x51\xe2\x56\x94\x20\x4c\xd5\x56\xaa\xeb\x2a\xcc\xce\xb2\x67\x13\x9a\x57\x68\xf9\x6e\xaa\x19\x00\x44\x4d\x25\xd7\xda\x52\x34\x7f\xf9\x0b\xed\x17\x5e\xd8\x51\x5e\xbd\xb4\xcc\x5b\x8e\x6e\x7f\x51\x37\x62\x8e\x23\x1d\xe1\xe6\x24\x2d\x72\x15\x8a\xe7\x7d\x28\x3e\x38\xed\x3c\xce\x1f\xae\xd0\xbd\x0a\xfb\x90\x67\x6b\xb2\x06\xb0\x30\xb3\xbd\x19\xd6\x71\x3e\xda\x10\x7d\x8e\x51\x41\x2e\x88\x12\x3f\x1c\xdb\xd5\x51\x90\x9d\xdf\x18\xab\xdf\x79\x5e\x3b\xa1\x9c\x56\x2a\x44\xa7\xc1\x51\xe3\x6f\xd4\xa8\x80\x1f\x8d\x55\xbb\xf2\x9b\xaa\x46\x1a\x8c\x32\xd1\x01\xc0\x8f\x63\xf1\x68\x7e\xe3\x1a\xa7\x65\xd8\x1f\x0d\xe4\x09\x54\xbc\x1e\x11\xff\x3f\x22\x95\xdf\xf3\xee\x0f\x5e\x34\x61\xba\x98\xa7\x09\x83\x2f\x50\x5c\x7f\x4f\xa9\x4f\xbc\xa7\xb3\x92\x13\xc1\xe3\x35\x98\xfa\xc1\x69\x1c\x13\xdc\x44\x42\x70\x94\x8e\x52\x93\x86\x4f\x96\xe6\x96\xa6\xca\x68\x55\xc0\x1f\x17\x37\xf6\xac\xd2\xcf\xb9\x81\xc5\x06\xc8\xe8\x44\x0d\x4f\xbb\x77\x2f\xb7\xdf\x15\x8c\xee\x04\x96\x09\xbf\x69\xc8\xd5\x0e\xb5\x17\xd3\x2c\xa9\xe8\x99\x07\x4a\xcf\xbc\xa9\xa7\x50\x96\xfd\x3c\x90\x92\xe5\x04\x2e\xbd\x3c\xe4\x26\xc3\xac\xcc\xe4\x7d\x99\xf7\x32\xae\x02\x51\x47\x40\x16\x35\xc1\xae\xf9\xf2\xd0\x18\xa6\xb9\x6c\xb8\x26\xce\x59\x0d\xad\x35\xaf\x4c\xda\x5a\x4a\x82\xf0\xa2\x2a\x85\x2f\x02\xae\x2f\x2c\x8a\xcf\x72\x29\x2f\x14\x57\x45\x91\x3d\x17\x6c\x91\xd6\x99\x5f\x98\x2f\xb3\x62\x50\x49\x91\x61\xfe\x2e\x3d\x20\xec\xec\x3f\x1a\xab\x89\xde\x37\xe8\x40\xc0\xdc\xe2\xec\xd8\x1b\xe3\x62\xdb\x60\x14\xf3\x2e\xe2\x34\xf0\x4d\xdf\xc4\x42\xc1\x69\x7e\xd9\xc9\x95\x50\x73\x8e\xcf\x72\x74\x67\x6f\x04\xda\x78\xee\xa7\xda\xe0\xe1\x72\xed\xe6\xef\xdd\xdb\x1e\x9a\x24\x0a\x97\xd7\x68\x59\xe0\x47\x9f\x57\x2e\x2c\x75\xb6\x7f\x79\x7e\xe6\xe9\xa8\xe8\x97\x55\x4f\xcb\xa9\x49\x55\x07\xc0\x0a\x8b\xda\x37\x65\x5e\x5d\xfe\x47\xa1\xd5\xb5\x94\xf6\x7e\x43\xa1\x53\x98\x78\x59\x1e\x2b\x5a\xb0\x3c\x7b\xe2\x37\x4d\xc5\x11\x69\xa5\xe7\x13\x8a\x72\xf4\x13\xfa\x3d\xd8\x0d\x6c\xaf\x8d\x40\x7a\xbb\x76\x84\x1d\x9c\x26\x83\x91\xed\x4e\x01\xeb\x19\xe6\xa1\xea\x2a\x17\x87\xd4\xb6\x75\x25\x27\x89\xee\x31\xe0\x28\xd7\xc6\xae\x1f\xf3\xe2\x8d\xda\x37\x94\xc7\x83\x89\x63\xba\xc7\x58\xd2\x97\x10\xf9\xf8\x8d\xe6\xde\xc3\x07\x88\x6e\x18\x12\x8c\x5b\xba\x11\x74\xab\xd2\xdc\xca\xba\xf9\x9e\xf2\x33\x5d\x9b\x7b\x41\x58\x5f\x77\x10\xc4\x90\x7d\x40\x73\x1c\x55\xca\xb1\xb1\x42\x6d\x9c\x0e\x5a\x5f\x9a\xe1\x28\xfb\x27\xb4\x09\x9c\x86\x91\x97\x6b\xb9\xa1\x2d\x46\xee\xa0\x39\x84\xdf\x8d\x76\x28\x5e\x7f\x58\x2d\x60\x1b\x9b\xf8\x26\x0f\x4d\x57\x98\x0e\x8d\x00\x4b\xc9\x93\xf3\xf4\x61\x8a\xf9\x80\x11\x1f\xc7\x91\xa3\x7a\x33\x62\xe0\xb8\x63\xbd\xf5\x45\x41\x9d\xb0\x66\x9c\x80\xc2\xd1\x4e\x76\x5e\xc1\x7b\xf7\x72\xc2\xb3\x93\x1a\x1d\xc8\x48\x76\xad\x2b\xa6\x35\x2c\x17\x10\xc5\x1f\x45\xb7\x12\xb5\xf9\xf6\x75\x07\xd3\xbe\xf3\xcb\x1d\x87\xa3\xf8\xe2\xa7\xc0\x63\xc6\x62\x00\xbc\x8d\xce\xa8\x67\xfe\x5e\x67\x6b\xe9\x44\x30\x3a\x12\x4e\x8e\x92\x91\xe5\x36\xaa\xb3\xa0\xf1\xda\x8b\x1b\xf5\xed\xb6\x30\xdf\x1e\x0d\x7b\x99\x61\x87\xa1\x79\xa7\x4c\xa3\xb0\xda\x67\x83\x27\xb5\xd0\x9e\x5d\x8a\x92\x08\x4a\x98\x6e\x71\x9c\x1a\xeb\x99\x93\x60\x25\x57\x4d\x92\x18\xfa\x57\xae\x5d\x5e\x5e\xb7\x18\xfb\x34\xc8\x89\xd2\xf6\xe4\x50\x2d\x87\x9c\x02\x4d\x37\xb1\x3b\xc9\xd9\x78\x3b\x5d\x32\x8a\x00\x96\x0b\xc6\x6f\xbf\xe4\xcd\x98\x46\x4f\x74\x14\x5e\x98\x5d\x07\x85\xd9\x4b\xdf\x88\x5e\xd5\x09\x45\x92\xb6\xa6\x2c\xf1\x12\x12\x56\x43\x8b\xee\x8e\x72\x77\xfa\x88\xe2\x2f\x3a\x59\xad\x8e\x87\xd4\x5c\x0f\x94\x40\x29\xa3\xa8\x45\xf7\xa4\x2e\x7f\x05\xa0\x66\xa1\xa8\xd0\x17\x94\x9f\xce\x85\x06\x82\xe5\xbc\x32\xc5\x9c\xf4\xb0\x86\xe3\x63\xcf\xcb\xbc\xa4\x40\x29\x6f\xd3\xcf\x14\xfd\x37\xc9\x35\x32\x1b\xae\x85\xb1\xcc\xb8\x11\xd6\x6e\xa8\xd1\xcb\xed\xca\xf9\xa0\xc5\xd0\x46\xc3\xcc\xb2\x79\xa4\xd8\x2b\xaa\x5a\xea\x82\x03\x07\x45\xb9\x59\xb4\x71\x6c\x28\x7b\x47\xef\xef\x08\x12\x25\x8c\x00\x5f\x0f\x94\x02\xbc\x16\xf2\x4b\x47\xd9\xc3\x3e\xf1\xbe\x37\xf6\x55\xf9\xff\xa3\x21\xdf\x27\xc7\x24\x90\x2f\xca\x15\xbe\xc8\xfc\x3d\x7a\x46\x38\x17\xa9\x25\x33\xbf\x39\x41\xd0\x4f\xc7\x6d\xf6\x2d\xfb\x57\xc6\x15\x22\x2c\x3d\x38\x84\x82\x37\xb5\xb7\xfd\x63\xeb\xd8\xf1\x04\x56\xfb\x5b\x30\x58\xa6\xa2\x78\xe1\x71\x7a\xf0\x12\x09\x76\xbb\x3e\xf4\x2a\xce\x18\x69\x55\xa9\xb6\x55\x0d\xb7\x58\x1e\x11\x51\x56\xf4\x55\xa7\x0c\xae\x88\xc0\xbc\x03\xb9\x85\xf3\xc9\xbb\xc3\x8d\x92\x6e\xd4\xd5\x47\x33\x83\x1a\x1c\x5a\x61\x9f\x03\xfb\x34\xda\x66\x8d\x92\xd5\x28\xf6\x80\x34\xdc\xb9\x5b\x4a\x76\xf9\x96\xc7\xcc\x8d\x22\xd2\x9d\xe6\x23\x10\xab\x0a\xd2\x2c\x40\x75\xde\xd3\x6d\xcf\xc3\x4d\x62\x64\xf9\x2f\x41\xf5\x0c\x43\x14\xc6\xb5\xf2\x9b\x2a\xc3\xc6\xc6\xd0\xa3\x42\x45\xf1\x1e\xa4\x2b\xf8\x4d\xc5\x41\xad\x6f\xbb\xa3\xb8\xcc\xeb\xca\x7f\xcd\xd6\x57\x41\xc5\x89\xdd\x8f\x6d\x57\x6d\x1c\x42\xbb\x5c\x9d\x42\x2d\xa7\x61\xb2\xe1\xee\x6a\xf8\xb2\x0d\xfb\x93\xad\x67\x9e\xaf\x98\x5f\x63\x41\xa0\xbf\x2e\xff\xbf\x96\xcc\x71\x40\xcd\x41\xd4\xcd\x47\x83\x81\xcd\xb0\xab\x50\x34\x43\xf2\x16\xcf\xe2\x12\x7e\xa1\xec\xaa\x26\xa7\xbd\x54\x3d\x15\xcc\x28\xf5\xbc\xf2\x82\xc2\x49\xf6\x47\x8b\x36\x9b\xf0\xd3\xe7\xb7\xc7\x0a\x62\xf7\x1e\xad\x00\xfc\x82\x7f\xaf\x51\xda\xa6\x67\x5e\x8e\x12\x4b\x53\x12\xae\x81\x69\x58\xb9\x79\x5a\x29\x69\xdd\xd2\xa4\xcc\x53\x8a\x6d\xb6\x11\xa8\x1e\xbf\xae\xb9\xe3\x34\x93\xc1\x11\x4e\xf6\x79\x65\x52\x8d\xe1\x8e\x80\xad\xfd\xa4\xcd\x44\x74\xf0\x94\x4f\x90\xed\x6b\x69\xad\x8b\x95\xed\x56\x98\x55\x79\x42\x98\x32\x39\x4c\x8a\x28\x8c\x8a\x35\xfa\x36\xfc\x60\x18\xc0\x63\x69\xc2\x76\x03\xc0\x92\x13\x8a\xa2\x30\x30\xa1\xea\x00\x5d\xd6\x51\xeb\x72\x53\xba\x7d\x70\x7a\xfe\xf1\x32\x85\x71\x46\x84\x73\x92\xf3\x6c\xeb\x28\xd5\xa3\x4d\xdc\x2b\xac\xfe\xa9\x0e\x5d\x0d\xea\x3b\xb8\xbd\x22\xd0\xbc\x4e\xc5\x2c\x92\xfb\x53\x88\xad\x2e\x59\x9b\x9f\x39\xc0\x07\xfd\x1b\x5a\x7d\xe2\x89\x75\x4a\x87\x38\x5f\x47\x01\x8b\xb9\xd6\x9f\x53\x42\x88\xf8\x08\x5e\x3c\xc6\x6e\x77\xf1\x74\x80\x54\xd9\x0c\xf4\x08\x75\xec\xe1\x4b\x37\x54\xc5\xcc\x0a\x29\xfc\x7b\x6b\x2e\x23\xfb\xe6\x40\xc4\x12\xa3\xef\x96\xc7\xe3\xff\x1f\xb4\x5c\xf8\x75\x6d\xcf\x97\x07\x73\x98\xa3\x0e\x12\xd5\x32\x25\x06\x76\xd2\x25\x09\x8b\x65\x79\xd6\xf2\x0b\x0c\x73\x07\x7e\xdd\x64\x5e\xb4\x98\x59\x4b\x2e\x5a\xc8\xf4\x30\xc5\xe1\x76\x2d\xbf\x69\x1a\x98\xa7\xa3\x62\x29\x4e\x57\x69\x01\xe0\xfc\x01\xd6\x9a\x5f\xab\x8e\x8e\x49\x92\x74\x94\x80\xac\xbd\x4b\xe5\xf6\x1b\x74\xd3\x9d\xba\x55\xf9\x04\x9d\x9c\x9b\xd3\x32\xbd\x16\xa8\x95\xae\xd6\xe4\x05\x6c\x7c\x74\x50\xce\xa2\xe7\xc0\x6f\x82\x0a\x34\xd5\x77\x22\xbb\xd6\x64\xa8\x90\x3d\x96\x0b\x88\x25\xa9\x55\x7c\x62\x1f\x47\x85\xcd\x44\x08\x5b\x44\x73\x3d\xf9\xe0\x84\x82\x04\x0e\x23\x1b\xda\x49\x95\x5c\xbe\x4f\xb4\x1b\x9c\x35\x5f\xc5\x5a\xe6\xff\x30\xf6\xd6\x8d\x5f\x55\x93\x26\x3b\x18\x2a\xf0\x05\xa3\x29\xf9\x4d\xa0\x0c\x70\xe3\x38\x45\x23\x11\x07\x1f\x3a\xdc\xfc\x7a\xdd\x87\x72\xfb\xd2\x30\xcd\xc0\xc4\x29\x7f\x7d\x85\xa4\x2c\xb8\x01\xad\xde\x77\xbd\x96\x44\xed\xdd\xdb\x36\x61\x96\xe6\xf9\x94\x6f\x3f\xc0\x4d\x13\xcb\xf3\x3e\xca\x5b\xb4\x38\x7e\xa2\x7c\x41\xbe\x83\x6f\x91\x7c\xc2\x49\xa2\x66\x51\x11\x85\x39\xf3\xec\xc4\x36\x8f\x7e\x1d\xd2\xab\x49\x1a\x8a\x3b\xa1\x87\xf2\x33\x70\x5d\x37\x6b\xe9\xda\xc2\x34\x63\x81\x4d\x26\xe4\x7f\x34\x2b\x5e\xd3\xa3\x93\xc0\x5b\x53\x7c\xd8\x40\x0f\x9e\x11\xdd\x6d\xce\x8d\x9d\x30\x94\xd3\xc3\xac\x8f\xcc\xcb\x52\xba\x97\x82\x73\xa4\xaa\xb3\xb9\x8a\xaa\x14\xce\xbf\x37\x55\x13\x34\x2f\xd2\xcc\xe6\x7b\x7c\x1e\xb0\x73\x5d\xc9\x52\xa0\x97\x2f\x73\x4a\xdc\x1f\x04\xe0\xd7\x95\xd8\x09\x9b\x3a\x29\x28\x8c\x3c\xf7\xdb\x81\x52\x5e\x3f\x0a\x4a\x33\xff\x33\x68\xcd\x09\x05\x93\x2e\x53\x20\x72\x2a\x8a\xec\xec\xd4\x47\x85\xed\x45\xbb\x14\x41\xbf\xba\xa5\xd4\x8d\xfd\x90\x40\x9d\xef\x9f\x8d\x3e\xbb\x44\x1a\x10\xe8\x05\x03\x6c\x84\xec\x0d\x56\x49\xec\xc3\xdf\x10\xd0\xe6\xdb\xb1\x41\xc2\x25\x80\x3f\x65\xab\x71\x07\x21\x5d\x78\x3f\x9e\x83\xd3\xcb\xec\x2a\xcd\x12\x90\x38\x1c\x51\xd0\x7b\xc0\x8a\xd8\x1b\xae\x56\xd4\x3e\x3f\xdf\x1e\x46\xc5\x92\x89\xe3\x1c\x0d\x44\x56\xce\x1c\x2b\x40\xee\x75\x2c\x4a\xc4\xfb\x6d\x35\x92\x27\x59\x22\x15\x66\x59\x70\x92\x9c\xa5\xe2\x81\x48\xca\xfa\x71\xe0\x80\x7e\xba\x3a\x49\x42\x27\xe8\xd5\x20\xfb\x71\x30\xde\xd9\xd9\xcd\xd3\xba\xc3\x7b\xbe\x69\xf4\x32\x30\x51\x52\x98\xc8\x7b\x70\x8a\x9b\xa4\x87\x01\xbd\xad\x52\x93\xf2\x58\xcf\xa8\xb0\x74\x63\xfb\x7b\xc0\x51\xf1\x1b\x85\x6a\x82\x5a\x43\x9a\xe5\x4f\x7a\xcc\x02\xdb\x99\x20\x28\x4f\xe0\x88\xc6\x79\xfd\x4f\x03\x85\xe4\xe5\xd2\x4f\xb2\x14\x4d\xa6\x65\x97\x44\xd4\x53\x9b\xd0\x02\x65\xa3\x15\xb8\x5b\x22\x8b\xbb\x03\xe8\x33\x9a\x01\x98\x0e\xe1\x17\xfc\x90\x9e\x28\xe2\xc2\x37\xc7\x0a\xd8\xce\xbd\x3d\xee\x58\xd3\xbe\x15\x39\x04\x3a\xe3\x5d\xfa\xfd\xcc\xf3\x5e\xf4\xc0\xa9\x4d\x9d\xa0\x0e\x03\x88\x32\x50\x64\x40\x28\x83\xc9\x21\x06\x23\x1f\xd4\x02\xc0\xbe\x39\x1a\x86\x4f\xd0\x55\xa0\x1c\xde\x54\xa0\x99\x3f\x53\x01\xe0\x7e\xd3\xd3\x0b\xcd\x60\x68\xb4\x83\x2a\x56\x0c\x06\x21\xfc\xba\x56\xcb\xcc\xce\x96\x2b\xde\xa2\x79\x27\x36\x0f\x2d\x6f\xf9\xa0\xd2\xd7\x61\x6c\xd6\xf2\x29\x3f\x16\xfb\x88\xba\x96\xa8\xf4\x7f\x4c\x71\x06\xb7\xfe\x43\x95\xfe\xbe\xa7\x19\x71\x97\x9b\x5a\x61\x84\x67\xa5\x75\x80\x47\x7a\x7c\xac\xa6\x99\xc7\x15\x5e\x7c\xc9\x24\x32\x8d\x7a\x96\x5b\x17\xe0\x4f\xf3\xeb\x8e\x24\xf5\x26\x31\x71\xcf\xe6\x8c\xce\xe7\x3a\x2c\xd0\x35\x59\xc5\xae\xde\x2e\xef\xd6\x00\xad\xaf\x11\x74\xc5\x99\xcd\x6d\x95\x30\x42\x95\xfa\x93\xbf\x49\xc2\x48\x2b\x20\x29\x95\x24\xd5\xb5\x7c\x5f\xa9\x83\xbc\xad\xc6\x2b\xcb\x76\x30\xb4\x19\xc8\x2a\x0c\x45\xa4\x8f\x10\x58\xa2\x67\xd2\xe4\x11\xf7\xac\x9b\xc0\x55\x7e\x7a\x65\xbf\x32\x8a\x56\x4c\x6c\x93\x62\xca\xcf\xd6\xbf\x1b\x28\x61\xf6\xd3\x5a\x91\xe7\x6d\xfa\x5d\xd2\xcf\x54\x72\xf8\x6f\xab\xc9\x6f\x4c\x50\xbe\x83\xd3\x5e\xd9\xbd\xdc\x9d\xfc\x46\x5d\x0c\xf5\x7a\xf3\xc7\xe9\x62\x64\x06\x4a\x4b\xdb\x61\xef\x9e\x77\x53\xd0\xed\x64\x51\xeb\xbc\xd8\x5c\x21\xc4\xf2\xb8\x8c\xea\xa4\x6d\x88\xa3\xf1\x07\xe3\x1a\x38\x12\xe1\x96\x27\xe3\x52\xba\xd3\x81\x25\xd3\x55\x65\x57\xf9\x7b\x2a\xd3\xff\x2d\xee\x91\xe3\x2c\xfc\x50\x4d\xb2\x2f\x21\xef\x73\x5d\x0a\x07\x80\xe1\x65\x0d\xf0\xfe\x0f\x02\x05\xa1\xfd\x40\xa9\x9f\x17\x7d\x9b\xdb\x3d\x14\x55\x90\xe8\x7e\x2b\x50\xd6\x94\x8f\x60\xac\xe9\x38\x9c\x07\x45\xff\x19\xab\x1a\x2d\xe6\xc9\x8e\xef\x7c\x9f\xfc\xf4\xba\xe7\xdf\x6d\xeb\x78\x1b\xa2\xd6\xba\xe3\xb5\x9d\x7d\x92\x62\xea\xbd\x7f\xfa\x18\x35\x50\x70\x4f\xf8\x10\xc7\xae\xdd\xd5\x71\x6e\x35\x69\xba\x34\xe1\x9b\x02\x8c\xac\x95\x3d\xe2\xcb\x8f\x75\x37\x6b\xce\x6d\x98\x26\xdd\xdd\xad\x2f\x7f\x41\x9d\x88\x22\xcf\x74\x9c\x9e\x02\x7d\xd6\x83\xbf\x8c\x6b\x13\x53\x04\x45\xa8\xe0\xee\x3b\xdb\xf0\x8f\xbd\x0a\xe7\x15\xbf\xd2\xff\xf7\xf6\xba\x12\x72\xde\x20\x83\x46\xc8\xc5\xdd\x0b\x9e\x50\x18\x1d\xe0\x55\x99\x47\x28\x66\xcb\x40\x9f\x48\x31\xf9\x84\xca\xce\x57\x6c\x9c\x0e\xcb\x22\x61\xb7\x52\x70\x86\xc1\x82\xb8\x52\x2b\xa3\x89\x07\xe8\x66\x23\xe5\x67\xcb\x19\xd6\x5f\xa7\xed\xbe\x79\x3c\xf0\x29\xf5\x2d\x5a\xb2\xdc\x9e\xa6\x55\x2a\x52\xed\x58\x59\xfc\x89\x1d\x25\x8c\x1f\xa7\xe1\xf2\x2e\x7f\x62\x40\xde\x10\xcf\x1c\xd0\x21\x1c\x77\x93\xeb\xca\xce\x97\x8d\xde\xdc\xb8\xce\x6b\x91\xbe\x15\xf8\xae\x2d\x23\xe7\x54\xd8\xf1\x9e\xb9\xbe\x26\xf8\x47\xbf\xfa\xab\x13\x9e\xd9\xf9\x00\x09\x62\xa0\xbf\x33\xd9\x51\x5e\x4b\x3f\xab\xb8\x67\x2e\x99\x41\x3a\x02\xb7\x87\xe9\x5b\x58\x59\xc2\xe5\xda\x1a\xde\x3f\x0f\x69\x02\x74\xaa\x5d\x67\x6d\x61\xda\x6d\xcf\x86\xdc\x30\xb7\x59\x94\x8e\x72\xf1\xb5\x72\x96\x6f\x4e\x5a\x7b\x0b\xc9\x21\x8d\x27\x3d\x21\x86\x89\x3e\xa2\x19\x4f\xcb\x42\x84\x5b\x74\xdf\xd4\xf5\x3c\xe3\x68\xd9\xae\x46\xb9\x9d\xa2\x9b\x89\x62\xfd\xf6\xd8\x35\x33\xff\x8b\x27\x3a\x6a\xf2\xc8\xcc\x68\xad\x26\x8b\xd3\xef\xde\x58\x5b\x4d\x17\x11\x64\x37\x51\x87\xbc\x31\xf6\x72\xbd\x6f\xd4\x10\x86\x33\x07\xda\xdd\x68\xc5\x66\x79\xb4\x14\x31\x94\x01\x57\xb9\x8b\xd2\x37\xe5\x93\x25\x23\xe5\x6d\xeb\x0d\x48\xac\xc5\x98\xd8\xaa\xb9\x87\x70\x39\xb4\xa7\x4b\x91\xeb\x74\xfe\x83\xd3\x8c\xfe\xd1\xd9\xe6\x29\xe5\xfd\x72\xca\x57\x58\x51\x16\xc6\x72\x50\x23\x13\x7a\x05\x77\x94\xdf\xa8\x86\x73\x18\x47\x83\xc5\xf2\x62\xf6\xcd\x6d\x3e\xd2\xf1\xb5\xea\x2e\xda\x51\x62\x10\xed\xb5\x46\x06\x66\x38\xa4\x5a\x40\xf7\x5e\x16\xa6\xe5\xb5\x6a\xef\x77\xed\x92\xd4\x54\x0e\x03\x1b\xf8\x31\xda\x79\x57\x36\x2c\x46\x43\x6e\x1e\xf2\xf6\x0a\x94\xca\xc7\x99\x26\xb5\xee\x3c\xca\xd9\x0f\x59\x5a\x65\x0a\x0f\x7c\x2c\xd0\xdd\x06\xa8\x10\x17\x51\x9a\x4c\xd1\x89\xe2\xb4\x1f\x67\x67\x39\xd1\xb9\x8a\x50\x2a\x64\x8e\x96\xb3\x78\xbb\xa8\x2b\xba\xab\xea\xa8\x20\x01\x90\x49\x05\x14\x66\xf1\x6a\x91\xc5\x2d\x2f\x52\x66\x2a\x88\x29\x82\xa0\x72\x95\x92\x49\xba\xcc\x7c\x76\x7a\x18\x82\x2c\xfa\xaf\x1e\xef\x78\xba\xe1\x2e\x3a\x6a\x44\xd6\xa7\x11\x9b\x9b\x80\x8c\x8a\x95\x84\x54\xe6\x2c\x5d\x1e\xbf\x6e\x18\xdb\x43\xf7\xaf\xaa\x7b\x72\x4a\xeb\x9e\x9c\x52\xea\x32\xab\xfd\xa8\x10\xde\x3f\xb2\x0d\xf6\xdf\xe0\x37\x4a\x24\x2f\x4b\x73\xc3\x9d\x23\x64\x41\x77\xc6\xca\x89\xe2\x8e\x52\x43\x1b\xe6\x6b\x71\x1c\x8d\x06\xbb\xcb\x15\x27\xc1\x86\x9e\x83\x14\xac\xe5\x46\xd4\x51\x48\xd5\xbb\xd2\x94\x6f\x75\xd4\x09\x0d\x99\x61\x44\x55\x3c\x45\xf4\x6d\x27\x3b\x54\x4e\x20\x42\x9f\x46\xfe\x23\x57\xdc\xa0\xc6\x99\xa4\xab\x14\x32\x31\x5f\x3a\xaa\x3c\xe0\x8f\xba\x38\x44\xde\x8d\x42\xf4\xc3\x96\xba\xa1\xc0\xb7\x13\x60\x5f\xa1\xfd\x7b\x49\x5f\xb4\x32\x21\xf2\x16\x45\xca\x91\xe8\xbc\x32\x42\xfa\x53\xf5\x08\xa8\x85\x93\x26\x93\x5e\x79\xf8\x04\xa5\xf3\x22\xd1\xaa\xdc\xe7\xaf\x28\xc4\xc6\x95\xda\xde\x99\x9d\x6d\x17\x99\x95\x8a\x15\xe7\xde\x77\x94\xf0\xc6\x77\xbc\xab\x6c\x9a\x14\xfd\x78\x6d\x87\x9f\x4b\x7f\x63\xac\x3a\x48\x93\xeb\xaa\x6d\x00\x8f\x4f\x3a\x95\xff\xd9\x2f\x74\x7c\x7d\xb9\x7b\x5d\x99\xf8\x9f\x1e\xb7\x7e\xed\x9f\xb8\x11\xaf\x8c\x72\x96\x97\x33\xcd\x32\xe4\x4a\x8e\xdf\xd4\xaa\xf6\x83\xd3\x87\xda\x99\x89\x72\x91\x2b\x56\x4a\x67\xcf\x3a\xa5\x33\x0f\x60\x28\x46\xe4\xe6\x5b\x2e\x31\x49\x0d\x54\x9a\x50\xbb\x39\xfb\xe6\xda\x71\xb4\x68\xe3\x8a\xea\x20\xad\x24\x81\x81\x3d\xac\x2a\xe4\x17\x47\x19\x8b\xb1\x30\x44\x2e\xf0\x1d\xf9\x63\x0a\xd2\x5d\xe6\x0e\xdb\xcb\x87\x85\x8d\xfe\x3d\xe5\x09\xce\x07\x20\x6a\xfc\xd3\xe8\x54\xf3\xbf\x42\xe8\x91\xf0\x5b\x7e\x32\x22\xcd\x44\xc7\x5f\x5e\x5a\xf4\x6d\x96\x3f\xe8\x71\x86\x1f\x10\xdf\x0d\xcb\x87\x9d\xec\x9d\xbc\xbc\xe3\x44\x5e\xa7\x32\x09\xc5\x1f\x6f\x20\x2d\xa8\x8b\xad\xca\x42\xa8\xae\x15\x53\xfe\x18\xec\xb9\x6f\x23\x89\x40\xb8\x2f\x02\xd5\x43\xaf\x1b\xa4\x91\x7d\xfd\x28\xef\xb7\xbc\x74\xe0\x86\xb2\xa2\xdc\x50\xc0\xd0\xd0\x14\xfd\xd0\x64\x05\xa2\x18\xee\x08\x72\x54\x7e\x5d\x83\x9b\x1c\x78\xae\xbd\x94\xc6\xd4\x74\xa6\x76\x49\xeb\xe0\xf4\xe6\x69\xf5\x84\x48\x35\x11\x87\xb4\xcb\xd4\xbc\x30\x2a\xdd\x10\x19\xaf\x37\x00\x96\xcb\xf2\x9c\x7e\xb6\x20\x17\x14\x10\xdf\x21\x78\xa2\xc1\xd0\x84\xc5\xa4\x52\xaf\xfd\xea\xb8\xda\xce\x9b\x13\xf0\xd5\x27\x3a\x1e\x98\xb3\x7d\xfd\x61\x75\x48\x0e\x48\xe7\xb2\xbc\xa7\x22\x94\xeb\xd9\xd8\x9e\x7a\x93\xc7\x29\xa8\xa7\x48\x84\x4f\xd2\xad\xe1\xd7\xb5\x00\x0f\x5c\xee\x4a\x9a\xe3\x4f\x1a\x39\x5f\x5a\x61\x32\x8e\x42\xe3\xfc\x9d\x11\x41\xdf\x54\x62\xff\xd7\xb1\x18\xa4\xbf\xe5\x7b\xcb\x51\xb2\x62\x13\xc2\x93\x2b\x05\xbd\xd7\x68\x81\xf3\x6b\xef\x1d\x62\xa2\xdc\xb2\xf2\x18\x8e\xe0\x1d\x1d\xb5\xcd\x2e\x6b\x18\x17\x2d\x77\x11\xea\x55\x0f\xd4\xf6\x4c\xc4\x86\xce\x4e\xc4\xd3\x63\xf8\xeb\x44\x9c\x72\x85\x64\x23\xc2\x26\x53\x53\x52\xd4\xa6\x7c\x4f\xeb\x67\x4a\x4d\xf1\xeb\x0a\x4d\x1b\x66\x36\x2f\xca\x08\x88\x0d\x8e\xf5\x2d\x2e\x37\xfc\xae\xe3\x94\x36\xa3\xc1\x30\xa7\xa3\xc0\xf1\xdf\x3d\x49\xfe\x76\x05\x06\xfc\x0b\x1f\xd3\x0d\x2c\xbf\xca\x76\xa3\x9c\x41\xd4\xc8\x1d\x79\x0a\xca\x6f\xdc\x48\xc7\xf4\x6c\x52\xd0\x49\x20\x15\x84\xcf\x3d\xef\xa9\xa7\x76\x53\x5b\xae\x1c\x53\x87\xc9\x8b\x69\x1c\xad\x58\x2c\x0d\x94\xa4\x7f\x88\x7f\xca\x6f\x9a\xe8\x18\x66\x38\x8c\x9d\xac\x0b\x3b\xc6\x51\x1c\x11\xf7\x38\x65\x91\x9d\x0c\x47\xc5\xa4\x77\xc0\xb8\x17\x28\x67\x8e\xd7\xe8\xc7\xba\x78\xa3\x64\x3f\x75\x99\x90\xae\x26\x4f\xa8\x51\xdb\xb7\x71\x43\x11\x8c\xc6\x1a\x0d\x0a\xaa\x11\x4e\xdd\x1b\xe8\x21\x8a\xd3\x34\x01\x67\x91\x90\xfd\x10\xd3\x21\xf4\x53\x4e\xa3\x2d\xce\x9d\x21\x12\x32\xc3\x03\xe5\x28\xc7\x76\x80\xc8\x13\x70\xbc\x9d\x0d\x00\x4f\x90\x1e\x4c\xcb\x39\x6a\x1c\x43\xab\x12\x55\xf8\x2d\xae\x1f\xc5\xd1\x88\x22\x19\x54\x6f\x26\x95\x87\xdd\x83\xeb\x0a\x59\x7c\x3f\xf0\xd4\x2d\x78\xd2\x8b\x34\xe1\xd6\x54\x4f\x96\xca\x62\x5a\xf4\xb7\x6b\x39\xae\xf2\xd7\x20\xc6\x3c\x88\x1d\x25\xf3\x34\xa5\x2f\xb8\x6d\xbd\x3c\x18\x9c\xf2\xe4\xec\xec\xe6\x25\x4d\x83\xb2\xd9\xc0\x24\x44\xba\xe6\xbe\x3d\x92\x2c\x69\x2e\x28\xaa\xd9\x09\xed\x3b\xc3\x82\x15\xce\xa3\xc3\x99\xf2\xe3\x24\x41\x29\x77\x95\x6e\xb1\xec\xd7\xad\x13\x50\x52\xd4\xee\xa7\x59\x91\x6b\x45\x73\xc4\xe5\xfb\x63\x4f\xcb\xbb\xdf\xb4\xb9\xc9\x38\x70\x89\x3b\x87\x5c\x7c\x05\x1e\x8f\xb9\xa1\xfa\x09\x71\x34\x88\xe0\xb1\xc0\xbc\x1f\x61\x77\xf8\x73\xf1\x55\xca\x38\xd1\x5b\xb8\x12\x78\x4d\x16\x19\xc4\x08\x37\x44\x21\x69\x6c\x77\x97\xd2\x99\x7b\xa8\x53\x23\x78\x8b\xd3\x4c\xf9\xa3\xc4\x76\xd4\x13\xc7\xee\x8c\x15\x86\x97\xfd\x86\xb4\xec\x24\xbe\xf1\x26\xd6\x25\x08\x12\x8f\x74\x1e\xf7\xc9\xb6\x1d\xda\xac\x48\xa3\xcc\xb6\xaa\xac\x4f\x65\x8d\xb4\x75\x15\xed\xdd\xdb\x7e\x71\x94\x17\x65\xfd\xca\xc8\x53\xec\xbf\x1b\x81\xf7\xd9\x7a\x5f\xc3\xd3\x2e\x8e\xb7\xfa\x12\x3d\xdd\xfe\xca\x4a\xd8\xd2\xa6\x4d\x5a\x85\xc0\x1f\x8e\x05\xe1\xde\x26\x2b\xda\x73\x4a\x6b\x74\x3b\x1d\x88\xd8\xe0\x8c\x7f\xc6\x99\xf1\x96\xea\x88\x0e\x49\x38\x92\xfc\xed\xa9\x36\x60\x35\x15\xec\x67\x91\x56\x91\x8c\x75\x31\x25\x52\xd4\x84\x9f\x94\x7d\xa8\xe4\x1f\x7e\x3c\x56\x95\xb6\xb7\xe0\x0c\x4d\xb6\x58\x1e\x0f\x2e\x12\xb1\xa0\x08\x9e\xc3\x0d\x65\xed\xfb\x60\x67\x2b\xd0\x67\x76\x96\xe8\x28\x4b\xa3\x5c\x86\x63\xd8\x61\xd7\x03\xdf\xa7\xbb\xee\x68\x5b\x4b\x99\xfd\xca\xc8\x26\x45\xbc\x36\xa9\xc0\x71\x40\xa8\x3a\x1d\xfb\xb9\x39\xc7\x05\xf1\x62\x21\xad\x1a\x22\x7c\xdf\x5c\xbb\x9f\xae\x9a\x0c\xb9\x2d\xee\xfc\x44\x47\x3d\x86\x89\xf5\x7a\xfb\x60\xbe\x5d\x80\x7c\xb2\x30\x5d\x71\x4a\x10\xa7\x05\x55\xdd\x64\x5e\xba\x11\x25\x06\xfc\x54\x10\xa7\xb0\x2f\x91\x40\xfe\x37\x0a\x58\xb6\x70\xe0\x0b\x2d\x4f\x66\x39\xa6\x0d\x12\x8e\xd5\x5a\x29\xf3\xcf\xed\x6f\xdb\xd8\x86\x45\x16\x85\x5c\xca\x3b\x30\x8b\x07\xb6\x34\x88\xd0\xcd\xb7\x97\xd2\xb4\x4b\x0f\x99\x49\x72\x15\xcb\x54\x75\x5e\x1f\x53\xbc\x76\xef\xf3\x48\x8d\x0b\x36\x0a\xa6\x13\x4c\x4c\x83\xfd\x09\xb6\x94\x99\x64\x99\xcb\x58\x69\xad\xd0\xe7\x4a\xcf\x45\x9f\x55\xab\xf1\xda\xae\xf2\x63\x1c\x95\x76\xe6\x80\xd3\x0e\xf5\xbd\x69\xc6\x24\xe0\xb2\x1e\x00\x2a\x84\xdf\xa0\x67\x88\xd5\x70\x9b\xb6\x21\xf2\x11\x1e\xd9\xf2\x7f\x40\xa8\x40\x68\xbf\xd9\x20\xa8\x18\xf6\x4d\xd6\xdb\xa2\x47\x79\x4e\xe9\x51\x36\x1a\x8a\x12\x85\xc5\xfd\x91\x83\x5b\x78\x27\xbd\x06\x1e\xe1\x7e\x40\x56\x20\xe1\x83\x70\xed\xf2\x01\xc7\xb8\x3f\xa9\x46\xb4\x66\xc5\x86\xc0\x1e\xb8\x36\xb2\x6b\x9e\x5e\xa2\x43\x03\x5f\xf6\x9a\x6a\x1d\x0d\x6d\x36\x88\x58\x64\x03\x07\x32\x0e\x47\x7e\xed\x3b\x47\x69\x9a\x17\x7b\xbc\xd8\x02\x90\x50\x52\xdf\xd1\x41\x8f\xbb\x7c\x98\x66\x7f\xa2\x9b\x56\xc5\xa7\x97\x59\x83\x34\xaf\xcb\xa7\xb4\xc9\x00\x6f\x45\xc8\x9c\xf7\x60\x64\x97\x47\x3e\xd6\xf1\xe9\xf8\xb5\x40\x65\xc8\x87\x95\xb6\x4f\x77\x94\x09\xae\x87\x91\x98\xca\xcc\xb3\xfe\x4c\x9e\x9f\x39\xd0\xce\x6c\x68\x29\xe0\x79\xf8\x26\x73\xc2\x25\x01\xaf\xf7\x61\xe7\xdb\x61\x4c\x88\x1a\xc1\xed\x20\xf5\x3a\xa7\x6d\x01\xce\x35\x09\x84\x26\x26\xcb\xd2\xd5\x56\xc5\xf3\x59\xcf\x16\x1b\xc0\x94\x83\x28\x16\x33\x3e\xe7\x59\x3c\x37\xe7\x36\xa0\xcc\xf5\xc2\xbe\x89\x63\x9b\xf4\xec\x2e\xfc\x22\xcc\xa3\x21\x2f\x85\xd7\xcc\x9b\xe6\xff\x40\x2b\x1f\x87\x27\x0a\x35\xac\x5b\xb6\xc9\xc0\x3f\x3a\x8b\xfb\x80\xc1\xcb\x26\x92\x14\x81\x45\x6a\x77\x40\x77\x24\x64\x51\xbe\x1c\xd9\x8c\x7a\xce\x50\xe0\x00\xd5\x4a\x3e\xce\x37\x2e\xcf\x63\xde\x84\x2c\x75\xb2\xa3\x82\x81\x59\x49\x99\x82\x27\xce\xf2\x1e\xda\x78\x6a\x2b\xb0\xad\x7c\x80\x07\xa7\x0f\x11\x52\x06\x8f\xeb\x07\xf8\xcd\x18\x8a\x31\x03\x0a\x4d\xe3\x4b\xe3\xd6\xf3\xf3\xde\x68\xc0\xc3\x4b\x2f\xd5\x6e\xfb\xde\xbd\xe5\x71\x1a\xa1\x3a\x10\xf5\x41\xba\x7b\x22\x3f\xd8\xe4\x69\x9f\xf7\xd3\xd5\x7c\x42\x03\xa4\x91\x95\xe0\x64\x62\xf5\x6c\xe4\xe2\xf7\x94\x2c\xe3\x62\x9a\x24\x91\x05\xbf\x8f\x27\x61\x15\x7f\x04\x7f\xb8\x7d\xa0\xd4\x39\xc3\x6c\x54\x84\xfd\x96\xf7\x96\x85\x7e\x0e\xbf\x56\xdc\xf5\x7c\x94\x0d\x33\x6e\xe1\xcc\x1c\xe0\x0d\x74\x11\x47\x3a\xbf\xa9\x6a\x5e\x3d\x25\x72\xb9\x18\x13\x01\x1a\x8b\x36\xc5\x49\x5d\x22\xdd\x54\x05\x9c\x7d\xa9\xb0\xd4\xa2\xc3\x59\x8b\xd6\xc5\xfb\x4a\xcc\x1b\x9d\x36\xfe\xff\x03\x2d\xbf\xe8\x5a\x53\xb9\x29\xb6\x7b\xf5\x7e\x18\x13\xa0\xc2\x9b\x44\x0a\x4f\x0d\xbe\x07\x1f\xef\x78\xcd\xb0\xef\x5f\x08\x94\x8b\xf5\x5d\xdc\x61\x21\x6b\x36\xc0\xe6\x7e\xe1\x0b\xbf\x3e\xff\x85\x5f\x9b\x7b\xc8\x8f\x96\x58\x7f\x02\xcd\xdf\x63\x4a\x74\xe6\xa6\x72\x2b\x62\x17\x36\x27\xc5\x59\x3e\x29\xe7\x72\xe3\x1d\x70\x3f\x0a\x94\xca\xa3\xa0\xbc\xb0\x10\xaf\x22\x1b\x42\x49\xb4\x87\x00\xd7\xe8\x63\x5e\x09\x54\xcf\xfb\xb6\xa6\xe3\x7e\xbf\x2e\x1b\xb2\xb7\xfd\xd4\x3f\xfc\x1c\xc7\x02\x39\xcd\xca\x8f\x92\x63\xee\x31\x25\xfa\x92\xe7\xd1\xf0\x6f\x94\x1b\x70\x4e\xed\x10\x0b\xe7\x5e\x01\x9e\xd0\xcf\x77\x54\x1a\xf9\xd8\xba\xbf\x13\x2c\xa8\x25\xe1\x5b\x82\xcf\x8b\xd6\xc4\x34\x96\x42\x4b\x43\x56\x7f\x79\x9b\xc5\xe3\x56\xf1\xbd\xab\x1a\x6b\x85\xed\xfe\xad\xf2\x0b\xb0\xf4\x77\x77\x94\xb5\x0b\x28\x93\xb8\x83\xb7\xf9\x7e\x0a\x0d\x88\x1e\x02\x1e\xdb\x03\x40\x96\xa2\xc4\x7c\x94\x66\x2a\x88\x8e\x93\x24\x3a\x22\x48\x13\xba\x24\x69\x4d\x29\x71\x2a\xf6\x6a\xc3\x00\x61\x72\xdd\x7b\x4e\xb5\x68\x24\x03\x1d\xa6\xbf\xdd\x51\x90\xf9\x7f\x71\x09\xe5\x2e\xbf\xc1\x3c\x03\x99\xd7\x2e\x7a\xb6\xe2\x33\xd0\xfa\xd2\x8c\xb3\xe9\x52\xe7\xcb\xd4\x3a\x1d\x95\x28\xb5\xd0\x1f\x64\x62\x91\xb6\x9f\x7c\x4d\xe9\x40\x3d\xbc\x4e\xc9\x09\x62\xea\x6b\x5a\xca\x9d\x29\x47\xd8\x01\x97\xb1\x1c\x51\xe1\x3c\xb6\x2e\xcd\xac\xc1\x28\xec\x3f\x54\xde\x4a\xe4\x33\xd7\xd5\x54\xf7\xe7\xe9\xf7\xe2\x41\x9f\xc3\x55\x39\xcb\x92\x99\x03\xae\x7d\x4c\xf7\x0e\x4d\x6e\xee\x44\x23\x74\xb4\xd6\x3d\x6c\xf6\x93\x5a\x92\x86\x8f\x50\xd6\x53\x44\x18\xc6\xdf\x9f\x1e\xbb\x84\xf8\xb7\x7e\x05\xf2\x68\xa8\xb5\x36\x9d\xbc\x2f\xf8\xc1\xd9\x30\x8d\x92\x62\xa2\x72\xd0\xb4\x9c\xca\xfe\x8e\x8e\x92\x0a\xda\x54\xb6\xd6\x8b\x71\x9a\x76\xe9\x40\x40\x63\xf6\xc4\x58\xf9\x55\x32\x64\xc2\xb1\x71\xca\xeb\x95\xc9\x91\xc7\x80\x9c\x77\x6d\xb4\x17\x6d\xe6\x08\x76\xe2\x97\xd5\x52\xf6\x55\x0f\xba\x08\xf8\xd4\x53\x7f\xdb\x9b\x31\xfd\x4b\x2c\x4f\x6c\xa6\xa3\x41\xeb\x85\x17\xf8\x1a\xb7\x61\xe1\xe1\x4e\x5c\xc3\x1c\x01\x0f\x02\x1a\x37\xec\x01\x46\x7d\x65\x2c\xd5\x9f\x8d\xf5\x7c\xe7\x1a\xe1\x6f\x18\x24\x4e\x95\xbe\x43\x7f\x38\xf4\xef\xeb\x78\x5a\xcc\x30\x5f\x57\x82\x95\xa7\xc6\x7e\xde\x78\x43\xd9\xa4\x5d\xa3\x47\x82\x43\xfa\xa8\x96\x42\xb8\xc7\x9d\x18\x4c\xc8\x6f\xa1\xfb\xcc\x20\x34\x4a\xfd\xf0\x2c\xfe\x24\x50\x3c\xe7\xbb\xc8\x03\xf9\xda\x91\x87\xb3\x6c\x5c\xa0\x58\xab\x3f\xc4\x22\x46\xeb\xa0\x85\x99\x11\xae\xe5\xed\x40\x69\xc2\xdc\xc2\xd3\x43\xf4\x39\x5a\xc3\xd0\x4b\x97\xa6\x17\x9b\x3c\x21\x9d\x03\xa7\x32\x34\x49\x05\xaf\x2c\x1c\x25\xac\x7b\xbb\x29\x35\xa7\x11\x13\x15\x78\x0e\x51\xfd\x91\xba\xa7\x1f\x35\xc0\x58\x0f\xb5\x07\x26\xcb\xa2\xb4\x28\x94\x90\xd3\xa6\xd6\xcc\xdb\x54\xc7\xb0\x7d\x49\x74\x1b\x18\x88\x0b\x72\xeb\x4f\x54\xa3\x1b\x12\x06\xfc\x1a\xbf\x98\xff\x91\xd6\x3e\x49\x13\x2d\x45\x53\x51\xea\x91\xf9\x6a\x4b\xa9\x6e\x7f\x9c\x86\x56\xb1\x1a\x85\x98\x31\x62\x9d\xb1\xa6\x08\xbf\x51\x1a\xc6\x22\x12\x98\x4f\x78\x10\x0e\x0a\x59\x84\xbf\x57\xe8\x0a\xf0\xd5\xc7\xc6\x55\xfb\xbf\xfc\x09\x7a\x7a\x88\x28\x6c\xdc\x8a\x1d\xfb\x3e\xa9\x3f\x48\x83\x9f\x96\x02\xc2\xe1\x4d\x42\x07\x8a\x12\x1b\x6d\x23\xec\xa9\xd7\x00\x57\xe2\x37\x5a\xb7\x72\xb2\xd3\xfa\xf2\x17\x3c\x1e\x66\x81\x45\xef\xbe\xf3\xc4\xba\x57\x7e\x25\x09\xe4\x43\x65\xa9\xe1\x13\x98\x07\xb8\xc1\x8c\x9d\xf2\x9d\xb1\x9a\xea\x81\x80\x81\x53\xe8\x61\x5a\x48\xc8\x37\x1e\xed\xf8\xc9\x12\x3b\x57\xa1\xd5\x76\x9b\x2a\x15\x84\xe4\x9d\xeb\x2a\xfb\x5a\x23\x1c\x8e\x73\x3b\x10\xe5\x46\x5a\xef\x22\xe9\xd8\xe0\x3a\x68\xc2\x70\x34\x18\xc5\xc6\xf5\xe8\xb0\x83\x0f\x07\xca\x30\xef\x70\x93\x79\xc4\x68\xb8\x68\x0d\x56\xa4\xab\xd1\x7c\xbd\xa6\x94\x77\xf3\x22\xb3\x49\xaf\xe8\xe7\x48\x11\x90\x97\xfe\x34\xf0\x64\x8a\x9f\x2a\xd4\x82\xcd\x73\x1b\x17\x2c\xb7\x83\x53\x84\xbd\x99\xf9\x8d\x1a\xb1\x24\xa6\xe8\x9b\xe4\xff\x65\xec\xdd\x7f\xe4\xb8\xb2\xfb\x70\xb1\x67\xf8\xd0\x63\x57\x8f\xd5\xda\xfe\xfa\x9b\x04\x8d\x64\x01\xc5\x86\x4c\x18\x09\xb0\x70\x80\x00\x35\x21\x67\x57\xd6\x60\x35\x1a\x90\x34\x69\x13\xfe\x41\xb7\xbb\x6f\x77\x97\xa6\xba\xaa\x55\x8f\x19\x0d\xff\x80\x04\x30\x02\xc3\x48\x90\x20\x81\x8d\x38\x08\x16\x0e\x0c\x38\xf6\xae\x37\xb1\xe3\xc4\x4e\xcf\xae\xbd\xeb\x24\xde\xb5\x25\xed\x4a\x2b\x51\xd2\x8a\xe4\x50\x24\x87\x43\x0e\x9f\xc3\xf7\x23\xa8\xf3\x39\xe7\xde\x53\x53\x45\x63\x7f\x52\x95\x38\xfd\xba\x75\xef\x79\x7e\xce\xe7\xd3\xaa\x08\x06\x12\xf4\x96\x6f\x9a\xe6\x19\x68\x6a\x50\x7e\x2a\x92\xa1\x2d\x95\x18\x6d\x35\x08\xa9\x1f\x2d\x7f\x41\x12\x0f\xca\x74\xe3\x65\x4f\xda\x44\xf6\x46\x98\x2a\xca\x77\x10\x69\x07\xfa\x3e\xd8\xbe\x8f\xcd\x3c\xab\x28\xba\xf3\x70\x29\xcc\xf2\xdd\x9e\xe8\xfb\x3a\x99\x36\xec\x33\x0c\x9c\x33\xc8\x51\x85\xe5\x17\x95\x8c\xf1\x59\x2d\x7a\xcf\xc5\x06\x18\x72\xaf\xe3\x32\x08\x7b\x3d\x8c\x0f\x20\x58\xbb\xa6\x08\xa9\xae\x4d\xda\x8f\x36\x6b\xa3\x24\x25\x54\x91\x23\xf1\xda\x0a\x14\xba\x72\xab\xd6\x03\x3c\xb2\xd0\x36\x51\x82\x6a\xd2\x51\xcf\x0c\xfb\xb2\xd0\xa8\xdc\x08\x14\xec\x60\xad\x31\x8f\x19\x9b\x74\x31\xfb\xdb\x60\x05\xdb\x1f\x46\x69\x3f\x87\x69\x18\x2f\x9a\x81\x45\x74\x0a\xeb\xbf\xa9\xc4\x2f\x36\x15\xef\x68\xdf\x8c\x42\xdf\xde\x90\xae\x1a\xbd\x50\xda\x6d\x4d\xa3\xb1\x26\xe4\x96\x19\xa0\x90\xa0\xff\x70\xb3\x8e\x2a\x9f\xdb\xae\x78\xf8\xda\x6b\xed\x23\x07\xf6\x69\x9e\x2f\x2a\x4f\x88\xf5\x69\xc8\xfe\x4c\x6f\x14\xe6\xf8\x7a\x0a\x2e\x25\x6d\xed\x53\x2a\x7b\x1b\xda\xd1\xc8\xd1\xcb\xe3\xf3\xff\x1a\xab\xc5\x37\xea\x6f\x53\x6b\xc6\x16\x22\x71\xdc\xc8\x0f\x34\xfa\xc5\x09\xb5\xff\x8b\x1f\xd1\x03\xe3\x6b\x57\x3b\x1d\xa4\x66\x68\x40\xd0\x86\x4d\xcd\xb3\x04\x7c\xa3\xce\xb6\x90\x9d\x67\x4f\xfb\x92\xfe\x6d\xa5\xbb\xb9\x13\x39\x14\x02\xa4\xfb\x14\x80\xc2\xab\xff\x06\x35\x5b\xf8\x1a\x4f\x44\x98\x22\x3d\xad\xc6\xe6\xa4\xc1\x6e\x22\xcc\xfd\xb5\x60\xbb\x29\x46\xac\x42\xa5\xf7\xd2\xfc\x56\xac\x7e\x79\x50\x1c\xe1\x43\xf9\x4b\x84\x8b\xdb\x4f\xb9\x65\xe5\x0f\x16\x8b\xfe\x12\xb8\xbc\x65\x4e\xb7\xe2\x6b\xc0\xc3\xfe\x63\x50\xaf\x57\xd8\xda\x25\x09\x1a\x14\x26\xed\x85\x46\x13\x6a\x56\x38\x0f\x37\xd4\xee\x5d\x0e\xf3\x61\x2f\x35\xcb\xf4\x1c\x91\x42\xdc\xc4\x1a\xf0\xf0\x2e\x3e\x5b\x6e\xfc\x18\xec\xf1\xa6\x01\xb0\xd2\xf0\x65\xd6\x70\xdd\xc0\x95\xbd\x0e\xec\x73\x0c\x09\x9e\xa7\xe3\xb8\x1a\x2f\xc8\x92\xa8\xa0\x68\xa2\x62\xd7\x7e\x2c\x4b\xa8\x80\x96\xc9\x8a\xf0\x1d\x35\xea\x4c\x28\x36\xa1\x24\xec\x32\xb5\xb2\xcb\x04\xcb\x2f\xcc\x37\x15\xaa\x05\x53\xbc\x39\xa5\x88\xb2\xaf\x57\xea\x55\xe5\xc1\x43\x5d\xfb\x6d\xa5\xa4\xdc\x31\xf1\x62\x5a\x8c\xf3\xee\xca\xe3\xaa\x36\x7a\x43\x4d\xbd\xac\x4d\xfc\x98\xc1\x05\xd8\x30\x64\x43\xb7\xb0\xdc\xc8\x79\x4e\x4e\x14\xe4\x12\xd5\x49\x21\x08\x69\xe9\xe1\x43\x7f\x3e\xef\xd4\x1e\xca\xcb\xf3\xed\x2c\x19\xd9\xe5\xa1\xc9\x61\xcc\x70\x0e\xdf\x53\xe7\xf3\x3d\xd5\x95\x0a\x93\xf4\x09\xb7\xd1\xff\x29\xaa\x94\xd8\xd4\x8f\x23\xf6\x96\x2e\xbb\x62\x37\xbf\xaa\xa7\x35\x3f\xa0\xa3\xc5\xf5\x8c\x89\x02\xfb\x43\x37\x41\xfe\xa1\x7c\x82\xe0\xfe\xfc\xa9\x19\x35\x7b\xf8\x78\x0d\xf1\x28\xce\x23\xb3\x8b\x61\x56\x84\x2d\x5f\xae\xff\xcf\xf8\x58\xbe\x51\x38\xb2\xe5\x30\xce\xaa\xe6\xf1\x80\x43\x62\x68\x9d\x99\x61\xb2\xdc\x35\x2c\x8d\x0d\x3f\xb8\xae\x46\xf3\x7d\x9d\xf8\x8d\x22\xcc\x34\x7c\xe2\x47\x13\x95\x33\xfe\xc8\x9d\xba\xb1\x49\x4d\x14\xd9\x88\xca\x3e\x88\x3c\x91\x1d\x82\xa1\x0d\x23\x76\xa8\x86\x3c\xd0\xdc\xa4\x28\x2c\xf1\x3f\x20\xa9\x10\x38\x93\xdf\xdb\x91\x49\x07\xf6\x71\x9f\x93\xdd\x52\xa8\xb6\x6f\x93\x2d\x94\xb6\x01\x2d\x39\xbc\x23\x6f\x26\x09\x9e\x5b\x4e\xf0\xe3\x6b\x94\x3a\xb9\xb2\xde\x11\xd7\x75\xd8\x50\xd6\x73\xb5\x56\xf2\xa5\xfa\xf2\x38\x49\x73\x32\x16\xf8\x59\xf7\xe9\x8b\xb8\x0a\x78\xf9\xb3\xf8\x86\xd6\x92\xff\x48\x59\xf3\x3c\x89\x6c\x9c\x87\x71\xd2\x52\xec\x26\x3f\x22\xbb\xc0\xd7\xb5\xec\x44\xf6\x40\x9c\x30\x8b\x11\x6b\x01\xd3\x27\x88\x2e\x70\xc3\x78\xac\x35\x4b\x36\xeb\xa5\xc9\xd8\xd7\x8e\x90\x12\xdf\x52\xe9\xf1\xad\x3a\x8f\xf5\xab\x07\xdb\xb9\x59\x74\xaf\x61\x6a\xd5\xc0\xf7\xd7\x9a\xc0\x4a\xb3\xed\x6e\x32\xb2\x0a\x30\xfd\x49\xa0\x08\xab\x3e\x51\xc6\x2e\x35\xbd\x63\x2b\x23\x46\x0e\x33\x9f\x13\xe5\xc8\xc2\xed\xa4\x81\x4d\x69\xba\x12\xc6\x03\x16\xd2\x00\x9a\xe9\x07\xaa\xf2\xf5\x67\x48\x1d\x50\xdc\x44\xde\x2c\x8d\x12\x35\x01\xf6\x83\x26\xfc\x53\x44\xc0\x4c\x6a\x5e\x22\x10\xb8\x1e\x78\x09\xa3\x29\xaa\x16\x09\x93\xbe\x87\x3c\x67\xe3\x22\xcd\xa8\xf4\x0a\xdf\xbb\x19\x78\x11\xda\xcd\x26\xb0\xad\x35\x69\xb4\x02\x55\x23\x29\x9f\x94\xef\xec\x44\x70\xe6\xe7\x4b\x3f\xea\x06\x51\x6f\x2b\x3d\xfb\x75\x05\x1c\x8e\x50\x90\x05\x76\x1b\xa1\xf7\x56\x50\x01\xd8\xb6\x1c\x6f\xce\x7b\x4a\x23\x03\x51\x2e\x4f\x75\x2a\xf0\xd1\x72\x12\xf7\x6c\xda\x2f\x22\x95\x5b\x5c\x09\x14\x7c\xf0\x4a\xed\xc7\xbc\xf6\x5a\x7b\x10\x25\x29\x55\x05\x45\x69\x6b\x4d\x69\x1c\x7f\x84\x15\xc7\x09\xbb\xac\x6c\x6a\xbf\x88\x3e\x43\xa7\x52\x90\x39\x6e\x56\xe9\x77\xbe\x30\xa3\x65\x71\x26\x6a\xd2\xe4\x92\x1a\x40\xbc\xa4\x60\x84\xac\xd8\x07\x97\xc2\x32\xd9\x58\xd8\x9d\xab\x95\x22\x55\xb9\x06\x22\x00\x40\x16\x56\x68\x91\xcb\x87\x2c\x63\xdf\x1e\xa5\x7d\x4f\xf1\x05\x74\x93\x64\xcc\x54\xbb\x78\xd1\x4d\x1d\x3d\xdc\x0c\x1e\x15\xe0\x7b\x1a\xc1\xf2\xa5\x88\x4a\x78\x94\x9f\x6f\x82\xed\x18\xa6\x32\x42\x1f\xd8\x34\x5d\x19\x99\xf2\x81\x08\x6d\xba\x50\xe8\xd2\xf9\x13\x72\x5d\x7f\x2c\xc0\xf6\x6c\xa2\x69\x3f\x46\x7d\x57\x87\x42\xd0\xb9\xe5\x7f\xd0\xc1\xd3\xfa\xe4\x73\x0a\x6a\x94\xdb\x34\x26\xb6\x72\x7a\x08\xaa\x54\x71\xd0\xd5\x30\x7c\x25\xce\xbe\x51\x18\xcc\x1f\x88\xfa\x8a\x1f\x68\xc1\x80\x08\xff\x7f\x5a\x54\x19\x70\xd3\xfa\x40\x80\xec\x7b\xa4\xfa\x15\x25\xc0\x77\xa5\x01\x37\xb5\xd0\xce\xf6\x8e\xf7\x1a\x61\x22\x93\xc9\x5e\x4d\x47\x5c\x03\xb6\xcc\x1e\x6a\xe7\x49\x9a\x17\x2e\xfd\x14\xaa\x1a\x4d\x61\x53\xe7\x68\x3a\xd8\x5e\x0e\x7b\x36\xae\x52\xe6\x5e\xd0\x94\xb9\x17\x2a\x7d\x6b\xbb\xb4\x32\x5d\xba\x73\xae\xae\x06\x0a\xc8\x82\x0c\x5d\x60\x01\xf4\x65\x05\x2f\x20\x15\xdc\x8e\xb5\xe3\x69\xef\x0d\x5b\x33\xfe\xfc\x5f\x51\xea\xdb\x3f\x50\xa4\x39\xe7\x27\x5a\xae\xd3\x90\xc0\x37\xe9\x99\x0b\xbb\x08\x4a\x7b\x68\xac\xad\x29\xc7\x70\x79\xa2\xda\xe5\x15\x0a\xa9\x3b\xa8\xcc\xf1\x4b\x1e\x59\x5a\xea\x9a\x34\x89\x94\x68\xd0\x65\x1d\xdc\x5f\xf6\x50\x90\x24\xce\x53\x43\xd6\x14\xd5\xc6\x6f\x06\x7e\x28\x97\x11\x00\x08\xa4\x4e\x39\xf2\x96\x41\xe9\x0a\x3b\x49\x17\x24\x9a\x4e\xf1\xe9\x80\x40\xf6\xcf\xe8\xb2\xd9\x9d\x86\x2c\x72\xa1\xdd\x29\x56\xa8\x92\x85\x25\xfe\xef\x70\xc0\x22\xdb\x57\xbe\xab\x68\xe2\x37\x98\xe6\x91\x59\x61\x39\x75\x58\xe3\x0b\x28\x01\xf1\x8d\x5a\x70\x93\x65\xe1\x20\x16\xf6\x2a\x3c\xb4\xe3\x0a\x9e\x7a\x3c\x90\x96\xe9\xd8\xa6\x69\x28\x6a\xe3\x08\x8c\xff\xfd\xc4\x73\xb2\x6f\xe8\xb1\xec\x0b\x4d\x23\xa2\x91\x83\x16\x71\x59\x6a\xa2\x84\x07\xae\xe0\x28\x63\x54\xed\x7d\xc5\x1e\x32\x2c\x7a\x60\x69\x85\xb3\xdd\xc2\x63\x46\x17\x01\xb5\x32\x47\xb3\x55\x25\xe0\xf2\x75\xc6\x8d\xa0\x02\xd4\x9a\xe8\x87\xa7\x72\x5e\xb3\x14\xc6\x20\x65\x14\x29\x6e\x3f\x8d\x79\x8b\x16\x1c\x9b\x8b\x9d\x81\x54\x2c\x64\xe7\xff\xea\xcf\xfe\xea\xcf\x4e\x11\x35\x92\xd3\x5c\x74\xc8\x55\x00\xb5\x85\xd6\x45\x19\x0e\x43\x86\x63\x5a\x77\xd6\x55\x07\xe2\x2d\x5a\x5f\x69\xbf\xd3\x2a\x88\xbb\x53\x98\x9c\x5e\x58\x08\x4d\x1e\x72\x8b\x5d\x14\x8e\x62\x8a\xe0\x21\xe5\x31\xd2\xf5\x97\x1d\x3d\x32\x71\xc8\xac\x2c\x3c\x2c\x45\x3d\x59\x19\x9c\x6a\xa0\x08\xfb\x42\x3b\xb2\x7d\xb0\x1a\x20\x33\x98\x56\xbd\xf8\xbb\x13\x95\x3f\x9c\x57\xe8\xba\x7e\x94\x14\x69\x98\x39\x1d\x47\xd1\x68\xa5\x2f\xcb\x37\x6e\x83\x31\xc3\xc8\x94\x97\x45\x5b\xd3\x93\xb7\xfa\x9c\x9d\x0f\xb6\x83\xcf\x66\x0f\xb5\xbb\x98\x60\x47\x8c\xf4\xae\xa6\xae\x7b\x57\x53\x76\x58\x43\x2d\x66\x0d\xc9\xbc\x84\xe8\x40\x3c\xf2\xe7\x15\x7d\x6f\xd6\x4d\x8b\x71\x11\x25\x05\x43\xb1\x2b\x5d\x79\xc9\x7e\x54\xd1\x3b\x2a\x0f\x54\x3f\x14\x7a\x1d\xd8\x72\xd0\xeb\xf0\xb5\x8a\x97\x3b\x36\xee\x0e\x47\x26\x5d\x9c\x56\xda\x4d\xdf\x40\xc9\x95\x6f\x14\x78\x12\x93\x2f\x7c\x1d\x28\x6e\xdb\x3c\x35\xb9\x1d\x84\x36\xa3\xf4\xc4\xe1\x29\x1c\x51\xf1\x0e\x95\x9e\x6c\xaa\x8c\x04\x01\x9e\x4a\x7c\x0e\xba\x7c\xb4\x89\x53\x32\xb5\x63\x22\xdb\x3d\x2c\xe4\x6b\x18\x6e\xe3\xeb\xd5\xed\x27\xfe\xc8\x42\x3b\xb3\x76\x11\x0e\x58\xa4\xb6\x68\x0d\x45\x1c\xdd\x01\x02\xc3\xdc\xc4\x6c\x1a\x18\x7e\x8d\x6f\x03\x63\x77\x43\xc9\xd9\x5c\x6a\xa4\x7e\x1e\x13\x4e\xd5\xb2\x06\x93\x56\x56\x13\x5c\xa0\xc2\x66\xf6\xb2\x27\x4a\xf7\x26\xce\x93\xbe\x91\xd2\x03\x97\xca\xf7\x63\x33\xde\xd0\xfd\xca\xde\x19\xc5\x63\x3e\xbd\xaa\x65\x25\x76\xcf\x78\x58\xd4\xf3\xd4\x64\xa4\x46\xf2\x8e\xbf\xbb\x5a\x25\x22\x73\x02\xaa\xd3\x35\x05\xd7\x03\xfb\xda\xa9\xed\x14\xfd\x7e\x15\xe6\xba\xa1\xd4\x27\x36\x9a\x28\x56\x4b\x67\x39\x94\xd7\xa0\xc7\xf1\x11\xac\x04\xdf\x34\x8c\x0a\x2e\x90\xaa\x4c\xae\xb5\xb3\x91\x5a\xc8\xac\xd4\xf3\x7e\x28\x49\x18\xbc\xcb\x64\xc9\x87\xbf\xd7\x55\xb2\x79\x5d\x0d\x8a\xe7\x36\x8e\x43\x6a\xce\xbf\xe4\xd2\x6c\x5a\x42\x38\xbc\x53\x3a\xff\x0e\x14\x57\xe0\xa9\x4a\x79\x2c\x4d\x80\x37\xc6\x82\x7e\x6d\x52\x91\xf5\xa5\x57\x71\x0f\x96\x42\x34\x38\x78\xb1\xef\xaa\x32\xf1\x92\x78\xa8\x40\x23\x79\x3c\xd6\xfa\x3f\x2a\x46\x02\x9b\x0f\x09\x6a\xa8\x5a\xc7\x6f\xa9\x59\xa9\xb7\x34\x2b\x7c\x9a\xe4\x49\xbe\x32\x46\x4b\x0b\x9f\x8e\x39\x5f\x01\xf2\x2b\x5c\xd5\x6d\x65\x17\xb2\x62\x4c\xaa\x94\x69\x06\x5a\x00\xa7\x3f\x71\x60\x9f\x8f\xfe\x2a\x60\x83\x64\x44\x9f\x81\x3a\xc2\x77\x02\x3f\x52\xca\x55\x3b\x1c\x94\xab\xea\x79\x85\x3c\xaf\x41\x44\xb8\x65\xde\xaf\x07\xe6\x64\x48\x4e\x40\xa7\x91\xe9\x24\x29\x51\xfe\x4f\xf9\x80\x0a\x9d\x48\x24\x29\x3b\xd0\x3d\xc7\xf6\xfb\xbe\x42\x73\xe6\x66\x8c\xb7\x97\xe8\xad\xe5\x38\x59\xcf\xd7\x2a\xd4\x2f\xcf\xb7\x3b\x69\x68\xfb\x2d\x9f\x94\x4f\xe9\xb3\x34\xb5\xfa\x13\x7e\x96\x2d\x4d\xba\x91\x19\x01\x8c\x0d\x8c\x29\x2a\x8b\xe7\x14\x14\x16\xb6\x0c\x5f\x71\xab\x89\x97\x32\x59\x46\xb9\x5e\x58\x93\x79\x02\x93\x6f\x54\x8d\x3b\x0f\x23\xea\x59\x1d\x71\x8a\x4f\x97\xc8\x1e\x8a\x82\xde\xf6\x6a\x55\x19\x92\x25\xe3\xb1\x8d\x87\x36\x1c\x31\x0f\xb5\x13\xb5\x2e\x7f\x91\xc8\x8c\x6d\x5f\x83\x17\x89\x72\x83\xcf\xe9\x83\xcb\x9c\x17\xff\x94\x72\x32\xa9\x35\x34\xf5\xdb\x75\x24\xcb\x68\x45\x80\x4e\x90\xaf\x6b\xa5\x93\xb9\xb9\x76\xc7\x44\x78\xa1\xca\xca\xd0\xf0\x91\x82\x72\x93\xac\x54\x37\xb5\x36\xe6\x9e\x86\x30\xdd\xaa\xfa\xe1\xf5\x9a\x82\x12\xe5\x2b\x36\xcf\x05\x4a\x48\x3f\x57\x50\xa1\x38\x7b\x82\x0b\xf5\xc7\x6a\x10\x9b\x65\xf2\xfb\x07\xa4\x8d\x79\x8d\x76\x22\x5f\xd7\xd2\x45\x37\xc7\x60\xa2\x28\x49\xe2\x6d\x9a\x66\x77\x2b\x9a\x92\xfe\x44\x0e\x22\x6b\xfb\x45\x24\x0a\x6d\xa8\xf2\x9e\x87\x7b\xe6\x1b\x4d\x86\x1f\x45\x45\x16\xd2\x5c\x95\x1f\x3d\x39\xa1\x6a\x23\x27\x2a\x87\x30\x5c\xcc\xa6\x14\xf5\xfb\x49\x3f\xcd\xd8\xda\x31\xa3\x42\x86\xdb\x93\x27\xfd\xdc\x56\x38\xdd\x52\x0c\x87\xf4\x45\x50\x43\x61\xae\x68\x84\xae\xeb\x14\x97\xc1\x13\xde\xaf\x14\xa5\xc3\xcc\x3e\x47\xaf\x42\x5c\xbd\x73\xd5\x0f\x9e\xef\x61\xcf\x83\x2d\xfa\xa1\x92\x19\xfe\x01\x8c\x02\xda\x7c\x77\x81\xf3\x81\x63\xbe\x02\xac\x17\xcc\xe1\x07\x2a\x10\x81\x5b\x75\x68\x8f\xf2\x18\x28\x56\xea\x97\x18\xf3\x7f\x86\xd0\x1e\x4e\x88\xdc\xfb\x72\xb6\xe1\x28\x02\x7e\x4c\x63\x11\x00\xa5\x3f\x46\x23\x25\x08\xbc\x2e\x06\x8a\x21\xf6\x92\xee\x6c\xd6\xab\xd9\xf3\x64\x2a\xe2\x81\x24\xd2\x52\x66\xa5\x2f\xc3\x37\x41\x9d\x52\xf3\x68\xdb\x31\xf0\xa2\x7a\xc3\x04\x3f\xaa\x91\x70\x13\xdb\x01\xfd\xa1\xab\x8a\xcd\xc8\xbe\x39\xb6\x5d\x3f\x6c\x0f\x0b\x73\x57\x05\x9d\x77\x15\x81\x9b\xc9\x93\x11\x07\x81\x78\x1a\xf0\x68\x7c\xdd\xd4\xe1\x8e\xc2\x25\x87\x96\x07\x52\xea\xb4\x9a\x72\x82\x02\x28\xaf\x5f\x65\x9a\xad\x57\x74\x91\x87\x88\x64\x0f\x3d\x1c\x3c\xb5\x8f\x02\x3f\x40\xf5\xc3\xc0\x93\x87\x7c\xbd\x4e\x64\x55\x86\xc4\xc4\x0e\xcf\x11\x02\xe2\x15\x9e\xe6\xe6\x9b\xda\xab\x28\xd4\xef\xa4\x61\x6f\x00\xd5\x2f\xae\x58\x05\xde\x31\xd4\xa9\xab\x58\x43\x26\xb5\xb9\x45\x20\xab\x18\xda\xa4\xfa\x7f\x6a\x52\x99\xc5\x71\xcd\xc4\x53\x81\x07\x70\x58\x48\x34\xe4\x76\x4f\xeb\xf0\xbe\x07\x17\x02\x55\xa1\xbd\xaf\x52\xd2\xff\x1b\xa8\x33\x79\x2d\x50\xac\x14\x98\xa9\xc3\x87\x30\x7c\x5e\x4a\x99\xf4\x55\xa4\x96\xa9\xc0\xa9\xc3\x22\xed\x0e\xa7\x7d\xeb\xfc\x92\x8e\x59\xce\x28\x46\x60\x26\xea\x80\x9d\x7b\x5f\xc1\x4e\x4a\x7b\x45\x8d\xe8\x69\xaf\x09\xc6\x50\x2e\xbc\xcb\x8e\x99\xfa\xa8\x0b\x8f\xe5\x4e\x9e\x52\xd6\xe6\x67\x9e\x6b\x39\x46\xab\xc7\x57\x15\xff\xf2\x16\x51\xa7\xe0\x44\xdd\x66\x7b\x8b\xa1\xdf\x5b\x04\x4e\x91\x24\x83\x3e\x13\x39\xdc\x1a\x99\x5a\x54\x17\x6e\xe1\x08\x31\x17\x4e\xa0\xa6\x0a\xb6\x54\x77\x61\x37\x91\x13\x08\xd0\xb0\x3c\xce\x4e\x9b\xc1\x4f\xf4\xdc\x25\x24\x17\xf6\xec\x3a\x7e\x09\x0a\xdb\x20\x66\x12\xf9\x49\x45\x69\xf2\x16\x2a\x31\xc2\xf2\xa0\xe1\x41\x69\x5a\x8c\x31\x82\xe9\x98\x5e\x6e\x06\x9e\xe0\x60\x43\x15\x17\xd6\xd4\xf9\xe8\x26\x51\x31\x8a\x77\xb6\x5e\x78\x81\x21\x4f\x18\x4c\xc0\x76\xb8\x5b\x65\x1c\xf3\x03\x9d\xe7\x90\x55\xf1\x2b\x6a\x81\xc3\xe1\x7d\xed\x65\x93\xb2\x5b\xe0\xf1\x49\x25\x25\x72\x49\x31\x83\xf4\x93\x74\xc4\x5a\xfe\x8e\x06\xca\x8d\x96\x41\xf9\x15\xb1\xcd\x9d\x89\x4e\xbb\xc8\xf6\xa1\xb2\xd4\xaa\x91\xe9\x1d\x58\x40\x8b\x69\xe5\x98\xed\xb5\xf4\x98\x8b\x1e\x7f\xd9\x26\x3b\xf1\xc2\x0b\xed\xb9\xb9\x27\xd4\xa8\x16\x57\xe4\x80\x44\xbe\xa3\x94\xa9\xff\x06\x27\x09\xdb\xe4\x07\xb4\xac\xf0\x76\x37\x14\x64\x7b\x8d\x8c\x89\x14\xfd\x4a\xa3\x2f\x35\x3f\x5a\x13\x1c\xb0\xad\xc0\x17\xa4\x2e\x34\x8d\xc9\xe7\x49\x14\xf1\x2a\x62\x97\x5c\x54\xad\xa2\x8b\xea\xe0\xe5\xc3\xa4\x18\x0c\x3f\xd3\x72\x04\x03\x8f\xa1\xd3\x8f\x1f\xfb\x61\xa0\x92\xed\x0b\x8a\x9d\xe8\xb2\x6e\x0c\xa2\x4c\x8b\x1a\x37\x34\xf7\xf1\x56\x0c\xf8\x61\xe5\x8f\xc0\xab\xb6\x23\x14\x46\x99\xe2\x2a\xbc\x31\x5e\xc1\xfa\xe5\xe8\x95\x08\xda\x0a\x80\xe0\xbb\x6a\x1e\x72\x14\x76\x17\x2d\xcf\xf6\x0b\x96\x81\x5e\x28\x28\x07\x45\x1a\x95\x2c\xae\x24\xbb\x5b\x8e\x9a\xe7\x04\x80\x96\x00\x21\x6d\xd0\x69\x61\x12\x74\x5a\x77\x47\x88\xee\x83\x8a\xb5\x40\xc9\xc2\xa1\xf2\x8a\x9f\x7a\xd9\x4d\x31\x44\x84\x8b\x5a\x51\x0d\xd1\xb3\x4a\x17\xee\xac\xae\xaa\xdb\x37\x8a\x30\xb5\x3d\xcc\x38\x32\x98\x32\x50\x62\xfb\x1b\xea\x39\x81\x88\x0a\x4d\x6b\x9e\x26\x90\x89\x4f\x5f\x38\xec\x5b\xd2\x35\x83\xa8\x81\x7e\x06\x7c\xdd\xc4\x8b\xd7\x31\xaf\x43\x7e\x0f\x50\xb4\xc7\x10\x43\xf1\xcd\xea\x76\xce\x8d\xc3\xfb\xda\x43\x9b\x4e\xa3\xfa\xcb\xfa\xc3\x88\x6c\x44\x56\xae\x5c\x45\x84\x53\xb7\x81\x08\x46\x96\xb3\xa3\xa6\x44\x4a\x38\xb5\x61\x68\x97\x88\x2a\xd9\xeb\x50\x53\x44\x8e\x04\x0e\x89\xd6\x2d\x25\x09\x97\x15\x59\x6e\xc2\x18\x9a\xa1\x0e\x87\xff\x10\x70\x05\xbe\x51\x06\xcd\x8e\x3a\x91\x55\x4a\x4b\xd2\x4e\x54\xad\xc5\x06\x95\x8b\x85\x76\x3f\x4c\x59\xf6\x0a\xe1\x17\xa4\x96\xd4\xbe\x5c\x70\xf4\x54\x0d\x85\xde\xa1\x35\x2c\xfb\xf5\xe0\x9e\x86\x0c\x73\x7f\x5e\xe6\x59\x94\xfc\xb9\x1d\x48\x19\xd6\xf1\x2d\xfa\x58\xf8\x82\xfe\xba\x15\x86\xf0\x65\x9b\x93\x4e\x9f\x53\x42\xdb\xef\x54\xd1\x1a\x65\x04\xb3\x22\xed\x9b\xae\xc4\x1e\xa8\x9b\x5f\xd3\x7a\x67\xd7\xd4\x40\x68\x32\x2a\x53\xea\x2f\x1f\xe1\xa7\xc0\xd8\x54\xb1\xbd\xd8\x01\x62\xd3\x1d\x0f\x49\xd8\xcb\x93\xe5\x78\xb7\xd2\xa4\x99\x28\x9a\xfb\xef\x92\x55\xc6\x86\xf8\x78\xe2\xfb\x5d\x1f\x06\x7e\x5c\x63\x6a\xa6\x4a\xb7\xbd\x7f\xd6\xf1\x90\x3e\xaa\x65\xb0\x9c\xa4\x11\x27\x8d\xf2\xa7\xf4\xa1\x7c\x53\x4b\xfe\x66\x0f\xb5\x7b\x45\xde\x1d\x32\x96\x16\x7e\x1f\xc0\x57\xb4\x37\x9e\x9d\xf1\x51\x24\x43\x55\x28\x50\xfd\xfa\x73\xab\xf2\x4b\xb3\x70\x14\x46\x06\x4d\x3b\x14\xc8\xc1\x6e\xc7\xd7\x0a\x52\x6e\x8e\x25\xfd\x3e\xfd\x1d\x3c\xcd\x34\x4d\x5d\xf0\xf5\xcc\xf3\x4a\x26\x32\x33\xe3\xb1\x75\x2a\x2e\xce\x54\xce\xcd\x39\xc1\x24\x9f\x63\xe5\x26\x5c\x36\xb1\xcd\x2c\x42\x59\xa7\x78\xe6\xa6\xfa\x20\xf7\x20\x8a\x1d\x15\xb4\x93\xe9\x50\x47\x19\x31\x14\xf4\xb6\xf8\x5a\x9d\xb4\x30\x5e\x4a\xa2\x25\xeb\xd4\x85\x11\xdc\x1c\x57\x2a\xe4\xc7\x95\x2d\x1b\x25\x71\x66\xe2\x9c\x41\x06\xa2\xf0\x40\x9b\x58\x8a\x84\x4a\x7a\x25\x0d\xf3\x30\x1b\x3e\xe5\x41\xaf\xf7\x26\xfe\x8b\xf3\xbc\x8e\xe2\x58\x9f\xd7\x53\xf2\x22\xe9\x78\x03\xfb\x51\x8a\x98\x78\x94\xf0\x41\x18\xe9\x45\xe2\xcc\xf3\x15\xa8\x5d\x6f\x68\x34\xff\xd4\x8c\x6f\x7d\x9d\x83\xe3\xe1\x9b\xda\x86\x39\xb0\xaf\x9d\xe5\x45\x77\x11\x99\x46\xe5\x30\x8b\x2a\xa6\x33\xff\x61\xdc\x4d\xa2\x98\x01\x04\x48\x91\x7e\xa0\x14\xd7\xae\xa9\xa2\x3e\x1c\x08\x4c\x2d\x57\xa9\x04\x90\xff\x39\x85\x44\x29\xa4\x53\xab\xa2\xd4\xdf\xc6\xa7\xf3\x4d\xa0\xd8\xae\x46\x96\xf5\x6f\xdc\x8c\x51\xf9\x9d\xf9\x26\xd0\x65\x74\x1b\x77\x8b\x51\x07\xc8\x59\xf5\xa0\x82\xca\x0c\x9a\x80\x72\xfa\x91\xc9\xe1\x57\x10\x75\xac\xeb\x10\x64\xbd\xd6\x5a\x9a\x9b\x6b\x67\x51\x88\x8d\x8c\x12\x20\x6b\xb4\xf1\x8d\xe2\xfd\xe9\x14\x69\xcc\xe0\x30\x49\x50\x7d\xcb\xe0\xe2\x23\xc1\x29\xe6\x98\x1d\xb5\x14\xbf\xc1\xba\xa2\x46\x5d\x77\x4d\x95\x4e\x6a\x8e\x59\xa6\x21\xc1\x4f\xfa\x21\xd9\x20\xbe\x76\xc4\x2a\xa3\x22\xca\x43\x42\x96\xae\x4c\xa9\x0c\x69\x53\xf5\x71\x5b\x33\x5e\x62\x7e\x4b\x41\x25\xba\x45\x34\x4e\xc3\x5c\x9d\xf0\x77\x14\x6c\xef\x9d\x89\xa7\xf7\x1c\x17\xd9\x70\xb7\x22\xc8\xbf\xa4\xe7\xbf\xc0\x33\xca\x23\x11\x94\xe0\xe3\x99\xad\x05\x6a\x86\x65\x4d\x69\x07\x71\xf3\x49\xd8\x79\xea\x84\xc7\xb3\xed\x61\x38\x28\xbd\xb5\x0f\xd5\x78\x70\x12\x96\x16\xd3\x03\xd8\x71\xeb\xf0\xa0\x40\x10\x3e\x74\x1d\xd3\xac\x18\x8d\x4c\x1a\x46\x2b\x94\x47\x09\x5e\xa8\x7c\x3f\xe4\x1e\x68\x25\xab\x46\xc2\xac\x9b\x96\xf5\xf8\xb0\x6c\x58\x60\x16\x12\x9d\x8f\xb7\x00\xdd\xe4\x1b\x3f\xc8\x3e\xb4\x51\x6e\x53\x86\x32\x3a\x56\x40\x4f\x11\x08\xcd\x54\xc9\x1c\xb4\x5c\xe6\x08\x01\x8c\x14\x0c\x55\x8d\xf4\x92\x9b\x0a\xb2\x71\x9e\xda\x71\x6a\x63\x5b\xa4\x53\x7e\x4c\x03\x8e\x1d\xc7\x71\x4b\xc3\x17\x37\x14\x80\xc8\x0d\xb9\xf9\x7e\xe3\xad\x40\xf1\x6c\xbc\x3d\xf1\xf9\x3f\x26\x72\x11\xb4\x1e\xd7\x5e\x60\x14\xa6\x66\xa7\xe7\x2a\x7b\x80\x68\x1a\x81\xd9\x99\x89\xc7\x83\x5f\x03\xb3\x94\x8c\x7d\x7a\xa2\x82\x8d\xe0\x73\xba\xe6\xed\xa8\x16\xca\xef\x81\x07\xba\x89\x3c\x92\x6f\x34\x52\x33\x35\x3d\x68\x14\x21\x23\x42\x60\xc9\xd7\x35\xbe\xe3\x85\x03\x0b\x10\x51\x52\xa8\x7a\x1c\x87\x5b\x58\x21\xbe\xa9\x15\x7e\xca\xc8\xc9\x66\x5d\x13\x99\x38\xe7\x2f\xe6\xa8\xb3\x74\x1f\xda\xbb\x8d\xbc\x18\x75\x22\x67\xda\x84\x1a\xc8\x47\xa3\x97\x54\x76\x62\x47\x1d\x93\x2e\x4e\xfb\x48\x01\x27\x46\x7e\xad\x27\x21\x86\x5a\x16\x5f\x57\x3c\xdf\x30\x8c\x3f\xeb\xcb\x33\xb7\xa9\x40\x86\xfd\x7f\x93\xac\x02\x8a\x93\xd0\x00\x61\x37\x03\x5a\x2b\x44\x81\x4f\xae\xaa\xd9\xa8\x87\x70\x2c\x22\x1a\x5b\x1e\x58\xc1\xad\xd3\x53\x50\xd4\x22\x7e\xd2\xc9\xe3\x67\xee\x83\xb0\x97\x33\x54\x54\x93\x10\xba\x6d\xd1\x4f\xc1\x1a\xef\x70\x8c\xb2\x91\x59\xe1\xea\xb0\x92\x0f\x92\x9e\xff\x49\x55\x3f\xcb\xba\x91\x4d\x93\x2c\x64\x35\x98\x1f\x87\xa7\x61\x6e\xae\xdd\x8d\x0a\xe1\x99\x13\x51\x66\xdf\xaf\xbe\xd4\x00\xf4\x3f\xd8\x1e\x59\x13\xe7\x98\xd8\x95\x9c\x5b\x21\x7f\x30\x01\xab\x16\x41\x46\x0e\xff\xb4\x09\x1b\x97\xda\xac\x5b\xa0\x8d\x89\xa0\xed\xa6\x62\xd7\xac\x33\x28\xbc\x3c\xdf\x4e\x4d\x14\x85\xc2\x9a\xc9\x18\xac\x40\x3d\x1e\x3f\x5e\x5a\xba\x80\x30\x0a\x8d\x48\x49\x3a\x22\x26\x17\xd4\x3c\x35\xa3\x34\x7b\x76\xae\x36\x2c\xcf\x28\x8c\x13\x98\x0d\xa9\xa9\x53\x93\x08\xd5\x4b\x74\x35\x51\xb4\xbd\xd7\x30\x8e\x33\xdb\x5e\x0a\x07\x34\x88\xc1\x8d\x04\x87\x41\x74\x83\x94\x75\x5d\xa2\xfd\xfb\xdb\x99\x1d\x85\x26\x8e\x0b\x13\xd1\xab\xa4\x7a\xad\x2a\xd9\x2e\xea\x48\x3a\xaf\x83\xbd\xd3\x1b\x83\x53\x14\x68\xf0\xb5\x3e\x46\xbd\x30\x67\x18\x4a\x23\xbc\xd6\x25\x00\x45\xba\x68\xd1\x88\x42\x9f\xe6\x78\xe0\x07\xb2\x79\xa4\x43\x22\xe7\x86\xb2\xf1\x38\xb5\x83\xd8\xc4\x5a\x47\xfa\xd3\x40\xc3\xea\x54\x03\x20\x1d\x14\xdc\xc3\xf0\x59\xdc\x49\x78\x2a\x09\xe1\xb7\xa3\x4d\x89\x4b\x73\x60\xe3\xbc\x4c\xef\x62\x16\xe9\x45\x45\xfc\x4e\xe0\x06\x6f\xff\xce\x1d\xbf\x0b\x4c\x9a\x53\x14\x35\xa5\x58\xcd\xce\xa2\x0a\x87\xf6\xfd\x96\x12\x09\x79\x6c\xc6\x07\x60\x61\xcf\xc6\xc4\xc1\xd3\xdb\x43\x2f\x75\x7d\xe9\x72\xad\xf1\xd2\x75\x05\x52\xdf\xd0\x20\xec\x8f\xb4\x7e\xf4\x47\x08\xc5\xdc\x00\x43\x79\xe4\x5d\x37\xdd\xb1\x73\xdd\xf0\xc4\xb0\x2b\x31\xe8\x56\xdc\x58\x39\x02\x5b\xbe\xae\x40\xeb\xc2\x3c\x34\x70\x07\x9a\xe2\xcf\x23\xd8\xeb\xf1\xc1\x8b\xed\x6c\x6c\x15\xea\x56\x3a\x5a\x7e\xe8\xe6\x56\xf0\x19\x3f\xc7\x57\xb0\xd0\x09\x0a\x56\xa7\x35\x2a\xee\x74\xf0\xbc\x12\xc5\xeb\x27\x29\xda\x85\xc0\xe2\x3b\x05\x12\x97\xc5\xdc\xd6\xc5\x4b\x8c\x00\x53\x69\xee\x17\x9f\x21\x5e\x6d\x94\x38\x4e\x68\x94\x34\x7a\x80\x9a\xb3\x85\xff\x28\xa8\x10\xc9\xea\xcc\x78\x29\x8c\xa8\xd0\x83\x1d\x4a\x75\xac\x05\xad\xd8\x50\xe5\x58\x40\x4d\x96\xd5\x67\x5c\xc7\xda\xbf\xf7\x5f\x71\x7a\xc1\x77\xb5\x68\x97\xb8\xeb\xac\xd6\x81\xdb\xa6\xa9\xdd\xa0\xd2\x42\x1c\x7b\xac\x87\x0b\x7a\x1e\x9e\xe6\x17\x82\x95\x96\xd3\x9f\xbb\xe8\x4b\x05\x71\x37\x94\x84\x8c\x8d\x2e\x6d\x09\x31\xc0\x9e\xc8\xb2\x3b\xb4\xcb\x0a\xbb\xcd\x93\xb0\xa2\x88\xd6\xa4\x40\x1b\x5b\xdb\x23\x9c\x0f\x56\xe3\x4c\xa0\x68\x0e\xff\x90\x7c\x92\x8c\x7d\x35\x98\x63\x16\xfa\x6e\xa9\x92\xdd\x71\xa5\x93\x7c\x5c\x83\x3d\x8e\xb1\xf0\xbb\xa6\xe7\x66\x86\x4a\x9c\x1d\xb1\x8f\xbe\xbe\xbb\x68\x53\xe1\x2d\x14\x26\x7e\xb7\x6f\xfe\xf7\x66\x13\xfb\xf2\x38\x4d\xfa\x21\xb0\x27\x08\x9d\x91\xdf\xf3\xb5\x5a\xa8\xdc\x8c\x6c\x4b\x29\x52\xf0\x2e\xf0\xd8\x70\x15\x05\x8e\x93\xcc\x62\xd4\x41\x66\x92\x7d\xdc\xa6\xe9\x35\x86\x2b\x9d\x34\xec\x11\xd3\x50\x25\x15\x76\x6c\xb0\x2e\x03\xb9\xa4\xca\x73\xdf\x0a\x3c\x14\xf7\x9d\x40\xa1\x49\x6f\x4e\x7c\x21\xff\x92\x66\xc4\xe7\x01\x00\x11\x7f\x76\xd8\xc8\xa1\x89\x07\x76\x77\x4b\x98\xeb\x5f\xbf\x31\x51\xe2\xb4\x0f\xb5\xbd\xff\x0f\xf4\x5d\xd0\x83\x69\x29\xe8\xd0\x07\x81\xa2\xa3\xbe\x30\x51\x79\xef\xed\xca\x39\x4b\x4c\x6f\x4f\xf9\x0e\x48\xa9\x3f\x51\xc8\xf2\x93\x13\x8f\x74\x44\x83\x0c\x41\x14\x1a\xce\x28\xf6\x9d\x41\xc0\x8a\xb8\x64\x03\x6b\x84\xd8\xec\x9b\xba\xda\x34\x51\xc0\x90\xd4\x2e\x95\xe7\x46\xf5\x73\x7f\xa8\x49\x4a\x69\xa5\x58\xbf\x39\x50\x82\x46\x57\xd5\x06\x8c\x63\x9c\x54\x99\x14\x50\xf0\x90\x4f\x3c\x7b\xb9\x29\x06\xc3\xdc\xa6\x53\x6a\x38\xfd\xa2\x12\x2e\xfd\x54\x15\xe5\x6e\xd7\x66\x1a\x0f\xbd\xda\xce\x4c\xdf\xd2\x60\x18\x9d\x42\x3c\xc8\x93\xaa\x77\x75\xb2\x36\x41\xe1\xe6\x36\x93\x28\x34\x34\x5a\xeb\x19\xa7\xb9\xd3\x25\x20\xcd\xcf\x78\xa4\x21\x55\x42\xdd\x59\x38\xaf\xf0\x91\x0c\xc8\x43\xfa\x9e\x16\x04\x49\xdb\x46\x3a\x75\x45\x91\x4e\x5d\xd1\xfd\xb3\xa8\xb0\xe3\x34\x64\xf0\x16\x93\x63\x4e\x3c\x18\xfb\xb6\x62\xa8\xb4\xa3\x30\x36\x99\x1e\x28\x07\xe6\x1d\x01\xd1\x1d\x98\x11\xee\xd7\xb9\x6c\xcf\x8e\xc6\x51\xb2\x62\xf1\x2a\xd8\x88\xcb\x81\xc7\xf6\xb3\x7f\x11\xd1\x4e\xc5\xf5\x99\x8c\xc6\x45\x99\x26\x3e\x4e\x8b\x83\xb2\xd7\x3a\xf5\x1c\x58\x91\x5d\x0d\x2c\xef\x82\xd9\x47\xd3\xfc\x77\x02\x0f\xbe\x5b\x0d\x54\xd1\x0c\xa1\x26\xb2\xf5\xeb\x13\xa5\xf4\xc9\x1c\x93\x7c\xa3\x50\x55\xc3\x32\x6b\xb1\x2d\x0a\xe0\x05\x60\x52\x7e\xaa\x20\x4f\xea\xd6\xf5\xa5\x76\x27\x14\xc1\x2a\x78\xc1\x6f\xe3\x48\xf2\x8d\x0b\xe4\x96\x01\x3e\x45\x51\x0f\x3b\xed\xcf\xe8\xbd\xb5\xf6\x3c\x23\x70\xd4\x80\x5d\xc7\xe4\x79\x64\x81\xf3\xc2\x99\xb9\x39\xf1\xe8\x93\xa7\xe8\x60\x3b\xe2\x4d\x4f\x12\x72\x4e\x67\xdf\xa9\xc9\x99\x5b\x4f\x58\xd0\x7c\x28\xf0\x1d\x4d\x4f\xaa\x87\xba\x7a\xa1\x89\x56\xca\x64\xc3\xa7\x62\xb7\x54\x31\xf7\xd6\x36\x3d\x98\xec\xf3\xf4\x15\xe1\xef\xde\x82\x8f\x47\x10\x7d\x8f\x1e\x0f\xd3\x64\xa2\x42\x00\x67\x75\x26\xa8\x0a\xb9\xbd\x22\x18\x92\x53\xec\x94\x45\x87\xb9\xfc\x54\xc4\x05\x0f\x90\x9a\x29\x75\x5b\xc1\x8d\x5d\xc6\xf3\xc5\x97\xc3\xa4\x36\x83\xc4\xa9\xd0\xcc\x00\x64\xea\xb4\xe1\xb1\x7f\xa8\x03\x9d\x1d\xab\xfe\x28\x63\xe4\x01\x86\xf3\x5b\x34\x4d\x84\xf0\x6f\x8a\x58\x63\xe4\x00\xd2\xfe\x43\x25\xeb\x0a\x6c\x1d\xea\xec\x17\x15\x76\x6b\xfe\xc0\x2b\xf0\x87\x8a\x50\xf7\x01\x1f\x00\x74\x60\xeb\x4a\xda\x65\xa6\x9d\x27\xe3\x96\x07\x09\xae\x2b\xc5\x2e\x3d\xc8\xc3\x75\xea\x3d\xe5\x4f\xe5\x6a\x05\xfd\x3c\x57\xb9\x70\x6a\x33\xe7\x70\x28\x58\x9b\x8b\x96\x53\x74\xba\x14\x74\x8b\x55\x53\xf8\x86\x9a\x52\xfc\xf2\x1a\x3f\xfb\x8b\xed\x71\x11\x2f\xb6\xfc\x6e\x38\xa3\x12\xf6\x33\xaa\x7b\xbc\x1c\x76\x17\x79\xfe\x45\x82\x63\xdf\x31\xab\x27\x9f\x87\xf7\xb5\xad\xf1\xa7\x04\x59\xf3\x59\x85\x0e\x04\xd1\x2c\xea\xbf\x7f\xe4\x6c\x65\x19\xa1\x1d\x63\x21\x00\x21\x0b\xf5\xad\xd6\x9d\xc8\x01\x11\xe2\xdc\x9f\xf8\x07\xfd\x27\xca\xf9\x64\xc9\x52\x68\x73\xd4\x81\x1c\x37\x48\xb9\x36\xf8\xac\x7f\xae\x65\xfe\x1f\x56\xa5\xc5\x7e\x42\x99\xb0\x78\xc9\xa6\x19\x20\x75\x54\x88\x17\xa0\x5e\xf9\xad\x05\xc0\xf7\x8c\x82\x10\x9a\x41\x18\xb3\xb9\x81\x79\xbc\xaa\x4c\xe5\x55\x65\x1d\xf3\x34\x29\x54\x3d\x85\xfd\x23\x1e\x9f\x38\xcb\x06\x24\x1c\xf1\xf7\xa1\xb6\xdd\x84\x3e\x95\x12\x5a\x18\xf7\xc2\xa5\xb0\x57\x38\x40\x1c\xaa\x03\x67\x55\xa5\xe0\xac\x67\x94\x23\x43\xed\x1e\x92\x13\xe9\x72\x78\x53\xc6\x30\x48\x85\x61\x3b\xbc\xad\x8c\x90\x6d\x77\x31\xb2\x59\x16\xdb\x0c\xc2\x28\xae\xd4\xa3\x4a\x40\xdb\xd3\xed\xb9\xb9\x83\xed\x2c\x4f\x8b\x6e\x5e\xa4\x9c\x3b\x09\xef\x91\x37\x10\xbe\xea\x38\x32\x91\x59\xc9\x42\x33\xd5\xfa\xa5\x5f\xf4\x73\x01\xae\x5a\x7f\x17\x6e\x17\x3b\xfc\xc2\xa3\xe9\x50\x8c\x63\xd9\x03\xd6\x84\x81\x58\x7c\x53\x31\x82\x7b\xcd\xde\x9d\x8a\xe5\xe5\xf1\x19\x4f\xf6\xcb\x1d\x6f\xd4\x84\x3e\x54\xac\xb2\x68\x58\xc2\xb0\xeb\xd8\x75\x6c\xb2\x64\x5b\xe7\xbb\x7c\xd4\xbe\xf3\x8d\x3f\x3b\x66\xc6\x49\x6e\xbb\x2d\x35\xb8\x0c\x37\x29\xe0\x55\xaf\x6e\xdc\x1b\xd8\xdc\xa4\x48\xa7\xd1\xf7\x03\x1e\x81\xaf\xf5\x90\x4a\x9e\xa7\x86\x6a\x0e\xa5\x11\x77\xe7\x56\x8d\x90\xeb\x59\x2c\xe2\x1e\x87\xff\x13\x19\x4e\xda\x6f\x62\xd6\x3f\xab\xc6\x7a\x4c\x17\x09\x0e\x07\x57\x95\x40\xeb\x39\x15\x08\xb2\x54\xe6\xae\xd6\x11\x09\x14\x37\x54\x3c\xbe\x01\x27\x82\x0c\x6a\x1d\x1e\x81\x6f\xe0\x77\xf8\x25\x14\x31\x0a\xba\xc5\xff\xbc\x41\xb2\x64\xd3\x98\x0b\x25\x88\x20\x98\xdc\x88\x6f\xaa\x52\x39\xdd\xa4\xa5\x31\x40\xc7\x27\xba\x65\xe6\xeb\x9d\xfd\x70\x30\xa4\x43\x81\x3f\x46\xe0\xcb\x58\x24\xa4\xaa\x3c\xba\x84\xcd\x71\x43\xd5\xf5\x52\x6b\xfa\xfd\x30\x1d\xa1\x09\x83\x52\xfc\xa6\x1a\xe3\xdd\xac\xd5\x71\xe7\xe7\x0f\xb2\xf1\xa0\x20\x91\xc4\xbf\xdf\x27\xef\xf2\xbe\x6a\x91\x27\xe9\xc0\xc4\xe1\x31\xff\xa5\xf4\x0c\x24\x22\x81\xdf\xd7\x1d\xef\xcb\x0a\xae\x6b\x4d\x16\x46\x90\x1e\x46\x9c\x70\x59\xc3\xc0\x2e\x92\x4b\x47\x21\xf7\x61\x2d\x69\x3c\xbc\x6f\xa1\x3d\x4e\x92\x14\xa2\x6c\x82\x8c\x84\x1b\x13\xae\x81\xed\x46\x81\x40\xf9\xdd\x64\x34\xc2\x74\x6a\x4b\xa1\xf8\x40\x31\x21\x34\xdb\x5e\xc5\xc3\xbe\x99\xdb\x34\x36\x11\xcc\x9b\x63\x34\x99\x97\x14\xe4\xbc\x8a\xeb\x46\x09\x94\x67\x7c\x9f\x0a\xec\x3d\xd2\x8a\x2a\x3f\x41\xbc\x8a\x22\xba\x44\x0d\x43\x84\x9a\x94\x68\xed\x72\x18\xf7\x58\x56\xfe\x25\xd1\xb6\x9c\x78\x48\xc7\x35\x05\xe0\xdb\xa8\xf4\xf5\x3b\x26\x9d\xd6\xc2\x77\x7a\x0e\x04\x7b\x5c\x14\xf1\xe8\x44\x49\xe7\xe1\x51\xad\xb2\xd4\x9a\x88\x68\x6e\xfc\xa8\xeb\x3e\xcf\xaa\xeb\x1a\x0c\x7b\xe0\x02\xf1\x0f\xf5\x32\x28\xb1\x89\xbe\x29\x43\x34\xae\x1a\x33\x37\xe7\xaa\x34\x4d\x40\xd0\xd4\x0e\x8a\xc8\x50\xc5\xd1\xc9\x4a\x6c\xa8\x8c\xad\x4e\x74\x7a\x60\x5f\x7b\x31\x4e\x96\x05\x0f\x8c\x0e\xf6\x69\xd5\x9d\x3f\xad\x30\xfc\x26\xcd\xc3\x2e\x31\x1d\xd1\xb1\x60\x3e\x10\x25\xa8\xf3\x87\x95\x23\x94\x51\x31\x0f\x47\xc8\x71\x8e\x38\x79\xd7\x5f\x7b\xa4\x81\x1f\x38\x3e\x4f\xd6\x64\x0c\xfc\xb8\xf6\xdb\xca\x20\x8f\x8a\xee\xf0\x49\x7a\x72\x08\x0f\xb6\x50\xe5\xc3\xe1\x78\xa0\x52\x93\x35\x0a\xc2\x60\xd5\x76\x68\x4e\x3c\xea\xae\x3d\xb8\xa1\x14\xd0\x3e\xd2\x98\xbe\xe3\x64\x61\x91\x35\xb0\xc2\x35\x93\x05\x05\xaa\xaa\xb6\x55\xfb\x21\x2f\xb6\xb3\x22\x4d\x6d\xdc\x93\x96\x8e\x28\x1e\xc3\x84\x88\x2e\xa1\x8f\xc9\x86\xd6\x44\x39\x5a\xf4\xd8\xf2\x9b\x6a\xe2\x9b\x91\x73\x38\x23\x77\x55\xbd\x15\xba\x95\x38\x16\x3c\xbd\x24\xce\xa8\x0c\xdc\x1d\x47\x7d\x79\x16\x65\x42\xd0\x0f\x8f\xb3\xa0\x3a\xfc\xc7\xfd\x40\xc9\x1c\xbc\x4d\xdf\x12\x96\xf7\x3b\x81\x70\x7e\xf6\x7b\x46\x4d\x2f\xdf\x9a\xa8\x7c\xff\x56\x03\x5e\x9e\xe5\x3b\x68\x32\x8b\xdb\x5a\x88\x3e\x6e\x22\x88\xe3\x1b\x35\x97\xd6\x2d\xa2\xbc\x48\xed\xae\x96\xe3\xbe\x79\x8c\x0c\x42\x85\xc4\x04\x46\xfc\xac\x2a\xa4\x9c\x9f\x68\xf3\x0e\xd5\x2f\xb4\x99\xde\xae\x05\xb3\x44\x5f\x35\x1a\x39\x62\x37\x97\xc5\x3a\x10\x28\x02\x01\x11\xf2\xa7\x8f\x94\x49\xeb\x26\x56\x84\x34\xec\x83\x64\x40\x74\xd1\xe8\x87\x6a\x3e\x7b\x6c\xab\x7f\xa9\x52\x90\x2f\xbf\x7a\x80\xec\x03\x45\x1e\x9f\x7f\x76\x46\x2d\xe4\x4e\xc5\xdf\x89\x24\x89\xc9\xa0\x6b\x06\xfd\xd0\xab\xed\x91\x35\x59\x91\xda\x29\xcf\x0e\xfc\x30\x50\x06\x62\xe2\x61\x19\x9b\x5a\x64\x3c\xcb\x92\x6e\x28\xf1\xf0\x61\x11\x82\x04\x5d\x0f\x5f\x6b\x36\xb1\xa8\x67\x53\x90\x85\x8a\x30\xe1\x45\x35\x45\x74\x47\x4d\x17\x9d\x9b\x78\x59\xcf\x28\xc9\xa0\xf4\x8d\x97\xdc\xe7\x67\x84\x0d\x7d\x8b\xd6\x18\xe7\x99\x67\x61\x78\x3c\xb8\xb6\x8f\x4a\xa3\xd6\x0b\x33\x0a\x7e\x9c\x0f\x92\x49\x16\x1f\xc1\x6f\x36\x21\xb2\xc7\x91\x89\x63\x4f\x2f\x21\xcb\x42\x6f\x01\x48\x22\x22\x64\x61\xc1\xf4\x53\xf5\x8c\x68\x12\x4b\xeb\x5b\xbb\x44\x73\xf9\x84\x27\xac\xfc\x6f\x81\x52\x16\x43\x5f\x19\x96\xe3\x0c\xa2\x1e\x01\x39\xfb\x62\xc8\x1d\xc5\x10\xff\x26\x6c\x0d\x36\xdb\x39\xc2\x93\x01\x05\x79\x33\xf0\x03\x4b\xbb\x88\xc6\x0e\x2c\x27\xb7\x2a\x72\xd9\x26\xcd\xb3\x5d\x1e\x47\xce\x94\xb6\x8e\x3b\xa9\xfc\x7c\x19\x06\xf1\xd9\xf3\x3b\x94\x86\xcb\x5c\x08\xfd\x4c\xb8\xf1\x13\x55\x6d\x81\xae\xcd\xb2\x30\x1e\xec\xc6\xda\x89\xac\xa4\x3f\x1b\x1f\x05\xbe\x90\x7c\x0e\x43\x5c\xd8\xaa\xb7\x00\xf3\xe4\x1b\x00\x1d\xf0\xa8\x21\x2c\x84\x9f\x5e\x9f\xed\x3f\xb0\xaf\x6d\xba\x80\x68\xc2\x5a\xc8\xc0\x03\x6d\x23\x19\x85\x78\x4e\x4d\x99\x64\xe3\x24\x93\xf1\x1a\x98\xf3\xf7\x68\x37\xf2\xb5\xfe\x3d\x36\xed\x27\xe9\xc8\xa6\x20\x46\x14\x1d\xdc\x96\x13\x00\xfa\xb6\xd2\x36\x3c\xa5\x01\x90\x43\x93\xda\x61\x52\x9e\x81\xdd\xe5\x2b\x65\xc6\x9d\x9e\x3a\x33\xce\x4f\xfc\x90\xc0\x14\x48\x2a\x04\xfc\xef\x57\x6b\x6a\x46\x4f\x05\xe8\xd9\xbf\x4d\x25\x04\x0a\x66\x0a\x35\xbe\x26\x93\xdc\xe5\x97\x13\x03\xae\x04\xbe\xc3\x28\x47\x7f\x4d\x58\xb6\x68\xdd\xe0\xe6\xd0\xbc\x12\xc5\x2a\xa7\xad\x37\x4c\x32\x0b\xe4\x36\x72\x33\x16\x7d\x43\xba\xfa\xe4\xaa\x47\x48\xc1\x7c\x38\x82\x8c\xf2\x19\x08\xdf\xb0\x0f\xdb\x73\x33\x0c\xf3\xd0\xc4\x84\x79\x41\xcd\xec\xf4\xa4\xcc\xed\x00\xdb\xf8\x0b\xd5\x3d\xfd\x1b\xec\x35\xa1\xe1\x7d\x46\xcd\x05\xa6\x4b\x76\x25\x6b\x3d\x6a\xca\xf7\x27\x35\x64\xaf\x9b\x62\x3e\x82\x86\xf6\x0e\x08\x9e\x0d\x58\x15\xb1\x04\xbe\x24\x7b\xa6\x16\xa4\xcf\x1e\x6a\x8f\x4d\x9e\x86\x26\xed\x0e\x4d\xc4\x21\x38\xca\xbc\x28\x37\x23\xf7\xbc\xaa\xc6\x33\xfe\xda\x65\x4b\x4b\x61\x9a\x17\x2c\xc8\x00\xe4\x13\x44\xdc\xf9\xda\x15\xb3\x93\xf2\xcd\xd3\x1e\x0f\xa4\xa3\xe0\x76\x27\xa8\x94\xfa\x5e\xf6\xe2\x07\x3e\xbe\xef\xd9\x68\x54\x6e\xfe\xf2\xf8\xc0\xd9\x7f\xa0\x3d\xff\x07\x4d\x48\x82\xc8\x12\xc7\x93\xab\x48\x7f\x47\xe9\x27\x7f\x67\xe2\x3b\x8a\x91\xed\xe7\x8f\x7b\x77\xc4\xac\x5c\x52\x27\x56\x5c\xd8\xdf\xc6\x73\x02\xd2\xe1\xa2\xa6\x8e\xdf\x20\x9f\x2b\xe3\xab\x58\x3a\xa0\x36\x50\x4d\xc4\x4b\x7e\x17\x51\x85\x94\x7c\xea\x50\x06\x8c\x38\x71\x75\xd6\x45\x22\x5a\x32\xc5\xef\x0d\xb3\x64\x53\x33\xb0\x4f\xd2\xf7\xc3\x67\x5d\x20\xd3\x28\xe2\x43\xa5\x69\xe4\x6b\xe2\x22\x65\x92\xe9\x19\xb2\x3a\xd8\x78\xb7\xb1\x86\x7c\x03\xff\xcc\x94\xd5\x2a\x19\x05\x39\x37\x4f\x1b\x05\xbe\x80\xcb\x2c\x21\x48\x21\xde\xf5\x14\x91\x51\x92\x12\xef\x8f\x50\xe5\xdc\x64\x07\x27\x86\xd5\x67\xc6\x4f\x51\x0c\x83\x0c\x62\x0b\x8b\x8b\x6f\xfc\xbf\x02\xd5\x3f\x34\x99\x7d\xba\xfc\x61\x08\xd3\xcf\x62\xdd\x71\xac\xef\x6a\x55\xa7\x73\xbc\xf0\x02\x9b\xd2\x6c\x79\xbe\x4a\x35\x05\x96\x6d\x47\xed\x74\x78\x9f\xe6\xda\x13\xce\x19\xee\x07\x49\x66\x3e\xe5\x55\xf5\x36\x69\x61\xf1\x89\x90\xa5\x12\x0a\x26\x5a\x0d\x29\xf1\xd3\xc2\x4a\x1f\xfe\xff\x13\x24\x83\x8d\x28\x69\x2c\x62\x9e\xc4\xcd\x76\xf9\xc9\xca\xdd\xcf\xac\x2a\x52\xd7\x6b\x13\x8f\x73\x3b\xc3\x0b\x88\x22\xce\x49\x45\x2f\xf2\xd3\xb4\x80\xbe\x1c\xe3\x6a\x06\x69\x08\xbe\x41\x0e\xe2\x02\xaf\x6f\xb1\xa9\xa0\xbb\x1d\x9b\xc6\x59\x6e\x45\x1d\x4d\x08\x0b\x68\x16\x46\xa8\x0c\xe4\xb1\x0e\x93\x91\x4d\x31\x20\x80\xa8\xfa\xbd\x89\x4f\x36\x6f\xab\x9a\x39\x23\xfb\xb0\x2a\x1f\xd3\xcf\x90\xf6\x41\x83\x12\x70\xcf\x96\x86\xab\x23\x24\x9a\x58\x57\x3e\x82\x7c\xe3\xea\xa6\x61\x16\x99\xb8\xb7\xb3\x82\xe0\xc2\xca\x28\x70\x97\xa0\x47\x37\x94\xef\xb9\x4b\xf1\x03\x4f\x57\xa8\x89\x8d\x4e\x6a\xe2\xee\x70\xa7\x26\x5f\x0a\xbc\x32\x0e\xb8\x4d\x75\xa6\x8a\x07\x70\x85\x6c\x14\xa2\x8e\xd5\x89\x17\xc4\x8b\x09\xa3\xe8\x22\x7a\xbc\x09\xc6\x30\xf9\xba\x36\xf5\xf0\x62\x3b\xcb\x93\xd4\x4e\xab\xf1\x9f\xf3\xaa\xca\x34\x3d\xe3\x59\xe4\x2e\xd2\xa7\x0a\xf7\xb8\x2f\x2b\xb8\xf2\x90\x4a\xdd\x4e\x61\xfd\xf8\x46\x99\xba\x8e\x89\x7a\xaa\xa2\xf5\x07\x81\x17\xde\xf9\x83\x5a\x3d\x76\xf6\x50\xbb\x67\xc2\x14\xbc\x19\xd8\x6f\x20\x1d\xe0\x6b\x57\xba\x34\x61\xda\x49\xd2\xd8\x4e\x97\xee\x4d\x94\x5c\xd4\x94\xcf\x43\xa5\x38\xff\x0c\x75\x80\xf0\xbc\x6e\xb9\x1a\x6d\x19\xb0\xd8\x34\x93\x84\x50\xa6\xc6\xf4\x08\x99\x02\x11\x76\x23\x93\x2e\x52\x68\xe3\x08\xa7\x5d\xb1\x6f\x43\xa5\xe4\xa9\xcd\xc6\x09\xea\x33\xbe\x90\xfa\x75\xfa\x09\x22\x60\xf7\xbc\x9a\xf6\xb4\x69\x37\xcc\xb6\x75\x31\xcf\x04\xda\x65\x36\x0c\x94\xf7\x4d\x3a\x52\x60\x64\xd4\xab\x85\xd6\xc1\xa9\x18\x76\xbf\xf8\x8f\x7e\xe1\xe7\xe9\xcf\xe0\xba\xa7\x11\xd9\xf3\xcd\xea\xb3\x0e\x1a\xda\x4d\x8a\xd2\xaa\x67\x15\x19\x17\xa5\xce\x77\x49\xe9\x0d\x2d\x9b\x25\x9b\xd1\x32\x00\x08\xf4\x31\xed\x10\xbe\x6e\xe2\x87\x0a\xe3\x2c\xec\x31\xb0\xf5\xe0\x0c\x13\xb0\xed\x9f\x25\x51\x37\x0e\x38\x4c\x3c\x28\xc2\x18\xf8\x37\x76\x2a\x13\x3f\x58\x70\xa1\x96\x83\x48\x59\xa2\x97\x9a\x6e\x11\x21\x09\x46\x5e\x75\x03\xf6\x9c\x6f\x5c\x61\xd7\xbe\x51\x84\xe3\x91\x90\x71\x88\x91\x50\x2d\xa6\x8f\x3d\xb1\xd2\xd0\xda\xc5\x95\x29\xf2\x57\xd2\xd9\x69\x39\x72\x89\x0b\x9a\xe2\x70\xb5\x56\x66\x98\x9f\x5f\x68\x8f\x4c\xba\x68\x89\x55\x41\x2b\x30\xde\x86\xcf\xe0\x1b\xe5\x51\x6d\x37\x89\x93\xd1\x0a\x3c\xaa\xb0\x86\xa9\x54\x05\xb1\x26\xd2\xe7\xaf\xc3\x3f\x38\x54\xd0\x61\x91\x3b\xdf\x33\xe3\xa7\xc0\xaf\x04\x2a\xcd\xe3\x78\xa1\x92\x69\xe1\xcf\xee\x07\xbe\xb2\xbb\x7b\xd5\x2b\xa7\x7f\xdc\x44\xe9\x39\xb2\xbd\xb0\xeb\x18\x84\x71\xbe\x4e\x2a\x42\xe7\x75\x3d\x24\xb6\xa5\xc6\x67\x47\x61\xb4\x6c\x8a\x45\xc6\x06\x01\xb9\xf5\x57\xf8\x63\xbe\x09\x9e\xf4\x28\x97\xbd\x2d\x4a\x5b\xf0\x2f\xbf\xa9\xff\xec\x37\x03\x3f\xcd\x1e\x27\xcf\x94\x5f\x1d\x47\xfe\xaa\xe6\x32\x7f\x3b\xf0\x4a\x93\x9f\xd0\xfe\xe5\xbe\x0b\x0d\xb6\xcb\xb8\x33\xad\x34\x82\xc0\xb7\x2a\xc9\x32\x7d\x1e\x66\x8e\xee\x04\xad\x2f\xfd\x32\xfb\x5e\x26\xc9\xe4\xb1\x0b\xaa\xf0\xa0\x71\xc0\x15\x1e\xf8\xee\xff\xc1\xee\x12\x41\x37\xcf\xb7\xa2\x08\xf0\x3d\x84\x2c\x8c\x75\x46\x49\x4c\xa6\x02\x1b\xea\x21\xfd\xd4\xc6\x6e\x38\x47\x78\x90\x5b\x42\x60\x1a\x60\x38\x07\x66\xfb\x96\x66\xbb\xdb\xbd\x2a\x7b\x78\x9c\x44\x91\x8d\xa9\x4d\x87\xd7\xef\x44\x89\x9d\x07\x5a\x27\xdb\x21\x34\x12\xe5\xfc\xd5\x64\x9b\x42\xd0\xe1\x7d\xf3\xed\x23\xb3\x87\xd0\x7b\xe3\x48\x28\xf0\x5b\xed\xac\x1f\x8f\x28\xe2\x5e\x36\xad\xf8\x0c\x77\xf1\xc0\x22\xb0\xf1\x5b\x81\x8a\xbc\x9f\x98\xf1\x40\xf6\x07\x95\xba\xef\x31\x1b\x53\xfa\x5c\x21\xaa\x15\x8f\xa6\xdd\x9b\xb6\x0e\x13\xd5\x57\xbe\xab\xb5\x36\xee\xa9\x29\x92\xd4\xf6\x23\x8c\xd5\x13\x72\x06\x89\xd3\x19\x05\xc8\xbc\x3f\xa9\xa8\xc2\x2a\xd6\xf8\xba\xae\xd4\xec\xa1\x76\x36\xb6\x31\xbb\x0d\x4e\x9f\xb1\xad\x24\x97\xf6\xe5\x9a\xf1\x30\xb1\x71\xf8\xe6\x94\xda\xcc\x1f\x06\x5a\x22\xe8\x5d\x35\xf8\x70\xce\x23\x5b\xc0\x23\x4e\xbf\x0d\x07\x93\xa3\x4e\xbe\xf1\x23\x67\x36\xcb\x42\x33\x6c\x55\xf8\x96\x7d\xa6\xb8\xa1\x30\xf8\x79\x6a\xba\x8b\x53\xbe\xe9\xff\x9f\xb0\x74\x9e\x66\xde\x89\x73\x6e\xd6\xe0\x92\x47\x16\x40\xb6\x6c\x96\xf1\x9d\x9c\x84\x5d\xb9\x04\x22\xad\xb5\xdd\x72\xbc\xe8\x79\x10\x5a\x8a\x20\x66\x07\x26\x9c\xf8\x66\xe6\x19\xb7\x6b\xb3\xbc\x48\x5d\xcb\x14\x05\x86\x7b\xaa\xf5\x87\xa1\x48\xa1\x3a\x7c\x56\xcd\xb5\x66\xb6\x8c\xd1\xa6\x29\x51\x73\x50\x23\x07\x4a\x3e\x8d\x67\xcb\x37\x28\x8d\x08\x08\xc9\x87\x34\xd9\x72\x98\x13\x75\x91\x47\xd2\x9f\x9a\x78\x24\xfd\x29\x85\xa0\x5a\x4a\xb0\x4f\x25\x54\xf4\xf0\xe4\x35\x2c\xa9\x28\x8b\x2a\xf0\xc4\xd3\xac\x81\x23\x3a\xf7\x1e\x81\x75\x56\x31\xcb\xf5\x85\xfb\x9f\x35\xf8\x15\x87\xf3\x86\x7b\xe4\xe3\xb0\xbb\x68\x63\xf1\x2f\x92\xf8\xaa\x59\xa0\x4f\x1b\xa6\x61\x8e\xb6\x5f\xb7\xcb\x61\x36\x9c\xd2\x93\x59\x40\x0a\x38\x25\x4d\x1f\x91\x5e\x09\xb6\xa3\x19\xe6\xe7\xdb\xcb\x09\x28\xbe\xdd\xaf\x2b\x9f\x22\xdf\x68\x40\x94\x49\x31\xae\x55\x3e\x0d\x66\x30\x50\x3b\xf2\xd2\xc4\x5b\x7c\xf3\x05\x72\xc8\x2c\x29\xab\x49\x92\xd6\xdd\x68\x92\x48\x2d\x38\x7a\x18\xd4\x5d\xd6\x34\xb5\xde\x9a\x0a\xaf\x97\x4d\xb4\x08\x5e\xee\xa3\x5a\x31\xf8\xe0\xdf\xa2\x18\xbc\x50\xda\x87\x84\x43\x2a\xc0\x17\xfe\x0b\x4e\x1b\xdf\x28\x6c\xa3\xe9\xf7\x4d\x98\xb6\xbc\x72\xe2\x35\x5d\x9a\xbc\xd6\xb4\x6e\x7d\xc3\x13\x66\xa2\x93\xdd\x72\x44\x89\xf5\x83\x76\xe8\x55\x1e\x88\x05\x70\x0e\x06\x09\xcf\x89\xaf\x5d\xfd\xff\x75\xb3\xa2\x46\x79\xd8\x7f\xc1\xb4\x5d\x0f\x2a\xc9\x9b\x0b\x79\x33\xaa\x9c\xb9\x33\x26\x12\x66\xe5\xbb\xe3\x0b\xa1\xf3\x22\x11\x52\x83\xd8\x04\xd7\x52\x5a\xbe\x3d\x7a\xbe\x52\x49\x69\xe2\x42\xcb\x4d\x1a\x87\x99\xa3\x05\x93\x59\x2c\x1d\x56\x6d\x0f\x72\x67\x0f\xb5\x87\x36\x1a\xb5\x2a\xe3\xc3\xbe\x01\x75\xb1\xb6\xce\x2f\xcf\xb7\x93\x32\x19\x38\xb0\xef\x01\x0b\x4c\x31\x91\x0d\xbd\x0a\x91\xdc\x3d\x2a\xe0\xe3\xa4\x3e\x57\x23\x3c\x78\xed\x35\xa6\x2e\xb7\x29\x86\xab\x1b\x55\xfe\x9b\x39\xcf\xa2\x30\x47\xc6\xc2\xf8\x3d\xec\x1e\x01\xf3\x79\x04\x49\x6e\x53\x8b\x0e\x4c\xcb\x43\x41\x3e\x0d\x7c\x24\xf5\x69\x13\x0f\xb0\xc9\xd3\x22\x9e\xaa\xe0\x45\x2a\x78\x7f\x57\xf7\x3d\x0d\x10\x92\xa4\x86\xfd\x90\xb1\xe8\xa8\xd2\xa3\x1f\x7f\x8a\x16\x84\xaf\x35\x86\x8e\xc0\x0f\x4f\x96\x91\x3d\x0a\xe3\xc4\x0a\xe5\xa4\x4d\xd4\x18\x14\x4a\x33\xa2\xfa\xa6\x40\xfd\x7f\xac\x70\x39\xb7\x14\xb5\xf7\x65\xca\xc7\xb1\x33\xdf\x23\xba\x0e\x17\xe8\x96\xdf\x4b\xd8\x81\x69\xcd\xb8\x68\xd9\x44\x02\xd3\xee\xa4\x49\x31\x18\xe6\xf4\x70\x14\x75\xc9\xac\x4b\xa3\xeb\x20\xff\x51\x92\xda\xd2\x71\xd1\x6b\x58\x5f\x9a\xe2\x0f\xd1\x9a\xf6\x09\x9e\x59\x4a\x42\x96\x00\x56\x72\x07\x8a\xf0\x6b\x7e\x9e\x69\x26\xde\xaf\x90\x7f\x35\xd6\x17\xba\x49\xba\x9d\xe5\x66\x23\x50\x2c\x37\xf5\x6e\xf5\xfe\xd9\xb6\x19\xd9\x34\xec\x9a\x58\x34\x04\xc1\xd9\x71\x75\xa2\x78\x34\xb7\xf4\x78\xea\x5f\x36\xd1\x5d\xc4\x36\xed\xc9\x1b\xa0\xf9\xc8\xd1\x17\xfc\xdf\x47\x95\x59\x34\xd5\x1d\x8e\x92\xd2\x8d\x5a\x83\x59\x6d\xc1\x8d\x94\x3f\x5a\x60\x23\x4f\x57\x38\xab\x52\x0b\x6e\x23\xa7\x57\xe7\x2c\xd4\xbd\x40\x65\x56\xeb\xaa\xcf\x66\xa3\xde\x33\x14\x65\xe0\x1d\x3f\xc5\x39\x75\x38\x78\xa7\x03\xf0\xec\xaa\x9f\x07\x39\xaf\x20\x9f\x7f\x1a\xa8\x52\x28\xb3\xb3\xc2\x07\xff\xff\xa4\xc4\x06\x73\xf6\xeb\x1c\x89\xe3\xf5\x9b\xc4\x1b\xa3\x87\x87\x5c\xab\xa5\x7c\x1a\xf4\x4d\xfe\xed\x4f\x03\x29\x0b\xdf\xfc\xad\x40\x69\x61\xec\xc4\xcc\x1b\x6a\xf3\x7b\x08\x00\x09\x43\xf9\x4e\x2d\x2b\x9d\x3d\xd4\xee\x14\x59\x18\xdb\x2c\x8b\xc2\x45\x34\x21\x11\xe3\x00\x59\x8e\xb3\x00\xd4\xa5\x70\x5a\xfa\xdd\x97\x86\x83\x90\xa9\x30\xd4\x34\xe3\x4b\xfc\xc9\x20\x69\x42\xd9\xf7\xfb\x13\x9f\xd9\x1c\xc7\x22\x48\x57\x61\x9b\x74\xcb\xec\xa1\x32\x7a\xdf\xe5\x83\x65\xd6\x8b\xc6\x2e\x66\x8c\xa5\xe8\xc0\x62\xd1\x50\xae\x42\x72\x88\xe5\xbc\x8a\x13\x8e\x66\xd5\xbf\x6a\xd2\x96\xe9\x42\xdb\x59\x66\x2d\xf0\xc4\xf8\x5a\x19\x18\x92\x35\x47\x5b\xc1\xe9\xa5\xb8\x89\xaa\xdf\xa8\x80\xc4\x62\xf0\x8d\x2d\x78\x1d\x90\x03\x22\x51\x0a\xe3\x83\x04\x1f\x75\x12\x6c\xf2\x6b\xec\xf1\xb8\x19\xa6\xa6\xff\x4f\xa3\xff\x25\x7b\x13\x61\x18\x58\xa6\xef\x81\x09\xc8\xb1\xd9\x96\x91\x17\x52\x8c\x0d\x6c\x35\xe9\xc9\x94\xcf\xdd\xf1\x21\x94\xf1\x23\xbf\x9b\x56\xe7\xbd\x81\x07\xc6\x12\x5d\xe8\xb3\xf1\x9b\x4d\xd4\x4c\xc5\xb7\x26\xaa\xd2\x7f\xd1\x51\xf5\xbe\xf0\xc5\x9f\x67\x06\x1f\xe1\x2c\x50\xa7\xfe\x5d\x05\x1c\xbc\x36\xf1\x2d\xb5\xf3\xca\xa1\xed\x98\xd9\xde\x5b\x21\x49\x82\x34\x1f\xbe\x51\x98\x45\x9b\x4d\x95\x21\x0b\x42\x05\x7e\x6f\xf8\x8c\xab\x4a\x29\xf1\xb4\x6a\xd1\x75\x6c\x6c\x21\x84\x43\x81\x88\x12\x33\x94\xc1\xb7\x4b\x81\x27\x4a\x0c\x7b\x61\x92\xad\xc4\xdd\x14\x64\x23\xe5\x12\xb9\x0a\x75\xb9\xfa\x52\x8e\x90\x9a\x4f\x9e\x16\x5d\x3f\x7c\x85\xf8\xfe\xc9\x55\x1f\xeb\x3f\x39\xa3\x06\x16\xcc\x88\x0e\x13\x26\x1b\x3f\xd1\x95\x14\x2d\xf5\x3d\x55\x13\xf3\x28\x63\x0f\x62\x0f\xc8\xf2\xd2\x18\xa3\x7a\x81\x52\x4a\xab\xae\xe8\x2e\x4f\xc4\xc7\x7a\x3d\x63\x97\x93\x04\x36\x9c\xf9\x3e\x61\xc3\x85\xfc\xd3\x7f\xc7\x5f\x39\xf8\x25\x8e\xc7\xd1\x23\x78\x5b\x0f\x40\xbd\xdd\x24\x6d\x11\x91\xfc\xd6\x6e\x7a\x12\xcc\xce\x3c\xf1\x45\xc2\x1d\xb4\x16\x68\xce\xed\x82\x36\xa4\x48\x79\xaa\x29\xc1\xcf\x53\xa9\x16\xb5\x80\xcf\xa0\xa3\x29\x7e\x71\xfb\x5a\xbc\xd8\x8e\x93\xb8\x67\x47\x09\x3f\x22\x3f\x0d\xc4\x74\xea\x02\xe8\x7d\x5e\xcd\x6c\x77\xc2\x41\x11\xe6\x2c\x36\xe5\xe8\x15\x27\x5e\x68\xf6\x82\x1a\xca\xce\x8a\x4e\x16\xf6\xc2\x63\x96\xf9\x44\x79\x34\x18\xf9\x96\xcc\x09\x3b\x62\xe5\xa2\xbb\x18\x89\x7f\x44\x4e\xfb\x3d\x35\x3d\xf3\xbd\x26\x58\x14\x86\x26\x88\xf1\x45\x6c\xbb\xe2\x1f\xdf\x6c\x9c\xc7\x36\x71\x9c\x14\x71\xd7\xf6\xa6\xb5\x2a\x35\x8e\x2d\x76\xda\x0f\x27\xba\xe0\x4e\x4b\x81\x6e\x54\xcb\x65\xa6\x5d\x93\x9b\x28\x19\x14\x08\xda\x70\xf4\xaf\x2b\xa1\xc0\xeb\x6a\xda\x3f\x0e\xbb\xf6\xd1\xc4\xe5\x4d\xa5\x84\x6e\x92\xda\xe9\x6a\xe3\x93\x1e\xb1\xf0\x46\x78\xcb\xbf\x47\x23\x53\x6e\x28\xe7\xb1\x98\xda\xf8\x18\xd6\x12\x5d\x8f\x93\x13\xa5\x00\x51\x67\x80\x99\x9f\x3f\xd8\xee\xa5\xc9\x98\x06\xf2\x99\x09\x31\x50\x64\x95\x3c\x34\xe0\x54\xff\x3d\xab\x76\xe0\xfb\x5b\x67\x15\x29\xb5\x89\x6d\x96\x0f\x6d\x1e\x12\x59\xd8\xec\x21\xcf\x28\xf9\xb2\x80\xf5\xd6\x5d\x89\xb5\x88\x97\x6c\x08\x6c\xb2\xc0\x7a\xca\xef\x21\xd4\xfa\xae\xa5\x97\x16\x4c\x1c\x03\x87\x78\x59\x0d\x56\x5c\xae\xe2\x05\x6d\x17\x24\x7f\xc0\xb1\x9d\x9a\xa8\x79\x82\x53\x9a\x17\x5f\x35\x12\xce\x6a\xe4\x46\x98\x15\x51\xd1\xf2\x73\x91\x8c\x42\xe5\x1b\x85\x88\x32\x9d\x8c\xd4\x23\x15\xa4\x91\x5b\x83\x30\x70\x08\xe5\x59\xf5\x26\x78\xca\xb7\xc6\x8a\x95\x9d\x74\x28\x1c\x99\x99\xb6\x67\xbe\xe8\xe9\x44\xdd\x7d\xd0\x73\xa2\xa1\xcb\x7c\xa0\xf4\xb9\xd8\x8d\x0e\x46\xe6\xc6\xf4\x2f\xe9\x40\xad\xdb\xb5\x19\x13\x86\xc2\xc4\xff\x5e\xe0\x71\xd5\x67\xab\x53\x9a\x3e\x85\x37\x61\x1a\x85\xb1\xdd\xe9\x97\x8b\x51\x41\x88\xb6\xee\x4d\x14\x81\xde\x69\x05\xaa\x3a\x4d\xfe\x88\xff\x7f\xe0\x3b\x83\x23\x49\xa9\x10\xf8\xfd\x1f\x2a\xa2\xf2\xb5\xc2\x4f\x2c\xda\x71\xbe\xd3\x33\xec\x5d\x52\x24\x7a\xef\x6a\x75\x1b\x9e\xfb\x73\xec\x88\x9a\xae\xa0\x81\xf3\xb2\x67\xc1\x1e\x50\x3e\x26\x24\x85\x6f\xd3\xa6\xe0\x6b\x05\x59\xb5\x71\x92\x8e\x48\x31\x70\xff\x7e\x0e\xaa\x4e\xd1\x77\xe5\x6b\x55\x03\xfa\xa5\x03\x87\x38\xc8\xc6\xd3\x7e\x5f\xc1\x33\xa6\x34\x92\xf4\xb1\xd5\xed\x7e\x59\xda\x17\x49\x6c\xc3\x9e\x69\xb5\xbe\x72\xd0\xb9\x73\xd5\x4e\x3b\xaf\x80\xc6\xbd\xa2\x34\xc2\x53\x9e\x3e\xe3\xb2\x9a\xe6\xc4\xf9\x94\x30\xaa\x01\xf7\x17\xdb\x25\x9b\xe6\x43\x1b\xd1\x20\x81\xeb\xcf\x02\x53\xc1\xd7\x1e\x90\x52\x74\xc2\xee\x94\x32\x60\x77\x14\x7e\x63\x0f\x05\xb2\xc0\xf5\xdd\x54\x10\xb6\xa4\x8c\x5e\x63\x86\xb0\x91\xb3\x12\xc6\x77\xb2\x64\xa2\x9a\xff\xb9\xfa\x77\x33\xd3\xe5\xf2\xc2\xcf\x5d\xd5\x90\xc7\x2b\x13\x9f\xa5\x9d\xa5\x5c\x12\x4e\x77\x5d\xb1\x4b\x67\xb9\xb5\xd1\xc8\x2c\x52\x77\xa9\x22\x32\x5e\x6e\x0f\x18\x3f\x34\x89\x65\x74\xb7\x61\x72\x39\x2d\x22\x74\x9e\xf0\x1c\x57\x03\x8f\xa5\x5b\xad\xa1\x25\x48\xde\x6c\x29\xb4\x50\x1d\x70\xd4\xb6\x1e\xb2\x2e\x5d\x73\x41\x91\x37\x54\x50\x06\xa9\x59\x09\xe3\xc1\x94\x77\xf0\xa7\xb1\x85\x61\xf0\x1f\x2a\x31\x99\x2d\x85\xc8\x5f\x4e\x12\x42\x54\x4f\xfb\x12\x1c\x3a\xb5\xae\x26\xee\x66\x2b\x3f\xc0\x3e\x42\x5c\x78\x57\xf1\x44\xa6\x36\x63\xf4\x2f\xe2\x5f\x48\xd1\xf2\x75\x25\x02\x8f\x6c\xbc\x4b\x11\xe3\x9f\x24\x43\x8e\xe4\xe0\x13\xd4\x38\x45\xa7\x85\xb6\x8a\x53\x70\xf1\x63\x72\x9f\x50\x7f\x8a\x5f\x5e\x4b\xe7\xcb\xd8\x34\xb2\xdd\x3c\x0d\xbb\x2d\xc5\xff\x87\x5e\x9b\x1f\xf0\x73\x55\xab\x25\x1b\xb3\x96\x82\x88\x44\x79\xc4\xe2\xb5\x8a\x96\xfe\xd8\xa6\x79\x98\x89\x47\x95\xb2\xac\xef\x99\x9c\x0f\x7c\xcc\x74\x5e\x2f\xd4\x9a\xb2\xf3\xd9\x30\x29\xca\xf4\xbd\xf5\xe5\x23\xfc\x94\xb9\x81\xc7\x37\x15\xf7\x13\x85\xe3\xe9\x32\xc9\x14\xf6\xd8\x96\x53\x57\xc1\x67\x09\xdb\xac\xc2\x55\x9e\x57\xde\x27\x4f\x93\x64\x8c\x09\x42\xd7\x22\x2a\xff\x52\xb8\x71\x94\xb2\x93\x79\xb3\xe5\xa7\x51\xae\x2a\xe8\xf2\xd5\x86\xf9\x82\xa3\xed\xcc\xa6\x4b\xd2\xdd\x16\x0a\x62\x32\xa3\x7c\xa3\xa4\x22\x3b\xa6\xb7\x4b\x69\x88\xa2\x46\xc9\xd7\x41\xeb\x85\x17\x1c\x5c\xdd\xb3\x44\xde\x9d\x78\x96\x48\xc6\x62\x0b\xbe\x5d\x4d\x7c\xa4\x49\x9c\x87\x4c\x4d\x2e\x63\x26\x6a\x25\xeb\xf8\xf7\xd9\x43\xed\x37\x0a\xdb\xb1\xdd\x29\x35\x6e\x82\xdf\xea\x24\x6b\x9c\x4a\xfc\x5f\xd6\x7e\xb7\xe3\xc7\xda\x3b\xa5\xc7\xd4\x4a\x83\xee\x38\xa4\x94\xfc\x97\xef\x8e\x2c\x46\x36\x8c\xa7\xbc\x2e\x1a\x02\x37\x04\x11\xd7\xf1\x95\x85\x70\x56\x21\xfe\xec\x08\x26\x55\x5a\x20\x2d\xa7\x17\x58\x3f\xfb\x47\x16\xda\x23\x93\x83\x70\xdf\xab\xcc\xdc\xc5\x71\xe2\x9b\x26\xff\xb5\x1c\x66\xbd\x64\xa4\x08\xa8\xb1\x1a\x7c\xad\x88\xe5\xf2\x61\x1a\xf6\xf3\x8c\xa2\x3a\xd1\x17\xa0\x87\x2f\x92\x13\x9e\x42\xf7\x66\xe0\xd5\x1f\xce\xd2\x83\x14\xd4\x8f\x6f\x5d\x99\x78\xa5\x93\xf4\x56\xa6\xf5\x71\x9f\x78\x4b\x89\x3a\x9a\x10\x05\x78\x0b\x7d\xd2\xe5\xb4\x43\xdb\x5d\x44\x91\x08\xde\x69\x4c\x50\x44\xc4\xcc\x10\xa0\x45\xbf\xec\xc1\xe4\xa7\x14\x7c\x62\x89\xc5\x39\x4d\x1a\x0a\x27\x0f\x5c\x02\xa7\x92\x7c\xd3\xd4\xa7\x8e\x12\xd1\x1a\x28\x7d\x90\xb0\xe6\x95\x1f\x24\xa3\xbb\xfa\xdc\x2e\x46\x96\x30\x8b\xa2\x00\x53\xfe\x04\x38\xfa\x07\xb4\x52\x5c\x58\xa8\x0d\x76\x1e\xde\xd7\xee\x84\x28\xcf\x3b\x6e\xf7\x79\x27\xe7\x79\x5e\x39\xa8\xed\xdc\xfc\x08\xf2\xd6\x74\x67\x7b\x2d\xf0\x2d\xa8\x5e\x98\x8d\x0b\xae\x1a\x1e\x75\xbb\x5d\xa9\x81\x6e\x36\x01\x2c\xfa\x26\xcb\x6d\x8c\x39\xa2\x83\x4e\x4b\xbc\xe5\x75\xc5\x55\xd4\xf2\xcf\xbe\xf2\x15\x45\x09\x7d\x53\xb5\xf0\xbf\xa9\xb8\x55\xd6\x34\x1e\xf6\x8c\xe6\xaa\x33\x69\x6a\x23\x4c\xc0\xa0\x1b\xfd\x31\x30\x67\x7c\xa3\x92\xc7\x22\xee\x27\x69\x5e\xc4\x06\xc2\xd7\xc2\x8f\x7b\x96\xbe\x18\x5f\xab\x41\xea\x72\xeb\x12\x33\xb9\xdf\x96\x5b\x81\x9f\x17\xd9\x50\x08\xf7\x13\x6a\x98\xb4\x67\x73\x9b\x86\x09\x4f\xf6\x7b\xa8\xcb\xa7\x13\x85\x5e\xad\x55\xea\xe6\xe6\xda\x66\x3c\x4e\x2d\xa3\xee\xe9\x75\xe8\xfb\xc3\x21\xf2\xb5\x2b\x56\x74\x4d\x64\xe3\x9e\xc1\x33\xe4\x1c\x8d\xfe\x50\xf2\xb5\x5a\x2d\x77\x7f\x7b\x64\xba\xc3\x30\xb6\x0c\x64\xaa\xa8\x65\x0a\x1a\xa3\xde\x4a\x38\xd8\x36\x9d\xa4\x88\x7b\x00\x32\xa2\x69\x01\x27\x8f\xd3\x79\x5e\x35\x33\x4e\xd0\x7e\x45\x42\xbb\xa6\x49\x77\xb4\x0a\x5c\x4e\x23\x2f\x4c\x2a\x27\x6c\x2a\x65\xc4\xe5\x52\xaa\x5f\xfa\x45\x86\x62\x4d\x9a\x2a\xd2\x0c\x66\x12\x8a\xc4\xc6\xa2\xbb\x64\xc9\x91\x89\x7b\xfd\xd0\x71\x2d\xbb\x4c\xc7\x6d\x2b\xcd\x81\x49\xca\x3d\x21\xef\x74\x25\x4c\x30\xef\xb8\x9d\x1c\x4a\xcb\x66\xe1\x20\x0e\xe3\xc1\xb4\x22\x2d\xf8\x58\x45\x87\xa8\xea\x0a\x3c\x90\x7e\x29\xbc\xfb\x3d\x85\xe7\x1c\x9a\x25\xfb\xd3\xf4\xfe\xf8\xda\x7f\x0f\x15\x5f\x14\xb2\x26\xf4\x30\xe1\xed\x7e\x1f\xf5\x3d\x3c\xa3\x3f\xa7\x35\x46\x9e\x76\x7b\xb2\xe3\x0b\xfc\xe2\x0f\x91\xff\x88\x56\x0c\xfd\x5c\x3c\x14\x1e\xbd\x47\xcb\xf7\x04\x01\x00\x45\x0f\x9e\x4e\xa7\xab\xbf\x95\x87\x06\x7f\x45\x2c\x0d\x2f\xb1\x4b\x66\x02\x06\x7a\xc9\xb7\x9f\x5d\x2d\xad\x10\x1c\xec\x6e\x32\xb6\xf8\xf1\x57\x08\xce\xe2\x34\x81\x9d\xb0\xee\xbd\x0a\xb0\x66\xa2\xa8\x90\xfe\xe7\xa4\x75\x64\xc1\x0d\x45\xd0\x9a\x3b\x65\xd2\xd9\x43\x15\x91\x60\x74\x09\x2e\x83\x9e\x4d\x9a\xbb\x88\xa5\xd0\xc0\xb9\xd3\x30\x68\xb9\x00\x10\x59\x9c\x73\x24\x7e\x94\xed\xe8\x8e\x99\x6d\x75\x0d\xaf\x75\x78\xcd\x23\x18\x88\x4e\x02\xd5\xb9\x07\x0f\xe8\x51\xa0\xa0\x5a\x61\xa3\xa8\xc7\xee\x2f\x22\xb8\x28\x03\xa7\x07\xd4\x04\x7b\x70\xa7\x01\x2b\x77\xb0\x9d\x19\x06\x06\xe3\x79\xdd\x08\x2a\x2d\x1e\xc5\x30\x8e\x8f\x63\x2d\x1f\xc5\x0c\x30\x35\xe3\xc7\x68\xe2\x94\x7b\x92\xa2\xdd\xac\x2c\xff\x66\xed\x04\x91\x72\x41\x38\x1a\x27\xa9\x90\x93\xf1\x08\x98\x62\x2d\xda\x54\x42\x1d\x63\x9a\xd1\xf1\x62\x4b\x8a\x05\x64\x0a\x04\xe2\x22\xbd\x44\x6f\xc6\xff\xb2\xfa\xb4\x3b\x2a\xa4\xf5\x65\x5b\x8a\x34\x16\x14\x8a\xc2\xf1\xed\x53\xca\x25\x93\xe5\x50\x28\x79\xc9\x7d\x11\xf5\xa5\x9a\x38\xe7\x32\x9b\x3b\x33\x2b\x61\xa2\x6e\x23\x2b\x15\xb1\x9e\xed\xdb\x38\x0b\x97\x90\xf5\x37\x21\x0a\x25\xdf\x34\x45\x9e\x54\x94\xe2\x1e\xaa\x18\x0a\x32\xab\xd2\xdf\xde\xfe\x70\xff\x61\xbb\xbf\x37\xd9\xdb\x51\x2c\x10\x27\x03\x4f\x8a\x7d\xb2\x89\x50\x3f\x0d\x7b\xe0\x5c\xc1\xf9\xbe\xad\x18\xda\x81\xa6\x17\xa8\xeb\x76\xcd\x51\x92\xf6\xb7\x79\x9a\x74\x87\x76\x04\x5a\x32\xef\xc7\x34\x01\xfc\xd9\x5a\x19\x72\x6e\xae\x9d\xa7\x26\xce\xc6\x91\x89\x91\x37\xa2\x89\xbb\xa5\x05\x6e\x36\x15\xce\xa5\x35\xd3\xe4\x19\x86\x26\xe4\x82\xe9\x82\x2f\xc6\x7b\x12\xdc\x3a\xfa\xe6\xb5\xd7\xda\x7d\x13\x77\x43\x52\x9d\x75\x0a\x00\xe0\x01\xe0\x6b\x05\x9b\x18\x90\xfb\xdd\xa5\x90\xe9\xd4\x38\x13\x35\x98\x72\x5d\x75\x43\x5d\xd0\xeb\xbe\x01\xc3\x14\x3d\x7c\xa3\x12\xd7\x5e\x32\x0a\xe3\x90\xb1\x23\x1a\x79\xc5\xd7\x4d\xc2\x6e\xf9\xd0\xa6\xb6\xc3\x94\x57\x02\x68\xf7\x71\xf6\x46\x03\xe5\xde\x42\xbb\x5b\x64\xa2\x87\x72\xd4\xa5\xe3\x8a\x34\xeb\x4c\xed\x55\x87\x5e\x6d\x8f\x6d\xaf\x17\x51\xe0\xe1\xa8\xbf\x4e\x4d\x14\xb1\x06\x88\x1c\x65\xe0\x42\xa9\x2a\x5b\xed\x95\x84\x14\xcf\x77\xcc\x31\xbe\xa7\x1c\xa6\x07\x7b\xfb\x6c\x75\x18\xa6\x49\x36\x0c\x47\x46\xe7\x3a\x1c\xf1\xf1\xd4\x10\xbd\x25\x2a\xbe\xad\x1a\x5a\x70\xff\x7e\x82\xc7\xd8\x9c\xbe\x3d\xbc\x9e\x26\x53\xbd\xab\x0a\x9e\x97\x6a\x71\xec\xfc\x7c\x3b\x29\xf2\x69\x0f\xa8\x87\x0a\x33\xf2\x8a\x16\xc9\xe1\x0b\x12\xaf\xdc\x0a\x30\xe2\xeb\x75\x8c\xe0\x6c\xfb\xf0\xbe\x85\x3d\xaa\x5c\x03\x0a\x57\x98\xdb\x1f\xa9\x3a\xf9\xd7\x26\x7e\xd8\x75\x8d\x3c\x8f\xa4\x4d\x2a\xca\x5f\x0f\x3c\xc6\x1a\xde\x0d\xf5\xc9\x6f\xa2\xf5\xe8\xea\x18\xe0\xb8\x08\xe3\xc1\x6e\x72\x74\x78\xa7\x35\x35\x90\x0d\xbd\x11\x99\x9b\x29\x3f\x0d\xd9\x06\x66\x0c\x25\xbb\xa6\x23\xa4\xd4\x0d\xa4\x22\x76\xc6\xc9\xc7\xe6\x43\x13\xb7\x14\x03\xc0\x0e\xea\x4e\xf3\xb5\x6a\x53\xa5\x2b\x02\xc9\x82\x9b\xfe\x2c\xaa\x80\x7c\xb3\xea\x8f\x9a\xed\x0e\x13\x09\xf2\x31\x23\xc5\xdb\x94\x6f\x82\xa7\x9c\x43\x78\xe1\x17\xbe\x08\x63\x8e\xd8\xed\x6d\xc5\x8a\xf7\x76\x93\x89\x1e\x5a\x93\xba\xae\x1a\x4c\x2d\xa6\xea\xf8\x5a\x1d\xf8\x7e\x52\xa4\xf9\x90\xcc\x18\x5c\xde\xef\x05\x4a\x64\xff\xf7\x54\xac\xc6\x0c\x2c\x53\x0a\xac\x01\x11\x79\x24\x4e\x57\x15\x64\xe8\x53\x15\x7b\xa6\x26\xcc\xc8\xa4\xcc\x1e\xe2\x9e\x39\x28\xa4\x61\xce\xaf\x6a\x9a\x5b\xc2\xc4\x3e\x68\x55\xa7\xdd\x1c\x51\xed\x35\xad\x88\x4a\x4c\xa9\xbb\x7c\xd7\xef\x21\x9e\x20\xf7\x72\x82\x6a\x63\xc7\x0d\xc1\x51\xde\xfa\x00\xd1\x3d\xba\xdf\x8f\xcd\x38\xec\xaa\xcd\xbb\x43\x44\x2d\x8e\x6e\xc4\x31\xb3\x5f\xd6\xdd\xef\x3f\x54\x85\x8d\x65\x6b\x16\x63\x9b\x65\xd3\x7e\xb0\xfb\x3c\xec\x06\xb2\x60\x1e\x6c\xe2\x7f\x51\xcc\xb7\xb7\xb7\x77\xe9\x17\x66\x0f\xb5\xf7\xef\xa7\xae\x09\x4b\xcd\x92\xb5\x15\xd9\xd9\x26\x4f\x14\xdb\x22\x4d\xb2\x6e\x68\xe3\xae\x95\x4d\xa7\xa6\xce\x17\xe4\xa6\xc6\x1b\xba\xf0\xea\xc1\x72\x8f\xf4\xde\x28\x4c\xea\x0b\x11\x00\xcf\x62\xd4\x99\xaf\x67\xb6\x7b\xb1\xd9\x43\xed\x62\x6f\xb6\xb7\x63\xba\x8b\xd2\x49\x15\x1c\xa0\x67\x1b\x78\xa0\x65\x76\x2e\xab\x52\x42\x4c\x4c\xeb\x19\x9a\x70\x42\xf4\x44\x01\xdf\x9e\x19\xaf\x7f\x42\x90\x87\xd9\x07\x7b\x56\xfd\xde\x8b\x79\x43\x7b\xc3\x8a\x16\x0b\x5f\xd7\x8a\x00\xe5\x0f\x4c\xed\x1b\x85\xcd\x72\xa5\x72\x7c\x4f\xf9\xf9\x4b\x1a\x95\x79\xae\x01\xc2\x7f\xb0\x6d\xa3\x8c\x61\x60\x4a\xc1\xec\x92\x1a\x4e\xbb\xa4\xa8\x41\x63\x6b\x7b\x9f\xa5\x3d\x08\xc3\x01\x05\x0f\xb9\x09\x3c\x07\xe9\xdd\xc0\x77\xb9\xce\x91\x73\xc5\xa1\x44\x29\x93\x45\xe6\x2b\xa3\xf3\x4c\xcf\x89\x72\x28\x4b\x6e\x09\xa2\xa0\xe5\xd4\x1e\xc0\x2b\xeb\x44\xea\x17\xfc\x3f\xc0\xed\xb8\x69\x66\x37\xd5\xf3\x3d\x55\x12\xa6\x1a\xfa\x33\x5a\x4b\xc4\xf3\x19\xae\x05\xde\xdc\xfc\x2e\x70\xeb\xb0\xc5\xd7\x90\x00\x09\x57\x69\xf9\x1b\xf1\x8a\x1f\x06\x95\xc5\xa5\xf3\x20\x2c\x95\x7e\xbe\x85\x99\x92\xd1\x7d\xdf\xc4\x09\x93\x84\x94\x32\x23\x09\xf9\xcb\x45\xc2\x99\x64\xfd\x1c\x20\xc8\xcf\xd1\xaf\x17\xd9\x5d\xda\xc2\x52\xf9\xaf\x4b\x17\x1c\x6c\xf7\x92\xe5\xb8\xe5\x6b\x95\x98\xb6\x92\xde\xa6\xeb\x7b\xa4\x26\xc4\x36\x43\xea\xc2\xec\x06\x7c\xe3\x47\x49\xc7\x79\x38\x0a\x33\x54\xe3\xf4\x33\x96\x87\xff\xac\xd2\xc0\xb5\x69\x19\x59\xec\xf6\x0d\xe0\x77\xb0\x88\xf0\xb6\x37\x95\xec\xed\x3b\xaa\x04\x77\x87\x7e\x1d\xff\x8d\xe2\xe8\x86\x56\x39\xa2\xbd\x9d\x35\xb0\x87\xd4\x3d\x47\x26\x95\x92\x86\xf4\xe7\x14\xa3\xfc\xe9\xe0\xef\x3f\xe2\x75\x8a\xb9\xb6\xe5\x2b\x73\x6f\xe1\x79\x0a\x61\x9d\x2f\xbc\x8c\x92\x5e\xd8\x97\x79\x42\x05\x10\x41\xba\xc1\xd7\x8a\x18\x37\xa2\x19\x1f\x56\x5d\x76\xb1\x24\xda\x0a\xd2\x23\x50\x25\x71\x93\x86\xfd\xfe\x94\xdf\x89\xcc\x26\x26\xa5\x3f\xda\x0b\x82\x2d\xdc\x66\x4e\x8f\xcc\x1e\x6a\xcf\xcf\x3f\x5b\xae\x21\xca\x9e\x4c\x93\xeb\x70\xd2\xe5\x6b\x19\x4c\xa7\x19\x0e\x3f\xc4\xf9\x52\xbc\x66\x47\xd9\x77\x7f\x1b\x5b\x0c\x90\x49\xf8\x2d\x6c\xdd\x53\xd8\xad\xb0\x31\xdf\x0a\x7c\x7b\x0e\x4a\xc7\xae\xb1\xbe\xe0\x48\xce\xce\xa0\x84\x29\x91\x20\xed\x7c\xbc\xef\x0d\x0c\x40\xe2\xe0\x6f\xa9\xd1\xe7\xd3\xb4\xbd\x04\xaa\xb1\x7d\x7f\xef\xdf\xdf\xb6\x69\x9a\xa4\xd3\x4a\xe2\x01\x89\x3c\x92\x8c\xef\x4f\xb6\x5b\x41\x61\x58\xf3\x91\x40\x37\xb5\xbd\x30\x7f\xc2\xb7\x45\xc0\xb2\x82\x08\xe9\xd6\x44\xa1\xe1\x30\x1f\x2a\x65\x5e\x3f\x76\x75\x26\x50\xa9\x33\x13\xb6\xf0\x8d\x16\x79\x67\x81\x4a\x41\x58\xc1\xd4\x89\x41\xf3\x26\x69\x94\x0c\x0a\xe4\x57\x2c\x5b\x02\x60\x95\x68\x98\x28\xd9\xd7\x10\xf4\x7a\x92\xe9\xaa\xee\xd3\x46\x03\x11\xb9\x93\x65\x74\x11\x12\xa0\xaa\x5f\x55\xb0\xd5\xaf\xd6\xc3\xdb\xa3\xed\xc3\xfb\xe6\x1f\xa7\xba\x0e\x4f\x6c\xc0\xae\x62\x73\x7c\xaa\x22\xcb\xeb\x64\x63\x59\xf9\x8c\x48\x11\x99\xa9\x64\xa2\x34\x7d\x30\xb7\xc5\x2f\x56\x7a\x8b\xf7\xe9\x2c\x48\x7e\xf3\x19\x05\xa7\xcf\x56\x76\x96\x56\xc0\xb5\x32\x14\x72\xc7\xd3\xbd\x9e\x51\xf3\xa1\x57\x69\x5a\x18\x84\x18\x1f\x57\x5b\x55\x79\xa5\x38\xc0\x56\x95\x6f\x56\x3f\xa7\x25\xf8\x6d\x96\x8d\x6c\x9c\x13\x7a\x90\x59\x9f\xd0\xe4\x11\x1d\x74\x5a\x6d\x74\xe0\x4e\xf2\xb3\xe4\x3b\xb5\x33\xfe\x08\xdb\x9a\x5f\xa3\xf8\xcb\xc2\xb8\x1f\x15\x65\xfc\x32\xed\x45\xd8\xcf\xe3\x41\x83\xab\xe0\x84\x92\xb7\x3f\xa1\xd8\x20\xce\xd7\xf2\xc5\xb9\xb9\x76\x37\x0d\x47\x19\xa7\x98\xa2\x95\xed\xab\xba\x8f\xd5\xc8\x9c\x0e\x2c\x20\xc5\xd4\xc7\x06\x0e\x1e\x8e\xe4\x21\xcd\x7f\x21\x16\xfa\xa6\x22\xc4\x5b\x57\x48\x9f\x8e\xb5\xfd\x96\x4a\xd5\xb8\xba\x2b\x42\x55\xbe\xaa\x63\xe2\x9f\x54\x23\xc2\x77\xa9\x7d\xc5\x34\xc7\x95\x21\xf5\xc7\x56\xc9\x38\x28\xf0\xb1\xf0\x82\xfc\x08\x3b\x8e\xb9\x7c\x69\x31\x64\xd3\xe8\x02\x0e\x7d\x69\xfc\xc3\xf4\x4c\x35\x74\x28\xdd\x35\x42\x84\x8f\xb5\x39\xdc\x3d\xa3\xa6\x7e\x00\x2a\x80\x53\x6f\x51\xed\x11\xdb\xe9\x39\x5a\x4a\x26\xfb\x0f\xe8\x79\xba\x41\x76\x27\x21\x74\x9d\xb6\xb5\xa8\xc0\xd2\x69\x41\xe0\xc1\x55\x3c\xa1\xbd\x2b\x77\x26\x76\xc3\x13\x80\xb5\xe1\x7d\x4f\x34\x09\x89\x11\xb9\x4b\xa5\x7e\xae\xd9\x74\xc4\x25\xa7\x76\x6c\x3d\xbc\xcf\xcd\x9e\xbb\x79\x43\x56\x17\xc5\x52\x7c\xb7\xf6\x39\x87\x5e\x6d\xf7\x93\x74\x90\xb4\x54\xd7\x4c\x8d\x64\x5d\x98\x3c\x57\x35\x08\xaf\xcc\xb6\x5f\x24\x60\x0c\x7c\xc8\x6d\xfa\xdd\xc8\x69\x58\xd4\x44\x0e\x88\x6f\xd5\xde\xa3\xad\xc5\xe2\xb7\xdb\x1d\x56\x19\xa2\xbc\x32\x4b\x1f\x8f\x58\xe7\x21\x99\x5f\xbe\xd6\x34\x82\x66\x1c\xe6\x26\x7a\x12\x7b\x06\x5f\xef\xab\x0a\xcd\x8f\x81\x7b\x7e\xe4\x81\xa6\x73\xd0\x78\xcf\xaf\x06\x0a\x72\x89\x08\x0f\xbd\xc7\x6b\xf0\xb1\x08\xc5\xef\xe0\xdc\x0a\x1d\x44\xf9\xf5\xf1\x8a\xfb\x38\xf7\xf8\x76\x7f\xde\xc8\xf5\x3b\x36\x59\x3e\xdd\x7a\x79\x9e\xb2\x3d\x20\x86\xc0\x5f\x06\x2b\x79\x43\xcb\x41\x29\x6b\x1e\xc6\x2f\xa8\x06\xff\x15\xd5\xe0\xbf\xa2\x4e\x5d\xd1\x4f\x00\x84\x11\x4d\x30\x15\xe3\xde\x51\xda\x94\x67\x5d\x17\x32\x4c\x4d\x4c\xaf\x90\x39\x03\xff\x55\x4e\x6b\x96\xfb\xad\x86\xf1\x81\x61\x38\x18\x2e\x3b\xe9\x11\x00\x0d\xdf\xc3\x6a\xf2\x8d\x43\xb5\x8d\x92\x34\xb3\x70\x5b\x2c\xc8\x4a\xe5\x7f\x11\x67\xf5\x29\xec\xeb\xc5\x68\xcc\x0c\xde\x8a\x7e\xe6\xa0\xd3\xfc\xf1\x93\x0a\x97\x94\x58\x68\x7d\x44\xe6\xc5\xb6\x89\xa2\x04\x2c\xf7\x52\x73\xa2\x9d\x2e\xc5\xa8\xa6\xc1\xf1\xc8\x2e\x4f\xf9\x1e\x12\x23\x5f\xf1\x09\x53\x33\x8a\xf1\xbe\x5e\xcb\x9e\x3d\xd4\xee\x98\xc8\xc4\x5d\x37\x3d\x84\x45\x7f\x4c\x71\x04\xa2\x36\x08\xcf\xff\xdd\xa6\xcf\x8f\xcc\x72\x8c\xf6\xa1\x16\x74\x12\xa5\x27\xe9\x08\x30\x92\x88\x21\x1c\x38\x42\x77\x02\x55\x22\x79\x47\xeb\xb9\x68\x89\xd1\xe3\x6a\x3f\xfd\x93\x9f\xfb\xc7\x53\x9e\xb0\x0b\x3a\xf2\x48\x4c\x58\xbe\x43\x00\xbf\x3e\x97\xcb\x6c\xbc\x77\x97\x97\xa3\xbe\x33\x51\x03\x67\x1f\x6a\xea\x15\x96\x89\x04\xc4\xe8\x7b\x13\xef\xa9\x4e\x4f\x14\xed\xed\x86\xab\x21\x85\x49\xc1\x45\x6e\xec\xfb\xc7\x67\x7c\x61\xfb\xb2\xde\x84\x3b\x56\xeb\x74\xbf\x0b\x6d\xfb\x66\x98\x81\x14\xd4\x51\xe3\x1c\xde\xe7\x3a\x91\xcf\x2a\x6a\x09\x96\xb4\x28\x8d\xb7\x3b\xe1\xee\xec\x6a\xc9\xda\x91\x89\x63\x9b\x4e\x79\xef\x7e\x8f\x0e\x8f\x10\xdc\x95\x2f\x92\x01\x8c\xcf\xf8\xf6\xc2\xa2\x40\x76\x61\x25\x76\x20\x7e\xe0\x9b\x9a\x5a\xe6\xdc\x5c\x3b\xb3\x39\xec\x32\x97\x56\xd5\x87\xfc\x35\x76\xab\x38\xd6\x86\x82\x43\xa7\xe8\xf7\xb9\xe7\x40\x1b\xce\x29\x27\x3a\x9a\xa8\x8f\x15\x6f\x51\x9e\x14\x69\x99\x99\xe9\x3e\x4b\xa5\xa5\xf1\xb4\xe2\x72\x28\x46\xd9\x4a\x4b\xd1\x2e\xbd\x3f\x51\x73\x1e\xef\xab\x38\x25\x7b\xa3\xb0\x66\x14\x66\x43\x4a\x5b\xb8\x85\xa6\x08\x16\xcf\xb8\xd9\xba\x71\xd1\x89\xc2\x2e\x3d\x28\xe7\x09\xd1\xee\xe6\xeb\xd2\xbe\x38\x98\x12\x0d\x81\xa5\x54\xc8\x24\x88\xbd\xcb\xda\x79\xfa\x5f\x68\xad\xb7\x1f\x43\xe2\xb8\xb3\x9a\x96\xcb\x65\xb5\x73\x73\x2e\xab\xd5\x50\xae\x34\xe9\x29\x81\x53\xd8\x55\xbe\xae\x2d\xfa\xa1\x57\xdb\x3d\x3b\x4e\xb2\x10\x84\x4e\x4e\x09\xb7\xa5\xf4\x48\xaf\xd3\xe6\x93\xca\x76\x13\xee\x68\x68\x4d\x4f\xbe\x9d\x68\x13\x79\xc0\x6b\x3d\x49\x9f\x9b\x6b\xf7\xad\x93\x3a\x16\xd2\x6f\x5f\x55\xbc\xfd\x48\x62\xca\x6e\xb9\x82\x53\x5a\x81\x7e\x63\x52\x29\x44\xfb\x93\x75\x3b\xd0\xc4\xc1\x61\x6f\x97\x8f\x15\x11\x6a\x22\xe3\xbe\x86\x9c\x4e\x66\xbf\xc9\x56\x09\xf5\x88\x17\x2f\xba\xa1\x6b\x1e\xae\x93\xf9\x46\x61\xe2\xbc\x18\x29\x35\x36\x1e\x0e\xe5\x9b\xe0\x0b\x8f\xf8\x19\x9d\x30\xc9\x6d\x77\x18\x27\x51\x32\xc0\xb2\x23\xee\x43\x3d\xed\x01\x4f\x80\xc1\x19\xae\xd7\x2c\xf3\x81\x7d\x6d\x93\xe7\x76\x34\x76\x03\x67\x8c\x68\x09\x7c\x33\xf9\x4b\x1a\x47\xf6\x0a\xa3\x89\xf0\x3c\x6e\x22\x20\xe4\x1b\xb7\x9d\x93\x22\x2f\xf7\xe6\x98\x1b\xba\xc8\x6a\x58\xce\x00\x26\xf5\x02\x2d\x02\xd3\x20\x55\x70\x43\xf9\x30\x89\x57\xd4\xa6\xe3\x64\x81\x6f\x1a\x38\x05\xe7\xdb\x61\x14\x15\x59\x98\xc4\x74\x7e\x14\x8b\x71\x4b\x89\x6f\x37\xb5\xc5\x72\x23\x46\x69\x96\xeb\x24\xac\xb7\xcd\x37\xdb\xf3\xb9\x03\xfb\x0e\x94\xaf\xdb\xa5\xb4\x66\xbe\x86\x18\x02\x67\xe7\x2c\xb9\x16\xd7\x7e\x78\x59\x2a\x21\xff\x8e\x9e\x3e\x16\x69\x17\xcc\x9e\x14\x8a\x64\x52\x79\x9c\x26\x99\xed\x16\xde\x5e\x01\xa3\xf6\xc7\x4a\xd1\xfa\x8f\x27\xc2\xba\x92\x87\x83\x61\x6e\x63\xf7\xb7\x4d\xbc\xf3\x4d\x84\xb2\xe3\x34\x79\xdd\x76\xdd\x93\x86\x19\x7c\x57\x85\x71\xef\xba\x71\xd3\x22\xce\x96\xcd\x60\x60\x7d\x47\x40\x58\xb3\x7c\xd6\xf9\x6e\xcd\xc0\xd0\xd0\x7e\x16\x66\xfe\x67\x00\x56\x02\xff\xc0\xd7\x4d\x4a\xca\xdd\xc4\x44\x38\xc1\x9a\xeb\x97\xaf\x15\x09\xf4\x88\x68\x81\xb3\x8c\x30\x93\x2c\x82\xad\xb8\xf1\x10\xc5\x8a\x38\xb6\x62\x4f\xaf\x33\x3c\x53\x7b\xfd\xc7\x80\x9d\x34\xcc\x58\xdb\x37\x98\xc7\xfd\xf0\x3e\x36\x32\x20\x1f\xe3\xeb\x86\x31\xdf\x83\xed\x6e\x52\xb8\x3e\xbe\x14\x55\x69\x5f\x4b\x4d\xd7\x71\xc8\x98\x74\x6c\xf3\x5d\x5a\x5e\xf7\x92\x2a\xde\x5d\x52\x1c\x56\xcf\x93\x61\x15\xda\x5a\xad\xa9\x55\x99\xb4\xd2\x62\x86\x91\x19\x71\x2f\x06\x7e\x97\x9b\x47\xc0\x5e\xae\xd1\x0f\x47\xf8\xf2\xa7\x0a\xdd\x98\x15\x31\x9f\x48\x18\xee\xb3\x8a\x7c\xf9\x6c\xed\x69\x1e\xd8\x47\x45\xd3\x9d\x9e\xe5\x7e\x4d\x15\x39\x8f\x93\x03\x90\xd4\xb2\x7c\x8a\x68\x37\xdc\x0b\xd4\xb4\xeb\x15\x3f\x73\x3e\xb4\xd4\x38\x5f\x6c\xa9\xe6\xcc\x9a\xea\x77\xaf\x29\xc2\x98\x6e\x32\x22\xf7\x83\xd9\x03\xe9\x98\xa8\xa5\x58\xd3\x18\xaa\xef\x23\xcb\x71\x84\x3e\x5e\xea\xf5\x8a\xab\xd8\x32\x87\x25\x9b\x31\xce\x6e\x02\xb5\x57\x58\xb1\x4c\x48\x08\x9c\xc2\xf1\x62\x18\x45\x2c\x7d\xcf\xca\x86\x81\x9a\xb0\xdf\x9c\xc8\x18\x7e\x66\x46\xd3\x7a\xfa\xc2\xc3\x46\x19\x5e\x0c\x5b\xbe\x73\xa6\xf5\xca\x2c\x6f\x95\x0b\x6a\xc8\x6c\x1c\xda\xae\xcd\x80\x50\xa9\x68\xab\x89\x07\xf1\xc9\xf7\x09\xcd\x78\x7c\x26\xd0\x81\xff\xf6\x3e\x88\x73\x90\x26\x9e\x56\xb6\x77\x83\x78\x88\xd1\xcd\x62\x0a\x4c\xad\x90\x28\xad\xd9\xcf\x2a\x4e\xf0\x22\xce\x77\x2a\x9e\x90\x75\x04\xb8\x08\xe1\xd0\xb1\x43\x01\xe0\xf1\x19\x55\xf3\x9c\x68\xfe\xff\x0a\x55\xbc\xe9\xe6\x4f\x2b\xf2\xf0\xa7\xb5\xf6\x20\x62\x74\x29\x81\xd1\x53\xc1\xa0\xf8\x15\x64\xa3\x42\x98\x42\x6b\xe5\xc6\xa3\x5c\xed\xf9\x0f\x68\xa9\x84\x70\x99\x3c\xb7\xb8\x1f\x9f\x53\x3d\x89\xaa\x03\x8a\x9b\xdc\x3c\x40\xbf\xea\x04\x17\xb1\x44\xa5\x4a\x59\xcc\x2d\x24\x02\xf0\x04\xc3\xa6\xa9\xeb\x61\x32\xb6\x19\xaa\x49\x8c\x29\xd3\xfa\x0e\xc8\x91\x04\xfa\xe2\xdd\x5b\x3d\x14\x7a\x79\x1e\xda\xdc\x2d\xc5\xad\xfc\x50\x65\x3b\x0f\x15\x66\xbb\x57\xc4\x7f\x5b\xef\xaf\x9e\x48\xbc\xd4\xee\x0e\x43\xdb\x57\x92\x24\x37\x94\x24\xc9\x0d\x95\xa3\x46\x36\x8b\x42\xcb\xef\x2e\xdd\x18\x7a\x77\x61\xdf\x70\x92\x6c\xd0\xb0\xc7\x16\x41\x51\x09\xd9\x09\x9e\xdc\xc5\x40\x13\xcf\x07\x7e\xe8\xf2\xbc\x1a\x63\xfd\x75\x95\x82\x2d\xd9\x74\xe5\xb3\x1e\xf8\x79\x53\x8b\x68\xb3\x94\x07\x97\xe8\xe8\x0d\x9c\x02\xcd\xec\x21\x2d\x63\x2b\x11\xe0\x6d\xcd\xa6\x0a\xae\x6d\x66\x3f\xa5\xc6\x0a\xbf\x7a\xa2\x92\xb9\x3f\x53\x34\xf7\xf7\xb0\x07\xd0\x30\xbe\x1e\xf8\x31\x9b\x55\xf4\x71\x90\xd3\xb4\x66\xfc\xe0\xd4\xd8\x9a\x4c\x54\x1f\x65\x7a\xac\x7c\x99\x8c\x95\x6d\x7f\x26\x3f\xd3\xee\x10\x29\x3b\x17\x18\x84\x56\x49\x11\x4f\xaa\x54\xc4\x41\x4a\x15\x99\x3d\x07\x6f\x78\xe6\x9b\x13\xbd\x1d\x36\xf1\x25\xf9\xef\xea\x9d\x52\x72\x9e\xc5\x9b\x05\x43\x54\x45\x3e\xb8\xfc\xea\xa2\x1e\xfc\x7c\x85\x80\xb8\x48\x49\x0e\x7d\x9a\xde\xd6\x8d\xfa\x97\x2b\xe4\x40\xe0\x1e\x10\x1e\xf8\x72\xf4\xbd\xc6\xc0\x2d\x59\x8e\x05\xef\xeb\xda\xee\x9a\xe8\xbb\x7c\x5f\xf4\xe0\xaf\x2b\x9c\x70\x18\x9b\x6e\x2e\x60\x22\x47\x83\xea\x1a\x24\x1b\xc1\x3f\x78\x84\x21\xcc\x8a\x4e\x66\xdf\x28\x6c\x9c\x43\xe2\x7a\xc1\xcb\x5a\xfb\x02\xda\xc4\x2b\x36\x6c\xd5\xc2\xec\x23\x0b\xed\x6e\x1a\xe6\x61\x37\x3c\x86\x81\x21\x21\x4c\x57\x45\xbf\x9b\xb5\x57\x95\xb1\xad\xe8\x9f\x6a\xe4\xe0\x29\xc5\x45\x70\x4a\x45\x47\x3d\x4b\x53\x1b\xd9\x4e\x3f\x55\x77\x6e\xe2\x99\xc0\xd7\x69\xa7\xf3\xf5\x44\x51\xa4\x4e\xfc\x41\xbe\xd3\x70\xf4\x17\xda\x51\x19\x70\xc2\x05\x23\xeb\xb9\x3a\xf1\x19\xd0\x55\xb5\xcd\x08\xc8\x99\x86\xf0\x49\xb3\x15\xa4\x9c\x6b\x38\xbf\x2c\xcf\xf9\xc1\x44\x51\xba\x5c\x9f\x28\x42\x4e\x05\x73\x22\xde\x93\x25\xcb\xba\x73\x8a\xb0\x5f\xaa\x4d\xba\x1b\x35\x4a\x3a\x61\xc4\x92\x84\xa8\xa9\x5c\xe6\x6d\xcd\x77\xc1\x53\x0a\x07\x84\x08\xce\x81\x7c\x1c\x2c\xe4\x62\xad\x5c\x76\x64\xa1\xfc\x2f\x6b\xd8\x73\x69\x83\xce\xa6\x94\x39\x74\x9f\x24\x1e\xd8\xe7\x7d\xbe\xcf\x27\x09\x1b\xe3\xfb\xd4\xf0\x41\xfd\xec\xbf\xc2\x21\x23\xc1\x64\xad\x2c\x84\x6f\x77\x75\xe6\x78\x1f\x81\x11\x8b\x01\xc2\x31\xa0\xab\xfe\x27\x70\x6c\xcc\xc7\x45\x6b\x2c\xca\xa9\x2d\x47\x79\x7b\x42\x73\x03\x7f\x40\x8b\x5f\x61\x23\xe6\x0f\xe1\x55\x72\x8e\xfe\x80\x10\xd0\x30\x37\x19\x72\x97\xb5\x49\xeb\x4b\xbf\xec\x74\xeb\x2b\xfa\x06\xfb\xf7\xf3\x86\xfb\x2d\x55\x55\x59\x0a\x93\x48\x88\x13\x9b\xab\x1f\x2e\x30\x0d\x7b\x3d\x9b\x66\xd3\x5e\x67\x9b\x1b\x9c\x0a\xcd\x7a\xb0\x52\xd9\x94\x8c\xbd\x69\x3c\x39\x89\x81\x4e\x5d\xa8\x70\xa1\x4a\xe3\x54\x3f\x2b\x1b\xdb\xa7\x69\xe5\x91\xff\xac\x23\x81\x67\x85\x45\x2c\xb6\x9a\x21\x3d\x2a\x34\xdf\xf4\x18\x35\x79\x89\x70\xb7\xb5\x14\x4b\xbf\x7a\x6e\x7f\x81\x1f\x03\x17\x77\x17\x3b\x02\x37\xd7\x2a\x3c\xb4\xe5\xe3\x41\x61\xef\xbb\x13\x45\x64\xf6\x5d\x44\x99\xfc\x5e\x0a\x61\xf4\x5b\x0a\x32\x30\x4a\xf2\x24\x4d\x22\x43\xe5\x6a\xfc\x9c\x1d\xa8\xca\xa2\xda\x0d\x34\xa0\x8c\x27\x28\xbd\xcb\xd1\x98\x8d\x8b\x03\x1f\x7a\x20\xa2\xe7\x48\x2e\x6c\x96\x4d\x79\x35\xfc\xd5\x89\xcf\x7e\xb6\xf0\xeb\xb0\x50\xd7\x14\x7a\x73\xc5\x9a\xb4\x93\x24\x8b\x53\x3e\xa1\xba\x89\x15\x76\x62\x26\x73\x73\xfc\x83\x4f\xd7\x9c\x4c\x69\x78\x96\x93\x34\x0d\xa5\x3d\x83\x92\xc9\xae\x55\xdf\x40\xe1\x64\x5a\x98\xb6\xea\x35\x78\x54\x9d\x25\xe1\x45\x0f\xec\x3c\x8e\x04\xdf\x68\x5a\x6d\xd3\x5b\x01\x55\x3b\x36\xd7\xbf\xa6\xe7\xc1\xd7\x0d\x6a\x59\x4c\xd7\x39\x8e\x4c\xd7\xaa\x4e\xd3\xf7\x03\xc5\x9b\xf9\x7d\x3d\xb7\x60\x4d\x5c\x40\xca\xf0\xa5\x46\x72\x33\x4f\xa0\xd1\x0d\x07\x26\xb5\x79\x6e\xf9\xaf\xa5\x17\xd3\x9a\xf7\x82\x1f\xdb\x0d\x35\x25\xdf\xbd\xa2\x9b\x4f\x29\x65\xd3\x29\x8a\xac\x51\x40\xc0\xcb\x51\x73\xb9\xa1\xac\xe6\x92\x89\x0a\x9b\xed\xf2\x0f\x14\x90\x5d\xec\xe3\xdf\x51\xb3\xa1\x3b\x56\xd5\x36\x46\xdd\x40\x84\x40\xbd\xc4\xc1\x49\x45\x60\xd8\x8d\x92\xcc\x46\x2b\x94\xe2\xe0\xe9\xed\x9c\x51\x9c\x9b\xeb\x15\xa1\x74\x7a\x2a\x70\x6a\x53\xab\xb2\xef\xc2\xb8\x08\xf3\x47\x0f\x00\x7a\xc9\xb4\x6c\x64\xf3\xb0\x2b\x75\x7f\xe4\x91\x67\x03\xa5\x0e\x85\x91\x20\xb4\xab\xff\x46\x4f\x3b\xdc\xaf\xea\x10\x98\xf1\xd8\x1a\x28\xea\xb9\xc9\x7f\xc5\x5b\xd0\xc0\xfc\xf5\x7a\x91\x41\xe4\x1a\x95\x24\xc4\x03\xe7\x95\x8c\xd5\xf9\xc6\x92\x40\xbf\xb0\x8e\xc5\x42\xb4\xc6\x95\xc4\xa2\x1e\x18\xcf\x73\x22\x79\xad\x30\x34\xc8\xd8\xdf\xa7\x7a\x6c\xe5\xcc\x44\xc1\x42\x10\x92\x90\xb9\xce\x3e\x0f\x16\x4f\xa1\x2e\xf4\xea\xc6\x9b\x6a\xa4\x11\x9d\x05\x6c\x90\xc7\x57\x5b\x5f\x3e\xe2\xb4\x69\xe9\x7b\x31\x70\x45\xf1\x3e\x51\xe1\x31\xec\x9a\x68\x97\x26\x06\xf0\x1d\xc8\xb3\x81\x3a\x9f\xeb\x20\x2b\x10\x85\x12\xea\x57\x8b\x44\x09\xfd\x38\xd1\xbb\xae\xe8\x5e\x76\xf6\x52\x66\xf4\xe0\x32\x7e\x99\x03\x84\xcd\xcd\x3d\xb8\xac\x60\x61\x9b\xce\xa2\x75\x6c\x9a\x87\x2c\x93\xcc\xb3\x34\x6a\x12\x80\xc7\x8c\x91\x63\xdf\x68\xa0\xfd\x38\xd8\x4e\x6d\x6e\xc2\x68\x9b\xda\xeb\x6d\x45\x64\x71\x5b\xa9\x2b\x47\x61\x6c\xb3\x3d\x15\x56\x1d\x47\x86\xcd\xcc\xf5\x6e\xec\xa2\x34\x7c\xce\x9f\x79\x80\xe7\xa6\x8a\x5d\x4f\x07\x75\x3d\x33\x49\x34\x3c\x8f\x72\x36\x36\x5d\xbb\x07\x3b\x1d\x4f\xee\xa1\xea\xf6\xdd\xd1\xb1\x3b\x40\xcd\x4e\x0b\xd9\x0d\x5a\xde\x54\x59\x0f\x4f\x84\x54\xa4\x1d\x10\x09\x79\xa0\xeb\xb2\x19\x48\x19\x04\xd6\x8a\x49\x4f\xf1\xb5\x77\xcd\x28\x25\x22\x45\xd7\xce\x31\x2f\x43\xde\xd4\x84\xbd\x1b\xb7\xaf\x81\x92\x88\x49\xaf\x88\x7b\x53\xaa\x5d\x8f\xd5\x62\xa1\x0f\xfa\xa5\xcc\xb5\x5a\x3b\x8d\x65\x0a\x1c\x66\x1d\x1b\x49\xaa\xaa\x08\x4a\x8e\xba\x02\x43\x7d\x18\xc4\x74\x92\x02\xdc\x70\x68\x74\x7f\x44\x91\x12\x5f\x37\xa8\x68\x1e\x6d\x1b\xd2\xb1\x2d\xcf\x11\x03\x16\x03\xdf\x23\x3c\xa7\x8a\x20\x29\x95\x0a\x69\xad\x9c\x6a\x94\xeb\xed\x6f\x56\xf6\xfa\xb2\x49\x77\xd3\x96\x73\xdd\x88\x03\xfb\x5c\x8b\xcb\xd7\x81\x77\xad\x2a\x74\xc7\xa6\x2a\x39\xf3\x98\x39\x8a\x6b\xcf\xcd\x78\x3a\xfe\xf3\xae\xde\x64\x46\x18\x44\xc4\x3b\xfd\x10\xcf\x9a\x6f\x5c\xd5\xab\x97\x86\x51\x44\x00\x5f\xdf\xe3\xba\xa0\x7b\x5c\x17\x00\x31\x12\xe3\xb4\x77\x4a\xc1\x82\xe0\x64\x84\x6f\x41\x15\xbd\xee\xd5\xaa\xc5\xb3\x87\xda\xf6\xcd\xee\xb0\xcc\xac\xd2\x29\x5d\x87\xa4\xb7\x40\xbe\xb0\xa5\x03\xe3\x87\x4a\xbc\x67\x64\x4d\x9c\x41\x27\x1f\xa3\x0f\x18\x29\x46\x20\x76\x62\xe2\x59\x06\x6f\x6b\x43\x3c\x51\xa4\xb8\x1f\x73\xd0\x8b\xa8\xf2\xcf\xf1\x03\x25\x4e\xa7\x4f\xe5\x7f\x01\xd1\x97\x8c\xf2\xfb\x36\x28\x85\xb7\x39\xac\x84\x14\xd9\x54\xc1\xad\x49\xaf\xc4\xf6\x0a\xe0\x1e\x59\x5f\xb3\x51\x1d\xd1\x7b\xe6\x72\x85\x89\x7f\x70\xc1\x87\x88\x2a\x4b\xf2\x35\xe3\x71\x98\x9b\x29\xc5\x13\x0a\xa4\x21\xca\x28\x1f\xd0\x02\xa0\xf8\x70\xae\x16\x65\xcd\xcf\xb7\x47\x26\xee\x79\x10\x0c\x13\xcb\xd2\x76\x16\x58\x01\x9d\x58\xbc\xf3\xb7\x6a\x71\x87\x64\xc9\xc7\xa6\xa6\x0e\xfe\xca\x2b\xce\xf5\xb6\xbe\x72\xb0\x32\x55\x02\x9b\xf6\xdb\xaa\x50\x34\x0a\x33\xd1\x84\x6f\x1a\x6d\xd3\xca\x34\x8b\x44\xc4\xf8\xb8\xff\xf1\x00\x9c\x23\xb2\xbd\x8f\x44\x08\xbf\xf0\x44\xe0\x73\x63\x26\xad\x97\xc7\x58\x1e\x08\x81\xc6\xd2\x43\xc3\x69\x3d\xad\x33\xac\x1f\x60\x87\xf0\x7b\x35\x72\x78\x58\x9b\x99\xe5\x96\xcf\x63\xf0\xad\xf9\x5a\x93\xfe\x17\xc9\x28\x69\xf9\xea\xee\x86\x2e\x82\x6d\xe8\xa7\xbc\x6c\xed\x38\x23\x83\xc7\xc4\xe4\x81\x1f\x60\x38\x09\xdf\x28\x41\x72\x83\x04\x0b\x85\x6f\xfc\xf0\x60\xe8\x77\xcd\xb4\xb6\xd3\x52\x09\x89\xa9\x4e\x7e\x4c\x9a\x3d\x0f\x46\x3b\x47\x2e\x7b\x40\x46\xd1\xee\x4f\xaa\xdd\x4b\x87\x68\x63\x62\x62\x07\xe4\x2b\x8f\x86\xf0\xd1\xd2\x27\x21\x3a\xe4\x11\x06\x0c\x22\x5c\x85\xef\x76\x48\xb1\x03\x82\x61\xbc\x1d\x68\x25\xb1\xf3\x70\x5c\xa8\xa8\x5e\x27\x07\x25\x0c\xee\xe4\x3b\x05\x85\xe5\x33\x5d\xd4\xd5\xe0\xb8\x40\xb0\x08\x13\xff\x49\xe0\x35\x9b\xef\xc3\xf6\xa3\x10\xf7\x20\x50\x09\xf4\xe3\xab\xf5\x26\xd9\x6c\x3b\xb6\x83\x48\x35\xc9\xe0\x69\x2e\xab\x49\xa4\xcb\xaa\x1b\x7a\x38\xdf\xdb\x52\x0d\x40\xae\x5d\x8b\xd3\x91\xf3\x39\x30\x51\x94\x30\x09\x2b\x82\x36\x94\x1b\x60\x6c\x40\x4d\x8d\x1a\xd4\x4d\x85\x56\x1a\x24\x4b\x7b\x5b\x6a\x3a\x90\x2b\x98\x7c\xd3\x80\x90\x59\x68\x27\x21\x40\x44\x0e\xd0\xef\x2b\xe9\x5b\x6a\xfe\xa4\x6b\x7a\x61\x14\x99\x2e\x0c\x7c\x85\x31\x5d\x46\x5e\xbc\x03\x8b\x8a\x63\x49\xdc\xd2\x72\x24\x0a\x36\xab\x62\xd4\x9f\xfb\xe2\x2f\x10\x64\x06\xa6\xff\xa1\x4a\xf4\x6f\xa9\x39\xb4\xe3\x0e\x5a\xd5\x4b\xed\x32\x0d\x7e\x49\x05\x8f\x3e\x9f\xa8\x22\x7e\xe3\x59\xcd\xa9\x09\x00\x1c\x93\xee\x6b\x9c\x2e\xd0\xb0\xe2\xca\x34\x07\x65\x45\x5b\xb3\x69\xc2\x9e\xaa\x4a\xe3\xd4\x02\x6f\x21\xf0\xc4\xf2\x45\x7c\xdd\xe0\xf3\x5f\x6a\xf7\x4d\x6e\x86\x53\x8a\x10\xf5\xbb\x13\x0f\xa2\xe5\x86\x0d\xa6\x23\x2f\x57\xfa\x16\x9d\x04\xdc\x2b\x4d\x82\xf7\x4d\x50\xe3\x41\x5a\xf4\x06\x61\x3c\x40\xb5\x51\x8a\x57\xe7\x26\x7e\x1e\xf6\x2e\x6d\x7c\x39\xb6\x3e\x32\x24\xd7\x4d\x25\x5e\x41\xa3\xd0\x31\x76\x41\xc4\x81\x7d\x1e\xb3\x52\x1e\x29\x19\x9b\xdb\x7e\x10\x5e\x9e\x6f\x8f\x4d\x6c\x46\x26\x0e\x0d\xea\xa5\xb0\x88\x17\xb0\xa5\xf8\x46\x71\xe7\xf4\xc3\xd4\x76\x4c\x14\x65\x48\x3e\xd1\xf1\x47\xdb\x17\x63\x1f\xeb\x95\xc1\x7f\xb7\x0b\x96\xf7\x86\xbc\xc9\xd9\xbc\xd0\xc9\x15\x53\xa3\x40\xc5\xbd\x25\x13\xe7\x22\x34\x32\x5f\xd1\x7a\x14\xd8\xa6\xea\x73\xa6\xc9\x72\xfc\x04\xad\x1d\xaa\x5d\x27\x75\x2d\xff\x3e\x1c\xba\x40\x3b\xca\x45\x11\x96\xa9\xf2\xc3\xb1\xda\x8c\x5d\x17\xde\x4d\xec\x2e\x54\x4f\x9e\xc6\xd4\x3d\x0c\xdd\xbf\xa1\xdf\x88\xd7\x3f\xd0\x32\x10\x4f\xd7\x20\x4d\xaf\xbd\xd6\x1e\x26\xf9\x54\xeb\x95\xd9\x4a\xfd\xa3\x42\x61\x0c\x3b\x7d\x4b\x79\x87\x3c\xc9\x32\x62\x96\x97\x69\x6e\x08\xa8\xf2\xb5\x57\xe3\x4e\xe2\x64\x9c\x40\xdb\xd1\x8d\xc7\x28\xfe\xc0\x7b\x38\xdf\x42\xb3\xea\xcf\xed\x20\x64\x61\x77\x27\xe1\x3d\x37\xe7\x26\xf2\x7c\x7e\xce\x21\x11\xaa\x3f\xf7\x82\x9f\x54\x5d\xd7\x28\x32\xb9\x4d\x4d\x14\x1e\x83\x1b\x3a\xca\x1d\x32\xee\x94\xc2\xfe\xc0\x61\x4b\x33\xa5\x21\x34\x1a\x85\x71\x98\xe5\x16\x88\x26\x2f\xde\xa8\xa6\xdf\x4e\xd6\x8a\x7d\x47\x66\x0f\xb5\xb3\x61\xb2\xac\x21\x96\xa7\x34\xb1\xe3\x29\x57\x21\x58\x1e\x26\x91\xcd\x92\x11\x14\x36\x1d\xd3\xeb\xdc\xdc\x83\x1b\x81\x1f\x24\xb9\xa8\x67\x10\x6d\xbf\xc8\x2c\x2b\x03\x70\xb1\x0f\x29\xac\xab\xfc\xe9\xa4\xc6\x13\x7d\x57\x4b\x8c\x45\xba\xf2\x0c\x76\x0f\x6a\x6a\x5b\x94\x85\xe1\x39\x30\x9f\x00\xf6\xe8\x63\x33\x14\xc6\x20\xf8\xff\x46\xe0\xc9\x15\x5a\x33\x7e\xe8\x68\x4d\xeb\xad\x32\xea\x96\x4d\x0e\xb0\x5f\xd8\x94\xd7\x28\x00\xc6\xf7\xfc\x44\xd3\xfb\x5f\x53\x1e\xf3\x13\xe2\x82\x00\xd6\x85\xf9\x94\x65\xbc\xae\xe5\x94\x8d\x37\x26\x4a\xc1\xe4\xb4\xc3\xab\xe4\x36\xcb\xc3\x51\x12\xcb\xd3\x12\x47\xed\x2b\x7d\xbf\xd9\x20\x97\x9f\x85\x83\x58\x1c\x2b\x1c\xde\x37\x26\x8a\x40\xf4\x1b\x4d\x54\x5f\x9d\xb4\xc8\x32\x2b\x10\x8d\x46\xde\x7c\xef\xd9\x5e\xb7\xc9\xd8\xa4\x3d\xb6\x9b\x4e\xa1\xcf\xa1\xba\xee\x2a\x8e\x96\x0b\x93\xff\x17\x00\x00\xff\xff\x0a\x89\xb1\x31\x06\xc9\x4b\x00") + +func modelAveragedperceptronWeightsGobBytes() ([]byte, error) { + return bindataRead( + _modelAveragedperceptronWeightsGob, + "model/AveragedPerceptron/weights.gob", + ) +} + +func modelAveragedperceptronWeightsGob() (*asset, error) { + bytes, err := modelAveragedperceptronWeightsGobBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "model/AveragedPerceptron/weights.gob", size: 4966662, mode: os.FileMode(420), modTime: time.Unix(1531158553, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _modelMaxentLabelsGob = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8d\x4d\x0a\x83\x30\x10\x85\x27\x82\x20\x83\xf5\x26\x73\x88\x8c\xa4\xe1\x81\x64\x06\xe3\xa6\x3d\x4a\x77\xf5\xe2\x29\x96\x12\xe8\xf6\xfd\x7c\xdf\xdc\xde\x43\x18\xda\x49\x61\x26\x7a\xb5\x93\x6e\x23\x24\x57\x67\x95\xcd\xd6\x78\xc0\xca\xa8\x92\x3d\x2d\x10\xdb\x73\x2c\x78\x7e\xc3\x09\xe2\x69\xaf\x56\x82\x31\xe4\x1e\x57\x6c\x38\x1e\x8c\xfe\x9a\xf4\x37\x60\xed\xf5\x45\xaa\xbe\xe8\x1f\xe9\xf2\x79\xfa\x04\x00\x00\xff\xff\x21\x34\x47\xfd\x88\x00\x00\x00") + +func modelMaxentLabelsGobBytes() ([]byte, error) { + return bindataRead( + _modelMaxentLabelsGob, + "model/Maxent/labels.gob", + ) +} + +func modelMaxentLabelsGob() (*asset, error) { + bytes, err := modelMaxentLabelsGobBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "model/Maxent/labels.gob", size: 136, mode: os.FileMode(420), modTime: time.Unix(1531158553, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _modelMaxentMappingGob = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\xbd\x7d\xbc\x15\x55\xbd\x3f\xce\x9e\xbd\xf3\x47\x08\x78\x38\x1c\x0e\x0f\x22\x22\x22\x1a\x87\x7d\x3a\xe7\xf0\x4c\x5c\x2e\x22\xf2\x14\xb2\xb9\x40\x84\x44\xe4\xda\x33\x6b\xef\x59\x67\xcf\xac\x35\xac\x99\xd9\x87\x4d\x66\x66\x86\x66\x46\x5c\xf2\x2a\x91\xf2\x25\x32\xf2\x4b\x66\x46\x5e\x33\x2f\x79\xcd\xcc\x8c\xb8\x46\x44\x66\x5c\x32\x32\x33\xaf\x99\x71\xcd\x8c\xeb\x65\x8f\xbf\xd7\xac\xb5\x66\xd6\x9a\xb5\xf9\xfe\xc7\xeb\x1c\xce\xde\xf3\xf0\x59\x9f\x87\xf7\xe7\xfd\x79\x7f\x86\xbf\xfb\xa9\x42\xce\x78\xf7\x96\x41\xb9\xa1\xb9\xc2\xa0\x41\xcd\xf9\x7f\xdf\xf6\xee\x2d\x83\x9a\xc6\xb2\x65\x9d\x1e\x85\x15\xb4\x75\x7a\xd1\x04\x41\x71\x79\x71\xc9\xd5\xd7\x2c\x5f\xb9\x7c\xdd\xf5\x4d\xe3\xe4\xe2\x0b\x07\x08\xb5\x8a\x03\x90\xc2\x62\x29\x7a\xcf\x9c\xf8\x7f\xd6\xd9\x8f\x30\x32\x61\x71\x79\x71\xf5\xb5\x6b\xd6\x96\x56\x35\x73\x63\xfb\xc6\xc4\x3f\xee\xc2\x70\x6b\xe0\x11\xbf\x08\xeb\xc0\x82\x56\x97\x15\x14\x4b\xcd\xfc\x0f\x0f\x8f\x88\x7f\xce\xfe\xce\x6f\x80\x1a\xa2\xf1\x4f\xdb\xe7\x0d\x4b\xbe\x77\xce\xac\x99\xc5\x52\xd3\x58\x71\xc7\x08\xf6\x7f\x4c\x82\x2b\xc8\x37\x41\x00\x8b\xa5\x66\x61\xce\x9e\x36\xf6\x53\xb8\x15\x9a\x61\x80\x08\x2e\x96\x9a\xb9\xdb\xda\xd2\x8b\xf6\xb7\x84\xea\x45\xe7\xc6\x2c\x1c\xe7\x87\x15\xf6\x2b\x64\x92\xe2\xa2\x62\x69\xcd\xd2\xab\x57\x2d\xdf\x78\xf5\xba\xe5\xa5\x55\xd1\xce\x8d\x23\xd2\x7b\x18\x00\x8e\xe3\x77\xc7\xd7\x72\xe1\xb9\x49\x99\xcb\xaf\xbb\xa8\x0b\x63\xed\x6f\x9b\xc6\xe4\x65\xc3\x92\x8f\x06\x5e\xfc\x44\x16\xbf\x38\x2a\xbd\x33\x07\xd5\x11\xae\x16\x17\x15\x97\xae\xbe\xb6\x99\xdf\xdb\x31\x2e\xfd\x0d\x86\x81\x0d\xa9\x03\xb0\xe5\x8b\x5f\xe7\x3e\x79\xe7\xfb\x32\x5f\x58\x26\x8e\x6f\xc3\x3a\xaa\x75\x61\xec\xeb\xdf\x5b\x28\x44\x53\x32\xff\xbb\x01\x70\x0d\xc2\xf3\xfe\xd7\x0d\x9b\xc7\xa6\xf7\x57\x76\x80\x59\x2b\x2e\x2f\xae\x2c\x5d\xc3\x6f\xfe\xe1\xc9\x23\xd3\x8b\x02\x41\x00\x4c\x1b\x5a\xc5\x52\xb4\x6c\xf2\xb8\xcc\xc7\x07\x14\x54\xa1\x85\xa0\xdf\x35\x2d\x7e\x38\x13\x8e\x29\x7f\xe5\x78\x36\x28\x43\xf6\x5a\x6f\x18\x34\x8c\x7f\x0d\x85\x20\xb0\xe3\x9f\xbc\x77\xdc\xf8\xf4\x7f\x06\x36\x6c\xe8\x57\x97\x5f\xfd\xc0\xd8\xcc\x37\xf5\x87\x38\x00\xdd\x5d\x18\x7b\xf1\x4b\x9d\xfb\x92\xf2\x45\xa1\x05\x4c\x14\x34\xe2\x8f\x7d\xe7\x09\xe5\xe7\x16\xf1\x82\xf8\x39\x97\x9a\xb9\x3f\x74\xb4\xa5\x3f\x0f\x31\x0a\xba\x8b\xa5\x68\xe5\x94\xce\xec\xfd\xbb\x80\xd6\xd8\xf5\x1a\x53\xa7\x66\x6d\xb4\x77\xee\xdc\xd9\xdd\x5d\x1e\x8d\xbf\x3b\x3f\xad\x73\x42\xe6\x97\x21\x46\x75\x48\x7d\xe0\x38\x8d\xae\x7a\x39\xb6\xb9\x02\xd9\xd1\x91\x7e\x5d\x15\x38\x0e\xa4\x08\xfa\xf1\x75\x4c\x7d\x49\xda\x94\x0b\x08\xf2\xdd\xf8\x13\xfb\x36\x5f\x96\xfe\x77\x93\xb8\x6e\x7c\x85\xad\x4f\xe4\x42\xed\x89\x54\x48\x88\xad\xf4\x89\xd4\xf6\xb5\xb3\xbf\x5f\x4a\x28\x2c\x2e\x4a\x4e\x5b\x7e\xf9\x86\x8b\xd8\x8f\xd7\x7a\xd0\x44\x15\x64\xc6\x5f\xf7\xc5\x71\xd9\x0f\x02\x9e\x07\x81\xe3\x77\x05\x24\xfe\xa0\xfa\xdb\x1d\xc9\x79\xa9\x01\x9a\x1e\xdc\xe8\x85\x07\x3a\x33\x7f\xe5\x39\xa0\xd1\xc5\x9e\x48\x61\xcc\xf0\x4e\x79\x6a\x43\x4a\x21\xb6\x20\x8d\xed\xa5\x99\x7b\x0b\x5f\x9c\xf9\x2b\x0a\x7d\x64\x41\x6c\x42\xfe\x6d\xf9\x2f\x3f\x37\x3a\xf3\x7b\x0c\xbc\x1a\xc2\xcc\x9a\x8c\xe9\x37\x4f\xf3\x88\xdf\x15\x3f\xb0\x00\x54\x8b\xab\x56\x75\x2d\xcf\x3c\x92\x16\x8b\xfe\x87\x3b\x3b\xca\x08\xf8\xc5\x75\x34\x84\xaa\x31\xbf\xe7\x6c\xd6\x6a\x2d\xe8\x39\xa4\x01\xad\x2e\x84\xe3\x93\xb9\x5d\x9e\xcc\x32\x45\x16\x70\x92\xa3\xf7\x85\x15\xa3\xd3\xb7\x15\x50\x80\x7d\x60\xc6\x5e\x85\xf9\x81\x2b\xdb\xc6\xea\x27\x01\x39\xe2\x6d\x44\x17\xd8\xdc\x11\xad\x85\x26\x85\x01\xaa\x33\xef\xb4\xfa\xf8\x45\x8a\x3f\xc1\x41\xb1\x14\x15\xa7\xb6\xa5\x3f\x82\xd8\xe2\x1e\x66\xcf\xcb\xd9\xab\x45\x78\x4b\x88\x68\x43\xbc\xe8\xfc\xe5\xed\xa9\xd3\xaa\x02\xdd\x69\x35\x73\xfd\x4e\xf6\x81\x06\x36\x74\x13\x1b\xf9\xe0\x9c\xac\x59\x3b\x80\x56\xb9\x6f\x28\x45\xdf\x9b\x36\x4a\x7b\x46\x7e\x8d\x1f\xea\xb5\x8e\x3c\x3b\x15\x07\x04\xf1\xff\xfe\x3f\x6d\xe3\xb3\x26\x14\x04\x14\x95\xc3\x20\x75\xe4\xd7\x79\xca\x09\x70\xc8\x00\xa4\xfc\x24\xe6\x5f\x38\x94\x35\x08\x0f\x04\x90\xc6\xf6\xde\xe5\xc6\x06\x63\x5c\x7e\x30\x7b\x1d\x26\xa0\x7e\x17\x7b\x2e\x7f\xbe\x2b\xfb\x9d\x1e\x85\x26\xb4\x20\x0e\xba\x06\xd8\x77\x1a\x3f\x9f\x70\x91\x34\x43\x12\xb2\xd0\xf1\xcc\x39\xcd\x6a\x89\xc7\x6f\xb8\x99\x3b\xf8\x34\x7f\x49\xa6\x83\xdc\xf8\xc5\xc6\x67\xc3\x98\x7d\xc3\xc8\xf4\x8d\xf8\x01\xc0\x16\xa0\xcc\x8e\x3f\xe2\x5c\x9a\xbd\xac\x24\xf0\x10\xf6\x66\xe2\x67\xf2\xea\xbd\xf2\xeb\x7b\xe7\x4e\x9f\x1d\x7f\x9c\x31\x79\x74\xfa\xb3\x01\x10\xfb\xe0\xc4\x28\x9b\xf9\x7d\xab\xdf\xa7\x1d\x8d\x3a\x71\x58\xd8\xea\x1a\xf0\x8a\xcb\xb5\xd3\xff\xe8\xed\xe9\x6b\xc7\x24\xd0\x7e\x1d\xbd\xd3\x2d\xe3\x26\xa9\x43\x1a\x3b\xb8\x66\x6e\xcc\xce\xec\xfb\xf6\x4d\x88\x21\x6d\xb0\xd7\x9a\xfb\xc6\x23\xd9\x27\xe3\x42\xdc\x55\x2f\xb3\x77\xf4\xdd\x17\xa5\xa5\x02\x97\x32\xb7\x30\xc9\xb8\x24\xfd\x99\x07\x01\x0b\xe9\xd9\x90\x77\xea\x0d\x69\x27\x65\x58\x03\x20\x36\xfa\x45\xed\x59\x67\x49\x6a\x0e\xb0\x89\x0b\x78\xcc\x8c\x4f\x99\x41\xb6\x0f\x4f\x3f\xb9\xa7\x7b\x46\xfc\x65\xef\x78\x97\x64\x0d\x15\x05\x81\x03\x99\x19\x8b\x3f\x7a\xe6\x8d\x34\x25\x88\xff\xae\x14\x5d\xf4\xf2\xc5\xe9\xa7\x58\xc4\x45\x18\x6d\x09\x95\xb4\xc3\xb8\x70\x57\xbb\x3c\x6a\x2e\x11\x87\x32\xf7\x8b\x0d\x1d\x32\x51\x21\x34\xb0\x21\xf0\xe3\x93\x79\xe1\x66\x79\x33\xbe\x83\x3c\x66\x31\x9b\x56\x67\x63\x3f\x70\x41\x97\x69\xb6\xc4\xfe\x67\xdf\xe1\x3e\xd7\x87\xbe\x8f\x08\x33\xb6\xfc\x9c\x13\xf2\x05\xc5\xfe\xdd\x8c\xa3\xa0\xf1\xdb\xdd\x97\x65\xbd\x1f\xc1\xc5\x7e\x38\xe0\xc7\x8e\x29\xf5\xe1\xb9\x1f\x4e\x1d\xa3\xfa\xc1\x79\x5d\xc9\x5d\x15\x4b\x51\xcf\x4a\x1e\x59\x1d\xe2\xb3\x03\x16\xbd\xa4\x04\x6e\x93\xe0\x3a\x32\x03\x76\x01\x9f\x7c\xb2\x5d\xde\x50\xec\xcc\xac\xf8\xc7\x85\xcb\x6f\xb8\x38\xfd\x31\x74\x20\xf3\x6f\x45\x0a\x1d\x10\x30\xff\x6d\x2c\xec\xe1\xf7\x52\x89\x03\x37\xa4\xec\x31\x7c\xef\xaa\x91\xec\x67\x57\x57\x29\xc1\x4a\x66\xf7\xf5\x7b\xb3\x47\x97\x22\xbf\xc6\x8f\xee\xe9\xce\xf4\x6d\xd1\x30\x3e\x2b\x13\x5e\x91\xe7\x22\x18\x20\x99\x73\xf1\x61\x2b\x0d\x40\x16\xb2\x94\x57\xf8\xa1\x6d\x1d\x99\xcf\x9f\xd9\xd3\xc3\x3e\xbe\x50\xe9\x90\x51\x35\xb0\x29\x7f\xb5\x86\x75\x82\x5f\xe6\xf5\x61\x0d\x11\xf9\x38\x8d\xf9\x8f\xca\x57\x1b\xdf\x27\x2d\x96\xa2\x61\x53\xb2\x5e\x69\xc0\x66\x89\x58\x1c\xf2\x27\xc7\xb7\xfc\xcf\x87\x46\x8a\xe8\x56\xa9\x20\x13\x41\x1c\x38\x71\xbe\x61\x4c\x39\xdc\xe2\x6d\xb1\xf0\x2f\x85\xc2\x54\xf9\x26\x3c\x4a\xea\xc8\x62\x29\xd4\xb7\x8f\xea\xc1\xa8\xc2\xe2\x21\x8f\x1c\x8b\x9e\x4c\x6f\x1e\x60\xa0\xdc\xfc\xc8\x0d\xd9\x2b\xb4\x09\xb1\x9c\xd0\xf5\x93\x33\x7b\xf6\x75\x69\xc8\x15\x44\xa1\x17\xfb\xdc\x62\x29\xfa\xe3\x9e\xac\xcd\x6e\x83\x28\x70\x10\xae\x42\xda\x35\x4f\xf9\xf8\xcd\xf5\xe1\xe2\x81\x0c\x34\xd8\x6b\x8e\xae\xdf\x9d\x3d\x83\x65\x8a\x02\xe4\xdb\xdc\xe0\x97\xae\x5d\xdd\x2c\xf4\xbd\x3a\x46\x26\x50\x64\xc0\x81\x54\x49\x3c\x76\x2e\x51\xa2\x5d\xe8\xc7\xce\xc0\x78\x76\x50\x9b\xc8\xc0\x00\x46\x2e\x09\x99\x35\xdd\xb7\x42\x3e\x26\x4a\x7c\xc8\x4f\x78\x34\xe3\xd6\xb1\x5a\x1c\x08\x63\x0b\xef\xea\xef\x8f\xef\x76\xc5\x9e\x71\x7a\x2c\xb0\x62\x5f\x1c\x5f\x5d\x6c\xec\x1d\xd9\x5f\x57\x80\x19\x10\xea\x8b\xf4\x2c\xff\x48\xf7\x18\x69\x7d\xa0\x06\xaa\x48\x31\x8f\x20\xe8\xce\x1e\x72\x2b\x76\x26\xf1\x91\x61\xae\xb9\x5e\x6e\xf1\xcd\x39\x74\x97\x0c\xe3\x2e\xc2\x7e\xad\x58\x8a\x7e\xf9\x92\x4c\x70\xcb\xf1\xa5\x43\xdf\x1f\x20\x2e\x10\x6e\x2f\xda\xbb\x39\x3d\x12\x75\x14\x7b\x9c\x71\x0b\xe5\x91\x00\xbe\x5d\x6e\x28\x0f\xf3\x67\x9e\x34\x70\x12\x06\x5e\xc8\x62\xec\xe2\x63\xf2\xa7\xbd\xbd\xb3\xbb\xe7\xb0\x90\x73\x60\x88\x62\x76\x10\x07\xa0\xca\xeb\xa0\xdf\x0d\xbf\x2a\x5b\x77\x6d\x35\x6d\x80\xab\xb0\xab\x5e\xb6\x5a\xa2\xcd\x97\x3a\xd3\xf2\xa5\x7b\x46\x5c\x71\xe5\x9f\x5d\xa2\xbd\x0f\x27\x3e\x05\x22\x69\xcc\x4f\x7d\x65\x44\xf2\xff\x09\x2b\x24\xb8\x93\x7e\x3b\xeb\x10\x6c\xe4\x76\x99\xb1\x5b\x29\xa0\x47\xb2\x2f\x28\x79\x42\x71\x58\x28\x45\x97\x1f\x96\x91\xb4\x86\x21\xcb\x9e\x36\x3d\x2f\xed\x3b\x9b\x52\xbf\xd6\x91\x56\x5a\x8e\xa5\xb8\xcd\xa5\x0b\xa4\xcb\x45\x71\x52\x1d\x97\x61\x2f\xbc\x90\x3d\x46\xa4\x52\x81\xd8\x87\xa9\x69\x5c\x38\x7e\x94\xb4\x69\xe4\x01\x1a\x20\x1f\xb0\xe7\xf7\xd3\xdb\xb3\x7f\xe9\xdb\xa0\x06\x2d\x32\x80\x59\x16\xd9\x2c\x8c\x98\x2f\x93\xc5\x7e\xe0\x2b\x9e\x31\xfa\xf3\xf0\x91\x22\x87\x0c\x03\xbb\x12\x3a\xf1\x9d\xc6\xaf\xea\xbd\xcf\xe9\x99\x5e\x00\x29\xf4\x03\x5e\x4d\x19\x95\x03\x63\xf4\x54\x08\x42\xca\x93\xd6\xdf\x0d\x95\xef\xbe\xe2\xf0\x23\xdb\x34\x96\xac\x1a\x2e\xcb\x1c\x8f\xe5\x00\x63\xe7\x6b\x97\x4d\x5c\x18\x20\x17\xfa\xfc\xb2\x0d\x5a\x9f\x98\x4d\x03\x90\x13\x10\x2c\x42\xad\x78\x94\x85\x3b\x6e\x97\x2e\x13\xa3\x6a\xec\x58\x9a\xc6\xbf\xb6\x67\xaf\xde\xf7\x10\x06\xa6\x9d\x24\x9b\xb4\x90\xfd\xe2\x32\x20\x5d\xd3\x94\x73\x76\x67\x9f\x0c\xc8\xf1\x8d\x63\x9f\x05\xe4\x19\xb7\xcb\x04\xcc\x82\x0e\x2b\xad\xe2\x9f\x6f\x1e\x3c\x32\xf3\x71\xd3\x67\xc7\x0f\x29\x5a\x75\x41\x7a\x8c\x10\xee\x8d\xff\xe3\x1f\x37\xb6\x2b\x89\x8a\x65\x39\xec\x6a\x73\xdb\xeb\x17\x6b\xc7\xba\x0e\xb0\x09\xad\xc4\x7f\xae\x7c\x34\x35\xa3\x0a\x52\xca\x9e\xb3\xf5\x11\xe2\x12\x2b\xc8\x89\x9d\x40\x6c\x45\xbf\x7b\x4e\x26\x1b\xbe\x07\x30\xf2\xed\xa2\x03\x70\x35\x04\xd5\xf8\x26\xf2\x33\xc7\x5f\xa4\xde\x40\xa3\x58\x8a\x9e\x28\x8c\x54\x12\x0d\xec\x8b\xfb\x35\x9c\x49\xd2\x7c\xb1\xf4\x43\xd1\x99\xca\x44\x19\xaf\xa1\x19\xd2\xd6\x92\x30\x9a\xf2\xe8\x45\x4a\x24\xb3\x58\x05\x3c\x78\x16\xb7\xb5\xf5\x08\x38\x6a\xfc\x70\x07\xa7\x81\x05\x83\x7e\xe5\x17\xdf\x19\x24\x2f\x2c\x4e\xa9\x11\x36\x63\x77\xf4\xde\x73\xe3\xb4\xec\xb4\x1f\x9a\x69\x7e\x9f\xbb\xef\x55\x25\x4f\xf6\x20\xb4\x10\x37\x8a\x1f\x2c\x91\x16\x88\xcb\x80\x59\xe0\xb9\xf6\x24\x2a\xf9\x41\xb1\x4a\x81\xc5\x0e\x74\x70\x86\x39\x87\xe2\x2a\x12\xb0\x8a\x55\xc2\x32\x1b\xac\x6c\xae\xcd\xc1\x09\x5e\x9d\x8b\xe0\x9a\x3f\x7b\x4a\xba\x03\x8f\xd0\xb8\xfa\x62\x79\x4e\x0e\x3f\xce\x63\xcc\xd5\xdd\xca\x3d\xde\x8f\xe5\xd5\x06\xc0\x81\x98\x67\x37\xb9\x9f\xdd\x2b\x53\x8d\xb0\xa2\xfc\xc1\x3f\x9d\x93\xbe\x03\xd0\x32\x2f\x26\x8c\x4f\xe1\x49\x32\xcb\xf6\x20\x8f\x08\xad\xc0\xca\x67\x5f\x97\x16\x58\x86\xd8\xe2\x89\xd9\xab\xb7\x64\x4f\x73\x25\x0c\x42\x0a\xc5\x29\x1c\xe5\xb5\xa9\xd1\x22\xf6\x6c\xd1\xd4\x87\xd4\x7a\x62\xee\xec\x62\x29\x2a\x15\xc6\x6a\x2f\x45\xa0\x0e\xf1\xdd\xe4\x97\xae\xee\x54\x4e\x14\xdc\xea\x41\xec\x8b\x34\xf7\x9d\x0b\x46\x6b\xc9\xbe\x85\x00\x8b\xa5\x11\xda\x9f\x75\x00\x00\x5b\x14\x0e\x64\x1c\x40\x74\xe5\x70\x09\xfc\x91\x0c\x86\x96\x87\x47\xe5\x97\x5e\xa9\x16\x38\xd1\xee\x97\x87\xb2\x9f\x7e\x30\xa4\x3c\xd7\x5c\x78\x36\x35\x75\xe2\x07\x4a\xe2\xb8\xe9\x84\x7a\xe6\x81\xe5\x20\xcc\xae\xfa\xc8\xaa\x71\x4a\x9c\xa6\x0e\xc0\xa4\xae\x78\xa5\x41\x9e\x2c\x1c\xcc\x32\x0b\xfc\xbb\xf6\x49\xf3\x9b\xce\x2b\xb7\x33\x87\xb2\x86\x0c\x7d\x1f\xe2\x00\x01\x87\x57\xb7\x5b\x1f\x92\x79\x8a\x1d\xc6\xc7\x37\xda\x7e\x7c\x94\x48\x25\x21\x16\x25\x3c\xa0\x2c\xdd\xdb\x76\x3b\x37\x2e\x80\x31\x09\xb1\xc9\x4c\x3e\xdf\x3f\xa1\x53\x39\x40\xac\x92\x8c\xdf\x4a\xb1\x14\x1d\x9f\xd3\x99\xdc\x70\xad\x0e\x14\x1b\x8f\xf6\xe2\xd1\x9a\x31\x40\x47\x94\x91\x8f\xbf\x30\x41\x39\xd4\xb5\xd8\xfd\xe9\x35\xfe\xe3\x46\x36\x35\x83\x0e\x72\x11\xe6\xf9\x09\xb3\xa7\xdc\x9b\x0b\x24\xa6\x01\xaa\x00\xe1\x6e\x11\x93\xf3\x93\xee\xe4\xb7\xe0\x9b\x36\xb4\x42\x87\xa5\xa4\xf7\x0d\x92\xd6\x0e\x43\x4a\x18\x60\x09\x17\x70\xc7\x87\x61\xd5\x41\x55\x54\x76\x98\x67\xfb\xfa\x21\x9e\x27\x96\x29\x19\xf0\xf9\x91\x3f\x70\xea\x42\x91\x02\xb2\xb4\xc4\x58\x5a\xce\x3e\x70\x40\x29\xaa\x4b\x7c\x69\xfe\x63\x63\xb5\xfc\x37\x00\x48\x26\xcd\x8b\x65\x5c\x73\x20\xae\x32\xb4\xd0\x78\x75\xf1\xe8\x4c\xac\x70\x1c\x54\x8d\x93\xe6\x62\x29\xfa\xc7\x67\x86\x26\xa6\x39\x8d\xd5\x1a\x53\x1f\xcd\x3e\x5a\x1f\xc5\xe7\x9d\xbf\xec\x6f\xbe\xae\xc2\x83\x70\x4b\xc8\x81\x63\xe3\xe7\x0f\x4a\x03\xa4\xd0\x84\xa8\xce\x73\x8b\xdf\xae\x91\xc0\xd6\x00\xa1\x35\x17\x60\xdf\x46\x0c\xf3\xba\x71\x9f\x92\x92\x55\x78\x4a\x1c\x7d\xe4\x44\xf6\xc5\x04\x71\x05\x88\x05\xfa\x1a\x67\x7d\x9f\x78\x69\x98\xa8\xc0\x08\x75\xbb\x8b\xa5\xe8\x47\x8f\x65\x0e\x3e\xab\xdb\xf3\x7f\x98\xa7\xa4\x82\xd8\x52\x0d\x67\xc5\x8b\x32\x3f\x71\x09\x0e\xaa\xc4\x85\xdc\x36\xbf\xf3\x54\x9a\xb2\xf5\x75\x4f\x8f\x7f\xf2\xf5\x4a\xd6\x8f\x0e\x00\x4a\x21\xb3\x90\xf4\xe8\xe5\xab\xdb\xb9\x73\x5e\x03\x7d\x3b\xac\x54\x1c\x81\x97\x76\x6c\xbd\x48\x3c\x8c\x32\x09\x45\xa9\x88\xee\xe4\xe7\xb9\xb7\xaf\x9b\x83\x1b\xf7\xec\xbb\x58\x4b\x5f\xea\x30\xbe\x31\x51\xca\x5c\x69\xb0\x72\xad\xb8\x14\x05\x71\x91\x25\xbf\xf3\x73\xc7\x27\xca\x7b\x80\x01\x25\x1e\x71\x50\x00\x70\xa6\xa1\x50\x99\x38\x56\xcf\xf0\x7d\x3f\x76\x98\x0c\xbc\x98\x3a\x86\x39\xad\xe2\x72\xd5\x18\xf4\x24\xb6\xde\x7f\x65\xf6\xfe\x09\x8d\x8f\x13\xbb\x3c\x1d\xbc\x58\xa7\x75\x25\x4c\x07\xf8\xb6\x80\xb5\x73\xbf\xd9\xa9\xe5\xbe\x36\x82\x95\x04\x79\x2d\x14\x8e\xa6\xc8\x8c\xdd\x1a\x0d\x8c\xcf\xde\x2d\xdf\x30\x05\x28\x8e\xfa\xd1\x9f\x1f\x6e\x17\x41\x9a\xb9\x85\xc4\x0f\x8e\x1c\xa3\x44\x1d\xc7\x25\x0c\x89\xe8\xde\x95\xc6\x28\x52\x41\x4a\x62\x42\xc7\x26\x5f\x6b\x92\x96\xfb\xf9\x5d\x20\x4d\xc8\x25\x18\x06\x4a\xe6\x75\xc3\xc2\x4b\xe5\x15\xb1\x37\xc6\x5c\x47\xc6\xad\x0f\x7e\x2e\x75\x5d\x0e\x03\x23\x52\x0b\x5c\xf3\x4e\xf6\x49\x0d\x40\x0a\xd3\x3a\x79\x55\xb7\xbc\xd9\x06\xf1\x7d\x14\x9b\xf3\x2b\x6f\x6b\x89\x62\x68\x59\x10\x3b\x0d\x01\x15\xa2\xa3\x23\xd2\x06\x8d\x4b\xc4\x41\x59\xfd\xb0\x74\xaa\x7e\x58\xf6\x03\xc0\x7c\x76\xb1\x14\x5d\xb6\x28\x9b\x08\xda\x90\x81\x00\xb9\x21\xdb\x26\x68\x2f\x89\x50\x48\xaa\x14\x78\x76\x83\x7b\xc5\xbc\x75\x57\xf6\x40\x38\x71\x2c\xa0\xc5\x1a\x8e\xb3\x78\x91\x58\x1c\xe9\xd3\xdc\x47\x6c\x08\xbc\x6a\x31\x76\x77\x5e\xae\x79\x36\xb7\x71\x9e\xe6\x4f\xee\xd9\x5b\xa4\xdb\xa8\xa0\x32\xa4\x45\xe2\x09\x7c\xf1\xdc\x2a\x09\xc3\xf4\x03\x1c\xb2\xc0\x12\x2d\x7d\x39\xdb\xb5\x89\xeb\x0e\x1c\x9b\xea\xbc\x96\x2e\x80\xb3\x5d\x3f\x17\xa4\xec\x40\xb7\x8b\x96\x59\x17\xe0\x56\xd9\xd3\x31\x09\x0e\x28\x89\xf3\x67\x04\x1c\x86\x93\x0c\x79\x59\xc6\x3a\x27\xb0\xe2\x9f\x19\x5b\xeb\x59\x18\x30\x20\x16\x68\xc4\x4f\x34\x1a\x78\x6e\x98\x8c\x6b\x95\xf8\xef\x3f\xb0\xe1\x32\xed\xd1\x53\x1a\xd7\xe4\xd9\x62\xa1\xfc\x8c\x8c\x3d\x01\x05\xf5\xf8\x80\xb2\x0c\xe8\x9a\x7d\x32\xa1\x71\x01\x8b\x27\xb9\x9d\x7b\x2e\x52\x42\x3f\x73\x3e\xc6\xe7\xf7\x5f\xac\xdf\xa2\x8d\xca\x28\x4e\x3e\x99\x7b\xfc\xde\xcb\x1a\xa6\xdb\xed\x76\x73\x5b\x32\x3e\xbe\x57\xe4\x9a\xc0\x37\x45\x44\x8c\xff\xe2\x8a\xb7\x04\x22\x17\xe7\x89\x98\xe7\x7e\xe3\xf7\xa6\x95\xc3\x14\x87\x05\xb2\x15\x0b\xb2\xe6\x41\xae\x2c\x53\x04\x71\xd7\x34\xc5\x77\x4d\x5e\x28\x23\x05\xf0\x3c\x18\x20\xde\x7a\xbc\xf0\xdc\x68\xed\x54\xc0\x1a\xbf\xa8\xe8\x87\xcb\x64\xb1\xe0\x39\x20\x40\x38\x74\x8b\x7e\xf2\x54\x9a\x05\xf3\xf5\x4e\xf5\x79\x61\x9f\xfd\x1f\xf6\x24\xbe\xe2\x65\x3f\xd5\xa2\xc4\x4b\xb2\xbd\x61\xf3\xa4\x25\xb9\x30\xb0\x09\xf3\xd2\xb9\x9b\x34\x64\xbe\x8e\x4c\xd2\xd5\xad\x9c\xfe\xdf\x6c\xe4\xe1\xba\x02\x9d\xf8\x38\xf5\x61\x05\xe8\x8c\xcb\xdd\xd8\x3d\x6d\xe8\x50\xfc\x90\x03\xab\xd0\x62\xf9\xcc\xb2\xbd\x1a\xea\xef\x79\xb1\x47\x03\x8e\x70\x85\xc6\x83\x7b\xb3\xb9\xa4\x03\x4c\x1b\x85\x3e\x50\x0b\xbf\xc2\x07\xb5\x96\x0f\x70\x08\xae\x8a\xb2\xa2\xfb\x06\x99\xfc\x10\xcc\xf2\x40\xdd\x9f\x7e\xcd\xd6\xda\x00\x10\xd2\xa2\x07\x30\x4b\xa0\xe2\x8b\xa8\x6a\x2d\x27\x9f\x65\x70\x69\x73\xce\xb8\xff\xa5\x4b\x34\x77\x54\xf6\x08\xc4\x00\x5a\xc9\x6d\x1c\x33\xb2\x40\x63\xdf\x6c\x0e\x34\xe6\xd6\xb7\xb5\x29\x09\xa9\x5f\x63\x1e\x63\xe2\xdd\x0a\xfa\x88\xbc\x80\x30\x83\x30\x9f\x90\xa7\x20\x4e\x59\xaa\x34\x81\x54\x2f\x7e\x38\x7b\xff\x65\x80\x6b\x5d\xf1\x3f\x4a\xcd\x42\xdf\xee\xac\x69\xe3\xb4\xe2\x31\xae\x5f\x98\x05\x53\xd8\x53\x63\xe7\xe1\xba\x3b\x25\xfc\x54\x83\xb8\xc1\xaa\x2e\xe7\xf6\xac\x9f\x88\x53\xc4\x20\xf1\xd3\xc6\x13\x8b\x74\x74\x0d\x63\x50\x46\xbc\xd3\x92\x3b\x77\xa0\x43\xa9\x3d\xbd\x00\xba\x65\x86\x25\x36\x8e\xf0\xe4\xef\x3a\xf6\x03\x76\x55\x93\x26\xa5\x51\xa8\xd2\x8a\x84\x8f\xdc\x3a\x56\xf7\x6b\xb5\xd8\x61\x30\x94\xae\xf0\xe1\x03\x59\x8f\xdd\xdb\x33\xad\xa7\xa7\x27\x36\x66\x48\xc5\xbb\x1c\x7b\x41\xd6\xe3\xfa\x41\xb7\xf0\x36\x59\x8f\xfb\xa5\x55\xd9\x2f\x72\x11\x83\xde\x79\xca\x69\x7c\xff\xb5\x8b\x44\x42\x19\x3b\x23\x96\xf2\x7e\x66\x86\xcc\xa3\xfa\x89\xca\x4f\x98\xb4\x7d\x5c\x92\x20\x13\xe2\xb4\xf6\x18\x77\xc8\xb7\x6d\x13\x4c\x28\xf3\xac\xee\x3a\x19\xae\x6a\x6a\x98\x6e\xe6\x9e\x56\xbc\x5e\xf7\xf4\xb9\xb3\xe2\x37\xf6\xfc\x33\x5a\x02\x8f\xab\x0e\xc0\x56\x97\x6b\x25\xad\xc7\x9b\x6e\x1c\x2b\x5f\x01\x71\x5d\x5e\x06\x24\x5e\x68\xe5\x7e\x9e\x46\x56\x63\x77\xc6\x71\xfc\x75\xbc\xec\x5f\x8d\x88\xa3\x7c\x7b\xe1\x23\x83\x94\x80\x60\x83\xb8\x3c\x81\x14\xf9\x2c\x1a\x45\x0b\x76\x4e\xd4\xca\xc9\x38\xcb\x82\x38\x00\x01\xaa\x43\xfe\x0a\x72\x8b\xd7\x74\x6a\xe6\xea\xa3\x38\x30\x95\x9a\xf9\xeb\x97\x74\x2a\x08\x9b\x07\x81\x69\xbb\x10\x33\x47\xfc\x83\xe3\x4a\xfe\x61\xd6\x80\x82\x66\x1a\x9f\x08\xb4\xb6\x54\xd0\x70\x60\x57\xbd\xbc\x2d\xfe\xcc\x25\x0b\x3a\xd4\x96\x28\x19\x48\x3e\xf1\x86\x6d\xa2\xa7\x2a\xba\x72\xcc\xfc\x56\x0d\x9e\xdc\x12\x38\x1b\xbc\x7b\xa2\xb5\xcf\x6e\xce\x86\x2e\x13\xb9\x16\x60\x88\xb0\xd2\x61\xc8\x7f\xe5\x30\x33\xa3\xe2\x4a\x62\x02\xa7\x35\x47\x9c\xa5\xbc\xfa\xd8\x90\xc2\xf8\x82\xab\x96\xbc\xe0\x72\x63\x5b\x9c\xa7\x30\xa4\xf1\xd5\x87\xb8\xd1\x79\xc8\xac\x85\x1e\x6b\xed\x16\x3e\xde\x7e\x09\xcf\xfb\x62\x13\x07\xd8\xbf\x52\xef\xe3\xdd\x3d\x5f\xbc\x46\x42\x83\xb0\x2a\x3b\xd1\x97\xdc\x94\x7d\x64\x1e\x41\x38\xe8\x1a\xe0\x41\x7f\x23\x56\x9e\x75\x48\x2d\x48\x19\x12\x1f\xa7\x51\xab\x5e\x67\x2f\xaf\xb8\x08\xd2\x2a\xcc\xa4\x71\xe6\xcd\xf2\xdd\x6d\x43\x4e\x4d\x71\xd0\xcb\x94\x1c\x05\xba\x65\xe0\xfb\x71\x81\x91\x7b\xfa\x21\x9d\x7f\x40\x82\x32\x70\x78\x1d\x6d\x6c\x79\x49\x4b\x0b\x6d\xe2\xc3\xa4\x67\xfd\x53\x3a\x84\x7d\x5a\xdf\x2c\x56\x98\xac\x5d\x9d\x75\xe1\xbc\xe6\x14\x9d\x85\xf8\x76\x5f\x3e\x20\xba\x11\x10\xf8\x22\x14\x36\x1f\xbc\x22\xfb\x02\x29\x4f\xda\x5a\x7c\x81\xf1\x50\x45\xfb\x74\xe1\x0c\x92\x56\x49\x61\x49\x41\xba\x37\x8b\x98\x01\x45\x98\x95\x7b\xc6\x8a\x27\x5a\xc0\x61\x64\xa2\x24\xbc\x45\xbf\x7b\x53\xc6\xfe\xde\x3e\x56\x7e\xb1\xea\xf4\x80\x7d\x89\x56\x07\x59\xd0\x83\x98\xb5\xa6\x19\x9e\xbd\x7c\x93\x3c\x84\x24\xb0\xd9\xdb\x49\xfb\x5d\xc6\x67\x67\xc8\xd7\x67\x12\x5c\x87\x34\x88\xab\x6d\x76\xac\x6f\x5c\xc4\x0f\x3a\x06\x61\xd5\x8e\x93\x89\xa3\x47\x87\x49\xca\x92\x5d\x2c\x45\xc3\xef\x94\x59\x1a\x88\xff\xc7\xe0\xbb\xb2\x71\x22\x40\x50\x24\xda\xff\xbb\x39\xfb\x8a\x2c\xe4\x43\xe0\xf3\xf4\x39\x5f\xba\xe5\x32\xc5\x51\x30\x17\xc1\x2a\xb2\xec\xb3\x05\x37\x64\x9d\x41\xef\xdc\xbe\x1e\xc1\xfd\x19\xed\xe9\x80\xa1\x17\x96\x1d\x64\xf2\xbe\x7e\x6e\x5a\x24\x6b\x9b\xbe\xbe\x69\x7d\x3d\x3d\xf1\xfd\x7d\x62\xb2\xfc\xa9\x85\x30\xe6\x58\xed\x8e\x35\x69\xc9\x43\x81\xb4\xcc\xe8\xe3\x53\x64\xf8\x35\x01\x0e\xd8\xf9\xfb\xd7\xdd\x1c\xa7\xf0\x62\x1b\xa2\x01\xef\x0a\x18\xe3\x8f\xab\x5c\x00\x27\xae\x43\x72\xbb\x9e\x6d\xb9\x7f\x33\xf4\xb9\x2f\xcb\x9d\x39\x3d\x42\x29\xd3\x02\xc8\x0e\xac\x71\xdb\xb1\xb1\xca\xf5\xf9\x26\xe5\x40\x0b\x61\x25\x77\xee\xe8\xd9\x11\x4a\x03\x2c\x3e\x78\xc5\x52\xb4\xed\xd9\x6c\x16\xe9\x03\xcb\x02\x6e\xb6\xa3\xfb\x9b\x37\xa4\xcf\x30\x51\x1d\x39\x28\x68\xb0\xb7\x30\xb0\x2a\xbd\x73\x0f\x11\x25\x8a\x0c\x3b\x92\xfe\xc2\x0f\x95\x62\x2e\x67\xed\x90\x87\x75\x4b\x08\x82\x80\xb5\xeb\x0b\x03\xab\xb2\xf7\xca\x38\x5c\x35\x16\x78\xa3\xa5\xf5\x4e\x09\x39\x67\xa0\xd7\xc2\xf6\x63\x12\xba\x9c\xd1\x3b\xad\x77\xee\xcc\x22\x33\xc3\xab\x3a\x93\xc0\x4f\x28\x62\xae\x31\x71\x16\x57\xdd\x98\x8d\x21\x15\x0a\xb0\x09\x59\xc6\x99\x9a\x78\x6e\xf5\x1c\x15\xe0\xf3\x21\xe5\xf8\x4a\x21\x38\x9a\x6d\x4e\xf6\xc3\x4a\x85\x50\x2b\x29\xd1\x93\x80\xf1\xdf\x43\xb2\x25\x5f\x5f\x1f\xcf\x53\xe6\x1c\x4a\x1f\x4a\x40\x5c\x69\x27\x7f\x7b\xf1\x22\x61\xc7\xc4\xf3\x78\xed\x31\x7e\x9d\x96\x74\x9a\x01\xa1\x02\x2c\xfb\xc6\xd3\xdc\x82\x28\xf4\x43\x2a\x70\xa5\x66\xfe\xd8\x11\x99\x8a\x7a\x84\xd0\x2b\xfd\x16\x80\x61\xd8\x05\x4a\xbd\x0e\x8a\xb5\x7e\x66\xe9\x3d\x8b\xb3\x07\xd0\x0b\x03\x81\xf2\x5e\xfb\x16\x0f\x61\xa4\xdc\x0f\x4d\xc1\x40\x30\x36\x6e\xd7\xd2\x51\x9b\x0c\x08\x9c\x49\x94\xad\x9f\xbe\x5f\x1a\xa1\x69\x23\xb3\x06\x71\xd1\x26\x1c\x25\x6e\xe6\x47\xdf\x32\x41\x4b\x19\x4d\xe8\xfb\x80\x22\x96\xf1\xc6\x31\x35\xf7\xdd\x37\xb9\x17\x31\x1d\xe1\xcb\x0b\x8d\x48\xcb\x97\x00\x35\xed\xb8\xe0\x64\x47\xf9\xcb\x9e\xe8\x76\xa3\xad\xc5\x06\x04\xb4\x48\x1c\x96\xb9\x3e\x73\x53\xbb\xea\x00\x6d\x01\x8b\xaf\xf6\x3a\x94\x94\xc8\x0f\x40\x95\x9f\x9e\xbc\x1b\x70\x37\x4e\xea\x80\x22\xd6\x45\x2b\xbc\xef\x81\xf4\x95\x39\x40\xc1\x80\x8d\xeb\x5f\xc8\x7a\xed\x6a\x08\x28\xc0\x01\x84\x96\x48\xe2\x0e\xee\xc8\x9e\x2b\x37\xac\x04\x48\x8b\xdf\x7f\xde\x3f\xa6\xd5\x81\x43\xca\x3d\xdc\x4a\xd1\xc3\x5f\x06\x68\x50\x61\x41\x91\xb7\xb1\xdf\xff\xfa\x50\x51\x33\x86\x0e\xf3\x93\x9b\x76\xb4\x25\xd5\x62\x58\xad\xf2\x7c\x71\x89\xd2\x25\x29\x87\x56\x15\xf2\x64\xbe\xd0\xbb\x44\xc6\x92\x8a\x03\xaa\x29\x6d\xf3\xd4\x89\x76\xc5\x9f\xe0\x2a\x37\xc3\x77\x95\x6a\xcb\x06\x0c\x02\x6c\xe6\x27\x3f\x9a\x7d\x19\x35\x42\x21\xc0\x3e\xcf\x92\x8d\x2b\xca\x43\x45\xc6\x41\x61\x5c\x96\xf7\x1e\x51\x1c\x15\x74\x11\x66\xaf\xe6\x9d\x7d\x59\xfb\xde\x12\xa2\x40\xf8\xfd\xc2\x98\x13\x12\x14\x9f\xd1\x33\x33\xb6\x88\x5c\xbf\x8c\x39\xb1\xcd\x2b\x7d\x53\xe3\x2f\x75\xe9\x6a\x90\xa3\xfc\xe2\x07\xeb\xb4\xf0\x18\x52\x1f\x3a\x75\x28\x90\x5d\xe3\xca\xa1\x69\x6c\x0a\x60\xec\x37\xf2\x47\x57\x4a\xcb\xe0\xcc\x02\xc8\xba\x5e\xf9\x87\x5e\xd4\xfa\x11\xa1\x69\x27\xfc\xca\xbf\xae\x93\x8f\x34\x0c\x62\xdf\xc8\x7d\x7a\xa1\x3e\x5e\xba\x5b\x2f\xf4\xbc\x06\xcf\xa9\x36\x66\x53\x40\x07\x82\x6a\x18\x3b\x20\xbd\x4b\xff\x46\x87\x56\x77\x11\x4b\xb4\x4e\xa2\x0f\xde\x94\x42\x78\x16\xd8\xd2\x92\x51\xdc\x63\x0d\x15\xd5\x1d\xe5\x57\x72\xcd\xe3\xed\x0a\x82\xe9\xc2\x80\xd4\x63\x1b\x39\x94\x2d\x1b\xdf\x27\xf2\x86\x85\x93\x95\x72\x8a\xb5\x10\xab\x2c\xfd\x9e\x76\x13\xbb\xa0\xe2\xf2\x75\xeb\x5a\xf2\xd5\x2b\xdf\x94\x48\xb5\x7a\x04\x1f\x7d\x9d\xbb\x36\xb8\x35\x8e\xd0\x1c\xac\xfd\x87\x3d\xa3\xb2\xff\x97\x92\x90\x59\x45\x3e\x2c\x64\x7d\x4b\x95\x42\x88\x99\xeb\x48\xf0\xf6\x6b\x8f\xca\x34\xd0\x21\x03\x45\xdf\x24\x09\x53\xef\xd8\x5d\x63\x34\x1f\x11\xc4\x85\x19\xb3\xca\xdc\xaf\x94\xe6\xfa\x36\x82\xc5\x95\xb4\xdd\xa9\x60\x9d\x88\xf7\x47\x0a\x93\xee\x92\xb6\xe6\x84\xa6\xad\x46\xaf\x2b\x3a\xc7\x9d\x3f\xe3\x1a\x88\x1f\x5c\xcf\x3b\xa3\xb4\x50\x8a\x18\x04\x14\x0d\xdd\x3d\xe5\xfc\x29\x5e\x91\x42\x2b\x64\x24\xa6\xe4\x06\x97\x74\x0c\x17\x47\xc5\x44\xfc\xcc\xe6\x2f\xb0\xb2\xb8\xb0\x4b\xb0\x0f\x70\x40\xba\xfa\xfb\x5b\x69\xc8\x6d\xfc\x1d\xad\x86\x03\x2d\x45\xe7\x6d\x33\xc6\x68\x95\x11\x63\xa9\xb1\xa4\xbc\x50\x0e\x52\x54\x93\xf8\x09\xfc\x7f\xcd\x18\xed\x2f\x18\x0f\x4b\x70\x28\xec\x85\xda\x99\x00\x4e\x92\x40\xe7\xee\x9e\xc3\x4c\x3f\xfe\xf1\xaa\x55\x6b\x85\xe7\xca\x9f\x79\x95\x1d\xc8\xe2\x46\x50\x06\xf4\xca\xd6\x46\xe4\x15\x2f\x67\x5d\x66\x88\xa1\xeb\x39\xa4\x11\x97\x54\xc2\xf2\x8f\xd8\xfc\xf1\xb0\x06\x2a\x61\xee\xbc\x36\x2d\x6b\x34\x35\x1b\xd0\x80\x84\x2e\x03\x71\x58\x0f\xc9\x57\x9a\x34\xc0\x0f\x28\xc3\x2e\xf2\xc7\x66\x65\xdf\x56\x05\x50\xde\x61\xfc\xdc\x1a\x7e\x99\xd7\x33\x2e\x7a\x4b\x18\x2d\xd4\x9e\x18\x2a\x53\xe7\x62\x29\xca\x59\x1a\x73\x80\x22\xc7\x41\x40\x64\xd3\xcd\xfc\xe3\x63\xb2\x6f\x3f\x74\x7c\x8e\x18\xb4\x76\xca\xfe\xf3\x91\xd4\x97\x55\x49\x59\x82\xe7\xd5\xf5\x92\x01\x44\x2a\x95\x62\x60\xc3\x62\x99\x10\x0e\xe8\xfc\x97\xad\x19\x3e\x04\xd5\x04\x91\xc8\x77\x04\xe3\xd2\x96\x31\x40\x2d\xf6\xf2\xe3\xb6\xb1\x0a\xec\x63\x85\x7e\x10\xe7\x4b\xc8\xe7\x98\xe3\xef\x5f\x7d\x5f\xa6\x8f\x45\x19\x48\x8b\x70\x5c\x72\xb7\xd4\x9b\xb9\x85\xc3\xe5\x19\x0b\xf1\x00\xef\x41\xe6\x1f\x3b\xa3\x41\x37\x94\xb1\x39\x78\xa8\x37\x6e\xba\x4b\xe6\xbd\xc0\x02\x6e\xfc\xb3\x99\x4f\x0d\x15\xbe\x27\xac\x54\xe2\x8f\xb8\xe6\xac\xe2\xee\x5a\xc8\x3f\xc6\xa8\xd3\x3c\xfe\x79\x90\xba\x00\xf3\xf2\x3b\x77\x5f\xbf\x12\xe4\x41\xc3\x8f\xd3\x49\xee\x0b\x9f\x4d\x7b\xc3\x5b\x42\xa0\xd0\xae\x9b\x85\xdb\x37\x8e\x14\x17\xef\x87\x1e\xa4\xf5\xe4\x31\xa0\x23\x29\x5b\x08\x94\x41\x62\x55\x37\x3d\x99\x7e\x50\x15\x9a\x6a\x5a\x9a\xff\xf0\x86\xec\x1b\x99\x31\x73\xda\xf4\x9e\x1e\xc1\x25\xda\xba\x27\x7d\xc7\x10\xb8\x4a\xbc\x1a\x33\x3f\x8d\x47\xbe\xeb\x17\x4b\x91\xfd\xa0\xc6\xd9\x6e\x98\x44\x70\x5d\x4a\xd1\x70\xe5\xcd\xd5\x21\xad\x02\xaa\xb6\x66\x3e\xf8\x9a\x46\x9d\x26\x66\x4d\x70\x71\x9a\x05\xbc\xb8\x5d\x49\xd0\xa0\x59\xe3\x7e\xe6\xc4\xe0\xe1\x49\xa0\xb7\x02\xc2\x7a\x45\x8d\x3d\xe9\x9d\xbb\x20\xcd\x15\xbe\xb6\x22\x9b\xfb\x88\x20\xd1\x48\x5a\x4c\xf9\xc2\x9a\x71\x5a\x8e\x87\xaa\x76\x99\x50\x51\x5b\x3d\x3a\x23\x7b\x62\x4d\x1b\xb8\x5e\xec\x0e\xe3\x1c\x92\xa5\x18\x37\xdf\x22\x4d\x09\x77\x97\xbb\x01\x0b\x9d\x50\xd0\x54\x18\xea\x5c\xe1\xb5\xd7\x65\xf3\xaf\x3a\xbf\x73\x3c\x4f\xa9\x9d\xbf\xee\x38\xbf\xc3\x6b\x08\x0e\x78\x32\x58\x18\x77\x66\x88\xc8\x0f\x7b\x8a\xa5\x08\x3e\x90\x4d\xf0\x6d\x40\x1d\xd8\x10\x9f\x25\x19\x1f\xcb\xde\x51\x10\x87\xad\x1e\x10\x5c\xa0\xfb\x27\x2b\x73\x05\x68\x6b\xd0\x28\x06\x36\x65\x74\x30\x63\xf1\x1c\xde\x00\x5c\x1b\xe2\xe2\x5a\xc8\xce\x50\x0b\x56\x97\xbf\x7f\x9d\xd6\xdb\x18\x20\xe2\x65\x6f\x88\xe4\xf9\x87\xd5\x32\xa4\x4a\x2a\x9a\xff\xc0\xb9\x94\xa7\x60\xc3\xba\x74\x1a\xd3\x27\xb4\x90\x3d\xa9\xc8\xb1\x72\x17\x74\x6b\xcc\x0c\xe4\x79\x4e\x12\x65\x73\x6f\x1f\xe3\x09\x78\x3a\x90\x92\x1f\xbb\x80\x3f\xb9\xe9\x33\x39\xe8\x59\x6a\x1a\xde\xcd\x4a\x77\x06\xd4\xd8\x6d\x1a\xdb\x2f\x14\x77\x6f\xd6\xe2\x0f\xfa\xf2\x2a\x0d\x38\xf4\x29\x6c\x64\x1a\x14\xf9\xbe\xf1\x8a\x2d\x02\x9d\x29\xde\x2c\xdc\x30\x5c\x7b\x28\x36\xe0\xf5\x49\xb4\xfe\x6d\x89\x23\xfb\x24\x64\x3d\xa3\xfc\x41\xa5\xa3\x57\x26\x84\x11\x33\xf2\xf5\x79\x1d\x4a\xd6\x60\x72\x9c\x2a\xce\xa5\xa7\xbc\x32\x4a\x6d\x8f\x50\x92\x0c\x0e\x3d\x5f\x11\x8c\x28\xb4\x6d\x5b\x43\x64\x0b\xb7\x3e\x2e\x3f\xa5\x0c\x1d\xc7\x27\x21\x03\x54\x72\x97\xbf\x35\x51\xa1\x70\x11\xcf\x81\xad\xc5\x57\x6e\xca\x39\xf5\xd0\xc5\x45\x27\xbb\xde\xdb\x8c\x2c\x62\x8c\x01\x05\x0d\x80\x01\x66\x01\x4f\x3a\x87\x2f\x6f\xd6\x18\xbf\x28\xb0\x2d\x0a\x12\x3a\x9f\xb1\x58\xa3\xa0\xfb\xc0\x81\x7e\x52\x97\xb1\x2a\xe9\xb6\x6d\xd2\x3a\x49\x18\xc4\x9e\xde\xf3\xb8\x83\x9b\x3f\x4d\x32\x53\xa0\xc7\x68\x0f\xcd\xa1\x59\x07\x62\xa3\x20\xb6\x05\x7e\x3c\x9f\xdb\x2f\xff\x7f\xdf\x4c\xf6\xa3\xff\x7b\x4a\xcc\xf3\xc4\x6e\x5f\xfa\xa1\xb1\xcf\x48\xbe\xb6\x0b\x2d\xc4\x9f\xbd\x2c\xe0\xff\x71\xce\xb8\x81\x16\xa2\x4f\x5c\xea\x0e\x30\xff\xe3\xef\x1f\xa9\x3e\x72\x04\x05\xd1\xe1\x0f\x6f\x49\xe7\x07\x58\x9f\x5d\x65\x52\x7e\xf3\x78\xa7\x7e\x8a\x93\x39\x8f\xed\xab\x38\x57\xe6\x1a\x40\x9d\x40\x65\x83\x1b\xfb\x3a\x54\x14\x31\x4e\x3b\x78\x1b\xe3\xfe\x31\xfc\xe0\x02\xdc\xfa\x4e\xdd\x5b\x2e\x52\x58\x8d\xcc\x49\xe5\x3f\xb4\xfb\x4a\xad\x3a\x72\x39\xd1\x80\xe5\x23\x19\xf4\xf4\x97\xcf\xb6\xce\xbe\x74\xf3\x28\x91\xbb\x36\x48\x3d\x6f\x48\xab\x49\x06\xf5\x87\x71\x97\x69\x8f\xcb\xf7\x11\xa4\x59\x5b\xc9\xfd\xfc\x24\x3f\xbe\x1e\x71\x90\xcf\xc6\xd7\x3e\x77\x44\x3e\x47\x0b\xd6\x91\x40\x29\xf3\xe5\x7e\x05\xe8\x68\x60\xe0\xf2\x09\x2f\x03\xcc\x4f\x63\x54\x85\xa8\x6c\xe3\x23\x0f\x8d\xd6\xdd\x6d\x60\xf3\xe3\xf8\x4f\x0f\x64\xa3\x42\x00\x1d\xe8\x9b\xc4\x43\x26\x47\x15\x7f\xf9\x86\x0c\xf5\xd0\xf7\x58\x76\x92\x9b\x24\x29\xd9\x38\x2e\x05\x14\x3e\x56\x63\x42\x76\xde\xc4\x24\x94\x22\x8b\x50\x9f\x35\x9f\xf4\x9a\xe7\x57\xf5\xec\xb7\x5b\xc8\x37\x01\xb5\x58\x93\x8c\x65\x49\xf7\x5d\x25\x1d\x43\x2d\xa5\x78\xbd\x2d\x5f\x3a\x70\xaa\x90\x22\x46\xfc\xfe\xed\x2c\x79\xd2\x07\xf8\x24\x01\xf3\x0a\x3f\x7a\x28\xfb\x25\x08\xfb\x01\x0a\xf8\x0c\x0c\x3b\x63\x8b\x9f\xd4\x48\x73\x94\xb8\x49\x54\x34\x8e\xee\x4b\x3b\xb8\x1e\x09\x8b\xa5\x68\xad\x06\xf0\x99\x3c\x2c\xb1\x8f\x2a\x8c\x7b\x53\xa6\x82\x34\x54\x10\xac\x65\xcf\x8e\xd5\x8a\x09\x36\x1d\xc6\x98\x26\xd1\x37\xa6\xc8\x17\xed\x00\x3f\x10\x89\xfc\xe4\x1b\xd2\xaf\xee\x27\xb5\x62\x29\x7a\xee\x69\x79\xe3\x1e\x04\x35\x5e\xee\xff\x6d\x89\x02\x10\x86\x41\xc0\x99\xd8\x65\x05\x36\x74\xc3\x2a\x28\xb3\x86\x21\x39\xd3\xae\x70\x90\x2a\xa1\xcf\xd8\x0e\x07\x4e\x64\x6b\xca\xde\x59\x82\x01\xff\xd1\x5b\x35\x98\x11\xd6\x21\x0e\xec\xa2\x0f\x65\x1f\x73\x88\x02\x58\x57\xa0\x1f\xa0\x7a\xfc\x99\xcd\xdc\x27\x5f\xd1\x9e\xaa\x03\xea\x09\x1a\x96\x5f\x75\xa2\x85\x60\x60\x85\xa6\xe8\x06\xe5\xff\x65\x1a\xef\x8e\x5d\x1b\x7f\x5b\xcb\x01\x36\x9e\xbd\x51\x05\x27\x18\x0b\xba\x14\x8d\x7f\x51\xc5\x4e\x9c\x2a\x60\x56\x11\x7d\x6d\xf0\x04\xad\xde\x61\x34\x60\xc0\x87\x21\x98\xb3\xf8\xe9\x2d\xd2\x2f\x56\xe3\x1a\xbb\x99\xfb\xc9\x6a\xe5\x1b\x18\xaf\xac\x58\x8a\xfa\xa6\x4c\x50\x2a\x6c\x40\x49\x9d\xa0\x80\x28\xdc\x9a\x68\xc6\x2c\x0d\x9d\x46\xb8\x5a\x45\x81\xe8\xbb\xe6\x5e\x1d\xaa\x0c\x21\xc0\x3a\x9f\xcf\x2d\x35\x73\xc7\x77\x66\xff\xcc\xe4\x73\x36\xc9\x03\x7e\x64\x9a\x36\x25\x5b\x63\x10\xf0\x9e\x07\x65\x41\xee\xdb\xea\x38\xe6\xcc\x9b\xb3\x51\xa5\x9f\x50\x0b\x60\x04\x58\x73\x22\x4e\x4c\xde\xed\xe0\xb9\xf7\x4a\x25\xf9\xcc\x3f\x7d\x2a\x05\x6c\x91\x95\xe5\xca\x3e\xfe\x8a\x96\x60\x41\x8a\x01\xb6\xe0\x36\xde\x4d\x49\x3c\xd8\x75\x56\xbb\xc2\x72\xa4\x96\x68\x2f\x2c\xdc\xa4\x4f\x67\x32\x60\x92\xdd\x60\xfc\xb6\x77\x6f\x17\x23\x72\x04\xfb\x01\x0d\x4d\xe6\xf2\x7f\xb2\x64\xac\x32\xed\xe0\xa0\x00\x50\xb4\x2d\xa1\x5a\x18\x8f\xbd\x3a\x5c\x14\x1f\x75\xe4\xb3\x82\x32\x77\xef\x3b\x1a\xf0\x02\x19\x90\xc0\xda\x46\xd7\x3e\x33\x42\x96\x53\xc9\x48\x58\xee\x97\xe3\x64\x26\x52\x01\x3c\xb2\x1b\x9f\xd7\x78\x03\x55\x0a\x2a\x82\x33\xf9\xa7\xe7\x15\xb7\x33\xc0\xdc\x54\xfc\x17\xe5\x67\x47\xab\xc5\x98\x68\xca\x30\xda\xe0\x4b\x67\x64\xc3\x16\x58\xfd\xa1\x1f\xb8\xcc\xa0\x4b\xcd\xdc\x7f\xcc\x1f\xa6\x80\xd5\xf1\x4f\x96\xdf\x20\x6d\x8e\xf1\xd0\xba\x8b\xa5\xc8\x39\xa1\xe5\xe4\xc0\x0a\x39\xb7\x8e\xcd\x3e\xdc\x5b\x56\x2d\x2a\x40\x09\xaa\x72\xd7\xf3\x69\x51\x42\xe2\x0c\x2b\xfa\x55\xbb\x74\xe3\xe5\xee\x7e\x76\xab\x87\x87\x68\x87\x9b\x78\x36\x6b\xda\x82\x00\x5a\xc2\x01\xfc\xb1\xa2\x0d\xa7\x7a\x80\x42\x6c\xb2\xc6\xc4\x21\x31\xda\x48\xa1\x4f\x70\xc2\x3b\x98\x3b\x75\xa4\xda\x0a\x0e\x02\x4e\xd9\xce\xff\xfb\xeb\x1a\x21\x93\x60\x3e\x2b\xc3\x32\x86\x9e\xb7\x26\xe8\xee\xc0\x0c\x29\x74\x79\x73\x8b\x59\x51\xef\x60\xf9\xb6\x90\x0b\x30\x43\x33\x3e\x75\x28\xfb\xa9\xc8\x82\xc4\x21\x55\x3e\x7c\x68\xfc\xe6\xa9\xa1\xc9\x53\x98\xd9\x5b\x2c\x45\x9f\xbf\x5d\x23\x21\x3b\x70\x2b\xc0\x16\xe5\x24\x65\x51\x20\xae\xec\x50\x51\xb7\xc0\x06\x3c\x19\x1d\x77\x36\xf5\xc5\x03\xb0\x1c\xfb\xe2\xe3\x23\x44\xae\xe9\x7b\x20\xe0\x09\x68\xd3\xf8\xd6\xf3\x3c\x03\xbd\x8e\x9b\x2c\xab\xa5\xbb\x67\xa4\x99\x7e\x43\xa5\x16\x1b\x4b\x26\x69\xa0\x22\xf3\x08\x7e\x40\xb0\x08\x96\x49\xf0\xf8\xf4\x49\x6e\xee\xb1\x63\x80\x8c\x24\x53\x19\x93\x35\xd3\xde\xb9\x73\x7a\x04\x67\xc7\xf8\xd0\xaa\x91\x29\xb4\xaa\x90\xf3\x73\x6f\xad\x1e\xa5\x44\x0f\xea\xf2\xdc\x90\x91\x0b\xbd\xec\xf9\x2e\x03\xc7\x0a\x4d\x13\x69\xd9\x6c\xff\x2c\x8d\x37\x02\x5c\x68\xf1\x47\xbd\xfd\xa6\xf1\x7a\x71\xe8\x38\x10\x4b\x44\x63\xbb\xe6\xe3\x08\xad\x02\x8c\xb6\x25\xe8\x71\xee\x5c\xd6\x47\xc0\x3a\x30\x43\x66\x87\x3c\xb1\x7a\xfa\xc9\x14\x10\xa9\x80\xa0\x25\x8f\xf8\xf4\x8d\xa9\xbd\x43\x18\x7b\xb8\xa1\xdb\x64\x07\x80\xa8\x5d\x9e\x3d\x8f\xcb\xda\xc1\x0c\xfd\x80\xb8\x90\xb2\x3e\x42\xee\xe8\x91\xac\x2d\x35\x04\x91\x93\xe5\xb4\xf9\x03\x85\xec\xbb\xb2\x42\xb3\xe6\xf3\x93\x98\xbd\x94\xa9\xb8\x43\x99\xed\xa5\x20\x7e\x06\x2c\xcc\xdc\xbf\x57\xc3\x19\x3d\x12\x30\x9c\xb1\xf3\x5e\x99\xb7\xd8\xc0\x75\xe3\xb4\x85\x1d\x50\x7a\xc1\x85\xa2\xfc\xe4\x6d\x80\x0b\x97\x68\x69\x37\x8a\xfd\xa5\x2f\x1a\x3f\xf9\x79\x67\xb2\xcf\xb0\x82\xe2\x30\x87\x12\xda\x93\xf1\xb1\xa7\xb3\xef\xa8\xd6\x20\x01\x61\x90\x8e\xa8\xab\xae\x3d\x33\x51\x4f\xeb\x1d\xa0\xa5\xa9\xf9\xe9\x07\x65\x5e\x81\x81\x6f\x81\x2d\x8c\x27\xb6\xb8\x53\xa4\x63\xc5\x7f\x02\x0d\x5f\x49\x3e\x73\xf7\x75\x67\xad\x86\x54\x2a\x09\xe0\x68\x9c\x96\x27\xc3\x51\x23\x58\xff\xf6\xf4\xb4\xf5\x4d\x9b\x1e\xff\xd7\xff\xfb\xa4\x08\x12\x36\x31\x89\xc3\x19\xd5\xb9\xbb\x35\xc2\x42\x40\x49\x58\x76\x04\x55\xf3\xa6\x03\x32\x75\x24\x1e\x0a\x5d\xa6\x14\x30\x47\xe6\xfe\x55\xa6\x22\xd2\xcc\xcf\x7e\x46\x99\xf2\xa0\xa4\x66\x13\xca\x90\xf6\x6a\xfb\xa8\xd4\xd2\x33\xbc\xd5\x5c\x5e\xb4\xd8\x3c\x0a\x81\x99\x0c\xac\xde\xe6\xa4\x36\x68\x93\xd8\xfb\xff\xfb\x93\xf2\xbb\x28\x62\xf3\x7a\xde\x6b\xb2\x79\x01\xe2\x20\xfe\xd5\x31\x99\xf1\x8b\x19\xc5\x52\x34\xaa\x5d\x5e\x4e\xef\xb4\x9e\x9e\xbe\xe4\xf5\x5c\x52\xd0\xa0\x4f\xe2\x58\x9c\x22\xf3\xab\x67\x04\xf3\x90\x50\x93\xf1\x32\x4a\x4d\x63\xfc\x05\x5a\xc2\xe9\x07\xc8\x05\x81\xa0\x36\x2f\xde\xab\x1d\x47\xa7\xe1\xf2\x9c\x3f\x8e\x74\x7f\x7d\x46\x60\x79\x36\x31\xe3\xcb\xfe\xfa\x82\xac\x7b\x2e\x53\x08\x6a\x81\x4d\x49\x58\xb5\x13\x0e\xd5\xb1\x51\x6a\x72\x54\x4d\x69\x91\x46\xb0\xe8\x12\x2d\xfc\xbb\x80\xd6\x40\x59\x0a\x59\x8c\x7e\x2d\xeb\xcc\x28\x21\x6e\x02\x6a\xcc\x57\x9a\x3b\x65\x40\x09\xe3\x6d\xc5\xbf\xf8\xfb\x0d\xd9\x77\x5f\x0d\x51\xaa\xf0\x62\x8c\x7d\x56\x87\xb2\xe2\x2b\xab\x89\x6e\x57\xfe\xab\x33\x52\x6f\x82\x7c\xda\x02\x5e\xdc\x3c\x5f\xe9\xaa\x91\x10\x5b\x21\x73\x01\xff\x74\x41\xc2\xef\x0c\x2d\x88\x19\x89\xbe\x70\x7b\xa7\xec\x7a\xb9\x80\xa5\x6b\x67\x9f\x55\x66\x64\x09\x2d\x23\xcb\x82\xec\x36\xe7\x1f\x56\x72\x6f\xc6\xbe\x8c\x9f\xf5\x4f\x57\xa5\xa6\x0e\xbc\xd8\x24\xda\xa6\xc8\xcc\x27\xc4\x7e\xe8\x07\x00\x61\x50\x76\x38\xf2\x30\x6e\x48\x7a\x64\x28\x54\xf8\x34\xb9\x4f\x9c\x4a\x7f\xd1\xed\xa9\x54\xcc\xbd\x6b\x38\x43\xfe\x6a\x0a\x2a\x4a\x33\x34\x7a\xed\x49\xf9\xc6\x5c\x42\x83\x6a\xd2\x51\x35\xee\x59\xa9\xb2\x35\x43\x0b\x15\x4b\xd1\xb6\x53\x1c\x65\x5d\x5b\x83\x8e\x42\x64\xcb\xef\xc7\xfa\x00\x5e\x9c\x76\xa1\x74\xf2\xef\xdb\xb3\x2e\xd6\xaa\x25\x37\x0e\x3c\x10\x72\x54\xb1\x50\xba\x93\xa7\xfa\x6b\x83\xb0\x51\x87\x3e\xc0\x41\x66\x4c\xfb\x37\xfd\x9c\x2b\xb5\x16\x55\x43\xda\x02\xbd\x2d\xa9\x8f\x55\x8d\x0e\x5b\x35\xc5\x89\x18\x9b\xb7\xf3\x82\x3a\x80\xc0\xe5\xad\xe2\xe3\xfd\xc2\x89\x64\xd8\x10\x2b\x5a\xba\x43\x4c\x47\x82\xb5\x58\xa2\x5d\x93\x64\xf9\x07\xe2\xc8\x5b\x1e\xa2\xd3\xd9\x7c\x0f\x9a\x01\x28\xb3\x4f\x14\x73\x93\xab\x38\xac\x02\xb7\x02\x57\x12\x84\x0b\x0b\xcf\xa4\x66\x37\x40\x5a\xd8\xf4\x05\x6a\x28\x79\x7e\x99\xd0\xa4\x77\xbf\xed\x40\xd6\x81\xc2\x90\x12\xc6\x27\x89\xc8\xad\xf2\x2f\x7c\x41\x7b\x8c\xff\xe2\xf8\xeb\x92\x0c\x6c\x02\x0f\x05\xc4\x51\x21\xf3\xfc\x7b\x9e\x4f\x46\xa4\x07\x50\xc2\x10\xce\x1d\x7c\x48\x61\x08\xdb\x48\xc9\x3f\x8c\xff\xba\x4b\xcf\xe0\x3d\xc8\x82\x33\x77\x17\x23\x8f\x68\x7c\x9d\xde\xe9\xc9\xf1\xdd\xb1\x4a\x4b\xec\xfc\x86\x69\x23\x10\x50\x94\x86\xad\xd3\x0f\x68\xe3\x2c\xc4\x63\xf5\x65\x5a\x61\xe6\xde\x98\xa4\x0f\x5a\xd7\x49\x28\x46\x2c\x4a\xd1\xb2\x8e\x8b\xb5\xbf\x77\x20\xa7\x87\x70\x02\xe8\x27\xad\x6c\xd8\x23\xe5\x3a\x22\xa1\xef\x08\xad\x93\xe8\x5b\x17\x74\x24\xce\x8e\x06\x45\x13\x51\x33\x44\xcc\x89\x7c\x75\x97\x36\xcc\xe9\xfb\x80\x4d\xda\x88\x3c\xab\x36\xbe\x85\xde\x50\x4e\xd1\xd8\xfc\x6c\x23\xfb\x5b\x12\xfa\x81\x2c\x9a\xef\x9c\x9f\x9e\xd6\xb0\x6a\x2b\x91\xef\x9f\x35\x10\x5e\xd0\xf7\xbb\x68\x99\x01\xdf\xa5\x1d\xd2\xdf\xf4\xce\x29\xc6\x1f\xd5\x58\xc0\x5f\xa6\x4d\x7c\x0f\x05\xac\x54\x6d\x1a\x95\x63\xfc\x87\xcb\x03\xe0\x34\x92\xb1\xa0\xf5\xda\xc4\x23\xc0\xb5\xae\x80\xa8\x1a\x36\x7f\x52\x78\xa7\xbe\x47\x6a\xcc\x71\xe5\xc6\xdc\xaa\xbf\xfe\x6a\xe8\x00\xea\x77\x0b\xf2\x40\xdf\x23\x13\xf4\x6b\x06\x59\xba\xbe\x31\xe4\xe1\xa4\x56\xe0\xea\x36\xec\x22\x2f\xd9\xa0\xcc\x8f\x85\x16\x0a\x08\xe5\x61\x3a\xbf\x71\x8e\x4c\x89\x08\xcb\xa1\x5c\x7e\x29\x27\x5f\xcd\x86\x0a\x1b\xd4\x21\x6f\xe9\x47\x97\x9e\x12\xb4\x4a\x08\x2a\xad\x2c\x9a\x7f\x3e\xd9\xa9\x85\x8b\x06\x77\x51\xd1\xcb\x07\x3b\x94\x1a\xca\xe4\x72\x1a\xac\xe1\xb1\x28\x3d\xae\x4e\xa3\xc5\xf9\x14\x56\x3c\x36\x42\x41\x39\x61\xc0\x46\x0d\x0a\x37\x6d\xd0\x50\x4c\x28\x80\xef\x66\xee\x5b\x4f\x8f\x53\xe0\xcf\x96\x2e\xe2\x1b\xaf\x6a\xc4\x31\x16\x22\x78\xa3\x37\x3f\x7f\x7f\x16\x42\xe4\x73\x9d\x7e\x22\xa2\x21\x92\xec\x2f\x3d\x3c\x42\x7c\x7a\x40\x30\xf2\x79\x4d\x92\x7f\x5b\xd4\xd7\x1e\xf0\x7d\x8f\x30\xd5\x96\x68\xfe\xb3\x0a\xaf\x9f\xf1\x66\x59\x8a\x31\xf2\x82\xec\x35\x50\x54\x71\x20\x8f\x9a\xd1\x2f\xdb\xd2\x19\xb8\x19\xbd\x6c\xfe\xf8\x49\x79\x3f\xc8\x77\xf8\x0c\x59\x6a\x4a\x5f\x3c\xa5\x89\x78\x91\x2a\x57\xbb\xe0\x11\x7a\xaf\xc2\xc9\x03\x88\x96\x99\x4c\x83\xf1\xeb\x6d\x5a\x42\x17\x9a\xb5\xe4\xee\x8c\x45\x27\x64\xc7\x04\x29\x8e\xbe\xd0\xbf\xae\x4d\x0e\x2f\xc5\xa5\x71\x7c\x2b\x9d\xab\xb3\xd9\xd2\x00\x0a\x6c\x96\x6e\x5f\xb6\x3a\x7b\x0c\x6a\xc0\x41\x66\x0d\x29\xfd\x8d\xa8\xe7\x24\x4f\xbc\xad\x90\x13\x80\xe9\x49\x7d\x34\x4b\x68\x1a\xb0\x6e\xe8\x55\xc3\xb5\xd9\xcf\xad\x1e\xc0\x49\x2e\x12\xfd\x62\x93\xce\x3f\x0f\x6c\xae\x89\xe4\x8b\x56\x73\x61\xe7\x0c\x99\x28\x62\x56\x9c\x47\x5f\x0f\x38\xe2\xcd\x5a\x9a\x0c\xb1\xb2\x44\x8b\x74\xe6\x26\x45\xb6\x00\x50\x87\xb1\x83\xf7\xeb\x90\x24\xc5\x49\xdf\xd0\xf8\xe3\x4b\x1d\x6a\x45\xce\x7b\x76\xc5\x52\xf4\x4d\x6b\x8c\x6e\xa9\xf1\x45\x73\x7a\xcc\xdf\xef\x12\x15\x27\x53\x03\x60\xae\x7c\xde\x19\xf9\xc6\x82\x7a\x22\x91\x73\x91\x06\x22\x70\x79\x1b\x8a\x15\x19\x9d\xdc\xa1\xa3\x97\x68\x8e\x12\x39\x45\xc6\x64\x4c\x5a\x8f\x9f\xeb\xd6\x7d\x74\x3f\x57\x89\x11\x69\x44\xae\x7b\x88\x06\xba\x03\xa7\xe6\x0b\x8c\x62\xa5\x20\x80\xad\x76\x20\xf0\x79\x96\xf4\x7f\x4f\x4e\x52\xd2\x7c\x3e\x9f\x85\xcc\x16\xa7\x30\x75\x41\xcb\x90\x46\x32\x03\x26\x3a\x6e\x7f\xaa\xa4\x4d\x6c\x27\xdc\xda\x92\x80\xfc\xf9\x6d\x2d\xf6\xd8\x90\x02\x2f\x6d\xa9\x16\xdc\x4e\x25\x2b\x06\x01\xf2\x2b\x48\xd4\x76\x77\xbc\x98\xf5\x13\x26\xf0\x79\xc0\x8a\x06\x2b\x8a\x2e\x7e\x00\xe8\x00\x21\xec\x18\x5f\x29\x31\x9d\xde\xde\x3e\x56\x53\xdf\xab\xf4\x53\x2c\xe8\x70\xdd\x8f\xb4\x50\x7b\x6b\xbc\x96\x03\x87\x01\x05\x4e\x5a\x73\xe7\x9f\x7b\x20\x6d\x85\x83\x3a\xca\x00\x7e\xbf\x3d\xa4\x0b\x51\xb9\x82\xfc\xc2\xda\x16\xcc\xec\xcf\x3c\x37\x5e\x37\x3a\x22\xc6\x83\x59\xe7\xe0\x03\xc7\xb2\x9f\x61\xc5\xd5\x2a\x2a\x87\x02\xf9\x63\x36\x35\xea\xc1\xec\x0b\xe8\x9b\x9b\xf2\x90\xf8\x87\x9c\x7c\x69\x5c\xcb\x85\x00\x6c\x71\x44\x35\x0a\x4f\x5f\xaa\xb9\x0b\xdf\x04\x0e\x21\x62\x16\x88\xcb\x83\x9c\xe2\xad\xa0\x0f\xad\x5d\xbb\xa4\xc5\xe7\x7e\xe7\x89\xf1\xda\xe1\xec\x63\x53\xb3\x89\x0e\x9a\xf1\xe6\xd6\xac\xdd\xc1\xc0\x46\x26\x27\xf3\x16\xc6\xcf\x52\x03\x87\x8f\xaa\x82\xa0\x54\xf8\xfc\x2c\xa5\x67\xe7\xc5\x2e\x97\x6b\xed\x95\x9a\xb9\xae\x09\xd9\xfb\xa9\x52\x32\xc0\xbd\x3c\x2b\xda\x2e\xae\x88\x4e\x2c\xeb\xe4\x47\x27\xf6\x09\xdd\x25\x04\xf8\x64\xb4\xb1\x66\x7d\x5b\x46\x0d\x87\x15\x21\x93\xc7\x49\x3b\xa8\x11\x27\xf0\x55\x94\x29\xff\xb7\x53\x1a\xd3\x26\x1c\x00\x28\x60\xc8\x9b\xf0\xfa\xf3\x0f\x8d\x93\x15\x4b\xe8\x38\x65\x60\xaa\x4c\xfd\x8f\x0e\x1d\xa5\x8c\x1e\x55\xed\x00\x8a\x1b\x35\xde\xb8\x45\x4f\xcc\x5c\x84\x61\x4a\x28\xb8\x76\x03\xaf\x19\xae\xf5\x29\x6c\xa8\xdd\xe3\x6e\x45\x0b\x8f\xb8\x65\x40\x2d\x91\x83\xce\xb3\xe4\x57\xc1\xad\xd0\xf5\x44\xae\x10\xfd\xcb\xcd\x2d\x7a\x46\x0e\x48\x3b\x38\x85\xde\xd7\x32\xa0\x0b\x0c\x4c\x9b\xb7\x1c\xef\x57\xbc\xa5\x49\x5c\x50\x2c\x45\x7f\x5e\xad\x8d\x70\x12\x6c\x42\xcc\xc8\x10\x42\xab\xaf\x71\x6b\xbb\xaa\xd9\xe8\x0b\x68\xf3\x8e\x85\x69\x29\x30\xb3\x67\x16\x9b\x86\x7e\x53\xa2\xa3\x65\x1a\x3f\x1a\xd6\x9c\x5c\xba\x76\x75\xf4\xe1\x1d\xba\xb8\x63\xdf\x9c\xf4\xc1\x2c\xde\xcc\xdf\x2b\x0f\xaf\xc5\x52\x74\x40\x69\x41\xf0\xa6\xd5\x8e\x89\xd9\x49\x84\x1a\xc4\x3e\xc2\x55\xae\x9a\xa2\xc6\xd9\xdf\x9c\xd5\xf9\x61\x7e\x3a\x29\x9b\x5f\x17\x64\x03\x57\x19\x5a\x56\x32\x1a\x15\xdd\xa6\x4c\x28\x38\x20\xc4\x09\x92\x91\x3f\x17\xa5\x9e\x86\x91\x55\xa3\xf1\x37\x77\x2a\xb4\x1c\x66\x90\x58\xa0\x5a\xff\xb3\x39\x19\xe0\x4f\xbc\x4b\xfc\xd3\xcf\x0c\xc9\xa6\x2b\x65\xe2\x63\x04\x74\xc1\x97\xa5\x94\x97\x49\x1f\x24\x4e\x08\xdc\x84\xa2\x63\x7c\xef\x01\x45\x5c\x0c\xb8\x90\x02\x21\x8a\xfa\x84\x34\x0e\x1f\x05\x21\x90\x89\x64\xc0\xfc\x40\xf1\x9a\xf8\x98\xd4\x91\xcf\xe7\x8c\xb3\xae\x3a\xf7\xf4\x65\x2a\xfa\xe9\x13\x8c\x61\x0b\x1b\x2a\x3f\x6f\x86\x36\xf7\x17\x56\x1d\x94\xe8\xc8\xc5\x67\xe5\xea\xd5\x89\x04\x2d\x60\x5c\x89\xc5\x67\xb5\xc8\x45\x1d\x46\xab\x9d\x97\xe4\x21\x68\x82\x0c\x9b\x15\x1a\x0a\x01\x91\x7d\x36\x2f\x3a\x18\x7d\xc1\xa3\x08\x04\x0c\xd7\x6d\xe6\xba\x77\x29\x79\x91\xe7\x39\xbc\x46\x7d\xfa\x80\x9e\x81\x73\xeb\x17\x29\x6c\xb3\x2c\x0b\xf6\x19\x82\xe9\x91\xfb\xe8\x4d\x9a\xe8\x25\x19\xe8\x4e\x26\x00\x6b\x9b\x38\x94\x51\x0d\x91\x63\x89\xf8\x7e\x59\xfb\xd8\xd6\x73\x41\x39\x53\x21\xfa\xd6\xa2\xec\xa1\xf1\x6d\x40\xa1\x4d\xd8\x1f\x73\x84\xd4\x78\xf0\x40\xa7\xc2\xdb\x9e\x35\x6d\xfa\xec\xe9\xd3\x66\xcf\x9e\x1e\x7f\xdd\xe7\xee\x18\xa7\x22\x6c\x15\x9e\x63\x03\x47\xf4\xad\x0f\xae\xe0\xc7\x81\x8b\x34\x30\x40\x7a\x91\x22\x17\x13\x52\x3f\x64\x51\x33\xfa\x9d\xe6\x8d\xd9\xac\x3d\x9f\xd7\xcd\x81\x43\x59\x80\xd6\x77\xe3\x84\xaf\x55\x38\x2f\xff\xa3\x97\xb3\x1f\xc2\x07\xb3\x59\xb1\x7f\xc3\x53\x17\x29\x12\x6f\x28\x3e\x99\xc3\x4f\x68\x19\x29\x19\x00\x54\x74\x47\x72\x8f\x6a\x04\xe3\x72\xe8\x38\x62\x5e\xca\x20\xfb\x74\x06\x0c\x74\x45\x52\xb1\xf6\x29\x9d\xfa\x67\x01\x27\xa1\xd1\x9f\x7b\x64\xa2\x72\xd6\xb8\x50\x52\x8b\x99\x5e\x3b\xab\x33\xc3\x80\x61\xf3\xb1\x1c\xc6\x76\xc6\x0c\x53\xb1\xad\x52\x33\x47\xda\x46\xa4\x76\x53\xa6\xc9\x29\xfb\xf7\xc7\x52\x84\xdc\x65\x74\xc9\x94\x87\xf0\xac\x64\x2d\x99\x0e\x40\xae\xf2\x4b\xa3\x34\x58\x1b\xcf\x42\x98\x89\xc3\x70\x14\x7f\xd3\xe1\x4b\xf5\xe7\xc1\xfa\xb0\xa2\x9d\xc1\xc8\x10\x2f\x9d\x16\xda\x1e\x08\x27\x78\xd3\xf3\xb3\x86\x8b\x42\x84\x6e\x09\x19\xf3\x2a\x37\xe6\x75\x6d\x92\xce\x41\x38\xe9\x8b\xc8\x4b\xbd\x75\x77\x7a\x0f\x8d\x50\x15\x9c\x38\xf9\x92\x56\xba\x9b\x66\x28\x5b\xaa\xd1\x2d\x07\xb5\x5f\xb3\xf9\x33\x60\x11\xca\x23\x7b\x77\xbb\xe4\xbf\x0c\x40\xe0\xc5\x6e\xc6\x06\xd8\x12\x50\x49\xfe\x7b\x4f\xc8\xa8\x62\x13\x1e\xba\x46\x1d\xe5\x27\xfa\x5a\xc0\x54\x67\x52\xff\x3c\xf9\xa1\x6c\xf8\x0d\xb1\x05\xe9\x00\xa1\x8e\xc5\xdf\x78\xb4\xef\xa9\xb4\xac\x41\x81\x82\xcf\xfd\x4d\xe3\xc3\xf4\x87\xa2\x60\x88\xbe\x35\x51\x17\xe8\xa9\x10\xea\x26\x39\xc4\xe7\xb5\x59\x7b\x9b\x78\x42\x07\x37\xd7\xa5\x15\xc1\x7e\xe8\x12\x51\x5c\xcd\xbb\x57\x11\xf6\x98\xcd\x58\x3c\x93\xf5\xd4\x2b\xf4\x1c\xe8\x0b\x4a\xef\x0f\xcf\x88\x01\x6f\x36\x1a\x10\x3d\xa4\x60\xe8\x01\xa4\x14\xf1\xe9\xa5\xe8\xc6\x87\xf4\xf6\x3b\x35\x89\xaf\x72\xc9\x0a\xb3\x1e\x19\x26\x87\x35\x18\xde\x73\xd1\x7c\x99\xe4\xd8\x0d\x97\xfb\xf8\x93\x02\xcd\xab\x10\x36\x49\x50\x8a\x4e\x1e\xe4\xa4\xe9\x35\xeb\xd6\xe8\x14\x9d\xdf\x74\x64\xbf\x15\x58\xc0\xd5\x00\x89\x99\x1a\x8b\x87\x02\x9a\xf2\xa0\xef\x51\x12\x1e\x0f\xb8\xca\xb5\x7e\xec\x31\x85\x80\x61\xa7\x8c\xf4\x29\x8f\xc9\xf6\x13\x6f\xe6\x2e\xb5\x65\x4a\x16\x40\x8a\x1b\xa0\xa6\x98\xe7\x5b\xa7\xd2\x5b\x16\x0c\xc6\x83\x7a\x77\x94\x4b\x09\xf2\x0a\xee\xa7\x4f\xf0\xe6\xca\x6a\xe0\x40\x3f\x40\x71\x24\x15\x90\xce\x9f\x16\x8e\x56\x65\xb5\xc4\x54\x2d\x87\x2f\xbe\xe1\xe8\xb4\x97\x0a\x08\xc2\x34\xcb\x69\x1a\xb5\x7b\xc5\xc0\x01\x21\x1c\x34\xfa\xca\x3e\x4e\x77\x5c\x2d\xf4\x93\x99\x16\x86\x0e\x7b\x0c\x53\x34\x33\xcc\x6d\x40\x55\x63\x6c\x6e\x54\xe4\x34\xb8\xce\x67\x9d\x87\x35\x63\xc5\x54\x45\xde\x17\x71\x31\x99\x3c\x98\xa1\xa0\x3c\xb8\xe8\x9b\x14\x72\x94\xc7\xbc\x60\x8c\x92\x0e\x79\x90\x9a\x61\x2a\x72\x6a\x80\x75\x4a\x47\x80\x42\x50\xc3\x90\xd1\x16\x8d\x8f\xac\xd6\x40\xff\x90\x0d\x90\x27\x5d\x86\x39\xb7\xf3\xdb\x35\x39\xf0\x1b\xd5\x1f\x57\xd4\xba\x29\x17\x83\xca\x7f\x47\xc3\x5a\xfb\xe6\x74\xf7\xf1\x16\x64\xfe\x3a\x7b\xb4\xe6\x92\x62\xdf\xc8\x1c\x86\xf1\xb3\x1b\xc5\x18\x2e\xc4\x49\x0e\x94\xff\xaf\x45\xec\xf9\x17\xd7\x86\xb4\xce\x38\x31\x7a\xa7\xf0\xbb\x4f\xcb\x34\xd8\xa2\xa8\x9e\xcc\xd3\x36\x73\x4b\x27\x72\x7a\x6b\xb5\x11\xc7\xc7\x82\x35\x5c\x11\x9b\x63\x68\x00\xeb\x89\x6e\x99\xdf\xa1\x3c\xa5\x6a\xe8\x80\x80\x8f\x25\xfe\xe5\xf0\x14\xfd\xe4\x62\x13\x31\xe5\x02\x9d\x0b\x77\xdf\x94\xd4\x83\xda\x40\x6d\x39\xdf\xac\x88\xf1\x59\x34\xce\xce\x62\x93\xda\xa5\xbb\x04\x5c\xe5\xba\x0f\x2c\xd5\x21\x7b\x14\xa9\xc8\x62\x83\x8b\x1a\x17\xae\x3f\x2e\x6f\x93\x12\xb3\x06\x83\x24\x35\x5a\x7d\x56\x9e\x73\x33\x4e\x9b\x8a\xa5\xe8\x27\xf3\xa5\x0d\x59\xc8\x37\x91\x17\xe7\x9a\x2c\x4c\xbc\x81\x15\xe4\x83\xb7\x79\xbf\xb6\x57\x5a\x10\x52\x06\x06\x0d\x5d\x0d\x26\x80\x4e\x82\x48\xc4\xdf\xdc\xd5\x23\xa9\x3c\x62\xdc\xd2\x29\xc6\x65\x4f\x35\x9d\x6a\xf9\xde\x33\x63\xf4\x4a\x2d\xf4\x44\xdd\xb9\x40\x68\xef\x22\x6c\x83\x32\xcf\xe8\xf2\x47\x86\xa8\x79\x1e\xe1\x34\x8f\xfc\xef\x9d\x24\xc5\x2d\x2b\x88\x55\xee\x70\x41\x0c\x7f\x79\xa4\x06\x7d\x8e\x6d\xe6\x47\x2c\xd3\x85\x94\xf9\xec\x38\xab\x29\x73\x0f\x4d\x90\xcf\xea\xff\x71\xc5\xcf\xc9\x2c\xcb\x21\xb8\x1a\x20\x57\xed\xa9\x16\x16\x24\x72\x81\xbe\x0f\x29\x4f\x43\xef\xbe\x45\xba\xa9\xb2\x43\x88\x8b\x70\xd5\x02\x8c\x09\x5b\x6a\x16\x2e\x56\x64\xa3\x66\x4e\x9b\x31\x7d\x4e\xfc\x16\x7e\x35\x55\xd3\x5a\xc6\x90\x89\x41\x17\x3d\x40\xc5\x49\x39\xbc\x50\x11\x07\x8d\xeb\x0a\x51\x2e\xfe\xdb\xc6\x4e\x2d\x6e\xa1\x40\xc8\x6e\x5f\xd5\xdd\x82\xa1\xc5\xd7\x28\xa0\xf6\x5c\xff\xee\x51\xbe\x0d\x3c\x58\x74\xd1\x56\x68\x99\xc0\x87\x89\x0d\x8d\xa1\x4a\xb7\x0d\xe0\x00\x70\xd5\x81\x66\xee\x91\x97\x75\x3a\x29\xae\xf2\x5c\xf6\x27\x07\x46\x0a\x97\x23\xaf\x9c\x5d\xf6\x02\x59\xb6\x33\xb0\x82\xe9\x6a\xb1\xa7\xbf\x30\x4a\x79\x9d\x35\x98\xa2\xa5\x57\x3f\x29\x1a\x4c\xc8\xe5\x99\x4c\x61\xd6\x8b\x19\x35\xde\xf8\x1e\xe2\x28\x88\xca\x0a\x8b\x98\x50\xcc\x44\x51\x9a\xf9\x5f\xef\xc9\x7a\x14\x07\xd5\x92\xbe\x59\x7e\xd2\x76\x6d\x94\x14\xf9\x8e\xe8\x68\xe4\x3f\x72\x41\x1a\x6e\xb6\xf1\x66\xe8\x3d\x15\x7d\x5b\x80\x05\x69\x00\x6a\x10\xa7\x35\xe7\xe9\xc1\x32\xa5\xae\x21\xb3\xc6\x8a\xfc\x52\xf4\xfd\xc9\x6d\xc9\x0d\xbb\x00\x73\x10\xdb\xf8\xc5\x3c\x0d\x6d\x83\x96\xd5\xe0\xb9\xc7\xf6\xd3\x1a\x51\xc3\x49\xb9\x5c\xac\x0a\x38\x12\x29\x22\x9e\xd0\x65\xac\x43\xe3\x7b\x3b\xda\x95\xc0\x50\x4f\x64\xfb\x5f\x3c\x26\xa5\xfa\x02\x55\x79\x62\xf4\x91\xa4\x5b\xa0\xcc\xe6\xaf\xb8\x6a\x74\x56\xa8\x7f\x6d\x57\x49\x84\xc1\x1f\x07\xdc\xb5\xc3\xad\x88\x6b\x9b\xa1\x7b\x3b\x32\x9c\x44\x42\x98\x1e\x4f\xf4\xf4\xad\xd9\x64\x6c\xf6\xdc\xd8\x4d\x09\xb8\x89\x1d\xd8\xaf\x2c\x11\x9e\x1c\x04\x48\x0c\xe9\xe6\xbe\x36\x5c\xe3\x84\x85\xc8\x09\x18\xc7\x28\xfa\xec\xe3\xf2\xcd\x0e\xd8\x08\x73\x3b\xc8\xdd\x75\x6f\xd6\xf8\x1a\x10\xd0\xae\x1b\x6e\x88\x7f\xb5\xe8\x35\x7e\x6f\x65\xe8\x07\x45\x52\x29\xc6\x05\x52\x9e\x6a\x33\x04\xbd\xef\xef\x4b\x20\x32\xe3\x05\x99\x8e\xfb\x0d\x3f\x80\x32\x1f\x89\x4e\xb6\x8d\x14\xa9\x08\x72\x00\x0e\x6c\x4a\x3c\x36\x78\xdb\x33\x34\xc3\xf4\x89\xb3\x43\x91\xa9\xbc\xb2\xa9\x4d\x85\x36\x78\xa4\xda\xfc\x8a\xe8\xed\x02\x17\xa8\x2d\x65\xf3\x25\xc9\x6c\xab\x02\x4a\x91\x4f\x92\xc4\xe3\x9a\x40\xfa\xe2\x81\x06\x61\xfe\xf9\xc9\x15\x9a\x24\x4e\xe8\x51\xe8\x02\x33\xa9\x0e\x06\x1d\x6a\x17\x5e\xd3\x42\x66\xca\x84\x33\xfe\xbf\x95\x1a\x07\x18\x9a\x48\x55\x52\x30\x26\x8c\x3f\x5f\xd4\x99\x96\x9c\x42\x7c\x40\x0e\xe0\xb0\xd3\x76\xdb\xc4\x16\x09\x7f\x9e\xce\x24\xde\x64\xe9\xa9\xec\xfb\xec\x27\x35\x48\x79\xa3\xc5\xf0\xf6\x68\x8c\x32\x5c\x27\xb5\x54\x62\x62\x93\x26\xf9\x1c\xa0\x38\x9e\x25\x34\xb6\xdc\xa7\x26\x77\x70\x37\x95\xe8\x2f\x24\xca\x96\xce\x04\xed\x43\x4d\xca\x0d\x3b\x41\x6a\x0a\x5f\xd0\xc6\x73\x07\xd8\xd8\x07\xc6\x4c\x13\x3e\xff\x54\x4f\x36\x34\x60\x12\xd8\x09\xaf\xdf\xb8\x68\xb7\x1c\xc6\x68\x10\x5a\x6b\x41\x39\xdb\x17\x65\xb1\x24\x4e\x1a\x3a\x8f\x40\x5d\xfe\x2a\xed\x42\x2d\x0a\x6d\x36\xd9\x2c\x53\xe0\xf7\x2d\x52\xe6\x37\x02\xae\x54\xbb\xf8\xae\x2b\xb4\x2c\xbf\x82\xc0\x79\xbe\x20\xfa\xf6\x9b\x42\xda\xb2\x0a\xb1\x89\xc4\x00\xf7\xad\xe5\x16\x40\x0e\x27\xe8\x3f\xcb\xdd\xa2\x55\xeb\xb2\xa3\xf9\x1f\xe8\x82\x5b\x99\x08\x93\xc2\x9d\x28\x3b\xc5\x52\xf4\x11\x4b\x9b\xcb\x40\xdb\x6c\x0c\xeb\x80\x06\xa4\xce\x36\x4d\x24\x8c\xfc\xdd\x32\x58\x0f\x00\x9e\x50\x45\x77\x1e\x15\x3d\x0f\x82\x2d\xde\x02\xce\x99\x9a\x34\x96\x09\xca\x0e\x14\x6d\x87\xc9\x91\x64\x70\xf6\xc6\x49\xfc\xd2\x5b\x12\x75\xf3\x06\xa9\x54\x98\x6d\xef\x79\x98\x7b\x93\x6b\x68\x88\x7c\x81\xb3\xec\x7f\x5a\x99\x6b\x34\x4d\xae\xd2\x9c\x9b\x6b\x5f\x94\x94\x37\x26\xac\x84\x2c\x3e\x3c\x34\x98\xa7\x81\x1e\x03\x83\xbf\xb9\x5f\xe1\x33\x05\x80\xa2\x62\x29\xba\x6f\xa3\x36\xd3\x95\xe8\x6d\x26\xee\xec\x3d\xdb\xb5\x4a\xb7\x0c\xb0\x15\x3b\x43\xee\xcd\x1f\xd3\x66\x5f\x1b\x24\x14\xad\xc4\x63\xed\x8a\xdb\x81\xdb\xaa\xaa\xb2\x84\xf1\xf0\x1b\xd9\x37\x56\x05\x18\x69\xf5\xd5\xbb\x83\x15\x36\x2b\x19\x80\x4c\xc1\xc8\xf8\xfb\xd3\xd9\xb2\x1e\xb9\x15\x96\x3e\x66\xed\x15\xae\xd3\x18\x19\x1e\x43\x9c\x13\x69\xad\x19\x93\x78\x39\xb4\xce\x6f\x54\x33\x62\xad\xd1\x1f\x35\x98\xcc\x45\xd8\x16\x66\xc8\xf2\xea\x4f\x6c\x52\xa4\x3d\x6c\xca\x00\x9e\x33\x3b\x78\xa7\xed\x3a\xf3\x5a\x87\x12\x05\xa6\x36\xb6\xdc\xde\x9e\xd8\x43\x62\x8f\xb1\x2d\xae\xc9\x1e\x54\xbf\x41\x19\x92\xc1\xf3\x98\x3b\x8e\x66\x66\xd1\xfd\x10\x05\x1c\xe3\xd8\x3f\x61\x94\x92\xac\x6f\x09\xa1\x18\xac\x8e\x7e\xb7\x5d\xcb\x53\xe2\x9c\x88\x75\x0e\xf7\x9d\xce\xb2\xf2\x07\x00\xfb\x92\xe8\x67\x4f\x5f\xac\x05\xfb\x80\x91\xda\x2d\x41\x78\xb8\xfd\x85\x2b\xf5\x5c\x8a\x72\xd5\xf3\x56\x45\xca\xe7\xb6\x69\xf4\x9d\x30\x30\x6d\x48\xd3\xac\x61\xef\x54\x1d\xef\xf1\xcd\x54\x89\xad\xf0\xd9\x07\xc7\xa9\xfb\x31\xf4\xe2\xe2\xe4\x5e\xdd\xed\xc5\x91\x08\x28\x83\xd3\xb9\xef\x5b\x22\x11\x46\x5b\x53\xa9\x9b\xdc\xcd\x3d\xba\xee\x3e\x31\x21\xb4\x04\xd8\xf9\xc5\xa7\xb2\xce\x46\x88\x07\x31\x4c\x21\xfb\xfd\xd3\x87\x2b\x5d\x01\x54\xc5\x1e\xf1\x79\x56\xfe\xf7\x65\xca\xac\xfc\x96\x10\x08\x41\xac\x68\xf3\x3a\xbd\x3b\x03\x41\x90\x76\x29\x8d\xcf\x0c\x92\x09\x76\x40\xca\xc0\x34\x89\xba\xc5\x62\xdf\x66\xc5\xe4\x01\x15\xfd\xda\xab\x9e\x98\xa8\x7b\x37\x3f\x74\xb8\xf8\x55\xda\x27\x24\xda\xb6\xa7\xc0\x46\xb0\x52\x44\x38\xb6\x21\x86\xdd\x44\xf3\xc4\x84\xb9\x8b\x4c\x4a\x58\x56\x95\x1f\x75\x58\x9b\xa1\x08\x5d\x2f\xd5\x3d\x33\x1e\xdd\xad\x40\x03\xc4\x71\x14\xcb\xce\xed\xea\x51\x0a\x4a\x40\x7d\x51\x59\xef\xd6\xd4\xb8\x13\x35\x64\xd1\xa6\x1e\xb4\x43\xd1\xa5\x23\x0e\x9f\xdc\x7b\xd3\x69\x57\x09\xe2\x75\xc8\xa1\x84\x51\x4f\x68\x7d\xb3\xad\xc8\x0f\x44\xfa\xfa\xe1\xd3\xba\x36\x2f\x53\xc7\xe7\x1e\xe9\xef\x75\xad\x08\xe2\x58\x31\x6f\xf3\xd0\xc7\xe5\x0b\x05\x2e\xa4\xc8\x04\xec\x4c\xfe\xdb\x83\x29\xbf\xbf\x0c\x1a\x49\x69\xb0\xa1\x5d\x25\x91\x70\xba\x71\xec\xe7\xdb\x8e\x77\x48\x05\x09\x95\xda\x5a\x98\x90\x9a\x33\x70\x8a\x2d\x6e\xe9\xbf\xcf\x08\x8e\x6b\x66\x57\x03\x33\xa8\xf2\x2e\x5d\xf9\x1a\x87\xc9\xc4\xfd\x33\xab\xb3\x3e\x0f\x5a\x21\xa0\x16\xc9\xfa\xcb\xfc\x2d\x1a\x89\xa0\x41\x42\xcc\x28\x02\xfc\x4c\x6f\x7f\x4d\x0c\xbc\x32\x69\x37\xe3\x03\xaf\xa5\xf5\x08\x62\xc4\x59\x76\xc3\x73\xb7\x8e\xca\x44\x16\x2f\xe0\x6d\xc3\xe8\xdd\x45\xda\x81\x02\xdd\x4a\x7f\x3e\xff\x81\x85\x3a\x16\xe6\x79\x62\x74\xa2\x60\xed\xd3\x15\xb7\x90\x69\x8b\x31\x92\xda\x24\x21\x2d\xb1\xf8\x9a\x16\x46\xf6\xef\x9f\xcc\x8a\x29\x53\xee\xf0\x78\x76\x7c\xab\x7c\x8d\xa9\xbc\x07\xd3\xf6\x18\xae\xed\x0c\x73\x1c\x32\x20\xb4\x59\x22\xa0\x4d\x50\x89\x59\x24\x61\x9c\xb3\xb7\x67\x23\xd9\x8c\x99\x62\x72\x3b\xb7\x6f\xb0\xb6\x62\x04\xe0\x7e\xa2\x22\x90\xc6\xbb\x4b\xb2\x6f\xc8\xf7\x80\x58\x95\xa2\x8a\xd5\xde\xca\xd3\xd0\x62\x89\xc9\xbd\xb4\xca\x77\x8c\x19\x93\x69\xa2\x16\xe3\x74\x1c\x24\x62\x10\x47\x53\xcb\xaa\x86\xad\x0a\x86\xbf\x5c\x95\xf5\xf4\x33\xe6\x08\x96\xcc\x03\x77\x48\x8d\x2a\xb5\x85\x6a\x7c\xfc\x64\x8b\x8b\x2c\x2b\xb9\xc9\xbf\x28\x93\x46\x16\x05\xd5\xaa\x48\xff\xff\xcf\xaa\x2c\x40\x1f\xbf\x15\x10\x52\x80\x03\x3f\xd9\x2a\xf6\x8b\x8a\x4c\xfa\xcb\xc0\x24\x6a\xdc\x5f\x54\xb8\x4c\xff\x73\x8f\x60\x1f\x09\xee\xa3\xe0\xc5\x7d\xe1\x61\x59\x13\x59\xb0\x4e\x78\x76\xd5\x5d\xe9\x54\xbd\x23\x53\x9e\xe5\x2a\xd7\xb9\x87\xa6\x68\x44\xba\x38\x10\x24\xb5\xbf\xf1\xe3\x25\x3a\xcf\x00\x63\x12\xc8\xe6\x6f\x6e\xb0\xf6\x82\x3d\x4a\x02\xbe\x45\x20\x11\xa2\x7c\xdc\x51\x91\x32\xae\xbf\xc4\x9c\xf3\xdb\xef\xa8\xac\x65\x1a\x9a\x41\xc8\xdb\xaf\xff\x7a\xab\xa6\x26\x6c\x93\x30\x25\x3c\x36\x0b\x13\x4e\xa7\x35\x87\x89\xe2\xc4\x73\xe2\x7c\xad\x33\x65\x13\x57\xf0\xd2\xba\x74\x8f\x16\xb2\xa4\x8f\xcf\x4d\xfc\x7e\x49\xf6\x85\x24\x1c\x43\x7e\x7b\x2c\xcb\xcd\x9f\x51\x18\xf7\xac\x71\xc0\x5c\x0e\xe4\x8f\xa5\x78\x0d\x21\xd4\x4a\x48\xa6\x2a\x49\x7d\xc2\x53\x1c\x9d\x88\x8b\x7d\x76\x4f\x1f\xdd\x2d\x89\xc5\x0d\x58\xaf\x42\x2c\x2d\x2a\x9a\xb2\x4b\x23\x98\x51\x18\x5a\xbc\x65\xab\xa0\x82\x57\x3e\x26\xed\xaa\x12\xd2\x64\x59\x53\xfe\xba\x41\xd9\xdb\xf7\x1c\xd0\x10\xf4\x1c\xe3\x2f\x07\xd2\xee\x4e\x0d\xf2\x95\x61\xf3\xdf\x51\x84\x31\xb4\x1c\xee\xdf\xb6\x75\x9e\xe7\x30\xb2\x39\xcd\x4f\xaf\xbc\x04\x4b\x02\x5d\x7c\x53\x7a\xc4\x5f\xa7\xc8\xd5\x7a\x0e\xa8\x86\x9c\x05\xe0\xae\xbf\x42\x73\x70\x16\x22\xa2\x97\x94\xfd\x80\x8f\x1d\xe3\x24\xc2\x65\x24\xf4\x5b\xce\x78\x6e\xf5\xcb\xd9\x58\x6e\x03\x6a\x81\x01\xa6\x64\x2c\xab\xe6\x71\x27\xb5\x24\x34\x4e\x21\x10\x70\x7c\x41\xe5\xfb\x9f\x37\x34\x7b\x20\x21\x35\xb9\x08\x78\xf4\xa5\xcd\xed\xaa\x3e\x1e\xc1\x1c\xcb\x5a\x7e\x77\xea\xee\x7d\x04\x84\x0c\xfc\xf5\x37\x8e\xd7\x0e\x23\x97\xc2\x03\x58\x8c\xac\xdc\x75\x42\x21\x12\x41\x5a\x47\x26\xe3\x1a\xb8\x07\x13\xbb\xb0\x30\xef\xb7\x2c\x1d\xa4\x36\xdc\x83\x14\xaf\x1b\x75\xf7\x28\xed\x4e\x84\x58\x98\x71\xf6\x39\xfe\x19\xab\x50\x0d\x05\x80\x51\xd0\x56\xcb\x27\x8f\x49\x12\x18\x0b\x83\x87\x68\x52\x02\x9c\xe5\x19\x3f\x0d\x51\x33\x3f\xba\x4d\x49\xd2\x94\x4d\x86\xf9\x43\x53\x74\x62\x83\xc9\x64\x5d\x19\xe0\xbe\x77\xb8\x32\x1a\x5b\x2e\x96\x22\x78\x43\xa2\x79\x1f\x7a\x88\xf9\x8d\xcf\x97\x25\xc6\x4b\xa1\x47\x68\x8b\x4a\x81\xb1\x73\x88\x56\xec\x53\xb0\x45\xc2\xd9\xa3\xfb\x34\x62\xb2\x0d\x49\x7c\x79\x3c\x01\x66\x43\x8a\x8b\x47\xeb\xaf\x12\x0b\x06\x5d\x21\x0c\x92\xa6\x76\x05\xb2\x16\xd9\xff\x2e\xe8\x54\x15\x9a\xab\x21\x4c\xd2\xce\xfd\xf7\xcb\x03\xde\xd7\x93\xb4\x76\x1e\xe4\xbc\xa5\x6b\x9c\xb0\xdc\x72\xe1\x57\x3d\x2e\xf9\x22\x73\xbb\xe7\xc6\xb7\xfb\x2f\x38\x7b\x6e\xac\x10\x3a\xe2\x04\x0e\xd5\x94\x3b\x2a\xa8\x92\x9d\xe1\x2d\x14\xc7\x4d\xd2\x12\x84\xb4\xd3\xe4\x4b\xc5\x4c\xe3\x7f\x76\xf3\x22\xb5\x9f\xc4\x6f\x82\x77\x76\xba\x1f\xe4\x59\x11\xf4\x90\x05\x5d\x44\x1c\x52\x45\x22\xcd\x3e\xad\x4d\x77\x7b\x36\xc4\xc4\x85\x38\x91\xcc\x2d\x7c\x6c\x87\x4e\x4f\x31\x89\x1b\xc7\x30\x06\x6a\x5e\x73\xfb\x50\x89\x55\xc5\x5f\xd5\x73\x56\x4c\x7d\x96\x09\xa0\x8c\x46\x97\xdf\xfa\x68\x82\x29\x99\x14\x5a\x48\x4c\x49\x14\xac\x79\xf2\x89\x5a\x6c\x38\x91\x91\xb9\xa6\x8e\x56\xa0\x0b\x62\xd6\x04\x81\x21\xfe\xb2\x9f\x1e\xd6\xb3\x04\x2d\x43\x33\x3e\x77\x5a\xd9\xa1\x53\x95\x9e\xf3\xf5\x8a\x9e\x21\x41\x2c\x22\x4f\x74\xf4\x84\x42\x28\xe0\xa8\x6f\xae\xb0\x3f\x4d\x56\x91\x93\xa8\xb3\x18\x7f\xd0\xf0\x5e\x07\x02\x4b\x68\xca\xe5\xa6\x6f\x54\xc6\x1c\x4c\x42\x3c\xa8\xc8\xd1\x15\xdc\x37\xa5\xcf\xa8\x51\xe8\x3a\xac\x4a\x5a\x3b\xa8\x2d\x03\xf7\xb2\x17\xb2\x4b\x93\x75\xe7\x5d\xa7\x44\x03\xee\x4b\xcb\xe4\x56\x38\x47\x95\x83\xe8\x98\x32\x42\x2a\x20\x86\x49\x93\xea\x53\x9a\xa3\x0e\x20\x10\x8b\xb7\xf2\x9f\xc4\xb2\xa5\x8b\x68\xb1\x14\x7d\x7e\xc3\x68\x75\xa6\xc5\xa4\xa1\x17\x3a\x7c\x35\x9b\x71\xe9\xbd\xbc\x71\xbe\x16\x59\xea\x3e\xd5\x66\x6e\x47\xbf\xae\xe8\x5f\xf6\xd9\x8c\x0f\xf7\x41\x3f\xbc\xf7\x3c\x7b\xad\x30\x0c\x12\x69\xac\x57\x87\x88\x8f\xdd\x5a\x2c\x45\x3b\x77\xea\x43\x06\x7a\x43\x78\xd8\xf8\x94\x0d\xd9\x00\xe5\x8c\x76\x6a\x74\x22\x25\x81\xfa\xb0\x45\x8d\xc9\xf8\x6b\xbd\x53\x05\xa6\xaf\x5b\xdc\xc5\x1c\x48\xfc\x20\x5e\x33\x34\x62\x2e\x2b\x28\x85\xe6\xf1\x9f\x36\x2a\x3a\x66\x6c\x69\x5b\xa9\x99\xfb\xd0\xcb\x72\x03\xe7\x00\x68\xf9\xae\x40\xd1\xe5\xf3\x07\x20\x64\xf0\xa0\xf1\xe3\xa7\xc5\xd2\x8c\xb9\x73\x7b\xd9\xb1\x58\xf0\xa4\x32\xda\x8c\xf8\x6a\x8d\xfc\xa8\x0a\xa7\x6a\x95\x92\x01\x08\x76\x54\x3e\xbc\x4f\xf6\x05\xa0\x6f\x02\xca\xe7\xc7\xf2\xae\x22\xb2\xe0\x40\x3f\xa9\x11\xa7\xbc\xdc\xd2\x55\x76\x92\x9d\x75\x8c\xbf\xf2\xf1\x05\xea\xa6\x27\xd2\x0f\x4d\x0e\xc9\xdf\xfd\x7a\x36\xc7\x9d\xc6\x17\xaa\x46\x63\x16\x5d\x2a\x4f\x39\x34\xc1\xf9\xe2\xee\x47\x35\x21\x49\x9f\x98\xa6\xd0\xe2\x2a\x35\x73\x37\x61\x65\x68\xc1\x25\x5c\x17\x29\x77\x4e\xf8\x5f\xc6\x14\x66\x57\xf0\xde\xd3\x8a\x56\x48\x5d\x90\x18\xa3\x25\x6f\xc9\x49\x0c\xaa\xac\xc6\x9a\x74\x3b\xf7\x75\xb3\x67\xf6\x14\x7d\x08\x18\x63\x76\xe3\xbe\xd4\x46\x3c\x8a\x94\x6c\x2b\x02\x76\x56\xcd\x98\x56\x19\xe1\xe2\xa5\x25\x8a\xf2\xec\x00\xa0\x0c\x15\xcc\x3d\x36\x81\xbb\xf6\x6b\xd7\xae\x6e\x59\x2f\x9c\xcf\x4d\xd6\x08\x47\x80\x56\xa1\x68\x93\xe5\xfe\x5b\xdb\x4e\x9b\xac\xd7\x4b\xf1\x9a\xad\x5a\x93\xda\x09\x29\x4c\x24\x0f\x27\x28\xdb\x41\x1d\x10\x56\x6d\xf6\x91\x1f\x54\xa0\x50\x0b\x02\xca\x37\x67\xff\x40\xe1\x06\x26\xa2\x35\x0c\xc7\x1a\x64\xeb\x44\xec\x1a\x14\x1c\xb1\x75\x91\x5e\xd7\x9b\x14\x26\xba\x8d\x39\xeb\x11\x49\x2a\x74\x99\xa2\xf4\x0f\x76\xe9\x68\x9d\x1f\x10\x52\x4b\x7c\xa7\x7d\x67\xfa\x62\xa0\xba\x64\xac\x70\x59\x59\x5a\x8c\x6f\x86\x41\xe0\xb4\x58\x4c\xfe\xf2\x37\x95\x8c\x1f\xd5\x81\xc3\x17\xf9\x45\x4f\x8e\x1b\xaf\x57\x98\x88\xa9\xfa\x24\x18\xcf\x7d\x32\xb3\x9f\xdd\x3b\xa7\x58\x8a\x86\x1c\xba\x5c\x4b\xb3\xca\xa0\xea\x20\x10\xa0\xac\xf8\xc1\xb9\xa9\xca\x44\x05\x09\x29\x6f\x38\xfd\xea\x69\xa5\xf3\xe5\x51\x3e\xf3\xd7\xcc\x45\x17\x5c\xac\xa4\x66\xa6\xc8\xdd\x53\xce\xd0\x2f\x8e\xe9\x04\x9f\x00\xd1\x64\x26\xdf\x58\xd4\xae\x05\xeb\xee\xf3\x41\x7b\x85\x2d\x6d\xfc\x00\xb8\x30\x60\x82\x92\xd1\x97\x3d\x8e\x74\x2e\x72\xe0\x80\xca\x34\x6a\x1a\x9f\x2c\x48\x28\x7b\x0b\xb3\x8a\xc2\x9e\x0e\x61\x11\x26\xc1\x01\x9f\x62\x63\x59\xd9\xc7\x77\x68\x6b\x33\x90\x07\x1d\x84\xd3\x79\xbf\xc7\x07\xf3\x63\x33\x00\x61\xcd\x61\xd4\xa8\xe8\xaa\x97\x85\x30\x3e\x19\x28\x96\x01\x0b\x82\xc6\x03\x6f\x69\x2d\x35\x54\x87\x3e\xcf\x9c\x8c\xbf\xbe\xa6\xe3\x5a\x4c\xe1\x59\x90\x73\x0a\xea\xcc\x9b\x83\xaa\x36\x5b\x92\x1a\xcd\xd8\x9e\xe9\xbc\x5a\x21\xdb\x48\x1b\x7d\xf1\x61\x0d\x4a\x0e\x83\x2a\x49\xa5\x27\x8c\x2f\x3f\xd8\xd2\x5a\x62\xba\xc1\x82\xa8\xf7\x4a\x9f\x46\x83\xb7\x11\x05\x66\xfc\xde\xd3\xe8\xff\xa1\x8e\xf1\xb2\x38\x8b\x6f\x4e\x4f\xd5\x56\xb6\x2a\x61\x25\x09\xfa\xaf\xb4\xae\x0e\x2b\xee\x92\xa1\xaa\xaf\x3d\x73\xa9\x56\xd5\xc2\xfe\xd0\x62\xba\x95\xa9\xb1\xae\x38\x27\x23\x08\xb2\x48\x8d\x2d\xc2\xf9\x54\x41\x9b\xb7\xae\x8b\xa1\x9b\x68\xe4\x0d\x32\x2a\xf4\x4d\x9b\x39\x67\x2e\xeb\x59\xdd\xa1\x2f\x83\x18\x10\x0b\x32\x87\xbf\x99\x18\x10\x15\xe4\xd4\xc6\x02\x0d\x28\x01\x38\x20\x14\x66\xf5\x71\x0b\x9f\x9a\x36\x51\x81\x7e\x4c\x27\xb4\x60\xab\xf2\xcf\x9f\x6e\x54\x32\x34\x58\xe6\x58\xfc\x97\x0f\x64\x3f\xbf\x0a\x3d\x26\x6b\x17\x5f\xbe\xfc\xfc\x4f\x8f\xe1\xd4\xb3\xd8\xb7\xc5\x57\xb5\xf3\x01\x19\x71\x3e\xaa\x40\x6a\xb3\x36\x5d\xae\x95\x2f\xbe\x0f\x4c\x3b\xf4\x61\x10\x28\x59\x6d\xfe\x7e\xc1\xe6\x08\x48\x00\x1c\xce\xd3\x37\x6e\x78\x75\x52\x06\x18\xa8\x56\x19\xf7\x4f\x0f\x4c\xc7\x36\x76\x28\x77\xe1\xc0\x2a\x07\x7c\xa2\x4d\x53\x15\x06\x39\xa2\x16\xe2\x30\xd0\xe1\x37\xce\xcf\x6a\xe4\xeb\x5e\x93\xeb\xfe\xd6\x2b\x1a\x62\x0c\x7c\xdb\x05\x38\xe3\x6e\xf2\xbf\x78\x67\x68\xe2\xb2\x19\x35\xf6\xcc\x3a\x59\x10\x21\x36\x43\x57\x78\x42\xcd\x01\xe2\x8c\xbf\x14\x6d\x5f\xa0\x6b\x57\xc5\x67\x81\x4d\xe2\xe6\xbf\xb9\x66\xa4\x16\xa0\xb9\x4e\xe6\x1b\x9d\x2a\x76\x92\xf2\xc2\x4a\x4d\xa3\xf9\x38\x8f\x63\xcb\x3f\xb8\xfc\xba\x96\x17\x3c\x49\xac\x23\x5d\x13\xfa\x7e\x5c\x46\x88\xb2\x66\xde\x41\x0e\xf8\xa7\x91\x8b\x45\xad\x8a\x8a\xcf\x98\x34\xe4\x22\xaa\xd1\x07\x76\x6b\x5c\x13\x07\xd4\xb3\xaa\xdd\x85\xe1\x5a\x92\x08\x7c\x1f\xf9\x29\x93\x7f\x55\x9b\xb2\x40\x32\xa4\x1e\xe5\x9b\xb1\xea\x37\xff\xbf\x94\x12\xb8\x13\x2b\x3f\xca\x2f\xb2\x8e\x88\x93\xf2\xe9\x66\xed\xca\x9e\x56\x2e\x4d\x2d\x72\xb9\x8f\x1d\x54\x58\x71\x04\x07\xf1\x43\x12\xf9\xed\x91\xf1\x6d\x8a\x5a\x97\xcf\x47\x81\xbb\xb5\xc5\x29\x15\x3e\x16\x29\xbe\xff\xd3\xb7\x0a\xaa\x1a\x09\xab\x4c\xfc\x7f\xc6\x8b\x99\xd5\x71\x44\x68\xcf\xe4\x7e\x6e\x6b\x80\xa9\xe7\xc1\xb8\xb6\xe6\x1f\xf3\x0f\xaf\x2b\xee\xc1\x65\x5b\x43\xa3\x3f\x56\xf8\xa1\x6e\x90\x6a\x48\x63\xa7\x70\xec\x79\x45\x42\x06\x20\x87\x12\xc0\xcc\xe1\x1d\x2d\xbd\x67\x2d\x6d\x06\x52\xfc\xe0\x11\x05\x8f\x82\xc0\x61\x96\xf5\xe0\x60\x6d\x21\x00\x19\x60\xf0\x5c\xd4\xa3\xec\x90\x2d\x53\x64\xb1\xdd\xa5\xb9\x93\x6d\x3c\xbe\x2c\xe2\x54\x1e\xb9\x91\x6d\xd7\xf6\x36\xe5\x4e\x01\x9f\xbf\x2b\xed\xd6\x50\x32\x89\xc0\x0b\x45\xa9\xa8\xb9\x5e\x5b\x13\xe7\x53\x00\x1d\x94\xa2\x88\x83\x4e\xcb\x61\xc5\x32\xb4\x51\x66\x58\xb1\x99\x7f\xff\x9c\x0e\x75\xe3\x81\x2c\x0b\x46\x4f\xe6\xce\xa6\x4a\x01\xe3\x2c\x36\x67\xe9\x6c\x05\x4b\x08\xe6\x88\x8e\xeb\x07\x4e\x8f\x93\x9f\xd4\x32\xe4\x9d\x0b\xd6\xa5\x45\x96\x09\x94\xed\xbd\x9f\x3b\x2a\x09\x15\x73\x7b\x18\x03\x37\x3f\x75\x88\xbe\x35\x6b\x00\x73\xdc\xb0\x30\xfe\x98\xb6\x80\x29\x74\x30\xa4\x0c\x01\x66\x60\xf9\xab\xcf\xa7\x80\x73\x8d\xb6\x2e\x6e\xfb\x46\x47\x2a\xc8\x2b\x16\x87\x3e\xb9\x2e\x0b\x91\x85\x38\xbb\xc8\x85\xb1\xbc\x19\x0a\x77\xc1\x2c\x89\xc2\xf9\x1e\x64\x0f\x32\x9b\x7c\x3d\xb7\x33\xfb\x2e\x2c\xe4\x39\xc4\x05\xc9\x1e\x67\x23\x3f\x6e\x78\x9a\xac\x0b\x60\xba\xb9\x58\xa3\x86\x21\xbf\x26\x20\xd2\xe7\xce\x28\xf3\x8b\x0e\x70\xcb\x42\xd6\x6d\xfb\x1d\x5a\x77\x91\x42\x27\x19\x0d\x13\xfd\xde\x5f\xbf\x30\x42\xae\xbf\x4e\xda\x24\xf9\x3f\xbe\xa3\x98\x02\x6b\x0c\xa9\xf8\xe3\xa7\x57\xc8\xec\x12\x20\x3a\x00\x1a\xad\x02\x64\xbf\x12\xfe\xe1\x3a\x60\x02\x92\x84\x91\xff\x1c\xaf\x2d\x43\xb0\xea\x28\x19\x42\xcf\xfd\xe3\xc6\x84\x56\x64\xd6\x00\xf7\x7a\xb9\x57\x5f\x93\x53\xfa\x8c\xfa\x8e\xfc\x0c\x80\xfb\xc0\x82\xac\x94\x1e\x6f\xaf\x41\xc1\x09\xd4\x1f\xfa\xb0\xfd\xc9\x0a\x61\x81\x84\xb0\x88\x7d\xc7\x54\xd9\xb2\x6c\x30\x65\x64\xf5\x2b\x0a\x1f\xf2\x3a\xf5\xf4\x48\xb0\x6e\x72\xbf\x7e\x40\xa8\x5d\x88\x3d\x7a\xc5\x52\xf4\x57\x6b\x82\x52\xaa\x55\x08\x6d\xed\x82\xbc\xf0\x98\xd6\x08\x43\xd8\x12\x48\x5f\xfe\xcb\xe3\xb5\x89\x5c\x98\xe8\xbd\x7d\x6c\xa8\xec\x0d\x30\x4a\xaf\x15\x5b\x3a\x0b\x0d\x3f\x3b\xc8\x6f\x6b\x25\x2a\x37\xa4\x74\xd7\x99\x8e\x61\x52\xc5\x97\x51\x53\x7f\xb4\xb7\x95\x59\xa0\x4b\x37\x36\x8d\xdb\xeb\x23\x54\x76\xa9\xcb\x14\x1d\xce\x3c\xa6\xb1\xc5\x4d\x93\xb8\x9e\xc3\xe6\xa7\x45\x22\x78\x61\x5d\x78\x81\x90\xf5\x1b\x43\x5b\x97\x34\x41\xb8\xce\xf4\x61\x13\xad\x9d\xea\x4e\x7d\xfb\x10\x04\x56\xb2\x21\xf0\xa7\xc7\xdb\xd4\xe4\x82\x37\x41\x46\x5c\x35\x42\x25\xf9\x0a\x39\xb2\x83\xc7\xb4\x15\xae\x84\x82\xe4\x63\x8c\x57\x2f\xd6\x7f\xc7\x55\xc9\xc4\x31\xbb\x74\x83\x74\xa5\x03\x36\x72\x99\x7b\xb2\x37\x68\xc9\x35\xa7\x87\x89\xcb\x9e\x77\x30\x75\x5e\x61\xeb\x56\xb4\xfc\x57\xbb\x25\xec\xd8\x3b\x8b\xe9\xc9\xee\xee\x91\x1d\x94\x44\x57\x9d\x33\x1e\x56\x69\xb8\x98\x6f\xb3\x5e\x1e\xef\x89\x4c\x1a\x99\x0d\x97\xae\xc7\xbe\x7f\x85\x36\xbb\xe0\x01\xc4\xab\x9e\xe8\xd5\xce\xf4\x8d\x9b\x1c\x52\x9a\xac\xc3\xdf\x26\xe4\xe3\x82\xa2\xcd\xfc\xe4\x20\x41\xf3\x1c\xc0\xea\x62\x50\x63\xdd\x0b\xaa\x78\x76\x1d\x72\x51\x36\x91\x9e\xdc\xb2\x42\xa1\x24\x73\xba\x40\xf4\xa3\x59\xc3\x15\x4e\x07\xd7\x34\x3e\xde\x22\x95\xcc\xc2\xa3\x88\x01\xf5\x27\xb8\x7f\x58\x4a\x21\xd3\x68\x61\x6e\xe7\xad\x19\x1a\xa3\x93\x42\x20\x28\x0d\x03\x6f\xea\x8e\xde\x13\xdd\xb8\xff\x3c\x9a\x8a\xf2\xc5\x19\x9c\x3a\xa3\xfb\x85\xf5\x0a\x6a\x4f\x70\x10\x3b\xeb\x62\x29\xba\x48\x93\x11\x30\x51\x00\x7d\x01\x01\x14\x2e\x54\x56\xd0\xb2\xc1\x15\xe1\x28\x47\x9d\x92\xf9\xaa\xd0\xc7\x88\x6d\xf2\x92\x6e\x6d\x21\x14\x70\x80\x99\x6c\x93\x36\xd6\x24\x7a\xa5\x42\x71\x3b\x8f\x6f\x91\xa0\x41\xc6\x53\x6f\x4b\x61\x13\x3e\x30\x20\x9b\xaa\xf7\x6c\xd5\xbb\x3d\x84\x06\xa2\xd9\xff\x76\x42\x02\xad\x40\x9a\x50\x31\x87\x2e\x48\xe4\x62\x20\xc2\x65\x0a\x4d\x95\x67\xd7\xcc\x6f\xb9\x25\xa3\x7c\x2d\x54\xf2\x3e\x73\xbb\x14\xcd\xe8\xee\x8e\xb3\xe5\xeb\x5f\xe3\xa0\xf5\x5a\xe0\xd4\x81\x45\x94\x8f\xc8\x7d\xfd\x2e\x0d\x47\x27\x49\x8a\xb1\x49\x61\xb1\x7a\x04\x06\x94\xcf\xe6\xfd\x68\x9c\xa4\xdf\x59\x08\x96\x21\xae\x11\xaa\x76\x4d\x6f\xe8\x13\xb0\xb5\xef\x87\x2e\x7f\x52\x57\x3d\x96\x2d\xe1\xa1\x59\xf3\xe3\x3b\xd2\x04\xd7\x86\x4c\x56\xf0\x26\x92\xe9\x46\x9f\x5d\x32\x46\xcf\xfc\x1c\x94\xcc\xc2\xdd\xd1\x99\x0d\xe6\x9c\xbb\x7e\x3e\xfe\xcf\x37\x4f\x5d\xa4\xd8\xbb\x1b\x67\x88\xeb\x16\x8a\xd4\x8c\x36\x00\x56\x17\x68\x1f\xd6\xd2\x91\x0a\xf0\x03\x41\xed\x5c\xfc\x84\xa6\x1b\x11\x3a\xd0\x4f\xaa\xd4\x9d\x62\xb7\x08\x25\x1c\x9d\xcf\xad\x9c\xaf\xd3\x05\x2d\x8a\x98\xd2\x9b\x7e\x79\x23\xdf\x92\x8d\xc2\x1a\x05\x7e\x86\x25\xfc\x95\x57\x24\xa8\xdc\x1f\x3a\x48\xd5\xba\xdb\xb5\x41\x96\xe5\x5b\x10\x36\x6d\xc8\x8c\x5d\xe6\x99\x3b\x85\x77\x58\x41\x6c\x75\x6a\x3e\x77\x59\xa5\x65\x0a\x32\xa0\xc4\x11\xa0\xf2\x10\x65\x25\x07\x25\xa1\x58\xc2\x76\xe1\x12\x65\x5d\xa7\x58\xda\x1d\xdf\xe7\x2f\x07\xf3\xfa\xe8\xea\xc0\x01\x38\x40\x19\xb5\xf9\xc2\x94\x5d\xea\x80\x05\xe1\x40\xee\x67\x37\x2a\x0b\xa5\x98\x3a\x77\xf4\x6e\x8f\x22\x4f\x0e\x90\x2c\xb4\xa3\x75\x27\x78\x07\x78\x15\xf4\xfc\x6d\xa0\xae\x83\xc5\xd1\x5d\x82\x8f\x68\xc1\x4a\x28\x4e\xe8\x6b\x3b\x54\x50\x17\x27\x63\xd7\x27\xd6\x29\x03\x4f\x30\x80\xd4\x2f\x87\x34\xce\x0a\xf7\x69\x1a\x02\x2e\xa9\x33\x51\xc6\x14\x81\x70\x9c\xec\xab\xf4\x21\x06\x01\x3c\xcf\x8e\x0b\xe3\xc8\xac\x54\xc3\x99\x12\x47\x99\xd5\xc8\x35\x57\x2b\x45\x34\xa8\x42\x3f\x00\x18\x15\x4b\xd1\xa7\xdf\x1c\x91\x84\x48\xd6\x98\xe7\x45\xe7\x8e\x68\x84\xc8\xdc\xac\x46\x35\xe4\x2b\xfa\xa2\xc5\x8e\x02\x01\x07\x0d\x2e\x08\x5c\x98\x27\x4a\xd0\xb5\x01\x54\x0f\x64\x6e\xc5\x3b\x5a\x0c\x74\xc2\x6a\x35\xed\x2b\x5c\xb1\x5f\x63\xe2\x12\x2c\x95\x2a\x72\x9f\xdd\xcc\x4f\xc7\x1a\x50\xc9\xec\x9b\x2e\x74\xdd\x9f\x3d\xd2\x75\xe0\x30\x8e\x2b\xc6\x30\x01\x1b\xd6\xae\x6e\x16\x56\x88\x29\x8c\x45\xa0\x1f\x24\xde\xb7\x74\x22\x19\x07\x0f\x42\xa6\xc7\xbb\xe7\xac\x82\xbe\xda\x90\xe5\x59\xcc\x93\xdd\x31\x6d\xa4\x2a\xec\x04\x13\x0f\x37\x67\xa7\xbe\x75\x06\x50\x8b\xd7\xf5\xc6\x1d\x6b\xb2\xbf\x63\xf1\x50\x94\x11\xfd\xe3\xe4\x17\x05\x08\x60\x80\xf9\x2c\x8a\x71\x67\x41\x29\x5a\x41\x1d\xc5\x6e\xfc\xf0\x32\xe5\x21\xd7\x10\x6b\x9c\x45\x6f\x3a\xd9\xa7\xd5\x4f\x10\x0e\x1c\x91\xa2\xe4\xfe\xf1\xdc\x45\x0a\xd1\x8c\x6b\x73\x7f\xb7\x2e\xb2\xff\xd0\x75\x05\x2d\xf4\xff\x54\x14\x01\x14\x50\x65\x85\xd6\xcf\x37\x68\x5c\x3c\x07\xb9\x9e\x9f\xce\x47\xec\x3f\xda\x22\x20\x5c\x41\xa2\xfa\x69\x1a\xff\xbd\x5d\xda\x39\x71\x11\x66\xf1\x2c\x9a\xbb\x6f\x78\xf2\x15\x09\x21\xe6\xc1\xbd\x62\x1a\x15\x20\x87\x6f\x96\xcf\xfd\x57\xbb\xa6\x97\x40\xb6\x81\x9a\xba\x5b\xd6\xf8\x27\xc1\xcb\x75\x58\xfa\xf8\xc2\x21\x65\x61\x63\x88\xb9\x3c\x5d\xc1\xc7\x9a\x47\x64\x1d\x68\x1e\x48\xb6\x0c\xe6\xd9\xe4\xfa\xe5\xeb\x4a\xc5\x52\x34\x6e\x81\x46\xfe\xef\x9b\x9d\x1c\xaf\xef\xdd\xa1\x75\xe0\x61\x22\x26\x54\x3d\xae\x01\xfd\xc0\xac\xf9\x42\xd8\x63\xc5\xa3\x9a\xb0\x6b\x00\x1c\x84\xd5\xe5\x70\xd1\xb5\xb7\x6a\xc9\x48\x15\x20\x01\xe3\xb7\xdd\xaf\x00\xac\x21\x5f\xcf\xc1\x18\xc1\x8f\x8e\x14\x4f\x2f\x10\xc3\xdb\x7c\x86\xe8\xc4\x05\x5a\x9b\x2e\xa0\x04\x57\x13\x0f\x91\x7b\x7b\xb2\x46\x2e\x83\x55\x44\x30\xef\xe2\xef\x5a\xa4\x15\x8a\xd0\x74\x10\x4e\xe1\xd9\xdc\xff\x1c\xe6\x29\x00\xdf\x37\x29\x92\x92\xf7\x97\x13\xf1\x32\x0c\x29\x97\x50\x8e\xba\xdf\x62\xd9\x3f\xdb\xd4\x4e\x93\x0b\xd4\xfd\xe1\xd5\xe3\xdb\x15\xd0\x3d\xd5\x3d\x1b\x75\x40\x36\x2b\xe3\x5a\x22\x32\x5e\x91\xc4\x01\xe4\xfb\x61\x2b\xcf\x24\xff\xbe\x5b\xf5\xc6\x75\x5c\x99\x25\x32\x4c\xb5\xd7\xa5\xce\xdb\x79\x84\x9e\x66\xbd\xa4\x3f\x30\xa0\x4a\xdd\xac\x5a\x7c\xb1\x1e\xd9\x09\xa7\xf7\xf2\xdf\x9f\x7e\xb4\xe5\xa1\x89\x79\x09\x8e\xe3\x5d\xfd\x0a\xb7\xce\x2b\xaf\x61\x4e\xf0\x82\xc3\x32\x7e\xd8\xc8\xf3\x88\x49\x01\x1f\x91\x2a\x94\xb6\x0a\xce\x04\xa1\x16\xe7\x4c\x5c\xfa\xda\x14\x2d\x8e\x33\xf0\xee\x3c\xeb\xc7\xf3\xf7\xf4\x8f\x48\xb2\x86\x32\x08\x80\x18\xe6\xf8\x64\xea\x1e\x6b\xd0\x57\x71\x94\x5f\x6b\x44\xa7\x01\xc0\x06\x8e\x54\xd5\xa5\x7d\xe3\x87\x0f\x28\xf8\x59\xb1\x14\x7d\xf7\x48\xd6\xfc\x81\xe3\x13\x06\x2a\xbd\x30\x2f\x7b\xba\x90\x5b\x0e\x93\x07\x94\x47\xed\x59\xfc\xb4\xec\x00\x8b\x65\x23\xea\xe8\xf8\x83\x8a\xc2\x98\x47\x89\x47\x52\x71\xfd\xfd\x6d\xaa\x04\x1a\x65\x3e\xe1\xab\x9a\x8d\xdb\x10\xd4\x91\x5c\xf6\xbc\xf4\x61\x8d\x46\x0f\x45\x62\x64\xac\xac\x28\x93\x38\xc4\x0f\x38\xc6\xcf\x7a\xe4\xc7\xd3\x9d\xc6\x33\x7b\x5a\x12\x9f\x13\x62\x40\xf0\x1a\x82\xab\x24\x89\x1d\xbd\x33\x46\xab\x55\x53\x05\x09\x32\x35\x03\xac\xa9\x5e\x28\x3a\x0e\x19\xe0\xa4\xf4\x7f\xdd\x20\x11\x1b\xb6\x39\x11\xf9\x66\x26\x9b\x2c\x5c\x77\x87\xb2\x7f\x03\x56\xc3\xd8\x0f\x7c\xa7\x63\xa2\xe6\xd9\xa9\x05\xb0\xd0\x8b\x4d\x1e\xe3\xf8\xb3\x6d\xa2\x90\x0a\x20\xf5\x98\x43\x6c\x16\xee\x7c\xb1\x45\x3d\xc8\x03\x38\x59\x15\xc3\x5f\xd2\x6f\x35\xe9\x04\xd6\xf9\x13\x5e\xef\x8d\x07\x75\xba\x2a\x9f\xc5\x12\x01\xba\xf7\x84\x4e\xd5\xa8\xda\x16\xb0\xb8\x7f\x63\x0f\x6a\x7a\x4f\xb2\x8e\xcb\x15\xcd\xef\xdc\x5f\x1e\xd3\x77\x8a\x76\xcf\x10\x5e\xe6\x27\xca\x60\x85\x0d\x39\x40\x59\x68\x7f\x34\x11\x8f\xc4\xbc\xcd\x50\xf8\x5c\xa1\x65\xb8\x00\xf9\x01\x4d\xf6\x1f\x1a\x23\x1e\xe6\x5e\xdd\x64\x2d\x84\x68\xe4\xa2\x51\x99\x12\x17\xa0\x44\x35\x67\xed\x2c\xfe\xcc\x16\x41\x60\xda\x89\x5c\xcc\xed\xca\xdc\x00\xc2\x55\x28\x94\xbc\x73\xfb\xc4\xae\x5e\x8f\x12\x1f\x9a\x61\x2a\x79\xf2\xb7\xbd\x9a\xba\x07\x23\xc8\x33\xec\xef\x3f\x34\x32\x79\x0d\xba\x90\x92\x3a\x49\x45\xae\xa3\xaf\xee\x6a\xd9\x06\xe9\xd5\x20\xf4\x60\x32\x72\x9e\x3f\xfb\x56\x87\x8a\x91\x91\x3a\x32\x6d\x96\x93\xf5\xc9\x84\x9c\x6b\x15\xcb\x98\xf2\xc0\x9c\x16\xaa\x70\x90\xc4\xeb\xdc\x92\x69\x32\x21\x07\x94\xdd\xb7\xb6\xe5\xe7\x6e\x4d\xaf\x76\x2b\x72\x92\xb6\x6c\xb4\xbc\x53\xf2\x67\x9d\x56\x38\x73\xf8\x3b\xdc\xeb\x2c\x89\x8d\x5b\x19\xb4\xcf\xbd\x1b\xe8\xfc\x0b\xe4\x42\x41\x3c\xb8\xbf\x47\x5f\x1b\xce\x57\x96\xf1\x07\x30\xc2\xd1\x5b\xb0\x1e\xab\x7d\x39\x1e\xf4\x8d\x31\xe9\xf5\xd8\x61\x0b\x16\x67\x9c\x3b\xd3\xe2\xe1\xd9\x36\x69\x61\x70\x9b\x36\xaa\x8a\x6c\x14\xf9\x41\x5c\xac\x96\x9a\xc6\xdb\x4f\xe9\xeb\x5b\x6a\x30\x25\xca\xbd\x7e\x40\xb6\xa4\x2c\x08\x1c\xc1\x9f\xd5\x01\xe6\xe7\x34\x48\xcf\x01\xe9\x86\xce\x5f\x4d\xd4\x65\x7c\x09\xa9\x39\x0d\xd6\x8e\xe4\x86\xf1\xf8\xc3\x63\xb5\xa4\x2b\x84\x52\xcd\xec\xf2\xed\x43\x13\x1f\x82\xd8\x80\x52\xcf\x9c\x8b\x15\x6b\xa0\x45\xdf\x86\x15\x75\xef\x48\x6d\xfe\xb0\xe4\x77\x65\xa6\xd2\x9f\xbf\xea\xe8\x98\x16\xb3\x6d\x24\x44\x8e\x7d\xda\xe0\x9e\x1d\xe2\x2a\xa0\x0d\x39\xb6\xf5\x97\x95\x13\x74\xcf\x8e\x28\xaf\x1b\x93\x37\xfe\xeb\x87\xc7\x28\xe8\x4e\x00\x29\x25\xd5\xb4\x85\x33\xba\x4d\x22\xae\xe7\xeb\xd5\x2e\xd8\xaf\x0e\xaf\x0e\x30\xd0\xf3\x7b\x3b\x24\xfa\x33\xa7\x9b\xe9\xae\x75\x3d\xa2\xe0\x1c\xc4\x75\x43\xcc\x84\x6c\xa2\x1d\x2f\xa5\x56\xd1\x0f\x5b\xb9\x3b\xbf\xdc\x24\x3f\xa9\xce\x1f\xc7\xbb\x6d\x6a\x9a\xbd\x8d\xcb\x7c\x7f\x8a\x8a\x5d\xc3\x80\x06\x02\xbd\x2a\x35\xf3\x0b\x6c\xee\x5e\xd6\x21\x97\xb9\xa3\xee\xad\xf2\x5a\x67\xf5\x75\xcf\x8a\xaf\xcc\xf8\xdf\x17\xe5\x0d\xd6\x80\xbf\xad\x61\xd6\x90\xca\x74\x5f\x77\x6a\x9c\xe4\xb0\xb5\xc2\xa3\x77\xaf\xe6\xe7\xe8\x3a\x40\x03\xa4\xe8\xa9\x14\xa6\x3d\xa6\x79\x64\x48\xfd\x10\x58\xe2\x38\x18\x3f\xd7\x10\xd4\x80\xf5\xad\x62\xdf\x9b\xe4\x44\x85\xcf\xae\x57\x2a\x0d\x9b\x84\x3e\x60\x8e\x39\xba\x56\x93\x24\xa9\x38\x20\xe8\xe6\xcb\x92\x1f\x18\xa4\x25\x3a\x94\x8b\xd5\x26\x28\x9b\x79\x97\xec\xd9\xa8\x7e\x68\xfd\x90\x4b\x14\x5f\xea\xa2\x16\xb9\xf8\x42\xf5\xe0\x98\xe4\x2f\xe7\xb4\x18\xc1\x33\x95\xcb\x95\x73\x56\x87\x0e\xf1\x18\x40\xa8\x3b\xac\x19\xf7\xcb\xd0\xde\x0f\x01\x2e\xfa\x90\xb2\xd8\x61\xac\x17\xf5\xdc\xf2\xf5\x57\xaf\x2a\xad\x8f\xef\xbe\xe3\xa4\xdc\xb8\xac\xc8\xd1\x47\xa7\x02\x6d\xe2\x86\x86\x6e\x5c\x80\x5b\x5d\x4c\xbe\x6b\xec\x46\x75\x99\x02\x34\x6d\xc8\xe0\xe7\x6f\x6f\x50\xc7\x77\x02\xca\xe5\x3b\xf2\xff\xdd\xa6\x87\xd4\x00\x08\xe0\x22\x5f\x39\x94\x0d\xe6\x0d\xe4\xb8\x60\x9b\xd6\xb8\xbf\xa6\xf3\x62\x3d\x93\x67\xf2\xf5\xbc\x25\x10\xed\x99\x91\x0d\xeb\x36\x1b\x09\x2e\x87\xb4\xaa\xa8\xed\x1d\xd2\x56\x1d\x39\x7e\xeb\x80\x5f\x7e\xcb\x21\xc9\x39\xaa\x43\x8a\xd9\xe9\xcc\xbf\x67\x32\xe7\x72\xda\x84\x38\xa8\x0a\xf8\xa1\x6a\xe6\x6e\x7e\x5b\x27\x28\x00\xde\x75\x8d\x1a\xda\xa2\x4b\xc1\x7e\x64\x43\x72\x64\x70\xf6\x61\xa0\xc0\x87\x4e\x85\x25\x8f\x5f\xd8\xac\x79\x48\x54\xe3\x86\x1c\xdd\x73\x58\x4f\x52\x7d\xa4\xf1\x04\xf3\x3b\x03\x65\x3d\xf1\xac\x22\xc2\x6c\x41\xfa\xc7\x0e\xc8\x0a\xb6\xcc\x97\x50\xe5\x7e\xb0\x4a\x16\x52\x2e\xf4\x7d\xd1\xf7\xc9\x7f\x58\x5b\x00\xcf\x16\x26\xa3\x0a\x12\xbb\x14\xf2\x6b\xd6\xa8\x7b\xcf\x88\x67\x13\x2e\x12\xb7\xab\x2e\x4f\x7c\x23\xac\x71\x25\xaf\xa1\x2b\xb5\xea\x3e\x0c\xba\x05\xda\x9b\xbb\x64\x99\x46\x76\x62\xa5\x19\x71\x13\x87\x6b\xbc\xa6\xc7\x29\xe4\x22\x07\xa4\xaa\x9c\x13\xc4\x46\xaa\xde\xd9\x89\xa6\xd8\x82\xa1\xf2\xc5\xcd\x4d\x76\xca\xe5\xbf\x3b\x47\xd9\x27\xae\x2a\x70\xcf\xbe\x55\xc9\x22\x42\xc7\x69\x24\x13\x40\x57\xed\x94\x38\x57\xd5\x69\xb0\xd7\x3f\x64\x6b\x76\x6c\x91\x92\xe4\xb4\xb7\xac\x04\x2c\x54\x8e\xeb\xf4\xa1\x64\x71\x67\x84\x0e\x6a\x84\x80\xb2\x4f\x9c\x50\x90\x2e\xa3\x77\xa7\x8d\x50\x47\xbc\x04\x00\x83\xf7\xb6\x26\xac\x0e\x6f\xeb\x26\x19\xc8\xf1\x0d\x9a\x90\x11\xa2\x1c\xd5\x91\x90\xe2\xe2\x67\x5a\x66\x72\xac\xd0\x84\xbe\x20\xc5\x8e\x7e\x48\xbe\x3e\x0f\xd0\x1a\x6b\x24\xac\xd7\x84\xf2\x00\xb6\x68\xec\x57\x79\x87\x4f\x78\x89\x37\x5e\xe2\x39\xe0\x6a\x48\xe1\x36\xc5\x9b\x6f\xdb\xc5\x03\x85\x8b\x1c\x07\x62\x2c\xb4\x93\x4f\x69\xdb\xfb\xfc\xa0\x9b\x55\x59\x32\xdb\x9f\x7c\x93\x7c\x8b\x30\xae\xe3\xe3\xaa\xf7\xe0\x44\x0d\x11\xe0\xbb\xdc\xe7\x15\x4b\xd1\x6d\x47\xce\x23\x85\x22\x5a\x17\xf7\x3c\x7e\x5e\x9c\x83\xa7\x49\x81\xd6\x2c\xef\xeb\xf5\x83\x62\xc5\x21\x44\x1c\xe0\x8f\xf2\x03\xec\x40\x5c\x9c\xad\x8f\x8a\x4f\x39\xae\x54\xeb\x20\xf4\x01\xf7\xad\x7f\x5c\xa2\x08\x18\x40\x87\x0c\x14\x4b\xd1\x91\xe3\xe3\xf5\xbc\x06\x58\x26\xf0\x93\xdd\x31\xb9\xdb\xfa\x15\x8e\x03\x21\xae\xcb\xc9\x6c\x85\x8f\x46\x62\x75\x78\x18\x38\x5c\x00\xc8\xf8\xf5\xc6\x0e\x75\xdd\x97\x7c\xd8\xff\xc0\xd7\xbd\xc7\xd7\x3a\x4b\x4c\x60\x7c\xf8\x40\x96\x31\x33\x9d\x3f\x92\xab\xf6\xf1\xd7\xb5\x2a\x2c\xab\x08\x61\xde\x59\xa8\xc8\x5a\xa1\xc0\x64\xb3\xae\x1f\x9b\x2f\xdd\x49\x95\x42\xb1\xf1\xdb\xf8\xbb\xad\x28\xb8\x53\x02\x82\xa2\x1b\xfa\x0e\x72\x13\xc0\xef\x93\x7b\xf4\xbd\x40\xac\x32\x10\xe4\xb1\x9c\xbd\x58\x2d\x3e\x62\x63\x06\x1c\x93\x36\xfe\xf9\x0d\xad\x78\x42\xd4\x52\x09\x6d\xcd\xdc\xe1\x19\xa2\x0c\xa7\xa0\x22\x94\x86\x3e\xdf\x33\x4c\x24\x54\xfd\x90\xaf\x67\x1a\xaf\x0d\xb9\x78\x14\xb2\xe6\x46\x22\xb1\xd0\xb3\x53\xa6\x61\x2e\xb1\x20\xc5\x72\x7b\x53\xbe\x5b\xf4\xff\x2b\x84\x8a\x8d\xe5\x1b\x1f\xd4\xc9\xc1\x5c\x65\x6c\xa8\x36\x6c\x5d\x47\x3e\x92\xe0\xf3\x1b\x77\x0b\xf0\x8e\x42\x50\x0b\xe3\x53\xfa\x9d\x5b\xb2\x2d\x73\x17\x06\x94\x98\xc0\x71\x44\x63\x25\x1b\x86\x56\x6e\xd5\xc6\x3f\x7c\x3f\x4c\x04\xce\x9a\x85\x89\xcf\xeb\x23\x60\x90\xa2\x4a\x45\x48\x00\x3d\xa2\xc5\x97\x01\xd0\x48\xba\x6c\x46\xf5\x1d\x0d\xc1\x09\x03\x9b\x50\x14\x34\x04\x15\x76\xad\x22\xd7\x78\x65\xe2\x83\xbe\x5b\x1f\x26\x53\xb3\xf8\xde\x8d\x49\x3c\x1c\x2a\xa2\xc4\xc5\x52\x74\x99\xb6\x7a\xb1\x12\x67\xb8\xa1\x9f\x0c\xa6\x0d\x3d\x99\x6c\x83\x0d\x84\x8a\x40\x6e\xbb\x06\xf5\x79\x20\xb0\x79\x09\xd4\x34\x8e\x7b\x93\x33\xd9\xb2\xe3\xa0\x2a\x6b\xb5\xe9\x8f\xaa\xae\x89\x45\x9b\x36\xf1\x05\xef\xb7\x99\xfb\xb1\xc3\xe7\x40\xd7\xc6\x55\xbe\x6f\x17\x1d\x80\xab\x21\x3f\xaf\xf9\x99\x63\x2e\xd6\xca\x91\xa0\x8e\x00\x1f\xb2\x59\x7d\x6d\x33\xbf\xef\x64\x02\x20\x98\x4e\x98\x28\xaf\x7f\x7a\x8f\xda\x20\x07\xac\xcf\x96\x9b\xbc\x4f\xe6\x5b\x10\x57\x21\xb6\x84\x8e\x4c\xbe\x78\x8b\x5e\xc9\x09\xd5\x70\xf6\x48\xe6\x68\xa3\x92\x09\x47\x4a\xf8\x86\xaf\xb7\xeb\x6d\xd9\x6a\x28\x22\x71\x61\xf0\xd3\x1a\xec\x03\x5c\x2f\xfe\x52\x71\xdf\xdf\xb8\x21\x9b\x54\xf1\x6e\x32\xaa\x82\x80\xaf\xb6\x8a\xdf\xe2\xe7\xfa\x32\xfb\xb0\xea\xc0\xe1\xca\x12\xd6\x7e\x55\xb7\xc8\x94\xeb\x28\xbe\x78\x4c\xe9\x40\xdb\x21\x9f\x0a\x80\xfb\x94\x61\x6e\x9b\x04\x5c\xd1\x9a\x4f\xf5\xf1\x3d\xd2\xc5\x95\xe4\x3c\xfc\xc4\x9f\x6c\xcd\x02\x53\x55\x31\xc1\x15\x7d\x86\xf2\x4c\x7f\x05\xf4\x7c\xa8\xaa\x46\x3f\x75\xb3\xbc\xde\x64\xad\x27\xc3\xb3\x15\x54\xb8\xb7\x87\x8b\x24\xc7\x16\xb4\x4e\xe9\x20\x00\xc7\x21\xa6\x18\x79\xcd\xd9\xbb\xb2\x47\xfa\xa3\xc9\xa9\xbd\xed\xa6\x8b\xb5\x7c\x2e\xfe\xeb\x5a\x7a\xaa\xaf\x6f\xd7\x59\xb1\x21\xb6\x84\x06\xfd\x03\x05\x65\xbe\x2f\x4c\x20\x5c\xe3\xe9\xcd\x1a\xd5\xc0\x83\xd8\xe2\x63\x44\xd1\xf1\x4d\xc2\x1b\x5f\xbf\xae\xd8\x33\xb3\xd8\x33\xa3\x38\x77\x0e\x93\xf6\x78\x50\xcc\x67\xc5\x9e\x91\xf9\xdc\x93\x9a\x00\x6a\xc5\xe1\xda\xcc\x9c\x8f\xfb\xdd\x87\xb3\xe9\x89\x05\x1d\x80\x61\x43\xe8\x8c\x66\x57\x79\xfe\x65\x9c\x06\xce\xc7\x3e\x48\x7c\xce\xff\xee\xd4\x70\x0e\x40\x31\xc2\x55\x41\x76\xba\x47\x1b\x43\x02\xe6\x96\x30\xf6\x79\x0c\xdf\xe5\x52\x73\xe3\xb5\x99\x33\x68\x86\x94\xaf\x3c\x2a\xac\x54\x7a\x85\x70\x6b\x1c\x88\xd3\xed\xcf\xef\x08\x9d\xa7\xe5\x16\x0a\x00\x25\x9c\x57\xb7\x78\x7b\x2b\x1d\xb4\x26\xda\x46\x4f\xd8\x4a\xa9\x58\xd3\xa3\xf3\xec\xc1\x22\x22\x30\xe0\x95\xa1\xae\x6d\x53\x33\x9f\xb5\x25\x44\x18\x23\x0f\x01\xf3\xbc\x19\x5c\x4f\xdf\xd8\xf3\x1f\xad\x38\x43\xff\x2d\xcf\x45\x8a\xcb\xd8\x21\xf7\xd5\x8d\xaf\x85\x8d\x67\x44\xd2\x03\x30\x0c\x13\x29\x29\x23\x7a\x48\x23\x72\x0b\xa1\x7b\xc1\x05\xf9\x8f\x35\x9a\x7c\xad\x07\x4c\x98\x69\xea\x14\x96\x3d\x24\x38\x5d\xc8\x91\x3c\xa3\x67\xba\x35\x3d\x1c\x5e\x0f\x2a\xc2\x3d\xc6\x4b\x37\x67\x75\x67\x03\xe4\x12\xdf\x86\xb8\x46\xea\x5d\x6a\x0d\x9d\xff\xc3\x1d\x93\x34\x3f\x74\xde\xa0\xb4\xff\xad\x76\x85\x52\x5c\x09\x31\x0b\xb8\xc6\x1b\x47\xb3\xc7\x89\x38\xac\xd7\x1f\xfd\x64\xa7\x44\x85\x80\xef\x13\x13\x31\x15\x40\xdd\x11\x7c\xf9\x15\x05\xb7\x23\x4c\xae\x4c\x9e\xf9\x0f\x0e\xd2\xd7\x68\x41\x2c\xd4\x36\x9a\x85\x05\xfb\x65\xb2\x48\xc2\xc0\x63\x4d\xb2\xfc\xe2\x23\x3a\xb0\x46\x70\x22\x9a\x9e\x6f\xa7\x1c\xaa\xf0\xd8\x3e\xe9\xe8\x02\x8d\xe6\xce\x99\xa4\x42\xdc\xe9\xf6\x8d\x19\x4c\x3b\x95\xc6\x60\x18\x5c\x59\xab\x08\x42\xdf\x36\xc3\x20\x80\x62\xf7\x8b\xca\x86\xb9\x7a\x1f\x7f\x7d\xa4\x0e\x29\x5f\x8d\x51\x6a\xe6\xbe\x3b\x48\x79\x96\x0c\xd3\x60\x6a\x6e\x75\x5d\xc2\xc5\x43\xd0\x49\xe2\x7e\xde\xde\xa3\xc4\x19\xdf\x83\x26\x02\x0e\x43\x82\xf6\xbd\xdd\x91\x5e\x26\x71\x90\x15\xbb\x46\xd6\xbe\xfc\xd9\x20\xd9\x01\x44\xa9\xd0\xed\x5f\x37\xeb\x83\x3c\x0e\xc4\x89\x9e\x43\xbf\x6c\x3a\xcd\x2a\x32\xb9\xd5\xe2\xe1\x64\x4c\x3a\x15\x2f\xff\x94\x16\x7e\xaa\x84\x15\xcb\xa2\x79\x9b\xaf\x50\xb9\x9f\xe4\x7c\xbb\x09\xde\xd2\xf6\xcd\xa1\xad\x22\x6e\x7d\xe2\x01\x75\x55\xaa\x1f\x24\x9d\xb0\xaf\x8c\x11\x94\x3f\x64\x41\x91\x0f\xe7\x47\xdf\xcd\x31\xbf\x6b\x12\x05\xfa\x73\x77\x29\x5a\x76\xa0\x8c\x30\x64\xf1\xac\x6b\xdd\x28\x05\xdf\x41\x6c\xee\x72\x80\x19\xd0\xa6\xd3\xea\x4e\x7f\xa7\xc2\x68\xd3\xf1\x2f\x36\xef\x1d\xad\x14\x44\xb5\x4c\x2d\x55\xdc\x9d\xe4\x31\xa1\x90\xbb\xcc\xff\xb0\x5d\x52\x19\x31\x72\x5d\x80\x81\x0d\x18\xc0\xcf\x08\x80\xf0\xde\x8b\x84\x75\xfb\x01\xa8\xb2\x82\xf9\xa5\xfe\xf4\x01\xf1\xd5\x08\xd9\x33\xb1\x65\xa5\x32\x4b\x17\x26\x33\x0e\xe1\x36\x95\x11\xe3\xb1\xe1\x66\xfa\x46\xa7\xdc\xa8\x68\x66\x78\x24\x27\x05\x64\x46\xa1\x09\x1c\x13\x05\x34\x49\xb4\xbf\x70\x70\xa4\xf8\x85\x10\x65\xe2\x99\xee\x5f\xef\x6f\x91\xcc\xe7\xcb\x88\xb8\x70\xc3\x37\x1e\x92\xd1\x9f\xcd\xc4\xc4\x97\x44\x9f\x54\x59\x27\x7e\xc0\x47\x56\x0b\xfe\x59\x4d\x36\x21\x2e\x03\x69\x22\xf1\x5d\x59\xa8\xad\xdf\x25\xc4\x4a\xf7\x6d\x4e\x9c\x2a\xcb\x0b\x87\xb4\x60\x5b\xb9\xdd\xb7\x74\xa8\xaa\x2e\x55\x68\x21\xae\xd0\x31\xeb\x59\xdd\x6d\x63\xcb\x81\x49\xe3\x79\x22\xd5\x34\xb8\xa1\xa8\xdf\x75\xec\x6c\xcf\x54\xf9\x90\x67\xf6\xb0\x91\x33\x63\xc9\xa6\x6c\x11\xde\x0f\x30\x0c\xb2\xe0\x4b\x6e\xda\x44\x2d\x08\x23\xe0\x02\x6c\x11\x8f\x84\x0e\xf1\x33\x13\x12\x85\x99\x1b\xb2\xd4\x94\xb4\xf3\xa5\x2b\x7b\x14\xae\xdb\x97\xf5\xf2\x70\x6b\x40\x41\x1d\x54\x41\xba\x7d\x34\xff\xd3\x8d\xda\x66\xdf\xb0\x52\x91\x32\x5b\xb9\xef\x49\x19\x55\x17\x28\x4b\x75\x73\x4b\x83\x51\x59\x56\xa7\x95\x24\xbe\x47\x3b\xa5\xf5\x53\x28\x04\xf8\x45\x3e\xa3\xb7\x97\x67\x73\x41\x47\x0e\x24\x14\x2e\x79\x54\xd9\x50\x4a\xac\x90\xaf\xd9\xcd\xdf\x76\x7f\xcb\x26\x96\x01\x58\x45\x80\x69\x9b\x8b\xc6\xd8\xf0\x29\xba\x34\x1e\xf1\xa0\xe3\xa4\x83\xe0\xf9\xf9\x3d\xca\x3e\xbb\x2b\xd9\x5a\xed\xef\x0b\x16\xd3\x75\x24\xf0\x6b\xa4\x8c\x1c\x24\xf1\xcb\xa3\xb6\xba\xdf\xc4\x55\x05\x58\x9f\x91\x08\x4f\x85\x33\x99\xa0\xe6\x76\xfb\xe3\xd8\x16\xe7\x2e\x71\xc8\xff\xd6\xf6\xcb\x14\x92\x65\x99\x50\x48\xfd\x2b\x5b\xb0\xd9\x75\xeb\xd4\x39\x08\x0c\x07\xc4\x03\xbb\xef\x9c\xae\x34\x95\x2a\xce\x24\xed\xb9\x2b\xc4\x9a\xac\xe5\xeb\xae\x5e\x53\x5c\x07\xb8\xea\x1a\xda\x20\x3d\x77\x00\xb0\x05\x99\x1e\xfd\xef\x0f\x89\xd6\x36\xa2\x66\xe8\xd6\xb9\x56\x48\xfe\x8f\x93\xf5\xc9\xd7\x84\x3b\x2a\x72\xb7\x40\xeb\x4b\x7a\x76\xc3\x47\xa6\x5c\xbb\xdc\x34\x7e\xea\x69\xe9\x04\xc1\x30\xf0\x6b\xaa\x3c\xfa\x9f\x4f\x25\x33\xee\x61\x22\x7c\x79\xd3\x04\x9e\x6b\xf5\x83\x6a\x95\x77\x08\x72\x07\x74\xba\x4f\x60\x0b\x9c\xea\xd6\xbb\x2f\x52\x34\x80\x38\x43\xe3\x07\xcb\xd4\x96\x36\x97\xec\x7b\xea\xec\xf9\x57\x55\x8b\x56\xd1\x9f\x4e\xeb\xc3\xdd\x4e\xb2\x12\xe7\xe8\x6e\x2d\x81\xc5\xfd\xa4\x91\xe0\xfc\xb9\x7f\xb8\x60\x94\x66\x85\x62\xcb\x51\x6e\xec\x26\xa5\x6b\x62\x23\xc7\xb2\xf9\x62\x9b\xdc\x8f\xbd\x96\x09\xb9\x80\x49\x9f\x44\xf3\x1c\x69\x5e\xb3\x8a\xd3\x15\x90\x62\x38\x57\x04\x2c\x2e\x2a\xad\x59\x7c\xed\xd5\x1f\xda\x90\xe0\xcf\xeb\xc7\xb4\x2e\xe7\x17\x7d\xe3\xc2\x67\xf7\x2b\x52\x55\x21\x46\x3e\x63\x89\xe5\x3e\xa5\x76\xe3\x92\x6d\xf5\xf1\x73\xff\xd5\x56\xf9\xed\x18\x56\x49\x90\x16\x43\x95\x7e\x4e\xb1\xe0\x35\x6e\xee\xfb\xda\x06\x41\x80\x1b\x7c\xb0\x8a\x97\xfb\x17\x2e\x10\xfd\x1c\xae\x4b\xc3\xe3\xc0\x33\xa7\x95\x78\x49\x51\xb5\x9a\x6e\x7d\x75\xcb\xe3\xe4\xc6\xc1\x16\xc5\xe6\xc2\xe4\xcd\xfa\xd8\x03\x85\x75\x48\x7d\x54\x4e\xf4\x61\x0b\xed\xfb\x95\xfd\x95\x4c\xcb\x89\x45\x04\xf8\xfc\x64\x75\x4e\xfd\x9a\x6b\xba\xa4\x13\xcc\x0c\x1e\x2c\x54\x21\xee\x99\x7c\x23\x4f\x6c\x46\x87\x3b\xb4\x54\x8d\x9b\x52\xcf\xcd\xf2\xa8\x07\x90\xba\xc5\x52\x64\xdd\xa8\x59\x17\x43\x05\x13\x39\xc7\xfe\x73\x69\xe3\x66\x1b\x92\xa4\x8c\xe8\xce\x71\xf2\x83\x80\xcb\xb7\xc8\x7b\x7c\x8b\x45\x71\x25\x5b\xe7\x9d\xd9\x70\x94\xfb\xf4\x99\xb1\x5a\x86\x15\x56\xed\x20\x41\x61\xa6\xbc\x2e\xef\xa2\x8e\xcc\x00\xb9\x71\xbe\x7c\xdf\x86\x94\x21\x0c\x81\xd8\xa3\x1d\x75\xbd\xa5\xb9\x4e\x10\x68\xcb\x4a\xa2\xdb\xa9\xde\x19\x25\xe5\x54\x08\xcf\xb8\x82\x8f\x73\x15\xd7\xb1\xcc\xa7\x65\x12\x57\x53\x38\x0d\x71\x85\xdd\x4d\xba\xd9\xec\xea\x13\x69\x36\x38\x7d\xce\xcc\x62\x29\xba\xe9\xc1\x4b\x33\xf8\x1d\xc0\x0d\x9d\xcd\xb4\x73\x43\x8a\x17\xd5\xd9\x04\x41\xfe\x8b\x53\xb5\xe1\x70\xb1\xb2\x29\x21\xe2\x16\xae\xdd\x24\xbd\x5d\x1d\xf8\x35\x86\x04\x1c\x5c\xad\x8b\x10\xfb\x89\x17\x30\x9e\xae\x8f\x52\xa6\x47\x6c\xc5\xbd\xff\x7f\x37\x49\x47\x9c\x2c\xbd\x62\x0b\xaf\xb4\xca\xd7\x77\x48\x15\x70\xb6\x57\x01\x7a\x6d\x2a\xb4\xc0\xe0\xac\xd7\xc7\x2b\xea\x2f\x80\x9a\x89\x7c\x73\x01\xd4\x55\x46\x8a\xc3\x3a\x5c\xb9\xcb\xdb\x2e\x95\xe1\x86\x38\x16\x82\xad\xcb\x5b\x21\xd5\x39\xeb\x0d\x39\x96\x71\xc5\xbc\x11\x22\x96\xf9\x26\x19\x10\x30\xee\x86\xd7\x27\x6b\x7f\x21\x36\xc5\xb6\xe8\xa8\x6a\xcb\xd8\xad\x38\x39\x95\xc3\xc4\x67\x86\xeb\x03\x0f\x80\x26\xa9\x91\xf1\xd1\xb3\xca\x18\x1c\xa0\x65\xb6\xc2\xff\xfb\x2b\xe4\x30\x18\x25\xd2\xd8\x7e\xa7\x29\xcf\x98\x21\xa5\x5c\x30\x35\x61\xd5\xbd\xf2\x68\xd6\x0b\x6c\x23\x54\x5b\xb9\x98\xfb\xe8\x21\x6d\xdc\x06\x24\x03\xd6\x7b\x26\x2b\x7c\x20\xe4\xb4\xf2\xdb\x8c\x9f\x3f\x22\xd3\x80\xd9\x5c\x5f\x26\xdc\xab\x86\xfa\x0a\x4c\xb8\xb7\xcd\xfc\xe4\x07\xf9\x43\x5d\x0c\x5d\x46\x2e\xe3\x83\x3b\x4f\xbe\x30\x2a\x4b\x56\xf2\x4d\x81\xba\xcf\xd9\x97\x99\x95\x4c\x96\x2f\x31\x31\x99\x67\x34\xad\x3c\x21\x48\x91\x51\xa1\xca\xbb\x52\xb2\x01\x5a\x44\xb9\xe5\xe0\x5e\x5d\x6a\x8b\x56\x21\xe5\x73\x6b\x05\xe7\x09\x39\xbd\xd4\x4f\x6c\x5c\x74\x40\xa5\x82\x11\x54\xa3\xca\x51\x45\xf4\xd4\x65\x4f\x46\xe6\x93\xee\x13\xad\xad\xcd\x96\x16\x7a\x7e\x8b\x32\xd7\x7c\x65\x3d\x3e\xe6\xf1\x77\x37\xee\x48\x98\x13\x84\x11\xdb\x3e\xb8\x53\x2a\x5f\x5b\x52\x6a\x25\x9a\xb7\x53\xe5\x31\x03\xc4\xd5\xb5\xfe\x7e\xaf\xbe\x43\x97\x49\x03\x22\x82\x39\xbf\xeb\x6b\xaf\xc9\x63\x51\xa1\x10\x5a\xc4\x6d\xc9\xb8\xbf\xf2\xa2\xde\x9c\x62\xdb\x22\x44\x6b\x77\xe3\x8e\xac\x39\x39\xb0\x0c\x70\xba\x86\x9e\x41\x21\x9e\x66\x71\x36\xc0\x35\x98\x45\x38\x46\x3c\xa1\x81\x57\xb4\xc6\x18\x7e\xe9\xed\xfd\xcb\x54\x79\xda\xab\x21\x62\xd0\x1b\x0b\xb5\x67\x26\x2b\x6b\xba\x10\xaf\xaa\x57\x1c\xd4\x36\x76\x82\x14\x60\x78\x62\xaa\x2a\xa6\xea\xc2\x64\xd2\xa4\x69\xfc\x56\x88\x9e\x99\x6c\x4d\x0f\xcb\xa5\x35\x8f\x04\x81\x9f\xf6\x3f\x7f\x34\x51\x5a\x22\xac\x54\x94\x85\x15\xb9\x59\x8f\x8f\xd7\xca\xa7\x90\x32\xa1\xf7\xc4\xe5\x7f\xe0\x6c\x1a\x48\x28\xa3\x24\xb1\x04\x7b\xde\xdd\x4a\x6e\x0e\x30\x2f\x44\x9b\xc6\x8f\x95\xbe\x69\x19\x50\xcc\x7f\x7a\x6c\x4c\x36\xec\xf4\x4d\x9b\xd3\xd3\x93\xac\x97\x16\x59\xd3\xac\x29\x97\xe8\x25\x95\xb6\x04\x67\xc6\x1d\x62\xbd\xa7\x03\x10\x0e\x50\xa5\x12\x7f\xf4\xe4\xa9\x1a\x41\x92\xf1\x58\x85\xa3\x0a\xf1\x58\x55\xa2\xc5\x46\x65\x14\xa4\x85\x49\xee\x37\x4f\x8d\xd2\x5e\xb4\x18\xc1\xa2\x87\xd8\x17\x39\x10\x17\x7b\x7b\x93\xb6\xc5\x27\xf7\xb4\x68\x18\x58\x29\xf7\x77\xd1\x1d\xd2\x30\x3d\x8a\xea\xf1\x29\xd7\xfd\xf5\xb0\x47\x95\x2d\xa2\x8c\xbe\x9b\xa9\xaf\xdf\xb3\x5b\x9f\x2b\x16\x08\xf6\x98\x57\xf5\x41\xdc\x14\x9a\xe3\xa5\xf4\xc5\xdb\x3b\x14\x19\x82\x00\x52\x8f\x92\x38\xe4\xdc\xb8\x50\x66\x47\xf5\x86\x6f\x13\x4e\x50\xa9\x1e\xd5\xd7\x25\xa2\xaa\x5d\xe6\x40\x3e\xbb\x99\x35\xb7\xaa\x7b\xbd\x85\x35\x30\x4b\x68\x91\x4d\xad\x41\x26\xba\x20\xde\xe0\x02\xb9\x3b\x00\x6c\x4b\xf4\xd3\x87\xa8\x16\xcc\x15\x2e\xb8\x74\xfc\x43\x77\x4a\x0b\x02\x75\x88\x99\x84\x5d\xf4\xc1\xc1\x2d\x85\x1b\x93\xb8\x48\x51\xf3\x3d\x81\x0c\xae\xbd\x73\x7b\xe7\x30\xc7\xd0\x5c\xdd\x96\xfa\xdf\x64\x25\x45\x6e\xe7\xa4\xa1\xc2\x3c\xfd\x5a\xfc\xd1\x67\xb5\xec\xc4\x27\x75\x04\x03\x41\x16\x64\xac\xab\xba\x2e\x0f\xea\xa4\x04\xff\x17\x0b\xd9\x7b\x77\x11\x70\x91\xec\xee\xdc\x4f\x27\x6a\x31\x88\x2d\x26\xe5\x6e\x25\x71\x1b\x1d\x4f\x28\xa0\x3e\x09\x1d\xc1\xa0\x47\x65\x29\xee\x6d\x6e\x89\xed\x6f\x88\x32\xcc\x8f\xe3\xbc\x96\x29\x1f\xfc\xbe\x22\x8d\x4c\x08\x86\xb6\x78\xe5\xf5\x2f\x29\x7a\x98\xb0\x02\x93\x26\xc5\x1b\x8b\xe5\xd6\x23\xfe\xc8\x16\x6f\xd2\xb0\x41\x71\x1a\x99\xcd\xbd\xfe\xac\xda\x9b\x01\x9c\x1b\xfc\xed\x1d\xfa\xc6\x5f\x2a\x14\xcc\xf2\x5b\x67\xa5\xf1\xbd\x5f\xd9\xae\x12\xfd\x59\xa7\xcc\x9b\x08\xe2\x20\x4e\xbc\x98\xe7\xfb\xbd\xa6\x18\xe9\xc1\x40\x0e\xf5\xcf\x1b\xdc\x32\xf5\x19\x70\xf2\x08\x3f\xdc\x6d\xab\x15\xfc\x8a\x49\x8e\x45\xbf\xd3\xb6\x6c\xa6\x9e\x22\x9d\x8e\xff\xd0\x10\x99\x11\x98\x84\x7a\x84\xf2\xa3\x2a\xe7\xcd\xee\xdb\x9f\x4d\x92\x2a\x21\xb6\x04\x7d\x28\x9b\x3a\xdc\x66\x68\x9c\x6d\x0a\x01\x43\xaa\x17\x3f\x2b\xba\xb5\x10\x08\x72\xab\xf1\x81\x3b\xb3\x0f\xdb\x21\xfc\x00\x73\x0a\xe6\x7f\x76\xe8\x30\x2d\x87\x2a\x78\x12\xb3\x71\xf7\xb0\x14\x48\x60\x8d\x9e\x61\x9b\x2f\x52\x32\x46\x10\x87\xd9\x3f\xf7\x48\xb7\xeb\x26\xfc\xdb\xbc\x39\x5f\xdf\x21\x4d\x7d\x5b\x38\x8d\x2f\xb7\x29\xd4\x2a\x26\xd2\xc7\xac\xa2\xbe\x2e\x1b\xfb\xa5\x9c\x30\x67\x94\x32\x36\xc3\xdc\xbb\x95\x39\x26\x0a\x06\x70\x91\x4f\x94\xe4\x37\x3f\x22\x16\xd4\x32\x1e\x33\x1b\x98\x7b\x5f\xa7\x3e\xbe\x11\xa4\xab\x91\xd7\xef\x91\x76\x1e\xe2\xf8\x56\xf8\x4c\xce\xa8\xe7\x95\x3a\x8b\x60\x16\xa6\x6e\x7a\x40\xaf\x77\x41\x12\xd3\xc1\x18\x79\xac\xfa\x43\x5c\xe5\xc3\x77\xf9\xff\x3d\xc2\xdb\xca\x55\x0a\x5c\xe2\xd9\x84\x2f\xd7\xc9\xff\xe6\x06\xd1\xf5\x77\x80\xeb\x71\xc0\x75\x69\xbb\xb2\x8f\x5e\x2c\x50\x2b\x96\xa2\x81\x35\x8a\xd2\x8e\x03\xad\x64\x94\xe6\x51\x5e\xf9\x17\xd7\x92\x90\x4d\xaa\x4a\x21\x37\xfc\xea\x48\x65\xbc\x87\x52\x32\xc0\xa5\x03\x07\xdb\x53\x34\xcf\x63\x22\xc8\x77\xe8\xeb\x56\xb5\xf6\x41\xad\xae\x08\x88\x59\x13\x1d\xb5\x50\xc3\x2a\xdc\x30\xdd\x2d\x5f\x79\x2c\xb3\xa2\x95\x29\x01\xb2\x5a\xf8\xb2\x1d\x5a\xd7\x97\xb1\xe5\xf9\x56\xbf\xd9\xa7\xb5\x2c\xd2\xe1\x25\x44\x6c\xc4\xd7\x75\x8c\x52\x82\x8a\x1f\x80\x74\x8c\xe4\x89\xc3\xca\x46\x0c\x54\x89\x0b\xe3\xcb\xb4\x6d\x0a\x55\x14\x57\x7d\xaa\xf4\x70\xfe\x73\xcf\xeb\x85\xb2\x4f\x68\x90\x8e\x70\xdf\xb2\x64\x4c\x26\x86\x39\x0e\x34\x83\x10\x70\xe9\xed\xbd\x8a\x72\x47\x39\x24\x0d\x80\x4d\xf6\x58\x07\xce\xa9\x93\x85\x0d\xfe\xac\x87\x9f\x90\x8a\xd1\x6c\x30\x23\x8e\x42\x57\x9c\x94\x8c\xd4\x19\x73\xd9\x3c\xf7\xf5\x77\xaa\xa0\xb8\xe7\xf1\x6c\x68\x81\xb6\x9e\xc7\x23\x3e\x43\xee\x78\x9d\x58\x98\x3b\x41\x23\x01\x11\x0b\x92\xa4\x88\xf4\xda\x55\x15\x76\xa7\x9e\x0c\x14\x19\x4f\x1e\x4b\x9d\xaf\x05\x18\xd5\xef\x4b\x0b\xb2\xf0\xae\x60\xb5\x9c\xd7\xcf\xe4\x3b\xa5\x66\x15\xd3\xc9\x2d\x2c\x1b\x2a\x75\x87\xbc\x90\x9a\x36\x68\x95\x92\x33\x76\xe3\xa1\x49\x76\x1d\x67\x4a\x51\xbd\x5b\xba\xcb\xe9\x7d\xd3\x51\xfc\x41\x5b\xc5\x22\x88\x81\x64\x4e\x2c\xda\xf9\x8a\x42\x46\xe2\x56\x5a\x2c\x45\x1b\x6e\xce\xfa\x55\x84\x99\xf6\x8c\x9c\x7f\x33\xfe\xbe\x49\x15\x57\xf3\x51\x35\xf6\x13\xbf\xbe\xe5\x92\xf3\x26\xdb\x28\x6d\x3b\xbe\xfb\x7c\xd6\xa2\xcb\xc4\x11\x16\x6d\xfc\xcf\x0d\x9a\xe2\x0b\xa3\x69\x75\x33\x68\x38\x7a\xe1\x74\x3a\x92\xcd\x82\x7d\x74\xf3\x14\x05\xb2\x01\xa1\x09\x7c\xc4\xb6\x6c\xdd\xb7\x7b\x92\x66\x99\xa4\x0e\xb0\xbe\xc4\x21\xf7\xe2\x99\x16\x12\x3c\x40\xc9\x94\xbb\xf1\x25\x45\xb1\x20\x0c\x5c\xe2\xc7\x2e\xf7\x1b\x07\xb5\xae\x93\x58\x7f\x1f\x7d\xbb\x4d\x49\x9f\x42\x8a\x51\x20\xe6\x2a\xc6\xe9\x32\x8f\x03\x28\x30\xed\xe4\x08\xe4\xc0\x5d\x13\xb5\xec\x83\x89\x21\x65\x1a\xee\x85\x4f\x2d\xd3\x89\x1a\x7c\x59\xa3\x18\xc8\x5a\xa9\xc1\xc3\x1e\xf0\x81\x05\x31\x90\x8f\x3c\x7f\xfb\x12\x85\x72\x12\xf2\x35\x42\xc6\x9a\x33\xba\x18\xbd\x49\x70\x32\x27\xfa\x85\x15\x1d\x8a\x01\x7a\xa1\x93\xb0\x57\x4e\x56\xb8\x23\x5c\xc6\x2c\x5d\x19\xba\xfb\xdb\xfa\x11\x6a\xdd\xed\xf0\x92\xe5\xc6\xbb\x38\xbe\xbe\x84\xd0\x56\xa6\xb2\xbd\x2c\xdb\xc4\x70\x90\x63\x12\x91\x3f\x65\xc1\x89\x23\x2f\xa6\x25\x25\xb6\x54\xf5\xce\xf6\xc1\x63\x94\xf3\x57\xc5\xa8\x82\x4c\x80\xb9\x6a\xda\x5f\xc6\xb7\x10\x00\x52\xad\x80\x95\x9b\x74\xa2\x01\xac\x25\xaf\xbe\xd7\xea\x50\xc9\x4a\x72\x04\x44\x6b\x3a\x71\x81\x51\x21\x77\xf6\xd8\xd9\x16\x7e\x64\x05\x25\xcb\x73\xa2\x5f\x68\x02\x3e\x7c\xf4\xac\x6b\x72\xf2\x82\xee\x1e\x27\x9a\xca\x21\xcb\x69\x7e\x8a\x95\xa1\x1d\xe2\x30\xe8\x34\xf7\xb1\x43\xd2\x23\x06\x03\x24\xc9\xd0\x73\xc7\x6e\x4e\x21\x55\x04\x5a\x88\xf9\x85\x85\x3b\xb5\xb5\xa5\x82\x02\xab\xd6\x21\xee\xab\xda\x51\x00\xae\x07\xaa\x02\x5a\xce\xbd\xbf\x5f\x6a\x4a\x28\x2a\x18\xe2\x38\xff\x62\x6b\xbb\x28\x81\x84\x7e\x16\x17\xc8\xf8\xf8\x91\x34\x3b\x2c\x53\x39\xbc\x1e\x75\x4e\xe2\xd8\xf6\x52\x48\x68\x15\x49\x32\xc2\xd2\x49\x59\xbf\x51\xa5\x00\x07\x2a\x87\x21\x37\x76\x9c\x52\xcf\x52\xa4\xc8\xd4\x7d\xf7\x2e\x9d\x75\xe2\xa3\x38\x11\xe7\xb9\xd4\x95\xe7\x34\x2d\x0d\x64\x42\x55\xd3\xba\x40\x56\x69\xbd\x6c\xa6\x6f\x28\xc8\x86\x43\xcb\x9a\x1b\xa4\x00\xa7\x43\x83\xac\x2a\x5e\xf4\xda\xe5\x7a\xb4\x2d\x53\x14\x04\x24\x2b\x6a\x66\x3c\xa3\xb4\x25\x2d\xe4\x57\x43\x3f\xbb\xa0\xe1\xc6\x6d\x12\x9f\x71\xc0\x80\x0b\x6a\x90\x26\x9d\x93\xc2\xfb\xf7\x2b\xd8\x09\xc0\x35\xc8\x7c\xf9\xa5\x6d\x13\x95\x0c\xa0\x1a\xfb\xe7\x56\xcc\xf0\x33\xfd\x0a\x4f\x19\x62\xd3\x76\x01\x65\xdb\x9d\xff\x4e\x15\xd1\x7a\x68\x41\x3f\xa0\x4c\xcb\xac\xd4\xcc\x3f\xba\x57\x5f\xe2\xeb\x96\x13\x53\xcf\x7d\xfd\xc1\x4e\xbd\xee\x11\x7c\xd9\x92\xa5\x49\x33\x40\x13\x05\x35\xe0\x40\x9d\xd1\x90\xff\xb0\x76\xfe\xf8\x52\x25\x46\x83\xba\xb3\x2e\x1d\x09\x12\x32\x17\xd1\x87\x26\x29\x09\x08\x65\xca\xde\xc6\x3f\xae\x96\xa0\xdd\xec\x69\xbd\xb3\x7a\x92\xad\x8c\xf9\x9b\x8f\xf3\xbe\xf5\x2a\x42\xa9\x82\xc1\x37\x0b\xfd\x1b\x3a\x24\xae\xac\x0a\x5c\x3e\xf2\x36\x8f\x8a\x0c\xf8\xe3\xe5\x93\xb7\x49\x91\x20\x69\x98\x0e\xc1\x42\x6f\x7d\x65\x1a\xd9\xa9\x1b\xc7\xa1\xf9\x1e\x0f\x4c\x1f\x46\x58\xec\xfe\xdc\xf1\x88\xba\xa1\x8d\x62\x80\x2d\xc8\x3a\x4f\xd5\x57\xe4\x6d\x58\xc4\x8a\x5f\x62\x6e\xfd\x4d\xd9\xc7\x69\x02\x5f\x30\xf6\xf7\xaf\x54\xfb\xab\xc4\x84\x56\xc2\xfd\xf8\xf7\xd3\xa3\xd5\x59\x1f\x86\xf6\x26\x76\xf6\x43\x4d\x5b\x31\xc4\x03\x7c\xb4\x04\x43\x5f\x0c\xd1\x9d\x5a\xaf\xcf\x0b\xce\xed\x15\xf9\x66\xf7\x6e\x79\xd7\xac\xf9\x25\x32\xc0\x6f\xbc\x28\xa4\xed\x5c\xcf\x49\x7e\x68\xac\x18\x97\xec\x0b\xe7\x8f\x6c\xed\x05\x6d\x4a\x92\xe2\x7a\xf1\xd3\xf9\x8f\x27\x35\x4e\x40\xe8\xc4\xe1\x41\x50\x64\xf2\xef\x7f\x53\x6d\x7a\x56\x43\x07\x70\xc9\xea\x2d\x65\x99\x01\xf5\xf4\xc6\xc6\xde\xb9\x5f\x6c\xd3\x61\x4a\xc9\x62\x0f\xe9\xd2\x49\x2d\x41\x2c\x20\x54\x44\x57\xa8\x6c\x73\x8d\xd3\x3d\xca\xd7\xad\xc4\x57\xfe\xf9\x5d\xca\x7a\x52\xe8\x11\xce\x42\x8b\xff\x28\x7f\x5a\xb7\x4c\x9a\xcc\x9e\x1b\xaf\x3f\xac\x4f\x46\x23\x39\x0c\x6e\x7c\xf1\xf4\x08\x85\xf5\xe8\xf8\x5c\xe4\x68\xa5\x8c\x26\x8d\x40\x19\x1a\xce\xdf\x53\xd0\xa9\xab\x18\x99\x62\x51\xdb\xe1\xa3\x32\xa1\x0d\xc4\xce\x97\xe8\x7a\x4d\xf8\xa4\xb7\x67\xae\xe8\x8c\x6a\xdd\x93\xf7\x9e\x18\x29\xea\x2b\xd3\x06\x8e\x03\x31\xdf\x29\xdc\xfb\x9a\x26\xd0\x08\x71\x9c\xb1\x9b\x19\xce\x47\xee\xdf\x4e\x4d\xd6\xdc\x65\xb0\xed\x7c\x24\xb7\xdc\x87\xc7\x65\xed\x0c\x3a\x6c\x71\x67\xa0\xf0\xc7\xf2\x77\xaf\xcf\xfa\xde\x59\x6c\xaa\xa2\x0c\xec\x40\xec\x2f\xf9\xe1\x93\x62\x6f\x27\x32\x83\x64\x9f\x48\xc7\xf1\x8b\xcf\x93\x79\xa6\xa5\x73\xee\x3b\x1a\x5d\x21\xc4\x7c\x5b\x86\x40\x29\xdf\x3b\x4e\xe9\x84\x42\x07\x9a\x84\xa5\xdf\x93\xdf\x52\xd5\xb1\xaa\xd0\x67\xf8\xc6\x82\x13\x19\x0a\x03\x36\x53\xd5\x89\xef\x28\x8b\x3e\xa8\x3b\xbd\x7b\xce\x9c\x99\x4c\x40\xe1\x0d\x6d\x69\xda\x95\x30\x29\xc8\x8c\xe9\x5a\x8f\xc4\x23\xbe\x9f\x2c\xc3\x28\x5c\xa0\x4f\xbe\x87\x16\x9f\xfb\xf5\x18\xa5\x25\xff\xcd\x65\xa9\x5b\x99\xcb\xd0\x9a\xdc\xff\x4f\xd7\xdb\xc7\x5b\x55\xd5\xf9\xe3\x9e\x87\xc8\x10\x79\xbc\x3c\x88\xf8\x10\x12\x20\x72\x6e\xf7\x5e\x1e\xaf\x21\x22\x22\x12\x22\xe7\x0a\xa8\x64\xe4\xb0\xce\xde\xeb\x9c\xbd\xee\xd9\x7b\xaf\xe3\xda\x7b\x9f\xc3\x25\x22\x86\xc8\x8c\x18\x63\xcc\xcc\x0c\x19\x32\x23\x22\x22\x87\x88\x71\x88\x88\x21\x73\x18\x22\x32\x86\x8c\x8c\x8c\x31\x23\xc7\xf8\x32\x0c\x99\x19\xe3\xdd\xfd\x5e\xfb\xb3\xd6\xde\x6b\xed\x75\xee\xef\x3f\xbd\xdc\x7b\xce\x7e\x58\xeb\xb3\x3e\x0f\xef\x87\x3f\xac\x68\xea\xbd\x08\x01\xbc\xe5\xb3\x15\x05\x88\x09\x2e\x26\xa0\x3b\x9b\x77\x1f\x4c\x43\xf6\x3f\x2a\xae\x6b\xdd\x0e\x0d\x2d\x83\x51\xd2\xf9\xcb\x3e\xb2\xa7\x49\x7e\x1a\xea\x54\x00\x4a\xe6\xdf\xb3\x71\xb8\xda\xe4\x74\x70\x9c\x76\xe4\xfa\x6d\xe1\x11\xf3\x6e\xd0\x08\x8c\xb2\x96\xbb\x06\xa6\xb3\xe3\x29\xad\x33\x79\xe6\xfe\xb7\x50\x30\x25\x31\xaa\x63\xf0\xf8\xee\x1a\x9a\x6a\x35\xd9\x04\x3e\xd2\x0c\x65\xec\xe1\x52\x9c\xe5\x28\x8f\xbb\x7b\xb9\x6e\xe3\xe5\x91\x28\x96\xe1\x18\x56\x2a\xfb\x5c\xd4\x86\x06\xf1\x5a\xcd\xf3\xc6\x37\x48\x1f\x44\xad\x9c\x34\xb6\xf6\x40\xec\x62\xd4\x22\x7e\x4b\x1f\xf6\x6c\xe4\xc0\xa4\x2e\xf7\xdf\xa7\x86\xeb\xdf\x2d\x5a\x51\xeb\xd6\xe9\x66\xca\x9d\x71\x07\xff\xb5\x7d\xb2\xf2\xac\x11\x40\xe5\xdd\xbe\x06\x36\x4b\xe1\x36\xcc\xa8\x8b\x02\x9f\x18\x4d\xc2\x7b\xb9\xf5\xcf\xf3\x68\xba\x88\xbb\xe6\xe5\x0a\x63\xb5\x26\x30\xf1\x1e\x0a\x90\x4d\xca\x3d\xb1\x14\x46\x17\x17\x7a\xba\x93\xba\xab\x91\xad\xb2\x67\x32\x15\x9b\xef\xab\x3b\xea\x98\xf5\x50\x40\xbb\x65\x86\x2c\x1e\xa4\x52\x34\xa2\xe0\xbc\xed\x80\xae\x94\x01\x88\x0f\xc0\xe2\x16\x1e\x1f\x22\xa2\x32\xf7\xc1\x01\xd8\x62\xb6\xac\x78\x82\x7a\x0d\x1a\x45\x17\x68\x3b\x2d\x90\x80\x1f\xc0\xc1\x79\xd1\x5e\x82\x1a\x28\xfb\xc2\x05\x8d\xbd\x8f\x4b\x31\xf1\xe8\xad\xd3\x8a\xeb\x16\xf2\x11\x2b\x14\xc3\x3b\x77\xcb\xa8\x5d\xc5\xb8\xc6\xa5\x69\x21\x49\xdc\xb7\x5b\xa6\x32\x66\x50\x42\x85\x1e\x2e\xf3\xd9\xd3\x22\xee\x76\x15\x72\x08\x50\x4a\xc3\xbb\x86\xa6\x5f\x0f\x12\x1d\xbd\x62\x98\x1d\xc7\xa3\xa3\xc9\x82\x8a\xe2\x70\x96\xd9\xbe\x55\x2d\x27\x5d\x93\x98\x1c\x01\x30\xb1\x63\xa8\x92\x3f\xd9\xb4\x2e\xce\x3a\xa5\xf2\xc7\x06\x15\xee\xa5\xd1\x13\x7a\x8e\xaf\xf6\x19\x05\xc2\x38\x25\xe4\xc0\x45\xcd\x56\xd6\x05\x23\xc4\x24\x4a\xbe\xb2\x59\x88\xc6\x90\xd5\x31\x10\xf1\xbb\x5b\x86\x8a\xba\x49\xcd\x5f\xb2\x47\xbb\xd3\xd4\x97\xe8\x44\xe3\x41\x73\x8b\xc6\x61\xc0\xa4\x62\xc5\x9e\xa0\xd9\xc2\xde\x74\x99\x29\xc0\x74\xf5\x92\xb2\x64\xf2\x64\xb1\x22\xf5\x82\xdc\x4a\xc0\x25\xc3\x67\x8f\x56\x9a\xa7\x6e\x39\x96\xc8\x15\x52\xc2\x0b\x4f\x29\x9e\x39\xc2\x55\x27\x5a\xef\x13\xf6\x48\x4e\x7b\x33\x3a\x31\xfb\xe8\x44\xde\xa8\xa8\x12\x3e\xfc\xce\x2d\x5c\x7d\x8d\x92\xdf\x1a\x56\xb3\x2c\xe5\x84\x5d\xc2\xcb\x17\x83\xbd\x28\x7f\x09\x97\xae\x55\x1c\x6a\x01\x5b\x0a\x0f\xa3\x7b\x77\xf2\xed\x8c\x96\x9a\x36\x7e\xf5\x41\xbd\x0d\xce\x48\x35\x91\x0d\x5a\xf0\xf6\x75\xda\xf1\xd3\x64\x15\x94\x6d\xb3\x5a\x94\x62\xb7\x8e\x85\x2e\x42\x6f\x6e\xfa\x53\x57\x29\xe9\x0c\x71\x4a\x01\xf3\xb0\x70\x83\x0d\x7f\xd0\xcd\x35\xad\x96\x45\x37\x10\x30\x1d\xf5\xd0\x9b\xf9\xcb\x06\x75\x70\xe2\xf9\x0c\x11\xae\xb4\x7e\x7e\xae\x32\x1d\xa8\x11\x57\x58\x70\xe6\xae\x60\xe9\xea\xa4\x4e\x6c\x5b\x14\x6e\x62\xcb\x5c\x0c\x35\x2e\x93\x8d\xfc\x32\x65\x4e\xec\x8b\xf1\xaf\xe5\x74\x80\x33\x62\x6c\x74\xe6\x07\xb3\xf5\x5e\xbc\x2d\x38\x03\x5c\xa9\x7d\xb8\x46\x69\x34\xa8\xeb\x13\x17\xbb\xbe\x40\x8e\xa8\x49\xc5\x6d\xcb\x74\x0b\x67\xc2\x55\x65\x6b\xb1\x74\xf2\xd5\xa7\xb4\xe2\x1a\x44\x00\x84\xea\xcb\x5f\x1f\x49\x25\x72\x98\xd5\x89\xc7\x71\x4c\xb9\xbf\x29\x54\x13\x83\xf8\x64\x35\x76\x79\x0e\xfe\xd7\x49\x57\xc5\x6b\x00\x37\xf3\x9b\xbf\xd1\x4f\xd6\xf8\x4c\x75\x0f\x9c\xf2\xe2\x55\x7d\x25\x49\xfc\x90\xce\x6c\x18\xcc\x63\xe2\xed\xd4\x11\xf8\x93\xe8\xa7\xf6\x5b\x7a\x9f\x93\x2b\xda\x0b\x8e\xce\xf4\xb3\xd7\x28\xb3\x79\x2e\x4c\x98\x5e\xdb\x17\x9f\x49\x84\x10\xf9\x6e\x91\x85\xd2\x6c\xc9\x9c\x9a\xda\x19\x65\x20\xd9\x63\x6b\x34\x47\x59\xe4\x20\x86\x4c\xcc\x48\x6c\x86\x90\x2f\x4b\xeb\xd8\xc0\x8d\x8e\xe6\x5f\x6e\x97\x5a\x06\xc2\x52\x32\xf5\x2d\x35\x4b\x58\xd7\xd6\x11\xb1\x45\x0c\xca\x7c\xac\x43\x4f\x67\x6c\xe2\xc7\x4d\x81\xf7\x75\x29\x91\xc8\x22\xac\x27\x8e\xc5\x4b\x8e\x2b\x8e\xf8\xe9\xf1\xf5\x01\x81\x3c\x64\x60\x2c\x2c\xdc\xb5\x36\xaf\x4c\xa8\x18\x8e\xd3\x34\x41\xcd\x3c\xf9\x9c\x36\xc0\x43\x40\xe4\xf2\x63\xeb\x85\xec\x97\x5b\xaf\xd2\x7f\x21\x60\x26\xe2\x0e\xd6\x23\x86\xaa\x42\x38\xc4\x35\x48\x0d\x52\x95\xd2\x44\x1d\x3e\x42\x7c\x7e\xea\xbd\x53\xd3\x62\xf5\xaa\x9a\xf0\x00\xe7\x33\x94\x97\x56\x29\x61\x1f\xb0\x9c\xfc\x94\x18\xd3\xc2\x03\x76\x99\x06\xae\x99\x78\x27\x66\x8d\x83\xfc\xc7\x4b\x02\x13\xa9\xb5\xfe\x72\xdd\xfd\xc5\x35\x51\xa2\x45\x91\x1d\x7e\xf9\x10\xf1\x05\xd8\xf0\x19\x4f\xaf\x7a\x73\xf3\x98\x82\x3a\xb5\x11\x1f\x32\x3d\xc6\x73\x86\x72\x80\xa3\xfb\xda\x7f\x22\xfd\xca\xa6\xb4\x15\x1c\x1e\xbb\x8a\xbd\xb9\xef\x6b\xe0\xba\x5a\xe0\x13\x37\xba\x2d\x29\xba\xd7\x95\x0e\x7d\x15\x1b\xbb\xae\xd6\x36\x5d\x9b\xd5\x72\xab\xc0\xec\x8e\xbe\x23\x35\xf6\xcc\xdc\xa8\xfb\x84\x51\x9f\xb2\xa8\x8a\xe6\x6e\x67\xd9\x97\xd7\x24\xed\x21\xaf\x46\x95\x99\xc1\x94\x97\x35\x15\x0c\xd2\x8d\xed\x6e\xe2\x4a\x56\x5d\x76\xed\x39\x19\x0d\x5c\xdc\x50\xbe\x36\x5b\xdc\x25\xad\xeb\x30\x18\x54\x7e\x6c\x84\xae\xbc\x52\xb3\xa9\xc9\xb5\x24\xc3\xa5\xa7\xb5\xb6\x1c\x20\xf9\x62\xa1\x98\x70\xf7\x2b\x9a\x49\x57\x60\x4b\x6b\xaf\x25\xfd\x92\x75\xeb\xbb\x4d\x67\x4c\xe6\xcd\x8b\x0a\x21\xda\x46\x3c\x03\xbb\xee\x12\xdf\x66\xdd\x81\xc7\xc7\x9a\xd1\x0f\x6f\xdc\xa3\x3b\x71\x11\x2e\xc0\xe8\xc6\xb0\xd3\x9f\x9d\x93\xe4\x00\x87\x98\x26\x58\x82\x24\x13\xa8\xfc\xec\x3d\x8a\xf0\x87\xdb\x34\x5e\xca\xcd\xaa\xeb\xe3\x25\xe4\x0b\x4b\xdf\xcc\xec\x6e\x0d\xf7\xeb\x70\x5e\x1c\xb6\x7b\xf8\x2f\xdc\x38\x5f\x2f\x42\x6c\x53\x14\xa9\x6c\xe5\x10\x65\xa7\x47\x35\x5a\xf4\x07\xfd\xb3\xfc\x68\x2f\x05\x5c\x6c\x28\xbb\x7c\x13\xc7\x93\x72\xa3\xb0\x7b\x67\x49\x41\xd1\x86\x85\x9b\xae\x36\xd3\xbe\x68\xa8\x38\xe7\x6b\x36\xed\x89\x8d\xd4\x73\xcb\x15\xd0\xbe\x43\xcc\x42\x7b\xe7\xcc\xb6\xe8\x4c\xdd\xdc\xdc\x77\x2d\xd9\xd8\x11\x6f\xb0\xfc\x98\x02\x4d\x61\x68\x35\xd8\x19\x7e\x62\x43\x8b\xd4\x57\x56\x39\xcc\x33\x0e\x25\xab\x47\x6c\xaf\x99\xcf\x4e\xd2\x1e\x5d\xd0\x53\xc7\x1e\xc7\xce\x37\xf3\xbe\x3e\xf6\x96\xc6\xe8\xc5\x4c\xc1\x51\x7e\xf8\x80\x52\x4b\xa5\xe5\x4f\x4c\x5d\x53\x9c\x71\xdf\x14\xd1\x84\x7c\xe7\x66\x0d\x9f\x89\x85\x6a\x23\xc4\x98\x71\x1b\x34\x65\x0b\x8c\x1d\x70\x30\xe3\x5d\xa4\x17\x9f\x4c\x92\x21\xa3\xd4\xec\x55\xf1\x4f\x1a\xf7\x5f\xc8\x24\x10\x9f\x24\x72\x84\xdf\x38\x3a\x5a\xa1\xa5\xb3\x0a\x56\x51\x2c\xa1\xa1\xa9\x41\x57\x28\xb2\xbd\x98\x83\x6b\x68\xec\x75\xa3\xa7\xc6\x02\xef\xa6\x09\x13\xc4\xb1\xff\xf1\x95\x1a\xd3\x98\xb8\xf1\xe0\x2d\xb7\xe9\x71\x79\xe1\xa0\xac\x9b\xbe\xf0\x87\x56\x8f\x54\x33\x53\x9f\xb8\x41\xa2\x85\x73\x91\x29\x05\x72\xc9\x33\x84\x99\x46\x55\x13\xf9\x30\x19\x72\x50\xac\xff\x2e\xa4\xc1\xbb\x4e\x6a\x09\x00\x4f\x2a\xf8\x7a\xfa\xc7\x17\xd3\x97\x6b\xc2\x4e\xe2\xc0\xe4\xcf\xf5\x17\x82\x73\xd0\x82\x2a\x14\xc3\x99\xf3\xf4\xb4\xa0\x8e\x91\x9d\x70\xeb\xae\x53\x7c\x21\x1c\x14\x78\xd4\xc6\x5c\xe3\xe0\xf5\xe7\x92\x65\x58\x6a\x05\xd7\x93\x93\xeb\x35\x81\x93\xc0\x8c\x22\xa2\x1a\x72\xc3\x6f\x3d\x99\xfc\x95\x0f\x86\x4e\x99\x8e\xe7\x75\xad\x04\xe4\x83\xdc\xbd\x00\x5a\x86\x5f\x9f\xab\xf5\xb6\x9d\x1a\xf2\x3c\x40\x89\x89\xce\xc1\xc7\xb6\xa4\xbf\x38\x46\x8a\x73\x3a\xbe\x28\x77\x3f\x56\xd7\x2c\x3d\xac\xe8\x7c\x77\x0b\x16\x0d\xbc\xf8\x98\xce\x8d\x7c\xa4\x49\xd2\xb2\x84\x4a\x71\x94\xe9\xdf\x2d\xf7\x29\x62\x81\x67\x01\x33\xe9\x93\x2c\x49\x63\xda\x5a\xa7\x42\xbe\xdf\x9d\x1e\xed\x09\x09\xbf\x82\x57\xc3\xa8\x1a\x8f\xc4\xc2\x3b\x0f\x0a\x3d\x7a\x6c\x9a\x82\x99\x54\xd4\x54\x51\x6d\x8c\xa0\xc9\xcf\x2f\xae\xdf\xfc\xa1\x6a\x5c\x8e\x13\xa0\xa7\xf7\x8e\x50\x9a\x84\x5c\xa9\x35\x5e\x60\x73\xf9\x5f\x80\x04\x8f\xb4\x4a\xfe\xd3\x3c\x35\x24\x96\x03\x30\xe4\x78\x59\xe8\x31\xcf\xc7\xac\x12\xa4\xf8\x9e\xd9\x9f\x6e\x4f\xef\x1d\x1b\x81\xaa\x50\x14\x5f\xc3\xbf\x9e\x11\xf8\x26\x6c\xe3\x12\xe3\xba\x6b\x7f\xc8\xa6\x2c\x40\x79\x1f\x36\x3c\xab\x58\x2c\xd6\x02\x0f\x08\x76\xe1\xb6\xa3\xe9\xb1\x44\xcd\x22\x36\x32\xb1\x5d\xb3\x08\x12\x03\x46\x68\x97\xb1\x97\x14\x41\x96\x04\x87\x5e\xec\xcd\x7c\xea\x4d\xad\x82\x6e\x20\xd1\x78\xc8\xfc\xd3\x4c\x05\x93\x49\x19\x26\x95\x66\x09\xc5\xa1\x47\x85\x30\x32\xf1\x04\xd1\x4b\x33\x57\x13\x1e\xd7\xf1\xb9\x1e\xae\x90\xbd\x79\x93\xd6\x65\x52\x32\x7c\x96\x6a\x75\x59\x27\xb8\xd1\x74\x66\x7c\x6c\x28\xef\xf7\x17\x5d\x82\x5c\xa2\x44\xf4\xf3\x17\x95\x26\x1e\x86\x46\x21\x2c\xeb\x4b\x7a\xfa\x55\xa9\x60\xcf\x8f\xe3\xdd\xa0\x0d\x7c\xc6\xd9\x25\xdc\xc3\x65\x7e\xf1\xe5\x4d\xb1\x0f\x01\x5f\x0d\xbc\xdc\xec\x7c\x4a\x67\xac\x78\xd4\x11\x9f\xb5\x55\x51\x03\x32\x90\x8b\x4c\x54\x28\x86\xcb\xb5\x78\x8f\x61\xaa\x86\x5d\x43\xb8\x50\xdc\xb1\x55\x56\xd5\x36\xe1\x68\xfa\x42\x31\x6c\x3c\x2f\x23\x9e\x1b\x94\xb0\xad\x0c\xb1\x56\xbe\xaa\xa6\xdd\x36\x5a\x25\x62\x61\xb8\x27\xe4\x2b\xf5\x2e\xd5\x15\x2b\xfc\xf3\x31\xd5\x15\x15\x88\x8e\x00\xbb\x18\xb2\x4c\x9d\x28\x19\x30\xee\x6f\x2a\x57\x4e\x8d\xe5\x4f\x01\x78\x5b\x76\x3c\x0c\xe8\x5c\x26\x34\x90\x29\x03\xa1\x04\xb9\xca\xf7\x9f\x56\x88\x48\x16\xe1\xde\x6c\xd9\xda\x0e\x0d\x4b\xd5\xea\xb4\x42\xd2\xbe\x82\xa9\xb0\x79\x01\xc6\x06\xa1\xa9\xa1\x7c\x47\x2c\xe5\x47\x14\x0c\x79\x6f\xd8\x2d\x7b\x6d\x25\x1b\xa8\x1c\xe7\x84\xbd\x97\x81\x9c\xf4\x98\x73\xe8\x9b\x3a\x93\x1e\x31\x1c\xb3\xdc\xfe\x77\xa3\x66\xa6\x25\x50\x50\xa2\xda\xb5\x1f\xd6\x19\x87\xcc\x49\x44\x39\xd7\x6e\x14\x5a\xd8\xcc\x69\x2a\xea\xb3\xce\x36\x45\x90\x06\xaa\x09\x68\x47\xaf\x57\xcd\x7b\xb8\xf7\x63\xf4\x3d\x3f\xda\xaa\x01\x54\xa9\x03\xfc\xf7\x70\xdc\xc3\xaa\x05\x9b\xeb\x09\x20\xe1\x0d\x47\xd3\x47\x1a\x98\x9e\x70\x89\xd8\x38\x8a\xe7\xde\x38\x24\xff\xb4\x12\xb8\x3e\x1f\xb1\xe4\xbe\xfa\xba\x0c\x6f\x15\xee\x77\x11\xa7\xef\x1b\x2f\xd7\x18\xe7\x36\x82\x7e\xab\xe0\x5a\x7c\xe6\x9c\xc2\xe0\x08\x3c\x9f\x3a\x7a\xbf\x26\xbc\xf5\x42\x32\xc1\xb0\x89\x13\x77\x23\xdc\x27\x14\x9c\x3d\xf6\xe5\xe9\x35\xf2\x78\xfa\xb6\xa7\x17\x66\x08\x42\x60\xe1\xb0\xd6\x37\x37\xeb\x20\x6a\x10\x8f\x77\x87\x2f\x68\x72\x39\x33\x30\x13\x82\xb3\xe1\xb1\x9b\xb5\xfc\x82\x3a\xd8\x15\xb2\x61\xef\xdf\xa6\x33\x1e\x7c\x54\x42\x9e\xa8\x70\x73\xff\xfe\xa6\x82\x55\x75\x11\x33\x2c\xd0\xff\xcc\xbd\xa9\x69\x25\xe1\x4a\x40\xa2\x72\x42\xae\xf7\x2f\x5c\x3e\x40\x54\x9c\x34\x80\x14\x7f\xf1\x26\xad\x64\xc7\x00\x6b\x34\x50\x22\x21\x99\x3b\x23\x49\x96\x1e\xb2\x55\xc9\xfe\x27\xc4\xda\x4a\xc6\xca\xca\x37\xfd\xb8\x4b\x96\x84\x80\x0d\x2d\xf6\x66\x6e\x1a\x25\x5c\x63\x9d\x1a\xa3\x35\xc6\xe1\x3c\xbd\x99\xd7\x5e\xd5\x34\xf5\x0d\xa9\xbb\x90\x79\xee\x61\xc5\xf5\x88\x98\x00\x13\x0f\x9d\x0d\x8a\xe0\x82\xe7\xf1\xbe\x1f\x87\x4c\xdd\x70\x58\xf1\x34\x41\x6e\x35\x96\x12\x2e\xf6\xe6\xee\x1c\xa5\x14\x2b\x88\x11\xe4\xba\x2a\x0b\xe1\x17\x2f\xf2\x5e\x67\x7b\x67\x67\x5b\xa1\xb3\x3d\xfa\x8b\x1b\x47\x0d\x4f\x56\x2f\x4d\x79\x93\x76\x5f\x54\x5f\x01\x71\x10\x67\xca\x74\xed\x6d\x32\xdf\xa8\xc7\x03\xfb\xec\xab\xf6\x70\x05\xb9\xe2\x53\x26\x0e\xe7\x70\xef\x9a\xa1\x0a\xdc\xcc\x24\xc8\x05\x86\xdc\x81\x6d\xbc\x3c\x69\x6f\x07\x88\xd8\x76\x5b\xa3\x33\x95\xc8\x43\x01\xf1\x69\xd2\xf7\xff\xf2\xd6\x26\x97\x79\x6e\x13\x6f\x4b\xa3\xca\xbb\x8e\x8c\xd6\xb2\x5a\x6e\x32\x29\xc6\x88\xef\xcc\xd7\x12\xf6\xb8\xa7\xc1\xd3\x17\x77\xf0\xe0\x54\xd3\x02\xfe\x66\xe3\x65\x31\xf6\x1f\x96\x40\xb1\x37\xd7\x35\x47\xbd\x9f\xee\x40\x38\x36\x9c\x59\xa6\xf6\x10\x4d\x9e\xb2\xc0\x7e\x7f\xb3\x7b\x90\x42\x51\x72\x03\x18\xb3\xce\xd5\x64\x41\x18\xc1\xb1\x20\x49\x6f\xe6\x1f\xcf\xa6\x13\x44\x13\xea\x63\xa4\x98\x79\xdd\xa7\x4d\x5a\x0c\xea\xd6\x31\xf3\xd2\x19\x62\xde\xe8\xaf\xdb\x99\xc0\x33\xc3\x49\x99\xf0\x85\x73\xf2\xd2\xca\x04\x0a\xc5\xdd\xc7\x86\x8a\x2b\x45\x2e\x71\x2b\xe5\x00\x70\x81\xd9\x57\x4e\x6b\x56\xee\xd8\xc4\x2c\xf6\x68\x35\xe3\x19\xe0\x7b\x4f\xc8\x87\x50\xe2\xb6\xcd\x7c\x46\xf5\x97\xd7\x5b\xa4\xb7\xbd\xea\xa9\x70\xe7\x82\xa6\xbe\x8f\x4d\x49\x22\x4c\x9d\xfb\x83\xa9\x38\xbf\x52\xe6\x09\x19\x83\x7c\x9d\x8d\x50\x76\x8e\x6f\x59\xd4\x36\x63\xde\x6e\xdb\x20\xe5\x14\x07\xd0\xe4\xad\x23\x78\xbb\xa6\xb5\x0d\x7a\x79\xb9\x9f\x65\x15\x39\x86\x55\xc0\x55\x10\x7f\x5c\x9a\x38\xba\xf9\x7a\xcc\x24\x5c\xfc\xef\x4c\x05\xf3\x4d\xea\x94\x71\x99\x97\xcc\x47\xba\xd3\xf1\xae\xbd\x73\x46\xc7\x4d\x0d\x1e\xef\xfe\x6e\x4d\x6b\x3a\x4d\x21\xd4\xc7\x86\xe5\x46\x8f\xa7\x27\xee\xc5\xa6\xcf\xae\x0b\x47\x35\x40\x9e\x0d\x52\x50\x62\x99\xaf\xf0\x95\x46\x0c\x75\x63\xb9\xa6\x42\x31\xfc\xdc\x62\x19\x1f\x04\xf9\x36\xee\xde\x7c\x76\xae\x9c\x73\x76\x40\xf2\xff\xfb\xf3\xca\x54\x47\x3d\x85\x3a\x43\x99\xf9\x59\x98\xad\xa6\xcd\x62\xb4\x0f\xee\xd3\x14\x02\x5d\x9f\xc6\xb4\xf6\x1d\x13\x75\x60\x45\x2d\x3e\xec\xaf\xde\x2b\x83\x94\xe2\xb7\x16\xef\x94\x92\x86\x20\xb4\x49\x9d\xb8\x15\xcf\x07\x4e\x92\xcc\xb9\x36\xa8\x06\xb8\xa4\xce\x47\xca\xd9\x73\xdc\x25\xaa\x70\x3b\xf2\x6a\x1c\xe0\x94\x58\x9f\xce\x38\xdb\x54\x5b\xf6\xc0\xc9\x11\xe5\xbf\x1f\x9b\xad\x2b\x50\xda\x36\x47\x0b\xcb\x3e\xed\x55\xb6\x3e\xfa\x36\x2c\x0c\x7a\x50\x93\x41\xe3\xe2\x11\x21\xb3\x11\x38\x25\x41\x9c\xff\xf8\xe5\x09\x4b\xc2\xc7\x2e\x24\x19\xe1\x7a\x57\xe9\x8a\xf2\x19\x35\x4f\x3e\x1e\x98\x37\x30\x4e\x53\x40\x5e\xa7\x18\xfe\x7c\x80\x96\x15\xd9\x3d\x4e\x8d\x18\xf1\x60\x69\xc6\x38\x6d\xb0\x84\x18\x09\x3c\xad\x63\x38\x70\xb3\x3a\x77\x8c\x2a\xf1\x70\x9f\x36\xda\x0e\x3c\xe1\x46\x15\x16\xb7\xea\xde\x52\xdc\x53\x1a\x3a\x1d\xad\x07\xae\x94\x5e\xdd\xd1\x76\xbe\xe9\x60\x7a\x06\x81\xca\x51\x49\xe1\xf6\x25\xcb\x90\x69\x3d\xc1\xb3\x56\x54\xab\x31\x0c\x4a\x32\xf0\xc8\x16\x4b\x72\x00\x97\xd4\x0d\x6a\xbe\x6a\x41\x9e\x39\xa9\x49\x74\xd6\x58\x94\x15\xc2\xf3\x7e\xff\xcb\xef\x83\x3f\x9c\x3a\xb3\x50\x0c\x77\xd5\x06\xc5\x4f\xda\x60\x18\x9a\xc2\x0f\xef\x4c\xd6\xfa\x04\x0f\xfa\x9e\x8b\x8e\xf3\xdc\x74\x11\xae\x47\xa5\x40\x92\x8f\xbf\x34\x5f\x9d\x88\x13\x03\x71\x8b\xe5\x11\x0b\xf5\xc1\x9d\xe7\x11\x80\x53\xc9\x3f\x7d\x65\xb4\xd6\x6a\x45\x04\x04\xb9\xe3\x87\xf6\xc2\x24\x85\x6c\x1a\xb8\x5c\x99\xaf\x65\xf9\x28\x85\x2e\x4e\xed\xd4\x2a\xeb\x78\x5d\x34\x95\x31\xa7\x72\x7d\x7b\x7c\x93\x74\x71\xc2\x20\x06\xf8\xe2\xbc\xae\x34\xd6\xdd\xb0\x88\x6b\xe2\x55\x7d\x29\xeb\x5f\x5d\x97\x37\x1a\xd4\x18\xa9\x58\xb0\x69\xce\xb6\xca\x8b\xa4\x06\x06\x1c\xef\xc9\x0e\x8d\x7a\x64\x05\xcc\x33\x51\x0f\x2f\x8f\xe9\x63\x5a\x67\x49\x88\x22\x25\x4d\xf4\x29\x2b\x64\xb5\x04\x43\x9c\xe8\xa1\x08\xb6\x78\xf9\xb9\x24\xdb\x32\x21\x3b\x8d\x5f\xf6\xf1\x3d\x23\xfb\x38\x0f\x79\x93\x62\xdf\x6c\x4d\x08\x38\x60\x55\xe2\xc5\x08\x1c\x8e\x05\xcc\xb6\x88\x1a\x88\x9a\x29\x5f\xae\xc1\x02\xe7\x72\x37\xea\xa6\x4c\xcc\x4e\x0f\x0f\xb8\x41\x6d\x60\xb9\xd8\xf0\x89\x11\x34\xcf\xaa\x7e\x78\x40\x41\x83\xa2\x3a\x8e\xaa\x81\x95\x1b\x94\xc2\x36\x30\xa9\x5d\xb3\x0a\xc5\xf0\x87\xfd\x34\xce\x38\x76\xbd\xe4\xac\xce\x4d\x7c\x51\x63\x24\xf8\x0c\x0b\x11\x92\x26\x5f\xdf\xa1\x8a\x2f\x4f\x0d\x1b\x41\xec\x14\x1a\x7e\x5e\xb1\xd9\xf5\x1a\xa4\x0c\xc5\xcc\xba\xf9\xe9\x4f\x46\x2c\x7a\x57\x7d\xb5\x48\x73\x47\x1e\xe1\xbb\xb0\x0b\x31\x04\x3a\x6f\xb0\xc2\xee\x5e\xa4\x4d\x21\x03\x5f\xb4\x66\x5e\x50\xb2\x1c\xce\x1f\x80\x00\x3e\xa7\x55\x02\xe0\x4c\xcc\x81\x63\xb1\x5b\xc0\x8f\x95\x76\x39\xd7\xb1\x50\x3c\xb0\xc2\x09\xfd\x87\xa8\x28\x08\x1b\xca\xa8\xcc\x3f\x2d\x48\xe0\x6d\xb4\x21\xca\xed\x0f\xcd\xd1\xe4\x60\x48\xc5\x6a\x00\x4f\x33\xba\xb0\x0f\x2d\xd0\x07\x53\xae\x8f\xd4\xb5\x30\x5a\x48\x1c\x7e\x58\xca\x75\x44\xdf\x74\xb8\x34\x50\x64\x04\x2e\xe6\x9d\x96\xfc\x47\x94\xa9\xbe\x90\x4b\x10\x59\xc0\x5f\xad\x49\x5a\x7a\x15\xcf\x1d\xfb\x78\x6d\xe1\xbd\x27\xd3\x32\x5a\x15\xca\xc5\xa6\x73\x87\x8f\x5e\xad\x15\x89\x18\xf9\xb1\xfc\x6c\xb1\x37\xfb\x29\x71\x4d\x5e\x4d\x00\xb7\xc3\x2f\xaf\x49\xca\x37\xea\xc4\xe6\x92\xf9\x39\x47\xe4\x18\xb1\x8c\x1a\xd8\x22\xae\xa3\x4a\xa2\xff\x2d\x3b\x4a\xa1\x67\x99\x2a\x48\xb7\x37\x73\xe5\x31\xbd\xdc\x8a\x0a\x35\x21\x9b\xd0\x9b\x19\xb4\x90\xd7\x39\x8b\x3f\xb2\xf4\x8e\xa6\x69\xca\x1f\xf6\xc9\x2f\xf6\x71\x3c\x3c\x91\xdb\xeb\xfe\xe3\x49\x5a\xe7\x05\xbe\x32\x68\xbb\xbf\x4d\x51\x28\xe4\xd6\x91\x30\x94\xb8\xf3\xa0\x5c\xe0\x51\xea\xe2\xd3\x12\x32\x0c\x18\x28\x7e\xf5\x41\xf1\x30\x0c\x0b\x3b\xd0\x4a\x5b\xff\x64\x33\x9c\xa8\x99\x1c\x9d\x71\x15\x46\x11\xef\x6d\x71\x67\xfe\xcb\xd2\x80\x3a\x6e\xde\x0a\x78\xb5\xf4\xf4\x60\xdd\x1c\xb1\x60\xea\x58\x99\x48\x67\x57\x76\xe9\x3e\xdd\x81\x4e\x11\xc8\xe0\xad\xd7\x34\xad\x13\x04\xf2\x72\xb1\x8b\xc7\x2b\x59\xf9\x20\xf0\x43\x01\xa9\x01\x0f\x2a\xfc\xc5\x0e\x05\x1c\x8c\x8c\x6a\x99\x30\x4e\x99\x7a\x78\x85\x6c\xc2\xd4\x90\xe7\xc5\x09\xc1\xb3\xc7\x65\xbf\x05\x18\x60\xe1\x88\xa3\x02\x97\x89\xed\x32\x78\xa3\x45\x7f\x4e\x37\xea\xa8\xcf\x0a\xf1\x49\x9d\xd7\xd6\xe1\x81\xb7\xb9\xd1\xdd\xed\xd8\xf5\x9b\x0d\x5c\x73\xc7\x2e\xa5\xc3\x09\x8c\xa4\xa8\x8b\xfb\x78\xe8\x1f\x18\x78\x85\x28\x27\x67\xce\x28\x14\xc3\xfd\x07\xd3\x5f\x1b\xd5\x79\x46\x62\x98\xfc\xc8\xfa\xeb\x94\x86\x47\x1d\x33\x17\xb4\xcf\x13\x0f\x9a\xe8\x39\x3d\x3f\x7a\x40\x7c\x32\x4c\x03\x29\xc5\x96\x73\x57\x88\x23\x84\x2b\x98\x4c\x3f\x26\x1f\xc0\x8c\x02\x60\x02\x07\x8e\xd5\x88\x06\xa8\x9a\xb4\x95\x6e\x98\xab\xb8\x3f\x53\x93\x91\x4a\xc0\xa1\xc0\x0b\x1e\x51\x05\xc2\xf8\x03\x4e\x4c\x5c\x2d\x4d\x01\x1a\x2e\x96\xf3\xe1\xbf\xb2\x3d\xbd\x97\xeb\xd8\x22\x86\x8d\x93\x7d\x54\xeb\xd2\x84\xb3\x78\xfd\x24\xa6\xe5\x3f\xd8\x91\x64\x24\x2e\x86\x9d\xf0\xf4\x22\xb5\x2a\xe4\xba\x24\x4f\xec\xd0\x35\x91\x91\x1b\xab\x28\x65\x7f\xae\x71\x89\x91\x8b\xec\x1e\x4f\xb2\x75\x33\xe7\x5a\x95\xfe\x9d\x45\x6a\xc9\x0c\xef\xd2\xe5\xe9\x03\xb4\xbd\xad\x8d\xeb\xaf\x50\x3b\x76\x17\x7a\xf5\x91\xbe\xd2\x3f\x81\x15\x9e\xaf\x39\x24\xc8\x77\xe8\xc5\x8a\x7b\x07\x9e\xe7\x9b\x57\x38\x75\x45\x97\x73\xeb\xa5\x21\x22\xad\x30\x82\x1a\x72\x0d\x2e\xb8\x3a\xf7\x45\xfe\x5a\x3d\x14\x2d\xd8\xb0\x66\xeb\xb6\x2b\x5e\x15\xfb\xa5\x28\x05\x17\x77\x75\xfe\x7c\x3a\x15\xab\xd9\x9c\x68\x0b\xdc\xe3\xb8\xe4\xf8\xb7\x03\xc3\xc4\x71\xee\x38\xd4\x8d\xfd\xa3\x7b\x33\xbe\xa6\x9e\xcd\x89\x4d\x89\x62\xd9\xad\xc2\x73\x0b\x99\xd1\x9e\xfc\xf4\x81\xe1\x4a\x6b\xd0\xab\x11\x43\x58\x56\xe6\xa6\x69\x8e\xd8\x9e\x61\x51\x9a\x5c\xe1\x0c\xa6\x30\x70\x6c\xe4\xf1\x7e\x55\xf6\xcd\x61\x29\x10\xb4\x4d\xe0\xc4\xcb\xfe\x70\x47\x7a\x93\x35\x90\xed\xe3\x3e\xcf\xec\xfc\xd5\xb3\x92\xb4\xdb\x21\xe5\x42\x31\x7c\xfc\x75\xd9\xff\xab\x60\x17\x33\xd4\x64\x37\x91\x21\x7b\x65\x86\x82\x4a\x84\x03\xc6\xc2\xbf\x68\xa6\x47\x25\x1a\xa3\x13\x9e\xbe\x4c\x51\x4d\x47\xb0\x5f\xd7\x6a\x06\x7d\x31\xf9\x24\x16\x94\xcb\xde\xfa\xaa\xdc\x8b\x86\x07\x80\xcd\x15\xc7\x86\x28\x95\x1d\xaa\x41\x5b\x3b\xf3\xf5\xb1\x1a\xc1\x25\x70\x5d\x09\x28\xfe\xf8\x1c\x51\xb1\xd1\xd6\xa6\xdb\x18\xa1\x19\x9b\xc2\x2c\x9f\x23\xc5\x32\xdf\x99\xc8\x03\xf6\x52\x8b\xa8\xe0\xb0\xb7\x5e\xe0\xf3\x9e\x05\xc8\xb7\x6c\x8c\x95\x54\xfd\xe3\x33\xd5\x96\x4d\x1d\xf1\x72\xac\xe7\x02\x5f\x8a\x33\xdb\xda\x20\xc2\x8c\x0c\x55\xc3\x78\x64\x8b\xe6\x41\x6f\xa6\xbe\x97\x0b\xf1\xcc\x45\x25\x44\x3d\x2b\x8d\x14\xca\x6e\xde\x23\x29\xe5\xa0\xc3\xe1\x2d\x1c\xac\xf4\x1f\x20\xd1\x0e\xd9\x62\x79\x05\x1e\xae\x04\xae\xc9\x51\x12\x67\xa4\x2c\x13\x6e\xf6\xf5\x1e\x7f\x7e\x78\x4a\x5c\x69\xde\x4d\x8b\x01\x53\x1a\xf6\x0f\x05\xe1\x30\x2a\x56\xa3\x6b\x6f\x3b\xa1\x77\x63\x9d\x1a\x62\x62\xd0\x16\x76\x6c\x92\xa7\x8d\x47\x1d\xec\x73\x4d\xb8\xf0\x63\x13\x75\x58\xa3\x05\x68\x81\xde\xec\x9b\x8b\xf9\xe6\x4d\x26\xe2\xf0\x3a\x5f\x69\xe1\x47\x8e\x8d\x1a\x3d\x51\x6e\x05\x47\xce\xee\x57\x14\x41\xc4\xa6\x2c\x3a\xdf\xfe\x98\xb0\xff\x08\x1c\xa7\x47\xe1\x15\xe5\xb0\xaf\xc3\xcd\x05\xc0\x50\xac\x8e\x17\x8f\x2b\x19\x2f\xc1\x5c\xf9\xd9\x59\xa7\x9b\xda\xda\xe2\x90\x29\xe8\x9a\xf1\x9c\xea\x05\x35\x4b\xa1\x75\xb8\x92\xf1\xf3\x69\x2b\x64\xd5\xff\xc3\xf5\xd7\x81\xc4\x63\x10\x13\xbe\xa2\xb7\x5b\x26\x53\x3c\x78\x11\xa9\x63\xb1\x75\xbd\x2a\x51\xc4\x62\xbe\x5d\xe6\x07\x97\xcb\x9f\x57\x91\x8d\x0c\x0b\xd7\x01\x92\xbc\x7d\xa8\x92\xb9\x81\xf3\x77\xf4\xe3\xfd\x9a\x84\x32\x2d\x0b\x7e\xf5\xa0\x33\xe9\x0d\x13\xf7\x98\x38\x44\x72\xe1\x1a\xc5\x18\x0b\x0b\xab\xbc\x17\x84\x16\xf1\xdd\x98\x54\x54\x09\x8f\x2f\xce\xd6\xf6\x1e\xf1\xaa\x52\xda\x61\xf0\xd0\x1b\x9a\x32\x97\x38\x72\x42\x54\x15\x37\x5c\xf0\x25\x3b\xaa\x8c\xdd\x1e\x2a\x1b\x45\xe1\x3f\x5c\xe4\x1b\xe8\x6e\xc2\x93\xbb\x91\xa3\x92\x4a\x5c\xf8\x87\x84\xbf\x1f\xab\x15\xc9\xc2\xb2\x22\x6e\x65\xdd\x7f\x58\x97\x7c\xa7\x4e\xcd\x4f\xa4\x03\xb3\x5f\x19\x1b\x27\x39\xa8\x2c\x18\xfe\xe1\x8d\xcf\x35\xf9\xc2\x26\x31\x25\xfb\xf3\x13\x7c\x1a\x76\x87\xd9\x00\x29\x21\x39\x93\xfc\xee\x09\x55\xae\xc1\x23\x15\x97\xbf\xba\x8f\x4e\x57\x18\xcf\x94\x31\xd1\xcf\xcf\xdd\x72\x56\xd7\xfd\x21\x09\x87\x3a\xf3\xc4\xca\xe6\xc2\x89\xc7\xc6\x2f\x9d\xe3\xeb\xfd\xb6\xa8\x60\x54\x05\x21\xc7\x6f\xd1\x91\x96\xd1\x8a\x13\x8b\xfd\xd2\x4b\xd7\x28\x8d\xd8\xb2\xdf\x6c\x65\x55\x5d\xaf\xf7\x84\x91\x69\x53\xa1\x49\x0e\xcf\xea\xaa\x47\xd3\x27\x25\x07\x34\xd9\x88\x55\xb0\xe7\xc7\xbf\xf4\xc4\x53\xe9\x0d\x34\xb5\x7d\x66\x7c\x88\x6e\x5c\x76\xa5\xc8\xcb\xe3\x9a\xe9\xff\x1e\x18\xa9\x34\xda\x3c\x70\x83\x8e\x7b\x75\xef\xad\x09\x1f\x54\xc4\x7c\xa2\xa8\x50\xac\x50\x70\x46\xc4\xd6\xfd\x12\x7b\x33\xeb\xa7\x5f\xa7\xbf\x71\xcf\x27\x7e\x90\xb4\x92\x8b\xe1\xda\x2e\xfe\x0e\x97\xf5\x04\xac\xd4\x23\xf1\x7b\xe1\x4e\x9f\x87\x3d\x9f\xda\x9c\xad\x7e\xd1\xd5\x1a\x7b\xb1\x42\x33\x04\xf4\x3b\x5f\x12\x76\x6b\xc4\x11\x37\xf4\xb9\x7e\x12\x26\xdc\xb0\x68\x1a\xd0\x95\xbd\xe9\xe5\x94\x16\x9d\x19\x0f\x9a\x33\x4f\x6f\xd7\xf5\x07\xf9\x48\x21\xfc\xd9\xa5\xd1\x72\x76\xde\x68\xc6\x15\xab\xe5\x7c\x5a\x71\x7f\xaa\xd2\x77\x29\x61\x06\x79\xd6\x97\x9e\x17\xc5\xf0\xaa\x1a\x36\x89\x48\x8c\xbf\xb6\x9a\x67\x56\xf7\x04\xc8\x8f\x92\xf6\x62\x6f\xbe\x21\x4c\xb2\xa7\xcc\x14\x66\x29\xd9\xdb\xb4\x09\xab\x8d\x51\xa2\xcb\x9a\xf9\xf5\x5a\x0d\x0f\x83\x6a\xc4\x4c\x7c\x06\x73\xf7\xee\x4a\xe2\xb7\x5f\x9f\xde\x94\x84\x5c\xd1\xa6\x70\x98\x2d\x04\x31\x32\xfb\x9d\x31\xb2\x03\x4d\xb8\x0b\x72\x02\xe4\x7d\x41\x6b\x5d\x7b\x1e\x8e\xf9\xb8\xbd\xb9\x91\x93\xf5\x3c\x93\x1a\x31\x01\x38\xb3\x7a\x5b\x52\xfc\xba\x7e\x62\x50\xb8\x78\xbb\xa4\xc1\x72\xaa\xf9\x87\x15\x19\x88\xd7\xb5\x00\x53\x43\x8c\x78\x82\x25\xda\x75\x47\x6f\x6e\xcb\x61\x11\x32\x9d\x9a\x0d\x80\xf0\xe8\x8b\x2e\xbc\x91\xe0\x7e\x19\xb8\x9d\x25\x9d\xe2\x37\xd7\x25\xff\x62\x01\xf6\x49\xae\x8e\xec\x2a\xad\xb4\xa2\xcc\x10\x9c\xab\xe8\xce\x46\xec\x4d\x93\x80\xc6\xf2\xa1\xd2\xec\x25\x49\xe2\x5f\xc6\x30\x0e\xf8\xc2\xdc\xf4\x06\x70\x0c\x23\x60\xa0\x27\x26\x1f\xe2\x6b\x4f\x29\x93\xfb\xc0\x09\x6c\xb8\xec\x3f\x0b\xeb\x1c\xcf\xc7\xc8\x81\x15\xfe\xa9\x67\x74\x6a\x34\x2a\xc7\x49\x71\x1e\x77\xe9\x34\xef\x5a\x8d\xf6\xd9\x1c\x5a\x32\x4e\x66\x27\x1d\x6d\x6d\xf1\xc8\xe0\x32\x05\x4b\x19\x15\xf1\x50\xc9\x9c\x99\x7b\x8d\xab\x8e\x20\x9b\x86\x17\xb9\xcf\xce\x95\x17\x3f\x43\xf8\xf9\x84\x6b\xee\x93\x9d\x3f\xa6\x88\xbd\xbe\x4f\x11\xc6\x8e\x4a\xe7\xc0\x40\x3e\xe1\x4c\xc4\x05\x4a\x6f\x41\x55\x6a\x3b\x95\xef\x13\x29\x26\x92\xc3\x5f\x5d\xe2\x0f\x29\xa8\x79\x80\xad\x08\x5b\x15\x85\x4e\x93\xd0\x55\xe2\x98\xff\x8f\x37\x64\xa0\xf2\x29\xad\x36\x3b\xab\xbd\x96\x0e\xa7\x9c\xa7\xaf\xc4\xd3\xe8\x69\x7c\x51\x31\x42\x2d\x53\x0a\x95\x8b\x88\x35\x9f\x3c\x15\x5b\xca\x12\x18\xcd\x01\x96\xf8\xab\x97\x46\x29\x11\xb5\x66\x53\x07\x19\x3d\xf1\x59\xfb\xda\x00\x45\x58\x84\x18\x92\xa4\x5d\x7c\xec\x6a\x99\xbb\x34\xa9\x36\xf6\x66\xf7\xac\xe5\xf7\xcc\x6d\x26\x00\xe6\xb0\x3b\x59\xc7\x4d\x68\x8c\x0b\x3c\xa0\xdc\x89\x56\x47\xa7\x6d\xa1\x18\xda\x0f\x0c\x55\x3a\xb6\x5e\x20\x70\xe3\x8d\x67\x45\xb4\x65\xa4\x06\xab\x2d\xf7\xe4\x48\x65\x27\x56\x95\x4e\x50\x78\x66\x7b\xfa\x74\xb2\x02\x04\xe2\x26\xf2\xf8\x5d\x32\x47\x56\x49\x16\xb6\x79\x1b\x64\xc8\xe2\xab\xd4\x04\x77\xf1\xe2\x9b\x8a\x32\xda\xcf\x3e\x29\x2b\x64\x13\x71\x24\xe1\x5d\x6d\x32\x29\xec\xe8\x6c\x9d\x32\x33\x7a\xa8\x47\x26\xc9\x25\xd9\x40\xb6\x8d\x19\xf8\xde\x2b\x13\xa3\x89\x87\x35\xfc\x20\x4d\xe8\xa3\xf9\x55\x35\xcd\x1f\x11\x34\xad\x61\x57\x87\xbf\xdb\x7a\x95\xd2\xee\x8c\x0f\xdc\x78\x7f\x5c\xb5\x39\x51\xf0\xc6\x4e\x29\xd5\xca\xaf\x71\x0f\xb6\xc2\xdd\x31\x13\x3a\xfd\xc2\xb6\x6d\x48\x1c\xa3\xea\x36\x12\x40\xac\xb1\xd7\x0b\x6b\x75\x52\x71\x45\xab\x3a\x37\x79\x80\xb8\x7d\x02\xd0\x80\xe9\xc7\x53\xe9\x64\x6c\x55\xf1\xb9\xa3\x13\xb4\xa8\xca\x10\xf1\xbd\x3e\xf7\xfa\xaf\x3a\x24\xdc\x0b\xab\xd0\xf1\x9d\x9a\x18\x29\x2c\x74\x5b\xb4\x5d\x33\xc3\x4e\xf1\x5c\xaf\x63\x1a\x54\xd6\xb9\x05\x0f\xe8\x86\xc2\x88\x81\x6e\x31\xcf\xb8\xb7\x29\xf9\x70\x05\x99\xab\xad\x9e\x28\x1f\x0e\x67\x5e\xdb\x96\x4e\x51\x38\x4f\xd4\x09\x5c\x62\x08\x59\x96\xa6\x52\x30\x57\x7a\x83\x7f\xf5\xb4\xd6\xce\x29\xc0\x9f\x57\x44\x23\xa1\xd1\x84\x84\xfc\xad\xf9\x88\xf6\x96\xb1\xb4\x0f\xe8\x3c\x26\x3b\x99\x0e\xb1\xa9\x87\x53\x44\xf4\xec\xe1\x47\x12\xfb\x20\x03\x73\xd1\xb4\xa9\xf7\x25\xa1\x7b\xe6\x74\x9e\x6e\x4c\xd6\xbd\x59\xca\x0c\xc5\x4e\xf2\xc2\x26\x3c\x73\xf0\xb1\x11\x29\x32\x11\x65\x71\x0f\xff\xc3\x93\xe4\xdb\xb3\x02\xc6\x08\x6f\xf9\x9e\xd2\xab\x6d\xd1\x63\x4e\x14\x10\x3b\x14\xa3\x29\x64\x58\x0e\x01\xce\xc1\x88\x16\x45\x82\x83\x1a\x86\xe2\x56\xd8\x9b\xd9\x3b\x29\x05\x58\xe4\x5d\xb6\x70\x9d\x36\xb5\x35\x58\xe0\x1a\x16\xc7\xbe\x35\x1e\xe5\x4f\xf9\x0e\xc4\x27\x55\xdf\xf3\xa5\x7c\x6c\x3b\x0c\x0b\xf6\x6c\xd3\x3c\xec\x89\x0f\xd4\x76\x9e\x78\xdf\x63\xeb\x58\x6a\xaf\x16\xf8\x09\x1b\x27\xfb\x69\xc5\x7e\xbe\xcc\x90\x83\x1b\x94\xcb\x21\xec\x56\x1c\xb4\x39\x10\x12\x9e\xf5\xee\xae\x6b\x95\x9a\x55\xdc\x5e\x3a\xbd\xfa\x6e\x9d\x47\x58\x17\x57\x6c\x1c\xe7\x6a\x0f\x3c\xaa\x6d\x67\xe4\x9a\x31\xde\x21\xb7\xf5\x94\x40\x73\x58\x04\x97\x41\x5b\x36\xff\xa2\xd2\x2e\x71\xfd\x06\x86\x7d\x3f\x22\xcb\x19\x63\xb7\x59\x0e\x72\x39\x74\x34\xbd\x81\xbf\xb8\x5c\xcd\xec\x38\x33\x4a\x8c\x41\xae\x3f\xac\xf5\x8d\x6d\xc4\xaa\x9a\x3a\xdd\xad\x8b\x75\x51\xcb\x12\x11\x83\x70\x9e\x36\xac\x5e\xc7\x37\xfe\x52\xcc\x99\xbb\x4b\xb6\x0f\x8b\xd7\x62\xb7\xa4\x6d\x84\x8f\x1c\x4f\x67\xf3\xb4\xe1\xc6\x04\xb3\x1f\x1f\x1b\xa9\x34\x5d\x7d\x25\x47\xef\xcd\xbf\xef\x7a\x85\x7d\x8d\x99\x10\x18\x8a\x9e\xde\xa6\x89\xa2\x84\x03\xfb\x40\x03\xde\x04\xd1\x84\xe5\x08\x43\x0f\x09\xf9\xf7\xe8\x70\x7a\x35\x9b\xbe\x97\x99\x05\x87\xba\xbe\x25\x9b\x8b\x99\x53\xdb\xae\xd6\x22\xac\x83\x7d\xda\x70\xe3\x9a\xe4\xbb\xa6\xf0\x0d\x42\x46\x55\xb5\xfa\xcb\x3c\xa6\xf9\x61\xad\x46\x15\x24\x4e\xde\xdc\x7f\xdc\xac\x31\x28\x6c\x1b\x57\x04\xa0\x1c\xea\xb7\x15\x7c\xb1\x17\x1a\x18\xd5\xa2\x9a\x25\x96\xef\x89\xfe\xed\x5f\x0f\x29\x82\x54\x3e\xe6\xf8\xa6\x3c\x79\x4c\x11\x21\xe3\x7c\x06\x08\x04\xef\x5b\xdb\x64\x87\x28\xd0\xe4\xe1\xd5\xcb\x35\x74\x97\x69\xc6\x05\x59\xf8\x67\x57\x1b\x60\x23\x2f\x99\x91\x2a\x9a\xa5\xb4\x5c\x86\xb9\x13\x54\x55\x93\xb8\x4c\x58\xe1\xce\xd6\x79\xcd\xc4\xe9\x7b\xe6\xc9\xc0\x67\x21\x86\x3c\x2f\x4e\x68\xf3\x6d\x63\xe2\x33\x14\xb2\xe6\xa6\x3f\x7d\x6d\x9d\x5c\x0d\xd1\x79\xae\xc4\x97\xec\x4b\xd3\x15\x40\x3c\xb0\x50\x04\xd8\xfa\x97\xaf\xa6\x94\x53\x38\x09\x5a\x04\xea\xe8\x2e\xa6\x8d\xd2\x6e\xd0\xa6\xb1\x45\xf9\x85\x97\x94\xb9\x3a\xaa\xc5\xc8\xee\x6b\x66\x27\x1d\x82\x3a\xe1\x42\xf2\xb9\x4f\x1e\x1e\xa2\x9c\xde\x15\x51\x5e\x5e\xd2\xc8\x15\x46\xe0\x97\x94\xd6\x6d\x2e\xd8\x27\xa9\xa6\xb8\x49\x91\x2b\xf3\xb5\x9d\xba\x78\x98\x84\x89\x65\x16\xcd\x96\xc6\x0a\xd8\x57\x22\xed\x2d\x73\x14\xe4\x5d\x1d\x19\x81\x84\xa6\xd4\x66\x8f\x56\x6a\x43\xc6\xb0\xe1\xdf\x28\xf7\xe1\x67\x36\x8b\x48\x44\x3d\x6c\x12\xce\x54\xce\x5f\xbf\x9f\x47\xd4\x05\x9c\x8f\x9d\xf9\xe6\x6e\x1d\x23\xd4\xd9\x16\x1f\x4f\xf3\xc7\xf1\xc0\x54\x0e\xb0\x50\x70\x7a\x6d\xa2\xcc\x74\xa0\x86\x8a\x7e\x78\xf1\xd1\x04\xb2\xd7\x48\xdb\x4d\x2c\x7f\x52\xc3\xc9\x92\x55\x49\xec\xcd\x8d\x9c\xa4\xa9\xde\xc6\x7b\x33\xfc\x8e\x94\x0b\x32\x14\xab\x85\xf0\xd6\x3d\xaa\xce\xa9\x81\x6b\xf1\x9a\x38\xfb\xae\x0a\x91\x36\xb0\xcb\x51\xe6\xb9\xcf\xef\x1c\x96\xde\x51\xb1\x80\xdf\xf4\xb8\x33\xef\x7a\xc4\xc4\x8c\xaf\x84\xf0\x6f\xbb\x94\xe8\x6e\xd1\xc0\x6e\xd6\x62\xfb\xfc\x28\x9d\x2d\x0c\xb0\x4d\xe1\x05\x38\x6b\x19\x7f\xb8\x26\xc3\x8d\xe8\xc9\x74\x94\x78\x0c\xb9\xa3\x56\x43\x4c\x19\x51\xe6\x3e\x34\xe6\x6a\x55\x13\xc6\x24\x2e\x72\x55\x7f\xda\xe9\xcf\x0d\x4a\x51\x7c\xa3\x0f\xff\x80\xc6\x45\xe9\xa6\xa0\xf3\x28\xe8\xff\x0b\x4e\xf5\x11\x0f\x41\x72\x88\xfb\xc4\x2b\x22\x11\x25\xe4\x72\xe8\x43\xf8\xc2\xc3\x1a\x59\x83\xba\x3e\xf5\xd2\xe3\xc4\xdc\xec\x13\xd7\x2b\x33\x03\xd7\xb3\x88\xab\x33\x33\xc3\x4d\x02\xee\xe2\x04\x9e\x11\xd8\x20\xa2\x9f\xbf\x77\xa7\x4e\x05\x8a\x52\x58\x91\xdf\x5e\x7f\xed\x08\x25\x6a\xb8\x66\x83\xc5\x60\xb7\xcc\xbf\xdd\xa7\x75\x1b\x31\x43\x24\xe1\x4d\xfd\xc7\x31\x6d\x0e\x1f\x38\x28\x4a\x4c\x39\x93\x70\x9d\x2c\xe8\x56\xf7\x28\x9e\x96\xb9\x2d\x0a\xa4\xc6\x21\x1e\x66\x7c\x1c\xb4\xf6\x68\x8b\xac\xb9\x65\xe6\x15\xfe\xcb\xa6\xf4\x44\x58\x01\xb3\xcd\x51\x31\xf1\x9c\x21\xd8\x14\xd8\xde\x73\xbe\x99\x19\x14\x37\x3e\xba\xcf\xc6\x22\x27\x75\x22\xc0\x81\xb9\xff\xd7\x2d\x13\xd3\x32\xa3\x0d\xa1\xdf\x99\xff\xa0\xe6\xd3\xe6\x11\xa7\x16\xf7\x48\xc2\xf5\x87\x92\x5c\x68\x82\x05\xfa\x72\x46\xcb\xb5\x4a\x22\xce\xaa\x56\xe0\x9b\xc4\xa5\x75\xe5\x65\x9e\x9b\x28\x1a\xdf\xc6\xed\xa8\xa4\x9e\x6a\x3f\x3b\x2c\x2f\x81\xf8\x1e\xae\x12\x46\x80\x12\x7e\xb3\xbc\xdf\xa8\x8c\x44\x5c\x15\x25\x7d\xbf\xf6\xca\x2b\xc5\xeb\x67\x26\x08\x2e\x0c\xd4\x48\xf5\x00\x3f\xae\xc7\xb6\xbf\xb9\x25\x23\xd4\x0e\x9e\x41\xeb\x98\x71\xd7\x9d\x7c\xeb\x46\xbe\x83\x68\xc0\x09\x84\x9d\x2f\x8b\x4f\x96\x9a\xa6\x73\xf8\xf3\x5b\x40\x3c\x10\xc9\x81\xd8\x39\x4e\x9b\xcb\x00\x37\x93\x03\x1d\xbb\x07\x68\x99\x0f\xf2\x40\x56\x4f\xed\xfa\xbf\xac\xcc\xc3\x7d\x1a\x30\x22\xba\xd8\xb3\xb6\x2a\x42\x5b\x60\xa4\x06\x9a\x00\xf3\x9b\xda\x45\xb5\x9a\xf0\x73\x7b\x63\xa1\xa6\xb0\x4f\x5d\xea\x20\xd6\x83\xeb\xa2\x7f\x1d\xef\xf0\xcc\x5c\xdd\x4d\xd6\x0f\x98\x2b\x74\x39\xc7\x5c\x14\x94\xdf\x94\x29\xd7\x25\x61\xfb\x04\xb2\x5d\x90\x80\x95\xde\x1a\xa1\xd4\x0f\x80\x06\x8b\x37\xfc\x88\x7d\xe9\x37\xd0\xde\x06\x4d\x0f\xf1\x05\x5b\x35\x3a\x3f\xa1\x0d\x04\x4c\x3b\xd1\xa0\xfa\x62\x7f\x58\x26\xb1\x5d\x6d\xd2\x89\x9a\x34\x49\x67\x91\x51\xa3\x9a\x6a\x12\x3d\x3e\x47\x73\x39\x47\x2c\x5e\xf9\x1b\xdb\xd4\x3e\x27\x31\x2c\x75\x62\x95\x7f\x74\x9e\x24\x62\x52\x89\x96\x0a\x6f\xe0\x64\xad\xc2\x1d\x30\xb4\xd2\x8f\xd4\xe7\xb4\xb6\xbb\x68\x46\x70\xfa\xf6\x7f\x5f\x92\xb8\x20\x70\x4e\xf5\x2d\x06\x7e\xed\xc5\xde\xcc\x8f\x1f\x69\x1e\xd3\xbb\xbc\x7f\x3a\xe3\xd0\x55\x7a\x54\xac\x53\x91\xc1\x85\xc1\x23\xe3\x24\x74\x22\x60\x14\xba\x7f\x3e\x60\x5b\xd2\x7b\xe2\xcf\x5b\xf9\xca\xbd\x1b\x21\x46\xea\xd1\xe5\x64\x46\xeb\x1a\x93\x92\x6a\x18\x1e\x3c\x2f\x97\x60\x7b\x67\x67\x7b\xfc\x1e\xaf\xdf\xa0\x83\x3c\x1d\xc4\xaa\xd8\x14\x2f\x12\xcd\x4a\xa3\x7c\xca\x94\xf1\x48\xf8\xd4\x59\xad\xef\x8e\x99\xdb\x83\xc0\xf2\x50\xae\xfb\x3f\xbf\x2e\x8f\x99\x3a\xd8\x5c\x86\x9d\x6f\xdf\xec\x59\xa8\x86\x93\xf6\xc7\x2c\x30\xe6\x23\xd4\xbd\x1e\x7e\x7e\x3d\xf2\xaf\x6f\x5b\x35\xb3\x64\xe2\x36\x73\xea\xec\x9b\x00\xad\xaa\xc2\x3b\x37\x69\xaf\x9f\x80\xd4\x4a\x74\x45\x07\x9f\x13\x67\x04\xe5\x5e\x12\x85\x62\x18\x9e\x50\x7a\xab\x28\xc1\x4a\x5d\x2f\x57\xf5\x6a\x54\x55\xdb\x01\x3b\xce\x0c\x13\xa7\xbf\x8f\x59\x1d\xbb\x71\x02\x30\xfe\x41\xa5\x88\x05\x8e\x14\x9c\xff\x3f\xbd\xa0\x90\x46\xeb\xcd\x06\x1a\x0f\x68\x74\x99\x18\x00\x4d\x24\x18\xfd\xc9\x23\x57\x29\x75\x7d\x9d\xa4\xe0\xa0\xb9\x56\x49\x53\x5b\x4d\x15\xfd\xcb\x2d\x97\xf4\xdc\x26\x99\x75\x0c\x31\x47\xeb\x19\x44\xa5\x12\xb3\xcc\x7b\x33\xdf\x1c\xa1\xa4\xfb\x98\x11\x5b\x4c\xfb\xfb\xad\x57\x72\x13\xbf\x0f\xe7\xc3\xf0\xd6\x63\x29\x0d\x1a\x97\x3a\x82\x84\x3d\xfe\xe6\xf4\x54\xcd\x45\x3e\xe5\xa2\xe7\x1a\x49\xef\x98\x8a\xf2\x21\xf0\x92\xa0\x4a\x5e\xd9\xa6\x84\x41\x8c\x1d\x28\xdb\x7f\xf9\xcc\x10\x69\xde\xe3\xc5\x42\x59\x73\x1f\xd4\x5b\x6e\x6e\x05\x31\xa0\x0a\xf2\x7e\xd2\xc0\x43\xba\x9b\x70\x25\xf6\x0d\xcf\xbc\xbd\x59\xc1\x2c\x44\x39\x19\xfc\xb4\x7d\xaf\x8a\x05\x00\xa5\xb7\xec\xa7\xc7\x0d\x53\xe4\x69\x58\x1d\x31\x2e\x8b\xf9\x3f\x6b\x94\x0e\x03\x43\x44\x28\xc3\xfc\xd3\xfa\xf4\xeb\x98\x3e\xb3\x75\xda\x74\x7e\x16\x1d\x59\xd2\x97\x3c\x35\x34\x4d\xf2\xb7\xae\xd1\xe6\x84\xc4\xe5\xe6\xc6\x62\x34\xf0\xa7\x23\x29\x8d\x37\xae\x7e\x94\x79\xe7\x78\x1a\x2f\x6e\x12\x87\xf8\xbc\xff\xaf\x02\xa1\x8f\xef\x55\xc6\x58\xd8\xa1\x0c\xd9\x64\xb5\x48\x81\x36\x95\x93\x58\x88\x6b\xaa\x25\xff\x87\xee\xd3\x24\x9a\x4a\x60\x6d\x01\x8d\xd0\xd2\x33\x72\xdb\x18\x3d\x86\x1d\xbd\x7d\xd1\x13\x24\x17\x74\xf2\xb1\x8b\x2b\xc8\xe4\x14\x93\xde\xfc\x75\xb6\x4c\x8e\x04\x17\x36\xfa\xc0\xc5\xe7\x46\x6b\x7d\x50\xbe\xdb\x85\x1f\xc2\x9f\xc6\xea\x4a\x02\x44\x38\x67\x85\x8b\x1e\x1e\xad\x14\x76\xc8\xf5\xca\x94\x39\xb2\x6c\xe9\x68\x8b\x55\x87\x99\x85\x11\xd4\xc5\x97\x56\xea\x62\x7a\x06\x0a\x3c\x71\x81\xd9\xfd\x53\x15\x2b\x74\x64\xf0\x42\x6f\x6e\x7f\x2d\xbf\x04\x9b\x16\x01\x6f\xfd\x97\xb1\x32\x39\xf2\x2c\x48\x8e\xae\x95\xf0\x90\x8e\xa9\x6d\x85\x62\x38\x60\xd2\x10\x25\xc9\xab\xd3\x9e\xa8\x06\xf8\xed\x21\x0e\xe3\x98\xd1\x91\xa0\x91\x0a\xc5\xf0\xe7\xdb\xf5\x66\x81\x57\x23\x20\x55\xcf\xfb\x1a\xe5\x13\x2d\x69\x4d\x1a\x02\x8a\x34\xe1\xe9\x6b\xd3\x0b\x8f\x8f\x42\xa0\x81\x51\x6e\xbb\x32\xf9\xf6\xe9\xe0\x3b\xf3\xdb\x49\xc9\xdc\xae\x0a\x38\xe4\x74\xe9\x31\x76\x68\x7a\x6b\x29\x64\x17\xb1\x1e\xdf\x3d\xac\x8c\x75\x1a\x85\x62\xf8\xde\xad\xbc\xdb\x70\x3f\x05\x2f\xc5\xd4\x79\x3b\x6e\xbd\x30\xd3\x00\x47\x06\x0e\xc8\x39\x7b\x49\xa6\xc3\xbe\x22\x51\x92\x35\xb6\x0c\x53\x5b\x03\x00\xbc\x29\x14\xc3\xb6\x77\x53\xce\x37\x5e\x8d\xc4\x58\xd5\xf6\x89\x57\xc6\x59\x6e\xcc\x84\xd8\x2f\x0f\x63\x9b\x06\xaa\x1b\xd6\xd9\x2e\x2d\x24\x52\x07\x37\x2c\xe4\x8b\x0c\x6e\xdc\x1b\x9a\xf6\x10\xf2\x91\xcd\x25\x09\x60\xe1\xdb\x47\x53\xca\x98\x3e\x86\x91\x26\xf4\x78\x4e\xca\xf6\x5e\xd5\xa5\x46\x95\x06\x00\x01\xca\xaf\xb6\x92\x26\x39\x0b\xbc\xb4\xbd\xea\x13\x83\xe2\xf2\x16\x11\x11\x82\x76\x4f\xd5\xf4\xb4\x6c\x33\x99\xb6\x64\x3e\xb2\x4c\x83\xb2\x46\x59\x1b\x8b\x32\x7e\x18\xfd\x7c\xa5\xd4\xa7\xb2\x32\xe7\x54\xf5\x2f\x0f\xd1\x68\x5b\x85\x62\xb8\x61\x39\xcf\xfe\xca\xc4\xf0\x89\xcf\xe1\x5e\xe1\x0f\x4e\xc8\xe5\xd2\x39\xbd\x50\x0c\x37\x3e\xab\x6b\xb7\x13\x23\x66\x04\x65\xd8\x98\x34\xb6\xc4\x26\xa2\x29\x93\xff\xf4\x49\xa5\x59\x0f\x40\x20\x58\x3a\xeb\x35\x65\x8f\x4a\x10\x93\x26\xd7\x87\x69\xbc\x6b\x1d\xbb\x78\x75\x80\x6d\xe4\xc6\x88\x8c\xa5\x5d\xbd\xb9\xb3\x83\x75\xe3\x9e\xc0\xf5\x4d\xda\x70\x45\x28\x0d\x3a\xd4\x63\xd4\xc7\x0c\x7a\x3a\x3c\xeb\x0f\x5f\x69\xd3\x77\xb2\x1b\x65\xe8\xdc\xd0\xf8\x8f\x6d\x1a\x8c\x9d\x21\x33\x51\xe0\xc9\x0f\xd8\x92\x90\x54\xa2\xaa\x3f\x5a\x0e\x2f\xbd\xa4\x8f\x0c\x38\x28\x90\x77\x84\x77\x4f\x4e\xdf\x4e\x89\x61\xd7\xd4\x2c\xd0\x7a\x73\x53\x2f\xa4\xd3\x2a\x27\xee\xa3\xbf\x6f\xf9\xfb\x65\x64\xc3\x36\x06\x5b\x81\xa6\x2e\xc1\x37\x37\x6b\x08\x3f\x61\xb7\x23\x32\xa1\x70\xd5\xf5\x0a\x2b\xb2\x82\x56\x47\x15\xb5\xbe\xdd\xeb\xb3\xe4\xaa\x2e\xa7\xc6\x38\x3b\x14\xa9\x42\x18\x26\xd6\x9e\x52\xcc\x1f\xa8\x57\xad\xa3\x42\x31\xdc\x6a\x69\x5e\xc4\xae\x2d\x35\x85\xae\x11\x18\x6f\x1a\xf8\x65\xc2\x57\xc0\xd7\x36\xab\x33\x4f\x9f\x87\x0b\x38\x3d\xfa\xdb\x31\xdc\xc5\xf5\xb1\x6b\x70\x25\xd3\xdf\x72\xf2\x51\x61\x31\xaa\x5a\xc4\xa1\x75\xe2\x1b\x0a\xcb\x3b\xf7\xd6\xab\x72\x61\x3b\x81\x67\x40\x7f\xe5\x81\xb7\x94\x56\x21\x35\xaa\x58\x0c\x19\xc3\x67\xc6\xa4\xf6\x69\xc9\x46\x01\xf4\xfb\xf3\xf7\xad\x14\x34\x72\xe4\x20\xc3\x52\xa5\x81\xf6\x59\xca\x18\x98\xc2\x78\x20\x7c\xe6\xf9\x51\x0a\xfd\xce\x75\xd5\xe1\x43\xd6\x3a\xa3\x7c\x07\x8a\xf2\x4a\x9f\x8b\xf3\xdf\xa1\x89\x3a\x1b\x96\x26\x0e\x9f\x9b\xbc\x27\xbd\xb8\xab\xc4\xa6\x15\x86\x9c\xf8\xb0\xb9\xb4\x2a\xf6\xfb\x48\x06\x05\x03\xd7\xa6\x17\x50\xc7\x54\x9e\xe3\x64\x7f\xaa\x8d\xa8\x6c\x52\x82\x60\x11\x6b\xad\xff\xe0\x60\x22\x37\xc0\xd2\xc4\xf9\x6d\x4f\xca\xb7\x5c\x61\x34\x00\x41\xdd\x0f\xd8\xf2\x54\x2b\x97\x48\xa1\x18\x5e\xb5\xab\x45\xa9\x09\xab\x16\x22\x36\xad\x17\x8a\xe1\x99\xd9\xd2\xd9\x17\x62\x7b\x52\xd4\x05\xfb\xe5\x67\x34\x40\xea\x26\xbf\xca\x52\x80\x93\x36\x75\x2b\xd1\x32\xfb\xe1\x24\x69\x95\x86\x19\xf0\x65\x3f\x55\x92\x93\x63\x46\xa2\x34\x4c\x79\xe2\xd3\x16\x0e\x57\xe6\x94\xe0\x98\xc6\xf1\xb6\x59\x73\x6c\x21\x5d\x7e\x46\x11\x41\xd3\x8c\xf3\xd2\x46\x8d\x2b\x05\xb4\xbb\xb5\x03\xb8\x92\x93\x3b\x14\xa8\x0a\xab\x70\x18\xef\x32\x4d\xae\xad\x44\x40\xc9\x41\x9c\xd1\xed\xef\xaa\x0f\xc6\xab\xd9\x88\xd3\x24\x73\xe3\x9e\xd5\x5d\x52\xea\x51\x80\x81\x32\xea\x63\x93\xf4\x32\x1d\x6a\x36\x27\x4a\x0a\x6a\x1b\x35\xd2\x87\x8f\x19\xa6\x7e\x4f\x0d\x0b\xd1\xcc\x71\x5d\x49\x12\xe2\x91\xa8\xde\xe9\xdc\x35\x52\x3d\xa9\x38\xc5\x53\x88\x83\xfd\xf0\x31\x99\x84\x55\x2d\xe4\xfb\xa8\x54\x28\x86\x4b\x1f\xd7\xbc\xc8\x48\xc5\x12\xf6\xba\x71\x97\xf6\x98\x82\xfe\xe3\x62\x48\xd1\xf9\xd0\x9b\x99\xb2\x6b\x48\xaa\x57\xeb\x45\xeb\x65\xd5\x66\x9d\x1b\x00\x46\x1b\xd2\xfc\x29\xb7\xe5\x89\xbe\xd0\xc9\x31\xa3\x3a\x77\xf9\xe3\x2d\xb2\xc5\xdd\x50\x0a\xff\xce\xfe\xfa\xc3\xb7\x6d\x10\x2d\x82\x13\xf4\x17\x35\x11\x43\xfc\xc0\x29\x09\x19\x96\xf9\x33\x75\xba\x70\xe0\x1a\x84\x93\x21\x64\xb4\x2b\xaf\x94\x9b\x1a\x34\x26\x6a\x04\xe0\xba\x9c\xc5\xbc\x37\x25\x03\xcd\x19\x6a\xcb\xcd\x81\x71\xbc\x12\xc6\xb2\xb9\xc7\x5b\x74\x0b\x2d\xc3\x46\x22\x79\x82\x32\xe0\xd7\x1a\x56\xc9\xb7\x68\x50\xb1\x78\x02\x92\x31\x34\x7c\x10\xc8\x6f\x7b\xe2\x25\xff\xb5\x9f\x92\x76\x23\x2f\x40\x76\x94\x99\x40\x10\xf8\xe3\x72\x79\xd6\x56\x31\x8a\x1b\x9c\xad\x4f\x0a\x5b\xaa\x28\xe7\x8f\x7e\xf0\xc8\x59\x2d\xab\xf7\xaa\x31\x03\x72\xfc\x5e\xb9\x62\xb0\x53\x42\x8c\x45\xaf\x92\x93\x0f\xde\x98\x95\xee\x35\x61\xc3\xea\x13\x49\x93\x1f\xf4\xa4\x26\x49\xc2\xa8\x2b\x58\x8b\xb9\x4b\xbe\xf6\xdd\x0c\xdc\x99\x6e\x2e\x14\xc3\x9f\xb5\xb4\xc4\x9b\x85\x1b\xbc\xc5\x83\x1d\x73\xbb\xd0\xee\x43\x6e\x1d\x79\xb1\x79\xef\x3f\x6a\x1c\x3c\x09\xc8\x17\xbd\x8a\xf9\xab\x94\x33\x21\xaa\x78\xa2\x64\x67\xc7\x91\xd1\x4a\x6d\x69\x97\x55\x2e\x46\xb1\x37\xff\xa8\x62\x8e\x69\xe3\x3a\xcc\x98\xbf\xb5\x4d\xd3\xa3\x0f\x3c\x62\xc4\xf8\xa2\x59\x4f\xa4\x97\xe1\x94\xf6\xc9\x33\x3b\x3a\xf9\xbf\x86\x53\x77\x5d\x29\xa5\x40\xa3\x8f\xba\x55\x09\x51\xf8\xa1\x80\xd4\xc1\xb9\xbe\x50\x0c\xff\x61\x9d\xac\x38\xaa\x3d\x14\x50\x46\x99\x77\xaf\x55\xc8\x93\x36\x2f\x45\x73\x0f\x9e\xd1\xe8\x54\x01\xf6\x14\xf9\xbe\xcc\xb5\xa3\x14\xd2\x51\x60\xc7\x53\xa7\xdc\xbb\x03\x94\xa7\xc1\x01\x19\xc5\xde\xcc\x8e\x7a\xba\x25\x61\x63\x5c\xad\x21\xa2\xb6\xd8\xb2\xe3\x5f\x1a\xa3\xe4\x52\x09\x4e\x31\xaa\x1f\x79\xe1\xf6\xa7\xbd\xfa\xd8\x85\x79\x42\xfe\x35\x2c\xda\x57\x88\x13\x15\xca\xa2\x8c\xa7\x61\x46\x19\x46\x26\xbc\xfd\xf3\xcb\x84\x08\x3e\xf5\x7d\x0c\x48\xeb\xdc\xc9\x97\xf8\x8f\x16\xd2\xa4\x1b\xfb\xfe\xcb\x55\xab\x63\x6e\x43\x03\x49\xc3\xf1\xdd\x9a\x60\x90\x5d\xb3\x10\xcf\xd7\x7f\xcf\x67\x28\x85\xa5\x0d\x8c\x9b\x7d\x40\x96\x3d\x26\xf0\x64\x76\x00\xa4\x85\xf0\xed\x23\x23\x94\xdb\x35\x71\x0d\xbb\x26\x7f\x49\x1f\xbe\x2f\x1d\x1c\xcb\x0c\x63\x28\xc4\x13\xf1\xa7\x23\xfd\xc6\x6a\x4f\xc2\x5f\x5d\xc1\x0c\xd9\xa6\xfa\x44\xf3\xd3\x15\x87\xf2\x29\xed\x9e\x1f\xe3\xa9\x00\x60\xb0\xe5\x86\xe6\x08\x1c\xd5\x18\x50\x52\x51\x57\xd4\xa8\x99\x25\x03\x55\xbf\x24\x97\xd6\x91\xcf\x55\x92\x73\xc5\xeb\xd3\x1b\xc3\xc7\x8c\x11\x9f\x46\xc9\x2f\x17\xdc\xf8\x7a\xa8\x75\x55\x63\x54\x66\x1d\x8b\x08\xf4\xc7\x27\x75\xd1\x60\x13\xa3\x3a\x0d\x84\xf3\x5e\xee\x4b\x8f\x0d\xd7\xe2\x1b\x66\xdc\x8a\xb6\xbe\x4c\xa5\x1c\x39\xe0\x57\x01\x2b\xed\xbe\xd1\x49\xff\xc6\xc7\xab\xe2\xde\x5b\xd5\x56\x51\x57\x3e\xf1\xb9\x8e\xc4\x41\x8d\xc1\x05\x5a\x76\x3e\x71\xc4\xd7\xef\xda\xaa\x7b\xf6\x09\xfb\x0f\xd1\x45\xcb\x5c\xae\x48\x55\x71\x31\x57\xb8\x86\xdf\xed\xe3\xed\xbc\x25\xc4\xb0\x94\x61\x44\x6e\xd9\x49\x9d\xb6\xe4\x2a\x32\x13\xd9\x83\x8a\x69\x73\x5b\x62\xda\xbc\x61\x54\x22\x51\x1d\x38\xf1\x68\x30\xf7\xbe\xf5\x72\xf5\xc0\x50\x3b\x46\x4a\x85\xef\x84\xc9\x49\x56\x56\xe9\xb9\x99\x8a\x22\xdd\x5f\xc3\x48\x8c\x8a\xe6\x4f\x1a\xa2\x0c\x8f\x59\x09\x3e\x3e\x7f\xc7\xb8\x2b\xa5\x7c\x20\x04\x89\x53\x59\x85\xd6\x50\x8b\x9e\x37\x98\xc7\x86\xff\xfb\xbc\x26\x15\x13\x30\x86\x52\x00\xcb\xdc\x23\x93\x15\xdc\x5e\xb4\x67\xb9\xf0\x63\x74\x1b\x6c\x96\x66\x5b\xda\x63\x63\xcd\x19\x68\xc5\x1a\xbd\x6d\x1d\xb8\x7e\x0c\x35\xca\xdf\xa2\x39\x74\x79\x88\xa1\x6e\x5c\xa7\x89\x3a\x70\xf8\xb6\x12\xf2\x18\x05\xc3\x82\xf0\xe7\xf3\xc7\xe8\x3b\xcc\x35\xac\x04\xc9\x1a\xfe\x63\x59\x81\x31\x32\xc4\x4d\xea\xc3\x6e\x6d\xec\x6b\xd8\x04\x2a\x30\x58\x4a\x37\x1e\xd1\x66\x5a\x16\x6d\x24\x22\x9b\x5f\xd1\xd6\x99\x08\xa6\x5c\xb4\x22\xbc\x53\xd3\xa0\x2d\xd1\x1e\x49\x34\x3b\x31\x27\x7d\x1a\x5a\x5e\xc9\xe8\xeb\x34\xcc\xfe\xf1\x8c\x3a\x0a\x35\xaa\xe2\x54\x3e\x3e\x40\x53\xa0\x12\x45\x7a\x78\xae\xae\x15\xc0\xd1\x91\x67\xf7\xa4\x4d\xb3\xdf\x7f\x4a\x5d\x1d\xa2\xff\x9c\xb9\x7a\xb3\x02\x4b\xc5\x7d\x68\x5f\xe7\xff\x6e\xe0\x80\x78\x45\x71\x7c\xd7\x6f\x2e\x13\x0a\x34\xe0\x73\x91\x39\xba\x81\xd3\x87\xba\x18\x71\x50\x55\x55\x42\xfb\x89\x66\xd2\x0f\xaf\x1b\x62\x8a\x18\xb7\xdc\xf8\x4e\x3a\x02\x33\x62\x62\x31\x2c\xfe\xc2\x8e\x16\x71\x4d\x06\x75\x14\x41\x9e\xfc\xa0\x51\x5a\x4a\xe1\xd5\x5c\x18\x50\xe8\xd7\xdd\x3d\x39\x59\xf7\x0d\x60\x81\xbd\xbf\xa6\x71\x7d\x2c\xe4\x56\x92\x36\x7a\xe6\xab\x62\x1a\x52\x62\xc4\xe4\x49\xcf\xe7\x17\x5d\x11\x57\xb1\xd1\x71\x73\x95\xc6\x72\xb4\x68\xa9\xc4\x61\x7e\xe1\x85\x5d\x1c\x68\x7a\x1b\x17\xac\x6b\xba\x96\xa9\x2f\x2b\x2d\x0d\x4a\x7d\xe1\x55\xff\x9b\x53\xd2\x0a\xc9\x69\x4e\x8a\x3e\xb4\x25\xe9\xb6\xd5\x9a\x95\x30\x73\xf9\x5d\x9a\x54\x6c\x1d\xbb\x7e\xb2\xd8\xbe\x32\x5f\xeb\x58\xd5\x6c\xe4\x59\x89\x20\x4b\xe5\xa8\xe2\xad\x68\x51\x71\x58\x66\xc6\x1f\xd4\x07\x87\xb8\x56\x13\x64\x8b\xec\x1d\x0f\x0e\x4f\xee\x32\x65\xfe\x9e\x9b\x3a\x5a\x41\x95\x34\x0d\x9a\x32\x43\x5f\xd5\xfa\x82\x81\x6d\x17\x3c\x83\x1b\xed\x40\x96\xfc\xfb\x8e\x26\x65\x5b\x68\xfa\x21\x91\xfc\x3e\x7e\x90\xb7\x09\xe7\x61\x1b\x59\x51\xd0\x50\x82\xe1\x4d\x47\xe4\xdc\x81\x7b\x9a\x36\x5b\x27\x84\xda\x31\x0c\x8c\x1c\x45\x1c\x25\xfc\xe2\x32\x99\x38\x21\x86\x4a\x85\x42\x31\xfc\xdb\xb1\x11\x72\x7e\x50\x4f\x15\x7b\xff\xef\x41\xd5\xe1\xb5\x73\x0a\x6c\x8c\xc5\x2b\x14\xd9\xef\x58\xbc\x92\xe3\x97\xef\xbd\x56\x1e\xbd\x71\x6d\xee\xe0\x28\x9c\x1c\x55\x4d\x05\x51\x8d\x6b\x60\x09\xb1\x8f\x8d\xfb\x87\xaa\x32\x43\x20\x53\x57\xec\xcd\x04\x5a\xf2\x64\x47\xe1\x49\xa8\x90\x66\xde\x39\x31\x5a\x5a\x8f\x35\x23\x68\xbf\x35\x5e\x98\x5f\x13\x4e\xf5\xcc\xe7\x47\xc9\x92\xb9\x62\xc2\xd2\x79\x73\xbb\xf8\x1d\xe4\xf0\xe6\xa2\x75\x3a\xbd\x91\x1d\xca\xf5\xc5\x12\x3a\x92\xb9\x58\xb3\x58\xc2\xb8\x0a\xc1\x34\x7c\x67\x97\x6c\x09\x24\xbd\xbc\xdc\xbe\x5d\xd2\x6d\x4b\x15\x3b\x98\xb1\x51\x99\x72\x93\x84\xc8\x9f\x3b\xab\x68\x82\xb4\x4f\x6f\x87\xb4\x27\x7f\xff\xd0\xa1\x4a\x7f\x05\x68\x27\x85\x62\x68\x69\x0f\xa7\x81\xa4\x40\xf2\x7b\x0e\xc6\x5d\x7d\xe0\x9a\x47\x57\xf2\xfc\xbb\xe3\x94\xe4\xde\x21\x49\xeb\x58\x8f\xc9\x8f\xef\x95\x37\x52\x28\x88\xc3\xe5\x47\x27\xe4\x75\x75\x73\x01\xe1\x10\x29\x14\x15\xc3\x42\x40\x85\xcc\x6f\x1c\x27\xaf\xb5\xa3\x63\x6a\x6b\x3b\xf4\x08\xb2\xc7\x2f\x6f\x49\x37\x31\x3c\x8e\xb2\xcf\xf8\xb3\x65\x02\xed\xe1\x1a\x14\x82\x9e\xaf\xba\x26\xed\x93\x23\xa7\xf6\xce\x8e\xce\x28\x93\x5c\x9f\x6c\xc2\x32\xa5\x4d\x37\x70\xfe\x4d\x89\xe4\x85\xe4\x91\x15\x7c\x0b\xb9\x31\x5b\x33\x57\x79\x99\x67\x3a\x5d\x98\x31\xc5\xb2\x2e\x37\x63\x43\x3a\xec\xb9\xc4\xf3\xf8\xb6\x0c\x4f\xae\x4a\x5e\xa3\x85\x95\x78\x90\xb9\xf2\x2d\xd8\xf0\x5c\x4b\x02\xac\x9e\xb5\x49\xe0\x9a\x9b\xf5\x66\xac\x03\x0c\x14\x51\xec\x66\x66\x67\x93\x7b\x69\xd0\x26\x01\xcd\xfc\xca\xc9\x0a\xb9\x86\xf8\x90\x08\x7c\xf1\xb4\xde\xc5\xae\x63\x57\x98\xff\x66\xef\x5f\x71\x6d\x23\x6e\x88\x0a\xc8\xa9\x86\x0f\xaa\x76\x29\x66\x2e\xae\x61\x07\x9c\xec\x7a\xc3\xe0\xe4\x14\x31\x29\x64\xdb\x9b\xcf\xc8\x89\x74\x29\x88\x92\xcf\xf0\x44\x5d\xbe\x46\x3b\x58\x15\xb0\x98\x00\xfd\xb7\x99\x0a\x46\x97\x37\xf7\xa3\xd5\xe0\x3d\xa1\x5a\xfe\x98\xf1\x6f\x5f\xbf\x55\x57\xc6\x71\x71\x50\x8f\x56\x2f\xd7\x16\x99\xd9\x1d\x8b\xb3\xab\x5d\xb7\xdc\x17\x97\x28\x3a\xcd\xd8\x75\x90\xeb\x59\x04\xb6\xe5\x6f\xf3\xa3\x93\x94\xa0\xd4\x2c\xb4\xbd\xfe\x6d\x4d\xe3\x96\x57\xca\x42\x34\x75\xac\x72\x42\x54\x40\x65\x35\x2a\x75\x3e\xbb\x79\x84\xd2\x31\x03\x97\x6f\x2c\xf2\x82\x5b\xb7\xeb\x27\x0e\xad\x62\xcf\x89\xd7\xca\x76\xd9\x87\x5b\x8d\xaa\x54\x51\xd9\x0b\x3b\xfb\x69\xa9\x23\x71\x90\xe7\x01\x53\x5c\x6c\xb4\xef\x58\xe9\x66\xa5\x85\x19\xcf\xd5\xf2\xe7\x24\x13\x98\x36\x27\x2f\x9f\x18\x91\xfe\x64\x55\x10\x58\xc8\x82\x7f\xfa\xb8\xc6\x2b\x22\x86\xc5\x05\x2f\xe4\x7a\x3e\x30\xb1\xd9\x48\x13\xe8\x4b\x99\x2b\x76\x5e\x29\xe7\xf7\x51\xfc\x19\xbb\x48\x1b\x64\xd2\x52\x89\xeb\x5a\x40\x28\xbd\x6c\xb1\x8e\xb0\x50\xdc\x2d\x32\xdf\x99\xae\x75\xc4\x6b\x31\xb8\xbf\xd8\x9b\x0b\xb2\x72\xcb\x4f\x28\xf5\x40\x5c\x41\xf9\x91\x8a\x0e\x53\x60\x54\x95\x73\x71\xf4\x1e\x1d\xb5\x4e\x1b\x71\x0f\xf7\xa6\x25\xba\xc2\x8a\x18\x81\x8a\xf4\x6b\xfe\x89\x74\x46\xd9\x1d\x30\xe2\x99\xc4\xe0\x55\x7c\x8c\x4d\xbf\xfc\x72\x8d\x55\xec\xc6\x35\xfc\xd2\x53\xba\xa5\xaf\x47\x85\xb7\xe4\xf3\x8f\x2a\x31\x9e\x05\x9e\xcf\x55\x9b\xf2\xd3\xe6\xcb\x7d\xc5\x08\x28\x11\x7f\xfb\xbe\x16\x51\x2f\x45\x77\x87\x8d\xaa\xb0\x66\xc8\x75\xb4\xa4\xdf\x47\xfb\x74\xd1\x3e\xd9\xa0\x69\x1e\x71\x97\x41\xd1\x46\xe3\xb3\xba\xe7\xde\xe2\x71\xce\xb7\xa2\x5a\x9c\x1b\x3e\x44\xcf\x7e\x5a\x4d\x2f\x4e\x9c\x1a\xf6\xb1\x90\xf5\xac\xbc\xad\x15\x27\x51\xf2\x68\x21\x22\x00\x8c\x5d\x77\xf4\xe6\x4e\xcd\x19\x26\x82\x9e\x41\x98\x4d\xaa\x71\x9f\xe1\xb9\x97\x62\x6c\x38\x89\xed\x26\x73\xb3\xdb\x06\x24\xaa\x72\x30\x59\x1d\x39\x4b\x07\x25\x11\x26\xba\xc2\x53\x35\x95\xa4\xe9\x53\xa7\x4f\x9e\xd9\xd6\x26\x2e\x6c\x96\x99\xde\x19\x41\xab\x98\x39\x7e\xed\x54\x5a\x30\xc1\x47\xa4\x91\x4c\x91\xd2\x81\xe0\xf4\x28\x59\x10\x06\xae\x8b\x59\x9d\x57\x49\xad\xe7\x9a\xa1\x4b\x36\x5e\xc5\x45\x7a\xfe\xb6\x28\x99\xc4\xd2\x14\x4e\xef\x80\xd2\x6e\x8c\xa2\x17\xa1\x09\xab\xb0\x7b\x74\xba\x53\xe1\x81\xf9\x29\x2e\x05\x69\x1e\x5f\xf6\xc1\xed\x6a\x85\x6a\x27\x6a\x7c\x99\x13\xae\xaa\x86\x64\x9a\x80\x31\xfb\xf5\x18\xdd\x40\x37\xb0\x09\x72\x89\x86\x12\xfd\xee\x7d\xaa\x27\x65\x85\x9b\xcc\xfd\xbf\x0b\xb2\xaf\xc2\xb0\x67\x58\xd8\x0c\x44\xf3\xf7\x4f\xdb\x92\x1b\xb4\xab\x55\xa5\x8c\xad\xbc\x2a\x0f\x67\x16\x45\x0b\x66\x7a\x54\x55\x54\x58\x3d\x46\xa7\x40\xb3\x4a\xec\x95\x9e\xfb\x9e\x66\xe2\x80\x1d\x90\xa8\x37\x62\x91\x08\xa7\x45\x7e\x6d\xa0\x50\x6d\x72\x95\x36\xcd\xe9\x8f\x42\xcb\x0c\xb4\xe7\x57\x9a\x7c\x8d\xd5\x51\x02\x33\xcf\x3c\x5b\x56\x66\x6e\xd8\xe4\x60\xfd\xec\xac\x73\x0a\xbf\xc1\xc6\xaa\x25\x6e\xef\x66\x39\x0c\xf0\x59\xa1\x18\x0e\x3f\xcf\x51\xf5\x8b\xb0\x49\xeb\x5e\x95\x54\xe5\xb1\x13\xce\x99\x94\xde\x82\x1d\xed\x53\x45\x6c\x79\xa8\xac\x1d\x2b\xd4\x56\xec\x7f\xbf\xba\x49\x27\x1b\x91\x8a\x18\xc1\xe6\xf6\x5d\x50\xdd\x99\x90\x5b\xb5\xf9\x27\xfe\xd3\xe6\xe1\x9a\x7e\x47\xdc\xa8\x3e\x3a\x31\xc9\x76\x03\xb7\xa9\x53\x97\x3b\x5a\x4a\xd0\x5b\x9c\x6d\x0b\x8b\xa8\xe3\xbc\x5e\x6c\x94\x31\xc3\xae\x19\x38\x5c\x38\x6d\xb2\xab\x0e\xa0\xa1\xf6\x8f\x7e\x5c\x5c\x95\xb4\xa3\x6c\x52\x8a\xdb\x51\xe3\x0f\x5f\xaf\xec\x1d\x42\x5d\x9e\xa7\xa5\xaf\xa3\x7f\x5e\xbe\x0a\x3a\xc1\xa4\x0d\x68\x82\x0e\x6e\x49\x03\xe0\xaa\xc8\x45\x8c\xf8\x56\xaa\xe3\xd2\xfe\x68\x9a\x1f\x3b\x99\x57\x9c\xef\xdb\xc1\xab\xee\xb9\x8c\x72\xc1\x2b\x05\x36\xe1\x6b\x81\x0c\xb9\x58\x36\x21\x16\x2b\x08\x72\x64\x54\x5d\xda\xb0\xb1\x59\x51\x9d\x5d\x33\xff\xe2\xca\x74\xc6\x52\x21\xca\xa5\x39\x31\x77\xbd\x8c\x14\xd9\xf2\xcc\x77\xb7\xea\x80\xb1\x98\xda\x05\xcf\xf3\xf6\x17\xb4\xa5\xd2\x3a\x45\x8c\x1a\xbf\x61\xf1\x65\xdb\xde\x56\xf0\x7c\xe8\xb6\xf7\x66\x97\x5d\xdb\xa4\xbc\x5f\x27\x26\xe6\xa0\xc1\x5c\x66\xff\x08\x2d\xcb\xc3\xe2\xcc\xca\x3e\x38\x99\x67\xf7\x3e\x74\xc8\x61\xb1\x9b\x23\x74\x05\xed\x0f\x62\xc7\x16\xed\xd0\xd3\x0b\x35\x7c\x65\xb4\x06\x04\x4a\xbb\xbe\x4f\x4f\xc5\x7c\x46\x1c\xea\xf6\x88\x98\xbc\xb5\x2c\xab\x26\x9f\xc2\x5d\xae\x9c\xa3\x4d\xa5\x5c\x1f\x19\x24\x99\x81\xdd\x73\x88\x17\x55\x53\xa7\xb5\xb6\x77\xc0\xbd\x1f\xe5\xfd\x86\xf6\x99\x93\xdb\xa7\x83\x2e\xd3\x2d\xa7\x92\xa9\x79\x5b\x47\x1b\x78\x88\x5e\x6c\xb2\xd4\xf3\x19\x0a\x2a\x96\x90\x9b\xcb\xdc\xad\xc1\x3e\x4a\x51\x3a\x21\x34\xc0\x73\x5f\x3a\xcc\xbf\xf2\x6e\x14\x5b\xba\xcf\xea\x83\xf6\x04\x43\x9c\x09\x6b\xe5\xce\x0b\xbc\xa4\x01\xf9\xf5\x89\x2a\x1d\x85\xd9\x5c\xca\x37\xbb\x6d\x74\xb3\x89\x09\x98\x23\xf0\x8c\xea\x9b\xfd\xf9\x8b\x60\xb4\x07\xd9\x9c\x90\x79\x51\x7b\xa9\xc2\xb8\x8f\x27\x0b\x2b\xd6\xb5\x34\x92\xd9\x19\xf6\x7c\xe2\xf0\xfa\x37\x3b\xc8\x95\xa9\x02\xa7\x7a\xf1\xc8\xb6\xf0\xf4\x90\xa4\xbc\x63\x25\xa1\x47\xfa\xd9\x15\xcd\x3d\x6c\x0a\x38\x69\x91\x5c\x91\x11\x5a\x3b\x0a\x8c\x0a\x60\xb0\x0d\x0b\x28\x7f\xef\x49\x79\xb7\x33\xa6\x0a\x06\x76\x6f\x6e\xdb\x79\xdd\x9a\xcf\x45\x42\x29\xe1\x81\x3d\xa3\x52\xe8\x22\xcc\x78\x4f\x9d\x33\xf1\xb4\xac\xb6\x44\x3d\x61\xc5\x9c\xa8\x84\xdc\x78\x22\x89\xb8\x18\xb0\x5d\x8f\xb9\x1c\xb3\xb0\x00\x26\x00\x4d\x19\xfb\xd7\x7c\x45\xb3\x8d\xe1\x04\x8f\xda\x96\x15\x8d\x65\x40\x20\x37\xc4\xb8\xcb\x18\xa0\x76\xca\x91\x60\xfa\x65\xfd\x77\x64\xbd\x50\xa5\x0c\xc7\x7c\xe9\xf0\xa6\xd3\x69\xe2\xbb\x45\x7d\x6c\xf7\xa5\xb7\x98\x9b\xb0\xfb\xaa\xa6\x6c\xc5\x8d\xad\x43\xb3\x7f\xdd\xad\x1f\x00\xb5\xc0\x46\x8c\xaf\x8e\xfc\xe7\x27\xe9\xe4\x09\x87\x9b\x1d\xae\x2e\x14\xc3\x1d\xaf\xf1\x3e\xcf\x52\x03\xd9\xd8\xf7\x91\xaa\x49\xf9\x93\x93\x9a\xc4\xb0\x53\xb3\x90\x47\x3c\x6e\xba\x96\xfd\x32\xc7\xe7\x15\xee\xa7\xac\x99\x5c\x9f\xff\xdc\x18\x3d\x28\x32\xaf\x15\x25\x5c\xe6\xd7\xa5\x7f\xad\xeb\xc7\x48\xd1\x99\xc2\xac\xca\xb7\x20\xcd\x18\xbc\x79\x62\x23\x0d\x09\x30\xa9\x61\x11\x17\xf3\x1c\x50\xf3\x01\xe3\x61\xbb\xb0\x18\x7c\x0f\x64\xfb\x72\xe5\x59\x89\x3b\x0c\xfa\xe8\xfc\x6e\x91\xa7\xb3\x47\x59\xca\xa3\x0a\x0f\x68\x91\xe7\x8f\xe2\xa4\xd2\xb2\x29\x16\xe3\x01\x9a\x02\xec\xb7\x8d\xcb\xc7\xc8\x8a\x14\xf5\x71\x22\x3d\x36\x5e\x6b\x63\x53\x07\x34\x5c\xf8\x19\x9e\xf7\xe7\xea\x5a\x01\x0c\x44\xdb\xf8\x98\xf4\x59\x2d\x23\x0d\x7c\x1f\xb3\x58\xe5\x2a\xb3\xa9\x5f\x93\x7f\x93\x53\x13\x31\x7a\xc7\x4e\x59\xc3\xb8\x3d\x80\x86\xca\xfc\x61\xaf\x3e\xdf\x75\x70\x4c\x81\x9c\xaf\xcd\x04\x4c\xe2\x19\x01\xa8\x10\x25\x86\xb0\xdf\x9a\xcd\xa3\xdc\x94\xc9\x1d\xd3\x60\xbf\x6e\x1c\xc5\xc3\xcf\x32\xea\x0a\xb9\xd6\xcc\xa7\x9e\xd3\xa4\x50\x91\x0f\xb6\xf2\x4a\x52\x37\x70\x1b\xff\x18\x0b\x71\xe1\xbc\xcc\x33\x2f\xc7\xae\xc4\xc4\x41\x15\xe2\xc6\x5c\xbc\xaf\xcd\x14\xba\xbc\x81\x6f\x51\x46\x56\xf3\xea\xe5\xce\x93\x32\xb9\xe4\x20\x9b\x42\x31\x9c\xb2\x53\x2f\x2d\xc1\xc7\x12\x34\x3a\xe2\xef\xed\xee\x48\x47\x97\xaa\x8b\x1b\x02\xf4\xba\xb0\xd6\x5f\x1c\x68\xb0\x9d\x7b\x34\xad\x6c\x46\x8d\x2a\xe6\x50\xcd\xfc\xa8\x67\xe5\x56\x7f\x28\x10\x42\x34\xe1\x2f\xf6\xf4\x69\xd7\xc2\x01\x78\xa7\x5b\x93\x35\x5f\x0b\x58\x9c\x1b\xdd\x72\x38\x49\x72\x10\xab\xc4\xf1\x65\x9e\x54\x18\xc1\x15\x2a\x7e\x37\xf7\xb3\xc3\xba\x02\x80\x9f\x50\x7f\xec\x51\x32\x47\x8e\xa1\xa8\xa9\x0e\xea\x7e\xc5\xae\xc0\x0b\x4a\xdd\xe0\x33\x11\xfe\x6c\x2e\xbf\xe5\x7b\xa1\xfe\x3b\xfe\x84\x82\x3d\xac\xb8\x94\xfb\xb3\x16\x6b\xe2\x78\xb1\x7a\x7c\xcb\x81\xd4\x6c\xe7\x8b\xe9\x22\x08\x75\x4c\xe5\x35\xf3\x8f\x96\x2b\x10\xe6\xe0\xa1\x40\x1d\xe1\x7d\x7a\xcb\xf8\x54\xf0\x96\x53\xea\xa6\x06\xf6\xe4\x5d\xda\x3c\x1f\xec\xdf\xa3\xff\x2a\x86\xa3\x5c\x4d\xf3\x38\x28\x21\x86\xaa\xdc\xa7\x3a\x8e\x5d\x97\x5e\x96\xa3\xcc\x80\xc5\x8f\xf5\xb6\xe7\x65\xff\xbf\xde\x6c\xaf\x79\x7e\xa0\x2a\xc8\x6e\xa3\xe8\x45\x0f\xea\x18\xa3\x1d\x2a\xcc\x04\x1a\x6c\x9c\xdf\x9d\xd2\xf8\xbd\x78\x15\x36\x82\xe8\x4c\x8a\xfb\x1d\x6b\x34\x5b\x3d\x0e\xbe\x34\x90\x54\x8f\xca\x6f\x78\x51\x7e\xf1\x8c\xa9\xd0\x27\xce\xfe\xe1\x72\xbd\x63\x57\xc7\xcc\x4f\x7c\xa8\xb2\x97\xae\xe7\xdb\xa5\xc6\xa8\x17\x7d\x23\x15\x5d\xa1\x4d\x9c\x04\x5c\x58\x36\xf7\xce\xa6\x68\xf7\xe6\x3a\x99\xd7\xd7\xa1\x27\x5b\x22\x5c\xb2\xe5\xfc\xae\x6b\xb4\x14\xbd\x8e\x9c\x9a\x6a\xd5\xfd\xf0\x79\x55\x82\xbf\x1b\x7c\xa7\x7e\xb0\x5b\x6d\x0b\x32\x02\x45\xc5\x4f\x0e\xf2\xec\x62\x29\xc1\x15\x35\x14\x67\x86\xce\x94\xaa\x80\x0c\x71\x57\x68\xfd\xc5\xff\x42\x40\x6d\x1b\xd8\x34\x63\x44\xcf\xa6\xf5\x93\xb4\xc5\x10\x23\x4f\xfa\xd4\x26\x5e\x55\x56\xc0\x4f\xf0\xab\xbc\x9c\x18\xbd\x80\x77\xf3\xba\x90\x2f\x6d\x6d\xc3\xfc\x73\x83\x94\x03\xc0\x82\x3b\x38\xba\x50\x23\x4b\x97\xa3\xf3\x56\x1c\xb6\x97\x3d\xac\x99\x33\x90\x8a\x5b\xa3\xd2\x1c\xe8\x2f\xf3\xe5\x46\x2c\x23\xe6\x7a\x0d\xca\x52\xbe\xee\xcb\x9e\xd1\x06\xf3\x44\x88\x75\x65\x3f\x7f\x54\xf1\x4e\xb6\x38\x8f\xb0\xd8\x9b\x1d\x79\x38\x29\x50\xcb\xe4\x21\xa5\xec\xbd\xff\x82\xe2\x8e\x6c\x31\xda\x00\x9c\xef\xbb\xc3\x45\x02\x22\x24\xad\xa3\x07\x05\x2b\xe3\x4b\xf3\x78\xc4\x6d\x9f\x3c\x7d\x06\x04\xee\x43\x1a\x3c\xc7\xd6\x50\x8e\xd9\xf3\xcf\xf3\xbf\x00\x9f\x49\xd0\xaf\x5c\xa4\xcc\xc1\x91\x8f\xaa\xd1\x32\xc8\xfc\xc7\x03\x8a\x40\x3f\xf1\x4a\x88\xeb\xc8\xf7\xe6\xfe\xce\x57\x62\x0e\x68\x51\xc2\x9b\x18\xfc\x3c\xbf\xc4\x05\x40\x01\x50\xfd\x8b\x27\x6c\x1a\x9e\x2a\x48\x8d\x04\x3c\xf2\xdb\xb5\x2d\x4a\x7c\x73\x71\x8f\x43\x79\x6e\x7a\x62\xfb\x68\xa5\xa1\xe0\x47\x4f\x4d\x45\x1c\x7e\x6e\xb5\xc6\xfd\xc6\xf1\x9b\xca\xdc\x33\x5b\x2b\x56\x28\x24\xfa\x1c\x9d\xb6\x55\x63\x51\x11\x0e\x3e\x0e\xff\xf5\x82\xde\x4f\xac\x63\x96\x40\x35\x3f\xd5\x4f\x11\xd3\x04\x54\x37\xf0\xf4\xda\x9f\xe2\x3a\xf0\x9d\x20\x03\x73\xf2\x35\x65\xf4\x65\xa2\x1a\x1c\xd4\x13\x2e\xd3\xc5\xaf\x60\x83\xc4\xe8\xdc\x01\x07\xe5\xde\x41\x25\x86\x2c\x20\x41\x6b\x32\x9c\xbb\xfb\x80\x7f\x8b\x5c\x3b\xf7\xc2\x0a\xfe\x2a\x11\xf1\x38\xd8\xe8\xa3\x97\x35\xb9\xe4\x73\xf9\x1f\x1e\xc8\xbf\xfa\x2e\x87\xd1\xdd\x8f\x5c\xe4\xa0\xaa\x58\x89\x2d\xe9\x28\xe1\x52\x56\xa6\x76\x55\xda\x09\x67\xf7\x8a\x53\xbd\x44\x69\x35\x0a\xd6\xbb\x16\x6a\x8e\x87\xc4\x03\x75\x3a\x5e\xd5\x65\x1f\xed\xcb\x7d\xa7\x01\x71\xf5\x13\x6f\x8e\xd6\x16\x67\x19\xfb\xc4\x89\xf9\x1f\xec\xb0\x26\xab\x00\xcb\x1d\xec\x01\x79\x26\xf3\x2d\x89\xb4\xf4\x03\x68\x44\x7e\xf0\xc9\x64\x1f\x59\x55\x99\x12\x84\xb7\x6f\x96\x9d\xf2\x06\x97\x20\x49\xc2\x43\xe9\x94\x4e\x93\x31\x03\x23\x31\x3a\xca\xfe\x31\x2f\x62\x9d\x1f\xf8\x7e\x05\xb1\x84\x5e\x33\x52\x13\xe6\x26\xae\x19\x78\x3e\x23\xa8\xcf\xfc\x3e\x73\xcc\xd2\x35\x26\x85\x2e\xb1\x28\x66\x3f\xf4\xac\xe6\xb2\x49\x13\xc1\x1b\xba\x4d\x0a\x56\x21\x15\x0e\xfd\x2b\x45\x59\x18\xf9\xd1\x61\x6b\xf2\x3a\xe9\xfe\x85\xfc\x3c\x9f\x3a\xad\x23\x29\xb9\x5e\x55\x64\x9e\x59\xe0\x27\xfe\xdd\xfb\x17\x69\x6a\x7e\xa4\x5c\x26\x46\x60\xfb\xf1\x39\x94\xfb\x4a\x49\x90\x23\xea\x34\x21\x2f\x97\x57\x2b\x41\x95\xac\x82\x6f\xfd\xb1\xd2\x6b\xb2\x90\xe3\xc4\xae\xbf\x7f\xb7\x4e\xfe\x1c\xaf\xe2\x18\x81\x42\x31\xec\x7e\x56\xd5\x3c\x47\xae\x67\x23\xee\x9a\xb8\x6e\x8e\x10\x9f\x33\x01\x30\xc5\x91\x03\x5d\xdb\x94\xd1\xa4\x4d\x3d\x00\x6a\x85\x37\x3f\xae\xd5\x45\x04\x1b\x09\x18\x22\xfb\x3b\xe5\xf0\x72\x10\x3f\xbc\x32\xd9\x35\xfa\xa9\x0b\x4e\x34\x94\x89\x21\xcd\xaf\x56\xcb\xf1\x43\x74\x58\x84\x63\xee\x13\xda\x7d\x48\x38\x6a\x64\x46\x3d\x95\x2c\xb3\xaa\x7a\xfe\x65\x5f\xd8\x7e\xa5\x24\xf3\xc0\x1a\x5f\xc9\xf8\x9b\x98\x32\x3d\x2e\x7e\xb3\xb7\x3c\xa1\x65\xce\x0c\x23\xc3\xc2\x8c\x06\x89\xad\xca\xf7\x2f\x4b\xec\x0b\x63\xf9\x82\x2c\x19\x9a\x24\x8c\x41\xbc\x0a\xc3\x25\x9a\xac\xbb\x17\xd4\x80\x9d\x2e\x62\x42\x76\x5c\x5b\x8b\x7a\x41\xf2\x88\xaa\xab\xe3\x3e\x1b\x63\x78\x5e\x83\x76\x27\xca\xd7\xa8\x00\x45\x9c\xaf\x97\xaf\xb0\x3b\xfb\xb0\x89\xf9\xe2\xa6\xf4\x66\xed\xc6\xcc\xc3\x3d\xdc\xa5\x22\xba\xd0\x47\x34\x4d\xba\x56\xd1\x6d\xf9\xe2\x3a\x75\x8a\x6f\xba\xa8\x56\xe3\x89\xf6\xf2\x77\x65\x3b\x88\x41\xeb\xf4\x37\x03\xb5\x1d\x04\x62\x4d\x09\x31\x2f\x7b\xd7\xf6\x91\xaa\x46\x08\x62\x0e\x70\x40\x40\xae\x74\xd8\x56\x49\x92\x02\xa1\xb1\x81\xbb\x79\xaa\x70\x27\x76\xd5\x04\xf6\xbd\x8f\xa4\x2f\xb3\x7d\x0a\x07\xd4\x6d\xe2\x85\x42\xe1\x2e\x44\x1c\xda\x20\xfe\x6a\xd5\x11\xf0\xc4\x08\x05\xdf\xad\xe2\xd0\xb2\x37\xac\x92\x2b\x1f\xe2\x22\x27\x88\x3d\xdf\xd2\xa2\xa0\x9b\x09\x37\x92\x8b\x7e\xff\xca\x8d\x23\xd4\x61\x3d\xf5\x2c\xec\x56\x29\xc8\xb7\xfe\x5e\xf8\x0e\x2e\xa4\xea\x24\xb9\x71\x21\xc1\x53\xb8\xa0\xb8\x22\xc5\xd5\x66\x3e\xaf\xad\x73\xae\xa3\x83\x44\xaf\x2e\x7f\xd7\xa2\x26\xf2\x0e\xf3\x19\xa5\x31\xbc\x6f\xca\xeb\x4d\xc3\x1b\xe8\x2a\xf0\xc3\xe6\x59\x6d\x12\x06\xad\x10\xd1\x8e\x18\xdb\xa1\x52\x00\x0c\x98\x0d\x43\xe6\x9a\x9d\x60\xca\xa6\x6d\x77\xe0\x12\x0a\x63\xa2\x05\x07\xd3\xc3\x06\xe4\x8f\xf7\x9b\x85\xde\xb3\xff\x37\x5d\xf7\x21\x46\x02\xac\x35\x42\xb7\x37\x86\xff\xe3\xc9\x5a\x63\xbf\xea\x74\x13\x9d\x97\x9c\x45\x7f\xc5\x65\x8a\x0f\x5d\x50\x72\x10\xf4\x1d\x0a\xc5\x70\xfd\xdb\xb1\xb4\x21\xa3\xb0\x12\xef\x7f\x50\x23\x2a\xd9\xb4\x84\x6c\x51\x99\x3f\xb7\x5e\x71\xb6\x41\x08\x0a\xd7\xc2\x3c\xf9\x16\x4b\xd4\x54\x23\xf6\x67\xb7\xa5\x87\x80\x0e\xc5\x76\x05\x21\x96\x72\x8f\xcb\xdc\xb9\x36\x59\xad\x01\x70\xa5\x5a\x14\xc1\x58\xc3\x26\x4e\x49\xc4\x84\xcf\x4c\x4d\xc7\x6e\x5a\x13\xe4\x40\xd1\x9b\x0e\x2f\x69\x43\x49\x5a\xa1\x2e\x91\x9a\x94\xd9\xef\xbd\xad\xc0\xe2\x18\xc1\x65\x98\xe0\x7c\x7c\xb7\x42\x6c\x04\xd9\x27\x1e\x6d\x96\x59\xba\x6c\xcc\xcc\xe9\x71\x81\xf3\x61\x2b\xf6\xc5\x04\x77\x06\x97\x83\x74\xee\x51\xda\x8d\xab\x2d\x52\x09\x6c\x12\xdd\xcf\xf1\x45\x2a\x6c\x56\x71\x65\xc8\x75\xe5\x93\x80\x55\x02\x19\xd3\xf8\xc9\x0d\x3b\xa8\x65\x65\xc8\x97\x2d\xf8\xec\x67\x14\x34\x98\xc1\x30\x30\xa5\xa3\x0c\xe1\xc2\xd5\x8a\x16\x00\x5a\x4d\x6c\xa2\x82\xac\x32\x7b\x0f\xa6\x13\xf5\x1b\x63\x55\xeb\x8b\xf3\xf4\xd4\xa9\xea\x72\x99\xa8\xe8\xf2\x0f\x29\x42\xe5\x0e\x2d\xc1\x4b\xcf\xae\x1e\xd3\x67\x24\x66\xa2\x99\x96\x5b\x70\x9f\x3a\xe6\x67\x84\xb7\x35\xe1\x32\xad\x4b\x5a\x37\x7f\x5a\x4c\x1c\x7a\x72\xa0\x06\x12\xc6\x46\x20\x8c\x99\xc5\x19\xb7\x6a\x94\x90\x46\xb4\x02\x07\x50\xc3\xff\xb6\x79\x84\x48\x58\x18\x22\xbe\xaa\x50\x9a\x3b\x65\x6a\x8c\xc6\x55\x51\xbc\xe2\x55\x4f\xfe\xd3\x17\x65\x8e\x64\x01\xe6\x41\x69\xa9\x14\x1e\x53\x8e\x0b\x4c\x03\x50\xfa\xfe\xfd\x4b\xe9\xe5\x00\x0e\x80\x22\xf3\x6e\x9d\xa3\xa7\x33\x81\x18\xbe\x66\x16\x9f\x55\xed\xe9\x3c\xec\xfa\x31\xc5\xe0\xe4\xd0\x2b\xc4\x46\xb2\xcb\x85\x62\xb8\xe0\x4d\x5d\xb1\x19\x03\x3b\x5d\xc8\xc5\xe6\x87\x3e\xa6\xb5\x3d\x29\x65\xb1\x43\x6d\xf8\xe8\xce\x71\x4a\x2b\x82\x82\xda\x8e\xdf\x0c\x52\xe9\xcd\x9c\x5e\xa5\x6c\x81\xc0\xf7\x39\x33\x27\xb3\x72\xd2\xd0\xb8\xe0\x60\x94\x53\xf9\xa2\x1f\xff\xb4\x63\x90\x82\x52\x9b\x31\xbd\x50\x0c\xbf\x66\xeb\xd4\xc3\x4a\x25\xe1\x2a\x66\xff\xbd\x26\x77\x40\x77\xe0\xc2\x0c\xa7\x50\x0c\xbf\x23\x44\xfe\x12\xd7\x91\xf0\x09\xbf\x45\x3d\x46\x20\x25\x80\x2b\xf9\x4c\x4d\x9f\xad\x71\xc5\xe8\x78\xed\xaf\xb9\x90\x7e\xd4\x25\xea\x94\xc4\x5b\x38\xd5\x36\x41\x0b\x37\x3e\x65\xd4\x46\x5c\x10\x22\x1d\x5e\x9f\x3c\x9d\x5e\x6a\x75\x6c\x41\x05\x9e\xc8\xf3\x66\x3f\x31\x4f\x93\x8a\x8b\x9e\x68\x6a\xc8\x3c\xec\x01\x6d\xfe\x13\x30\x37\x56\xa5\x6d\x7f\x20\x65\xd6\x9d\x78\x04\x46\xd7\xb9\xee\xd5\x66\xb3\x51\x2b\xc6\x91\x86\x6f\x9e\x6d\x51\x61\xb6\x56\x14\xc5\xe1\xc9\xfc\xfa\x48\xd2\x02\x6a\xe0\x84\x95\xfa\xce\x81\xeb\x95\xf5\x55\xe3\x4b\x8c\xe3\xf2\x65\x38\xd9\xfd\xcc\x10\xb5\x85\x20\xc8\xef\xf3\x4f\x24\x99\x76\x37\x52\x94\x81\xee\xed\xa7\xdf\x97\x1b\x17\x84\x79\xaf\x25\x09\xd6\x0d\xde\x9f\xb1\x06\x2b\xa6\x70\xb8\x14\xf0\xc1\xd9\x94\x77\x55\xd2\x04\xae\x33\x6a\x83\x92\x56\xbe\x67\x76\x4b\x7c\xe0\x20\x52\xb1\x7c\xd4\x40\x3d\xf0\x17\x23\x8f\xca\x30\x53\x0b\xca\x65\xb0\xad\x3a\x27\x68\x4e\x28\xf0\x38\xe4\x35\xfb\x87\x85\x12\x6f\xec\xf9\xa8\x5c\x6e\xea\x97\x6c\xdd\x23\x17\xed\xcc\xb6\x56\x98\x95\x7d\xf9\x52\x72\xd9\xb1\x87\xc9\xb5\x8a\xc8\x29\x85\x73\xe7\x7a\x0d\x73\x52\xe5\xc2\x1e\xb0\x1a\x76\xe5\x35\x2c\x0c\xb2\x6d\x6c\x72\x6e\xc3\x6b\xfd\x95\x4a\x00\x7b\xc4\x87\xe9\x53\xf8\x91\xb9\x4d\x3a\xfb\xc4\xc4\xae\x21\x3c\x61\x0e\xad\x19\xa4\xd4\x0f\x2c\x4a\xd3\x3e\xf7\xa6\x22\x8c\x81\x3c\x8f\xd6\x39\xb2\xe4\xb0\xb4\x3a\x37\x81\x65\xfa\xe3\x11\x43\x94\x5f\x4c\xd4\x0a\xfa\x6b\xa0\x96\xb6\x0e\xf1\x55\x47\xd2\x79\xde\xd4\x76\x3e\x0b\x9d\xf6\x82\x30\xe0\x89\xea\x23\x3e\xc5\x59\xda\xd5\x9b\x1f\x2c\x00\xdb\x36\x32\xaa\xb0\xf2\xd0\xc5\x6b\xb5\x3b\x49\xbc\xc1\x05\xb4\x2c\x5b\xbc\x4f\xae\x5a\x13\x55\x2c\xcc\xa9\xa7\xe1\x8c\x33\xbc\x1f\xbb\x90\x80\xd5\x7b\xfe\x80\x82\x7d\xe3\x67\x49\xe6\xd1\x23\x8a\x6e\x95\xe1\x06\x30\xf1\x0b\x1f\x3c\x9b\x46\x9f\x74\xd3\x80\xb9\x48\x18\x04\xa6\x47\x11\x67\x36\x27\x4a\x3e\xd3\x54\xd2\xe7\x1c\x4d\x5a\xaa\x4c\x6d\x9b\x36\xc4\xc0\x72\x6e\x56\x3b\x61\x2d\x1c\x95\x5f\x06\x9f\xcb\xcd\x79\x54\x09\x7c\xad\xed\xc0\xc7\xec\x7a\x56\x45\xf8\xba\x84\x7b\x0a\x6b\x8d\x5d\x1e\x53\x45\x40\x2a\xbd\xad\xa9\x44\x53\x1e\x29\x41\x3b\xec\x1f\xde\xb8\x36\xd5\x3d\xa4\x4d\x06\x49\x39\xe3\xb2\xd8\xa6\x2a\x88\x05\x2b\x7e\x64\xa9\x32\x4e\x36\x66\x5c\x06\x20\xbb\xe0\x45\x05\xf0\x12\xd4\x18\x06\x7d\xe3\x62\x6f\xfe\xb2\xdd\xd2\x26\x9f\xd8\x85\x62\x38\xaa\xac\x8d\x99\x6b\x35\x0c\x8e\x15\x3c\x82\x5f\xb5\x43\xf3\xc8\x4f\xfa\x10\x22\xe1\xcd\xfd\xea\xdd\xc1\x4a\xe8\x16\x59\xed\x07\xc3\xf4\xda\xc3\xf5\xf8\x6c\x3c\x35\x4f\x11\xa8\x83\xe6\x12\xb4\x90\xee\xd4\xcc\x2a\x51\x05\x11\x18\x8a\x86\xbd\xbb\xf5\xd6\x2d\xf2\xa8\x0b\xe3\x61\x91\x7d\xad\x3d\xa1\xb3\x52\x91\x8f\x39\x03\x1e\x48\x14\x9b\x27\xa7\x2f\x06\xfe\x07\xb6\xea\xb0\xe9\xfa\x3c\x1c\xbc\x30\xad\x64\x5e\xf4\xbb\xed\xb2\x10\xeb\x68\x8b\xca\xc2\xdc\xc2\x31\x43\x1b\x71\x63\x1a\x5a\xfc\x3c\x8d\xf9\xc4\x41\x5d\x27\x4a\x5c\x44\x02\x6a\xbe\x7c\x2c\x3f\xe0\xa7\xb4\xb5\x4e\x01\xbd\x22\x51\xe7\x12\xd7\xa5\x06\xa7\x77\x3d\xd0\x7f\x90\x48\x5f\x90\x2b\x9a\x0d\x99\xbb\xb5\xb8\xc1\x19\xa1\xc8\x13\x86\xbc\x99\x07\x14\xb5\x6a\xdf\x82\xf4\x8f\x97\x84\xef\xd9\x25\x66\x9f\xc8\xa6\x0e\xf2\x89\x62\xc4\x32\x47\x73\x12\x2a\x21\x56\x02\x44\x44\xf2\x1b\x3f\x58\x20\x86\x80\x88\xd8\x22\x24\xe7\x8c\x49\x4a\x41\x17\xe5\xb9\x15\x88\x93\x2f\xee\xd4\x3c\x18\x28\xad\x72\xd4\xed\xc2\x45\x23\x95\x4c\xd7\x27\x0e\x31\x63\xa4\x4d\xf6\x7b\x9a\x8c\xbb\x43\x5d\x13\xf5\xc4\xed\xf8\xcc\xe0\x47\x86\x29\xf3\x2f\xbb\xc2\x84\xe2\xfd\x8f\x96\x69\xd5\x0e\x36\xb1\xa0\x84\x65\x0e\x1f\x51\x15\x7f\x0d\x5a\x71\x63\x79\x99\xdc\xd0\x17\x87\xc7\x29\x17\x77\x2b\x16\x86\x3c\xbd\x99\xf1\x47\xfa\xe0\x10\x25\x0d\x4f\x2c\xb5\x87\xc9\x2a\xc8\xd1\x8f\x1e\x4f\x10\x42\x7d\xe9\x20\x5c\xb6\xaf\xd9\x2f\x27\x1e\xa5\xec\x7a\x3c\x6d\xf3\x82\x5d\x4f\x00\x13\xee\x59\xa6\xf3\x3b\x19\x98\x97\xdd\x5c\x28\x86\xa3\x37\x68\x19\x0e\x8a\xb1\x4f\xd9\xc6\xb5\xba\x95\x85\x8f\x88\x2d\x8e\xe6\x4c\xa8\xc4\x27\x9b\x82\x53\x61\x76\xfe\xc9\x41\xc9\xd7\xdb\x82\x3c\x7c\xdb\x3b\x57\x26\x97\x35\x25\xca\xe9\xba\x9e\x49\x2f\x65\x87\x78\x00\xac\x2c\x07\xfc\xb3\xc3\x9f\x28\xfc\xeb\x32\xc6\x36\x01\xb6\x7c\x6f\x7e\xcd\x8b\x49\xf7\x88\x03\xd2\x33\xff\x95\xd7\xc8\xd7\x8c\x38\x18\x9e\x48\x7c\xba\x0c\xdc\x29\x49\x29\x70\x76\xa5\x9b\xbe\x9f\x79\x52\xe3\xd9\x51\x9b\xf8\xb2\x73\x1c\x96\x35\x83\xd6\x87\x02\x8c\xa5\xf3\x72\xe6\x91\x03\x5a\x8b\xc8\x67\xc8\xad\x24\x10\xe8\xec\xb3\x5b\x54\x0c\x1f\x17\x04\xeb\xcd\x0c\x3e\x2d\xc4\xe8\x5c\x13\x7e\x9b\xc7\xda\x6d\xa6\x48\xd0\x03\x07\xc2\x4e\xf1\x01\x4d\x87\x99\x11\xa8\x78\x78\xef\xf7\xba\xd1\xfc\xd4\xac\x62\x5c\x83\x00\x31\x76\xc9\x28\x05\x7c\xe2\x52\x5b\x55\xd5\xfa\xee\x86\xf4\x73\xaa\x50\x33\x8d\x36\xcc\xfe\xfd\xb5\xba\xfb\xa6\xef\x11\xae\x69\x15\x7f\xc8\xda\x9d\xba\xd0\x2d\x8b\x71\x3d\xfd\x34\x47\x33\x98\x64\xc7\x64\x99\x7f\x7d\x82\xb3\x8d\xba\x90\x0d\xd5\x2b\x8e\x9d\x63\xb8\x16\x4c\xfe\xd1\xe7\x86\xc6\x89\x2b\xb7\x1e\xe1\x3b\xf8\x1e\x6d\xf5\x39\x14\xe8\x9b\xd0\x94\x58\xb8\x40\xf3\xb9\x12\xcc\x9c\xf0\xf9\x37\xa5\x2a\x8a\x1f\x98\xdd\xa9\x4a\x2b\x73\xa3\xce\xaa\xa4\x2e\xb8\xdf\x26\x4e\xab\x3f\xd8\x9f\xe8\xe9\xbb\xa0\xa6\x97\xd4\x77\xf9\x47\x96\x29\x5e\x18\x0c\xdb\x5c\x5e\x14\xfe\xea\xef\x6c\xc9\x61\x69\xa2\x62\x84\xb7\x29\x2a\xcc\xdd\x44\x11\x5f\xed\x2c\x27\x7f\xe6\x5b\x4d\x5b\x3d\x33\x64\x97\x2e\x2c\xe0\x9a\x5c\xdc\x20\x2e\x4f\x3f\x57\xe7\xeb\x68\xbe\x0d\xbc\x77\x91\xa2\x9f\x5b\x91\xd2\x74\x05\xd6\x68\xf4\x68\x96\x5e\x94\x35\x82\x4d\x6b\x58\x6d\xb3\x3d\xb5\x6f\x88\x9b\xd2\xfe\x80\x5c\x7b\xcc\x83\x9a\x4c\x10\x65\x38\xaa\x8e\xc4\x2c\x2f\xe3\x3f\x3e\xa2\x59\xce\x6a\x69\x57\xf4\xce\xff\x30\x5b\xd1\x5a\xc1\xcc\x27\x36\x59\x0d\xd9\x65\x6e\xf8\x1b\x4a\x5f\x3d\xf0\x7c\x2c\xfc\x5a\x33\x6f\xce\x4b\x09\xaa\x63\xc4\xe2\x2a\x2d\xfb\xba\x26\x7e\x59\xb3\x31\x32\x93\x31\x48\x87\x9d\x5e\x0c\xd3\xda\xa7\x8b\x0a\xff\x99\xa9\xfc\x01\x45\x11\x24\x00\x7a\x13\xf0\x12\x6e\x96\x1a\x76\x58\xc7\xe0\x87\x7f\xd9\x90\x84\xe4\xf6\xd6\x19\x20\xfb\x50\x93\x4c\x94\x9a\xdf\xfc\xa2\x3e\xd1\x7f\x40\x7c\x62\x97\xa2\x74\x79\xf1\x46\xbe\x9e\x1f\x20\xb6\x0a\xc3\x5d\x60\x29\x2c\x8a\x82\x67\x11\x16\x1d\xc9\x1f\xcb\xab\x84\x2a\x00\x81\x55\x10\x6f\x65\xf6\x66\xab\xfb\xb4\x14\xbb\x5d\x84\xa5\x33\x1b\x79\x9c\xf5\xaa\x44\xf4\x74\x7b\x33\xfb\x67\x29\x59\xba\x8d\x0c\x38\x3c\xdf\xb8\xa4\xea\x7c\xb9\x26\x84\x0a\x7f\xb3\xdc\x24\x40\x72\x02\x3a\x5d\x19\x01\x4f\x29\x97\x1b\x2d\x3f\xc7\x67\xb8\xce\x33\xae\xfb\xb5\x6a\xa5\xc4\xe5\x9a\xe0\xf3\x9e\x99\x99\x3c\x32\xb0\x0d\x08\xff\x78\x54\xfb\x65\x9b\x1a\xb1\x5c\xd0\x57\x96\x69\x99\x98\x11\xa3\x82\x33\x37\xcc\xd3\xa4\x41\x60\x22\x22\x5a\xa6\x95\xad\x32\x55\xea\x41\x30\xe3\x7f\xaf\xcd\x5f\xef\x32\x2f\x60\xa4\x1c\xb7\xdd\x86\xae\x4f\xb6\x95\xe7\x35\x9f\xa0\x5f\x7f\x55\x8b\x01\x5e\x8f\x61\x11\x23\x8e\xe9\xe1\x7b\xaf\xd5\xca\x32\x5a\xab\x61\x9b\x77\xaa\x5b\xde\x52\x55\x91\xcb\x09\xdf\xeb\x4f\x03\x14\x4d\x89\x1a\xf1\x0c\x5a\xe3\x25\x4e\xb1\x37\xf3\xa3\xb1\xba\x0e\x06\x8b\x8d\x3a\x7b\xb3\xe6\x09\x45\x41\x05\x9b\x24\xf6\x88\xe8\xbe\x90\x46\xe2\xb8\xb4\x4e\xaa\xb4\xae\x90\x3c\xc2\x72\x99\x67\xeb\xc4\x71\x84\x4e\x53\xee\x73\x17\x46\x29\x39\x3e\x71\x53\x16\xc9\x0f\x6e\x1e\x2b\xcf\x6b\xcf\xa3\x60\xd1\xdd\x44\xb8\xcb\xcd\xaa\x69\x76\x28\x0d\xe2\xaf\xc6\x2c\x0a\x77\xf0\xed\xd1\xd5\xd5\x76\xff\xff\x1c\x9a\x36\xc0\x51\xc3\x65\x27\x9a\x24\x5e\xbc\x98\x16\x92\x5f\xb4\x4b\xca\x53\x54\x08\xad\x23\xd7\x55\xb1\xb9\xaf\xbe\xad\xe5\xb9\x16\x62\xd8\xa2\x76\x94\x86\xf1\x67\xf6\xad\x7d\x0a\xa6\x9e\xe3\x0e\x8b\xbd\xb9\xd8\x3f\xc9\xa0\x41\x0d\x26\x49\xe1\x8f\xce\x0b\x39\x36\x86\xeb\xb1\xee\x58\xee\x9a\xd7\xc6\x6a\xf5\x06\xe2\x1a\xf7\xe9\x2d\x3d\xf1\xa2\xe8\x53\x13\xb7\xc2\x61\x54\x8f\xbe\x23\xeb\x67\x1f\x58\x6f\xe1\x47\x8f\xa4\x57\xb2\x4d\x4a\xc0\xc3\x29\x86\xeb\xdc\x64\x9c\x64\xca\x42\x77\xaa\x96\xf7\xc4\xd0\x13\xd0\x74\x89\x22\x53\xbe\xf3\x42\xfa\xe1\x33\xe4\x30\x2a\x9b\x17\xbc\x8c\xfe\xd3\x91\x26\x40\x0c\xcc\x6a\x48\x32\x57\xcd\x5d\x27\x1c\xa6\x38\x99\x87\x4b\x82\xad\x7c\x57\x64\xdc\x51\x59\xca\x2b\xfd\xec\x7f\xd7\xe4\x4d\x4d\xfb\x60\xfb\xf4\xe8\x67\x7b\x17\xa8\x0d\x21\xb8\x3a\xce\xaa\xfc\x2f\x0d\x3e\xe5\x93\x9a\x4f\xb1\xb8\x72\xe3\x40\xaa\xef\x18\x5d\x30\x87\x4d\xe4\x16\x2a\x1a\xfc\x1d\x33\x26\x77\x02\x76\x38\xbf\xe6\x35\x0d\x1c\x16\x95\xa4\x1c\x2a\xde\xe5\x6b\xb4\x73\x2a\x6c\xcd\x9a\xcc\x69\xa7\x6a\x12\x82\x51\x7c\xb3\x50\x55\xa8\xd8\xe5\xde\x78\x51\x1e\x78\x56\xe0\x9a\x0c\x9b\x31\x92\x35\x77\xc7\xbe\xeb\xf5\x5c\xa6\x2a\x46\xcb\xb2\xa5\xfb\xf5\x15\xb1\xfd\x22\x85\x58\x7d\x6e\xbc\xdc\xfe\x3e\x76\x6a\xc2\xc8\xfa\x3f\xa5\x85\x86\x83\xa3\xdf\x1b\xd6\x2d\x43\xd5\xd4\x4e\x60\x4e\x1e\xab\xcb\x89\x48\x03\x29\x68\xc8\x41\x6d\xe9\xb7\xb9\x3a\xa8\x22\x90\x4a\x92\x18\xcc\xe1\xe7\x92\xf0\x3a\x05\x4e\xa4\xdc\xa7\xef\x6b\x12\x53\x03\x1d\xb4\xdc\x7f\xbe\xd2\xa2\x04\xa8\x12\xc3\xbe\x4f\xa1\x83\x7e\xd7\x4c\x6d\x65\xd1\x12\x66\x7e\x9a\x71\x3f\x68\x95\x14\xc4\x9b\x40\xa2\xbf\x5a\x31\x38\x09\xa5\xcd\x1e\xa4\xe1\xe7\x1e\xd7\xf1\x74\x6e\xac\xe1\x17\xfe\xf2\x94\x2e\x98\x52\xb1\x12\xe4\xc8\xcb\x4f\xa4\x3b\xa7\x88\xd3\xd0\x6f\x62\xa5\x26\x2a\x74\x7e\xda\x59\xbe\xaf\x97\x1a\x04\xbb\x06\x6c\xc5\xbf\x3b\xa5\x1a\x6f\xba\x26\xe8\x66\x5d\xf6\x94\x82\x9c\x43\xa6\xa9\x0c\xf2\xf2\x65\xad\x89\xeb\x5b\xd8\xe1\x95\xc6\x35\xca\x78\xd1\xa0\x62\xc2\xc3\xd3\xcf\xe7\xf2\x71\x40\x31\x10\x0c\xaf\x7a\x73\x67\xd7\xdc\xa4\x65\xa4\x25\x62\x63\x88\xdb\x42\xea\x39\xbd\x40\xef\xde\x21\xd7\x81\x0b\x2b\xe3\x67\x1b\xe5\x41\x51\xb5\x51\xa0\x82\x77\x5e\x78\x56\xe5\x07\xd7\x7a\x80\x9f\xd7\x9b\x5d\xb4\x89\x5f\xc7\x3c\xec\xd5\x48\x54\xce\xf5\x1b\x2a\x56\x51\x14\x17\x03\xa1\x15\x94\x1f\xb2\x4a\x43\xaf\xb8\x41\x25\x86\xb8\xe6\x3f\xf0\x80\xf4\x2e\xad\x71\xd5\x3d\x21\xb0\xb6\x04\x07\x2e\x29\x83\x59\xe5\x2f\x4f\x08\x24\x42\xad\x86\x7d\xf8\xa6\xde\xfc\x15\xef\xe8\xe2\xfc\x0c\xfb\x86\x25\xa6\xf9\x1f\xd2\xd5\x23\x50\xa5\x92\x4c\x8c\xa7\x77\xe9\x8e\x6d\xbe\x8f\x59\x32\x3c\xfb\xfe\x0b\x72\x43\xcc\x28\x4c\x57\xc9\xb8\x6d\x4a\x2f\x9b\x51\x2f\x06\x0d\x46\xdf\xd8\xb9\xb8\xd9\x13\x2c\x09\x7b\xf9\x31\xa7\x75\xc5\x84\xe8\xec\x66\xa2\x49\x9e\x1d\x7c\x3c\x1d\x73\x7a\x68\x90\x78\xd4\xfe\x5b\x57\xca\xa1\x6a\xc9\xdc\x9b\xe2\x0b\x2a\x14\xc3\xb6\x03\x4d\xec\xc3\x3a\xb6\x13\x03\x90\xbf\xfa\xc9\x58\x0d\x07\xae\x0a\xc7\x9a\x2a\xb9\x2b\x25\x1b\xd8\xe9\xfa\x71\xeb\xec\x57\x5e\x3a\x8e\x9d\x9e\xf2\x43\x0f\x69\xa5\x56\xe0\x59\x71\x49\x79\x46\x63\x94\xa0\x1e\xae\xf6\x1b\x8e\x39\x9d\xec\x56\xdc\x24\x8c\x11\xde\x7b\x34\x99\x66\x37\x2c\x92\xb2\x0a\x1b\x3c\x53\x35\xc7\x01\xaa\x7c\x74\x11\xb9\xd7\xb5\x18\xcd\x05\xd5\xc7\x15\x8a\xe1\xb1\x53\xbc\xdf\xb1\x84\x36\xec\x94\xcf\x42\xee\x87\xae\x80\x1b\x97\x7d\xcc\x1a\x42\xa9\xe5\x62\x87\x82\x70\x8b\x4e\x07\xda\xc3\x6b\xde\xfc\x01\xe1\x9f\x15\x78\x38\x68\x82\x64\x65\xbe\x20\xc0\x78\xf7\x32\x64\x7b\x6a\xaf\xf5\x57\x8f\x69\x2b\xcf\x0e\xca\xe5\x18\x42\xf8\xcb\x2e\xde\x98\x2a\x62\xcf\x87\xf9\xaf\x0a\x9b\x7e\x52\x41\xea\x60\x17\x97\x85\xff\x62\xee\xd6\x51\x5a\xab\x8e\x3a\xc4\x25\x06\x72\xe3\xa0\x65\xcd\x1e\xdc\x88\x5b\x1b\x34\x10\x99\xf4\xce\x57\xe4\x2a\x0e\x4a\xe4\xa1\x80\xf8\x9c\x1c\x9d\xf9\xaa\x2d\x9a\xa9\x41\xb9\x2c\x66\x4d\xce\xdc\xd8\x4c\x1d\xd4\x69\x33\x56\xdb\x18\x2d\x7e\xfa\xd8\x26\x0a\xf9\xf6\xb6\xa3\x23\xd3\xf2\x02\x16\x75\xa9\xe8\x16\xac\xd7\x26\x04\x26\x23\x6e\x55\xa4\xca\xa3\xa6\xca\xab\xc2\xab\x6a\x20\x46\x0b\x92\x3b\xd9\xbb\x7d\x29\x7c\x01\x94\xa8\xf4\x6a\xdc\xbe\x20\xbd\x81\x4a\xd6\x07\xbd\xea\x07\xab\xcc\xe7\xed\xcc\xeb\xc7\x0d\x15\x75\x0a\x17\x07\x15\x63\xbb\x4b\x59\x8d\xc9\xc2\x48\x29\x70\x91\x9d\x0c\x90\x3f\xb9\x5c\x06\x6c\x8b\x08\xae\xd3\xff\xe4\x07\x2b\x80\x58\x0e\xfe\xc9\x3e\x3b\x5d\x01\x14\x08\xd7\xf6\xd6\x42\x31\x9c\x75\x28\x5d\x08\x4d\x69\x13\x02\x36\x27\x43\xad\x01\x83\x5c\x31\x28\xe0\xc9\xe2\xe1\x0d\x3a\x11\x9b\x37\x10\xee\x9c\x3e\x54\xac\xc6\x32\x71\x13\xc9\xc0\xfc\x27\x97\x0c\x53\xfb\xda\xe2\xeb\x7b\xb3\x56\x5d\x51\xe5\xc1\x65\x64\xf0\xb6\xc7\xeb\x43\xd3\x88\x83\x8a\x8d\xca\x06\xd5\x74\xa9\x73\x1f\x59\x21\x33\xa0\x12\xa5\x55\x9e\x4e\x7d\x57\xe9\x54\x58\xb4\x5c\x4e\x77\x2a\xbe\xbc\x32\x9d\x16\xc8\x8c\x3d\x0e\xa0\x77\xdf\xcc\x17\x58\x91\xd9\x98\x0b\x50\xe5\x3f\x53\xe6\xf9\xca\xfd\x60\xb4\x52\xec\xcd\xbc\xb7\x9c\x3e\xf5\x39\x60\x4d\xf3\x84\xff\xed\x2c\x61\xa9\x62\x06\xa9\xbd\x92\x99\xbf\xfe\x2a\x05\xa9\xe0\x02\x80\x4c\x6e\xf4\x43\x7b\x15\x6e\x0f\x61\x60\xe6\x10\x3d\xaa\x2f\x4c\x1e\xa8\xa4\xe7\xf0\xa3\x8b\x42\x47\xaa\x86\x5c\x03\x79\xc4\x06\x68\x78\xf6\x37\x07\xb4\x58\xce\xb8\x2a\x22\x9f\x68\x3e\xfb\x4c\x9a\xbd\x12\xfb\xa4\xf4\x91\x09\x86\x9b\xac\x64\xb2\x58\x23\x48\x35\x85\x19\xa0\x46\x57\x97\x8b\x08\x85\xef\x70\x25\xd1\x42\xb1\x14\x18\x96\xea\x97\x75\xdd\x22\x9d\xac\xe7\x8b\xb3\x23\xf3\xd5\xb3\x32\x53\x66\x14\xa6\x62\xb7\xce\x4d\xd2\x32\xf0\x67\x09\x5b\x0e\x8e\xd4\x23\x73\xb2\x05\x4e\x6b\x0c\x70\x17\xc7\xd6\x92\x3f\x7d\x62\x44\xba\x79\x24\x85\x1a\x3f\x33\x55\xd6\x73\x36\xf1\x52\xc8\xdc\x4c\x79\xae\x92\x57\x4f\x8f\x91\x88\xe3\x17\xf4\x5d\x63\xd0\x58\x70\x25\xbb\xf8\x49\xc9\x98\x28\xc5\xa4\xef\xcc\x82\xcb\x9b\x71\xb9\x6e\x20\x9c\xd8\xb3\xfb\x5f\xe6\x71\xd8\xb0\x10\x43\x86\x8f\x59\xd2\xf8\xde\x36\x47\x32\x2d\x38\xff\x22\xca\xae\x3f\xf9\x7a\x13\x27\x12\xe4\x1d\xf9\xcc\x67\xeb\xa9\x26\xbd\x7e\x26\x3b\x9b\xb9\x97\x36\x0a\x4e\x19\xd7\xb3\xd5\xcf\x84\x97\x66\x25\x33\x0c\x16\xe7\x6a\xde\x7a\x0d\x6e\xc5\x88\x43\x5c\x64\x73\x78\x48\xf8\xfb\x8b\x4d\x1a\xef\x01\x13\xce\x29\xef\x6d\x19\xaa\x74\x3b\x48\x4d\xe8\x53\x7f\x72\xb0\x5c\xfb\xc6\x6a\x6c\x58\xd4\xb3\x69\x1d\x55\x09\xb0\x1a\x16\x6c\x92\xff\x2a\x35\x70\x62\xdd\x51\xb4\x86\x53\x0b\xee\x42\xb6\xba\x1a\xb3\xf7\xaf\xe1\x4f\xf1\x6e\x64\x52\xd7\x55\xc5\xc0\xbf\x3d\x30\xb6\x61\xf7\x78\x12\x0d\x09\xd9\x5f\x8f\x29\xe6\x8a\x01\x71\x2b\x88\x37\x86\x17\x8e\x4f\xef\xea\x32\x66\x95\x80\x4b\x91\xc8\x2f\xfb\xe9\x0e\xcd\x2f\xc6\xf5\x6a\xd8\x88\x7d\xbb\xf6\x64\xe5\xe6\x6d\x60\x26\x60\xe2\xe1\x43\xad\x43\x15\x7d\x17\x3b\xee\xa8\x7c\xa4\xdf\x75\xca\x3a\x2c\x61\xd6\xdc\xe4\xdc\xa2\xf9\xf8\x03\x81\x5b\x30\x38\x6e\x19\xc8\x69\xd9\x8b\x51\x33\x69\x24\xff\x99\xe3\x31\xe2\x59\xe8\xb2\x15\x2c\xfe\x83\x65\xa8\x0a\xea\xff\xb9\x1f\x6b\x27\x5d\x05\x39\x58\xe0\x7e\x32\x7f\xdc\x94\xa4\x5e\x06\x51\x9e\x68\x66\xed\x7c\x79\x90\x50\x60\xf5\x73\x25\xc7\x5c\xb7\x82\x1f\xf0\x30\x2b\x71\xec\xdc\xba\x81\xc3\x94\xf1\x7c\x50\xf2\xcb\x80\xc2\xc9\xdc\xb8\x38\x1d\x86\xbb\x71\xcd\xc3\xa9\x07\x9d\x3b\xbc\x92\xaf\xc7\xfb\x8b\xc5\x79\x4b\xee\x9d\x3f\x1f\xfa\x44\x7e\x93\x74\x17\xb3\x01\x56\x04\x7d\xae\x2d\x8a\x47\xaa\x8d\x2b\xe0\xc5\x1f\xb6\x5d\x3f\x4c\xa9\xa0\x6d\x82\xc1\x5e\x2c\xbc\xd0\x3a\x4a\xff\x28\x2f\x19\x1f\xfe\xa6\x4b\x19\xea\x63\x06\x89\xc1\x07\x9e\x97\x04\xef\x0a\x76\x29\xf8\xdd\xeb\x95\xc9\x98\x7d\x22\x4b\xf3\x3c\x52\x89\xa5\x41\x33\x87\x0e\x8e\xd1\x0f\x1d\x14\xd8\x3e\x36\x85\x4d\xea\xb7\x7c\x45\xcf\x8e\x40\x0f\x21\xdc\xf1\x8c\x32\xc1\x9c\xd1\x09\x68\xb5\x8d\x62\xfd\x53\x66\x2a\xeb\x3f\x3f\xf9\xc4\x20\x65\x19\xd5\xa0\x6c\x3b\xf6\x28\x07\x54\x7d\x84\xba\x95\x42\x37\x51\xb3\xe7\x3b\x97\xc8\x6f\x9b\xd9\x59\x98\xd6\x11\xfd\xfe\x24\xad\x23\xea\x60\x87\xf2\x8d\x7c\x9d\x2b\xe1\xc1\xf0\xe4\xfa\xaf\x68\x82\xb8\x33\xb0\x2f\x15\xd0\xef\xec\xa3\x4f\x0e\x4d\x95\xf3\x3c\x07\xc9\x75\xd4\xaf\x94\xbc\x45\x08\xfe\xfd\x34\x3d\x7a\x2f\x30\x0c\x8c\x4d\x9e\x82\xf4\xe6\x3f\x9f\x95\xbb\x06\x34\x7a\x79\x3f\xf6\x7f\x14\x32\x46\xa7\x62\x7d\xd0\x9b\xdd\x7c\xf6\xfd\x5a\x00\xc4\x35\x0b\xa7\x15\xd3\xc3\x8f\xae\x53\xcb\x41\xca\x45\xf5\xc2\x13\x5b\x74\x02\xb5\x45\x5c\x31\x4c\xcf\x5f\x53\xe2\x5d\xab\x3a\x25\x86\xc0\xe8\x4d\x4d\x9f\x68\x53\x3a\x66\x12\x01\x51\x5d\x75\x92\xe7\xb3\xb7\x79\x1e\x89\xe5\xfd\xb3\x47\x15\x0d\x06\x1a\x93\xec\xb2\xd6\x26\xc5\x07\x65\x55\x94\x14\x89\x5b\xfc\xdf\x39\x29\x49\xab\x3a\x66\xf0\x29\xde\x53\x5a\xd5\x08\xa5\xb5\x38\xd9\xf3\x8e\xa0\x46\xa0\x92\x19\x18\xa2\xd3\x9d\x99\xcf\x78\x3e\x86\xcc\x3a\x76\xfd\x80\x89\x2c\xfa\x31\xc5\x43\xcb\xb0\x48\x1d\xd9\x30\x41\xcb\x97\x34\x17\x52\x3b\x30\x18\xa0\x90\xc4\x3c\x6a\xcc\x4c\xc1\xd5\xe9\xec\x9c\xca\xb5\xce\x4c\x05\x75\x09\x43\x3a\x08\xf4\xe1\xb8\xfe\x7d\x68\x33\x5b\xc2\xff\x3f\x5c\x30\x71\x98\x0a\x71\x74\x4d\xae\x68\x96\xdb\x77\x40\xf6\x52\x41\xae\x05\x64\x5b\x9a\x76\xd9\xa1\x0b\x23\xd3\xbd\x7d\x70\x94\xe2\xa8\xac\x6f\x08\x12\xf9\x7c\x06\xe6\xda\x4a\x5e\xa5\xb0\x98\x54\x2d\xce\xa1\xfc\x01\xc1\x78\x3e\xf1\xee\xca\xec\xde\x3c\x5a\xd5\xf3\xd1\xfb\x98\xbf\x3a\xc6\x57\x44\xcd\x46\x50\x71\x85\x75\xcd\xe3\xd2\xec\x91\x1d\xf6\x51\x87\x94\xe8\xcf\xa2\x2f\x02\x24\xe2\x77\x4f\xa9\xd4\xa1\x80\x25\x6c\xf0\x2d\x6f\xca\x05\xae\x61\x0d\x07\xc8\xa7\x5d\xb2\x29\x35\x3d\x8b\x57\x2d\x37\xb1\x61\x22\x30\xd1\x0a\x43\x35\x4b\xe8\xcd\x65\x4e\x5d\x26\xc1\x66\x3d\x34\x3e\x77\x0e\xdd\xa7\xc6\xc9\x3a\xb6\xa1\xad\xb7\xf4\x4d\xcd\xaf\x8e\xda\x12\xac\x9a\x5b\xf7\x8c\x66\xbb\x80\x62\xc9\xd7\xdc\x7b\x34\x29\x4c\xb3\xd5\x68\x55\xe0\xba\x7b\x9e\xd0\x34\xa9\xa3\xf0\x57\xe1\xa2\xce\xd9\x62\x49\xa5\x7f\x3a\x0e\x02\xa9\xe5\xff\xea\xa7\xc6\x6c\x4e\x0e\x28\x14\xc3\x9c\x76\x18\xda\xd4\xad\x08\xbe\x47\xe6\x97\xfd\xb4\x5e\x42\x6c\x79\x20\xca\xcc\x6b\xb7\xca\x8e\x94\x1d\x2d\x2b\x3b\x9e\x06\x65\x96\x72\xc0\x3b\xa4\x8f\x8a\x0c\xca\xc8\x63\x7c\xbc\x7a\x37\xee\x93\x13\x98\x3d\x72\x4e\x5e\x7a\x52\x40\x86\x1f\xea\x90\x29\x8c\x1f\xb0\x6a\xb4\xb2\x65\x26\x3c\x37\xcf\x8f\xec\xa5\x81\x6b\x22\x86\xea\xb8\x5b\x69\xd1\x1b\xe7\x64\x57\xb0\xde\x3c\x0e\x7b\xfb\x90\x4e\x1b\xf1\x7c\x1a\x6b\x30\xe5\x7e\xd7\x4f\xc3\x14\xc0\x04\xbc\x95\x6b\xf4\xec\xdb\xa4\x61\xd8\x18\x03\x78\x5b\x9c\x45\x9f\xd7\x44\x22\xab\x2e\x6d\x44\xeb\x97\x07\xe2\xcc\xe8\xd7\xd3\xff\xec\x06\x0e\x68\x59\x09\x90\xe4\x6f\x2e\x4a\xaa\x5b\x09\x95\x88\xef\x55\x65\x97\x30\x5c\x32\x4a\x3e\x10\x92\x20\xd4\xe2\xc3\x88\x2c\x17\x2e\x7f\x88\x35\x52\xff\xf0\xa9\x23\x92\x27\xd5\x03\xac\xce\x35\x66\x7a\x76\x83\x99\x4b\x70\xba\x24\xcc\x3f\xb0\xfb\xea\x14\xad\x01\x86\xb4\x8a\xae\xe0\x26\xfd\xc0\x81\xe4\x2d\xa6\xc4\xae\xd5\x14\xb9\x9d\xc0\xb3\x00\xa5\x02\x0f\x69\xde\xe5\xba\x0a\x12\x98\xad\x41\xbf\xb3\xf1\xa8\x16\x99\x71\x94\x17\xc5\x73\xbc\xfb\x5f\x50\x92\x26\xc3\x08\x6a\x88\x4f\x8e\xa7\xcd\x6e\x22\x4e\x63\x5b\xb8\xac\x7d\x45\xd3\x0e\x9a\x36\x65\xf2\x8c\x69\xd3\x84\xd8\xd3\xc7\x0f\xeb\xca\x8f\xa5\x52\x42\x9f\xb9\xf5\x19\x4d\x09\x17\x34\xb5\xc5\x30\x7e\x69\x57\x6f\xfe\x11\xcd\x88\xfa\xa1\x80\xf8\x7e\xec\x23\x90\x5b\xf6\xa8\x26\xd2\x69\x53\x46\x4c\xc4\x21\x0b\x9c\xef\xbd\x2f\x9d\xbc\x55\x02\xea\x56\x56\x5b\x34\x88\x07\x59\xbd\x99\x35\xcf\x8d\xd4\x9f\x24\x31\x04\x94\xfa\x4b\x73\x64\xdb\x7d\xe6\xf4\x42\x31\xec\x78\xfd\x2a\x55\x09\x0c\x17\xca\x8c\x3a\x89\x1e\xe1\xce\xb7\x75\xbf\xa5\x0a\x72\x13\xfa\x2f\xde\x7f\x75\x9f\x75\x19\xd7\x8f\x0d\x57\x2e\xef\x43\x7a\x16\x47\xb5\x96\xd0\xfa\x78\xcf\x79\xc5\x8e\x0d\x61\xd7\x03\x37\x8f\xdc\x93\x0b\xd3\x1f\x5b\xc7\x15\xcc\xa9\x54\x30\x87\x7a\xe1\xbe\x91\x2a\x17\x06\xf2\x60\x9f\xc3\x72\x72\x86\xe2\x82\xec\xf5\xb8\x26\xa3\x0e\x14\xeb\xf7\xed\x8e\x61\x63\x1c\x3a\x50\x28\x86\x57\x32\x6d\x24\xca\x39\xff\xd1\xd2\x78\x4c\x9b\xe6\x82\xc8\x53\x94\x8d\x84\x23\xb7\xa5\xff\xa5\xbd\x73\x7a\xbb\xb0\xae\xf9\xcc\xde\x2b\x44\x12\xc8\x19\x75\xbb\xd6\xf2\xc2\x68\x29\xe6\xb6\x2d\xc9\x04\x26\xf3\x00\xb7\xaa\x29\x2c\x53\xf8\x3a\xf2\xa8\xfc\xfd\xc3\x8a\xde\x8a\x61\x45\x29\x33\x1c\xf6\x4f\xf3\x02\xb3\xb0\x30\xf0\x7c\xd2\x24\xb2\x97\x75\x5f\xd4\xce\xfc\x06\x62\x66\x22\x24\x98\x9f\xf3\xd4\xc4\xa6\x14\xf3\xff\x8f\x79\x98\xbb\x46\x20\x0c\x50\xa5\xc2\x50\x1d\xf9\xc2\x12\x78\xf6\x55\xc9\x1b\x29\x35\x05\xc8\xff\x73\xaf\x52\xa5\x04\x62\x76\x4c\x25\x88\x76\xe8\x4c\x0d\x4c\x68\xd8\xa8\xc1\x39\x04\xcb\x5e\x4e\x8e\x7a\x8b\xfa\x4d\x9f\x3a\xfb\x79\xad\xc8\x35\x13\x3f\xf4\xcc\x7f\x3f\xa5\x59\x17\x5a\x98\x32\x1c\x8f\x6c\x45\x55\xb2\x64\x85\xcc\xe4\x79\xe9\x95\x5d\xbc\x5f\x55\xed\x6c\x6f\x83\xae\xe5\x88\xab\xd5\x4e\xf9\x87\x17\xdf\x24\x5b\x16\x85\x62\x48\x5e\x49\x3f\xdc\x09\x51\xc6\x4d\x62\x62\x54\xf6\xc8\xcb\xf2\x95\x35\x48\x52\x62\xe6\x7e\xad\x61\x57\x1f\x0a\x68\x4c\xb4\x0b\xdf\xbf\x3f\x31\x45\x57\x0d\x6b\xb2\x17\x5f\xe7\xcf\xfe\x1e\xc2\x7a\x50\x42\x1d\xbd\xb4\x4c\x99\xc5\x9b\xc4\x57\xa4\x27\xf3\xa3\x17\x4b\xf4\x7a\x7b\x5b\x5b\xc1\xc3\xcd\x39\x53\x6e\xdb\xe5\x62\xf6\x9b\x98\x55\x7d\xa2\x4d\xa6\x33\xab\x03\xc3\xa2\x0d\x62\xc0\x23\x0b\xc7\xa9\xf9\xaf\x1d\xd5\x72\x00\xa9\x7c\x4c\x26\x46\xc8\x30\x02\xcf\xa7\xdc\xe1\xef\xb8\x98\x29\x95\x02\xda\x23\x0c\xb5\xfe\xe0\x5f\xa3\xd7\x5c\xd0\xe8\x83\x1e\x26\xa0\x6c\xd6\x8f\xe6\x26\xf5\x4b\x91\x8d\x3d\xd2\xac\x78\x9d\x7d\xe5\xb8\x0e\x31\xe4\x33\x53\xfe\xee\xbf\x7f\xb3\x92\xd2\xfb\x1c\x51\x13\x4e\x3a\xa7\x2b\xbe\x41\xaf\x93\xe7\x3a\xd8\xd4\x45\x09\x4d\x60\x45\xf0\x4c\x11\x5a\x1c\x1f\x58\xab\x15\xb8\xd4\xa6\xac\x1c\xf0\xb7\x1c\x7e\x7e\xb0\xc2\xe1\x8f\x62\xa4\xd6\x2c\x58\xff\xa8\x70\xc1\x16\xdc\xbc\x70\xe5\xfe\xc1\x6a\x0d\x21\x44\x13\x2f\x48\xce\x4c\x85\x21\x97\xa8\x60\x1a\x6f\xa1\x62\xc5\xc2\x1c\xe4\x82\xb5\xee\x80\x47\x85\x79\xc9\x43\x01\xf2\x2c\xd1\xa2\x7a\x7a\xa8\x46\xcc\x21\xd1\x53\x10\xd3\x94\xc9\xcf\x4a\xbb\xc9\xc0\x51\x62\xcb\xa5\xd7\x86\xa8\x04\x5a\x93\xf7\xa7\x1b\xf3\x87\xa9\x01\x95\xab\xa7\x15\x7b\xb3\x83\xc6\xa5\xbf\xa3\x9b\xf6\x70\xc6\x69\x74\x01\xf5\x05\x4d\x40\x2e\x17\x8b\x2e\x35\x6f\x79\xed\xe0\x84\x9e\xc2\x5d\x76\x40\xa0\x88\x92\xc9\xd6\xfb\x0f\xa4\x25\x08\x6d\xe2\x10\x1f\x08\x6d\xe9\x3e\x4a\x79\x89\xce\x48\x0c\x4a\x16\x0d\x3c\x91\xfc\xe6\x1d\x21\xdf\x05\x76\xad\x10\x75\xbf\x3f\x60\x58\x52\x3a\x48\x82\x5c\xf8\xa0\x3c\xf6\x4a\x41\xb4\xfd\x72\x79\x5d\x1f\x07\xd7\x04\xbe\x31\xd3\xf9\xb0\xa6\x71\x64\x4b\x61\x89\x62\x6f\xae\x32\x4f\xa7\x31\x78\x38\x96\xb7\xfa\x84\xe2\x24\xde\x1d\x98\xc2\x00\xaf\x37\xb3\x55\xe1\x52\x13\x17\x2a\x53\x40\x70\xbf\xbc\x99\x17\x40\xd8\xa1\x5c\xf5\x04\x26\x1a\x79\x7b\x87\xb4\xee\xa2\x50\xaf\x4c\x3e\x3c\x30\x7e\x6b\x15\x6c\x46\x7f\xfa\xa5\x6c\x3a\x23\xab\x62\xd7\xed\xd1\x9a\xf4\x2f\x2f\xd0\x14\xbf\xbc\x1a\x61\x58\xdc\x67\x7e\xf5\x83\xe9\x1b\x01\xbe\xa9\x00\x99\xed\x7e\x39\xe9\x3e\x07\xa6\x94\x9f\x0b\x97\x2e\x97\xfd\x0b\xf0\xb9\x2c\x14\xc3\x5b\x17\xf1\xba\xb4\x73\xe6\xb4\xc2\xcc\xe8\x83\x6f\x7e\x4b\xa3\xf0\xc7\x2d\xee\x62\x6f\x6e\xe3\x2b\x57\x4a\x3d\x6f\x52\x28\x86\x7f\xaf\xe5\x61\xdd\xd1\xf9\x66\x40\x85\x12\xde\x73\x73\x4b\xbc\x85\xc0\xcf\xcd\x88\xe9\x3f\x87\xfb\x4b\x17\x7c\x60\xb1\x26\xba\x97\x37\xab\xed\x0f\xf0\xb2\x8d\xbe\xf5\xcf\x63\xc6\x68\xbb\xdf\x46\xc2\x6b\x8d\x97\x51\x77\x1c\x4e\x9f\x50\x65\x6c\xdb\x37\x8d\x03\xce\x9a\x42\xc7\x42\xd0\x56\x80\xdd\xbd\xb8\x65\x70\xaa\xc5\x0a\x59\x6a\x71\xb9\x32\xe9\x01\x45\x43\x5e\x97\xfc\xe4\x61\xd5\x9b\xc4\x67\xd4\x0c\x0c\x51\xeb\x1e\xd6\x90\x59\xbe\x02\x41\x7b\x77\x79\xf2\xac\x3a\xda\x00\x23\xb1\x83\x8b\x80\x17\xee\xa6\x75\x6e\xb3\xa3\x1f\x98\x37\x29\xe4\x55\x3e\xd1\x15\xdf\x33\xff\x31\x0d\xa1\x96\xa8\xe2\x65\xfe\x73\xab\x64\x51\x78\x35\x46\x9a\x3f\x36\x97\x9b\x25\xb0\x37\xb8\x1c\xc4\x1f\x99\xfd\xc2\xcc\xf4\xea\xa2\x8c\x54\x88\x2b\xf4\xe4\x9e\xde\x92\x5e\x9e\x65\xc4\xc4\xe2\x94\x2e\xd1\x63\x5b\xd4\x13\xc5\x46\x44\x90\x9a\x4b\x33\x47\x89\x04\x89\x31\xec\xd2\xc2\x6d\x26\x74\xa2\x0d\x08\x6e\xe4\xb2\x11\x4a\xe5\x57\xc3\xe5\xc0\x76\xc1\xb4\xaa\x37\xb3\xa3\xbf\xd2\xd2\xf1\x8c\xb8\xa5\x13\xce\x5b\x91\xbe\x16\x14\xf8\x94\xc3\x1c\x92\xc1\xd3\x71\xa6\x9d\x1d\x06\x43\xb5\x78\xf6\xfa\x74\xab\xae\x3c\xec\x88\x0a\xda\xdd\xc3\xf7\xef\x6d\x73\x3f\x3c\x6f\xe1\x6d\x8b\xe3\xe3\xba\xf7\x98\xe6\x1e\x18\x94\xcb\xd8\xf7\x41\xac\x48\x56\x59\x3f\x5d\x16\x6b\x86\x01\x92\x0c\xb2\xbc\x8d\x2f\xc8\xd6\x87\xdb\x34\xee\x1e\xdd\x6f\x88\x52\x9a\x47\x19\x5e\x74\x11\xe5\xd7\x34\x7d\x2e\x5c\xb3\x29\x8b\x12\xe6\xa4\x81\xf0\x95\xb1\xba\x31\x8b\x45\x40\x4b\x0c\xe6\x8d\x17\x27\xe9\x2c\xab\x68\xeb\x60\xa1\x23\xdc\x9b\xfd\xfa\xb5\x12\xa2\x5e\x08\xa0\x29\xb7\x91\x6f\xf9\xae\xc0\x87\x12\xcc\x79\xf9\x3a\xad\x00\xae\x8b\xf5\x95\x94\x7f\xfb\x9f\xd2\x20\xf9\x18\x0b\x84\x58\x76\xe5\x1a\xfe\x20\x7c\xe4\xfb\x94\xf2\x6c\x13\x8b\x9f\x79\xb0\xb9\x38\x50\x62\xd8\xda\x6b\xb4\xca\xab\x21\x20\x2a\xf1\xf6\x9f\xb3\x65\x70\x92\x5a\x27\x9d\xbe\xef\xbf\xaa\xf5\xda\x49\x39\xd6\x23\xcc\x7d\xf3\x90\xde\x59\x21\xae\xe8\x43\xf7\xdf\x92\x7e\xeb\x3e\xa9\xf1\x66\x5f\xf6\xc6\x1d\x3c\x47\x5b\x84\x55\xc9\xdd\xe1\x8b\xe5\xec\xb3\x4c\x5c\xe1\x80\x2f\xee\x7e\xc8\x9a\xd1\xda\x23\xf6\x7c\x8c\xcc\xd8\x4d\xed\xe3\xb6\xc4\x0f\x56\x19\x01\x3a\xb4\x72\x6e\x77\x66\xf5\xa9\x62\x00\x7c\x1b\x9e\xdb\xdf\x5f\x93\xc0\xbc\x4a\x2c\x8e\x93\xfb\x70\x9e\x3f\xc0\x4a\xe0\x7a\x16\x85\x92\xf7\x1b\xe3\x74\xd9\x57\x64\x8b\x2b\xc8\xdf\x39\x2b\xe5\xd0\x64\xdb\x98\x6b\x6e\x7c\xf6\x68\xfa\xa8\x76\x90\x0b\xae\x73\x7c\x5e\x20\x8b\x9a\x21\x63\xf8\x69\x8f\x5c\x9f\xa4\xcd\xb9\x32\x7b\x14\xbf\x9a\xf6\xe9\x6a\xd3\x38\x7f\xb7\x06\x42\x31\x89\xc7\xb9\x54\x62\x46\xb7\x72\x93\xd6\x14\x80\x64\x4f\xe8\x14\xfe\x74\xb0\xb6\xa2\x02\x5b\xf0\x38\xb2\xb5\xd3\x9a\x1b\x93\x60\xfe\xeb\x09\xc6\xd2\xb2\x6e\x5c\x83\x80\x6f\x1b\x0f\x07\x76\x4e\xd7\x58\x1d\x94\xdb\xe9\x24\xef\xf5\xcf\x6f\x36\x19\xe5\x51\xa7\x44\x50\x02\x2b\xfd\x84\x2d\x1c\x6e\xb1\x2b\xa8\x23\x4b\xc4\x68\x7a\x9e\x43\x7c\x45\xe4\x3f\x1c\x3e\x91\x17\x90\x1e\x88\x18\x85\x3f\xb6\x9b\x1a\x05\x46\x35\xa6\xed\xe4\x57\x3e\xc3\x03\x8f\x85\x6a\x16\x5a\x8d\x18\x68\x0a\xf5\xe6\x76\x8e\x91\x6b\xb0\xc9\x1a\x38\xdf\xd8\x28\xe3\xa3\x83\xa3\xec\xc4\xe5\x2e\x9d\x53\xdf\x90\xe5\x85\xe7\xd2\x06\x17\x16\xe3\xc1\xf8\xf6\x0d\x2d\x32\x17\x51\x9d\x32\xff\xf4\xce\x35\xda\xc9\x85\xdd\x02\x82\xbe\x97\x88\x3a\x5f\x2f\x4b\x8c\x79\xf4\x06\x1e\x0a\xf8\x4c\x34\xde\x98\xcb\x1f\x18\xa1\x1e\xd6\x4c\x8a\xb7\xe4\x5a\x5e\x1b\xad\x14\xf2\xa6\x0b\x33\x53\xc5\x7d\x77\xbd\xa8\x39\xb8\x75\x63\xa1\x18\x8e\x1f\xac\x73\x9e\x0d\x5c\xf3\x91\x61\xf3\x48\x9d\xbf\xa1\x55\xc3\x54\xd4\x30\xaa\xe2\xc4\xcf\x30\xff\xa9\x8b\x63\xd4\xa3\xdb\x0b\x1c\x54\xb2\x15\xbc\x5d\xf6\xe9\x81\x32\xf3\x99\x31\xbd\x75\xc6\x94\xe8\x32\x07\x9c\x99\xd8\x68\x6a\x7c\x52\xe6\x0b\x7d\x51\x4d\x8e\xe2\xa8\x5a\x58\x21\xcf\x87\x5b\xcd\x4f\xb8\x4c\xa9\xed\x6c\x9c\xda\xf8\x17\x8f\x27\xfa\x2a\x14\x6c\x47\xde\xd7\x5f\xf2\x8e\xb8\x60\xed\xdf\xbf\x26\x3f\xd5\x05\x01\x04\x40\x6f\xf7\xae\xd2\x7c\x3c\xe3\x87\x17\x6e\x7d\xec\x4a\x59\xc7\x47\x47\x75\xb6\x25\x7d\x5a\xd5\x10\x33\xb0\xcd\x4d\xab\x65\x71\xf2\xd1\x35\x52\x10\x25\x3a\xab\xc2\x17\x17\x4a\x64\x25\x89\x5e\x41\xff\xcb\x05\x14\x68\x3a\xe0\xe5\xff\xf9\x79\x59\xa3\x59\xa4\x62\xc1\x64\xed\x77\xbb\x24\xf5\xb8\x01\x88\x0e\x3d\x83\x29\x5f\x50\x4c\x71\x50\xec\x14\x9d\xff\xd8\x93\x3a\xfc\xda\x41\x44\x54\x93\xb9\xef\xbc\xa5\x69\xe1\x22\xa0\x0a\xc4\x94\x92\xec\xf1\xc1\x4a\xad\x2d\xba\x64\x9f\x98\xab\xe4\x75\xa6\x13\x7f\x51\x6e\xc3\xce\xa6\x42\x51\xd0\x74\xe3\x75\x9d\xbf\x63\xa5\x6e\xd0\x03\xa2\x08\xbc\x7a\xf8\xaf\x97\x46\xa5\x08\x6b\xbc\x78\x40\x9c\x24\xf5\xc3\x81\x5a\x62\x80\x58\xc5\xa2\x81\x46\x8a\xff\xd4\xc9\x2b\x45\x7a\xe3\x08\x87\x94\x93\x0f\x48\x58\x46\x1d\xf4\xe8\xde\x7a\x4b\x8c\xc5\xb0\xd8\xa8\xf9\x9b\x47\x5d\xad\xa7\x30\x18\xc3\xd8\x87\x73\xdb\xaa\x47\x14\x8b\x0a\xae\x06\x4b\xc0\x9b\x30\xb3\x2c\x6c\x86\x88\xf0\x4e\xd8\xe6\x57\x15\x67\x2a\xc4\x7a\x3c\xcb\x25\x55\x5a\x97\x41\xeb\x90\x26\x44\xe1\xb9\xa8\xc6\x43\xf7\x37\x9e\x1a\xaf\x25\x4d\x8d\x1e\xcc\xfa\x34\x9e\xec\xde\x2a\xab\x26\x86\xbc\x9a\x48\x2a\x6e\x99\x9b\xbe\xac\xc0\x8d\x76\x33\x94\x79\xf3\xba\x87\xa6\x90\xd9\x1c\xb4\x95\xdf\xb8\x46\x56\xd7\x25\xec\xa5\x04\xe1\x73\x95\xc9\x83\x94\x69\x19\x80\x5b\xbe\xad\x4b\x4a\x12\xcf\x47\x55\xcc\xfb\xf6\x2d\xdb\xe5\x77\x60\xb7\x82\xb8\x56\xfd\xd5\x0a\xac\x90\x51\xaf\xc6\xa8\x03\x06\xd3\x6d\x0a\x0f\xa6\xc7\xa0\x80\x9a\x08\xff\xe3\xe4\x60\xa5\x76\xe0\x00\xfb\x3f\xe7\xb5\x61\x27\x71\xcd\x04\xe3\x3e\xf4\x9d\x21\xd2\x27\x0e\x12\x98\xa5\x5d\xbd\xf9\xfe\x2b\xe5\x4e\x2a\xa3\x1e\xcc\x61\x7a\xf7\x5f\x90\x23\x5d\x2e\x66\x16\x9e\xbf\x56\x3f\xab\x83\x32\x3f\xd0\x04\xcf\x20\x77\xcf\x8e\xe4\x8f\x66\x4c\x06\xff\xd7\x5b\x1e\xbc\x4e\x3b\xc1\x5c\x0f\x3f\x14\x60\x37\xda\x40\x35\x00\x5a\x67\xff\x31\xd4\xc4\x0f\x3d\x82\xdc\x38\x77\xf9\xe7\x71\xb2\xed\xdf\x5e\x98\xda\xec\xa0\x35\x47\x93\x0b\x0b\x1e\x0a\x70\x0a\x6d\xf0\xe9\x67\x75\xc2\x21\xe2\x5c\x53\xb1\xa5\xf6\x08\x01\x48\x0b\xb9\x66\x8c\xf2\x0f\x9f\xe5\x3f\x33\x29\xc4\x01\x58\x15\xff\x7c\x56\x91\x51\xa0\x36\x07\x30\x1d\x39\xa3\x9f\xd0\x8e\x98\x58\x8a\x46\x62\x7e\xfa\x0b\x3c\x9d\x2b\x9a\xd8\xf3\x62\xb2\xca\x73\x93\x15\x53\x0f\xea\x1a\x41\x54\x8a\x70\xc0\x61\x6e\xed\x8a\x24\x49\x77\x82\xe6\x5e\x9b\xad\x25\x2d\x5c\x04\x3b\x0e\x1e\xf9\xd3\xf2\x22\xf1\x43\x81\xe0\x89\xf5\x3c\x29\x8f\x42\x8f\x20\x89\x89\x0a\x77\x6b\x56\x9f\x86\x15\xc0\xe0\x6d\xb5\xf2\x00\x6f\x7d\x7e\x90\xa2\x89\x05\xb9\xde\x3b\x2b\xe4\xd2\xb3\x51\x09\xa6\x9e\x79\x73\x99\x92\xe4\x41\x7f\x58\x18\x12\x3c\xe4\x0f\x57\xf6\x06\x35\xaa\x35\x01\x5e\xcc\xb0\xb2\x18\xc4\x21\x66\x93\xe6\x43\x2d\x77\x7c\xbc\x20\xc7\x02\x12\x8d\xa7\x0c\x8b\xee\xe3\x82\x05\x53\xf8\x09\xf5\x95\xa9\x4a\xcf\x00\x31\xf0\xe0\x6e\xd9\xa0\x2b\xf9\x09\x5c\x3f\xe7\x24\xdd\x35\x4b\x60\x87\x70\x8d\x7a\x24\xae\xfa\x73\xca\x51\x27\xa4\x72\xa2\x5f\xee\x7a\x54\xf9\x31\x61\x94\xae\x06\x05\xca\xef\xed\x10\x54\xee\xa0\x81\xa2\x5c\x54\x39\x57\x33\x3f\xd2\xb0\x5c\xd8\x21\x15\x86\x45\xe9\xba\x5f\xf0\x64\xca\x31\x72\x39\xf7\xa3\x85\x5a\x77\x00\xf9\x62\x3f\x15\xcf\x4a\x5c\x37\x97\x8b\x41\x76\x32\x4a\xde\xc2\x1f\x43\xc7\xd4\xb6\x42\x31\x1c\x70\xad\x9a\xec\x20\x47\x89\x4c\xef\xd3\x00\xe0\x0d\x0b\x43\x9a\x0b\x23\x87\xff\xe9\xa7\xac\x17\xa7\x46\x40\x0c\x86\xda\xf0\xbe\xa2\x5f\x06\xfd\x21\x99\xa6\x6c\xdd\x22\x7f\x7d\x7a\x81\x70\xb1\xf6\xdc\xf7\x27\x72\x2f\x28\xc9\x56\xd5\x93\x93\xf5\x2a\x18\x94\x80\x1e\x4d\xf4\x2a\x5f\x58\xa1\xac\x18\x9b\x38\xc8\xe0\x7c\xc3\xec\x0c\xad\x79\xe4\xa0\xee\x84\x40\xfc\xef\x0b\x34\x1f\x15\x1b\x0b\x4b\xc1\x4c\xc7\x76\xbd\x0a\x44\x31\x7c\xeb\x0a\x85\x56\x9c\x50\xde\x73\xb3\x9e\x4d\xf2\x18\x0b\x31\x15\x49\x98\x59\xf0\xb6\xfc\x83\x32\x0b\x84\x41\xfd\xb6\x7a\x32\xc8\x45\x7d\x74\x32\x7e\x7c\x58\x97\x19\x6a\xc4\x53\xec\x4d\x56\xec\x5d\x10\xdd\x24\x7c\xd8\xf7\xdc\x01\xc9\x49\x1c\xed\xaa\xbf\x5f\xa3\xc0\x68\x2a\x85\x62\xc8\x34\x6f\xd9\x06\xb1\x6b\x00\x5a\x93\x75\xe1\xe7\x5b\x94\xb1\x68\xa5\x89\xad\x9d\xfb\xfb\xd9\x83\xd4\xfe\x3d\x44\xb2\xdf\xde\x9c\xde\x1e\x0d\xe4\x1b\x56\x32\xcd\xc9\x65\xb4\x9e\x59\x1d\xc4\xa6\x85\x06\xfb\xad\xeb\xb5\xf0\xc3\x82\x72\xd9\x8e\x25\x30\x9f\xd0\x27\x7a\x81\x59\xc1\xbe\x08\xf4\xb9\x72\x3f\x4d\x82\xa2\x47\x80\x4f\x72\x7f\xad\xf1\x15\xb4\x14\xd9\xf5\xbe\x65\x91\xc6\xbf\xa3\x27\x4e\x06\x26\x75\x6c\xde\x54\x70\xa3\x25\x0a\xe5\xde\xac\xb4\x88\x4a\x47\x3b\x3f\x6a\xff\xf3\xb1\x24\xbd\xf9\x20\xa8\x08\x67\x88\xab\x62\xf9\x70\x15\x73\x41\xf0\xdc\xcf\xde\x69\x91\x07\xa4\x92\x9e\x66\x2e\x7f\x45\x81\x6c\x75\xb4\x47\x0f\xc2\xde\x99\x1e\x10\x61\xd7\x07\x75\x1f\x17\x07\x32\xef\xbf\x4c\xbb\xe3\x8e\x36\xd1\x11\xfa\xe3\xce\x31\xda\x2b\x80\x21\xad\xdc\xb5\x0f\x2e\x56\x7c\xc5\x88\x1b\x1b\x84\x7e\x62\xb7\xa2\x1e\x8f\xca\x44\x29\x99\x32\x87\x9e\x18\xa3\x60\xcd\x40\x72\x38\xfd\x0c\xef\xbf\x36\x79\x10\x42\x7c\xf2\x5b\x42\xc5\xef\x7e\x6c\xba\xdc\x31\xba\x50\x0c\xb7\x9e\xd1\x86\x7d\x8c\xfb\x1c\xc6\xac\x52\xcd\xfc\x85\x05\xa5\x92\x1c\x05\xda\x9a\xfa\x6d\x14\x8c\x04\xf2\xf0\xea\x0e\xa9\x1b\x8a\x15\xfc\x4e\x7e\xd1\x31\xbe\x35\x16\x20\xe6\x70\x14\x61\x7e\xd8\xe0\x51\x0a\x7a\xdc\x5d\x9d\x92\xb5\xfc\xa6\x96\x21\xd7\x30\xad\x89\x25\x18\xfe\xe4\x4c\x8b\xbe\x08\x78\xcf\xf9\x17\x2f\x4a\x90\x9f\x83\x18\x23\xd4\x6f\x3e\x5c\x3f\xa0\x20\xb1\x0d\x90\xc7\x19\xf5\x9c\x8e\xd4\x8f\x6d\xb4\x04\x76\xc0\x6f\x19\xad\x45\xef\x28\x52\x1b\x1e\x17\x95\xcd\xbd\x7b\xa1\xcf\x6b\x85\x14\xd4\x3c\xaf\x8f\x84\xdc\x3a\x31\x12\x5d\xe7\x4f\xbe\x90\x40\x5c\x59\x90\x68\x38\x9e\x7f\x54\x2a\xd2\xa5\x1c\xf9\x76\xf0\x1e\x6c\xe1\x3e\xcc\x3c\xab\x44\x15\x5b\xfc\xdc\xb0\xa7\x44\x53\x00\xb9\x04\xdb\xca\xdf\xe4\xd9\x78\xed\x55\x93\xd5\xd4\x45\xd1\x23\xd3\x1f\xcd\x4f\x5e\x1b\xa5\xd4\x97\x71\x96\x23\x02\xb9\x95\x4d\xc7\x6b\x6c\x13\x5f\xbc\x90\x6f\x0e\x18\x22\x23\x66\x0c\x77\xce\x5c\x7c\x6c\xa4\x5a\x10\x73\xbd\x67\x71\x10\x1f\x75\x87\xa5\x4f\x74\x41\x06\x79\xe5\x45\x8e\x84\xe2\x0c\x27\x8f\xeb\xc9\x15\x7b\x73\xbf\xce\x27\x31\xb9\x12\x34\x83\x6b\xf6\xea\x95\x8b\x8d\x7a\x40\xb6\x4d\xc0\x6b\x16\x2e\x94\x50\x78\x2a\x97\x59\x78\x7b\x97\xa6\xfa\x4e\x03\xcf\x43\xa9\x06\x4d\x6f\xf6\x0b\xbb\x55\x3f\x23\xec\xc7\x30\xbf\x7d\xdd\xbc\x5a\xad\x50\x3e\xa2\xd9\xbd\x83\xb7\x0e\xbb\xc0\xf3\x94\xa7\x65\x79\xf2\xb6\x8e\x20\x87\x07\x2b\x66\x8a\x27\xf6\xca\x33\x73\x26\x87\x37\x44\x7f\xb4\x5e\xc1\xdd\xda\xb8\x8e\x99\x70\x9a\x1d\xbd\x51\x01\xd8\x55\x89\x6d\x97\x03\xdb\x6e\x02\x0f\xe7\x3e\xb5\x43\x96\xf8\xdd\x51\x5d\x7d\x71\xae\x52\x1e\x41\x7b\x81\xf7\x8a\x9f\xdd\x99\x7e\xa5\x13\xb0\x93\x94\xa8\xce\x23\x12\xce\xd4\x6c\xc9\x97\x59\x78\x4a\x6f\x2e\x41\x67\x86\x87\x81\xfc\xe7\x8f\xcb\x85\x84\x4a\xc8\xb0\x54\x58\xf7\xbe\x11\xe9\x7c\xb4\x86\xa2\x03\x2f\xd5\x86\xcd\xde\x77\xee\x1a\xad\x72\xf3\x2d\xe2\x56\x51\x49\xec\xab\xde\xdc\xf0\xa1\x9a\x8d\x32\x13\x26\x6f\x99\xa7\xd7\xf2\xec\xab\x87\x06\x3e\x9f\xe9\x75\x3e\x90\x5e\x1e\x0d\x8a\xe1\xc9\x09\x97\x83\x3f\x6d\xd4\x2d\xb9\xea\xb1\xc3\x6e\x76\xda\xa4\x94\x37\x4c\x22\x21\x07\x9f\xfb\x97\xc1\x83\x95\x15\x4e\xc0\x0a\x76\xee\x49\xbe\xa3\x6f\xa7\x9e\x43\x5d\x24\x94\xd8\xee\x18\xa5\x0f\x00\x08\x77\xbf\xdf\xa2\x81\x68\xed\xa0\x8a\x14\xf4\xdd\xba\x27\x06\x45\x3f\xbd\xfd\x76\x65\xa7\xdf\xb2\x84\xe3\x38\x6e\xc7\xae\x17\x34\xe7\xd3\xf7\x89\x31\x32\x48\x23\x42\x73\x6e\xe0\x73\xe9\xdb\xaf\x12\x9b\x3a\xd8\x8f\xa5\x6e\xba\xf6\x6b\x33\xbe\x12\x0d\x62\xfd\xa4\xd0\xc9\xab\xc0\xf0\x3a\x06\xf3\x86\xcc\x2d\xad\x3a\x7b\x3f\x70\x4a\x71\x09\xfa\xf4\xc3\x83\x45\x4c\x43\x76\x8f\x47\x60\xa9\xe5\x17\xd7\x34\xea\x1e\x31\xaa\xd0\x0c\x0f\xfb\x4d\x4f\xc7\x27\x0b\xb1\x3a\x62\x26\x47\x2c\xa5\x53\xcc\xa7\x2d\xbd\x07\x5e\xa7\x76\x3d\x06\x44\x3c\x75\x4e\x36\xe0\x4c\x86\x9b\xfd\x46\xbd\x31\xf2\x78\xf0\xa8\x41\xb0\x89\x9a\x35\x09\x87\x9f\x4e\x6b\x6c\x4b\x4c\x66\x9f\x48\x97\x49\xb3\x34\x38\x75\x29\xf0\x82\x2a\xe1\xdd\xdb\xa8\xf4\xbe\x66\xde\x50\x15\x18\xb2\x70\xe1\x4d\x73\x0b\xc5\xf0\xab\x8a\xea\x85\x70\x56\x2b\x14\xc3\x9f\xbd\x23\x33\x7c\x61\x4c\xc2\x71\x49\xe1\x47\xcf\xf2\x6e\x6d\x9d\xda\xc8\x87\xca\x96\x83\x3e\xcf\x68\xb0\x49\x0b\x33\xee\x1d\xc5\x05\x40\x7f\xba\x8c\xbf\x0a\x97\x18\x55\x17\xf1\x0c\x74\xdf\xae\x01\xa2\xbe\xe5\x5f\xfa\xf2\x0b\xfc\x77\x2a\x0c\xb9\x26\x0e\x18\xbc\xae\x0d\xa7\x13\xfa\x8d\x01\x2d\xc1\x64\xe6\xb6\x43\x66\x5a\x4e\x94\xc8\x87\xc3\xb6\x70\x30\xd2\xed\x16\x23\x9e\x4f\x6b\x16\x4e\xf1\xa1\xf6\xf0\xed\x50\x27\x15\xca\x68\xe0\xf1\xfa\xf7\xbf\xfb\x5f\xa5\x02\xfd\x0a\x5e\x54\xfb\xb9\x62\xa2\x99\x5b\xfb\x86\xee\x68\x5a\x91\xd6\x18\xb9\xbb\xe7\x0b\x27\x73\x86\xb8\xba\xd2\xd6\x0b\x23\x94\x5d\x48\x6b\x8c\x60\xd1\x2d\xcb\xbd\x7d\x4e\xe8\x1c\x62\x87\x24\xf4\x17\x90\x36\x96\xd4\xdf\x19\x1d\x40\x3b\xf4\xb8\xae\x50\xe1\x4e\xa0\x7b\xe9\x68\xd1\x39\x6f\x2a\x4c\x08\x5e\x00\x41\xac\x39\xb5\x5e\x79\x8f\x8c\xfa\x1c\xea\x92\xff\xd4\x76\x45\xaa\x89\xab\x40\xc2\x48\x65\xce\x3b\x57\x29\x45\x3a\xd7\x84\x4f\xda\xaa\x5f\x59\xa8\xf1\x0c\xca\x3e\x66\x2e\xa5\xae\x20\xf5\x5d\x71\x21\xe6\x84\x38\x25\x50\x72\xd8\x27\xb8\x94\xd8\x60\xd8\xe8\x29\x14\xc3\x87\xb6\x73\xc4\xd8\x9d\xd8\x75\x91\xc2\xf5\x0e\x7f\xa4\x89\x26\x61\xe4\x45\x9f\xcd\x4f\xef\xf7\x2b\x7a\xc2\x65\x1b\xec\x4f\xbf\xb9\x2c\xdd\x65\xec\x8b\x5f\xd6\x9b\xeb\x7e\x31\x2d\xd5\x6d\x63\x54\xe1\xe4\x28\xfd\x37\x7f\x7a\x40\x48\x06\x10\xbb\x0a\xc7\xe2\x58\xc5\x1b\xdf\x01\xc6\x12\xa0\x05\x9f\x7c\x5c\xe3\xf7\xb9\x15\xcc\x19\x22\x42\x55\x28\xfc\xfe\xbb\x8a\x57\x84\x8d\x0c\x0c\x60\xa0\x79\x6b\xa4\x99\x05\x52\xc7\x79\xff\x7e\x26\x39\xf8\x35\x31\xf2\x49\x63\xf4\x32\xd2\xb0\x94\xef\x79\x50\xb1\x06\xe7\x0a\x97\xc5\xb0\x3e\x55\x15\x62\xed\x8c\x6a\xf2\x51\x73\x34\xe2\x05\x32\xf9\xb8\x20\x73\xd7\xdc\xf1\x5a\xac\x32\x71\x0d\xbb\x80\x1d\x8c\x0e\x7a\x0f\x27\xe0\xdf\x1f\xbd\xaa\xc8\xc1\x52\x93\x60\x7e\x3a\x2f\xe7\x1e\x8b\x85\x45\x4b\x6e\x6b\x6a\x89\x75\x2d\x48\x7f\x7a\xb4\x77\xa9\xd3\x17\x0b\xf0\xdb\x35\x45\xfb\x00\x23\xe6\x0a\xd9\xb0\xcc\x81\x15\x3c\xa4\x2c\xc5\xac\x44\x12\xf7\xb0\x2f\xce\x1c\xa6\x04\x26\xe2\xc6\x5c\xb2\xc1\x9a\x58\x80\x83\x7c\x4b\x4c\x92\x1e\xdc\xa4\xaa\xc8\x12\xd7\x20\xb5\x68\x93\x85\xa5\x0e\xed\xcc\x4b\x24\x19\x3f\xb2\x5c\xfa\x3d\x9a\xcd\x5a\x34\xbf\xb0\xe4\xb3\x07\xd2\x46\xa1\x18\x3e\xfe\x04\x8f\x23\x25\x42\x1d\x81\xe8\x2e\xf6\xe6\xbe\xab\x68\xe3\x95\x91\x74\x64\x5b\xb7\xe4\x7d\x22\xca\x17\x8a\xe1\x8d\xb6\x46\x47\xa5\xb6\xc9\xa2\xb7\xad\xf2\x6a\x72\x8d\x37\x86\x28\x29\x8b\x17\xc0\x64\x3c\xf7\xde\xcb\x95\xbd\x51\x00\x29\x90\xdc\x7d\xef\x68\x30\x64\xea\xe0\x12\x35\x85\xaa\x40\xee\xde\x30\x2d\xe3\x10\xcb\xc7\xde\xd4\x34\x8d\xef\xcd\xfc\xea\x25\xc5\xd9\xc3\x80\x2a\x1b\xbe\x76\x61\xa8\xc9\xcd\x60\xbb\x5c\x60\xb8\x12\xd8\xdc\x03\x17\x8e\xf5\x6b\xce\x69\x16\xa4\x06\x75\xa9\x43\x12\x49\xa1\xaf\x0e\xd0\x49\x8f\x1c\x51\x6d\xf4\xc4\x63\xf9\xd6\x95\x49\x94\xc7\xa0\x09\x24\x75\xbd\xae\xd3\x6c\xda\x10\x61\xc9\x58\xaa\xd8\x9b\x1f\xff\xda\x35\x8a\x82\x9b\xeb\xd3\xa6\x83\xf1\xd8\x54\x19\x95\x03\xb7\x4c\x99\x1f\xb8\xc2\x10\xff\x9a\xe5\x3c\x71\x9e\x30\x57\xd8\x1f\xf7\x53\x64\xa0\xa9\xed\x60\xd5\x2f\x6d\xf2\x28\x1d\xa5\x44\x56\x53\xcd\x51\xe6\x16\x6d\x86\x50\xa1\xb1\x02\xdb\x7b\x14\x77\x79\x70\x68\xe5\xd3\x90\x2b\x4f\x0d\x51\x77\xb7\x09\xfc\xc5\xec\xa4\x7e\x0a\xa5\x83\x54\x2c\x5b\x18\x8f\xe5\x46\x8f\x51\x85\xdb\x6b\x98\xd5\x68\x03\x86\x51\xaf\xbb\x49\x6f\xa9\xcc\x50\x0a\xa3\xdb\xd5\xa1\x8b\x87\x13\x2f\xc1\x94\x67\xe7\xef\x97\xed\x52\x5c\x2e\x63\x23\xf6\x1b\xcc\x4e\x38\xaa\x4d\xea\xc1\xbb\x22\xc6\xf2\x1f\xd2\xdc\x63\x5d\x9a\xac\x87\xfc\xa2\xe5\x7c\x43\x73\xc7\xee\x06\x75\xa0\xb8\xfd\xfe\x58\xd9\x70\xa2\xa8\x50\x0c\x3f\xb2\x29\xfd\xb0\x3a\xdb\x84\xbc\x6e\xe6\x17\x7b\x14\x4d\x51\x31\x42\xe9\xd2\x20\xd8\x75\xc2\xfc\x40\xe0\x63\xe1\xb0\xfe\xdb\x11\x5d\x84\x0c\xf9\xc9\xe0\x2c\xff\x81\x25\x49\xb6\x60\xd4\x60\xfe\xf8\xe7\x27\xe4\x96\x8d\x25\x0e\x81\xe0\xa8\x71\x0a\xa3\x3f\xa3\x76\x55\x91\xa1\xcb\x1c\xdd\xaa\x38\x69\xa1\x46\x74\x06\x3e\xf4\xbc\xa6\xfa\xa3\xd4\x8d\xa2\x97\xf1\xeb\xcb\x35\x7e\x0b\x2e\x41\x6f\x50\xd0\x6e\xff\x41\xb8\x65\x94\x19\xc6\x26\xf8\x34\x2c\x79\xb8\x0f\x40\x15\xdf\x31\xb9\x3b\xf6\x28\x32\xb9\x68\x15\x71\x82\xe8\x2f\x3e\xd9\xaa\x0c\x2a\x31\xb2\xc1\x6b\x2b\x73\xcf\xda\x84\x6d\x35\xad\xb5\x50\x0c\x0f\x9d\x53\x0e\x7f\x8b\x1a\x55\x35\x51\xca\x57\x5e\x53\x94\x97\x91\x0d\x4e\x9f\xf5\x7e\x57\x29\x32\x65\xac\x84\x98\x4a\x9c\xed\x1f\xca\x56\x0f\x74\xe7\x33\x73\x0f\xa4\x77\x7c\x89\xae\x2a\xd0\x72\x99\x18\x38\xde\xb7\x77\x3d\x3e\x5a\x9e\x87\x4d\xc9\x6f\x7e\xc8\x66\x0d\xf5\x40\xed\x12\xa3\xb4\x8a\xa1\xbd\x27\x83\xa5\xfb\xc4\x75\x5a\x39\xe3\x9a\x36\x48\x99\xca\x71\xef\x84\xe7\xe4\x6e\xc2\x75\x54\xa3\x4c\xc8\x6e\x3e\xdc\xca\xd7\x69\x99\x52\xbf\x84\x12\x62\xe0\x27\x4f\xa7\xc3\x34\x9d\x60\x50\xd7\xa5\x2c\x6d\xc1\x76\xc3\x59\x0d\x89\x65\x22\xc7\x4b\x17\xec\x99\x5f\x3d\xcb\xbf\x60\x21\x2e\x97\x95\x28\x71\xfb\x2e\xdd\xb2\xb9\x84\x18\x43\x9e\xd0\x22\xfe\xe7\x77\xf5\xb0\x5e\x27\xd8\x17\x2b\x39\x3c\xf8\xa0\xd4\xae\x9e\x19\xbd\xcd\x6f\xaf\xd3\x10\xca\x0c\x95\x84\xe0\x8d\x00\x27\x7c\x61\x8c\x26\x53\xd7\x39\xb5\x93\x4f\x9b\xe7\x3d\x2b\x2a\x24\x6c\xd8\x48\x8c\x8d\xb3\xff\xd2\xfa\x01\x3d\x61\x20\x08\xe4\xc1\xf4\x6c\xea\xe7\xdb\x55\xaf\x04\xc8\x9c\x79\xec\xf8\x6d\x4d\x91\x44\x9a\x12\x3d\xd4\x19\xda\xe2\x37\x90\x1b\x45\x3b\x61\xd5\x9c\x9d\xaa\xa1\x57\x62\x63\xfd\x64\xe4\xfb\xc1\xed\x31\xbf\x8e\x61\x64\xc7\x5a\x81\xf9\xcd\x0f\xc8\xc2\x77\x22\x1f\x32\x86\xf7\xbd\xa0\x49\x94\xf5\x38\x35\xe4\x5b\x58\x76\x15\x1f\x18\x2f\x0f\x53\x97\x82\x38\x5b\x76\x67\xab\x3c\x26\xb0\x53\xb3\x69\x4f\xec\x2c\x96\xfd\xac\xa6\xc5\x5f\x0b\x98\x17\x60\x33\xae\x4c\xff\xab\x9e\x3e\x67\x3d\x1f\x45\xc7\x8c\x79\x53\x33\xb7\x21\x73\x7e\xd2\xff\xc7\xd7\xdb\xc7\x5b\x55\xd5\xf9\xe3\x9c\x87\x31\x44\xbc\x5e\xe0\xca\x93\x84\x48\x84\xa6\x1c\xe2\xe1\x72\x01\x75\x7c\x40\x44\x44\xe0\x10\xa0\x91\x11\xb1\xce\xde\xeb\x9c\xbd\xee\xd9\x67\xaf\xcd\xda\x7b\x9f\x73\x0f\x11\x91\x19\xa1\x19\x91\x11\x11\x43\xc4\x10\x11\x3f\xbf\x44\x64\xe6\x98\x5f\x53\xf3\x6b\xe4\x18\x39\x44\x64\xca\x90\x12\x39\x64\x8c\x31\xc6\xf8\x65\x18\x86\xbb\xfb\xbd\xf6\x67\xad\xbd\xd7\xda\xeb\xdc\xbe\x7f\xcd\x04\x72\xef\x39\x7b\xaf\xf5\x79\x7c\x3f\x5c\x2e\xce\xa1\x50\x7d\xdc\x3a\xaa\x4d\xdc\x34\x43\x8c\x5d\x73\x43\x4f\xca\x20\xef\xb3\xc0\xb7\xf8\x70\xa5\xd8\x9b\xfd\xf6\x48\x6d\xbb\x82\x71\x35\x21\x08\xe4\x26\x6a\x8e\xc1\x26\x6d\x38\xa0\x08\xc3\x27\xa2\xb3\x8f\x0d\x51\x84\x1f\x6c\x33\x6e\x05\x66\x1c\x96\xc6\xeb\x35\x15\x05\xf6\x0f\xfb\x14\x9b\x6c\xa6\x3a\x79\x5c\x33\x49\x5d\x00\xd9\xb8\x0e\x36\x27\xd0\x08\xbe\xef\x79\x9e\x52\x31\x43\xf0\xec\xc6\x9f\x4f\x2f\x1f\x31\xf3\x2b\x54\x24\xbf\xae\x23\xe9\x52\xae\x3b\x70\xf8\xe8\x24\xbc\x6e\x8b\x86\x69\xb6\x68\x23\xae\xd9\xfe\x4d\x1b\xce\xfb\xd4\x34\x45\x47\x1c\xdf\x78\x7f\x85\xa2\x76\x86\x56\xaf\xae\x21\x1f\xad\x86\x67\xb4\x7e\x85\x74\x66\xad\x92\x44\x92\xb3\x23\x1d\x6d\xca\xb8\x56\xc3\x37\xdc\xd8\x32\xdd\xdb\xfa\x78\x4a\xda\x0e\x97\xe0\xad\x7c\xf8\x5c\x8a\x65\xeb\x03\x5f\xbc\x37\x3b\xec\x80\xc6\xf3\x42\x2c\x41\x31\x66\x7f\xf1\x70\xbb\xa8\x15\x59\x0d\x60\xe0\xf0\xe2\x3b\x44\x3c\x22\x7e\xc1\x4e\x28\xc5\x17\x07\x6b\x32\x76\x34\x19\xda\xde\xbd\xf5\x6a\xed\xa6\x46\xcd\x94\xd8\xdd\x09\xe5\xb7\x21\xfb\x79\xf0\x9f\x32\xa9\xc0\x09\x22\x7f\xee\xea\x50\x28\x1e\xbe\x65\x32\xd4\x80\x32\x6d\x36\x93\x63\x8b\x0a\x1f\x9f\xa6\x0a\xf8\x95\x07\xd3\x08\x21\x17\x31\x9b\x80\xcd\x50\x4b\x68\x08\xff\xf0\xc6\xd0\xb8\x15\x2d\xd9\xb8\x56\xf0\xa8\x5d\x17\x6f\xdd\x9f\xa5\x68\x93\x8b\xa0\x11\xbd\xf3\x9b\x37\x8c\xd4\x73\x97\x82\x93\xca\x2f\x7c\x89\x7f\x8f\xf9\xbc\xe2\xe9\xcd\x9c\x3f\xac\xad\xe6\x70\xbc\xca\xcc\x9c\xe9\x92\x58\x0f\x07\x73\x59\xb9\x74\x65\xff\xfb\xed\xa2\xa5\xc1\x25\xe4\xc0\x54\x51\x16\x4c\xb5\xd7\xd2\x2d\x4d\x15\x39\x1e\xf2\xfa\x84\x7b\x7c\x6c\xa9\x62\xd3\xca\x15\xa4\x8a\xe1\x84\x4e\xbd\x43\x89\x25\xef\xb2\xbf\x7f\x46\x8f\xd5\x7c\x04\x2e\x1d\xe6\x9e\x3f\x92\x4e\x3e\x75\x6a\x57\x69\xdd\xab\x36\x53\x30\x83\xdf\x6b\xee\x71\xdd\xc8\xa9\x80\x29\x3e\x3f\x17\x87\x58\xd2\xd6\x98\xb4\x45\xb3\x2d\xfb\x9b\x1d\x57\x29\x61\xbb\x8e\x9d\x02\x72\xcc\x02\x8a\xad\x47\x4e\x2c\x1c\xae\xb2\x66\x39\x75\x38\xfe\x7c\xbf\xeb\x97\x72\xb2\x00\x2d\xa1\x78\x5b\x60\xbe\xa8\x38\x1c\xa1\xa6\xc7\x27\xec\x3f\xde\xa4\x14\x73\xa8\xc9\xfb\x6b\xf6\x54\x87\x24\x4b\xa9\x0b\xe4\x7f\x7a\x5c\x41\x75\x80\x4e\xfa\x43\xd7\x5f\x26\x92\x28\x18\x75\x65\x76\xed\x55\x3a\x21\x1c\x44\x4f\xfc\x1b\xfe\x68\x65\x28\x52\x45\x76\x0b\xa9\x2b\xb7\x68\xbc\xee\x5d\x0b\x18\x1e\xd8\x9b\x64\x3f\x3a\x3c\xb1\x8d\xc1\xd8\x57\x47\x21\xf3\x0e\xa9\xc5\x10\x1f\x7e\x9f\x1d\xa0\xb3\x3f\x4b\x0d\xd4\xf4\xe2\x3a\xf4\xbb\xa7\x79\x88\x57\x44\x5f\xe6\x49\xd0\xf1\xcc\xce\x42\x31\xbc\x53\x58\x2c\x2b\x14\x95\xdc\xca\x79\x72\x1b\x34\xa5\xab\x33\xfa\x58\xaf\x85\xda\x48\xaf\x4e\x0c\xf5\x18\x64\x9e\xd8\x97\xee\xce\x84\xe8\xab\x9b\xf2\xef\xaf\x2c\x92\xe9\x84\x96\x30\x33\x31\x2b\xc3\x0d\xca\x5f\x7a\x58\xe7\xe3\x36\x3d\xde\x8b\x42\x62\xf8\xf4\xda\xe1\xf1\xdf\xe8\x83\x94\xf0\x9a\xa5\xfc\x36\x16\x7d\x0e\x86\x2b\xef\x53\x1a\x93\xc4\xa7\x07\x56\x56\x03\x75\x39\x4c\x71\x68\xc0\x63\x00\x24\x87\xef\x67\x9a\xaf\x71\x33\x6a\x54\x69\x45\xe8\x7c\xc3\x8f\x19\x75\x58\x56\xeb\xd4\x6e\xd6\x5c\x2e\xdf\x9a\xbd\xe9\x3d\x4d\xfc\xbf\xc9\x12\xb5\x3f\x18\x7b\xce\xe2\x8b\xda\xc2\xed\xdc\xa0\x30\x56\xfb\xcc\x9d\x79\x55\xe9\xf5\x90\xad\xda\x22\xf6\xe6\xa7\x3e\x26\x4f\x39\xee\x71\x31\x23\xc9\x50\x30\xf3\xfc\x75\xc3\xf4\xbe\x88\xf9\x02\xbd\xb7\xe7\x31\x9e\xcd\x6f\x77\x90\xdd\x84\xf7\x9a\xff\x50\x87\x3c\x41\x86\x05\x82\x15\xd9\xb7\x76\x24\x07\x82\x11\xc0\x3b\xd5\xfb\xf3\x4f\xb9\x00\x55\x1c\xac\x54\x99\x23\x47\xa7\x63\x09\x46\xcc\x11\x20\x83\x0f\x68\xfa\x4c\x35\x62\x13\x9f\x20\x38\xd2\xa1\xd3\xcd\x0f\xa1\x4d\xb8\x77\x74\x6f\x6e\xcd\x28\xed\xd4\x62\x56\x8f\xea\x71\xd1\x81\x4f\x59\xa9\xa5\x12\xa3\x2a\x40\x53\xb2\x6e\x1d\xb0\x92\x7f\x3b\x64\xa3\xd8\xb4\xed\xb4\x66\xb3\xe9\x37\x68\x41\xb1\xb1\xbc\x63\x4f\x7a\x41\xda\x35\x4d\xec\xee\x3f\x7b\x42\xa5\x97\x80\xfa\x10\xe8\x18\xe7\xc7\x3e\x9d\x54\x8e\x15\x02\x4d\xf9\x95\x0f\xa4\x25\x61\x6b\x06\xe9\xc3\x21\x3d\xf7\x81\xce\x41\x4a\x4d\xe7\x73\xd1\xc4\xcc\x4c\x91\x35\x4c\xd6\xe4\x25\x54\xdb\xab\xda\x8e\xc1\x07\x4d\x73\x01\xdf\xc7\xdb\xf9\xc5\xa4\xd1\x0b\x17\xfe\xf6\x46\xd8\x42\x0d\xae\x13\x33\xb1\x20\xca\xfc\xf5\x19\xcd\x09\xca\x31\x92\xdd\xd5\x47\xf6\x6a\x95\x7e\x8f\x8b\x8d\x44\xb0\xa5\x37\x73\xf4\x35\x89\x48\xae\x36\xe5\x3a\x70\xb1\x76\xc6\xca\x0c\x05\x5c\x54\x26\x7c\xf2\xb6\x51\x7d\x74\x07\x5c\x24\x17\x0e\xfc\x15\x8a\x9a\xdb\xb5\xbe\x05\x2a\x95\xb9\x7b\xdf\xd1\xe1\x81\xa6\x69\x0b\x71\xd8\xdc\x25\x4f\xeb\x8c\x11\xc4\x12\x77\x8d\x7b\x67\xeb\xd4\x67\xc7\x27\x4e\x80\xcd\xd8\xa9\xb9\xf6\x58\x87\x78\x66\x15\xe4\x10\x2f\xd6\x59\x0a\xb7\x8f\x92\x45\x98\x0b\x1e\x31\xc4\xe5\x43\xa5\x87\x2f\x08\x52\x6e\x89\xda\x24\xe6\x01\x66\xbe\x73\xa8\xa5\x83\x46\xbe\xb0\xc5\x16\x7d\xf7\xb5\xcf\xaa\xeb\x43\xcf\xa5\x1c\x4a\x91\x7d\xf1\xa8\xb2\x1b\xa2\x0e\xad\xa1\xe8\xd7\x3c\xa2\x41\x4b\xba\xa6\x47\x01\x59\x80\x40\xfe\xfe\xb5\xf4\xc5\x6a\x58\x54\x00\x45\xaf\x1d\x23\xb5\x2e\x28\x4d\x38\x08\x59\x99\xc5\x4c\x86\x60\x24\xf1\xaf\xed\xe3\x5a\xf4\xd5\xe3\x32\x22\x35\xc3\xba\x65\xae\xaa\xac\x53\xc5\x85\x62\x38\x66\xb5\x82\x75\xc6\xd1\xff\xad\x16\x8a\x61\x87\xa9\x58\x8d\x51\xc6\x61\x40\xc3\x86\x6a\x56\x60\xc4\x09\x14\xff\xb7\x4c\x69\x91\x2e\x28\x50\x07\x62\x01\x94\x02\x5f\xd7\x06\xe8\xb1\xd4\x51\xea\x66\xe7\xf0\x29\x59\xfa\x19\xa8\xe6\x22\x07\xdb\xb6\x5c\x95\x86\xb7\xee\x49\xb7\x84\xdd\xd4\x72\xfa\xac\x88\xb2\x0f\x6d\x95\xe1\xae\x12\xc0\x03\x0d\x56\xea\xfe\x2c\x42\xdf\x25\x2e\x86\xf3\xfb\x24\x96\x04\x95\x19\x31\x90\x53\x40\x35\x0c\xff\x0f\x04\x7f\x3c\x46\xa3\xf7\x61\x07\x63\xc6\xf1\xb3\x4b\xa7\xa4\x8f\x0d\xe8\x85\x43\xf6\xf0\x62\x64\xdb\xd9\xfc\x48\xfd\x06\x0b\xbd\x06\xd8\x7d\xff\xd7\xd1\x74\x90\x6a\x82\x02\x41\x31\xbc\x5a\x93\xab\x88\xda\xe6\x42\x57\x67\x3c\x2c\xff\xe5\xda\x36\x99\x1f\xa0\x97\xbb\x51\x83\x8a\x58\xa8\x1e\xd5\x64\x9c\x96\x77\xdb\xc0\xd8\x74\x93\xd5\x90\xd3\x4c\x00\xb1\x1a\xf8\xcc\x46\x5e\x14\x1f\xe0\x58\x67\xb7\xf2\x7b\xb2\xe0\xf6\x85\x77\xcf\xbf\x3d\xbe\xdf\x5d\x3d\x02\xa6\x68\x21\xdf\x27\x82\x2c\xf1\x42\x52\x4e\xd9\x2a\xda\x25\xf7\xf8\x60\x05\xcc\x4b\x7c\xe4\xf0\xb6\xb9\x71\x20\xfd\xd0\x40\xb5\xa6\xc2\x68\xe0\x98\x13\x45\x50\x08\x8f\xf3\x5f\x03\xf2\xb9\x3e\x0f\xce\xde\xce\xe1\xca\xfd\xf3\x11\x51\x6d\xf2\x3e\xbb\x4e\x19\x65\x1a\x0c\x73\x75\xb0\x1f\x2f\x6c\x31\x8b\x8a\x02\x9e\x41\x38\x0d\xb5\x50\x0c\x59\x97\x0e\x41\xa7\x46\x35\x2e\xa6\xfa\xbd\x98\x64\xca\x4a\x60\x17\x8a\xe1\x4d\x67\x54\x21\x6b\x98\x43\x0b\x31\xfe\xaf\x1d\x4a\xbf\x46\x5c\xe1\xca\x53\xf9\xcf\x71\x37\xff\xc2\x42\x84\x6a\x58\xa1\x9b\x67\xdc\xf6\xf4\x0b\xa6\x81\xef\x11\x33\x51\x33\xc9\xcd\xd2\xc8\x56\x2c\xea\x30\xe0\x33\xdf\x3a\x4a\x49\xea\xc8\x8e\x3e\xd8\x00\x36\x48\xf2\x38\x49\x6c\xc2\x75\x56\xf3\x2f\x49\x4c\x2a\x63\x67\xc4\x05\x12\x10\x82\x4a\xea\xe3\x9c\x6f\x77\x68\x6d\xae\x28\x56\x4b\x2f\xc6\x36\x50\x58\x38\x74\x64\x86\xcc\x51\x77\xe3\x8e\x48\xa5\xc3\xcf\xa6\x43\xdc\xc4\xce\xe9\x02\x9f\x94\x3b\xba\x58\x96\x6b\x25\x5a\x2b\x61\x33\xfa\xf2\xd1\x4f\xff\xc4\xcd\x43\x14\x2d\x29\x83\xf8\x18\x42\x6c\xe6\xf0\xf1\xd8\x39\xc6\xf3\x83\x1a\x2f\xed\x8e\x8d\x4e\x47\x05\x47\x7c\xb3\x16\xf6\x73\xee\x9a\xfb\xb4\x27\xed\xaa\x46\x19\xb9\x4f\xac\x94\x43\x02\x17\x33\xa3\xa9\x94\x62\xe6\xdc\x61\x7a\xd7\xe9\x37\x45\x09\x74\x42\x11\x95\x8e\xf2\x01\x9f\x5e\xc3\x95\xc8\x0c\xdd\xdc\x07\x18\x9c\x09\xe3\x49\x41\xba\xce\xdd\xd2\xa1\xca\x86\x62\x61\xba\x14\x9e\xbb\x2d\xe9\x9f\x1a\xa8\x55\x13\x6f\xdc\xb2\x58\x7a\xba\x56\xe3\x50\xcd\xdc\x2f\x3a\x15\xa1\x6a\x54\x43\x0c\x99\x51\xd1\x08\xae\x75\x8b\x06\xc5\x45\x66\xb9\x60\xd2\xd5\xfc\x5e\x2c\x18\xad\x03\x17\xb0\x53\x88\x4f\xde\xa6\x0e\x1d\x91\xea\x34\xc5\xf8\xef\xcd\x59\xea\x8e\x4b\x88\x94\x14\x8a\xe1\xca\xfb\xb5\x1a\x1a\xd9\x94\x9b\x85\xcb\x28\x9f\xd7\x7c\x29\x0d\xc4\x7c\xbe\x24\xcc\xfd\x62\x56\x9f\x66\xf1\xa0\xb2\xf5\xc0\xac\x6b\xf5\x27\x59\x01\x96\x48\x1f\xe6\x6b\xb3\xee\xd7\xe0\xf5\x4e\x93\xc6\x9e\xe5\xb9\xfd\xef\xa5\x13\x19\xaa\x95\x88\x4f\x68\x10\x7b\xe6\x4c\xdf\xa3\x38\x5b\x00\xf3\xa0\x50\x0c\x2f\x0f\xc5\xb2\xd9\xa6\x34\xea\xf5\xb6\x65\x75\xae\x56\xcd\xa5\x0c\x31\x62\xc7\x18\xfb\x3f\xad\xd1\x52\x9e\x4d\x1c\x9f\x3a\xda\xaa\xa6\x6d\xb1\xa2\xa3\x4f\x03\xc7\x37\x29\x8c\x41\xf2\x81\xd6\xbe\xfb\xc8\x8e\x67\x29\xf7\xae\x95\x3d\x1a\x6e\x46\x8f\xfd\xd1\x1e\xcd\x1f\xcd\x63\x08\xdb\x71\xcd\x12\xf5\x19\x7f\x1c\x70\xb5\xbc\x9b\x7e\x60\x12\xda\x32\x8d\xc8\xdc\x2d\x4b\x0e\xbe\xbd\x81\x7f\xf9\x97\xad\x3a\xbd\x82\xf9\x56\x3c\xfa\x39\xd1\x2d\x23\x10\x07\xa2\xf7\xe6\x16\x6c\xd4\x44\xdd\xc1\xdf\x4e\x30\x87\xc6\x8b\xd6\x64\x61\x5c\x6c\xf4\xe6\x3f\x74\x26\xfd\xdf\x53\x90\x42\x16\xd8\xca\xd1\x8b\x74\xbc\x98\x47\x2a\xb1\x97\x55\x6e\xfb\x04\x59\x0e\x55\x69\x05\x16\x3c\xbf\x7b\x44\x16\x2f\x2c\x60\x1c\x8b\x76\xec\xbd\xf4\xec\xd9\xc6\xc0\xb7\x8c\x72\xd0\x33\x72\x73\x67\xd3\xbe\x94\xb1\x96\xce\xd1\x3d\xd5\x30\x32\xcb\xc8\xf3\xed\xa6\x78\x0a\xf7\x4e\x12\xd6\x44\x36\x72\x04\x1a\x22\xfa\xe3\xa9\x59\x48\x3a\x85\x7b\x68\xad\x86\x99\x87\x1c\x1d\x7c\x19\x6e\x9f\x23\x17\x8e\x86\xba\x70\x0c\x17\x9c\x96\x9d\x09\xb8\x1e\x88\x7d\x74\xe5\x62\x3c\xa8\x65\xc8\xa4\x3d\x30\x66\x59\xa1\x35\x3f\x16\x03\x3e\xae\x68\xa9\xb6\xbc\x9b\x8e\xfd\x38\xce\x7b\xdc\x86\xa3\x37\x37\x4c\xa9\xd4\xbd\xa8\xa2\x01\x40\xc8\xca\x3e\x8c\xe4\x3c\x58\xbb\x89\x9c\x32\x7f\x14\xef\x15\x6b\xd4\xf3\x39\x9c\x1a\xc6\x4e\xf4\x3d\x9e\xe6\x40\x5e\x40\x4a\x30\x84\xff\x39\x37\x3d\x24\x20\x75\xe4\xd0\x7a\xda\x5e\x2a\xdf\xf1\x6c\xfa\x6a\x82\x1f\xb2\x81\x84\x3c\x45\xf8\xaf\x8f\xea\xea\xf5\x28\x91\x99\xcf\x3d\x33\x58\x26\x13\x13\x7b\x06\x23\xc2\xa2\x39\xf7\x17\x5f\x7b\x02\x4d\x5c\xb1\x91\x27\x45\x26\xbe\xfd\xf4\x10\x15\xc8\x30\x59\x3c\xeb\xb7\x56\x27\x4d\x20\xf2\xa1\x0b\xb9\xe1\x65\xbe\x47\x9f\x31\x03\xd6\xc5\x61\x92\x34\x69\x43\x75\x36\xbd\xba\x34\x52\x51\x05\xc1\x0e\xcc\xa8\x3c\x83\x70\xb9\xc2\x6c\xd7\x1c\xc9\xf3\x9b\x36\xa5\x50\x0c\x3f\x35\x4b\x03\x98\xd3\xc0\xb0\x12\x13\xba\x01\x67\xd3\x81\x84\x50\xa3\x15\x52\x92\xb9\xb8\x98\x1f\x8c\x06\x71\x4c\xda\x80\x9a\xf4\xa9\xb7\x07\xa9\x49\x94\x73\xfa\xb3\x1f\x1c\x25\x64\x95\x28\x10\x1f\x9e\x14\xf5\xe3\xe4\x29\x20\xdb\x17\xfd\x17\x8b\xca\xe9\xd0\x13\x85\x4e\x51\x08\x3d\x75\x5c\xc7\x21\x1a\x98\x45\x15\x98\x2f\xa4\xc3\x7e\xfd\x80\xea\x7d\x53\x23\x31\xeb\xe0\xf5\x93\xa9\x35\x27\x17\x45\x28\xf6\xe6\xbe\xd5\xc1\x3f\x8d\x2b\xf6\x1f\x1f\xba\x4f\x1b\xa7\x22\x3f\xd6\xbc\x7b\x78\x8c\x04\xa4\x4f\x2e\x74\x46\xef\xe3\xa6\x29\xf1\x77\xe1\x3d\xca\xcd\xef\xca\x95\x62\xc3\xc2\x0c\xab\xb3\xdb\xdc\x92\x81\x43\x15\x45\x25\x23\x7a\x20\xe5\xc0\x86\xe2\xfb\x94\x90\x63\xb8\xc3\x22\x76\x8c\x4e\xca\xe4\xb6\x6b\x3d\xa7\x45\x6c\x93\x61\x27\xa1\xe3\xbe\xb9\x51\x37\xe3\x9e\x3e\x35\x6e\x87\x5e\x1a\xc5\x47\xbb\x1f\x5d\x7c\x47\x4b\x77\xf2\x73\x6d\x93\x13\x85\x34\xe4\x07\x4c\x64\xa8\x3c\x5b\xa4\x2b\x03\x52\x4f\xe0\xa7\xb7\x6d\x15\x32\x3f\x81\x8b\xc1\xe6\x52\x4f\x7d\xcb\xcf\x74\xa4\x05\xfc\x45\xef\xb4\xe1\xa8\x36\x71\x60\x86\x45\xea\xf1\x6f\x9c\xdb\xe2\xc5\x53\xc2\x76\x5c\x9f\x2c\xda\xa2\xfb\x53\x46\x11\x1a\x4c\x63\xf9\xd5\x7b\x6e\xe1\x40\x11\xa8\x88\x03\x8d\xc0\x27\x97\x2b\x36\x38\x98\x5b\xb2\x4f\xd4\x20\xf6\xa2\xdd\x14\x02\x71\xbf\x1f\xdb\xa6\x34\xb6\x50\x3a\xf5\x9b\xa4\x80\xc6\xc0\xf1\x0d\x32\xf1\x8f\x5e\x52\xf6\x41\x0a\x2d\x3e\x1c\xbf\x58\xf7\x72\x2c\x79\x00\xea\xe4\x9d\xcf\xf9\xb1\xda\x18\xb3\x06\xce\xdb\x24\x41\xe1\x9c\xb8\x79\xa8\x1e\xe7\xb9\x51\x4f\x6f\xee\xcc\x1a\xf9\x3b\x91\xe3\x13\x83\xb8\x7c\x79\x9b\x0b\x5e\x4c\x5f\x4e\x13\x47\x3d\x25\x4b\x6f\x82\xb2\x9f\x1c\xd5\x77\x0c\x36\xe2\x0c\xf2\x1d\x4d\x06\xcd\xa0\x35\xce\x13\x09\x7f\x74\x54\xc0\x09\x49\x9d\xb4\xe4\xa6\xcc\x60\xcd\x3e\x03\x31\x46\xea\x12\x1c\x98\xbf\xba\x83\x0f\xe0\x02\x26\xf8\x47\x99\x37\x6e\xd4\xfd\xf2\x9c\x28\x9d\x73\xac\xce\xef\xb5\x48\x19\x3d\xa1\x28\x90\x26\x4e\x94\x2f\x3f\x9c\x34\x42\x96\x0f\x56\x25\xa3\x24\xa0\xa1\x09\x40\xaf\x3f\x8d\xe6\xa0\xbb\xf9\xb8\x84\x4d\x2c\x85\xd8\xc2\x57\x42\x7e\x59\xcb\x02\xf6\x32\x79\xbd\xac\xb3\x6a\x88\xd5\x9b\xdc\x62\xe3\x45\xa5\xa7\xa1\xa0\xd5\x93\x1b\x3f\x40\x6c\xa4\x12\x8b\x38\xa8\x76\x47\x4c\xd2\x30\x39\x36\xc3\xc8\x6c\xc6\x42\x8e\x97\x68\x24\xc8\x4a\x40\x6c\xe2\x24\xaa\x7e\xd9\x33\x62\xeb\xec\x62\x64\x60\xc4\xcd\xef\x33\x1f\x71\xb4\x42\x81\x94\x81\x21\x1b\xfe\x6e\x67\xda\x6f\xc8\x46\xa5\x78\x17\x9f\xbe\x80\xa5\x83\x09\xa4\xc0\xc1\x2d\x6e\x2f\xf9\xcb\x6e\xd6\xe7\xb6\x24\xd6\x49\xca\x9e\x7c\x8c\xa7\x54\x93\x78\x06\x0d\x18\x8a\xdf\xd9\x94\x8e\x74\xee\x6c\x20\xdb\x4f\x98\xbf\xe2\xe9\xbe\xef\xb4\xae\xbf\xc4\x50\x7c\xba\xbe\xf7\x4a\x87\x56\x0e\x0b\x68\xf8\x9f\x47\x6a\x59\x1e\x95\x71\x25\x40\xcc\x8c\x93\x4f\x7e\xe8\xa6\x96\xfe\xa5\x0c\x82\x7f\x24\x19\x8a\xe7\x5e\x7c\xb9\xe5\x74\xf3\x16\x28\x6e\x24\x3e\xf5\x64\xdc\xc4\x47\x97\x07\x04\x04\x33\xcd\xd3\x23\x15\x55\x3e\x9f\xd4\xb9\x34\x6e\x7c\x63\x7e\xa2\x49\x51\x20\x10\x9c\x80\x03\x76\xd3\xba\x64\x5a\xd9\x54\x99\x7a\x99\x43\x73\x5a\x88\xa9\x25\x61\x39\x2f\x8e\xef\xd7\xf4\x11\x3f\x75\x7c\x14\x94\x90\xc3\x47\xb9\x30\xd8\xb8\xe3\x88\x22\xa7\x4f\x9d\x0a\x2c\xd2\x85\x0d\x6e\xf6\xff\x2c\xd7\x97\x2e\xac\x0e\x94\x2c\x3e\x68\x3e\x95\x97\xfa\x42\x05\x00\xbd\x7c\x52\x59\x13\x95\x38\x8c\x25\xdb\xee\x2b\x0d\x06\x72\xc5\x38\xf2\x66\x0d\x94\x5f\x8a\x8a\x49\x3b\xf1\xa2\xcd\x7e\x6e\x99\xc0\x8c\x1a\x94\xc2\x53\xad\x6d\x6a\xb1\x78\x11\xc8\xd8\xbf\x0e\x4c\x8e\x20\x65\xad\x8c\xbd\xf0\x09\xd5\xd4\x1c\xb4\x8a\x33\x03\x86\x76\xa8\x6a\x83\xd1\x77\x06\xa3\x86\xfc\x97\x42\x1e\x7f\xee\x41\x36\x8a\xc9\xea\x72\x76\x61\x1d\xd0\x5c\xb8\xa2\xb7\xd4\x07\x2e\x3c\xbf\xb8\x24\x88\x2c\xd4\xa9\x47\xa7\x87\x72\xe0\x71\xe6\x8f\x22\xf1\x0a\x6d\x2f\x88\xfc\xd9\x9f\x3e\x93\x3c\x46\xdc\x13\x15\x29\x1d\x73\x3a\x44\x5d\x57\xa3\x0e\x48\x29\x8b\xb2\xa2\xbd\xbf\x2e\x74\x0d\x91\x93\x4f\xf7\xa7\x9d\xe0\x29\x78\x29\x66\x7e\x90\x56\x6a\xcd\x2c\xdd\xa6\x71\xa8\x21\x97\xa9\xfa\x2b\xcb\x6e\xd3\x3b\x0f\x00\xfc\x09\x97\xa0\x5f\x9f\xe4\x9f\x88\xfb\x20\x13\xc7\x21\x4e\x05\x2e\xc3\xe9\x03\xe9\x3d\x81\x2b\x08\xa2\x80\x5d\xe1\xe3\xf1\x28\xf8\x3c\xb0\x4f\xa1\xb9\x62\x52\xb1\x4a\x94\x59\xbc\xb5\x5c\x79\x72\x84\x96\x28\xb1\xa2\x3b\xb9\xf0\x3d\x59\xad\x8f\x8d\x6b\xf1\x7d\x1a\xea\xbe\x46\x1d\xea\x52\x9b\xc4\x15\x6e\xf6\xd7\xda\xb8\x1e\x19\x20\xe6\x51\x8a\x59\x8c\xd9\xe6\x96\x96\xb0\x84\xcb\x7c\xca\x34\x75\x82\x3e\xa5\x8b\x12\x2b\x0b\x60\x83\xc0\x9f\xf4\xee\x13\xba\x57\xaf\x89\x11\x37\xf9\x12\xb7\xea\x86\x39\x9c\xba\x6b\x81\xb0\xc5\x90\x45\x8a\x95\x90\xe7\x89\x49\x4e\x66\xf6\xce\xf4\xf5\x64\xc4\xb0\xb0\x36\x23\x5e\xfa\x9a\x6a\xd6\x4e\xab\x85\x62\xf8\xbd\xc1\xe9\xdf\xee\x50\x07\xe4\x24\x3d\x24\x94\x87\x72\x17\x3b\xf4\x7b\x6f\x58\x3e\x4a\xe1\xb3\x72\x4b\xe6\x4a\xaa\x5e\x50\x92\x69\xeb\x0a\x4d\xc4\xd0\x0a\x40\x05\x2b\xae\xf3\x2e\x0c\x94\xc2\x69\x44\x45\x66\x4d\xdd\xd7\x02\x0c\xe0\x72\x82\xe1\xdb\x0a\x37\x1c\xca\x30\x1f\x1b\x7c\x7e\x73\x70\xa7\xe2\x6d\x4d\x0c\x9f\x32\xce\x6b\xf8\xa9\x02\x6d\x13\x80\x96\x0b\x62\x45\x54\xf2\x30\xab\x73\xbd\x8a\x8e\x4b\xf8\x99\x5c\x4a\x6d\x6c\x2a\x40\x99\x8c\xef\xa6\x6f\xa9\x67\xe1\x3a\x62\xa6\x83\xcc\xd5\x18\x40\x13\xf1\x7f\x78\xd7\x11\xc5\xcf\xc2\x22\x46\x15\x3b\x05\xc0\x85\xc0\xa7\x1b\xf6\xb0\x26\x0b\x4c\x3c\x3f\x11\x14\xce\x34\x1e\x1d\x19\x97\xd0\xb8\xdc\xe2\x18\x99\x3d\xf0\xb4\x84\xbc\xe0\x7a\x3c\x5c\xf8\xb3\x90\xfb\xba\xb3\xa1\xf2\xfa\xb2\xd9\x29\x12\xd9\x63\x47\x7d\x8b\x7c\x4d\xb7\x2f\x6f\x91\xa5\xa9\x46\xff\x49\xfc\x31\xbe\xf4\xfc\x18\xed\x62\x83\xa2\xba\xa3\xd0\x66\xc3\x95\x22\x18\x2d\x20\x29\x15\xc5\xec\xc7\x1c\xad\x9a\xf2\x7d\xca\x1c\x1c\x63\x3b\xb3\x3b\x47\x69\xa2\x5c\x0c\xd5\x90\xd4\x47\x85\x76\xfb\xdd\xc5\xba\xcd\x3b\x4f\x3e\xe1\x7f\x8e\x8b\xc7\x75\x42\x09\x28\x5c\x73\x44\x55\x46\x07\xba\xbf\x48\x33\xb3\x4b\x83\x54\xe4\xa9\x90\xba\x7c\x7a\xc3\x08\x51\x59\xa1\x72\x2b\xcf\xe9\x2b\xa1\xe2\xb4\xe3\x5b\x36\xf6\x01\x04\x97\xb7\x5e\x1b\xab\x17\x06\x58\x28\x91\xa9\xee\x5e\x4b\xda\x93\x9c\x11\x38\x44\x1f\x54\xdc\x7a\x98\x5f\x5f\x0f\x45\xbd\xfc\xf0\x79\x63\x5a\x7b\x09\x17\xdb\x08\x66\xdd\xa2\x7b\x3a\xbe\x61\x84\x5e\x7e\xf9\x20\x59\x07\xdd\xc0\xe2\xce\xd8\x76\x93\xd6\x68\x0c\xaa\x9f\xb9\x5a\xd9\xd5\x05\x0e\xf1\xac\x58\xf1\xea\xb5\xf3\x7a\x30\xe6\xfa\xfb\x90\xee\xee\x5d\xa1\x40\xd5\x9d\x0a\x06\xe3\xa0\xcc\x8a\xd9\xe9\xb0\x55\xb5\x31\x36\xaa\x29\xfc\x4a\x63\x4b\xfa\x5e\x54\xa8\x5d\xee\x13\x60\xd3\x35\x76\x78\x9a\x65\xa1\x0e\x2d\xca\x2f\x5c\x99\xd2\x00\x4d\x7c\xa2\x32\x2f\x68\xcb\xee\x12\x33\xaa\xf2\x09\x65\xd7\x3d\x2c\x43\x79\x19\xf5\xf0\x97\xbc\xe1\x84\xfc\xc3\xd5\xa8\xc2\xf7\xa6\x3f\x3f\x23\x15\x69\x41\xd6\x8f\xb4\xe0\xa2\x7a\x33\xef\xae\xd3\x84\xac\x29\x33\xd3\x76\x2f\xf9\x8f\x6d\x55\xa4\xf2\xe5\x4e\x7e\xa4\xa8\xd8\x83\x12\x43\x8e\x62\x75\x94\xed\xa7\xd9\xc3\x78\xdc\x2a\x4f\xc0\x0c\xea\x6b\x14\xfd\x17\x07\x81\xaa\xd0\x5d\x03\xe4\x6f\x58\xc5\x15\x77\x8b\xbd\xd9\x0b\x8b\x74\x29\x72\xee\x2c\x0f\x26\x5b\x53\x95\x72\xc8\x65\xc2\x81\x25\x7b\x76\x5d\xba\xb1\xaa\xa2\xa0\x5c\x43\xda\xf8\x34\xff\xc8\x18\xed\x09\xe3\xa8\x64\x8b\x8d\x19\xd8\x38\x39\xd0\xef\x26\xb5\x9a\xb2\xda\x3e\x33\x36\x29\x22\x7d\xa4\xc6\x97\x8f\x1d\x1a\xa6\xd4\xa5\x06\xad\xb9\xc8\x69\x8a\x3a\x7c\xf9\x0e\x85\x9e\x40\x7a\x00\xf8\x18\x7d\xe9\xf7\xad\x68\x53\xa4\x41\x1a\x85\x62\x38\xf2\x15\xf9\x68\x1a\x18\x36\x33\x97\x0f\x94\x2f\xb6\x81\xea\xc0\x3d\x5b\xd6\xae\x2a\x27\xcf\xec\x8a\x1a\xe1\xfb\xb4\x93\xce\x2d\x31\xf9\xf8\x34\xf3\x5d\x4d\xc6\x00\xb4\x71\x59\xe2\xe0\xd8\x95\xd5\x86\xc6\xa4\x26\xe6\x06\xf3\x9f\xe7\xaa\x23\x4b\x02\x97\xe1\x5a\xab\x5a\xc5\xd8\x09\x0a\xc9\xde\x12\x76\xd1\x7c\x0c\x36\x5e\x1b\xa6\x03\xe4\x5d\x2c\xed\x33\x4b\x1f\x56\x5c\xcb\xc0\x65\xa4\x50\x0c\xef\x78\xfa\xb2\xf8\xe1\x02\x97\xec\xae\x17\x65\x71\xc9\x35\x2d\x11\x37\x69\x98\xb5\x34\x31\xdf\xf5\xbc\x80\xf1\x34\xf3\xf1\x8d\x0a\x6f\x91\xd6\x4a\x8c\x36\xbc\xaa\x72\x2a\x73\xaf\x8c\x4a\x8b\x1e\xd0\x32\x6f\x0c\xfe\x47\xe3\xc9\x09\x11\x07\xd1\x84\x1c\x7a\x50\xd7\x64\xb4\x82\x1a\x72\x12\x28\x78\xe7\x50\x85\xd2\xc6\x12\xc3\xec\xec\x03\x5a\xc3\xdc\x40\x4e\x52\xf8\xe4\x5e\x5d\xa9\x4d\x35\x1d\x93\x3a\xa0\xbf\xac\x90\x56\xbf\x30\xbe\x4d\x64\xb2\x84\x2b\x3d\xe0\x2d\x39\xa8\xa2\xae\x4b\x3d\x35\xa2\x64\xff\xfc\x9e\xb2\x10\x42\x41\xc5\x12\xc2\x2c\xd9\x29\x13\xf4\x58\x1e\xf5\xd2\xd2\x27\x9f\x17\x6c\xf6\xec\x76\x51\x41\x08\x6e\x42\xf4\x1b\xdf\x7a\x5c\x6b\xd2\x7a\xc0\x54\xb8\x8e\x63\xc7\xaf\x65\x17\xf8\x64\xe9\xce\x80\x51\xb7\x2f\x67\xc8\x83\x7c\xf6\x39\x25\x3a\xa5\x46\x9b\x26\x8c\x84\x7b\x88\x01\x5f\x3a\xf1\xce\xfd\x91\x04\x95\x44\xe1\x50\x66\xd9\xad\xe7\x2f\x6b\xa4\xba\xfb\x81\xf2\x7d\x7b\xa8\xd9\x6a\x36\xfd\xe5\x9d\x72\x6e\xd7\xc4\xb6\x92\xb1\x73\xff\x3d\x6a\x98\x3a\x23\x0a\xcc\xc0\x16\xa2\x42\x21\x5a\x97\x3e\x0d\xd1\xd3\x8f\x62\x0e\xef\x04\x17\x9c\x52\xc4\xca\x02\x13\x09\x7e\x7a\xee\x82\x10\x20\x00\xa3\x29\xc4\x04\x7a\xac\xff\x80\x16\x9d\x47\x3f\x9e\x3b\xff\x61\x43\x52\x00\x7a\x2a\x7a\x2b\xf7\xc7\xec\x08\x25\x2d\xf9\xd4\x81\x21\x7e\x52\x93\x29\x3a\x37\xc0\x6c\x54\x0e\xf8\x4d\x9a\x0d\x40\x0d\x33\xc3\x42\x4e\x22\x63\xfb\xf6\xa1\x34\x50\x38\x0a\xc9\x24\x89\x8d\xb2\x85\x79\xe5\x44\xf2\x0a\x4c\xa6\x52\xce\x3f\xf0\xea\xfb\xb5\xc3\x60\x81\xc9\xbe\x99\x20\x83\x7f\x70\x88\x17\x66\x8b\x64\xfb\x12\xfd\xf1\x20\x5d\xec\x04\x5a\xec\x58\x28\xe5\xb9\xc5\x63\x94\x66\xd7\x31\x28\x73\x5b\xd0\xfa\xf9\x55\x2b\x24\xc0\x36\xb6\x48\x95\x71\xf9\xd5\x76\x21\x50\x0c\xe4\x54\x01\xa0\x00\x8a\xec\x5a\xf9\xb3\x71\x7c\x44\x35\xab\xe1\x7b\x8f\xc8\x09\x31\x83\x5e\x6a\x48\x59\x96\x58\xab\x82\xa8\x4d\x73\x09\x82\x25\xda\xa4\xeb\xb5\x79\x09\x8e\xca\x6d\x0e\xc5\xd8\x76\x28\x7d\xcd\x0c\x44\xfa\x40\xd1\xe7\x56\xb4\x69\xeb\x08\x8b\x94\xe3\x77\x94\xed\xd9\x25\x70\x19\x8e\x25\x5a\xe9\xdc\x82\x36\x99\x01\x4c\xe1\xc6\x9e\xd9\x72\x4a\x9b\x05\x27\x83\x69\xfe\x59\x7e\xa6\xe5\x83\x2a\xb7\x8e\x02\x27\xe7\xf0\x7f\x6d\x93\x75\x62\x93\x56\x02\xf0\x9f\x3e\x7c\x5c\x23\xcb\x59\xc8\xd4\xb5\x63\x4f\x76\xc8\x39\x1e\x0d\xa2\xec\x74\xbd\x92\xcb\x2d\x50\xf4\x7e\xf6\x3a\xd5\x55\x09\x39\x0e\x06\x69\xab\xcc\x73\x0b\x35\x91\x08\x62\x47\x95\x1d\x59\xad\x4e\x5a\x9e\x3a\x25\xbf\xeb\xcc\x09\x5d\x80\x40\xcd\x3e\x34\x52\xf7\xe4\x51\xe9\x4c\x9f\x9e\x3d\x21\xfd\xd4\x69\xe0\xf8\xac\x59\x68\xc4\x60\x08\xfd\x24\xcd\xdf\xa2\x2c\xae\x7c\xca\xa9\xf8\xfd\xee\x57\x97\x1e\xc4\x8e\x8a\xe0\xf0\xee\xe1\xc3\xf5\x0b\x55\x89\x15\xdc\x32\xbf\x3c\xa9\xb1\xe8\x6b\x51\xa3\x1f\x5d\x37\xc8\x2a\x3f\xea\xe1\x73\x97\xdb\xe1\x92\x16\xc3\x53\x27\xd2\x85\xc9\x94\x49\x5d\x50\x63\x69\xd2\x21\xa7\x15\xdf\x0c\xec\xfb\x82\xd1\x3e\xfc\x55\xa5\xd6\x89\x0a\x49\x40\x35\xf4\x0b\x35\xcd\x23\xe4\x63\xe6\xd3\x86\x1c\x56\xe6\x9e\x5b\xc1\xef\xc5\xbc\x3b\x17\xdf\x3e\x7f\xb6\x52\x01\x7d\x62\x40\xd2\x1a\xce\x9c\x14\xd5\x14\x9b\xef\x6f\x57\xf8\x12\x25\x7e\xda\x3f\xf6\x70\x5f\xfa\xf0\x2d\x1f\x3b\x6f\xae\x1c\xd1\x57\x60\x10\x40\x87\xaf\x1e\x4c\xe2\x89\xad\x2a\x01\x66\x8a\xd7\x29\x06\xb7\x4e\x1d\x33\x52\x26\xbc\x9c\x5d\xbc\x2b\xf9\x78\x33\x26\x4d\x8e\xfe\x64\xc2\x6b\x43\x1c\x0d\x73\x19\xbd\xa2\x0d\xed\xb1\x76\xb3\x43\x1b\x9c\x4d\x9e\x9d\xd2\x96\xee\xa5\x5c\xca\xaa\x7c\x6b\x3b\x7b\x24\x7f\x1c\xd1\xd9\xe0\xcd\x80\xc8\xd6\xa3\x4b\xf2\xdb\x97\x30\xe2\x69\xf3\x8a\x5d\x8a\x90\x30\xe7\x7a\x2b\x1f\xfe\x3f\x46\xb7\x74\x94\x94\x3b\x7d\x88\x21\xe9\x1b\x1a\xe3\xd2\x42\xcc\xa7\x41\x2d\x86\xf7\x46\xaf\xc7\x3b\x2e\x9f\x0c\x51\x53\x79\x66\x65\x8b\xbf\x35\xc1\x0e\x78\xf4\xc0\xae\xed\x17\xeb\x5a\xf7\xac\x40\x2b\xf2\x84\x18\xc7\x94\x57\x38\x28\x7c\x91\x40\x8b\xa9\xf3\xce\x1d\xba\x2e\x00\x03\x9f\x6b\xa8\x7d\x77\x6b\xb6\xeb\x2c\x80\xb0\xc1\xab\xb6\x77\xfd\xbe\xc3\x38\x94\x8a\x9f\xdb\x2b\x8b\xd2\x12\x02\x72\x49\xee\xcd\xf3\x4a\x2c\x50\xb1\x37\xe3\x12\x77\x00\x7f\xa2\xd2\x68\xe4\x1e\x96\x91\xb8\x44\x1b\xd1\x7f\xfa\xcd\xa7\xb5\x52\xc9\x47\x7c\x81\xae\x64\xac\x6c\xf7\x99\x74\x54\x2e\x21\x46\x1d\x81\x38\x9a\xbe\x85\xa7\xa4\x7b\x50\x4d\x55\x74\x5d\x3b\x2a\x3d\xdc\x9e\x29\x6c\x85\xb2\xdf\x7b\x44\x33\xef\x07\x48\x1e\x72\x90\xdd\xf4\x89\x21\x2a\xe6\x6b\xb5\x9a\x51\xac\x33\xc5\x40\xfe\xca\x36\xde\xf6\x56\x70\x0d\x72\x50\x67\x5f\x0c\xe3\xd8\xbe\x35\x9c\x60\xf3\x48\xb1\xa4\x41\x60\xd5\x9a\xb3\x47\xf2\x62\xe2\xde\x9a\xc2\x2d\xc8\x38\x2b\x38\x2c\xe0\x6e\xc7\x04\x30\x38\x6e\x1d\x96\x9c\xde\xa0\xda\xd4\x3b\xaa\x67\x65\xf6\xe9\x75\x3a\xf2\xc4\xb0\x20\x51\x8a\xe9\x6f\x6f\x76\xdb\x1c\x95\xda\x02\xf8\x6a\xee\x5f\xf9\x0d\x5f\xbf\x4f\x36\xcf\x32\xf9\x49\x2b\x12\xa8\x91\xe7\xeb\x9f\x27\xc4\x6f\x5d\x16\x5f\xd7\xe8\x7b\xbe\xf4\x98\xf2\xf3\x03\xe6\x32\xe2\x71\x00\xd8\xa5\x17\xe4\xc7\xae\x82\xad\xa3\x8c\x53\x13\x5e\x4a\x3f\xbb\x6e\xcc\x3c\xdc\x04\x90\x56\xd4\x64\x7c\xb2\x4b\xf0\x83\x26\x4c\x9d\x0c\x16\x8e\xff\xb1\x4b\xb3\x2f\x8d\xf7\x09\x0a\xa9\x20\x5b\xd3\x52\x1d\x32\x6b\xc4\x21\x7c\x40\x1c\xef\x36\x33\xcf\xbf\xa2\x2d\xfe\x3c\x1b\x39\xa6\x60\x18\x2c\x59\xd4\x9b\x7f\x78\x6f\x8b\x15\x56\x74\x0c\x78\xfe\xfd\xde\x50\x09\x36\xec\xa6\xa0\x73\x21\x0b\xb5\x4e\x47\xb8\x4d\xf4\x58\xa4\x94\xf4\xfd\xd9\x4f\xce\x95\x0f\xc8\xa1\x8e\x17\xe5\x7a\xe8\x77\xb6\x3e\x92\x0e\xc3\x0e\x5a\x4d\xfa\x10\x76\xc9\xec\x58\x23\xfa\x22\x42\x1d\x21\x47\x1b\x1e\x79\x47\xce\xc4\x2a\xdc\x8c\x35\xfe\x18\xd3\x35\x3e\x0f\x5d\x8d\x1a\x28\x25\x80\x3b\x63\x9e\x32\x50\xe3\x2a\x60\xf1\x5f\xbd\xa0\x19\x9f\x78\xc4\x31\xb0\x50\xeb\x7e\x71\x87\xc6\x6b\xf5\x31\x13\xd5\x47\x4c\xdc\xcb\xde\xb1\x5b\x46\x5c\x27\x28\xf1\x91\x82\x3d\x27\x7d\x29\x27\x4f\xe7\x8c\xba\xcf\xad\xbf\x42\xa9\xf5\xc1\x20\xd9\xed\xd6\xc7\xcb\x2e\xa3\x65\xc2\x87\xd3\x7c\x2d\x79\xd7\x36\xd5\x59\x12\xfa\x16\xae\x61\x7c\xc9\xf5\xda\xc6\xc7\x22\x80\xec\x91\x73\xe7\x99\xd2\xf1\x61\xf2\x87\xe1\x60\x65\x8f\xca\x17\x1a\x30\xc3\x0a\xa4\x61\x4c\xf8\xe0\xd8\xf4\x05\x31\x91\x40\x73\xe5\xae\x79\x35\xde\x6a\x62\xb0\xb2\x97\xcf\x6f\xd5\x83\x7f\xa3\x05\x54\x1e\x52\xe6\xfb\xe7\xf8\x3f\xbf\x0f\x33\x93\xa4\xb2\xcf\xc5\x95\xca\x65\xf2\x59\x50\xa9\xd8\xbc\x28\x18\x70\x30\x51\xaa\x5e\x05\x7f\x90\x7f\x54\x66\xb1\x6a\x80\x6c\x94\x12\xf0\xbe\xf5\x05\x7d\x47\x08\x90\x76\x9f\x42\x2c\x13\xef\xea\xf3\x47\x75\xd9\xd9\xa6\x1d\xd4\xc4\x3d\xd9\xa1\x49\x2f\x31\x6c\x63\x70\x91\x85\xac\xd0\xee\xe8\x46\x5d\x33\xa7\x88\x6c\x72\xd7\x4e\x5d\x30\xc9\xe4\xcb\x81\x28\xaf\x5f\xda\x3f\xa5\x90\x4a\x6d\xe2\x00\x1e\x20\xfb\xc3\x0b\x7c\x3b\x73\x07\xad\xd5\xa8\xd3\xe0\x54\x3b\xf1\xb8\x0a\x4e\xba\xc6\x6a\x10\xa7\xcc\x70\x33\xcd\xba\xce\xfe\xfc\xe4\xb5\xda\x93\xaf\xfa\xb4\x46\xfa\x04\x84\x7f\xb7\x43\x9b\x0d\x80\x7f\xa8\x20\xc4\xe5\xee\x3c\xd0\xa1\x74\x83\x9e\x61\x35\x88\x0f\xd6\x4d\x3b\xb6\xcb\xd6\xb3\x33\x6d\xcf\xda\x36\x2e\x1d\x56\x9a\xb8\x96\x98\xb3\x42\x4d\x50\x5b\xac\xc8\x98\x80\xbf\x00\x24\x85\x6d\xaf\x08\x8b\x1d\x5c\x41\xbc\x56\xbe\x47\xf1\x1f\xaf\x30\xda\x10\xeb\xed\x61\x13\xaf\x52\xeb\x6f\xcf\x27\x5e\x4a\x09\x62\x83\xcf\x83\x04\x38\xd6\x3a\x98\x23\x60\x9e\x5b\xa7\xed\x71\x88\xcf\x1f\x5b\x31\x1c\x7b\x34\x7d\x99\x2d\xcc\xea\x9a\xe3\x60\xe6\xbe\x67\x74\x87\x22\x3b\x21\x3f\xe7\x7e\x38\xbb\x23\x35\x23\xaa\x71\xf2\x70\x6f\xee\x42\x96\x57\x63\xb7\xb3\x12\x0d\x54\x45\xfb\xcf\xba\x12\xf7\x5d\x47\x92\xd2\xb5\xba\x15\xd1\xd4\xd2\x28\x66\x2e\x3e\xaf\x9b\xde\xf8\xd6\x44\xb1\x05\x6b\x3e\x2a\xab\x7c\x5a\x41\x0e\xad\x17\x8a\xe1\xff\x7e\x44\x82\x98\x15\x9f\xc4\xbf\xbe\xa0\x99\x5c\x20\xbf\x1e\x75\xcb\xd2\x02\x70\xe7\x5e\xcd\x92\x81\xf2\xdd\x95\x5e\x1d\x5f\xb6\x5e\xf1\x57\x89\xaa\xad\x1a\xd8\x73\x85\x8b\x76\x4b\xb6\x60\x57\x01\xf6\x6d\xc3\x93\x7c\x6a\x91\x96\x6d\x68\xf6\xd5\x97\xc5\x44\x28\xa1\xd7\x8e\xda\x9c\x7c\xf6\x12\x52\xe6\x04\xd9\x2f\x1e\x4f\x87\xc7\xd5\xa4\xc9\x75\x33\xe5\x3d\xf8\xb3\xab\x8d\x03\x2a\xa8\x4f\x6d\xae\xcf\x76\x29\x82\x0b\x86\x45\xa9\x1d\x23\x9a\xa2\x97\xf8\x85\xd1\x32\x79\x13\xc7\xf3\x89\x1f\x24\x83\xec\xb7\x8f\x76\x28\xfa\x4d\x0e\x30\xdf\xe1\x2f\x3e\x23\x3b\x02\x93\xc8\xc3\x19\x16\x9f\x4a\x77\xd0\x01\x2e\xa3\xd6\x57\x9c\xed\x38\x24\x7b\x01\x9f\x32\x30\x8a\x88\x1e\xdf\x33\xe7\xe4\x67\xf1\xad\x80\x79\x26\x6a\xc6\xbb\xce\xf7\xbf\xa4\xf6\x0f\xb8\x2c\x44\x49\xf2\x9f\x3d\xab\xec\x4c\xa8\x63\x72\x7a\xee\x9f\x2f\xca\xce\x44\x4a\x38\x16\x8a\xe1\x9f\x34\x7a\xbe\x4b\x6d\xed\x2e\x4c\x9d\x37\x54\x0b\x19\x8c\xcf\x59\xc3\xcf\xbe\xa3\x51\x35\x84\x03\x7e\xe6\x3f\xda\xa4\x3f\x83\x61\x45\x9d\x0c\xf6\x2d\xf5\xca\x9e\xe7\x05\x61\x8d\x78\x06\x75\xa2\x28\x09\x32\xb9\xfb\x65\x06\xf5\x2d\x0a\xf3\x8e\x4c\xf8\xa4\x4e\x95\xe2\xbc\x3a\x48\x05\x54\xb3\x87\xe5\xa8\x71\xb9\x8b\xfb\xd9\x51\xdd\xd4\xba\x4c\x59\x0d\xd6\x54\xfc\x2a\x5f\xbd\x4d\xc7\x1b\xc5\xde\x7b\x39\x43\x51\xcf\xb5\x30\x48\x8a\xe5\x17\xcf\xd7\xfa\x05\xee\x12\xc1\xc7\x8d\xe3\x3b\x86\x28\x07\x87\xc7\xa2\xe8\x43\xfc\xe4\x9c\x94\x97\x33\x09\x83\xf9\x4a\xcb\x4d\xf8\xd6\x7a\x19\xfb\x70\x8f\xcb\x41\x89\xbd\xd9\xf2\xf9\x6b\xf4\x58\x55\x8a\x4a\xb2\x54\x02\xc8\x2c\xbf\xa0\x18\x9b\x0b\x54\x51\xff\x13\x1a\xcd\xc7\x22\x2c\xba\x63\x09\x9c\xf2\xec\x06\x69\x53\x6f\x51\xcf\x25\x46\x8b\xe2\x52\x6e\xe3\x0c\xb9\xef\xa9\x61\x1f\xd9\x85\x1a\xb5\x05\x06\x24\xf7\xd3\xfd\x57\x69\x05\x4b\x94\x27\x13\xf7\x98\xcc\x91\xf3\x72\x2c\x61\x11\x61\x09\xf7\xa1\x31\x1d\xf1\x7f\x7f\xa3\x5a\xc2\xe6\x26\x3c\xaa\x61\x3f\x03\x10\xa5\xe5\x1a\x1c\xbb\x35\xde\xa5\x1b\xd4\x5c\x41\x17\xfa\xf1\xce\xab\xb4\xfa\x98\x61\xc4\x6a\x89\xd2\xcc\x25\xa1\xfe\x86\xbd\x98\x69\xb4\xad\x3c\x2c\x4d\x18\x5b\x74\x03\xdc\xad\x42\x31\xcc\x2f\xff\x9b\xe4\xfa\x96\x61\x41\xf6\xcd\x33\xca\xc6\xb1\x12\x75\x6a\x10\x86\x1f\x7f\x49\x93\x12\x6b\x32\x53\xdd\x32\x67\x5f\x7e\x3e\x7d\x7d\x1c\xda\x00\x67\xb0\xdc\x84\xdb\x84\x19\x17\x62\x04\x70\x42\x3a\xdc\xed\xf8\x72\x79\x9b\x2b\x01\x66\x8c\xd8\x36\x54\x13\x99\x6b\xfb\x6b\x9b\x0f\x0b\x35\xc4\x59\x3f\x22\x69\x14\x08\x94\x60\x53\xbd\xcd\xf9\x4d\x8a\xfd\x00\xec\x5a\xe0\x86\x5d\xb9\x5f\xeb\xad\xb1\x03\x50\x41\x0e\xa7\xf8\x48\x49\x71\x4b\x0b\x54\x9d\xce\x49\xc3\x5b\x82\xa8\xc0\x93\x86\x47\xf6\x24\x59\xc2\x24\x00\x7e\x69\x66\x5b\xc0\xed\x52\x53\x2a\x73\x93\xe6\x99\xeb\x53\x13\x35\x05\x2f\x2a\x4f\x9e\x94\x87\x0c\x00\xf3\x85\x62\xf8\x07\xe5\xe6\x9a\x18\x90\x98\xd9\xfe\x9a\xcd\x72\x0d\x39\x66\x02\xa9\xcd\x7d\x5c\x4a\x7b\x63\xdc\xba\x52\xfe\xe5\x83\x9a\xb0\x70\x41\xb4\xd6\x5f\xdc\x35\x38\xb5\xf2\xc4\xa0\x92\x98\xf9\x63\xbb\xaa\x06\xc4\x18\x9f\x01\x65\x96\x9e\x6d\x13\xb5\x0d\x2a\x95\xa0\x97\xf9\xc3\x83\x0a\xeb\x01\x74\x12\xf9\x7c\x39\xb3\xd4\x19\xa1\x07\x36\x64\xf8\x54\x54\xa8\x6f\xb5\xb7\x89\x6b\x6b\x9b\xa2\x48\xfa\xd2\x00\xde\xa1\x4f\x2f\x80\xf7\xc2\xe5\x37\x8b\x16\xdc\xa2\x2e\xdc\xbb\x5b\x14\x15\x76\x4f\x6a\x4a\x7f\xea\xd5\x41\xca\x3c\xc3\xe6\x66\x3f\xd9\xef\xaf\x54\xed\xbb\x5d\x81\x49\xce\xbc\x6f\x94\xf2\x69\x85\x68\x62\x54\x50\xbd\x7f\xb7\x26\x8c\x64\x61\x4f\x28\x87\x8c\xdc\xa8\x9b\x0a\xfb\x05\x37\x70\xb8\xe4\x38\x87\xdc\x2e\x35\xb9\x27\xdb\xc7\x70\x15\xc1\xe6\xbf\x14\xb0\x78\xe5\xf6\xfa\x0e\x95\x49\xc5\x4a\x5c\x8f\xeb\x85\x93\xfc\xcb\xf9\xc4\xe6\xd9\xf7\xfc\xc4\xe4\x44\x39\x50\xa4\x5f\x3e\x57\x3b\x32\x8c\x52\x37\x46\xb9\xff\x8e\x25\x8c\x3d\xc2\xb8\x18\xd6\x6a\x6d\x0e\x04\xa6\xfd\x09\x20\xf6\x92\x93\x83\xe2\x37\xec\x78\xae\xcd\xad\x48\xf3\x0b\xf6\x5e\xad\x95\x53\xab\x11\x0b\xbc\x94\x42\xfb\xbe\xba\x26\x75\x87\x31\x1f\xe2\x64\x46\x96\xd2\x7f\x13\x78\xa2\xc9\xcb\xf6\x17\x0c\x9b\x0a\x48\x56\x15\xc3\x31\xed\x1c\xa4\xf1\x51\x10\x6b\x90\xd5\x0e\x1d\xab\x89\xd7\x32\xec\xf9\x36\x50\x4d\xe1\x6c\xde\x78\x5a\xa7\x43\xd0\xc0\x8b\x1a\x7e\x48\x56\xe7\x0f\x6b\x23\x1c\x3b\xf6\xd8\xe4\x44\xb8\xaf\x5d\x9f\xc0\x54\x3c\x9c\xe8\x54\xae\x7e\x5b\x90\xdd\xa8\x51\xe5\x85\x76\xf6\x83\xfb\xf9\xc7\x5b\x8a\x59\xb7\x6a\x17\x30\x52\xd3\x48\x2f\xd3\x80\xf9\x56\xc1\x46\x2c\xc9\x98\xbd\xb9\x05\x07\x64\x69\xef\x97\x2a\xad\xf3\x9f\x87\xd3\x94\xb6\x12\xb5\x49\x5d\xe0\x95\x34\x59\xb9\xfe\xca\x40\x39\x60\x15\x5e\x3f\xfd\xdf\x5b\xae\xd2\x9b\x41\x5f\xc9\x81\xd9\xab\x5f\xd5\xc4\x5c\x02\x16\xa3\xec\x37\x3d\x36\x28\x35\xf5\x07\xb5\xc1\xcf\xef\xd7\x92\x09\xb8\x19\xc1\xe4\x68\xec\xb1\xf4\x49\xb7\x49\x94\xa8\x91\x49\xa3\xe6\x8a\x7f\x5b\xf6\xae\xe4\x3b\x74\xc1\x35\xdd\xa1\x21\x77\x5d\xea\x79\xa4\x64\x37\x45\x78\xf1\x5e\x1a\x22\x4a\xcd\xb2\x6f\x45\x61\x83\x17\x73\xf9\x7a\x9b\xee\x2d\x17\xcb\x51\x9d\xdf\xd6\x82\x0f\xb1\xc9\xea\xd8\x23\xe1\xc0\xa3\xad\x98\x1c\xfe\x9b\x6e\xee\xd0\x0b\xa9\x1a\x35\x18\xf2\x63\x31\xa3\xaf\x5e\xbc\x5c\xa2\x62\xa2\x8b\x3d\xf3\x05\xde\xb5\xce\xc2\xd8\xb7\x68\x3d\x85\x5a\x9a\x7e\x9b\xc6\x97\x03\x23\x1a\x1e\xaf\xed\x01\x3c\xb5\x2d\xc6\x4d\x87\xda\x7d\x48\xc1\xfc\xe3\x86\x16\x0b\x24\x52\x15\xba\xb5\xd9\xfb\xfb\x29\xda\x61\x35\x50\x5b\xe7\x71\x6c\xef\x28\xfd\x02\xdb\xc4\x20\xa2\x1c\xcd\x6d\x5e\x2a\x73\x5b\x83\x38\x58\xa0\xc9\x36\x1e\x4a\xa0\x3e\x0c\xa8\xe5\xe9\x24\x3b\xad\x4d\xca\xd6\x54\x89\x6d\xb7\xe6\x85\x79\xf5\x8e\xb8\xda\xc3\x8c\xd1\x0a\x12\xf4\xcc\xdc\x1f\x27\x8d\x48\x08\xc0\x2d\xbe\x0c\x99\xad\x3b\x25\x50\x86\xba\x31\xfa\x3e\x7a\x3a\x4b\xc6\x8e\xd0\xbb\x56\x82\x63\x29\x93\xec\xcf\x5c\xde\x31\xa3\x12\xa3\x28\x7a\x09\x3f\x9a\x37\x44\x19\xf2\xfb\x0d\x8c\x41\xf5\x29\xf3\xc9\xe5\xe9\xb3\x18\xcb\x77\x51\x96\xb0\xa1\x3e\x3f\x5b\x35\x7c\x34\xaa\x5c\x32\x66\xa6\xad\x1b\xde\x1b\x2c\x71\x6b\xcc\xb7\x0b\x67\x1c\x4f\x84\x8a\x42\x31\x7c\x68\x82\xc6\x24\x05\x55\xb9\xf8\xb7\x64\xaa\x87\xe5\x37\x25\x26\x86\x35\x26\x00\x3e\xfe\xda\xd3\xa1\xce\xbf\x84\xf1\x43\xb1\x37\x7f\x9f\x66\x73\x8f\x1d\xdf\x0a\x3c\x82\xbc\x9a\xe0\xd5\xb8\x7c\xd2\xe8\x62\x16\x13\x4c\x41\x8f\xe4\x29\xcd\xff\x61\x26\xf7\x7f\x78\xba\x9f\xa6\x1e\x68\xd3\x3a\xaa\x12\xa4\x08\x34\x14\x3a\x35\xe7\x2c\x5c\x45\x48\x5f\x21\xe7\x67\x8d\x8b\x97\xf5\xe0\xb5\xf4\xda\x2d\x1a\x92\xbc\x22\x7c\x3b\x83\x77\x86\xaa\xb0\x19\x6c\x63\x16\xdb\x9c\xcf\x71\xf4\x35\x29\xa5\x31\x8e\x36\xf7\x93\xb7\xfb\x72\x21\x13\xa0\xd4\xbb\xda\xb5\xc1\x12\xc8\x19\x0a\x81\x84\x1f\x2d\xbf\x52\xab\x22\xc5\x5f\xcc\x9f\x71\x8d\x16\x91\x6c\x1b\x5b\xa8\x56\xc3\x4c\xc0\xbc\xa3\x36\xb2\x61\x69\xd2\xba\x1e\xaa\x0a\x05\xa4\xf8\x3e\x37\x35\xb0\x0d\x34\x8f\x31\xa0\xe4\xaf\x7b\x5b\xf4\x38\x2a\x0c\x25\x7a\xf1\xd9\x23\x87\xb5\xcf\xee\xf8\x16\x43\x3d\x82\x8c\xf2\xa9\x43\xfc\xb1\x5a\x81\x0d\x95\xe0\x68\x65\x35\x1c\xf8\x16\x02\xcb\x8e\xff\x13\xa6\xad\xad\x4d\xb5\x5d\xff\xdd\x6b\x57\xb7\xa4\x6e\x64\x0a\x7d\x32\xf1\x1d\x8f\x3d\x98\x94\x77\xf5\x3e\x88\x8d\xff\xf4\x52\xca\x6f\x03\x17\x02\x48\xd1\xb7\x3d\x26\x77\x37\x36\xa0\x4d\xf3\xf8\x65\x78\x4b\x36\x76\x0a\x33\xf5\x02\xba\xed\xad\x18\x09\x6d\xd0\x5a\x39\xfa\x14\x9c\x4a\x91\x1d\x75\xb3\x62\x00\x48\x6d\xbd\xf2\xee\xcd\x7c\x61\x8a\xee\x48\xce\x65\x80\x79\xb9\xf2\x25\x05\x54\x35\x79\xf2\x74\xd0\xe0\x7f\x4c\xf6\x7b\x89\xb2\xdb\x39\xf9\x9f\xc5\x2c\xbd\x57\xb4\xba\x0c\x55\xb1\xd8\xb7\xe5\x7e\xdb\x2f\xfd\xda\xea\x51\x07\x51\x11\xcc\xc6\xa8\xad\xe2\xaa\x4a\x7c\xf9\x1c\x55\x65\x3e\xb6\x6d\x52\xc1\x02\x0d\x9f\x97\x0a\x07\x25\x55\xae\x32\x73\xcd\xc3\x8a\xe1\x23\x26\xdd\x44\x1d\xbe\xcf\xd1\x50\x3b\x36\x2a\x35\x9d\x2a\x4d\x91\x1f\xc3\xdb\x57\x28\xda\xbd\x94\xfa\x0e\xe5\x0d\xad\xf1\x80\x76\xe5\x38\x84\x25\x1c\x30\x4e\x25\x19\x06\x9e\x1f\x35\x1c\x6e\xec\xba\x97\x79\xf0\x24\x0f\x18\xb3\x10\x53\xf5\xc7\xf7\x6b\x4c\xa4\x12\x49\x43\xa5\x33\xbf\x78\x50\x79\xec\x93\xa6\x81\x02\xc1\x93\x0a\xfa\x31\xfa\xaf\x81\xfe\x24\x16\xae\x37\xbd\x36\x40\xd4\x41\xd1\x87\xfa\xda\x69\x79\x8e\x11\xab\x41\xbe\xc9\x9e\x7b\x54\xc2\xf9\x0b\x20\xe4\x69\x6b\x78\x1a\x4e\x11\xe6\xbd\xd5\xb8\xc7\x3f\xa4\x9d\x8a\x5a\x8d\xf8\x3e\xc6\x7d\xcd\xb4\xb2\xcf\xaf\x13\xce\x58\x93\xe1\xa0\x4e\x7d\x52\x85\x04\x04\x35\x88\x31\x5f\x5b\x2f\xa7\x32\x65\x86\x0d\x0b\xfb\xbe\xba\x3e\x19\x33\x2e\xf9\x7c\x53\xa7\x15\x0a\xc5\xf0\x7b\xdb\xd2\xe5\x57\xc0\x90\xdd\xa7\xce\x48\xee\xc2\x05\x0d\x54\xc6\xd0\xaa\x78\xee\x1f\x05\xd9\xa9\x07\x07\x2b\xc3\x06\xc6\xb8\x48\x44\xee\xea\xeb\x5b\xe0\xf8\x1c\x68\x28\x1c\xd4\xb2\xcb\xb7\x4b\x20\xb6\x70\xb6\x55\x02\xd3\x97\x42\x09\xa1\x89\x5e\x88\x83\x99\x67\x91\x78\xf0\x9c\xad\x6c\x6e\x57\xe8\xac\x33\x66\xc2\x4b\xd8\xb8\xff\x7a\x2d\xdc\x3b\xb8\x0c\x76\xea\xe2\xf3\xa6\xbf\x58\x5b\x7f\x79\x0c\xa6\x4e\x82\xc5\xc9\xaf\xb4\x2a\x2a\x8a\xfd\x5c\xc7\x61\xd2\x78\x55\xb6\x19\x3b\x88\x5b\xed\xe4\xb6\x77\xa6\x0f\x7e\xa3\xdb\x46\xad\x35\x6c\xf6\x67\x2b\xf9\x8a\x7b\x6e\xd4\x32\x56\x90\xaa\x42\xfd\xd6\x78\x05\x46\x41\xcc\x84\x9a\x79\x70\xfd\x68\xd9\xb5\x23\xa7\x82\x5b\xe4\xe5\xf2\xab\x8f\xe8\x32\x03\xb6\xcd\xa7\x2a\x03\x7a\x14\xa4\x1f\x8d\xda\x39\x0e\x32\x7e\xf2\xc2\x65\xa2\x2e\x80\x2a\xe3\x8c\x06\x5a\x35\x6c\x8c\x9c\xc4\x2f\x76\xe2\xea\x41\xca\x27\x88\x8a\xab\xe8\x29\xaf\x78\x20\x9d\x7b\x1c\xd4\x8d\x18\x41\x4e\x4a\x5b\x3b\xfb\xc3\x6c\xfa\x4a\x4f\x8b\x41\x43\xc3\xae\x57\x98\x41\xd8\xe3\xb3\x88\xfc\xda\xe3\x6d\x22\xc2\x5a\x98\x3b\x54\xe7\x1f\x52\xc0\x8a\xd8\x8b\x4e\x0e\x77\xb5\x1f\xba\x50\xe9\x60\x51\x6c\x3a\x96\x1b\xba\xe9\x72\xa9\xc4\x07\x9a\xbe\x1b\x06\x26\x6d\x0e\x6c\xe7\xaf\xd7\x3c\x05\x2b\x51\x71\xe2\x90\xd5\x49\xbf\x9a\xdb\xa0\x88\x0c\x9a\x38\x3a\x76\xd1\x9f\xfe\xe6\xd8\x48\x65\xea\xca\xab\x78\xe5\x6a\xdd\xf6\xb0\x8e\xf8\xf1\x6d\x92\x28\x31\x9c\x7d\x55\x57\x65\x89\xea\xc9\xc0\xf5\xa5\x28\xcf\xae\x1d\x3c\x8c\x95\x88\x6d\x13\xea\x20\xc2\xe7\x83\xbf\x1c\xa0\xd7\xed\x75\x6c\x53\x37\x59\x55\x3c\xbe\xab\x05\x39\x02\xfb\xdc\xf0\x80\xe6\xfd\x11\x4b\x3f\xc6\xf6\xd5\x9f\x19\xae\xf8\xfd\x52\xc7\x27\x4c\x1d\xc6\xe7\xbb\x34\x18\x0d\x65\xa6\xd7\x07\x8c\x66\xe6\x31\x85\x8b\x4e\x3c\x83\xb8\x36\xd7\x04\xc8\x84\xdb\x64\x72\x6d\xe0\x52\xa1\x18\xbe\xf2\xb2\x9c\xda\x4c\x99\x38\x1d\x22\xee\xbf\xad\x96\x65\x62\x0d\x23\xc7\x8c\x8d\x00\x3f\xd2\xc3\x93\xed\x7d\xa0\xc7\x28\x61\x73\x25\x85\xbe\x15\x25\x51\xdf\x17\x9a\x2c\xdf\xd3\x46\x4c\x82\x20\x05\xd9\x30\x3c\xa2\x31\x66\x4d\xc2\x25\x54\x05\xfa\x61\xcd\x75\x4a\xd7\xe1\x60\x56\xc1\x20\x77\x1b\x1e\x39\x96\x0e\x8f\x4d\xe4\x54\x31\xf6\x6e\xb8\xb1\x75\x80\xb4\x5e\xfd\x58\x26\x2c\x8f\xe1\xfd\x7d\xa5\xae\xd5\xa7\x2e\x65\xc8\x14\x4c\x0a\xfe\x0a\xfb\xb9\x4a\x22\x9a\x36\xb5\x50\x0c\x3f\xcd\x41\xa7\x85\xd9\xb8\x46\x6d\xee\x61\xa8\x87\x92\xa5\xe3\x75\x7d\xdf\x9a\x8b\x48\x25\xb6\xb5\xbd\xfd\xe8\x35\xb2\xfa\xa7\xd4\x8b\x4e\x4d\xab\xe5\xff\x34\x21\x86\x6b\x46\xdd\x2f\xf7\x61\xba\x62\x76\xfa\xc6\x12\x22\xb2\xd5\x47\x27\x68\xf6\x7b\xc8\xa9\x72\x56\x42\xd7\xcb\x57\xc7\x13\xd6\xf8\x00\xb5\x3c\x9f\x49\xc2\x7b\x64\xea\x84\x19\x1c\x21\xf7\xe6\x7d\x7c\x4f\x7c\x67\x09\x33\x4f\x71\x66\xea\xcd\x7b\x5d\x3a\x4a\x49\x48\x62\xf2\x8a\x32\xfb\x83\x73\xbc\x49\xf2\x9a\x9e\x8f\xa3\x2b\x4e\xd6\xa4\x73\xac\x18\x0e\x47\x91\xed\xec\xcb\x62\xb4\x62\x11\x5f\xb1\x54\xdf\x70\x44\x83\x44\x06\x50\x33\x47\xd7\xe6\x87\x4f\x0f\x12\x65\x51\xcd\xc5\xd1\x85\x01\x54\x90\xbf\x61\x80\x88\x7f\x10\x43\x36\xec\x51\x98\x93\x18\x9a\xf6\xa4\xba\x99\xb3\x5b\x59\x9d\x79\x1e\x8a\x2a\xe9\xa8\x58\xff\xc1\x0b\x4a\x20\x2b\x97\x63\x2b\xa6\xec\x7b\x1b\x14\x49\x53\x4c\x18\xc8\x02\x65\x56\xf5\x4b\xb7\x3b\x1f\x17\xc0\xb4\x87\x37\xf0\x2f\xcf\x9b\x5c\xe8\x71\xaf\x6b\xe1\x82\xba\xd8\x27\x20\x2b\xcf\x77\xbe\x6d\xae\x2e\x65\x50\x26\x0e\x81\x39\xbe\xd8\xa2\xec\x3e\xab\xf4\xc9\xad\x36\x83\x7b\x16\x2a\x28\x6d\x6a\x04\x62\x1d\x1a\x0e\x7c\x58\x59\x50\xa9\x96\x11\x6f\xe9\x12\x76\x85\x32\x85\x5b\xc1\x0b\xba\x63\x1b\xa5\xc1\x34\xb5\xd4\x2e\x2c\xf7\xf2\xa2\xa4\xec\x2c\x23\x5b\xe5\x9e\x68\xfa\x3d\x35\x54\x26\x48\x80\x37\xc6\xac\x48\x9f\x18\x41\x15\x63\xf1\x3c\x70\xce\x4e\x6d\xc9\x8e\x0d\xcb\xb3\xf9\xa7\x91\xa3\xbc\x93\xfb\x94\xf9\x38\x46\x1e\xef\x7f\xbf\x79\x56\x5d\xd0\xe1\x94\x8b\xe4\xed\x8e\x62\x25\x8c\x88\x27\xbe\x7e\xf6\x9c\x10\xf9\xa6\x4e\x22\xce\xf7\xbf\x34\xc5\xe3\x0a\x5a\x4d\xa8\x57\x43\x8e\x8b\x3c\xc5\xf6\x29\x73\xed\x32\xe1\xd9\x87\x6c\x7b\x16\x45\x0c\xfc\x7a\x73\x37\x98\xf2\x4c\xf9\xc8\xae\xc6\x62\x37\xf9\x19\xfb\xfa\x98\x8a\xc4\x0c\xad\xcc\x8e\x65\xaa\x9b\x18\x62\x0e\x9f\x5e\x67\x87\xdd\x3f\xba\xe5\x5f\x45\xb5\xee\xea\x84\x7c\x99\x7d\xee\xc2\x07\x1b\x2d\x7b\x37\x0f\xf7\x31\x97\xfb\x83\x26\x26\xe0\xda\xc8\xe1\x56\xac\x59\xdd\xaf\xd8\xf3\xa9\xeb\x0a\xb1\xb5\xfc\xed\xdd\xf2\xf0\xe0\x3a\x66\x4d\x1a\x05\xcc\xd0\x7e\x54\x43\xf8\x10\x1b\xd4\x72\x2b\x48\x0c\xd9\xf2\xfd\xde\x88\xa1\x48\x42\x27\x14\xe6\x0d\x6f\x2e\x4b\x33\x9c\x1a\x51\x11\xd4\x17\x3e\x62\xc1\x6e\x4d\x41\x88\x6f\x0c\x61\x1a\xcc\x1b\x83\x9f\xcc\xd5\x94\xc0\x2c\x61\x04\x3f\xf9\x35\x31\x26\x26\x35\xcc\x71\xf3\x80\x28\x3b\x9e\x94\x1c\x81\x0f\xa5\xc2\xff\xbe\x31\x59\x81\x39\x2a\x21\x20\xb3\xaf\x53\x68\x2b\x31\x82\xcb\xd1\xaf\x1a\xb8\x90\x1f\x95\x39\x0c\x3b\x86\x55\xe3\xd0\xf3\xd9\x4f\xa5\x9f\xe8\xf4\xa9\xd3\xe3\x01\xe3\x88\x57\xda\x14\xd1\x4d\xd8\xfb\x7e\xec\x8d\xbf\x61\x8d\x05\x57\x6d\x7b\x5d\x91\x96\xa0\xac\x81\x18\x57\x70\xfc\xf4\xc0\x51\x22\xc3\xb8\x81\xdf\x07\x30\x2f\xf3\x66\xbb\x3c\xf7\x81\xcb\xf8\xe1\x8e\x29\xbd\x9a\x67\x7a\x6c\xf1\x24\x3e\xe4\x9c\xf6\x74\x74\xed\xa6\xa5\x64\x58\xf0\xae\x86\xe9\x63\xb8\x0c\x73\x69\x3e\xb2\x8d\xbe\xcf\x9e\xbc\x22\x7e\x12\xe5\x8a\xf0\xf3\x07\x75\x2a\xba\xeb\x02\xe3\x97\xcf\x3c\x97\xef\x19\xa9\xb6\x93\x09\xd6\x56\x20\xa7\x06\xae\x55\x00\x14\x4c\xac\x1d\x9e\xdd\xa7\x2d\xcb\xfd\x98\x7f\xf7\xc5\xcd\x31\x85\x05\x71\xa9\xdd\xde\xec\xab\x5c\x19\xae\xb0\x98\x82\x8b\x88\xac\xd9\x5f\x9d\xc7\x4f\x22\x72\xdd\xe8\xfa\x23\x9b\x6f\xd4\xec\x8e\x6b\x92\x1f\x5e\xb2\x81\x6e\xd0\x8a\xa9\xcf\x7f\x66\x4d\x87\xfa\x11\x12\x71\xb9\xdc\x8d\x2f\x0f\x8e\x43\xa0\x52\xf7\xcc\xd4\x44\x90\x0d\x0b\x79\xdc\x0a\x1b\x5e\xc9\x2b\xcf\x26\x87\x90\x80\x65\xd1\x13\x97\xb4\x90\xec\x8d\xaa\x24\x86\x6e\x1c\x9f\x74\x82\xa5\x20\xaa\x90\x6e\x39\x3d\x58\x89\x73\xc4\xa9\xf2\xef\x6e\x4f\x19\x96\xfe\x94\x3e\x11\x26\x78\xe1\xe1\x37\x94\x02\x0f\xfc\xb2\xe7\xbe\x20\x7b\xd2\x0a\x66\x5c\xdc\xe4\x75\xe1\x5c\x39\xaf\x0f\x82\x44\x3f\xdd\xd1\x97\x00\xe0\xa3\xd8\x9b\x39\xf5\x38\xcf\x73\x9d\x33\x26\xcc\x9c\x3e\x03\x80\x30\xcb\xd2\x11\xc9\x27\xc8\x01\x73\x66\x1d\x2b\x99\xeb\xd2\xf8\xc8\x26\xad\xc4\x6d\xc7\x1d\xb7\x69\x14\x27\x8b\x80\xf9\x53\x74\x55\xf0\x75\xc3\x94\x0e\xb6\xce\x29\xaa\xe2\xc4\xb7\xbf\x21\x14\x3d\xf8\x6c\xfc\x6b\x8f\x0c\x4b\x0b\x7a\xfb\x4d\xee\xf6\x55\xec\xcd\x90\x1b\xe5\x7c\xd0\x22\x15\xab\xe0\x32\x62\xf0\x9a\xf6\x37\x73\xe4\x5e\x34\x80\x76\x65\xd0\x3b\x57\x2a\x42\xa5\x35\xe2\xc7\x63\xd2\xec\xcb\x1b\x74\x53\x0a\x83\x60\x3f\xf6\x1e\xc8\x0e\xdc\x31\x46\xbb\x63\x96\xe3\x51\xa1\xee\x10\x17\xf1\x7b\x5f\x50\x4a\x0b\x06\x64\xe5\x62\x6f\x76\x77\x1b\x7f\xb4\x77\x9a\x0d\xe8\xb1\xc2\x37\x4a\x1d\xd2\x62\x53\x91\x02\xcc\x8c\xe8\xd4\x3c\xae\xb0\xd8\x26\xe4\xfe\x6b\x93\x1e\x74\xb8\x8e\x42\xbc\x4f\xdb\xd9\x27\x09\x5f\xfe\x07\xcb\xce\xf1\xba\x6c\x2e\x62\x06\x0d\x80\x9a\x0c\xcf\xf9\x47\x2f\xc8\x16\xc1\x08\xa0\x03\xca\x2f\x54\xec\xc8\x7d\x4a\x6d\x6e\x81\x74\x42\x51\x71\x40\x04\xdc\x9a\x21\x23\x5e\xba\xf5\x4a\x47\xd5\x69\x53\x28\xe7\x5b\xb4\xba\x32\xd6\xed\x17\xb4\xb8\x4d\xf9\x36\xa5\xae\x84\xdf\x52\x59\x23\x7f\x18\x31\x15\x1f\x8c\x6c\xd7\x7a\xcd\x0b\x5a\x00\x6d\x8b\xe1\x77\xf6\x08\x2b\x68\x1c\x75\xdb\x50\x53\x7f\x64\xbb\xa6\x13\x07\xe5\x97\x18\xfd\x76\x6a\x1b\xac\xa8\x81\x2b\x53\x9b\x50\xd1\x1d\xcc\xd9\x3a\x44\x51\x01\xe2\xf2\x20\xd1\xbf\xbb\xf3\x29\x69\xd3\x19\xb4\x2e\xd6\xce\x68\xb8\x12\xe1\x8c\x93\x46\xa1\xe7\x0a\x9d\x5a\x54\x01\xb0\x60\x33\xd6\x3b\x79\x73\x9c\x5e\x74\x39\xa8\x12\x0b\xc1\xae\x39\x74\x55\x43\x1f\x6a\x02\xc8\x5b\xa4\xd1\x53\x96\x0c\x70\x31\x66\x23\x8a\x1b\x47\xcf\x6a\xff\xce\xc2\x8c\x42\x5b\xc5\xab\xb5\x5d\xfb\x87\xf5\x71\x78\xb8\x42\xeb\xbe\x03\x57\x2b\x51\x8a\xd1\xa0\x62\xb5\x54\xab\xde\xf5\xba\xfb\x58\xec\x9b\xf5\xf9\xc3\x83\xd4\x7a\x88\xfb\x2e\x65\x36\x1f\xe0\xe1\xfd\x1e\x5a\x5a\x4d\xe5\xf0\x22\xdc\x6e\x2b\xde\xf0\x41\x22\x9b\x3c\xe5\x01\xad\x77\xa0\x01\x33\xb8\x72\xce\xb7\xf6\xa7\xac\xe3\x40\x77\xd8\x1d\xa0\xe9\x76\x30\x44\x9c\x98\x9b\xf7\xd6\x13\xda\x25\xf7\x91\x8f\x05\x06\xa5\x18\x7e\xe6\x84\xec\xd0\x4b\x14\x24\x08\x68\xe0\x39\x5c\xdd\x2c\x6f\x6f\x6f\x11\xd9\xad\x30\x54\x8b\x15\x76\xf2\x5b\x14\xdd\x4a\x62\xdb\x54\x60\x14\x72\xc3\xf7\xca\xa2\x15\xf0\x14\x80\x53\xd8\x30\x45\xf8\x25\x5a\xb4\x21\xea\x34\xee\x07\xb9\x76\x8c\x8e\x1e\x63\x3e\x03\x8f\xdd\x58\x1b\xec\xaf\xef\xc9\x4b\xd2\x8d\x94\x99\x48\x66\xdb\x05\x79\x02\xcc\x06\x71\xcc\xd8\x14\x7f\xd7\xe6\x98\x02\xe3\x13\x86\x39\x6e\xe8\xde\x1d\xf2\xd5\x5a\xd4\xad\x12\xa7\x75\x75\xf8\x90\x16\x76\x2c\x54\x09\x64\x12\xcc\xfc\x47\xa8\xb7\x42\x8e\xc1\x57\x6f\x71\x69\x32\x5e\xc3\xc2\x59\xd8\x26\x06\x75\x7d\xb9\x54\x1f\x74\x58\x56\x13\x15\x86\xb1\x81\x55\x0f\xcc\x05\xc7\x52\x00\x89\xa8\x68\xf6\x60\xce\x7b\xe3\x2e\x39\x59\x9d\x1c\x25\xd8\xef\x1e\x4d\xfe\xc0\xb5\x48\xa1\x18\xfe\xf2\x6d\xdd\x94\x2d\x31\xac\x14\x1f\xee\xdc\xd9\x41\x49\x45\x95\xd8\x11\x7e\xfc\xcc\xe5\xa2\x99\x10\x34\xdd\x4c\x4f\x8f\x4e\x55\x47\x6e\xb2\x42\xcc\x7f\x60\x61\x52\x08\x08\xaf\x06\x77\x50\xea\xca\x40\x95\x1d\x3e\x25\x7a\x68\x8b\x11\x3e\x3a\xfe\x79\x5e\xb1\xff\x63\xd8\xf3\x38\x93\x22\xff\x81\xc1\x32\xa7\xfb\x02\x81\x98\xe9\xba\x90\x8e\x7e\x33\x26\x4e\x13\x3a\xdf\xd9\x3d\x59\x45\xfe\x0e\xdb\x60\x6a\x08\x0a\x01\x27\x2f\x57\x2a\xdd\xe8\x4f\xd6\x6d\xd6\xde\x16\xf2\x91\xe7\x33\xea\x5a\x31\x68\xe7\x2f\xef\x8d\x52\x46\x48\x5e\x8b\xa3\x77\x66\x9c\x66\x74\x57\x26\x0e\x2e\xf8\x81\x83\xe3\xfd\x7f\xee\x53\x13\xf5\xfd\x3b\x1c\xdf\x58\xdc\xe6\x2b\xfb\x14\x9f\x2d\xcc\x1c\xee\x00\x1a\xe7\xcf\xda\xc0\x76\x91\x99\x2b\x96\x2f\xdc\xb0\x33\xe1\xdc\x76\xd9\xb3\x70\x53\xf5\xde\xcc\xdc\xdd\xf2\x52\xe1\x3a\xc8\x46\xc1\xa8\xe2\xa9\xa4\xaf\x36\x19\x69\x89\x54\xef\xf4\x4b\x11\xc4\x7c\x5c\xe1\x42\x16\x0f\x2f\x52\xef\xae\x57\x25\xab\x2d\xc0\x9b\xbd\x7e\x9d\x26\x57\x18\x24\x38\xc8\x3b\xde\x48\xb2\x81\x6f\x58\x2d\x17\x67\xdd\xe9\x11\x7a\x26\x87\x86\x87\x13\x7b\x8f\x4b\x4d\x64\x23\x50\x9a\xee\xdc\xff\xb7\x46\x86\x40\xe2\x78\x31\x16\xf6\xeb\xa7\x75\x57\x74\x0e\x92\x10\xd7\x70\xec\xae\x61\xea\xe6\x99\x61\x94\xa8\x20\xe5\xff\x5e\xa8\x7a\x46\x91\x40\x00\x9b\xfe\xcd\x4e\xa4\x41\x69\xc3\x4e\xe9\x18\xae\xd2\x2a\x7f\x61\xe7\x1f\x43\x0d\x3e\xfa\x9e\x1e\x3e\x19\x8a\x5e\x15\x07\xc0\x78\x96\xce\x37\x05\x28\xa7\x77\x43\x77\x37\x04\xd0\x51\x4a\x84\xac\x4a\x4a\x57\x38\x41\x73\x79\x04\x50\x10\x89\xc1\x6a\xb9\xef\x3c\x3b\x5e\xbb\x7e\x8a\xc4\x8c\xab\x2a\xf8\x64\xee\x3a\x3a\x46\x19\xc2\xf9\x7c\x93\xa4\x17\xc1\xeb\x14\x27\xcb\x0a\xc3\x25\x07\xd7\x51\xa1\x18\x56\x5e\x1c\xa4\x40\x65\xa3\x67\x58\x28\x86\x1f\xbc\x8f\x77\x6d\x73\x88\x60\xca\xeb\x27\xea\xb2\x87\xd3\x65\x21\x0b\x3c\x6c\x7a\xe0\x4a\x2c\x07\x6c\x13\x3a\xb5\xa1\xfc\x34\xd1\xf4\x7f\x4f\x0c\x97\x3c\x8c\xb9\xb3\xce\x6f\xb7\xa7\x60\x6e\x1c\x11\x14\xfe\x72\x53\x8b\xc3\x88\x61\x07\x9e\x2a\x30\xfd\xdd\x17\x52\x8a\x77\x06\x97\x03\x1d\x21\x63\x53\x93\x47\x85\xfc\x45\x65\xeb\x01\x0a\x63\x60\x20\xfa\x79\xa5\x3d\x43\xe5\x32\x65\x66\xac\x5a\x77\xfe\x1d\xcd\x8b\xbe\x4e\x12\xcb\x92\x1b\xcf\x69\x9a\x7e\x88\xf9\x44\x28\xd6\x00\xc6\x25\xf3\x88\xa0\x5e\x75\x4d\x9c\x06\x46\x31\x8f\x3e\x21\x7f\xfd\x27\x94\xc2\xf9\xc5\x57\xae\x10\x97\x12\x06\xf5\xd1\x97\xfe\xf1\x42\x45\xca\xc8\x75\x11\x8b\xd9\xf7\xd7\x6c\x6f\x41\x54\x24\xc8\xb2\xf0\xd7\x47\xaf\xd3\xee\x1d\x33\x9a\xe5\xa0\xcf\xc9\x44\x7e\xb1\x06\x90\xa5\xcc\xc4\x2c\x91\xe0\xfc\x9f\x27\x92\x2a\xbd\xde\x54\xe7\x56\x3f\x7d\x59\x89\x16\xd4\x26\x46\x54\x41\x14\x8a\xe1\x65\x03\xae\x50\x12\x3d\x89\x1a\xb4\xf3\xab\xa5\x64\x26\x52\xe9\x0b\xbf\x14\xe2\xa4\x93\x67\x4e\x9f\x59\x28\x86\xf9\xf7\x14\x84\x39\xf2\x84\x1a\x7d\x31\xab\x39\x96\xa3\x46\x0d\x55\xe3\xa1\xde\x9f\xf6\xa6\xbf\x2a\xaa\x45\x05\x8b\x89\x6a\x7d\xd9\x9f\x8e\x59\x93\x64\x47\x03\x66\xb8\x5f\x2b\xa5\xdf\xab\x45\x7d\x6c\xc7\xa5\xcc\x00\x45\x13\x2a\xfa\x55\xe5\xf5\x97\x4b\xc7\x88\xe8\x5f\x2f\x69\x4b\x9e\x0d\xb6\x95\x00\x96\xb9\xe4\xbc\x6c\x5f\x35\xd5\x84\x67\x06\x0b\xac\x4b\x83\x38\x15\x3e\x79\xc9\xe3\x47\x92\x1f\x5c\x26\x95\x42\x31\x7c\x7f\x97\x66\x93\x47\x2a\x98\x81\xc0\x99\x50\x79\x7e\x72\x86\xd6\x50\xd2\xb8\x23\x2d\xf6\x66\x1e\xd9\xcc\x67\xdc\x06\x61\x46\x50\x8b\x3a\xa4\xe8\x3c\x42\x11\xb6\x7d\x98\x93\x02\x3c\xd4\xa8\x6f\x09\x6c\xe9\x97\x4f\xca\x93\x56\x46\x3e\xb2\x13\x6b\x1f\xfb\x90\xbc\x16\x37\xa9\x12\x6e\x59\xeb\x01\x7d\xc4\xeb\x32\x6a\x06\x5c\x9b\x10\x6a\xdf\x65\xeb\xf9\x67\x99\x45\x58\x8d\x38\x15\x0b\xd5\xe2\xde\xf6\xe7\x1a\x61\xa8\x64\x23\x2f\x11\x55\xce\x5f\xf1\x40\xf2\xf0\x3d\x0e\xaa\xea\x9e\xd0\xa2\x6a\x2e\xd4\xf8\xa6\x4d\x48\x57\xde\xc4\xb6\x05\xaf\xad\xfd\x9d\x0e\x65\xc5\x21\x1c\x35\xa2\xbf\xb8\x7f\x1b\x6f\x04\x13\x4b\x46\x8e\xaf\xca\xbe\x3d\x43\x47\xcb\x24\x0b\x93\xf0\xd9\xf3\xca\x84\xbd\xec\x63\x36\xf1\x5a\x0b\x82\xc3\x9f\x36\xf2\x22\x56\x21\x47\x46\x27\x37\xec\x5d\x0a\xbf\xc4\xc6\x4e\x61\xf2\x14\x19\xe8\x3b\xe7\xb4\x20\xa9\x7d\x50\x1b\xe8\xcd\x74\xcc\xd3\xf4\xb1\x1c\x87\x06\x8e\x91\xc8\x1f\x7e\x7e\x1f\x3f\x3c\xf7\xa8\x0a\x5f\xfb\xda\x95\xf7\x46\x7c\xab\x50\x0c\x7f\xbe\x59\xa9\xaa\x30\xf3\x02\x04\xe0\xa2\x63\x2f\x2a\x78\x14\x94\xf8\x3e\x7f\xf5\xc1\xa1\xca\x2e\xdc\xc7\xac\x4e\x30\x37\x5f\xcb\xae\x3b\x97\x54\x12\xdc\xb8\x46\x33\xe3\xb1\x75\x75\x54\xce\xad\x8e\xc7\x6e\xe6\xd9\xf4\x39\x2e\xd4\xa8\x43\x7c\xca\x12\x5d\xbb\xbf\x94\xae\x10\x8f\xce\x4a\xb4\xb9\xee\x2d\xa9\xee\x2f\x51\xd3\x0a\x04\x9e\xed\x3d\xba\x5e\x7b\x8f\x80\xe1\x65\x7b\x9e\xbd\x42\x49\x5a\xbc\xc7\xf9\x17\x0d\xa4\x04\x5f\xac\xc0\x70\x45\x69\xbe\xc3\x7b\x17\xab\xf6\x44\x04\x64\x7b\xa0\x9d\xcf\xad\x1e\xad\x9d\x83\x32\x8b\xee\x20\x8a\x95\x69\xc2\xeb\x57\x6b\xc7\x97\x51\xc7\xa0\x71\x87\x45\x2f\xa8\x09\xa6\x14\xb0\x12\x87\x5f\x5f\xf1\xae\x04\xd8\x94\x91\x11\x25\xd7\x77\x2f\xd1\x62\x35\x75\xe2\xea\x5c\x47\x63\x84\x3f\x3f\xc1\x33\x49\x74\x60\x21\x75\x9e\xdd\xa0\x89\xa6\x12\xd7\xa5\x7d\x10\x5e\x73\x4b\xbb\x24\x20\x16\xd9\xb8\x1b\x39\x66\xca\xea\xf1\xc7\x7b\x78\x24\x6e\x20\xbe\x1e\x1a\xb0\x5b\xb5\xc4\xb6\x2b\x51\x6d\xf0\x6a\xfd\xfd\xca\xf1\x71\xbb\x91\x8e\x54\xfa\x6a\x59\x1b\xfe\xc1\x2e\xd4\x4b\xaa\xe2\x25\x3b\xf5\x05\x8d\xd0\xe3\x8f\xd5\x74\x83\xc3\x52\x6b\x61\xea\x54\xa8\x49\x8f\xf1\x8b\xba\x08\xd9\x29\x52\xba\xf5\x6e\x2a\xd3\x57\x01\x59\x95\x7b\x59\xdb\xe1\x79\x80\xd6\x8c\xde\x19\x5f\x3e\xdf\xfa\x8a\x12\xe3\x40\x80\x46\x68\x1e\x6f\x59\xa4\x7d\xb2\x80\xf1\x4c\x1b\x5b\x15\xff\xe8\x29\xc9\xef\x8d\x31\xac\xc4\x80\xc0\xf4\xda\x2b\xfc\x23\xfa\xb4\xe1\x14\x6a\x18\xc7\xeb\x28\x4b\xf3\xf3\x31\x89\x67\x04\x51\xa4\x11\xaa\xcf\x5f\xba\x4f\xf7\xfc\x12\x4e\x36\xe1\x9d\x2d\x0e\xc2\x2e\x75\x62\x23\x95\xde\x4c\xff\xe7\xdb\x95\x42\xb7\xc4\x0d\x3d\xee\x6b\x97\xa9\x8d\xb7\x31\xe6\xce\x16\x02\x16\x74\x8e\x51\x1a\x01\xf3\xb0\x2d\x63\x06\x2b\x82\x4c\x51\xef\x15\x15\x5f\xcb\x4f\x0f\x52\x8a\xaf\xa6\x05\x79\xf2\x2a\x2d\x30\x95\x91\x41\x78\x82\xe0\x61\xfe\x69\x67\xb0\x32\x0c\x67\xdc\x43\x2d\x3c\x7e\x41\x75\xbd\x6e\x72\xde\x6d\x76\xd5\x11\xfe\xbc\xe6\x53\x17\xaf\x56\xda\x9e\x6d\x4f\xa5\x73\x31\x75\x61\x3e\x0f\x70\xcb\x11\xb7\xa9\xfc\x51\xdf\xa2\x8c\xac\x86\x3d\xf7\x42\xcd\x35\xac\x84\x49\xb7\x10\x5a\x50\x07\x4e\x1f\xbe\x51\x7f\xa2\x28\x6a\x05\x04\xd2\x6b\xfc\xf9\xf4\x0f\x21\xd4\xe0\x9c\x5e\x8d\x2f\x39\x61\x90\xa8\x76\x3c\x98\x46\x73\x00\xc0\x73\x5d\x5a\x37\x60\x51\xea\xd3\xc0\x17\xcc\xd7\x73\xe2\x1f\xdd\x73\xef\x47\x6f\xbf\x7b\x69\x1c\x5f\x6e\xb6\x25\x62\xca\xa1\x8d\x96\xc6\xe9\xbf\xc7\x28\x03\x27\xcc\x58\x14\x34\x09\x2c\x26\xe5\x77\xfa\xd8\x93\x9a\x82\xaf\xed\x51\xae\x5a\xf3\xd4\x28\xed\x6f\x1a\x88\x23\xbf\xc3\x3f\x6c\x49\xe2\x79\x0d\xb7\x2e\x07\x06\x8e\xd4\xd9\x21\x06\x4e\x54\x91\xf2\xb9\x15\xe9\x3c\xdb\xa4\xc1\x0d\xb0\x08\x7d\xfd\x46\x29\x87\x5b\x6f\x25\x7b\x7d\x7c\x79\x72\xab\x27\x4f\x04\x78\x7a\x2d\x7b\x65\xdc\xa6\x51\x27\x3a\x49\xf1\xfc\x39\xf3\xe1\x6d\x42\x0c\x26\x30\x01\xe2\x94\x59\x71\x52\x81\x01\x61\xc2\xb7\xd7\xb9\x6b\x3b\x34\x70\xa9\xb1\x2a\x20\xfc\xad\xc4\xa3\xea\xad\xcf\xf2\x07\x9f\x48\x2e\x43\x1b\x35\x6e\x7f\x7a\x21\x0a\xdb\x23\xb7\x75\xe4\xf3\xdb\xb7\x65\xac\x03\x2b\x9a\x96\x4d\x95\xa1\x54\x45\x2e\xc3\x26\x31\xe2\xef\xf0\xa9\xd1\x9a\x42\x26\x72\x08\xb6\x35\x27\x86\x85\xf5\x84\x07\xc1\x48\x2d\x26\xee\x22\xc5\x9d\x18\x1a\x40\x94\xfc\xd4\x43\x63\x15\x85\x10\x54\x2b\x51\x6e\x22\x9f\x99\x64\x4a\x49\xe4\xa8\x8a\xee\xcd\xdf\xbd\x51\xbb\xac\x94\x95\x88\x69\x62\x41\x3b\xc9\xdf\xfc\xb4\x8c\x1f\x98\xcf\x56\xc2\x25\x73\xfb\x2a\x84\xa1\xbc\x9a\x38\x4f\x99\x79\xd3\x1a\xe6\xba\xff\xc5\xde\xcc\xad\x5d\x3a\x5b\xa0\xc6\xe3\x41\xf8\xb8\x42\xb8\xee\x9c\x36\x25\x36\xc8\xdc\x79\x5c\x3e\xd4\x1a\xb1\x5b\x24\xd0\x7a\x33\xd7\x6c\x79\x7f\xba\x70\x6e\x79\x31\xbf\x78\x21\xdd\x07\x3b\xc8\x33\xd1\xaa\x3e\x57\xae\x5f\x2f\x0b\x4d\x00\x52\xb5\x98\x0a\xe6\x39\xa0\xa8\xe3\xba\x98\x95\x29\x03\xd9\xe8\x1b\xf7\x68\x22\xbf\x38\x7a\xc4\x31\x57\xb9\x18\xda\x25\xad\xe5\x5a\x15\x20\x16\xcb\xdb\x65\x73\x4b\x35\x15\x1b\xec\x79\x9a\x45\x79\xf6\xdd\x52\x87\x5a\x97\x01\xec\x12\x82\xc8\x5f\x1e\xd0\x08\x14\x42\x5a\x3c\xbc\xdf\x4d\x87\x26\x9f\x61\xcf\xb0\xc4\xdc\x50\x36\x1c\x5f\xdf\xd5\x22\xb1\x84\x19\xb1\xc5\xd2\x3b\xb7\xf3\x71\x29\xbd\x9b\x42\xce\x6e\x78\x2b\x1e\x42\xd7\x91\xa1\x52\xff\xff\x67\xbe\x2c\xa9\xc4\xc4\x3a\x3f\x7e\x8f\xb6\x32\x10\x95\x65\xfc\x04\xca\x3b\x78\x1f\x6f\x05\x35\xca\x7b\x8a\xf9\x7b\x46\xeb\x29\x10\xb9\x2e\x46\x51\x01\xc8\x6b\xf7\x3b\x1f\xd7\x26\x44\x51\x49\x80\x40\x45\xbe\x18\x9e\xdd\xd6\x27\x04\x3c\x11\x6b\xfc\xc4\x44\x4d\x15\x19\x39\x41\x54\x55\x05\x8c\xa3\x6a\x7a\xf3\x57\xed\x50\x74\x90\x4d\x48\x72\x85\x62\xb8\x77\x4f\x32\xfa\x99\x36\x79\x9a\xb2\xc4\x0b\x7f\xf7\xaa\x5e\xff\x7b\x81\x1d\xe7\xdd\x59\x7d\x37\x07\x7c\x1d\x7c\x6b\x49\xb7\xe9\x74\x48\x2d\xe6\xfc\x66\xff\x65\x9c\x26\x25\x8e\xfd\xd8\x12\xe0\x87\x27\xb4\x52\x93\x3a\x95\x6e\x72\x83\x22\xf6\x93\x9b\x75\x4b\xba\x44\x2c\x13\x13\xdb\xc4\x6f\xf6\x79\xea\x83\x71\x89\xc9\x50\x30\x51\x88\x05\x86\x23\x1e\xd1\x7b\x0e\x2c\x40\x68\xb9\xb1\x2f\x69\x52\x75\x9e\x8f\x4a\x36\xc7\xe9\xc0\x11\xbc\x67\x8c\xee\xeb\x87\x2a\x15\xa8\xd6\xc5\x56\xce\xd0\x04\x9c\x71\x8f\x6b\x47\xaf\x50\x20\xbe\xcb\xf5\xa1\x4a\x41\xe1\xa8\xe8\xc5\xd1\xa2\x14\x58\x0a\x04\x38\xca\x62\xd5\xf1\x7f\x5d\x27\x81\xf9\x06\x2a\x11\x07\xfb\xbc\x80\x00\xa5\x90\x27\x93\x74\x52\x86\x6e\x67\xfd\x0c\x65\xff\x41\x4c\xbe\xf4\x7c\x60\x33\xc7\xb2\xcd\x61\xd4\xf1\x09\x66\x7d\x60\x0d\x6a\x8f\xe8\x8e\x03\x65\x0a\x87\x0f\xa7\xfd\xfd\x73\x5f\x3f\x9d\x00\x87\x0c\x5a\x4a\xd1\x37\xc6\x3f\xa6\xac\x64\x49\x14\xd4\x12\x4b\xdc\xdc\x77\x0f\x69\x64\xc1\x06\x76\x7c\x31\x75\xcf\xfe\x93\x9d\x84\xed\x9a\xf9\x61\x18\xe6\xde\x9c\xfc\x09\x6a\xc0\xa8\xfa\xe3\x2f\x8b\x41\xb0\x98\x78\xc0\x2d\xbb\x74\xcf\x15\xd1\x0f\x5b\x5a\x54\x46\x6b\x57\xb4\x29\xf8\xe0\x06\x82\x56\x3b\x3a\xfe\x1b\x36\x8e\x95\xb7\xd8\xf3\xa8\x41\x90\xdf\xfa\x20\x72\x37\xf3\x17\x58\x58\x80\x5c\xd7\xc6\x51\x75\xe5\xaa\x84\xc0\x4f\x2e\x1a\xae\xcc\xd6\x75\xb2\xf6\x5e\x99\x9f\x31\xaa\x51\xfe\xed\x86\x77\x25\xdf\xa5\xdb\x88\xbe\x5d\xf6\xee\x91\xaa\x36\x02\xc1\x8e\x4f\xca\x24\xf1\x04\x98\xf8\xa2\xc6\x04\x41\x0a\xa5\x3c\xdc\x76\xdb\x78\xad\x6f\xa8\xb9\x09\x0c\x3c\x7d\xfa\x4f\xce\x50\x2c\x68\x5c\x8c\x0d\xcb\xe6\xfa\x67\xbd\xb9\xce\xf9\xda\xf5\x15\x84\xa2\xa8\x5a\xc8\x8f\x3b\x2c\xa5\x2d\x9a\x48\x15\x93\x3a\xc2\x1b\xa3\x99\x13\x67\x4e\x8b\xfe\xc3\x0f\x0e\x4e\x17\x10\x86\xe3\xf4\x71\x0d\xc3\xfb\x4e\xf1\x57\x67\x21\xc7\x8c\x8a\x22\x56\x28\x86\xdd\x6b\x87\xa9\x4d\xa1\x67\x30\xe2\xc6\xf4\xa4\x7b\x96\x25\x87\x7a\x7a\x67\xa1\x50\x0c\x07\xbc\x2d\x2d\x63\x69\x5d\xe2\xfc\xb6\xce\x1b\xac\x34\x22\x06\x32\xb9\xf0\xd1\xc1\x9b\x79\x20\x4f\xac\x21\xe2\x7d\xdd\xd0\x8b\x2d\xa2\xc5\x38\x9d\x3c\x72\x5f\x9b\xc3\xc7\xbb\x42\x2f\xab\xb5\xcd\x2f\x3e\xca\xbf\xcc\x2c\x6c\x47\x0d\x30\xf7\xa2\xfc\xdc\xcd\xbc\xbe\x9a\x3c\x63\x8a\x70\x04\x04\x88\xa2\xc6\x97\x8b\xba\xbb\x06\x62\xdc\x59\x22\xfb\xd0\xcd\x57\xeb\x4d\x33\xad\xda\x4d\x45\xd5\x25\xfc\x27\x85\x99\x8b\x13\x3c\xff\x2b\xd9\xab\xb4\x3e\x97\x3b\x1f\xc5\xd3\xf1\xd7\x4f\x25\xe7\xcd\x23\x51\xa1\x3b\x6f\x85\x02\xf0\x25\x06\xa3\x1e\x05\xa5\x85\xec\xef\xcf\xc5\x26\x29\x30\x9a\xfc\x8f\xf7\x94\x63\x49\x5d\x0b\xc6\x17\xf1\xb7\xc9\x55\x0e\x69\xb2\xa4\x94\x32\xb1\xe9\xcc\xfc\xe4\x10\x97\x6b\x9d\x0a\xd8\xfd\xf6\x92\x82\xe2\x40\x1e\x54\x74\xf1\xed\x5c\xf7\x88\x2c\xea\x14\x5c\x19\x80\xca\x8e\x09\xe6\x1d\x63\xd8\x8b\xea\xb0\xc5\xba\x57\x65\x1d\x33\x0f\xc7\xa0\xa3\xec\xd7\x67\xa4\x26\xa9\x32\x44\x75\xec\x1f\x29\xf5\xf1\x5a\x93\xc2\xce\xb5\x69\x5c\xe7\xd4\x19\x90\x60\xc7\x6a\xc2\x42\xc0\xc9\x66\xb1\x4b\xf2\xdf\x2b\xfb\x20\xcf\x0f\x6a\x25\xa1\xb1\x38\xe7\x16\xdd\x09\x05\xb8\xa8\xdc\xc8\xa7\xbf\x8e\x47\x6f\xd8\x12\xe2\x5e\xdd\x7f\xa5\x28\x37\x5c\x1f\xd7\x65\x3f\x1f\xae\xee\x4e\x8e\x7f\x57\x61\x32\xa8\x48\x8d\xd4\xb2\x4e\xf4\xc1\xbc\x06\x46\x82\x1f\x90\xfb\xeb\x71\x65\x98\x45\x0d\x41\x3c\xcf\x3e\xb5\x57\xdf\x4f\x63\x2e\xe0\xcf\x2b\xa1\xef\x1f\xe7\x9f\x60\x2e\x0a\x3c\x14\x45\x08\x24\xfe\x61\xae\xdf\x70\xf9\x06\xab\xa8\x86\x54\x6c\xf0\x2c\x79\x3b\x3b\x27\x02\x80\x7c\xc4\x84\xf4\xf7\x2c\x07\xc2\x5e\x8a\x57\x42\x0a\xc8\xb0\x1b\x27\xde\x15\xd9\x9f\x6f\x11\x10\x4d\x52\xc7\xb1\x61\x50\xee\xf5\xe7\xd3\xb5\xdf\xb5\xb8\xc6\x59\xa9\xf9\xda\x9a\x21\x30\x35\xd3\xdf\xe6\x96\x85\x49\xfd\xe2\xb3\x34\x36\x74\x99\xd5\x62\xaa\x11\x94\x6c\xf0\x93\x2f\x86\x77\xbf\x28\x8b\x3a\x6c\xf3\x6c\xda\x1d\x0e\x94\xa9\x36\xfa\x8c\x93\xce\xc9\xad\x9c\x25\xa5\x17\xc2\x77\xd6\xaa\x46\x8a\x36\xdf\xbc\x44\x6f\x0a\x5f\x3f\x24\x2d\x4a\x00\xfe\xf9\xe1\xda\x63\x43\x94\x29\x05\x57\xba\x2a\x14\xc3\x76\x26\x1f\x4d\x29\x30\xaa\xf1\x6e\x3e\xcf\xd2\x37\x3c\xba\x89\x94\x35\x13\x04\xdf\x27\x46\x2b\x4a\x36\xd8\x31\x39\x44\x3a\x9c\x7a\x54\x5c\x67\x0c\xa8\xc8\xec\x9f\x27\xf0\x81\xe2\xc2\x00\x74\x8e\xb9\x1a\x52\x5d\xab\x4f\x40\x43\xc5\x10\xfe\x4f\x83\x77\x6b\x8c\x12\xea\xb3\x16\x21\xbc\xcc\xb2\x6e\x61\x30\x2e\xb4\x66\x33\x83\xc7\xf2\x57\x69\x90\x0a\x62\xc0\x77\x2a\xf6\x66\x77\x4e\xd0\x9c\x81\xc1\xda\x41\x50\xa1\xff\x58\x97\xd8\x37\x58\x37\x1d\x19\xaf\x76\x74\xcc\x26\x1e\xbc\x92\x7c\x51\xb3\xd2\xa7\x0e\x40\x80\xcb\x04\xdb\x62\x6e\x9a\xff\xf8\x7e\x75\xdd\x8d\x92\x03\x66\x2d\xd5\x3d\xc0\x10\x2b\x25\x0f\x31\xd3\xbe\x5a\x37\x59\xf5\xad\x58\x0d\x63\x62\x79\x64\x6a\x16\x8a\xaa\x6a\xda\xf9\xc5\xd8\xe4\x06\xb8\x04\x42\xee\xc6\xdd\xda\xdc\xa3\x46\xa9\x9f\x88\xb4\xe4\x07\x97\x34\x02\x82\x45\xa9\x5f\x40\xe0\x3d\x2c\xea\xe9\xff\xbd\x4b\xfe\xc6\xae\xc9\x2d\xbd\xe0\xd6\x7a\x72\x10\x89\xad\x28\xcb\x3f\x66\xb5\xf8\x4c\x07\x51\xcd\x9f\x14\xdb\x5f\xee\x77\x85\x88\x0a\x0d\x50\x65\x89\xfe\xec\xb7\x27\xf8\xeb\x0a\x1c\xec\x5b\xc4\xe0\xde\x38\x7f\xd8\xa0\xc0\xe0\xb0\x52\xf2\x64\xae\x5c\x36\x50\x8e\x3f\x0b\xc5\xf0\xc6\x7e\x1f\x94\x59\xc9\xf1\xb9\x86\x25\x60\x37\xf5\xbb\xb9\x57\x9b\xea\x19\x0c\xa3\x1a\x6f\x46\x3e\xb0\x53\x8b\x9b\x16\xaa\x0a\xcc\x41\x76\xff\x26\x0d\xbc\x1a\x78\xbe\x00\x08\xfe\xb8\x4d\x5b\x0c\x63\x1b\xbb\x16\x75\xf8\x86\x25\x73\xf5\xf1\xd4\x36\xbf\x4e\xab\xbc\xa5\x3c\x26\x38\xfe\x30\xf8\x56\x02\xe4\x8c\x49\x12\x3f\x89\xc0\x41\x3d\xfb\xd2\x39\x19\x4a\xbd\x06\x76\x3c\x9e\xcb\x67\xed\xd7\x42\xa9\x8d\x9a\xd8\x9c\x18\x33\x8b\x5f\x1d\xa7\xab\xd2\x09\x71\x0b\x48\xf5\x2f\x1d\x17\x4b\x5d\x03\x3b\x1c\xf0\x94\xe9\xbc\x52\x29\x7f\x5c\xcc\xea\x84\x3b\x18\x67\x86\xee\x54\x60\xb1\xb0\xb4\xaa\x73\x24\x43\xee\x8f\x63\xf9\x4f\x31\xac\xc0\xa9\xc2\x09\x3f\x2f\x11\x2f\xd3\x00\xa6\xfb\xcc\x6b\xc9\x1f\xd4\x81\x3d\x73\xd5\x33\x0a\x7e\x09\x1b\x28\xf0\x24\x17\x31\xbc\x45\x67\x44\xb1\x18\x8f\x97\x5c\x92\x45\xcf\x24\x47\xdd\xe1\x0f\xe2\x6a\x45\xf9\x0a\x7a\x76\x38\xbe\x1f\xbf\x4e\x97\x29\xb2\x90\xeb\xca\xcb\xf6\xab\x67\xaf\xd6\x2a\xaf\xd8\x4b\x2f\xc1\x2c\xe4\xb6\x2a\x0a\x3f\x15\xc4\x81\x9f\x4b\x16\xf5\xe6\x2e\xdc\xaf\xfb\xc4\x41\xe7\x5b\xc3\x82\x60\x52\xde\xa5\xd8\xc2\x1a\x04\xda\xb0\x6f\xad\xd5\x8c\xb1\x7b\x62\xef\xc1\x01\xf1\x0c\x9d\xda\x2a\xd9\x8a\x5c\xe4\x38\xe2\xd9\xd4\x54\xcb\xc1\xe7\xdf\xb9\x5c\x32\x13\xa3\x64\x97\xe9\xf7\xcc\x00\x11\xaf\xa3\x12\x25\xd7\x6f\x90\x52\x81\x96\x7d\x5e\x0e\x7e\xbc\xbf\x04\xec\xd8\xa4\x56\x82\xde\x72\xdc\xe1\xf4\x23\xa8\x23\x93\xd4\xd2\x42\xd9\x83\x2f\xe8\x4d\x75\x54\x63\x8a\x1c\xbf\xb7\xdc\x26\xf2\x07\x98\x80\x45\xef\xe2\xd7\xe6\x07\xd3\xcb\x2a\x27\x86\x79\x68\xbb\x92\xdb\xaf\xd7\x94\x96\x05\xf9\x05\x06\xca\xf9\x3b\x38\x58\xbc\xb0\x24\x68\x95\x1d\xff\xc6\xdb\x7a\x14\xb7\x71\xb2\x0f\xff\x49\x9b\xb6\x57\xaa\x23\xa7\x4a\xeb\x29\xe1\xac\x70\x85\xa9\xe9\x24\x88\xcf\x48\x3c\x5f\x6c\x88\x32\xaf\x9f\x19\xda\x82\x87\x13\xcd\xd0\xd5\x9d\xe9\x58\x30\x69\xe2\xcc\xce\x69\x22\xb6\xfd\xdb\x75\x3c\x8e\x95\x90\x6f\x31\x4a\x01\x2f\x9a\xf9\xc8\x93\x02\x5a\x3b\xfb\xee\xa5\xc5\xc5\xd1\x9f\x1c\x5d\x93\xfe\x00\xd3\xa6\x25\xd2\x8a\x42\x4b\xf7\x13\x6f\x28\x44\x5e\x40\xb2\x16\xc3\xff\xe3\x0a\xef\x5b\xc8\xd6\x50\x2f\xed\x1b\x35\x58\xbc\x01\x8f\x70\xac\x2d\xfc\xf1\xe9\xa1\x89\x5e\x0b\xc1\x7e\x94\x88\x97\x6d\x50\xb4\xd7\x91\x0d\x04\xfb\x5c\xd7\x0c\xcd\xa2\x89\x61\x0c\xad\x40\xf8\xee\x24\x1d\x62\x83\x5c\x8e\x97\x83\x6c\x5f\x28\xb5\x4c\x76\x88\x1b\x88\x93\x01\x71\x60\xc1\x19\x59\xcb\x4c\x9f\x3a\x9d\xfb\x15\x1e\x4e\x63\xb5\x0d\xe4\x04\x46\xd5\xeb\xc3\xcc\xf5\xf0\x16\x79\x86\x2d\x8c\x60\x66\x10\x2e\x3a\xac\x5d\x3a\x8b\xfa\xd1\xb5\x73\x85\x13\x41\xde\x78\x59\xc6\x49\x71\xdb\xa3\x8f\x42\x9e\xb9\x4a\x9f\x01\xa4\x80\xe1\xa3\x4f\x0e\x8f\x7f\xa4\xce\xe0\x0b\x1f\xea\xd0\x0d\x79\x31\xaa\xc2\xbc\x1e\x84\xf0\x16\xcf\x93\xa3\x8d\x69\x13\xba\x3a\x27\x45\x2f\xf7\x96\xd9\x2d\x3c\xa7\x58\x72\x88\xa3\xd8\xaf\xd4\xac\x80\x19\xaa\x78\x26\xb2\xb1\x02\xc7\x09\xf7\xed\xd7\x57\xf7\x0c\x7b\x9c\xc1\x21\x9e\x70\xff\x89\x9a\x96\xae\x81\x50\x5f\xa0\x8a\x3f\x0f\xfe\x5b\xc6\x17\xa2\x39\x1b\x33\x4b\x1b\x3e\xb1\x80\x5f\xf0\xb0\x72\x4c\x27\x8b\xf6\x04\x02\x39\x03\x91\xeb\x7a\x3f\x7d\xd9\xb8\x0a\x08\x57\x8e\x94\xb5\xd9\x65\x3b\x45\x6e\x77\xad\x64\x2e\x91\x1f\x76\x40\xe6\x14\xdc\xe3\xb3\xa8\xab\xe3\xe0\x9f\xed\x53\x24\x1c\x1e\xf8\x03\x2f\x2d\xd7\x3e\x1f\x76\xe2\x8f\xde\xde\x31\x54\x21\xbe\x38\x75\x42\x6d\xa1\x54\x90\xbb\x67\xd2\x15\x22\xaa\xb2\xaa\x40\x81\xe7\xde\x29\xe9\xd5\x77\x37\x8e\x85\x5a\x7b\xb3\xab\x2f\xd1\x5c\x0f\x68\xad\x16\x38\x24\xb6\x71\x13\x2f\xe6\xa6\x1e\xa9\xa6\xd6\x2a\x0d\x93\x5d\xb5\x46\xa9\xfc\x10\xab\x8a\x76\x3c\x3b\xf4\x8d\x44\x7c\xca\x8e\x5b\x9a\xbf\x68\x53\x3f\x16\x0b\x94\x87\x8f\x9f\x96\x82\x9a\x93\x67\x14\x8a\xe1\x00\x2d\xd7\x7b\x36\x6d\xc4\x62\x17\xc5\xde\xec\xa1\xcd\xd7\xe8\x6d\x05\x27\x47\x0a\x9f\x7d\xfe\x5f\x7d\xeb\xe8\x55\xfa\x8b\x76\xaa\xe5\xc0\x8e\x63\x5e\xcf\x0e\x45\xfa\x08\x19\x16\x97\x31\x6c\x8c\x51\x6d\x10\x70\x8d\x57\x67\xe1\x7f\x9d\xe6\xf3\x85\x05\x81\x67\xd0\x3a\x11\x2f\x6f\x97\x26\x69\x41\x1c\x22\x9c\x32\xa3\x0f\xf0\x5d\x7e\xd2\x0a\xb7\x97\xcc\xc0\xb6\x91\x54\x86\x0c\xf7\xf7\xb4\x2b\x1d\x19\xe2\x25\xef\xa3\xa7\x25\xba\xa1\x55\xbe\x23\x33\x5e\xd3\x1e\x30\x90\x63\x12\x10\x77\xe3\x93\xd3\xaf\x9f\xd1\x1d\x7f\x45\x71\x1b\xc5\xd7\xe6\x7d\x0a\xad\x0f\xd9\xb6\xc0\xa3\xfe\x6e\x8d\xd6\x8b\xd4\x91\x11\x44\x3f\x92\x43\x22\xd7\x28\x1b\x12\xbb\xe9\xf4\x01\xa9\xac\x3f\x9b\x1c\x8f\xb2\x57\xd2\xc3\x89\x75\x54\xf7\xe0\x29\xdb\x01\x18\x09\x73\xf5\xad\xe5\xe3\xd2\x77\x3a\x19\xf6\x42\x59\x22\x3d\x3a\x73\x1c\x01\x59\xb8\xd3\x33\x90\xa9\xef\xf9\x7b\xb3\xbf\x11\xf2\xd9\x0c\x47\x67\x58\xb4\x5e\x5f\x9c\xa3\x0d\x13\x68\x0d\x9b\xa8\x29\x40\x93\xe5\xbc\x14\x32\x0d\x94\x19\x70\x7e\x40\xfb\x60\x27\x0d\x95\xe0\x30\xc9\x23\x2a\x55\xca\x31\x82\x58\xcb\x28\x7b\xfd\x03\xe9\x59\x46\x81\x8f\xa9\xf7\xac\xe0\xe7\x85\xd4\x5c\x46\x3c\xbe\x9d\x0d\xdb\x97\x2b\x98\x1d\x13\xd5\x90\x23\xca\x95\x7b\xdb\x14\x1a\xba\xc1\xc9\x20\x72\xe8\xb7\x62\x94\x9c\xd8\x70\xa5\xab\x64\xc0\x75\xe8\xb8\x1c\x13\xe8\xbe\x92\x6f\xeb\x54\x70\x9b\xe0\x3a\x7f\xb5\xe1\x02\x47\x11\x80\x6f\xd5\xe2\xfd\xc6\x7c\xc9\xb0\xf3\x4c\xa8\xca\x27\xbe\x35\xba\xd1\xd7\x6a\xdb\xa5\xb1\x05\x50\xf6\x91\xac\xbe\x56\x70\xb8\x95\x44\x38\xb1\x7d\xa8\x92\xaa\x12\x1c\x04\x54\xb3\xf3\xc6\x2a\x15\xd4\xdf\x96\xc8\xdf\x98\x0c\x19\xf8\xa0\x36\x41\xa3\x3f\xac\xe9\xfd\x7a\xc4\xa9\x58\xaa\x00\x65\xee\x27\xbb\x24\x15\xcd\x73\x69\x15\x7b\xb5\x56\x33\x99\xcf\xbd\x21\xdd\xdf\x83\x4a\xa1\x18\xce\x5a\x2b\x8f\x88\xa9\xaa\xba\x76\x4e\x49\x9e\x1d\x0d\x5a\x42\x62\x66\xd0\xc0\xf4\x9d\x6a\x62\x0e\x01\x6c\xf2\xb0\xbb\xe6\xb8\x96\x9f\xea\x98\x35\x7d\x2b\x31\x6b\xc8\xdf\x7a\x4a\x76\x44\x53\xa6\x75\xc2\xf2\xf8\x12\x7e\x98\xee\x06\x29\xfb\x18\x61\xdc\x79\x64\x90\x0c\xcd\x09\x90\xed\x37\x9b\x92\x58\x4a\xb8\xa2\xcc\x91\xfe\x9a\xfa\x0a\x72\x0c\xe1\x20\x96\xfb\xe7\xe3\x2d\x34\xf3\x80\x71\x56\x1d\x7c\xda\xd7\x6f\xe1\xc5\xfa\xed\x1e\xaa\x2a\x80\x97\xac\xf7\xb4\xe6\xc5\x4c\x58\x89\x32\x47\xf4\x8f\xf9\x11\xe3\x74\x4c\x32\x65\xa8\x92\xa4\x60\xff\xba\x41\xca\x70\xcb\xb5\x01\x8d\x94\xdb\x37\x5c\x03\x54\xc7\xfc\x6c\xce\x88\x99\xb0\x9a\x97\x95\x36\x2a\x61\xa0\x3f\xe5\xcd\xb2\x6c\x3b\x1a\x80\x29\xeb\xcd\xcd\x1d\x70\xb5\xd6\x06\x9a\x81\xae\xf4\xbb\xe6\xb4\x5a\x1c\x12\x00\x42\x76\x1d\xd4\x5c\xcf\x28\x91\x40\xb7\x03\x2b\xd2\xf9\x86\x6b\x58\x36\xb5\x1f\xfb\xe7\x83\xba\x39\x6d\x05\x25\x28\xc8\x37\x26\xa6\x5f\xbb\x4d\xf9\x5c\x37\x56\x22\xca\x5d\xf7\xd2\x50\x65\x40\xe5\x06\x3e\x4a\xfc\x05\xee\x59\xa8\x80\x0e\x68\x29\xe0\x8a\xc1\xff\x77\xa7\xf2\xa2\x69\xa1\x18\xd6\xe6\x8f\x54\x14\x94\x5a\xa2\xe4\x9b\x67\x5b\x16\x67\x3e\x9f\x06\x71\x8e\xc5\x55\xef\x0c\x05\x12\x45\x01\x40\x98\xea\x0d\x6b\x8e\xd1\x10\xf7\x89\x25\x7e\x76\x81\xad\x26\x32\x8f\x0b\x68\xae\x17\x82\x0a\xf7\x30\x5c\xb3\x21\x1a\x76\x77\xc8\x36\xc9\xbc\x16\xd5\xb0\x83\x2a\x40\xf1\x69\x19\xee\x7f\xb7\xff\x95\x0a\x1a\x40\x7c\x12\x20\xab\x4a\x67\x99\x89\x53\x00\x58\x30\xe6\xe0\x28\xa5\xa6\x32\x2c\xe4\x54\x70\xca\xe3\xb2\x2d\xab\x88\x0d\xd8\xb8\xce\x81\x90\xbd\xd9\x6f\x8c\xd7\x15\xc2\x4b\x14\x50\x92\x09\x80\xe8\xdf\x1f\xf8\x80\xd6\x29\x50\xc7\xbf\xe1\xc6\x96\xa8\xb4\x5d\xd8\x58\x4c\x9e\xc2\xf7\x31\x99\x4f\x9c\xee\x50\xbb\xf5\x24\xe1\xbf\xb0\x7c\xb0\x3a\x5c\x63\x94\xeb\x80\xf5\x2e\x95\xbb\x2c\xec\xba\x88\xa9\x9d\xef\x4d\xc3\x65\x4f\xe1\x04\x4d\xb8\x39\x9f\x5e\x97\x3e\x63\x34\x6a\x38\x63\x49\xcd\x25\x23\x87\xa4\xe5\x37\x0a\x93\x81\x34\xfa\xc9\xe3\x8a\x42\x31\x62\x66\x74\xde\x7f\xf9\xda\x38\x55\x14\x78\xde\xbc\x1b\xe4\x0b\x57\x40\xb5\xe1\x95\x4f\x68\x5e\xb2\xc8\xb0\xbc\x3e\xc4\xd2\x73\x77\x3d\xaf\x74\xdc\xd1\x03\x8d\xbe\xdf\x77\x9e\xd5\x2f\x0e\xaa\x23\x9b\xf8\x5c\x97\x2e\xbe\x38\xe6\x39\x79\xf4\x4b\x54\xb1\x7f\x0d\x3f\xae\xcf\x1e\x7d\x8b\xb7\x15\x32\x12\x0d\x7e\x51\x35\xcf\xf3\xb1\x4d\xf8\x80\x27\xf7\xed\xf1\x32\xe7\x78\x4d\x87\x3a\xcd\x1a\x0d\x38\x9c\xb0\xf4\x74\x7a\x36\xd1\x55\x98\xca\xa7\x57\x6d\x2b\xd3\x27\x23\x4a\x17\x8e\x27\x10\xa2\xd0\x70\xb7\x9b\x72\x1c\x31\xa3\x2b\xfa\x93\x1f\x69\xfc\x5d\xe4\x55\x63\x16\xf7\x65\x5a\x0d\x62\x04\x70\xcc\x44\x7d\x6a\x2e\xd5\x19\xba\xa2\xc0\x0d\xc7\xae\xe1\x63\xe4\xbb\xa8\x5d\x8e\x7e\xc5\xba\x35\x7c\x9d\x36\x8b\x98\xa6\xad\x0e\x06\xb7\x9e\xd3\x34\xcb\x09\x6e\x70\xd9\x81\xfc\x67\xae\xe7\x3f\x03\x23\x1f\xbe\x9a\x37\x4a\x56\x30\xe0\x14\x48\x3d\xee\x81\x97\x9d\xfe\xb8\x5e\xa5\x09\xd0\xad\x18\x8c\x3e\x3e\x4b\x6b\x8b\x5c\xea\x03\x19\x48\x88\xdb\x4d\xb6\x74\xf5\x51\xc6\x10\x5f\x2d\x73\x4a\xa9\x1b\xbb\x3e\x42\x21\xc4\xd5\x17\x3e\xf1\x94\xe2\xf1\x51\x73\x6d\x2a\x4c\x37\xb3\xf3\xc6\xb4\x6c\x57\x3d\xe4\x0b\xa7\xc1\xf4\xed\x7b\x87\xb3\xbb\x0b\x1f\x9d\xb3\xf4\x63\x85\xa5\xf7\xb5\xfc\xfd\xaf\xdf\xd5\xfb\xb5\xe8\xa2\xe8\x75\xf5\xb7\x14\x7b\x1b\xce\xfc\x14\x0b\xf3\x61\xa7\x47\x29\x7f\x51\xc3\x3e\x66\xcd\x94\x1d\xcd\xa6\x03\x5a\x96\x33\x10\x33\x30\xf4\x8b\xd1\xbf\xbf\xe4\x6d\x65\x4e\x47\x1b\x36\x02\x53\xa1\x4b\x5f\x4c\x7c\x3e\xa6\x4f\x2f\x14\xc3\xde\x5d\x2d\x5e\x83\xb6\xc8\x09\x99\x43\xdb\x65\xcc\x9b\x06\x8b\x9e\xee\xdb\x84\x76\x02\xe1\x08\xb2\xcc\x6f\xeb\x8a\xb9\x3b\x6f\x24\x72\x7f\x99\x2b\xab\xb7\x19\x30\x33\xcb\x8d\x3f\xa3\x35\xe9\xc8\xae\x20\xd6\x84\x32\x09\xca\x86\xa9\xcf\xf3\x44\x3f\x9b\x20\x47\x5d\x38\xdf\xb7\x5c\x45\x9a\x7a\x2e\x80\x8e\xb9\xc5\xe4\xaf\x67\x4b\x9d\x37\x23\x4a\x40\x43\xb6\x8d\x54\xfe\x5b\x03\xb4\x85\xc4\xee\x3c\xfa\xef\x87\x1d\x11\x9c\x31\xc4\x60\x43\x00\x39\xfc\xcb\x67\x14\xc6\x3d\x43\x44\xd0\xff\xbf\xfb\x86\x74\x59\xac\x4a\x64\x70\xf8\x87\x19\x7c\x61\xb6\xc4\xc7\xae\x95\x72\x78\xff\xe8\xfd\xfc\xc9\x2c\x40\xdd\x00\x77\xbf\x65\x3b\x2f\x17\x38\xea\xb7\x50\x0c\xe7\x1f\xd4\xea\x44\xc4\x7c\x95\x12\x14\xfe\xf9\x36\xd5\x11\x41\x15\x02\x0c\x6f\x7d\x46\x53\x18\x81\xa3\x2c\x40\x43\xe6\x29\x4d\x07\x16\xf9\x3e\xa7\x07\x87\xd7\x3d\xce\x1b\x97\x7b\x02\x9f\xae\xa6\x75\xaf\xda\x54\xf3\xea\xd6\x37\x04\x7e\xba\x46\x61\x93\x79\xd3\xd2\xab\xfa\x90\x10\x92\x93\x9b\x4b\x9e\xd0\x7c\xe3\xb0\x6d\x17\xdc\x14\x0d\xf5\x16\x8d\xe9\x67\x32\x54\xf6\xa5\xa0\xc9\xac\x59\x9a\x49\x26\xf5\x3c\xec\xdd\xd0\xdd\x0d\x79\xf1\x5f\x2c\x59\x79\x36\x81\x5f\x9d\x1b\xfd\xda\xf0\x94\x30\x1d\x0b\x0c\x69\xe6\x6f\x8c\x52\xf1\xcb\x8a\xfa\xcf\x27\x27\xe9\xd6\x32\x82\x1f\xcc\xdb\xca\x03\x2f\xa7\xff\xba\x3b\xf0\x7c\x40\x3f\x70\xf5\xdb\x6f\x2f\x56\x35\x5b\xb9\xd8\x40\x6f\xc6\x90\xb2\x01\x04\x81\xe9\xc6\xc9\x0d\xd2\x84\x0d\x35\x94\xa1\xfa\x09\xad\x11\xf6\x7d\x64\x54\xc5\xa8\x7a\xa2\x10\xd5\x9e\x3c\x73\xf2\x0c\x48\x13\xbd\x8a\xb8\xac\xc7\x8b\x2e\x0e\x16\xbb\x44\x81\x47\xb8\xd8\x20\xc8\x16\xda\x36\xe1\xed\xeb\x47\xe8\x59\x8d\xb0\x44\x8b\x6c\xc0\x28\xd9\xd0\xd8\x34\xf0\x88\x07\x57\x4a\xd7\x0c\xdb\x30\x58\xd9\x3c\x02\xad\x82\x4b\x4f\x75\x94\x62\xc5\x61\x9b\x80\x27\xbb\xb2\xf8\xbd\xff\xbc\x58\xd8\x62\x88\xbf\xfc\xaa\xec\x7b\x41\xd2\x7e\x1c\xb5\x6d\x6c\xdb\x9d\xcc\x13\x7c\xab\x55\x5c\x7f\x90\xb6\x9a\x36\x6c\xca\xdb\x10\x0e\x28\xf8\xf6\xc9\x74\x8e\x9c\x3e\x49\x8c\x4d\x7e\xa3\x40\x22\x88\x63\x62\xe8\x6c\xed\xed\x43\x44\x57\xcb\x49\x27\x42\xc0\x2c\x77\xe0\x84\xe6\x55\x42\xdd\x3e\x59\x5f\x1f\x76\xaf\x6a\x2d\x4e\x0b\x2c\x88\xd5\x68\xae\x7d\x5e\xda\xc9\x83\x65\x75\x54\x12\x2e\x9c\xa1\x8d\x0f\x84\x4f\x28\x2f\x4f\x64\x09\x73\x70\x88\x78\x6a\xe0\xe1\x82\x1d\x9f\x1f\xdf\x9f\x9a\x3a\x67\x0d\xb8\x89\xfc\x14\x66\xbe\x6c\xeb\x86\x1c\x1c\x41\x07\xb8\x82\x53\x6f\x6b\x6d\x13\x5d\x15\xe0\x32\x17\xf3\x8f\x8e\xe6\xe5\x66\x7a\x89\xce\x88\xc7\x9d\x0c\xb3\x1f\xec\x9f\xbc\x2d\x0b\xa9\x32\x13\x93\x14\x18\xbd\x61\x61\xe4\x16\x8a\xe1\xcf\x56\xc8\xf2\x10\x60\x8f\x4a\x34\xc8\x8f\xdf\xa4\x38\x57\xfb\x3e\x23\x25\x69\xe0\xf2\x45\x65\x29\xe2\x22\xe1\xe4\x99\xad\xc8\x51\x23\x43\x50\x9f\x7d\x7d\x40\x87\x7a\xd5\xc0\x5d\xda\x2b\x14\xc3\x83\x9a\x9c\x16\x75\xb1\x03\xfa\xd6\xc9\x29\x9f\x7d\x5b\x82\xeb\xf3\x83\x64\x02\x70\xf0\x35\x05\x18\xef\xf0\xb6\x16\x6e\xd3\x91\x1b\x5b\xfc\x15\xcc\xd8\x81\xb0\x37\xfb\xd3\x8e\xf4\x28\x12\x39\x95\x2a\x65\x2d\x5b\xef\xc9\x7b\xb4\x7d\x71\xdd\xbb\x61\x21\xa7\x72\xff\xfb\x09\x19\xba\xea\x35\x12\xfd\xd0\x71\xb7\x24\x9a\x87\x53\xa3\x44\xbb\x30\x3f\x48\x2e\xbc\xbb\xe3\x26\xba\xf8\xaa\xe6\xc7\x01\x32\x8c\x31\x03\x64\xed\xc9\x31\x6a\xd1\x54\x21\xdc\x9b\x2f\x7d\x76\xff\x7e\x9e\x2e\x01\x51\x73\x91\x13\xf5\x12\xbc\x3e\xca\x6e\x1d\x22\xea\x1f\xea\xc1\x2c\x9a\x2b\xc7\xbc\xd5\x31\xbc\xe5\x19\x27\xae\x25\x3f\x78\x31\xfd\x97\x81\xeb\x05\xac\xc2\x05\x16\xd6\x2e\x1b\xac\xb0\x0f\x4c\x22\x48\xa1\xf7\xbf\x27\x41\xfc\x4d\xd5\x64\x40\x30\x8c\xcf\x0d\x94\xff\xac\x81\x71\xd5\x44\x90\xc5\xbf\x96\x6f\x91\xe5\x90\x72\x8c\x6f\xbe\xa7\xbf\x36\x56\xc6\x46\x2c\x6b\x3f\x76\xb1\xb6\x99\x8a\xce\xa8\x18\x38\xae\x7c\xa4\x25\x29\x1a\xd6\x0d\x9c\x6f\x3e\x70\x6c\x72\x0e\x9b\x30\xf2\xfe\x87\x72\xf2\x6a\xea\x40\x2b\x80\xc3\x34\x54\xd1\x90\x11\xfa\xbc\xb1\x0c\xe5\xeb\x37\x8b\xd5\x10\x66\xdd\x01\x8b\xfa\x99\x75\x6b\x54\x15\x32\xd7\x17\x48\xad\x47\x07\x0f\x95\xd3\xf5\x7a\x6a\x4e\x7f\x77\xbf\xa4\xc4\xe8\x0e\x14\x61\xde\x2f\x1f\x52\x1e\x2f\x63\x9c\x8c\xdb\x9b\xf9\xc7\x13\x0a\x87\xaa\x09\x1b\xef\x28\xf0\x7d\x7f\xdf\xe8\x96\xe4\x9f\x9e\x0b\xe4\x9e\xd5\x68\x0c\x34\xf0\x41\x94\x91\x4f\x60\x5e\x7c\x70\xb4\x42\x85\x2a\x30\xd4\xca\x90\xf7\x94\xba\xca\x33\xac\xc0\x2e\xab\x96\x72\xf9\x79\x9a\x65\x94\x8b\x99\x4d\xeb\x2a\xd2\x3b\xb7\x5b\x73\xc9\x01\x2e\xb5\x59\xe2\x78\xf1\x42\x31\x7c\x79\x2b\xdf\xab\xdd\xed\x98\xa2\xfe\x83\xcb\xf1\xcc\x36\x6d\x64\x40\x6b\x98\xe7\x08\xae\x5b\x9b\x69\xae\x91\x73\x4b\x1b\x37\x19\xf1\x57\x2b\xbf\xf5\xf0\x63\xad\x82\xcf\x3e\x57\xe5\x2e\xf6\xe6\xea\x47\xe4\x03\x35\x90\x63\x60\x21\x61\xf9\xe5\x27\xd3\x0d\x40\x8d\x7a\x06\x6d\xf4\x85\x6a\xfc\x56\xa7\x76\x74\x11\x78\x3a\x73\x1b\xd7\xcf\x8c\x1d\xd6\x72\xae\xe3\x2a\x69\xe3\xc5\xf8\xf8\x38\xc8\x86\x7d\xe1\x43\x9a\x6f\x4a\x1d\x79\x92\x6e\x95\x5f\x71\x21\x1d\x0e\x4d\xe2\x19\xb4\x8e\x93\xb6\x30\xbc\xc7\xd5\x8a\x78\xd4\xf4\x62\x75\x85\xd5\xaf\x4a\xf0\xc6\x4d\x85\x62\xf8\xcc\x6d\x82\x0f\x6b\x21\x86\x8c\xe8\x96\x72\x39\x9d\xf0\x96\x47\x92\x11\x27\xf7\x63\x4f\x32\xd8\x57\x85\x33\xc7\x02\xde\xff\x89\xad\xfc\x9f\xde\x50\xe4\xfe\x61\xc8\x18\xbd\xca\x89\xfb\xd3\xa9\xa7\x44\x7b\x62\x0d\x1d\x6d\xf2\xb8\x2a\x40\x36\x18\xf7\xc6\x63\xb9\x6b\xba\x2f\x57\x65\x07\x8b\xe1\xcd\x2f\x2a\x74\x6f\xdb\x2e\x31\xe2\xfb\x7c\xee\xfc\xb3\xa5\x8a\xc1\x24\x68\x3f\xc6\xd8\xee\x2f\xa8\x08\xdc\x3a\x76\x78\xaf\xb0\xf1\x8d\xf4\x13\x74\xa8\x93\x08\x51\xc3\x3d\xc8\x3c\x74\x41\x2f\xaa\x28\xf5\x84\xbb\x6d\x6f\xee\xb7\x33\x64\xad\xd7\xfc\x90\x52\x12\x3d\xb8\x26\xdd\x01\x4f\x9b\xd8\x35\x53\x00\xc1\xbf\x11\x77\xcd\x51\x57\xa1\xce\xf8\xbb\x0f\x6a\x18\x77\x44\x1c\x98\xfc\xc8\xff\xa4\xf6\x4c\xcb\x42\xb8\x8a\x9d\xc4\xf3\xe9\xc0\x26\x2d\x3f\xb2\x0a\x72\x62\x47\x6c\xe8\x6f\x0f\xcd\xd1\x85\xba\x6a\xd8\x83\x6b\xa3\xcd\x9d\xbb\x57\x2a\xb6\xf1\x26\xaa\x79\xaa\xd3\x72\xee\xf8\xfd\x32\x06\x4e\x9d\xa2\x1a\x12\x66\x86\xbc\x20\x0b\x06\x64\x30\x4e\x8e\x7e\x76\xbb\x42\x21\xb5\x91\x1f\xa5\x74\xf8\x8b\x1f\x0b\x6a\xab\x41\xa3\x9a\x1f\x94\x08\x72\xaf\x3d\xcd\xff\x6c\x7e\x50\x8d\xaf\x7c\x76\xdd\x26\xbe\xb3\xba\x03\x19\x56\x74\x34\x95\x49\xcb\xee\xfb\x79\x47\x85\x85\x1a\x40\x6f\xee\xb6\xf1\x97\x8b\x12\x83\x15\xa6\x4f\x81\x49\xc5\x49\x15\x96\xe7\x94\x63\x1a\xdf\xff\xa7\x0d\x2a\xa2\xf0\x23\xe8\xb2\xc5\x2d\x5a\x5f\x16\x94\x3c\xbc\x2a\xe0\x7c\x47\x58\x20\x4f\xba\x44\x31\x79\xb6\x83\x72\x39\xfa\x67\xff\x78\xf0\x2a\x75\x17\x1a\xfd\xb6\x3a\xd7\xf3\xe0\xfb\x3a\xff\xb2\xf8\xc0\x5c\x57\x28\x86\x03\xf6\xc8\x62\x09\xf7\x44\x8d\x32\xa1\x0e\xb7\x9a\xcf\xce\xf4\x35\x13\x62\xc6\x39\xa0\x85\x62\xb8\x5e\x33\xd0\x9c\x31\x69\xc2\xa4\x49\x93\xf8\xdf\xfd\xf7\x75\x4a\xe7\x1d\x6b\x1e\x76\x25\xab\x81\x4a\xa5\x75\x60\x71\xb0\x5d\xcb\xea\xd2\xc4\x2d\xfc\xf9\x5e\xcd\x66\x1d\x39\x65\x86\xcd\xa6\x1a\xc7\xf3\x9f\xed\x90\xbf\xd3\x09\x80\x45\xfd\x95\x19\x0a\x12\xd1\xc2\x89\x13\x6a\x61\x82\xe4\xec\x55\x30\x65\x95\x3e\x0c\x9f\x5e\x7a\x2a\xc9\xbb\x1e\x58\x65\xc1\xbf\xbc\xd1\x19\x12\xbf\xbf\x3a\x66\x7e\x54\x5f\xc0\x1c\x67\xcd\x9c\x36\xd1\x99\x70\x14\x53\x31\x7c\xf6\x66\x3d\xf3\xf8\x2c\x9d\xfc\xf2\x13\x0e\xcb\x20\x45\xaf\x35\x6c\x6a\x54\xa3\x9f\x85\xda\x15\x3d\x2f\x46\x3d\x4f\xa8\x3e\x1e\x58\xa8\xa3\x98\x08\x1c\x61\x01\x3e\x3b\x7e\xe2\x86\x46\x7a\x54\x55\xc7\x9e\x4f\x2a\xf1\xc5\xd3\xee\xd6\x3a\x2d\xaa\xcf\x98\x36\xa5\xd0\xd5\xd5\x39\x99\x6b\x6f\x8e\x7f\x46\xb7\x9b\xf0\x49\x9d\x78\xdc\x08\x38\xff\xd0\x56\x79\x92\xfd\x98\x10\x52\x28\x86\x3f\x1d\x23\xe7\x9c\xe0\x26\x04\xb4\x83\x79\xc3\xfb\x68\x39\xf9\x30\x39\x53\xde\x7d\xb5\xd6\x49\x40\x14\x37\x6c\xe4\xc5\x08\x93\xdc\x13\x97\xf0\x58\xb5\x10\xd9\xd8\x55\x17\x2d\x8b\x8f\xf0\x3b\x4a\x7b\x9a\x35\xca\x38\x0e\xdc\x3f\xa6\x1f\x58\x8c\xaa\xbc\xb6\xca\xa0\x35\xfc\x25\x75\x75\xf2\x60\x51\xec\xcd\x7f\xb1\x2c\xcf\x7e\x2d\xb0\x7d\x52\x46\x06\x16\xcd\xe3\x54\x27\x1d\xa6\x88\xdd\x0c\x6a\xab\x2d\xe2\xd0\x7a\xda\xae\xe0\xb1\x27\x78\x0a\x32\x83\x9a\x1b\xa5\x1a\x4e\x62\xb8\x7b\x5c\xbb\xa2\xdc\xe7\xf0\xa5\x72\xf7\x7d\xb2\x80\x22\x0c\x39\xc2\xeb\xeb\x87\x9b\xae\xd4\x0e\x24\x50\x94\x8b\xbd\xd9\xc3\xfd\xf9\x81\x5b\xb2\xe0\xee\xa5\x73\x95\xd8\xfe\xc0\xf3\x3c\xbc\x54\x90\x59\xe1\xcb\xf9\xfb\x4f\xb6\xe8\x3f\xfa\x3e\x49\x4a\x8a\xe7\x4e\xcb\x68\x69\x82\xf4\x41\xcc\x57\xcc\x6d\x60\xe9\x59\x20\x2a\xd1\x3a\x8e\x15\x80\xb0\x29\xec\xc1\x3b\xac\x31\x49\x40\x89\xf3\x53\x4b\xe7\xfe\xf7\xca\x97\xf6\x6c\x02\xc6\x63\x99\xe5\xcb\x14\x2a\x3d\x03\x3d\x8e\x8c\x95\x3e\x14\xa4\xe6\x52\x4f\xec\x5f\x3f\xf3\xa8\x86\x2f\xa6\x3e\xb6\x09\x4e\xe0\xfc\xb3\xc6\xc8\x7e\x66\xea\x94\x69\x85\x62\x48\x63\x57\x1c\xcf\xb7\x00\x27\x99\xb9\x7b\xb3\xa6\x40\x83\x98\xdf\xb0\x30\xb6\x93\xc6\x2a\xbf\xf4\xcc\x60\xe5\x9a\x01\x9f\x06\x90\xa6\x3b\xd3\x4e\xba\x88\x55\x91\xe3\x71\xa7\x89\x16\x3c\x8d\x80\x34\x23\x9b\x02\xea\x68\x1e\x93\xd2\x5a\x13\xa1\x19\xfe\xea\x60\xf9\xd5\x2b\x0c\xba\x8a\x5c\x6f\xa7\x0e\x48\x67\xbe\x25\xc4\xf4\xc3\x6f\x8d\xd5\xe1\x84\x51\x67\x2e\xd5\x4f\x73\xab\x6e\x56\x66\x32\x81\x8b\x99\x01\x84\xfa\x6c\x47\xb6\x43\xc5\x76\x7b\x16\xac\x43\x8b\xbd\xf9\xce\x3a\x1f\x8c\x2c\xc6\x30\xb0\xe7\xf1\x6a\xd4\x59\xc5\xaf\xd0\xac\xc7\x68\xb1\xcc\x3f\x1f\x51\x10\x85\x33\x0b\xc5\xf0\x73\x3b\x62\x5c\x9f\x8d\x7a\x78\x1e\x6d\xdf\x21\xa7\x3f\x2c\xf0\x3c\x05\xa8\x98\xbf\xdd\x91\x88\x4c\x60\xd2\xdc\xb0\xe9\x6a\x3d\x74\x0b\xe2\x5f\xf2\x26\x32\xdf\x1f\xaa\x6b\x4f\x81\xfc\xb9\xd8\x6d\xda\xef\x5e\xa9\xac\x87\x7c\x5c\xa1\x62\x08\x9d\x45\xa7\x3b\x94\x05\xbf\x81\x3d\x0f\x71\x45\xd1\x4b\xb3\x03\xc5\x73\xa8\x82\xf4\xef\xdb\x2f\xcb\x53\xd9\xa0\x76\x19\x10\xe0\x97\x4f\x4c\x53\xf5\x1a\x60\x44\xea\x71\xc3\x7b\xfd\x5c\x8f\x94\x0b\x45\x8f\x46\x39\xb4\xe3\x3d\x3d\x25\xd9\x54\x67\xa3\xe5\xd9\x29\x1d\xae\x84\x6a\x62\x8b\xb6\xff\x35\xcd\x99\x07\x97\xb0\x89\xb5\xc0\xf2\x2f\xcb\xf9\xf7\xf0\x10\x31\xa3\xee\x76\xf8\xc5\xe1\xfa\xa9\xc6\x98\xc5\xec\xc0\xfe\xf2\xb5\x44\x57\x17\xb8\x6d\xa2\x72\xf9\xcc\x7a\xfe\x16\x0d\x06\xee\x9c\xd1\x07\xc8\x0c\x1e\x9a\x9a\x5e\x82\x3d\x23\x8f\x5c\x8f\xbf\x91\x9e\x1d\x95\x4a\xe3\xfd\x3e\x94\x2a\xb2\x4f\xcc\x1a\xa9\x96\x19\x12\x35\xcb\x25\x6c\x0e\x38\x2d\x4c\x57\x46\xeb\x49\x9d\xf8\xdf\x63\xd3\x4f\x30\x4a\x7f\x16\x62\x7e\x6a\x83\xf5\xf9\x13\xe9\xdb\xe8\x23\x3f\xba\x0d\x7d\x75\x3c\x0f\xb5\xb5\x27\xd0\x83\x72\x2c\xf6\x39\x74\x79\x32\xe7\xeb\xa6\xad\x10\x9d\x87\x36\xff\x3f\xd3\x4f\x74\x76\x0e\x3d\xac\x34\xcf\xd8\x33\x02\xfe\xf8\x56\x28\xa8\x14\x0e\x6e\xc5\x7e\xa1\xc4\x99\x13\xbd\xd9\x8b\x7b\x64\x3c\x67\x38\x36\x88\x06\xbe\xa4\x46\x9e\x10\x10\x3c\x2a\x64\xf9\xb3\x4f\x2f\xbd\xae\xd1\xb2\x70\x22\x62\xe0\xa3\x9f\xca\xf7\x3d\xad\x2f\xe6\x7d\x09\x7f\xfd\xe4\x0b\xfc\xf0\x2c\x0d\x6a\xfc\xb5\x7e\xe4\x05\xc9\x6a\x60\xc0\xa7\xe8\x8a\xb1\x41\x66\x10\x27\x83\xfc\x94\x07\x24\x9b\x4d\xb1\x31\xee\xcd\xad\x1d\xa8\x09\x9a\x62\x61\x94\x17\x4e\x7b\xed\x6f\x4a\xcd\xca\x37\xb9\xaf\x2d\x7d\xa8\xea\xc4\xa0\xad\x31\x35\xfc\xca\x09\x1d\xb1\x52\x71\x48\x99\x18\xc8\xf1\xc5\x26\xf7\x8b\x47\xaf\x50\xf2\xaa\xc0\xbe\x6a\x3b\xe9\x6e\xea\x61\xd2\x87\x4d\x6b\x7d\x9e\xaa\x04\x40\x7d\xec\xc5\x12\x20\xb7\x5c\x18\x24\x82\x34\xc6\x4e\x09\x19\x55\x08\x87\x7f\x72\x93\x87\xc1\x98\x52\x7a\x64\x9e\x38\xa4\x4f\xf1\xfd\x80\x39\xb1\xe2\xcc\x0f\x1e\x4f\xc6\x6b\x2e\x30\x75\x4e\xce\xe2\x3f\x7d\x6e\xa0\xae\x65\x3a\xdb\x95\x20\xec\xf8\xd4\x21\x5c\x05\xed\xf8\xfa\xd8\x61\xc0\x01\xfe\x0c\x67\x93\xde\x7a\xe1\xf2\xb8\x90\x25\xfc\x4f\xbe\xfc\x8c\x06\xe2\x13\xf2\x13\x82\xe8\x9c\xfd\xd7\xa7\x34\xbe\x70\x8f\x6b\x53\x50\x61\x13\xd6\xa9\x99\xef\x6f\x53\xb8\x77\x88\x55\x93\x80\xf1\xe7\xad\x72\x60\x66\x5a\xc8\x41\x2e\xb2\x95\xd5\x57\x36\x77\xec\xfd\xbc\x2c\xa1\xb6\x98\xac\xea\x83\x99\x1f\x64\x65\xaf\x5b\xc7\x8c\x94\x61\x9f\xea\x3c\xa8\xeb\xce\x54\x08\x90\xae\xf8\x49\x0a\xfa\xb7\x2b\x49\xcc\x84\xad\x60\xe6\x1b\x63\x54\xe1\x69\x1a\x70\x19\x84\x7b\x8e\x25\xcf\x98\xef\x0a\x77\xcb\x64\x60\x05\x95\x00\x3b\x94\xab\xfa\x0e\x7b\x45\xc9\xf3\x94\x9a\x42\xc9\x6b\xde\x3b\xbc\xb0\x0a\x1c\x86\x2b\x72\x2a\x9f\x9f\x21\xa8\xf1\x4b\x7c\x8e\x42\x0d\x57\x4e\x12\xee\x51\xd8\xae\x90\xa0\x16\x77\x02\x9d\x2f\x68\x4a\xa3\xc4\x97\x22\xe5\xe1\xce\x6d\xba\x95\x31\x9c\x0e\xee\xbc\x95\xc5\x8e\x32\x07\x30\x09\xd7\xa0\xaa\xac\xd0\x06\xbd\xb5\xbe\x30\xbc\xd9\x5f\xbc\x24\x6b\x6c\xc2\xd0\x2a\x12\x35\x74\x2b\x5a\xab\x75\x90\xd7\x80\x60\xb4\x76\x9d\x6e\x9e\xeb\x12\x23\x76\x00\xf8\x8d\x72\x23\xac\xc0\xa9\x80\x45\x4f\xf4\xb5\xbf\xbc\x41\x1e\x4e\xd3\x8e\x47\x18\xbd\xb9\x6f\x94\x55\x5f\x1e\x86\x3d\xa8\xb7\xee\x99\xcd\x9f\xe6\x5d\xb4\x61\xaa\x25\xfa\x3f\xbc\x2a\xeb\x6b\x13\x3b\x4a\xcf\x1c\xfe\xa3\x26\x12\xd8\xa4\x01\x67\x1f\x4a\xaa\xe4\xaf\x06\x5e\xa9\x8a\x30\x18\xd8\xf5\x03\x9e\x5b\x3a\x86\x6b\x65\x3e\xa5\xb5\x58\x90\x2c\xfb\x64\xb2\x45\x9e\x1c\x95\x30\x7b\x4c\x41\x08\xa3\x42\x10\x1f\x6b\x3e\x9d\xbe\xc2\x69\x17\x4b\x8a\x99\x63\x53\xa6\xb8\x34\x80\x7f\x68\xce\xd7\x86\xec\x36\x72\x84\x7a\x4c\xfe\x96\x0d\xfa\xa4\x1b\x2c\xc8\xe2\xa5\x40\xf6\xde\x97\xaf\x51\x76\x69\x0c\xb9\x36\xf6\x5a\x01\x72\x5f\xde\xa5\xbd\x2b\x02\x2e\xab\x00\x5b\xc8\x6c\xb3\xd2\x11\xb8\x81\x71\x55\x7c\xde\x4f\xcf\xef\x90\x2b\x07\x55\x6e\xe2\x43\xaf\x49\xd9\x4f\xdc\xe2\x39\x9e\xd9\x5c\x92\xb5\x34\x08\x55\x85\x3d\xbe\xf4\xd7\xc0\xb2\x98\x09\xbf\xbb\x41\xd6\x9d\x55\xc2\x02\xcf\xc2\xf5\x42\x31\x9c\x2a\xe7\xd5\x9e\x1b\x15\x46\xff\xb4\x50\xd8\x0e\x2f\xbd\xf3\xbe\x3b\xa3\x57\xf5\xd6\x1c\xf9\x28\xa7\x4c\xe6\x02\x23\x61\x8f\xb0\x2f\x06\xd1\x4b\x3e\xdb\xa4\x6f\xcb\x83\x5d\x46\x55\xae\x40\xf4\xc8\x7a\xa1\x3a\x66\x18\x81\x27\x26\x2b\xdf\x3f\xa1\x0c\xeb\x19\x72\x2a\xbc\x70\xff\xf9\x04\x7d\x67\xc7\xd9\x76\xbc\xf9\xcb\x7f\x61\x59\xfa\xe1\x4d\x9e\x39\x6d\x92\x60\xc2\x7e\xf3\x16\xfe\x61\xc0\xd4\x90\xff\xb0\xfd\x17\x87\x69\xe5\x59\x59\x88\xeb\x84\x9b\x9e\xd1\xe6\x5b\x75\xcc\x0c\x5a\x93\x8b\xe6\xfc\xfa\x16\x19\xc4\xc0\x31\xac\x18\x7b\x9d\x1f\x71\x2c\x5d\xe2\x97\x29\xf5\x4b\xc8\x96\xb4\xa6\x75\x2b\x45\xb6\x50\x97\xf8\xd9\xb3\x17\xfb\xc0\xa8\x89\xb2\x00\x22\xd2\xb4\x45\x32\x31\x7a\x16\x6f\x2c\xdf\xdb\xae\x4f\x55\x7c\x62\x8b\x18\x65\x3f\x21\x17\x38\xb0\x33\x8d\x52\xa1\x7e\x40\xfe\x59\xb3\x63\x10\x92\x4e\xa0\x27\x05\xc8\xba\x61\x6b\x15\xdd\x0e\xcf\xc3\x42\xf6\xe7\xd4\x93\xba\x3e\x51\x09\x19\xb6\x28\x18\x5e\x39\xa3\x5b\x13\xb9\x3e\x88\x5e\x03\xe2\xfd\xfa\xd3\x57\x6a\x8f\xcf\x15\x09\x6d\xe0\x11\x11\x9b\x91\xdd\x04\x82\xd3\xc5\x17\x74\x9f\x12\xcf\x2f\x78\x60\xcd\x12\x0f\x6e\x8f\xac\x54\x30\x50\xa0\x35\xcb\x6b\xb4\xcc\x05\x79\x72\x6d\x8c\x0b\xc5\xf0\xcd\x85\xe9\x07\x5c\x0f\x6c\x07\x33\x54\xb2\x05\xc7\x29\xfb\x29\x0d\xcd\xd4\x40\xf1\xec\xe5\x52\x0d\xdd\x6b\x45\xa1\x86\xeb\x61\xed\x3e\x23\x8c\xba\xc1\x8e\x10\x9e\x4d\x63\x3d\x27\x69\xdd\xce\xc5\x79\x7a\x37\xea\xb2\xf3\xb0\x4c\x8f\xf7\x5d\xf9\xd1\x4f\xc9\x48\x0c\x2b\x3d\x91\x81\x6e\x18\x23\xbb\xcd\x4a\xb3\x50\x0c\x0f\x6f\xee\x48\x8f\x5f\xc4\xbe\x3e\xfb\xcd\xcd\x1a\xb9\x27\xb0\x45\x77\x95\x9f\xda\x62\xdc\x9d\xf4\x65\xb9\xab\xd9\x60\x55\xd1\x34\x2a\xde\x01\xf3\x74\x3a\xfd\x4f\xaa\xc4\x74\x30\x47\xf0\xe6\x17\xae\x56\x60\x0f\x36\x65\x80\xd5\xe7\x84\x8b\xf2\x60\x15\x54\x77\xc7\xec\x1b\x8a\x85\x62\x98\x59\x2c\xdc\x8a\x28\xe3\x6a\x20\xb9\xbf\xdb\x28\x7d\x2a\xbc\x6a\xa1\x18\xba\xa7\x06\x8a\x30\x4c\xf8\xaa\xf6\x8f\x7b\xb5\x69\x38\x0b\x6a\x25\x5b\xb0\x95\x1e\x9d\xd7\xae\x54\x34\x9c\x8a\x90\xdb\xb4\xab\x85\xff\x87\x6d\x97\xab\xac\x02\x53\x31\x94\xb2\x57\x9d\xc0\x69\xff\xd0\x48\x39\xc3\x37\x2c\x24\x26\x84\xdc\x51\xe7\xe6\xd4\x6e\xc6\x41\x25\x60\xd9\x66\x2e\xee\x54\x14\x9e\x9d\x55\x01\x81\xdd\xdb\x22\x2b\x19\x23\x62\x3b\x5e\xce\x3f\xa6\x43\x80\x0d\x8b\x52\x79\xff\x17\xbc\x12\x07\xc7\x28\xf8\xc3\x91\xf9\xfa\x06\x1e\x07\x2d\x4a\x4d\x3b\x80\xb1\x75\xee\xfc\xe9\xf7\x6b\xe5\x9f\xa9\x6d\xd7\xf2\x63\x34\x92\x0b\x0d\x7c\x12\x03\x91\x73\xa3\x1f\xe0\xba\x2b\x77\x27\xdd\x5f\x4b\x11\xf7\xc3\xe1\xc9\x83\xa1\xe0\x6b\x71\xd7\x39\x99\xfd\x6d\xe4\x13\x8e\x07\xf1\xda\xf9\x84\xae\xe8\x05\x69\x28\xf4\xd3\x23\x75\xdb\x58\x50\xdd\x14\xca\x2a\xf9\xa9\xcb\xd2\x9f\xaf\x82\x9c\x0a\xc3\x0e\x8e\x6e\x4e\x78\xe2\xc6\x74\x27\x24\xf4\x4a\xb9\x0e\x88\xfe\x41\x3f\xe2\xeb\x96\x01\xa8\xe6\xca\x1a\x28\x73\xf9\x75\x1a\xaa\x71\xb2\xd8\xd3\xbe\xa0\xa9\xef\xe3\x1e\x17\x1b\xbe\xd0\x95\xfd\x70\xdb\xf0\x96\x7c\xef\x60\x7e\xb1\xf3\x6b\x1f\x69\x13\x95\x3b\xa9\x21\x00\x5d\x67\x16\x6f\x53\xa1\x05\x8c\x71\xfa\xf5\x50\x53\xce\x80\xa6\x4c\xf3\x2d\x80\x62\x2f\x53\xc0\x00\x2e\x98\x22\x83\x4a\x5e\xe6\xd2\x35\xe9\x0f\x6a\x52\x2e\xed\x55\x78\x43\xfe\xe8\x86\x90\x02\xeb\xcd\x56\x1e\xd4\x21\xea\x9e\x85\x5c\x59\xc6\x8c\xb2\x53\x08\x32\x03\x08\xc7\xe1\x8f\x1e\x57\x00\xb7\x36\xf5\x00\xb3\x16\x96\x35\x3d\x10\x03\x05\x5e\xf2\x93\x32\x9f\x61\xe9\x1e\xaf\x4a\x5d\x17\x94\xd2\x14\x5d\xc0\x7c\xc7\xc6\xa4\x76\xc0\x66\x4d\xce\x31\x9e\xee\xa7\x58\x31\xba\xc8\x21\x9e\x55\x28\x86\x7f\xd1\x0c\x68\x26\x4f\x9a\x04\x38\x93\xb8\x81\xdd\x99\xe5\x68\x9f\x98\xad\x2c\x08\xa7\x50\xd3\xfe\xf3\x96\x78\xdf\x62\x72\x13\x90\xcc\xd3\x0b\xe3\x41\x15\x88\x5c\x44\x7f\x34\x63\xb8\x1c\x71\x74\x53\x2c\x65\x22\xc2\x5b\x9f\xd0\x00\x3c\x93\xf9\x1b\xcf\xbf\xff\x4c\x92\x14\x7c\x16\x14\x8a\x61\xff\x77\xb5\x42\x00\x20\x7e\xbc\x57\x1f\xf1\x44\x7a\x1b\x5b\x67\xb8\x46\x50\x1f\x62\x37\xe1\xb6\xbd\x1a\x9f\xdc\x00\x1d\x0e\x38\x34\x7f\x5d\xa6\xf0\x49\x30\x2a\x14\xc3\xe9\xe7\x64\x08\x64\x76\xa1\xb8\x36\xfd\xe8\x1d\x0a\xfc\xc1\x34\xc0\x7e\x70\xd7\xb0\x96\xb7\x87\x85\x3a\xc8\xa9\x49\x0a\x50\x4d\x70\x6e\x6a\xd8\x89\x22\x4b\x58\xd8\x2c\xeb\xb7\xc2\xd4\xe8\xb1\x2f\x3b\x16\x4f\x05\x90\xe7\x05\xa2\x2b\xba\x7a\xad\x6c\xcc\x2c\x1a\x00\x4e\x35\xf7\xd4\x75\xba\x9b\x35\x62\x6e\xfc\xf6\xbe\xb1\x5d\x99\x98\x45\xe5\x06\xdb\xc8\x87\xa5\x4b\x84\x6b\xcb\x5a\x57\x6e\xee\x0d\xca\x5c\xca\x90\x8f\x1b\xc8\x37\x2c\xc8\x24\xac\x4d\x1b\x04\x60\x23\x10\x75\x87\x60\x3d\xfa\x4a\xfb\x6c\x23\x93\x78\x36\xaa\x03\x89\xba\x4b\x61\xa9\x61\x27\xfe\x0e\xd9\x13\x63\xd2\xc1\x08\x08\xff\xb1\x4a\x6c\x6f\x7e\xe2\x84\x64\x54\x34\xd1\x09\x5a\xf6\x41\x8f\xaf\xd1\x2a\x73\x98\x7f\x08\x2c\xc8\x98\x3d\xd2\x0b\x39\x85\xbc\xfc\xcc\xe9\x64\x5f\xe4\x83\xab\xa3\xd8\x2d\x6c\x3a\xab\x3b\x56\x19\x06\x96\xdb\xe6\xaf\xbf\xcb\xc3\x7d\x77\xe0\x80\x46\x5a\xa1\x18\x7e\xff\x41\x0d\x2e\xce\x29\x89\x31\x53\x42\xa4\x0e\x73\x7d\xb2\x27\x37\xaf\xf5\x52\x98\x8e\x5d\x2b\x65\x66\x2c\x61\x1f\x62\x53\xf6\xca\xb7\x86\xa8\x5b\x6c\x6e\x5c\x56\xec\xcd\x3e\xb6\x56\x65\x8e\xfb\x88\x80\xa5\xea\x9b\x2f\xb6\xab\x43\x2f\xca\xcd\xac\x16\xb7\x40\x38\x3c\x62\x8a\x4a\xef\x57\xc7\x84\xb9\x37\x75\xa3\x2f\x31\x59\x93\x5c\x08\xdc\x24\xe9\x8d\x98\xcd\x8b\xde\xd9\x4c\xa5\x27\x6d\x18\x9a\x60\x54\x08\x43\xaa\x9e\x57\xe6\x67\xcf\xc2\xef\x2d\x2c\x40\x65\xa2\x43\x08\xc3\x1f\x28\x72\xd2\x46\x14\x89\xc5\x56\x26\x7b\x71\x56\xd2\x0f\x95\x5a\xfe\x59\x6f\xf6\xc3\x7b\x79\x14\x29\x51\xdf\xe7\x22\xa8\xb9\x47\xde\x4b\xbf\xf8\x6e\x0a\x28\x20\x3e\xba\xbe\xe2\xe1\x76\x91\x04\x1c\xda\x8c\x05\x47\xee\x7f\xa6\x45\xf0\x3d\x3a\xba\x50\x22\x85\xff\x73\xa3\xd2\x57\x63\x64\xc7\x1f\x6c\xe7\x3c\xd9\x26\x35\x90\x6d\x53\x38\x58\x3d\x67\x53\x32\x84\x75\xe4\x71\x13\xa9\xfc\xdf\xed\xd1\x4b\x1a\x13\x33\x70\xf7\x16\x53\x32\x6e\xf9\x5b\x98\x85\x6c\x93\x91\x8a\x0a\x8c\xff\xea\xe8\x56\x3f\x21\x86\x48\xc2\x77\x77\x9e\x54\x76\x38\x96\x65\x59\xa0\xf7\x7b\x48\x35\x23\x8b\x0e\x33\xb7\x7a\xc8\x2f\x59\x96\xae\x9a\x61\x80\x26\x55\xa2\x7a\xb3\xef\xdc\x26\x5a\x38\x66\x58\xa4\xce\xd7\x0f\x5f\x54\x66\x32\x16\x66\x1e\x06\x2c\x7f\x66\xc8\x46\xe5\x97\x90\x3a\xb1\xc9\x6a\x1e\x7e\xf2\xeb\xd2\x21\xb0\x12\xd8\x65\xd1\xfa\x48\x89\xf3\xcd\xdc\x05\xbf\x70\x07\x67\x20\xa9\xec\xa3\xe7\xb5\x15\xa4\x61\x44\xff\x93\x47\xc7\xcf\xee\x8e\xf7\x23\x66\x61\x16\xe3\x6b\xb7\x7c\x4e\x43\x8a\x54\x50\x8d\xb3\xbe\xf2\xf5\x7e\xe9\xef\x4b\x7c\x64\x37\x15\xa6\x5f\xe6\x44\xff\x56\xa5\x26\x9b\x08\x99\xc3\xec\x73\x7b\xc4\x81\x31\x00\xf1\xc3\x65\xbd\xbf\xb5\x3a\x09\x3d\xc4\x69\x01\xd1\x65\xae\x3d\xaf\x50\xe0\x29\x75\x6d\x14\x9d\xcb\x37\x97\xa6\xd9\x27\x88\xd5\x38\xad\x40\x6f\xe1\xfe\xf3\xad\x0e\x2d\x7f\xd4\xb9\xc2\xd2\x57\x26\x0d\x53\xd6\x22\xd4\x54\x08\x74\xb9\x35\x8f\x29\xa4\xd8\x06\x72\x4c\xde\x4f\x7e\x58\x11\xf0\x2b\x21\x20\x34\x87\x5f\x7b\x23\x3d\xa3\x2f\x31\x60\x49\x79\x7d\x10\x0a\x72\x5f\x3c\xc6\x2b\xc5\xdb\x2b\xb8\x89\x15\x9d\xcf\xff\xd5\xc5\xef\xdd\x1c\x24\x60\x96\xbd\xf9\xd9\x1d\x0a\x7d\xda\xfc\x70\x9d\x7c\xb8\x02\xe3\xc0\xb9\xba\x5c\xb8\x90\x75\x48\x6d\x4e\x6e\xed\x11\x67\x01\xb9\xd8\x56\xa5\x34\x32\x07\xd7\xaa\xdb\x75\x82\xeb\x34\x88\xba\xfa\x2f\x9e\x51\xc7\xfc\x7c\x16\x5a\x0c\xe9\xf2\x24\xfc\x54\x40\xc4\x4b\x86\xd3\xe1\xf3\x5a\x75\x40\x79\xa9\xf4\x63\x8d\x4f\xc0\x70\x25\xb0\x11\xb3\x63\xd7\xcd\xdc\x25\x47\x93\xd7\x5d\xa1\xad\x0a\x60\xcf\x69\xff\xde\x0b\xbc\xa8\x3b\x8e\x6a\x31\x7e\xb7\xbf\x70\x7e\xb4\x72\x7b\x4a\x0c\x37\x5a\x9e\xf3\x9f\x36\x0e\xd3\x8b\xe7\x92\x50\x51\x3a\x30\xeb\x4a\xad\x57\x6d\x88\x8d\x4c\x7e\x4f\xfa\xa0\x4c\xe9\x12\x7a\x48\xdf\x7d\xaa\x65\x29\x19\x85\xf8\x84\x2a\x99\x3d\x35\x47\x7d\x7a\xb6\xe0\xab\x64\xae\x99\x2f\xbb\x28\x70\xba\x03\xcf\x2b\xc8\x70\x9f\x7b\x3c\xe5\xaf\x58\x42\x7e\x3c\x89\xbf\xee\x65\x8d\xa5\xc8\x2a\x98\x6a\x8d\xcd\xee\x23\x5a\xe5\x41\x7c\x9c\x80\xca\x0a\xf9\x61\x0a\x5a\x38\x50\x4d\xd4\x33\x58\x81\x42\x7a\x30\xf5\x85\x4f\xf3\x9f\x3b\x46\x28\xc2\xb9\x81\x9f\xb2\x9c\xcd\x7c\xff\x48\x92\xdd\x6d\xa2\x4a\x9b\xff\xdd\x45\xcd\x29\x94\x71\xf1\x0d\x52\xb2\x79\x0f\xf3\x87\xc5\xf2\xd7\x4d\x9e\x39\x73\x52\x61\x66\xd4\x5d\xe6\x3e\x34\x3a\xf5\xe5\xdd\x58\xd1\xbb\x37\xb7\x7d\xb9\x86\xad\xb2\x28\xae\x83\x86\x2c\x28\x25\xdf\xf7\x8a\xae\xc1\xca\x6f\x1a\xef\xe5\xef\x7b\x57\x1f\xf4\x82\x9e\x1f\xc7\xfc\xfd\xe0\x9c\x7e\x2a\x5d\x1b\x19\xdc\x4b\x0c\xa2\xc1\x7d\xf3\xb5\xb4\xc0\x1d\xcd\xe2\x31\x44\xf6\x4d\x0d\x0c\x5b\x75\x68\x23\x7e\xe6\xf9\xea\xa3\xba\x67\x2a\x3c\x5d\xc7\xc0\xb1\x8d\x7f\xa1\xff\xb5\x8d\x96\xc5\x16\xa3\x7d\xed\xd5\xf3\x97\xf7\x1b\xa4\xec\x26\x45\xd3\x9c\x79\xe9\x3a\xd9\xcb\xd0\x6a\x93\x16\x6a\xc4\xf7\x82\x12\xf1\xac\x16\x58\x68\xb6\xd1\xa6\x1e\xc8\x28\xc3\x41\x92\xbd\x7f\x85\x7c\xcf\x65\x62\xd7\xa0\xa7\xac\xc6\x84\xf1\x15\x47\x79\x45\xb1\x04\x39\xad\x9a\xe2\xb9\x43\x93\xb8\xf6\xe2\x12\x1f\x39\x36\x6e\xb6\x2c\x97\x72\x57\x68\x08\x26\x2b\xf0\x83\xc4\x25\xa3\xf3\x59\x2d\x5c\x90\x58\xe3\xf9\xd2\xeb\xa5\x92\xfe\x8c\x99\x85\x62\xf8\x95\x53\x1a\x7f\xb8\x82\x1d\x83\xc4\xe3\xc3\xdc\xf5\x53\x64\x36\x28\xd9\x88\xfb\xf0\x34\x2f\x4a\xc3\x13\xc0\x78\xdd\x77\x51\x71\x07\x8a\x15\x49\x33\x0f\x3d\xae\x4d\x7b\x68\x10\x23\x8f\x73\xff\xfa\x8e\x82\x80\x07\xad\xf5\xb9\xf2\xf6\xa2\x92\x47\xed\x20\x6a\x7d\xe0\xac\xf4\x57\x16\x18\x93\x63\xd1\xe8\xcc\x3c\x73\xb0\x68\xf1\x30\x8e\xf5\x47\x8b\xbd\xf9\x7b\xf3\xc9\x62\x36\x88\xa7\x28\xb9\x7f\x9f\xa5\xf7\x2b\x1e\x16\x0e\x65\xb9\xe7\xe6\x6a\x10\x0c\x13\xdb\xae\x45\xfa\x24\x47\x74\x1e\x97\x4b\x4d\x3b\x0a\x6f\x19\x6e\x74\x51\xf8\x18\xad\x91\x80\x91\x96\xe8\x7a\xcd\xf0\x11\x5a\x36\x2c\x51\x33\x71\xcd\x64\x7b\x15\x3f\xab\x9a\x18\x79\x85\x5f\xd7\x8c\x21\x3b\x27\x4d\xe2\x76\xd6\x22\xe2\x7f\x4a\xd3\x8f\x72\x11\xb3\x09\x82\x4d\xb8\x98\x75\x84\x33\xfa\x4d\x68\xe1\x94\xaa\x1f\xac\x25\x6b\xdf\xb0\x57\x97\x8e\x71\xea\x44\x31\x0e\xfa\x49\x9b\xb0\x6b\x41\xcc\x4f\x89\x45\xe5\x7e\xb5\x4e\x9b\x2f\x63\x13\x33\xc5\xbe\x38\xb7\x6a\xa5\x6e\x50\x08\x83\x12\x10\x63\xb9\x73\x61\xf2\x3c\x27\x17\xba\xa2\x47\x72\xd9\x60\x49\xb4\xf0\x2d\x02\x18\x72\x27\xe6\xad\x65\x9f\x57\x23\x19\x63\x81\xeb\x0b\x7f\x96\xbf\xbb\x5e\x33\x69\xb4\x30\x8a\xe9\xea\x6f\x8c\xe6\x45\x90\x67\x60\xd7\x8f\x25\xde\x4e\x69\x82\xce\x86\x1d\x94\xe2\xeb\x93\x19\xb2\x2b\xdd\x38\x4c\x99\xca\x44\xdf\x96\x5b\xa9\xfd\x3b\x64\xd6\x88\x2f\x46\xdc\x9f\x18\x2b\x47\x2f\x8c\x02\x2e\xef\x6b\x7b\x79\x05\x72\xf7\xc2\xa5\x77\x2e\x5e\x08\x0f\xfb\xf6\xf9\xd1\x37\xbf\xf2\x11\x65\xda\x69\x26\x8a\x67\xdf\xec\x97\x2a\x7c\xcd\x40\xb4\x70\x99\x6f\xee\x54\x6d\x5c\x5d\x57\x18\x4d\x80\x2c\xe0\xda\xf4\xa7\xad\x22\xe6\x8b\xdb\xde\x78\x91\xff\xfa\xa5\x41\xb3\xaa\x0a\x9d\x1f\xbb\x51\xff\xf6\xd4\xc3\x4c\x40\xaf\xa6\xb6\xa5\xcf\x57\x99\x21\xc7\xa8\x46\x3f\x51\x66\xb6\xbf\xf6\x5c\x11\x77\x09\x9e\xc0\x79\x9e\x56\x58\x0d\x65\x64\x8b\x39\xcf\x03\x7b\xf9\x2d\xbd\xdd\x44\x35\x65\xbd\x30\xed\xe0\x48\x49\xbe\x69\x59\xcb\x6f\xe9\xd2\x5d\xf2\x1a\x98\xc5\x03\xd4\xf0\xae\xed\xd2\xab\x00\x99\x2d\x47\xf9\x67\xe7\xc7\xb4\xbc\x21\xe1\xbe\x13\x1f\xca\xb0\x7b\x54\xba\xf6\xb0\xb0\x30\xda\xc9\x0b\x4b\xed\x45\x7c\x5d\x8f\xb8\x09\xf3\xb1\x5b\x3e\xa8\xd7\x37\xc0\x1f\xa1\xac\x50\xc1\x0e\x66\xc8\x86\x92\xbc\x18\x5e\x31\xfb\x0a\xd1\xf1\x02\x8a\x0a\xa2\xe0\x86\xd5\xda\xa6\xd5\x2e\xd4\xb0\x65\x92\x14\x7a\x27\xdc\x2f\x07\x18\xb4\x87\x7b\xfc\x1f\xbf\x42\xe9\xa0\x81\x9d\xb1\xfe\xd5\x96\xf1\x79\x7c\x30\x33\xab\x2e\xd1\xfe\x0e\xbc\xe5\x38\x7b\xf5\xc0\x56\x59\xdc\xd6\xb9\x41\x23\xa4\x89\x0f\x8c\x16\x1f\x17\x78\x92\xfc\xa0\xad\xd6\x98\x06\xa8\x14\x44\xe5\xb8\x6f\xc7\x42\x15\x6d\xb3\xd3\xe8\x07\xe4\x8f\x17\x2c\xf2\x74\xe8\xbb\xb8\xfb\x52\x51\x14\x03\x37\xfb\xa8\x9c\x0a\x71\xa7\x4a\x25\x86\x7c\xf3\xe9\xf4\x89\x33\x71\xd4\xf4\xa1\x1a\x01\x4a\x3d\x4f\x44\x9f\xda\xa4\xcc\x82\xc1\xad\x2f\xba\xf7\xcb\x85\x61\x39\xad\x11\x87\x06\x1e\x1c\xb9\x97\x34\x50\x5b\x05\x9c\xb3\xa3\xe2\x42\xf8\xae\xcd\x65\x9a\xf0\x87\x53\xa6\xcc\x88\x2a\x1b\xd0\x8f\x0f\xd9\x6c\x4d\x7a\x8e\xda\x76\x0c\x4c\xcc\xd6\xc6\xeb\x1c\x6d\xc3\x0e\x4c\x2c\x66\x22\x61\x6d\x8c\x32\xba\x42\x0c\x74\xd8\x72\xe3\x14\x46\x99\x87\x31\x17\x2c\xfc\xd5\x2e\x41\xc6\xae\x7b\x51\xbb\xd1\x4d\x00\x22\x61\xa5\x93\x91\x11\x3d\x29\xca\x5c\x2e\xc1\x93\xae\x00\x06\xde\x27\x58\xbc\x8e\x69\x63\xcf\xe3\xfa\x35\x0f\x5e\xd0\x9d\x6e\x62\xa2\x08\x9f\xd1\xd6\x0f\x7c\x50\x6b\x9f\x90\x63\x58\xfc\x72\xa7\x7f\xfc\x8f\x67\x68\x4f\xa9\x86\x59\x05\xaa\x70\xce\xdf\x9c\xbd\x95\x37\x51\x95\x80\xd8\x7e\x94\xa8\xc3\x9f\x4c\xd4\x74\x6e\x02\x62\x9b\x81\x2b\x1a\xfd\xdf\xbf\xa5\x15\x1a\x8e\x6f\x31\xd4\x13\xbf\x94\x4f\xed\x1a\xa9\x2a\x35\xb7\x14\x69\x03\xd2\xc7\x7b\xf2\xcc\xae\x99\xb1\x42\xa9\xd5\x29\x8f\x86\x87\x1a\x4d\x38\x1a\xf9\xee\x2d\x52\xaf\x96\xf6\xa8\xdc\x4d\x65\x1c\x50\xc3\xc8\xe3\x13\xc2\xec\xcf\x97\x0a\x0c\x7e\x93\x26\xd0\xed\x3b\x5e\xd3\x5a\x11\x12\x63\x09\x45\x25\xda\xff\x0d\x39\x56\xb4\x70\xd3\x31\xaa\x58\x75\x5c\x3c\xf8\xae\x90\xa9\x44\xcc\xc7\x00\x25\x38\xb5\x2c\x45\x72\x8d\x4e\x1e\x5c\xbb\x77\xce\xca\xf5\x28\x0b\x3c\xaf\x4a\x9b\x58\x0f\x8b\x6f\x4a\x48\x15\xa7\xb0\x67\xbe\x14\x2a\x03\xb5\x5a\x29\xe0\x70\xbb\x30\xd0\x40\xd0\x06\x23\x1e\x89\x49\x70\xe5\xdd\x52\xd1\xdc\x93\xe6\x74\xe1\x49\x65\x97\x85\xa2\x70\x59\x28\x86\x7f\x91\xe4\xef\x26\xa9\x28\xf1\xbb\xca\x47\x6b\x85\xf9\xa8\xc1\x80\x99\x2d\xbf\xf3\x49\xcd\x3a\x6f\x55\x40\x92\x4b\xbc\x64\xab\x6e\xd5\x58\x03\x4b\x00\x6c\x26\x40\xb2\x70\x34\x4f\x18\x65\x1a\xb0\x42\x99\x94\x7d\x8b\xf7\x4c\x23\x65\xea\x2f\x31\x8a\x4c\x43\x8c\x84\x72\x5f\xd8\x28\x65\xdb\x60\xa0\x7d\xa9\xb2\xed\x28\x21\xa3\x5a\x26\x8c\xcf\xd6\xd6\x9b\x23\x1d\x95\xa6\x63\x73\xff\xcb\xf8\x5c\x4c\x13\xd3\x35\x5a\xe2\xc2\xd0\xf0\x6f\x0e\x2b\xa0\x90\xc0\x31\xb1\x61\x23\x11\x28\x67\xd9\x9a\x2d\x51\xd9\xc7\x8e\x10\x1c\x68\xdc\xa6\x75\x4e\x81\x67\x0b\x81\xcb\x62\x6f\x7e\xd6\x63\x1a\xdf\x30\xf0\xfc\x38\xbe\x64\xda\x6e\x51\xf9\x3c\x65\x49\x23\x0e\x0b\xa5\x96\x9e\x4a\xf0\x64\xc5\xcf\xed\xd8\x91\xfe\x44\xa0\x31\x2c\x4a\xcd\x6f\x4c\x48\x8b\x63\xdd\x2a\x52\xc3\xe7\x35\x06\x8e\x2a\x5d\x25\x32\x8b\xa7\xb1\xea\x19\x46\x86\x50\x9c\xc8\x7f\x56\xdb\xa9\xb9\x01\xf3\x82\x84\x9a\xfa\xfa\x80\x4b\xa3\x3f\x5c\x3c\x6b\x71\xa1\x18\x4e\x3c\xc3\x5f\x2c\x68\x52\x08\xcd\x99\x62\x6f\xe6\xcb\x61\x3a\x2c\xd4\x91\x3a\xcf\xcb\x7d\x5a\x8b\xd5\x55\xc4\x6c\x15\xb3\x99\x19\x35\x51\xb2\x2b\xca\xd4\x08\x3c\xdc\x12\x3c\x32\xb3\x07\xcb\xaa\x8a\x61\x9b\x54\x08\xe5\xd8\xb7\xd1\x03\x47\x69\x7d\x92\x6f\x99\x0c\x35\x90\x2d\x70\x34\xfd\xf2\xf2\x70\x71\xb4\x6f\xbf\xeb\x3b\x44\x12\x0b\x88\x87\x59\xbc\x1d\x0b\x1f\xd2\x6c\x5a\xc1\x79\x88\x89\xd7\x1a\x6e\xde\xa5\x70\x8b\x6c\x83\x5a\xd4\x2e\x94\x03\x4e\xb4\x0b\xcf\x3c\x3c\x54\x2b\x77\x02\xc7\x84\x8e\xfe\x1f\x8e\xe9\x98\x3b\x54\xab\xc5\x40\x8c\x62\x6f\xee\xe8\x19\x4d\x4c\xb9\x46\x6d\xec\x78\x55\x0e\xe5\x8a\xfa\xd8\xb2\x25\x5b\x8c\xa9\x53\xe0\x07\x44\xdf\xe2\x89\xa3\x62\x87\x7a\xed\x6c\xda\x50\x3d\x86\xaf\x38\xad\xdc\x33\x1a\xd8\x60\x26\xcb\x59\xab\x53\x14\x78\x94\x18\xc9\xf0\x3e\x77\x9e\xf5\x41\x95\xd2\x43\x99\x0f\x08\x7b\xd6\xaa\x29\x74\x95\x35\x42\x19\x47\xdb\x98\xd3\x45\xe2\x68\xeb\x2e\xd6\x98\xaa\xd4\xf1\x2d\x3e\x46\x3a\xf4\xf8\x70\x45\x40\x28\x8a\x18\xca\x60\xc4\x3c\xa3\xef\x7d\x55\xff\xdf\xdc\x66\x01\x87\xc4\x8e\xc1\x9a\xb1\xb1\x42\xe6\xb9\x23\xf2\x9e\xe1\x1e\x60\x41\xfb\x62\xb9\xf7\xef\x8a\x0d\x90\xe7\x33\xc2\x87\x48\x99\x57\xb6\xb4\x89\x30\x10\x78\x00\x0c\x0b\x0f\x77\x24\xcd\xb4\x01\x19\xf0\xa7\x53\x74\x3d\xa3\x5a\x1a\xa4\x9d\xf9\xdc\xd0\x21\x2a\x8a\x19\x0c\x35\xa3\xa7\xfb\xfb\x07\xb4\xfd\xb3\x8d\x3c\x9f\x18\x5e\x5f\x48\xdc\xdc\xb1\x43\xfc\x1b\x95\x03\xdb\x2e\x78\x06\x02\x14\x51\xf6\xc2\x26\x4d\xf5\x0a\x19\xd5\xc0\x15\x79\x7f\xed\x36\x41\xb4\x44\xdc\xf0\xb0\xd8\x9b\x1f\xa9\x58\xf9\x19\x18\x41\xbf\xe2\x6a\xbd\x27\x8c\x3e\x6e\x88\xa7\x22\xbd\x59\x7f\xb8\xc0\x88\xfb\x9c\xed\xbd\xff\x16\x55\x94\xa4\x8e\x6d\x2a\xb0\xc7\xe1\xbf\x95\x46\x29\x98\x36\xaf\x65\x67\xf2\xfe\x71\x4a\x94\x0e\x3c\xe2\x70\x3b\x8e\x70\xfb\x16\xbe\xc3\x31\xa1\x81\xea\xcd\x7d\x7e\x4c\x52\x17\x38\xb8\x55\x56\x7b\xee\x91\xf4\xbb\xaf\x30\xe4\xe3\xa8\x55\xe0\x1b\xd6\x5b\x35\xf4\x53\x42\x85\x8f\x17\x41\x47\x66\xc8\xf1\x9d\x6f\x61\xcf\x43\x36\x75\x48\x95\x14\x8a\xe1\xc2\xf5\xba\xf5\x15\x35\x79\xe3\x1a\x9e\xda\xa0\xfd\xd8\xc4\x81\x57\xac\xf7\xbe\x74\x56\x98\x8c\xb9\x36\x3c\x6f\xbe\x13\x1c\x57\x1a\x91\xc4\xd9\x16\xd9\xbb\xf7\x8f\x12\x1a\x3a\x82\x40\xaa\x0f\x99\xb6\x6c\x88\x69\x27\x5e\x00\x6b\xb3\xdc\x8a\xba\xce\x78\x06\x56\x80\x4a\x37\xce\xbd\x77\xa5\x22\xe8\x44\xab\xdc\x92\x01\xca\xcf\x6e\xed\xd2\x50\xd0\x82\x89\x61\x9c\x53\x77\x28\xda\xb5\x89\x52\x5f\x92\x8b\x3e\x37\xff\x4a\xed\x57\x3b\x42\x49\xf2\x8e\x27\x25\x31\xc0\x45\xcc\x77\x24\x21\x75\xf7\x78\x85\x3d\x8d\xed\x72\xd4\x47\x19\x36\x22\x35\x3e\x8d\x5c\x36\x47\x31\x6e\xc0\x58\x30\x4a\xb2\xab\xd6\x8d\xd3\xca\xf9\xd5\xd8\x47\x2d\x70\xeb\xf0\x23\xbb\x84\x9b\xf2\xa4\xc2\xe4\xe9\xd1\x3b\x10\x44\x20\x17\xe4\x75\x85\xc8\xc0\x77\x76\x26\x37\x36\x98\x08\xcf\xe1\xdb\xaf\x2a\xe8\x58\xa7\x9b\x36\xa3\x3e\xee\x0f\xe1\xd0\xb4\x7e\x57\x54\xaa\x71\x99\x9f\xc2\xdb\x9a\xfa\xad\xc6\x78\x14\xb8\xbd\xff\x62\xf2\xcb\xd4\x31\x33\x09\xdc\xb9\xcc\xc5\x15\xfc\x74\xcf\x05\x65\xc8\xde\x5c\xf9\xdc\x10\x85\xdb\x46\x8c\xaa\xa0\x5e\xdf\xaf\x61\x6c\xc1\x90\x22\x11\x43\x58\xf7\x80\x36\xfb\x23\xb5\xe8\x79\xf2\xc9\xea\x1d\xfb\x06\x37\xe2\x51\xaf\x8d\x84\x4b\x6a\x6f\x76\x76\x3f\x1e\x00\x96\xf8\x41\x6c\x07\xff\xcc\x8d\x03\xa5\x6c\x0b\xf0\x98\x4a\x7a\xdd\x88\xcc\x18\x8f\x96\x31\xc6\x6a\xd5\x3d\x2c\x2d\xe3\x39\xe1\x17\x4b\x1a\xfd\xc2\x01\x0d\x8b\x78\xed\x55\xda\x2a\x0b\xc9\xc0\x52\x62\xf7\x67\x9f\x57\x48\xf7\x84\x95\x82\x56\xc1\xc9\xd7\x37\x0c\xd7\x9e\x78\x32\x97\xea\xcd\xfe\x69\x7e\x6a\xe6\x3d\xa3\x30\x13\x14\xe9\x26\x3d\xab\x23\xe6\x0d\x4c\x62\x36\x48\xb8\xf9\xac\x8c\x7c\x15\x9b\x42\x62\xcf\x8e\xbb\x71\xb0\x9a\x10\x28\x03\x73\xf1\x5f\xf5\xd7\xa0\x3e\xb0\x28\x44\x0e\xaf\xa6\xc3\x9e\xc1\xf2\x27\xf9\xb8\xe6\x42\x49\x73\xe7\x4b\x92\xcc\x49\xbb\xe3\x4d\x1d\x5d\xc6\xcb\x4b\xc1\x94\xe4\x13\xad\xf3\x17\x34\x4a\x08\xf6\x02\x5d\xb5\xe0\xa3\x53\x12\x5a\x40\x95\x28\x72\x03\xb9\xc1\xb3\x44\xc1\x0a\xe6\x2c\x81\x03\xc9\xeb\x27\x8b\x0b\xea\xe8\x6f\xe1\xc2\x25\x37\xdc\xfd\xff\x9e\xfd\xdd\x36\x46\x56\x47\x90\x4c\x7c\x1f\xe8\x8a\xd9\x43\xfd\xe5\x5f\xd8\x70\xfe\xf9\x3d\x7e\x62\x68\xfa\xf2\x77\x16\x62\xe9\xc4\xdb\xcf\xca\x99\xc5\xe4\x19\x20\xc4\x97\x3b\xae\x59\xd1\x96\x63\x2d\x5c\xfd\x73\xbc\x7d\x32\xdd\xfb\x56\x02\xe2\x54\x50\xcd\xed\x6b\x66\x3f\x6f\xac\x1c\x13\x9a\xac\x69\x62\x95\xaa\xfd\x95\x72\x22\x79\x0c\x9c\x44\x98\xf2\xbe\x9d\xfe\xcc\x53\x67\xc6\x68\x8a\x1f\xd8\x0a\xb7\xc6\xb6\x01\x4a\x4d\xcc\x58\x36\x67\xc5\xc6\x24\xfd\x30\xdc\x82\xd3\xc8\x1e\x68\x53\x2c\x57\x29\x08\x24\x85\x73\xfb\x69\x52\xbe\x7c\xe5\x12\xff\xbe\x9b\x35\x5b\x75\xcf\x47\xac\x1a\x4f\x57\xb2\xcb\x37\xf3\xb9\xff\x9d\x02\x51\xd9\x92\xfb\x6f\xdd\x91\x54\xa4\xe0\x42\x10\xbe\xef\xff\xa7\xeb\xeb\xe3\xad\xa8\xea\xbd\xdd\x2f\x21\xf1\xce\xe1\xf0\x2a\x22\x12\x02\x02\xfb\x74\xce\xe1\x9d\x8c\x10\x11\x09\x91\x43\x80\x48\x44\x5e\xd6\x9e\x59\x7b\xcf\x3a\x7b\x66\xd6\x66\xcd\xcc\x3e\x67\xa3\x92\x99\x19\x91\x9a\x99\x8f\xd7\x4b\x44\x44\x44\x46\x46\xc4\xe5\xfa\x70\x89\xc7\x4c\xcd\x48\xcd\xc8\xc8\xb8\xe4\x45\x22\xf3\x9a\x99\x99\x97\x4b\x44\x9e\xe9\xf9\xcc\x6f\xad\x99\xb5\x66\xed\x73\xff\xb9\xf7\x93\xc0\x39\x7b\xcf\xac\xf5\x7b\xfd\xbe\x3c\x37\x40\x84\x4c\x54\xe1\x92\x33\x47\xd2\x2b\xcb\x2e\xca\x6c\x53\xec\x8c\xa5\x41\xd9\x30\x57\x11\xe5\xa3\xbe\xea\xf9\xfb\xf8\x5a\xb5\xab\x04\xa9\x08\x88\xc4\x1f\xb8\xa8\x53\x25\x03\x0f\x5b\x34\x36\x1f\xc9\x8d\x5a\xaa\xf9\x6d\x97\xc4\x60\xb4\x5f\x4b\xfa\x13\x75\xa2\x6a\x52\xe5\xcb\x8d\xfa\x9c\x8b\x63\x55\xcc\x3a\x76\xcb\x82\x45\x1d\xd7\xa6\x7f\x93\x96\xf3\x0c\xa9\xb6\xea\xb7\xef\x1e\x91\xea\xf8\xca\xf0\x2a\xe0\x61\x1c\x3b\x3b\x54\xdd\xfd\x53\x98\x66\xfb\x7d\x14\xcc\x0e\x75\xaa\xfc\xc5\xf5\x64\xd7\xcd\x94\x78\x2c\x58\x4a\x2c\x9b\xaf\x9c\xe7\x96\xb6\xd6\xe8\x2f\x7d\xed\xbc\xbc\x15\x16\xa5\x36\x29\x23\x8e\x7b\x9d\xda\xa4\xd5\x4e\x16\x22\x42\x2d\x0f\x02\xc0\x7f\xdf\xdd\xa4\xe4\xe2\x6e\x4f\x94\x61\x77\xbc\xa1\x6f\x17\x9d\x6a\xac\x5c\x97\xd9\x64\x36\x4b\x5f\x56\x55\x92\x72\xc6\x5e\x6d\x44\x8a\x18\xf1\x12\xd4\x77\xf6\x54\xa8\xbc\x5d\xa1\x99\xb5\x99\x97\xb1\xc3\x77\xf2\x13\x76\x1d\x2a\xda\xb8\xe6\x35\xde\xad\x0f\x0d\xe2\x48\xcd\x45\xc8\x35\x3c\x0b\xf5\xe2\x90\x97\xdf\xa4\x48\xb0\x14\x6d\x6a\x88\xc0\xd0\xf1\x5c\x6f\xb6\xdf\x38\x9e\xab\x6d\x99\xa0\xab\x90\x38\x51\xd9\xc4\x23\xe9\x13\x3b\x38\xfe\x6e\x15\xf2\x9c\xc0\xf3\xb0\x3a\x6d\x3e\x71\x54\x77\x61\xf6\x7c\xea\x60\xe6\xc5\xeb\xbe\xdf\x49\x01\x5e\xf8\xe4\xfc\x81\xbf\xf5\xb6\x9c\x68\x18\xe0\xe2\xdd\x11\x0e\x39\xd9\xb8\x44\xad\x61\xc6\xdd\x6c\xa1\x22\xdc\xf3\x58\xe3\xaa\x9d\x2f\x12\xfa\x1f\xbf\x4c\xaf\x35\x5d\x5f\x21\xcb\x0e\x7e\x34\x3d\x55\xbe\x5a\xf8\x51\xe6\xfe\xf4\xa2\x2a\xc7\x57\xc2\xae\xa9\xbe\xcb\xec\xdb\x7d\x05\x81\x34\xe6\x6d\xb7\x3d\xd4\x3f\x7e\xeb\xa0\x53\x32\x57\x07\xa7\x39\xa4\x50\x22\x2e\x8a\x05\xd4\xb3\xfd\xce\xa4\x63\x2c\x43\xc4\xee\xb5\x73\xd8\xab\x78\xb6\x92\x28\xcc\xfb\x08\x9c\x2f\x07\x5e\x94\x51\x85\x80\x6a\xd0\x43\xb2\x2c\xea\x14\x62\x80\xa1\xbb\x43\xe1\xe2\x0a\x03\xa9\x78\xc5\xf6\x67\x5f\x3e\x6c\x1f\xdb\x00\xf8\xca\xdf\xa9\xe8\xfb\x46\x97\x19\xf0\x27\x0b\x4e\xc7\x0e\x49\x3e\xd9\x8c\x5d\xc8\xbe\xb9\xbf\x4d\xd4\x84\x5d\x70\xd5\xa6\x75\xd8\x17\x0b\x1c\xc3\x2d\x43\xf4\xd3\x63\xdb\xb8\x2c\xaa\x93\xfc\xd8\xfd\x0a\x9f\xc3\xe6\xb8\x9a\x4c\xc7\x9e\xe8\x39\xd6\xa2\xbf\x3d\xbd\xd0\x61\xcb\x0f\x0f\x35\x5d\x19\xb1\x98\x27\xf9\x9d\xc3\xfa\xcf\xae\x61\x16\x4f\x2e\xb3\xbb\x4f\x26\x71\x07\xa5\x78\x79\x37\xbe\x33\x4c\x2b\x7a\xb8\x4c\xc6\x9f\x6d\x6d\x16\x60\xfb\x94\x8f\x58\xe1\x5c\x7a\x21\xcf\x4f\x8c\x50\x5f\xa0\xf4\xb3\xbf\xdc\xa3\xf7\x31\xd8\x45\xa6\xb8\xcf\x61\xe0\xcb\x28\x06\x92\xa1\x90\xea\xd7\xdc\x3f\x42\x2b\xc2\x27\x0b\x4b\xa1\xcc\xa5\x3b\x15\xe4\x81\x8f\x11\xe3\x48\xbf\xc1\xb6\x62\xb5\xa3\x8a\x9e\x65\x3b\x34\xea\x46\x31\x30\xcb\x58\x18\xbe\xe5\x3f\xaf\xd1\xaa\x91\x47\x10\xff\x3e\x32\x7a\x2f\x3e\x2f\x30\xb2\x86\x45\x79\x0d\x3b\xf5\xb8\x36\x1b\x02\x79\x9a\x58\xc9\xb9\xb2\x7c\xb4\xb2\xd0\xb2\x6d\xc4\x94\x8f\x93\xeb\xbb\x6c\x8c\x72\xd2\xea\x2e\xb5\x4d\x65\xae\x9a\xbd\x4d\xd3\x0a\x2b\x61\x04\x36\x6b\x3c\x1a\xd4\x04\xff\x98\xc3\x02\xe0\x46\xfd\xf3\x5b\x49\x49\x56\x25\x7e\x3c\x5c\x9a\xff\xc0\x18\x75\xa8\x08\xe8\x06\xe5\xb7\xd8\xee\x60\x45\xc4\x00\xe6\x81\x79\xe7\x98\x26\x9f\x82\xdc\x8a\x20\xf6\x5c\xff\x90\x0e\x8f\x36\x78\x4b\x28\x8a\xa3\x66\x45\x76\xa1\x42\xd5\x1d\xea\x7f\x6c\x19\xa7\xb2\xe9\x2b\x8d\x7d\x6e\x2e\xab\x79\x90\x38\xd4\x05\xef\xef\x44\x50\xf2\xfc\x9e\x66\x25\xc6\x20\x33\x16\x81\xc8\xde\x2c\xc5\x41\x1d\xa3\x04\xbb\xc7\x6e\x59\xf1\x7c\xb0\x21\x44\x8c\x1d\x21\x7f\x50\x17\xe5\x6e\xe0\x51\x70\xdf\x7e\x7f\x42\x74\x9b\x35\x07\x12\xc9\x39\x59\x30\x1b\x16\xb6\x01\x4e\xdc\x93\x1d\x75\xa6\x2f\xfc\xa7\x8d\xd1\xdf\xb9\x6a\xbd\xae\xc4\x6d\x53\xb7\xcc\x1f\x58\xbe\xff\x23\xf2\x90\xc6\x9a\x55\x1d\x3d\xb9\xe3\x07\x35\x89\x2c\x86\x5c\xaf\x84\x59\x8c\x0d\xc9\x7d\xe0\x15\x9e\x2a\x96\x62\xe6\x22\xd7\x54\xcd\xe2\x33\x4b\x35\x6f\x55\x10\x8b\x15\x5a\x0e\xd9\x91\x43\x1a\x2e\x19\x92\xe2\x52\xd9\x5d\x73\x75\x52\x9d\x4d\x41\x3d\x4e\xd8\x0a\x7f\x6b\x52\xe3\x62\xb4\xa2\x21\xa3\x9b\x8f\xeb\xde\x0f\x8c\x48\x16\xfa\x7f\x4e\x54\xf2\x66\xf4\xcb\x2d\xbe\xc6\x1a\xbe\xfe\x72\xed\x31\x75\x11\xdb\xe4\x4b\x2b\x5e\x5b\x7d\x71\x89\xf0\x50\x46\x0c\x22\x76\x4f\xf6\x07\x13\x93\x56\x96\x71\x15\xa1\x75\xeb\x46\x69\x5f\x8f\x06\x31\x42\x3a\xfb\xf6\x8b\x49\x10\xf3\x91\x22\x26\x94\xfb\xf8\x89\x61\x1a\xef\x06\x66\x5b\xcf\x2b\x54\x4d\x03\xdb\xb8\xc8\x62\xea\xdc\x5c\x53\x7a\x51\xf8\xa4\x88\x1b\xc7\x7c\xb3\xb7\x29\x4b\x7c\x86\x4c\xc2\x5b\x63\xd8\xce\xfd\xf7\x12\xb5\x62\x36\x31\xbc\x18\x77\x17\xcf\x80\xb8\x2e\x44\x01\xbe\x33\x5f\x49\xdd\xd8\x83\x7e\x24\xb7\x63\x87\x06\x35\x08\x6c\x9b\x17\xa1\xe2\x21\xad\xbf\x20\x1f\x6f\x89\x30\x8c\x40\x72\x29\xbc\xa6\x53\x97\x90\xb2\x41\xf6\x4d\x74\xd3\xc3\x77\x73\xd4\xf4\x4d\xc8\x4f\xa1\xa9\x7f\xf2\x78\xfa\x71\xda\x04\xd8\x59\x3c\x27\xac\x5a\x2f\x3f\x60\xdb\x8c\x42\x3b\xdc\x08\x6f\x81\xae\x5d\x66\x07\x38\x29\xfc\x0f\x69\x76\x04\x15\x97\x76\xd9\xd8\x2c\x63\xa0\x12\xed\xb9\x57\xe7\x94\x88\xe1\xbe\x10\x78\xeb\xbe\x5b\x9b\xc2\x47\xcf\x4e\xc4\x52\x77\x3b\xe7\x47\x77\x70\xf1\xab\xc6\x09\x78\xbe\xcf\x7e\x9d\x9c\x9d\x08\x01\x88\x81\xcf\xe1\x5b\x15\xad\x57\xe4\x73\x06\x75\x7e\x78\x5f\xcd\x16\xad\x86\xdc\x1a\x55\x07\xf0\xb9\x77\x0e\x5e\xa9\x65\x6e\x87\xba\xf1\xba\x3d\x16\x21\x9c\x6a\x8e\x56\xc8\x11\x06\xb6\xeb\x4a\x7d\x97\xdf\xf8\x86\x46\xac\x93\xfa\x8c\xf1\xc3\x5b\x31\x4a\xab\xca\x2c\xcc\xbd\xc0\x37\x58\xe9\xc1\xa9\x57\x45\x06\x2e\x70\x8b\x83\x86\x83\xf9\x99\x16\xdd\xea\xd7\x2d\x97\x09\xd7\x19\xca\xfc\x21\xdb\x2c\x91\x43\x4a\x9a\xcf\xdf\x38\x76\xf2\xff\x52\x79\x34\x8a\x24\x4c\xc9\x0e\x52\x8f\x77\xa1\x23\x1c\xb6\x99\x8f\xda\xaf\xa3\xae\x4f\xd5\x8b\xb7\xe0\xe1\xe1\xca\xaa\xd8\x35\xc1\xf6\x0f\x2e\xf2\x1b\xc7\x92\xab\x5d\xa6\xf0\xd9\xae\xbb\x4b\x11\xb5\x01\x7e\x70\x98\x59\x98\xae\x36\xdb\xe6\x08\xfc\x46\xb9\xc1\x06\xca\x35\xb8\x2b\x27\x8f\xbb\x99\x2d\x52\x7d\xd4\xb3\x82\xa8\xf6\x9e\x20\xef\x0d\x89\x6a\x72\x7e\xd3\xf3\x1b\xf5\x55\x3f\x23\x9e\x4f\x7d\x1b\xc3\x56\x49\xde\x94\x6f\xbf\x9d\x0e\x8c\xc0\x19\x49\x07\xc6\xec\x37\xce\xca\x30\x53\xb5\x91\x4f\x5d\x40\xaf\x64\xfa\x76\x5f\xf6\xbf\xcb\xdf\x77\x84\x1f\x55\xb4\xd5\xc0\x1a\x28\x3a\x0c\xf6\x96\xfe\xa2\x77\xab\x46\xf7\xfb\xb5\x62\xba\x0c\xfb\x84\x18\x3a\x1d\xde\x2d\x8f\x34\xd7\xab\x8f\xfe\x6b\xd3\xb3\xfa\x0e\xd2\x2d\xd9\xc4\x50\x5c\x83\x33\x6d\x1a\xa6\x89\x56\xab\xd4\x83\x20\xc6\xb7\x11\x7f\xdf\x9a\x0c\x05\x36\x35\xa0\x57\x7a\x32\x77\xcd\x57\x64\x9e\xea\x1e\x48\x6a\x08\x6c\xc2\xfe\x0d\xa2\xf6\xb5\x03\xdf\xb0\x84\x25\x55\x65\xbb\xc6\xe0\xa5\x46\x85\x06\x71\xe1\x9b\xf7\x34\x27\x3c\x98\xe1\xc6\xdc\x8d\xfa\xb9\x91\x0a\x78\xd1\xc7\xac\x84\x99\x70\xa2\xca\x7e\xfc\x09\x59\xec\x6f\x46\xc5\xa8\x29\xa0\xb5\x42\x47\x78\x76\x87\xdc\x00\xbb\x0a\x06\xe5\x4f\x03\x92\x2e\xca\xa1\x4c\x54\xab\xd9\x1f\x34\xec\xed\x5d\x10\x49\x16\x31\xf7\xaa\x05\x1a\x0c\x14\xbb\x2e\xf1\x44\x60\xea\x7f\x4e\xa7\x41\xcf\x9b\xc7\x2b\xda\xc1\xa7\x9a\x94\x3d\x88\xcf\x1f\x45\xf8\x45\x25\x39\x14\x69\x19\x43\x6b\xf0\xe9\x66\x1d\xa7\xcf\x35\x03\xfa\x0f\x4a\x47\xdb\x58\x99\x15\x7e\xfe\x96\x5b\xe5\x30\xc1\x46\xbe\xbe\x4b\xef\xc9\xfe\xf2\x44\x2f\x94\x86\xa8\xd7\x13\x0b\xd3\xbf\x4e\x6a\xb0\x6c\x65\x49\x28\xaf\x28\xf5\x78\x31\xa8\xd3\x00\x4a\xb0\x47\x35\x60\x9e\x85\x6c\x9b\x0f\xaf\xa4\x72\xf8\x97\x1e\xd3\x4c\x3b\x03\xec\x99\x28\xc6\x54\xfc\x9f\xb5\x23\x95\x8e\x95\x22\x5f\x6c\x8e\xa3\x9f\xfe\xa9\xfb\xe3\x0d\x0e\x43\x65\xbe\xc3\xba\x67\xb7\x2e\xed\xca\x0c\x4b\x3c\xfa\xa6\x7d\xba\xdf\x31\x75\xa8\xe4\x1f\x4d\x55\x6c\xd0\xca\xc8\x2d\xc7\x4a\x62\xe1\x87\x56\x8d\x93\x63\x50\xa7\x6a\x21\x80\xcc\xd9\xaa\x3b\x7f\xfe\xc5\xcb\xb4\x1a\x8b\x19\x16\x72\x7d\x0e\x82\xea\xc9\xf5\xac\x52\xea\x66\x86\x60\xd0\xf9\xad\x71\x83\x94\x73\x0a\xd7\xf3\xf1\x9a\x86\xd9\x33\x82\xd8\x40\x23\x77\xdb\x62\x65\xf0\x32\x13\xdc\xfc\xcf\xef\x4a\xe3\xa8\x88\x67\x23\x07\x8c\x13\x1d\xa5\x99\xce\x7f\x78\x88\x56\x4a\xd9\xc8\xa8\x38\x88\xd8\xc2\x9f\x34\x7c\xe3\x8c\x30\xd2\x31\xdd\x14\x58\xbb\xda\xa7\x49\xa1\x6e\x7b\xd8\xf5\x60\x83\xb4\xfc\x84\x02\x6d\xb5\x18\xe5\x11\xba\xd8\xac\xf2\xd0\xab\xd8\xf0\xf9\x3e\xb9\x25\x09\x0c\xd8\xad\x35\x04\x86\x2b\x56\x5e\xa5\xa5\x4a\xdb\x47\xbd\x19\x2a\xe4\x47\xbf\x9c\x4e\x39\x09\xa9\x07\x54\x6e\xd2\x49\x6d\xd7\x46\x29\x73\x2e\x3c\x83\x38\xb0\x21\xfd\xd7\x26\x9f\x97\xe9\xa6\x1c\x10\x13\xc3\x3e\x28\xfa\xd4\xed\x82\x83\xe7\x61\x87\xc0\x58\x21\xfa\x86\xac\xd8\xe0\x8e\xe4\xfa\xb1\x09\x5f\xf4\xaf\x56\x5e\x22\x47\x4c\xc4\x35\xa8\x53\xc5\xbe\x68\xa7\xbb\x5e\x9a\xa2\xd5\x32\x20\xad\xca\xf5\xc0\xf5\x87\xb2\xc6\x96\x1c\x29\x5a\x69\xf8\xe3\x6f\x08\x6b\xf0\xa5\x81\xe7\x61\xa2\xac\xa0\x42\x0d\x88\xe5\xa1\x1a\x2a\x63\x29\x15\x9b\xb9\x4b\x55\x45\x82\x75\xb4\x58\x62\xee\x3f\x25\xcb\x53\x0e\x6e\x54\x72\xd9\x3f\x98\xe6\xae\x15\x78\x56\x3a\xdd\xe5\x9b\x0e\x24\xf1\x93\x51\x15\xc7\xf6\xc4\x66\x55\x73\x33\x70\x7d\x9b\x9b\xed\x67\x7d\xb1\x7c\xb1\x02\x16\x4f\xfe\x2f\xf6\x4b\x7e\x88\x15\x94\x95\xb2\x60\x94\x62\xc0\xe9\x73\x15\xb4\xf0\xc8\xf1\x24\x32\x77\x01\x2e\x88\x2f\xb6\xe7\xea\xa8\x66\xdf\xb0\x84\x00\xdf\x6d\x7b\xd3\x91\xb7\x08\x7d\x2a\x8c\x1a\x82\x96\x61\x0a\x50\xd3\x10\x52\xe5\xe1\x61\xc5\x97\xbb\xca\xa8\x4f\x0d\x0a\x07\xe1\xf2\xfb\xb5\xaa\x3b\xca\x2f\x16\xbf\x74\xf0\x38\xaf\x56\xdc\x35\x00\xca\x0a\xc9\xe7\xb7\x07\x74\xd8\xaf\x9d\x58\xb4\x7f\xee\x82\x56\x27\x13\x03\x84\x84\xf8\xb4\x61\xab\xe6\xf1\x29\x54\x6d\x2d\x52\x8d\xf1\xb9\x57\xdf\xab\xd5\x8b\x48\x73\x96\x0a\xbf\x69\xeb\xee\xb1\xa4\x9c\x48\xd4\xec\xe8\xa7\x79\x2f\x70\xc5\x0c\xe1\x04\x4f\x1f\x1d\x2e\xda\x81\xb2\x1b\xbd\x3e\xf9\x66\x2e\x39\x22\x2d\x85\x88\xaa\xef\xff\xf4\x69\xdd\xdf\x10\x99\xca\x92\x39\x7f\xfd\x79\x15\x44\x84\x5c\xaf\x2b\x5e\x2f\xbc\x6f\x8f\xb0\xd2\xc2\x30\xf2\xec\xe8\xc9\xdc\xb7\x50\xb7\xe2\x66\xc8\xe4\x72\xe3\xef\xdc\x9b\x46\xb6\xd6\xa9\x5b\x2e\x74\x12\x2e\xb7\x19\xd7\x59\x37\xac\x4b\xd7\x6c\x8e\xed\x89\xd9\x7f\x3a\x1c\x30\x4e\x11\x28\x5c\xdf\xf0\x27\x9d\x4f\xaa\x60\x7e\xc6\x38\x7c\x0f\xef\xed\xd5\x96\x4b\x34\x27\x17\x64\x2c\x28\x12\x5b\x99\xcd\x67\xbf\xf6\xb2\xb2\xa9\xc1\x0e\xb1\x89\x8f\x98\x60\xda\x65\xff\xeb\xf6\x81\x12\x06\x1c\x25\xc0\xa1\xcb\xc6\xea\x11\x12\x97\x11\x1f\x21\xf3\xa1\xd2\xde\x74\xb7\x51\x21\x8c\xd4\xb1\x5b\x51\x7b\x92\xf0\xf9\x7e\xc3\x95\xd0\xc4\x9d\xec\x20\xaa\x65\xff\xfb\x9e\x24\xd8\xcc\xf6\x75\x85\xb6\xf0\x55\xcd\x46\xa6\x1a\xb8\x44\x18\x96\x82\x52\xca\xd2\x86\x94\xda\x65\x03\x5d\x06\x3e\xda\x99\x53\x62\xac\x87\x7d\x50\xdf\x88\xde\xef\x43\x27\xb5\x89\x78\xd4\x60\x23\x48\xd2\x5c\x5f\x71\x2f\x17\xe7\xb8\x6e\x4e\x2b\xec\x02\x34\x9d\x3f\x9f\x91\x12\x75\x41\x42\x3c\xf9\x72\xdf\x9c\xdf\xac\x48\x32\xb2\x1a\xa9\xf1\xda\xe9\xf9\x77\xe4\xc4\xb6\x84\x0c\xfe\x1f\x0f\x1e\xd2\xf1\x59\xe0\xea\x28\x5e\x5b\xa9\xca\x51\x7c\x2b\x89\x4b\xc1\x75\x53\xc6\xb8\x79\xdb\x54\xc7\xae\xc4\x24\x30\xf7\xb3\xc7\xa4\xd5\x5d\x11\xc5\x13\xcd\x96\x83\xc2\x67\x2c\x60\x26\xd0\xed\x7b\x32\x93\xf6\x2b\xe2\x67\xd8\x45\x36\xd9\x2c\x36\xd1\x3f\x7d\x5b\x7a\xe9\xb4\xce\x03\xf0\xe3\x3d\xe9\xa7\x64\x92\x1a\x58\xd6\xc4\xf5\xf8\xbf\x69\xe6\x53\x1e\x32\x4d\x98\x74\xca\x2b\x78\x5a\x5b\x98\x33\x02\x80\x5e\x01\xd3\xfc\xc0\x91\xb1\x4a\x4c\x75\x1b\xb2\x4c\x6e\xe7\x8e\x71\x5a\x44\xb2\x5d\x44\x52\x40\xb3\x9f\x3c\xa5\x92\x11\x6d\x27\x2a\xe7\x5f\x9a\x2e\x2b\x9d\x12\x65\x00\xad\xba\xf4\xa8\xd2\xaa\x11\x40\x48\xe5\xb7\x2d\x81\xcb\x53\x58\x8d\x2a\x8d\x37\xb1\xc2\xc7\x13\x85\x6b\xcd\x2e\x8c\x1b\x3f\xda\x54\x5b\xfc\x5b\x8b\x36\xb6\x9b\xb3\xdb\x79\x73\x79\x63\x27\xf6\x89\x02\xe6\xfc\x9f\x2d\x7a\x55\x0e\x2b\x67\x3e\x77\x1b\x3e\xe1\x32\x7d\x45\x0c\x43\xfc\x44\xc6\x70\xaa\xfc\xa6\xed\xb3\x5b\x66\x45\x47\x33\xf7\xe0\xe1\xf4\xd1\xa4\x93\x1d\x8c\x18\x4a\xd1\x02\x72\x47\x27\xe8\xbb\x4d\x40\x4f\x09\x04\xf0\x8b\xdb\xa5\x74\xb8\xa3\xe8\xbb\xe5\x3a\xd7\x5d\xa1\xbd\x3c\x64\x6a\x9e\x7e\xb9\xd5\x47\x65\x1c\x81\xdc\xca\xa4\xe2\x64\xe6\x53\x77\xcb\x05\x20\x32\x8c\xc0\x09\x62\xed\x86\x7c\x7f\x9e\xcf\xa3\xf6\x3b\x6e\x8d\x74\x80\xc1\x82\x83\xe9\xd9\x02\x8a\x09\x1d\x6f\x4c\x94\x9d\x47\xdb\xbc\x79\xed\xd1\xff\x01\xf3\xa7\x4f\x6d\x51\x75\xb0\x11\xe1\x6e\xf5\x77\x35\xab\x10\xf7\x6a\xd5\x16\xfd\x5d\xb6\x95\x8f\x67\x96\x70\x6a\x4c\xe3\x78\x26\xd7\xbd\x8a\x87\x0e\xec\x5a\xc8\x35\xf8\x98\xed\x9d\x77\x9a\xc4\x07\xa7\x55\xc1\xa8\x01\x76\xc6\x9d\x2a\x3d\x57\xa8\xa4\xe6\x6e\x5f\xa6\x98\xf5\x75\x5b\xa4\x48\x62\x82\x63\xb1\x85\x23\x91\x10\xf3\x49\x89\x18\x22\x0e\x5e\xae\x09\x2d\x19\xc9\xd3\x89\xa3\xd9\xa1\xed\x0a\xfd\x00\x71\x2a\x83\x27\x0c\x95\x0d\x0b\x05\xa5\x12\x86\x31\xc4\xcb\x07\x14\x4b\x44\xe4\x96\xf9\xe7\xf9\x69\x5e\x36\x32\xc8\xed\x02\x36\x6b\x7c\x91\xde\x1c\x33\xb8\x4b\x8e\xe7\x61\xb1\x74\x68\xbb\x6e\x11\x1b\x30\x03\xec\x90\x20\x25\xf6\xd1\xe4\x0b\xb0\x5f\xf0\xc1\xbe\x06\x8a\xab\xd7\x5e\x1c\xa1\xcc\x23\x1d\xec\xa3\xa2\x2d\xc6\x88\xb9\x09\x8a\xcd\xab\x61\x50\x1b\x99\xfc\xf3\x7d\xd5\x56\x3c\x24\x7c\x46\xdd\x32\x57\xc7\xaf\x4f\xd1\xca\x26\x8c\x85\x49\x5c\xde\x16\xa6\x59\x26\xf1\x50\x99\x61\x9e\xc0\x9e\x1b\xaf\x4d\xe5\x60\x44\xc8\x7b\x98\x70\x9f\x34\xc3\x75\x6b\x18\xe0\x19\xf9\x69\xa6\x62\xaf\xde\xc5\x75\xa1\x73\x5f\x1a\xa4\xe8\xff\xa0\x2a\xf1\x51\x2c\x01\x9e\x3b\xfb\xb0\x16\xfa\x2c\x64\xa1\x4a\x2a\x30\x1d\x53\xb4\xf3\x02\xb7\xc8\x68\x85\x57\x12\xdf\xcc\x0e\x56\xf2\x78\x37\x04\x22\x7f\x8b\xf6\xe3\x18\x71\x51\x19\x31\x05\xe2\xb7\x40\x48\x9b\x44\xa5\x1c\xd7\xe9\xcd\x76\x74\x6b\x9c\x07\x40\x77\x46\x27\x95\x07\x94\x1b\x1e\x50\xe8\xdb\xd8\x0c\xc4\x09\xfe\x63\x3f\x1e\x9c\x56\x22\x07\xab\x7a\x8e\x99\xbd\x0b\x14\xbf\x04\xca\x2a\xa2\x7f\x1e\x75\x92\x3f\xb0\xf6\xe9\x33\xdb\xe7\x4c\x9f\x0d\x34\xbf\xfc\x87\x34\x36\x47\x91\x7a\x2e\x41\xd3\x80\x32\x09\x77\x7f\x6a\x1f\x4d\xf6\xd6\x62\x98\x7f\xae\xcc\x87\x77\x0b\x8a\x65\x95\x18\x0d\x13\x80\x7c\xb9\x4f\x52\x81\x9b\x44\x15\x0f\xfd\xe9\x12\xb9\x1f\x11\xd0\x2a\x25\x10\x65\x3b\xf5\xb3\x6a\x90\x04\xf6\xf5\xd8\x14\xdd\xe8\xdb\x21\xae\xe9\x09\x1f\x84\xd3\xf7\x0f\x94\x39\x91\x4b\x75\x5e\xa3\x9f\x1f\x93\x50\x3e\xc1\x58\x79\x52\xc1\x23\xd5\x10\xb8\x48\x76\xf4\xe4\xef\x7a\x68\x98\xf2\xac\xc1\x09\x08\xce\xd0\xc6\x6d\xe9\x9f\x84\xbb\x7d\xca\xfc\x69\x13\x0b\x1d\xe1\x06\x4d\x21\x0e\x77\xab\x80\x94\xfc\x67\xcf\x2b\x23\xb6\xc2\xdc\x56\xb0\x0f\x98\xfe\x66\x7a\xa6\xd6\xde\x0a\xd3\xd6\x9d\x4f\x36\xab\x4d\x82\x81\x31\xb7\xc8\x1f\xf8\x18\x8f\x32\x49\xa8\x8a\xea\xd5\x8b\x2b\xc7\xe9\x3d\x48\xb9\x42\x2b\xb0\x4e\x11\x2d\x4c\xdb\x6c\xa9\x00\x3d\xab\xbd\xd0\x11\xde\xb6\x42\xc3\x91\x99\xc8\xa2\xd3\xe6\xc7\x10\xe1\x75\x2f\xa4\x33\x85\xd7\x85\x41\xfc\x55\x29\x05\xb2\x8b\x6b\xf2\x67\x56\x41\xff\xe8\xb5\x3d\x5a\xeb\x2b\x96\x63\xe1\xa7\xc6\xca\xf8\xd0\x49\x09\x98\x76\xc1\xef\xe9\xff\x92\xbc\xa6\xb1\x16\x40\xf6\x86\x66\x55\x5e\xd2\xa1\x4c\x16\x35\x99\x7b\x5d\x65\x60\x31\x6f\xd6\xcc\x42\x47\xb8\x74\x61\xbc\x86\xec\x0c\x18\x67\xb2\x9e\x59\xa9\xa8\x0c\xd0\x22\x48\x4e\x44\x3f\xd9\x9c\x24\xab\x2d\x87\x06\x36\xf6\xc1\x30\x38\xf7\xc6\xeb\xa2\x17\xc1\x9e\xa5\x12\xf8\x7a\xf2\x83\xce\x24\x85\x2c\x33\x1b\xa5\xb4\x46\xaa\xde\xe9\x28\x30\x10\x18\x4d\x84\xd7\x2f\x6c\x96\x5a\x00\x8a\x4d\xdc\xb7\xc6\xea\xc3\xb0\x12\x77\xcc\x17\xdb\x8e\x2b\x2e\xe8\xa6\x21\xac\x0b\x97\x01\x06\xc7\x99\x9c\x99\x2e\xa6\xb5\x7b\x7c\x73\x0f\xf9\x0f\x5d\xe8\xc5\x93\x45\xa4\x99\x9b\xf6\x5f\xae\xd0\xe7\x63\x1f\x96\xcd\x7c\x80\x01\x47\x64\xd7\x62\x8d\x67\x01\xf2\xe5\xbc\xa2\xe8\xf3\x42\x32\x6f\xb1\x68\xc3\x64\x24\x73\x7c\xc1\x65\x7a\xc1\xee\x63\x23\xf1\xfd\xcc\xcc\xd7\x88\xfd\xf1\x62\x08\x42\x65\x7e\x4a\x4a\xb4\x9c\x08\x41\xc8\xcc\xdf\x16\x24\xbf\x73\x4a\xa3\x39\x7c\xfe\xb3\xae\x60\x46\x22\xe2\xc6\x39\x18\xed\x51\x46\x4b\xa4\x46\xf8\x9d\xf9\xe8\x52\xdd\x02\xb0\x0c\x42\xe4\xfc\xb3\xfd\x70\x5b\xca\xee\xd1\xe0\x8e\x72\x10\xa1\xa7\x5d\xa2\x2f\x9a\x4d\xc5\x2a\xa3\x27\x9f\x3b\xa0\xd5\x33\x5e\x45\xfc\xd0\xf2\x1b\x1a\xe8\x17\xdb\xd4\x24\xb1\xdf\x5f\xe6\xa9\x70\xb8\xc2\x63\xaf\x61\x3b\xae\x3a\x32\xdf\x36\x65\x01\xed\x05\x0d\x15\x4c\xf8\xe5\x2c\xbf\xff\xa0\x63\xeb\x60\x97\x8f\xc3\x96\x1f\x95\x9a\x81\x60\xee\xb3\xa8\x55\xb1\x05\xa0\x5d\xae\x45\x6c\x5b\x3c\xd6\xd0\xd6\xa4\xaa\x91\x17\x03\x21\xe1\x46\xf6\x5b\x2f\x9f\x47\x95\x54\x55\xfc\xff\x97\x61\x1c\x0f\x30\x8f\x15\x2b\x56\x37\xd8\x89\x9f\x1d\x15\x97\x1b\x20\x3c\x07\xab\xc8\xb8\x01\xfd\xef\xc3\x0d\x9a\x6b\x46\x62\x17\xf6\xe8\x86\xa6\x38\xd0\xc5\xeb\xa8\x42\x47\xf8\x89\x47\x35\xc1\x48\x5a\x13\x27\x66\x75\x93\xa0\x86\x50\xc6\x40\xfe\x5e\x00\x6d\x33\x5f\x5f\x92\xbe\x3e\x2c\xf0\x3c\x82\x62\x19\x97\x28\xcd\xff\xf6\xd9\x34\x80\xc7\x47\x7e\xaf\x0c\xf4\xcc\x17\xdb\x1b\x2d\xce\x02\x5f\xaa\x32\xfc\xd3\x76\xa5\x10\xac\xe3\xb2\x8d\x3c\x2e\xc2\x9f\xf9\xc6\x13\x9a\xb6\xa6\x09\x9e\x22\x9e\x54\x60\x9c\x3a\xaa\xc1\xa8\xc9\x14\x95\xf0\xf7\x36\xca\x2a\xcf\xb0\xa8\x58\x38\xef\xdb\x25\x33\xc7\xcc\x79\x2d\xed\x80\xf7\x5c\x79\x4a\x9f\x82\x8b\x2c\x9f\x2c\x58\xc2\x75\x63\x79\x4d\x7e\x43\xdd\xc5\x06\xb5\x69\xb9\xde\x70\x8d\xa6\x2e\xe1\x91\x6f\x25\xb5\xb1\x81\xd4\xce\xf4\x92\xf9\x6a\xb9\xd3\x19\x78\xe0\xdc\x1f\xfe\xb6\xa4\x41\x78\xc0\x40\xb6\xce\x5f\x65\x76\xde\xce\xb1\x4a\x95\xda\xc8\x2f\xcc\x55\x8f\x29\x54\x7c\x17\x26\xba\xd1\xbf\xcb\x9c\x1c\x24\xce\x7c\xd1\x14\x5a\xec\x7f\x3b\x2b\xff\xa6\x13\x30\x93\x1a\x90\x63\x26\x68\x57\xcb\xc7\x26\xa1\x41\x2c\x1f\x96\x1b\xbf\x5d\xb6\x2f\x50\x50\x28\x54\xb2\xec\x25\x7d\x87\x2b\x77\xdd\x26\x2e\x98\xee\x44\x2f\x6d\x5f\xb7\x66\xbb\x0c\x9a\x87\x29\xd1\xfa\x23\xe3\x79\xd5\xb4\x06\x47\x55\x19\xf7\x24\xc8\x7d\xe5\xae\xc9\x5a\x40\xe7\x2e\x3b\xbd\x69\x3c\x0f\xd6\xa4\xf1\x1d\xc3\x40\x42\xf4\x5e\xfe\x96\xaf\x49\x10\x72\x1d\xab\x84\x96\xb5\x0f\x6a\x08\x66\xca\x18\xf1\x52\x6a\xec\x99\x47\x35\x5f\x9f\xb9\x73\x5b\x66\xb7\x0b\xb5\x97\xbd\xb3\x15\xc3\x05\x6a\xc7\xb0\xd7\x8e\xf0\xc5\xd7\xb5\xe0\x4c\x59\x25\x66\xd9\x16\xd6\x36\x8b\x8e\xca\x26\x2a\xf9\x30\xff\x29\x6d\xee\xe7\x61\xec\xc4\xa8\xef\x5f\xef\x4c\x46\x17\x0c\xa3\xa4\xd9\x2d\xf1\xc7\x77\x23\x8d\xfe\xa3\x88\xb0\x57\x9d\x1a\xa3\xdf\x95\xa8\x16\x8e\x2b\xa6\xbb\x4e\x69\x53\x15\x1a\x7d\x0c\xf1\xd9\xee\xdb\xa8\x2c\xd2\xa9\xb0\xd1\xcd\x9e\xd9\x28\x13\xb2\x55\x37\x71\x3c\x39\xf9\x91\x26\x3c\x57\x42\x84\x3b\x3e\x4f\x17\xb0\x1b\x43\xf4\x5c\x55\x54\xc5\x2c\x7a\x06\x20\xd4\xf5\x80\x84\x60\x44\xd9\xb4\xa5\xa1\xb8\xdd\x20\x59\x91\x0e\x50\x1a\x96\xdf\x3b\x30\x4e\xb2\x6e\x19\x17\x3a\xc2\xf3\x47\x24\xb5\x6d\x32\xe0\xc9\xda\x0f\x29\x0c\xd0\x32\xb7\xb8\xc9\x7c\xeb\xb8\x96\xd8\x7d\x62\xdb\x82\x3c\x38\xf1\x95\xc1\xe2\xcc\x22\x53\xf8\x09\x65\xc7\xbc\xa8\x54\x88\x62\x6b\x1a\xfd\xfe\xfa\x62\x6d\x12\x66\x83\xf1\x7e\xc2\x15\xdc\xf8\x9a\xec\x56\xda\x66\xb4\xcc\x01\xee\x8f\xf0\xb9\x5a\x1d\x75\x50\x51\xca\x5c\xf6\x8e\x66\xaa\x4b\x83\xa2\x5f\x0a\xe2\x9c\x79\xf5\x72\x65\x46\x20\x34\x39\x13\x91\xf9\xe1\xcb\xd3\x2f\x2d\x4a\x3d\x65\x64\x0b\xdc\xf5\x4e\x3b\x79\x1a\x06\x14\x8d\x99\xff\x79\x48\x69\x80\x83\xcd\x9b\xa3\x17\x6f\x6a\x94\x20\xe1\xdb\x07\x0a\xe6\x2b\xd3\xeb\x29\x03\xb9\x2e\x29\x0a\x65\x80\x64\x78\x77\x9f\x26\x51\x6a\xe3\x92\x4f\xbc\x04\x7b\x3a\xe9\x95\x74\xd5\x3d\x01\x12\x73\xf8\x9d\x83\xf2\xc3\x05\x76\xa1\x23\xfc\x48\x96\x87\x25\xdc\x6d\xa1\x00\xbc\xb3\x32\x17\x85\x11\x23\x3c\x12\x91\xdc\x5e\x1c\x92\x6c\xa3\x02\x71\x9c\xd6\x9c\xee\x2f\xaa\x4c\xd0\xf9\x1b\x39\x51\x19\x1a\x82\xe1\x66\xf4\xb3\x6e\xd6\xcc\x26\x2b\xc4\x74\x51\xdc\x6f\x67\x6e\xc8\x2b\x6a\xe5\x8c\x76\x71\xa0\xf5\x91\x0d\x12\x9c\x0d\xde\x6a\xf1\x95\xfc\x4c\x1f\x85\xf9\x6f\xa3\xc0\x54\x52\x77\x76\xe3\xd2\x91\xea\x28\xea\x96\x55\x8b\xa6\xc1\xe7\x2c\x74\x84\x9f\x7c\x37\x7d\x95\xb9\x30\xa0\x80\x30\x7c\x77\x84\x76\x10\x10\xb3\x15\x26\xec\xf4\x85\x57\xa4\xb8\x8a\xbd\x90\x42\x73\xef\xdf\xab\x92\x42\xab\xa8\x2e\x88\x6b\x77\x9d\xd0\x16\x88\x82\x9c\xe6\x60\x57\x78\x9f\x2c\xbc\x28\x57\xa4\x5e\xdd\xf3\xb1\xa3\x97\x43\x9f\x6e\xb9\x5c\x8f\x5d\xb6\x99\x18\x7d\x80\x22\xd5\x51\x45\x32\x28\x70\xa3\x9c\x13\xfd\xe7\x40\xb3\x02\xae\xda\xb1\x68\x24\x3c\xe4\xdd\xe7\xd2\xe7\xaf\x50\xa4\x2c\xae\xfa\x86\xbc\x20\xf3\x22\x35\x8c\x80\x41\x72\x09\xfb\xbf\xa0\x8c\x8b\x49\xd9\xf2\x3d\xcc\xd9\xd0\xa7\xd6\x5c\xa1\x06\x5e\x5a\x76\x1b\x27\x63\x3f\x1f\x94\x4e\x0d\x72\x98\x1e\x15\x50\xe2\x17\x2f\xb9\x4b\x9f\xd9\x7b\x06\x23\xc5\x04\x9a\x98\xfb\x4b\x77\x83\xa5\x30\x8b\xbe\x54\x6c\xb1\xda\xdf\x1a\xa3\x96\x89\xfa\x87\x58\xbd\x4f\x59\xd7\x71\xcc\x5c\xa2\x49\x9b\xff\xf4\x36\xf9\x16\x5d\x8c\x58\xc1\xc7\x30\x86\xcd\x3d\xda\xae\x4c\xe3\x2c\xec\x44\xa5\x35\x3c\xc3\xee\x03\xda\x88\x27\x51\xcd\xcf\x7c\x6c\x4d\x52\xaf\x0a\x88\x81\x82\x85\xc4\xdd\xc8\xf0\x5d\xb1\xd0\x1b\xbb\x59\xf5\x08\xe6\x54\xc5\xec\xc4\x26\x3e\xcc\xf7\xac\xa8\x20\xf9\xaf\xbb\x1b\x34\x46\xe0\x71\xe4\xfb\xaf\x52\xc2\x2c\xc3\x28\xfa\x45\x5d\xaf\xf3\xdb\xdb\x85\x6c\x2e\x76\x13\x6e\x9f\xad\xcc\x48\x18\x29\x73\xdd\xf9\xfc\xea\xd7\x78\x4d\x2a\xed\x6f\xe0\x4b\xfd\x47\x95\x4f\x3a\x70\x0d\x33\x7e\xb7\x1d\xca\x87\x8d\x20\x3b\xec\xea\xb3\x01\xcc\x7c\x81\x1b\x3d\x72\x24\xfd\x67\x5d\x56\x32\xfe\x1c\x7f\x3b\xdf\x94\xdf\x82\xfc\x94\x18\x5d\xdb\xa3\xfc\x7b\xb6\x01\xea\x2d\xfb\xef\x77\x4f\x94\xd7\x01\xf9\xc4\x13\x4b\xc5\x86\xa6\x34\xd8\x3a\x34\x29\x71\x8a\xf1\x87\xcb\x5e\x79\x41\x9a\x02\xb4\xb5\xc2\x78\x35\xf7\x98\x72\x66\x9d\xa0\x5c\xe6\x93\xd4\x70\xae\x66\xd7\x52\x65\xb4\x84\x3d\x8f\xf3\xee\x00\x83\xfb\xfd\x73\x32\xcd\xc2\x21\x11\x7b\x98\x67\xba\x53\xf0\x70\x00\x66\x7d\xe9\x7e\xf1\x28\x39\x5b\x04\x3c\xdc\x3b\x7a\x72\x85\xdb\xd5\xe9\x8f\x6d\xd7\x53\x16\xaf\x9f\x5d\xa9\x6e\x5f\xaa\xc0\x0c\x04\x08\xe7\xd4\xb5\x92\xa9\x41\x54\x72\xca\x55\x6f\xc9\xe2\x0e\x38\x8d\x89\x6f\xcf\xf6\x7b\x94\xc8\x48\x19\xa3\x45\xca\x50\xdc\x33\x76\x5c\x6c\x34\x25\xc6\xa6\xb0\x17\xb8\x64\xf9\xe0\x38\x9e\x12\x87\x3f\x9b\x0e\x4e\x49\x2d\x2c\x0d\x18\x23\x75\xd4\x00\xca\xcc\x2e\xd0\xfa\x16\x93\x4e\xab\x42\x5d\xf4\xd5\xd7\xb4\x6d\x3d\xaa\x21\xee\x80\xd6\x88\xa0\xcb\xe3\x0d\x43\x45\xfe\xf0\x29\x33\xea\x06\xa7\x1e\xbf\xdc\x3d\x58\x91\xd4\xb0\xe1\x60\x4d\x59\xa7\x62\x59\x88\x5a\x34\xe6\x6f\x56\x9c\x7d\xd5\xd2\xfa\x8d\xe4\x19\x52\x95\xe1\x9d\x79\xb0\x45\x9b\x20\x00\xa6\x96\x17\x21\x2f\x6b\x21\x73\xc6\xbc\x79\x2d\xb3\xda\xda\xe3\x90\x79\x9b\x26\x42\x66\xd8\x98\x95\xb9\x7e\x7c\xe6\xb3\x2f\xa6\x70\x6f\xd4\x13\xcf\x7e\xa9\xe2\x26\x63\xe3\x1a\x01\x4b\xc9\xfc\x03\x77\x6b\xfa\xe1\x0c\x55\x2d\x62\x70\x45\xa1\x9f\x0f\x52\x3c\xc0\xa5\x6b\x41\x4b\xa1\x23\xfc\xd4\xc5\xe1\x0a\xd4\xa9\x4b\x39\x1a\xdd\x2b\xf5\x72\xa6\xcb\xad\xd2\x80\x8f\x27\xc2\x77\x0f\xf1\xed\xdc\x2d\xd8\xb0\x3c\x5b\x3d\x85\x99\xb3\x42\x38\x76\xe5\xf2\x8e\xb8\xbc\x19\x53\x1d\xad\xf4\xee\x06\x75\x1c\xec\x9a\x71\xff\x9e\xfb\xc0\x94\x5e\x85\xc7\xf9\x1a\x70\xe2\x3d\xc3\x14\x1e\xa8\xec\xab\x9f\xd1\x0c\x9f\x7c\x14\x94\x2d\xa1\x56\x9e\x99\xff\x9e\x3e\x5b\xc1\x06\xf1\xb0\x2d\xec\x80\x72\xef\xcb\xa7\x3b\xda\xc0\xf3\x4a\xbd\x88\x55\xf7\x64\x0e\x55\x35\x50\x36\xe6\xd6\x36\x9d\x9d\x70\xaf\xae\x7f\x46\xab\x3f\xad\xa8\xe6\xe2\x78\xee\xed\x53\xe4\x11\x73\x88\x1b\x3d\xf3\xba\xa8\x73\xae\x5f\xcc\xd5\x87\xb8\x5b\xcf\xae\x5e\xe8\x1d\xf1\x65\xca\x5d\xff\x96\x1c\x4a\x94\x02\x17\x1a\x44\x8f\xe3\xb2\x2f\x7d\x50\xde\xf6\xb6\xe9\x33\x66\xcf\x9e\x3e\x4f\x4c\xa5\x37\xa4\xbb\x1e\x1b\x15\xb1\x6d\xa7\x1a\xb3\xdc\xb5\xa7\x85\x4b\x0d\xaa\xdb\x6a\x8f\x42\x17\xca\xdc\xd1\xd6\x3a\xb3\x65\x76\xf4\x38\x7f\xc5\x43\x74\xe1\x06\xdc\xd8\xa0\xfd\x6c\xbe\x2e\xfc\x01\xf0\x02\xde\x22\x44\x3d\xcc\xc6\xbb\x84\x59\x13\xc3\x7c\xf1\x91\xa9\x0d\x52\xc0\x1c\xb4\x1a\xd8\xdc\x61\x35\x3f\x7e\xbf\x6e\xb0\xe1\xf9\x0c\xd9\x04\xc5\x40\xdb\x4c\xee\xa0\x16\x63\xa3\x7f\x8d\x14\x87\x9f\xfc\x17\x1e\x9a\xa4\x5f\x46\xbe\xad\xd5\x5d\x3f\x7b\xb2\xb7\x4f\xfc\x80\xec\x53\x26\x07\xac\x88\x5c\xe2\x39\x0d\x75\x46\xee\x5b\xea\xaa\xc2\x42\x51\x54\xca\xad\x6b\x48\x9f\xa0\xa4\xd1\x11\x0b\x19\x60\x5a\x05\xcd\xe4\xf0\xc0\x4b\x8a\xba\x12\x72\x37\x82\xde\x94\xb3\x4c\xc3\xe1\x73\xe9\x22\xb1\x32\xfa\xf3\xb6\xb1\x2a\x2b\xb0\x61\x37\x90\x39\x5a\x53\x15\xc8\xa9\x09\xa4\xf0\x5d\x0d\xc0\x51\x2f\xb0\x7d\x24\x11\x02\xb9\xa1\x1b\x93\x02\xc2\x03\x97\x8f\x19\x4a\xa0\x03\x6a\x22\xdf\x8c\xfc\xf2\xb8\xe6\xed\x41\x5c\xb1\xaa\xce\xac\x7e\x32\x7d\x6f\x1c\xdf\x60\xbd\xdd\x9b\xfc\xc7\xfa\xc2\xed\xb4\xb1\x5b\x98\xa3\xd7\x9f\x93\x8e\x5e\xae\xcc\x48\xc0\xd1\x4c\x64\xe4\xc4\xd1\xf3\x40\xfa\xd7\x18\xe0\x25\xdc\xf8\x0a\x33\xaf\x6c\x1e\x95\x8a\x2b\x65\x97\x6c\x4e\x10\x48\x27\x4f\x69\x5e\x6c\xb8\xea\x61\x37\x25\x8e\xdb\x93\x7b\xea\x6e\x6d\xfa\x85\xa3\x12\x92\xe3\x8e\x38\x22\xe9\xde\xa9\x1a\x32\x9e\xd8\x3e\x66\x71\xbb\x9d\x35\x5f\xd3\x35\x5a\x51\x09\xf9\x5c\x12\x2b\x6e\x24\x3e\xd3\x24\xa5\x38\xb8\x50\xcb\x4d\xca\x44\x7e\xc6\x07\xe7\x42\xcd\x3b\x50\xc3\xaa\x57\xb0\xeb\x62\xb3\x9e\xfe\xc0\xd9\xbf\x98\x09\x59\xc8\x42\x49\xff\xe8\x5c\x4c\x7f\xc8\x28\x86\xb0\xc0\x8e\x49\x47\xdf\x78\x4c\x75\x7d\x64\x00\x59\xdc\xf2\x40\xfa\xa6\x94\x28\x2b\x0a\x3e\x80\xfe\x36\xfb\x6b\x66\x4f\xe0\xa9\xc8\xd3\x54\xee\xe4\x2b\x1a\x18\x10\x0c\x00\xa7\xf7\xf6\x73\x72\x83\x8e\x68\xe7\x5e\x30\x3a\x78\xc2\xfb\xc0\xfd\xe9\xef\xef\xd2\xa8\x22\xd1\xa1\xda\xbf\x7c\x46\x3b\xe8\x56\xd4\x00\x61\x75\x1a\x3b\x6c\xe6\x54\xed\x9d\x72\x36\x20\x72\x7b\xa5\x76\x4f\x7b\x3c\xa9\xf0\x51\xbd\x91\xe1\xff\xeb\x03\x5a\x83\x10\x25\x27\x16\x38\x82\x78\x93\x3d\xf3\x9a\x54\x6d\xf0\x60\x6f\xd6\xb6\x4c\xb1\xbb\xa5\x94\x3b\x6b\xdf\xf5\xa4\x22\xb6\x6c\x13\xa7\xca\x27\x9f\xb9\xdd\x2f\x0e\x16\x65\x34\x36\x2a\xa8\x0c\x25\xf1\x57\x2f\x0a\xc5\xf2\x4e\xca\x2a\x8e\x0a\x04\xcd\x17\x36\xa4\x51\x9a\x0e\x31\x2c\x64\x1b\x56\x60\x68\x64\x9f\xec\xcc\x01\x8a\x86\x09\xc1\xac\x18\x78\x5c\xb4\x64\xe4\x00\x81\xf7\x43\x46\xac\x5d\x59\xd1\x3c\x43\x1c\x1a\x30\x97\x6b\xce\x41\x48\xf8\xe8\x2b\xe3\xb4\xab\x44\xab\x88\x99\xb0\x0a\x11\x47\xec\x47\x87\x34\x62\x54\x3c\xf1\x8b\xd1\x44\xdf\xd8\xca\x69\x34\x55\x8b\xab\xb3\x14\x76\xf0\x2f\xee\x61\x83\x09\x9f\xe1\xfc\xad\x6f\x4a\xa1\xb1\x24\xdb\x71\x2f\x26\x89\x52\xfe\x71\xb6\xd7\xe2\x13\xca\x92\x67\x76\x69\xf6\x3e\x24\xa6\xf0\x0e\x78\x63\x58\x3c\x87\x5f\xd3\x21\x97\x4b\x37\xbc\xa2\x55\x0a\xd8\x34\x6d\x39\x0c\xee\xd0\x04\xa0\x2c\xea\xf9\x9c\xbe\x11\xfd\xe9\xd9\xc7\x94\xb9\x29\x85\x1a\x5d\x66\xd2\x4f\xf6\xe5\xdf\xef\x3a\x02\x6d\xe3\x0d\xab\x57\x86\x1f\x1f\xa0\x9a\x70\x33\x01\x8e\xea\xc9\x9d\x1a\xc1\x53\x64\x11\x97\xf8\xe4\xe3\xaa\xa9\xe9\xaf\x11\x65\x48\x51\x0f\x3d\x7c\xef\xf0\xf8\xb1\x51\x37\x2a\xda\x59\x19\x73\x83\xf2\xff\x73\x44\x2e\x34\xe0\x09\x0f\x5c\x37\x42\xdd\x87\x72\xe0\x05\x1f\x9c\x7d\xe1\xb0\x62\xd9\x1f\x80\xef\x1e\x09\xa0\x35\x5d\xbf\x40\x4f\xb1\xcc\xa7\x51\xfd\x40\xe3\xa2\x95\xb5\xa6\xff\x06\xcc\xd0\x6d\x02\xe7\xa5\x0b\x5e\xf5\x92\x3e\xf2\x7b\xe2\x72\xbd\xea\x0b\x6f\xe7\x75\x9a\x23\x75\x05\x57\xe3\x3d\x5c\x66\xd9\x81\x91\xd8\x05\xf3\x23\x28\x07\x96\x20\xdb\xc3\xb1\xdc\xf1\x8b\x9a\x47\x96\x60\xc5\x0b\x9f\xd0\xef\xbf\x2c\x35\xc4\x51\xa3\xe6\xfb\xcf\xce\xeb\x53\xad\x32\xb2\xa3\xf0\xc5\x47\x7b\x4f\x6f\xd4\x78\x69\xa8\x25\x1e\x6f\xf6\x64\x82\xb9\xb2\x86\xeb\xa4\xc4\x55\x09\x98\xc7\x9e\x13\x7e\x4d\x18\x57\xb8\x6f\xc1\x18\x5d\xea\x09\x11\x30\xf0\x11\xf9\xa8\x5f\x6b\xba\x68\x98\x3b\x57\xa0\xe1\x3f\x98\xd7\x82\x37\xd7\x78\x63\xdc\xeb\x2e\x5b\x3f\x23\x5f\x63\x19\xa7\xc4\xa5\x2e\x7d\x80\x57\x71\x6b\x10\x53\x51\x2c\xd9\x5b\xce\xa5\x74\x6e\x98\x0a\x90\xff\xf4\x52\x05\xfb\x46\xbd\xa0\x86\xec\x7a\x00\xd3\xd1\xef\x0d\x91\xcd\x6e\xc9\x04\xc9\xc7\x3f\x8e\xd2\x24\xfe\x41\x1f\x04\x98\xcf\x40\x36\xf9\xe0\x5d\xfa\x00\x36\x30\xeb\x42\x6c\x67\x6f\x93\xfc\x10\x5d\x88\x99\x8c\x16\xe3\xdc\x9c\xf9\x86\xaf\xa8\x58\x81\xaf\x29\xc8\x9c\xcc\xdf\xac\x9b\xfc\x97\x4a\x98\x29\xd2\xdb\xb9\xc1\xa1\x42\x6e\x00\x91\x97\xe8\xbf\x92\x87\x45\xf3\x8e\xea\x05\x9f\xc2\xff\xeb\xe8\xc9\x5d\xd7\x9e\x1e\x58\xce\x99\xc1\xe7\x73\x37\x9a\xe2\xba\xd9\xc8\x81\x4d\xfb\x1f\x1e\x68\x10\xc5\xb0\x69\x1d\x0b\x5b\x9a\xdc\x3c\x09\xa9\xb6\xb1\xd2\x22\x65\x2f\x15\xae\xeb\xab\x5b\xae\x6b\x89\x33\xf1\xb3\x9a\x1d\x2a\x97\x19\x48\x98\x6c\x1b\xcf\x6a\xde\xaf\x75\x54\xb1\x08\xc3\xb5\xf4\x4a\x23\x3f\xf0\x6d\x25\x7a\x33\x82\x4b\x06\xd7\xc0\x1a\xae\xf5\x79\x7c\x5b\x27\x84\x90\xcd\xaa\x2a\xe2\xe0\x14\x61\x7b\x19\x7e\xb5\x3d\x1d\xbc\xf1\x66\xac\xdb\xef\xdf\xdf\x2f\xfd\xa1\x79\x20\x4a\x64\x0f\xdb\x26\x8d\x50\xca\x2c\xc2\xf5\x84\x78\x37\x5a\x7e\xb0\x29\x2e\xf4\x66\xcb\xa8\x9a\x2d\x69\x5a\x3d\xd4\xb6\x89\x60\x78\xe5\x97\x37\x35\xc0\x4e\x31\x62\x09\x60\x27\xfb\x99\xa5\x7c\x0a\xdc\x36\x6f\xe6\xbc\xe8\xb7\x2f\xde\x95\xe4\x67\x33\x68\xa8\x86\x73\xc3\x2f\xa6\x47\x07\x6d\xf3\xe6\x72\xe7\xfe\xec\xa8\xe5\x3a\x92\x9b\xf9\x01\x12\x4e\x67\x99\x5b\xb4\x17\xe5\x04\xcc\x4c\x52\x5e\xb8\x50\x9b\x32\xfb\x8c\x06\xe0\xac\x06\x3f\xf9\xe1\x77\x95\x55\x31\x76\x15\x84\x7c\xf6\xbe\x49\x1a\x07\x9b\x78\x58\xcc\x85\xd9\xeb\x43\x15\x9e\x61\x9d\xcb\xfc\xe5\x6a\xcb\x78\x5e\xbc\x91\x82\xd6\x78\x4f\xee\x4b\xa3\x14\xf7\x34\xdb\x26\x55\x9e\xb6\x97\x2e\x1a\xaa\xe0\x44\xb8\xf0\x5d\xf8\xb5\xb3\x57\x6a\x8d\x2e\xb5\x49\x09\xa7\xf8\x8d\x3d\xf9\x61\x27\x25\x95\xbc\x86\x6c\x1b\xd7\x53\x6a\x2b\x8b\xc6\xe8\x7e\x3e\xc4\x2d\x8b\xb5\x7b\x76\xd3\x05\x61\x5b\x83\x39\x90\xf0\xe3\x4d\xfa\x7e\x1f\xa4\x04\x13\xf6\x51\xdf\x37\x64\x9d\x43\x03\xbf\x4c\xc5\x41\xf9\xca\x7e\xc9\xb1\xc1\x46\x10\x7d\xac\x2b\x9b\xb4\xd9\x2c\xf1\x7c\x86\x3d\x2f\xc1\x82\x5e\x9b\x4d\x09\xb8\x21\xcf\x8f\x27\x50\x99\xab\xd7\x26\x76\x14\x15\xc4\x52\x1e\x05\xbf\x3e\x28\x9d\xda\x60\x59\xd7\xff\xed\xcb\x15\x84\x83\x57\x65\xb4\xca\x6d\xb4\xc0\xc0\x2a\xfa\x70\xd7\xae\x4f\x6b\xae\xd8\xc2\x56\xfd\xda\xf7\x7a\x0b\x7f\x34\x16\xe3\xed\xc9\xee\x1d\xa4\x3f\x8d\x04\x1c\x0c\x0d\xd3\x85\x8d\xa2\xf9\xa5\x8c\x11\x88\x8a\x3f\xd7\xc6\x2a\x1e\xa8\xfb\xb9\x65\xfe\xb8\xf3\x6d\x6b\x74\x96\x2e\x13\x9b\xda\xa8\x1a\xd9\xa0\x03\x23\xa3\x8f\xaa\x2c\xaa\x32\x56\x9f\x18\xb2\x8f\x4c\x98\xef\x9c\xbe\x53\xf5\xd2\x11\x7a\x5b\xf9\xe0\xcd\xe4\x11\xf9\x7e\xb5\xd0\x11\xfe\x7c\x9c\x50\xf9\x08\xb8\xe7\x54\x66\xca\xe3\x63\xf4\x92\x1f\x4b\x42\x7f\xe6\xc0\xed\xea\xd8\x9b\x31\x75\x00\x94\x6d\x3e\x21\xeb\xdf\xc4\x97\x57\xdb\x7d\x1a\x81\xef\x25\x3d\xd4\xb9\xdd\x7a\x16\xc1\x55\x41\x2d\xce\x2d\xec\x96\x99\xa2\x68\x13\x57\x78\x23\xfe\xf5\x19\xbe\x79\x5c\x81\x9d\x24\xab\x64\xff\xfd\x01\x0d\xfd\x66\xd1\x20\x7a\x36\x1c\xe0\x66\x6a\x22\x98\x06\x61\x86\x8d\x13\x99\x96\xad\xb6\x82\xd4\xb4\x90\xdc\x12\x85\x73\x1e\xd4\xc5\xc5\xa8\xe7\x27\x0b\x82\xc7\x9f\x49\x1f\x01\x6a\x18\x41\x15\xf1\x7e\x1e\xd8\xb1\xe3\x34\x26\x19\x28\x8f\xf1\xc5\xde\xe0\x53\xe9\xd8\xd5\xde\x16\xaf\xe4\xbf\xfe\x94\x2e\x95\x1c\xf8\x16\x66\x02\x75\x1e\x76\xef\x52\xb4\x32\x2c\x8c\xab\x9e\x85\x81\xa3\xf0\xe1\x11\x8a\x27\x71\x60\x23\x0e\xec\xfc\xcc\xed\xe9\xdf\x53\xac\x8b\x29\xfa\x37\xdb\x35\x1a\x39\x46\x95\xe4\x89\x7c\xf4\x3d\x65\x76\x51\x98\x01\xc3\xa5\xdc\xba\x33\x7c\x30\x8d\xcd\x80\xf7\xed\x1c\xb3\x1b\x5c\x33\x4a\x2b\xbc\xcb\x01\xc3\xa2\x12\x58\x7d\x30\x1d\x13\xcb\x34\x91\x38\xfc\xfe\xdd\x49\x6e\xf5\x82\x2e\x65\xaa\xfa\xf4\xeb\xf2\xbd\xbb\xd4\x27\x00\xdb\x0c\x9f\xbb\xa4\x17\xa2\x47\xec\x76\xf2\xd3\x95\xb1\xef\x1d\x84\xa4\xe8\xc7\x0f\xdd\x78\xa5\x12\x41\x1c\x10\xa6\x6f\xb4\x1a\x7e\xf9\x60\x0a\x40\x42\xc0\xd3\x2d\x7b\x4a\x18\x4d\x46\x95\x18\xdf\x13\xf7\x64\x56\x5e\xd4\xdb\x05\x37\x85\x77\x38\xad\x18\x74\x57\x19\x2d\x11\xd0\x69\xfb\xf7\x57\x64\x87\xe9\x37\x56\xa8\x2f\x1f\x56\x38\x2d\x8c\xf0\x55\x50\x76\xc5\x14\xfe\x6d\x6c\x14\xb8\x42\xde\x35\xf3\xa0\x3e\x2a\x74\xcb\x00\x96\x84\xbc\xf9\xf6\xfa\xf4\xbc\xc3\xb0\x89\xeb\x53\x37\x3a\xfd\x8a\x4c\xd5\x29\x8d\x2e\x8e\xaa\x9e\x8f\x58\xaf\xed\xfa\xe4\x7d\xfc\x13\x94\x10\x13\x5a\x10\x99\xed\x0f\x8e\xd0\xfe\x79\xd1\x16\x78\xd6\xd3\x67\xd3\x83\x90\x44\x08\x59\x72\x97\xb3\x3f\x3e\xa4\xad\x2f\xa9\x59\x87\x5c\x16\x53\xf1\xff\x63\xb9\xb2\x6f\x99\x35\x33\x3a\xbb\x7d\x9e\xd3\x2d\xf5\xa3\x7e\xdf\x4b\x4d\x58\xf2\xb7\x3c\xa3\xc7\x61\xd0\xc8\x4b\x8e\xd9\x9e\x03\xf2\xe7\x16\x29\xa0\x6e\x26\xdf\x19\x4b\xde\xc1\xda\x10\x30\x90\x99\xc5\x8a\xf3\x32\x57\xba\x8c\x5a\x93\x0b\x43\x15\x05\x14\x8f\x3b\x47\xba\xa5\x11\xc9\x21\x04\x02\x9e\x4c\x40\x93\x39\xa2\xa4\xb0\x28\xe9\xba\x65\xc5\x3e\x32\x3f\x48\x64\x99\xc0\xb0\xf8\x62\x61\xf3\x00\x3d\x0d\xf2\x1c\x92\x18\xa6\x5c\xf9\x86\xc6\x40\xc1\x9e\xcf\x68\x3d\x89\x40\x67\x17\x2a\x7c\xcf\x22\xf6\xc5\x86\xbd\x6d\xe7\x14\xfd\xb4\xc4\x30\xfa\x06\xc7\x96\xfc\xa2\x03\x3c\x71\xac\xb1\x08\x03\x34\xdc\xdd\xb3\x65\xcd\x20\x54\x01\xb9\x20\x2e\x07\xaf\xff\xf1\xa8\x2e\xef\x53\xc3\x42\x60\xe8\xcb\xf3\x85\xf7\x49\x50\xad\xda\x12\x6f\xf7\x97\xc3\x0a\x86\x62\x36\x8c\xa0\xbe\xff\xe4\x68\xa5\xd2\xe1\xe0\x1a\x8c\x63\x7a\xd2\xd3\x7b\x15\xed\x8f\x62\x50\x44\x15\xbe\xcc\x0a\x27\x24\x26\x2a\x25\x1c\x23\x65\xc6\x4c\xd5\xcd\x29\xbb\xe2\x33\x75\xa4\x65\xb0\xc2\xb6\x36\xa1\x35\xe8\xbb\x65\xb4\x96\xde\xbc\x20\xb1\xde\xdf\x7b\x98\x8b\x9d\x5e\x47\x03\xd7\x80\x75\x59\xfa\xbe\xfe\x6d\x8b\x52\x89\x25\x32\x29\xcb\xb7\xa5\x5f\xa3\x2b\xa2\x23\xf1\xb8\xec\x51\xee\xe4\x20\xc5\xee\x8e\x20\x9b\x96\x83\xa8\xa2\xff\xc7\x12\x1d\xf6\x68\x58\x30\x89\xe6\x35\xd0\x92\x01\x5a\x22\x00\x56\x15\x9e\x1e\xf3\x99\x07\x3d\x22\x63\xcb\xf4\x09\x0d\x77\xf8\x77\xb3\x47\xe9\x05\x62\x2d\x5e\x8e\xe7\x5e\x3d\xcb\x67\x09\x6b\x31\xf3\x10\xb1\xed\x84\xb3\x92\x3d\xbd\x51\x5b\xfe\x08\x40\x98\x50\xd6\x1e\xb8\x88\x3f\xa1\xd5\x81\x5b\xc4\x76\xa3\xf0\xed\xaf\x9e\xeb\x0d\x69\x1e\xb7\x13\x7d\x4f\x2b\x31\xdf\x51\xa2\xe7\x17\xa6\x2b\xe0\x68\x0e\x41\x5f\x12\xab\x48\x46\x35\x2d\xe5\x68\xcc\x0f\x8d\x8b\x25\x76\x88\x89\xcb\x65\xac\x76\xbe\x57\x5e\x92\x54\x36\x45\x88\xbd\x9d\x87\x64\x17\xea\x01\x4f\xb8\x5e\x28\x71\xe7\xc0\x0c\x69\x4d\xa4\xcc\x3e\x59\xe8\x08\xcf\x3c\x38\xc6\x4d\x89\x70\x81\x37\x69\xa2\xd8\x76\xf0\x5e\xad\x7f\x8f\x83\xcb\xe4\x85\x13\x92\x7f\x57\x0e\x30\x63\xc4\xb6\x51\x63\x96\x71\x9e\x4a\x5f\x99\x19\x85\x56\x31\xfc\xc8\x0e\x9f\x30\x5c\x51\xc4\x42\xae\x09\x96\x3a\xb0\x45\x5a\x23\xe1\x1c\xc4\xf3\x82\x5e\xf4\xee\xe6\x1f\xbb\x4c\xc5\xad\x36\xa4\x97\xbf\x8e\x6d\x00\x1a\x57\x31\xf3\xc5\xbe\x21\xdc\x73\x62\xa4\xc2\xff\x34\x31\xe3\x2b\x67\xb8\xe5\xe1\x69\x59\x66\x60\xcf\x40\x31\xe6\x36\x5c\xa6\xd5\xbd\x54\xf4\xe9\x89\x33\xd3\x69\xcd\x89\x86\xd8\x09\x94\x33\x7f\xcd\x53\xfc\xfd\xad\xc4\x3e\xa3\x9b\x51\x8d\x9a\x5e\x45\x8c\x7a\x7e\xd4\xad\x49\x32\x41\x8b\x2f\xa0\x2d\xf7\xbd\xa3\x48\x7e\x92\x12\xf6\x89\xc3\x29\x20\x43\xb7\x25\xe0\xb9\x6a\x95\xc4\x63\xe0\x0f\x1f\x6f\x20\xab\xfa\x62\x36\x91\xbd\xed\xa5\xf1\x5a\xdd\xe3\x59\x54\xdb\x0d\x64\x37\x2d\xee\xb5\x07\xe4\xb5\xf8\x02\xa9\xa3\x5a\x0c\x92\xb9\x46\xe6\xa0\x96\x04\x83\x52\x09\xfb\x7e\x8a\x02\xf0\x62\x29\xfd\xb9\xea\xd8\x4f\xf2\xd4\x41\x5f\x9f\x1e\x30\x2c\xa7\x07\x99\x3b\xde\xd1\x70\xc8\x22\x68\xc6\x5e\x2a\x2f\x6f\x91\xa1\xae\x4a\xb8\x05\x01\x3b\x21\x05\xe2\x5c\x29\xec\x15\xde\x7c\x46\x2d\xac\x69\x97\x68\xac\xde\x99\xae\x79\x9b\x11\xf0\x17\xe1\x3f\xbf\x4d\xe9\x60\x2b\xc4\x05\xd3\xc3\x9e\xfc\xbd\x47\x87\xaa\x45\x4f\x0d\xf2\xe3\xa5\x2d\xc9\x25\xef\xa4\x9e\x32\x1a\x10\xce\x58\xd8\x46\x2a\xa2\xe0\xaf\xdb\x14\xf2\x01\x36\x11\xdf\x09\x86\xe7\x35\xd1\x22\x8c\x18\x18\x48\x42\x9c\x46\x4f\x0c\x94\xab\x61\x78\x3e\x47\x2d\xcd\x54\xd5\x25\x42\x26\x2e\xfb\x57\x45\x46\x86\x7b\xbc\x70\x73\xb0\x05\x32\xe4\xf0\x69\x5c\xdf\x7b\xae\x4e\x57\xb2\x0c\x63\xd3\x41\x6e\xaf\x2b\x8d\xec\x77\xfa\x48\xca\x69\x45\x00\x27\xc3\xf3\x61\x93\x0a\xef\x31\x2c\x1c\x7d\xdc\x35\xee\x50\x79\xc9\x12\x39\xc5\x2f\x68\x85\xb3\xcf\x48\xe2\x04\x9b\xcd\xed\xe0\x8b\x00\x9a\x68\x27\xc5\x52\x91\xf3\x1e\xe2\x93\xbf\xd5\x36\x55\xf7\x03\xd9\x35\x9a\x54\x5f\xbc\x56\x10\xf7\xf2\xab\xef\xc9\x56\xd8\xeb\x22\x9e\x1e\xa5\xc2\x4d\x43\xa4\x3c\x30\x71\xc4\xad\xbc\x61\x29\xbf\xb0\xd7\xd6\xb0\x1b\x40\x92\x88\xa7\xf1\xe1\xb2\x8b\x72\x12\x02\x62\xf9\x52\x74\xef\xf2\x9d\xda\xf5\xb1\x18\x0d\xca\x96\x30\xe1\xbb\x69\xbd\x96\x61\x88\xe7\xa0\x7a\xd2\xc8\xfe\x6e\xa5\x2c\xc4\xa6\xc4\x37\x7a\xf0\x5b\xb2\x22\xe8\x0c\xbc\xa8\x29\xe0\x32\xd9\x6b\x74\x41\x65\x41\x64\xe6\xa7\xf6\xf3\x8f\x68\xfd\x1b\x62\x65\x44\x5c\x01\xa4\xff\xfc\x5e\x2d\x57\x21\x41\x99\x82\x37\xf0\xea\x6b\x1a\xa4\x1d\xb9\xc8\x44\x72\xbb\x3d\x66\x5b\x5f\xb1\x52\xe8\x08\x33\xe3\xe4\x8d\x2a\x21\x23\xb0\x7d\xb8\x1e\xb3\x0e\xf7\x8f\x73\x58\x74\x0c\x06\xee\x57\x4e\x6d\x05\xf4\x3a\xa6\xa7\xe8\x39\x40\x71\x5a\xac\xd9\x70\x10\x13\xa3\x24\x4a\x3c\x35\x93\xe7\xed\xe5\xa4\xc8\x70\x2d\xba\xa0\xf1\xc7\x99\xf4\x5e\xfa\x49\x94\x10\x17\x2f\xe0\x43\xad\x1f\xbe\xa6\xe9\xcf\x11\x70\xa1\xe4\xe5\xc9\x3f\x3f\xae\x2d\xe7\x08\x83\x1a\x9a\xff\xe9\x86\xd9\x1c\xc3\x75\xb3\xdb\x08\x9e\x0a\xf1\x71\x39\x0d\xe0\xe4\x64\x55\xa9\xec\x50\x93\xa8\x86\x6d\x5b\x39\xa8\xfb\x2e\xc8\x2f\x8d\xa2\x74\xd9\xd1\x93\xf3\x9f\xd3\x7d\x74\xe6\xcc\x11\x02\x85\xd9\xfb\xa6\xcb\x03\x41\x6b\xdc\x65\x3e\x3b\xf2\x44\xca\x3d\xd2\x49\xe6\x92\x99\xb3\x07\x54\x80\xac\x0d\xf3\xed\x59\xbb\xae\x94\x05\xa5\x83\x19\xf1\xb1\x61\x35\xac\xfb\x27\xde\xae\x8d\x27\x85\xe7\xba\x20\x31\xe4\xe6\xbc\xa9\xc0\x83\x68\xc9\xf7\xc1\x9e\x38\xdf\xbd\x60\x88\x12\xc0\x10\x38\x8a\x3f\x63\x0b\x75\x2d\xe0\x74\x29\xed\x4a\xe9\xb4\x54\xf3\x4a\xa9\x3a\x1a\x6f\x29\xee\xd9\x15\x39\x82\x08\x26\x8d\x49\xab\x1f\xa5\xa3\xd0\x0f\x9a\x14\xc3\xb6\x6a\x15\x0b\x13\xfe\x89\xd7\x0c\x51\xe1\xce\x1c\x8d\xe7\xb6\xa7\x53\x54\x05\x3b\x55\x17\x3c\x79\xe5\x3b\xdb\xfe\xa6\x70\x52\x30\x38\x64\x3f\x7f\xf3\xa2\xf4\xda\xd1\xb3\xb0\x6d\xf7\xb6\xf9\xcf\x1e\x9e\x32\x2a\x5d\x4e\x40\x3d\x23\x4a\xfa\xbf\x5b\x97\x37\xa4\x64\x62\x08\x4b\x58\x28\x77\xa9\x14\xcb\x45\x5d\x09\xe4\x7d\xfd\x31\x5e\x06\xfa\x16\x01\xbf\x3d\x78\xf9\x1b\xc3\x74\xb0\xb7\x40\xed\x00\x62\xf8\x97\x5a\x95\xc7\x58\x94\xc9\xc7\xda\xdd\xc0\x2c\x8e\xbb\x7b\x51\x9b\x8c\xbc\x53\xc6\x33\x1b\x97\x89\x67\x03\x84\x02\x50\xd8\x2f\xeb\xcb\x09\xcd\x79\x3e\x77\xb2\x4f\xba\x42\x2c\x72\xe1\xec\x70\xee\xc4\xf4\x91\x72\x89\x51\x71\x51\x82\xfd\x7f\x73\x9c\x72\xa2\xaa\xd8\xe0\xda\xcb\xd9\xec\x7b\xaa\x42\x30\xee\x82\x2b\xf2\xd9\x16\x99\x81\xed\x58\x5d\x61\xe4\xa8\xf4\xad\x0f\x9c\x22\x03\xc4\x0f\x2f\xf3\xa7\x4c\x1c\x96\x78\x2a\x13\x65\xc4\x52\xd8\x25\xef\x48\x1d\x23\x00\x96\x8f\x19\xc2\x43\xcb\x8d\x41\x11\x79\xaa\x2b\xdf\x7b\x67\xe4\x54\x95\x81\x5d\xfe\x06\x85\xa5\x6c\x51\x86\x2d\xee\xde\xf2\xbc\x99\xe0\xc1\x67\x14\xa2\x58\x96\xf9\xfb\x22\x59\xef\xab\xdc\xa8\xec\x1e\xc1\xa3\x59\x45\x3d\x64\xab\xde\x54\xb9\x59\x2f\x8d\xd6\xfa\x0f\x10\x26\xe6\xce\xd1\xb9\x59\xf3\x75\xda\x6d\xe0\x9a\x88\x49\x63\xd0\xbf\x9f\x94\x15\x09\x69\x29\xb6\x94\x80\x02\x75\xd7\xd6\xf4\x22\x04\x39\x44\x5b\x84\x64\x9f\x78\x25\xb9\x98\x86\x5a\xb5\xdc\x76\x4c\x73\x3e\xc7\x5d\x72\xb8\xf0\xd4\xc5\x11\xca\xa8\x0a\x8c\xe1\xe2\x79\x51\xcb\x28\x59\xd8\x77\x2a\x89\x3a\x6c\x7d\x59\x27\x22\x39\x0e\x66\x2a\x33\x25\x7c\x74\xb9\x3e\x15\x65\x54\x4c\xc6\xb3\x93\x0f\x0c\x51\x38\x99\x94\xfb\x4c\xce\xba\x4b\x99\xbb\xba\x26\xee\x06\x88\xe1\x6e\xde\xaa\xad\xc2\x06\xed\x85\x8c\x99\x2f\x3f\x72\x99\x2c\xaa\x51\xa5\x68\x01\x9f\x29\xd9\xb6\x67\xd7\x0d\xd0\x40\x59\x65\x06\x68\x2a\x19\x2c\xbe\xa5\xf9\x00\x19\x0c\x9b\xa4\x08\x5a\x47\x50\xda\x7d\xee\x5d\x79\x50\xaa\x08\x38\x6c\xf0\x71\x73\x03\x94\xab\x16\x10\x45\xcc\x26\x73\x53\xb3\x3e\x12\x29\x95\xa2\x38\xe1\xc7\x6a\xd6\x37\x3e\x35\x48\x5d\xa5\x44\x3f\x6e\xee\xa0\xd1\x4a\x15\x8a\x88\x97\x92\xb1\x7e\x66\xb3\x50\x00\xee\xa6\x26\xec\x5d\x32\x1f\x54\x64\x37\x2c\xe4\x9a\xd8\x4e\xbb\x88\x7c\xa2\x5b\xe3\x4c\x21\x56\xc6\xf1\xa4\x3d\xdc\xd3\x22\xff\x35\x68\x1e\xea\x21\xf9\xfe\x16\x49\xa7\x86\x96\x29\xf3\x96\xa6\x72\xe9\x9a\xc8\x2d\x2b\x32\xaa\x99\x57\x37\x6b\x10\x0a\x44\xaa\x98\x24\x76\x49\x3d\xb9\x53\x0b\x55\x2a\x3b\x14\x63\x85\x8e\xf0\x97\x4b\xe5\x8c\xb3\x4a\xfd\x28\x07\xa2\x86\xa1\x45\x2e\xb3\x83\xdf\xb5\x25\x0c\x39\xc4\x2d\x5b\xc8\x89\x83\xeb\x6f\x5f\xd1\xaa\x82\xc0\xc3\x81\x23\x86\x8a\xff\x74\x56\x1a\xd5\x05\x45\xe5\x86\x7e\xe3\xdd\xd8\xb2\x83\x21\x9f\x6f\xb2\x0e\x5f\xa3\x2b\xbe\xd5\x8b\x31\x02\xe9\xf2\x03\x0a\x88\x0e\x34\x22\x7b\x32\x9f\x3e\xaf\xe1\x3e\xc1\xe1\x44\xfc\x83\x5f\x9c\x6c\x70\xb1\x89\x7a\x62\x6c\x8a\x18\x9f\x1b\xe2\x2a\xe6\x07\x8d\x4e\xf1\x3f\x7e\x5b\xa5\xa2\x97\x11\xe3\xbc\x56\x67\xb3\x1c\x04\xce\x68\x01\x81\x97\x8b\x8f\x2b\x68\x05\xe4\xc5\x34\xeb\xdc\x1f\x5e\x51\xae\x13\x77\xa5\x0e\xb7\x8e\x4f\xca\xe3\x12\x80\x86\xa1\xea\xba\xf4\x45\x55\x4e\x86\x56\xed\xa4\x1f\x9c\xd6\xd4\xac\x6c\x4e\xcd\xc0\x88\x95\x32\x86\x8f\x19\x26\xce\xa3\xcf\xcb\x0b\x8e\x81\xcc\x5d\x58\xa7\xd1\xd2\x19\xa5\x15\xbb\xee\x46\x89\x84\x17\xe3\x5b\x17\x0c\x53\x7f\x24\x12\x26\xac\xd9\x6f\xbc\x77\x99\x32\xe2\xb4\x4d\x5a\xf3\x2a\xea\xde\xff\x4f\xc7\x07\x48\xdd\xce\x42\x47\x78\xc5\x3b\xe9\x16\xd8\xc5\x5d\x76\x3d\x91\x04\x16\xa3\x1a\xba\x2a\x1d\x87\xad\x14\xf3\x7a\xc6\x3d\xe9\xb5\x82\x87\xba\xc4\xae\xe5\xfc\x02\xc5\xb8\x06\x31\xdf\x82\xf9\x35\xbb\x7d\x84\x12\xa0\x7c\x5c\x4e\x94\x43\xb2\x57\x69\xc6\xa8\x55\xea\x79\xa4\x48\x6c\x00\x2a\xc7\x52\xf5\xc6\x24\xad\x1b\xac\x61\xd7\x17\x2c\xef\xf0\xdc\xc6\xc1\x49\x73\x87\x19\x01\xb9\xe7\x71\xe3\xd3\x09\xb9\x8c\xaa\x80\xa9\xc8\x3d\xd5\x47\x06\x0b\x3f\x60\x25\xc0\x4b\x1a\xc2\x79\x2d\xf7\xaf\xed\xca\x14\x98\x96\xe0\x67\xe5\xce\x8a\x61\x19\x2e\x95\xa2\xa6\xbb\x86\x85\x29\x54\x4f\xc6\x7a\x4b\x7b\x48\xa4\x6c\x75\x21\x01\x30\xc9\x78\x8f\x8f\x50\x10\xd6\x6e\xc1\xa7\x45\x64\x18\x00\x11\xfe\xba\x00\x22\x78\x55\x1a\xf0\x25\xaf\xbf\x32\xb9\x6e\xd5\x40\x59\x41\xad\x5c\x35\x5a\xd1\xf7\xf1\x3d\x27\xe5\x29\xf2\xc0\x38\x79\x24\x66\xcd\x6c\x2b\xb4\xb7\xcf\x98\x11\x1d\xb2\xab\xee\x1e\x2c\x8a\x5d\xe9\xbe\xb8\xe4\x32\x65\x96\x5d\x2f\xd9\xb4\x4b\x9d\x9f\x65\xfe\x65\x8c\xca\x78\x74\x4b\xe0\x6d\x1f\x45\x99\x9f\x28\x2a\x36\x42\xa3\x41\x24\xb9\xec\x97\x57\x29\xb4\x03\xec\x7a\xc4\x8f\xe7\x6b\x29\x69\xb1\xa8\x40\xa7\x2e\x77\x02\xbd\xf4\xf5\x34\x34\x63\x0a\x47\x0e\x65\xee\x0f\xb5\x5b\x6f\x32\x90\x67\x72\x63\x29\xfd\xd5\xb6\xbc\x94\x25\xc4\x40\x4b\x34\xd3\xd3\xde\x5f\xbc\x2b\x5e\xfc\x7f\xe7\x2d\xb5\x34\x09\x5c\xb1\xf6\xcc\x5d\xaf\x79\xc6\x7b\x36\xc6\x55\xcc\x85\xdf\xc2\xcd\x53\x74\x63\x55\xa8\xd0\xf8\x4b\xfc\xf6\x76\x19\xee\xcb\x34\xf0\x3c\xe2\xa6\x6e\x57\x7e\xd4\x93\x0a\xe2\x86\x54\xf1\x04\x05\xcb\x31\xa4\x93\xb7\xcf\xd7\xad\xbe\xae\x21\x2c\x6f\x78\x46\xe7\x27\xf1\x42\x27\xe6\xe6\x66\xd9\x42\xa1\x7f\x18\x54\x31\x23\x30\x01\x0d\x5f\xd1\xea\xbd\x2e\xca\x2a\x40\x0e\xe7\xe8\x84\x0f\x3c\x03\xd5\xbb\x8d\xdd\x42\x5b\x5b\xa1\x23\x7c\x5f\xab\xa2\x77\xe3\xfb\x8c\x14\x83\xa4\x40\xd9\x76\x4e\x83\x6f\x83\xdc\x1c\xe1\x82\xe6\xd1\x5f\xb8\x5b\x33\x70\x2e\xdb\x48\x3c\x94\xfc\xa5\x82\xb5\x19\xa5\x30\x1e\x83\xe6\xbc\x26\xaf\xbd\x8b\x3c\x0f\x05\xa0\xf5\x72\x48\xd3\x75\xc1\x55\x14\xdd\x7c\x65\xb0\xb5\x54\xf3\x4f\x30\xa9\xc3\x69\xbe\x70\x1f\x0f\x3c\x3a\x4e\xc1\xb5\xb8\x5d\xa4\x91\x40\xb2\xa6\x59\xe3\xa6\x11\xa3\xa2\xb0\xb8\x76\xe8\x22\x78\x98\x31\xca\x04\xe7\x38\x3a\xa9\x8f\xf0\x9b\xe2\xe2\xe8\xc3\x57\xe0\x31\x7e\x7c\x48\xb3\xc2\x1b\x01\x8d\x13\xfe\x2d\x3f\xb6\x45\x47\xb7\xb8\x06\x36\x05\x7a\xe5\xff\xea\x9e\x4c\x51\xf7\x63\x82\x4a\x1c\x44\x9e\x27\xdf\xd0\x85\x15\x8a\x45\x12\x2f\x84\xf3\x9f\xda\xa8\x08\x90\xa3\x62\x91\x44\x3f\xb2\x72\xbe\xf7\x65\x05\x57\xf2\x39\xfa\x94\xe2\x55\x10\xa5\x39\x56\xf0\xb0\x2d\xe4\x9d\x72\x64\x42\x43\x57\x6f\x30\x54\xe2\xaa\xd2\xd9\x2f\xcf\x94\xd3\xaf\xd9\xad\x85\x8e\xf0\xe7\x27\x54\x91\x85\x4e\x3e\x5d\x84\xe2\x79\xc5\x2a\xcd\xb9\xda\x88\x25\xc2\xa5\x0e\x78\xb6\xfe\x58\xaf\x25\x2b\x44\xc9\x0b\xbb\x04\x2d\xd4\xa9\xfa\x84\x23\xcd\x2f\x59\xa9\xfb\x6a\x80\x49\x9f\x22\x76\xfc\xbb\xf3\xfa\xa3\xae\xc1\x7d\x05\x03\x8f\x8f\xdd\x25\xbf\xb9\x6a\x0d\x0a\x51\x39\xbf\xf1\xc9\x74\xec\x27\x3e\xe7\xab\x76\x6f\x95\x79\xd2\x41\x5e\xc5\x42\x26\xad\x29\x4e\xb3\x4b\xc4\xb8\x22\xf0\x14\x2b\xb0\xfc\xc8\x6b\x14\x1b\xdf\x2e\x54\xe7\x28\x84\x4f\xbc\xa4\x14\x19\x81\x1b\x2b\x26\xe4\xe7\x1e\x4d\x3f\x75\xca\xe0\xf0\x88\x09\xc2\x3b\xda\x70\xbc\xc8\x60\xeb\xce\x57\x2b\xd3\x6f\x4f\x03\xc4\x3a\x51\x1d\xd9\xc8\x26\xbe\x95\x66\xd6\xef\xd8\x23\x94\x90\x94\x85\xdf\x2e\x55\xdc\x8d\x53\xf2\x96\x1e\xe5\x02\x13\x1d\xab\xaf\x6b\x10\x53\xcc\xdf\xb0\x5c\xb5\x41\xe4\xbb\x64\xbe\xd1\x17\x85\xcd\xd6\x83\xc3\xe2\x3f\xac\x61\x97\x44\xa9\x00\x2e\xe4\xab\x07\x35\x94\x0a\xf6\x31\x43\x2e\x0f\xe2\xd9\x9e\xd6\xe1\x5a\x6f\x43\x44\xe3\xf6\x9f\x9a\xa6\x89\x1b\x38\x45\xcc\x04\x61\xe6\xea\x5d\xba\xef\x3b\x4a\x6c\x69\x73\xbb\x76\x0f\x8c\x2b\x1e\x8c\xa1\xcf\x3c\xbd\xae\x41\x6c\xc2\x21\x1c\x9a\x08\xb0\xc9\xd7\x57\x2a\x42\xd7\x88\xb8\x40\x6f\x13\x65\xd9\x15\xe3\x92\x36\x8f\x60\x45\x99\x6e\xc4\xd8\xa1\xe2\xb7\xe0\x84\xeb\xdf\x93\x5b\xf8\x58\x4a\x7c\xb4\xcc\x10\x28\xf7\x3b\xef\x28\x16\x13\xd4\xf5\x11\xa8\x32\x64\x2e\xbd\x90\xfe\x5c\x45\xc4\x70\x89\x52\x3f\x3e\xb5\xb9\x41\x3c\x59\xc5\x6e\x02\xe3\xa6\x6a\xea\x1a\xd1\xaf\xa6\x8e\x13\xb8\x82\x18\x21\x58\xb9\x99\x09\xeb\x15\x02\x79\xc0\x18\x49\x19\x1b\x77\xab\x10\x3d\x9f\xc8\xbd\x55\x76\x51\xb3\x82\xf5\x75\x7d\x12\xcf\x90\x7b\xb2\x87\x2f\x48\x1e\x3e\xaa\x17\x3a\xc2\xfc\xe9\x81\xa2\xa3\x61\x0e\x66\x85\x8e\x70\xf0\xc3\xfc\x00\xac\x44\x15\xe2\x71\x07\x02\x78\x80\xdf\xbb\x5b\xcb\x0a\x68\x33\x16\xa7\x7b\xe6\x9d\xe9\x7b\x37\xa3\x95\x0f\x41\x6e\xe0\x12\x90\xf0\xda\x63\xac\x7e\xb8\x56\x53\x82\x6d\x6b\x9b\x13\x3f\x27\xe7\xd1\x46\x1d\x56\xe2\x88\xb5\x67\xe6\xd5\xfb\x75\x02\x36\xf2\xad\xd8\xae\xbb\xf5\x7e\x6d\x67\x5a\x67\xdc\x13\x46\x5c\xcf\x6b\x4f\xf1\xbb\xc3\x8f\x5f\xf4\x2e\xaf\xd4\xf3\x0f\xae\x11\x3b\xc1\xcf\xbd\xaf\x53\x41\x94\x41\x30\x3b\xfe\xa4\x12\x0e\x48\xd9\x85\xda\xea\xa8\xaf\xd5\x81\x01\xb3\x25\x3d\xfa\x95\xb7\x87\xc6\x27\xa8\x84\x3d\x8f\x72\x90\xc9\x2f\xb6\xaa\x54\x6b\xc0\x72\x16\x3a\xc2\x01\x4b\x35\x2a\x3f\x85\x2f\x17\xfd\x92\xa2\x70\xed\x36\x61\x17\x55\xe8\x08\xff\xa5\xc8\x87\x8c\xab\x91\x8d\x1c\xe4\x1a\xc9\xd0\x6c\xc4\x44\x49\xcc\xc7\x51\x22\xc9\x37\x3d\x23\xc7\x62\x58\x25\xd3\xfd\xf2\x85\xb1\xea\x2c\x47\xe7\x40\x85\x3f\x3c\x39\x2c\xa5\x83\x21\x44\x82\xfe\x72\x72\xb8\x32\xf3\x74\x28\x43\xae\x09\x28\xf2\xec\xd7\x5f\xe2\x51\x54\xc0\x09\xc4\xc2\x35\xf7\xe3\xfd\x9a\xd7\x1a\xb5\x40\x21\xab\xaa\x7a\x0f\x64\xf7\x4d\x90\x71\xcc\xa2\x0e\x04\x87\xb1\xe2\x20\xae\x46\xcc\x27\x8a\x2a\xfc\xfc\x2b\xd5\x08\xe6\x23\xe2\xe2\x86\x5e\x3c\xe7\x8f\xba\x5a\x7b\xbb\x02\x09\xd4\xdb\x04\x33\xf7\x23\x61\x83\xb9\x29\x20\xd0\x92\x6d\x3f\x99\xfe\xd0\x36\xee\x82\xea\x6f\x1a\x51\xfd\xdf\xf6\x1c\x93\x83\x39\x6c\x96\xf9\xe5\xce\x5b\x0f\x34\x98\x0f\xf8\x56\x17\x37\x51\x15\xfb\xd7\xe0\xb8\xac\xce\x4c\x0c\x87\x29\x96\xb7\xcf\x7d\xe1\x59\x7d\x0d\xcf\x0f\x9b\xa0\x39\x7e\x62\x7e\x3a\x7f\x06\x8c\x68\xf3\xac\x4b\xba\x15\x55\x60\xf9\xc6\xc3\x57\xb7\x0e\x55\x16\x85\x46\x25\x80\x20\x7b\xd9\x94\x81\x52\xb1\xca\x29\x74\x84\x99\x5d\x8a\x58\xba\x50\x15\x7c\xe9\x49\x5d\x05\x20\x70\x8a\x72\x88\xb1\xe1\xb0\x42\x35\x22\x1e\x47\x13\xfe\x9b\x95\xae\x00\xa3\xe8\x04\x3a\x62\x2c\xc1\x22\xac\x7f\x52\xd3\x1a\x21\xdd\x38\xba\x2c\x24\x11\xf3\x7f\xbe\x59\xb4\xcc\x06\x75\xa9\x23\x84\xdf\x3b\x7a\x32\x5f\x0f\x47\xea\x5d\x61\x22\xad\xc3\x5c\xed\x4a\x82\x43\x4d\x5c\x5b\xff\x60\x92\x90\x19\xf6\x7c\x86\x4c\xd5\x55\x63\xf6\x36\x45\x28\x84\xcb\xd2\xf2\xcc\x57\x1f\xa1\xed\x92\x84\x11\x0a\x6f\x13\x7e\xff\x46\x4a\xa6\xdd\x10\x5e\xa6\xd3\xfa\x8c\x48\xcd\xe1\x0b\x1e\x46\x1e\xcf\x2d\x3f\x7b\x58\xf3\xf1\x45\x35\x12\x57\x4c\xf9\xb7\x46\xab\x79\x47\x01\xf6\x02\xa8\xf7\xd4\x18\xb9\x47\x6a\xd4\x28\xda\xd8\xa4\xec\x3b\xa9\x53\x65\x42\xfa\x3a\x77\xab\x86\x3f\xa5\x9d\xd4\x9c\xd6\x92\x18\x81\x6e\x10\x4a\x1d\xb8\x44\x5c\xfe\xc2\x2f\x9f\xa0\xf1\xd2\x02\xd7\xa7\x8c\x6a\xde\x42\xb7\x35\x29\xab\x18\xe4\x5b\x88\x79\x84\x27\xb8\x7d\x8f\xf0\xfb\x34\x0b\xa4\xf2\x7b\xf2\xcd\x22\xc9\xce\x9c\x01\x72\xcc\x22\xc9\x0e\xad\xea\xe5\x5a\x0b\x47\xdf\xaf\x5f\x39\x58\xe5\xae\x45\x21\xef\xcf\x1a\x47\x85\xb8\xc4\x27\x30\xa7\x8f\x51\xcb\x07\x36\xaa\xd6\xb5\xa8\x86\x3d\xd8\xc5\x65\xa6\xcd\x55\xe5\xc0\x1d\x0e\xcf\x1b\xff\x1c\xff\x40\x4b\x03\xd3\xa3\x89\xd4\xe4\xfb\x84\x13\x1c\xd7\xcf\x01\x7f\x8e\xf0\xd7\xed\x57\x29\x59\xd6\xc5\x65\x0a\xbf\xb7\x51\xd0\x3e\x3b\xf8\xc1\x61\x2a\x28\xc3\xf5\x03\x8e\x25\x5b\xfc\x8a\xb2\xe7\x16\x78\xe7\xe8\x5b\xce\xd8\xa8\xc9\xa2\x99\x82\xde\x92\xf9\xf6\x39\x6d\x3c\x47\x6b\xd2\x79\xe9\x1f\x1a\xd0\xc6\xe1\x0f\x54\x48\xa6\xd9\x67\xe5\xb0\x8b\x46\x4d\x4d\xf8\x59\x05\x4d\x4b\x1c\x07\xbb\x7c\xec\xf0\x05\x8d\xb9\xc2\x10\xac\x59\xe2\x95\xd7\xde\x23\x72\xda\x6a\x45\x41\x31\x1c\xb6\x5e\x89\xfc\xc8\xc5\x41\x2d\x6e\x8e\xc2\xc7\x14\x29\x34\xc4\x6c\x82\x12\x1d\x88\xef\xce\x96\x49\x33\x7a\xf3\x18\x58\xbf\xf7\x68\x90\xc2\xb6\xf6\x59\x71\xde\xbd\xb9\x98\xbe\x1c\x60\x59\xc4\xe7\xaf\xcb\x6b\x92\x52\x09\x44\xdb\x7e\xcb\x25\x50\xa6\x88\x0d\xd4\x0b\x91\xb7\xff\x56\xfe\x46\x91\x6d\x13\xe4\x0a\xf9\xd0\xaf\x9e\x4e\x87\xa6\x0a\xb2\x9d\x7a\xa5\x8e\xe4\xc0\xcd\x5a\xa5\x17\x9a\x51\x39\xce\x41\xde\x80\x6c\x5f\x1c\x4b\x35\x20\xcf\x2b\x30\x4a\x39\xee\xe2\xa1\x8b\x32\x10\x46\x21\x09\xae\xf4\xe6\xad\xaa\x2f\x01\xd7\x7c\x13\x75\xe0\xc1\x97\x65\x0e\x06\x24\x3c\x31\x7c\x65\x9f\x1e\x6e\x5c\xa0\x38\x8d\x58\xc4\x36\x19\xb7\x2c\xcc\xbd\xba\x8d\x57\x04\x55\x4b\x68\x37\xe4\xe7\xec\x54\x24\x02\xa0\xa1\x2f\x74\x84\xae\x2e\xb4\xb9\x29\x20\x55\x59\x2e\xff\x69\xa2\xec\x05\x4a\xa4\xd1\xc9\x21\xfb\xf2\x53\xaa\x65\x41\x99\x38\xb1\x4c\x54\x76\xdb\x28\x05\x49\x02\x13\x15\x3e\x0e\x3e\xc4\xaf\xd5\xda\x94\x93\xc5\xd1\xb7\x12\xe0\x3e\xde\x14\xa4\x70\x93\x81\xc6\xb9\x10\x58\x35\x21\x93\xdd\x79\x54\x77\x30\x0d\x98\xe2\x4e\xe2\x6b\xa2\xc1\xc9\x98\xce\x16\x83\xb8\xec\x95\x53\x87\xaa\xb5\x42\x8d\x1b\xb8\x58\x67\x9b\x94\x36\x21\x91\xbe\xfa\xef\x6b\x94\x40\x51\xc6\x2e\x48\x65\x67\x3e\x3d\x5f\x83\xbf\x92\x1a\x31\xf8\x35\x7d\x7e\x87\xde\xa9\x76\x15\x69\x9c\x86\x36\x2d\x6c\x4a\xfd\xe1\x2c\xde\x7e\xef\x9a\x3d\x48\x69\x60\xbb\x0a\x1d\xe1\x55\x2b\x35\x71\x23\x17\x80\x39\x62\xad\x35\x6f\x4d\xb3\x9c\x3e\x5b\xca\x00\xd0\x0d\xd3\x4d\xa3\x8f\x7c\xc4\xb0\x5b\xa1\x35\xb5\x48\x09\x57\x6c\x94\x47\x08\x34\x32\x84\x03\x61\xd6\xb9\x53\x9a\xee\xd8\xca\x1e\x2e\xbf\xe4\x90\x28\xbb\x2c\xc4\xc0\x4d\x57\xbc\xdb\x49\x93\x14\x09\x52\xca\x17\x96\x99\xe7\x94\x71\x9f\x26\x26\x72\x6f\x4a\x8a\x1c\x6a\xc7\x17\x34\x23\x28\xc4\x4c\x52\x2a\x25\xdc\xbb\xdc\xc7\xef\x6a\x16\x99\xc8\x0d\x5c\x83\xc4\x3b\xb5\x70\xca\x05\xdd\xe4\x90\x98\x82\xaa\xfd\xc3\x15\x9a\x7a\x0e\xa5\x42\x5c\x32\xf7\xbd\xe5\x29\x6c\x86\x1f\x00\x6c\x3d\x73\xef\xec\x34\x46\x36\x56\xc7\x00\x9c\x98\x0e\xa4\x7b\x5e\x49\x71\x2e\x46\x51\x62\xf0\x39\xb1\x71\xd3\x66\x65\xaa\xca\xcd\xd6\x53\xdb\xa7\x7e\xb7\xca\xc2\xdb\x56\x56\xb0\xb9\xdb\x2e\xf0\xe7\xbb\x84\xe1\xd4\x0b\x7d\xe6\x84\x2c\x81\x3b\x91\x0b\xc3\xec\x7e\xfb\xe4\x57\x00\xc9\x74\xce\x99\xdb\xcd\x35\x28\x0a\x37\x51\xca\x0c\x46\x4b\xaa\x1c\xe1\xc2\xa5\xaa\x7c\x4d\x1b\xbc\xa4\x3b\x35\x76\x3f\x65\x15\x08\xf3\xe1\x8c\xfd\x0a\x9b\xd5\x87\xf9\x1c\x31\xb8\x9d\x51\x4f\xfe\xde\x11\x0d\xfa\x02\x7e\x74\x3d\x99\x47\x04\xbd\x29\xd7\x47\xe8\xde\x39\xa8\x44\x50\x81\xe1\x44\xe5\x7c\xf0\x5e\x29\xad\x8e\x55\x24\xdc\x4b\x23\xd4\xcd\x60\x5d\x24\x8a\xb0\x78\x89\xae\x3b\xec\x96\xe3\x5f\xf2\xd3\xbe\xfc\x81\xad\x22\x5e\x4a\x32\x60\xc3\x8a\xf4\x71\x8a\xd2\x97\x49\x9d\x69\xd2\x5c\x7f\x4f\x02\x2c\xe0\x2c\x51\x38\x64\x3f\x3e\x9d\xa4\x91\x2e\x90\x05\x3e\x6e\xe9\x8c\x9f\x92\x1d\x00\x66\x5a\x90\x0c\x8e\x3c\xd1\x28\x4e\x4e\x3c\xce\xc1\xe1\xc8\xa6\xc9\xcf\x2a\x1a\x8c\x28\x88\x2a\xd8\xe8\x1f\xae\x9d\xaa\xfb\xd7\x63\xe4\xc4\xcd\x6e\x8b\x06\x9e\xaf\xd0\x32\x72\x85\x06\xa7\xb8\xbc\xa7\xa7\xc6\x8a\xdd\x5e\x95\xba\x1e\x64\xaf\xcc\xef\xc6\x26\x45\x20\xb7\x40\x4f\xc7\xec\xa5\x27\xc6\x6a\x11\x15\x7b\x98\xd5\xe4\xf0\x70\xc8\x31\x0d\x36\x4d\x83\x78\xcb\x9e\xd9\x3c\x5e\x11\x7e\x4c\xd6\xda\xd1\x57\xd9\xbf\x50\xb3\x5e\x73\x3c\xa3\x37\xf1\xc6\xed\xfd\xd4\x3c\xc4\x88\x87\x0a\x1d\xe1\xb7\x2f\xa4\xff\xb1\xe7\x23\xb7\x42\xbb\xbc\x0a\x49\xe9\x32\xe6\xc7\x2d\x53\x4c\xb2\x08\x0e\x7c\xec\x22\x57\x1e\xee\x70\xf9\x9b\x32\xe1\xfb\x0c\xa3\x46\x71\xae\xdc\xb0\x89\x1c\xc6\xd2\xde\xda\xda\x0e\x35\x33\xdb\xaa\x48\x19\x23\x56\x87\x28\xd5\x11\x7e\xfe\x9a\x31\xb2\xd0\x46\x36\xd8\x11\x10\x24\x2c\x71\xc3\xbf\x3e\x39\xa4\x4b\x99\x0d\xc3\x5c\xe4\xc1\x0d\x63\xd5\x95\x47\x63\x13\xf9\x05\x8d\xc7\x65\xc2\xf8\x44\x4c\xe8\x73\x3f\x30\x25\x62\xb8\x28\x9d\xac\xf5\xf9\xdc\xa6\x53\x5c\x8a\x74\x25\x0e\xec\x1a\x6c\x26\x31\x2b\x63\xd5\x5d\x3c\x7b\xfa\x15\xa1\x01\x8a\xfd\x22\x02\x91\xc3\xcc\xb9\x67\x35\x51\xa1\xa8\x58\xe0\x57\xfc\x81\x31\x13\x94\x2d\x6c\xb5\xe0\x71\x89\x6c\x7d\x77\xfa\xf6\xa4\x18\xa9\x48\xe0\x86\x43\xed\x9c\x7d\x5a\x23\x4c\x5a\xc4\x93\xd8\xb2\x9e\x4c\xb8\x5b\x76\x2b\xc4\x8c\x82\x60\xa2\xec\xd1\x11\x8e\xdd\x2c\xa6\x95\x9e\x17\x38\x1c\xf8\xb8\x78\xb7\x56\xf0\x7b\x5c\xf2\x26\xfb\x9d\xb9\xc9\x9d\x9c\x31\x0b\x1e\xd7\xef\xa7\x36\xdc\x39\xe1\x82\x1f\x57\x8a\x9f\xb1\xe5\x50\x17\xf4\x73\xba\x51\xb9\xcc\xfd\x0c\xe0\x27\x1c\xaf\x26\xcb\xe2\x92\xd7\x80\x57\xcf\x5f\x33\x93\x83\x24\x16\x63\x1b\xb9\xb8\x5e\x58\xed\x10\x5f\x09\xc7\x99\x3f\x37\x6b\x28\x7a\x8b\xba\xb1\xcb\x5d\xe6\x03\x0f\x0c\x4b\xcd\x82\xa2\xc2\x39\xfa\x9d\xa3\x5f\x4a\xbe\x07\x6c\x5c\x7b\x32\xc3\x16\x24\x2b\xd8\x19\x33\x0a\x1d\xe1\x73\x8f\xf3\xca\xf1\x96\x96\x65\x0a\xa0\x22\x7f\xb7\xdb\x60\xc2\x6f\x92\xc0\x11\x0d\xf6\xa7\xb7\xcb\xd6\xb4\x12\x30\xc3\xc2\x8c\x56\x0a\x1d\x61\x6d\xaa\x4c\x19\x8c\x40\xc9\xf7\xd3\x07\x35\x69\x7c\xb7\x33\x60\x24\xf6\xab\x09\x3f\x76\x48\xef\xca\x13\x40\x71\x3c\x76\x7d\x5a\xe1\x52\x02\xbc\x27\xdb\x77\xed\x95\xda\x87\xc3\x55\x0b\x69\xd0\xe9\xcc\x2d\x1b\x46\x24\x5a\x33\x30\x77\x90\x02\x6d\x0b\x35\x34\x66\x15\x71\xc6\x27\x2c\xe1\x16\x6e\x4c\xde\x93\x57\x6c\xa8\xe0\xf3\x03\x7d\x7e\xa1\x6f\x42\x93\x39\xd8\xe8\xd2\x47\x14\x0d\x3c\x31\x17\x88\x52\xc8\x4f\x76\x8e\xed\xad\x8e\x4a\x0c\xb8\x72\x1f\x39\xa6\x0c\x45\xa3\x46\xdd\x44\xbc\xc6\xcb\x2f\xd9\x3f\x5a\x6d\x1d\x5d\xaf\x44\x99\x93\x84\xbe\x01\x2f\x8c\x53\xdb\x6a\x87\x36\x46\xbd\x43\x0b\x15\x7a\x08\xf1\x79\x71\x94\xfb\xc2\x49\x4d\xc8\x16\xbc\xf3\x84\xbf\x9a\x08\x69\xf5\xd7\x92\xf9\x0b\x73\x00\x3a\xf5\x87\xd7\x24\x25\xc1\xc2\x7e\x89\x60\x5b\xf5\x93\x5b\xf5\x8c\x5c\x63\x4b\xd1\x3d\xd1\xb7\x3c\x32\x5f\xa7\x0d\x19\x9c\x9b\x2a\x70\x39\xdf\x38\xa0\x0a\xfb\x56\x05\xf3\x36\xfa\xad\xbb\x5e\xd2\x07\x99\x0e\x4d\x14\x6f\x32\xcb\xf7\x25\x9f\x72\x4e\xcb\x4c\x80\x9d\xe7\x1b\xac\x65\x89\x29\xd9\xe3\xad\x7a\x4a\xe5\x3a\x8d\x38\x6e\x2f\xd1\x63\x8a\xd5\x32\x15\xb9\x39\x1c\xd3\xa9\xa8\x1c\x61\x13\x94\x51\xf2\x4d\x47\x95\x55\xb3\xcf\x02\xc3\x0f\x60\x22\xf0\x7f\x07\x48\xd8\x72\x35\x1e\x9f\x65\x7a\xde\x93\xf9\x07\xd9\xa4\xc2\x73\xe6\xb6\x95\x8a\x0c\x1f\x62\x0c\xb9\x7c\x36\x60\xac\x4a\x7e\x06\x83\xdd\x3b\x17\xf5\xbf\x5d\x21\xe7\x81\x7d\x64\xf4\xec\xfa\x9f\x17\xc3\x01\x46\x6b\x44\x14\xc5\xd9\x71\x0f\x25\x97\x65\x76\xcb\x8c\xe8\x9b\xdd\x74\x57\xef\xc8\x63\xde\xbc\x7f\xe4\x6c\xba\xe7\x9f\x5c\xc3\x02\xb1\xfc\xd4\xd1\xf4\x61\xd9\x14\x10\xd7\x07\x17\x2e\x9f\xc4\x04\xf6\x7c\xf7\xee\xc6\xb9\x17\x3f\xde\xe1\xae\xd7\x75\xcf\x5a\xb1\x72\x4d\x80\x8e\xb9\xb5\x7b\xb4\x20\x63\x20\xd7\x44\xb6\x78\x25\x7f\x10\xcb\x3a\x9b\xc2\x7e\x0f\x50\x84\xeb\x75\x23\xd0\x58\x2c\x08\xde\xd6\xad\x1a\xc4\x11\x31\x46\xbb\x92\x5d\x5d\xee\x99\xa2\x36\x76\x42\xae\xfc\xd7\x3d\x19\xef\x05\x4d\x47\xbf\xcb\xc5\x0c\xd6\x49\xe1\x8d\xed\x4a\xce\xc2\xb6\x20\x58\x37\xb4\xa7\x8f\xba\x9a\xb8\xb2\x61\x61\x47\x28\x38\xe4\x2f\xdd\xa6\xb3\xd5\x3c\x6e\x8c\x1e\x5e\x38\xd1\x2c\x9a\x71\x1f\x83\xbe\x73\x20\xe8\x97\x63\x67\x8e\x52\x8e\x1f\xf2\xa3\x58\x50\xad\x0a\xfe\xf4\xf5\x4d\xff\x0b\x89\x9b\xcb\x46\xdf\x3b\x51\xbf\x79\x0e\x72\xcd\x38\x5b\x85\xdf\x79\x58\x3c\x5c\x52\xc4\x8c\x9f\xbd\xeb\xcd\xcb\xb4\x1b\xe4\x13\x03\x25\x0c\xfe\xdc\x94\x03\xba\xcf\x5d\x10\xbb\x18\xf3\xba\x78\xd9\xb1\x26\x91\xb2\x19\x76\x88\x1f\xd3\x2a\xee\x11\xd6\x17\x9e\x41\x03\xd7\x64\x98\xab\x8c\x7e\x6e\xab\x6e\x7c\x5e\xa7\x6e\xcc\xed\xea\xe3\x2b\xac\x5f\x9f\xc2\x8e\xe1\xfb\x93\x1a\xac\x52\x67\x89\x93\xb2\xf0\x0c\x9f\x3e\x94\xb1\xcb\x20\xb1\xe7\x97\xed\xbc\x5c\x89\x7f\xbc\x66\x4b\x6d\x13\xc8\x01\x3d\x9d\xdb\x76\xc2\x78\x84\x10\xd3\x39\x5d\x38\x76\x94\xb8\x2b\x10\xc7\xd9\xfc\x72\xb3\x26\xee\x83\xb1\x30\x4f\xcf\x2d\x38\x32\x5c\x85\x3e\x52\x17\x7b\x42\x73\xe6\xb5\x4b\xe2\x95\x9e\x1d\x18\x50\x82\x45\xff\xf5\x4b\x0f\xea\xae\x3d\x34\xb0\x93\x29\x68\xf6\xf7\x27\xf5\xcc\xe8\x52\xc8\x70\x72\x49\x91\x3f\x23\x3b\xe0\x0a\x76\x3b\x61\x53\x7f\xcd\x49\xce\xd7\x58\x1d\x54\x31\x53\xd1\x84\x3d\xb9\xe3\x87\xd3\x1f\x1e\xbc\xb5\xf9\x6d\xff\xc7\x6c\xad\x60\xe3\x16\xba\x50\x0c\xfd\x62\x90\x6c\xca\x68\x31\x30\x2c\x05\x5a\x9f\xfd\xf0\x39\x75\xae\x1c\x4b\xe1\xc1\x7d\xfb\xe6\xd9\x11\xda\x7d\x8b\x75\x9c\xf3\x97\xbe\x15\xd3\xa4\x11\xa7\xa0\x86\x37\x6f\x10\xfe\xed\x44\x08\x42\x65\x87\x3c\x9c\x74\x4b\xb5\x64\xeb\x97\xbb\xa3\x9a\xfe\xa1\xe0\x95\x01\xcb\x3d\xb2\x9c\x27\xe6\x25\x88\xdb\xeb\x64\xbf\xdf\x22\x33\x13\x2c\x72\x53\x12\x9b\x77\xee\x54\xa5\x61\xa2\x88\x9f\x8c\xb9\xbe\xf6\xec\x38\xb5\xb2\x46\x7e\xa3\xf0\x6f\x6b\xb3\x54\x73\xf6\xe5\xf3\x08\xff\x24\x10\x60\xbe\x45\x03\x8f\x57\xf6\x17\x5e\xd4\x88\xef\x85\xf8\x29\xdc\xb1\x4d\x26\x72\x18\xf0\x34\x50\x61\x36\x74\x2b\x2e\xb4\x98\x0a\x45\xcd\xe8\xcb\xfd\xcf\x7a\xc5\xb9\xc9\xf7\x63\x1d\xad\xf0\xea\x8b\xfc\x12\x9a\xc4\x73\xb0\x53\x14\x23\xd1\x8c\x77\x8f\xc2\x8f\x8a\xba\x62\x38\xcd\x9e\x6e\x0d\x84\x2a\x62\xb6\xf9\xf3\xf9\xb2\x92\x0b\x84\xd8\xe3\x5b\x6f\xa5\xab\xe5\x09\xf1\x55\x69\x5e\xa1\x58\x18\x52\xa0\x07\x4a\xa9\xac\x87\x35\xbd\xc4\x12\x23\x65\xcb\xc7\xb0\x52\xae\xc2\x65\x7d\xdf\x5d\x49\xd2\xb3\x81\xea\x0a\xe1\xd8\x7f\x39\xfd\xdb\x10\x31\x79\x4f\x68\x6b\xba\xd7\xa8\x48\x11\x13\x30\xf6\xf7\x8e\xca\xbe\xb7\xad\x1d\x3c\x89\xa3\x4f\xbe\xf2\x56\xc5\x8c\x7e\xde\xbc\x39\x1c\x5b\x23\x27\x59\x36\x51\x61\xa5\x4f\x8d\x51\xa6\x9c\x20\x9a\xc1\x49\x9f\xd9\x5f\xb3\xf4\x9b\x9c\x53\x98\x25\xa2\x6d\xff\x23\x8a\xb1\x3e\x23\x58\xd0\xd2\x32\xb5\xb9\xaa\xfc\x15\x60\x05\x13\x67\x9f\xb5\x8a\x42\x1b\x1f\x82\x85\x7b\x8e\xf0\x1e\x60\xbd\x45\xca\x81\x4d\xf4\xd3\xb0\x7d\x45\xaf\x08\x25\xb1\x71\x3e\x70\x2a\xfd\x32\xab\x36\x12\x76\xdc\xcf\x5b\xbd\x8a\xfe\x73\xfd\x87\x27\x5c\x65\x69\xd8\x8d\x9d\x2a\xac\x8b\x7e\xb8\x4d\x36\x33\x2e\xc1\x55\xca\xb0\xd2\xf8\xf6\xe4\x9e\xbf\x55\x1d\x30\x30\x5b\xc8\x73\xbf\x38\x51\x83\x09\x75\x13\x2f\x66\x16\x86\xd5\x1d\xf2\x30\x97\x68\xb7\xdc\x04\x3e\x51\x55\xa6\xa2\x36\xe1\x26\xe6\xf9\xb1\x33\x47\xa6\xf6\xaa\x80\x19\xe3\x6f\x22\xb7\x70\x01\x8c\x60\x00\x5e\xd6\x2a\x7f\xd0\xe0\x3b\xb5\x82\x02\x74\xdd\xe2\x55\x5b\x46\xf3\x93\xd9\x14\x20\x9b\x94\x62\x8c\xe4\xef\x0f\xab\xcf\x41\xf8\x5b\x64\x26\x6e\xd3\x0d\xf1\xa1\x51\x80\x88\x9f\xff\x82\x9f\x1e\x23\x94\x6d\xec\x9a\xd8\x15\xc3\x52\xf9\xb0\x46\xcf\x6f\x50\x1b\x12\x38\x62\x08\x5c\x53\x16\xa9\xd0\x5d\x66\xe0\x6a\x8c\xfa\x58\x3d\x57\x65\xd5\x33\xc4\xe9\x0d\xf9\xcb\x76\xa7\xbf\xc8\xcc\xb9\x70\xd2\xc5\x2e\x60\x55\x8b\x00\xa1\x06\x8c\x61\xd7\xa8\x17\x3a\xc2\x89\xaf\xa4\x53\x4d\x5b\x7b\x41\xb5\x28\x7f\xf6\xbc\x94\xbc\x63\xd8\xc0\xa4\xd6\x4b\x43\x7e\x7c\x80\xac\x90\x4b\x0c\x63\x51\xa7\x3f\xbd\x56\x29\x9c\x31\x12\xf2\x81\x99\x71\x9b\x35\x13\x98\x58\x22\x22\xf7\xb5\xb1\x7a\x67\x89\xab\x55\xc1\xee\x0c\xef\x3b\x25\x2f\xaa\xdb\x52\x6a\xb1\xa3\xaf\xfb\xc9\xfd\x8a\x70\x3b\x4b\x9c\xfb\x72\x0f\xf7\xe5\x4b\x3d\x1f\x11\xf8\x7b\xdd\xeb\x78\x0a\x41\xa5\x12\x38\x0e\x86\x2d\xdb\x92\x20\xed\xbb\x8a\xbf\x5a\xb6\xff\x38\x5e\x3a\x83\x06\xb8\xcb\x67\x0b\x39\xeb\x0c\xcf\xd2\x16\x8d\x9e\x9b\xc9\x71\xb8\xd9\x4f\x69\xf9\xa6\xbd\xb5\xb5\x55\x3c\xb6\x35\x3b\x34\x38\x9a\x5d\x84\xd8\x96\x12\xb9\xbd\xa2\x6f\xfa\xdf\x77\xa2\x18\x4f\x94\x67\x87\xb4\x6b\x19\xd8\xa5\xf8\x2d\xe6\x97\xf4\x8d\xad\x04\x31\x66\xc2\x26\x39\xb3\x67\x80\x06\xdc\xc3\x88\xb9\xb1\xc9\x6c\x7e\xd5\x58\x29\xbe\x17\xfd\xfd\xf0\x52\x45\xbe\x39\x5e\xd7\x14\x3a\xc2\x1b\xee\x95\x27\x9d\xb4\x14\x5b\x1c\xa8\x4f\xef\xd5\x00\x9d\x35\xe2\xe2\x3a\x62\x62\x05\x98\xbb\xff\x09\x85\x4f\x1a\x78\x3e\x35\xa3\x83\x75\xf4\x4d\x7d\xf7\xc7\x18\x65\xe2\xbe\x97\x8e\xe8\xb2\xbc\x65\x6e\x3b\x29\x50\x07\x3f\x6d\x52\xa8\x61\x04\x36\x44\x3d\x99\x05\xaf\xc7\x1e\x41\x6e\x89\x88\xa6\x17\x5e\xc4\x8f\x4a\xcd\xca\xda\xb4\x86\x99\xc7\x79\x61\xd9\x96\x99\xf2\x92\xd8\xb8\x88\x5c\x98\xf6\xdc\xf1\x80\x4c\xfe\xed\xd3\x5b\x5b\x5b\x0b\x75\x8c\x58\x81\xda\xdc\x68\x6e\xa7\x2a\xe1\xc6\x3d\x48\xc2\xa9\xeb\x35\x8c\xa8\x43\x7c\x2b\xad\xf1\xf1\x09\x2d\x02\xd3\xa2\x4d\xca\x71\xa1\x94\xbb\xff\x7c\x83\x92\x8d\x19\x43\xcb\x72\x57\x3c\xae\x86\x33\x56\xa5\x4c\x7e\x37\xfc\x70\x4b\xfa\x24\x99\x0e\x71\x49\x52\x5d\xf7\x62\x80\x9e\x6b\x3d\xd8\x24\x3e\x3d\xf5\x6d\x5c\xe6\x1d\x52\xf8\xf8\xf2\xf4\x91\xac\xd9\xc8\x24\x35\xea\xf9\xb4\x92\x18\xa6\x4c\x38\x9c\x06\x7b\x99\xc4\x73\x71\x1d\xfe\x38\x5d\xe3\xfc\x98\x4b\xe6\x14\x5c\xea\xca\xc6\x9e\x9b\x9f\x1f\xe8\x94\x2f\xa3\x4e\x03\xe6\x61\xbb\xd4\x52\xe8\x08\x7f\x29\x75\x4c\xdd\x46\x1d\xc4\x9c\x3b\x6a\x84\xa8\xe9\x19\xc6\xaa\x66\x7e\xf8\x95\xc3\x9c\xdb\x89\xec\xc2\xe2\xa0\x0b\x11\x1b\x59\xaa\x67\x7d\x73\x7a\xe0\xd3\x65\x11\x1f\x0b\xb5\x3a\x49\x13\x1a\x72\x8d\xb6\x95\xc1\x44\x60\x6b\x73\x93\xa6\x27\x53\xaf\x99\x30\xd4\xf8\x97\xad\x29\x24\x14\x9f\x10\xe2\x43\x0d\x4c\x6f\x57\xa2\x4a\xce\x6b\x06\xcf\x25\xca\xc0\x0d\x34\x4a\xbe\x99\xae\x7d\x7c\x03\xb2\x96\x60\xdf\x05\x5e\x8b\xdc\x29\xde\x51\x94\x6f\x1e\x44\x71\xa3\xa2\x57\x14\xb9\xbf\xd0\x6e\x34\x32\x7c\x69\xd3\x91\xdb\x73\x4c\xd7\x7d\xa5\xbe\x0d\x21\x86\xe7\xac\x96\x25\x0d\xc6\x85\xbc\xc9\x83\x1a\xce\x53\x7c\x48\x6a\x04\xbb\x2e\x2a\x74\x84\xd7\xea\xfa\xb7\x6e\xbd\x48\xcd\xba\x40\xf3\xfc\xce\x4c\xc1\x0c\x0b\xe2\xc8\xfc\xbd\xaa\x09\x0c\x47\x7d\x5c\x97\x97\x0a\x74\x37\x1e\xd0\xe6\x93\x24\xea\xdc\xf8\xcc\xf7\x0f\x17\xe5\xd2\xb0\x4e\x65\xbe\x9e\x70\xff\x98\xb4\xd1\xee\xca\x69\x2b\xa8\x1b\x6b\x6e\xce\xb2\xb4\x11\x3f\x73\xea\xbd\x48\xee\x67\xce\x09\x08\xcd\x6a\x87\x30\x57\xc5\xd1\x9e\x9a\x9e\xbe\xd0\x25\xe2\x96\x31\xf3\x49\x35\xe1\xcd\xe5\x5e\xd5\xb4\x0c\xbd\x0a\xe1\x02\x7c\x40\xe7\xe8\x14\x12\x23\xa8\x58\x44\x7e\x03\x4d\x37\xbf\x7a\xf9\xe5\xfa\xe3\x07\x27\x68\x3b\x1e\x48\x67\x6f\xd2\x9c\x3d\x62\x1c\x8f\x48\x77\xce\xba\x64\x8c\xd5\x45\x80\x1a\xb4\x45\x0d\x12\xc4\x35\x38\xf7\x01\x6a\x9e\xb6\xbd\x3a\xb0\x19\x31\x5f\xf8\x1d\xe0\x0b\x02\x80\x67\x50\xdf\x57\x1e\xf0\x9f\x8f\xa7\x5f\x5c\x17\xf6\x7c\x2e\xc6\x24\x0b\xf4\x7d\x3c\xa6\x71\x79\xaf\xe8\x2f\xa8\x1b\xff\xdb\xfa\xa5\xf3\x78\x09\xd9\x5c\x2a\x39\xfb\x5e\x3f\x45\x3e\x93\x0f\x6e\x00\xab\x7f\x58\xda\x3c\x50\x65\x55\xf2\xc2\x45\x59\x54\x7b\xd8\x21\x25\xc2\x55\xbb\x72\x6c\x83\x36\x9f\x12\xf0\x11\x6e\x6d\xbb\xff\x94\x92\x76\x90\xeb\xf3\xfd\xeb\x1d\x6f\x4a\x08\x83\x87\xdc\xcd\xca\xd4\xf7\x59\xb5\x17\xc1\xb8\xaa\xf4\x75\x3d\xf9\x05\xcb\x06\xc7\xf9\x83\x78\x34\x4a\x1f\x61\x71\x4d\xda\x96\xc8\xa3\x36\xad\xd5\x69\x4d\x6b\xb5\xaf\x7f\x4e\x97\x0a\x60\xdc\x28\x91\x67\xeb\xf6\x99\x9a\x49\x08\x72\xfd\x69\xac\x08\x53\xd7\xf7\x9b\xba\xd5\xbe\x67\x08\x08\x49\x4f\xe6\xd8\x42\xf9\x71\xb5\x67\xdf\x93\xfb\x66\xb3\xf4\xb0\xec\xc5\xa1\xfe\x78\xbb\x36\x8b\x08\x92\x51\xd7\xdf\x0e\x28\x4c\x19\xa7\xc8\x90\x91\x48\x92\x0f\x6b\xe5\x89\xa3\x8b\x51\xb7\x6c\xd2\x98\xc9\x7c\xe2\xa4\x36\x12\x07\x0e\x59\xdc\x5b\xac\x38\x38\x5a\x51\x3d\x60\xc4\x33\x85\x3e\x39\xfc\xdb\x4f\x1d\x52\x90\xa8\x34\x00\xe7\x99\xf0\x9f\xe6\xcb\x71\x48\x2d\x0d\xbf\xb8\xa8\xcd\x1a\x0a\x6d\x33\xe2\x9a\xea\x96\xdb\xc7\xa6\x4b\x96\x42\x50\x2d\x32\xe2\x96\xe3\xcf\x39\xfe\x84\xfc\x0b\x80\x63\xd3\xeb\xd4\xa7\x1f\x92\xbf\xb7\x14\xd8\x3e\x75\xe3\x51\x6c\xd0\x22\x17\x66\x15\x0a\x8a\x99\xe9\x07\xfa\x2f\xcd\xe3\xb5\x08\x4f\x85\x8b\xab\x22\x08\x39\x40\x97\x9b\xad\xda\x84\x5f\xc3\xf0\xff\x2a\xc6\x35\x5e\x95\xbb\x25\x6d\xd8\x9b\xce\xb6\x2e\xf2\xe9\x34\xae\xd6\xa5\x2d\x0a\x6b\x52\x92\x1e\x64\x62\x1a\x2c\x24\x77\xc8\x72\xe9\x9f\x62\x18\xf1\x38\xb3\x97\x71\x08\x57\x1b\x59\x38\x3f\xa9\x7e\x53\x1b\xf9\xec\xb1\x7b\x14\xb3\x77\x86\x1b\xe5\x4c\x07\xec\x4b\x47\x0d\xe2\x9a\x24\xfa\x3e\x1e\x28\xad\x71\xa4\x7c\x79\x4f\xfa\x31\xf8\x56\x10\x7b\x9d\x66\x2f\xbf\x27\x2d\xeb\x6e\x20\x07\x33\x04\xdf\x5a\x9f\xa3\x78\x17\x64\x21\xe1\x92\x32\x66\x62\xd9\x9f\x7d\x7c\xbe\x22\xab\x4f\x1d\xe4\x2a\x51\xed\xe6\x37\x92\x42\xd7\x02\x4c\xdc\xc8\x76\x51\xf9\x17\x3d\xca\x15\x35\x1c\xae\x1b\x18\xfd\xf6\x65\xcb\x84\xf4\xf5\x2d\xef\x5e\xa6\xa7\x03\xe4\x1a\x30\x32\x85\x31\xe2\xa4\xb1\xe9\x58\xe7\x33\x52\x15\x8a\x00\x7d\x1b\x5a\x6b\xae\x14\x1b\x3e\xb8\x8a\x0f\x9d\x16\xc5\x30\x93\x43\x2d\x57\xa8\x29\x6d\xd9\xb2\x69\x1d\xfa\x8b\x7c\xff\x61\x1d\x59\x2d\xe7\x17\x3b\x54\x99\x37\x97\xd8\x28\xfa\xf5\xb3\xb7\x48\x41\x02\x37\x61\x7c\x7e\x62\x43\x12\x1d\x7c\x62\x34\x54\x6f\x7d\x27\xe8\xfa\x57\x5c\x4a\x83\xa3\x81\xfe\xa0\xf0\x09\x8a\x14\xe6\xe4\xf0\xf1\x7f\xf5\x8c\x3e\xa5\x26\xb6\xd0\xdb\x7c\x6e\xb3\xec\x12\x3d\x8b\xf0\x41\xb4\x06\xd2\x9e\x7c\x8d\x86\x8a\x14\xe2\xa0\x51\x40\x87\x87\x9c\x39\xfb\xa4\xbe\x0f\xe4\x72\x03\x02\x4f\x9c\x5d\xa8\xd8\x71\x99\xd4\xc1\x9e\x4f\x0c\xb8\xf8\x41\x33\x7f\xd2\x2c\x28\x17\x41\x0f\xe2\xca\xbb\x87\x2b\x5f\xc1\xb7\x30\xf3\x28\x70\x0a\x72\xbf\xd9\xce\xb3\xe1\xf5\xe5\x22\x66\x8a\xd5\x5a\xee\x43\xa1\xea\xd9\xce\xa1\xa0\xab\xfd\xb1\xca\xa8\xb8\xd6\x78\x1b\x26\xcd\xd7\x4e\x3a\x71\x92\xb2\x6f\xc6\x03\x89\xac\x81\xa1\xac\x4f\xb3\x7f\x1f\xa7\xe9\xce\x20\xa3\x02\xd1\x34\x3a\xad\xb3\x8e\xf1\xbe\xb5\x88\x61\x8f\xbf\xeb\x92\x58\x8d\x08\x1b\x3e\x8b\xea\x87\x28\x2f\xbd\x30\x40\xfc\x25\x30\xf6\xeb\xc9\xfc\x75\xcd\x48\xa5\x47\x77\x28\xf3\x70\x29\xe0\xe8\xe3\xdc\x96\xb7\xe4\xd7\xb2\x49\x29\x3a\x48\xbf\x68\x4d\xae\xc8\x9c\x79\xb0\x7e\x6e\xd3\x0c\x88\xcb\x08\xc4\x19\xa0\xaf\xdc\x6e\xf2\x67\xdb\x36\xaf\x9d\xfb\x40\x2c\x56\xb0\x95\xa8\xe4\x63\xd6\x25\xc4\x7e\xdf\x9d\xae\xeb\xa0\xdb\x54\x8a\x95\x67\x67\x9d\x19\xa5\x47\x0e\x0c\x74\xe9\xe8\xb7\x7c\x5c\xd9\x1a\x63\x23\x40\xa6\x50\x1b\xce\x0f\x65\x32\x5b\x39\xa4\xa2\x1a\x1b\x1d\x9f\x9e\x3e\x50\x9b\x02\xcc\x47\x87\xb1\x4c\x5c\xee\x9b\x0b\x53\x0a\xf3\xa6\x29\xd5\xd2\x1e\x3f\xaa\x35\x74\xc4\xae\x54\xa2\xd3\x2c\x3b\x8b\xf2\x19\x8d\x61\x6f\x31\x52\xf2\x13\x6d\xdd\x87\x67\xca\xc3\xe1\x73\x59\x82\xd4\x79\xff\xa0\xde\x72\x04\x76\xac\xd8\xfd\xc5\x9d\xaa\x22\x15\x2e\xf1\x19\x2a\x9e\x28\xe1\x76\x33\x66\x83\x55\xce\xca\x7e\x72\x4a\x41\x15\xa4\xdc\x5d\x53\x93\x57\xd8\x5e\x98\x01\x0c\xc5\x11\x49\xb9\xe8\x82\x7b\x4a\x77\x36\xc6\xe3\x94\x82\xb2\xb0\xb6\xc9\x8d\x3f\x3f\x40\x1c\x2f\x9b\xa3\x40\x0f\x3f\x26\x43\x29\xb2\x71\x37\x56\xc8\x0b\x3f\xca\xcb\x72\x4d\x75\x91\xcd\x0c\x59\x29\x11\x10\xb3\x67\x45\xbf\xfd\x2b\x73\xe5\x17\x62\xc0\x18\x8c\xfe\xeb\xa0\xe3\x9a\x1e\xa8\x4d\x60\x9c\xc3\x39\xd8\x53\xc6\xa4\x87\xb8\x1e\x02\x8d\x95\xf0\xd0\x5c\xfe\xc1\x41\xb6\xa0\xce\x5d\xfe\xb3\x1f\x94\xe5\x0e\xf6\xf4\x7b\x18\x3e\x6e\xa6\x09\x14\x0e\x31\x18\xf5\x68\xc9\xef\x55\x13\xeb\xb7\xa1\xce\xcd\x29\x61\xd7\x13\x3e\xc4\xc3\x57\x28\x06\x43\xb3\xdb\xb8\x97\xe6\x98\x6b\x38\xaa\x8b\xeb\x5c\x79\x89\xb3\xf3\x0f\x9b\x52\x36\x88\x94\x09\x3c\x47\xf6\x80\x06\xc8\xb0\x08\xac\xdf\x38\x65\xb5\x7c\xaf\x76\x4f\x2c\x04\x90\x3e\x71\xe1\x1e\xb8\x5b\x9b\x61\x47\x77\x4c\x8c\x4d\x2e\xb5\x46\x28\xdb\x07\x83\x61\x1f\x31\x82\x80\x06\x32\x7e\x99\x2c\x30\x66\xcc\x98\x01\x9b\xef\xdc\xb4\x9d\xbd\x8e\x28\xa1\x05\x7c\xf4\xcd\xf4\xa5\x27\x9e\x8d\x7d\x7e\x40\x33\xbf\x9e\x39\x3c\x45\xfb\xa1\x85\x22\x02\x67\xb2\xdc\x6f\xcf\x6b\xdb\x72\x86\x6d\xe4\x9a\xd0\xee\xc1\xc5\x3a\x35\x5b\x62\x0d\x3b\x31\x72\x0b\x55\x14\x28\xc2\x4a\xb9\x3b\x4e\x8f\x51\x52\x05\xe0\x8a\x4a\x94\x15\x4c\x5c\x8c\x62\x53\xe5\x5c\x4a\x0c\x33\xea\x4a\x17\xee\x50\x70\x85\xa8\x68\x53\xe8\x86\xae\xee\xa7\x80\xf6\x02\xe5\xe7\x97\x15\xb7\xe5\x0a\x65\x18\xc2\x48\x76\xf2\x02\x19\xb4\x66\x2b\xe3\x9e\x30\x7f\xbf\x84\x20\xd6\x28\x14\xe5\xff\xe8\x27\x8f\x40\xd9\x0e\x00\x87\x9b\x9f\x70\x21\x1d\x2f\xca\x36\x76\x41\xa2\x4b\xc6\x8b\x60\x95\xb6\x31\xa1\x01\x13\x13\xb2\xbb\xed\x2b\x95\xb5\x81\x6b\x06\xa0\x8a\xa0\xf7\x8c\x97\x0f\xd2\xc5\x30\x31\x58\xc1\xc3\x8f\x40\x87\x74\x8a\xb0\x53\x55\xb4\x6b\x73\x3f\xd5\xda\x8c\x12\x38\x50\xf0\x72\xef\x63\xb7\x6a\x40\x75\xe2\x21\xb1\x9a\xcc\x3e\x7d\x8d\x26\x09\x88\x8a\x45\xe2\xfb\x80\x4c\x8c\x9f\xe9\xfa\x97\x1a\x54\x3a\x8b\x22\xcf\x85\x2b\xee\x4f\x5f\xf2\x3a\xc7\xe6\x0b\x99\x8c\xd3\x7c\x2f\x54\x28\x06\x8c\x51\x10\xc2\x31\x38\xde\xe4\xf0\x06\x3d\xd7\x03\x2a\xc3\xe3\x04\xba\xf0\xe1\x93\xf2\xb5\xf8\x3c\x9a\x3c\xf8\x88\xe0\xd7\xd4\x90\x1d\x48\xa9\xd7\xec\xb7\xcf\x35\x2c\xbb\xb9\x01\x0e\x87\x55\xff\xd3\xb3\x83\xc4\xcb\xad\xa3\x32\xc7\xd4\x2f\xd1\xba\x2e\x04\x8a\x92\xa2\xeb\x6a\xb6\x47\xa9\x10\x0e\x44\xca\x96\x8f\xba\x50\x1d\x2a\xcf\x91\xc7\x35\x23\x02\xc2\x7c\xcb\x44\xb1\x96\x76\x47\x5e\x5e\xcf\xd8\xfa\x94\xfb\xd8\xed\xd2\xcc\x9e\x1c\xea\xe2\x7a\xc1\x33\x58\x50\x2c\x62\x26\xd2\xc2\xeb\x33\xd5\x0d\xd5\xf4\xd6\xb6\xd6\x42\x74\xf4\x6e\xbf\x5b\x9f\x03\x19\xd1\xff\x14\x5a\x52\xd7\x3e\xd6\x80\x5c\x10\x9a\x8b\xb0\x11\x3b\xd0\x2e\xf8\xf9\x60\x05\xc9\xd9\x84\x07\xde\x1e\xaa\xb6\xc8\x15\xce\xbe\xbb\x22\x3f\x44\x74\xc6\x3e\x47\xa6\x47\xf1\xe6\x94\x42\xb0\x02\xcf\xc9\xb0\x9b\xa5\xf4\x3d\x80\xf1\x05\x0a\x19\x32\x29\x54\x8a\xd1\xbd\xfd\x63\x3f\x99\xd2\x2d\xea\x40\x98\x88\x1e\xc5\xe5\xef\xf1\xf1\xda\xaa\x2e\xe4\x9a\x28\x6e\x56\xe8\x43\x97\x29\x2d\x8e\xeb\x23\x1b\x2b\x09\xaf\x27\x53\xd6\x3c\x30\xfc\x80\xcf\xdf\x04\xec\xf5\xe0\xdb\xf2\x7e\x77\x11\x13\x7b\x55\xc6\x05\xc7\x1f\xd8\xd9\x10\x6c\xdd\x32\x8e\x89\xf7\xf9\x39\x6f\x26\x61\xc4\xab\xd6\x95\xa6\xbe\xcf\x7e\x05\x5f\x81\x40\x1a\x4e\x62\xc4\x06\x17\xe5\x33\xa8\x81\x57\x3a\xf8\x74\xfc\xab\x44\xa3\xb5\xcf\x2b\x00\xc6\x6e\xe5\x60\x65\xe2\xc0\xc7\x7a\xf7\x8d\x19\xa3\x84\xb8\x86\x89\xd5\x23\xfb\x13\x88\x59\x57\x2f\xbc\x29\x6b\x25\xaf\x08\x81\xb2\x28\x4c\x76\x3a\x7a\xb2\xe4\x21\x7e\xca\xaf\xb3\x31\x62\xdc\x34\xa0\xf4\xa0\xe6\x1c\x13\xb8\x60\x37\x14\xe5\xd8\xfe\x0f\x2b\x20\x0a\x8b\x56\xa3\x4f\x3f\xe1\x71\x75\x8a\xcf\x84\xd8\x48\xf6\x9a\x89\x9a\xe4\x85\x5b\x41\x0c\x49\xd5\x9f\xec\x81\x35\x0d\xa4\x7a\x52\x15\x15\xfd\xd0\x16\xf9\x5d\x03\x3d\x13\x87\x5f\x3a\xdd\xe0\xcd\xe7\x79\x81\x02\x9b\xbc\xe2\x4e\x49\x0f\x0c\x14\x5c\x7a\x76\x54\x35\x79\xd2\x9b\x37\x43\x9d\xfb\x74\xf7\x70\x75\x9b\x6a\x72\xdb\x81\xe8\x87\xdc\xc7\xb4\xcd\x28\xf7\x34\xe6\x49\x70\xc3\xeb\x42\xe2\x2b\x28\x92\xd4\x7c\xf0\xc4\x3a\xee\xd3\xba\x98\xc0\x3e\xe9\x9a\xa7\x34\xa4\x72\x4c\xba\x8b\x87\x85\xf5\x26\x89\x2a\x41\x0e\x6d\xa4\x5c\x65\x4e\x1d\xe5\x63\xe0\x65\xb8\x54\x8a\xfa\x11\x75\x0b\xf8\xbd\x92\x6e\x8a\x4e\x3c\x1a\xeb\x4b\x64\xaf\x68\x52\xb6\x18\x94\x0a\x94\x4f\xee\x37\x8a\x1f\xce\xdc\x19\x50\x2f\xb6\xee\x6d\x16\xb5\x01\x10\xf8\x70\xac\x6c\x97\xed\x3f\x57\x56\x07\x55\xcc\xb8\xed\xfe\xbf\xe6\x79\x44\x75\xb0\x6f\x51\x33\x61\x2c\x66\xbf\xa3\xcd\x7b\x1c\xc4\x5d\xcc\x38\x2b\x64\x6c\x69\xa0\xb4\x9b\x01\x94\xe3\xc3\x9a\xba\x79\x27\x0d\x98\x8b\x12\x7e\x72\xee\xcc\xb3\x8d\x27\x84\xcb\x3a\x86\xb3\x0f\x29\x22\xda\x35\xcc\x62\x60\xd0\x7e\x0d\xf8\x5d\xb4\x03\x97\x0f\xec\xc3\x37\x1f\x1e\xdd\xf8\x47\x76\x9d\x4f\x93\x7f\xb6\x48\xd1\x3a\xe3\x9a\x0b\x01\xf3\x20\x12\xbe\xd1\x2d\xdf\x50\x5b\x5b\xa1\x6d\x76\x03\xcc\xf6\x43\xd2\xe4\x9e\x24\x91\x29\xf7\x87\xa9\xe9\x3a\xd5\x46\x55\x5e\x2a\x66\x5e\x4e\x9f\x09\xdc\x5d\xc5\x8c\x00\x4b\x80\x8f\x41\x97\x3c\xa2\xa8\x99\xc6\xe3\x79\x95\x78\x91\xdb\xd7\x3e\x44\x89\xaf\x24\x7a\xfc\xe1\xec\x53\xc3\x94\x46\xb4\x48\x7c\xaf\x12\xfd\x67\x6b\x67\xfa\x63\x74\x59\xc2\x88\x75\xeb\x80\xcb\x95\x0e\xcf\x21\x8d\xf0\x61\x73\xdd\x55\x5a\x8a\xf7\x7d\xcc\x7a\x59\xeb\xe4\x3f\x76\xae\x59\xa9\xb5\x7c\x70\x2e\xb9\x61\xe5\xf5\xe1\x12\xc5\xb2\xb9\x8a\xca\x1c\xba\xb4\x66\x9c\x9c\x50\x47\x55\x7a\xb8\x60\x3f\xc4\xda\xc2\xd2\x8f\xde\x70\xed\xea\xa5\x1f\x2d\x7c\x74\xd1\xb5\xab\xae\xbd\xf1\xa3\x71\x37\xf6\xa9\x50\x31\xcd\xb6\xb8\x02\x9c\x3e\x66\xbb\x6c\x29\x9f\xd6\x5c\x5b\xe6\xeb\xe9\x9e\xdc\xd4\xbb\xd3\x87\x2b\x4a\x25\x05\x9f\x73\x13\xa2\x4f\xf1\x8b\x37\x07\x8b\x50\xda\x55\xc7\x0c\x92\xed\x03\xb3\x93\x0f\xd6\x09\x74\xc0\x8b\xbb\x35\x39\xe5\xe8\x7e\x26\x90\x77\x51\x77\x4f\xdc\x97\xe6\xda\x28\x58\xe3\xc6\x6d\xd5\xd3\x0f\x8f\x50\x2a\x7f\x60\x3c\x90\x22\xbf\x3d\x57\x2e\x17\xaa\x49\x41\xb5\xca\x91\x1e\x0b\x5a\x7b\x87\x59\x72\xa4\xe3\xea\xb1\xe9\xa3\xee\x22\x27\x81\x9e\xde\xa6\x4b\xae\x05\xac\x42\x3c\x4b\x36\xd5\x07\x8a\x9a\xaf\x2e\xda\x5c\x65\xd4\xe1\x97\x81\x0e\xd2\xf9\x46\x4c\xfc\xd2\xcc\x4d\x4f\x2a\x6a\xf7\xf3\x66\x83\xd0\x98\x35\x77\xa0\x14\x77\x2a\x46\xd9\xff\x92\xc9\x0d\xa5\x1d\xc6\x9e\xe0\x7d\xa4\x1f\xc8\xaf\xde\xd1\xf2\x2c\x0b\x3c\x2b\xc1\x4d\x3f\xa6\x68\xcb\x5b\xd1\x99\x46\x9c\x72\xf9\xeb\x52\x92\xec\x4c\x52\x6b\xb4\x40\x1d\xcf\xb3\xda\xc7\xa0\xb3\xe7\xa7\xfd\xb0\xce\xad\x8d\x5d\xd5\xe3\x68\xf3\x37\xcd\x47\xa5\x04\xb7\x2e\x19\x7f\xaf\xbd\xa8\x5a\x28\x10\x30\x20\xc9\x84\x5c\x92\xa8\x60\xd8\xd0\x6f\x86\x6d\xfb\xfb\xc5\x91\x11\xe0\x8f\xcb\x54\x2b\xdb\xd6\x99\xad\x89\x95\xed\xcb\xb2\x65\xef\x62\x50\x6b\xff\x84\xdb\xcc\x17\xae\xbf\xe9\xe6\x86\x14\xf0\xfb\xd3\x13\x94\x15\x8e\xe3\x60\x66\xf4\xa2\x85\x97\x1f\xcd\x5d\xf4\x0b\xd7\x21\x66\x12\x97\x33\xde\xd2\x0f\x66\x53\xb7\xac\xe0\x4a\xa8\xc8\x38\xee\x6b\xe3\x2e\x3d\x9f\x42\x4b\xca\xbc\xd8\x0f\x78\xde\x76\x4d\xdf\x14\x33\x40\x8f\x47\xb7\x80\x77\x0a\x27\xc7\xc9\xa7\x33\xa7\xb5\x30\x07\xba\xfb\x0f\x8f\x97\x95\x81\x4f\x90\xdb\xc9\x0f\xee\x75\x1a\x87\xa4\x6d\xa6\x02\x35\xc9\xfd\x66\xb7\x26\x02\x85\xec\x0a\x0d\xfc\x78\xfb\xf5\xf5\xa3\x83\x14\x88\x13\x40\xf7\xcf\xdd\xae\x98\xc6\xf8\xc8\xc7\x42\xaf\x26\x5c\xb7\x5c\xa2\xa7\xbb\x88\x08\x49\xd5\x7d\x92\xa3\xa2\x40\x2a\xf5\x27\xf5\x4a\x4d\x29\xe7\xb1\x53\x57\x58\x59\xe1\x77\xe6\xca\xcf\xd0\xd6\x0e\x6e\x1e\x9f\xcb\x2b\x36\x98\x94\x9a\xc5\x3a\x47\xc3\xf5\x7f\x45\xd7\x02\x04\xbf\x60\xe0\xa6\x66\x36\xbd\x2c\x7c\xd6\x82\x28\xb5\x82\x56\x41\x76\x58\x38\x52\x81\x0c\x21\x45\x75\x33\x3c\x5a\x92\x69\xc1\xaa\x9b\x8c\x36\x44\x97\x31\x5a\xb1\x2b\x35\x7e\x21\xaf\x1c\x7b\x9c\x57\xea\xcb\x94\xb9\xf7\xd6\x63\xf2\x42\xf3\x59\x67\x38\xfe\x12\x95\x20\x55\x2e\xd0\x2e\x21\x34\x96\x59\xbd\x52\x35\xae\xaa\x22\xe6\x27\x24\xe8\xff\xa3\x68\x93\x21\xb3\x33\xf0\x78\x15\x95\xb3\xf3\xf2\x59\x55\x6b\xf0\x57\x49\xa7\xfa\x53\x4a\x20\xc4\xc6\xdf\xcd\xa2\xc3\xe9\x69\xb9\xe1\x98\x8c\x27\xab\x71\x8a\x48\x8c\x4d\x03\xe2\x28\xd0\x9b\xfc\x72\x4b\x77\x6f\x89\x01\xe3\x3b\xc7\x28\x1e\x83\x9a\x7b\xbf\x2f\x0d\xb8\x5b\x94\x12\xf1\xc9\x41\x8d\x8e\xc3\xc4\x8c\xf5\x2c\xa1\xbc\xfc\xf4\x0e\x39\x37\x8d\xdb\x35\xf1\x0d\x9e\xde\xc3\x83\x78\x61\x35\x28\xbf\x76\xf4\xe4\xe7\x1f\xb9\x52\xcb\x43\x36\x88\x1f\xe2\xd4\xa6\xfb\xe3\x61\xb3\x92\xbc\x3d\x0c\xc6\x93\xd1\x3f\xaf\x6e\x10\xb0\x22\x44\x40\x06\x04\x0a\xbb\xb5\x6f\x73\xdf\xf9\x15\x14\x1c\x6c\x1a\x4f\x6f\xf5\x1d\x8d\xfd\x4d\x8b\x9b\xa9\x6a\xe9\x13\xee\x60\xf2\x7d\xb9\xd1\x5d\x86\x1a\x2e\x7c\x75\x71\x7a\x75\x69\x97\x7b\x1d\x85\x9d\x3b\x2f\x0c\xa1\x03\x47\x54\x95\xd9\xc7\x1f\x96\xc5\x26\x48\x23\xf2\xac\xb6\xc1\xd5\xb4\x3c\x5c\xa1\x86\x25\x14\x32\xc2\x6f\xee\xd7\x00\x12\x0e\x29\xb3\xd8\x89\x74\x8b\x10\x6c\x36\xa8\xcd\xf5\x25\x3f\xb2\x47\x97\x19\xf3\xa2\xc4\x22\xe4\xd0\xea\x45\xcd\xbe\xa1\x5a\xa5\x1e\x91\x68\xf2\xc2\x72\x85\xf4\xe0\x05\x8c\x94\xa2\x8f\xd8\xb4\x2d\x3d\xed\x0d\x12\x75\xb0\xec\xe3\xfd\x84\xb9\x2b\x62\x5c\x51\xa0\xef\x58\x5d\x0b\xd4\x14\x14\xca\xf0\xcb\xfb\x46\xa8\xb3\x1a\x21\x31\x08\x25\xe4\x5b\x9d\x42\xdc\x06\x23\xdf\x8a\xbe\xd7\xf0\x7e\x1f\x50\xca\x80\x72\x82\x70\xd6\x9b\xba\x3b\xc7\x8f\x53\x99\xd4\x88\x55\x1a\xfe\xca\x1d\x6f\x8c\x52\x21\x8d\x25\x46\x5d\x3f\xa6\xa7\xfd\xae\x36\x5a\xf2\x9f\x1b\x5e\xe2\x43\x9a\xda\x55\xfb\xac\xd6\xe9\xad\xad\xad\xbc\xc1\x39\xa8\x89\x3f\x12\xa7\x8a\x3c\x2f\x5e\x31\xff\x78\x88\x7e\x49\x02\xd7\xc7\xac\xc4\xd1\x31\xd1\x37\xfc\xb7\x01\x02\x40\x01\x02\x73\x0a\xf7\x3a\x93\x19\xa7\x7b\x4d\x45\x4d\x0d\xe4\x61\xb8\x98\x2f\xe5\xc7\x6b\x99\xda\xc7\xac\x46\x70\x97\xf4\xcb\x0c\x6f\x9a\x39\x3a\x35\x67\x24\xc8\xb5\x51\x39\x00\xa0\x60\xf8\xea\x13\xba\xf6\x48\xb5\x1a\x83\x51\xfe\xb9\x45\x2d\x92\x19\x43\x46\x05\x6e\xd4\xc2\x53\xda\xac\x44\xe8\x85\xf2\x59\xd7\x13\x1b\x26\x68\x01\x26\x30\x90\xc7\x0d\xdc\x65\xeb\xf7\xd5\x07\x15\xc5\x9b\xcd\x16\xa9\x58\xc8\xab\x20\x06\x86\xa3\x4b\x5e\xe0\xd6\xf8\x8b\x60\x32\x73\xc7\x5d\xc3\x14\xe1\x89\x4e\x61\x51\x1e\xfe\xd7\xe3\x7c\xc2\xe1\x10\xcf\xe6\x76\xf3\xd1\x2f\x7f\x73\xaa\x32\x53\xa5\xc5\x22\x66\x44\x4c\xe5\xdf\x7c\xa2\xe1\x49\x3a\xc4\x4f\x18\xbb\xf9\xf5\xae\xa6\xd2\x13\x37\x36\x49\x2c\x0b\xd7\xec\x52\xb4\x2b\x28\xe2\xbc\xf9\xfc\xfa\xd9\x4a\xd9\x6e\x23\x17\xc0\x66\x37\x2d\x4e\xbf\x17\x2f\xf0\x7d\xe1\x2d\x22\x11\xf0\x83\x96\xe9\xa5\x84\x8d\x91\x27\x15\x0b\xf3\x2b\xcf\x29\xd3\x82\xa8\x6f\xe3\x6c\xef\xfc\x9d\x89\x65\xcd\x6d\xd1\xf3\xba\x75\x7a\xef\xa6\x5f\xa0\x5e\x11\x9f\xa4\xff\x38\xa4\xcc\xdc\xa7\xcf\x9e\xd7\x0a\xb1\x71\xcd\x90\x14\xba\x23\x88\x3e\xfb\xbf\x75\xeb\x47\xc2\x4f\x10\x76\xdf\x9d\xcf\xef\x78\xc9\x46\x5c\x3e\x6c\xce\x24\x45\x57\x92\x30\xaf\xaa\x20\x1d\xaa\x7d\x14\xc8\x49\x50\xf4\x62\xe6\x45\xfe\xbe\x0b\x63\xe3\x48\xe1\xbb\xfc\xc0\xa7\x73\xb3\x7d\x97\x42\xe9\xeb\x8e\x2a\x38\x70\xca\x0e\xe9\x49\x3e\x98\x59\x5d\x05\xa3\x99\x84\xe3\x25\x30\xf7\xd7\x3a\xea\xfe\xe6\xd3\xa7\x75\xf1\x30\x13\xd3\x78\x47\x9e\xb9\xe7\x7e\x39\x0b\xeb\x6a\x80\xca\x85\x5f\x9b\xc2\x7f\x24\x32\x7c\x52\x03\x01\x5a\x88\x71\xaf\xec\x50\x8f\x80\xc7\x3f\xd5\x53\x29\x41\x8f\x4d\x01\xf1\x62\x8f\xe5\xdc\xb7\x35\x97\xff\x12\x85\x4d\x9e\x88\x0c\x2f\x0c\x92\x08\x01\x4f\x4d\xd2\xd7\x32\xad\x36\xa9\xaa\x9e\x4d\x99\x33\x8f\xc9\x89\x57\x05\x03\xa6\xf4\xc1\xa2\x0a\xbb\x71\xa8\x1b\x83\x17\x0b\x1d\xe1\xa4\xa9\xc2\x6f\x0c\xa6\x68\x51\xe6\xfa\x63\x8b\x3e\x6f\x72\xc1\xe7\x2a\x1e\x29\xe7\x56\xae\xd4\x86\xd1\xc0\xe3\x12\x72\xa0\xe7\xf7\xf5\x02\xb6\x11\x7f\xf6\xfe\xad\xaa\x44\x6c\x5a\xde\x66\xcb\x15\x4a\x16\xad\x51\xcf\x6f\x00\xd8\xaf\xd9\xdf\x14\x2f\xee\xe3\x6b\x52\xe8\x08\x33\x7d\xc6\x69\x57\x33\xd1\xdc\x89\xb9\xf3\xc8\x52\xf0\xa4\x01\xe3\x57\x33\xf7\xe7\xfb\xf9\x17\x9f\x39\x6b\xfa\xac\xd6\x59\x10\x4d\x6e\x3b\x98\xfe\x59\xb4\x4c\x5d\x02\xcb\x95\x84\xf8\x73\xb8\x55\xee\x1c\xcd\x4e\xd2\x30\x3d\xcc\x7f\x48\x69\x0c\x2a\xc4\x74\xf9\xf2\xe2\xa6\xd2\x08\x15\x78\xb0\x6a\xd1\x34\xf8\x79\x85\x8e\xf0\x5e\x7d\x41\x84\x0d\x64\x0b\x96\x5d\xa6\xdf\x53\x8a\x70\x0a\xc3\x5d\x9c\x47\x98\x7f\xff\x9d\xfc\xa2\xad\xb1\x18\x6c\x1a\xfb\x0c\x92\xaf\x7c\x46\x5b\xcb\xdc\xe8\xeb\xe5\x8e\xa4\x05\x74\x27\x43\x28\x0b\xfb\x3d\x90\x86\xed\x59\xc4\xc4\x0e\x31\x2c\x4d\x17\x2c\xf7\xe9\x87\x15\xcb\x01\xd2\xed\xc3\x41\xea\xc9\xbf\xff\xb4\xa2\x5a\xc4\x48\x49\x4c\x8b\xf2\x0b\xdf\xd0\xd7\x6d\x2c\xd1\x10\xc8\xb7\x4d\x4f\xda\xda\x76\xa0\x3d\x66\xbf\x65\x6a\xcc\x44\xf0\x77\x80\x2a\xa6\xae\x78\x05\x39\xa8\x93\xda\xc0\x9b\xea\x7f\x42\x91\x9e\xb0\x90\x85\x2a\x4a\xf4\x3a\x76\x37\xaf\xec\xca\xc8\xb6\x21\xa6\x47\x8f\x6e\xea\x6b\x69\x98\x8b\xe7\x63\xe2\x16\x19\x76\x5d\x20\x41\xaa\xa1\xf6\xe6\xe3\xcd\x4a\x2f\x67\x7b\xa4\xc4\xf1\xba\x67\x5e\x56\x36\xdf\xd4\x25\x3e\x65\xf1\xf2\xba\x7d\xa3\x8e\xdf\xb0\x09\x2e\x89\xd6\x2a\xf7\xd8\xd9\x64\x38\xea\x02\x53\x21\xfb\xf6\x31\xad\x1a\xa4\x2e\xb8\xb2\x33\xae\x3d\x1c\x93\xb9\xce\xf7\x1d\x28\xc2\x6d\xf4\x4d\xa2\x1f\xb5\x79\x65\xaf\xbd\xb4\xd8\x1d\x65\xe8\xdb\x1c\xb3\xbb\x08\xb3\x72\x05\x39\x8a\x41\x74\xe6\xca\xad\x0a\x13\xd6\xb0\xec\x28\x20\x41\x0f\x7a\x1b\x6f\xcf\x0b\x2b\x88\x51\xc1\x76\x23\x85\x7a\xac\x3c\x73\x15\x6a\x07\xc8\x01\x71\x91\x7f\xdf\x3b\x50\x3a\x66\xc0\x5c\x68\x44\x8b\xb6\xc0\x47\xee\x66\x8d\xe5\xfd\xec\xde\xab\xb4\x9a\x95\x24\x62\x7e\xe9\xe2\xeb\xc4\x1b\x0a\xcd\x82\x51\x1f\x47\x09\x01\x5a\xff\x53\xf3\x65\x9b\xe9\x63\xc3\x72\xa9\x4d\xcb\x3a\xfe\xaa\x27\x7b\xfb\x02\x4d\x84\x49\x40\xea\x85\x1e\x64\x7e\xf4\x0e\x01\x17\xc5\xae\x87\xe3\x83\xa0\x1c\xf8\x87\x77\x73\x1d\xd4\xd5\x15\xca\xa8\x61\x55\x54\x59\x9c\xdf\x6d\x19\xa6\x90\x07\xcb\x81\x67\x11\x54\xe8\x08\xaf\xcf\x8e\x54\xee\x08\x6f\xbe\xc4\xbf\xf8\x97\xbb\x47\x2b\x4d\xaf\x5d\x82\x03\x22\x24\xa5\xc2\x9f\x48\x1f\xfe\x99\x70\x59\xb3\xbf\x9f\xa9\x71\x50\x9c\x22\x29\x07\xb1\xad\x6f\x4f\xee\xfa\xf7\xb4\x62\x39\xaa\x12\xc5\x82\xef\x47\x9a\x3f\x94\x1b\x9d\x10\x41\xe2\xcd\xdc\xf5\xc2\x08\x29\xf1\xe8\xa6\x7c\x1b\xdc\x85\xc3\xf4\x62\x3d\xca\x57\xf7\x29\x63\xf4\x4d\x01\x31\x2a\x0d\x4f\xfa\xcf\x9b\x79\xb3\xbd\xc4\x46\x71\x58\xcc\xdd\xac\xa8\x99\x39\x04\x78\x5c\xb0\xfe\x3e\xd6\x2e\x61\x49\x0e\xad\x81\xd9\x63\xc3\xbb\x9f\xb6\x6f\xa0\xb8\xee\x75\xc1\x20\x5a\x32\x5d\x56\xeb\xd8\x33\xb8\xf4\x9e\xe6\x20\x78\x8f\x56\x56\x0b\x97\xce\xa8\xcb\x0d\x27\xac\x49\x07\xbf\xe9\x9c\x6a\x35\x66\x4f\x4c\x6c\xf4\x38\x85\x28\x34\xb7\x35\x3a\xf2\x43\xc0\xe7\x03\x96\x93\xf7\x36\xa9\x61\x7b\xe3\xc6\x69\x8b\x0a\x1d\xe1\x5f\xa7\x6a\x70\x53\xe4\xa0\x72\x12\xee\xb2\x68\x99\xf6\x33\x89\xe7\x11\x3b\x99\x72\xbe\xbb\xb6\x17\x37\x0c\xb0\x8c\xe6\xa2\xd9\xe3\xef\x55\xfc\xb1\x2b\x36\xb2\x28\xbf\x80\x74\x9b\x62\x02\x35\xb7\xa5\x3d\xfa\x6f\xdf\x3d\x2a\x9c\xa3\x4c\x13\x8a\xef\x63\x67\x79\x61\x72\xbd\x5b\xb6\x05\x18\x2d\x7a\x3b\x57\x1f\x15\xcd\x57\xb2\x77\xe8\xa3\x4b\xaa\xcd\x8c\x93\xe5\xe7\xb2\xbc\xdd\x58\x46\x0d\x6c\xd7\x95\x15\x49\x7e\xa3\x20\xf2\x5e\x4f\x6c\x5e\x56\xfc\xc7\x7a\x95\xdb\x51\xc3\x36\x1f\x54\xbc\x7f\x80\xac\xfa\x02\x17\xd5\xb8\xb5\x9f\x70\x82\xdb\x29\xbf\x1c\xc0\x4b\xba\x20\x96\xe4\x3f\x3e\x57\xd0\xa2\xa8\x53\xa5\x01\xdf\xa8\xad\x6b\x4d\x07\x0f\x0b\x23\x9b\x53\x3e\xf4\x69\xcd\x19\x85\x3f\x19\xb8\x1e\x30\xfe\x7b\xf2\x23\xcf\x29\xb6\x0d\x9b\x02\x40\xbe\x14\x3a\xc2\x5f\x69\xfb\x48\x1a\xd5\x9e\x46\x02\x9d\xfc\xd3\x13\x8a\x24\x0d\xf6\x2d\x8e\x83\xde\xbc\x56\xa6\x88\x2e\x46\x7c\x5c\xa0\x25\x68\x79\xff\xa8\x09\x39\x3b\x1c\xeb\x26\x10\x36\x67\xc2\xe1\x4a\xf1\x27\xd4\xdc\xe0\x4f\xae\x7c\xb2\x41\x9c\xb8\x8a\xfd\xc4\x51\x3f\x3b\xf5\x8c\xaa\xbd\xe0\xf2\x21\x25\x54\x20\x0f\x0d\x50\x85\x7c\xf9\xcf\x14\x05\xe5\xad\xad\xc9\x30\xb7\xda\x12\x34\x14\xce\x1b\x27\xa6\xa3\x48\xe0\x4d\x9b\x1f\x6f\x7f\xfb\x1f\xd7\x22\x90\x6d\xe3\x32\x96\x50\xfc\x6b\x4e\xeb\xfc\x72\xec\x1a\x56\xf4\xcc\xc4\xc7\xba\xfa\xa0\x66\xa3\x59\x48\xe4\x80\x72\x85\x6a\x93\xd2\x05\x51\x21\x47\x9d\xbf\x7b\x51\x7a\xa0\xb3\x29\x40\x6e\x9d\x06\xe9\xec\x9c\x6b\x29\xf2\x7e\xe0\x3a\x6c\xdb\x81\x8d\x1a\xc5\x5b\x97\xbf\x20\x63\x2d\x2a\xd2\x1a\x2e\xf8\x16\x2e\x94\x18\x9c\xac\xcc\xe7\x5f\x1b\xac\x00\x11\x01\x71\xf2\xfc\x2e\x0d\x33\x88\x91\x23\x74\x21\xf3\xfe\x58\x4d\x75\x8c\xba\x2e\x56\xd6\xf9\xb9\xf7\xee\xe6\x77\xc9\x8f\xc7\x52\x6b\x77\xa6\x53\x3b\x30\xda\x63\xe5\x03\x19\x6e\xd9\x2e\x0e\xe4\xbf\xb6\x57\x0e\xcd\x35\x6f\x2b\xa8\x1b\x0c\x6d\x62\xe6\x33\xca\x20\xd0\xb7\x92\xf9\x50\xbe\xbb\xaf\xe2\xd8\x4e\x19\x37\x26\xce\xf7\xad\xc9\xdd\x8e\x17\x80\xde\x40\xc3\x01\xb8\xb1\x79\x9c\x16\xb8\x04\x19\x42\x56\x0d\x63\x1e\x6f\x68\x2e\x10\xc3\xae\x2f\x62\xdb\xf7\xce\x26\xf9\xc4\x22\xe9\x95\xfc\x91\x27\xe5\xe0\xfa\x9f\xc4\x10\xef\x5d\x45\x62\x9b\x38\xc2\xec\x97\x23\xb4\x32\xd7\xbf\x22\xaf\x54\x0d\xd9\xe0\xcc\x06\xab\x80\x35\x2b\x34\x0b\xef\xa8\x65\x8a\x31\x9d\x87\xef\xe7\xb5\x5e\x11\x74\x53\x6c\xfe\xdd\x47\x8d\x1a\xa2\x14\x70\x0e\x27\x55\x5b\xa7\xb4\x7b\x6e\x18\xc8\x93\x23\xdc\x97\xb7\x2b\x7a\x6f\x40\x0a\x8e\xb2\xdf\x9d\xaa\xfa\x26\x02\xed\x1c\xae\xcd\x7c\xba\x49\x44\x50\x17\xfb\x89\x29\x65\x6e\x94\xa2\xe4\x52\xac\x27\xfb\xca\x8d\xc3\x53\x2d\x00\xaa\x0a\xc5\xc3\xcc\x92\x65\x09\xa0\xaf\x82\x8a\xca\x63\x9f\x3b\x3f\xf9\x83\x32\x55\xc0\x54\xf9\x51\xcf\x28\x98\xe3\xa0\xcc\x6d\x14\x72\x3f\xd9\xa5\x03\xe8\x3c\x52\x16\x9b\xa5\xfc\x98\x43\x1a\x44\x26\xb0\x01\x57\xc6\x25\xf8\x33\xaf\x0c\x50\x9b\x30\x40\xcf\xd7\x30\x8c\x2c\x3f\xfb\xa0\xae\xfa\x50\xa2\x4c\x68\x10\xe4\xbe\xb2\x73\x9c\x72\xcb\x00\xc9\xad\x1f\x2f\xb7\xaf\x52\x47\x63\xd8\x9c\x40\x24\xcf\xcf\xd6\x5c\xd5\x94\xb0\x25\xf8\x77\xb7\xb6\x68\x6c\xcb\xba\xe7\x63\x87\x4f\xf7\xb3\x67\x35\x68\xb8\x83\x18\xe9\x0c\x90\x8b\x44\x91\xf3\x5e\xad\x41\xc7\x06\xc4\xe7\x6c\x91\xc5\x97\x6c\x50\x95\x6e\xc1\xb2\x19\xb2\xe5\x99\x12\x2f\x84\x57\x07\x45\xc4\x1a\xc2\x65\xbe\xeb\x4e\x9d\x18\x0c\x36\xe7\x44\x34\xda\xf9\x09\xcb\x14\x63\x2c\x41\x6d\x54\x99\x65\xee\xeb\xe9\x7d\x71\xdb\x2c\x3e\x10\x7c\xfa\x1e\x31\x26\x61\x5c\x3f\x3a\xfb\x5f\x1a\x6c\x0d\x0a\x10\x4e\x62\xbe\xef\x84\xe2\x46\x34\x67\x6e\xa1\x23\x34\x74\x30\x85\x50\x84\xe6\xd3\xfd\xaf\x8c\xd0\xed\x71\x83\xb2\x15\x57\x8a\xdf\xb5\x14\x08\x02\x72\x31\x50\x82\x86\xa6\xc4\xe8\xea\x31\x7e\x7d\x7c\x28\xdd\xa9\xda\x5a\x0b\x1d\xe1\x0d\x1a\x59\x0a\x19\x7c\x54\x29\x4a\xa5\xac\x7d\x76\xa4\x92\x96\x00\x9d\x61\xc4\x3f\x6c\xc4\xda\x2b\x14\x68\x06\x66\xc4\x68\xac\xe7\xbe\xc9\x9a\x94\x1c\x5e\x42\xe0\xb1\x1f\xbe\x73\x62\x4c\x1a\x0b\xe6\xab\x94\xa1\x5c\x41\xa1\x60\x3b\xd4\xb3\x28\xe5\x12\xb3\xb3\x75\x51\xe7\x6a\x15\xbb\x31\xde\x6e\xe6\xda\x51\xf1\x5d\x9b\xd4\xf0\x31\xee\xd8\x2b\xef\x9b\x15\x94\x31\x9f\xbd\x6f\xdd\x31\x50\x84\x61\xe2\x56\xa2\x38\xf1\xc5\x1a\x07\x6e\xdc\x14\x1d\x34\x9c\x24\xe7\xcc\xe6\xf5\xe9\x41\x21\x9d\xec\x62\x04\x18\x7d\x79\xd7\x8f\x34\x29\xc4\xa1\xc6\x74\xd6\xef\x31\x39\x76\x2b\x22\x3e\x44\x62\xfb\x14\x53\x1b\x9b\x76\x71\xac\xdb\x3e\x8d\xee\xea\xd9\x54\xee\xa5\x47\xdf\xa3\x04\x0e\x6c\xf3\x94\x9b\xd9\xf5\xfa\xf0\xf8\xaf\xc3\x00\x30\xa1\x92\x0d\xdf\x71\x79\xc3\x19\xf4\x0c\x54\x4d\x2a\x92\xdc\x53\x67\x9a\x94\x27\xe3\x79\x18\x0e\x73\xd8\xa2\x40\x35\x19\xe5\xb8\x84\xaf\x6c\x4f\x27\x76\xe4\x79\xc8\xc7\xa8\x1c\x60\x45\xd2\x27\x37\xf2\xa4\xf4\x16\x41\xd1\xb7\xec\x37\x55\x9f\x2b\x79\x7e\x22\x38\x74\xea\xdd\xa1\x2a\x00\x42\x28\x2a\x6d\x57\x3f\x14\x72\xcb\x02\xfd\x7b\x78\x83\xd8\x76\x20\xc6\x01\x87\xcf\x6f\xed\x1f\xa7\x0d\x08\xc4\xb7\x0e\x50\xac\xd6\xb1\x8d\xcb\x00\xad\xeb\xc9\x4c\x7f\x43\x9f\x5e\xd9\x62\xad\x1d\xae\xe5\x2a\xe2\x85\x1b\x1a\xa9\xb3\x99\x9f\x9d\x53\x56\x07\x04\x84\x06\x13\xf2\x6c\x51\x51\x20\x4b\x6a\x7d\x60\x79\xd4\xf4\x12\xd0\xf5\x02\x07\x8a\x47\xd8\x04\xff\xf3\x22\x8d\x5f\x8a\x8d\x00\x60\xca\x1c\xf6\x79\x7d\x13\x3f\x82\x8b\x84\x01\x98\x48\xb9\x1f\x6e\x49\xfa\x74\x1c\xe5\xd3\x70\xe8\x71\x65\x77\xdc\x45\xdc\x0a\xf7\xfd\xb8\x75\xd2\x80\xc4\xf3\xb1\x14\x3d\xfc\x29\x57\x68\x71\x25\x9e\x13\x26\xad\x49\xa6\xe9\x82\x9c\x65\x22\x06\xfe\x3c\xf1\x71\xb3\xf8\xaa\xa0\xb0\x5c\x38\x04\xaa\xd4\xdf\x75\xa3\xe4\xab\xa3\x8c\x94\xe1\xe0\x7c\x75\x57\xb2\x52\x76\xe3\xb9\x4a\xf8\x91\x87\x9a\x95\x15\x8c\xe7\xe0\x98\x5f\xf2\x3f\xcd\x82\x70\xcf\xbd\xbb\x38\xf8\xfb\xf5\x6b\x94\x8e\xa8\x35\xea\x88\xc2\x1f\xf4\xd5\x9c\x45\x68\x97\x98\x94\xbc\xa3\xf9\xf4\xe2\x1a\x91\xe0\x92\x8e\x9e\xcc\xaa\x97\xd3\x6f\xbe\x13\x11\x5b\xec\xa3\x26\x1f\x97\x41\x98\x51\x60\x4b\x5c\xa2\x83\xb0\x3d\x86\xb0\x2d\xca\xe1\x28\xe4\xdd\xff\xae\x9e\xf2\x60\x37\x45\x59\x82\x32\x7f\x6e\xfe\xe0\xb8\x61\xf1\x03\x03\x1c\x85\xf2\x9f\x53\x06\xa4\x16\x46\x2a\x50\xe9\xeb\x07\x95\x66\x8b\x14\x31\x03\x77\xea\x99\x13\xd3\xe3\xbc\xa2\x5f\xee\x0d\x1c\x92\xbd\xa3\x45\x96\x24\xb1\x66\x12\xe4\xfc\xdf\x4c\x19\xa9\x5f\x55\x2c\x2c\x7d\xb3\xbe\x9b\xcc\x29\x40\x1b\x3e\xbc\xf6\xf4\x20\x51\x47\x07\xae\xc9\x29\x49\xff\xef\x24\xc7\xbb\xdd\x82\x3d\x1b\xab\x6e\x72\xf4\xac\x86\xd7\x43\xcc\xa4\x2e\x4e\x54\xdf\xf2\x7d\x14\x9b\x5c\x17\x09\x8e\x7c\x4f\xe6\xb1\xdd\x3a\x1a\xda\x36\xbb\x88\x9b\x32\x48\xbf\xfd\x82\xa2\xfc\x46\xab\x10\x22\xcf\x6d\x56\x04\xc7\x03\xcf\xa0\x35\xe2\xf3\x49\xe0\xee\xd6\xf4\xab\xe8\x0c\x38\x28\x46\x6e\xaa\x7f\xaf\x84\x57\xc3\xc2\x35\x68\x49\xeb\x5a\x34\x0a\x5c\x9f\xc4\xb1\xa0\xda\xd2\x30\x7c\xa0\xc9\x35\xc9\x8e\x5c\x39\x02\xbb\x51\x69\x6e\x82\x49\xf9\x1a\x16\xdb\xbf\x87\x5b\xa6\xc4\x93\x0e\xae\xfa\x17\x4e\x51\x24\xf6\xaa\xc8\x8d\x2a\x54\x1b\x68\x65\xd9\xff\x3c\xc2\x4f\x3c\xad\xe2\x64\x56\x7f\xd3\x43\xba\x8d\xb5\x41\x59\xf2\x44\x33\x7f\x7a\x5c\x93\x74\xc2\xd8\x11\x4c\xdd\xbf\x1c\x90\x79\x34\x66\xc7\x2a\x3d\xd6\xe5\x2b\xd2\x69\xd6\xc7\xe5\xe8\x72\x23\xc2\xc5\x31\x7f\xd4\x92\x64\xac\x72\x23\x99\x2d\x33\xea\x39\x79\x34\x4d\x52\x23\x26\xa7\x44\xaf\xb9\x90\x52\x43\x66\x76\x3d\xce\x92\x1f\xe4\x1e\x09\x85\x1b\x59\x50\x6d\x58\x89\xe7\x3e\x5f\x92\x65\x8a\x4d\x39\xb3\xe9\xb5\x13\x32\x88\x56\x10\x71\x68\x17\xf1\xa3\x7e\x20\xfb\x2f\xc7\xe5\xef\x8e\x1a\x05\x0e\x01\xcb\xcf\x7d\x41\x33\x1e\x8c\x02\xc1\xf4\xe8\x08\xbb\x02\x05\x00\x12\x0e\x1c\x8d\xfd\xe3\xbd\xaa\x70\x2e\x77\x2e\x39\xa4\x31\xf1\xcb\xd8\x8d\xae\x1c\x37\x30\xca\x3d\xc1\x86\xaa\x95\x2e\x03\x90\x52\xf6\xc6\x4b\x92\x22\xbe\x8e\xcb\x4a\x11\xdf\xe7\xd1\xa4\x2f\x47\x5e\x23\x19\xf0\xad\x97\xd2\x77\x70\xd6\x4c\xdf\x8a\x6f\x49\xf3\xf8\xb1\xda\x3b\x75\x08\x72\xdd\x20\x16\xf9\xcb\xfe\xcf\x36\x15\x0d\x5e\xc3\x8c\x0b\xff\xe6\xbf\xb8\x45\x91\xa0\x32\x80\xaa\x0e\xf2\x95\xd9\x7b\xf7\x29\x00\x09\xec\x5b\x36\xb6\x00\x44\x9a\xfd\xcc\x49\xf9\x96\x61\x34\x9a\x26\x0f\xee\x54\x07\x12\xc8\xc6\xcc\xb3\x48\x74\x17\xf6\xee\x18\x10\x3f\x51\x18\x42\xe5\xbe\x37\x44\x01\xb0\x18\x08\xf6\x0b\xd1\x19\x9c\xbd\x62\xa0\x0a\xee\xec\xe8\xc9\x0d\x3f\xae\x2b\x02\x91\xcd\x01\x13\x22\x57\x5b\x64\xf4\xa9\xbb\x50\x02\xac\x1f\xcf\x93\x78\x7b\x6b\xeb\x2c\x58\x3a\xec\xd4\xb0\x19\xc4\x2d\x6b\xcc\xf0\xeb\x34\x39\x8d\x2a\x76\x7d\x54\xa6\x6e\x43\x7b\xde\x71\x68\xa0\xf2\x54\x0a\x1d\xe1\xc8\x3b\x9b\xb4\xef\x0b\x05\xf6\x6b\x0f\x36\x37\x14\x0e\x7c\xdf\xb0\x4b\x83\xdf\xd9\x44\x78\x4f\xc2\x3c\xe7\x8e\x67\x95\x0a\xc1\x0a\x98\x61\x15\x6c\xe2\x56\x78\x10\xfd\xcd\xa8\x24\x67\x7b\x60\xb3\x34\x78\xec\x48\xe5\xba\x7a\xa8\xcc\x30\x1f\x9d\x76\xf4\x64\xfe\x75\xdd\xe8\xd4\xb0\xcb\x88\x5a\xb8\x98\x6d\x98\xed\xfb\x08\x0f\xd1\x6b\xb0\xeb\x89\xe9\xcb\xd5\xd6\x50\xf1\x6b\x91\x53\xe5\xc2\xe3\x1d\x3d\xd9\xcf\x6f\xd5\xaa\x0b\x03\xdc\xbb\x92\x72\x6f\x45\x0c\x3b\x20\x0e\xf1\x91\xa7\x22\x6c\x8e\x0b\x7a\x18\xaa\x51\x86\xc0\x63\xa8\x27\xf3\x33\x73\x68\xf4\x53\x56\xac\x50\x4b\x1f\x64\xa7\x5f\x90\x63\x18\xa8\x88\x53\x46\xe2\x3f\x3f\x36\x4c\xf9\x36\x42\x30\xb5\xa3\x27\x4b\x07\xc9\x32\x06\x86\x36\xdb\xb7\x35\x56\x66\x31\x48\xb3\xff\x4b\x5a\x6f\xc2\xa2\x0e\x13\x74\x1c\xa2\x20\xeb\x5b\xe3\xd4\x45\xb6\xd1\x68\x00\x94\xfd\xf3\x12\x45\x92\x15\x39\x45\xde\x98\x7d\x4f\x99\xc0\x6c\x0a\x12\xd1\xc4\xdc\x1a\x6d\x6a\xcc\xe1\xd4\x2c\x8e\xc3\x57\x1e\x68\x80\xaa\x11\xc6\xe5\x9c\xc2\xce\x27\x55\x7d\xd2\xa8\xea\x64\x01\x14\x33\x93\x9f\x6a\x56\x46\x85\x09\x7a\x3e\xf4\x9f\x52\xfe\x41\xcc\x2c\x01\x5e\xc9\x4c\xd5\xbf\xb6\x6a\x0b\xcb\xb9\xfc\x47\x5f\xe0\xc8\xc9\xb6\x59\x33\x0a\x1d\xe1\x1d\x7d\xe4\xa5\xe3\xde\xa5\x1f\x2c\x6a\xba\x1b\xd8\xad\x53\xf5\xa5\x84\x5f\x3c\x22\x1f\x06\x43\xae\x07\x4e\x3f\xbf\x9b\x9e\x7e\xc6\xd1\x91\x34\x70\xa2\x5b\x73\xd3\xee\x26\x75\x9b\x50\x04\x60\x7a\xf8\xe1\x67\x95\x1d\x03\x62\xd4\x84\xe5\x5c\xf8\xf3\xce\x24\xd2\x14\x8b\x8d\xf9\xe4\xe0\x72\xc5\x29\x1f\x68\x3a\x1d\xe1\xf2\xb5\x12\xfd\x36\xbb\x00\xa2\xb2\x03\x0f\xf2\xd2\x63\x8d\x85\xdc\x8a\x57\x06\xaf\x73\x08\x7d\x13\xfb\xa5\xe4\xf4\x5c\x1e\x9d\x2f\x3f\x28\xd9\x35\xae\x48\xa8\x1f\x3b\xa5\x81\xdc\x19\xad\x60\x2e\x17\xf0\x9f\xd6\xf8\xb4\xfa\xc9\xea\x69\xe9\x43\x53\xe8\x08\x37\x8c\xe7\x3b\xa3\x95\x8c\x7a\x55\x5c\x49\x55\xbd\xb9\x0b\x8b\xd5\xc0\xcc\x79\x15\x85\x8e\xf0\xe2\x4e\xf9\xa0\xca\x01\xf6\x7d\x68\xc3\xf3\x37\x4e\x1d\xaf\x95\xdf\xc5\x22\xc1\xe9\xa5\x6c\xfe\x93\xca\x92\x0c\x10\x59\x38\x2e\x37\x6f\x50\xfa\x19\x03\xdb\x76\x60\x18\x04\x34\x6a\x5e\x13\x6e\x3d\x8c\x6c\xde\x0c\x37\x35\x3b\xe3\x41\xc5\xd4\xbd\xc6\x83\xd7\x6f\x05\x27\x9b\x51\x64\x16\x8a\x36\x15\x7a\x85\x3d\x99\xdf\xac\xec\x9f\xe4\xef\x42\x47\x38\x61\x54\x7a\xd6\xe9\x50\xd7\xaf\x22\xe6\x02\xa0\x49\xda\x50\xef\x7c\x2f\x7d\x3f\x88\x8f\x58\xc1\x47\x42\x64\x2c\x43\xd6\x27\x77\x7b\xb2\x8f\x0a\x1d\xe1\x8e\xbe\x4a\x7b\x1b\x2f\x70\x57\x2a\x9f\x13\xbe\x6a\x47\x4f\xf6\x6a\xa9\x0a\x88\x88\xb2\x02\xce\x3e\x79\x40\x17\x3c\x60\x18\x71\xe3\x92\x5c\x93\x30\xa2\xa6\x55\x9f\x38\x7c\x9c\x5f\xba\x47\x29\x20\x09\xc7\x31\x66\xff\xdc\x4f\xf0\xd4\xb0\xcb\x35\x05\xc3\xff\x77\xe1\x4a\x3d\x7e\xd1\x80\xf9\x69\x37\xb2\xcc\xad\xe3\x95\xdd\x34\x76\xb8\x7d\x5e\x2c\xa0\xf2\x7b\x21\x7b\xe6\x59\xb4\xc6\x03\xef\xe9\x4e\xc5\x7a\x9e\x89\x70\x9c\x79\x7d\x88\x16\x8e\x29\x5f\x02\x0b\x15\xba\xcf\xbd\x29\x88\x22\x81\xed\x93\x12\x32\xb0\x58\x23\xcc\xe8\xd4\x65\x8f\x6c\x9b\x76\x71\x9a\x6b\xee\x83\x1a\x76\x91\xcf\xf3\x2c\xe4\xca\x22\xbc\xa9\x33\xfd\x42\xc5\x9f\xe8\x33\x89\x63\x0f\x69\xcb\xf4\xc0\x2d\x0a\x02\x80\x5e\xcc\x3c\xdf\xc2\x27\xa5\x8b\x11\x53\xa8\xe2\xf9\xab\x27\xf1\x2a\x61\x69\xe0\x0b\x77\xf5\x6d\xf2\x92\xfb\x0c\x71\xb1\xc9\xda\x82\xf4\xc8\xac\x54\x24\xd1\x3b\x0c\x2f\x9b\xd0\xac\xc6\x11\x04\x52\x9b\x20\xe1\x23\xa1\x05\x95\x2e\x90\x63\xf8\xac\xb6\x0e\xad\x10\x3b\xaa\x55\xb8\x54\xc4\xfb\x99\x1c\xb3\x53\x97\x8f\x1e\x3b\x8e\x5c\x96\x22\x60\x83\x7c\x92\x52\x42\xfc\xe0\x21\x79\x8f\x03\xd7\x41\xae\x78\x63\xf4\xbc\x6e\x9d\x10\x95\xea\xe0\x46\xcd\x7f\xf0\x5f\x5e\x54\x68\xb3\x41\x8c\xfa\xc9\xcf\xda\xc9\xaf\x54\xcb\x8c\xb9\x20\x01\x7d\x82\xe9\xe6\xd0\xa6\x89\x13\xe6\x51\x9f\x85\xb2\xe5\x2e\x52\xf0\x51\x8b\x81\x4d\x9f\x5f\xcb\xf3\xba\x6f\x45\x81\xaf\xa5\x85\xe7\xac\x4b\xb6\xc7\xb4\x29\x68\xf3\x57\xb1\x89\x7a\xaa\x42\x5d\x45\xcc\x98\x36\xf8\xcf\x7f\xa4\x5d\x0b\x85\x41\x3d\x96\x86\x7c\x89\xa5\xdf\x7e\x27\xb5\xdc\x82\x8d\x4a\x25\x57\x8f\x50\x99\x41\xcf\x0e\x55\xb7\xc7\x18\x4a\xce\xdc\x8c\x7b\x35\x9c\xfa\x9c\xe9\x5c\xa8\x0f\x4e\xc2\x82\x21\x32\xf3\x55\x31\x32\x70\x5c\x53\x7c\xac\x93\x7f\x95\xb9\x2d\xb3\xa3\x9f\x32\x40\x53\x7b\x2c\x31\xba\x19\xbb\x5c\x9a\xe3\xf6\x6e\x75\x70\x50\xad\x83\xd4\x5f\xa1\x23\xfc\xf2\x54\x79\xd9\x2c\x14\x78\x08\x1e\xea\x3f\xf6\xa9\x6e\x85\xae\xcf\x84\x58\xdd\xdf\x94\xff\x6e\x12\xcf\x27\x1c\xbd\x91\x5b\x71\x6e\xac\xd2\x91\xf4\x22\x6b\xf3\xb6\xab\x83\xec\x50\x60\x6a\xcf\x26\xbb\x71\xb1\x56\xed\x72\x83\xa8\xd8\x4f\x68\x09\xbf\x20\x15\x17\x77\xb5\x44\x09\x6f\xb7\xb2\x87\x24\x5e\x91\x8f\x3c\xae\x58\xc7\x0f\xcf\x8d\x84\xd7\xda\xcb\x06\xa4\x7b\x5b\x64\x9a\x70\xd0\x12\x10\x68\xf6\xda\xa3\x97\xa7\xa8\x03\xc8\x75\xb0\xab\x0e\x51\xb3\xf7\x0e\x51\x57\x0c\xc2\xf8\x26\x1b\xf4\xd3\x16\x7e\x88\x15\x4a\xd8\x37\x2c\xcc\x95\x5e\x73\xfb\x1e\x90\x31\xd4\x47\x55\x1e\x8f\xde\x67\xa6\x43\x0e\x9f\x8b\x10\x65\xec\x97\x1d\xbd\x2d\x89\xe1\xdd\x81\xea\xd0\x72\xc5\x13\x53\xd3\x37\x17\xf8\x19\x1e\x72\xfd\x5e\x5c\x18\xc3\xaf\xce\xd5\x02\x66\xc0\x6a\xa4\x26\x67\x55\xbb\x26\x2a\x06\xf3\xa4\x54\x82\x34\x9b\x23\xbb\x34\x5b\x52\x52\x13\x8b\xdf\xdc\xb5\x2f\xa5\x0e\x05\x74\x52\xa0\x06\xb0\x86\xe7\xc6\xeb\x90\xe7\x33\xaa\xd4\xc1\xdf\x58\xae\x8d\x2b\xa3\x12\x4c\x08\x0a\x66\x3e\xb9\x5c\x57\xe9\x31\xa2\x22\x40\xb1\x18\x08\xdb\xde\xd0\x57\x8d\x31\x1f\x45\xec\x2d\xca\x97\x88\xb5\x7d\xe0\xf3\x7b\x74\x54\x83\x81\x08\xd4\x51\xd4\xd7\xfe\xe9\x9c\xe8\xc2\x30\x88\x00\x86\xc3\x2c\x65\x36\x36\x6f\x6e\x6b\xa1\x23\xdc\xb8\x7f\xa4\x12\xc8\xaa\x8c\x96\x88\x2f\xae\x5a\xee\x86\x1d\x0d\x2b\x88\xf8\xb9\xfc\xdb\x92\xe4\x7d\x59\xea\x84\x27\x3b\x7c\x0f\x3f\x8b\x2b\x68\x0d\x3e\xdd\x4c\xb1\xd7\x58\xf9\xd1\x35\xd7\x2d\x8d\xfe\xc3\xaf\x27\x0e\x12\x9d\x61\xb7\x50\xe1\xff\xc9\x14\x21\x7f\x6d\x58\x81\x5d\x52\xf1\x37\xf9\x1b\x8f\x6a\x99\x88\x3a\xc4\x2d\x27\x12\xf2\xf1\x2f\xfd\x7f\x8a\xb8\x40\x19\x99\x65\x4e\x0f\x5a\x7f\x66\xa8\x74\x93\x88\x27\xa1\x77\x9c\x11\x46\xcd\xd4\x56\xc5\x71\x7b\x5e\xd4\x46\x77\x71\xca\x13\xd5\xef\xa4\x47\x9a\xd5\x19\x9c\xed\x5b\x84\xe3\xa6\x1e\x7e\x6f\x94\x7e\xd7\x92\xfd\x78\xe6\x8f\x4f\xa9\xb6\x7d\x0a\x00\x66\x8a\xae\x50\x0a\xbd\x7d\xa1\x23\xfc\xca\xec\x74\xcc\xb0\xe2\x51\x73\x8a\xe7\xbc\x3e\xa9\x94\xbd\x06\xd5\x8d\x9e\xdc\x8f\x67\x4e\x94\xad\x76\x99\xdb\x33\xc3\x32\x4f\x0f\x50\x8b\x67\xcb\xc3\x6d\x4f\x06\x34\x04\xa4\x87\x8f\xbe\x75\x45\x97\xbe\x99\x43\x01\x43\x3e\x0e\x98\x30\x01\xf9\xf1\x03\xc9\x2c\x1d\x18\xe9\xeb\x16\xf1\x8a\x86\xf8\x00\x6c\xea\x08\xed\xf9\xbc\xb0\xfe\x78\xd4\xa2\xc6\x25\xa0\xb3\x5c\x51\x9e\x25\x2e\xfc\x51\x47\x4f\xfe\x13\x93\x74\xd4\x7f\x05\xc7\x86\x03\xaf\x6e\x95\xc9\xb9\x8a\x79\x09\xb3\xf9\x71\xfe\xcb\xd6\x20\x1f\x71\x68\xd0\x9f\x04\xe4\xc5\xc2\x0c\xca\xa9\xab\x8e\x8c\x54\x7e\x51\x11\x33\x1f\x99\x94\x0b\xcd\xe7\xd8\xbb\xbc\x6a\xba\xce\xe6\x78\x7f\xf1\x86\x2f\x7d\x27\x1d\x34\xcb\x18\xa7\x8e\x40\x4f\x66\xc1\x5e\xc9\xe8\x9c\x82\x9d\xe0\xea\x86\x89\xff\xef\x1f\x51\x9d\x23\xb8\x3a\x41\xd8\x3a\x93\x67\xe4\x6b\x4b\xb0\xe2\x12\xd3\xae\xf9\xa7\x04\x18\x1d\xb9\x04\x24\xd8\xa1\x94\x5d\xb6\x54\x1b\xd6\x81\x60\x20\x14\xac\x7f\xd1\xcc\x50\x8b\x8c\x76\xa5\x95\x2e\xb2\x27\x4e\x08\x75\x5d\x0a\xae\x91\xd9\x4f\xb6\xf7\x22\x7f\xc9\x1f\x6c\x58\x5a\xca\xd7\x9c\x82\xee\xaf\xd7\x76\x5b\xee\x1a\xae\xa4\x48\xc6\x88\x57\x0c\x18\xe0\xe5\x9f\xdd\xdf\xab\x0b\x00\x17\xd5\x7e\x6e\xae\xa2\x9b\x19\xf8\xc0\x39\x8f\x17\xe0\x7f\x79\x4c\xb9\x0c\x18\xfb\xc2\xf0\x26\xf3\xc5\xe7\x74\xf4\xbf\xeb\x92\x22\xb2\xd3\x17\xf0\x0b\xc7\x79\xc0\x5d\x8f\x4d\xae\x03\x17\x7f\xe9\xfb\xd7\x2a\x37\x13\xbc\x85\x78\xab\x90\xfb\xed\x62\x9d\xfa\xc8\xd7\x2c\x62\x1e\xfb\xab\x77\xd2\x65\x7c\x15\xf9\x8c\x18\x15\xad\x74\xb9\xf2\xc8\x08\x15\xe4\x17\xfd\x08\x61\x37\xf6\xe3\x33\xc3\x94\x49\x75\x05\x75\x12\x40\x64\xe5\x3e\xfd\x4a\x83\xc4\x70\xb0\x29\xc0\x6c\x53\x20\xfa\xe2\xa8\x33\xdb\xf4\x48\xfa\xc4\xb7\xcd\x9b\x37\x37\xae\x7c\xde\x3a\x3e\x5a\xa9\x81\x69\xd5\xaa\x17\xba\x88\x2b\x38\x62\xf9\x4f\x6e\x1f\xa9\xdc\x07\x64\xe0\x0a\xc6\x02\x03\x92\x99\xfb\x64\x12\x17\xa8\xd3\x80\x4f\xff\xc8\x9b\xc9\xbc\x91\x35\x30\xf2\xc2\xef\xda\xfc\xec\x2c\x0b\xbc\xa8\x44\x3a\xa0\xa9\x77\xf0\x69\x85\x2f\x94\xb7\xf3\xcd\x6f\xa7\x9d\x09\x67\xf3\x9d\xfc\xe8\x26\x75\x8e\x41\x8d\x4a\x55\xf8\xc9\x37\xbd\xcb\x4f\xbb\x8d\x8a\x14\x96\x47\x80\x15\x1d\xbb\xae\x57\x8f\x52\xd0\xd9\x3c\xb1\x65\xb8\x76\x83\x05\xa0\x3e\x9f\x5f\x20\x5f\x89\xdc\x47\xc1\xf5\x99\x56\x52\x68\xeb\xe6\xff\xa7\xeb\xed\xe3\xa5\xaa\xea\xfd\x71\xe6\x41\x23\x23\x04\x04\x04\x44\x44\x44\x40\x61\x8e\x87\x03\x1c\x1e\x32\xae\x20\x12\x20\x72\x08\x91\x88\x8c\x5c\xb3\xf7\x9a\x99\x75\x66\xcf\x5e\xe3\xda\x7b\xcf\x9c\x39\x11\x17\x09\xb9\xe6\x03\x99\x5f\x2f\x19\x79\xc9\x8c\x6b\x64\x66\x66\x7e\xbd\xc6\x35\xbe\x66\xe6\x35\x53\x22\xae\x79\xd5\x9f\x91\x91\x11\x19\x79\x49\xb9\x66\xe6\xd9\xf7\xf7\xda\x9f\xb5\xf6\x5e\x9f\xbd\x86\xfe\xe9\xf5\x0a\xcf\x39\xb3\x67\xed\xb5\x3e\xeb\xf3\xf0\x7e\x20\x75\x5f\xf5\xe7\xc8\x7d\xc9\xc2\x48\x87\xa6\x74\x75\x72\xcf\x13\xba\x56\x2b\x91\x1a\x73\xf4\x85\x16\x9e\x18\x2a\x81\x46\x8b\x5c\xe2\xb4\x3c\xd6\x36\xe5\xcb\xfe\xf1\x28\x92\xba\xee\xa8\x74\x78\x1d\x01\x5c\x7c\xfb\x37\xeb\x58\xd7\x4b\x45\x95\x49\xd2\x71\xb1\xdd\x5b\xad\x37\xb0\x59\xc2\x77\xce\x0e\x9f\x77\xae\x59\x41\xf8\x88\xf1\xdc\x13\x7a\xd3\x94\x39\x87\x43\x02\x80\xfd\xc2\xc7\x6d\xbe\x2b\x69\xe9\xcc\xef\x86\x2f\x3d\xd3\x4f\xae\x68\x0f\xdb\x76\x67\x2f\xbf\x0b\x0f\x4d\x93\x54\x73\x8a\x39\x58\xac\xfb\xe0\x46\xa0\x50\x6b\x8b\xb6\x98\x36\x1a\x44\xc8\x57\x35\xa1\x22\x6f\xf4\x0a\xaf\xd3\x52\x00\xf8\x81\xe7\xc6\x23\xe5\x71\x22\x6a\x6a\x30\xfb\x6f\x97\x19\xb8\x38\x15\x06\x24\x5f\xf3\x8b\x07\x15\xeb\x8d\x30\x57\xfd\x9d\xdb\x56\x0c\x53\xc9\x4a\x41\x5a\x23\x44\x4f\xf2\xbd\x25\xe3\x8d\xa2\x24\x96\x74\x51\x59\xde\xb0\xbd\x06\x57\xc1\xb2\x78\xad\xee\x30\xaf\xa2\xcc\x4a\xca\xb7\xea\xc9\x06\x4c\xe7\x52\x47\xa1\xf7\x05\xdd\x4f\xb0\x91\x5b\x7e\x6e\xf6\xf8\x69\xc6\xab\x61\xb5\xe8\x6a\x8c\x2e\xc5\xb6\x5b\x78\xb2\xe1\xb3\x53\xa3\x24\xf6\xc7\xca\xfc\x60\x50\x02\x98\x6a\x91\xb4\xb4\xeb\x84\xd7\x8c\x5f\x63\x0e\x95\x0a\x80\xe1\x13\x2b\x8d\xb6\x35\x11\x7e\x6b\x7a\xb3\xbd\x30\x3f\xe6\x8c\x37\xee\x53\x49\x6e\x4c\x64\xc7\xdd\x85\xc9\x6c\x83\xba\xbe\x5c\xeb\xec\xa1\x77\x0c\xd7\x07\x50\xe2\xc4\x76\x3b\xc1\x0c\x24\x31\x57\xaf\x0b\x6a\x31\x35\x21\xff\xfa\x8a\xd1\x18\xd2\x25\x88\xe5\x33\x4b\xaa\xcb\x6e\xb8\xcc\x18\xb1\xba\x36\x6f\x82\x81\xac\x94\x35\x24\x2f\x22\x91\x70\x27\xa8\x31\x97\x05\xb5\x42\x4f\xf8\x95\x87\x64\xab\x79\x35\x71\xa9\xef\xa3\xfd\x9b\x19\x72\xbf\xdc\x27\xd7\x78\x41\x2c\x8d\x31\xe7\x89\x11\xcd\xa4\xa5\x96\x38\x52\xe5\xfa\x4f\x1a\xa9\x31\xf3\xaa\x31\xed\xe4\x77\x4b\xf0\x23\xd7\x58\x59\x24\x6e\x5d\x93\x76\x6a\x3a\x47\xe0\xf8\x82\x14\x88\x55\x61\xb4\x11\x77\xdb\xf3\xd7\xbc\xaa\xab\x1c\x70\x37\x8d\x3e\x6c\xee\x23\xd3\x8c\x37\x07\x7a\xe0\x2d\xa0\x0f\x99\x99\xc2\x6f\x1c\x64\x4f\x4d\x09\x38\xf0\x2d\x09\x93\xb6\x45\x8d\x42\x40\xff\xcc\x20\xa4\x43\xc1\x28\xd8\xc1\xe5\x7e\xfe\x74\xb2\x3d\x6d\x1e\xa0\xbb\xea\x6c\x07\xe1\x5e\x98\x20\x96\xcc\xe2\x17\x1f\x32\xe7\x83\xc4\x49\x00\x03\x03\xf9\xa5\x2f\xb5\x09\x56\x57\xa9\x57\x23\x12\x38\x16\x9e\xaf\x6c\x0c\xeb\x54\x34\x88\x27\x0d\xf9\xf3\xa7\xdd\x83\x1c\x38\x1d\x4a\x14\xb8\x36\x77\xc9\x4b\xb8\xbb\x09\x03\x61\xe8\xe0\xb0\xdb\x0d\x1d\x95\x0a\x77\x13\x68\x74\x66\xca\xe3\x8a\x38\xe5\xfa\xcc\xa3\x35\xe6\x4b\xda\xfc\x6b\x93\x51\x8d\x5a\x39\x95\xe8\xe9\xa1\x69\x67\xaa\x2f\x0b\x63\x38\xb8\xf5\x5f\x7f\x63\x84\xba\xac\x7d\xee\x50\x11\xf3\xc7\xb6\x4c\x30\x04\x6c\xa9\xeb\x05\x0a\xbc\x79\xcd\x56\xbd\xca\x2e\xf7\x78\xa3\xd0\x13\xde\xd4\x8b\x78\x74\x15\xe2\x79\x60\xe0\x95\xff\xac\x8d\x41\x0b\xae\xba\x76\xae\x9e\x94\xfe\xe3\xb6\x20\x4d\x05\xf6\xcd\xbe\x66\x98\xed\xc7\x1e\xcd\x5a\x99\x6d\x6a\x11\x29\x5c\x06\xad\xa8\xcc\x3f\xe4\x8c\xd0\x15\xa7\x9b\x78\xb7\xcf\x1d\x84\x7f\xd2\x03\x2d\xcc\x11\x33\x34\x0c\xa1\x46\x00\xca\xb4\x43\xe3\x09\x6d\x82\xb4\x73\xf6\xed\x34\xb4\xbd\x6a\xb5\xc0\x05\xa2\x9a\x5c\x87\xfd\x07\x24\x89\xf2\xe3\xd2\x46\xfe\x76\xbd\x02\xac\x41\xdc\x2a\xac\xcb\x02\x93\x50\x21\x58\xbd\xee\xe8\x77\xb9\x55\x8d\x95\x98\xeb\x05\x22\x16\x0b\xc9\xfe\xc3\x73\x48\xd6\x9c\x0a\x45\x4a\x74\x8d\x81\x49\x9d\x78\x5e\x9d\x0b\x5f\xcd\x6f\x7e\xef\xc8\x79\xf0\x55\xa4\xb7\x1d\x10\x95\x79\x04\xe3\x5d\x99\x53\x97\x9d\x90\x1d\x9d\x08\xc1\x23\xa2\xdd\x0a\xc2\xa3\xd9\x11\xbb\x10\x3b\xd0\x6d\xf0\x56\x6c\x42\xbd\xfd\xc4\x68\x73\x5f\x28\xa0\x43\xe6\x9d\xad\x06\x5b\x9e\x28\x01\x99\xdc\xa6\x69\x72\xa1\x36\xcc\x02\xe4\x6d\xa7\x49\xa8\x6d\x50\xcf\x67\x65\x82\x65\xe1\x3f\x9a\x45\xd3\x0b\x0a\x24\x96\xf0\x7a\x67\xb4\x19\x30\xb8\x32\x51\x7d\xdb\x37\x1b\x05\x09\x36\xd2\x8b\x15\xc6\x8a\xc5\x36\x46\x81\x4f\xaa\xb4\x43\x01\x85\xce\x30\x28\x64\x9e\xcf\xac\x6a\xdc\x85\x5c\x32\x38\x7d\x43\xd8\xd4\xa7\x22\x3a\x46\xd3\x9b\xd2\x5c\x6a\xdd\xc3\x13\xd0\x82\xf5\xf2\x56\x7b\xe2\xf3\x8b\x17\xd2\x05\x49\x85\x12\xfb\xfa\x80\x08\x4d\x44\xca\xe6\x87\x18\x33\xaf\x3e\x78\xbf\x10\x58\x76\x16\x15\xab\xa9\x42\x15\x0e\xb6\x1f\xe9\x29\x79\x09\x0d\x37\x7f\xe5\x86\xf8\x44\x63\x58\x7b\xe6\x2b\x6f\x1a\xe3\x3d\x1f\xa4\xf7\xbc\x98\x6e\xf5\x96\x61\x3e\xe6\x25\x9f\xfc\x11\x43\xc4\xa8\xe0\x11\x47\x9d\x81\xfc\x82\xfd\x3a\xe8\x74\xcd\x98\xd3\xd9\xd9\x96\x2c\xae\x5f\x88\xc5\x25\x3d\x68\x08\x42\x61\x94\x3f\x80\xb4\x52\x3d\x9f\x80\x12\x55\xf4\xa4\x5d\xd2\xf9\xa6\x1d\xeb\xfc\x12\x62\xd3\xd5\x05\x69\xca\x08\xf6\xf5\xa1\x7f\x8f\x76\x2c\x2b\xe2\xbf\x4d\x18\x83\x46\x20\x4c\x5a\x50\xc5\x29\x4a\xdf\x4b\xa3\x8d\x97\x22\xb8\x2a\x78\x86\x1c\x46\x0e\x2a\x6a\x40\x9d\x7b\x70\xa7\x21\x93\xcc\x1d\x47\x89\x4d\xbe\xf8\x40\x8c\x35\x61\x6e\xac\xea\x97\xd9\x77\xe7\x78\xd4\x0f\x03\x56\x7a\xfa\xa8\xbf\xb3\x79\x24\xa2\x55\x32\xc7\x56\xf3\xb7\xdc\x1d\x86\x58\xa1\x13\xf4\x05\xa2\x15\x57\xf9\xe3\x90\xf4\x9d\x23\xdb\xb4\x03\x99\x63\xef\x9d\xaf\xa3\x6d\xa9\x54\x90\x36\xc4\xf2\x9a\xd6\x55\x6f\x67\xc9\xa8\xa5\x66\x68\xbf\x97\x3b\xb4\x87\x34\xf6\x55\x0b\xef\xb9\x3d\xfd\x3b\x33\xa6\x17\x5c\xee\x52\x10\x87\xdb\x72\x58\xb6\xa3\x3e\x16\xd5\x7b\xcc\xc2\x80\xfc\xcf\x37\xda\x6a\x46\x1f\xe8\xf5\x78\x7a\x9d\x5f\x85\x96\xc0\xa6\x40\x93\x85\xa1\xed\xf4\x92\xa6\x24\x28\xe4\x88\x7e\xa2\xcb\xaf\x4b\xac\x21\x81\x74\x05\xa8\x8c\x5d\x22\xbd\x15\x8a\xbc\x56\x24\xad\x04\xce\x99\xd9\xba\x6b\x9c\x59\x2b\x94\x40\x33\x51\x7e\xfb\x11\xf7\xa9\x19\x3f\xa9\xd5\x09\xe0\x81\xa3\x7f\x7d\xe2\x35\xe5\xfc\xbd\xf4\xea\xb6\xcd\x3d\x50\xd1\x7e\x34\xa2\x0a\xfd\xbb\x85\x86\x8f\x84\xe7\x81\xf3\x6a\x6c\x73\x52\xe8\x09\x97\x3e\x3b\x36\xd1\xba\x6e\xeb\x82\xe7\x72\x87\x4d\x38\x87\xcb\xb8\x88\xed\x7f\xff\xfb\x6e\x1d\x17\x8b\xa4\x5c\x86\x3d\xd4\xbd\x02\xa5\x17\xe0\x41\x09\xeb\xf7\x9f\x77\x6a\xc6\xe8\x6c\x68\xc1\xff\xfb\x13\x46\x4d\xc2\x83\xb8\x5c\xf9\xe1\x4d\xe9\xe8\x6d\x73\x2e\x64\x99\xb1\x6b\x87\x1a\xbe\x71\x2e\x57\x24\xbb\xc3\x9f\x88\x26\x8d\xdc\xf5\x0b\xbc\x04\x74\x11\xc1\xfd\x84\xae\xf2\x0b\x43\xc2\xa0\xca\x1c\x27\x11\x52\x5a\xf4\x8e\x0e\x5d\x15\xe6\xc6\x21\xe1\xf0\xc5\xe9\xd6\x46\x50\x3d\x95\xdc\x47\xfe\xb2\x6e\x39\xd2\xe8\xe5\x51\x9a\xbf\xe7\x32\xec\x65\x26\x99\x4f\x10\x1f\xef\x7f\x69\x12\xaa\xae\x83\x56\x83\x7a\xa4\x9d\x38\x97\xff\xb4\x69\x69\xc3\x2d\xe2\x53\x39\x11\x79\x70\xb5\x21\x6a\x45\x89\x28\x4a\x7d\xdf\x1f\x0f\x33\xa5\xf4\x5c\xb0\xb5\x8c\x52\x45\x48\x0f\xbe\x79\x2c\xbd\xa2\xcd\x8a\x8c\x2c\xe1\xc0\xdd\x3a\x05\xe9\xea\x8c\x4a\xd4\xcf\x8f\x44\x4a\xf0\xd4\x22\x75\xe6\x07\xb1\xaf\x7b\xf6\x4b\x4f\xa5\x17\xa5\x49\x6c\x29\xd6\x92\xde\x37\xb7\xd9\xd8\xde\xb5\x59\xa8\x02\x67\x3a\xb7\x7c\xe5\x78\xe3\xdb\xb9\x36\x77\xf5\x98\x39\x33\x6a\xd7\x04\xf3\xce\x89\xee\x92\xe8\x0c\xc6\xe5\xd7\xad\x0d\x44\x40\x11\x2a\x88\x43\xcf\x3b\xfc\xed\xda\xe4\x00\x04\xb0\xe9\x4a\x6f\x28\x9d\x7a\x80\x40\x46\xcf\xff\xc9\xc1\xf2\x3e\xba\x92\x57\x91\xab\x62\x6e\xcb\x0c\x45\x84\x0b\x04\x87\x36\x6a\x66\xc9\x0a\x24\x58\x21\x82\x32\x20\x86\x24\x89\xf8\x53\x9d\x7a\xdb\x07\xca\xcd\x2a\x7b\xe6\x4e\x64\x4d\x4e\x1a\xa7\x10\x9e\xc9\xfd\xf4\xa6\xf4\x69\x6c\x05\x65\xee\x39\xa4\xc1\x88\x26\xa3\xff\xd8\x10\x27\x2b\x12\xaf\x4a\xfd\xa2\x6c\x24\x17\x7a\xc2\x9f\x23\xe3\xe9\x72\x1c\xe3\x7a\x06\xf2\x9f\xf7\x8d\x84\xa1\xc2\xe3\xdb\x34\x7c\x71\xb7\x5e\xb1\x06\xe3\x4e\xac\x02\xb5\xfa\x8a\x81\xdc\xc6\x31\x66\x7d\x51\x0e\x1c\xa2\x84\xbd\xc2\x93\x13\xd3\x55\x91\xd3\xe2\xae\x4b\x98\x77\x4a\x6b\x81\x4f\xde\xd3\x26\x0e\xe4\x0b\x1e\x9f\x33\x48\xa4\xea\x79\x7c\x69\x52\x10\xea\xea\x09\xb7\x64\xc7\x98\xb9\x48\x43\x61\x6a\xc3\xed\x9a\xa3\x5c\x85\x2c\x3e\x73\xfa\xec\xf3\x8d\xb2\xd0\xaa\x10\x90\x6e\xc5\x14\xb3\xfa\xab\xb1\x9d\xb9\x47\x7d\xdf\x51\xfd\xb7\xd3\xa6\xb4\x99\x8a\x37\xa8\x0b\xfb\x4b\xe5\xad\xb7\x1e\x34\x58\xdd\x1d\xf5\x8e\x53\xec\xef\x0b\x37\xe1\xb1\x22\x29\x0b\x52\x83\x87\xab\xbe\x35\xba\x2d\x2b\x56\x3c\xab\xdd\x8f\xb7\xd5\x12\x16\x0f\x04\x29\xc7\xcd\xa3\xdc\xb1\x05\x98\x5a\xd8\x20\x82\x11\x89\x7d\xcc\x7c\x69\xaf\x8a\x7a\xca\x06\x2e\xcc\x75\x1a\x66\xbf\x3c\xba\xcb\xb0\x6a\x52\x7e\xd5\xe0\x64\xe5\x2c\x52\x2a\xf4\x84\x6b\xf6\x61\x92\x99\x8c\x4b\xe1\xd2\x27\xd2\x83\x60\x0a\x08\xa6\x53\x22\x06\x2e\xdc\xa8\xaf\x79\xf0\xbc\xf9\xd8\xea\x2b\xc2\x4d\x37\xb7\x91\x1e\x53\xf9\xce\xef\x1f\x1d\x8b\x5a\xd1\x4d\x00\xa1\xe8\xcb\xb6\x63\xad\x39\xf1\xb3\x6d\xea\x3a\x2d\xa5\xad\x96\xf9\x52\xbf\xd1\x5d\xae\x90\x46\x14\xd4\x8c\x3e\xaf\x3d\x12\xfb\x35\x2b\x75\xad\xcc\x7b\xef\xa2\x40\xe1\x11\x62\xa1\x2e\xda\xbe\x09\x28\x5b\xf5\x49\xb1\x08\xe1\xe2\xeb\x77\x2a\x48\x3a\x71\x1b\x51\xc8\x88\xfe\xed\xf4\x5b\x93\x6e\x4f\x20\x08\xe6\x57\xbc\x6c\x40\x77\xeb\x81\x2b\xad\x86\xe4\x37\x7f\x63\x8d\x49\x29\xee\xef\x4f\xee\x9c\x81\xdc\xa0\xdd\x5a\xb2\xbb\x4a\x5c\x22\x52\xee\xf3\xb9\x99\x9b\xdb\x84\xfd\x83\xd8\x3f\x30\xfb\x87\xf7\x13\xa0\xbd\xc5\xe3\x1e\x60\x76\xe0\xc8\x18\xa3\xba\x23\x51\xcd\x20\x05\x3e\xfe\x63\xf1\xc8\x54\x4f\x0f\xc8\x20\xc0\x8e\x74\xd3\x7d\x29\x4a\x3c\xff\x54\xaf\x3f\xfb\xef\x43\xc7\x20\x9e\xaf\xe3\x80\xb9\x7a\x1c\x46\x0a\xbb\xb0\xa3\x24\xf1\x40\x32\xf2\x27\x93\x92\x52\x36\x70\x90\xd2\x6c\xbe\xd0\x9f\x7e\x52\x5f\x70\x5e\x57\xc4\xf8\xec\xe7\xde\x4a\x57\x64\x81\x5b\xa2\xd1\xe6\xa6\xb6\x4e\xf3\xb2\xfd\xd7\xb5\x1d\xe4\x98\x8a\xab\xbe\xf0\xe0\xd1\xf8\x22\x76\x78\xad\x08\xe6\xc0\xe1\x86\xc7\xb5\x8b\x07\xbc\x4f\x43\xac\xf3\x2e\x44\xd5\x89\xd6\x22\xda\x49\xdf\xd2\xba\xe8\x51\xe1\xae\xf7\xef\x88\xae\x61\xf1\x13\xf4\xf6\xaa\x13\x71\xe9\x23\x89\x2c\x96\x34\x97\x1f\x72\x3c\x0d\xe8\xb7\x8a\xa7\x54\x7b\xcc\x7e\xed\x5a\x9d\x9d\xcf\x99\xdd\xde\xe9\xce\x8f\x9c\x64\xda\x5f\x55\x58\x91\x21\x83\xef\xec\x67\x0c\x85\x21\x8b\x12\x8f\x16\x40\xa1\x58\xfe\x40\x41\x20\x29\xc2\x19\xdd\x73\xe7\x81\x14\xe1\x86\x31\x08\xe1\xc1\xb1\x9a\x6a\xd8\x98\x38\x0a\xe1\xf2\xa5\xe0\xb4\x4c\x6f\xff\x6d\x9d\xe9\xe9\x2f\xa0\xfc\x96\xad\x84\xdd\x3b\x70\x2c\xb3\x82\x5a\x51\x81\x95\xf3\x9f\x5e\x63\x34\x73\x2a\xd4\xaa\xaa\x33\xb3\xc8\x38\x52\xd2\xd0\xcf\x53\x55\x71\xee\xca\x13\xea\x7c\x02\xad\x46\xb5\x09\x7f\xbd\x2f\x2d\xa8\x49\x84\x47\x5d\xe2\x9c\x6a\x89\x33\xe7\x6f\x92\xd9\xf3\x35\x8b\xdb\xb2\xe7\xcc\x5f\x9e\x4b\x03\x95\x66\x75\xc5\x27\xf5\x49\x95\x88\x73\x21\x82\x7a\xec\x46\x70\x5a\xa7\xe1\x33\xc9\xab\xca\x89\x22\x73\x95\x21\x3c\xac\x54\x0a\x55\x59\xdd\xbd\xd7\x88\x79\x51\x96\x1a\xd5\xf7\xaa\x91\xf3\xc6\xc1\xd1\x18\xb1\x52\x27\x7e\x4c\x59\xcd\xde\xf5\x18\x72\x84\xf1\x03\x89\xff\x36\x33\xc8\x9b\x46\xa2\x31\x4e\x3c\x65\x80\x21\xc3\x61\x78\x95\xd1\x67\x5e\xbe\x04\x07\xb2\xd6\xd2\x61\xea\xfd\x42\xc1\x27\xf5\xb3\x7e\xff\x4a\x5a\x6f\x81\xc8\xfc\x23\xb3\xe0\xc3\x2a\x31\xec\xe5\xb2\x5f\xff\x74\x1e\xc1\xa7\x79\x54\xed\xca\x01\x51\xf6\xf6\x5b\x95\x45\x1f\x71\xa8\x6b\x31\xea\xba\xb1\xf8\xe4\x40\x7e\xc5\x82\x61\x49\x68\x88\xff\x31\xf7\x47\x54\x9c\xd3\x1a\x8d\xcb\xd2\x70\xc9\x1d\x23\xe3\xd5\x20\x76\x83\xb8\x3e\x91\x9c\xd9\xfc\xc5\x5b\xc6\x1b\xa1\x82\x35\xa8\xf0\xa4\xef\x03\x00\xb3\x26\xe2\x8e\x12\x98\x3e\xc0\x35\xfd\xd4\x82\xb3\x51\x15\x1e\x94\x2b\x55\x4a\xeb\x9e\x94\xc4\xff\xf1\x86\xf4\x8b\x25\x20\xe0\x04\x53\xdc\x17\x96\x21\x19\x3f\xc7\x61\x75\xa9\x7b\xb7\x4c\x99\x6b\x2c\x77\x7d\x41\x5c\x99\x68\x66\xfe\xdf\x8c\xc4\x17\xda\xe2\x8d\x58\xc3\x26\xdf\x71\xab\xec\x7a\x2e\x5b\xb4\x66\xcd\xf2\x8f\x2d\x5a\x05\x5d\xcf\x15\xe9\xbc\x30\xf1\x6a\x51\x89\x71\xb4\x60\xc3\xeb\xda\x37\x84\x61\x90\xc5\x39\x59\x13\x65\x8a\xc4\xa0\x62\x34\xf5\xb0\xd9\xa3\xe3\x00\x56\x77\x68\x6a\x64\x71\x07\x22\x97\xd5\xea\x85\x9e\xf0\x23\x8b\x87\xe1\x0a\x06\xd0\xbd\xbf\x7b\xd7\x00\xb4\x81\xb1\xbc\x12\x29\xbc\xe7\xb0\xc1\xe5\x95\xba\x3a\xf1\x45\x98\xff\xe0\x08\xf9\x95\x4b\x94\x78\x4c\xe1\xc0\xfe\xdf\xf8\xc9\x46\xda\x59\x0a\xbc\x53\x15\x12\xcb\xb7\xa4\xd7\xa6\xca\xeb\x3e\x6d\x10\xac\xd6\xd8\xef\xb6\xdd\x05\x51\x12\x20\xdb\x9a\xf0\x2e\xdc\x09\x72\x03\x2d\x63\xa0\x39\xaf\xc9\xa6\xa7\x1d\x42\xc0\x59\xd9\xb1\xca\x0c\x5e\x96\xb0\xe8\xe6\x81\x92\xcb\x25\x83\xcc\x41\xa7\xbc\x21\x21\x67\xfb\xce\xad\x23\x52\x3d\x4b\x99\x9e\x0d\x9c\xd0\xe2\xaa\xda\x0f\xed\x6d\x83\xfd\x57\x14\xdc\xed\x93\xf6\x38\xf0\x8e\x3f\xf1\xd6\x30\x54\x78\xc9\xc4\x3e\x77\xee\x3a\x13\x06\xcb\x84\xb2\x92\xce\x5c\xb9\xcf\x9c\xe6\x13\x9f\xc6\x9c\xf1\x6b\xbb\xf4\x95\x4c\x04\x29\x82\xbe\xcd\x26\x3d\x68\xe4\x15\xf8\xb1\x51\x17\x9b\xac\x36\xcb\x09\x3c\xd6\xd0\xb4\x81\xaf\x3e\xa9\xaf\x00\x0a\x44\x33\x15\xca\x73\x43\x77\x18\x29\x0e\x0d\xa2\x60\x15\x57\x6a\x47\xef\x1c\x87\x86\xfb\xe5\x0a\xa8\x23\x49\x27\x8b\x42\x4f\xb8\x60\xc4\x39\xc6\x07\x5f\x1f\x30\x41\x63\xc1\xb6\xfc\xf8\x05\x17\x19\x5f\x4e\x54\xbd\x0a\x13\xf4\x94\xa2\x9b\xcf\xbd\xa3\x19\xb8\xe5\xf6\x61\xc3\x52\x47\x6f\xea\x26\x51\x2a\xa7\x5f\x9a\x91\xae\x89\x5d\xde\x54\x39\xc8\x95\x5b\x92\x65\x2a\x43\x65\xb9\xe0\x2d\x54\xb8\xf0\x40\x28\xc7\xfb\xab\x86\x8d\xc2\xd0\xff\xc0\xb5\xe0\x4b\xf6\x0c\xe4\x3f\xb0\x54\x59\x62\xd9\x51\xf8\x40\x99\x67\xe7\x91\x73\x8d\x02\x8f\xa7\x15\x96\xb2\xb7\x1a\x5a\x16\xd7\x07\xd4\x53\x06\xa4\xf9\xd3\x7b\xcf\x47\x80\x2f\x26\x1f\xa5\xed\xd0\x38\x15\x84\x64\x69\x28\xab\xb1\xcc\xc7\xb3\xb1\xe9\xd4\xbc\xce\x28\x3d\x7b\xdf\x10\x17\xf5\x58\xd9\x25\x4e\x9c\x30\x0e\x41\x15\x7c\x51\x50\xda\x2f\xff\xc8\x87\xfb\x75\x3e\xef\xd0\x22\xb5\x29\x9a\x51\x1c\x38\x19\xf3\x1f\x59\x82\xb5\xbb\x63\x0b\x56\x94\x01\xfb\xe4\x68\xe5\x56\x1d\x4d\x56\xd8\x02\x1c\xfa\x05\x86\x1a\x49\x74\x82\xa5\x1b\xb1\x9a\x0b\x9f\x3e\x48\xfe\xf1\x16\x11\xb5\xc0\xa9\xc2\x60\x08\x4f\x0c\x68\x9f\xe5\x04\x8a\xa7\xf6\xe5\x67\x4d\xe5\x92\x78\x00\x1d\x0e\xcc\x48\x02\xa9\xef\x35\x50\xc5\x78\x24\x34\xbc\x5e\x78\xb9\xac\xee\x91\x6c\xff\x16\xfd\xf7\x9a\xcc\xf7\x71\xeb\xe0\x0b\x2f\xb6\x71\x7e\x7d\x41\xac\x44\xaf\x69\xda\x01\x73\x9f\x97\x1c\x69\xc0\x26\xff\xfb\x96\x57\xd1\xd6\x6a\xd5\xea\x3e\xaf\xc1\xfa\x0f\x93\xf7\x47\x0f\xa9\x82\xee\x8f\x4a\xb4\xff\xf3\x90\xce\x0e\x88\x65\x05\x5e\xa2\x80\x7c\xb1\x21\x3d\xe8\x49\xfb\x39\x20\x2b\x85\x0f\x8e\xd0\xd5\x06\x09\xfc\x0a\x17\x30\x3a\x52\xb0\xba\xb3\xfd\xe1\xb8\x1a\xaa\xc2\x22\x66\x0f\xf4\x9a\x9c\x17\x2a\xe2\x15\xc9\x3c\xd7\x87\x9e\xda\xa7\x4d\x22\x00\xaa\x7c\xcd\xfe\x54\xd0\x29\x11\xbf\xd0\x13\xbe\xf1\xec\x99\x88\xd1\x0d\x3f\x98\x3b\xf8\x16\xe2\xc6\xd4\x94\xa4\x76\xf4\x1f\xbe\xb8\x51\xbb\xfa\x00\x13\x8a\xda\xed\xe6\xe8\xb9\xcf\xbf\x39\x12\x61\x00\x02\xc1\x3c\xd9\x74\xcd\xfc\xe0\x80\x56\x70\x10\x41\x7b\x0f\xe6\xe6\x61\xc6\x5d\x0b\x0d\x1f\xe2\xaa\x8e\x86\xbc\x6b\x1f\xc0\x14\x17\x97\x49\x05\xd2\x81\xcc\xa0\x37\x4c\x5b\x7f\xe2\xc7\xb9\x69\x76\xd6\xb2\xf3\x8c\xb4\x8e\x0a\x37\x7d\xb2\x73\x1f\x7d\x54\xbe\xd3\x4f\x30\xd7\xf6\x12\xe5\xb9\xdc\xad\xdd\x5a\x42\xc4\xc1\xb6\xe9\x4f\xc9\x0e\x71\xa1\xc7\xa5\x7d\xac\xd6\x56\x0f\x0c\x99\xf2\x61\x6d\xd7\xd4\x57\xe8\x09\xf7\x6e\x47\x78\x57\x12\x58\x81\x17\x44\x3b\xe3\x9f\x5e\x43\xd4\x33\x29\x30\x5c\x8b\x43\xf8\xfa\x41\xe9\xf4\xa1\x0e\xbc\x17\x2b\xe5\xa9\x9e\x79\x6e\x75\xfa\x87\x68\x0d\xe4\x61\x3d\x0f\x90\x00\xca\x2d\xe6\xb9\x97\xce\x46\x50\x00\xd6\x8b\x41\x2b\x1d\x0d\xa3\x2d\x52\xe1\x3e\x97\x33\x9b\xee\x7a\xba\x9d\xe3\x59\xc4\xa1\xbe\x4f\x52\xcd\x8c\xec\xcf\x14\x27\x79\x25\x73\x6d\x8a\xbd\x4d\x0f\x8e\x6c\xe3\x6d\x11\x6d\xd8\x9c\x9b\xe4\xa2\x0e\xb5\x90\xda\x25\xd9\xbf\xdd\x29\x73\xd8\x62\xa0\xa2\x51\xe6\xd5\xe7\x24\x7e\x2a\x4a\x11\xa1\x4f\xf4\x54\x3a\x3d\xe9\x25\xf5\x38\x1b\x33\xdc\xa5\x8e\xe9\xfd\xee\x51\xd2\x80\x36\x67\xf6\xf2\x7b\x62\x51\x32\xe2\x80\x9e\x4d\xd8\x69\x88\xa1\xd4\xa9\xb0\xa2\xb5\x03\x0f\xef\x35\xf2\xa7\x5d\x1a\xf8\x42\xc2\x2e\x76\x1b\x47\x2f\x4a\x20\x63\x79\xdf\x83\x3b\x46\x22\x50\x9b\x44\xb4\x4b\x85\xb5\xb5\x68\x84\xd5\x57\x77\xb8\x72\xd9\xfe\xe7\x07\x2f\x34\x02\x90\xc7\x3c\x5f\xfa\xac\x1b\xc9\x56\x03\xad\x96\x43\x64\x76\x7b\xe3\xc9\x24\x77\x14\xc0\x14\x4e\xea\x86\x3f\xdf\x2e\x27\xa9\xf3\x81\xf4\xb0\xfa\x29\x4c\x17\xa3\x25\x2a\x65\x12\x3f\x31\x58\xce\xcf\x24\x08\xc0\xf3\x05\x87\xd0\x9d\xdb\xb7\xe4\x4c\xa4\x32\x01\x0d\xaa\x3f\xbe\x7a\x9e\x79\xbe\x54\x27\x42\x2b\xb0\x3c\xb8\xd8\x90\x99\x74\x3c\x1a\x8f\x23\x32\x8b\xf1\x6d\x2c\x82\x72\x59\xf5\xfd\x32\xb3\xdf\x4c\x92\x5c\xf0\x23\x0b\xe7\xbf\x61\x4e\xd3\x63\x55\x7f\x39\x62\xfd\xa2\x61\xf3\x4a\x0a\x33\xe3\xa9\xd4\xf5\x93\xd1\x68\x5d\xaa\xc4\x01\x1c\x6e\x01\x96\x75\x99\x1f\x7d\xf5\xff\x7a\x1a\xeb\x75\xf8\x15\xa9\x64\x72\xdf\xd3\x4a\xa2\x46\xaa\xf1\x9b\x38\xbf\x97\xa6\x9a\xe9\x1e\x6d\x50\xaf\xc0\xdc\x82\x43\x9a\xd3\xb1\x84\xe1\xc2\x23\x88\x40\xed\x72\xab\x6a\x4b\x15\x91\xfc\xd6\x11\x7a\xc6\x58\x8c\x6e\x5c\x3c\x63\xdc\xb7\x7f\x14\xda\x3e\x36\xb3\x7c\x85\x8b\xc9\x6e\x59\x9b\x74\xba\x1a\x80\xe3\xd6\x79\xf2\xb3\x4b\x0c\x9f\xb4\x28\x26\xfa\xda\xaa\xfd\x1f\x1f\x9e\x64\x24\x35\x8e\x4d\x2c\x8b\xb9\x2c\x25\xe4\x7e\xf7\x03\x3a\x79\x48\xd7\x29\xd1\xe7\xdf\x76\x67\x7a\x9f\xba\x44\x28\x1c\x69\xdb\x3e\x7d\xc4\xa0\x48\x30\x51\xb8\x5e\x4d\x3b\xe4\x4b\x1a\xf7\x10\x96\xd1\x87\x99\x64\x29\x70\x20\xe2\xfd\xea\xc1\x74\xd6\x57\x77\x88\x2b\xcb\xbb\x35\xcb\x26\x18\x07\x85\xd5\x8a\x81\xf0\x74\x03\x3b\xf3\x9b\xc5\x3a\xc2\xfa\x22\xca\x2b\xc0\x59\xed\x9b\xf9\x64\x7f\x75\x77\xc3\x1c\x72\xb6\xe1\xe3\x00\x8c\x1e\x35\xfd\x0f\x8f\xed\x4c\x2f\x17\x9f\xea\x05\x8e\xc3\x1a\x24\xad\x89\x30\xd6\xc1\x62\x18\x9d\xf0\xf4\xbf\x9e\xad\xc4\x19\x98\xe3\x50\xe4\xad\x95\xc9\x8f\xd6\xef\x75\xde\xec\x42\x4d\xba\x7a\x03\xeb\x6e\x31\xe2\x4e\x32\x0a\xee\xe6\xe1\x36\x61\xb4\x2f\xa8\xaf\x64\x35\x33\xaf\x21\xec\x63\x3c\xe9\xec\x09\xa7\xad\x94\x77\x97\x4f\x1d\xda\x60\x9e\x42\xb5\xe4\x3e\xf0\xa4\x82\x92\x53\x07\x06\xe0\xf9\x49\x2f\xca\x6e\xc9\x15\x0e\xf3\x7c\x05\x98\x0e\xef\x9f\xa4\x25\xdd\x25\x44\xa9\xc9\x6b\xa4\xdd\x59\x7e\xfa\x63\x78\x3c\x5f\x12\x00\x7b\x8b\xf6\xc6\xe3\x4e\x7a\x03\x3a\xa4\xcc\x3d\x24\x55\x37\xf0\x2e\x32\x40\x0c\x8a\x52\x88\xb0\xc6\xdc\x40\x62\x7c\xc6\xf6\x1b\xbe\x19\x5c\x54\xe1\x7d\xc8\x5b\xe2\xfc\xf7\xa5\x90\xe8\xa2\xa2\x20\x15\xd2\x7e\xd1\x9e\xb3\x07\x2b\x99\x52\x0f\x98\xf7\xb0\x56\x0f\xf4\x4f\x44\xa7\x09\x74\x4c\x4c\xb4\x4b\x38\x6b\x85\x7e\xb6\x26\xe7\xb6\x08\x4a\x25\x74\x20\x5f\x1f\x6c\x8e\x58\x89\xa3\xa7\x5d\x5f\x7f\x5a\xe2\x68\xae\xae\x05\x5e\xa5\x4a\x1b\x51\x55\x98\x54\xbe\x8f\x4f\xd4\xcb\x55\x41\x39\x69\xf6\xad\x43\x98\x3b\x55\xab\x13\xa1\xa2\xd4\x7d\x07\xf5\xb9\xf0\x2b\x94\x0b\x1a\x43\xfd\x72\x3f\x5d\x78\xae\xb1\x63\xd3\x6c\xa7\xf0\x96\xa7\xf5\xbe\x20\xd0\x9b\x89\x6e\xaf\x1f\x75\xc7\xa3\x09\xd7\x87\xbe\x4f\x66\xca\xdd\x98\xde\xec\x33\x21\x3f\x21\xac\x1d\x37\x31\x2d\x14\x5a\x2b\x20\x4c\xb2\xd2\x90\xdf\xa8\x0b\x5e\xa2\x5e\x1c\x8e\x5f\x7a\xfa\x3c\x54\x8c\x48\xc7\x73\x33\x28\xbc\xa4\x49\x48\x36\xa6\xa1\x64\x3e\x67\xa8\xc6\x55\x58\xcd\xa3\x4e\x29\xb6\x5a\xff\x1b\x42\x17\x95\x05\xb1\x83\x98\xfe\xff\xde\x83\x88\x60\x41\x9a\x35\x52\x85\x02\xe2\x0f\xf7\x0f\x47\xa1\x05\x64\x1c\x7b\x06\xb2\xdf\x35\x98\x60\x0e\x2d\xeb\xbe\x6c\xee\xff\x86\x32\xe6\xaf\xe4\xc2\x9e\xda\xd6\x96\xcc\xf7\x1c\xd6\x35\x49\x80\xf2\xa6\xfc\x96\xc3\xfa\x42\x2e\xf3\x0a\xd8\xb6\x66\x1e\x3a\x80\x0c\xd7\xb9\xf0\x2b\x8a\x19\x37\x90\xbf\x6d\xbc\xd2\xb4\x22\x45\x47\x5a\xac\xdc\x7e\x2d\x4a\x16\x3c\x87\xd4\x48\x91\xc0\x5d\xf9\xd0\xb3\xba\x95\x58\xf7\x5a\x56\x85\x13\x8d\x91\x8e\x3f\x7e\xda\xcd\x9a\xd5\xdb\x84\x6a\xee\xcd\x57\xc6\x20\x08\x5d\x99\xb8\xac\x3f\x29\x40\x76\x1e\x49\x8d\xaf\xa8\xe7\x73\x21\x5b\xc5\x3f\xbf\x54\x2b\x31\x40\x45\x30\xb8\x71\xb6\x5a\x56\x01\x9a\xc9\xa0\x6d\xa8\xc6\xee\x3f\xbb\xd6\x18\x01\x97\x4a\xd2\x3a\x51\x09\x1b\xf6\x0c\x64\xbe\x99\x3f\xc7\xdc\x2c\x45\x52\x8c\x59\x58\x03\x99\x99\xaf\x63\xe6\x0e\x60\x29\xa3\x07\xbc\xf1\xc5\x74\xcc\x9b\x73\xc9\xcc\x6e\xd5\x94\x7d\x64\x8d\x21\x39\xce\x5d\xea\x57\xa8\x13\x6d\x41\x85\xd8\x5a\xd9\x1b\x1b\x44\x7b\xd1\x1f\xbb\xca\x47\x62\x1c\xb1\x8c\x1c\x04\xc0\x25\x58\x84\x97\x16\x6c\x22\xb5\xbd\x0e\x6c\x34\x54\xc1\x01\xeb\x21\x11\x5b\xd9\x91\x2b\xd3\x8f\x36\xbb\xb3\x53\x2a\x1d\x0c\x64\xde\x76\x0d\xc6\x72\xe0\x51\x69\xc4\x89\x05\x99\x4a\x59\xd4\xa4\x49\xe6\x02\x90\x98\x3c\x92\xa2\xed\xc4\x34\xf0\xcf\x21\x92\x4d\x95\xba\xbd\xd8\x09\xf0\xd2\xa3\xe9\x8f\x2c\x13\xaf\xbd\x35\x97\x79\xfe\x3d\x83\x3c\xc5\xec\xc4\xba\x2f\x3b\x78\x77\xfa\x96\xa5\x76\x59\x9a\x01\x67\xf6\x1b\xbc\x96\x3a\x23\x2e\x8f\x47\xa0\xbf\x5a\x93\xfe\xb5\x79\xf3\x66\x29\x48\xc8\x57\xea\xa3\x70\x5b\x32\xaa\xcb\x94\x46\xff\x0b\x2b\xda\x75\x57\xe1\xbf\x82\xfe\x67\x78\xe1\x30\xb9\xd7\x16\x73\xc7\xe6\x0d\xaf\x8a\x2e\xcd\xdc\x9f\x0e\x99\xb0\xf8\xa6\x22\xc8\xae\x58\x69\xa0\x42\x99\x48\xe4\x7e\x5f\x37\xd4\x80\x03\x97\x95\xb8\xa8\xc5\xcd\xd6\x21\x83\xd2\x7b\x49\xd6\xc1\xa9\x9b\x7d\xfb\xbd\x86\xd8\x23\xf3\xea\xd4\x51\xf8\xf6\x2f\x4e\x4b\x5a\x59\xc4\x6b\x4b\x10\x2f\x6b\xe8\x7e\x0a\x11\x3c\x90\x36\xf8\x99\x33\xc4\x38\x14\x14\x38\x40\x91\xac\x04\x4b\x9d\x1f\x82\xbc\xdb\x81\x91\x98\x78\x99\x7f\x67\x69\x7a\x09\x9a\xc4\x53\x3b\x2f\xf7\xb7\x07\x14\x1b\x59\x10\xd7\x4b\x10\x20\xff\xb1\xd9\xd0\xa8\x73\xcb\x5c\x2b\x25\xff\xcf\xce\x24\x64\x94\x78\x14\xf5\x4f\xdf\xaf\x55\x1e\x6a\xa0\x60\x90\xb9\x70\x90\x9e\xe9\x83\x9e\xd9\xe0\xc3\xc8\x67\x9b\x15\x7a\xc2\xb5\xbb\xc7\xa0\xdd\x2c\xd1\x8d\x09\xc0\xfb\xd7\xda\x11\xb4\x01\x11\x79\xd8\xc2\x0b\x8c\xb7\xc8\x80\x5b\x65\xb6\xc5\x56\x14\xdb\xe0\x75\x45\x85\x1c\xbc\x40\x91\xd2\xae\xa4\x6e\x4b\x9a\x1b\x8f\xb9\x2e\x69\xe1\xd6\x01\xa8\x0d\x2d\xdc\x1f\x6f\x94\xb8\x76\x05\x95\x2c\x92\x58\x56\x21\xf7\xb9\xfb\x75\xdb\x18\x0c\xbe\xfa\x9f\x19\x81\x36\x6c\xb3\xc8\xa5\xdb\x6d\x7d\x01\x82\xd8\x11\x87\x80\x0b\x43\xf4\xf3\x5f\x7e\xcf\x40\x84\x52\xe2\x36\x2b\xcc\x91\x9e\x8e\xb3\x51\x21\x3b\x6b\x66\x07\x78\x88\x65\x1f\x99\xd4\x66\x0e\xef\x90\xba\x32\xa2\x09\xe9\x13\x53\xcd\x6d\xea\xcb\xc4\xa2\x1d\x0e\x7a\xb5\x1a\x5a\x52\x52\x86\x61\x51\xe6\xdf\x86\x29\x07\x40\x6e\x25\x0b\xbf\xe1\x6e\xd4\x5e\x70\x28\x89\x9d\xaf\x06\x3d\x37\x16\xa5\x47\xdc\x61\x25\xa5\x6f\x05\xf3\xbe\xb3\x5e\x90\x8a\x1a\xcb\x58\xb9\x7d\xa4\x39\x69\x7c\x42\x6b\x72\xfc\x36\xf3\xe6\xcc\xe7\x0c\x9f\xd4\xe8\xbd\x73\xa7\xaa\x31\x74\x07\xce\x38\x0b\x53\xd6\x1c\x99\x2f\x86\xaf\x9f\x50\x04\x5f\x49\xfa\x4d\x6a\x8c\xdc\xf3\x7b\xf4\xb5\x67\x11\x97\xd8\xac\x3d\x0b\xcd\x0f\xde\x66\xa0\xcf\x62\xa4\x63\x66\x90\x91\xa5\x78\x3e\x71\x6d\x5e\x2a\xc9\x1c\xe6\xbb\x8f\x8c\x45\xd9\x6b\x94\x10\x41\x69\xa5\x1e\xf5\x85\xc9\x67\x62\x12\x2a\xac\xf2\xf0\xd7\xf1\x61\x86\xb9\x25\xa8\xcd\xa0\x33\x8e\x85\xd9\x5e\x4c\x97\x0d\x55\x41\x3c\x97\xb7\x88\xf0\xaa\xaa\xd1\x14\xe5\xda\x67\xad\x38\x0f\x5d\xf9\xc0\xd5\x6e\xeb\x96\x8f\x5b\x75\x36\x7a\xd2\x5e\xaa\x9c\xb3\x21\x95\xee\xcf\x8f\x57\x7b\x16\x00\xa2\x69\xd5\x40\xc0\xc5\x3d\x34\xd1\x28\x93\x5c\xab\x25\x3d\x80\x93\x8a\x30\xdb\x2c\x21\x80\x05\x71\x1a\xe0\x3e\x34\x90\xf7\x9e\x44\x70\x10\xe6\x14\xa9\x40\x32\x9a\xb9\xa1\xcb\xd2\x0b\x3f\x77\x6e\x7c\x2f\xdc\xbc\xd9\xd8\x08\xcc\x62\x4e\x2b\xba\x1a\xe4\x97\x7e\xec\x5a\x6d\x65\xdf\x9e\x60\x65\x4a\x5d\xf8\x2c\x3a\x8e\xb4\x0a\xcb\x9c\x3b\x1a\xcb\x7c\xb8\x3e\x43\xef\x2b\x7b\xe3\x46\x7d\x50\xe7\xcc\xec\x2e\x24\x22\xe6\x0b\x8e\x19\x2a\xc4\x2e\xd0\x61\x63\xb5\xf5\x8d\x0f\x9f\x8b\x3e\x2b\x70\x7d\x21\x1b\xad\xba\x87\x71\xdf\x0e\xac\x54\xe9\xf9\xcc\x05\xcd\xe3\xcc\x8a\xdd\x63\xcd\xca\xb4\x1c\x28\x40\x43\xf8\x8e\x73\x36\xaa\x3c\x89\x0b\xed\x5d\x95\x32\xcd\x9f\x9c\xc4\xaa\x9a\xb4\x17\xbd\x7a\xf5\x40\x7e\x79\xff\x48\x7c\x36\x40\xce\x4e\x56\xc0\xf7\x9e\x8f\xd2\x31\x9f\x0b\x97\x9e\x02\x21\xbe\x6a\x46\x2c\x73\x22\x98\x5b\x8d\x3e\xe6\x96\xf5\xa3\x8c\x22\xcc\x53\xf4\xd6\x3a\xca\x53\x6b\xcc\x96\xa8\x89\x5b\x46\x9f\x19\xd7\x63\xbe\x43\x01\x25\x97\xfb\xda\xfd\xb2\x8a\xdc\xc0\x5c\xdd\xe8\x0c\x7f\xb5\x09\x67\x8e\x25\x27\xa0\xd2\x56\x61\x20\x73\xee\x20\x23\xc2\x51\xe1\x13\x16\x93\xe9\x9a\x6f\x98\x20\x7f\x69\xc5\x3c\x90\x3b\x67\x4f\x3a\x83\xe9\x95\xd2\xf7\xe9\x7e\x6c\x9e\x5c\x8a\x66\x13\x24\x28\x57\x20\x78\x14\x1e\xc2\x36\x58\x0e\x25\xe0\x04\x19\xfe\x79\x3b\x2a\x6b\xa4\x8f\x29\xf0\x69\xb2\x57\x3d\x61\x60\x2f\xb9\xc3\x7c\x66\x69\x22\x79\x1f\x22\xb9\xd6\x98\x52\xa1\x06\x66\x45\x9f\xbe\x33\xe6\xc3\x35\xbd\x44\xa2\x97\x55\xd9\xad\x93\xeb\x81\xcc\x43\x6f\x21\x58\x2d\xfa\x0e\xd6\x49\x19\x5e\x41\x87\x80\x82\x64\x1b\xb5\x5d\x69\xc1\x93\xbf\xf1\x74\x7d\xdc\x4a\xd4\x8e\x65\x07\x55\x44\x9a\xae\x14\x68\x3c\x1e\xc4\x4e\x79\xb0\xf3\x7f\xbd\x05\x71\x4d\x6b\x6d\x1b\x63\xe7\x75\xe9\x3e\x4d\x8d\xd4\xeb\x0e\xf5\x2b\x5c\xd4\xa9\x94\xf2\x8f\xd3\x9c\xcf\xac\x1b\x8e\x31\xaf\x36\x83\x5c\xfb\xf8\xe1\x91\x78\x06\x99\xec\x82\x0f\xaa\xb6\x6c\x85\x0b\xc1\x21\x01\x69\xdc\x99\x7e\xbf\x1d\xb3\xe6\x77\x4b\x12\xc7\x8b\x07\x91\x40\xbc\x4b\x7c\xee\xe8\xb4\x2e\x1c\x7a\x31\xe2\x8f\x93\x22\xc1\xba\x90\xa3\xdf\xbd\xc0\x78\x78\xcb\xaa\x30\xee\x32\x03\x3f\xf8\x3c\x52\x19\x91\x96\x9f\x85\x9e\x70\xe6\xcd\xe9\x04\xa2\xbb\xbb\x63\xee\x1c\xb9\xe1\x76\x2d\x3c\xdf\xb8\x6c\x6d\x2a\xe0\x7a\x60\x6e\x39\xb1\x00\xf8\x76\x3f\x16\xf8\x42\xca\x7e\x7d\xa8\x77\xee\x39\xe8\x89\xc3\x23\x6b\x4c\x4b\x96\x4a\x85\x94\x52\xcd\xf1\xfd\x77\x24\xe9\xd3\xac\x4b\x66\x83\xce\xec\xd6\xb6\x99\x54\x83\x0a\x3f\xf6\x6c\xcb\x59\xf6\x58\xb3\x16\xf1\x34\x34\xed\x53\x87\xa7\x99\x09\x75\x2d\x70\x19\x4c\xbd\x4d\xba\xe5\x67\xde\x31\x35\xa4\xc1\x3f\x4b\x95\x6a\x61\xee\x99\xf4\xf9\xed\x27\xd2\x2d\x3d\x36\xa8\xbf\x36\x39\x00\x73\x67\xc1\x44\xfb\xba\xb3\x50\xef\xc0\x91\xf6\xa3\x3d\x03\xd9\x57\x50\x43\x23\xa8\x57\x28\x69\x10\x47\x9a\x10\x2e\x1d\xdb\x96\xfc\x3b\xb4\x4f\x66\x40\x7b\x6f\xc2\x4a\x92\x8e\x47\x2c\x40\xc5\xdf\x79\x9f\xc1\x30\xf5\x61\x60\x07\xc2\x4c\xb0\xef\x7e\x3b\x63\x44\x3a\xd1\x91\xa9\xf2\xb4\x95\x4a\x25\x2f\x3a\xf8\x96\xc4\xfd\xe6\xba\xef\xd6\x43\xfb\x96\xd2\x44\xc8\xd5\xd6\x8e\x33\xf3\x7b\x2b\xf0\xbc\x98\x25\x3c\xed\x29\xad\xbf\x81\x38\x5e\x03\xf9\x65\x5d\x72\x14\xd0\x24\x0a\x85\x1e\x5e\xb4\x34\x65\x37\x81\x69\x59\x4f\x0f\xc5\xda\x0a\xd1\xea\x6d\x33\x04\x5e\x2a\x44\xa4\x06\x39\xb9\x83\x27\x74\xd1\x2a\xcb\x77\x09\x72\x9c\x8c\x18\xa0\x5e\x85\xd8\xbc\xa9\x84\x3d\xc3\xa3\x06\x4f\xa8\x24\x88\x5b\x2d\x05\xc2\x4f\x72\xb0\xdc\x4d\xfb\x87\xe8\x55\x2e\xf4\x84\xf3\x8f\xa6\x8b\x9b\x26\x34\xc6\x54\x5e\x70\xe3\x51\xa4\x08\xc1\x01\x70\x72\xf4\xdd\xf3\x8c\x57\x58\xa1\xe6\xe4\x6c\x86\x6b\x34\xf0\x98\x5f\xb1\x05\x89\xe7\xf5\x27\x37\x1b\x89\x43\xa1\x4b\xd9\xfc\x15\x4c\x11\xae\x00\xc6\x5b\x31\x34\xfa\x9e\x87\x65\x89\x03\xd0\x20\x97\xab\xa6\xe6\xaf\x76\xea\x45\x9f\x35\xcf\xaf\x14\x4a\x0e\x97\x11\x69\xe2\xbc\x61\x78\x94\x69\xb7\x0a\x3d\xe1\xf3\x47\x90\xf5\x2c\xf7\xdb\xfd\x97\x72\x53\x8d\x8c\xa9\x48\x7d\x9f\xb9\x6c\xba\x8f\xb4\x67\xb2\xbd\x43\x0c\xa0\x87\x60\x3c\x36\xf6\xbd\xe2\xc4\x58\x34\xd8\x13\xdc\x69\xe1\x19\xd8\xd5\x77\x9a\x64\x65\xea\xc7\x77\xcf\x9f\xa7\x21\xf1\x73\xd2\x70\x61\x7f\x66\xc7\xbe\x87\xf6\x01\xf5\xfc\x32\x21\x20\xbd\x91\x1f\xba\x73\x12\xae\xb2\xa3\x63\x6f\x25\xf6\x9b\xba\xdb\x70\x6f\xdf\x70\xed\x52\x9e\x28\xa5\xaf\xab\x1b\x00\x54\x90\xef\x56\xc8\xc3\x41\xcb\x4c\xf0\xa2\x2f\x88\x54\x36\x52\x76\x04\x6f\x18\x4d\xda\xde\xc0\xf3\x25\xb5\x3e\xda\x25\x9f\xdd\x6f\xc8\xd9\xe8\x1e\xe9\x9f\x0e\xc6\x2e\x81\xd1\x86\xae\xc4\xc1\x65\xfe\x73\x7a\x22\xc3\xac\xeb\xa3\xaf\xf7\x19\x64\xde\x22\x28\x73\x41\x53\x03\x56\xf8\xfe\x91\x67\xc5\x5f\xba\xa8\x6d\x85\x07\x72\x43\x6d\xc9\xee\xe8\x82\x0b\x3a\x77\xe4\x21\x63\xf2\xe0\x58\xbc\xc2\x1d\xe6\xd5\x62\xe6\xda\xdb\x93\xd3\xbb\x19\x39\xeb\x26\x09\xc1\x8b\x0b\x93\xb0\x37\x1f\x6a\xc5\x4f\x1d\x3b\x95\x86\x8a\xdc\xc1\x9f\x7b\x29\xbd\xb7\xc1\x85\xad\xa3\xd0\x13\x8e\x1f\x8f\x2c\x32\x04\xaf\x41\x3c\x7c\xee\xee\x76\x34\x02\x73\x83\x04\x95\xfc\xf8\x61\x7c\x25\x0b\x66\x43\x5b\xef\x7b\xa6\xbf\x11\x11\x55\xea\x77\xc4\x13\x81\xcb\xdf\x34\x5c\x0d\x29\x48\xd2\xa9\x76\xc8\xd0\x7d\x09\x83\x88\x99\xc5\x54\xb8\xfe\x11\xb3\xaa\xb5\x89\x93\xac\x44\xf6\xd2\x71\x08\x06\xe2\x14\x7a\xc2\x71\xfb\x50\xe8\x25\x3e\x71\x38\x54\xd7\xb7\x1d\x34\x90\x4e\x01\x6f\x25\xdf\x69\xc3\x89\xf4\x7f\xec\x9a\x5d\x98\x55\x98\xa9\x96\xef\x86\x25\x1a\x10\xe0\x5d\x1f\x30\xc7\x21\x82\x61\xc7\xd5\x03\x9a\xb7\x0d\x53\xc8\x51\xcf\x99\x80\x2b\xe2\xc6\x40\xb2\x5f\xbe\x83\xfd\x5b\x04\xcc\xff\xa3\x27\x38\xeb\x25\xc3\x65\x30\x56\x78\x4e\x44\xbb\xf2\x57\xdc\x94\x52\xd5\x6f\xc2\x45\xb0\xe3\x99\xe4\xc3\x49\x3f\x2d\xf4\x84\xdf\x5b\x28\x73\xe6\x25\x24\x88\x79\x48\xb9\x8f\x6d\xd7\x08\xbd\xbe\xe8\x28\x8c\x12\xe9\x30\xcf\x45\x74\x47\x79\x9a\x94\x3c\x79\x93\xd9\xd3\x11\x31\x4c\xe1\x4b\xf7\xa6\x27\x03\x8e\x92\x1d\xcc\x5e\x31\x08\x0b\x97\x04\x14\xb6\x54\x21\xaa\xe5\xa3\x67\xb8\xff\x44\x1b\x57\xad\xc1\xab\xb1\x41\x65\xf6\x86\x7b\x0c\x6d\xe6\x7a\x20\x5d\x85\x33\xe1\x76\x24\x4d\x2c\x38\xb1\xa9\x9a\xe8\x74\xcb\x90\x5d\x20\x76\x94\x99\x30\x8f\xc6\xe6\xd3\xb9\x1f\xcf\x33\x07\x22\x16\x77\x6d\x35\x3a\xfb\xd1\xc2\x64\x31\xe6\xcd\x8a\xce\x4e\x6e\xca\x31\x79\x2b\x53\xb7\x1c\x38\x25\xb5\x66\xbf\x5d\x3a\xc1\x88\x16\xae\x9b\xf2\x78\x1e\xc8\xcd\xdd\x84\x80\x8f\x24\x7a\xd6\xbd\x93\xe5\x3c\x7b\x11\x38\x47\xf6\x09\xc5\x1d\x62\x9e\x6c\xa6\xe7\x3f\x7f\xa7\x09\x34\xac\xd5\x64\x82\x17\x1f\x85\xd7\xb6\x1b\x46\xfa\x52\x43\xbe\x51\x4c\x54\x18\x9e\x7c\x6d\x9c\xf6\xdc\xeb\x6f\x1b\x62\x54\x07\x63\x2d\xe2\x12\x75\x15\x69\x3f\xf3\xbb\x71\xe6\x17\x6a\x32\x2f\x25\x79\x9e\xdf\xfa\x88\x0c\x83\x33\xe7\x17\x5a\x94\x88\x82\x74\x46\xda\x7d\x3f\x9a\xda\x14\x99\x03\x69\x4b\xf8\x97\x17\x0c\xa0\x35\x69\x42\x47\x70\x7a\x03\x42\xf1\x84\x8d\x49\x39\xed\x7a\x53\xcd\x9c\xef\xcb\x4f\x1b\x7e\xc0\x81\x57\x67\x96\x22\xe1\x66\x3f\x3f\x7e\x34\xce\x9c\x03\x3f\x69\x05\xe5\xfe\x17\xc1\x71\x1d\x52\x8b\xaa\x7f\xa8\x08\x7e\xfc\xbe\xa9\xcb\xce\xae\x0f\xd4\xc5\x91\x7b\xa8\x84\xfa\xd7\xd4\x92\xb2\x63\x03\x99\xdb\x90\x40\x4a\x80\x6d\x2e\x0f\xee\x6b\xa3\x21\x81\xf0\x18\x0b\x6a\x71\xfe\x75\xf5\xb5\x7a\x1e\x31\x6f\x2e\x80\x17\x5e\x1f\x95\x92\xa5\x71\xe2\xf6\x79\xf6\xe3\x33\x62\x71\x0a\x9f\x38\x2c\x21\x14\x4e\x0b\x65\xc3\xac\xd1\x52\x3b\x6e\xcf\x52\x7d\x7e\x3c\x9f\x36\xa8\x8b\x26\x29\xd9\x0b\x26\x4f\x44\xef\xd5\x27\xcc\xa1\x6d\xdd\xae\xdc\xa7\xf7\x21\x09\x08\x29\xae\x52\xe8\x09\xa7\x6d\x35\x5d\x83\xa5\x9e\x97\xab\x30\x2e\x99\xeb\xd7\x26\x00\x0d\x52\xa6\x29\xad\xb1\x45\x0b\x71\xbd\xe1\x59\x81\x54\x47\xdf\xf6\x8e\x8c\x32\xc4\xb2\x82\x58\x7d\x67\xf9\x82\xf4\xc5\x51\xe1\x81\x47\x2b\xdc\xb1\x55\xe0\xf8\xfe\x0a\x79\x41\x5e\x5d\x23\x02\x69\xaf\xe5\x2b\x0d\x64\x08\x5c\xaf\x53\x9f\xf9\x89\x84\xed\x87\x4e\x1a\x09\x01\x27\x56\x25\xb6\x7d\x1a\x37\x4d\x37\x5f\xa8\x44\x49\x22\x5a\x30\x1e\x7c\x09\x02\x32\x10\x99\xc2\x19\xe7\xe0\x2c\x15\x82\x39\x92\xf5\xcc\x9c\x93\x47\x04\x25\xc2\x9a\xb2\x74\x98\x36\xa5\xcd\xfe\x4b\xdd\x88\x0a\xdf\x7a\x27\xf2\xbc\xf3\x29\x48\x8b\x46\xff\xfc\xee\xae\xe4\x6a\x9a\x35\xa7\x3b\x3a\xff\xb7\xf4\x8f\xc2\xc4\xc8\x40\x08\xaa\x04\x2a\xfe\xe1\x80\x0e\xee\x5e\x93\xc1\x80\xa8\xfe\xae\x4e\x8b\xbb\x0b\x3d\xa1\x7f\x97\x9c\x1f\xd5\x08\x83\x26\xdf\x13\x3b\xcc\x71\x28\x77\x63\x11\x9c\xec\xc2\x93\x3a\x51\x69\x0a\xee\x96\x6d\xae\x9a\xad\x5f\xbb\xcb\xc4\xfc\x96\x59\xc2\x2d\xd8\x78\x71\x9a\xc3\xe0\x4e\xf5\x65\x18\x1e\x3c\x59\xe7\x42\x3e\x87\xc2\xe5\x4f\xa1\xde\x1b\x51\x2a\xab\xb4\xdf\x9f\xde\x25\x33\xe2\x04\x80\x0f\x27\xb7\xfe\x24\x42\x06\x51\x4f\xca\xce\x77\xcd\x9e\x6e\x5e\x0a\xb1\x5e\xdd\x29\x19\x44\x77\x6f\xd1\x5f\xca\x0b\xea\x75\x87\x51\xe8\x48\x85\xff\x39\x4c\x99\xdf\x52\x21\x69\x74\xa3\x1e\x93\x0f\xb1\x8e\x51\xd7\x8d\x41\x04\x8b\x1e\x50\x08\x04\xc1\x8a\x81\x4f\x62\xa5\xb0\x31\xef\x21\x24\x62\x10\xbb\x40\x8e\x7e\x24\x89\xb3\x51\x1c\x34\xfb\xce\x9b\x0e\x68\xb8\x30\x33\x59\x40\xe1\xda\x87\x47\x25\x91\x20\xc1\xa8\x44\x0f\x7a\xf1\x75\x7a\x19\x66\xce\x98\x3d\x1b\xe8\x33\xe7\x65\xcf\x35\xae\x63\x3d\x17\x95\x21\x71\xe6\xa5\xe8\x8c\x94\x05\xb3\x02\xc7\x0f\x24\xac\xa2\xfb\x2d\xd4\x99\x8c\x52\x13\x50\xd7\xc8\xad\xe9\x32\x2c\xa1\x44\x0b\xd1\x28\xc3\x85\x7a\x23\xba\x04\xfe\x94\xb4\x4d\xcb\xec\x7d\x4e\x7f\x92\x45\x1c\x07\xc7\xa0\x0f\xeb\x64\x63\x6a\x11\xb6\x6d\xf1\xe6\xa9\x4d\x73\x7e\x40\xcb\x54\xb5\x42\xd2\x2b\xd6\x39\xaf\xcd\x2c\x2a\x7a\xd5\xca\xee\x2b\x0c\x1f\x69\x17\x4c\x92\x0e\x73\xe1\xbf\x76\xa4\xc1\x74\xa4\x43\x35\x44\xcc\xcb\xef\xec\x31\x67\xa2\xdc\x04\x6e\xaf\x1b\x77\x26\x99\x72\x37\x60\xaa\x7e\xdd\x21\xef\xe8\x6e\x68\x17\xfc\xd3\xe2\xe4\x2b\x15\x38\x38\x12\x70\x03\x69\xc8\xdd\x20\x76\xe1\x9c\xbf\x24\x39\xd0\xb5\x22\xac\xd6\xa7\x3a\x0c\xf2\x2b\xf3\x03\xe2\x24\xc9\xe9\x82\x7d\xc9\x5f\x6f\x02\x92\xee\x8b\x77\x19\xea\x70\x82\x79\x3e\xb3\xe9\xf4\x0e\x94\x57\x4c\xea\xd2\xe7\x0a\x38\xae\x25\xe9\x95\x70\xf3\xe1\xe1\xe8\x4d\x33\xab\x02\xaf\x60\x7c\xc7\xf9\x28\xa6\x38\x49\xad\x95\x5e\x99\x97\xaf\xd5\xaf\x35\x16\xcc\xaa\x11\x39\x5f\xa1\x4b\x10\xd4\x29\x2a\xb8\x04\x0f\x3c\x29\xac\x64\xbf\xa4\xb7\xeb\x9c\x19\x9d\x9d\x9d\x85\x9e\xf0\x87\xaf\x63\x13\x84\x12\xb3\x40\x63\x38\xf3\xd7\xa1\x49\x45\x57\xa4\x09\x23\x61\xc7\x5e\x43\x41\x18\xe4\xde\x61\x20\xd5\x7c\x5a\x9e\xc6\x22\xe7\x55\xcf\xe7\x42\x0d\x63\x0f\x4a\x12\x70\x61\xa9\xee\x36\x9a\x43\x9d\xef\x6f\xd5\xc6\x78\x02\x39\xe6\xe5\x3f\xb9\x35\xbd\xe9\x8b\xa4\x97\xe8\xa4\xb6\xe7\xd5\xd1\x66\x7d\x5c\x57\x77\xd3\x9f\x0e\xe8\xab\x44\xf9\xb0\xe8\xab\xe4\x1b\xd8\xfd\x93\xbb\x30\xdf\x0a\x9f\xd9\xa9\x57\x06\xec\x4c\xa1\xff\xfe\x98\x61\x3e\x41\xbc\x3a\x6b\x79\xd5\xe9\x89\xfe\xe8\xf2\x5d\xfa\x92\xb7\xa8\xeb\x71\xe9\x98\xa1\x72\xbb\x3d\x2f\x20\x52\x30\x6f\xba\x75\x47\xfa\x55\xbe\x7d\xaf\xbc\x6e\x79\xe0\x0b\x45\x5d\xca\x5c\x74\x07\x04\x8d\xc2\x72\xe9\x71\xcb\xda\x40\xfc\xd9\x97\xb7\x8f\x45\x5d\x63\x89\xe6\xd2\xd7\xee\xb9\x86\x95\xcd\xec\xc2\xcc\x99\x97\xcc\xec\x96\xcd\xc8\x0f\x3f\x8b\x3c\x0c\x89\x28\xca\x8c\xfb\xf7\x8f\x48\x28\xd1\x4a\xee\xfb\x6d\x0c\x89\xec\xc9\xc7\xf4\x8a\x54\x79\x3f\x88\x5a\x65\x57\xaf\x50\xce\x98\x15\x18\x01\x84\x85\x37\x64\x35\xbc\x96\x43\x1b\x71\xf7\xbc\x74\xad\x0b\x15\x7b\x49\x75\x0c\x54\x76\xf2\xb5\xd1\x69\xc5\x15\x05\x9d\x0a\x3f\x3f\x6d\x86\x91\xd6\x28\xf1\x8c\xbf\x73\x7b\xe4\x96\xbb\x32\x01\xb9\x32\x4a\xc3\xd0\xfb\xfd\xc4\x23\x32\x4f\xbf\xba\xc2\xa5\x33\x58\x6e\xf4\x41\xd3\xc9\xbb\x41\xdd\x80\xaa\x09\xf5\x6f\x2a\xe3\xcd\xd4\x17\xa0\x3d\x9e\xaa\x76\x73\xa5\x41\x9a\xc9\xcf\xeb\x50\xaf\x98\xcf\xf2\x33\xe5\xe4\x53\xe4\x81\x43\x1b\xb2\x77\x92\xd9\x93\xc5\x26\xb9\xda\xc5\xa3\xd0\x13\x7e\xe1\x99\xa4\xe5\xdd\x60\xb8\x75\xb3\xcd\xb4\xa8\x0a\xec\x72\xcc\xf2\x1d\xbc\xa4\xad\x0d\x5b\x0f\x8a\xbc\x0f\xb2\x58\xf3\x42\xbb\x01\x59\x75\x52\x45\x65\xca\x7d\x7b\x9e\x86\xbd\x02\xc9\xa2\x67\x03\x62\xd8\xf5\xf9\x82\x47\xb5\x57\xf4\x59\x9f\xba\x5d\x9e\xe6\xb5\x81\xcb\x3c\x96\xe8\x9c\xde\xb0\x46\xe7\x35\xb3\xe6\xc4\x53\x67\x47\xff\x91\xf9\x9d\x09\xca\x2e\xfc\xc7\x03\xc8\xfd\x89\x37\xb8\xef\x82\xeb\xd1\x19\xa8\xa2\x2f\x39\xb4\x4f\xcd\xac\xce\x45\x40\x7d\x87\x94\xa9\x28\x51\x07\x77\xfc\xca\x7b\xf4\x65\x40\x05\x81\xe0\x32\x25\xd4\xf6\x72\xb3\xa3\x60\x76\x49\xbf\x81\xd2\x00\x24\x02\x18\xfa\x64\x9f\x5a\xab\xff\x00\x74\x6c\x7b\xc2\xb9\x97\x22\x6a\x5b\x85\xc8\xe6\xc6\x77\x5f\x19\x11\x5f\xa4\x50\xb0\x33\x90\xd0\x7c\x70\xa2\xd9\xb7\xe8\x63\x16\x49\x88\xb6\x17\x3a\x72\x03\xac\x15\xa4\x41\x63\x94\xf1\xd2\x9d\x58\xdd\xd3\x75\xbd\x96\xd3\x20\x2e\xf0\xae\xbe\xb0\x04\xd3\xc4\x24\x80\xad\x67\x20\xf7\x8d\xdb\x0d\x94\x4c\x83\x4a\x0d\xa9\xec\xd2\xd5\x32\x66\xac\x26\xae\x1f\xd3\x3f\x3f\xbc\xaa\xad\xbf\x96\x8c\xc2\xb6\xaf\x47\x42\x7c\xa0\x77\xa7\xea\x92\xad\x1b\x62\x21\x04\x5a\xab\x3b\x1c\x1c\x45\xc2\x57\x8e\x29\x0f\x09\x56\x76\x65\xc6\x91\xf9\xed\xc8\xb3\x10\x59\x0b\x10\x72\xb0\xe6\xb7\xbd\x86\x40\xd5\x4d\x52\xab\xc7\xcc\xf1\xec\xff\x45\xe4\xa7\x9a\xd0\x57\x60\x38\x55\x68\xf4\x06\xe8\x15\xc5\xd9\x50\xf4\x3c\x1d\x13\x4d\xb3\x4b\x97\x41\x2e\x0e\x2f\x63\xc3\xcd\x66\xf3\x85\xb6\xe2\xae\xd9\xb8\x6b\xd3\xc9\x2d\x71\x1c\xa9\x09\x73\xda\xae\xf4\x41\xf1\x79\x39\xaa\xd4\x7c\x36\xbd\xbd\x1f\xf5\xf5\x13\xa3\x91\x54\x80\x10\xcc\xe7\x42\x42\xf8\x72\x23\x8f\x6b\x9c\x66\x29\x70\x6d\x52\xa3\xae\x0f\xfb\x01\x1a\x38\x97\xbe\x65\x4c\x0d\xea\xa0\xdf\xa4\xdb\x90\x73\x0c\x08\xe0\xf5\x01\x71\x7d\x89\xd4\xea\x19\xc8\xfc\xd1\xd7\xad\x1e\x0f\x30\x5f\x6b\xf6\x9a\xe8\x0d\x51\xe7\x51\x39\x26\xdd\x6c\xe9\xe3\x86\xd3\x0e\x71\x1c\x2e\x2c\x92\x0c\xbd\x07\xb2\x23\x6f\x4a\x10\xdb\x35\x9e\xb2\x82\xcf\xaf\xbf\x43\x4f\x07\x78\x35\xca\x5d\x6f\xdc\x96\x5e\xda\xae\x39\xf3\x3a\x55\x6f\xf5\x85\x05\x46\x7f\x3a\xb0\x89\x60\x6e\x7a\x98\xb7\x34\xc4\x52\x8f\x05\xbf\x42\x9a\x02\xda\x26\x7f\x7e\x07\xd1\x16\x99\x57\x6d\x15\x7a\x42\x7a\x37\x22\x03\x50\xa2\x28\x7f\xff\xb3\x52\x5f\x69\x55\x66\xa5\xc4\x20\xc2\x37\x8f\x29\x09\x16\xa0\x19\x45\x7f\xf8\xb3\x1a\x27\xd4\xac\x44\xa7\xe8\x3c\x64\x19\x26\xdd\xf9\x25\xe5\x7e\xe3\x60\xa4\x58\x43\xea\x75\xc1\xad\x4a\x2c\xf7\x98\xfb\xe4\x9d\x43\xd5\x33\x83\xfd\x75\xf4\x4f\x73\x56\xa5\x87\x80\x5a\x09\xaa\x8e\x6d\x40\xf2\x57\xd9\xf2\xca\x59\x2a\x68\x80\x8d\x15\xa6\x6e\x33\x27\x16\x1a\x66\x12\x2b\x54\x6e\x39\x62\x58\xf6\x12\xe1\x12\x61\xc7\x97\x4c\x6b\x0c\xee\x44\x03\x23\x4c\x99\x49\x5c\x73\xc4\xc0\xda\x07\xa2\x4a\x13\xd9\xa8\xf0\x73\x0f\xa7\x43\xc6\x9c\x4b\xe6\xa9\xb1\xdd\x8c\xd3\x25\xd0\x0d\x34\xbc\x75\x76\x02\x9b\xa9\x3c\xc2\xec\xdf\x31\x2b\xb1\x02\x0f\x7f\x72\x52\x23\xce\x8a\x6d\x24\x97\xcc\xf9\x27\x51\x73\x04\x65\x21\xe1\xd1\x63\x3a\xef\x6a\xd1\x2a\x01\x3d\x31\x29\x35\x1d\xde\x8b\xe0\x4f\x58\x41\xf7\x59\x63\x5e\x17\x80\x05\x93\x0a\xab\xfb\xb2\x67\x22\x9a\xa5\x8c\xaa\xdf\x3e\x99\x2e\x52\xe4\x1c\xdb\x51\xaf\x2a\x9d\xc4\x7c\x7f\x5b\x22\x1a\xef\xb0\x84\x6c\x7e\xce\x8a\x33\xe3\x5f\x56\x93\xc7\x70\xdd\xf6\xf4\xb8\xb6\x28\x78\xb5\xc2\x5c\x25\x1a\xa0\xbe\xde\x77\xce\x30\x08\x70\x35\x16\xd5\xb7\x90\xfe\x3e\xaa\xca\x64\xaf\x4e\x2c\x6a\x49\xde\x50\xf8\xfe\x73\x66\x49\x4f\x8a\x8e\xba\xce\x33\x53\x2b\x68\x41\x88\x55\xf5\x24\x3a\x7f\xbc\x16\x39\x73\x1b\xd8\x8b\xe0\x84\xe1\x7f\x43\x89\x15\x5b\xc8\x65\xb6\xbe\x62\x36\x56\x02\xe1\x2b\x37\xe8\xdc\x8f\x5f\xc4\xde\xc8\x89\x46\x70\x4e\xbc\x66\xb4\xed\x5c\xbf\x22\x48\x9f\xda\x3d\x9f\x5b\xa6\x31\x78\x80\x77\xe8\x19\x31\xd1\xfc\x71\x56\x20\x00\x37\xf6\x99\x12\xeb\xc8\x7d\xdc\x4e\xbf\x1c\x25\xea\x73\xca\xf2\xbf\x70\x38\x29\x31\xaa\x3c\xf1\xbe\xff\x81\x61\x79\x5b\x62\x20\x58\xa0\x6a\xb6\xc1\xd7\xca\xa6\xc9\xe5\x35\x1b\x26\x9c\x13\x0c\xc1\x18\x12\xd8\xc4\x92\xb4\x0f\xa8\x8c\xdf\x7b\xf2\x43\x71\xa2\x11\xdd\x73\x3f\x50\xd8\xb3\xab\x4e\xe1\xf0\x91\xff\x90\xa1\xb6\xc7\x03\x5f\x0d\x71\xf2\x1f\xb8\x3d\x79\x29\x42\x20\x11\xe1\xec\xdc\xed\x4a\xe5\x98\x79\x3e\x97\x13\xe8\x1b\xa6\xe9\x6b\x43\xe7\x10\xb5\xf8\xfb\xbd\xb6\x42\x97\x67\x12\x15\x1d\x73\xef\xb2\xc7\x36\x8d\x42\xf5\xae\x5b\xa6\x5e\xdc\x74\xfc\xe6\xc5\xfa\x32\x9e\xa4\x37\xe4\xd9\x87\x0c\x80\x10\x2e\x3c\xf3\xb6\x44\x45\x17\x96\x32\x97\xb8\xed\xac\xe0\xcc\xc2\x95\xa3\xb5\x3c\x9c\x9b\x72\x0a\x7e\x50\x69\x15\x50\xcf\xa2\xae\xad\xf8\xd1\xf9\xf3\x1f\x6c\x27\xd6\x6b\x41\xa7\xe8\x39\x9f\x36\xb8\x0b\x36\x91\x84\x28\x59\x86\x7c\x70\x84\xf9\x6a\xbd\x4a\xf4\x1f\x25\x4c\xf6\xe5\xe3\x86\xc4\xa3\x43\x9b\xea\xae\x3c\x9a\x72\x90\x93\xac\xf6\xe8\xe3\x46\x3d\x6d\x20\x6d\xa2\xd4\xc2\x62\x3c\xf0\x94\x1c\xf1\x95\xef\xc9\x12\x67\x6d\xe2\x8a\x82\xa5\x0e\xba\xf7\x18\xc8\x55\x98\xd2\x28\xe5\xa7\xcc\x30\x83\xa7\x6b\x55\x98\x63\x0b\xea\xaa\x63\x95\xff\xa7\xae\x36\x69\xef\x06\x73\xd5\x6e\x87\xe4\xe5\xed\x9d\xb2\x6d\xb4\x86\x36\x88\x87\x78\x1a\x03\xb9\x6f\x9d\x18\x86\xb5\x73\xaa\xf0\xe3\x83\xdf\xc3\xb4\x4c\x69\x00\x1b\x67\x49\x6f\x1e\x52\x00\x46\x70\x9d\xc1\x8e\x33\x8b\x35\x27\xa8\xc4\xa3\xba\x35\xfc\xc1\x38\x63\x26\xa9\xf9\xbd\x80\x80\x1e\xc8\x5c\x61\xb8\xc0\x07\x75\x79\x4f\x4d\x86\xc5\x7e\xcb\xe4\x27\x37\xb8\x23\x8d\xdc\xa3\xec\x2a\x3f\x75\x05\xc2\x28\x4a\x22\xf2\xd5\xab\xc3\xf5\x6f\x0c\xd7\x0d\xb4\x04\x51\x34\xbb\x4f\xa6\xc5\x12\xbf\xa4\x74\x98\x1e\xb5\xd5\x99\x09\x12\x51\xcd\x92\x8b\x6a\x02\x2a\x04\x07\x03\xa9\xfc\x90\x57\xcd\x2d\x91\x30\xf2\x4f\x1c\x19\x6b\x06\x6c\x62\x27\xa8\x82\xd3\xae\xc5\x0c\x63\x07\x3a\x1a\xe7\xf5\x1a\xbe\x35\x58\x85\x55\xee\xb3\x63\x2f\xa5\x6f\x45\x62\x59\xdc\x21\x76\x2c\xa9\xfb\x2f\xf5\xb6\x49\x82\x15\xed\x38\xb7\x9c\x2c\xde\xe3\x63\x0c\x50\x7f\x94\xff\xc4\xfd\xa3\xe0\xa5\x11\xe8\x7a\x6c\x94\xa9\x1b\xa5\x46\x53\x36\x8d\xc7\x9a\x01\x82\xd7\x05\xaf\xb5\x3c\x47\x62\xd3\x7b\xc2\xe0\xa9\xbf\xa7\xa8\x05\x38\xc0\x27\x86\xa5\x6f\xae\x2a\xf5\x3c\x87\x0a\x43\x43\xe0\xc4\x36\xfd\xd1\x75\xca\xeb\x30\xc1\x0a\x1f\x3a\x68\xf4\xbb\x02\xcf\x63\x8a\xfb\xdc\x13\xfe\xdf\xae\x14\x70\x51\x98\xe2\x84\xe1\xa7\x51\x13\x58\xd0\x22\x8d\x36\xdf\x1a\x2d\x28\x51\x94\xe0\xd5\x2b\x50\xbd\x57\x6b\xc5\x75\x44\xee\xf0\xe9\x86\x8a\x06\x24\x85\xf2\x3b\x4d\xab\x8c\x42\x65\x69\x9d\x5a\x3e\x91\x20\x97\xcc\xb9\xab\x90\xfc\x50\x0a\xc8\xf5\xf6\x60\xb9\xd5\x20\xdd\x6b\x48\xfd\xe8\xcc\x05\x25\xe4\x18\x4c\x90\x11\xc0\x7f\x21\x46\x88\x17\x80\x09\x11\x74\x00\x5f\x39\x98\xc4\x44\x4e\xec\xd4\xec\xe4\xff\xeb\x32\x01\x07\x25\x25\x41\xbb\xeb\x00\x72\xb7\x22\xc2\x4f\x4c\x70\x4b\xcf\x0d\x8d\x73\xd3\xb2\x23\xdd\x93\x5e\x98\x2c\xeb\x38\xa5\x67\x0d\xc5\xf6\xb2\x27\x0d\x80\x0c\x25\xd1\x81\x8c\xc2\x50\xf8\xcb\xd2\x24\x33\xca\x24\xde\xfb\xc4\x8d\xbd\x47\x33\xd3\x5f\x34\x08\x04\xd4\x62\xb6\xea\x70\x64\x06\x9e\xfe\x30\xda\x77\xd1\x53\x5c\xbe\x4e\x3f\xb1\x4b\x7d\xe2\xb6\x48\x25\x28\xf4\x84\x7f\xbb\x38\xfd\x1d\x8b\x94\xba\x72\x6e\x9e\x39\xff\x62\x44\x22\x15\xac\x48\x0b\x3e\x74\x49\xa0\xe7\x98\x39\x6a\x88\xd9\x83\x93\xb2\x43\x54\x5b\x57\x1b\x51\x5d\x5e\x6c\xa7\x75\xb1\x58\x1a\x21\xfb\xc9\xc5\xe9\x01\x02\x06\x34\xb7\x37\x88\xc3\x33\xef\x1b\x67\xc6\x6f\x17\x0d\x5f\x7f\xf8\xac\x52\x22\xf7\x3c\x56\x76\xe3\x71\x72\xfe\x96\xfb\x0c\xb2\x10\xa9\xd5\x2b\x0e\x8d\x1f\x22\xf7\x59\x64\x1c\x38\x73\xfe\xbc\x59\xb0\x5b\xc7\xdc\xda\xae\x17\x0a\x87\x0c\x28\x63\xbf\x59\xab\x97\xb3\xd4\x81\x8e\xdd\x07\x5f\x1b\x1b\x4b\x2c\xad\x58\x61\x1e\x9f\x0f\x1e\xd1\x5d\x39\x5b\xd0\x0a\x60\xb6\xf2\x17\x2d\x41\x7c\x80\xca\x25\x5e\xf5\x92\x2a\xb4\x64\x32\x13\xa7\x20\xd5\xc6\x94\x28\xd7\x40\xee\xd0\x16\xa3\x80\x61\x6e\x7f\x25\x5a\x8c\x54\x18\x08\x5f\x69\xe8\x4f\x8c\x2a\x5a\xd9\x15\x3a\xfa\xba\x12\x5e\xc7\x36\x2e\x07\xb4\xa7\x68\x54\xd5\x85\xb7\x6d\x18\xed\x62\xba\x8d\x90\xcd\xfe\xe8\x67\x3f\x53\x4c\xdf\x37\x72\x3e\x5f\x21\x30\xa3\x8f\x52\xff\xe7\x55\x73\x64\x03\x6a\xd3\xe5\xe6\x21\x6e\xb9\x57\xa1\xd2\xc0\xf3\xac\x05\xa6\xfa\xa4\xc3\xa2\xdc\x45\xbd\x9a\x9d\x2b\x11\xef\x32\xc0\x48\xf1\xae\x55\xa6\x64\xa4\x53\x4f\x8c\x79\x4b\xfe\x70\x44\xca\xac\xc9\x01\x67\x7e\xd5\x76\x14\x12\x19\x77\xa9\x5a\xff\xf7\x53\xd8\x63\xe2\x07\x31\xd1\xa5\x7a\x57\x92\xaf\x56\x58\xa2\x74\xb7\x65\x90\x61\x37\x26\x48\x51\x4a\xa6\x64\xdf\x47\x9d\xff\x99\x05\x4f\x2a\x57\xf4\x0c\x64\xde\x5c\xf1\x61\xec\x15\xdd\x33\x90\x5b\x6c\xb8\x7e\xf9\xd2\x79\x11\x2a\xc3\xdb\xf7\x9c\xd5\x8c\xfb\x73\xa4\x41\xca\xc4\xed\x07\x6b\x9a\xed\x79\x43\x38\x86\x3a\x25\xe2\xc1\x8c\x45\xa5\x9a\xc3\xd0\x56\x22\x36\xaf\xc7\x6d\xfc\xdc\x31\x84\x3d\xb1\x02\x25\x4f\x7c\x72\x4f\xfa\x19\x00\x05\xac\x74\xb3\x96\xaf\x44\xa8\x0d\xe2\x58\xdc\x95\xc3\xb6\xec\xac\xce\x91\x38\xc0\x96\x1c\xde\x94\xd0\xc3\xaf\x9c\x61\x8a\x40\x49\xc3\x85\x18\x77\x32\x77\x37\x32\xa0\x65\x45\xe9\x7d\x97\x6b\x0c\xfd\x7b\x82\xf4\xf2\x39\xb2\x33\xcc\x1b\x58\xb6\x48\xa2\xe4\x44\xd2\xf2\x72\xdf\x3b\x43\xc1\xd4\x03\xa6\xf2\x8d\x9d\xd7\xa6\xf1\xc9\xbe\x20\xf6\x29\x5b\xca\xf9\x5b\xee\xd1\xc9\x94\xa5\xbc\x98\x5f\xdf\x67\x08\x4e\x91\x5a\xc2\x42\x8f\x33\xed\xc5\x6b\x65\xa2\xb7\x92\xd2\x6a\x9d\x20\xe6\x5c\x86\xf6\x1b\x97\x06\xf3\xa4\x55\x46\xf8\xce\x04\x73\xa2\x07\x62\x51\x72\xeb\x64\xa8\x21\x19\x17\x9d\x56\x5d\x16\x5b\xcf\x61\x67\x06\x18\x71\x4a\xd8\xf0\x50\xfd\xfc\x15\x10\xb7\x08\x9d\x4e\x7d\x89\xfb\x22\xb0\xaa\x6d\xd5\xfc\xcb\xf6\x10\x95\x72\x16\xa1\x11\xdf\xfb\x10\x16\x0d\xf1\xa9\x50\x1a\x69\x3b\x57\xa5\x6f\x22\xe6\xf9\xc4\x2d\x06\x0e\x74\x22\x74\x84\x9f\x3e\xc1\x00\x54\x73\x61\x53\xab\x42\x0c\x40\x75\x36\xf3\xa8\xd9\xed\x8a\x92\x67\x3b\x3e\xea\xf3\xbb\xa7\x18\xd9\x9a\x24\x53\xb7\xf1\x0e\xc3\x85\x13\x4e\xcd\x25\x37\x07\x1a\x7f\xec\x18\x8e\x25\x62\xac\x0a\x04\xbf\xaf\x8e\x6b\xd3\xbb\x65\xb5\x44\xeb\x2a\xfb\x7f\xfc\x74\xd1\xdb\x24\x42\x50\xd7\x30\xac\x7b\x7e\xf4\xb8\xb4\x8f\xf0\xea\xe9\xf1\xf7\x2c\xf4\x84\xb7\x1c\x1a\xa9\x55\x59\xb4\x23\x7f\xf8\xfd\x17\xd1\x90\x8a\x3b\x98\x00\x31\x90\xdb\xf4\x78\xfa\x30\x06\x5e\x40\x1c\x35\xd4\xef\xea\x3d\x1b\x4b\xed\x08\x47\x19\x86\x82\x15\x55\x27\x3a\xf2\xa5\x92\xc3\x2c\x15\xbc\xd6\x3d\x90\xc4\x1c\xe6\xd6\xa2\xf7\x79\xdf\x89\xd8\x6f\x03\x22\x79\xf4\xea\xfb\x0c\x99\x13\x9f\x88\x32\xa9\x11\xbb\x9f\xa6\x5f\x5e\x66\xe9\x9b\x58\x73\xa4\xc4\x85\x12\x5f\xcc\x7e\xe9\x66\xb3\x11\x51\xab\x53\x47\x4d\x5a\x7e\xb1\x07\xbd\x01\x22\xc0\xd8\x2f\xbc\xe1\x74\x24\xb0\xe9\x70\xab\x5a\xe8\x09\x97\x2e\xd1\x4b\x16\xd4\xd0\xb2\x3c\xb8\x62\x04\x6a\x18\x2a\x68\x46\xf8\xd0\x42\xf4\x27\x12\x51\x97\x5d\x26\x50\x99\xd2\x4a\xaa\x83\x99\x7b\xea\x21\x64\x15\xc2\x4a\x80\xdf\xce\xd3\x13\x98\x8f\x67\x55\x0b\x4d\x49\x55\xca\x7d\x61\x24\xd2\x61\x14\xc4\x03\xa2\xbc\x6c\x62\x2d\x9e\x66\xaa\xef\x7a\x80\x17\x52\x95\x41\xf4\xdb\xdf\x3f\xae\x01\x3f\xa0\x35\xce\x59\xbb\xe2\x67\x5d\xcb\x92\xcc\xf1\x2b\x85\x9e\xf0\x8f\xcf\x18\xe1\x23\x48\x42\xe1\xd4\x0d\x06\xc4\xd0\xb2\x82\xba\x04\x26\xc4\x9b\xf7\x87\x2b\x0c\x4b\x5f\xab\xc2\xb9\x73\xca\x69\x3e\x79\x71\x78\x7a\x09\xe1\x70\xdc\x72\xdc\x88\x9c\xac\x46\xbd\x53\xfd\x7e\x66\xf5\xdd\xc6\xfd\xcb\xdc\x72\xe2\xfa\x77\xe5\x9e\xf4\xa3\xb6\x88\xe0\x5e\x05\x4b\xf6\x5d\xb0\xeb\xef\xc6\x75\x55\xb3\xe6\x2e\xde\x69\xb0\x8b\x25\x5f\x3a\x4a\x4e\xc3\x25\x26\x2b\x48\x6a\x64\xc6\x4d\xa0\x43\xc7\xda\xbc\x35\x3c\x30\x62\x92\x55\xdf\xe1\xa5\xa3\x51\xc0\x2b\xc6\x72\x16\xd1\x6f\x66\x9e\x4d\xca\x01\xcf\xef\x48\x35\xd4\x2f\xbe\xd6\x90\x6f\xa6\x35\x6e\x09\xa2\x51\xbd\xb9\x27\x5e\xd1\x96\xff\x56\x94\x43\x9d\xb6\x3e\x3d\xb0\x98\xdb\x29\x4f\x74\x7e\x42\x97\xec\x52\x49\xab\xce\xf0\x53\x45\x9d\x6b\x95\x39\x56\x6b\xc9\x0c\xb5\xc7\xa1\xc8\xaf\x2a\xfb\x64\x98\x92\xbd\xe4\xb8\x4e\xaa\x64\x8e\xd8\x33\x90\xb9\x78\x7d\x02\x7d\x61\xbc\xdd\x8a\xbd\xa1\x06\x42\x36\x75\x58\x83\x2a\x61\x88\xec\xf7\x1e\x40\x95\x13\x17\xd1\x9b\x17\x53\xe1\x1e\xd8\x31\x04\x45\x12\x28\x3e\x3a\x26\x23\x2a\x36\x75\x68\x31\x2a\xf5\xe1\x42\xaa\x2d\x34\x2e\x39\xee\x38\x60\xb0\x05\x9d\xdc\xdf\xbf\xa6\xe6\xe0\x40\x7c\x01\xdf\xde\xcc\x92\x25\x06\x1b\x5c\x50\xdf\x6f\xc9\x76\x4e\x66\x61\x51\x9b\xf4\xea\xd8\x84\x96\x67\xe9\x61\x03\xef\xc4\x9b\xd2\xcb\xce\x3f\x66\xf4\x3a\x2d\xa5\x07\x09\x96\x01\x74\x5f\xfa\xbf\xd2\x06\x03\x85\x79\xb9\x7d\x99\x21\x0b\xe8\x51\xa2\xba\x91\x97\x8c\x43\x60\x0d\xee\xd1\x1a\x0f\xda\x25\xfc\x73\xcf\x96\x26\xa3\x62\x8b\x95\x2b\x45\x2e\x2a\x9c\xb7\x81\x90\x32\xff\xdf\xcd\x32\xd3\x5b\x7c\xc5\xca\x8f\xad\x59\xb4\xe4\x8a\x38\xc5\x74\x1b\x72\x9d\x56\xd1\xa6\xb7\x8c\x07\x40\x3c\xc8\x3f\xa2\xd7\xdc\x66\xa5\x12\x60\x88\x5a\x51\xec\x94\x02\x58\x85\xf5\xcc\xad\x04\xed\x7a\xc6\x63\x26\xc9\xb7\x7d\x65\xd0\x24\x2c\xe1\xa2\x1e\xe9\x3a\x13\xd1\xa7\x3c\x18\xe3\xbc\xf6\xb4\x46\x4c\x89\xb2\x59\x7b\x3d\x7a\x8f\x61\x04\xe6\x59\x92\x7f\x28\x2b\xf8\x25\x1b\xd2\x91\xa3\x97\x33\xf7\x94\x32\xd2\xb9\x8e\x86\x7c\xa0\x15\x4c\x07\xfa\x70\xfe\x7a\xa3\xbb\x03\x8a\xcf\x71\x5c\x9b\xa6\x2d\x91\x5c\x8a\x6f\xcd\x2f\x2f\x38\x0b\x45\xb1\x64\xcc\xf4\xda\x51\xc9\xa2\xbb\x92\xba\x2e\x75\x90\x1f\xe0\x40\xee\x47\x4b\xb1\x7e\x0f\x0f\x8a\xb2\x4c\xcf\x7c\x73\xbf\x42\x44\x06\x3e\x77\x79\x0d\xa2\xfc\xd4\xd1\xb2\x8c\xb9\xa2\x8f\x5a\x81\x22\xfb\xe5\xbe\xf1\x68\x5b\xe7\xbd\x4e\xd5\x50\x27\xff\xb9\x87\x75\x3e\xe6\xb4\xa4\x81\x57\xef\x66\xd9\xc9\x4b\x11\xa3\x01\x33\x3e\x04\xb3\x02\x5d\xe6\x49\x05\xbc\xf0\x27\xf7\x1b\x42\x88\x72\x6c\x4b\xe3\xf2\x26\xb7\x68\xb7\x5c\xc1\xab\x68\x1f\xb3\x78\x3c\x16\x12\x6d\x17\x71\x91\xf8\x2a\xbb\xbc\xa6\x91\xfe\x93\x4d\x60\x08\xda\xa4\x15\x6b\xb7\x79\xdb\x35\x7d\xb6\xd6\x6a\xeb\xdc\xff\x34\xdf\x46\x7b\xae\x26\x39\x53\x66\xf8\x86\x98\x30\xec\x02\xfc\xaf\x6d\x0f\x9e\xb5\x6a\xb2\x91\xe5\x73\xe2\x4b\xec\x72\xfa\x73\x2e\xd9\x66\x32\x6b\xa9\xd2\x3b\x85\xeb\xe9\x3f\x6f\x1e\xaa\x82\x76\xad\x2e\x93\xd4\xfc\xec\xc9\x32\x92\x7a\xac\x0f\x7e\xe4\x27\x6f\x99\x1d\x3d\x7c\x43\x66\x2e\x5c\xa2\x5f\x50\x39\x90\x90\xb9\xf5\x4f\x9a\x43\x9b\xc0\x8e\x95\x46\xb2\xcb\xb6\xeb\x63\xd7\x60\x96\xf4\x27\x85\xf2\xe9\x9a\xf7\x8d\x3a\x90\x73\x5b\x75\xa1\xf7\xee\x40\xd5\x13\x2d\x31\x5f\x21\xf9\xf3\xd7\x48\x3e\x63\xa1\x15\x95\x5a\x85\xe8\x6f\xb9\xca\xf4\xbf\x3c\x38\x5d\x75\x28\xc2\x58\x4a\xf3\xfc\xc1\x77\xd0\xa1\x75\x08\xa8\x44\x7e\x69\xc8\x45\x46\xf8\xe4\x3e\x8d\x12\x75\x5f\x9a\xcb\xa6\xcf\xde\x19\x83\xd0\x2c\x3f\xaa\xb3\x40\x56\x3d\xfa\xdb\x93\x4b\x08\x2c\x01\xc5\x79\xf8\xe6\x3c\xfd\x2d\x7c\xd4\xe4\xc8\xe7\x36\xa7\x6f\xc2\x9a\xe8\x48\x0b\x05\x4d\xad\xa7\x5f\x02\xb8\xc6\x27\xea\x2c\xd9\x3d\x5b\x86\x63\xe2\x1a\xcc\xc1\xc2\x17\x7a\xe3\x11\x44\xdd\xe1\x22\xd6\xaf\xc9\x7d\x75\xa2\x72\xa7\xa4\x4e\x0d\x84\x95\xc3\xb7\x8e\x24\xee\x6a\x12\x08\x2a\x89\x59\xff\xf0\x00\xc2\xd5\xb7\x6d\xc1\xdc\x17\xb6\x18\x2f\x39\x28\x06\xa2\xa8\x26\x11\x93\x1e\x4c\xe2\x4b\x2f\xf6\x19\xea\x7c\x6e\x94\x8e\x23\x3e\xea\xe7\x67\xa6\x2c\x46\x37\x36\x24\x26\x5e\x93\x3a\x80\x22\x28\xf4\x27\x0f\x62\xb3\x36\x6b\xde\xfc\x47\x1a\xfa\x4a\xab\x05\x5e\xdb\x94\x26\x7f\xfd\x96\xc1\xf0\x1f\xbb\x0a\x3d\xe1\x62\x03\x10\x47\xec\x06\xb3\x68\x32\xe7\x9b\x2d\x87\x5b\x4b\x99\x68\x97\x80\xdd\x74\x99\x49\x01\x69\xc5\x5d\xb7\x69\xcf\xc4\x2a\xea\xb5\x3a\x53\xd8\x95\xec\x5f\x86\x1a\xda\x18\x51\x69\x26\x3f\x67\xe7\x93\x06\xb4\x93\x37\xd4\x5d\x19\x8e\x33\xba\xf2\x0d\xee\xeb\x86\x5c\xf6\xb2\x79\x66\xe7\xcd\xe1\xb1\x23\x65\x54\xbc\xcc\x44\x63\x1e\x5e\x2a\x51\x57\xb2\x61\x73\x67\x1c\x44\x38\x78\x39\x9a\x8f\x0e\x6a\xb7\xe1\x71\xe3\xd0\x22\x71\x61\x4a\xa1\xfa\x1f\x83\x8a\xa6\xb2\xba\x08\x80\x2f\xa0\x26\x3c\x97\x3f\x6c\xfa\xf6\xce\x9b\x1f\x3f\xeb\x6d\x3b\x4d\x1d\x49\x52\x76\x63\x08\xeb\x40\xee\xde\x65\xe6\x70\x88\xb8\x7a\x80\x3e\x90\xff\xd4\x61\x7d\xb2\xca\x01\x11\xc4\xf5\xa9\x54\x91\x9a\x20\x0c\xe7\x67\x6e\xf3\x74\x3d\x99\xfb\xc2\xae\x71\x5a\x9d\xbb\x5d\x95\xf1\x9c\xf7\x54\x87\xc3\xe1\x65\x80\xb4\xe7\x5e\xb9\x33\xd6\x97\xf4\x02\x47\x0a\x91\xfd\x75\x99\xf2\xd0\xe6\xcd\x8e\x42\x4f\xf8\x6b\x37\xf9\x93\x72\x0a\x96\xfe\x93\xaf\x4e\x18\xa9\xc5\x4d\xb0\x93\xfa\xc9\x19\x69\xd5\xf7\xa9\xaa\x7d\x73\xe5\x51\xc4\x58\xc5\xe2\x5a\x63\x47\x22\x07\x43\x1e\x65\xb3\xef\x18\x1a\x19\x56\x85\x59\x55\xea\xaa\x81\xf1\xe8\x95\x88\xe9\xec\x96\x81\x2c\x99\xa8\x5d\xdd\x8b\x2d\x1b\xb0\xc4\xff\x63\x67\xc5\x09\x11\xce\xc9\x33\xfb\xee\x3f\x13\xf5\x14\x61\x6d\x32\x6f\x1f\x6c\x13\x69\xf5\x94\xd7\xd5\x40\xde\x33\x44\xfb\x5d\x56\x97\x57\x60\x78\xdd\x5d\x26\x2e\xc1\x89\x76\x8e\xe2\xb4\x4c\xd8\x6c\xec\xac\x78\x42\xa6\x04\xa9\x7e\xe3\xca\x48\x71\x75\x25\x88\xae\x71\x54\x73\x7e\xa4\xdb\x60\x04\xb9\x0d\xe2\x30\x9b\x24\xf3\x9c\xae\x31\x4a\x7a\x54\x5a\x42\xe6\xee\x1f\x61\x82\x60\x7d\xdf\x89\x49\x90\xcf\x8f\xd7\xf7\xb4\x30\x65\x3d\xc2\x57\x8f\xeb\xe5\x20\x80\xa4\x0f\xeb\x4f\x1a\xc9\x44\x9c\xcb\xa8\x3f\x78\x81\xf4\xe0\x2a\xac\xa6\x2e\x81\xae\x02\xe2\x8e\x4c\xd2\x57\x5f\x89\x34\x60\xa2\xe8\x45\x97\x4e\xf6\x50\x17\x2a\x4a\x60\x84\x84\x87\xc9\x37\xaf\x93\xfd\xa5\x12\x93\xf7\x56\x66\x49\x16\xfb\x49\xc5\x28\x4f\xc5\xaf\xfc\xdd\x3c\x99\xcc\x2c\xa6\x82\xf6\xc7\x23\x30\x6e\x8c\x62\x41\x1e\xc9\xf5\x14\x7d\x3d\x7c\x77\xaf\xfc\x84\xaa\xea\x5e\x67\xdf\x9e\xa7\xe6\x2e\x75\x6a\x49\xb3\x83\x6c\xf6\x5d\xc3\x9e\x31\x00\xe6\x09\x0c\x3c\x4f\x98\xf6\x89\x20\x89\xab\xd5\x2c\xbf\x3d\x4e\xa2\x5c\x4b\x01\xfc\xdf\xbb\x16\x18\x3e\xb4\xbc\x1c\x28\x50\x47\xae\x70\xdd\x48\x2d\x95\x80\xa0\x43\x99\x17\xf6\x63\x65\x6a\x52\x63\xae\x84\x1e\x35\xe7\x61\x0a\x54\xe0\x11\xd7\x05\x6e\xcb\xc0\x3e\x7d\x22\xa9\x8f\x69\xc1\x37\x23\x46\x58\x54\xc8\xda\x4a\xae\xf3\x9a\xad\x68\x59\x79\x91\xb9\x5e\xb4\xa4\x35\x80\x1c\xe7\xaa\xa5\xa4\x68\x9b\xd9\x35\x3b\xda\xfa\xdb\xc3\x34\x52\xa3\x46\x2b\x44\x88\xd6\x29\xc5\xd4\x7f\x7a\x6d\x7a\xc6\xe8\x70\xb7\x5c\x20\x45\xe2\xda\xdc\x4d\xb0\x7a\xd9\x3d\xfb\x10\xb2\x97\x07\x3e\x73\xa9\x84\x9d\x6f\x19\x93\xcc\x86\x7d\x47\x91\x81\xc2\x4f\x3c\x60\x32\x38\x4b\xa5\x64\x7e\x3b\xe8\xa8\xbe\x15\x6d\x47\xb4\x0b\xb8\x4c\xeb\x96\xa7\x64\x31\x01\x29\x92\xfc\xdc\x3d\x48\xef\x91\xbb\xa4\x48\x5d\x34\x1f\xc9\xec\x1e\x29\xdf\xe0\x62\xa0\xba\x64\x7f\x35\x4f\x59\xeb\x13\xc8\xc9\xb3\x9f\x1a\x6d\x5a\xeb\x07\x6e\x4c\xfe\xcf\xbc\x3c\x4c\x97\x08\x4d\x2e\x1c\xdb\x02\x41\xee\xec\xc0\x6e\x03\xea\xc2\x2d\x46\x6d\x62\xcb\x1e\x53\x7a\x01\x47\x1d\x41\xc3\x0e\x62\xc1\xbc\x3f\xbf\xa1\x23\x65\x8c\xe7\x79\xca\x22\xf3\x82\x33\x46\x20\x1c\x80\x45\x6c\x79\x0b\x3e\x8d\x74\xe4\x48\xa5\x46\x5c\x09\x18\xca\xfe\xf3\x16\xfd\x67\x88\x57\x67\x71\x05\xbf\x6d\xf3\x50\x44\x43\x6f\x46\x45\xd9\x0a\xe4\xf9\x13\xd5\x91\x15\x28\x26\xc3\xdf\x18\x86\x06\x25\x87\x78\x95\xd8\x32\x23\x7b\x02\xd5\x54\xac\x0c\x3d\xa0\x42\x4f\x78\xf4\x3e\x43\xdf\x30\xaa\x57\x12\xd8\x66\xe9\x32\x2c\xc7\xe1\x73\x97\x21\x24\x53\xc6\x0f\xb5\x2d\x9b\xe0\xc0\x66\xdc\xaf\x7a\xd0\xa4\x05\x04\xa0\x1b\x57\x0d\x89\x7f\xc2\x86\x11\xe6\xaa\xc1\xa7\x32\xde\x2d\x06\xb1\x84\x45\xf8\xde\x60\xa5\x3b\x2a\xa4\xa8\x43\x66\xea\x03\x32\x04\x7f\x32\xb0\x99\x4b\xb4\xd8\x5a\x78\xff\x93\xa3\x54\x81\xc8\x6c\x0a\x9a\xcf\xca\xd4\x32\xbb\xdb\x80\x45\x08\x62\x33\x1e\x97\x0a\xab\x26\x22\xbb\x6c\xcf\x23\x3e\x25\xe5\x00\x2a\xba\xb3\x0f\x26\xdb\xdb\x4d\x8c\xd4\x32\xbf\x1c\x2f\x1f\xc8\xf3\x99\x3c\x9f\x4b\xfd\x73\xe2\xf5\x60\x05\xc2\x84\x04\x89\x25\x2d\xb0\x57\x4e\x3f\xa5\x6a\x0c\x8b\xad\x9b\xbf\x75\x04\x51\x8d\xa3\x5d\x2f\xeb\xbc\x15\xb3\xd3\xef\x61\xe6\xcc\xf9\x85\x99\x33\x67\xaa\xd4\xee\x63\x27\x87\x63\x2a\xa0\x7a\xb4\xb7\xde\x37\x04\xe9\x5a\x41\xd1\x68\xf0\x3e\x74\xa4\x6d\x4e\x6b\x51\x2f\x86\xd5\xdc\x6b\xda\x74\x29\x5a\x4b\xdc\x51\x1b\xbc\x79\x2c\x06\x32\x79\x81\xa3\x85\x63\x07\x32\x9b\xee\x1b\x8e\x35\x3d\x88\x88\x42\xfc\x73\xf7\xe8\xe5\x75\xb9\x68\xd2\x32\x23\x72\x2f\x35\x7b\x63\x23\xf9\x96\x82\x70\x66\x7e\xe6\x1b\x96\x41\x44\xc4\x36\x11\xb9\x1f\xbc\x36\x2a\x59\x66\x9b\xc2\xb9\x92\x63\xf6\xcc\x27\x56\x9d\xf2\x4a\x57\x19\xcd\xab\x6f\x61\x6a\x24\x71\x58\xbf\x0c\xd0\xdf\xb9\xb6\x6d\x2c\x26\x2c\xa5\x2a\x74\xc1\x52\xc4\xa5\x95\x3a\x12\x90\x1d\x74\xa3\xb2\x9f\x55\xa3\xe3\x32\xb1\x6e\x4e\x3b\x6a\x75\xa7\x95\x20\xa3\xea\x93\xb1\x2b\x1a\xf7\x19\x2a\x3b\x06\x72\x33\x1e\xc0\x00\xbe\x5a\x2d\x50\x8d\xbd\xfb\xde\x1d\x8e\x26\xd5\xdd\x9d\xca\x87\x69\x32\xc2\x16\x11\x9f\x80\xb2\xd0\xe7\xb7\xca\x88\xd7\x35\x53\x6a\x31\x3d\xba\x43\xf6\x37\x8a\x20\x85\x2c\x6b\xce\x01\x91\x7e\x46\xbf\x55\x97\x2d\x6e\x00\x38\xbe\x78\x44\xe3\x12\xab\xf8\x66\xdb\xbc\xcf\xe4\xa3\x96\xa5\x3b\xbd\xd2\x27\xff\xf9\x43\xc3\x55\x0c\xb2\xcb\xb4\x1e\xfd\x4f\xf4\x40\x2f\xdf\x99\xde\x42\x2e\x6f\x80\x23\x43\x7c\xdc\x9e\x75\x30\xba\xd8\xe1\xcd\x78\xf3\xfe\xb9\x31\x5a\xb3\x85\x08\x4e\xff\xb2\x93\xc6\xc9\x2f\xb5\x74\x4d\xcf\xaa\xb5\xcb\xaf\x58\x13\x85\xaf\x4d\xda\xb9\xa3\x7b\xde\xdc\x42\x4f\xb8\xe9\xd8\x29\x05\x40\xa8\xf4\x50\x09\xc5\x30\xe4\xc7\x4b\x44\x15\x4f\x6c\x1e\xeb\x36\x7a\x5e\x7d\x75\x87\x59\xe0\x3e\x07\xef\x7d\xe2\x7a\xa3\xdf\x4e\x05\xd4\x67\xed\x17\x42\x7e\xca\xbb\xc3\x53\xbb\xcd\x01\x90\xb4\xe1\x9d\x07\x7d\x51\xd6\x1f\xb3\xea\x73\xbd\x23\x91\xa5\xa4\xa0\x04\x80\x26\xe9\x7b\xf1\x97\x46\x99\x67\x53\xa2\xf2\xca\x27\x27\x6b\x7e\x34\x2e\xdf\x33\xd7\xbc\x88\xcd\x1e\xb8\x94\xa2\xca\x5f\x74\x52\xf2\xea\x80\x53\x9f\x19\xf4\x88\x81\x75\x17\x22\x4a\xd6\xed\x04\xf7\x74\x95\x41\xf8\x27\xbe\x52\x32\xcd\x35\xf6\x21\xd5\x5c\x6e\x55\x95\xe1\x43\xf6\x46\x03\xd6\x1c\x05\x08\xf0\xf1\x91\x71\xed\xb5\x21\xfa\xd7\xfa\x59\xad\x48\x8a\x20\x38\x9b\xe7\x87\x4d\x0c\xa1\x0b\x5b\x54\x96\x65\xf7\x3f\x6a\xe0\x57\x98\x1f\x6b\xc0\xfe\x60\x09\x02\x2d\x33\x4f\x04\x75\xd5\xc2\xcb\x8c\xdd\xf6\x61\xa4\xba\x05\x1d\xf3\x87\x4c\x45\x2b\x21\x05\xdd\xda\xd6\xfb\xf0\xe3\x29\x19\xc6\xee\x79\xd1\x53\x3c\x33\x1b\x91\xc9\x04\xeb\x87\x63\xf9\xb5\x85\x4a\x3e\xc0\x21\x02\xa4\x39\x32\xe7\x3d\x8a\xe4\xe0\xb9\x72\x0a\x1a\xfb\x94\xee\x24\x90\x5a\x31\xba\x69\x6c\x2e\x20\x01\x98\x54\x4f\x4e\x60\x99\x71\xf4\x06\x17\x64\x11\x98\x89\xb3\x44\x7f\xe5\x6d\x3b\x3d\x8a\x25\x65\x7a\xaa\xcd\x98\x1b\xfa\xa4\x5e\xeb\xc0\xad\x10\x51\x93\xf1\xe5\x63\xaf\x6b\x02\x53\x89\x09\x0f\x03\x2e\x3e\x3a\xde\x64\xda\xb8\xb1\xcf\x4f\xfe\xb6\xae\xb3\x8d\xdc\xa0\x44\x15\xa6\x6c\xc3\x42\x83\x52\x47\x6b\x75\xe3\xea\x19\x2b\x90\xd8\x61\xd0\x2a\xca\xfb\x3c\xfb\x9d\xdb\x4d\x58\x62\x0c\x82\x92\x32\xb2\xcf\x3f\x98\x7a\xbf\x5a\x93\x3b\x7b\xeb\xd3\x08\xd0\x33\xbb\xb3\x03\x4c\x9c\x5e\x37\x05\x21\xb8\x1f\xf7\xa7\xe3\x4c\xfb\xc9\x09\x48\x2f\xaf\x5e\xe7\xc2\x0f\x64\x6e\xfe\xc3\x75\x18\xbd\xc9\xa5\x71\xc6\xe3\x8f\xa6\xbf\x74\x83\xd1\x66\x8c\x49\x18\x50\x28\x61\x30\xa3\x90\x75\xce\x75\x8b\xd3\x93\x8a\x8b\xe2\xd4\xe9\xf2\x49\x48\x13\x3f\xa0\x4e\x29\x45\x5e\xcc\x57\x90\x5c\x07\x73\x69\x8d\xf8\xc0\x26\xcd\xb1\xc7\x10\x30\x8e\x7a\xcc\x27\xaa\xc9\x98\xf9\xc0\xc1\x74\x09\x3f\x27\x1e\x6b\x2c\x41\xfc\x53\xee\xf9\x30\x7f\xc9\x7d\xf2\x29\xcc\x43\xe8\x0d\x1a\xd4\x55\x82\x00\xc7\x4a\x1a\x03\xcd\x31\x67\xed\x9b\xf7\x8e\x40\xdb\xc4\xab\xb8\x80\xe5\xc9\x0c\x7d\x57\x46\x63\xc1\xca\x5c\x01\x3a\x33\x93\x0e\x8c\x35\x8a\x0e\x09\x39\x92\xb7\xe0\xdd\x43\x70\x9f\xc7\x95\xd2\xa3\xe1\x05\x0d\x03\xce\x5a\x8f\xa2\x2e\xa2\x14\x66\x2f\xd9\x35\xbc\x1e\x9b\xd8\xc5\xb7\x41\xb8\x62\x3f\xc2\x72\x94\x24\x20\x67\xfd\xde\x91\x58\x36\x29\x91\x90\xcd\xd1\x71\xb2\xa1\x00\xfa\xaa\x78\x97\xf7\x27\x41\x93\xd8\x68\xd2\x90\x79\x79\x7f\x12\x33\x7a\xa3\xaa\x30\x9c\x76\x47\x3a\x00\x16\x69\xac\xd7\xfc\xc2\x65\x46\x56\x49\x2d\x1a\x15\xdc\x51\xdc\xcc\xfe\x6e\xfc\x84\xb6\x63\xe4\x27\x68\x37\x00\xeb\xfc\x09\xf9\x7b\x00\xa8\x83\x4b\x95\xdb\x5e\x04\xe9\x2c\x92\xb8\xa7\x9c\xfb\xf9\xa0\x61\xfa\x47\x2b\xd4\x81\xab\xfd\xfd\xf7\xd2\x71\xd1\x72\x82\xa2\x9c\x3d\x66\x26\xbe\x2b\x4b\xa3\x75\xcb\x57\x47\x3f\xf9\x7f\xa6\xc9\xad\xda\x60\xdc\x81\x6c\x2b\x1c\x3b\x34\x65\xe5\x59\x93\xfd\xd5\x5d\x27\xa7\x9c\x22\x21\x57\x3e\x31\xe9\x18\x39\x67\x72\xfa\x47\x2b\xc4\xaf\x90\x26\x69\x4d\x6f\xf3\x2a\xcc\x3e\x7f\x4f\xfa\x54\x94\x88\x90\xa7\xdb\x97\x5d\x5e\xbd\x09\xa2\xe5\x0b\x1f\x35\x24\xea\x95\x14\x3c\xb2\x7f\xef\x7b\xc4\x70\x16\x65\x35\xca\x03\xa9\x52\x99\xdd\x7e\x57\xbb\x03\xaf\xc3\xbd\x40\x2b\x3b\xd3\x43\xfa\x54\xf5\xa2\x4d\x1f\xbe\x3f\x0f\xd1\x2b\xbd\x1a\x81\xed\x75\x87\xd1\x48\x40\xcc\x6c\x48\xa1\x86\xd6\x65\x26\xb4\x84\xda\x2c\x51\xd1\xcd\x6f\x7b\xc3\xe8\x99\x12\xb5\xb9\xe1\xda\xb8\xf1\xd8\xe5\x5e\x85\xd4\x69\x82\x2e\xb9\xb4\x14\xb8\xd0\x2e\x99\x08\xff\x3e\x91\xf8\x13\x3b\xfb\xe6\x15\x6d\xda\x69\xcf\x5e\x38\x3d\x7d\x3f\x21\xbc\xab\xf4\x37\x29\xf4\x58\x3e\x29\xf3\xf6\x7b\x6c\xe4\x4e\x54\x5c\xba\xc4\x69\x49\x7b\xaf\xdc\xb7\xef\x48\xd2\xa7\xf9\x73\xc0\xd6\x65\xb3\xb1\xa2\x24\xca\xf6\xe2\xf1\xc8\x9f\x1e\x1b\x8a\xc4\x65\x80\xee\xb9\xea\x0c\x3d\x5d\xa7\xb5\x3a\x6f\x52\x11\x1b\x8c\xfc\x6a\xad\x91\xc6\x3b\xcc\xaa\x76\xc8\xd9\x4e\x66\xc1\x50\x0c\x51\x2b\xf4\x84\xbb\xf4\x35\x2d\x82\x12\x5c\xe9\x93\xd3\xf7\x9b\x96\xd6\x2a\xf0\xa6\x9b\x10\xf1\xf2\xab\x7b\x31\xb0\xde\x63\x22\xd1\xbd\x19\xc8\x7e\x17\x89\x7b\xce\xec\x2c\xd4\xa8\xec\x17\x65\xce\xdb\x24\xc7\x0a\x97\x57\x02\x34\x01\x38\xbe\x29\x3d\x96\x01\x55\xc7\x3a\x73\x5d\x64\x1e\xf1\xc6\xc3\xed\x0a\x84\x81\x4f\xe5\x46\xce\x9e\xf3\x1e\x86\x3d\x92\x1a\x84\xd6\x8b\x2e\x93\x4c\xad\x9e\x44\x7a\x4d\x37\x41\x87\x3a\x98\x45\xdb\x8c\xa3\xc2\x51\x24\x49\x47\x6b\xf5\x0a\x81\x44\x31\x7a\xf2\xf9\x93\x50\x13\xd4\x61\x90\x4d\x9f\xbd\x4c\x5f\x2a\xd1\x22\x35\x2b\xd4\xa9\x31\xb7\x2c\xe1\x2b\x17\x5f\x97\xfe\x56\x24\x88\x2e\x2a\x87\x11\xe5\x45\x18\xe5\x12\x17\x37\x92\xd5\x9f\x3b\x0f\xbe\xc9\x6f\x8a\x13\x9b\xed\x8d\xd5\x02\x8d\x05\x90\x60\x90\xf8\xa1\x05\x7a\x79\xab\xb4\x55\xe4\x4a\x57\xae\xf8\xae\x4e\xb3\x6d\xc2\x2b\xa9\x7a\xe7\xe5\x85\x08\xb3\x46\xfb\x48\x1b\xaf\x2b\x5f\xec\xd0\x6f\x74\x66\xa7\x5f\x49\x8c\x03\x7a\x06\xf2\xb7\x77\x1b\x39\x20\xf1\xe2\xee\xdc\xa7\x9d\xa4\x5d\x1a\xe5\x7e\x6d\x81\x0a\xcd\x1f\xac\x0a\x25\x75\xf9\x17\x33\x8b\x0e\x9d\x87\xea\xb9\x22\xd4\xb1\x46\xab\xf5\xfe\x57\xf4\xaf\xba\x51\x7c\x73\xc0\x3c\x34\x3b\x64\x81\x42\xa5\x7b\x1e\xad\xa9\xe1\x72\xee\xb4\x7a\xca\xbc\x4a\xdf\x2a\x07\xfb\xb0\x54\x92\x57\xe7\xae\x32\xc8\x0c\x97\xae\x97\x61\x99\xb9\xd7\x07\x0c\x0a\xe6\x7f\x91\x12\x63\x85\x35\x60\xd0\x0e\x1e\xab\xe6\xf7\xf9\xe9\x33\x7a\x8e\xc5\x71\x93\x7e\xbc\xa1\xc2\xe9\x72\xb0\xa3\x89\xa3\xde\x93\x2f\x9a\xd2\x7c\x60\x1e\xd5\x48\xd4\xfc\x33\x2f\xcf\x36\x75\xad\x1c\xe2\xda\x8c\x68\x11\xc8\x8d\xeb\xe3\xd9\x6c\x9d\xf9\x92\xad\xfd\x7d\xc3\x35\xcc\xa5\x8e\xec\xc4\x63\x28\xe5\xf9\xd7\xa2\x64\xad\x7b\x4e\xc7\x4c\x60\x98\x6f\x42\x78\xd5\x0a\x85\x68\x9b\x1f\x76\x29\x6a\x4c\x81\x70\xba\xc4\x9c\x8c\x7c\x2c\x2d\x88\x2f\xb1\x4c\x59\xf7\x10\xb6\xe9\xb0\x04\x85\xde\xcd\x99\x07\xd3\x5b\x9f\xd5\xea\x0e\xe0\x54\xa9\x9d\x0c\x89\xaf\x30\xfc\x42\x7c\x21\x55\xde\x65\x5f\xe6\x97\x93\x74\xdb\x95\x88\x5a\x74\xeb\x26\xb7\xc4\xde\x65\x49\xf4\xec\xea\x04\xb9\x92\x8d\xaf\x26\xfa\x25\xb3\x80\xb0\x2e\xbb\x0b\x85\xab\x89\x57\x05\xd0\x52\x93\x24\x16\xaf\x8d\x57\xd3\x9f\xdb\xa0\xc2\x8e\x6e\x58\xa9\x54\xf9\xa7\x83\xe3\x11\xd6\x21\xaa\xe2\xe1\x7e\x4a\xda\xee\x1f\xed\xbd\x30\xbe\x32\xda\x2e\x85\xf4\x36\xe9\xdd\x6c\xf4\x26\xa2\x97\xad\xa7\x76\xcf\xbf\x8b\x18\xd2\xcc\xd5\x76\x24\xe1\x03\xf7\x0f\x55\xb9\x9a\xb0\x2a\x32\xf8\x9c\xb9\x3b\x56\xc7\x92\x56\xfa\x6a\x38\xfe\xd3\x07\x8c\xb1\xc3\xf5\x01\x03\xcf\xb9\xf8\xe2\x98\xb1\xc4\xf4\x54\x75\x35\x89\xcf\x32\xd1\xd1\xcc\x77\x62\x4e\x8e\x78\x42\x96\x55\x81\x5f\xe3\x40\xd4\xff\xf6\xbd\xe9\xda\xcd\x23\x6e\x93\x9c\xb2\xab\xed\x1b\xc2\x7e\x5e\x20\x1a\xb4\x25\xaf\x9f\x67\xfa\x87\xab\xe3\xde\xa0\x0e\x03\xb4\x4e\xcf\x40\xee\xa5\x11\xe9\x54\xfa\x23\x6a\x40\xf0\xe9\x75\x68\x8e\xce\xa1\x27\x20\xab\xb9\xc7\xd7\xa6\xb3\xc2\x26\x73\x15\x27\xe3\x02\x23\x7a\x16\xb9\x60\x1e\x6f\x48\x17\x36\xb5\xbe\x2f\x3e\xa0\x9b\xda\x65\xee\xf6\x13\x87\xf6\xa3\x53\x5c\x2e\x9a\xc4\x20\x21\x64\x27\x43\xa2\x3c\x7a\x95\x68\x12\x73\x1b\x44\x30\x52\x94\xc1\xfe\x4b\x0f\x8c\x36\x0e\x37\x89\x29\xe9\xff\x71\xdc\x14\xb3\x6c\xd0\xfe\x94\xb2\xf0\x0f\x1d\x7d\x88\xc0\x36\x15\xde\xee\x36\x25\xc4\xb4\x5c\x54\x03\xdf\x8b\x3b\x93\xdf\xbb\xd6\x50\xcd\x4f\x5a\xa9\x57\x1b\xb4\x45\x49\xc0\x89\x85\x11\xaf\x7b\x24\x39\x34\x1d\xa0\x45\x93\x1d\x74\x37\x1a\xa6\x0a\xe2\x07\xd2\xab\xb2\x67\x20\x77\xe9\x83\x49\xd7\xb7\x1f\xbe\xdd\xf6\xbe\xa1\xa8\x78\x8c\xce\xc9\x75\x77\x1b\x7a\xc9\x0e\x27\x06\x93\x7d\xed\xde\xf4\xf3\x44\x19\x8d\x86\xf1\x7d\xe5\x9e\x11\x48\x08\x21\x56\x61\xcc\x1e\xee\xc4\x3c\x4e\xcf\x47\x39\xc5\x8e\x57\x91\xdd\xaa\xeb\x2a\x2e\x92\x75\xb3\x86\x54\x38\x81\x04\x80\x4c\xbd\x16\xab\x34\x80\x3a\xbc\xe4\x21\x7d\x6d\x8b\x36\x2f\xc2\x34\xa7\xcc\xfc\xac\xfe\x58\x40\x3b\xbb\x05\x99\x3a\x0c\x64\x36\x3c\x9b\x34\x4a\x79\x20\x4b\xdf\xaf\x3f\x74\x9e\x11\xe8\xa3\x3d\x26\xad\x2d\xd5\x26\xfb\xc2\xb6\x33\x51\xc3\xcb\x07\x3a\x5e\x47\xd1\x88\x3c\xcc\x63\xba\xbb\x9f\xcd\x3e\x6a\xe4\x5d\x09\x22\xda\xc8\xe6\x17\xb6\x31\x24\xeb\xdc\x05\x53\x78\x45\x5b\x7a\xde\x00\xb1\x56\x38\x77\x18\xc8\x10\xd7\x14\xb7\x26\x7b\xd1\xb2\xd1\x68\x5a\x28\x35\xf7\xa4\xa1\x78\x7e\xf4\x61\x39\xac\x5c\x45\xaa\xa4\x97\xd5\x90\x51\x52\xee\x86\x43\x7a\x99\x1c\x5a\x8e\xee\x27\x65\x57\x90\xb9\xda\x68\xc5\x82\x9f\x08\xe3\x8a\x61\x9c\x9d\x1f\xa2\x06\x60\x2c\x50\x13\x87\xe4\x11\x6b\x47\x21\xb5\x08\xcf\x67\x35\xae\xb4\xfa\x7f\x6b\x66\x43\x75\x1a\xc5\x64\x0f\x33\x72\xb3\x7b\x56\xc8\x13\xb9\x12\x54\xd4\xe3\x57\xfa\xf9\xa1\xf2\xbd\x95\x1c\xe2\x82\xb3\x68\x78\xc9\x3d\xe7\x1b\x15\x13\x75\x3d\xc5\xf6\xd6\x69\xd2\x5d\x6b\x74\x78\xe8\xa5\xa5\x12\x17\x36\x96\xf7\xfa\x73\x56\xcb\x10\x7b\x35\xe2\x98\x39\xcb\x40\xee\xca\x77\xd3\x41\xd7\x81\x2b\x5e\xbd\x9a\xe1\x6b\xe2\xfc\x22\x96\x17\x6c\xeb\x1b\xfd\xe4\x09\x84\x08\x8a\xc5\x7b\xa3\x23\xf3\x6f\x4b\xd2\x91\xb5\xc5\x03\xa1\x24\x53\xb3\x7b\x57\x1a\x48\x61\xb0\xac\x91\x9c\x88\x6d\xc5\xb3\xd3\x40\xfa\xab\xa7\xc3\xc2\x17\x7a\xc2\x4f\xbc\x88\x29\x0f\xd2\xba\x24\xfa\x73\xc3\x6f\x32\x55\x38\x88\x00\x46\x75\x8c\x6e\xb9\xfa\xba\xf4\xe1\xee\xea\xec\x9c\xd1\xd9\xd9\x29\xc3\x70\x7e\xec\xc3\x72\xed\xaf\x70\xcb\x8e\x04\x8e\xe7\x2e\xde\xa2\xbd\xfb\xe6\xc0\x1d\xe3\x2e\x18\x6b\x5e\x90\x7e\x45\xc1\x87\xc3\xef\x1e\x44\xed\x53\x4b\xb0\x7a\x74\x09\x6d\xb9\x4b\xfe\x59\xea\x36\x18\x95\xf9\x47\x79\xb7\x09\xc0\x29\x2b\x40\x4d\xf6\x47\x2e\xa2\x35\x61\xf8\x45\x66\xd6\x92\xb3\xf1\xcc\x8f\xe2\x3e\xd9\xbc\xae\x24\x44\xf4\x63\x29\xa8\xdc\xfb\x87\xd2\x45\xf4\x9c\xf9\x2a\xfd\xbd\xaa\xdf\x50\x0e\xe6\x9e\x1c\x64\x64\xfe\x32\x58\xa7\xaf\x93\xd1\x1e\xfa\xf5\x7b\xe7\x9a\xf5\x8e\xac\x91\x13\xa5\xd7\xe3\xbb\x90\x5e\x5d\x85\x7b\x54\x2a\x7b\x0e\x9b\x84\x7c\x7f\xcb\xb4\x45\x1b\xd1\xd5\x7c\xa9\x31\x38\x0f\x9c\xd8\xab\x33\x7b\xbb\x6b\x3a\xca\x97\x55\x7f\x19\x14\x5d\x96\x98\xb8\x22\x66\xd1\xa4\xf9\x7c\x8e\x31\x03\x6b\xb0\x22\xc8\x61\xca\x27\x3c\xf6\xa0\xe1\xe9\x14\xb8\xb6\x27\xbb\x0a\xc7\x9f\x33\x67\x01\xa2\xc1\x1a\x5c\xa8\x14\x6b\x37\x72\xca\x8a\xce\x0f\x0f\xe0\x75\x5d\xff\x2c\x2a\xbd\x1c\x6a\xf9\x5c\x69\x66\xe6\xae\x3b\xa9\xbf\xf5\xec\xae\x19\xb3\xe6\x76\x46\x7b\xac\x79\xaf\xe9\xa8\x5e\xe3\xc2\xa3\x52\x5f\x15\x36\xd8\xe6\x13\x66\x4d\x2d\x68\x0c\x3f\xce\x7e\x49\x53\xf1\x1a\x0c\x22\x58\x76\x71\x7b\x70\x53\xde\x13\xbb\x0d\x46\xaf\x72\x4c\x4e\xa4\x2d\x4d\x6b\x0a\xc1\x7d\xa9\x34\x22\x37\xf3\x86\x23\xf8\x94\x81\x77\x04\x74\x7b\xae\xbb\xdd\xc4\xa0\x12\xcf\x8a\xca\x8e\x78\x0b\x4f\x5d\x31\xde\xc8\xa3\x6b\xac\x1c\xbd\x04\x65\x82\x95\xfd\xf8\xe9\x31\x4c\x0f\x5c\x64\xea\xca\xf6\xf9\x65\x43\x31\xcc\x72\x98\xeb\xf3\x94\xed\x65\xe6\x7b\x43\x30\x37\x81\xb6\x24\xa0\xe3\x82\x3b\x47\xa3\xf4\xdf\x2d\x17\x7a\xa9\xeb\x49\x59\x80\x1b\xf6\x1b\xce\xdd\xc4\x4a\x3a\x3a\xaf\xdd\x8a\x54\xd4\x48\xdd\x49\xe9\xa3\xe6\xee\x98\x67\x78\x1e\x06\xa2\xca\xbc\x8a\xe2\xd4\x45\x37\xc0\xe5\x97\xc9\x8c\x63\xf6\xdc\x0e\x90\xea\xce\x4f\xbe\x67\x24\xe6\x62\x41\x87\x17\xd2\xaf\xef\x5d\x2a\x4b\xbf\x5a\x20\x6c\x2a\x64\x14\xc8\x0f\x5a\x32\x4c\x5d\xdd\x60\xc1\x28\xf1\x11\xd7\xbb\x3a\x84\x14\x1d\x22\xf5\x85\xb2\x63\x27\x26\x71\xc8\xe7\xc0\xf8\xa3\x6b\x53\x1f\xc5\xdd\x98\x99\x38\xbf\x03\x53\x56\x67\xcd\x86\x8f\xba\xe5\x8e\x53\x0c\xba\x5c\x3b\x49\x0f\xb7\xf6\xeb\x69\xd2\x34\xe2\x90\x8e\x8b\xda\x80\xba\x37\xda\x48\xa5\x8a\xd7\xe2\xde\xf5\xf7\xd6\x9b\x1d\x0e\x07\x08\x81\xf2\x50\xfd\xeb\xd1\xd1\xed\xc9\x83\x0c\x33\x3f\x1f\x9d\xd4\xdf\xbd\x6d\x2a\x9b\x03\xf9\x8f\xb8\x06\x0b\xc4\x21\xa2\x8a\x33\xe2\x81\xdc\xa5\x0f\x69\x1c\xcb\x4c\x90\x7c\xdc\xb1\x0c\x0f\x3f\x6a\xb4\xc8\x41\x84\xff\x5b\x9d\x63\xd1\x4d\xed\x44\xe5\x48\x89\xc6\xfa\xac\x99\x7f\x3f\xdd\xd8\x21\x0e\xf5\x2a\x0a\xd4\xbf\xe4\x90\xbc\xa4\x97\x0a\x50\xcd\x50\xfd\x96\x3f\xe3\x7e\x4b\x5f\x85\x04\x5e\x3c\x3e\xfa\xe1\x4b\x72\x47\xb4\x38\x24\x75\x21\xed\xd2\x1d\x9e\xcf\x28\x41\xa2\xe3\x0f\x28\x67\x15\xa0\xc6\x16\x1c\xda\xa0\x00\x0e\x7d\x78\x87\x91\x09\xb7\x3c\x9f\xd6\x14\xa0\x33\x73\xce\x4d\x6d\xb0\x27\x05\x02\x96\x9d\xa6\xfc\xdd\xe9\x40\x3f\xeb\x92\xd9\x12\x9e\xf6\xe5\x9b\x90\x99\x63\x20\xac\x0a\xf1\xda\x04\xfe\x72\x53\xba\x74\x57\xa3\x28\x78\x95\xb6\xc3\x6c\xf2\x5d\xa8\xb0\xe1\x2e\x05\x5f\x23\x99\x45\xbd\x2f\xaf\xb3\x42\x4f\x94\x34\x30\x81\x7b\xe3\x13\x76\xca\x92\x4c\x90\xba\xf4\xa1\xc8\xdb\x0a\xa1\x1e\xfd\x09\xed\xf8\xbc\xc5\x48\xfe\x5a\x81\x60\x69\xe0\xf0\xa4\x9b\xcf\x47\xb9\x18\x18\x80\x42\x1f\x23\x9d\x66\x7e\x3d\xab\xa0\xc2\xcc\xb3\x58\x3d\x7a\x44\xb8\x70\xdf\xec\x35\x2d\x62\x03\xd7\xaa\x24\x24\xca\xdc\xf6\x1d\x67\xa8\x64\xac\x59\xe8\x09\xd7\x4b\x91\xf1\xc2\x6a\x22\xda\x88\x59\xe1\xff\x3b\x98\xce\xc7\x4a\x5c\xb8\xd4\x71\x94\xf0\x5e\xbc\x37\xfb\x0e\xa3\x9c\x1d\x61\xfe\x32\xbc\x43\xf6\x7b\x16\xb9\x3e\x2b\x12\xc7\x61\x9e\x1c\xda\xe4\x47\x2c\x4c\x47\xcd\x24\xa5\x8c\x3b\x97\xc3\x06\xa7\xcf\x52\x95\xd2\xba\x22\xd3\xd1\x7b\x0c\x2c\xb0\x28\x07\xd4\x53\x5b\x27\x3b\xfe\x61\x24\x82\x9b\x88\xba\x65\x17\x6c\x35\x40\xea\x81\x53\x52\xdb\x3e\xbb\xcf\x40\xca\xd7\xeb\x54\x6b\x9f\x66\x26\x1b\xa0\xb7\x7a\x14\xfc\x95\x59\xde\x85\x4b\x4d\x5c\xaf\x6b\x11\x0f\xf8\xff\xb0\x1d\x7f\xb5\x1f\xf5\x3c\x7d\x2e\x00\x3e\x75\x03\xb6\xa4\x75\x08\x8b\x05\x72\x72\xf7\xdc\x87\xd9\x7c\xb0\x57\xc2\x2f\xd4\xd5\x00\xcd\x0a\x7c\x5f\xf2\x28\x2e\x78\x33\xb9\x16\x4b\x52\x99\xee\xca\x31\xe3\x8c\xb0\xcf\x1c\x80\x6c\xca\x7b\xf4\xa3\x0f\x9c\x7f\xca\xab\x46\x14\x51\x6b\x2c\x77\xda\xde\x74\x1e\x5f\x63\x9e\x1c\x45\x41\xb7\x42\x1d\x4c\x7b\xaf\x42\xe0\x72\xb7\x2c\x31\x5b\x1f\x7f\x1f\x0d\xd3\x2a\x44\x94\xa3\xa7\x5e\x7e\xc2\x90\xe6\x08\x84\x1d\xdd\x26\xa9\x6d\x93\x5f\x74\x78\x72\x7b\x42\x2c\x25\x46\xd3\x07\x76\xd4\xdd\xe6\xdd\x5e\xec\xa5\xd0\x0f\x02\xfd\xec\xd5\x7b\xcf\xfd\x7b\x57\xb0\x84\xc6\xe4\x2f\x53\x50\xf9\x99\x5d\xdd\x33\x66\xcd\x9d\x35\x63\x2e\x78\xec\xe4\x6f\xd9\xfa\xe1\xa4\x00\x95\x95\xe4\xf7\xc7\x8c\x37\x08\xad\x90\x88\xaf\xbe\x42\x85\xb3\x73\x5e\xd5\x86\x50\xa7\xb0\x37\x79\x79\xad\x31\x74\xa9\xc0\x5c\x46\xe6\x3a\xdf\x7e\x02\xb9\x49\x43\xc3\x1e\xaa\xfe\x79\xfb\xf4\x02\xf6\xf2\x8a\xeb\x42\x39\xbf\x60\xa9\xee\x04\x17\x89\xc4\x9d\xa4\x3f\xeb\x2b\x06\xff\x06\xba\x12\x71\xf7\x79\xfd\xfb\x23\x8d\xeb\xbc\x2c\xef\xa8\x31\x83\xc7\x9b\xd5\x9a\x4a\x67\x14\x5d\xf3\x97\x77\xa5\xb7\x3b\xaf\x4b\xb9\xf8\xe8\x97\x4f\x2e\x4c\xe7\x2c\x35\x6a\x3b\x44\x4c\xaf\x61\x41\x86\x59\x87\x8d\x54\x97\xf1\xb8\x22\xc9\x3c\x3c\x3b\xfd\x54\x36\x91\x08\x9b\xdf\x6e\x98\x84\xda\xde\x56\xc5\xe5\x0e\x2f\xb7\x93\x6f\xbe\x19\x1a\xf7\x7a\x45\x04\xae\x04\x54\xc3\xed\xec\x74\xe8\x9b\x4f\xa1\xe8\xd1\x6e\x2b\x3f\x83\xdb\x16\x51\x26\x26\xd4\xc8\x23\x3f\xe6\xc0\x30\xf4\xf9\xd2\xbe\x3b\xbb\xf2\x15\xe4\xbf\x21\x58\x4d\xa9\x94\xfd\xe9\x74\x64\xc0\x1c\x08\x97\xfa\x6d\xe5\x61\x66\xf4\xbc\x64\x60\x8c\xc5\xdc\xc3\x5f\xdd\xd1\x06\xbb\xef\x54\x5b\x34\xbb\xfa\xb1\xb3\xb0\x18\x4e\xa9\xa4\xa4\x2e\x37\x3d\x3b\x11\xff\xbb\x84\x0b\x9b\x17\xc1\x4f\x9e\xbd\xd0\xa8\x56\x18\x3f\x65\x67\x22\xf7\xec\x63\x7a\x7c\x4b\xa3\xf0\x3f\x71\xb5\x31\x87\x25\x0d\x99\xd0\xe8\x28\xbe\x65\x9f\x01\xad\xe1\x5c\x28\x5e\xe2\x69\x23\x4d\xb2\x84\x50\xda\x2b\xf9\x9b\x8f\xa6\x37\x8b\x47\x7c\xe6\x95\x24\x0d\x29\x96\x0f\x09\x7a\x35\x41\xd3\x6d\xe7\xd6\x7e\xed\x61\xfd\xca\x9a\x15\x2a\x28\x29\xca\xfe\x4e\xf8\x59\x03\xb0\xe8\x04\x56\x35\xe6\x70\xe5\x7e\x15\xea\xb4\x19\xba\x03\x51\x61\xba\xdf\xf0\x79\x20\xbe\xcf\xfc\xc0\xa6\x92\x64\x9b\xdd\xf1\xfa\x79\x46\x24\x77\x6a\xc4\xb0\x5e\xea\xdd\x80\x1a\x46\xd4\x87\xad\x33\xe3\xc9\xb4\x36\x80\x67\x11\xd7\x26\x4e\x21\xca\x86\xeb\x5e\x02\x73\xfb\xf6\x52\xf3\x54\xd8\x34\xb6\xf4\xfe\xd1\x3c\x99\x50\x5c\xc5\x6c\x1b\x40\xc2\x89\xa4\x40\xfe\xd6\x3e\xbd\x07\x9b\x94\x95\x55\xaf\x79\xcb\x20\x13\xa3\xc8\xb8\x60\x7e\x4b\x0e\x77\xff\xb2\xd8\x10\xa0\x00\x0b\x1b\x2a\xe2\x31\x5d\xc9\xa0\x56\x83\x70\x9f\x8c\x0e\x3f\x94\x66\x81\xd0\xfa\x90\x8c\x11\xc9\xb0\x4f\xef\xa1\xe2\xfe\xb6\xda\x18\xb8\xf8\xd1\x25\x2c\xb7\xc5\x21\x5f\xd1\x14\x58\x5f\x0a\x30\xf1\x79\x59\x9f\x14\xae\x24\x5e\x7f\xcb\xaa\x32\xdc\x61\x5d\x7b\x08\x59\x55\x13\x41\xfc\x8a\x44\xf9\xae\x5b\x67\xe6\xdc\xae\x2f\x88\x07\x89\x75\xf8\x0b\x64\xae\x59\xa2\xca\xdc\x3d\xfc\x69\x9f\xc1\x1c\x60\x02\xd4\xba\x25\xc9\x69\xcb\xd3\xb1\x34\x5a\x8d\x7b\x15\xea\x56\x39\x32\x1e\xcb\xfd\x6e\x8f\x1e\xbf\xce\xe9\x00\x5f\x95\xdc\x21\x0d\x73\xe5\x4c\x35\x79\x5b\x1b\x93\x7f\x6c\xc8\xce\x6f\x94\x2c\xff\x6e\xa7\xc9\x10\x12\x34\xc6\x83\x3d\xd3\xab\xc1\xe0\x34\xb6\xeb\x3c\xe7\xc5\xd1\x88\xfb\x18\x6b\x5b\x47\xff\x65\xf3\xdd\xfa\xab\x75\xcd\xed\x94\xa2\xe5\x03\x39\xde\xa1\x7f\xa1\xc9\xfc\x8a\x8e\x2e\xd7\x6c\x45\xa2\xdb\x84\x16\x7a\x55\xab\xf5\xbc\x85\xe9\xfd\xc0\x5c\xd5\xb1\x95\x95\xef\xaf\x15\x2f\x56\xae\x6b\x51\xf6\x82\xf2\x67\x28\xe6\x6d\x53\x10\xb7\xec\x48\x02\xcf\xdb\xf7\x1b\x6d\x77\xf0\x7d\xf0\x9d\x96\xac\xab\xf2\x43\x0f\xa9\x91\x8e\x4f\xeb\xc4\xab\x60\x79\xe7\x7c\xfe\x31\xd4\x16\xf1\x3c\x2a\xa1\x43\x4b\x27\x69\xad\x75\xc1\x63\x45\xca\x1d\x26\xc6\x15\x6c\xf4\x20\xe1\xca\xec\x47\x51\xb2\x02\x29\x11\x3c\xee\xe2\x03\xf2\x82\xbf\x2a\xaa\x41\x09\x8b\xfd\x78\xc7\xbf\x82\x54\xca\x2b\x8c\x96\x52\x35\xef\x4f\x86\xa0\xa9\xa7\x74\x58\x82\x7b\xe4\xb6\x9d\x06\xb8\x82\x04\x54\xa4\x1c\x73\x16\x75\x27\x01\xde\xa6\xfd\x68\x83\x2f\x43\xb3\x36\xa9\x36\x56\xe8\x09\xb3\x0f\x23\xe7\x31\x2e\x04\xb8\xa3\x67\x57\xdf\x27\x33\xbb\x22\x75\xa9\xea\x3e\x6f\x18\x8a\x04\x48\x98\xcf\xfa\x65\x4f\x29\x3b\xe9\xb9\xf1\xe6\x1b\x54\x7e\x25\xaa\xd3\xb3\x7c\x89\xfc\x5b\x65\xc1\x3d\xa9\x78\x9f\x3b\x63\x9f\x31\x57\xa2\x9e\x47\x94\xf3\x78\xf6\x67\xca\xb3\xa5\xee\x28\xa8\xf1\xea\x11\x29\xe5\x5a\xf9\xbe\xc5\x31\xd4\xff\xa7\x44\xda\xd2\x87\x37\xb8\xe7\x62\x88\x73\x42\x3d\xd4\x47\xe8\x1f\x1e\x36\xd2\x04\xe2\x57\x68\xd3\x4b\xcd\x53\xfe\x63\x9f\x69\x5c\xcf\x6a\x44\x30\x47\xf9\x0b\x67\xbf\x8c\xb4\xf6\x3c\x87\xd2\x86\x2c\x6d\xb6\xed\xd1\x8c\x72\x8b\x73\x61\xc7\x6e\xd8\xe6\xd5\xf1\xaa\xe1\xeb\xe8\x39\xa4\x05\x50\x05\x88\x73\x9b\x2f\x35\x64\x00\xd1\xd8\x2f\x3f\x7c\xad\xc1\x8a\x61\x75\x87\xd7\x88\x1f\xfb\xdf\xe7\x46\xac\xc3\x4e\x72\xa2\x28\x71\x41\xd3\x0e\x26\x69\xb9\x57\x87\x9a\x63\xd1\x2a\x89\x24\xbd\x6a\x35\xa4\xce\x7d\xc8\x65\x84\x8a\x1a\x95\xa5\x50\xe6\xeb\xcf\x1a\x98\x41\x4a\xaa\x31\xdc\xfc\xaa\x27\x8d\x9b\x97\x88\x2a\xbc\xf2\xf0\x99\xeb\x92\x1d\xd8\x4f\x1d\x84\x93\xfb\x00\x2a\xff\x79\xe0\x17\x78\xa9\xe0\xf3\xa6\x2a\x5e\xf3\xeb\x77\x4c\x6c\xb6\x4d\xce\xbc\x3a\x77\xed\xa4\x71\x1c\x7e\x3c\x6c\xd3\x96\xf4\xb8\xc4\x9a\xca\xa7\xfa\x97\x7b\xd2\x3f\xd0\x4b\xea\x24\x16\x8c\x85\x56\xd1\x68\x65\x18\x35\xb3\xbb\xe0\x73\x60\xec\x7e\xb3\x4f\x6e\xb8\x99\x33\x66\x77\x75\x16\x7a\xc2\xc6\xc9\xf6\x46\x95\xfa\xd2\xb9\xb7\x3b\x86\xa1\x85\x22\x92\xd5\xf7\x51\xc3\xdd\xb2\x42\x44\x83\x7a\xca\xf8\x27\x3f\xb1\xdb\xf8\x73\x3c\x10\x05\xc5\x75\xfc\xe8\xfd\xe9\x5a\x84\x30\x51\xe7\xca\x0d\x52\xc7\x82\x85\x5b\x0d\x2a\x2f\xb3\x04\xf7\x2c\x5e\x67\x96\x3a\x63\x56\xb6\x6d\xc7\x36\x88\x4f\x9d\x96\x12\xa7\xf9\x46\xe7\x28\x84\x25\x6d\x50\xc1\x4a\x4c\xa2\x1e\xd6\xec\x35\xa4\x5a\x6b\x45\xe6\x83\x56\xa7\xec\x4e\x7f\xdf\xb0\xfb\x03\x52\x01\xcc\x23\xa0\xbc\xb9\xfd\x5e\x3d\x3e\x63\x35\x06\x12\x05\xff\x65\xf4\x6f\x95\x06\x87\xd5\xea\x90\x39\x80\x3d\xd1\x90\xa5\xe3\x9e\xaf\xb2\x19\x43\x8a\xd6\x94\x6d\xa4\x1e\x15\x0d\xd9\x1c\xcf\xde\x92\x57\xec\x4a\xe6\x96\xcb\x72\x22\xf9\x85\x25\x7a\x17\x97\x99\x50\x88\xdb\xf0\xb4\x91\xc6\x0b\xd0\x28\x82\xfc\xa8\x05\x48\x57\x2c\xda\x67\x6a\x61\xc2\xb3\x8f\x18\xec\x1b\x22\x3b\xd0\x51\x94\x59\x2e\x4c\xa1\x4e\x3b\x0a\x77\xf2\x75\x6f\x2a\x2a\x6f\xb8\x8e\xcb\x3b\x62\xca\xeb\xc3\xb7\x8f\x48\x57\x6e\xd3\x17\x17\x7a\xc2\x97\x2b\x23\xd0\xda\x45\xe1\x2e\xca\x05\x17\xda\xc6\xb8\xd7\xb2\x78\xad\x4e\xa0\x93\x27\xaf\xb2\x8d\x48\x32\x09\x5a\xd2\x10\x53\xdf\x0d\x0d\x13\x10\x11\xf8\x44\x4a\xaf\xe7\xba\x3a\x14\xed\x94\xc8\x14\x64\x0f\x6a\x4c\xce\xec\x98\x3f\x0f\xda\x05\x47\x90\xad\x0b\x81\x5e\x50\xe6\xcb\x83\x14\x58\x54\x1e\x43\x38\xa5\x55\x83\xf9\x58\xe3\x6e\x54\x2a\xa9\x3c\x82\xaf\x50\x0a\x0d\xca\xb0\x3a\x8a\xc9\x2f\xa0\x34\x28\xf0\x03\xb0\x7f\x08\xff\x13\xe9\xf9\x59\x82\x43\x61\x99\x1b\x21\x15\x10\x0a\x8b\xfc\x68\x31\x58\x3b\xc9\x76\xdc\x33\xf1\xcd\xcf\x7c\xe5\x4a\xf4\xb3\x97\x10\xc7\xac\xc8\x85\xcd\x5d\x6d\x1c\x18\xfe\xf7\xa6\x71\x3a\xf0\xb5\x17\xef\x99\x69\xe8\x29\xa8\x07\x76\xef\xb9\xbb\x9f\x96\xdd\xe0\xe5\xfd\x3e\x4f\x92\xa7\xdf\x0e\x1d\x65\x5c\x73\x4a\xd2\xff\x9c\x05\x32\x45\xb9\x22\x10\xbc\xae\xc8\x3c\x21\x5d\xac\x17\xb3\x25\x17\xfd\x78\x2f\x92\xe0\x8c\x5e\x74\xdf\x13\xa3\xcc\x82\x6b\x3e\x38\x46\x7e\xe9\xd8\x70\x75\xf9\x7a\x7e\xa1\xea\xf2\x26\x1c\xc4\xdc\xbb\xe9\x7d\xe1\x72\x97\xfa\x15\xea\x50\xcf\x53\xbd\xa7\xc7\xef\x36\x86\x6e\x45\x20\xc0\xd2\x38\x36\x66\x7e\x7b\xa9\x21\xdc\x10\x15\x72\xc9\x38\x27\x77\xfb\x23\x09\x0a\xc6\x0e\xa2\x7f\x08\xef\x89\x93\x7f\xd1\x66\x59\x36\xcf\xb8\x87\x78\x8d\xf5\x33\x02\xa5\x19\x6c\xf9\xde\x67\x10\x3f\x4f\x50\xcf\x77\xe4\x80\x60\x81\x31\x76\x21\xc5\x6a\x85\xc8\xdf\x54\x98\xb6\x65\x43\x8c\x62\x28\xba\x05\x7c\xaa\x44\x85\xec\xe3\x72\x2b\x4f\xfd\x24\x87\x67\x7c\x62\x95\xfc\xff\x2b\x29\x81\x2f\x71\xc5\x32\xd3\x9a\x20\x51\x3f\x59\x70\x8f\x01\xb7\xad\x10\x35\x8d\xca\x17\xef\xbe\xc0\x1c\x71\xae\xe2\x6e\x7b\x77\xf6\xe6\x83\x3a\xfc\x77\xcd\x98\x03\x56\x3d\xad\x9d\xb2\x9e\x58\x54\x73\xb1\xea\xfa\x93\xeb\xb1\x04\x70\xe0\x44\x5f\xfe\x07\xaf\x1b\xe3\x68\x56\x0b\x1c\x9f\xb8\x14\xbc\x80\x54\x6d\xfa\xf1\x17\x4c\xeb\x30\x87\x51\xd5\x0f\xcc\x3c\xb0\xce\x18\x93\x3b\xac\xcc\x8a\x0e\x55\xe5\xda\xd7\x2b\x48\x38\xa5\x42\x9a\x8a\x43\x97\x3b\xb4\x2e\xbd\xea\x25\xe8\xa2\xe3\x6b\x71\xd9\x09\x93\x95\xaf\x74\x9e\x54\xeb\xf2\x27\x6f\x19\x2a\xeb\x6e\x2f\x4f\x3c\x1f\xfe\xf5\xe2\xf4\x56\xee\xea\x52\xb3\xba\xaf\xad\x46\x5a\xb4\xc4\xaf\xc2\x65\xf4\x8f\xcf\x61\x29\xbb\x22\x15\x12\x9a\x9e\x7b\xf6\xe6\xa1\xb8\xad\x14\xfd\xe1\x11\xf5\xb3\x90\x16\x58\xb1\x18\xeb\x20\xf4\xcd\x4b\x37\x6b\x16\xc4\xe2\x45\xe4\x49\x53\x0c\xdb\x09\x6a\x45\xa6\x0d\x8a\xb2\xab\x2e\xd5\xfd\x8f\x16\x82\x4d\xfd\xec\x59\xfc\xa8\xf5\x28\x0f\x0e\xeb\x07\x47\xe0\x7c\x25\x2a\x23\x81\x25\xb5\xd1\xe0\x56\x11\xe6\x80\xd0\xb1\xd2\x5b\xf8\xc7\x37\xd5\xec\x81\x12\x01\x13\x96\xdf\xdf\x3a\x02\x67\x0d\x0d\xa5\xb2\x7f\x7e\xa7\xfe\x76\xb1\x8b\x51\x74\xbd\xec\x36\x08\x4d\x40\x06\xa3\x71\x63\x22\x2f\xf6\x1a\x81\xa3\x3b\x7e\x0f\x4f\x3d\x65\x68\x2f\x30\x1a\xf8\x14\x09\x24\x5c\xb2\xca\xc8\x13\xb8\x1f\xdd\x79\x20\x9d\x58\xe8\x09\x5f\x3c\x68\x4a\xde\x7a\x3e\x15\xca\x1e\xed\x7c\x24\x2a\xc9\x5c\x9b\x5b\x15\xb9\x1c\x99\xbb\x6e\x42\x86\x7e\x15\xc1\x25\x08\xa8\x38\xf4\x3c\x33\xed\x89\x4a\xf1\xe9\x58\x88\xf5\x5b\x9b\x62\x23\x6d\x51\x22\x22\x2a\x47\xfe\x7a\xbc\x0d\x9c\x12\x8f\x42\x55\x94\xfa\xcd\xe3\x06\x2e\x4e\x09\x17\x28\xd9\x9d\xd1\xfd\x29\xf4\x43\x99\xda\x4a\x13\xb3\xfb\x49\x84\x06\x0b\x80\x38\x12\x17\x62\x06\x15\x80\x5b\x3e\x2f\x2a\x87\x97\xcc\xee\x6d\x48\x45\x18\x3d\x7b\xee\xbc\x33\x92\x78\x4e\x7c\x38\x22\x17\xde\xae\x3b\x42\x45\x6a\x91\xc0\x4b\x2c\x16\xe7\xce\xd6\xf0\x15\x56\xab\x0b\xe6\x71\x57\x09\xcc\x87\x85\x9b\x4c\xbc\x87\x8e\x76\xff\xfa\x02\xee\x0b\x2a\x0f\x2a\x89\x45\xfa\x6e\xfe\x3c\xe3\xd7\xca\x15\x5f\x36\x62\x12\x76\xd5\xbd\xc7\xf5\xaf\xbb\x51\x1e\x1d\x43\x21\x06\x32\xdf\x70\x8d\x74\x81\x39\x4e\x6c\x8e\xbc\xee\xb0\xf2\x93\x22\x7d\x90\x0b\x5d\x38\x66\x28\x2a\x1c\xa5\x87\x79\x1e\x4f\x7f\x63\x86\x7f\xd7\x06\x34\x52\x90\x6e\xfc\x03\x99\x7b\x43\x23\x64\xd5\xea\x7e\x2b\xd1\xd4\xcc\x75\x15\x11\xe6\x98\x2a\xa7\xd6\x78\xea\x30\xfc\x26\xa4\x52\x1d\x14\x89\x90\x86\x57\x77\xbc\x2a\x73\xf8\x32\x71\x1c\xd9\x88\x99\x71\x33\x22\xa9\x30\xcf\x83\x57\xfb\xbf\xca\x2e\x89\x12\xe1\x52\xcf\x77\xa9\x07\x19\x0c\x79\xdc\x00\x56\xd7\xa8\x00\xc6\x92\xcc\x41\xe1\x83\xd7\x5c\x3b\x0a\xd1\x35\x53\xb2\x0a\x97\xc9\xdb\xf9\x93\xa4\x82\x2b\x1b\x61\xcc\x7d\x24\x0d\x5f\x65\x6c\x23\x8b\xc8\x78\xd2\x52\xfa\xd2\x83\x57\x6b\xfd\x67\x40\x4e\x65\x87\x3d\x82\x51\x1b\x54\xa9\xfe\xe4\x83\xb7\xcc\x9a\xcf\xab\x13\x55\x60\xc3\x17\x72\xc6\x18\xb1\xdb\x12\xac\x56\x23\x89\xa9\xf7\xf5\xaf\x8c\xd4\xaa\x3b\x2d\xd4\x2a\x38\x3e\xc1\x64\x6f\x29\x6b\x3b\x95\x51\xbc\xb7\xb3\xcd\x94\x93\xb6\xb0\x36\xcc\xcd\xf7\xe8\x3c\xa7\x41\x00\xe9\xc9\x8f\xb5\x2b\xf0\x39\xca\x52\x40\x5e\x25\xab\x5f\x68\x13\x80\x61\x55\x24\xca\xb8\xbb\x5f\x6d\x3f\x0a\x33\xf7\xf0\x71\x45\x0d\x5f\x43\x5a\x51\xb2\xa9\xaf\xd8\x8d\xb3\xd3\xfd\xcd\xa8\x12\xae\x32\x97\xa4\xfc\x41\x06\x72\x7f\x39\x80\xa8\xf8\x0d\xce\x6c\xc5\xc9\x29\xf5\xb5\x89\x78\x57\x2b\x5c\xf0\xc6\x74\xd4\x1d\x0a\xcb\xc3\x86\x22\xa6\x44\x00\xbc\xf8\xa3\x86\xe7\x0f\xe8\x84\xa6\x9a\x30\x9b\x9e\x49\xdf\xf4\x55\xee\x55\x98\x97\xd6\x7d\xde\x34\x46\x6d\x4f\xe5\xe1\xa9\x02\xd5\x94\x5b\xe5\xd7\x2f\x06\x0a\x53\xf1\xc6\x46\x04\x9d\x6e\x50\xc8\xc5\x7a\xc2\x5f\x34\xd2\x9f\xd0\xcb\x2b\xae\x92\x50\xd1\xdb\x52\x1c\x42\x1b\xaf\xc2\x64\x96\xfd\xd8\xdd\xca\x23\xb6\x42\x9a\x18\xe7\x3e\xd6\x6e\x83\x86\xaa\xa6\x42\xce\xd6\x67\xd4\x23\x6e\xca\xb9\x2f\xf7\x65\x43\xcc\xcb\xa1\x25\x9f\x79\x7e\x02\xed\x58\x26\xf5\x8f\xae\xa4\xae\x1f\x58\xd5\x16\x42\x43\x0f\xe4\x17\x3e\x91\xec\x4c\x87\xe1\x4e\xe7\xb1\x7b\xce\x93\x59\xb5\xdb\x60\x42\xc6\xca\x36\x84\xf4\x79\xab\xf4\x97\x73\x48\xdd\x03\x26\xea\xba\x65\x23\x50\x06\xc4\xe3\xc9\xc8\x56\xe3\xd6\x20\x9e\x47\x85\x1f\xcf\xec\xf3\x83\xd1\x3e\x6e\x72\x70\x21\xdb\xb1\x0d\xb9\x98\xcd\x2e\xf4\x84\xaf\x38\x67\xea\x03\x2c\x6f\xf0\x7c\xe1\x4d\x24\x6f\x4f\x94\x78\x6d\xee\x7e\xdd\x05\x45\x5a\xe9\x85\x9e\xf0\x4c\x43\x67\x9d\xf6\x51\x61\x31\x05\xf7\xca\xee\x6f\xc8\x54\xf6\x63\x81\x13\x6d\xb3\x7c\x4f\xac\x28\x54\x91\x63\x9f\xf0\x85\xd7\x30\xe6\x55\x69\x1a\x84\x73\x2f\x1e\xa1\xee\x07\x9f\x3a\x0e\x2b\x2b\x43\xa5\xcb\x5d\x24\x5c\x67\x91\xc0\x61\x25\x69\x12\xbe\x7d\x5b\xfa\x35\x57\x94\x8d\x4b\x98\xbb\x54\x37\x24\x05\x65\xb5\x62\x20\x12\xbf\xef\xf0\x87\xb6\xfe\x52\x20\x3b\x40\xed\x58\x95\x7c\xcd\x61\xdd\xd5\x49\x39\x72\xd5\x0a\x3d\xe1\xff\x6e\x1f\x91\xea\xc8\x51\xa9\x03\x7b\xb6\xc1\xcb\x04\x61\x2e\xd5\x14\xd9\xb5\x5d\xef\x36\x97\x90\x1a\xc5\x9a\x5e\xf5\xfc\x29\x65\x61\x60\x0e\x0c\x33\xdf\xce\x91\xba\xa2\x2f\x06\xa2\xec\x28\x0b\xda\xf0\x70\x98\xf6\x1f\x8b\xd5\xfc\x4e\xa9\x7f\xf8\xd6\x66\xb3\xab\x09\x7c\x74\x88\x8d\x90\x17\xfc\x64\x8c\x3e\x94\xb4\x2f\x7a\x89\xf0\xbd\xc8\x62\x0d\x0b\x93\x29\xec\xab\x6f\xe9\xf8\xe1\x37\xe0\x84\xbf\xfe\x86\xd6\x51\xa1\x7a\x83\x83\x89\x99\xd4\xb5\x9f\xd6\x16\x77\x5d\x6a\x69\x1d\xc7\x13\xef\xca\x9d\x51\xe7\x1e\x60\x8d\xc2\xff\xb9\x3b\xed\x51\x23\x68\x59\x82\xdf\x32\x7b\x96\xa2\x08\xd0\xa0\x01\xe8\xd1\xbd\xe8\xeb\x8c\xad\x50\x48\xe6\x03\x86\x5b\x41\xd9\xe1\x45\x95\x19\x0e\x64\xae\x78\xbc\xcd\xdf\x9a\x79\x48\x46\x2c\xff\x85\x3b\x8d\xea\x33\xf0\x79\x8d\x17\x99\xe2\x04\x84\x07\xae\x95\x0a\x98\x8b\x9c\xc2\x1a\x62\x8a\x22\x0d\xe4\xbc\xdb\xe5\xb5\xba\x7c\xf9\x72\x14\x46\x57\x56\x8c\xa1\x64\x67\xa7\x5f\x51\x97\xd3\xd8\x4d\x23\x31\x7f\xcc\x12\x0c\x1c\x34\xc3\x4f\xbd\x3e\xb6\x9e\x52\x86\x41\x85\x6b\xb8\xb7\xa8\x08\x30\x5c\xd4\x65\x27\x39\x5b\x7b\xc2\x48\x7a\x99\x57\x49\xe0\x09\x73\xd1\x87\x58\xd0\x74\x50\xf2\xfa\x47\x2f\xd3\x39\x91\xf4\x4d\xcf\x5e\x55\x42\x12\xac\xd7\x17\x7a\xc2\x7f\x79\x45\xb9\x4a\x80\xaa\x32\x3c\xdc\x3f\xef\xd6\x76\xf6\x02\xa2\xfb\x72\x24\x6d\xc0\x6b\x4c\xf0\x00\x85\xc1\x4f\xdc\x97\xcc\x20\x4a\x89\xbd\xe9\xbf\x1a\x88\x0a\xea\x82\xfb\x5d\x8c\x03\xff\xf4\x0e\x54\xb4\x38\xad\x5a\x1d\x7c\xa2\xbe\x31\x5a\x7e\x71\x2e\x58\x59\x01\xc6\x2e\x33\x6e\xea\x44\xc2\x32\x91\x2a\x5e\xb3\x0d\xf9\x51\x57\xa0\xb9\xb7\xe9\xe9\xb4\xbe\x8e\x52\x10\x39\xa5\x70\x7b\xe3\x0e\x04\x77\xa9\x0b\x55\x8c\x66\xde\x5b\x35\x1c\x17\xa9\x6e\x15\xce\xed\xa4\xc7\x90\x76\x59\x19\xed\x81\xe0\xb0\xf1\x7e\x2a\x2c\x51\xda\xda\xb8\xde\x54\xe8\x77\x9c\x18\x9d\x9a\x37\x58\xab\xc5\xb8\xe7\xd7\x2f\xcc\x09\x25\xf5\x62\xd5\xaa\x81\xdc\x69\x0f\xe8\x84\x3f\xa8\x47\xd5\x9a\x64\x0a\xe4\xce\x7c\x33\xfd\x59\xd1\xb1\x55\x13\x81\xdc\x88\x8d\x1a\x11\x51\x65\xb6\xd7\xd1\x86\xd9\x2a\x0e\xc2\x0c\x6e\x0f\x64\xda\x25\xea\xed\x8c\x97\xd0\xf4\x49\x04\x1e\xac\x73\xee\x73\x8f\x0f\x55\x01\x50\x75\xcc\x06\xb2\xf3\x4f\xc6\xcc\x11\x49\x54\x85\xb6\x92\xbd\x23\x9d\x8b\x04\x55\x41\x98\xcb\x88\x9b\x68\x36\x8c\xbe\x0c\xf3\xe7\x88\x6f\x55\x08\x03\x15\x1a\x29\x75\x0f\xe9\xa4\xe0\x50\x0f\x01\x76\x51\xa2\x1f\x17\xad\x6b\xf3\x59\x72\x89\x44\x53\xc8\x36\xfa\xce\xf4\xea\xd6\x88\x2d\x03\x63\xcf\x78\xa3\xa1\x2c\xca\x81\x44\x7e\xcb\xec\xef\x13\x1b\xb0\x09\x90\x04\x55\xba\x6b\x53\x1d\x4d\x22\xa3\xe0\x81\xfd\xc3\x31\xba\x40\xc0\xcf\xe6\x16\x17\xdb\xba\xf3\x7e\x6c\x29\xf1\x87\xde\xe1\x2a\x63\x2f\x46\x19\xbd\x52\x50\xf9\x40\x07\x32\x34\xf7\x89\x6b\x83\x23\x64\xf4\xf3\xbb\x56\x8d\x40\x68\xd5\x72\xc5\x26\xd1\x19\xfd\x9b\xe1\x01\x60\x91\x38\xd0\x45\xdf\xef\x0b\xf7\xe9\x7e\xa3\xd3\xf2\x7c\xd6\xa2\x38\x71\xf9\x63\xaf\xb1\x4b\x5c\x9b\x2a\xf3\xb6\xcc\x8f\x6e\x46\x5f\xa8\x4e\x49\x55\x9e\xd7\x69\x7f\x87\xec\x86\x82\xeb\xcc\xc9\xa6\x50\x32\xe8\xfe\xc8\xaf\x9d\xbf\x6e\x1e\xf6\xe3\x03\xa1\xce\x2f\x9d\x94\xdb\xa7\x97\x27\xf3\xc6\x93\x0f\x1b\xed\x2f\x22\xe2\x02\x61\x22\x22\xe7\x89\x00\x4a\x07\x48\xc4\xb5\xa2\x6f\x35\x40\x8a\x2b\x8d\xc9\xc6\x13\x3b\x2d\x8f\xa6\x69\x10\x99\x1d\x53\x86\xaa\x24\x9e\xc4\xd2\x57\x5b\x57\xa6\xb7\x2a\x25\x9e\x0f\x0d\xc3\x84\x1d\x77\x89\x46\xa2\x92\x56\x9b\xdf\xfb\x59\xa3\x13\x8d\x99\xae\x6e\x3f\x35\x21\x39\x7e\xbf\x61\x5e\x6e\x37\x29\xad\xc2\x11\x48\x5f\x33\x17\xd7\xcd\x9c\x9f\xd5\x48\x95\x37\xd2\x96\x82\x3f\x5b\x88\x1c\x59\x88\x25\x4f\xda\xc3\xfb\x8c\xcf\xf0\xa7\x9c\x72\x6c\x91\x1b\x74\x4c\xbb\xb4\xb0\xa8\xc2\x5f\xf6\x92\x31\xf2\x77\x48\x2d\xe6\xed\x84\x33\x3a\xe5\x31\x5c\x16\xd4\x48\xbb\xd6\xee\xd7\x86\xa4\xf4\x33\xea\x0e\x69\x29\xcc\x72\xef\x43\x46\x1a\x17\x94\x63\xdc\xcb\x89\x8b\xd3\x1f\x47\xbc\x2a\xf5\x8b\xc4\x39\x65\x94\xce\xec\xeb\x9e\x88\x8e\x47\x20\x05\x3a\xcc\x5c\xbb\xbb\x72\x0e\x6e\xab\xb8\x5e\x89\x8b\x9a\xb2\xd1\x8b\x9e\xe6\xf3\x0f\x4d\x30\x6b\x3a\xd2\x94\xe2\xb6\xf1\x8e\xb8\x61\xa2\xc4\x5b\x82\xf1\xa5\x14\xb5\x05\x22\x6f\x96\x4c\x40\x62\x7b\x3c\xa1\xe0\x67\x37\xec\x3a\x3f\x35\x96\x97\x0d\x1b\x73\x48\xf4\xe7\x3b\x27\xe8\xcd\x4f\x9a\x2d\x90\x06\x32\xa0\xa8\x27\x35\x4c\x89\x34\xd8\xa9\x87\xb2\xec\x8e\x34\x8b\x70\x92\x54\x1e\x5a\xff\x14\x2c\xb3\x43\xdd\xc2\xcc\x4e\xbc\x57\xc7\xbd\x87\x94\xc7\xc0\xca\x57\xea\xc4\x0f\xe4\x7e\xba\x2a\xad\x8a\x20\xe1\xbf\x99\xf3\x56\xa6\x3f\x20\xa8\x43\x5e\xf4\xc8\x36\x33\xda\x38\x35\x47\x29\x1b\x87\xf7\x75\xea\xec\x8d\x94\x00\x11\x16\xe6\x56\x1b\x22\xc4\x82\xc1\x4c\x0c\x9f\x87\xbd\x86\x05\x1f\xb1\x1b\xd1\xc2\x6a\xaa\xf0\xc7\x9f\x32\x71\x17\xd0\x5c\x4a\x4c\xd1\x0e\x84\x3a\x4f\xe9\x8b\x52\xce\xa1\xf7\x1a\x2a\x48\x81\x0f\x5a\xde\x31\x7c\x6e\xd9\xb4\xd1\xf1\x7f\x92\x9b\x4c\xa7\x5c\x1b\xcc\x49\x9a\x6b\xb5\xd4\xe6\x3f\xba\x53\x8d\x8b\xac\xeb\x03\x06\xed\x8e\xf0\x4e\x1b\x9d\xbd\x0e\xaf\xa3\x18\x9d\xa0\x29\xc7\xc6\xa3\x69\xbf\xd3\x7e\xe6\x2e\xc2\xfc\x30\x52\xa7\xa2\x60\x39\xac\x5e\x97\x17\xc0\xd4\xc7\xcd\x0a\x55\xea\xcd\xaa\x44\xe1\x36\x61\x2a\xc9\xcb\xb1\x40\xb8\x6b\x7f\x12\xff\xa8\x55\x45\x00\x81\x0f\xbe\x89\x15\xc6\xbc\x40\x2a\xf3\xe4\xa6\x3d\x2e\xd3\xf2\x1a\x6f\xc8\x92\x63\xe2\x76\x6c\xcf\x04\x14\x8b\x12\x65\xd1\x72\xae\x1e\x6c\x66\xf8\xc4\xf7\x09\x73\xe2\x7e\x7b\xee\x89\x17\x74\x4c\x2f\x32\x39\x67\xde\x38\x4c\x57\xcb\xb4\x89\x8a\xa2\x5b\x8f\x9b\x3d\x97\xc4\x21\x52\x15\xb8\xe7\x3f\x6c\x8e\x52\x41\x6f\x15\xea\xbe\xf1\xc7\x74\x35\x10\xb8\xac\x41\x00\x05\x7d\xeb\x14\xdd\x9c\xa6\x16\xc8\xad\x47\x6f\x62\x46\x5d\xd7\x81\xac\x81\x48\x90\xe1\x3f\x5d\x96\x84\x3d\xea\xc2\x8e\x9f\x71\x38\x69\xb5\xf3\x00\xeb\xe5\xdc\xe0\xeb\xac\xda\xa3\x35\x06\x72\x51\xc0\x1b\x2e\x0d\x47\x6d\x3c\x47\xce\x8c\x72\xe3\xdf\xd0\x9f\xc9\x7d\x86\xbd\x7f\x37\x1c\x4d\x77\x41\x00\x3a\x6d\xda\x9b\xf5\xef\x93\x91\xe7\x93\xb4\x91\x96\x34\x78\xf3\xb2\xe1\x18\x95\xd4\x04\xbf\xfc\x7c\xff\x56\x1d\x73\x1b\xb4\x4c\xc1\x1e\x36\x7a\x9d\x4f\x19\x3b\x99\xf6\xc1\xb0\x5e\xba\x45\x0c\x47\x8d\x62\xab\xc2\xa2\x34\x4b\x26\x2c\x5f\x3d\x7a\xb6\xaa\xf4\xfc\x4a\xe0\x31\x6c\x51\x92\xfd\x69\xc7\x58\x63\x30\xac\xc6\x4e\xb2\x20\x7b\x41\xfe\xe6\xe5\xcb\xaf\x6e\x0b\xc8\x0f\xde\x9d\x22\x60\x0a\x4e\xac\x98\xfa\xf0\xbc\xd2\x59\xad\x10\x51\x03\x63\xfb\x81\xcc\x6d\x13\xd3\xdc\x50\xd6\x38\xa5\xa4\x68\xe6\xcd\x61\xc3\x9a\x71\x2f\xa1\x2c\x14\x71\xf6\xf4\x62\xf2\x62\x67\x77\x42\xca\xf2\xc5\x23\xe3\x34\xe8\xac\xd9\x16\x6f\xff\xda\x91\x8e\x15\xb1\xe2\x0a\xf5\xe4\x38\xfa\x6f\xaf\x4e\x40\x03\x20\x41\x69\x1b\x7b\x20\xf3\xe7\xc9\x43\x74\x9d\x06\xba\x16\xf7\x6a\xd5\x2b\xa5\x73\x16\x7b\xc7\x65\xaa\x47\xd2\x35\x89\x6c\xe8\x72\x51\x6f\x4f\x00\xb2\xa7\x87\x26\x6b\x90\x59\x15\x1a\x8f\x56\xc6\x77\xc9\x5e\xca\x95\x12\x5a\x18\xef\xd7\xcb\x0d\xf1\x10\x5e\xf4\xac\x20\x06\x93\xe6\xfe\x70\xaf\x7c\xd6\xde\x40\xf0\x28\x40\xff\xb7\x8f\x30\x22\xd2\x86\x3d\xec\xb4\xdb\xc8\x8a\x9e\x96\xd5\xfb\xb7\xfd\x86\x0b\xb5\xc3\xb9\xed\x55\xa8\x4c\xa9\xb3\xef\xae\xd2\x47\xb1\xce\x01\xce\x14\x25\xf6\xff\xfb\x48\xfb\xc8\x4e\xa1\x63\xa3\xff\x7c\xbe\x1a\xde\x5f\x1d\x88\xba\x60\xd0\x1d\xcb\x9c\x5e\x3f\x4b\x6d\x50\x2e\x28\x2f\x0b\x52\xaf\x40\x4b\xd0\xbe\x63\x78\xaa\x7d\x2e\x9b\x19\x1d\x9b\x0c\x72\x24\x75\xe5\x6e\x0f\x33\xc3\xcc\xc6\x31\x70\x3f\xe3\xeb\x25\x3f\xfb\x9d\x89\x28\xf0\xb9\x1e\xb3\xdb\xaf\xe5\xfc\x6d\x13\xd3\xc7\xa9\xc1\x9b\x7a\x18\x3d\xfc\x2e\xd3\x0a\x9b\xdb\x81\x15\xeb\x01\xbe\xf9\xbe\x3e\xb8\x52\xf0\x1f\xc8\xdf\x2f\xa6\x93\xbb\x26\x73\x1c\x46\x6a\xe9\xb6\xeb\x40\x66\xdf\x32\x73\x94\xa9\x5d\x2c\xf2\x8b\x8f\x18\x66\x4b\x0d\x2a\xbc\x2a\x69\x11\xd9\x58\x4d\x6e\xb5\xaf\x3e\xda\x66\x4a\x4a\xeb\x90\xb2\x47\x51\xf2\xaf\x95\xf4\x5d\x7f\x5d\x8c\x85\xbb\xdb\x94\xd7\x65\x4e\x2c\x69\x9b\x3f\x4f\xed\x79\x66\x53\x90\xe6\xc8\x3c\xd9\x69\x8e\xe3\x68\x55\xc1\xd2\x07\x32\xff\x9c\x35\x64\x8d\xb8\xe7\x32\x32\x3d\x71\x79\xcd\x6e\x19\xa4\xb7\x61\x74\x20\x20\xd7\xfa\xce\x92\x61\xb8\x37\x29\x5b\x85\x3b\xee\x42\xbd\x2c\xc0\x24\x43\xbd\x39\xe6\x29\x6d\xd3\xed\xf3\xd8\xcb\x6a\xe6\x41\x03\x45\x4a\x3c\x95\x04\x84\x7f\xbd\xf8\x22\xe3\x1a\x8a\x69\xbf\xed\x16\xff\x03\x99\xdd\x86\x6f\xb7\xcd\xb9\x48\xdc\x33\x26\x38\x43\x74\x6f\x37\xfa\x87\xc3\x47\x46\xa1\x2a\xd9\x67\x25\x66\x31\xb8\x33\xb2\xe7\x1a\x8e\xf9\x36\x25\x4e\x4c\x53\x9f\x8d\xe4\x05\x75\x91\x0b\x18\xd2\x03\xa6\x32\x98\xa7\xe8\x70\x9f\xd9\x68\x4a\xc6\x79\x8c\xcb\x19\x68\xee\xea\x9d\xa9\x09\x0d\xa9\x4b\x3c\xe3\x5f\x8f\xeb\x8b\xae\x89\x94\xca\x32\xa3\x26\x1b\xc5\xb0\xa3\x9c\x13\x15\x2b\x60\xa4\xa1\x9b\xe8\x55\x20\x69\x51\x58\xb6\x23\xab\x91\x17\x19\x2d\x07\x0c\x3b\xb5\xdd\xf1\x9e\x0c\x55\x8b\x12\x21\x5f\x18\x5c\xcd\x96\x20\xdf\xc2\x4a\x52\xa5\x2d\xea\x56\xb5\xc2\x6f\x78\xfe\x2b\x67\xa9\xff\xa4\x04\xad\x15\xe0\x62\xe0\x71\xac\x35\x20\xaa\x85\x9e\xb0\x78\x2d\xd6\xd2\x93\x22\xe5\x8f\xdf\xa4\xd7\xb2\xca\xdd\xb2\x27\x35\x91\x7a\x06\xb2\x73\x86\x69\xa5\x71\xe6\x32\x9f\x11\x07\x15\x53\x7f\xee\x96\x03\x80\x25\xdc\xad\xf2\x86\xef\xe1\x72\x39\x7f\xe6\x4d\x46\x61\xab\x06\x21\x70\x8a\x16\xac\x4b\x10\xf8\xa4\xd8\x06\x06\xca\x7e\xed\xa1\xd8\x22\x09\x46\xc4\x0d\xb8\xa3\x4f\x47\x48\xc6\x26\xf1\xad\x4a\x4d\x8a\xf1\x1f\x7f\x41\x47\xa4\x58\x15\xcd\x2c\x30\x3f\xfd\x84\x86\x06\x10\xc4\x6f\xcc\xee\x1b\x8d\xb5\x9f\x89\xa3\xd8\x76\xbf\x7d\x22\x1d\x1f\xa3\xdd\xae\x40\x9c\xd7\x8e\x38\x37\xbe\xd4\x75\x2a\x9c\xca\x8a\x4d\xc3\x01\xe2\x56\x0b\x82\x3b\x8e\x16\xc8\x3a\xe3\xe8\x78\x23\xb7\xa1\x42\x28\xff\x56\xf8\xfc\x29\x8f\x22\x54\x7a\xe0\xf8\x4c\x42\x7a\x6f\x16\xda\xe1\xaa\x15\xad\x09\xdb\x7c\x66\x7c\x02\x9c\xe8\xe0\x44\x7f\x7c\xda\xfb\x43\x11\x87\x50\xf6\x2f\x5d\x13\xa8\xc8\x6d\x79\x1e\xc3\xe7\x0c\xed\x48\xaf\xca\xa2\xaf\x0a\xe7\x65\xe8\x3b\x06\xa4\x3f\xba\xe9\xdd\x72\x62\x0e\xff\x19\x83\x07\x1e\x9d\x81\x04\x40\x98\xfd\x3f\x43\xce\x36\xe2\xa8\x1f\x13\x13\x32\xdf\x2e\x22\x37\xca\xda\xac\x8e\xee\xce\xe8\x5f\xff\x50\x34\x68\x1d\x54\x28\xbe\x73\xe6\x1b\x0b\xcd\xf9\x4a\xdd\x21\x4c\x4e\x61\xc3\x39\xa8\xf1\xe4\xcb\x1e\x58\xa6\x6b\xed\xa9\xd0\xa2\x6a\x0e\x0c\x6d\xae\xc1\x3a\xcd\x72\x79\x4d\x21\x7a\x61\xf5\x3b\x26\xb4\x7d\x18\x71\x13\x35\x8e\xc5\x9d\x46\xa3\x81\xf8\x8c\xba\x3e\x18\x58\x02\xe8\x4a\xc2\x2b\xcf\xb9\x27\xd9\x72\x3e\x47\x89\x6d\x6e\xa1\x71\xff\xf9\x94\x28\xf3\x34\x08\x1c\xdb\xf7\x60\xf1\x61\xd7\xa2\xb2\x3b\x96\xbf\xf4\xce\x51\x49\x1c\xf4\x71\x12\x9c\x09\xb4\x8b\x5d\x57\xd7\x1c\x68\xf1\xf5\xe9\xed\x5e\xc3\x86\x4d\x9b\x57\xeb\x80\x10\xdd\x39\x85\x9e\xf0\xfc\x9b\x74\x53\xbd\x4c\xfd\x82\x60\x56\xa5\x70\x7d\xc0\xc0\x18\xf0\xd1\x33\x4c\x6f\x1e\x92\xd8\xcc\x65\x59\xc9\xb0\x0e\x0b\x5c\xc9\xb6\x8b\xbe\xc6\xc9\x21\xb2\x62\x72\x59\xb9\x02\x60\x88\xed\x23\x74\x16\xed\x55\xb8\x55\x8d\x83\xd4\x7b\x9d\xc8\x44\x93\x42\x9f\xee\x83\x7b\xd0\xb5\x15\x9b\xe4\x84\xcd\xad\xc3\x10\x07\xc1\xb3\x60\x6b\x9f\x76\x42\x19\x28\xb4\x89\x1b\xe6\xaf\x3f\x43\x62\x0e\x3f\xc1\x04\x80\xe9\xda\xb2\xd9\xe3\x0a\x30\xec\xf3\xa0\x0c\x03\xbe\xfc\x8d\xdb\x8d\x37\x5f\x2b\x0a\x62\x29\x0c\x56\xe6\x87\x8f\xea\x5c\xaa\xc2\x03\x21\xe1\xf3\x33\x37\x62\x62\x25\xab\x45\xfb\x5c\x5a\xae\xda\xf2\xcf\x73\x5e\x26\xd2\xbc\xea\x5f\xd6\x25\xef\xc5\x63\x38\x0c\x6d\x7e\x42\xb7\x1c\x1c\xea\xd5\x99\x4b\x3c\xc8\xeb\x72\x3f\xe9\x48\x17\x80\x65\x26\x9c\x92\x60\xd4\xb5\x63\xd3\xab\xc1\x8f\x6a\x1a\x1b\xed\x4b\x8c\x82\xcd\x2f\xfb\x8b\x15\x9a\x7e\x2c\x69\xcf\xed\x84\xae\x4d\x67\xc8\x39\x65\x53\x00\xe4\x2e\xfb\x0f\x6b\x26\x1a\xc9\x20\x9e\x1d\x4a\xc3\xec\x1f\x56\xb0\x07\x18\x27\x76\x13\x1c\x10\x32\xdf\xde\xa6\x2b\xe4\x52\x54\xbf\xd4\x98\x1b\xc8\xc9\xd5\x07\xc7\xa5\xb1\xd1\x45\xc1\x3d\x16\x78\x69\x5d\xda\xdc\x2f\x8d\x42\xda\x0d\x24\x9a\x23\xb6\xfb\xcf\xdd\xf7\x88\x86\x59\xcc\x9c\x5d\xe8\x09\x2f\xdd\xa1\xcb\x99\x8e\xe8\x1f\xbe\x7a\xc8\xc0\x2b\x47\xc5\x85\xe0\x41\xcc\x49\xba\xe8\xd6\xf4\xe2\x22\xb6\x97\xfa\x89\xb9\xef\x9c\xa9\x8a\x99\x3a\xf3\x61\x5c\x10\xae\xeb\x94\x45\xd8\xcc\x4e\xa5\xe7\x3f\x90\xbd\x6c\xaf\xb2\xdd\x27\x7e\x45\x39\xfa\x85\x13\x6e\xfd\x90\x0a\xcd\xb0\x1e\x79\x67\x86\x41\x81\xf4\x05\x25\x35\x47\xe9\x1c\xf7\x0c\xe4\xac\x17\xb5\x4a\x3f\x88\x9a\x6c\xdb\x2d\xf7\xcf\xaa\xb8\x6f\x96\xf9\xcc\x0b\x7a\xad\xcb\xc4\x2e\x53\x1f\xe0\x25\xb9\x6d\x77\xca\x9f\x5c\xa3\x11\x10\x6f\x21\x22\x83\x54\xdc\x2e\xf4\x84\xa3\xf7\xa4\x1b\x4c\xfd\x15\xe2\x96\x0d\xba\x19\x41\x92\x14\x15\xe2\x57\x1c\x4a\xa3\x0c\xf0\xb3\x4b\xf4\xf1\x4d\xaa\x30\xa8\x21\xa5\xa8\x4d\xe1\x72\xc1\x89\xd2\x51\xd7\xa1\x69\xda\x2a\x3c\x64\xa3\x36\x53\xa2\x40\xd9\x3f\x6c\xd6\x45\x5f\x9d\x0a\xac\xb3\x95\xed\x37\xd8\x02\xd4\xb3\x88\x10\x00\xdb\xd2\x8f\xe9\xd6\x11\x34\x8d\x38\x55\x59\xd7\x0c\xbb\x4c\x87\x08\xea\xc2\xea\x84\x2b\xd7\xa0\xa1\x14\x75\xa9\x1c\x4c\xfc\xea\xd5\xd1\x46\x14\xf6\xd4\xb5\x97\x3f\xbb\x3b\x41\xcb\xce\x06\x51\xd3\x45\x6f\xea\xbf\xe0\x92\xa0\x5c\x89\xd6\xf2\x39\x43\xf5\x65\xaa\xa2\xab\x66\xc5\x0c\xb3\x61\x0a\x9d\xd7\x82\xa3\x05\x9d\x6e\x09\x93\x2a\xbb\xe8\xb4\xe9\x22\x66\x0f\x4e\x43\x57\x13\x2d\x73\x9f\xc5\x62\x4a\xd9\x1b\x97\xa2\x3d\x3f\xab\xd0\x13\x5e\x75\x40\xbf\x68\xe6\x46\xe7\x0f\x7e\xee\xb5\x47\x25\x09\x64\xce\xdc\x68\xdf\x8c\x7a\x6b\x58\x2a\xb9\x95\x7a\x7e\xdd\xba\x56\x77\xb8\x6b\xb7\xc7\x8c\xdc\x7d\x47\x47\xa6\x9f\x33\x7e\x45\x67\x5e\x8c\x44\x20\xae\x0f\x28\x95\x5a\x98\xf9\x0b\x66\xcb\x51\xf0\x27\xb9\x5b\xb6\x2a\x84\xb5\x02\x1b\x8f\xf8\xed\x31\xc3\xd0\xc3\xca\x77\x96\xb9\x6c\x06\xf6\xd0\x64\x56\x94\xe8\xdc\xb9\x03\x67\xf7\x10\x51\x95\xb2\xdd\x14\x44\x9a\xb5\x03\x39\x55\xcf\xcc\x30\x46\x5a\x81\x6b\x39\x94\x88\x84\x0b\x50\x79\x3d\x5d\x12\xd4\x58\x9f\x3a\xdf\xcf\xdf\x9a\xde\x6b\xc4\xb5\x05\xf3\x0c\xe1\xa7\x7b\x9d\xe4\x64\xda\x10\xf3\x73\x7b\x4f\x1f\x65\x5c\x7d\xb1\xfa\xcd\x30\x57\xae\xc0\xba\xb5\x57\x2f\xef\xb9\xca\xcc\x43\x7f\xfe\xc6\x68\xdd\x5e\x49\x1f\x95\xda\xab\xa8\xeb\xec\xd7\xb8\x57\x8f\x82\x11\x8c\x91\xee\x4d\xef\x34\xa6\x28\x9c\x99\xe1\x2f\xa1\xf1\x17\xed\x43\x4f\xfc\xcf\x06\xc8\x41\x72\x25\x5b\xc9\xac\x2b\x3b\x7f\x9d\xc2\xe3\x0b\x8b\x58\x95\x76\x81\xda\xfc\xf2\x25\x13\xd0\x96\x09\x84\x55\x69\x2b\xf3\xd6\x76\xa4\xe9\xbf\x6e\x47\xb1\x83\x74\x44\xcf\x66\xfe\x31\xaf\x78\x8e\x0e\x03\x15\x12\xbd\x50\x8a\x6d\x54\xdf\x1c\xaf\x37\x31\x2f\x36\x98\x52\xaf\x3e\x77\x9a\xe1\x59\x40\xa3\x1f\xa9\x26\xd3\x31\x6f\x63\x02\x32\xb5\xa9\xbc\x13\x1e\x7d\x47\xff\x25\x20\xe3\xcb\xd9\xbc\x21\xc3\xe0\x91\x96\xd2\x47\xb7\x5f\x18\x12\x67\x24\xb0\xd8\x99\xe3\x0f\x22\xc1\x93\x2e\x48\xc8\x76\x29\x97\x83\x9e\x35\x6b\xe3\xe4\xd1\x5a\x6f\x52\xaa\xe7\xcf\x97\x44\x89\xb0\xb4\x13\x41\x79\xb8\x17\x43\x51\xff\xfd\x31\xf5\x41\xbc\x5c\x86\xde\xdb\xd6\x0d\x7a\x02\x3f\x73\x0e\xe4\xbf\xc3\x7b\x47\x99\x2f\x5a\x14\xe1\x6b\xfd\x66\xa3\x8e\x76\xcc\x73\x64\x0c\xcb\xfc\xd7\xc5\x32\xec\x2f\xa3\xa4\x01\x4a\x3c\x99\xc6\x24\x7d\x2e\x8b\xdc\xb5\x69\x83\x01\xac\x72\xdc\x2e\xcc\x12\x22\x45\xc1\xec\xb2\x3c\x7d\x1b\x6f\x3f\x2b\xfe\x57\x65\x6e\x2b\xff\x9d\xed\x1f\x6d\xe6\xf6\x6a\xc9\xdc\x7d\xd8\x8b\xda\xa6\x35\x57\x75\x13\x0f\x3c\x93\x7e\x5d\xbd\x81\x07\xe7\x36\x96\x9c\xfa\xc6\x2e\x65\xb7\xca\xcb\x65\x9c\x10\xff\xf2\xd9\xb8\xab\x59\x2e\xcb\xba\x33\xf3\x83\xc3\x23\xd0\xf5\xe0\x51\x29\x96\x9e\x79\xfa\x21\x93\x40\x50\x0e\x48\x31\x66\x82\xe6\x0e\xae\x91\x6b\x5c\x23\x2d\x68\xd7\x2d\x3f\x3e\x2c\x79\xb9\x90\xb8\x16\x7a\xc2\x9f\xde\x8c\x21\xea\x0e\x75\x6d\xa0\x86\xe4\x85\xa1\x87\x55\x12\x0c\xfc\x39\x21\xc7\xca\x6c\x58\x7c\x41\xea\x3b\x83\xb0\x4f\xbb\x42\x5b\xe6\x6b\x06\x67\x5d\x3a\xda\x40\xe0\x3a\x73\xa8\x5e\x36\x6a\xd7\x02\xd7\x96\xc6\x8b\x3f\x40\xa3\x63\x62\xdb\x72\x06\x98\x99\x2f\x61\xf0\x85\x25\xd4\x4d\x13\xed\xbe\xb5\x0e\x09\x47\xc3\xec\xc7\x82\xc5\xff\xeb\x04\x04\x08\x0e\x20\xfc\xc5\x9b\x75\xe4\xa6\xf1\xc6\x57\xe3\xae\xaf\x12\x0f\xf8\x76\x4b\xb3\x7a\x38\x6b\xb5\x9d\xde\xec\xa3\xbd\x86\xc2\x27\x38\xb2\x78\xed\xca\xe3\xb9\x8d\x87\x0c\x13\x54\xd9\x80\x53\x04\xa2\xa2\xde\xf0\x82\x37\xa3\x0f\xbe\xef\xb0\xec\x74\x80\xa1\xb9\x9d\x98\x4e\x2e\xdd\xad\xad\x33\x28\x76\xc7\xfb\xb5\x6b\x94\x23\x52\xbe\x47\xc2\x3b\xc6\xad\x40\x24\x58\x58\xc9\xe8\xbd\x4e\x99\x92\xde\x32\x65\x41\xec\x20\xe1\x74\xe5\xfe\xc9\xe0\x3c\xd9\x0a\x31\x22\xe7\xad\xf7\x1e\x36\xa4\xcc\x88\xab\xd8\x73\xd9\x39\xb7\x9b\x1a\x68\x52\xb2\x51\x96\x46\x8b\xee\x4d\xff\xd7\x26\x29\x97\x13\x05\xdb\xdb\x8f\xa7\xb3\x30\x5e\xf4\xa8\x68\xa4\xad\xc4\xaf\xbd\x17\x51\x88\x99\xb0\x82\x9a\x84\x95\x48\x84\xf8\xee\xd0\x74\x44\x6b\xc6\x0d\xda\xdc\xc0\x18\xbd\x0c\x25\x41\xdd\xfe\x28\x07\xfa\xd0\x66\x19\x29\x24\x0c\xbb\xd0\xf3\xff\xd3\xf5\xf6\xf1\x56\x54\xf5\xfe\xb8\xfb\x21\x35\x42\x1e\x8e\x70\x38\x22\x02\x22\x01\x17\xd8\xc7\x03\x1c\x0e\x0f\x11\x5f\x45\x54\x24\xe2\x20\x10\xe2\x63\xac\x3d\x7b\xed\x3d\xeb\xec\xd9\xb3\x86\x35\x33\x7b\xb3\x89\x08\xbd\x46\x86\x64\x5e\x33\x35\x33\x32\x2f\x97\xbc\x64\x7e\xbd\x66\x64\x5c\x32\xf3\x9a\x99\x19\xd7\xcc\x88\x4b\x5c\xe3\x67\x46\x46\x46\x5c\xe2\x4b\x44\x9e\xe9\xf7\x9a\xf5\x59\x33\xf3\x99\xb5\xcf\xfd\xaf\x10\xce\xd9\x7b\x66\xad\xcf\xe3\xfb\x21\x78\xfc\x48\x8b\xdf\x50\x58\x01\x29\x24\xc7\xb4\xe9\x5a\x71\x64\x32\x05\xf2\xc8\xdc\xb7\x09\xee\xd8\xe4\xd5\xe0\xb7\x99\xff\xc7\x21\x71\x72\x6c\xc0\xc2\x70\xf4\x5c\x5d\x10\x3a\xd2\xca\xc8\x5c\x3f\x7f\x34\x5e\x7a\x1b\x82\x45\x8d\xb7\xbc\x23\x13\xf3\xda\x68\xd8\x02\xfe\x2f\x2c\xed\xf6\x22\xad\x8a\x68\x0f\x23\x29\x3e\x2f\x26\xc3\xb4\x3e\xea\xb8\x14\x31\xc0\x73\x2f\xdc\xa4\x19\xa5\xb8\x91\xcf\xd8\x87\xaf\x48\x60\x49\x1c\x6b\x5e\x0d\x75\x46\xb5\xc4\xb1\xc8\x5c\xe0\x92\x49\xe9\xff\x26\xfd\x86\x14\xd5\xe8\x62\x8d\x17\x51\xe4\xc5\x62\x53\x2b\x25\xf6\xbe\xa1\x5b\xf1\xb2\xda\x40\x1e\x21\xd9\x25\xef\x28\x3e\x1c\xa5\x55\xaa\xec\xe1\xff\xf3\xac\xa6\x25\x52\xa7\xb6\x12\xd9\xdc\xdf\x09\xb1\x15\x73\x05\xe4\x09\x3e\x86\x14\xc5\x98\x3c\x84\xe1\x83\x7e\x71\x4d\x7a\x86\xc1\x6a\x65\xd0\x5c\x4b\xdf\xe7\x61\xb7\x60\x71\x04\x8b\x34\x5d\xe0\x81\x7e\xe8\x95\xf4\xe9\xa9\x4a\x87\x7d\x75\xbc\x47\x4c\xd2\x74\x1a\x2c\x4f\x10\x57\x3a\xbc\xa9\xc6\xed\x62\xcd\x95\xc2\xa5\x75\x89\x34\x93\xff\xfc\xfe\xa7\x93\x85\xb0\xc5\xca\xad\xd5\xf1\xaa\xc7\xd2\xb3\xe8\x1a\xf7\xb8\x30\x29\x29\x0d\xb4\xf7\xca\xaf\xdc\x9c\x84\xd7\x79\x5d\x85\x12\xd8\xf3\x6d\x7e\x18\xd5\xaf\x1e\x75\x1c\x95\xa5\xbf\xf3\x08\xb6\x09\x6a\xa8\x29\x68\xf9\x10\x04\xe3\x95\xdc\x63\x06\xaa\x67\xb3\xed\xa7\x74\xc8\xaa\x00\x75\x70\x0a\x8e\xc9\x99\x9f\x1c\x4f\x66\x1b\x36\x91\x0b\x96\xe9\x7b\xd2\x60\xd5\x12\x23\xe1\x9d\xe4\x0e\xf7\x2d\xae\x2d\x34\xf2\xb3\x1f\x4a\x22\xb3\xd5\x42\x5a\xcb\x9e\x50\x92\x5a\x33\xba\xa4\x0f\xce\x6d\x25\x6d\xf2\xc8\x78\xa2\x6b\x03\x63\xee\xe5\x9b\x95\xdd\x23\x47\x00\x8e\xec\x64\x18\xb4\x17\x56\x44\x38\x79\x04\x92\xd7\xd8\x91\x16\x57\x1a\x18\xa7\x96\xe9\xab\xf7\x3a\xb5\xc0\xe3\xbd\xd0\x1b\x54\xf7\x28\x6d\x5c\x41\xeb\xca\x44\xac\x0d\xb7\xa4\xd1\x0a\x3f\x58\xf0\x04\x12\x96\x20\x36\x8a\xf6\xf9\x4e\x8d\x46\xd9\x10\xc4\x81\x6f\xe1\x9f\x84\x20\x64\x73\x35\x83\xc9\x75\xc3\xf1\x5f\x92\xee\x3f\xb3\xbf\x7b\x75\xbc\x56\xa7\x17\x2d\x66\x14\x48\xb9\x4c\x98\x88\x94\x39\xee\x5c\x99\xf6\xcb\xa0\xa5\xf0\xc5\xbb\x03\x39\xf7\x8c\x9a\xd0\x91\xdc\xbe\x58\xff\x8c\x00\xc9\xc3\x7c\x44\x23\xde\x84\x85\x8b\x4a\x7e\x8b\x76\xc6\x51\xf2\x72\x57\xe6\xbe\x3b\x3a\x93\x24\x97\x1a\xff\x5f\xf5\x96\x36\x05\xe5\x4e\x64\xa0\xfb\xad\xf1\xe9\x4c\x2c\xc5\xf1\xa5\x48\x45\xfa\x83\x06\xe5\x45\xc8\xea\x90\xb8\xae\xfc\x1f\x61\xa8\x6c\x8f\x1b\x3a\x93\x20\x9c\x41\x76\xc3\x92\xf4\xdb\x9c\xd5\x25\x39\x6e\xd1\x1a\xf3\x2f\x5b\xe2\xd7\x59\x96\xa3\x84\xfe\xec\x0d\x79\x54\xcf\xb8\x0e\xf7\x81\x99\x13\xfc\x5d\x68\xb3\x6d\xf0\x99\x92\xaa\x82\xd2\x28\xfd\x00\x92\xb8\x93\x72\x49\x6a\xbe\xef\x1d\x43\xfa\x39\x76\xc9\x87\x7a\x7c\xef\xea\xa4\xc7\xd9\x48\x84\x3c\xce\x4d\x39\x0b\x7f\x00\xcf\x08\x2b\x4a\x85\x2e\x7f\x51\xbb\x4e\x05\x65\x96\x05\xcb\xd6\xf9\x48\x25\xc3\xa4\x82\xcb\x70\xe3\xbe\xa7\xf3\xeb\x65\x22\xa4\x02\xc6\xfd\xd9\x7f\x9f\x8a\xc9\x83\x0a\x07\x14\x3c\x12\x29\x3f\x0b\x52\x02\xd5\x8a\x43\xdb\xe3\x8d\x86\x31\x80\x44\xd7\xb2\xfd\x58\xbc\x81\x49\xfd\x90\xa0\xf4\x34\xda\xe3\x91\xaa\xfc\x02\x99\x4b\xfa\x30\x9c\x54\x6a\x28\x96\x24\xb6\x3b\x33\x55\xe3\xec\x94\x2d\x66\x54\xe5\xb8\x49\x21\x75\x1a\x2b\xb4\x11\x13\xf5\x3c\x00\x1c\xaa\xb2\xa4\x1a\x24\x53\x17\xe9\xf3\xe4\xf1\x42\xe4\xf7\xb4\x75\x35\xd6\xeb\x2f\xc3\x90\x20\x33\xbd\xac\xad\xb9\x8a\xb0\x68\x8b\x42\xf9\x75\x57\xe8\x4a\x4c\x51\xb9\x9f\xfb\xca\x1d\x68\xee\xe2\x0b\x5b\x7e\xe5\x61\x0b\xe2\xd9\x8a\x54\x64\x18\x35\x3f\xc9\xdd\xb4\x5c\x86\x6d\x4f\x44\xe7\x6a\x3f\x3b\x0a\x63\xdf\xc3\x56\x23\x76\x71\x19\x75\x13\xf4\xd9\x57\x3b\x0e\xf8\x77\xa4\x9f\xf7\x02\x81\xa6\x92\xdc\x26\xcc\x97\xc1\xf7\xc4\x63\x85\x74\xe1\x24\x0d\x0b\xa9\xed\x49\x41\x57\xb7\xd5\x21\x27\xdf\x73\x26\x7d\xe5\x8a\x16\x31\xaa\x03\xaa\x6f\x3f\x7e\x0b\x04\xe3\xd9\x9d\x61\xdb\x98\xf9\x1f\x4d\xed\x9e\xb9\xae\x1f\x0d\x92\x0f\x76\x24\x69\x41\xf8\xf0\x65\xdd\x25\xe3\xb4\x92\xd1\xb2\xb4\xea\x21\xd3\x8e\x46\xcd\x6a\x67\x01\x73\xaf\x75\xb7\x5d\x90\x88\xfc\x38\x85\xde\xe0\xe6\x65\xc9\x70\x87\x6c\xe4\x82\xb6\x4c\xbf\x33\x87\x6f\xd3\x36\xd6\x44\x70\x5b\xc5\xc4\xfc\xa0\x3b\xf5\x05\x98\xab\x98\xa6\x99\xb7\x4e\x24\x23\xa8\x39\x73\x0a\xbd\x41\xff\x8e\x38\xa8\xf8\x2e\x4a\x8f\xb9\x2f\x2a\x27\x62\x27\x4c\xfe\x85\xde\xe0\xcb\x07\xf4\xb9\x2f\xb1\x4b\x0d\xc2\x6c\x44\xb0\x0a\xda\xa7\x22\xf8\x4b\xd8\x3e\xc5\xf0\x97\xfc\x90\x3b\xc6\x22\x6c\x80\xcb\x06\x18\x5b\xac\x10\xc3\xd0\x3d\x03\xc3\xd0\xcc\x89\x73\x70\x56\x2f\x51\x2a\xaf\xd3\x9b\x6b\xd0\xd1\x8b\x6c\x99\xa3\x15\xfb\xda\x33\xe3\x71\x94\x82\x95\xb4\x0e\x65\xf9\xe1\x58\x4d\xe3\xa3\x68\x0c\x80\x4b\xf9\x91\x86\x18\x98\x2e\x6d\x90\x83\xab\x95\x87\xb8\xc9\x2a\xa6\x84\x4b\x06\x1f\x3f\x80\xb8\x58\x0e\x31\x68\x15\x25\xc3\x25\x0a\xfa\xe3\x98\x3c\x82\xfd\x4e\xda\x7b\x09\xae\x87\x69\xb9\xe5\x57\xdf\xbf\x29\x7d\x06\x7d\x9b\x45\x0e\x10\xb9\x07\xc5\x78\x54\x4c\x96\x80\xf2\xe1\x33\xd7\x94\x41\x4e\xe1\x94\xfa\x91\x28\x4a\x43\xc5\xe9\x7d\x59\xd4\x60\x58\xa4\x0e\x3a\x34\xcb\x35\x21\xe4\x12\x0f\x4b\xd3\x58\xd4\x7f\xe5\x0e\x24\x15\x11\x1e\x47\x69\x07\x92\xbd\x7c\xea\x00\x9a\x5e\x12\xc9\xad\x64\x27\xb2\xdd\x43\x92\xdd\xde\x8c\x39\x9d\xb3\xc2\x3f\x7b\xe2\x9c\x11\x38\x2e\x18\x96\x0f\xcd\x5e\x26\xff\x94\x86\x19\xa3\x82\x88\x92\x76\x89\x7e\xd5\xa7\xb5\x7c\xdc\xf0\x78\x54\x0c\x64\x7f\xa2\x39\x8d\x37\x98\xa7\x00\x4e\x10\x42\x1f\xab\xeb\x98\x47\xdf\xf2\x22\x68\xcb\x67\xf6\xc4\xe5\x5a\xa3\x15\x16\x93\xf9\xc9\x60\xec\x8b\x54\x86\x8c\xa9\x68\xa9\x17\xbd\x8d\xd8\xc8\xcc\xb2\xb8\x50\x32\x2e\x1d\x8f\x25\xff\xc8\x71\x9b\x86\x19\x56\x73\x4c\xe2\x6b\x73\x27\xcf\x6d\x43\x68\x66\x11\x6d\xd4\xbe\x96\x44\x83\xc2\x1c\x39\xc3\xda\xf2\xf6\x48\x8c\x46\x5b\x33\xed\x3a\x90\x79\xef\xcf\xbd\xbb\x20\x86\x5e\x1b\xcd\x14\xb8\x2e\x77\x43\x16\x8a\x2a\x09\xe1\x74\x99\x5a\x8f\x06\x47\xde\x4d\x9f\xe7\x9e\x99\x60\xe1\xf1\xeb\x0d\x29\xd9\x68\x10\x97\xca\xbd\x7f\x6c\x07\x9a\x9d\xd7\xe0\x1b\x47\x55\xc7\x2f\xcf\xbd\x40\x9d\x5e\x4a\xe5\xba\x2b\x7b\x81\x79\x21\xce\x50\x1e\x15\xb2\xe3\xc8\x6d\x5c\x3b\x20\x03\x3b\xbc\xaa\x53\x37\x5f\x88\x1a\x5e\xde\x50\xd7\x23\x7f\xf9\x20\x0d\xd5\xdd\x47\x36\x0c\x84\xea\xce\x8c\xdf\x8d\x97\x06\x7d\xd2\xb2\x3a\xb3\xf1\x5c\x4c\x2d\x00\x55\x3a\x60\x15\x8d\x79\x57\x87\xc9\x54\x69\xa4\xf8\x79\xf9\xa9\xd8\x47\xd9\x0d\xf3\xcd\x3f\x38\xfa\xae\xd7\x30\x6d\xb6\xde\x07\x5e\x60\x7e\xf5\x02\xa4\x60\x8b\xa6\x3c\xb9\x8b\x77\x27\x40\x73\x5b\x1a\xca\x0e\xd9\x9f\x48\x39\x93\x0d\xad\xdf\x61\x4d\x07\x5a\x81\x33\xbb\x8a\x68\xb2\xd9\x8e\x87\x35\xeb\x71\x22\x04\xe3\xde\x40\xd8\x9d\xdc\xa4\xe7\x5a\xea\xa1\x8a\x00\x46\x82\xdc\xea\x8f\x59\xd3\x8a\x5c\x8a\x04\x4f\xb3\xd7\xdc\xd5\x02\x87\x77\x63\x7f\x94\xec\x36\xe5\xc8\x49\x85\x50\x0e\x9b\x9b\x86\x41\x50\xfb\x28\x51\x92\x03\xc1\x37\x97\xa1\xeb\x3e\xb7\xab\x3b\xfc\x5b\xff\x77\x21\xb2\xf7\x25\x82\x48\x7a\xe6\xa1\xe4\xb0\x75\x75\x76\x75\x49\xdb\xd4\xec\x4f\x5f\xd3\xc4\x64\xb9\x6b\xf0\x46\x8a\x89\xd0\x9f\x3b\xf5\x52\xfa\x2f\x99\xbe\xeb\x52\x66\x4f\xf3\xb0\x65\xf6\x9b\x57\x40\xcb\xb7\x8a\x58\x61\xba\x48\xde\xcc\xbd\x5b\x87\x22\x60\x29\xa8\x3d\x8c\x7e\x36\xb9\x86\x0e\x15\xaa\x42\xce\x4d\x58\x0d\xbd\xd6\x72\xe2\xba\xc4\x8f\x2e\xe7\xbf\xec\xd1\x64\x52\x4a\x61\x83\xe4\xcb\xad\x24\x84\x20\xd3\x49\x5f\xb0\x9b\x41\x31\xe0\xc8\x56\x64\x81\x57\x73\xbc\x66\xa1\x37\xf8\xcf\x2d\xad\x84\x6b\xd9\xcc\xaa\x5c\x7d\xfd\x74\xd4\x73\x35\x6b\x8e\x27\xad\xd4\x73\x83\x07\x21\xc0\x0f\xb1\x7d\xdb\x66\x55\x5e\x0f\xff\xcb\xff\x0c\x8e\x8f\x19\x2f\xb5\xd6\x0c\x2b\x86\x68\xa7\x83\xda\xd3\x52\xfe\x05\xef\x8d\xc0\xb2\x1a\x80\x23\x97\x20\x72\x2d\xd0\xcb\x46\xcc\x35\x13\xbd\xa6\xac\xb9\x74\x28\xba\xf9\x52\x32\xe2\xf3\xc8\x8a\x64\xbd\x4f\x84\x47\x45\x54\xad\xae\x3f\xd5\xba\xb7\x21\x25\x8a\x39\xd2\xc1\x89\x61\x9a\xcd\x0c\x95\xa6\x8d\x6a\xb6\xd7\x16\xa4\x81\xb3\x52\x5b\xc0\xa2\x61\x81\xe0\x1b\xaa\xc4\x0d\xff\xde\xeb\xef\xa2\x91\x95\x5c\xfe\x61\x8e\x74\x7e\xf2\xfd\xe9\x5f\xe2\x8b\x4a\xc2\xee\xc9\xf5\x4d\xd4\x35\xfd\xb8\xbc\x48\xc9\xdd\xdc\x7e\x56\xd3\x60\x37\x7d\x78\x7b\xc9\x91\xbb\x72\xb7\xee\xe0\x61\xb1\x18\x2c\xf8\xb1\x73\xe5\xab\x0c\xff\x7c\xf9\x72\xcc\x62\x18\xf9\x1c\x3a\x94\xdc\x62\x06\xa4\xc8\xe6\x54\x5d\x72\x00\x2a\xa9\x18\x9e\xbe\xee\x4e\x85\x01\x60\x6a\xfb\x74\x48\x83\x44\x84\x11\x32\x76\xff\xfe\xf4\x53\xba\x27\x92\x25\x09\xdb\x9d\xea\x2c\x07\x77\xa5\x03\xa0\xef\x54\xd4\x7b\x92\xcf\x27\x83\x1c\x1f\xb8\x54\x57\x96\x21\xf6\xe2\x5d\xd1\xee\x9c\xc9\xf3\xfa\xdf\xdd\x71\x9c\xe4\x93\x71\xaf\x3c\xf4\xdd\x24\xf6\xff\x03\xca\xf1\x5f\x19\x93\x2e\xa6\xab\xc4\x33\xf5\x62\xfa\x4f\xe7\x0c\x43\x3b\x11\x10\xec\xce\x5f\xfa\x06\xc4\xa8\x2b\x6d\x56\x03\xf7\xf4\xeb\x11\x86\x6e\xc6\x4c\x99\xd4\xb2\x57\xe7\x2f\x4e\xd7\x4e\xd1\x20\x53\x52\xec\x82\xc1\x47\xd2\x2f\x6c\xc6\xbc\x79\x3d\xf1\x39\x27\xf7\x68\x9a\x24\x0e\xb5\x55\x88\x0c\x6e\x1d\x36\x12\x95\x56\x9c\x97\x60\x9c\xd7\x1b\x7c\xfa\x78\x0c\xd8\x74\x3d\xa2\x3a\xe9\xdd\x93\xd0\x38\xb0\xa6\xd6\xa4\xf0\xa1\x6f\x9a\x3f\x51\x3b\xdc\x96\x1c\xc2\xb6\x5c\xe8\x4b\x77\x8f\x8e\xaf\x24\x6f\xd1\x61\x1f\x7d\x4e\x52\x94\xd8\x94\x96\x62\xb3\xfd\x3d\xcb\xe2\x92\x9f\x19\x48\xee\x38\x33\x64\x85\xa6\x60\x33\xb7\x4b\x46\xaf\xfe\xec\x8d\x2b\x07\x06\x4c\x46\x7a\xb4\xcb\xb7\x22\x18\x38\xb8\xf7\x35\x23\xe8\xe3\xc7\xcb\xe9\x6e\x84\x8b\x52\xe4\xef\x38\xe6\x14\x52\x85\x89\x10\xbd\x61\xaf\xf1\x78\xc2\xc4\x26\x96\x55\x14\xcc\xf3\xb0\x28\x6c\xf6\x87\xcb\x93\xd0\xd8\x30\x15\xca\x32\x78\xe6\xbe\xe4\x0d\xf0\x3a\x15\x22\x46\x54\x5c\xd8\xa6\xc9\xe5\x81\x0e\x68\x74\x92\x3f\x3d\x5a\x77\x7c\x25\xae\x04\xc5\x07\x3f\x3d\xad\xb5\x52\x82\x95\x94\xf0\xed\x9e\x37\xfe\x37\x8d\x54\x09\xad\x39\xbc\x4c\x1b\xf7\x34\x6d\x65\x4a\xa4\x67\xed\x69\xe7\x8f\x90\xee\xa4\x85\x12\x6f\xd8\x06\x71\xa9\xfa\x3a\xe6\x3a\x6d\x4f\xdd\x59\xeb\x84\xb8\x71\xce\x43\x23\x50\xce\xb2\xc3\x10\x20\x39\x48\x3f\x7b\x5a\x53\xc0\x20\x65\xd6\x24\x05\xaf\xe9\xc4\x5f\xf5\xaf\x8b\xf5\xe5\x86\x55\x4d\x86\x10\x23\xfa\x92\xbb\x41\x6c\x9b\xfb\xb6\x41\x91\x34\xc6\xee\xa7\x10\x99\xc2\x77\x3d\x5e\x93\x90\xcb\x60\x9f\x66\x53\x24\x1d\x94\xa2\x28\xb3\x70\x79\xec\xea\x28\xe9\xb5\xe1\x95\xb8\x5d\x9b\x41\x53\xc1\x3d\xa9\x9a\x28\x23\xc8\xb8\x17\xe2\x71\x8c\xd5\x72\xae\xfb\x73\xb7\xbc\x91\x54\x53\xad\x0e\x07\xb9\xf5\x2b\xd1\xfa\x51\xf0\xa2\x15\x76\x8c\xc1\x87\xf7\xc5\x51\xc8\x11\x58\xe3\x7b\x2c\xfa\xca\x0e\x15\x26\x71\x5c\xec\x93\x9f\xfb\xf2\x41\x9d\xc4\xe3\x51\x51\x8b\x3c\xfb\x25\x61\xfb\x6d\xdd\xb2\x86\xb8\xae\x94\x41\x8e\x36\x27\x5b\xe7\xeb\xde\x14\x91\x3c\xa8\xda\x38\xed\x1a\xa5\xbd\x94\xd8\x27\x3f\xf7\xe0\x2d\x4a\xdf\xc2\xa4\x16\xe8\x6c\x05\x9e\x46\x19\x2d\x33\x51\x53\x13\xaf\xdf\x2c\xc2\x9e\x73\x16\x50\xd3\xce\x7b\x13\x0d\x14\x05\x75\x3d\x26\xa5\x4a\xf6\x97\xda\x35\x96\x4b\xaf\x0a\x4e\xe2\x8d\x74\x6f\xcc\x27\x0b\xc6\x45\x49\xba\x87\x27\x97\xf0\xb5\xcd\xfa\x82\xcd\xa0\xd3\xc2\x47\x12\xbc\x31\xb1\x55\x1a\xc7\xf7\x12\x06\x7b\x6e\xe1\xc1\x01\x77\x81\xa0\xab\x3d\xf9\x58\x12\xb4\x59\x45\x2e\x83\xaf\x47\xbb\x0c\xba\xc1\xa1\x16\x68\xf8\x66\x0e\x1e\xc3\x1e\xd5\x45\xc1\xb8\x25\x45\xcb\xf2\x9f\x3c\x80\x66\x2a\x92\x9e\xb7\x38\xa9\xb1\x8b\xbe\x10\xbc\x50\x94\xa7\x5b\xf6\xbf\xcf\xae\x1b\xad\xdd\x1b\x90\x04\x56\x6b\xb3\x0f\xee\x46\xcb\x26\x64\x46\x96\xfb\xec\x0e\x90\xc0\xb9\xd2\x2a\xf3\x94\x72\x7c\xe6\xa7\x3b\x2f\x43\x03\xce\x32\x17\x86\x1c\xe5\xb5\x6e\x8a\xde\x1d\xad\x05\x11\x68\x88\x21\xee\x66\xae\x3d\x5f\xdb\x15\x52\x49\x6d\xea\x2c\xf4\x06\xeb\xaf\xd0\x79\xc3\x35\x07\x0e\x41\xee\xcb\x9b\xa1\xf7\x5b\x4c\x2a\x34\xbc\x71\xea\xad\x5e\xf7\xa8\xd6\xcf\x28\xa7\x01\x25\xac\x7e\xe6\x81\x74\x4d\x65\x13\x8f\x0f\xe0\xac\x90\x79\x72\xa1\xa6\xf4\x25\x75\x30\x15\x45\x31\xb8\x77\x65\xfa\x32\xb8\xdc\xae\x80\x2c\x64\x84\xe7\xe9\x13\x28\x27\xcf\x93\xe0\xe1\xec\xdf\x5f\xd4\x7a\x0f\x62\x57\x69\xd4\xd6\x67\xbe\x06\x07\xad\x40\xac\xc2\xf5\xa4\xe9\x32\x54\xea\x3f\xf2\x46\x7a\xfc\xaf\x96\xd6\x00\x46\x4c\xc7\x05\xbe\x04\xe2\xd0\x32\x66\xc5\x33\x92\xfc\xe2\xc1\xe9\xa7\xd8\xa4\x11\x6b\x3d\xdf\x7e\x20\xfd\x99\x2c\xea\xba\x61\xa9\x05\xfd\xd0\xa4\x77\x2e\xd2\x5e\x9c\x97\x38\x74\xe6\x2e\x7a\x41\xbe\x01\x49\x4f\x9d\x99\xc4\xcf\x3b\x5f\x81\xa6\x42\xd0\x1a\xad\x15\x95\x90\x54\xf6\xd7\xcf\x0d\x8d\x53\x96\x4b\xa1\x4f\x7d\x30\x81\xb1\x75\xca\x6c\xf3\xbe\x37\xd2\x38\x22\x5e\x86\xaa\xe3\xfd\xc8\x92\x59\x6e\x0e\x55\xc6\x7b\x51\xe8\xc2\xdb\x2a\x5c\xab\xda\xee\x8b\x8f\x0d\x8f\x0a\x7d\x41\x2a\x14\x40\x3b\xb9\xfa\x4e\xe8\x9c\x7a\x41\xf1\x22\x39\xe9\x37\x3c\xd5\x9e\xa8\x57\xdb\x29\xcd\xc9\x8e\xe5\xa3\xb5\x0a\xb7\x46\x1b\x1c\xbc\x88\x7a\xfb\xf3\xb7\xdd\x07\xe5\x60\x98\x38\xc3\x5f\xf1\x85\x5d\x6d\x68\x02\x39\x5b\x69\x94\x67\x57\x9d\x6a\xb5\x17\x07\x7f\x1a\xc5\x62\x39\x75\x87\xee\xaa\xc5\x81\xe7\x1c\x05\xca\xd9\x6b\xd3\xbb\xb9\x32\x2d\x45\x12\x18\xad\xc4\xe9\x09\x07\x12\x4b\x06\xa5\x8c\xd4\xf2\x77\x26\xbd\x8d\x80\x4d\x48\x66\x70\x6d\x5c\x3e\xd5\x08\xf6\x10\xbc\x76\x10\x3c\x52\xaf\xc1\x0b\x65\x56\xf6\x4c\x39\x1a\xf6\x9e\x6e\xe9\xc9\x8b\x12\xf6\x02\x47\x25\x33\xf3\x1c\xa4\xc6\x61\x98\xdc\x02\x48\xcb\x14\x07\x6d\x6f\xb9\x4d\x3d\xd8\x53\x65\x7e\xd7\x15\x07\x36\xe1\x86\x51\xdc\xda\x1a\x63\x9e\x26\x03\xd1\x30\xff\xc2\xe0\x64\x90\x15\x1e\x91\x09\x9a\x22\xb4\x20\x65\x20\xd5\xe4\x7e\x01\x98\x9c\xc2\x4a\xee\xb2\x6a\x0b\xb3\xff\x07\x45\x04\xee\x23\x96\x1f\xfe\xb0\x65\xd6\x88\x54\xa5\xa7\x34\xdd\x82\xbf\xbc\xa8\xdd\x7b\x53\xb3\x42\xc8\x8f\x3c\xdb\xa1\xdd\x18\x69\x0a\x01\x88\x8c\x51\xeb\x86\x61\x6a\x3f\xc8\x23\xff\x0a\x71\x8e\xfb\x48\xa5\x02\xba\x5b\x17\xbc\xae\xb7\x65\x06\x4f\x27\xa6\x45\xe7\x6b\xd0\x33\x22\x04\xf1\x78\x14\x81\xb2\x1f\xef\x18\x8e\x79\x23\xf2\x45\x05\x23\x87\xc5\x0f\xd6\x94\x90\xa8\x4c\xa1\x23\x7d\xe2\x6a\xbc\x44\x85\x2d\x1d\x48\x00\xf4\xdb\x71\xee\xf0\x54\xd7\x2b\xfb\x87\x1f\xbf\x87\x11\x91\xa5\xaa\x9c\x80\xf5\x63\x0f\x98\x7a\x4b\x21\x7f\xeb\x18\x2d\x1d\x5a\xbc\x11\x11\x35\x32\x8b\x4e\xa6\x0b\x49\x4a\x5c\x0f\x38\xc2\xfa\xfc\x9c\x3d\x35\x80\x14\x82\x3d\x80\xf7\xc7\xdf\x0e\xe8\xab\xef\x32\xb3\x99\x94\xa4\x95\xe3\xed\xb3\x65\x48\x20\x25\xee\x17\x2d\x5a\x70\x99\x1a\xd1\x0e\x9f\x90\x7c\x37\x87\x48\x5b\xae\xe0\xb2\x63\x48\x51\xd6\xe4\x25\xdf\x96\x4c\xea\xfb\x5f\xd3\xd4\x32\xeb\x54\x34\xe1\xd1\xc9\x0a\xe0\xe4\x53\x48\x95\x9f\x93\x58\x85\xe6\xca\xf7\x14\x22\x99\x8b\x96\x4a\x39\xbb\xe7\xce\xe4\x94\x78\xc2\xaf\xc9\xb7\x39\x64\x33\xac\x6e\xea\x32\xf3\x67\x4f\x9c\x84\xb1\xd4\x2a\x87\x92\x2a\x78\xb5\xdc\xf1\xea\x45\x5a\x16\x35\xe4\xff\x95\x13\xd1\xfd\x77\xe8\x4d\x70\x58\x15\xd8\x11\x4e\x31\xfb\xe1\x3b\x07\xab\x96\xba\x24\x61\x7a\x79\x5b\xeb\xe8\x29\x58\x79\xca\xa4\xdc\x77\xac\x43\x5d\x64\xcd\xd2\x23\xfc\xca\xdf\x58\x3c\x0c\x75\x35\x8e\x14\x94\xc9\xbe\x5d\xd7\xf5\xa1\x09\x53\xd3\x8b\xfc\xcd\x1b\x90\xc2\x3e\x97\xf8\xfb\xc0\x7f\x14\x81\x1f\x4c\xce\x95\xde\xcc\x05\x6f\xe3\xd5\x89\x54\xbe\x0f\xd6\xdd\x93\xfe\x66\xeb\xfd\xb0\xf4\x8b\x9d\x54\x32\xe7\xdd\xa7\x91\x55\x1c\x29\x29\xf6\xdb\xcd\x48\x1a\xcc\xe4\xcc\x00\xe1\xd0\x8f\xbf\x39\x14\x2f\xe5\xe4\x79\xf8\x8b\xee\x6d\x17\xf6\x84\xca\x10\xb2\x3f\xff\x7f\xac\x01\x54\x80\x54\xb0\xfe\xd1\x3d\x2d\x10\xa6\xb0\x50\x57\xc9\xe9\x8f\x9a\x11\x81\xa8\xcd\xea\x9c\xa3\x5c\x48\x33\x7f\x98\x3a\x02\x7f\xec\x0a\xb7\x60\xfc\x9c\x1b\xbf\x66\xa4\x56\xdf\xa8\x95\x5d\x76\xf1\xd4\xa4\x31\xac\x91\x66\x83\x4a\xa8\x7f\xf8\x19\x6f\xdf\x9c\x10\x68\x88\x5f\x09\x93\x24\xa2\xb1\xcf\x73\x2e\x41\x28\x6b\x63\x80\x2d\xd2\x84\xa7\xb5\x18\x41\xe4\xd4\xdb\x8a\x16\xa9\xf9\xcd\xef\x6a\x77\x32\x6e\x67\xd3\x72\x88\xd9\x1f\xbe\x9e\x64\x9b\x22\x0c\xbb\xc2\x6f\x7b\xfa\x9d\x44\x6d\x83\xae\xf7\x99\x64\xbd\xb7\xc2\x6a\x1e\xd2\x50\x5b\x9c\x57\x95\xe7\xf7\xdf\x76\x23\x15\x1a\x93\x37\x0a\xbd\xc1\x07\x17\xe2\xe9\x52\x9d\x0a\x39\x8e\x7c\xe5\xb0\x4e\x7a\x84\xd3\x25\x0f\xf6\x37\xb3\xb1\xe4\x38\x25\xc2\x90\x83\x94\xc2\xca\xe4\x3c\x6f\xac\x33\x02\x15\xeb\xd6\x0b\x31\xb5\xb3\xce\x94\x29\xe6\x39\x0f\x4c\xd6\xab\x4b\x39\xb8\x72\x78\xeb\xa0\xf2\xe7\x8f\x8f\xc5\x2b\xa2\x3a\xb5\x95\x34\x48\x5c\x74\xe4\x05\xa0\x90\x0a\x37\x99\x4c\x30\x9b\xd7\xdd\x6a\x22\xa0\x19\xfc\xf6\x08\x84\x00\x8b\xd5\x21\xac\x04\x3f\x7d\x49\x1f\x7d\x0a\x97\xdb\x36\xb5\xa0\xe5\xc8\xcd\xef\xd1\xec\xce\x78\xd8\x6b\x69\xa4\x96\xcc\x1b\x4e\xba\xbd\x46\xfe\xf7\x91\xd0\xf1\x55\xfa\x16\xdf\x0c\x23\x39\xb4\x82\xb2\xaa\xac\xea\x55\x25\x97\x9c\x3c\x35\x83\xbf\xf1\x5d\x68\x28\x96\x50\x51\xa4\xc2\x43\xbf\xfb\x96\x33\xc8\xa2\x91\x54\xa9\x6b\x32\xec\xe0\x7c\x20\x5d\x1d\xba\xd4\x86\x7e\xb0\x0b\xa9\x4c\xa9\x2e\x4c\xbe\xa6\x9f\x22\x23\x48\x65\xf3\x01\xbe\xdb\x6d\xc9\x20\x07\xd8\x98\x56\x33\xda\x72\x1d\x42\xa4\xa0\x06\x75\xbd\x1a\xb3\x5d\x68\xae\x7e\x7e\x1c\x6d\x1a\x95\x22\x54\x7e\xcd\x98\x01\x74\xbd\x15\xf7\xf0\x85\xc1\x2a\x0a\x82\x9b\x56\xf6\xb9\xae\xff\xc5\x9b\x00\xde\x4f\x66\x8f\x02\xd4\xb9\x1e\x70\x31\xc3\x77\xf6\xa7\x89\x29\x91\x86\xab\x16\x4f\x8b\x2e\x53\xf8\x2f\x2e\x98\x9f\xfe\xed\xf3\x3a\x67\x76\xab\x61\xd6\xc1\xdd\xad\xa8\x11\x6e\xf0\x88\x9d\x9c\xbf\x5a\x93\xfa\x37\x4c\x62\x59\xd4\xae\xc4\x14\xd0\xec\x76\x54\x40\x4c\xf6\x4c\x16\x56\xcc\xc1\x67\x4e\x83\x07\xf4\x62\xf8\xec\x1e\x6b\x41\x20\x65\x7e\xb1\x39\xdd\xad\xb8\xa4\xe6\xfa\x30\xd4\xd6\x53\xf4\xc9\x9b\xc6\x69\x55\xb5\x47\xad\x94\x9c\x4c\xb0\xc3\xd3\xbd\xcd\x78\x43\xe9\xb5\x4e\x94\xbc\xfb\x85\xc9\x5b\x29\x93\x26\xbc\xf8\xb5\xa3\x93\xd1\x5a\xbc\x1b\x47\x37\x2b\xfb\x7f\x1f\x49\x97\xd1\x0e\xf1\xc0\x8f\x6d\x80\x42\x22\x7f\x79\x79\x08\xda\xf8\xcc\x08\x9f\xde\x75\xda\xd0\x98\x1b\x06\x71\x23\x81\xc6\x60\xf5\x54\x85\xa4\x6f\x50\x2a\xeb\x80\xef\xdf\xa3\xd4\x34\x3d\x12\x39\x13\xb6\x23\xf4\xac\x45\x5c\x17\xbc\x1f\x22\x05\xe0\x9b\x94\x35\x2e\x78\xdd\xb8\x26\x0b\xbb\xce\xed\x73\x93\x6f\x55\x1c\x48\x21\xfe\xe2\x43\x1a\x53\xd6\x11\x44\x1d\xae\x5c\x55\x83\xd3\x36\xa8\x65\xf0\x5a\xe4\x93\x33\xf2\x36\xcd\x05\x92\x7a\xae\xea\xce\xbf\x7c\x1a\x0a\xfe\x2b\x05\x29\x32\xa2\xa6\x76\x9b\xb6\x47\x25\x75\xd8\xce\xb5\x44\xea\x29\x4f\x22\xa6\xbf\x0f\xfa\xa3\x1b\x17\xc0\xad\xbf\x86\x58\x0d\x6a\x59\xe8\xd6\x6f\x2d\x69\xc5\x09\x8c\xaa\x2d\x45\xdf\x7b\xfb\x36\xd4\x3b\xc8\x9a\x51\xc2\xa8\xc8\x63\x2a\x8a\x10\x21\x7d\xba\x93\x38\x71\x69\x37\xf6\x42\xe2\x8e\x03\xff\x22\xd7\x5c\xa1\xcd\x77\xc3\x8b\x66\x93\x88\x18\x93\xfb\xcc\x20\xa4\xe3\x1c\xc6\x7f\xa8\x09\x96\x74\x8c\x42\xbd\x0b\x73\x5d\x2e\x94\xb2\x46\x7f\x8e\x95\x92\xd1\x8c\xc9\x5c\x87\xd8\xcc\x90\x21\x66\xd9\x35\x58\x3b\x2b\x4c\x10\x76\x49\x22\xa3\x73\x93\xa6\x20\x54\x5a\xad\x28\x38\x53\x57\xdd\x3d\x85\xe8\x16\xdd\xd2\xd3\xea\xda\x4d\x3a\xb9\x55\x30\x27\x9a\xb7\x5d\xf8\xa8\x3e\xe4\x64\x10\xa3\xc1\xe8\x70\x3a\x5a\x53\x46\x4b\x81\x21\x68\x0f\xed\x0b\xc6\x7d\x60\x2c\x75\x3f\xad\xfb\x16\xd0\xc8\x6c\x3f\xb7\x1c\x21\x7a\x89\x25\x28\x29\x45\xa1\x32\x7b\xf7\x1d\x89\x12\x8b\xd7\x9a\xe0\x66\x2f\x80\xfa\xfa\xea\x1a\x93\xe1\x35\xaa\x37\xae\xcb\xa7\x2b\x18\x9b\x37\xa4\x39\x4b\xf0\xaf\xcf\xc3\x3f\xf0\x4c\x8a\x87\x93\x99\xc7\xae\x49\xde\x67\xcd\x08\xb3\x16\x28\x89\x3e\xd9\x8e\x71\xe4\x4c\x02\x67\x83\x2b\xdb\xd2\x6b\xb7\x7a\x65\x5a\xab\x20\xe2\x90\xd5\xc9\xa3\xee\x93\x1c\x87\xf7\xa6\x20\x15\x40\x9f\x59\xb2\x58\xb8\xf1\xf4\x45\x38\xe2\x87\x2d\x6a\x85\x46\x45\x7c\xf6\xce\xe7\x35\xed\x07\xc2\x62\x1f\x85\xeb\xde\x1a\x89\x66\xc8\x42\x30\xc3\x87\x0f\x9d\xfd\x0f\xa4\x25\x51\xf5\xf1\xb8\xff\xe4\x88\xe4\x43\x19\x8e\x04\x8d\xfe\xbf\x7b\xe3\x27\x6c\xb0\xd6\xba\xec\xaf\xc9\x0b\xa8\xd0\xd6\xb1\xdb\x57\xb7\xc3\x0d\x59\xc5\x4a\x12\x31\x8b\xbc\xdc\xf6\x23\xb7\x83\x5a\x23\x7c\x98\x9f\x5d\xaa\x0f\xab\x7d\x27\x62\x0b\x04\x1f\x50\xb6\x75\xcb\x58\xa9\x84\x34\xbc\x33\x9f\x79\xec\x52\xb4\x79\x54\xcc\xd5\x96\x83\x30\x7c\x04\x44\xb3\xa5\xc4\x46\xd3\xc3\xec\x9f\xb4\x37\x65\x11\x8f\x82\xd0\x98\xcd\xa3\xdd\x66\xee\xd9\xd1\xe8\x41\xf2\x02\x18\xaf\x42\xbf\x33\x1f\x11\xf0\xa8\x27\xdb\x13\x88\xfe\x13\x35\xea\x53\x23\xcc\xc9\xa0\x25\x30\xee\xc0\x58\xd4\x58\xd0\x3a\x11\x25\x9b\x94\x36\xe2\xa1\xe6\x35\x5b\x90\xcc\x06\x89\xa6\xd1\xd7\x2f\xd4\x56\x24\x26\xb7\xe5\x8a\x24\xb8\x67\x51\xa4\xfb\x68\xb9\xd4\xe4\x1c\xd8\x8d\x4b\xbb\x93\x12\x83\xd9\x75\x39\x8e\x26\x52\x2a\x26\x98\x35\x09\xa1\x50\x88\x21\x39\x86\xc1\x9f\x35\x6b\x6e\x62\x37\xc1\x3d\x44\x59\x60\xd0\xdd\xc8\x2b\xc8\x2e\x71\x9b\xba\x0c\x34\x7e\x7f\x03\x13\x87\xc2\x4a\x66\xf0\x96\x47\xef\x2d\xd7\x1d\x8f\xed\x8a\x4f\x2a\x91\xfc\x58\xf6\x7e\xa5\xd8\x71\x5d\xbd\xd9\xaa\xc7\x34\x38\x69\x41\x4c\x2a\x8a\xcc\x50\xc3\xad\xeb\xf3\xe9\xa3\x32\xa3\x4b\x9a\xf0\xa9\x37\x76\xed\xe1\x78\x8e\x5c\xf3\x31\x2e\x81\xd6\x93\x34\xda\x53\x90\x4e\xdd\x17\xec\xd3\x87\xb5\x54\xd0\x32\x17\x0a\x7c\x92\x5d\xa0\x6c\x68\x6d\x1b\x74\x50\x33\xc6\x76\xe4\xfb\x18\x16\x2c\xa0\xd6\xf9\xee\x96\xe4\x47\xcf\x04\xa0\x45\x6e\x3b\xd2\x1e\x76\x2c\x52\x0f\x7f\xe0\xfb\xd7\xaa\x9c\xc1\x2c\x0b\xc4\xfa\xa2\xa0\xf4\xe9\x9b\xe2\x79\x97\xc5\xd1\x7f\xc8\xfd\xd3\x82\x78\xf2\x24\x78\xd8\xf3\x7f\xec\x19\x75\x17\x28\x31\x51\x58\xcb\xfe\xe0\xac\x0e\xa2\x6b\x84\x27\x6e\xec\x19\x74\x80\x31\x4e\x23\xfb\xd4\x86\x64\x27\xd3\x94\x80\xde\x12\x16\xc8\xcf\x18\xc7\x30\x40\x94\x57\x6b\x52\x1e\xa5\x3f\xb3\xae\x84\x24\xe5\xed\x66\x91\x97\x9a\xf2\x21\x5c\x7d\x3c\x3d\x42\xa9\xb1\xb0\xa6\x33\x4c\xdf\xa8\xa6\x87\x54\xd9\xee\xf1\xf1\xae\x56\xb0\xa8\xe8\xc8\xfc\xf0\xd5\x11\x68\x9a\x5f\xe7\x71\x9c\xbf\x5f\xab\x71\x4d\xa2\x2c\xa2\x83\x25\x27\xd0\xa8\x82\x12\xe8\x98\x7e\xf2\xa4\x96\xce\x99\x07\x5c\x46\xb5\x2a\xfd\xfa\x61\xad\x9b\xa4\x1b\x98\xc1\x63\xf8\x75\x7f\xc6\x7b\x3a\x79\x9b\xb3\x7a\xe6\x4a\x4c\xdb\x30\x0d\x25\xcf\x3d\x98\x80\x23\xa0\x42\x7e\x79\xd7\x28\x24\xd3\x63\x63\xad\xb6\xdc\xd7\x90\x99\xb0\xdc\x43\xca\x1a\xc2\x04\x1d\x4b\xcd\xed\x2d\xbc\xee\xef\x8d\x40\x43\x2f\x8b\xd8\x86\xea\x54\x1f\x3c\x11\x1f\x87\x59\x05\x89\xa9\x3f\xbd\x14\xfa\x30\x29\x48\x01\x85\xfe\x1f\xe7\xea\xbe\xcb\xf0\x33\x68\xec\x9d\xfd\xf9\x12\xca\xf5\x12\x66\x4c\x77\xe9\xe3\x9b\xb2\x5c\xbf\x01\xc6\x50\x4c\x4a\x37\x96\x82\xbb\x8e\xe0\x35\xd9\x51\xe9\xc9\x6d\x70\x4f\x8c\x97\xab\xca\x29\x36\x92\xbc\x7f\x21\x59\x18\x81\x40\xdc\xbe\x97\x21\x7a\x99\xbc\x46\x0b\x15\x21\xfd\x9e\x82\x1f\xbe\x92\x98\xac\x5b\xb4\x42\x2c\x49\xb9\xd4\x57\x0d\xd7\x1e\x1f\x19\x5f\x19\x82\x7f\x4d\x66\xad\x16\x75\x00\xbf\x98\x90\xcb\x0f\x0c\x42\xbb\xaf\x4e\x10\x18\x5e\x86\xbc\x69\xbd\xf0\x49\xca\xa5\xd4\xa7\xd6\xa1\xd5\x97\x49\x05\xaf\xc2\xea\x20\xf3\xd8\xd3\x50\x62\xaf\xba\x6e\xf9\x55\x57\x87\x5f\xe4\x2f\x9a\xb6\x9a\x74\x15\x8f\xf2\xd7\xae\x6d\xda\xdc\x56\x1a\x74\x96\xa4\x16\x0a\xe0\x9d\x4f\x79\xd0\xd7\xac\x00\x36\xc8\x40\xf2\x14\x3f\xf6\xd2\x69\x45\x22\x9c\x54\x91\x3c\xae\x9e\xc0\x3f\x2a\xc8\xd8\xe7\xdf\xb7\x6a\x96\x81\xdc\x55\x89\x4a\xcd\x3d\xbf\xaf\x1d\x95\x68\x7c\x95\x6c\x11\xcf\xbb\x22\xd1\xfc\x8d\x68\x93\x0d\x4a\x1c\x50\x82\xc9\x75\xee\xd3\xd8\x63\x22\x9a\x07\xdd\xa0\x51\xce\xc1\x62\xce\x20\x96\xfa\xef\x47\x06\xb5\xeb\xff\x92\xa8\xdd\x5a\x46\xcd\x16\x04\xb1\xab\x90\xff\x26\x5d\xa3\x6b\x38\x96\x7d\x17\x7e\x53\x70\xe0\xf8\x04\x34\x0c\xb6\x7c\xdb\xa3\x61\x53\xa0\x37\x7b\xb5\x1d\x4a\x95\x57\x50\xe2\xc9\x90\x95\x1f\x89\xdc\x25\x8a\x7e\xe4\x07\x95\x3b\xb6\x03\x42\xac\x2b\xdf\x85\x59\x70\x29\xec\x90\x06\x9d\x80\xe5\x96\x43\xc2\x77\xa7\x6e\xe4\xaa\x83\x0a\x0f\x63\x59\x0a\x8f\xca\x0f\xa6\x1f\x09\xad\x54\x60\x4c\x94\xfd\xdd\x7c\x4d\x8a\x50\x47\x15\xab\xb7\xf2\xcf\xa6\x86\xcb\xf2\xed\x5a\x64\xf3\x13\x3c\x9f\xd7\x0f\x53\x51\xf9\x6d\x2a\xf7\xfb\xec\xa1\x87\x10\x44\x94\xd9\x4d\x52\x83\x0d\xf8\xa7\x57\xa6\x7f\xac\x27\x80\x3b\x08\xbf\xf4\xdf\xb7\x8e\x47\xed\x47\x9f\x34\x2e\x6e\x49\xca\x87\x46\x6b\x61\x42\x4e\xe4\xa3\x62\x7d\xfb\xc3\xda\x25\x70\xa8\x11\x1b\x2c\x7d\x6e\x2c\x6a\x39\xa3\x16\x4b\x39\x9f\x05\x0b\x41\x81\xb6\x70\x15\xf7\x53\x13\x99\xe9\x73\x51\x84\x27\x96\x94\x4b\xcf\xbc\x7f\x51\x82\xc8\x25\x4e\x0a\x48\x30\xfb\x10\x4a\x97\x52\xea\xfb\xc8\x2d\xc9\xd5\x30\x11\x79\x2a\x5b\xbf\x17\x7a\xc8\x6b\xe4\x0a\xcb\x03\xac\x7c\xf2\x93\xca\x6b\x74\x9f\xd6\x52\xb4\x06\x0b\x4e\x79\x49\x27\x2c\x88\xdd\x02\x98\xcd\xdf\x7d\x2a\x5e\x45\x38\xa4\x75\xbb\x7b\x62\x7e\xfc\x9f\xcb\xa2\x75\xd0\xf8\xb3\xe5\x88\xf8\x84\x2d\x4d\x76\x6c\x43\xce\x3c\x82\xdb\x5e\xc1\x01\xb9\xea\xcc\x5d\x4b\xe3\xc8\x6a\x00\xe4\xf2\xb3\x93\xf4\xa1\xa9\x45\x1a\x0c\xa5\x39\xeb\xa5\xf4\x0c\xc2\x30\x45\x78\x18\x89\x3d\x00\xcf\x31\x7b\x58\x73\x6e\x8e\xec\xf3\xe4\x05\xfc\xeb\x39\x1a\xd7\x7f\x46\xe7\xdc\x39\x6a\xad\x7c\xdb\x2b\xe3\xd0\xc4\xd5\x62\xb4\xde\xf2\x7d\x33\xef\x4c\x82\x12\xf2\x4a\x57\xea\xe6\x30\x3c\xb2\xcd\xdf\x7e\x9b\x36\x80\x21\xb5\x94\x61\xed\xd1\xd7\x74\x39\x46\xb9\xb9\x99\x1f\x55\x0f\x0f\xef\xbe\x40\x65\x18\xdf\x05\xf2\xf4\x9b\x23\x86\xa2\x71\x74\x9f\xdc\x10\x64\xc7\x8c\x42\x87\xdf\x05\xf4\x89\x5c\xc8\x04\x17\x07\xa8\xff\xaf\x92\x68\x66\xfc\xb3\x36\xc8\xdd\x37\x32\x6f\xa3\x49\x12\x22\x42\x70\xa6\x23\xf1\x2d\x90\x63\x1f\xf9\xb4\x27\x3c\xa2\xcd\xe2\x7d\x20\x84\x42\x1d\xfc\x62\x51\x1b\x7a\xda\x36\xd1\x78\xb1\xfe\x21\x4d\x32\x90\x3a\x16\x57\xfd\x5e\xae\xf7\x09\x0c\xdd\x60\xb1\xa6\xc2\x87\x1f\xd2\xd6\x28\x44\xc8\xdb\x0a\x4b\x17\xd0\x6a\x2e\xac\x21\x61\x58\x8e\xb5\x13\x5f\x6c\x83\x94\x7c\x15\xb1\x58\x99\x0b\x1b\x08\xad\xcf\x98\xf1\x6c\xda\xb7\x40\x33\xe2\x81\xb3\xc3\x91\x74\x0d\x6f\x48\x0a\x6e\xb6\xae\x19\xc4\x49\x71\x37\x30\xba\x05\x93\x92\x41\xdb\xa1\xe6\xbf\x86\x34\xa8\xc9\xec\x1a\x1a\xb1\x66\xff\xae\xe5\x04\x97\x6d\x50\x6a\xd0\xbf\xea\xc2\x2e\x1f\xbe\xf0\xe4\xfb\x0c\xbf\x7b\xf7\x0b\x6d\x71\x5c\x97\x39\x1a\xb6\xec\x7b\x83\xf4\x23\xe5\x9e\xae\x5a\x92\xbf\xe9\x6d\x0c\x92\x98\x37\xa3\xd0\x1b\x2c\x78\x74\xe0\x89\x87\xac\x9a\x7e\x8e\x60\xf0\x45\x2a\x80\xd3\xf8\xa3\x67\x46\x24\x53\x08\x7c\x30\x27\x8d\x19\xd5\x92\xdf\xa2\xd9\x89\x95\x87\x74\x2f\x85\xcf\x99\xc7\x5a\xc9\x47\x59\x03\x34\x7e\x90\x98\x82\xd1\x1a\x29\xbe\x37\x13\xf5\x48\xd8\x5d\xee\xb3\x4f\x8e\xd5\x12\xbf\xb4\x77\x05\xeb\x04\xe8\x6e\x6e\xb8\xa6\xc5\xe6\x85\x95\x68\xc2\x48\xc9\x7e\x13\x35\x00\x06\xe7\x56\xb4\x3d\x3c\x83\x78\x70\xae\x5f\x82\x8d\x5d\xe6\xf3\x2f\xc6\x31\xad\x34\xd9\x6f\xa9\xd6\xbe\xde\x96\x1e\xfe\x5b\xac\x6a\x86\xaf\xab\x8e\x99\x4d\x73\xda\xd3\x9f\xba\x11\x76\x7c\x82\xd8\x95\x18\xaf\x9d\xfd\xed\xfe\x61\xd1\x39\x74\xa8\xe1\x01\xdb\x7f\xf9\x71\x84\xbd\xe2\xae\x57\x21\x35\x19\x15\x8f\x3f\x9b\x0c\x8f\xa2\xa5\x0a\xe8\x17\x66\xdf\x5e\x9b\x16\x8a\x77\x88\xb0\x98\x74\xef\x51\x55\x7d\x3a\x44\x7d\x53\xcb\xc8\x45\x5e\x2b\x26\xd8\x99\x0d\xa6\x62\x69\xf0\x5a\x4d\x2e\x66\x2f\xd9\x9b\x78\x4e\x87\xf7\x27\x28\x4c\x47\x33\xc1\x1a\xe7\x9e\x09\xe2\x0b\x6d\x68\x80\x57\x23\x16\x33\x22\x65\x17\x6b\x51\x24\x58\x69\xa3\x82\xae\x3f\xb3\x7a\x07\x7e\x29\x35\x65\xa4\xd7\x9f\xff\x68\x67\xba\xe8\xe0\x22\xe2\x23\xec\xdb\x1a\x67\x93\x26\x16\xfa\xdf\x9e\x4d\x22\x73\x4f\x77\xcf\xf4\xb9\x5d\x5d\x2d\x79\x6c\xc1\xca\x51\x68\xba\x6d\x50\x34\xe6\xcc\xdf\xfa\xca\x04\xfd\xaa\x90\x86\xbc\x16\x18\x27\x90\xaf\x3e\x1b\x99\x21\xd0\x9a\xda\xd1\xfe\x70\x39\x00\x60\x3e\xca\xac\x06\xf1\xab\x34\x06\x0a\x8d\xbe\x07\x3d\x8d\x48\x4a\x51\xee\x32\x7a\xb4\x96\x7f\xde\xbc\xb9\x85\x79\xf3\xd4\xb4\xab\x6b\x5f\xb2\x41\xac\x73\xaf\x95\x57\x94\xfb\xc1\xe9\xe4\x7b\xd8\x4a\xba\x9f\x41\x11\x98\x7b\xcb\x44\xdb\x18\x43\xf8\x1e\xb3\xd9\x46\xf5\x49\x0f\xda\xc8\x7e\xcc\xb2\x78\x43\x06\x3e\xf2\x62\x0b\x8c\xc6\xf3\x45\x11\x3a\x2c\x69\xf3\x7c\x5c\x99\x0e\x7b\xc4\xa1\x85\xde\xe0\xf7\xce\x05\xe1\xdf\x5b\xba\x74\x95\x2a\x77\xfe\xf6\x22\xa2\x92\x12\x85\x90\xcb\x0c\x3b\x0d\x15\xc9\x62\xe6\xda\xb4\xd9\x72\xd9\x7f\x38\x1d\x09\xe2\x17\x2f\x2f\x19\x85\xde\x20\x38\x5f\x0d\x39\x2b\x4d\x47\x69\x8b\xc9\x27\xb9\xe8\x79\xbd\x1d\xa1\xb5\x5a\x5c\xf5\x7f\x48\x53\x44\x2f\x86\x07\x32\xc2\x49\xfa\xd3\xb5\x5e\xd7\x24\xa2\x46\x0c\xea\x7b\x4a\x5a\x2e\x7c\x30\xd3\xe6\x6a\x42\xfc\xbc\x61\x57\x54\x39\xa9\x56\x23\x99\xef\x9e\x3f\x44\x45\xb0\x3a\xb1\xa4\xb7\x7e\xe6\xf6\x29\x71\x6e\xb4\x08\x8f\x32\xce\xcd\xaf\x25\x2c\x06\x97\x7a\x98\x20\xf9\x6b\xa1\xfb\xa2\x5b\x16\x29\x72\xa8\xd7\xa2\x5d\xd2\x47\x34\x8f\x70\x8f\x92\x5a\x8d\x60\x28\xe4\x81\x21\x4a\x73\x8a\xd8\x03\x54\xb5\xd9\xc1\xef\xe9\x72\x0b\xc8\xee\x2a\x77\xdf\x13\x78\x57\x4f\x1c\x58\xa7\xe5\xba\xb6\xe9\x38\x60\xc0\x33\x22\x72\x83\xb1\x73\x14\x9a\x1e\xda\xc0\x92\x92\xf4\xdc\xe0\x17\x67\x2e\x44\xf0\x18\xbb\xea\x11\x57\xb2\xc1\x6e\x9c\x9f\xe8\xee\x6f\x44\x83\xa0\xec\x5f\xef\x49\xfe\xc1\xfc\xe4\x16\xff\x46\x33\xae\x2a\xb3\x72\x98\x4e\x00\xc2\xfc\x82\x17\x03\xca\x7a\x3c\x13\x97\xb7\xd9\x55\xe7\xc7\xbf\x07\xb0\xdd\xd1\x13\xff\xf0\x78\x8d\x11\xe9\x86\x71\xae\x21\x1f\xe3\x36\xe4\x4a\x63\x10\xdb\x93\x44\xe3\xdc\xe7\x36\x2b\x11\x21\xbf\x18\x3b\xfb\xe4\x3f\xa7\x0c\xdc\x56\x9b\xdc\xaf\xc8\x61\xb2\x31\x35\x35\xd3\xf0\x58\x0d\x04\xa5\xb2\x19\x91\xfe\x8d\x86\xdc\x23\x48\x91\x84\xaf\x6b\xc8\x70\xba\x81\x45\xdb\x92\x1f\xbc\x99\x60\x8d\xb1\xf2\x5a\xfe\xa6\xe7\x90\xdf\xa8\x1d\x0b\xa8\xc8\x36\xf2\x57\x73\x87\xe2\x6a\x54\x32\x01\x26\xec\x4e\x0f\xce\x66\x77\xc9\x25\xda\x0b\x7d\xa8\x5d\x21\x42\x70\x0b\xd1\xcf\x32\xfd\xcb\x93\x1f\x54\xa2\x52\x68\x33\x33\xa1\x2f\xce\x80\xae\xd7\x92\xab\x73\x43\x8b\x78\x24\x1b\x9f\x05\x99\x8d\x3e\xf2\x6e\xf2\x99\x2b\x7c\x63\x0d\x29\xf5\x07\x77\x59\x91\x93\x16\xb3\x94\xb3\x59\xbe\x79\x04\x71\xef\xb8\xc5\x4a\xac\xac\x1c\x14\x1f\xee\xb9\x50\x55\x57\x4d\x1c\xad\x33\x6b\xb6\x23\x08\x23\xf7\xad\xf0\xfb\x4b\x94\xfb\xc2\x74\x15\xc0\xeb\x54\x58\x9c\x57\x63\x95\xd6\xd7\x90\x4f\x00\xf1\xa2\x16\xf9\x9d\xf7\x2e\x48\xe0\xe1\x40\x07\xcc\x26\x84\x07\xf4\x3e\x82\x43\x1d\xd8\xe3\x54\xea\x31\x44\x3a\xb2\xc1\x9f\x1e\x55\x16\x18\x8e\x43\x09\x48\x98\xfe\xd3\x6a\xbc\x04\xab\xd8\xf2\x0b\x07\xac\x23\xa1\x18\xb9\xeb\x7d\x22\xd2\x8e\xdc\x1d\xcb\xd2\x27\x48\xea\x9a\xa9\x66\x98\x3c\x77\x41\xd4\x72\x82\xe9\x59\xee\x3c\x0b\xb9\xe1\x56\x99\x65\x95\x7d\xb0\x24\xc8\xfd\xe3\x53\x6d\xea\x24\x0b\xc1\x7d\x5b\x11\x1b\xb2\x3b\x5f\xd3\x18\x48\xdc\x96\x0c\xa8\x24\xd6\xe5\x67\x20\x67\x24\x43\x70\x57\x22\x76\x6b\xbe\x12\xfe\xca\xad\x2b\xa3\x8b\xd3\x74\x44\x98\xe3\x83\x8d\x07\x60\x86\x24\x85\x91\x0a\xbd\xc1\x9d\x87\x3b\x10\x5c\xd2\x35\x53\x64\x0c\xbb\x1d\x61\x0c\xa4\x46\x91\x7c\x5c\x53\x26\x6a\x84\xf1\x81\x08\xd6\xb9\x3f\x9d\xd0\xe2\x3d\x98\xf0\xc0\x6c\xef\xb7\x4f\xc2\x03\x2a\x32\x01\x68\xca\xdc\x11\x33\xd9\x52\xd8\xb4\xe1\x4a\x53\x91\x34\x45\xf0\x7d\x1a\x99\x59\xb0\x8a\xe9\xc5\xf1\x36\x33\x72\x0f\xb2\x01\x50\x44\xd7\x7c\x77\x16\x69\xee\xa2\xe1\x68\x66\xda\xbd\x8a\xf6\x58\xa7\x61\x09\xdd\xdb\x9f\xf9\xc3\x33\x08\x00\x69\xac\xf7\x99\xe7\x11\xab\xd0\x1b\x1c\xcf\x22\x93\x5d\xaf\x29\x25\x9f\x7f\xfe\x12\x1c\xa2\xf5\x3e\x09\x6b\x5c\xf9\xbc\x7f\xff\x4a\x32\xdf\x2c\x83\xfa\xfb\x97\x34\x1a\x1a\xa0\x53\xa2\x48\xfd\xe6\xf6\x4b\x50\x05\xe9\xb5\xae\x13\xb3\x9f\xdc\x96\x5c\x39\x93\xcb\xf9\x1d\x94\x6a\xd9\x4f\xd9\xe9\xa9\x8e\xa1\x34\x4e\x35\x5b\xa8\xdc\x57\x96\xa6\xa1\x60\x96\x2f\xf7\x19\x99\xea\x54\x0d\x17\x03\xd1\x46\x43\x76\x6e\x5d\xfd\xc1\xe4\x91\x94\xc0\xc0\x51\x02\x2e\x5b\xde\xf6\xd6\x4e\x4d\x78\x8b\x33\x23\x96\x88\x7a\xe8\xae\x16\xd5\xba\xa6\x02\x84\x7d\x79\x0c\xc0\x7d\x3e\x4a\x3d\xd2\xaa\xcf\xf1\xff\x76\xe1\x09\x36\x03\xfc\x49\xe6\x9f\xcf\xd1\xa4\xe4\x2d\x6e\x00\x28\x66\xed\x69\x6d\xf4\x28\x85\x65\x98\x17\x1b\xa7\x2f\x78\x2b\xa2\xf7\xbb\x1e\x97\x3a\xa4\x7b\xe6\xea\x56\xea\xb3\x15\x9a\xe4\xfb\x7d\xe3\x5a\x9a\x4a\xe0\xe6\xc6\x6c\xbe\xbf\x6d\x1e\x82\xc8\x6a\x72\xa8\x7a\xe3\x8b\x90\x98\xae\x52\xd3\xa6\xce\x42\x6f\x70\xf3\x0e\xe4\x76\xca\x2c\x59\x95\xfc\x72\x43\xf2\x6a\x95\xa7\x9f\x05\x03\xc2\x31\x87\xe0\x64\x0a\xdf\x95\x05\x7b\xb0\xe8\xf4\x25\x88\x45\x2c\x28\xf1\xa8\x9d\x62\x6c\xe7\xaf\x6d\x4f\x6a\x58\x69\x8d\xaa\x3c\xf4\x32\x97\x69\xac\x7a\x5e\x63\x36\xf7\x41\x2d\x2d\x98\xf7\xb8\x46\x1a\x26\x20\xd8\x24\x2b\xd4\xb3\x48\x0b\xdc\xe5\xa2\x24\x6b\xa9\xec\xb8\x13\x2d\x8e\x2c\xc4\x8e\x9c\xfc\xaa\xdb\x14\x04\x44\xaa\x18\xf7\xf6\xe7\x6e\x3e\x73\x29\xd2\xe7\x73\x3d\xe6\xf9\xad\x39\x2a\x7b\xe9\x3e\xc8\x1e\x1f\xb1\x28\x1e\x3c\xe5\x27\x1f\x44\x2c\x59\xe2\x30\xd0\x92\xcc\x8e\x79\x28\xb9\x66\x0d\x2a\xc7\x6d\xdb\xdf\x9c\x96\xee\xf3\x28\x09\x9b\x4a\x93\x39\xd3\x07\x54\x9f\xba\x5c\x7d\xd0\x1a\x2d\xc9\x46\x69\xca\x01\xed\x40\x31\x85\x67\xca\x95\xee\x49\x9a\xb9\x1a\xf7\x58\x3d\x56\x45\xcb\x2d\xe8\x50\x1f\x9b\x15\x29\x9a\x1e\x66\x3b\x9e\x45\xc6\x09\xbe\xc7\x6d\x5e\x93\x77\x36\xb8\x6e\x81\x66\xf7\x49\x44\x64\x19\x1d\x7c\x76\xad\xc6\x53\xf1\x6b\x45\x8b\xba\x11\x11\xe9\x13\x83\x75\x42\x71\x18\xd3\xa4\x48\x70\x58\x61\x6c\x3d\x01\xa7\xba\x4e\x0c\x62\x83\xf0\xe0\xf3\xe3\xe3\x99\x64\xd1\x0f\x0f\xd1\xba\x47\xdb\xd1\x21\xa2\x35\x97\x5a\x75\xa5\x5b\xf7\xa5\x5d\x7a\xaa\x91\xbc\x0f\xd9\x09\x2b\xac\xcc\x27\xc7\x23\xd8\x01\xa9\x2b\x79\xb3\x9d\x67\x52\x45\xaa\x5d\x01\xad\x9c\xd1\x37\x69\x9c\x3c\xa5\x4c\xa8\x46\x40\xbd\x47\x92\xa2\x72\xe6\xec\xae\x42\x23\xb2\x73\x7f\x2a\xf9\x69\xc2\x8f\x47\x43\x7f\x9e\x80\xb1\xb2\x1c\x2c\xcc\x3e\xf0\xb0\x36\x32\xa1\xa2\x1e\x79\xb8\xdf\x5e\x7c\x7f\xf8\x47\x37\xac\x5c\x54\xe8\x0d\x3e\xd0\x89\x82\x7a\xea\x66\x94\x64\x7b\xb4\x7c\xf9\xaa\xc8\x68\xa3\x7d\xe6\x70\x04\x9e\xf4\xa4\x3e\x56\xe0\x1d\x40\x8e\x52\xa4\x68\x51\xa5\x70\xd2\xdb\x9f\xcb\xdc\x8b\x91\xb9\xe0\xcd\x9b\x1f\xf1\x14\x36\x50\x17\x25\xa0\xd1\x8d\xbe\x0b\xb5\x7b\xb4\x82\x45\x05\xb2\xe7\xbe\xa5\xab\xfa\xc9\xa9\x7b\xa1\x37\xf8\xd6\xb2\x44\x87\xc0\xc7\x68\x92\x41\x43\x46\x69\xe7\xbd\xec\x45\x40\xc3\xa9\x6b\xe3\x17\xdf\xc7\xa5\x90\xd6\xb7\x77\xa7\xf7\x68\x9e\x60\x45\xdf\x26\x56\x98\x8a\xf5\xbb\xb8\x79\x13\x36\xda\x72\x4c\x62\x85\x0f\xe1\xe0\x76\x5d\xb7\x56\x50\x87\xda\x1e\xb1\x15\xdb\x60\xd6\x18\x18\xdf\x49\xa3\xe2\x92\x92\x64\xc8\x7c\xff\xb0\x2e\xc7\x3a\xbb\x2b\x62\xa9\x7c\xee\x1c\x65\xba\xcd\x14\xaa\xa8\xed\x34\x9c\xe1\x2b\xfd\x12\x03\x3d\xa7\xcc\x4d\xc7\x5b\xc0\xec\xa0\x4b\x15\x75\x58\xff\xf9\x44\xfa\xe0\xc6\xba\x41\xe1\xd5\x80\x20\xfe\xc9\x17\xd2\xf8\xc9\x32\x57\x0c\x55\xeb\xa8\x4e\x25\x88\x49\x27\x32\x53\x6c\x1d\xa2\xcb\x73\x52\x2a\xdd\x32\x22\x49\x61\x5b\x23\x78\x95\xa8\x91\x90\x5a\xfa\xb3\x5f\xb3\x35\x85\x4b\x45\x73\x57\x20\x84\x03\x0f\x60\x33\x5d\x0f\xcc\x86\x0b\xbd\xc1\xdf\x6e\xd3\x27\xae\xe0\x52\x16\xa6\x91\xc7\xcf\x1f\x95\xbe\x6e\xa8\x9c\x39\x65\xc6\x6f\x40\x99\x73\x14\x7a\x83\x33\x27\x53\x86\xdd\x7d\x61\xac\xfb\xc2\xc6\xd1\x5a\xef\x56\x31\xbd\x58\x25\xb0\xa1\x71\xa4\x2d\x52\xa4\x56\x24\x69\x5f\x7a\x38\x8d\x78\x76\x4c\x6a\x39\x03\x09\x8e\xde\x33\x38\x3e\x83\x9d\xdd\x73\xc2\x37\xf5\xc6\x72\x8c\xef\x97\x9e\xd4\x81\xfb\x2a\x88\x1d\xaf\xf2\x1d\x2a\xd8\x00\x35\xc5\x27\xd7\x46\x08\x42\x6e\xc8\x25\x4c\x76\x77\x4f\x3a\x25\x5b\xfe\x46\xb3\xca\xf1\x38\xaf\x3f\xff\x81\x63\x9a\x71\x5e\x0c\x53\x84\xd2\x73\x2f\xea\x69\xa9\x45\xeb\x4a\xac\x29\x53\x5f\xa2\xb1\x4f\x7c\x4d\xa2\x26\xf7\xa1\x6e\x28\xfa\xca\x22\x41\x71\xef\xb1\x92\xf7\x28\xcd\x8f\x1b\x00\x18\xc9\xbc\xd7\x96\xac\x6b\x0c\xcb\x6f\xbd\x6a\x53\xf6\x24\x01\xb9\x26\x5c\x34\xbe\xca\x1d\x7e\x7e\xac\x76\x08\x14\xcc\x38\x89\x1a\x9f\x1b\xaf\xb9\x51\x92\xc8\xc4\x63\xdb\x24\x94\x36\x11\xed\x48\x53\x31\xf6\x7c\x61\x4b\x04\xda\xc1\xf6\x91\x68\x2c\xd4\x2c\x78\x3c\x92\x63\xbc\xaa\x2b\xe9\x0d\x9a\x5c\x54\xd3\x6b\xf5\x15\x88\xd7\x63\xc1\x20\x21\x73\xcd\x78\x85\xe1\xe4\x35\x80\x27\x01\x6f\x69\xe2\x19\x84\xc1\x23\x35\x66\x81\x5b\xdf\x7c\x8d\x8c\x2a\x78\x49\xb0\x8a\x4f\x37\xe2\xf7\x99\x59\xb2\x55\xdf\x89\xd5\x8a\x54\xa8\x30\xf2\xf9\x67\x94\x6d\x99\x8a\x39\xb9\xde\x87\xb1\xb7\xa5\x5d\xf1\x58\x2d\xbc\x09\x9d\xbb\xdb\x13\xd6\x28\x86\xc5\x06\x5f\x5e\xad\xcd\x32\xb8\xe1\x47\x62\xa4\xb9\x55\xf7\xc1\xbe\xe5\xea\xb0\xec\x2d\x21\xcb\x8e\x7c\xcf\x73\xc3\x54\x03\xa0\x76\xd7\x85\xde\xe0\x9a\xbe\xf8\xd8\xc3\xcc\xae\xed\x18\x02\x67\x18\x86\x5c\x46\x2b\x27\xba\xcc\x9f\xb7\xb4\xeb\xc7\xad\xa2\x7c\xe9\xd7\xde\x93\xf4\x05\x25\xe6\xc6\x8d\x6a\x72\x40\xe6\x0e\x51\x66\x07\x20\xcd\x14\xbe\xdf\x4b\xee\x4a\x5e\x56\x45\xc2\xe3\xd1\x69\xd9\xbd\x30\x91\xc1\xe3\xe5\x96\xfb\xda\x7c\x22\xa1\x9e\x49\xaa\xd3\x65\x4f\x8f\x46\xa9\x4d\x08\xe6\xe2\xbe\x30\xb3\xa2\x2f\x49\x67\xd2\x9c\x94\x18\x71\x59\x34\x79\x90\xe6\x45\x07\x64\xdc\x48\x9a\x22\x33\x02\x39\x0e\x96\x99\xe5\x49\x3f\xb4\x7c\x4e\xb9\xd7\x96\x04\x25\xca\xdc\xf1\x1f\xcb\xc9\xcd\xb2\x98\x5d\xa1\x42\x8a\x30\x07\x3f\x9f\xab\xe1\xa7\x84\xe4\x32\xa9\x20\x95\xfb\x73\x69\x70\xf8\xbf\xae\xba\x2a\x5a\x82\xed\xb2\x90\x97\x50\xa4\x87\xd8\x9f\xaf\x1d\x3f\x5f\xfe\xd1\x87\x0a\xbd\xc1\xbe\x9e\xa4\xc3\xab\x12\x50\x98\xc8\x2f\x5a\x9e\x1e\x35\xd7\x2d\x52\x62\x35\x26\x52\x17\x31\xf8\xe8\x1e\xad\xa8\x63\xc4\x8e\x18\xde\xd9\xc7\x0f\xa1\xd2\x85\x12\x59\x14\x67\x3e\x78\x28\x19\x81\x4b\x37\x5c\xd1\x32\x75\xcd\x7d\xbc\x13\x37\xde\xd2\x70\x5f\xfe\xc0\x7b\x8e\x27\x2a\xac\x0e\xb3\xab\x2d\x2b\x83\xcf\xbd\x85\x80\xb6\x1b\x88\xe1\x29\xd1\xbe\xec\x98\x2d\x6a\xea\x51\xa1\x76\x89\xc8\xba\x2f\x7f\xa7\xc6\x9e\x72\x88\x51\x95\x46\x32\xf3\x25\xe1\x41\x63\xf5\xd9\x61\x87\xd8\x50\x1b\x91\x1f\xbc\x85\x86\x8c\xc4\xa5\x78\x0d\x74\xde\x7e\x54\x43\x28\xb3\xac\xde\xfe\x5c\xf7\x8e\x61\xea\x5d\xca\x69\x0c\xa0\x1b\xbe\xb7\x6f\x00\xc7\x3b\x29\xd8\x7e\xf2\x55\xcd\x4d\x9c\x37\x60\x85\xc4\x17\x68\x6b\xcb\x3a\xb1\x65\x0a\x48\x2e\xe7\xac\x75\xc8\x5e\x39\x7e\xe5\xb9\x9b\x0f\x5d\x14\x1b\x66\xb6\x20\x47\x73\x5f\x1f\x84\x39\x7f\x45\x18\x6d\x65\x96\x3f\x9c\x78\x3b\xd1\xf5\x85\xde\x80\xd9\xa3\xd1\x94\xa1\x61\x51\xcf\x83\x07\x07\xa2\xb4\x8f\x8f\x89\x61\x66\x44\x90\x68\x32\x7e\xe5\xfe\xe1\x69\x8d\x02\xf9\xa7\x13\xa6\x20\x24\x08\x61\x16\xf7\x65\x6d\xfb\x99\xf3\xf1\x94\x36\x99\xba\x4c\x45\x88\xfc\x39\x52\x71\xed\x47\xdd\x63\xf4\xd2\x31\x7c\x3f\xf1\x18\xec\xbf\x8e\xa2\x0a\x95\xca\x4f\x18\xfc\xfb\x03\x5a\xe5\x4c\x8c\xd8\x1d\x29\xf3\xb1\xb1\x90\x71\xe7\x74\x01\x7b\x37\xd8\xb4\x6c\x74\xe2\x31\x5a\x69\x79\x66\x0f\x4f\xd1\x18\xe3\xa4\xe6\x10\x56\xb1\x95\x84\xeb\x82\xb5\xa3\x10\xcd\xd3\xa6\x29\x90\xc5\xa4\xe4\x88\x0b\x1a\x2d\xbe\xfb\x33\x77\x9f\x46\x5f\x53\x49\xfd\x3f\xa6\x6f\xdb\xeb\xa4\xe6\x24\xbe\x5d\x57\x78\x1a\xf4\x0c\x7c\x5f\x91\x04\xe7\xaf\x34\xf9\xac\xb2\x2f\x6c\xe6\xc5\x8e\x92\xf9\x8b\x5f\x86\x52\x64\x85\x5f\xb4\x58\x8d\xb6\xda\xdd\x4e\x3b\x94\xfa\xb4\xbc\xae\x04\xe1\x47\x5b\x88\x7f\x86\x45\xd1\xb3\x5f\x28\x23\x32\x1b\xb5\x68\x11\xdc\x3d\x83\xdf\x9d\x33\x14\xdd\x1c\x00\xa4\x6d\x9a\x90\x2e\x6b\x5c\x56\x53\x8b\x86\x64\xf8\xfb\x8d\x8d\xc8\x64\x46\x10\xcf\x30\x69\xbd\xd0\x1b\x2c\x7a\x1d\xf9\xf9\x10\x0b\x6b\x13\xd2\x9d\xc9\x81\xe6\x45\x8f\x40\x5d\xba\xed\x58\xfa\x77\xf5\x11\x83\x17\xb5\xe2\x62\x67\x5f\x3b\x1a\x4c\xb9\x2e\x03\xf9\x93\x42\x6f\x70\xc5\x7e\x05\x92\x62\x2e\xf7\xa0\xeb\x7f\xf5\xc9\x38\xb7\xd4\x58\x2b\x02\xea\x6a\x81\xa6\xa8\xac\xe6\x5b\x1e\xb1\x29\xf7\x5d\x18\x76\xe4\x2e\xdb\xdb\x42\xd9\xe9\xa3\x86\x17\x2f\x51\x1e\x38\xd6\xa6\x1e\x7a\x9d\x5b\x7e\x94\x65\xf2\x1d\x07\x92\xe7\x2e\x27\x78\x3e\xe4\xd5\xa0\xfc\x3a\x2a\x34\x7d\xcf\x65\xe1\x0f\xd9\xfc\x44\xfa\x98\x82\xb4\x17\x8d\x94\x86\xaf\xd9\x85\x05\x5f\x5d\x50\x32\xfd\x48\x9f\xce\x63\x04\x09\x7a\x78\x8a\x5f\x9c\x1e\xb7\x66\xc5\x14\xe6\x72\xc8\x6e\x6c\x19\x45\x4a\x34\xd6\xfb\x9f\xf5\xf8\xf0\x38\x94\x4a\xad\x98\x6b\x57\xad\x08\xd6\x3c\x9f\xbc\x55\x6e\x18\xbe\x80\x81\xf4\x07\x34\xe2\x4a\x8d\x0b\x8f\x44\x5e\x64\x99\x83\x47\x12\xa8\xa2\xb4\x02\xf2\x98\xd1\x2a\xa6\xf2\x73\x4d\x14\xc2\xa1\xc2\x65\x52\x6e\x48\x36\x20\x85\xba\x66\x0e\x0f\x3e\x77\xf8\x18\x3c\x38\x58\xd3\xe2\x32\x0c\x22\x3c\x9b\x36\x35\x4b\xa8\xdb\xde\xbb\x44\x2b\xa1\x22\x37\x7d\x98\x54\x07\x26\xea\x43\x5c\xa5\x3a\x7a\xab\x26\x54\x4d\x2d\x6a\x78\x09\x11\xeb\x88\xad\x71\xcc\x78\x0d\x4c\xe7\x82\xb5\x13\x06\x10\xfa\x53\x4d\xdb\x54\x4d\xd8\x4f\x56\x47\x45\xee\x2a\x0b\xa1\x61\x8b\x3b\x06\x38\xd7\x50\x8c\x6e\xdc\xa5\x95\x99\xdc\x2e\x91\x26\x74\x45\x13\xce\x49\x5e\x6a\x93\xfb\x9e\xd9\x19\x91\x96\xe6\xad\x45\xa4\x5d\x5e\xa3\x0d\x29\x7e\x1f\x2c\x7b\x05\xe3\xe9\x3d\x2a\x60\xd7\xfa\xc0\x61\x34\xa6\x53\xc6\x8b\xf2\x16\xdc\x59\x4e\xd3\xc7\x2a\xdc\x2a\xd5\x88\x0d\xc0\xa9\xf4\x7d\xfa\xc6\xea\x24\xae\x54\x58\x51\x10\xcb\x93\x05\x7e\xee\xe8\x08\x9d\xce\x44\x22\xa2\xf9\x0f\x1f\xd5\x96\x5d\x16\x77\x61\xb2\x13\x7c\x49\x33\xcc\x64\x35\x79\xd0\x63\xaa\x59\xf5\x71\xb4\x44\x30\x19\x95\x4c\xae\x7c\x7e\x3f\xaa\x4f\x04\x2b\xab\x6e\x28\x7f\xc5\x91\xb8\x90\x24\xa0\x74\x4f\xc7\x5e\x94\x68\x29\xb6\xe4\x0f\x37\x1f\xd7\x04\x61\x4f\x05\x6d\xe6\x47\xe6\x27\xf5\x83\x4d\x5d\x0f\xa8\x42\xd9\xdf\xf5\x75\x68\xef\x96\x95\xb9\xa8\x41\x37\x7f\xb8\xa7\xc5\xf9\x65\x66\x74\x94\x3a\xb6\x24\x3a\x0a\x52\x63\x36\x5f\xdb\x90\x3c\x43\x59\x9d\x46\xc1\xf1\xe1\xf7\x12\x11\x5d\x00\x61\x77\x9e\xd0\xcf\xb6\x74\x14\x4f\x78\x9f\xd9\x33\x8b\x90\xb8\x9e\xf4\x8c\x50\x6e\x95\xd7\x14\x35\x5b\x94\x88\xde\x20\xeb\x9b\x8e\x97\x75\xfb\x7b\x79\xd4\xae\x3c\xa3\x69\x6e\x50\xc9\xa0\x77\x15\x5d\xf2\xa7\x1d\xba\xee\x3b\x51\x7c\xd0\x5f\x6e\x4f\x72\x2d\x97\x3c\x2e\x2f\xaa\xb2\x32\x77\x4f\xd5\x99\xf0\x35\x59\x56\x08\xb5\xb2\x9d\xa5\x89\x22\x1b\xdc\x77\x22\xc1\x93\x7f\xdc\xa0\xf5\x8d\x64\x03\x9c\x1c\x7b\x71\xfa\x87\x56\x04\xa5\x55\x50\xfa\x93\x57\xe3\x86\x81\x71\x99\x00\x56\xc8\x2c\xeb\x18\x81\x7b\x9c\x1a\x73\x5d\xd0\x48\x7b\xfe\x31\x4d\x88\xd1\x75\xfd\x9a\x03\x9b\x71\xe0\x98\x7e\xfe\xb4\xf6\x5c\x1d\x47\x70\x62\x98\x2a\x34\x6f\x6b\x4f\x4a\xd3\x06\xf3\xcc\x92\x20\x8d\x68\x96\x38\xfa\x90\xa6\x8e\x0f\x3c\x62\xa5\x70\xf3\xd3\x97\x23\xce\x4e\x95\x88\x48\xcf\xad\x3f\x7b\xd7\xa0\x61\xf1\xcb\x75\xa3\xe1\xdf\xc3\x77\x25\x39\xc3\x93\x13\xe0\xde\xfe\xdc\xec\xa3\xba\xe9\xb4\xef\x7a\x91\xdc\x43\x2e\x73\x00\x8a\x2b\x59\x9e\xc8\x8f\xfa\xbe\x87\xd3\x0d\xb0\x94\xb8\x09\xcf\xa2\x44\xd8\x44\x41\xed\xc1\x6b\xe2\x4b\x35\xaf\x47\x32\x31\x3f\xf3\xb4\xda\x10\x50\x57\xd5\xd1\x57\x2d\xd6\xdf\xb0\x6f\x1b\x4c\x92\xd5\xe5\x6f\x3a\xd2\x87\x38\x40\xb1\xfe\x38\x6e\xe8\xb3\xd5\x14\xfc\xbf\x48\xec\x0a\x2b\x49\x89\x8b\x73\x16\x69\xe3\x5c\x4f\x0e\xa7\x15\xcc\xfc\x19\x4d\x34\x68\xbd\xcf\x3d\x50\xd0\x0a\x23\xff\x90\x40\xa3\x10\x31\xa3\xaa\x6c\x81\x9e\x5f\xd3\x86\x41\x45\x0e\x93\x43\xbf\xfc\xf6\x6b\x86\xaa\xb6\xd3\x75\x2d\xe5\x2e\xb6\xe1\x21\x18\x6e\xb9\x9e\x12\x62\x03\x33\x9e\xed\x6a\x00\xdf\x47\xf1\x9a\x3c\x3b\xba\x03\x55\xff\x7e\xb9\xac\x14\xa5\xbe\x3b\x46\xb3\x12\x62\x1b\xe2\xcf\xd9\x9f\xbd\x1b\xc9\x0e\xf6\xcc\xec\xec\x09\x0b\xcf\xec\xdf\xde\x1e\x89\x80\x52\x8a\xff\x2f\x03\xe0\x39\x37\xb5\xa3\x08\x42\x6a\x45\x56\xf1\x15\x06\xf0\x3b\x9b\x75\x66\x27\x6f\x94\x68\xa9\x33\x9a\xe5\xff\xf7\x6e\x25\x3b\x41\x99\x72\xf3\x5d\xac\xfb\x9a\x1a\x7e\x5c\x69\xe4\xee\xf1\x62\xbd\xa0\xd9\x33\x0a\xbd\xc1\xe7\xb6\x6a\xee\xaf\x72\x29\x17\x69\x33\x04\xff\x77\x1f\x12\x2c\x26\xae\xeb\x70\xb9\x34\x0b\x76\xbe\x34\x5a\x8f\xf3\x5c\xc4\xce\x38\xb9\x5f\x6d\x1e\x8a\x33\xb4\x4c\x28\x3f\x3a\x57\x63\x4b\x73\xdb\x13\xc4\xf0\x78\xa4\x03\x91\x5d\xb9\x49\x33\xdb\x53\x17\xe9\x13\x7b\x35\x14\x62\x43\xca\x83\x84\x9f\x63\x2b\xd8\x47\x16\xae\xde\x00\x0b\x83\x16\x5c\xee\x27\x1e\x18\x50\x4c\x06\xa6\xb9\xa3\x1e\x18\xa2\x0e\x42\xb3\xa6\x80\xef\xff\xa9\x6d\x02\x84\xef\x9a\x4a\xdb\xa0\x3f\xbb\x3e\x9f\xd2\xb7\x56\x44\xde\xdb\xcb\x48\x85\xdd\x35\x06\x52\xef\x7a\x57\xa3\xdd\xcf\x99\xab\x94\x3b\xc6\xdc\xab\x55\x1f\xbc\x44\x23\x7c\xd2\x2e\xd0\xf4\x2a\x2c\x22\x96\xaa\xc8\x92\xdd\xf5\xd9\x4e\xad\x1a\xf3\x6d\x23\x2c\x5a\xd5\xf3\xdf\x55\xd2\x9b\x6d\xa7\xca\x6c\x15\xd1\x66\xdd\x35\x24\x2a\x9f\x99\x9c\xe6\x05\xf7\x2f\x19\x8b\x40\xa1\x61\x6d\xd4\x52\x27\x3c\xa4\x99\xeb\xcd\x98\xd7\xa3\x06\xd7\x3f\x39\x96\xae\xfc\xfa\x68\xc3\x4d\x4b\x56\xe4\xef\xb9\x4f\xf3\x42\x12\x15\x62\x2b\x67\xb8\x28\xa4\x0c\xdd\x30\x14\xcd\x67\x64\x0d\xb5\x45\xdb\x98\x3a\x34\x52\x07\x4b\xfa\x98\x0f\x8e\xbd\x58\x7f\x5f\x61\x59\xaa\x22\x55\xf0\x5d\x64\x89\xe6\xf2\x3a\x93\x3d\x63\xf8\xd2\x3e\x7e\x2c\xfd\x7d\x5c\xd2\x84\xa9\xf8\x2f\xe7\x26\x6d\x0e\xb1\x4b\x4a\x0e\xfa\xe3\x6b\x87\xa1\x68\x06\x3b\x86\x8c\xb7\x2d\xd1\x86\x8a\x84\x65\x75\x67\x81\x15\xca\x9d\x2c\x0c\x49\xdc\x65\x12\xfa\x92\xfd\xed\x66\x1d\xb6\x6a\x73\x03\xc5\xe8\xec\x0d\x6f\x62\xff\x6e\x5f\x72\xaf\xb3\xff\x7c\x4f\x6b\xda\xa5\x42\x92\x13\x64\xd5\x57\x79\x4e\x17\xa7\x13\xeb\x7d\x1a\x6f\x37\x7e\x36\x4c\xa1\x6a\x04\xa5\x1e\x6f\x44\x89\x35\x33\xf7\x26\x6d\x45\xe0\x5b\x16\x11\xb0\xb6\xcd\xdf\xa0\xf1\x40\x6d\x19\x8d\xc1\xed\xa4\x73\x92\xa2\x92\x08\xda\xe7\x97\xa4\xa5\x63\x7f\x76\x78\x8f\xb6\xc6\x10\x2c\x2c\x60\xa2\x99\xff\x86\x43\x49\xa0\x73\x4d\x62\xa2\x38\xbb\x08\xd1\x54\x4b\xbc\x56\x14\xbc\xe1\x56\x65\xbf\xf5\x5a\x3e\x5d\xce\x36\x89\x5d\xa5\x74\x40\x7b\x86\xf7\x5e\x4d\xac\x74\xbc\x96\x53\x9c\x59\x71\x5a\xc6\xc6\x58\x6e\x2d\xa5\x62\xd5\xf3\x5e\xfa\xa3\x17\xa9\xd7\xa0\x72\x79\x56\x29\xf4\x06\xff\x66\x23\xec\x80\x41\x6d\x79\x2e\xf2\x83\x9e\xec\x40\xd3\xc0\x46\x9a\x7e\xf1\x05\x07\x72\xcf\x0d\xcc\x2a\x19\x04\x30\xae\x9b\x9c\x76\xbd\xb2\xec\x86\x02\x68\xe4\xe8\x64\x52\xd1\x07\x8a\xb8\xf9\x97\x51\xf4\x8d\xb0\x07\x85\xde\xe0\xe8\xe9\xf4\x5b\x99\xdd\x39\x63\xae\xea\xe6\xf2\x8b\x35\x11\x2f\xf0\x52\x94\x83\xe0\x5b\xcf\xc5\x36\xe8\x76\x53\x41\x83\x26\x88\xb8\xe3\x36\x69\xa3\xd5\xf1\x62\x02\xf6\x1e\x0d\x83\x83\x3c\x6d\xa3\xb6\x6b\x83\x59\x61\x54\x39\xd0\x2e\x64\x99\xb3\x05\x09\x0d\x85\x9d\xab\x34\x77\x3f\x06\x10\xc6\x1b\x78\xd1\x17\xad\xb2\x54\xe4\xf0\x45\x89\xc5\x84\xfe\x76\xca\x53\xb1\x63\x4a\x6c\x80\xdc\xdb\x9f\xdd\x83\x80\x32\x4c\xe2\xe1\x72\xc3\xde\xd1\x65\x42\xca\xd4\x4e\x3c\xc6\x4e\x2f\xd0\x38\x4c\xdc\x18\x50\xfe\xea\xc3\x3b\x12\x7a\x69\x8d\x19\x26\xb5\x30\xaa\xad\x3f\x77\xdd\x8e\x04\x22\x2d\x95\x94\xce\x43\x26\x65\x8e\x54\x3d\x43\x9b\xa4\x1b\x37\xc7\x4d\x7e\x99\x25\x2c\xd6\xe0\x5b\xaf\x26\x78\x0c\x97\xd8\x8d\x96\xbe\x26\xeb\xed\x1f\x99\xaa\x6d\x04\xaf\x31\x49\x1c\xc8\x7c\xb3\x4b\xf3\xe2\xb3\x58\xbc\x52\xcc\xfc\xbc\xbb\x55\xbd\x8b\xd8\x9e\x64\x4f\xc8\xec\xb3\x6a\x3a\x42\x7c\x31\xd7\xa6\x22\xa5\x34\x74\xee\xbe\xf4\xc8\xda\x6b\x90\x30\x71\xb6\x00\xac\x3b\x06\xe0\x8a\x43\x7a\xbe\x73\x33\x3e\x3b\x1e\xb5\xe1\x53\x77\x6f\xd1\x60\xd7\xbe\x65\xb1\xba\x1a\x26\x24\x83\x80\xee\x33\x9a\x88\xb2\xdd\x08\x03\x13\xb0\x0d\x67\x4d\xe8\xd0\x0b\x17\x3f\x66\x8f\xf5\x5d\x33\x0a\x4d\xca\x5d\x8f\xf8\x61\xf3\x12\xd6\x21\xc1\x0f\xef\x4f\xca\xdf\x39\xb3\x0b\xbd\xc1\x37\x3b\xf5\xba\x44\x81\xde\xe2\x68\x7c\xf8\xf1\x91\x48\xdd\xc9\xae\x48\x38\xbf\x8c\x76\xf9\x7b\xa3\x54\xaa\x48\x7e\xfd\x99\x4f\xe8\x6e\xd4\xd4\x80\x0d\x93\x92\xf1\xfb\xea\x21\xcd\x3c\xd2\xb7\xa7\xf5\xf5\xc9\x24\xf3\xd6\xe0\xa4\x5d\x94\xa2\x27\xf9\xeb\xfb\xa0\x32\x2f\x13\x57\x21\x76\x7b\x27\x22\x97\x13\x99\xeb\x0a\xbd\xc1\xb0\x45\x6d\x88\xe6\x5c\x21\x9e\x2c\xa5\xf7\xee\x84\x6d\xd3\x55\x16\xb3\x53\xaa\xc8\x99\x3b\xef\x47\x4e\xc1\x40\xd7\xed\xcf\xdc\xfa\x7a\xa2\x84\xd0\xca\xf7\xca\x0d\x1d\x84\x28\x44\x1e\x29\x16\xe5\x64\xe9\x6b\x8f\x8c\x44\xe2\x1d\xd2\x88\x55\xcd\xa7\x3a\x56\x6b\x44\x3d\x2a\xb9\xa4\xaa\x09\xd9\xfc\x7c\x12\x1d\x66\xcd\xe8\x9c\x23\xf9\xe6\xcf\x4c\xfd\x5f\x76\xc9\xa0\xae\xba\x6a\x5f\x1c\xa7\x06\x18\x1e\x67\x6e\xec\x54\x20\x49\x22\x8a\x30\x73\xbb\x7a\x7c\xfa\x23\x90\x1a\x4f\xe0\x8e\xb9\x09\x83\x75\xb1\x7a\x2a\x3c\xae\xb2\x8a\xcc\x8c\x1f\x11\xe9\x23\x26\x67\x35\xd1\x42\xfe\xbb\x3b\x11\xa0\xc9\xa3\x82\xca\x53\x79\xf3\x3e\xed\xed\x8b\x18\x4d\x1d\x56\xb2\xbf\x5d\x03\x9d\x47\x45\x70\xdf\x09\xfb\x70\x19\x4a\xd7\xa1\x1d\x00\xb1\x5c\x5e\x81\x1d\x4e\x14\x37\xae\xee\x53\x62\xa0\xac\xc4\x0c\xdf\x02\xf4\xcf\xb7\x77\x63\x5d\xa6\x98\xf9\x94\x79\xf6\xbd\x78\x3a\xe1\x74\xca\x35\xc5\xf7\x6e\x49\x26\xc4\x33\xd5\x93\xfe\x2d\x48\xab\x86\x9f\x50\x91\xcc\x82\xce\xd5\x88\x70\x19\x9e\x2c\x2a\x81\x2d\x39\xfb\xa1\x36\xac\x1c\xe2\x03\x65\x28\xf3\xd6\x23\x5a\x9d\x4c\xec\x6a\x6c\x0a\x75\xee\x3e\x50\xda\xab\xc2\x8a\x2a\x37\x15\x64\x59\xbd\x16\x71\x85\x5c\xcf\xe6\xf8\xd0\xb1\x5a\x6b\xf5\x7e\x78\x1d\x62\x34\x73\x38\x5a\xc1\x8d\xbb\xe0\x5c\xaf\x56\xea\x56\x49\x3c\xbe\xfd\xd5\x61\x88\xcd\x45\x1d\xd9\x18\xbe\xf4\x46\xf2\x44\x38\x2f\xf4\x06\x5f\x3a\xa3\xc3\x5d\x24\x11\x5e\x8e\x2e\xb6\xb7\x6b\xa2\x44\x8e\x5c\x2e\x45\x62\xae\x5f\xdf\xd7\x62\x7d\x61\x24\x5f\xfb\xd7\xd3\xb1\x8f\x8e\xaa\x1c\xdf\x7b\x5d\x1b\xc6\xcb\x59\x7b\xca\xe6\x3c\xfb\x63\x64\x5e\x5e\xf4\x85\xc2\xa4\xdf\x3c\x5f\x43\x04\xb3\x3a\xb5\x15\xf1\xb8\x77\x84\x2e\x14\x2d\x67\x1e\x54\x19\x97\x66\x3e\xb3\x52\x17\x56\xd9\x18\x35\x67\xf9\xdb\x35\xe7\x4b\xd7\x23\xc2\x53\x3f\xf7\xf3\x13\x93\x5c\x3a\x59\xda\x33\x8c\xbb\x3f\x09\x38\x15\x9f\x59\x70\xfa\x8f\xef\x68\xe9\xff\x04\xaf\xc7\xbf\x62\xc1\x9d\x08\x3b\xcb\x3d\x39\x4a\xb7\x06\xa7\x2b\x6e\x89\xa3\x9c\x5f\xe8\x0d\xfe\xe3\x91\x74\x9a\x32\x48\x78\xc6\x12\x9b\xd4\xcc\xf7\x66\xb6\xb7\x3c\x08\x18\xde\x7e\xf5\x0e\x28\x41\x4b\x82\xda\x86\x19\xad\x62\xdf\x6a\xd1\xa7\x6b\x44\xc4\xf9\xe0\x57\xe7\x26\x9f\x4c\xf2\x5d\xc2\x5f\x40\x26\xe8\x95\x9f\x4d\xcb\xcc\x8b\x20\x1e\xaf\xef\x48\x1e\xca\x2c\xb8\x40\xff\xe7\x4e\x0d\x3b\x0c\xd2\x07\x9d\x6a\x18\xf1\xbe\x3b\xb4\x19\x07\x68\x4c\x46\x64\x8f\x3b\x35\x8f\x37\x8f\x57\x9b\x71\xe4\x09\x83\xe7\xd8\x22\x1c\xf1\x6b\x99\x20\xa2\x84\xd8\x85\x79\xeb\x96\x64\xc2\xcf\x6a\x35\x62\x83\xef\x62\x76\x4c\xb1\x0d\x57\xcf\xcc\x96\x96\xd0\x99\x0b\xee\x8c\x63\x66\x83\xb7\x88\x87\xe5\x09\x12\xfc\x2e\xc3\xd8\x23\x8c\x05\x33\xfb\x46\xa4\x1d\x8e\x54\xa5\xb2\x4c\x13\x3a\x15\xd4\x65\xae\x97\xd8\x7b\xe4\x33\x1b\x87\xa8\x9f\x15\x01\xcf\x73\x23\x13\x46\x81\x35\xb9\xa5\x22\xcf\x5f\x77\x34\x89\x4e\x93\x9b\xdc\x97\xa3\x9c\x65\x11\x77\xbd\xc6\x62\xe9\xb1\xde\xfe\xec\xfd\xbb\x51\x13\x26\xa8\xd4\x11\xcc\xfd\x48\xad\xfa\x1b\xdc\x2e\xa9\x49\xe9\x3b\x2b\xb4\x79\x41\x8d\x29\xdd\xbd\xe0\xb7\x2f\x6a\x2f\xc6\x17\x8e\x60\x6e\xac\xe1\xf5\xb8\x2e\xd5\xef\x72\xab\x4e\x6d\xa3\x09\x03\x80\x77\x8a\xa8\x82\x66\x82\x1a\x5e\x3d\xfc\xe3\x7e\x0d\x4f\xc9\x04\x59\xaf\xf6\x6d\x92\x29\x35\x25\x2e\x39\x66\x16\x66\x84\xff\x60\x84\x9d\x94\x7c\x0d\x69\xd5\xaf\x97\x7c\xdf\x1a\xa6\xb1\x48\x69\x64\x86\x90\x79\xe1\x10\x46\x31\x87\xb7\x2e\xfc\x91\x6f\x9a\x4a\xcd\xc1\x04\xf3\x94\x8c\x3f\x42\x9b\x7c\xda\xb6\xa6\xcb\xfe\xbd\x77\x15\x68\x8e\x6f\x90\xea\x7c\x77\x2d\xd6\x10\xca\x22\x5a\xf0\x24\xfd\x76\xc7\x1b\x11\xc9\xdd\x4a\xa1\x6b\xdb\x9c\xf4\xbf\xa5\xc4\xf5\x34\x74\xf3\x92\x87\xe0\xd7\x95\x2d\x2e\x45\x7c\xb6\x2e\xc0\x16\xe3\x1e\xb5\x2c\xb0\xd4\xc9\xff\xe3\xf3\x43\x11\xb6\xd4\x97\x4d\xca\x66\xad\xe5\x71\x88\x4d\x2d\x65\xf2\x72\xf9\x33\x49\x11\x92\x88\x3f\x48\x9a\xc4\x22\x34\xbb\xa3\x35\x5e\x87\xa1\x70\xd7\xc6\x96\x11\x99\xe4\xeb\x40\x65\xf9\x3d\xe4\xe1\x5d\x11\x94\xda\xae\x03\x61\xe2\xcc\x88\xf4\x7c\x75\x23\x29\x0a\xc2\xac\x14\x60\x2c\x78\x0b\x21\x86\x4c\xdf\x8d\x87\x05\x5f\x78\x04\x59\x7a\x0b\x59\x41\xca\x3f\x7f\xf8\x34\xaa\xc5\x14\xcf\x28\xdb\x7d\x48\x0f\x2f\x61\x13\x1d\x8d\x77\xf2\x37\x23\x19\x02\xb7\x41\xa4\xc9\x2a\x32\x82\x5a\xad\x29\xc5\x32\xcb\x8a\x7c\x5f\x7e\x73\x70\x24\x1a\x34\x86\xa5\x2e\xb7\x81\x37\x72\x9e\x86\xae\xb4\x58\x6c\x58\x72\xa0\x7b\xac\x76\x9f\xa8\x60\x46\x24\xdb\x2c\xa5\x0f\x10\x2d\xc0\xf2\x4b\x25\xe6\x41\x93\xf8\xeb\xfb\xa0\x26\x93\xde\x80\x61\xf8\x5d\xa5\xe9\x6b\x46\x1b\x8e\xa8\x3a\x3e\xa6\xc1\xca\x66\x5d\xde\x1d\x91\x66\xd7\x25\xc5\x71\xf7\x0c\x39\x1e\xdf\x0b\x14\xcc\x15\xa4\x99\x2e\x6f\x2f\x7a\x35\xb9\x20\x16\x25\x60\x41\x7b\x7c\x0a\xa2\x5d\x44\x4d\xec\x3b\xaf\x25\x27\xcd\xb1\x24\x09\x28\x3f\xaf\x23\x6e\xd3\x3c\xe1\xa3\xe7\x7a\xfd\x35\x7a\x3b\x55\xe3\x60\x6f\xa4\x4a\xc2\xce\x89\x48\x64\x8d\x30\xdb\xf5\x24\xf0\x2d\xf3\xc0\x98\x51\xe8\xa0\x4b\xce\x84\x1b\x93\x1c\xb5\x85\x75\xe4\x04\x1d\x63\x52\xdf\xd3\xb0\x7b\x4c\x54\xd3\x90\xa1\xef\x6e\x41\x92\x86\x03\x84\x92\xdc\xe4\xb7\x13\xd0\x05\xad\xb6\x4c\xa8\x2e\x58\xd1\xe2\xa5\x1a\x35\x3e\x43\x5e\x1e\x85\x92\x65\x25\x45\xc6\xf2\xec\x44\x6a\xa3\x42\xed\x81\x97\xc6\x2b\x46\xeb\x92\xd4\x22\xac\x86\xe5\xf6\xb8\xe0\x9a\x44\xc4\x76\x23\xd3\xa7\x8e\x40\x1d\x5b\x39\x2c\x9b\x21\xae\xed\x13\x91\x29\x2d\xf7\x28\x3c\xe7\xe9\x8f\x23\xe2\x5a\xa7\x24\xae\x65\x97\xee\x4a\x66\x71\x45\xc1\x3c\x26\x3d\x2a\xd3\xd5\xe4\xac\x41\x23\xd0\x11\x70\x4c\x1e\xb1\xf7\x9c\x37\xb1\xd5\xa0\xaa\xf9\x0a\xbd\xc1\x82\x89\xc8\x06\xcc\x97\xaa\xee\x99\x5b\x91\x96\xb7\xc7\x2d\x5a\x92\x31\xc3\x7b\xa0\xa5\x1e\x88\xfd\xf3\x7b\x83\xb7\xef\x47\x0e\x3b\x3e\xdc\x1e\x39\xa7\xd8\xf5\x44\x7a\xb2\x55\x23\xa2\x4a\xbd\x81\xcc\x5f\xf2\x9d\x1a\xb4\xa9\x48\x5d\x55\xb4\xe5\xef\x38\xaa\x91\x77\x4c\xe2\x97\xcb\x61\xbb\x2b\xa7\x6f\x31\x41\xe8\xdb\xcb\x2f\x50\x67\x53\x08\x80\x4b\x7c\x7f\xec\x30\x74\x62\xfb\x64\x58\x9e\x3e\x51\xe3\x78\x48\xac\x47\x74\x24\x9e\x42\x8f\x44\x30\xa9\xe6\x55\xdf\xa9\x2b\x53\xc7\xf8\xdf\x67\x97\xa1\xa6\xc2\x17\x94\x80\x5a\x62\x6e\xe7\x9d\x09\x24\xb1\xcc\x44\xab\xa6\x7e\xf6\x5b\xe7\xa7\xfb\x0b\x62\x18\xd4\x8d\xb8\xea\xdf\x3f\x98\xde\xf5\x58\x74\x43\xa1\x37\x78\x7c\x9b\xd6\xee\x59\x1e\x97\x91\x59\x5e\xb4\x19\xaf\xeb\x50\x64\xbb\xa4\x50\x84\xc1\x33\xe3\x93\x78\xda\xc7\x6a\xd4\xa6\x18\x2a\xf3\xd1\xf3\xa1\x7d\x59\x61\x51\xe2\x12\xdb\xc3\x3c\xcd\x7d\xc9\x05\x29\x51\x47\x50\x83\x45\xde\xb5\x99\xb7\x8f\xc3\xf4\x6f\x05\xca\x92\xa5\xb1\xa3\xf5\x47\x45\xcb\xd1\x3c\x26\xb0\xb5\x5d\xa5\x94\xf3\x4f\x65\xec\x75\x4b\xd3\xf7\xc9\x13\xdc\x09\x23\x71\x8b\x3c\x63\xee\xa7\x1a\x6e\xd2\xa2\x15\xe6\x5a\x52\xdc\x5e\x16\x11\xab\x8e\xe8\x07\xd6\xa2\x75\x62\x83\xfd\x6b\x70\xe8\x61\x58\x5d\x2e\x22\x26\xa9\x91\xd8\x10\xea\x5f\x96\xe8\x68\x72\x83\xda\x9e\x82\xbd\x7c\xe8\xcd\x36\x0c\xb0\xa4\x35\x99\x34\xf3\x37\x6a\xc8\x8b\x30\x28\xaa\xbc\xfd\xc1\x1d\x48\x8b\x82\x30\x20\x52\xfc\x24\xd1\xd7\x12\x34\xbc\x84\xe7\xb6\xb5\xba\xdf\xd9\x12\x38\x0f\xba\x21\xef\x74\x5f\x90\xd8\x2c\x84\x8d\x46\xfe\xc8\x38\xf4\x52\xca\x72\xe8\xa4\x97\x57\x7f\x99\xde\x8e\xca\xe5\x12\x86\x9f\x3c\xff\xac\x0e\xff\x32\xc2\x6a\x96\x88\x66\x34\x62\xbd\x73\x65\x1b\xaa\xc1\xe5\x9c\x4f\xc2\x22\xda\x20\x52\x19\x16\x25\x30\xe8\xca\x7e\x64\x6d\x24\x47\xcc\xc3\x24\x2d\x27\xc0\x57\xee\x44\x48\x2e\x22\x2c\x1e\xa5\x82\xf9\x77\x61\xf1\x38\x83\xfb\x42\x09\xe3\x5c\xdd\x96\xce\x01\x2e\x2b\x52\xc1\xe2\xfc\x2b\xa7\x2d\x48\x2e\xc9\x22\x4d\x5e\x2e\x87\x17\x2d\x78\x69\xe1\xc5\x58\xfa\x78\xf1\xea\x69\x09\x54\x39\xfc\xc9\x8f\x2f\x82\xf7\xbc\xd2\x77\xf1\xbe\xc6\x5d\xa6\xcd\x90\xa3\x7d\x5b\x7f\xf6\xde\x8d\x31\x00\x83\xfa\x2d\xf3\xf5\x5f\x74\x0d\x4d\x4d\x32\x0a\xbd\xc1\x14\x4d\x0f\x83\xb9\x82\x50\x8b\xa9\x79\xab\x24\xe2\xfe\xbe\xa8\x79\x35\xd2\xa6\x6d\x54\x95\x51\x73\x74\x0b\x7f\x94\x55\x36\xc3\xbe\x05\x83\x89\xbe\x41\xe9\x21\x62\x89\x0c\x68\x9a\xe5\x0e\x4a\x47\x27\x93\x58\x5e\xa7\x3a\x3a\xa7\x35\x47\x92\x3a\xb3\x2c\x89\x58\x85\xbe\xef\x3b\xdb\x92\xb0\x50\xb4\x88\x97\xf2\x04\xcc\x6c\x79\x29\x5d\xf1\x4e\xa1\x25\x77\x7e\x6a\x82\x19\x7c\x46\xb3\x0c\x28\x12\x37\x8c\xfc\x56\x53\xb5\x89\x7b\x50\xdf\xcf\xec\xb2\xb4\xbc\xea\xcf\xfd\xfa\x84\xfe\xf4\x23\xfe\x58\xf6\xbf\x0e\x2b\xec\x00\x2c\xd0\x00\x06\xf4\x60\x09\x29\x2a\xa5\x15\x34\xe7\x43\xb1\x5e\xe3\x1e\x17\x46\xd3\xb0\xc0\x51\x36\xb3\x66\xff\x80\x74\x27\x19\xb2\xef\xdf\x33\xb9\xd1\x32\x3a\x77\xa9\x52\x1f\xd4\x6e\x91\x36\x60\x36\xb8\xed\x31\xdb\x0f\xc3\xbf\x14\x55\xba\xbb\x5b\xbf\xba\x5c\xb0\x44\xd2\x20\xf3\x0d\x75\x63\xa4\x60\x65\x2d\x3c\xb0\x3f\x1a\xad\x49\xb1\x79\x54\x4d\xff\x3e\x7f\x3e\x5c\xa5\xe5\x9d\x37\x46\x70\xa9\x4c\xf7\xf3\x31\x3a\x96\x6f\x8c\x01\x16\xed\x1b\x35\x1d\x50\xcf\x23\x46\x35\xfa\xad\xc1\x8a\x6d\xa8\xd2\x20\x25\xc6\x4d\xd5\x49\xce\xb9\x65\x98\x4a\x54\x96\xd5\x8c\x84\x62\xa6\x3c\x90\xde\xdc\xce\x9b\x31\x43\x22\x4e\xf2\x9f\x7c\x20\xb9\xad\x82\xaf\xf7\xc3\xaf\x20\x3b\xf1\x0b\x6e\x81\xb2\xf4\x06\x22\x4c\x8e\x34\x9a\x73\xe6\x2b\x08\xaa\xce\x85\x72\x1e\xbc\x6f\x7b\x9b\xaa\xc6\xcb\x16\x8b\x87\x18\xb9\x11\x2a\x02\x5f\x6d\x57\x2c\x50\xe7\x92\xdf\xf8\xc6\xbb\x10\x6c\x93\xf3\x52\x03\x16\x1e\xd9\xc3\x89\x58\x0b\x29\xca\x7a\xfe\xd7\xef\xc1\xbb\x2f\x0b\x5f\x42\x77\x14\xa9\xe0\xdb\xa6\xb6\xef\xa7\x25\x66\x24\x3c\xa3\xfc\xf8\xc3\xa8\x4c\xa6\xac\x4f\x12\x22\xe7\xf6\x60\xc9\x50\x51\xf4\x85\x1c\x75\x3f\xbb\x29\x9e\xac\x4d\x5a\x2f\x3d\x7c\xc6\xa0\x0a\xd8\xf2\x0d\xc3\x94\x8e\x0b\xc1\x9e\x3e\x64\xfd\x41\x3c\xc3\x2c\xf1\x30\xed\x5e\x39\x04\x61\xcf\x7c\x22\x88\xed\x49\xc3\xe8\xcc\xf0\x53\x48\x25\x24\x6c\x5b\xc3\x3f\x7c\x71\xe7\x05\xc9\x9a\x8a\x14\x7a\x83\xf3\xef\xd5\x4f\xb1\x1d\x03\x30\x72\xf3\x6f\xd2\xa4\x93\x6c\x46\x6c\x86\x99\x20\xb9\xe3\xa7\x87\xa1\x67\x09\x7c\xa9\x4b\x16\x27\xfe\x2b\xac\x55\xaf\x71\xe7\x02\xcd\x55\xda\x17\x44\x4e\xf2\xe4\xcb\x39\x7c\x6f\xfa\x77\x5a\xbc\x51\x70\x0d\x2e\x80\x59\x29\xd5\xe5\x5e\x7b\x48\xdf\x0e\xb8\x1e\xb3\xe3\x55\x43\x66\xa9\x56\x02\xb8\x4d\xd4\x83\x43\xc3\x30\x4c\x1b\xa3\x11\xd7\x84\xa5\xc7\x43\xdb\xd2\x47\x95\x29\xb1\xbd\xc2\x1b\x49\x13\xec\x51\xdb\x55\xc8\x98\x55\x8f\xe9\x97\x93\x78\xcc\x0d\xcb\x78\xb9\x07\x7f\xe5\x2c\x8c\xa0\x7a\x27\x2f\xa3\xa9\x79\x74\xf6\xbc\xee\x74\x7c\xea\x91\xba\xb5\xe1\xe1\x7a\x7e\x49\xba\x9c\x95\x54\x13\xcb\x1d\xc0\x81\x38\x33\xfc\x21\x34\xd9\x05\x2b\xe3\xde\xe0\xf3\x1b\x75\xa9\xaf\x42\x4f\x31\x7a\x34\x47\xde\xd0\xdb\x2f\x87\x08\x0f\xa0\x4d\xe1\x8d\xcc\x91\xb3\xe3\xb5\x68\xcb\x2c\xaa\xf9\x81\xe6\xfb\x5e\xc1\x7d\x86\xc5\x2a\x4a\xac\x28\x3b\x16\x29\x61\x97\x94\x5b\x4a\x7f\xf6\xde\xc3\x4a\xd6\xed\x63\x8b\xaf\x6b\x99\x5d\xd5\xcf\x26\x62\x19\x0e\x6f\x29\x61\xdb\xef\xd0\x36\x54\xbe\x6b\x52\xa1\x06\xad\x8b\xf6\xc6\xa7\xd9\x93\xca\x09\x9f\x0d\x2e\xc4\xe4\x66\x06\x50\xac\xe0\x99\x47\x07\x50\xe0\x52\xdc\xcc\xd9\xf7\xa5\xff\x5b\x93\x12\xe1\x42\x01\xf7\xc4\xc6\x51\xa8\xb0\xb7\x49\x05\x99\x90\x2f\x32\xf1\x24\xc2\x63\x86\x25\xd1\x16\x53\xcf\x4d\x1f\xac\x26\xf7\x01\x26\x93\xbb\x7b\x9d\x1e\xe6\x7d\xdb\x6b\x02\x35\x40\xfe\xc4\x8d\xd3\xd3\x65\xa9\x6f\x83\xb3\x6e\x4b\x36\xce\xfc\x14\x41\x77\x93\x4c\x3e\x04\x94\x86\x56\x73\x58\xa1\x9d\xd4\x2c\xd3\xdc\x66\xad\x46\x3d\x01\x5e\xb8\xf9\xeb\xdf\x1d\x87\xb0\x11\x82\xb2\x8a\x7e\xba\x82\xc7\xf7\xc6\x20\x27\x29\xb9\x70\x2c\x98\x90\x7c\x63\x6c\x13\xaa\x89\x13\x6d\x48\x89\x1b\xd4\x29\x58\x21\x64\x8b\xbb\x92\xb3\x3a\x7b\xd6\xf4\x39\xb3\x67\x87\x9f\xe3\x13\x2f\x2a\x8a\x24\xb5\x89\x15\xa9\x2d\x65\x7f\x7c\x02\x54\xd1\xd6\xf4\x2e\xfb\xc8\xaa\x1b\xae\xbc\xf6\xea\xe5\x2d\xc7\x66\x33\x2a\x1f\x1d\xd0\x4a\x0d\xbf\x75\xdb\xe9\x11\x71\x1d\x52\x44\xa3\xb5\xcc\x67\x5f\x9e\xd0\x4a\x7b\x6f\x11\x77\xc8\x7d\x6b\x4c\xba\x0b\xf4\x3b\xed\xce\x01\x64\x10\x33\x2f\xde\x95\xac\xd1\x5a\x85\x0c\xb3\x2f\x6f\x4e\xeb\xfd\x84\xed\x6a\x54\xa8\xfd\xf5\x0d\x5d\x0a\xdb\xb7\xa5\x1a\x99\xaa\xa7\xfa\xcf\x4d\x16\x59\x15\x5e\xb4\xfc\x22\x4d\x24\xd3\x83\xca\xca\x74\x7c\x9a\xa9\xe4\xae\x33\x9f\x38\x3b\x22\x91\xd4\x45\xc4\xe4\xcc\x5b\x9b\x93\x07\x5f\xe3\x25\x10\xc6\xc8\x9e\x73\x1f\x3a\xbf\x96\x63\x12\x05\x97\x5c\x37\x48\x3f\xa6\x4a\x53\x94\xab\xe5\xce\xbc\x33\x68\x95\x11\x0d\x18\x32\x3f\x7d\x3a\xc9\x42\xcc\x2e\x33\x6a\x29\x27\x9a\xd7\xf7\x0f\x41\xaf\x1d\x36\x94\x58\x62\x83\xda\xcc\x76\x7d\x8b\x60\x60\x56\xe6\x9b\xf7\xa8\x8d\x04\x13\xac\xa2\x98\xc7\xb9\xaf\x8d\xd0\x18\xf1\x82\x97\xbd\x94\x15\x79\xbe\xf3\x05\x5d\xd1\x59\x8a\xb3\x99\xcc\x51\x6a\x08\x37\x3e\x9e\x7c\xcc\x3a\x2d\x89\xa8\xdc\xc9\x7d\xef\x69\xb8\x3d\x4a\x15\x2e\x6f\x74\x27\x52\xb2\xac\x56\x23\x86\x2f\x55\xe1\xf5\xe3\x72\xdd\x99\x04\xc2\x59\xe4\x1b\x58\xeb\x46\x35\x7f\xc7\xe2\x11\xf1\x31\xa0\xa2\x4e\x3c\x56\x87\xb1\xd9\x93\xe7\x8c\xd5\x0a\x76\x8b\x19\xdc\xf1\x80\x97\x17\x86\xad\xf7\x75\xa7\x1d\x1a\x9a\xdc\x66\x46\xa1\x37\x18\xdb\x95\x1e\xa1\x82\x10\x4e\x58\xe2\xa1\x41\xf1\x8b\x9a\x6d\x69\x85\xd4\x28\x00\x96\xf3\xb7\x6e\xd7\x93\x80\xcb\xa4\xc0\x4e\x34\x2f\xbb\xc2\x69\x4b\xfd\x85\x39\x10\x34\xb6\xae\x41\x83\x60\x62\xb9\xb0\x62\xcb\x3e\x75\x18\x6d\x4d\x18\xa9\x81\x5d\x55\xee\x9d\xa7\xe2\xe0\x4c\xbc\x42\xf8\x27\xfb\xcf\xe8\x1b\x22\x93\xd4\x19\xf7\xe1\x64\x65\x2f\x5e\x74\x11\x2e\xed\xec\x14\x82\x34\xe7\xeb\xfe\x2b\x55\xea\x78\xcc\x60\x6e\x0d\xe8\xee\x33\x96\x82\x4c\xe2\x55\x72\x1c\xdb\xa0\xc4\xf2\x5a\x86\x57\xb9\x07\xdb\x93\xf9\x27\x73\x0b\xbd\xde\x68\xac\x50\xad\x5f\xf2\xfb\xd7\x0e\x45\x41\x52\x4a\x84\xe4\x7e\xf9\x32\x64\xf4\x45\x44\x08\xea\xa1\x31\x46\x6e\x36\x22\x32\x14\xc3\xff\x6a\x81\xc0\xb7\x7c\xe4\x17\xf5\x74\xa8\x70\x1d\x01\x90\x5c\x4a\x95\xa4\xf1\xc3\x22\xa9\x16\x2b\x82\x49\x56\x61\x7e\xec\x96\xe1\xe8\xa4\x0a\x1f\x9c\xed\x5e\xb9\x02\x86\x4f\x33\x67\x4e\x9f\x2d\xb9\x60\x87\x4e\x68\x5a\xd0\x36\x31\x22\x32\xfc\x4f\x36\xb5\x23\x48\x65\xf8\x8a\x6b\x0a\xa6\x90\xbf\x7b\x37\xf2\x67\x6d\xf9\xac\x0b\xe3\x86\x80\x1a\x66\x54\x32\x4d\x3f\x12\xc7\x17\x4e\xb0\x20\xd1\xea\x5d\xda\x36\x48\x42\x99\x63\x22\xd8\xd6\xbd\xed\x89\x10\x6f\x2d\x25\x3d\x76\x68\xbe\xea\x46\x19\x35\xc2\x0a\xf7\x77\x47\x35\x3c\x26\x38\x5a\xa9\x9e\xea\x57\x0f\x6b\xcb\x11\x5f\x70\x87\x26\x75\xdd\x8a\xab\x83\x8f\x8d\x1f\x89\xb3\x9a\x22\x05\x48\x42\xc0\xe2\x8b\x50\xcc\x89\x7c\x87\xa3\x57\xb7\xfe\x71\x8d\x66\x0e\xb3\x4f\xa4\x91\xfb\x5f\x16\x5a\x30\x10\xa5\x85\xf0\xe6\x01\xb4\x7b\x29\x31\x8f\x08\xd5\x32\x2e\xde\x86\x82\xab\xe7\x85\x67\xb9\x59\xe8\x0d\xd6\x2d\x48\x4e\x08\xdd\x60\x32\x8b\x08\xa9\x47\x26\x27\x1a\x9f\x38\xae\x21\xe8\x45\xc5\x97\xef\x0b\xea\xb2\x2f\x9e\x0b\x9d\x88\x49\xac\x72\xc1\x65\xb6\x41\x61\xea\xfa\xe2\xc9\x24\x91\x93\x12\xb5\x1c\xe9\x54\x95\x0e\x41\xdd\x6f\x22\xb1\x33\xbf\x29\x3f\xe2\x6f\x87\xa5\xa3\x8f\x5f\x95\xd3\xe2\x64\x1d\xd1\x9f\x79\x62\x8f\x92\x01\xe2\xc5\x56\xcf\x8f\xec\x9e\x4d\xda\x48\xca\xe4\x6a\xee\x35\xf2\xb0\x92\x9c\xa9\x29\x61\xb5\xe9\x8b\x15\x00\xc7\x22\x75\x2e\xb3\xc2\xf2\xd7\x5b\x60\xcc\x06\x65\x75\xe5\xd4\x19\xfe\x9b\xe2\xce\x14\xf8\x08\x22\x27\x88\xa4\x65\x7e\xb7\xf2\x42\x14\x9c\xc3\xb2\x0c\x0e\xee\x98\x2d\x1f\x50\x91\x58\x7e\xc7\xcc\x0f\x96\x0e\x4f\xc9\xab\x00\x96\x60\xde\x58\xb4\x88\x9e\x37\x2f\xfc\x87\x0b\xd7\xea\x50\xd2\x3a\x0d\xdb\xec\x08\x71\x99\x79\x47\xb9\xd9\xba\x1e\xab\x41\x26\xe8\xed\xcf\x5d\xf8\x38\x00\xf1\x96\xd2\xc6\x00\x83\xf2\xfc\xa7\x34\xa1\x5f\xd7\x30\x39\x8f\x2c\xf9\x32\xb3\xcb\x48\xa8\x1d\xa9\xd6\xe5\x7e\xe6\x21\x79\x29\x26\xb8\x5d\xa2\x16\x24\xc0\xcd\x33\xd1\xa4\xcf\x22\x52\xd2\x20\x3f\xe1\xe5\xe4\xb2\x96\x62\x21\xc5\x76\x8d\x01\x2d\xd1\x00\x91\xcc\xc5\x5f\x34\xe6\x1d\x61\xc2\x8a\x5e\x7d\x6f\x7f\xe6\x8e\x27\xb5\x01\x2a\xd8\x22\x38\x3c\x9a\x60\x66\x27\x9d\x13\x13\xf7\x7d\x6e\xa5\xd0\x9a\x33\x0f\x47\x62\x03\x76\x99\x0a\x6a\x2b\x3b\xc3\x67\xcf\x4f\x69\x46\x01\x82\x37\x63\x27\x06\x01\x35\x26\x52\xa1\x61\xf1\x0b\x9a\x50\x19\xb1\x63\xad\xfa\xdc\x35\xfb\x75\x9b\xa0\x88\x3a\xd5\x9f\xb9\x75\xea\xe0\x78\x1a\x1b\xf6\x6d\x39\x0b\xe9\xad\x1a\xe1\x4f\x91\x09\x3e\x77\xf1\xc1\xf7\xcb\x3f\xbb\x6e\xb5\xdc\x56\xda\x8a\xb6\x20\xc5\x7c\x93\xda\x69\xfa\x9e\xf4\x78\xcc\x64\x15\x93\xba\x5e\xa4\x47\x1f\xed\x04\xfe\x65\xb1\x4e\x8c\xf3\x1d\x85\x3f\x3f\xfd\x72\x3a\x57\x87\x77\xb4\x46\xec\xb4\xa6\x57\xae\x7b\x2c\x5a\x65\x93\x66\xab\xa5\x56\xde\xd8\x19\xcf\x26\x1c\x47\x2e\xc4\x46\x4f\x48\x6a\x4c\xe2\x38\x96\xd4\xf4\x55\x37\xe4\x7b\x6f\x0f\x53\x3f\xcb\xb2\xa4\x68\x9b\x44\xae\xf6\x28\x04\x91\xd4\xfa\x08\xeb\x91\x48\x64\x36\xdb\xb3\x28\xd1\x2e\x66\x49\x70\x0f\x2e\x0b\xd4\xde\xc8\xa2\xc4\x85\x4a\xef\x83\x83\x10\xcb\x12\x1f\xdc\x51\xe7\xc2\xef\x5c\x61\xda\x32\xce\xcb\x18\x32\x0b\x2d\x66\x3f\xa4\x3a\x9d\xec\x5c\x3b\x66\x5e\x97\x78\xa4\x54\x9a\xfb\xe3\x52\x99\xe0\x0b\x8b\x41\x5d\xa5\x25\x1b\x3f\xa8\x24\xb8\x2a\x44\x28\xa5\xe1\x49\x5b\xd2\xd7\x36\xf6\xd0\x8f\x14\x6f\x7f\xf9\x6c\x72\x63\x66\xcc\x9b\xd5\x25\x9f\xcd\x77\xd6\x6a\xe2\x62\x3d\xb3\xd5\xb9\x7a\x77\x03\x82\x46\x58\x60\x41\x71\xd9\x7e\x14\xf8\x63\x34\xd4\xab\xf1\x17\xa8\x49\xdd\x20\x20\x93\x6a\xec\x4d\xdf\x96\xd9\x5e\xee\x36\xd5\x41\x39\xb9\x1d\x4d\xaf\x3a\xdd\xce\x62\x67\xa1\x37\x98\x74\x64\x74\xba\x67\x49\xd7\x2c\x5f\x7c\x5a\x4f\x0c\x72\xef\x1d\x49\xb8\xde\x78\x7e\x52\x82\x6e\x90\xc2\xc5\x2d\x55\xcf\xa1\x22\xf0\x3b\xae\x84\xa5\x59\x6b\xa1\xf3\x85\xd3\xed\x68\xf0\xed\x22\xca\x74\xe6\xbf\x9e\xd6\xcc\xe9\x1d\x87\x0b\xcf\x07\xad\xea\x18\xdc\x39\xe9\xb6\xa4\xa4\xf7\x78\x89\xb4\x2a\xab\xf6\xea\x9e\x67\x06\x29\xd1\x1a\x33\xa2\x92\xf3\x69\xcd\xf8\xdf\x66\x36\x69\x10\x04\x24\xcc\xde\xf4\x4a\xbc\x81\x35\x69\xab\x30\xcd\x43\xe3\x35\x60\x3f\xb1\x49\x09\x96\x3a\xd7\xae\x5a\x11\xac\xf5\xb4\x10\x2f\xc8\x7a\x86\x4a\x87\xb3\x67\xd0\x76\x91\x1a\x1e\x11\x60\x40\x9d\xfb\xf5\x42\x6d\x40\x26\x3d\xe1\x21\x2f\xe4\x27\x64\x21\x6e\xac\x22\xb6\x44\xd6\x45\x77\xe1\x27\x27\x34\x00\xbf\x34\x1e\x89\xd2\x49\x6e\x9a\x5a\xc7\x86\x6f\x4b\x51\xec\xa7\x9d\xd4\x60\xba\x9e\x6c\x09\xe5\x04\x78\xea\xc9\x16\x65\x7b\x2a\xea\x11\x10\xbb\x3f\xb3\xad\x07\x45\x57\x47\x28\x53\xf3\x5f\xb6\x23\x75\x7b\x06\x82\x4e\xdb\x36\x20\x01\x1c\x0e\x2a\xa2\x0e\xb1\x6a\xdc\x02\x55\x98\xec\xbf\x3e\xa9\x93\x75\x2d\xd2\x28\xfb\x96\x5a\x4f\xdd\xfa\xc8\x25\xa8\x6e\xb4\x3c\xd7\x30\xfd\x0a\x56\x6e\xf9\x81\x86\x30\x21\x45\xc1\x49\x09\x3a\xc7\xab\x87\x0d\x45\x99\x0d\x4a\x83\x51\xdd\x6a\xc0\x4a\x45\x58\xec\x44\x7b\xbf\xec\xf4\x7b\x91\x90\xb7\xa0\x25\xc5\x9a\xcc\x7d\xea\x54\xba\x08\x04\x16\xbf\x72\x37\x55\x47\x89\xee\x83\x1c\x74\x13\xb3\xaa\xa8\x39\x5c\xb2\x36\x2e\xf6\x89\xa8\xb5\x0c\x55\xfe\x4b\xdb\xf5\xc1\xf8\xa5\xe1\x28\xaa\xcb\xb7\x11\x87\x5d\x1a\xae\x14\x7a\x83\xff\xbc\x27\xdd\x8b\xcf\xe8\x82\xf7\xf5\xdd\xa3\xc3\x54\x6d\x22\x2b\x58\x98\x45\x4f\xd7\xec\x0b\x40\x09\x3f\x6c\x4d\xe1\x1e\x5f\xbc\x49\xa9\xad\x80\xb4\x48\xa1\x37\xf8\xfe\x82\x4b\x90\x28\x12\x6b\x65\x62\x64\xaf\x38\x9a\xd4\x0a\xa4\x92\x12\xef\x2d\x22\x01\x6d\x4e\xad\x0a\x01\x2d\x8c\xcc\xb5\x5b\xa0\x11\x59\x41\xea\xcc\xd2\x7c\x5e\x33\x7f\xbc\x45\x73\x7d\xdf\xe0\x58\xb2\xc5\x9f\xd6\x80\x65\x63\xc7\xdb\xc9\x6b\xa9\x50\xd7\xf3\x05\xf4\xb2\xe3\xbc\x0b\xb1\xa8\x8a\xeb\x52\x39\xc6\xcf\xbc\x8e\xc5\x66\x99\x67\x9a\xd0\x45\x65\x3f\x76\x68\x58\x54\x1c\x33\xcf\x2f\xc1\x0f\xb9\xe1\x9a\xe4\x18\x77\xcf\x50\x56\xf5\x99\xdb\x35\x03\x68\x87\x33\xdb\x8b\xe2\xce\x6f\x34\xa2\x4c\x43\x89\xb5\x02\xe4\x66\x47\x77\x3a\xd2\xcf\xeb\x9c\xa7\x38\x6b\x5f\xb4\xe2\xde\xd4\xaf\xca\x8a\xf4\x8f\xed\x63\x06\xee\x3d\x22\x32\xe2\x01\xe4\xf8\x55\xb6\xa8\x07\xc8\xd4\xfc\xe2\x8d\x49\xf3\xdb\xc7\x4d\x1b\x94\x0a\x32\xcd\xe5\xe9\x73\x2a\x58\xb9\x0c\x76\x12\x71\xd0\xcc\xaf\x7e\x66\xa8\x3a\xdf\xdc\xe1\x2a\xbb\x3e\x78\x07\x1e\x50\xd8\x15\x0a\x32\xca\xc1\xf6\xc7\x5a\xd8\xc0\x56\x24\xf1\x78\xdf\xcb\x3a\x8a\xd8\x63\x65\x65\x08\x94\x1f\x79\xae\x5e\x09\x4a\xd3\x68\x48\x78\x8f\x3c\xdf\xae\x9f\x49\x35\x84\xbe\xe3\x81\x94\x93\xad\xc1\xeb\xa0\x68\x94\xd1\x30\x55\xae\x21\xfc\x72\x39\x5a\x6c\x66\x76\x8e\x86\x1c\x6d\xb1\xb0\x07\x2c\xf4\x06\x9f\xb2\x91\x6b\x23\x13\x05\x4f\x90\x72\x99\x49\x99\xa8\x63\x07\xd3\xe9\x12\xc4\xde\x1a\xac\x94\xb8\x53\x7d\xf8\x5e\x8d\xbb\x46\x2c\x39\xea\xa7\x49\x67\x96\xeb\x59\xae\x6b\x45\x89\x0a\x8f\xa4\x22\x5f\xd3\x24\x1c\x2d\xce\xab\x09\x4d\x3c\xb3\x7e\xb3\xd6\x70\x12\x8f\xc9\x96\x0b\xfe\xf5\xb4\x35\xca\x31\x84\xd8\x25\x59\x82\x67\x3b\x86\x69\x8d\x22\x2f\x35\x2b\x3e\x11\xa5\x68\x64\xb3\xd8\x89\x0b\xa9\x3e\x86\xbb\xe4\x6b\xd7\xb4\xe3\xf8\x61\x12\x37\x9e\x76\xde\xf7\x82\xde\xf6\x52\x8f\x6e\xf0\x22\xb4\xd9\xdc\xe2\xe8\x64\xb0\xa7\x37\x77\xc1\xd7\x8e\xa7\x29\xeb\x73\x0a\xd3\x26\x16\x7a\x83\x7f\x9d\x00\x17\xec\x5a\x9f\x0a\xc1\x2c\x4b\x5a\x77\xf0\xb7\xb1\xf8\x88\x6f\x98\x2c\x7c\xa5\xe3\x96\x7e\x20\xe6\xdf\x84\xff\xff\x43\x63\x35\x04\x88\x61\x50\x27\xba\x71\xb9\x2b\x57\x62\xd1\x95\x3a\x57\x16\x20\x57\x2f\x83\xb3\x2c\x7d\xe0\x61\xac\xf1\x95\x11\xc9\x8c\xc1\xf4\x5d\x8a\xeb\xca\xb7\x1e\xba\x2c\xdd\x4e\x2b\x05\x47\x3d\xa9\x67\xf6\x69\xbb\x8c\x1a\x15\x15\xc5\x4f\xc9\xb1\x37\x5a\xaa\x6e\x0b\x52\x4d\x76\xc7\xa4\x64\xcd\xe5\xcb\x44\x33\xf4\xed\x24\x54\x7a\x24\xcc\x7c\x51\x5d\x71\x0d\xea\x8e\x19\x21\x65\xa9\x99\xb0\x3d\xf9\xdb\x7d\xc4\x66\x1e\x17\x00\x9f\xcd\x6d\x3a\xa2\x11\x1e\xe4\xf0\x9f\x39\x89\xce\xf4\x12\x64\xc5\x41\x37\x38\x91\x8a\x60\x7f\xee\x7b\xaf\xaa\xac\xef\xba\xc4\x97\x1a\x8e\x4b\x35\xaf\x06\x4f\x34\x55\x36\xf8\xfa\x71\x55\xc0\xf3\xc4\x61\x2a\xf7\x8d\x17\xe3\x93\x20\x6a\xad\xb3\xeb\xf6\xec\x85\xb8\x0c\x88\x66\xb3\xf9\x5b\xf6\xeb\x50\xf5\xa6\x45\x41\xf0\xe0\xe7\xaf\x6a\xcf\xb7\x5c\xa6\x86\xa7\xa8\x89\x64\xd3\xb8\x01\xba\x62\x56\x21\x89\x34\xe1\x0f\xe6\xa6\x4f\x5f\x0d\xd6\x5e\x77\x0c\x4e\x79\x53\x38\x7e\x91\x6f\x90\xa0\xf9\x17\x5a\xbd\xd1\xa2\xb5\x5d\x70\xe3\x3e\x58\x05\x7c\xd4\xb7\x19\x8c\x9d\xc2\xb7\xf3\x6b\x6d\xea\x23\xad\x95\xd3\xdd\x53\x66\xed\x78\x9d\x45\xc7\x0d\xd3\x4f\x60\x71\x9f\x9b\x94\x8e\x34\x33\xe7\xca\x2d\x4f\x81\x5b\x6a\x4a\x15\x7c\x69\x91\x9e\xc9\xbb\xe4\x17\xf9\xb4\xb6\xe3\xf7\x4c\x62\x57\xa1\x8f\x0e\xfe\xfa\xb2\x26\x46\xc3\x1b\xf1\xe8\xb6\x3f\xf3\xad\x5b\xb4\x59\xa7\x32\x4e\x54\xb6\xfa\xeb\xd6\x45\x8b\xc1\x8f\x52\x22\x90\xaf\x47\x6e\xdf\xd8\xb8\xbf\x12\x18\x91\x9a\x5b\x91\x34\x5e\xa4\x88\x64\xef\xb2\xcf\x2e\x4c\x5c\xa2\xcc\x7a\x72\xc9\xde\x9c\xa9\xd1\x4e\x69\x9d\x0a\x18\xd1\xdc\x3e\x1e\xe7\x6b\x18\x4a\x16\x7a\x83\x6b\x11\x08\xc2\x24\x98\xc5\xf6\xd7\x6b\xe0\x3c\xd2\x92\x6f\xc4\xe0\xac\x39\xeb\xd2\xbd\xc1\xdc\x39\x03\x2c\x29\xf3\xde\x5b\xd8\x00\x53\xd5\x7d\xe3\x9e\xd2\xab\x75\x25\x52\xa5\x12\xfb\x5f\x5f\x52\x98\x9a\xde\x55\xab\xd0\xc7\x98\xb5\x22\xb5\x43\xaf\x15\x7c\xf9\xb7\x2f\x02\x5d\xd0\xc2\x55\x4d\x62\x93\xda\x00\x2b\xe7\xeb\x75\x11\x08\xdf\x23\x0d\x45\x56\xee\xcf\xdc\xb7\x13\x0d\x56\x98\xdc\xa7\x05\xfb\x76\xc1\xd8\xde\xa4\xa4\xb4\xde\x27\xc2\xa3\xa0\x02\xb4\xe9\x65\xad\x00\xe5\xb6\x41\x6d\x4f\xa0\x4b\xb1\x5c\x63\xcb\x87\xcd\x79\x04\x87\xc9\xac\x7c\x06\x0b\xda\xba\x1e\xe0\x17\x7a\x7b\x92\xe1\xaa\x8d\x1a\x89\xec\xfc\x7b\xe1\x39\x2c\xf1\x6d\x8e\x41\xe7\xed\x3a\x8b\xd9\x36\x80\xcb\x09\xb6\x23\x7f\x7d\x34\x1e\xc3\xb8\xd4\xf0\x23\xcd\xc7\xf5\x63\x81\x52\x34\xb3\x4b\xba\x9e\x7e\x0c\x31\xde\x1a\xa0\x69\x12\xfe\xf1\xf9\xdb\x74\x7b\x7b\x02\xdc\xe8\xe9\xbb\x34\x14\x10\xf3\x62\x8f\x8f\x3f\x9c\x82\xe0\x06\x11\x24\x7c\x82\xaf\x2c\xd4\xc3\x07\xf7\xa9\x66\x00\xba\x01\x61\x63\xc1\xd9\xdd\xa5\x54\x75\x44\x43\x16\xa0\x8a\xbb\x4e\xa5\xc6\x54\x66\x09\x02\x8c\x28\x21\xe7\x26\x98\x20\x07\xe9\x49\x4d\x85\xdb\x1b\x89\x45\x37\x6a\xc8\xfb\xca\x43\x69\xb9\x54\xdf\x75\xcb\x6a\xb4\x95\x3e\x31\xeb\xb7\xa6\x23\xdb\xcc\x99\xa0\x91\x72\xfb\x1d\x48\x49\x3a\x5d\x72\x6f\x9a\xa6\xbf\x93\x78\xe1\x03\x12\x2c\xe9\x86\xe3\xc0\x9d\x48\x5a\x99\x16\x7d\xf0\xdf\x0d\xe6\x46\x6a\x0a\xbe\x0d\xf1\x3b\xf7\x92\x83\x4c\xe6\xc2\xe6\xae\x8f\xdb\x14\x5d\xce\xcc\x0d\x87\x92\x87\x52\x66\xa5\x0a\x8d\xa4\x7f\x7c\x60\x0b\x15\x56\x52\x39\x45\x44\xcd\x90\xd8\x94\x1c\x38\x17\xf1\x6b\xb3\x5b\xcf\x8e\xc4\x7b\x55\xd7\x10\xac\x08\x0b\xdc\x57\xb4\xad\x51\x8d\xbb\x06\x6f\xa8\x4a\x2c\xec\xb0\x4f\x8e\xd4\x4a\x5e\x17\x8c\x89\x7f\x69\xfd\xaf\x83\x7b\x57\x75\x57\xe2\x9d\xc4\xec\xc4\x5e\x8f\x3e\x67\x61\x4f\x3c\x69\xa9\xf8\xb1\x87\xda\xff\x87\xa0\x2d\x26\x2f\x16\xc3\x66\xec\xc4\x93\xc3\xd0\x01\x54\x07\xfe\x2f\x7b\x2f\x46\x64\x6d\x40\x31\x32\xbb\xe4\xbb\x9e\x24\xe0\xe5\xce\x5e\xd1\x5a\x00\x47\xea\x2c\x87\xe3\x12\xa2\x7b\xfa\xcc\xf0\x69\xce\xee\x46\x38\x5c\x20\x37\xc9\xa3\x77\xff\x51\x0d\x7f\x4c\x37\x30\x43\x7e\xbd\x96\x53\xf5\xdd\x2e\x98\x50\x2f\x66\x72\xe8\x9f\x5b\xb8\x4d\x07\xe8\x46\xa7\xa5\xb7\x3f\x37\x63\xac\xd6\x4b\xbb\x8c\x44\xbd\xc3\xac\x8d\x48\x88\x93\x36\x98\x0b\x70\xa2\xa0\x1f\x0d\x12\x5d\x5e\xf6\x0a\xae\xc3\x61\xb5\x15\x1d\xd3\x91\xa8\xb4\x99\x82\x17\x86\xc7\x36\x24\x93\x64\x61\x47\x8f\xfa\xc7\xe7\xa4\xcd\x01\x2d\xdf\x33\xa9\x88\xb7\x2e\xe9\x50\x7f\xc9\x98\xc8\x1b\xae\x1c\x86\x51\x79\x63\x8b\x43\x34\xb6\x1f\x38\xd0\xaa\x1d\xd5\x2f\x03\xd8\x15\x54\xd4\x56\x34\xbf\xa6\xb5\x18\xae\x11\xa9\x0a\x28\xaf\xdf\xfe\x17\x51\x8d\xe3\x3b\x8e\xc5\x60\xb6\xf9\xfd\xc7\xd0\x08\x84\x5b\x14\xf4\x5c\xdf\x99\xa9\x2b\xe3\xcb\x52\x16\xca\x9b\x79\x5b\xd2\x61\xee\xe6\x28\xf7\xdc\x9f\x87\x97\x64\x4f\x96\xef\x37\x73\xee\x3d\x97\x41\x0c\x26\xc2\xa2\xcd\xc2\x62\x52\x67\x25\xb7\xb5\x58\xcd\x1e\xf0\x46\xeb\xf5\x12\xb7\xea\x71\x15\x72\xc5\x3a\xa8\x6f\x2c\xdf\x36\xcc\x02\x68\xe0\xf6\xe7\x7e\x34\x3f\x8d\xfa\xb0\x3b\x59\xa7\xd9\x39\xd0\xd9\xf9\xd6\x4a\x44\x70\x2d\xd5\x99\x0b\xde\xa6\xd1\x7b\x3d\x77\x90\xd6\xe8\x99\x8c\x96\x15\xc8\x25\x67\x4e\x45\xa4\x4a\x2e\x24\x4e\xa8\xb0\x1c\x59\x7a\x59\xa4\xe2\x9a\x2c\xc6\x47\x6d\x44\x8a\x1f\x82\x94\x1a\xc4\x66\x4d\x22\x49\x35\xb9\x2b\xd0\x52\xd1\x46\x5b\xfb\xe0\xc5\x9e\x24\xb3\x09\xbf\x68\x49\x2e\xff\xcb\x7b\xb4\x2d\x91\xc3\xb9\x0d\xdb\xe4\x8b\xa7\x47\xa2\x1e\xc4\x62\x51\x49\x51\x7a\x49\xeb\x73\x05\x71\x41\x44\x2a\x38\x71\x22\x79\xc5\x55\xe6\x38\x52\x10\x27\xf3\xf2\xd8\xe4\x38\x73\x9b\x16\x5c\x4f\xf0\xaa\x7c\xb2\x5b\x12\xd1\xf5\x22\xb3\x0a\xbd\xc1\xe7\x96\xeb\xae\xa7\x94\xc4\xce\xf2\xab\x37\xb4\xa3\x92\x35\x9d\x35\x27\xb6\xf8\xd3\xaa\x2e\xd9\xda\xa9\xd1\x52\x3d\x41\x1a\x5a\x71\xfa\xa9\x4e\xe4\x61\x4c\x1a\x35\x52\x1d\xc8\x93\xf6\xfd\x3b\x2e\x42\x45\x92\x14\xe5\x52\x05\xa5\x54\x62\x78\xae\x85\x31\x6b\x57\xa9\x6a\x38\x72\x9f\x6c\xd7\xe8\x3e\x5d\x1e\x80\xd9\xf2\x37\xdd\x71\x99\x56\x01\x7a\xc4\x6e\x12\xd3\x57\x40\xd4\x28\xe8\x5f\xb4\x3d\x91\x60\x20\x72\x78\xf8\x1f\xf3\xd3\x79\xb2\xc4\x6b\x84\xd9\x03\xc8\x8a\x3f\xbd\x4d\xc3\x12\x30\x52\xb1\xb9\xeb\x31\x43\x8d\x0c\xb7\x69\x5a\x40\xc4\x75\xc3\x4f\x0e\x00\xae\x93\x7b\x31\xea\xd6\x95\xaa\xad\x90\xfd\x97\x1d\x47\x86\x6b\xe5\x32\x17\xb0\x59\xfd\xea\x91\x8b\x10\x6c\xa5\x48\x85\x87\x6a\xe7\xac\xf1\x98\x26\x8e\xc8\x2c\xee\xd2\x3a\x33\xb4\x75\x0b\x6f\xd3\x9d\x73\x2b\x15\x60\xbc\xa9\xcd\x41\xe6\xad\x77\x20\x92\x5d\xc5\x6d\x4f\x70\x89\xb0\xca\x0f\x5e\x88\x05\x04\x1d\x85\xcd\xcf\x7c\x7d\xab\x2e\x13\x14\x53\xf4\x83\xa9\xf7\x74\xe8\x2f\x20\xbc\x7e\xb0\xd2\xcd\x2d\x19\xac\x15\xc5\x4f\x8c\x43\x58\xca\x3a\x15\x72\x61\x1f\xd6\x8f\x1c\x54\x01\x7a\xfb\xb3\xcf\x8e\xd7\x29\x07\x61\xf9\x69\x29\x51\xc4\xb7\x84\x76\x50\x04\x25\xd5\x78\x4a\xff\xcf\x66\x32\x8c\x61\xb6\xb4\x4d\x54\xda\x9d\x99\x0d\x47\x13\xc1\xd0\x96\x6a\x28\xf8\x6a\x17\x92\xe1\x15\x61\x85\x11\xfe\x9b\x43\x83\xf4\x8f\xa2\xe4\xab\xc0\x23\x6c\xe3\x12\xfd\x21\x43\xb8\x8e\x31\xc4\x3f\xd7\x00\x3d\x4e\x67\x5f\xa7\xa6\xee\x3e\x77\xf4\x70\xac\xc9\x20\x24\xc6\x38\xfb\xb3\x8e\xd1\xfa\x91\x0a\x1b\x6a\x35\x82\x39\x7e\x00\xd6\xd6\x1f\x13\xa4\x75\x8b\x94\x3b\x7b\xa6\xc5\xfd\xa7\xcf\x8f\xda\xee\xdc\xfb\x16\x21\x8f\xab\x68\x89\x95\x7b\xf4\x4c\x1a\x13\x59\x25\x7e\xb9\x46\x6c\xf0\x6a\x88\x2a\x95\x6d\xf7\xe9\x06\x75\xb6\xa4\x1b\xca\x47\x1c\x4d\x4f\xfe\x32\x24\xed\x6b\x08\x90\xc2\xde\xfe\xec\xc3\xaf\x68\xd3\xe7\x4e\xb7\x13\x01\x56\x73\x6f\x6d\x42\xbe\xae\x75\x2a\x9a\x20\x07\x9f\xbd\xf8\x81\xa4\x4a\xe9\x94\xe2\x88\xbf\x9d\x89\x55\xd0\xe2\x0d\x94\xdc\x3e\xdd\xd5\x82\xfb\xf1\x04\x6f\xc2\x90\x33\xfc\xb7\xcf\x1d\xd4\x84\x5f\xb9\x05\xfa\xae\xea\x2e\x77\xdc\x97\xd0\xd5\x4c\xee\x3a\x6c\x00\x7f\xa0\xfc\x94\x73\x92\x67\x28\x81\x60\x32\xaf\xdf\x92\x4d\x49\xd3\xcb\x0e\xe1\xab\xed\xba\x9c\x2b\x2f\xf9\x86\xc2\xaa\x67\x37\x1e\x1f\x81\x2a\x51\x5e\x24\x45\x90\xa7\xcd\x0c\x1e\x7d\x51\x12\xad\x5a\x02\xd2\xb4\xe3\x23\x54\x15\xe0\x98\x12\x89\x0b\xab\x83\x40\x6c\x47\xbb\xc0\xd9\x9d\x3d\x5d\x52\x31\x30\x51\x93\xa1\x1b\xd0\x32\x33\xb3\xef\x8c\x4c\x4e\x52\xe3\xa8\x27\x7a\x09\xfd\x9b\x50\x9f\xa8\x70\x97\x99\x95\xe7\x4f\x40\xb2\x5f\x61\x55\x28\x83\xb7\xfe\xb1\x06\x6f\x4d\xdb\xb2\xd8\x54\x5e\x79\x32\xe6\x02\x54\xb5\x86\x7f\x32\xf1\xe5\x76\xd4\x83\xdb\x88\xb6\x9e\x1b\x77\x97\xa6\x11\xc3\xc3\x53\x08\x91\xf4\xc3\x80\xd7\x2f\xac\x52\xc9\x43\x4f\x30\x37\x6d\x6e\x4b\x55\xc2\x06\xe8\x95\x18\xb7\xa4\x6b\x57\x4b\xa6\x27\xd9\x11\xe9\x0b\x92\xbd\x83\xd3\x07\x3c\x8c\x4f\x5c\x63\x36\xe7\xde\x37\x45\x79\x88\xf9\x1e\xa0\xc3\x32\xc5\x53\x10\xe5\xb8\xa8\xc0\xeb\x5b\xfd\x32\x5a\x5a\x78\x82\x1b\x4a\xed\xb5\x3f\x3f\x6e\xbc\x3e\xab\x96\x2a\xad\xb0\x3d\x7a\xe0\x48\xf2\x05\x66\xf6\x4c\x9f\x37\xa7\xab\x20\xb5\xb0\xee\x1f\x9d\x42\xfc\x96\xa8\x88\xec\xcc\xa5\x00\x6b\x04\x3d\xe1\x82\x00\xf0\x65\xff\xe2\xe4\xd7\x03\xd5\xa2\x02\xae\x32\xcd\x73\x93\x96\xc8\xc7\x86\x8b\xb7\x6b\x3a\x8e\xc4\x2d\x52\xd7\xe3\xb1\x77\xce\xca\xdd\xda\x7a\xce\xa4\x1e\x17\xc9\x6a\xf3\xdc\x87\xe2\x3b\x6a\x49\xf5\x1c\xda\x99\x4c\x1c\xed\xb0\x68\xe9\x0d\x26\x0e\x4b\x5f\xcd\x2a\x17\x34\x6a\x21\xa0\x22\x7b\x0c\x3a\xfa\x12\xb3\x88\xc3\xa2\x7d\x58\xfe\x8a\xd7\x90\x34\x1b\x31\x84\x34\xae\x95\x7c\xc6\xe5\x4f\x8c\x4e\x18\xb8\xac\x25\x0e\xfe\xb3\x66\xee\xe9\xdb\x4e\x98\x4a\x4a\xd4\xf6\xe2\x75\x75\xf6\xe8\x3a\xec\x54\x08\x98\x18\xb5\x2f\x9d\xf4\x9e\x46\x37\x6a\x3a\x54\x30\x3b\xbc\xda\x61\xbc\x50\xb2\x9f\x6d\x43\x31\x25\x54\x32\xea\x97\x2e\xd7\x5c\x45\xb9\x47\x1c\x5e\x27\x29\x56\xc1\x49\xcd\xcb\xdb\xa3\x86\x69\x73\x8b\x57\x00\xbe\x9c\xf9\xfe\x4c\x2d\x03\x94\xa4\x74\x5c\x54\x5a\x3a\xad\xd4\xab\xa8\xe2\xf8\xfd\x30\x84\x9d\x66\x44\xfa\x83\xe5\xfe\x7b\x35\x92\x8b\xf5\x3d\xb0\x3f\x0e\xff\xc3\xac\xb6\x36\x75\xb1\x2d\x8b\x55\xa8\x00\x94\x71\xfe\x1f\x91\x67\xa7\x45\x0c\x93\xf9\x2e\x91\x2a\xb9\xe3\xd1\xb6\xc3\x26\x56\xd3\xf5\x22\xe6\xe4\x94\x23\x1d\xb8\xbe\xf4\x68\xcd\xb1\x62\x0b\xf1\xaf\xbf\x1d\xad\x91\xab\x26\x01\x49\x00\x19\x70\xfe\x70\x24\xc9\xbb\xa6\x5f\x82\xdd\x52\xf6\x7d\x87\x2f\x54\x3f\x46\x08\x2e\x2d\x50\x21\xbc\x5f\x79\x85\xc6\x60\xb5\x23\x98\x49\xfa\xd5\x9f\xa7\x91\x38\x5d\x56\xb1\x23\xb5\xf9\x7c\x5b\x10\x1f\xd6\x9a\xd4\x33\xb8\x67\x2a\xdc\x5f\x93\x8a\xa2\xbc\xa5\x97\x3d\x93\x4e\xdb\x45\xdf\x30\x89\xa0\xae\x97\x70\x38\x56\x1d\xd5\x17\xd6\x1e\x61\x56\x18\x58\x24\x00\x35\xdb\xd4\xc4\xae\x8a\x5c\x44\x93\xbf\xdc\x8e\xd1\x58\x07\x18\x96\x02\x12\xdb\x37\x3a\x45\xfc\xa1\x92\x84\x95\x7f\xdf\x22\x68\x22\x6a\xac\x54\x98\x31\xaf\x4b\x22\x3c\xf2\x93\x6d\x6d\x3a\xe6\xbb\x1e\xaf\x85\xbf\x1e\x32\x8b\xfb\x8a\xe6\xee\x44\x2d\x25\x0a\x90\x19\xe4\xb4\x90\x33\x25\x36\x4a\x16\xda\xdb\x90\x8b\x58\x89\x96\x99\xcd\x3c\xd9\x68\x06\x67\x11\x19\x80\x97\xcb\xae\x29\x29\xd1\x81\x78\xb4\x25\xbf\x39\x54\x78\x70\x86\xb3\xa7\xc6\x22\x85\x73\x4a\x64\x43\xf1\x95\xe7\xd3\x97\x83\xd7\x95\xf9\x11\xc2\x46\x65\xde\x37\x7e\x38\x1a\x82\x46\x6a\xb3\x8b\xb6\x5e\xa2\xce\x90\xed\x49\x1d\xe1\x16\x50\x7a\xfb\xcb\xe3\xb5\xfe\xd4\xa3\x15\x79\x7a\xa6\x41\x18\x0a\xbf\xe3\xd4\x27\x92\x60\x45\xc2\x0b\x9b\xdb\x57\x4c\x4f\x79\x3d\xe2\x35\x89\xe6\x4a\x1f\xfc\x44\x9b\xec\xcb\x23\xae\xb8\xd5\xc1\x3f\x8d\x4d\xff\x62\x8b\xfb\x25\x1a\x7e\x44\xc9\x46\x50\x83\x86\xbf\xdf\xa3\xb1\x82\x98\x2b\xf7\xa5\xf0\xb0\xa6\xce\x6d\x43\xa7\xc2\x13\x4a\x68\xf4\xf3\x6f\x27\xcf\xb0\x49\x89\x90\xc1\xe1\x77\xdb\x34\x4c\x2c\x31\xcc\x68\x2c\xbf\xb7\x1d\x19\xd5\x99\xe1\xbb\x1b\xa7\xfc\xb5\xaf\x22\xb6\x87\x84\x0a\x72\xdf\x7e\x58\x41\x9f\x7c\xe1\xfa\xd0\x93\xac\xd9\x15\xe3\xd5\x68\x0d\x43\x59\x83\x05\x47\x13\x75\x00\xd2\x7a\xe3\xe6\xac\xd5\xa4\x32\x6c\x4f\x50\x1a\xd1\x99\x5e\x42\x1e\x67\xa4\xe4\x5b\x00\xd1\x1d\xb3\x36\x49\x12\x35\x02\x3e\x2e\x6f\x3e\x9a\xfc\xcd\x12\xb1\xac\xb0\x57\x0b\xbe\xf7\xac\xda\xa5\xfb\x9e\xc9\x05\xdb\x28\x17\x95\xcb\x37\xcb\xb4\xe8\x28\xcf\x35\xbd\x1a\xb8\x63\x43\x8c\xe0\x2b\x92\x66\x0a\x03\x70\xe5\xe3\xe9\x9e\xd6\x24\x2e\xab\x69\xfc\x9f\x2d\xdb\xd2\x17\x8c\xd6\x8a\x24\x02\xfd\x86\x0f\xea\xd3\x27\x92\x2e\xad\x62\x91\xb2\xc1\xb1\x1c\xff\x8d\xa5\xe1\x49\x1d\xeb\x01\x57\x2f\x78\x70\x22\x0c\x5d\x66\x77\xce\x98\x2b\xf7\xea\x63\xb1\x19\x37\xb1\x4b\xcc\x26\x75\x16\x76\x5c\xc1\xe6\xf9\x53\xb4\xb3\x66\xf9\xb5\x22\x23\x03\x8c\xa4\x82\xfb\x4e\x69\x74\x2e\x98\xc3\x07\xe7\xcf\xff\x5f\xc4\x8a\x80\x1b\xff\x45\x1b\x4d\xe9\x3b\x2b\x9d\x44\x3e\xfe\xbd\x9e\xe6\x4a\x4f\x4a\xba\xb5\xe7\x2f\x5e\x56\x2b\x63\x29\xc7\x2c\xf5\x02\x36\x25\xf1\xcc\xa3\x72\xd3\x29\xeb\x51\x07\x74\xd1\x0a\x8b\x88\x45\x89\x60\x06\x1e\xa5\xfc\xcf\x76\x5d\x6f\x57\xaa\xfe\x41\x14\x72\xf6\x20\x9c\x39\x35\x48\x0d\xd7\xad\x07\x26\xa6\xc7\xd6\x3d\x3d\x90\x30\x77\xcc\xd5\x56\x64\xbe\xcb\x6c\xa5\x29\x1f\xfe\xd0\x7f\x3b\x90\x14\x3f\xe5\x32\x9a\xd0\x6f\x42\x3e\x0c\xb2\x75\x97\x6d\xbb\x46\xc9\xf5\x04\xa9\x53\x2b\x92\x51\xef\xcf\x5d\xba\xbf\xe5\xbf\x23\x01\xb7\xfe\x7c\xdf\x69\x04\xac\x97\x20\xe1\x60\x66\x1d\x32\xed\x55\xcc\x5e\xef\xcb\x9e\x56\x56\x31\xf3\x47\x24\x80\x7d\x10\x70\x7d\xf4\x35\x7d\x9b\xc9\x45\x4d\xf1\x2e\xbb\xdb\xb4\x49\xf3\x06\x8f\x8b\xb0\x1e\x61\xae\x7a\xb5\xc1\xb7\xba\x35\x60\xa9\xd2\x27\x95\x75\xc3\xe7\xb6\x68\xeb\x3e\xc1\x8c\x6a\x53\x8d\x63\x09\x32\x1c\x70\x7d\xd7\x61\x46\x64\xda\xfc\xdf\xca\x75\x32\x96\x0a\x57\x24\x92\xf2\x33\x51\xa2\x06\x2a\x9a\x6d\x84\x15\x70\xf0\xa7\x7d\xc9\xb7\x9f\x09\x96\x2e\x33\xb7\x69\x92\xdc\x7e\xe4\x57\x94\x19\xbe\xb4\x1d\x03\xa1\x9d\xf0\x67\x15\xe5\x78\x33\x7b\xe9\x4a\xdc\xea\xc5\xf6\x7f\xb2\x70\xe9\xc0\x39\xc2\xaa\x82\x62\xc4\x67\x6e\x49\x36\x09\x0d\xe6\x79\xb4\x28\x38\xc7\xfb\x98\x25\x90\x39\x0b\x57\x71\xcb\xa2\xad\x42\xd0\xd9\x1f\x17\x35\x14\x9d\xe4\xa1\x4f\x63\xb1\x31\xe4\x68\x64\x74\x5e\x63\xae\x1c\xb1\xd5\xa0\x6a\xca\x8d\x5f\x87\x44\xf0\xb8\x51\xa5\x20\x82\xf7\xa9\x03\x89\x9b\x4f\x55\x7e\xaf\x39\xaf\x29\xd3\x7c\x10\xbd\xce\xdc\x7e\x32\xfd\x5b\x2b\x4c\x58\x65\xc1\xa8\x5d\x52\x8e\x63\xdd\x9a\xd1\xad\xa2\xc7\xab\xf5\x1e\xd7\x4e\x45\x69\x32\xa9\x11\xa5\x6a\x11\xdd\x9b\x4f\x8f\x80\x57\x05\x71\xac\x22\xc0\x10\xa3\x3f\x3b\x65\x6b\xe2\x53\x60\xc9\x02\xf2\xe8\xd8\xc4\xee\xa9\xaf\xd3\xe9\x6c\x79\x46\xbb\x96\xea\x4b\x6e\xc1\xaa\x34\x6a\xb1\x27\x0e\x41\x24\x17\x5a\x52\x1e\xd8\x51\x95\x7f\xde\xcb\x5a\x65\xc2\x1b\xb6\x5a\x1c\xd6\xb3\x70\x41\x1c\x22\xbc\x66\x85\x45\x86\x06\x0f\x64\xa3\xbe\xc0\x35\x98\x23\xcd\x0e\x0b\xbd\xc1\xa9\x2d\x7a\x27\xe5\xc6\xc6\xa5\x99\x37\xfa\x34\xc8\xc8\x2c\x58\xef\x75\x4d\x49\xac\x98\x5a\xbe\x56\x6e\xcd\x82\x0f\x44\xff\x60\x7a\xa1\x77\xfe\x25\x9a\x84\x57\xc1\xe3\x09\xd3\xad\xb7\x3f\x37\xad\x27\x7e\x70\x33\x0a\x32\xa2\x7f\x48\xdb\xc1\x2a\x11\x1f\x80\x6a\x9d\xd5\x00\xeb\xae\x47\x13\x4b\xc9\xb7\x97\xa4\xeb\x07\xd7\xa4\x42\x30\x6d\xb3\xf7\x4f\xeb\x92\xfa\xb0\x26\xd5\x23\x64\x39\x33\x45\x17\x38\x2d\x95\x88\xba\xd1\xd9\x39\x0a\x90\xd1\x0b\x25\x7f\xf8\x47\xbf\x3b\x88\xf0\x3b\x38\x69\x7d\x67\xef\x50\xd4\xfb\x4b\x67\xbd\x7c\x5b\x4f\x24\x4c\x11\xd6\x33\x72\xa4\x31\xf5\x75\x94\x38\x2c\x6a\x4b\x9c\xe0\xe8\x2d\x70\xb8\x96\x90\x0a\x41\x4a\x8b\x59\x6b\x39\xda\x25\x1a\x86\x1f\x53\x0b\xb2\x45\x5d\xaf\x3e\x4c\x80\x25\xa9\xa1\x08\x47\xda\xba\x04\x35\x66\xa5\xf0\xe6\x87\x9f\x00\xfd\xec\xf3\x35\x0b\x00\x83\xdb\x75\x66\x44\x30\x9e\xfc\x79\x9a\xb6\x79\x59\xf8\xb5\xaa\x1c\xf0\xf6\x06\xe3\xbb\x53\xe6\x6c\x45\x0b\x34\xb6\x72\xda\x9c\xd3\xb1\x24\xe6\x05\x26\x43\xc6\xfc\xa1\xea\xc3\xb8\x54\x28\x87\x8b\xe2\x51\xe8\x1c\x66\x4c\xef\xea\x92\x0b\xb4\x4b\xce\x69\x8b\x45\x24\xb1\x9e\x0b\x12\x8e\x41\xe6\xbc\xaa\x07\x3a\xb3\xa9\x05\x8e\x24\x95\xf8\xa5\x06\xf1\x67\xcd\x21\xaa\x7e\x16\x15\x0a\xf9\xe1\xff\xeb\x68\x15\x7c\x8c\xac\x03\xff\xa9\x13\x91\xb8\x85\x5f\x73\x80\xf3\xf8\xc2\x42\x85\xd7\xb4\xeb\xd4\x56\x9b\x88\xdc\x9b\x4f\x69\x0f\xd0\xe2\x9e\xc9\x22\xea\x71\xee\xee\xfb\xd1\x2c\xd5\x95\x3a\x38\x51\xf7\x73\xc9\x73\x17\x24\xdd\x80\xec\x79\x17\x6a\x43\xc7\xa2\x14\xcb\xec\x24\x20\x82\xb0\x69\x10\x82\x54\x11\x90\x4d\x90\xf2\x90\x0e\xd2\xc5\x61\xb6\x4d\x05\x5c\xfe\xf0\x27\xfe\xd3\x03\x88\xd6\xd0\xa0\x96\x05\x3e\x7c\x2f\x6d\x82\x6f\xd2\x5b\xac\x33\xe9\xe7\x24\x11\xfb\x59\x0d\x26\x2f\x0c\x93\x39\xd4\x22\x15\x0e\xc5\xc1\xd8\xa0\x05\xb0\x90\xf8\xd4\x64\xd0\xd4\xdb\x24\xcd\x86\xc2\x91\xb6\x3f\x84\x09\x9f\xd2\x46\x51\x02\x15\x9f\xaf\xa7\x23\xd8\x64\x41\xd5\x46\x35\xf3\xc1\xf3\x55\xa1\x5a\xe1\x76\x04\x7e\xcb\x3d\x7f\x16\x13\xab\x98\x90\x31\xf6\xbe\xf1\xf0\x37\x3f\x4a\x6c\x93\x78\x1e\x68\xe0\x4c\x7d\x20\x5e\x52\x44\xb6\xde\xcf\x0d\x4f\xd1\xd0\xa1\x11\xba\x6c\xb9\xf6\x75\x5d\x4f\x70\x9b\xf8\xea\xec\x07\x7f\x7b\x07\xd9\x83\x31\x43\xf0\x06\xa9\x03\x4b\x65\xe2\x2d\x91\xef\x79\x89\x91\x96\xe5\xe6\x07\x36\x23\x55\x4f\xf0\xc0\xf8\xfc\xd3\x6a\x82\x6f\x71\x47\xde\xdb\xd9\x7b\x55\xc6\x27\xb6\x41\x2d\x2b\x42\xca\xe4\x67\x1f\xbf\x30\x8a\x1c\xb2\xec\xaa\x49\x38\x43\xf0\xfa\x5b\x1a\x05\x94\x08\x4f\x5b\x55\xfc\xec\xc9\x64\xbe\x55\x11\xa4\x44\x15\x8f\x48\x95\x18\x97\x4f\xd5\xe0\x28\xa6\xaf\x74\x12\x92\x1f\x71\x65\x3d\x1d\x3e\x89\xd4\xb2\xb0\xa4\xf6\xcd\xc6\xe8\xd0\x16\x34\x7f\xe8\x1a\x95\x28\x82\x88\x94\xfc\x1f\x77\x68\xa3\x47\x4a\x1c\x98\xb6\x04\xbf\x38\xaa\xb1\x71\x98\x51\x95\x8a\x4b\xbd\xfd\xb9\xfb\xf6\x62\xe9\x40\x49\x22\x91\x5d\xf6\xc3\xf0\x38\x56\xc8\x34\x9b\x4c\xda\x3e\x7c\x58\x43\xcd\xd2\x12\x75\x2c\xde\x04\x1e\x1c\xe4\xfa\xad\x83\x11\x02\xa4\x41\xaa\x60\xbb\xde\xdb\x9f\xf9\x4e\x07\xb2\xcb\x00\x37\xdb\x63\x9a\x89\x76\x1f\xf7\x85\x4d\x2c\x59\x0d\x82\x68\xd5\xa2\x1e\x5d\x4a\x02\x9b\x64\xf5\xe7\x9e\xdd\x88\x29\x64\xa0\x2c\x18\x7c\xaa\x8e\x14\xe5\xa9\x70\xb9\x9a\xe6\xe6\x2e\xdd\x9a\xd4\x57\x55\x2e\xc5\x02\xd2\x49\xf4\x4b\x79\xd5\x54\x4a\x1d\x1c\x79\x2b\x3e\xf9\x14\x16\x13\x2c\xcb\xc8\x00\x07\xf9\xca\xd7\xb4\x83\x5c\x96\x82\x81\xc9\x4c\xd0\xd6\x40\xc1\x36\xd9\xc8\xa2\x11\xcb\xaf\xf7\xea\x43\x9e\x9a\x63\x51\xb5\xe6\x18\x3b\x7d\x08\x6a\x21\xc2\x27\xf5\xc4\xd3\xba\x66\x67\x99\x23\xa9\xe9\xdc\x25\x1b\x3a\x50\x37\xba\x91\xa6\x48\x5f\x1f\xe8\xd6\x70\x41\x4d\x27\x62\x93\xe5\x5e\x2b\xa2\x51\x19\x2f\x16\x9b\xa0\x9e\x93\x7d\xff\x02\x8d\x21\xc1\x0c\x8f\x48\x8e\x84\xec\xf7\x8f\x0e\xd6\x04\x8f\x62\xec\x61\xf8\x57\x24\xc6\xe9\xa3\x33\xb5\x91\x83\x29\xf1\xda\x4a\x5e\xaa\x53\xff\xf9\xd4\x66\xc4\x8a\x1d\x4f\x6f\xdc\x32\x4a\xfb\xf9\x72\x0b\x14\x5e\xca\x3b\xd7\x68\x42\x8d\x8a\x55\x14\x1e\x42\x15\x13\xdf\xd8\x9f\xfe\xd5\x75\x2a\x95\x9e\xd5\x08\xed\xee\x27\xd2\x50\xa4\xb2\x6f\x97\x5a\x36\xa7\xc1\x83\xc7\x93\x27\x4a\x6a\x45\xe2\xba\xa4\x14\xa3\x4c\xc7\xe7\xd3\x1f\x4f\xa6\x05\xd5\x5c\xcd\x3d\xa9\x0f\xcf\x1a\xd1\x46\xed\xe3\xcf\x21\xcf\xd4\x26\x87\x16\x6a\xf1\x9b\x71\xdc\xe4\x52\x90\xaf\x72\x2e\x72\xd0\xe1\x1b\x49\xad\xc8\xd6\xfb\xf2\x5e\x5a\x3b\xd2\x2b\x3b\x8b\x6a\xfd\x6d\x66\xe4\x6a\x0d\x91\x8d\x1d\xdb\x60\x07\xb9\x71\x77\x92\xce\x27\xb6\x94\x91\x77\x6b\xa3\x10\x83\x78\xb4\xc2\x95\x2c\x45\xee\xc7\xe6\x64\xbd\x0c\xa4\x8e\x45\x0d\x93\xb8\x0a\x43\x15\x9f\xba\xfc\xb6\xe7\xb0\xde\x73\x0d\x04\x2a\x77\xee\x8a\x10\x28\x91\x36\x41\xb0\x7f\x4f\x42\x90\x72\x88\xf4\x22\xd1\x3f\xd4\xfe\x57\xe3\x47\x54\x96\x5a\xf0\x23\x5f\x43\xf8\x48\x35\xce\x0f\xcf\xdc\x15\xf7\x26\x50\x4b\xb4\x79\x0e\xba\x13\xc5\x1b\xaf\xa1\x0b\x74\x07\x67\x8f\xa5\x73\x22\x2b\x51\xa2\x4e\xd2\xf4\xf7\xf0\x84\x5d\xba\x0c\x11\x80\x4e\xf4\xe7\xd7\x28\xdd\xb3\x2b\xeb\xac\xae\x70\x52\x2f\xbc\x8e\x2a\xc6\x68\xde\x13\x7e\xc9\xbf\x4e\x84\xbf\xcb\x7d\xaf\x41\x99\xd4\x3f\xcd\xfc\x61\x47\x0c\xec\x9e\x58\xe8\x0d\x2e\x07\x53\xe5\x02\x11\xb5\x16\x73\xdb\x6c\xf5\x50\xf2\x30\xc3\x56\x12\x2e\xe9\x15\x37\x25\xe1\xbb\x21\x88\x5d\x01\xde\xf3\x8f\xd0\x98\x1b\xe9\x43\x48\x75\x88\x53\x69\x2c\x82\x43\x23\x1f\x85\xeb\xf7\xa7\x1f\x82\x45\x1a\x51\x48\xdf\xb2\x56\x5b\x3b\x32\xcb\xe2\x82\x29\xe5\xd4\xfe\x5c\xc7\xae\x74\xc3\x62\xa8\xfa\x7d\x46\x56\x47\xa4\xd9\xdc\xe1\x56\x78\x12\xc1\x99\x6d\xe2\x1b\x89\x6c\xb2\x34\x8b\x48\xbf\xf6\x1f\x95\x5a\x3e\x92\x02\xdd\x67\x27\x20\x29\x38\xc1\x2d\x4b\xf1\x1f\xb2\xbf\xb7\x95\xbc\x55\x04\xfc\x2f\xf4\x06\xd7\x3a\x49\x34\xb5\x78\xd8\x05\x8c\x5e\x89\xa0\x35\x4a\x7f\x5f\x8d\xb1\xff\xb0\x10\xd6\x93\xcb\x9a\xb6\x61\x4a\xd0\x96\xea\x9c\x5f\x7a\x28\x7d\xf4\xab\x75\x62\x7b\x82\xb9\x66\x9d\x59\x2c\x65\xee\x18\x1c\x3d\x26\x5f\xb6\x45\xed\x42\x77\xbc\x20\xbe\x29\x6e\x5c\x36\x72\x6c\x33\x7d\xf3\x19\x60\x7d\x5e\x65\xfa\xc2\x30\xf1\xa8\x2f\x7b\x28\x61\x16\x50\xb7\x45\xf2\x34\x33\x71\x84\x8e\xdc\x8a\x48\xaf\x85\xde\xe0\x5f\x9e\xd1\xba\x5c\xbf\xe8\x59\x31\xd6\xa9\xa9\x8d\x83\xb9\xa0\x15\x1e\x8f\xf8\x9f\x7b\x3e\x1d\xc1\x7c\xb3\x60\xfa\x26\x74\x36\xef\x9b\x3f\x20\xca\xb0\x16\xb3\xd2\x1f\x7d\x3a\x89\x71\x75\x56\xa2\x72\xc0\x7c\x06\xea\x30\x5a\x02\x3d\xe0\xfc\xc4\xb7\x91\x24\x2d\x09\x0f\x73\x30\xa1\xa4\xc3\xb5\x81\x2a\x0a\x9b\xaa\x1f\xcc\x1c\xa1\x5a\xb4\xba\x4d\x31\x6f\xe3\xa2\x13\xba\x9b\xae\x10\xcd\x78\xd2\x95\x19\xa7\x78\x16\x57\xba\x8c\x44\x98\xb9\xdc\xf0\x03\xe9\x73\xd5\xe7\xbb\x1e\xb4\xb9\x7f\x4e\x78\x47\x86\xf4\x3a\xc8\xdd\x3a\x22\x8e\x28\x0d\x92\x20\x34\x83\xbf\x9c\xd5\x9c\xfc\x78\xa9\x4c\x3c\x93\x0a\x89\xae\x08\x7e\x57\xd4\xc7\x58\x15\xa2\xa0\x8b\xc1\xe0\x37\x92\x8a\xa2\x5c\xaa\x5f\x4e\x2a\xf5\xcb\x8b\xb5\x42\x6f\xc0\xee\xd5\xd8\x52\xc4\x92\x5c\x0a\xf5\x64\xd7\x68\xe3\x4d\x41\x99\x07\xae\xd0\x31\xca\x97\x9e\x93\xfe\x66\x26\x77\xa3\x9c\xf8\x6f\x9d\xc9\x04\xb1\x84\x81\x69\xfb\x96\xa3\xf1\x76\xd1\xf5\x65\xff\x90\x3b\xaf\xbd\x43\x7b\x46\xe1\xbb\x53\x32\xc5\xcf\x9f\xd6\x35\x3c\xb9\xa0\x29\x0d\xcf\x6f\x6c\x4f\x87\x84\xb9\x5d\x90\x40\x9a\xab\x75\x6a\x38\xad\xa9\xb9\x47\x7e\xd0\xb3\x9a\x33\x06\xf7\x85\x52\x65\x94\x1a\x9b\x3d\xda\xee\x05\xf9\x6b\xa9\x5d\x6f\xf0\xfd\xf1\x03\x2b\x9f\xab\xaa\x65\xf2\x19\x64\xbf\x45\x98\x8c\x88\xf7\xee\x49\x26\x98\xb5\x66\xa1\x37\xf8\xd7\x2b\xda\xd0\x82\xdf\x03\x07\xf5\xfe\xec\xaf\xdf\x4d\x9f\x4f\x8b\xdb\x15\x65\xd4\xd5\xdb\x9f\xfb\x9f\xb7\xdb\x55\xbe\xb6\x69\x53\xb2\xae\x8a\x45\xb5\xa3\x3c\xaa\x81\x1c\x1b\x94\x56\x2d\xf8\x52\xc1\xfd\x53\xc1\xfd\xec\x2a\xe2\x30\x4f\xa3\xea\xcf\x3e\x78\x21\x02\xd1\x72\x8b\x55\x64\x9f\x95\xfd\x87\x11\xa3\x5b\x7e\x1e\xb5\x23\x4e\x75\xee\xdf\x1f\x49\x8a\xdf\xf5\x3e\xb1\x58\x19\xfa\xae\xcc\x25\x5d\x8a\xde\x62\x87\x0d\x26\x38\xc8\x1f\x55\xca\xd5\x16\x61\x30\x2a\x5d\xfc\xb6\x5e\x96\x82\x0a\xa7\x04\x44\xfd\xe5\xec\xf0\xb8\xcf\xf1\x89\xd2\x59\xcc\x1d\x44\x48\x30\xc9\x43\x03\x1c\x3e\x12\x9d\x8e\xc8\xa4\xed\x01\x22\x98\x52\xd9\x4a\x66\x76\x8f\x81\xd0\x60\x08\x62\xcb\x5e\x7c\x99\x52\xb5\x58\x44\xad\x56\x78\x50\xb6\x7f\x71\x1b\xca\x83\x76\xe4\x7b\xff\x7f\xd6\x68\x43\x08\xe8\x90\x95\xe5\xcc\x9e\x65\x9a\x2a\x2e\x97\x26\x12\x10\x59\x6e\x5c\x58\xc0\xea\xa1\xcb\x97\xaf\x98\x96\xfe\xa5\x2d\xc0\x70\xbb\x2d\x31\xd7\x99\x3d\x4f\xee\x87\x9f\xd6\x90\xc0\xb2\xd2\x85\xe4\x39\xe3\x91\x51\x69\xe0\xe2\x7a\x5f\xc9\x2e\x04\x3f\xc9\xb6\x28\x4b\x1a\xd4\x91\x0e\x77\x70\xe4\xaf\x3f\x7a\x61\xf4\xb9\x64\xe8\x52\x55\x46\x7e\x65\x9c\x17\x9c\x4a\x2b\xc2\xe6\xf6\xee\xe1\xa8\x66\xe9\x03\xdc\x4a\x6e\xcc\x41\x9d\xa7\x69\x31\xa3\xa9\xd4\xe0\x7f\x71\x38\x11\x0d\xf0\x91\x68\x4e\xf6\xfe\x64\xbe\xda\x53\x28\x87\xdf\x67\xfe\x41\xac\xec\x6a\x19\xf1\x4c\x6c\xeb\xc1\xf4\x1e\x32\xf2\x5a\x02\x04\x7a\x14\x6d\x66\x3d\x83\x3d\x4c\xcb\x65\x66\x00\xd5\x6a\x0c\x6a\x60\xca\xb4\xd8\x89\x13\x61\xee\xbe\x85\x9a\x7e\x38\x17\x55\xd7\xe4\x4e\xa4\xe7\xf8\x91\x95\x1d\x03\x8d\xdb\x60\xbc\xb2\xe3\xc0\x85\x38\xd7\xb8\xaa\x54\xc8\xbc\xb0\x23\x9d\xd0\x6d\xe9\x34\x41\x4c\x22\x8d\xd5\x53\x78\x87\x0c\x7d\x18\x9d\xf1\xa6\x0d\xca\xd6\xc1\x4b\xa7\x2e\xd5\x9a\x94\x52\x2c\x58\x9b\x78\x84\x5e\xb1\xa1\x2d\x5d\x92\x48\xd1\xda\x83\x1a\x73\x29\xec\x6b\x23\x6b\xf5\xcc\x3b\x9a\x5e\x45\xd1\x67\x96\x07\x01\xf4\xf5\xb1\xa8\x2d\xb1\x3d\xe6\x09\xdf\x8d\xa9\x72\xbf\x59\xf8\x41\x74\x3b\x4a\x54\xb8\x1e\x01\x8f\x0a\xbd\x9e\xbc\xf4\x75\xcd\xd8\x93\x30\xcb\x17\xaa\xff\xcc\xcc\xdb\x3b\x2c\xaa\x56\x6b\x04\x68\x0e\xc1\xc1\x09\x1a\xe1\x62\x36\xb8\x45\xfc\x0e\xac\xa5\xe3\x25\xbe\xd4\x59\x05\x9f\xbc\x9c\xaf\xe5\x74\x29\x03\xe7\xaa\x1a\x2e\xf3\x8e\x85\x74\xb9\x99\x61\xca\xa2\x7a\xfd\x15\xba\xe3\x68\xc5\x17\xb1\xb2\xc8\x5f\xce\x1f\x89\x79\x51\xd8\x1f\xed\x35\x5d\xcd\x85\xda\x09\x51\x35\xd3\x13\x9f\xef\x26\x49\xc6\xc6\xc1\xaa\x29\x43\xd5\xc3\x32\x2c\x4a\xe4\x80\x32\x6f\xbe\x35\x3c\x85\x79\x55\x96\x54\x0a\x38\x55\xe3\x11\x14\x7a\x4b\x1e\x33\x31\x24\x32\x4e\x80\xd1\xe9\xe2\x9b\xf4\xce\x97\x30\x51\x23\xb0\xc4\xca\x9c\x39\x67\x44\xea\x3c\x3a\x5c\x78\xe1\x89\x58\xf0\x5a\x52\x38\x51\x21\x64\xbd\x9e\xbd\x6e\x70\xba\x9f\xf3\x88\x43\x0b\x82\x1a\x5c\x84\x11\x06\x66\x3f\xf3\xdb\x93\xc3\x59\xe4\x9e\x07\xf3\xe0\x1c\x5b\x00\xf1\xbe\xa7\xbb\x67\xfa\x5c\xc9\xd5\xce\x2f\xb8\x2d\xf2\x89\xb5\x4b\x6e\x01\x46\x5f\xd5\x6e\x14\x94\xc1\x5b\x3f\x6b\x2f\xd1\x5a\xd8\x66\xf2\x28\x7b\x97\x69\x9c\x48\x4a\x40\xe1\x2b\x73\xd1\x59\xa4\x18\x0d\x1b\x9e\x42\x6f\xf0\x42\x97\xbe\xb3\x23\x75\x6a\x29\xa5\x33\x6f\xd2\x50\x15\x18\x7d\x5b\x79\x31\x65\xcf\x1b\x9c\xfe\x07\xb3\x66\x4e\x9f\xd5\x3d\x4b\xd1\xa5\x9b\xaf\x43\x9e\x5d\xce\xbd\x06\xf3\xcc\xf8\x7c\xf7\xf6\xe7\x4e\xbf\x13\xf3\x23\xfa\x48\x31\xba\x12\x37\xdc\x0f\x47\xd9\xf6\x3d\xc1\x94\xbc\x56\xf6\x56\x2d\x5d\xc4\x0f\x54\x0e\xc5\x66\xdf\x09\x17\x76\xd5\xd5\x6b\xae\x5b\xb6\xec\x6a\xd5\x18\x9c\x78\x2b\x3d\x35\x10\x9e\x35\x10\x6b\x68\xfc\xeb\xc9\x3a\x30\xd1\xe2\x90\x81\x68\xda\x14\x4d\xf6\xd7\x2e\x4d\x93\x9a\xee\xcb\x56\xab\xdd\xaa\xc9\x0c\x52\x89\x44\x82\x32\xed\x8b\xe3\x43\x3b\xa5\x88\xed\x71\xee\xdc\x00\x5b\xc0\x95\xdc\xb2\x58\xeb\x14\x2b\x5f\xd6\x06\x53\xa2\x33\xad\xd8\x7c\xdb\xc1\xa9\xe9\x7c\x18\x26\x79\xc0\x85\xb5\xca\x59\x06\x7f\x7b\x24\x39\xaf\xbe\x23\xb8\x92\x0d\x0d\x16\xbe\x8e\x79\xb4\x52\x73\x15\x2e\xc6\xfd\x68\xb7\xe9\x52\x9b\x49\xc1\xfd\x3f\x9a\x50\x3b\x2c\xc6\xb7\x36\xf7\xe6\xa0\x4b\x5a\x92\x92\x6b\x46\xb2\xd9\xe1\xfb\x5b\x71\xd7\xf0\x84\x6e\x19\xff\xe9\x43\xf7\xa6\xbf\x61\x24\xfc\x1e\x7e\x05\xf9\x0e\xbf\x78\x87\x92\xb3\x27\xbe\xe5\xba\x29\xe3\x8c\x60\x84\xe6\x89\xee\xd5\xc2\x2a\x59\xd6\x63\xdf\xd0\x18\x74\xf2\x1e\x2a\xe5\xd5\x4d\x6d\x1a\xf4\x48\x6a\x86\xa8\xee\xb9\xb2\xf2\x1f\xd2\x85\x37\xdd\x58\xe4\x96\x45\xcc\x81\x2c\x17\x33\xbc\x4f\xdf\x91\x27\x62\x21\xcf\x1f\xd1\xee\x17\x8f\xca\x18\xeb\xcc\xc5\xa8\x50\x27\x76\x89\xdb\x98\x80\x9a\x5f\xfe\x54\x32\x8a\x9e\x35\x23\xa6\xd0\xaa\xf3\xfb\xf5\x43\x70\xc8\xae\x11\xd8\xdd\x31\xf3\x83\x93\xc8\xab\x9e\xd4\x88\xac\xca\xf2\xcd\xa7\x06\x34\x43\xb1\x63\xab\xf2\x60\xdc\x44\x6c\xd1\xe4\x10\xb5\x54\xca\xaf\x53\x44\xf3\x2a\x93\x67\x33\x2c\x73\x3e\xd0\xc2\x6f\xe6\x4e\xb4\x6e\xfd\x87\xf9\xd8\x2d\xba\xd9\xa0\xb2\x87\x92\x5c\xe4\xad\x08\x1f\xa9\x17\x39\xc1\x1d\xab\x93\x60\xc9\x23\x2d\xcb\x39\x4f\xe2\x85\x8c\xab\x84\xba\x61\x58\xfb\x87\xa7\xc6\x69\x2d\x4b\x99\x6c\x4c\x3b\xf8\x66\x5e\x7e\xe3\xc2\x58\xf7\xa8\x13\x3d\xd8\xea\x53\xd3\x06\x3c\x6d\xbe\xa0\x03\x01\xf8\xf2\x97\x1f\xd1\x7b\x6f\x51\x26\x06\x55\x05\xe1\xd4\xf7\x34\xdc\xbd\x43\x65\x11\x15\x9e\x5d\x48\x8c\xfb\xef\x4f\xb9\x8a\xc2\x4c\x7e\xea\x10\x45\x4f\x62\x36\x2d\x12\xa3\x0a\x4f\xe9\xc6\x47\x74\xce\x0c\x31\x12\x42\x41\xc7\x7b\x5a\x20\x90\xb3\x0e\x98\xae\xcb\xba\xf9\xea\xb6\x38\xc4\x38\x0c\xd7\x7d\x83\x6f\xd1\xd7\x93\xe1\x3b\x8e\xbc\x72\x9e\xbd\x22\x11\xbb\x62\xf2\x23\x5f\x1f\xc4\x6f\xab\x4c\x5a\x14\xee\xb2\x17\x64\xc7\x69\xdd\xa4\xc5\x88\x36\xba\xbc\x6f\xa5\xde\xbb\xd6\x54\xdf\x96\x19\xf6\x24\xb2\xae\x88\x77\x04\xea\x24\x4e\x33\x75\x47\x0c\x87\xd9\x14\xa4\x7c\x82\x3f\xaf\xb9\x04\x01\xfa\x2d\xd6\x5a\x2d\xdb\xc3\x20\x41\x84\x0f\x8e\x7a\x54\xc9\x68\x0c\x56\xb2\x37\xbe\x1d\xfe\x17\xe0\x72\xf5\xf6\x67\x87\x20\xdf\xe4\xb2\xa0\x54\x82\xb9\x32\xaf\x2d\x1d\xa9\xa5\x4b\xb5\xd0\xcc\xfe\xcb\x6d\xc8\xb3\xd2\xa2\x0d\xe6\xc9\xe9\xd5\xa7\x06\x21\xbe\x06\xad\x71\x68\xec\x3e\xfe\x88\xce\x10\x03\xd9\x34\x99\x76\xbf\x63\x6a\x6a\x1c\xbc\xc6\x6c\xdc\xfb\xf6\x67\x7f\xd0\xa6\xd6\xdd\x0e\x17\xa4\x24\x07\xa2\xb9\x13\xd3\xd3\x77\x6f\xc6\xbc\x39\x33\x15\x0f\xe3\x89\xdb\xd2\xcf\xad\x50\xe4\xbe\x1d\x7b\x57\x7e\x1a\xf1\xad\x2c\x1e\xc6\x1a\x89\x07\x0c\x7f\xe6\xd2\x53\xfa\x08\xa8\x44\x85\xcd\xdc\x08\x12\x93\xbf\x78\x7f\x32\x85\x45\xda\xb8\xfd\x99\xff\x19\x73\x21\x1a\x09\xdb\x86\x69\x82\x77\x50\xd7\x8b\x1a\x84\xd1\xad\x53\x8f\xd8\xd2\x73\x2a\x69\x1d\x7e\x33\x3e\xb9\xf3\x25\x6a\x49\x1b\x8c\xc3\xd3\xb1\x23\x1c\x17\x35\xa9\x3c\x96\xfb\xee\x3d\x49\x6e\xb2\x58\x99\x4a\x49\x85\xf0\x37\x6d\x5e\xa9\xc9\x58\x91\x3a\x35\x71\xa9\x9f\xcd\x3c\x9e\x9c\x18\xc1\xea\x03\x40\xf5\xbf\xb8\x32\xa9\x98\x2a\x0c\x48\x46\x7f\xbf\x65\x18\x5e\x03\xd6\x6a\xe1\x1f\xde\x65\x69\x5c\x49\x8b\x96\x2a\x91\x6f\x40\x7f\x36\x37\x28\xbe\x33\x8e\xd0\xb1\x3c\xc1\xfb\xdf\x4c\x00\xc9\x33\xba\x66\x82\x16\x43\x94\xff\x4e\xa2\xb5\x57\x83\x73\xa5\xb7\x56\xdf\x05\xb8\x1c\xd7\xaf\x85\x67\xff\x5b\x8b\xd3\xef\x29\xf2\x53\x88\x5c\x02\x7f\xbf\x34\x69\xd1\xab\xcd\x92\x1c\x12\xdc\xb0\x15\xca\xdc\x3a\x31\x7c\x3f\xfc\x12\xd9\x4b\x4e\xc5\xcd\xe6\x40\x8a\xad\x97\x2e\x06\x0a\xf3\x47\x68\xcd\xb1\x91\x8d\x5e\x7f\xe6\xe1\x27\x92\xb1\xab\x03\xaf\xe5\x87\xdb\xf4\xd5\xaf\xcb\xc2\x12\x2e\xa2\x9b\xe6\xaf\xbc\x2f\x7d\x26\xfb\x68\x83\x5a\x4a\x0e\x27\xf8\xd6\x0b\xe9\x00\x31\x2f\x92\x64\xef\xcf\x8c\x6b\x4f\xa1\xb7\x63\x62\x4f\xf8\x35\x4b\x93\x90\xd3\x19\x17\x4d\x62\x98\xb4\x5e\xe8\x0d\x76\x1d\x85\x79\xfb\xb5\x64\x23\xe3\x6e\x8d\xd8\x0e\x71\x23\xbd\xe1\xcc\xe4\x95\x9a\x1a\x94\x43\x23\x15\x2b\x39\x06\xfd\xc9\x94\xf6\x14\x0d\x9b\x49\x80\x89\x6c\x88\x3e\xf1\x9a\x5a\x3a\x73\x8b\xc9\x67\xfa\xd7\x37\x80\xd5\x3f\xa7\xd0\x1d\xfe\xdf\x0b\x96\xe8\xa6\x77\xa2\xa8\x52\xc3\xe6\x9d\xea\xe9\x33\x25\x61\x9a\xdd\xa4\x01\xba\x66\x77\xcf\x56\xaa\xc9\x6a\xc6\xfe\xc8\x69\x04\x68\xa1\xa2\x24\x17\x45\xb9\x91\x0b\xd2\x1f\xbf\x4e\x8c\xa8\xbe\x03\x1d\x20\x13\x19\x49\x11\xdb\xe0\xa2\x45\xc5\x3c\xfb\x74\x17\x12\x7e\x6f\x59\xb7\xe7\x4e\x95\x54\xd1\x2a\x58\x64\xcd\xba\x6a\x45\x7f\x7e\xc8\x4e\xe8\x3a\x66\xcc\x9b\x3d\xb7\xd0\x33\x27\xfc\x30\x0f\x69\xde\xeb\x1e\xf1\x2b\xa6\x5a\x3b\xe4\x47\xab\x15\xbd\x52\x58\x0a\xd6\x9d\xd0\xa6\x08\xb6\x2d\x83\x40\xea\x6e\x5c\xaa\x2d\x24\xc0\x5a\x32\x62\xba\xf7\xe7\xaf\x78\x3e\x89\x0a\x65\x1e\x2b\x7b\x1f\x5d\x96\x84\x1f\x8f\xd7\xb8\x10\xbc\x11\x7e\xc0\x25\xbb\x06\xa0\x86\x49\xa0\x09\xb1\xe2\xbe\xe7\xc1\xdd\x43\x55\x4b\x58\x63\xca\xba\x7f\x3e\x9a\x2c\x94\x99\x15\x59\xdd\x66\xbf\x29\xc6\xa0\xa7\x6b\x54\x5b\x9e\x5d\xee\x80\x56\x11\x51\x5a\x53\xc0\xd7\x1d\x83\xe2\x31\xad\x45\x90\x21\x41\xee\x9b\x27\xd3\x91\xab\x8f\x34\xd3\x4e\xd2\x99\x2f\xe7\xd3\xe1\xa6\x42\x6d\x35\x1e\x96\x02\x59\xdf\x7c\x4c\x57\x3c\xa9\x15\xc1\xb4\x41\x16\x48\xc3\x4f\xc2\x29\x5d\xb4\x6c\x65\xf8\x75\xdf\xd5\x6e\x62\x89\x1a\xa4\x14\x9b\xc6\x8c\x3f\xa5\x6f\x6f\x25\x49\x41\xc0\xed\xc8\x5f\xfc\x06\x62\xbf\x87\x6f\x3b\x12\xd1\xad\x96\x22\x40\x06\x28\x35\x66\x6f\xcf\x6a\xdc\x1d\x8b\x51\x9b\x78\x11\x52\x39\xfb\xf7\x47\x93\x59\xb9\x45\xed\xa4\x1e\xca\xdf\xad\xcd\xdc\x4a\x94\x58\x4a\xbf\x2f\xfb\xa5\xa3\x09\x0f\x0e\xc0\xad\xb4\xa5\x4a\xcb\x7e\xa5\x3c\x5e\x4b\x63\x15\x66\xd9\x4d\x28\x71\xa3\xd2\x6f\xd8\xb1\x24\x91\xcc\x98\xa9\xda\x6b\xa9\x59\xf3\x16\xd2\xb7\x27\xcc\xfd\xff\xe9\xfa\xfa\x38\x29\x8a\x33\x7f\xe6\x45\x42\x10\x91\x97\x75\x45\x24\x48\x10\x11\x81\x59\x77\x97\x65\x79\x91\x20\x22\x41\x44\x64\x09\x12\x34\x84\x70\xd6\x74\xd7\x4c\xd7\x4e\x77\xd7\x58\xdd\x3d\xb3\xb3\xfa\x33\x88\x1e\x31\x04\x8d\xc7\x79\xc4\x18\xcf\x18\xc2\x79\x68\x88\x31\x86\x78\xca\x79\x1c\x31\x86\x10\xe5\x8c\xf1\x8c\xf1\x08\x31\x4a\x8c\x47\xd4\x23\xc4\x18\x34\x86\xed\xfc\x3e\x5d\x55\xdd\xf5\x74\xcd\xe6\x8f\xf8\xf9\x64\x97\x9d\xe9\x97\xaa\xa7\x9e\x97\xef\x8b\x8d\x39\x34\x72\xf4\xe4\x91\x71\xa1\x14\xe5\x5a\x7c\x54\x0e\x4c\xdf\xea\x16\xb1\xb1\xcc\x5b\x36\xac\xd3\x2d\x98\x84\xea\x7d\xb4\x4d\x79\x75\x9c\xfb\x5e\x9f\x36\xf4\xe7\xa0\x48\x35\x3a\xfa\xc4\x88\x8b\xb4\x8d\x55\x23\x9e\x4f\x8d\xca\xa0\xe4\xff\x69\x93\xa6\xd6\xf5\xa9\x07\x71\x07\xb5\x84\x77\x9f\x05\xa7\x19\xe1\x90\xd5\x90\x4e\x05\x2d\x30\x1b\x49\xce\x62\xe6\x5f\xb4\xbb\x30\x1a\x55\x16\x78\x00\xb9\x92\xbb\x6e\xcf\x24\xed\x7b\xcd\x86\x6f\x69\xb8\xec\xaf\x0c\x05\x1e\xad\xc8\xf5\x91\x27\xbc\xdb\x7a\xa7\x81\x66\x09\xb5\x89\x5f\x0c\x78\x85\x92\x3b\x09\x9d\xa9\xdd\xa0\xcc\x7b\x7d\xf9\x0b\xd6\x27\xbb\x87\xf4\x42\xf1\x8f\x27\x27\xb4\x02\x40\xa4\x57\x66\x81\xeb\xdb\xe2\x0e\x2a\xeb\x92\x16\xe7\x1c\x6e\x5c\x9a\x5f\x20\xbb\x42\x65\x4a\xcd\x62\x83\x0f\x7b\x33\xa7\xbf\x9c\x06\xaa\x1b\x48\x54\x9a\x99\xa1\x0b\x63\x47\x6e\x8f\x70\xd8\x53\xf6\x34\x8d\x1c\x25\xf4\xe3\x50\x6c\x4f\x99\xf9\xc9\x76\xf5\x24\xb1\x67\x48\xeb\xc6\x95\xc0\x23\x16\x3b\x3c\xab\xce\x2f\x9d\x22\x39\x23\xd4\x20\x71\xca\x9b\x7e\x53\xaf\x6a\x9a\x06\x3c\x2d\xc4\x38\x9e\xdc\xfe\xe0\xe0\x60\x20\xb9\xb8\xd6\xcc\xdd\xb1\x44\x7a\x52\x04\x1c\xeb\x92\x5f\xb3\x51\xd4\x18\xcb\x19\x98\xe5\xe4\x4e\xeb\x54\x4b\x9d\xd6\x62\xcc\x54\x6e\x5d\x97\x4e\xc5\x11\xf8\x0d\x1e\x4d\xfe\x65\x1b\x80\xdf\xf5\x63\xbf\x88\xcb\xb4\x26\x66\xf4\x6d\x3b\x92\xec\xd0\x42\x8e\xea\x4a\xec\x5a\x3a\x3a\xc9\xab\x0b\xa8\x2c\x2d\x7f\xdd\xb7\x92\x52\xa3\xab\xb3\xbd\xd0\x13\xd6\x3e\x38\x5f\x2b\xc6\x8a\x48\xf1\x1c\x55\xdb\x75\xc8\x71\xf5\x3c\x4b\xc4\x76\xa2\x8c\x77\xae\x56\x97\x11\x5b\x70\xb3\x79\x67\xf5\x66\x53\x8f\x69\x5c\x8f\x44\xf6\x98\x33\x77\xcc\x57\x4a\x27\x38\xe9\xd1\x2c\x5d\xac\xe7\xec\xd8\xa8\x48\x28\xfb\x93\x4f\xa8\xd8\x45\x08\x24\x8a\xae\x30\xd3\xbd\x24\xdb\x37\xdb\x9a\xb9\xfb\xd9\x3e\x3f\xbd\xe6\xba\x65\xe2\x76\xf0\x88\x2a\x1f\x90\x8d\x99\x94\x39\x59\x30\xc8\x54\x53\xd0\x25\x0e\x1d\x05\x55\x76\x94\x71\x55\xb0\x30\x44\xcd\x9f\x33\x46\x3b\x89\xaa\xc4\xc4\x4c\x00\x78\x1e\xdc\x3b\x3a\xde\x2f\x0e\x8a\xb7\x4b\x36\x7f\x9b\x2e\x0b\x88\x9c\x74\x0a\x9d\xa9\x8e\x03\x3a\xbd\xc8\xe6\x53\xb5\x17\x27\xeb\xe3\x33\x99\x91\x70\x88\xe5\xb5\x8b\x5a\x94\x76\xac\x03\xe2\xc2\xef\x7c\x48\xc5\x2c\x72\xe7\xe4\xe7\x6e\xd3\x49\xfb\xc2\x5b\x55\x88\xb8\xa9\xda\x03\x13\x08\xb8\x1d\xb2\x3a\x9d\x49\xa9\xfe\xb8\x6c\xba\x9f\xfb\x48\xfa\xa5\x54\x69\x55\x96\xe5\x85\x22\x8a\x11\xad\x03\xb9\xef\x3d\x00\x84\xff\x89\x87\x04\x72\xff\x9b\x9b\x5b\x53\xf8\x0c\x08\xf5\x9f\x78\xa6\x7c\x8c\xc8\x6e\x78\x84\x57\x48\x57\xef\xd1\x73\x40\x2c\x95\xc7\xb2\xcb\x7b\xd5\xc3\x73\xb1\x18\x3e\x66\xe6\xf5\x8a\xf1\xf7\x67\x28\xab\x00\x4d\x98\x81\xfc\xc2\x85\x67\xc5\x3c\xa2\x55\xab\x57\x4d\x01\xf7\xfb\xc3\x57\xa1\xd5\x4e\x6f\xc0\x44\xce\xf2\x29\xb0\x28\x2f\x82\x43\x96\xfc\x94\xad\x2d\xa0\xe0\x28\x74\xcc\x8e\x15\x3e\xdf\xdb\x0e\xb5\x5e\x39\xd1\x9b\xe7\xa6\x23\x97\xa5\xdb\x88\xd3\x7c\x86\x5c\x8f\x4b\x85\x5c\x34\xa3\x19\xa0\xfe\xfe\xc6\x8f\x69\xfb\xab\x86\xb8\x1d\x93\x5b\x8e\xdd\x6f\x1f\x1d\x19\xe7\xb1\x9e\xd0\x3d\xc8\xfd\xdb\xb6\x31\x71\x4d\xe5\x9a\x0e\x95\xcd\xa1\x4c\xcf\x48\x15\xe7\x6d\xa5\xb5\x16\xfe\x0c\xf8\xb8\xd7\xa9\x23\x45\xa9\xb6\x09\x3b\xb0\xc2\x4a\xa1\xee\xd0\xb4\xcf\x76\x69\x75\x1a\x77\x2f\xa5\x81\xc0\x8b\x85\xff\xfa\xa1\x18\x70\xa0\x12\x72\x91\xd7\xc0\x40\xc1\x6d\x87\xb4\x7b\x30\xb1\x9c\x78\x64\x3e\x3b\x2a\x3d\x54\x72\x10\x63\x84\xfa\xbe\x48\x4e\xd3\x0f\x64\x6a\x2d\xad\xe1\xc1\x71\x68\xcd\x0e\x74\xe1\x3d\xf7\x02\x9b\x11\x1b\x57\x2d\x24\x5d\x22\xbe\x70\xfd\xe9\x32\x31\xe2\x7d\xb6\x7d\xa1\x6e\x6e\x5c\x49\x06\x27\x2f\x0f\x13\x37\xb1\x2c\x70\x3d\xc2\x9b\x47\x2a\x1a\xbd\x30\x5e\xf4\x4a\xaf\x46\xbe\x6f\xe1\x3a\xec\x88\xed\xd7\x80\xd1\xdc\x65\x09\xc7\x20\xc0\xf7\x80\x55\x79\x19\x13\x83\x9f\x7e\xcf\xef\x10\x2f\x71\x4d\x42\xf2\xce\xfc\xef\x36\x10\xaf\x8a\x81\x27\xf4\x8f\x3f\x5f\x93\x36\xea\x49\x32\x91\xdf\x30\x5e\x2b\x98\x31\x33\xb8\xf5\x15\x0f\x63\xf9\xf6\x55\x13\x41\x0a\x42\x5c\x62\x34\x89\x1b\x4c\x17\xf6\x3b\x85\xc5\x81\x6f\x43\x23\xc3\xec\xdd\x87\x54\xb1\x5b\xa3\xf5\xe8\x79\xfd\xf6\x44\x12\x2a\xcc\x14\xa6\xe4\xb3\x4c\x13\x6c\xc5\x36\x4f\x49\xf9\x62\xba\x79\x7c\x32\x66\x10\x8e\x33\xbc\xe2\x98\xbd\x32\x1d\x3c\xea\xc4\xc5\x51\x79\x1b\x1d\xdc\x8a\xb0\x9d\xbb\xc3\x87\x12\x90\xc4\x95\xd8\xd8\xdc\x85\xc0\x79\xc2\xa7\xcc\xb0\xf8\x64\x48\xfe\xf2\xca\xe1\x72\x1a\x57\xc3\x8c\x05\x32\x6b\x39\xb1\x3d\xb1\x28\x8f\xf2\x78\x94\xd4\x38\xbd\x40\xc7\x80\x38\x26\x12\x20\x84\x6f\x68\x0a\x35\x42\x30\x3e\xae\x6d\xc6\x83\x42\x06\x3b\x45\xc4\x84\xd6\xd9\x2d\x8a\x6b\x5c\xe5\x9e\x75\xd9\xb2\xa6\xe7\x4b\x99\x50\xbf\x8c\x7b\xd7\x1b\x21\x1f\xba\x6c\x89\x17\x7d\xea\x2d\x10\x3f\x90\xeb\x4b\x0f\x9f\xec\x19\xcb\x27\x6a\x55\x9c\x8f\x6c\xe2\x23\x69\x06\x17\x5d\xf6\x5f\xf6\x8e\x83\x33\x36\xae\xfa\x13\x83\x30\xb3\x3f\x1b\x26\xcd\x56\x3a\x66\x76\xce\xe6\xf3\xad\x9b\x7b\x25\x4f\xdb\xa2\xfd\x50\xa5\x2f\x78\x34\x1d\xfb\xeb\xd8\x74\xb1\x67\xa2\x46\x2c\x44\xef\xbd\x90\xcc\xa1\x98\x8f\x3d\xde\x94\xfa\xa9\x36\x87\x42\x65\xe5\x10\x9c\x63\xa3\xd2\x47\xb3\x49\xc5\x94\x20\xdb\x55\x4c\x27\x7f\x0d\x1a\xb8\x65\xcc\x92\x96\xec\xaf\x97\xaa\x67\xca\xe9\xa1\x67\x8c\x03\x7a\x12\xc2\x15\xc7\x40\xdc\x3b\x24\x77\xee\x56\x48\x31\x65\xfc\x28\x3f\x63\xad\x2e\x62\xe5\x63\x4e\xee\x16\x27\xfd\x1b\x1b\x93\x2c\x05\x39\x72\x5c\x12\x3e\x25\x25\x37\x3e\x6d\x33\xc2\x21\x66\x71\x75\x73\xcd\x1e\xf5\xbe\x18\x76\x90\x10\x66\x5a\xdc\xab\x59\x22\x54\xa3\x0c\x96\x91\xa4\xdb\xc8\xf3\x00\x04\x5a\x50\x06\x1f\x43\x47\x7f\xfb\xf5\x55\xa2\xc0\x9b\x23\x0f\x8f\xdc\xa9\x63\xe9\xec\x3f\xe1\xe0\x71\xb8\xae\xf8\xac\x7c\x7d\x6f\xfa\x38\x2c\x11\x37\x16\x59\x7b\x75\xa9\x96\xb3\x61\x5b\x10\x19\xf9\x6b\xf8\xe7\x8d\x9a\x57\xc0\xac\x58\x1a\xe1\x8a\x3b\xd3\x1d\xe7\x3a\x65\xb6\x39\x23\x0d\x2b\xb8\x6d\xf9\x64\x2d\xa7\xf7\x3c\xec\xfb\xb8\x50\xb5\x51\x23\xc1\xf6\x64\xd0\xfd\xc9\x2b\xa3\x3c\x4f\xce\x5e\x33\x4e\xf3\x97\x24\x7c\xdd\x36\xe2\x67\xf3\xa7\x37\xb4\x95\x8d\x5d\xce\xc5\x01\x0e\x87\x17\x6d\x03\x89\x0d\x16\x83\xb3\x96\x11\x69\xad\x31\x2e\x5c\xc9\xfb\x1a\xfa\x59\xfa\x5f\x1a\xce\xab\x63\x56\xdb\x1c\xe9\x63\xf7\xf7\xd7\x8d\x85\x5b\x46\xa4\xd3\x3d\xe1\x73\x2d\x9a\xab\x19\xef\xe9\xce\x98\x1f\x5f\x4f\xe1\xa5\xf3\x40\x47\x91\x71\x11\x2c\xfd\x9c\x5c\x33\x5f\x3b\x60\x68\x2d\x19\x42\xff\xaa\x04\x60\xff\xd5\x2a\x12\x93\xc9\x28\x9f\x11\x66\xf8\x85\x6b\xa5\xa5\xa6\x8e\x62\x7c\xc2\x17\xd1\xcd\xa2\xcc\xe3\x83\x8d\x42\x4f\xb8\xe4\x58\x1a\x6b\x70\x89\x18\x3b\x3c\xd7\x97\x7e\xac\x89\x94\x20\x77\xa5\xe1\xb1\xf2\xdb\x9b\x55\xac\x41\x6e\x2f\xb6\x89\x81\x78\xae\x72\xdd\x59\x69\xfc\x2c\xb5\x6b\x22\x9f\x1d\xd6\xae\x4b\x94\x33\x0f\xbb\xf1\xa4\xe3\x67\xd7\x69\x56\x5e\x0e\x61\x2e\xad\xcd\x84\x5d\x82\xf0\x7f\x0e\x68\x63\x96\x3a\x72\x4d\x34\xc3\x4f\x4c\x8f\xab\xcb\x54\x50\xf6\xfc\xc0\x24\xc2\xb5\xe6\xca\x4e\x28\xc3\x8b\x6c\x81\xf5\x1f\xc8\x8d\x7f\x0f\x58\x78\x40\x25\xd9\x33\x9e\x56\xfc\x05\x9b\x36\xc3\x3a\x72\x9b\x5e\x50\xf1\xd2\x27\x6e\x03\x92\x96\xd7\x02\xb1\x90\x0a\xc5\x0c\x24\xc7\xf9\xf1\x6b\x20\x2d\x0e\xf5\x73\x91\xb1\xdc\xd4\xa7\x00\xa9\x20\xb0\x5d\xd2\x07\xfe\xe4\xfa\x35\x5a\x57\x8f\xf8\x76\x4c\x25\xca\xdf\xb2\x7d\xb4\x3c\x9d\x84\xe4\x8b\x38\xde\xcf\x78\x45\xb5\xd6\x2b\x8c\xda\x4d\x2a\x3c\xd9\x6f\x4d\xd4\x00\xee\x04\x07\xf1\xe6\x11\x50\x9f\xf5\x40\xb1\x5e\x50\xcd\xc4\x01\xf7\x9d\x57\x9b\x1c\x90\x6d\xa9\x8a\x9f\x3f\x73\x63\x7a\x39\x5d\x14\x97\x45\xdd\xe9\xbf\xa9\x06\x4a\x2f\xf5\xa3\x07\xd2\x65\x26\xf2\xa7\xfa\x83\xcc\xfb\xb3\x03\x6d\x1a\x51\xc1\xf3\x02\xc9\x99\xec\xd8\xa9\x3b\x16\x54\x5c\x5a\x57\x62\x53\x5b\x1f\x3b\x0f\xac\x0a\xc4\x0c\xda\xec\x7a\xd0\x3a\xea\x1c\xd0\x2b\xf0\x11\x57\x8b\x8a\x6d\xc2\x72\x3f\xb9\x5f\xc5\x6f\x6e\x11\xcf\x0f\xae\x29\x87\x45\x3e\xb7\x8c\x1a\x96\xe7\x13\x07\xa4\x7a\x67\x2e\x53\x4f\xcf\x42\xd5\x2a\x16\xd8\x9e\xa7\xb5\x2e\x9c\x49\xaa\x36\x75\x90\x1f\xb7\xfb\x1a\x37\x8d\xd6\xfa\x41\xfc\xa8\xbb\xf3\x2c\x50\x17\x70\x6c\x8f\xdc\xf3\x17\x1d\x02\xff\x1e\xb9\xb2\x39\x73\xdb\xee\x89\xea\x7e\x85\xc9\x50\x13\xb4\x4e\xa1\x6d\x69\x0d\x9a\xd7\xbc\x3e\x06\x18\xa2\x61\x83\x42\x52\x7d\xfe\xcc\x29\x1f\xd3\x8e\x0f\xe6\xf9\x82\x8d\x25\xbb\xcc\x7e\xca\x91\xd3\x17\x4f\xef\xa9\x43\x52\x91\x94\xab\x4e\x4a\x1c\xd1\x5d\x1b\x5b\x41\xed\xea\x56\xe4\xe4\x3b\xfa\xd5\xf6\x21\x52\x3b\xa9\x11\x25\x67\xd1\x27\xdc\xfe\x22\x78\x9c\xb4\x8a\x6d\xcc\x7f\x9e\x79\xac\xa4\x03\x0e\x91\x1b\x53\x5b\xb2\xbf\x1b\x7f\x26\x14\x89\x20\xd1\x07\x95\x43\xd9\xfb\x08\x58\x94\x1e\xc9\xc7\xf8\x58\x5f\x53\x87\xb0\x8a\x85\x51\x89\x3c\x9a\xde\xed\x9a\xac\x1d\x44\x0c\x95\xb1\xec\x0b\x03\xcd\x88\x45\xb1\x4d\x10\x22\xa2\xf0\xcf\x5e\x7d\xf7\xe8\xb4\x00\x05\x6f\x49\x82\x4b\xb3\x30\x07\x02\x67\x2f\xd8\x0f\xeb\x5d\x13\x8b\xd0\xb5\x79\x93\xd6\x0e\x8b\x89\xab\x8d\x05\x67\x03\xf0\x47\x0d\x4a\x9b\x66\xae\x78\xe2\x4c\x30\x89\xa1\xd1\xca\x3b\x4f\x43\xba\x45\x3f\xe6\xd5\x45\x78\x00\xf4\x6f\x2e\x9c\xc7\x85\x63\xb2\xfe\x0a\x75\xc8\xf4\xc2\x16\xd5\xfe\x47\x35\x09\x48\xb7\x11\xb3\x1a\x9f\x9c\x08\xf9\x91\xb6\x8d\xa3\x13\x66\x20\xab\xf7\x56\x3d\x03\xd9\x55\xa5\x0f\x9e\xdb\xb6\x1f\x7a\xb2\x39\x7c\xc3\x7e\x7f\xdd\x88\xe4\xfa\x2f\x2d\xf4\x84\x77\xec\x97\xe2\x55\x44\xbc\xb1\xb0\x76\x7d\xd2\xac\xea\xe8\xe0\x72\x2d\xa8\xa4\xf3\x9b\x5d\xb3\x14\xd8\x62\xac\xfd\xd5\xdd\x5a\xa2\xc5\xca\x81\xde\xc8\x0a\xfb\x5e\x51\x67\x47\x47\xf7\xcc\xae\xce\xd9\x5c\x57\xeb\x66\x4b\x6d\xb1\xae\xee\x99\xb3\x3b\xb9\x5d\x6b\x03\x48\xcc\xdb\xb4\x5e\x30\xa8\x20\x8a\xfc\xe2\xd5\xf1\xe0\x21\xf8\x96\x8d\x41\xc1\x13\xde\x38\x13\xd0\x92\x2c\x82\x79\x97\xa5\xe3\x26\x0d\xa0\x58\x43\x89\x80\x53\xee\x77\xdb\x44\x46\xc9\x7b\xc8\x25\xa2\x24\xc7\xbf\xae\x36\x70\xda\x5f\x61\xeb\x09\x60\xb9\x6d\x11\x6e\x3f\x92\xcf\x6c\x03\x4d\x5c\x52\x76\x85\xd8\xf6\xa8\xf1\x63\xc1\x59\x1d\x7d\x05\x17\xf1\x79\xdd\x4f\x0a\x2f\x07\xc5\x33\x9d\xfc\xd9\x3e\xb4\x3b\x95\x13\x98\xdc\xc0\x16\x7d\xe4\xe4\xfb\x94\x8a\x31\xe2\xfc\x37\xc7\xa6\x83\x26\xe2\x3f\xde\xf7\x94\x04\x8a\xd1\xa8\xc2\xe0\xbe\x5b\xe1\xd9\x3b\xc7\xc8\xe4\xbb\x44\x1a\xa8\xe0\x37\x38\x8b\x34\xf7\xe7\xc5\xa3\x52\x04\xec\x28\xd8\xdf\x73\xf7\x14\x2d\xcf\xad\x11\x46\x79\x96\xcb\x3b\xb7\x49\xd4\x1f\x37\x53\xdd\x5d\x8d\xd0\xa8\xb2\x14\x3a\x12\x9a\x88\x02\x32\x6b\x98\xf9\x24\x2a\x02\x05\xa4\xe9\xed\x4d\x6a\xf7\xd4\xa5\xf9\xd1\x96\x23\x1a\x2b\x34\x4a\x3c\x7c\x2a\x98\x72\x03\x99\xbf\x6c\x15\xd9\xf8\x85\xb3\xdb\x05\x32\x71\xfc\x9b\xe3\x55\x7b\x4b\x4f\xf0\xc2\x8b\xd6\x9d\x0d\x44\x29\x1a\x2e\x14\x2e\x39\xb4\x62\x4c\xfc\x97\x6a\x04\x11\x9e\xb9\x15\x80\x81\x2d\x6a\x50\x09\x06\xce\x6c\xef\xd7\x3d\x2a\x57\x7d\x72\x20\x33\xe2\x1d\xad\xdb\x48\xcb\xe5\x98\xec\xbf\x69\x83\x26\xb1\xd1\xe6\xb4\x09\x31\xfc\x5f\xed\x92\x0c\x19\x46\xdd\x0a\xf1\x61\xe4\x0f\x5a\xf5\xfe\x44\x45\xe8\x28\xf0\x89\xd7\x88\xe7\xd5\xd6\xf1\x39\x3b\x8a\x47\xb4\x4f\xbd\x32\x09\xac\x2f\x9b\x54\xb0\xdd\xe4\x87\x95\x5b\x7b\x33\xe4\x2e\x1b\x02\x3e\x90\xbb\xbf\x17\x72\x58\x45\x19\xfa\xcd\x67\x27\x82\x95\xcd\x6d\xa9\xf4\x0f\xbb\xf2\x78\xfa\xde\x1a\xd8\x8b\x7b\x1a\xf9\x17\x26\x35\xc3\xcf\xaf\xb8\x66\x15\xec\x65\xe7\x3f\x32\xa6\x79\x28\xda\xd6\x2c\x19\x57\x05\x9b\xbf\x11\x98\x0e\xb1\x51\x94\xc2\x6e\xd1\x04\xdd\x18\x2d\x09\x04\x1e\xe8\xd7\x17\xb7\x8a\x31\xfe\x15\x4a\xd6\x54\x92\x65\x1e\x7d\x13\xe0\xd7\x91\xcf\xd9\xda\x55\x4b\x38\x02\xfd\xf2\xd8\xf8\x54\xfd\xc8\xe7\x6c\x2a\x2a\xcf\x6a\x05\xcf\x9f\x06\x4c\x10\x06\x32\x1d\x2f\x89\xc3\xce\x60\xc4\x21\x2e\xb2\xc5\x81\x74\xda\x4c\xf1\x96\xaf\xf1\x89\x6d\x3b\xd0\xc1\x34\xf7\xa3\xc7\xc5\x36\xbc\xd2\x75\x11\x74\x9c\x05\xf6\x9e\xe0\x34\x08\x57\xb4\x8a\xb6\xd8\x6a\xec\xf0\x8e\x14\x99\x2a\xf1\x9c\xb8\x0a\xf1\x46\x1b\x0f\xea\xa2\x4f\xa8\x98\x30\xa4\xb2\x7f\x9a\x9f\x14\x7d\xbc\xb9\x10\x76\x6f\x4d\x17\x67\x22\x83\x19\x0c\x02\xea\x2e\x14\xf7\xe7\x21\x9f\x78\x25\xa9\x16\x90\xdf\x62\x7f\x5c\x4b\x50\x59\x91\xb2\x28\x53\x84\xa4\x8f\x5f\x6a\xb3\x72\x93\xd1\x6a\x15\x0b\xd7\x94\xdc\x19\xfb\xd2\xbf\xb4\x1a\xd5\x44\x1b\x34\x33\x7e\x44\x7a\x6f\x39\xb4\x96\x8c\x6b\x3f\x00\x2e\x7f\x1e\xe2\x85\x4f\x78\xdb\xa2\x09\x00\xe6\xcc\x5c\xaf\x4e\x99\x0f\x9a\x03\xb9\x35\x8f\x41\x67\x3d\xd4\xcf\x73\xcb\xcd\xbe\x4e\x0b\xf6\xa2\x62\x59\xce\x9b\xf2\xec\x29\xcd\x03\xda\x22\x2e\xf6\x70\x0c\xe8\xe4\x01\xfb\x58\xfa\x9f\x48\x35\x65\x11\xe8\x78\x24\xbe\x6c\xab\xc6\x11\x0a\x58\x29\x66\xb7\xbc\xb1\x49\x6a\x14\x18\x37\x04\x24\xce\x93\x7e\x03\xd4\xb3\x5d\x5a\xe4\x5c\xef\xec\x2f\x8f\xa5\x13\x78\xdf\x42\x2c\xfa\x9f\x78\x63\x6a\x4e\x94\xed\x07\xaa\xf1\x8c\x22\xb3\x2e\x30\x49\xdf\xba\x59\xad\xae\x1a\x2e\x63\x5f\xb6\xbd\x73\xf7\xd5\xc6\xab\xde\xf3\x20\x36\x88\xaf\x0e\xe2\x47\x17\xeb\x56\xb5\xee\x02\x67\x0f\xe3\x1a\x54\xd1\xbb\xd8\xb6\x44\x38\x95\x2e\xc1\x57\x21\xbb\xd8\xb4\xb1\x57\x4d\x80\x6e\x20\x25\x5b\x1a\x38\x1c\x59\x0a\x54\x9a\x64\xdc\xed\xd8\xa2\xf3\xb2\x13\x19\xe1\x38\x67\xec\x7b\x47\x3b\x33\x08\xe7\x6d\xc7\xb2\xae\x7f\x5e\xd4\xa4\x14\x67\x60\x26\x15\x66\x33\x1b\x35\x7f\xa9\x1b\x02\x62\x54\xec\x38\xd9\xca\xbe\xbb\x4f\x9d\xc6\x26\x62\xae\x78\x94\x5f\xdd\xa0\x72\xa9\x8e\x79\x73\xe7\x14\x7a\xc2\xbd\x4f\xb5\x28\x31\x7b\xd8\x71\xce\x4c\x56\x9c\xc7\xb2\xce\xd4\x1d\xc8\x3d\xff\x92\x2e\xf5\x5b\x2c\x22\x4b\xc3\x71\xce\xbd\x4b\xf7\x9d\x44\x16\x26\x4e\xc2\xa4\xcb\x4e\xef\xd7\xb7\xbe\xf0\x37\x12\x2a\x53\xb4\x53\x45\xb5\x0a\xb2\x05\x5e\x48\x85\x9d\xa3\x0f\xa8\x33\xcf\xf3\x59\x60\xf8\x01\x57\x13\x7c\x3c\x4c\x1c\x36\x02\xe9\x16\xf6\x85\x93\xe2\xbd\x5e\x15\xf8\x41\x3f\xad\x79\x95\x46\x6a\xb3\x7f\xb0\x40\xab\x5b\x6c\xca\x88\x89\x80\x79\xd6\x23\xe3\xf4\x97\xc1\x71\xf2\x12\x40\x76\xf1\x6e\x15\x9a\x7b\x91\x0b\x44\xdc\xc2\x3b\x87\x24\x99\x68\xdb\xdc\x28\x35\xcc\x8d\x38\xa6\x70\x5c\x76\xb3\x7a\xec\x93\xa7\xd4\xca\x8c\xce\x00\x5e\x62\xf5\x0c\x64\x7e\xb5\x41\x17\xfe\x49\x7c\xc8\xc3\x99\x2f\xab\x9d\xd0\x6c\xbe\x9e\xbd\x67\x7d\x7a\x2d\x52\xcb\x47\x9a\xbf\x48\xed\xee\xe4\x32\xcb\x7c\x27\x8c\x7a\x42\x2d\x15\x5a\xe7\xd3\xce\x0b\x7d\x9d\xd3\x67\x9a\xd8\x8d\x8d\x88\xb3\xbb\x46\x40\x83\xb7\x40\x58\x39\x0f\xe4\xbe\x76\x42\x35\x7c\x6a\xc8\xb6\x91\x29\xe1\x58\xd9\xd6\x97\xf5\xaa\xca\x27\x0e\xf2\x71\xb2\x8a\x73\x3f\x7c\x4b\x27\x29\x32\x52\x12\x8a\x19\xd9\xed\x7b\xd3\xfe\x30\xfc\xaa\xff\xb4\x33\x7d\xa7\x15\xec\xfa\x81\x51\x69\x80\x37\xd9\xff\xda\xf9\xfa\x73\x2c\x95\x06\xd1\x6b\x6f\xeb\x83\xea\xbb\x3e\x43\x46\x9c\x5a\x77\x1c\x52\x51\xc0\xc5\x55\xaf\x1f\xd5\xa2\xe3\xfd\xee\x2d\x00\x6b\x43\x8a\x0c\xfb\xbe\xf0\xbe\xbc\x6a\xa1\x26\xd5\x6f\x63\x24\x25\xe9\xf3\xee\x5a\xe8\x6d\x52\x0a\xca\xbc\x47\xb8\x66\x1b\x20\xe4\x08\x85\xad\xf0\x99\x5e\x09\x7b\xb2\x03\x62\x0a\x22\x43\xee\x10\x60\xb9\x73\xa9\x44\xd7\x90\x68\x90\x67\x87\xa8\xad\x53\xc7\x86\xe5\xa5\x86\x30\x99\xa3\xd2\x55\x69\x2d\xc1\xbe\x8b\x1c\xec\xe1\x44\x58\x6b\x92\x12\x4c\xe2\xf6\x84\x4d\x0b\xf4\xce\xdb\x92\x88\x81\x4a\x0a\xaa\x1c\x1e\x1e\x71\x16\x50\x00\x61\x18\x73\x27\xfd\xe8\x26\xed\x21\x7a\xbb\x92\x56\xe2\x69\xfe\x90\xd7\xc4\x66\xbd\x16\xd9\x15\xa9\xd4\x75\xef\x08\xd1\xa8\xbc\x0a\xbb\x2e\x36\x9b\x32\xc2\xcc\xdd\x6b\xb5\xa1\x3d\xaa\x17\xb0\x5b\xa2\x4c\x4a\x4f\xf0\x13\x2a\x9c\xb7\x54\x03\x04\x60\xd7\x8b\xdd\x31\xf2\x77\xcc\x14\x3e\x48\x2b\x71\xc0\xa8\x37\x88\xd0\xc1\xbb\xc3\xd3\x49\x82\xed\x9b\x83\x4c\x52\x17\x48\xbd\xaa\xc5\x94\x35\x54\xdc\x0b\x1f\x5d\x0e\x4d\x24\x02\x3b\x7a\x7d\x13\xf7\x69\xa0\x2f\x12\x1d\x81\x49\x20\x5c\xb4\x32\x11\x8f\xa5\x7c\x79\x7f\xf6\x3a\xa8\x90\xeb\x13\x0f\x47\xc7\x03\xc7\x6d\xbc\x36\x59\xd7\x07\xf3\x38\x94\x5c\x1c\x1b\xbb\xdf\x1a\x0b\x31\x6f\x56\xc0\xf8\x59\x3e\xf9\x05\x71\x5e\x7f\xda\xe5\x8a\x68\x3c\x63\xce\x7f\x7e\xb8\x6e\xeb\xe7\x79\xa8\x9c\xe8\x6d\x96\xc6\xab\xb0\xd6\xa0\x9e\x07\x91\x13\xff\x9b\xd7\xc0\xf3\xca\x43\x45\x0e\x0c\x3e\x3c\x96\xbe\xcc\xc0\x0b\xb8\x38\x07\xbf\x9c\x4b\xf6\x69\x1b\x95\x16\x75\x05\x8d\xa7\x86\x89\x95\x41\x59\x91\x08\xf7\xa7\xdc\xf9\xfd\xe2\x26\x6e\x08\x84\x09\x01\xaf\xad\x3e\xb2\x5f\x83\x58\x12\xaf\x80\xa2\xff\x4a\x10\xff\xef\x3e\x50\x55\x46\x91\x05\x0d\x3e\x58\xd0\xc7\x95\x37\x84\xe9\xa4\xd2\xa2\x41\x92\x2d\xa5\x83\xe9\x0f\x5e\x48\x3f\xb3\xce\xee\xae\x99\xed\x00\x00\x3b\x5d\xe3\x9b\x53\x33\x11\xfc\xf8\xf8\xb3\xf1\xe5\x13\xd7\x0f\xaa\x22\x8b\xf9\xda\xd2\xf3\x06\x49\x53\x1c\xe4\x72\xcb\x53\x81\x1e\xba\xa4\x45\xf5\x7f\x3b\x39\x87\x4c\x2a\xa9\x45\xdf\xd8\x3d\x09\x34\x73\x02\x3b\x88\x5e\xec\xaa\x21\xa3\x40\x01\xe9\x1b\xdc\x91\x64\xf6\xb1\x58\xf2\xa3\x6a\x13\x81\x67\xc8\x0d\xeb\x55\x51\xae\x6e\x29\xa0\x56\x78\x56\x17\xa0\x3e\x50\x21\xba\xeb\x7c\xf8\x31\x3d\xe7\x44\x65\x86\xb1\x99\x0c\xd5\xbe\x31\xe6\x3c\x75\x24\x07\xa5\x12\xb5\x9b\x30\x97\x99\xd9\x3b\x34\x37\x03\x6e\x0c\x18\xd8\x88\xd9\x0d\xd1\xaf\xfd\xd3\x4c\xdd\x82\x58\x40\x7e\x63\x3a\x6e\x6e\xc9\x6b\xca\x3c\xdd\x26\xb1\x6f\x60\xa6\xe3\x66\x8d\x34\x74\x43\x80\xe2\x23\xfa\xcb\x07\x35\x08\x1f\x4b\xbc\xc5\x79\x45\xbc\xe7\x45\x4d\xfb\x90\x18\x15\xdc\x98\x91\x6a\x9d\x1c\x5a\xae\x92\xaa\x2a\x46\x4c\xe8\xda\x7f\xf9\x76\xf1\x56\x4d\x6a\xf8\x4c\xc8\x0a\x0e\x64\x97\xef\x07\x1e\x34\x76\xe1\x06\xd4\xf0\x80\xa0\x5d\xe6\xbe\x83\x22\x70\x54\x19\x4d\xb0\x86\x85\x9e\x70\x55\xbb\x26\x24\x11\xb8\xa6\x8d\x4d\x39\x50\x9a\x72\xd7\xe8\x7a\xdc\x6d\x67\x48\x28\x2a\x0f\xe4\xfe\xee\xc5\x64\xd0\x48\x3d\x5b\xf6\x0f\xff\x7c\x93\x76\xb7\x4e\x95\x11\x8f\xba\x62\x76\x1e\x8e\xba\x1e\x28\x74\x36\x9c\x22\xb5\x85\x3a\xca\x40\xe6\xd3\x8f\x6b\x82\xb5\x06\x75\xa9\x43\x12\xf1\x82\xb7\x6f\x02\x3c\x0a\x62\xdb\xe2\xba\xef\xf0\xd3\xd1\x52\x38\x8f\x7b\xbc\x34\x56\x59\xd6\x3f\x0e\x9d\x94\x82\xe6\x63\x66\x34\xe9\xab\xe4\x7e\x72\x0f\x68\x10\x33\x54\xe7\xef\xfb\xd0\x3d\x4d\xfc\x6c\x9f\x51\x3b\x79\x34\x99\x97\x57\xa4\x2f\x60\xf2\xa0\xc0\xcb\xbe\x96\x26\xdf\x21\xa1\xe2\x2e\x22\xe7\x2d\x12\x32\xea\xd7\x69\x41\xd4\x1e\xb9\x5c\x4b\x92\x16\x11\xde\x7a\xcc\x3e\xf9\x8a\xca\x72\x38\xcd\xd8\xe5\x8e\xa1\x4f\xdd\x93\x6e\x2c\x30\x54\x92\x8f\x2c\x7f\xda\x41\x28\xa4\x6e\x54\xf8\xa2\x79\x62\x9c\x46\xdd\xe0\x5e\x8e\x09\xab\x6b\x20\xfb\x5a\x1e\x40\xb7\xb0\x90\x93\xcd\x3c\xb8\x2d\xd1\x49\x35\x30\xf3\xcb\x54\xce\x5c\xba\x0f\xc9\x86\x38\xf2\xa5\xc4\xf9\x4f\xc7\xa9\x2f\x45\x9e\x40\x11\x0c\x37\xd3\x33\xda\x99\xb2\x3f\x13\x56\x6e\x57\x63\x2e\x98\xbf\xe7\x1e\x7f\x7a\x0c\xd8\xce\x55\x86\x45\x2a\x7a\xff\xc3\x63\x61\xe2\x4d\xaa\x55\xd1\xcf\x99\x75\x70\x10\x6f\x0e\x20\x9d\xf6\xeb\x97\xf4\x44\x28\x28\xc6\x71\x73\xd2\x9e\xf4\xfe\xab\xf0\x27\x98\x56\x53\xbe\xf8\xb1\x56\x2d\xf4\xfa\x96\x84\xd5\xdc\x32\xa5\x09\xea\xe9\x63\x23\x9e\x22\x85\xef\x0b\x9c\x77\xe1\x9a\xc5\x97\x37\xc5\xa3\x29\x43\x34\x28\x45\x55\x8c\xd7\xa5\xab\xec\x4f\xe6\x8e\x49\x01\x56\x03\x2e\x92\xf2\xee\xcb\xea\x11\x38\xd4\x35\x91\x8d\x39\x12\xe7\xc5\x31\x50\x78\xda\x41\xc2\x00\xa6\x57\x9a\x42\x22\xdb\x2e\xd4\x2d\xcc\xeb\xe2\x7c\x5d\x97\x4a\x30\x6b\x9c\x80\x21\x4e\xad\xd7\xbb\x44\xef\x24\x46\x4c\x2e\x90\xf2\x29\x86\xc1\x65\x84\xca\x85\x9e\x70\xc3\xa3\x89\x2d\x32\xf7\xfc\x28\xf4\x84\xa5\xfe\xf4\x80\xcd\xa5\x12\x1b\x3b\x42\x49\xc7\x36\xa2\x8a\xe1\x3b\x1a\xaf\xd0\xc4\xb1\xd7\x6e\x82\xf8\xbe\x63\x69\x1a\xa6\xac\x44\x58\x75\xa1\xf5\x5c\x49\x68\x55\xfd\x2d\x85\x53\x29\x19\xb3\x82\x3b\xa2\x81\x1c\xe2\x55\x40\x6d\x22\x6e\x0d\xd9\xb1\x5d\x43\xd8\x39\xa1\xc9\x6f\x98\x11\xa3\x22\xb9\x64\xef\x1c\x55\xb3\x38\x1b\xf5\x23\x16\xc0\xa2\xf3\xa1\x09\x22\xb7\x5d\x7c\xe5\xea\xab\xaf\x5c\x79\xc5\xb2\xcb\xae\x4e\xd8\x08\x80\xb4\x0e\x1c\x48\x7a\x06\xb2\x6f\x3e\xa0\x09\x1c\x61\x54\x91\x11\x6f\xe2\x10\x35\xf0\x2a\x63\x86\x18\x68\xac\x65\x7e\xe9\xea\xce\x3e\xb6\x04\x67\xf0\xb9\xc2\xbf\xdc\xde\x8c\x11\x71\xbd\xb8\xb5\x95\xe9\xda\xac\x73\xff\x19\x17\xdf\x17\xb6\x40\x67\xeb\x22\xda\x16\xf1\xb9\x1b\xad\xaa\xda\x7e\x7e\x6a\xbc\x9e\x09\x37\xc4\xe8\x24\x7a\xc7\xaf\xf7\xab\x33\xc8\xc1\x8e\x80\xeb\xa8\xdd\x34\x8d\xa5\x43\x50\x29\xc0\x76\xc1\xc6\x35\x1c\x8b\x5e\x8c\x3b\x99\x84\x85\x32\x3c\x07\x33\xb7\x4f\x48\xff\xa5\x87\x0d\x86\x25\xec\x82\xa3\x78\xae\x6e\x57\xc2\x1c\x73\xe6\x44\xb7\xba\x58\x73\x22\xf2\x2d\x22\x34\x92\xc4\x43\x3e\x7d\x88\x38\xd0\x71\x1f\x2a\x97\x71\x62\xd4\xd0\xfa\xce\x45\x2a\xd0\xc4\x5f\x22\xe9\x14\xcd\xce\x31\xd5\x91\x13\xfe\xc6\xcb\x10\xbc\xbc\xcc\xad\x2b\xe4\x01\x1a\x0b\x5d\x46\x8b\xe9\xd4\x2b\x52\xf9\x85\x9b\x93\xa6\x94\x5f\xb2\xee\xc2\xa4\xd4\x71\x7d\x80\x63\xca\x8d\xba\xf7\x74\x99\x05\x08\xf8\x4b\xff\xa3\x2a\x5a\x77\xcd\x9c\x25\x10\x37\x5b\x1e\xd0\xfd\xae\xfc\x80\x21\x31\x72\xca\x99\x52\x7f\x2d\x46\xac\x14\x7a\xc2\x05\xd3\x05\xf1\x63\x5e\x5b\x77\xf4\x10\x5f\x1f\xaa\xd9\x82\xda\x65\x17\x33\x01\x42\x89\xdf\xe1\xb0\x77\xa0\xc0\x98\x2b\xba\x20\xe2\xd9\x5d\x78\x9b\x56\x3b\x53\x13\xc5\xca\x78\x8b\x17\x01\x27\x67\xb7\xc4\x13\xa4\x89\xc0\xb4\x91\x38\x55\x9b\x4a\xac\xc0\xd6\x07\x40\x59\x17\xab\x54\xf3\x53\x67\xe5\x53\x20\x8b\x48\xb7\x58\x2d\x11\xad\x3c\x97\xd6\x8b\x54\x0a\xa1\x86\x0b\xe1\x8c\x3c\x10\x32\xc0\xef\xbc\x17\x93\x69\x4b\xb8\x10\x93\x03\x73\x5f\x3a\x9a\xe2\x0f\x47\xb5\x8f\x2b\xd7\x44\x76\xe5\x9d\xe2\x94\x5e\x41\x93\x4e\xe6\xb8\x47\xb4\x11\x62\x15\x0b\x77\x1e\x89\x45\xe9\x9e\x9a\x7e\x11\x15\xc2\x53\x07\x9e\x6b\xde\xbb\x67\xa4\xe2\x6a\x17\xa2\xf7\x96\x1d\x7b\x22\x9d\xe6\x22\x52\xc1\x6e\x8a\xef\xf1\x83\x65\xe9\x1e\x02\x57\x13\x19\x04\x37\xbe\xe8\xf8\x54\x2d\xa9\x2c\x13\x9b\xb8\x95\x41\xda\x0d\xb6\x5c\x0f\x57\x2a\xd3\xcd\xec\x3f\xbd\x91\x6c\x23\xb7\xc2\xe3\xf8\xa5\x40\xb2\xc2\xa1\xae\x1f\x0f\x74\x72\xff\xa0\x2b\x4b\x62\x26\xcb\xb8\x70\x3e\x60\x6b\xf6\x22\x69\x5b\xf7\xf2\x03\xa3\xe5\xdb\xc7\x7d\x94\xc9\x8e\x6a\x9e\x15\x95\xa7\x05\x8e\x6a\x86\x5c\x5e\x43\xd4\x14\x91\x85\x1c\xa4\xb4\xb0\xb2\xbf\x58\x3e\xd8\xdc\x38\x4a\x32\xbf\xb2\x4b\x1e\x7a\x9e\x87\x59\xdc\x3b\xf9\xe7\x6c\x12\x53\x2a\x14\x8e\xb5\x46\xbe\x2a\xdd\xa8\x7c\x54\x24\xb6\x54\x93\xe2\x03\x11\x4d\x9b\x87\xf7\xbd\x64\x9d\x1f\x9d\x82\x1d\xbb\x12\x8d\xb7\xce\x18\x04\xda\xba\x7a\x9a\x9e\x0d\x38\x34\xa6\xf6\xeb\x4f\xfe\xd6\x29\xd0\xec\x4d\x38\x7d\xc8\x75\x7c\xa1\x26\x5f\xc9\x67\x8c\xb1\x3c\x78\xfe\xcb\x53\x75\x25\x58\xdb\x37\x69\x3d\xee\xd0\xf6\x1f\x53\xde\x0e\x94\x53\x7c\x80\xda\x5c\x7e\xc6\x91\x89\x7a\x2d\x95\xd0\xe4\xe5\x01\xfc\xf6\x9e\x73\x21\x2c\xc5\xc7\x05\x2f\x28\x7a\xc4\x94\xb9\x7a\xfe\xe2\x35\xda\x21\x49\x3c\x9f\x26\x3c\xb9\xec\x2d\xd3\x15\x02\x91\xc5\xed\xaf\xcc\x91\x8d\x17\x69\x89\xaa\x49\xe0\xa1\x9e\x5e\xc0\x6f\x2f\x8e\x97\x49\xa2\xce\xd7\x33\x90\xbd\x6f\x7c\xf2\xc9\x1e\x4a\x76\x61\x2d\x85\x73\x2f\xe1\x38\x10\xdd\xf8\x8c\x76\x08\x72\xe9\xd8\x92\x14\xde\xba\x7a\x03\x20\x85\x22\xdb\x46\x65\x8e\x2c\x0f\x5f\xda\x0b\x5a\xd5\x6d\x73\xf9\x94\xba\xae\x91\xd7\x39\xf2\xaa\x88\x18\xc3\x89\xa3\x46\x3e\x73\x10\x10\x2a\x19\xf1\x89\x67\xe9\xa4\xc5\x5d\x7b\xd2\x17\x24\xbc\xe7\x13\x00\xdd\x5b\xeb\x9a\x9c\x30\xa2\x22\x23\xbc\xf6\x19\x9d\x16\x9f\x58\x0f\xdc\xb5\x5d\x83\xb5\x22\x1f\xb3\x12\xa3\xae\x24\x57\xe6\x16\xe6\x01\xe1\x91\x21\xd7\x2b\x09\xf8\xfc\xc7\x81\xc4\x99\x61\x93\x92\xb0\x02\xcb\x7d\x13\x60\xa4\x8b\x18\x47\xcf\x69\xe4\x8a\xa6\x4c\x83\xe0\x1a\x36\x45\x79\x9b\xb7\x1f\x1d\x0d\xd7\x8a\x2b\xd8\x0a\x7d\xcb\x45\x5d\xc0\x88\x4c\x19\xbf\xd5\x2b\x11\xe6\x94\xf1\x7a\x10\x24\x63\x13\x85\xd4\x4c\x61\x55\xe0\x59\x15\x92\x36\x2c\xdd\xa9\xd1\x32\x91\x4d\x4a\x94\xb9\x04\x81\x82\x65\xfb\x13\x5a\x72\x8f\x02\x29\xf7\x16\xde\xf7\xae\x02\x13\x95\x41\x13\x29\xbb\xe0\x8d\xa4\x6f\xed\x36\x77\x1a\x73\xf9\x11\xc0\x42\xd5\x07\xa2\x7f\x03\xd9\xfb\x0e\x4a\x0f\x7c\xae\x7a\x28\xab\xde\xd3\x4d\x70\xc2\xb0\xe8\xd0\xe0\xd0\xd4\xa3\xaa\x8b\x45\xa8\x87\x4b\xaa\xc9\x71\x9f\x2b\x82\x0e\xa3\xc8\xf3\x0b\x86\x15\xd5\xfc\xfc\x6f\x0e\xcc\xd4\x55\x9c\xb1\xec\x58\x86\x5b\xda\x35\xc5\x79\xce\x83\x2c\x11\x16\xbb\x8e\x1c\x57\x9b\xc3\x4f\xda\xaa\x37\x4c\x83\xf3\x18\xb7\x2c\x5e\xff\xe7\x3b\x27\x41\xb6\x74\x99\x61\xaf\x19\xec\xb9\x68\xb8\xce\xaf\x74\x90\x2b\x15\x72\x3e\xd8\x20\x62\x6c\x67\xd7\x5c\xae\xd3\xc8\xe3\xc2\x7a\x4d\xd7\xa2\x8a\x3c\x64\x62\x17\x25\x41\x3b\x77\x03\x80\x4b\x31\xe2\x07\x72\xf4\x9b\xfb\x85\x2f\xd6\xcb\x65\xa5\xb2\x25\x6c\x01\xde\xbe\x4b\x37\xa8\x12\x7d\xf0\x18\x65\x74\xf6\xd1\x41\xb8\x4e\x1c\x2c\xf0\xe6\xf5\x5a\x27\xc1\x16\xe3\x2f\x89\x05\xcc\x2d\x3a\xaa\x21\x06\x68\x91\xbb\x18\xf1\x87\x6c\x1e\x4e\x6f\x28\x8b\x94\xad\xe8\x58\x4f\xb6\xf9\xff\x7b\xfc\x5c\x95\x7b\x54\x9a\x51\x03\xe7\x97\x46\xc3\x30\x60\x0a\x40\xcb\x97\x57\x89\xdc\xe1\x2a\x6e\x1a\xc7\x0f\xc2\x0b\x36\x00\x63\x75\xd4\x57\x45\x0d\xcc\xe2\xc7\xb4\x7d\xbf\x6a\xbb\x55\x90\x87\x1a\x10\x02\xba\x60\x8f\xee\xda\x59\x14\x1e\xe0\x2c\x96\xfa\x9f\xd2\xab\xa7\xf7\xf1\xa3\x8b\xae\x65\xd6\x82\xd8\x13\x81\x21\xc1\x50\x0d\x3d\x73\x64\x5c\xd0\x19\x58\xf4\x63\xc6\x6a\x48\x64\x40\xe1\xd3\x26\x38\x6d\x7b\x26\xe8\x67\x9e\x8f\xa3\x27\x1a\xcf\x9e\x9f\x5c\x23\x5e\xee\x72\x5c\x8f\x82\x62\x4f\xf8\xfe\x5a\x2d\x2d\xc2\xd8\xc5\xa6\x14\xd9\x79\x58\x83\x7b\xc7\x55\xb1\x10\xf5\x7f\xf6\x15\x80\x2b\x64\xc4\xe7\xe3\x88\xec\xf7\xf3\x0a\x6b\x12\xe3\x16\xc2\x7f\x3c\x05\x31\x3a\xfd\x3c\x98\xfd\x7c\x24\xc8\xab\x61\x16\xf0\xa7\x35\x1a\xbe\xc2\x26\xae\xcf\xcd\x66\xc1\xd9\x99\xbb\x7b\xa2\x96\xef\xe1\x5a\x54\x10\x44\x6b\x92\x0f\x5c\xbe\xb8\x51\x31\x43\xec\x04\xfb\xdb\x71\x40\x9f\xc8\x96\xb1\x2b\xc4\xff\xe3\x79\xd3\x77\x4e\x29\xf6\x1b\xac\x95\xb2\x3b\x1e\x14\xa9\xf9\x65\x9d\x5d\x7c\x2e\xb5\x5a\x01\x28\x4b\x7c\xea\xd2\xd4\x55\x78\xfd\x1e\x11\x5a\x7c\xec\x54\xb1\x70\x1b\x14\x3d\xf7\xe5\xab\x74\xf6\x55\x95\x0a\xae\x56\x0c\x4c\x9a\xb7\x3b\xfd\x2f\x02\xd7\x0b\x0c\x03\x7b\x5e\x8c\x57\xcb\x7e\x73\x0c\x14\xbe\x28\xf1\x86\xc1\xa7\x77\x8d\x96\x05\x45\xb4\x80\x08\x77\x07\x0e\xff\x7b\x88\x96\xbe\x61\xbb\x4c\x02\x39\x80\x8d\x1e\x4a\xd7\x01\x28\xb2\x51\x2e\x37\x87\x9f\x03\x5a\xd3\x2c\x5a\xc5\x54\xc1\xf3\x5e\x9f\xa2\xf6\x08\xef\xe4\x22\xbb\x50\x24\xcc\xe7\x1d\xe7\xa7\x37\x00\x2f\x53\x2c\x34\xcd\x72\x9b\x8a\x7a\xf5\x48\x03\x7b\x06\x2b\xc6\xdb\x2e\xfb\xbb\x69\xea\xee\x66\x77\xf1\x4f\xca\xb7\x8c\xd7\xba\xe4\x16\x62\xd8\xe2\x82\x43\x89\xec\xca\xb7\x3f\x50\x89\x5c\x2c\x05\x61\x08\xf6\xf2\x33\x27\xb5\xa0\x2d\x66\xe9\xb1\x36\x64\xbe\x1d\xac\xe7\x2a\x97\x99\x89\x1e\x69\xb0\x1a\x20\x12\x50\x54\x34\x04\xfc\x15\x5e\xfe\xb0\xa6\xca\x86\x3d\x3f\xd6\x4b\x7f\x53\x43\x4f\xf9\x16\x16\x55\x57\xf8\xc4\x13\xe9\xd7\xea\x07\xac\x22\x34\xb6\xe2\x1b\x7f\x74\x9d\xd6\xbf\xee\x23\x89\x12\xfd\xe4\xc9\x1a\x44\x5a\x30\x23\x78\x9b\x21\x7b\x50\x2b\xf5\x58\x60\xc7\x68\xae\xbe\x11\x2d\x5a\x19\x38\xe3\xfa\xeb\xa3\x5f\x5c\xf5\x42\x6b\xaa\x1b\x4b\xab\x16\x75\x05\x9a\xe8\x57\xa6\xaa\x18\xb8\xe1\x79\xf4\x25\xee\x23\x12\xbc\x93\xb4\xf5\x79\x3e\xf9\xec\x3d\xe7\xfe\x8d\xf4\x5c\xaa\x6e\x16\xc5\x3e\x58\x4b\x6c\x17\x81\xb3\x3f\xf3\x63\x4d\x77\x9f\x4b\x29\x99\x9c\x4e\x12\xfe\xf1\xae\xc4\x3f\xce\xb3\x71\x8a\x2a\xd2\x79\x54\x2f\x6b\x03\x16\xcf\xab\xba\x77\x00\x63\x52\x10\x30\x32\x67\x57\xcf\x48\x9e\x1b\xef\x20\x0d\x5d\xd6\xaa\xa8\xcf\x36\xf8\x82\xb0\x78\x37\xec\x6d\x2a\xbb\x1a\xcd\x76\x38\xd1\x90\x14\x0c\xe3\x87\x5a\x74\x73\xef\x18\xb7\x2d\xb1\x1e\xcf\x54\xd5\x3e\x2b\x52\x5a\x69\xde\x67\x8f\xf8\x10\x5b\x22\x60\x10\x5c\xa5\xb0\x38\x16\xec\xf5\x5a\x14\x6c\x38\x96\xe3\xcb\xdb\x5b\xe3\x6f\x13\x2d\xd6\xe4\x16\x2a\x0f\xa6\x17\x1a\x66\x35\xe9\x48\x1e\x3f\x8f\xdb\x5e\x69\x7a\x69\xe5\x32\x66\x49\xe5\x71\xdf\x4c\x11\xee\xb8\x71\x77\x38\xf1\xdd\x73\x92\x42\xa2\x89\xf8\x9e\xcb\x1d\x11\xc7\x4a\x1d\xd9\xb6\xc0\x7c\x9e\x7e\x32\x76\x89\x71\x29\x67\x0d\x46\x1f\x79\xed\x11\x75\xce\x5a\xd4\x97\x71\x51\x54\x08\xa3\xfa\x75\x02\x3b\x47\x32\x09\x59\xd8\x4f\xb7\xeb\xad\xb9\x1a\xe6\x61\x30\xfc\xd6\xee\x26\x5f\x03\xdf\xb0\x90\xc0\x07\xe4\x8b\x4f\x0f\x0a\xff\xe1\x45\xc7\x9b\xf7\x42\xf9\x61\x3e\x63\xc8\xfe\x7b\x35\xbd\x51\xda\x44\xa2\x12\xde\xd2\x29\x26\xb3\x45\xae\x7a\xd1\x33\x90\xfb\xfa\x06\xf1\x03\x9b\x08\x71\x80\xec\x30\x76\x56\xd2\xe2\x81\xca\xfb\xe1\xe8\x31\xda\x50\x11\x15\x1b\x88\x11\x07\xb9\x48\x1a\x07\xc7\x2f\xe4\xe2\x35\xea\xe9\xd0\x92\xec\x4b\x8a\xa4\xf6\xb9\x99\x40\xff\x09\x0b\x2a\xa7\x0c\xde\x9d\x8f\x27\x96\x56\x9c\x46\xc8\xe1\x2f\x03\xd9\x67\x5e\x53\xdb\x97\x87\x82\x68\xb9\x1c\x9f\x09\x89\x8d\xf5\x14\xf4\x2a\x7f\xa6\xe6\xa2\xe4\x52\x0f\x9b\xa4\x16\x93\x56\xf3\x93\x9e\x4a\xb7\x95\x27\xcb\xb1\xcb\xd7\xa6\x9e\x03\xea\x94\x0a\x42\x29\x4a\xf4\xe2\xe9\x23\x01\x31\x8d\x07\x91\x47\x76\xfe\xad\xf3\x1d\xf8\xb0\x64\xea\x47\xb4\xe5\x19\xa5\xa8\xfc\x84\x14\x22\xb9\x97\xc6\xb2\x10\xc8\x2d\xc7\xb2\xa0\x27\x6b\xea\xa6\x19\xad\xf1\x34\x63\xeb\x13\xba\xde\x1d\x72\xe3\x25\x7e\x70\xb7\x88\x4b\x57\x21\x46\x52\x79\xdd\xf4\xbb\x20\x4c\xdd\x93\x59\xcc\x3c\x4d\x25\x16\xd9\x1e\x8d\xe1\xad\x79\xf3\x1e\xf5\x8a\x8c\xa4\x8d\xc8\x5f\xd1\x99\xa5\xbf\x31\x4f\x93\xf2\x45\x27\x47\x89\x89\x4e\xd2\x29\x93\xa3\xcc\x81\x29\x92\x12\xe1\x5a\xc8\x35\x62\x1a\xc2\x6b\xea\x80\xeb\x15\x6a\xb3\xf1\x55\x3f\xf7\x06\xd0\x0e\xf7\x6c\x8c\xa3\x30\xba\xbe\x24\x25\x7d\x62\x51\xe9\x0f\x6f\xd7\x77\x0c\x36\x2a\x41\x55\x5c\x4b\xf6\x93\x61\xab\xc6\x18\xe0\x6d\xba\xe8\xe9\x5e\x72\x28\xa9\xe0\xa2\x37\x09\x54\x84\xb7\x35\xc1\x10\x51\xd1\x4e\xd8\xce\xdf\x7f\x55\xe2\x9e\x0d\x6a\xe2\x42\x4f\x78\xee\x26\x7d\x33\x97\x7c\xf9\x52\xff\xef\x84\xca\xa9\x90\xa8\x3f\x34\x54\xf4\xf6\x45\x2a\x9b\xf0\xb1\x90\xa9\xcd\xfc\x7a\x7f\x8a\x65\x57\x97\x7e\x3f\xd9\x49\xdb\xb4\xf3\x92\x9b\x9b\x8a\xc4\xfc\xeb\x96\x78\xe8\x97\xf5\x63\xa6\xa6\xb2\xe1\xaf\x96\x29\x71\x7c\xbe\xbc\xdf\xb7\xd3\x81\xb4\xcc\x68\xbf\xdb\x90\x18\xb7\x68\x55\x04\x07\x41\x82\x60\x93\xfe\x7e\xd1\xea\xcc\x7e\xf2\xbe\xa4\x8f\x46\xdc\x52\xa1\x27\x1c\xee\xc2\xde\x08\xf1\x89\x44\x09\xae\x7e\x69\xb4\x72\x68\x4f\x3a\x29\xeb\x8b\x9a\x3e\x69\x5b\x8c\x2d\xcd\xef\x55\x2d\x57\xdc\x67\x91\x22\x89\x45\x40\x26\x3c\xa2\xd3\x0a\x89\xcb\x45\x46\x64\x18\x9d\x7f\x60\x0c\x6c\xef\xf2\x4a\xb3\x27\x3c\x32\xaa\x55\x1e\x38\xd2\x2f\x91\xd8\xc4\x17\x29\xd3\xf2\x1d\xc0\xfd\x89\xb7\x1a\x79\xbb\xa5\x67\x20\x3b\xed\xd5\x89\x00\x90\xc9\x48\xa9\xa9\xfc\xca\xee\xed\xd4\xa6\xe9\xa8\x46\xbc\x94\x37\xc3\x40\xde\xd1\x1c\xe7\xca\xc8\xc1\x9e\x3c\xca\x33\x6f\x3f\x9c\x7e\x04\x31\xac\x67\x20\xfb\x9b\xcd\x4a\xcd\xcc\x11\x63\xd1\x4f\xea\x2a\xb9\xd8\xa6\x75\x39\x34\xf7\x1f\x55\xb3\x22\xcf\x45\x7c\x54\xa9\xae\x61\xed\xb4\xa4\x58\x2f\xda\x54\xee\xf5\x1e\x0d\xcb\x5f\x23\xb6\x8d\xca\xb1\x94\x4b\xa6\x7a\x1d\x34\x88\x77\x08\x13\xe3\xbc\xc5\xb5\x26\x29\x51\x5b\x4c\x52\xc2\xfa\x2e\xd5\xe3\xb2\x90\x6b\x96\x03\x57\x9c\x94\x4f\xbc\xf4\x31\xd0\x12\x67\xcd\x1e\x89\x99\x29\x2b\x93\x0e\x89\xd3\x2c\x9d\x94\x9b\x71\x44\x1d\x64\xc8\x10\x27\xed\xb3\xf7\x24\x1c\x23\xd1\x8f\x0f\xdf\xd4\x7c\x76\xca\xd4\xed\x47\x36\xee\xd7\x64\xab\xca\xbe\x26\xc6\x1b\x54\x89\x84\x74\xf6\x0c\x64\xbf\xd8\x0a\x96\xb0\xe7\x05\xc8\x15\xd2\xd2\xe7\xae\x17\xc1\xb8\x86\xec\x20\x16\xa4\xd8\x35\x0a\x88\xfc\xe0\xb8\xa5\xcb\x7f\xf5\xe7\xa7\xcf\x82\x2d\x8f\x28\x0b\x17\x17\x79\xf8\x09\xdd\xc9\x2f\x3a\x70\x11\x93\x6d\x97\x9f\xbd\xa2\x09\xcd\x22\xbf\x46\x90\x32\xd4\xcc\x3d\xb0\x54\x93\x15\xb1\x01\x9a\x90\x67\xe6\x3b\xd5\xb3\xea\x47\x62\x0c\xbf\xeb\x58\x7a\x87\x4b\xc2\xa8\xa4\x07\x47\xf9\xed\xc5\x07\xb4\x34\x55\xcc\x0e\x44\x0f\x63\xeb\x76\x28\xa3\x58\x2a\x61\x39\xa3\xf8\x24\xd0\x37\x63\xc8\x41\xb6\x8d\xb8\xd1\xcc\xaf\x4e\xa9\x3d\xc5\x70\x11\x95\x6d\x82\x7c\x12\xfd\xe6\x94\xe6\xe8\x8f\x8a\x34\xf0\x65\xab\x24\xf3\xf7\x77\xe9\x2e\x4a\x3e\x66\x28\x1e\x32\x86\x9a\x43\x61\x9d\x11\xde\xea\xe6\xf8\xc2\x31\xf7\x69\x33\xb1\xc0\xf3\x88\xb2\xc6\x0a\x3f\x73\xb3\xd6\x43\x66\xb8\xa4\x26\x27\x79\xb4\xa9\x25\x4e\x48\xa9\xcd\x51\x2a\x48\x78\x91\xba\x07\x26\xab\x5d\xc8\xb5\x28\x1c\x61\xab\x98\x5e\xbe\xeb\x6a\x40\x15\x12\xbb\x9e\xc0\xac\xe4\xbb\xb6\xc1\xf9\x8e\x48\x95\xe3\x07\xfe\xdf\x07\x62\x05\x80\xe8\x20\x15\x83\x90\x3f\x3f\xa8\x22\xbf\x11\x30\x21\xab\xdd\x73\xbf\xde\x40\xb2\xa3\xd3\x53\x5a\xe1\xfc\xf3\x44\xb0\xef\x2d\x5c\x8d\x22\x33\xe0\xcc\x3e\x0d\xad\x12\x9c\x2a\x72\x1b\x85\x9e\xb0\xe5\x61\x4d\x9b\x21\x28\xda\xbc\xcf\xc2\x43\xd2\x17\x56\xb6\x82\x97\x57\x66\xd8\x8f\x91\xe8\xd9\xaf\x3f\x21\xb6\xdc\x35\xd4\xc1\x16\x97\xb2\xcb\x5c\x0a\xa8\x5c\x75\x82\x39\x06\xf0\xaf\x3b\x25\xc8\x8f\x0a\xb6\xe7\x0b\xd5\xd3\xe3\x30\xc6\x3f\x66\xfa\x30\x65\x29\x1f\x44\x8b\xfe\x4a\xcd\x3e\xba\x8e\x18\x23\x33\x7a\x7b\xe3\x82\xf1\xc9\x1a\x14\x84\xe1\x00\x1f\x9e\x0c\x9d\x0e\xd0\x09\xc2\x23\x82\x7f\x41\xee\x0b\x23\xcf\x96\x49\x8f\x6d\x7b\x3e\xa3\x40\xf4\xe9\x33\xd3\x9b\xf4\x6b\xcb\xd8\x8c\x2d\x7d\x37\x3f\xaa\xeb\xe4\x71\xb5\x1e\xfe\x65\x17\x6d\x4a\x2f\x31\xde\xe8\x63\xd4\x25\xd2\x7d\x28\xb3\xef\x5e\x75\x35\xd8\xc1\xac\x2c\x36\xfc\x8f\x86\x35\x35\xac\x0c\xcc\xb5\x36\xe4\x97\x9e\x2d\x74\x94\x0a\x9f\x41\x5e\x60\x21\x06\x3d\xc7\x6f\xd9\x09\x3a\xc3\x5e\x95\xb0\x58\x64\x72\x20\x7b\xdb\xa9\x64\x68\x66\x07\xfc\x78\xb8\x54\x2a\x5e\x07\xae\x85\x19\xb2\x4d\x31\x3d\xf9\xcc\x62\xad\xb3\x29\x0d\x25\x63\xde\xc9\x71\x1f\x50\x35\x7c\x5c\x8d\x8e\xcb\xc5\x00\x87\xc7\xf1\xb6\x55\x86\x5d\x1c\x88\x8c\xe3\xa1\x09\x6a\xc5\x55\x82\x22\xf2\xa8\x02\xab\x87\xa7\x5e\x4d\x07\x1a\x0b\x3b\xc4\xab\xca\x29\x1d\xef\x5e\x9c\x1c\xd7\xda\x5c\x04\x89\x96\xf2\xfa\xe1\x00\xbd\xc1\x9f\xf9\x96\x67\x41\xbb\xbf\xca\x30\x8a\x96\x53\x25\x9b\xfe\x0e\x1a\xf8\x05\x5a\x12\xd6\xb8\x22\xe9\xfd\xde\x06\x5d\x2e\xc1\x74\x89\x90\x80\xe4\x9d\xa7\xd3\xfa\xc4\x82\x6c\x6b\x9f\x3b\x8b\xa3\x88\xba\xd4\x2d\x09\xd1\x52\xa9\xe6\xc9\x53\xaf\xff\x64\xea\x58\x43\x2e\xb2\x1b\x9e\x10\xde\xcc\xbc\xd3\x29\x4d\x1c\x19\x46\x15\xdf\x62\xc2\x0d\x70\x20\xf3\xa3\xdb\xc4\xfa\x2f\x61\x6c\xf2\x2d\x7c\x1b\x08\x0f\x9e\x45\x03\xe9\x87\xfa\xaa\xa5\x1a\x40\x9e\x18\x7f\xcc\x7d\x18\xb8\x68\x3a\x45\x64\xcb\xe3\x27\x73\x57\x0b\x00\xa4\xd1\x68\x0f\xd4\x0a\x3d\xe1\xcb\x4d\xf0\x2a\xc6\xc9\xef\xf1\x70\x2c\x3f\x64\xa9\xa6\x14\x1c\xfb\x0e\xe7\xfa\x81\xc8\x4f\xe0\x92\xa4\x10\xcf\xcd\x6e\x01\x6b\xce\x30\xb0\xcd\x71\x0a\xfc\xd5\xff\xcb\x53\x49\x1a\xd1\xcf\xed\xb3\x78\x1a\x47\x5f\x49\x7f\x47\x77\x7b\xbb\x4c\x4a\x66\xbc\x30\x36\x3d\x53\x27\x82\x7a\xf8\x8b\x5d\xba\x23\x32\x72\x13\x11\xe9\xcc\xa5\xd9\x49\x20\x68\x71\x04\x5c\x13\x3c\x35\x97\x79\x02\xf4\xb3\x19\x29\x82\xee\x6a\xf6\xe2\xa7\xd3\xbb\xb8\x46\x49\x22\x86\xfd\xd5\x76\x68\x40\x69\x08\x6f\x8e\x70\x47\x35\xe9\xa8\x30\x04\xa0\x3b\xd9\x6b\x3f\x10\x11\xaf\x8c\x5d\x2c\x60\xc9\xb9\x9e\xe1\xad\x30\xe8\xa4\x54\xa2\x34\x4a\x14\x46\x3e\x96\x26\x82\xff\xda\xa2\x11\x95\xa4\x50\x81\xa4\x80\x45\x51\xf3\x51\x4d\x26\xde\x53\x3e\x4b\xd9\x0b\x97\x48\xc7\x60\xcc\x2a\xc4\x49\x5a\xf7\xd9\x35\x0c\x78\xbf\xdb\xc8\xc4\x10\x21\xb4\xeb\x4e\x1d\x66\xc9\x30\x0a\xe4\xb8\x7c\xe1\x71\xbd\xc1\x54\x4f\x3a\xb3\x7f\x7a\x14\x20\x6a\x06\x11\x69\x7a\x38\xa9\x92\x18\xac\x29\x73\x3f\x9d\xd2\xaa\xe5\x36\x4e\x55\x9c\xde\xb9\x4e\x5b\x73\xac\xb1\xa9\x1b\xbb\x7f\xfc\xfb\xaa\xf4\xb3\xe9\xea\x4a\xb4\xe4\x63\x1d\xa3\x3f\x02\x52\x38\xa3\xa4\x3f\x2a\xb3\xc3\xad\xbb\x61\x0f\x2b\x8a\xfd\x34\x2a\x42\x2e\xd7\x60\x10\xdc\x8d\x22\xfe\xa0\x19\xf7\x8c\x85\x30\xb7\x6a\xc0\x97\x76\xd8\xb2\x0b\x20\x02\xfc\x42\x4f\xd8\xbe\x65\x34\x0c\x8b\xc8\xe1\x39\xe7\xad\x0f\x8c\x90\xc9\x0e\x6f\x9d\x86\xff\x07\x28\x6b\x65\xca\xca\xd1\xcf\x1a\xa5\x74\xed\x5f\xc7\x9e\x6f\x58\x7c\x44\x01\x14\x63\xaf\xeb\xd5\xea\x18\x8c\x6a\xca\x67\x34\xec\x7b\x17\x08\x78\x54\x03\x26\x1d\x40\x47\x4d\x51\xe3\x20\xe9\x57\x96\x32\x70\xfb\x41\x9b\x6a\x45\x20\x4e\x79\xce\xec\x9f\x04\x8c\x81\xa3\xfc\x80\x9f\x91\xe1\x35\x1a\xe5\x44\x34\xf9\xf8\x42\x0c\x1e\x03\xc3\xda\xe8\x4b\x88\x5d\xe8\x09\x27\x2d\x6e\xda\xb3\xbc\x55\x81\xfb\xa2\x6f\xb9\x5a\xe8\x3e\x16\xae\xc5\x9e\x4f\x9a\x18\x8a\xb9\x69\x43\x52\xf3\x5f\x97\x18\xd1\x43\x7f\xea\x2e\xd9\x52\xb3\x88\xcd\xd1\x86\xec\xe6\x64\x1b\x16\x21\xd6\x2d\x77\xf4\x76\x4d\x59\xba\xea\x13\x87\x78\x7e\x72\xf6\xfe\x68\x63\x53\xe3\x9b\x63\x0c\xe4\x20\x27\xf3\xdf\x5b\xb4\xdb\xa5\x89\x0a\x5c\x6e\x59\xab\x46\xdc\x33\xc8\xa0\x88\xf8\x6f\xef\x4d\xc7\xb9\x06\x0d\x78\xca\x1d\x1e\x9b\x29\x61\x40\x3e\x8b\x49\xbf\xe1\x94\xa1\x1a\x75\x92\x8a\xaa\x8f\x9f\xc9\xe7\xdc\x2f\xd2\xcd\x55\x04\xb9\x10\x71\x96\xbb\x64\xb8\xc6\x13\xeb\xf3\x19\x76\xa4\x4b\x4f\x76\xa3\xd6\xea\xe3\xb2\x13\x71\xbd\x78\xac\xaa\xb5\x1c\x28\xf5\xc4\xa8\x36\xef\x0c\xd1\xdd\x47\xaa\x36\xf6\xe5\xee\xcb\xaf\xbd\xe7\x02\x58\xa9\xf8\x2c\x8a\x89\x1e\x69\xd2\x21\x0f\xbf\x02\x44\xbb\xca\x8c\x06\x55\x11\xcd\xb3\x23\x35\x32\x92\x8d\x8b\x62\xe0\xa0\xee\xeb\xbe\x45\xc9\xf6\x9a\x35\x67\x6e\xa1\x27\x34\xfa\x44\x3c\xbb\xd2\xa4\x15\x48\xb7\xd8\xd8\x3d\x0a\x70\x8e\x44\x70\x5e\x30\x7e\xbc\xf2\x2b\x6d\x7a\x2d\xf9\x8b\xcd\xa6\x49\x84\x84\xa6\xe4\x3f\x7b\x52\x57\x23\x45\xc4\xe1\xda\x2e\x3c\x26\x7d\xf1\x69\xcd\xf9\x22\x60\x15\xde\x71\x3d\x7a\x54\x0d\xf8\x6c\x3b\x8e\xb5\xce\xa9\xf4\x3f\xaf\x91\xaa\xcc\xe0\xfe\x71\x26\x10\x93\xa5\x01\x2b\x98\x82\x87\xf8\xc8\x1e\xed\x85\x61\x6c\xc7\x3d\x8e\x2c\xbb\x09\xda\xf9\x60\x2f\x70\x04\xb8\x75\x20\xf3\x77\x6b\x80\x8e\xa7\x5b\x22\xb6\x2f\x37\xed\xeb\x87\xce\xd5\x97\x07\x76\x3d\x52\x93\x87\x5b\x7e\xec\x0e\x48\x8f\xf6\x35\x7a\x74\xf6\x8a\xa9\xa2\xdd\xcd\x35\xbb\xc3\x75\x1f\x9e\x9e\xf8\x5d\x70\xe1\xab\x63\xe7\xba\x10\x1f\xc4\x5c\xec\xc7\x4a\x74\xfc\xf0\xbf\xbb\x55\x5b\x27\xb1\xe4\x52\x66\xf9\x7a\x8d\x0a\x8c\x98\x74\x7c\x0e\x27\x1f\x17\x07\x68\x11\xf9\xb1\xa0\xe7\x93\x0b\x20\x17\x2c\x2a\x30\xf8\x32\xda\x18\x2a\x11\xdc\xba\x30\x70\xcb\x1e\x79\x5c\xea\xab\x11\x27\x65\xa9\xd2\x32\x5d\x1f\x2e\x3a\x1c\x15\x88\xe2\x55\x9d\x9d\x61\x8a\x12\x60\x35\x2e\x63\x97\xe3\xef\xd5\x6c\xe5\x82\x17\xf5\x61\x7f\x39\x66\x5d\x54\x0b\x3d\xe1\xd4\x9a\x6e\x61\x30\x77\x76\x0c\x36\x1a\xa2\xf5\x4c\x64\x9f\x33\xb6\xe1\xff\xdd\x61\x71\x0f\x75\x46\xdd\x72\x89\x4f\xd1\x72\x9f\xd3\x2c\x5e\x38\x84\x42\x54\xbc\x59\x87\xa9\x74\xcf\x8d\x8e\x3c\x87\x08\xa1\x97\xfb\xb5\x4c\x82\x37\xb2\x78\x2c\x0b\x7f\x78\x97\x66\x94\x88\xeb\xd8\x8e\x17\xd5\xeb\x5a\xea\xc3\xf5\x01\x2a\x62\xb9\xfb\x6e\x92\xbd\x45\x97\x26\xeb\xd0\x60\xba\x86\x67\x89\x8e\xaa\x18\x64\xb4\xb7\x25\x69\x4c\x01\x84\xfa\x5f\xb5\x91\x16\x97\x94\x90\x86\x36\x5f\x5a\x7f\x36\x60\xc7\x11\xb7\x02\xf2\x86\x11\x3b\xc7\xc9\x13\x20\x28\x36\x81\x60\xfa\x5b\x92\x3d\x57\x6c\x24\xb2\xf8\x27\x4a\xe2\x88\x40\x8e\xa4\xb8\x66\xcf\x78\x43\x67\x20\x98\x48\xcc\x07\xb3\x6f\xbd\xa9\x53\x47\xa3\x58\x26\x5b\xb4\xdf\xdd\xa3\x92\x6d\x1b\xe3\x4a\xf4\xb3\x1f\x4d\xd4\xbb\xdd\x51\x89\x21\xab\x91\x51\x60\x92\xe3\xf9\x98\xb8\x45\x86\x5d\x51\x78\xe6\xaf\x9d\xfa\x71\xb0\x57\x04\xb5\xa5\xc9\x50\xe1\xb2\x29\xe0\x0c\x0f\x58\x19\x73\xf4\xeb\xcf\x5f\x56\x29\x43\xc7\xac\x42\x47\x27\xd7\xcd\xd0\xac\xab\x11\x73\x28\x8b\x91\x5a\x99\xa5\x27\x81\xd1\x54\x32\x45\xbd\xe4\x71\xd5\x20\x34\xb9\x93\x58\xee\x76\x4d\xb6\xa1\x64\x18\x4d\x5a\xf6\x03\x99\x29\x0b\x61\xea\x8c\x5c\x2f\x5a\x74\x72\x0a\xf7\x5c\x2b\xa0\xfe\xd8\x81\x2b\x70\xfd\x7f\x06\xd9\x88\xe8\x82\x44\x47\xdc\x92\xc3\xb0\xb9\x10\x30\x8f\x4f\x55\xb3\x87\xde\x00\x09\x87\x70\x73\x8c\x16\xc6\x98\x49\x22\x75\x5a\x4b\xe5\x24\x63\xc7\x0a\xa0\xf3\x60\x21\x86\x0c\x1f\x33\xd1\x3d\xcb\xd9\x2f\x6a\x76\xd7\xc4\x88\x0d\x08\xf2\x53\x46\x01\xa0\x45\xb4\xba\xb9\xc8\x49\xf7\xd9\xb0\x59\x29\x82\x81\x08\xa7\xb9\xab\x16\xe8\x1a\x01\xea\xcb\x64\x17\xc5\x7e\x5e\x83\x6d\xd3\xa8\xea\x89\x61\x6d\xd9\x65\xcf\x88\x85\x5b\x46\x4d\x12\x68\xe1\xf5\x2f\x02\x74\xb0\xcf\x82\x72\x39\x8e\x8a\x5d\x6f\x6a\x54\x48\x26\xcc\x86\x64\x84\x3a\xcb\x54\xb0\xc7\x8e\xce\x39\x4d\xe9\xc6\x93\x5b\xb5\xf6\x2c\x66\xa4\x44\xb0\x74\x3b\xcf\x5f\x31\x57\xec\x0c\xbb\xc1\x78\x36\x35\x90\x79\xf8\xbd\x56\x7d\x11\x35\xe4\xe2\x3f\x98\x97\x80\x27\xd7\x0d\x04\x44\xe8\xc6\x05\xe2\x75\xcc\x9a\x39\x67\x1e\x17\xdd\xbd\x65\x31\xb0\x65\xe3\x5c\xec\x30\xb3\x35\x19\x88\x36\x5f\x5f\xee\x27\x8f\x68\x92\x80\xf3\xe6\xcd\x96\xa4\x8e\x85\x7d\x9a\x0f\x3d\xae\xc7\xfe\xfa\xb5\xb7\xb4\x6e\x48\x94\x90\x32\x4a\xab\xb2\x2c\x39\x72\x53\x0b\x78\x91\x35\x6c\x53\x41\xba\xc9\xfc\xf8\xc3\xf4\x16\xb1\xb0\x5d\xf5\x12\x10\xe8\x91\xa7\x45\x45\x4f\x5d\xcc\x65\x90\x7e\xf9\x74\x8a\x13\x50\xe4\x4e\x79\xaa\x2f\xf6\xb1\xa9\xa0\xc6\x65\x86\x45\xaa\xd8\x46\x65\x9e\x29\x9e\x37\x24\xc5\x83\x91\xa2\xca\x99\x5b\x7b\xb5\xb6\x05\x07\xc0\xf2\x2b\xbb\xf1\xc1\x34\x0a\xd7\x21\x2e\xf1\x7c\xd6\xe0\x49\xa4\x1e\xe6\x8e\x8d\x1a\x0d\xa9\xcc\x84\x33\xf9\x7b\x9f\x91\x66\xdd\xa5\x52\xa1\x88\x51\x94\x0a\x5f\xb6\x4d\xed\xee\x3a\x27\x9f\x7d\x73\xb1\xd6\x7f\xea\xab\xca\xc3\x5f\x88\x74\x3f\xf9\x48\x7a\xbd\x04\x51\xe6\x60\x27\x9e\xd9\x6b\xee\x49\xef\x82\x1b\x02\xc4\x7c\xcc\x8a\xc8\x88\x39\xca\xf9\xcf\xed\x4e\x8f\x86\xa3\x0a\x2d\xaa\x3e\x73\x97\xe6\xa5\xc7\xc6\x1c\x51\x98\xf5\x0c\x64\x07\x34\x50\x30\xe7\x19\xaa\x2e\xf5\xcc\xb5\x20\x8e\xb4\x95\xdb\x10\x8f\x4f\x7b\x4b\x00\x1d\xc8\xdd\xcc\x0a\x3d\xe1\xdf\xdf\x23\x7d\x3d\x28\x17\xb2\x89\x5f\x91\x3b\x55\x61\x26\xbd\x66\xae\xff\xfb\x9d\xea\xa3\x02\x2f\x56\x78\xed\xbc\x19\x66\x4e\x29\xc8\xf7\xf5\x20\x6a\x10\x11\xc6\x33\xec\x43\xa0\xac\x50\xc5\x86\x8f\x0c\xe1\xda\x73\xcd\x49\x69\x6c\xc3\x15\x4a\xc3\xbf\x76\xea\xd8\x20\xdb\x2e\xd0\x40\x30\xdf\xc2\xd7\x5f\x4b\x2f\x0d\x4e\x44\x95\xee\xc3\xab\x63\x2a\x2a\xb2\x49\xbf\xe8\xe7\x7e\xfb\x7a\x91\x99\xac\xb1\x78\x7b\x20\xa5\x9b\xb6\x4b\x33\xbb\xae\x62\x64\x60\xa0\x12\x93\xf9\x54\x15\x74\x92\x70\x2c\x1b\xf5\x4f\xa1\x32\x62\xeb\xa5\x35\xee\x8c\x07\xf2\xbe\x7f\x7f\x5c\x2b\xf5\xb9\x68\x91\x48\x5d\xc9\x32\x38\x57\xc4\x0e\x11\x62\xc9\xb9\x43\x0b\x65\xa5\x4b\xca\xc2\x54\xa6\x31\x02\x60\xb1\x18\xe6\x6d\xf3\x99\x53\xa5\xb0\x8e\x8d\x3c\xcf\x89\x85\xa5\x7e\xdf\x79\x56\x0a\xcf\xcd\xeb\xb4\xe8\x32\x3b\x5f\x10\x6f\xfa\x93\x7d\x18\x60\x5c\x33\x4f\x9d\x3c\x13\x4c\x11\xf8\x6c\x3f\xf3\x95\x51\xe9\x07\xe1\x33\xcc\x07\xe8\x33\x63\x73\xb9\x12\x20\x84\x60\x1b\x17\x63\x30\x7b\x78\xa2\x6b\x0c\x3c\x1e\x6a\x72\x65\x7c\x75\x85\x88\x80\x9f\xf4\x2d\x57\xd0\xcb\x67\xdc\x2b\xc8\x5c\xd7\x04\x26\x6a\xae\x58\x3d\xe9\x8c\x63\xd0\xc0\x13\x5d\x8a\xab\x5f\xe2\xbb\x23\x36\x59\x4f\xd0\x0f\xcb\xf7\x02\x4d\xbe\x86\x89\xe3\xd4\x65\x7f\xa8\x11\xf3\x91\xe7\x27\x6a\x3f\x8b\x8a\xda\x84\x9a\x51\xcf\x8b\xc7\xc9\x99\x77\xf7\x2a\x60\x5f\x62\xb6\x9a\x79\x65\x9a\x0a\x1d\x16\xb5\x6d\xde\x80\xcf\xfe\x69\x84\xae\xc8\x65\x23\x83\x53\xa8\xf8\x0a\x7c\xe3\x71\xd1\x5c\x2e\x05\x3e\x1f\x28\xa8\x84\x3e\xf7\xd5\x47\xd4\x96\xe8\xb7\x90\xd0\x7e\x46\x6f\x68\xfd\x71\xca\xa2\x47\x2f\xcf\xac\x4f\x3d\x06\xe6\x70\x84\x8f\xba\xaf\x78\x39\x1d\x57\x1c\x1c\xd5\xb4\x65\x3b\xca\x57\x65\x70\xbe\xb1\x1b\x58\x54\xda\xb8\xac\xba\xf1\x97\x69\x9d\x1f\x83\xd4\x88\xc1\x35\xeb\x12\xf9\xfb\xf0\x7a\x11\x7b\x0c\xe2\x23\x93\x8f\x20\x33\xdf\x58\x28\x5c\x2a\x96\x20\x1f\x71\x8a\x7c\xd3\xd9\x79\x74\xad\xda\xd8\x45\x5c\x8e\x75\xaf\xc3\x20\xdf\x02\x0e\x39\xaf\x4a\x7c\x24\x3c\x40\x4b\xcf\x8f\x02\x38\x5a\xc9\x38\x3f\xaf\x5b\xec\x5e\x64\xc4\xd0\xe1\xf0\x95\x9b\xd3\x8f\xa7\x6c\x61\xdf\xa7\xb1\xb6\x56\xd9\x1d\x05\xdb\x33\x9c\x8e\x9e\x59\xbf\x48\x7d\x67\x95\xd1\x1a\x89\xb1\x0f\x25\x80\x65\xf7\x51\x45\x5c\xe1\xc7\x4c\x49\x80\x2c\xa2\x22\x92\x92\x58\x99\xf6\x99\xd2\x36\x9b\x11\xc1\x49\xca\xfc\x60\xa3\x96\x20\x51\x1b\xc7\xdd\x85\xea\xda\x34\x8c\xbd\x4e\xa9\xc9\x02\x29\xfe\x11\x17\xda\x6f\xb4\x82\xde\x99\x11\x24\xc5\x59\x78\x5d\xd2\xdb\x73\x88\x4a\xde\xc3\x6f\x4c\xd3\x05\xee\xec\x4a\x8c\xca\xcf\x8e\x5a\xac\x60\x13\x08\xc0\x35\x72\xc3\xe7\xc7\xe0\x5f\xcc\x64\x5a\x94\xab\xdb\x00\xf4\x4f\x9d\x62\xa1\x27\x3c\xcb\x9f\x20\x8f\x00\x3b\xe0\xda\xe2\x7a\xb4\xbf\x78\xa7\x96\xd9\x07\xc4\x20\x26\xe6\x15\x66\xff\x13\xe9\xa9\xef\xbc\xd9\x83\x1d\xbc\xd9\x35\xcf\xaa\xc4\xa2\x68\x23\xa3\xe2\x20\xde\xd7\x3a\xe7\x5d\x4d\x1e\xca\x6d\x98\x1c\x70\xa8\x9e\xd5\x8c\xf1\x4d\xad\x2f\xe6\x4b\x0c\xdf\x40\xbe\x34\x2a\x5d\x4d\x5a\xc8\x15\x8a\x36\xe2\x74\xe8\xdd\xa8\x22\xf6\xac\xd9\x73\x63\x8f\x83\x3f\x9d\x8c\x95\xfc\xa3\x18\xc5\x53\xef\x45\x63\x53\x6d\x6f\xec\x89\xba\xf8\x92\x61\x00\xd1\xc0\x90\x2b\x0d\xe0\x9c\x50\x7c\xc0\x52\x24\xce\xd1\x81\x7c\xef\x90\x16\x6d\x27\x4a\x8c\xf3\x7f\x1c\x87\x50\x1f\x3e\x97\x2f\xf4\x84\x57\xc9\x96\xdd\x1a\xda\xa0\x7e\x93\xdd\x56\xbe\xff\xd9\x24\x06\x99\xae\xf4\x81\x0b\x2f\x7f\x57\x0a\x50\xd2\x80\x43\x5f\xc3\xcd\xd3\x2f\xd2\xa2\x0f\xf3\x2c\x64\x5f\xe8\x0d\x46\xb3\xc9\xdd\xf4\x92\x4e\xee\xf0\xb9\xa6\x96\x18\x33\xe7\xaf\x94\xfb\xad\x60\x44\x99\xb2\x18\x5f\xb5\x4d\x83\xfd\xfa\x1a\xe6\x15\x49\xf8\x3f\x3b\x04\xf7\x75\x69\xc2\xd5\x8d\x29\x51\x1f\x91\x1a\xab\x36\xf1\x31\x93\x78\xff\xbc\xfb\x98\xa6\xe3\xdc\xe7\x33\x54\x43\x65\xe4\xf6\x23\x69\x0c\xbc\x60\x9b\xd6\x0b\xb2\xb0\x23\x6c\xac\x3e\x3d\x44\xf7\x02\x0f\xec\x28\xaa\xc4\x47\xf2\x90\xa5\x92\xce\xd8\xd1\xc1\xe7\x2a\x0b\x47\xc5\xc9\x2b\x49\xac\x6b\xe6\x7d\x28\xf7\x01\x0d\x12\xfb\xe0\xa5\xdd\xba\xf7\x80\x1f\xed\xe2\xc0\x11\x2f\xed\x43\xa1\x4c\x5c\x58\x1c\xad\xd5\x62\xc0\x9a\x95\x80\xa7\xed\x4c\x83\x4f\x6a\x24\xb6\xe8\x52\x1b\x70\xef\xb0\x16\x08\x1b\x72\x79\xcf\x38\xfa\xf8\xdd\xf3\xd3\x8b\x25\x10\x1a\x1c\xe1\xbf\xad\x4d\x3a\x75\x37\x04\xb8\xd0\xd3\x7b\x36\xa8\xfc\x1a\x54\x89\xeb\x84\xdb\xc7\xa8\x5c\xab\x18\x18\x51\xfc\xb2\x90\x13\x7d\x36\x9e\x24\x8b\x76\xd1\x7a\xe9\x09\x47\xdc\x29\xd2\xa9\x8e\x79\x73\xbb\x0a\x3d\xe1\x63\x79\xb5\xd2\x6b\xc4\x33\x38\xcb\xb5\x67\x20\xf7\xc8\x54\xc5\x03\xe4\xfc\x94\xec\x2c\x3f\xe6\xb3\x5f\xd3\xb4\x40\xcf\xd8\x02\x35\xe6\x5c\x01\xd8\x7f\xee\x78\x2b\x44\x3c\x16\x50\x31\x0e\xb7\xd9\x8b\xde\x6b\x91\xa7\x86\x5b\x0e\x20\x18\x7f\xde\x10\x7d\x6a\x11\x0f\x42\x32\x1f\x9d\x0f\x87\xa3\x84\x2b\xb9\x66\xee\x38\xa0\xd7\x59\xb1\x3e\x95\x1d\x26\x37\x60\x05\x3c\xc6\x9f\x76\xb7\x06\x02\x97\xde\xab\xf2\xa8\x0f\xdd\xc3\x67\x81\xb4\x54\x20\x04\x78\x7a\x92\xa9\x9f\x94\x9a\x3b\xdc\x05\x53\x25\x73\x3f\x7e\x54\x3c\x5c\xdf\x12\xe3\xc6\xf0\x86\x6d\xb1\x6b\x8e\x01\x80\x0b\xdf\xda\x05\x74\x9c\xdd\xa8\x3c\x47\xe5\xc4\xce\x38\x77\x78\x58\xfa\x88\x28\x13\xd7\x2b\x06\xac\x9c\x42\xcf\x6e\xfd\x30\xe5\xf4\x27\x50\xa0\x99\x31\x42\xb6\x34\x4a\x83\x3a\xda\xe3\xb0\x70\x42\x6c\xc7\xaa\xd7\x30\x2c\x2a\x66\xa4\xc2\x77\xe6\xc2\x92\xb8\xb8\xcb\x58\xe0\x59\x71\x57\x27\xf7\x79\x0d\x81\x83\x08\xf3\xaa\xc8\x88\x99\x45\xc3\xd5\x96\xef\x47\x15\x81\xd6\x0e\xe7\x9d\x00\x79\x5d\xe0\x33\x1a\xf4\xf1\xd2\x5c\xda\x52\x10\x57\xd6\xec\x06\xef\x42\xe4\x37\x8e\x4c\x5e\x85\xd0\x95\xfa\xf8\x07\x4d\x63\x78\x71\x14\xc7\xa4\x88\xef\xad\x1b\x23\xe3\x61\x09\x81\xe0\x3f\x64\x66\x7a\x97\x19\x54\x18\x35\x99\x40\x23\xfc\x23\x56\xfa\xdf\xa0\xfe\xa8\xb0\x22\xbd\xc8\x95\x68\xb0\x9e\xf0\xbb\x8b\x93\x72\xa6\xb3\xbd\xbb\xa9\x2c\x7c\xee\x98\x66\x4b\x57\xad\x46\x25\x43\x6c\xdd\x99\xfb\xf3\x9b\xa0\x9e\x62\x44\xdc\x64\xf6\xe1\x83\xa0\x1a\xa8\x46\xdf\x16\x2d\x88\x13\xa7\x74\xda\x08\xf7\xc7\x8f\xe9\xf2\x1b\xf3\x3a\x38\x92\xf2\xdf\x8a\x61\xc8\xdf\x1d\x51\x1f\xe9\x63\xa7\x2a\x73\xc5\x75\x8b\x06\xf3\x65\x91\xf9\x6a\x76\xca\x06\xdd\xab\xac\x2a\x82\xd8\x27\x4b\x1a\x79\xc8\x88\x02\x20\xc3\x76\x02\x18\xff\xc2\x56\x28\xa5\x28\x14\x7c\x32\x27\x25\x67\xa8\x44\x30\x33\x24\x96\xe6\xce\x7d\x6a\x41\x23\x9f\x5f\x1a\x68\x2d\x0e\x3f\xa1\x2b\xf0\x95\xb1\xcd\xbb\xb2\x02\xeb\xf6\xf1\xf5\x00\xf3\xe9\x53\x46\x70\xa2\x88\x33\x69\xbe\xd4\x51\x90\x53\xf5\x24\x39\x7d\x79\x8c\x3e\x6e\xe9\xc3\xb1\x5d\x6d\xee\xae\x7b\xce\x51\x29\xb2\xde\x13\x7a\xff\x81\xd1\x80\xbe\x4c\x05\x90\x27\xbf\xf6\x9d\xa6\x91\x10\x2a\x63\x99\x42\xcd\x53\xb6\x63\xd5\x28\xcb\x0d\xff\x70\x14\xd0\x75\xbd\x14\xee\x7d\x57\x3a\xe1\x49\xdc\xef\xd2\xc7\xc3\x2f\x1e\x4c\x22\x39\xe6\xe0\xcc\xf1\x87\x26\x42\xe5\xd7\x99\x33\xd2\x7f\x11\xed\x91\x75\x9a\x99\x10\x36\x89\x21\xc2\x9b\x3e\x0c\xfa\x8f\x09\x63\x80\x0a\x9c\x43\x24\xa4\xa1\xfe\x98\xde\x98\x37\x68\xec\x63\x2a\xd6\xca\xe1\x9d\xda\x88\x0b\x79\xc4\x8e\x8d\x2c\x32\xd9\x7e\x79\x74\xb8\xc4\x11\x92\x15\x33\x1f\xd3\xc7\x3b\x48\x70\x2e\xc2\x96\x53\x1a\x75\x2b\xf0\x4b\x24\x51\xbe\xfc\xe6\x36\x95\xc8\x72\xe6\x64\x92\x93\x5a\xd0\x1d\xa6\x26\x00\x5d\x3d\xe1\xf1\xe3\xb2\x1c\xf4\x11\x8b\x8e\x33\x2f\xa5\xfc\x31\x6f\xa1\x96\xfe\x72\x75\x59\x47\xcc\xd7\x16\x6e\xd4\x05\x03\xbd\x2a\x76\x4d\x29\xcc\x95\xcf\x4b\x64\x7d\x57\x77\xdb\xec\xee\x42\x4f\xf8\xce\x12\x80\x61\x2e\x7a\xd2\x77\xae\xb8\x53\xef\x31\x08\xdb\x4f\x71\xaf\xeb\xde\x81\xaa\xd3\x12\x6f\x90\x5d\x71\x9b\x92\x54\x45\x4e\x11\x79\x1e\x32\x29\xd4\xbf\x7b\xfe\xbd\xf4\x65\x77\xcd\x9d\xd9\xd1\x3d\x5b\xf4\xad\xf2\x37\x83\x38\xeb\x53\xdb\xf3\x29\xdf\x68\x1f\xe9\x93\xf2\x40\xc4\xb7\xb1\x00\xba\x7c\xee\x64\x7a\x7f\x77\xb6\x0b\xc2\xeb\xad\x13\xd3\x71\x8f\x5b\x9c\x61\x4f\x00\x12\xa5\xda\xd0\x99\xd5\xf4\x8a\x28\xa2\xb2\x65\x22\x53\xf5\x8a\x32\x3f\xba\x4e\xed\xec\x1b\x02\x64\x27\xfa\xde\x3c\xfd\xfd\xc9\x7e\x28\x9e\x22\x82\xbc\xe8\xe9\x64\xb6\x8e\xd4\x8a\x31\x86\xdd\x44\x82\x3f\xf7\xc1\x54\x48\x28\x48\x8d\x8f\x46\x3c\xd2\xac\xb3\x24\x18\xe9\x72\x8c\xf2\xc8\x6e\x20\x06\x41\xeb\x02\x54\xc7\x2f\xf6\xdf\x86\x0d\x22\x75\x62\xc6\x95\x50\x66\xc8\x7b\xea\xdd\xd2\xba\x74\x5b\xca\xee\xde\xa2\x9d\x21\x84\x19\x81\x23\x8c\x88\x25\xee\xf3\xe9\x67\x20\xb0\xbd\x61\x73\x2f\xe4\xcc\xfd\x42\x3b\xa7\xb0\x52\x4a\xe5\xa6\x1b\xf9\x5f\xee\x4e\xce\x14\xd4\x2c\x0b\x9c\x5b\x60\x43\xb9\x56\x23\x5a\xe4\x27\x46\x80\xae\x99\xeb\x33\x61\xde\x9b\x3f\x91\xde\x62\x0e\xf5\x7c\x91\x92\x67\xac\xbd\xa9\xe2\x95\xdb\x4a\xf2\xfe\xd0\x63\xa0\x5a\x61\xd8\xc3\x88\x09\xf1\xb5\xc2\xaa\x74\x33\x94\xba\xb8\x8f\x38\x45\xc4\x87\x50\x7a\x0a\x37\xe2\x8d\x09\xa0\x9b\xd5\x6c\xcf\x91\x5b\x39\x15\x7a\x2a\x22\x9e\x80\x7c\x66\x77\x3a\x53\x37\x49\xdc\x36\xb9\xfb\x70\x8b\x2a\xef\x20\x7c\xe0\xe9\x51\xa2\x7f\x7f\x2d\xf1\x7d\x5c\x64\x94\xc2\xa9\xe8\x32\x4d\xee\x93\x8b\x4b\x25\x1a\x2f\x99\xe2\x12\x10\x2e\x6c\xe4\x53\xd1\x3e\xca\x0c\x63\xfa\x84\x2e\xba\x47\xb1\xf4\x6e\x04\x26\xae\x28\xf0\x7c\x46\x84\xb0\xdc\x9f\xda\x34\xc6\x32\xc3\xb5\x84\x99\xc9\x8f\x15\xf7\xf0\xc8\xa4\x00\xe4\xaf\x6c\x20\xf3\x91\x0f\xd3\xb9\x5a\x31\xaa\x3f\x84\x48\xbb\xe2\x45\x5c\xde\x75\x36\xe8\x77\xdb\x36\x10\x71\xc9\xcc\x9f\x9c\xf8\x2a\xd7\x48\xb3\xc2\xed\xbb\x6f\x69\xe9\x42\xc3\x8d\xa2\xbe\x2f\x51\x07\xb9\xdf\x83\xa6\x46\xc7\xbc\x79\x73\x79\x27\xf7\xe5\xb5\x70\x22\x14\x3d\x30\x31\xfb\x79\x5e\x85\x94\x8a\x94\xb5\x8c\x5e\xcc\x6a\x0d\xe5\x2e\x61\xeb\xe1\xb3\xc7\xd2\xf1\x89\xd6\x5d\xcc\x62\x12\x80\x27\xcd\x41\xb9\x1d\x14\x12\x8a\x9f\xe1\xcb\xc5\xf4\x5a\x75\x71\xd2\x35\xfb\xe8\xda\x44\x27\xca\x21\xc2\xdc\xf9\xee\x93\xe3\xe1\x91\xb7\x6a\xf5\xaa\x19\xf1\x8b\x8f\xfe\xe2\x21\xa9\x6b\xb9\x0c\xf5\x63\x48\x83\xfd\xc8\x4c\xed\x4b\xda\x4a\x6d\xb6\xa0\x5b\x7d\xee\x89\xf4\x88\xcd\xa4\x0e\x71\x49\x85\xd6\x66\x00\x41\x70\xab\x3f\x7d\x42\x23\x5c\xc6\x28\x76\xbe\x4d\x88\x43\x99\x97\xdf\xd5\xce\x0d\xd2\x57\xb0\x68\x10\x3b\x6d\xff\xf0\xc4\x78\x2d\x5f\x10\xef\x5d\x42\xfb\xca\xfb\xe0\x0e\x44\x5e\x0c\x57\xdc\xa2\x39\xaf\x61\xde\xf1\x94\x43\x82\xef\xae\x3a\x1b\xcc\xde\xa5\x6e\x90\x45\xa2\xbc\xf0\x37\xda\x59\x51\x0d\x7c\x3f\x21\xb8\xec\xbd\x4d\xda\xf9\xd1\x12\x37\x55\x02\x67\x63\xfe\x8a\xeb\x5a\x40\x1f\xcb\xa9\xa2\xb8\x16\xbf\xae\x35\x5d\x76\x33\x5c\x0d\xfc\xb4\xa9\xd7\x55\xcb\xa1\x11\x5c\xd5\xa6\x0d\x2e\x0c\xfb\xad\xe9\xe3\x61\xd8\x11\xb2\x5f\x6a\x36\x70\xed\x24\x85\x7a\x33\x90\x67\x71\xe4\x4d\xac\xce\xf6\xa5\x56\x2d\x15\x34\x6e\x08\x88\x64\x1e\xf3\xa4\x74\xc3\x76\x4d\x5e\xad\x7d\x5e\xdc\xa9\xdc\xf0\x2a\x9c\x49\x62\x81\xec\x43\x55\x7e\x2e\x5e\xfa\xf4\x98\x14\xc9\x57\xb2\xd0\x6a\x42\xfb\xaa\xb0\x82\x4a\x97\xc3\x74\x88\x2b\x6d\x19\x0d\x5b\xf3\xa2\x79\x93\xfb\x02\xa0\x31\xf9\x01\xff\xc3\x28\x17\x1e\x96\x5e\x36\xbe\x41\x66\x38\xcd\x64\x88\xdc\x89\x09\x50\x1c\x27\x90\xe2\xf9\xea\x85\x5c\x77\xdf\x18\xa8\xff\xe5\x7b\xc2\xad\x7f\xc4\xed\x9a\xa0\xbc\x4f\x19\x96\x04\xbd\xf4\x37\xf8\x07\x92\x64\xf4\xe2\xa2\x53\xe8\x09\xc9\x76\xad\x03\x76\x43\x80\x71\xbf\x18\xad\x87\x7f\xac\x35\x41\x1b\x85\x6a\x61\x42\x59\xce\xf4\x8e\x53\xf0\xba\x86\xc3\x9f\xe6\x64\xcd\x3b\x9c\x21\xd7\xf4\xa8\x44\xee\x64\xff\xe3\x3e\x0d\xaf\xc5\x68\x50\x15\x5f\xd7\x31\x31\x49\xec\x7c\x5a\x04\xa7\x7a\x26\x4c\x79\xf2\x97\x08\x73\x54\x1a\xf1\x03\x69\x68\x7a\xa5\x6b\x52\x17\x7b\x44\xd6\xa2\xe1\xc1\xb6\xf1\x4d\xe9\xa8\x72\xcf\xcb\x65\x5f\x55\x9b\x8c\x7b\x8f\x18\x02\xf3\x74\xfe\x41\x0d\x90\x66\x18\x41\x55\x00\xe2\x44\x9a\xbb\xe9\x43\x91\xf4\x19\x0c\xf3\xa6\x48\xf6\xfa\x89\x6a\x49\xdb\x4d\xed\xb6\xcc\x3d\x77\x8f\x82\x89\x03\x07\x3e\x5d\xd5\x05\xac\x81\x30\xf2\xa1\x8c\xd0\xae\x73\xc0\xd9\x5e\x8c\x2a\x42\xf8\xdb\xeb\x44\x5c\xbb\x8a\xbb\x6e\x29\x1a\xd0\x39\x27\x9b\xcc\x61\x02\x3f\xae\x40\x0e\x4d\x39\x4b\x87\xfd\x39\x62\xb5\x3e\xde\x37\x41\x2f\x5c\x70\xf4\x46\xea\xae\xc0\xbf\xfd\xe8\x79\x91\xb4\xd3\x92\x2f\x0c\x50\xb3\x6c\x59\x9a\x48\xd9\x31\x9b\xe7\x8b\x27\xc7\x83\x1a\xce\x94\x73\x52\xe4\xcb\x06\xe8\xfe\x83\x83\x18\x72\x88\xa7\x79\x70\xa8\xbe\xc4\x98\xa0\x72\x99\xd8\xf5\x05\x3d\xe4\x1b\xcb\x94\x24\x6b\xf7\x1c\xe1\x25\xab\xe7\x1b\x0b\xda\x47\x28\xc1\x84\x42\x4f\xf8\xf6\x10\x35\x64\x45\xbc\x4b\x90\x1d\xa6\x63\xd9\xea\xc4\x4b\x39\xb4\x67\xbf\xd5\x9e\x34\x46\x09\xa7\x82\xf0\x58\xf7\xd1\xbb\xa5\xd1\x3c\x32\x05\xea\xe0\xa1\x3b\x27\x82\x02\xa9\xd8\x68\x9e\x31\x65\x4e\x4c\xd0\x2c\x03\x2d\x51\xf2\xc3\xde\xf3\xff\xdb\xa1\x32\xb6\x0a\x65\xc2\x6b\x20\xef\x0e\x69\x01\x79\x1c\x04\x6f\x8f\xd4\xa1\x7e\x62\x97\x0b\x20\xc9\x7f\x2b\xfd\x74\x6a\x35\x29\x44\x65\x7f\xb1\x48\xae\x59\x6a\xf3\xc9\xec\xef\x97\x27\x61\xc0\x27\xa8\xd0\x13\xba\x56\xb2\xf5\x3c\x4b\x35\x49\xc2\xc5\xc7\x21\x94\x8d\xd6\x88\x2b\x05\x07\x33\x7f\xbc\xe7\x2c\x19\xe4\x58\x89\x63\x9e\x0d\x31\xb2\x1c\xc8\x7d\xaf\x6b\xa2\x96\x76\x79\x81\xa6\x83\xb9\x72\x79\x3a\x6d\xf0\x70\x9f\x84\x7b\xde\x36\x24\xe1\xb5\xd7\xd3\x5a\x76\x99\x7b\xa1\x96\xa7\x41\xb0\xc4\xcf\xff\xdd\x8b\x7a\xeb\x99\x8b\x90\x0b\xd1\x90\x70\xe9\xcc\xb3\x5d\xc8\x93\x09\x6c\x8f\xbb\xfc\x71\x85\x90\x9d\x00\xe6\x62\x21\xb7\x2c\xa6\x9c\x97\x3f\xdb\x92\x82\xef\xf1\x13\x38\x7a\x37\x64\xbe\x56\xe6\x13\x57\x9d\xa3\xf7\x3e\xa0\x11\x83\x85\x7b\x3d\xa7\xba\x24\x89\x41\xee\xba\x63\x7a\x7d\xe2\x14\x89\x2b\xc2\x0b\x6f\x91\x4d\x79\x4d\x93\xed\x8e\x9e\xb8\x41\x1d\x0c\xb2\x90\x81\xcc\xaf\x0f\x4a\x88\x08\x46\x65\x0e\xf9\xfb\xc6\x07\xba\x68\x73\x50\xb6\xa4\x8e\xcd\x93\xbb\xb4\xcb\xc6\x88\x25\xcc\x5f\x43\x6a\xaa\x38\xf2\xd8\x0b\xaf\x67\x80\x35\x89\x99\x41\x4a\x81\xd4\xd6\xf9\xf6\x22\xd9\x8e\xc4\x76\x20\x3c\x5f\xa2\x0d\x6c\x2f\x50\x07\x5e\x85\x46\xe9\x4a\xf4\xd3\xff\xdd\x2e\xa5\xd3\x1c\xec\x9a\xa2\x0e\x1f\xc8\xfb\x4b\xc0\x30\x3b\x0e\xb9\x6a\xfb\x9d\x2f\x66\x08\x85\xc5\x94\x56\x38\x0e\x3e\xbd\xc5\xad\x77\x52\x06\xae\x36\x29\xc5\x03\x82\x9e\x81\xdc\xd8\x51\xf1\x38\x8a\xeb\x00\xf0\xf7\xf8\x50\x8b\xee\x13\xee\x96\xb9\xbb\x37\x3f\xb8\xda\xb6\xa6\x97\x20\x21\xb1\x20\xc8\xed\x4f\x6b\x7d\x09\x4a\x2b\x32\x92\xfe\xb5\x57\xde\x16\x66\x94\xf7\x35\xb9\x0e\xd0\x5e\xcd\xf2\x0e\xfb\x88\xd8\x0a\xc1\xf2\xcb\x9b\xd2\xdf\x34\xab\x7b\xae\xa8\xd3\xb3\x3b\x46\x6a\xde\xdd\xf1\x51\x38\x90\xbb\x7e\x84\xee\xc6\xcf\xed\xdc\x5c\xf1\x4a\xbb\x4e\x89\xc9\x84\x4f\xf8\x37\x5c\xb4\x13\xf4\x10\x09\x66\x22\x7f\x99\xa3\x71\xe2\xab\x88\x21\xbb\xd1\x1f\x4b\x86\xe4\xde\xdf\xaf\x51\x07\x69\xb1\x88\x19\xc1\xc9\x95\xe7\xde\xd2\x70\xd1\x06\x8d\xc5\x1f\x8f\xcb\x6e\x8e\x61\x21\x22\xc6\xf0\x7f\x18\x93\x84\x14\xe4\xf0\x0a\xf3\x4e\x21\xdd\x52\xb8\x92\x43\x4e\x9b\xe4\x2e\x43\x34\x51\x63\xb0\x34\x66\xf4\xf6\x0a\x81\x15\x17\xd8\x01\x62\x5a\xb5\x13\x15\xaa\x3b\x80\xb2\x8a\x4f\x44\x67\xea\x1b\x6f\x49\xfd\x4b\xea\x38\x51\xac\x87\x80\xd0\xb6\xa3\xda\xb9\xc8\xf3\x3e\x31\x19\xca\x7e\x6e\x25\x00\x78\x05\xe5\x32\xf6\x62\x1d\xee\xc6\xb3\x00\xc8\x1a\xb8\x2e\x5f\x51\xe1\xbb\x77\x9e\x29\xe3\x72\x29\x60\x62\xaa\x9a\xeb\xfe\x00\xc4\x10\xc9\x9c\xef\x09\xbf\xb4\x21\x89\x62\x65\xde\xb6\x51\x57\xf4\xfb\x53\x0a\xc8\x5f\xa5\x7c\x3a\xd2\xf1\x61\xfa\xb4\x70\x8c\x22\x23\x26\x06\xa7\x45\x78\x6a\x81\xaa\xa7\x89\x10\x58\xe4\x4e\x37\x12\x42\x10\xee\xd2\x74\xb7\x7d\x62\x54\x70\x62\xba\x38\xed\x5d\x11\xfe\xd7\x58\x98\xef\xf1\xb9\x87\xd4\x21\xe3\x44\xf5\x68\x50\xe4\xf9\x40\xfe\xf2\x43\xc9\x31\xd2\xe6\x37\xd9\x42\x65\x7f\xf3\x61\x82\x33\xed\x45\x4e\xdc\x38\xf9\xfe\xe2\xf4\x3a\xea\xa5\x45\x1b\x7b\x9e\x8b\x3d\xd9\x19\xcc\xf9\x1f\xa4\x73\xbe\x06\x46\x4c\xf4\xd0\xc2\x9f\x4f\x85\xe9\x4e\x60\xfb\x09\x42\x2f\xba\xf0\xa3\x27\xc6\x83\xa2\xa6\x99\xe1\xfd\x20\xa8\x55\xb1\x2d\xdf\x5e\xee\xc5\xf5\x2a\x80\x1b\xc8\x16\x63\x99\xe8\xe3\x36\x0b\x43\x9d\xc2\x0a\xe2\xda\xc4\xb7\xca\xb4\x0e\x52\xa8\xcd\x2d\x1a\xf6\x95\xbb\x79\xc9\x3b\xf8\x63\x5e\x9d\x83\xb4\x28\x4b\x7b\x5e\x36\x5e\xbb\x53\xb1\xf5\x2a\x9c\xeb\x39\xe7\x99\xf4\x07\xcd\x99\xd9\x3d\x67\x6e\x3c\x53\xfc\x44\x51\x04\xd1\xd5\x9c\xc6\x2a\xdf\xde\xa8\x15\xe7\x68\xa5\x6f\xe0\xb3\x58\x2b\x3e\x73\xa2\x5f\x25\x8b\x35\x6a\x07\xae\x8f\x18\x11\x21\x79\x5f\xe7\x48\x80\xa9\x33\x0a\x3d\xe1\xec\xcd\x80\xe3\x49\x3d\x20\xd1\x91\xfb\xce\x13\xe2\xab\x39\xbd\x91\x32\xc9\xa8\xbc\xfe\x24\x88\xdf\xc8\x15\xea\x9a\xb9\xef\x3c\x9a\xa4\x42\x36\x72\x13\x47\xf0\x91\xa2\x87\xc1\x61\x59\xa2\x26\x7b\x6a\x11\x1c\xbe\xd3\xba\xb0\x1c\xef\x19\xc8\xae\x7a\xe1\x5c\x90\x15\xd7\xf5\xcd\x7f\xdd\x6e\xb1\x97\x62\xac\x46\xa1\x27\xbc\x7f\x2f\x68\x3c\x73\x72\x34\x7f\xf4\x0f\x3c\x0c\xd0\xe9\x48\xfc\x63\x39\x9c\x1a\xa6\x79\x3d\x53\x26\xf1\x1a\xb9\xa1\x00\xbb\xd9\xd9\xde\x2e\x91\x82\xd1\x75\xcd\x35\xd5\x05\x97\x28\xc3\x75\x2a\x34\x62\x8e\xaf\x1e\x05\xce\x3d\x97\xa7\x32\x99\xed\xab\x74\x15\x67\x83\x94\x48\xe2\x50\x39\x4b\xc3\x8c\x20\xd7\xab\xe3\x58\xcc\x27\xf3\xdd\x45\x4a\x1b\x0f\xf9\x53\x91\x53\xbd\xc4\x6f\xea\xf4\x9d\xbf\x0e\x58\x63\x09\x20\x45\x78\x60\x67\x2c\x86\x2e\xd9\x41\x99\x3f\x74\x49\x15\x4b\x2e\xc5\x25\xd3\xea\xec\xb9\x53\xd5\x4d\x72\x36\x89\x6b\x8a\x14\x2c\x3b\x75\xd5\x24\xed\xc2\x7c\x52\x44\xb6\x1d\x13\x6b\xf8\xd5\x8f\xd1\x26\x3f\x88\x2b\x73\xc7\xdd\xfc\xf7\x1f\x50\x17\x86\x2a\x85\x2e\x2e\x82\x6c\x1d\x02\xd8\x12\x8b\xd6\x4d\xca\xa5\x67\x32\x0b\xae\x4b\xa5\x89\x7e\x12\x49\xb3\x97\xe6\xd5\x35\xf6\x62\xe4\x16\x6c\x1a\x70\x8a\xd7\x6b\x92\xe4\x5f\xc4\x31\x00\x3c\x3f\xf7\x1d\x55\x29\x79\x75\xae\x00\x32\x90\xfb\x4f\xe8\xf8\x6f\xdb\xdc\x6f\x7f\x20\xf3\x87\x55\xaa\xde\x50\x14\x01\x61\xa8\x11\x4e\xdf\xa0\xae\xb2\xbb\xa3\xd0\xd1\x71\x71\x07\xd7\x23\xde\xa3\xc9\xc5\x15\x03\x66\x62\x59\xd6\x65\x76\x6b\x16\xf2\x5c\xfa\xbd\xe0\x72\xd8\x69\x2c\x3a\x38\x12\xf2\xa7\x5d\x5c\xa6\xb1\x0c\x46\xf6\xad\x61\xe9\x3e\xba\x8d\xea\xa2\x78\xb9\x65\xf2\x18\x19\xb4\x7d\x86\x6a\xd8\x95\x39\xf2\x96\xf9\x52\xc6\x92\x18\x16\xb6\x6d\x00\x8f\xcc\x0c\x98\xb0\xfb\x53\x4e\x82\xd7\x94\x9d\x8a\x3c\x59\xa4\x5e\xc5\xa2\x8e\xd9\x6f\x91\x06\x70\x94\x0a\x1f\x66\xba\x98\x09\xe3\x7b\x5d\x36\xfc\xde\x13\xd3\xbc\x02\x71\x0d\xbe\x5c\xfc\xd8\x31\xef\xcf\x37\x69\xde\xd4\x3e\x32\x85\xca\x1a\xe4\xa0\x75\x9f\x8a\x31\x8f\x5c\x99\x2c\x0a\xdf\x5f\x9a\xfc\x37\x5a\x8c\x9e\x94\x77\xec\x4f\x7f\xf0\x85\xd1\x4a\x2c\x08\x2b\x18\xcf\x99\x39\xe3\xc2\x0b\xb9\x8b\x0b\x20\xdb\x75\xcf\xed\x6c\xe3\x2e\x53\xe7\xdf\x07\x2d\xad\x0b\x55\x62\x53\x9e\x45\xce\x0b\x01\xe6\x05\xdb\x55\x4e\xc6\x08\x7f\x2d\xb1\x97\x4b\xa3\x54\xc3\x35\x71\x3f\x94\x85\x78\x55\x1b\xeb\x93\x78\x95\xe7\xb6\xd4\x80\x0b\x23\x62\x88\xeb\x2e\xbd\x03\xc8\xbb\x02\x0a\xb7\x7c\x8d\x2a\xaf\x4c\xda\x54\xee\x9d\x1a\xdf\x34\xe3\xe5\x7d\xcd\x38\x1a\x95\x26\x83\xae\x16\x75\x4d\x21\x71\x2d\x57\xd5\xff\x68\x54\x22\x0b\xf1\xa9\x83\xc0\xf6\x2e\x36\xc5\xf2\xf1\xeb\x94\xb7\xed\xe4\x09\xf7\x1f\xa0\xa2\x77\xb8\x4e\x04\x36\x09\xb7\x71\xd8\xe7\xeb\x5a\x9b\xc8\xb7\x78\xbe\x13\x8e\xbb\x1f\xe2\x27\xb1\x2b\xbc\x88\x73\xf4\x7a\xf5\xe3\xce\x79\xc9\x62\x3f\x67\xed\xe0\xca\xec\x72\xba\x7b\xed\x5d\x4d\x55\x17\x66\x18\xc7\xb1\x65\xe3\x71\x6d\xaa\xc6\x90\x19\xe3\xaa\x72\x0b\xe7\x6a\x94\xbe\x86\x4d\x5c\x93\x07\x4e\x0e\x3e\x9d\xba\x48\x6d\x6e\xce\xee\x4e\x35\x25\x47\xad\x86\xdd\xba\x04\x74\x73\x96\xab\xad\x44\x3b\xfa\x4b\xbb\x21\x49\xfe\xd9\xaf\xec\x93\x5c\xfc\xa0\x4c\x3d\x1b\xf1\xd3\x45\xf2\x2d\x66\x5c\xa7\x6c\x37\x6d\x8c\xcc\xe6\xe2\x23\x7b\xe6\x44\xb1\x73\x96\xe1\x3a\xf1\x61\xe3\x65\xfa\x87\xe9\x8d\x6f\x51\xb1\xf1\xb3\x9f\x93\xd2\x45\x2e\xaa\x14\xa3\x0a\xfb\xed\x7c\xfa\xfa\x7c\xdc\x87\x3c\x69\xec\x1e\x5d\xc4\x3f\xed\x6a\xe2\x39\x96\x08\x73\x62\x95\xef\x9b\xc6\x27\xad\xfe\x22\x6e\x9e\x08\x8d\xd8\x04\xa6\xe0\x12\x89\x22\x9c\x4d\xbe\x5c\x3a\x0f\x1c\x9f\xcc\x24\xc8\x10\x24\x30\x6e\xb2\x2d\xa5\x77\xba\x01\x19\x3f\xb0\x7d\x7e\x20\x3e\xfd\x94\xbe\xa3\x54\x8c\xb2\xd6\x43\xec\x56\xe0\x92\x92\x50\x5f\x7d\x41\xa3\x02\x07\xe5\x84\xfb\xfd\xfe\x52\x08\xff\xf7\xa3\x22\x45\x18\xf8\xac\xbf\x4f\x6d\x7e\x9b\x22\xa1\xbb\xf8\xda\x03\xc9\x86\xab\xd2\x66\x1f\x94\x8b\x5d\x20\xc8\x10\xdd\x8c\xcc\xdb\x1f\xad\xc1\xc3\xdd\x4b\x7e\x91\x7d\xf1\x10\x90\x27\x63\x9c\x09\x15\x6b\xf4\x67\xbe\xa4\xa6\x28\xa5\x26\x85\x9a\x70\xaa\x46\x89\x62\xc8\x24\x54\x42\x3f\x4a\x6f\xaa\xce\x5f\x99\x21\x3f\x65\xef\x17\x2e\x3e\xd8\x0a\x38\xf2\xc8\xf5\xec\x58\x96\x3b\xfb\x8d\x7e\x00\xa4\x26\x4e\x09\x33\xca\x6b\x81\xf0\x8a\x95\x9a\x74\xb3\x2f\x4b\xc5\x2b\x00\xfc\xa9\x4a\x99\x4b\xcb\x0c\x55\x85\x8e\xde\xfe\x2d\xe7\xe8\x69\x90\x11\x6b\x50\x84\xef\x4d\x55\x97\xd8\x8b\x6a\xc4\x4f\x4d\xbf\x33\xff\x7e\xb0\x69\x5e\x5a\x66\xb8\x9c\xb0\xed\x32\x3b\xc5\x90\x8c\xdf\xb9\x6a\xc9\x86\xd7\x8e\x48\x9e\x59\x2f\x0d\xf4\xe4\x0e\x6b\x9a\xba\x26\x62\xd2\x8c\x22\x7b\xe3\x84\xb1\xf2\x4d\xbb\xe5\x02\xaa\x23\x09\x2f\xc8\xfe\xfe\x66\x4d\x5b\xd2\x22\xb2\x75\xd7\x21\x21\xb8\x9f\x9b\x78\x0e\xa0\x3b\xdb\xa5\x28\xca\x52\xde\x81\x89\xae\x73\xfe\x0b\x23\x92\x13\x81\x2f\xab\xd5\x07\x75\xf9\x57\xe2\x12\xea\x8a\x50\x18\xf6\xa5\x2f\x10\xd7\x12\xf2\xce\xb9\xd0\x57\x93\xf8\xc4\xa0\x22\x68\x8d\x58\x3d\x3a\x8e\xdf\xd1\xbe\x94\xfa\xea\xcb\xb6\x29\xf9\xa5\x20\x91\x28\xbf\x06\x12\xa5\x70\x5f\xac\x4e\x9c\x9d\xb4\x56\x75\x25\x3d\xde\x3c\xce\xdc\x76\x20\x0d\xcc\x10\x1e\x25\xb6\x14\x36\x4a\x07\xa1\xc7\xa6\x01\x8c\x33\x31\xb1\x43\x0c\x8b\x7b\xbe\xdf\x72\x67\x7a\xbc\x40\x51\x30\xa3\x99\xab\x9d\x69\x9f\x70\xa6\x3c\xfe\x85\xcd\x42\x74\x49\xa7\x0d\x07\x50\x71\xc4\x1a\xfc\x48\xf8\xca\x46\x9d\x56\x60\x57\xe2\xac\x76\xe7\x06\x08\x0f\xf1\x7d\x5b\x28\x6e\x5e\xd4\x7b\x86\x0c\x77\xd5\x8a\x78\x90\xb3\x6e\x02\x92\x37\x5c\x1a\xaa\x67\x20\x73\xfe\xf5\x93\xb4\x63\xc3\x45\xa6\x66\xe5\x98\xbf\xfa\x05\x5d\x0d\xab\x4c\x62\x4f\xb6\xeb\x42\x50\xba\x92\x4a\x05\x11\x9b\xeb\x65\xbc\x76\x48\x21\x0c\xfd\x28\x09\x1c\x7f\xef\x38\x30\xc7\x64\xb5\x06\x84\x09\xfc\xe0\x05\xb1\x0a\x57\x20\xd7\xe4\x42\x11\x32\x08\x3f\xb2\x46\xef\x46\x0b\x65\x9d\x7a\x54\x8e\x0b\xaa\xf6\x8d\xf7\xc0\xf9\x28\xab\xc8\x28\xf6\x08\xe8\x6d\xcd\x6e\x4f\x54\x0e\xe2\xca\xe9\xf8\x3e\x8d\x47\x8b\x1d\x69\xad\x1d\xee\x3a\x90\x84\x3a\x46\x9a\xd1\xcd\x0f\x6c\x49\x06\x2c\x1d\x33\x79\x1a\xbb\x76\xa5\x86\x27\x11\xb1\xdc\x16\xec\xc6\xbc\xfd\x84\x06\x6e\x0a\x18\x65\xb1\x17\xd0\x69\xa3\x44\xe3\xa8\xa3\xab\xbb\xd0\x13\xce\x02\x1e\xef\xc4\xed\x0d\x18\xe7\x7d\x87\x9f\xd2\xe4\x7b\x2d\x54\xc4\xcc\x44\x51\xd1\x27\x65\xa3\xbe\x34\x4c\xc3\xd4\xd2\x78\x79\xfc\x76\x25\x60\x9d\x70\x85\x57\x31\xbb\x3c\x77\xb5\x9e\x4e\x04\xdc\xea\x51\x4c\x7e\x56\x2e\xd7\x0b\x29\x57\x58\xed\xf1\x12\xfb\xe3\x6d\xea\x08\x73\x91\x5f\xc7\x5e\x53\x1d\x95\xef\xdc\x90\xfe\x84\xd9\xb3\x81\xa7\x5d\x6e\xaa\xd6\xa2\x88\xea\x28\x64\x58\x5c\xe5\x55\x3c\x98\x7b\x8f\x41\x60\x97\x89\x6d\xfe\xcd\xa7\x3f\xdf\xaa\x55\x0c\xbe\xec\x51\x65\x9f\x1f\xa3\x6b\xac\x51\x81\xfe\x14\x44\xb9\xf3\x9f\xd0\xb5\x9d\x02\xe6\x46\xf9\x93\x30\x60\x7f\x66\x10\xca\x5b\xdc\x93\xcd\x8c\x3b\x99\x04\x15\x3f\x90\x6b\x33\xfc\x7f\x8f\x9c\x03\x73\x48\x8f\x72\xaf\x21\x39\x04\xcb\x9d\xd9\xa7\x2e\xbf\xb3\x73\x66\x27\x87\xa2\xe7\xff\xdf\x4c\x6d\xe6\x41\x4c\xb3\x91\xe2\xef\x67\xbe\x20\x64\xea\x0a\x2b\x69\x8d\xfa\x2e\x80\x47\x66\x87\x3f\x96\xbe\xc1\x3a\x62\x51\x9e\x19\x9f\xe7\x17\x3d\xa5\xf6\x17\xf1\x38\xe4\x5e\xfd\xed\xa3\xb7\xe9\x3a\x54\xae\x10\x0a\xe6\x8f\xee\xb9\xa7\xd2\x4f\x75\x56\x5b\x77\xa7\x3c\xe6\xfe\x72\x0a\x96\xc3\x88\xf0\x18\xf9\xcf\xef\xa8\xf4\x59\x92\xdb\x4a\xc4\x15\x70\x95\xfc\x8c\xdd\x2d\xca\xf7\x55\x5d\x43\xf8\xe7\x45\xa7\xcb\x83\x46\xcc\xa0\x96\xad\x8f\xeb\xcd\x98\x26\x93\xb9\x75\x7b\xda\x68\xbf\x44\x4a\x48\x6a\x23\xa6\x03\xe7\x2d\x2f\x89\xcf\xaa\x4b\x37\xac\x93\x8f\xfe\x0d\x99\xad\xe8\x6c\x79\xae\x5f\xcf\xe7\x6b\x89\x22\x54\xe6\xf6\x9a\x2a\x21\x4d\xc4\x20\x2d\xee\xa2\x29\xa0\xfa\x8d\x4e\x01\xce\x06\x39\xa6\xab\x9b\x51\x33\x30\x92\xf2\x00\xbf\x93\x8c\x6d\x1a\x08\xf8\x77\xd6\x8e\xaa\xbe\x50\x99\x33\xf4\x32\xc1\xfc\x26\x7f\x31\x89\x92\x15\x0b\xb6\xb4\xe7\x0c\x10\xd3\xa2\x9f\xfc\x0a\xa0\x8c\x44\xa1\x1f\x4e\xd8\x03\x31\xa4\x4a\x25\x60\xeb\x99\x20\xc9\x10\x58\xea\x9b\xdf\x19\x21\x33\x9f\x40\x9c\x10\x43\xdf\x6b\x8a\xad\xdc\x33\x4e\x0d\x3f\xf2\xc5\x95\xe3\xd3\x38\x46\x55\x7d\x46\x45\xd8\x2b\x9a\x43\x0c\x61\x09\x42\x64\xa5\x32\x29\x26\x88\x15\x7a\xc2\xb9\xef\xa8\x6c\xa1\x4e\x6c\x9b\x20\x07\xac\xfa\xb1\x8f\xa9\xc5\x8b\x05\x11\x4b\xb1\xbe\xf6\x37\xcb\xa1\x04\x4c\x4e\xc4\x2f\x1e\x0e\x98\xdf\x3e\x76\x1c\xf1\xa8\x2e\x79\x5c\x1f\xbf\x10\x65\xe8\x71\x7e\xcb\x19\x2a\x75\x8f\x92\xbc\x61\x0f\x9c\x11\x67\xae\x92\x25\xba\x2f\xe9\xa6\x33\x21\x31\xfe\x20\x00\x79\x17\xa3\x50\x95\xca\xda\x2e\x1b\xae\x73\x84\xa8\x13\xdb\xd1\x2e\x38\xa9\x4a\x55\xb7\xd9\x7a\xf6\xae\x57\xd4\x0d\xcc\x9a\x37\xaf\x6d\xb6\xa0\xa9\xdf\xb8\x27\x21\x04\xbb\x4d\x23\xec\xdc\xfb\x25\x88\xd4\x2b\xd9\x01\x76\x0d\x01\x20\xcc\x7f\x6a\x6a\x4a\xff\x45\x8a\x4d\x4f\x1d\x9e\x5e\x6c\x25\x1b\x9b\x9c\x3d\x2d\xc6\x17\x07\xba\x81\x4a\x3d\x54\xb3\xac\xb6\xe9\x2c\x49\xe6\x51\xd7\xc5\x76\x3c\x9b\x59\x7e\x7f\x0b\x64\x20\x46\xa1\x40\x08\x51\xfe\xec\x35\xcd\xe8\x86\xd4\x88\xa2\x9a\x5d\x3b\x22\x7d\x3d\xe5\xe8\xd0\x77\xa9\x1c\x06\x85\x9d\x63\x20\xac\x22\x8a\x18\xfc\xad\x5e\xa3\xb1\x83\x70\x21\x0a\x73\x31\xc0\xe5\xc6\xfd\x40\x3a\x15\xdb\xe5\xa8\xc2\xe5\xe0\x9e\xe5\xe0\x50\xf5\x2a\xd8\xe5\x5b\x39\x5c\xba\x5d\x7b\x67\x38\x51\x78\xc9\xbd\x34\x4e\x23\x41\xd9\xb4\x8c\x64\x63\x2a\x77\x78\xbb\x82\xbb\x72\xbb\xa4\xf8\x61\x4d\xde\xa8\xc8\x18\x26\xe2\xcd\xd8\x47\x5a\x52\x42\x1e\x44\x72\xc2\xb3\x7f\x3d\xac\x80\x25\x05\x16\x34\xd7\x8f\x74\xa1\xda\xc1\x75\xca\x17\xe5\xef\xbb\x00\x29\x91\xc7\xb0\x42\x4f\xf8\x3c\x30\xd5\x9e\xd3\x36\x8f\x37\x6a\x7e\x3c\xe1\xe3\x6a\x33\xf5\xf9\x94\x49\xd6\x4e\xfa\x80\x1e\xad\xd5\x51\xf3\xe6\xce\x2e\xcc\x8d\xdb\x05\xf3\x4f\x01\x57\x28\x6c\x12\x43\xba\x90\xe6\x27\x69\x16\xf8\x51\x79\x1e\xdb\x17\x65\x97\xbf\xa3\xad\x32\x86\x5c\xc3\x22\x5e\xac\x14\xb2\x9d\x01\xed\x46\xe2\xb1\xa0\x1a\x55\xd2\xb7\xdd\xab\x7e\x8a\x0c\x29\x10\x1c\xde\xa4\x99\x93\x97\x90\x91\xc4\xc6\xec\x47\x36\xa8\x53\xa9\x81\x98\x19\x2d\xf1\xaf\x15\x01\x0a\x19\xfa\x22\x8d\x7a\x53\x6b\x24\xba\xa2\xcf\x28\x35\xa0\xa2\xbb\xfa\xf4\x3e\xa8\xb7\x03\xd4\x0d\x81\x3a\x1f\x97\xc4\x83\x83\xa3\x39\x43\xcf\x85\x70\xd9\x66\x15\x97\x7b\x65\x81\x82\xaa\x48\xcc\x48\xa2\x9f\x4e\x2c\x35\x2d\x3b\x6a\x9b\x1c\xb3\xf1\xe4\xb3\x1f\xd3\x0e\x78\xb7\x2c\x74\xac\xe2\x89\xc1\xe7\xf6\x6b\x02\xb7\x8c\x06\xb1\xfe\x74\xae\x6f\xdf\x18\xc8\x77\x17\x03\x81\xb0\xbe\x45\x8a\xec\x0b\x7d\x08\x99\xbc\xf4\x2c\xf9\x98\x16\xfb\x6d\x1b\x15\xa9\x52\x75\xc9\x2f\x7f\x36\x9d\x13\x5c\xc8\x75\x05\xa3\x25\xf7\x84\x09\x5a\xf9\x9c\x7e\x57\xa8\x72\xa6\x7a\xfe\x63\x9a\x7d\x94\xa8\xe9\xcb\x0d\x39\xac\x7d\x7b\x07\x10\x6c\x27\x65\xab\x50\xa5\xf5\x78\x6c\xf1\xd1\x99\x63\x60\xdb\x3d\xb6\x2d\xda\xd9\x37\x46\x56\x16\x06\xa3\x9e\x41\xab\x82\x50\x5c\x0c\x01\xd4\x0b\x33\x0f\x37\x0a\x3d\xe1\x86\x1d\xba\xdc\x6b\x09\xfb\xd1\x3d\x8b\x93\xe2\xd6\xa1\xa3\xc1\x01\xe4\x5b\xfc\x87\xa5\x67\x81\xa3\x55\x22\x3f\xb4\xbd\x57\xbd\x59\x64\xeb\xea\x4c\x03\xf9\xd5\xeb\xce\xd3\x8e\x6e\xac\xcc\x68\x64\x86\xbb\x63\xb5\xa6\x08\x87\x6d\x82\x4b\x71\x33\xff\xee\x97\x54\xc0\x35\x95\x2a\x53\xf8\xc8\xbd\x17\x68\x59\x79\x91\xb2\xc1\x08\x7e\x99\x0f\x99\xae\x51\x20\x5c\xad\x13\x25\x8d\x4f\x2c\x1d\x29\x97\x02\x76\x44\x19\x31\xfa\x79\xa9\xa2\xef\x54\x29\x13\x6a\x0b\xe1\xdf\xad\x4f\xdf\x8a\x45\x6d\xbb\x51\xa7\xd4\x14\xbe\x66\xd1\x5a\x79\xe2\x84\x08\x6b\x4b\x82\x62\x91\x2f\xa9\xaf\xde\xd7\x02\x32\xdf\x28\x3c\x09\x54\x5d\xee\xb4\x12\xa0\xb0\x61\xdf\xa2\x26\x31\xe2\x52\xfb\x5b\x47\xc6\xab\x03\xad\x79\xec\xd2\x3e\x12\x18\xe3\x50\x46\x1d\x04\x61\xb5\xcb\x74\xf1\x18\x0e\xd7\xe7\xfd\x94\xce\x75\x3a\x0c\xc7\x0f\x98\x2b\xa9\x09\xf9\xbb\x5c\x35\x04\xe7\x7a\x9b\xb9\x37\xb5\x52\x96\x30\xdf\x12\x5d\xef\xec\xc1\xc3\x62\xb1\x5d\xc6\x02\xd7\xe4\xa9\x2b\x5f\x0d\xdf\x3b\xa4\x13\x72\x7c\x9f\x17\x5e\xfc\x9e\x7f\xbd\x5a\x23\x65\x07\x9e\x4d\x1c\xe8\xed\x97\xf3\xb3\xc9\x45\xb4\xcd\xe5\x63\x9b\x0d\x1a\xfe\xaa\xab\x73\x76\x9c\x8b\x7f\x75\x98\x3e\xf5\xf4\x94\x91\xd8\xa5\xf3\xd3\x5f\x86\x4a\x8c\x18\x12\xee\x2a\x09\xcc\x73\x1f\x4f\xa9\x21\x73\x80\x90\x68\xc8\xfe\x70\x9a\x56\xd3\xd5\x48\x8d\x0f\x14\xf8\x20\x7f\xc6\x7c\x01\xf6\x58\x86\x59\x3f\xd5\xa5\x57\x06\xb2\x1b\x9e\xd6\x78\x57\x06\xe2\xfd\x0e\x5e\x14\x0a\x5a\x57\xd6\x38\xa5\xd1\xf0\xa3\x7a\x21\x2e\x74\x67\x0d\x6f\xf2\xa6\x25\x5e\x54\x7f\x71\xf8\xc2\x69\x8b\xa0\x9a\xb9\xf0\x50\x8e\x3e\xf2\x96\xa9\x69\xd2\x6b\x15\xb1\x28\x73\x94\x65\xa2\x7e\x68\xfe\xe6\xa5\x34\x22\x1e\x31\x31\x40\x1d\xb4\x86\xf8\x3f\x4d\xb2\xb1\x8a\x38\xfb\x5e\x5c\x6e\xf6\xbf\x34\xe3\x6f\x87\x8b\x9a\x72\x04\xd3\xc1\xe9\x92\x62\x59\x98\x15\xa5\x6a\xf9\x4b\xf2\x1a\xae\x51\x80\x6b\x65\xff\x2a\xb7\x6f\x91\xea\x53\x71\x98\x0e\x4f\xd3\xd6\x0f\xd3\x92\x5a\xee\x45\x1a\xe7\x1f\xbb\x81\xcf\xaa\x2c\xb0\x38\x98\x21\x10\x8c\xc3\x93\x4b\x15\xf8\xc0\x26\x51\x26\xe0\xf9\x90\x75\x91\xdf\x3c\x06\x8e\xac\x4a\x44\xfa\x68\x64\x8a\xc3\x63\x76\x68\x37\xf7\xa5\xfc\xeb\x01\xb5\x61\x3d\xca\xcd\x74\xdd\x78\xd9\xff\x7a\x33\x9c\xbf\x62\xee\x16\x99\xbf\xb1\xbf\x99\x64\x49\x90\xed\xc7\x18\xfe\xdc\x56\x57\x53\x93\xc0\x86\xe5\x52\x9b\x96\x1b\x72\x47\x2e\xdc\xa4\x8e\x69\xa4\xa6\xe1\xe1\xd1\x55\xea\x9e\x90\x67\x15\x1b\x05\x13\x17\x6c\x54\xe8\x17\xe4\xfe\xf0\x0f\x96\x88\x42\x3d\x9e\x81\x84\x04\xd3\x7d\x6f\x02\x04\x31\x75\xaa\xd8\x27\xf1\xc0\xf1\x85\x37\x35\x76\x15\x3f\x3e\x68\xc9\x9f\x31\xbf\x19\x43\xb1\x4a\x92\xd2\x90\x6d\xd6\x53\xe6\xec\x37\xbd\x36\x1a\xcc\xbf\xdd\xb2\x60\x83\x7f\x7a\xbd\x3a\x1c\x18\x35\x2a\xd8\xe7\x74\x0d\x6c\x4b\x00\xca\xdb\xf3\x55\x46\x66\x52\x1e\x78\x27\x1d\x50\x2e\x32\x0e\x44\x8f\xfe\xfa\x40\x93\x7b\x02\x4e\xcc\x7c\xb3\x67\xd8\x62\x42\x72\x95\x85\x18\x43\xfd\xc0\xed\x3d\xbf\xb8\x3f\xbd\x1d\x4b\x81\x6d\x17\x7c\x8b\x51\xde\xf1\x10\xf9\xc0\xd0\x67\x41\x48\x0d\x0c\x2b\x15\x52\x77\x6f\x4c\x6a\xa0\x80\x07\xc6\xb6\x9d\x7a\x7b\xb6\x4a\xbd\xa4\xb9\xd0\xa5\xd1\x78\xca\x0c\x71\x78\x61\x82\x4c\x7a\xb9\x4d\x43\x7a\xcf\xf5\x2d\x79\x1d\xff\x7e\x44\x3c\xe0\x6b\xaa\x51\x95\x02\xdd\x9a\x5f\xbc\x2d\x05\x7b\xc1\x8d\x78\xed\x7d\x4b\x63\xa2\x15\xec\x38\x04\xe6\xdb\x35\xd9\x35\x93\x3b\x5c\x8b\xad\xf6\xcb\x17\x92\xe7\x8c\x4d\x20\xcb\x92\xf1\xfd\x56\x85\x93\xa9\x42\x00\x60\x76\xce\x7b\x13\x06\xad\x44\x62\x40\x75\xae\xb4\x52\x43\xad\x05\x7d\x81\x54\x1c\xea\x19\xc8\x5d\xb0\xf8\x2c\x3d\xa5\x95\x2e\xa3\xc7\xb7\xa6\x63\x35\xf5\x3c\xec\x13\xa4\xdc\xcb\xc3\xa5\xed\xcd\xe6\xf1\x1e\x77\xc2\xe2\xeb\x7b\xd5\x5e\x71\x1c\x2d\x16\x13\xce\xf8\xa1\x7d\xf1\x6e\x15\xe0\x91\x61\x11\x5c\x93\x24\xad\xdc\x4f\xd6\xb4\xa6\x57\x9e\x5a\xca\xdf\xbd\xbb\x69\xac\x20\xc7\x4d\x02\x7a\x95\x99\x71\x9f\xf8\xb2\xee\x99\x5d\xdd\x73\xb8\x7c\xb8\xc8\xe8\x9e\x3f\x37\x55\x97\x63\x96\xb2\x71\x1c\xf3\x0a\x40\xe1\xb8\x98\xcb\xc0\x55\xf8\xb5\x6c\xdc\x00\xaa\xde\x66\x6f\xda\x4d\xcf\x8a\xaf\x8b\x65\x8e\xa8\xcd\xc3\xfd\xc9\xb5\x83\x1d\xe6\x31\x4b\xa5\x08\x30\x3f\xc8\xc1\x36\x89\x55\x3b\x72\x17\xec\xd7\x26\x3b\x22\x98\x73\x39\xdf\x29\xe9\x01\x0e\x8a\xf9\x56\xeb\x34\x2b\x0e\x2f\x7a\xf1\x98\x94\x5d\x5f\x62\x8c\xb2\x8d\x93\x12\xc3\x68\xb0\xc0\x27\x5c\xcf\xfd\xad\x85\xca\x5e\xc1\x0b\x18\xe3\xc5\x24\x54\x7e\xcc\xbc\x77\x7b\x7a\xc0\xce\x49\x49\xc8\x26\x09\x29\x85\x9f\xd2\x33\x5a\x35\xa6\x11\xf2\xa3\x10\x0e\x21\x66\x03\xf9\xce\x55\x23\x81\x98\x4b\x94\x79\x5d\x72\x42\xcd\x2b\xb0\x68\xa3\xbd\xb2\x08\xfa\x35\x0b\xfc\x9f\x00\x93\x67\x5a\x34\x9a\x49\x99\xd4\x38\xf9\x98\x37\xb2\xb6\x4d\x02\xc4\x29\xe3\x86\x80\xc4\x93\xb9\xdf\x80\xa1\x46\x5d\x11\x9f\xc2\xeb\x87\x26\x11\x03\x39\xfc\x7d\x84\x4f\x01\x53\x2f\x24\xf4\x07\xde\xbc\x33\xf9\x57\x94\x71\xf6\xd6\x97\xa6\xa6\x43\x15\x43\x25\x72\x43\x1a\x7e\x9c\xbd\xf6\xdd\x24\x43\x2a\x16\x49\x74\x15\x95\x77\x35\xfc\x1c\x62\x65\x1c\xc5\xb6\x28\xbc\xff\xd3\x03\x2a\x5b\x90\xfa\xb4\xbc\x2f\x79\xc9\x53\x9a\xc7\x26\x75\x90\x2b\x4b\xc6\xc9\xbb\xb4\xd4\xc9\x75\x91\x3b\x03\x5a\x70\x67\x17\xb7\xa5\xd5\x69\x39\x39\xaf\x79\x6c\x93\x3f\xfd\xd5\x24\xcc\xf8\x3e\x88\xca\xb9\x2d\x43\xf4\xaa\xca\xf5\x19\x29\x06\x7e\x6c\xef\x90\x6d\x17\xfe\x4a\xc9\xbf\xf8\x9c\x98\x4d\xdf\x01\x4a\xb7\x3a\x8e\x52\x0d\x7e\x5c\x9f\xb3\xee\x63\x80\x23\x83\x9a\xb5\xb9\x72\x23\xdf\x4a\xb9\x37\x23\x66\x58\x02\x89\x67\xca\x53\xad\xa3\xa9\xee\xaf\x1e\x6e\x02\xb2\x3a\x32\x8b\x8b\x76\xbc\xf5\x60\x6b\x33\xc2\x2f\x8a\x2f\xe1\x52\x8d\x61\x5e\x64\x94\x56\xec\x86\x52\x8a\xfa\x44\x17\x54\x97\xe2\xf5\xd5\xbb\x07\xf5\x94\x90\x7a\xd8\x8f\x51\x88\x1a\xe8\xfc\x42\x2f\xb6\xa7\x18\xd6\xa6\xf5\x5f\x50\x23\x19\xa0\xd6\xe6\x03\xd4\x39\x75\x70\x14\x77\x7a\xc2\x61\xfb\x54\x1c\x36\x2c\x64\xdb\x38\x46\x8f\xff\xc3\x5d\xad\x89\xdf\x09\x49\x41\x3f\xb3\x4b\x9e\x11\xa9\x59\x15\x33\x1f\x11\x49\x21\xcd\xdc\x34\x17\x0c\xdf\x0d\x69\x5a\x9e\xbd\xe2\x15\x6d\xc7\x12\xdb\xc6\xbe\x06\xa3\xdf\x7c\x52\x85\x07\xa1\xa9\xab\xa7\xa8\x2b\x36\x81\x3d\x83\xb1\x78\xcf\xf7\xd5\xa4\xaa\x31\x72\x8d\x78\x82\x90\x79\xb4\xbd\x45\x75\x50\x61\x5a\x72\xb1\x56\x99\x97\x02\x57\xb6\x9f\xb3\x7b\x7b\x75\x5d\x1a\xd9\x4c\x3e\x7d\x68\x12\x8e\x4d\xdc\xd7\x74\x55\xe7\x2e\x39\x47\x5f\xb8\x06\x8e\xaa\x28\xce\xe2\x3a\x3d\x3b\x4a\x2e\x30\x9f\xd4\x44\x77\x23\x1c\xd3\xdb\x1a\xfd\xc3\x95\x2b\xaf\xd1\x67\xcd\xb7\xbe\x04\xda\xe6\xb6\x14\xf2\x98\xb8\x78\x8a\x7a\x69\x06\x72\x4d\x64\x17\xec\xa0\x59\x4e\x2a\xf7\x4f\x0f\xb4\xc4\xd9\xb2\xd8\x3a\xf1\xe3\x68\xef\x02\xb8\xc6\x80\xb9\x3e\x37\x23\xe8\x19\xc8\x9f\x09\xbe\xaf\x4a\xa9\xe0\xcc\x5a\xbb\x79\x02\x58\x58\x83\x6d\xcc\x71\xc8\x49\x63\xbb\x59\x6c\x7a\xd7\x91\xf4\xd9\x58\xa2\xfc\x18\xc0\xb1\x4f\xcc\xcc\xee\x14\xff\x96\xd7\x63\xd1\x15\x0d\x1f\xa9\xf5\x1b\x2c\xe2\x22\x05\x20\xc9\x7c\x77\xa5\xd8\x82\xab\x03\xcf\x13\xda\xc6\xf1\x32\xe9\x5e\x32\x3a\xfe\x34\x8b\x54\x25\x1a\x3f\xf7\x4b\x3f\x6d\xed\x1e\xb8\x9e\x41\x9d\xc1\x6a\x97\xec\xba\xb5\xba\x84\x0e\x92\x74\x85\x3f\xaf\x4d\x51\x15\x8d\x18\xa0\xb4\xfc\xb0\xf8\x4a\x91\xde\x48\xab\x83\xec\x05\x87\x92\x68\x5d\xa7\xd1\x36\xfa\xe3\xed\x83\x10\xcc\xe4\x6b\x90\x5d\x1c\x53\xe7\x63\x5d\xe8\x39\x88\xab\xf0\xc9\xfb\x6e\x5f\xab\x19\x6b\x12\xc7\x11\xa8\x3e\x75\x4a\xfe\x55\xd3\xa8\xf7\x31\x72\xa4\x2d\x50\xe6\xa7\xcf\xea\xd6\x70\xbc\xec\x2a\x80\x4e\x7f\x95\x61\x1f\xf7\xf1\xa7\x36\xd7\x04\xc6\x07\x16\x75\xaa\x82\x1b\x92\xf9\xfb\x21\x60\x17\x37\x44\xcf\x77\x20\x37\xfd\x84\x18\xb7\xae\xe0\x23\xe9\x57\xee\xd6\x4a\x40\x6e\x77\x2e\x75\x00\x1e\xec\xd3\x50\x1c\x42\x3f\x49\xc8\xcf\xd4\xcc\x31\xa0\x38\xe2\x6d\x8e\x42\x4f\x78\xd5\x70\x00\x33\xb0\x08\xab\xc8\x88\xf2\xee\x16\x51\x76\x5d\x43\x39\x02\xe8\x1f\x8e\x83\x3c\x8d\x03\x02\x0b\x42\x21\x6b\x20\xf7\xe5\x9a\xd6\x41\xc3\x2e\xe2\x19\xa1\xd0\x26\xf9\xcf\xdd\x1a\xb3\x81\x78\xdc\x57\x41\x9e\x8b\x5f\xfb\x40\x35\xd8\x24\x18\xc3\x11\x03\x80\x81\xec\xd7\x1e\x87\xdb\x32\xe0\x27\x78\xee\xe7\x9b\xc7\x0d\x52\x03\x0b\xc5\x81\xec\x75\x2d\xd0\x27\x4a\xbd\x3b\xd7\xd6\x39\xec\xae\x6f\x89\x48\x71\xea\xb8\x4a\x17\x8b\x04\xf9\x96\x8d\x7d\x35\x52\x0b\xbf\xb9\x40\x77\x65\x44\xbe\x25\xa7\x74\x63\x35\x03\x49\xcc\xdd\x9f\xfc\xd8\x44\x23\xfb\xdd\x11\xa3\xc1\x59\x18\x55\xb4\xd1\x17\x6e\x9e\xae\xc2\x69\xe0\xfa\x5c\x66\x6c\xdc\x75\x83\x6b\x15\x88\xa4\xee\xd2\x07\x35\xef\x87\xaa\x85\xed\x38\x7e\x4e\xde\xaa\x35\xed\x08\x8d\x0a\x58\x79\x5e\xf5\x7c\x38\xb3\xae\x4f\x0c\x58\x60\xf8\x01\x5f\x18\x8e\xd9\x74\x3a\x17\xf7\x37\xf9\xbe\x73\x0d\xff\xec\xc9\x23\x3a\x25\x13\xe3\x0a\xaf\x4d\x79\x3a\x7b\xed\x01\x68\x73\xc8\x31\x90\x73\xaf\xd7\x16\x86\x08\xa2\xb2\xcf\x95\x9d\x78\x02\x80\x72\xa5\xf2\x6c\x78\x62\x63\x7a\x33\x5b\x18\xd9\xbe\x55\x90\x32\x23\xc2\xa3\x61\x85\xce\x1b\xb6\x31\xf2\xb0\x19\x03\x6d\x7b\x06\xf2\x9f\xba\x1f\x8a\x33\x33\xec\x96\x7d\x0b\xbb\xa2\xd6\x2d\xec\xd3\x74\xda\x91\x64\x95\x66\x8e\xbc\x27\xda\x49\x3d\x0c\xb9\x65\xdc\xd4\x7c\x39\x7c\xb7\x06\x0e\xa4\x0e\xf6\xad\x44\x9f\x2c\xf3\x15\x81\x0c\x2e\x5c\xd6\x76\x45\x13\xeb\x21\x77\xf6\x18\x75\xb3\x1d\xed\x33\x67\xf3\xd9\x7a\xf6\x7b\x6f\x28\xb5\xa4\xae\xb8\x30\xb8\xe7\xe5\xb1\x71\xc0\x70\x30\x47\xd9\x08\xcb\xe4\xe9\x8f\x03\xb5\x29\x97\xd6\x79\x5b\xa5\xde\xae\x7e\x38\x3f\xfe\x84\x4c\xe7\xb9\xe2\x4a\x84\xcc\x4d\xd3\x3b\x5e\x7f\x24\x21\x3a\xce\x6e\x2f\xf4\x84\xde\x1b\x92\x91\x54\x8a\x8a\x25\xb1\xe1\x4f\x7f\x0b\x98\x27\x21\x37\x5a\x90\x51\xb0\x7d\xad\x5b\xb5\x42\x30\x30\x4e\x5a\xfa\xb0\xca\x65\xe6\xcc\x2b\x34\x92\xfa\x28\xf7\x8d\x85\x80\x57\x64\x31\xc4\x4d\x85\xf3\x9f\xdf\x91\x5e\x1b\xb4\x2a\x86\x1b\x22\x54\xad\xdb\xae\x14\xf6\x6b\x8d\xb8\xc5\xfd\xfc\x63\xe2\x3c\x28\x36\xb8\x85\xa5\xe0\xd3\xfc\x76\x27\x48\xa2\xa8\xcd\x3b\xda\x22\x82\xd5\x5d\xc0\xbf\x41\xae\xf4\x5b\xfa\xeb\x4d\x1f\x1b\xa4\x80\x25\x1c\xad\x26\xde\xe3\xd7\xb7\x88\xae\x8d\x15\xab\xcc\x65\xaa\x5a\xf4\xf0\x0c\xe4\x88\x80\xf3\x1f\x77\x01\x83\xf5\x40\x3a\x26\xe6\x0e\xcc\x57\x49\xa5\x15\x78\x16\xef\x25\x6e\xb8\x40\xcb\x2a\x89\x4b\x0c\x81\xa3\x48\x27\xbb\xd3\xa6\xab\x50\xdb\x8f\x2a\x17\xf7\xd2\xe2\xc5\x1e\x37\xc0\xa0\x13\x54\x3c\x2c\xc7\x49\x5e\x75\x0f\xac\x68\x0c\x21\x00\xb9\xe5\x58\x3a\xf3\xf3\x6e\x08\xa2\x1d\x34\x1f\x3a\x93\x66\xb7\x8a\x89\x65\xf4\xfb\x55\xab\x57\x4d\x91\x19\xf1\x1c\xad\xe5\x5a\x71\x69\x3d\x81\x95\xe4\x2e\x7f\x2f\x5d\x6f\x54\x58\x50\xad\x36\x6b\x77\xe4\xbe\x68\x03\x4a\x0e\xd7\xdd\x82\x46\xaf\xd7\xd6\x44\x9a\x01\x59\xbe\x7c\xd5\x75\x1c\xd0\x80\x51\x22\xd9\x5c\x10\xea\x02\x8f\x86\x81\xb1\x29\xd2\x87\x8f\xbf\xa1\xc9\x49\x8b\x51\x3b\xff\x5d\xdb\x94\x74\xac\xa8\x52\x9b\xf8\x49\x07\x98\x13\x06\x96\xec\x4d\xce\x8c\xe8\x40\x53\x92\x96\x9a\xf2\xbd\x45\x15\x6e\xe5\xe6\xb7\x9a\xd9\x90\x66\x4c\x3c\x7b\x5f\xf3\xf2\x31\x19\xf2\xe2\xef\x94\x85\xec\xe2\xa9\x4d\x21\x2c\xd1\x5a\x90\x70\xef\xfc\x31\x60\xe3\x2d\x18\x23\x71\xa8\xbd\xb8\xa5\x25\x5d\x1d\xc8\x2b\xbe\x7a\x4f\x7a\x89\x55\x6d\xe4\xfa\x09\xeb\x1c\x7a\xd2\xde\xb1\x37\x0d\x5a\xb1\x48\xd9\x1a\x6c\x62\x93\x9f\x3c\x39\xf9\xaa\x12\xed\x53\x5f\x35\x6d\x94\x94\x7c\xee\x98\x57\xe8\xe0\xca\x86\xd9\x2b\x4e\x34\x61\x8f\xcd\x80\xf3\x06\x04\x51\x6e\xc4\x63\x00\x78\x88\xfa\x11\x93\x3c\x93\xdc\x4d\x73\x93\x29\x4b\xd0\xd6\xa4\x24\x55\xaf\x69\x51\x37\x60\x55\xc4\xc5\x70\x45\x75\x5a\x1f\x9e\x0e\xe7\x75\x52\xc2\xa2\x17\x75\x23\x40\x29\x78\x98\xf4\x0b\x6a\xea\xcd\x55\x4d\x8f\x93\x32\x16\x3d\xdc\x58\xa4\xf5\xb4\x91\x40\x7b\x81\x49\xeb\xc8\xab\x97\xa5\xb7\x53\x03\x57\x10\xc7\x05\x73\x55\x3c\xd9\x4e\x7c\xe3\x15\x2d\x4a\x58\x81\x00\x86\x85\xfb\xa6\x26\xf1\xb6\x73\x5e\xa1\x27\x5c\x7e\x97\x06\x71\x36\x71\x35\x2e\x30\x7b\x4a\x13\x52\x80\x19\xee\x52\x0c\xde\x5d\xee\xed\xd5\xe2\xd1\xd7\x51\x02\x20\x5d\xf2\xe0\x58\x80\x58\xa6\x7e\x11\x71\x7f\x8c\xcc\xf7\x1e\x17\x39\xdc\x52\x5c\x8c\x52\x2d\x1f\xa0\x19\xb9\xa2\x70\xc1\x13\xf3\xbf\xe8\x33\xb2\x2f\x9d\x91\xbc\x9e\xae\x59\xd1\x5f\x3f\xbc\x00\x6c\x0c\x45\x71\x0f\x5b\xc3\x09\x90\xa7\x53\x68\x3a\x28\xa9\x35\x09\x22\x70\xae\x5d\x35\x65\xc6\x95\x9a\x96\xd8\x40\x76\x9d\x66\xf5\xc8\xfd\x9e\xa5\xd7\xd5\xf9\x87\x47\x03\xe6\x64\xa1\x6b\x2e\x87\x2c\xfe\x41\xd3\x62\x30\x28\x32\xac\x04\x15\x95\xff\x5c\x75\x6c\x72\x96\xce\x52\x07\xd3\x35\xd3\x01\x9a\x1b\xd9\x0a\xcd\xed\xb7\xa7\x2f\x00\x47\x27\x04\x96\xf2\xf9\x6d\x27\xd2\xa7\x84\x13\x30\x07\xb9\x5e\x25\xe9\x1b\xcc\x1e\xa5\x8e\x1d\x17\x95\x91\x9b\x94\x50\xb5\xa9\x92\xd3\x6e\x11\x5c\xc3\xd1\x01\xc3\xa9\x6b\x3d\xe1\xbc\x69\xea\x44\xad\x10\x16\x78\x16\xae\x15\x7a\xc2\x59\x9b\xce\x6d\x8a\xb7\x36\x36\xcb\x71\x83\x78\x25\xa0\xf8\xb3\xb6\x62\x1b\xe1\x8b\xfb\xe7\xa6\xc4\x60\x76\x46\x09\x4f\xf6\xde\xe3\x29\xba\x79\x94\x13\x73\x48\x69\xb6\x13\xd8\x35\x62\x87\x94\x59\xac\xf2\x18\xfe\x1a\xd0\x3f\x68\xe0\x57\x69\x10\x03\xe0\x57\xde\x94\x54\x58\x35\x2e\xfa\x95\x5d\xaa\x99\x56\x59\x0d\xe4\xfb\x5e\x8d\xd8\x36\x06\x3e\x8c\x8f\xcd\x4d\x06\xd3\x55\x3b\x79\x1e\xd3\xd6\x81\x43\x2b\xf0\xb8\x49\xc9\x9b\x1a\x22\x03\x31\x46\x62\x2b\x8e\xcc\x8e\x1d\xda\x2f\x6b\xd8\x0d\xa4\x87\x4d\xee\xb4\xb5\x8a\x53\x48\x62\xfb\xfd\xec\xa3\x2f\x9d\x09\xc9\x9a\x4e\xa1\x27\x7c\x41\xbb\xe4\x28\xf2\x1b\x8d\x82\x83\x2a\x98\x25\x23\x80\xfc\x42\x69\x30\xcd\x79\xd8\x42\xe9\x66\x20\xfb\x89\xfd\x3a\x17\xdb\x20\x40\x5a\x27\x33\x70\xdf\x68\x90\x72\x38\xd2\x5f\x61\xcb\xf2\x56\xbd\xce\x89\x05\x9f\xbe\xff\x60\x13\x61\xbf\x6a\x73\xee\x94\x9c\x91\x4e\x7f\x59\x6b\x53\x05\x5e\xb4\x16\x3d\x07\xb9\x33\xea\x51\x42\xf4\xab\xc5\x9a\x0a\x15\x36\x19\x35\x2a\x71\xe8\xf9\xf5\x41\x11\x13\x90\xcf\xbb\xb2\xd1\x8f\x9e\x3f\xd9\xe4\x7b\xd4\x10\xd1\xa8\x78\x7c\xbc\x7e\x78\xd5\xb0\xeb\xc5\x43\xcf\x4d\x16\x50\x6b\x76\xc0\xf8\x65\xa8\x02\x85\x21\xdc\x24\xc6\x95\xdf\x08\xf2\x3c\xc4\x4c\x49\xd7\xcf\xdd\x9f\xfc\x91\xcf\x85\x4a\x53\xc1\x7d\xd6\x0a\x85\xfa\xf1\xb1\x8d\xab\x56\x94\xc1\xeb\x73\xdc\x87\xee\x8f\xf5\xb9\x38\x04\x2f\x4d\x3e\xc8\xf4\x25\x8b\xb5\x8a\xa2\x47\x35\xee\x83\xb3\x60\xbf\x99\x95\x85\xef\x5d\xcf\x40\x76\xe8\x74\x55\x00\xf7\x06\xa6\x4c\x08\xb7\x1c\xd3\x5d\x98\x6c\x9b\xd6\x45\x20\x1a\xd8\x2a\x9e\x2b\x75\x0b\x36\x71\x79\xfb\xe1\xbc\x1d\xc0\x21\x0e\x97\x92\x1c\xf1\xf8\x32\xb5\xcc\xb9\x1f\x49\x74\xf7\x93\xef\x4d\x1f\x4e\xbd\x94\xc8\x9e\xc7\x03\x37\xab\xfc\x88\xc4\xab\x21\x56\x22\xc8\xbc\x79\x54\x0a\xdb\xe2\x62\x94\x3b\x20\x10\x7d\xbf\x7e\x4c\xb9\x60\x06\x51\xcd\x7f\xc1\x6e\x6d\x94\x1b\x83\x3a\x78\x23\x68\xed\x84\x74\x83\xa6\x84\x98\x63\x23\xd7\x9c\xd1\x64\xb2\x9c\x1b\x2f\x34\x8e\x0b\x2b\x88\xe7\x37\x30\x50\xba\x6c\xe9\xd6\x61\xd7\x6e\x39\xe0\x56\xd0\x9c\x9d\x18\x6c\x3d\x5b\x4f\x3b\xfc\x58\x65\xef\xb7\xfb\xd5\xbc\x33\x8a\x16\x65\x22\xd4\xff\xa2\xdf\xfd\x65\xa9\x5a\x30\xd8\xe4\x2a\x7a\x3d\xe1\xb9\x79\x38\x1a\x70\x0d\x4c\x6a\xb1\xef\x55\xf1\x01\x30\xc7\x40\x86\xd5\xdc\x62\xba\xf0\xde\x49\x75\xbd\xc5\x44\xb4\x7e\x67\xe6\x87\xaf\x8d\x89\x8f\xae\x28\x87\x24\x6e\x99\x07\xca\x95\xba\xe8\x1f\x72\x4d\x62\x8a\x3b\x89\x96\xd5\xdc\xa1\x63\xe3\xe7\x6e\x01\x4b\xb2\xec\xbb\xda\xa9\x3f\x6b\x5e\xdb\x9c\xd9\xe2\x1d\x67\x97\xab\xf3\xb6\x97\x5a\xae\x0b\x84\x7a\x33\xf3\xd7\x88\xa5\xb5\x3a\x28\x16\xe5\x31\x6e\xf7\xa5\xdf\x95\x61\x21\xa7\x28\x66\xf2\xfa\x11\xfb\x6b\x20\xdc\x5c\xc4\x28\xf0\x89\xb0\x93\xca\x1e\x7e\x5c\xd3\x2b\x47\xae\x4f\x53\x0a\x35\xb9\xe7\x80\x5d\x8f\xc1\x41\x57\x51\x1d\xf5\xc1\x16\xf0\x53\x46\x1c\x0e\xcd\x0c\x37\xed\x49\x82\x81\x8d\x02\x30\xe7\xa1\xfd\x40\x42\x9f\x9a\x0d\x6e\x10\x58\xe8\x09\xaf\x50\xe0\x95\xc2\xbc\x79\x7c\xf8\xa9\xe9\x3f\x20\x3f\x96\xd4\x75\x46\x4a\x51\x1c\x8c\xb9\x0f\x75\xf6\x67\xf7\x7f\x1c\xb4\x62\x0a\x75\x8c\x2b\xb6\x8e\x3e\x0d\x2d\x5f\x2b\x6d\x6a\x98\x99\x36\xad\x79\x95\xe4\x28\x0a\x0f\x2f\x4f\x73\x59\x3c\x9f\x91\x0a\x2e\x78\x16\x65\x3e\x76\xb1\x29\x0d\x48\xff\xab\x94\x64\x38\x9a\x22\xe0\x18\xa0\x6d\x4c\x1d\xea\x72\x46\x4b\xff\x64\xb9\x41\x02\x83\x88\x03\x3f\x7e\x99\x7f\x5a\xde\x02\xa0\xd2\x6e\xd9\x93\x0f\xf5\x9c\xa7\xd4\xcf\x2b\x01\xb2\x13\xc9\xfe\x4f\xec\x07\x2e\xdc\x98\x4b\x27\xe7\xee\xd9\xa8\xf5\x20\xb1\x5d\x8a\x81\x19\xf1\x7c\xfc\x9d\xa3\x40\x70\x11\xb3\x12\x36\x7c\x6e\x3c\x70\x6c\x5d\x72\xf4\x5a\x81\xe4\x24\x86\x23\x9f\x00\xe0\x3a\xdf\x12\x0d\xbf\x81\xcc\xd1\xd7\x94\xe0\x1f\x6d\x16\x55\xbc\xea\x88\xca\x0b\x2c\x6a\x96\x71\x35\xfa\x4f\xf4\x7a\xfe\xe7\x5e\x15\xcb\x0d\xd2\xb4\xfb\x1e\x92\xba\x26\xd7\x50\x07\xfb\xd1\x02\x8a\xbe\xec\x87\x6d\xa9\x5c\x70\x4d\x8f\x52\xd8\x53\x8b\xe9\xcc\xa1\xe9\xe3\x4f\xc4\x5f\xb8\x69\x17\xde\xab\xb2\xd3\x39\x85\x42\x4f\xf8\xd0\x78\x2d\xe8\x04\x82\x38\xca\xb1\xd2\x1b\x93\xe9\x09\xe6\xa1\x33\x81\x65\xbf\xb4\x44\xd5\xca\x35\x64\x92\x28\x51\x18\xa3\x1d\x87\x8c\xca\x9a\x49\x3c\xf1\xff\x3a\xd4\x34\x66\xf0\x71\x3c\xbc\xc8\x7d\x76\x13\x6c\x8b\x7a\xa2\xef\xcc\xd5\x91\xf6\x3e\x08\x1d\x42\x63\x48\xf6\xe2\xf5\xc0\x12\x1d\x17\xb9\x86\x1e\xc7\x3d\xd4\x74\x9b\x0e\xc6\xa5\x37\xa4\x2b\x72\x70\xf4\x3c\x00\x35\xaa\xf8\xd4\x21\x4d\xa7\xe4\xbf\xb6\xa6\x1b\x77\xf5\x18\x10\xef\xac\x48\xb6\x64\x8d\xbb\x08\x0f\x5b\x0d\xa5\xd1\x4b\x42\xd2\xa0\x17\x38\x75\x73\x34\x5a\xa1\x27\xfc\xa6\xe4\x6a\x1b\x16\x36\xa4\x01\xc5\xd5\x53\xc6\x27\x8f\x9c\x35\x4b\xf8\xaf\x7a\x50\x8a\x63\xd0\x7a\x73\x03\xed\xac\xf9\xea\xe6\x83\x6a\x94\x76\x08\x60\xf1\x56\x7f\x94\x3a\xc2\xe3\x1d\xf2\xc7\xf1\xa9\x83\xc0\xa5\xea\x74\x1c\x06\x04\xe2\x13\xdf\xf4\x9e\x81\xcc\x33\x2f\xa9\xae\x9f\x4b\xdd\x42\x0d\xb3\xa2\x84\xf2\x65\x4e\x5f\xdd\x0a\x9a\x8d\xa2\x2d\x26\x76\xc9\xf8\x35\x4d\xec\x88\x2a\x66\xf1\x40\x3d\xf7\x97\x85\x31\x05\x81\x43\xb3\xc3\xb6\xfe\xf3\x20\x78\x9c\x5f\x93\x16\xa1\xbe\x7e\xef\xd8\x38\x37\x4c\x4b\x45\x3d\x0c\x6d\xe0\x1d\xe4\x72\x0c\xf0\x6f\xf6\x34\x21\x2a\xa8\x5d\x4b\xfc\x23\x2e\x0e\xa5\xcc\x65\x39\xca\xdd\xa5\x90\x57\xf6\xcd\x47\x9b\xdc\x63\x88\x4b\x65\x63\xb5\x63\x52\xac\x63\x14\x48\x67\x93\x81\xfc\xca\xa3\x9a\xf3\x1f\x29\x27\xb0\xcf\xb9\x47\xd2\xdb\xaf\x73\xae\x32\xd8\xad\xf3\xf5\x77\xf6\x62\x05\x74\x32\x1a\x45\x8e\x9e\xc5\x26\xad\x5a\xc4\x16\xa9\xd5\x79\xa7\x92\x48\xea\x21\x20\x31\x9c\xbb\x4f\x73\x21\x70\x05\x45\x08\x62\x0d\xb3\xa7\x4f\x1a\x07\x10\x19\x06\xe6\x86\xcf\x26\x3f\x4f\x06\x72\x3f\x79\x2f\x39\x81\xca\x01\x3c\xc6\xbe\xd1\x9f\x2c\xeb\x8e\x8e\x2e\x8e\xdf\xd8\x9e\xce\xdb\x6b\xc4\xc4\xd4\x47\x55\x49\xbb\xf8\xfd\x86\xd1\x80\xf3\x1d\xbb\x74\x7f\xfa\x14\x28\x4f\x90\x23\xe4\xe1\x59\x9b\x2e\xd9\xc1\x90\x6d\x63\x5b\x56\x28\xfb\xd7\xb4\xc2\x6a\xcb\x24\x46\xe2\x81\xef\x86\xe9\xd3\xa9\xc2\x90\xe7\xd2\x06\x62\x5e\x85\x2b\xb2\x46\x2b\xee\xab\x2f\x9f\x13\xf7\xdd\x2e\xbf\x5c\x4f\x89\xc7\x4d\x55\x71\xa3\x84\x63\xae\xef\x19\x4b\x80\xab\x3a\xb2\x89\x51\x51\x33\xfc\xb0\xfd\xe0\x28\x50\xfe\x33\x6e\x2e\x9a\xcb\xbe\xd5\x34\x76\xf1\x19\x31\xa4\xc9\x79\xf8\x6f\x3b\x54\x96\x5c\xa2\xcc\xb7\x18\xe7\xc8\xf7\x0c\xe4\xef\x68\x95\x03\x66\xea\xf9\x55\xc4\x7c\x2e\x35\x9c\x7b\xbd\xb3\x09\x92\xc2\x33\xe4\xab\xd6\x27\x87\x49\x95\x35\xeb\x16\x1a\xcf\xa4\xb3\x2a\x86\x05\xcd\x09\xb9\x12\x1a\x75\xfb\x74\xd1\x6c\x5d\x49\x5c\xec\x47\x27\xd9\x4d\x42\x9f\xb4\x70\xa5\xdd\x08\x9c\x7e\x8b\xb8\x50\x73\xfd\xe1\x92\x6e\xcd\x29\x34\x59\x24\xe9\x3f\xd3\x3f\x4c\x1d\x13\xf5\xa8\xd0\x3c\x6f\x95\x62\xe5\x73\xcb\xd3\x26\x60\x74\xae\x7e\x6f\x13\x5d\x44\x3a\x1e\xca\xb7\x7d\xd3\xd3\x1a\xe8\x06\x23\x9e\x3d\x27\x88\xa2\x39\xef\xa5\x4b\xcd\x5e\x64\xd0\xa2\x3c\xc0\x00\x4b\xfa\xf9\xf4\x96\xad\x33\xca\x45\x74\x79\xa1\x70\x11\x80\x09\x31\x5c\xa3\x76\x20\x1b\xa2\x97\x6c\x92\x05\x2a\x29\xbb\xd1\x1b\x11\x1d\x46\x8d\x89\x18\xcb\xd9\x73\x72\x35\x8f\x69\xae\x56\x42\x3b\x55\x05\x79\x5d\xdf\xd5\x24\xc8\x25\x44\x12\x73\x4f\xbf\x05\x89\x49\xd4\x15\xf4\x9c\xec\xad\x1f\xaa\xa3\xc1\x22\x92\xd8\xf5\xce\x5c\x79\x36\x50\xa3\xe2\xcb\x49\xe0\xa1\xbb\x5b\xb4\xc2\x59\x2a\x7d\xbd\x0f\xbc\x2e\xfd\x46\x55\x66\x22\xd9\xc0\x82\x62\x12\x54\x48\xb4\x86\xa5\xa3\x12\x7b\x67\x53\xdf\x25\x15\xf5\xf6\xf5\x96\x51\x09\x33\x86\x7d\x11\x27\xb3\x57\xe5\xc7\xe9\x55\x88\x1b\x1b\xa9\xe6\x2f\x9c\x98\x74\x0d\x82\xb6\x04\xd0\xf4\xaa\x7c\xb6\xb3\x67\x17\x3c\x6c\x50\x97\xb7\x29\xcf\x19\x27\xca\x83\x6b\x91\x0b\x08\x19\xd9\xad\xcf\xa7\xdf\x31\x17\xcc\x10\x9a\x7b\xc8\x4e\x84\x4c\xdf\xce\x8b\x86\x5b\x67\x67\xd7\xec\xe8\x7b\x2f\x38\xae\x4b\xbf\x57\x31\x23\x94\x89\xd1\x68\xfe\x82\xcd\xe9\x5f\xa3\x7a\xa5\x2e\x7c\xb6\x79\x50\x3d\x3c\x74\xa4\x3c\xe3\x38\x0d\xa9\xd0\x13\x5e\xb9\x44\x07\x5a\xfb\xbe\x2d\x14\x3a\xc3\x7d\xec\x2c\x98\x69\xb5\xcd\xe0\xac\xe1\x42\x4f\x78\x5d\x4d\xd5\x4d\x0e\xb1\x9b\x69\x35\xb9\x2f\x4b\x88\x6d\x11\x9b\xfc\x8b\x2f\x5f\x21\x13\x73\x9b\x54\x79\x16\xb7\x7e\x8d\x24\xc6\x07\x0e\x4f\x6e\x7e\x3c\x3f\xdd\x3f\x9e\x86\x9d\xe0\xa2\x41\xa6\x89\x99\xdf\xee\xd0\xdc\x6d\xa3\x5a\x5c\xf2\x7f\x9f\xd6\x0a\x03\x5e\x6c\xf1\x8a\xf2\xcd\x12\xc8\x92\x28\x75\x64\xc5\x98\xdf\x90\x4f\x6f\xd5\x3a\xf1\x5d\xcc\x7b\xc1\xf2\x24\x9b\xff\x12\xd0\x1b\x62\x42\xd5\xf0\x3f\x67\x8e\x57\x2a\x54\x4d\xdb\x3f\xf3\xfd\x9d\x23\x64\xa9\x8d\x1d\xce\x16\x22\xa7\x9a\x00\x51\x12\x76\x28\x4d\xf1\xb2\x1b\xdd\xc9\x5a\xc4\x70\x7d\x54\x96\xf6\x73\x0a\xa9\xd3\xb3\x4f\x73\x51\xa1\x45\x3b\x28\xe2\x1a\x94\x64\x2b\xaf\x53\xf5\x31\x9f\xbe\xa9\xa8\xfe\x11\x3b\x7d\xb3\x0e\x36\xa2\x72\xd6\x73\xe2\xc1\xc5\xd2\x7e\x9d\x2f\x18\x2d\x06\x09\xc4\x24\x9a\x2e\x53\x91\x71\xd1\x3a\xf1\xdb\xec\xbc\x31\x67\x6b\xeb\xa8\x84\x63\x14\x79\xa9\xfb\x1c\x80\x20\x0e\x98\x90\x0f\x4e\xea\xbe\x8d\xa3\x15\x46\xb2\x1c\x27\x6b\x67\xbd\x2a\xfb\x4f\x8c\x61\x8f\x8f\x6c\xb2\x9f\xef\x4e\xc7\x82\x39\xed\xb2\xe8\xfa\xfb\xdb\xc1\xbc\x8a\x05\xbc\xf6\xc9\xfe\xef\xca\xf3\xf4\xcb\x75\xfb\xf8\x83\x52\x43\x8b\xeb\x36\xab\xbe\x73\x91\x72\x16\x5b\xfa\x55\xae\x3a\xa6\x03\xb7\x30\xab\x48\x84\x46\xee\xa6\x7b\xd4\xb9\xda\xc0\x26\xa1\x7e\xa1\x27\xfc\x70\x82\x16\x51\x18\x0a\xe4\x62\x0a\x49\x0b\x44\xa5\x28\x6b\xa4\xe1\x6b\xa0\x8b\x76\xd5\x46\x46\x0a\x69\xf0\xb3\x67\x80\x15\x83\x2d\x41\x2b\xb9\x36\x60\x96\x63\x20\xe6\xb5\xf1\x01\x79\xdf\x5b\x49\x4f\xc1\x84\xea\x4d\xf3\xa7\x26\x3d\x1e\x83\x46\xfb\xfe\x95\x45\x80\x27\x06\x71\x55\xf9\x45\xc0\x98\x8e\xf6\x89\x64\xec\x8d\x97\xb5\xec\x85\xda\xc4\x88\xbd\x22\x06\x72\x43\xb7\xeb\xc6\x25\xd8\x4e\x62\xce\x93\x42\x83\xaa\x70\x35\x66\x06\x58\x8d\x03\xf9\x52\x97\x5a\x16\xa8\x8c\x88\xeb\xf9\x00\x67\xb9\x1b\x3c\x2b\xea\x88\x71\x5f\xcf\x40\xb6\xe6\xa6\xe3\x84\x8b\x78\x33\xa2\x99\xd8\xf0\xda\x3a\xdd\xb6\x39\x1e\xc7\x66\xbf\xf8\x02\xf4\xb4\x34\x02\xa9\x66\xf6\xd7\x83\xa2\x45\x76\x35\xaa\x78\xc4\xa1\x35\xc0\x3a\xcf\x8f\x3e\xa8\x51\xd6\x11\x43\x1a\xea\xad\xf0\x9a\x88\xfd\x97\x03\xe1\xf0\xdc\x0b\xa1\xc6\xf0\x64\xa8\x46\xfc\x46\x02\x18\xdf\xfd\x38\x00\xd7\xe3\x9a\xe0\xf7\xe7\xae\x51\xfe\xcb\x35\xd4\x16\xb7\xa4\x0f\x3c\x98\xbc\xb2\x1a\xea\x05\x27\xc9\x3f\x67\xd3\x1b\xc3\xaf\x89\x4c\xea\xae\x9b\x93\x4c\x8a\xe1\x26\xdd\x8e\xcc\x0c\xcd\x4f\x57\x78\xa8\x71\x7b\xcf\x11\x3a\x83\x8d\x1b\xd8\xc4\xdd\xea\x49\x9d\xe9\x30\xdb\xdd\x1d\xbf\x6b\x36\x51\x83\xa5\xd3\xba\xb4\xb6\x0a\x7f\x04\x3c\xe1\x66\x75\x14\xaa\x82\xb3\x9e\x5b\x28\x85\x5e\x6d\x8a\x4c\xf1\x1a\x7e\x74\x77\xb2\x54\xbb\xe7\x75\x14\x7a\xc2\xe1\xc7\xf5\x88\xef\x10\xa1\x2a\x11\x7e\xa7\x5b\x81\xfb\x2d\xe1\x95\xac\xd2\xa3\x2d\x53\xa0\x8e\x2e\x46\x55\xc1\x5d\xff\xe4\x54\x15\x2d\x8a\x18\x31\x9e\x4e\x9c\xb9\x06\xea\x1b\xf3\xea\x54\xaa\x78\xde\x96\x26\xd3\x94\x68\xc0\x0c\x0b\xfb\xbe\x00\x29\xa7\x4f\xbd\x43\xcf\x48\x06\xb5\x6d\x62\x4f\x78\x47\xac\x06\xf8\xe2\xaa\x45\x19\xf1\xf8\x99\x90\xdd\xbd\x5f\x27\xc6\x59\xc4\x8d\xed\x40\x32\xff\xba\x49\x3b\xc8\x82\xb2\x2c\x1e\x47\x9f\x48\xff\xdd\xac\xb9\x52\x50\x82\xa7\x2c\x97\x1d\x4f\x2c\xf6\x05\xd0\xf6\x44\x2b\xb8\x2d\x13\x33\x1f\x55\x84\x62\x76\xee\xb5\xbc\xa2\x63\x75\xcc\xe5\x52\x54\x77\xe9\xdc\x24\x5a\x4d\x84\x84\x33\x6d\x59\xf5\x34\xeb\x88\x39\x85\x80\x7f\xe3\x39\x8a\xd5\x45\x58\x14\x00\x3f\x37\xa4\x05\x62\x24\x10\x23\xa6\xc9\x3d\x96\xda\xa5\x31\xbf\x8f\xdd\x40\xcc\x69\xf3\xa7\x69\xc1\x52\x2a\x0e\x73\x32\xf6\x8f\xaf\x6f\xc2\xe0\x61\x4d\x90\xc5\x05\x18\x6d\x4e\xa2\xb4\x31\x37\xb3\xcf\xbc\xb6\x4d\xbd\x62\x46\x0c\x8b\xaf\xb4\x35\x2f\x8e\x4f\x23\x40\xd2\xc3\x86\xc6\xd4\x73\xf5\xf3\xa2\x82\x19\x2a\xcb\x01\xe2\x85\xb7\xcb\x75\x8a\x58\x99\x13\xa7\x3b\x1f\x11\xdb\x7d\x4d\x60\x7b\xb1\xcf\x58\xd6\x9b\xac\x0e\xdf\xa2\x4d\xa9\x69\xe3\x58\x1c\x2d\x3f\xa4\x5d\x7c\x02\x57\x96\xe7\x85\x62\xf5\xee\x49\xda\x2d\x7a\x3e\xb6\x6d\x9a\x32\x45\x9b\x71\xb3\xba\x17\xea\x55\x38\xc5\x34\xf7\x95\x57\xd2\xeb\xc3\x92\xe3\x85\x81\xcc\x0f\x35\x69\x48\x33\x60\xc0\xce\x37\x77\x8d\x0f\x94\x12\xab\xc4\xa5\xa5\x12\xff\xf9\xe9\x36\x54\xce\xb2\x91\x8c\xfb\xa3\xee\x83\x87\x8c\x27\x40\x85\xb9\x87\x36\x8f\x04\xc9\x54\xbd\xd0\x13\x16\x37\x8a\x74\x6f\x09\x15\x7f\x37\x7a\x9b\xea\x9b\x70\x55\x3f\xe4\x11\xb7\xcc\xfb\x8a\x1d\xaf\x68\x9d\x39\xe4\x9a\xd2\x68\x42\x4c\x4a\xb3\x7f\x78\x4f\x94\x8b\xcb\x11\x20\x09\x65\xff\x08\x14\x1b\xab\xd1\x1e\xe4\x1f\x59\xe8\x09\x0f\xac\x1c\x14\x25\x2d\xa0\x82\xfb\x97\x8b\xcf\xf2\x02\x56\x65\xc4\x93\x23\x4c\xb7\xaa\x5e\x53\xe0\x8a\x86\xa8\x74\x65\x7a\xb6\x57\xaa\x49\x53\x47\x26\xe3\xd1\x1f\x3c\xb2\x58\xf6\x3f\x2a\xc4\xf7\x89\x80\xdf\x4c\xdd\x36\x16\xb2\x2d\xe2\x76\xd6\xcf\xa7\x68\xda\x2c\x36\x72\x24\x7c\xe0\xff\x0e\x69\x45\x16\xe3\xbe\xb9\x86\x02\x97\xe0\x65\x49\xe0\xaf\x24\x2c\xe5\x87\xde\xd2\x61\x10\x4e\xd5\xc6\xc9\x18\xe1\xbd\x9d\xe2\xd8\x5a\x8b\xec\x28\xa9\x74\x01\xbf\x29\x3f\xe9\xc4\x48\xf9\x4a\x91\x2d\xd8\x01\xd9\xad\x77\x81\x0a\x09\xbb\x44\xe8\x95\x64\x3e\xb3\x09\xb0\x4a\x3c\x8f\x1a\x24\x1e\x43\xfd\x76\x08\x90\x23\x26\x65\x17\x27\xea\x41\xff\xfb\xae\x7c\xeb\xa8\xc1\xb7\xf3\xa7\xb6\x68\x78\x5c\x64\x57\x44\xfa\xbd\x02\xb8\x1a\x20\xcf\x46\x4e\x11\x73\x17\xfd\xbf\x54\xc7\x83\x93\xb8\x86\x5d\x11\xa5\x24\x93\x3a\xb7\xb7\x45\xc5\x12\x54\xe5\xce\xed\x02\xe0\x71\xf9\x42\x0d\xb2\x2a\x1c\x58\xa4\x27\x92\xd7\xaf\x8b\x00\x22\x35\xbf\x1a\xc8\x9f\xbd\xa2\x89\x53\xaf\xfa\xa2\xfb\x9e\x6f\xea\xd3\xf8\x84\x5b\xd9\xf1\xed\xf5\x0f\xad\xe3\xc1\x81\xe3\x38\x9c\xf6\xa2\x8e\xfb\x97\xb4\x1e\x32\x8a\xfe\x5c\xc2\x40\xb6\x1e\x9e\x9e\x7e\x8d\xc8\x26\x25\xca\x5c\x82\x06\xb5\x2e\xbd\xbd\x5b\x1b\x90\xa3\x22\x29\x12\x2c\x89\x53\xf1\xae\xf8\xe5\x63\x7a\xf9\x56\xb6\x62\x47\xb2\xdc\xe3\x8f\x8d\x04\x5d\xcd\x28\xeb\x6b\x7b\x1e\x68\x48\x22\x3b\x5a\xf0\x3f\x29\xea\xa3\x69\xaf\x4a\x04\xe0\x94\xab\xfe\x18\xf7\x6a\x47\x3a\x0b\xca\x12\x88\x9b\xbf\xf4\x80\x58\x00\x25\x2c\x80\x63\x33\x1f\x17\xa9\xde\xe5\x41\x11\xb9\x70\xfa\xf1\xcd\x13\x10\x52\xe7\x46\xdb\x45\xb6\xa9\x0b\x43\x54\xe0\xa9\x21\x46\x44\xcb\xe6\xe7\x2b\x45\x70\xe5\x3e\xdf\xb2\xb6\xcf\x5f\x78\x54\xf9\x70\x80\x8e\x60\xf8\x97\x21\x2d\x4a\xa9\xea\x06\xf0\xf3\xac\x0a\x5e\x9c\x1f\xc7\x8f\xff\xd1\x43\xd2\xb8\xea\x79\xed\x62\xeb\x6d\x3d\xae\x5b\x25\x51\x5f\x8c\x3d\x63\x51\xce\x0d\x5b\x27\x82\xe1\x1b\x71\x9b\x44\xf9\x06\x32\x2b\x57\xe8\x4c\x46\xce\x5a\x95\x2b\x60\xce\x3b\x3a\xdb\x95\xcb\x44\xca\x03\x76\xcf\xa6\x73\xb4\x0b\x2b\x98\xd2\x5e\xb5\x67\x20\x77\xb3\x96\x62\xcf\xe5\x96\x19\xbe\x50\xa2\xda\xa4\x64\xef\x8c\x41\x6c\x1f\x5e\xd8\x26\x67\xce\x81\x5f\x97\x3d\xd0\xcb\x5a\x45\x43\x79\x35\xb5\x4c\x15\x65\xc3\x5b\x9e\x1a\x0b\xc0\x72\x2e\x3f\x54\x79\xa9\x53\xd5\xc8\x16\x76\xe0\x09\xc7\xf9\xec\x93\x59\xa0\x19\x68\x90\x28\x04\xc9\x9e\xd2\x63\x1f\x6a\x42\xea\x81\x2f\x9a\xbf\x99\x75\xcd\x0d\x72\x87\x78\xc2\x89\x22\xaa\x36\x4e\xa4\x97\x5c\xc7\xbc\x79\x73\xe2\x56\xd3\xdb\x7d\xa3\xc0\xdc\x42\xda\xea\x3f\x04\x84\xd9\x0d\x24\xe9\x95\x1c\xd8\xf6\xbd\x77\x35\x84\x3d\x8d\x9e\xa9\xc0\x40\x9f\xfe\x01\xc0\xa3\x5a\xc8\x45\x42\xd9\x39\xdb\xd0\x04\x28\x3c\x9f\x0b\x57\xf4\x27\x09\x70\x7e\xe5\xb4\xf3\xb4\x3d\x13\x4b\xfd\x52\xe6\xc9\x06\xf7\xad\xc0\x3e\x34\xca\x25\x24\x12\xe6\xd8\x33\xf0\xc7\xb8\x2e\x4c\x01\xf2\x1f\xbd\x3d\x59\xdb\x2c\x00\x82\x86\xff\x7d\x38\xf9\x79\x85\x02\x28\xe1\x5b\x59\xb5\xb5\x3b\x66\x73\x02\xf6\xd4\xcd\x63\x00\xfa\x26\xd6\xe7\xfa\xdd\x28\x5d\xf6\x83\x23\x1d\x3d\xaf\x14\x08\x21\xef\xf0\x8b\xcf\x8f\x95\xc9\x9a\x9f\x18\xe1\x45\x57\xfa\xed\x7e\xf5\x15\x9d\xdd\x5c\x52\xe5\x1f\xf7\x8b\x63\x90\x9b\xcf\x10\x31\x8e\x73\x4f\x36\x9d\x77\x1e\x6f\xfe\x85\xd7\x4c\x96\x1f\x8c\x0d\xea\x38\xdc\xb4\x8e\x1f\x83\x9f\xbd\x49\x23\x98\x61\x11\xb1\xf4\x8c\xec\x52\x4d\x9e\xbd\x14\xfd\x1f\x51\x7b\xe7\x6f\x1c\x0a\xcc\x2a\x5d\xde\xce\x0a\xe4\x49\xb6\xf5\x09\x1d\xa0\xe9\x53\x07\x19\x32\x77\xe4\xab\x62\xde\x74\x65\x2b\x02\x67\xd0\xb9\x5e\xa0\x18\x45\x0d\xce\x8e\xa8\x8f\x6c\x16\xd1\x45\xc4\x43\xb2\x73\x9f\xdd\xad\x81\x25\x24\x97\x33\xce\xc8\x07\xa6\x8d\x04\x07\xc6\x0d\xd1\xfd\xdf\xf5\x66\x1a\x54\x89\x4a\x25\x44\x98\xc7\xa1\xb4\xe9\x8d\x7b\xeb\x91\x84\xb0\x2b\xa8\x33\x4a\x76\x65\xd9\x82\x94\xe5\x92\x61\x89\xb7\xb1\x73\x72\x87\x96\x2b\xd8\x65\xe4\xe3\x42\x15\xd9\x0e\xb5\x49\x0d\x0f\x76\xd6\x64\x1f\xda\x23\x3a\x56\x4e\xe0\x09\xaf\xb9\x15\x9b\xf5\x0d\x4a\x3c\xea\x62\x26\xf7\xef\x2f\xb5\x3e\x51\x95\x13\xc0\x25\x7b\xe0\x15\x10\xa6\x1b\xea\xe1\x86\xdf\xd8\x02\x4a\x21\xae\x48\x2e\x12\xa6\x47\xf6\x4c\x02\xcd\x44\x8e\xdd\x6d\x42\xf5\xdc\x7a\x28\xfd\x4e\x7b\x31\x0b\x3c\x64\x63\x47\x4c\x40\xae\x59\x35\x90\x9f\x56\x54\xa1\xab\xa3\x5d\xd0\x31\x0a\x3d\xa1\xf3\xd4\x60\xce\x8b\xd8\xf5\x63\xe9\xa6\x4d\x9b\x5b\xb5\xf7\xd7\x36\x4b\x76\xe5\xbe\x15\x9e\xaf\xe5\x02\xee\xa0\x22\x24\x27\x34\xaf\x4e\xe4\x55\x54\x03\x71\xee\xe1\xb3\x41\xb9\x69\xdb\x20\x3d\xcb\x3d\x73\x38\x1d\x69\x02\x16\x94\x03\xd4\x40\x89\x5d\x59\xe6\x8a\x76\x88\x0d\xaa\x06\xbe\xd0\x30\xd9\x33\x46\xad\xd3\x8e\xb6\xd9\x7c\x73\x5e\xb8\x54\x21\xdc\x13\x03\x86\x89\x0f\xab\xf1\x45\x77\x7b\xa1\x27\xfc\xe9\xb3\x67\xa7\xe5\x7a\x50\xc2\xb5\xcb\x5a\x8b\xc7\x01\xe2\x0e\x66\x0c\xa0\x52\x32\xff\xa0\x29\xf6\x38\x81\x61\xc5\x72\x07\x4b\x86\xea\x07\x5b\x0d\xc7\x46\x01\xe1\x8e\xac\x02\x26\xb4\x75\xb6\x47\xa5\x66\xee\xa7\x1b\x34\x36\x2c\x44\x2b\x4b\xd4\xd8\x47\xa6\xaa\xab\x49\x2c\x31\xe3\xbc\xe7\xa7\x6f\x49\xd9\x3c\x14\xbb\x60\x3c\xb3\x45\x33\x73\xa2\x5e\x2c\xa2\x78\xd9\x51\xa8\x6b\x84\x93\x11\xd8\x82\xaa\x0e\x0b\xa4\x24\xf1\xdb\xa5\x72\x52\xed\x70\x48\x28\x7f\xea\x4f\x16\xb5\x92\xd4\x22\x0c\x19\x60\xf0\x18\x7e\x7a\xf3\x48\xf9\x2d\x44\xba\xc3\xe5\x9e\x9b\x2c\xe4\x0b\x56\xa0\xa6\xed\x7d\xcf\xfd\xea\x2c\xab\x11\x2c\x7a\xd8\x6f\x30\x38\xe5\xc7\xc8\x8c\xf2\xa1\x77\x77\xa5\x57\x62\x99\xc3\xe1\x3c\x29\xc7\xaa\xa2\xc2\xb6\xa5\xda\x71\x17\xd5\x25\x02\x54\x95\x75\xda\xcf\x04\x50\x18\x0e\x51\xca\x3d\xbb\x4b\x76\xe1\x11\x61\x51\xb0\xfb\xfd\xea\x71\x00\xda\xea\xf9\xc2\x7f\x48\x92\xe7\x46\x0e\x4d\x10\x21\x15\x61\xb3\x11\xed\xbb\xff\x4f\xd9\xdb\xc7\x4b\x55\xd5\xfb\xe3\xcc\x9e\x09\x89\x90\x27\xe1\x80\x08\x88\x48\x88\xc0\x9c\x0e\x87\x47\x89\x08\x10\x11\x11\x39\x08\x88\x48\x48\xac\xd9\x7b\xcd\xec\x75\x66\xcf\x5e\xc3\xda\x7b\xcf\x30\x47\x24\x24\x35\x22\x2e\x99\x97\xb8\x88\x44\x64\x5e\x33\xf3\x7a\xcd\xcc\x8c\xcc\xb8\xe6\x55\x2f\x17\xc9\xc8\x0c\xcd\xb8\xe4\x35\x32\xaf\x1a\x19\x99\xd7\x3c\xbb\xdf\x6b\xaf\xcf\xda\x7b\xad\xbd\xe6\xdc\xdf\xeb\xf5\xfd\xa3\x57\x75\x38\x67\x66\x3f\xac\xf5\x59\x9f\x87\xf7\x43\x5b\xd7\x10\x71\xcb\xc8\xb5\x2c\x14\x94\x6c\x20\xcd\x1b\x77\x9c\x51\x9c\xf6\x4c\x1b\x3b\x20\x4a\x71\xd9\x9c\x26\x5b\x6c\x1f\x18\x16\x22\x7e\xfc\xac\x70\x9e\xf4\x34\x57\x36\x4b\x61\xf6\x40\x65\x3d\x54\x2a\x7c\x08\xbf\xef\x94\x02\x11\xac\x83\x06\x56\xb7\x81\x4e\x40\x5e\x8a\x4a\x94\x97\x1f\x97\x6f\x95\x83\x5d\xb0\x93\xec\x5e\xaa\xf6\x86\x48\xb1\x08\x67\xde\x9e\xc3\xcd\x62\x80\x30\xb9\x13\x42\x26\xe1\xa6\x59\xe9\xb4\xbc\x80\x1d\x62\xda\xc4\x2c\xab\xee\x98\xb9\xcf\x68\xc8\xcd\xa9\x53\x5a\x67\xcc\x82\x3c\xf3\xb9\xd9\x6a\x6f\xa2\xc8\x39\xc5\xf7\x2d\x50\x3a\xbc\x9c\x9a\x18\xfd\xe6\xdd\x1a\x6a\xb5\xca\x48\x25\x6e\xc7\xe4\xd8\x4b\x83\x24\x67\x31\x11\x8a\x2d\x1d\x9a\xac\x47\x3b\xcf\x27\x3e\x10\x17\xa3\x90\xa2\x77\xac\x7e\xfc\xe1\x30\x85\x37\x48\xd4\x01\x55\x76\xec\xe6\x7e\x71\x12\x2e\x04\x2f\xdf\x4d\x27\x74\xd5\xe8\xb6\xf9\x03\xfe\xd9\xbb\xcd\x15\x97\x8d\x63\x55\x76\xe3\x83\xb7\x34\x23\x40\x52\x0a\x7a\xd4\x73\xca\x2e\xda\x3c\x50\xac\x26\x6a\x62\xa1\xfb\xfa\xfb\x30\xbd\xa8\xdb\xa7\xb7\xb5\xc5\xf1\x71\x20\x28\xbe\xe6\x3b\x2e\x59\xc0\x08\x56\x87\xf9\xe3\x96\x6a\x96\x9a\x97\xc4\x83\xea\x9f\x3c\xa2\x68\xaa\xa2\x32\x86\x46\xd6\x93\x73\x35\xac\x3d\xf1\x05\x74\xdb\xe8\x2a\xc0\x00\x8f\x56\x85\xb5\x13\xd4\x23\x57\xdc\x0e\xcf\x27\x81\x20\x9f\x50\x76\x2e\x46\x8e\x68\x20\x3e\x31\x42\x36\xda\x75\x49\xea\xee\x5c\x1f\x0d\x61\x80\x8a\x45\x75\x37\x64\x3f\x7c\x3c\x41\x1e\xb9\xb8\x9e\x1a\xff\x1e\x7a\x68\xa0\xd2\xfe\xf2\xfc\x7c\xf4\x75\xff\x3a\x4f\x5e\x44\x25\xf0\x85\xd0\x5e\x90\x4b\xce\x06\x56\xb2\xe3\x34\x68\xf6\x9d\xb1\x09\x84\x57\x85\x52\x87\xb7\xa5\x36\xbd\x29\xb3\xe9\x69\x53\x39\xc5\x5b\x08\xb2\x0f\x72\xe1\x69\x5f\x8d\x82\x62\x45\x65\x63\xe7\x76\xec\x4c\x76\x18\xab\xf2\xce\xe7\x67\xb5\x41\x65\x21\xe0\x1d\x92\xb8\x53\x4c\xdf\x55\x40\x09\xd1\x72\x88\xf6\xc1\x5d\xc3\x93\x67\x85\xfc\x66\x56\x74\xe6\x34\x44\xd7\x6b\xb8\xb8\x14\xcf\x77\xaa\x2f\x89\xa6\x1a\x22\xae\xc7\x97\xe2\xeb\xb7\x27\xd5\x60\x19\xab\x42\xa6\xab\x37\x8f\x52\x49\x06\x1e\x36\x39\xae\xaa\x84\x5d\x0c\xee\x48\x03\x16\xc3\xfb\x8c\xca\x0d\xde\x26\xba\x61\xb5\xee\x7f\x53\xf7\x4c\x91\xdd\x76\x1b\xcf\x3e\x20\x97\x11\x21\xf1\x33\xfd\xdc\x6b\x1a\xa5\xc0\xc1\x88\x39\xb1\x50\x4a\xe6\xab\x4f\xc6\x9c\x67\x45\x1f\xde\x58\xa8\xb0\x77\x71\xa9\x51\xf5\xa1\x12\xc9\xac\x79\x4d\x4b\x40\x1c\xc4\xdd\x07\xf5\x07\xf3\xf7\xc7\xe1\xca\xf3\x05\x1a\x85\x8e\xf0\x5b\x0a\x9c\xdc\xb7\x99\xf0\x65\xb1\x84\x6b\x22\x08\x9f\xe5\x3b\xc2\x3d\x6b\x64\x01\x54\x74\x68\x10\x9f\x8b\xc7\x97\xea\x76\x1d\x25\xe2\xf3\xe3\x9c\xdf\xc3\xfa\xbe\x43\x94\x68\xa5\x6c\xb9\xcb\x96\x69\x86\x16\xae\x15\xd3\x93\x46\x6c\x11\xa0\x03\x9f\x51\xb7\x24\x9a\xe3\x0f\x6f\x90\x41\xd8\x45\x15\x52\x00\x92\x27\x7d\x42\x5e\x7d\xfb\xcc\x19\xad\xd3\x39\xb1\xf1\xf9\x50\x61\x2f\x51\xe2\xfa\x51\xa5\xe1\x96\xf3\x1d\xe1\x53\xd3\x14\xd9\x08\x44\x6a\x50\x52\x65\xbf\xb9\xee\x3c\x9d\x33\xd2\x91\xef\x08\xaf\xdb\x75\x9e\x48\x70\x28\xf5\xf3\x88\x4b\x07\x46\x17\xf3\xa3\x83\xf2\xf3\x2b\xa8\xe4\x46\xb5\x90\x40\x9c\xf7\xbd\x53\xb6\xa1\xf0\xa6\x68\xdd\xf0\x27\x1a\x0e\x59\x76\x91\xfc\x13\x6a\x45\xc1\x01\x37\x0d\xa2\xb2\x0f\xed\x86\x4d\x53\xc2\x54\x76\xfc\xf8\x1e\x18\xb7\x6f\xa8\xfe\xb9\x3c\x13\x0b\x9f\x5c\x21\xf5\x73\xa9\x52\x9f\x64\xba\x35\x47\xff\x4b\xa2\x8c\x32\xd6\x2a\x2c\xec\x92\x6d\xd9\x06\xe2\xed\xcf\x5f\x3f\x30\x46\x7b\x93\x9e\x4f\x5c\xd3\xe7\x00\xb2\x18\xe2\x72\x50\x1b\xee\x99\x36\x62\x25\x2c\xe4\x2c\xc3\x1b\x9e\xeb\x51\x14\x41\x30\x1b\x8f\x84\x90\xdd\xcc\xf7\x6d\xac\x99\x0d\x1f\xdb\x02\x3e\x6b\xf3\x85\xc4\x59\x53\xfa\xf3\xbf\xbb\xa1\x71\x79\x03\x2a\xd3\x1a\x76\xcb\x72\x29\x85\xb6\x9c\x2a\x58\x24\x7a\xd4\xbf\x7b\x30\x39\xee\xbc\x46\x7c\xdc\x65\xaa\x5d\x8a\xbc\x2e\x1f\x32\xdc\xb4\x44\x11\x8b\xd9\xc4\x9b\x54\xe3\xc7\xca\x1f\x55\xa0\x02\x1d\x3a\x41\x87\x9f\x5b\x8a\xbf\x5c\xe6\x1f\xb7\x43\xfa\xe0\x63\x56\xc9\x77\x84\xd6\x16\x1d\x19\x17\x78\x89\x8a\xee\xf4\xc7\xb4\x18\x01\x23\x0c\x41\xd7\xfe\xfd\xe8\xa6\x21\x86\x87\x37\x82\x4e\xad\x78\x6b\x7d\x4e\xa4\x87\x77\x97\x54\x84\x77\x66\x5f\x4d\x9b\x9d\x16\x8b\x38\x76\x6a\xfe\x75\x9f\xa1\xca\xd8\x10\x20\xf0\x26\xe7\xd5\x9c\x73\x8f\x7e\x3d\x8c\xd1\x3a\x30\xe3\xbb\x8d\x17\x1e\xd7\x7b\xe5\x4e\x72\x4a\x67\xeb\x47\x2e\xd6\x9e\x4a\xbd\x47\xbd\xff\xc5\xef\xc8\xfd\x86\xdc\x86\x4f\x2a\x5c\x82\x67\xef\x72\x29\x6e\x51\x8c\x36\x55\x54\x26\x43\x46\x91\xfe\xfb\x3e\xa3\xd3\x61\xa2\xce\x49\x52\xfc\xc5\xfc\xc3\x59\x09\x85\x9c\x32\x05\x5e\x40\x93\x36\x86\x33\x54\x29\x89\x90\x83\x99\xf0\x93\xbe\xef\x1e\xe1\x4f\x45\x37\x89\xae\xca\x2d\xa1\x22\x42\x16\x80\x24\xd3\xad\x8a\x5f\x63\x31\xda\xc7\x8a\x90\x53\x43\x53\x58\xf4\x7c\x86\x88\x0f\xd7\x96\x79\x7d\xb9\xd6\xbd\x0f\x7c\x9b\x32\xe2\xc7\x63\xf0\x90\x3e\x3a\x40\xe4\x22\x97\x53\xd7\xe5\xa8\x96\x97\x37\x28\xc3\x74\x54\x02\x7c\xa0\x3f\x59\x27\xb1\x33\x54\x95\x8a\xd7\x0b\x1e\x85\x00\x75\x85\x63\x51\x25\xa1\xc9\x2d\x7d\x5a\x2b\x54\x2f\x9b\x75\x99\x90\x27\x5f\xf2\x44\xca\x77\x84\xf8\x0e\xc0\x9e\xf6\x8b\x59\x06\xf1\x50\x54\xf7\xc0\xf0\xe3\x1b\x03\x9b\xac\x78\x2c\x40\x35\x85\x7b\x4f\x28\xb0\x3f\x46\xbb\xf8\x03\xbb\x41\xa0\xf7\x96\x12\x1c\xf8\xd8\x05\xc1\xcc\xa5\xaf\xc9\x18\x6d\xe1\xaa\xc3\x49\x5d\xd9\x8e\xfb\x15\xce\x18\x02\x4f\x66\xa0\x3b\xaf\xd6\xb0\xa2\xa8\xe1\x4d\x62\x05\xc0\x07\xbc\x2f\x8f\x13\x97\x98\x65\x17\x71\xf5\xea\xb0\x43\x1b\x42\x57\x1d\x6a\x59\x92\x9c\x77\xeb\x41\x59\x57\xd7\x6d\x9a\xf6\xa3\xde\xa7\x1d\x44\x25\x1a\x6b\xea\x7c\x63\x61\x32\x05\xec\x49\x78\x65\xe4\xfb\x9a\x97\xb7\xeb\x13\x93\x54\x13\x41\xd8\xec\xa3\x52\xb2\xd4\x21\x2a\xc2\xe2\x8e\x50\x91\x88\xb7\x41\x1b\x2a\x77\xdd\xc3\xe9\xf8\xdb\x89\x1a\x1e\x75\x35\x24\xfa\x0f\x15\xeb\x06\xe4\xa0\x02\xaa\x70\xd5\xe4\x67\xfb\x48\x70\x0a\x17\x43\xca\x7b\x58\x1d\x36\xe4\xf2\xbb\xe5\x5b\xaf\xd1\x06\x12\x06\xa3\xd9\xdb\xe6\xf4\x68\x2e\x09\x33\x81\x53\x27\xcf\x57\x4f\xc5\xcb\x2f\x57\xfc\xe9\xc3\xc9\x61\x1a\x86\x94\x26\xa5\x4e\x8e\xe7\x3e\xbf\xdb\xa4\x9e\xdb\x71\xde\x68\x1c\x3c\xa0\xc3\x8e\x89\x4f\x64\xda\xf0\xfb\x96\x74\x64\xea\xc4\x75\xec\x70\x09\xb9\xe8\x5f\xef\x1e\xac\xb5\x10\x40\x52\x51\x74\xce\xaf\x3b\x99\xbe\xb0\x5a\x14\xb1\x6b\xd4\xf3\x69\x59\x28\xc3\x5c\xb9\xfc\x8a\x70\x82\xd6\xb8\x4d\xce\xea\x78\x7c\x93\xbd\x71\xa9\xec\xc6\x55\x5b\x39\x0c\xf5\xe6\x5d\x2a\xf7\x94\x44\x91\xd9\x4b\xc1\x08\xe6\x9d\xee\x27\x16\x34\x03\xf5\xc7\xd5\x03\x75\xc8\xa8\x50\x8b\x10\xd0\xc0\x8b\xb7\xa4\x21\x2a\xa5\x56\xab\xb5\xc7\x62\xe7\xda\x25\xda\xc8\x19\x71\xad\x94\xc4\x04\xb7\xfc\x82\x9a\x1f\xf8\x0c\x57\xa0\xb5\x1e\xfe\xee\xd5\x58\x4c\x93\x4f\x02\x45\x76\xde\xe7\x19\x5d\x36\xae\x46\x70\x3d\x4e\xb8\xcf\xac\x4d\x03\x19\xb0\x6b\xd1\x3a\x27\x0c\x92\x66\x63\xe6\xcf\x8e\x57\x86\xf8\x98\xf8\x58\xd8\x32\x66\x7e\xbb\xe7\x7c\xb5\x6e\x76\xb1\xa7\xec\x01\xe3\x78\x28\xc4\xfa\x89\x17\x08\x51\x86\x56\xd5\xfe\xdf\x52\x31\xae\x07\x44\xaf\x04\x99\x3e\x83\xb9\x7d\x36\x78\x73\x8c\x76\x32\x38\x55\x51\xb8\xca\xed\xf2\xe5\x57\xd2\x67\xaa\xef\x61\x07\x95\x55\x08\xdc\x35\x1f\x68\x61\xdc\xa6\x66\x59\x70\xfb\x33\xc7\x47\xe8\xda\x32\x26\xc3\x3e\x62\x60\x53\x92\xd9\xed\x0f\x53\x3a\x20\x26\x71\x88\x9f\xd8\x23\x99\x0b\xb5\xee\x4a\x83\x87\x6d\xbe\x28\xd6\xbf\x9a\x7e\xf8\xa4\xe4\xd2\xc4\x07\x20\xbb\xcd\x11\x90\xfb\x24\x9c\xf0\xdb\x3d\xac\xeb\xe5\x27\x1a\x56\xd9\xbe\xa7\xd2\x8b\xa8\x8a\x91\x89\x7b\xd0\x76\xc8\x5e\xb8\x4a\x11\x57\xc7\x0c\x57\xa8\xdb\x00\x44\xde\x0c\xbd\x26\xef\x14\x34\x3e\x5e\xbe\x7c\x3b\x37\x50\xed\x2c\x82\xbf\xd5\x9b\x63\x07\xa9\xcd\x4a\xc2\x4f\x80\xcc\x7d\x32\x1d\x75\xb0\x32\x2d\x7a\xeb\xf6\x51\x0a\xd4\xc3\x22\x54\x6f\xdb\x16\xe7\x6a\x61\xbf\x8a\x84\x4a\x65\xf8\xe1\xde\xa4\xae\x45\x0c\xa7\x36\xdc\xf0\x85\xf2\xd4\x2e\x41\xa6\x3d\xd7\x1f\xa4\x74\xd1\x6b\x08\xd8\x53\xf7\xbc\xa9\x43\x36\x08\x6f\x56\x89\xdd\x9e\x9b\xf5\x92\x66\x67\x02\x30\x03\x71\x68\xfe\x70\x5b\xaa\x2b\xe8\x02\xa7\x33\x0c\x6a\x8a\x87\x1d\x66\x26\xb6\xb0\xc7\x7b\xeb\xd9\x1f\xe4\x14\xb6\xa0\x0d\x57\xad\x71\x55\x1e\x02\xb9\x97\xeb\x96\x5d\xb1\xf2\xf2\x0e\x9d\xc4\xb1\x60\x59\xf3\x1c\x1f\xb9\xb1\x84\x73\x77\xf6\xfc\x0d\x1a\x6d\x1b\xe3\xaa\x12\x0e\x32\xe5\xed\x12\x28\x49\x63\x97\xb8\xcc\xd9\x6d\x32\xbd\x6d\x9f\x12\x95\x4a\x99\x89\x8b\x34\xa3\x1c\xe2\x38\x69\x7b\x95\x49\xb7\x2b\x73\x0e\x0e\x28\x0c\xaf\x7e\x20\xbd\x69\xda\xa7\x4c\x6e\x9f\x2e\x10\x96\xb9\x2d\x8e\x82\xd7\xc6\x8c\xf2\x05\xf6\x99\xd5\x7a\xb6\x44\x59\x8c\xf9\xcc\x06\xcf\xe8\xf4\xa3\x12\xea\x22\xae\x78\xfb\x5f\xe9\x84\xbd\x4f\x3c\x07\x38\x2b\xdd\x99\x7f\xf6\x87\x28\x39\x8c\x49\x98\x29\x72\x87\x45\x8f\xc9\x82\x9e\xa8\xba\xa9\x83\x07\x2a\x49\x70\xf4\x31\x26\xaa\x82\xa7\xc7\x53\xaf\x25\x87\x7c\x4f\x06\xcf\x63\xd2\xd9\x41\x17\x66\x82\xe7\x92\xbd\x72\xee\x85\xda\x2b\xa8\x11\xed\xb8\x36\xae\x7d\x5f\x95\x06\xb4\xb0\x47\x4a\x82\x12\x63\x7c\x7c\x6b\xd2\xba\x24\x6a\xef\x3c\x2f\x10\xc1\x0d\x8c\x78\x6b\x2f\xf3\x8b\x82\x26\x55\x50\x77\x31\x8b\x95\xbf\xfc\xc1\xfd\x45\x95\xcb\x7c\xa0\x5e\x18\x5f\x79\x40\x11\x31\x21\x16\x14\x26\xdd\xc6\xdd\x43\xe4\x41\x1c\x95\x01\xc2\x75\xe7\xfb\x1f\x28\x5b\x9b\xd7\xa4\x1d\xe1\x59\x65\x1c\xc9\x09\x13\x1c\xc4\x92\x29\x32\x85\xb8\x05\xa5\x70\x78\xe3\xbc\x16\x6d\xf9\x54\xe3\x33\x7c\x2f\x3b\x2f\x1d\xc7\x04\x3e\xe6\x53\x9a\x04\x06\xb7\x47\x34\x9d\xa0\x00\x23\x80\x97\xb5\xa3\xdf\xc2\x9e\x87\x99\x90\x68\xcf\x7e\x7d\x9a\x0a\xdf\xc5\x70\x61\x07\x8b\x1a\x5a\x82\x26\xdd\xb7\x1e\x0e\xac\xec\xc1\x42\xba\xc3\x68\x37\x2c\x46\x7b\x3c\x74\x47\x68\xdc\x62\x0f\xe6\x18\xe0\xbc\xb3\x5d\x48\xc3\xbb\x66\x50\x29\x08\x41\xba\xaf\xba\xfd\xc4\xbb\x46\x90\x5f\x3d\xbf\x3f\x01\x28\x4e\x6b\xe7\x7c\xb8\xfa\xfe\xe6\xf9\x87\xeb\xdb\x82\x8a\x3f\xe0\xde\x91\x4a\x98\x24\xcd\xfc\xc8\xfb\x96\x6b\x71\x8a\x70\xd0\x98\x38\x3b\x8e\xed\x54\x62\x32\xf5\x5c\x30\xd4\x9c\x30\x5c\x5a\x62\xdb\xcd\xe2\x50\xdf\x5b\xae\xed\x4d\x8a\xe2\xd3\x28\x3c\xfc\xc4\xb9\xc9\xf5\x4c\x9d\x16\x7d\xd8\x55\xdb\xd3\xcf\x04\x7b\xbe\x40\xce\x87\xaf\xef\x91\x34\x2c\xac\xa8\xf7\x65\x8e\xb6\x08\xeb\xc9\xc0\xf5\x53\xb0\x5e\xef\x90\x26\x11\x89\x1d\xe4\xd9\x54\x05\xa9\x77\x67\xcf\x1e\xbc\xb4\xae\x4f\xd0\xcd\xe8\xf5\x9a\x3d\x4c\x82\xb3\x3f\xd5\x7c\x9b\x84\x77\x11\x14\xd9\xd9\x0b\x1f\x81\xb7\x06\x92\xb7\xd0\xda\xfa\xb7\x11\xfd\x92\xae\x2b\xaf\xe9\xad\x2e\x19\xed\x0b\x9d\x94\x95\x41\x1d\x36\x97\xb7\xe4\xbe\x70\x69\x85\xb8\x98\xf7\xca\xbe\xb6\x5c\xfe\xd8\x46\x24\x76\x14\x7a\xac\x57\xd2\x86\x28\x81\x3d\x5b\x94\x0f\xff\xe9\x1e\x41\xe8\xc3\xae\x07\x5e\x2b\xf7\xea\x9d\x7b\x5a\xc7\x1e\xd4\x91\xb9\xc9\xcb\x34\x4d\x1d\xc4\xfc\x46\x4f\xcd\xf9\xcc\x2f\xf7\xca\x46\x6c\x1d\x73\xd9\x61\x48\xf1\x8d\x8f\xcf\xd3\x34\x6d\x03\x57\xb6\x2f\xce\x8e\xd1\xa4\x9a\x29\x47\x1f\xc0\xcb\x1f\xb9\x37\x56\x96\x64\xa0\x6b\x1a\x1b\x95\x76\x9e\x6c\x06\x0a\x40\x5b\x58\xd8\xe3\x74\x67\x1f\x6b\x93\xa7\x86\xdd\x5a\xe4\x87\xc0\x57\x97\x0c\x57\xfa\xcd\x0a\x83\x25\xfa\xc7\xcc\x6b\x42\x5e\x8b\xf8\xfc\xe2\xa3\x2c\x2f\x7c\x7e\xb1\xe4\x77\xd9\x4d\xa6\xb5\xd9\x11\x2c\xc9\x6d\x2b\x24\x71\x96\x3d\xb8\x64\x80\x88\x89\xd5\xc0\x01\xf4\x68\xe6\xb1\xb7\xb4\x2a\xaf\x8e\x1a\x30\xa0\xce\x3e\x7d\x46\x1a\x1e\x70\x87\xa8\xbf\xbc\x0b\x99\x69\x7b\xde\xa6\x01\xef\x48\x7e\xf6\xbe\x0b\x5d\x9d\x3a\xa9\x6f\xcc\xea\x9b\x9a\xce\x3b\x66\x60\xb1\x0e\x19\x46\x38\xed\x34\x48\xa6\xac\x42\x3c\xd9\xbd\xad\x3d\xb9\x33\x9b\x56\x9a\x5e\xe7\x55\x67\x9b\xdd\xd5\x92\x7a\xd6\x18\xf4\x81\x6a\x21\xc4\x48\xb5\x2a\xd6\xdc\xb5\xad\x29\x2e\x1e\x97\xce\xcb\xfc\xf7\xe3\xfa\xb4\x93\x81\xdc\x4f\xb8\x43\x13\xa6\x24\xae\x8f\xdc\x12\x01\x0c\x28\x2f\x5f\x0e\xe9\xe5\xa1\x6b\xa1\x06\x18\x50\x1e\xf6\xe5\x81\x22\x58\xa3\xd1\xb5\x7d\xf3\x68\x82\x43\xa0\x26\x4e\xd1\x9f\xe7\xc9\xa1\x33\x4b\x0c\xd9\x3f\x58\x24\x24\xdb\x39\xfe\xd7\xb7\x95\x8d\x3f\x65\xfb\x10\x45\xa5\x02\x95\x88\x8b\xb8\x9a\x7f\xd6\xbe\x7f\xa4\x32\x89\x42\x4d\x64\xf0\xec\x14\x0d\xd5\x47\x8b\x45\x8e\x29\x11\x7d\xb4\x2f\x6a\x95\x3b\xae\x71\x33\xe8\xa4\xcd\x69\x8c\x7e\x1a\xc2\xc4\x35\xd4\x0b\x12\x8f\x93\x6c\x97\xbe\xa1\x97\x5f\x11\x0e\x5b\x9b\x6e\x84\x99\x81\xc3\x21\x9a\xda\xb4\xd5\x98\xf5\xc2\x20\x91\x11\x45\xc7\x9d\x50\x03\x34\xfe\x53\x66\xcb\x36\xda\xa8\xdc\xfa\x1d\xed\x70\x78\xae\xe4\x40\x47\x39\x3b\xe9\xbb\x57\x55\xf0\x8f\x2d\xf4\x60\x7a\xbc\xfc\xd4\x85\x5a\x1a\xe5\xa0\x86\x47\x90\x82\x66\xc9\x7c\xf2\x85\xa1\x62\xd5\x50\x17\x73\xf9\xfb\xba\xc8\x47\xe6\x8e\x91\x01\x04\x8c\x92\xe3\x31\xc5\x47\xc6\x5e\xa2\x55\x83\x25\xae\xe1\xd1\x43\x18\xca\x4d\x39\xa3\x9b\x63\x9a\xfc\xae\xa9\x63\xe1\x18\xe7\x92\x9b\x37\x06\xb6\x42\x85\x16\xf2\x1d\xe1\xf5\xb3\xd2\xc1\x04\xa8\x05\x6a\xab\x6d\xc7\x5a\x48\x72\x3c\x3e\xe5\xe3\x81\xf1\xea\x0d\x6a\x9b\x3d\xaa\xc3\x61\x70\x91\x9b\xf6\x86\xd4\x00\xf6\x94\xc5\x94\xa1\xed\x4a\xe7\x44\x0e\xb0\x3e\xbe\x48\xdb\xb6\x3e\x66\x98\xfa\x8d\xaa\x68\x33\x1a\xe3\x6e\xd7\xfb\xbf\xac\x04\x0d\xf1\xae\xe8\x9f\x47\xcd\x03\xb1\xc3\x55\x8c\x56\x89\xd9\xec\x3b\xf6\xbc\xd4\x00\xef\xa4\x41\xbe\x23\x1c\xd2\x5f\xc3\x46\x20\x66\xda\xc2\x55\x7a\xb1\x56\x34\x9a\xc8\xc3\x22\x7c\x3c\xb2\x7d\x68\x73\x95\xcd\x13\x11\x6c\xc8\x32\xdb\xc3\x15\xec\x52\xc5\xc0\xb7\x63\xf3\xb0\x9e\x4b\xc3\x8e\xee\xcc\xd7\xba\x06\x28\xb3\x10\x5e\x3b\x9d\xbf\x49\x88\x0f\x22\x66\x71\x04\xf6\xf0\x07\x92\xe0\x58\x2a\x34\xb8\x93\xe5\xf6\xe1\xaa\x38\x45\x95\x56\xa2\x3f\x16\xb8\xf5\x4f\x8c\x97\xf1\xc7\x09\xcc\x72\xf4\x11\xb7\x59\x3d\x01\xf8\xb0\xc0\x85\x1a\xc5\xd7\xe5\x68\xcc\x8d\x32\x29\x96\xef\x08\x8d\xc7\x63\x0e\x39\x3f\x0a\x78\xaf\x73\xfb\xd3\xd0\x69\xbf\xc2\xb4\x69\xbe\x23\xac\x4c\x3e\x4f\x3c\x78\x52\xad\x2a\xd8\xef\x8e\xbe\x49\x60\xa5\xc5\x62\x53\x43\xf9\x9f\x46\x28\x03\xa9\xa0\x58\x44\x62\xfd\x67\x1f\x78\x3d\x51\x49\x9b\x3a\x25\xdf\x11\xfe\xe2\xb4\x74\x43\xad\x98\x6e\xe0\xf8\x0d\xa5\x6d\x60\xcd\x6d\x42\x90\x08\xe1\x68\xe3\xd2\x35\xb0\xd3\x7d\xb4\x29\x8f\x37\xe1\x0a\x8c\x38\xff\x53\xeb\xdf\x78\xd8\xf5\x88\x9f\xc8\x4e\x65\x4f\x2c\x48\x72\xb4\x52\xd0\x24\x5e\x90\x2d\x8f\xd5\xb0\xbb\x1c\xab\x21\xbc\xb8\xec\xfb\x75\x23\x0a\x2e\xf0\x2e\x68\xb5\x97\x6a\xdf\x1c\x6d\x17\x2c\x6b\xdb\xcc\xef\x8f\xaa\xde\x44\x95\x2a\x12\x93\xc6\xec\x7d\xcf\x49\x69\x5a\xe9\xd5\x2b\x63\xd4\x2d\xfb\x54\x99\xd3\x28\x9e\xc8\xf1\x5e\xbf\x11\xaa\x24\x16\x60\x3c\x37\x4f\xd4\x1e\x41\x19\x57\xb9\x32\xa1\x40\xc7\x8d\x3b\xa5\xb0\xcc\xb1\xeb\x62\x4b\x61\x47\x19\x17\xbf\xa1\xd8\x46\x60\x64\x39\x14\x68\x37\x61\xf8\xa6\xec\xd3\x99\xfc\xbc\x36\xea\x6b\x14\x05\x37\xe2\x9a\x00\xd8\x30\xf6\xa6\x21\x09\x0d\x2c\x04\xb0\x32\xcf\xde\x2f\x53\x80\x52\xb4\x0f\xce\x5d\x90\x74\x1c\xda\x7c\x3b\x65\xad\xa8\xd9\x9e\x4e\x9b\xde\xce\x49\x35\xf0\x16\x0f\x2a\xa6\x95\x36\xa9\x45\x3f\xda\xa1\x09\x39\x36\xa8\x80\x33\x74\x84\x2f\xc3\x76\xcf\xcf\x5f\xb4\xbc\xa9\xfe\xbf\x43\xd1\x1e\x0e\x08\x10\x50\x4b\x93\xe7\x78\x36\xaa\xe2\xa4\x23\x3b\xa7\x18\x80\xfc\xf9\x18\xfe\xf3\x31\xc8\x1f\xd3\xb6\x69\x56\xc1\xc2\x6d\xd6\xb4\xb9\xaa\xf3\xa4\x88\xe4\x1f\x7f\x4d\x76\x81\x2b\xd4\xf5\x19\x06\x4d\x96\xae\x35\x52\x3a\x0d\x25\xa9\xea\x1b\xef\x29\x2a\x3f\x88\x95\x6c\x1a\xf8\xdc\x69\xe0\xf3\x2f\x0d\x51\x5e\x3c\x43\xb1\xfa\x7e\xf6\x47\x5a\xed\x86\xa3\xed\x2b\xb0\x5d\xdd\xc6\x90\x05\x0a\xb0\xdf\x45\x4e\x03\x1a\x94\x75\x05\xb6\x56\xc0\xac\x54\x16\x5e\x09\x17\xed\x1e\xa1\x25\x5d\x0a\xd3\x31\xfc\xce\x9d\x8a\xb3\x27\xf1\x38\x43\xe0\xfb\x0f\x2a\x01\x2d\xca\xaa\x3a\xc2\x49\x5d\x0a\x23\x86\xf9\x84\x1b\xfc\x5e\x75\x4a\x21\x9a\x13\xb7\x04\x2a\x12\xb9\xfc\x8e\x8b\x65\x24\xc2\x75\xcf\xb4\x91\xeb\x36\x4b\x8d\x19\xcf\x28\x65\x00\xc3\x48\x24\xc5\x99\xf5\xa2\x6f\x57\xa1\x2e\xad\x52\x47\x40\x5e\xc7\x1d\x97\x05\xd4\xcc\xf6\xe8\x31\xcc\x10\xc8\x04\x91\x74\x44\x3f\xfa\xee\xa3\x6a\xc1\xcd\x3c\xa0\xa5\x66\xde\x3d\x3a\x52\xdd\x10\x3e\x0f\xa8\xca\xd8\x34\x37\x57\x1b\xfb\xf1\x4e\x93\x80\x70\x7d\xcb\x81\x50\x1e\xb8\x31\xd3\x69\xc5\x16\xb9\x83\x6a\xc4\xb5\x88\x19\xfb\xee\xf5\xd6\x28\x64\x9c\x14\xc8\x8b\x87\x7f\x5f\xac\x65\x88\xc2\x08\x2d\x36\x90\xc9\x7c\x5f\x83\x67\x73\x48\x42\xa2\x6c\x6e\x7c\x65\x6d\xca\xce\xd1\xc2\x15\x9e\xf9\x84\x0b\x7c\x78\x58\x0b\x30\x73\x48\xdc\x9f\x32\x66\xf9\x72\x29\x7c\x52\xa9\x1f\xc3\xc1\xda\x21\x1d\xb0\x1a\xa9\x81\xe3\x0c\xdf\x77\x5f\x3c\x99\xd6\xae\xaa\xf3\xf2\xa7\x47\xfc\xea\xfa\x27\xe3\x16\x3d\x81\xfa\x68\x76\x4d\xb7\xea\xf6\xfc\x98\x5b\xd7\x77\x69\x3a\x64\xcd\x68\xe7\xe6\x89\xb1\x53\x55\x6e\xdd\x63\xe9\x94\x4b\x31\x84\x4d\x6a\xf2\xf5\x13\x52\xc3\x1e\x58\x2c\x67\xd7\x25\x5c\x23\xde\xc9\xe5\x0f\xe5\x8e\x9c\xfc\x4d\x0b\xd5\x08\x7f\x6b\xc6\xec\xb1\x5a\xbe\xe0\x79\xc8\xb4\x03\x0f\xfb\x7c\xda\x28\xb6\xf6\xf7\xda\xa4\xd7\x08\x74\x45\xd6\xaf\xd0\x44\x24\x69\x11\x75\xa5\xe8\x62\xcf\xae\xd3\x75\x60\x39\x9f\x98\x37\xfa\x05\x22\xf5\xf8\xc2\xd1\x5a\xee\xd7\x45\x44\x6e\x1b\x07\xe6\xc3\x0b\xd3\xe9\x61\x21\x60\x2e\xf6\xfd\x9e\xc6\xc1\x99\x96\xf6\x21\xf1\x91\x80\x4b\x94\xc5\x5e\x77\x61\x75\x83\xee\x78\xc2\xe7\xbc\xac\xa0\xf4\x0a\xca\x3b\x75\x31\x0f\x61\xc1\x12\x0f\xd0\x57\x6d\x4d\x18\x26\x4e\x54\x3b\x4e\xd4\x46\xf1\x36\x25\x26\x06\x39\xd8\xec\xde\xc3\x92\xd2\x1c\xa8\x46\x03\xe6\x64\x09\xed\x70\x89\xa9\x4e\xed\xce\x1f\xad\x50\x08\x89\x10\x31\xe7\x63\xf9\x57\x14\xe1\x30\x1b\x31\xe4\x93\x46\x13\x82\xd3\x98\x37\xbe\xbf\xf2\xa7\xd1\x29\x73\xcb\x52\x45\x70\x1f\x31\x3f\x7a\xe1\xe1\x1f\xcf\x8c\x54\xba\x09\xb5\xa6\x54\x20\xb7\x61\xf6\xa0\xf8\x10\x54\xe6\xd9\x07\xa0\x60\x11\x44\x7b\xae\xf8\x93\xbb\xbc\x6f\x4b\x1a\xbf\x5b\xc3\xa2\xfb\x98\x1d\xa8\x58\x65\x54\x55\x43\x96\x37\x34\x93\x73\x54\x01\xb9\x5b\xc0\xe6\x64\x07\x5b\x17\xb8\x92\x6a\x6d\x31\x52\x0a\xb0\xc2\x31\xca\x2c\xde\x24\xcb\x7e\x98\x03\x85\xd3\x36\x8d\xd5\x83\x54\xd9\x66\x88\xa4\xd8\x49\xe1\x22\x8d\x68\xc5\x45\xd0\x45\xbd\x66\x2c\xde\xa0\xb8\x5e\x81\x10\x01\x57\xbd\xcc\xf5\x19\x99\x38\x34\x43\x92\xf8\x93\xd7\xb5\x66\x29\x1f\x67\x42\xb3\xd4\xd8\xb7\x50\x26\x2c\xb0\x7a\x70\x2c\xf6\x9f\x19\xf7\xba\x6c\xd8\xdb\x01\x00\xd6\xd2\xef\xef\xeb\x82\x9b\xbe\x12\xa5\x9b\x58\xd9\xbd\xf7\x0b\xa6\x43\xc1\xf3\x91\x09\x42\x3c\xfb\x77\x28\xf8\xbe\x2a\x32\xa1\xd7\xbc\x5d\xc3\xff\x17\x90\xc7\x50\xb2\x87\x8d\xb5\x27\xe0\xcd\xd6\x89\x6f\x5b\x0c\xd5\xa1\x31\xd2\xab\x17\xac\x9b\x22\x23\x18\x34\x9b\xb6\x9e\xd2\x70\xa5\x94\x95\x90\x4b\x6b\xaa\x61\x44\xf8\x79\xcd\x4d\x53\xa8\x55\x08\x91\xa6\x6b\x9b\x74\xc5\x02\x51\xb6\x46\xd7\x59\x72\xd3\x61\x8f\x14\x90\x85\x5c\x19\xd5\xff\xee\x6b\x3d\x40\xd7\x8a\x3b\x4a\xc6\x8c\x63\xe9\x82\xb8\x86\x3c\xe2\x10\x5c\xf3\x44\xbd\x18\x3f\xb5\x7b\x06\x5e\xa0\xaa\x18\x09\x03\x43\x99\xef\xdd\xf3\x86\xe2\x4d\x8c\x6c\x3f\xfe\xee\x2f\xce\xd5\x98\x42\x08\xe0\x35\xe1\xb5\x6f\xa5\x30\x5c\x2b\x16\xac\xe4\x18\xae\x61\xbb\x55\xc4\x97\x14\x2d\x7e\xe0\x7c\x95\x5b\x83\x7c\xdb\x47\xe5\x98\x77\x7a\xba\x26\xca\x0f\xbc\x29\xef\xd9\x94\x1f\x05\x83\xd9\x30\x25\x4d\xd6\x2a\xef\x13\x72\xcf\xa2\xd6\x52\xb3\xb8\xe5\xb0\xd1\x8a\xbc\x19\x66\xd0\xf9\x7b\xe0\x44\x92\xf2\xdb\x7e\x53\x43\xc9\xf8\xfe\xf1\xd1\x8a\xb8\x42\x17\x76\x9a\x33\x91\x6f\xbc\xd5\x7c\xfc\x00\x04\x39\x69\xc4\x19\xb6\x62\xe2\x6a\x52\x5f\xb8\xc4\x2e\x5f\x0c\x7d\x80\xf9\x65\xd4\xc0\x9e\x4a\x6b\xb9\xf9\x15\x09\xab\xa9\x62\x5a\xed\x49\xc1\xff\x1e\x6d\xfa\x44\x0b\x9d\x31\xfd\x8d\xe7\x1e\xbb\x43\x61\x7f\x93\xf2\x41\x7e\x25\x6d\xe4\x34\x93\x03\x66\x33\xbd\x76\x27\xb9\xb7\xc9\x85\xd4\x8c\xa5\xbb\x35\x6c\x11\x45\x3d\xf5\xf1\x8d\x5f\xc2\x70\x37\x7f\x45\xb4\x1f\x39\x63\xb7\xa9\x1d\x71\xee\x93\xd2\xde\xae\xae\x90\x0c\x33\x87\x3f\x50\x52\xd8\xa0\x54\xc2\x60\x51\x13\x4e\xd9\xa4\xf3\x3d\xb9\x7e\x00\x0c\xeb\x8b\x05\x6d\x6e\xeb\x76\x06\x4c\xc8\x39\x86\x77\x6b\xc8\x2f\x02\x42\x7d\xc0\x32\x7d\x7f\x84\x54\x57\x68\x6d\xae\xee\x66\xce\xd2\x39\x32\x75\xcc\x04\x44\xc0\x78\xfb\x9d\xa1\x2a\x50\x46\x39\xbf\x6f\x3f\x32\x24\xa9\xda\x18\xb6\xa3\x8a\x12\x1c\xce\x1e\xbe\x6f\xa0\x32\xeb\x41\x00\x64\x7b\x6a\x8f\x32\x17\xc2\x9e\x47\x80\x0f\xf7\xf3\xa3\xe9\xf0\x1c\xb8\x16\x35\x83\x0a\xdf\x8e\xd2\xd3\xc2\x58\xb1\x58\xa3\x9f\xb8\xd1\x62\xa3\x6e\x22\xec\x94\x3d\x47\xd3\x78\x8b\x19\x12\x5c\x3c\x75\x82\xec\x15\x36\x70\xbc\x97\xb3\x2b\xf7\xb5\x48\x5b\xf9\x94\xb0\x6e\xae\xb4\x6c\x88\x42\xbb\x76\x31\x13\xee\xdd\xad\xa1\xe6\x72\x86\x3d\x99\x6b\x65\x1a\x43\xb4\x66\x0d\x75\x4b\x1c\x19\x06\xa5\xf0\xf7\xce\x6a\xda\xc3\x51\xa0\x27\xbe\x30\xda\xcc\xde\xfc\xa6\x56\xbe\x6c\x02\x27\x59\x38\x84\x26\x2b\x55\x0f\x72\xfc\x28\x3f\xf3\x39\xf8\xe6\xf5\xa2\xa6\xb8\x8f\x71\x35\xef\x61\xe1\x2b\xc9\xd3\xa8\x8b\x35\x3d\x9c\x28\x73\x28\x11\x5f\xac\x8e\x3f\xc8\xc6\xe2\xa6\x98\xc9\xdd\x9d\xfd\x95\xe4\xe8\x04\x28\x76\xa1\xc8\x5c\x39\x70\xa0\x5a\x74\xb3\x28\x5c\x3d\xbf\x5f\x19\xeb\xb6\x4e\x8f\x3e\xf2\x16\xcd\x66\xc4\xa3\xa2\x61\x95\xf9\xd8\x1e\x29\x99\xd1\x7a\x19\x4f\x14\xef\xd7\x86\x30\x0c\x95\x88\x9b\x26\x0f\x67\xdf\xde\x9c\xce\xbe\x6c\x1a\x78\xd8\xa6\x52\xba\xe5\x27\x5b\x05\x3d\x04\x63\xce\xad\x33\xce\x59\x90\x9a\x99\x37\xea\xd4\x29\x72\xf3\xd7\x17\x20\x4d\xeb\xe4\xb2\x5d\xe1\xa8\x45\xda\x3c\x8c\x9a\x04\xc7\xaf\x24\xf3\xe3\xbd\x9a\xce\x44\xc1\xc3\x51\xf1\x01\x62\x3e\x63\x56\xe8\x09\x2c\x9f\x52\x70\x43\x1e\x21\x53\xd4\xb6\x1a\xc6\xec\x2b\x7d\x4c\xdc\x02\xc3\x9c\x06\x2a\xd3\xbd\xeb\x27\xa8\x3d\xb0\x72\x94\xaf\x7c\x4d\xea\x8f\x4f\xe5\x1a\xb2\x99\x9b\x1e\x1a\x20\x8b\x42\xc4\x13\x0d\xe3\xd9\x9a\xcc\xad\xca\x80\xb6\x8f\x1f\xd5\x2f\xa4\x35\x9f\xcf\x01\x70\x2b\x5f\xd2\xc1\x36\x26\x89\x16\x07\x4c\xbf\x7b\x17\x9b\x30\x76\x8e\x10\xa9\x32\x8e\x29\xe7\x06\xa8\x53\x77\x84\xf9\xbd\xe9\xd6\x13\xad\x90\x98\xbc\xd4\x39\xab\x45\x89\xf5\x95\x2a\x62\xbe\x90\x2a\xe8\x6a\xd3\x1d\x88\x6a\xa0\x70\x13\x3e\x3e\x5a\xa1\xca\x60\x06\x50\xf9\xa1\x4f\x8a\x9c\xc3\xa1\x82\x75\x9a\xe9\xd8\x2c\xcb\xf1\xc9\xcd\x43\xc4\x89\x8f\xa4\x17\x1c\x0d\x18\x68\x73\xfc\xa1\xbf\x92\x09\xd9\xa8\x0a\xa2\x0f\x13\x42\x79\xba\x57\x19\xce\x5b\x7c\xf4\xd2\x9d\x39\xb6\x06\xa6\x01\xd7\x63\xcf\x37\x6d\x3e\xc7\x8a\xf7\xc3\x6f\xfa\xb7\x28\xd0\x37\xde\x59\xf0\x05\x5a\xfd\xee\x05\xc9\x13\xbf\x2c\x3f\x85\xa3\x39\x67\xc8\x07\x37\xe5\xb2\xe9\x6d\xfc\x4b\x2f\x78\x4a\xb9\x55\xe4\x94\xa3\x5c\xea\xba\xcd\x2a\x0c\x11\x74\x16\xa3\x9f\x3f\xee\x2a\xc2\xde\x66\x94\x74\x1d\xd3\x76\x49\x50\x2c\x46\x65\x4e\x45\x4d\x5a\x5e\xee\xad\x8b\x1b\x45\xe7\x83\xa8\x4f\x6e\x6e\x51\x33\x88\xc0\xe5\xfc\x3c\x91\xd5\x7c\xef\x15\x19\x20\x4b\x28\xd1\x88\xfb\xd7\x75\x2a\x96\xa5\x8e\x08\xef\xbf\x7c\x72\x84\xe2\x41\x1c\x54\xf9\x93\x08\x18\x10\x4d\x3a\xc6\xc0\x99\xb0\x14\x73\x4f\x4b\xb9\x2a\x47\xcd\xfe\x68\x1d\x2a\xee\xe8\x39\x3f\xc1\xa0\x3b\x50\x44\x51\x82\x9c\xef\x08\x47\x1e\x4a\x3d\x07\x9f\x08\xe9\xd2\x6c\x66\xd7\xc7\x64\x0e\xd6\xd1\x9d\xc1\x23\xd2\x18\xe4\x2a\x6a\x44\x07\x79\x78\x9f\xb6\xc8\x7d\x86\x6a\xd8\x89\xbb\xbc\x43\x15\x29\xe2\xa8\xa0\xf0\x84\x20\xc7\x5f\x95\xe6\x23\x2a\x20\xd7\xa2\xd0\x1f\x78\x5c\xe8\x7a\xa8\x7a\x1b\xdd\x99\x5f\x8a\xd6\xc9\x6a\x4a\xc0\xa2\x3b\xdc\x7b\xbb\x24\x90\xaa\x62\x7d\xdf\x1c\xab\x2b\xd6\xfb\x75\x8c\xdd\xf8\xac\x7a\xe3\xa4\x22\xc6\xe9\x20\x1f\x6e\xb5\xcf\xda\xf4\x19\x57\xc4\x9e\x4f\xa3\x0b\x4a\xfc\x67\xfe\x63\xb2\x26\x92\x1c\x65\x54\xc2\x4b\x3c\x0e\x29\x68\x6b\x3a\x39\xaa\x32\xca\x05\xf4\x84\xb0\xd7\x77\x8f\xa7\x93\x77\x7a\x89\x45\x5d\x17\x3b\x4e\x6a\xe6\xbd\xf8\x7d\x15\x37\x8d\x6c\xcc\x59\x55\xc6\xc4\xcd\x03\xe2\x2d\x53\x45\x0c\xb6\xd2\xaf\x5e\xd2\xdc\x60\x60\xe0\x0d\x07\xe2\xe3\x3b\x47\x29\x25\x60\x91\xb2\x4a\xac\x19\x1b\x2f\xd9\xab\x35\x33\x04\x61\x9c\x02\x89\xdc\xb2\xb9\x5a\xd4\xc7\xac\x40\x4c\x62\xc5\x56\x34\xd9\x6b\xfb\xa6\x1f\x59\x0d\xb3\x84\x18\x0e\x67\x6e\x9b\xd4\xed\xf7\x50\x33\xc4\x62\xe2\x2a\x05\xb7\x58\x21\xa5\xd8\x8b\xa7\x3b\xfb\x87\x97\x34\x37\xe0\x4b\x5c\x8c\x52\x4f\x29\x73\x41\x1f\x49\x55\x62\xf1\xc1\x99\x99\x38\x61\x90\xb4\x2e\x8e\x4d\x1a\x32\x5d\x3b\x9b\x15\x1a\x7d\x4f\x78\xf9\x1e\x99\x38\x29\x1d\x1e\x71\x97\x6d\x05\x2e\x62\xd4\x72\x51\x03\x69\x6a\x9a\xe1\xb7\x8e\xa8\x9d\x6f\xc4\x14\xa4\x91\xf1\x91\x5b\x95\xa5\x45\x36\xc1\x32\x9d\x21\xf4\xbe\x78\xe3\x5a\x24\xc4\xc6\x75\x8b\x35\xbd\xca\x78\x3e\x56\x7b\x2f\xbd\x95\xa6\xb7\x09\xdd\x26\xfe\x67\x33\x0f\xc9\x12\x9c\x16\xbc\xa8\xaa\xb7\x5a\x55\x19\xb1\xde\x10\x01\x56\xd9\xa8\x91\xaa\x53\xa7\xbc\x06\x27\xf4\xf4\x29\xad\xed\xd3\x79\x8b\x50\xe9\x37\x95\x50\x00\x22\x5b\xd7\xad\x83\x3d\x56\x23\xcc\x0f\x00\xcc\xf6\xa7\xe1\x3d\xe8\x9c\xf0\xb6\x2e\x8f\x6b\xd7\x85\x4d\x28\x49\xea\x5a\x0e\x48\x27\x84\x53\xf6\xa6\x97\x90\x45\x8a\x45\xcc\xf8\x21\x0e\xa1\x61\xf7\x62\xcd\x2a\x82\x11\xfe\x9a\x3b\xc2\x5f\xbf\xd6\xa2\x96\x6e\x38\xca\x39\x44\xf9\x36\x68\xb3\x4e\x3b\x62\x98\xbb\xfd\x70\xbf\x8a\x07\x17\xf6\x57\x9a\xc3\x5c\xcc\x44\x41\xab\x17\x02\x13\x04\xdf\xab\x39\x59\xb6\x55\xa8\xab\x33\xc9\xbb\x73\x1b\xb5\x84\xbf\x42\x0b\xc4\x89\xb5\x74\x9e\xe8\x14\x45\xa2\x2a\x8d\xe4\x2a\x7e\x27\x0c\xb5\x2a\x61\xe1\x86\x33\xe9\xf5\xe7\xdb\x98\x30\x31\xdc\xb3\xef\xd4\xa7\x74\xbe\x0f\x60\xe7\xf0\xf4\x36\x4d\x60\xa2\x8a\x4c\x9c\x2f\xa0\x84\x55\x62\xbc\x3d\x46\xde\x1a\x9f\x45\xe4\x3b\xc2\x1f\xbc\xd6\x34\xd8\xa7\x0e\xe6\x46\x58\xa0\xca\xbd\x75\xcc\x70\x25\x99\xf5\x68\x8a\x2c\xf8\xcd\xa5\xaa\x3f\x28\xd7\x0e\x0f\x27\x4f\x18\xa5\x6f\x1f\xe2\xfa\xa4\x58\x4c\xd4\x70\xae\x9b\xa3\xa1\xf8\x38\x1e\xd6\x15\xc8\x2d\xe3\xb4\x23\x75\xc0\x5d\x14\x05\xc2\xd6\xa4\x26\x22\x3d\x10\xf8\x2e\x39\x9b\xfc\x3e\xe6\x25\x48\xe6\x53\x6e\x53\xb7\xbb\x1a\x8f\xcf\xac\x85\x09\x86\x27\x88\x2e\xd7\x39\x96\xfc\xb5\xc3\xb9\x1c\xb9\x5d\xed\x17\x68\x85\xc3\x26\xe4\x29\xf6\x31\xe7\x8d\x93\x60\x7d\xa4\x96\x8a\xc7\xde\x83\xa3\x68\x63\x80\x5c\x9f\x08\x52\xfd\x0f\x5b\x95\xf9\x16\xe3\x1d\x82\xec\xb2\xa3\xe7\xc5\xcd\x07\xfe\x99\x42\x0d\x37\x37\xfb\x22\x2d\xfb\xeb\x41\xaa\xd4\x78\x7e\x81\x96\x06\xfb\x20\x4d\x05\x61\xfc\xe9\x57\xf5\xe3\xcc\x21\xb8\x16\x47\x61\xe3\x4b\xb7\xc2\x96\x77\xa3\x93\xa4\x44\x7d\x12\xeb\x41\xbf\xff\x90\x22\x65\xca\x35\x3b\x60\x66\xfc\x2f\xd5\xa6\x46\x14\x2e\x20\x47\x4c\xe2\x72\x9f\xb6\xd2\xcb\xa7\x93\xb5\xa6\xcc\x48\xb3\x87\x9e\x48\x1e\xaf\xc7\x9b\x19\x99\xfd\xeb\x20\x4d\xf0\x1c\x5a\xe7\xcc\x94\x57\x21\xd8\x04\x9e\x0d\x14\xef\xf6\xfb\x34\xc4\xbf\xc7\x10\x76\x88\xa0\x36\x19\x83\xd7\xc9\x04\xa8\x10\x94\x04\x8f\x3c\xb7\x7e\x91\x2e\x7c\xeb\xd9\x3e\xd2\xcc\xb0\xb3\x77\x2c\xe1\xc7\x72\xfe\x2a\xde\x09\xe0\x12\xcf\x4d\xc2\x0b\x43\xee\x03\x02\xeb\xd5\xad\x2b\x94\x68\x69\xdc\x3d\x41\x35\xaf\x02\x5f\x67\x3e\x12\x3c\x20\x91\x47\x7e\x53\x63\x21\x73\xf3\x88\xa1\xcd\xf9\x34\x47\x26\x0c\x56\x06\xf5\xa0\xe0\x18\x77\x89\xbe\xf6\x8a\x36\xdd\x57\x8a\x80\xc6\x2c\x7d\x3c\xcc\x6a\xc4\xc4\xc2\x16\x27\x7c\xe3\x1d\x4d\xff\xba\x44\xa1\x7b\xf2\xed\x67\x14\x36\xa8\xdb\x49\x1b\x62\x18\xf5\x9d\xd7\xe5\xac\x27\x5f\x08\x88\x93\xd4\xdc\x79\x85\xbb\xc8\xc9\xe0\x72\x9c\x34\xf2\xb0\x9c\xa4\x96\x29\x27\x05\xbe\x3c\x58\xc1\xcd\x92\x22\xce\x7b\x7e\x03\xac\xf3\xbf\xf4\xc6\x79\x5a\x66\xc1\xf3\xc8\x1f\xef\xd3\x6e\xa4\x21\x06\x4d\xe0\x58\xe8\x6f\x86\xa9\xfd\x62\xec\x32\xa5\xed\x9c\x59\xfd\x9e\xe6\x35\x6e\xd5\x30\xf3\x41\xe7\x07\xf2\xa6\x21\x9a\x87\x33\xaf\xdd\xe1\x21\x58\xed\x5a\x98\x46\xc4\x15\x2e\x33\x1d\xe1\x9f\x1e\xd4\x6c\x4d\xa2\xba\x68\xa3\xa8\x6e\xd3\x7b\xf0\xb7\x07\x86\x6b\xc9\x8c\x4d\x4c\x07\xb0\x8d\xdf\xd9\x76\xae\x04\x54\xf3\x58\xdf\x7d\xaf\x7e\xec\x39\x35\x85\x18\xf8\xc0\x4e\xf9\x7c\x90\xef\x23\x31\xad\xbe\x76\x93\xd6\x3a\x63\x25\xe4\x72\xbd\x20\x58\x08\xb3\x9e\x54\xe8\x59\x9b\x78\xf4\xe5\x38\x95\xb7\x46\x48\xf0\x11\xd7\x24\xe7\x82\x0a\x5f\x7a\x45\xab\xba\xaa\x98\xa7\x5d\xe1\xc9\xf7\xb4\x58\x69\xda\xb8\x02\x77\xf2\xe3\xf1\x7a\x20\xf4\x7c\x12\x1d\x7f\x02\xb9\x37\x3f\x27\xab\x8b\x06\x29\x71\x4c\x74\xbc\x5b\xca\x85\x0b\xb5\xdc\x16\x7b\x7c\x8a\xa9\xa4\x03\xad\xdb\x64\xea\xca\x4d\x77\x38\x61\xda\x53\x12\xda\x4e\x54\x41\xc4\xe4\xd0\xd4\xef\x2f\x12\xd0\x1e\x6e\x91\xc2\x1b\x52\x17\x3d\x28\x47\x08\x55\x02\xc1\x7b\xe8\xf8\x74\xf1\x45\x6a\xbc\xdf\xad\x76\x94\xc3\x9f\x16\x15\xf5\x65\xd7\xe5\x54\xd0\xff\x39\x3b\x56\xfe\xac\x82\x19\x31\x91\x8b\x9a\xfb\x99\x6e\x3f\x69\x1b\x33\x6d\x66\x74\x11\xf6\xf1\x16\x65\xf6\xed\x96\xf3\xc4\xf3\x02\xd8\xc6\x57\x8e\x4e\x5f\x4b\xe0\x30\x62\xda\x7c\xc6\x20\x4f\xfb\x95\x8f\x37\x89\x43\x54\xb1\x4f\x7c\x98\x59\xf2\xce\xc4\xec\x47\xa4\xc1\x1d\xa3\xca\xdf\x7e\xee\xa5\xf3\x94\xb4\xc7\x4d\x3a\xdf\x73\x17\x0e\x4c\xca\x54\x9f\xd1\xe8\xd0\x09\x7f\xbd\x5c\xd1\xc5\xe5\xe4\x59\x55\x62\xee\xe9\x7b\xd2\x61\x63\xfa\x0c\xc1\x67\x78\x7e\xaf\xd4\xd1\xb1\x48\x8d\x78\xcd\x3e\x12\xdd\xc6\x4d\x8e\x8c\x14\x0e\x52\x4d\x7c\x8c\x23\x13\x07\xa5\x4b\x59\xde\x61\xfc\xcd\xd9\x81\x8a\x58\x82\xc7\x08\x47\xdc\xee\x54\x7d\x50\x2b\x42\xcb\x35\xf3\x09\x47\x51\x0a\xc4\x2e\xe2\x31\x96\x07\xa8\x9f\x1c\x18\xd7\xd3\x86\x6d\x6a\x39\x18\xaf\xbd\xa0\xf1\xef\x12\x8f\x0a\x71\xa6\x9c\x7e\x54\xcf\x82\xb8\xba\x64\xd2\x96\xcb\x7c\xf7\x50\x52\xe4\x63\xde\x8c\x7a\x59\xa9\xb7\xa7\x5c\x36\x79\xea\x8c\xb6\xe8\x4d\x75\xed\x82\xe3\xf5\xba\x65\x57\x75\x2c\x5b\x38\x7f\xe9\x15\x71\x4d\xf1\xb3\x59\xaa\xbd\x1d\xef\xda\x8a\x52\xd5\xf8\xcd\xb2\xf1\xda\xc1\xe5\x07\x82\xdf\xa6\x1f\xfd\xff\x74\x52\x93\x1d\x72\xa2\x74\x4d\x8e\x5b\xb2\x57\xcc\x95\x45\x72\x11\xd5\x28\x13\xc7\x7b\xe6\xf9\xf5\xba\x89\x20\x0d\xb8\x95\x66\xf4\x8f\x9f\xd9\x23\x7b\xce\xa4\x89\x0b\x94\xf1\x97\xeb\xc2\x69\xb3\x84\x34\x6c\xf8\x4d\xd0\xba\xc9\x5f\x49\x9d\x62\xd3\x5e\xd9\xfa\x6e\xfa\x3b\xa7\x4e\x99\xdc\x36\x7d\xba\xe0\x7e\x74\xcd\x06\x64\x9f\xcd\x95\x3e\x17\x2e\x52\x16\x10\x97\x87\x33\x69\xc0\x38\x4d\xfe\x22\x5b\x76\x93\x36\x11\x44\xab\x29\x39\x11\xe3\x1f\x46\x2a\xf0\x3e\xd7\x72\xb0\xe7\x41\x89\x7e\x6b\x08\x73\x8b\xe5\xd8\xc7\xcc\x2b\x04\x4c\x88\x80\x87\x07\x35\x3a\x58\x05\x39\x4d\x22\xb0\x59\x23\x1c\xa7\x97\xb3\xc8\xb1\x7a\x10\xe7\xfd\xa6\x3e\x06\xa0\xac\x14\xeb\xa2\xe6\x26\xbc\xa5\x05\xdd\xba\xb0\x93\xc8\x7c\xe1\x19\x88\x66\x97\x63\xd7\x87\x7e\x4c\xf6\xbc\x45\x70\xc1\x0b\xb0\xeb\x62\xdf\x57\x8e\xbc\x73\x1e\x4a\x7f\xcc\x14\x51\xe1\x85\x2b\x1f\x56\x78\x73\xd4\xf3\xf3\x18\x74\x3e\xa0\xd7\xf5\xb7\x07\xc0\xa1\x62\x31\x0d\x9a\x06\x1e\xe1\xbf\xb0\x73\xa5\x11\x53\xf4\x59\xff\x32\x5c\x0e\x91\x6c\xea\x63\xa7\x99\x5a\x3f\xf7\x49\xf9\x75\xe3\x9b\x16\xe7\xcd\x7b\x94\x0e\xa4\x83\x11\x0f\x1f\x5f\x96\x2d\x52\xec\x72\x17\xc9\xa7\x92\x22\x1f\x0c\x43\xd3\x75\x54\xe7\x3d\xb2\xe7\x3c\x83\x87\x8a\x7d\x50\x2c\xe4\xaf\xe1\x15\x55\xd3\x8c\xfb\xb6\xa2\x8c\x0e\x9d\x98\x79\xb8\x11\x4b\x08\xad\x71\x14\x60\x54\x95\xf2\x8e\xed\x75\x60\x90\x9c\x5f\x48\x2b\xd8\xc5\xa6\x8a\xfa\x9c\xbe\x4f\xaf\xba\x88\x5b\x16\x6a\x05\xf9\x77\x14\x71\x67\xe4\x76\xf2\x6a\xf4\xef\x2b\x34\x94\x01\x72\x4b\x94\xba\xc9\x90\x36\x73\xf6\x56\xe1\x4e\x60\x13\xb0\x39\xbd\x6d\x96\x26\xbc\x61\x13\x07\x59\xd8\xa9\xda\x89\x5a\x27\xbf\x72\xb6\x49\x81\xc2\x44\x81\x90\x94\xb8\xc8\xd1\xa0\x47\x15\xcc\x24\x0d\x38\x08\xe0\xc7\x4f\x2b\x00\x6f\xe4\x9a\x7e\x00\xc8\x67\xe3\xd7\xfd\xe5\xe1\x58\x74\x38\xff\x20\xd3\x7e\x30\xe9\x81\x59\xaa\x65\x62\xae\x73\x9e\x32\x39\x62\xa8\x54\x41\x3e\x08\xbb\x66\x2f\xef\x93\xe6\x15\x54\xb0\x25\x2e\x56\x7f\xff\xf7\x6b\x6a\x6a\xc8\x4c\x1c\x42\x05\x45\x04\x09\x21\xcf\xab\x5c\x4b\xb5\x0a\xec\x36\xda\x96\x2a\x9d\x5f\x54\x09\x30\xdf\x10\xff\x3a\xb1\x9f\x28\x8f\x03\x8e\x8c\xcc\x2e\x99\x21\x07\x8e\xa8\xc8\x8f\xe8\xa6\xf5\x70\xd1\x07\x83\x24\xab\xb0\x2e\xa0\xd7\xdd\x23\x44\xee\x40\x3b\x69\x00\x32\x48\xf9\x21\xc2\x97\x94\xeb\x80\x64\x06\x39\x9a\xdb\x2e\x62\x05\xca\xf8\x7e\xe7\xaf\xe4\xd2\xfd\x70\xe9\xf3\xaf\x59\xb9\xea\x8a\x15\x0b\xe7\x5f\x13\xbf\xe4\x31\x13\xd2\x94\x13\xf0\xe5\x27\xa6\xd7\xa3\x30\xd2\x2f\x1e\x1e\x24\xd2\xe9\x28\x97\x13\x2d\x0a\xe3\xa2\x57\x34\x5a\x0d\x57\x8f\x17\x20\xd1\x0d\x4f\x6a\x75\x0d\x6a\x14\x11\x61\x82\xa0\x1c\xc7\xab\x1f\x09\x81\xe1\x2b\x19\xc6\x1c\x8a\x12\xdd\xf6\x35\xfb\x15\x4d\x03\xc2\x55\xf0\x6c\xa8\xea\xfe\xfb\x7e\x4d\x1f\xc8\xf1\x6d\x71\x20\x44\x8b\xea\xed\x9d\xe9\xef\xe4\x2a\x5c\xba\x51\x8c\x31\x56\x45\xb9\x00\xf9\x0b\xba\x40\x8d\x7e\xe9\x95\x50\x46\x15\xa4\xcd\xf4\xb7\x8c\x1d\xac\x48\x4d\x6c\x22\x00\xbc\xcc\xfe\x60\xad\x5c\x08\x53\xa7\x4c\x9e\x32\xad\x2d\xdf\x11\x4e\x3b\xac\xe9\x79\x53\xe6\xdb\x71\xf2\xfc\xeb\x33\x4a\x2e\xe7\x71\x85\x9b\xf0\xc9\x7b\x35\x29\x08\xc4\x62\x97\xac\xf3\x56\x0d\x50\x7a\x6e\x5c\x88\xe3\x92\xdd\xf2\xec\xa9\xab\x26\x12\x7f\x3f\x29\x7b\x43\x55\xc0\xd9\xad\x90\xf2\xe6\x38\x88\x8a\x98\xbb\xda\x25\x7b\xb2\x11\x3f\xf7\x1d\xfb\x2f\x4a\xa1\x06\x51\x95\x36\xd3\x3a\x33\x37\x0f\xd4\x1a\x53\x98\xbb\x18\x31\x21\xeb\x7c\xdd\x03\xaa\x9e\x94\x6f\x83\x76\x4f\x71\x69\x3a\xe8\x14\xb0\x85\x6b\xc4\x49\x44\x44\xb3\x9f\x78\x26\x7d\x70\x39\xb8\x48\x99\x4f\x6b\xc2\x5b\x31\x69\x4c\x0e\x6a\x13\xde\x5f\x36\x22\xdc\x32\x18\x3c\x65\xb3\x73\x66\x69\x63\xb4\xc0\xe2\x2c\x0f\x90\xe6\x2d\x9c\x96\x09\xa7\x67\xb3\xc0\x2d\x63\xfe\x58\x9d\xb6\x21\x0a\xed\xb7\x82\x04\xff\x27\xbc\xc2\x51\xf1\x9f\x51\xea\x06\x4f\xe8\x68\x6f\xcd\xd7\x03\xb9\x56\x5e\x00\x4e\xde\x1e\xae\x15\xbf\x8d\x2a\x0b\x40\x33\x2b\xbb\x66\x6d\xfa\x24\x9c\xd9\x3a\x4d\xe4\x30\x2f\xf5\x89\x35\xf2\x38\xe7\x36\xdf\x11\xfe\x66\x9c\x40\x51\x31\x5a\xc2\x2e\xcf\x09\xfe\xeb\x60\x32\x45\x2e\xf2\x8a\x56\xe1\xe3\x6b\xea\xb0\x2e\x08\x2c\x8d\xcb\x77\x84\x3f\x3f\x0b\xed\xbb\x85\xa4\x46\x99\x09\xa9\xfd\x9f\xc5\x7e\x03\x37\x2a\x1b\x71\x8a\xe3\xce\x5b\xe5\x11\x8a\xab\x55\xc4\x9a\x03\xc0\x9c\xae\x81\xca\x68\x0a\x68\xc8\x1f\xed\x4c\x6f\xc6\x3a\x61\x38\xca\x63\xe2\x91\xf0\xd2\x69\x69\xd8\x9c\xcf\x08\x1f\x45\xf7\xe4\x83\xbe\xe1\xd8\x25\x5a\x4a\xec\xf2\x54\xb7\x07\x6f\x4e\xe3\xed\x69\xca\x03\xe2\xc0\xcf\xdc\xcc\x67\x64\xc4\x28\x32\xea\xfa\x04\xc3\xec\x20\x53\xb9\x13\xe2\xe5\xe5\xb0\x0e\x73\x7b\x21\x36\xaf\xc2\xa6\xcd\xab\xce\xff\x7a\x42\x33\x79\xe1\x42\xf7\xa2\x54\x9d\xf0\xb4\x26\xb4\x19\x58\x0d\xad\x31\xf3\x7a\x7f\xc9\xdc\x2e\xab\xf2\x29\xdd\xd9\xa1\x9b\x15\x00\xaf\x40\x6f\xe5\xfb\xa8\xbb\xc3\x41\xf5\xa8\x82\xc8\x38\x47\x64\x49\x6c\xda\xdc\x52\x81\x5f\xfc\xc0\xc7\xa4\x52\xdf\x54\x0e\x52\x38\x74\x56\x95\x22\x30\x7d\xe4\x96\xa0\x59\xd1\x32\x10\xf6\xc5\xb5\x01\x56\x85\xdf\x32\xf9\x5d\xb0\x08\x56\x70\xd5\x6f\x80\xc6\x2d\x79\x55\xf6\x25\xad\xa6\x3e\x92\xf1\xdf\x4f\x09\xe7\x29\x86\x11\xe0\xf8\xba\xb3\x8b\x16\x69\x8f\x49\x4c\x9b\x66\xe7\x3b\xc2\x23\xab\x7a\x90\xf5\x01\xa9\x89\xb8\x0c\xd9\x38\x06\x0a\x3b\x5c\x43\x66\x10\xd3\x3a\x9e\x2e\x4a\x40\x1a\x57\x69\x69\x5a\x15\xdb\x76\xa4\x5b\xb2\x16\xad\xbb\x0e\xe5\x78\x64\x31\xd6\xf8\xec\x9e\x26\x6e\xa1\x8f\x4b\xa2\x05\xfc\xf9\x7b\xa5\x39\x19\x46\x9e\xdf\x5c\x01\xe6\x88\x01\x53\xc2\xa9\x5c\x5e\x3a\xfa\x44\xb3\x3d\x6e\x86\x62\x8f\x03\x7e\x78\x54\x3b\x67\xee\x00\x51\x9c\x70\x7c\x15\xff\xd9\xb0\xb3\xb2\x32\x35\x6d\x52\xad\x62\x95\x8f\xfd\xb3\xc5\xc9\x9e\xed\x0c\xd2\x1a\x1a\xd7\x3f\xac\xed\x59\x4e\x0a\xe1\xad\x8b\xbe\x42\xa4\x06\x5a\x0e\xd0\xcc\x0c\x87\x9d\x86\x8b\xbc\xba\x63\xf9\xf2\x2b\x96\x46\x77\x36\x64\x77\x7a\xeb\x55\x88\xc9\x68\x01\x27\x46\x2a\xe7\xf7\xd1\xca\x26\xc6\xa2\xba\x1c\x40\x20\xc7\x7a\x8f\x50\xc5\x12\xf5\x7c\x68\x55\xeb\x10\x71\x24\x23\x1b\x55\x94\x4c\xf3\xb6\x93\x42\x08\x8a\x72\x12\x61\x5b\x1f\xd9\x45\xb1\x28\x65\x79\x9f\xc2\x7f\x47\x87\x40\x97\x82\x31\xc5\x1c\xaf\x29\xdc\x18\xff\xf7\x71\x05\x72\x4f\x19\xad\x71\xca\x45\x47\xf8\xf9\x39\xfa\x10\xc5\xab\x10\xcf\x43\x4e\xdc\x3e\xbd\x69\xbd\x42\x3c\x40\x7e\xbe\x23\xfc\xe3\xa2\xe4\x3e\x7c\x5a\xd2\x0b\x85\x6f\xbc\xa9\xe9\x78\x09\x35\x08\x48\xe9\x3e\xf9\xca\x78\x2d\x75\x89\x0a\x74\x51\x4c\xa5\x9f\xc7\x61\x43\x41\x15\x21\xd7\x02\xb9\x0a\xe3\x9c\xa7\x34\xbc\x01\x72\x01\x45\x15\xfe\x47\x98\xd4\x02\x33\xa1\x16\xe8\x27\x75\xab\x8b\x48\xb1\xf5\xb9\xea\x98\x8e\xab\x71\x2b\x88\x29\x22\x2e\xdd\x46\xe7\x52\x4d\x33\x27\x70\x08\xd2\x49\xf8\x2b\x5e\x18\xa6\xe7\x3d\x35\x2c\x9a\x5d\x0f\xf7\x1b\xae\x47\xe1\x6a\x6b\x2c\x1c\xbd\x6e\xe4\x05\x5a\x15\xe8\x38\x5c\x1f\x4b\xa0\xc3\xa7\x1e\x4b\x3f\x26\xee\x74\x84\x7b\x48\xa3\xc3\x8d\xc3\x61\x83\xf8\x36\x61\x30\x41\xe8\x36\x6a\x7d\x55\x47\x12\x27\xf6\xdc\xeb\xce\x0e\xdf\x25\xa3\x20\x4f\x29\xf9\xaf\x8f\x9a\x95\x3c\xb7\xe9\xd3\xf3\xf9\x8e\xf0\xc6\x57\xd3\xf7\x5e\x64\x04\x5b\x15\xe4\x4e\x52\xa6\x4e\xc6\x99\x03\x72\x5d\x5c\xd6\xca\x09\xdc\xa3\x97\x69\xd0\x4f\x07\x45\x29\x1e\xbc\xf9\x5f\x4d\xd6\x14\xba\x51\xcc\x74\xcb\xb6\xb4\xc7\x22\xb7\x8c\x80\x8e\x57\x78\xe9\x36\xa5\xfb\x64\xf2\x46\x10\x97\x3f\xf7\xf9\xb9\xfc\x48\x3f\xe8\xb8\x37\x68\xa0\x6e\x7d\x7c\xa7\x24\x56\xf9\x01\x2b\x13\xcf\xe6\xd9\x00\xf7\xc4\xea\xce\xae\x51\x5c\x47\x9c\x20\xda\x1c\x40\xbe\x1e\x35\xb8\x25\x2d\xd1\x37\x09\x86\x2c\x1d\x61\xeb\xd1\xf3\x9a\x0a\xab\x7c\x47\x48\xfa\x48\x5d\x38\xde\x9a\xee\x5f\x48\xd6\x19\xf5\xca\xca\x29\xf5\x4f\x27\x35\x45\x02\xea\x06\x2e\x78\xf0\xf2\x47\xbf\x6a\xb7\xe4\x61\x24\xb2\x3f\xa9\x34\xe3\xd8\x30\xed\xac\x77\x7d\x08\x59\xdd\xc6\x46\x71\xa6\x72\xc0\x54\x74\x59\x6b\x45\xfd\x8e\x0a\x05\xe4\x92\x06\x4a\x7d\xd2\xbf\x2f\x4c\xae\x71\x23\x51\x0c\xbb\x73\xc3\x8e\xa5\x59\x5a\x0e\x16\xb6\x2b\x4f\x6e\x90\x38\x5a\xd1\x39\x4a\x89\x7f\xf7\x7e\x6c\xa8\x02\xa4\xab\x53\x56\x8e\x87\x43\xbf\xd8\x01\x57\x72\xb9\x4d\xdc\x26\xb8\x7a\x76\xd1\x4b\xfa\xb9\xe5\x50\x97\x74\x21\x69\x8e\x91\xdd\xbe\x21\xa1\xcc\xcd\xe4\xae\x40\x6f\x3f\xa4\xc9\x9e\x89\x96\xeb\xa4\xd9\x22\x43\xfc\x70\x9e\xd6\x96\xf6\x51\x2c\x82\x9f\x19\xf6\xc4\x58\x95\x2a\x22\x86\xc4\x4d\xbd\x84\x1b\xe6\x68\x53\x73\xca\x9d\x00\xc2\xab\x57\x6b\x02\x2f\x01\x71\x84\x04\x18\x6f\x4b\xef\x5c\xaf\x22\xb2\x19\x81\x36\xdd\xc2\x56\xf9\x74\x0a\x9c\x54\xc7\x89\x6c\x1d\xdd\xd9\xf1\x33\xe4\x03\xaf\x13\x2f\x3a\xb6\x21\xd4\xf6\xd5\x7c\x3b\x0a\x8c\xb8\x65\x11\x86\xdf\xd0\x8c\xc4\x5c\x8c\xad\x49\x35\xae\xd5\xfc\xde\x2b\xba\xfb\x86\x2b\xe5\xf4\x1e\xec\xbc\x48\xcb\xef\xeb\xc4\xf5\xca\x8d\x94\x12\x4b\x6e\x54\x3f\x79\xb1\x0d\xa4\xb4\x8c\xb3\xbf\x9e\x36\xac\x79\x4f\x8b\x6b\xfa\x62\x71\x60\xaa\x6e\xe1\x29\xc7\x77\x34\x14\x0a\xf6\x7c\x86\x2c\x24\xdc\xd1\xe2\x2f\x9c\xb9\x36\x7d\x4a\xd4\x10\x20\x3b\x60\x96\xf3\xbc\xf6\xaf\x09\x20\x14\x80\xc7\xc7\xe6\x36\x25\xad\x1e\x36\x7b\x16\xda\xe8\x27\xe8\x0b\x0c\x9b\x98\x08\xa4\xe7\x5d\xaf\x03\x3b\x8e\x45\x25\x6c\x3e\xca\xc5\xfd\xa0\xc2\x97\x6e\xb8\xeb\xb0\xc6\xe6\x27\x2c\xce\xa5\xd0\xe3\xca\xd8\x25\xb0\x08\x06\x0b\xbc\xcc\xd5\x43\xd2\x7f\x52\xa2\x31\x2f\x2d\x77\xe3\x58\x5d\x39\x95\xf6\x38\x1e\xfa\xfc\x4e\xdd\x4e\xb3\x52\x89\x6a\x50\xde\xcf\x0f\x7f\x6b\x24\x3b\x37\xe0\x94\xc1\x38\x31\x78\x3a\x25\x9e\xc4\xc1\xb8\xe1\x99\x35\x0a\x14\xcc\xc6\xa0\xba\x86\xaa\x9c\xb5\xf1\xe9\x47\x47\xe9\x67\xbd\x19\x40\x5b\x5b\xe8\xe5\x3c\xb0\x41\x08\xa4\x9a\x8c\x54\x2a\xd0\x50\x37\x36\x9e\x50\x5d\x99\xfc\x80\x81\x75\x57\xed\x64\x72\x6c\x4c\x99\xc2\x93\xe4\xeb\x06\x8f\xd0\xd6\x68\x6c\x77\xce\xa7\xd5\x13\xfa\xc7\x31\x06\x2c\xa7\xbb\xb3\x7f\x3e\x3b\xb2\xb9\xac\x53\x11\x08\xfb\x76\x40\x76\x7d\x03\xb2\x52\xa1\x67\xb4\xa6\xc4\x76\xc9\x26\xe4\x22\x17\x5d\xa2\x11\x88\x7e\xb4\x17\x6e\x67\x7e\xe0\xd3\x0a\xf2\xb9\xab\x40\xf6\x4c\x28\x3b\x80\xdc\xe7\xa7\xce\x80\x05\x69\x1c\x7b\x55\xb5\xc1\xb3\x41\x9b\x23\xfb\xa3\x9a\x62\x85\x8e\x2b\xb4\xc4\x50\xd5\x86\x8f\xea\xdc\x9f\x84\x29\x9b\xf7\xf8\xfa\x3f\x21\x7a\xb2\x0e\xf2\x7d\x35\x2d\xcd\x6c\x7d\x41\x4a\xe0\x73\x8d\xcc\xec\x0b\x1f\x8e\xd7\x9e\x56\xf4\xaf\xe5\x49\x66\x53\x2a\x94\xab\x9e\x10\xfd\x28\xde\xeb\xe6\xc3\x60\x74\x40\x01\xdb\x72\xcc\xcd\x9e\xd7\x92\x9f\x94\xf9\xc8\xe1\x63\xe3\xa4\xad\xbd\xad\x27\xf9\x61\xe7\x0c\x2d\x3f\xa1\x85\xe8\xa0\xe5\xfb\x6f\x4f\x57\x13\x5b\xdc\x8e\x8f\xac\x63\x23\x87\x2a\xab\x81\xd7\x2a\xa2\xbc\xb1\xb6\x0e\x52\x92\x4f\x6c\x41\x06\x3f\x71\xe7\xb9\xa2\xaa\x21\x1e\xef\x40\x3e\xad\x29\x3f\x94\x5d\xae\x8d\x07\x90\x9d\x5b\xfa\xa7\x53\x0f\xc4\x50\x11\xf9\x5a\xb3\xfd\xc2\x83\xda\x61\x00\xf0\x3e\x45\xd7\xf9\xc0\x9b\x43\xd3\x8c\x8d\x49\xcb\x20\xf8\x66\x3e\xbf\x0a\x72\x8d\x3a\x62\x0e\xe5\x42\xed\xe1\xca\xaa\x6e\x17\x18\x14\x7c\x01\x8f\xf8\xe3\x12\xfe\x55\xf9\xe5\x98\x79\xb4\x27\xce\x66\xb6\xf0\x9c\x38\x85\x09\xf0\x7d\x8c\x3f\xf6\xd6\x6f\xc1\xb7\x13\x9d\xf1\x78\x65\x3e\xf0\x9e\x5a\x4f\x7a\xd4\x11\x3c\x77\xe3\x67\xda\xa4\x18\x05\xa5\xc0\x8b\xcd\x9b\x3e\xfa\x41\x8b\x96\xb7\x0a\x8a\x4a\x77\xf6\xb5\xaa\xc0\xef\x71\x92\x27\x20\x18\x0f\xca\x1c\xaa\x87\xf6\xfb\xe3\x9a\x02\xbe\x4d\x7d\x58\xdb\xa0\x41\x67\xac\x77\x95\xda\x5e\x95\xd9\xce\xbe\xda\x77\x68\x2a\x63\xc0\xae\x45\xc0\x4d\xfb\xbe\xbd\xda\xbd\x5b\xc2\x4b\x03\x0e\x77\x90\x45\x09\x6e\x1d\x92\x56\xbb\x88\xf7\xc8\xcb\x7b\x61\xa9\x30\x44\x40\xec\xcc\xf8\x70\x97\x60\x61\xd9\x88\x0f\x02\x33\xe7\xbc\xd2\xaf\x1e\xf7\x2d\xcb\xf9\x8e\xf0\x5f\x0f\x2b\xc4\xc6\xc0\xe3\xb6\x4d\x5f\x18\x91\x7a\xb6\x51\x49\xc7\xb5\xc5\xba\xde\x87\x3a\x8a\xb8\x45\xbe\xd6\x46\x6b\xad\xab\x06\x0d\xdc\x52\x2c\x6e\x9b\xed\x5c\x2e\xc3\x7d\x8d\x98\x3e\xa9\xc0\x7a\x1e\xe5\xea\x8a\xe2\xac\xe4\x44\xc1\x9a\xab\xaf\x5e\xad\xbc\x57\xd3\x09\x7c\xd3\x16\x70\x93\xf2\x01\x79\xa1\x75\x9b\xf0\xc3\xa6\x7d\xef\x70\x6d\xe1\x51\x56\x17\xa0\xd7\x5f\xdd\x3a\x32\xdd\x78\xd4\xb6\xef\x5d\xc7\xb4\x9e\xa5\x1d\x9d\x8e\xd1\x72\xbe\x70\xd9\xe0\x74\x29\x0b\x7a\x51\x0f\x3f\x98\x84\x07\x0a\xbd\x85\x27\x9f\x54\xb0\x86\x3a\xd8\x77\x84\x42\x06\xb0\xc1\xfe\xe1\xf5\x05\x2a\x72\xd4\xaf\x63\x3e\xeb\x68\x19\xa8\x02\x5e\x85\x55\x93\x31\x7b\xac\xe2\x6c\x00\xec\xdc\xe8\xf5\xcd\x38\xa2\x43\x9d\x4d\x3b\x8a\xdc\x2a\xf6\xd2\x30\x40\x56\x28\x3f\xbf\xd0\xdc\x9a\x30\xde\xda\xaa\x21\x32\x30\x92\xa2\x43\xd9\x1b\x1f\xd1\xb3\x15\xcc\x84\xf3\x44\x36\x98\xac\xb8\x95\x5c\xd6\x36\x85\xb7\x85\xd6\x0b\x03\x0f\x16\xc4\xcd\xe8\x7d\x2f\x0c\x57\xb0\x56\x2b\x97\xa7\x70\x2c\xe7\x0c\x11\x43\x42\x86\xca\xc8\x53\xce\x62\x63\xc1\x48\x39\xb8\x72\xa2\xc2\xfa\xdb\x7d\x35\x30\xbd\x98\x19\x76\x84\x59\xcd\x9e\xb4\x80\xbc\x32\xf6\xf9\x5b\xff\xd9\x66\x4d\x29\x1b\x77\xa2\x12\xa8\xa6\xca\xa3\xa4\xff\x31\xb8\xe8\x7a\x42\xef\x5d\xa8\x11\x8d\xa3\xd3\x5b\xc0\x62\xbe\xa8\x01\x00\x7d\x9b\x7a\x42\xfe\xee\xc8\x72\xf9\xe6\x7c\x9b\x01\x07\x20\x7c\x4a\x99\xca\x05\x3e\xff\xc5\x15\x2b\xf4\xdc\x9a\xb2\x86\x08\xd8\x9f\x79\xab\x49\x46\x18\x63\x37\x7e\x21\xb9\xf5\xb3\x93\xbd\xee\x22\xe5\x68\xce\x1e\xde\x2e\x17\x53\x11\x0b\xac\x78\x77\x66\x40\xcb\x10\xa9\x99\xa7\xf6\xd3\xf6\xdd\xaf\x61\x00\x13\x35\x53\x3e\x6f\x99\x29\x64\xbe\x2f\x5f\xbc\xe2\x86\x95\x4b\xaf\x58\xd1\x74\x84\x76\x8d\xd4\xe5\x63\x62\x33\x7a\xc4\x62\x7b\x33\xe3\xdc\x33\x1a\x24\x12\x81\x08\x82\xc4\xde\xbc\xbb\x65\x88\x48\x1c\x78\xa9\x94\x10\xdd\xb3\x5f\x3f\x34\x38\x0d\xca\xb1\xa3\xa7\x39\xe3\xa0\xde\x68\xf0\x7c\x16\x80\xfe\x65\xfc\x89\x8b\xd4\xf2\xcb\xad\x45\x45\x20\x50\xe7\x37\x29\xa2\x06\x56\x85\x30\x61\x5c\xb5\xe2\xac\x0e\x50\xf5\x30\x4a\x54\x4f\x72\x13\x37\x2b\x16\x8a\xa6\x4f\x6a\x09\xec\x99\xde\x9b\x74\xc6\x4c\x3b\x48\x69\x08\xbd\x62\xc1\x9c\x73\x09\x6a\x20\xd7\xb7\x15\x77\x20\x23\xfb\xaa\x3c\xd5\x59\x65\x2a\xe8\xe0\x67\xfe\xf0\x64\xb2\xdc\x03\x37\x5a\xee\x2d\xab\x15\x4b\x4f\x9b\xd6\x4d\x04\x54\xc4\x77\x9d\x94\xac\x90\xc9\xe7\xd7\xc0\x88\x6b\xb4\x40\xa0\x5a\x72\xdd\xc2\x1b\xd4\xce\x6e\x5f\x0d\xe7\x15\x54\xab\x0e\x98\x1f\xf2\x34\xc3\xef\x07\x49\xdd\x42\xec\x70\xd1\x10\xde\xae\xf9\xf4\x9d\xe9\xda\x6d\xac\xd0\x92\x7e\x63\x74\xff\xf8\xb8\x67\xa0\x19\xbd\x4e\xd3\x99\x47\xd5\x2a\x8e\x4a\x45\x41\x43\x6e\xdd\xa2\xe0\x1a\xb1\x8f\x88\xd0\x53\xba\x72\x56\xca\xaa\x25\x1e\xe7\xdd\x3c\x27\xe9\x85\x59\x97\x34\x97\xba\xf7\x7d\xd8\x5f\x49\x96\xa2\x9b\xde\x35\x02\x16\xea\x0a\xe4\xc1\xf6\xd2\xe2\xfa\xa7\x16\x6a\xfa\xc4\x81\xc5\x55\xf0\xa1\x6f\x74\x0b\x70\x99\xf3\xcb\x7b\x94\x08\x3e\xa9\xec\xb5\x92\xb2\xd7\x7e\xbe\xa2\x09\x3f\xab\x70\x6e\x33\x67\x35\xfc\x30\x2d\x16\x39\x40\x90\x67\x01\x9f\xde\xaa\x35\xa0\xc1\x87\x03\xc6\x2b\xd9\xb7\x54\x8e\x53\x03\xf8\x37\x47\x93\x95\xb1\x11\x34\x53\x2e\xda\xae\x42\x7a\x84\x31\x82\x71\x57\x2f\x0d\xf6\xcb\x33\x2c\xe4\x24\xb4\x3f\xe3\x73\x6d\x3a\xf8\x8e\x45\x71\x52\xb0\xcd\xde\x7f\x40\x39\xa1\x90\x6b\xf1\x26\xf2\xfe\x7b\x41\x33\x69\x25\x80\x1c\x9b\xaa\xc1\x5a\x11\xb6\x2f\x37\x2a\xc1\x0e\x50\x4b\xa3\x3b\xf9\xb7\x7b\x14\xb6\x48\xd1\xc7\xcc\xa5\xd1\x3f\x84\x1f\x93\x1a\x9e\xad\xb8\x19\x28\x74\xd7\xa3\x90\xb1\xcc\x68\x13\xf0\xe8\xaf\x1c\x6f\x91\xee\x90\x25\x55\x6a\xea\xa5\xb1\xf2\x59\x4d\x69\x03\xa1\xdb\x85\xdb\x34\xc0\x5c\x94\x4d\xc7\x6a\xc8\x1d\xe1\xb5\x67\x35\x8b\x36\x31\x5b\x9b\xdd\x04\x41\x5d\xff\xb0\x0e\x66\x2d\x20\x86\xca\x5a\x39\xf4\xd5\x16\xc9\xfb\x73\x8a\x71\xa7\x73\xdb\x09\xb9\x46\x51\x85\xd3\x51\x87\x4f\x80\x70\xb0\x22\xf0\xb0\xe5\x95\x15\x69\x9e\xdc\xe4\x36\xf9\xa0\x78\x5b\xc3\x46\x75\x2e\x91\x92\xbf\x57\x51\x01\x05\x25\xab\x7c\x47\xd8\x5a\x48\x67\x99\x53\xb9\xfa\x68\x1e\xd8\x7d\xd1\x23\x78\x4f\xeb\xb3\x62\xcf\x47\x7c\x34\xcc\x1f\x83\x58\xf6\xdb\x0f\xc5\x58\xbe\xc0\x22\x20\x4f\x7a\xd5\x44\xa8\x0c\x17\x30\x80\x85\xc4\xf7\xd8\xfb\x05\xe5\x31\x5f\x36\x93\x9f\xf2\x67\xee\xeb\xe9\x28\xe6\x09\xc3\xce\xbe\x4a\xfe\x88\x0b\x8c\x43\x07\xbf\xba\xfd\x02\x85\xcf\x6a\x71\xe7\x4f\x55\xd8\xfd\xd3\xcb\xf4\x53\x3a\x36\x5e\xe4\x1d\x0c\xb8\xb1\xb0\x5f\xfa\xce\x8b\x60\x43\xab\x18\xcf\x8f\xd1\x33\x19\xdf\xa6\x89\xb5\xe0\x15\x61\xfa\xcf\xa3\x28\x5b\x25\xd4\xc5\xa2\xfb\x97\xfd\xb5\xa6\x9f\xc1\x15\x5a\x40\x0d\x4d\x70\xfc\xb2\xe3\x27\xaa\x66\x25\x1e\xf1\x81\xbe\x1d\xfd\xd3\xc6\x36\x79\x8b\xc2\x4c\x9a\x8f\x8c\x39\x12\xb7\xa3\x3b\x5b\x3a\x29\x3c\x76\x6c\xe4\x10\x55\x1d\xe7\xa6\xd6\xf4\xb3\x34\x83\x6a\x2c\x82\x70\xa9\x36\xfc\x68\x20\x96\x90\xf7\x33\xaf\x4e\x4b\xc2\xc2\xac\x76\x0e\xba\x7f\x5b\x33\x60\x28\xd0\x8a\x10\x6a\xbd\xf8\xe0\x8c\xff\x17\x35\xa2\x65\x20\x10\x75\xe5\xca\xe5\xe1\xea\x83\x5a\x51\xab\x12\x36\xa7\xcd\xd1\x76\x9b\x1d\x30\xcf\x42\x8d\x56\x31\x48\x5e\xf8\xbe\x06\xab\xa8\x62\x6c\x8a\x5e\x57\xe6\x52\x2d\x57\x9f\x39\x79\x6a\x42\x9c\xc9\xae\x57\x38\x81\x15\x2e\xec\xd7\xd1\x6d\x64\x37\xc1\xa2\x6d\x8f\x83\x43\xb7\xf1\xd2\x32\xa8\x5e\x3a\x29\x20\x52\x8d\xea\x5e\x99\x93\x56\x80\x24\x3a\xb2\xd8\x24\x1b\x1e\xc4\xbb\x25\xd3\xa8\xc9\xdf\x77\x51\x17\x1f\x62\x1e\x90\xc8\x2c\x8f\x67\x9e\xd3\xee\x90\xad\x01\x68\xcc\x3c\xaa\x68\xe5\xd8\xd4\x29\x30\x4a\xc1\x86\x62\x6d\xaf\x1e\xec\xea\x60\x5a\xb5\x57\xf3\xbd\xf4\x30\x97\x93\x9b\x9c\xef\x58\xa6\x98\x2e\x44\x11\x9b\x9f\x8f\xfd\x3b\x65\x2f\xca\x45\x15\xae\x4a\x61\x7c\x76\x9e\xe4\x4a\x34\x5a\xf3\x1d\x61\x5b\x9b\x4c\x39\x4b\x0e\x82\x0e\x5a\xf6\x13\xbd\x74\x47\xea\x28\xb1\x15\x62\xd1\x40\x62\x7c\x51\x51\x72\x22\x9e\x87\x7d\xd0\x2e\xef\xff\x10\xbf\xb1\xe8\x8f\x96\x2d\x5b\x2e\x91\x18\xa7\x01\x03\xb6\x0a\x91\x7a\xb3\xde\x46\xf6\xe5\xa2\x7a\xc6\xbb\xb4\x2e\xce\xf8\xf6\xc1\x92\xba\x22\x6c\x03\x9c\x84\x1e\xfd\xa7\x3d\x12\xd8\x5a\xaf\xd7\x5b\x2d\x44\x9c\x46\x81\x11\x5c\x24\x6e\xa9\xd5\xa4\xdc\x9b\xac\xf0\x60\x7a\x89\xd5\xb8\xad\x53\xa2\x7a\x69\x5c\x3d\x5e\xe3\x81\xd7\xa0\x3a\x85\xe3\xf4\x23\x6b\x15\x57\x07\xa4\x04\xb5\xeb\xb7\x2a\x14\x06\xec\x14\x81\x29\x9c\x39\x21\xd0\x41\x66\x94\xff\x71\x46\x68\xf4\x1d\x03\xb6\xc8\x35\x52\xa0\xbc\x72\xbb\xba\x06\x29\x13\xaa\x56\x1d\x14\x58\x70\xb7\x5f\x7d\x47\x52\xdc\x88\x97\x48\x73\xbd\xaf\xb3\x6d\xfd\x49\x5c\xec\xd3\x78\xef\x94\x42\xa9\x47\xaa\x86\xfe\xa7\xec\x26\x82\x66\x09\x5b\x02\x42\x93\xf9\xf6\xfb\x90\xe6\xcd\x5f\xb5\x74\xfe\xb2\x55\xf3\x63\xe8\xe9\x0f\x3f\x4c\x07\xb8\x12\xa3\x5d\x30\x25\x84\x76\xa1\xbf\x53\x33\xd7\x26\xbe\x69\xc7\xf2\x48\xd9\xe3\x03\x35\xda\x42\xdc\xa5\x6d\xd5\xe2\x53\xd5\x09\x3c\x21\x47\xb7\x61\xc2\x28\xb5\xa4\xee\xc1\x77\xe3\xce\x91\xa2\xfd\x89\x39\x12\x1a\xc6\xe5\x7f\xa9\xc9\xcc\x7e\x63\x80\x31\x4c\xa6\x33\xdb\x9f\xbc\x40\x0b\xd0\xc8\x25\x15\x1a\x88\xf8\x9f\xf9\xda\xd2\x74\x7c\xae\xa3\x86\xcb\x97\x81\x7c\xad\x54\x33\x00\xf2\xa3\x40\xec\x8b\x90\x19\xbe\xf4\x2a\xb4\x2b\xaa\x0e\xe6\x62\x00\xef\x2c\x4f\xdf\x19\xe7\x21\xf0\x69\xbc\xf1\xbf\xab\x92\x1d\xcf\x70\x2d\xdf\x11\x0e\x39\xd6\x4f\xe6\x9d\xd1\x6f\x7c\x7d\x9a\xd2\xda\x24\x70\x0a\x84\x7f\x58\xd3\x87\xff\xe0\xd3\xf9\x8e\xf0\x1f\x1e\x95\xd4\x72\x10\xb5\x1b\xfd\x4a\x73\x82\x56\x05\xb4\xa8\x68\x47\x79\xf7\xc9\xe4\x17\xd7\x9a\xb6\xd9\xe0\x31\x4a\x89\x07\x96\xe0\xd1\xe7\x6e\xd3\x7d\xbd\xb0\x8f\x59\x85\xb8\xc2\x7c\xfe\xc3\x79\x72\x73\xd2\x20\xfa\x0d\xf8\x33\xba\xea\x3c\xa5\x39\xcb\x85\x8e\x78\x54\xdf\x75\x87\xe2\x32\x86\x5d\x54\xe2\x47\xf8\x9b\x47\x34\xc9\x88\x42\xb4\x90\xb9\x41\x5e\xf7\x03\xe7\xc7\x77\x5a\x6d\xd2\x53\xc9\x6d\xec\x0f\x07\xdf\x0d\xc8\xcf\x7b\xaa\x40\x6a\xf6\x44\x9f\x91\x4a\x74\xf0\x39\xe6\x58\xb8\xb8\x82\xd6\xdd\xa7\x35\x87\x40\x4e\xb1\x10\xeb\xf5\x83\x89\x5a\x99\x1c\x8f\x33\x39\x93\xe4\xd9\x50\xee\x6f\xea\xfa\x88\x11\x5e\xca\x55\x6f\x15\xba\x6f\x81\xe3\x13\x2e\xd0\xcc\x21\xb2\x83\xd3\x5f\x63\x63\xc7\x12\x9d\x05\x2c\x86\xc1\x9c\x6e\xde\xe0\xb6\x09\xc6\xee\x93\x23\xb4\x7d\x06\x26\x03\xd0\xaf\xaa\x3f\xad\xcc\x59\xdd\x12\x23\x6a\x43\xce\x78\x57\xe3\x5f\x22\xc7\xe1\x52\x05\x62\x0e\xf3\x8c\xab\x89\x24\x50\x5c\xc1\x2c\xc5\x36\xde\x73\x5c\x34\xc4\x51\xa1\x40\x7c\x45\x62\xc4\xc8\x81\x8d\x23\xd7\x71\x75\x93\xaa\x38\x7a\x8e\xd7\x1f\x93\xb0\x61\x14\xed\x53\x46\xca\x92\xcf\x7e\xa7\x44\xfc\x5a\x84\x45\x6b\x7d\x69\x82\x04\xaa\x7a\x38\x6d\x4f\x3c\x57\x7e\x52\x09\x81\xb8\x6c\xcc\x33\x0a\x87\x0c\x1f\xa6\xec\x6b\xee\x90\x5e\x40\xc0\xdf\xcc\xdd\xf8\xb0\xb2\xd8\x90\x6b\x45\x55\x4b\x74\xc7\x0f\xad\xd5\xd8\x22\x1c\x99\xaa\xb9\xe1\xb7\xad\x68\x52\x40\xaa\x3a\x31\x24\x27\xfb\xd4\x53\x2d\x6a\xd7\x05\x63\x28\xf1\x38\xa8\xf4\x58\x1a\x8b\xc7\x81\x8b\x98\xb9\xba\x6a\xed\x35\xa7\x74\x1f\x62\x1d\x99\x90\xfd\xdc\x1d\x69\x9f\x95\x0a\xf5\x29\xa3\x4e\x8f\x26\xff\xc6\x5e\x36\x4c\xfb\x3c\x3f\xd6\xbf\x33\xee\xdc\xa0\x8d\xe2\x84\x0a\x31\xe4\x54\x46\xe9\x30\x04\x29\x53\x50\x58\xbe\x53\x4d\x17\x22\x65\xc4\x90\xd5\x05\x7a\xea\xf2\xdd\x7f\xee\xb9\xe4\xa0\xeb\x4a\x81\x77\x6e\xfa\x40\x91\x66\x62\x81\x27\xba\xa7\x86\x77\x6f\xcf\x8e\x61\xfc\x89\x4e\x36\x24\x44\xbc\xd4\xa4\xd8\x9c\xeb\xd7\x47\xc3\x5a\x20\xc2\x45\xc0\x63\xf1\x84\xb1\x4b\x46\xe8\xa7\x17\x71\xa5\x22\xf6\x77\xb7\x6a\x8a\xce\x2e\xe1\x70\x67\x33\xee\x39\xb6\xf5\x53\x8c\x03\x28\xe3\xad\xe6\x8b\x66\xa8\x7c\x95\x06\x77\xe1\x9a\xb4\x42\x17\x51\x2e\xb9\x58\xab\xd0\x46\x8c\x1f\x9c\xc4\x17\xd7\x23\x45\x00\x74\x64\xed\xc5\xd2\x2e\xaa\x07\xc3\x8f\x82\xe2\xaa\xc0\x82\x42\x41\xb4\x9c\x9d\xcd\x10\x3e\xaa\x36\x76\x69\x05\xbb\x60\x92\x70\xe1\x3b\xe9\xfb\x29\x53\x2f\x41\x7b\xf2\x0d\x36\x69\x89\xc2\x54\x99\x12\xff\xf4\x54\xff\x16\xb5\xbf\xc3\xfc\xbc\x43\x6a\x90\x48\xd8\x6f\x40\x51\x7d\x0d\x2e\x05\x44\x01\xed\x1a\xff\x68\x34\x5b\x8d\x38\x58\xea\xde\x3c\x7a\x44\x7e\x66\x91\x05\x50\x41\x41\x7d\x62\xac\xd3\x80\x13\x81\xe3\x70\x58\x96\x48\x2a\xfe\x36\x41\xd8\x21\x20\x02\x66\xbb\x8f\xf7\x19\xa5\xa4\xe0\x2e\x6e\xa2\x5c\x67\xff\xb0\x3f\x9d\xd9\x98\x88\xc1\x81\x70\x7a\xbf\x8c\xbe\x16\x71\x70\x85\x3b\x5f\x65\x36\x85\xf2\xa9\x5a\xa8\xc1\x05\x7f\x3a\xba\x73\x9f\x78\x51\x16\xc0\x3e\x62\x41\x85\xd6\xca\x9c\x8e\x74\xe6\x29\x61\xfc\x86\x6d\xc2\xe1\x9d\x97\x3f\xad\xcb\x27\xb8\x96\x13\xc3\xb4\x87\x0f\x96\x8d\x4e\xaa\x1e\x33\x33\x15\x5d\x51\x0f\x3b\x5c\x32\xe4\xe7\x4f\xa8\xf2\x72\x9d\xd8\x04\x41\x33\xfe\x62\x3e\x3a\x6e\x48\x4a\x99\xc5\x11\x44\xcd\x6c\x75\xbc\xa6\xd2\x08\x16\xd2\xf9\x52\xe0\x42\x99\xf5\x87\xfd\xe9\x30\x02\x7d\xe8\x02\x72\x9c\xa4\x7d\x5b\xec\x9d\xc4\x56\x9f\x27\xd2\x32\xe7\x3b\xa8\x1c\xd3\xd5\x2a\x75\x85\x90\xc6\xd1\xb9\x9a\x82\x1c\x62\x65\x07\x03\xd4\x47\xb6\xb0\x0f\x75\x4a\x3b\x5a\x2e\x0b\x9b\x6e\x67\x9c\x3c\x94\x16\xf4\xba\x94\x37\xc7\xa7\xef\x19\xa6\x14\x4b\x29\x42\x42\xe6\x2e\xdd\x1f\xdf\x34\x71\x55\x1a\xd8\x66\x7e\x39\xf7\x42\x65\x79\x04\x5c\x11\xae\xc9\x04\x77\x97\x02\x3e\xe6\x87\x37\x9f\x00\x87\xbf\x77\x05\x3c\x89\x78\x1e\x01\x45\xd7\xcc\xc9\x85\x8a\x33\x43\xe0\xc2\xb2\x0d\xbf\xb6\x5d\xa6\xc8\x88\xa5\x3a\xac\x95\xd7\x74\x8d\x49\x53\x30\xca\x44\x27\xe2\xe8\x56\x15\x4d\x13\x55\xf1\x3e\xa5\x1c\x25\xac\x78\xf7\x23\xaf\x9c\xef\x08\xff\x3a\x6b\x8c\xb2\x1c\x2a\x84\x4f\x01\xb4\x3e\xe2\x8a\x65\xc2\xc2\x98\x1b\x39\x0b\xee\xee\xd6\x2d\x10\x5e\x90\xd5\x19\x78\x7e\xa2\x50\xf8\xfc\x0c\xd8\x4c\xf3\x19\x2a\xe4\xf3\x1d\xe1\xdf\x5f\x54\xea\x20\x60\x27\xca\xd3\xed\x2f\xef\xa4\xd6\x62\x50\xc3\x6e\xbc\x6b\x73\x9f\x78\x57\x66\x99\x8a\x0f\xf6\xc9\x94\x7c\xde\xb2\x65\x20\x9f\x97\xd1\xc4\xad\x10\x2b\xd0\x20\x95\x3d\x18\xb7\x2c\x6a\x42\xfd\x38\x92\xfa\xc2\x75\x87\x9f\x54\x0a\x62\xda\xca\x15\x7a\xb6\x6d\xe9\x51\x16\x3c\x76\xc1\xba\x74\xab\xd2\x57\x67\x3e\xf1\xc0\x9a\x66\x8b\x32\xd7\xd6\x28\x2d\x46\xfa\x42\x2b\x84\x21\x93\xfb\x3f\x24\x88\x94\x71\x87\xd2\x47\x3e\x70\x11\x62\x7f\x86\x67\xd2\xb5\xca\x94\x69\xd0\xaa\xcf\xbe\xdc\x1f\x30\xd2\xd7\x70\xeb\xf8\x93\xc3\x47\x69\xd1\xd2\x75\x63\xed\x3b\x18\x49\xfe\x97\x32\x92\xac\x53\xe6\x81\xd6\x7f\xf8\xf3\xb5\x32\x31\xad\xf4\x64\x27\x98\x29\x0e\xd1\xf2\x34\x20\x30\x9f\x57\x93\xa7\x14\xa3\x50\x54\x66\x9f\xd3\x1a\x4f\xc4\x47\x4e\x43\x15\xfa\x3f\x35\x1a\x56\x96\x49\xfc\x06\x37\x3b\x8a\x1e\x00\x3b\x3b\x40\xcd\xb4\xb8\x98\xd0\xdf\x7b\xc9\x07\xed\xdb\x88\x45\xff\x89\x7e\x6e\x30\xd1\xcd\x33\x11\x73\x30\xb8\x4d\xae\x4b\x03\x65\x1a\xc8\xa6\xb4\xd9\x62\xd8\xb8\x7f\xf8\xc0\xe4\x44\x70\x05\x3f\xef\x82\x87\xe2\x19\x1e\x45\x16\xa7\x17\x18\xcf\x2f\xe9\x49\x9b\x1e\xf4\x59\x47\x3d\x23\xb7\xd3\xcc\xfc\x2c\xae\x1b\x36\x3e\xfd\x7c\x02\x4f\x20\xab\x3a\x6e\x57\x69\x0a\x35\x92\x78\xb0\x1d\x37\x84\x0c\x21\x71\x29\x23\x3e\xb7\x3a\xcb\x7c\xe2\x5e\x4d\x6a\x96\x20\xab\xa1\x41\x17\x56\xac\x52\xac\x2d\x4c\x5c\xc0\x2c\x8a\x1b\x1b\xa7\x69\x98\x56\xec\x8a\x61\xee\xce\x23\x90\x5f\x4d\x07\xf5\xb5\xec\x35\x5a\x02\xea\xdb\xc8\x2d\x7b\x25\x8e\x6c\x4a\xa2\xf6\xb8\x7e\x9a\x74\x4e\xe0\xc4\x6d\x08\x81\x2f\x2d\x3f\xa7\xf0\x32\x1a\x95\x02\x75\x38\xa0\xc5\x78\x77\x8e\x2e\xfb\xe8\xd0\x4a\x21\x65\xf4\x60\xfc\xe5\x0d\x65\x12\x82\x58\x09\xc8\x6a\xd9\x11\xcd\xc4\x46\x33\x49\x7a\x5b\x6a\xe9\xcf\x2d\x12\x17\xb9\x26\xef\xaf\x24\x57\x7d\xfb\x69\xdd\x7b\x91\xba\x1e\x15\x67\xf4\xf7\x17\xe8\xa8\x5f\xdf\xb4\x81\xf8\xb2\xf1\x5d\xc5\xcb\xc3\xb5\xa2\x34\x82\xf0\x35\xf9\xf2\x2e\x4d\x40\x3a\x2a\xda\x12\xe6\x4b\x6e\xf9\xe6\xf3\x94\xd6\xaf\x8f\x19\x14\x94\x99\x5f\x9d\x12\xa2\xab\xa0\x75\xcf\xfb\x3a\x9f\xd4\x1d\x6b\xa9\x5b\x4a\xfa\x8a\x2b\x3f\x50\xa1\xd5\x8e\x45\x6b\x5e\x99\x23\x7c\xde\x3e\xa1\x70\xed\x68\xde\x44\x60\x44\x1a\x7e\xe1\x4c\x93\x8e\x53\xc1\xc1\x95\xa4\x57\xfa\xd1\x5b\x7b\x02\xa4\xc0\x41\xf6\xa9\xb7\xce\x53\xd0\xdf\x75\xb7\xca\x8d\x64\xc2\x77\x1f\xd7\x66\xca\x94\xfa\xb6\xb0\x8c\xa5\xa7\xe4\x9f\x54\x03\x97\x08\xbe\x67\x66\xeb\x12\x65\x11\x44\x0f\x07\x60\x12\x68\x95\x3c\xda\xca\xc8\x21\x66\x94\xde\x84\x6d\xaf\x6a\xc2\xad\xae\xe9\x04\x56\xf2\x34\x8d\x93\x8f\x8b\xd6\x49\xd5\x91\x7e\x39\x4f\x4d\xd0\xd4\xbf\xeb\x14\x5e\xe7\x0f\xdf\xd5\x5d\x55\x91\xcb\x73\x6e\xe8\xc4\x22\xc5\x65\x9b\xb8\x5e\x14\xa2\x5d\x50\xd2\x32\xfe\xba\x46\x03\xc4\xda\xb1\xf6\x56\x68\xbd\x71\xbe\xc8\x43\x7d\xd6\xec\xe8\xb3\x78\xa7\xb8\x40\xde\x89\x10\xce\x0f\x68\x5b\x0a\xfb\x5a\x88\x75\xdf\xb2\x9f\x79\x5c\x4b\x63\x18\xb2\x20\x8d\x51\x12\xdc\xcc\x1f\x4f\xc2\x10\xe2\xca\x28\xb8\x29\x67\xa4\xab\x18\x57\xaa\x14\xdb\xcc\x5f\x85\x44\xf8\xfc\x2a\xe3\x10\xad\x81\xe3\xfa\x2b\x20\x13\x9e\x76\x9e\x6a\x51\x12\xd9\x68\x95\x37\xdd\xc9\xc6\xb7\xb4\xbc\x0d\x93\x4e\xf0\x1b\xb4\xe2\x71\xf8\xb0\xd3\xaa\x3b\x71\x0d\x79\x42\x2a\x24\xac\xdf\x2b\xbd\xed\x3d\x9d\xb1\x1b\x5e\x0c\x08\x58\x61\xd0\x5d\x0a\x62\xfe\x5f\xf6\xa2\x9a\xf4\xdf\xb2\xb1\x32\x0e\x1a\x2b\x00\x3a\x26\xa3\x55\xbe\xd3\xaf\x1d\x23\xec\x65\xa8\x93\x2a\xc5\xdd\x75\xda\x68\xdd\x27\xd5\xc0\x51\xd5\xcc\x07\x2f\x55\xc8\x38\x1c\x56\x06\xed\x80\xbf\xde\xa7\x6b\xa7\x71\x2a\xbc\x14\x02\x33\x26\x3f\x31\x48\x54\x5f\x01\xcb\xc7\x7d\x92\xcc\x4b\xda\x24\x35\x06\xb8\x41\x59\x77\xe0\x98\xa2\x25\xe1\x7a\x3e\xe7\x1f\x87\xff\x1e\x6a\x43\x95\x80\xd5\x30\x71\x78\xa7\x5a\x1c\xc2\xdf\xd3\x18\x0c\x2e\xad\x49\x1d\xaf\xd4\xd3\xbc\xf6\x00\x04\x92\x2b\xf8\x82\x83\x93\x69\x79\x0e\x2e\x75\x15\x55\xb2\x57\xe3\xdc\xe1\x49\x2b\xd6\x75\x71\x7c\xd0\x76\x1f\x56\x4d\x8a\xaa\x0c\x7b\x80\x8a\xca\x6d\x7e\x48\x14\x5c\xc8\x29\x2b\xc0\xac\x70\x89\xab\xc4\x9b\xa0\x20\xea\x84\x8e\xee\xcc\x6b\x4a\x59\xcd\x07\xb0\x18\xe0\x55\xff\x34\x4d\x5a\x45\xa1\x26\x46\x4a\xe6\xc6\xfe\x72\x96\x16\x78\x7c\xfd\x7c\x64\xb9\x50\x97\xa7\x15\xec\xdb\x82\x91\x93\x79\xe1\x05\x55\xad\x00\xb3\x12\x76\x4d\xc1\x45\x18\xbf\x63\xb8\x92\x2e\x7a\x81\x67\x2a\x56\xa6\xe7\xef\xd7\x0b\x44\xae\x10\x17\x4b\x96\xe4\x46\x0d\x54\xb4\xfd\x2c\x50\x27\xe0\xe8\xc7\x2d\x9b\xd2\x6b\xa2\x93\x16\x70\xaa\xc5\x90\xbd\xe5\xac\x06\x8a\x06\xd2\x28\x34\xda\x7f\xb0\x46\x6e\xbb\x52\x94\x81\x84\x6b\x3b\xe5\xa1\x56\x47\x4e\x19\xf2\xf9\x7d\xda\x04\xda\xb4\x31\xaa\xc6\x08\xb1\x5c\x63\x6f\x52\x95\x23\xb7\x99\x44\x35\x47\xe3\x1e\x7a\xd5\x98\x54\xda\x7e\xa7\xbe\x17\x28\x4b\x27\xbe\xd6\x12\x3d\x17\x44\x0e\x1f\xdf\x25\x62\xd8\x07\x14\x80\x16\x76\x05\xd6\x72\xdf\xc9\xff\x43\xbb\x8c\xf7\xfa\x26\x2c\x53\x66\x9d\x0c\x8e\x6d\xe3\xbb\xca\xb4\xc0\xe4\xfa\xfe\xe1\x3f\xef\xd1\x06\x73\x0e\x22\x82\x72\x70\xeb\x18\x6d\x2f\x3a\x88\x54\x52\x57\x3e\x47\x72\x23\x2a\x01\x8f\x1d\x61\xb5\x25\x9e\xd1\x2c\xef\x58\xa9\xd6\x90\x3b\x84\x20\x5c\x9d\x91\x12\xd0\xe9\x72\x2b\x4f\x4b\xbd\x94\xcb\x38\xd2\xa4\xfa\x96\x0c\xd1\x36\xe1\xce\x53\x1c\x97\x6b\xcc\x5d\xff\x7f\x50\x02\x62\x87\xe8\xdc\xe6\xd9\x5a\x7f\x32\xf0\x3c\x20\xf1\x88\x71\x47\x78\xfd\x8b\x83\x92\x24\x89\x17\xa8\x51\x42\x79\xd9\xd1\x18\x04\x1d\x38\x55\x41\xc4\x33\xd0\x83\x09\xb8\xa2\x10\xa8\xda\x77\x9f\x99\x91\xbe\x0c\x28\xb8\xf8\xf4\x1a\x20\x25\xc6\xe9\x33\xb0\x67\x96\x53\x90\xa7\x84\xb0\xf6\xe1\xac\x11\x5a\x4a\x14\x45\x89\x78\x76\x9b\xa1\x87\x46\xc4\x4f\x6d\xc9\x92\x26\x38\x93\x71\xde\x01\xd5\x05\x07\x0c\xa7\xde\x51\x82\x3e\x80\xff\x84\xa4\xd8\x85\x87\x64\x59\x56\xa6\xd8\x25\xbc\x18\xec\x7f\x3a\x5f\x4f\x37\x82\x2a\x1e\xad\x50\xc7\x2b\xf7\x1c\xcf\xba\x73\xe7\x4e\x93\x6d\xa8\x1e\x1c\xf5\xff\xf4\xba\x52\x36\x56\xb8\xe2\x62\x2c\x31\x13\x3e\xb2\x5f\xa8\x82\xc6\x90\xb5\x7f\xdc\x23\x37\x1c\x2a\x61\xd7\x42\x7c\x05\xaf\x7d\x58\x81\x11\x61\x33\x36\x42\xc8\xae\xdd\xa2\xca\x95\x56\xab\x3c\x9a\x66\xae\x38\xa5\x22\x3d\xa3\x92\x9d\x63\xa4\xc2\x57\x8f\x29\xac\x59\x56\x0a\xa2\xb4\xe6\x27\x33\x14\xdf\x5c\x97\xd6\x0b\x14\xb1\x14\xa8\xdc\x98\xfa\x8a\x54\x0e\xf1\xca\xb8\x8e\x19\x56\xbb\x59\xe7\x8e\x1e\x2c\xa2\x2e\x33\x95\xce\xc3\xb9\xeb\x45\xcf\x9d\x38\x25\x46\xb8\xc8\xad\xf1\x2f\x6b\xd2\xf0\xf4\xa2\x69\xf6\x40\xa8\xcd\x5c\x5c\x53\x32\x69\x8e\x40\x8c\x9e\xcc\x15\x4f\xc8\x57\x6b\x63\x6e\xe7\xf0\xf1\xad\x2d\x49\xec\x4e\xc4\x68\x40\xb4\xe3\x4f\xf7\x0e\xd3\xf2\x32\x9f\xc6\xee\x4d\x1b\x8e\x2b\x66\x45\x81\x23\x0c\xce\xee\xd0\x0c\x73\x2b\x01\xb3\x44\x4c\x0b\xa7\x6d\xd6\xe5\xd7\x6b\xc2\x6a\x10\x22\xd7\xca\x03\x5a\x29\x2c\xac\x89\xf3\x05\xec\x76\x71\xbc\xe1\xae\x56\x48\xc2\x96\x12\xc7\x6c\x4a\xc2\x32\x47\x34\xae\x04\xa3\xb4\x02\x58\x97\x83\x6b\x35\x53\x01\xe4\xfa\x09\xec\xce\xb8\xf5\xe1\xe1\x5a\xd6\x47\x1c\x0c\x80\xb0\x70\x45\x9b\xd0\x87\xab\x06\x7c\x51\x84\x1a\x62\x09\x4a\x05\x91\x5a\xff\xdb\xed\xa0\x55\x7b\x4d\xb4\x2f\xb6\xf5\xee\xc1\x9f\x45\xfc\xa2\x7f\xb4\xc9\xbd\x0d\x39\xaa\x0f\xf2\x63\xb3\x93\xb3\xd3\x43\x85\xa6\x66\xd2\xca\x65\x42\x2d\x97\x32\xa4\xea\x86\x18\xab\x4f\x42\x74\xa9\x53\xe6\xc4\xf9\x5a\xf6\xf7\xbe\xd6\xa3\x0e\x9c\x22\x89\xaa\x05\x81\xb2\xfc\xf1\xa3\xb2\xe9\x82\x89\x9f\x12\xc3\xe8\xa5\x19\xed\x5b\x6a\xf7\xfa\xf7\x6b\x14\x43\x22\x1f\x55\xaa\xd0\xb2\x9d\x7d\x26\x9d\xc4\x80\x80\x4b\x8f\xc6\x2a\x73\x9f\x48\xc7\xa9\x8d\x01\xf5\x13\xf2\x53\xf8\xcb\xc7\x14\x0c\x69\xac\xe8\x6c\xdc\xa5\x8d\xa8\xfc\x3a\x31\x45\xe3\x33\x33\x77\xb2\xde\x9d\xc1\x45\x5e\x7b\x81\x29\xde\xcb\xfd\x75\x2a\x4c\x35\xda\xd7\x31\x46\xe3\x6b\xed\xe9\x43\xd5\xc6\x4e\x15\xe6\x86\x4b\xe7\xe8\x8a\x9a\xcc\x47\x4e\x4c\x31\xfc\x9d\x42\x26\xad\x11\x8f\x40\x36\xbc\x7a\x3c\xcc\xa0\x16\x63\xc4\xfc\x34\x20\x72\xad\x82\xfe\x86\x91\x07\x6f\x95\xad\xd9\xa1\xdb\x99\x17\x29\xab\x78\xb1\x67\xdf\xae\x2e\xa5\x57\xd7\xe0\x27\xda\xf5\xc7\x20\xf2\xe1\x7c\x85\xcb\x92\x77\x67\x9c\x3e\x4a\xbf\x19\x9b\x04\x02\xe2\x1f\x77\xc3\xb5\x5c\x13\x30\x8b\x9a\x4a\x35\x91\x1d\xfb\xa6\x8c\x89\x36\xe6\x26\x6a\xfc\x5a\x8e\xf4\xd1\x6d\x68\x10\x2b\x09\x73\xc1\xcc\xce\x7b\xce\x4b\xfd\xe3\x04\xf0\x12\xe8\x7b\xbf\xd2\xfc\xe2\x68\x00\x10\x59\x9c\xf8\xd4\x50\x65\x9d\x30\xe4\xe3\x92\xb0\x99\xba\x7c\x83\x94\xa7\xe3\x62\x1f\x7d\x98\x22\x14\x63\x41\xdf\xe0\x97\xa7\x06\x28\xf3\x0e\xee\xa0\x92\xb9\x47\x08\xf2\x71\x20\x5e\x95\xe1\x0a\xb7\x05\x08\xbf\xb0\x3b\x7d\x61\x79\xd1\x0c\xfb\xd3\x8b\xda\x61\xcd\xbb\x27\xa6\xa9\x36\x4f\x6e\x95\xd6\x32\x96\xea\x17\xd7\xb5\x7b\x94\x92\xcf\x99\xc4\x2f\x23\x27\xe5\xe6\x9e\xbd\x7e\x7d\xfa\xd3\xdd\xc0\x67\x04\x2c\x62\x63\xce\xc8\x9f\x1e\xeb\x2f\x22\x65\xcc\x7c\xca\x1e\x58\x3a\x44\x3b\x51\x4d\x70\x4e\x39\xa5\xcc\x7c\xda\x27\x4f\x9f\xc5\xc5\xdc\x6f\xb9\x35\x89\x08\x5d\xa8\xd0\x74\x7a\x7e\xfc\xb4\x34\x6c\x9e\xc1\xff\xa0\x57\xa7\x8e\x56\x8f\xb1\xd9\xdd\x99\x9b\x36\xc9\xb4\x87\x09\x33\x5b\x1e\xf0\xbf\xf2\x82\xbe\x41\xc0\xa1\x42\x3c\xc6\x17\xc3\x24\x4f\xa9\xaa\xa6\x2d\xaf\xac\x3b\x57\xbc\x1d\x56\x82\x6f\x98\xd4\x0b\xba\x8f\x56\xc0\x4f\xd8\x41\x9a\xcb\xac\x85\x1d\x5c\x82\x22\x0b\x00\x41\x63\x73\xc3\x95\xa3\x19\xa5\x3c\x55\x32\x5f\x3e\xa1\xcc\x6c\x5d\x8b\x13\xbc\x12\xba\xf5\xdb\x46\xb2\x84\xa6\xe6\xa7\xf1\x8e\x9b\xc0\x4d\xd6\x11\x11\x93\xd5\xd8\x1a\xb7\x8e\x7c\x1e\x44\xc2\x8f\x1c\xd2\x2d\x13\xb8\xbb\xac\x38\x10\xea\x8f\x6a\x44\x13\xf8\x4e\x75\xbd\x84\x7f\xd4\x68\xcc\x66\xc0\x7c\xe2\xa5\x07\xa5\xb9\x1b\x27\x68\x62\x1a\xd4\xb5\x30\x2b\x06\x82\xc2\x97\xbd\x37\x54\x14\x6b\xb1\xcf\x09\x26\xa7\x6f\x97\xab\x1d\x12\x94\x70\xe4\x68\xb9\x29\xea\x04\x78\x9e\x3b\x5e\x92\x7b\xad\x1c\x45\x73\x06\x59\x7a\xdf\x75\x9a\x2a\x1b\x72\x2d\xee\xf8\xe2\x09\xf9\x8b\x9f\x7c\xa0\xdd\x7a\xa5\x80\x58\x49\xb8\xc3\x1b\x3f\xad\x6a\xdb\x3e\x4a\x7c\x91\xf8\xc7\x1b\x0f\xca\x78\x3c\xbd\x2d\x3f\x85\xe3\xce\x72\x57\x2a\xd2\x8f\x26\x62\x4c\x70\x42\x8c\xdd\x1a\x90\xd1\x45\x65\xd4\x49\x2a\x48\x25\x7a\x67\x6f\xd1\xc4\x45\x91\x43\xdd\x92\x40\x18\x5e\x31\x4e\x2a\x3d\x78\xa4\xe4\x36\xcd\x21\xba\x0d\xf7\xd4\x40\x25\x9d\x71\xaa\x80\x61\x3f\xa6\x8d\x6b\x4a\x0c\xc7\xee\x60\xbc\x30\x3c\xa6\x39\x4b\x33\x2e\xa9\x0d\x87\x61\x61\xac\xde\xeb\xaa\x14\x04\x9c\xe1\xa7\x87\x14\x25\x7f\xab\x16\x95\xed\xc2\xa6\xe0\xd5\x7e\xf2\x9d\x4d\x6f\xe5\xfb\x2f\x7b\xd7\x96\x16\x05\x10\x54\xf4\xed\x7c\xd1\xe1\x42\x0a\xe1\x6f\x9e\x93\x1b\xbf\x21\x1f\x46\xf8\x29\x45\x7a\x82\x30\xcc\xf1\x04\x32\x3e\x5d\xbd\x4a\xeb\x60\x06\x9e\x8f\x88\x2b\x32\xfa\x07\xe5\xc4\xcf\xc7\x52\xd1\x31\x7c\x64\x9c\x66\xdb\x4a\xad\xc0\x11\x60\x98\x3d\xc5\x11\x3d\x86\x78\x31\x33\xea\xfd\xa6\xda\x9f\x76\xa2\xfc\x04\x76\xd3\xff\x9c\x68\xd1\xf8\x6f\x57\x09\x4a\xfb\x08\x20\xbb\xe5\x97\x2f\x58\xd9\xd4\x58\xca\xdd\xaf\x34\x04\x39\xab\x0b\xca\xf4\x9d\xe3\x15\xa6\x67\xf4\x30\xdf\x59\x2f\x4f\x0b\x00\xef\xc4\x7e\x7f\x37\xaf\x56\x24\x6d\x40\xc1\x47\x9f\xc3\x7e\xdc\x52\x74\x71\x91\x67\x0b\xbf\x5c\xe3\x92\x2d\x03\x65\x04\x88\xd1\xe4\x3f\x7c\x57\x61\x33\x54\x0a\xc8\xf3\x90\xc5\xdf\xd0\x4d\xf7\x0d\x51\x97\x34\x2e\x89\x40\x92\xfd\x6d\xf1\x22\x65\x1e\x6a\xa2\xbc\x49\x9d\x66\xcb\xb4\x63\xdb\x95\x9e\x28\xf2\x13\x32\xef\x3f\x0f\x6e\x22\x57\x94\x02\x6e\xd5\xc2\xd7\xed\xef\x16\x69\xa5\x31\xc3\xa8\xcc\x5f\x55\xe6\xa3\xf7\x34\x8d\x6f\x2c\x02\xd3\x1b\x61\xfd\x6c\xce\x55\xc5\xaf\x3d\xde\x70\xaa\x9d\xd0\x92\x37\x46\xab\xf9\x42\x03\x72\xa1\xfe\xab\xb5\xb7\x4f\x7c\xd2\x85\x5d\x21\xa8\xf0\x3b\x30\xe0\xcd\xaf\x68\x1e\x65\x66\x27\x2e\xd2\x39\x88\x9e\x4d\x5c\xcd\xfd\xfe\x4f\x1f\x6a\xc0\x87\x3a\xe5\xe8\x6c\x21\x60\x71\xce\x38\x5d\xe3\x52\x20\x22\x45\xdf\x3b\xf3\xa7\x7d\x12\x77\x51\x08\x9a\x56\xd3\x7f\xee\x48\x9a\x5a\x45\x27\xf1\x9e\xf9\xfc\x1d\x72\x10\xeb\x33\x52\x08\x9a\x3b\x27\xd9\x6f\xf6\xd7\x30\x88\x0c\x16\x7c\xf8\xfb\x13\xca\x5b\x63\xc8\xf4\x09\x7f\x6b\xc6\x05\x0a\xdb\xcc\xaf\x13\xb7\x0c\xcd\x84\xf5\x63\xb4\x12\x9b\x5b\x2e\xb5\xc6\x43\x90\x35\x12\xf2\xe6\x54\xa2\xb8\x7e\x7c\x42\xfa\xed\x4e\x9d\x31\x3d\x86\x15\xde\x3d\x5b\xe3\x85\x3b\x0e\xad\x43\x33\x69\xc2\xae\xd8\x35\xaf\x28\xc6\x75\x1c\x15\xd2\xd9\xd4\xe3\x07\x6f\x62\xe0\xa5\xfc\x6d\xd6\x28\x2d\x8f\xf4\x91\x43\x14\x09\x84\xdc\xf2\x27\x64\xcc\x2e\x92\x52\x94\x80\x82\x3f\xb5\xff\xff\x83\xfb\x06\x38\xe0\xf3\x87\x15\x01\x24\x6c\xf2\x7c\x70\xac\xaf\x9d\x29\x26\x75\x69\x45\xf8\x4f\x65\xaf\xbc\xa7\x45\x11\x06\xc1\x8e\x4a\x1e\x59\x3c\x58\xe9\x34\x54\x7d\x0a\x47\xc7\x8d\xcf\x8d\x49\xb5\xe8\xa3\xaf\x6f\x8a\xfd\x0f\x16\x95\x73\xc7\x21\xd8\x05\xc9\xe1\xec\xdc\x89\xba\xa3\xbd\xe9\x23\x16\xb7\x66\x3a\xba\xb3\x1b\xb6\x0d\x91\x9a\xc8\xea\xf4\x79\xe1\xc0\x51\xda\xd1\x98\x74\x1b\xc5\x09\x38\x7e\x97\xa2\x14\x47\xa9\xf0\xaf\xcf\xfe\xba\xa5\x49\x48\xc9\x07\x62\x5d\x47\x77\xf6\xb0\x36\x7a\x32\x51\x95\x44\xc5\x03\x3c\xce\xf1\x85\xa1\xd1\x0f\xaf\x5a\xd6\xd4\x2e\x5f\x7e\xbe\x76\x4a\xd1\xa0\x2a\xb6\x7b\xe8\x1d\x53\x5b\xf0\xd1\xe1\x18\xc7\xc8\xbf\x1c\x92\xcd\x74\x5f\xd1\x5a\x30\xc6\xc7\x0c\x79\x54\x85\x81\x41\xf8\xda\xd3\xb2\x9e\x98\x32\x83\x0f\x2b\xfb\x15\x34\x21\x08\xe2\x82\xe4\x4c\xb8\xe2\x0e\x85\xfa\x30\x6b\x26\x47\x9c\x2f\x5e\xd6\xa2\xa4\x91\x66\x19\xfb\x38\x4e\x43\x7e\xf7\x86\xa4\x70\x55\xf9\x86\x5e\x5a\x93\x48\xf2\x8d\x41\x94\xea\x77\x0d\x52\x70\xe3\x60\x97\x1d\xfe\x0a\xf2\x01\xd1\x5c\x84\xb1\x6b\xec\x5d\xd4\x3d\xb0\x19\x30\xe8\xf9\x48\x74\x4c\x33\xa9\x7d\x1a\xe5\x6b\x70\x25\xc7\x8d\x74\xb4\xf2\x1c\x54\x68\xb8\x65\xaa\xd0\x25\xc2\xf9\x1f\x88\xec\x9c\xb7\x79\x78\x78\x5c\xbb\x76\xb0\xf8\x91\x27\xa8\x7c\x7c\xab\x7e\x6d\xb0\xee\x89\x54\x88\x6a\x5b\x88\x20\xfe\x91\x74\x68\x69\x9f\x15\x67\x94\x53\x16\xe8\x25\xb8\xeb\x62\x27\x51\xf4\x35\xfe\x73\x46\x82\xed\x98\x36\x2d\x55\x2c\x66\x1f\x58\x71\x91\x02\xdd\x20\x5c\xb1\xbc\x29\x11\xca\x5e\xb6\x23\x7d\x5d\x45\x86\xb1\x14\xd4\xfa\xe9\x2a\xed\x64\x89\x02\x31\x8f\xf3\xb7\x9f\x96\x0b\xda\x27\x05\xec\x83\x2c\xc1\x8c\xe1\x3d\x98\xc1\xb8\x26\x8e\x4b\xd1\x9f\x1e\x94\xab\x21\x41\x46\xdc\x2e\x49\xc5\x9d\x18\xb9\x79\x2f\xda\x3d\x6a\x73\xe2\x35\x45\xd1\xc3\xa1\xd0\x68\x5d\xf5\xe0\xa5\xda\x03\x75\x12\xa6\x4b\x53\xbf\x20\xb7\xb5\x5d\xd6\x62\x65\xbb\x82\x9b\xc7\x0a\x6d\xf7\x26\x07\x03\xe1\xe7\x06\x9f\x76\xdc\x56\x1d\xa6\x74\xf8\x9c\x62\xde\xc4\xae\x1f\x70\x6d\xd2\x2c\x7e\x38\x1d\x2f\x7c\x1b\x83\xbf\x42\x1c\xa4\xfe\xb1\x4b\xc3\x2a\xd3\xc0\xb5\x52\x7d\xe9\x4f\xbd\x7e\x81\x52\xbd\xc0\xc7\x7b\x94\x9b\x9c\xf2\xc5\x54\x1a\x38\xbc\x29\xcb\x4d\xbc\x68\x2e\x3b\x34\x28\xce\x14\x18\xe5\x69\x56\xbe\x23\x9c\xa7\xbd\x4f\xec\x96\x1c\xe2\xd9\x22\xa4\x4c\x3b\x72\x6e\xb2\x38\x59\xb4\x6d\x0e\xbd\x27\x05\xc3\x8b\x94\x6b\xcd\xf9\x7e\xf3\xd9\x77\xf4\x31\x99\x40\x55\x02\xcf\x21\x95\xa6\xdc\xa5\xf5\x88\xb4\x48\xe0\x4e\x53\xe3\x5e\x84\x8d\xb0\x14\xd7\x14\x61\x9f\xcc\x7f\x0c\x49\xc3\x49\x7d\x86\x71\x4f\x32\xd1\xd9\xfe\xe3\x34\x97\x77\x4e\x00\x64\xd0\x49\x30\xbe\xa9\x8c\x89\x2b\xd4\xb5\x90\x83\xf9\x2c\xe0\xf8\x08\xc5\x63\x96\x14\x30\x43\xf9\x8e\x70\xef\x4b\xda\xaa\x94\x66\x1e\xfc\x8f\xae\x7d\x4e\x08\x5e\x33\xd3\x0e\x14\x57\xa5\x5b\x27\x88\xc7\x45\x4c\x1b\xf4\x98\x1f\x1d\x37\xb6\x87\x8b\xe2\xc7\xa7\xba\xf7\x56\x6a\xfd\xa2\xce\xc0\x8b\xb2\x82\xb8\x5f\xd4\xa1\x48\xd1\x55\xb8\xe4\x55\x33\xe2\x5b\x91\x06\x34\x51\x8d\xa0\x28\xbd\x9c\x75\x46\xd9\x08\x36\xaa\xf0\x34\xe3\xd2\x45\x17\x68\x25\xb2\xc9\xf5\xcd\x63\x44\xc1\xf0\x96\x61\xda\x0e\x0f\x48\x4c\xa7\x79\x56\xb1\xf5\x98\x25\x48\xb4\x5e\xeb\x30\xa5\x6b\xc2\x88\xb2\x13\xb3\xdf\x54\x0c\x88\xd0\xc6\x64\xae\xab\x99\xad\x45\xc7\x0a\x2f\x1a\x43\xf3\xd1\xf4\x3b\x74\x90\x5b\x0a\x50\x09\xc4\x41\x8d\x57\xab\xa3\xf4\x60\x61\x3a\x88\x54\xe4\xf4\xb5\x65\x51\x3f\x71\xca\x4c\x69\x9d\xc9\xf1\x1c\x33\x04\xac\x26\xf0\x7d\x11\x59\x37\x4c\x86\x56\xf7\x82\xa0\x58\x44\x0e\xe5\xe9\xc8\xba\x33\xc9\x62\x2c\x04\x51\x12\xf5\x0f\xbd\xc7\x25\x4f\xbc\x8a\x18\x02\xb3\x16\xd6\x68\x5a\xe9\x1f\x3d\x02\xfd\x07\x9f\x7f\x50\x66\xc3\x02\x6d\xb0\x1f\xfd\x1f\xc8\xd4\xb2\x7f\x1d\x0c\x17\xc7\xb3\xae\xe8\x97\x7b\xd7\x74\x4f\xdf\x42\x81\xc4\x98\x64\x47\x8b\x8c\x16\xc3\x2e\xd7\x61\x10\xb4\x85\xca\xeb\xa3\xd2\x94\x64\x06\xbd\x0c\xd9\xfd\xeb\xa3\xad\xe2\x02\xf2\xc0\x50\x5a\xe0\x82\x9e\xda\x9c\x1a\x1e\x57\xa3\x73\xb0\xa3\xdb\xc8\x68\xe3\x37\xec\xf0\xea\x13\x39\x90\x28\x5a\x7d\x94\xd9\x46\x60\x59\xd8\xe5\x14\xc9\x3f\x17\x86\xaa\x6d\x02\x5a\x62\xa8\xc2\x35\xd0\xee\x7e\x4a\xe3\xe5\xf2\x89\xae\xe8\x0f\x9d\xd3\x3b\xb1\xa5\x11\xd2\x33\x87\xce\x4b\x84\x8c\x91\xaa\xd4\x7f\x52\x75\xbb\x65\x05\xc4\xa0\x65\xb7\xee\x98\x3c\x0b\xa6\xe4\xa7\xcc\x68\x9e\x5f\xae\x91\x87\x75\x95\xf1\xcb\xca\x77\x84\x3f\x3e\xa0\xd1\x72\x10\xe3\x1c\x3b\x30\x55\x9c\xe9\x6a\xad\x0d\x46\x91\x4f\x14\x23\xe2\xde\xaf\x24\xa7\x28\xe3\x7b\x51\x41\x48\xbe\x95\x5e\xdb\xd3\xdb\x5a\xa7\xb7\x41\x19\x7c\xd7\x6b\xf2\x52\x8a\x49\x5d\x9a\x1d\x6a\x6b\x1c\xc9\x02\xd9\x18\x10\x9f\x06\xf1\xe5\x7c\x83\x41\x49\xd9\xa0\x01\x8b\x82\x7e\x6b\xbe\x23\xfc\xc5\xc3\xa3\x14\x50\x4e\xe0\xdb\xf5\x28\xad\x51\xa6\x92\x37\x8d\x10\x63\x7b\x85\x1e\xfc\xd5\x87\x54\x4f\x01\x33\xca\xd6\x19\x07\x7d\x65\x9f\x1e\x23\x2f\xad\x82\x88\x23\x90\x96\x87\x4f\xeb\xde\x67\x0e\x65\xf1\x71\x72\xc1\x61\xb9\xef\x69\xb1\x08\x29\x54\x9d\xcb\x60\xe6\xae\x3e\x91\xe6\xfc\x16\x28\x16\x2b\x57\x4f\xae\x5f\xd6\x30\xf1\x2e\x29\xd9\xbe\xd8\x03\xd9\x07\x0a\x4d\xa0\x76\xb3\x9c\x24\x33\xb9\xb9\x07\x07\xc6\xd3\xc5\xcb\x17\x8a\x11\xdd\xe5\x9a\xf1\x8c\x45\xeb\x2e\x87\x09\x3e\xdc\x22\xcc\x60\x31\xf3\x13\x0b\x36\x9e\xc8\x6a\x14\x2d\x97\x56\x88\x2b\xc4\xaf\xc2\x15\xa7\xa0\xfd\xbb\xca\xd3\x6c\xc0\x97\xc1\xb8\xa6\xbd\xad\x2d\x8a\x33\xb9\x79\xf7\xc3\xef\x5d\xe1\x55\x14\x89\xc6\x6e\xe3\xce\xb3\x52\xcd\xb1\xb5\x3d\x7a\xa6\x1f\x68\x3e\x3f\x98\x0b\x55\x26\x4a\x14\x3f\x57\x16\x49\x35\xa8\x88\xc4\xdf\x78\x6c\xf7\xe8\x9e\x72\x7b\xe2\x25\x78\xab\xec\xe0\x4d\x1a\x3f\x1e\xb1\x32\x4e\xa8\xab\xd9\x87\x16\xa4\xc1\x6b\xa8\x1a\x7b\xe2\x52\x37\xe6\xf7\x0c\x3e\xa4\xf1\x2d\x40\xf6\xa6\xd1\x83\xaa\x77\xf8\x75\x8d\x0b\x84\x37\x71\xf3\x7e\xa1\xca\xd1\xf9\x80\xa6\x29\x89\x8a\x45\xa1\x29\x69\xfc\xa7\xa2\x6c\x53\x89\x0e\x56\x44\x20\x39\x5d\xfd\xae\x4e\x2f\xa2\x8c\x24\x7d\xa2\xcc\x17\xd2\x56\x44\x18\x81\x19\x67\x6e\xdc\x42\xb5\x89\xc2\xbb\x90\x5c\x9b\xca\x38\x3a\xbc\x49\x80\xad\x8a\xdc\x06\x30\x7d\xc3\x21\x0f\x2b\xaa\xdb\x33\x05\xb9\x35\x73\xc9\xb6\x41\x4a\x4b\x85\x51\x4e\xb2\xf9\x71\x6f\xc1\x0f\x41\x4e\x14\x3d\x5e\x58\xaf\x3b\xb2\x05\x3e\xe7\x94\x86\x07\x06\xc3\x22\x83\x1a\x5d\x69\xd0\xf6\xba\x43\xa2\x5b\x0b\xd4\x6d\xca\xab\x33\x7f\xdd\xa6\x4c\x51\xf9\x40\x83\xdf\xdb\xac\x5e\x1f\x8b\x0f\xa6\x8f\x47\x97\x37\xe7\x21\xd9\xba\xab\xda\x0d\xc7\x21\xaa\xab\xca\xa5\x6f\xa4\xb3\x0d\xdf\x6b\x80\xf1\x79\x55\x91\x4d\x0f\x7f\xff\xc0\x00\x51\xcf\x99\x0e\x02\x3d\x87\x15\x9d\xc3\x65\x38\x41\x45\xec\xab\xd7\xbe\xf6\x2d\x01\xd4\x31\x2f\x47\x05\xe5\x74\xcf\xfc\x6c\xfb\x70\x75\xbc\xc4\xd1\x99\xb1\xba\xa5\xf1\x11\xc1\xdb\x58\xc6\xd5\x80\xe2\xa3\xbf\xff\x88\x24\x21\xa8\x81\x95\x6f\xf4\xd3\xf9\x05\x3d\xce\x54\xb0\xd5\x10\xe5\xd6\xad\x73\xe0\x72\xaf\x6b\x5d\xd9\x1a\x4f\x1a\x5f\x5b\x3d\xcc\x4d\xb1\xd8\x50\xd2\xb3\x30\xec\x39\x82\x26\xea\xfa\x24\xf1\xbd\x1f\x37\xb2\x45\x4f\x1d\x0a\x82\xaf\x3a\xa7\x7f\x8b\x96\x7b\xb9\x82\x1a\x98\x7d\xe9\x14\x1c\xee\x15\xb2\x29\xca\xa6\x0e\xa4\x67\x3e\x1e\x85\x21\x55\x6f\xe9\xf6\x40\x3d\xfe\x77\xfb\xdf\x48\xff\xe6\xf4\xe9\x90\x37\x3e\xb8\x44\x23\x76\x73\x4b\x75\x88\x34\xe5\x33\xe9\xcb\x68\x9f\x79\x59\x1c\xe7\xae\x02\x59\x90\xfc\x42\xe4\x12\xb5\xab\x91\xbb\x66\xad\x7c\x0c\xb1\x48\x15\x06\x00\x68\xf6\x61\x4d\x5c\x4e\xc8\xfb\xea\x59\xf3\xea\xb9\xc3\xd4\x6e\x29\x2a\xe3\xa4\x9a\xc8\xdd\xf6\xa8\x8a\x91\xf5\x62\x29\xb9\x5f\x28\x6a\x55\x34\x28\x81\xed\xe9\x57\x9e\x1b\xaa\x80\x18\x8a\xf2\xd4\xc9\x5d\xf7\x86\xfc\x97\x69\x53\x63\xe9\x0d\x3e\xac\xf1\x21\x39\x9b\x32\x33\x4f\x5c\xd3\x8e\x7e\xb9\x7e\x54\xc1\x4c\x56\xaa\x8c\x56\x19\xc1\x80\x84\x7b\xed\x84\xea\xf3\xed\x79\xd8\x2d\xc1\x8c\x65\xde\xa3\xf2\x58\xab\x21\xd7\xc2\xac\x40\x1c\x7e\x51\xef\x28\x7a\x18\xd8\x35\x09\x33\x81\xf8\x90\xfd\xe3\x3d\x31\x19\x02\x3c\xf8\xb8\xa6\xfe\x09\x39\xfc\xf0\x50\x03\x32\xce\x81\x1f\xd7\x23\x92\x59\xee\x71\xc0\x7c\x93\xb4\x69\x9f\x22\xa6\x43\xb3\x95\x61\x24\x75\x88\x15\x13\xa1\x8c\x7d\x73\x93\x4d\xd0\x6a\xb6\xc6\xec\xf0\xbd\x8b\x9a\x7c\x7d\x3c\xe4\xf7\xe0\xeb\xf3\x3f\xef\x34\xe1\xcd\x7c\x64\x26\x84\xa4\xcc\xe6\xe3\x9a\x8b\x37\xe9\x8c\x8f\xcd\xe8\x9f\x9f\x5b\x00\x47\xd5\x0a\xce\x0b\x97\x8b\xa9\x6a\xa4\xb3\xeb\x42\xc0\x4a\x81\x6b\x35\xa4\xcf\xce\xae\xc5\xca\x98\x3c\x7a\x6e\xfc\x6e\xfe\x7c\x20\x7d\x39\xa5\xc0\x03\x6d\x4e\x08\xb3\xb4\x53\x23\x15\x08\xb7\x4e\x20\x10\x55\x6f\x55\x64\xa0\x91\xeb\x2a\x17\x64\x64\xee\x4d\x3f\x10\x02\x2d\x98\x26\x84\xe2\x3c\x47\x0f\xf3\xae\x89\xab\x7e\xdc\x60\xde\x96\x86\xc5\xcf\x9a\x21\x80\x6f\xb7\x3c\x96\x96\x46\xa3\x8c\x43\x57\xb3\xb3\x1e\x57\x8e\x13\x9b\x11\xcf\xaf\x20\x7e\xa3\xef\x3d\x01\xcb\x75\x95\xd2\xbe\x38\x21\x37\x60\x11\x35\x52\xc3\xc4\xd5\xdb\xb4\x3e\x6c\x3e\xee\xd2\xe4\x3e\xf9\x74\x7a\x6f\xd6\xa3\x3d\x81\x2a\xda\x54\x2f\x73\xa8\xaa\x48\xce\x88\x89\x62\x77\xe6\x82\x1d\x32\x15\xae\x13\xdf\xb6\x18\xe6\xd5\x44\x5f\x25\x9d\x6f\x20\x66\xc1\xf4\x37\xb7\x76\xb3\xfc\x10\xec\x44\xb9\x06\xd7\x86\x3f\xa5\x17\x81\xb8\x8a\x39\xe2\x02\xda\xe6\xcb\x80\x55\x95\x9f\xef\x79\xd4\x24\x08\x46\x3d\xe9\x15\x7f\xf7\x3b\xea\xd8\xa6\x98\x6c\xf8\xcc\xd4\x47\xb5\x86\x75\x10\x9d\x0c\x02\xc4\x10\x7e\x59\xe1\xba\x14\x08\xef\x81\xe5\xdc\xcd\x10\xb2\x0b\x0e\xa5\x16\x01\x54\x73\xb6\x4d\xd3\x48\xab\x32\x5a\x24\x71\x8e\x6e\x3c\xbb\x5a\x9e\x3d\x55\x62\xa2\x82\x6c\x41\x86\x7f\x9e\x06\x9d\x84\x65\x36\x56\x64\x8c\x33\x6d\x8f\x0c\x53\xa6\x30\x2a\x5f\x2d\x7c\x4a\xa9\x5e\xf8\x34\x24\x4a\x1b\xf9\x4b\x5f\x34\x58\x19\x89\x62\xc7\xc9\x77\x84\xe7\xf6\x12\x4a\xe6\x78\x13\xbf\xd0\x01\xcf\xe9\x0d\x54\x8c\x5d\x2f\x16\x23\x3d\xb4\x5b\x36\x81\x3d\xb5\x4b\xf5\xda\x51\x15\xf1\xef\x01\x58\x39\xdf\x11\x7e\x4e\x76\x34\x11\xc8\x89\xfd\x3d\xf6\xac\xa6\xae\xa5\x7a\x13\x67\xbf\xb3\x54\x13\x99\x02\xb2\x41\xcc\x29\xcd\x8d\x9a\x9d\xbe\x32\x1b\x3b\x55\xc0\x58\x73\xc9\xd7\x23\x5a\x99\x63\x23\xc7\x89\xa2\x6a\x2c\x9a\xfe\xc7\x5d\x3a\xdb\x8b\x1b\x19\x9a\x09\xf5\xf1\x81\xe1\xaa\xc7\xa1\x44\xea\x3e\xab\x68\x03\xdb\x18\x39\xbe\x5d\xe4\x6a\x22\xb9\xb9\xbd\x34\x9f\x0d\xc6\x5b\x5c\x62\x3c\xb1\x69\xaf\x06\x8b\x41\xcc\xe2\x67\x74\x6e\xd3\x2a\xed\x46\x13\x70\x07\x8c\xad\x2e\x5f\xaf\xcd\x5a\x5c\x20\xca\x84\xdf\xbb\x03\x1e\x1d\xf2\x3c\xe4\x79\xc4\x15\x59\x7f\xb8\xe8\x39\x58\x22\x6b\x6d\x44\x95\x74\x7d\xe7\x42\xc5\x73\x4e\xc9\xac\xb2\x9f\xea\x1c\xa8\x96\x91\x1c\x13\x9a\x59\xb6\x5d\xf5\x07\x66\xa0\x86\xe4\x8e\x85\xd5\xb1\xd0\xe1\xdb\x35\xd7\x76\x7f\x12\xec\xcd\x20\xf6\xaa\xcb\x2c\x19\x2b\xe4\x24\x00\xee\x29\x30\x9b\x9f\xde\x17\x77\x08\x38\x4d\x33\x9c\xae\x31\xc7\x9c\xa0\xe0\x10\x57\xd2\x58\xc2\x43\x5b\x63\xdd\x74\x1c\xc7\x87\xdc\xd5\x8f\x26\x03\xad\x02\xdd\xd4\x54\x10\xdf\xf2\xa4\x0a\x65\xe6\x75\x44\xe0\xc4\x4d\xfd\xaf\x3c\x29\xe7\x21\x76\xc0\x18\x69\x20\xbf\xa9\x73\x37\xf7\xa0\xc0\xf8\x50\xd7\xc7\x2e\x2e\x71\x9a\x02\x3f\xc2\x9e\x7a\x6b\xa0\xd2\xa7\x27\xdc\x7e\xc4\x58\xa0\x49\x4c\xd8\x0d\x2b\x26\x0c\xf3\x47\xf1\x6f\x7d\x74\x4e\x46\x11\x09\x05\x8a\xe8\xfc\xf8\xd5\x4e\x85\x7f\x25\x1d\xe1\x33\x3f\x78\xea\x7c\xa5\x64\x75\x51\x29\x05\x73\x9c\x72\x44\x3f\x23\x03\xd7\xe7\xc5\x04\x34\xaa\x1f\x5e\xa6\x8d\xee\x0b\x71\xf7\x1d\x2c\x33\x6f\xfb\x50\xd7\xaf\x41\x16\xad\x0b\xf2\xd5\xbf\xde\x0e\xaf\xa9\x10\x30\x7e\x89\xab\xb6\x08\x57\x19\xea\x16\xb1\x85\x19\x02\x2e\x9e\x79\x54\x06\x64\x91\x02\x2f\xbf\x22\x7c\x4e\xfc\xf2\x35\x88\xa9\xea\x28\x99\x93\x67\x7b\xe4\xfb\x89\x53\x0c\x2f\xd7\x65\x86\x7c\xbb\x15\x2e\xb5\x7b\xf7\x9c\xff\x17\x9d\xa1\x0e\xfd\xf8\xfc\xe8\x0b\xda\xf3\xe7\x69\x17\x8e\x15\xa3\xb3\x9f\x7e\xb1\x47\x83\xd0\x9e\x28\xf8\xff\xdc\xda\x54\xc0\xb9\xd2\xf2\xd3\xf8\xbc\x26\x4d\x64\x63\xde\xcf\x80\xdc\xf8\x57\x6b\x34\xff\xd2\x58\x15\x36\xbc\x4d\x99\xd0\x6e\x6a\x42\x63\xe6\xc6\x8f\x06\xac\xe6\x2a\x46\x6c\xe4\x57\xa8\xd5\xa9\x2a\x7f\x0f\xbe\x5d\xf7\x0a\x8f\xcd\xc2\x39\xd9\x2d\xa7\x9f\x31\xd1\xe9\x13\xc7\xbf\xdf\xf4\x1d\xa6\x47\x95\x58\x91\xdc\xb0\xfb\xab\x06\xd1\x15\xea\x29\x55\x7f\xf6\xee\xf7\xa1\x0f\x7c\x39\xa3\x75\xce\x1e\xcd\x9e\xd1\x9a\xd3\x05\x62\xf1\x51\x27\xd4\xdd\xcb\x77\x8d\xd2\x32\xb6\x92\x0d\x04\x1f\x4b\x9c\xc7\x79\x4d\xf8\xb1\x8a\x1c\x64\x62\x8e\x70\x91\x5d\x64\xfc\x92\xd6\x57\xad\x22\x06\x10\x0c\x63\x46\x4d\xc9\x02\xf8\xb4\x31\xba\xfd\x07\xde\x6c\x2e\xb8\x51\x29\x91\x45\x98\xfc\x42\x93\x22\x0e\x71\x13\xc1\x02\x7f\x5f\x3a\x37\x2e\xb6\x16\x5a\x49\x6b\x73\x8f\x27\x9c\xbd\x74\x68\x5d\x6f\x6e\x4f\xe2\xe8\xd3\xf5\x6b\xb5\xb0\xce\x6f\xda\x69\x4c\x62\x05\x0e\x00\xe9\x1a\x2b\x1f\x72\x17\x69\xa0\x94\x07\xe2\xce\x05\xf0\x90\xdb\xa7\x4e\x6e\x6b\x9b\x91\xef\x08\xff\x59\x71\xb7\xe1\x73\x39\xde\x96\xea\xe8\x36\xde\x1f\x0b\xf6\xc7\x57\x33\xe4\xb9\xb4\x81\x18\x77\x37\x48\x5d\xe3\x80\x83\xb2\xc3\x6e\x52\x16\x34\x0b\xfe\x1b\x2d\x76\x02\x8c\x73\x68\xb3\x1c\xd3\x36\xd5\x8c\x9d\xa7\x65\xa8\x2e\x3a\x7c\x95\x19\x29\x29\x5f\x1b\xc5\x5d\x9d\x91\xae\xac\xe6\x0b\x0c\xbb\x56\x4a\xa0\x78\xda\xd9\xa1\xf1\x2a\x32\x6d\xac\x18\x7f\xfc\xb6\x4d\xad\xb5\x3c\x1a\x30\x13\x66\x90\x86\x35\x63\x84\xbe\x97\x29\xe3\x26\xe3\xb3\xb9\x54\xc1\x07\x4a\xee\x85\xbc\xe8\xe1\x64\xbf\xd8\x15\x4b\xcb\x97\x02\x07\x31\x70\x77\x7e\xa8\x8f\x30\xf1\xf3\x39\xc1\x22\xec\x33\x57\x14\xf3\xf3\xaf\x9c\xbf\xac\x43\x44\xb2\xff\x51\xee\x38\xca\xa6\x4c\xca\x84\x67\x9d\x31\x41\x31\x49\x33\x49\x09\x31\x21\x75\x65\x1c\x1c\x2f\x9f\x33\x0c\x9a\x9b\x82\xc8\xdc\x79\x49\x4f\x78\xfa\x65\xf9\x8e\xf0\x1f\x76\x4b\x3f\x0c\xd4\x6c\xc0\xf7\x8c\x86\x69\xa8\x73\x9f\xb4\x71\xbc\xb8\xd8\x9c\xfe\xa7\x22\x76\xad\x49\x20\x97\xf1\x76\x2b\xdc\xa0\xc5\x30\xe2\xdc\xc8\x65\xae\x32\x70\x97\xc2\x7f\x4c\xce\x44\xf1\xc6\x80\x54\x2b\x60\x95\xa6\xf9\x22\x1b\x70\x98\x7b\x41\xa9\x24\x6c\x7f\xf2\x1d\xe1\xd7\xc6\x0d\x12\x9f\xc6\x89\xf0\x90\xdc\x0d\x08\x07\xa9\x3d\x60\x2e\x92\x1a\x3e\xd9\x26\x06\x73\x8c\xa7\xd1\x82\xab\xb1\x5a\x78\x2f\x31\xcc\x5b\xf3\x3c\x51\xfe\x72\x5f\xf8\xcd\xcb\xb1\x42\xbc\xca\xae\x31\x74\x75\x5c\x2c\xa6\x39\x61\x55\x49\x51\x90\x53\xc3\x7c\xa8\xfa\xe3\x1d\x4d\x4c\x61\x7e\xc8\x38\xc7\x07\x8a\x54\xce\xe4\x38\x51\x2e\x2b\xfe\x8e\xac\xf9\x3a\xa9\x59\xc6\x7c\xac\xf5\xfd\x87\xd3\x7b\xdf\xc7\x9b\x90\x29\xe4\x37\xd2\xcf\xe6\x87\x87\xe0\x41\x3b\xd4\x83\x25\x1a\xbc\xdb\xa2\xec\x34\xb7\x18\x55\x8b\x25\x18\x96\x7d\x63\xc2\x60\x55\x04\xa2\x48\xc1\x0b\xf5\xe3\xe3\xe4\x14\xcb\x47\x65\x6e\x76\x9f\x7d\x7d\xd6\x00\xb1\x6d\xb8\x37\x00\xff\xe8\x7b\xd6\xa4\x57\x3f\x65\xa4\x44\x5c\xe4\x80\x8d\x5a\x6e\xcb\x6e\xa5\x9c\x62\x84\xab\xbb\x85\xc5\xbe\x10\x45\xb8\x14\x77\xf4\x83\x8e\x3b\xfb\x2b\xb9\x2b\xcf\x60\x06\xad\x86\xe7\xb2\x1a\x97\xb8\x39\x32\x2f\x86\xff\xfd\x84\x2c\x19\xb8\x3d\x91\x89\xaa\x9c\xd6\x95\x7d\xea\x55\xed\x24\x23\x0c\x5b\x90\xa7\x8e\x38\xa4\xc9\x95\x2b\x6a\x54\xfc\x1a\xed\x76\x5d\xa7\xc5\xa4\x41\x14\x93\x63\xf6\xfc\x85\xa3\x95\x66\x07\xb1\x30\xf5\x11\xa0\xe1\x73\x95\xb5\x5a\x27\x1d\x63\x4b\x14\xfd\xe1\xcf\xdb\x65\x20\xad\x60\x62\xa5\xa0\xf7\x23\x56\x43\x46\x92\x88\x56\x8a\xe8\xf4\x0b\x11\x19\x0a\x0d\xcf\xe7\x6d\x95\x7c\x47\xf8\xb2\x21\xb3\xae\xc0\xb4\x71\x89\x8f\xbe\xe3\x4f\xfa\xfe\xbd\xf0\x52\x16\x23\x37\x28\x97\x11\xef\xe8\xec\x1a\xaf\x88\xc8\x50\x10\xe6\xce\x6c\x7f\x47\x0a\x8c\x36\x52\x26\xeb\x46\xe7\xfb\xca\xef\x63\x07\x6a\xf2\xca\x6b\x3a\xcd\x28\xd6\x58\xed\xe2\xe5\xc1\x3c\xcd\xb0\x8a\xbb\xd8\xc1\x0e\xb8\x49\xf3\x17\xb3\x88\x07\x62\xb9\x9c\x0d\x19\xbd\xf1\x9b\xce\x0e\x50\x96\x38\x97\x2f\x3c\x26\xe4\xf0\xdb\x2f\x6b\x9d\x3a\x8b\xeb\x09\x8c\x55\x10\xe7\xbe\x4f\xfc\x80\xbb\xed\x4d\x51\x7a\x05\xdc\x23\x34\xee\x68\xf6\x7d\x62\x98\x52\x19\xf9\x98\xe5\xb1\x6f\xbb\xc4\xcc\x77\x84\xd7\x2d\xd5\x6d\xc9\x5c\xec\x7b\x65\xa1\x19\xb7\x72\x79\x77\xf6\x9d\x81\xf2\x11\xe4\x1d\x61\xf1\x7d\xc1\xc0\x01\xc9\xd7\x98\x1c\x9b\x1b\x3e\xaf\x65\x2f\x16\xf6\xaa\xc4\xc7\xc2\x2f\xe6\x96\xc1\x97\x28\x25\x8b\xf0\x21\x07\xb9\xd8\xa6\x5d\xfa\x1f\xb3\xc6\x6a\xe9\xa5\x8b\x48\xe0\xd3\x54\x43\x22\x3c\xf3\x82\x5e\x0f\x56\x83\x92\x8b\x38\xde\x95\x97\x1e\x9f\x1b\x3f\x30\xae\x90\x8a\xd8\xf3\xb8\x9b\x57\xe6\x07\x6d\xd0\x44\xbd\xac\x9d\x73\xff\x27\xbd\x2f\xf7\xd7\x25\x1e\x4f\x4e\x96\x3e\xa7\x8f\x12\xf2\x15\x54\xe4\x12\x19\xd1\xa7\x0e\x1c\x07\x2f\x63\xfa\x94\x56\xde\xa3\xcf\xee\x73\x54\xf1\x0e\x71\x63\xa2\x04\x79\x51\x4c\x80\xaf\x74\x10\x37\xf7\xcb\xee\xea\x4a\xdb\xac\x10\x1f\xb1\xbc\x8f\x3c\xaf\xb9\xb3\x96\x2d\x0a\x1e\x30\x71\x5d\xa8\xbc\xbf\xdd\xa9\x48\x4e\x36\xaa\x98\x15\x28\x38\x4b\xbf\xa3\xb8\x06\x79\x0e\x77\x60\x13\x87\xfd\x97\x9e\xd2\x6f\xa6\x8a\x5d\x2f\xde\xe0\xc6\xf6\x03\xd0\x44\xb2\x91\x2f\xa4\xb0\x8d\xff\x3a\xdd\xa2\x1d\xda\xf1\xc4\x3b\xfb\xa5\x63\x1a\x50\x8c\x1b\x2f\xfa\x98\x55\xe2\xb1\xce\x57\x5f\xd5\x39\xfd\x35\x82\x7d\x91\x35\xbe\xa7\x11\xfe\xeb\xc4\xc5\x42\xe3\xbf\x3b\xbb\xeb\x71\x88\x7c\xcb\x1d\x0c\x2a\xd7\x99\x8f\x9c\x4e\x8f\x88\x68\x95\x21\x5b\xb3\x7c\x78\xf6\x84\x40\xe0\x73\x7c\x2f\x47\xf7\x5a\x12\x08\x16\x28\xee\x38\xc6\xf6\x9c\x9e\xee\x3b\xd5\x58\xaf\x2a\x4b\x7a\xe9\xc6\x62\x94\x56\x63\x94\xd2\xed\xbd\x47\x69\x07\x1a\x8b\xea\x5b\xde\x9f\xe2\x63\xb2\xcc\x2b\x6b\x24\x10\xc6\x6f\xa0\x4a\x17\xf2\x6c\xac\xcc\x2c\xc6\x6a\x47\xbf\x17\x10\x31\x73\x36\x3a\xc6\x6a\x6d\x0f\x5e\xc6\x4a\xe0\x61\x76\xff\xdc\x58\x16\xc3\x8b\x8e\x1b\x38\xb6\xd8\x8c\x26\xca\x4c\x50\xc2\x71\x3d\x99\x9b\x3f\x31\x21\x2c\x54\xcc\x82\xdc\x32\xdd\xfd\xd3\x8c\xdc\x3c\xf4\xc4\xc9\x7e\x55\xa3\x33\xd1\x8d\x83\xe0\x68\xf6\x95\x9f\x15\x28\x19\x6f\x8e\xbe\xa9\xa1\x23\x30\x4a\x8a\x88\xf0\x91\x69\x63\xf4\xfa\x31\x5f\xa1\x2e\x62\xa6\x4d\x3c\x81\x48\xcf\xe4\x15\x99\xf6\x29\x6d\xf9\x29\xd3\xe3\xb1\xd7\xd9\x3b\x64\x66\xd8\xda\x36\x6b\x6a\xf4\x1c\x7e\xd6\x2e\xb9\x61\x41\x73\xb1\x37\xb6\x55\xeb\xe5\xf8\x3e\xae\x54\xe3\xc9\x7e\xef\x7b\xe5\x36\x9f\xc1\x6d\x0a\xb2\x6f\xed\x4d\x3f\x78\x1b\x28\xbd\x72\xc1\x0c\x2e\xca\xd4\xa0\xbd\x2d\xd1\x58\xce\x77\x84\x9b\xc7\x48\x92\x72\xb1\x07\xb8\xd1\x7b\x1a\x28\xcd\x41\x15\x2c\x3a\x70\xe1\xbb\x23\x34\x86\x6d\x89\x09\xf3\xf8\xb8\xf4\x7e\xc0\x19\xae\xe0\x46\x4b\x88\xdb\x78\x79\xa4\x81\xf2\x1d\xe1\x63\xf7\x69\x5c\xc2\x62\x91\x98\x24\xca\x29\xc0\xd2\xfc\xd8\x44\x58\x2c\x0e\x46\x5c\xa0\x88\x4f\x84\x9e\x58\xdf\xa2\x0e\x11\xfd\x06\xd8\x8a\xf2\xf9\x62\xef\x16\xb5\x48\x71\x3d\x94\xf4\x4d\x8f\x4e\x38\x4f\xa6\x81\x0c\xbb\x3e\x81\xf5\xf0\x7c\x9f\x41\xca\x21\x13\x85\x9a\x7c\x47\x38\x74\x87\x86\x04\x45\xbe\x1f\x0b\xb4\x66\xf3\x13\x86\xc7\xe7\x70\x13\xc1\x35\xbb\x6f\x64\xfa\x35\xd4\xa8\x13\xb8\x3e\xc6\xf1\x60\x3f\x93\xeb\x73\x91\x96\x48\xa0\x1e\x44\x6c\x36\x14\x74\xa8\x99\x83\x4b\xa2\x1f\x97\xbd\xf1\x03\x91\x52\xb8\xbe\x1d\x78\x04\x79\xe0\x5a\x64\xdc\xb9\x3f\x2e\x36\x0a\x28\x16\xce\xcd\xdc\x7f\x46\x1b\xc0\xe3\xba\x57\x41\x31\x61\xe7\xab\xaf\xeb\x3d\x4e\x6c\x2a\x1a\x6a\xd9\x25\x96\x30\xb3\x40\xc4\x73\xb0\x3a\x3f\x18\x34\x02\x92\xe5\x6b\x90\xc5\x48\x22\xfc\xf3\xcc\xa2\xf3\x75\x3d\x82\x68\xe7\x81\xe7\x5b\xee\xb3\x1b\xc6\xc8\x84\xdf\xb4\xa9\xe7\x37\x2b\x0a\x64\x2f\x3e\xae\x77\x23\x11\x61\x75\xec\x38\x82\x04\xba\x59\x23\x50\x88\xaa\x1a\x1a\xd7\xdf\xbd\x47\x11\xda\x73\x68\x83\x87\x8f\xa5\xbd\xb5\xf1\x7e\x50\x40\xdc\x45\x4c\x26\xf9\xdf\x7c\x0f\x1e\xdd\xd5\x01\x4a\x70\xe8\x99\x4f\x3d\xaa\x84\x0a\x95\xcf\x3d\xf6\x2d\xf5\x88\x74\x90\x4f\x6a\x24\x7e\x09\x1b\x7a\x2b\x2a\xf1\x96\xc5\xfb\x66\x3c\xa5\xdd\x23\x84\xb5\xae\xc2\x6a\xa1\x9d\x99\x7a\x48\x2a\xf2\x13\xd5\xd2\x13\xef\x1e\xac\x2c\x73\xb3\x2c\x4e\xc0\x96\xd3\x7a\xdb\x44\x24\x12\x1d\xdd\xd9\xdb\x8a\xc2\x0a\x87\x09\xf1\x86\xd9\xab\x53\x1c\x8f\x55\x1d\x93\xb8\xf7\x78\xf4\xbb\xef\xf7\xd1\x21\xb0\x5e\xe0\xf8\xb1\x2c\xf8\x67\x0f\xc8\x2f\x77\x31\x89\xad\x37\x6e\x50\xa6\x84\x49\xe5\x19\x15\x32\x7b\x07\x4a\xda\x9d\xa7\x4a\x78\x5e\x3c\x5b\xf7\xfb\x22\x25\xbb\x40\x99\xf0\xf9\xf9\xdf\x5d\x92\x71\xcd\x28\xe6\xd5\xa1\x87\x53\xf9\xf3\xfd\x8a\x97\x54\xe0\x79\x34\x5f\x40\x7c\xfe\x98\xfd\xad\xa2\x32\x16\xad\x24\xd5\x26\x68\xc7\x0e\x9d\x01\x67\x9a\xd8\x4b\x38\x98\xc5\xdb\x95\xf2\x82\x2b\xf2\x12\x17\x66\x97\xdf\x5f\x32\x40\x99\xc2\xf1\x7b\xbb\xbe\xf3\x3c\x15\x0d\x94\x40\x8b\x16\x69\xfd\xff\x22\x35\x03\x0f\x5b\xd0\x38\xcc\x7d\xe1\x8c\x66\x72\x4f\x0b\xc4\xe9\xb1\xaf\xf7\x98\x22\x30\x83\x58\xc5\xf3\x19\xc8\x08\x1a\x7f\x7b\x24\x69\x6e\x97\x12\xc9\x0f\xe3\xa9\xaa\x5e\x89\xd4\x71\xe2\xfe\x94\x9b\x21\x4f\x44\xaf\xe1\xf9\xb8\x02\xc8\xd5\x4d\x13\xb4\x5c\xb6\x42\x4d\x86\xfc\x9e\xae\x27\x63\xd5\x64\x17\xa1\xc8\x50\x10\xa5\x22\x5c\x5a\x27\x19\xe8\xa0\x2e\xcd\xb3\x8e\x50\xd7\x2f\x73\x4d\xa3\xd4\xae\xda\xbf\x66\x84\xd2\xc2\xaf\x31\xe2\xd0\x9a\x3c\xbd\xbf\x74\xaf\x8e\x3f\xa2\x41\x21\xa1\x6c\x1f\x6f\x05\x13\x8c\x2b\xa9\x63\x55\x90\xdb\x14\x22\x73\x1b\xbb\x34\x9f\x5d\x6c\xda\xc8\x25\xa6\x68\xfb\xe5\xfa\x8c\xd1\x08\x04\x49\x22\x29\xe2\xf8\x97\x0e\xa7\xcf\xf4\x0a\x2a\xb9\x81\xce\xfd\x9b\x74\x4a\x37\x98\xe0\x9c\x00\xd1\xa7\x9c\x76\x58\x1d\x8e\x3b\x41\xd2\x40\xcf\xae\x1c\xad\xc8\x9d\xd4\x30\x6b\xc4\x4a\x28\x61\x9b\xab\x81\x77\xa8\x53\x8c\xbb\x7e\xaf\x2c\x91\x5e\xf0\x5d\x51\x11\xf2\x67\x8d\xc9\x11\xb8\x0c\x23\x87\x07\x9b\xb8\x2c\xb8\x63\x9d\x62\x3f\x8f\x61\xd2\x30\xf9\x90\x22\x53\xa8\x78\x58\x64\x9e\xbd\x23\x71\xa3\xe3\x0a\xfb\xc6\x97\x0e\xca\x54\x8f\x6b\x26\x30\x6a\x29\xcd\xd6\xdc\x65\xf7\xaa\xc8\x57\x17\x59\xd1\xb1\xbd\x66\x93\x74\x89\xc1\x2a\x42\x2f\xbc\xbf\xaa\x1b\xb3\x00\xf3\x34\x9e\x69\x05\x61\x93\x95\x30\xb7\xfb\x48\x08\x43\x27\xee\x6c\xb2\x5e\x61\xb4\x16\xab\xbd\x18\x1f\xdd\xaf\x7a\x9d\x83\x1d\x51\xdb\x33\xe7\xab\xcd\x25\x3e\x84\x4d\x96\xaa\x3d\x59\x66\x1f\x16\xf1\x88\xe3\x04\xd1\x89\x04\x8f\xe9\x17\x8a\x2e\xa6\x8d\x59\x81\x98\x04\x4c\x07\xaf\xed\xaf\xa9\x6b\x31\x54\x17\x13\xd6\xbf\x3c\xa2\xb0\xe5\xeb\xc8\xf5\xf8\xc4\xeb\xdb\x9a\xe3\x97\xe8\x4f\xc6\x87\xfe\x77\xc7\x42\x5d\x12\xb8\x4e\x60\x82\xf0\xd7\x2f\x17\x5d\x90\xc2\x5b\x91\x92\x9b\x37\x03\xc6\xb0\x6b\x36\xf2\x1d\xe1\xb7\x06\xcb\x48\xeb\x22\xcf\x43\x41\x3c\xd1\x39\xf2\x48\x3f\x91\xac\x40\x9f\xd9\xb8\x7b\xb1\x56\xa4\x60\x56\xf0\x62\x70\xf3\xd6\xc1\x72\x0b\x52\x87\xd4\x30\x61\x0a\xf2\x33\x33\x7a\xfd\x60\x11\xcc\x99\x29\xa4\x96\xa2\xbf\x1a\xfd\xa1\x14\x1b\x2a\xc5\x4d\x99\x4c\xd8\x4b\xed\x8e\xf0\x99\x3e\x0d\xf8\x6c\x31\xbb\xb3\x49\xb9\x92\xbf\xd5\x44\xb8\xcd\xd5\x80\xf0\xc8\x61\x18\x25\xf2\xef\x37\xbf\xaf\x6b\xe8\x04\xcc\xb4\xe3\x46\xf9\x2b\x27\xb4\xae\xcd\x26\x9f\xe1\x0a\x49\x74\x18\xb2\x5b\x76\x4a\x3c\x7c\x81\x6e\x8a\xee\x41\x83\xd3\x7d\xf1\x4c\xfa\x23\x44\x5f\xcb\xa6\x54\x48\x0a\xcc\xd0\xe5\x76\x4c\x12\xa5\x88\x9e\x1f\xe3\xe3\x72\x57\x4c\x4e\xb6\x26\x58\xe9\x7e\xa2\xd7\x00\x71\xf4\xd0\x6a\xac\xfd\xfc\xd3\x77\x2f\xd6\x9e\x43\x01\x95\x38\x67\x6b\x92\x42\xb4\xee\xce\xfc\x6d\xc8\x20\xe5\xfc\x89\x72\xcb\xe8\x9c\xd9\x2f\x7f\x58\x66\x54\x14\xc9\xbf\x5c\x93\xee\xef\x3b\x7c\x25\x46\xff\x62\xab\x63\x75\x07\x79\x7e\x32\xbd\x7b\xb8\x9f\x82\xe5\x63\x18\x95\x85\x2d\x54\xd7\x83\x72\xb3\x77\x22\x56\xa2\x6e\x6b\x0a\xd3\xdc\xf1\xf0\x05\xda\xe5\x73\xbd\x94\xe8\xb0\x1e\x17\x3d\x03\x63\x8f\x0c\x6a\x75\xcc\xe4\xbc\x3d\x9c\xb7\x04\x16\xe5\xf5\x84\x77\xb2\xba\x73\xd7\xef\x84\x15\x5f\x62\xc8\x0a\x80\x10\x1f\xac\x96\x9e\x7e\x44\xc9\x11\xb2\x5f\x7a\x31\x51\xff\x01\x87\x86\x24\x9c\xa0\xce\xa4\x32\x71\xb0\xee\x6f\xd7\x9d\x1b\xb0\x34\x86\x38\xcd\x10\xa5\x56\x76\xdb\x0c\x01\xa7\xf3\x6d\x5a\x20\x6a\xcd\xba\x45\x48\x80\x20\x90\x59\x9b\x7c\x3c\x66\x13\x78\x65\x80\x23\x75\x8e\x16\x83\x47\x2a\x54\xfe\x9c\x45\xca\x24\x00\x55\x89\x15\xfb\x27\x64\xa7\x4d\x80\x6d\xb3\x42\xf4\x47\xa0\x96\x30\xba\x1f\x1b\xaa\x1d\x49\x40\xec\x0d\xbf\x75\xa7\xb6\x45\x4d\xc4\xb0\xe8\x96\x67\xe6\x68\x86\xf1\x9e\x69\xe3\xe8\xcc\x8d\x6d\x1b\xbf\xf5\x8e\xc2\xd9\x9a\xe2\xdb\xf9\x8e\xf0\x1d\x6b\xa4\x96\x5c\x78\x26\xad\x47\xdf\x05\xc3\x83\x9d\xfb\xd3\xbd\x86\x14\x7e\x50\x84\xe2\x8f\x74\xc9\xe5\x93\x54\x12\x95\x7c\x47\xf8\x0b\x5b\x39\xba\x78\x41\x16\x2b\xeb\x65\x87\xe9\xec\xe5\x2a\x28\x90\xf0\xcc\xfc\xae\x2d\x92\x2c\xc6\x91\x7a\xc6\x14\x3d\x32\x51\xd3\x8c\xa5\xb1\x32\x63\x16\x82\x01\xc7\x55\xad\x0b\x5a\x17\x35\x8b\xec\x6f\xd3\x4c\x89\x2b\xd4\xe3\xdb\x35\xdd\x30\x09\xe7\xe9\x2d\x5f\x9f\x51\x07\x07\x95\x38\x78\x54\xb4\x7e\x20\xb2\x2a\xa0\x3d\x98\x40\x77\xfb\xf4\x49\xc7\xfa\xb2\x4b\xeb\x50\x1e\x85\x17\x3e\xa3\x10\x82\x7c\x16\x94\x4a\x8e\x0a\x42\xca\xfe\xe8\xc8\x10\x05\xe4\xc4\xfc\x80\x83\xbe\x3a\xc2\xff\x78\x32\x7d\xed\x75\x9b\xf8\x51\xcd\x15\xfd\x6f\x09\x09\xf3\x0b\xb2\xdb\x5b\xc4\x3c\xcb\x51\xee\xec\xe0\x43\x32\x1a\xa0\x1a\x76\x03\xbe\xf0\x3e\xb2\x22\x3d\x5c\xa8\xc7\xae\x21\x17\x54\x93\x88\xed\x11\x51\xc1\x84\x03\x57\xc4\x72\x15\x55\x82\x6c\x1e\xa9\x6f\xd2\xd0\xb5\x16\x6a\xc4\xde\x3c\x77\xbf\x09\x3b\x82\x0b\x8b\x47\xb5\x7d\xb9\x8f\x2e\x09\xc7\xa1\x5a\x99\xf9\x96\x62\xa7\x60\x07\xc0\x15\xcc\xdc\xf4\xae\x86\x70\x43\x0d\x3e\x41\x4d\x40\xf3\xbd\x7b\xc1\xd5\x5c\xce\xd5\x05\x78\x65\x16\x1c\x97\x8d\x11\x86\xc0\x8c\x60\xe5\x87\xe9\xf7\xe1\x60\x54\x0a\xf8\xa0\x35\xfc\xc6\x07\x22\xe4\x02\xe0\x8f\x83\xe1\xcf\x79\x64\x90\xc8\x9c\x19\x2d\x45\x45\x2f\x8f\x74\x3f\x5c\x91\xce\xed\x6c\xec\xba\xb8\xa1\x2d\x9e\x33\xb6\xc2\x5a\x12\x60\xec\x7c\x47\x38\x75\xb9\x92\x15\x10\xdf\xb4\x4d\x6a\x72\xfb\xaa\x9f\xed\xbf\x40\xa5\xb9\x12\x9f\x3a\x69\x73\xb5\x23\xaa\x24\xa5\x0f\x8d\x49\xd8\x38\xc5\x71\x71\x69\xce\x27\x12\x7c\x30\x15\x6e\x93\x99\x04\x76\xe3\x9a\x2d\xb3\xf1\x84\x16\x0e\x48\xc9\xe5\xe0\x46\xa1\xfc\xf0\xf0\x8b\x8a\xca\x3a\x35\x39\x80\x53\x80\x1c\xfb\xed\xd3\x29\x2f\x16\x09\xe2\x31\xf8\x27\x14\x4e\xbd\x85\x7d\x44\x1c\x88\x72\x9d\x47\xa4\x6a\x19\x51\x57\xe0\x6d\xab\xf5\xa6\x5c\x15\x11\x16\x8b\x1b\x19\x8f\xbd\x99\x2e\x70\xca\xc8\x41\x9e\xed\x92\x32\xad\xa5\x05\x6d\x33\xf6\x73\x03\x15\xba\xad\xe8\xe2\xfc\x74\xce\x10\xa9\x8d\xa4\x1a\xd9\x3c\x79\x4a\xfb\x5a\x62\xd2\x49\x66\x5c\x46\x67\xae\xde\xa2\x49\xe6\x61\x1f\x6a\xd6\xdc\x97\x35\xa9\x14\xe1\x8a\xc4\x47\x7b\x8b\xb6\xeb\x09\x4a\x09\x31\xc5\xa0\x3d\xf3\xdf\xab\x95\x3c\x98\xb0\xe8\xdc\x4b\x31\x4f\x4e\x2c\x4f\x27\xe2\x35\xea\x94\x53\x5c\xf9\x70\xdb\x22\x2d\x14\x31\x5a\x21\x2e\x77\xee\xe1\xc1\xe4\xcb\x63\xb5\x7a\x85\x02\x98\x25\xf6\x2c\xbc\x6b\x84\x42\xfd\x4f\x40\x50\x77\x0c\xd3\x8b\x3d\x01\x92\x08\x3f\xeb\xf7\xd0\x3b\xc3\x2c\xfe\xe7\x57\x0f\xa6\x37\x7a\x83\x06\x3e\xa8\xe1\x1a\xa7\x5b\x34\x6f\x08\x44\x7c\xa7\xa1\x0a\x7a\x18\x73\x5f\x4d\x99\x23\xcf\x4e\xfa\x06\xb9\xa5\x13\x26\xd6\xb5\xf6\x4c\x54\x5c\x60\xe1\x90\xa9\x77\x73\xee\xdf\x06\x4c\xe0\x95\x88\xb8\x5e\x21\x60\x2a\xf4\xbd\x75\x84\xec\x62\x4e\xe3\x4a\x7e\xc6\x0d\xdb\x84\x52\x1a\xf6\x03\x47\x40\x87\x2f\x38\x25\xd0\x5c\x0e\x52\xfa\x23\xd9\xaf\x68\xf3\x19\x1f\x64\x8f\x44\xa1\xb0\x6d\x99\x82\x67\x66\xa4\x82\xf3\x3e\xe1\x0c\xbd\x6c\xef\x7b\x74\xeb\x0d\x37\x3a\x33\xa0\xe3\x98\xeb\xa5\xd0\x27\x02\xd7\x27\x4e\x5c\x76\xcf\x7f\x2f\xbd\xee\xa6\xb4\x4e\x17\x07\xd9\x69\xcd\xfa\xb4\x88\x92\x01\x42\x66\xfd\x41\xbd\xa9\x5c\xe3\x84\x61\xe0\x6a\xdc\x3c\x78\x94\xc2\xd5\xe0\xdb\xdc\x84\x11\x78\xfc\x88\xfa\xee\x83\x98\x89\x78\xd8\xe0\x61\x7a\x74\x9b\x22\xfe\x4f\xa0\xfd\x72\xec\xd8\x40\x91\xec\xa1\x12\x8b\x2d\xb3\x4a\x6f\xb4\x88\x4f\x66\x65\xec\xe7\x29\x8b\xce\x71\x80\xaf\x2f\xd8\xdc\x92\x2c\xe4\x42\xca\x37\xe4\xf7\x8b\x9a\x8c\x49\x5c\x5f\xf0\x67\xc2\xf3\x55\xcd\x3c\x0b\x01\x1a\xe1\x92\xbe\x43\xd4\x6e\x7b\xc0\x4a\x42\xe6\xff\xec\xc9\x98\x09\x81\xab\x58\x54\x5c\x5f\xd0\x58\xfd\xbc\x34\x2e\x50\x2b\xa9\xff\xba\xb6\x68\x22\x0a\xad\x9c\x83\x13\xfd\x6d\xfb\x3a\x6d\x92\x43\x62\x1b\xa4\xc5\xaf\x8c\x50\x2a\x40\x20\x35\x2a\xeb\xec\x73\xc7\xe4\x3f\x7b\x3e\x66\x0e\x54\x08\xf1\x42\xfa\xd9\x1e\x18\xa1\x01\xa9\x31\x33\xd5\x69\x1a\x69\x9a\xa4\xea\x10\x05\x9e\x54\xd8\xa6\xf4\x35\xa8\x63\x71\xf9\x36\x99\x16\xd4\x5f\xef\x2b\x52\x64\xfe\x1e\x3e\xdb\x47\xbe\xb0\x02\xa5\x40\x99\xd8\x76\x8f\x3c\x4b\x38\xf2\x35\x36\xdf\x13\x63\xab\xaf\x0b\xec\x21\x0a\x2c\x22\xf4\x14\x32\x44\x5b\x4c\x7e\x80\xbd\xe8\xfc\x06\x22\xdb\x9f\x1d\x39\xf5\xa0\x26\x72\xd4\x6c\x22\x77\xf9\x6a\x0d\x2e\xdd\x3a\x6b\x26\x58\x5e\x19\xf7\x4d\xd4\x99\x4d\x2e\x2a\xc5\x2d\x8e\xf0\xe2\x6d\x09\x5e\x64\xc6\x4c\x0e\x6f\xd0\xc2\x8e\x8b\x2b\x05\xac\x58\x83\xfc\x70\x4f\x7f\xa5\xae\xdd\x94\xef\x08\x2f\x19\xa9\x8b\x84\x78\x3e\xf1\x83\x04\x52\x9f\xbd\xe8\x69\x65\xfe\xd0\x4c\x3d\xfe\xca\x49\x61\x61\x46\x2b\x95\xc0\x25\x1e\x6f\x69\x65\xdf\x1d\xa2\xe7\x96\x41\xc9\x86\x49\x4c\xf8\xc6\x22\x39\x5b\x21\x3a\xa2\x24\xfc\xfc\x0b\x4a\x3f\xcf\x47\x2c\xb6\x55\xbf\xf5\x45\xd8\x6b\x3e\x23\x55\x71\x36\x7e\x4e\xfb\x92\x2a\xa6\x55\x47\xc4\xf3\xbb\xb7\xa5\xe0\x3e\xbc\x17\xb3\x72\x9f\xdc\xd0\x9d\xa8\xda\xcc\x24\x36\x36\x55\xfb\x2b\xa7\x37\x3f\x09\x3f\xa2\xd1\x72\x2b\xc4\x0d\xfc\x58\xab\x22\x53\x18\xa9\x4d\x19\xc1\xa5\x96\xe7\x43\xeb\x4e\x0c\x52\x8f\x0c\x5a\xe4\x4f\xe6\xa3\x6e\xfa\x0d\x71\x2d\x26\xe9\x87\x90\x99\x76\x2c\x65\x43\x1c\xc0\xd6\xcc\xcd\x38\xae\x81\xe8\x78\x6d\x13\x5b\x55\x0e\xd4\x8a\x14\x45\xc2\x94\xdf\xc4\xc7\x9f\xd4\xd0\x40\xc8\xf1\x84\x40\x51\x9f\x62\xfa\xc4\xa8\x22\xe2\xe2\x3a\x2e\x14\x30\xeb\x81\xb3\x98\x1d\xd0\x4b\x51\xce\xa2\x5c\x81\x36\xb3\xc3\x85\xd2\xac\x18\x54\x20\x49\xfa\x60\xe2\x85\xda\x9a\xaa\x61\xcf\x27\x42\x8c\x0c\xa6\x98\x3b\x47\x9c\xa7\x0e\x83\x78\xe0\xcd\x77\x84\x37\xdc\x23\xd3\x6e\x9b\x94\xec\x7c\x31\x4a\xfd\x04\x2c\x23\x7b\xbc\xa0\x58\xb7\x44\x1f\x59\x24\x22\x4d\xda\x23\x90\xa5\xd1\x71\x81\x91\x13\x63\x11\x06\xf5\x97\x2f\xd4\xc2\x3c\x11\x59\xdf\x6f\x44\xf2\xb6\xac\x66\xab\x05\x7f\x8c\xe2\x96\x8c\x4c\xb1\xfa\x5a\x9e\xd0\x30\xb5\xa8\x52\x45\xa4\xe4\xc6\x85\xcc\x7b\x5b\x87\x88\x83\x94\xf9\x44\xe1\x9b\xfd\xf1\x4d\x58\xb5\x55\x87\xfa\x10\xdd\x73\xb7\xce\x95\x2f\x78\xfa\xb4\xcb\xe2\x29\x64\xd1\x18\xaa\xb4\x49\x68\xd9\xc3\x8e\x03\x6d\x8b\x6f\x89\xcc\x7c\x79\xf4\xd9\xd0\x07\xff\xe9\x76\xe1\x9d\x8a\xdc\xb2\x52\xb4\x64\xb6\x3c\xaa\xf4\x03\xa3\x73\x15\xe5\x3b\xc2\x2b\x1d\x6d\x1e\x4c\x9d\x98\x2e\x73\xcb\xeb\xa2\xec\x06\x74\xff\xa5\xcb\x15\xce\x3c\xb6\xb8\x77\xca\x81\x35\x9a\xb4\x07\x72\x3b\x91\x96\xab\x67\x6f\xd4\xe7\xa1\x9c\x10\x1b\x43\x19\xfd\xf5\xf0\x2d\x05\xa1\x58\x7c\xe0\xd5\x41\x2a\x6b\x5e\xf0\x70\x7f\x32\x0e\x1e\xe1\x92\xc0\x25\x54\x9d\x16\x2c\x7e\xfa\xdc\xe4\xd7\x2f\xe3\xcc\xf6\x6f\x85\x0a\x62\xd1\x29\x4f\x6d\x6f\x6b\x6a\x3e\x6c\x1e\xa8\x80\xcd\xa2\xd5\xce\xe3\xf6\x52\xad\xbe\xe2\xfa\x56\xb0\x45\xf2\xdb\x9b\x7a\x84\x45\x3f\x81\xa9\x66\x9e\x9e\x97\x96\xd0\x88\x8a\x46\xcc\x85\xae\x7a\x42\x7e\x9d\xf3\x9c\x0e\x68\x26\x35\xe4\x63\x47\xc8\x42\x1d\xd2\x24\x5f\xb9\xe4\xbe\xf8\xa2\x63\xa3\x93\xcc\xbb\x8c\x3c\x55\x97\xf9\xb0\x8e\x78\x29\x62\x37\x56\x0d\xcc\xad\x3b\xa4\x86\x4d\x8c\x2c\x02\x68\xc6\x0f\x76\x37\x4f\xfc\x89\x1b\x24\xd4\x3b\x6f\x6c\x1a\xfd\x42\x10\x2a\x36\x4f\x3c\x73\xf3\x76\x8f\x90\xdd\x83\x26\xdc\x62\xe6\x7b\x87\xe5\xd3\xde\x18\x50\xa8\xa0\xfa\x03\xaa\x3b\xa6\x6e\x34\xa9\x36\x08\x63\xb9\x2b\x03\xec\xfb\xd8\x51\x8e\xc3\xa5\xbd\x74\x54\xbc\x4f\x2a\xd1\x8b\x12\x5c\x89\x3b\x1c\x45\x1d\x29\x00\xc7\xdf\x57\xef\xd4\xf1\xba\x81\x6f\x27\x7e\x0c\xff\xed\xa4\x1f\xf8\x25\xb4\xca\x0d\x3a\xa2\xc5\x94\x6d\x96\xfd\x8a\xaa\x69\x88\x55\x7c\x69\x3c\xb5\x33\x1d\xce\x4a\x0e\x76\xf5\x76\xc1\xba\x87\x34\x49\x7f\x5a\x77\xf8\x44\x58\x66\x32\xe7\xac\x86\x0a\xbe\x46\x1b\x82\x9f\xe4\x1f\x97\x49\x81\x69\xa3\x4a\x95\x50\x37\x66\x20\x66\x9e\xd9\x91\x2c\x04\x40\xd0\xc7\xfb\xe1\xe8\xc2\x71\xea\x84\xfd\xff\xd4\x67\xc8\x9c\xed\x93\xb4\x7c\x30\x37\x74\xc9\xb6\xf5\x4d\xaf\x62\x93\x67\xbc\xc8\xb5\x7a\x1a\x35\x65\x5f\x78\x49\x12\x77\xb9\x87\x90\x7e\xf6\xaf\xbb\x5f\x13\xf9\x23\x35\xec\xc6\x28\x97\xd9\x4f\x34\x15\x7c\x75\xf1\xcc\x33\xf9\x56\xc5\x99\x0b\x23\x07\x40\x8c\x99\xd7\xf7\x0f\x8a\x2f\xb8\x86\x12\x72\xe0\x5b\x6b\x75\xb1\x75\xe4\x73\x59\x06\xd1\x46\x0f\xd7\x1e\xd0\x55\x38\x71\x22\x58\xf4\x4b\xa5\x53\x0f\x1c\x68\xa1\x56\x97\x5b\xbf\x5a\xa2\x11\x0a\x30\x62\xf4\x2a\x38\xda\x13\x63\xd9\xf9\x4d\x57\xee\x25\x95\xf5\xce\x6d\x1a\xd1\xd8\x24\x3d\x48\x43\x67\x73\xd3\x94\x0e\x91\xe7\xdb\x60\x49\x76\xd5\x4e\x29\xd0\x44\xf9\x2c\xf7\x5f\x34\xe7\x18\x07\x23\x01\x11\x37\x7e\x36\x11\x32\xd5\x6a\x2b\x77\x31\xba\xf9\x4e\xd9\xf0\xa9\x62\x17\x39\xc2\xb5\xe6\x3e\x09\x10\x61\xbe\xd3\xb4\x0a\xc6\xbc\xd0\x24\x33\x54\x24\x52\x99\x39\xfb\x97\x6d\xe9\x97\x48\x2a\xd5\x44\xc4\xd4\x58\xb3\x41\x7e\x27\x87\x79\x08\xb8\xe9\xb0\x15\xb1\x18\xa9\x10\xda\x9f\x60\x25\xa3\x2b\xaf\x91\xef\x08\xc7\x4c\x50\x8c\x09\x9a\x61\xc3\x47\x3f\x48\xb7\xe2\x39\x46\x84\xef\x96\x54\x32\xf8\xb7\xfb\x14\x30\x09\xc3\xd4\x34\x83\xaa\x68\x4e\x7d\x71\xa2\x62\x28\x1c\xb0\x92\x83\x78\x7b\xe8\xea\xf7\x9b\x76\xb3\x89\x99\x2b\xc5\x00\x32\x7f\x6a\x13\x6d\xe9\xf6\xc9\xb3\xa6\xb7\xe5\xa3\xcf\xea\x3a\xa9\xb1\xd8\x70\x14\x21\xe3\xe6\x5d\x71\xce\xf9\x6a\x1e\x57\x14\xa8\x09\xde\x4c\xec\xce\xd9\x45\x39\xd3\x9d\xd2\x96\xb7\x29\x58\xe6\xcf\xbb\x2f\x5d\x90\x4e\x9b\x25\x38\x3d\x0f\x4a\x23\x0e\x64\x07\xb2\x41\xf1\xbf\x8f\xc8\x84\xd5\x46\xfc\x38\x5e\xb2\x47\x1b\xc1\xda\x88\x80\x6a\x12\xcf\x14\xdb\xc5\x3b\xa0\xc5\x22\x76\x79\xe1\xf8\xc3\x77\x9a\x26\x04\x18\x49\x0f\xb5\xec\x6d\xbd\x2e\xd1\x72\xcf\x12\xad\xa1\x2e\xe1\x7e\x99\x0e\xcf\x1f\x1b\xaf\x00\x1c\x70\x02\xf1\x7b\xfc\x35\xc9\x92\x32\x49\x95\x11\xe4\x36\x19\x36\x66\x9f\x3d\xa6\xab\xb1\x15\x88\x8b\x7d\x81\x17\x9b\xb4\x41\x43\xcf\x14\x68\x2d\xee\xb3\x18\x9f\x56\xd4\x38\x10\x63\xe0\x50\x18\x2e\xbc\x6f\xa4\x3a\x27\xac\x06\xa0\xf7\x92\x20\x67\x33\x2f\x9d\x69\x22\x4c\x96\x18\xaa\x88\x55\xfc\xa9\x76\x89\x48\xe5\xc1\x41\x49\x5d\x42\xc5\x16\x91\xcf\x3b\x01\x72\x1c\x5d\xe8\xcc\x59\xe9\x98\x1e\x15\xaf\x68\x92\xda\x85\xcb\x5c\xa7\xa1\x0c\x1c\x2e\xa3\xe4\x08\xfc\xce\xc2\xd9\x32\x5d\xad\x52\x3f\x1e\x45\x84\x2f\x1d\x85\xf2\x11\x6f\xe2\x16\x3c\x3c\xa5\xfb\xa7\xa3\xc2\x2c\x18\x83\xa5\xdb\xb5\x73\x54\x93\xb3\x32\x72\x3d\x68\xef\xbe\x3d\x41\xc9\x4f\xff\x3f\xbe\xde\x3e\x4e\x8a\xe2\xce\x1f\x77\x1e\x7c\x08\x41\xe4\x61\x79\x54\x11\x51\x51\x81\x59\x97\x65\x79\x14\x8d\x3c\x8a\x88\xec\x06\x88\x31\x68\x0c\x35\xdd\x35\xd3\xb5\xd3\xdd\xd5\x56\x77\xcf\x30\x2b\xe7\x11\x45\x42\xf8\x12\xe5\x8c\x31\x9e\x21\xc6\x18\xcf\x53\x8f\x23\xc4\xe3\x08\x12\xcf\x18\x42\x3c\x62\x0c\x41\x25\xc4\xe3\x0c\x31\xc6\x33\x1c\x67\x8c\xf1\x88\x21\xc6\xed\xfc\x5e\xfd\xa9\xea\xae\xea\x1a\xee\xe7\x9f\x08\xbb\x33\xdd\x55\x9f\xc7\xf7\x03\x31\x2c\x98\x30\xdc\xab\xac\x4a\x3d\x6a\x13\x03\x73\xe3\xbb\x5f\x4c\xd7\xb7\xd9\xa9\x24\x56\xfe\xcb\x1f\x68\x5b\x54\xc4\xb0\x10\x68\x2d\x2c\x50\x8a\x51\xc3\x46\xbe\x9f\x14\xda\xf9\x6b\x34\x5b\x1d\x5a\xe1\x8e\xc8\xd9\x03\x70\xd7\xd8\x04\x4d\xef\x52\x23\x14\x6b\xc8\x15\x83\xb4\xf9\x27\xf6\x8d\x30\x81\x6d\x0d\xd9\xa0\x2c\x6e\x43\x56\xc7\x5c\x3d\x74\xf1\x4d\x23\x94\xf8\x53\x57\xd3\xe0\x8f\x87\x4a\x6a\x94\x5d\x69\xf9\x08\xeb\x4e\xa6\x1b\xc1\x19\x20\xd6\x94\xff\x91\xee\x47\xcd\xa8\x43\x83\x44\xae\x79\xe1\x83\xba\x0c\x55\xb5\x6a\xa7\x70\x84\xe2\xad\xc2\xb1\xa5\x73\xf2\xcc\x8e\x8e\x92\x1f\x84\xa6\x98\xa3\x4c\x17\xcb\x63\x13\x39\xc0\xc3\x8b\x4b\xb8\x9e\xcb\x1b\xa7\x5e\x7b\x9c\x6a\x06\x37\xe6\x4d\xfe\x03\x60\xe7\xc9\x87\xf5\x9b\x0f\x68\xd3\xac\x2b\x3a\xc5\x49\x7e\x7c\xa0\x56\x58\x86\x81\xd0\x72\x87\xc7\xf5\xa6\x50\xd2\xb7\xb8\x19\xce\xc7\x9e\xca\xc6\x83\x3e\x8c\x6c\x40\xb3\xf3\xbc\xf9\xe6\x6b\xe7\x24\x41\x0d\x0c\x09\xe0\xeb\x3c\xaf\x4c\xdd\x51\xc3\x24\x4d\x80\xb2\x17\x9c\xcd\xe9\xe3\x14\x7e\x2b\xe6\x48\xa5\xb3\x0a\x30\x23\x34\x31\xdc\x2e\xac\x10\x16\x42\x9f\x72\xf9\xfe\x8d\x1f\x9e\xe8\xce\x13\xda\x0b\x88\x4f\x2a\xe1\x7a\xe7\xd1\x4f\xb4\x9a\xb8\x82\x11\x13\x5d\x76\xf1\x9e\x75\x72\xa2\xc3\xb0\x1f\xd0\x8c\xee\x50\xe1\x92\x83\x32\x40\xa7\x66\x4d\x71\x3a\x87\x87\x69\xbd\x9f\x0d\x7a\x7e\x5c\x35\xbb\x65\x86\x5d\x17\x33\xcd\xdc\xed\x81\xc7\xb5\xfe\x00\xa7\x7b\xbe\x1e\x6e\x7c\x00\x4d\x29\xf6\x83\x12\x43\xae\x48\x7d\xb3\x07\x8e\xd5\x53\x0e\xa8\x69\xa2\x72\xe2\x2e\x98\x7b\x6b\xed\xd9\xe2\x49\x13\x03\x2e\xec\xcb\x4b\x5b\xe6\xbf\x02\x13\x90\x1b\xd3\x23\xd5\x14\xae\x00\x00\xfe\xd9\x0f\x0d\x53\xd0\x06\x8c\xa1\x00\xd0\xe5\xf9\xcf\x8d\xd1\xd6\x28\xa1\xef\x63\xe2\xc6\x61\x56\xb6\x84\xbf\xde\x97\x8e\x88\x50\xfc\xde\xce\xda\x90\xfe\xf8\x99\x53\x41\x5b\xba\x43\xd8\xef\xf9\xf8\xb6\x90\xab\xd1\xe4\x86\x2d\x93\xf3\x76\x8f\x61\x93\x18\x59\xb1\xf0\x7f\x19\x2c\x39\x0c\x88\x28\x6b\xa4\xfe\x42\x69\x0e\x1f\x29\x5f\x8b\xec\x32\x43\x24\x50\x9c\x13\x72\x13\x34\x6d\xde\x3a\xa1\x36\x97\x8c\x86\x88\xf4\x47\x85\x20\x54\xa6\xa1\xcd\xf9\x36\xfb\x1f\xe5\x03\xa6\x6b\x17\x2e\x5b\x78\xa3\x30\x9f\x8f\xde\x18\xc0\x4b\xa3\x69\xb3\xa6\x94\xba\xa3\xa9\xbd\x9a\xce\x41\x87\x30\x8c\xbf\xe8\x11\xcd\xea\xa9\xbd\xdc\x8e\xda\xc5\x4b\xcf\xe6\x3b\xff\x90\x8e\x7d\xe1\xce\x3b\x09\xc4\x20\xff\xe4\xc5\xe9\x0e\xcf\x29\xa7\x78\xaf\x67\xee\x1f\xa5\xbd\x48\x56\x4b\x84\xf7\x0a\x3b\x37\xa9\x40\x02\x3e\xc9\x8a\x46\x0e\x48\x2b\x23\xe2\xea\x64\xbc\xfe\xfc\x3f\x0e\xd6\x26\x0d\x60\x7a\xa7\x94\x6b\x0b\x64\x8f\x6e\x32\xd4\x80\x7b\xff\xc6\x1c\x39\x35\xf1\x03\xec\x59\xea\x78\x31\x77\xe3\x2e\x79\x55\x5d\x5a\xa7\xb5\xb0\x0f\x68\x17\xf1\xcb\xff\xd8\x1e\xed\xda\x85\x60\x0e\x3d\xb9\xd4\x1d\xfd\xec\x2d\x4d\xbd\x8c\xeb\xf7\xf1\xae\x69\xe3\xb1\xf4\x69\x04\x40\x29\x04\xf6\xc6\xef\x96\xa6\xe7\xc2\x21\x19\xfb\xd4\xdc\x5c\x9d\xab\x86\x71\x4d\x18\x4a\xbc\x3a\x50\xab\x50\x91\x51\x8b\x63\x69\x82\xbb\xba\xfc\xa4\xaa\xd0\xd5\xb4\x38\x6c\xae\x70\x72\x8c\x36\xfe\xb3\xa8\xdb\x4c\xfe\xcd\x95\x6b\xf8\x8d\xb3\xa9\x51\xe3\x99\x2b\xb8\x5a\x97\xac\x8d\xdb\x4a\x9c\x32\x38\x72\xa5\x65\xaa\xe4\x4b\xe2\x1b\x94\xeb\x3c\x63\x98\x5a\x20\x78\x98\x71\xc6\xc0\xeb\x8f\x2b\x66\x33\x2d\x94\xc9\xc2\xa4\x37\x94\x6a\x9d\x78\xd8\xe6\x9a\xf2\xb9\xab\xde\x4c\x5f\x7f\x85\xb4\xa6\xad\x5a\x5d\x71\x00\x33\x90\x8d\x83\x80\x7b\x6e\xfe\xe4\x48\xda\x1b\x61\x27\x25\x90\xaf\xef\x55\xb8\x18\xc4\xa8\xe1\x04\x87\x5d\x5c\x6a\xa6\xf7\xdc\xe3\xcb\xe5\x61\x1d\x32\xc5\x96\x6d\xe4\x88\xd1\xd6\x7d\x03\x5b\x77\xf0\xbe\x2f\x64\xaf\xfb\xe2\x7f\xf8\xfb\xe5\x4a\x7c\x75\xca\x0c\x19\xca\xfc\x3e\xb7\x41\x33\xb1\x80\x2d\x83\xc8\xaa\x85\x07\xb4\x81\xcb\x94\x8e\xf6\x69\xfc\x6e\x16\x72\xf5\xec\x5b\xef\x65\xed\x99\x76\xf9\xf4\xd9\xf2\x01\x12\xd7\x0f\x10\x38\x29\xf7\xe7\x8f\xef\x56\x80\xa5\xb8\xaa\xda\xdd\x17\x57\x7a\xd9\xc4\xe9\xd2\x44\x33\x63\xd5\x3b\x69\xb5\xe0\x1a\x7a\xab\x1c\xdd\xf5\x82\x6e\x37\x0a\x93\xe4\x38\x2f\xf5\x0d\xd0\xe7\x5f\x81\x61\x61\x0d\xbd\xff\xe3\x8b\xf9\x12\xac\x07\x07\xea\xc7\x99\xfc\xa2\xe2\x15\xea\xa0\xaa\xa8\xa1\xcf\x6b\xd7\x08\xf8\xc2\xc6\x23\xd9\xb2\x4c\x3c\x30\x2c\x15\x8a\x52\xa4\xeb\x8f\x6e\xcb\x3e\x4b\x8a\x02\x8b\x03\x58\xe6\x28\xc3\xae\x32\xb6\xb0\x0d\x0f\xf8\xef\xd6\xf1\x22\xac\x87\xd1\x72\xa2\xfd\x70\xe8\x98\xa6\xc3\x4a\x43\x46\x7c\xc5\xa7\xa7\x73\xb7\x5c\x87\xdc\x86\x9a\x3e\xf8\xc0\x7e\xfb\x0c\x4d\x0a\x08\x19\x96\x7f\x0a\x61\xb4\xfe\xfc\x53\x3b\xd3\xd3\x5d\x27\x2d\x73\xa2\xc2\x55\x27\xd2\x43\x69\x01\xf7\x34\xff\xdb\x79\x5a\xa9\x33\x2d\xe1\xa7\x0f\x61\xaa\xbb\x27\x47\xc4\xc2\x35\x3d\xac\xec\xab\x31\xe2\xd8\xa9\xbd\x5b\x35\xb4\x2f\xd7\xdb\x16\x74\xb0\x27\x75\x69\x58\xe8\x38\x84\xc7\xd2\x8a\x03\xba\x90\x37\x40\xc6\x31\x50\xec\xa0\xf6\x1b\x7a\x93\x52\x5d\x5b\xd4\xc5\x25\x1f\xaf\x89\x3f\xfc\xc1\x45\x42\x68\x10\x01\x05\x9e\xb3\xdf\x96\xeb\x06\xac\xbc\x1a\x50\x9d\x87\xfe\xa1\x43\x5e\xa8\xc0\x62\x34\xac\x5a\x34\xd1\xc7\x88\xba\x4f\x28\x2e\x03\xca\x58\xac\xb0\x63\xb3\x6c\x86\x85\x11\x5a\xe9\x3a\xfe\x4b\xcf\x3c\xd8\x82\xca\xe7\x85\xad\xf8\x50\xeb\x7a\x14\xe0\x31\xf7\x15\x8c\x03\xbc\xe6\x3b\x54\x01\xf7\x01\x51\x86\xfc\x60\x73\x9b\x44\xd4\x29\xa0\xc4\xe2\xf5\x5d\xea\x46\xb1\x42\x59\x12\x48\xfe\x6e\xbd\x66\xdb\x44\x19\x9e\xb4\x8c\xf2\xb0\xf7\xf5\xd7\x95\x70\x68\xa3\x26\xad\x54\x20\x4e\xfb\xed\x6d\xca\xdb\x0c\x02\xcc\xb8\xd2\x56\xee\xae\x0f\xf9\x78\x70\xae\xeb\x0a\x99\xdd\xe4\xb2\x1d\x7d\x36\x7b\x23\x7b\xa9\xe5\xfa\x5c\x75\x5d\xfe\xa5\xa7\x98\xd2\x7a\x85\x2e\x30\x8b\xe3\x1a\xf4\xd7\x5a\x1a\xb2\x68\x23\x51\x93\x3f\xfd\x1d\xf9\x7c\x81\xb9\x66\x92\x24\x07\xfc\xcf\x8d\x8a\x5d\x02\x71\x70\x5c\x9e\x40\xcb\x5d\xec\x78\x43\x5f\x9f\x05\x98\xd5\x09\x6e\x24\x3a\x8e\xcb\x15\xae\xac\x17\x96\x6d\x62\xa4\x7a\xc9\xbb\xb2\xcf\xab\x17\x55\xab\x49\xb9\x59\xcc\x69\xa5\x7b\xdc\x83\xf9\xc0\x66\xe7\xed\xca\xf5\x91\x9c\x81\x56\x19\x81\x2f\xf0\xdb\xe3\xad\xda\xdd\x34\x4c\xca\xab\x62\xf9\x2c\x55\xe8\x2e\x20\x3e\x94\xe5\x02\x11\x3d\x79\x89\x46\x44\x41\x8c\xd1\x46\xd2\x57\x90\x7d\xe3\x54\x28\x55\x95\xb8\xa4\x55\x24\x60\xfc\x9d\x72\xb7\x38\xa3\x3d\xae\x5c\x73\x3f\x76\x47\xa9\xf3\x1b\xdf\x60\xc4\x4b\xc5\xea\xc6\x72\xb9\xca\xd2\x0a\xea\x18\x16\x52\xd0\x80\xb9\x1f\x3e\xae\xcf\x31\x1c\xc4\x6a\x49\x90\x8a\xbc\x3b\x35\xc5\x9b\x50\x98\x9f\xfd\x7a\xbf\xe4\x39\x30\x29\x7f\x14\x3d\x73\x87\x26\xf4\x6c\x87\xc0\x4a\xe4\x81\xe6\x33\x4f\xe8\x7a\x29\xd4\xe3\xd8\x0f\x00\xce\xcd\xd1\xcc\x4a\xf8\x50\x85\x2f\xcf\x7e\xa1\x29\x78\x32\x1a\x06\xc4\x05\xba\x63\xf4\x5f\x5b\x25\x02\xd5\x13\x03\xce\xdb\x5e\x97\xc3\x9f\x40\x22\x09\xa2\x77\x05\x00\x09\x0e\x88\x0f\x74\x8e\x68\x4b\x39\x1d\x15\x1a\x04\xee\xca\x87\xbb\x15\x8e\x38\x09\x90\x89\x61\xfd\xf6\xcd\x79\xbc\xe9\x83\xff\xba\xfb\x73\x87\x02\x85\xcf\x36\xb5\xa3\x0b\xf0\xcc\x9b\x95\xb1\x8a\x61\x11\xcc\xbd\xe7\xde\xdc\x26\x73\x69\xc0\x88\x52\xe3\x47\x47\xb5\xc9\x86\xef\x20\xdb\x4e\xe1\x81\xbf\x17\x36\xb8\x36\xa9\x00\x3b\x3f\x77\xec\x0c\xd1\x06\x53\xdb\x46\x20\x4d\x37\x7d\x8b\x26\x5e\x4d\x1c\xbe\xaf\xd4\xc5\xb4\xfe\xdf\x5a\x15\xc4\x2e\xb6\x5e\x85\xbe\x95\x43\x94\x16\x84\x3a\x5e\x1c\xb1\xbe\xba\x34\x9b\x88\xcc\x30\x71\x86\xd3\xcb\xe8\x75\xef\xf0\xa7\x9f\x31\x5e\xe8\x53\x0e\x28\x08\xd5\xe5\xce\xee\xd1\x03\x27\x5f\x9d\x88\x71\x54\xee\xaf\xdb\x35\x13\xd2\xb8\x8a\x0b\xb9\x61\x59\xee\x9a\x1d\x67\x2b\xd4\x93\x52\x77\x74\xb9\xf2\xe4\xcb\x21\x83\x8e\x7d\xcd\x07\x89\xec\x7d\xc0\x25\x73\xfa\x73\xdf\x1f\x27\x1a\x2e\x8b\x32\x80\x6e\x46\xb4\x4d\xb1\x49\x75\x03\x62\x52\x8e\x1c\x39\x69\x2a\xee\x01\xa5\xce\xf8\x4b\xcc\x99\x97\x96\xd8\x65\xa8\x7d\x52\x38\xae\xa1\x0d\xa6\x85\x4e\x0a\x7f\x3a\xe9\xdf\x7a\xed\x84\xa6\x06\x49\x85\x43\x77\x7f\xe1\xe1\x39\x9a\xb6\x27\x18\x8e\xc3\x57\x1d\xf9\xa2\xae\xdc\xea\x61\x96\xea\xe1\xe6\xe7\xdc\x09\x8f\xb1\x34\x5f\xb8\x89\xeb\x79\x7f\xcc\x5a\xb9\xe8\xf0\xfc\xa6\x61\x51\xe4\x22\xbb\x09\x60\x8b\xe2\xa5\x73\xc6\xb6\x86\x50\x60\x94\xb3\x66\xc2\xfc\x3f\xd8\xa2\xdb\x0d\x64\x40\x11\x10\xde\xb8\x47\xce\xf7\xdc\x66\x50\xea\x98\x56\xea\xe8\x2a\xcd\x82\x10\x64\xec\xd6\x76\xd1\xbe\x83\x03\x0d\x6a\xb8\xe3\x7d\x7e\x9a\x1b\x16\xe1\xaa\x29\x67\x6f\x97\x27\xc5\xa9\x43\xa0\x3f\xf3\x85\x96\xc1\xb2\xef\x11\x86\x8c\xa4\xe5\xc8\x7d\x46\xb7\x00\xb4\x51\x7b\xb2\xd9\x8f\x93\xf0\xa8\x3b\x85\xee\x06\x0e\xf8\x62\xf7\xed\x6d\x3a\x35\x00\xf9\x89\x59\x57\x8e\xdd\x2a\x7c\x86\x89\x2a\x77\xf1\xc0\x7e\xdd\xf0\x10\x07\xb6\xd0\x4f\xb8\xe3\x16\x99\x69\x4c\xda\x70\x39\xb9\x2d\xfe\xcd\x93\x9f\x6b\xb5\xe4\xb3\x49\xdc\xa6\x82\x0a\xe8\x9f\x77\x65\x3c\x97\x30\xf3\x11\x13\x72\x8d\x77\x3f\x2f\x13\x1f\x75\xf1\x1a\xe2\x94\x91\x0b\x8d\xe3\xc0\xb7\x87\x29\x8b\x15\x37\x60\x60\x20\x11\xbd\xdc\xab\x8c\x27\xa9\xe9\xf2\x1e\x7e\xf3\x38\xf9\xd1\x02\xda\x70\xfd\x54\xcd\xb4\x7f\xb6\xbc\x32\x55\xd4\x87\x4a\xdd\xd1\xf1\x5e\x61\xb1\xed\x0a\x4b\x59\x72\xb2\x45\xe3\xc3\xc7\x89\x40\xf4\x66\x39\x20\xa4\x56\xa0\x14\x2a\xf9\xfa\xd8\x51\x0a\xdc\xa3\xe9\x53\x15\xe3\xff\xcc\x56\x2d\xaa\x83\xf6\x32\xe0\xa8\x22\xe5\xd2\xf5\x42\x95\x5a\x64\xdb\x35\xe8\x38\x18\x9d\x94\xba\xa3\xdf\x2b\x8c\x2e\x52\x47\x6e\x8d\xd6\xe3\x94\xd1\x91\x89\x03\xf0\x08\xbe\xf2\xfc\x08\xb5\xe6\xc3\xb8\xe4\x50\x97\xcb\xa6\xfd\xca\x1c\xad\xb4\x09\x71\x83\x49\xb9\x58\x1b\x4c\xa1\xef\x1e\x2b\xf2\x88\x1d\x56\xab\xc4\x07\x61\x89\xba\x22\x43\x8a\x84\xda\x61\xfe\x89\x6b\x86\xa5\xdf\x46\xa1\x61\x77\xec\xca\xbe\xfc\xb0\x1d\x12\x69\x2a\x27\x7b\x2b\x97\x90\x5a\x36\x77\xf9\xdc\xa5\x2d\x17\xf7\xba\x1d\x72\x1b\x4d\x15\xb5\xb8\xc2\x7f\x8c\xfa\x3f\x38\xe1\x90\x33\xff\xba\x5b\x86\x74\x8a\x6a\x7c\x92\x93\xfb\xde\xfd\x4a\xf5\x6f\x43\x90\xbf\x85\xbf\xea\x85\x73\x4b\xd3\xe7\xc5\x7f\xe5\x8d\x03\x69\x97\xdb\x00\x10\x00\x37\xd7\xac\x8f\x54\x31\x41\x95\x8a\xf2\x41\xce\x5c\xa2\x1a\x17\x02\x55\xe3\xfd\xa2\x8c\xa6\x9d\x93\xbb\x3a\x67\x4c\x9e\xce\x5d\xd4\xae\x14\xf6\x2c\x53\xa6\x71\x82\x75\x5c\xe6\xee\x94\x75\xe9\xb4\xae\x29\xa5\xce\xce\xa9\x53\x41\x78\xa5\x2f\x1b\x4c\xab\x24\xb4\x09\x72\xc9\x24\xee\x32\x9c\xfc\xf6\xa7\x9f\x6f\x59\xae\x79\xd4\xc7\x66\x92\x3f\xbe\xba\x7e\xb0\x3a\x98\xe1\x59\xf7\xf6\xb7\x74\xa9\x69\xbe\xc0\x3d\xd5\x78\x38\x3f\x7e\x7d\x9b\x7a\xcf\x60\x51\xc6\xb7\xe0\x13\xb5\xa6\xc6\xa1\xa1\x1b\x08\x29\xed\xf7\x97\x8d\x48\x9b\x08\x5a\x53\x21\x84\xff\xcf\xce\x6e\xde\x48\x70\x4a\x9e\x61\xe1\x52\xcd\xc2\x8e\x51\x5a\x23\xe9\xf2\x60\xfe\x91\x61\x5a\xdb\xc6\x05\xd9\x3e\x5f\x1e\xa6\x24\xb2\x2a\x23\x76\x33\x6e\xa2\x8f\x2d\x3f\xaf\xa5\x32\x6d\x58\x18\xdb\x09\x7f\xa7\x21\x9c\x60\xae\xab\x2a\xd0\x8f\xe8\x93\xab\xdb\x94\x16\xb0\xc2\x95\x0a\x40\x91\x60\x4e\x5a\x1b\x55\x50\x9c\x28\x5f\xd9\x2f\x03\xf6\x74\x48\x94\xb9\x7c\x9b\xd6\xb8\x07\x0c\x81\x84\x44\x05\xa5\x2a\x8e\xc5\x95\x23\x94\x8b\x14\x9a\x04\xa0\x49\x37\x5f\xad\xff\x4b\x64\x13\x37\x23\x24\xdd\x5f\x2c\xbe\xa6\x13\x1c\x71\x40\xdc\x6a\xea\x15\x76\xb8\x37\x23\x2e\x6c\x90\x0a\xaf\xfc\xe3\x78\x3c\xe3\x29\xad\x09\x41\x76\x85\x9b\x40\xfc\xcf\x44\xcd\x16\x1d\xd5\x10\x0b\x50\xfc\x56\xc5\xc0\x71\xd3\x31\x7e\x86\x41\x0b\x05\xb6\x49\xef\x46\xe7\xb7\xe6\x4f\x8f\xc5\x59\x46\x7c\xcb\x51\x07\x75\x53\x7c\x2f\x6e\x52\xe2\x73\x2a\x5a\xd2\xe2\xd2\xa3\xe9\xc5\x43\xac\x2a\x5a\xd1\x4d\x03\x34\x75\x59\x46\xc0\x40\x53\x2c\x46\x97\xbd\x2b\x74\x88\x08\x0b\x2c\x13\xd4\xef\x73\xdd\x9a\xb6\x05\x37\x4d\x15\xff\xe0\xf6\x47\xd2\xd7\x36\xbd\x04\xa8\xa7\xfc\x03\x4a\x49\x6b\xa5\x04\x81\x2f\x9c\xa5\x12\xc5\x89\x07\x07\x7e\xcc\x7d\x9a\x1b\x24\x75\x3c\xe1\xcf\xc0\x12\x39\x9c\xdc\xf7\x07\xa6\x26\x0a\x48\x85\x4c\x3f\xe6\xf1\xf1\xfd\x7c\x1b\x33\x62\x62\x55\xdf\xf2\x33\xab\xc5\x70\x9e\x72\xa1\x9f\xfe\xdc\xef\x4e\x8c\xca\x82\x06\x02\x92\x88\x7b\x47\x7f\x5e\x9d\x3d\xf9\x84\xf0\x0a\x69\x97\x24\x87\x22\xd0\xd1\x19\x72\x5c\xf1\x6e\x26\x81\xc8\xf9\xd7\x3c\x2a\x33\x61\x05\x01\x73\x5b\xbc\xd8\xf1\x07\x87\x2b\x7c\x07\xdf\x8e\x0b\x51\xde\x58\x1f\x6f\x1f\xa7\xbd\x60\x05\x4e\xc7\x21\x80\xd1\x7f\x8f\xd5\x5c\xa4\xf9\x16\x1f\x6a\xf3\x9f\xce\xd3\x20\x06\x71\xef\xc3\x4b\xbe\x5f\x75\x8e\xd5\xe2\x17\xf6\x43\x07\x7a\x34\x21\xe2\x9a\xbf\x28\x50\x43\x18\x0a\xe2\xef\x36\xf9\x00\x0c\xdc\x6d\xec\x96\x66\xaa\x24\x92\xe1\xcf\x66\x1f\x4e\xe7\x0c\xfe\x70\xb6\xbc\xa4\xd8\x88\x51\xc7\x09\xf9\xd3\xc8\x3d\xf3\x36\x37\x73\x06\x43\xc0\xb3\x4e\x88\x93\x1d\xc6\x1d\x10\xdc\xf3\x05\x4b\x4f\x81\x37\x86\x0c\x73\x68\xb5\x46\xbc\x23\x58\xb8\x34\xfe\x5c\x33\x18\x33\x89\x8d\x3c\x70\xe7\x4c\x7a\xeb\x6b\x5e\x19\xaa\xa2\xcf\x93\x43\x67\xee\x6e\x81\xec\x0b\xf5\x1a\x0e\x3e\x1f\xfa\xa0\x46\x7d\x41\x26\x12\x66\x70\xd7\x3c\x24\x9f\x91\x61\x83\x09\x7f\x7f\xfe\x8b\x65\xfe\xe5\x66\x4e\x87\x5d\xc0\x49\xc5\x0d\x0e\x63\x3b\x99\xd3\xae\x7d\x5e\xa0\x82\x88\x11\x10\xa7\xd4\x1d\xdd\x30\xe0\x6c\xe9\xba\x07\x2f\xe9\x75\x4f\x31\xcd\x0b\x5d\xc2\x6d\xc6\xfb\x0b\xc7\x57\xea\x0b\x55\x30\x58\xe5\xf8\xca\xe1\xe7\xa5\x93\xb8\xde\xb0\xd5\xd4\xf3\xc5\x39\x7a\x8b\x0d\xba\x1b\x86\x38\x18\xb9\x81\xd7\x68\x2b\x7c\x3e\xa1\xe4\x67\xa2\x38\xa3\x5d\x9e\x6d\xc5\x16\x59\x11\x7c\xb1\x71\x55\x20\x24\x72\x97\x1c\x1d\xa1\x8c\x7e\xb0\x59\x95\x53\x87\x9b\x26\xe8\x60\xd8\x90\xc0\xc4\x96\x6b\xc2\xfe\xdb\x5e\x39\x27\xa3\xe0\x22\x1d\xba\x60\x89\x0f\x18\x94\x09\xab\xd3\x90\xd5\x44\x4e\x32\x55\x89\x26\xab\xac\x61\xc4\x82\x0a\x06\x41\x82\x22\x7a\x4e\x44\x2b\x1a\x56\x2a\x9c\xbc\x50\xcc\x1f\x95\xd5\x6a\xe8\x0a\xb9\xa9\xdc\xc3\x4f\x67\xc3\x5e\x99\xd0\x2a\x43\x9e\xd5\xe4\x4d\xff\xdd\xdb\x35\x2b\x1e\xab\x29\xcd\x65\x60\xc0\xfb\xad\x27\x34\x43\x50\xd4\xa4\x4c\x60\x30\xfe\x76\x90\x54\xcc\x77\x48\xa9\x3b\x9a\xf5\x78\xd2\x20\x3a\xb4\xce\x17\xc8\xb9\x87\x5a\x5e\x0e\x71\x31\x13\xab\xd2\xfe\xe2\xc7\xec\x0b\x95\x11\x9c\x89\x1d\x97\x04\x2d\xf0\xaf\xfc\x01\xe5\xe9\x05\x8c\x47\x13\x59\x37\xbd\xba\x6b\x88\xf8\xb5\x7e\xc0\x88\x50\x2f\x2e\xfc\x76\x49\x3a\x26\x5f\x83\x5a\xc0\xde\xc5\x72\x97\x22\x61\x88\x1c\x1f\xd5\xac\x90\x71\xe9\xaf\xa4\xb0\xbe\x76\xa3\x22\x9a\x17\x32\x61\x36\xf8\xe9\x8a\xbe\xe2\xf1\xfd\xf8\x7d\x8a\x7a\xf1\xb1\x97\x78\x1d\x68\x20\x93\x53\x38\x2f\xbd\x4f\xa5\xc8\xd7\xb1\x1b\x60\x80\x66\xdd\xb5\x51\x73\x0a\xe8\x2a\x25\x25\xc9\xde\xb5\xda\x1a\x96\x30\x23\x74\xfc\x20\x4e\x2a\x42\x05\xef\x63\x72\x3d\x65\x64\xbd\x6b\x0a\x7f\xf7\xae\xa6\x36\x65\x13\x30\x45\x95\xb2\xe0\x8f\x3e\xa2\x93\xe7\x0d\x03\x4b\x5c\x51\xd1\xdf\x78\xb6\x44\x3c\xc5\xf1\x6c\xd4\x36\xc1\xb0\x20\xa8\xca\x10\xf8\x75\xe4\x6a\xef\xaa\x32\x7f\x21\x13\xb8\xd4\x97\x8e\x2b\xf3\x59\x54\x4d\x16\x05\x23\x36\xc9\x8b\xdf\xb0\x50\x5c\x3f\xc6\x3f\x78\xe7\xe6\xec\xf1\x8a\x8f\xb9\x60\x79\x7e\xef\xbe\x36\xad\xba\xe3\xce\x82\xdf\x6e\xe3\x1b\xf9\x25\x98\xa9\x24\x9f\xdc\x86\x5b\xb3\x70\x0e\x1b\x53\x8f\xda\x3a\x8f\x73\xe1\xcc\x8c\x5c\x77\xaa\x99\x5c\xf8\xe1\x7e\xc5\xd9\x0e\xec\x19\xa0\xbe\x99\x34\x5d\x61\x38\xdb\x28\x28\x87\x71\x44\x8c\x0e\x0d\xd2\x7b\x86\xdb\x42\xc2\x92\x9a\x32\x77\xf3\x51\xe5\x9d\x73\x91\x6b\x8e\x0c\x2e\x2e\xd5\x06\x1b\x98\x31\x8c\x42\x3b\x50\x69\xdb\xd1\x3b\x03\x34\x04\x26\x23\xe0\xdd\xcb\x29\x34\x90\x62\x2f\xdf\xc3\x27\x8e\x9f\x46\xb6\x8d\x0c\x45\x90\xbc\x68\x8d\x19\x20\x82\x03\xcc\x1b\xb6\x46\x92\xb3\x5e\x0d\xab\x55\xec\x5a\x18\xe4\x5f\x24\xe5\x0c\xbf\x97\x40\x5c\x02\x1c\xdf\x21\xf8\xa4\xaf\xbe\xa9\x80\xfe\x82\x80\xc3\xb2\x72\x37\x9d\xa6\x94\xb1\xc4\xb3\xa9\x23\x4c\x5a\xfe\xee\x4d\x3d\x89\xb9\xc2\xee\x8b\x68\xf2\xe3\x36\x72\xb1\xba\x1d\xcb\x7d\x6d\xa0\xee\x54\xec\x29\xc1\xff\xce\x0f\x54\xe6\x26\xa4\xa3\x5c\xb0\x4b\x91\xf1\xb6\x29\xd7\x1f\xba\xec\x46\xf9\x02\x6b\xc4\xad\x9a\x14\x14\x41\xbf\x7e\x50\x17\x72\x23\x7e\x80\x85\x68\x60\x7f\xfe\xd0\xcc\x04\x31\x20\xe4\x56\xa2\xa7\x57\xf1\x2c\xa6\x98\xc9\x28\x7d\x4b\x58\x63\x88\xb8\x04\x20\x49\x23\x16\xc8\x47\xd4\x4b\x5c\x40\x5c\xf6\x17\x7e\x71\x47\x0b\xb1\xc9\xb0\x92\x84\x9d\xef\x1b\x94\xfd\xbf\xa9\x67\x00\x48\xe8\x75\x3e\x92\xae\xcb\x90\xdc\x97\x44\xbf\xba\x43\x19\xbc\x53\xdb\x0e\x03\xc4\x3b\xa7\xc2\x28\x0d\x26\xd7\x39\xad\xa3\xd4\x40\x41\xb2\x08\xce\x5f\xb2\x6d\xb0\xac\x76\x6c\x0e\x8c\x29\x7c\xe3\x4d\x99\xbf\x19\xf6\x31\x13\xb1\xfa\xce\x81\x6d\xea\x9c\x32\xa0\x41\xd3\x83\x10\xd6\xdd\x33\x12\x34\xa8\x61\x16\x63\x20\x5f\xb1\x53\xff\xe6\x3a\xf9\xd1\x52\x37\x23\x58\x6e\x7d\x4a\x69\xec\x0d\xc4\xcc\xb8\xb7\x79\x71\x50\x8b\xca\x6b\x4d\x38\xfb\x8d\x7e\x45\xb7\x39\x8b\xeb\xcc\xd4\x4a\x35\x77\xf3\x6b\xb2\x28\x75\xe3\xea\xb5\x6d\xbb\xbe\xe8\x44\x86\x28\x9c\xf2\x1b\xc6\xa8\xc9\x90\x70\x10\xf7\xb9\x8a\x90\x37\xd7\x1b\x84\xa1\xc4\xfc\x8a\xa6\x73\xd4\x70\x53\xfe\xd5\x0b\x45\x55\x05\x24\xf1\x7b\xeb\xd3\x28\x9e\xb0\xc0\xe2\x5b\xd4\x6b\x57\xf4\x44\x9f\x79\x22\x8d\x9e\x1e\xcc\x5c\x0a\xb7\xaf\xbf\x40\xfb\x6e\x6e\x8d\x97\x06\x52\x30\x73\x98\xc9\x8f\xdd\x52\x6c\x31\x3e\x36\x2e\xee\x13\x74\x44\x0f\xc6\x9f\x16\x1c\xba\xfe\xe2\x55\x7b\x64\x0d\x92\xf8\xe5\x88\x1a\xe4\xf2\x41\x83\x95\x16\x84\x12\x28\xd3\x3b\x5f\x51\x2c\xdd\xa8\x4f\xeb\x69\xff\x35\x69\xb6\x02\x54\x23\x55\x57\xd8\x85\x6d\xdf\x97\xed\xe9\x01\x0a\x6d\x58\xcd\x53\x6a\xf8\xdc\xfb\xb8\x7c\xd2\x16\xb2\xf9\x93\x7e\x60\x82\x20\x38\x21\x56\xc5\x71\x38\x89\x0e\x1f\x51\x86\xf6\x9e\x87\x11\x2c\xc0\x73\x17\x6f\xd4\x1c\x83\x18\x36\x89\xe0\x56\x7d\xfb\x21\xcd\x08\xb2\x8e\x99\x85\x42\xe1\x5f\x87\xde\xd6\x16\x44\x65\x33\x04\xf3\x14\xd8\xc8\x17\xbb\x0f\x8f\x4e\x94\x1e\x2e\xbd\xb4\xe5\x43\x7f\x62\x4d\x9b\x5c\xed\x2a\xc6\x8f\x3b\x96\xf3\xdb\xd2\x9d\xa8\xc3\x95\xba\xa3\x9f\xcf\x54\x0e\xb8\x45\x6c\x13\x5a\xc4\xf8\x77\x4c\xd4\xb0\xda\xc8\xaf\xf9\xa9\x45\xf3\x3a\x6d\xd8\x4e\x7d\x3f\x85\x24\xde\xc0\x14\x07\xb9\xd0\x29\x0b\x0e\xd8\xee\x47\xb4\xfd\x71\x47\x07\xcf\x84\x2f\x2b\x21\xb0\x97\x72\x0d\x89\x19\x3d\xfa\x92\x2b\x08\x59\x62\x77\x46\xde\x57\x04\x3e\x08\xf3\x21\x5a\x3d\xb5\x4a\x90\x52\x28\xcb\x08\x54\xe7\xce\xe3\x48\x83\xf8\xa2\xd8\x76\x98\x94\x0a\xf1\x07\x3d\xf3\xfd\x21\x0a\x47\xd5\xe7\x1b\xc4\xe2\xc8\x0f\xd3\xd2\x03\xd5\x55\xc4\x54\xb4\x77\x09\x5f\xdf\x24\x0e\x1b\x45\x39\x37\xa8\xe1\x8c\x2b\x4c\xe1\xf0\x32\x8d\xa3\x12\x96\x89\xe2\x16\x70\x42\x69\x20\x91\xef\xe3\xd0\x87\x4a\x39\xba\x63\xa9\x32\xaa\x45\xa1\x6d\x32\xee\xfe\x76\xd5\x18\xdd\x88\x1a\x13\x1b\x4d\x9a\xad\x64\xfe\x27\xb5\x06\xac\xc1\x68\x42\x98\x99\x30\x3e\x5b\x31\xf5\x59\xa1\xc6\x0a\x9a\x77\x9a\x36\xe7\x02\x87\x4c\x03\x31\x6a\x13\x17\x6b\x35\xc6\x51\xc9\x30\xa9\x58\x2d\x90\xe2\xdc\x27\xd6\xc9\xa7\x5a\x25\x22\x92\xe7\x5d\x4b\x0a\x94\x05\x16\xc3\x8d\x96\x22\xf8\x6b\x1f\xf2\xd3\xc9\x65\x69\x38\xdf\x3f\xd7\x74\x25\xa5\xb1\xda\xea\x6f\x7f\xd7\x64\x4d\x9f\x33\xfe\xc9\x7c\x4b\x1c\xfd\x93\x46\x70\xaf\x22\x9f\x6f\x83\x0a\x3f\x7a\x49\xee\x38\xb8\x9b\xb7\x32\x2d\xba\x7c\xa2\xea\x25\x9d\xb0\x49\xe3\xcf\x52\x78\x5b\xd8\x58\x60\xd7\x14\xea\x42\x53\x8f\xa4\x51\xdb\xb0\xe2\x76\x7b\xba\x86\x6e\xf0\x1b\xa4\x12\xd8\x89\x3e\xcf\x37\xb7\x8d\x55\x92\xbd\xe3\x83\x10\x60\xf6\x29\x3c\xa0\x98\x65\xe1\x35\x06\x0b\x0d\x92\x9c\xd7\xe2\x3d\xfb\x5a\x37\xd8\xae\x8f\xa5\x4b\x3c\xdb\x24\x06\xd0\x06\x76\x11\x83\x11\x59\x61\x6b\x47\x1a\xae\xa7\x4c\x99\x0e\x43\x8a\x47\xc4\x0e\x85\x72\xe8\xf1\xed\x27\x55\x8a\x87\x9b\xdc\x8e\xdd\x7a\x95\x4e\x1d\xe1\xf6\x90\x16\xd2\x33\x97\xb7\x78\xe8\xb8\x92\x96\x5d\xb8\xe6\x1a\xe1\xe1\xc4\x21\x10\x7e\x32\x24\xfe\xb3\xa6\xba\x02\x43\x37\x48\xac\x02\x8b\xb4\xed\xc1\xf4\xb1\x82\xbe\x65\x7f\xe1\x8f\x07\x86\x28\x15\x27\xb5\xa1\x18\x2f\x36\xdb\x35\xad\x4e\xe4\xd7\xb0\x6d\xa7\x5e\x50\x79\x27\xd2\xe5\x1f\x1b\xa8\x29\x04\x20\x8a\x5f\x18\xc5\x9f\xd6\xdc\x1b\x16\x2e\xbf\x6e\xfe\xdc\x65\xf1\x9f\x0d\xbf\x5a\xad\x11\x08\x65\x84\x53\x37\x8a\x8b\x6e\x91\x2d\x9a\x4b\xdd\x52\x5c\x58\x73\x1b\xc8\xf8\xc1\xaf\x9f\x2d\x82\x4f\xdc\x5f\xab\xb5\xe7\x4d\xe3\x15\x71\x18\xe1\x9f\xce\x4b\x65\xef\x79\x81\x8b\x9c\xd1\x51\xea\x8e\x5e\x7d\x4f\xcb\xd2\x95\x4a\x82\xef\xc8\x3f\x2a\xe8\x76\xd7\x23\x16\x3f\x0d\x39\x29\x9b\xb8\x58\x71\x61\x84\x5d\x04\x5c\xb5\x29\x96\xb6\x82\x8b\x73\x5f\x90\x6a\x48\xe5\xff\xf3\x29\xf9\x55\x1c\x5a\xb7\x91\x49\x64\x8e\x58\xb1\x2a\xdb\x96\xd4\xe9\x1a\x5e\xbb\x1d\x5c\xa9\x70\xb5\x5b\xf0\x42\xc5\xdb\x1f\x94\xb7\x1e\xf9\x22\x96\xe6\x4a\x7b\x94\xaf\xbf\x06\x0c\x8a\x45\x16\xde\x3a\x51\xfe\xfd\xa9\x42\xe0\x35\xda\xad\x98\x1d\x96\x19\xaa\xf3\xb7\x5c\x6f\x1b\xa3\x6a\x28\x7c\x7a\xc1\xca\x49\xc9\x75\x85\xd2\x7c\x44\x36\xf0\x19\xc8\xb7\x44\x35\xba\xf6\x0c\x8d\x6a\x86\x6a\xd8\x4d\xb0\x09\x4b\xd7\x0d\x13\x69\x1d\xee\x02\x13\x18\xe1\x9b\xc6\xb4\x06\xcb\xcc\x3c\xb9\x30\xef\xe4\x48\xb5\x26\x0c\x48\x3d\x91\xab\x8b\x2a\x37\xca\xef\x2b\x65\x6d\x01\x29\xb6\x3e\x1d\x81\xd4\xac\x44\x57\xa6\xb9\x8a\xdf\xc4\x95\x4c\xd0\x42\x9a\x63\xd3\xbf\x65\xa2\x6a\x72\x5f\xde\x7b\x3c\x31\x5f\x37\x68\xd5\x25\x7d\xe2\x82\x0e\xdd\x2b\x5f\x7f\x15\x78\xb9\x10\x32\x77\x6c\xcc\xf0\xa9\xc3\xf8\x11\x2e\x5b\xc0\xab\x2f\x0b\x33\x5c\x86\x86\xe6\x8a\xf7\x78\x0d\x53\x27\x3e\x29\x73\x7e\xcc\xcc\x83\x8a\x0f\x5d\x6a\x23\xd0\x1d\x3d\x23\x7a\x08\x23\xb4\x13\xd5\xff\x73\x57\x0f\x55\x07\x45\x6b\x7c\xce\x01\x78\x67\x1c\x0f\xe1\x7c\xcb\x08\x3a\x0b\xd1\x2f\xee\xd1\xd4\x01\x0d\x03\x95\xb1\xa6\x6c\xf2\xb2\xc2\x33\xed\x9a\x92\x34\x26\x9f\x7f\x5a\x5f\x6c\x70\xcc\x06\x14\x01\x1f\x9f\x27\xe3\xb4\x4d\x6a\xd8\x26\x16\xa5\x10\x05\xff\x3c\x80\xaf\xb8\xe7\x9a\x0e\x61\xa8\x65\xc5\x5d\xbc\xe8\xb0\x84\x76\x34\xd4\xfb\x34\x73\xb1\xa6\x2c\x1d\x20\x46\xb2\xe2\xe2\x5f\x37\x65\x1a\x33\x71\x1c\x67\x4d\xc8\x70\x32\x7f\x5c\xf8\x78\x76\x6b\xe3\x04\x89\xb1\x65\x36\x4d\x7e\xaf\x53\x82\x46\x28\x00\xf7\x1f\xda\x77\xb6\x84\x93\xc5\xd5\xc0\x57\xde\x3e\x5b\x1c\x32\x5f\x48\x7f\xdd\x2a\x74\xc3\xa7\x03\xb7\xa1\xbb\xbf\x30\x49\xa3\x93\x0b\x1b\xe4\x44\xc0\x3a\xbf\xe1\x11\xd9\xa5\x10\xdf\x0f\x41\x0e\x7e\x6b\x5a\x1e\x9a\xb8\xac\xbc\x85\xaf\xdc\x33\x5c\x6d\x90\xe2\x2e\x55\xb8\x23\x0e\xd8\x2b\xd4\x47\xc0\xb9\xd4\x45\x75\x82\x84\x50\x41\x74\xc7\xd5\x52\xcf\xcd\xae\xc5\xbf\x73\x9a\x06\xcd\xbf\xb4\xc1\x63\x72\x77\x7f\xe1\x85\xdd\x69\x3a\x27\x5e\xab\x59\xdb\xdf\x0c\xbd\x40\x7b\xe1\xc8\x0f\xe2\xb2\xd4\xa8\x61\x57\x00\x0c\x5e\x68\x97\xdb\xd9\x4a\xe8\x9a\x88\xdb\x3e\xc7\xbf\xf8\xfc\x62\x42\x75\x63\xb5\x10\x20\xd8\x2f\xce\xd4\xc0\x86\x40\x13\x4f\x02\xe1\xb1\xc5\xba\x24\xdc\x1a\xf1\x4b\x16\xbd\xa7\x0f\xc1\x18\xf1\x25\xa1\xab\x30\xe9\x7d\x4d\xd7\x38\x64\x18\x85\x02\x71\x73\xe8\x7e\x55\x55\xdf\x24\x75\x62\x0a\x41\xab\xfe\xc2\xed\x97\x69\x6a\x5c\xd8\xc1\x01\x08\xfd\xf4\x29\x67\x68\xd0\xb3\x8a\xc9\x23\x2f\x9f\xf3\xf3\xb4\x49\x63\xaa\x93\x25\xa6\x95\x73\x5f\x94\xff\x26\x40\x20\xb4\x54\xbc\xf7\xe0\x29\x54\x42\x4c\x94\xa6\x82\xdc\xe2\xc7\x35\x21\xba\xf4\xa0\xcf\x7f\xa0\x4d\x19\x37\x98\x6e\xdc\xd5\xc4\xbd\xcf\xe7\x46\xc8\x25\xae\x0b\xd6\x72\xd1\x2a\x05\xff\x63\x61\xc4\x3f\x6f\xf1\x86\x43\x5a\x05\x0c\x3e\xae\xf1\xd3\x87\x01\x9f\xa3\xb8\x06\x32\x8c\xcb\x34\xfe\xc0\xb9\x6f\x3d\x2a\x7f\xba\x25\xba\xf3\x83\xca\x92\xbf\x62\xc6\xd5\x40\xfe\xf7\x4b\x47\xaa\xf3\xd2\x44\x9e\x1a\x5a\x93\x6f\xbc\xd2\x0a\x1e\xc7\xae\x91\x16\x2d\xf9\x5f\xb9\xf2\x0a\xfb\x42\x9f\x28\x7b\x0c\xfb\x39\x94\xa8\x74\x3d\x6d\x51\x40\xec\x2f\xfc\xfd\x40\x0d\x0a\x12\xa0\x20\x14\x95\x76\xfe\x63\x63\x4f\xbd\x14\x94\xb2\x1e\x2f\x7f\x70\xb6\x8a\xbb\xef\x8e\x2a\xbb\xb2\xb7\xa5\x4a\x93\x46\x2a\xf7\xb5\xf1\x1a\x2e\xcb\x82\x52\xbc\x35\x96\xec\x29\x66\x63\x4e\x35\xf0\x4f\xc5\x74\xcd\xaf\x5d\x73\x8e\x32\xf4\x9a\x00\x4b\xa3\xbf\xb4\x9d\x7a\xe3\x48\xa8\x9b\xf0\x29\xc6\xed\xcf\xfe\x15\x0b\x23\xf3\xb6\x10\x31\x20\xdd\x73\xda\xcc\xcc\x17\xf8\x8c\xfa\xba\x04\x54\x09\xb3\x87\xcf\x2d\x50\xb6\x88\x53\x60\x8b\x38\x4a\x6b\x2a\xab\x0c\x63\xae\x2d\x55\xf8\xe1\x5b\x9a\x23\x28\x75\x29\x43\x8c\x33\x73\xa2\xcb\xa7\xeb\x52\xfc\x44\x2e\xef\x3f\xf7\x9c\xe8\xc8\x2d\x8c\x02\xde\xc6\x7d\x3c\x19\xd6\x93\x2a\x31\xe1\xf2\xe5\xbf\xf0\x9c\xc6\x3e\x06\x5d\x2b\xe8\x41\x0f\x5c\x9d\xfd\x8a\xa8\x8c\x0c\x0b\xa9\x73\xbc\xfc\xae\x8b\x5b\x61\x45\xc4\xc4\x0c\x9b\x7c\xb5\xd4\x5f\xd8\xe7\x8d\x51\xb2\x3f\x63\xc4\xcf\xf8\x20\x8e\x5d\xa0\xd1\xac\x5d\x94\x84\xa2\xe2\xb5\x67\x29\xb3\x78\xe4\x38\x7c\x68\x7b\xe6\xf1\x96\xed\x73\x02\x1b\xf8\xee\x7b\xe7\xaa\xd3\x1e\xca\x02\x3f\xab\xa1\xf6\x80\xf6\xa0\x61\x2a\xc1\x4f\x69\x65\xcb\x30\x95\xa3\x89\x44\x87\x5e\xf8\x67\xa5\x73\x33\x68\x23\xae\x8b\xba\xfb\xf3\x97\x8f\xd7\xc8\x25\x7c\xe7\xc8\x59\x6e\xaf\x29\x42\x2d\x86\x8d\x99\xd1\x72\x5f\xee\x1d\xa5\x61\x36\x19\x09\x30\x23\x28\x91\x90\x1e\x3b\x3e\xed\x26\xfb\x70\x2b\x39\xbb\xc7\x93\xcc\x76\xc4\x9c\xd6\xdd\x49\xed\x35\xcd\x90\x16\x55\xf0\x29\x61\x12\x2f\x9d\x14\x73\x00\xcf\xc3\x19\x33\x97\xe2\x4d\xab\xb3\x2f\x3f\x59\xb4\xa4\x9e\xe3\xd1\xbf\x9c\xa5\xd4\x3b\xd4\x17\x26\x86\xf9\xf5\x79\x99\x5d\xfb\xa8\x4b\xeb\xf1\x53\xfc\xe8\x40\x62\x9d\x67\x13\x1f\xa7\xe3\xa8\x02\xad\x68\x23\x9d\x30\xfe\x2d\x5c\x40\xbd\x3b\xfa\xa3\x46\x2e\x9f\xd2\x3e\x6d\x8a\xa0\x5f\x18\x1b\x34\xb4\x1a\x23\xd8\x35\x13\xeb\x98\xfe\xdc\xbf\xbc\xa5\xdc\x6a\x9b\x42\x6f\xb3\x44\x31\x8a\x9a\x3a\x6d\x66\x52\x51\x7d\x70\x9a\xfc\xc0\x0e\x32\xb9\xa9\xd4\xdf\xcf\xce\x96\xfc\x9d\x53\x45\xf9\x3c\xf7\xa9\xcb\x5b\x3a\xc0\xf8\xcb\xdb\x28\xfe\x64\xfa\x8b\x68\x33\x2f\x55\x24\x49\xaa\xd4\x74\x9b\xc8\xb7\xdc\x26\x6a\xea\x00\xe4\x68\x98\x26\xe1\xe6\x23\xbb\xce\x55\x1c\x38\x8b\xf0\xc6\x27\xf4\x75\xa9\x83\x88\xd0\x92\x7c\x69\x99\x06\x85\x0f\x59\x60\x61\xc6\xb7\xd7\xf3\x7a\x24\xb8\xa4\x6b\x6a\x5c\x43\x7d\x30\x54\x63\x32\xda\xa8\x89\xcd\xe4\xda\x4d\xb6\x47\x68\xea\x51\x36\x32\x04\x7d\xf6\x83\xb4\xae\x29\x87\x71\xe6\x5b\xfd\xa8\xa6\xcf\x11\xda\x01\x68\x85\x98\xfc\x83\xdd\xbf\x55\xa1\xb9\x63\x9b\xe0\x3a\x97\xd8\xf9\xcd\x74\x45\xcd\x90\x31\xec\x21\xe0\x1b\xc2\x7c\x70\x57\x9b\x92\x04\x1d\xa9\xe7\xb8\x81\xf1\x8a\xff\x06\xc2\x14\x28\x57\xf1\xdc\xd3\x94\xcf\x14\x17\xd7\xff\xb4\x52\x83\x0b\x66\x42\x56\xee\xc4\x2a\xf9\x91\x2c\xe4\x56\x4b\x21\xe0\x33\xf2\x6d\x3b\xb4\xe9\x1a\xad\x73\x90\x26\x74\x7a\x1b\xe6\x9d\x93\x54\xf1\x95\xd0\xe7\xc3\xbb\xf2\x03\x0a\xc7\xb9\x8e\x59\x22\x70\xbc\x7d\x2f\x8f\xb2\x15\x54\xa7\x21\x80\x89\x17\x0f\xd5\xe0\x7a\xc0\x0f\x83\x5b\xf4\x3f\x2e\x9f\x9f\x4d\x11\x20\xaf\x4b\xdb\x15\x41\xd6\x59\x33\x3a\x4b\xdd\xd1\xb7\xcc\x36\xa5\x79\x61\x55\xe2\x5b\xb8\x5e\xea\x8e\xde\x7c\x58\xa3\x3e\xa5\x2a\x95\x09\xdb\xee\x99\x95\x03\x45\xe1\xca\x61\x8f\x85\xdb\x8f\xc9\x8f\x5c\xe5\xa2\x79\xf0\x91\x1f\x7b\x97\x3f\xdb\xf9\x36\x71\x03\xea\x72\xe5\xb7\xfe\xfc\xa0\x27\x54\x07\x28\xd1\x7a\x9e\x2b\x84\x32\xa5\xf4\x77\x34\xe4\x51\xdd\xc7\xd9\x0e\x1d\x97\xf8\x02\x67\xbe\x4b\x21\x93\x61\x87\xa6\xd8\x40\x5b\x72\xa0\x0d\xab\x55\x00\xe4\xde\xc7\xe4\x7d\x25\x8e\x87\x4d\x7e\x08\x3f\xbf\x4d\x57\xa7\x89\x2b\x1d\x23\xd1\x7c\x38\x77\xdc\x79\xca\xf9\x01\x5f\x5d\x0e\x7f\x11\x8b\xf7\xdc\x97\xd6\x24\x6c\xd6\x04\x96\xad\x39\x8a\xfa\xd8\x60\x18\x50\x39\x7c\x0d\x71\xbf\x62\xad\xea\xd3\x4a\xd0\x40\xac\xc5\xc8\x24\xff\xa6\x14\xff\x70\x00\xaa\x09\xf1\xad\xd9\x2e\xb5\xae\xcd\x04\x35\x5a\x34\x6c\x99\x53\xa6\x24\x71\xa8\x78\xc6\x09\xdd\x8c\x18\xb9\xd2\x46\xf2\x5b\x96\xf4\x16\x36\xa1\x12\x6a\x3f\x4d\xbe\x1c\x86\x00\xfc\x15\xf5\xd4\x75\xe3\x05\xd8\xca\x0b\x42\xff\x42\x4b\xcb\xf5\x88\x25\xaa\x34\xf9\x9f\x28\x0e\x6e\x95\xd0\x46\x2e\x80\xf6\xf3\x7f\x7d\x7e\x98\x52\x75\xd3\x32\x05\x59\xa5\xfe\xfc\xde\x0d\xd2\x1b\xd7\x4a\xbf\xd8\x6d\x73\x14\xb4\x9f\x45\x70\x45\xf4\x43\x2b\xba\x34\x23\x59\xc4\x6c\xec\xc8\x91\x54\xe7\x59\x1a\x27\x06\x37\x88\xaf\xf9\x17\x15\xbe\xa8\x08\xe2\x36\x68\x6a\xcc\xd7\x5f\xf8\xa7\xfd\x32\xd6\x4f\x99\xda\x1e\xd7\x54\xf9\x31\xaf\xcb\x3f\xa3\x2e\x86\x71\xc3\xdf\x2b\x3b\x30\x0b\x39\x1e\xf7\xdb\x8f\x9e\xdb\x97\x3d\x4f\x5d\x33\x13\x9f\x51\x28\xf4\x3e\xbe\x56\x29\x8d\x2d\xea\x95\xc0\x58\xb1\x49\xc3\x92\xc9\x28\x04\xcc\x39\x1b\x35\x51\x3f\xc4\x58\xd3\x06\x93\xaa\x24\x48\xd9\xde\xd9\xf2\x1c\x40\xb9\xfe\xec\x0e\xd5\xb5\xb0\xd1\xe4\x86\xf8\x9f\x79\x98\x5f\xd8\x45\xa9\xbd\xc8\x59\xd9\x3b\x1e\x56\x91\x6b\x22\xd1\x3c\xc3\x33\xef\xd0\x1c\x48\xcb\x8c\xd2\x9a\xdd\x74\x27\xa5\x6f\xe5\xcc\x23\xe9\xf0\x9e\x51\x43\x15\xe5\x2e\x0e\xde\x2e\xbb\x5b\x5a\xc7\xcc\xa0\x82\x0e\x55\xbc\x3b\x6a\x99\x74\x3a\xd4\x84\x5b\xc4\x85\xb1\xa2\x83\x27\xb4\xd2\x2d\x24\xc9\x0e\xb2\xf0\xd9\x93\x8a\xd3\x05\xf5\xe2\xa4\xf3\x63\x0d\x9f\x84\xd7\x60\x66\xa4\x36\xb9\xfd\xb9\xed\x73\xe4\x03\xe9\xec\xea\x4c\xb2\xf3\xc9\x3b\xb3\xa5\x8c\xf0\x2a\x6d\xd5\x78\x3a\xeb\x09\x21\x1e\xc0\x1d\x3c\x72\x17\x54\x34\xae\x60\xc8\xca\xa1\xe4\x6b\x47\x81\xa2\xc0\x12\x60\x64\x08\xd0\x56\x61\xfd\x86\x74\x12\x40\xca\xca\x10\x3c\xff\x57\x05\xe5\x00\xb0\xba\xb8\xa6\x8e\x9e\x5b\xab\x40\x46\x55\xa1\x8b\x2e\xe5\x6f\xdb\x38\xb1\xe7\x9c\xbc\x8e\x0f\x0d\x7a\x12\x10\x80\x82\x00\xc8\x4b\x71\x1d\x1c\xff\xe8\x42\xa7\x72\xc1\xa9\xcd\x43\xf2\x45\x95\x36\x65\x4d\x62\x18\x16\xa1\x5c\x1c\xe9\x27\x2f\xb5\xda\x0a\x88\xf9\x40\xfe\xfb\x47\xc7\x66\x48\x87\x50\xeb\x65\x2b\xc1\x1b\x0e\xc8\x1e\x0c\xd8\x3e\x85\x1f\xf4\xa6\x57\x9c\x31\x92\x32\xc6\x35\x12\x7c\x62\x98\x2a\xbc\x5d\x16\x3e\xaf\x23\xfc\xc1\xd2\x02\x7e\xe0\xfd\x4a\x3c\x2f\x53\xe4\x0b\xcb\xf1\xab\xc6\x66\x8b\x97\x52\x19\xf9\x89\xfb\xe1\xdc\x67\x75\x5f\xf1\x3a\xe6\xea\x42\xc7\x8e\x8d\x6c\x69\x39\x13\x0f\xa3\x4b\xef\x98\xa0\x9d\x4c\x37\x60\x21\x64\x23\xfd\xd4\xdc\xab\x39\xde\xd8\xe1\x9a\x90\x09\xa4\xd4\x04\x53\x4e\xd3\x50\xb5\xca\x50\x5d\x00\x47\x8a\xe3\x24\x8b\xc5\x86\x20\x97\xf2\x53\x86\x8c\xd1\x92\x13\x62\x30\x7a\xe2\x5c\xcc\xdc\x83\x0a\x8f\xd0\x64\xc4\x4b\xec\x64\xef\x9c\x3c\x54\x19\x54\x10\x21\xa5\x9a\x2f\xbf\xdf\x12\xce\xc1\xc7\x97\x43\x05\xbf\x79\xe7\x85\x4a\x76\xf6\xb9\x47\x8a\x5e\x56\xfe\xe7\x5a\x4d\xcd\x1d\xf5\xf2\x01\x7e\x52\x23\xec\x15\xba\x5e\x26\xf6\x49\x35\x7e\xe6\xff\xb1\x5e\x98\x84\x13\xc3\x42\x0a\x85\x33\x5a\x62\xaa\x66\xb8\xc2\x50\x1e\xd8\xc9\x6b\x55\x80\x3b\x71\xc0\xec\x81\xeb\x54\xe5\xbe\x7c\x4b\x76\x7c\x85\x11\x03\xa9\x60\xd5\x38\xf2\xfc\x47\x46\x8a\x7f\x8b\x02\x5c\xf2\xc3\xb2\x4f\x4c\xd2\xc7\x1f\xf5\x15\x3d\xd9\x42\xbc\x6b\x96\x98\x28\xdd\x3e\x6f\x68\x86\xef\xc8\x60\xb2\x3a\xbb\x32\x52\x21\x16\x22\xd7\x74\x52\x93\xd1\xdc\xbd\xef\xf1\x08\xd1\x87\x61\x34\x56\xbc\xfb\x09\x85\x7d\x5e\x6b\xfa\x06\x43\x1e\x87\xb9\xf6\x2c\x1a\xa5\x27\x4a\x96\xb4\x16\x85\x21\x2d\x42\xd8\x00\x45\xe6\x29\xf6\x13\x9b\x54\xb8\x29\x05\x1f\xf5\xc2\x37\x8e\xa9\x25\x27\x43\x3e\x2f\x20\xf3\xfb\x82\x6c\x7f\x03\x94\x53\x68\xec\xcf\x5b\x9b\x4d\x88\x35\xda\x67\x6b\xd2\xd7\x91\xbf\x67\x8c\x9a\x6c\xed\xf8\x10\xd8\x38\xed\xc3\xc6\x0d\x54\x88\xc6\xc8\x07\xe8\xd5\x33\x3d\x3a\xb8\xd4\x87\x99\x74\xda\xbb\x16\x36\x7a\xb2\x34\x91\xf6\xcc\x1f\x65\xdf\xa1\x4f\xdc\xaa\x95\x9d\x56\xe7\x1f\xbe\x27\x3b\xc4\x2b\xd3\xd0\x06\x0d\x6c\xd5\x9b\x22\x3f\x3f\xdf\x42\x32\x0a\xdd\x54\xe2\x29\x7a\x7b\xf3\x38\x3d\x97\xf9\x24\x84\xd1\x8f\x5c\x23\xbf\xfa\xac\x4e\xca\xef\x10\x2b\xe4\x37\x9f\x1b\x9e\xdd\xb7\x00\x78\x0e\xd4\x82\xda\x14\x06\x2c\x5a\xe3\xa1\xa6\x10\xab\xc9\xff\xef\x8b\x2d\xfb\x43\xe2\x00\xde\x56\x6c\xc4\x7c\xa1\x1a\x5d\xa1\xa1\x1b\x5f\xcd\xf8\x24\x9d\xf3\xb8\xce\xb9\xe4\xc9\xb1\x29\xd0\xcc\xeb\xcf\xd7\x43\xb1\x83\x02\x01\xb2\x84\xd0\xb2\xff\x8e\xc4\x21\xb8\x12\x27\x82\xb8\x0c\xf9\xe4\x8d\x62\x93\xca\x88\x51\x13\xf0\x80\x55\x02\x97\xb4\x80\x24\xa4\xab\x9b\x35\x3a\x27\x45\x81\x95\xd8\xb1\x5c\x95\x97\xa3\x16\x30\x2e\xc6\x3e\x28\x0f\x8a\x32\xe9\x63\xe3\xb4\x35\x2c\x66\x75\x92\xc0\x67\x0a\x81\xc2\x4b\x8f\xcf\x44\xad\xd4\x1d\xdd\xbe\x59\xe1\xf5\x19\x86\x8d\x88\x23\xe2\xd2\xd5\x5a\x94\x67\x18\xd5\x44\xa1\xfa\x1f\xda\x7e\x09\x55\x2a\x88\x08\x2d\x9c\xe8\x37\x83\x05\x63\xa6\x2e\xee\x64\xdf\x7a\x31\x18\x08\x99\x83\x5c\x2e\xc5\xd1\xb3\x30\x9a\x36\xa0\x45\x27\x39\xe5\xfc\x8a\x93\xba\xe8\x2d\xde\xb2\x2c\xa3\x4e\xe6\x74\x2c\x50\x2d\xf7\xc4\x65\xc8\xd1\x79\x0a\x42\xb1\x81\xaa\x55\xb8\x0e\xbb\xd6\xab\x6a\x5d\x2e\xb5\xa1\xb0\x2e\xec\xd2\x8e\x04\x0a\x03\x2b\x8e\x99\x84\x03\x31\xa3\xaa\x58\x41\x58\x34\xc0\x80\x17\xf9\x81\x62\x4f\x6c\xc5\x77\x10\xd2\xdd\xba\x87\x75\xbd\x20\xbe\x36\xe7\x6e\xa2\x2f\x06\xca\xb3\x65\x30\x5d\xe1\x03\xa7\x37\x0f\xc1\x39\xb0\xb1\x5b\xea\x14\x40\xe2\xfe\x43\xf2\x73\x32\x5a\xc6\x8c\x8f\xbb\x7a\xd7\xf1\x40\x1d\x37\xcf\xb6\x8d\xed\xe4\xbd\xf5\x17\x17\x3d\x3a\x44\x32\x89\x65\xea\xee\x4a\x8b\x50\x1b\xc5\x0d\x24\x9d\xa9\x28\x93\x70\x61\xe0\xf8\x61\xad\xbe\x33\x0b\x83\x2f\x89\x88\x7b\xe5\x88\x6c\x18\x30\xb1\x5b\xb5\xa1\x41\x96\x17\xfc\xe6\x7a\xda\xd2\xe1\x53\x4c\xae\x06\x6e\x57\x54\x47\x08\xa8\x11\xa8\x41\xe4\xb0\xe2\xd5\x6b\xd8\x61\x20\xf4\xc1\xc8\x8b\x9a\x50\x23\xd0\xec\x45\x6d\x73\xe3\xee\xec\x63\x9e\xd5\x35\x63\xf2\xd4\x0e\x21\xa1\x53\xbc\x32\x52\xa8\x9b\xa8\x19\xa8\xc3\xc7\xdc\xe8\x7d\x2a\x64\x13\x4e\x05\x3f\xdf\x5b\x2f\xcb\x1e\x3f\xd5\xc5\x54\xe8\x2e\x0c\x7e\x47\xa1\xa3\x5b\x88\x61\x0e\x9a\xe0\x41\xe5\xc9\x77\x74\x39\x4f\x52\x06\x39\x07\x28\x5d\x3e\x76\x8f\x5c\xf8\xb4\xba\xd5\x17\x16\xbd\xa6\x8d\x5d\xeb\x88\xd8\x19\x7b\x95\xe2\xd5\x6f\x8d\x54\xc6\x2a\x6e\x86\x1a\xf8\x87\x01\x7c\xdf\xb8\x18\x60\x2a\x42\x45\xea\x53\x13\x47\x48\xe6\x36\x52\x5b\x80\x5c\x63\xd5\xf8\xff\xa3\xfb\x55\x15\x09\x0a\xd7\x2f\x1e\x9e\xa0\xab\x56\x76\xab\x15\xcf\x74\x55\x69\x0f\x31\xc4\x21\x76\xb9\x23\x5b\x34\x05\x00\xb7\x19\xa7\xb7\x74\xe3\x30\x4e\x9b\xa3\x59\xb8\xaf\x4c\x6d\x1b\x59\xa7\x92\xf3\xcb\x39\x2f\xb6\xa9\x37\xcc\x6e\x36\x60\xaf\x19\xdd\x37\x79\xf4\x29\x23\x2d\x9f\x7c\xcd\xee\x38\x3b\x9d\xe6\x40\x82\xc8\x69\xf9\xaf\x01\xe9\xd2\xc5\x52\x26\xe9\x92\x45\x2d\x52\x14\xae\x89\x58\x32\x1c\xcb\x95\xb7\x72\xdc\x41\x12\x13\x40\x6b\xa3\xd4\x1d\x39\xf7\xe8\x63\x41\xe6\x51\xc6\xe7\x77\x2d\xba\x90\xe5\x65\xaa\x33\xbb\xf0\xa9\xcd\x2d\xdd\xaf\xa0\x6f\xdd\xaa\x58\x19\x7d\x71\xa7\xae\x43\x8a\x53\x1a\xfb\x27\x06\x64\x8c\x14\x96\x2c\x11\x7a\x15\xd1\xa3\x1f\x49\x84\x10\x6b\x5d\x29\x8e\x3e\xae\xf4\xfa\x34\x4e\x15\x70\xea\x57\x1f\x18\x98\x5c\x05\x3e\x4a\xa9\x1d\x1c\x26\x4a\x43\x87\xba\x71\xa5\xc0\x47\x74\x85\xeb\x35\x5d\xbe\x0a\xd8\xa4\xc3\x38\xeb\x73\xdb\xb4\x72\x6d\xaa\x68\xef\x9e\x12\xdb\xf6\xe5\x0b\xaf\x5b\xc9\xe3\xe3\xa5\x23\xb2\xb7\xda\x44\xac\x96\xa0\x82\x0a\xce\x80\x0b\xe4\xc3\x98\x80\x1c\xef\xca\x16\x87\xa6\x42\x63\x90\xd2\xcf\x53\x6a\xda\x21\xa0\xd4\x0b\x27\xdf\xd6\xa7\x6d\x71\x67\xc0\x77\x32\x27\xc7\x4f\xca\x1e\x4b\xdf\xa7\x80\x26\x82\xcd\x4e\x5f\xcb\xa3\x5a\xb7\x26\x9d\xc4\x33\xdc\xb2\xf8\xca\x4d\x9b\xad\xcb\xa5\xd8\xd8\xd7\x54\xd9\x9e\xbb\x45\xd9\x20\x60\x57\x78\x6b\x9f\x73\x44\x25\x20\x97\x68\x83\x5b\x72\xe5\x7f\xf6\x86\xec\xc8\xfd\x1a\xf6\x02\x62\x10\x1f\x10\xa5\xc3\x2a\x43\x95\xce\x8f\xdd\x16\x82\x03\x40\x6e\xd4\xfb\x1a\x26\x16\xf9\x41\xd2\xc1\xfc\xf8\x16\x19\xfd\x4c\x62\x04\x28\xa0\xcc\xb7\x38\x21\xad\x38\x63\x9c\xbe\xbb\xe1\x12\xf8\x01\xff\x02\xdd\xd1\xdf\xad\xd5\x90\x4c\x89\x01\x04\x87\x63\xfe\xfb\x63\x53\x01\x21\x9c\x9e\xbf\x39\x95\xd0\x85\x5a\x72\x1c\xfc\xf9\x38\x14\x8c\xeb\x58\x33\xb3\x6c\xe2\x0e\xb3\xeb\xea\x49\xf3\xb8\xc9\x47\xf4\xe9\x39\xa9\xa2\xdb\x8c\xe9\xb0\x9c\x7c\x43\x53\x77\xc7\xd8\x16\xd2\x5a\x5f\xd9\xa0\x41\xee\x91\x6d\x13\x9c\x5e\xd6\xbb\x9e\x50\xa8\x39\x8c\x1a\x18\x9b\x82\x97\x94\x5f\xb6\x4d\x75\x51\x15\xca\x25\x42\x91\x77\xc0\xf3\x0a\x9e\x09\x33\x3f\x44\x70\x01\xa2\x2d\x1f\x66\x23\x61\x05\x39\xc4\xc5\x25\xd8\x7b\xf0\x5d\x3b\xfc\xd6\xb7\x8f\x6a\xa2\xf9\x34\x4e\x46\xfc\x91\xfd\xb2\x6b\xb0\xd2\xdf\x01\x93\xae\xbf\x70\xc9\xd6\x6c\x3d\x01\xb5\x19\x78\xd8\xf1\x72\xd1\xdd\xa4\x29\x23\x35\x12\x65\xfc\xdc\x65\x8f\xca\x0c\x5d\xc6\x88\xf1\x0f\xfa\xb7\x4f\xc9\xf4\x8e\x13\xe1\x9d\xcb\x34\xb4\x14\x88\xf5\xf1\x4b\x79\x70\x77\xb6\x1f\x46\x80\xb8\x82\xa2\x59\x4f\x3e\x5f\xb5\xd3\xb7\xd3\x07\x4c\xe2\x35\x9d\xa3\xd5\x18\x93\xc1\x19\x45\x95\x0f\xe5\xd7\xed\xa5\x2e\x4c\x3e\x8a\x25\x8d\x2d\x6b\x62\x03\x36\xa7\xe9\x82\xbd\x7f\xb3\x2c\xc6\x2d\xd2\xcb\xed\x67\xe1\xe6\x7e\x30\x46\x53\x77\xb0\x91\xcb\x65\x57\xf3\xdf\x79\x8f\xef\x9f\x7b\xc0\x38\x05\x7c\x74\x65\x03\x39\x5f\xcb\x61\x9e\x1d\xba\x35\x1c\x04\x42\xe4\x29\x99\xc2\x7d\xf6\x60\x62\x1a\xe2\x1b\x71\x46\x06\xd9\x1c\x5b\x11\x63\x8f\xcb\x28\x7d\x89\x13\xdd\xa1\x31\xd0\x13\x23\x45\x11\xd8\xde\x99\x37\x56\x79\xe5\x90\x70\x5b\x06\xd9\x5b\x15\x91\xdd\x59\xb3\x66\x96\x66\xcd\x02\xf1\x9d\x5d\xe7\x9d\xa2\xac\x69\x26\x63\xd1\xe8\xb1\x8f\xe4\x10\x6d\x56\x7b\x67\x17\xec\x16\xb7\x25\xdd\xba\x2b\x7c\xe1\xee\x1f\x34\x3a\x5b\xf5\xc7\x69\x3f\x35\x06\xbe\x7e\x8f\xc0\x29\x81\x2c\x38\x2c\xb7\x7d\xc5\x0a\x90\xf3\xe2\xe2\x47\xff\xdc\x53\xc2\x40\xdf\xa4\x36\xdc\xa0\x5f\xde\x2f\x87\xf3\xd4\x69\xc1\x64\xbe\xb3\x49\xd1\x44\x68\x28\x0b\x99\xfc\x9f\x5f\x1b\xa9\xe2\x15\x68\x42\xbb\x8d\x1f\xd6\x86\x9d\x3a\x51\x82\xb1\xd0\x13\xe8\xef\xb7\xb6\x28\x9a\x29\xd2\xda\xde\x1c\x23\x15\x20\x27\xb4\x3c\xdb\x8b\x96\xcb\xed\xd6\x54\x50\x45\x29\x5e\xa9\x1d\x77\x83\x82\xc1\x35\xef\x44\xb3\xc7\x7d\xe1\x4c\xf9\x2b\x3b\x3b\x27\x4f\x03\xc4\xdd\x91\x77\xc5\xd6\x24\x0c\x38\xe3\xe2\xd9\x17\xda\x14\x3e\x0d\x66\x0c\x0e\x60\x77\x14\x8e\x50\x00\x98\x78\x8d\xc8\xe3\x7f\x77\x54\xc9\xee\xd8\xf3\x39\x45\x64\xaf\xa9\x1b\xc2\xba\x98\xd1\xec\x01\x2d\x3c\xb3\x63\x88\xb2\x2e\x14\xd6\x8d\xf6\x73\xd9\x67\x76\x5b\x18\xf7\x75\xa2\x8f\xc8\x9d\xd9\xa7\xf0\x74\xc3\x32\x4c\x09\xa3\xe0\xe2\xd1\x5a\x53\xdb\x1b\x02\xaf\x02\xca\xa2\x97\x1f\x97\x12\x5d\x96\x2a\x39\x51\x38\x2a\x13\x6a\x3d\xee\x9d\x10\x54\x4d\x0f\xec\xcf\x88\x5f\xb9\x09\x5c\x71\x9c\xa9\x11\xb9\xa8\x6d\x8a\x69\x6e\x7e\x8f\x22\xc4\xea\x63\xbb\x2f\xe0\x92\x09\xc5\xd9\x41\x76\x4c\xd0\x87\x0c\x2b\xd1\x0e\x48\x27\x1b\xab\x07\x69\xd3\x0f\x0b\xd9\xc4\x14\xfa\x02\xe2\xef\x6c\x7f\x42\xf1\x8f\xf3\x3c\xea\x0a\x41\xdb\x97\x66\x2a\x1b\x47\x96\x0e\x7f\xf2\x8f\xde\xa2\xe3\xe6\x82\xa4\x3a\xeb\xee\x2f\x1c\x10\x62\x4e\xa7\x40\xb1\x76\x5e\xa4\x67\x49\x8f\xfa\x98\x95\xec\x26\x8b\x53\x73\xc0\x1f\x6a\xf1\xfa\x01\xc2\x1e\x9b\x86\x55\x20\x2c\x2d\xd4\x04\x8a\x59\x68\x27\xe8\xd5\xc2\x4d\xf7\x67\xab\xa4\x2b\x93\xd0\xf8\xe6\x16\x49\x8d\xf4\x91\x1b\x80\xdc\x6d\xcb\xdd\x1b\xb1\x6f\x98\xd6\x3b\x42\x5a\x38\xe7\x45\x6d\x64\x6f\x11\xcf\xc3\x0d\x15\x69\x73\xba\x26\xcd\x0b\x1a\x38\xf1\x3b\x7e\xfc\x34\xa1\xb6\x47\xdd\x20\x51\x07\x2d\xfc\xdb\x4e\x75\xf9\x03\x68\x27\xa8\xdc\xc6\x0a\xf0\xe3\xb2\xd4\xbc\x3b\x7f\xfb\x01\x79\x0d\x2d\x1a\x94\xba\xa3\x97\x24\x83\x97\x1b\x9c\x67\x6f\xde\x6f\xb6\xf0\x42\xfa\x46\xf0\x7a\x95\xef\xfe\xf0\x59\x42\x3e\xa5\x4a\x19\x58\x43\xf4\x0c\x55\x26\x6a\x0d\x52\x81\xb7\xb2\x6e\x8e\x4c\xe1\xbd\xa1\x59\x15\x1f\x39\xea\xd3\x78\x65\xa0\x16\x92\xc4\xd3\xcf\xb9\xd9\x2f\x8f\x9c\x04\x2a\xb3\xf9\x46\xd5\x98\x0b\xf8\x59\xfc\x88\x3f\xf5\xb4\x72\xc3\x43\xbb\x02\xea\xe8\x85\x0f\x1f\xc9\x9e\x89\x3a\xb2\x01\x22\x8e\x34\x7f\xe7\x71\xef\x6b\xb3\x25\x9f\x21\x6c\x2b\xaf\xe3\x3b\x9d\xfa\x2a\x93\x96\x6d\xec\xf8\x3c\xe7\xe5\x3e\x79\x78\x78\x36\xb4\x43\x37\x02\xb7\xfe\x15\x6e\x4e\x71\x03\x01\xc1\x29\xfd\x80\x7c\xf3\xfd\xcc\xde\x96\x40\x20\xdd\xb8\x6d\xac\xde\xda\xa4\x46\x04\xa2\xb4\xb1\x47\x28\x3b\x11\x2b\x6e\x79\x61\x7c\x52\xbc\x7e\xb7\x14\x46\x05\x33\x07\xd9\x3e\xe6\x4f\xf0\x9c\xba\x1c\x1b\x89\x93\x67\xfe\xbf\xce\x92\x50\x75\xe0\x80\x17\x17\x4c\x4e\xf5\xf5\x2f\x8d\x8f\xdb\x19\x37\x69\x35\x9f\x2d\x5c\x98\xa3\xbd\xeb\x92\x71\x5b\xdc\x4e\x53\xd0\x59\x79\xf2\x56\x45\x87\x8d\xeb\xcb\xd8\x29\xe2\x77\xf3\x9a\x36\x51\xdf\xfa\xc8\xf3\x28\x49\xb0\xfa\xb9\x57\x74\x29\x43\xbe\xdb\x56\xf7\x72\xb9\xc6\xde\xb4\xdc\x99\x15\x87\xfe\xdb\x2e\xd6\x07\x7b\xe0\x50\x96\xc0\xa3\xcd\x37\x35\x83\xcb\x30\x19\xf9\x6d\x3a\xa8\x78\x61\x30\xea\xa7\xff\x34\xfe\x88\x33\x9f\x57\x94\xb6\x1a\xf1\x13\x9a\xb8\x60\x8c\x16\xa0\xeb\x71\x11\x9a\xbc\x87\xef\x1d\x92\x18\xb1\x99\x70\xe5\xf6\xf7\x48\xc0\x9f\x4b\xe2\xcf\xb2\x7a\x8b\x82\x87\xe4\x57\x6e\xf8\x21\x59\x58\x85\x01\x0c\x0c\xb8\x1c\x61\xe1\xf0\x79\x2d\x0b\x7a\xca\x52\x89\xda\xdc\xea\x9d\xba\x06\x07\x58\xc2\xa5\x58\x9f\xfe\x5c\xfd\xb8\xc0\x3f\xd8\x61\x32\x61\x2e\x7c\x37\x1a\xac\x8c\xa5\x92\xfd\xd4\xea\x16\xa7\x42\x31\x38\x14\x35\x7d\x78\x96\x0a\x7f\xa7\xac\x4c\x02\x4e\x67\xcf\x5f\x35\x4f\x9f\xba\xfb\xa9\x07\x4a\xfe\xc4\xd0\x21\xa2\xce\x07\xe5\x10\xb1\x88\xf9\x92\x66\x47\xc5\xdb\xf2\xf4\x41\xe6\xf6\xbf\xa4\x57\xca\x2b\x7a\xa2\x4f\xbf\xad\x80\xc1\x05\xbd\xfe\xee\x09\x3a\xdc\x89\xe8\x34\xe2\x43\x62\xec\x37\x6d\xca\xe4\x19\xb3\xa6\x81\xf8\xc1\x44\xa9\xeb\x1f\xc4\x09\xc3\x6e\x02\xcc\x5b\x04\xe4\xfe\xfc\xd1\x7b\x54\xfb\x0e\xae\x32\xc5\xa7\x7c\x97\xbd\x3e\x52\xeb\x09\x1a\xa9\x73\xdf\x78\x45\x28\xaf\x89\xe3\x38\x58\x07\x7c\xc0\xb6\x36\xa9\x3f\x54\x51\x66\x6e\xdf\x19\x7b\x91\x92\x0e\xca\x24\xe0\x73\x87\x56\x08\xe7\x8e\x4b\xb4\x12\xa4\x0a\x4e\xef\xad\x0c\xbf\x51\xda\x2e\x11\xd6\x97\x62\xca\xbc\x67\x8b\x7c\xeb\xd5\xd0\xe5\x35\xcf\x89\x31\x5c\x86\xe9\x7a\xcb\x69\xdd\x2d\xe6\x3a\x1e\x90\xd1\xda\x20\x41\xd3\x37\x10\xc0\x58\xf3\x4c\xdb\x6f\x61\x17\x44\x54\x04\x7a\x77\xd5\x76\xc5\x36\x93\x39\x7e\xc0\xa8\xaa\x01\x90\xff\x8b\xb2\x31\xf6\xb1\x2b\x74\xc5\x73\x77\x77\xc8\xb2\x19\x11\xee\x78\xf7\x81\x26\x84\x87\x7d\x83\xb2\x40\x00\x9b\xff\xb5\x3c\x48\x24\x12\x3f\x20\x46\x5c\x72\x7d\x92\x0f\x38\x4a\x4b\xe3\x97\x5a\xa1\x54\x35\x94\xbe\x7f\xa7\xbc\xe9\x35\x5a\x47\x86\xaf\x7e\xa4\x45\xaa\xea\x6f\x80\x99\x17\x47\xb0\x68\xd9\x50\xa9\x0b\x85\x52\xc9\x94\x67\x06\x4b\xa4\x0a\x18\x7d\xb8\xc9\x9b\x13\x62\x10\x0f\xdf\xd7\x0a\xf9\x62\x35\xc1\x1b\x1e\xb0\x78\xa4\xf2\x1e\x10\x80\x45\xb0\x58\x27\xfe\xf7\xd5\x83\x64\xd2\xa8\xc2\xb0\xf8\x8c\xfb\xb3\x4e\x32\x1c\xb3\x06\xc0\x27\x5b\x29\xd5\xac\x84\xe1\xd0\x5f\xf8\xf3\x13\x0a\xf0\x21\xa0\x46\xad\xe5\x40\x7d\x6f\xa3\x6e\xbc\x8e\x98\x93\xb6\x79\x17\xec\x51\x69\xf7\x01\x23\xae\x4f\xe0\x04\x5d\x72\xb1\x50\x5f\x44\x65\xfe\xc6\x0e\xeb\x1a\xce\x06\x88\xe3\x10\xdf\x9a\xd4\xdb\x0b\x8e\xdf\x33\x4c\xcd\x18\x90\xb2\x06\x12\x9d\xd2\x8a\x9e\xfe\xe2\xac\xb7\x14\x82\x9a\xca\x74\x2c\x2c\xdd\x96\xad\x25\x21\xb9\x6b\xec\xbd\xc2\xab\xbd\x9a\x26\x06\x62\x81\x8b\x61\x54\xc2\x53\x71\x61\xe8\x76\xd5\xef\x0d\x23\x41\xe6\xc9\xef\x3c\xc1\x47\x64\x09\x0d\x05\x95\x41\xf4\x2d\x17\xdd\xda\xea\x73\xcd\x49\x4e\xf9\x59\x2f\xf1\x97\xd3\xb0\x08\x13\xf3\xe6\x21\xaf\x0c\x49\x72\x98\xb0\x83\x84\x9f\xa1\xcd\x0d\xe0\xf6\x83\x61\xb6\xc0\xbb\xee\x1b\xaf\x3b\x4d\xf9\x01\x71\x8d\x20\x71\xe5\x7d\xf5\xb8\x1c\x5e\xd1\x56\x94\xe8\xae\xed\x6a\x8d\x5e\x07\x70\x62\xa9\x3b\x72\xae\x96\x1f\xdd\xa5\x2e\x57\xb9\xe7\xae\x9f\xd7\x4f\xd4\x29\x91\xae\x19\x1a\x28\x20\x7e\xeb\x6a\x3d\x77\x5b\x4f\x9a\x5b\x3b\xa7\x97\xba\x23\x63\xb0\xa2\x13\x27\x8c\x15\x8c\x44\xd9\xf9\xbc\xde\xec\x6b\x42\xa6\x30\x4d\x86\x91\x15\x17\x42\x2e\x86\x37\xea\xcc\x35\x83\x5a\x14\x68\x14\x51\xff\x49\x15\x3b\x6f\xd4\x38\x47\x74\x96\xa9\x4c\x88\x28\x48\xa0\x19\x56\x8d\x96\xba\xa3\xf9\x9b\xb2\xc5\xa0\x89\x04\xa6\xfa\x1f\x77\x8f\x14\x4d\x05\xcc\xfb\x4b\x06\x66\xd8\xe1\x8b\xdc\xfc\xcc\x23\xc2\x0f\x2f\x74\x4d\xc2\x39\x9c\x9f\xe3\xc3\x9b\x12\x97\xbc\x8b\xeb\x92\xe4\x2b\x4d\xee\xd3\x52\x0a\x67\xfc\x49\xb7\xc4\x68\x8c\x26\x97\x85\x02\xbe\x8d\x4d\xb7\x0c\x85\x2f\x6d\xd6\x00\xde\xc8\xad\xa5\xe3\xdf\xf3\x77\x48\x7a\xbc\x13\x57\x55\x2b\xf4\x59\xb1\x4d\x03\x01\x29\x2e\x5c\xa4\xc9\xc4\x06\xd8\xc6\xb0\x7f\x11\x2d\xc9\xd2\x28\x5b\x21\x50\x23\xa0\x65\xe1\x30\xd1\x1d\x2d\x50\x56\xe5\x0c\x1b\x5c\x80\x16\x0a\x93\xaf\xbd\x90\x3d\x12\x16\x0a\x2c\xd4\x40\xa7\x56\x83\xfb\xe9\x69\x2d\x3a\x09\x9e\x8d\x13\xd4\xb3\x3f\x40\xd5\x01\x6f\xd2\xb8\xd4\x8d\x76\x1d\x91\x6f\xb0\x19\x56\xa9\x6f\x73\xa2\x4d\x77\x7f\x7e\xd2\xca\xc1\xe9\xae\x29\x4c\x22\xc1\x85\x13\xb4\x5d\x35\xb4\x50\x19\x2b\xb3\xdc\x69\xdb\x25\xa0\x2f\x71\x36\xd6\xa7\x3e\x4f\x9e\xa6\xb7\xd0\x66\x98\x0e\x56\x73\x97\x77\xf2\x83\xb0\x88\xb8\xc2\x11\x37\x87\xa5\x33\x05\x25\xf1\x27\xbf\x5c\x03\x7d\x4e\x9f\x52\x9a\x36\x4b\xa4\xf8\x3f\x45\xda\x04\x9d\x52\x33\xd1\x00\xfb\xca\xe4\x6c\x91\x59\xa6\xae\x29\xc8\x0f\x7f\xba\x47\x54\x61\xe9\x48\x25\xba\x71\x01\x0f\x40\x15\xa4\xe2\xb7\xa3\xc5\x1b\xcf\x57\xd7\x53\x0d\x7d\x07\xd1\x9f\xff\x9b\x2d\x9a\xb0\x22\x08\x08\x25\xd4\x99\xfc\xb3\x7b\x2f\xd2\xce\x0b\x43\x75\x44\x5c\xec\x72\x15\x83\x24\x74\x7e\x3e\x12\x9d\x08\x05\x27\x59\x3d\x45\x1c\x60\xe7\x88\x4c\x64\x21\xcf\xe3\x8e\x5f\x2f\xef\xd1\xf4\xd8\xc3\x32\x43\x0e\x72\x09\x72\xb4\x92\xeb\xeb\xab\x94\xc2\x81\xda\x76\xe2\x6e\xfe\x9f\x9d\xf2\xe4\x73\x9c\xe2\x25\x37\xb6\x30\x50\x98\x21\x28\x8f\xc5\xf1\xdb\x5a\xac\x20\x7c\x2c\x78\xb5\xf9\x1f\xbd\xc0\xfb\x07\x21\xc2\x20\x93\x42\xf1\xa4\x66\xf2\x85\x99\x1b\x1f\xa6\x3e\xdd\x81\xdc\x56\x44\x48\x90\x6f\x39\x5c\x83\xe1\xea\xd9\x92\x51\x86\xd4\x25\x27\x3b\x36\x56\x2b\x7a\x02\xcc\x02\x44\xb8\xe1\x29\x1c\xaf\xa5\xeb\x14\x61\x1a\x46\x42\xc7\x03\x49\xae\x6f\x5f\xad\x9b\x41\x1b\x49\xdb\xf4\xb7\xe3\xb2\xc7\x3e\x51\x15\x57\x77\xb3\xb7\x8d\x4d\x27\x7a\x26\xa8\xdd\x64\x3b\xf2\xcf\x29\x96\x6f\x0d\xe2\x9a\xb4\x51\xea\x8e\x1e\x79\x38\x43\x8b\x08\x92\xd3\x7e\xd1\x65\xe7\x94\x09\xf2\x4b\x2b\x59\x98\xf4\xde\xb9\x97\xce\x3f\x45\xbc\x13\xeb\x3c\xe0\x6c\xfe\x61\xa3\x06\xaa\x9f\xc5\xe7\xd3\x4b\xee\x1b\xaa\xb4\xdf\x65\x9b\x5b\xe2\xe7\xef\x1e\x35\x5a\x24\x21\x16\x58\x0d\x0c\x22\xf5\xe9\x01\x7f\xfe\x16\x79\x34\xec\xb0\xcc\x88\xc1\xbb\x88\x42\x74\x9c\x57\x17\xb7\x85\x98\x4f\xde\x70\x2f\xa4\xd1\xd2\x3c\x01\x8c\x6c\x49\x54\x3f\x7d\x5b\xe5\x8c\x62\x17\x99\x71\x0d\xf8\xcb\xf1\x2d\x36\x07\x0c\xb0\xb4\xa2\xbc\xf9\xe9\x11\xc5\x6d\x34\x74\x41\x9f\xe4\xc4\x0b\xf2\x11\xd6\x29\x37\xcb\xe9\xcf\xfd\x53\x7b\xda\xcd\x31\x04\x0a\xe0\x9a\xf8\x22\x76\x03\x58\xf8\x89\x2e\xf3\xad\xe5\x5a\x97\x99\x8a\x79\x9f\x78\x29\x5d\xe3\x12\x70\xe6\x97\x7d\xf8\xef\xea\x12\x0d\x54\x69\x61\x9c\xe4\x87\xdd\xa9\x40\xb4\x30\x52\x15\x1c\xae\x78\x51\x0b\xca\x16\x36\x6a\x29\x3c\xec\x45\x61\x90\xee\x62\x03\xfb\x3e\x11\x16\xae\xb9\xd9\xf7\x68\xa9\x98\xdb\xda\x83\xe7\xc4\xf4\x2e\xc5\x6c\x9e\x7a\xa0\x29\xfb\xd1\x47\xd9\xa3\x3b\x65\xf2\xb4\x8e\x0e\x11\x0c\x27\x9d\xa5\x8f\x46\x6d\xd4\xcc\xa6\xca\xfe\xdc\xda\x87\x34\x1b\x45\x98\xde\x28\xc3\xd3\xfc\xb1\xb7\xd3\x22\xdb\x00\x09\x06\xc8\x07\xc3\xc6\x8f\x50\xe6\xfb\xdc\xf6\x56\x54\xc9\xd7\xcc\xd1\xb0\x34\x1e\x76\x93\x5c\xf4\xf1\x75\xad\xc6\xa3\x2c\x8e\x40\x49\x93\xe6\x1f\x1f\xae\x7e\xc9\xd0\x46\x0c\x14\x16\xfb\x0b\xbd\x0f\xe9\x56\x31\x65\xfe\x53\xa3\x03\x87\xe5\x99\x45\xb6\x0d\x41\x0a\x9e\xe6\x48\x7e\xd6\x38\xa4\x9e\x51\x97\x18\x25\x07\xfb\x7e\x62\xb9\x91\x7f\x50\x40\xd6\xcb\x94\xcf\x84\xfb\x0b\xe4\x3e\x7d\x72\x84\xb9\x46\xa0\x90\x69\x3b\x99\x60\xf8\x02\x3f\x64\xa1\x12\x7d\x82\x9d\x2d\xb5\x76\xe8\x0b\x29\x46\x80\xe8\x94\xd6\x29\x8b\x49\x0b\x11\xee\x68\x10\xf5\xad\x69\x19\x55\xd5\xc1\xc2\x99\xef\x55\x57\x4c\xb8\xb8\xa5\x82\x16\xbe\xb1\x44\x98\x91\x72\xe8\xc2\xa0\xbc\xce\x2f\x6d\x88\x69\xd7\x90\xc5\xda\x85\x73\x30\xdc\x6a\x01\x77\x2c\x6c\x53\x64\x89\x0d\xe0\x61\x45\xdf\xbe\x3f\x8d\xb1\x16\x56\xfc\xfb\x8b\xd7\x94\x5b\xf4\xff\x60\x04\x01\x0a\xc9\xc1\x7d\x63\x4f\x79\xde\x14\x99\xd2\x63\x4f\x69\x3b\x3e\x9c\x0a\x2c\xf7\x17\xa6\x74\xc9\xf2\x41\x10\xda\x5b\x34\x2b\x72\x93\x1f\x39\xe5\xf3\x12\xde\x4a\xf9\x0b\x1e\x96\xdd\x9b\x43\x6c\xe4\x96\x02\x5a\xf2\x79\x5d\x43\xce\x53\xea\xf2\x1a\xe0\xb7\xe0\xdf\x5c\x35\xe7\x62\xad\x5c\x9c\x10\x9c\x8a\x46\x9d\xff\xcb\xeb\x9a\x04\x44\xc8\x82\x4c\x01\x74\xc7\xb2\x36\xd5\xde\x32\x1d\xbe\xde\xfe\x0e\x2f\x66\x17\x53\xc3\xf2\x83\x8c\x74\xf7\x39\x6e\xf6\x67\x96\x6d\x64\xd4\xb8\xfb\x3f\xff\x46\x13\x2f\x93\x01\xc8\x6a\xb1\x56\x29\xde\xb6\x53\x06\x59\x8b\x96\xcb\x3c\x8e\x14\xef\x1e\xa4\xca\x5c\x11\x17\x18\x7b\x70\xe1\xff\xe7\x0e\xe5\xb2\x78\x1e\x0e\x48\x1f\xd7\x48\xda\x2f\x26\x41\x71\xb5\x4c\xca\x21\xaf\x08\x46\xed\x51\x46\xd5\x80\xe9\xe0\x12\x03\x1b\x9f\xd7\x84\x9b\xb0\x6f\x10\x37\x01\x26\x76\xf7\xe7\x3e\xda\xae\xad\x1c\x51\x55\xec\x49\xf2\xdd\x4b\x75\x41\x79\x5f\x34\xdf\x05\x63\x93\xb8\x90\xc8\xe5\x7b\xfb\xdc\xd1\x4d\xea\x17\x71\xa9\x83\x58\x13\xc3\xdc\xe6\x34\xcd\x88\xca\x41\x8e\x43\x03\x8b\xaf\x0d\xea\x7b\x2e\xd4\xfa\x9e\x7a\x9c\x62\x4d\xee\x34\x20\x5e\xcb\x7f\x9c\xd0\x06\x37\xd8\x24\xe8\x54\x83\x9b\xe2\xc7\xd7\x4d\x68\xf9\xba\x21\x3e\x55\x2d\x9e\x7b\xdd\xd6\xc6\xa3\xc8\x26\x15\xca\x5c\x82\x38\x73\xa0\x67\x61\x7f\xe1\xb6\x63\xe7\xa8\xac\x6d\x28\xf8\x6f\x66\xf0\x2b\x4a\x2b\x10\x71\x83\xd2\xb5\x98\x39\x88\xb8\x25\x13\xfb\xa5\x1e\x06\x9a\x0f\x52\x95\xf0\x61\xe1\xcf\x3d\xb3\xa3\xbd\x33\x7e\xa0\x7f\x7f\x62\x48\x86\x18\x59\x83\xe0\xf7\x31\x73\x94\x8a\x6b\x30\x88\x22\x3f\x50\xbc\x3c\x90\x8e\x3c\xa8\xd5\x91\x87\x7d\x34\x44\x19\x95\xd5\x2d\x3e\xed\x7c\x77\xc1\x45\xea\xd8\xcd\xc5\x46\x40\x8c\xb0\xc5\x2c\xbd\x78\xc5\x8b\x8a\x59\x3d\xf3\xb1\xcb\x97\x94\x17\xae\x13\x12\x03\x76\x58\xe6\xe3\xad\xb6\xbc\x36\x99\xb4\x50\xe0\xa7\xc6\x24\x2b\x87\x2a\x2a\x28\x61\x1d\xa3\x10\xa0\xde\x87\xe5\x46\xa4\xc2\x4d\x61\xae\x97\xc0\x2f\x87\xb4\xfa\x11\x7f\xf2\xb8\x76\xc5\x08\xb5\x69\x55\x51\x2c\x2e\x6d\x51\xfe\x3d\xd2\x3b\x96\x87\x1e\xcf\xa6\xb3\x3a\x0d\x12\x97\xa0\x3c\x62\x63\x15\x04\xb2\x1d\xb4\x6c\xb9\xfb\x8b\x53\xb7\x2b\x63\xb3\x10\x02\xe5\x77\x1e\xd5\xfa\x49\xd4\x4c\x14\x97\x0b\xc3\x96\xb5\xb8\xb5\xe0\xf8\xe6\x70\x89\xd5\xc2\xb4\x1e\x05\xc6\x12\x02\xa2\x48\xe4\xb2\x2f\xbc\xab\xd1\x9c\x50\x9f\xc7\xa8\xc3\x43\x33\xdd\xac\x69\xfd\x22\x22\x54\xa0\x73\x5b\x76\xea\xe6\x58\x8d\x49\x75\x50\x7e\x1b\x38\x4e\x17\x94\xc4\xb6\x90\x90\x2b\x0c\x39\x91\x81\x88\x58\xa4\x9c\x4a\x17\xfd\x3f\x8d\xf0\x17\xb7\x28\xcc\x11\xc4\xeb\xdc\xb5\x6f\xa6\x45\xdb\xac\xe9\xd3\xe3\xf7\x7c\xf1\x03\xe7\x69\xd5\x77\x9d\x32\xf0\x98\x10\x53\xf4\x9f\x6a\xaa\x72\x1e\x65\x35\xf1\xff\x8a\xf3\x1f\xe3\x0d\xe3\x0a\x8b\x08\x72\x5d\xce\x53\xb0\x1d\x7e\xd0\xb4\xb9\x38\x7e\xee\x5b\xe3\xd2\xb1\x49\x1d\xfe\xde\x25\x11\xbf\x45\x36\xb8\xe5\x45\xb7\xed\x19\x91\x19\xe4\x21\xa0\x54\xc3\x40\xde\x7e\x63\x98\xb2\x0b\x16\xfa\x42\xdd\xd1\xec\x1d\x3c\x60\xae\xc1\x2e\xf5\x2c\x5a\x86\x29\x5c\xb1\xa0\xb8\x7b\x75\x4d\x9b\x3c\xad\x63\x1a\x98\x09\xdf\xbe\x63\x74\x06\xce\x27\xd4\xdd\x85\xa1\xc2\x07\xd3\x95\x30\x2b\xf8\xac\xa5\xee\x68\xc7\xd3\xca\xf8\x8d\xe0\x32\x76\x6b\x94\xfb\x87\xac\xbe\x7a\xb8\x32\xa5\x24\x26\x18\xc9\xc5\x1f\xea\x6f\x07\x29\x64\x02\xda\x30\x9b\x49\xea\xfd\xfc\xbb\x9a\x24\xda\x14\x31\x04\xcc\xb7\x29\x0f\x4c\xc2\xfa\x0b\x6f\x1c\xd3\xc4\x02\x18\x71\x84\x26\xe0\xe8\xed\x1a\x15\x34\xe3\x89\x58\x9c\xb3\x21\x5b\x78\x86\x36\x23\x86\xa5\x29\xa5\xaf\x5c\x29\x69\x39\x06\x01\x62\xfd\x11\x2d\x2f\x50\xae\x40\xd0\xdd\x5f\xb8\x66\x9e\x2e\xa8\x8f\xf9\x72\x50\x4c\xe4\x76\x2e\xd3\x48\x3a\xd8\x60\x98\xeb\x24\x14\xcf\xe8\x18\xef\x4a\x19\x15\x64\xf3\xf9\x63\x4b\xc8\x9b\xf3\xae\x9c\xbf\x5f\x9e\x54\xb9\x77\x28\xd8\x41\x23\x3e\xc5\x70\xc2\x17\xd7\x87\x6b\x5f\x5f\x68\x8e\xe4\x5f\x76\x27\x6a\xe5\xad\x23\x6c\xf3\x4e\x85\x82\x2b\x5c\xfc\x9a\xa2\xee\x03\xa3\x59\xd8\xc0\xc4\xc5\xfe\x2b\x2b\x35\xe5\x59\xb7\x4a\x5c\x0c\x0a\x00\xbd\xbd\xf0\x4c\xe6\x1d\x48\x8c\x43\x80\x5f\xd2\x5f\xd8\xf5\x8e\x94\xfd\x49\xa6\xe1\xd1\x0f\x14\xe2\x01\x28\x50\x80\xfc\xce\xdf\xb8\xa3\x5a\xca\xca\xa6\x90\x16\xc8\xdf\x7b\xd9\x68\x45\x8e\x83\xf9\x01\x56\x07\xbf\x33\x15\x2c\x05\xb2\x49\x0d\xc6\x55\xb9\x4d\xab\xcf\xcf\x7c\x93\xec\x2a\x1f\x76\x9d\x67\xb4\x25\x40\xd7\x65\xcb\x56\xc8\x24\xfc\xcd\xcd\xbc\x46\x5f\x8e\xab\x98\x97\x29\x1a\x14\x70\xe6\xa9\xda\x5f\xd7\x4f\x87\xd4\x85\xbf\xec\xd7\x01\xf8\x60\x98\xc2\x3b\x8e\x22\x9b\x37\x4c\x4b\xf2\x3c\x10\x9d\xae\xec\xa6\x03\x86\x4c\xd8\x01\x40\x36\x39\x43\xd1\xd5\xb6\x69\xc0\xf7\x9e\xd1\xe0\xfd\x7a\x34\x4c\x34\x6a\x23\xdc\x96\x1e\xe5\xae\x8e\x69\xf1\xcf\xc8\x79\x8a\xf8\x5a\x08\x5b\x6f\xbd\x70\x9b\xa5\x6d\xaa\xaa\x8c\x86\x9e\x68\x82\x7e\xb8\x7e\x8c\x3a\xe2\xc7\xcc\xa0\xae\x10\xe2\x8e\xbf\x52\x30\x5b\xa6\xc0\x99\x5d\xa0\xcd\x73\xef\x9c\x2b\x32\x3f\xad\x89\xdc\x9a\x5f\x42\x90\x52\x1d\xcf\x3f\xa5\xb7\xe9\xa7\xb6\x28\x64\x71\xbe\x28\x4d\x82\xc5\xf7\x5e\xd1\x85\x42\x58\x95\xdb\x7f\x36\xed\x74\x65\xed\x07\xed\x19\xd2\xe3\xc4\x55\xe7\x28\x0f\x8e\x0b\xff\x17\x36\x69\x72\x1e\xa1\x5b\x45\xac\x99\x10\x2d\x7b\x16\x46\x5f\x7a\x5c\xbe\x87\x8c\x12\xd4\x22\x6d\xc9\xcf\x18\xae\xc6\xed\x60\xc2\x85\x7c\xf4\x05\xde\x8b\x2d\x6c\x5a\x88\x2b\x52\xa4\xc2\xc4\xb3\x79\x64\xf7\x51\x05\x96\x09\xe3\xb4\x89\x71\x19\x55\x2d\x13\x99\xe2\xa1\xc0\x17\x9e\xfb\x10\x8f\xe5\x0d\x40\x9c\x87\x3e\x77\xdf\xbe\x77\x67\x4b\xb7\x5a\x21\xe0\x6c\x27\x48\x2c\x8b\xef\x17\x9c\xed\xf8\x96\x83\xd5\x7c\x7f\xfe\xe5\x37\x74\x86\x67\x18\xbf\xc2\x0a\x06\xd5\x65\x56\xea\x8e\x9e\x1b\xa8\xcd\x9b\xc0\xe6\x9e\x0b\x30\x3c\x5b\x97\xd7\xcb\x45\x36\xf6\x60\x97\xb4\xfc\x75\xc5\x50\xc6\xb7\x91\xc3\x37\x3e\x43\x5e\x57\xe6\x78\x0c\xa4\xa9\xed\x38\x78\xdc\xfc\xa0\xbe\xe0\xaa\x32\x1c\x88\x09\xe4\x80\x2d\x0a\xb2\x09\x03\x2a\xa7\xbb\xbf\xf0\x84\xa5\xf4\x11\x1c\x3a\x18\xbf\xbf\x9a\x37\x5a\x2d\x2d\xe1\xdd\xc8\x7e\xe7\x1f\x19\x7f\x6a\x0b\x65\x7f\x1d\xf7\x60\x8a\xe0\x7b\x9d\x94\x99\x58\x43\x07\x9a\xae\x64\x39\x64\x8c\x82\x65\x9e\x21\xd4\x00\x0a\xbb\x6f\x6d\x7d\xde\x94\x39\x29\x40\x3f\xf7\xad\xd7\xb5\xfd\x3e\xec\x3b\x92\xff\x9d\x7f\x79\x0b\xdf\x31\xdc\x40\x6a\x16\x22\x36\xad\xcb\x30\xc3\x46\xf1\x79\xee\xfc\xf8\x04\x2a\xe1\xec\x13\x3b\x05\x90\x0f\x85\xbe\xf8\xce\x7f\xeb\x8d\xd5\x2b\x78\x43\x50\xef\x04\x7e\x34\xbf\x6d\xb9\x92\xaf\x3d\x8c\x84\x9e\xdb\xd7\x07\xcb\x1d\x66\x80\x19\x23\x01\x05\x5d\x6d\xc8\x25\xf3\x34\xc9\x99\x0a\x72\x03\xe4\x27\x16\x15\x05\x6b\xc4\xc7\x93\x8b\x35\xbb\xd4\x1d\x8d\x56\x48\x92\xf1\x3b\x92\x56\x92\x93\x16\x0c\x91\x9c\x03\x9c\x00\x12\xff\xe5\xb4\x36\x15\x62\xe2\x96\x92\x93\xbd\x45\x11\x51\x72\x30\x98\x74\x3f\xdd\xa9\xa0\xfe\x43\x10\x82\xe0\x00\xf4\x7f\x3a\x8b\x5f\xa9\x44\x82\x40\x1a\xfc\xff\xf0\x51\xc5\x0c\x2a\x50\x79\x0a\xbf\x3c\xa4\x10\xae\xe3\x6e\x9e\x03\x97\xee\x1c\x0c\x41\xd9\xc6\x6e\x69\x4a\x97\x5e\x52\xaf\x7e\x49\x77\x4f\x35\x4d\x98\x3b\x29\xc2\x54\xf9\x7c\x8f\xf0\x8e\xc3\xe0\x9d\x03\x3d\xd2\xfe\x16\x24\x96\x6d\x96\x9c\x90\x99\xc9\xf2\x26\xbf\xf8\xc1\x34\x09\x7a\x34\x75\x14\xa0\x9e\xea\x21\x8d\x18\xb4\x5c\xb9\x19\x9e\xa6\x5b\xc3\x82\xc4\xdd\x36\x5f\x7e\x2f\x9b\x54\xc0\x96\x49\x38\x77\x47\x2f\x3d\x20\x5a\x65\x15\x18\x53\xb8\xd0\x1d\xa2\x2e\xc8\x45\x5d\x7e\x48\x11\x2b\xb4\xc9\x6d\x21\xac\x66\x0b\xff\xbb\xfc\x5c\x71\x52\xa1\x3a\x68\x19\x35\x2c\xf4\xc6\xe8\x97\xa5\x6a\x23\xc6\x11\x4c\xd1\xd1\x97\xce\xc9\x0c\xbc\xa0\x5a\x9f\x20\x91\xfd\xd8\x29\x23\xdf\x6f\x55\x7e\xe8\x54\x90\xaf\x35\x2e\x9d\x7f\x9f\x97\xed\x6c\x1d\x54\x6d\x22\x76\x8a\x26\x38\xba\x6f\xab\x5c\x0e\x58\x30\x9a\xd8\x74\xa7\xea\xf9\xa9\x6e\xa2\xc7\x28\x96\x0f\xb4\x51\xaa\x71\xbf\xaf\xeb\x16\x69\x9c\x73\x4c\xdc\x53\xf9\xc5\xe6\x5e\x3b\x26\x2c\xe8\xc1\xa2\x93\x9b\x42\x3d\x5e\x96\xd9\x6a\xaa\x70\x6a\xa2\x76\xfc\x34\xfe\xf9\x81\x14\xc0\x61\xab\x90\xb7\xbf\x3f\xeb\xe3\xe2\x00\xc1\x91\x2c\xd6\x7b\xb4\x5d\x46\x03\x9c\x79\x78\x64\xd9\xd5\xa6\x0e\x3a\x12\x9f\xad\xa8\xb3\xac\x71\xd6\xf8\xf0\x4c\x6e\xc8\xcf\x9a\x9c\x1d\x34\xf8\x01\x0a\xcb\xc8\xb0\x32\xdb\x9c\xe2\x67\xf7\x66\x27\xf4\x15\xca\x26\x5d\x5c\xea\x8e\x9e\xd4\x04\x8b\x02\x5a\x6b\x52\xa1\xfd\x16\xff\xf4\x0b\xae\xd1\x3d\xce\xc2\xf4\x13\x93\x09\xd9\xaf\x33\x65\xda\xe4\x59\xb3\xa6\x95\x80\xc6\x5d\x6c\xee\x57\x37\x3c\xae\x1f\x3a\x5c\x08\xe1\xc7\xb3\x05\x06\x97\x82\x6f\x72\xf4\x33\xc5\xae\xda\xc6\x65\xda\x20\x81\x72\x07\x73\x3f\x78\x6f\xa0\x68\x0b\x18\xa8\x04\x6e\xd9\x9c\xc8\xb5\x40\x5b\x0a\xa7\xc0\x3b\x26\xe1\x24\x9d\x1d\xd3\x5b\x0a\xeb\x9f\xbc\x31\x3c\x49\xad\xf1\x2d\xaa\x42\x4c\x81\x7f\xb9\x7e\xaf\x1c\x9e\x7b\x0c\xc7\x59\xd4\x4d\x56\xe2\x4f\x3f\xa7\x96\xc6\xb6\x8d\x3c\x90\x4a\x87\xa7\x32\xee\x4e\xc5\x2d\x27\x7e\xe0\x7e\xe0\x31\x70\x64\x9b\xa3\x89\xb4\x72\xcb\x4e\x2e\xc3\x07\x4d\xdf\x5c\xc1\x55\xee\x41\x00\xda\x2e\x7c\x45\xf1\x4d\xb7\x30\xa3\xf0\xb9\x6e\xbe\x45\x9e\x05\x1b\x85\xae\xa0\xcb\x9d\xbe\x5e\x5f\x2e\xb2\x04\x53\x93\x7b\xef\x9e\xec\xff\x6b\xc4\x3d\x2a\xef\xaf\x72\x7f\xb3\x55\x57\x92\x08\x7d\x3f\x6e\xa5\x67\x27\xe1\x69\xa8\xa2\x9c\xd8\x35\xad\x7d\x0a\x4c\x75\xfe\x71\x3f\x17\x6d\x9d\xd2\x3e\x2b\xfe\x29\x1f\xee\x4b\xc3\xbe\x1d\xa0\x24\xba\x0f\x7f\x5a\x15\x71\xf6\x90\xc1\x87\xe5\xb9\xcf\x3f\x22\xac\x43\x91\x18\xaf\x43\x67\x2c\x34\xb9\x2b\xd0\x7d\x72\x15\xe8\xdf\x1d\xd2\xe5\x23\x60\x1f\x91\xd8\xa0\x16\xbb\xde\xd6\x24\x46\x48\xd5\x2a\x05\x38\xd9\x01\x16\xd6\xdf\xa3\xb5\x82\xc2\xa2\x41\x64\xe4\x6f\x46\xfc\x00\x35\x85\x6a\xfd\xd7\xcc\x16\x31\x43\x3f\xb1\xa2\x2d\x4c\x3d\xae\x62\x69\x28\x33\x89\xcb\x8d\x85\x3e\xb1\x9e\xc7\xdb\xd0\xe5\x1f\x1d\x8c\x34\xae\x3e\xa1\xc0\x94\x42\xe6\x21\x50\xe4\xcf\x3f\x70\x99\xb6\xda\xa7\x26\x1f\xaf\xc4\xff\xf3\x0f\xc7\xb3\x74\x32\x17\x37\x7c\x0f\x79\x62\x1f\xaf\x07\xe1\xdc\x65\x7c\x60\xb5\xd0\x04\x75\xb5\xee\xfe\xdc\xd6\x25\x2a\x55\x3f\x2e\xaa\x04\x22\xad\x36\x41\x2b\x4c\x7c\x6a\x4b\x1c\x74\xee\x9b\x87\xd3\xc1\x30\x97\x96\x16\x21\xca\xbc\x29\xfd\x73\x1c\x58\x4a\xf2\x7b\x35\x7f\x9e\x1e\x56\x02\xac\x78\xe0\x7c\xf7\xe9\xf1\x6a\xed\x8e\xfd\x40\x94\x66\x99\x90\x7d\xe7\x2a\xf9\x40\xa7\xcc\xec\x14\x60\x8a\xf8\xf3\x6e\x1c\x27\xeb\xba\x8a\x8d\xdc\x9a\xca\x17\xcd\x8d\xdc\x97\xe5\x7d\x04\x0d\xec\x06\x4d\x9f\x3a\x38\xb0\x94\xcb\x74\xee\xd6\x81\x72\x15\x1b\x1f\x16\xf3\xa5\xe1\xca\xa7\xf2\xe5\xf2\x26\x8f\x86\x6a\xe4\x4b\xcf\x63\xd4\x63\x04\x05\x58\x70\xb7\x73\xed\xf7\x6b\xc2\x82\xc8\xb6\x51\xd5\x4a\xdf\x8d\x78\x64\x3f\x3f\x4f\xa7\x86\x59\x58\x73\x61\x2b\x94\x06\x2b\x58\x48\x37\xbe\x00\x02\x7c\x55\x9c\x36\x5e\x1f\xbd\x11\xb3\x9d\xaf\x7a\xbf\x54\xd6\xf0\x01\x89\x84\x7a\x7f\xe1\x89\xab\xb5\x0e\x13\x1a\xe9\x64\x06\xf5\x37\xbd\xf2\xf6\x4e\x99\x35\xab\x03\x6a\x8b\x3f\x68\x84\xc7\xc0\xa2\x61\xd5\x0a\x2a\x21\x9f\x14\x14\xd1\xfd\x22\x10\xa3\x2a\x1f\x62\xae\x1c\x91\x3d\x41\x50\x3f\x96\xed\xc4\x32\xff\xe7\x17\x6b\x17\x87\x51\x64\x26\x0a\x20\x0b\x2e\x1e\xa3\xb4\x9b\x71\x7f\xac\xae\x74\x67\xd6\x2f\x52\xa9\x46\xcb\x96\xf5\x70\x3e\xa3\x5e\x1d\xcc\xe8\x6b\x53\x4b\x4e\x92\xfa\x88\xe7\x6f\x91\xc5\x9f\x89\x1d\x6e\x7b\x04\x99\xbe\xd0\xfb\x68\xf6\xa1\xc5\xcf\x5a\x5c\xfd\xff\x1e\x9f\xfd\x5f\x7e\x5c\x3e\xf3\x16\xc4\x6b\xd7\x22\x29\x4c\x16\x85\xdf\xc4\x04\xcd\xdc\x8b\x39\x4d\xbe\xc9\x2a\x9e\x99\x1f\x90\x14\x57\xa5\xee\xa8\x71\x9f\x22\xe3\xc2\x69\x05\xd1\xb6\x4d\xbc\xca\x5f\x1a\x1a\xaa\xfd\x50\xfe\xc8\x73\x1a\x36\xc0\x21\x9c\xbd\x08\x0a\x08\x10\x83\xd9\x03\xaa\xa5\x85\x43\x19\xd0\x64\x8a\x17\x74\x64\x8f\x9b\x4b\xeb\x55\xca\x68\xc2\x9a\x88\xef\xe2\x57\xd7\xa4\x85\x91\xe3\xc1\xc8\xa9\xf7\x43\xd9\xa0\x13\x13\x4a\xa2\xdf\xec\xd7\x81\xb0\x75\x6a\x87\x81\xc2\xdf\xca\x6f\xe9\x4d\xc7\x08\xe5\x26\xa0\x01\xba\x97\xc8\x3a\xcf\x45\x75\xb8\x49\x1f\x6c\xd4\x34\x08\xe9\x9a\x53\x0a\x75\x16\x2e\xd1\xae\x5c\x80\x6a\xa8\x4a\x32\xc8\x85\x60\x83\x8e\xee\x08\x2b\x95\x64\xfe\xee\x0c\xd0\x76\x75\x88\xd4\x53\xd9\xac\xae\x65\x8a\x24\x84\x6b\x73\xf1\x52\xd8\x2f\x75\xbe\xa3\x8c\x4f\x38\x79\x30\x0e\xfc\x5f\xde\xd7\x8a\x92\x27\x7e\xe2\x1b\x08\xe1\xff\x53\xaf\x28\x2f\x34\xe4\xb2\xeb\xf9\xdd\x0f\x29\xf8\xb3\xd0\xe3\x5c\xab\xc2\x78\x85\xb7\x5c\xb3\x42\xe6\x5b\x98\xa7\xb8\xbb\xf2\xd9\x9b\x3a\x65\x06\x17\x9d\xe2\xc0\xbe\xc3\x8b\xf5\x41\x80\x1d\x10\x50\x07\x49\xeb\xb9\x9b\xe6\x64\x93\x75\x25\xb4\xed\x52\xd9\xa6\xa0\xf9\x03\xc1\xe0\xf4\xb5\xfc\xe6\xce\x2f\x4d\x99\x0a\xb3\x97\x4f\xaf\x91\x5d\x1f\x2a\x13\x6a\xab\x27\x2f\x9a\xad\xb3\x41\x6d\x1b\xa3\x6a\x88\x13\x36\x68\xa5\xc8\xcb\xa3\x79\x98\xf9\xb4\xa2\xe2\x8f\x6f\xdf\xa0\x4f\x59\x39\x96\x10\x2e\x4a\xe4\xcc\x49\x95\xf3\x0c\x2c\xfc\x57\xe8\xc3\x12\x10\x5f\xa5\xa5\xee\xe8\x02\x4d\x4b\xaa\x1c\x36\x13\xfb\xc7\xfc\x71\x6e\x59\x58\x5a\x26\x10\x76\xc9\x6d\x9f\x71\x58\x56\x5e\x20\x51\x58\xaa\x11\xa3\xc6\x4b\xe8\xcf\xae\xd2\xf6\xbf\x84\x19\x21\x09\x04\x84\x99\x3e\x75\x8e\x12\x76\xe1\xb8\xe6\x5e\xbd\x63\x48\x66\x94\xc5\x79\x16\x27\x15\x12\x0b\xa9\xb6\x24\xde\x89\xd2\xe4\x7c\x3a\x0c\xd4\x0a\x4b\xb5\x71\xa8\x81\x6d\x5c\x16\x3c\x70\x78\x1c\xef\xcd\xd3\xf1\xf1\xd8\x24\x8a\x02\x4b\xee\xf6\xf1\x1f\x4f\xce\x64\xa9\xd4\x1d\xfd\xc5\x92\x20\x61\xf3\x14\x16\x11\xc5\x15\x33\x55\x14\x27\xab\x62\xbe\x76\xcc\xbd\x3a\xaa\xc5\xdb\x35\x88\x4b\xe1\xe4\xda\x6c\x5a\x95\x38\x40\x91\x80\x24\x66\x77\x7f\x78\x50\x75\x3a\x74\x0d\x64\xa0\x4a\xfc\xb5\xd8\x2b\xc3\xb5\xb2\x41\x0c\x61\x73\x67\xcd\x93\x31\xb7\x8a\xea\x58\x39\x52\xe4\x29\x61\x5e\xe1\xc6\x8f\x9f\xf3\x03\x0a\xbf\x7f\x4c\x26\x21\x3b\x74\xc1\xc6\xb6\x70\xee\xe1\xf4\x31\xbb\xed\x95\x96\xaf\xb8\x6a\x95\xda\xf3\x30\xec\x8b\xb1\xd7\x57\xee\xc9\x54\x39\x71\x1a\xe7\xfa\x0b\x9d\xbb\x74\x8d\x7b\x90\x54\x12\x07\xaa\x7c\x92\x3f\xe1\x1b\x44\x25\x76\xe2\x7e\xed\xca\xa7\xd6\x0b\xc9\xa6\xa0\x70\xd2\x56\xb8\xf9\x2c\xc0\x4e\xb3\xd4\x1d\x1d\x10\x4d\xc7\x5c\x93\xda\xe0\xbb\x7d\xc7\x82\x8c\x1f\x1f\xb7\x5e\xca\x2d\x5f\x23\x26\x37\x16\x25\xdc\xab\x31\xff\xe7\x57\xf8\x93\xb1\x69\x93\xff\x9e\xf8\xef\x75\xcd\x94\xc3\x54\x17\x93\xaa\x55\xa6\x8c\x9b\xde\x41\xbc\x3a\x30\x8a\x13\x60\x3f\x8d\x5a\x1d\xca\xf3\x37\x3c\x22\x7f\xf3\x94\xe9\xc2\x39\x20\xe8\x4d\xe8\xae\x75\x6c\x53\xae\x72\x79\xcf\x7b\xba\xc8\x20\xf5\xd2\x65\x78\xe1\x43\xcd\x38\xcb\x6f\x72\x89\x8e\x49\x60\x1e\xf2\xed\xa7\xf9\x73\x9b\x37\x77\xfe\xf5\xf1\xcf\x9a\xaa\x8c\x7e\x88\x8b\xeb\x24\x10\x02\x01\xf9\xb2\xe2\x85\x56\x2a\xb3\x64\x5e\x1b\x7d\xdf\x4a\xdf\x73\x19\xb5\xee\x63\x3f\xf9\x7e\x76\xcf\x5d\xa7\x76\x9d\x9e\x72\xcf\xfd\x37\xef\x5f\xa4\xdf\xa2\x38\xb8\xb8\x01\xd0\x26\x79\xe9\x07\x38\x98\x99\x2d\x6c\x94\x72\xfc\x21\x53\x90\xfa\xc0\x51\xba\x35\xbb\x1f\x30\xda\x4c\x55\x66\xfe\x6b\xb7\x96\x79\x0c\x9a\x6a\x26\xe6\x0e\x9a\x89\x16\x3d\x33\xb9\xa6\xc1\x55\x1f\xea\xd2\x03\x30\x39\xa8\x96\xba\xa3\xff\x55\x1c\xb4\x89\xeb\x2a\x4b\xee\x42\xf8\xc6\x10\x29\x39\x97\xb6\x4c\x7f\x65\x32\xcd\x10\x54\x9a\x0e\xfc\xdf\x37\x37\x67\xcf\x6a\x2f\xf2\x90\x8b\x7d\x2c\x2d\xb1\x8b\x17\x2c\x90\x25\x73\x03\x31\x1b\x5e\x99\x94\x3f\x95\x16\x89\xcc\x6e\xe1\x3a\x7f\xf1\xa8\xb2\x0f\x88\x6b\x95\x96\x3d\x47\xfe\x5f\x0f\xe8\x33\x5b\x9f\xf8\x82\x4a\x91\xdb\xb1\x26\xfb\x38\x13\xdb\xbf\x44\xff\xac\x31\x62\x8c\x94\xd9\x6f\x95\x3e\x39\x67\x4c\xb6\x88\x49\x54\x36\x9a\x9c\xbb\x1b\x1f\xa1\x3f\xed\xd5\xc6\x78\x3c\x70\x9d\x7b\x44\xf7\x88\x77\x1c\x38\xb9\xfc\x35\x0e\xb0\xa5\xe1\x4b\x17\xb4\xa9\x63\x5f\xd3\xf3\x67\x2a\x9b\x2f\xb2\xc4\xf5\xe3\xf4\x8e\x11\x71\xe0\x08\xc7\xe2\xde\xbd\x47\x5e\xb9\xaa\x4d\xcb\x1c\x3b\xb0\x50\x83\x60\x4f\x9f\xda\xde\x35\x4d\xe0\x86\xf6\x2f\xd6\xf9\x4d\x86\x85\x93\x65\x96\xbd\x76\x50\xcb\x77\x3a\xcc\xef\xef\x62\x2a\xa3\xc0\xf0\x83\xd9\x27\x64\xa3\x3e\xc4\xc2\x2c\xbc\xf9\xc9\x8b\xb3\x95\x97\x4d\x3c\x8f\xf2\x03\x92\x7d\xdc\x2b\xdb\xb5\x12\xd6\x34\x13\xb0\xd5\x9f\x5e\xe7\x47\x9b\x9b\x03\x94\xba\xa3\xa7\x77\xf1\xcf\xb7\xb0\x4e\xc5\xcc\xbd\x18\x6e\x95\x07\x74\x4a\x67\x32\x0d\x78\x41\x51\xda\x4a\x30\xe6\x50\x15\xdf\x79\x58\x4b\x48\x1c\x35\x97\x48\x7e\x14\x07\x6c\xd1\x44\x8c\x19\xc6\x09\xdc\x20\x77\xed\x53\xc3\x55\x54\x9a\xe3\x11\xf1\x63\xf3\x5f\xdc\x2c\xab\x9a\x0a\x23\x26\x52\x2c\xa7\x72\x5b\x9f\x6e\x53\x9d\xb6\x65\xcd\x42\x3b\x35\xd8\x0f\x31\x6a\x42\x56\xef\x2b\xdb\xd2\x32\xb9\xb3\x63\x66\xfc\x30\x7e\xb6\x4a\x05\x11\x08\x6f\x4d\x16\xa7\x80\xcf\xaa\x4b\x46\xc3\xe0\x5c\xfa\xfc\x9f\x76\x4b\xdb\x79\xa4\x8a\xe8\xfc\x61\xb5\xb2\x10\x6b\x07\x63\xdd\x81\xf7\xc9\x1c\xe6\xc7\xef\x9e\x6b\x21\x44\xb3\x5e\xcf\x18\xf3\xf9\x89\x5a\xe9\x0b\x07\x34\xc5\x1b\xda\x87\x5d\x51\xa3\xf5\x17\xfe\xa8\x61\x8b\x01\xb1\x5b\x0e\x6d\xae\xe5\x03\x27\x68\xc2\x83\x3c\xf7\xa0\x06\x62\xd8\x15\x39\xea\xae\x8e\xf3\xf5\x38\x29\xd4\x34\x92\x29\xde\x72\x6d\xa3\x81\xdc\x26\x14\x5d\xe2\xe2\x9f\x71\xab\xe4\x27\x7a\x18\x3c\xf3\xbe\xd0\xa1\x2a\x9c\x70\x1e\x65\xa9\x3b\x32\xdf\xd2\x3c\x3b\x29\xc3\x6e\x1f\xcd\x22\xbf\x73\x2f\xac\x54\x30\xa4\x38\x00\x2a\x70\x6e\x6d\x9b\x48\x68\x2c\x35\x19\xcd\x7d\xa3\x47\x13\xcf\xf0\x70\xa2\x98\xfd\xb9\xab\x35\x24\xc1\xac\xae\x0e\xde\x87\x3e\x72\x70\x98\xfa\xd3\x43\x9b\xaf\x7e\x72\xe7\xbe\xd5\x62\xba\x4e\xbc\xac\x6b\x5f\xf4\x97\xbe\x53\x92\x7a\xb9\x15\x60\xcf\xc2\x68\xef\x7a\xdd\x69\xc8\x47\xbe\x74\x05\xc8\x2f\x7a\xea\x3c\x25\x80\xd5\xf4\xf6\x36\xda\xf7\x56\x56\x92\xd5\xb7\x28\x05\x7b\xce\xfc\xa5\x07\x65\x81\x00\x82\x31\xa6\xba\xdf\xf8\xc1\x3b\xbc\x4c\xbe\x1e\x05\x96\xea\x91\xfa\xee\x47\x1c\xa0\x3f\xdf\xc2\xcc\xa5\x4e\x93\x99\xaa\x22\x5f\xf1\xec\x0f\x75\xb5\x6c\x77\xb5\x82\x00\x73\x9e\xd2\x54\x54\x2d\xec\xf8\xd8\xae\xe3\xc4\x30\x8a\x7e\x98\x7d\x9d\xa6\x6b\xb4\x72\x81\x0a\x73\x03\xc5\xc3\xc7\x49\x32\xd5\xdc\xf7\x15\xa7\x30\x08\x29\xb3\x8f\xa8\xab\xde\x00\xdb\x36\xa9\x0a\x3a\xda\x7c\x5b\x93\x84\xe3\x55\x0d\x77\x76\xe1\x60\x9f\x23\x13\xb3\x9f\xc5\x60\xd4\xb0\x70\x90\x9d\xcb\xfc\x7a\xba\x82\xf6\x46\x6e\xd5\x0f\xf8\x48\xc8\xe3\xf1\xad\x8c\x5c\xb1\x24\xfb\x87\x1d\x89\x01\xae\x6f\xd8\x94\xdf\xec\xd2\x73\x97\x6b\xbd\xa6\x6f\x11\xb7\x1a\x50\xc1\x8a\xc8\x56\x29\xe4\xb4\x91\x4a\x26\x26\x41\x09\xb9\x26\xd7\x76\xed\xcf\x37\xdb\x15\x35\x9f\xd0\x34\x79\x1b\x59\xf8\x68\x22\xbf\x9d\xf3\x90\x6d\x43\xdb\x19\x7f\xb6\xb6\x17\x55\xa5\xfd\x3a\x06\x70\x44\xf4\xa2\xa2\xd8\x07\x5f\xa4\xd4\x1d\xdd\x72\xa3\x0c\x30\x75\x02\xa5\xeb\x97\xb5\x51\xb3\x83\x6d\x0a\x32\x59\x09\x54\xeb\xc9\xc1\x72\x60\x8b\x52\xd1\xe0\x51\xeb\xe4\x4f\x2f\x63\x64\x58\xa5\xee\xe8\x2a\xa9\x62\x3c\x65\x06\x64\xd1\x9f\x2b\x0a\x3c\x15\x86\x5c\x21\x72\x58\xea\x8e\x7e\xac\x71\x15\xe2\xa0\x99\x50\x2e\xf6\x77\x0e\x4d\x02\xb9\x6d\x63\xb7\x2a\x1c\xb1\x7f\xbf\x43\x67\x21\xd7\x49\x90\x48\x33\x41\x3b\xb6\xf3\xea\xf3\x94\x29\xb2\xdf\x52\x40\xe4\x1e\x7c\xf4\x7c\xa5\x35\xaf\x96\x5b\x70\xb9\xc5\xf1\xa7\x89\xf7\x4c\x98\xc9\x85\xe5\x0b\xcf\x1e\x57\x44\xd1\x43\x02\x32\x6e\x80\x03\x1c\xac\x13\x71\x50\x42\x19\xfd\xcf\xfb\x14\x46\x3a\xc1\x8c\x29\x6e\xbc\xf9\x19\x1c\xc4\x56\x32\x09\xc3\x19\x71\x83\xfe\xdc\xb3\xdb\x55\x85\x0d\xe6\x5b\x65\xf0\x17\x2d\x0c\xdb\xa3\x4f\x1d\xa8\x51\xb3\xa8\x9d\x6a\x64\x47\x7f\x1e\x33\x5e\x4b\xfc\x8d\x12\xe6\x12\xac\x0e\x17\x35\x06\xa8\xd7\x4a\x7d\x4a\xee\x01\x67\x26\x19\x01\xde\x6b\x8f\x3e\xc5\xff\x17\x77\x39\xf7\xc1\x7e\x61\x8c\x1b\x80\x8f\x09\x08\x63\x2c\x55\xc6\x1a\x60\xf2\x10\xff\xc5\x7f\xed\x13\x9d\x8f\xcf\xa9\x58\x85\xef\x8c\x57\x00\x60\xa1\xe3\x41\xc0\x83\x03\x7d\xdd\x65\xd9\x73\xe0\xe2\x94\x42\x51\x30\x9f\x95\x67\x0c\x87\x8c\xc6\xdf\x80\x6e\xb8\x54\xaf\x02\x02\x62\x13\xf7\x14\xf5\x4b\xfe\xdf\x3a\xf8\x39\x5a\x10\xba\xaa\xac\xdf\x5f\x07\xb4\xb4\xd8\x3e\x2c\xe0\x85\x00\x5f\x61\x68\xb9\xc5\x01\x29\xa0\x2c\xe1\x5f\xfd\xd7\xf4\x51\xca\x14\xd1\x25\xbe\xf2\x6e\x0b\xcf\x6f\xd2\xd6\x68\x1e\xc1\x76\x19\xb3\xea\xa4\x76\xe5\x6f\xcd\xf5\xa4\x74\x32\x1f\x58\xc4\xb1\xf4\xae\x0d\xaa\x52\x5e\xc0\x08\xd8\x52\xe4\xbf\x73\xb5\x2e\xab\x28\xd4\xd6\x14\x4b\x91\xef\xed\x56\xec\xa9\x14\x58\x76\xee\x8b\x07\xc4\x2b\xa3\x84\x61\x8e\x2b\x7c\x50\x74\x25\x26\x72\x0d\xfe\xba\x06\x7f\xa8\x61\xee\xa9\x38\xc7\xf9\xdf\x2a\xf0\x48\x1f\xd9\xd8\xe7\xf2\x0a\xf1\x43\x6a\xde\x38\x42\x69\xae\x7d\x2b\xac\x54\x12\x55\x8c\xb6\xb5\x72\x85\x5b\xc6\x06\x48\x08\xe9\xef\xe6\x0f\x4f\x9d\x9f\xa9\x03\x85\xba\x98\x81\x52\x53\xa2\xf1\x8b\xd4\xfa\x40\x19\x0e\x3d\xaa\x3b\xd2\x50\xdb\x9f\xc4\x55\x17\xd7\x8b\xef\x26\x7b\x5c\x5b\x68\xd6\x59\x14\xd0\x91\x3f\xb3\xce\x4e\x8e\x70\x8d\xd7\x87\x27\x57\x6b\x45\x6e\x1d\x11\xee\xf9\x92\x5b\xf2\x1c\xff\xcb\x73\xcb\x09\x90\x66\xd7\x44\x8d\x96\xcf\xaa\x29\xe3\xe3\xf7\x6b\x14\xd5\x3c\x6c\x62\x06\xfc\xbb\x31\x4f\x67\xff\x45\x8d\x7a\x1e\x16\xb3\xf3\xb6\x07\x39\xb5\xec\x33\xb8\x86\x02\xcc\x88\x2b\xec\x16\x0a\x7f\xd5\x85\x7f\x51\x60\x70\x40\x78\x2e\xbf\x4a\xce\xa6\xbc\x10\x3c\x55\x7f\xd2\x2b\xa4\x65\xb0\x69\xc6\xa1\x75\xc3\x6b\x3c\x31\xd9\x88\x00\x7f\x31\xfe\x89\xd7\xaa\x42\x25\xc8\xe6\xb2\x0f\xf9\xd2\x03\x2d\x25\xb5\x6b\x58\x62\xc8\x38\x35\xaf\xb8\xdc\xa6\x40\xd2\xf8\x33\x5c\x15\x0d\x11\xbf\x10\x39\x0e\x0a\x84\x9e\xe9\xe1\x81\x1c\x0a\xb0\x80\xf8\xa0\xcd\xa4\xed\x70\xfe\xf4\xa0\x26\xb0\x13\xba\x2e\x66\xc9\xcc\x78\x94\x26\x0a\x86\x5c\x97\xc4\x01\x10\xb1\x26\x2f\xc9\x86\xed\xca\xde\x82\xd0\xc5\x8e\x67\xd3\x26\x04\x37\x71\x33\x7f\x1e\xc9\xe8\x09\xa4\x30\xcc\xdc\x52\x77\xd4\xa5\x78\x75\xfa\xf1\x93\xe4\xc8\x8e\xbd\xb3\x25\x88\xa0\x4c\x43\xb8\x6b\xd7\x6a\xa2\xf0\x58\xcc\x7a\x12\xc0\xc4\x23\x91\x7c\x8c\x01\xb2\xf9\x6e\xfd\xca\x1d\xd9\x12\xc9\xa1\xf1\xcb\x0f\x84\x2d\x7f\xe1\xdb\xa3\x34\x08\x04\x61\x81\x65\xa2\xa6\xa0\x0a\xbc\x31\x59\x26\xcd\x99\x53\xe2\x63\x71\xdd\x7a\x8d\x6a\x5b\x0e\x10\x71\x13\x26\x1f\xba\x73\xac\x16\x30\x83\x2b\x84\xaf\x59\x32\x77\x78\x5e\xe8\xef\x38\x80\xd8\x82\x53\x7e\xda\x8b\xfc\x4c\x34\x28\xae\x84\x3c\x03\xff\xef\x06\xbe\x85\x20\x36\xe0\x12\x06\x1f\xcf\xe2\x0b\x3b\x45\x57\xfa\xf2\x98\xb3\x45\xb9\x60\x62\x0a\x3f\x7e\xc3\xc6\xb3\xc5\xad\x07\xf5\xa1\xee\x68\x9d\x22\xb5\x1d\xb7\x73\xc2\x2e\x7e\x9b\x50\x1a\xf5\x1b\x18\x07\x6e\x62\x34\xbe\x39\x1b\x6b\xba\xda\x67\x88\x16\xe1\x83\x99\xca\x28\xde\xb6\x69\x03\xac\x4a\x40\x1d\x46\x5b\x58\x37\x2c\x22\xf6\x49\xd1\x95\x0f\x5d\xa0\xdd\x94\x84\x1b\x96\x1a\xcf\xe5\x8e\x2f\x91\x7c\x9c\x00\xbb\xbe\xb0\xc7\xce\xc6\xa3\x6b\xd6\x2a\x86\x15\x42\x12\x37\xba\x6b\xa6\x6c\xdf\xfa\x90\x53\x26\x50\x0a\xba\x2f\x8a\x81\x33\x6e\xa8\x76\xdd\xc5\xab\xbb\xf8\x9f\x83\x15\xaf\x6b\xd2\xd0\xe7\x7d\xfa\x5b\x9d\xca\x46\x86\x86\x55\x0b\x1e\xff\x5f\x85\xc3\xbe\x49\x1d\x1c\x17\x72\x50\xe2\x84\x83\x15\x78\x92\x07\xf0\xfe\x3e\x21\xaa\xf4\xcf\x13\x06\x8a\x47\x43\x41\xe3\x28\xbf\xe8\xb0\xec\x0c\xeb\xc8\x40\xae\x21\x40\xd8\xcf\x1f\xd3\x1b\x69\x3f\xf0\x60\xd8\xc1\x1f\xf4\x4f\xbc\x34\x59\xd0\xcc\xb2\x76\xd8\xe2\xec\x11\x98\x22\xd8\x62\x97\xde\xa8\x29\x6a\xcf\xec\x9c\x2e\x86\x20\x53\x34\x5e\x2d\xe7\xe8\x88\xda\x7f\xd5\x3d\x8a\x7e\xae\xc1\x90\xb4\xb5\x3e\x76\x91\x16\x0b\x00\x0b\x9b\x42\xd0\x44\xb5\xb2\x6b\x1e\xff\xca\x06\xc3\xa0\xbc\x9c\x7f\x63\x81\x36\x6d\x03\x9f\x7a\x31\x92\xb8\x65\xa5\x26\xdf\x44\x84\x9c\x56\xee\xfd\x95\xfa\xaa\x29\x64\xc1\x24\xa7\x95\x61\xf1\xcf\x6b\xa4\xcb\xa5\xad\xac\xb7\xb7\x6d\x93\xd7\x1e\x73\x15\xfa\xee\xe8\x3b\x82\x6c\x8d\x6c\xcf\x42\x65\xb0\x10\x29\xac\x2e\xa6\x97\x79\x82\x0d\x51\x66\x09\x47\xbe\x94\x4c\x14\x02\xa6\x2c\x2e\x5b\xa1\x38\xeb\xee\x2f\xfc\x6f\x1f\x3f\x30\xf3\x3e\xb5\x60\x6e\xcf\xc2\x15\x2b\xc5\xa9\xfb\xcb\xf3\x59\xca\x3c\x09\x10\x2b\x05\xc8\xf7\x5b\x6b\x9c\x68\xd0\x71\x71\xd5\xb1\x89\x6c\x5e\x26\xcf\x19\xc5\x9f\x5a\x05\x81\xc5\x63\xf4\x3b\xcd\x5e\x99\x00\xaa\x59\x4c\xbe\x72\x7b\x26\xe8\x13\xc9\x9a\xb0\xdc\x88\xbe\x7a\x92\x77\x86\x3d\xed\xd7\xb6\xcf\x6d\x51\x2d\x2c\xec\xe9\x6d\x01\x39\x72\x78\x8e\x40\x13\xbf\xa0\xa8\x32\x61\x37\x7e\xe6\x28\xd1\xe1\xea\xcf\x07\xab\xf8\xac\xd8\x85\x7d\x57\xb4\x7d\x97\xc2\xb4\x31\xb1\xed\x59\x04\xb6\xdc\xed\x8a\xaf\xbd\x4b\x1c\x9a\x12\x4c\x0b\xab\xef\xd3\x15\x92\x0c\x16\xa7\x1d\x71\x64\x3f\x75\x87\x56\x30\x83\x3a\x38\xd4\x71\x4d\x81\x08\xb9\x57\xb1\x2d\x76\x88\x6d\xa7\x96\xf9\xf7\x77\xca\x2d\xb4\xd9\xfa\xbd\xf7\x2b\xe4\x6b\xec\x94\x19\xe2\x8c\xe7\xd3\x1f\x4b\x41\x04\x5d\x33\xe2\x3f\x18\xb1\x41\xe9\xee\x9a\x38\x13\x2a\xbe\xb4\x23\x9d\xb2\x7a\x55\x9d\xa9\xd3\x5f\xf8\xde\x16\x0d\x2b\x8e\x7d\xb1\x64\x4d\x42\xfc\x5f\x3f\x1a\x21\x12\x33\x8b\x9b\x88\xcb\xe5\x59\xfd\xc2\x06\x45\x4c\x72\x46\xfc\x5c\xc0\x99\xbe\xa1\x50\x8f\x39\x39\xa2\xd4\x1d\xfd\x74\x80\x2e\x67\xc5\x01\x4a\xc9\x26\xe4\xaf\x13\xe5\x57\xc0\xbe\x83\x14\xcc\x6c\xfe\xbe\x28\xbd\x2b\xd8\x55\x27\xc8\x0f\x2b\x5e\x15\xdc\xbc\x1f\xa2\xd2\x0f\x17\x64\xdf\x48\x1d\x19\xb8\x96\x51\xff\xcf\x0d\xfc\x40\x9e\x98\x5a\x6f\x5c\xd7\xcb\xaf\xf5\xc7\x4d\xda\xa0\x81\x38\x94\x01\x5c\x42\xa8\xb6\x7e\xef\x43\x45\xd8\x0f\xd9\x36\xa3\x14\x9c\xda\x46\xbc\xc2\x2f\xd9\xca\x30\xf0\x89\x32\x6b\xbb\xe3\xf1\xec\x33\x86\x06\x14\x9b\x93\x4a\x2e\x75\x71\x29\xfe\x97\xbf\x3d\x4d\x07\x40\xbb\x01\x02\x2f\x7c\x2c\x84\xe1\x8a\x83\x36\x25\x53\xd9\x20\x10\x1d\xfa\xe5\xe6\x79\x4a\xac\x48\xca\x07\xe5\x17\x8f\xd6\x10\x10\x34\xf4\x83\x24\x36\xe7\xef\x9d\xac\x6f\x58\x1c\x0f\x05\x16\x9f\x81\x46\xef\x8d\x92\xe3\x77\x9b\xc2\x32\x53\xdf\x7c\x54\xd6\x69\x42\xd3\xc8\x45\x26\x49\x46\x80\x7a\xb7\x3b\xe4\x0c\xe5\x5d\x21\x56\xe6\xa6\x1c\xc5\x45\x13\xb3\x4d\x16\x0a\x4d\x80\x70\x78\xa7\xf0\xe4\xfd\xec\x72\x0d\x15\x16\xfa\xa0\x2b\x9e\xca\xf0\x16\x8e\xbc\xd2\x42\x75\x75\x3c\xb0\x80\x83\xf6\xba\xfe\xde\x48\x85\xdd\xef\x31\x6a\x86\x06\x57\xcd\xee\xcf\xdf\xb4\x51\x81\x72\x10\x07\xdb\x42\x76\xb1\xb0\xa2\xa8\x03\xfb\xe3\xb4\x01\x55\xfb\x59\xda\xac\xd2\x0f\xab\x55\xae\x88\x29\xf2\x52\x61\x84\xe2\xa3\xcd\x08\x32\xc1\x88\xb9\xb0\xfc\xd9\x36\x75\xe1\x0f\x42\x7b\xf0\x03\x8f\xaf\xcc\x06\xd0\x32\xaa\xa4\x7a\x74\xfd\xc5\xcf\x68\x2c\xd0\x76\xca\x92\x75\xd9\x8e\x7d\x1a\xc4\x47\x2e\x7b\x53\xb0\xc4\x91\x56\xd5\x3d\xc6\xe2\x8c\x26\xbb\xc5\xed\x1f\x69\xe2\x6c\x4d\x83\x2f\x1f\xf9\x25\xed\xdd\x91\x7d\x59\x94\x19\x16\x8e\xfb\xc3\x16\x61\xf1\xfe\xfc\xcc\xd5\xbc\x72\xf7\x43\x0f\x9c\x8a\x79\xbf\x76\xde\x9c\x11\x59\x9a\x06\x0b\x3d\x61\xbe\x73\x28\xd2\x48\xd7\xcc\xb0\x48\x80\x0d\x31\xaa\x29\x5e\x70\x52\x33\x31\x40\x2c\x00\x6f\x7d\x78\x00\x17\x2d\xe3\x29\x72\x3e\x75\xca\x84\xcf\xe3\x0b\x39\x6d\xf5\x9e\x80\x54\x39\xf1\xe8\x99\x3b\x04\xe5\x01\xa3\xb8\xd8\x3d\xa4\x4d\xec\xaa\x0c\x99\xb8\xe4\x1b\x16\xa5\x36\x16\xa6\x11\xfd\xc5\x2b\x04\xbe\xcd\xc7\xae\xcf\x2f\xe1\xad\xeb\x55\xc2\x99\x6f\x30\x9c\x00\xc6\x7e\xba\x59\xe7\xf3\x26\x40\x9f\xdc\x1c\x57\x9b\xe7\x20\xb7\xc6\xd5\xfb\xa6\x3f\xad\x4a\x55\x81\xf6\x1d\xc0\x9f\xf3\x9f\x9e\x38\x2c\xf9\x1d\xd5\x38\x11\x54\x42\x10\xc7\x2d\x2c\xd9\x2e\xef\x95\x50\x90\x29\x75\x47\x67\x1f\x4c\xb7\x4c\x50\x01\x44\xe7\x0c\xcc\x7e\xbd\xb8\x78\x6e\x1a\x61\x10\xa8\x22\x84\x85\xcf\xbe\x79\xb6\x2c\xf2\xe2\xa7\x72\xba\x77\x0a\x68\x11\x7c\xd0\xe1\x37\x9d\xab\x37\x07\x0d\xca\x6a\x82\x76\x19\xd5\xc6\x66\x93\xbd\x83\x51\xa2\xe0\x97\x5f\xf6\xc0\x10\xb5\x4a\xc6\x3c\x6a\xff\x52\xfa\x7e\x7b\xaa\x6e\x56\xee\xe4\x60\x85\x8f\x15\x50\x1e\xfc\x8a\x4d\x4d\xef\xdc\x6f\x20\x4d\x66\x24\x7a\xd2\x9e\xac\xa2\xb8\xe6\x2f\x98\x94\x3d\xa4\x2d\x67\x76\xe5\x35\x2d\x4c\x52\xda\x90\x3b\xe9\xcb\x1f\xbc\x48\x19\x09\xa7\xba\x84\x2d\x05\xfe\x97\x77\x6b\x2a\x12\xc4\x60\xb4\x84\x0d\xea\x52\x07\x64\xee\xe2\xcf\x3f\xe5\x56\xd9\x5d\x57\x29\x47\xd7\x97\xda\xfe\xaf\x24\xc9\x21\x44\x9f\x54\x30\x3c\x26\xe1\x2e\xc0\xdc\xd9\x7d\x90\x36\x46\xc2\xd8\x8e\x3f\x37\xff\x67\x3f\x5f\x9a\x8c\x8f\xeb\x94\x71\xff\xcc\xdc\x67\x6c\x0d\x4f\x16\xb7\x6a\xe2\x74\x9e\xfe\x94\x30\x82\x6c\x9f\xb9\x12\x12\xfa\x20\xa5\xab\x0d\xb0\xc7\xb9\xcd\xb9\x1b\x5f\xd0\x3f\x2d\x77\xdc\x15\x8c\x8f\x42\x70\xa7\xcc\xb1\x0d\xe2\xfa\x01\x75\x61\xb2\x13\xe7\xca\xfc\xd3\x2b\x79\x4f\x42\x3d\x30\x23\xe1\x60\x84\x09\x73\x46\x6b\xf1\x85\x1b\xf8\x42\x46\x3a\xa2\xd1\x7c\xab\xb4\x8e\x99\x4b\x13\x6c\xce\xc6\x43\x12\x83\x53\x21\xae\xba\xec\xca\xbf\xdc\x39\x5e\x3b\xc5\xc4\x0f\x68\x60\xe3\x49\x0d\x75\xd3\xf3\xe4\x7d\xd9\xf7\x66\x53\x3e\x42\x4e\x5c\xc0\x60\x4d\xff\xdb\x8f\xb2\x39\xb5\x37\x74\x03\x94\x4c\x85\x67\x2f\xf8\x3f\x8c\x56\x26\xc7\x6d\xd8\x65\x03\x45\x1e\xa8\x43\xb5\xfc\xd5\x9b\xe4\x09\xe8\xec\xec\x02\x1d\xc7\x4b\x94\x01\x70\x03\xe3\x1a\x76\x4d\xc8\x18\xb3\x5e\xd7\x40\x83\xc8\x24\x14\x7e\xaa\xd3\x35\x44\x99\x2d\x20\x41\x1d\x5c\x35\x27\x7b\x3b\xbc\x26\x75\xab\x4d\xc4\xd1\x08\xa2\x30\x7e\xfb\x9d\xb1\x0a\xff\x05\x96\x7d\xfa\x49\x7e\xe8\xcd\x51\x4a\xc2\x74\x88\x1f\xa0\x1a\x2a\x8b\xf2\xe3\xbb\xef\xf3\x8a\x64\x01\x4e\x1d\x00\xbd\x3d\x7a\xa1\x0e\xa3\xb6\x40\x08\x3e\x47\x63\x6f\xb9\x44\x0b\xb2\x34\xf4\x4e\xc9\xf3\xfc\x09\x77\x7e\x29\xf5\x20\x0b\xa9\xc2\xe9\xde\xc4\x14\xc3\x55\xe7\x46\x5b\xfd\xf9\xd7\x8e\xf0\xa8\xd5\x8b\xac\x2b\xea\xa0\x01\x72\x5a\x9b\xac\xd0\x2a\xd4\x10\x3c\xa5\xe8\xf7\x1d\x49\x2b\x00\xce\xe8\xdf\x57\x1c\xb2\xa6\x4c\x29\x4d\x01\x6e\xf5\x95\xf7\xc9\x25\x6e\x39\xb4\x6b\xf1\xd1\x4d\x65\x88\xef\xd1\x78\xd5\x0d\xec\x73\xdd\x8b\xee\xfe\xfc\xdf\xea\xaa\xf7\x98\x39\x44\x28\x52\x7c\x4c\x70\x57\xe6\x5b\xc4\x35\xf1\x9a\x96\x2a\xfc\xdc\x79\x92\xfa\x33\xab\xe5\x2d\x3c\xf1\x86\xd4\xf3\x02\x58\xfd\xb8\x57\xf4\xf5\x44\x62\x63\x9f\x14\xed\x3b\x96\xa4\xc1\xd4\xad\xaa\x8d\xf7\xc3\x9b\xd3\xc4\x30\x15\x60\xb7\xf9\x87\xf2\xfc\xe9\x21\xdf\x10\xfb\xad\x79\x4a\x7d\xeb\x07\x34\x11\x5b\x2e\xce\x7d\x82\x77\x02\xf3\x30\x0b\xc2\xbe\x3e\xa2\xc4\xe8\x9f\xf5\x72\x81\x24\xee\xfe\xa9\xcd\xe3\xfe\xbc\xf5\x63\x22\x66\x96\xba\xa3\xdc\x36\x39\xeb\x43\x0c\x94\xf7\x84\x7c\xfc\xf9\x77\x28\xab\x50\x14\xda\xbe\x98\x01\x46\xa3\x14\xeb\x08\x6a\x84\x00\x8d\x48\x68\xe0\x37\x47\x0a\xa1\x46\xfd\x44\xa5\xfb\xa5\xc6\x1f\xd0\x13\x33\x5a\xc1\x85\x63\xd9\x5b\x1c\xba\xa1\x9f\x4e\x2d\x50\x5b\x0b\x5e\xcd\x21\x7e\x0a\xe5\xc9\xbf\xf5\x88\x3e\xb4\xaf\xc7\x0d\x02\xc7\x07\xe4\x5f\x5d\x94\x3e\xe1\x2a\xa8\xef\xad\xb5\x79\x25\xb4\x0c\x55\x91\x9b\xea\xba\xcc\x52\x84\x4f\xb0\xba\xb3\x79\x7f\xa8\x06\x22\x25\xbe\x49\x9d\x44\xfc\xb6\x47\x32\xd9\x6a\x89\x9d\x52\x61\x5d\x9e\x5f\x0a\x27\xf4\x89\x81\x6c\x4e\x1e\x5e\xc0\x7f\xeb\x0a\xa4\xa8\xd1\xe4\xdf\x7e\x51\x1f\x62\xb9\x16\x0a\x02\xe4\xf2\x48\x08\x43\xac\xaf\x3c\xa2\x08\x4c\x36\x68\xdc\xff\x40\xdb\x79\x70\x63\x42\x29\x20\x36\x0a\xf8\xd0\xb9\x3f\xf7\x8b\xf7\x53\x76\xab\x0b\x98\x40\xf9\x90\xf7\x6c\x93\xa5\x11\x5e\xe3\x61\xd7\x14\x9a\x94\x85\xc6\x69\xba\xca\xa5\xed\x64\xbc\x91\x0b\x96\x22\xa2\xe8\x53\xc4\x11\x07\x07\x1e\xd3\x1d\x68\x28\xc3\x7c\x1e\x9f\x7b\x67\x07\x07\x85\x5e\x8f\x02\x8b\x35\x55\xa8\xc3\xa0\x87\x2f\x90\x1f\x03\x56\x6a\x97\xb6\x84\x9b\x23\xab\x35\xfd\x50\xc6\x48\x3d\x6d\x95\x36\x75\xa4\x17\x30\x84\xb2\x68\x6d\x39\x4b\x4e\xf2\xf1\x1a\x3e\x33\x7f\x70\xb9\x22\x15\xe3\x22\xbb\xe9\x07\xbc\xb2\x7f\x47\xe3\x58\x78\x75\xff\x8a\x5e\x22\x0e\x1c\xf1\xe4\xf6\x69\x86\xb0\x1b\x2d\x7c\xf4\x0e\x1f\x9a\x06\x68\x4d\xa9\x3b\x72\xaf\x51\x24\x1a\x40\x8f\x1f\x12\xce\xd2\xc9\x0a\x55\x8e\x86\xc4\x81\xb1\xe1\xd2\x35\x19\xc1\x37\x19\x3d\x2b\x1f\xa9\x32\x23\x09\x3b\xa8\xf0\xdb\x7d\x6a\x0e\xb1\x39\x3e\xb2\xb8\xfe\x79\xb9\x5b\x99\xd5\x39\x75\x72\x57\x47\x47\x4b\x0f\x38\x47\x31\xbe\xe1\xb6\x8d\x7c\xcf\xf3\xb5\xc1\x12\x84\xe1\x97\xe1\xc7\x9d\xbd\xf1\x42\x75\xc8\xef\x90\x20\xc0\xfa\xe8\xbe\x3f\xd7\x2b\xb5\x0b\xcd\x10\x36\x14\x43\xde\xcd\xd8\xa8\x59\x14\xa6\xcc\x8f\x3f\x97\x6c\x57\x42\xc3\x80\x89\xdd\xe0\xe5\x0a\xc5\x89\xb2\x20\x24\x01\x0d\x21\x79\x8e\x7f\x38\x3b\xae\x6b\x58\x08\xd4\xed\xa2\xa3\x1f\xaa\x7b\x87\x84\x38\x0b\xac\xd9\x57\x5a\x3c\x67\x3d\x1c\x10\x75\x2e\x72\xd5\x62\x4d\x1b\x0d\x63\x4f\xd4\x22\xf3\x5e\xe3\xdb\x40\x86\x15\x15\xce\xfe\xfc\x4b\x47\x05\xbb\x2e\xf4\x6b\xa5\xee\xe8\x4b\x7b\x95\x30\x4b\x9d\xf4\x6d\x1c\x5f\x92\x25\xa6\xfb\x08\x31\x1b\x61\x37\xee\x2e\x2c\x7c\x2a\xa2\x61\x7f\xe1\xc1\xf1\x1a\x85\x07\xb8\xf6\x5c\xeb\xeb\x82\xe9\x6a\x1d\x66\xe2\xf8\x63\x19\x96\xe0\x5a\x8e\xd5\x8c\x98\x03\x16\x26\xfe\xd5\xb9\x6b\x4f\x64\x4f\xf9\x67\x13\xa6\xe7\xa1\xfd\x5a\xab\x56\x46\xae\x09\x63\x5f\x2e\xc1\xf5\x93\x72\x8b\x29\x21\xaf\xf2\xc4\x7d\xfa\xaf\x75\x42\xbc\x14\x56\x7c\xb0\xa0\xba\xeb\x3c\xd5\x59\xdc\x35\x1b\xa8\xca\x97\x7f\x77\xef\xd3\x94\x65\x1d\x54\x85\x15\x85\x70\x3f\xfb\xcc\x59\xe7\x2b\xc7\xc3\x6c\x11\xa3\xe9\xcf\x8d\x90\xb6\xec\x9e\x01\x49\xe3\xcd\xb6\xc4\x62\xc0\x4e\x0d\x41\xf2\x5f\x7f\xa8\x4d\xe1\xb5\x09\x0b\xb0\xf8\xdb\x38\x9a\x04\xb5\x81\x5d\x3f\xe4\xe2\x59\x85\x95\x0f\xf3\x37\x7d\xad\x9d\x09\x39\x03\xd6\x72\x84\xec\x0a\x1a\xb6\xc8\x1d\x15\xfe\xbd\x4d\x37\x66\x0d\x48\x6a\x06\xdc\x5f\xbc\x7c\xd4\x38\x4f\x11\x21\x22\x10\x7e\x5b\x24\x93\xac\xf4\x86\x37\x32\xe6\x68\x47\xad\x2c\x39\x15\xbb\x98\x55\x9b\xa7\x3a\x33\xf9\x33\x35\xa1\x71\x9f\x32\xea\x67\xac\xd6\x72\x78\xb6\x62\x17\x4a\x01\xa4\x09\x47\xf4\xbf\x9f\x92\xd1\x48\x55\x76\xbe\x4f\x68\x6f\xa3\x3e\x54\xf3\x03\xa8\xc1\xa5\x35\xce\x42\x73\x60\x22\x67\x71\xdd\xb2\x52\xf7\x44\x5d\xad\x95\x79\x98\x5d\xea\x9f\xf2\x78\xd7\xf8\x0c\xa6\xd4\x83\x98\x81\xf9\xfc\x34\x09\x69\x37\x73\xb1\x0a\xd1\x0e\x70\x13\x81\xf8\xad\x1d\x9e\x93\x2d\xe6\x2d\x90\x14\xc8\x0a\x66\x16\xfd\x67\xd5\x75\x92\x0d\x90\xbd\xee\xfe\xdc\x95\x1f\xa5\x29\xfc\x52\xa0\xfc\x4d\x7a\x58\x4b\x3c\x60\x9e\xc5\x57\xab\xa3\x34\x3d\x41\x80\xce\x89\x40\xf0\xec\xeb\xd2\xe7\x90\xc4\x95\xdb\x81\xc5\x1a\x1b\x00\xd9\x76\x22\x6d\xdb\x5f\xe8\x5b\xae\x9b\xfd\x51\x4d\x87\xb4\x30\x43\xff\x01\x34\x74\x53\x5e\x55\xee\x27\x9a\xd5\x1d\xf6\x3d\x0a\xc5\xaf\x60\x11\xbd\x71\xcd\x08\xed\x5f\x7b\x09\x5b\x6a\xdc\x3e\x2d\x41\x85\x20\x31\xc8\xc5\x7f\x6f\xd3\x17\xe1\xc8\xb6\xc5\xe8\xfe\xcc\xa7\xb2\x86\x15\xd8\x16\xcc\xf8\x71\x32\x92\xbb\x41\x3d\xee\x54\x46\xf0\x5b\x5f\xc5\x7e\x20\x34\xab\x4f\x5c\x3c\x5a\xd9\xec\x7b\x0c\xfb\x20\x68\x22\x0a\x91\x7d\xab\x64\x09\xd7\x20\x6e\x85\x61\x65\xb8\x99\xff\xf7\x57\xb4\x55\x8b\x45\x5c\x74\x2a\x67\x9d\x45\x47\x64\x68\xe1\x9b\x5c\x4e\xec\x7d\x51\x21\x9f\x9b\x21\xa7\xed\x47\x8b\x5f\x18\x9d\x86\x86\x44\xa2\x39\x05\x6c\xcd\x57\x00\x9e\xc8\x06\x02\x91\x3c\xde\x33\xde\xcb\x3e\x7b\x86\x6f\x0b\x89\x34\x00\x28\x0e\x53\x04\xd9\x0d\x52\x07\x4f\x84\xf8\x39\xfd\xea\x15\xa5\x20\xf6\x3c\x46\x11\x27\xcf\xf6\xe7\xb6\x0f\x1a\x24\x8a\x6a\x22\x84\x16\xf2\xf9\xf7\x78\x95\xe3\x87\xac\x82\x0c\x5c\x0a\x68\x09\x81\xc8\x6b\xe1\x0a\x5b\x41\x69\x52\x9b\x18\x98\xab\x25\xfe\xa2\x43\xf5\xaa\xb7\x6d\xec\xfa\x35\xf8\xbd\x3f\x7a\x57\x6b\x29\x31\x12\xf5\x4e\xf1\xcc\x63\xe9\xf9\x37\x28\x2c\xf5\x9b\xfb\x75\xf0\x39\x62\xf5\xc4\xe4\xba\xf3\xbc\xf4\xaf\x5b\x80\xf4\xca\x3d\xe8\x8d\x54\xb8\x4e\x41\x1c\xcb\x13\x08\x59\xe1\xe6\x9d\x0a\xe3\xd1\x71\x28\x43\xe2\x49\xe4\x6e\x92\x66\x1d\xc6\x8c\x0e\xe0\x09\x9e\xd4\xee\x16\xad\x24\xc6\xee\xc5\x9e\x95\xb2\x7b\x2b\xd3\x2a\xa4\xfa\xdc\x0f\x1e\x4d\xab\x51\xcf\xce\xba\x4b\xae\x1a\xa3\xdf\xd3\x35\x81\xc5\x07\xc3\xf9\xd3\x95\x11\x13\xd8\xa1\xc1\x6d\xb9\xae\x53\x1b\x9f\x7b\xc4\x4d\x5d\x53\x9f\x3c\x2c\xbb\x77\x46\x79\x85\xfc\xa9\x48\x97\xf8\xf3\xc2\x40\x82\x67\xa2\x6f\x9e\x91\xf1\x8e\x54\x4c\x31\xf5\xea\x90\x18\xb5\x54\x41\x73\x3c\x37\x32\x2c\x5d\x57\x47\x2e\xad\x2b\xd1\xab\xed\x59\x5e\x03\x81\xa3\x38\x07\xfd\x8b\xaa\xa8\xb3\x6b\xf2\xac\x59\x53\x4b\xdd\x51\xd7\xae\x16\x71\xce\x7a\x8a\xd1\xea\xcf\x5f\xbe\x73\xb4\xdb\xa2\xbe\x21\x10\x97\xd1\xe8\xce\x36\x15\x15\x63\x0a\xb9\xb2\xe8\x81\x81\x8a\x54\x41\x22\xe4\xd1\x9f\x3b\xff\xa1\x64\x34\x6a\x63\x03\x3e\xf8\xe6\xa3\x1a\x9d\x31\x40\x42\x74\x32\x77\xa1\x36\x3d\xac\xd0\x35\x93\x66\xcb\xc9\x5d\xc7\x12\x5d\x4e\x5e\x48\x5e\xf3\x5e\x3b\x77\xe5\x23\xba\xa8\x26\xf5\x53\x68\x59\xbe\x4f\xeb\x2e\x54\xc9\x54\x7e\xc0\xbf\xf4\xf0\x10\x45\xc9\x28\x0c\x40\x9c\x21\xf7\x1b\x57\xb5\xf2\xf1\xe3\xde\x94\x57\xd9\x97\x6b\xb0\x0b\x86\xab\x60\x80\xc7\xdf\xaa\xb3\x41\xd6\xba\x33\xa6\xce\x88\xbf\xf9\xe8\xfb\xb2\x03\x27\x37\xa8\x73\x58\x6e\xa6\x2f\xae\x5d\x23\xf7\x37\x0e\xf5\x5b\x59\x28\x1f\x5f\xab\x49\x01\xb5\x9b\xed\x9a\x2e\xf5\xd7\xf6\xcb\x22\xbd\x81\xb8\x4d\xad\x9e\x3d\xb7\xae\xcb\x9e\x2e\x9b\xc2\xdc\x82\x17\x79\x87\x47\xa9\x15\xbc\x83\x91\xcb\x9d\x10\x1e\xd9\xab\xad\x02\xb0\x6d\x83\x96\x10\x07\xb8\xe6\x06\x6a\xdf\x10\xc7\x25\xa7\x8d\x5c\xd3\x57\xb5\x72\xc7\x4d\xd4\x16\x1a\xb8\x5a\x45\xe9\x34\xbd\x20\x55\xa0\xca\xd6\x15\xf1\x6f\x1d\x37\x4e\x3b\x32\x1e\x0d\x04\xe8\xe9\xc9\x81\xda\xbe\x8a\x3a\x98\xba\x58\x2c\x00\xf2\x7e\xc7\x08\x85\xb3\x54\xa5\x01\x11\x76\xd3\xd1\x75\x8a\x27\x3c\xb7\x06\x94\x0d\x51\x89\x7b\xc4\x94\x56\x04\x18\x7b\x36\x36\x2c\x94\x1d\x14\x14\x37\xed\xd6\x48\xc9\x0c\xd4\x77\x52\xe0\xe0\xf7\xd7\x6a\x51\x94\xf8\x35\x0e\x67\x29\x76\x9c\xa6\x88\x3b\x85\x9c\x4c\x7d\x8b\xa6\xe6\x8a\xeb\x98\xa5\x0c\xa0\xbe\x0d\x03\xd3\x7f\x70\x61\xfc\x07\xe7\x68\x04\x17\x13\x1b\x71\xd0\xe0\x57\xe8\x55\x2d\xd7\x73\xd4\xc8\xa4\x14\x36\xeb\xee\x97\x12\x5b\xd3\xe2\xa6\x35\x7a\x4c\xf7\xdf\x27\x6e\xfc\xc2\x52\x81\xe5\x23\x27\xe5\x9e\x15\x3c\x36\x92\x43\xf6\x2f\x1e\x1f\xe0\x80\x59\x60\x7e\xe4\x4c\x85\x03\x67\x60\x17\x31\x02\xf0\x9d\xad\xed\x92\x6b\xa0\xea\x9f\xe5\xc6\xaf\x1f\x98\xfe\x83\xb8\x9a\x2a\x2c\xd1\x98\x89\x16\xe6\x7b\x62\xe4\x71\x62\x7b\xf1\x13\xcf\x0f\x16\x05\x05\x40\xb3\xf8\xc4\xbf\xf3\x91\x73\x94\x3e\x06\xf0\x68\x17\x3c\x9f\xfd\x49\x01\xb6\x31\x1f\x8b\x0b\x64\xc0\x2f\xc7\xf1\x14\x3a\x2f\xae\xa3\x41\xd5\xb0\x38\xb6\x5d\x22\x77\xa9\x61\x84\x1e\x01\xf4\x7a\x9a\xc8\x73\xfb\x57\xeb\xb7\x5d\xf8\xd2\xf3\x93\xbf\x6d\xbf\x8c\x1d\xf5\xc0\x27\xd4\x29\x75\x47\x3f\x3b\x91\xa2\xca\x2b\x76\xc2\x9b\x2a\x7c\xea\xfe\x36\xa5\x94\xef\x05\xfe\x10\xc4\xe9\xbd\x37\x0d\x49\x32\xbb\x0d\xac\x74\xf0\xd2\x7c\x47\x9b\x49\xb1\x2a\x0f\xd5\x00\x14\xdd\xaf\x12\x0c\xe3\xb6\x92\x0f\xe5\x72\x3f\x93\x1c\x91\xae\x69\xf1\xfb\x29\xfc\xe0\xed\x96\x95\xbe\x87\x8d\x40\xe8\x43\x82\xba\xd7\x64\x75\x91\x11\xb7\xbd\x89\xd9\x4b\x36\x70\xd0\x39\xc2\x5e\x9c\x54\xf9\x16\xff\x37\x3b\x54\xee\x0b\xb1\x4d\x40\x98\xc5\x4f\x75\xe2\x13\x2d\x02\x20\xf1\x77\x5a\xb6\x48\xc3\x5e\xe3\x8a\x90\xf4\xea\x2f\x74\x8c\xd2\x36\x38\x1e\x36\xc0\x88\xc3\xb6\x13\x89\xa7\xdc\xaf\x2f\x16\xe3\x5e\x54\x26\x2e\xe6\x49\x6e\xc8\x8d\x43\x95\x79\xa0\xeb\x92\x00\x95\xba\xa3\xef\x4d\xd4\x01\x3b\xd8\x4c\x1b\xd2\xb3\x1f\xd1\xcd\x2b\x7c\xa1\x0d\xd1\xdd\x9f\xb7\x2e\x1b\xa6\x16\xa1\x36\x6a\x72\x96\xd0\x75\xaf\x0c\x73\x5b\xc0\x5c\xdd\xfd\xf9\x6b\x6e\xe5\x3d\x9f\x49\xfc\x24\x11\x00\xa8\xec\x48\x62\xa4\x6f\x93\xc4\x7b\x65\xdc\x56\x59\x24\xd4\x08\x38\xd9\xff\xee\x21\xed\x73\x5a\x8c\xd8\x42\x56\xb5\x58\x5b\x2b\xa5\xe2\x5c\xaa\xaa\xaa\xe7\xa7\xbe\x2d\x3f\x4d\x19\x1b\xd4\x11\x69\x77\xe8\x83\x9a\x8a\xb6\xeb\xc6\x11\x2a\xae\xf9\x05\xaa\x7e\xe8\xc4\xb6\x24\x87\x07\x0c\x78\x1c\x30\x70\x8d\xbc\x41\xf2\xc3\x55\xc0\x7c\x2a\x7a\x71\xc1\x05\xca\x62\x9a\xd4\xb9\x5a\x56\x36\x29\x9d\xfd\x3c\xff\x9e\x01\x65\x41\xc8\x27\x2c\xc5\x59\x45\x4d\x44\xc6\xc4\xbe\x2f\xdd\xfe\xa2\x1d\xdb\x5b\xc4\x28\xab\x2e\x4a\xeb\x90\xc2\xaf\x1f\xe1\x65\xed\x7c\xe4\x5b\x4e\xc6\x34\xe7\xd5\x07\xc6\x48\x4a\x40\x43\x9f\x2c\xdf\xf4\x1c\xff\x6a\xd8\x2e\x5d\x6b\xa1\x3e\x09\x70\xf6\x5f\x52\x74\xfc\x7d\x2b\x71\x53\x7f\x56\x43\x75\x31\x4a\x9d\x84\xb1\x94\xbb\xea\x90\xca\xf8\xa8\x62\x97\x24\xb8\xba\xc2\xb7\x3f\xd0\x14\xf7\x3c\x9e\x5a\x4e\x2e\xca\xa6\x37\x97\xba\xbd\x61\x02\xfb\xc9\x7f\x6a\xa7\x8c\x14\x56\x7c\x4e\xe2\x2b\xf4\xd2\x89\x96\xad\x59\x80\x8c\xc4\xe9\xb8\x3f\x3f\xb9\x87\x37\x20\x73\x99\x49\x5a\x17\x32\x0f\xae\x4b\xb7\xc0\x5c\x72\x9a\x72\x03\xb4\x7b\x35\x43\x41\x1a\x0a\x27\xd3\xd1\x1a\x59\xaa\x0f\xd5\xa8\x9b\x50\xaf\xa3\xd9\xc5\x11\xca\xf8\xd0\x56\x98\xa0\xb9\x61\x8a\x17\x13\x5e\xe3\x21\x6e\xcd\x1d\xf9\x67\x5d\xaa\x25\x74\xe6\x72\x79\xfc\xd6\xba\xe3\x89\xfb\x5a\x8c\x46\xc5\xb0\xd9\xa3\x29\x04\xea\xf5\x0f\x95\xe5\x22\xb5\x4d\xc2\x07\x88\xff\xfe\x9a\x9e\x77\x91\xeb\xc7\x91\x4a\xdc\xe8\xef\x2f\x92\x2f\xab\x17\x53\x0f\x31\x33\x0e\x89\xf1\x61\xdc\xac\x99\x4f\xfa\xd8\x21\x80\x69\x96\xa7\xea\x69\x76\x81\x56\x5f\xd6\xb1\x1f\x90\xaa\x64\xc7\xf7\xe7\xee\xb8\xb8\x45\x48\x2a\x91\x3a\xcb\x6d\x3a\x6f\xa0\x44\xd2\xc6\x97\x7a\x89\x02\xd4\x22\x42\x0f\x36\xfa\xed\xc3\x59\xec\xa1\x45\x1d\xcc\xf1\x16\x9a\xda\xf2\x51\x65\x0c\x49\x5c\xec\xa4\x09\x64\x2b\x57\xd0\x2c\x2d\x06\x05\x56\x1f\xfc\x15\x93\xef\xf0\xb2\xa6\xf6\x68\x12\x5f\x70\x0b\x04\xde\x63\xf3\x1b\x9a\xda\xd5\xd4\xc9\x53\xa6\x4f\x11\x23\xe7\xab\x0e\x2a\x23\xdf\xd0\xe5\x62\x05\x85\x0f\x34\x11\x4b\xa8\x36\x78\xad\x86\x14\x81\xb2\xa9\xd3\xa7\x27\x53\xea\x6b\x0e\x65\x0c\x6c\x60\x22\xdf\x72\x6a\x9f\xd9\xad\x4f\x3d\x40\xc0\x50\x94\x1d\x4f\x1f\x50\x55\xb7\xab\x6e\xa8\x16\x68\x93\xde\x92\x52\x59\xd5\xce\xd6\x01\xf4\xed\x63\x78\x04\x58\x80\xea\x04\x2b\xff\x30\xb7\x6e\xa7\x64\x17\x1b\x56\xcb\x50\xf0\x33\x17\x2b\x6d\x31\x46\x35\xee\xb0\xd4\x1d\x1d\xdc\x9e\x26\xf2\x6a\x68\x27\xcb\x9a\x3b\x0f\x69\x2c\xfe\x90\xb9\x52\xb8\xfd\x1b\x63\x32\x63\x64\x23\x2c\x73\x65\xe1\xfe\x62\xcf\x13\x72\xbe\x41\x59\x15\xb9\xc2\x81\x80\x77\x7d\xdf\x5f\xa3\x24\x18\x44\x6c\xdf\xe3\x53\xa3\x4d\xb7\xea\xec\x5c\x8f\x04\x48\x74\x83\x7f\x50\x1c\x4a\xe2\x7e\xaa\x46\x71\xa9\x3b\x9a\x7f\x4c\x36\xc3\x75\x12\xf0\xd5\xcc\x73\x33\xc7\x68\xe5\x23\xf0\xd4\xd2\x81\x84\xd6\x5d\x04\x0c\xf1\x1e\x0f\x12\x30\xac\x33\xde\xe9\x1a\xe5\x66\xc0\x25\x04\xd9\xe9\xb2\x77\xf8\x56\xa5\x0e\xe4\xfe\xf0\xf0\xa5\x6b\x17\x8b\x46\xd0\x4e\x6c\x47\xd8\x28\x81\x05\xc2\x0e\x29\xd9\xb8\xca\x07\xae\xdd\x5d\x43\x33\xe1\x31\xe0\x1e\xe5\xaf\x48\xb9\xeb\xce\xa9\x93\x4b\xdd\xd1\x3f\x7c\xa0\x0a\x78\x03\x9a\x48\x38\xe9\x5e\x3e\x51\xb1\x84\xa1\x0d\x80\x1f\xc0\xd8\x40\x9b\x65\x19\x8c\x38\xc9\x34\x3c\x38\x6b\x70\x23\x59\x41\x20\x81\x2a\x9f\xaf\x79\x37\x96\x11\x63\xc8\xa8\x25\x31\xb9\xd8\x33\x9b\xa7\xbc\x29\x9d\x25\x1f\xf4\x29\xbb\xfb\x8b\xa3\x8e\x48\x7d\x2a\xa6\x78\x01\x16\x1e\x3b\xd0\x26\x3d\x56\x94\x8d\x64\xfe\x1b\x8f\x9f\xc2\xdd\x24\x81\xb0\x3e\xf3\xac\x26\x90\x8c\xcc\x76\x3e\x68\x98\xa6\x69\x8a\x03\x6c\xca\xe5\x7b\xe5\xd3\xb7\xca\x8a\xdd\x56\xc9\x41\x8f\x06\xe9\x9e\xd0\xa1\xa9\xcd\xdf\x91\x77\x12\xf3\x0e\xea\xf0\x84\xf8\xdd\x51\xc3\xf5\x20\x22\xd8\x1f\xac\x4f\xbc\xc5\x90\x61\x0e\x2e\x0f\xd7\xea\x52\x92\x42\x12\x5d\xde\xd6\xcb\x36\x8e\x74\x35\x30\x52\x22\x5a\xfb\x8d\x5b\xd2\x3a\x15\x83\x18\xd9\xa0\xc3\xfc\x45\xcc\xe7\xab\x15\x2e\x08\x39\xf6\x69\x59\x93\xc0\x7f\xdd\xfd\xb9\x43\x6c\x78\x66\xb2\x15\xc4\xc7\x30\xce\x6d\x4f\x1e\x55\x8d\x1c\x98\x2f\xc8\x7b\xde\x79\x9a\x0e\x25\x58\x43\x24\xd5\xde\xc6\x9b\xce\x16\x3d\x22\x17\x22\x8b\xbe\xbc\x67\x84\xd2\xbe\x2b\x2a\x89\xfd\xf9\x70\x6f\xf6\x27\x59\x88\x31\x52\x45\xc2\xa9\xf9\xad\x65\xf2\x73\x25\x2a\x19\xfc\x62\xaf\xe0\xe8\xf6\x12\x71\x3c\xcc\x40\xbf\xc3\x81\x29\xf2\xbc\xe1\x4a\xcc\x51\x8f\xc6\xe6\xf7\x07\x8a\xc2\x8e\x0f\x72\xf2\x9d\xb3\xf9\xc0\xfb\x46\x6c\x62\xd8\x19\xa7\xa4\xdf\xe6\x13\x3c\xe0\xf9\x16\x6d\xa4\x08\xc8\x52\x77\x84\xed\x73\x94\x51\xb6\x17\x07\x85\x29\xb7\x9c\x23\x2e\x22\x6d\xc4\xd7\x03\xe2\xfe\x49\xad\xfc\xb4\x69\x23\xd5\x26\xf8\xe6\x63\x49\xb5\x1d\x07\x1c\x6e\xbe\xfe\xfa\x2a\x95\xf1\x99\xf8\xc5\xfd\xf3\xc3\xd9\x44\xd1\xd9\xd1\x31\x43\x24\x8a\x6b\xb6\x29\x1e\xdd\x8c\x56\x08\x1f\xc8\x17\xfe\xb8\x46\x77\xac\x4d\x2d\xba\xd9\xd1\x73\x95\x48\x42\x5a\x82\xf5\x5f\x56\x2b\xcb\x60\xfb\x0a\xdf\x80\xf8\x71\xc5\x3d\xfc\x49\x94\x19\x46\xb5\xc0\x02\xbe\x03\x14\x43\x37\x28\xa8\x15\xe4\xfb\xc0\x3c\x0f\xc4\x07\xff\xfc\x01\x4d\x31\x9d\x61\xd7\xe4\x27\x7e\x8b\x86\xf3\x96\x3b\xe0\xf8\xf9\x3e\xf3\x60\x56\xae\xdb\x06\xa2\x8c\x0a\x9e\x8b\x46\xf1\xbe\x00\x0c\x67\xe4\x9d\x38\x67\xbc\x78\x0b\xb0\xb5\xe5\x2e\xc6\x17\x3e\xaf\x02\xc2\x5d\x22\x8c\x6c\xa3\x1f\x69\x73\x76\xe2\xfb\x21\x16\xa6\x34\xbf\x38\xa6\x78\x37\xc5\x3d\xe7\xe4\x47\xf9\xf7\xbf\x21\x64\x0c\xa9\xb0\xdf\x8d\x8f\x6a\xd4\xca\x3a\x30\x93\x01\x23\x1b\x7d\xf8\xc4\x10\xb5\xea\x17\x0c\x38\x6b\xe3\x28\xa5\xf6\x85\x62\x8b\x54\x85\xb0\x64\xfe\xfc\x3d\xe2\x1b\x34\x52\x1f\xe6\xfc\x95\x1b\x15\x2f\xec\x20\xe4\xd4\xaf\xf9\x1f\xc8\x72\xb2\x17\xa9\x23\x84\xdc\x1d\x1f\x2a\x8b\x71\xc2\xed\x39\x60\x42\x94\xdb\xae\xaa\x56\xba\x75\xec\x92\xf8\xf7\xc2\x8b\xfc\xd5\x0e\xc5\xed\x5e\xc0\xbd\xe0\x7f\x54\x66\x6a\xeb\x7a\x20\xb0\x08\xfc\x5a\xa1\xb8\x2e\xeb\x90\x99\x04\x97\x73\xef\x18\xd6\x5a\xab\x74\x47\xec\x01\xf9\xc7\x88\xa1\x72\x12\x2d\xbf\xaf\x39\x78\x33\x5c\x09\xab\x58\x20\x99\x56\x7a\x42\x58\x0d\xe6\x10\xe7\xdd\x32\x34\x39\x6d\xd4\x20\x82\xa7\x16\xdd\x30\x93\x47\x38\x20\x47\x21\x02\xc7\x28\xec\xd1\xd7\x95\xfa\x6a\xef\x2e\xa1\xc8\x03\x36\x3d\xe2\x49\xe4\x7f\xf9\x68\x46\xd3\x8b\xf0\xcd\xe4\xed\x0b\x74\x54\x58\x90\x9c\x96\xbe\xbd\xca\x1d\x70\x4d\xa6\x84\x9b\x68\xf9\x04\x78\x9f\x36\x76\x4b\xd3\x13\xc7\xb4\x37\x07\x89\x77\x6f\x86\x76\x95\x4b\x80\x2f\x90\xdc\x04\xbc\x26\x60\x88\xab\x4b\x32\xc2\x5b\xa2\xc1\x22\x42\xcd\xa3\xa1\x6d\x92\x8c\x1b\xee\xfc\x0e\xf9\x61\x6b\x36\xf6\x6b\x30\x1e\xfa\x99\xc6\x7e\xa4\xf5\xc4\x4d\xa4\x78\x8f\x98\x33\xc0\x4d\x86\x0b\x32\xb9\x4f\x59\x82\xc6\x7d\x2b\x46\xad\x36\x71\x5f\xde\x25\x43\x53\x83\x82\x28\x73\xa9\x3b\xba\xe2\x58\x46\xc7\xb5\x42\x18\xe4\xba\x68\x52\x51\x1b\xbd\x55\x2a\x94\x09\x85\xef\xdc\x8e\xdd\x3a\x9a\x35\xee\x05\xea\x89\xbe\x4e\x61\xfb\xda\x34\xd1\xb2\x40\x69\x93\xf2\xaf\xe7\xf9\x25\x5c\x42\x2d\xd7\x55\xc5\x0e\x66\x2f\x19\x9a\x7c\x04\x3f\x60\x08\xfc\x84\xba\xfb\x0b\xfb\x06\xab\x4d\x66\xe2\xc7\x0a\x95\xdd\x5f\x8e\x0a\xe2\x1c\x09\x2c\x93\x01\x6f\x27\x37\xa0\x43\x7e\xc5\x72\x68\x56\xc5\x08\xa4\x52\xd6\x98\x79\xcd\xa0\xd4\x31\xad\xd4\xd1\x55\x9a\x35\x93\xaf\x34\x72\xc6\xd3\xf2\x54\xdf\x46\x5c\xc3\xc2\x7c\x83\x74\xaf\xc2\xb3\xad\x84\x2e\xdf\x2e\x71\x9a\xe2\x99\x9b\x35\xe7\x53\x1b\xaf\xc1\x24\x33\x70\x8e\x7e\x70\xda\x10\xf5\x0e\x09\x7e\xfa\x67\x83\x96\xab\x42\x99\x93\x2a\xb8\x14\x07\xab\x19\xc1\x04\xeb\x8a\x3f\x8e\x1b\xab\x1d\x07\xcc\xe2\x1e\xcc\x89\xcf\x30\x2f\x75\x37\xee\x56\xa6\xf4\xd8\xf1\xf8\x4c\x65\xca\x0b\xe9\xab\x20\x30\x23\x49\x02\xed\xdc\xf5\xc2\xcc\x17\x63\x50\x44\xf9\xd5\xd2\x84\x24\x87\x5c\x5f\x78\x4a\xc0\x92\x74\x54\x76\x74\x5d\x63\xd8\xb1\x09\xb4\x7d\xaa\x65\xd0\xd7\x8e\x68\x51\xd4\xc1\x40\xc1\x85\x99\xff\xdb\xfb\xd3\x6a\x66\xd6\x8c\xe9\xa5\xee\xe8\x5b\x96\x2c\x5c\x6c\xda\x80\xd4\xb9\xed\x1a\x5d\x27\xc2\x0d\xdd\x38\x3c\xa4\x6c\xea\xc2\xa2\x11\x9a\x84\x87\x0b\xc9\x0a\x06\x60\xf0\xba\x9c\xe5\x2a\xeb\x3d\xe4\xce\x47\xb9\x7f\x55\x64\x60\x4c\x5c\x65\xc8\x4c\x40\x26\xb9\x4f\xad\x51\x60\x0c\xd4\xc1\x30\x92\x2f\x75\x47\x3b\x4f\x68\x9b\x20\x1b\x35\x01\x17\xc7\x8b\x99\x27\x17\x29\x1b\x30\x16\x36\x21\xa0\xe7\x2e\x5c\xa3\x88\xb0\xca\x63\x1f\x3d\xbd\x2d\x3b\x05\x10\x7e\xd5\xa7\x22\x7e\xe4\x3b\xa6\xa7\x42\x4b\x55\xdc\xba\x9d\xbd\x74\xf7\xc7\x45\xe9\x35\x03\x2e\xc8\x68\x05\xe3\x6c\x11\xcc\xb8\xa7\x59\x77\x7f\xf1\x8b\xcf\x0e\x4e\x8f\x7b\x32\x57\x3a\x7d\xf0\x78\xed\xdc\x09\x9d\x26\x0e\xba\x49\x3a\xe1\x2b\x04\x75\xcd\xa0\xae\x19\x1a\x41\xa9\x3b\xb2\x76\xc9\xf0\xc8\x50\x76\xe6\x94\x1f\x3a\x4f\x94\x58\xd8\xf5\x49\x99\xd8\xa9\xd5\xe0\xa1\x05\x7a\x91\xde\xe0\x45\x7a\xe1\x57\xca\x02\x91\xa1\x0a\x17\x27\x28\x4e\x7a\x4a\x76\x38\x0d\x86\x3c\x8f\x4f\x0a\xfd\xad\xfc\xa2\xcf\xe5\xaa\xa3\x90\x06\xfb\x8e\x66\xbc\x74\x12\xd4\x6c\xa9\x3b\x1a\xbb\x5a\x33\xed\xa2\x6e\x60\x25\x33\xab\x03\x93\xb3\x71\x0b\x18\x83\x40\x54\x06\x89\xbf\x4f\x2e\x3f\x37\x3b\xda\x34\x32\x91\xba\xb0\xf2\x98\x54\x07\x28\xa3\x84\xdf\xf4\x61\x59\x9b\x8e\x38\x1e\x10\xb2\x05\x01\x1a\x4a\xe3\x2d\x8a\x2a\x4e\x40\x19\xac\xf3\x0b\x3f\x6f\x1b\xae\xcc\x28\xfd\xa0\x54\x73\x79\xd9\x59\x28\x7c\x20\xff\xfa\x6d\xa4\x19\x42\x9b\x36\xf2\x90\xb6\x91\x75\x69\x23\xd9\xe1\xcd\x3f\xa9\x0e\x5f\xb9\xae\x6b\xfc\xe7\x3d\x8f\xc9\x42\xc5\x41\xbe\x8f\x0c\x2b\x8c\x2b\x2b\xf8\x47\x87\xce\x92\xcb\xb0\xf8\x69\xc7\xcd\xaa\x9e\x5e\x87\x6c\x1e\xa4\x14\xe1\xf1\x43\x3a\x70\x44\x75\x14\x8e\xbb\x85\x64\x7c\xfb\xd8\x1e\xb9\x1e\xfd\x44\xcb\xe8\xa1\xba\x81\x47\xf8\x79\xed\x4b\x94\x32\x30\xff\xec\x20\x8d\xe9\x4e\x4d\x33\x51\x90\x2c\x0c\x19\xa0\x15\x78\x55\x9a\xcc\x41\x8a\x6d\xaf\xe9\x6d\x7f\xb9\x8c\xaa\xb0\xed\x89\x76\xbd\xa6\xc9\x70\xda\xd4\xa8\x95\xc3\xb8\x6e\x4c\x9e\x18\xe6\xf2\xb9\xa5\x65\xf0\xf1\x56\xb4\x7c\xf1\x19\x1b\xf5\x50\x53\xa7\x76\x1d\xa7\x56\xaf\xc5\x33\xda\xf9\xf7\xb1\x90\x6b\x36\x18\x49\x28\x3b\x3f\xb8\x29\x3b\x60\xa6\x95\x0a\x97\xd2\x6d\xa0\x26\x1c\xfe\xe2\xf5\x87\xe5\x63\xa2\x55\xd2\x40\x4c\x95\xf3\x9c\x73\x24\x7b\x9a\x02\xe4\x86\x44\xdb\x62\x8e\xda\xa0\xd9\x0a\x18\xa9\x46\x62\x6e\x67\x30\x42\xb2\xff\x7c\x75\x26\x5e\xb8\x6f\xc1\x20\x05\xc1\x11\xd7\x72\x37\xe7\xb3\x3f\x68\x26\x48\x99\x42\xc8\x7e\xe9\x0d\xcd\x62\x89\x19\x56\x58\xcb\x2a\xf2\xac\x3f\xa1\x59\xb4\x23\xdb\x16\x1f\x55\x02\x09\x1e\x7a\x41\x23\x22\x84\xc4\x0e\x12\x1d\xbf\xe8\xdf\xd4\xe2\x07\xbb\x4d\x2e\x7f\x30\xea\x56\x89\xdb\x75\x13\x0d\x42\x6f\x5b\x1a\x19\x7d\xdc\x4a\xcd\x5c\xa3\x91\x3a\xa0\x94\x4d\x39\xc8\xb7\x8f\x4f\x4c\x80\xc2\xa0\xd5\x34\xba\x3f\xbf\x63\xe0\x40\x91\x03\x84\xa8\xe3\xe2\x23\xd9\xef\x66\x80\x8d\x45\xd6\x41\x22\xf7\x1b\xc5\xd9\xb2\x81\xb8\x49\xf2\xc7\x8f\x29\xf3\x17\xec\x90\x0a\x71\x39\xc6\x38\x77\xf6\x19\x7c\xae\x73\x2d\xa3\x4a\x50\xb9\xf0\x62\x8d\x04\xc1\x68\x1d\xbb\x89\x8f\xf8\x86\x7d\x2d\xf3\x6f\x97\x13\x69\xb8\xf7\xd4\x50\x21\x3b\x84\x2a\x15\x62\x13\x6e\xb5\x92\xff\x51\x45\x68\x6b\x04\xbc\x2e\xca\xcf\x5f\xae\x31\x45\x3c\x8f\xba\xc9\x49\x2e\x9c\x36\x56\x9f\xb4\x70\xf3\x50\xbe\x38\x1d\x1e\xf0\x6c\x70\x69\x80\x58\x15\xdc\x3d\xb6\x9e\x91\xfd\x4c\x36\x2c\x96\x61\x52\x0b\xc1\x79\xf6\xbc\x2c\x10\x72\x46\x87\x98\xf0\x7f\xd7\xd4\xd4\x33\x42\x3f\x00\x2b\xb8\x68\xe9\x43\xff\x3f\x6a\xe4\x2b\x7a\xa2\x9b\xca\x32\x4d\x57\x50\x03\x5b\xc4\x75\x08\x10\x61\x87\x66\x73\x4c\x19\x55\x05\x66\xc2\xdf\xd6\x82\xf1\xf4\x71\x62\x6d\x75\xd6\x2d\xd9\xaf\xe0\x60\x18\x6e\xa5\xfc\xda\x4f\xae\x55\x5a\xe8\xa6\x5d\x07\x7d\x81\xc2\xb4\xad\x49\x91\x6a\xdb\xa8\x4c\x19\x7f\xdc\xc5\x25\xfb\x15\x62\x44\x47\x07\x6c\xf8\x72\x93\xde\x1c\x28\xca\x53\x8f\x77\x67\x9f\xec\xd4\xa8\x9b\xc2\xe8\xe1\x54\x58\xc3\x7f\xb0\x33\xa3\x1a\xd2\xc7\xc1\x9d\x5f\x98\x20\x7f\x11\x8a\x3b\xea\xf8\x0f\xbd\x83\xa2\x6d\xca\x6c\x4c\x97\xeb\x34\xb7\x38\x37\xba\x4b\x34\x56\x1b\x8e\x5f\xb3\x9b\x2d\x59\xff\x78\x8b\x6e\x42\x10\xba\xa2\x8c\x7b\x68\xc0\x28\xa5\xc2\x64\xd8\x57\x37\x20\xd7\xaf\xe4\x69\xba\x4e\x6c\x1b\x55\xe1\xf7\x35\x97\x69\x0b\x79\x0a\x72\x3d\xf0\xb3\xee\x7e\x58\xc3\x84\x53\x31\x6a\xff\xfa\xfd\x2d\xc6\x9f\x38\xae\x6a\x52\x59\xe1\x7f\x7d\x96\xaf\xd7\xa7\x75\x96\xba\xa3\xdb\x17\x69\x12\x1f\x88\x31\x12\xa7\x01\xfe\x70\x06\x0a\x8b\x17\x30\xc3\x8b\x5f\x62\xe4\x9a\xfc\x4f\xe6\x5b\xc4\xc6\x10\x6d\x8a\xb3\xee\x18\xa9\xac\x75\x40\x58\xcc\x15\xe6\x2a\xb9\x7f\x54\x70\x12\xbd\xd4\x52\xbc\x3d\x3f\xf6\xb0\xa6\xe7\x87\x0d\x62\x26\x4e\xb5\x47\x0e\x09\x09\x02\xc2\x8c\xb8\xc0\x01\x7c\xda\xfb\x0a\xb0\x18\x33\x57\x5d\x4f\xe4\x6f\x2e\xea\xf8\x4b\xdf\xc7\xc4\xcd\xcc\x0b\xf3\x7d\xab\xce\xd5\x43\xa9\xf0\xe5\xe3\x1c\xcd\xeb\x2a\xe9\x10\x3f\xac\xb6\xa2\x60\x3b\x1e\x1f\xaa\x88\x70\x39\x9e\x98\xae\x74\x5d\x96\xfd\xa9\x75\x6a\x87\x6e\x80\x13\xc7\xdb\xc2\xfe\xc1\xda\x0c\x2c\xf4\x3c\xbb\x29\xc4\x34\x5f\x9c\x2c\x89\xcf\xd0\xcc\xb7\xf4\x9d\xb9\xfb\x5d\x7d\xeb\xe7\x10\x17\x8b\x37\x94\xff\xfa\x32\x5d\x17\xd3\x15\xb6\x67\x32\xdf\xfd\xf5\x6a\x65\x08\x13\x17\x1c\xf1\xe1\xfa\x68\x70\x36\xd1\x5a\xb4\x81\xb9\x67\x5b\x72\x22\xff\x3f\xb6\xbe\x3e\x5e\xaa\xaa\xdc\xdf\x3d\x33\x91\x19\x22\x1e\x0e\x2f\xa2\x20\x12\x22\x21\x73\x3a\x1c\xf0\xf0\x92\x29\x22\x22\x12\x32\x88\x84\x48\x44\xac\xd9\xb3\x66\x66\x31\x7b\xf6\x1a\xd7\xde\x7b\xce\x99\x13\x1a\x12\x97\x88\x8c\x08\x8d\x4b\x68\x44\x5c\x33\x23\x23\x33\xaf\x91\x21\x11\x71\x95\x6b\x64\xe6\xf5\xa2\x97\x8c\x8b\xfe\xb8\xc4\x55\xf3\x92\x97\x88\xd4\xb3\xef\xef\xb3\x9f\xb5\xd6\x5e\x6b\xaf\x39\x7f\x65\x9c\x73\xe6\x65\xed\xb5\x9e\xf5\xbc\x7c\x5f\x26\x1a\x0a\x79\xd1\xdb\x32\x24\x90\x98\xbd\xe9\x13\x6f\xf3\x70\x2c\x2c\x3c\xb8\x64\x4c\xce\x40\xe0\xd8\x0c\x79\xe5\x18\x72\x72\xc7\x64\x15\xdb\xcb\x88\xe5\x79\xaf\xf8\xf6\x05\xbd\x99\x8f\xaf\x37\x51\x10\x45\x07\x04\xba\xba\x20\x8c\xbf\xfb\x94\x61\x1f\x88\x18\x71\x4b\x3c\x1f\x58\xb5\xd8\xd4\xe5\x17\xe2\x9b\x3c\x3a\x4f\x34\x06\x6b\x9e\x1f\xd8\x15\x71\xd9\x2f\x2d\x9b\x4d\x02\x61\x53\x14\x3e\x93\x1f\xac\xa9\xd4\xc1\x30\x95\xdf\xa2\xff\xb4\x49\x27\x2f\x94\x30\xa7\x58\xaf\x7e\x51\x74\x64\xec\x28\x07\x75\x70\x81\x37\x35\x56\xe8\x5a\x96\x0e\x72\xa5\xba\x60\xea\xc7\x86\x10\x17\x23\x5e\x05\x17\x44\x15\x66\xfd\x64\xe4\x50\x2d\xb1\x2d\x51\x5f\x7b\x96\x4b\x1e\xb8\xc4\x2c\xac\x6c\x85\xb8\xfd\xd4\x12\xf5\x97\xd2\x46\x5a\x2e\x71\x4a\x9b\x1a\xc2\x58\x1e\xe0\x75\x2f\x1a\x7e\x0b\x30\x35\xe4\xfc\xf6\xd4\xe1\xc5\x6a\x11\x26\x45\x71\x19\x4a\xc2\xe8\x27\x83\x8e\x9b\x7f\x15\x08\x98\x55\x78\xeb\x82\x8b\x45\x90\x07\x01\x07\x21\x99\xba\x6c\x74\xab\xd6\x20\x72\x91\x5b\x40\x9c\x9b\x73\xf3\x11\x65\x5a\xe4\xc0\x91\x28\x4c\x57\x3d\xab\x12\x59\x49\x9b\x8a\xb8\xd4\x10\x99\x0a\x73\x9b\x38\xa9\x2e\x32\x24\x79\x41\x34\x90\x5b\xc1\x98\x5b\x44\x98\xc9\xce\x2b\x33\x9a\x24\x3e\xa0\xfb\x15\x83\xfa\xbe\xff\x92\x51\xe9\x00\xa6\x25\x8a\xbe\xd1\x86\x0c\x7f\xa4\x04\x1c\xbb\xa2\xfb\x2a\x9c\xb6\x47\xcb\xb8\xa4\x65\x81\x55\x9f\x60\x24\xa3\x81\x67\x23\x87\x52\x0f\xc5\xd6\x32\xa9\xe7\x06\x1a\xea\x2e\x2e\x87\x91\x84\x1f\x72\x34\xa8\x1c\x00\x30\x38\xf3\xef\x99\xa5\x71\x47\xa2\xa2\x85\xb7\xf0\x53\x67\x87\x6a\x83\x4d\x37\x28\x22\xdb\x0f\x18\x9f\xb4\xde\xb6\x4b\xb3\xc9\xa4\x02\x33\x9d\xfa\xf1\x22\x43\xc0\x09\x4c\x9d\x3d\xd9\x0c\xf8\xc5\x6a\xde\x73\xbb\x99\x04\x80\x4e\x56\x6f\xf5\xcb\x56\xfe\x00\x6e\xf2\x6a\x9a\xe8\x6c\xaa\xdf\x2e\x79\x0a\x62\x6b\xf5\x6c\x2e\x1c\x6f\x18\x6d\x40\x26\x68\x07\x4e\x50\xe5\x53\xa5\x5f\x9f\x54\x87\x84\x06\x7e\xdc\x95\xb3\xe6\x8c\xd2\x1c\xec\x41\xa7\x0b\x09\xf9\x84\xf4\x23\xfb\xf8\x3b\xf9\x8c\x06\x79\x07\x7b\x1c\x11\x9b\xb9\x71\xa4\x41\x74\x27\xac\x20\xd2\x99\x57\x7a\x0c\x5d\x85\xc0\x29\x8a\x19\xcd\x0d\xcf\x6a\x8c\x6f\x49\xfe\xda\xbf\xdf\x78\x2c\x05\x49\x8b\xfe\xc9\x62\x4d\x3a\xae\x16\xc5\x21\x30\x2c\x8b\x7e\xb4\xa4\xbf\x59\x37\xc1\x5c\x4f\x0b\xaa\xe9\x03\xad\x1a\x8e\x18\xb9\x15\x4e\xd7\xaa\x6b\x0a\x6b\xc8\xe1\x72\x73\x21\x39\x24\xe4\xce\x88\xef\x0b\x11\xdc\xae\xbd\xc6\x5d\xc3\xf5\xb1\x1c\xc1\x92\xff\x57\xc3\x54\x5b\x01\x0d\x28\xf3\x62\x01\xfc\x79\x86\x2f\x37\xf1\x1c\x2c\x45\x17\xac\x23\xe7\x46\xe9\x2c\xf6\x5b\xe6\x5f\x2d\x9f\xaf\x66\xcb\xfd\x92\x2a\x84\xae\x81\xed\xff\xd6\x4b\x4d\x2a\x67\x31\x70\x11\x36\xed\x03\x93\x8d\xea\x82\xb2\x68\x73\xf2\x59\x48\x6a\xef\x7b\x86\x23\xb1\x17\x08\x58\x16\x00\x7b\x8d\x61\xa5\x1d\xc8\x3e\xea\x9a\xb5\x23\x8c\x1c\xa2\x0a\x13\xbb\x98\x36\x95\xba\x6d\x7a\x3c\xc6\x08\xf2\xd0\x09\xfc\x6e\xcd\x9c\xbb\x40\x9f\x4b\x36\x6f\xdc\x57\xcd\xdb\xda\x75\x05\xe1\x21\x3c\x73\x40\xb5\x65\x89\x36\xff\xb4\xde\x58\x3f\x56\x6b\x9b\x79\x2e\x2e\xfa\x59\x0f\x55\xca\xc8\x21\x6e\x95\xb2\xe8\xff\xe3\x12\x82\x9b\xe2\xad\xd3\x57\x1a\x35\x9f\x8f\x59\x09\xf9\x58\xc4\x29\x55\xf8\xad\x3d\x39\xdc\xb8\xf7\xb9\xb7\x0f\xb7\xa8\xfc\xfa\x2c\x43\x70\x1c\xe3\x0a\x64\x5f\x22\x0d\x7c\x6e\x4c\x52\x64\x90\x61\xd0\x76\x5a\xb7\x9b\x43\x3c\x6e\x2f\x47\x19\x61\x3e\x01\x7e\x7a\x67\x82\x0a\xf7\x25\x86\x0a\x41\xdc\xe5\xbb\xd5\x10\xcb\x88\x2f\x39\x21\xa5\x96\x5b\x39\x4c\xeb\x02\x76\x45\xa7\x41\x2d\xce\xdc\x77\x0c\x13\x77\xbb\x40\x5d\xe4\x14\xae\xf2\x8c\x1e\xa8\xf5\x4f\x8b\x4d\x0b\x16\xa9\x0e\x14\x3b\x17\x7f\xb1\x53\x1d\x3e\x06\x0c\x40\xf1\x21\xc3\xe7\x66\xeb\x32\x39\x76\xa5\x8b\x9f\x49\x6b\xc5\x6a\xd3\xee\xdd\xc7\x25\xca\x04\xf0\x0f\x72\xe9\x5a\xa1\x45\x53\xc1\x28\x70\xf7\xe8\xde\xf4\x8b\xc7\x34\x25\x58\x46\x51\x74\x00\x3b\xe7\x9a\x9d\x7b\xc4\xb2\x55\xe2\xc9\xa4\x68\xfb\x40\x75\xcf\x15\xb0\x8f\x59\x94\x34\x45\xb7\xe2\xfc\x66\x5b\x23\xb1\xab\xae\x79\x4d\xa1\x36\x5c\x52\x82\xb4\x56\xf1\x3c\xfe\x79\x24\xd7\xaa\xba\xc1\x0e\xbc\x3e\x30\x93\x97\x3e\xc5\x9b\x87\x33\x1d\x54\x48\x00\x52\x1e\x35\x1c\x46\x21\x80\xba\x00\xb4\x08\x77\x4c\x35\xe9\x86\xac\x46\x45\x0e\x27\xd2\xca\xdd\xfd\x39\x52\x79\x51\xc0\xdc\x7c\xd0\x6c\xbc\x60\x6d\x5c\xa5\x32\x0d\xe2\x38\xb8\x44\x78\x33\x1d\x46\x0b\x46\x27\x3a\xcf\x88\x8f\x48\x8c\xc3\x8a\x92\x91\x09\x63\x8c\x4b\xa1\x8c\x19\xf1\xca\xdc\xf0\x27\xd7\x9b\xb9\x6f\x83\xe1\xc5\xc9\x74\xaf\x90\xf4\x92\xc7\x35\x30\x08\x71\xa9\x5d\x06\x9d\x87\xf4\x70\xa3\x7b\x54\x64\xf8\xae\x00\x8b\x0e\x77\xf4\xfc\x76\xbd\xd3\xa2\xf5\x70\x5c\xc4\x3d\x43\xd2\x1f\x74\xf0\x22\x70\x61\xdc\xb5\xcc\xf5\xa6\x17\xbd\xf1\x51\x79\xdc\xaf\x06\x61\x8a\xd3\x06\x46\x5d\x0c\xfb\xc4\x58\xa9\xb0\x41\xa7\x26\x15\x30\x13\x1d\x8d\xf4\x80\xa3\xc9\xef\x4a\x03\xdf\xab\xd1\x0a\x76\x05\xb8\xec\xf5\x70\xac\xb1\x16\xc8\xc5\x4e\x5f\x79\x8b\xb5\xf1\x05\x81\xe4\xc5\xc0\x1b\x11\x1f\x74\xe0\x5c\x6d\x3a\x8a\x6b\x7e\x5b\x36\x17\xce\xbd\x27\xb9\xed\x57\x62\xc6\x1a\x86\xd6\xf8\xba\xbc\x61\x6e\xe2\x8a\xe0\x32\x65\x45\x72\xb7\x52\x17\x16\x10\x72\xf8\x41\xa7\xd4\xd2\x83\xd7\x1c\x77\x8c\x49\xfd\x3f\xcd\x54\xb6\xc8\xa1\xde\xd9\x5c\xf8\xbd\x16\x0d\xa8\x8b\xbb\x88\xa0\x03\xa5\x3e\x7c\xd8\x18\xa9\x3a\x55\x0a\xcd\x0c\xf8\x42\x97\x1f\xd4\x35\xe0\x85\x93\x78\xf4\x83\x27\xe7\x1a\x15\x31\x22\x4e\x43\xb4\xc2\xb6\x6d\xd7\x4c\xb0\x48\xc9\xd5\xdc\xdb\xdf\x3b\x2e\xac\x65\xb8\x31\xd5\xfd\xc6\x3c\xb7\x40\x3c\x80\xe8\x72\x04\xcc\xdf\x1e\x55\xab\x09\x2c\xaf\x6c\x2e\xfc\xc4\x23\x4a\x13\xc1\x8b\xce\xf3\xa8\x47\x93\x7c\x42\xa1\xee\xe4\x09\xd7\xa9\xe4\x21\xbd\x75\xaf\x7a\xc5\x28\x56\x40\xda\x73\x60\xb4\x21\xff\x81\x5d\x97\x3b\x45\x69\x9c\x9b\x35\xbb\x8d\x6c\x3f\x60\x35\xea\x49\x90\xdc\x7d\xc6\x45\xce\x15\x33\x78\x0b\xf7\xc1\xf3\xcd\xf2\xda\x21\xf5\xb8\x07\xf0\x40\x47\xf2\xbe\x2e\x61\x37\x61\xa5\x90\x7a\xfd\xf0\xa8\x44\xee\x15\xf8\xcd\x92\x5c\xa9\xef\x8d\x53\x61\xdf\xc3\x00\x88\x54\x85\x4a\xee\x54\x93\x22\x33\x17\x66\x12\xe3\xb6\xa1\x82\x41\xbf\x00\xb9\x81\x6d\xeb\x5a\x0a\xff\x72\xfc\x0a\xad\x26\x16\x17\x40\x53\xe4\x7b\xfc\xbd\x26\xbf\x35\xb7\x47\xaa\xf2\xf7\xcc\x1d\xa8\x25\x54\x1c\x61\x6d\x2d\xe6\xa2\xb0\xd9\x1b\x3c\x27\xba\x9b\x13\xec\xa6\xf4\xfb\x07\x2e\x35\x6f\x5b\xca\x08\x0d\xa4\xbc\x4c\xbb\x12\x40\x64\xd0\x9c\xe9\x57\x53\xb5\x6c\x17\x46\x8e\x5f\x26\xd8\x83\xac\xe4\xbb\xf5\x2b\x34\xda\xbb\x5f\x66\xc4\x27\x26\x1b\xa7\x37\x3d\xb3\xfb\x62\x2d\x5c\x48\xb4\xf7\xab\x53\xf9\xa0\x7f\x72\xdb\x54\xa0\x2e\xb7\x1b\x2a\x1f\x88\x55\x24\x9d\xc5\xd7\x9d\x21\xf8\x0c\x07\x7a\xaf\xe1\x37\x56\xf3\xdd\x5e\x0a\x78\x47\x75\xc9\x21\xad\xa0\x62\x34\x68\xea\x97\x59\xad\x0f\xc7\xd6\xef\x77\xcc\x5a\xa4\x7a\x59\xd7\xfb\xc9\x00\x51\xc5\xb1\xfb\x91\xd3\x22\x03\x1d\x0d\xf2\xbe\xf0\x27\xb6\xec\xf2\x40\x0d\xb1\x1f\xf0\xf0\x74\xfd\xd3\x4a\xbe\xdf\x41\x5d\xdc\x25\x5d\x4b\x9e\x5c\x41\x6a\x86\x6e\x9a\x74\x63\x4e\xff\x65\x47\x6b\xf2\xf6\xcd\x43\x44\xe9\x4d\xa7\x35\x1d\x40\x81\x8c\xcc\xe6\xc2\x9f\x3d\xc9\xb7\xd3\x67\x5c\xe2\x37\x12\x93\xd5\x7f\xdc\xa6\xa5\xf7\x65\x94\xcf\x03\xa0\xa0\x77\x8c\x9a\xec\x74\x21\xc6\xb0\x4e\x6b\x2e\x69\x8a\xc7\x8c\xd8\x65\x91\xde\xdf\x70\xad\xf0\x26\xe5\xde\xe9\x99\xaf\x4c\x8e\x93\xcb\xf6\xb6\x8e\xe8\x37\xbe\x75\x40\xf3\x38\x88\x3e\xaf\x59\xba\x0e\x32\xba\xec\x42\xc3\x4d\x1c\xcb\xcb\xe6\x9a\x76\x6f\x28\x9f\x17\x49\xb2\x75\x4f\x46\x21\x24\x7c\x86\xec\x4a\x5b\x02\xb1\x3f\xec\x6d\xc3\x20\x27\x08\x6a\xa6\xb7\x84\xa1\x69\x06\xa5\x56\xc0\x65\x04\xc2\x9f\x72\xab\xb9\xec\x9d\x51\x61\x6e\x9e\xf4\xd3\xc6\x75\x5c\x27\x1e\xf1\x95\x4a\xd1\xd4\x03\x86\xfe\x0f\xf5\xd4\x28\x53\x74\xba\x9e\x79\x83\x67\x9e\x2e\x75\x05\xf2\x46\xb8\x9a\xe5\xc2\xbf\x19\xb2\x5f\x2b\x69\x5e\x0e\xf3\xbb\x56\x8f\xd2\xc4\x61\x90\xeb\xe0\x46\x93\xf8\x5b\xfa\xa2\xcb\x34\x13\xa8\xa9\x13\x26\x76\x82\xc5\xff\xa7\x8e\xa8\x6d\x8f\x40\x07\xd9\x20\xc4\xad\xac\x6b\x3a\xb3\xd8\x2d\x60\xdf\xe7\x39\x7a\xbf\x93\xc2\xfa\x91\x11\xce\x4e\xfb\xc4\x7b\xcd\x42\x43\x18\x6c\xa5\x45\xd5\xf4\xc6\x93\x83\xf4\xcd\xea\x97\x05\x6e\x69\x5a\xab\x76\x29\x22\xe2\x00\x11\x39\xbc\x66\xcf\x48\xe3\xf2\xc0\x1e\x66\x75\xa4\x68\x3f\x19\x7f\x83\x91\x2f\x3a\xa4\x26\xd5\x67\xc7\x8c\xd2\x20\x6f\x88\xf9\xae\xc0\xa7\xbe\x6c\x58\x9c\x3a\x48\x12\xec\xa1\xd1\xf0\xd9\x97\x47\xe8\xd2\x71\x1c\xd0\x8f\x75\x72\x7b\x69\x87\x3a\xbd\xa8\x14\x55\xfc\xb9\xde\x34\xbd\xa0\x45\xa5\x34\xe0\x02\x05\x5d\xcf\x2f\x2d\x56\x37\x22\xe0\x1f\xa6\xbd\x2d\xfc\x05\x9c\xc0\x2b\xf3\x80\x3b\x73\xc9\x58\x23\xa6\xd6\x69\x03\xf7\x65\x5d\xfd\x9f\x87\x9a\x46\x28\xac\x84\x05\xa5\x24\xb5\xb8\x45\x33\x07\x67\xdc\xaf\xb0\x37\x55\x1b\x6e\x60\xeb\x28\xad\xf0\xce\xc9\xd7\xc6\x9b\xb3\xc7\x58\xb0\x08\xe0\x4a\xe9\x19\x9b\x79\x94\x9d\x94\x9d\x0c\x22\x4c\x8f\x6b\x88\x11\x14\x38\x28\xfa\xf0\x19\x4d\x02\x25\xf6\xd3\x0c\x7f\x77\xbe\x69\x9b\x05\x20\xe7\x68\x27\x44\x99\xf5\x3d\x46\x33\xa7\xe8\xd0\x2e\x5e\xe2\x3e\x67\x60\x68\x98\x04\x30\xa8\xe5\xa7\xa9\x61\xda\x26\x32\x51\x86\x27\x35\xd8\x3a\xae\xe6\xb1\xe6\xae\x90\xb9\xf6\x48\x3c\xb4\xac\x50\xdd\xfc\xbd\x37\xb5\xa4\xc5\x54\x23\xa1\x22\xed\xfc\xd6\x5e\x55\xc5\xf3\x23\x93\xbe\xd0\x28\x1a\x0a\x5c\xf1\x9c\x37\x52\x1f\xbc\x56\x77\x3d\xb3\x11\x73\x11\xd7\x52\x4c\x7f\x7b\xba\xc6\x29\x2f\x08\x75\x73\x48\x7d\xdb\x32\x6a\xab\x62\xcf\x8e\xe2\x2c\xf4\xa3\xaa\xef\x28\x8e\x1e\x88\x74\x1f\x7b\xb5\xc9\x9e\xd9\x29\x08\xbd\xf6\x15\x9b\x93\xd4\x7b\xd1\xa2\x6c\x56\x39\xce\xcd\xd7\x70\x2a\xb4\xcb\x8d\x8a\x58\x31\x87\xf8\x79\xa6\xcf\x29\xa1\x28\xfa\xff\xb2\x58\x93\x03\x11\x20\xd7\x28\x89\x7a\x68\xa3\x81\xd4\xa6\x81\x83\xeb\x88\x15\x04\x15\xfd\x6c\xa7\x02\x44\x33\x0d\x1c\x94\xfe\xf9\xee\xe4\x74\x26\x9b\xe5\x3b\x73\xf5\x49\x6d\xa7\x51\xe1\x3d\xb8\x79\x4c\xfc\x2a\xbe\xfe\x2a\x56\x4b\x4b\xfc\x58\xab\x38\xd1\x1c\x48\xb1\x50\xff\xc4\xcc\xc1\xde\x5d\x80\x72\xb0\x06\xf9\x1a\xd6\x33\xf0\x7c\x64\x97\x81\xcf\x68\x0d\x7d\x88\x9f\xcf\x7a\x94\x15\x83\x8f\xca\xbf\x2f\xd0\x44\x7e\x7c\x52\x13\x89\xfc\xa6\x67\x8d\xe8\x84\x19\xee\x31\x06\x29\x5b\x94\x3b\x24\x6d\xca\x0b\xad\x8d\x2d\xc9\x8a\x1f\x79\x3e\xa3\x5e\x33\x25\xb9\x37\xfd\x62\x4f\xfc\x42\x4e\xd0\x47\x75\x7b\x4c\x08\xb2\x23\xb7\xc4\xa7\x80\xff\xda\x4f\x4d\x8c\x09\x87\x27\xa5\x3f\xbb\xd2\x74\xf0\x74\x8b\x18\xb2\x0c\xa9\x66\x9b\x3b\x70\x89\xf6\x57\x1a\xf9\x26\x4a\x97\xae\x3f\x6b\xb0\x3a\x81\xfb\x83\x19\x8b\x87\xdf\x7f\xda\x3e\x46\xef\x0f\xe0\x68\xa5\x44\x12\x63\xf8\x72\x4c\xe7\x6b\x8c\xdd\x82\xb0\xa7\xb5\xaa\x27\x2f\x4f\x7a\xfb\x5e\xad\xd0\xd5\x12\x8d\xf3\x9a\x56\x4b\x77\x95\x89\xaf\x09\x74\xaf\x7f\x56\x1b\x05\x04\x0d\xfd\xd4\xa7\xbe\xff\x9a\xca\x33\xc1\x2a\xca\xc1\x41\xb5\x69\x0d\x5f\x3f\x37\x8a\x67\xbd\x25\xe8\xba\xfa\x01\x43\x66\x35\x1f\x76\x9e\xd3\xf0\x86\xba\x5b\xd8\x4d\x33\x34\x52\x3e\xaa\xf9\x42\xb7\xa2\x37\xb5\x7a\x8e\x1e\x0c\x7c\x86\xa2\x8b\x08\x2a\xbb\x8d\x0f\x5d\xa6\xff\x04\xb3\x02\xf1\x6c\x52\x73\x84\x73\x58\x6f\xaa\xbc\x73\x80\xf8\xa6\x98\x61\xb8\x70\x53\x2f\xb4\x27\x43\x79\x1d\xbb\x01\xe7\x1d\x67\x66\xac\xbf\x58\x2b\x05\x09\xc7\x08\x5b\xed\x86\xf2\x6e\x15\x58\x77\x31\xab\xed\x46\xee\xaa\x9a\xbd\x15\xd9\x76\x99\x50\xad\x75\xdd\x9b\xfe\xcd\xb3\x2d\x32\xd7\x9d\x3f\x7f\xc1\xed\xd2\x54\xf5\xab\xaf\x49\x7e\x80\x6b\x63\x52\xe7\x81\xed\xb2\x87\xd5\x61\xf2\xcb\x0c\xe3\x2c\x97\x6c\x49\xa5\x4d\xcb\x36\x4a\xfd\x98\xd8\xbc\xf7\x49\x83\x11\x40\x5d\xbf\xec\x49\x87\xf3\x05\x4f\x5c\x66\xdc\xd2\x5d\x55\x54\xe1\x1f\x1e\xfe\xbc\xd8\xa6\x90\xd7\xdc\x32\x69\x56\x51\x55\xb6\xbc\x73\x90\x85\xff\xce\xf5\x5a\x4b\x5f\x1c\xaa\xf3\x73\xc8\x5d\x6a\xeb\xbc\x7f\xc1\x70\x25\xab\x11\x34\x1d\xd2\xbf\x1b\x34\xfd\x2a\x72\x63\xdb\xc0\xd4\xec\x17\xaf\x34\x6e\x50\xbb\x8d\x7b\x52\x9b\x31\xf7\xca\x61\x5a\x76\x5d\xc3\xb8\x00\x21\x6d\xca\xc9\x64\x0c\x09\xdc\x62\xe0\x14\x89\xd0\x44\x80\x93\x9c\xda\x1e\x0f\x5b\x91\xdd\x9c\x71\xfe\x7d\x6c\x3c\x50\xe1\x7e\xbd\xf0\x94\xe8\x1e\x49\x19\xf0\x63\x4d\xa9\xc1\x5b\x55\x18\x43\x45\x46\x6c\xc4\x7d\x35\x66\x5d\xa2\x67\x49\x0e\x01\x93\x43\x59\x5d\xfc\xcf\xa6\xa6\x98\x21\x52\x30\x8f\x8f\x25\x32\x6b\x47\x26\x7b\xe9\x5d\xc4\x89\x5e\x43\x84\x31\xb9\x9b\x5e\xb9\xee\x62\x15\x09\xe3\xf1\xde\xa1\xd9\xea\x42\xac\x52\x97\xf8\x54\x9e\x9b\xb3\x06\x35\x78\xf2\xa4\x09\x1d\x53\xda\x39\x88\x36\xd3\x9d\x31\x7b\xcf\xd5\x2a\xf1\x45\x8f\xf5\xce\xd7\xfa\xc0\xe7\x34\xda\x44\xbe\x38\xd8\x50\x94\x73\x30\x8a\x92\x50\x31\xe1\x38\xe2\x9a\x62\x06\x01\x78\x88\xf0\xa9\xc1\xf6\x03\x5a\x8c\x41\x89\xe2\xc9\xba\x61\xb3\x09\xf4\xf0\x3c\x54\x52\xe2\x84\xdb\x0e\x35\xe1\x6b\x8a\x0e\xb1\x7d\x39\x42\x7c\x6a\x89\x91\x39\x07\x9e\x4f\xab\xf1\x6e\x0f\x5f\x4a\xf1\x54\x7b\x0e\x06\xf7\xec\xb0\xd1\xa6\x55\x7d\xba\xf0\xdf\x8f\x0e\x6b\x5e\x55\xd8\xa5\x36\x27\x5f\x59\x6d\x6f\xab\x0b\x61\xe2\xb4\x4e\xa8\xc2\x6e\x5a\xaa\x69\xb3\x45\x15\xa2\x27\xf7\xca\xa8\x91\x03\x13\xb5\x23\x3c\x69\x6b\x11\x8f\x16\x73\x39\xac\x54\xaf\xaa\xac\x3b\x76\xab\x18\x1b\x0f\xf6\x9b\x0e\xc1\xa7\x4f\x5c\xd2\x1c\xbf\xe4\x1c\x2d\x73\x69\xe1\x42\xe5\xc5\xc8\xb2\xb9\xf0\x8a\x1e\xbd\xf6\x74\x2a\x55\xe4\x66\x3d\xbf\xc1\x51\x80\x9f\xcd\xf3\xa9\xdb\x1d\x74\xa5\x4d\xb0\xad\xab\x69\x2e\x18\x90\xdc\x92\xae\x30\x86\x96\xf8\x53\xa8\xe3\x26\xac\x8a\x8f\x3d\x23\xa5\xa6\x2b\x0a\x2d\xd7\x3a\x23\x0c\xb9\xe0\x23\x71\x72\x8d\x96\x0a\x4e\xcd\x46\x2b\xd5\x98\x73\xa1\x42\x8b\x55\xb3\xb9\xf0\xcc\x96\x84\xe2\x6d\x09\xb3\x28\x1c\x73\xb0\xd7\xd0\x19\xea\x45\x3f\x29\x0f\xc1\x90\x87\x79\x9c\xcf\xd5\xa3\x67\x08\x59\xde\x8c\xc3\x2a\x90\xe1\xa8\xb8\x75\x08\xaf\x15\xc2\x4f\x8f\x56\xaf\x2e\x59\x9d\xf2\x8c\x3d\x32\x46\x41\x7a\xdb\x4c\xe7\xd6\xde\xf4\x6d\xb3\x2f\x12\x97\x8d\x57\x23\xbc\x3a\xb1\xd6\xae\x33\xd2\xf4\x28\x81\x60\x34\x10\xbd\x13\x6b\xe1\xa6\x26\xe5\x76\x1f\x7b\xbe\x68\xf6\xa4\x7a\xdf\x49\x68\xce\x70\x53\x81\x5e\x6b\xc0\x9b\x2d\xda\x88\xa1\x21\xf8\x7f\xe9\xef\x2d\x51\xc2\x2a\x41\x9b\xd7\x64\xac\x60\x8d\x59\xaa\xed\x3a\x8c\xaa\xf0\x11\xff\xf9\x02\xce\xbc\xbe\x15\x93\x95\x4d\x1c\xa4\x94\x7f\x1f\x6f\xf4\x2e\xc2\x9e\x27\x4b\xb8\xf0\xee\xd7\xd4\xa5\x9b\x4d\x1c\xd3\xeb\xf7\xaa\x60\x57\xb5\xed\x80\x31\x9d\x1c\xf0\xc6\x96\x64\x72\x8d\xeb\x58\x76\x7a\x5f\xbc\xd6\xe8\xa2\x11\xc7\x91\x1b\xd7\xfa\x78\xff\x84\x94\x15\x61\x42\xbc\x2e\x33\x6e\x8f\x2a\x77\x51\x0d\x33\xe2\x13\x60\xe4\x7c\x47\x10\x88\x67\x2e\xba\xb9\xe9\x1b\x7d\x61\x96\x80\xf4\x74\x21\x26\xb2\xf2\x14\x66\x46\x14\x6e\x44\x25\xb7\xaf\x54\x83\xd3\x4b\x1e\x55\xef\xe4\x34\x3c\x9f\x88\x86\xfd\x5b\x35\x1e\x37\x4a\xc8\x81\x14\xc2\xda\x32\x50\x63\x67\x30\x22\x18\x4e\x7f\xba\x40\xdd\x4e\x35\x07\x95\x00\xb5\x39\x66\x26\xaf\xfe\x3a\x78\xd1\x73\xff\x01\xcd\xcc\xa5\x46\x5d\x8f\x0a\xfa\xfe\x77\xe6\xaa\x82\xd9\x45\xd5\x3e\xa4\x6e\x36\xbe\xd1\x84\x5a\xa1\xac\x1a\x0f\x5a\xd3\x86\xe9\xdc\x4a\x18\xe4\x8a\x59\xed\x7b\x0f\x5f\xac\x8d\xeb\x99\x78\x4f\xf2\x46\xec\xf4\x59\x45\x20\x61\x15\x3e\x3f\x5d\x31\x3c\x89\x4e\x56\x5e\xb6\x20\x3e\xa2\x20\x8c\x10\xfe\xe6\xb2\xa6\x4b\x00\x78\xc3\x3c\x8b\x9d\xbc\xc6\x10\x88\x77\x28\xef\x3b\x85\x9f\x3f\x3f\x79\x5b\x57\x68\xd1\x80\xcc\x5a\x07\xb7\x69\xce\xf1\x35\x2e\xad\xf5\xda\x4e\xc3\x53\xaa\xdb\x26\x02\x0e\xce\x35\xf4\x83\x05\xea\x8f\x6c\x04\x7c\x5b\x6b\xcb\xbb\xf1\x87\xae\x23\x80\x20\x5e\xb1\x45\x09\x1a\x95\xa9\x9f\xcd\x85\x87\x07\x8e\x32\xb2\x2b\x80\x53\x72\xe1\x66\xf9\xed\xaf\x39\x67\xd8\xa9\x8a\xe9\x42\xb4\xba\xea\xb7\x26\x6e\xd0\x88\x06\xc8\xab\x80\x9b\x8d\x35\x67\x91\xd0\xc6\x46\x25\x88\x3e\x6f\x39\xa6\x1a\x5d\xb5\x26\xd5\xe8\x52\x3f\x9b\xaf\xe6\x73\x55\x62\x97\x13\xd4\x57\xeb\x83\x79\x97\x89\x58\x4a\x5d\x3f\x4b\x8b\x59\xbf\x8c\xb3\x8c\xfa\x72\x76\x9a\xfe\xfd\xcb\xf1\xe3\xb3\x1d\xe5\xd3\x11\x1e\x6a\x35\x64\x92\x50\x2c\xc2\x15\xfe\x66\x49\x7f\x95\xe6\x44\x1f\x78\x6e\x8a\x37\xe7\x66\xde\xb4\xf0\xa6\xa5\xb9\xc5\xb7\x7f\xfa\x4e\xed\x3b\x5e\xf0\xd2\x10\xed\x3a\xf1\x15\x5a\x28\x7c\x67\x88\x29\x20\x8d\x2b\x22\x0f\xb5\x1a\xfb\x93\x7e\x1a\x05\x1c\xa5\xf0\xc2\x52\xd1\x54\xbe\x68\x3f\x93\x64\x3e\xe4\x71\x4f\xe0\x51\x1b\x19\x1d\x8c\x96\x31\x43\x75\x98\x69\x42\xb3\x99\xb6\x9b\x6c\x06\x5f\x48\x1f\x6c\xdc\x9d\x7c\x92\x45\x2f\xdf\xe4\xa4\x1a\x96\x0d\x13\x65\x3f\x60\x15\xdc\x50\xfa\x43\x33\xf7\xf1\x80\x39\x07\x09\x35\x76\xa8\xac\x56\x8d\x8b\x17\xdf\xab\x6a\x00\x96\xef\x9c\x31\xa5\xf7\xb9\xd5\x91\x68\xf6\xaf\xe8\x77\x91\xc8\x40\xa2\x03\xcb\xab\xf4\x97\x0e\xe9\xca\x55\x45\xe9\xc8\x90\x29\x3f\xa0\x02\x4f\xb5\xe1\x61\xa7\x08\xe9\xe7\xb1\xf3\x14\xb3\x1f\xf5\xc8\xcf\x73\xd5\xa2\x38\xe9\x6d\x34\x95\x61\xbd\xa9\xa7\x1e\x37\x30\xb7\x8c\xd2\x9a\x50\x3e\x0c\x76\x5d\xa4\x4d\x15\x08\x44\x8b\x5f\x6e\x17\x2a\xc4\x34\x4f\x7b\xb0\x1a\x67\x84\xeb\x4f\x6a\xac\xf6\x76\xd0\x04\x5f\xaf\xca\xb2\xa8\x5a\x69\x12\x5a\x29\xde\xa7\xe9\x61\xb3\x68\x33\xc0\xd1\xf8\xb7\x6d\xfd\x95\xe0\x72\xf4\x42\x93\x0c\xb4\x73\x9d\x70\xef\x21\xde\x59\xf3\x86\xe9\x4d\x25\x30\xc6\x46\xeb\x84\xfc\x2a\xe8\x5a\x43\x10\xf0\xba\x55\x82\xc6\x50\x8d\x14\x62\x7d\x8e\xfb\x0d\x3b\x73\x5b\x18\x6c\x08\x55\xae\xd7\x35\x4e\x33\x70\x62\x7d\x52\x2c\x72\xa0\xc7\xf3\x86\xbf\xbf\x43\xaa\xd5\x78\xde\x75\xd0\xb8\xe6\x6a\x88\xa1\x02\x1f\x16\x85\xef\x3c\x90\xec\x52\x6a\xf8\x04\x8e\x56\xd7\x00\x0a\x67\x9a\x2c\x8e\xb9\x08\x86\x00\x90\x3e\xf5\xd2\xa5\x1a\x83\xb4\x59\x61\x6d\xe5\x58\xde\x4b\xf5\x30\x80\x99\xb0\xc3\xbb\x64\xe3\x5a\xf8\x5c\xc1\x41\x5d\xdc\xf4\x52\x83\x2f\xd7\x30\xad\x71\x85\xe4\xf4\xce\x45\x2a\x10\xa1\x3c\xad\xe3\xa4\xde\xe9\x7d\xa6\x6f\x54\x1d\x79\xf1\xc4\xdc\x7a\x63\x42\xb3\x01\x2a\x13\xf8\xca\xf0\x7f\x52\xea\xdc\x52\x17\x42\x58\x91\x60\x60\xa5\x67\x3e\xfb\xf8\x60\x3d\xf2\x7b\x3e\x75\x78\x21\x9f\x59\xbe\xa3\x4f\xe5\x27\x52\xc7\x0e\xf7\x36\xb4\x86\x18\x89\x07\xe7\x2e\x5c\x3d\x3d\x9b\x0b\xef\x3c\xad\x65\x2c\x41\x1e\x31\x54\xd1\x32\xdd\xcd\x87\x94\x9c\x06\x6a\xca\x8e\xd2\xde\x66\x25\xf6\x09\x05\x79\x7a\x83\x21\x8b\xca\x41\xdb\xd0\x93\xfd\x83\x52\x26\x03\xc7\xa6\x70\xe4\x70\x95\x8e\x39\x0d\x06\x97\x99\xf5\xc3\x37\x3f\x6e\x54\xac\xa0\x05\x16\x5b\xf0\x1b\xe9\xd9\x16\x75\x18\x27\x4e\x6c\x83\x3c\x62\xde\xfe\x0b\xc5\x53\xac\x09\x53\xcd\x17\x06\x24\x15\x59\x7c\xe4\x23\x86\xdd\x0a\xad\xeb\x45\x64\x38\xff\x55\x7e\x8a\x81\xbb\x49\xfc\x00\xc7\x86\x77\x78\x83\xe2\xfd\x89\xd2\x66\x45\x72\xd2\x12\xbd\x1e\x82\x5c\x4e\xe5\xcb\x6c\xbb\xfa\x7e\x45\xca\xf8\x02\xa5\x4e\x0c\x92\x6f\x92\x90\xf2\x99\x31\xfd\xe2\xa4\x33\x1c\x1c\xc3\x87\x57\x1a\x13\x19\x44\x1c\x01\x31\xdd\x64\x10\xeb\x3d\x1a\xd4\x44\x89\xfa\xdb\x76\xfe\x1e\xb7\x3b\xb4\x8e\x2a\x8a\x6d\x76\xe1\x2a\xad\x8b\xe4\xe0\x3a\xe6\xe0\x80\x5e\xeb\x92\x3d\x66\xfe\xe4\x05\x8e\xe4\x8e\xf7\xa6\xaa\x4b\x25\x00\xce\x8e\xc2\x2d\x97\x1e\x7a\x8c\x5f\x8d\x8b\x18\xb2\x2b\xa0\x14\x73\x26\x79\xaf\x64\xb3\xfc\x86\x0b\xdb\x0d\x77\x23\x54\x28\xe0\x18\xe7\x65\x4d\xeb\x8c\xe3\x33\xa3\xb6\xfc\xa4\xcf\xef\x91\xf8\x0a\x39\x78\x8e\x7e\xb7\xfe\x92\x96\x07\x33\xcf\x07\x9b\x46\x98\xd7\x8d\x34\xaf\x11\x86\x51\xa1\x21\x1b\x41\x28\x76\x26\xaf\x94\x35\x8e\x92\x35\xfb\xb8\x10\xd0\xc7\x3e\xaa\x95\xb9\xe1\xce\xf6\x1e\x83\x14\x82\x4a\xb2\x65\x0a\xd5\xd4\xff\x69\x44\xb2\xc9\x6d\x13\xa3\x8f\xf5\xde\x32\x5e\x29\xde\x88\x5c\x54\x40\x09\xaa\xd2\x37\xde\xd6\x19\x9b\x35\x86\x81\x26\x0e\x67\xf2\xbf\x96\x26\x3f\x73\x17\xf1\xcb\xc4\x8d\xfd\x04\xbe\xf8\x98\xe1\xfa\xd4\x3e\x75\x92\xf0\xb3\xfa\xdd\x74\xa5\xe3\x86\x30\xa3\x2e\x0a\x40\x84\xc5\x3c\x9d\x5b\x36\x1a\x1d\x2e\xec\x96\xfc\x32\x8e\xbb\x4b\x99\x9c\xee\xd9\xea\x60\xd4\x03\x97\xc2\xa2\xd6\x0b\xd5\xdd\xc8\x69\x4c\x85\xcb\xcd\xcb\xa0\x86\x5d\x4f\x3a\x63\xc3\x1a\x7f\xce\x1d\xa9\xb5\x79\x3c\x0f\x37\x7b\x81\xb5\x1a\x73\x31\x2e\xb6\xd9\x90\x14\xa1\xc3\x82\x69\x52\x25\xa0\x45\x19\x5e\x3f\x6b\xa4\x46\xd0\xab\x13\x6c\xea\x80\xf5\x66\x3e\x3e\x7f\x60\xdc\x9c\x2a\xf2\x33\x13\xf6\xbe\xa6\xb1\x2f\xc1\x15\x0f\xf2\x92\x29\x3e\x7f\x75\x2a\x8c\xa7\xd2\x43\x57\x69\x25\x09\x72\x84\xc9\xde\x92\x71\xc9\x5d\xec\x52\xa1\x5b\x67\x2d\x10\x02\x68\x5e\x39\x90\x3a\xfc\x99\x99\xcf\xab\x7a\xfb\x9a\xc9\x6d\xd7\x80\x36\xd2\x82\xb3\xfc\x17\x21\x72\xf3\xf9\x63\xfa\xb7\xef\xa9\x9b\x84\x13\xf9\xa1\x58\xfa\x82\x56\x90\xe6\x49\x19\xc1\x0e\x9c\x31\x5b\xbd\x68\x0f\xe5\x92\x42\xd6\x37\x66\x35\x83\x77\xb1\x6b\xc7\xd2\xa8\x27\x3b\x4d\xc5\xcd\x32\x72\x8a\x32\xc7\x1c\xb6\x4e\x28\xfa\x61\x07\xc8\xa8\xe1\xc5\x4b\x34\x71\xcc\xc0\x21\xfa\xb4\xe3\xe6\x65\x57\x68\xd0\x39\x00\x8b\xd4\x4d\x73\x8f\xde\xd4\x90\x7c\x32\x59\x94\x4c\x6b\x9b\x71\x6d\x75\x3e\x2b\xff\x65\xd9\x28\x6b\x41\x29\x94\x7f\xe6\xcc\x6d\xfb\x92\xcd\x4d\xaf\x86\x6c\xdc\x27\x70\x67\x8d\x70\xb5\xa0\xf9\x95\xd2\x7d\x29\xd7\x6b\xb5\x9d\xdf\xa2\xcb\xb3\x21\xfe\x50\xd2\x4f\xef\x32\x86\x45\x90\x3c\xba\xd8\x03\x04\x72\xf8\xdb\xb9\xa3\x8c\x8f\xe4\x14\x02\xdb\x26\x3a\x3a\x38\xb5\x72\xaa\xd6\xd2\x67\xa4\x8a\x3d\x1f\x35\xb7\x9b\x3e\xd6\x4f\xcc\xa7\x91\xe8\xbf\x9c\xff\xa8\x6a\x28\x4d\x9e\x0c\xd6\xa7\x2a\x16\xec\x9a\x97\xbc\xa6\x4b\xd8\xc5\x42\x0c\x81\xb7\x15\x8e\x1f\xd0\xb4\x5c\x30\xef\xd4\x2c\x9d\x0f\x03\x2c\x07\xbb\xd9\x69\x5a\x64\x09\xed\x8d\x17\x69\xed\x23\x10\xa3\xb4\xb6\x98\x63\xe7\x2e\x2f\x20\xd2\xbb\x38\xf5\xd8\x99\x4b\xcc\x62\xae\x84\x63\xf9\xf9\x2e\xc3\xac\xd0\x2f\xe3\xaa\x87\x9d\xba\xc0\xed\xe7\xc2\x35\xab\x4c\x4c\xa8\x4d\x1d\x07\x6b\x60\x40\xeb\xc3\xe3\xd4\xc6\x75\x30\xf2\xa2\x0a\x6a\xf4\x07\x43\x74\x74\x4d\xb6\x46\xa8\x8b\xf9\xec\xf1\x0f\xb3\x13\x12\x20\xb6\x13\x78\x52\x23\x2b\xb3\xe9\x7c\x83\xbc\x45\x5c\x21\x1b\x11\x7e\xf3\xe9\xa1\xc6\x0c\x29\x56\x7f\x4f\x05\x47\x06\x19\x3f\xe3\xb8\x81\xb7\x35\x38\xcc\xc4\x69\x53\xda\xe1\x61\x4d\xda\x18\xb7\xb3\xf2\xa8\x69\xe6\x65\xfd\x7a\x6b\x72\x1b\x01\x6b\xbe\x4c\x1d\x01\x64\x4f\x5b\x3b\x92\x89\x4a\x19\x05\xb5\x1a\x0a\x4a\x7d\xcd\xd5\x7b\xad\xc3\x79\x4d\x6d\xc4\x71\xa8\xcd\x21\x9a\xd6\x3f\xce\x55\x09\x56\xb3\x2a\x48\xea\xff\x8a\xcd\x96\x3f\x36\xff\xc2\xd2\x1f\xb7\xc8\xef\xb6\x85\x28\xaf\x6b\xf8\xa7\x2a\x4e\x72\x37\x60\x07\x97\x94\xf4\xa2\xf5\xdd\xfe\xbc\x18\x28\xa3\x5a\x8d\x4b\x7b\x58\x5b\x0d\x82\x0e\x46\x76\x59\x6e\x9e\xf2\x1e\x0d\x39\x87\x99\x0d\xc3\x97\xcb\xef\x33\x7a\xd2\x34\x4f\x40\xa1\x94\x73\xc7\xbe\xb0\x46\xf4\x03\x4b\xae\x68\xbb\x87\x8f\x69\x6a\x72\x9d\x9d\xd9\x1a\x02\x7a\x4e\x7a\xf2\x02\x43\x9f\x11\xb8\x04\xfc\x55\x0e\x1d\x8b\xf3\xa2\x82\x92\xb4\x7a\x65\xa1\x66\xa2\x05\x4c\xc5\xf0\xc1\xb6\x78\x25\xab\x4d\xa2\xca\xe1\x35\xa7\xd5\xfa\x8b\xfc\x18\x36\xda\xd7\xfb\x99\xd2\x90\x05\x4c\x05\xb8\x2a\x45\x9f\x32\x44\x36\x19\xca\x13\xa4\x7b\x82\xde\x6f\xb4\xd5\xbd\xa0\x20\x1a\x24\xa2\x1c\x5e\xb0\x27\x9e\xe8\x15\x74\xba\xac\xe5\xaf\xe4\xcd\xaf\x5b\x39\x77\xaf\x62\x78\x78\x7b\x65\xae\x36\x29\xc6\x0a\xfd\x8d\x64\x6f\xe2\xb4\xac\x1c\x56\xdc\xfb\xa8\x21\x08\x88\xab\xd4\x66\xc8\x96\xee\x00\xa9\x3f\xb3\x91\xc6\x73\xf5\x7c\xc0\x18\xc6\xe2\x52\x6d\x13\x06\xea\x4d\x5f\xee\x8c\xb9\xee\x85\x4b\xb5\xe3\x09\xaa\x69\x89\xd4\xa6\xed\xd5\x66\x73\x04\x2c\x3a\x09\x2f\x17\x79\x46\xb4\x08\x3b\x0e\xb4\xe9\xd5\xc0\x7c\xc1\x49\x95\x11\x19\x82\xcd\x4e\x72\xb5\x71\x15\x04\xd9\xa2\x54\x42\x68\xa2\x9d\x9a\x2e\xb5\x56\xa3\x83\xcd\x1b\x75\x5f\x7d\xcc\x18\x6c\x94\x91\x13\x25\x3a\x58\xf6\x90\x57\xbc\x67\x8e\x08\x83\x52\x59\x36\x18\x4e\x8d\xd5\xa5\xe4\x4a\x25\x89\x9f\xbb\x73\xcb\xe0\x04\x6a\x5f\xd3\xf6\x33\x91\xa0\xf0\x01\x25\x55\x67\x7d\xcd\x94\x94\x73\xc0\x64\x3c\x26\xfb\x3f\xa5\xf5\x38\x7d\x5c\x8b\x71\xd8\x1b\x3f\x30\x71\xd6\x1c\x30\x2d\x40\x9a\x4f\x4d\xd5\xbd\xf8\x1a\x8e\x10\x35\x5e\x75\xd6\x00\x97\x63\xc7\x89\xdf\x2b\xf7\xb4\x92\x08\x6e\x6f\xcf\xe6\xc2\xfe\x03\x0c\xaa\x02\x82\x79\x8c\x4f\x85\xb2\xd9\xe3\x03\xcd\x9a\xdf\xa1\xae\x02\x8e\x7d\xef\xe9\xe1\x4d\x29\x46\x9d\xc4\x4e\x7c\xbf\x1e\x9b\x7c\x10\x79\x46\x4a\xa8\x80\x63\xba\x4b\xba\xd5\x4d\x06\x4c\x9f\xd1\xae\x3c\x23\x85\x12\xf8\xf1\x99\x91\xef\xee\xbd\x2a\x37\x45\x25\x0c\xed\xe6\xf0\x87\x4b\x93\xef\x51\x09\xba\x10\xf1\x15\xb6\xca\xfa\xcb\xac\x8b\x95\x01\x66\x8c\xb8\xda\x6d\xd8\x8b\x13\x1f\x57\x05\x1d\xe9\x2f\x2b\x4d\x75\xec\x02\x23\x10\xc0\xc4\xdf\xb6\xce\x15\xb5\x03\xed\x41\xba\x38\xf6\x82\x61\x2a\x94\x35\x10\x0d\x5c\x98\x41\xa4\xaa\x43\x34\x8b\x14\xbb\x8c\x4b\xf9\x20\xfa\xe7\x3d\x5a\xf1\x2e\x0d\x93\xb8\x3e\xda\xb3\xdb\x35\x60\x36\xa5\x15\x91\x0b\xbc\xf0\x48\xf2\xd0\x42\x77\x03\x94\xe9\x63\x86\xcc\xbf\x3c\x1c\xa3\x52\xb8\xa2\x48\x7c\x9e\xbf\xaa\x49\x25\x97\xb1\xc0\xde\x84\xf7\x96\xe1\x7c\x65\x6f\xe1\xd5\xad\xdf\x3c\xeb\xfd\xe7\x67\x5b\xd5\x10\x55\xa5\x84\xe1\x34\xd7\x80\x15\x62\xc6\x5b\xc1\x6a\x67\xa7\x26\xbf\xa8\x65\xb8\x18\xfc\x49\xa2\x7f\x9e\x37\x4a\xc1\xd3\x9c\x0a\x10\x7b\x36\x0d\x10\xc7\xcd\xe6\xb5\x6f\xb8\x73\xb9\x69\x33\xe2\x49\x7c\x6b\x6a\xcc\xbc\xe4\x3a\x20\x1b\x5e\x5a\xa8\x5a\xc3\x3b\x5f\x55\x37\x42\x67\x50\x63\xb8\x2a\x7f\x9c\xa6\x47\x86\x19\xf7\xb4\x13\xbb\x21\xa7\x57\xdf\x67\x74\xab\x50\x15\xb7\x4d\x10\x09\x6a\xfa\xfe\xd6\x61\x1a\xb0\x83\x55\x41\x88\x41\x6e\xb5\x87\xbb\xe3\x76\x46\x81\x06\xd9\x5c\xb8\xf5\xbe\x21\x5a\xb7\xc8\xd5\xc5\x30\x3e\x6c\x40\xe4\xf2\x18\x55\xc5\x27\xf8\xd8\xe3\x3a\x99\xd9\x2d\xf0\x1e\x93\xd5\x65\x50\xce\xf3\x41\x4f\x4f\x7c\x92\xbe\xfd\xa2\x4a\xfe\xdc\xab\xe0\x22\xb3\xfa\x3d\xa0\x52\x1c\xcf\xa6\x01\x84\x8d\x7f\x7f\xcf\x30\x27\x21\x36\x15\x09\x36\x7c\x07\x8f\x09\x94\x73\xe7\xb4\xe8\x35\xce\x2b\x8b\x12\x27\xa8\x56\xc5\xfe\xb4\x8e\x6a\x4d\x6d\x0e\x5b\x89\x2d\xd6\x3b\x7b\x54\xeb\x08\xb9\x5e\x17\xd7\xa3\x90\xdd\x8f\xbf\x2c\x33\x35\x6a\x18\x06\xa3\x02\x71\x47\x3c\xbc\x94\xd7\x24\xb8\x9b\x72\x8b\x90\xd4\xe7\xce\x4b\xd6\x03\x60\x98\xdd\xa7\xab\x34\x7e\x42\xd3\xf1\xc1\x81\x0b\xfa\xe1\xb2\xd1\xff\xca\x9b\xfc\x4b\x4d\x04\xa3\xc3\xb4\xff\x44\x22\xf3\x02\x3b\x0a\xa8\x89\x46\x8b\x7d\x88\x8b\x81\x0b\xce\x15\xa9\x77\x9e\x35\x87\x70\xcc\x2f\x4b\x9c\xc4\xf1\xd1\x97\x24\x21\xc5\x45\xca\xb2\x35\xcc\xeb\xc6\xd4\xb9\x16\x61\xa7\x98\x27\x5c\x18\x3c\x75\xcb\x6b\x8a\x8b\x06\x50\xa6\xa8\x92\xea\x5b\x70\xfd\x93\x63\x8d\x9e\x7a\x19\x34\x3f\x5c\x11\x79\x53\xeb\x67\x19\xac\x3e\xdb\x27\x75\x30\x68\x16\x38\x9b\x96\x01\x26\x2e\x56\x72\x7e\x45\xa5\xbf\x6c\x4c\x72\x03\x16\x03\x57\x60\xe7\x52\x41\x7f\xf5\x80\xf3\x2c\xd0\x7d\xa0\xc2\x67\x45\xd9\x88\x3c\x8f\xb3\x84\xef\x9e\x67\x7a\x20\x7a\x65\xce\xf2\x8b\x96\xf4\x17\x9a\xb5\x68\x1e\xae\xd9\xa6\x10\xf3\xd6\x75\x9a\xa4\x76\x77\x74\x5f\x71\x46\x49\xea\x89\xa3\x4d\x58\x5c\x00\x8f\xf9\x04\x39\x62\x58\xfc\xdb\x0b\x78\xb9\x85\x18\xb7\x88\x4c\x5f\xc0\x54\x16\xe8\x81\x78\x67\x78\xd4\x60\x99\xd5\x31\x2b\x10\xcc\x74\x4e\x85\xf5\xc1\x7c\x55\xa5\x09\x96\x9c\xfa\xce\xe3\x7b\xfa\xd2\x88\xe6\x25\x86\x8c\x38\x41\x13\x04\x04\x15\xc0\xce\x09\x54\xa2\xff\x34\x27\x0e\x79\x55\x9e\x81\x1d\x5d\xc3\xfb\xca\xb7\xd3\x00\x8a\xba\xae\xc9\xf1\x6f\xb4\x4d\x9a\x18\xfd\xc6\x23\xdb\xcc\xf4\x8f\x06\xd0\x3c\xe0\x3a\x53\xff\x7b\xfa\x92\x3e\x36\x88\xe4\x88\x6d\x9e\xa7\xa9\xc5\x21\xb7\xc2\x47\xae\xdf\x9d\xde\x7c\x9b\xb7\x41\x91\x0b\x09\xc7\xba\x26\x22\x28\x71\xb0\xd4\x79\x4a\xdf\xdd\x69\xcc\xe5\x31\xf2\x34\xe1\xf6\xd9\xcf\x1a\x7c\x84\x42\x9b\xe8\x4d\x3d\xfa\x2a\x87\x6f\xf9\x94\x45\x6b\xc6\x05\xb1\x2c\x57\x13\x2f\x66\x41\xb1\xc8\x11\x16\x5b\x3e\x10\x33\x56\xda\xe5\x4a\x96\xe0\x27\x97\xeb\xbc\x42\x27\xb0\xb9\x2e\x5a\xf4\xa3\x6f\x2e\x17\xdd\x3a\xea\x62\x9f\xb7\xbe\xad\x3f\x75\x18\x01\x0e\xb9\x36\x65\x31\x5b\x24\x75\x68\x85\xce\xe0\x47\xae\x0e\x67\xf8\x37\x0e\x99\xc9\xde\x8e\xb9\x86\xa0\x39\x24\xb8\x6c\xe0\xc5\xda\x2d\xca\x28\x1f\xb6\xfe\xd8\xb0\x08\x2c\xb2\xc0\xf3\x99\x6c\x85\xf5\x00\x2e\x7c\xbc\x01\x8a\xa3\x2e\x28\x7d\x0a\x0d\x85\x13\x6f\x68\xa0\x06\xea\x09\xfd\x5a\xeb\xbf\xfc\x8b\xe5\x45\xe3\x71\x31\xe6\xe8\x5f\xbf\xa2\xd9\xd3\x21\xc7\x21\x48\x4a\x43\xbe\xfe\xae\x21\x47\x84\x3c\xb0\x16\xe2\x45\xf2\xd3\x9a\xdc\xa7\x57\x73\x88\xb0\x07\x6e\x35\x01\x71\x42\x08\x0a\x8a\x67\x67\x43\xab\x5c\x76\x8e\xc9\x2c\x93\x1a\xdc\x45\xfb\xa7\xc7\x49\x55\x3e\x90\x25\x98\xf5\xae\x91\x78\x2b\x27\x36\x11\xb5\xfe\xb0\xc3\x68\x70\x52\x06\xf0\x3a\x7e\xb9\xa6\x36\x6d\xd0\x1c\xd4\x69\x35\xcf\x68\x97\x57\x01\xa4\xfb\x0b\xa3\xe5\x08\xf1\x2e\xed\x71\x6d\x7a\x33\xbe\x6f\x6b\xd0\xef\x38\x79\x5a\x43\x81\x50\x46\xeb\x94\x64\x73\xe1\x7f\xdf\xa3\xda\x7a\x84\x5b\x27\xe5\xc2\x5f\xf3\x36\x54\x76\x1e\x29\x36\x67\x3d\x4f\x6e\x36\xea\x8e\x3a\x76\x7d\xc9\x7b\x06\xfc\xc5\xeb\xd7\xa9\x2b\x04\xfa\x5c\xe2\x92\x3e\x36\x33\xf9\x97\x00\xcd\xaf\x12\x57\xc1\xb2\xfe\x6d\x61\x72\x7f\x06\x25\xe4\x16\x10\x3f\x85\xd1\x22\x3a\x7b\xf9\x9e\x2e\x21\x06\x5a\x6b\xd9\x5c\x78\x63\xb7\x30\x11\x5c\x30\x6b\x61\xd3\x9e\x9c\x7e\xa2\x09\xe6\x55\xc0\x55\x37\xb6\x2c\x7d\x6a\xa7\x21\xbf\x82\x18\x59\xe9\x19\x66\x72\x3b\xcf\x57\x38\x19\x97\xba\x20\x6b\x0b\x1b\x4b\x5e\xec\xe7\xd6\x8c\x30\x93\x2e\xa9\x23\xc0\x67\xa0\xe3\xe7\x5c\x66\x06\x6b\x21\x42\x2f\x6c\x79\x56\x19\xa6\x26\x75\xe4\x04\x71\x21\xf1\x85\x57\x47\x34\xfd\x75\x74\x0b\x14\x90\xb4\x50\xb8\x62\xe9\x50\x23\x5f\x2a\x11\x97\x1f\x9f\xd4\xaf\x36\xf0\x4b\xc9\x66\x08\x4a\xb2\x70\xdd\x16\x25\xff\x56\x63\xb4\xc4\x50\x13\xf8\x36\xf5\xd2\x01\x83\xa3\x40\x62\x88\xe5\x21\x03\xec\x57\xa6\x2e\x65\x92\x85\x1f\x88\x70\xb6\x88\xe4\xb1\x2f\x67\xa3\x9d\x9a\xfb\x6a\x85\x32\x0a\xee\xab\xd6\xf4\x65\xa6\x6b\x0f\x52\x1e\x3b\xff\xd9\x13\x77\x31\x88\x2d\x14\xf7\xc2\xeb\x77\x24\xc7\x52\x35\xbf\xcf\xee\xa7\x75\xf7\x28\xc3\x77\x53\x08\x8a\xc8\x11\x4a\xea\x31\x75\x32\x1a\x10\x70\xcf\x7f\xde\xb4\xe0\x92\x3a\x65\x6f\xbf\xc6\x93\xa3\xce\xec\x24\x90\xf2\x7a\xd2\xe8\xf9\x04\x52\x10\x23\x5c\x74\x22\x29\xe3\xe1\x07\xcc\xe5\xea\xfd\x4d\x93\x86\x8c\x77\xde\x30\xfd\x06\x72\x75\x02\x62\x7a\xf6\xe1\xe1\xe6\xe5\x45\xa3\x5c\x91\xcb\x94\xbc\x65\x68\x69\x75\x4c\x98\xda\xde\xce\x33\x93\x49\xd7\xea\xc2\x1b\x5d\xae\x0f\xaa\x82\xe1\xf8\x33\x86\xe6\x09\x6b\xd4\x5d\x04\xc3\xcc\x9f\xb4\x1b\x26\xca\x65\xe2\x78\xbc\x86\x0e\xd9\x1a\x23\x89\x72\x1c\x0c\xf5\xbe\xdc\xb3\xaf\x6c\x1c\xa4\xa3\x7b\x7d\xa9\x79\xfc\x71\x4d\x3c\x06\x32\xc2\x02\xe2\x62\x33\xf7\xad\x1b\x66\x66\xd7\x65\xa7\x21\xd4\x29\x9e\x1c\x6b\x5e\xbf\x75\xcc\x50\x49\x7a\xf1\x6c\x9b\xa7\xe1\xe7\x1d\xae\xb9\xbd\x6d\xeb\x28\x63\x07\xb9\x25\x07\x33\x5e\x8c\xca\x52\x62\xd9\xbe\xe4\x63\xb1\x19\xf1\x7c\xe4\xf4\xd9\x74\xfc\xda\x09\x6d\x9c\xcc\x0a\x9c\xa7\x2c\xce\xf8\xbd\x9b\x79\x32\x55\x24\x05\xde\xd8\xf8\x4a\x4d\x7d\xcd\x22\x2e\x60\x26\x59\x25\xdd\x46\x29\xe2\x21\x07\x15\xa4\xcb\xcc\xb3\x87\x54\x61\xeb\xa0\xc0\x2d\x44\xc7\x01\xb0\x3d\xe7\x75\xa8\x2b\xa8\x63\xda\x84\x6b\xf8\x70\xe4\xdd\x19\x2a\xea\x97\x1b\x35\x0a\x6a\x66\xb0\x9a\x67\xd6\xa9\xa8\x54\xa3\xb5\xc0\x91\xb9\x72\xac\xa8\xbd\x54\xbd\xa0\x8f\xcb\x0c\x1a\x67\xd6\x3f\x8f\x1f\x20\x12\x8e\x40\x98\x0f\xa5\x6b\x1a\x69\xb0\x2b\x8a\xb7\xf0\x8b\x9f\x98\x69\xd8\xfa\x05\x7e\x94\xf0\xf0\x20\xf0\xa2\xb0\x86\xe5\x04\x30\x0a\xde\x8a\xa9\xdf\x9c\xe6\x4b\xe4\xa3\x0a\x8e\x36\xde\x94\xbd\xc3\xb4\xc1\x88\xe7\x23\x68\x77\x0a\x08\xdd\x86\x1e\x8d\x6c\xea\x97\x1d\x0c\x23\x39\xb3\x70\xf9\xc4\xd6\xc1\xe6\x26\xe4\x84\x94\x99\x2d\xa6\x69\x88\x8b\x1b\x76\xe0\xfb\x30\xc2\x51\x87\xe9\x73\x62\x14\x5b\x45\x2e\x0e\xea\x1c\x0e\xf9\x7f\x63\xa4\x72\x9a\xcf\x48\x95\xba\xd0\x9c\xdd\x6e\x9c\xab\x32\x0d\x44\xa7\xc6\xfa\xfc\x56\x4d\x3a\xc9\x09\x38\x70\x23\xfd\xca\x42\x23\xe6\x82\x08\x0d\x3f\x89\x6b\x87\xe8\x54\x4f\x97\x78\xa0\x23\x67\xdd\xbb\x60\xb0\xc6\x3b\x4e\x48\x04\xf6\x17\x36\x02\x35\x86\x79\xbe\xf2\x8a\xe6\xf4\xbb\x92\xb2\x02\x72\x09\x1f\x2e\xfe\xf8\x79\x93\x11\x84\x8b\xd8\x96\x0f\xe6\x8e\x7e\x17\x6a\x35\x66\xf4\x74\x57\x99\xce\xc5\xa8\x26\x99\xb8\xf5\x59\x6a\x33\x46\x77\xb1\xed\x70\xf0\x4c\xaf\x35\xb3\xa0\x85\x6c\xe4\xa1\x46\xf4\xf9\x53\xd7\x3e\xab\xea\x68\x5c\x25\x40\xea\x9b\x3d\xc1\x90\xa2\x2a\x8a\x91\x6c\x78\x59\x07\xff\x4e\x77\x05\x94\x5b\x08\x0c\x78\x6f\xa8\x71\xfe\xbd\x8a\xd4\x9f\x58\xb7\x97\xe7\x30\x25\x86\xea\xc4\x8f\x09\x5a\x47\x2e\xd2\xf9\xac\x90\x05\xff\x81\x69\x93\x1c\xee\x91\x30\xb2\x66\xe8\x51\x12\xcf\xa6\xae\x47\x5c\xcd\x63\x2f\xd5\x6e\x18\x51\x7b\x65\xea\x43\xb9\x10\x6e\x38\xa7\xd5\x03\x0e\xf2\xc4\x9b\x9f\x35\x54\xd7\x54\xa2\x09\x45\x86\xf5\x15\x61\x6a\x3c\x37\x70\x4b\x5a\xa3\xeb\xbf\x1e\x4e\x3e\x1f\x52\x05\xce\x16\x0f\xaa\xff\xb8\xcd\x4c\x04\x68\x99\xe4\x49\xdc\x60\xc9\x4c\x3a\x64\xb2\xc3\x91\x2b\xe9\xaa\xa9\xf7\xb7\x1a\x33\x0a\x04\x2c\x62\x39\xda\xf8\xed\x5a\x8d\x99\x50\x6e\x9a\xbe\x0d\x78\xde\xc4\x51\x22\x39\x89\xfa\xd7\x26\x2f\xb7\x2a\x22\x20\x5e\x02\x3f\xfe\x97\x4c\x42\x5b\xe7\x8e\x85\x33\xaf\x4e\xbe\x78\xf4\x4b\x13\x17\x26\x94\xa4\xf8\xa5\xf8\x96\xc6\xfe\x03\x59\x19\x25\xb0\x12\xee\xde\x25\xe6\xd7\xb2\xf7\xf5\xab\xe9\x1f\x15\xa1\x89\x1f\x81\xc3\x29\x8d\xe7\x65\x33\x8c\x79\x31\xf5\x6e\xc1\xd0\x20\x8b\x2a\x67\xa7\x21\xa4\x75\xfe\xe5\xa9\x0b\xf5\x01\x51\x2e\xfc\x52\x86\xdf\xe0\xc5\x00\xa6\x68\x7f\x7f\x4c\x5d\x24\x94\x71\x28\xdc\x92\xa7\xd5\x1b\x4d\xe9\x68\x97\xa6\x3d\xcf\x94\x4d\x13\x61\xd0\x45\x16\x6f\xd4\x71\x46\xf4\x43\x88\x07\xd9\x58\x2e\x7c\x6c\xa0\x86\x0e\x93\x0a\xb9\x80\x38\x1a\x32\x44\x95\x55\x06\xad\x28\xfd\xbf\x47\x78\xc3\xf4\xe6\xa0\x11\x25\x68\x32\xa9\xb4\xbe\xaf\xb4\x50\x5d\x24\x71\x66\xa9\x27\xcf\xbb\x32\xc9\x52\x02\x60\x0c\x71\xb1\xeb\x83\x04\x9f\xc2\x7c\xcd\x70\x93\x11\x12\x35\x90\x0f\x66\xdd\x06\x42\xd6\x7d\x79\xa0\x36\x45\x45\x2c\xfa\x26\x3f\x7a\x79\xb8\x32\x4c\x69\x16\x07\xbe\xee\xe9\xd1\x7d\xa7\xb3\x59\x30\x35\x95\x5d\x96\x33\xa1\x96\x20\x04\xac\x4e\xea\x1c\xc9\x31\xf3\x11\xfe\x9c\x57\x22\x2e\x8b\xce\x9c\x38\x1f\xeb\x6c\xeb\x8c\xfe\xf2\x47\x2f\x8c\x35\x6e\xf6\x0a\x72\xf2\x7d\x7a\x5e\x2f\x18\xad\xf9\xde\x53\x26\x9a\x55\xaf\x1e\x55\x4f\x79\x32\x97\x7a\x0a\x1f\xe2\xe5\x5a\xcd\x6b\xd8\x65\xea\xd0\x12\x07\x85\x87\x2f\x76\x0c\xd5\x56\xd4\xf3\x59\x10\x4f\xcc\x53\x9f\x7e\xd7\xe8\xc9\x61\xd0\x23\x8a\x5d\xd5\x97\x6b\x24\x8e\x2e\x6e\xea\x9b\xfe\xd1\x59\x53\xcb\x0a\xb4\xca\x91\x8b\xc1\x27\x8d\x77\xf3\x52\x63\x0b\x46\x0f\x97\x81\xe3\x10\x6c\xf0\xf9\xcf\x9b\x93\x01\x8c\x2a\xa8\x0b\x49\x7c\x4e\x8a\x66\x2e\xd7\x15\x14\x6c\xe4\x35\xc1\x22\x53\x1f\x18\x48\x28\xe0\xb9\x01\xae\x6c\xd7\x9b\x4d\x35\x91\xc7\xbd\xda\x79\x28\xfe\xc9\x5e\x4d\x43\x34\x90\xcc\xa3\x8c\xb7\x4a\x93\xe1\xe3\xd8\xc9\x6c\x2e\x74\x3b\x86\x24\xf6\x63\x89\x49\x1f\x89\xcc\x55\x2f\xab\x74\xf4\x7a\x8d\xc8\xd6\x69\xdc\xb4\x57\x09\xf1\xe0\x5c\x6f\xfa\x1f\x4e\x68\xa8\xe7\x32\xee\x82\x6b\xe3\xec\x38\xd3\x0a\x90\x30\x39\xce\xb5\x36\x6e\x31\xe5\x42\xfc\x68\x07\x8a\x51\xde\xd8\xad\xaa\x3b\x02\x80\x97\xb8\xe5\xbf\x62\xd6\xc7\x8d\xe5\x71\xcb\xd0\x4d\x66\x5c\x7c\x36\x99\x86\x8c\xd5\x24\xed\x04\xb9\x19\x76\xf2\x3b\x79\xb3\x41\x00\xf5\xbc\x40\x91\xdc\x64\xfc\x54\x16\xf4\x00\x5d\xec\x5a\xad\x99\xb9\x04\x5d\xc8\xad\x26\x5a\xe0\xd6\xaf\x5f\xd5\xd8\x61\x6e\x74\x74\xa3\xe5\x1e\x70\xbe\x02\x65\x97\x15\x76\x2e\x3c\xfd\x40\x32\x4f\x2a\x13\xe1\x07\x6b\x59\x63\x93\x1b\x6d\xe2\xc4\xce\xb6\x6b\x84\x9f\xf3\x9b\x3b\xd5\x1c\xb3\xa3\xbd\xbd\x03\x82\x21\x5b\xa7\x4b\x02\x04\x9e\x87\x79\x8a\xe2\x94\x39\xda\x6f\x4e\xc0\x3c\x9f\xea\xc6\xa5\x9f\xdb\xd7\x5f\x3e\x31\xf0\x6e\xfc\xe8\xdc\xa6\xe6\x5c\x2d\xba\x3c\xc5\x6c\xae\xeb\x59\x0d\x6a\xdb\x3e\x35\xfa\xa7\xe5\x8e\x02\x1d\xd3\xba\x04\xf3\x6d\x7d\x53\x33\x02\x42\x0d\x17\x7b\xf9\x80\x81\x32\xc7\x74\xa6\xf6\x49\x29\x70\x50\x29\xaa\x6b\x3f\x79\x6e\xa0\x86\x77\x77\x61\xef\xd4\x37\x1b\x47\x09\xbb\xb8\xa8\x29\x40\xa4\x97\x5f\x60\x16\x5b\xc4\xad\xa8\x39\xf2\xb8\xd3\x46\x10\xf5\xc7\xc2\xc2\x9a\xf5\xf2\x07\x0f\x41\x97\x2b\x7b\x47\x3c\x22\x6c\x3a\x90\x13\x8a\x03\x44\xa2\x55\x72\x02\xde\xf2\xfe\xb2\x32\xf6\x9d\xd8\x0e\x57\xe0\xac\x7b\x34\x16\xb4\xf4\x01\xcc\xe6\xc2\xcc\xbe\x51\xc6\x05\xad\x7a\x4e\x71\xd1\xdc\xb6\xde\x50\x3b\xc3\x0d\x50\xf8\x93\x03\x4e\x3b\xa3\x84\x25\xa2\xcb\xbf\x39\xb0\x2f\xe8\xa7\x3b\xb1\x3a\xc8\x06\x52\x6f\xae\x37\x7d\x62\x8f\x99\x96\x60\x28\x49\x41\x11\xfd\x23\x6b\x35\x87\x27\x5a\x25\x52\xda\xac\x37\xb5\xbf\xc3\x48\x58\x5c\x9f\x68\xaa\x9f\xa3\xa6\xc6\x77\xb5\x57\x8a\xee\x9d\x9f\xd7\x0c\x95\x11\x5c\x40\x4a\x43\xad\x7b\x97\x82\x36\x60\xe9\x61\x99\xfa\xe9\x4b\x49\xca\x3a\x95\xce\xbf\x97\x77\x9b\x4e\xf3\x2b\x75\xf8\x4d\xea\xdb\x82\xd8\x73\x5b\x80\x3d\x89\x98\xfc\x70\xd3\xdf\x78\xba\xbf\xac\x75\xf6\x1c\x2f\x1d\x6e\x61\xc4\x2b\xcb\x9b\xfa\x89\xa3\xa2\x87\xcb\x6d\x75\x61\xe3\xd5\x7a\x06\x6a\xcd\x50\x71\xab\x1e\x16\x66\x38\x51\xb9\x14\xbe\x3e\xeb\x12\x6d\x00\x55\xa6\xd4\x01\xab\x58\x86\xb9\xe4\xf3\x98\x64\xcf\x07\xe8\xb3\x5e\x17\xad\x8a\x9c\x2d\xfc\xc5\x98\x24\x1a\x08\x54\xc0\xb9\xe9\x5a\xea\x0f\x1a\xca\xd7\xa5\xdc\xec\xed\x7a\x23\x77\xec\x2a\x13\x80\xe5\x09\xb2\xc8\xdf\x16\x6a\xac\x9e\xc0\x23\x36\x54\xd8\x03\x9f\xd0\x94\xf5\x30\x00\xa0\xb8\x53\x41\xea\xc5\x96\xe1\x71\xaf\x2a\xdf\x2c\x64\x4d\xc7\x6b\x07\x94\x21\xcf\x83\x0e\xe7\x80\x51\xc9\xab\x11\x64\x26\xc5\xad\x1e\x47\xe6\xc7\x47\x99\x31\xd5\xae\x60\x26\x4c\x8b\xac\x2f\xbe\xac\x82\xc7\xd4\xb6\x6b\xb2\xb9\x70\xd9\x80\xa6\x61\xab\x6d\x08\x86\x65\x0a\x86\x01\x69\xe0\x7a\xd4\xa9\xe3\x02\x00\xdc\xf6\x9f\xd5\x8c\x72\xa1\x19\x09\x73\xb0\x7f\xe9\xe6\xdb\xe3\x16\xb7\x48\x5c\xe2\x93\x68\x11\xbf\x30\x43\xe1\xe4\xb1\xeb\x33\x5c\x63\xd8\xc5\x01\xf3\xf8\xdd\x9f\x49\x31\xc5\x6c\x82\x6a\x25\xbd\x3e\xc5\x4f\xfd\x6c\x98\x78\x43\x5d\xe1\xce\x18\xae\x7a\x5b\x4d\x96\x8b\x99\xcb\xca\xc9\x50\x5e\x83\xc4\x20\xda\x3e\x8f\x24\xd8\xd4\x32\xa5\x88\x56\x65\xfc\xe1\x26\xcd\x2a\x86\x3d\x4f\x54\x15\xe1\xee\x77\x4d\x0c\x06\x71\x8b\x81\x23\xd0\xcf\xdb\x42\x73\xc1\x59\x14\xf3\xc5\x29\xb9\x50\x7d\xa5\x29\x13\xda\xb3\xb9\xf0\xe1\x3d\xb2\x23\xd6\x01\xcd\xb4\xf3\x35\xe5\xde\x7c\x01\xcc\x20\xe5\xc5\xb0\xca\x00\x61\x7a\xa4\x5a\x73\x88\x4d\x78\x22\xd2\x9b\x9a\x76\x40\x30\x2c\x30\x2b\x0a\x33\xfc\xd1\x42\x85\xb7\x8c\xa2\x5d\x53\xe5\xc3\x2e\x2b\x33\xd5\x08\x3f\xb8\x48\x99\x54\x92\xee\x59\xcb\xc9\x7b\x37\x39\xa4\x07\xe5\xb1\x5f\xd6\xae\xa6\xec\x96\x38\xc2\xf8\x41\x15\x86\x62\xfb\x5b\x34\x32\x42\xe0\x89\xa6\xd5\x5f\xe7\x0d\x35\x03\x6c\x43\x22\x59\x7f\x76\xd8\x74\xe1\x67\x98\x9f\x44\xce\xc3\x98\x6f\x76\xae\x02\xe6\xe1\x36\xd9\xb7\x3f\x7c\xca\xe4\x68\x79\xe5\xd8\xb5\xe1\xd2\x50\x82\x64\xf9\x15\x19\x2d\x41\x30\x5a\x37\x5a\xae\x63\x81\xd3\xb4\xd6\xaf\x33\xdb\xc0\xb4\x86\x4a\x5c\xc9\x8f\xb3\x4c\x46\x1e\x33\xfd\x85\x84\xc4\x2a\x1c\x71\xef\xb0\x18\x1f\x61\xe8\x2e\x03\x18\xea\xf2\xb7\x8d\xee\x00\xf5\x91\xc3\x03\xcc\x2a\xcd\x36\xd0\x2e\xe3\x3a\xe3\x21\xfd\xa9\xfb\xd4\xc9\x86\x84\x26\x8a\x76\xd7\x19\x58\x96\x2e\xec\x14\x12\x23\xc4\xcd\x43\xc6\x1b\x07\x30\x66\x29\xf4\x91\xd4\x67\xae\x0a\xb5\x16\x35\x72\xa2\xf8\xec\x62\xe1\xcc\xec\x08\x2c\xf1\xc6\xdd\x1a\x4f\x1e\x72\x7a\xe4\x22\xa7\xe1\x11\xe8\xce\x7d\x7c\x60\x93\x6e\x4a\x89\x09\x48\x6b\xaf\xd5\x79\x20\xe1\x65\x8d\x98\x0f\x82\x05\xd6\xde\x5d\x1a\x23\xd6\x95\xbc\x06\x4e\x56\x86\xa0\xb0\xf8\x65\x0d\x7d\x10\xd5\xad\xfc\x22\xc7\x4b\x74\x25\x5e\xe1\x6b\x93\xda\xbb\x46\xcc\xb8\x6b\x35\xde\xa7\x78\xf9\x05\x73\x4e\x70\x57\x40\x7c\x1f\x49\x0c\x52\xf8\xba\xe2\x4d\x30\x40\x2c\xa5\x1f\xd4\xdc\xa7\xfd\x32\x05\xb1\xc8\x29\xd7\xf1\xfb\xc6\x73\x68\x57\xb6\x08\xb8\xd1\xde\xcc\xed\x4b\xb5\x76\x64\xb4\x5a\x7e\x00\xbc\xa7\xf4\x17\x0c\x51\x21\x75\x43\xf3\xc5\x48\xfd\x6a\xe0\x90\xc4\x13\xd5\x9a\x9e\x74\x6d\x36\x51\xf8\xcf\x5a\x64\x16\xfe\x4d\xc8\xe3\x17\xd4\xd5\xe3\x80\xe8\x71\xb8\xf3\x1e\x15\x14\xe1\x1f\x06\x4e\x6f\x9e\x67\x04\xd5\xa8\x56\x96\xd0\xf6\x89\xc3\x06\x4b\xad\x8b\x1b\x67\x69\xa0\xe0\x30\x6f\x30\x53\xdd\xc0\x76\x30\x62\xe2\x76\xfe\xf1\x0e\x03\x5d\x68\x33\x54\xcd\x3b\xd1\x01\x01\x6c\xe4\xb9\x27\x84\xf5\x20\xa3\x3e\x4f\x05\x60\x01\xc6\x31\xd1\x7c\xf3\x1b\x7c\x50\x95\x49\x6b\xba\x3a\x13\x27\x4c\xea\xec\x9c\x30\x0d\x5a\x02\x99\x4f\xce\x33\xb5\x9b\xba\xb8\x1a\x66\xb8\xb3\x65\x88\xbe\x54\x73\xe7\x5e\x0d\x75\x53\x36\x17\x2e\x79\x51\x0c\x60\xc0\x2e\x12\xf2\xee\xe9\xea\xa1\xd6\x30\x8a\x72\xe6\xbd\xa6\x1e\x01\x78\x71\x60\x49\x17\x48\x9d\x39\xda\xd4\xc6\x2b\x48\x15\xdb\x9d\xf7\xa9\xac\x8d\xd6\x31\x5b\x49\x85\x70\xe0\xd7\xdf\xbb\x24\x06\x13\x35\x27\xa4\xf6\xea\x81\x22\xc9\xc7\xa8\xe2\x42\xea\xde\x9b\xfa\xec\xdc\x78\x07\xd6\xa0\x89\x7b\xe1\xe3\x2a\xbe\x57\x68\x09\xa9\x0e\x73\xf8\xc7\x1e\x83\xee\x0a\x57\xa2\x97\x10\x64\xb4\x06\x2f\xd3\xa4\x48\xa8\x83\x19\x12\x76\x89\x7f\x7c\xde\xf4\x1f\x75\x0b\xc8\x17\xdf\x29\x65\x5f\xa6\x0e\x9a\x8b\x03\x5f\xa8\x29\xec\x5e\x76\xa1\xd8\xe1\x25\x2e\x49\xf6\xad\xcb\xf8\x15\x32\x13\x31\x57\xa8\xdd\x35\x5a\x79\x7b\x21\x1f\x38\x00\x9c\x19\xda\xcf\x74\x55\x07\xc7\x76\x47\xfa\x20\xf6\xdb\x3f\x5c\x6b\x28\x16\x30\x23\xb6\x86\xe5\x9a\x59\x16\x9e\x2a\x8e\x10\x89\xdd\xdf\x04\x3e\xe1\x76\x8f\x32\x4b\xfd\xf4\x53\x9a\x88\x03\x43\x55\xe2\x96\xca\xa8\x0a\x23\xe8\xa3\xf1\xda\x76\xb4\x4d\x06\xbe\xfe\x03\xaa\x79\x01\xcc\x69\xb8\x00\xbe\xfc\x00\xbf\x61\x79\x52\x61\x6d\x75\xe3\x3f\x9b\x0a\xb8\xc4\xe9\x75\xb5\xa4\x12\x12\x0a\x4b\x7a\x92\x71\x6a\xfe\x5c\x54\x6b\x06\x68\xa7\xef\x1d\xd7\x5c\xf7\x07\x8e\x8f\x5c\x9f\xa3\x45\xbf\x7b\x54\xd3\xbc\x6a\xe0\x2e\x8c\x40\x9e\x2d\xfd\xd5\x27\x85\x76\x09\xad\xd6\x1c\xdc\x0d\xff\x76\xdd\x9c\x16\x1d\xe9\xe5\x89\x7e\xc9\xc4\x9a\x36\x7d\x87\xa9\x1b\xe5\xe9\xe5\x87\xcf\x1b\x94\xcc\x12\x1c\xb0\x66\x4c\xdd\xbf\xbc\x55\xd7\x76\x8b\x62\x31\xcc\x12\xac\xce\x8d\xad\xaa\x22\xd4\x7d\x42\x3f\x32\x86\x3f\x70\x07\xfb\xc2\xac\x35\xb5\xee\xc9\x18\x98\x5e\x6f\xb2\xd5\x0e\xb7\xed\x34\x44\x83\x91\x17\x20\xc7\x27\x1a\xd2\xf2\x2d\x03\x7a\x25\x55\xc0\xa5\xf4\xcd\x83\x53\x85\x51\xad\x2b\x71\xf7\x1c\xf2\x7b\xfe\xee\x64\x34\xc0\xc8\x6b\x88\xbe\x04\x2a\x28\x7b\x00\x30\x96\xeb\x77\x3c\x39\x87\x92\x21\xd8\xed\xa3\x0c\xab\x9f\x34\xc5\x4b\xc0\xf9\x37\xc6\xd3\xac\xda\xc3\x33\x9e\x1b\x16\xdc\xd0\x3c\xf1\xde\xa1\xe5\x37\x84\x75\xf1\xd9\x5b\xea\x95\x37\x2f\x37\x52\x03\x62\x97\x93\x2c\xe8\xf4\x88\xfa\x18\xe3\xa6\xc0\x95\xbe\x44\xef\xee\x77\x4d\x74\x9e\x23\x72\x49\xeb\x17\x6b\x12\x8d\x4e\x54\x62\x18\xcb\x24\xee\xa7\x0b\x15\x5f\x5e\xee\xff\x8d\x4d\x2d\xf6\x2a\x02\x83\x22\x8e\x8e\xf9\xc9\xcc\x04\xb7\xb7\x48\x4a\x65\xb8\xec\xee\x3d\x77\x69\xa2\x4e\x6d\x78\x04\xe9\x40\xac\x55\x3b\x92\x91\xa9\x81\xaa\xc4\x41\x46\xe3\xf3\xd6\xb5\x06\x84\x18\x11\x47\xc1\x45\xd3\x77\xf5\x8b\x9f\xe0\x35\x93\xa6\x45\xff\xf2\xd1\x21\xba\x46\xb6\x07\xf6\x21\x90\x36\x3c\x68\x34\xf3\x7c\x12\x23\xa6\x53\x2f\x6d\x35\x3c\xbb\xa2\x25\xe1\xca\x98\xe9\x01\x2b\x54\xc7\x82\x21\xa7\x06\x37\xfe\xb5\x6f\xf2\x0c\xf8\xc6\x46\x8d\x05\xd2\x16\xba\xe7\x30\x6f\x5e\xde\xc8\xb1\x5c\xea\x4b\x7c\xe9\x1e\x75\x95\xf4\x50\xc8\x0f\x32\xb7\xbf\x69\x7c\x1c\xd0\x08\xe6\xc1\xee\xf6\x61\x86\x17\x2a\x29\xc8\xa1\x15\x9b\x2f\x6c\x13\x50\xa1\xa7\xdc\xc0\x75\x15\x03\xa7\x0e\x31\x1a\x3a\x51\xa2\xed\x48\xd7\xcf\xd4\x4f\xb7\xc7\x17\xfc\xe4\x69\xd9\x6c\x2e\x1c\x32\xd9\x6c\x9c\x57\x89\xed\xc9\xf1\xfb\x86\xc5\x17\x69\x6d\xe1\x2a\xec\x9b\xfa\xa6\x78\xb1\x4b\xa0\x60\xb7\xdf\x00\xb7\x2b\xa5\xda\x98\x91\xd1\xa3\x39\x20\x52\x27\xcf\x28\xe5\xce\xe8\xee\x81\x41\xf1\xfe\x63\x55\x50\x4f\x82\x36\xc5\xa0\x6d\x46\x35\x42\x6d\x82\x41\xe8\x93\xf7\x7a\x3a\xfa\x9b\xc4\x00\xe4\x60\x28\xed\x44\xb2\xfe\xc2\x62\x25\xfe\x37\x3a\x9b\x0b\x3f\xc2\x5d\xea\xb2\x9f\x46\xac\x46\xeb\xd8\x57\x2a\x0f\xe1\xab\x8f\x18\x04\x4b\xdb\xa6\x9e\x2f\x64\x12\x7a\x53\xc7\x76\x8d\x34\xeb\x35\xb0\xe9\x80\x88\xc0\x1b\xc4\x7f\x5b\xcc\x6f\xba\x85\xb7\x4e\x6a\xe3\xba\xa0\x6f\x2e\xe3\xf7\xda\x5c\xdc\x15\x05\x94\x51\xf3\xb5\xc6\x37\x2a\x35\x20\xc3\xdc\x6c\x62\x73\xbc\x1a\x72\x1b\xd4\x51\xb6\x1d\x43\xe6\x0e\xd2\x3b\x4c\x45\xc6\x95\xaf\x32\xf7\x0e\x34\xc4\xbe\x3d\x87\x0a\x29\x6f\x68\xff\x4e\xdd\xac\xfe\xce\x46\x8c\x35\x38\x48\xfa\xbf\x77\x34\x2b\xbf\x3a\x98\xa7\x44\x93\xf6\x24\x7b\xac\x55\x62\x33\x1a\xa5\xc7\x82\xf0\x91\x4c\x47\xde\xa8\x1b\x07\xa5\x50\x10\x42\x76\xe1\x0f\xb6\x19\xf2\x02\x1a\x9c\xd9\x3a\x30\xe7\x52\x9d\x7a\x20\x8c\x6c\x15\x00\x60\x7f\xbf\x98\xc6\x5f\xe0\x15\xb8\xf5\xd4\x9e\x61\xfa\x8d\x4f\x99\xe6\xd9\xd9\x63\x64\x98\x34\xef\x61\x56\xc7\x8c\x17\x0e\xa7\xd6\x99\xd2\x21\x65\x14\x78\xc2\x02\x37\xfa\x85\x67\x8e\x49\x8f\x5e\x92\x07\xb4\xcd\x89\xf1\x66\x47\xc9\x8f\xe2\x8c\x44\xcc\xa4\x1a\xd7\x6a\x65\x16\xad\xd6\x90\xc7\x85\x80\x1e\x89\x9b\x04\x45\x64\x2a\x15\x86\x57\x4d\x55\x71\x91\xd6\x70\xac\x3a\x73\xf3\x22\xfe\xee\x93\x26\x4e\x98\x38\x39\x4a\x15\x26\x1f\x50\xf8\x7e\x2a\x79\x73\xd9\x47\x93\x9b\xc4\x21\xf9\x06\xd2\x67\xa5\xd6\xe9\xe1\x5a\x0f\x98\x56\x63\xaf\xe7\xcd\x0f\x68\xc4\x97\x1a\x18\x91\x85\x2f\x6c\x88\xdf\x02\xd5\x89\xa4\x8f\x5e\x3d\x59\x97\x76\xaf\x73\x48\xc1\x5f\x86\x5d\xac\x98\xb2\xb2\x7d\x96\xae\xae\x37\x5a\x5d\x81\x6d\x63\xcf\x2b\x06\x8e\xa0\xd2\xb5\x0b\xf3\xe0\x85\x34\x8f\x99\xa6\x12\x72\x91\xab\xf7\x87\x59\x15\xc7\x58\xbb\x9f\x2f\x1c\xa2\xb2\x07\xdd\x97\x20\xec\x7e\xcd\x74\x55\x8a\x1b\x09\xd6\x79\x79\x5e\x1e\xdc\x81\xf4\x81\x6e\xfa\x73\x23\x4d\x20\x8c\x8f\x99\xcb\x7d\x8f\x21\xb0\x7c\x6d\xac\x96\x0c\x81\xd0\x40\xf4\xa9\x1f\xe9\xe1\xc7\xb5\xe2\xd2\xae\xe8\xb8\x9a\x02\x11\xc8\x07\xea\x8d\x80\xb5\x9f\x3b\x18\x07\xc0\x3a\xb0\x79\x6f\xa9\x35\xcd\x6f\x04\xc6\x3f\xfd\x4c\x0b\xbf\x21\x14\xf0\x2e\x9b\x0b\x8b\x47\xd4\xe5\xd4\xa0\x81\xaa\xe1\xc8\x42\xbe\x27\xe6\x53\x31\x98\x49\x7d\xc7\xd1\xc9\x31\x88\x55\x38\xbf\xf0\xa3\xf3\xe2\x45\xab\x92\xc4\x2c\x31\x9d\x7d\xdb\x68\xa3\x23\xc7\x21\x9e\x4f\xec\x98\xa7\xf3\x82\x22\xfc\x4f\x86\x93\x32\xbf\x68\x50\x6d\x80\xe7\x2a\xb8\x80\xeb\x26\x98\x09\x4e\x81\x08\x6e\x27\xf7\xdb\xda\x66\xe8\x2a\x52\x5f\xaa\x49\xbf\xdf\xae\xb0\xc0\x53\x27\x45\x2f\x76\xe1\x28\x25\xbb\xde\xc0\x9e\x8f\x59\x01\xc4\xe0\x92\xe1\x65\xfb\xd3\x3a\x04\x5e\xeb\x9e\x43\xe7\x7c\x83\x48\xf0\x4c\x43\x88\x99\x57\x18\x57\x02\x78\xdc\x24\xf1\xd1\xa9\xb7\x8e\x08\x47\x50\x8c\x98\x9f\x67\xa0\x73\x98\xeb\x4d\x5f\x7e\x4a\x1d\x81\x02\xce\x73\x4b\xea\x79\x6f\xc6\xfc\xb6\x52\x59\x43\xd7\x5a\x9f\xd9\xa2\xc2\xf9\x4a\xcc\xb8\x31\x90\xf5\xe0\x23\x06\xf9\x96\xa1\x12\x71\x8d\xbc\xed\xcf\x47\xe3\x07\x87\x21\x56\x28\x71\x8d\x11\x0f\xe9\xba\xad\x34\x4a\xe8\xc3\xe7\x0d\x5c\x03\xae\x13\x50\x05\x95\xd9\xee\xbc\x35\xa3\xe3\xbf\x29\x35\x5c\x6c\x83\x69\x7c\x53\xa2\x39\xfe\x3a\xbe\xaf\x0a\xa0\x39\x04\x86\x72\x8f\xaa\x9c\x5d\x0f\xa9\x33\x5f\x30\xee\x88\x9a\x43\x62\x68\x74\x71\xf5\x60\xbd\x02\xb0\xa9\xeb\x0b\x84\xfb\x6f\x3e\x68\x2a\x89\x39\x53\x4d\xe8\x42\x8d\x2e\x8c\x32\x14\x4a\x9b\x1d\x7f\x0a\x8b\x34\xff\x28\x04\xe4\xba\x5c\x6f\xba\x67\xbe\x3a\x2b\x7e\xc0\xf2\x81\xb4\x69\x18\x98\x52\xb8\x3c\x30\x4e\x01\x03\x59\x21\xc5\xfb\x87\x79\x26\x02\xbc\x0b\xb1\x82\xc4\x48\x94\xd6\x18\xc8\x55\x17\xfb\x65\x20\x76\x73\x46\xc1\x65\x79\x6d\x18\xae\x69\x34\xfc\xc8\x98\x6e\x62\xe4\x91\xb8\x34\xb5\x5e\xd4\x18\xc2\xc8\xe7\x61\x6a\x9e\x39\x74\x04\x9d\x19\x01\xba\xa9\x6f\xd2\x7d\xad\x99\x87\xf3\x20\x37\x11\xce\x7a\xd7\x34\x4e\x60\x58\xdf\xc4\xe9\x29\x07\x93\x47\xae\xb3\xad\x63\x9a\xf8\xe8\xa3\x0e\x69\x4d\x2f\x86\x84\x4a\x76\xca\x1a\xc2\x37\x40\x0d\x74\x15\x61\x73\xf7\xd7\x8d\xaf\x02\xd7\x67\x52\x6b\x2e\xf5\xb5\x0c\x6f\x36\xdc\x4a\x5d\xb0\xaa\x86\xc3\x50\x98\xa7\x0e\x03\xd1\xd4\x29\xad\xbd\xd7\x0a\x77\x53\xcd\x56\x3a\xb3\xf2\x29\xb5\x97\xbb\x90\x47\xa0\x17\xb6\x69\x65\xb2\x66\xc9\xe7\xc7\xf6\x9d\x5e\xfc\xb4\xac\xed\x84\x58\x8b\x7b\xe4\x6a\x53\x59\x1e\xb9\x85\x38\x4d\x5b\x37\x6b\x88\x91\xc7\x7a\xc2\x31\xfa\x95\xd9\xa6\x88\x57\x1e\xb9\xc0\x0b\xd4\x4e\x9f\xe5\x4e\xd6\x3d\xf6\x03\xe6\x33\xc8\xd0\xc3\xd5\xca\x8f\x89\x68\xed\xea\xf0\x3b\xe7\x9a\x3a\xbc\x05\x8e\x46\x90\x95\xdf\xf2\x05\xc6\xb0\x03\x11\xcf\xc1\x8d\xc4\x93\x44\xb3\x55\x7e\x5d\x0b\x7c\xd8\xd8\xbf\xb8\xce\x30\x9c\xe2\xae\x34\x88\x35\x24\x0b\xe3\x87\x8f\xc5\xbd\x31\xd9\x55\x86\x05\x52\x3d\x8b\x12\x00\xbe\xac\x9b\xce\x53\xbd\x4e\xcd\xda\x7e\x95\x7a\x38\x9f\x94\x49\xc0\xbc\x31\x3c\xac\x2e\x40\x35\x9d\x6b\x9d\xb9\x65\xa0\xc0\x20\x82\x4c\x14\x5c\x17\x93\x37\x6a\x0d\x82\x80\xd3\x09\xa3\x97\x98\xbe\x6b\x68\x53\x29\x2c\xbb\x84\xbd\x42\x52\xc5\x2b\x63\x90\x47\x4b\x0d\xba\x8e\x5f\x8c\xdc\x76\x4e\x80\xc8\x52\xf7\x64\x9a\x60\x3c\x51\x92\x28\x8e\x58\xfb\xe9\xe4\xca\xe4\x1b\x15\x5a\xd7\xb4\x0d\xc2\x8b\x36\x5d\xea\xf6\x81\xb3\xcc\x23\x8f\x8f\x73\x7e\xfa\x90\xd9\x74\xb7\x59\x40\x84\xb2\x92\x35\xfd\x94\x11\x34\x48\x55\x35\x1e\x32\x9d\xc7\x4d\x8a\x28\xab\x06\x05\x24\x4b\xd0\x5f\x5c\x60\x9a\x9c\x12\x17\x0c\x89\x00\x09\xbc\xfe\xac\x6a\x34\x4d\x9c\xda\x91\x55\x63\xd7\xf5\xc3\x47\x1b\xf9\x32\xf3\x2a\x14\x73\xe5\x84\xb8\x97\x7a\xe3\x49\xa3\x4c\xc4\xa8\x2a\x95\xeb\xf7\x2d\x6d\xd5\xc9\x06\xc4\x05\x43\xc6\x28\xcc\x2d\x68\xd6\x9f\x25\x1c\x29\x2b\x0e\xcd\xfd\x23\x07\x6b\x9b\xde\x2d\x3a\x01\x16\xe2\xc7\xe7\xd6\x6a\xe5\x6e\x00\x6d\xfc\x70\xc6\x61\xd3\x50\xd2\x2d\x95\x88\x40\x33\x5a\x6f\x3d\x6c\x70\x91\x31\x62\xf2\x74\xa6\xbf\xf9\x74\x13\x4e\x1a\x58\x60\x22\x13\xef\xdc\x67\x1a\x49\x05\xae\x2f\xdb\x33\x77\x1b\xba\xfd\xdc\xe3\xd8\xe3\x73\x94\xcc\x82\xc5\x2a\x56\xd7\xd1\xca\x1a\x6a\x70\x3d\xe3\x87\x8e\xe8\xdd\x2a\x86\x25\x21\xf3\x5b\x86\xff\x97\x1d\x05\xfe\x12\x95\x19\x75\xb4\x8f\xe7\x6e\xd1\x14\xd7\x35\xef\xc1\xcc\x8c\x82\x94\x42\x73\x7c\x8f\xd6\xb5\x73\xfc\xd7\x63\xaa\xb4\x77\x70\xd1\xcf\xe6\xc2\xce\x59\x26\x81\x02\xd5\x11\x71\xa2\x72\x88\x53\xbe\xad\xcf\x6f\xd0\x88\x2c\x3e\xe2\x4a\xe3\x56\xf7\x2c\xcd\x86\x9e\xf1\xbc\xdd\x1e\x27\xda\xd2\x65\x44\x78\x1d\xef\xb1\x41\xda\xdd\x51\xa9\x20\x52\x00\x4f\xab\xcb\xdf\x88\xeb\xfb\x6b\x26\x4c\x81\x52\xd9\x24\xfe\x21\xbb\x12\xd4\xc4\xda\xfe\x71\xe0\x85\x6a\x95\x82\xe8\x49\x85\x8f\x26\x66\xd5\x45\x0c\xd2\x27\xd0\xd1\x4d\xef\xba\xc0\x9c\x4d\xfa\x2c\xaa\x82\xbb\xb8\x69\xd3\xb6\x8b\x34\xb6\x67\x94\x13\x85\xfd\xce\x19\x98\x75\xc4\x59\x92\x40\xfc\x7a\xe8\x3e\xe1\x3a\x56\x2c\x95\x9b\x5a\xa0\xe1\x96\x8e\x41\xfa\x1d\x50\x90\x6e\xf9\x37\xef\x31\x54\x23\xaa\x62\x7c\x1a\x77\xdc\xde\x3d\xdd\x3f\xee\xc1\x82\xc1\xcd\x27\x52\xa6\xc4\x8f\x0b\xf3\x25\xf8\x5e\xa2\xf5\x33\xb1\x55\xcb\xb3\xb1\x0c\xa9\xd6\xd7\x5d\xde\x36\x58\xc4\x4f\x65\xe2\x48\x1e\xd5\x93\x54\x1b\x39\x36\xf1\xe3\x86\xf9\xd7\x77\x8f\xd0\x81\x7a\x85\x66\x5a\xc1\x05\x1f\x0c\xd5\x4b\x61\x9f\xb8\xca\x0a\xef\xdd\xee\x8f\x8a\x07\x1b\x44\xe5\xc5\x0f\xc6\x1b\xe8\x6e\xdb\x0e\x6a\x02\x43\x99\xde\x3a\x5b\x05\x73\x8a\x18\xc8\x5d\xa6\x57\x1f\x4f\xe2\x2c\x82\x1a\xaf\xf2\xdf\x33\x9a\x43\xc2\x46\x44\x8a\xd6\x7c\xee\x03\x31\x5c\x01\x88\x43\x36\x17\xbe\xbd\x7f\xa4\x91\x46\x05\x0e\x0d\xb8\x37\x94\x28\xdf\xee\x7d\x74\xb0\x3e\x9e\xa3\x4c\xf8\xf4\x84\x17\x2f\xbd\x3a\x19\x10\x69\x9e\x38\x38\xaa\x1e\xfa\xf4\xd3\x4e\xdf\xba\xe3\x12\x7d\xe3\x95\x1c\x5a\x85\xa6\x1d\x57\x3f\xf9\xdf\x7b\x78\x5d\x79\x7b\x95\x3a\x5a\xf3\xa6\x37\xfd\x7b\x43\xfa\x05\xb9\xa4\x8a\x1c\x8f\x4b\x05\x5a\xb7\xf9\x26\xc0\xcf\xa6\x8c\x05\x35\x9f\xc0\x31\x14\xb1\xfb\xfd\x1d\x46\x3b\x23\x4f\x03\x8e\xc9\x0a\x07\x3d\xa0\x36\xf5\x94\xb6\x69\x20\xc2\xf6\xdc\xe8\x2b\xcc\x55\xf4\x48\x60\x32\x91\xfe\x7d\x01\xbf\xa4\x01\xf9\x19\xbd\x25\xef\x67\xbc\xfc\x9e\x7a\xee\x77\x05\x58\xb7\x04\xb2\xee\x2c\x18\xb8\x0f\x86\xdc\x92\x23\x2d\x4a\xac\xe7\xc6\x9b\xae\xdb\x3e\x61\xb8\x1a\x23\x5e\xd2\x9f\x7a\xd3\xb4\x05\x67\xb8\x5b\x84\xd8\x37\x3f\x50\x1d\xdd\xb1\x0e\xcc\x3c\xe7\x4e\x55\xfe\x5b\x45\x54\x25\x0e\xc1\x4d\xfd\xed\xf4\x2f\xf7\x99\xa0\xbd\x5a\xe0\x4b\x3b\xb4\x19\x7d\x28\xfb\xca\x79\x79\x7a\xe9\xa3\xc9\x1f\x22\x94\xad\xac\x14\xd8\x69\xab\x7d\x5e\xdc\x5e\x70\x50\x5d\x34\x3b\x36\x2e\xd1\xd8\x0d\x08\x34\x42\xa2\x6d\x59\x2a\xf0\xdc\xe1\x33\x9e\x48\x74\xde\x7f\x88\xe7\x2a\x9f\xf1\xcb\x88\xe8\x02\xb2\xa9\xe6\x98\x0f\xbb\xe7\x07\x8f\xf1\x1c\xd5\xa1\xf9\x7c\x83\x78\x5c\x1e\xe5\x2b\xd3\xf9\x03\xc2\xdd\x3e\x43\x35\x2a\x67\x46\x9f\x59\x98\x18\xce\x4a\x5d\xef\xf0\x6d\xdd\x87\x43\xd9\x82\x87\xcb\xe7\x27\xcf\x08\x65\x51\x88\xf3\x81\x62\x22\xbe\xec\x57\x8d\x69\x0e\x2a\x00\xf4\x48\xea\xa1\x59\x5f\xe9\x36\x9c\xa7\x59\x50\x92\x0f\xfd\x83\xd7\x54\x1c\x74\x31\xa7\xe8\x47\x97\xd4\xb5\xbb\x35\x72\x0a\xf1\x7c\x2c\xc1\x30\x56\xe6\xb0\x42\x81\x74\x64\xb3\xb9\xf0\xf7\x8f\xaa\xac\x88\xe1\x12\x8c\x52\x75\xfb\xc7\x07\x96\x6a\x86\x5a\x51\x11\x05\x8c\xc9\xd3\x66\xba\x13\xed\xa6\x36\x59\x78\x3e\xf3\x98\xda\x4e\x13\x3b\x61\x40\xb0\x72\x33\x5f\xcf\x3c\x72\x2b\x59\xe2\x79\x1c\xb6\x90\xbe\x79\xb8\x30\x3d\x88\x62\xa3\x23\x1e\x29\x9b\x27\x84\x9a\x7d\x1f\x57\x6b\xbc\xdc\x5e\xae\x59\x9f\x8b\x8b\x22\xfa\x67\x7b\xa7\x26\x96\xe1\x79\xd8\x8b\x6e\xf1\xee\x0d\x46\x48\x04\x37\x24\xd1\xa6\xfb\xc2\xbe\x3e\xbd\x11\x84\xab\xd8\x5f\xf6\x25\xab\x10\x1e\xec\xae\x6e\x6b\x9a\xec\x74\x9e\x15\xd1\x90\x94\x38\x40\x71\xef\x2a\x25\xf4\x1a\xe8\xa0\x4a\xfb\x1d\x83\x2c\x15\x45\x72\xd9\x1f\xf9\x93\x66\x8b\xcc\xc5\xf6\xb3\xb9\xf0\x33\x86\x34\x47\x94\xcf\x55\xa3\x60\x27\x4a\xd4\x0c\x7a\xbe\x55\x9b\xa9\xfa\x1c\x8e\x9a\xcd\x85\x9b\x57\x98\xde\x5e\xd0\x80\x13\xdf\xfc\xda\x1d\x42\x9e\x8d\x61\xb7\x87\xf0\xf5\x0f\x06\xea\xaf\x24\x9c\x44\xa3\x1f\x6c\x6f\x19\x69\xd4\x19\x2e\x49\x76\x2b\x52\x07\xd7\xa8\x1a\x1b\xd5\x6a\x8c\x76\x43\xbb\x85\xd3\x77\x3f\x72\x94\xaf\x4f\x89\x7a\x35\x1c\xe5\x07\xa9\x8e\x61\x6a\xaf\xca\x5e\x2c\x74\x62\x05\x47\x3c\xcf\xa1\x15\xeb\xde\x50\x57\x86\xa2\x5f\x66\x73\xe1\xb8\x83\x71\x23\xd5\x2b\x93\xa6\x21\x78\x97\xa1\x34\x0c\x1c\x6c\x71\xc4\x46\x3c\x3d\x50\x64\xfd\x9e\x5f\xa3\xfc\x79\xbd\xdb\x3d\x48\xee\x1a\xe4\x79\xb2\xc8\x08\xe7\xe4\xe3\x26\xa8\x4d\x7c\x5e\xff\x84\x77\x0e\x50\x82\x32\x53\x20\x6f\x1a\xe3\xc6\x1f\xa6\x82\x9a\x3e\x4c\x7a\xdb\x79\xe6\x04\x02\xbc\x0f\x63\x7a\x6c\x3a\xb5\x47\xa5\x00\x36\xa9\x93\x66\xd3\xfd\x96\x65\xc9\x5b\x7a\x52\xbb\x98\x6e\x0c\x38\x3a\x50\xef\xfb\x43\xd3\x3f\xfd\xd2\x89\xb8\xe8\xf3\xb0\x2d\xb4\x35\xc3\xa7\xc6\xc6\x7b\xb2\x80\x6c\xad\xd1\x35\x63\xbf\x81\x25\x9e\x36\xad\x53\x10\xd9\x53\x74\xa9\x71\x7a\x18\xa7\xf8\xc3\x05\xf5\xab\xd1\x86\x53\x28\xad\x56\x31\x03\x9d\x53\xf3\xca\x7e\xe2\xa1\xe4\xeb\x94\x1c\x5a\x8f\x47\x34\xee\x02\x15\x47\x0b\xd4\x0e\x40\x66\x20\x9b\x0b\xfb\xaf\x1e\x94\x9c\x01\x70\xf1\xa1\xf4\x6f\x16\xeb\x28\x4c\x0e\x64\x4e\x7d\x78\xc6\x50\xbd\xe3\x94\x50\x15\xfd\x3a\xd3\x0e\x16\xee\x0e\x38\xea\x20\xd3\xf6\x11\xf8\x97\x9b\x16\x80\x0c\x9f\x1b\xc7\xc2\x2c\xe0\x1a\xd3\xd7\x9d\x31\x20\x5e\x0c\x06\x55\x3c\x1d\xfe\xcc\x3b\x83\xf4\xd8\x5f\x20\x2e\xa0\x95\xbf\x79\xc8\x6c\x44\xb3\xc0\xae\xf0\xb9\xe0\xba\x27\x86\x68\x84\xd9\xaa\x47\xab\xd4\xc1\xf0\x45\xff\xb0\x56\x7d\xbe\x52\x94\xb7\x43\x94\xfb\x96\x31\x1f\x41\x3e\x23\x81\x28\x70\x53\xb7\x5f\xa7\x72\xa0\x7c\x50\x40\x2c\x21\x7b\x36\xfb\x9c\x06\xcf\x60\xa8\x8e\x1d\x51\xd0\xa3\x27\xf9\x05\x79\x07\x43\xbc\x47\x7a\xec\x80\x06\x5a\x11\x53\x8a\xc2\x11\xcd\x40\xcb\x8f\x9d\xd9\x72\xbd\xe9\xef\xed\x37\x7d\xe0\x30\x16\x73\xb4\xf4\x17\x8e\x68\x4f\x11\x47\x05\x2d\x86\x32\x25\x75\xef\x42\x03\x5d\x53\xc6\x55\x8e\xdc\xf9\xda\x79\xf1\x9a\x57\x31\x2c\xeb\xce\xcd\x03\xc5\xe3\x26\xae\x2d\x38\x99\xd6\x0f\x16\x18\xea\x37\x41\xf4\x78\x91\x5e\x88\x5d\xbd\x29\x06\x0b\x74\x37\x0b\xc8\xa5\x8f\x0a\x79\xb8\xdb\xab\xc4\xd7\x2c\x2c\x32\x9f\x9d\x97\x2c\xa9\xbd\x0a\x69\x96\x1b\xef\xb5\xde\x37\x04\xd9\x89\xbb\x32\x90\xd8\xd5\xd4\xc2\xe3\x2a\xf2\x51\x46\x4a\xda\x83\x08\xbf\x7d\x9f\xda\x25\x02\x84\x05\xeb\x78\xc5\x59\x93\x30\x46\x28\xe3\xf6\x84\x5c\xb8\xfa\x8c\x86\x16\x2c\x30\x22\x3c\xd8\x7b\x53\x4f\x9f\x97\xc4\x1b\x78\x0d\xb7\x40\x6c\xe4\xe3\xab\x9b\x7c\x1e\x32\xa9\x83\x86\xdd\x7f\x39\xda\x74\xae\xae\xf0\x68\xad\x79\x57\x0b\xf9\xd4\xf3\x91\x53\x02\x52\x63\xfa\x4b\x07\xf9\x83\x28\x23\x96\x97\xba\x75\x67\x1c\x4d\xee\x1a\x31\xe4\x11\x91\x73\xa7\xff\xd2\x3e\xc4\x68\xda\xe6\xa4\xb5\xcd\x9f\x98\x46\xc3\xc3\xae\x8b\xa1\x75\x65\x7d\xf8\x31\x7e\xf8\x20\x4f\xb6\x3e\x7b\xf2\x52\x7d\x06\x0f\x3e\xda\xba\x48\xc5\x0c\x66\x8c\x0a\xcb\x0c\xc7\xa3\xc2\x7b\x4e\x48\x83\x51\xd0\x77\x48\x5d\xbe\x7c\x90\x4e\x25\xf4\x03\xce\x07\x4b\xef\x31\x26\x52\x75\x42\xc5\xc0\x40\x1a\xfd\xde\x7d\x28\x19\x66\x63\xbb\xbc\x5d\x8b\x74\x7f\x29\xdc\x4d\x19\xe2\x45\x66\x86\x15\x35\x48\x34\x75\x0a\x30\x24\xb0\xe6\x76\xeb\x6c\x46\x6e\x64\xf6\xe7\x76\x85\x71\xf6\xcb\x51\xcd\x9b\x7a\x4f\xf9\x96\xa1\x66\x24\x57\x77\x5e\xeb\x67\x77\x51\x18\x6a\x01\x10\xfc\x4f\x2b\x92\x58\x62\x16\x38\x7c\x66\x95\x3a\xfa\x86\x01\x95\xf3\x91\xb0\x24\x17\x9b\xd5\x9f\x63\x80\xbb\x10\x63\xd8\x71\x12\x7e\x6a\xe9\x29\xf7\xa9\x50\xc8\x35\x4a\x3e\xbe\x96\xb7\xf6\xe6\xd2\x80\x71\x93\xcc\xfb\x57\x1b\xd4\x14\xc4\x0a\x1c\x78\x78\xf1\x4c\xd1\x40\x8e\xd2\x64\x28\x16\xaf\x9c\xa5\x51\x43\x3a\xda\xb3\xb9\x10\x3f\xae\xae\xef\x66\x3d\xeb\xcc\xf0\xed\x0a\xb0\xe9\x47\x41\xc9\xa8\xf8\x67\x14\x8d\x1e\x51\x80\xbd\x02\x92\x38\xc3\xcc\xac\x05\x26\xef\x1f\x39\x0e\x9f\xf4\xbe\xd4\x62\xc6\x67\x14\x9b\x16\x7d\x65\xa6\xd9\xef\xe1\x93\x09\x7e\x51\x43\xf9\xf7\xc0\x6e\xb1\xd5\x1c\x50\x96\xb2\xae\x2f\xc6\x09\x02\xf1\xc4\x9c\x32\xdc\x6b\xb8\xe4\x82\x04\xad\xd0\x07\x1e\xb1\xbf\xc9\xfa\x88\xd9\x38\x56\x03\xf9\xf4\xcb\x3c\x3c\xe7\x79\x37\xa7\x37\xf3\xd9\xba\xba\xea\x50\x81\x67\x84\x9f\x1b\x29\x70\x42\xb5\x1a\x76\x19\x2d\xe8\x38\xaa\x69\xbb\xae\x30\xea\x53\x8e\xca\xba\x3a\x71\x3d\xfc\xb8\x5b\xa5\xa7\xbe\x2e\x7a\xfb\xc0\xf4\xe4\x47\x5f\x89\xbb\xb0\x00\x0e\x57\x8a\x1c\xbe\x66\x07\x90\xd5\x0f\xe2\x47\x85\x67\x56\x51\xb0\x97\x78\xa0\x79\xf7\x68\x5e\xe8\x3e\x91\x73\x96\xcc\x6c\x03\x8a\x5d\xc6\x8c\x8a\x95\x4f\x7d\x76\xa9\xde\x51\x07\xd1\x26\x5e\x02\xaf\x7c\x52\xdd\x44\x6d\x3a\x9d\x80\xf4\x8f\xbf\x41\x90\x30\x25\xda\xf3\xa4\x2e\x2d\x18\x14\x1a\x92\x76\xf4\xe4\x70\xe3\xf4\x53\x6e\x7d\x12\xc7\xea\x69\x29\xd3\x86\x1e\x4c\x8c\x21\x28\x0b\xb3\xf1\x79\xe3\xb5\xaa\x13\x97\x48\x15\x02\x4b\xea\xfe\xba\x98\xdc\x56\x6b\x0e\x6d\x60\xd1\x87\x58\xb8\x26\xce\x13\xcb\xd0\xe6\xb8\x6d\x8b\x49\x9b\x29\x05\x4e\x31\x6e\x7c\x7e\xe8\xfc\x4b\xb4\x32\xcd\x2d\x78\x58\x33\xcd\x49\x7d\xc4\x1d\x94\xf8\xe3\xab\x45\x53\x73\xd5\x00\x69\x15\x5f\xc6\x88\x79\xdc\x10\xe7\xd3\xcf\x6b\x4e\x27\x20\xa1\x1b\xbe\xae\x01\xc8\xa2\x2c\xda\x2b\x42\x28\xf9\xdf\x63\xc9\xc0\xca\xd1\xb2\xa2\xd3\xf5\x5f\xa7\xb4\x1b\x9d\x78\x35\x07\xd9\x90\x16\xff\xeb\x9b\x97\x6b\x68\xe0\x3c\x78\x62\x99\x47\xf8\x23\x4f\xc5\xd3\x4b\xe2\x16\x12\xd3\xcb\x19\x42\xe2\x67\xde\x0d\x73\x72\x0b\x6f\x92\x03\xed\x3b\x56\x6a\x4e\x50\xb8\x8b\x97\x03\xcb\x06\xa8\xc8\x91\x47\xd0\x67\x7b\x66\x24\x2f\x5c\x16\xe3\x52\xac\xe8\x9e\x3b\x9c\x0c\x46\x3e\x0b\x44\x40\x9c\xc7\xfa\x12\x36\x95\x84\xcb\xe3\xfa\xf0\x08\xb9\x20\x19\x60\x3d\xb3\x6f\xb0\xf6\x9e\x6e\x85\x05\x35\x9f\x2b\xbd\x7e\x77\x8d\x3a\x8c\x15\x17\x77\xb5\x65\x73\xe1\xbc\xed\x06\x2f\xdc\x2d\x52\x56\x95\xf1\x62\xee\xcc\x26\x60\x09\xc9\x13\x3f\xd6\x0a\xcb\x5c\xba\x30\xbe\x02\x5c\xda\x04\x72\xbc\x7f\xa5\x7a\x00\x49\x4b\xe0\x63\x42\x09\x9a\x95\x90\x4b\x7a\xb8\xd4\xd5\xff\x1a\xb9\x27\x90\xde\xc5\x54\xf5\xcf\x8b\x4c\xe7\xee\xe8\x61\xf2\x61\xc6\x92\xb1\x46\xb8\xac\x61\x97\x73\x68\x7e\xaf\xb9\x1d\x4e\x15\x04\xea\xf0\x3b\x4f\xc4\xdd\x0d\x17\xf7\xe8\xc8\xbb\x09\x2a\xbf\x75\xdb\x1a\x6d\xda\xfd\x7d\x93\xbc\x13\x18\xa5\xdc\x90\xe4\x23\xe5\x78\x7f\x54\x90\x9b\x30\x13\x9d\x74\x2c\xb9\x68\x60\x9e\x40\x90\x23\x4d\xda\x46\x6c\x89\xc5\xa0\x27\xe9\x6d\xd6\x3f\xbe\x14\x5f\x5b\x41\x39\x1b\x7d\xb3\x0f\x75\x72\x11\xa1\x3b\x70\x93\x14\x6e\xaf\x75\xc9\x31\x9e\x13\xde\x89\x98\x8e\xbd\x4b\xfd\x7d\x9d\x58\x5b\x17\x47\xe7\x50\x24\xce\x1f\x6c\x53\xbc\xae\x32\x02\xc4\x22\xf2\xca\xf9\x80\x7b\x4f\xdc\xb3\x37\xfe\x36\x45\x87\xea\x2d\x93\xf4\xe9\xb9\x9a\x61\x45\xb7\xcf\x50\x81\x08\xdd\x84\x6d\xc9\x4d\x3b\xb1\xa3\x9d\x47\x5a\xbc\x7b\xa0\xc6\xb2\xc2\x28\x8a\xf9\xd7\x8f\xd2\x6c\x5d\xa2\x1a\x8b\xa7\xd6\x6f\x3c\xa0\x31\xfb\x68\x01\x33\x97\x78\x00\x16\xbc\xf4\xb2\xc4\xb8\xc6\x8b\xf5\xc3\xd2\xef\x2c\xe4\x5f\xfb\xa6\x2a\x81\x9e\xa9\x24\xdc\xfd\x72\xc8\x38\xe3\xd6\xf2\xcb\xc0\x4e\xe6\x3e\x47\xc9\xd4\xe4\x77\x13\x86\xea\xa4\xa5\x0a\xc0\x26\x85\x1c\xdd\x54\xa3\x07\x3d\x71\xda\xb4\xc9\xb2\x19\x64\x1d\x1c\x22\x50\xc7\x0e\xf5\x78\x17\x2a\x3c\xb3\x4b\x93\xfe\x44\x5d\x0d\x2e\xb9\x18\x6e\xd2\x84\x53\x26\x5d\x23\xf6\xde\x9e\x47\xd5\x28\x1a\xd9\x00\xac\x72\xc5\x1c\x79\xf9\xf8\x04\x63\x5c\x28\x70\xfc\xc3\x63\xea\x0f\x4a\x8c\xe0\x3a\x28\x87\xc1\xda\xfd\xdc\x48\xea\x91\x13\xa5\x7b\x9c\x1c\x94\x99\x6d\xcc\x0f\x79\x12\xd5\x45\x0a\x58\x02\xc2\x73\x9b\xf5\xca\x9b\xcf\x3b\x53\xfb\x76\x18\x30\x33\xa8\x07\x44\xcf\x25\x73\xc1\xdc\xe4\xe5\x1c\xed\xb0\xa0\x56\x45\x09\xbe\x67\x66\x61\xab\x99\xc3\x51\xbb\x52\x8e\x52\x4b\x81\xe8\xdc\x7a\xda\xa8\xa7\x82\x92\x7c\x07\xb7\x6e\xa6\x1e\x75\xf9\x81\x53\x13\x37\x08\x65\x35\xca\x7c\x9a\xc7\x8e\x03\x10\x4d\x36\xde\xf0\x44\x61\x44\x32\xd6\x33\x1f\x7a\xaf\xa9\x31\x30\xb9\x4d\xdc\x56\x5f\x9c\x67\x24\x32\x18\x57\x54\xa2\x94\x99\x66\x28\x5f\x81\x6c\x12\x67\x25\x86\x03\x3b\x85\xa0\x0c\x46\xe0\xbf\x93\xa9\xa4\x4c\xfa\x45\xc0\x04\xf7\xe9\x86\xc9\x5c\x9d\xee\x46\xea\xd0\x6a\x9e\x9a\x01\xf2\x29\x03\xd6\x17\xa5\xc9\x5d\x52\x3f\x2b\xf3\x89\x27\xe3\x1b\x38\x4a\x12\x72\xe1\xc7\x5f\x50\x9e\xf5\x2e\x65\x55\x00\x59\xa9\x28\xf5\xe0\xae\xa4\xf2\x26\xc8\x5a\xf6\x35\x81\x48\xfd\x7d\x5c\x82\x30\xc4\x64\xc7\x7e\x01\xdf\xdd\x37\x30\x14\x83\xeb\xd6\x0d\x8c\xf5\x69\x09\x00\xd0\x34\x11\xe8\xb3\x9a\x91\x47\x1d\xb3\x46\x01\x01\x82\xc2\x9a\x63\x68\xc6\xf9\x28\x1f\x38\xc8\xa7\x7c\x03\x64\xee\xbb\x60\x94\x91\xa9\x94\xca\x42\xf5\x43\x75\x75\x86\x29\xc7\xc4\xae\xe8\xe6\x0c\x37\x9d\x12\x44\x31\x52\x73\xa4\x3a\xd1\xc1\x23\x06\xe6\x9b\xfa\x65\x81\x54\xfd\x87\x83\x46\xd1\x2d\x1a\x01\xb1\xfc\x59\xaf\xb5\x21\x34\xef\x3e\xdb\x09\x0a\xb8\xc0\x67\x96\xeb\x32\x5a\x37\xd6\xf6\x79\xd3\x25\x3d\x31\xc3\x6f\x82\xc0\x43\x25\x0c\xd7\xcf\x9f\x52\x6a\x2d\xa9\x1d\x6d\x4d\x16\x6d\x92\xc7\x35\xad\x1d\x52\x8b\x2e\x81\x6c\x2e\xfc\xd6\x29\xc3\x55\xc8\x47\x4e\x43\xea\xc8\x85\x77\x2f\x37\x54\x8c\x6d\x07\x23\x97\x13\xbb\x21\x07\x5c\xfe\x72\x92\x5d\x0b\xee\x11\x22\x2e\xde\xb3\x68\x88\x36\x26\xad\xd2\x12\x96\x3c\xcc\xf4\x93\xb5\xe4\xbb\x06\x2e\x47\x0c\x88\xf3\x18\xd6\x74\x81\x10\xf0\xec\x13\x4c\x82\xa2\xc1\xaf\xe6\x7a\xa3\xa2\x2f\xfe\x4a\xd1\xc0\xee\x30\x1a\xb8\x85\x2e\xca\x2a\xa2\x56\xdb\xe9\x0a\x05\xd7\x6b\x3a\xa2\xa7\x3e\x76\x7d\x93\x49\x64\x95\x80\xd6\x38\x44\xac\xbb\x7d\xa3\xdd\x6b\x97\xb1\x30\x26\xcf\xf5\xa6\xcf\x3d\x29\x1a\x20\x2e\xed\x02\xf6\xb8\xe8\x27\x74\x4e\x57\xdf\x7a\x5a\x47\xb6\x81\x11\xcb\x82\x84\x68\xaf\xf5\xf5\xb7\x4d\x49\x71\xe2\x22\x68\x8d\x8b\xd5\xfc\x8f\x2d\x42\x73\x1f\x13\x5b\x63\x67\xa6\x47\x2c\x1c\x67\x6c\x4f\x1a\xbd\x1f\x8a\x11\x2f\xba\x9e\xc9\xc8\xc3\x83\x62\xf0\x68\x9b\x1a\x95\x7c\xea\xed\x24\x43\xbf\x81\xcb\xd8\xab\x10\xec\x24\x46\x67\xe1\x81\x6d\x12\x43\x4a\x7a\x34\x33\xc2\xf0\xbe\xd6\xe4\x09\x41\x0c\x15\x91\x6f\x8c\xdd\x46\x2c\x51\x83\x25\x5c\x15\x7b\xe8\x6f\x63\xf5\xdb\xa8\x4e\xbc\x32\x6f\x61\x0f\xdd\x1d\x67\x3d\x75\xa4\xb1\x61\xd3\xbf\x78\x51\xa8\x9a\x02\x24\x2a\x9c\xbb\xec\x22\x91\xe9\x60\x1b\xd7\xa0\xbb\xf7\xdc\x21\x41\x18\xf4\x2a\xe2\xda\x3e\x7b\x92\xff\x4d\x54\x2e\x40\xb4\x6c\x51\x63\x17\x14\xf8\x65\xd1\x0b\x12\x06\xbe\xe1\x17\x8d\xc1\x25\xae\x92\x12\x13\xed\x8f\xf0\x19\xdf\x70\xa4\xa0\x9e\x27\xd4\x82\xe5\x47\xac\x8e\x1a\xa4\x75\x2f\xca\xa0\x27\x1b\x6d\x8a\x6b\xce\x57\x80\x25\xdd\x0b\xf0\xf0\x07\xea\xf7\xa3\xeb\x4b\xe8\x33\x58\xf7\x7d\xa0\x4e\xb4\x1b\xbb\x4a\xfc\x60\xfc\x30\xad\x83\x08\xc3\x07\xb5\x3a\xd8\x20\xb8\x79\x55\xa9\xf5\xd5\x9b\x1e\xb3\xd4\x84\xd8\xe4\xb1\x23\xc7\x1a\x69\xba\x57\x23\x1d\xd5\x6a\x8c\xd6\x39\x59\xd3\x3a\x7c\xbe\x8a\xea\x51\xb8\x0c\x5f\xaa\x09\x70\x76\x94\xef\xc2\xad\xff\xf8\x40\xbd\x5d\x23\xb0\x2a\x50\x60\x8f\x5a\x3f\xda\xcc\x83\x81\x86\x4a\x14\x52\x1a\x60\xf1\xed\xfc\xe8\x75\xe1\x7c\x36\x17\x9e\x18\x9d\x5c\x62\x37\xa0\xae\xb1\x97\xda\x0f\x37\x79\x5d\x16\x94\xee\xf0\xbd\x73\x39\x1a\x44\x20\x10\x08\x75\x65\xfb\xe8\xf3\x9a\x9a\x9b\xe6\xd4\x75\x81\xc9\xe9\x8a\x3d\x46\x26\x64\x73\xe1\xa9\xb3\xea\xeb\x55\xb1\x56\xfe\xa7\x3f\x35\xc7\x54\xb6\x71\x7d\xf8\xee\x3c\xb3\x5c\x3d\x5f\x45\xaa\x3a\x75\x82\x9a\x1f\xf0\x10\x97\x5a\xb6\x8b\x37\x78\x6c\x94\xcf\x83\x1d\x45\xf8\x94\xd6\xce\x8d\xf2\x56\x5c\x25\x40\x49\xb5\x8a\x1f\x24\xef\x8c\xc9\x53\xda\xa6\x5d\xc3\x4d\xaa\xc7\x3c\xdc\xaa\x2b\xd8\x70\x4b\xbc\x6c\x2e\x5c\xbe\x57\xa5\x8b\x79\x6c\xd3\xaa\x20\xa3\x46\x4b\xbd\x6a\xaa\xc6\x3c\x6e\x93\xd9\xe8\xdb\xcb\xfa\x8b\x48\xcc\x51\xa8\xd6\xc7\x86\x9b\x16\xeb\x42\x9c\x94\xe7\x09\x27\x0d\x45\x39\xda\xe5\x0a\xb2\xd1\x55\xb5\x64\x4f\xef\x93\xc2\x8f\xeb\x95\x97\xc4\x3b\x20\xc6\x7d\xfb\xcf\x5f\xa3\xbe\x70\x72\xc3\xa5\x9a\x9c\xbb\x78\xa6\x03\xcf\xaa\xf4\xac\x31\x42\x04\x4b\x6a\x2c\x20\xd1\xbf\xde\x28\xf0\x19\x98\x93\xda\xa6\xcf\x19\xae\x53\x9f\x3c\x98\x74\xa8\x12\x6a\xd7\x12\xad\x7b\x21\xc5\x8f\x41\x4e\xea\xed\xe4\xd7\x2f\x90\x28\xa5\xb7\x25\xff\x67\xc6\x46\x13\x86\x5e\x23\x52\x0e\x31\x17\xde\x98\x19\xa0\x8f\x4b\x41\xd6\xeb\x09\x7e\x66\xee\xc4\x0e\x76\x51\x36\x17\x3a\x2b\x0d\x49\xbe\x78\x0a\xba\xbf\x6e\xb8\x0c\xe2\x3a\x76\x68\x4d\x12\x7f\x52\x8f\xbc\x1a\xb7\x62\x7c\x9d\xae\x95\x1a\xd6\x63\x68\x04\x3b\x51\x5a\x0e\xb6\xf9\x12\x86\xf0\xda\xcb\x3c\x7e\xdf\x49\x59\x25\x71\x2d\x3c\xfd\xa4\xe9\xb3\x53\x22\x9e\x8f\x99\x06\xde\xb9\x7e\x7f\xb2\xbd\xad\x29\xef\x4e\x97\x4d\x9f\xc7\xdf\xd4\x3a\x18\x0c\x55\x63\xe7\xf6\xa9\x3c\x91\xc8\xde\xee\x63\xe2\xe6\x19\x76\x5d\xcc\xb4\x36\xda\x67\x5e\x48\xbe\x76\x85\xf6\xa0\x8a\x00\xa0\xca\xaf\x77\xdb\xca\x41\x9a\x08\x1a\x75\x68\x01\x44\x76\x07\xcf\xe4\x17\x00\xb6\xcb\xd8\x01\x2a\x72\x38\x6d\x32\xdf\x6a\xb7\xf8\xb4\x44\xb2\xb9\xb0\x3a\xd7\x40\x4e\xdb\xd4\x91\x72\x2e\xd6\x57\x9e\xd6\x87\xb0\xdd\x7e\xb6\x40\xb9\x25\xdb\x9f\xde\xe3\x2f\x3c\x33\x37\x7f\xbe\x6c\x7c\xe0\x7d\x6a\xb6\xde\x09\xbe\x7f\xa9\x2d\xc7\x54\xf5\x58\xa3\x5c\xb6\x64\xc5\x99\xc1\x09\xe2\x07\xe6\x12\x50\xb9\xde\xd4\xe7\xe6\x98\x80\x27\x3e\x77\x81\x98\x21\x9a\x18\x13\x1f\xee\x53\xea\x80\x17\x74\xff\xb1\xa7\x4f\x82\x51\xac\xcf\x37\xbc\xac\xc1\xce\xe3\x27\x64\xe6\xf1\x9f\x3f\x6d\xbc\x8a\xef\xa3\x2e\x25\x10\x9c\x1e\xbd\xe5\x12\x0d\xfc\x9a\x77\x88\x9d\x45\xc5\x22\x22\xfc\x70\xac\x5d\xa4\xf1\x5a\x9c\x80\x09\x77\xfb\xf4\x07\xcb\xfa\x6e\xe8\x2a\xa8\x66\xea\x7f\x9e\x50\xc9\xa7\x43\xed\x40\x5c\x20\x07\xf6\x34\xb1\x98\x51\x49\x3a\xfa\xcc\x3a\x22\x15\x17\x18\x70\x0b\xa3\xd7\xa9\x76\xb6\x88\x9a\x86\xe9\x4a\x39\x77\x3b\xad\xca\xf7\x41\xcb\x1a\x32\xeb\x16\x5e\x24\x2f\x4c\x54\xe0\x36\xa4\xe9\x93\xa7\x93\xe5\xa1\x77\x57\x80\x18\x30\xa7\x75\x08\xc6\x9f\x43\x23\xa7\x44\x75\x2a\x39\x24\x99\x3b\xda\x92\xd7\x6d\x9d\xd8\xb1\x41\xc4\x17\x0e\x69\x3e\x93\xa4\x0e\x1b\xe3\x13\xc3\x54\xfa\xc7\xa8\xa7\x39\x09\xa7\x7f\x70\x46\xdd\x15\xc4\x15\xb8\x3a\x48\x85\x36\x8c\x33\xe2\x61\xad\x86\x15\xc9\xe3\x63\xd7\x35\x43\x49\xb9\xd1\x86\x54\x8a\xba\x67\x76\xab\x76\x3b\x73\x30\x78\x23\x9b\x0b\x5f\x33\xda\xf6\x3d\x98\x51\x11\xdf\xea\x67\xe2\x75\xf4\x5c\xa2\x3b\x73\xbe\x60\x62\x8e\x3c\xc2\x62\x18\xd4\xf1\x99\x63\xd4\x7d\xc4\x75\xd8\x19\xe9\x43\x8f\x3f\xbd\x73\xa9\x22\xba\x80\x24\x80\x75\x79\xab\x66\x50\x19\xed\x5b\x0f\x4a\xb3\xcc\x52\xc1\x5a\x8a\x52\x79\x20\x21\x4a\x89\xf2\x4b\x1f\x89\xc3\x60\x99\xe5\xb5\x9e\xfa\x85\x9b\x87\x24\x8a\x0e\x9e\x00\xc0\xed\xe0\x3e\x7d\xb9\x51\x58\x70\xca\xa0\xd2\xe3\x0d\xdd\x03\x06\x2f\x1d\x33\x46\x19\xf1\xf8\x04\xb5\x37\x33\x6c\xc9\x20\xb9\xef\x5d\x9f\xf7\x62\x60\xc5\x66\xce\xd2\x3a\x34\x51\xca\x57\xc5\x7e\x03\xd7\xa3\xfd\xdb\xd9\x91\xdc\x24\x1d\x9d\x6d\xd3\xe4\x59\xbf\xfa\x60\xdc\x8f\x44\x6e\x13\x14\xd1\x3a\xbe\xcf\xa8\xfa\xfd\xa0\x40\xa4\x39\x5a\xaf\xf5\xcd\xd3\xc9\x4b\x64\x6a\x7b\xbb\xd0\x2b\x3b\xc6\x44\xdf\x87\xd1\xae\x02\xcf\x82\xd3\x7f\xd4\xd4\xd9\x6b\xd1\xb9\x89\x52\x85\x15\x45\x5d\x2b\x8e\xe0\x62\x94\x41\x2f\x9b\x3a\xda\x18\x2f\xce\xa7\x6e\x93\x84\xb9\x65\xef\xd3\x6e\x4f\x5c\xcd\x3b\x1c\x63\x19\x9e\xd9\xac\x42\x22\x6e\x88\x91\xe5\x0f\xaf\x6b\xd1\xf1\x02\xa2\x17\x91\xce\xad\x8d\x1f\x63\x03\x69\xd8\xad\x8f\x6d\xd6\x1c\x1b\x6c\xea\x02\xf7\x35\x4a\xee\x1f\xe6\x5d\x15\x90\x5b\x28\xd0\x2e\x8e\xb9\x9d\xad\xcc\x23\x5d\x0c\xad\xc8\x59\x5a\x35\x5c\xc5\x05\x07\x43\xe2\xbf\x68\xa7\x60\xdb\x20\xb7\xc4\x3b\xde\x5f\x9c\xac\x09\xef\xb8\x6e\x82\xff\x7c\x70\xd3\xc7\x9a\x6f\x79\xea\x18\x52\x4b\xbd\xe9\x0f\xbd\x30\x28\xc1\x04\x13\xce\x52\x3f\x7d\x58\xb1\x06\x83\xaa\x44\xf3\x4f\x32\xda\x60\x45\x86\x71\x2c\xdf\xfc\xe0\xf8\x56\x6d\xe2\xeb\x79\x98\x65\xf3\xd1\x51\xbd\xf0\xb8\x21\xab\x4b\xbc\xab\x59\x1e\x9a\x46\xfd\xf2\x4a\xaa\x36\x0f\xda\x3c\xbf\x6b\xd3\xad\xe5\x1b\x02\x93\x31\xbb\x5d\xe1\x89\xd1\x64\x30\xdf\x6b\xe1\x47\x0b\x15\xaa\xc4\x85\xdb\x5e\xc4\xf1\xc7\x7b\xe2\x56\x46\x1e\x3c\x66\x7e\xfe\x88\xa6\xb8\x1b\xe4\xab\xc4\x17\x28\xdc\xf4\x05\x6f\x5f\xac\x0f\x5e\x6d\x3e\xa0\xb9\xc8\xb8\x08\x26\x4e\x6d\x8f\x4b\x5d\x91\x89\x7c\xd5\xd7\x69\x28\x8c\x81\x17\xfc\xcf\xfb\x37\x89\xf2\xfa\xb8\x5b\x28\xfb\xa7\xbd\xe5\x06\xe9\x9a\xa2\xaa\x68\x9e\x9c\xbf\x44\x3d\xed\x3c\x62\x5c\x47\x21\x73\xc1\x6a\x43\x28\xc6\xf5\x51\x89\xba\x9c\x72\x07\x10\x91\xcf\x3e\x61\x82\xbd\x18\x23\xe0\x67\x2d\x9a\x06\xe7\xc6\xf3\xc2\xa4\x00\x28\xa8\x93\x27\x92\xdf\x2b\x4f\x1d\x5a\x72\xa5\x0d\x7a\x54\x3a\xde\xa7\x89\xed\x01\x18\x38\x46\x0e\x57\x8d\xa2\xd2\x05\x22\xa1\x8c\x03\x47\x32\x9a\x48\x2b\x29\x49\x41\xe3\xeb\x67\x6b\x2a\x18\x98\xf9\x60\x74\x07\xe4\xab\xc1\x6f\xa8\x1c\xb3\x4a\xba\xb3\xb9\x70\xea\xa3\xa6\x35\xa6\xdf\x0c\x52\x48\xcf\x5a\xa7\x19\x2f\x73\x53\x01\x75\xe8\x8e\x66\x62\x7c\xf6\x64\x10\x6a\xdf\xa5\x29\x07\xd8\x88\x51\xa7\xc1\xd5\x70\x36\x1e\x19\xaa\xbd\x4a\xb4\xa2\xac\x21\x56\xe0\x53\xc2\x5e\xa3\x14\xc4\x5d\x8f\x74\xfb\x6b\xad\xca\x44\x41\xf7\xe7\x3f\xef\xf9\x16\xed\x5b\xb8\x02\xf6\x62\xad\x58\x6f\xc2\x69\x91\x2d\x75\x1e\xe0\xb1\x8c\x58\xa6\x62\xbc\x72\x48\xe4\x06\x89\x3d\xad\xca\x36\x42\xab\xca\x53\xb3\x3f\x10\x4a\xb3\x8c\xd6\xb8\x1d\x69\xf1\xe8\x25\xda\x95\x5b\x8f\x0a\xd3\x12\x12\x7a\x36\xe1\x6d\x73\x14\x88\xbc\x4e\x2a\x3e\xd5\x74\x22\xd7\x1e\xd6\x38\x89\x41\xb5\xc6\x41\x7b\x0b\x35\xfe\x2a\xf5\x69\x15\x81\x73\xc7\xb4\x09\x46\xf2\x89\x95\xa5\x8b\xf5\x43\x36\x54\x94\x05\x15\x04\xe7\x2f\x2a\xfd\x45\x09\x72\x76\x40\x7c\x0a\x4b\x41\x54\x32\x04\x86\x3d\x7c\x35\x2a\xfe\x7d\x01\xd9\xbf\xf8\xb8\x10\x56\xa7\x01\x07\xd6\xfe\xd3\x7a\x53\x93\x4a\xb6\xbc\xc3\x7f\x7d\x22\x71\x43\x16\x19\x80\xdc\xa1\x3f\x55\x30\x64\x97\x3d\x07\x55\xab\xb1\xac\xf2\xa2\x65\x71\x5a\xc0\xb4\x69\x69\xf8\xfd\x05\x46\xc3\xc4\xf6\x7c\x14\x1d\x32\x78\x22\x6b\x76\x2b\xf5\x30\x52\xcd\xe6\xc2\x5b\xfb\x27\x71\x9e\x0e\xb5\x91\x13\x95\x8f\x66\xdb\x77\xd1\xb3\xba\xdf\x3b\xce\x13\xcf\xe6\x4a\x8a\xd6\xcb\x9a\x9f\x9f\xe7\xe3\x5a\x0d\x31\xec\x72\xb0\xea\xeb\x8b\x35\xcc\x2c\x05\x16\x71\x6f\x66\xad\xc1\xa3\xf5\xb1\xf2\x31\xb2\x1e\x5f\xa2\x5e\xcc\x6c\xca\x1d\x57\x5c\x6b\x4f\xba\xa4\xdd\x62\x14\xbf\x45\x44\xb8\xf1\x6c\xea\x0b\x2d\xa6\xcd\x7a\x94\xb0\xca\x43\xde\x39\x20\xbe\xec\x3d\x1a\x34\x81\xa6\xc6\x18\x8e\x89\x5e\x0d\x15\x70\x42\x06\x28\x7d\xf1\x54\x3d\xdc\x62\xde\xd4\x48\xb7\x1a\x1e\x10\x15\x62\x57\x04\xd6\x3b\xfc\xdc\x43\xf1\x7b\xfa\x65\xd3\x4a\x3d\x5c\xf2\x88\xca\x5a\x1a\x98\x93\xbc\xe5\xd9\x4c\x6b\x58\xaa\x4a\x54\xb0\xf1\xc4\x2b\xfd\xab\x59\xf1\xbe\xec\x98\x02\xb9\xdb\xe2\xfe\x3a\x36\xae\x58\xc4\xbe\xd6\x23\x49\xfd\x76\x98\x30\xd5\x46\x36\xce\x82\x41\x76\xb4\x52\xc3\x5e\x1a\xaa\x5d\x52\x6e\x50\x44\xb6\x1f\x30\xde\x34\x7a\xf3\x69\x85\xe7\x76\x35\xb8\x44\x2a\x73\xcc\x2c\x30\xb0\x5d\x76\x1b\x28\x6e\x39\x87\xc5\xb9\xb1\x4c\xc1\x4a\xae\x85\x67\xfd\x78\xa0\x42\x7b\x96\x02\xdc\x87\xc8\xef\x0f\xf6\x6b\x7c\x80\xa2\xbc\x06\xad\x3f\xec\x1d\x61\x2c\x6b\x35\xd9\x85\x4a\xdd\xbc\xc0\xb4\x90\x2b\x8a\x0e\x70\x78\xfb\x65\xba\x89\x5b\xad\x96\x28\x77\x97\xb6\x28\x9c\x2b\x76\x64\xe9\x36\x78\xf7\xc7\x12\xe1\x88\x45\x79\x2b\x6e\x36\xd8\x76\x53\x1c\xca\x95\x8f\x72\xad\xa1\x6b\x0d\x66\x1f\xf2\x2a\xc2\xe3\xe2\xdc\xfc\x41\x7a\xa3\x90\x77\x38\x73\xbd\xd6\x37\x66\xeb\x52\x0f\xdd\xcd\x9a\xc7\x3d\x26\x66\xda\x26\x31\x1b\xe7\xf8\x82\x8b\x75\x2e\x6d\x9d\xa3\xd7\xbe\x73\x54\x38\x6f\x32\x52\xa4\x2e\xad\xab\xd0\xf0\xbd\xa7\x55\xa8\xc4\x6e\x9d\x46\xd9\xcc\xae\xf5\xc2\x83\xcd\x15\x1e\x81\x77\xcf\x91\x6a\x44\x25\x99\xde\x5f\x79\xbc\x45\xef\xcc\x74\xf1\x91\xfb\x83\x6b\x2f\x12\x5f\x1d\x04\x68\x21\xd0\x3d\x70\x4a\x9d\x77\xe4\xe4\x41\x9f\x30\x53\x78\x5c\x4d\x9e\x4a\xb8\x56\x46\x2c\x01\xdb\xf9\xd2\x79\x2a\x69\xaa\x83\xa9\xc0\x35\x67\x0d\x3a\xb7\x43\x4a\x44\xa9\xb3\xa4\x3f\x3f\x5f\xd3\x49\x69\xd4\xa8\xcd\x88\x17\x7d\x97\xd2\x9b\x46\xb1\x4e\x3d\x3f\x2b\x0f\xfc\x7b\xcf\x2a\x5c\x48\x99\x94\xca\xd9\x5c\x78\xfe\x5c\x5d\x75\x2a\x2a\x4e\x84\xa7\xd4\xf9\x5a\xb3\x37\x5a\x71\x68\xfe\xa5\x8e\x8f\x8b\xe3\x8f\x10\x35\x8f\x72\xc8\x0f\x8f\x36\x2a\xc2\x3c\x72\x0b\x12\xe3\x90\xfa\xf2\x0b\xad\xda\xb0\x98\x30\x24\xc0\x8c\xe9\xbf\x1b\x3a\xb2\x36\xf1\x49\x0f\x76\x25\x2a\x68\xf4\xf3\xa6\x75\x1e\xc0\xde\x27\x08\xdf\x98\xc2\xde\x26\x39\x1a\xee\x08\x0c\x9b\x6a\xdc\x3b\x9a\x29\x5a\xc0\x39\xae\x37\x8a\xb6\x7b\x21\xe0\x9d\xcc\x6c\xc6\x9c\xa8\xe0\x2a\x62\x44\x7c\xee\xf4\xfc\x25\x26\x4d\xb1\xaa\xfc\x14\x4b\xf3\x85\xe9\x35\x71\x28\xac\xcc\xb2\x83\xad\x72\x67\x3b\x84\x57\x86\x20\xa5\x3d\xc5\x18\x92\x4d\xbc\x66\x42\x47\x7b\xbb\xac\x98\xbe\xc0\x0c\xcc\x06\xad\xe6\xe5\x78\xed\x0f\xe7\x94\xc2\x1e\xa7\x5b\x4f\x99\xa7\x60\x85\x1d\x1d\x5c\x54\x3d\xd8\xa2\xbb\xbf\x01\x97\x6e\xe4\x54\xf5\xe8\xea\xc4\x71\x81\xe9\x65\x1d\xaa\x9b\x72\x46\x2c\x46\x60\xdf\xb8\xd7\x74\xc5\xa6\x05\x25\xa4\x75\xf3\xd4\x81\x5a\x54\x06\xfd\xb0\xb0\x63\x06\x3f\xf4\x22\x2f\xbb\xce\x14\x12\xa6\x6e\x8f\x10\x7d\xb3\xc2\x93\x52\x88\x4f\x50\x12\xd3\x3f\x38\x98\x7c\xb2\x25\x87\x54\x6b\xb1\x7f\x6c\x78\xf5\x1a\xb5\x61\x56\x46\xe9\x4c\x00\xce\x5d\xe1\xba\x75\xc9\x7b\xae\xa3\xbd\x7d\x22\xc7\x1c\x7a\x86\x19\x4e\x91\xd1\x1e\xec\x02\x86\xe5\xc7\x4f\x37\x41\x22\x7d\xee\x8a\x2b\x0a\xa0\x8b\x67\xe8\xa0\xae\x9a\x68\x2a\x59\x23\x37\x2b\x3b\x21\x27\x4a\x77\x2e\xda\xdb\xaa\x34\xf4\x34\x5e\x59\x6a\xdb\x5e\xfe\xfd\x00\x8c\x03\x17\xc6\x88\xc9\x23\x8c\x7c\x51\xf6\x7a\x05\x2f\x3b\xfd\xec\x56\xf3\x37\x6c\x5a\x72\x89\x66\x23\xde\x76\xcf\xb0\xa6\xbb\xa5\x22\xf3\xcd\xa5\x86\x4b\x89\x5f\x46\x3e\x87\x2e\x84\x2c\xcf\x1b\x02\xb3\x50\x9d\x68\xad\xe5\x4c\x75\xaa\xae\xcf\x24\x0e\xc4\xdb\x57\x68\x27\x33\xba\x0f\x51\x09\x37\xe5\x01\x5f\xea\xd0\x7a\x64\x18\x15\x30\x4f\xe8\xfe\xb2\xbc\xd5\x78\x1a\xe2\x93\x5f\x5c\x56\xc0\x37\x10\x1b\xfc\x68\x87\x0a\x7e\x41\x01\xd5\x81\x11\xab\x09\x5d\x18\xe3\x55\x9b\x69\x6c\xea\x70\x8d\x66\x72\x09\xb7\x86\x4d\xe2\x22\x26\xf5\x87\x13\xf1\x33\x89\xe2\xb4\x4a\x4c\x7e\xb9\x4e\x73\x2e\x2e\x23\x86\x6c\xe1\x63\x94\x7e\x65\xa7\xd0\x66\x05\x51\x43\x3e\x6f\xf9\xe6\x26\xf3\xde\xf4\xed\xb2\xf8\x36\xf9\x47\xb5\xb4\x83\xc6\x02\x2c\xd6\xe0\x17\x5a\xe4\xae\x76\xa3\x40\x4f\xa1\x12\xb1\x3e\x37\x5b\x12\x23\xa5\xe9\xca\x45\x7b\x87\x18\x85\x96\x8b\x45\x57\x64\xfd\x99\x8f\xca\x8f\xcf\x5d\xcc\xcf\xe3\xf7\xce\x4d\x6e\x89\x7b\x1b\x87\xab\x17\xf1\x77\x29\x10\xaf\xc4\x02\xd7\x17\xa2\xb1\x95\xc5\xaa\xde\xf1\x1c\x14\x94\xca\xbc\x37\x1e\xbd\xc8\x63\xaf\x69\xc2\xc7\xb8\x46\x3d\xe8\xab\xa4\x26\x6b\x24\xd9\x32\xf2\x7d\x6e\x77\x9e\xde\xb5\x4f\xb3\x8f\xc3\x8e\xd0\x1d\xb5\x5e\x9d\xd0\xaa\x55\x1b\xb6\x4f\x19\x87\xd9\xa4\x9f\x59\x6d\x20\x4c\xa8\x8f\x85\x25\xfd\x81\x01\x6a\xcd\x8b\x81\xe3\x44\x6b\xc0\x99\xb8\xef\x3d\xc0\xbb\xed\x0b\x8a\x50\x2e\x36\x99\x3d\xac\xe0\x5f\xf2\x06\xee\xe8\x25\x6f\x95\xf3\xc7\x99\x24\x72\x9b\xca\xe8\xdf\x6b\xdd\x7a\x70\x42\xf2\x99\x39\xc4\xf5\xa9\x9b\x2d\x51\x86\x85\xc2\x55\xf2\x5d\x6e\xe8\xd1\x54\x19\x41\xd1\x3b\xfa\xa2\x4f\xec\x30\x45\xa8\x2a\x38\x2b\x2f\xd9\x13\x9a\x43\x65\x07\xa4\x96\x6f\x69\x64\x2b\xef\xae\x00\x09\xca\x5f\x6f\xfa\xdb\x43\x74\x3f\x7e\x70\x56\x97\x36\xfe\xa9\xb6\x99\x9a\xb6\x42\xc0\x8d\x68\xc2\xdf\x8c\x4a\x22\xf9\x57\x62\xe4\x66\xf3\x98\xf9\xb1\x35\x8c\x3a\x21\xa3\xc7\x1b\xc2\x62\xd0\xc4\x14\x13\x75\x3e\x00\xfb\x66\x9b\x46\x23\x8e\x2a\xd0\xa6\x63\x3c\x78\x47\x72\xf4\x59\xc6\x7e\x91\x60\xa7\x20\x8c\xdc\x65\x9c\x58\xf8\x7c\x93\x5a\x85\x8d\x0b\x01\x8b\x39\xb0\xd6\x6f\x47\x37\x99\x33\x20\x22\x94\xa5\xc3\xaf\x2f\x51\x1d\x65\xdc\x5d\xc3\x8c\x88\xd9\x6b\xf8\x9f\x4d\x72\x8c\x28\x4f\x1d\x10\x1b\x82\x80\xfb\xfe\x11\x65\x0e\xb7\x92\xc8\xce\xff\x33\xbb\x54\x5f\x61\x72\xdb\x94\xe8\x17\xcf\x4e\x57\x22\x8c\x51\xf5\x15\x7e\x64\xe6\x70\xe3\x84\xf9\xd1\x63\x91\xd8\x87\xd7\xde\x31\xb3\xf4\x80\x4f\x66\x35\x7e\xc1\xb1\x38\xd8\x97\x11\x74\xe6\x6e\x3c\x98\x8c\x6e\xd7\x4c\x13\x42\x08\xef\xbf\xca\xe3\xab\x87\xeb\xd8\x55\xea\x0c\xe9\x2c\x33\xe9\x76\xac\x86\x62\xba\xdd\x96\xb1\x1a\x70\xcd\x4b\x34\xf4\xcf\x3d\xca\x03\xd2\x02\xed\x21\xd8\xa6\x48\x4e\x6c\x70\xc8\xbb\xbe\xfd\x8e\x18\x75\x9d\x5b\x08\x80\x50\x06\x15\xe7\x7f\x9e\x18\xa4\xef\x45\xe8\xbe\x47\xff\xfe\xc8\x3b\x2a\xd1\xee\x02\x49\x25\x57\x17\xd1\xfa\x92\x61\x9f\x5b\xc5\xd5\xbc\x50\xca\xe3\x09\xd1\x9d\xac\xbf\xfc\xd9\x55\x57\x65\x73\xe1\xa5\x86\xce\xa3\xe4\x6e\xc9\x3a\xf6\x27\x2f\xeb\x12\xec\xd1\xf5\x06\xa5\x56\x5a\x53\x91\xcf\x63\x26\x1a\x9f\x0f\x69\x6e\x3d\x51\xd6\x2d\xb4\x47\xb3\xe5\x56\x75\x99\x54\xb4\x66\x68\xfb\x53\xbc\x8c\x43\x85\x82\x60\xf5\x43\x7f\x6c\xab\x16\x18\xfd\x36\x1d\x57\x9a\x19\xc3\x5a\x13\x37\x89\x30\x1f\x0f\xbf\xf7\x42\xf2\x60\x14\x11\x71\xa3\xcf\x25\x90\x8f\x72\x8f\x9c\x36\xc6\x99\x79\x54\x2a\x17\x10\xcf\x59\x44\xc5\xd4\xf3\x78\x6b\x82\xa9\x8f\xdd\x02\xff\x72\xcf\x3d\x6e\xd2\xad\x03\x26\x64\xd0\xac\xfc\x10\x59\x8c\x10\x46\x5d\x6d\xa4\x90\xfa\xd4\xf2\x61\x1a\x63\x04\xb9\x15\xaf\x44\xea\x82\xbb\x9b\x19\x33\x60\xb0\x5c\x98\xab\x3c\x1d\x1a\xbf\x61\x89\xca\x53\x6a\xba\x16\x55\xda\x31\xda\x04\x01\xe6\xac\x88\xd4\x2f\xd7\x98\x2e\x02\x18\xc8\xfe\xfc\x13\x3e\xf8\x76\xf2\x02\xab\x02\x75\x0f\xfa\x0b\xff\xb1\x42\xc5\xd4\xab\xba\x70\x16\x94\x25\xd2\x97\x0c\x34\x75\xdd\xb5\x79\xf9\xff\x73\x2f\x35\xe2\x1e\xf3\x70\x03\x48\xb5\x10\xf5\x97\xd4\x15\x9c\xa4\xc8\xa8\x43\xb4\x87\x9e\x99\x73\xc4\xac\x8a\x04\x2c\x82\xa7\x55\xa9\xdf\xb8\xaa\xf2\x67\xc4\x8e\x6e\x45\x6d\x01\xbe\xd3\xcf\x00\xa3\x90\x82\xf4\xe1\x4e\xfd\xc3\x9b\x3a\x05\x81\x4a\x15\xd0\xf0\xda\xcb\x34\x21\x3f\x27\x56\x3d\xfd\x7e\xd1\xb4\xd6\x2a\x01\xe1\x4d\x94\x3c\x3f\x9f\x6b\xa4\xf5\x4c\xc9\xb9\x77\x1a\x1c\x3a\xc4\x88\x27\xb5\xea\x7a\x5f\x32\xf4\x02\x10\x73\xb1\xef\x27\xb9\xb6\x99\xeb\xb5\x79\xbe\xeb\xc3\xc7\x1f\xde\xcf\xe4\xd8\x11\x59\x46\xac\x7e\x48\x71\xf7\xab\xc8\x2e\x03\x8b\xd2\xac\xb1\x5f\x37\xcc\x35\x6b\xc8\x2d\x68\x14\x55\xeb\x76\x25\x18\x84\xb9\x4d\xe3\x84\x6d\x66\x22\x40\x63\x3b\xc4\xd2\x8e\x38\x9c\x4e\x6b\x87\xc6\xf6\xcf\xae\x35\x96\x3e\xc8\x76\x4c\x11\x61\xa5\x4d\x23\x88\x4f\x9a\x0a\x11\xec\x37\x2f\x27\x35\x26\x3d\xe4\x63\xc7\x21\x7d\x3b\x83\xa6\xb6\x2e\x57\xcf\xae\x86\x5d\x68\x53\x44\xa9\xf0\xef\x1f\xd6\x2a\x71\xc2\x9b\x39\x96\x75\xc8\xd0\x5a\x62\x01\x2e\x27\xa5\xdf\xd2\x9f\x18\x28\x66\xf8\xd5\x3c\xe3\x9c\x87\xde\xd4\xd7\x0c\x44\xb0\x8f\x1d\x5c\x2b\x53\x57\x3d\xd8\xcd\x27\x54\xec\xc1\xdd\xa8\x54\xc2\x4c\xd2\x95\x47\x0d\xd0\xe8\x7c\xa8\x84\x3d\xee\xff\x72\xcb\xc3\x46\x01\xea\x20\xd7\x95\xba\xe6\xbd\xd6\xa8\xb2\x09\x56\xb2\x49\x11\x2e\xcc\xc4\x79\x3f\x68\x1a\x15\x78\x7e\x50\x95\x36\xb3\xa9\xa3\xa3\x92\x2b\xcf\xed\xe4\xf9\x5d\x76\xbe\xdf\x04\x29\x04\xc2\xb0\xb0\x5a\xf9\xd5\xab\x71\xaf\x2e\xdf\x87\xf6\xde\xe0\xf6\x91\x5a\x87\xc0\xad\x34\x9b\x47\xa7\xba\x4c\xe8\x0c\x61\x35\xca\x84\x0e\x50\xfa\x9d\x95\x83\xb5\x76\x84\x17\x25\x99\x36\xa7\xe6\x6e\x3f\xab\x86\xa9\xd4\xd1\x86\xa9\x13\xc6\xc4\x9d\xaa\x95\x54\x12\xae\xc2\x21\xf1\x98\xc0\xaf\x67\x73\xe1\xa6\x55\x97\x1a\xa2\xed\x39\x7d\xc1\x86\x9f\xd2\xd5\x03\x9c\x8a\x80\x42\x6c\x0f\xe3\xb8\xd9\xc0\x5a\x46\x94\xfe\xf7\x13\x83\x95\x41\x4d\x02\xa5\x92\x36\xd9\x64\x55\x5a\xc1\xbc\xd9\xd5\xb3\xb8\x55\x71\xfb\x74\x74\xe4\x4b\x4f\xaa\x80\x32\x71\x52\xb6\x04\xf2\x37\xbd\xe9\x97\xf3\x4d\xce\x06\x79\x07\x57\x45\x9c\xbd\x6f\xf5\x28\x9e\x23\x60\xd7\xf5\x1a\x4e\x1d\xb9\xcd\x24\xd7\xcc\xf8\x8e\xd6\x64\x02\x25\x0b\xd4\xa9\xd7\x19\x4f\xc1\x8f\x6e\x26\x49\x6a\xda\x94\x6f\x7a\x0a\xbc\x8c\x4d\xff\xe7\xe2\xc1\xba\xbe\x50\x1d\x3b\x92\x46\x7c\xed\x79\x1c\x96\xbd\x88\x21\xd7\x23\x4d\x1d\xcc\xf4\x23\x06\xb4\x0f\x3a\x66\x05\xa9\x74\xb9\x77\x99\x7a\xc7\x4e\xe0\x70\xc8\xc8\x36\xe1\x3d\xb5\x38\x5d\xc8\x8b\x39\xa4\x0b\x86\x6b\x89\x44\x1d\x03\xde\x5a\x7d\xbf\x23\x0f\x09\x46\x3f\x66\x5e\x80\x40\x0d\x36\xdc\xa4\xb5\xaf\x40\x60\x1a\x3e\xf7\x91\x4d\xc9\xf8\x5a\xa2\xac\x84\x85\x58\x77\xbc\x3f\x1a\xf3\xcc\x49\x45\x01\x35\xb8\x10\x53\xea\xee\xe7\x2f\x4f\x90\x83\x38\xa4\x3b\xf9\x1c\x2e\x7c\x4c\x64\x26\x5c\x6f\x5c\x14\x08\x2d\xe3\x54\x08\xf0\x91\x5d\x11\x4d\x30\xeb\xb1\x33\x03\x34\x62\x56\x57\x54\xaa\x09\xb1\x59\xae\x44\x98\xcd\x85\xc7\x36\xf2\xef\x77\x07\x2e\xb8\x40\x74\xcc\xe6\xc2\x96\x53\xda\x9c\x9c\x3a\x7c\xa8\x9a\xfa\xe4\xce\x01\x71\xd6\x87\x1c\x50\x5a\x78\xfe\xd0\x20\xf9\x00\xa3\x47\x25\x15\x9a\x52\x61\x3b\xc7\x24\xce\x95\x2e\xa4\xb1\x19\xe1\x2f\x8b\xf1\x3e\x42\xa0\xad\x10\x33\x63\x36\xf7\x85\x08\x8e\xfe\x4b\x54\x6c\x43\x67\x8e\xd4\x70\x46\x81\x83\x1b\x4d\x3b\xe3\xd0\x13\x1a\x63\x85\x38\x5d\x28\xa8\x80\x0a\x57\x66\xf8\x16\x6d\x52\x59\xc7\xac\x8c\xb8\x96\x58\x6f\xda\x3e\xa9\x0f\x19\x18\xe3\xaa\x70\x9f\xee\xc7\x57\xa9\x8c\xea\xdc\x41\x32\xf5\x6f\x9a\xec\x7e\xd1\xc1\x9c\x5a\x3f\x76\x99\xa6\x58\x2b\xe8\xd7\xd6\x0f\x0d\xb4\x66\x1e\x64\x0d\xa4\x53\xde\x83\x9a\x53\x5e\x74\x39\x8b\x51\xd4\xc4\x55\xa6\xd0\x74\x15\xe7\x69\x41\x1a\xb1\x58\xc3\x5d\x95\xb8\xf8\xd4\xc1\x05\xcd\xaf\xd8\xf2\xf3\x06\xff\x8a\x76\x71\x4b\xe3\x5c\xf8\xe6\xf6\xa4\x89\x0a\x75\x0a\x1e\x57\x40\xea\xd3\x44\x65\xd5\x8b\x1a\xe1\x18\xd2\xc1\x68\xb7\x8f\xbd\xd2\xd5\x69\xa2\x30\x01\x45\x3e\xcc\x4f\x92\x11\xf9\x1d\xc1\x1c\x63\x18\x39\x44\xb6\xe0\x53\x63\xb4\x89\x93\x52\xc3\xe3\x94\xff\xa3\x6a\x35\xca\xd4\xf3\x09\x2f\xe9\xb7\xec\xd6\x68\x9e\x38\xaa\x4f\xe0\x95\x32\xc1\x1b\xa2\xff\x81\xea\x62\xdd\x1a\x2b\x74\x98\x87\xcf\x27\xc9\xa9\xe9\x42\x39\x12\xfb\x65\x17\xbc\x83\xb2\xb9\xf0\x67\xd7\xf2\xdd\x5b\x62\xa8\x56\x26\x51\x14\xfd\x5d\x7f\x31\xbc\xe5\x0d\x42\xf8\x40\x3b\x0f\x99\x03\x4c\xe4\x51\x97\xf3\xe6\x33\xde\x6c\x2d\x01\xc4\x85\x2a\x75\x55\xa0\x08\xbb\x87\x18\x83\x04\x6c\x23\xc7\x11\x0c\xb9\x69\xcc\xbc\xdf\x6d\xf8\x64\x48\xd2\x1d\x52\x3f\x79\x4d\x23\x2a\x14\x8b\x84\x83\x0b\xac\xaf\x1e\x32\xe8\x6a\x51\x7c\x42\xca\x6d\xce\xda\x3f\x87\x2f\xb9\x17\xd4\x30\x13\x4e\x62\xbd\x56\x63\x9d\xc1\xf1\xa0\x25\x9e\x74\xf3\x0a\xef\x63\xd7\x02\xe2\x2d\xfa\xc9\x8a\x15\xe6\x98\xec\x6f\xed\x26\xc5\x6a\xca\xd4\x36\xd1\x3c\xfd\xd1\x9a\x71\xe6\xde\x0e\x3c\xaf\x6f\x25\xad\x54\xeb\x70\xe1\xcb\x84\x3d\xe2\xc7\x52\x66\x1f\x3e\x1c\x27\x7b\x84\x6b\xcf\x7f\x68\xba\xd1\x6b\x47\x79\xe2\x62\x29\x86\xdf\xef\x3a\xb3\x5a\xad\x56\x03\x5f\xd6\x0f\xbd\xe9\x47\xa6\xaa\x78\x5f\xc5\x5e\x15\x33\xd2\xc3\x8f\xf6\x0f\x34\x99\x83\x22\x62\xa8\x8c\x5c\xe8\x55\xff\x74\x77\x72\x71\x1c\x0c\xdb\x49\xa2\x20\x0e\x4d\x30\xc2\xb8\x98\xa8\x5c\x0d\xe4\x84\x78\xa8\x52\x8b\xbf\xc6\xa4\x29\xd3\x80\x72\x71\x58\xf3\x30\xc7\xdc\xf5\x04\x50\x12\x6f\x18\xea\x24\x88\x39\xc4\x16\x18\x98\x67\x5f\x8b\xb9\x7d\x7e\x3d\xa1\xeb\xf6\xe0\x6e\xbe\xd7\x1b\x18\x31\xee\x08\x3b\xfb\x60\x32\x63\x2b\x05\x1e\x71\xbd\x4a\x43\xa4\xad\xf2\x93\x7d\xb4\x5b\x17\x79\x67\x75\xd0\xc4\xc9\x7c\x66\xbc\x70\x41\xa1\xac\x04\x33\x85\xf4\x8b\x8b\x9b\x7c\xeb\xc0\x90\x55\xaa\x44\x58\x8f\x28\x6e\x91\xe3\x24\x68\x87\x1f\x7a\xd5\xb0\x38\x2c\xd6\xfa\x32\x7d\x98\xb9\xcd\xa4\x71\x75\xeb\xb0\xea\x51\x0b\x75\x45\xa2\x3c\x62\x01\x00\x75\x56\xf1\x92\xf5\x56\x54\x73\x60\x1e\xa8\x32\xa2\x3f\x2f\x52\x6b\x3e\x71\x0a\x48\x87\x89\x2b\xe9\xae\x00\xb9\xc2\xac\xeb\x2d\xc6\xcf\xfe\xed\x3e\x66\x8e\xd4\xa2\x3a\x51\xbb\x58\xcd\xf2\xe5\x5d\x64\x8d\x38\xa8\x9e\x18\xa3\x0d\x24\x86\x93\xe1\x8f\x8d\x1d\x60\x7b\x76\x1f\xaa\x33\xcb\xc7\x0e\x6e\xaa\x5c\x39\xd0\xe6\x8e\x71\x06\x85\x0a\x6c\x19\x92\x42\xaf\xe9\x3b\xce\xd7\x26\x03\xa4\x44\x0a\xbc\x2c\xff\xf2\xc1\x64\xa4\x28\x12\xe6\xf9\x59\x60\xef\x88\x8a\x86\xcd\x34\x88\x51\xbe\x77\x35\xf4\x7d\xb3\xf0\xd3\x85\x6a\x9c\x8c\x2b\x5a\x6a\xf8\xe7\x4e\x0d\x81\xee\x79\xd4\xe6\x0e\x30\xe1\xb7\x8c\x86\x1b\x88\x74\x4b\x72\x81\x35\xaa\x66\xc4\xc3\x20\xdf\x85\x1a\x3c\x71\x4c\x3f\xb2\xd2\xa0\x2e\x50\xe6\x97\x45\xef\x47\x80\x28\x16\x98\xf1\x94\x7b\xe8\x41\x37\x6f\xb2\xc1\x0f\xc3\x50\x83\x41\x4a\x9a\x3e\x30\xce\x58\x5b\x9f\x32\xea\xc8\x7c\x20\x19\x67\xb6\x8d\x32\xdf\x03\x46\xb8\x3c\x3e\xde\x3f\x6f\x44\x5f\xcf\x22\x06\x31\xf5\xa6\x97\x9c\x19\x9e\x34\xa1\x4e\x3e\xe6\xe7\x57\x1b\x3e\x65\xc8\x45\x55\x54\x81\x00\x04\xf1\x62\xe8\x10\x85\xf8\xa0\xd1\x8a\x56\x26\xab\x88\xe4\x23\x87\x23\x92\xa3\x7d\xf5\xec\xea\xe4\x7a\x71\xb0\xb1\x50\x09\xe1\x05\xd5\x69\xad\x7d\xe5\x41\xb7\x16\x5a\xdc\xdd\x23\xb5\xa2\xc2\xf5\x9b\x8b\xa1\xf4\x5c\x4e\x4f\xcb\xde\x4a\x5d\x0c\xc3\xc1\xe4\xdd\x1c\x3e\x77\xf4\xf2\xe6\x1c\x21\xeb\x95\x11\x53\x0f\xfb\x89\x50\xf5\x3e\x81\x7f\xfe\xf4\x04\xc3\x8d\x96\x60\x27\x76\x58\x98\x78\x4c\x61\xec\x80\x3f\x3b\x6b\x94\x36\xca\x41\x5d\x72\x0e\x74\xa5\xe6\x56\x90\xa7\x8e\x07\x4e\x67\xe1\x4f\x8e\xc5\xab\x4e\x83\x66\x13\xff\xda\x2e\x73\x9e\x58\x8d\x21\xbe\xe7\x3d\x2b\xfc\xf9\x09\x43\xb6\xc3\x41\x78\x3d\xef\x0e\x35\x8b\xdd\x1e\x24\x68\x12\x63\x9f\xd6\xe2\x0c\x65\x05\x02\x6b\x7a\xf9\x49\xf5\xb1\x6a\x60\xe8\x16\x3d\xbb\x73\x86\xbc\x86\x5d\x46\x45\xd1\x3f\xc9\x6c\x18\x17\x7f\xe4\xee\x26\xcf\xa0\xde\xf4\x65\xa3\x47\x88\xc0\xc5\x2a\xe0\xbd\xd3\xa4\xf4\x33\x64\x81\x8e\x4d\xb6\x9d\x40\x20\x02\x3e\x3c\xdc\x78\xd3\xe8\x96\xe7\x67\x64\xd8\x72\x95\xb8\xd6\xb1\xaf\xd5\x25\xa7\xdf\x4b\xee\xfa\x1e\xde\x2d\xe0\x1d\x95\x81\x9b\x4c\xf7\x15\x9f\xcb\x7a\xf2\x15\xe9\x37\xd3\x48\x47\x58\x50\xad\xe9\xd2\x3d\xa9\x85\x3d\x4d\x8d\x7a\xb0\x3f\x8b\x1b\xdf\x99\xc1\x87\x05\xc2\x0c\xd7\xb0\x0b\xca\xd8\xd6\xc9\x7d\x83\x34\xc2\x78\x00\xba\xc3\xd9\x5c\xf8\xee\x43\x82\x92\x8b\xbc\x0a\x5c\xd9\xa3\x1e\x4a\xf4\x4a\x91\xd3\x10\x37\xf6\xdf\x0e\xf0\x59\x4d\xe0\x7a\x3e\xad\xd5\x24\x8f\xe9\x36\xf1\x56\x9e\xcf\x48\x85\x37\x5a\x5e\xd8\xaa\x32\xef\x49\x1d\x6d\x13\x27\xc2\x49\xec\x36\xb1\x1c\x05\x42\x65\xdb\x68\x6b\xbb\x66\x85\x19\xd4\x6a\xbc\xdd\x06\xe9\xe2\x5f\xf6\x19\x4a\xd7\x98\x33\xa9\xe0\xcb\x42\xfa\xbd\xe3\x35\xed\x4e\x55\x56\xa7\xbb\xe2\x4e\x14\xea\x02\xb5\xc2\xed\xe7\x25\x4f\x99\x34\x1a\x92\x75\x4c\x74\xeb\x5c\xbf\xdd\x98\xfc\x53\x56\x15\xfa\x71\xe1\x45\xdb\x34\x83\xc2\x68\x65\x1c\xec\x44\xc5\x15\x68\x21\x66\x66\xef\x48\xca\x74\xd4\x05\x1c\x61\x6c\x26\xbe\xdd\x7c\x10\xf3\x87\xba\xf6\xe4\xa8\x8b\xb4\x64\x1c\x00\xe6\xa9\x35\x86\xfa\x81\x4d\x59\x8d\x32\x6d\x67\x3c\xae\x15\x92\x0e\x76\x25\xd2\xf3\xdc\xa9\x56\xad\xab\x5e\x8c\x21\xb1\x99\xcf\x08\x09\xcc\xdb\x48\x23\xd0\x00\xfe\x99\xa1\x87\x55\xbd\x62\x23\xe6\x6b\x88\xa0\x70\xc5\xc0\x81\xe2\x08\x44\x5f\x5d\x24\xf2\xdf\x58\x97\x1c\x89\x5c\x25\x32\xce\x3d\xdb\xfa\x0a\x04\xb0\xaf\x0e\x08\x23\xcc\xa8\xfc\xaf\xf3\xb9\xb1\x35\x75\x8d\xd9\x74\x22\xae\x2f\xcf\x45\xd8\x31\x6f\x98\x5c\xa8\xd1\x4d\xe7\xf7\xb9\x3d\xc9\xe8\x1c\xb8\x05\xe0\x5b\xa8\xf6\xb2\xb5\x7b\xf3\x50\x63\x5c\x1c\x38\x3c\x3b\x0b\x1f\x6d\x55\x0d\x9e\x04\xae\xfa\x77\x6b\x0d\x01\x61\x60\x36\x86\x15\x0d\x59\x81\x38\xbb\xf3\x66\x95\x19\xb7\xb7\x03\xf2\xe1\xd9\x6d\x6a\xcf\x4e\x9c\x3c\x0d\x74\x0a\x7c\x8e\xb0\x1d\x79\xdc\x10\x18\x28\x69\xa2\x55\x3f\x3b\xa5\xb5\x81\x3a\x3a\x27\xb4\x4f\x01\xcb\xec\x2f\x3e\xc6\xcf\xd1\x82\xa8\x00\xae\x45\x05\xec\x2b\xae\x26\x3c\x01\x46\x5a\x0a\xb0\x1a\xfe\x35\xaf\x29\x48\x35\xf9\x57\xa7\xef\x5a\x10\x7f\xe3\xbc\x36\x3c\x09\xdf\xe8\x34\xf6\xb7\x13\x30\xa9\x67\x96\xae\x4d\xd7\x2a\xe6\x32\xea\x82\xdb\xfe\xee\xd5\xc6\x88\x0d\x93\x52\x39\x4f\xc5\x99\xf8\xa3\x60\x93\x31\xca\xaf\x8e\x5e\xeb\x9f\x57\xa9\x1b\xbb\xd0\xd4\xaa\x4a\x8d\x3f\x94\x7c\x90\x2a\x23\x91\xd6\x58\xc7\xdb\x2e\x53\x95\x01\x65\x4d\x2d\xa6\x4c\x79\x61\x93\x39\x2e\x72\x0b\x4a\x54\xf1\xf6\x9d\xaa\xf9\x0b\xe5\x7d\x36\x17\xce\x1e\xa0\x09\xdb\xd9\x76\xf4\x3f\xa2\xe7\x61\x69\x6e\xc1\xc4\x2d\x62\x9b\x87\x9d\xd2\x0a\x1e\x17\xe7\x52\x2e\x3d\x68\xfd\xa9\xac\x40\xb0\x1c\x1c\x38\x3c\x6c\xb2\x45\xa7\x71\x76\x16\xfe\xfb\xab\x02\x26\xc4\xb8\x49\xe6\xd6\xf1\x66\x1f\xc0\xf3\x65\xa3\xde\x6d\x37\xd9\xe2\x0e\xd0\x40\xe0\xf0\x9d\x7a\xc4\xc4\x54\x3a\x4e\xcc\xd0\x9a\xbb\xca\x20\x47\x92\x12\x43\xae\x74\xd3\x4f\xdf\xfc\x98\xd6\x7a\xa2\x3e\x72\xc4\x20\x6e\xc5\xdb\x9a\x2e\x57\x1b\xc4\xe7\x3b\xe7\x1b\x06\x5d\xd4\x29\x26\xb5\xa3\xfe\xe3\x32\x4d\x04\xc7\x41\x9c\x3e\x7a\x70\xb3\xb1\xd5\xbd\x8a\x92\x8e\xcf\x9c\xd2\xca\x3f\xe2\x92\x2a\xe9\x11\xa1\xa9\x3a\x5e\x7d\x00\x54\x05\x06\xd3\xb0\xb6\xb8\x6f\xea\x20\x0d\xe2\x5c\x1e\xad\x9a\x9b\xae\x4e\x99\x1c\x31\x52\x03\xe6\x05\x2e\x13\x73\xfd\xa7\xb7\x6b\xbd\x7f\x86\x11\xc4\xd6\xbf\xee\x4b\x46\xb0\xcf\x0b\xf2\x7c\x2a\xb7\xc8\x98\x4d\xfb\x3e\x65\x2e\x6e\x08\xe9\xf8\xd4\xf6\x37\x34\x35\x82\xac\x57\x26\xe0\xfc\xbd\xec\x4c\x8b\x36\x9f\x63\x18\x71\xc0\x6f\xcf\xce\xe1\x7a\x75\xe7\x13\x43\x26\xe7\xd8\xe0\xc4\x2d\x47\x99\xcf\xe5\x02\xac\xcb\x16\xab\x58\xe2\xe3\x2a\x66\x7e\x0f\x29\x90\x28\x08\xe4\xf6\x1a\xcd\x02\xec\x16\xb0\x6b\xf3\x23\x1b\x4e\x3a\x3e\x4a\x57\xa3\xa8\x39\x9c\x5e\x9b\x8c\x05\xe7\xbd\xa1\xd2\x56\x5c\x10\x9d\xc5\x4b\x5b\x95\x10\x18\x90\x23\xe5\xe5\x50\xee\x56\x70\x82\xc9\x1a\x04\x59\x8d\xcc\x57\x3f\xc1\xa1\xe2\xb7\x05\xf2\xee\x88\x0b\xa7\xcc\xfa\x25\xf1\x29\x71\x03\xa0\x07\x5c\xb9\xce\x18\x80\x22\x56\x95\xdb\x73\xfe\x6b\xea\x51\x79\x18\x71\x98\x4e\xb7\xa1\x82\x42\x5c\x1b\xbb\x60\xce\x24\x10\x54\x3f\x5f\xcd\x13\x91\x5b\xaa\x20\x14\x2e\xa5\x66\x2f\x18\x35\xc2\x0c\x0b\x02\x83\x50\x10\x8d\x9e\xcb\xf9\xa8\x2c\xda\x46\x01\x57\x61\x2f\x32\x14\x44\xab\xf1\x8b\xb7\x93\xe5\xa2\x27\xcb\x28\xeb\x1b\xdd\x46\xae\x85\x59\x74\x31\x2a\x06\xae\xd5\xb9\xac\x45\x7f\xaa\x0c\x73\xa7\x9f\xed\x8f\x1b\x42\x04\x20\x5a\xe3\x10\xaf\x0c\x83\x72\x91\xb5\x16\x47\x68\xc1\xc7\xc7\x0c\x7b\x7e\xd6\xc3\xd0\xae\xe5\x3b\xe3\xdc\x71\xc5\x27\xf2\xcb\xd9\x5c\xa7\xba\xba\xf3\x01\xf3\x3d\xbb\x1c\x38\xa8\xd0\x03\x93\x84\xff\x99\x6f\x74\x63\xa2\xb0\x08\x1e\xac\x1c\x56\x79\xec\xc5\x4b\x75\x0e\x05\xca\x26\xcd\xb5\x53\x93\x77\x71\x8a\xc9\xa4\xb6\xa9\xd9\x5c\xf8\x7f\xe7\x5a\xb4\xfb\x6d\xc2\x94\x69\xed\x51\x0d\x9b\xe9\xd9\x24\x21\xca\x2e\xad\x83\x69\x16\xdc\xed\x37\x6e\x37\x4c\xbf\xa2\xa4\x1d\xf9\x24\xf6\xf7\x4b\x3d\x33\xba\x8f\x2b\xbc\x24\x8b\x67\xa8\xd6\x1c\xe1\xcd\xaa\xc0\xf2\x79\x8d\xaa\xc5\x50\xa9\xc4\x27\x72\x37\x1d\x13\x48\x2e\x9b\x61\x54\x85\xae\xff\x3b\x26\x08\xc3\x67\xa0\xd5\x24\x9e\xe2\xb3\x4d\xe3\x2e\x9f\xda\x54\x76\x00\x47\x6c\x68\x1a\xc1\x78\x88\xd8\xa2\x4a\xad\x77\x9a\x79\x19\xc8\xc3\x79\x55\xae\xdd\x17\x7e\xe3\x02\x53\xcd\xa0\x8e\x99\x87\x45\x41\xf4\x91\x57\x0d\x3f\x92\x00\xbb\xd4\xd3\xcd\xd9\xd2\xd7\x71\xfc\xe8\x4d\xe0\xb5\x27\x36\x08\x40\x6e\x1f\xd2\xa4\x9f\x90\x87\xbc\x32\x08\xf7\xdf\xcb\x84\x4d\x8a\x30\xbd\xc9\x5c\x69\x7c\xbb\x22\xce\xb3\x00\x89\x6b\x3d\x7c\x7a\x63\x82\x63\x51\xc7\xac\x24\x0d\x3c\x9e\x59\xa2\xe6\x78\xdc\x8a\xa3\x29\x78\x7c\xf3\x49\xc3\x69\x3f\xfa\x6b\x5f\x8a\xfd\xb4\x7f\x90\xec\x35\x01\x81\xa3\x59\x26\x3b\x75\xdc\x30\x40\xa5\xb5\x1a\x75\xa1\x9d\x05\x1f\xf1\xcb\x73\x79\x33\xb2\x4e\x6c\x3f\xba\x24\xf8\x53\x5e\xab\xd1\x27\xca\x62\x88\x9b\xf6\xf7\x6b\x37\xd7\x44\xe8\xaa\xa0\x95\xa6\x7c\x9f\xe3\xe0\x12\x20\x1a\x65\x1f\x72\xca\xa3\x7c\x89\x17\x81\x08\x17\x4c\x42\x78\xd0\x78\xbb\xdd\xa4\xcf\x07\x9a\xe8\x7a\x7a\xf2\x8b\x57\x68\x99\xb2\x8b\x0a\x04\x37\xe3\xcb\x32\x17\x73\x99\xe7\xec\x0d\xe0\x57\xee\x37\xcf\xd8\xff\xa3\xa6\x99\x1f\xc7\x08\x3c\x6b\xe7\xc9\x21\x1a\xa8\x57\x63\x7b\x84\x5f\x1d\x69\xf4\xf0\x5c\x9f\xba\xd8\x31\x2c\x4f\xff\xef\x55\xa3\xfb\x11\x9d\x25\xd1\x2c\x1d\x93\xcd\x85\xff\xfd\xb8\x09\x4c\xaa\x56\x89\x7c\x76\xd6\x8f\xef\x31\x15\xa3\x58\x81\xdb\xa9\x84\xbf\x3d\xa6\x91\xad\xa2\x94\x41\x54\x2d\xaf\xbf\x64\x8a\x06\x15\xc4\x26\xfb\xa7\x77\x79\xa9\x21\xb2\xc3\x40\xe8\xc6\x2e\x7a\xc8\xf4\xf6\x70\x2a\x71\x38\x7e\xf8\x51\x1e\x8e\xe7\x51\xb7\x40\xa3\x60\x20\x99\x5b\xbd\xe9\xb9\xef\x24\xf5\x98\xec\x32\x23\x51\xd5\x59\x16\x9d\x1d\x75\xa7\x4e\x04\x02\x03\x74\xcb\xef\x58\x38\x53\x8e\xa3\x26\x1d\x18\xa4\xb5\x35\x1a\x36\xf5\x39\x42\xff\xba\x05\x42\xe3\x1f\x4c\xdf\x44\xd3\x7b\xc7\x54\x15\x53\xbb\x38\x2b\x43\x75\x02\xbf\xb7\xb4\x09\x8f\xc5\x05\x8e\xf9\xf1\xb6\x7e\xd4\xc2\x85\xe6\x6c\x27\xc8\x9b\x2d\xd6\x9d\x63\x3f\xd6\x14\x93\xba\xf2\x58\x24\xdc\x1a\xaa\xe3\xac\xa9\xea\xea\x7a\x57\xc3\xfe\x7b\x6e\xb8\xba\x8c\x95\xb1\x99\x36\xd1\xf6\xdb\x35\x09\x06\x8d\xd8\x61\xcd\x7e\x53\x83\x2b\x62\x17\x44\x86\xa1\x51\xfd\x95\x05\x63\xb4\x70\x50\xad\x52\x97\x5b\xb1\x36\x9d\xfc\x7f\x6c\x6d\x35\x66\xc0\x52\x49\x7a\x9f\x79\x98\x05\xdc\x41\x5c\x99\x2d\xc3\x34\x68\x50\x1d\xfb\xc0\x93\xca\x34\xd6\x6a\x8d\xb7\x2e\x9a\x2d\x92\xa2\x5f\x86\xf0\xe5\x2b\x81\x1d\x5d\xd2\x34\xfc\xab\x81\x94\xce\x33\xda\xe5\x26\x8c\xfa\xfa\xbd\x3c\x50\xeb\x11\x53\xc8\xdc\xd3\x43\xdf\x4b\x5e\xbc\x2b\xb1\x43\x3c\x62\x5f\x5d\xd5\x07\xc7\xf7\x9a\xa2\x17\x44\xd0\xaa\xd3\x73\x5f\x8e\xeb\xf5\x02\x18\x47\xc0\x86\xba\x7c\x47\xf2\x51\xfa\x0c\x05\x7e\x54\x91\x25\xfb\xfb\xe9\x6f\x73\x26\x7b\x76\x26\x66\x3e\x72\x74\x73\xf5\xf7\xdf\x56\x9d\xc8\x3a\x5c\x88\x27\x4e\x36\xd9\x76\x62\xa6\xfb\x58\x67\x32\xd7\x9a\x08\x8e\x3a\xf6\xb8\xfc\x42\xa6\x7b\x66\xf2\x68\xd5\x31\x23\x45\xa1\x7f\x96\xae\x9d\x52\x31\x3f\xca\x29\x50\x00\x55\x41\x36\x17\x1e\x7c\xd9\x48\x4b\x84\xe8\x50\x43\x80\x41\xa3\x0a\xec\xfd\xb5\x1a\x13\xd9\x71\x08\xa4\x4a\x62\x21\x06\x17\xb5\x94\xad\x0a\x93\xe6\xf0\x8a\x91\x5a\x5f\x34\xb6\x85\x79\x76\x48\xf3\xa6\x06\xbb\x94\xbf\xce\x50\xa4\x5e\x1c\x65\xd3\x93\x1e\x36\x49\x24\xe0\xc8\x2d\x66\x4c\x97\x1b\x7d\x4e\x90\x3d\x88\x0d\x44\x2e\x99\x1a\xbf\x18\xb1\xe1\x7a\x2c\x5c\xab\x0a\x35\xfe\x3b\x23\x77\x6a\x48\x2e\x46\xed\x32\xbc\xeb\xeb\x6d\xbc\xe0\x46\xd1\x75\x08\x72\x42\xbf\x6a\x57\x95\xa7\xed\xe2\x66\x7a\xd6\xf7\x66\xf1\xbc\x23\xc7\x90\x53\x12\x5e\xd1\x5f\xd6\xf4\x19\xa3\x7d\x0d\x43\xfa\x5e\xab\x30\x9f\xbf\x3a\x46\xcc\x21\x50\x82\x5e\x58\x16\xbe\x0b\x4e\x14\x1e\xbd\x72\xf4\x5b\xfb\xde\x30\xe5\x4b\x85\x65\x8f\x75\x7c\x5b\x72\xcc\x31\xb6\x4f\xfc\xd3\xdd\xbb\x07\x8a\x67\x5c\x0a\xa4\xe8\x72\xea\x7f\xf6\x28\xbc\x3f\xe5\x3c\xf8\x4f\x3f\x19\x8f\x8b\xbc\x0a\xd1\x90\x2c\xe1\xaf\xce\xb5\xc8\xcc\x20\xa1\x4f\x60\x40\xd7\x3d\x8c\x45\x45\x94\xde\x78\x4a\x31\x96\x6c\x48\x09\xef\x99\xc9\x83\xff\x1c\xe4\xeb\x72\x60\xa9\xfd\x5b\x07\xe9\x5d\x5c\x9b\xb8\xc0\x83\x4b\x7f\xef\x02\x13\x46\x5c\x74\xb0\x2d\xf5\xf5\xbf\x3a\x81\xa7\x37\x93\x84\xf2\xe3\x1f\xce\x33\xea\x5f\x97\xda\x15\x69\x19\xf7\x4a\xc6\xdc\x1c\x30\x49\xe5\xcc\x37\x7b\xb8\x01\x5f\x44\x12\x2e\x68\x6d\x3b\x4f\xdd\xc8\x3d\x18\x39\x5c\x0c\x29\x63\xa7\x4c\x01\x33\x9e\xea\xf9\x9c\xd7\x67\x10\x98\xef\x6b\xd1\x3a\xc6\x3e\x66\x7c\xe9\x7e\x68\x00\xea\x56\x06\x05\x22\x68\x6b\xf0\x91\xaf\xe9\x3f\xd2\xa8\x6f\xfc\x28\xe1\x2f\x36\x54\x07\x63\xfe\x06\x65\x4c\x3d\x2d\xfa\xb8\x37\xef\x8b\xf7\x74\xf4\xfc\x72\xe1\x8b\xab\x34\x19\x42\x87\xca\xc4\xf8\x53\x9b\x55\xe3\xde\xa9\x34\xf5\xb8\xaf\x79\x42\xa9\x8d\xd9\x4e\x94\x6e\x94\x31\x2a\x00\xb6\x04\x22\xfb\x4f\xc7\x08\x38\x0d\xa3\x75\x22\x28\xd3\x56\xf1\x89\x64\xc4\xa0\x57\xb9\x98\x38\x86\x09\xc8\xef\xb7\xf1\xbf\xbc\x45\x83\x6c\xa5\x4e\x7e\xa0\x8f\xe4\xa3\x1d\x46\x1c\x12\xd3\xd0\x3f\xf1\xc0\x60\xb1\x6b\x1c\x07\xdb\x1a\xd6\x33\xf5\xd3\x9e\x96\x38\x72\x31\xe5\x26\xb0\xf1\x94\xb0\xea\x70\x0b\x09\x2c\xd6\x0c\xa3\xb3\x9c\x0f\x1a\x34\x90\x48\xb3\xf4\x3b\x71\xd8\x2d\x04\xf9\x6c\x2e\xfc\xf5\x16\x8d\xc8\x2e\x8e\x22\xa0\xd4\xff\x4b\x93\x1d\xc3\x9e\x17\xd5\x9c\x1c\x92\xb6\x76\x37\x4f\x1e\x67\xa1\x3a\x76\xa3\xa2\x5d\x66\x29\xdf\x9c\x1b\x3f\x95\x22\x10\xdf\x3b\x95\x20\x52\x81\xe8\xcb\xf3\x99\x4d\x26\x68\xf4\xae\x00\x78\xbf\x7c\xb0\xf4\xf8\x1b\x62\x68\x42\xa3\xd4\x9f\x8f\x4a\x7f\xbb\x97\x1f\x83\x12\x0a\x4a\xdc\x73\x68\xb9\xfa\xe0\x05\x5c\x47\x40\x67\x8a\xb6\x79\xd7\x76\x43\xd5\xa3\xbd\xbd\x5d\x68\x88\x74\x18\x8d\xdb\x3c\x29\xf1\x3b\xfa\xbb\x03\x0d\x44\x30\xc6\xbc\x54\x4a\x2f\x6a\x19\x66\x94\x69\x81\x17\x20\xce\x2a\xb6\xae\x9c\xa7\x8b\x96\x05\x8c\xc0\x27\x2b\x9f\xd2\x8d\xed\xc0\x7b\x67\xca\xf2\xe4\x67\xe2\xdd\x7e\x0e\x6e\x44\x03\xd4\xde\x45\xb5\x1a\x25\x1c\x58\xfb\xa5\xd9\x9a\x6a\x64\x09\x11\x38\x4d\xd6\xa3\xb3\x63\x4d\x79\x2e\x41\x4d\x16\x5e\xa4\x01\x2a\x81\x1d\x97\x7e\x78\x80\xe9\x2c\x4b\x5c\xc4\xc1\x92\x50\x61\x3d\xb5\x46\xc7\xfd\x11\xaf\x0a\x18\xcc\x1d\x23\xcd\xf0\xc0\x2a\x9c\xc3\x6e\x15\x33\xa6\x0a\x10\xa0\x67\x45\x8a\x30\x68\x79\xdf\x9e\x89\xbc\x70\x80\xba\xf5\xa9\x51\x5a\x6b\x8a\xd5\x49\xbd\x59\x28\x3b\xf5\xb3\x03\xe6\x1a\xc5\x92\x3d\x99\xf5\x27\xae\x30\x0a\x2b\x1c\x5d\x5b\x7e\xd2\xe3\x75\xd4\x38\x63\x5b\x01\xde\x43\xcc\x2b\xc3\x27\x67\x1a\xe9\x67\x35\xf0\xca\x15\x5c\x27\x76\x59\x7b\x95\x70\xef\x98\xcb\x8c\x3a\xc0\x29\x66\x0b\xc0\xa2\xe3\xd1\xe8\xd6\x51\x4d\x33\x11\xd8\xbb\xd0\x1e\x9e\x5e\x4c\x3a\xc1\xa0\x1a\x08\x4c\x97\xe3\xb1\x8a\xea\x0d\x7d\xea\x84\x86\xef\x46\x92\x59\x24\xce\xd2\xd1\xd1\xc3\x15\xee\xb3\x99\xc2\x73\x65\x7b\xfc\xe3\x8e\x89\xa3\x9b\xb0\x65\xcf\x69\xca\xdd\x36\x75\x5d\x8e\x0d\xcf\xe6\xc2\xf9\x2f\x5e\x62\x16\x39\x55\x6e\x44\x1e\x3d\xe6\xaf\x8d\x4e\xae\x5f\x09\xbb\x98\x01\x08\x02\xbe\xdb\x97\x6a\xc2\x92\x84\x21\x1b\x14\x5e\xb2\xb9\x70\xf1\xfc\xa1\x46\x45\xc3\x62\x33\xd7\xdf\xbf\xa7\x50\xfb\x1c\xdd\xa4\x85\x80\xf5\x06\x58\x48\x08\xb5\x91\x1e\xa9\xe4\x36\x3f\xc5\x77\xfa\x8d\x44\xa2\x71\xee\x7e\xf9\x2a\xb5\x8b\xf2\x98\xe1\x9e\x32\x71\x1b\x59\x54\x62\xb4\x19\x7a\xa8\x79\xa7\x2b\x31\xa1\xe8\x55\x3e\x72\xd6\x54\x06\x04\x9b\xcb\x58\x08\x6b\xeb\xab\xc9\xf8\xee\x95\x03\xcf\xc7\x8c\xdb\xf7\xc5\xf2\x82\xfd\x0c\xb2\x14\xa0\xd8\xf8\xb4\x31\x75\xbb\xab\x31\xab\x19\x67\xac\x5a\xe3\xce\x53\x77\x8d\xe2\x93\x28\x9b\xd5\x27\x16\xf0\x04\x49\xf8\x74\x44\xaf\x53\x5f\x2b\x7d\xd0\x91\x1d\x48\x4c\x52\xda\xdd\x3e\x44\x97\xeb\x01\x63\x3e\x8e\x50\xb3\xfe\xfa\x82\xf0\x9d\xc5\xcc\x83\x2e\x60\xb8\x69\x9b\x62\xae\x4b\xa6\x47\xf4\xb6\xe6\xd9\x3b\xb2\x77\x74\xd3\x25\xcc\x38\xa5\x07\x39\x52\x82\xa9\x37\xbd\xc4\xb0\x8a\xaf\xc1\x18\x46\x35\x40\xac\xbf\x3c\x62\xd4\x11\x05\x21\x75\xfc\x0f\xfb\x05\x14\xd4\x13\xbd\x46\x48\xcd\xee\x1f\x18\x3b\xdc\x3a\x45\x80\x14\xb4\x0e\x16\xf5\x82\xeb\x7b\x58\xf7\x0b\xeb\x6f\x40\x1b\x02\x17\xb9\xa4\x1a\x25\xea\x22\x85\xf9\xf6\x56\x15\x2f\x31\xf2\x31\x70\x8e\xbf\x7f\xbe\xc6\x90\x02\x3a\xf9\x32\xe3\x75\xf2\x98\xac\x8c\x32\x0d\xa9\xb0\x96\xfa\xea\xd6\x56\x6d\x5c\xc2\x55\xe5\xa3\x40\x3b\xf0\xcd\xe4\xbe\x29\x12\x17\xb9\x31\xff\x3e\xec\x74\x4d\x22\x6a\x50\xcd\x8b\xbe\xee\xb7\x37\x69\xe6\xbf\x8c\x21\x97\x4f\x4c\xac\x6d\xa7\x75\x71\x1c\xbb\x02\x86\x12\xd6\x1f\xfb\x2b\x75\xa2\xff\xcf\xd7\xdb\xc7\x5b\x55\xd5\xf9\xe3\x9e\x87\x21\x53\x40\x1e\x2e\x57\x44\x44\x24\x04\x14\xce\xed\x72\x81\xcb\x85\x88\x10\x90\x7c\x00\x0e\x5d\xc8\xd4\x88\x58\x67\x9f\x75\xce\x5e\xf7\xec\xbd\xd7\x66\xed\xbd\xcf\xe5\xdc\x90\x90\x90\x88\xc8\x88\x1c\x73\xfc\x39\x46\x0e\x39\xe6\x98\x63\xca\x18\x19\x91\x63\x44\x46\x0c\x19\x91\x11\x99\x91\x31\x8c\xa1\x39\x8c\x99\x63\x0e\x77\xf7\x7b\xed\xf5\x59\x7b\xaf\xb5\xd7\xb9\x7d\xff\xeb\x15\xde\x7b\xcf\xd9\x7b\xad\xcf\xe3\xfb\x81\x8b\x51\x44\x3d\xc8\xf7\x0e\x28\x08\x00\x6a\x11\x03\xf4\x91\x57\x9c\x1c\xa2\x86\x89\x62\xb8\x45\x63\x72\x43\xe8\x8f\x75\x81\xf7\xbc\x9b\x5e\xca\x82\x86\x75\x98\x7d\x40\x63\xbd\x28\x4b\xa8\x62\x7f\xe6\x77\x67\xd3\x15\x9a\x85\xab\xc4\xb3\xf8\xac\x33\xbe\x34\x5f\x7d\x36\xe6\x09\x70\xe3\x07\x7e\xa2\xe7\xac\x6f\x9a\x22\xd6\x49\x19\x18\x9f\xe1\x37\x46\x28\xf4\x24\x6c\x04\x4c\x8e\x55\xf2\x5d\xe5\xa4\x6c\xa8\x30\x65\x16\x9f\xc9\x1c\x53\x07\xb6\x9e\x4b\x50\x8a\xb6\x35\xfb\x5c\xab\x52\xca\xe0\x5e\x65\xa4\xf0\x9e\xc1\x02\x8c\x69\x51\x61\xa8\xb0\xf0\x9c\xcc\x81\x5d\xb3\x84\xa4\x7f\x7f\xf6\x43\xfb\x14\x05\x3d\xcc\x01\x27\xfc\x19\x6c\xdb\x38\x5c\x72\x9e\x59\x1c\xa5\x1b\x53\x74\xab\x72\xde\x32\x88\x51\xe7\x35\xf7\x68\x0b\xb1\xa0\x54\x0e\x38\x33\x86\x1f\xfe\xbf\x9c\x9e\xa0\x2c\xf6\x02\xa7\x0c\xa5\xa0\x7e\x35\x7f\xd6\x6c\x54\xc3\xd1\x81\x6a\xe6\xcb\x3c\xf5\x98\x5e\x50\x55\x82\x2a\x8e\xa9\x0f\x39\xf7\xdc\x95\xea\xcc\xd3\x67\x5c\x97\x20\xca\x80\xd5\x6a\xac\x41\x70\xee\xd6\x2b\xf4\xae\x53\x6b\xe6\xaf\x08\x13\xc2\x30\x75\xaa\x30\xb3\x6b\xb4\xa5\xff\x30\x75\x70\xc1\xf3\x69\x4c\x94\xbb\xe0\xee\xab\x20\x88\xab\xf6\xb1\x4d\xd9\xec\xfb\x7b\x20\x6e\x99\x88\xc5\xa5\xf7\x81\x89\x63\x15\x2e\x7a\x1d\x71\x0f\x7e\x95\xc3\xb6\xa0\x4f\x7c\x18\x64\xa1\x98\x92\x5b\x69\xd1\xbc\xe6\x1b\x72\x78\x90\xfb\x97\x79\xda\x4e\x83\xda\x18\xa6\x4a\x77\x6d\x6d\x32\xe2\x07\x9a\x74\xec\x70\x36\x71\x98\xda\xcf\x83\xcc\xd3\xe1\x27\x65\xf9\xe9\x11\xa3\x96\x78\x49\xe6\x97\xae\xd1\x91\x1d\xc4\x13\x93\xd7\xf0\x8f\x7b\x25\x0a\xa3\x14\x35\x2e\xff\xfb\x82\xc6\x1c\x0c\x7c\xc3\x94\x56\xb1\x39\x6b\x83\x96\x26\xb9\x52\xb7\xd1\x48\x38\xa8\x7f\xd0\x7c\x6e\xca\xa4\x52\x01\x5d\x63\x2f\xca\xa5\xa2\x7e\xba\x7a\xb9\x10\x1b\x77\x61\xdf\xd5\x9f\x39\xfd\xb2\xd6\x96\x71\xf4\xbb\x0c\x83\x5f\x5a\x71\xb9\x56\xf2\xf9\x9c\x59\x2d\x7c\x01\x72\x2f\xbd\xa9\x6b\x1e\x39\xa8\x2a\x28\x1f\xab\xe7\x29\x54\x6a\x8b\xf6\x8a\xfc\x7d\xae\x43\x61\x41\x46\x39\x00\xe6\x67\x97\x74\x49\x5d\x28\x5c\x55\xfa\xa5\x5b\x1f\x4c\x57\xeb\x55\x10\x41\x0c\xaf\x7c\x33\xfd\x26\x67\xcf\x88\xaf\x54\x46\x93\x0b\xf6\xcc\xf8\x53\xc3\x02\x76\xdf\xda\xe1\xea\xc6\xc7\xe1\xda\x73\xd9\xd3\x8a\xc4\x17\xb6\xca\x18\x40\x12\xf7\x03\x2c\xb9\xb0\x8a\xeb\x0c\x36\x95\x58\x17\x3d\xa2\x55\xab\xb8\x8a\x58\x59\xf4\x0c\x13\x15\x4b\x75\xe4\xf8\xc8\xc2\xaa\xb8\x56\xa6\xda\xa3\x20\x54\xf8\x4a\x5e\x00\x4b\x66\xdd\xa7\x21\xa8\x4b\x3d\x82\x3e\x2d\x7a\x85\x73\x43\x25\x43\xcc\x07\xa0\xf7\xc8\x2d\xda\xfa\xdf\x16\x1b\x0d\xe1\x8b\xb3\xf9\x39\x45\xed\x12\x01\xfa\x29\xfb\x1d\x4d\x45\x57\xc0\x52\x62\x89\x9c\xfb\x65\xbe\x2a\x13\xcf\x60\xe0\x3f\x9f\xfb\x4e\x5e\x5b\x45\xda\x2e\xc7\x04\x26\xd3\xa7\x3f\xdc\xa7\x19\xfb\xac\x37\xcc\x28\xdb\x89\xc7\xff\xb9\xf3\x69\x79\x29\x64\xa3\x3e\x61\xc3\x96\x6e\xcc\xd7\x3c\xa3\x2d\x49\xb9\x58\x13\x48\x05\x3c\x38\x42\x46\xf9\x5e\xa4\x6e\x62\x33\xc3\x4e\xcb\xe0\x7d\x95\xf2\xff\x17\x15\x49\x3b\x52\xa6\x40\xdb\xfb\x8d\xc6\xe1\xc0\x0e\x77\x50\xc7\x2c\x9e\xa5\x34\xe6\x2a\x22\x8a\x86\x49\x05\x7a\xa6\x3f\xb3\xce\x97\xff\x50\xc3\x0d\xae\x22\xcf\xc7\x25\x9f\xdc\x90\x3e\x98\x16\xa5\x36\x94\xce\x3f\x7f\x5c\x0b\x31\xd8\xc2\x25\x86\xfc\xf8\xc9\x9c\x9c\xa2\x8f\xd5\xb9\x99\x7b\xc2\xf1\x9f\xf5\x96\xa2\x0d\x1d\x75\xe8\xfc\x0e\xff\xf3\x51\x7d\xda\x13\x95\xb2\x00\x22\x0b\x7f\xd6\xad\x7a\xa2\x07\x1c\x95\x95\xf9\x55\x0f\x14\x5c\xb3\x3b\xda\xe6\xcc\x88\xfe\xf0\x57\x36\x68\x70\x3e\x86\x3c\x4f\xb4\x03\x4b\xcf\xa8\xf3\x2a\x6a\x53\x80\xb4\x64\xd7\x8d\x97\x3b\xa7\xae\xf6\xe9\xd1\x37\xbf\xac\x5b\x59\x43\xcd\x68\x2f\x14\xc3\x83\xe3\x65\x13\x5c\x27\xb0\x5f\xbb\x67\x61\x9a\xe9\x6f\x53\x0f\x39\x3e\x1d\x50\xa4\x60\xc5\xfd\x03\xd8\xa0\xc7\xe1\xcc\x7f\x17\xc6\xca\x37\x23\xdf\xb4\xd2\x7e\xd0\xf9\xc1\xe9\x77\x10\x54\x45\xfb\x92\x99\xb7\x56\xaf\xd0\x18\x8e\x5b\xd8\x95\x17\x26\xc4\x39\x9b\x15\x8a\xe1\xe4\x7d\xf2\x79\x3b\x09\x69\x6a\xf3\x51\xd8\xf4\xaf\x20\x7e\x8d\xf6\xc2\xe4\x30\x0e\x56\x83\x6f\x9f\xac\x05\xab\x44\xe2\xb7\x4c\x6d\x30\x52\x15\x49\x60\x8a\xc2\x06\x37\xb1\x53\x66\x84\xbf\x9b\x21\x9a\xa5\x83\xe7\xa2\x5e\x87\x4b\xc1\xf0\xb7\xf1\x7f\x22\xfb\x2e\x23\x8e\x19\x1f\x8b\x3b\x56\x29\xab\x9a\x28\x9e\x29\xb2\x7a\x99\x8d\x6f\xeb\x4c\x53\xa7\x8c\x1a\x5c\x0a\xe6\xe2\x43\x62\x8a\x20\x59\x28\x83\x54\x2a\xba\x48\x65\xd9\x2f\xbf\xa2\x48\xcf\x3b\x3e\x29\xc4\x13\x84\xe3\x93\x26\x28\x22\x61\xc4\xf1\x7c\x86\x91\xdd\x74\x8f\xdd\x6d\x72\x5b\x1f\xf0\x25\xd7\xb8\xd6\xe1\x0a\xb2\x63\x3d\x32\xf8\xc0\xe7\x3b\x1a\xaa\xa3\x14\x00\x2d\x4c\x84\x95\x7c\x5d\xd3\xfb\xa2\x56\x80\x6c\x65\xa2\x91\xfd\xce\xe3\x23\x94\xdd\xa8\x65\x35\xf8\x49\xcd\xdf\xb5\x76\x94\x7a\x82\xb9\x18\x05\x88\x11\xae\x3c\x90\x3e\x26\xbd\x66\x43\xf0\x9f\x2b\xeb\xe5\xed\xe6\x72\xbf\xd0\xa1\x85\x63\x5f\x1f\xae\x0e\x0b\x19\x87\x87\x66\xde\xbb\x26\x69\xc4\x7b\x50\xad\xe9\x01\x7c\x4a\x58\xcd\x94\xa3\xc7\xe3\x19\xc8\xe5\x8d\xdd\x6a\x0d\x43\x46\x9c\x1e\xde\x9e\xc2\x27\xc8\xfc\x68\xa6\x2a\x5c\x0d\xc2\xf1\xdf\x3c\x25\xa7\xcc\x33\x3b\x0b\xc5\x70\xd9\xb3\x62\x36\x19\xf0\x1d\x39\x14\x40\x8d\x61\x5a\xdc\x0c\xa2\x5e\x12\x80\x97\xd7\xbf\xaa\x19\xd8\x72\xe2\x8e\xd8\x3d\xce\x5a\xad\xc9\x28\xd4\x01\xfb\xce\x07\x27\x4f\x09\xc9\xda\xeb\x0c\x50\x9a\x8f\x7e\x60\x82\xe2\x7f\x6d\x0b\x3b\xda\xcc\xf4\xfb\x2f\x57\xa4\xd5\x98\x97\xae\xcf\xfb\x33\x47\xcf\x68\xc5\x0c\x0b\xb8\x6c\x48\xb2\x5f\xbe\x60\x44\xfa\xc1\x80\xfa\x7c\x2c\xe7\x90\xfd\xe3\xd2\xa6\x7f\x46\x0c\xf9\x81\xc0\x4e\x2f\x9a\x27\x93\x63\x05\xf3\xef\xf5\x65\xdd\x6c\x1d\x79\x24\xf6\x1d\xc9\x5d\xb7\x22\x01\x9d\x1a\x42\xbd\x24\x33\xf7\xde\xf4\x10\x6c\xfa\xec\x59\xf1\xd2\xdc\xbe\x57\xcd\xea\xac\xd6\xcb\x99\xc0\xc9\xe6\xe0\xf8\x3c\x79\x3e\x02\xd7\xc4\x20\x53\x38\xe7\x5a\xfd\x55\xd7\x89\x9f\x0c\xc6\x32\xf7\xd7\xd3\xc5\x7d\x74\x76\x45\xd5\xad\x30\x58\x4e\x82\x5a\x97\x4f\xdd\xe8\xf2\xfe\xf8\xf1\x2b\x44\x21\x6f\xdb\xc4\xf7\x71\x93\xc0\x49\xe6\xab\x0f\x29\x38\x33\x5e\x97\x31\x98\xdd\xe6\x8c\x67\x24\x4f\xc6\x4f\x51\x78\xb3\xc3\xe6\x8e\x48\xcd\xe8\x70\x83\x07\x86\x1b\x34\x05\xc9\x9a\xc3\xeb\x39\xb1\x8c\x3a\x7e\x5e\xeb\xf1\x30\x33\x12\x6f\xfd\xcc\xa7\x26\x29\x85\x33\x57\x07\x2a\x86\xab\xce\x2b\x56\x1b\x8a\x52\xe5\x55\x2f\x26\x17\xc9\x08\x9a\x86\x83\xb9\xd2\x1b\x30\x74\x5e\x8a\x4d\x70\x08\x4d\x5c\x47\x5c\x49\x3d\xe2\x22\x16\x5d\x87\x2e\x4b\x4a\xec\x26\x58\x7b\xee\xda\xdb\x65\x4e\xe3\xe0\x68\x61\x6d\xf0\xcf\xfb\xe5\xd9\x71\x09\xc7\xe4\x2d\xd2\x7d\x64\x60\x42\x27\x38\x70\x57\x3e\x9f\x9e\x26\x72\x3e\x09\x46\x9e\x3f\x75\x6e\x6a\xca\x57\x9f\x3b\x4c\x91\x1a\x01\x84\x4a\xee\x23\x9a\x4a\x18\x17\x83\x8e\xc5\x42\x6e\x5a\xa3\x00\x54\x08\x33\x04\x07\xb1\x50\x0c\xbf\xbc\x55\x59\x62\xf7\x62\xec\x8b\x6e\x29\xf7\xd5\x9d\x70\x42\x7a\x30\x00\xef\xda\xf6\xa6\x2f\x5a\x22\x5c\x24\x4c\xab\xb2\xb7\x64\xd3\x11\xd5\x26\xe5\x72\x42\xb3\xe4\x11\xfe\xf9\x77\xd4\x85\x39\xbf\x67\x50\x74\xfc\xb9\x4f\xce\x9f\xea\xc8\x22\xe5\x58\x98\xb5\x3f\xfb\xf5\x77\x2f\x83\x07\x68\x36\x3c\x4e\x18\x8c\x4f\x1f\x3f\x49\xe7\x2c\x25\xf4\x23\x07\xd5\xb8\x40\xe1\x9d\xbb\xa1\x22\xf9\x30\xf8\xbb\xf5\xe7\xae\x5f\x02\xb7\x92\xd8\x2e\xa3\x2e\x34\xeb\x9f\xd7\xdc\x5c\xa9\xc3\xc7\xf3\x32\xd7\xed\xd2\x74\xc6\xb8\x86\x97\xc1\x50\x25\x96\x60\xc9\x2e\x39\xa2\x89\x4f\x4d\xf6\x63\x00\xdd\x65\x63\x95\xe2\x0a\x14\x85\x8a\xfd\xd9\xea\x76\x05\x22\x1b\xf8\xd4\xa1\x36\xdf\x8a\x85\x1f\xee\x56\xfc\xce\x30\xe9\xe1\x02\xc9\xfe\x76\xd8\xd1\x00\xca\x2e\x41\xeb\x2f\xb9\xa7\x55\xf6\x36\xb5\xd4\xc1\x58\x38\x4e\xd1\xa6\xa6\x56\x99\x80\x90\xe2\x78\xcd\xf1\x2a\x2a\x23\x18\x29\xc7\xf0\xa9\x61\x52\xff\x1d\xf9\x0a\xb5\x3d\xb3\xf7\x56\xc1\xad\x34\x28\xc3\x46\x5c\x91\xde\xa9\xdd\x5e\x37\x60\x5e\x10\x5d\xdf\xb9\x1c\x62\x7a\x43\xfa\x0c\xa7\xc1\xc7\xc9\x5c\xe5\x68\xeb\x98\x34\x9d\x3e\x3d\xa0\xf0\xb5\x65\x0e\x32\x0c\x16\x20\x2b\x76\x62\xdb\xb9\x5e\x0a\x66\x30\xbb\x50\x0c\xcb\x9b\x64\x82\xb5\x85\x08\x3d\x9f\xfb\x8c\xce\xa7\xfb\xbd\xce\x4e\x01\x3a\x3d\x7f\xeb\xe8\x94\x9a\x0c\xc8\xd0\x8b\xa6\x7f\xd0\xad\x4d\xd2\x11\x0d\xcc\x62\x27\xe3\xcc\x55\x6b\x63\xdf\x11\xce\x02\xcf\xdd\x7e\xd3\xe8\x24\x3c\x34\x21\x97\x26\x31\x59\xb4\x36\x68\x10\x55\x82\xbf\xd2\x54\xfc\x63\x19\x21\xa9\x4f\xf7\x0f\xca\xd8\xc9\xa7\x96\x2c\xc1\xc2\x9e\xf1\xaa\x84\x7b\xc0\x0c\xbe\xe4\x5e\xb5\x44\xef\x05\x90\x87\x0b\x15\x22\x12\x75\xee\xe6\x49\x0a\x1d\x21\x11\x60\x11\x85\x4e\xe1\x22\xb5\x11\xf0\xa1\x22\xcf\x5d\x72\x6d\x1a\x1f\xe4\x37\x18\x33\x31\xf7\xf2\xf1\x69\xca\x72\xb4\xe7\x5d\x6d\x62\x15\x48\xc2\x77\x38\xb6\x5d\x9e\x6c\xc3\xe4\x8a\xf3\xfd\x99\xbb\x07\x35\xad\x0c\x00\xee\xce\x9f\xfe\x94\xa3\x5a\xf7\x59\x47\x96\x60\xef\x70\x99\x80\x6f\x1c\x4b\x0a\x6b\x83\xbf\x8f\x1f\x0d\x56\xae\x95\x67\xa1\x9a\x89\x1c\x5a\x8f\x7e\xd5\xff\x1d\x50\xe4\x60\x19\x0d\x9a\xa6\xd4\x99\x96\x7d\x69\xc6\x0a\x0b\x4a\xc4\xa1\x75\x85\x0c\x14\x1e\xd7\x38\x7c\x42\x14\x89\x57\xbd\x8f\x3c\x0a\x5d\xc3\x12\x21\x6b\xa4\x4a\x1a\xf9\x72\x8b\x36\x7d\xce\xec\x59\x51\xc5\x35\x73\x78\x6a\xc0\x03\x75\x4f\xfb\x3c\xcd\x7e\x06\x57\xb8\xb6\x11\x3c\xc0\x07\xa4\x7a\x96\x83\x51\xa1\x18\x4e\xd0\x56\xee\xd3\xe7\xcc\x99\x09\x33\x92\xd2\x1e\x65\x63\xdd\x70\x40\xef\x23\x3c\x74\x5e\x7d\xf7\xb6\x20\xfe\x08\x21\xd2\xef\x5f\xa8\xc8\x35\x43\x1e\x29\x29\xa1\x28\x28\x83\x80\xef\xe9\x37\x35\xe9\xf4\x80\xd5\x70\x63\x2a\x8b\x43\x7b\xee\xb6\x0b\x35\x30\x83\x89\x63\xdb\xe5\x73\xab\x87\xab\x4d\xa3\x07\xe9\xe4\x83\xcf\x69\xe9\x24\x09\xfb\x22\x19\x76\x85\x9a\x37\x03\xd8\xf4\xc5\x73\x81\xfc\xe7\xdf\x90\xb5\x05\xa3\xbc\xb6\x8f\x7e\xef\x81\xfa\x18\xb9\x1f\x6e\x02\x6a\x67\x4f\x49\xed\x13\x3a\x59\x41\xba\x67\x2f\xeb\xd1\xc1\xb5\xbe\x0f\x4f\x2a\x0e\xe9\xb7\x4d\x00\x59\x8e\xeb\x9d\xaa\x05\xfb\xf1\xf4\x49\xba\x4d\xd3\xfe\xae\x52\x9a\xf8\xd1\xe5\xfe\xb2\x41\x89\xcc\x9c\x6e\xcd\x0b\x8b\x23\x67\xe5\x81\xf0\x39\xe5\xaa\x50\x0c\xef\x38\xa1\x4b\x36\x06\x1e\x2a\x27\x5f\xfc\x2e\xcd\x06\x13\x55\x39\xca\x13\x3a\xf4\x35\xd7\xea\xd3\x12\x97\x7a\x01\x8b\xd5\x42\xcf\x36\xc9\xd9\x18\x88\x38\x31\xec\x3b\x3f\xec\x11\x81\x4e\x9e\xcd\xdd\x6e\x3e\xb4\x75\x8c\xdc\x1a\x34\xf3\x4c\x7e\xa1\x98\x58\xf5\x60\xea\x22\x56\x6e\x80\x44\xda\x23\xf2\x08\x55\x88\xf0\x68\x58\x14\x2a\x67\xdf\xa2\xbd\x30\xd0\xff\xda\xee\x31\x4a\x67\x94\x84\xc1\x38\x34\xd5\xcf\x8c\x53\x5a\x82\xa8\x9e\x68\xaa\xbe\xae\xec\xd6\x08\xc3\xd1\x11\x63\xf2\x24\x85\xe1\x11\x55\x7c\x0a\xc8\xf3\x20\xbe\x70\xea\x62\xf1\x11\x39\xc4\x6a\xe7\x11\xc0\x3e\x04\x8e\x67\xb0\xc0\x0d\x04\x60\x25\x7b\xe5\x7d\x0a\x7f\x93\x61\x98\x3c\x86\xfb\x5e\xd2\xbd\xc6\x6d\x6c\xd2\xde\x58\x16\xef\x90\xe6\x71\xe4\x06\x3e\x71\xc4\xba\x36\x5e\x20\x8c\xea\xbe\x4c\x91\x3b\x61\x3e\xb5\x14\xf9\xeb\xdc\xcf\x94\xc2\xcc\x37\x09\x57\x43\xe1\x15\x11\xca\x6a\xd6\x4c\x7c\xa3\x0a\x82\x88\xc9\x30\xe3\xd9\x51\xda\x7b\xb6\xf8\x1c\x31\xbc\xeb\x1e\x99\x8d\x66\x75\xfa\x3c\x79\xdc\x38\xac\xb5\xe9\xab\x00\xc5\x75\xcf\xfd\xea\xa9\x2d\x21\x9f\xc0\xb4\xe6\x63\x17\x48\xd4\x49\x53\xc6\xcb\xbe\xf6\xa8\xb0\x23\xa1\x01\x13\x15\xc8\xbe\x7b\x94\xb1\x0f\x66\x15\x6c\x40\x14\xf8\xe6\x05\xc2\xed\x87\x05\xb6\x60\xc2\xe5\x57\x1e\xd0\x16\x82\x42\x37\x29\xe6\xe8\x65\x3e\xff\xa2\x36\xf2\x21\x86\x49\xaa\xdc\x63\xae\xe9\x74\x04\x8a\x7a\x55\xda\xe6\x5f\x69\x36\x4b\xc4\xe2\x15\x7b\xee\x03\xbb\x65\x22\xb1\x48\x6c\x10\xc0\xf9\x96\x33\xc5\x6a\x20\xf0\x5c\xec\x80\xb3\x6a\x70\x42\x9f\x73\x11\x5b\x4c\xab\x37\x88\xaa\xf5\x46\xcf\x6a\x1e\x61\x64\xa7\x4d\x18\x26\x4e\xb4\x45\x7c\x01\x1a\x6c\x6c\x54\x56\x84\x16\xa9\x22\x66\x98\xd1\xff\xff\xe3\xc3\x9a\x58\x43\x50\xc3\xbd\x88\x9b\x60\x47\x9f\xeb\x17\xfa\x90\xcf\x44\xac\x4c\x1d\x07\x35\xc0\x29\xe0\x70\x56\xd7\x55\xb1\xea\x6a\x77\x7c\xdb\xde\xd1\x5a\x26\x26\xac\x4c\x01\x78\x90\xcf\xbe\xaa\x7b\xb3\x71\x87\x5f\xf1\xa7\x7f\xb8\xa0\x49\x59\xd6\x23\x89\xb2\xec\xa1\x03\x8a\x33\x33\xf7\x98\xc6\x0e\x37\xfa\xce\x0d\x91\xca\xcb\x36\xd7\x66\xc8\xf4\x9d\x81\x46\x6c\x25\xb1\x4a\x29\xe9\xf4\x59\x17\x8e\x52\xf7\xd2\x46\x90\x48\x11\xfe\xeb\xb5\xfa\x60\x8b\x32\x54\x06\xf9\xae\x62\x7f\xee\x5c\xdb\x65\x4a\x97\x88\xdd\xa8\x20\x70\x69\x60\xf1\x8c\x94\xbb\xf0\x0d\xe9\x6c\x80\x14\x6b\xc6\x25\x37\xa9\x35\xa1\x80\xa5\xc5\xcd\xcb\x47\x87\x2a\xb3\x1a\xea\x81\xb1\x69\x66\xcc\x19\x79\xbe\x38\xdb\x22\x56\xda\xbb\x68\xb5\x42\x44\x22\x65\x0c\x70\xe8\xe8\xa3\x2f\x3a\x03\x70\xe6\xce\xce\x26\x44\x70\xf8\xdb\xc7\x94\xad\x6e\x2f\x12\x30\x85\x70\xe7\x60\xc5\x39\x03\x97\x91\x05\xc2\x32\xf3\xc6\x2a\x50\xa1\x20\xc6\x5a\xdf\x3b\xed\x62\x51\x73\xcc\xec\xe0\xc3\x6d\x6d\x0e\xd3\x4b\x59\x2d\x2a\xcf\x60\x30\xf4\xf6\x0a\x85\x66\x45\x19\x75\xf8\x78\x66\xcd\x63\x6a\xcd\x60\x59\xa8\xc4\x59\xb2\xfc\xc3\xdc\xa0\x5c\x12\x8e\x7d\xb4\xb8\x74\x44\xb1\x3f\xbf\x7d\xb9\xf4\xdf\xb3\x83\x12\xf2\x4c\xf5\x6d\x66\x3f\x76\x4c\x17\xdc\x10\xc2\xcd\xb1\x5d\x7b\xeb\x40\x75\xa4\x18\x70\x3e\xb9\x5f\xe9\xfb\x11\x43\xfc\x35\xbf\x7c\xf0\x92\x38\xa4\x10\x11\xae\x73\x83\xb6\xc8\x8f\xde\xc3\x75\xe2\x94\x2c\x3f\xe4\x00\xdc\xbc\x85\x8a\x1b\xea\xa7\x05\x4a\x42\xe1\xe6\x9f\x1a\xa5\x57\x58\x9d\x00\x5a\xfa\x87\xd5\x97\xa8\x42\x04\x7c\xc9\xf9\x09\x65\x95\x57\x21\xcc\x8e\x3e\x2d\x63\x3c\x97\x58\xd8\x29\x4c\x9f\x2e\x0f\xd8\xe4\x83\xe9\xe6\x88\xd8\x95\x81\x06\xd5\xd9\x9f\xaf\x88\xb7\xa2\xd0\x61\x73\x59\xa5\x61\x72\x5a\xc7\x7b\xc6\x4b\x4b\x0a\xff\x54\xf5\x60\x18\xbd\x5f\xe1\x3c\xb4\xab\x9c\x87\x0d\xd7\xfe\x2d\xa4\x3d\x5c\xe9\x5f\x75\xcb\x78\x1f\xb7\x5c\xbc\xdf\xea\x4b\x5a\xce\xc0\x21\x29\x64\xe0\x1f\x59\xfa\x57\xce\x68\x9b\x55\xa0\x41\xb2\x2a\xca\x7c\x5c\x59\x84\x19\x01\xf3\x11\x89\x72\xed\x39\x17\x3a\xf4\xc5\x14\x66\x7f\xf9\xb6\x7b\x14\x1d\xc5\xa8\x1d\xc3\x03\xec\x74\xbf\xfc\x98\xb2\x3d\x21\x55\x47\xa0\x5a\xc2\x7f\x7d\x11\xe2\x87\x83\x7b\xad\x46\x01\x31\x06\x06\x6c\xfd\x39\xba\x42\x9e\x85\xce\x42\x85\x52\xbf\xd0\x55\x20\x0e\xef\x99\xb2\x73\x8f\xc3\x3d\x5c\x04\x30\x81\x74\xd7\xb6\xfd\x88\xa2\x2a\x5c\x02\x22\x7f\x7f\x76\xfb\x9b\x8a\x09\x3f\x81\xb5\x34\xc3\x8d\x42\x31\xdc\x32\x2e\xfd\x18\x4a\x8c\xfa\x26\xb4\x8c\x40\xbb\x62\xf2\x90\x38\x18\xf3\xaa\x3a\xb3\x7b\x42\xaa\x43\x98\xc9\xe1\x30\xc7\x64\xc5\xe3\x32\x3a\x00\x44\x3a\xb7\x6c\x9a\x2e\xa8\xcd\x30\x66\xd0\xe8\xdd\xb9\x50\x98\xdf\x52\xbe\x5e\xcb\xdf\xfc\x96\x94\x54\x43\x65\x9b\xb0\x66\x90\x5c\xfe\x7d\x92\xff\x46\x82\xa8\x9b\xfe\x87\x47\xa5\x4f\x99\xdd\xcc\x57\xda\xbb\x47\xfe\xf7\xbc\x8a\x3d\xb4\x5f\x2f\x3a\x85\x86\x0a\x9c\xaa\x0f\x3e\xa0\x09\xb6\xd8\x2e\x65\x09\x31\xf7\x5b\x47\x94\xba\x10\x3b\x65\xae\xa7\x9f\xbf\xf2\xfe\x4b\xd5\x82\xc1\xa3\x0e\xc7\x71\xf1\xb1\xcb\xd7\xd7\xb7\x2a\xef\xc6\xf3\x59\x60\xc4\x92\xe5\xd3\xd7\x8e\x56\x14\x18\x7c\xca\x8c\x86\x61\x11\xf0\x1d\xcc\xfd\xf3\x43\x3a\x3d\x98\x08\x96\x60\xf8\xc4\x59\x2d\x46\x22\xcf\xc7\x71\x92\xcc\x74\x87\xca\x87\x91\xbe\xa2\xbc\xf1\x59\xf9\xf4\x25\x4a\xfc\xa4\x3c\x9f\x1d\x18\x97\x46\x3e\xf9\xc2\x28\x23\x05\xe8\x0d\xbf\xae\x64\x48\xae\x3f\x1f\xc3\x34\xb3\x8b\x9e\x49\x97\xb4\xd4\xe5\x42\xe3\x51\x01\xc4\x7b\xaa\x30\x2c\x49\x0c\xb2\xdd\x3c\xab\xbd\xf1\x1d\x45\x2b\xd3\x89\xca\x30\x54\x8d\xab\xc7\xbe\x89\x9a\xa9\x3b\xa3\x41\xc9\x8a\xe9\x8b\xd7\xbc\xdb\x14\x20\x3c\xca\x7c\x12\xc0\xce\x31\xb7\xf7\xc1\x21\x22\xf6\x31\x1b\x8a\xc7\xdd\x6d\x80\xae\x5a\x42\x99\x83\x2d\x05\x9a\x9c\x0b\x36\xc4\x96\xe8\x56\x10\x03\xcd\x0e\xea\x54\x60\x8f\x5b\xc9\xc5\x80\xab\xdc\xb0\x31\x32\x6b\xf2\x3d\x9c\x4f\x0c\x90\x3e\xfb\xec\x04\x0d\x1d\x67\x12\xe9\xac\x34\xb5\x7d\x82\x52\xcc\xc1\x0f\x36\xe9\xb0\x86\xff\x74\x30\x5d\x38\x3b\x41\x49\xac\xa7\x25\x08\xcf\x7a\x5e\x43\xea\xf5\x12\xbf\x0f\xb3\xa8\xe1\xe3\xfe\x5a\x9c\xa3\xf5\xfb\x77\x21\xde\x58\xd4\xa9\x46\x95\x3b\xc3\x20\xa6\x97\xcf\x1c\xd2\xe9\xea\x48\xf1\xed\xcf\xbc\x57\xeb\xbe\x2a\x01\x13\x50\x7a\x8e\x36\xbb\x61\xc2\x58\x65\xc4\xee\x79\xc8\x60\xa9\x71\x7a\xae\xf3\xf1\x01\xd6\xcb\xf0\x6e\xc1\x22\x78\xf9\x2a\x65\xe3\x46\x78\xee\x2b\x86\xeb\x36\xc9\x9a\x22\xfa\x1f\x31\x03\xa5\xa4\x55\xfd\xbd\x48\x20\x6c\x32\x1f\x7f\x5c\x01\x2c\x05\xac\x6a\x71\xda\x70\xf8\xf2\xd1\x4b\x14\xd6\x77\x09\x71\x65\x1e\xf0\x59\x2f\x2c\x42\xb6\x8b\x48\xd5\x69\xc6\xe1\x3c\x7d\x45\x73\x91\x8c\x84\xdb\x2b\xaf\x94\x86\xbe\x90\xbe\x96\x35\x87\xf6\x3a\x53\x7b\x79\xdb\x7c\xee\xa5\x61\x6a\x1d\x02\xd3\xb9\x03\xb7\x82\x3b\x06\xac\x89\x5b\x35\x91\x2d\x61\x7e\x13\x3f\xf3\x9d\x65\xc5\xa4\x96\x4b\xb5\x40\x15\xf3\xcb\xb9\xb1\xac\xa5\x83\x2c\x1f\xe6\x7e\xd9\x3f\x3f\xac\xfb\xeb\xb0\x5a\x1c\xa7\x2a\x25\xcd\x4e\xb2\xc6\x10\x58\x5b\x27\x7e\x44\x1f\x5e\x7d\x9d\x67\x22\x17\x27\xe2\xa8\xf3\x2a\x81\xc3\x63\xd3\x78\xfe\xff\x8f\x47\xfe\xf8\xf6\xf5\x5d\xa5\x32\x6e\x2f\xcf\x9c\x3f\x55\xce\xd0\x54\xc4\xd9\xdf\x9d\x87\xd4\x58\xa7\x01\xcc\xf6\xfe\x53\xb1\x4e\xb6\x31\x33\x70\x59\xe8\x0a\xba\x0b\xd5\xb0\x94\x34\x49\x51\x44\x3e\x3d\x4c\x8e\x57\x2b\x4d\x52\x3d\xd9\xbd\xf7\x6a\xb8\x2c\xdf\xc4\x8e\x42\x98\x0d\x1f\x67\xda\xd8\xb4\x30\x13\x7a\xaf\xa1\xaf\xfe\x0d\x9d\x46\xb1\x68\xe8\xdd\x27\xec\xc2\xb1\xc1\xb5\x57\xc3\xe1\x07\x62\x2e\x73\x22\xdb\xcf\x09\xbf\xaf\xea\x13\x40\x47\x7a\xa2\x64\xfe\x7b\xb5\x6e\x9c\xeb\x18\x56\xe0\xa5\x5a\xdc\x9d\x83\xb5\xcb\xb0\x2e\x20\x2e\x9f\xd7\x80\xe0\x4d\x76\xda\x3c\x78\x90\xd7\xa3\xaa\x15\x7d\x92\xb9\x6f\xa8\x89\x06\xf0\x5d\xe1\xc8\x73\xfa\x40\xa4\x0e\xca\xcc\x7c\x9a\xd2\x3d\x13\x06\xe0\xb4\x52\xc1\x8e\x47\xea\xfc\x47\xfc\x33\xba\x5f\x5d\x9d\x5a\x72\x78\x1b\x7e\x60\x63\x92\x3d\xab\x7e\x73\x6d\xb7\xc1\x87\xdf\xd9\x13\x94\x88\x85\x1c\xe8\x23\xb2\xb3\x4f\xa4\x7b\x5a\x0e\x96\x25\x94\xc3\xc5\xf4\x7c\x7d\xe1\xa6\x34\xe4\xc5\x41\xde\x80\x02\x84\xb9\xad\xed\xd2\xc0\x23\x50\x44\x77\xb3\x17\x5f\x20\xab\x11\x8b\x82\xf4\x63\xa6\x51\x56\x2c\xed\x82\xd8\x7b\x21\xd3\xb1\x0d\x5a\xd9\x5b\x8a\x4b\x6f\x29\x36\xd5\x49\x77\xbc\xa1\xdd\x18\x2a\x3c\xa2\x8b\xe1\x9d\x6f\x0a\xc1\x49\xc4\x35\x64\xa2\xdf\x85\x17\xc8\x50\x04\x3e\x9f\x9c\x14\x36\x6d\x8d\xdc\xf1\x32\xd4\x1c\x43\xba\xfb\x24\x12\x84\xf9\x3c\xc5\x8e\x3f\xae\x61\x57\x85\xee\xe3\x04\x8d\x3d\x8b\x4c\xc1\x52\xc9\xe0\xf1\x9a\x88\x37\x71\x63\x6e\x48\x7d\xe3\x40\x85\x01\x6c\x53\xcf\x6e\x19\xaf\xbd\x6d\x91\xad\x39\x04\x4c\x4c\xac\x3b\x5a\x75\xe8\x93\x07\x16\xe1\xfc\x40\xbc\x32\xfe\x4a\x45\xbd\xc0\x29\x61\x64\x37\xcd\xd2\x7e\x32\x31\xc1\x82\xf6\xd0\x58\x38\x25\x43\x6f\x6f\xd5\x82\x27\xee\x05\x68\x70\x7f\x97\x62\x89\x17\x54\xab\xd8\x13\x57\x2b\xfc\xc7\x71\xc3\xa5\x6a\x4d\xf2\x9b\x2c\x6d\xa6\x8e\x18\x2a\x11\x94\x80\x81\xb2\x5f\xea\x4e\x43\xfe\x48\x1d\x39\x35\x5a\x4f\x4d\xac\xc2\xf9\x5d\xe9\xe7\xb4\x2e\x20\xdc\x35\x27\x7a\x4e\x1b\xb4\x39\xba\xeb\x35\x0c\x93\x22\x4e\xd7\x26\x62\x9e\x70\xcd\x08\x39\x7c\xa2\x26\xc7\x4e\x67\xeb\xdb\xe3\x85\x79\x14\xb8\xb9\x5a\x6d\x66\xbf\x16\x86\x3d\x87\x0f\xd6\xb8\x08\xfd\x07\xe7\xa7\x81\xc3\x62\x2a\x68\x58\x09\xc6\x28\xf7\xed\x47\x94\xc9\x30\xb6\x08\xe6\x32\x0f\xb9\x91\x6f\xa5\xbf\xa2\x6b\x51\xdf\x21\x35\x3e\xeb\x97\x23\x87\xec\x0e\x5d\x86\x17\x05\x95\x0a\x0e\x62\x1c\xdb\x8b\x4f\x2a\x86\x83\xa2\x95\xc8\x95\x65\x45\x6c\x81\x64\x57\x69\x87\x62\xac\xc3\x1f\x45\x94\xe9\x91\xcb\x9b\x9d\x8f\x3e\x0f\x41\x72\x7a\xfb\xb4\x59\x00\x11\x7e\x4a\x23\xef\x7b\x1c\x92\x59\x8e\x05\x4b\xb3\xbf\x79\x4b\x51\x71\xef\x6c\xe7\xca\x82\x59\x99\xa4\xf1\xfa\xa8\xa2\x86\xea\xf8\x1a\x57\xa5\xf4\x3b\x65\x2e\xf9\x19\xec\x17\x56\x6a\x0c\x39\x06\x00\x3b\x32\x57\x2b\xb0\x64\xc3\x22\x51\x51\xcb\x5b\x88\xf9\x9d\xda\x7e\x61\x66\xa7\xe8\xc1\x67\x5c\x28\x25\xcb\x03\x1d\xbe\x18\xce\xd9\xa8\x57\x96\xa8\x1a\x1b\x90\x84\xf7\x8d\x69\x92\xe6\x89\xf5\xec\xb2\x93\x4c\xdd\xd1\xc0\x48\x26\x90\x3f\xd9\x90\x7e\xdd\x26\xb6\x2c\x1c\xa4\x18\x3a\xd5\x52\xfa\x3f\x99\x3d\x5b\xb5\x9f\xe5\x65\xc4\x67\x8e\xca\x67\x42\x62\x9f\xf8\x26\x55\x1a\xa8\x1a\x45\xc7\x96\xc7\xda\x84\x29\xaa\xf3\x90\x11\x97\x03\xd9\x05\x2f\x37\x09\xee\x39\x31\xac\xea\x7f\x9e\x4c\x96\x0c\xb5\x40\x05\x92\x7d\x6a\xa8\x4c\xe5\xbd\x66\x54\xcf\x70\x0f\x9f\xf0\x3f\x36\x2b\xb2\xc3\xd4\x73\xf9\x58\x2c\xdb\x31\x56\xf7\x94\x61\x0e\x72\xca\xb8\x2f\x7a\x6e\x0a\x12\x71\x01\x0c\xed\xa7\x4f\xe7\x0d\xe4\xa6\x5d\x8a\x19\x1e\x75\xfa\x10\xa8\x88\xc6\xe7\x7b\xe9\x8b\xda\x64\x18\xf6\x79\xc5\xf0\x1f\xcf\xa8\x22\x4d\x86\x15\x70\x4d\xae\xaf\x0d\x53\x95\x57\xb8\xf6\x25\x1f\x9d\x3f\x9a\x7e\xd7\x73\x3a\xa6\xb5\x4b\xdf\xb5\xbf\xec\x91\xf7\x1c\xc3\x85\xc8\xf5\x9c\x13\x23\x8d\x75\x01\xc6\xd0\xc8\xe5\xdf\xd7\x99\x7e\x86\xb8\x52\xa1\x0c\x38\x72\xf9\x1d\x67\xf5\x1b\xe1\xa9\xa3\x8a\xdc\xff\xb7\x7e\x40\x13\x97\xa4\x67\xeb\x7c\x41\x83\x26\x71\x8a\x84\xc8\x05\xcf\x1d\x92\x65\x25\xed\x43\x35\x4e\x6a\xde\xb4\x4f\x20\xc6\xa9\x83\xc5\x92\xea\xb1\x41\xc9\x8b\x24\x4c\x19\x14\x56\x99\xe2\x0f\x48\xaa\x66\x15\x04\xa8\xfa\x73\xf8\x1c\x54\x95\xab\x82\x3e\x0b\xc5\x4b\x8c\x8d\x2b\x34\x79\x3d\xe2\x25\x65\x06\x4c\xbe\xac\x73\x4a\xdb\x63\xf8\xa4\x4e\xa0\x22\x0d\x2f\x67\xba\xb4\x67\xe0\x9b\x89\xba\xc4\xe1\x24\xd2\xbb\x38\x2e\xeb\x77\xbf\x2e\xd4\xc2\x48\xa9\x04\xde\x39\xf5\x41\xf2\xc5\x5a\x34\x2a\xf5\xf8\x6c\x64\xd1\x4e\x65\x22\x41\xcb\x3c\x26\xe4\x3f\xa4\xed\xb0\xa2\x18\x14\x67\xb9\xcc\x3f\x5f\xa8\x8d\x83\x2d\xea\x24\xc6\x45\xb9\xaf\xad\x91\x72\x98\x36\xff\x7c\xe5\x4d\x50\x80\x71\x36\x31\xe7\x47\xec\x94\xf6\xa4\x03\x58\xa2\xde\x39\x0f\x0e\xb2\x6f\x46\x27\x2f\xfb\x86\xb2\x7b\x28\x79\x40\xc9\x2a\xf6\xe7\x87\x6c\x1d\x19\xab\x51\x2c\x5f\x2e\xa7\x78\x73\xc6\x42\x9d\xb9\xac\x81\x6c\x3b\x11\x01\xcc\x5f\xea\xa6\xc3\xb9\x90\xf7\x90\xd1\xe3\xe0\x7e\xc5\x51\xbb\x51\x28\x86\xb9\xb7\x47\x2a\x23\x3e\x16\x15\x61\xfc\xd1\xb0\x07\xe0\x0f\x70\xcc\x22\xcc\xba\xa3\xff\x7b\xfc\x6e\x0d\x01\x8a\xd6\xc7\x14\x89\xfc\x05\xad\x83\xc5\xbb\xf0\x6a\xd1\xaf\xc6\x8a\x86\x7a\x14\x89\xc1\xa9\xfd\xf3\xa7\x9a\xb0\x0e\xd8\x95\xf8\xe7\xeb\x1e\x96\x5d\xa1\x67\xd6\x11\xf3\x39\xb7\x32\x39\x8b\x2f\xb7\x01\x74\xeb\x46\xee\x69\x1c\x7d\x58\x1d\x30\x38\xff\xa0\x70\x0b\x8e\xde\x3e\x2f\x9e\x34\x03\xa4\x5e\x8c\x5c\x59\x5a\x87\xcf\x2f\x96\xc9\xa6\x4c\xf8\xcb\x7d\xb3\x63\xa4\x92\x52\x6d\x7e\x11\x0b\xc5\xd0\xdb\x72\x85\xe8\xfe\xea\xc8\xe2\xab\x1e\xbd\x56\xc5\xb7\xea\xf5\xb5\x45\x9d\x04\xf1\x94\x79\x78\x85\xb4\xa5\x32\x62\xd0\x46\xee\xdc\x0b\xad\xea\x0c\xcc\xb0\x10\x89\x65\x12\xbf\xfb\xa8\x22\xff\xd5\x54\xf1\x66\xca\x16\x74\xe6\xd7\xb1\x12\x0d\xd4\xd9\xf3\x9d\xf3\xd3\x61\xaf\x9e\xe8\x78\x0e\x6d\x97\xbc\x6f\x33\x7a\x4b\xff\xb5\x35\xf9\x3f\x66\x74\x75\x16\x8a\x61\xc7\x29\x79\xdb\x63\xf4\x39\x8f\x82\xef\x39\x97\xce\x94\x55\xe4\x54\x85\x34\xf0\x1f\x46\x0c\x16\x0d\x9b\x4d\x79\xb3\x56\x3c\x02\xf7\xb2\x6a\xd1\x12\x70\x9e\xaf\xdf\x37\x5a\x7f\x0b\x96\x6f\x0a\xc4\xe8\xcf\x1f\x50\xd6\x53\x18\x56\xf3\xd9\x51\x6f\xa4\x89\xa0\xeb\x90\xe3\x23\x6f\x20\x4d\xe0\xcc\xe6\xf3\xc0\x34\xf8\x70\x60\x55\x12\x20\xad\x64\xba\x7c\x7c\x4b\x7a\x10\x5d\x73\x68\xc9\x42\x81\x61\x6a\x66\x38\xb7\x98\x8a\x65\x04\x8d\x2d\xbe\xb3\x17\xae\xbd\x54\x99\x2a\x96\x55\xbf\x88\xcc\xd5\x63\x75\x00\xb9\xe7\x63\x60\xf7\x17\xfb\x33\xdf\x7c\x5a\x51\x8d\x61\xc4\x47\x8e\x03\x8e\x60\xf7\x68\x81\x67\x7d\x74\x09\x84\x50\xc3\xc7\xb7\x24\x64\xf5\xe8\x9c\x92\x12\xf4\x4c\x57\x29\x96\xb7\x06\x65\xb1\x0c\x4a\xe6\xca\x97\xe5\xff\x1f\xc5\x59\x0b\xb9\xfc\xa2\xa1\x2d\xda\x03\xa7\xcc\x8a\x5d\x75\x32\x4f\x3e\x09\xdb\xdf\x95\x2e\xe6\x3e\x30\x31\x28\x75\x44\xa7\x76\x3b\xc1\x77\x22\x66\x94\x8e\x3f\x24\xf8\xab\xd4\xa9\x10\x06\x3a\x59\x53\x2f\xd4\xf0\x99\x3e\xb2\x08\xaf\x0e\x78\x81\x46\x9e\x51\x10\x3c\x6d\xb4\x2d\x8a\x02\xe1\xf7\xee\x4e\x99\x5b\xf1\xf4\x0b\x99\x76\x7f\x53\x9e\x33\x30\xa9\x27\xe1\x61\xec\xc3\xad\xd8\xe1\xef\xc6\x22\x9e\x5f\x58\xc5\xb8\x0c\x29\x8f\x7d\xad\xb7\xc3\x68\x6e\x91\xd0\xe3\x48\x62\xe5\xa9\x47\xd2\xe7\xb6\xdc\x00\xb6\x62\x31\x3c\xf0\x96\x3a\x91\x9e\x33\xa7\x50\x0c\x2f\x79\x49\x87\x2c\x36\x2c\xe2\x09\x03\xc7\xfc\x06\xcd\x1b\xd4\xc4\x8c\xc6\xf9\xe9\xd1\x09\x10\xcf\xdd\x20\xea\xa5\x3f\xb9\x4d\x43\xb9\xd0\x5e\xc7\x0f\x98\x80\x7b\xe4\x3b\xc6\xc2\xcd\xed\x26\x0d\x54\x36\x95\xf3\xf4\xc0\x61\x5d\xa0\x85\xc1\xf8\xa8\x18\x7e\xa1\xde\x2a\x5b\x9d\x5a\xca\xf7\x2d\x2b\x8c\x3a\x97\x51\x07\x37\xa4\x5f\x42\x6e\xc7\x6e\x48\xf2\xb0\x8a\xe0\x31\xe8\x11\xa5\x28\xab\x08\x79\x27\x7e\x5e\xa6\xde\x9a\x7e\x4c\x26\x8a\x99\x4a\xf9\xcf\x2a\xc9\xc9\xa4\x36\x31\x08\xb0\xe4\x4f\xdd\x90\x32\x4c\x16\x04\x7b\xaf\x15\x6a\x1f\xee\xe4\xe7\x8a\x55\xc2\x5a\x65\x97\x61\x52\xea\xd3\x00\xa6\xd4\x6f\x4f\x52\xf4\xd8\xb0\x63\x23\xc6\x73\xe7\xa7\x1f\xd5\x48\xe0\x84\x71\x21\xf2\xe6\x9d\x77\xf6\xc4\x11\xa9\x3b\x88\x55\x86\xf1\xcd\x8b\x15\x7d\x62\x64\x45\xcd\x4f\x54\x64\xec\xd8\xa5\x0b\x5c\x3a\x84\xd3\x93\xa1\x3c\xaf\x4d\xb9\x4a\x99\xa0\x59\xb8\xca\x45\x50\xf4\x80\x53\xbf\x45\x6b\x55\x91\x27\x68\x99\x4f\xed\x85\x2b\x12\x38\xd1\x87\x72\xa0\xf4\xdb\x38\xf7\x72\xbd\x26\x72\x03\x5f\x8e\xed\x1e\x3b\xa1\xa9\x84\xa0\x92\x85\xeb\x9e\x33\xd0\xba\x2c\xff\x81\x96\x21\xf1\x9b\x80\xd1\x58\xee\xe6\x41\xf2\x3a\x59\x0d\xc7\x30\x4b\x01\xe3\x91\xeb\xd0\x6e\xcd\xdc\x80\x61\xe4\x8b\xe1\x89\x1c\xb4\x5e\x26\x44\xf2\x4a\x01\x9f\x8d\x84\xd7\x3e\xad\x92\x6d\x0d\x64\x98\xbc\xb4\xca\xdf\x28\xb6\x2d\x36\x01\x7f\xd2\xf6\x0d\xda\xa6\x83\xa1\x75\x09\xfd\x2d\x73\x50\xb3\x29\xe1\x00\x7e\xd1\x4e\x0c\xbf\x57\xd7\x3b\x60\x82\x85\x1d\x4f\x87\xbf\xd6\x23\x31\x17\x15\x64\x13\xab\xd1\x26\x8b\x80\x73\x63\xd3\x8f\xcb\x0c\x18\x23\x0d\xe4\x0f\xb8\x5d\x9c\xff\xba\xb6\xab\x0a\x18\x46\x81\x64\x35\xee\xd9\x26\xab\xe3\x8e\x39\x6d\x33\xb8\x76\xee\xf3\xda\xf8\xc4\x08\x92\x0d\xce\x4b\x1a\x63\xb5\x86\xb1\x9b\x08\x94\x66\xba\x77\xfc\x2d\x24\x8c\x6c\xba\x47\x48\x3f\x27\x5c\x0e\x94\xcb\xbf\x64\x4b\xab\xec\xa4\x52\xaa\x5c\xf7\x69\x55\x13\xcc\x71\x1b\xf1\xbe\xed\x86\xc3\x30\x65\x73\x4d\xec\x50\x1b\x83\x2d\x4f\xe6\xbf\x4b\x70\x14\x97\x47\xfd\xa1\xcf\xa1\xa3\xfd\xb9\x47\x66\xa6\x67\x9d\x26\xb1\x39\x87\x33\xfb\xdb\x6e\xdd\xb4\x04\x3b\x05\x0e\x3d\x8e\x81\xa0\x96\x46\x1e\x20\x36\x17\xce\x16\x3d\xef\x4b\xad\x8a\x65\x0e\x76\x1a\x5c\x1c\xff\x8b\x17\x28\x36\x04\x55\xec\x18\x62\xbf\x9b\xdb\xb2\x16\x3e\xdb\x4d\xd8\x21\xb1\x75\xc6\x6b\xbe\x6c\xa4\x1c\xca\xed\x0a\xee\x3f\x94\x2e\x64\xaa\x14\x73\x41\x8d\xf0\x57\x1d\x5a\xa2\x60\xc4\x27\x06\xf1\x84\xe8\x56\x76\xfb\x83\x23\x92\x7e\x85\x0f\xb6\x39\x33\x3c\xf7\xe3\x92\x62\xac\xc3\x02\xdb\xc5\xa0\xae\xcf\x97\x5b\x97\xad\xd2\xac\x7c\x38\x77\x39\x66\x46\x76\xdc\xda\xd4\x02\xc7\x6b\xdf\xec\x7f\x3e\xad\xfb\xc8\x94\x91\x23\x72\x6d\xfe\x53\xcb\xd3\xbf\xd6\xa1\x4e\x74\xe0\x85\xf7\xc1\x6b\x5a\xc0\x67\x81\x85\x85\x27\x47\x76\xfd\x56\x05\x2f\x87\x7c\xd8\x4b\xdc\xb8\x56\x53\x5f\x74\x62\xf4\x78\xbe\x33\x4c\x3f\x2d\x17\x55\xe1\xaf\xe4\x57\x6d\x1e\x95\x1e\x12\x25\x1b\xbd\x87\x36\x43\x8a\x98\xde\xce\xff\x73\xbe\xa3\xdc\x25\x10\x4d\x80\xc4\xe3\xf8\xf1\x55\x17\x5d\xa1\x14\xa9\xa4\xde\xe4\xc6\x94\x79\xf8\xe9\x49\xbd\xfa\x66\xc2\x89\x4e\xcf\xb4\xa6\xd6\xe7\x7d\x17\x02\xb6\xf0\x3a\xc2\xac\x28\x96\x34\xa9\x1b\x5a\xda\xcb\x0d\x3c\x9f\xda\xd2\x04\xe6\x5b\x3d\x92\x14\xe5\x45\xd9\x76\xc4\x42\xc5\x41\xa8\x97\xff\xd6\x6a\xa1\x18\xfe\xe9\xbc\x86\x26\x42\x81\x53\x66\x8d\xb8\xc3\xcb\xdc\xa3\x39\xd1\xf0\x5a\x57\x50\x76\xfe\xa4\x59\x12\x54\xa9\x54\x53\xba\xbd\x3b\x7d\xc9\x3d\x33\xb0\x6c\x94\x52\x92\xcb\xbf\x77\xb1\x56\x48\xb8\x98\xdb\x48\x40\x10\xf9\xf3\xed\xf0\x88\x1d\x62\xd4\x1c\xb0\x6d\xcb\xb2\x27\xe4\xf1\x9f\xde\xd5\xc9\xe3\xd0\xbf\x2e\xd0\xd0\xe7\xc8\x27\x89\x31\x7d\xbe\xb8\x45\x67\x10\x57\x48\x5c\x2d\x8c\x1b\xa6\x17\x12\x55\xd3\x87\xaf\xc6\x34\x47\x35\x0b\xb1\x6a\x54\xb3\x42\x89\xf5\x57\xa6\xcc\x40\x12\xea\x71\xf6\xed\x93\xc0\xdc\xbb\xde\x2e\x21\xcf\x6b\xa4\x36\x75\xae\xe6\x77\x64\x53\xcf\xa0\xbd\xf1\x82\x25\x2a\xce\x2e\x7e\x55\x71\x0c\x87\x29\x90\xeb\x6b\x36\x91\xc2\x71\x0d\x30\xa4\xe1\xc9\xe7\xd2\xce\x7a\x5c\x61\xa7\x3f\xf3\xf1\x1d\xb1\x2b\x19\x67\x01\x71\x06\x90\x2f\x56\x48\x04\xf7\xf2\x9b\xfa\x3e\x61\xe7\xe5\x22\x56\xe1\xd2\x47\xb9\xda\x8b\x03\x18\x32\x51\xec\x9b\xc4\x10\xaa\x33\x97\x6b\x72\x24\x16\xf5\xbc\xd8\xd2\x3e\xfb\xe1\x47\xe4\x3d\x64\x50\xb1\x15\xc3\xc7\xd7\xa6\x0f\x01\xb2\x1d\xea\xa4\xb4\x24\xc3\xe7\xd6\x28\x08\x65\xca\x2d\xaf\xa2\x0f\xbc\x6c\x90\xae\x05\xe4\x04\x2c\x11\x23\x6e\x5d\x21\xf7\x5c\x89\x4e\x84\xa0\x87\xfc\xf7\xbb\xaa\x5f\x08\x16\x78\x15\x72\x5f\xf3\x70\xce\x17\xb4\xb4\x4b\xbb\x9b\xe5\x44\x0c\x3e\x11\x99\x3c\x42\xf4\x4c\xd0\xa2\xe9\x77\x74\xea\x45\x92\x26\x51\x52\x86\x41\xef\x58\xda\xf0\x3f\xf0\x4a\xc8\x29\x0b\xf8\x73\xe6\x9e\xfd\xba\x3b\x2d\x8b\x1b\xed\xc2\x9a\xe1\x8a\x20\x41\x15\x08\x39\x97\x54\xf4\x81\x42\x2d\x3e\x01\xbf\xea\x6a\x02\xbd\x39\x1e\x65\xe2\xa5\x64\x36\x5f\x98\x9e\x17\x36\x02\xa7\xca\xc5\x3a\xaa\xa9\x79\xe9\xc9\xd3\xe9\xde\x8f\xc3\xd6\xb0\xe7\x13\x9b\x23\xbc\x12\x68\xe0\x7b\x27\x5e\xa1\x7c\x3a\xb7\xd9\xa3\x32\x3f\xeb\xb4\x98\xe9\xd1\xc0\x37\x31\x8b\x3e\xfd\xfa\x07\x35\xed\xc3\x52\x50\x42\x35\x94\x72\x00\xcd\x86\xc2\x99\x61\x31\x62\xb5\x98\x6e\xb4\x69\xab\xc0\x00\x36\x50\x8d\x28\x90\xad\xdc\x88\xf9\x97\xaa\xfc\x7a\xbf\xd7\xc4\x58\xe8\x4b\xe4\x57\xbd\x39\x52\x25\x83\xf9\xb8\x40\x2b\x85\x62\xb8\x68\xae\xd6\xe8\x71\x76\x33\x3c\xa5\xfc\x75\xf7\x69\xb8\x72\x86\x5c\x97\xa7\x35\xbe\xac\x39\x78\x4f\x53\xbf\x55\x21\x65\xce\x7d\x8f\x1a\xa4\xa3\x8a\x4a\x9c\x11\x1d\xfa\x5b\x4f\x0d\x57\x3a\x81\x80\x01\x2a\x62\xba\x23\x47\x28\x25\x8b\xe7\x8b\xd7\x77\x6a\xe8\x03\xca\xc4\x28\x4f\x52\x8e\x3e\x7b\x60\x82\xf6\xdf\x94\x82\x01\x9c\x97\x7e\xb2\xa3\x45\x11\x22\xb2\x11\x63\x04\x66\x7a\x07\xde\x4e\xc6\x29\x94\xd5\xc4\x44\x30\xbf\x24\x5d\xdf\xc4\xea\x32\xaf\x65\x93\x9c\xe1\x9a\x7c\x17\x73\x7a\x43\xf2\xff\xcc\xe9\xe4\xa2\x78\x66\x47\xb3\x0c\x57\x8c\xb7\x81\x41\xc7\x1b\x1b\x15\x35\x1c\xbe\x51\x7d\x61\x84\xe8\xfa\x12\x73\x9f\xe8\xbf\xbb\xb6\x9e\xb2\xc2\xa7\xa0\x81\x92\xfd\xdf\xf1\x43\x44\x3b\xe2\xf8\x2c\xfa\x10\xf9\x96\x3d\x42\x56\x85\x5a\x75\xc8\xb4\x33\x4f\x69\x4b\x3d\x2b\x70\x84\x92\xda\x94\xe3\x57\x28\xbd\x1b\x2d\x37\xf7\x25\xc5\xf3\x23\x44\x89\x6e\x59\xd8\x71\x48\x60\xf3\x6a\xeb\xc6\xae\xe4\x63\x33\xb2\x9e\x23\x65\x0f\xc9\x90\x56\x0f\xac\x2a\xe2\x7f\x7b\xe9\xb1\x2b\x95\x86\x78\xe6\x9c\x42\xe7\xcc\xa6\xd7\xf1\x1f\x9b\x95\x89\x21\xc5\xdc\x59\x20\xca\x97\x77\x6b\xbe\xf2\x4e\x95\x38\x38\x1e\xfb\x02\xd7\x62\xdc\xf0\xf8\xbb\x92\x32\x12\xf2\xb1\xd9\x39\x27\x54\x67\x6f\x86\x0d\xbf\x1e\xfd\xdf\xfd\x17\xe8\xfa\x50\x9e\x97\x8c\x01\x5e\x3b\x26\xa4\x9e\x12\x47\x91\xdc\xe4\xdd\xea\x8a\xd4\x0d\xac\xe8\x1b\x85\x13\x59\xba\x28\x81\xb8\x83\xac\x66\x45\xe9\xcc\x1b\x0f\x28\xaa\x08\xc4\x57\x9a\xf2\xec\xc5\x27\x2e\x55\xc7\x15\x75\xcc\x7c\x52\x02\x78\x46\x7e\xc3\x4d\xb1\x89\x0d\xaa\x23\x62\x81\x89\x4d\xb8\xab\x4d\x9e\xad\x8e\xe9\xd1\xe7\x33\x37\x0f\x13\x3d\xa5\x4d\x0d\x06\xf2\xfe\xf9\x41\xb7\xa7\x83\x13\xf3\x63\x84\x4e\x6a\xd7\xf4\x9b\x0e\x81\x43\xa2\xb4\x8c\x79\x1a\xac\x6b\xe2\xe8\xd1\x19\x53\x37\x7b\xe1\x1f\x46\x43\xaf\xd6\xd9\xd6\x31\x87\x0f\x6e\x41\x1a\x8e\x73\x47\xb0\x5f\xe0\xc4\x40\x4b\x98\x62\xbe\xd6\xa9\x70\xbc\xa9\xe7\x47\x95\x1b\xe4\xcd\xdf\xb5\xcb\xb4\x5d\x45\xc0\x08\xff\x74\xdf\x65\x8a\xaa\xa1\x22\x30\xce\xdf\xf1\x8f\x9b\x30\x25\x8e\xa8\xb7\xc2\xc5\x4b\x35\x08\x03\xb7\x96\x90\x1c\x98\xdc\x1f\x8e\x6b\x47\x68\xbd\x1f\xab\x6b\xc7\x30\x88\xae\xf1\xaa\x64\x21\xff\xa0\x8c\xcb\xc5\xe7\x56\x9d\xd4\x64\xf5\x29\x73\x28\x77\x7f\x14\x66\x24\x99\x67\xb7\xa5\x1f\x36\xd0\xd9\x6b\xbc\xee\x51\xab\x99\x77\x34\x0f\x31\x1c\x44\x0f\x4b\xf5\xf4\xb9\x4a\x13\x90\x35\x69\xe0\x48\xc6\xca\x16\x85\x60\x66\x61\x93\x01\xc1\x2c\x7f\x44\xdb\xf0\x80\x1e\x86\x17\xcf\xc9\xbe\xa8\x30\xbf\x9d\x52\x33\x0c\xc2\x5b\x98\x0e\x96\xc8\x40\x65\x6c\x0b\xdd\x67\xf9\xe1\x0b\xaf\xe8\x0b\x7c\x07\x95\xd3\x22\xdf\xfd\xf9\x65\xb7\x5c\xa9\x9a\x1a\x77\x2f\x9c\xca\xbf\x98\xda\x70\xde\xb0\x15\x8e\xb5\x60\xba\x08\x30\x62\x7e\xc7\x91\x91\x4a\x93\xc7\xf5\xa1\x41\x5e\xfb\xc8\x28\x05\xf0\xc9\x75\x5f\xc1\x83\x28\xb3\xf0\x41\x38\xf7\x22\x7b\xc3\xd6\xf6\xab\x4b\x15\xb1\x01\xc4\x6c\xca\xc7\xa2\xd9\x5f\xbd\x2b\xaf\x20\x2a\xd7\x31\xf3\x62\x61\xa2\xec\x5d\xcf\xc8\x93\xd8\x3e\x9b\xaf\x91\xf3\x53\xeb\x4a\xbf\xc8\x67\x12\xe1\x10\x61\xfb\xd9\xbd\x6c\x46\x5b\x57\xd7\x2c\x2e\xef\x73\x4e\x2b\xe4\x11\x71\xe2\x5d\xec\xef\x8f\x8c\xd5\x92\x85\x45\x0d\xe5\x48\x66\x36\xbe\x20\xbf\x17\xe3\x4c\xcb\xb8\x1e\x36\x46\x00\x50\x64\x31\xc1\xd5\x26\xf1\xbc\xdc\xd1\xa3\xba\xf9\xba\x53\xed\x43\x94\xbf\x6c\xd9\x23\x8c\x9c\xaf\x6b\xc5\x03\xac\x4c\xb0\xf1\x4d\x5d\xb9\xc8\x44\xb6\xcb\xa5\x6c\x84\x66\x58\x8b\xb0\x9f\x58\x62\x21\x13\x33\xbf\x21\xaf\xff\x6f\xef\x85\x61\xe8\x32\xd4\xa8\xa0\x54\x81\xf1\x5d\x6d\xfd\x5c\x46\x0d\x9f\x0a\x61\xc6\xec\xa7\xf7\xc8\xbb\x5d\xc5\x8e\x83\xca\xca\xef\xfc\x01\x60\xcb\xa2\x1f\x9a\xa6\x42\xb8\xda\xa6\x08\x5f\x1a\x24\xf6\x88\xef\xd9\xd0\xaa\xf5\x17\x31\x51\x28\x63\xca\x0d\x88\x45\x12\x4a\xe6\xcb\x9b\xb5\x22\x35\x11\x4e\x7b\xea\x45\xfd\x05\xe1\xf5\xaa\x73\x59\x6e\xf7\x79\x75\x04\xe9\x98\x08\x86\x1c\x47\x5b\x95\x9c\xe2\xf9\x94\xc5\x50\xac\xec\xa4\x7b\x34\xcf\x2e\xc3\x40\x25\x0c\x31\x20\x31\x71\xba\x5b\x24\xe5\x80\x71\x19\xdc\xf0\xe1\x41\x97\xeb\xc9\x2d\x8a\x7a\x71\x65\xfb\xdb\x2e\xc5\x6c\xcc\xc4\x96\x1f\xeb\x9b\x85\xa7\xa6\xc9\x63\x5b\xc7\xa0\x20\xf0\xa3\xdb\x15\xcd\x5c\xd1\xd9\x16\x3c\xcc\x84\xc6\x4b\x2e\x28\xc9\x63\x5d\xb1\xb8\xdb\x4c\xee\xa3\x3b\x95\x0a\x2b\x88\xf2\xed\x17\xb2\xda\x7b\x24\x8e\xb4\x1d\xfe\xc9\xb5\x1a\x68\x0b\x6c\x5b\xeb\xa5\x44\x68\xf6\x4d\x01\x9c\xc6\xb8\x16\xfd\xc0\xb4\x6d\x2d\xe9\x9b\xe7\x83\xf7\x4d\xae\x47\xba\x54\x79\x06\xdf\xd3\xbf\x5f\x2b\x19\x9d\x44\x9b\x05\xee\xd4\x1b\x27\xf4\x06\xc1\x29\x4b\xf0\x50\xe6\xd7\x0f\xb5\x28\x75\x36\xa9\x3a\x71\x1b\xf7\xfe\x27\xe0\x23\x7d\xcc\x44\x51\x4b\xff\xda\x3e\x59\xa0\xd0\x5e\x07\x88\x55\xa5\x6b\xa5\x15\x54\xbd\xc9\xbc\x31\x7f\xc3\x94\xe4\xc3\x72\x37\xc2\xb0\xef\x01\xf1\x35\xc1\xc0\x3a\x33\xaf\x67\xb8\xba\xdf\x8f\x3d\x48\xb7\xc9\x3f\x35\x7d\xba\xd0\xb1\xcb\x54\xb6\x2b\x44\xce\x80\x39\x80\x42\xbc\x54\x48\xf7\x2e\x09\x7c\xd5\xe5\xac\x3f\xf3\x65\x6d\xcc\x18\x0b\x9f\x88\x59\x4e\xe6\x35\x4b\xa9\x21\x4c\xca\xb0\x48\x4e\x1c\x50\x73\xaf\x76\xca\xfb\x48\x5f\xca\x9f\xaf\xf0\xe6\x15\xa9\xb0\xab\x17\x7e\xe1\x8a\x93\xda\x50\x92\x58\x5c\xfd\x85\xa3\x4a\x7e\xb0\x58\xc3\x82\x99\x42\xd5\x2c\x7c\xcf\x01\xf9\xcd\x3b\x66\x16\x66\x14\x38\xc6\xf4\xce\x05\x8a\xdf\x51\x14\x82\x79\x99\x76\xaf\x32\xde\x63\xc8\xe1\xb2\x33\x99\x0c\xc0\xd9\x21\xe1\x7a\xf1\x2a\xe6\x2a\x3d\xd3\x0b\xe4\x2e\x16\x93\xc4\x7c\xc7\x14\xb5\xae\xe0\x6e\x56\xff\xb2\x53\x9b\x74\x10\x83\x2b\xaf\xc0\x24\x6c\xed\xfd\x3a\x69\x8f\x8f\x8a\x0b\xc5\xf0\x87\x8a\x4c\x29\xae\x63\xd6\xf0\x01\xca\x17\x7e\x65\x8a\xe2\xb8\x6a\x77\xb4\xcd\xec\x84\x74\x70\x56\xe3\xdb\x05\x55\x07\x19\x84\x06\x02\x4f\x95\xdf\xf1\x8e\x5c\x91\x4f\x9f\x5d\x28\x86\xab\x46\xb7\x68\x95\xa8\x48\x0e\x85\xb9\x4a\x43\xdb\x40\x25\x20\x61\xbf\x32\x74\x98\xd2\x26\x22\x3e\x9f\xda\xbe\x57\x6d\x7d\x6d\x54\xe3\x77\x6b\x21\x53\x56\x63\x8c\x08\x4f\xea\xf7\x08\x47\xdb\xeb\x96\x2d\xbb\x6e\xb9\x08\x23\xe1\x45\x4d\x42\x90\xe5\xc0\x80\x51\x68\x7f\x6e\xea\x5a\x8d\xb1\xed\x34\xec\x78\xbe\x98\x7b\x74\x81\x26\x08\x8f\x19\xa0\xdb\x33\x87\xe7\x69\xa7\xce\xf7\x19\x29\x05\x7e\x02\x3a\x19\x52\xd1\x77\x9b\xcc\x96\x31\x66\x94\xb0\x23\xf3\x7a\x11\x07\x40\xe4\x06\x69\x61\xdf\x26\x35\xf1\xfa\x72\x1f\x5f\xa2\xec\xd8\x69\x6f\xf4\xd7\xff\xab\xa4\xc1\xa0\xb8\x06\x18\x74\xa5\xf7\x68\x0c\x0b\x9b\xd6\x81\x9b\x0c\xe3\x98\x4b\x5e\x8a\x7d\xc7\x85\x96\x1f\xc7\xa0\x7d\xe8\xb0\x3a\x62\x22\x51\xd8\x7e\xef\xa6\x74\x31\xe4\x07\xb5\xc0\xea\x49\x2f\x7d\x33\x53\x1e\x4f\x7f\xcb\x75\x01\x8e\xd1\xc1\x45\xe1\x8b\x73\xdd\xcd\x85\x99\xb3\x79\xfa\x3a\x0a\x89\x01\xaf\xc7\xb6\xcb\xa3\xdd\xf7\xb7\xa6\xcb\x32\x0e\x74\xe8\x45\xc4\x01\x69\x25\x91\x3a\x2f\x3d\xae\xe0\x17\x71\x35\x70\xb8\xa1\x3b\x8f\xc4\x9f\x38\xa2\x0f\x83\x58\xe2\x77\x16\x86\xf7\xcb\xa6\xa6\x4a\x6c\x9b\x80\x33\x64\xcf\xb1\xf4\xcf\x80\x27\x46\x4c\x6b\x6e\x6c\x93\xd9\x08\x59\x24\xe5\x0a\xdc\xa1\x89\xe5\x60\xd6\x47\xab\x62\x6d\x12\x07\x9b\x4f\x6c\xd7\xe6\x2e\x3e\x23\xb5\xc4\x54\xf1\x29\x29\x2d\xea\x11\x5b\x09\x80\x2d\xd3\xd2\xc7\xc9\xc3\xa8\x82\x58\xc2\x07\x08\xaf\x79\x52\x6b\xe8\x10\xab\x62\x41\x48\xb9\x33\xaf\x41\x20\x51\x23\x96\xd8\xc8\x58\x5d\x4d\xc6\xd5\x5c\xc3\x3d\x46\xba\x7e\x4b\x91\x87\x29\x31\x21\xbb\xbf\x6e\x9f\xe4\x3c\xa6\x58\x79\x2d\x2f\x09\x19\x47\xee\x3a\xc4\x43\xcb\x66\xf9\xf3\x65\xc1\xd7\xcf\x4c\x5b\xa3\xab\x81\x02\x89\x07\x26\x53\xb4\x7d\x8c\xca\x45\xd3\x37\x4e\x8f\xc8\xc1\x82\xc7\x07\xae\x67\x4e\xa6\x0f\x89\xe1\x19\x50\xb7\xa7\x8b\xc6\x4f\xec\x56\xcc\x93\x10\xb1\x9a\xcd\x93\xb2\xbf\x78\x13\x4e\xe4\xcd\x0d\x0a\xa0\x9b\xc5\xa7\x14\xc3\x12\x54\x21\xeb\x38\x61\xf9\xac\xb6\x2d\xa2\x16\x31\x48\x02\xd4\x99\x3f\x2c\x61\x2c\x3b\x3e\xe3\x98\xe4\xf2\x29\x95\x01\xe9\x40\x87\xee\x53\xee\xb2\x99\x3d\x7a\x5e\xf5\xe7\xe7\x75\x0a\xbf\xd5\xff\xa2\x61\xd2\x91\x8d\x19\x31\x90\x23\x7a\x9a\xf0\xff\x84\x37\x8e\x4f\x2d\x0c\xee\x68\xc5\xfe\xec\x6f\x5e\x48\x47\x89\x5e\xcc\x40\x99\x25\x5c\x3a\x53\xd6\x3d\x25\x02\x1e\xb3\x3f\xe9\x48\x4e\x5b\x83\x2a\xef\x31\x37\x7b\xa9\x9c\x42\xcc\x4a\x00\xee\xfd\xf9\x4f\x1d\x4d\xd4\x32\xf8\x7c\x31\xf3\xf6\x88\xd4\x9f\xfb\x00\xe8\x60\x2d\x1b\xad\x0c\x1d\xb0\x61\x89\x8d\xe6\xcf\x77\x28\x43\x04\x94\xd8\x9e\x6e\xbf\x28\xdd\x98\x32\xe2\x51\x67\xaa\xa1\x96\xf2\xab\xbb\xf5\x2e\xc3\x8e\x9f\x77\xe6\xb5\x99\x32\x45\x11\xc7\xe8\xc3\xb6\xef\x61\x9e\x2b\x4e\x1f\x93\x8f\xdd\x0c\xaa\x26\x56\xd6\x84\xb9\xd1\x27\xf9\x5f\x2d\xac\xc0\x3e\xa3\x9e\x49\xdc\x26\xbc\x51\xe6\x8e\xc1\xa3\xf5\x40\x99\xc4\x8e\x3f\x9d\xd2\x58\x0f\x56\x09\x39\x04\xc1\xc1\xe3\x69\xfa\xba\xed\xba\x13\x20\x14\x0d\x62\x5c\xb3\xe0\x69\xdd\x85\xcc\xa0\x71\x88\xee\xcf\x7d\xcb\x1a\x2c\xc2\x79\x1d\x3a\xb4\x39\x0b\x25\x2a\x98\x46\x1f\xe0\xca\xf5\xba\x04\xe5\xfa\x18\x78\xd1\xf9\x92\xc2\xbc\x04\x39\x67\x5e\x24\x2d\x7b\x08\x70\x0c\xd7\xf3\x96\x9b\xab\x54\x45\xe9\x8f\xbd\x22\xf7\x3d\x0d\x3e\xae\x5f\x7a\xc3\x08\x51\x0b\x5b\x16\xf6\x5d\x46\x69\x85\x33\x92\x34\x77\x28\x6c\xbb\x98\x51\x06\x69\xf2\xfb\xc7\x9b\x9a\x3d\x6e\x44\x13\xef\x37\x73\x5f\x3b\x38\x4a\xe9\x25\x58\x35\x51\x29\xce\xae\xbd\x4f\x82\xa4\xda\x66\x45\x85\xe8\x81\x6b\xd3\xd5\x37\x9f\x45\xd8\xc0\xee\x6d\x7a\x4f\xb9\xe9\x0b\xae\x50\xae\x97\xd5\x7c\xf7\xf3\x23\x9c\x16\x55\xf8\x0d\x3b\x0e\xe8\x8d\xe5\xef\x58\x08\xdf\xd4\x67\xc8\xf1\xf8\x64\x1f\x56\x3f\x0f\x2a\xee\xdb\xc4\x76\xa1\xe6\x99\x66\xea\xfe\x5c\xac\x4e\xea\x80\xde\x09\x7f\xf2\x8a\xf4\xac\x0d\x4a\x4a\xe4\x7e\xe2\xd4\x65\x7a\xe4\x8e\xce\xb7\x20\x96\xf4\xbc\xd8\xc4\xfb\x8f\x6b\xfd\xdc\xd7\x99\x1e\x26\x4b\x41\xa5\x92\xfc\xf3\x6d\x27\x05\x14\x8f\xac\x87\xbe\xff\xb3\xcf\xc9\x3c\x18\x38\x0c\xdb\x89\xb5\x70\x76\xeb\xa3\x7f\xd3\x02\x81\x95\xf8\x79\x2c\x8d\x56\x36\x42\x30\x71\x29\x14\xc3\xc5\x7d\xda\x87\xa7\xc8\x2d\xd1\xf5\x02\x68\xf0\xc9\x7b\x05\xb4\x81\xf2\x71\x6d\x7f\xfe\xba\x76\xad\x24\x20\x35\x93\x6a\x0a\x38\xff\xb4\x40\xf7\x31\xe3\x56\x91\xd1\x33\x6c\x39\x23\x93\x45\xc0\x4a\xb0\x93\x42\xd7\x2a\x34\x4c\xc2\x9d\xa4\x0b\x86\x49\x38\x07\x39\xef\x6b\x65\x0e\x53\xb4\xde\xaf\xec\x10\xb0\x39\xf1\x7c\x32\x4b\x77\x35\x11\x33\xf9\x42\x03\x54\x55\x5a\xbb\x55\x40\x8b\x1f\xc5\x3c\xde\x50\xfe\xf5\x06\x68\xf6\x6f\x46\x41\x45\x05\x4b\xf6\xe7\xb7\x9f\x53\x24\xc8\x80\x37\xc1\x1f\xda\xf4\x6d\xba\x12\x7b\x1d\x73\xaf\x65\x31\x07\x58\xe8\xc7\x5a\x5c\x3e\x43\x75\x54\x45\x3c\x55\xe6\x2a\xaf\xeb\xa9\x98\x0b\x25\x97\x03\x1b\x6e\xd8\x43\xe3\xd5\x0f\xe8\x90\x0a\x86\x85\xd7\x17\x5a\x55\x3d\x0c\xea\x5a\x78\x32\x8f\xee\x95\x69\x1a\xe4\x08\x5b\x2e\xaf\xea\xfb\x33\x2b\x36\xa5\xcb\x56\x8c\x0c\x13\x42\xf7\x4a\x81\x56\xb1\x28\x08\xfe\x8c\x79\x7a\xa2\x76\x70\x02\xe6\x0f\x90\x5e\x33\xfd\x7b\xd2\xf7\xbf\x82\xcb\xc2\x9b\x41\x68\xf3\x8f\xeb\xd6\xfe\x03\x14\x75\xf2\xe0\x0b\xce\x57\x73\x63\x8f\x8e\xd5\x83\x7c\x29\x8a\x98\xf1\x1c\xe0\x3f\xbb\xe2\xa9\x8b\xef\x9b\xaa\x7a\x7a\x66\xd8\xf2\x61\x09\xe4\x23\x88\xe3\xef\x55\x13\x75\xf8\x71\x15\xc5\xa0\xed\xec\xf4\xbb\xd3\x42\xf3\x05\x88\xea\x79\x29\x52\xe3\xe2\xa6\x0e\x38\x53\x69\xd7\xd7\x98\x06\xb2\x62\x69\xa2\x55\x8a\x94\x01\x97\x19\x74\xfd\x00\x46\x12\x2d\x23\x54\xe3\x21\x6e\x36\x19\x5d\x96\x2f\x8e\xd6\x2a\x41\x64\x21\x96\x08\x67\x67\xff\x74\x4e\x13\xf6\x42\xe9\xfd\x67\x7f\x76\xb8\xa6\x71\xe0\x60\x24\x71\xe0\xb9\x8f\xac\x86\x3a\x7e\x09\x5d\x2f\x2f\xdf\x14\x4d\x7d\xb6\x17\x8b\x6a\x62\xfc\x26\x0d\x6d\xe4\x78\x2e\x61\xf1\x89\x3d\xd6\x73\x95\x42\xaa\x2a\x93\x81\x95\xe0\x5f\x5b\x22\xbd\xbd\x1c\x6e\xf5\x58\x9b\x26\x07\xf5\x33\xb9\x49\xa9\x30\xa5\xe7\xc2\x99\x2e\x23\xdc\x94\x2b\x7c\xf7\x70\x9a\x13\x4d\xca\xd2\xcd\xa7\xad\x55\xdf\xa1\xd9\x30\x5b\x17\xca\xb8\x73\x8f\x6a\x9b\x78\x5a\x2a\x35\xc4\x54\x60\xe5\x01\x59\xbe\x95\xb0\x15\xb5\x46\xe1\xe1\x43\x5a\xe2\xae\x63\xbe\xae\x90\x2a\x04\x99\xed\x30\x84\xb8\x05\x59\x65\x75\xb8\x97\xd9\xab\x99\x6c\xf9\x18\xd9\x22\x16\x1f\x53\xfa\x77\xea\x9b\xb0\x4e\xcf\x8e\x5c\xa8\xe8\x61\x20\x3f\x7a\x3b\x85\x62\x58\x1c\xaf\x2d\x94\x89\x45\x7d\xe0\xa8\x66\xd7\x0c\x52\xc4\xe8\xbc\x42\x31\xfc\xbb\x0e\x49\x57\x9b\xdd\xce\x35\x38\x7e\xf6\x10\xdc\x83\x6e\xe4\x70\xfb\x2e\x29\x91\x69\x6b\x95\x29\xad\x54\x0a\x25\x8c\x00\x2f\x1b\x5e\x77\x8f\x64\x92\x20\x65\x8f\xfe\xf4\x61\x9d\x83\x68\x05\x86\xcf\xd9\x84\xd0\xe4\xde\xfc\x90\xd4\xf5\xe2\x1a\x09\xf7\x3d\xa1\x94\xc5\x41\x09\x96\x26\x8f\x68\xa6\xac\x3d\x41\xb9\xca\x53\x36\x1f\xb1\x1d\x1c\x33\x41\x8b\x38\x9e\xdf\x8c\x5d\xc9\xdf\x36\x5f\xf0\x4f\x0a\x33\xa3\x2b\xf2\x81\x4e\x05\xbc\x4d\xb9\x8f\x4d\xbc\x25\x78\xaa\xac\x72\xe5\x03\x9e\x4c\x67\xb4\xca\x1a\xb7\x46\xa0\x08\xfc\xe3\xc3\x9a\x72\xac\x83\x4a\x16\x8e\xf5\x4d\x7f\xac\xc8\x0a\x57\x2c\x21\xad\x98\xf9\xaf\x37\x01\x41\xb3\x1c\xf9\xc1\x00\x22\x07\x99\x7b\x06\x0b\x36\x22\xc3\x48\x68\xb7\xbc\xae\xec\xd9\x0c\x93\x12\x30\x10\xc9\x7d\xf2\x44\x3a\x7c\x5a\x84\xcb\x75\xf9\xd4\xd1\xc0\xd1\x9f\xe9\x50\xbd\xa6\x0d\xee\xbd\x06\xc8\x64\xc3\xd7\xea\x48\x62\x53\xc6\x8f\x2c\x2f\x9e\xf6\x4f\x18\x23\xd1\x3a\x4d\x02\xbf\xb9\xdf\xef\x1a\x96\xaa\xb9\xf9\x44\xec\xdf\xef\xd5\x27\x00\xd1\x8b\x4a\x18\xb3\xbd\x0a\xc9\x43\x08\xed\x46\xad\xa9\xa5\xad\x7e\x7d\x0e\x75\x08\x2f\x3a\x96\x9c\x8e\x06\xd4\x0c\x5b\x34\x94\xb3\xed\x5a\x60\x75\xc8\x8f\xf8\xea\x67\x34\x23\x44\xc4\x4b\x1e\x10\x83\xff\xc8\x13\x23\x95\xd1\x15\xe3\xad\x40\xa1\x18\x2e\xda\xa8\x89\xa8\xb4\x4d\x07\x9c\x45\xf6\xb6\xa5\x90\xaf\xb0\x28\x58\xde\x38\x11\x2f\x02\x5d\xee\xbc\xcd\xdf\xe7\xc3\x23\x5a\x64\x58\x57\x40\xac\x99\x59\x3b\x15\x07\x7d\xec\x0b\x71\x14\x47\x5a\x3b\x04\x6d\x5e\xf3\x2e\x73\xf8\x76\xe5\x92\x36\x0a\xc5\x70\x9e\x82\xbd\x30\x83\xb2\x07\xfa\x11\x7f\x77\x66\xb4\xca\x7c\xd7\xbc\x9f\x5b\x94\x99\x15\x31\x4c\x00\x88\xef\x9d\x92\x42\xf9\x01\x3a\x2c\xb7\x4f\xa1\x9d\xbb\x8c\x96\x62\xb9\xd5\xfd\xef\x28\x9f\xde\xa0\x3e\xff\xae\x5f\x6a\x1f\xa9\x0e\x56\x6d\x4a\x40\x8e\x6a\xd8\x71\x19\x63\x39\xb7\x40\x8c\xd1\x57\xae\xe8\xcf\xbd\xcd\x2e\x8f\x69\x30\x2b\xba\x57\x4c\xd4\xc7\x9f\xb5\x17\x46\x69\x85\x04\xc3\x1c\x26\x78\xf5\x46\x05\x41\xc7\x50\x19\x47\xcd\xee\xf2\x67\x2e\x8e\x9f\xce\xcc\x42\x31\xfc\x65\x49\xb7\x33\x72\x7d\x6e\x2f\x24\x40\xfc\xaf\x75\xca\x9d\x3f\x7f\x34\x99\x79\x1b\x14\x27\x22\x4a\x99\xc1\x68\x45\xe1\xa8\xe5\x17\x4c\xb8\x38\x7e\x9b\xef\x2f\x14\xc3\x71\x4b\xf4\x0b\xee\xf3\x76\x98\xb7\x42\xcf\x0d\x93\x11\x21\x2a\x1e\x0b\xc5\xf0\x4b\x83\x81\x67\xd2\x4d\x3d\x6c\x47\x3d\x7a\xd3\x9d\x39\xac\x99\xa1\xb9\x0c\xf5\xc6\xe6\x5a\x47\x76\xa5\x73\x00\x25\xbc\xc2\x89\x3e\xf7\xd6\xdd\xd0\x5e\xad\x40\xcc\x27\x46\x20\xe4\xf8\xc3\x47\x86\x2a\xdb\x12\xac\xae\x13\x33\xb7\xb7\x6a\x5b\x06\x6c\x23\xa7\x2c\x92\xd7\xa7\xb3\x0a\x98\x12\xb9\xd8\x6b\x53\x9e\x41\xaf\x36\xee\x01\x1e\x8d\xb8\x13\x0f\x8f\xd0\xb0\x82\x98\x95\x03\x3c\x20\xab\x7b\xd4\x79\x95\x8b\xe3\x33\xe0\xb7\x86\xcf\xbf\x05\x29\x70\x19\x0d\x3c\x4f\x71\xb8\xc9\x7e\x79\x3f\xfc\xc3\xcd\x94\xd9\x0a\xea\x36\xdc\xb5\x4d\x86\x0c\x07\xf9\xbd\x50\x9a\xe6\x3b\x56\xc9\xff\xbb\x87\x06\x8c\x43\x67\xc3\x2f\x6f\x54\x00\xef\xc8\x37\x51\x2f\xf7\xe0\xcc\xfe\xc7\x43\xc9\x35\x0d\x54\xf5\x8f\xac\x79\x5a\xdb\x3e\x33\x4c\x0d\x23\x70\x49\xb2\x15\xfe\xdc\x94\x91\x4a\x81\xe2\x0b\x49\xc4\xfe\xcc\xcd\xcf\xa7\x63\x51\x74\x9f\x41\x72\x34\xea\x7c\xaf\xd8\x3b\x4c\xd5\xcc\xe9\x8a\x8e\xef\x37\x63\x53\x2b\xbb\x84\xfb\xfa\x62\xf3\x99\x0f\xac\x1e\x18\xd6\x2e\x2c\x74\x37\x96\x95\x09\xa4\x1b\x38\x05\x8f\x08\xc0\x49\xee\x37\x87\xa5\xc0\x4d\x89\xf3\x67\x3f\xb1\x47\x46\x23\x26\x55\xfa\xc2\x8f\x9e\x69\xca\x54\x5c\x74\x1d\x40\xb0\x7e\xd8\x22\xde\x12\x20\xd6\x3c\x93\x00\x13\xa5\x4d\x81\xb1\xf6\x05\x51\x2c\x29\x14\xc3\x3b\x0e\xc3\x59\x5c\xd8\x5d\x2c\xde\xbc\xf4\xb6\xe5\x70\xd3\xc3\x5b\x76\x00\x4e\x61\x29\x2e\x21\x87\xa6\xc5\xcf\x9d\xb3\x29\x2d\xfa\x0a\xf6\x3c\x31\xa1\xfa\xd9\x96\x4b\x44\x4f\xe9\x07\x0c\xc8\x5a\x8f\x2f\xd4\xab\x32\xcb\x02\x89\x78\x68\x6b\x5f\x9c\xaf\x6a\x51\x72\x83\x92\x62\x7f\x76\xd3\x6e\x79\xb3\x7b\x02\xcf\x27\x15\x92\xa2\xfb\x98\x4c\xf3\xdf\xf0\x27\xf9\x03\x1d\xdb\xec\xbb\x6f\x35\x2f\x64\x12\x77\x90\xfb\x5b\xd2\x89\xea\x43\x53\x7b\x41\x9e\xec\xf2\x57\xb5\xd2\x2f\xf6\xd2\x4d\x6a\xee\x5f\xbf\xa0\xc3\x62\xca\x28\x86\x81\xe7\x7e\xa9\x01\x01\x3d\x93\x54\xc4\xd0\x3c\xb7\xf2\xd8\x64\xbd\x4d\x72\x0c\x62\x09\x68\x7a\x3a\x7d\xfc\xa3\x10\x90\xc6\x2e\x29\x63\x9b\x70\xb8\x9d\x3d\x62\xa2\x76\x4e\x9d\x36\xa1\x6b\x92\xfe\xe6\xd7\x1d\xd5\x79\x47\x36\x8e\xb9\xc2\xf9\x6b\x9e\x54\x92\x4a\xe0\x12\xc4\xf1\x63\x9f\x5a\x9e\xde\x96\x77\x0c\x64\x4d\x9b\xbf\x5a\x13\x34\xe2\xb6\x2f\x62\xc1\x40\x1f\x15\x3e\xff\x88\xf1\x7c\x77\xd9\x71\x65\xb0\x86\x1c\x4f\x35\xb8\xc8\x7f\x62\xa1\x36\xa9\x46\x3e\xf1\xa2\x17\x1d\x53\x02\xa6\xdd\x00\xd5\x93\x98\x25\xf0\x41\x82\x42\x66\x34\x91\x53\xe6\x34\xdf\xec\xe8\xa1\x32\x65\x19\xc8\x47\x9e\xcf\xa8\x6b\xf2\x07\x96\x3d\xfa\xea\x28\xbd\xd4\x15\xd1\xef\xa7\x5b\xd2\x2b\x68\x1f\x35\xac\x58\xfb\x22\x1e\xfe\x7d\x69\x7e\x32\xac\xc1\xbe\x52\xe2\xe7\xa7\x89\x15\xc4\x72\xe2\x79\xdc\x74\xf2\x38\x1b\xad\x32\x68\x88\xca\x7f\xce\x2d\x68\x15\x61\x32\x6a\xf7\x54\xad\x41\x7c\x6f\xd2\x09\xb9\x41\x14\xf2\xee\x0a\x93\x28\x00\x0b\xd8\x5c\xf7\xe0\x44\x5a\x96\x83\xc3\x66\xdd\x20\x43\x48\x15\xa7\x56\x06\xbf\x3b\xa4\x01\xa2\x11\xf1\xa9\x66\xe8\xea\x2b\xe2\x36\x75\xe2\xf1\xfd\xec\x96\x13\x0a\x13\xd8\xf3\x88\x27\xf4\x21\xfb\x73\x73\x4e\xb4\x2a\x1b\xb3\x3a\x66\x09\x4c\x3f\x3b\x3b\xaf\x66\x04\x0f\x3b\x42\x0a\x60\xcb\xd3\x9a\x4d\x77\xc0\x88\x57\x26\x86\xd0\x0a\x85\xdd\xd1\xa7\x9f\x4c\x1f\x22\xe2\x79\x81\x90\x83\xca\x1c\xee\x52\xff\x66\xd2\x62\x44\xff\xf4\xf7\xe6\x48\x91\x92\x7b\x55\xaf\xe3\x92\x50\x37\xb1\x70\x95\xf8\xc4\x46\x5c\xf2\x31\xfb\x9e\x07\x75\x12\x1d\xb8\xf8\x83\x58\x66\x6f\xe7\x68\xe5\xe3\xeb\xa1\x72\xb3\x52\xa4\x5b\xd1\x23\xe1\x9f\x9a\x4c\xd4\xa4\xd7\x71\x2f\x66\xd0\xfa\x7c\xfe\x41\xc5\x45\xcb\x47\x25\x62\xc5\xc8\x9b\x39\xdb\x15\x5d\x23\x6a\x97\xc0\x88\x2d\xec\xbb\xf0\x9a\x74\x4a\x67\xa8\x4e\xca\x71\xef\xae\x77\xcc\x0f\xf4\xb5\xaa\x50\xa1\x45\x8b\x05\x54\xa8\x18\x16\xeb\x42\x16\x1c\x2c\xbb\x6f\xba\x7f\x74\xba\x26\x55\x34\xb3\x73\xef\x1f\xdd\xb4\xc3\xa1\x01\x33\x62\x80\x75\xae\x3e\x41\x86\x5d\xcb\x6c\xa6\x3c\xf5\x8d\xd1\xd4\x09\xb0\x83\x2b\xc4\x8f\xa9\x19\x4f\x1e\x1b\x2c\xc2\x3f\xe8\xec\x66\x27\x3c\x2d\xbf\x7a\x99\x63\x0c\xf8\x23\xc9\xfe\xfa\xb1\x84\x43\x6e\x62\x3b\x9e\xc3\xdc\x36\xa6\x45\xb9\x41\x15\x1c\x1b\x45\x66\xde\x18\xaf\x43\xd4\xcb\x04\xf9\x2c\xd6\xdd\xcc\x2f\x7b\x07\x0a\xb5\xeb\xd7\x73\x31\xa2\x7a\x13\x93\x21\xdf\xa5\xdb\x71\x18\x66\x54\xc0\xc4\x49\xe8\x8e\x35\xe3\x52\x73\x17\x8f\x8b\xb0\xaa\x19\x27\x3b\xe8\x4c\xfa\x54\xdb\x41\x09\x31\x54\x9b\xca\x94\x09\x6e\x7e\xe1\x21\xb9\x5f\x75\x0c\x9e\xd5\xb3\xaf\x8f\x54\x59\xc5\xbd\xa2\x4e\xc8\x8e\x1f\xa1\x91\x1e\x70\x94\x33\x01\x23\x17\xbe\xd6\x9e\xfa\x21\xdb\x85\x71\xe1\xc3\x87\x15\xf1\x8d\xa8\x05\xc5\xbc\xa1\xce\xae\xb8\x50\x78\xd3\x5b\xd8\xd0\x4c\x25\xae\x0d\xe1\xc2\x5c\x87\x18\x55\x16\xa1\x4f\xee\xb9\x42\xa9\x76\xa3\x66\xb6\xc9\xa6\x42\x1b\x61\xd4\x88\x60\x5e\x85\xef\x68\xf6\x7a\xd5\x00\x33\x46\x2c\x0b\xc5\x18\xba\xdc\xf4\x27\xd5\xf9\x63\x2d\xc6\x17\x65\xae\xf5\xe5\xad\x42\x41\x35\xf0\x60\x0f\x36\x67\xad\x96\x07\x4c\x4a\x7d\x65\x9c\x77\x7c\x87\x36\x4d\x61\x01\x6e\x83\x49\xe7\xa0\x77\xd2\x6f\x25\x2a\x27\x45\xbc\x93\xa7\x7e\xb7\x86\xbd\x37\x91\x55\x01\x5d\xa9\xcd\x93\xe0\xc0\x76\x4c\xeb\x02\x45\x94\x19\x42\x9f\x8b\x38\xc2\xdc\xb3\x50\x0c\x9f\x6e\x53\xbe\x0d\x29\x3b\xd0\xfb\x87\x37\x83\x92\x59\xa1\x63\x7a\xd3\xb3\xfb\xc2\xa3\xe9\xf3\xda\x87\xaa\x0c\x97\x24\x25\x6f\xf2\xee\xe1\xca\x7b\xe4\xb6\x4f\xc5\xf0\x57\x65\x6d\xcd\x83\x2c\x8b\xe0\x58\x30\xf5\x37\x9b\xd2\xf1\x12\x1c\x4d\xb9\x18\xfc\xa1\x71\xa3\xf5\xa0\x5f\x16\x70\xfa\xf0\x76\xf0\x7c\x2e\x2c\xe1\xc7\x43\xfb\x98\xff\xb6\x49\xc3\x86\x93\xf5\xfa\xb4\x21\xf7\xb8\xe2\x05\x03\xd0\xa6\xe8\xb1\x1f\x2a\xb5\xca\xed\x9e\xa7\x7a\xc7\xcc\x3b\xa7\x0b\x54\x1b\x04\xfb\x8d\x78\x89\xb1\xf6\xa0\x46\x00\x01\x45\xf7\xa8\x6e\x12\x41\x60\xd1\x98\x8b\x45\xe7\xc9\x69\xd5\xd9\xa9\xbb\xf4\x90\x25\x96\x6b\x22\xe6\xfc\xe1\x78\x92\x40\x7d\x46\x0a\xc5\x70\xd0\x84\x71\x5a\x8c\x02\x5b\x54\x45\xfb\xed\x4a\x53\xd9\xcc\x73\xdd\x03\x54\xb2\x38\x7c\x35\xef\x9c\x1a\xa1\xe8\xdb\x20\xa0\x58\x86\x7f\xd9\x2e\x23\x93\x80\xf4\x70\x09\xca\x67\x5d\x09\x16\x6d\x73\x9a\xb5\x25\x9e\xdc\x0a\xe0\xc4\x25\xc4\xef\x73\x79\xc4\x92\x28\x80\xf0\x7f\x6e\x95\x89\xb8\xab\xab\xad\xb3\x83\x77\x64\x6d\xda\x74\x95\x14\x30\x67\x1e\xf3\x8b\xf5\xb9\xb1\xda\xe0\x9b\x5b\x73\x25\xd4\x8e\xfe\xfc\xb6\xf6\xbf\xc1\xd8\x82\xd1\x73\xee\x8c\x32\x7c\x12\x7e\x4b\x7c\x01\x60\x69\x95\x90\x49\x6d\xe4\xc1\xf0\x3e\x29\x78\x76\xa6\x4f\xe0\x8c\xd9\x6d\xed\xb3\x44\xfc\xdc\x3b\x66\xa2\x4c\x7e\x41\x49\xfa\xf9\xe8\x47\xee\xa3\xf7\x8f\x15\x75\x90\x4d\xb9\x93\x8f\xfe\xc4\xae\x68\xd7\xb0\x96\xd4\x71\xda\x54\x06\xd3\xfb\x07\x0d\x8d\x73\x2c\xe3\x4e\x06\xe1\xe9\x33\xe9\x26\xd6\x69\x2b\xb5\xa1\xb6\x81\xba\x81\x3c\x9e\x98\x54\x73\x86\xa9\x78\x8e\xe4\xa6\x3d\xd1\x04\xec\xe1\xf2\x01\xfc\xf2\xe5\x47\x67\x15\x59\x25\xea\x79\x84\x67\x77\xd0\x4a\xe9\x7b\x4c\x5f\xf5\x19\x06\xf6\xe2\x84\xba\x6a\xb5\x86\x16\x1e\xb0\x4b\xc9\xe5\x4e\x5d\x24\x9e\x1d\x8f\xe7\x4d\x18\x63\xab\xc4\x41\xaf\x69\x25\xf7\xec\x3d\x6f\x24\x3b\x08\xcf\x6f\xf2\x75\xcc\x16\x34\xce\x1a\x2f\xf6\x62\x38\x47\xee\x64\x9b\x82\x20\x26\x51\x59\x0a\x15\xd6\x17\xb6\xa5\xff\x76\x15\x95\xfb\xcc\x06\xd6\x54\x44\xbb\xe6\x0a\x7f\xe6\xe8\xe2\x20\x8e\xde\xdb\x71\x5c\x33\x13\x27\x72\xc5\x90\xf9\xfc\x11\x8d\x62\x62\x5a\x00\xcc\x49\x3f\x87\x5d\xe3\x53\x00\x7f\xbe\x78\x44\xa0\xbb\x90\x39\xbd\x11\x8e\xce\xf5\x86\x49\xa3\x97\xdf\xf4\xc3\xef\x3b\xa2\xc1\xd6\x63\xab\x7f\x3e\x77\xe1\x85\xc4\xfb\x8e\x24\x4f\xcc\xa1\xa5\x66\x86\xcb\x36\x5d\x69\x8c\xfa\x48\x34\xee\x8d\x97\x5a\xb5\x77\x62\x89\xf4\xd4\xb6\x1b\x62\xec\x9c\xd9\x6d\x73\x9a\x45\x51\x9f\xd4\x19\xe5\xbe\x49\x2d\x21\x50\xa5\x6f\x8d\x4e\xae\x97\x35\x64\x8d\xda\x36\x66\x1e\xdf\xf8\x85\x0f\xcc\xd7\x0f\x19\xb7\xd3\x14\xdc\xb2\x53\xd9\x71\x6a\x6d\xd8\x36\x35\xfd\x21\x0a\xc5\x70\xb2\x06\xf2\x62\xf6\x8c\xb6\xce\x59\xe2\xdd\x9c\xd5\x60\x6b\x16\xa9\x24\x0e\x6e\xd9\x1f\x8e\x18\xa6\xc4\x43\xc2\x51\x74\x5f\x99\x90\x80\x87\x71\x60\x25\x81\xfb\x09\xdd\xd6\x9a\x54\x28\xb3\xa5\x4b\xb0\x90\xd0\x11\xa9\xc4\x73\xc5\x76\x2b\xf3\xd2\x63\x6a\xd9\xe7\x32\x22\x54\x13\xf2\x73\xee\x19\xab\x68\x05\xe1\x9a\x2e\xfd\xf5\x65\x5f\x07\x23\x06\x0e\xf8\x96\x66\x2e\x7f\xec\x4a\xa5\x02\xe1\x16\xff\x85\x6a\xe0\x14\x7a\x09\xb6\x84\x9c\x48\xee\xed\x5b\x34\x0b\x07\x4a\xfd\x12\x8a\xa1\x17\x7c\xb0\xf6\xb2\xf6\x07\x7c\x54\x15\xd6\x36\x1f\x6f\xd7\x6d\x37\x90\x15\xd7\x3f\xf9\x1b\x77\xeb\x88\x0d\x0b\xad\x17\x70\xbe\xf0\x4b\x9b\x35\x50\xa6\x60\x57\xc4\xff\x3e\x74\x4f\x93\xb2\x28\xf1\xb8\x15\x17\xaf\x1d\x7e\xb7\x16\x0a\xba\x9b\x08\x72\xaa\x4a\x30\xf8\x62\x59\xdb\xe8\xd4\x2c\xd4\x96\xfc\x58\xf6\xd0\x63\x97\xa9\xbc\x61\x03\x17\x30\x62\x4e\xec\x09\xfd\x5f\x0f\xeb\xc8\x54\xe2\x89\x4f\x73\x54\x19\xd7\x61\x2c\x9e\x5d\x7e\xf9\x39\xd9\x70\x57\x90\xc1\x1d\x05\x62\x04\x81\x21\x14\x30\x7b\x11\x81\x5d\x7f\xcf\x29\xf9\x1f\x73\x85\x49\xb1\x9c\x89\x4e\x4d\xc7\x59\xdd\x55\x2e\x86\xeb\x72\x7c\xc9\x07\x97\x4e\xd3\xfe\x39\x2e\xce\x05\x37\x40\x2f\xf4\xdf\xf3\xa0\xe6\xf0\x4d\x70\xe0\x63\x27\x6a\x67\x63\x92\xfe\x67\xe6\xa9\xed\xa5\x41\xa3\xb6\x44\xf8\x2d\xb4\x6d\x52\xe6\xe4\x16\x05\x8f\xc3\x59\xfb\xd4\xff\xde\x67\xb4\x12\xe5\x36\xfe\xa2\x57\x8d\xd7\xad\x73\x2d\x82\xa1\xb6\xcc\x7e\xb0\x2e\x8f\xbb\xa2\x99\xf0\xde\x5d\x4d\x56\x29\x16\xc0\x14\xf9\xc8\xe3\xdf\xb3\xea\x7c\x83\x21\x4e\x53\xcc\x7e\x77\x82\x82\x3f\x4c\x44\x32\xb3\xf6\xe2\x71\x5a\x5f\xe4\x54\xd3\xd4\x86\xdc\x92\x7b\x61\xf0\xb0\x90\xf4\x60\xab\x87\x38\x52\x1e\x6c\xa8\x3e\x29\xa5\x5c\x86\x44\xae\xe1\xaf\x78\x44\x08\x69\x91\x32\x88\x21\x97\xb2\xca\x0a\x8c\x78\x7c\xed\xdf\x9f\xfd\xf3\xf3\xe9\xda\xa1\x82\x11\x97\xf1\x50\x70\xd3\x99\xff\x06\x67\xdf\xc2\x4a\x18\x85\x36\x05\xde\x3f\xdd\x37\x22\xd5\xdd\x2e\x9a\x5a\x2c\x14\xc3\xac\xe2\xb0\x59\x09\xec\x12\x68\x1c\x7e\x62\x93\x96\x67\xa8\x65\xd1\x5e\x21\xfb\xf0\x7f\x67\xd3\xfd\x40\x1d\xf5\xb8\xa8\x81\x71\x0a\xc5\xfd\x8f\x7d\x43\x45\x4c\xf1\x01\x42\x17\x1e\x1e\x94\xfe\x31\x3a\xb9\x1c\xdb\xd8\xc9\x1f\x1b\x36\x5e\x54\xa6\x41\x23\x4a\xfc\xa7\x1f\xe6\xdf\xbb\xb0\x88\x6b\x84\x10\x0f\xfc\x63\xd2\xdf\x2b\xb3\x4b\xf1\x47\x45\x46\x4d\xf8\x44\xd7\x2e\xd0\xc2\xb9\x19\x85\xa5\x78\xb4\xb8\xe7\xa0\x62\xbf\xe8\x61\x06\x42\x0d\xa6\xd9\x94\x7f\x0a\x62\xe0\x3b\x78\x9a\xd4\xe8\xe0\xf0\xa4\x28\xee\xc6\x14\xc8\xec\xe0\x67\x35\x54\x72\x74\xbf\xe2\xad\xe6\xf5\xab\xb5\x41\xa7\x8d\x9d\x32\x27\x91\xc5\x25\xe7\xee\x89\x52\x87\xc5\x46\x84\x2b\xf7\x37\xbf\xc0\x5e\x53\x83\xf3\x70\x94\x14\x65\x3e\x12\xac\x31\x3e\x1a\x9f\x28\x3f\x27\xb1\x5d\xea\xa5\x4c\x5e\x7f\xf0\x58\xba\x4b\x63\x41\xfc\x73\x5f\x69\x53\xbc\x5b\x65\xe9\xd5\x9f\xef\x79\x46\xde\xcc\x2e\x2e\xe0\x6f\x82\xe5\x40\x7f\xe6\xc4\x43\xad\x6a\xb2\x59\x17\x10\x1c\xc7\xa7\xf7\x29\x76\x75\xc4\x59\x17\xc4\xb2\x7b\xff\x7a\x6b\x32\x94\xe8\x43\x4e\x22\x61\xfa\xb8\xee\x0b\x09\x8a\x1f\x90\x21\x1e\xde\x2c\xae\x17\xed\xb5\x52\xa0\xc1\xf7\x74\xa7\xc7\xb4\x1e\xe0\x56\x9b\x56\x84\x79\x2f\xaf\x8a\x6d\x94\x01\x42\xbd\x73\xac\x52\x07\x58\xd8\xe3\x82\xa1\x32\x86\xfc\x61\xaf\x86\x55\xc6\x9e\x27\x11\x2b\x73\x6e\x57\x84\x29\x90\xcb\x05\x87\x04\xc8\xf9\x4b\x1d\x82\xf9\x09\xb2\x86\xe2\x81\x7c\xf6\xad\xb4\xe7\x1a\x65\x3e\xe9\x1b\xa8\x4e\xcd\xdc\xf8\xea\x90\x5e\x65\xcb\x54\xec\xcf\xf7\xee\x4d\x1f\x20\x8b\x3a\x65\xea\xa8\x24\xbd\xaf\x9b\x0a\x5b\x9a\x38\xd4\x30\x31\xe7\x06\x8d\x59\xab\x69\xf1\x60\x1f\x33\x26\x5d\x82\x7f\x79\x5a\x15\x4e\xb6\xb0\xc1\xe1\x13\x3b\x4e\x6a\xe0\xc1\xc0\x07\x02\x47\x4c\x47\xff\xce\x73\x29\x76\xbb\xb0\x50\xb8\x79\x98\x0a\xc0\x12\x2a\xa7\x5c\x2d\xea\x99\xcb\x9b\xc2\x31\xf5\x48\x3d\xc6\xb3\xbc\xd2\xa6\xc1\xe1\x84\xdd\xb5\x54\x9a\xf9\x8a\xdb\x74\x31\x69\x2f\x97\x72\xc9\xfb\x37\xc8\x71\x10\x22\xd1\xb7\xce\x7c\x24\x7f\x89\x5a\x4f\xf1\xdf\x70\x31\xd3\x60\xad\x12\xd7\x12\x63\x40\x2f\x38\xa1\x18\xe9\x12\x61\x43\x39\xfa\x5d\xb5\x2b\x2d\x3b\xc8\x05\x93\xc9\xfc\xf0\x57\x64\x19\xdd\x43\x4d\xe4\x38\xd8\x13\x52\x44\xf9\xab\x16\x0a\xbd\xc9\xc0\x11\xce\x2a\xff\xb8\x45\x9a\x60\x00\xa1\xc1\x6f\x46\x4e\x2e\xdb\xab\x4a\x74\x75\xb5\x17\x8a\xe1\xda\xa7\x01\xa1\x73\x13\xac\xeb\xc0\xef\x20\x7c\x69\xc2\xc8\x04\x65\xa0\xec\x21\x73\x6f\xad\xd0\x26\x70\x8c\x71\x14\x1c\xc0\xa9\xb6\x5b\x8a\xe6\x46\xec\x20\xa3\xc9\x63\xb8\xd4\x47\x3e\x15\x95\x41\xee\xd0\x69\xf8\xeb\x0b\xb1\x55\x25\x81\x2d\xf6\x74\x97\x3e\x37\x5a\xfb\x19\xa3\x86\x85\xd3\x4b\xee\xc1\x09\x7a\x43\x64\x59\xa8\x8a\x85\x88\xc7\x0a\x4d\x77\x8b\x05\x56\xec\x39\xb4\xfb\x96\x26\xeb\x5b\xf8\xec\x80\x7c\xdf\x76\xdf\x25\xf1\xc3\x73\x5d\x51\x5c\x56\x62\xed\x16\xe4\xfa\x42\xc1\xbb\x72\xab\x12\xc6\xca\x75\xe4\xf8\x5c\xe7\x25\x7c\x6a\xa3\xb6\x28\x76\xb1\x23\x1a\xcf\x09\x47\x9a\x8c\x5b\x8d\x9a\x27\x6e\x48\xf6\xeb\x9a\x38\x92\x8d\x88\x25\x5a\x82\x1d\xcf\x09\xe9\x0d\x4b\x18\x3d\x8d\x18\x94\x8c\x49\x4a\x7c\xad\x10\xbc\x35\x41\x3b\x74\xc2\x63\x02\xf1\xcf\x1b\x2f\x8a\x3a\x7a\xe4\xe1\x40\x25\xe0\xef\x35\x45\xff\x1b\xd7\xea\xdd\x33\x36\x88\x07\x4f\x2f\x7c\x20\x2f\x9b\x9a\x0a\xa3\x8e\x9f\xe8\xdb\x6c\x5b\x20\xc3\x9c\x4f\x9b\xa4\x7d\xfb\x73\x77\x4a\xf6\x76\xa5\x12\x7d\x8b\x07\xb6\xa6\xeb\xad\xe9\x73\xe6\xcc\x8a\xcb\x95\x49\x9a\xf9\x58\x35\x70\xf8\x51\x09\x7f\xa0\xad\x1a\x2a\x88\xdb\x1f\x44\xff\xf4\xf2\x34\x5d\x57\x5e\x70\x85\xc4\x89\xd9\x33\x5e\x36\xc9\x75\x3e\xa0\xe5\x6f\xf2\xa9\x47\x15\xd9\x3c\x64\x97\xb1\xe7\x81\x69\xdb\x67\xef\x1b\xa5\x8a\x57\x04\x7e\x0c\xc0\xf8\xda\x85\x8a\x57\xa4\xef\x53\xe6\xe0\x06\x10\xd9\x96\x69\x80\x15\x9b\x52\x1f\x3c\x4d\x97\x29\x16\x25\xeb\x49\x94\x99\x79\xdf\x3e\x42\xce\x22\x20\xa9\xd8\x88\xef\x2d\xa2\x5f\xf6\x01\x0d\xe7\x67\x82\xb8\xa3\x10\xb1\xfe\xaa\x7b\x85\xf2\xa3\x51\x0f\xa0\x27\xa3\xea\x30\x18\x7f\x5a\x94\xba\x26\x18\x1f\x84\xbb\xfa\x26\x6b\x11\xb7\x4c\x4a\xfc\x6a\x34\x37\xb0\x6b\x2e\x80\x1e\xbd\x5b\xd0\xfb\x9b\xc9\xfd\xf7\x8d\xd3\x4f\x8a\x8c\x75\x30\x32\xe9\x5e\xa2\xe7\x05\x4e\x0b\x48\x44\xf0\x3e\xf8\xb4\xc4\xb8\x30\x5c\x8a\x01\xc8\xfd\x99\xb3\xf9\xa4\x2d\x75\xb8\x24\x03\x6f\x30\x66\x9c\xd5\xf5\x83\xa2\x46\x0d\x72\xc5\xcf\x2c\xc5\xa6\x8d\xba\x05\x0b\xd7\xc1\x1a\xec\xeb\xe7\x92\xdb\xd2\x36\xa3\x3d\xfa\x54\xc7\x4f\x6a\x55\xa7\x85\xb8\xba\x07\x57\x75\x5a\x33\x56\x36\xc4\xdc\x1b\x97\x63\x65\xde\xea\x92\xef\x8f\xf8\x1e\xb6\x2a\x85\x62\x68\x29\x5e\x9c\x89\xe0\xd6\x25\xc2\x03\x90\xe1\xa8\xf9\xf1\xe1\xd1\x45\x5f\xf5\x1d\x3d\x9a\x31\xe9\x47\xf7\xde\x67\xc7\xa8\x35\xf3\x4d\x37\xad\x9c\xba\x9c\x3a\x38\xfe\xde\x2b\x0e\xa7\x9f\x34\xb0\xc1\x11\x23\x56\xac\x03\xf0\x81\x3c\xd4\xf7\xcb\x10\xb7\x73\x0d\x5b\x36\xc8\x36\x8d\xd6\x13\x71\x16\x0e\x42\xda\xb6\x57\xa7\x28\x38\x9e\x54\x89\xcb\x5d\x73\x7b\xf2\xbc\x0c\x04\xaa\x36\xf7\xfc\x4d\x45\x16\x59\x51\x87\xfb\x55\xb9\x51\xc8\x46\x17\xae\xd0\x00\x5c\x33\x05\x80\x2b\x73\xcd\xd8\x16\x75\x29\x62\x70\xd8\x01\x8f\x92\xcf\xc1\xfa\x67\x05\xb5\x88\x5f\x0a\x58\x13\x1c\x37\xf7\xf6\x83\xc9\xe7\xeb\x98\x19\xe5\xae\xc1\xe3\xf5\x0a\x1c\x00\xb1\x10\xd0\xbf\xff\x8c\x0e\xc4\x87\xa9\x00\x94\xdb\xbf\x1f\x96\x0c\x11\x29\x9e\xa0\xd4\x7c\x9b\xc6\xaa\xfc\x92\x32\xa9\x93\x32\xe0\x7a\x33\x4f\x2c\xd5\x14\xcd\xa8\xef\x5b\x89\xd2\xd0\xe1\x9e\x81\x6d\x4e\x4b\xc9\x68\xc5\x49\x66\x9e\x65\xee\x95\xd4\x9f\xe9\x2b\x43\xe1\xf9\x31\x21\xc9\xe4\xf9\x0d\xde\x1e\x65\x3e\xde\x73\xb9\x96\x14\x7a\x38\x72\x41\x4c\xe0\x73\xdd\x63\x65\x75\xc8\x41\x4d\x88\x38\xe0\x06\xbd\xf8\xc0\x15\x4d\xcd\xac\xd8\x63\x8a\xfb\x62\x9e\x91\xbd\x00\xb6\x5d\x8b\x36\xf0\x00\x9a\x8c\x3f\xdc\xa1\x5d\x95\xc0\x29\x27\xcd\x77\xe9\x8c\xae\x2d\x81\x38\x6d\x99\xd3\xe9\xf9\x7a\x69\x7f\x59\x9f\x23\x3a\xb1\xf0\x67\xf8\xf6\x52\x05\xfb\x18\x5d\x16\x1f\x31\x30\xff\x3c\x38\xa9\x69\x6a\xa2\x76\x31\xf8\x31\x51\xf8\x12\x0e\x31\x04\xe1\x9a\x7c\xfe\x6c\x3a\x81\x06\x4e\xf4\x5d\xb9\xdb\xef\xbf\x6a\x53\x18\x8f\x3b\x09\xe2\x18\xf8\xf8\xc9\x97\xb4\x3d\x86\xc9\x30\xe6\x40\xd6\xb8\x66\x18\x7e\x58\xdb\x59\x32\xe2\x18\xc4\xb5\x62\xb2\xe8\xcd\x53\x54\x21\x6c\x21\xe0\x93\x9b\xab\x2c\x26\xb8\x40\x42\x32\x28\x19\x3a\x56\x41\x20\x4d\x6b\x9f\xd5\x15\x7d\xca\x9c\x93\x3e\x57\x55\x86\x9c\x64\x76\x97\xf9\xf1\x5e\x75\x41\xef\x32\x8a\xc0\xda\xe5\x73\x3b\xc7\x2b\xc5\xa4\xef\xdb\xc8\x69\xc2\xd7\x66\xef\x78\x40\xd9\xd5\xb9\xb1\x49\x54\xe6\x33\x0b\xe4\x86\xb8\xd7\x6c\xbe\x69\xe3\xcf\x27\x3a\xd9\xab\x8a\xca\x66\xf4\x92\xb1\xb0\x2d\xfb\x30\xc3\x25\x07\xd7\x91\xa2\x6a\x7e\x48\xe1\x07\xe3\x4a\xe0\xf1\x8e\xbc\xd6\xa6\x2c\xe0\xf9\xd2\x3c\x2a\x95\xbe\xdd\xd7\x2a\x65\x7f\x54\x84\x5c\xf8\xa0\xe2\x30\xca\xd7\xde\xc5\xf0\xb2\xad\xda\x91\x60\xb4\x4e\x38\xcf\x88\xd7\x7b\xb3\x6f\x81\x12\xa9\x27\xb0\xa1\x6c\xce\xce\x3b\xac\xca\x84\x39\xb1\xfd\xda\xab\xa3\x13\x14\x96\xc9\xed\xe1\xe2\xf0\xf5\xd4\x06\x85\x8f\xe7\x23\x16\x3b\xbc\xfe\xc7\x8b\xa3\x94\x18\x5f\x49\x74\xc3\xc2\x23\x0b\x54\x43\x45\x9b\xc2\xd9\xcd\x7e\x7c\x07\xc0\xb4\x39\xaa\x98\x37\x65\x15\x4e\x57\xee\xcf\xe5\xc6\xa6\x93\x57\xaf\x49\x6d\x81\x5d\x6a\x9b\x29\x1f\x90\x40\x6f\x72\x41\xe1\x2d\xa3\x14\x98\x32\xa5\x65\x01\x55\x0e\xef\x7a\x47\x99\x62\x51\xab\xa2\x80\xe6\x7a\xd6\x2b\xa2\x06\x51\xf8\x0e\x3f\x72\x4a\x80\xf7\x4c\x64\x11\xc5\x06\xfc\xf1\x3d\x92\x93\xdd\xc3\x87\x63\x6f\xad\x56\xca\x11\x9f\x21\x1f\x57\x13\x15\xe3\xcc\xf7\x6f\x51\x3c\xa0\x48\xa9\x14\xef\xbe\xd7\xb7\xeb\xf2\xdc\xb6\x6b\x61\x3f\x56\x71\xbc\xfb\x3c\xfc\xf5\x45\x88\x59\xaa\x60\x67\xf6\xd7\xcb\xb5\x49\x35\x46\x65\x81\xac\x0b\xb7\x4d\x82\x7e\xa0\x97\xb2\x1a\x97\x84\x84\xfe\x74\xec\x03\xf0\xbb\x16\x33\x8a\x3d\xac\x8c\x1b\x2a\xa7\xd3\xf7\xb3\x46\x3d\x5a\xa7\xe0\xb6\xb5\xe2\xfa\xfe\xec\x73\x8a\x3e\x82\xa0\x37\x03\x9c\xe3\x0f\x8f\x25\xcc\xc6\xce\x8e\x42\x31\x7c\xe4\x6d\x4d\x7f\xae\x8c\x6c\x4f\xa3\xf2\x0e\x7d\xf0\x4a\x3d\x18\x54\x29\xa3\x65\xa7\x11\x2f\x85\xc3\x45\x6f\xc1\x71\x8c\x8a\x1d\x0e\x36\xc9\xbd\xd3\x21\x6f\xfc\x64\x9f\x83\x81\xfa\x73\x1f\x7d\x53\xd3\x95\x41\x35\xec\x99\x1a\xdd\xe3\x57\x37\xc9\x22\x03\xb1\xa8\x42\x2a\x14\xc3\x45\xef\xa8\x76\xe5\x80\xf1\xe1\x54\xd0\xcc\x9c\x79\x4d\xc6\xf0\xb1\x69\x92\x40\xeb\x14\x86\x5e\xaa\xe5\x2f\xc4\x62\x7d\xc6\x17\x92\x1a\xbd\x30\xa7\xb3\x50\x0c\x7f\x9f\x55\x7c\xf2\x3c\x1f\x3a\x0a\x18\x45\xcd\xd9\x2f\x3f\x57\x2f\x62\x0e\xe0\x1e\x5b\x9e\x49\x3f\x1c\xec\xf8\x98\xb9\x8c\x78\x0a\x07\xf2\xfc\x78\x1d\x51\x47\x63\xc7\xa5\xdc\xf7\x06\xa5\x7f\xde\x0a\x0c\xe4\xa5\x9f\x48\x26\x6b\xa6\xd3\x8e\x17\x94\x38\xc6\x09\x5a\x6c\x1e\xd2\x7f\x75\x48\x9f\xcb\x9b\xa4\x44\x14\x59\xa4\xb1\x4f\x8e\xd1\x4b\x1a\x0f\x97\x13\x44\xe0\x96\x0a\xdc\xe2\x8f\x45\x51\x5b\xc1\x5a\xf4\xe7\x5e\xae\x0c\x15\x1d\x84\x49\x0c\x2e\x4b\x35\xf8\xb9\x64\xd4\x64\x90\xd8\x43\x21\xbf\x22\xfd\x3d\x62\x33\x9c\xb9\xaa\xbb\x7b\x69\xa4\xf6\xaa\xa6\x4e\x2c\x14\xc3\xf7\xdf\xa0\xb9\x8a\xc4\x2c\x48\xb8\x1b\xf7\xeb\x56\xcb\xd8\xf1\xc4\x1e\x63\x65\xb7\xce\x1c\xac\x08\x78\x26\x27\x7d\x97\xaf\x85\x53\x59\xa1\x2c\xb0\x79\x8b\xf3\xeb\x71\x0a\xce\x89\x54\x9d\x04\x0f\x96\x79\x6c\x67\xab\x4a\x9d\xf4\xa8\x13\x25\x5a\xfe\x43\x63\x0f\x8e\x91\xb4\xab\xe6\x3e\xaf\x65\xb1\x56\x2c\x3a\x65\x86\x35\xb1\xa4\xdc\x21\x0d\x05\xc2\x28\x12\x47\xb0\x73\x34\x2c\xe0\xae\x63\x76\x33\x64\x69\xd4\x39\xad\x37\x0d\x5c\x37\x81\x71\xe6\x3f\x75\xab\x22\xe6\x6e\xb2\x86\x67\xc1\x99\x9c\xf7\xba\xa4\x8e\x73\x58\xde\x35\xf3\x35\x37\x0d\x5c\x65\x48\x75\x8e\xcf\x7c\x74\xe3\xa8\x54\xc0\x20\x46\x60\xf1\x5a\x2d\xfb\x83\x57\x95\x49\x96\x13\x54\xc1\x7b\xf4\xea\x5b\x00\x1b\xb0\x2c\x2a\xb3\x9a\x1e\x89\x7d\x02\xe6\x07\x88\x30\xcf\x45\x40\xd9\xfe\x72\x9b\xd6\xad\xfa\x8c\x3a\x5c\x31\x14\x4a\x8e\x27\x4a\xc3\xa5\x81\x66\x3c\x11\x09\x07\x2b\xee\x47\x0e\xb0\xf2\xe7\xcc\x87\x03\x19\xc5\xcf\x02\x24\xb9\x1f\xdd\x2d\x01\x41\xf0\x07\xf5\x4f\xb4\xf9\x80\x32\xc7\xc3\x1c\xf6\xc4\x03\xe5\xa7\xb7\x27\xb4\x92\x2a\x6b\x52\x60\xca\x0f\xa9\x8b\xda\x35\xb0\x6d\xee\xfe\x1f\x9e\x0a\x75\x44\x87\x61\x22\x56\x4d\xca\x96\x92\x06\x46\x30\xa9\xe7\x8b\xa1\x6f\x72\xd9\xde\xbd\xb6\x45\xa5\x72\x83\x54\x62\xa1\x18\x3e\xbb\x49\x67\xaf\xc6\x68\xe3\xd8\xa1\xe5\xd8\x05\x3a\xe8\xd4\x60\xa4\x42\x0c\x1c\x87\x9a\x7f\xd7\x84\x3a\x84\x9c\x75\x31\xbc\x10\x3c\x9a\x0a\x2b\x31\xaa\x06\x96\xd5\xec\x3a\xd1\xb3\x43\x19\xbc\xf2\xc9\xb2\x81\x1d\x80\x38\xcd\x1d\xa6\x51\x62\xda\x6c\xb8\x7f\x77\x6c\x57\x4c\x6b\xe2\x79\x60\x8f\x2a\x73\x2a\x38\xd9\xd9\xd9\xa7\xd4\xed\x4b\x0c\x37\xff\xc1\xf2\xb4\x98\x5a\x03\xd7\x38\x23\xd5\x29\x05\xac\x1a\x45\x6f\x38\x05\x0f\x1d\x93\xbd\x9d\x8d\xab\xa8\x60\x63\x56\xc5\x1c\xb4\x9d\xbf\xf8\x01\xad\xc8\xe0\xcb\x32\x01\x84\x1e\xdb\x2a\x09\x2c\x2a\x0a\x3c\xbc\x56\x1b\x9d\xac\x0b\x10\x14\xd6\xa2\x57\xb8\x62\x26\xbc\x77\x5a\xa9\x70\xd0\x68\x31\xdc\x36\x6d\x8c\x6c\x12\x9b\xe1\x0a\xb4\x3b\x11\xdd\x36\x89\xad\x02\xb8\xb2\xf3\xcb\xd0\x1f\x63\xa7\x4e\x18\x75\x38\x05\x29\x7a\x24\xf5\x97\x25\x84\x93\xdb\xec\x96\x19\xaa\x56\x45\x91\xf1\xec\xbb\xb0\xae\x61\x60\x98\x9c\xf9\x6e\xdf\xc0\x9b\x46\x71\x7d\xe7\xcd\xd4\x66\xea\x84\x21\xc3\x82\x69\x63\x78\xd7\x49\x65\x74\x57\x65\x98\xab\xa0\x44\x3f\xd5\xf5\xb0\x5c\x69\x78\x26\x0d\x7c\x75\xa5\x91\xaf\xf9\xda\x60\x97\xcb\x3f\x39\x5c\x8a\x48\x94\xf5\x7f\xf7\x6a\xfa\xfd\x95\xfc\xea\x80\xea\xe9\x1b\x56\x8f\x50\x67\x37\x96\xf0\xe2\x26\x67\xe5\xc2\x12\xd7\xe1\x85\x66\xfa\x36\x03\x9a\xa4\x63\x0e\xff\x6f\x2e\xda\x72\xa9\x52\xa2\x61\xe2\x94\xa2\x1b\x07\x71\x6e\x9d\xab\x01\x86\x7d\x62\x07\xa2\x60\x8d\x13\xe3\x97\x6f\xbf\x4c\x5d\xa5\x18\x8c\x40\xc7\x06\x07\xf0\x80\xb6\xc0\x2d\x63\x1b\x23\x07\x60\xd4\xc5\xfe\xcc\xee\x43\x69\x48\xb9\x81\xa2\x3f\x4d\xbc\x14\xca\x3a\xbb\x67\xad\xfc\x13\x3d\xc8\x45\x29\xbe\x41\xb6\xeb\x02\xe5\x3e\xa0\x84\x32\xa9\xf4\x82\x7c\x96\x4a\x1d\xe2\xf1\x78\x5b\x08\x81\xbb\x70\x9d\x65\x15\x56\xfa\xa0\xd2\x14\x17\x02\x97\x4e\x82\x09\xd7\xf5\x9e\x87\xd7\xc7\x99\xeb\x0e\x5f\xc3\xdb\x38\x15\xcc\x1c\x8c\xb5\x22\x62\xf4\xd3\x8a\xc7\x15\x62\x65\x9c\xd2\x2b\xcc\x8c\x9e\x07\xb9\x72\x46\xc7\xb4\xce\x99\x5c\x18\xaf\x77\x92\x08\xe2\x8c\x91\x3a\x17\x09\x0e\xbf\x7b\x42\xbe\xc7\xe9\x33\xb9\x76\x6b\xf4\x14\x7f\xbd\x67\xa8\xf2\xab\xf9\x5b\x0c\xda\x35\x31\x67\x62\x59\x84\x3a\x88\x30\xcc\x29\xa0\xe1\xe3\xab\x34\x9a\x74\x54\xa3\x9a\x85\x0a\x8b\x97\x53\x2b\x26\xc8\x4b\x5f\xc6\x89\x82\x2a\xff\xed\x27\xb6\xea\xd2\x50\x65\xda\xcb\x49\x98\x42\x07\xb1\xa4\x8c\x3e\xcb\xd4\xc6\x9e\x1f\x55\xa5\xe1\xda\xf5\x7a\x77\x5e\x0d\x62\xf2\x6f\xa6\xff\xf6\xe1\x22\x22\x0b\x35\x74\x9e\x6d\xda\x6e\x8a\xbd\xf6\x3c\x97\x82\xfb\x50\xf6\xe0\x8b\x8a\xad\x7d\x54\x87\x72\xfa\xf3\xb4\x03\xd2\xcc\x69\x7a\x54\x4b\x66\xa1\xec\x2b\xac\x34\x4c\x86\x49\xca\xa5\x3f\x37\xf9\x02\x90\xe5\x58\x8a\x3d\x97\x38\xc8\xf3\x9a\xd1\x66\x3f\xd4\x44\x06\x6a\x94\x51\x1b\xa5\x37\xe4\x99\xb9\xb7\x2a\xdc\x01\xea\x38\xa2\xf2\x05\x31\xcb\x7a\xfa\x02\x97\x89\x27\x7a\xe1\x78\xf8\x9f\x1d\x94\x4d\xc7\x41\x8b\xd4\xb1\x45\x4c\x4a\xcb\x10\xe0\x4f\xb4\x8c\x52\x7f\xbd\x0f\x0f\x86\x2b\x77\x3c\xaf\x6a\xf8\x0a\xe5\x88\x8f\x3f\xab\x0a\xa2\x54\x39\xa9\xaa\xd8\x9f\xfb\x9c\xa3\x61\x3c\x5d\x16\xc4\xe3\xaa\xec\x72\x4d\x28\xb3\x4e\x2d\x17\xa7\x44\xd0\x97\xee\xd7\xc4\xa7\xcc\x00\x60\x60\xd9\x8d\x6f\xc9\x00\x32\xa3\xab\x8d\xbb\x81\x67\x4f\x3c\xae\x83\xf0\x6c\x97\xab\xea\x8a\x81\x67\xe6\x8b\x6e\xab\xb2\xc5\x72\x31\x23\xb1\xf0\x68\x76\xc9\xfd\x70\xc1\x96\xb6\x29\xf7\xfb\xd9\x8b\x52\x5a\xf9\x42\xd6\x86\x17\x35\x5f\x79\x65\xa4\x92\x99\x98\xd1\xa8\x04\x7c\xf6\xd9\xbd\xbd\x55\x3b\x68\xcc\xe3\x0c\xe1\x70\xfd\xbd\xf2\x27\x2c\xea\xc5\x13\xcf\xdc\xbb\x17\x29\xf6\x40\x5e\x2d\xc5\x17\xfa\xbf\x07\x93\xdc\x53\xa3\xba\x0f\x66\xf8\xeb\x3e\x95\x9d\x48\x40\xce\x3b\xbb\x7c\x9c\x02\x5b\x31\x6a\xea\x7a\x37\xfb\xde\x52\x3a\x9f\xcf\x6a\x17\xf1\x6e\xd1\x34\xc8\x3a\x1d\x9d\x7c\xa2\x93\x5d\x7c\xab\x26\x40\x49\x30\x2b\x05\x9e\x97\x7a\x3f\xb9\x4b\x2f\x82\x51\x2c\xa7\x71\x45\xbf\x66\x2f\x93\x99\xcd\x26\x9e\x97\xfa\x32\xcb\xce\xc9\x39\x7e\xc9\xa2\x46\x13\x97\x37\xfb\xfc\x2a\x99\xaf\x30\x17\x8a\x87\x42\x3c\xd3\xb1\x5e\x97\xb2\x24\xae\x8b\x7b\x13\xe8\x76\xf6\x22\xed\x38\x53\x83\xd7\xb2\xf1\x59\xcb\xcd\x56\x98\x22\x65\xc2\x73\x3b\x4f\xc6\xe1\x98\xdd\x42\x64\x08\xc7\x6c\xad\x62\x7f\xa6\xe7\xfe\x74\x7a\x29\x31\xda\x0b\x1c\x24\xd9\xac\xbe\xb8\x7d\xb4\xa2\xf6\x12\x30\xa2\x74\xe9\x39\xf3\xad\xe1\x49\xa5\x8a\x99\x58\x73\x64\xae\xd9\x26\x05\x9a\xca\xa4\x0a\x70\x22\xcd\x7d\xec\x39\x35\x7c\xf5\x3a\x75\x82\x7b\xa3\x63\xe5\xf6\x0d\x16\x1f\x13\xf1\x7e\x26\xb3\xf7\x06\xc5\x11\xc7\xe7\x12\x38\x7c\xf6\x92\x5d\xd3\x26\xff\xa1\x4a\x3d\x8f\xb8\xc0\xb3\xdf\xf9\x2c\x4c\x14\x96\xa2\x80\xa9\x22\x1f\x99\x9d\xfb\x75\xd4\x57\x85\x32\x3b\x76\x6e\xfc\xc2\x3c\x19\xe1\x1b\x34\x28\x14\xc3\x2b\x4f\x08\x69\xd7\xd4\xfe\xb4\x65\x70\xfa\xdc\x77\xcc\x4a\x0c\x0e\xc7\xbd\x3e\x41\x99\x2b\x95\x03\xcf\x67\xa4\x79\xfe\x9a\x3d\xbb\x51\x26\xd3\x26\x8c\x63\xbe\xaf\x4f\x0b\xfc\xa0\xaa\x9b\xec\x22\xb0\xf2\x3c\xb0\x4f\xd6\x05\xb1\xbf\xd5\x97\xaf\xbd\x4c\x91\x33\xb3\x70\x35\x45\x8f\xb8\x6e\xf1\x28\xb5\xf9\x33\xb0\x1b\x87\xb9\x95\x0a\xc1\xcf\xab\x71\x17\x9f\x62\x7f\xee\x37\x5b\x47\x8a\x6a\xaa\xca\xb0\xe7\x45\x41\x93\x8f\x8c\x16\xcf\x1d\xad\xbc\x5a\x2f\xd9\x93\xf2\x79\xed\xb5\x1b\xe1\xe5\x7d\xcc\x24\xbc\x8d\xfe\xe3\x09\xb5\x17\x55\x5b\xee\xbf\x8c\xd0\xe4\xd6\x4d\xc6\x1d\x14\xe2\x47\xf9\x9b\x1d\xf0\xe7\x17\x23\x03\x37\x94\xaf\xb1\xe0\x98\x0a\x35\x41\x4e\x99\x02\x8b\x71\xdf\x79\xbd\x4d\xf6\x30\x62\x86\x29\xe6\x23\xe6\x62\xd9\x2e\x72\x4c\xf2\xcc\xd3\xaa\x49\x98\x45\x19\x8f\x6a\xe1\x17\x07\x2b\x05\x6b\xe0\x94\x51\x14\x36\xe3\x69\xd9\xe5\x0f\x5d\x36\xd0\x3f\x12\x20\xc8\xce\xf3\x15\x25\x73\x6a\x71\x52\x76\x31\xfc\xd6\x19\x45\x37\xc2\x24\x46\x0d\xd8\xe1\x87\xc7\x68\x79\x2b\x91\x45\x8a\x39\x15\x5f\x5f\x22\x87\x4b\x1e\xf2\x79\x49\x95\xef\x56\x40\x33\x15\x46\x6d\x39\xa4\x2d\xb5\xa4\xcb\x54\xa1\xd9\x22\xa8\x4a\xb2\x06\xfa\xd0\x51\x99\x4e\x2a\x16\xe2\x33\xc9\xfc\xaa\xe7\xe4\xd1\x9f\xd9\xce\xd7\x2f\x0a\x0a\xa2\x44\x39\xd9\x7a\xd9\x7a\xf9\x93\x0e\x62\xa0\x87\x72\xe3\xa3\x8a\xe3\x25\x46\x65\x4b\x18\x39\x65\x97\x3e\x01\x35\xc5\x22\x13\x11\x26\x0a\xc2\xcd\x5b\xd3\x5f\xda\xc7\x4c\xae\x16\x00\xcd\xba\x41\xf3\x9f\x88\xe2\x11\x62\xe5\xa4\x4f\xea\xcf\xed\x69\x49\x86\xbd\x29\x5d\xd1\xdc\x9d\xe7\xd3\x5d\x12\x1f\xcf\x8b\x35\xf1\x94\x1d\xf2\x61\x76\x0a\x2a\x49\x6e\xea\xfd\xf2\xb6\xc6\xc0\xa9\x66\x25\xb9\xbc\x33\x2f\x9d\xd9\x49\x19\xa3\x44\x58\x78\xe2\x69\xc8\x26\x37\x16\x3f\xca\x6f\xcd\x92\x27\x86\xa7\x9e\x1b\x5f\xd0\x3e\xb7\x73\xac\xfe\x1b\x1c\x08\xc1\x20\x3b\xfa\xd2\xfe\x21\x22\x0c\x3a\xc2\xec\xeb\x8e\x29\xc9\x3a\x6c\x4e\x1b\x17\x59\x7d\x7d\xcb\x48\x27\x05\x21\xb3\xa1\x15\x5d\x7b\x4e\xeb\x96\x7d\xe4\x63\x59\x26\x86\x5f\xdd\x24\xf5\xfd\x02\xd5\x53\xe0\xf8\x3e\xa9\x10\xeb\x35\xc9\xa4\x0e\x7d\x55\x6b\x3b\x6c\xe2\x9b\x5a\x5d\xf6\xc7\x23\x7a\xcd\x82\x1b\x30\xb9\xbf\xf5\xbc\xac\x26\x88\x65\x05\x30\x77\xe6\x39\xfb\x66\x4d\x08\xcb\x37\x31\x61\xd2\x63\xaa\x65\x6e\xfa\x9f\x39\x97\xc7\x46\x0c\x86\x61\xd9\x6b\x14\xc5\x70\x97\xeb\x31\x47\xcf\xe0\xb2\x17\xc1\xf8\xbf\xab\x10\xfd\x37\xff\x79\xb7\xbc\x23\x4e\x54\xc3\xc8\x23\x32\xfd\xb9\x26\xa7\xbf\x5a\x02\xa4\xde\x70\x44\x1e\x79\x93\x00\xe2\xec\xb3\x5b\xa4\x88\x10\x6d\x66\x2b\xbc\xdf\x4a\xa7\x82\x9e\x80\x51\xc0\x2d\xfc\xb7\xe0\xfc\x95\x90\x17\xc5\xc1\x35\xe6\xf0\x38\x7f\x05\xd5\xaa\x18\x0d\x64\x66\x9e\x85\x3b\x42\xaa\x0e\x65\x98\xd7\xdd\x99\x9f\x87\xc2\x9c\x0f\xb3\x12\x75\xd4\x79\xf8\xba\x7b\x06\xda\x93\x03\xc4\xe9\x05\xe9\xf3\x63\xc1\x82\xfc\xd9\xee\xf4\x1c\xb2\x0d\xf6\x73\xf9\x50\x2b\x53\x4d\xca\x62\x76\x60\xe6\x13\x2f\xa7\xef\x67\x35\x40\x7c\x5d\x25\x67\xa8\xb9\xff\x79\x55\x49\x3e\x7c\xc1\x28\x9a\xf9\x9b\x46\x43\x75\xb1\xd2\xa5\x35\xec\xc1\x85\xcf\x59\xf3\x34\x67\x33\xd4\xf0\xda\xe0\x23\xe7\x57\xef\x52\xa6\x25\xa0\xe1\x58\x0c\x5b\xce\x35\xed\x0f\xaa\x81\x68\x5e\x72\x47\x9f\x85\x67\xba\x08\xfc\x10\x72\x7b\x35\x71\x4f\x42\x7b\x51\xb2\x1e\xc8\xdd\x73\x46\x5b\xcd\x8b\x85\x38\x47\x2d\xef\x3c\x2a\xb3\x08\x75\x5d\xea\x11\x9f\xb3\x8b\xb2\x93\x16\x0f\x24\xe8\x03\x7f\x7f\xef\xab\x30\x30\xe1\x82\x47\xdc\xd7\x37\xf3\xe4\x19\x19\x13\x11\xe1\xd6\x8c\xe1\x37\x34\x9a\x05\x2e\x57\xb1\x17\x5b\x5c\x4d\x3c\x93\xae\x36\x91\xe3\x70\x45\xd2\xf4\x7a\xe0\xe5\x94\xa5\x4f\x0c\x03\xbb\x66\x39\x1c\x97\x5e\xe2\x9b\x65\xc6\xab\xa5\xcc\x45\x1b\xe5\xfb\x30\x30\xc3\x36\x75\x60\x65\x35\xa7\x5d\x7b\xf4\x51\x70\x06\x11\xa0\xec\x83\x3d\xda\x97\x0c\xbc\xc4\x3c\xd8\x98\x92\x06\x93\xd8\xd4\x21\x3e\x1d\xc8\x6c\xa1\x3f\xbf\xa2\x4d\x9b\x03\x22\xa7\x5c\xe8\x8d\x6a\x51\xb9\xa9\xbf\x4b\xd8\x10\x2d\x43\x09\xc9\xf0\x4f\xca\xe6\xd0\xc3\x51\x23\xca\x0b\xf1\x45\xaf\x26\x91\xca\x4d\x29\x91\xae\x7b\x5c\xd8\xc9\xc0\x86\x97\x5f\xcc\xe5\x17\x89\x01\x29\xaa\x46\x8d\x7e\xf4\x97\x9e\x7e\x5e\xf1\xf6\x23\x35\x13\x19\x26\xae\x17\x8a\xe1\xec\xd1\x93\xb4\x5e\xc9\xe1\x15\x4d\xb3\x81\x4a\xf6\xab\xdd\xfa\x94\xde\xc5\x0a\xec\x20\x97\xdf\x33\x4c\x69\x6c\xc0\x0e\x32\xf3\x83\x99\xca\xda\xa6\x5c\x8e\x7e\x35\xdc\xe5\xec\x3b\x8a\x92\x54\xf4\x8b\xa0\x8a\x58\x32\xae\x89\x40\xe5\xb9\x84\x21\x43\xd8\x2f\xe4\x66\xb8\xda\x5c\x01\x59\xa4\x14\xc4\x14\xab\xe8\x09\xde\xc5\xd2\x2f\xa9\x4c\xaa\xc4\x17\xf2\x65\xfa\x77\xfa\xfd\x29\x85\xd4\x81\x82\xaa\x09\x75\xc9\xee\x55\xfa\x86\x8f\x4b\x9c\x02\x0d\x2d\x9c\xe8\xe8\xff\x1a\x1d\xc2\x40\xe8\x23\x5a\x4f\x48\x9d\x17\xee\x52\x7a\x51\x3e\x25\x19\x22\xe6\x0a\x99\x6f\x76\xc0\x98\xab\x44\xa2\xe3\xfb\xc9\x7b\x65\x91\xd1\xd1\xc1\x43\xf5\x1d\xaf\x8e\x91\xe2\xb3\xfa\xb8\x36\xdc\x75\x5e\x53\x70\x20\x76\x7c\x91\x42\xba\x42\xa3\xd1\x59\x88\x91\x4a\x23\x31\x29\xea\xee\xd4\xa1\x12\x5c\x82\x83\x27\x46\x28\xf7\x37\x97\xc7\x28\xd3\x72\xab\x52\x60\xb8\x2a\x06\x6b\xd1\x3f\x5f\xf1\x86\xae\xab\xe4\x9b\x38\xa1\xf1\xe5\x4e\xbd\xa1\xe5\x47\xe2\x54\x91\x4b\x19\x96\x95\x4a\xf6\xe7\x3b\xa1\x18\x9e\xdd\x36\xab\x9d\x1f\xda\x43\xaf\x8a\x69\x93\xf0\x8a\x8d\x9e\xd1\x2f\xf2\x3a\x0a\x81\x7a\xd8\x08\x7c\x91\x47\x36\x8f\x4b\xb7\xb1\x1d\x9d\x80\xd9\x73\xa6\xa4\xaf\x70\xe0\x24\x24\xef\xcc\x5a\x05\x8a\xea\xb9\x98\x0b\xba\xe7\x6f\x1a\xaa\x4f\x01\x2b\x7c\xc7\x24\xae\xfd\x8f\x34\x72\x0a\x0a\xca\x00\xa7\x80\x29\xf3\x37\x16\x68\xee\x30\x51\x5a\xf6\x06\xe4\xc1\x3f\xd3\x26\x55\xce\x2a\xd0\x64\x7e\x4e\xb3\x20\xac\x32\xe4\x94\x09\xf5\x62\x08\xef\x15\x4b\x24\x64\xa1\x81\x6a\xb4\x8e\x9d\x1a\x55\xf0\x07\x4f\xb4\xa6\x38\x67\x20\x6a\xcc\xeb\xa4\x83\x2d\xc2\x49\x1b\x73\xe4\x44\xb8\x6f\x22\xd0\x18\xae\xb7\xa2\x66\x74\x72\xd3\xbc\xe9\xe4\xed\xd0\x55\x2c\x41\x25\x42\x95\xce\xf0\xd0\x45\xca\xb4\xcb\x24\x98\x63\x19\x57\xb7\x29\x4b\x5a\xe2\x09\xfe\xe9\x67\x76\x0d\x17\x87\x5a\x61\x71\x67\xbf\x3f\x51\x45\x72\x54\xb8\x18\x62\xf4\xd5\xff\x73\x49\xe2\x03\x6c\x60\x26\xf4\x17\x2e\x3c\x26\xff\xe3\x5e\x13\xf9\x98\xeb\xcb\x84\x7b\xb7\xaa\x23\x37\x01\xb3\xf8\xea\x12\x0d\xc7\x82\x48\x6f\xa2\x1e\xc8\x13\xdd\xc9\x87\x2f\xd7\x93\x2c\x58\xd8\x09\x83\xd0\x3d\xb7\xa4\xdf\x5d\x15\x53\x56\x1d\x58\x42\x68\x89\x33\x5c\x89\x6f\xac\xcc\xc5\x27\xf3\xc5\x93\xe9\x2a\x07\x5b\x1e\x08\x41\x84\xa3\x8f\x0d\x53\x06\x64\x36\xd7\x8c\x9a\x38\x46\x83\x37\x71\xea\x11\x6b\xc4\x18\xc7\xfd\x82\xdb\x11\xd5\x5e\x90\xd7\x26\x1e\x1a\x1d\x63\xe4\x16\x36\xe1\x11\x67\x6f\x97\x67\x43\x30\x71\x52\xa3\x96\xeb\x9e\x6e\x32\xc7\xab\x60\xc3\xb7\x1a\x42\x85\x6c\xc2\x79\xf9\xf3\x68\x00\xff\x91\xcd\x2f\xbf\x4f\xcb\xd6\x76\xe0\x94\x3d\x41\xb3\x4e\x70\x15\xdf\xd9\x96\xae\x75\x89\x90\x26\x0d\xbf\xb1\xff\x7d\xfa\xd7\x15\xfe\x86\xe9\xef\x71\x68\xec\x38\xbd\xf0\x72\x6b\x18\xbb\x98\xc5\x54\x8f\xdc\x5f\x2e\x90\x59\xbf\x1a\x38\x15\xc2\x05\xfa\x2e\xbe\x5f\xd1\xc8\xe6\x21\xa3\xfb\xbc\x02\x35\x07\x19\x97\xfe\xdc\x9d\xb7\xa4\x0b\x0b\x21\x88\x0a\xea\x74\x49\xe2\x38\xd6\x97\xe0\x20\x11\x17\x1c\xfc\xf0\xca\x15\xe1\xc7\x76\xa6\x96\xfe\x36\xe0\xee\xbf\x73\xd3\x14\x15\xcc\x57\x20\x4e\xac\xc3\x66\x34\xcd\x71\xb3\x53\xf7\x25\x5b\x28\x10\xd9\x53\x1a\xce\x23\x80\x2b\x5a\x81\x0d\xca\x90\xa5\x56\xb4\xb3\x40\x0a\xba\xb0\x30\x96\x82\x97\xcf\xbb\x75\xbc\x8c\x22\x33\xba\x66\x15\x8a\xe1\xc6\x27\x5b\x45\x21\x61\xa1\x9a\x49\xeb\xca\xf0\x74\xd8\xbb\x9a\x53\x41\x8c\x59\x05\x4c\x5b\x78\xdf\x02\x85\x22\x8f\x5d\xdf\xe4\x9d\xc8\xd5\x67\xc6\x2b\x87\x97\x93\x0e\x9b\x36\x86\xd9\x47\xb6\xc9\x8d\x02\x75\x31\x4b\x6b\x4e\xe4\xae\xd3\xa0\xb0\x7c\xc7\xd1\x27\x85\x3b\x9f\x3d\x0f\xd7\xbf\x41\x03\x21\xd3\x16\x85\x62\x53\x01\x55\x06\xe5\x32\xaf\x0a\xbe\xb4\x25\x1d\xe8\xdd\x64\xff\x78\xef\xe5\x2a\x8a\x74\xf1\xaa\xa9\x72\xf3\x52\x28\x86\x07\xf7\xa6\x0f\x66\x57\x7b\xbb\x98\xf5\xbf\xdc\x3e\x5a\x99\x3c\x30\x8c\x0b\x15\xee\x43\xc7\x03\xe7\xcf\x6f\x1f\x9c\xdc\x72\xce\x95\x7a\xf1\x32\x2d\x3d\xf0\xa2\x58\x40\xf9\x57\xcd\xd7\x8c\xc1\x69\xbc\x95\xcb\xdd\x35\x51\xee\x0c\x9b\xe7\xb6\x93\x6f\x97\xb5\x91\xdf\x4b\x0b\xbe\x49\xe0\xef\xfd\xf5\x55\x7d\x5c\x63\xf3\x9b\x0d\x05\xc6\xd7\x1e\x4e\xf3\x5d\xc0\x89\xb8\x99\x4d\x18\xce\xd9\xac\x03\x63\xea\xc4\x23\x25\x0b\x27\x7b\xe8\xcf\x2c\x4e\x17\x11\xb4\xd7\x49\x5e\x4f\x7e\x76\x87\xe6\xc0\x82\x59\x54\x0a\xc4\x98\xc4\x0b\xbb\x93\x8a\xd4\xb2\x91\x3a\xf4\x7c\x5b\x54\xa4\x2e\x07\x19\xf3\x27\x5a\x7d\x3e\x69\xd9\x2b\x5c\x6e\xe8\xcc\x3d\xc3\xe3\xd0\x5f\xc1\x9e\x27\xea\x8a\xdf\x8c\xb8\x52\x9d\x66\x92\x1a\x6e\x5a\xb4\x66\xae\xda\x9d\x3e\xcf\xb5\x00\x59\x48\xad\xff\x3e\xb8\x4f\xa9\xfa\x91\x90\x2f\x8b\x7e\xfb\x5f\x5b\xe1\xb5\x76\x0b\x4c\xd9\x4f\x01\x32\x53\x58\x1e\x63\x96\xb5\x36\xff\x2b\xc7\x27\x6a\x85\x64\x02\x55\x4a\x87\xc9\x89\x93\xe4\x3d\x88\xd5\x3f\x94\x7b\xf0\xe7\xd7\x95\x0f\x44\x6d\x37\xf0\x61\xd3\x99\x2d\x9e\xd5\xc9\x59\xd4\xb5\x62\xa1\xda\xec\xf3\xda\x00\x81\xc6\x0a\xd6\x5f\xd8\xae\x8d\x81\x90\x57\xc3\x9c\xfb\x1b\xb7\x8f\xe5\x37\x54\xac\x31\xf6\x62\x36\x53\x36\x1c\x9a\x62\xa8\xfb\xd8\x76\x29\xe3\xb8\x86\xfe\x6c\x79\xcd\x90\xb8\x18\x87\x3e\x22\xfb\xc3\xc1\x72\x2a\x6a\x62\x54\x76\x4d\xea\xc0\x20\x7e\xf5\xfc\xf4\x80\x50\xc8\x8c\x67\xbf\x7b\x3e\xbd\xb2\xf2\x30\xab\xe2\x06\x56\x3d\xe5\xfa\x33\x3f\x6f\x4d\x86\x54\x36\x51\x04\x0f\xb3\x8b\x34\x8d\x86\x52\xe0\x18\xc2\x33\x3f\xd3\xb2\x46\xda\xd6\x63\x3b\xe5\xb4\x36\x56\x78\xe2\xa1\xc0\xa7\x36\x82\x45\xdf\x90\x03\xf2\x6f\x20\x29\xb1\x17\xde\xe4\xca\x89\x4f\x15\x2b\xa9\x72\xec\x44\x39\x95\x31\x29\x55\xcb\x97\x3f\xad\x15\x16\x25\x06\x58\xce\x52\x65\xa1\x1b\xb8\xbd\xa2\xc3\x3a\xfd\x52\x8b\x64\x7b\x34\x94\x1f\xef\xbe\x40\x06\x01\xdc\x74\x49\x3f\xbf\x53\x4b\x7d\xa8\x5c\x46\xf6\x54\x85\x7b\x94\xf9\x21\x38\xa2\x14\x6e\xc0\x7e\x85\x60\x4b\x5d\xd1\x77\x1f\x92\x47\xcb\xc1\x3e\x1f\xd9\x44\xd5\xd2\xae\xdb\xd3\x01\xb3\x5a\x76\x61\x61\x76\x76\xa1\x7a\x16\x1d\x9f\x09\x04\x72\xf6\xf6\xf6\xf1\x2a\x3e\xa6\xce\x85\x5d\xf5\x80\xbf\x61\x85\xb8\xda\x3e\x62\x82\xe6\x9e\xdd\xa2\x89\x66\x22\x26\x84\xb0\xb2\xd7\x74\x49\x1d\x5e\x2b\x50\x0e\xc0\x55\x07\xe4\xf1\xac\x46\xcd\x47\x0c\xc6\x79\x7d\x89\x16\x8f\x1c\xe0\xac\xf3\xad\xdd\x23\x5b\x85\x91\x01\xa3\x3e\x6c\x39\x9b\xea\x95\x31\x07\xb4\xbe\x24\x60\xa0\xfd\xce\x03\x67\x97\x46\x96\xab\x60\xcf\x27\x75\x64\xc5\xbc\xf7\x79\x9a\x58\x78\x39\x1e\xae\x64\xde\xeb\xa6\x5f\x52\xc5\xa2\x8c\x24\x7e\x78\x1c\x09\xf1\xb9\x33\xe9\x9e\x87\x21\xa3\x86\x7d\xd5\xb9\x32\xdc\x26\xa1\x46\x3e\x6e\x9e\x97\x0d\x1e\x2b\x5d\x52\x1d\x52\x28\x86\xbf\xb8\x3f\x39\x51\x25\xa2\x20\x77\x73\x57\xbc\x29\x43\x6f\xca\x98\x65\xe7\x4e\x41\xe5\xb2\x50\x43\x30\x6f\x33\x97\x2f\xd7\x36\x91\x16\x12\x33\x9b\xfc\xc4\xb3\x23\x64\xfd\xcd\x83\x30\x8f\x93\xf7\xb4\x26\x9f\xd3\xf0\x48\xd3\x6e\x6a\xd4\x2e\x39\xe8\x5f\x17\x20\x8f\x88\xdc\xcf\x61\x9f\xf9\xee\x47\xc5\x88\x8e\xda\x2e\xf5\x7c\x6c\x25\x94\xed\x96\xf3\xca\x78\x9e\xb2\x2a\xa9\x63\xe1\x63\x9b\x7d\xf1\x0d\xdd\x32\x9d\x46\xbd\x38\xbc\xb6\x11\x73\x15\x90\x8a\x0f\xc0\x69\x05\x5c\x23\x1c\xe0\x41\x67\x4a\x9c\xc9\xfd\x1a\xd2\x16\x6c\x34\x00\xc3\x9f\x09\x42\xd1\x68\x1a\x06\x65\x40\xbe\xc9\x5d\xb1\x2b\x15\xa2\x6d\x24\x58\x39\xb9\xf7\x2f\xbe\x4a\x85\x77\x13\x07\x0d\x50\xe1\x65\x7e\xb2\x46\x46\x84\x12\x0b\x7c\x08\x86\x3f\xd8\xa6\x80\x5e\x02\xa7\x8c\x1a\x3c\x76\xae\x9b\x22\xe7\x01\xc4\x89\x45\x0c\x72\x3f\xdd\xd0\x9a\x8a\xd9\x3e\xa9\x12\xb0\xa1\xc9\x3d\x35\x29\x7d\x70\x67\xcd\x2a\x78\xd8\xa0\x8e\xf0\x60\xce\x5e\xa6\x69\x4e\x97\x10\xab\x12\xcf\xc4\x75\x55\x02\x27\x7c\xe5\xa1\xb8\xaa\x89\x67\x33\x9d\x57\x6b\x65\x46\x55\x60\x2e\xf5\x9c\xdb\xb9\x74\xbc\x5a\x66\x7d\x6c\xf1\xaa\xa9\x0b\x35\x91\x8e\xfe\x9c\xaf\x71\x18\x50\x99\xba\x12\x60\x98\xdd\xfe\xb0\x94\x22\x54\xd3\x63\x66\xc6\x01\x65\x0d\xc6\x59\x11\x09\x69\xe0\x16\x85\xf6\xea\x53\x37\xd6\xad\xce\xfd\xdb\x33\x1a\x9e\xd6\x0f\x8c\x9a\xb0\xa5\x59\x39\x46\x31\x67\x03\x84\x67\x31\xdc\xbf\x25\xdd\x00\x38\x25\x83\x87\xd8\x74\x78\xdb\xfd\x28\x8c\x64\x16\x06\x51\x79\x30\xfc\x49\xed\xa9\x0a\x79\xb2\xb4\xfd\x70\x6e\xea\x05\x5a\x8f\x85\x1a\x00\x5d\x15\x8d\xcb\x8c\xcd\x1a\xe4\x84\x61\xa7\x4f\x08\xa5\x5d\xbc\xed\x32\x95\xca\xc0\x61\x4d\xf2\x9a\x1f\x7b\x42\xc5\x5e\x30\xea\xc4\x74\xbc\x0f\x1c\x4e\x90\x92\x65\xda\x1b\x3f\x2d\x77\xe3\xb0\xa4\xc4\x40\x0e\xc8\xfb\x5c\x3d\x54\xeb\x4e\xeb\x18\x5c\x80\xc3\x3f\xad\x95\x47\xd6\x8e\xfa\x24\x5e\x4f\x7f\x5f\xdb\xbc\x11\x27\x21\xe3\xc7\x35\xe3\xcd\x2f\xa9\x0d\x11\x81\xb2\x3d\xf7\x67\x53\x52\xa8\xac\xa0\x50\x0c\x89\x26\x57\xef\x51\x5b\x60\x14\xc3\x4d\x13\x9b\xf0\xbc\xb1\x57\xd8\xc4\x8a\xaa\x83\x6e\x11\xe4\x10\xc3\xac\xd1\x42\x31\x5c\x74\x6b\xba\x95\xa4\x95\xe8\x03\x35\x8d\xc5\xf0\x4b\x9a\x55\x00\x88\x24\x08\xb3\xf2\xef\xc8\x1c\x1d\xfd\xd6\xa4\x2a\x58\xb4\x4a\x73\xf7\x6e\x0b\xda\xdc\x01\x3c\xa4\xd7\xb6\x6b\xde\xaf\xc8\xf1\x91\x85\x05\x93\x4c\x26\xb8\xea\x46\x28\xa5\x4a\x04\x79\xb0\xfb\xdd\xb4\x38\xf9\xcb\xd5\xaa\xca\xb4\xff\xc5\xd1\xa1\x22\x6c\x88\x98\x13\x7e\xe0\x21\x65\x64\x6a\xac\x0b\x88\xef\x23\xab\xad\x50\x0c\x7f\xb7\x45\xb1\xbb\xa3\xfc\xfd\xfe\x6a\x66\x41\xbb\x73\x20\xd8\x2b\x0c\x71\xed\xe6\xb1\xf4\x48\xcd\x03\x8e\x3b\x95\x26\xe0\xd5\xdf\xe9\xee\x5b\xd4\xc6\xdc\x09\x4f\xd0\x17\x73\x7f\xaf\x09\x7c\x59\x18\x95\x63\x6e\x59\xb8\xed\x1e\x88\xac\x36\x0d\x98\xd0\x5a\xcb\xdc\x78\x52\x95\xaf\x07\x83\xd6\x2d\xe3\x9a\x89\x4b\x30\xb9\xab\x3f\x9a\x1c\x23\xa8\xb5\xd6\x4c\xd4\xcd\xa1\x4a\xc8\xf3\x50\x99\x32\x00\x4f\x7f\x6a\x8f\x66\x14\x4c\xeb\xc2\x31\x21\x1c\x7e\x0a\x9e\xec\xca\xa8\x7d\x85\xe6\x12\x6b\x80\xa8\x94\x33\x37\xf0\x37\xdb\x26\x8c\x8c\xb3\x43\xe0\xa1\x18\x4b\x15\x16\xb4\xe5\x58\x8d\xb2\x12\x16\x9c\xcf\xbc\x93\xd7\x68\xa1\xdc\x38\x5a\x45\x21\xe6\xf3\x2f\x42\xaa\x15\x18\x4a\x81\x56\xf8\x5a\x45\x36\xbb\xc4\x10\x90\xc4\x32\x20\x78\x0b\xae\x49\x2c\xe4\xf8\x26\xa3\x2e\x08\x17\xfd\x57\x9f\x76\x6f\x50\x43\xe8\x91\xe6\x47\xec\xd5\x97\x0d\x7d\xd8\xd2\xf6\x26\xef\xe9\x00\xc5\x8f\xeb\x98\x87\x1d\x5c\xf7\x6a\x0d\x3d\x91\x85\xd5\xbb\xb5\x59\x41\xa2\xf0\x0d\xc1\x35\xfb\xfc\xa3\x9a\xcf\x3e\x43\x81\x8d\x60\x71\xb2\xe9\xf0\x28\x65\x18\x25\x20\x14\xfc\x0c\x7c\xa5\xbd\x45\x19\x26\x78\x3e\x86\xd5\x6f\x7f\xe6\xff\xdb\xaa\x89\x7b\xf4\x46\xd5\x23\xa8\x18\x67\x2f\x5a\x78\x99\x2a\x74\x83\x49\x1d\xab\x35\xd0\x61\xfe\x94\x2c\xec\x14\xa6\xcf\x48\x99\x43\x9c\x58\x75\x69\xd3\x97\x68\x88\xf3\x5d\xcd\x43\xdb\x89\x7c\x9b\x7a\xae\x89\x19\x07\x71\x7d\x62\x8f\xec\xdf\x5c\x90\xe2\x57\xb8\x59\xc3\x35\xf1\xf2\x12\x32\x6a\x81\x2b\x26\x68\xb7\xed\xd3\x29\x4e\x98\x01\x11\x28\x7c\x76\x57\x22\x36\x2f\x98\xad\xda\xf0\x6e\xa3\xb2\x2f\xc1\xa8\xc6\x61\xf5\x33\xd7\x4a\xb6\x56\xa0\x08\x92\xe7\xba\x9d\xf4\x19\x43\x4e\xb9\xa1\x51\x0c\xcc\xe7\xc7\xa8\xcd\x1d\x67\x8b\x29\xff\xbc\x6e\xfe\x18\xe9\x73\xdf\x2c\x35\x3d\xe8\xbc\x46\x50\x48\xa4\xaf\x72\x4f\x3f\x7e\xb9\xde\x08\x33\xcc\x49\x36\x30\x01\xf9\xdf\x13\x7a\x0a\x64\x3e\xf1\x12\xfb\xdd\xdc\x20\x05\xfb\xed\x19\x8c\xb8\xd1\x69\xde\xf4\x90\x22\x2e\x43\x5d\x0c\xc0\xb9\xcc\x91\x31\xf0\x86\x66\xcf\x29\x34\x10\x13\x7a\x28\xb9\xaf\x2d\x1c\x26\xce\x15\xa7\xf6\xc0\x45\xf9\xde\x0b\x8a\xdc\x11\xf2\x61\xe4\xf2\x25\x4d\xbc\xda\x37\x31\x65\x62\xf3\x3e\xf9\xf5\x74\xe3\xec\x05\x6e\xd4\xe9\x78\x94\x4d\x9b\x3a\x79\x72\xf4\xd3\x8d\x2d\x92\x83\xc0\x92\xca\x75\xeb\x88\xd1\xfa\xf7\x43\x65\xba\x1e\x46\x50\x47\x4a\x8a\xe4\x11\x29\x73\x67\xf5\xf0\xd7\x23\x46\x69\x05\x0a\x75\x79\xda\x3d\xfe\x90\xe2\x28\xa8\xb2\xf1\x6e\xab\xa4\x95\xd6\xea\x84\x55\x89\x43\xd0\x80\xb2\xe0\x13\x04\x92\x68\x11\xa3\x9c\x57\x95\xb9\xe6\x90\x7c\x98\xd3\x67\x77\x0a\xf3\xd9\xdc\xe6\x99\x43\x64\x17\xcc\xb3\xf7\x81\x55\xda\x54\xa1\x97\xc2\x69\x1d\xd2\x22\xef\x68\x9f\x3a\xce\xe9\xda\xa2\x6c\x71\x2d\x0b\x6c\x37\x07\xf9\x30\x9c\x14\x8b\x92\x18\xcf\xc5\x87\xad\xef\xce\x53\xb5\x36\x3a\x3b\x39\x47\xf0\x14\xf4\x6e\x0b\x2d\x64\xd4\x3c\x7f\x80\xeb\x90\xbb\x5a\x78\xb1\xdd\x1c\x30\x65\x26\x90\x6b\x5c\x20\x41\xb5\xdc\x5d\x2f\x3b\x63\xd2\x28\x25\xa3\x58\x7c\xec\x08\x70\xf2\xb7\xa7\xc8\x8f\xda\xd1\xd9\x36\x8b\x3f\x83\x5d\x4f\x0e\x49\x9a\x5a\x20\x4a\xfe\x4e\x63\x83\xd7\x02\xe6\xd5\x12\x26\x5b\xdf\xdc\xf1\x5a\x72\xb2\x89\xe7\xa3\x1a\x52\x06\x67\xb9\x6f\x9f\xd3\x65\xe1\x45\x22\x11\x83\xbf\x1f\xdf\xa4\xcb\xa4\x8b\xb5\x6a\xb3\x6a\x60\x76\xc1\x85\x5a\x83\x46\x19\x5e\x0f\xfc\xa5\xdf\x6b\x4a\x39\xb8\x0e\x93\x5b\xd8\x0c\x7d\x4b\x91\x12\x70\x28\xeb\xc5\x55\xc2\x67\x6b\x7f\x51\x5c\x9e\x3d\xf0\x16\xf3\x0e\x0a\xc1\x43\x33\x71\x0c\x38\x66\xca\xb6\x2a\x70\xca\x98\x25\xe0\x98\xe8\x0b\xfc\x42\x36\xa3\xc8\x73\x0b\xc5\xf0\xc4\x36\xc8\xed\x1d\xd3\xa3\xc3\x0c\x6f\xba\xfb\x18\x0c\x26\xae\x5b\xdf\x4b\x99\x6f\x2a\x43\x8f\xfc\x87\xc5\x5a\xda\x26\xd1\x21\x98\xd3\x51\x28\x86\x37\x08\x56\xe6\x8d\x42\x43\x8d\x38\x40\x25\xca\x7d\x5f\x93\x7a\x2f\x05\x95\x0a\xb2\xa8\xa0\x70\xcd\x53\x48\x98\x81\x8d\xc1\x9a\x33\xdc\xd3\x9d\x96\x9f\x76\x19\xb1\xb1\xe7\x23\x36\xd0\x9a\x37\xf7\x3e\x45\x93\xca\xb3\x68\x2f\x07\xb9\x1d\xdf\x20\x31\x3e\xbe\xd9\x44\x87\x59\xb9\x02\x0a\x81\xe9\x5d\xed\x85\x06\x96\xa1\xe8\xf3\x2c\xfd\x69\x39\x01\xb7\x0c\xde\x6a\x99\xd7\x25\x53\x1f\xf1\x29\xde\x7b\x07\xb5\xe8\xe1\x88\x8b\xeb\x64\xde\xf7\xe0\x08\x71\x83\x00\xe8\x25\x56\x62\x8f\xb6\x0e\x51\x5d\x6e\x8a\xfd\xb9\xbf\xdc\xab\xe5\x48\xaf\x61\x05\xf6\x54\xbc\x9e\xa7\x8b\xe7\x05\x1e\x94\xab\x91\x16\xc3\xdb\x6f\x4d\xd8\x9d\x33\xa7\x47\x3f\x3d\xeb\x39\x78\x0f\x15\x86\xd7\x05\xfc\xdd\x86\x2f\xad\xd5\x24\x3b\x88\x85\xe1\x59\xff\x49\x53\xbf\xe5\xc7\xa2\x17\x09\xfe\x7c\xf6\xce\x92\xc6\x74\x74\x5d\xc4\xb8\x6d\x83\xbc\xae\xf3\xcf\xe9\xac\x65\xec\x22\x16\x7b\x58\x66\x7f\x79\x22\x8d\x8f\x04\x34\xba\xf8\xee\xc7\x56\x68\x36\x94\x1c\x39\x2c\x8c\xa7\x46\xdc\xaa\x29\xe3\xe1\x12\x48\x0e\x26\x45\xfc\xf0\xad\x62\x07\xd2\x30\x59\x9d\xaa\x63\xb2\xec\xef\x2b\xaa\xb0\x89\x4f\x58\x72\xce\x27\x6f\x80\xe8\x50\x45\xe2\x34\xe6\xb7\x3c\xd2\xc4\xbb\xae\x90\xc4\x33\x28\x7b\x7a\x69\x4a\xad\x72\xf9\xf2\x15\x53\xf9\xf0\x4a\x69\x68\x87\x6e\x86\x67\xee\x63\x64\x0b\x05\x8a\x4c\xff\xd8\xf4\x43\xaf\x20\x51\x70\x66\x6e\xd6\x88\x81\xd3\xe7\xcc\xea\x14\x51\xc4\xb9\x55\x21\x49\xf3\x53\xc2\x9f\xd3\xa6\x61\x1a\x62\xce\x76\x05\x08\x55\x74\x51\x19\xed\x0d\x77\xb5\xcd\x6a\x07\xd5\x0d\x6f\x9a\xbc\x4d\xc8\x41\xbe\x89\x6d\x0e\xd0\xbf\x41\x1b\x8d\x09\x19\xd8\xe4\x5b\x7f\xde\x14\x7b\x2a\x46\xb9\x32\x4c\xc9\xe2\x0e\xad\xd1\xaf\x9c\x7a\x5c\xa1\x50\x93\xb2\x83\xd5\xd9\xe7\x43\xdb\x94\x58\xcd\xed\x31\x88\x67\xf3\xb4\xb9\xe1\x42\x05\xaa\x2a\x03\x7e\x78\x70\x50\xfa\xf1\xf7\x50\xd3\xf1\x12\xa9\x8e\x4c\x63\x8d\x8e\xc0\x11\x9e\xce\xcd\x4e\x7d\xd9\x6f\x1f\xd0\xad\xde\xc0\xe3\x09\x8a\x81\xec\x5c\x29\x3f\x6b\x37\x4d\xb9\xb2\xbb\x0f\x68\xf4\x94\xc0\x11\x9c\x62\x21\x05\x71\xc5\x5c\xdd\xdf\x18\x63\x37\x61\x33\xe6\x86\x28\xfa\xfc\x36\x75\x7c\xc3\x42\x24\x36\x02\xcd\x35\x26\x68\xa2\x83\x88\xd5\x90\xe0\x55\x89\xe7\x70\x7e\xab\x72\x64\xf9\xdc\x83\x03\x88\x8a\xe1\x0e\xcd\x74\x11\x57\x2a\x51\x49\x14\xbf\xfc\xcc\xff\x6a\x64\x09\x92\x7c\xe2\x7f\x99\xa6\x7a\xe6\x5b\x5c\x29\x89\xbf\x8b\xf9\xaf\x4b\x01\x18\x23\xde\x15\xe4\xbe\x6d\x35\xe5\xb8\x0a\xe1\x8a\xa8\x51\xec\x09\x7b\x4f\xc2\xcd\x89\x32\x3a\xef\x5b\x7f\x22\x14\x09\x6c\xe4\x08\x98\xeb\x92\xa3\x2d\x32\x89\x28\x35\x45\x76\xce\x4e\x48\x47\x86\x45\x3d\x8e\x57\x0f\xe7\xde\x37\x44\xee\x48\xf9\xa7\xfd\xd0\x2a\xc5\xd3\x8e\x51\x4e\xec\xef\x9c\xab\xc0\x75\x84\xb0\x4e\xa1\x18\x1a\x27\xb4\x35\x33\xf2\xeb\x04\x3b\x35\x9a\xc6\x64\xe6\xc7\xbf\x33\x44\x56\xc0\x76\xf4\x83\xed\xa2\xf9\x26\xd4\xc7\x5c\x5d\x22\x57\x7c\xe7\x92\xb8\xd2\xa4\x4c\x18\x65\xbd\x3e\x56\x2a\xb9\xfa\xc8\x27\x4d\xf3\xb1\x2f\xce\x15\x9a\xa1\x14\x16\xce\x99\xa7\xa7\xb5\xa4\x95\x1e\xe2\x6f\x7e\x78\xc4\xd5\x5a\x0f\x67\xd3\x3a\xd7\x95\xd1\x06\x19\x1f\xdc\xa2\x35\xb6\x81\x67\x58\x00\xf4\xcc\xaf\xec\x14\x58\x3b\xc6\x08\x78\x96\x2d\x7e\x4c\x8e\x1a\xcb\x34\x28\xc1\x07\xcf\xfd\x62\x9f\x5c\x6a\xb8\xd4\x22\x3e\x31\x08\xbf\xb6\xe1\xbd\x63\x47\x6b\x51\x67\xce\x8c\xb6\x58\x56\x71\xf9\xed\xe9\x69\x59\x50\x1a\x00\x0f\x96\xb3\x5e\x91\xd1\xa9\x44\xab\xb8\x01\x13\xd3\xef\x2d\x90\x3e\x6d\xa4\x49\x98\x3f\x3f\xfc\x7e\x55\xa1\xdc\x44\x01\x78\x7b\xbe\xbb\x40\x9d\x95\xda\xb6\xd8\x90\x7d\xb5\x47\x9e\xa0\x9a\xa2\x78\x9d\x9d\xb7\x55\xc1\xa3\xd2\xde\xa8\x45\xff\x2d\x1b\xa5\xe4\x96\x4a\x25\x6a\x5c\x39\xb7\x63\xe9\xdb\x9a\xed\x05\x4d\xbe\xe9\xe0\xbc\x6e\x2f\x55\xc2\x42\xb5\x2e\xf4\xb7\x24\xb9\x7c\x66\x67\xf4\x7b\x5e\x5f\xa2\x0d\xc7\x7c\x64\x11\xd1\xe5\x88\x19\xdc\xb0\x07\x35\xe9\x1d\x52\x75\x48\xa5\x21\x74\xc6\xe7\x6e\x12\x1b\x36\x81\x5f\xe9\xcf\x5b\xf7\x2a\x18\x11\x8c\x81\xb9\xf3\x9e\x1b\x12\x63\xb1\xe9\x85\x62\xf8\xe9\xce\x29\x5a\x18\xf3\x7c\xe2\x07\x3e\x1e\x28\xe6\xfd\xdb\x11\x79\x6b\x6a\xd8\x69\x44\xd1\x3d\x63\x6d\xd0\xac\x23\x31\x4a\x64\x8d\x3f\x72\x70\xac\xac\xca\x9a\x97\xa0\xfd\x99\xff\x60\xe9\x13\x1b\x63\xe7\x9b\x35\x57\x9e\xba\x75\xb8\x1a\xe8\xfb\xe0\x3c\xfc\x7e\x8f\x7c\xb3\x74\xb2\x67\x0b\x15\x97\xf6\xdb\xb5\xbd\x97\x8f\x18\x9b\x9a\x82\x0d\xfd\x74\xd7\x68\x3d\x13\x97\x70\x6c\x1c\x3d\xe8\xe4\x30\x11\xc8\x20\x1b\xf1\x2f\xd3\xb6\x43\xd2\x91\x3d\x03\x45\x57\xfc\x0b\xf3\x5b\x44\xa7\xc0\x0c\xb3\xe0\x22\xf0\xd5\x2d\xf6\xe7\x6e\x1c\xac\x30\x12\x18\x15\xe2\xa6\xb9\x7f\xd8\x99\x80\x35\x60\x4e\x93\x50\x86\x27\xde\xab\x05\x6d\x4e\xe9\x4a\xeb\xd5\x7e\xb0\x4b\xa5\x83\xe1\xd8\xc4\x31\xd7\xb9\x36\x7d\x04\xeb\xb1\x48\x5b\x48\xcf\xa8\xd8\x28\xa1\x3b\x56\x0c\xaf\xde\xac\xb8\x98\x37\xf8\x86\x31\x7b\xf8\xe9\xe4\x32\xf4\x50\x85\xf6\x91\xeb\x7d\x53\x49\xc1\x52\x1a\x02\xaa\xeb\x41\x6f\x6b\xad\x88\x89\xec\x12\x66\xde\x00\xa7\x27\xdf\x31\x4f\xe9\xa8\x6d\x70\x64\xb9\xaa\x45\x27\x1d\x10\x1f\x11\x27\xa1\xdc\xf4\x67\xff\xaa\x68\x56\x1a\x26\x86\x10\x98\x9d\xdb\x9a\x7e\xc1\x94\x55\x91\x43\xfa\x90\x9c\xb5\x65\x7f\xdf\x2e\x75\xad\x3a\x67\x44\xff\xcf\xca\xee\x4b\x95\xd9\x27\x4c\xb2\x05\x88\x3a\xb3\xfa\x6e\x5d\x7a\xd8\x67\xc8\xc1\x3e\x08\xe2\x64\xbe\xaf\x2b\xd9\x73\x55\xda\x58\x2b\xed\xd7\xf7\xc9\x5e\xa9\xc4\xf1\x70\xd0\xed\xad\x06\x7f\x86\xc2\x32\xea\x21\xc7\x6f\x16\x04\x5a\x71\xdf\x65\xf1\x10\xe7\xa6\x9b\xf4\x71\xd9\x35\x63\xd3\x19\xb2\x90\x98\xb5\x41\x2a\xa6\xeb\x15\x1f\x14\x24\x2d\x3d\x87\x6c\x52\xde\x17\xff\x98\x4a\x64\xdb\xa3\xb4\xf2\xa0\x43\xc1\x43\xf9\xb7\x77\x6a\x13\x3e\x52\xc6\x54\x1b\x00\xfd\x7c\x01\xdc\xe5\xc5\x0c\x4c\x1e\x9a\xf6\xa3\xaf\x85\x90\xa7\x56\x58\x20\xcc\x7e\xc9\x33\xf2\x03\x52\xee\xd7\x0b\x2a\x7d\x7b\x1f\x48\x77\x2d\xd3\x63\x6f\xf3\x17\x4e\xa5\x0d\xcb\xc1\x41\xc7\x88\x75\x48\xf4\xa7\x37\x78\x8b\x82\x43\xe0\xd7\x94\x70\xeb\xc3\xec\x17\x35\xcc\x4c\x74\x2f\x45\x0b\xf5\xc2\x83\x9a\x48\xe2\xb4\xf6\x76\x41\x4f\xcc\x7e\x26\xd4\x50\xfe\x8c\x9b\x01\xf2\x11\xe8\xe0\x47\x75\x1b\x16\x64\xaa\xb0\x83\xec\xc2\x6b\x15\xf6\x09\xf6\x7c\x98\x64\x04\xc7\x9b\x3c\x85\x02\x56\xc5\xc2\x57\xb1\x3f\xf7\xc2\x11\x29\x1a\x96\x68\x76\x35\x85\xbe\x5d\x6f\xfc\xbf\x84\xbe\x9d\xa6\xad\xff\xbe\x99\xd0\x5c\x2e\x25\x75\x87\x28\xf1\xe3\xd5\x5b\xa4\xe3\xa6\xa8\xcc\xb5\x22\x36\x86\x22\x73\x0e\xf5\xbe\x57\x2f\x51\xca\x79\xce\xb5\xcd\x9c\x7a\x46\xf6\xba\xc9\xc6\x88\x6a\x48\x13\x0b\x39\xe5\x44\x03\x36\x8f\xc7\x08\x5d\x5c\x13\x33\xcc\x77\xed\xf3\x37\x68\x93\x32\x87\xf6\x72\xd5\x1c\x61\xbd\xdf\x9f\x9d\xb9\xb0\xad\xf7\xff\xb1\x79\x18\xc8\xbe\x62\xc4\xdb\xb2\x28\x32\xd4\x61\x81\x3b\x4c\xd6\x65\x2e\xcf\x94\x5f\x14\x08\x76\xe1\x79\x15\x7d\xa4\x7d\xa6\x04\xbd\x75\xb6\xcd\x8a\xfe\xab\x7b\x5f\x55\xc8\x2c\xd8\x7f\x7f\x9d\x30\x61\x45\x9d\x79\x76\xde\x25\x71\x95\x48\x99\x50\x01\x5c\xb9\x46\x3e\xad\x78\x7f\x32\xad\x09\x64\x03\xc9\xbf\x65\xf7\x78\x15\xe0\x07\x16\x46\xfa\xf1\xfe\xbb\x1b\x34\xd8\x30\x0d\xb8\x48\x94\xe0\x9d\x3c\xae\x5b\xd8\xa1\xa8\x5a\x13\xf9\x6b\x47\xa8\xba\x5e\x06\x7d\x29\xfe\xdf\xe3\xbb\xc5\x98\x3a\x31\xee\xe3\xda\x35\x47\x15\xc8\xad\x8d\x44\x7e\xad\x2b\x5e\x78\xbd\x44\x00\xae\xb2\xb3\x37\xe9\x8c\x6b\x2b\x46\x65\xf6\xe7\xba\x9c\x49\xc9\x2f\xaa\x10\xcb\xe6\xb2\xb9\xb5\x01\xad\xae\xd7\x3c\x9b\xbe\x55\x62\xd5\x5f\xc7\x1e\x18\x39\xe7\x16\xac\xbe\x5c\x19\x23\xf1\x39\x58\x54\x9c\xc4\x22\x90\x99\x09\xef\x26\xef\x96\x97\x33\xfd\xd9\x96\x9d\x2d\x5a\x62\x80\x7d\xcd\x33\x23\xc6\x28\x83\xd4\xaa\x29\x28\x34\xb1\x56\xc5\x5f\x56\x2b\x11\x9c\x20\xdf\xb4\x30\xf7\xd4\xfe\xa7\xb6\x74\x4c\x30\x18\xf5\x44\x91\x90\xc7\xd3\xc6\x28\xc5\x26\x77\xd7\xa2\x89\xd8\x60\x38\x56\x33\x56\x9a\x31\x2b\x06\x89\xbb\x87\x05\xa8\x00\x3b\xd8\x87\xe3\x13\x1e\x3b\xa6\xe9\xdc\xd6\x85\xb5\x6b\x38\xfc\xcd\xa4\xe2\x2d\x54\xec\x66\xd5\xe9\x49\x8a\x9c\x31\xcf\x8e\x72\x51\xb8\xd5\xd4\xe8\x17\x0c\x86\x58\x03\xe4\xe6\x9d\xd2\x62\x3c\x80\x16\xfa\xca\x77\xb4\x88\x47\xfc\x40\x5d\xd5\x66\x9e\x74\x65\x0f\xd9\x31\xab\xa0\x1c\xb0\x35\xef\x8c\x50\xd4\x27\xca\x02\x7f\x93\x79\x78\xbd\x4c\xbf\x3e\x6f\x3a\x2d\xe2\xba\xc2\x2c\xe0\x02\x05\x86\xe1\x46\x01\x32\xb5\xab\xde\xa0\xf9\x37\x58\xa4\x8a\x98\x61\x72\xb9\xc0\xf0\xc7\xcf\xc3\x6d\x5c\x8a\x6a\x58\xc8\x45\xbd\xfd\x4e\x3a\xee\x96\xa8\xe7\x10\xc9\x50\xca\x5c\xe3\x6a\x6b\x73\x54\xa7\x2c\x66\x74\xed\x39\x3f\x5c\xa1\x6d\x38\x84\xb3\xba\xf2\xcb\x5e\x1f\xa7\x5c\xa9\x86\x45\x9b\xa5\x9a\x6a\x8b\x21\xd2\x29\x8b\xeb\x9e\x58\xde\xc1\xe6\x6e\xbd\x7c\xba\xbd\x45\x73\x6e\x26\xd4\x8a\x0d\xbe\xf3\x99\xd6\xf4\xe4\xb1\xc6\x90\x8d\x59\x89\xd2\x9a\x37\x00\xa4\xe0\xa7\xcf\xab\x11\x1a\x68\x49\x5f\x5b\x9a\xd4\x71\xf5\x14\x05\xfb\x7b\xca\x64\xbb\x8c\x7d\x9a\xc8\x94\x64\x7e\xb5\x16\xa6\x85\xdd\x0d\xf5\x07\x72\x3f\x95\x9e\xd8\x95\xa6\x6f\x1b\xfe\xaf\xe6\x3d\x25\x68\xcf\x96\xa0\xd2\x64\xea\xf9\xc1\xc9\x9f\xfb\x64\xa1\x18\x9e\xdd\xa5\xa9\xe9\x1b\x3e\xa9\x73\xe1\x22\x91\xfe\xf3\x1f\x5a\x2b\xcf\x80\x61\xd2\xa8\x79\x57\x3e\xcd\x2f\x3b\x54\x15\x90\x28\x8a\x92\xd7\x93\x6f\x6a\x30\x65\x9b\x95\x69\x39\x9d\xbe\x4c\x93\x59\x4c\xb6\xc8\xa3\xf5\x7a\xe3\x6b\xf9\x04\x2e\x5a\xd7\xae\x31\x72\x3b\xd3\x7c\xd1\x7e\xa4\x11\xea\x8c\xc0\x8f\xa9\xa8\xf9\x91\x79\x48\xb8\xae\xd7\x30\x4c\x6a\xd1\x2a\xf0\x92\x73\x6f\x66\xd3\x65\x55\x0d\x59\x76\xa3\x46\x90\xc4\x85\x87\xdf\x78\xfd\x72\x65\x10\x81\x11\xdc\x98\x52\xe0\x0b\xc4\xf2\x86\x77\x44\x57\xc7\xc0\x8e\xa1\x3f\xb7\x63\xb5\xaa\xc4\x68\x81\xf8\x7b\x78\xdb\x56\x79\x14\x2c\xc2\x50\xd4\x9c\x74\x6b\xf3\x7d\xbe\x36\x15\x0b\xd0\x1c\x7a\x5b\xb6\x06\x34\xf0\xa3\x4b\x17\xfd\x9e\x13\x93\x92\x69\x0d\xf1\xe3\x1d\x55\x66\xc2\xbd\x1a\x17\x66\xba\xd8\x50\x76\x26\xb0\x4e\xa1\xaf\x9e\x61\x4f\xa7\x84\x5e\xb1\x41\x62\xfc\xed\x03\xa3\xe5\x07\xe7\xe4\x52\x70\x66\xbf\xd9\x4f\xd3\x25\xa7\xcf\x04\x44\xde\x2d\x9d\x31\x8f\x53\x08\x23\x9e\x6d\x11\xbf\x14\x54\x35\xa2\x20\xc1\x63\xc7\x4d\x6b\xe5\x49\x9b\x50\x28\x86\xef\x1d\x0f\xf1\x75\x05\xf5\x90\x08\x3e\x61\xfd\x68\x3a\x9a\x95\x11\xf7\xe4\x73\x92\x36\xe3\xe7\xaf\x2a\x23\x02\x13\x31\x97\x4f\xf1\x3b\x36\x0a\x0c\x1b\xb2\x5d\x14\x75\xdb\xf0\x51\x16\xcc\x97\x48\x62\x58\x1a\x36\x8b\xc2\x4f\x9e\x36\x42\x69\xd6\xb8\x07\x41\xf4\xad\x0e\xbe\xad\x51\xd0\x40\x31\xc8\x12\x73\xb4\xf0\x8a\xdd\x1a\xc6\xd5\x30\x03\xab\x82\x59\x4a\xb2\xe4\xa6\x33\xba\x8e\xad\xe7\x63\x56\x09\x2c\x01\xbd\xab\x38\x57\x37\x95\x75\x06\x19\xa8\xab\x6e\x2c\x95\x9f\x72\x66\x57\xbb\x58\xed\x65\x2f\xae\x8b\x69\x37\x76\x90\x01\x2e\x94\xf1\x3d\xfc\x03\x83\x90\x46\x2b\x50\x9a\x17\x8a\x61\xfb\xdb\xca\x78\x2d\x6a\x8b\xef\xb6\xb4\xd2\x85\x80\x07\x88\x40\x41\xb4\x98\xf2\xcc\xab\x39\x3d\xee\x67\x6f\x7d\x48\xdb\x6f\x22\x50\xed\x09\x8f\x2d\x69\x42\x58\xd4\x31\xe3\x7e\x03\x82\x7d\x96\x3d\xb1\xfb\x62\xf1\xc6\x5c\x0e\xd8\x1a\x36\x49\x51\x50\x35\x1b\xbe\x09\xca\x16\x8f\xbe\xa0\xf3\x16\x28\x57\x34\xf4\x44\x92\xce\xcf\x56\x10\xab\x50\x0e\x10\xa3\xe9\xe9\x8d\x7c\x5a\x3b\xba\xb3\xf9\x1a\xf6\xf9\x55\xf0\xf4\x8a\x5e\x89\xb2\x94\x0e\x52\xee\xa5\x93\x42\xbe\xd3\x24\x0c\x49\x0f\xfd\xf0\xa3\x1b\x93\x66\xb5\x93\xab\x00\x3c\xbb\x58\xc3\xbb\x79\x04\xc9\xae\x38\x57\x1a\xac\x4a\x65\x7b\xa4\xcc\x95\x13\x1f\x51\x90\xe2\xd4\x35\x89\xe7\x13\x03\x25\xb2\x46\xf7\x29\x9a\xe9\x36\xb6\x30\xc0\xb0\x7f\x7b\x91\xcc\xfc\xfc\x6d\xde\x1f\xa6\x06\xb9\xe0\x30\x1b\xfd\xfc\xce\x79\xda\x66\xc0\xe1\x4a\xd7\x75\x11\x5c\xc3\xdc\x1e\x39\x0f\xe4\xf9\x42\x7e\xed\x39\x1b\xd3\xc1\x73\x16\x6f\xbb\x38\x4a\xed\x7b\x67\x65\x5e\xad\x63\x07\xe3\x66\xf3\xb2\x55\xd3\x94\x05\x9b\x49\x81\xa8\x9f\x1f\xf7\x8c\xd4\x5b\x05\xc8\xe1\x67\xb7\x6a\x02\x90\x20\x16\x9f\xb9\x65\xae\xee\x63\x21\xac\x50\xe1\x13\x4c\x98\x27\xb7\xe6\x34\x25\xb0\xb2\x7f\x86\x67\x22\x17\x27\xfb\x98\x79\xf1\x9c\x7e\x3c\xff\xff\xc7\x23\x7f\x7c\xfb\xfa\xae\x52\x19\xb7\x97\x67\xce\x9f\x5a\x8c\xed\xc1\x9f\x81\xf8\xc3\xfb\x75\x31\x5f\xc8\xdd\xf7\x66\x5c\x1b\x78\x82\x8a\xb6\x70\xd3\x25\x4a\x1b\xc5\x1f\xfd\x35\xc7\x01\x9c\x73\x03\x26\x8e\xdf\xa7\x7e\x94\xb9\x53\xf4\x46\xcd\x76\x91\xd0\x96\x0a\x0f\x6c\x52\x27\x01\xc9\xca\x2b\x8b\x1e\x55\xe7\x45\xc2\x54\xb0\x18\xfe\xfd\x4e\x90\x84\xbc\x99\x3a\x55\xaf\x8a\x10\x53\x97\x59\xb3\x2e\x4c\xbf\xa9\x9a\x83\x2d\x0b\x9e\xd3\xc1\x63\xd0\x37\x2c\x26\xae\x15\x43\xe1\xfb\xb3\xdf\x3a\xd8\x04\xea\xb3\x02\x21\x5a\x2f\xdc\x07\x4e\x8f\x53\x58\xc7\x14\x09\x82\x5e\x76\x76\xa7\x70\x57\x0f\xca\xc8\xc5\xc9\x00\x23\xe7\x6e\x52\x43\x31\x21\x20\x5f\x90\x71\x1f\x56\x31\x85\x8e\x1f\xe5\xb8\xfe\x7c\x8b\x16\x2b\x7a\x31\xae\x81\x45\x80\xeb\xca\xe3\x58\xa6\x46\xc0\x15\x43\x60\x7a\xf4\xf1\x99\x1a\xbd\xb5\x97\x18\x38\xfe\xb4\xc3\xef\x95\xad\xe0\xac\x19\x73\xa2\xff\xeb\xe2\x31\x03\x5a\x9e\xf7\xc9\x26\xb7\xc8\xc4\x7a\x02\x97\x09\x97\x28\xcb\xde\x55\x91\xd7\xc8\x26\x51\xdf\x40\x2b\xbc\xfb\x7c\x65\x6c\xab\x34\xe5\x44\xaa\x53\xf3\x23\x0a\x6a\x32\xaa\x00\x40\x62\xa1\xf4\xa6\xf2\x76\x29\xf3\x81\x3a\xd6\x9f\x9f\xdc\x1a\x93\x5c\x6c\xd7\x22\xa2\x91\xc9\xdf\x75\x52\x51\x98\x0d\x7c\x27\x88\xca\x4e\xe0\x82\x5e\x77\x48\xd7\x7f\x08\x98\x57\x46\xf1\xfc\x78\xc8\xeb\x4a\x41\x60\xf8\xb4\x24\x24\x10\xbf\xa0\xa8\x05\x45\xdd\x59\xac\x5f\xf4\xcd\x9e\xab\xf4\x5d\x65\x1c\xce\x92\xf3\xf4\xd7\x97\x34\xc5\xa4\x28\x69\x60\x16\x3b\x68\xe4\x5e\xdf\x91\x3e\xd6\x88\xef\x62\x62\xab\xf8\x3f\xec\x91\xf3\x8a\x3a\xe2\x28\x30\x53\xbb\x06\x84\x71\x1d\x42\x7e\x3e\xbf\x3a\xa8\x25\x25\xbf\xc4\x47\xf4\x51\x27\x26\x95\x24\xca\x93\x9b\xd6\x2b\xb9\x7f\xbe\x56\xcb\xc8\x16\xf2\x3c\x1b\xf9\x38\xae\x4b\xd7\x6c\xd4\xad\x51\x0c\x9f\x26\x42\x72\x87\x9f\x4f\x03\x79\x85\xad\x84\x26\xfe\x92\x5f\xfe\x22\x1c\xf6\x65\xff\x3f\x5f\x6f\x1f\x6f\x55\x55\xe7\x8f\x7b\x1e\x34\x23\x44\x1e\x2f\x0f\x22\x12\x92\x22\x70\xae\x97\xcb\x83\x60\x66\x0a\x8a\x68\xc8\x21\x24\x44\x24\xc6\x75\xf6\x59\xe7\xec\xc5\xd9\x7b\xaf\xe3\xda\x7b\x9f\xc3\xbd\x9a\xe3\x10\x19\x99\x91\x43\x44\x44\x4a\x64\xa6\x0e\x39\xc6\x18\x99\xf9\x75\x18\x33\x72\xc8\x71\xcc\x31\x73\x1c\x2b\x86\x8c\x31\x25\x63\x18\xc6\xc8\xcc\xbb\xfb\xbd\xf6\xe7\xb3\xf6\x5e\x6b\xaf\x73\xe7\xf7\xd7\x4c\x02\xf7\x9e\xb3\xf7\x5a\x9f\xc7\xf7\x03\x71\x48\x9f\xcf\xd2\xca\xea\xc3\xcf\xab\x69\x9d\x4d\xa0\x78\xf3\x68\xea\x43\x66\xf8\x2a\x56\x12\x96\x75\x74\x7f\xc7\x1e\x99\xb5\x58\x5c\x80\x43\x47\x74\x64\xb7\xba\x41\x9a\xb0\xee\x0b\x83\x69\x59\xc2\xea\x3c\xf7\xbe\xc5\x2a\x75\x54\xa9\x44\x36\xab\x82\x63\xc2\xaa\xb4\x15\xa0\x24\xec\xa8\x8d\xff\x70\x48\x13\x38\xe2\x7e\x50\x6a\x73\x81\x78\x86\xbf\x96\x52\xad\x75\xe2\xd5\x05\x05\x9d\xf2\xc3\xf3\x4d\xda\x35\x20\xf6\x52\x30\xe3\xb9\xc3\x95\x86\xf4\x02\xc8\x50\x3d\xca\x48\xd6\xe9\x1c\x94\xe4\x7e\xff\xa2\x92\xfc\x0a\xbd\xce\x39\x43\x44\x5f\x55\xcf\x38\xbe\xa0\x01\x15\x82\x78\x14\x85\x32\x56\x5f\xa1\xd7\xab\x81\xd2\xe6\xcb\x5d\xf0\xda\xf0\x24\x2b\x05\xa1\x0c\x5a\x85\xaf\xbd\x98\x08\xc6\x70\xa4\x40\x14\xfb\x35\x6c\x53\x95\x87\x81\x60\x24\xdc\x00\x70\xd7\x7d\x08\x63\x5a\x12\xd6\x43\xea\xf1\x40\xef\x66\xc6\x1e\xf8\xbf\x10\x26\x68\xc5\x6b\x20\x4c\x0c\x11\x3b\x8f\x12\x58\xb8\x11\x4f\xb2\x4b\x72\x37\x6f\x1a\x64\x90\x97\x00\x6f\x0b\xab\x9e\x1e\xae\xe9\x33\xe0\x5a\xf3\x47\xef\xa8\xf0\xd8\xa0\x42\xa9\x3e\x44\xeb\x0c\xc9\xeb\xb8\xb6\xa4\x3c\xe8\x6b\xa6\x40\x8b\x29\xeb\x24\x67\xc9\x0e\xc1\x23\xb7\xc0\x8e\xa9\xd1\x7e\x55\x84\xe0\xe1\x5e\x7e\x27\xa3\x1d\x88\x9b\x1d\x88\xe5\x91\xf5\x6c\xb6\xc8\x75\x58\x93\x79\x7e\x83\x65\x74\xdf\xbe\x39\x44\x11\x7c\xfa\x74\xf1\x9b\xeb\x6f\x53\x4b\x14\x27\xc3\xd7\xc8\xad\xee\x35\xaa\xe7\xd0\x71\x58\x4b\xb2\x82\xd3\x35\xca\x5e\xb8\x3b\xa5\xcb\x9b\x4d\xe2\x10\xcb\x86\xcb\x98\xfe\x8c\xe2\x47\x0c\x3f\xd1\x5e\x2c\x56\x70\x72\xf7\xa7\xa1\x6a\x36\x00\x93\x5c\x74\x6e\xbe\x03\x07\x8a\xcb\x78\x90\xd8\x0f\xae\x59\x36\x32\xf3\x53\x2e\xc2\x3d\xc2\xd7\x5f\x56\xb6\x3e\x4e\xdc\xe9\x99\x2d\xfd\xfb\x0e\xa8\x41\x54\x8b\x38\x61\x2a\xdd\xf1\xe2\x5e\xdd\x9b\x02\x94\x41\x98\xa4\x5a\x6c\x9a\xd0\x01\x2a\x01\x83\xde\x26\x47\x66\xe2\xea\xf4\x41\xb6\x89\x9a\x07\x47\xbb\xc7\x69\x65\x55\x10\x56\x19\xbc\xdb\xb7\x5e\x91\x02\xa1\x0b\x17\x75\x8a\x74\x3c\x82\xc5\x35\x61\x50\x45\x17\x36\xf7\xe3\x0d\xf1\xb8\xd7\xe2\x09\x70\xf2\xdc\xd7\xd3\x72\xca\x25\xba\x4a\xd4\x27\xe7\xa9\x32\x80\x7b\xb4\x04\x4a\x35\xd1\x97\x9e\xc9\x46\xa5\x7e\xd2\xe0\x1e\x42\x86\x0a\x7f\xe9\x3a\x4b\xdb\xfd\x90\xb0\x56\xa3\xa1\x28\x55\x05\x6b\xe1\x26\xe1\x7b\x2b\xd4\x52\xd6\xa3\x6d\xbf\x49\xa4\x0e\xdd\x2d\x8e\xda\xa9\xf7\x71\x61\x8a\x00\x46\x37\x5c\x6c\x2a\x7c\x0a\xee\x38\x00\xf5\x40\x9e\xc7\xdc\x87\x4c\xf6\x8a\x43\xfa\x06\x13\x5d\x28\xde\x34\x5a\x33\x3a\x60\x40\x62\x84\xc8\xf7\xe6\x53\xea\xb3\xd9\xdc\xa5\xf1\xdb\x46\x20\xe1\xf7\x97\x63\xe2\xbe\xdc\xf7\x09\x4b\x3c\xa8\x16\xde\x67\x28\xc1\x41\x33\x3d\xb0\x7a\x82\x76\x5c\x7c\x54\xd0\x55\x60\xe4\xeb\x86\x26\x6b\x4a\x8b\xb7\x28\xb2\x2c\x8a\xde\x66\xd3\xa0\xc5\xe2\x5e\xba\xaa\x7a\xdf\xc5\xda\x31\x02\x02\x9b\x84\x64\x44\xff\x6e\x9b\xe8\xeb\xb8\x84\x83\x36\x3f\xf7\xd4\x8b\xba\x0e\x84\xdb\x14\xdc\x65\x3e\x8a\x32\xcc\x37\x00\xd1\x7e\x83\xa5\x6b\xd4\x0b\x57\x9e\xa5\x77\x29\x49\x9f\x97\x12\x46\x5b\xb2\xa2\xac\x32\xdf\x72\xb8\xdc\x9d\xe6\xee\xbc\x4f\xc7\x53\xc5\xff\x8e\x48\xe5\xc7\x03\xf3\x25\x43\xd0\x21\xd2\xe7\x33\x7a\xf6\xd6\xff\x3f\x11\x81\xb4\xbf\x7a\xe2\xb4\x2c\xe8\xc0\x09\xfb\xed\x06\x37\x8c\x9b\xbf\x32\x1c\x8f\xfe\x0a\x6a\x7b\x37\x87\xcc\xd7\xd9\xa3\x3f\x9c\x8a\xbf\x7a\x31\xad\x88\x10\xb5\xba\x6f\x59\xa5\x89\xfe\x79\x81\xcd\x3d\x35\x7c\x8d\xfe\x7b\x33\xf6\x80\x73\x7b\x3a\xba\xc6\x97\x4e\xd1\xf4\xc4\xe8\x86\x80\xa1\x97\xd4\x8f\xae\xd1\x98\x19\x8e\x43\xeb\x89\x20\x4a\xee\xf3\xaf\x18\x5e\x1a\xf8\xd5\xbf\xbb\x4b\x77\xf3\x73\x09\xfa\x23\x6e\xd8\x27\x21\x26\x5e\x90\x80\xfe\x73\xdb\xef\x19\xa3\xc5\xff\x20\x00\x29\x00\xd0\x1f\x78\x22\x4b\x42\x0e\xbb\x65\x1e\x36\x31\x28\x53\x1d\xd5\x6c\xc5\x35\x71\xf4\xe9\x6d\x9a\xe5\xca\x2c\xb9\x32\x39\xaa\x89\xf4\xb8\xcc\xb2\xe1\x80\xdc\x3c\xcf\x90\xc7\xe3\x5c\x8a\xca\x65\x1f\xcb\xb1\x63\x86\xb9\xd1\x82\x05\xb3\xa0\x9d\xbe\xe4\x01\xec\x99\xaf\x0d\x1d\x8f\x6d\xd0\xaa\x92\x9b\x34\x33\x47\x02\x4a\x67\x0e\x93\xb8\xb1\x99\x77\x76\x14\x9e\x1a\x59\x72\x20\xff\xe8\x51\x93\x13\xc8\x82\x74\xb4\x5d\x9c\xa9\xf0\x42\x30\x9f\x8e\x86\xae\x1e\xad\x1d\x64\x2b\x74\x2c\xa9\xd0\x3a\xf9\x70\xc6\x46\x06\xb6\x90\xa5\x72\x74\xf5\xfc\xa9\xda\xab\x91\xc6\x81\xac\xd5\x29\x1c\x7f\x75\x13\xbf\x5b\x53\xc0\x2d\x65\x49\xf1\x91\xbf\xf3\x15\xd3\x63\x07\xd5\x90\x24\xef\xeb\xd0\x34\x53\x91\x8c\x57\x65\x19\xfc\x03\x09\x49\xb6\x88\x4b\xa1\x47\xca\xcf\x99\x67\x48\xc8\xd0\x80\x30\x67\xb0\xf7\x5c\x68\xef\xce\x98\xb4\x71\xf0\x6d\x81\x24\xb3\xfa\x21\x23\xac\x70\xa7\x95\xf4\x3f\x51\xef\xfd\x9a\x23\x4d\x7c\x37\x81\x27\xbc\x7f\x88\x31\x6c\xa5\x04\x05\x4e\xcb\xd1\x64\xc3\x89\xc9\x8b\xeb\x26\xb5\xbc\x2f\x7e\xe4\x36\xec\x51\x97\x10\xaf\x4a\x1d\x10\x35\x4b\xaf\xd6\x8d\x1b\x53\x52\x53\xe2\x86\xbd\x7a\xb2\x69\x64\x20\x2c\x9b\x48\x1f\x87\xfc\x8f\x8f\xa4\x09\xd0\xef\xd3\x15\x4c\x76\x68\x4c\x76\xdf\xb2\x05\xa7\xe8\x7c\x59\xf8\xdc\x29\xc6\xd3\x0f\x2b\xa1\xa8\x10\x4f\xba\x6d\x0d\xcf\x6b\xff\x0e\x58\x6f\xb0\xda\x8e\x3e\xbd\x65\x98\xb6\x2d\x83\xbb\x3b\xe1\x92\x6c\x22\x09\x78\xa3\x8f\x0f\xba\xce\x7e\x70\x7e\xb6\x91\xb6\x49\x8b\x3a\x71\x3a\x52\x07\x7e\xc9\x44\x75\xda\xc0\xfa\x5a\xee\xe3\x5e\x7d\xb7\x2b\xcb\xcd\xb0\xe4\x39\x8a\x7e\x76\x40\xa3\xe4\xb3\x16\xb3\x4a\x2e\x4b\xd8\xa7\x51\x05\x23\xc5\xd5\x8e\x93\x3a\xbb\xec\xbc\x67\xa2\xf9\xc5\x7d\x56\x65\x44\xc8\xb1\x7e\xfe\xa1\x97\x52\x0e\x43\x03\x28\x24\x68\x24\x57\x33\x04\xe2\xb9\x17\xd8\x72\x3c\x1e\xfd\xe7\xe9\x86\x83\x85\x20\x35\x12\xc8\x42\x37\x29\x0e\x26\xbe\x38\x4a\x7f\x15\x24\xbe\xaf\xf0\x66\x8f\x65\x0f\x0a\x78\xe3\x82\xce\x04\x12\x24\x26\x6d\x35\x28\x79\xdd\x56\x77\x82\xb6\x1f\xc8\x3f\xba\x36\x7d\xf3\x9e\x46\xd4\x1f\xc8\xaf\x78\xc9\xac\x71\xc3\x6a\x5c\xcc\x39\x09\xbc\xa2\x50\xba\xc7\x30\x90\xa4\x01\xe0\x92\xca\x03\xc5\x8f\x77\x67\xdf\x94\x26\x52\x2b\xa7\xb8\xbf\x9c\x7a\xa6\xf6\x6d\x42\x98\xf7\xfc\x43\x90\xb6\xa1\x6d\xbb\x93\xf8\xbc\x4d\x81\xd1\x04\xa9\x69\x87\xb4\x5e\x33\xa6\xa1\x94\x4a\xc2\xe1\x91\x7e\x1c\x17\x59\x82\xf9\x72\x35\x29\xab\xcf\x69\x6f\x19\x49\xd9\xe2\x61\xa2\x28\xf2\xd2\x48\x15\xcb\x6a\x82\xd1\x2a\x58\x5c\x95\x07\xf2\xdb\x17\xa6\x1f\xb0\x06\xfb\x94\x6c\x7c\x7e\x74\x73\x3a\xb7\xf0\x83\xee\x4c\x1d\xb2\xee\x1d\x39\xf1\x0a\x83\x4a\x28\x7c\x9c\xcf\x6d\x5a\x69\xec\xd8\xa8\xe6\x51\xb1\x62\xcb\x99\xda\x89\xc5\x08\x33\xfa\x19\x4c\x99\xd7\x05\xa4\x56\xe3\xfa\x54\xaa\x50\x96\xb6\xe9\xb3\x67\xcf\xee\x9e\x03\x02\xa2\xbb\x0d\xdf\x4a\x26\xa8\x2c\x71\x0a\x27\xa7\x4e\x49\x7f\xf6\xcd\x21\xf3\x3c\xd6\x64\xa4\x63\x78\x5b\xec\x99\x37\x26\x33\xc4\xf7\xaa\x04\x5d\xb4\x0b\xad\x93\x63\xcc\xf6\x44\xc2\x80\x4e\x5b\x25\xc1\xd7\xc4\x89\x2f\x3d\x04\x83\x9f\xee\x50\x2f\x8e\xea\x92\xf8\x9f\xdb\xa8\x26\xab\x81\x5d\x2a\x47\x97\xdf\xa6\x2c\x3b\x41\xf2\xb6\xe7\x14\xf5\x11\x9a\xa0\x5d\x85\x56\x1d\x03\x85\xc9\xaf\xaa\x38\xdc\xe0\xae\x4b\x85\x8f\xa0\x9a\x7b\x96\x1b\x10\x65\x22\x04\xe3\x41\x30\xc3\xad\x76\x04\xf3\xf3\x26\xc8\x09\x23\x77\x99\x27\xc7\xbd\x07\x9f\xd6\x87\x6b\xa1\x83\x72\x91\xc5\xf7\x2f\xc6\x4a\x6c\x61\x06\x23\xf7\xe5\x61\xaa\x85\x6b\x38\x54\x47\x11\x14\xcf\xdf\xf5\x7f\xf8\xbe\x62\x8b\xf8\xfc\x0e\x0d\x2f\x49\x5d\x6e\x09\x22\x61\xa3\x4f\xbd\xac\x3e\xc1\x7a\xce\x3c\x5c\x03\xe5\x2e\x33\x98\xce\x4a\x77\x04\x2f\x5d\x7d\xad\xc1\xe3\x88\xeb\x61\xa9\x66\xf2\xe5\xf7\xa4\xd2\xe1\xe5\x57\x27\xcb\xe6\x13\xdb\x8d\xdd\x37\x0b\x58\x85\x78\x8d\x41\xa4\x07\x5b\x27\x74\x05\xb2\x50\x20\x84\xf0\x86\x49\xd9\x8a\xb1\x49\x1c\xa0\x95\x30\xc4\xd6\xcb\x00\xf3\x99\x4b\xd5\x39\x9e\xb7\x60\xd6\xec\x52\x39\x1a\xf2\xee\x18\xbd\xcd\xd9\xc0\xdc\xf8\xf7\x02\x88\xe8\xb0\xfe\x8b\x38\xf7\x61\x23\xf4\xfd\xb5\xd9\x08\xd6\xa6\x04\x85\xa9\x60\x9f\xb1\x69\xe7\x68\x7d\x30\x63\xd1\x24\x7a\x8f\x35\xd4\xb7\x7c\x58\xa6\x8b\x84\xb4\x99\x8b\x56\xab\x5f\x86\xea\x43\xa5\x72\x74\xc7\x34\x1d\xe2\x8c\x66\x14\xf1\x5f\xde\x7d\x50\xfd\xf7\x1a\xf3\x12\x61\xe5\x5c\x61\x7f\xb2\xae\xe0\x74\xbd\x3e\x8f\x9e\x6f\x78\xc9\x2c\x48\x59\x2c\xc9\x68\x6f\xfe\x29\x0a\x82\xb2\x9e\x8b\xaa\x96\xc1\x07\x0a\xa7\x4e\xef\xd2\x74\xf2\xe2\xc2\x06\xf0\x3f\x30\x8f\x19\xa9\x21\xd4\x42\xe1\x87\x28\xb6\x7b\xe2\x99\xae\x8e\xec\xd8\x0d\xc3\xae\x37\x16\x9e\xa9\x43\x54\xe0\x8c\xad\xf1\xce\x35\xc2\xbb\x20\xed\x0a\x15\xa2\x4f\x87\xc1\x0f\x14\x3f\xba\x57\x0e\x32\x82\x10\xb4\xa0\xf2\x4b\xc6\x99\x9b\x35\x8f\x39\x04\x13\x4a\x9c\xe8\xe6\xdd\xaa\x59\xfe\xda\x2e\xf1\xfc\x4e\xcb\xdf\xfc\x97\x97\x6a\x0a\xce\xf1\x63\x29\x47\x77\xbc\xa1\xa1\x18\x89\x08\x7d\x98\xba\x7d\xe5\x95\x61\x32\x4a\x11\x07\x95\x55\x73\x17\x69\x40\x14\x49\x6f\x41\x45\xcb\xde\x25\xd9\x07\x50\x27\x29\x23\xe3\x05\x6d\xc7\x15\x50\x2f\x44\x61\x87\xe2\xa9\x93\xd3\x39\x49\x1b\x94\x70\x54\xc0\x5e\x7e\x58\xad\xda\xeb\x71\xeb\x08\xbe\x31\x89\x50\xca\xb0\xe9\xe3\xb5\x4e\x44\x50\x52\xd5\xf0\xa0\xb9\xea\x09\x5d\xd2\xcb\x41\xdd\x89\xfc\x27\xa6\xa7\xb1\xcd\x02\xde\x6b\x61\xde\x63\xaa\x48\x8a\xaf\x31\xf3\xa5\x88\xc7\xe8\x17\x86\x26\x01\x73\x3e\x58\x2a\x38\x4f\x69\xf8\x72\xea\xd5\xd1\x67\x2a\x7f\xe3\x06\xad\xed\x21\x2c\xc1\x91\xe4\xe7\x48\x7d\x6b\x69\x3a\x0c\x2f\xfc\x8b\x6f\x8d\xd4\xb7\xce\xa1\x53\xc7\xf2\x7c\xa9\x34\xc2\x26\x5e\xbd\xc1\x1b\xc9\x2c\x65\xf6\xb4\x71\x5a\x6f\xee\x67\x8c\x69\xf2\xfb\xaf\x30\x6d\x92\xdc\x26\x0d\x18\xec\x8b\xd0\x83\xef\xbd\x6b\xb2\xa1\xaf\xc5\xfb\x48\x5d\xe9\x5e\x2d\xb6\x87\xca\x6c\x88\x82\x12\xb9\xbf\x7d\xce\x5c\x91\x80\xbb\x0e\x50\xd4\x10\x7b\xb0\xf6\x1a\x2c\x77\x57\x31\xbf\x23\xf1\x16\x3e\x72\x62\xa2\x51\xbe\xfb\xd4\x55\x50\xb0\xe8\xb1\x77\x0c\x65\x99\x3e\xb4\xa2\x88\xaa\x8e\xb1\xf4\x66\xbe\x64\x3d\xe1\x30\xeb\xde\x29\xca\xd7\xea\x3c\xe2\x36\x3f\xdc\x51\x94\x6c\xe9\x37\xea\x6a\x5b\x10\x3f\x1d\x2b\x7e\xc3\xa0\xeb\x5b\x0e\x78\xe2\x62\x9d\x91\xff\xf9\x04\x13\xb4\xd3\xe7\x36\x99\x25\x8b\xc2\xbf\x5f\x87\x6a\x18\xd7\x82\x25\x6e\xee\x49\xcf\x64\xda\x57\xa9\x13\xdf\xd5\xf2\x40\xbe\xfe\x9c\xa1\xa7\x2b\x48\x4d\x52\x21\x73\xcf\xed\xc9\xce\x51\x99\xef\x10\xa0\x1b\x0e\xc6\xd4\xcb\xfd\xdb\x49\x63\x03\x22\x88\xe7\xd7\xe2\xbf\x0d\x87\xe8\xb7\xeb\x0c\x88\x07\x11\x55\x5f\xbe\xf3\x6f\x6b\x1e\x9a\x1e\x45\xed\xf6\x70\x9f\xa2\x53\x33\x5d\x9b\xee\x6f\xb6\x19\x60\xe2\x16\x15\x7d\xdc\x4b\xec\x94\x1e\x5a\x61\x28\x88\xfa\xb6\x74\x6a\x1c\xc8\xf7\x1e\xeb\xa0\x4e\xcc\xeb\x96\x12\xc6\xb9\xff\x39\x60\x54\xe7\xb4\xc5\x1c\x87\xa6\xec\xd2\xe3\x6f\x9c\x95\xd1\x9d\x23\x01\xcd\x58\x2d\x9e\xfa\xa8\xbe\xda\xf5\xad\xa4\x15\xc8\xdf\xb2\xe6\x0c\x5d\x44\xb0\x1c\x9d\xb9\x50\x33\xc9\x48\xb5\x1f\xcb\x03\xb9\x71\xaf\x4f\x36\xd2\x62\x40\x1a\x2c\x5b\xcc\xe7\xfe\xf5\x36\x63\xbb\x4e\x7d\x9f\xb9\x10\x00\x30\x99\x9f\x93\xc7\x2b\xbc\x82\x59\x3c\xc9\xd8\x1f\x6b\x19\xa0\x42\x56\xf7\x12\xeb\x8d\xdc\xa5\x5e\xa7\x32\x44\xfc\xcc\x00\x26\x98\xef\xde\x66\x98\x04\xcb\xcd\x56\x22\xe8\xff\xbf\x7b\x35\xb6\x8f\xc3\xdb\xf1\xe1\xb7\x35\x82\x7c\x0d\x47\x30\x03\xf9\xfb\xa7\xab\xdc\x2d\x6d\x89\xe4\x52\xf2\x0c\x6f\x4c\x66\x94\x45\xe2\xba\x05\x4e\xcd\x1f\xa6\xa6\x61\x16\xc7\xb5\x2a\xcc\xbe\x31\xd5\xc0\x48\xd5\x6a\xac\x4a\x5a\x4c\x6a\x0f\xad\x7b\x6a\x9c\xde\xb6\x59\xd4\x93\x00\xd7\xf8\x1b\xef\xda\x9d\x8e\x51\x3d\x1a\x68\xe3\xef\xad\xbd\x4a\x9f\x05\xb4\xca\xe0\xf3\xed\x78\x29\xa1\x1a\xba\xc8\x57\xce\xdd\xf6\xba\xe2\x36\xf3\x5a\xa9\x1c\xe5\x0f\xa8\x18\x59\x23\x22\x40\x9b\xab\xdc\xce\xed\x0a\x30\xc6\x74\x1e\x95\x6b\x88\x79\xf4\xf1\x10\x35\xfa\xe0\x15\x92\xfb\x75\xbd\x10\x84\x63\x3e\xb2\x17\x1b\x92\xab\xe2\xa3\xa7\x3f\x89\xc2\xf8\xca\x07\xb1\xb6\xe7\x8e\x17\xf8\xb4\xe5\x37\x48\x9f\x19\xe9\xa2\x5f\x8f\x1c\xa3\xbd\x26\x58\xd8\xda\x28\x76\x74\xdf\x3d\xea\xf6\xcd\xea\x9e\x0d\xe4\xd3\x99\xf3\x35\xc8\x26\x77\x2b\x04\xe5\x96\xa2\x3e\xc3\x40\xd5\xa3\xac\x6e\x57\xb8\xbc\x60\x85\x13\xdb\x4c\x59\x3c\x61\x25\xd2\xc4\xd1\xf9\xef\xa8\x81\x65\x93\x79\xfd\x36\xf5\x74\x91\xa3\x57\x57\x19\x6d\x2e\xad\x32\x8b\x79\x08\xe6\x2e\x4e\x3e\x6a\x7a\x9c\x34\x51\xe1\x1d\xe0\x92\xb6\x66\x5e\xc4\x9b\x14\xa1\x44\xd1\x9a\xcd\xe7\x62\xda\x3b\xff\x6a\x87\x96\xaa\xb4\xb4\x58\x80\x06\x54\xc7\x92\x72\x1a\x56\x0a\x2e\x4f\x0c\xde\x72\xed\xa2\x36\xfd\xb2\x2c\xea\x48\x89\xcc\xf2\x40\x71\xb1\x6d\xe2\x64\x6c\xea\xa1\x67\x76\x12\xa2\xba\x0d\x1b\xef\xa6\xe0\x15\x87\xba\x72\xa9\x39\xe7\x50\x36\x42\xd9\xd4\x69\x26\xac\xa6\x53\x57\xaa\xe4\x29\xb8\x5c\x62\x24\x3f\x76\xd3\x0b\x23\xb5\x4d\x20\x17\xc8\xbf\xfb\xc9\x3b\xa6\x39\x23\x11\x72\x1a\x07\xf3\xb6\xda\x9e\x2c\xbc\xec\xe2\x19\xa2\x02\xdd\xff\xa9\x2f\x9a\x33\xc1\xb9\xb3\xf0\x61\xdf\xb1\x44\x45\x2c\x1a\xff\x8e\xd5\x9b\x26\x1a\xfd\x03\xa4\x7c\x85\xf9\x9c\xdd\x9d\xfd\x59\x95\x30\x40\xae\xe1\xd2\x9e\x04\xa4\x69\x51\xd6\x44\x75\xe3\xc5\xef\x49\x19\x2f\xed\xe2\xcd\xec\xce\x16\x95\x0e\xa9\xa1\x11\x32\xcd\x3e\xda\x1d\xcf\x18\x4a\xfa\x5c\xe3\xba\x86\x6f\x67\xe3\xa7\x8d\x26\x1b\xd9\xf8\x39\x63\x9d\x44\x68\x7b\x19\xfa\xcf\x72\x4d\xa4\x56\x90\xc4\x15\x66\xef\x16\xc5\x0a\xf7\x48\xa9\x1c\xb5\xe7\xa8\x8b\x01\x4e\x1c\x49\x8c\x98\x76\xa7\x26\x2d\x58\x0d\xeb\xbc\x55\x2a\x47\x9f\xd5\x8a\xaf\xa6\xe0\x75\x0a\x2a\x3a\x85\xff\xbc\x5f\xcb\x77\xc4\xa5\xa5\x72\x34\x29\xca\x16\x46\x76\x18\x84\x19\x7e\x76\xae\xfb\xe8\x98\xb4\x02\xf3\x61\x7f\xc0\x90\x8a\x96\xfb\xcd\x51\xc3\x21\x84\x55\x13\xb0\x7a\x6e\xce\x0e\x63\x16\xd3\xa4\x44\xd8\x71\x80\x4f\xe0\xec\xbb\xef\xc9\x02\x7b\x78\x0d\xf5\x06\x7b\x94\xf8\x61\x85\x76\x5e\x9a\x8f\xef\x30\xd2\x30\xc0\xe4\xe4\x94\x37\x1a\xf9\xac\x36\xc4\x6b\x3a\x2c\xc5\x9f\xcc\x6f\xaa\xc7\x54\x0f\x29\x5a\x0f\xfd\xf0\x31\xac\x57\x2c\x50\xef\xda\x79\xab\x7a\x3a\xdd\x73\x2e\x82\x78\xf4\xd2\x35\x06\x96\x21\x08\xb8\xf0\x28\x08\xff\x47\x7f\xf3\xb2\x74\x7f\x73\x5d\x06\x46\xe4\xf1\xcf\x9c\xb4\x53\x53\x0b\x4f\xe4\x1f\x8b\x63\xcd\xd2\x21\x99\x99\x3e\x73\x7a\xf6\x5c\x95\x2a\x21\x73\x12\x46\xf0\xf6\x9b\xce\xd4\x46\x83\x28\x70\xfe\x87\x07\x3a\x40\x6e\xeb\xa9\x15\xa4\x87\x31\xf7\x71\x59\xa9\x5a\x36\xd8\x79\x47\x77\xac\x4a\x2b\x73\x37\xee\x5a\xce\x7f\x2c\xdb\x73\xcc\x9e\xd5\x3d\x5f\xce\x9e\x0a\x4f\x99\xdb\x22\xea\x49\x25\x44\xff\x59\xf5\x51\x5c\x70\x6b\x88\xbe\xb3\x64\x84\xca\x91\xeb\x93\x1b\xf9\x89\xcd\x43\x13\xfa\xd3\xf5\xcb\x4b\xe5\xe8\x0c\x4d\x9b\x2a\xe0\xcd\xb8\xd0\x6b\xe3\x3c\xf6\x97\x47\xd4\xfa\xa1\x1f\x98\x2b\xf3\x85\x02\x7d\xde\x12\x7f\x97\x75\xf3\x27\xca\xe2\x2c\xfe\x6b\x8d\x4e\x99\x86\xfb\xee\x31\xe1\x6b\x20\x32\x13\x27\x06\xc4\x40\xfc\xfa\xa0\xe4\x0d\xf3\x30\xee\x2b\x40\x59\xd6\xd1\xcc\xcf\xe2\xc2\x12\x3c\x14\x5f\x7b\x39\x1b\x5e\x1b\xa4\x82\x4d\xa2\x9a\xd4\xf2\x4d\x83\x4d\x47\xd2\xae\xfe\x5f\xef\xee\xa8\x34\x45\x1f\x50\x94\xa2\xf1\xaf\x68\x9e\x5b\x24\x60\x3e\xe2\x6d\xa2\x8f\xce\x3f\x43\x69\xf7\xc4\x2f\xe7\xab\xbf\x94\x1f\xd7\x66\x56\x03\xf7\xa1\x5d\xd7\xe8\x52\x48\x1e\xed\xb3\xc2\x00\x80\xc8\x9f\x5c\xa2\xe9\x8f\x92\xa6\x4d\xfa\x89\xa8\x22\x83\x6f\x8f\x1c\x12\x35\xe3\xb6\x42\xc0\xdb\x7a\x7e\xbe\xe6\x29\x09\x60\x90\xf8\xf1\xfc\xf3\xc1\x0c\x60\x58\x48\xe3\xa9\xdc\x05\x5b\x54\x6b\x8b\x82\x68\x30\xe0\x1b\x39\x5e\x8b\x1f\xfd\x44\x64\x44\xdf\x1f\xda\x6b\x00\xaa\x9a\x4d\x41\x2d\x06\xcd\x03\x2a\x32\xfc\xe7\x4e\x45\x47\x24\x9a\xd9\xd2\x0d\x53\x35\xb0\x9e\x2e\x06\x70\xf3\x16\xcd\xf8\xc6\x4b\xed\xd7\x00\xc1\x34\x04\x8f\x46\x93\x0a\x10\x9c\x8b\x13\x2c\xf5\x6c\xe2\x25\xfb\xb1\x0d\x0f\xa4\xc7\xd3\xa5\x12\x9a\x13\x5d\x65\x4b\xe7\xe4\xfa\x20\xa1\x65\xd8\x93\xba\x78\x20\x09\x68\x1b\x20\x98\x03\x85\x7f\x82\xcf\x0d\x67\xba\x5b\xaf\x80\x72\xfe\xbc\x51\x46\x8e\x03\x1d\xf7\x73\xde\x35\x78\xf0\x12\x69\x9c\x2c\xaa\x4e\x3d\x61\xb4\xfd\x34\xa9\x28\xf2\x0f\x1f\xce\xfe\x51\x9b\x08\x57\x1a\xea\xf8\xa7\x9d\xa9\xbd\x6f\x01\x4f\xf4\xdf\xf6\x64\x77\x7d\x35\x22\xcd\x4f\xcc\xc1\xe8\x0a\xc3\x98\x2e\x5d\xad\x29\xfc\x69\xee\xd3\xf3\x46\x24\xc7\x03\x3d\x01\xa0\x14\xbe\xe6\xc9\x4e\xc4\xb9\x9f\x2a\x04\x7c\x68\x9c\x49\x87\x6e\x3a\x4c\xba\x26\xe6\x47\x3c\xa3\xa9\x38\x35\x99\xc0\xa9\xcf\xa1\x15\x9a\x12\x30\x71\xa8\x57\x25\x50\x17\x08\xbb\xc3\x26\x19\x16\xe0\xc9\xa3\x79\xfb\xbd\xf1\x46\x74\x0a\xe3\x2e\x1f\x07\x46\xdf\x7e\xda\x40\x55\xf1\x3e\x5f\x02\xa7\x2b\x8f\x68\x7c\xbc\x54\xb1\xc6\x7c\xf9\x37\xec\xc0\x5c\xc0\xdb\x71\xb8\xdb\xb8\x4d\x03\x83\x37\x7d\xe6\x74\x12\x9d\x8a\x9f\xdd\x9a\x56\x2b\x36\xc4\xc8\xda\x33\xda\x18\xd6\x01\x31\xfa\x52\x39\xea\x9f\x39\xca\x48\x21\x20\xe7\x92\xff\xca\x9e\xec\x93\xab\x52\x97\x78\x55\xe8\x5a\xa3\xdf\x98\x27\x11\x91\x80\xd1\xcc\x87\x87\xcb\xd7\xdf\xe7\x07\xc4\x6a\xc0\x48\x68\xd1\xd3\xd9\xb8\xc3\x3d\x98\x40\x40\x1f\xf0\x2b\x35\xc7\xae\x3b\x3a\x01\x78\xc8\x6d\xc6\xe8\x8d\x92\xaa\xec\x8a\xdb\x4d\x85\x4f\xa0\x7e\x1c\xc5\x32\xbc\x1d\xef\x8a\xb3\x4c\x4d\x08\x9c\x02\xc9\xe9\xe9\x4d\xc3\x32\x50\x63\x56\x4f\xb6\x9f\x93\xb6\x68\x88\x51\x9b\x0a\x56\x8b\x1b\x98\x7d\xf9\x2c\x0f\xb2\x86\xb5\x32\x02\xc8\x3a\x79\x90\x03\x85\xff\x7e\x63\xa8\x2c\xe5\x89\x17\x87\xf8\xc2\xaf\x96\x19\x71\x37\x0e\x02\x52\x01\xf8\x7f\x46\x67\x8b\xd0\x39\x17\xc9\xd4\x7a\xde\x0b\xc6\xae\x32\x41\x9a\x60\xba\xb3\x97\xe8\xde\x11\xa2\x02\xed\x5b\xf1\xca\x89\x69\x97\x96\xf2\x28\xa2\x4f\xad\xd6\x87\xb9\x4e\xca\xaf\xc8\x7f\xcf\x10\xa7\xb1\x78\x28\x12\xfc\x4e\x6e\xf8\xed\x09\xea\x21\x21\x4d\x44\x73\xb6\x68\x0e\x8e\xd4\x22\x55\xd9\xf3\xbd\xbb\x4e\xc2\xed\xa8\x9f\x8e\xc6\xce\xd9\x60\x94\x57\xb0\x69\x06\xc1\x0f\x59\xed\xbf\xb7\x31\xc3\x5d\xf5\xd1\x9b\xb0\x7e\x89\xc6\xe2\x72\x88\x70\x31\xdc\x5f\xb4\x7d\xbc\x36\xa0\x24\x50\xe0\xa9\x1a\xf5\xde\x5a\xfa\xb5\x2b\x22\x4c\x5a\xfb\xf2\x09\x03\x02\x40\xda\xd4\x66\x9e\xcb\x32\xf8\x8b\x81\xfc\x5f\xa6\x75\x69\xf9\xcb\x6f\x82\x06\x02\xcc\x45\xf3\x0b\x9e\x37\xac\x64\x43\x0b\xa9\x82\xf2\x24\xfe\x7a\xab\x0e\xe3\xf3\x78\x2b\x69\xa4\x0b\x0d\x03\xa0\x3c\x7b\xae\x39\xab\x2e\x5e\xdd\xa5\xcb\x46\xb0\x04\xa1\x3d\xf3\x95\x41\x94\xd9\xa4\xff\xc6\xf1\xfd\x18\x00\x57\x65\x39\x56\x53\x3b\xba\xaa\xb8\xe2\x92\x8b\xa9\xed\xf7\x28\xf3\x1e\xb8\xa3\xa7\x06\xa6\x5e\x87\x65\x0f\x6e\xed\x72\xfe\x1e\x29\x89\xc6\x7c\x69\x26\x6e\xa5\x7e\x39\x73\x47\xab\x60\x2f\x08\x80\x8c\x8b\xa7\x3e\x9d\x6d\x33\x5c\xe2\x70\x8f\x42\x0b\xa7\xae\x67\xde\xd1\x62\x2e\xaf\x05\x58\x44\xdc\x70\xe4\x8c\xa4\xb7\x73\xf0\x39\xb8\x53\xb3\x1a\x11\x15\x01\x8e\x3c\x38\x63\x33\xef\xdc\x17\x56\x64\xcb\x2c\x8f\xd5\xa9\x00\x63\x6f\x7c\xd8\xf9\x81\xa3\xe3\xb5\xb3\x8b\xd3\x5e\x75\x04\x6e\xb4\x3b\x34\x42\x21\xf5\x24\x2b\xdd\x9c\xd3\x9f\xdd\xcb\x34\xa8\xe7\x51\x07\x69\x67\xea\x1c\xfe\xd3\x66\x73\x22\xc4\x43\x1f\x62\x26\x6e\x8c\xfe\x5d\x73\xac\x6a\x93\x00\x84\xa8\x20\xf2\xfc\xe0\x64\x36\x4b\x56\xa8\x33\x28\xfb\x3c\x77\xae\x74\x14\xb2\x6c\xd6\x22\x0e\xe0\xca\x8b\x15\x5b\xb3\xf2\x85\x4d\x52\x9d\x4b\x84\xc2\xc4\xd7\x3b\xe4\x82\xd2\x06\x27\xba\x75\xaf\x46\xe9\x72\xe2\x87\x1b\xb7\x07\xdf\x79\xf1\x02\x75\xd3\x80\x59\x86\x8c\xe5\x80\x59\x9d\x4a\x1a\xc5\x69\xa7\x0f\xd7\x30\xbf\xc0\x90\x1b\x28\xfc\xf8\x35\x04\xec\xcd\x99\x0b\xeb\x9f\xe8\x3e\x85\x4f\xf0\x6c\x70\x91\xdc\x3a\x65\xa2\xae\xa1\x04\xa6\x90\xba\xcf\x46\x71\xae\x61\xb4\x17\xd8\xc4\xc3\xb9\xf3\x45\xeb\x3b\x18\x80\x0c\xc2\xa9\x54\x53\x7a\x5c\x71\x4a\x5d\x88\x5a\x0f\x74\x6b\xe6\x3b\xc4\x69\x48\xfc\x62\x7e\xf8\xe6\xf3\x8c\x84\xec\x07\x83\xb3\xbc\xf3\xc3\xde\x3e\x33\x43\xb3\x8f\x7f\xcf\x90\x65\x19\x65\x90\x44\x02\xaa\xa8\xc2\xf2\xdc\xd9\x33\x2f\x9a\x3b\x37\x7e\x0d\xb7\x3c\x9e\xbd\x17\xd5\xb8\xf0\x36\xb4\x4c\x8b\xe3\x9f\x1e\x9d\x41\xbb\x25\xce\xc3\x85\x5d\x3b\xb3\xe9\x43\xb0\x3a\x93\xa9\xb0\xf8\xa9\x55\x09\x2a\x85\xb6\x71\xb6\xf3\xf8\x21\xa5\xc8\x3e\x88\xf4\xc9\x65\xa7\x19\x80\x1a\xd0\x55\x76\x70\x4c\x95\xbb\xe7\x8a\x51\xda\x28\x97\xc8\xe6\x34\xba\xd2\xd3\x57\x25\x71\x84\xa4\xa5\x72\x8f\x52\x54\xb7\x3a\xb5\xa6\x7e\xbe\x1c\x9b\xf2\xa5\x08\x79\x53\x38\x9a\xed\xa3\x35\xa1\x77\x9d\x3f\x79\xed\x6b\x5a\x5f\x4a\xa5\x4c\xd1\xb7\x03\x63\x3c\x6b\xd9\xd4\xa5\x72\xdb\x7b\xa8\x57\xe3\x66\x30\x07\x99\x0b\xc5\x3b\x37\x8e\xd5\x61\xc7\x16\x77\x3c\xdf\x66\xa8\x8a\xba\x73\xe7\x59\x66\x37\x16\x42\x3a\x97\xb1\x72\xd8\x9c\xec\x35\x6f\x71\x87\xfb\x36\xea\x31\xa4\xdf\x60\xe3\x15\xe6\xcc\xc7\xa7\x00\x70\x4e\x58\x5c\xcd\x9b\x0c\x1c\xcf\xcd\x21\xa5\xfd\xc9\x5c\xa1\x78\xc5\x38\x29\xdf\xd2\xe1\xd1\x22\x5f\xe6\xec\xf9\x33\x2f\xba\xe8\xa2\x52\xfc\x77\xfb\x96\xe9\xb6\xac\x3c\x6e\x04\x0b\x8f\xbe\x71\x96\x59\x81\x37\x1d\xe2\x25\x38\xe9\x42\xf3\x79\xf3\x4b\xb6\x50\x9a\x50\x0a\xc6\xbe\x23\xf7\xd6\x4b\x69\x5d\x0a\xaa\xe4\x1f\xbe\xaf\xc3\x94\xac\x1a\x5a\xa9\xe0\x77\xee\x7c\xa3\x18\xb1\x6c\xe6\xe9\x85\xf9\xf7\x1f\xc2\x8d\x57\xe8\xd5\xb8\x08\x42\x4f\x2a\xc4\x9d\xbd\xc6\x34\x7d\x41\x85\x2e\x24\x10\x3d\x3e\x44\x13\x49\x0f\x9b\x4d\xee\x53\xe8\x0e\xa3\x5f\xdc\xad\x5b\xe8\x52\x41\x2b\xf0\x21\x6b\x27\x35\xfb\x67\x41\xa9\x57\x21\x56\x23\xfe\x35\x47\x6a\x86\xee\x0e\xf5\x7c\x56\x61\x0e\xf2\x7c\xe1\x1c\xbd\x64\xf8\xf6\xa0\x07\x64\x8a\xcc\x2b\xdc\xb8\x39\x9b\x13\x6f\x26\x5e\x90\xa8\x97\x65\x2f\xd0\xc6\x4b\xb3\x27\x12\x37\x79\x92\xcd\xb2\x7f\x49\xf6\x93\xb4\x59\x60\x4b\xab\xa1\xa4\x49\xb8\xb7\x3b\x63\xbc\x2e\xc7\xef\x70\x3a\xbb\x9f\x32\x2d\xdb\xd0\x36\x0e\xb7\x75\x33\x66\x66\xfe\x21\x68\x6f\x4a\xdb\xcd\x73\xe6\xa8\xab\x33\x47\xb2\x29\x73\x9f\xbc\x63\xb4\xce\xbc\x26\x89\x1e\x63\xe1\x96\xf5\xa3\x15\xd9\x56\x1b\x00\xe6\xbf\xfa\xb2\x66\xa8\x48\x49\x2b\x45\x81\x6f\x7c\xea\x4c\x8d\xee\x0f\x8b\x8c\xc9\xab\x54\xad\x5c\xe3\x82\x42\xbb\x1e\x7d\x68\x6d\x97\xbe\x10\x65\x68\xc0\x87\x0a\x50\x12\x7f\xec\x92\xf5\x5c\xc0\x9b\x89\xff\xeb\xbb\x73\xce\x31\x2a\x06\xcf\x26\x41\x00\x0a\x54\x32\xf8\xfc\xd5\x24\xc3\x41\x85\x4b\x7f\xe0\xf2\x40\xfe\xf3\x15\xbd\x2c\xe4\x7e\x33\xd3\x08\xfc\x75\x71\x9a\x91\xd5\x1d\x44\x02\x23\xbe\x2d\x5b\x41\xfc\x83\xa7\x60\x32\x68\x37\xda\x5a\x6b\x20\xc8\xbc\xaa\xa0\xed\x2c\x78\xf7\xc2\x93\xa3\x34\x92\x07\x49\x2f\xc4\x0f\xf2\xd9\x5f\x1d\x57\xbf\xdc\x95\x7b\x48\x73\x46\xb4\xef\x75\x99\x4a\x6c\x58\xde\x4a\xbb\x7d\xa2\xf9\x37\x04\xdc\xad\xa0\xc4\x6c\x79\xa0\xb8\x65\x89\x44\x2c\x71\x87\xb7\xfa\x74\x63\xac\xfc\x95\x93\x35\x32\x64\x8b\x0a\x9b\x26\x74\xfb\xc2\x55\x79\x95\x85\x9b\x0e\x44\xbb\xe5\xb7\x1b\x70\x54\x70\xd1\x4a\x04\x09\x2e\x7b\x4c\x43\x2a\x55\x01\xf9\x8f\x36\xfc\xb9\xc7\x82\x2e\xe5\x24\x4c\x33\x98\xac\xad\x77\xa9\x7f\xd4\x08\x75\x53\xf9\x13\x45\x59\xe0\x85\x15\x44\x1e\x07\x93\x0c\xf5\xfb\x16\x15\xf1\x75\x97\x2c\x12\x91\x5c\xcd\x8f\xbf\x64\xc8\x8d\x72\x0c\x1f\x23\xb7\x66\xff\x7d\x95\xb7\x07\x2d\x99\xfe\xa8\x15\xaa\x9c\xe1\xf4\xfa\x8e\x1d\x1a\x4b\x4f\x26\x34\xd9\x14\x6d\x1b\x32\x46\xa6\x20\xa7\x26\x51\x0a\x72\x5e\xf3\xc0\x90\xe1\x19\x08\x11\x42\x7a\x1f\x56\xd5\x05\x6d\x51\x2f\x81\x6c\x5c\x78\xd4\xd0\x1d\x75\x02\x58\x53\x4b\x9d\xdb\x37\xf7\xa7\xb3\x1f\x51\x49\x91\xe9\x3f\xba\x49\x8a\xd6\x30\xab\x41\xe1\x25\xfc\xb5\x71\x06\x75\x01\x75\x2b\x79\x42\x0f\x2e\x1b\xa9\x2f\x58\x43\xd9\x33\xfd\xdb\x30\xfc\x69\xd7\x25\x83\x8d\xc2\xe3\xbd\x4a\x2e\xbb\x61\x0a\x43\x45\x7b\x0e\x9b\x3e\xa5\x08\x41\xe0\x42\x26\xae\xe1\xcb\x8c\xcd\x3b\x11\x82\xa5\x69\x6d\xdc\x64\x39\xd6\x4d\xa8\x93\x3b\x4e\x31\xb6\xa7\xac\xa5\x6d\x5f\x3e\xf2\x90\x8a\x29\x35\x8a\x92\xcf\xdf\x32\x74\x8a\x5b\x71\x0f\x9e\x90\x89\x13\xa5\x97\x59\x97\x68\xfb\x04\x3f\xd1\xd8\xbe\x6e\x4a\xb6\x60\x24\x4d\x22\x40\xdd\x22\xfa\xe2\x7c\x65\xe9\x2c\x3a\xee\x7d\xee\xd0\x70\x53\x26\xb4\x09\x2a\x89\x72\x40\x51\x9c\x3d\x14\x2f\x67\x9c\x42\xdd\x74\x4f\x7a\xaa\xa1\xda\x44\xaa\x2e\x4b\x8c\x46\x7f\xdf\x9a\xa2\x05\xc1\x38\xf7\x0e\x36\xcf\x29\x9e\x6e\xcc\xc9\x43\x4f\x50\x97\x05\x41\x2a\x47\x74\xc7\x23\x69\x44\xaa\xf4\x41\x3e\x1d\x3a\x0c\x9a\xea\xd2\x22\x12\xd8\x1c\x04\xe2\xcc\x28\xf6\x57\xdb\x4d\x10\x61\x4d\x0e\x1a\x96\xcd\x37\x6d\x1a\xa5\x8d\x18\xe2\x1d\x8a\x33\x6e\x45\xd5\xb0\x85\xc4\x89\x4b\x7d\xf3\x70\xec\xee\x36\xc8\xab\xa1\xf0\x52\x8b\x85\xaf\x6b\xa0\xc6\x5a\x5c\xd4\x90\x84\xa3\xe4\xbd\x31\x3e\xad\xf6\x48\xc7\xb3\xdf\x71\x3f\x4e\x8b\xae\xf6\x98\x12\x77\x9b\xbd\xb7\x53\x6f\x90\x38\x49\x71\x33\xd5\xce\xce\x15\x68\x1c\x2a\x9a\x82\xf9\x49\xf5\x95\xff\xcd\xc6\x0f\x1a\x2f\xd4\x26\x42\x8a\x20\xa9\x70\xf4\x33\xa3\x24\xb7\xc2\xf8\x2c\x67\x27\x03\xb9\xd7\x0c\x67\x67\x10\x2d\x95\x8b\x9c\x87\xef\x48\x27\xe3\x6d\x06\xe7\xbd\xb5\x0c\xeb\xaa\x66\x28\x69\x22\x03\xb9\xde\x4d\x8a\x66\xee\xf2\x2a\x15\x9d\xb0\x2d\xfa\x54\xf6\x83\x6c\x60\x01\x97\xb7\x44\xc5\xf5\xbb\x35\x04\x9d\xa0\x56\x03\xe9\x3e\xd1\x07\x97\x0d\x95\xd5\x3f\x03\xac\x5f\xfe\x8d\xd5\x63\x64\xa9\x08\xef\x96\x87\xbe\xb4\x23\x2a\x3a\xbb\xf4\x6c\x52\x25\x7d\x32\xbb\xb6\x9f\x1b\xa1\x74\xaa\xa8\x8c\x5e\x85\xdf\x3e\x24\x57\xea\xa1\x17\x10\xa1\x53\x08\xbf\x61\xf8\xc4\x4b\xf3\x07\x5f\x13\x17\xb9\xf8\x11\xac\x6f\x3f\xc6\x05\xd7\x5d\xf4\x72\x17\xaf\xc8\xfe\xdb\xf5\xa1\xc3\x0c\xbd\xb7\xdc\x55\xab\x32\x48\x34\x9f\x26\x48\xcd\x37\x17\x2b\x54\x68\xd3\xe6\x01\xaf\x0b\xd2\xb4\xe1\x31\x7c\xf2\x26\xd5\xf2\x81\xc2\x58\xae\xaf\x78\x86\x42\x17\xc4\x7f\x65\x6b\x71\xbc\x3c\x69\x55\xba\xa1\xe3\xd6\x84\xdb\x8d\xf2\x96\x05\x7d\xd2\xfe\x04\x82\xf9\xf5\x87\x74\xe0\x20\xb5\xc0\x09\x03\xba\xad\x47\x95\xee\x0d\xf7\x34\x31\xcf\xc2\x7f\x5f\x3c\xda\x2c\xd2\x51\x16\xe0\x35\xe9\xd8\xe7\x13\xc2\xe0\xe2\x5d\xf5\xd6\x48\x19\x2a\x02\x2a\x5a\x8c\xe2\xf2\x29\x7f\xfb\x09\xe4\x0b\x2e\xe3\x2d\xde\xe9\x6a\xf1\x9f\x07\x8c\x16\xa3\x89\xf2\x78\xf2\x42\x9e\xb3\xbd\xa3\xcf\x01\xe5\x36\x39\xb7\x2a\x8e\x7a\xe1\x4c\x7d\x92\x07\x38\xd1\xeb\x6b\x8a\xaf\xe0\xa8\xc6\x2c\xba\x7c\xad\x61\xa2\x40\xac\x86\xdc\xa1\x7e\xe1\x64\xfa\x98\xa9\xe7\xc4\x25\xfd\x06\x9d\x1a\x07\x06\x5c\x28\xf4\x95\x5b\xb8\xc3\x90\xfc\xf6\x00\x9a\x84\x8d\x5c\xff\x38\x35\x46\xa3\x2d\x62\x85\x69\xd5\xe2\xdd\xd7\x31\xd7\xb1\x03\x17\x35\x08\xe0\xb6\x2f\x5f\x63\x4e\x3c\x41\xb3\x74\xb8\x66\x33\x14\x0a\x41\x3d\x0b\x0b\xce\xdc\x6f\x9e\x33\x69\xd5\x8e\x43\xea\xb2\x23\xf9\xfc\x64\xd3\xc5\x87\xb8\x12\xa5\x75\xd6\x48\x8d\x29\x40\x89\xb0\xf0\xe8\x9d\xfa\xd8\x04\x8d\x6f\x8f\xc6\xb7\xe0\xa6\x81\xad\xfb\x29\xab\xf5\x31\xb9\xa0\x5e\x1d\x5b\xbd\xe2\x67\x8e\xe1\x1d\x59\x19\xf6\xc5\xdd\xb1\xc2\x7a\xdc\x67\xa2\x39\x02\x26\x92\xf6\xa2\x78\x67\xa4\x49\x5d\x33\x01\x79\x0a\x66\xc5\x0f\x9f\xd5\xd1\x25\x57\x43\x27\x71\x8d\xb9\xd7\x14\x04\xe2\xd4\x63\xf5\x19\x96\x4e\x6f\x1d\x76\xc4\xf0\x20\x37\xbd\x56\x0a\x87\x76\x64\x4f\xb4\x14\x9c\x8d\x86\x57\xb1\xcc\xa8\x11\xc7\x81\x59\x5e\xee\x9d\x67\xb3\x5f\xa2\x06\x5f\x21\x71\xea\xfe\x6b\x47\xe1\xff\xd8\xe0\xd7\xd1\xd0\x45\x6f\x13\x16\x00\x2a\xc1\xa7\x49\xfd\xd4\x37\x73\x5c\x47\x9e\x4b\x70\x57\xf7\x6d\xc6\xf1\xd3\xb5\xa4\x01\xcb\xb1\xd1\xf7\x6b\x02\x9c\x5e\x9b\xe8\x2d\xc2\xdd\xe3\x30\x66\x2f\x0e\xa9\x23\x59\x0c\x9f\x33\x18\x04\xe0\x17\x23\xe5\xe4\xf3\xd7\x4e\x19\x63\xbc\x1f\xd9\x8a\x14\xbe\x30\x31\xf3\xaa\xb9\x57\x27\x02\xf6\xb6\x47\x1e\xd1\xb6\xb9\x82\x20\x5c\xe8\xc8\x53\xc6\xda\xbe\x8e\x47\x14\xd6\xf6\x0b\x96\xaa\x42\xb3\x6d\x73\x17\xf9\x9b\x86\x2b\x4b\x83\xc9\x11\x61\x39\xda\x7b\xc7\x28\x6d\x90\x47\x7c\x9f\x59\x70\x66\xd9\x10\x53\x58\xdc\x0f\x4a\x83\xc3\xd1\x8b\x1f\x78\x4d\x9b\xc8\x09\xd2\xe8\x98\x05\x3f\x72\x7b\x76\x4b\x34\x4d\xb6\x09\xef\x73\x34\xd1\x73\x69\x22\x0e\xbf\xfd\xdb\x6f\x19\xb0\x25\x12\xc4\xc7\x52\x6e\x5a\x9f\xb8\xcf\x80\x57\x72\xc7\x21\x02\x9b\xf5\x5b\x6c\x69\x2c\x44\x51\x14\x40\xbe\x98\x0f\xdd\x8a\xd5\xc2\xe5\x82\xa8\x92\xf9\x9d\x1e\x49\xd3\x93\x0a\x07\x69\x07\x76\xeb\x0e\x59\xfd\xc2\x65\x2d\x95\x2f\x53\xa8\xb7\x9a\x60\x98\x00\x93\x53\x70\xdb\x79\x46\x52\xa3\x7e\xe8\x5b\x2c\x80\x30\x24\x5b\xfb\xf1\xbb\x8d\x3b\x46\x9b\x24\x6e\xdc\x1d\x84\x5a\xac\x5c\xab\x09\x19\xd6\x05\xc5\xf6\x76\xca\x71\xe3\x98\x12\xa0\x48\xc3\xf8\x75\xd4\x51\x83\x79\xc5\xea\xb6\x14\xdc\x4a\x82\xdb\xcf\xaf\x18\xa1\xbd\x14\x86\xeb\xb4\xdc\xf6\x6e\x23\x26\x76\x1b\x37\xf5\xed\x15\xc3\x64\x64\xf7\x92\x96\xed\x86\xdb\x54\xbb\x4e\x9a\x4d\x01\x00\x89\x81\xdc\xa3\x47\x34\x88\x22\xad\xc3\xe7\x3a\xf8\x6c\xf6\xc7\xd7\xa9\x47\x11\x20\x28\xb1\x6c\xff\x1b\x68\x7d\x50\x88\x78\xc4\xdc\xc1\x9d\x1d\xd4\x18\x3f\x28\xe1\x3f\xf8\xa6\x66\xaf\x56\xa1\x36\x9a\x4e\x14\x6f\xd0\x68\x1e\x71\x9b\xd5\xb6\xa9\x23\xed\x00\xf2\x9b\x23\x7c\xab\x57\x90\xba\x4d\xfd\x20\x35\x97\xba\xe8\xd5\xec\x8b\xb2\x6c\xe2\x36\xe3\x4f\x66\xb3\xa6\xa4\xff\xe6\x36\x3c\xad\x92\x75\x3f\x69\x5c\xb8\x9e\x57\x2e\xf4\x01\x10\xc6\xa7\x66\x3f\x63\x6f\x4f\x4f\xaf\x04\x25\xff\x71\x9c\x39\x64\x10\x82\xb7\xb1\x72\xfe\x53\x6f\xa7\xae\x54\x15\x5e\x12\xf4\x23\x67\x1b\xc1\x97\x78\x7e\x9b\x0a\xa5\x2c\x31\x71\x8f\x6c\xea\x44\x18\x00\x37\x35\xf7\x9b\xf5\x58\x5d\x5d\xe7\x32\xe1\xe9\xb3\xd1\xff\xe8\x9f\xa8\x4d\xf2\x99\x57\xf2\xed\x8c\xaf\x60\x61\xe3\x24\x2d\x96\x84\x2e\x28\x8d\x0c\xe4\xfe\xf0\x62\xe7\x94\x1f\x84\xaf\x40\x91\x86\xef\x55\xff\x66\x76\xef\xcc\x79\x73\x7a\xe2\xff\xda\x9e\xa2\x49\x0a\x34\x05\x87\x0d\x77\xe1\x94\x2b\xcc\x5b\x59\xf7\x13\x6a\xc7\x8a\xf5\x86\x88\xed\x82\x05\x17\xc9\x3f\xcb\xdf\xb0\x46\x55\x6d\xbc\x82\xb6\x34\x70\xee\x16\xaf\xd5\x86\xba\x04\x85\xdd\x37\x2d\x19\x67\x06\x86\xb8\xdd\xc7\x70\xf2\xc2\x6e\x4d\x3d\x88\x78\x55\xd4\x6e\x18\xc8\x1f\xef\xc9\x4e\xeb\x35\x5b\x7c\x33\x7d\xfc\x87\xa3\x3e\x0c\x75\x60\x33\x0d\x78\xce\x42\xb5\x68\xae\xe0\x7d\x64\x6f\x45\xaf\xbc\x7b\x8e\x8e\x89\xf5\xa9\xd5\x39\x20\x1a\xba\x3b\x2d\x76\x1c\xe0\xd6\x15\xf6\x1c\x3a\xc7\x08\x09\x4e\x0d\x7b\x04\xca\x43\xac\x1b\x8a\x9f\x7b\x3b\x7b\xcb\x69\xbd\x42\x45\x90\x51\x86\xb8\x24\x9f\x20\x01\xab\xc9\xcc\x3f\xff\xcd\x77\x3e\xa4\x5e\xb4\x4d\x79\x5c\x07\x58\xd0\x21\x99\x3d\xd4\x8a\x65\xc3\xb5\xb1\x20\x41\x09\xc0\x4d\xab\xb5\x95\x4b\xd0\x2a\x95\xa3\xfa\x35\xda\xea\x9f\xa2\x94\x72\x39\xfa\xde\x10\x55\x78\x59\x82\x25\xbf\xa3\x3c\x50\xe8\xba\x58\x5b\xa9\x72\x79\xfd\x3e\xd2\xa3\xc4\x0a\x6b\x9d\x36\xd6\xdd\xa6\xbc\x99\x06\xc0\x86\x1c\xd6\x3f\x5a\xb3\x10\x50\xe6\x82\x51\xf1\x71\x35\xb2\xaf\x85\x8e\x53\xaa\x39\xb4\x0a\x40\x9f\xe8\xe2\x17\xb3\x97\xcf\xea\xf3\x98\xc5\x7c\x57\x1e\xbc\x3d\x13\x4d\x8d\x24\x9c\x54\x85\x6e\xe2\xe9\xbd\x46\xa1\x6c\x6c\x10\xcc\x83\x02\xf1\xe6\xde\xec\x61\xf6\x78\x8b\x3a\x72\x90\xf1\xbe\x56\x3a\xcc\x26\x2d\x2e\x90\x9f\x17\xdd\xbe\x57\xd3\xe7\x04\x4d\x5c\xc0\x9e\x4c\x30\x30\x12\x82\xb5\x92\x15\xfd\xb7\x97\x65\x8f\x47\x95\xb6\xa8\xc3\x9b\x00\xa5\x4d\x82\xc7\xf5\xef\xa9\x01\xa6\x20\x8e\x1f\x70\x7d\x66\xb6\xf7\x81\x2e\x79\x32\x64\x2b\x84\x32\xb5\xa5\x72\xe4\xc8\xd9\x8e\xc5\x85\x87\xfd\xc2\x6f\xa5\x35\xa0\x40\x8c\x7a\xfc\xc3\xef\x3f\xcf\x18\xe8\x50\x87\x56\x44\xdc\xdb\xc8\xfc\xd2\x6a\x8e\xd3\x87\xb8\xae\xbe\x82\xcb\xbf\xbc\x4a\x0b\x46\xdc\xef\xee\x78\xdd\xa3\x1f\xcb\x3e\xfb\x80\x3a\x14\x15\xf7\xe4\xad\xfa\xc9\xd2\xf1\x19\x91\x1b\xe1\xd1\x00\xb6\x25\x70\xc4\xdf\x7b\x58\x83\x8d\x51\xa0\x4f\xe0\x02\x67\xcd\xdb\x06\x0c\x98\x34\x9b\xd2\xaf\xa7\x78\xed\x31\x25\xce\x04\x46\x08\xdd\x0f\xc8\x16\x98\xfa\x38\x31\x7b\x60\xdb\x44\x6d\xbd\xec\xd5\xdb\x02\x64\x51\xd5\x9e\x6d\x3d\x5a\x0e\x4a\x2d\x76\x87\xf9\x76\x32\xa3\xce\xbd\xfd\x86\x32\x0d\x01\xe6\x18\x34\xc3\xbf\x9b\xa9\xae\x4e\x5f\x72\x75\x06\x8a\xa7\xdb\xa6\xe1\x89\x45\x4b\x01\x87\xff\x9b\x68\x8b\x7f\xd7\x30\xbb\xaa\x13\x01\x5e\x7c\x50\x32\x2c\xba\x55\xb3\x81\x62\x96\xcd\x1d\x58\x9f\xe6\x9e\x7f\x2b\x5b\x63\x02\x0c\x1a\x49\x8c\xc3\xb2\xc1\x44\x8b\x0c\xc9\xee\xe9\xfc\x2b\x34\x3d\x87\x6a\x15\x4c\x74\xb0\x95\x1a\x72\x40\x7a\xe5\x86\x56\xa3\xaf\x54\x8e\x3e\xa3\xd8\x17\xd4\x81\xc5\xd2\x69\x5b\xfe\xaf\x36\x02\x6b\xb6\xab\x9f\x1f\xa3\xad\xaf\xd5\x54\x20\xfa\x9f\xc5\xca\x60\xc4\x47\x10\x63\xee\xe8\xd3\xc3\x65\xb0\x49\x04\xc6\xcb\xd1\xc2\xc5\xaa\x0a\x99\x37\x77\xe6\x45\x0b\xe6\xc2\x92\xeb\x53\x3b\x70\xc4\xe6\xd0\x3a\xc3\x29\x69\xa9\x1c\xdd\xd0\x4c\x67\x95\x7d\xbc\x53\x9d\xef\xf7\x47\xd3\x68\x3c\xbf\x77\x76\xfc\xe9\x2e\x1d\x67\x4e\xb3\x1d\xde\x4e\xba\x8e\xdc\xe1\x87\x0c\x22\x27\x77\x2b\x29\xcf\xe3\xa7\x93\x0c\x20\x0c\x09\xd5\x3c\xe9\x4f\xab\x8d\x96\x8c\x30\x5f\x95\x85\xf9\x13\x52\xf5\x9c\x56\x88\x47\xfd\x74\x65\xc2\x4f\x39\xdb\x28\x1a\x7c\x2b\x44\x3f\x6a\x89\x96\xfb\xd1\x6d\x83\x3f\x6d\xb9\xc8\xce\xff\x7e\xb5\x92\x9e\x9d\xd5\xbd\x00\x80\x36\x4f\x8f\xd7\x0a\x29\x2f\xf0\xa9\x0e\x03\x19\xda\x52\xfa\x11\x40\xa7\xb9\xfa\x2e\xed\x7a\x3b\xa4\x8e\x80\x4f\x59\x62\x5d\xb2\x42\xc5\xdc\x44\x0c\x50\x36\xeb\x85\xd7\x3c\x8c\x25\x9a\x24\x69\x90\xfd\xb0\x36\xf7\x30\x32\x4a\x08\x5b\xb0\x2b\x8d\xec\x5c\xaf\x58\xf2\x7f\x7e\x4c\xdf\xd0\x30\x8b\x96\x28\x11\x89\x41\x74\xee\xb7\x3b\x4d\x25\x10\x28\x66\x4d\x18\x6d\xd4\xee\x37\x3a\x42\xea\x07\x2e\xf3\x7c\x5c\x13\xc4\x3d\xd0\xcf\xde\x53\x55\x0e\x25\x3e\x9a\xa3\xe6\xde\xbf\x6f\xac\xa7\x83\x82\x75\x75\xb1\x19\x46\xab\xed\xf7\xf9\x01\x75\x13\xb1\xa9\xdf\xd9\xea\x5f\x3a\xc4\xab\xf3\xd0\x0f\x98\x47\x11\xdf\xb0\x26\xbb\x79\xb0\xf8\xa0\xf2\x25\xf9\x07\xef\xc6\x1b\xd7\x07\x76\x08\xe5\x81\xdc\x7f\xad\xc8\x26\x33\x87\xb7\x4b\x0d\x9a\xe0\x07\x0b\x57\x5f\x93\xc0\x1b\x75\x24\xd1\x73\x93\xb4\x06\xab\x09\xe0\x27\xa4\xa7\x3c\xbc\x1b\xa7\xc1\x57\x27\xe6\x29\xa6\x02\xd9\xe5\x3d\x1a\xef\x96\x11\xbf\xc9\x41\xa1\xd7\xdf\x35\x2a\x83\x8f\x93\x27\xa2\x38\x76\xd7\x88\x24\x13\xd4\x79\x10\x50\xd0\xef\xcc\xff\x71\xf1\xa8\x0c\x7b\x2b\x04\x66\x68\xf4\xf5\xdb\x34\xa2\x6f\x28\x6d\x7e\xbf\xb4\x2d\xbb\xf5\x22\xbe\xcf\x25\xbe\xb6\xd3\x80\xfb\x6b\x27\x54\xe1\x02\x96\x69\xa5\x72\xf4\xf7\x46\xb6\x6f\x83\xac\x5d\x4a\x63\xf8\xdf\x5e\xf5\x59\xda\x54\xc8\xcb\x16\x9d\x65\x48\x0c\x6a\xcb\xb6\x52\x39\x9a\xbd\x3f\x9d\x6b\x39\x5c\x4b\x04\xb9\x67\x56\x0c\xd7\x8a\x1f\xde\x8e\xbf\xc1\x8c\xe7\x13\xa3\x5a\x22\x5c\x62\xd1\x10\x61\x2f\xe5\xe8\xef\x6e\x53\x5d\x05\xed\xa7\x9a\xc2\x54\x71\xcb\x30\x83\x43\x2e\x98\x57\xd7\x36\xbe\xff\x76\x30\xdd\x7c\x49\x31\xee\x5f\x5d\x66\x80\xe3\x2c\x1e\x64\x6a\xc2\xe2\x4d\xfd\x3a\xae\xb8\x2e\x68\xdc\x58\x03\x7c\xff\xc7\x86\x31\x29\x2a\xca\xd3\x44\x8e\xf0\xc1\xfd\x9a\x05\x0c\xad\xd7\x09\x94\x02\xc5\x42\x97\x31\x2f\xa4\x5e\x00\x52\xc6\xb0\x22\xa9\x1e\xd5\x5c\x04\x08\x5e\xcd\x4d\xc1\x18\x33\xbb\x3b\x58\xc5\xdd\x78\x6c\x9c\x67\x30\xd7\x1d\xe6\xe1\xc4\x2b\xff\x8b\x91\x63\x0d\x74\x17\x14\x15\xb8\x5a\x7b\x77\xa2\x56\x0f\x68\xa2\xfa\xd2\x57\x27\xff\xbf\xfb\xf1\x49\xc5\xad\x30\x84\x9d\x55\x97\x65\x51\xde\x08\x3d\x7b\x73\x99\x02\xa5\x57\x2f\x04\x21\xba\x6e\x29\x0f\x1c\x06\x2e\x97\xec\xc2\x73\x57\x6a\xa7\x9f\xbb\x84\x79\xc8\xd2\xfe\x87\xa3\xc3\x64\xb6\xd9\xc0\x2c\xbc\x62\xdf\x5f\x79\x9e\x71\x6e\xd1\x03\xa9\xc3\x8b\x7b\xa0\xb0\x78\xb3\x02\x97\xca\x55\x51\x06\xb8\xd4\xb3\x2c\x0d\xc2\x68\x11\x79\xa1\xa1\xe5\x2f\x68\x5c\x63\x4b\x61\x87\x37\x0c\x9b\x4c\xc2\xa4\x2b\x71\xee\xac\x4b\xc6\x65\xd0\x40\x19\x63\xd5\x8f\x2f\xd1\x6c\xaa\xe4\xbe\xa6\x1c\xed\x9e\x3e\x5c\xc5\xff\x04\x04\xf9\xbf\xb8\x3d\x2f\x5d\x17\x88\xb0\x4e\x32\xdd\xe6\x57\x87\x4a\x0c\x3e\x11\x01\x93\x50\xce\xbf\xbd\xc6\xd8\x1f\x51\x22\xa1\xd2\x5f\x7e\x35\xbb\x56\x21\x4e\x05\xd7\x21\xae\x3e\x46\xfc\xc1\xe8\xec\x39\xb3\x19\x15\x44\x58\x76\x1f\xf2\xa7\x3e\xf7\x94\xe1\x91\xe2\x90\x44\xd1\xf2\xc6\xcb\x3a\x0c\x77\x79\x15\x75\xda\xfb\x4b\xe5\xe8\xa7\x86\xd6\x4b\x35\x2e\x35\xd3\x1c\xfd\xe6\x64\x3c\x38\xc4\xa9\x50\x5c\x75\x2e\xd5\xe7\x3d\x1d\xb9\x4f\x6b\x57\x9d\xd0\xb3\xec\x80\xb9\x50\xb4\x0c\x9f\x67\x82\xc5\x5d\xe9\x0b\x54\x1e\xc8\xfd\xee\x3c\xb5\xcc\x41\x26\x68\x47\x4c\xb3\x5e\x99\xa2\x0d\xc3\x12\x6d\xa8\x8e\xbf\x36\xe3\x51\x5d\xbf\xe9\xe6\x90\xfa\x48\xae\xfb\xa1\x37\xc5\x48\x2c\xb0\x09\xe7\xb5\x9a\x94\x3c\xc6\xa6\x63\xed\x7b\xd9\x6c\xe8\x82\x44\x55\x36\x7e\x54\x86\xeb\x1b\x0b\x70\xd9\xfb\xb7\xbb\x8c\xf5\x0b\x73\xa9\x47\xfb\xf5\x7f\x97\xbb\xd6\x50\x22\xe0\x2e\xf3\x78\xe8\x4b\x7d\xfd\xe8\xe0\xd4\x91\x9a\xc8\x89\x92\x0f\xa8\xa2\x15\xae\x17\x5a\x0e\x25\x22\x0e\xdb\x4d\xee\x49\xbc\x0f\x4e\xc2\x2f\x7c\x62\x6c\x56\xb7\xf5\xba\x19\x0b\x93\x33\x9a\x7b\x5c\xe7\x0d\x20\xa6\xc7\x59\x3e\x5a\xeb\x3e\x3c\x9f\x7a\x3e\xe8\x0b\x14\xfe\xe1\x31\x23\x6d\x63\x02\x83\x2d\x66\xf4\xef\xef\x8e\x4a\xde\x78\x50\xb2\x71\x99\x1a\xbf\xf0\xa1\x45\x15\xb2\x3c\x20\x63\x68\x57\x76\x86\x66\xe0\x09\xa3\x3b\xbd\x4a\xb8\x6a\xfa\x04\xed\x73\xc0\xeb\xa8\x10\x87\x48\x15\xf8\xdc\x1f\x5f\x1f\xa6\xa5\x41\x98\xa1\xfc\xc9\xf0\x13\xaf\x52\xd0\x24\x86\xbf\x7e\x62\xa6\xf4\x3c\xa0\x7e\x40\x42\xc9\xc8\x1a\x28\xfc\x4b\x8f\xb9\x1c\xd1\xee\x4c\xe1\x0d\x2c\xa4\x6f\xa0\x71\xb9\x53\x25\x80\x85\xda\x39\x67\x72\xa7\x0c\xae\x7e\xc8\xe2\x6a\xfb\x9e\xc1\x05\x1a\xb1\xbe\x2c\x6e\xac\xa8\x20\x92\x82\xfa\x22\xde\xad\xaa\x8d\xb9\x73\x13\xd8\x76\x79\x20\x3f\x7e\x22\x86\xcd\xf9\xb3\xc1\x5d\x35\xfe\x4f\xac\x65\xfa\x59\xf8\xca\x54\x74\xdc\x10\x93\xf5\x0e\x64\x88\xa4\x4f\x59\xbb\x49\xbb\x82\x71\x87\x26\x07\x0f\x45\x6f\x6f\xb6\x69\x75\x08\x58\xb6\xa6\x15\x77\xe1\x8d\x71\x12\x98\xde\xe7\x71\xaf\x0f\x85\xd5\x1f\x7c\x3b\xcd\xf1\x2e\xd3\xca\xcf\x5c\xee\x38\xfe\x65\x9b\xb7\x68\xa2\x00\x3d\xfc\x65\x0d\x0a\xcc\x4b\x2c\x48\x39\xc6\x20\xb3\x34\xdf\x0c\x34\xe8\x25\x80\xb3\xc0\xa9\x33\x15\xed\x02\xab\xe6\x4e\xbe\x7f\xcf\x10\xd3\x72\x16\xbc\xd8\x92\x30\xf2\xad\xd3\x4c\x98\x05\xc8\xe4\xbb\x44\xfe\x85\xc2\x63\xad\xec\x01\xea\x53\x0a\x46\xb9\xd3\x97\xea\xd5\x18\x30\x59\x20\xa9\x9d\xde\xc4\x52\x73\xd6\xcc\x79\x0b\x40\x4b\x7f\xd5\x52\x93\x8b\xc2\x2a\x61\x80\x0b\xb7\x68\xfb\xee\xb3\xb4\x87\x5f\xb7\x83\x1a\xe7\xba\x41\xf5\xb6\xbd\xca\x47\xb4\xd9\x81\xed\x2c\xd6\x4f\xef\xf0\x97\x62\xbe\x36\x2a\x2f\xbe\x68\x0c\x53\x89\xe3\x70\xb4\x1a\x29\x90\x9b\xc6\x6b\xc3\x63\xc1\xfc\x2a\xca\x86\x61\x49\x7b\xfa\x50\x4d\xa4\x30\xae\x36\x25\x5b\xfc\x2b\x3b\xf1\xf0\xad\xa7\x6d\x0a\xa8\xe7\xe8\xc1\x47\x52\x13\xb3\x15\xcb\xcd\x76\xe1\x6f\x25\x49\xad\x0a\x98\x37\xf8\xbd\x3f\xbe\x55\x13\x0b\xa6\xc4\xa2\xb5\x50\x62\x1f\x67\x9e\x32\x5a\xab\x4a\x2c\x22\x24\x7a\xb1\x70\x76\x25\x9b\x0b\xe3\x9e\x10\x25\x28\xb6\xbc\x6e\xda\xb6\x35\xa9\xe3\xa4\xd4\xd2\x57\x34\x5d\x5a\xdf\xe6\xd8\x34\x04\x6b\xf0\x1a\x5f\xcb\xbd\x20\xd9\xb3\x17\x2f\xbe\x33\x61\x4e\x78\xdc\x42\x2e\x57\xae\xdb\xf0\x6a\xa8\x09\x48\x24\x41\xba\x69\xea\xdb\xa0\xe9\x88\x50\xa7\x99\xa9\x3f\x4e\xd7\xb8\x4b\xcc\x5b\x2f\x15\x84\xa3\xb9\x73\x3a\xd8\x47\x32\xb1\x1e\x5f\x86\xdb\xb2\x85\xd2\xf0\xc2\x7f\xc9\x60\x53\xc9\x76\x0d\x6b\xbf\xaf\x1c\x34\x58\x5a\x75\xc1\x3d\xa9\x7a\x91\xdc\xb9\x3d\x6b\x0c\x55\x0d\xd2\x57\x91\xe2\x61\xb9\x51\xc7\x4d\xae\x16\x58\xee\x4b\x7d\xc1\xa7\xb7\x9e\xa9\xf5\xa4\x7e\x5c\xd4\x0c\x78\x5d\xd9\xf8\x2b\x12\xe4\xc2\xbf\xce\xe9\x8c\xb3\xb2\x08\xbe\xf5\x79\x35\xfe\xec\x9d\xdb\x53\x2a\x47\xcf\x3d\x69\x2e\xc4\x71\xde\x25\x83\x61\xe1\xb7\x77\x19\x10\x52\x9b\x08\xd8\x54\xa0\x6c\x78\xfc\x57\xce\x77\xcc\xd9\x38\x4d\xac\x58\x72\x5f\x3d\x3c\x46\x3e\xc4\x4a\x85\x05\xba\x82\xe7\xa9\x5d\xd9\x52\x5f\x10\x97\x38\x0e\xd8\xb8\xc9\x49\xc1\xaf\xde\x55\x57\xba\xc5\x1d\x12\x40\x74\x8d\xbe\x6f\xc0\x1e\xc1\x2a\x45\x72\x83\x16\x54\xb5\xa4\x04\xf3\xc9\x80\x3a\x14\x54\x60\x61\xb2\xf6\xaa\x36\x39\x98\x1d\x7f\xfd\x03\x72\xcd\xe9\xb7\x59\x4d\xe2\x29\xbe\xb1\x47\xe2\x31\x29\x89\xdf\x2f\xc2\xa8\xf2\xaf\x5f\x66\xa8\x75\xdb\x24\x91\xbb\x7a\x72\x6d\x3a\x90\x69\x31\x53\xdb\x76\xa0\x58\x7c\x6f\x54\x66\x84\xde\x44\xc8\x75\x6e\xfb\x92\x11\x7a\xa6\xea\x9e\x51\x2e\x95\xa3\x82\x44\x3a\xfb\x2e\x95\x74\x8f\xc2\x85\x77\x61\x04\x2b\x11\x41\x81\x6b\x7b\xd6\xfc\x61\x32\x74\xfb\x89\x65\xd0\xff\xdb\x67\x94\x67\x61\xc5\xa1\xf2\xe3\xfd\x78\xba\xe4\xce\x33\x51\xe1\x02\x91\x92\xe3\x27\x9b\xda\xe3\xf5\x44\xaf\x2d\xbf\x7c\xab\x71\x92\x3d\x8f\x78\x06\xfe\xe7\xc4\xe8\x09\xd9\x79\x60\xb6\x17\x38\x73\x92\xee\x80\xd0\x60\xb0\xa8\x2a\x0f\xe4\xbe\x73\x27\x56\x21\x8b\x43\xd1\xd7\xd0\xc2\xea\x93\x45\xad\x87\xdc\x20\x6d\x2c\xa0\xcf\xd9\x6a\x58\x92\x81\xcd\xa9\xfc\x30\xd0\x3a\x8d\x3d\x45\xf2\xea\x12\x4d\xdf\x52\x39\xda\x77\x5c\x5d\xf5\xf8\x94\xb7\x09\xd0\x6e\xf3\x1f\xba\x7f\x82\x91\x96\x5d\xe6\xa4\xaa\x24\xc7\xa7\x4c\x94\x0d\x01\x6d\xda\xc4\xe3\x4d\x1e\x3a\x40\xa8\x49\x3e\xe5\xe9\x86\xa0\x04\xd0\xfb\x52\x3a\xe5\xd6\x27\xce\x36\x8b\x8a\x1a\x0b\xe4\x24\x28\xfe\xf9\xbb\x5f\x1c\xaa\x42\x38\x88\x86\x1e\x51\x97\xd1\x05\x9d\xe4\x43\x53\x74\x06\x3a\xc7\x73\xf2\x82\xad\xab\x49\x72\x51\x95\x9c\x90\xf2\x40\xb1\xf7\xb0\x69\xa6\xcf\x9c\x64\xfd\x96\x5f\x7e\x5e\x46\x5d\x26\xae\x3b\x11\xe9\xb1\x57\xaa\xe6\xf9\x36\xe7\x01\x07\x02\xfd\x03\x86\xfc\x04\x48\xb2\x5b\x89\x40\xce\x7d\xc6\xd9\xaf\x71\x2b\x94\xc3\xba\xc2\x36\xcd\x2f\x84\x78\x96\x3d\xc8\x44\xf2\x88\x74\x1c\xac\xd2\x16\xc7\x04\x52\x5c\x6d\xf2\xeb\xdc\x38\x49\x22\x75\xec\xcd\x89\xea\x92\xba\xd0\xb3\xe4\xbf\x71\x8a\x42\x46\xd4\x88\xa8\x77\x58\x77\xe6\xb7\x4b\x30\x22\xb1\x2c\x10\x37\x43\xd6\xf3\x85\x87\x4d\x8e\x39\x10\x8e\x83\xb4\x6a\x61\xef\x20\xfa\x69\x05\xc7\xca\xd7\x50\x83\x7d\x6a\x30\x7b\x03\x99\xcc\xf2\xbf\xda\xac\xac\x99\x9c\x14\x60\x33\xaf\x7f\x82\xbe\x1e\x32\x27\x5f\xdf\xb6\x35\x24\x79\xa6\xba\x7b\x0c\x1f\x52\x59\xd0\x3a\xf6\xde\xfb\x9f\xd4\x80\xe4\x20\x95\x00\x89\x66\xdc\x03\x09\x91\x54\xb8\xdc\x83\x06\x77\xa0\xf8\x19\x4d\x3b\x1c\xa6\x2c\xd0\xfc\xf5\xae\x30\xdc\xe6\xe7\x27\xba\xe9\xf4\xa4\x01\x5a\xb4\x05\x4b\x44\x9c\xf2\x5f\x36\xb4\x04\x40\x19\x4b\x82\x25\xff\xf6\x71\xe4\xda\x0a\x10\x0b\xaf\x6d\xc2\xff\x75\xd5\x15\xcb\x61\xb2\xbd\x47\x13\x8c\x61\xd0\x3d\xfb\x78\xf1\xff\xe5\x56\xc3\x7d\xaf\x7b\x81\xec\x6e\xdf\xdd\x8f\x87\x71\x21\x57\xe6\x4f\x4f\x3f\x60\x2a\x6c\xd5\x43\x87\x80\x34\x00\x40\x32\x0b\xb9\xe3\x9a\x96\x99\x08\x3d\xbf\xcd\xb0\x39\x2a\x9b\xca\x26\xc4\x6d\x02\xfa\x4b\xee\xbc\x3e\x21\xd3\xd1\xc7\xc2\x00\xd6\xc8\xea\x72\x1f\xb9\x3b\x63\xd4\x11\x47\xac\xaa\x0c\xae\xed\x23\xba\x73\x49\xdb\x6b\xa6\x93\xc1\xc2\x7d\x0f\x61\x28\x06\x69\x78\x1c\x14\x7c\xe2\x59\xe5\x54\x04\xf6\x07\xcc\xef\xa4\x2c\x0f\x19\xa6\xe9\xd6\x81\xed\x25\xeb\x98\xa8\xe4\x7f\xf7\x5a\xf6\xf5\x35\x3c\xda\x46\x2b\xd0\xad\xab\x34\xd8\x1d\x15\x9a\xa9\x68\xee\xe8\x34\xa3\x63\x02\xa2\xa1\x9c\x9c\x1f\x2f\x4a\xa9\x36\x66\x31\x0f\x5b\xd4\xc2\x5f\x6e\xd2\xf6\x9f\x01\x17\xf8\x35\x0a\x7f\xda\x64\xc0\x40\xb9\xe7\x73\x87\x55\xe3\xd7\x90\xb6\x32\x3f\x35\xc0\xfc\x0e\xef\x03\xad\xc2\x41\xc1\xfc\x1f\x93\x4a\xf6\x8b\x05\xb5\x6c\x1a\xe8\x4e\xe9\x85\xc9\x46\x15\xe6\x10\xb7\x22\xb7\xeb\xdb\x37\x28\x4f\xc9\x59\xb3\x4a\xe5\xe8\x70\x51\x07\x42\x72\xb7\x99\xf4\xb2\x4f\x2e\xc5\xec\x12\x50\xcb\xf6\x38\x0d\x6c\x69\x14\x3d\x69\x5a\x42\x05\xe3\x28\xb2\x14\xdd\x6a\xe0\xfb\x53\xeb\x95\xee\x52\x39\x3a\x73\x9a\xf6\x40\x98\xcb\x21\xa7\x0c\xe4\xbf\x3d\xdd\x30\xf1\x82\x01\x1f\xd2\x1c\xb3\xef\xed\xd5\x23\x52\x96\x5f\xb8\x71\x0a\x1b\xb3\xdc\xa8\xa0\x98\xe0\x01\x9f\xd1\xad\xfb\x79\x2c\x57\xd3\xbc\xf4\x70\xe5\xc9\xb6\xe1\x32\x23\x36\x1d\x9e\x1c\xc6\x6f\x4c\xc5\x40\xb7\x08\xbc\xb6\xa4\x97\x5b\xc1\xd2\xd6\xda\x35\x9b\xc5\x7f\xf1\xa3\x77\x64\xe6\x0a\xcb\xcb\xd7\xcd\x80\xeb\x55\x2a\x47\x23\x86\x9d\xa1\x98\x66\x50\xa6\x8d\xd5\xba\x27\x97\x30\x90\xd1\x29\x95\xa3\xcd\xef\x4c\xd4\xb6\x04\x5e\xc7\x8e\xbd\x78\xf3\xca\x11\x9a\xbe\x90\x1f\x80\x37\x63\x61\x6f\x6f\xfa\xf3\x7b\x7a\xe2\x47\xfa\xfd\xb7\x24\x8f\x43\x90\x5a\x8d\x21\x06\x30\xfa\x9b\x7b\x34\xb5\xd5\x1a\x83\x26\x9e\x41\x81\x33\xe6\x09\x04\xb9\x2c\x25\x02\x05\xf8\xe4\x5c\xee\xef\xde\x35\xd3\x5d\xb5\x4e\x03\x99\x88\x6a\x97\x64\x54\xd9\x2b\x15\xac\xef\xef\xbb\x6b\x46\x36\x96\x30\x52\xf2\x78\x2b\x2e\x9d\x64\x19\x91\x69\x90\x3e\xf0\xa8\x09\x78\x6d\x31\x50\x31\x97\x2d\xa8\xff\xd4\x54\xa3\x70\xaa\xd2\xc1\x79\xb7\x2f\xe1\xcb\xab\x10\xab\x11\x08\x9c\xdd\xe4\xfb\xee\xd1\xb4\xbd\x34\xfd\xe3\xdc\x3f\x3f\xa9\x49\x7c\xb8\xb3\xbb\xe7\x01\x51\xe9\xcd\x55\x78\xa0\x97\x3b\x24\xd4\x24\xc7\x8a\xe1\x7a\x4d\xf2\x09\xa8\x29\x71\xbe\xc3\xe2\xff\x3b\xb5\xc9\x46\x8d\x13\x3a\x41\x29\xe0\x0e\x15\x24\x29\x93\xf3\xaf\x1d\x1b\xae\x71\xc9\x11\x9c\x98\xff\x4a\xd7\x94\xce\x73\xda\x60\x5e\x06\x43\x15\x7d\x54\xdb\xf9\xda\x61\xb5\x2a\x8b\xd4\x1f\xde\x69\x74\xb6\xa1\x53\x4f\xa6\x72\x8f\x3f\x9d\xbd\x6d\x61\xb3\x0d\x4a\x7e\xf8\xa7\xf7\x6b\xf2\xfb\x7e\xe8\xba\xd2\xb0\x21\x7f\x9f\xd4\x3a\x5d\x66\x4c\xa5\x72\x23\x7b\x0d\x96\x36\x0f\x03\xbb\x4d\xd3\xa8\x93\x7a\xb8\xdf\xa2\x49\x97\xd2\xb8\x9c\xc2\x5d\xf6\xce\xc7\xd2\xda\x35\x74\xcc\x1e\x3e\xda\x69\xb8\x34\x56\x1c\xde\x8e\x13\x08\x56\x42\xc7\x7b\xb4\xed\x43\x8b\x59\xda\xc7\xda\xb7\x2b\x8b\x02\xb5\x43\x64\x2b\xe4\x4e\xd5\x34\xe9\x91\x39\x82\xd2\xbf\xd3\x7f\x99\xcd\x89\xf3\x7a\x93\x75\xd7\x6f\x0e\x64\x3f\x43\x83\x35\x9b\xa1\x48\x5a\xaa\x83\xbd\xa6\x8c\x10\xb5\x08\xec\x0b\xe4\x87\x3c\x70\xfb\x64\x6d\x0d\x41\x98\x70\x3b\x4b\xf4\xfc\xc6\x8d\x67\x24\x57\x45\x0a\xc7\xcc\x99\x2c\xcb\xc2\x80\x59\x0d\xb9\xf9\x5a\xbc\x4c\x93\x1e\xb5\x1a\x54\x64\x94\x28\xe6\xd9\x2a\x6a\xd8\xac\x6e\x4b\xd2\x76\xe1\xc1\x47\x8c\x9d\x4a\x4a\x2f\x83\xb9\x1d\x37\x1a\xb8\x1a\xb1\x02\x8e\x08\xc7\xfc\x92\x4d\x5a\xcf\xa7\x67\xa9\xaa\x31\xb2\x63\x4d\x0a\xcc\x52\x3c\x44\xcb\x5a\x67\x75\x56\xf6\x8c\x24\xcf\xac\xf0\xf0\xa4\xec\x3f\x77\x89\x20\x81\xcd\x3d\x59\x72\xae\x5a\x2b\x2d\x6b\x59\x83\xb6\x19\xe8\x00\x17\x4e\xd7\x38\xb4\x5e\x5c\x75\x43\x73\x74\xc9\xdb\x9a\x36\x83\x43\xaa\x58\x51\x3f\x74\x5f\xa7\xb0\xa0\xc3\x48\x20\x3f\x5e\xfe\x99\xcb\x0c\xc9\x0e\x9e\xee\x87\xcf\xde\x28\xe3\x04\xad\xa5\x53\xd9\xe2\x27\x0c\xa5\x2c\x5e\x01\x5d\x33\x49\x4f\xdf\xfe\x8c\x31\x27\x83\xb7\x0f\xb3\x68\xa4\x82\x5c\xb5\xf0\x1c\xe3\x32\xfa\xcc\xa3\xbe\xef\xd2\x84\x2c\x14\xbd\xf8\xba\xda\x38\x55\x45\xd8\xe1\x1e\x9f\x3f\xf6\xde\x04\x25\x8e\x60\x6a\x59\x47\xe3\x0c\x5f\x5c\x8b\xbb\x2e\x83\x25\x7e\xfc\x44\x3b\x8a\xde\xa7\x8d\x8d\x99\x4d\x5d\x00\x7a\xdc\x58\xd4\xa4\xa9\x00\xf5\x1f\x7d\xac\x6a\xe2\x88\x5d\x8e\x7b\x96\xf5\xaf\x0d\x93\x99\xcf\x15\x60\xae\x11\xdd\xb8\x53\x33\x92\x22\x5e\x48\xb5\x90\x5a\x78\xac\x2a\xb3\x67\x2b\x8e\x8f\xd2\xdc\x74\xd2\xd3\xa3\xb4\x25\xa0\x17\x3f\x73\x38\x76\xdb\xde\x32\xd1\xe5\x0e\x25\x3e\x95\x03\x8e\x0f\x14\x55\xcc\xe3\x1e\x95\x3b\x91\xfc\xcf\x5e\x34\xff\x51\xcd\xa1\x96\xac\xa2\x0b\x57\x3f\xd1\x41\x4e\xb7\x03\xd4\x88\xb9\x7a\xa3\x46\x32\x90\x7c\xcf\x11\x73\xd2\x9c\xe9\xf3\xb8\x46\xf9\xd0\x23\x63\xf4\xb1\x01\x38\x56\x40\x46\xfb\x7f\x7b\xcf\xea\xa8\xcc\x60\x09\x20\x4f\xd4\xfb\x2e\xd1\x44\x73\x42\xd8\x71\x0c\xe2\xd2\xb5\x31\xc0\xfb\xcf\x5c\x37\x04\x1f\xb0\x57\x5e\x95\x53\x05\xb8\xe7\x70\xac\x1b\x46\x79\x97\x0a\x87\xa3\xcc\x5c\x36\xe1\x7d\xb9\x65\x00\xb7\x91\xc7\x20\x0b\xef\xde\x1d\xda\xfc\xd2\xa6\xa9\x71\xe6\xd9\x07\xb5\x74\x42\xbc\x2a\x0a\x7f\x16\x26\x07\x8a\x89\xeb\xa9\x42\x31\x9a\x79\xd8\xdc\xd6\x22\xe1\x40\x8e\x2e\x7e\x7a\xdc\xc0\x14\xfa\x3e\x5a\x1f\x3a\x7d\x89\x0a\xc2\x87\x76\xab\xee\xb2\x89\xaa\x46\x1f\x3f\x61\x10\x97\x81\x58\x2d\xc1\x28\x17\xbe\xad\xeb\x76\x73\xf4\x0c\x2a\x5c\x65\x48\xed\xd6\xa8\xc3\xbd\x04\x3d\x56\x98\xbd\xdc\x08\x07\x2d\x58\x8c\xd8\x32\x1c\x14\x8b\x6b\x34\x18\x3b\x17\x55\xe4\x81\xdc\x95\xb6\x93\x15\x40\x33\xc2\xf3\xf9\x2b\x6f\x82\x5e\xc5\xad\x9a\xa1\x38\xa5\xa5\x72\xf4\xb5\xd5\x1a\x80\x3f\xee\xb6\x34\x31\x9f\xbf\x3a\xa8\x2d\xa3\x89\x1f\x08\x4d\xf0\xab\xf0\xcd\x6b\x0c\x96\x9e\xa0\x1e\x91\x53\xd4\xad\x53\xc7\x6b\xfd\xb7\x53\x09\x85\x2e\x37\xfd\x82\xac\x3f\x6b\x71\x89\xce\xfb\x50\x38\xe5\xcb\x9a\x19\xb4\x6b\xb9\x20\x09\x35\x74\xac\x36\x7d\xa8\x96\x9c\xb8\xe2\x47\xe7\xc3\xc2\x1a\x43\x02\x26\x19\xe4\x2a\x37\xf3\xe2\xe5\xdb\x3f\x90\x3c\x0d\x98\x74\xb4\xde\x1e\x9d\x45\xcc\xb5\x28\x4e\xb2\x3e\xa2\x0d\xa9\x41\xb4\xcc\x47\x1d\xc6\xc2\xa9\xa7\xe9\xd2\x0c\x0e\xe9\x83\xa2\xf3\xde\x91\x06\xee\x9c\x92\x7a\x48\x25\xd3\x2f\x18\xa2\xcb\x1c\x25\x66\xe8\xf9\xd7\xa4\x6a\xb5\xf2\x8d\x81\x33\x30\x33\xf8\xa0\x11\xd5\xb8\xdb\xf4\x31\x0b\xab\x30\x74\xe0\xb6\x0e\x7d\x53\xc6\xd3\x19\xcd\x17\x7a\x74\x19\xdb\x16\x03\x27\x0d\x88\x48\x9f\xbe\x0c\x5b\xeb\x32\x5c\xce\x1d\xef\x19\xc3\x52\x20\x97\xa9\x39\x58\x74\xe1\x2e\x43\xff\x0f\x36\xd0\x98\xdd\xbe\xb7\xca\x20\xef\x84\x96\x8d\xcc\xf9\x0b\x5e\xc8\x56\xb3\x75\xc1\x1c\x07\x25\x1d\xb2\x97\xfb\x5f\x76\x74\xac\x7f\x79\x8b\x4a\xf2\xcd\x47\x35\xe9\x5e\x87\x23\x2a\x64\xc2\xde\x14\x89\xd0\x80\xa4\xd5\xa3\x4d\x28\x3c\xe2\x4a\xb1\xcc\x7b\x37\x8e\x90\x8f\x96\x58\x89\x3f\x52\xb4\xf4\x71\x03\x04\xd2\x26\x6e\x1f\x8c\x85\x93\xd9\xf1\xbd\x7b\x32\x7b\x04\x80\x7f\xdc\x79\x7c\x8c\x5e\xf5\x08\x9c\xbd\x41\x8a\xed\x2c\x98\xa0\x66\x0e\x12\x60\xfc\x23\x87\x4d\x94\x1b\xec\x2c\xac\xf8\xc0\xdc\xf6\x84\x09\x21\xaf\x51\x2b\x40\x78\xc8\x40\xe1\x96\xa7\x35\x1e\x02\xc7\x03\x13\x1d\xd0\x7c\x43\x6b\x82\x79\xa8\x7d\xbe\x7c\x9b\x01\x69\xe0\x42\x0a\x49\xde\x76\x40\x9a\x76\x3b\xa4\x1f\x75\x62\xce\x7b\x4c\x6d\xed\x42\x0d\x4e\xd8\x77\x48\x1b\x09\x51\x21\xa4\xb2\xfc\xd0\x97\xd5\x2f\xe4\x2d\x28\xd2\xca\x03\xc5\x0b\x77\x9a\xeb\x34\xaf\xc5\x40\x63\x4f\x0e\xcb\x7f\xa4\x0d\x08\x2d\x22\xb8\xc3\x3c\xf8\xf5\xf9\x7d\x45\x13\x30\x68\x11\x37\x85\x14\x74\x6f\xd5\xf5\x24\x71\x35\xd3\xa8\x6a\x47\x80\x35\x10\x05\xfe\xc6\x4d\x3a\x18\x43\x54\x08\xda\x1f\x0d\x39\x86\xed\xf1\x75\x0d\xe8\x3d\x0b\x0b\xba\xcd\xda\xcc\xab\x12\xc1\xa4\xf5\x50\x2e\xdc\xae\xb5\xfb\xbc\x19\xa6\x8b\xf3\x67\x47\x1a\x51\xb6\xc2\x1d\xe6\xdb\xe9\x7c\x6e\xc9\x42\x53\x29\x87\xa2\x1e\x5f\x74\xb2\x4b\xbb\xe7\x16\xf5\x28\xc8\x05\xe5\xbe\x6d\x24\x56\x97\x0a\x8b\xc1\x36\x0c\xd9\x1a\x7f\x7f\xc5\x24\x2d\x23\xc3\xc6\x3b\x0e\x45\x8e\xc3\xea\xd2\x27\xa4\x58\x3c\x68\x7c\x26\xb0\xaa\xa6\x89\x5c\x48\x91\x1e\x9a\xa0\x64\x14\x3b\x29\xaf\x7f\x5e\xa7\xd1\xd8\xaa\x2d\x96\xf8\xc7\xdc\x7d\x99\x8a\x65\x0e\xaf\x54\xd0\xf2\xb5\xf8\xd7\x15\x69\x07\xc1\x00\xe2\xa6\xf9\x2e\xae\xc8\x06\xd8\xf8\x52\x66\x5d\x17\x8b\x8b\xd6\x5e\x60\x7c\xd9\x80\x38\x0e\xb3\xc8\x20\x5d\xf1\x40\xf1\xe3\xb7\xaa\x73\x8e\x9a\xc7\xa5\x72\x74\x79\xbf\xbe\x39\xf4\x02\xe2\xd5\xa9\x03\x18\x9d\xdc\x1a\x63\xe4\x91\xd8\x16\xb1\x54\x8b\xe5\x2f\xcf\x6b\xd7\x95\x7b\x56\xa2\x26\x10\xbd\xba\xd7\x10\xb6\x81\x17\x2e\xff\xd5\x88\x5b\x13\x46\x80\x47\xeb\xe8\xb0\x56\xf8\xf7\xc7\x71\x3f\x12\x17\xd5\x71\x20\xb8\x5f\x7b\xbb\x52\x2e\x28\xfe\x6b\xf7\x1e\xcf\x1e\x07\xcb\x26\xd2\x82\xa7\x58\x79\x41\x7d\x3b\x80\x24\x42\xf5\xb3\x70\xa9\x99\x23\xd3\x1d\x7e\xae\x72\x40\x0b\x40\x21\x7e\xf0\xbb\x35\xfa\x7d\x35\x41\xd4\x14\xa2\x8b\x8d\x4a\x81\xf8\x76\x9c\xe7\x70\x21\xfc\xea\xae\x49\x5a\x92\x6a\x86\x41\x5f\xc7\x99\xf8\xfc\x14\x53\x87\xbd\x9a\x7a\x1b\xe4\x7e\x11\x49\x45\xbd\x50\x50\x38\x80\x53\xde\x18\x95\x41\x92\x89\x10\xbe\x7d\xfe\x54\x03\x20\x0d\x60\x2b\x8b\x05\x22\x15\xdc\xcb\x7f\xf1\x61\xa3\xc5\x22\x82\xf9\xa8\xd7\x7c\xdd\xf2\x81\xc2\x1b\xef\x66\xa3\x72\x1f\xc1\xae\x38\x45\x4d\xbd\x65\xab\x43\x3a\xbb\xa7\xd4\x74\x10\x96\xb2\xde\xeb\xf0\x91\xeb\x05\xdd\xc7\xdb\xdf\x55\x43\xfd\x2a\x25\x60\x7a\x95\xfd\xea\x47\x87\x6b\x6f\xd2\x49\xf2\x71\xe1\xb4\x91\x6a\x2a\x25\x08\xcc\x51\xb2\xd9\xea\x81\x85\x59\x7a\x5f\x02\x60\x1d\x0c\x8a\xfa\xbb\x25\x06\x10\x1d\x7a\x85\xa4\x6c\xfd\x76\x8f\xa6\xdd\xdc\x6c\x52\x22\xe9\x21\xff\xf9\x7a\xf6\xa5\x48\x65\x4d\x9c\xae\xfc\xeb\xd6\x11\xba\x4f\x32\x26\xe8\x9b\x23\x15\x35\xe7\x75\xf7\x2e\x00\x85\xf2\xfd\x1a\x1f\x67\x43\x13\xd7\x5e\xa5\x72\xf4\x83\xfb\x54\x05\x0f\x1e\x76\x71\x54\x33\x07\x15\x17\xbc\x6e\x8c\x4c\x53\x08\x49\xee\xe0\xca\x6c\x5a\xa7\x2d\x2a\xea\xd0\xac\xc2\xeb\x4c\xe3\x44\xfe\x34\x23\x33\x7a\xb4\xce\x03\x46\x82\xc4\x75\x2b\xff\xca\xf4\xe1\xba\x8a\x0b\x10\x0b\x0e\xa0\xd7\x4c\xa9\x0c\xf3\xc7\xba\xdd\x39\xdd\xbe\x71\x4d\x97\x06\xaf\x4d\xe1\xdd\xf1\x47\x9b\xe6\xa9\xf3\x49\x3d\x24\x45\xc0\x4c\x60\x4e\x62\x3e\xee\xd4\x89\x60\xc9\x3a\xa5\xf0\xda\xab\x46\x45\xef\xd5\xe3\xc7\x21\xa1\xd0\x50\xe8\x5e\xb0\x5c\x9d\xa3\x16\x77\xe2\xb8\x4c\x33\x76\xf7\xb9\xc2\x49\xe3\x0e\x3a\xd8\x8b\x41\xd5\x97\xdb\xb8\x5f\x37\x13\x04\xb7\xf4\x38\x98\x47\xd5\x7d\x98\x96\x2b\x2c\x00\xfb\xcf\x68\xc4\x33\x58\xac\x84\x15\x76\x73\xc8\x02\x4c\xbe\xb9\x6f\x78\x86\xe8\x95\xe0\xa4\x0a\x7a\xf2\x12\x96\x73\xde\x69\xc6\x05\x98\x3f\x6f\x3e\x56\x0f\xdf\x59\x22\xc1\x99\xb5\x1a\x8c\x61\x60\x52\x91\x68\x25\x70\xc7\x09\x71\x5b\x36\x6e\xa2\x76\xa7\x7d\x41\xa8\x83\xb2\x0a\x7c\xb4\x31\xea\xb7\x94\x89\xbe\x7f\xf7\x4c\xe3\x58\x53\xe1\x00\x5a\xa1\xe4\x71\x8f\x96\x3a\xda\xb7\x2f\x68\xe2\x60\xc4\xab\xeb\x35\x7f\x71\xad\x93\x4a\x1b\xd3\x1a\xac\x65\xbf\xfe\xbc\x21\xdc\x29\x78\x4d\x0e\x17\x8b\xdd\x86\x48\xbc\xcd\x70\x57\x18\x7d\x69\x85\xa1\x3f\x41\x2a\x82\x79\xc4\xe0\x68\x3e\xbc\x45\xab\xdb\x41\x36\x38\x0e\xea\xff\x35\x11\x97\x07\x34\xee\xb0\xe3\x33\xa3\x10\x74\xf9\xcb\x7a\xb5\x30\x21\x42\x5f\xe6\x85\x25\xaf\xa9\x64\xea\xd0\x96\xdc\xa7\x47\x9f\xe9\xcd\xde\x9b\xd0\xa7\xc9\xc5\xfd\xea\x10\xd3\xbc\x9e\x34\x30\x36\x9e\xbf\x5f\xcb\x10\xc4\x6b\x40\xb0\x2d\xbc\x74\x9a\xa6\xd3\x45\x45\x8b\x59\xd4\x05\xe3\xc1\xeb\x76\x77\x94\x1e\x38\x6a\x8a\xb6\x2c\xd1\xcd\x46\x89\x25\xf5\x30\x0a\x9f\x78\x5c\xd1\xe5\xc3\x0e\xe4\x54\x71\x94\xd1\x51\x56\x19\x71\x78\xdc\xb8\xc8\x38\xf5\x90\x21\x67\x08\x76\xd4\xcc\xf2\x21\xd0\xfe\xe4\x08\x1e\xb3\x6b\x65\x61\x05\x55\xd5\x56\xcd\x15\x58\x37\x73\xdc\xac\xa1\x94\x49\x8d\xe8\xab\xa5\xef\xee\xe9\xd2\x93\x15\x11\xa9\x86\x55\xee\xcb\xef\xaa\xaf\x55\x17\x04\x1c\x5f\xe3\xe7\xf6\x8f\x3b\x0c\xcc\x5a\x5c\x0d\x0b\x5a\x4d\xc6\x50\x3f\x9b\x67\xe4\x58\x70\xf2\xc7\xdb\xf1\xeb\x71\x98\xdb\x16\x11\x07\xa8\xba\xf9\x7f\x7c\x71\x84\x26\x33\xe4\xc8\x32\xf0\xbb\x8b\x75\x25\x91\x0a\x5a\x50\x67\x63\xfc\x8e\x6b\x0c\xbe\x19\x69\x31\xdf\x10\x19\x74\x2f\xd6\xe0\xe1\x61\x90\xac\x73\x17\xbe\x68\x5a\x25\x88\xb0\x5e\x77\x12\x1e\x53\x7e\x8b\x8d\x71\xeb\xba\xb8\x47\xd1\x3b\x94\xfb\xf1\x99\x2f\x47\x68\x21\x7c\xfe\xef\x1d\x36\xaa\xa2\x80\x5b\x8d\x04\x4a\x23\xed\x1c\x5b\xa3\xd2\x6c\x20\x58\x4a\xd0\xcc\xdf\xa4\x99\x3c\xcd\x9e\x35\xb3\x07\xd5\x13\xfb\x7b\xb3\xe8\xec\xf5\xc4\xf3\x24\x69\xa2\xa3\xb2\xbc\x29\x2d\x3c\x99\xd7\x32\xc7\x79\x0b\xee\xd4\x19\x6d\x5e\xc0\xea\x61\x46\x82\xb0\x20\xee\xd2\x15\x59\x89\x85\xb2\xb7\xdb\x1f\x31\x04\x59\x05\x87\x34\x08\xf3\x8c\x3f\x5c\x91\xbd\x4c\x73\xc1\x85\xbf\x54\x8e\x7e\xf7\x9c\xa2\x57\xd1\xb8\x57\xfc\xd7\x6e\x43\xea\x8c\x21\x35\xcb\xb2\x11\xcd\x50\x2a\x47\x45\x83\x62\x5b\x57\xcb\x8c\xdc\x67\xde\xd1\x31\xc3\x16\x65\x48\xa6\x1d\xf5\x28\xbe\x81\x1a\x17\x6d\x82\x33\x96\xfc\xa7\x4e\x37\x64\xe0\xdd\xa6\xc3\x2c\x96\x44\xae\x3b\xc7\x19\x36\xd4\x30\xd7\xa4\xc2\x92\xc3\xda\xdc\x7e\x45\x99\x64\xb4\x2d\x33\xbb\xb5\x4b\x9a\x5a\x85\xbe\xad\x1d\xa8\x91\xdd\xa3\xf5\xc1\x11\x58\xe7\xc1\x83\xb9\x7d\x6d\xfa\x2a\x2c\xbb\xd3\xbc\xff\x86\x29\xc3\x93\xdb\x47\xeb\x21\xba\xb0\xe5\x0b\x53\xd3\x69\x6c\x5c\xe4\x76\x68\xe9\xaf\x35\xc5\xcc\x21\x09\x4c\x5e\xad\xcf\x60\xb0\xab\x4d\x0e\x76\xf1\xb0\x31\xae\x03\xe0\x84\xc4\x00\x15\xe7\x1b\x8e\x49\x75\x22\x1d\xae\x80\xbe\xf8\xf3\x75\x9a\x90\x24\x47\xf5\x53\x19\x3f\x7e\xb5\xd4\x50\x9b\x12\x54\xce\x95\x72\xe7\xdc\x6d\x8c\xd9\x42\x91\x32\xe8\x72\x3f\x3a\x69\x28\x61\x87\xc8\x60\x8a\x6f\xf8\xb9\xdb\xd5\xaf\x0b\x58\x5d\xa7\x98\x14\xfe\xdf\x5b\x19\xd7\x95\xb8\xdc\xf7\xb0\x3b\xca\xe7\xde\x33\x70\xb6\xbc\x4e\x03\x3b\xe1\xa0\xba\xeb\xd4\x8d\x6a\xf3\xd0\x03\xee\xce\xee\x4b\x32\x7a\x61\x81\x54\x6b\x7c\xdf\x1a\x7d\x45\x25\x6a\x04\x31\xce\xf9\x5d\xf3\xba\xdb\xe6\x14\x3c\xf4\xa4\x2c\x97\x2f\x75\x72\xb2\xf7\xf0\x99\xad\x06\x2d\x37\x65\x22\x26\xc3\xc3\x21\xcf\xca\x02\xc0\x21\xd2\xa1\x2d\x77\xa3\x01\x2b\x75\x48\xdb\x25\x0d\x15\x35\xde\xff\x8a\x91\xb7\x92\xe6\xb9\xf0\x6f\x07\x0d\xdd\x30\x06\xab\x96\xcc\x46\xef\xe5\x61\xaa\xbc\xc8\x68\xa7\x3c\xda\x01\x4c\xbf\x5a\x2e\x90\xc5\xd1\x8c\xea\x12\x38\x5b\xc5\x1f\xf4\x1f\xec\xd1\x5a\xde\x86\xd1\x2b\x96\x30\x1b\x5e\x90\x10\xa0\x54\xbf\xe6\x92\xdd\xc6\x90\x07\x29\x23\x88\xd5\x00\xb0\xc2\x6f\x56\x4b\xa0\x0b\x50\x9d\xa4\xf6\xdf\xa5\x92\x12\x0e\xdd\xb1\x44\xc4\xbc\xbb\x1f\x9d\x01\xae\xa3\x5e\xc7\x1e\xa3\xb0\x73\x8a\x31\x18\x23\x56\x43\x82\x59\xf2\x62\xb3\x06\xec\x60\xbe\x44\x02\xc3\x97\xaf\x5d\x2a\x95\x08\x88\x25\x48\x1c\x87\x79\x72\x71\x96\xdd\xa7\x97\xc4\x0e\x36\xbc\x17\x4f\x94\x34\x8b\x8a\x2f\xf5\xbd\x2a\xbb\x33\xe3\xfb\x40\x90\x0a\x01\xbc\x78\x71\x48\xff\x60\xb2\x8d\xad\xb8\x42\x9a\xb6\xfc\xcc\xe4\x71\x97\x65\x74\xc9\x3d\x83\x1f\x04\x8d\x88\x74\x34\xe9\xf5\x8e\x9a\xd3\x9a\x11\x7d\xa0\x78\xee\xab\x0a\x31\xda\x3d\x7b\x3e\x10\x41\x5f\xea\x57\x5d\x6b\x1f\x25\xf1\xd3\x8b\x7a\xe7\xe0\x03\x6d\x53\xc7\xe2\x52\x1f\xaf\x5b\x73\x52\xbf\x39\x24\x02\xa0\xfd\xc9\x4e\xb0\xf0\xa9\x47\xb4\x2b\xe7\x05\x0c\xfc\x6e\xa1\x22\x2d\x4e\xde\x25\xd1\x8b\x71\xc7\x81\x3f\xeb\xd0\x73\xa3\x7d\x9b\x34\x29\x20\x67\x2c\x92\xf0\x40\xa3\x29\xaf\x49\x6a\x2b\xa3\x61\x40\x3d\x98\x23\x0f\x14\x2e\x5c\x9a\x96\x25\x15\xa2\xab\x92\xfd\x65\xbb\x5a\xda\x8a\x0e\xf8\x57\xe1\xe4\x6e\xd5\x03\x84\xa2\x4e\x3b\xcd\x57\x77\xdb\xe6\x48\x42\x88\xf8\xda\x2b\x13\xef\xfc\xa3\xa7\x8d\x90\x57\xdc\x6f\x32\x2b\xd1\xbe\xff\xd5\x84\xf3\xcc\x4b\xee\x93\x41\x11\x2e\xf9\xa3\xab\x75\x6e\x09\x2e\x76\x0a\xad\x0d\xd9\xbd\xf0\xac\x1e\x99\x4c\x2e\x79\x49\x13\x46\xf1\xaa\x82\xb2\x52\x39\x5a\xd1\xa5\x42\x4d\x03\x95\xab\x20\x30\xd5\x4c\x89\x89\xf9\x0b\x66\xb4\x11\xf8\x70\x69\x36\x9f\x98\x94\x9a\x95\x97\xe2\x20\x79\xd6\xac\x79\x20\x32\x74\x9f\x42\xc8\x92\x16\xf5\x32\x16\x69\xd1\x25\xaf\x99\x6c\x56\x97\x59\xac\x9a\x00\x88\x0a\x87\x9f\x1b\xa1\xf0\xef\x29\xe6\x6d\xc1\xf3\xd9\x48\xdb\xc7\x45\x03\xe1\xc1\x30\xe0\x7b\xc6\x31\xb8\x8b\x40\x3c\x4f\x20\xc2\x85\x0f\x77\xa9\xe2\xc3\xa6\x4e\xc7\xf0\xa9\xf0\xf4\x25\xa6\xd9\x5c\xa0\x30\xf5\xb9\xaf\x6c\xc9\xfe\xa9\x4d\xbc\x3a\x49\x42\x63\xe1\x1b\x13\x8d\xd9\xb7\xcd\x5b\xf2\xf6\xdf\xf1\xa2\x5a\x5a\xcc\xc7\x0b\xf2\x55\x5b\x12\xbf\xb8\x48\xa6\xc7\x85\x4f\xf5\xa4\x93\xec\x79\xb3\xc1\x1f\xf3\xe6\x0c\x3d\x92\xf9\xf0\x2d\xbe\xb0\x50\x47\x5b\x5a\xbc\xee\xb1\x7e\x98\xfb\x7e\x6f\x87\x86\x85\x65\x41\x90\x60\x13\x4f\x1c\x9c\xa4\xf1\xe5\x98\xef\x77\xb8\x9a\xe4\xbf\xf5\x86\xd1\xe0\xd5\xa9\x67\xe1\x92\x37\xfa\x90\xec\x4e\x17\x52\x12\x22\xd7\x68\xf3\xbe\x29\xc6\x83\x08\x6c\x87\xd2\x2c\x08\x3d\xba\xe5\x84\x61\x6f\x4b\x40\xae\x50\xce\x93\x7e\x36\x01\x03\x38\x71\x4a\x2b\xc3\x5a\x8d\xd8\x09\x13\xc9\xbb\x47\xe3\x91\x28\xd8\x43\x74\x4d\x4d\xdb\xd7\x13\x87\x7a\x16\x40\x78\xf2\x5d\x97\x8d\xd1\x11\xbd\x71\x64\xe7\x40\x9b\x2d\xbe\xef\xc8\xd8\x2c\x7f\x2f\x48\x5d\xf6\x73\xdf\x7b\x49\xee\xe1\x69\x9b\x79\x7e\x03\xf6\x38\x0f\x4f\x56\x9b\x6a\x8f\xb6\x3b\x90\x36\xb9\xf3\xe7\x69\x28\x04\xee\xd2\x36\x17\x20\xdb\xb6\x6e\x1b\xf6\x0f\xed\x84\x9d\x7c\xd7\x4a\xcd\xcf\x48\x70\xde\x94\x23\x84\x68\xe5\xe9\x12\x38\x66\x33\x08\x5e\x14\x89\x92\xb9\x61\x97\x9d\x67\x34\xac\x2d\x68\xa1\x3b\x17\x24\xf9\x9f\xbf\x30\x52\x0f\x8a\xb6\x20\x1b\xe2\x5f\xd9\x7f\x93\x41\x04\xe2\x82\xf4\x25\x69\xfb\xf9\xc5\x83\x2d\xe1\xf0\xcf\x7e\x72\xc4\x48\x5b\xdc\x49\x6c\x42\x1f\x79\xd9\x5c\xf5\xb8\x89\x32\x66\x71\xd3\x0e\x83\xcd\x40\x93\x8d\x5a\xae\x6f\xe5\x88\xa4\x9d\x62\x35\xe9\xc2\x16\x7d\xf7\xa4\x49\xe1\xd7\x32\x70\xe1\x6b\x48\x14\x8d\xff\xe0\x9a\x6b\xd4\x3b\x2f\xde\x3f\x76\x90\x3e\x10\x2d\x07\x7f\x68\x67\x3f\x40\x6f\x6f\xd2\xea\xbd\x7d\x64\x9c\x76\x22\x2c\xda\xd4\x79\x35\xff\xb8\x09\x73\x7d\x53\xd0\x20\xb1\x54\x2e\xf6\x9d\x66\xcc\x2c\x99\x65\xd3\x8c\x61\x70\x61\xe5\x51\xfc\x77\xbd\x3d\x3d\x25\x97\x06\x28\xf8\x31\x76\x17\xfe\xc7\x44\x74\x0b\xc2\x38\xdd\x68\x50\x03\x99\xe3\x50\x01\xf3\xb0\xa4\x62\xaf\x29\x59\xd1\xf8\xe7\x95\xa3\xe5\x4f\x6b\x75\x9f\xcd\x84\xcc\x80\xb9\x13\x9b\x64\xc5\xcf\x7d\x2d\x47\x15\xaf\x7f\x5c\x77\x01\x09\x28\x4a\xd6\x44\xfe\x7e\xa3\xe9\x58\x4f\xda\x9a\x65\xf5\x0f\xa6\xa1\xbc\xe8\x32\x04\xa5\x99\xad\xd9\xca\xc7\x64\x52\x8a\xb3\x41\x42\xcd\x29\x7c\xfa\x61\xcd\x5f\xb7\xca\x38\x16\x8a\x85\x13\x13\x3b\xac\x69\x01\x7b\x9f\x22\xb9\x87\x1c\x1a\xae\x45\x29\x8f\xb6\xa1\x50\xbe\x34\xcb\xda\xef\x0b\x1b\xdc\x1f\x44\x09\x6d\xe8\x4a\x75\xc6\xd7\xd3\x5a\x4d\x50\xe0\x1b\x69\x94\xdb\xf5\xdc\xa3\x08\x32\x2f\x5e\xbf\xdf\x18\x81\x10\xa7\x81\xbd\xdc\xe5\x4e\xb6\x5a\x4d\x20\x7c\xd1\xf1\x03\x26\x9e\x22\x6e\x59\x12\x07\xaa\x93\xb7\x0d\x93\x25\x96\xe0\x04\xaa\xf5\x77\xf6\x2b\x4b\x4e\x4f\xeb\x56\xf3\x5f\x97\xa4\x8e\xf8\x68\x82\x08\x4c\x34\x63\x4b\xfa\x6a\x3d\xb0\xd9\xfb\xb4\x81\x00\x8d\x8f\x03\x14\xed\x10\xa3\x4e\x3d\x25\x8d\xf9\xbd\xb3\x30\xe6\x57\x54\xfc\xd3\x19\xc7\x85\x43\xdb\xb2\x19\x33\x08\x85\xc7\x43\xa5\x63\xb3\xed\x78\x46\x9c\xbc\x45\x45\xc0\xe4\x5e\xb2\x89\xcc\xdd\xd2\x52\xca\x2c\x40\x3f\xa2\x1a\x3f\xde\xcc\xff\xe9\x37\x15\xe2\x2d\x11\xb2\x20\x31\xd5\xdf\x67\xf0\x85\x03\xce\x13\xed\xc9\xaf\x4f\x37\x0d\x93\x79\x93\xca\x8b\x8d\x0d\xd5\xa5\xbb\x30\xcc\x2e\xe1\xdc\x61\x75\x40\x68\xe7\x2f\xd8\x82\x65\xc2\xb2\x6b\xaf\x00\x1d\xcc\x35\x59\xd8\x24\xf3\xaa\x14\x90\x24\xd0\x76\x77\x06\xe1\xaf\xef\xcb\xfe\x52\xb0\x8a\xd1\xac\xd9\xa3\x37\xa7\xab\x7a\x54\x80\xe5\xeb\x40\x61\x60\xa2\xaa\x60\x29\xd8\x47\x4b\x21\x27\x48\x39\xbf\x9e\xaf\xe9\x0a\xd1\x80\x03\x89\x34\x3f\xe5\x32\x63\x1d\x42\x61\xa9\x84\x0d\xbc\x73\x9e\xe6\x41\x0a\xdc\x3a\xb9\x40\xfb\xe8\x12\xd3\xd6\x2b\xa0\x75\x0e\xff\x12\xd4\x0b\xc9\xeb\x46\x5b\x26\x48\x55\xb7\x36\x18\xc8\xe7\xb6\x69\xfd\x22\x73\x9a\xa8\x76\xfc\xc5\x61\x49\x3b\xc2\x13\x18\x72\xee\xbf\xba\x46\x67\xf8\x3e\xc9\x0e\xa6\xf0\x93\xa5\xe6\x2a\xd9\x62\xa9\x42\x7e\xe1\xaf\xd7\x68\x99\xb4\x04\x35\x33\x44\xc1\x73\x67\x26\x14\x05\x0a\x88\x58\x9f\x6a\xf0\x82\xfc\x84\xbd\xb2\xe2\x6e\x92\xb6\xb4\x04\xfe\xf3\x7b\xe9\x51\x6d\xe8\xb0\xd1\xc2\x91\xad\x23\x34\x95\x9a\x40\xfa\x0a\xbd\x94\xcf\x3e\xd0\xd0\x73\xa8\x9f\xb0\x3b\x4e\xd3\x14\xc3\x6c\xe6\x07\xf0\xc8\x60\x38\x77\xa9\xee\x30\x51\xab\x41\xa4\xdb\x76\x48\x99\xc1\x31\xad\xe6\xb8\x68\x8b\xb2\xbe\x3d\x9f\x01\xc9\x75\x82\xee\xbf\xde\x42\x90\x5f\x31\xf7\x54\x06\xc2\x5b\x97\x5d\x41\xee\x91\xf5\x0a\xe6\xd2\x20\x99\xc9\x54\xfe\xfa\x60\x64\x5a\x4a\xc8\x4c\x54\x2a\x47\xfd\xd3\x75\x02\x92\xef\x53\x01\x4e\x09\xb9\xc0\x58\x78\xcc\x5a\xd0\xdd\x8b\x1a\x1b\xf2\x04\xf5\xee\x19\x95\xa1\x01\x34\xf1\xe7\xbd\xd2\x8d\xb5\x84\x4b\x6a\x71\x7d\x13\x8d\x79\x16\xa5\x92\xae\x9d\xd2\xd1\x78\x6d\xe8\xc2\x23\xb1\xe8\xf2\xe5\x57\x26\x05\xf2\xb8\xb5\x9a\xa4\x0c\x17\xba\xf6\x6f\xfe\x9b\x6f\x8c\x36\x6e\xce\x0c\xb4\x96\x58\xb8\xfd\x1c\xa3\x9e\x6b\x51\x27\xeb\x4c\x5a\x5c\xb2\x7b\xa2\x59\x5f\x04\xb8\x9a\x90\xf5\xef\x94\xfb\x8c\xb4\x47\xbc\xb0\x46\xac\x20\x4c\xf5\x39\x8b\xe3\xef\xce\xfe\x1e\x87\x58\x0d\x52\x25\xcc\x07\xf5\x24\x94\xcd\x3d\x82\xf8\xc9\xd2\x0a\x02\x18\x0d\xb3\xf1\xe9\xda\x9f\xa2\x75\x2e\x28\x95\xa3\x21\xfb\x87\xcb\x5b\xeb\x5b\x82\x55\x30\x01\xdf\x78\xa9\xee\x1d\xe7\x56\x78\x15\x2a\xc5\x5c\xcf\x6a\xfd\x9a\x5b\xb8\xc7\x2c\x9c\xf9\xb2\x26\x7c\x46\x84\xb6\xdd\x8e\xa6\x3e\x96\xe0\x54\x89\x57\xe5\xb5\x5a\xfc\x43\x5a\xaf\x62\x12\x5d\x64\xd3\x96\xe0\x9d\x8b\xf5\xc7\xb6\x98\xfc\x93\xd9\xc8\xbb\xcc\x1f\x31\xd0\x07\x4d\x9b\x78\x01\x77\x13\xb0\xc3\x39\x1b\xce\xd2\x96\x43\x52\x87\x58\x0b\xff\x17\x3f\x7e\x9e\xa7\x91\x11\x6a\x14\x56\x5d\xc4\xf1\xcf\xef\x18\xec\x1d\x3a\x4d\x5d\x19\x56\x21\x55\x8c\xbb\x7f\xf1\xb0\xf6\xbc\xbc\x4a\x5c\xbd\xbb\xff\x8f\x27\xf1\xbf\x9b\x02\x90\x9f\x3b\x45\x99\x56\xb1\x38\xb5\x75\x6b\xde\x63\x01\xf1\x1b\x49\xf8\xfc\xd4\x6d\xf8\x03\x56\x5e\xb9\x68\xc9\xb2\xf2\x95\x2b\x97\x5c\xbd\xe8\xba\xf8\x07\x9c\x55\x1c\xae\x23\xee\x40\x09\x36\xff\xb9\xa7\x8d\xf0\x1d\x3f\xdc\x4a\xe8\x28\xbb\xde\xf3\x6b\x9a\xab\x15\xe7\x70\x2f\x3f\xbc\x23\x3b\x5d\xe2\xc4\x0e\x67\xb4\x9b\x53\x33\x3b\xc6\x0f\x5f\x2c\x0b\x98\x0c\x2c\xea\x4f\x13\x06\xe1\xb6\x80\x8d\xd1\xd6\xe5\x69\x10\xe9\x23\x3a\x49\xf0\x0f\x93\x3b\x3a\x97\x1a\x11\x09\xa6\x6e\x88\x48\xdc\x42\x01\x4b\x50\x2a\x47\xdf\xb9\x4c\x6b\xb0\x9a\xbc\x41\xfd\x26\x2a\xa9\xa9\xeb\x33\xf6\xd9\xb1\x6d\x73\x87\x9a\x78\x82\x5e\x76\xbf\x01\x0a\x72\x88\x6f\x4b\xd7\x94\xfc\xa5\x97\x0e\x6f\xab\xc9\x0e\xce\xf7\x8b\xd7\xad\xd3\x9e\x2c\x47\x1c\x57\xe1\x1f\x87\x67\x3f\x35\x0f\xe3\xff\x93\xf8\xe5\x9f\xb7\x39\x7b\x3d\xab\x3c\x8c\x8b\x03\x5f\xca\x68\xc6\x7f\x65\xc4\x54\xa4\x25\x2e\xe2\x4e\xe8\x56\x3a\x77\x43\x05\x81\xf4\xdb\xd2\x22\x20\xa4\x30\x47\x07\xc1\x1e\x72\x46\x6a\x64\xa4\x1a\x61\x30\xf3\x39\x7e\xd8\x60\x78\x56\x51\xf3\x5e\x42\xf0\xe2\x8c\x58\x98\x3f\x53\x27\x9c\x03\x6d\x03\x4a\xa3\xd5\x53\x3f\x68\x54\x6f\x9e\x47\xaa\x7d\xd9\x91\xe2\x8f\x34\x04\x94\x4f\x2d\x29\x7c\xd6\xb8\x6b\xb4\x36\xa8\xaf\x81\xf6\x5c\x5c\x1a\x1c\xac\x19\x40\x25\x5b\x6d\x05\xe1\xec\xdd\x7b\x97\xd2\x16\xa8\x31\x8f\x20\xdb\x21\xfb\x14\x3e\xfa\xba\xb1\x91\xe4\x6e\x53\x02\x77\xf2\xfd\x9e\x21\xae\x42\x3c\xea\xe0\x1f\xfd\xf0\x61\x75\xac\x1d\xdc\xbe\xdf\xd7\xfa\x80\x0c\x3b\xf1\xdd\x88\xe8\x6a\x59\x77\x56\xd7\x87\xe8\x3d\x7c\xce\x04\x63\x4d\xb0\x81\x5a\x21\xac\x5e\x71\x1b\x97\xff\xf1\x03\x5a\x1e\x63\x55\xda\x26\x0e\xd0\x3f\x66\xbd\x32\x4a\x7b\x1b\x3e\x69\x71\x60\xec\x1f\x79\xde\xf0\x58\xeb\xf3\xaa\xcc\x02\x6e\x29\x06\xf1\x3f\x19\x29\x1a\x8d\x16\xe5\xd2\xd2\x7e\xd5\x9c\x4f\x81\x6a\xc2\x20\xc4\xa4\xdc\x03\x8f\x6b\x20\x4a\xb7\x29\xe2\xba\x10\x0e\xe9\x69\x86\xcc\x86\x4d\xbc\x6a\x3d\xf4\x00\xac\xfc\xb1\x17\xf1\xfb\x07\xa9\xdb\xe1\xcf\x8d\x79\x8c\x84\x44\xcb\xcf\xf3\x33\xad\x13\x76\xa0\xb9\x87\x30\xff\xa5\x91\x6a\x42\x87\xfe\xc6\x66\x0b\xfd\xc2\x14\x8c\xe1\xd7\x85\xb5\x1a\x77\x3a\x74\x96\x73\x73\x1f\x56\x73\x22\xb0\xe0\x32\x3a\xa5\xf5\xab\x54\xdd\x43\xf4\x58\x33\xeb\x4e\xbd\x04\x77\x01\xd7\x82\xc3\x88\xdc\xe3\xb7\x67\xbf\x38\xa8\xcc\x27\x6a\x05\xe3\xfb\xcf\x36\x93\xab\x94\xff\x4a\xe0\x9b\x7f\x5c\x72\xb6\xb6\x44\x10\x81\xdd\x91\x78\x9a\xfd\x66\x14\xe1\x5e\x72\xb5\x8b\xdd\xbb\x4d\x14\x49\x20\xa8\x8b\x82\xda\xb9\xaf\xdc\x06\x25\x87\x43\xbd\x52\x6f\xdc\x8c\x4e\x7b\x51\xe3\x48\xfb\x16\x69\x26\xf2\x51\xd1\xb2\x63\x69\xc4\x6c\xeb\xba\x77\xf9\xfc\x3c\xfd\xbc\x59\xdc\x75\x71\x2b\xcb\x47\x1b\xe2\x72\x4e\x20\x88\xd2\xba\xf3\x13\x4b\xdb\xe2\xfb\xf7\x2a\xbe\x12\xd1\xc9\x2e\x67\xcc\x31\xf7\xd1\x7e\x20\x98\x95\x7a\x64\xce\x5b\xac\x4f\x42\x91\x4c\x46\x87\x4c\xd4\x48\x9b\xcc\x6b\xf8\x2e\x01\x7d\xe2\x74\x8c\x78\x8a\x72\x95\x86\xaf\x3c\x76\x66\x96\xe9\xc3\x04\xb9\x99\x0d\x6a\x65\xf3\xe3\x29\xd9\x88\x96\xb8\x1c\xea\x38\x91\xef\xe7\x55\x07\xe2\xdb\x71\x06\x8b\xc6\x1c\x1a\xa7\x3f\x20\x2a\x02\xc2\x3c\xe9\xc0\x94\xfb\xaf\x21\xda\xdf\x27\x0e\x18\xe7\x3b\xd9\xe0\xd7\x04\xbb\x03\x96\xf5\xa4\x28\x5e\x5d\x55\x15\x0d\x71\x09\x4a\x78\x15\x5a\x8f\x9f\x6f\x3c\xb2\x7a\xdc\x24\x0d\x3a\x48\x3e\xfc\x0e\x16\xb5\xf1\x81\x20\x55\x86\xf2\x5e\xd1\xe7\x1e\xd0\x52\xbf\x53\x2a\x47\xc3\x37\xe0\x0c\xd0\xe5\x82\xe0\xb0\xf2\xb4\x3d\x67\xc4\x3f\x7b\xd9\xb2\xe5\xa8\xd1\x19\xad\x7a\x5e\x1f\xf9\xbb\x68\x29\xe9\x2e\xd1\xd7\x37\x78\xe6\xa1\x12\xdc\xa3\x6f\x52\x6b\x5c\xb8\x80\x76\xcf\x7f\xc1\x40\x17\xc8\xe3\x27\x75\xd5\x74\x2c\x2e\xe9\x8b\xff\x45\xf4\xef\x2b\xbb\xb4\x1f\x04\x32\x4e\xc9\x5b\xf8\xd2\x64\xf5\xd7\xc9\x06\x06\xc6\x6d\xc5\x53\xe7\xe8\x7b\xb7\x40\x48\xd7\x9b\x13\x2f\x2b\x9b\x5e\xde\x2c\x95\xa3\xef\xbe\x66\x5a\x82\x10\xde\xc4\xe1\x97\x2a\xa8\x7f\x7f\xdc\x50\xda\xe2\xa1\xda\xaf\x45\x5f\x5f\x6d\x22\x99\x1d\x22\xd5\x5f\x06\x8a\xb5\x2b\x8c\xf1\x19\xf1\xaa\x92\x72\xfc\xa5\x5d\x86\xb2\x09\xaa\xcb\x09\x29\xfd\xbd\xef\x39\xb9\xe0\x0a\x2b\x15\xe8\x85\xee\xd9\x8d\xca\x4f\x2b\x70\x3d\xc6\x3a\x5d\x88\x73\x23\x7f\xa9\x73\x22\x60\x89\x06\x71\xe7\x82\x49\xb8\xf2\xb9\x9e\x30\x3f\x03\xce\xd8\xdd\xa5\x81\xa7\x80\x14\x0a\xbf\x6a\xcc\x06\x75\xde\x38\xaf\x13\x50\x30\x2f\xdc\xbb\x76\x72\x66\xce\xca\x7d\x2a\x4a\xcc\xd3\x08\x83\xe5\x81\xe2\xc7\x8a\xea\x9f\x36\xa8\xef\x03\x7f\x33\xf7\x2f\xef\xe9\xaf\xa3\x8e\x93\xdb\xa8\xb7\x68\x10\xdc\x10\x36\x1f\x7d\x4c\x1a\x94\xfa\x56\xdc\x30\x41\x4b\x39\x3c\xe9\x16\xbc\x3a\xed\xd0\x03\xc8\xbd\x7d\x1a\x26\xd8\x50\x36\xd1\x7b\x9d\xf1\x66\xa5\xe5\xc6\xc7\x0b\xa5\x4f\xae\x1a\x6d\x94\x7d\x1c\xbd\x95\x30\xdb\x5c\xb9\xcd\x9c\x83\x84\x52\x30\x3b\x6f\x0f\x9f\x68\x5c\x38\x92\x95\xf4\xfa\x98\xe1\xa6\x60\x13\xcf\x70\xc0\x2d\x9c\xa3\xdc\xa8\xaa\x60\x7b\x1e\xc7\xdb\x27\x8f\xab\xc0\xc0\xdb\x70\xaa\xce\xdf\xa8\x4f\x90\x89\x57\x2d\xcd\x82\x6a\xe9\x93\x17\xa7\x75\x22\x08\x0b\xc2\x51\x1a\x38\xf1\x41\x23\x9d\x4b\x42\xb4\x8e\x71\x2f\x4c\x9e\xa7\x2a\x93\x16\x54\xb4\x03\xf9\x45\x23\xcd\x31\x05\xeb\xe7\x48\xdc\x90\xd7\x6b\xd3\xb1\x31\x66\x19\x44\x20\x8d\xff\x7e\x55\xf6\x69\xf0\x4a\x4b\x72\xc6\xe4\xba\xb5\x6f\xaf\xca\x2f\x24\xfe\xb2\xea\x46\xcd\x35\xd0\x5e\x0e\x27\x1e\x8e\xe5\x22\xf7\x1d\x03\x4a\x8d\x24\xf8\xb1\x6f\xa9\x50\x85\xa6\xa2\x1b\xbb\x86\xa6\x66\x53\x20\x27\xf5\xe1\xe5\xa3\x74\xc0\x8d\x65\xcb\x5a\x64\xd7\xcc\x6c\x3d\xe3\xd2\x2a\x23\x83\x4a\x0e\xe6\xba\x46\x6b\xa2\xef\x71\x4b\xd9\x8a\x7f\xf0\x99\x4f\xe2\x79\xbc\x8a\x08\xc4\xd4\x15\x3f\xbe\x29\x7b\xe7\xa5\x3e\x15\xe2\x54\xbe\x5b\x9b\xa4\x0d\x79\x79\xbb\x93\x2b\x55\x5c\x31\x21\x7b\x50\xd0\x94\x39\x23\x55\x5e\xbf\x58\x09\x78\x87\x1b\xb4\x43\xf6\xeb\xbd\xa6\x75\x21\x68\x5d\x27\x2e\xdf\x9f\x36\x58\xe5\x15\xd2\x0c\xe2\x04\xdc\xa1\x0a\x9a\x9f\xf5\x8e\xe6\xa8\xec\x42\xc8\x97\x22\x73\xab\x87\x4d\x50\xb3\xc9\x8e\xcd\x67\xae\x6b\xd8\x48\x9d\x21\xe3\x82\x02\x6c\xf4\xbf\xeb\x32\x32\x72\x01\xf3\x42\x84\x1a\xfd\xe5\xa5\xb4\x79\x67\x75\x0f\x99\x60\xc5\xb3\x5e\xd4\x25\xd1\x80\xb0\x09\x63\x81\x21\xa3\xf4\x5e\x32\x6c\x34\x88\x0d\x46\x7c\x33\x31\x82\x2d\xa7\x04\x3a\x2e\x75\x94\x5e\x5a\xad\x83\xb3\x41\xc2\x26\xfe\x41\x4b\xa3\xec\xe9\x24\x15\x56\x5d\x0f\x88\x75\x79\xae\x07\x5e\x30\xa4\x93\xa8\xcb\x93\x93\x5b\x1e\xa7\x95\xb5\x8a\x56\x1f\x9d\x77\x3f\xc6\x99\x8f\xa1\xe3\x7e\xb1\xfd\x94\x66\x44\x12\xf7\xd5\xe8\xcd\x38\x50\xec\xda\x32\x5a\xc6\x2b\x3b\x43\x35\xce\x8f\x5a\xae\x2f\x00\xc2\x20\x40\xb6\x73\x71\xe1\x41\xf5\xdf\x71\xb8\x0a\xc8\xf3\xcf\x4d\x51\x5f\xce\x25\x62\x03\x83\x2f\x97\x3f\x59\x1c\xa3\xcf\x94\x6a\x8c\x3a\x55\xd8\x54\x14\x3f\xba\x56\xb7\xcf\x45\x9d\x81\x45\xcb\x0d\x60\x4a\xfc\x93\x17\xef\x1b\x91\xbc\xa9\x6a\xb2\x2e\x8b\xde\x3e\xa0\xb3\x05\xd6\x13\x0b\x67\x55\xbb\x6f\x37\x42\x22\x4b\xa4\x7d\x72\x7f\xff\xbc\x26\xd8\x4d\x82\x92\x8f\xf5\xc0\x2b\x43\x0d\x61\x1b\x9b\x87\xe9\x60\x32\x77\xc8\xd1\xb8\xe9\x21\xf2\x93\xa2\x83\x9a\x45\x32\xe4\x6b\xc8\x44\x2b\x6f\xd5\x35\x4e\xc3\xc0\xa6\xa0\x5b\x12\x97\x09\x17\x6e\x37\xe6\xb6\x4d\x2e\xd2\x3a\x73\x4a\x7f\x3a\x6f\x6f\x72\x88\x91\x37\x8e\x1b\xd1\xd6\x46\x48\x12\x7a\xf0\x3f\x2d\x23\xa4\xd3\x6c\xe9\x95\xbb\x78\x64\x42\xfa\x24\x4d\x9e\xb8\x87\xde\xa1\x81\xb8\xe7\xce\x8d\x8f\x0e\xaa\xcd\x16\x17\x3e\x3a\x3a\x2d\xfc\x2b\x75\xed\xc7\x1c\x88\x4c\x42\x90\xb2\xad\xc8\xfd\xaa\x68\x8e\x2e\xc0\x5f\xb1\x54\x8e\xbe\x68\xce\xa6\x6d\xe5\xc7\x54\x58\xfe\xe8\x18\xed\x0a\xa1\x74\x1e\x96\x57\xe7\xab\x05\xbe\x3f\x08\x29\x24\x38\xa8\xb9\xf6\xdb\x7d\x81\xed\x42\x82\xa9\x38\x21\x6e\x5a\xd6\x1b\xf2\x5b\x17\xf5\x76\x2f\x48\xa6\x5b\x5f\xb9\x2d\xf3\x0d\xd3\x06\xfd\x98\xe2\xa1\xd4\x78\xa7\xf5\xdf\xf2\x21\xc6\xd6\x9c\x34\x24\x47\x2e\xb7\xff\xd9\xb4\x25\xe8\x83\x8c\x98\x0a\x64\x6e\x34\xf8\x4d\x0e\xa9\x4b\xc9\xe8\x8d\x2b\x74\x5f\x94\x6a\x1c\x94\x23\xb2\x70\xa2\x36\xe0\x63\xc2\x21\x5e\xc6\x30\x33\x77\x79\x3e\x11\x50\x08\x6c\xc1\xb9\x8b\x5b\x25\x63\xe2\x24\xba\x67\x5c\xdc\x31\x0a\x18\xbd\x4f\x41\x1c\x9a\xb5\x8e\x01\xed\x87\x17\x4a\xa7\x70\xa1\x30\x2d\x7f\x3a\x1d\xe7\xbb\xa4\xd9\x44\xa2\xf0\xb9\xbb\x0c\xe9\x62\xe0\x2f\x49\x9b\xd2\xf2\x40\x7e\xed\x4b\x5a\x29\x66\xc5\x61\x0c\x7d\x42\xa6\x1a\x6c\x0d\xe6\x3b\x71\x0d\x09\xb0\xb9\x5b\x0d\x91\x13\x4a\x2c\x5b\xae\x73\x6e\x1d\x32\x5a\x8b\x1c\x1e\xa8\xac\x40\x6c\xff\xf3\x66\x83\x50\x54\x6d\x31\x9f\x8b\x94\xa0\xd0\xdc\xaa\x01\x6f\x79\x89\xd8\x94\xc0\x8b\xbf\xf2\x51\x63\xa6\x90\x00\xa7\x93\x2f\x60\xef\x1b\xae\x5d\x60\x39\xd5\xbf\xee\x85\x11\x7a\x93\x0e\x7e\x04\xd1\x95\x47\x4d\xd5\xba\xf5\x5c\x20\x9a\x79\xd5\xb4\xf4\xde\x12\x58\xe1\x7d\xfc\x65\xe3\xd7\xb2\x4a\xdc\x87\x25\x71\x3c\x2a\x2f\x51\x58\x15\xee\x9a\x94\x86\x9e\x23\x5a\x50\xe1\x8e\x1f\x70\x58\x0b\xbc\xef\x76\x8d\xab\xce\xdb\x9d\x37\xe4\x07\x86\x9e\x67\x32\x19\x94\x33\xdc\xd2\xd6\x31\xd9\x4a\xd8\x93\x8a\xd1\xaf\x4f\x91\x71\x3f\x6c\x52\xa1\xaf\xa3\xa7\x3c\xaf\x16\x0e\xa8\xd0\xa4\x66\x86\xdc\xa0\x62\x12\x97\x0a\x66\x29\xcf\xe7\xe8\x7b\xa3\x47\xe9\xec\x5e\x21\x95\x28\x8b\x8d\xa5\x86\x7d\x90\x03\xc4\x02\xb5\x96\xa3\x93\xb4\xa6\x39\xa0\x2e\xfa\x2f\x47\x66\x81\xdb\x96\x95\x4b\xe1\x57\xe3\x4c\x66\xcd\x9c\x39\x40\xab\xbf\xf2\x6e\x53\x61\x14\xe6\x77\x33\x44\x05\x56\x68\x1f\x5d\x98\xfd\x06\x75\x41\xfa\x4a\x36\x01\x2f\x32\xfc\x24\x7f\xd5\x65\xc8\x43\x09\x46\x1c\xb4\xb4\x89\xd6\x5c\xac\x39\xda\x34\xd5\xc3\xfc\xec\x15\xd9\x5f\xba\x9e\x34\x89\xa7\xe6\xc7\x8f\x5f\x21\xcd\xfc\x5c\x52\x67\x5e\xa2\xe1\x9e\xb7\xe6\xa8\x76\x30\x60\x88\x3f\x2b\x1c\xdd\x96\x9e\x12\x9b\x74\x22\x64\x9f\x5b\x87\x78\xbf\x2b\x98\xdf\x31\x70\x29\x4c\x9d\x2a\xdd\x3e\x48\xdb\x46\xdd\xc8\x3c\x77\x0c\x01\x65\x27\x4c\x64\xc8\x21\xa8\x2c\x32\xee\x58\xc6\x6a\xb9\x3c\x50\x9c\xbe\x43\x57\x48\xa2\x6d\x89\xc9\x5d\xda\x83\x01\xaa\xe1\x71\xab\xc1\x43\x10\x12\x28\xf6\xaf\x97\xa4\x11\x41\x65\x3e\x6f\x4e\x32\x46\x25\xd2\xbb\x5a\xb6\xcf\xb5\xd3\xb3\x93\x0b\xe9\x49\x5e\x27\x09\x4e\xb3\x1c\x3d\xf8\xba\xb6\x50\x44\xcf\xbe\x3e\x50\x16\x79\x73\x8a\x66\x69\xd1\x6c\xa2\xdd\x3f\xfc\xd2\xb3\x5e\x90\xf0\xc5\x06\x6b\x36\x75\xc0\x6c\xfe\xe6\x3d\x46\x3b\xc5\x3c\x2f\xd5\x5e\xcb\xfd\xeb\x4d\xa6\x38\x2a\x0c\xa4\x51\xb6\xe0\xe1\x6e\x55\xd4\xf7\xa3\x5b\x70\xbf\xb6\xb3\xa4\x1e\x73\x70\x0c\x91\xff\x8f\xa3\xe6\xf2\xba\x86\x3d\x38\xe6\x83\xdb\xb6\xe0\x43\x9a\x37\x57\x5a\x72\x17\xbc\xf9\x83\x19\xb2\xa0\x2b\x30\x74\x81\xa3\x1e\x35\x9f\x62\x0d\x70\x22\x49\x76\xfd\xf2\x31\x29\x6c\xca\x13\x71\xbc\x5c\xcd\x50\x3f\x6b\x93\x3e\xe9\xca\x54\x78\xfe\x12\xc3\xc0\xda\xf7\x89\xef\xb3\xa4\x2f\xc0\xb9\xc6\xad\xc6\x3f\x67\x09\x80\xfd\xf4\x03\xa7\xc7\xff\x61\xf1\xf5\xf1\x8f\xfa\xf3\x1c\x35\x42\x0a\x6c\x48\xdf\x6a\xf7\xf1\x4f\x4f\x67\x67\x3e\x4e\x1f\xf7\x3c\xc2\x06\xb3\xd9\xce\xdf\x70\x0a\xa6\xa5\x0a\xb3\xfa\x2c\x29\x83\xb0\xeb\x76\xd5\x9b\x04\xd4\xa1\x06\xc2\x18\x18\x03\xaf\xa4\x2f\xc5\xe2\x4e\xa9\x1c\xbd\xb2\x4b\x1d\x0a\x9b\x88\x0a\x17\x89\xd6\xc2\x2f\x96\x74\xfa\x54\xc9\x81\x5d\x91\x2e\x33\x12\x2b\xf3\x9a\xdc\xb2\x69\xa6\xc9\x99\x6f\xc4\x15\x97\x57\xd0\x28\x17\x1e\xd8\xa4\xb7\xb2\x3f\x7e\xf6\xfc\xee\x8b\xe6\xc8\x5e\xfc\x95\x7d\xc6\x74\xde\xe1\x56\x43\xee\x52\xce\x32\x5c\x5d\xfc\xd0\xc5\x1f\xb8\xf3\x35\x03\xd9\x47\x7d\x16\x10\x2f\xc0\x89\xcb\x05\xfd\x4a\x17\x4c\xc2\x5b\x5b\x1a\xa0\x32\x4e\x3b\x30\xcc\xf8\xcb\x04\xed\xbf\x02\x76\xa4\x54\x8e\xbe\xb7\x78\x64\x2a\xd9\xa9\x1a\x86\x05\xa3\xb5\x19\xb5\x20\xb5\xa0\xa3\x13\x3c\xf7\x25\x49\xd5\x26\x42\xda\x77\x6e\x7d\x57\x1f\xe2\x10\xe6\x20\xca\x37\xd7\xdb\x1a\xae\x4d\x3b\xfb\x50\x06\xef\x85\x83\x9a\x86\x74\x8f\x74\x43\x8c\xff\xe0\x97\x93\x0c\xfe\x0e\xd1\x02\x54\x61\xe9\xba\x74\x0a\xe1\x38\xc9\x3c\xb3\xb0\xee\x32\x0d\xcb\x43\x6a\x71\xe7\x15\xfd\xee\x21\xcc\x68\x09\xf5\x33\xd1\x0f\xce\x59\xa3\xb3\xc3\x9b\x52\x49\x0e\x50\xb6\x6d\x53\xc4\x23\x56\xeb\x88\xb5\x07\xee\xf8\xa0\x59\x07\x09\x1a\x04\x59\x61\xdb\xc2\xdc\x35\x4a\x7e\x6c\xd6\x9c\x79\xa5\x72\x34\x7b\x08\x86\xfb\x2b\x1d\x47\xdf\xd6\x7f\x65\x08\x82\x19\x96\x73\x3f\xe8\xd4\xcc\xaa\xfc\x32\x7b\xc9\xeb\xc4\xab\xeb\x4e\xcc\xa7\xae\xd5\x16\x48\xdc\x71\x80\xa8\x0f\x6b\xb4\xbb\x52\x58\xaa\x0b\x3b\x43\xb0\xc4\x7b\xc1\x40\x98\x07\x94\x65\x9a\xf6\xfc\xfd\xb7\x66\x9f\xfa\xec\xde\xb9\x33\xe7\xcc\x9a\x2b\xc5\x44\x3e\x71\xcc\x28\xbd\x9a\x4d\x4a\x44\x8a\x95\xcc\x9f\x3e\x3f\xad\x84\x03\xdd\x3e\xa3\xf0\xb2\xe6\xa1\x2e\x35\xe7\x6c\x0e\x6d\x4d\x7e\xde\x16\x55\x8a\x90\x4a\xa2\x8b\x04\x2c\x96\xc8\xcc\xd9\x94\x00\x9a\x41\xce\x17\x57\x66\xff\xb8\x22\x31\xb0\xb2\x05\xfe\xbb\xd3\xd2\xf1\x43\x4d\xaf\xa2\x0b\x0f\x3d\x62\xd0\x3c\x2a\xcc\x61\x41\x9f\x5c\x2c\x2d\xba\x23\xbd\x43\x02\x6a\xad\x1c\x7b\x2b\xfb\x7b\x1a\x5c\x50\x02\x0f\x0d\x46\xf4\x63\xcf\x53\x3b\xd5\x26\x77\x98\xd5\x61\xad\xf2\x91\xc7\x4d\xcd\x4c\x8f\xba\x24\x39\xc9\xf7\x3c\x67\xd0\x39\x5d\x06\xcd\x73\x7c\x18\xa5\xe2\x89\xd8\xac\x98\x69\x54\x2b\xca\x72\xff\xbe\x54\xf3\xf8\x41\xb8\x56\x89\x00\x8e\x1d\xc4\x06\x1e\x56\xe0\x3d\x0c\x07\x77\x2e\x56\x1e\xbc\xb0\xd8\xbb\xe0\x40\x36\xc6\xd1\x6a\x9c\xca\x0d\x43\xe9\x1e\x63\xd6\xed\x87\x5e\x95\xf4\x25\x22\xaf\x5d\x3d\x88\xfb\xb8\x7c\x51\xc7\x4d\xf9\xe0\x0e\x6c\x21\x6a\x0e\xfa\xc0\x3c\xb0\x72\xb4\xd1\x43\x22\xca\xed\x3b\x81\xa6\x5d\xe9\x10\xaf\x41\x65\xbe\xba\xe4\x4e\x5d\x0c\x69\x3d\x44\x97\x7f\x5e\x38\x5c\x15\x06\xf8\x84\xa2\x75\xa7\x19\x06\x4a\xca\x3d\x4d\xa6\xb7\x8f\xaf\x31\xe4\xa3\x3c\x5a\x6a\x33\x21\x37\x74\x85\x7c\x97\xee\x24\x58\xa5\xf2\xc9\xe7\xff\xe0\x8d\x32\xfe\x19\x54\x93\x27\x0e\xe9\x9a\xe8\x0d\x9b\x58\x36\xd5\x8c\x79\x2f\x1a\x96\x5d\x26\x91\xee\xa0\x7b\xd0\xa5\xc6\x6f\xb4\xa9\x72\x5d\x90\x16\x8e\x0a\xf3\xee\x93\x58\x46\xc1\x52\xd3\x46\xf1\xad\xdc\xd8\x97\x0c\x4f\x8d\x20\xe0\xc2\xa3\x7d\x25\xcb\x61\xa9\xda\x73\xfe\x9b\x81\x61\xc0\x4c\x49\x62\xbc\xfe\x3e\x31\xc6\x48\x55\xdc\x43\x6c\x5f\xf8\x68\x07\x37\x53\xae\x06\x4e\x7d\x3c\xbd\xd0\xa2\xbb\xaa\x99\x78\xf5\x1a\xf2\x55\x9c\xcb\x0d\xe1\x28\xc9\x46\xb9\xce\x0e\x3d\x69\xc6\x5a\xb8\xf2\x25\x43\xdd\x2c\x74\x93\x45\x6e\xee\xdd\x99\x83\x88\x73\x26\x36\x92\x0f\xcf\x54\xa5\x70\x8d\x04\x30\x49\xcb\x7f\xda\x10\x36\x0b\xbd\xd0\x07\x94\x9c\x2c\xd8\xfe\x74\x00\x67\x5c\xbd\x3d\x41\x1c\xff\xbf\xd6\x63\x40\x8a\xad\x30\x11\x21\x2b\x84\x43\x75\xec\x67\x0d\xa6\x80\x07\x9b\x86\x9e\x12\x09\x42\x51\x95\xd6\x23\xd1\x07\xde\x30\x84\x53\x42\x4f\x9a\xc2\x25\x7a\xee\x27\x8d\x10\xcb\x5b\x8c\x06\x6a\xe9\x16\xed\x1b\x97\x7d\xd8\xd5\xb8\xa4\xc3\x85\xca\xbe\x27\x4c\xde\x34\x0b\x98\xaf\xe4\xbf\x0b\xcd\xdd\x98\x2b\x16\x09\xee\x77\xce\x7e\x5d\x89\x61\x8c\x03\x08\x96\x4b\xd1\x67\x5e\x31\x8b\x48\x11\xb0\x1a\x53\xbc\xf8\xf7\x8e\x74\xa0\x00\xed\x38\x88\x25\xaf\xe7\x17\xcf\xa8\xf9\x5d\xe8\x11\x21\xe9\x30\xfc\x59\x15\x78\x6c\x2a\x04\xd3\x7d\xbc\x8a\x95\x49\x46\x48\x73\xda\x9c\x57\x33\x79\xe6\xa5\x27\x3a\x44\x87\x5a\x89\x2a\x74\xcf\x3e\x53\xb1\x56\xbe\x01\x64\x77\xe4\x3f\xfd\xba\xe9\xb4\xef\x37\xfc\x94\x7d\x7a\x9b\x86\x77\xa4\xc2\x83\x14\x07\xda\x44\x13\x26\x1b\xf5\x04\xf3\x1d\xda\x97\x81\x34\x16\xc8\x4a\xb9\xb8\xa1\xd2\x17\x31\xf7\xf4\xb4\xf1\xfa\x98\x17\x34\x2c\xd4\xd7\xf8\xab\x6a\x7a\x3f\xd6\x73\x4d\x94\xeb\xa3\x7b\x34\xe1\x8b\x64\xff\xf5\xd5\x9d\xca\x3e\x5f\x91\xa7\xae\x7c\x3a\xa3\x7c\x06\xcb\xbf\xf5\xe6\x29\x13\xbc\x2e\x88\x0b\xa0\x76\xd8\x84\x7f\x72\xa5\x04\x59\x06\x81\x20\x16\x12\x8e\xbf\xb9\x56\xc5\xb0\x9a\xa0\x3e\x0c\x6e\xcb\x03\xb9\xdf\xdf\x6d\x3a\x30\x80\x80\x82\x85\x75\x6e\xb4\x67\x52\xf6\xc0\xda\xc4\x07\x11\x1e\xb5\xbc\x1d\x76\xc2\x14\xd7\x6b\x02\x96\xd5\x0f\x10\x2a\x5a\x3c\xfd\xd2\x51\x5a\xc1\x2f\x78\x58\x47\xef\xda\x63\xeb\x8d\xbb\x0d\xfd\x06\xbe\xe4\x2d\xfb\x32\x22\x55\xa8\x3e\x54\x2a\x47\xe7\x4e\xd7\x68\xb5\x56\xc3\xc6\xce\xb2\xd0\x34\x7c\x8c\xfd\x50\xb4\x58\x2b\x4d\xf7\xd1\xbf\x1c\x33\xa4\xc6\xa9\xf0\x9b\x54\xb1\xff\x07\xf2\xe7\x6c\xce\x66\xb1\x9b\x43\x1e\x20\xb6\x09\x68\x5a\x8f\xa9\x63\xd3\xa2\x01\x15\xc4\xf3\xcf\x2f\x95\xa3\xaf\xec\x1f\x63\xdc\x56\xe9\x6e\xf3\x94\x51\xf8\x93\x66\x93\x88\x24\x0e\x47\x53\x0d\x1e\xc3\xfa\xd0\x0f\xe4\x7e\x23\xff\x5f\x4b\x0c\x77\x5a\xea\x50\x98\xfc\x76\xc0\xcb\xf3\x7f\xbe\xc3\x50\x05\x63\x6e\x56\x1b\x20\xfa\xae\xc1\x33\x8a\x1f\x7f\x5b\x09\x2d\x9c\x72\xb1\xe6\x44\xdf\xe7\x56\xb8\x83\xcb\xa8\x15\x13\x8c\xfe\x3f\xbe\xf3\x2c\x55\x6e\x2f\xfc\xf6\x26\x4d\x29\x8d\x7b\x01\x75\x71\xaf\x0f\x95\xf9\x83\xbf\xd4\x00\xa1\x82\x25\x4b\xbc\x7c\xb5\xa8\x26\x59\x61\xa7\xdf\xd1\x88\x91\x5d\x3a\xd4\x86\xfb\x4a\xd9\xeb\x43\xa7\x0d\xd3\x88\x3f\x00\xb3\x3d\x6e\xfa\x4b\x52\x1a\x1f\x7f\x47\x5a\x40\xe5\x37\x5f\x62\x12\xad\x99\x52\xaf\xfa\xe1\xc6\x0e\x91\x73\x56\xb7\x83\x84\xad\x3b\x90\xbf\x67\xa2\x4a\x2c\x2d\xb6\x1e\x7c\x72\x0a\x4f\xe4\xd3\xea\xa8\x4d\x49\xa9\x1c\x9d\x61\x50\x45\x1b\xd4\xf7\x1d\xe4\xe0\xaa\xfa\xfd\x78\x4d\x27\x35\x0b\xda\x06\xdd\xf4\x72\x74\x6c\xb1\xda\x23\xcf\x9a\x3f\x73\xd6\xbc\xb9\xf1\x27\xfb\xc8\xe1\xec\x79\x22\x2e\x2a\x5e\x0d\xe4\x7e\xb3\xc4\xe4\xc5\x84\x22\xc0\x61\x68\x74\xc7\x4c\x43\x7e\xdc\x61\x56\x43\xa6\xbb\xc9\x43\xcd\xc1\x82\xc3\xea\x2c\xf1\x14\xce\x9f\x73\x9e\x96\x42\x1d\x02\x28\xf3\xe2\xea\x68\x74\x76\x6b\x2e\x55\x56\xbe\x76\x32\x33\xd6\x11\x1e\x4e\x7e\x8f\x55\x75\x10\x84\xcb\x5b\x12\x78\xf9\xe6\xf3\x3a\x4e\xd5\x41\xa9\xd3\xfc\x27\xe6\x48\xb6\x36\xef\xab\x50\x22\x8d\xd4\x96\x1b\x5e\x61\x9c\x04\x36\x16\x1f\x5f\xe8\xd6\x8d\x07\x45\x42\x11\xf9\xec\x8b\xda\x47\x21\x5e\x80\xca\xff\xc5\xbf\xe9\xce\x32\xba\x88\x70\xb1\x65\xc4\xf9\x41\xea\x24\xd9\xa3\x8b\x5a\x3a\x8c\x22\x01\x7e\xec\xca\x94\x32\xc9\xdc\xce\xce\x8e\xae\xc0\x4f\x7e\x5d\x58\x4d\xbd\xe1\x0b\xfe\x35\x1d\xd6\xf4\x80\x14\xc6\xac\x32\xd6\xb0\xa6\x9f\xd5\xd3\x23\x67\x22\x03\xb9\x19\xaf\xab\xaf\x40\xac\x40\x50\x1f\x0a\xfe\x50\xce\x65\x5a\xdc\x89\xeb\xa0\xf8\x3f\xf5\x9d\xcc\xde\x73\xf4\x94\x03\x45\xc9\x24\x33\xad\x30\xe0\xba\x1e\x17\x58\x35\xe4\xef\x95\x62\x4f\x8b\xc1\x45\xbd\x1c\x39\x8b\xdf\x8f\x05\x39\xdc\xf4\xe2\x3e\x35\x29\x9e\xb5\x20\xb0\xcd\xe6\x64\xe9\x54\xdd\x54\xd8\xab\xd3\xcc\xb4\x66\xe1\xab\x6a\xd9\xcf\x92\x36\x3b\xd7\xfd\x90\xf6\x6e\x5c\xe2\x38\x68\xbc\xf3\xf1\xa3\x86\x98\x49\x40\xaa\x2c\x74\x21\xae\xa5\xed\x57\xf1\x7a\x35\xa4\x10\xa4\x16\x37\xe8\x92\xe1\x76\x15\xf1\xea\x72\x54\x50\x3c\x65\xba\x89\x27\x4c\xc4\x1f\xe4\x73\xff\xbb\x79\xea\xe8\xcd\xbb\x28\x99\x99\x7d\x44\x63\xf8\xce\x9a\x0d\xe5\xdf\x45\xab\xa5\xa1\x22\x6d\x02\x38\x78\x20\xbf\x78\x8e\x9e\xad\xda\x44\xe0\x81\xfb\xde\x86\x73\x8d\x42\x94\x6e\x20\x5e\x55\x18\x62\x2c\xc5\x11\xc7\xb3\x81\x69\x6e\xc2\xb3\xc2\xc8\xff\xd6\x54\x49\x1a\x59\xb8\x28\xfe\x65\x1f\xab\xa6\xad\x9b\x95\x41\xe0\xad\xd0\x38\x90\xe7\x83\x2f\x00\xee\x9a\x0f\xbe\xa2\x15\x5c\xbe\x2d\x39\xc3\xf9\x27\x35\xa8\x78\x12\x3a\x4b\xe5\xe8\xb4\x7b\x10\x64\xe1\xd0\x3a\x71\x58\x7f\xea\x03\xfa\xde\x4d\xea\xf1\xa0\xbf\x03\x48\x74\x6d\xfe\x90\x69\x04\xa6\x69\x67\xaa\xff\x37\x7a\x68\xbd\x66\x0a\x73\x51\xdc\x3a\xe6\xff\x79\xfa\xb9\x46\x78\x12\x83\x88\x47\x45\x7f\xdc\xa6\xe9\x78\x12\x21\x58\xfc\x6f\x7f\xd0\x35\xd6\x3c\x18\xa9\xc4\xd6\xbd\x8f\xa9\xb3\xe4\x86\xa2\x8a\x90\x87\xdc\x1d\x3b\xcf\xd4\x66\x48\x98\xc1\x7f\xda\xdb\xa1\xf2\xea\xa1\xf0\x20\xd0\x3f\x7f\xb1\xe7\xff\xd0\x34\x4c\x10\x78\x45\x67\x92\x56\x1a\xc6\xb1\xba\x23\x02\x9c\xeb\xa5\x01\xc2\xaf\x92\x8e\x7c\xdc\x7d\x18\x1e\x42\x69\xb9\xdf\x67\xd9\xbc\x74\xf9\xff\x61\x53\x50\xbc\x60\xb9\xae\x1d\xef\xa4\xc4\xcd\xb7\x56\x77\x3a\x08\x28\x67\x4b\x19\x36\xa6\xaf\x1a\x84\x26\x86\x7b\xe7\xf6\x7d\xaa\x1d\x0b\xb5\x76\xec\x9f\xe4\x0c\xe9\x2a\xca\xac\x4e\x23\x90\xe7\xef\x1f\xae\xcf\xf0\x18\xf4\x64\x7f\xb3\xd8\x98\xf0\x27\x83\x4b\x14\x60\x9c\xb8\x4b\xfd\x9b\xb6\x00\x8f\x92\xa8\x16\x61\x63\xd5\x24\xc0\x26\xcd\x7f\xa4\x86\x0b\xe9\xab\x42\xe6\xb0\xd4\xa9\xe2\xd8\x6e\xa9\xc0\xc7\x1d\xee\x56\x58\x12\x48\xa3\x37\xbb\xf1\x5f\x2f\xe5\x1c\xfe\xf5\xb4\xaa\x94\x89\x09\xfd\x0c\xc0\xe0\x5b\xa7\x18\x1b\xe3\xd0\x75\x13\x39\x92\xc2\x85\x6f\xa9\xd1\xb2\x69\xd6\x9d\xdb\x74\x0d\xc2\xc2\x2f\x6f\x71\xaf\x4a\x3a\x45\x6f\x8a\x77\x6c\xd2\xa4\x45\xdd\x26\x60\x5e\xe1\xee\x0f\x5f\xdd\x41\x7d\x63\x01\x11\x7d\x08\x87\xf9\x49\x8f\x81\x57\x61\x7e\x33\x4c\xa0\xc8\xd1\xe8\x07\xd2\xaa\xc1\xea\x83\xe2\x69\x75\xcf\x44\x23\x63\x88\x06\x0d\xb4\xe1\xe5\x05\xcf\x8c\xd1\x76\x04\x82\xd5\x58\xa2\xcb\x39\x72\xcf\x04\x15\x1c\x3b\xf0\xbe\xf9\x47\xfa\xb3\xd9\xaf\xc5\x1d\xee\xdb\x2c\x6b\x45\x14\x59\x97\xa9\x55\x5d\x3d\x0c\xe2\x1e\x35\x11\x55\x2a\xae\xd4\xac\x2d\x40\xc9\x05\x8a\xee\x5d\x06\xc7\x3d\x2e\x57\xb1\x4d\xc4\x73\x67\x4b\x46\xd1\x52\xda\xd2\x15\x7d\xfe\x78\xbc\x2b\xfd\xea\x20\x4d\x90\x12\x52\x2e\x7a\x43\xdb\x61\x11\xa7\x01\xcf\xf1\xfd\xf3\x3f\xa4\x9d\xc3\x90\xf9\x54\xb4\xe9\x20\x6a\x69\xd1\xe7\xde\xd2\xf4\xae\xe2\x87\xe7\x23\xdd\xf1\x99\xb3\xcc\x1a\x1f\xa4\x6d\xd2\x85\x47\xff\x50\x19\x2f\x42\xb4\xa5\x65\x53\x86\xa6\xef\x2c\xfe\x9a\xb9\x91\xea\xfd\x3b\x94\x6a\xf5\xc2\xb3\x92\x51\x76\xb9\xe7\xb1\x4e\x20\xfd\xaa\xee\x61\xc9\x87\xf6\x6d\x44\x18\x9c\xbb\x44\xa2\x4f\x6c\x30\x0b\xa8\x23\xcd\x76\xd4\x8e\xec\x27\x9c\x35\x73\xd6\xfc\x8b\x66\xce\xef\xe9\x41\xec\x41\xf1\xc3\x9b\x32\x50\x1f\x44\xca\x0d\xe4\xbe\x68\xc4\xc7\x9a\xc3\xdb\xc9\x18\xf3\x9f\x97\x2a\x96\x25\xd1\x55\x87\xbf\x3a\xd2\x10\x50\x27\x22\x31\x7d\xfb\xc9\x34\x1c\xc9\x31\xaf\x26\x08\x4e\xbd\x43\x81\x43\xef\x45\xcf\x25\xd4\x09\x37\x3e\xc3\x1d\x55\x7a\xfe\x5b\x3d\xe9\xef\x6b\x12\x2d\xef\xe5\x57\xb5\x52\x8e\x51\x40\x4b\x3c\xce\xdc\x8b\xba\xf1\x58\x5c\x1e\x38\xc4\x0b\x48\x52\x1e\xb4\x9f\x1d\x9b\xfc\x0e\x37\x04\xaf\x97\xf4\x68\x7e\x58\x68\xac\x2f\xda\xb4\x05\x77\x78\x1d\x31\x41\xc5\x65\x79\x4d\x6e\x0a\xf6\x81\xf0\xa4\xfb\x65\x79\xb3\xf0\xca\xab\xae\x5e\x16\x7f\xbb\x23\x1a\xcf\x6e\xd6\x82\xf9\x3d\x38\x33\x6b\x1f\xcd\x86\x0d\x37\xf4\x2d\xb9\xa5\x1b\xc8\x7d\x78\x21\x26\xe5\x06\xd0\x73\xf7\xfe\xb2\x03\x77\xd3\xa0\x9e\xa4\x98\x8d\xdb\xa8\xdd\x4d\x56\xa5\x3c\x48\x58\x87\xae\x21\x38\xb1\x9e\x2a\x4a\x6b\xf7\x63\x13\x3a\x32\x5c\x55\x79\x24\x5c\xbb\x38\xad\x02\xfc\x50\x33\x79\xc9\x7d\x72\xab\x2a\xc4\x03\xc2\x1c\x9e\xf8\x4e\xbe\x26\xe4\xb7\xa6\x68\xca\x9c\x7f\xf8\x05\xad\xe6\xe2\x2e\x05\xfb\xb6\xe8\xf4\x97\x31\xd8\x3a\xac\x46\x4b\xbe\x95\x72\xbb\x0b\xe5\x35\xf2\xc8\x12\x47\xea\x33\x7e\xfc\x32\xf5\xab\xf8\xf9\x82\x81\x27\x54\xfc\x93\x5f\xb8\x7d\xb4\xaa\xe4\xe2\x7f\xc0\x00\x0b\x14\x7d\xec\xd9\x0e\x15\x09\x40\xb3\x61\xd9\xbe\x65\xfa\x44\x2d\x90\x80\xf2\xab\xa0\x2d\x35\xbd\x2f\x5c\xf9\x7a\x56\x29\x3d\x10\x94\xf8\xa1\x18\x5c\x8b\xeb\xf3\x53\x55\xc2\x74\x48\x43\xce\x5f\xa3\x3f\x16\x35\x5d\x15\x21\x40\xc6\x4a\xa6\x99\x2e\x99\x8c\x04\x87\x61\x77\xae\x3f\x30\x00\x89\x89\xc0\x3f\xf1\x92\xb1\xd2\xf0\x2e\x9d\xfc\xe4\xf9\x5c\x00\xd4\xbe\x3c\x90\xb7\xd6\xaa\x7a\x67\x01\xd8\xe7\xe7\xbf\x5c\x3d\x53\xde\xa1\x80\xb9\xc4\x82\x3e\xe8\x8d\xa7\x0c\xeb\xe7\x5a\xdd\x26\xde\x20\x5f\x28\xda\x3e\x5f\x9d\xa2\xf5\x3c\x44\x0a\x81\x5f\x2a\x47\xf5\x4b\x0c\xe9\x93\x5e\xb9\x00\xfe\xc4\xc4\x73\x3d\x8d\x35\x57\x07\x09\xa4\x56\xa7\x00\xc6\x3d\x4d\x63\x7b\x11\x3f\x16\xe2\xc8\x83\xf6\x8d\x43\x1d\x44\xe7\xc4\x1c\x4d\x2a\x53\xf7\x1e\x32\xe6\x16\xd5\x16\x18\xd4\x62\x37\x59\x78\xe0\xc5\x0c\xa7\x2d\xbe\xe5\x3f\x9e\x3f\x32\x43\x1c\x95\xdb\x99\xa5\x1d\x58\x62\x3f\x00\x01\x81\x3e\xec\x59\x7f\xfb\x8e\x4a\x01\xbd\x71\x0c\x8c\xbf\xe5\x6c\xc3\x30\xb5\x19\xe2\xce\x06\xef\xde\x87\x0f\x63\xe7\xb2\xf8\xda\xf8\x7f\xdd\xf4\xae\x2c\x37\x38\x6e\xb4\x36\xdd\x93\x7d\xfa\x75\xd2\xdf\x14\xdc\x9d\x11\x98\x15\x4f\xd4\x78\x56\x93\x39\x24\xed\x54\x22\x60\xd2\x9a\x2e\xbd\x10\xf2\xed\xf8\x49\xc7\xdf\x71\x20\xff\xda\x49\x95\xc5\xcf\x87\x85\xfd\xec\xa1\xda\x93\x08\xab\xe0\xc2\x73\xeb\x2a\x5d\xd6\xbb\x85\xd0\x8c\x15\xc7\xcc\x61\x03\xb1\xac\x50\x90\x80\x76\xe3\xb0\xee\xb3\x6b\x27\x68\x23\xc4\x4e\xa6\xe8\xf2\x6c\x51\x58\x6d\x93\x3e\x8f\x1a\x5d\xc7\x0d\xa8\x3e\x56\xba\x96\xfb\x16\x6f\x9b\x5f\xf8\xeb\x92\x8b\xbb\xa8\x34\xbf\xa7\x17\x86\x9d\x86\x4f\x96\x4d\x89\x04\x57\xbc\xff\x61\xd5\x90\xd8\x9a\x94\x61\x7e\xfa\x2e\xcd\x39\x22\x74\x02\x96\x90\x5f\x40\x0f\xe1\x0d\x45\x37\x8b\xbf\x9d\x3f\x88\xf8\x6a\x17\xd6\x73\x7e\x58\x91\x35\x2d\x84\x9d\x1f\x1f\x30\xe8\xb8\xf1\xa1\x96\xdc\x28\xb8\x7b\xe3\x45\x16\xed\x41\xbd\x16\x13\xdc\x43\xfd\x0c\xb9\x07\xf8\x97\xdd\xea\x5d\xf8\x14\x66\x46\xc5\xf2\xf4\xec\x85\x77\x92\x46\x4d\x6d\xfa\xee\xdd\xad\xa2\x4a\xc9\xb7\x88\xc0\x66\xaa\xb8\x6a\x28\xf6\xf9\x57\xd0\x1a\x4d\xa7\x5a\xc7\x26\x68\xa4\x8d\x00\xfa\xd0\x68\xe5\x49\xf5\xe6\x3a\xca\xfc\xa8\xb1\xac\x83\xc7\x18\x37\x1c\x72\x2e\xf3\xd3\xc9\x5d\x66\x81\x9d\x20\x0b\xde\x3f\xc9\x30\xf4\x20\x81\x64\x38\xbd\xb5\x25\x1b\x1e\x9a\x68\xc0\x35\x50\xf8\xe2\xdd\x23\xb4\x81\x55\x72\x07\x7f\xba\x6b\xb2\xb6\xbf\x40\xe7\x87\x8e\x88\x71\xf0\xbe\x6c\xba\x6b\xdb\xcc\x49\x81\x60\x8b\x6f\x1d\xaf\xd1\xb0\x03\x52\xc9\x00\xbb\x68\xb7\x66\xed\x22\x78\x03\xfb\xfc\x51\xcf\x8d\xd6\x7a\x33\x2a\x92\x68\x3d\xa1\x62\x24\xc1\x26\x25\x0d\xb8\xdd\x95\x52\x39\xba\x17\x8b\x9c\x52\x8d\x8a\x80\x39\xac\x9f\x8a\x52\x05\xe1\x74\x03\xb9\xff\xd0\xf6\x3c\xca\xe4\x71\x9d\x5e\xaa\x7a\x20\x8f\x52\x1e\xc8\x7d\x60\x58\xc6\xe6\x5f\xa2\xeb\xcb\x77\x9a\x06\x3a\x82\x26\x8c\xfd\x6f\xed\x3c\xdb\x8c\x54\xe9\xe2\x1a\xee\xc4\x77\xde\x49\x4a\x1b\x4a\x9b\xb2\xd8\x3c\x63\x4e\xb6\xdf\xad\x52\x4b\x12\xcd\x8d\x15\x9e\x09\x2d\x26\x8e\x6c\xe4\xf2\x37\x8e\xd6\xe9\xdd\x10\x87\xc1\x0b\xec\xea\x17\x4d\x01\x26\xd2\xc4\x6e\xb8\x50\x58\xa6\x13\xb2\x08\x68\x91\x6c\x58\x3a\x56\x6b\x26\x05\x53\x4c\xf9\x28\xbf\xc5\xd4\x12\xad\x01\xef\x30\x65\xe3\x8d\xd8\xa2\x81\x28\x39\x17\x20\x4a\x1b\x1f\xc1\xcb\x16\xab\x01\x2f\x32\xf8\x95\x7a\x6c\xf1\xcc\xfb\x8d\x42\x5b\x80\x14\x45\xda\x0e\xfc\xe2\x1e\x95\xfb\x5b\x7d\xc4\xb2\xa9\xef\x10\x0d\x34\x72\x71\x6f\x22\x5d\xc3\x5b\x5c\xe2\x49\xf3\x5f\x34\x8e\x61\x85\x04\x81\x43\x65\xc5\xba\xf2\x29\x65\xad\xd3\xe8\x48\x7a\x85\x27\x66\x1a\x37\xad\x26\x67\x0f\xf1\xb1\x1b\x38\x34\xce\xbc\x4d\x89\xa4\xe1\x40\x6e\xdd\x48\xd9\xa3\x0a\x4a\xad\xd4\x4a\x79\xf2\x61\x9d\x13\xb6\xfc\xca\xa8\x38\x3f\xfb\xb6\x7d\x6a\x09\x1a\x77\x80\xa5\x3a\xf5\xa8\x90\xf9\x35\xaa\x3f\x35\x46\x9b\x53\x37\xa9\x00\xe4\x69\xfc\x7b\xba\x1e\x18\x67\x1c\x17\x9f\x09\xf9\xed\x72\x3f\x3b\x74\xbe\x51\x37\xd4\x08\x03\xb5\xaf\x4e\xc0\xc7\x3b\xeb\x8d\x45\x07\x77\x58\x95\xd5\xfa\x12\x12\x76\xf1\x7d\xfb\x30\xd6\x87\x3e\x52\x39\x72\xff\x84\xc3\xc3\xd2\x72\x20\xaf\x02\x55\xcf\x0c\x01\x03\x77\x98\x22\x38\x24\xbe\x81\xd5\x14\xc0\xfd\xd3\x3d\xa6\x59\x94\x15\xb7\xc0\x8c\x22\x97\x2b\xff\xe7\xdd\x86\x0e\x0d\x67\x4e\x0a\xfb\x28\x8c\x78\x56\xbf\xa9\x71\xe1\x85\xab\xb3\x95\xc3\x3a\x2e\xef\x10\x83\x55\xcb\xfd\x20\x59\x3a\xe4\xb6\x3e\xa1\x15\x1a\x48\x23\x8c\xbf\xf0\xd5\x35\x63\x64\xee\xe1\x26\x25\xfa\xfa\x66\xd3\xa7\x99\xb6\xc0\xe2\x42\x9a\x13\xfc\x5d\x6d\x54\x52\xc2\xa1\x48\x01\x66\xa4\x19\x9b\x0c\x71\x07\xca\xbd\xb8\x77\xd2\xad\x00\xd6\x77\x61\xc3\xb0\x08\x8b\xcb\x4f\x4e\xd5\x48\x0f\x54\xd4\x59\x1f\x6d\x95\xca\x51\xeb\xe9\xec\x18\x9d\x30\x9c\x76\xe7\xde\x32\xf0\x08\xe8\x5c\x4d\x3c\x2b\xf5\xdc\x39\x7b\x85\xea\xd1\x35\x3d\x41\x48\x0f\x9f\xdc\xad\xee\xa6\xcf\xea\x1e\xab\x31\x8b\xa0\x5d\x53\xf4\xdf\xa3\xd3\x96\xdb\xa3\x96\xae\x01\xf1\xfb\x0d\x19\x26\x33\x4d\xbc\x3a\x8b\x23\xef\x18\xa7\x0d\xd8\x69\x90\xc1\x3e\xde\x18\x68\xc3\x50\x41\x98\x23\xb3\xe1\xa4\x99\x06\xd2\xc7\x0d\x7d\xea\x2a\x57\xe9\xb7\x9f\xca\x8a\x69\x57\xcf\x27\x2e\xf5\x48\x3d\xfd\x3b\xe6\xb9\x7e\xf0\x14\x03\x44\xc2\x3c\x0e\x40\x75\xa8\xe6\x7f\xbf\xdb\xf4\xc3\xb3\xa9\x13\xd7\xa4\x90\xa4\x56\x9d\xa6\x59\x8a\x30\x9f\x7b\x50\x8c\xbd\x39\x65\x94\xbe\x41\x0c\xa8\x87\x40\x89\x87\x27\x1a\xe2\x52\xe0\x6c\x9e\xb8\x2c\xe4\x5e\x38\xf9\x21\xe3\xf5\x6f\x08\xfd\x41\x1d\x1e\x6e\x79\x25\x7b\x6d\xfb\xe2\x5e\xba\xdf\xa6\x6e\xc5\x6f\x20\xda\x5c\xd1\x23\xfe\xfe\x70\x16\x28\xd2\x33\x0b\x57\xa3\x5d\xbb\x25\xea\xd4\x0e\xfd\xcc\xb4\xaa\xf0\xe1\xa5\xd9\x76\x17\x15\xbe\xf2\xff\xf8\x4b\xad\x46\x65\x01\xeb\xa7\x9e\xec\x52\x72\xdf\x7a\xed\xff\xc2\x82\x81\x03\xea\x59\x07\x3f\xa8\x2d\x6f\xe2\x9a\xa2\xce\x3a\x55\xd9\x4a\x8b\x0d\x76\x15\xc0\x4e\x10\xaa\x9d\x7d\x63\x3f\xdd\xa7\x18\x28\xd0\x10\x16\xa4\x53\xec\x32\xd6\xe0\x0e\x61\xaa\xab\x3f\xf7\x0e\x4d\x09\xaf\x5f\x1b\x72\xbf\x7b\x18\x23\xc0\x75\x41\xa2\xae\xf6\xa5\x63\x93\xda\xe6\x04\x94\xf9\x01\x3a\x0c\xe0\x98\xf7\x73\x1a\xf0\xbf\xe6\x90\x20\xa0\xa8\xe2\x53\x9c\x1a\xa9\x2e\x9a\x69\x2e\xd4\xc5\x69\xf7\xe8\xe4\x4c\x70\x1c\x8b\x9f\xd7\x4b\x55\xa3\xcf\xb7\xc2\x0a\x49\x80\x2d\x86\x08\x4c\x95\x38\x46\xc9\x5d\x78\x59\xf3\x25\xf6\x5d\xee\x50\x39\xc5\x2d\x9e\x71\x53\x62\x42\x6a\x39\x24\x01\x68\xd3\x75\xd9\xa4\xde\x97\x1a\xbe\xe7\xcf\xbc\xc2\x6c\x10\x2c\x41\xab\xac\x92\x20\x56\x0a\xdf\xba\x4d\xdf\xaf\xc1\xfa\x0e\x9e\xc4\xe4\xa3\x66\xd4\x75\x1c\xb5\xc3\xdc\x38\x4d\x33\x0b\xc5\x0c\x0d\x5b\xbc\x81\x9c\x3b\x51\x0d\xe1\x2f\x9a\xd9\x33\x6b\x6e\xa9\x1c\xdd\xff\xd4\x64\xe3\xd8\xfb\xb8\xb3\xd0\x96\xc9\xeb\x9e\xd3\x6d\xb5\xbd\xf8\x10\x31\x7c\xf6\x85\x53\xdf\xd2\x7c\x19\x2c\xee\x71\x17\xa7\x36\xb9\xf3\xba\x8d\x5a\x81\x21\x6f\x31\xc9\x0d\x2f\xbc\xae\x5a\xeb\xde\x6e\x58\x25\x3c\xa8\xe9\x0c\xfb\xa4\x86\x05\x57\xee\xc8\x4a\x63\x6a\x1a\x7a\xcc\x62\x4d\x49\x07\x2f\x0f\x14\x06\x1e\x31\xc5\x1c\x85\x60\x75\xf0\x61\xd7\xcf\xdc\x91\x69\x06\x2b\xb9\x56\xe3\x22\x4d\x32\xf9\x2f\x8d\x1b\xb4\x5a\x00\xee\xc6\xd1\xe5\xa6\x7f\x44\x5d\x0e\x79\x5f\x9b\x8e\x49\xd7\xa1\x04\xa8\x5b\x3f\x33\xa8\xcf\xa4\xc5\x59\x55\xd1\x16\xbe\x78\x67\x87\xcf\x90\x1f\x3a\x00\xd4\xc5\x20\xf4\xdc\x2a\x4d\x1b\x31\x08\xe2\x12\xaa\x54\x8e\xe6\xed\x50\xff\xd5\xe3\xe0\x09\x15\x9f\xb7\x1b\x0d\x11\xb8\x9a\xa0\xb4\x0a\x7a\x3c\x00\xbe\x58\x33\x32\xb3\xea\x09\x1d\x50\x9b\xfc\xf2\x74\x93\xaf\x00\x66\x17\x78\xc5\xda\x57\xc0\x09\x76\xa8\x57\x9a\x35\x5b\xde\xcc\xfb\x0c\x24\x01\x71\x04\x25\xd5\x3e\xb9\x0f\xb8\xe5\x36\x23\xd7\x8a\xd4\x00\x1f\x45\xe1\x1f\x39\xc7\x28\x19\x95\xf0\x4f\x52\x64\x7c\x7e\xd7\x28\xbd\x89\xe4\x02\x43\x5e\xe1\xec\xbb\x4c\x11\xb0\x9b\x43\x26\x64\x38\xc8\x8d\xed\x49\x26\x59\xa2\xc2\x5d\x28\xe8\xdf\xbe\x54\x01\x0d\x58\x87\xce\x6f\x6e\xe4\x8a\x29\x9e\xc2\x2c\x31\xf0\xe4\x08\x3a\x8c\x7a\xf3\x9f\x33\xda\x02\x97\x55\xab\x69\x10\x00\xa7\x8d\x37\x5f\x1f\x97\x75\x9a\x4b\x6e\x4a\xa9\x1c\x9d\x79\x31\x56\x08\x7e\x83\x95\xca\xd1\xc9\x57\x3a\x1c\x5d\x66\xe1\xfe\xbd\x74\xb1\xc9\xcf\x23\x0e\xc8\xda\x35\x71\x4c\xf2\xc0\x6e\x63\x9d\x98\xb0\xf1\xe4\xeb\x5d\xf8\x18\xce\x72\x57\x80\xbd\x99\x3e\x63\xff\xfc\xca\x6c\x24\x77\x09\x96\x0a\x98\x80\xf5\xe1\xc1\x90\xed\xd9\x4f\x07\xee\x13\x50\xd8\xfc\xd7\xfc\xc1\x44\xe4\xd1\x23\xed\x9b\x2d\x1d\xa1\x03\x3e\x6f\x38\x6a\xdd\xd9\x52\xa0\xa7\x50\x2b\x26\x8a\x67\x3e\xd6\xe1\xfe\x18\xfa\x69\xd7\xf0\x89\x07\x32\xcc\x88\x20\x14\x28\x07\xf4\xc5\x13\x0a\x4c\xd9\x20\x8e\xe3\x07\x82\x2b\x16\x5d\x74\xc3\xe4\xb1\xde\x60\x72\x52\xa5\x72\xb4\x79\xab\xe4\xe5\x02\x6c\x40\xf6\xc4\xbd\xe7\x19\xe7\x58\x0e\xc8\xe4\x21\xfc\x71\x25\x1b\x07\x3d\xea\x9b\xf2\xdf\x03\xb9\xbf\xeb\x1d\x74\xe3\x93\x88\xd9\x7c\x6d\xf2\xa8\x8e\x59\x1d\x48\x7c\x3c\x99\xae\xb6\xe7\xcd\x99\x15\xbf\xbd\xf3\x0c\x98\x9b\x1f\x08\x4a\xf1\x01\x47\xd7\x17\x07\x61\x14\x42\xb4\xf9\xcb\x3c\x1c\xf6\x5c\x45\xfa\x69\x40\xcc\xb1\xc3\xa8\x89\x06\x12\x80\x6e\x08\x70\xcc\x7d\xe6\x2f\x47\xca\x1c\xe2\x37\x99\x48\x08\x73\x85\x7b\xc6\x75\xa5\x4b\x25\xd0\x12\x4e\xf7\xfb\xc5\x51\x8e\x29\x20\x15\x58\x76\x95\xa3\x74\x6a\xfe\x86\x9b\x0c\x3b\xde\x9e\x24\xa5\x95\xa4\x1d\xf5\x75\x01\xc7\x91\x43\x72\x04\x2e\x68\x8d\x35\xee\x72\x95\x6e\x90\x37\xf9\x8f\x0b\x55\x69\xb3\x9e\xeb\x88\xc1\xfc\xeb\x6f\x6b\x9c\xbd\xd0\x4b\x0c\xec\x1e\x9c\x62\xf4\x7d\x02\x8c\x21\xa4\x38\xf5\x2a\xc3\xb1\xbf\x2e\x78\xd8\x94\x7f\x58\x70\x8f\x68\xa2\x1a\x4d\x81\xe2\x20\x93\xb5\x3e\x45\xb0\x66\x13\x15\x42\x3e\xbb\x17\xfb\x84\x45\xe0\x6f\xd8\x4e\xf6\x18\xf9\x53\x9f\x1d\xa7\xc5\xab\x80\xb5\x60\x86\x2b\xff\xf0\x17\xfb\xb3\x05\xdf\x27\x65\x68\xbd\xfd\x61\x73\x2d\x93\x7e\xde\xe7\xdf\xd1\x04\xdc\x98\xa0\x71\x38\x63\x1e\xac\xaa\x8a\xa7\x18\x7c\x7c\x8b\x09\x2b\x64\x80\x74\x8f\xbe\x70\x9e\xe9\x04\xdf\x4e\x64\x90\xd6\x4d\x34\x00\x62\xa1\x07\x06\x50\xbe\xca\x45\x97\xdf\x61\xe2\x83\x9a\x5c\x04\x89\x4a\x47\x6e\xcd\x0a\xdd\x13\xd3\x23\xad\xb8\xdb\x4d\x45\xfa\xd6\x18\x3c\x14\xee\xca\xb5\xfd\xdb\xba\x5f\x1c\x75\x24\x72\x39\xb7\xe7\xf6\xa9\x9e\x86\x1b\x4b\x97\xdb\x1d\xc5\xe5\x3f\x9e\x34\x6e\x69\x3d\x6e\x9e\x24\xfb\x39\xba\x69\x8f\x2a\xf8\x45\x58\x41\xac\xc3\x26\xc3\xdb\x07\x81\x38\xa8\xb9\x70\x53\x30\xcd\x68\xb8\x2c\x9b\x78\x75\x3a\x58\x8b\x5d\xbc\xf8\x59\xcd\xd7\xc7\x22\x55\xea\x32\x8b\xe0\x88\x38\x5f\x3d\x45\xfd\x59\x5f\x28\x58\x9f\x9a\x6a\xec\x0d\x3a\x08\x3b\x3e\x95\x93\xeb\x68\x99\x31\xdc\x10\xac\x9a\x98\x7d\xe7\x5e\x1d\xa6\x4d\x2f\xd1\x0f\xf1\xe5\x7b\xc6\x9b\xe9\xb2\xc5\xaa\x09\x54\x71\x59\xd0\xe1\xb0\x42\xe2\xdc\x24\x75\x5f\xf3\xbf\xb9\x5b\x03\x32\x30\xa7\x42\x3a\x77\xfe\xa3\x1e\xea\x32\x7a\x05\x57\x2a\xba\xe4\x2f\x10\xea\xd5\xf5\xce\xee\x91\xd8\x99\xfc\xfb\x37\x0d\xd7\x46\x45\x04\x5b\xf8\xf1\x3b\xcf\xf1\xb2\x92\x08\x28\x6b\x9c\x61\x25\x1b\xdc\x49\x28\x6e\x03\x98\x78\xc9\x23\xf8\x87\x27\xb3\xc5\x41\x83\xfb\x36\x93\x3d\x87\x7c\xb8\xdf\x99\x60\xa8\xed\x81\x1a\xa0\x72\xf3\x1c\xc8\xff\xe5\x8e\x0e\xc4\x70\x23\xb1\x97\x2d\xce\xa9\x1a\xc5\x23\x92\x21\x08\x13\x70\x5e\xa3\x2d\xc3\x55\x0f\x6c\xd9\x44\x10\x2b\xa0\x82\xa1\x0c\x51\xfe\x4f\x27\x55\xd9\x7b\x73\x88\x02\xa9\x58\x13\xfd\xfc\x71\x55\x62\x03\xaa\x3a\x74\xd0\xe2\x2a\x3f\xf4\x65\x6d\x56\x01\x1a\x7a\x90\xcb\xbe\xbf\x1d\xc7\x4d\xbd\x20\x52\x58\x6a\xc2\xf8\xa0\x78\xf6\x2a\x53\x1a\x0a\x47\xb8\x49\x39\xf6\xd6\x48\x9d\xb6\x14\x30\x28\x11\x7f\xfb\x30\x26\xb7\x45\xdc\x83\x52\x09\xb9\x94\xd7\x9c\xa5\x91\x4d\xda\x1d\x47\xfb\x26\xb9\xa9\x66\x6e\xe2\x59\x91\xfb\x87\x67\xb1\x6b\x5b\xc9\x5c\xf0\x4a\x48\x5f\x5c\x5e\xbc\xdb\xa5\xf7\xfe\x9e\x1f\x97\x8f\xf8\x48\xd6\xde\xaa\x42\x35\x75\x59\x9c\xe1\x92\x98\xf0\xbe\x4d\x69\x5b\x18\x84\x6e\xfc\x1b\xfe\xf0\x72\x56\x18\x97\x7a\x01\x15\x4d\xc1\x7c\x3a\xb8\xbf\xdc\x7b\xb7\x19\x38\x31\xea\xd4\x4a\x16\x4d\x16\x72\xd2\x65\xb8\xbe\x4e\x4d\xa6\x7d\x2a\xea\x21\x55\xdb\x8a\x68\xe1\x71\xcc\x3f\xd7\x12\x8f\x0a\x0d\xf8\x57\xf8\xc1\x9e\x33\xf4\x5c\x57\x8e\x16\x1c\x30\x6a\x1f\xa9\x12\x17\x7d\xc3\x30\x55\x24\x4c\x09\x1a\x14\xfb\xba\xb2\xf7\x13\x98\xbb\xd4\xa7\x98\x67\xc3\xc3\x06\x33\xb0\xaf\xd2\x90\x20\x8c\xf4\x13\x7e\x76\xa1\x51\x42\x00\x0b\xd3\x4f\x44\x4e\x6a\xd2\xb5\x31\xf4\x70\x41\x05\x5a\x78\xdb\xb2\xb4\x91\x0a\xe7\x8d\x41\x95\xd5\x1f\x69\x9e\xa5\xdf\x4a\xcb\x09\xd1\xce\x3a\x29\x5f\x66\x1d\xce\x5e\xa6\xd0\x6b\x3a\x94\xf8\x44\x0a\x15\x97\x07\xf2\x9f\x09\xcc\x2e\xc8\x6d\xc6\x7f\xdc\x5d\x2a\x47\x5f\x74\xb0\x8a\x58\xc2\x1c\x4d\xd5\x39\x37\x76\x3e\x66\x49\xa9\xc7\x48\xab\xe8\x91\x5f\x68\x3f\x8a\xff\x7d\x49\x48\xf4\x94\x5e\x58\x61\x68\x30\x10\xaf\x8a\x92\x35\xe5\x81\x5c\x75\x63\xc7\x44\x3e\x60\x1e\x92\xf1\xb1\xf8\x3c\xf7\x0a\x35\x69\xed\x07\x0b\x87\xe4\xe7\x2e\x3c\xdd\xdc\x32\x00\xc7\x45\x8e\x47\x0b\xd3\x77\x8c\x94\x0f\xb6\x12\x0a\x34\x9d\x03\xfb\xf8\x27\x0d\x84\x0b\x11\xeb\x79\x98\x32\x2b\x72\xae\x41\xbd\x40\x85\xaa\x16\x4d\x7b\x74\xb6\x4c\xdd\x08\x97\xd4\x58\x1f\x29\x05\x7d\x4d\xa8\x1f\xfe\x74\x99\x31\xda\x22\x0e\x4d\x8f\x52\xfe\xd7\x4b\xf1\xf9\x2c\x23\x9e\xa5\xe3\x37\xbe\xb6\x5f\x03\xbe\x11\xcb\xa1\x40\x87\xcb\x8d\x7a\x5c\xb7\xde\x0b\xa0\xee\x86\xdf\x32\x79\xa2\xe6\xac\x16\x08\xea\xd5\xc1\x34\xbc\x3c\x90\x3f\xdf\x10\x8b\x94\xda\xd6\x71\x7c\xc1\x49\xc1\x57\x8e\xaa\xad\x42\x00\xed\x76\x74\x62\x3b\xc2\x22\xeb\xac\x25\xad\x3a\x27\x77\x74\x30\xc8\x9c\x7f\xea\x55\x8d\xc8\x78\x21\x28\x7f\xef\x9c\x98\x11\xc3\x22\x02\x69\xdd\xb7\x4c\x4f\xe7\x33\xbc\x4f\x3f\x8f\x43\x0d\xde\xb0\xc5\x1d\x24\x52\x0d\x14\x3f\xfa\x80\xbe\xa0\xf0\x1b\xbc\x05\x0d\xd5\x40\xe1\x77\x0f\xa9\x98\x48\x1c\x86\xaa\x2c\x9b\x87\x67\xdf\x7d\x8d\x79\x55\x0d\x57\xf5\xd0\x54\xf5\x8e\x6a\x5c\xd4\x59\x8b\x7a\x58\x9a\xe7\x5f\x7e\xc3\x6c\x4d\x5c\x02\x57\x36\x0e\x05\x73\xc6\x69\x70\xbd\xff\x8f\xae\xb7\x8f\xb7\xaa\xaa\xf3\xc7\x39\xfb\x9c\x31\x42\x9e\x9f\x41\xc0\x2b\x12\x12\x70\xae\x97\xcb\xb3\x91\x09\x22\x22\x22\x87\x80\xd0\xcc\x88\x75\xf6\x5e\xe7\xec\x75\xcf\x3e\x7b\x1d\xd6\xde\xfb\x9c\x7b\x6e\x46\x46\xe4\x10\x1a\x11\xa1\x3f\x73\x88\xcc\x18\x33\x33\xf3\x4b\x64\x0e\x43\xa4\x8e\x99\x99\x19\x99\x31\x66\xc6\x90\x63\x8e\x43\xe4\xa0\x63\xc6\x38\xdd\xdd\xef\xb5\x3f\x6b\xed\xbd\xd6\x5e\x9b\xf9\x67\xe6\x15\xc2\xbd\xe7\xec\xbd\xd6\xe7\xf1\xfd\x40\x6d\x54\x17\x2c\x17\xb7\xa1\xd9\xd2\x38\x94\x8a\x6e\xc6\x68\x3c\x31\x5e\xff\x28\xb2\xc9\x78\xb8\x63\x62\x26\x1d\xb1\xa8\x5a\xe0\x8b\xa1\xf1\x8a\x37\x78\x0c\x77\xdf\xce\x03\xb7\x34\x95\xc9\x3d\x37\x34\xfd\x46\x1a\x8e\x58\x06\x1a\x1f\x18\xaf\xe1\x29\x39\x44\x2e\xba\xbc\x1b\xde\xca\xf2\x01\x82\xaa\xcd\x4b\xd0\xf0\x53\xcb\x25\xfe\x99\x65\xf6\x99\x68\x66\xfa\xdf\x3a\x30\x98\x8b\xc7\x58\x85\xcf\x5e\x26\x9c\x8c\xb0\xeb\x11\x9f\x02\xe6\x15\x1e\xfb\x05\xa7\xd3\x8d\x68\x03\x59\x8c\x8f\x5b\x33\x23\xc5\x77\x78\xd3\xbc\x1c\x47\xad\xef\xfc\xad\xff\x07\x68\x86\x57\x0d\x37\x76\xf2\x10\x89\x7b\x41\x13\x1c\x22\xef\xb1\x17\x27\x4a\x8f\x3e\x27\x03\xdf\x6c\x28\xb2\x96\xa0\x67\x28\xc3\xc6\x2d\xda\x3e\xcf\xa5\xe5\xa0\x4e\x7c\x2f\xd0\xa6\x7e\x9f\x39\x32\x56\xb7\x78\x5a\xc3\xb1\x36\xd3\x76\x28\xb7\xc8\x06\x24\xd1\x05\x5d\x32\x83\x96\x91\xe3\xe0\x76\x9d\xba\x18\x9a\xae\x4d\xa7\x93\xcb\x60\xab\xf2\xc8\xb9\xe1\xeb\xd2\x2f\xcf\x06\x91\x09\xa8\x62\xbf\xb5\x4b\x91\x94\x92\x3e\x8f\xa3\xa5\x8e\x16\x68\x80\xc6\x3f\x69\xf7\xd3\x22\xf2\x62\x47\xd5\xb8\xcc\xed\x78\x77\xaa\x3c\xce\x24\x6a\x51\x89\x99\xdd\xd7\xff\xaa\xa0\x68\x72\xd8\xf0\x03\x20\xbf\xcf\x7d\x52\xf7\x9e\x36\x11\x4d\x44\x2b\xf2\xbf\xed\x48\xbf\xec\x0a\xa3\x02\x61\xab\x67\xa9\x7f\xdb\x99\xa4\xe2\x86\x1f\x44\xe7\xf6\x66\xa1\xcc\x8e\x98\x4f\x4c\xe8\xbd\x72\xb7\xf1\xb9\x52\x71\x35\xa9\x47\x2f\x39\xf3\x43\x8e\x1f\x1d\x9b\xea\xc1\xa8\x9b\x14\x22\x0b\xef\x93\xe1\xc6\x55\x41\x55\x6c\x83\x36\x8b\xa2\x2d\xcc\xd2\x10\xc9\xd5\x1a\x66\x23\x70\x09\x2f\x7e\xe2\x61\xe3\xe2\x1d\x72\x46\x59\x06\x66\x7e\xb1\x14\xe6\x36\x68\x55\x3e\x36\x51\xe0\x89\xd5\xed\xe2\x63\x17\xa4\xe4\x9f\xbc\x80\xa5\xd0\xa9\xb3\x9a\xfc\xcb\x3b\xa4\x12\x4b\xf0\x17\xb4\xad\x87\x87\x4d\xea\xc6\x5b\x8f\xc2\xe0\x1b\x84\x15\xaa\x69\x06\x0d\x6e\xe0\x96\x7b\xfa\x26\xc1\x50\x68\x11\x2f\x26\x14\x36\xce\x68\xa5\x73\x54\x7e\x99\x34\x60\x5e\xdc\x80\x7c\xd9\x19\xc1\x0d\xa7\x80\x78\x1d\x4f\xb7\x7e\xff\x82\xbe\x3e\xf3\x71\x95\x49\x26\xf4\xb5\x15\x8e\xbf\x99\xd3\xd5\x39\x3f\xfa\xdf\x39\x26\x3c\x44\xe2\x55\x10\x8c\xe2\x8e\xca\xec\xe0\xd8\x1c\xb0\x37\x43\x6a\x96\x2e\x5e\x04\x2a\x04\x27\x85\x8e\x43\x50\xa9\x08\x6a\xaf\x71\xd5\x4a\x0d\x0a\x0d\x7e\xa4\x51\x91\xd0\xa0\x09\xd1\x60\x82\xc2\xca\x62\xc8\x45\x8c\x58\x96\x1d\x7d\xa3\x79\x9d\xc9\x04\x10\x55\xb3\x80\xcd\xff\xd2\x60\x50\xd2\x49\x41\xb0\x6d\x8c\x3b\x0f\x28\x72\x36\x18\xe0\x60\x31\x1b\x29\x7f\xed\x93\x23\xe2\x7f\xc8\x37\xfe\xd1\x53\x1e\x74\xf3\x60\x79\x50\xa3\xaf\x59\x3d\x20\x1c\x4f\xda\x4c\xc9\x75\xc6\x33\x8f\x8e\x50\x7b\x33\x6e\xb0\x7a\x64\xb4\x84\xf5\x56\xb3\x3a\x17\x77\x4e\xe2\xcf\xc7\x46\xcc\x2a\x73\xfe\xbe\xf1\xad\xd9\x8a\x62\xaa\x5b\xa5\x30\xd5\x2d\xd0\xa3\x52\xd0\xd7\x96\x2a\x02\xe1\xfa\x5d\xe3\xf5\xb0\x8f\x91\xcf\xa3\xca\xfb\x36\x28\x6a\x0f\x31\x10\x38\x17\x1c\x15\x7a\x74\x8c\x54\x29\xa3\x96\xdb\x16\x5f\xf4\x4a\x8d\x49\xd7\x43\x03\x26\xf0\x6b\x7c\x62\xb9\xfb\xa8\x22\x93\x44\x1b\x35\x90\x09\x7d\x6f\x21\xb9\x8c\x1c\xd0\x2b\x3e\xd8\xec\x77\x93\x6f\x4e\xeb\x59\xec\xd3\x1d\x3b\x79\x4e\xd9\x80\x19\xf6\x14\x55\x84\xdc\xb5\x9a\x30\x87\x89\x3c\x9b\x8f\xdf\xc2\x17\x74\x18\x30\x62\x51\xe8\x75\x84\xa5\xee\xa3\x8e\x3c\x7e\xf3\x8b\xc0\x22\x7f\x2a\xe3\x08\x80\x41\xc7\x4f\x1c\x86\xfc\x2b\xab\x15\x9d\x47\x07\x2b\x5a\x85\xf9\xed\x92\x00\xe3\x83\xad\x36\x84\x9e\x4b\xc6\x77\x68\x57\xc7\xa2\x2e\xf6\x08\x82\x2d\x83\x38\xbc\xaf\x9f\x4c\xde\x55\x15\xa5\xe4\x92\x96\x29\x26\xf1\xd4\x03\xf1\x3a\x7e\xbd\x7f\x74\x99\x7c\x55\x55\x86\xb1\x05\xa9\xe4\xec\xd9\xb8\x36\xf0\x30\xe7\x74\xe6\x7f\x7d\x44\x2d\x1e\x1d\x40\x85\x94\xfa\xf3\x5d\xab\x55\x3b\x27\xa1\x96\x00\x39\x7a\xcd\xa1\xa1\xea\x30\x37\xfa\x65\xff\xf5\xc6\x28\x29\xd6\xa0\x4e\x71\x07\xf3\x89\xf3\x06\x9b\xd1\x6a\x0a\xd5\xfd\x27\x57\x5a\x9d\x91\x72\x1c\x47\x5e\xdd\x7c\x81\x56\x7e\x46\x5f\x0a\xd2\x38\x14\x43\x27\x95\xf3\x57\xc6\xcc\xe5\xdf\xe0\xfe\x9d\x1d\xca\x0c\x15\x7b\x51\xb8\xcc\xc2\x42\xf7\x0c\x91\xaa\x47\x51\x01\xf3\xc4\x40\x3d\x66\xd9\x98\x11\x3f\x6e\xab\x8c\x57\x35\x85\x81\x96\xcd\xb1\x00\xb9\x55\x5b\x55\x6f\x7d\x8e\x4b\xae\x43\x49\xf1\xf5\xcd\x17\x69\xbd\x48\x9d\xf8\x8c\x68\x65\xc1\x1f\xef\xe5\xd7\x7f\xfd\x86\xa5\x1b\xae\x8a\x0e\xfc\xe8\xbb\x15\xd9\x0a\xa6\xa6\x9f\xfe\xd7\x27\x2b\xb3\x06\x6c\x46\xb9\x95\xb8\xd5\xc0\xb3\x31\x17\xfe\xce\x9f\xbd\x5d\x11\x29\xf2\x7d\xec\xc6\x4e\x60\xf9\xe6\x33\x9a\xf5\x42\xf4\xdf\x82\xc4\x7a\xe1\xd5\x3b\xe5\xd5\x73\x30\x02\xb8\x40\xee\xb6\xa3\xf2\xf9\x3a\x94\x73\x8d\xfb\x8d\x0f\xed\x97\xb6\x81\x74\xaa\x72\xa2\x3f\xb3\x4d\x4e\xa3\x70\x2f\x82\x0e\xfe\x27\xaf\x69\xde\xa6\xd8\xf3\x03\x96\xac\x8b\x7e\x3c\x50\x57\x9d\x41\x4d\x12\xef\x6b\x73\x17\x2d\x10\x79\xc1\xf5\x5a\x98\xe3\x97\xc3\x87\x0e\xeb\xe2\x2d\x9e\x87\x3d\x31\x3f\x2f\xdc\xe8\x28\x1c\x27\x0e\x06\x83\x92\xe9\xae\x44\x0f\x75\x2e\x90\x25\x07\x08\xa3\xa7\x6a\x40\x2c\xec\x70\xcf\xb2\xf0\xd3\xa3\xb5\xe2\xd7\x06\xad\xc1\xe8\x74\xec\xd3\x39\xb9\x0c\x95\x3d\x29\x98\x79\x76\x5e\xfa\x4d\x3b\xc2\x52\x2d\xcd\xe7\xfc\xc6\x63\x8a\x4a\x4d\x40\x60\x88\xf0\xbb\xfd\xd9\xd9\x53\xcc\x38\xcf\xfd\xbb\xbe\xb8\x04\xba\x07\x16\x25\x47\xa9\xbf\x30\xc0\xd1\x18\xff\x09\x18\x73\xcc\x49\x0d\x65\x51\xf1\x31\xab\x23\xdf\x16\x0f\x7e\xcc\xa4\xd1\x5a\x45\xde\xe0\x1d\x40\xcf\x78\xc5\x6f\x8c\xa6\xd9\xf7\xd7\xcf\x54\xad\x59\x5d\x9f\x05\x1c\x5f\xff\xc5\xc6\x78\x25\xe5\xa1\xaa\xca\xba\xc9\xfd\xfd\xb1\xf4\xa3\x73\x03\x9f\x41\x60\xe2\xf0\xc3\xeb\xce\x26\xb1\xcc\xc1\x8a\xa5\x6f\xbe\xf0\xae\xca\x74\x8a\xaa\x28\x07\x8e\x9f\x7d\x13\x17\x24\x5b\x4b\xdc\x2c\x9c\x6b\x6d\xb7\x90\x1b\xa4\xc4\x35\xb9\x22\x59\x7e\xf1\xbc\x51\xe9\x78\x20\xf2\xd4\xaf\x1a\x49\x08\x58\x3c\x7b\x01\xe0\x03\xa6\x24\x29\x65\x61\xe7\xe2\xcc\xf6\xef\x9a\x47\xf5\x85\x9b\x13\x88\x3d\x24\xef\x86\x9d\xcb\x35\x04\xb5\x55\x27\x09\x92\xdf\x78\xfe\x78\xfa\x65\xd1\xa8\x0c\xe7\x0f\xfd\x66\x3b\xfd\x36\xe6\x0b\x41\x82\xc2\xdc\xa3\x2a\x0f\xb6\x01\xe6\x83\xe1\xb2\x97\x46\xa8\x83\x75\x9f\xa3\xe2\xbf\xd0\xab\x8d\x76\xa9\x49\xb8\xbe\x3c\x27\x73\x0e\x79\x5b\x9b\x4a\x01\xea\x5d\xa0\xb0\x8e\x4a\x41\x17\x0a\xcc\xba\x5c\x6d\xb9\xa2\x36\x1b\x44\x2f\x00\xf4\x6f\x8d\xeb\x57\x4c\xd5\xce\x64\xc3\xc1\x9e\x0e\x90\xcd\xfd\xe9\xc6\xc9\xbc\x86\x41\xcc\xc4\x0e\x75\xb3\x8c\xb7\xd1\x6f\x6b\x4b\x77\x08\xe0\x16\xee\x8b\x6a\x0b\x19\x54\x7e\xd5\x2d\x98\x20\x0c\x95\x95\xbb\xe4\xdc\x28\x57\x88\x8e\x60\x60\x43\xd0\x1d\xfb\x4a\x22\xe2\x62\xc6\x9a\xfd\x25\xf9\xa6\xcd\x20\x2a\x5c\xee\xde\x2a\x6b\xff\xc0\xb5\x30\x83\x06\x31\xea\x72\xbf\xbf\x4f\x63\x02\xc6\x23\x5d\xe1\x7c\xd2\xb9\x20\xdd\x01\x08\x03\x08\x87\xca\x11\x9f\x71\x72\xb7\xb6\xfa\x0c\x88\x28\x98\xc3\x6f\x0f\xe4\x95\x6f\x9d\x5a\xdc\xa5\x43\xb3\xda\xae\x43\x1d\xcd\x13\xcb\xf5\x15\x05\xcc\x60\x23\x8b\xb6\xa2\x3f\x6d\x3e\xa1\x9d\x31\xd7\x9a\x55\x74\xa3\x36\x05\xd0\xd9\xb2\x32\x60\xea\x6d\x32\x1e\x9f\xae\x6c\x26\x7c\x1f\x99\xb5\x84\xf0\x90\xdb\xb7\x3f\x93\xc1\xb8\xde\x96\xf1\xf2\x81\x74\xc5\x46\x19\xa9\x12\x57\x54\xbb\x70\xaa\xd6\x97\x35\xb9\x96\x16\x97\x6b\x09\x7f\xff\x57\x6d\x0e\x18\x94\x1d\xe1\x6c\x1a\x1e\x7b\x58\x4a\x7f\xd9\xa8\xdc\x46\x8c\xd4\x91\x6a\x2a\x97\xbb\x74\xb9\x1e\x34\x98\x6a\xdb\xfc\x3e\xa5\x61\x5e\x2c\x18\xba\x83\x43\x05\xf5\x04\x1c\x30\x48\x6c\x3d\x63\x15\xa0\xb5\x6e\xf8\xd7\x9f\x7f\xdf\x66\x39\x30\x59\x38\x1f\xd6\x15\x3f\xde\xae\x6a\x06\x51\x6a\x11\x01\xdc\xed\x52\xe0\x6e\x26\x62\x0e\x55\x90\x42\xb9\x0b\x35\x25\x9a\x96\x4d\x4c\x5b\x00\xb6\x7f\x78\x5a\xd1\x4a\x08\x4c\x13\x0b\x91\x4a\x6f\xe7\x05\x0a\x7e\xce\xab\x13\xcf\x53\xa7\xad\xc6\xbd\x61\x6a\x4f\xde\x24\x42\x3a\xc4\x98\x72\x97\x3e\x05\xf2\x7c\x54\x4b\xb2\xea\xae\x5b\x95\xe1\x81\x10\x6f\x12\xad\xed\xa8\x8d\xda\x8c\x00\x05\x0e\x66\x1c\x51\xf6\xc9\xc1\xe9\xda\x93\x37\x55\xe0\x17\x28\x3f\xd3\x2f\xa6\xf3\xfb\x18\xe3\x58\x09\x10\x80\xf3\x1d\x2b\x54\x3b\x46\x87\x34\x31\xb8\xad\x1c\x35\xd2\xbf\xae\xc1\x08\x65\x84\x9f\xef\xda\x0a\x39\x32\x32\x6b\x99\x4e\xcb\xd9\x20\xe9\xe3\x99\x81\xd2\xf8\xf3\xb4\xfe\xb6\x45\x5c\x58\x63\xcd\x2e\x96\xc2\x43\xa7\xe4\x63\x4b\xb7\x94\x4f\x88\xb9\x8f\xeb\x23\xb7\x0a\xab\xbf\x57\x15\x3e\xad\x47\x5d\x54\xc6\x5c\x51\x6e\xff\x54\x65\x4d\x91\x50\xc4\x39\xb0\x7d\xd7\x48\x65\x80\x0c\xee\xfd\x51\x48\xd1\x36\x31\xc8\xf1\x6d\x98\x8f\xf1\x9e\x3b\xf7\x9f\xba\xf5\x15\x7f\x9f\x31\x3b\xe6\x6f\x7b\x93\x87\x51\xb1\x49\x66\xfc\xf4\xa1\x6d\x43\x44\xd5\x47\x19\xac\x89\xf2\x0f\xdc\xa7\x74\x16\x1e\x04\x7b\xe1\x5c\xb1\x50\x50\x2a\x13\x8b\x11\x48\x1a\x2b\x98\x30\xda\xa1\x7c\x25\xf0\x4f\xaf\xa7\x3f\x4f\x2c\x4d\xc2\x3b\xb1\x3b\x9f\xd3\x61\xbd\x3e\x61\x58\x61\xc9\xcf\x99\xa4\x04\xa7\xc0\xb7\x31\x14\xe4\xd6\x0e\x8d\x5c\xef\x9a\x34\x60\xa8\x8a\xe3\x2a\xba\xb5\x56\x5e\xb7\x06\x54\x88\x85\x4f\x3c\xa0\x79\x1c\xd1\x26\x66\x40\xd2\x10\xf0\x2b\x38\xb7\xb7\xbd\x92\x04\x36\xee\x5a\x1c\xd7\x24\xab\x9f\x92\x99\x2b\x60\xc5\x52\x98\xdb\x2c\x87\x5a\x4c\x8d\x29\xab\xcf\x8e\x55\x6f\x9b\xf8\x64\xb0\x69\xb8\xec\x81\xf4\x31\x05\x57\x6b\x41\x9a\x5e\x7c\x8b\x3c\xd9\x36\xef\x34\x41\xf0\x6e\xba\x16\xdf\x68\xe0\xc6\x33\x9e\xc2\xc5\xcb\x75\x49\xeb\xa0\x6a\x8b\xa6\xf9\x37\xae\x42\x41\xc5\x56\xc0\x69\x75\xb9\x6f\xad\x99\xa2\x4c\xe8\x3c\xce\xa0\x49\xaf\xe0\xde\x77\x97\xba\x47\x15\xd6\x9f\xec\x04\x27\x3f\xac\x0f\xb0\xe7\xd5\x03\x5f\x81\x4c\xe4\x2a\x1d\x17\xea\x05\x2d\xf3\x13\x00\x00\x9f\x36\x7f\x63\xaf\x76\x93\xea\x80\xab\x17\x15\xcd\xbd\xeb\x64\xfd\x11\xb0\xaa\x50\xdd\xea\x99\xce\xab\x67\x54\x55\x17\x64\x1f\x74\x35\xe7\x68\x02\x30\x7c\xd1\x60\xbc\x75\x4c\x1f\x93\x57\xa3\x0b\xc5\x57\x72\x85\xf9\xf6\xd8\x4c\xe3\x2a\x7e\xd9\x96\x05\x5a\x07\xc1\x60\xf6\x11\xcb\x4c\x6d\xdc\xaf\x2d\x83\x88\x04\xa3\xfd\x79\x40\x87\x72\xb9\xa3\x53\xca\xb2\xc6\x20\x4f\x6b\xb4\x37\xea\xb4\xeb\x0d\x62\x0a\x4d\xef\xf1\x9a\xde\x8b\xd8\xee\x24\x1e\x10\x39\x77\x87\xa2\xd0\xab\xc8\x30\xe4\xfe\xe5\x95\x49\x0a\x29\x10\x9b\x81\x83\x52\xca\x85\x39\x3c\x34\x5d\xf4\xcd\x9e\xc5\xca\x51\x1b\x32\xe5\x48\xd2\x0b\xb7\x50\x3b\xbe\x00\xa6\x3c\xd6\x36\x92\xb3\xda\xf0\xdd\x5d\x53\xb4\xbe\x0e\x99\xb8\x86\x71\x23\x19\x77\xe7\x16\x1d\x55\x40\x6d\xe7\x50\xcf\x39\xa2\x4d\x78\x10\x17\xbd\x82\x69\xe5\x8a\xbb\x47\x48\xb1\xf8\x44\xb9\xe4\x87\x1a\x29\xd5\x8c\x2a\x7a\xd3\x8b\xd3\xf3\xdd\xf7\xf1\xf1\xf1\x2a\xec\x05\xaa\xaf\xfc\xef\x98\x0e\x04\x74\x14\x49\x21\x63\xf2\x8e\x74\x24\xc0\x6d\x1b\x71\x7c\xa5\x9a\x14\x57\x6c\x57\x98\x43\xb8\xca\x19\x01\xc6\xcc\x07\xb5\x56\x09\x5b\x3c\x20\xc6\xe7\x6f\xef\x40\x99\xbc\x17\x14\x2b\x94\xfa\xc5\xb9\x45\xe2\x9a\x60\xa1\x80\xcf\xd3\x04\xc8\x1d\x64\xd6\x8a\x3e\x11\x6b\x95\xdc\xee\xad\x2a\xbd\xbb\x4a\x24\x71\xf3\x3d\xfb\x64\x29\xc3\xa2\x16\x99\x15\xcb\x88\x51\xb7\xe8\xf9\x6d\x4e\xbc\x37\x2c\xc1\x8b\x16\xfa\x67\x99\xd8\xfe\x9b\x67\x32\x95\x83\x23\x36\xc9\xdd\xfb\x54\x3c\x2b\x26\x75\x68\xf2\xbf\x16\xf2\xd1\xd6\x4a\x14\x78\x69\xdf\xfe\x07\xcf\xb5\x55\xe2\xf2\xae\x05\xad\x6c\xac\xd3\x00\x22\x2c\x64\xbb\x37\x9f\x1a\xa5\xb6\x19\xd1\x05\x8c\x4e\xe2\xb4\x33\x9a\x12\x92\x83\xdc\xc4\x27\xed\xd2\xa6\x7c\x26\x7c\x91\x2f\x22\xe3\xd6\x57\xc4\xcc\x91\x32\x46\x2a\xe0\x95\x6c\x7c\x7a\x86\x1e\x1b\xdc\x9a\x1c\x89\xbf\x71\xab\xe2\xc2\x80\x58\x3d\x80\x32\xba\xe7\x45\x6d\x26\xce\x2b\x19\xde\x31\xfd\xef\xf0\x8c\x33\x6d\x93\x98\x62\x8b\x7e\x9d\x58\x28\x5f\x47\x3d\x5b\x91\x4e\xfb\x9f\x6e\xed\x07\x52\xc4\xac\x98\x36\xf1\x7a\x59\x38\x27\xc6\x24\x43\xa0\x6a\x76\x1c\x4c\x2f\xce\x5b\x81\x87\xce\x49\x33\xfe\x49\x38\x5c\x65\x98\xf4\x81\x0d\xdb\x37\x42\x15\x2d\xbd\x60\xe1\x22\xd0\x69\xb2\x94\xa1\x69\x50\x85\x16\x3a\x1c\x7e\xb3\x26\xaa\x8e\x39\x78\x98\xd7\xcb\xef\xd8\x93\x95\x89\xad\x4b\xb2\x7d\xef\xc6\xcb\x54\x0b\x56\xa7\x1e\xab\x4c\xfe\x5a\x31\xd2\xdd\x12\x10\x0c\xba\xd9\xf9\xb9\xdb\x47\x4b\x61\x78\x55\x74\x6e\xfc\x72\x5d\xc0\x14\xfb\x09\x39\xcb\x98\x73\x40\x7e\x9d\x0a\xe2\x56\xc6\xf9\xcf\xbf\xab\x48\x11\x79\x35\x61\xb8\x9f\xfb\xca\x61\x3e\xea\x8b\x25\xe1\xd4\x29\xa0\xce\xd7\x08\xca\x5c\x86\x03\x62\xc7\x9e\x87\x94\xe9\x57\x1f\x65\xc0\x39\x82\x48\x3b\x59\xf1\xd3\x28\x23\x1b\xd5\x11\x24\x80\x7f\x5c\x33\x46\x59\x9e\xa1\xa0\xea\x05\x65\x2e\x4f\x67\xed\x97\x63\x89\x0a\x47\x7e\x4a\xfd\xa1\x1e\x4d\x7b\xd5\x8b\xf2\x77\xa2\xcd\x9d\x5f\xb1\x48\x3e\x38\x98\xf1\x43\xc9\xfa\xc7\x87\xf8\x21\x21\x2e\xb2\xf0\x96\x40\x58\x5e\x58\xb7\x2b\xaa\xbe\x6e\xf4\x97\xa9\xc4\xae\x86\xbf\x79\x89\x97\x6e\xeb\x57\x2e\x5d\xb6\xec\xa3\x00\x37\x9f\x32\x5d\x2f\x05\x5d\xec\x9f\xeb\x58\xe5\xaf\x9b\x39\x41\x6f\x47\x01\xc1\xcb\xd9\x5f\x33\x4f\x08\x41\x14\xc4\xa8\x43\x5c\x94\x40\x08\xbf\xf7\xd7\x91\x4a\xe5\x8a\x5d\x93\x0f\x81\x6f\xf7\xe3\x1a\x90\x5a\xc5\x52\xd8\xbb\x4a\x69\x74\x70\x5f\x83\x61\x0b\x2c\xa9\xf2\xff\xbb\x63\x94\x4a\xf8\xa1\x62\x62\x62\xac\xd4\xe4\xd3\x39\xf0\xc2\x4b\x61\xb6\xae\xd8\xa6\x75\xb4\xc4\x49\x14\x39\xbd\x27\xc6\xa8\x0f\x95\xb5\x7d\xbe\x33\x08\xff\xbf\x0e\xdd\xcb\x83\x06\x4e\xcc\x2b\x77\x14\xd1\x67\xc4\x7c\xe2\x71\xff\x75\xc3\x7a\x43\xc7\x15\x2c\x9c\xc7\x17\x66\x37\x1c\x4b\x27\x12\x9b\x06\x1e\x16\x9b\x44\xf9\x49\xff\xa7\x4f\x96\xf8\x2e\xf6\x2f\x6d\x12\xe6\x73\x5b\x9e\xdc\x63\xdd\xca\xa1\x66\x34\x10\x64\xd2\x41\x8a\xf7\x97\x69\x13\xe1\x9c\xdf\x79\xb9\xd8\x34\x04\xbe\x47\x54\xa1\xe6\xad\xe7\x69\xcc\x3d\xc0\xb7\xf0\xc8\xfe\x15\xa9\xde\xd4\x47\x14\x93\xe1\xdc\x8c\xbe\xb4\x30\xa9\x53\x2c\x85\x7f\xba\x4b\x2e\x1e\xc4\xfc\xf2\xe1\x21\x52\xb7\x37\xaa\x7a\x87\xdd\xa5\xeb\xff\x08\x8d\x1c\xc5\xda\xd3\xf8\x8b\x21\x84\x71\xb0\x83\xdc\x6a\xa2\x55\x9e\xbb\x7c\xbc\x1c\xdc\xda\x02\x7a\x72\x6c\x93\x70\x04\xa1\x81\x4f\xb6\x70\xf7\x93\xdc\xd7\x8d\x04\xef\x8b\xca\x28\x75\x9f\xc2\xe3\x19\xd5\xbc\x26\x32\x05\xac\xe0\xc2\xe5\x09\xc9\x81\x13\x5d\xe6\x95\x93\xcf\xdf\x39\x07\xba\xee\xaf\xbd\xcb\x7f\xdf\x46\x6c\x31\x14\xcb\x13\xff\x50\x59\x08\x31\xe2\xc0\xfe\xbb\x30\xff\xd6\x11\xd1\x2f\x58\xbb\x6e\xed\x34\xa5\xfa\xc4\x7b\x35\x8d\x26\x80\xce\x49\xf1\xd6\xc2\xd5\x77\x66\xb8\x32\x88\x71\xfd\x02\x8e\x0a\xf8\x2a\x47\xac\x17\x97\xba\x59\x50\xe9\x12\x5b\x03\x3f\x10\x5f\x41\xe2\xe4\x3e\x7e\x96\x7f\xbf\xeb\x91\x03\x93\x73\x63\xc4\xe1\x11\xd2\x4c\x2f\x88\x9f\xf3\xcd\x0f\x29\xf3\x53\x07\x79\xe2\xf4\x3f\xd3\xab\x74\x18\x18\x25\xcc\x87\x29\x6f\x5d\xac\x64\xe5\x44\x77\x38\x13\xfc\x47\x4e\x4b\x18\xfc\x0e\xd6\x7d\x3e\xfa\x0b\xc3\x56\xca\x99\x78\x83\x80\x1b\x75\xb1\x14\x7e\x66\x85\xfc\x84\xc8\x4e\x56\xf4\x2b\x8a\xc9\xaf\x94\x8d\x18\x77\xde\xa5\xb0\x72\xcc\xb4\xe9\x07\x93\xd9\xda\x9c\xce\x39\x80\xed\x5e\xa9\x3d\x2b\xda\x00\x93\x73\x4e\x8f\xfa\xd2\xca\xe4\xcd\x2f\x5e\xb4\x30\xfa\x83\x83\xca\x43\x31\xed\xc0\xa9\x70\xbf\xa0\x6b\x0f\xff\x5f\xd4\xd6\x0c\xee\x2f\xd7\xb3\x93\xef\xb1\x16\x00\xe6\x14\x8e\xdc\x5b\xeb\x34\x03\x10\xa0\xe9\xce\x92\x33\x41\x5f\x49\xc3\xa0\xb6\x11\xb5\xbd\x9d\x72\x97\x85\x19\xe4\xf0\xcf\xba\xa3\xb5\xc2\x52\x04\xb3\xf1\x3d\x32\x98\x7d\x28\x15\x58\xfe\xae\xac\x4d\xcd\x1a\x7c\xec\x4c\xdd\x4e\xde\x55\xe4\x17\x9e\x91\x9e\x1b\x41\x46\xf8\x3e\x7f\xf7\x0d\xda\xac\x00\xf4\x3f\x3d\x21\xab\xfa\x23\x2b\x29\xc9\x83\xbe\xb2\xf8\x3a\xdf\x3d\x35\x54\xf4\x85\xae\x85\xda\x9d\xc5\x52\xf8\xf5\x67\x75\x43\xd5\xb8\xda\xe6\x80\xb6\xf0\xe4\x3a\x6d\x1d\x4b\xea\x69\xd2\xd6\xe2\x4d\x69\x20\xfa\x27\x04\xcc\xf7\xd2\xcb\x87\x48\xcd\x19\x8e\x31\xda\x99\x14\x14\xd4\x41\xaa\xc0\xab\x95\x11\x56\xe3\xd6\x7c\xfc\x47\xe5\xfb\xdf\x56\x5c\x58\x5a\x98\x0f\x45\xaf\x56\x7c\xf0\xbd\x06\x23\xae\xe8\x3b\x73\x4b\x0a\xca\x49\x46\x40\x3b\x02\x14\xf4\x0e\x7e\xfb\xae\x43\x8c\xcb\x41\xbd\x76\xa7\x56\xc6\x78\x82\xba\x02\x15\xc6\xb2\x30\x35\xee\x14\x4e\x1e\xd1\x17\xfb\xd2\xeb\x23\x45\x7e\x64\xd8\xc3\x58\x48\x67\xe5\x1e\xe2\x64\x85\xe2\xb2\xc0\x42\x4c\x35\xd6\x36\x56\xbc\x3b\x31\xe9\x67\xcb\x19\xef\xc5\xc2\xfc\x93\xd9\xec\xdd\x20\x02\xa0\x66\x34\x56\x8f\xd1\xea\x5b\xd1\x75\xe7\x7e\x3d\x28\xb9\x9b\x5e\x2d\xde\x9e\x4f\x6f\xa8\xc2\x57\x2e\x8f\x33\xb7\x9d\xd1\x00\x7a\xcc\xc1\x08\x2c\x6b\x44\x01\xb8\xa5\x47\x71\xed\xc3\xae\x4b\xe0\x9f\x9d\x7f\x46\xec\x1c\x11\xe3\x55\xdc\x89\x23\x72\xc9\xae\x34\xa9\xe1\x87\x2d\x85\x96\xce\xf9\xe2\x1c\x2f\x92\xbf\x4a\x91\x8d\x28\x33\x4a\xf9\xe7\xe9\x67\x8a\x52\x30\x46\x42\x4c\xb0\x3f\xf7\xa3\xf1\x43\xe4\x36\x01\x0e\xd1\x50\xa1\xa5\x1d\xd5\x01\xc5\x52\xd8\x50\x3d\x6c\x6d\xda\xe2\x75\xfc\x83\x42\x83\x10\xb1\x2a\xf6\x7c\xf1\x77\xfb\x8d\xdf\x4b\xd0\x43\x79\x7a\xe6\xfa\x18\x07\x97\x4d\x51\x56\x17\x55\xfb\x1c\xb4\xf5\xbf\x9e\x15\x42\x52\xd8\xf5\x59\x1a\x75\x9e\xff\xd3\xc0\x84\x08\x8d\xea\x29\x9b\x2c\xa3\x32\x70\x9c\xde\xc6\x60\xe1\x97\x90\xbf\xbf\x53\x27\xe4\x20\x1f\xc7\x02\x81\x3f\x2b\xc8\xa8\xb7\xb8\xab\x58\x0a\xc7\x2f\x91\xf2\x97\x38\xee\xab\x73\x43\xbb\xb2\x5a\xc3\x9c\xc3\x1a\x8f\x3b\x6e\x9f\x96\xa9\x94\xe4\x86\x69\xcb\x12\x5d\x2a\xa0\x8e\x5c\x4b\xac\x78\x8a\x02\x4d\x2b\x64\x07\x88\x70\xde\x35\x2e\xbe\x61\xa4\x0a\x3e\x13\xa7\xed\xef\xc6\xc7\x04\xa8\x4a\x85\x98\x01\x18\xf2\x4e\xda\xaa\x6d\x90\x5c\x52\x8f\xb5\x05\x8d\xd9\x87\x86\x88\x72\xc9\x44\x2e\xdc\xa6\x1d\x32\x4c\x98\x36\xf8\x1d\x74\xde\xca\xb5\xd0\xd6\xfb\xd4\xcc\x5a\x4e\x7f\x52\xdb\xb1\xc6\x4a\xd3\xc0\x41\xee\x2f\x90\x9b\x47\x4b\xfc\xb5\x0a\x7a\xb8\xe1\x55\x59\xc7\x45\x35\x2c\x31\x7d\x71\x73\x0d\x57\x2e\x17\x53\x93\xf5\xfc\x7f\x6c\xd3\x54\x09\x62\x7f\x3c\x31\xe0\x38\x50\x96\x43\x44\x4f\xdd\xa3\x2c\xeb\xc8\xd0\x2b\xaa\x0c\xd5\xc5\xb8\xac\xb0\x77\x84\xb8\x69\x0e\x6e\xd8\xd4\xe5\x23\xba\x4f\xec\x1f\x16\xfd\xd5\xeb\xd7\xaa\xc3\xb2\xa9\x32\xd3\x74\x17\x17\x46\x7f\xad\x78\x2c\x7d\x97\x7d\x6c\xda\x2e\x75\x68\xb5\x2d\x70\xeb\x93\x95\xfe\x0b\x26\x94\xc5\x52\xb8\x6c\xb8\x1c\x1b\x36\xa8\x8f\xb2\x5e\x37\x85\xf7\x1d\x90\xdc\xb1\xce\xee\xe8\x37\xcd\xe9\x55\x59\xc1\xe5\xc0\xf7\x79\xd9\x8b\x37\x69\xa4\x1c\xec\x0b\xc7\xdd\x6d\x3b\x34\x4c\x2a\x92\x88\xb6\xdc\x57\x06\xcb\x80\xca\x10\x71\x18\x45\xdc\x2b\xf7\xd3\xa7\x92\xdf\x0c\x1a\xa4\xe1\x45\x4b\xe4\xdf\x2c\x13\x50\x68\x33\xe1\x3f\xfc\xe5\x25\xa9\xd2\x01\x9e\xfa\xe9\xa3\x71\x8b\xa6\xe4\x43\x9a\xc8\xad\xd1\xa6\x62\xe1\x1a\x2e\x59\xa0\x31\x21\x28\xab\x13\x9f\x32\xa1\xea\x5c\xd8\x74\x5e\x3a\x8f\xa3\x36\x47\xd7\x15\xae\x7f\x71\x98\x78\x10\x3e\x65\x02\x42\x76\xdb\xcd\xc2\x39\x05\xf8\x77\xda\xee\x61\xe9\x74\x1e\x3c\x5b\x94\xf2\x06\x00\xef\x97\x41\x12\xbb\x56\xc0\x40\x4d\x3a\x7a\x6c\x3f\x6f\xbe\x5f\x7b\xa5\x0e\xe6\x04\x8d\x73\x38\xc6\xe7\x2f\xd3\x94\x66\x5a\x98\xc5\xc2\xf5\x13\xf7\xea\xa6\x6b\x3e\x66\x2d\xd4\x16\x77\xfb\x9f\xde\x1e\xa6\xf0\xbf\x2a\x50\xb8\xdc\xb2\x9b\x4b\x5e\x5d\xb9\x34\xfa\x8c\xb3\x0e\x43\x6a\x73\xb0\x5b\x9c\x27\x7b\xd3\xc2\xa1\xa4\x94\x30\x93\x7d\x60\xfe\xcb\x27\xc6\x29\xdf\x07\xb3\x2a\x6d\xe0\xa8\xfc\x8b\x7e\xea\x8c\xee\xf4\x63\xfc\x90\xa0\xa0\xe5\x5a\xc3\x27\xa6\x31\x93\xda\x9e\x6d\xf0\xe8\x14\x72\x74\xce\xe2\xae\x2e\xb8\x1c\x97\xf8\x3c\x2c\x75\xcf\xe3\xee\x22\xd4\x81\xdd\x98\x51\xba\x22\xf9\x68\x7d\xa8\x1a\x07\xc8\x4b\xf6\x0d\x91\x17\x1a\x15\x4b\xcb\x44\x6f\x8d\x2a\x18\xd6\xd3\xf9\x03\x4f\xea\x82\xb0\xc4\x71\x66\x35\xc1\xa6\x62\xfc\xce\xf4\x11\x89\xe1\xbf\xf1\x39\x3e\xf6\x92\x74\xc0\x06\x81\x9c\xfc\xf3\x97\x27\xcb\xe4\x7a\x5c\x38\x6e\x78\x4c\x53\xc6\xa1\x65\x9a\x72\x3a\xce\xdf\xa0\xac\x94\x7c\xda\x68\x88\x1e\xf7\xd1\x0e\x3d\x38\x73\x22\xbc\x4f\x63\x6d\xd4\x7e\x63\xfb\x80\x61\xf1\x7f\x8f\x75\x0d\xc6\x1d\x55\xac\x68\xbd\x3a\x71\x2d\xc2\x68\x33\x6a\x21\xd7\x28\x4e\x00\x98\xa3\x1d\xc2\x77\x8f\xf2\x3a\x30\xf0\x7d\xcc\xe0\x10\xe6\x6e\xd7\x76\x70\xa0\xc5\x2c\x56\x7e\x7d\x2f\x29\xfa\x17\xb4\x55\xe6\x73\xf3\xaf\x3c\xc7\x0b\x1e\xa0\xee\x34\x28\xf3\x63\xf5\xdf\xdc\xdd\x6b\x35\x29\x63\x7f\x3a\xe0\x0b\x32\xf2\xf2\xb7\xf3\x9e\x18\x45\xa5\x2f\xac\xa6\xdc\x2a\x9f\xa0\x6c\x4a\x7f\x18\x8b\xa1\x8a\x50\xfe\xc8\xfd\xe2\x8c\xac\xfb\x1c\x54\xc3\x6d\xec\xd6\x68\xb1\x14\x4e\xed\x4a\x82\x71\xe0\xab\xd8\x80\x8f\x2f\x97\xa9\xcb\x41\x6d\x5a\xa9\x40\x46\xbb\xfb\x50\xd2\xa5\x72\xd5\x69\x99\xdb\xbf\xcc\x64\x08\x05\x85\xc7\xe8\xf7\xfe\x74\x2a\xcf\x75\x4b\xa3\x1e\x41\xec\x0a\x73\xff\x76\x8f\xf0\x41\x70\xdd\x40\x50\xf8\xf2\xe3\xee\xe7\xf5\xa1\x4d\xaa\x36\x80\x0e\x20\xca\xfd\xfc\x61\x7d\xb3\xe1\x4b\x77\xbf\xdc\xaa\x95\x2a\x03\x80\x25\x42\x41\x4b\x77\x6b\xc3\x6e\xa0\xe2\xa1\xb4\xf8\x47\x61\xc1\x2e\xc5\xb3\x96\xf2\x9f\x88\x9f\x52\x14\x98\x19\x81\x85\x65\x78\xd3\xd3\xc3\xd5\x3b\x5b\x6f\x17\x4b\x21\xe1\x6e\x69\x7e\x7c\x7d\x54\xc0\xdd\xec\xd5\x33\xb5\x12\x99\xaf\x10\xb1\x77\x2e\xc4\x75\xfe\xe3\x03\x12\x44\x9f\xab\x98\xfe\xfe\xf0\x32\x45\x8c\x30\x28\x13\x47\x88\xc9\xf4\x1b\x0b\x5f\x4e\xde\x81\x03\x66\xd2\x72\x52\xb0\xc8\xd0\x6c\xef\x88\x59\x8b\x12\x0d\x6f\x2e\x66\xce\x1e\xa5\x20\x26\x83\x3a\x71\x83\x7a\xb1\x14\x0e\x1d\x9a\x4e\x40\xb1\xf6\x42\x74\x8a\xf3\x8f\x0c\x52\x2c\x0c\x33\x48\xef\xfc\xb6\x50\xd1\xcb\x8f\x15\xbd\x73\x97\x8f\x14\x86\x1c\x3e\xaa\x02\xfc\x6b\xca\xec\xd1\x22\x11\x78\x81\x67\x12\x3f\xd6\x6f\x33\x26\xec\x9f\xa0\x74\x85\x6d\xdf\x66\xb4\x41\x09\xf6\x79\x1f\xd8\x3f\x40\x96\xce\x44\x45\xeb\x1d\xb9\x95\x47\xb6\xab\x61\x1c\x2c\x4f\xad\x75\x6a\x46\x4b\x87\x90\xf8\x98\x69\x01\xa1\xc5\x67\xae\x27\x0e\x8e\x90\x4b\x72\x1a\x8f\x42\xaf\xbd\x59\xae\xcb\x70\xbd\xae\xe8\xcd\xe6\xbf\x75\x40\x62\x0a\xa2\x76\xc3\x87\xa5\x94\xbc\x01\xf8\x39\x61\xaa\xc4\x3c\x9b\xb8\xb4\xa9\xfc\xd3\x37\xcf\xa6\x9f\x71\xf7\xec\xb9\x5d\x5d\x71\xe1\xf9\xad\x27\xb4\xf0\xc5\xda\x16\x76\x35\x2c\xe3\x97\xee\xd4\x8c\xb3\x18\x35\x6d\x80\xfb\x41\x15\xf1\x85\xbd\xe9\x9f\x11\xd4\x18\x22\x2e\x1f\x52\xc5\x98\xf3\xbd\xa7\x14\xfc\x29\x81\x52\x35\xfa\xf5\xff\x3a\x49\x27\xbd\x99\x01\xec\x88\xb9\x59\xd9\xa8\x01\xfc\x59\x2f\x75\xdd\x14\xf8\xec\xc7\x9b\x06\x8b\xb2\x04\x46\xa0\xe1\xd3\x1a\xa2\xbd\x41\x89\xeb\x73\x67\x28\x3e\x97\x7b\x62\x91\xde\x35\x0b\x44\xaf\x27\x66\xf1\xff\xa8\x09\x3a\xe3\x7a\x19\x79\x5e\x5c\xa2\x6d\x3d\xc8\xfb\x8a\x65\x0c\xb9\x56\x0b\xa9\x3c\xd4\xb1\x67\x55\xa5\x27\x33\x60\x7c\x2f\xbf\xf0\x3e\xdd\x27\x70\x61\x57\x2c\x28\xf4\x0f\x07\x14\x4d\x6a\x0c\x6a\xb7\xc9\x35\xca\xaf\x7a\x3d\x4d\x97\x20\x9e\x83\xea\xc4\x04\x3e\x45\x3a\x18\x7f\xe8\x95\xe1\xe2\x60\x37\x31\x8b\x0f\xf5\xf3\x33\x33\x14\xf7\x96\x40\x07\x86\x8b\x05\x07\x5f\xe5\x59\xc3\xe2\x60\x64\xb7\xa6\x17\x42\x60\x86\x25\xd6\xad\xbf\x9c\x3e\x52\x39\x7a\x3e\xe6\xe4\xc3\xdc\xad\x3b\x35\x76\x35\xb1\x5a\x18\xd7\x78\xe5\x32\x76\x62\x52\x36\xf4\x65\xc9\xdc\xb9\x4d\x8f\xf2\x4c\x24\x41\x5a\x02\xe7\x65\x7c\xbb\x57\x51\x33\x72\x90\x6b\x61\xcf\x27\xd0\x78\xe4\xe7\x0e\x80\xcf\x11\xfd\xae\x8d\xf2\xf9\x0f\x9d\xa8\xf0\xca\x7d\x86\xda\xbc\xd4\x6b\x6e\xd6\xb7\x11\x0d\xb0\x4c\xe1\xa0\x39\xb3\x9c\xfe\xec\xb4\xe2\x63\x37\x16\x50\xfe\x18\xd7\xeb\x2f\x5e\x4d\xa9\x55\xcf\x7a\x49\x17\x56\xdd\x3f\x4d\xeb\xe6\x5c\x1f\x55\x69\xcc\x3d\x96\x77\xb2\x11\xea\xfc\x6f\x44\xea\xe2\xce\xec\x38\x91\x1e\xc2\xcc\x5b\x0c\x18\x97\xc7\x47\x66\xc4\x5a\xb1\xe7\xf3\x5e\x34\xfc\xc4\x2d\x23\x95\x79\x71\xc2\xc3\x6e\x6c\xd5\xc6\xf7\x81\x6f\x53\xa0\x65\xb0\x72\x3c\x71\x9d\x7c\xaf\xe6\x0d\x1f\x43\x6f\xe3\xe9\xc9\x27\x9f\xe9\x50\xb2\x0f\xf6\x41\xa0\x5d\x6f\xaf\x7f\xa8\x40\x2e\xeb\x6d\xcf\xc7\x0c\xf0\x64\xf9\xe5\x7c\xe5\x5d\xfc\x68\x60\x11\x57\x51\x1b\xb4\x67\xe8\x94\x37\xc7\xb7\xe3\xc1\x6d\x7e\xe6\x54\xed\x31\x9a\x94\x21\x07\xa7\xf7\xc2\xb9\xf9\x8a\x3f\x80\xe7\xd0\x66\x54\x39\xfc\xdb\xc9\x61\xc9\xc9\x77\x61\x86\x1d\x8e\x7e\x96\xe7\xf0\x2b\x1d\x02\xc8\x49\x51\xf3\x5e\x75\x99\xec\xa3\x10\x00\xe4\x33\x69\xe4\xe2\xe3\x63\x95\xae\xc9\xf3\x29\x8b\x11\x37\xd7\x28\x56\xf4\x94\x38\x09\x0d\xe6\xa8\x36\x12\x0f\x3c\x3b\x59\xa6\x3d\xe0\x2b\x8f\x88\x6f\x36\xa3\x8f\x37\x7c\xf0\xc5\xda\x65\x71\xa8\x87\x9b\xc4\x14\xf8\xff\x38\xd2\x36\x5e\xe5\xd9\xcb\xc6\x8c\xc2\x9d\xf5\x07\x8c\x52\x98\x93\x51\x99\xc8\x77\x16\xb7\xbd\xcb\x0b\xc2\x1a\x71\xab\x16\xad\x47\xbf\xfa\x47\xfb\x14\xb0\x05\x22\x2e\x6e\xe1\x32\x37\x69\xcf\x0f\x2b\x28\x0c\x0c\xe4\xc1\x50\x27\xdf\x71\xaf\x2a\x6e\x9b\x50\xf0\x81\x7f\xff\x68\x92\xe6\x2b\x88\xa9\x05\xc6\x4c\x0d\x7b\xc2\x67\x44\xb3\xd4\xf1\x59\xfe\xc4\x3e\xc5\xab\xbf\x89\x99\x67\x53\xea\x73\x97\xf6\x97\x92\xc6\xbd\x1c\x48\xae\x70\xf8\xc8\x23\x1a\xda\xa3\xc1\x88\x03\x43\xd5\xd0\x1c\x9c\xb4\x06\xc4\xed\x29\x96\xc2\x79\xba\x95\x36\x75\x7d\x9b\x57\x0c\xc6\x59\xb1\x09\xbb\x2e\x30\xed\x62\x29\xa4\x07\x2e\x50\x26\x8e\x04\x3b\x65\xcc\x54\xc6\xf1\x52\xcd\x6e\xca\xa4\x01\x13\x23\x99\xf0\x8d\xe5\x9a\xcb\x95\x75\xa9\x57\xa9\x5e\xda\xec\x11\xec\xbe\xfe\xdc\x96\xae\xd8\x03\x5d\x6a\xc2\xde\xb3\xab\x43\xd9\x19\xfa\x98\x55\x50\x6f\xa6\xed\xfd\xce\x2b\xba\xde\x5c\x33\x6a\x58\x44\xfc\xc9\x1f\xbe\x6b\x52\xea\xf1\x65\xa2\xe7\xfc\x6d\x43\xd4\xe0\x5a\xea\xcf\xff\xfd\x4c\x25\x08\x3a\xb4\xc5\x3d\x31\x0a\x68\x1f\x7f\x1c\x9d\x26\x9c\x90\xfc\xc3\x87\x92\xaa\x83\xc5\xe6\x2c\xe1\xb2\x2b\x54\x41\x57\x56\x4f\x6c\x41\xe0\x8d\x0d\x78\x92\x27\x19\x1f\xd7\x1b\x94\x21\x6e\xa8\xfe\xc7\x25\x72\x66\xb9\x40\x28\x35\xe7\x67\xed\x91\x6a\x72\xb8\xb7\xc1\x63\x7a\xa6\x61\x1c\x35\x65\x50\x83\x0b\x69\xae\x2f\x96\xc2\xcd\xdd\xba\xec\x95\x80\xa9\x0a\xe6\xce\xca\xa6\xee\xf5\x57\xa7\x5e\x6c\x9c\xd7\xfb\x8a\x4a\xf8\x05\x13\xd8\x70\xfe\x6a\x4d\xcb\x0b\x81\x2b\x91\x78\xa7\x17\x9f\xa7\x2c\x40\x5d\xaf\x41\xb8\xbc\x6f\x7e\xc4\x23\xe9\x50\x24\x05\x1f\x3c\xc0\xbf\x88\xa2\x6d\xf2\x79\xfc\x72\x5a\xa4\xc9\xbb\xb2\x1f\xdc\xa8\x86\x0e\x8b\x7b\xc5\x82\xae\x49\xe1\xaa\x1b\xb5\xe8\x86\x1a\x36\xcd\xe0\xa9\xf3\xd7\xdf\x7e\xee\xa2\x99\xb7\x04\x9f\xbe\xfc\x5c\xcc\x4f\x5e\x44\xfc\x6c\x66\x32\xce\xf4\xfc\x20\x55\x42\xfc\xce\xd1\x98\xab\x65\xf3\x5c\x72\x85\xc6\x37\xef\x92\x50\xcc\x2a\x45\x0e\x08\xe9\xc6\x6c\xbf\xc2\x35\x77\xf1\xa1\xd7\x5a\x46\xfd\x44\x2c\x29\xaf\x20\xca\x1b\x5c\x0d\x9e\x3d\x23\xb6\x8f\x3e\x75\xd5\x8a\x75\xf0\x24\x45\x2c\xc2\x26\x00\xa4\x09\x38\x0a\xf3\x17\x6f\xc8\xca\xbd\x89\x9c\x80\xa7\xec\x9f\x4b\x38\xb7\x8b\xfc\x62\x29\x7c\xff\xf1\x94\xf5\x44\x03\xb9\x51\x65\x35\x5a\x1e\x62\xa5\xef\xba\xc1\x50\x5f\x45\x23\xf0\xa5\xbb\xf3\xb5\xcb\x75\xd2\x64\x13\x43\x7a\x84\x44\x5c\x9f\x91\x25\x43\x56\x79\x0a\x10\xf5\xcf\x91\x69\x63\x54\x80\x21\x57\x02\x86\x9f\xbc\x59\x11\xcb\x8d\x81\xbe\x50\x55\xff\xfd\xea\x74\x89\xe0\x22\x9f\x0a\x9a\x62\xfa\x2a\x3f\x34\x2d\xfd\x17\x1d\x60\xd7\x7b\x3e\x75\x85\x76\x70\xdc\x31\x7e\xf6\x0a\xc5\x34\xc4\x01\x30\xe2\x44\x4d\x04\xad\xea\x52\x16\x03\x4f\x0d\x3c\x5c\xd7\x75\x77\x1c\x8c\xaa\x01\x8e\x4f\x73\x7e\xf4\x54\x45\xde\x1f\x04\x00\x28\x37\x30\xfc\x80\xa6\xa1\x54\xc6\xa0\x5c\x2e\xce\xe4\xfa\xf1\x8a\xaa\x40\x1a\x54\xf3\xb0\xc6\xa2\x45\x0e\x14\x6f\x04\xb9\x82\xc8\x13\x9e\x3a\x93\xd1\x0c\x98\xcf\x27\x16\xef\x5d\x32\xeb\xff\xfa\xc7\xe7\x42\x50\xe4\x4e\x0c\x3e\x5f\x5c\x7c\xa7\x08\xf2\x2a\x33\x64\x04\x8c\xca\x50\x0b\x1c\xda\x72\x7b\x43\x85\xbb\xd4\xc7\x37\x90\xbb\x06\x70\xf9\xdb\x2b\xb9\xca\x2c\xa1\xd9\x91\xdd\x2a\xad\x97\x05\xb4\x44\xb2\x51\xbe\x7a\x26\x27\x41\xac\x46\xe5\xe8\xc2\x78\x97\x64\x6e\xd6\x86\x35\xc9\xe5\x6c\x43\x31\xa2\x8c\x2a\xdc\x74\x84\xb2\x91\x6b\x45\x51\x5e\xf4\xc9\xe1\x7d\xaa\x88\x09\xae\xa5\x99\x3a\x8b\xdf\x48\x57\x8d\x97\xf0\xc2\xfe\x82\x7d\x5a\x9c\xc0\xc8\x8a\xbd\x2f\x1f\xe7\xca\x02\x7c\x25\x92\x45\x18\xdd\xf7\xfa\x04\x85\x20\x06\xba\xb6\xca\x22\x6c\xf0\xcd\xe9\xd1\x9a\x1f\xb0\x1a\x6e\x4b\x6e\xf7\xf5\x13\xf5\xab\xe5\x60\xd3\x8f\x15\xb5\x6e\x3f\x99\xfe\xaa\x6d\xca\x6a\xbc\xe3\x82\xa8\xfb\xfd\x49\x49\x91\xd1\x02\xba\xa3\x5c\xc8\x78\x63\x25\x5b\xb7\xa2\x27\x91\xf0\xce\x79\x13\x92\x40\x91\x95\x0c\x78\x4b\xb1\xf4\xea\x23\x4e\x2d\x7a\xe5\x2b\xcb\x8a\x7a\xa2\x85\x1a\x3e\xd7\x25\xbf\x69\x95\xbc\xd9\x73\x78\x3d\xcd\x73\xe2\x55\x5d\x69\x4e\xcf\x9c\x85\x9d\x73\x85\x23\xcb\x8d\x7b\xb4\x05\x74\x40\x2c\x5c\x8e\x8b\xa0\x52\xbf\xd1\xfd\xe2\x14\x2d\xa0\x40\xbe\x08\x00\xb1\xcd\x81\x6c\xdf\x88\x8d\xf6\x89\x83\xeb\x00\xfe\xcb\xb5\x07\xe8\x0a\xda\xb4\xce\x45\xb9\x00\x5d\xfc\x97\x41\xaa\xc8\x07\xb8\xed\x98\x51\x06\x7a\x63\x90\x82\x24\x6c\x20\xe6\x03\x92\xf0\xed\xcd\x83\x13\x1f\xe7\xb9\xd1\x4f\x7f\x6b\x9a\xfc\xfe\x75\x1a\x35\xd8\xf0\x39\x5a\x86\x02\xdb\xa6\x30\x2c\x7d\xe0\xb1\x24\xce\x54\x9d\xa8\xd6\xde\x75\xbb\xee\x82\xca\xc9\xb3\x45\x9f\x21\xb3\x26\xa6\xf0\x2b\x0e\x5c\x28\xbb\x7b\xec\x22\x1f\x67\x96\xf9\x85\xc1\x1d\xba\xc6\x8c\x85\x99\x43\x5c\x1c\x1f\xd5\xfc\xb5\x47\x94\xb4\x90\x08\xb5\xaf\x7f\x56\xd7\x02\x89\x4d\x98\x8d\xa9\xcb\x24\x4a\xd3\x27\x75\x9a\x35\xa7\xf9\xe7\x81\x19\xcb\x76\xb0\xfe\xfa\xcd\x82\xf4\xb0\x06\x44\x09\x8a\xb4\x02\xab\x32\x46\xfd\x18\x63\x0a\xe7\xf8\x97\x1a\xc3\x6b\x4e\xd7\xdc\x18\x7e\xda\x73\x1f\x2f\x09\x96\xa3\x36\xe7\x6b\x19\x9f\xd6\x74\x62\x3d\xcc\xca\x1e\x07\x16\xc7\xb7\xf8\xea\x89\xb1\xc3\x5c\x25\xa8\x46\x6f\xf1\x70\x87\x1a\xbc\x50\x83\xf7\x0c\x43\x8e\x74\xa8\x34\x11\x9b\x94\x49\x16\x53\xb0\xa9\x83\x17\xa1\x1b\xae\xba\xa1\x33\xce\x85\xb5\x1e\x1d\x44\xd9\xc4\xb1\xa7\xc9\x86\xb2\xe6\xe2\x15\x38\x3e\x69\x40\xd7\x15\x45\x92\x9d\x4a\xfb\x4d\xbc\x54\x55\x31\xfe\xc1\x74\xec\x6e\x63\x04\xd3\xe6\xf0\xd5\xb7\x93\x23\x73\x49\x19\xa0\x3c\x68\xe0\x70\x85\x6c\x08\x69\x25\xfc\xe9\xb4\x94\x56\x77\x9b\x73\x65\xf2\xc7\x35\xf1\xc5\x5a\x9b\xfa\x94\x33\x30\xc1\xeb\xf6\x49\x99\xa4\x2e\x51\x78\x39\xc6\xf4\x89\x43\xe3\x32\x0e\x64\x13\x4a\xfd\xf9\xc1\x07\xe4\xdf\x95\xb2\x90\xa5\xf0\xa3\xdd\x49\xc9\x32\xa7\x7b\x5e\xf4\xf9\xfe\x7e\x80\x4e\x36\x25\x6e\x25\x70\x84\x05\xea\xc0\x1d\x52\x0d\xd4\x67\xb4\xc5\xa5\xd9\x32\x47\xeb\x53\xf7\x8e\x51\x99\x1a\xa4\xea\xc6\x33\xe6\xc7\xb4\x65\x85\x4d\x5b\x8e\x50\xd6\xc9\xf7\x14\x14\x26\x6f\xa5\x42\x1c\x18\xce\x46\x07\xe7\xc5\x5d\xe9\x8b\x06\xc9\x15\xb9\x3e\x01\xb0\x93\x38\x8a\xe7\xbd\x95\x9e\x0e\x21\x93\x51\xcf\xe3\xd4\xba\xf4\xc1\xf8\xcd\x26\x9e\x20\xaf\x24\xd0\x0b\x18\xab\x0e\xa5\xe3\x96\x1d\xb8\x55\xc4\xda\x31\xd9\x35\xdc\xa5\xe8\xf5\xda\x18\xe6\x32\x70\xa0\x0b\x1f\x53\xa8\x34\xe5\xc0\xf7\xb9\xb4\x45\x7f\x6e\xe0\xd1\xf4\xad\xa8\xb9\xa4\xc2\xb5\xd3\x1e\x9f\x9d\xf0\x71\x04\xbd\xb7\x3f\xf7\x70\x5f\xfa\x22\xba\xb8\xc5\xe9\x42\x93\xa7\xa5\x8b\xd5\x5a\xb5\x2c\xc6\x86\xa9\x98\xff\xad\x82\x6c\x39\x66\xc4\xf3\xd2\xd2\x1b\x32\x7e\xcd\x5d\xb4\xa0\x58\x0a\xbb\x5f\x54\x9c\xeb\x50\x9d\x8b\x47\x5d\x7a\x5c\x1e\x47\x97\xb8\x5c\xb3\xe1\xc8\xeb\x23\xe4\x70\xb9\x1a\xff\xc4\xff\x7a\x37\xf9\x53\x2e\x66\x05\xa7\xb0\x71\x6c\x98\x32\xb0\xe3\x0d\xf8\xfa\x41\x62\xe0\x80\x9c\xe8\x39\xc6\x58\xbc\xb9\x47\x35\x63\xce\xc0\xf3\x19\x72\x08\x92\xca\x51\xbd\x1a\x65\x82\xbb\x5a\x88\xfb\xd9\x7e\x51\xd6\xd7\xdc\xea\x76\xbe\x68\xe2\x90\x0f\x11\xda\x60\x1b\x2f\x50\x2a\xdd\x2a\xe6\x22\x51\xb2\xc0\x78\xdf\x53\xca\xf6\x84\xd2\xba\x78\x01\x7f\x31\x94\x01\x7c\x3c\x24\x2e\xf5\xe7\xdf\x0c\xb5\x0b\x48\xb8\x64\x34\x1f\x8b\x4e\x38\x4f\x97\xbe\x6f\x11\x2f\x3d\x1d\x36\x36\x1c\xd2\x0c\x2d\x20\x31\xc0\x18\x70\xfc\x14\xdd\x4d\x1c\x44\x80\xda\x89\xd8\xf3\x1f\x14\x81\xcd\x72\xe0\x38\xc4\x03\xb5\x8e\xff\x5c\xc0\xa7\xd9\xeb\x11\x9f\x10\x2a\x6d\x45\xcf\x4e\x99\xa0\x68\x14\x3c\x7f\xa3\xd9\xb5\xc3\xec\x57\xcc\x03\xae\x3d\x95\xfe\x68\x3d\x81\x50\x09\x0e\xad\xa7\x78\x77\x53\x61\x78\x4b\x80\x85\x56\xfe\xdc\xb7\x34\x2f\x7c\x24\x8c\xdf\xc3\x79\xb7\x68\xfb\x2d\xe2\x62\xc6\x11\x0c\xf9\x9f\x68\x08\x44\x64\xa1\x3a\x2c\x4c\x62\xb5\x88\x8f\x8c\x8c\xc7\x55\x9e\xcf\x08\x48\x8d\x1b\x7f\xd2\xbc\xc1\xb8\x1a\x14\xe7\x15\x96\x96\x5d\xe4\x2a\xeb\xf4\x2a\x43\x0d\xbb\x9d\x89\xfc\x9f\x7b\x30\x79\x10\x08\xb4\x3e\x72\x17\x3e\x2a\x8f\xe9\xa2\xb9\xa0\xc1\x62\x7c\x67\xab\x14\x12\x69\x74\x66\x46\x11\x17\xdf\xa4\xcf\xdf\x9b\xd8\x47\x44\xb8\x43\xe5\xdf\x3f\x68\x98\x32\x7d\xe2\x54\xd9\x9d\xf3\x84\x7b\x04\x62\x0e\x41\x10\xf3\xb4\xbb\xfa\xef\x2f\xa5\xd7\xe3\x26\x6a\x22\x87\xc4\x95\x9f\x5e\xc9\xbf\xb1\x53\x6b\xd9\x1d\x58\xd6\xc5\xe0\xe2\x83\x9b\xe5\x12\xa8\x33\xe3\xc0\x6b\xdc\xb1\x56\x2a\xc9\x63\x05\xa5\x9b\xfb\xe5\x8b\x73\xf4\x1f\x6b\x46\x09\x01\x9b\x36\x72\x89\x29\xa4\xb7\xf4\x1f\x77\x7a\x92\x4e\x9f\xf3\x3c\xec\x24\x48\x9c\xd9\xfb\xa4\x08\x8c\x8f\x59\x5d\x58\x1e\x41\xfc\xbe\xf9\x79\x4d\x42\xc6\x0c\x90\x45\xd9\x2c\x69\x74\xf9\xaf\x1b\xb4\x4a\xc6\x46\x54\x88\xaa\xfe\x6a\x99\xe2\x67\x8d\xa3\x8a\x6f\xdc\x49\xed\x58\x3b\xc8\xed\x14\x43\xc6\xaf\x3f\xa7\xc3\xef\xa2\xe6\x98\x80\x58\x20\xc0\xb5\x16\xe9\x0a\xae\xd1\x3b\x8d\x15\x5c\xf3\x2d\x0d\xee\xd4\x13\xdd\x18\xbe\x27\x99\x1f\xf2\xc5\x8a\xe7\x63\xec\x14\x4b\xe1\x2f\x27\xa5\xd7\x99\x26\xa3\xa6\x8d\xfd\xb4\x72\xe1\xc9\x87\x47\x29\xc5\x29\xb8\xc7\x02\xde\xfc\xbd\xcb\xf9\x1d\x6b\xd8\xc4\xa1\x5e\xc3\xe6\x28\xaf\x8e\xb3\xb2\xb6\x07\x0a\x6a\xfa\x38\xac\x7a\x41\x6b\x29\xfc\xc0\x22\x34\x5e\x9d\xfc\xf3\xa2\xd1\xca\x81\xf4\xa8\xd3\x14\x3a\x5f\xdf\x99\x3a\x4a\xfd\xfd\xc9\xfc\xea\xe8\x23\x7c\xd3\x70\x6d\xc0\x2c\xa2\x42\x7e\x0a\x4b\x5f\xd6\x2a\x21\xe2\xf2\xa9\x39\x6f\x55\xaf\x5a\x27\x3f\xa6\x55\xcf\x5c\x1c\xb2\x5b\x6c\xa0\x68\x0b\x34\x57\x8c\xcf\xbc\x26\xc1\x6b\x76\x66\xca\x9c\x3b\xf5\xda\x64\x8d\x48\xa2\xc1\x4f\x6e\xbb\x57\x4f\xff\x8c\x45\xdd\xa9\x4f\x68\xe0\xc5\x06\x25\xdf\x78\x78\xb8\x5a\xf0\x42\x82\xc8\xdd\xb5\x51\x3e\xfe\x58\x97\x6b\xed\x55\xe1\xc7\xdf\xd0\x7e\x20\x02\x9d\xfd\xd4\xa8\xd6\x78\x62\x81\x96\x8b\xb0\xb7\x25\x48\xfc\x31\xed\x01\xb2\x20\xaf\xa2\x40\xb0\x2a\x83\x0d\x13\xf4\xa6\xb0\x4e\xe3\x90\x91\x3b\xb8\x43\x91\xea\xe0\x22\x59\x40\x39\xef\xd6\xd0\x0a\x34\x6a\x51\x79\xc1\xf5\x5f\xf7\x28\xf3\xe2\x4a\x45\x49\x2d\xff\x3a\x54\x66\xee\xaa\x43\xcb\x30\x77\x25\xdd\xf2\x37\xcc\x59\xbc\x60\x41\x71\x21\xa8\x3c\x7c\x61\x68\xba\x34\xf2\x5a\xf8\xdc\xec\x8b\xc2\x86\xbb\xb4\x25\x4b\xa3\xc1\x68\x13\x0b\xd5\xf1\x83\xaf\x2b\x9e\xaf\xae\xd7\xc0\x66\x3c\x18\x79\x7c\xac\xcc\xbc\x36\x75\xda\x15\x92\xe6\xac\x6e\x13\x12\x89\x75\x54\xc3\x9c\xeb\x74\x74\x91\x5c\x3f\x54\x18\xb1\x50\x46\x54\x3e\x77\xc6\x50\x5a\x53\xd8\xf6\xc0\xb9\xfd\xf4\xbc\x74\xac\x40\x2d\xee\x38\x53\xea\xcf\xef\x7b\x63\xa6\x76\xbb\xab\x9c\x84\xd8\x3e\x27\x88\xfa\xa7\xcf\x8a\x31\x35\x86\x52\x19\x46\x6d\x27\x27\xf1\x4f\xea\xa3\x06\xf7\xaa\xcc\x2f\xb9\x49\x9b\x17\xd9\x04\xe4\x4b\xc1\x52\x1c\x7a\xfd\xd9\x37\xc7\xe6\x3c\x0e\xf7\xcb\x08\x3f\xba\x2d\x5d\xd3\xd9\xc8\xe2\x69\xb7\xeb\x80\x82\x82\x9b\x0b\xe5\xd6\x33\xfb\x53\xa3\x32\x13\xc5\x5a\xfe\x5f\xed\x90\x43\x48\x33\x59\xde\xc4\x51\x7c\xfb\x2e\x31\x72\xa5\x8e\x83\x58\xb1\x14\x3e\xfd\x8a\x32\xb5\x6a\xb9\x58\x38\x32\x86\x3d\xb7\x27\xd9\xb0\xbb\x13\x34\xc4\x5e\x11\x48\xd4\x32\xa9\xf2\x4f\x70\x40\xde\x40\x05\x95\xa4\x4a\x93\xdc\xad\xb9\xac\x51\x5a\xe7\x2e\x6b\x57\x76\xe8\x69\xb2\xe5\x3a\x54\x88\xb2\xf4\xe7\x3e\xb6\x4e\x83\x1d\x02\x88\x24\x9e\x74\x84\xc1\x15\xbc\x9a\xb9\x2e\x36\x76\x96\xd5\xcc\xe9\x75\x49\xfa\x22\x7d\x0a\xca\xc0\xe8\xbc\x3f\x65\xdf\x4d\xc4\x4a\xea\x6f\xd3\x34\xb6\x43\x1d\x30\xe8\x09\x68\xaf\x60\x3f\x20\xcb\xbc\x2a\x83\xb1\x0a\x2c\xad\xfa\x97\xe8\x93\x1a\x98\x2d\xf1\xa8\xbf\x4d\xd3\xe3\xad\x32\x8c\xfc\xe4\xff\x22\xd7\x32\x6d\xe2\x58\x0c\x8b\x89\x68\xfe\x77\x6f\x28\x3b\x6f\xca\x18\x76\xf9\xf0\x8a\x28\x9c\x6a\x41\x47\x86\xd4\x78\xc1\x21\x19\xb6\x2c\xe4\xba\x10\x30\x73\x77\xbf\x4f\x51\x33\xa0\x12\x16\x99\xe9\xb4\xce\x3c\x9b\x4e\x42\x65\xec\x54\x90\xe7\x43\x45\xad\x2c\xce\xdf\xe1\x91\xfe\x1a\x16\x15\x67\x0a\x5f\x3a\x3f\x65\xc0\x34\xad\x73\xad\x21\xe8\x4c\xca\x01\xab\xaa\xf6\x0d\x7f\x98\x94\xbe\x04\xc9\x67\x8a\x52\x2b\x1c\x84\x1f\xda\x13\xb8\x30\x5e\x74\x02\x4c\xe4\xa9\xe6\xf7\xe1\x18\x4d\xc9\xbd\x4c\xdb\x71\x15\xf3\xf8\x6a\x2d\x66\xda\x18\xf9\x89\x65\xc3\xaa\xb7\xe5\xa1\xb6\x31\x62\x7e\x19\x83\xfc\x42\x61\xc1\x4b\xe9\x6e\xa2\x46\xfb\x1c\xc0\x47\x26\xb9\xd7\x5b\xa6\x58\xeb\x05\xac\x1c\x38\xdc\xa0\xd9\x9f\xce\x6f\x7d\x9d\x30\x46\xc5\x9a\x63\x81\x22\x20\xcb\x71\x01\x90\x3f\x4e\x1d\x7d\x9f\xf6\xad\x1d\x6c\xc2\xc9\xd7\x7b\x4a\x67\xaf\xde\xd8\x06\x4c\x50\xbd\x8d\x0b\x0f\x2a\xb2\xf0\xd4\xf5\x19\x29\x07\x71\x6d\x94\xeb\xea\x56\x3d\x72\xa3\x80\x4a\xf8\x74\xc7\xd8\x58\x18\xa7\x40\x8d\xac\xaa\xc2\xeb\xfc\xf4\x4a\xe1\x9a\xe3\xf9\xa8\x1c\x77\x06\xdd\x97\xa9\x4a\xc6\x80\xb0\x69\x20\x16\xab\xec\x87\x93\xd7\x26\xed\x93\x0f\xfa\x5f\xd6\x79\xc2\x59\x0e\xe8\x8a\x5c\x37\xca\xf8\xe2\x65\xba\x7c\x05\xa5\x15\xf1\xa6\xba\xa7\x0c\x57\x82\x3c\xb5\xbc\x62\x29\xfc\xf7\xbb\x44\x3b\xb2\x25\x40\x30\x43\x4d\x5e\xf9\x7e\x8d\x16\x07\xbc\x06\x9f\x23\x50\x3f\x32\x63\x94\xb2\xbe\x70\x2b\x4e\x00\xa5\x7f\x9e\xce\xb8\x40\x8b\xdf\x62\x88\x21\x06\x88\x3f\x5f\xa0\x9b\xf8\x94\xcb\x89\x49\xea\x81\x13\x32\x23\xd6\x88\x0b\x3a\xba\xb9\x03\x9a\xdf\x4b\xd4\xe4\xfa\x42\xea\x3c\xbc\x59\x91\xa7\x62\x94\x72\x75\xb7\xf1\x03\x26\xca\xb2\x39\xb3\xa1\x34\xde\x78\x45\x18\x63\x8b\x74\x94\xfb\xeb\x3c\xb5\xc4\x03\xf0\x7a\x14\xd9\x0e\xdd\x95\x3c\xee\xb9\x8b\xe6\x17\x4b\xe1\xd6\x87\x34\xb7\xda\xf9\x7c\x6c\x9a\x7b\xea\x21\xb9\x0d\xb2\x49\xd4\x07\x51\x97\x98\x00\x15\x75\xce\xea\xad\x50\xd5\x8e\x6d\x6f\xe8\x20\x51\x42\x32\xea\x82\xc3\x33\xfc\xb0\xdc\x6c\xdd\xf1\x9d\x35\x71\x8c\xd5\x59\xf9\xb4\x56\x65\x33\xc2\x3d\x08\xc2\x0e\x77\x9c\x72\x76\xb8\x92\x54\x6c\x7f\x3c\xe7\x9e\x0b\x94\x2f\x68\x11\x13\xac\x0d\x65\x3c\xbe\x74\xd0\x24\x99\xa6\x1b\x9c\xb9\xa3\xc2\xd5\x8d\xb7\x57\xc8\x5a\xc9\x6b\xd7\xcb\x80\xab\x35\xde\xbc\x57\x36\x50\x4e\x9b\x0f\x54\xae\x3c\x29\x6f\x8a\x6f\xa3\x76\xca\xe4\x6b\xce\x61\xa9\x6b\xe3\x99\x76\x0b\x31\x5f\x59\x03\x19\xfb\xef\x4e\x3f\xab\xb9\x73\xe7\x76\xce\x13\xec\xa3\x59\xf7\x71\xdc\xca\xf5\xc4\xf5\xfc\xec\x52\xa3\x30\xf1\x70\x3a\xbd\xd5\x63\x7b\x92\xdc\xbe\x29\xea\xd4\xc4\x83\xb0\x60\xbc\x3d\x38\xb1\xe5\x77\xb0\x0a\xcf\xfc\x6c\x43\x1b\x87\x2e\x5e\x3c\x5f\x1c\xdd\xf7\xce\x48\x7f\xbc\x26\x6d\x25\x5b\x93\xfc\x80\x19\xfa\xa5\x8b\x8e\x17\x17\x11\xd7\x9b\xdb\xcd\x1b\x79\xb1\xc1\x90\xe3\x08\x25\xd3\x61\xab\x75\xa2\x9f\x85\xcd\x04\x74\x5d\xea\x2f\xcc\xba\x55\xb0\x5f\x08\xf0\x7e\xc2\x8d\xe3\xd3\x9f\x13\x4c\xd2\x79\x83\xd4\x7b\x48\x3e\xe5\x58\xb1\x45\x79\xca\xc7\x77\xe8\x6a\x50\x2e\xb0\x64\x60\xcd\x2f\xbe\xea\x2f\xdc\x8b\xb4\x53\x5b\xf1\xed\x8c\x5e\xd6\x17\x6f\x50\xa4\xd1\x25\x96\x78\xec\x3b\x8a\xad\xbb\x8d\x28\xa7\xbe\xe6\xbe\x7b\xf9\x38\x25\xf6\x78\x0d\xe2\x23\x87\x00\x49\x35\xdc\x3e\x40\x34\x66\xd8\xe2\xbb\x8b\xc7\x5f\x19\xa3\x72\xfb\xb1\x6b\xc1\x24\xa8\xd4\x6f\xb4\xb4\x81\xb9\x8b\xb1\x20\x8b\xe4\x7e\x70\x9c\xd7\x44\x57\x53\xde\x35\x15\x27\x69\xfc\x7d\xcc\xdd\x95\xf9\x53\x6a\x6d\x1b\x2f\x7e\xa7\xe6\x6d\x59\x2c\x85\xd5\x23\xe9\x8b\xbe\xa0\xd8\xcd\x6d\xbe\x67\x9d\xd5\x15\x09\x90\x8f\x83\x38\xd3\x5d\xa3\x6d\xb4\x83\x86\x87\x85\x64\x49\xee\xe7\x2b\xb4\x86\x0c\x64\xf1\x92\x22\xe5\xe2\xd7\x63\x8f\x9b\xba\x87\x6a\x76\xd4\xcf\xa9\x32\x30\x57\x1f\xe2\xd8\xfe\x2b\x19\x6d\x65\x30\x5b\xc6\x43\x9b\x87\xa9\x00\xe1\x05\xc5\x52\xf8\x25\xa1\xa7\xe3\x05\x1e\xac\x01\x05\xb7\xe4\xac\x26\x41\xc4\x90\x05\xd3\x02\x7e\xc6\x76\x69\x72\x40\x40\x77\x2e\x53\x2b\x96\x36\x5c\x25\x24\x0a\xd6\x44\x4d\xa8\xaa\x11\x78\x42\x72\x97\x40\xc0\x31\x6b\x1e\xf8\xf7\xe2\x9f\x06\x2e\xae\x37\x1c\xda\xe6\xd3\xe4\xf0\x99\x8a\x32\x30\xf6\x7c\x46\x5d\x14\xf0\x18\xbe\x7d\xbf\x18\x61\xd1\x80\x45\x8d\x1f\x90\xbc\x0b\xcd\xd9\x0a\xaa\x87\x46\xa7\x8b\xb0\x3a\x17\x43\x2f\xad\xe0\xff\xa0\x0c\x6a\x64\x1e\x05\xb3\xb0\xfc\x6f\xef\x9c\xa2\x3f\xf6\x36\xc8\xea\x92\x44\x5d\xea\x0b\x8f\x09\x4c\x2d\x0d\x18\x5c\xad\xaf\x3d\x38\x4c\xdc\x1d\x5c\x75\x11\x57\x61\xfa\xfd\x7e\x65\x4e\x8c\xcc\x9a\xc5\x60\x5e\x99\x3f\xf5\xc0\x60\x91\xf7\x1d\x07\x15\x4b\xe1\x17\xdf\xe5\xdf\x73\x39\x11\xd3\x30\x9e\xb9\xfb\x9f\x14\x82\x70\x0e\x2a\x23\x78\x76\xf0\xab\x3f\xf8\x84\xe0\x1f\x55\x18\x22\xd1\x45\xb8\x50\xf3\xbd\x71\x21\x5b\x70\x65\xc5\x82\xb3\x7c\x70\x0c\x11\xdc\x50\x2a\x96\xc2\x5c\xb7\x5c\x8f\xb1\xc0\xe1\x35\x47\x61\xf7\x9a\x64\xc8\xeb\x80\xe6\x4a\xf4\xfb\xdf\x51\x04\x0f\xc4\xba\x37\x7a\xa1\x87\x67\xc4\x78\x71\x78\xcd\xd0\x49\x5c\x75\x26\x63\xd6\xe6\x72\x84\x04\x1f\x16\x7e\x82\xdb\x08\x3a\xd8\x2d\x76\xeb\xb3\xb1\xb1\x2f\x6a\xc3\x52\x1b\x09\x07\x83\xdc\x07\xf7\x0a\xa9\xe6\xe8\x25\x57\x97\xae\xbb\x2e\x3a\x8e\xaf\x3e\xa0\x71\x0d\x69\xa3\x6d\x22\x7f\xd6\xe6\xcd\xd1\x7f\x5d\x7d\xa7\x5c\x80\x79\x01\xf4\xaa\x80\x70\x4b\xea\x13\x3c\x40\x70\x1c\xa3\x5e\xc9\x53\x85\xcd\x8e\x3d\xcc\x21\xad\x6b\xb0\x6e\x0a\x12\xf6\x2c\x11\x49\x17\x33\xd2\xb0\x05\x54\xd7\xc0\x05\xf1\x24\x9c\x7a\xf4\xc8\x61\xbd\x5e\x14\xae\xa7\xd7\xe3\x72\xb1\x14\x3e\x77\x2c\x43\x90\x15\x9d\x4b\x3c\xee\x7d\xa4\x4f\xf2\x3c\x9c\xa0\x58\x0a\xaf\xdd\xa6\x1a\x08\x3a\x0e\xae\xe2\x22\x77\xa9\xcd\x2f\x7c\x20\xc5\x61\x00\x64\x5a\x78\x62\xef\x2c\x3d\x89\xc4\xc6\xf7\xe7\x14\x5a\x18\x34\x70\x84\xf8\xd9\xf5\x32\xf2\x63\x90\xec\x8c\xe7\xe4\x6f\x5d\xb8\x40\xb6\x82\xa5\xfe\xfc\x70\x4d\xd8\xd4\x67\xa8\x52\x21\x66\x0c\x97\xee\x19\x3d\x44\xa2\xc2\x61\xd7\xfa\x59\x71\x37\x96\x5f\x73\xd5\x86\xab\xd6\x45\x3f\x7d\xd3\x0d\xb2\x06\x15\x30\xe6\x9d\x1a\xa2\xa2\xe8\x81\x9c\x11\xac\x84\x0a\x1f\xb6\xb5\x0d\x2b\x65\x3e\x8a\xfa\x0b\x55\xd8\xfa\xb7\x63\x25\x66\xd8\x43\xf5\x00\x2b\xe9\x24\xff\xdd\x79\x3a\xfb\x82\x3f\x0f\x20\xe2\x9c\x52\xa0\x61\x41\xf4\x46\x60\x88\xf2\x9e\xb1\xaa\x9c\x35\x37\x78\x12\x37\x71\xcc\x94\x31\xea\x7f\x82\xc2\x99\x2b\x6f\xcc\x1e\xaa\x23\x43\x6c\xe2\x5a\x31\xc9\xe5\xc0\xc4\x91\xa2\xa6\x89\x1a\xc7\xd8\x48\x23\xf7\xd2\x46\x85\x29\x21\x04\xed\x40\xcd\x6e\x87\x2c\x3a\xa2\xbb\xdd\x59\x2c\x85\x8f\xdf\xab\xdd\x0e\x8c\xea\xbc\xac\xcb\xbd\x21\x38\x41\x88\x1f\x92\x52\x7f\x61\xf5\x2d\x4a\xb6\xc4\x28\x3a\x25\xfc\xff\x97\xfa\x0b\xb3\x37\x28\x9a\xac\xd4\xe3\xf0\xb7\xfd\x87\x94\xb5\x24\x46\x0e\xa4\xc0\x9f\xe9\xf6\x5b\xd8\xb1\xc4\xae\xae\x59\xd6\x31\x34\x1c\x9d\x46\x84\xf2\x45\x78\xfd\x8b\xf2\xd9\xd6\x68\x99\xf6\x81\xc9\xef\x8e\x57\xa5\xa3\x0c\xa8\xe5\x4d\x38\x7e\x89\xf6\x82\x7d\x5a\x47\xe6\x39\xad\x6e\xbe\xa5\x71\x9c\x05\x86\x54\x54\xd1\xef\x9f\xaa\xb0\x73\x91\xe3\xf0\x2f\xbb\x61\x7b\xe2\x9e\x6d\x05\x26\xf7\x00\x38\xf6\x84\xc2\x56\xb2\x49\xcc\x56\x9a\x3e\x65\x9c\x16\x7e\x18\xa9\xf0\x7e\xc5\xb8\x63\xb9\xe8\xb7\xa2\x03\x4f\xc4\x2e\xf3\xca\xdb\xe5\xfe\xc0\xcb\xc2\x47\xf6\x3f\x2d\x84\xda\x11\x63\xc2\x8d\xd8\xb8\xe2\x65\x9d\x1e\x8d\x31\xab\x04\x0e\x2f\x41\xfe\x65\xb4\x7c\xed\xd8\xaa\x72\x2a\xe5\xb4\x57\xf4\x96\x08\x46\x5a\xc2\x6e\xbd\x3f\xff\x45\xcd\x30\xc5\x46\x0c\xc1\xd4\x03\x3e\xf8\x93\x4c\x37\x20\x88\x2a\x60\x14\xe7\xe4\x3b\x25\x16\xdd\x41\x19\x88\x40\x7e\xf5\xf3\xb3\xb5\x72\xa9\x0f\x35\x89\x47\xea\xa8\x7d\x4e\x4d\xa0\xc2\xf9\x97\xcb\xfa\xbd\xcc\x02\xd7\x6b\x71\x9d\x43\xbe\x92\x3c\x3d\x4a\xf4\x38\x55\x9b\xfb\x08\xf0\x89\xdb\x7b\x3b\xb5\x46\x31\x21\xff\x86\xff\x20\xea\x56\x46\x78\x73\x96\x3b\xd8\xa5\x68\x18\x78\x0e\xc6\x51\x23\x7b\xd3\x4d\x3c\x92\x5d\x4b\x2c\x17\x35\x1a\x5c\x31\x32\xb7\x62\xb5\x82\x1c\x88\x3d\x81\xc3\xe5\x3e\xd7\xa6\x5a\xea\x79\xb8\xce\x0d\xfa\xd3\x5f\xe1\xd3\x13\x55\xcd\x1d\xc7\xe7\x9d\x58\xfe\xdd\x79\xaa\x3d\xb5\x9f\x38\x42\xe7\x7e\x78\x48\xf1\x1f\x21\xdc\x98\x5b\x61\x75\xc5\x0d\x11\x64\xd7\x1d\xef\xc8\xf5\xb9\xd8\xe5\xf0\xfd\x68\x7a\x2c\xb9\xe0\x04\xbf\xcf\x6b\xa9\x27\x68\xaa\x8f\x8f\xd7\x25\x50\xdd\x00\x39\x02\x15\x5b\x18\xec\x4a\xba\xeb\x62\xc0\xbd\x6f\x5c\xcb\x7f\x42\xc2\xc8\xcd\xdd\xfb\x9c\x32\x47\xa1\x81\x87\x6d\x21\x2e\xfc\xbd\xd5\xd9\x92\x58\x54\x9d\xef\x5d\x39\x46\xf9\x37\x75\x0c\x93\x91\xe8\x72\xff\xf8\x79\x8d\x75\x8d\xa2\x5e\x51\x1c\xc8\x97\xfa\x26\xca\x12\x22\xe3\x94\xf1\xf5\x93\xfc\x26\x45\xc7\x90\xb8\x26\x2f\xd7\x56\xac\x4d\x7f\xbd\x2a\x22\xae\x14\x73\xc3\xca\x1c\x07\xf4\xfc\x04\x7b\xe9\xa7\x3b\xa6\x29\x7d\xa9\x8f\x59\x93\x8b\x7f\x67\x32\x1d\x0d\xb5\xea\x99\x82\x02\x76\x0c\xf0\x37\x9a\x7d\x99\xd0\x1a\x27\xa0\xce\xd7\x44\xb3\x05\x5a\xe0\xf0\x12\x6f\x91\xae\x58\x88\x1f\xe0\x63\x03\x14\x01\x1b\x86\xf9\x12\xfd\xdb\xdb\xf5\x7b\x0b\x5e\xca\xd8\x12\x60\xa9\x09\x47\xa4\x84\x12\x6c\x72\x01\x5f\x13\xf3\xb8\xf3\x7f\xbb\x5b\x94\x91\xc4\x8f\x6d\x06\xf2\x47\x8e\xc8\xa8\xee\xd2\x26\xaa\x29\x03\xf6\x81\x1a\xcd\x07\x79\x5e\x50\x6f\x70\xe3\x22\x98\x17\x14\x76\x6f\x56\xaa\x5f\x54\x57\x79\x5b\xe7\xef\x1b\xad\xa2\x49\xeb\xc4\xe7\x33\x8c\xcf\xdc\x25\x7f\x61\x1d\x11\xa5\x1b\x0f\xff\xbc\x41\x2c\x8f\xb0\x6b\xa1\x94\xb7\xd5\xc5\x0f\x24\xec\xb0\xe8\x73\xcb\xb2\x6a\xe2\xb3\xc3\x54\x54\x65\x74\x90\x86\x1c\xba\x50\x3b\x7c\x55\xea\x13\xe1\xb7\x04\x7a\x7c\xa1\xf3\xae\xb0\x86\x88\xfa\x09\x27\x01\x13\xfc\x5a\x51\xf7\x35\x69\xbd\x81\x7d\xe2\x93\x26\xdf\xfa\xfc\xf1\x65\x85\x18\x80\x88\xd3\x42\x6d\x38\x66\x66\xa7\xf4\x5a\x55\x8d\xdb\x0b\x4b\xb5\x15\x36\x46\x2c\x16\xd1\xc9\xdd\x31\x3a\xa9\xe7\x61\xfa\x12\x3d\xca\xcf\xbc\x9d\x1e\x17\x50\x57\xe0\xb4\x72\xdd\xcf\x49\x18\x39\x8a\x29\x26\xc6\x8f\x46\x6a\x22\xa1\x89\x48\x95\xc0\xd5\xf4\xae\x16\x5d\x84\x8d\x19\xf7\x19\xfd\xb7\x95\xfa\xc0\x14\xa0\xda\x30\xc7\x16\x21\x6c\x05\x08\xb9\xfb\x99\xf8\x61\x04\x1d\x4a\xfc\xf1\x14\xd9\xe3\xe3\x9a\xbe\x5c\xd3\xef\x94\xb6\xf1\x6f\x0e\xd5\x27\x47\xf5\x3a\xb6\x84\x27\xa3\x33\x4f\xe1\x7b\x34\x88\xcb\x47\xee\xbf\xb8\x5b\xa0\xb5\x02\x6e\xf7\x11\x3e\x7d\x50\xe4\x49\xd7\x24\xcc\x74\x78\x9f\xb0\xe2\x51\x0d\xd6\x49\x1d\x21\x3b\x06\x4b\xcf\xdb\x0c\x6d\x63\x8b\xeb\x30\xf5\x88\x5f\xce\x32\x6d\x8e\x88\xa1\xab\xe1\x6d\xf8\x52\xad\x41\xe3\xeb\x54\x1a\x55\xe6\x31\xc5\xf9\x5b\x3b\x34\x82\x1e\xb5\xda\xd5\x40\x6c\x8c\xc2\xff\x3c\x28\x2c\xe5\xb1\x9b\xd6\xaa\xcc\x3f\xf6\x40\xfa\x47\x27\xae\x75\x6e\xa2\x5d\xd1\xd4\x25\xec\x10\xab\x20\x86\x63\xb2\xc2\xcd\x72\x4d\xca\x50\xa6\x9c\xc9\xef\x19\xca\x73\xdb\x9c\x39\x0b\x38\x1e\xe1\xd4\x7e\x09\x47\xcd\x50\x1b\xc2\xbf\x6c\x53\x44\x2b\x28\x6b\x60\x0b\xf6\x0a\x3b\x57\x69\xc9\x13\x39\x1c\xba\x54\xea\x37\xfe\xfb\x6d\x9d\x06\x2d\xb5\xa1\x2e\x7b\x50\x19\xb3\x04\x80\x70\x06\x85\xb1\x35\xc9\xf9\x75\xdb\xc2\xbc\x35\x5c\x37\x50\xf1\x0d\xaa\x63\x46\xcc\xa4\x07\x1d\xb1\x51\x93\xc5\xb4\x51\xbd\x81\xaa\x2e\x97\x25\x2c\xd4\x4e\x24\xb1\x12\x57\xe0\x4f\x0a\xcf\xc8\x58\xe9\x60\x04\x2a\x19\xc6\xe3\x67\x93\xa4\x40\x1d\xcc\xa5\x69\x0a\x53\x37\x68\x0a\x95\xd8\x21\xb8\x89\x13\xab\x80\x3f\x6f\x56\x45\x6d\xdc\x0a\x08\xd3\xc3\xef\xb8\xe9\x3c\x65\xd7\xe2\x04\xb1\xb9\x46\x61\x95\x68\xd3\x2c\xe2\x45\x45\x02\x14\xfb\x2f\x6b\xde\x9e\x20\x73\xc5\x87\xd4\xdb\xf6\xc4\x97\x92\xd1\x00\x4e\xf2\x1f\x06\x2b\xba\x6c\x6e\x05\x33\x17\xc3\x0f\x19\xff\x80\x12\x3f\x51\x39\xfa\x73\x9e\xd8\xbe\x38\x5d\x73\x4b\xe9\x14\x95\x6d\x3c\xfc\x78\xef\x29\xc5\x9c\x95\x3a\x08\x48\x00\xf9\xed\x27\x32\xc2\x2a\xb5\xf8\x2a\x1a\x67\xcb\xc2\xfb\x88\xd2\x86\x48\x0c\xbf\x1d\xa9\x58\xfb\x60\x87\xa0\xd8\x7d\x27\x7f\x93\x86\xe6\x0b\x5c\xd3\x8e\x4b\xc7\xc2\xc5\xcb\x94\xb9\xac\xdb\xe6\xd3\xb3\xfc\xfb\x9f\x17\x01\x2f\x60\xa6\x8d\xf8\x53\xfa\x4c\x98\xfe\x1e\x4d\x64\x22\xd7\x24\x89\x0b\x85\xf1\xf8\x4c\x3e\x60\x5d\x49\x83\x73\x0e\x58\xab\x42\xeb\x8c\x56\x2a\x20\xd4\x06\x73\xba\xd5\x0a\x4c\xd0\xf3\x09\x03\x6e\x77\x94\x77\x9e\xd4\x5e\x3d\x62\x81\x67\x4b\x98\x58\xfe\x53\x87\x15\x8f\x00\x1a\xb7\xae\xbb\x5f\x4d\xc2\x7b\x9f\x4a\x43\xfd\xdd\xd6\xf4\x4d\xa6\x0e\xae\xa6\x65\x9f\x96\xae\xd2\xf5\x48\x71\x6c\x86\xbb\x6a\xbc\x4c\xd3\x28\xe3\x1e\x99\xbb\xe8\x3e\xad\x12\x8a\x62\x40\xbc\xd9\x7a\x74\xba\x3c\x2e\x81\xeb\xc5\xb9\x3d\xb7\xe8\x55\xcd\x55\x81\x61\x54\xf7\x4c\xd4\x88\x3d\x6b\x6f\xda\x96\x31\x29\x8e\x61\x36\xbf\xbc\x55\x4b\x25\x9e\x87\x54\x2d\x86\xfc\x17\x9e\xe2\x55\xf6\x0a\x27\xe5\x1b\x58\xf8\xcc\x78\xf9\xcc\x1a\x01\xc3\x40\x5a\x2f\xd0\x91\xe3\x54\x20\x6d\x85\xf8\x38\xc6\x25\xe6\xff\xba\x92\xc7\xc6\xeb\xa8\x69\xfb\x48\x8d\x8d\xeb\x97\x8f\x53\xf9\x4c\x3c\x97\x89\x7a\xf8\x31\x4d\xf5\xdb\xc2\xc8\x72\x88\x8b\x05\x6d\xf9\xaa\x47\xd4\x66\xdd\xe5\xca\x77\xf1\x6d\xb8\xf8\xa4\x0c\x4a\x3d\xb4\x1c\xbf\xee\xbb\x76\xf0\x13\xc9\xf5\xbc\xe0\x84\x9c\x77\x44\x15\xa1\x6d\x67\xed\xeb\x0a\x03\xb7\x69\xb3\xbb\xc0\x25\x26\x69\x70\xa8\x39\x6f\x19\xbd\xa3\xb2\x20\x41\x2e\x06\xb3\x81\xaf\xdf\x28\x6b\x07\x98\x60\x72\xb6\x84\x71\xc1\xbd\xba\x53\xa6\x00\x03\x72\xb8\x75\xfd\xce\x0c\x46\xbd\x8c\xca\x80\x73\x83\x67\xd9\xbb\x49\xf3\x27\xf7\x29\x77\xd3\xed\xcf\x0d\xd8\x34\x45\xb9\x05\x00\x79\xd5\x0b\xd8\x1f\xdd\x9b\xae\x37\xa2\xa0\xc6\x01\x0f\x9f\xec\xd5\x18\x7f\x88\xd5\x62\x8e\xc1\x43\x97\xe9\x5e\x42\x3e\xa9\x13\xaf\x1e\x67\xc6\xdf\x5b\xa3\x95\xe3\x69\x61\x16\x45\x99\xe8\x3f\x7c\xa4\x67\x98\xca\xea\x81\xe5\xe2\x96\x83\xe9\x48\x32\x67\xc1\xec\x05\x5d\xb1\x85\x79\xfe\xfb\xe3\x35\xb5\x9a\x28\x83\xc5\x6a\xec\xe2\x50\x3f\xbf\x51\x47\x5e\x55\x19\xd7\x5a\x85\x68\xbb\x4a\x01\xc7\x5c\x0a\x76\x87\x10\xb3\xb7\xde\x7d\xbe\x68\x1a\xa1\xe9\x36\x9e\x5c\x96\xfe\x4d\x36\x6a\x62\x27\xcd\x8b\x2d\xac\x5c\x99\x26\x98\x55\xb0\xc5\x51\xe6\xe9\xbb\xfb\x17\x45\xab\x76\xee\xe2\xce\x85\x60\xcc\x66\xac\x96\x0f\xa5\x81\x6a\xc4\xf3\x91\x0b\x1e\x9a\xbb\x6f\xc8\x30\x13\x63\xb7\xfb\xe8\x73\x7d\x7e\xdb\xc4\x54\x36\xc2\x0c\xf2\x98\xb0\x35\x2d\xf8\xb3\x15\x81\x7e\x97\xef\xeb\x20\xda\xf6\x4c\x95\x1d\xb3\x43\xb9\x75\x36\x80\x5e\xa3\x87\xfe\x1f\x67\x15\x74\x2e\x15\x53\xf8\x7b\xd7\x68\xb8\x33\x1b\x3b\x1e\x46\x1a\x29\x6a\xce\x11\xb1\xf1\xb1\x6d\x1b\x04\x9f\x83\x27\x13\xde\x0d\x05\xf5\x43\x29\x4f\xf1\x01\x6d\xab\x8a\x9a\x14\x74\xfa\x79\x6d\x7a\xf8\xdd\x0e\x75\x57\x2b\x6d\xc8\x55\x8d\x85\x95\x9a\xf6\xa0\xe7\xa3\x28\xd5\x24\xae\x19\x39\x6b\x00\x4f\x00\x4d\xcc\x48\xa5\x2d\x22\xf6\xd2\x29\xfc\xe5\xfa\x36\xae\x17\x4b\xe1\xa4\x15\x62\x8e\x15\xf5\x7f\x50\xc9\xdf\xbf\x32\xdd\xd5\xd4\x4d\x07\xa3\x98\xff\x05\xb1\x61\xa6\x30\x69\xf6\x68\x1d\xf3\xab\x9a\x1f\x70\x5a\x63\xe6\x20\xdf\xa7\x34\x91\xae\xcc\x2f\x9c\x2d\x4b\x10\xaf\xc6\x33\xce\x5b\xfb\x05\xed\x84\x91\xa6\x70\x9c\xf8\xca\x0a\xdd\x10\xc0\x83\xd3\x60\x62\xd1\x19\x2c\x9c\xad\x0c\x68\x35\x3e\xbe\xb6\x29\xa9\x03\xa8\x02\x89\x39\xcf\xc7\x0e\x8e\x55\x83\xae\x89\x71\xc2\xf1\x5f\x73\x30\xa9\x19\x6b\x6e\xc6\x14\x21\x7f\x60\xc1\x64\x2d\x0a\x61\x61\x79\xe3\x71\xc4\xad\xf1\xef\x0f\xa8\xa8\x61\x4f\xe4\xc6\xfc\x3f\x2a\xda\x75\xc8\x09\xea\xfc\x4c\x7f\x79\x90\x16\x21\x9a\x98\xf9\x36\xa3\x2d\x31\x00\x58\xf4\x92\x2e\x2d\x24\x96\x1f\xa5\xf0\x23\xf3\xd2\x21\x09\xc5\x9a\x43\xf9\xf7\x8e\x55\xb6\x6f\x41\x83\x82\x7c\x27\x74\x18\xbf\xd0\xd0\xd0\x3d\xb4\x1c\xc7\xaa\x15\xaf\xc9\x29\x0a\xe1\x59\xf2\x86\x99\xd9\x0f\xc7\x37\x1a\x7c\x69\xda\x38\xa4\x98\x1b\x60\x13\x35\x88\x8f\xb8\x98\x55\xce\xdb\x93\x9e\x2a\xd6\xb1\x45\xcc\x28\x07\xb5\xb2\xdc\x9b\x0f\x4a\x5b\x34\x64\xa2\x62\x29\x7c\xff\x8e\x34\xea\xbe\xe9\x20\x8b\x78\x0e\x6a\xa6\x6b\x86\xd1\xf3\x24\x38\xab\x0f\x5b\xc4\x71\xa8\xca\xc1\xe8\xd0\x32\x38\x75\xab\x62\x5a\x3b\x79\x90\x32\x2d\x20\x5c\xd0\xb1\xf0\x79\x7b\x82\xd2\xb2\xb6\xeb\xd4\x55\x40\xa4\x9b\x96\x09\x7b\x0b\xea\x16\x4d\xca\x58\xd0\x80\x50\x38\x63\xa2\xd8\x7b\x9a\x94\xc1\x13\x3b\x56\xd6\xdb\x4c\x9f\x32\xd8\x31\x70\xc4\xfa\x27\xba\xf9\x1d\xac\x20\xd7\x47\x42\x53\x38\x77\xe8\xa4\x6e\x01\x16\xb5\x30\x9c\x75\xf4\xab\x79\x32\xfe\xcc\xe7\x9a\x0a\xe1\x0f\x4f\xeb\x99\x0e\x7b\xc4\xc2\x6e\x0c\x4b\xe8\x2d\x48\x84\xb6\x8b\x5b\x5e\x03\x35\xb2\x3c\x6d\xe3\xa2\xb1\xaa\x25\x84\xcf\x28\x9f\x9c\x8d\xb3\x92\x9d\x44\x94\xaf\xb7\x04\xf0\xbd\xbe\xab\xa8\xc0\xd5\x51\x85\x44\x6f\x69\xcc\x71\x09\x3a\x00\x67\x31\x3e\x6b\x90\x3c\xb9\xb5\xb2\x1a\xb4\x5a\x44\x29\x5e\x7e\xb9\x47\xf3\x2a\x62\x38\xae\xae\x0a\xb7\xde\xac\xab\xb9\x10\xaf\x86\x13\xd1\xf8\x27\x6e\x8e\xf7\x90\xf0\x8d\x85\x32\x64\x38\x56\x99\xa8\x23\x8b\xef\x68\x8c\xfb\x57\xa8\x10\x17\xc5\x9b\x6b\xd1\x84\x44\xda\x29\x63\x01\x53\xb8\x62\xde\x68\x75\x8a\xed\x7b\xa6\x1d\x54\x8b\xa5\xf0\xf1\x57\x74\xff\x62\xea\x73\x76\xe8\xc0\x65\xd2\xd6\x0f\xba\x11\xe3\x3d\xcb\x15\x1c\xa0\x69\x22\x4f\x08\x2d\x6c\x98\x2d\xc9\x48\x0b\x60\x4c\x38\x64\x89\x36\xf2\xa6\x81\x29\xec\xd2\x72\xec\x21\x4d\xf5\x25\x3a\x66\xe2\x49\x84\x6f\x2a\xc2\xe4\x26\x6a\x70\x81\xdd\xfe\x5c\xf7\x60\x1e\xc0\x97\x02\x17\xbd\x58\x0a\xbf\xd8\x50\x10\x9c\xb0\xdb\x85\x61\xe4\x1d\x9b\xb5\x8a\xbc\x22\xda\xa2\x64\x39\x77\xe9\xf3\x49\xb6\x9a\x3f\x67\xbe\x82\x1b\x08\x7f\xa7\x51\x44\xfc\x16\x71\x6b\x4e\xbc\xd2\xd9\x34\x6d\x88\xa4\xf7\x75\x47\xbf\xeb\x19\x65\x57\x56\x46\xae\xcb\x21\x02\x27\x76\x69\xdf\xce\x22\x51\x2e\x6f\x70\xed\xca\x17\x6e\xe1\x17\xe5\x4a\x5a\xaf\x23\x57\xf4\x45\xf4\x44\xfa\x9f\x58\xc4\xc3\x28\xb6\x85\xcd\x1f\x1a\x3f\x5e\x4d\x06\xac\xa6\xd6\xe4\x1f\x9c\xa6\x6b\x09\x9a\x81\x23\x58\xd6\x85\xf9\x47\x54\x59\x51\x8c\x7c\x1b\xa2\xe8\x78\xbe\x3e\xec\xee\x02\x97\xab\x55\x53\x34\xea\x5c\x14\xf4\xcb\x81\x24\x29\xf5\xe7\xc7\x4c\xe4\x48\xac\xab\x3c\x13\x31\xa6\xce\xb7\xf2\xee\xaa\xe4\xcd\x97\x61\xd1\x3c\xe1\xf4\x48\xa5\x0a\x27\x0e\xe7\xa1\xcd\x7c\x55\x69\x11\xb0\x8f\x1c\xc8\x83\x97\x29\x44\x07\xd4\x83\x7a\xa3\x07\xd4\xf1\xa0\x7a\x7d\x2b\xd8\x8d\xda\xc4\xf0\x4f\x0f\xa5\x83\x5e\x03\x25\x16\xb1\x1b\x6e\xd5\x7c\x1a\x90\x47\x4c\x91\x47\xaf\x7c\x5a\xce\xcc\x02\x3f\x1e\xae\x34\xfe\xaa\xc7\x70\xe0\x4e\x8a\xdc\xaf\xf1\x27\xfb\xb4\xf9\x71\x00\x18\x5a\x91\x28\x2e\xbd\x5c\xb7\xe8\xa9\xc2\x12\x3f\xa6\xea\x1a\xef\xaf\x5c\xa8\xc7\x4d\x86\xeb\xb8\xc8\x94\x6c\x73\x2a\x4c\x83\x3a\x38\x7b\xa1\x14\x7e\x80\x9f\x8a\xe2\x2a\xc4\x8d\x29\x34\xc7\xe5\x7b\xc7\x2b\x23\x4f\x58\x30\xca\x41\xe9\xbc\x87\xb5\x04\xe7\xdb\x98\xb5\x88\x27\xea\x8b\xc2\xa4\x3d\x8a\xc3\x01\x66\x26\x26\x4d\x88\x20\x77\x48\x59\x50\xbb\xae\xb4\x4f\xb9\x07\x77\x0c\x11\xa7\x08\x58\x79\xa5\xfe\xdc\x4b\x83\x65\x5a\xf5\x03\x70\xbd\xdd\xb6\x5a\xbe\xba\x2d\x01\x72\x48\x05\xd6\xd5\x5f\xb0\x47\x48\xf9\xcf\xd8\x80\xc0\x58\xa6\x65\x94\x0a\x72\x6a\x6a\xb7\x59\xc0\x0a\x16\xd7\xa4\x4e\x50\x2f\x43\x74\xde\x73\x2a\xf9\x69\x9d\x5e\x2c\xeb\x37\x61\x8f\x4e\x82\x8f\x32\x83\xe9\x90\x46\x23\x79\x57\x97\x48\x8e\xad\x13\x40\x1c\x1a\xbe\x44\x7e\x5e\xec\xf6\x50\x2e\x62\x94\xfb\xe0\x40\x5d\x15\x96\x91\x7a\x43\x5c\xc6\x9f\x0c\x54\xf4\x15\xf8\x96\x9a\x1b\xc1\x87\x68\xa8\x52\x1e\x61\x07\x81\xb5\x54\xf8\xeb\x9d\x32\x97\xd7\x90\x43\x5c\x65\x7c\xd0\x9f\x7f\x65\xb6\xde\xb8\x98\x14\x8e\x17\xef\x22\x7f\x59\x11\x70\xd2\x80\x59\x7c\xa5\x15\x2e\x7a\x54\x49\x08\x3c\xc5\x87\xdf\x7a\x59\xa3\x42\x01\x2f\x52\x91\x19\x5a\xfe\x54\xd6\xdf\x83\x23\xc0\x4a\xfd\xc6\xa4\xd9\x72\x90\x16\xfd\xf5\x86\xa6\x34\x80\x04\x58\x2f\xf7\xbf\x47\xdf\xaf\x5d\x1b\x9f\x41\x5b\x71\x2e\x8d\x85\xfc\xea\xfd\x0a\xd3\x8f\x24\xa2\xed\x33\x75\x9e\x09\xa3\x89\x05\xad\x31\x7d\xbb\x14\xb2\x9f\x0b\xf2\x26\x77\x0f\x4e\x3f\xa0\x38\xe9\x88\x5d\xf1\xd2\xa7\xa7\xb4\x32\x23\x8b\xb4\x8a\xda\x17\x8f\x29\x93\x92\x7a\x99\x61\xc0\xc3\xf4\xe7\x67\x68\x3b\x59\x4e\xe9\x14\x32\x83\x33\x62\xc8\x8e\xe3\x25\x64\xca\xfc\xe0\x95\x72\xfb\xd4\x99\x1d\xba\xbe\xaf\x99\x06\xf4\xb6\x69\x20\xa0\x69\xfa\xdf\x5c\x7e\x97\x7c\xc4\x1a\xda\xc3\x50\x45\x2f\xea\xc4\x0d\x7c\x71\x33\xef\x91\x0b\x06\x1b\x13\xa5\x1c\xbc\xc8\xc8\x4e\x24\xa3\x27\xfd\xd4\x8c\xd1\xca\x41\x15\x1e\xc3\xc5\x52\xf8\xe1\x77\xd2\xe9\x9e\xc4\xc2\x01\xc6\x45\xd3\xd2\x31\x16\x37\x31\x13\x06\x1e\x93\x5f\xd0\x6a\x4e\x52\x11\x14\xbd\x6d\x03\xf8\xa3\xfa\x08\x0b\xaa\x01\x6a\x23\x0e\xd8\xb8\x7a\xf6\x48\x85\xfb\x59\xc5\xdc\xf7\x38\x77\xd9\xa1\xd1\x6a\xd8\xa9\x60\x93\x33\x00\x5f\xb7\x24\x0c\x94\x96\x7d\xbe\xa2\x53\xde\xe1\xba\x83\x2a\x8e\x6c\xf1\xbc\xa8\x48\x9b\xa4\xfc\x28\xca\xfc\x0a\x75\x08\x88\xa0\x0f\x1d\x3e\x41\x85\xe2\x43\xb1\x2b\x4b\xb7\xa9\x1d\x09\x47\x9f\x81\x82\xc5\x63\x6b\x85\x8e\x8a\x49\x3c\x8f\x32\x1b\xf1\x3a\x22\x4f\x84\x4c\xf9\x4a\xcc\x58\x6a\xd7\x54\x28\x77\xa8\x0e\xa8\xb4\x4e\x3c\x18\x88\x16\x7a\x57\xe9\x7a\xbf\x48\x28\x90\xff\xeb\x60\x4d\xba\x8c\xfa\xdc\xa4\x3b\x43\x6e\xbe\x67\x9c\x4a\xc9\x21\x51\x03\x16\xe7\xe0\x09\x3b\x15\x44\x09\x27\x15\x45\x9f\xff\x89\x55\xba\x90\x4a\x13\x7b\xf0\xae\xe3\x9e\xf4\x35\x29\x1e\xe9\xd6\x54\x9b\x89\xf0\xf8\xb4\x98\xe6\xe1\x0a\xf3\x95\xb7\xa6\x0b\xf3\x03\x8e\x35\xd2\x73\xce\xcc\xcd\xba\x7d\x39\x71\x6b\xc2\xdc\x2a\x37\xe1\x3c\xa5\x20\x03\x31\x6b\x38\x0a\x6b\x1f\x54\x37\x46\xd1\x75\xa7\x75\x18\x7b\x9d\x3a\xa5\x65\x56\xae\x99\x27\x20\x3f\xaf\x1e\x50\x6a\x2b\x6a\x11\x38\x27\xb7\xbd\x9d\xe9\x9b\x63\xe1\x30\xee\x7f\x3b\xf0\x98\x52\x66\xa0\x1e\xc4\x2d\x9e\xba\x87\xf2\xf2\x65\x19\x66\x3e\x9c\x08\x89\x10\xdc\xab\x40\x3b\x40\x7f\x1c\x7e\x8c\xb1\x55\xfe\x69\xc5\x11\xab\xb9\xdc\x7f\x9c\xd6\x22\x06\x95\xe6\x68\x17\x8c\xd7\x57\xb2\x75\xb1\x68\xe6\x69\x63\xd6\xee\x91\xea\x18\x1d\xf5\x42\x30\x9f\x2c\x61\x1e\x6e\x39\x63\xea\x9a\x9b\x68\x28\x36\xe3\x92\x08\xb6\x66\xb8\x52\xc7\xf3\x9a\x2e\xf7\xe6\x59\x9e\x29\x1c\x21\x8e\x12\x7d\xa6\x0f\x0f\x1e\xa6\xce\x8d\x60\x58\xe4\x4e\x7b\x9f\xf2\x39\x3c\x9f\x05\xa6\x1f\x88\x03\x9e\x0e\x52\xe5\xc3\xaa\x78\x05\x74\xaa\xc5\x52\xb8\x7e\x95\x3a\xc3\x62\xc8\xc1\x55\x0e\x23\x18\xee\x5c\xa4\x64\x3f\x17\x57\x88\x7f\x0e\x7f\x8b\x4d\x83\xd3\x66\x3d\x30\x1b\x6c\x51\xe6\x44\x87\x10\x78\x9d\x22\x5d\x87\x8f\xdd\xa7\xec\x87\x29\x55\x9d\xbb\x8d\x6f\xef\xe0\x4d\xeb\x1a\xb1\xd2\xe5\x44\xb1\xc2\xf2\x5b\xe5\xc5\x8c\xbe\xae\xc7\xa9\xdb\xf9\x01\xaa\xbf\x69\x67\xd7\xe2\xe8\xe3\x9e\xde\xc9\x7f\x04\x5f\xee\x13\xdc\xe2\xa9\xff\x60\x5f\x3a\x9f\x54\x18\xc6\x02\x11\x1b\xe7\xd2\x7b\xaf\x10\x81\x01\x31\xcb\xaf\xa9\xd2\x4b\xcf\xbf\xa4\x9f\x4e\x93\x56\x5d\xd2\x87\xe3\x9b\xf8\xe2\x8b\xe3\x94\x37\x17\xa4\x10\xe8\x4b\x3b\x79\x1c\xba\xaa\xda\x6e\xf8\x04\x25\x8b\xc0\x1b\x5e\x9e\x9c\x44\x1a\xbe\x8e\xd0\x5f\xd4\x67\xa7\x6a\xca\x27\xf5\x06\x46\xa6\x2d\x3c\x1f\x61\x32\xfe\x85\xf3\x04\xf8\x13\x55\x01\xfb\x1d\x33\x6f\xce\x1c\xb8\x40\xcf\xc6\x58\x18\x80\xc3\x07\xbe\x63\x8f\x7c\xa2\xb8\xb7\xe1\x50\x0e\x74\x19\x53\x91\x35\x0d\xc9\xf0\x7e\x26\xbf\x23\xc6\x66\x36\xa9\xf0\xa1\x49\x7e\xd4\xf3\x02\x33\xc2\x10\xe1\x5b\x9f\x80\xdb\x35\x70\x21\x8c\x78\x9a\x0b\x17\xff\x8f\x86\x4e\x5e\x47\x1e\x2e\x56\x48\x3c\x39\x30\x86\xdd\x92\x1e\x52\x36\x91\x67\xe3\x7a\x94\xa8\xd4\xa9\xe1\x94\x33\x23\xc5\xc1\xa7\xd1\x27\x14\xe3\x9b\x42\xf7\xcb\x53\x14\x79\x2c\x46\x2a\x19\x09\x07\xe3\xff\xeb\x8a\xb7\xf2\x14\xa0\x9d\xd0\xf7\x8a\x6c\xb0\x3c\x2a\xf0\xd5\xfe\xc7\xf8\x58\x43\x43\x2e\xda\x18\x68\x36\x22\xf4\x7f\xb4\x57\x91\x0d\x40\x2e\x62\xc4\xb2\x14\x3a\x6c\xae\xeb\x25\x0e\xf6\xbe\x0e\xb5\x32\x18\xa9\xc2\xcc\x29\xca\x12\xcd\xa6\x1c\x80\x5c\x98\xf2\xd8\x04\xfd\x8c\xba\x7d\xed\x98\xd5\x79\xdd\x20\x79\xe9\xbd\xb6\x0b\x55\xd2\x8d\x93\x74\xeb\x24\xc7\x41\x9c\x96\x1c\xbe\x74\x56\xa9\x81\x11\x8b\xce\x3a\x0c\x95\x6f\x4d\xa9\x6f\xd5\x49\x6c\xf4\x9d\x7f\x4f\x41\x92\x2b\xf9\xcd\xc8\xf4\x4c\x9d\x87\x15\xfb\x7b\x52\x6e\x43\xee\x3f\xd3\x23\xcf\x52\x19\xfb\x36\xf6\x2c\x04\x69\x80\x25\x31\x10\xa3\x4a\x76\x95\xdd\xd3\x21\xd3\x87\x55\x27\x2e\x01\x51\x5f\xa2\xf0\x15\xc3\xa7\x87\x2b\xbb\x53\x87\x0f\xf8\xa3\xbb\xe3\x9d\xe2\x33\xe0\x0d\xb4\x0e\xbe\x98\x9d\xe7\x0d\x57\x02\x84\xc9\xf7\x98\xa5\x23\xfa\xad\x15\xbc\xce\x98\x62\x75\xe8\x49\x6d\x3d\x63\x63\xc7\x8f\x41\x00\xe1\x49\xc1\xf8\xe2\x35\x37\x5c\x8f\x81\x83\xce\x69\x4e\x2b\x8a\xcb\xc2\xe4\xae\x74\x9d\x60\xa1\xb6\x30\xbd\x98\xfc\xc4\x58\x2d\x3a\x26\x0e\x7d\xeb\x9e\x56\xb2\x68\x93\x92\x44\x5e\xbe\x3c\x49\xc1\x73\x26\x50\xb6\x99\x22\x8d\x23\x46\x70\xf1\x4a\x07\x05\x96\x1a\x3f\x3f\xaa\xcf\x39\xc0\x7f\x29\xde\x27\xf5\xbc\x91\x66\x8c\x58\x0c\xd5\x91\x0f\x73\xe0\xd9\x99\xd7\xf3\xc0\x36\x4d\xc2\x9c\x9e\xb3\x1b\x28\x7c\x62\xa5\x9e\x3b\x03\xd7\x17\x45\xfc\xc6\xe7\x15\x53\x69\xc0\x27\xa4\x0c\x80\x96\x2e\x90\x57\xc8\xc2\xb0\x19\x4b\xdd\xc0\x3f\x3e\xa7\xbd\x9f\x7a\x50\xad\x02\xed\xbe\xb3\x58\x0a\x1f\x3e\x33\x4e\xb9\xf0\x29\x03\x92\xdc\x87\x9e\xd1\x1c\x34\x2d\xda\xf0\x13\x07\xcd\xdc\x1f\xc6\x4b\xc3\x05\xb0\x78\xfb\x41\x63\xb4\xa4\xb9\xd5\xd5\xc8\xbf\x7f\xb4\x56\xfa\xf1\x05\x9c\x31\x66\x9d\x06\x01\x40\x71\x32\x28\x7c\x6e\x91\x6c\x02\x84\x13\x38\x47\x46\x7d\x6a\xa2\x62\x32\x43\x85\x63\x69\xfe\xac\xa2\xc4\xd2\x42\x0e\x81\xd5\x78\xee\x46\x4d\x13\x95\x38\x34\x76\x81\xcd\xfd\xbe\xe3\x02\xb5\x4e\xad\xd9\x94\xd1\xa6\xbc\x34\x55\x4d\x1b\xd5\x35\xd9\x39\xb1\xdc\xc6\xdb\x9a\xed\xad\x43\x1b\x18\x4e\x82\x7c\x90\xbb\x87\xf2\x60\xdb\xb0\x19\xf2\x30\xa7\x93\x96\xfa\xf3\x3f\xe8\x4d\x7f\xbc\x1a\x71\x92\xf7\xf2\xaf\xb7\x2a\xe4\x54\xea\xf2\xad\x7d\xe5\x9e\xa4\xc3\xc2\x8d\x6c\xdf\xb4\xc4\xcf\xd6\xba\x3e\x06\xb9\x10\x51\x35\xde\x39\x80\x8f\xb6\xd6\x6c\x80\x1d\xcf\xc7\xde\x16\xa8\x0c\xe4\x63\x07\x7b\xf0\x57\xbe\xf2\xc4\x50\x91\x80\x1d\x47\xd0\xf2\x3e\xa1\x71\xf6\x5b\x28\xb9\xe0\x4a\x5a\x5b\x3b\xa3\x95\xdd\x43\xfe\x1f\x4e\x83\x0f\x2f\x53\x9a\x68\x52\xaf\x60\x46\x1b\xd4\x29\x96\xc2\xab\x97\x4b\x12\x84\x94\xa8\xb8\x7b\xaf\x84\xf3\xf8\x99\x7d\x73\xae\xe3\xb9\xf4\xf1\x9a\x3b\x47\xf8\xe9\x9e\xe6\x4e\xcb\xc5\x6b\x3c\x07\xfa\x16\x65\xca\xf9\xe6\x5d\x32\x0f\xd4\xc5\xda\xe3\xbf\x4f\x2f\x01\x1a\xed\xac\x86\x10\xb2\x5f\x52\x09\x5c\x60\x50\x74\xc0\x9f\x77\x20\xbf\xa3\xab\x77\x51\xd9\xc2\x5d\xd6\xbc\xcb\x67\x65\x65\xee\xd7\x8a\xc5\x5f\x71\x2e\x17\x1f\xbd\xe1\x45\x39\x83\xc2\x75\x40\x23\x7b\x9e\xd0\x63\x32\x9e\x7d\x49\x22\x52\x3d\x1f\x71\xab\xc1\x6c\x64\xe8\x18\x9e\x4e\xe7\x2d\xda\x9a\x95\x51\x4c\x29\x6c\xee\x96\xed\x1e\x60\xe5\xf8\x56\x2b\xf4\x1f\xd3\x68\x87\x01\x2b\x8b\x26\xfe\xf4\x61\xb9\xfe\x84\x3a\x13\x7b\x3e\xa9\x8b\x46\x67\x98\xa3\x4c\x46\x93\xf6\xe2\x95\x49\x0d\xea\x25\x4f\x67\x6d\x69\xfd\x2c\xf9\x44\x8b\xa5\x70\xf6\x0d\xe9\x4a\xcb\xc2\x82\xff\x20\x83\xd1\x3f\xbc\xa0\x31\x95\x5c\x5f\x78\x76\xf3\x3e\x60\xe9\xae\xb1\xda\xb7\x0d\x1c\x81\xa7\xfe\xe0\xd6\x71\xfa\x6f\x87\x32\x0d\x58\x3e\x4f\x6b\x6a\x2d\xbd\x31\x01\x1d\xf8\xd1\x0f\x8f\x55\xc4\x13\x18\x05\xa1\x15\x6e\x57\xf1\x01\x69\x57\x13\xc0\x94\x0a\x2f\x90\x8a\xf6\x2c\xf0\x3c\x5e\x6a\xca\x57\xbc\x66\xb4\x94\xf9\x94\x54\xaa\xb0\xaf\x22\x8f\x93\x6f\x23\x02\x23\xf9\x95\x8a\xfd\x43\xf7\x5c\xd0\x30\x2e\x0c\x3e\xa2\xef\x7c\x68\x5c\x0c\xe5\xfd\x4d\xb1\x74\x3a\x72\x48\x9f\x90\x10\xf9\xc5\xfd\xe9\x74\xe8\x52\x31\xd8\xcd\x7d\x44\xd9\xf6\x31\x4a\x1c\xe9\xa9\x32\xe2\x98\xdc\xd0\xd8\x5c\x31\x2a\x7d\x63\x76\x3c\xcd\x0b\x5e\x17\x07\x8c\x72\x6f\x1c\xc0\xa4\xcc\xd0\x82\x99\x45\x3c\xae\xc1\x9c\x18\x97\x84\x4f\xcd\x96\x8d\x8c\x89\x1d\x5c\x8e\xe2\x4b\x56\x50\xf7\x90\x26\x3b\xe3\x78\x18\xa0\x3d\xc9\x2a\xf8\x6b\x72\xdd\x5a\x45\x3a\x6a\x29\xdc\xfc\x82\x36\xb2\x03\x7e\x85\x15\xa3\x3a\xc2\x95\x07\x04\xc2\x9f\xd2\x9a\xa8\xc9\x72\x9b\x37\xf1\x3f\xf3\x02\x56\x15\x1a\xe0\x05\xa7\x47\x94\xb9\xc8\xc7\x55\xc9\xef\xb6\xef\x49\x47\x5e\x68\x0b\x63\x4c\xf2\x6b\xae\xf4\x71\x22\x6a\x33\x7c\xef\x2d\x3a\xa2\xdf\x17\x7a\x0a\x30\x1f\xba\xf6\x6e\x65\x6c\xe5\xe0\x32\xf1\x4c\x02\xb7\x29\xf7\xc2\x09\x5d\x0c\xca\x21\xc2\xad\x32\xf7\xab\xd3\x0a\xcb\x95\x71\x9b\xac\xdc\xe6\xe3\x32\xb5\x82\x56\x64\x6e\xdc\x3d\xfc\x8b\xd4\x31\x8a\xda\x66\x11\xad\x8d\x4f\xce\x93\xf7\xd4\xec\x2c\x77\x22\xf8\xd6\x78\xe8\x28\x55\x19\xac\xe6\xc0\x8f\x0d\xf7\xae\xcb\x38\xc4\x79\x7e\x2c\x39\x9b\xdb\xb0\x87\x4f\xaa\xd6\x50\xc6\x85\x2f\xaf\x5e\x7b\x55\xf8\x67\xa6\x72\x49\x1a\x3e\x6e\xa2\x62\x29\xec\xdb\x3d\x3c\xe9\x70\x2d\xda\xcb\xb9\xca\xe7\xaf\xd2\x41\x83\xae\x69\x47\xef\x86\xb3\x3c\x0b\x2b\x9e\x1d\xa9\x0c\x0d\x70\xaf\x00\x22\x4c\x7e\x5a\xc2\x89\x90\x79\x8e\xa6\x38\x77\xc8\x55\x1a\xfa\xa0\xaf\x0f\xca\xd2\xaf\x3e\x9d\xee\x94\x61\x44\x68\x9d\x6b\x45\x91\xff\xc6\x3e\xc9\xb4\xf0\x33\x53\x04\xe3\x45\x5f\x5b\x4a\x72\xa5\x63\x38\xa4\x7d\xf7\x0d\x6f\x29\x03\x66\x58\xd5\x7c\xef\xb2\x24\x45\x35\x71\xe2\x15\x54\x7a\x4e\x2a\x3e\xa1\x1e\xe5\xd0\x9c\xff\x32\x5c\xa9\xe2\xd2\x58\x72\x2d\xa3\x22\xd7\x9f\x9b\x7d\xfb\x70\x75\x26\xc7\x21\x82\x83\x1f\xd4\x60\xe5\x2e\x75\xdb\x75\xe2\xc7\x32\x65\xe1\x3f\x4f\x52\xca\xfa\x72\xe0\x61\xc6\xa7\x33\x5d\x77\x67\x5c\xc3\x7a\xb0\x29\xf8\xac\xf9\x75\xd2\x26\x2b\x36\x8e\x7e\x77\xb2\xf6\x00\x80\x4e\xeb\x24\x7a\x68\x85\x49\x82\x39\xb0\xa1\xdd\x88\x43\x67\x78\xfc\x84\x3e\xf2\xac\x89\x91\xe7\x7f\x75\x4f\x54\x3a\x99\xbe\xc0\xa3\xa6\x42\x3a\x2d\x8c\x38\x35\x59\x6f\xaa\xa3\xcb\x49\xbc\x64\x22\xf7\xf8\x3a\xcd\x3a\x9b\x61\x54\xeb\x14\xb4\x00\x7b\xdb\x08\x35\x71\x5b\x1c\x4c\xd7\x2c\xab\x30\xcc\x26\xc1\x2d\xd1\x8e\xfd\xcb\x3b\x9a\xa1\x3f\x72\xab\x9e\x2f\xaa\xac\xfe\xfc\x5b\xca\x96\x28\x6a\x9f\x7c\xd5\x52\xf7\x7f\x9f\x54\x54\x47\x49\xb1\x14\xce\xba\x45\xd1\x35\x05\x41\xf3\xe8\xf9\x2d\x3b\x2d\x2d\x32\xab\x28\x3e\x10\xce\x61\xf9\x93\x6b\x4d\xe4\xfa\x8c\x78\x76\x93\xc0\xcf\xf9\x6a\x43\xf1\x78\xf1\x7c\x18\xb9\xcb\x4a\xaa\xba\x7d\xa8\x2c\xfb\xf8\x2b\x5d\xb7\x4f\x4a\xd7\x94\x6d\x18\xc5\x9c\x3a\x2d\x10\x3b\xf5\x78\xb5\xfb\xb5\x3d\x1a\xf2\x85\x06\xcc\x4d\xe4\xb5\xfe\xb4\x3b\xb9\x05\x16\xca\xf8\xb6\xe6\x3a\x34\x22\x86\x89\xea\x0d\xf1\xc4\xbd\x33\xe9\x8b\xdd\x22\xf5\xb2\x83\x2d\x2a\x40\xf1\xb9\x21\xca\x8c\xb0\x6e\x9a\xfc\xf8\xe6\x4a\xef\x0e\xe4\x3d\x56\xf4\xcb\x4f\xbc\x31\x5e\xaf\x20\x6b\x31\x16\x36\xb7\x72\x55\x0a\x42\x8b\x51\xec\x00\xbd\x6a\x2a\xe7\xfa\x0b\x07\xfd\x45\xb1\x83\xbe\x71\xd9\x71\x81\xc3\x45\x96\x88\xe8\xb9\x2f\xdf\x9a\xae\x51\x6d\x6a\xda\x51\x3d\x93\x02\x68\x0e\x5b\xa3\x61\xd6\x19\x36\xa3\x46\x97\x24\x42\xd2\x85\xd5\x1b\x85\xdd\x3d\x75\x9c\x76\x8b\xd2\xd8\x88\x6b\xcf\x22\x6d\x31\x03\x6d\x96\xd8\xc9\x3f\x34\x51\x4b\xea\xd4\x11\xc2\x4d\xe1\x5d\x77\x69\xb7\xd8\x14\x9a\xe1\xc2\x18\xb5\x3f\xf7\xa5\x91\xa3\x52\x50\x5c\xb1\x4e\x31\x2e\x58\xad\x2c\x7f\x1d\xd0\x8c\x34\x16\x9d\x27\x56\xd3\x73\x40\x5c\xea\xc5\xd7\x27\xe9\xdf\x07\x88\x38\x31\xcd\x32\x57\x9f\x3a\x4c\x59\x28\xf0\x1b\xb1\x7c\x95\xee\x20\x55\x09\xaa\x18\xf3\x0b\x51\x58\x2a\x4b\x6d\xee\xd7\x93\x4a\xcb\x1b\x1e\x15\x0d\x83\x50\x1a\x82\x26\x62\xad\x2a\xaf\xe3\xc7\x99\x63\xd4\x15\x99\x2e\xbf\x05\xdd\x0d\xf7\x3a\xe9\xd8\x3d\xe3\x5c\x15\x1b\x6f\xe8\xf5\x91\xd3\x2f\x37\x0e\x53\x14\xbf\xa2\x47\x11\xee\x7e\x31\xfd\xc8\x69\x20\xe5\x39\xbe\xa4\x08\x63\x7a\x90\x82\xc3\xd2\x86\x71\x6a\xc3\x41\x1c\xc4\x62\x4f\xca\xfc\x37\x9f\xd2\x6c\x7a\x50\x2d\xdd\xbf\x19\xc5\x07\x86\x8a\x08\xd1\x24\x02\x1f\xf8\xf9\xa6\xa6\x63\x86\x89\x5b\xc1\x50\xab\xca\x55\x48\xe5\x69\xc5\x3c\x8b\xb2\x2a\x06\x0a\x4b\xeb\x81\xa4\x4e\x69\x30\x98\xf7\x85\xcd\xbe\xd1\xca\x20\x51\x40\x87\x8a\xa5\x70\x82\x22\xca\x51\x87\xed\x80\xb2\x73\x1e\xa9\xed\xfe\x62\xc1\x30\x31\x88\x75\x77\xc8\xf2\xb0\x1d\x54\xa9\xe7\xa0\x26\x5f\x33\xb5\x66\xf3\xd0\x01\x1e\xe4\x50\xa0\x6c\xb8\x55\x5b\x6d\x31\x14\x57\x99\x9f\x75\xd4\x36\x01\x99\x26\x6e\xf8\x31\xc8\xdd\xf8\xee\x63\xb2\xec\x9d\x37\xbf\xb8\x28\xfa\x7a\x4b\x0c\xf1\xb0\x1a\x8c\x98\x14\x72\xce\xd7\x1a\x9a\x96\x0a\x32\x93\xb5\x73\xfd\x46\xed\x82\x34\x10\x83\xfd\x4c\x9c\xe6\x6e\xf3\x75\x8d\xb6\xc0\x8f\x67\x9d\x5f\xba\x65\x94\xc2\xe4\x4a\x98\x81\xc6\xba\xb3\xfc\x16\xbb\xd4\x4d\x9b\xee\x9e\xdd\xae\x4f\xb3\xa2\x63\x07\xc2\x8e\x1c\x11\x31\xb2\xac\x6f\x29\x59\x8d\x5b\xe0\xeb\xdd\x76\x6d\xe2\x28\xa5\x43\x6f\xb9\x50\x68\x97\xc2\xb7\x36\x66\x40\x5a\x75\x82\x59\x52\xf7\xae\xd8\xa3\x09\xc2\x99\x88\x95\x29\x8b\xce\x6f\x7a\x33\x5b\xd8\x39\x40\x12\x42\x4c\x1c\x6b\xc1\xfe\xf7\x1a\x6d\xfe\x8b\x5c\x64\x21\x45\xcf\x71\xe6\x2d\x70\xbc\x1c\xec\x16\xe7\xf3\xe9\x48\x78\xbd\x30\xc8\x5b\x86\xaa\x4c\x31\xe1\x0a\xaf\xd6\xa0\x72\x1e\x75\xc4\x6a\xdd\xf8\xe6\x66\x1d\x73\x6b\x45\x05\x8c\x18\xc5\x19\xf7\xf4\x4c\xd3\x4a\x61\xb3\x7d\x89\x07\x88\x98\xf4\xd5\x1d\x7c\xa7\x42\x76\x41\x4c\xb0\x0c\xc6\x3e\xaa\xef\xa5\x7d\x54\x26\x1e\x1f\xca\x73\x00\xdc\x57\x1f\x96\xe2\xdd\x3d\xd4\x76\xbd\x73\x08\xe2\x4f\x5a\xa6\xc9\xda\x9a\x35\x37\x8a\x32\x56\x15\x5b\xe2\xc7\x9c\xa7\x29\xdf\xb6\x88\xd3\x00\x4f\x64\x79\x8f\x76\x75\x6a\x3a\x45\x18\xb1\x64\xca\x65\xdc\x7a\x54\x81\xac\xc6\x93\x82\x0f\x18\x3a\xad\xd1\xa7\x0c\x46\x80\xbc\x8d\xfd\xfe\xec\xcc\xe2\x00\x09\x44\x0b\xa4\xea\xc1\xef\x8e\xc4\x6e\x11\x5e\x13\xf1\xfc\xe2\x06\x16\x5d\xc3\x30\x37\x55\x11\xa3\xe6\xa5\x75\xf4\xc3\x9e\xb5\x06\x27\x9f\xe0\xe3\xc5\x52\x78\xf2\xf6\x11\x0a\x4e\x9e\xd6\xf8\x0e\xe1\xcf\x8b\x94\x2a\x99\x11\x10\x25\xcc\xef\x3e\xae\x19\x8c\xb1\xa8\x28\x57\x40\xbc\xb9\xeb\xb5\xbc\xd6\x62\x20\xbe\x27\x52\xb3\x77\x77\x52\x01\x2d\x9c\x03\x51\xe5\x96\x35\x8a\xf1\x91\xcf\x40\xe5\xee\xd4\x76\x19\x5c\x1d\x8c\x4c\x65\x80\x9f\xbf\x63\x93\x96\x72\x03\x9f\xb8\xb3\x7c\x19\xc7\xc2\xb5\x1b\xe4\x04\x5b\x59\xea\xa6\xcb\x93\xc6\x24\x29\x40\x0c\x4e\x66\xbf\xb8\x55\x32\xc0\x33\x7f\x3f\x9c\x7e\x54\x96\x24\x3d\xa8\x5e\xe7\x8f\xe8\x3d\x27\x86\xc8\x0e\x04\x2c\x74\x47\x69\xa2\x41\x55\x86\x9a\x82\x1b\xf0\xa0\xa3\x0d\xe7\x5c\xda\x8a\x15\x23\x72\xdf\x7c\x5e\xa3\x91\x60\xb7\xc9\xa3\x04\x4f\x7e\x9b\x9a\xe3\x94\x69\x64\xaa\xaa\x2c\xf4\x48\x62\x56\x15\x45\xa9\x8c\xfc\x55\xb1\xd6\x44\xb1\x34\xf5\xd3\x8b\x92\x47\x1f\xb8\x41\xb1\x14\x1e\x1b\x9b\xfc\xc1\x7c\x60\xad\xe5\xf3\xcf\x69\xdd\x3a\x76\x50\x3b\x0d\xc8\xcf\x3f\x74\x7c\x98\xf2\x49\x80\x8c\x69\xcc\x78\x42\x58\x50\x82\x67\x88\x08\x99\x77\x18\xc9\x64\xc3\x45\x65\x65\x05\x43\xb7\x4b\x0a\x5a\x1d\x83\xf4\x4d\x3c\x67\xf8\xa8\x66\xb6\x66\x23\xd7\x4a\xd8\xf1\x9f\xdc\xaa\xb0\xb3\x79\x9a\xf9\xf8\x4e\xd5\x36\xaa\x42\x59\x9d\xb7\xe3\x5f\x38\xad\x29\x38\x08\x79\x01\x7e\x85\x3f\xb7\x53\x71\xbc\xf5\x4c\xe4\x24\xbe\x46\x9f\x7c\x55\x01\x39\xb4\xa9\x5b\x6d\x23\xfe\x65\x5e\x7b\x23\xfd\x03\x9b\xb0\x1a\x8c\x95\x8f\xbf\xfe\x98\xbc\x40\x2d\x88\xef\x50\xb0\x5e\x96\xce\xe8\xdd\x73\x44\x47\xa2\xae\xcd\x7e\xa7\x58\x56\xf5\x04\x65\x04\xf9\xb4\xa1\xf8\x1c\xd5\x89\x69\x63\x1e\x24\xfe\x7a\x45\xfa\xf2\xb5\x30\xf1\xbc\x54\xe4\xf9\x52\xcf\x38\x65\x8b\x64\xfa\xb0\x56\x01\xe5\xc8\x7e\xe3\x0f\xcf\x68\xea\x19\x54\xaa\x3c\x75\x5a\x1a\x0f\x81\x76\x66\x77\x0f\xb9\x9f\xee\x55\xb5\x98\xb8\x30\x30\x44\xdf\xcd\xd6\xf8\xd6\xb9\x90\x38\x70\xc1\x57\x0d\xd2\xba\x47\xec\xda\xf0\xc3\x21\x5c\xcc\x3b\x4f\x97\xbb\xf2\x39\xf3\x5b\x00\xec\xf3\x9b\x04\xd1\xcf\xc7\x8c\xc5\xe2\x45\x6b\xef\x97\x44\xae\x3a\xb5\x30\x4b\x11\x18\x0c\xab\x6f\x82\x2a\xc5\xe1\x45\x31\x36\x89\x0e\x2f\x09\x27\x81\xe8\x66\x46\xbd\x6f\xf4\x3b\x1e\x3c\xa4\x56\x4b\x0d\xe4\x7a\xc2\x30\xf6\x3b\xda\x6b\x87\x70\x22\xc6\x6b\xe1\xd1\x99\x9a\x7c\x96\x1d\xb8\x55\xb1\x8c\x89\x6f\xcb\x15\xe3\xf9\xba\x31\x56\x04\x4f\x7d\xce\xdd\x47\x54\x0d\xbe\x00\x04\xec\xf3\x8f\x6a\xe2\x8c\x7d\xd4\xa5\x4d\x95\x44\x9b\xff\xeb\x0b\x9a\x8b\x58\xad\x38\x6f\xa1\xa8\x36\x6c\xfd\xbf\x59\xf1\xfd\x09\x7b\x97\x4b\xee\x07\xd8\x99\x39\xed\x4c\x02\xcc\xfd\xfc\x0c\xaf\xe4\x4c\x9b\x7a\xa0\xa6\x94\xfb\x49\x4f\xc6\xbb\xaa\x81\x5d\x0f\xf9\x82\xef\x6c\x7c\x78\xdd\x30\x05\xf7\x04\xf1\x7b\x63\x8f\x8c\x56\xc8\xb5\x14\x2c\x41\xf8\xe7\x9b\xb5\x32\x1b\x2c\x09\x39\xfa\xee\xee\xd3\x7a\x12\x64\xbe\xe0\x78\x41\xdf\xf8\x41\x7f\xa8\xda\x7c\x44\xbf\xfc\xc4\x54\xfe\x7c\x57\x5c\x73\xe5\x95\x59\xc4\xe6\x21\x15\x6b\x52\x6e\x73\x75\x97\x33\xc3\x85\x56\x10\x72\xab\x7d\x48\xa9\x7f\x0b\xa3\x2e\x3b\x57\x4b\x16\x0f\x53\xbf\x3c\x4d\x4e\x21\x7a\xb2\x36\x95\xf7\x1c\x4f\xf2\x47\x67\x90\x55\x7a\x3b\xaa\x49\x08\x98\x36\x71\x91\x88\xef\xeb\xd7\xf6\x17\x46\x77\x4a\xa6\xbd\x29\xc5\x00\xc2\x6d\x7c\xbc\x5b\x2c\xb9\x59\x6b\x86\x01\x07\x65\x40\x74\x7d\xa8\x5f\x27\xfc\x55\xe5\x76\x0b\x79\xa7\x30\xbc\x5c\x65\x8c\xe0\x5e\x4c\x8a\xa5\xf0\xb1\xb3\x0a\x24\x95\x36\x02\x87\x06\x50\x4a\x3c\x72\x46\x33\x8d\x04\x15\x2d\x21\x02\x7f\xb4\x92\x8c\x26\x3c\x58\x6e\x41\x35\x78\xf2\x5c\x7d\x43\xec\xad\x9f\xff\x87\x75\x5a\x81\xea\x63\xe2\x96\x19\x76\xdd\x38\xc3\xc5\x2f\xe0\xfa\xd7\xb5\x79\x3f\xf1\x50\xec\x6a\x2c\x92\x40\xf1\x86\x09\x6e\x6a\xc9\x90\xb6\xd5\x6c\x66\x9c\xee\x44\x15\x5c\xea\x37\xe6\x9d\x4c\xda\xa4\x0a\x37\x54\xed\x37\xf6\x6b\x12\x99\x42\x3c\x0f\x90\x5e\xad\x2e\x95\xde\x0c\xb0\x9b\x70\xcb\x8a\xf4\xf0\x7c\x41\xb1\x5b\x54\x36\x86\x26\x6c\x5d\xc1\x6e\x9b\xa6\x5d\x1e\xc3\x2f\xed\x8c\x91\x1a\x48\x60\x58\xdf\x79\x55\xa8\x16\x53\xb7\x89\x85\xa7\x67\xf9\x7e\x7d\xf7\x80\x4c\x3f\xf1\xc6\x28\xd4\x57\x8a\x39\x8d\xe7\x61\xe6\x17\x4b\x21\x7a\x47\xc8\xa0\x60\x46\x2b\x0e\xcd\xc2\x03\xce\x1f\x79\x91\xd2\xf4\xb9\x36\xf2\xfd\xac\xdf\x67\x7e\xe8\xc9\xd8\xae\xa5\xca\xa0\xaf\xcc\xdd\xbe\x59\x2d\xcd\x82\x3a\x87\xa8\xdc\x2e\x83\xab\x8d\x02\x0f\x15\xbd\x06\x16\x5f\xa7\x3f\x3f\x60\x12\x47\x7e\x6d\xbc\x3a\xf3\x29\x86\xae\xe1\xe3\xe0\xa5\x6b\xae\x5d\xba\x6e\x69\x22\x63\x70\x4c\xa7\x98\x82\x98\x56\x0c\xf3\xea\xbd\x45\x97\x80\x77\x4d\x8c\x9c\xa4\x26\xf8\xc3\x3e\x59\xe1\x36\x49\x99\x71\x91\x36\xc3\x57\xc6\x14\x65\x06\x44\x00\xe3\xc1\x5e\x8d\x44\x4a\x5d\x12\x15\xd9\x6e\x35\xb1\x50\xdf\xde\x91\x19\x31\x70\x43\x2c\xfe\x61\xfe\xee\x32\xe5\x72\x5d\xe2\xd5\x11\x0c\x8f\x72\xf3\xd6\xa8\x1b\x6f\xc2\x63\x5e\x71\x0e\x4c\x3f\x3e\x7e\x85\xfc\x7c\x2d\xe2\x5a\xb4\xc5\x83\xbc\x56\x9f\x08\x7f\x93\x9e\x1e\xf8\xa4\x27\x5f\x49\x71\xca\x1a\xa8\x9a\x98\x39\x4f\xd1\x14\x84\x2c\x5a\xc7\x9e\x4f\xcc\xf8\x1b\x9c\xba\x47\x9b\x3d\x3b\xc8\x8b\x7b\x88\x9f\xbe\x33\x49\x1d\x1e\x64\x46\x76\x46\xff\x82\x58\x45\x0d\x7e\xa1\xcc\x99\x87\xf7\x69\xdb\x0d\xe2\xd6\x84\x43\x5f\x38\x5a\x93\xea\x74\x70\x45\x00\x5c\xc3\x77\x14\x0d\x24\xaf\x81\x38\xaf\xe4\x4d\x05\x34\x46\xea\x30\x60\x80\xe0\xbf\xec\x39\x15\x70\x81\x1c\xe4\x9a\x36\x20\xe8\x0a\x1b\x75\x73\xc4\xe8\x8e\x8a\xe2\x62\xf1\x4b\xda\xec\x29\x70\xdd\xc4\x4d\xea\xdb\xcf\xf1\x15\xc7\x87\x03\x15\x03\x5e\xf8\xdc\x3a\x71\xe7\x6c\x54\x2f\x0b\x81\xa1\x0f\x77\xa4\xb3\x1c\x40\xe4\x5a\xc4\x8a\xd1\x03\xc6\x82\x87\x64\xac\x6d\xb5\xa1\x17\xda\xdb\xa5\x8c\xcb\x61\x8c\xc1\x83\xed\x0d\x1a\xde\xd7\x13\x01\x25\xf7\xb1\x5d\xf2\x1e\xa2\x06\x18\x78\x64\x8d\x5a\x73\xf3\x17\x28\xaa\xd3\x66\x50\xa9\x70\xe9\x8d\xfc\xaa\xb3\xfc\x7e\xae\xc7\x2e\xe1\x02\x0f\xdf\x5d\xc3\x87\x77\x0b\x8b\xdd\xd1\x83\x2a\x0e\x92\xda\xe0\xf3\xa3\x3f\x31\xf6\x2d\x4f\x29\x21\x07\x7c\xae\x6b\xdc\xe8\xa7\x57\x1d\xc8\x45\x4e\xdb\x23\xde\x39\x06\x65\x7f\x3c\x25\x10\xab\xd1\xa5\x83\x2f\xf1\xea\x53\x4a\xfd\x4f\xe0\x9d\x1a\x1f\x7f\x51\x28\xeb\xe0\x64\x9c\x75\x6a\x8f\x02\x8b\xa2\x20\x85\x9d\xdb\xfd\xfc\x28\x85\x02\xcb\xa2\xbc\x12\x15\x26\x6b\x3a\xf5\xc1\x7f\x72\xe3\x8e\x0f\xd0\x50\x2c\x24\xc1\x2b\xb2\x6e\x59\x63\x00\x2f\x9d\x26\xea\x54\xc6\x44\x15\xbc\x63\x72\xfd\x64\x08\xad\xce\x09\x59\xa8\x3b\x94\x0a\x8a\xe1\x3d\x63\x47\xc5\x41\xd8\x03\x9b\x14\xc0\xdf\x87\xcf\x84\x99\xc1\x4b\xd1\xc3\xc8\x83\x6e\xbf\xd4\x5f\x58\xa5\x41\xeb\x17\xcd\x9e\xb3\x68\x71\x27\x77\x38\xee\xcf\xfd\x65\x89\x96\x29\xba\x84\x7a\x6c\x7e\xf5\x0d\x63\x95\x98\xe0\xab\x50\x3e\xcc\x65\xd1\x8a\xeb\x1b\x94\x65\x80\x72\xb9\xfe\x83\x3c\x82\x82\xc5\x1d\x88\x3f\x44\xbf\xe8\xa7\xef\x2a\xca\xf2\x36\x72\xab\x29\x8d\xd7\x41\x37\x2a\xe0\x69\xbb\xed\x11\x93\xc3\x47\xff\xae\x57\xc8\xdc\x07\xcc\xa3\x5c\xa6\xe6\xf8\x8b\xd2\x71\xd2\x8b\xc7\x43\xf9\x2d\xaf\x64\xf4\x2b\xda\x89\xaa\xd4\xb4\x99\xe3\xd4\x51\x2d\x56\x88\x8e\xdf\x3c\xad\x60\xe9\xb6\x04\x08\x84\xef\x06\x0d\x1a\x1a\xaf\xdb\xb9\xbd\xec\x70\x0e\x18\x13\xcb\xec\xfc\x66\x2e\x46\x55\x5c\x4f\xb1\xc5\x90\xd5\x83\xd4\xaf\xb2\xe3\x25\x6d\xcf\x83\x59\x99\xfb\x26\x8a\x26\xf9\x0e\x4d\xfc\xbd\xe1\x20\xd7\x8d\xe3\xd4\xc1\x99\x29\xbf\x03\xea\x34\x63\x21\xd9\xd7\x6f\xd2\x14\x2a\x2c\x2e\x9a\x14\xc7\xd4\x3d\xcf\x28\x96\x42\x5e\x83\xc4\x0d\xee\xf6\x1d\x69\x6a\x7a\x8c\xd9\x6b\x80\xa7\x54\xac\x8a\x3f\x50\x78\xf5\x5a\x0c\x41\x8b\xf9\xcd\xf1\x1d\x5a\x1a\x6a\x39\xa8\x9e\x72\x1a\xe9\xcf\x5f\xbb\x51\x11\xf4\x44\xbc\xcb\xea\xcf\xdf\xd3\x2d\xef\x54\x3c\xb5\x16\x02\x1f\x2b\x08\x66\x26\xd7\x81\xc8\x7d\x61\xf7\x58\x15\x0d\x88\x59\x8c\x69\x0f\xbf\xad\xa3\x1a\x84\xfb\x3b\x87\x32\x16\x46\x8e\x1c\x95\xd2\x61\x72\x60\xf3\x12\x1e\x7d\xe2\x82\x73\x56\x65\xf1\x25\x7d\x66\x6a\xb2\xa9\xac\x51\x53\xe9\x46\xf7\x28\x92\x88\x5e\x8b\x30\x87\xd7\x3c\x6f\xeb\x74\x1f\x1f\x23\xab\xcd\x6f\xf5\x5b\x0f\x29\x0b\x31\x9f\x54\xa2\x7e\x2f\xfc\xea\xeb\x0a\x76\xc4\xa1\xd4\x6a\x17\x4b\xe1\x2b\xa7\x65\x40\xb6\x49\xf4\x2c\x86\x9e\xd5\x66\x2f\x88\xb8\x7c\xba\x98\xfb\x83\x2d\x47\x0e\x15\x46\xeb\xca\x34\xe2\x23\x8b\xf8\x13\x0c\x1a\x2c\x0e\x08\x79\x7a\x48\x51\x5f\x07\x32\xb2\xa3\x40\x7d\xfa\x0b\xd3\x15\xc7\xd6\x16\xc6\x35\xec\x46\x6f\xfa\xf1\x7b\xb4\xf6\x85\x7b\xf0\x78\x75\x21\xda\xb5\xa2\x92\x3e\x2f\x1e\x62\xb4\xd8\x22\x2d\x94\x2a\x82\x8d\x47\x57\xea\x2a\x36\xf5\x98\xc3\x3b\x64\x80\xf2\x35\x28\xab\x07\xc9\xe4\x22\xff\x2f\x6f\xa8\x26\xb2\x60\x07\x0c\xab\x81\x93\x4a\x0a\xf6\x31\xbf\xfb\xe4\x84\x4e\xde\x62\x3e\x31\x03\x07\x94\xb2\x84\xe0\xd1\xd4\x6d\x1a\xf4\xcb\x63\x08\x3b\x24\x99\x48\xf5\xe7\x5e\x7e\x5e\xb5\xba\x60\xb1\x7f\x48\xf8\x95\xb5\xe9\x54\xca\xc1\xe9\x26\x41\x4e\x27\xb7\xcd\x38\x73\x4a\x32\x18\x81\xb2\x35\xd4\x91\x9f\xbd\x86\x82\x4a\x1d\x71\x07\xa6\xbd\x19\x21\x0a\x52\x8f\xd5\xa9\x05\xb4\xe2\x9f\x14\x84\xa9\x59\x5c\xd4\x15\xa5\xbd\xfc\xec\xac\xe5\x0d\x88\xf0\x62\x21\x0f\xfd\x91\x0a\x9f\x5e\xaf\x0f\xca\x9e\xc9\x48\x23\xd6\xef\xcf\xdf\x66\xcb\x83\x86\x7d\xdb\x25\x51\x9b\xff\xff\x14\xd4\x8d\x8d\xaa\x00\xc5\x31\x9c\x8d\xc9\x99\x37\xa9\x12\xc1\x73\x77\xdc\xa9\xa1\x6b\x2e\xf1\x81\x4b\x1f\x5e\x58\x91\x10\x1a\x9f\x81\x1e\xaf\xa6\xdd\xcc\xd4\xdf\x53\x06\x12\x75\xfe\xbf\x97\xc8\x37\xee\x12\x8e\xb1\x67\x38\x3a\xff\xdb\xc7\x6a\x5b\x0c\xc0\x16\x01\xd4\xaf\xbe\x57\xe9\xec\x1c\x8c\xf8\x12\x23\x3c\x7c\xf8\xbd\xf0\x47\x8b\x16\x03\x1a\x60\x99\x86\xa3\xa6\x0e\x66\xa0\x88\x00\xe0\xa8\xdf\x3d\xaf\x93\xde\x3d\xe1\x9d\xf4\x93\xad\xda\x8c\x1f\x48\xe6\xd0\x7e\x3d\x58\x8e\x65\x32\x1d\x87\x51\x50\x23\xcd\x8d\xd5\x64\xba\x6b\xb8\xe1\x73\xf5\xa3\xc2\xa7\x1f\x49\xbf\xa7\x5a\xd0\x42\xc4\x97\xae\x88\x4b\x1e\x1b\xa3\x8c\x79\x58\x74\x11\xd8\x25\x50\xae\xed\x1a\x3f\x49\xbc\x41\xd7\x67\x81\x97\x6d\x79\xbe\xc8\xc6\x70\x03\x8b\x3a\xe9\xc5\x16\x38\x58\x70\xfd\xe3\xd3\x0f\x6b\x49\x04\x11\x30\x62\x94\x88\x32\xff\x31\x75\x7b\x5c\x11\x74\xa4\x52\x78\xd9\x93\x43\x45\x45\x8e\xeb\x24\x80\xef\x76\xe3\x41\x39\xff\x75\x61\x72\xf7\xd6\x6b\xe9\x3b\xde\x24\xae\x89\xdd\x3e\x9a\xde\xc4\xe4\xb6\xec\xd1\x57\xa6\x5c\x44\x46\x48\x35\x4c\x54\x10\xdf\x14\xae\x95\x3e\xbe\x7e\xce\x91\x83\x4a\xc2\xa2\xce\x02\xf1\xd1\xd8\x1d\x8f\x48\xac\x51\x4b\xc5\x20\x2f\x3b\xc8\x1f\xd9\x35\xae\x8f\x1d\x0f\x65\x1e\x99\x71\xfa\x1d\x39\x1f\x72\x82\xa8\x38\xcb\xa0\xa8\xfa\x0b\x93\x3b\xc4\x7c\x88\x06\x0d\xae\x76\x70\xf3\xe5\xe3\xb5\x7c\xc6\x70\x67\x2c\x05\x71\xde\x40\xfe\xd7\x1d\xdc\xe4\x5e\xed\xf9\xc7\x16\xa4\xef\xc7\xfc\xce\x6e\x31\xfd\x79\x53\x13\xa2\xc4\x62\xbf\x11\x75\x12\x47\x06\x0f\x16\x35\x9b\xc9\x87\x14\xf7\x0e\x17\xfa\x6a\x1c\x6a\xad\xdf\xa5\x5f\x97\x33\x12\x3e\x4d\x22\x69\x8c\xb9\xf5\xf7\x75\x68\x31\x8a\x79\xb4\x52\xe1\xa5\x44\xfc\xc4\x3e\x35\x25\xa3\xa6\xd0\xc0\x62\x14\xb5\xfc\x99\xf4\x2f\x98\x33\xbb\x6b\x5e\xd7\xec\xc5\x5d\x5d\x42\x11\xf2\x03\x4a\x70\x04\xcf\x76\x1f\xb3\x7a\xb1\x14\xbe\x36\x5b\x83\xa1\xb9\x35\xc4\x50\x94\xa5\xc4\x04\xfc\x86\x3d\x82\x39\x12\x6c\x09\x54\xae\xcb\xe7\xf6\xcb\xf2\xa5\x65\x53\x39\x53\x78\x40\xd9\x98\xce\x59\x3c\x1f\xc8\x36\xdf\x7c\x48\xb1\xca\xc2\x8e\x49\xf9\xbe\x22\xd7\xb9\x6e\x78\x1c\x7f\x2c\x12\x5b\x9d\xff\x60\x85\xec\x6a\x9b\xa4\x66\x33\xda\x2c\x96\xc2\x87\x8f\x68\xd0\x34\x8c\xbc\x80\xc5\x56\x0a\xf9\xdf\x8b\x95\xb3\xcf\xa0\x41\x81\xe8\xf9\xe3\x8d\xd9\xa5\xac\xc7\x3b\xb1\x93\x2b\xd2\x41\xe0\x92\x45\xdd\xf1\xfa\xf2\xb6\x15\x72\x1d\x1c\x35\xc1\x40\x6f\x88\xef\xc9\x90\x9b\x12\xf0\x40\xa3\x92\x95\x50\x59\x5b\xd6\xd5\x66\x91\x2f\x66\xf2\x85\x1d\x77\x66\xd4\x94\x4c\x5b\x5c\xb0\x97\xce\x64\x53\x17\x04\xb0\x6f\xdd\xa7\x78\x6e\xcd\x83\xa1\x2c\x68\xb2\xed\x4f\x67\xa2\x1a\x43\x15\x5f\x13\x2a\xba\xf4\xc6\x8c\x47\xb4\x45\xeb\xf1\x86\xe0\x1b\xdb\x54\x29\x17\xab\x8a\x41\x44\x36\x5f\xb1\x75\xb1\x32\x62\xda\xc2\x22\xfb\xda\x0d\xaa\x65\x35\x31\x31\xa0\x8c\x6c\x68\xb9\xc2\x37\xb7\xa7\x44\x1b\xbc\x80\xdf\xfe\xab\xb4\x5e\xb9\x49\x89\x19\x6b\x18\xe6\x26\x68\xca\x68\x28\x6a\x6f\x1b\x7c\x38\xb2\xfa\xf0\xa8\x6c\x37\x55\xea\x37\x3e\xfb\x50\xfa\xba\xb6\x10\xe3\x59\x3c\xf7\xd5\xa3\x02\xd7\x12\x94\x31\x53\xdf\xd9\xef\x35\xdd\x0d\x0b\x05\x60\x13\x25\x6e\xce\x75\x4f\x5e\xa4\x08\x80\xf4\x60\xcf\x6f\x83\xe3\x6d\xfa\xcd\xde\x7f\xcb\xe8\xd4\x08\x04\x3b\xa2\x0b\x6e\xdd\x9c\xbe\xb9\xa4\x89\xdc\x1a\x6d\xaa\x76\x6f\xe1\x27\x9e\x4d\x7f\xe8\xee\x45\x42\x82\xf8\x53\x5d\x7a\xe5\xc9\x02\xb3\x26\x14\xf4\xc6\x85\xda\x64\xba\xe5\xc6\xbc\xf0\xfc\x9f\xfe\x9a\x94\x2c\x2d\x3e\xc6\x68\xee\x12\x65\xa3\x5b\x66\xb4\xc6\x47\xe5\xff\x58\x80\x79\x83\x83\xdd\xe2\xc2\xe4\xd3\xfc\xed\x55\xad\x7a\xc6\x51\xcd\x51\x4e\x24\x99\x1e\x10\xc8\xd9\xa5\x02\x19\x9c\x50\x70\x77\xa6\x23\x45\xd4\x2f\xd3\x06\xb6\x60\xd6\x03\x70\xef\x8a\x02\xe5\xa0\x94\xa9\xb6\x90\x85\x8d\xaf\x09\x9c\x21\x10\x86\xf8\x90\x23\x5f\x79\x6a\x8c\x72\x68\xea\x0d\x24\x08\x34\xfd\x06\xea\xd1\x10\x2b\x8c\xb8\x26\x69\x38\x89\x8d\xbe\xd1\x6a\x0e\x17\x8d\x06\x83\x74\x0b\x09\x7a\xc7\xdd\xa3\x55\xd2\x92\x19\x78\x7c\xde\x3c\xe3\x21\xa5\xf0\x6f\x50\xd7\x13\xce\x72\xdb\x06\xa9\x77\x1d\xa9\x12\xfe\xfd\xb9\x97\x15\x25\xa5\x44\xd5\x98\xa3\xd5\x72\xb7\x28\xa6\xbd\x29\xc1\xe3\x2b\x86\xab\x64\x2a\xdf\x2e\x96\xc2\xef\x6e\xd2\x68\xc1\x71\xd4\x2f\xdc\xda\x37\x44\x1e\xf0\xa8\x86\xba\xe3\x26\xf9\xf9\xd3\x62\x56\x53\x65\xd9\xe5\x47\x99\x55\xbe\x97\x07\x1f\x92\x7d\x2d\x88\x3e\x83\x1d\xc5\xc6\xe5\x83\x44\xd0\x00\x9c\xfe\xd5\x5b\xa5\x8a\xf3\xdc\x79\xd1\x4f\xdc\xb2\x81\xb7\x81\xf5\x00\xc4\x54\x56\x6b\x1a\x73\xa8\x21\x30\x25\xbc\x44\x35\x2e\x78\x3e\xd9\x26\x10\x96\x99\x11\x15\xb6\xac\xe5\x3f\x8d\x43\x3b\xc3\xb7\x9e\xd0\x46\x64\x55\x00\xa0\x70\x5a\xca\x01\x6d\xc2\xda\x14\x40\x18\x31\x2b\xd1\xbb\x96\x16\x72\x9c\x32\x45\x4c\x78\xa9\xe4\x67\x55\xe4\xd2\x85\x50\xc8\x9e\xcd\xcd\x0a\x34\x55\xd1\x11\x36\xb6\xc6\x60\x32\xfe\x95\x37\x8f\x50\xc5\x83\xc5\x99\x19\x77\x9f\x8c\x34\x3d\x01\x4b\x9c\xdb\xde\xd0\x19\xef\x80\xa0\x86\x8f\x70\xe5\x6c\x99\xe2\x18\x31\x21\x3a\x2e\xd9\xc4\xab\xb1\x16\x65\x31\xc6\xf9\x93\xaf\x68\x06\x5f\x0c\xb9\x1e\xd4\x93\x7a\x74\xb9\xef\xa6\x91\x4a\x76\x8e\xc5\xcb\xf3\xf7\xdc\x92\xdc\xf2\x2e\x10\xd5\xc9\x5d\xb2\x2a\xa3\x59\x80\x84\x8a\x48\xee\xfd\x4f\x27\xaf\xc8\x07\x9b\x82\x74\x85\x76\xbd\x62\xf9\xdb\x83\xcc\x1a\xa8\x88\x86\x6f\xbd\xac\x6a\x02\x79\x38\x36\x3e\x30\xbe\x7c\xb9\xba\xc9\xf6\xa2\x78\x07\xa9\x27\xbf\x33\x33\x92\x06\x92\x2c\xaf\xc5\x7f\x36\x52\x48\xde\x4a\xca\x0b\xef\xf4\xaf\x5e\x21\xf7\x34\x38\xa6\xb4\xe7\x2e\x9f\x28\x51\xe0\x3e\x27\x03\x2e\x91\xbf\x96\x76\xda\x9d\x5e\x67\x00\x37\xee\xe8\x0e\xf9\xe5\xb2\x2a\xdc\xc6\xd0\xb7\x86\x8b\x96\x12\x55\xab\xb1\xf6\xfb\xbe\x99\xf2\xcc\x7a\x76\xa6\x26\x1b\x16\x2a\xf2\xa8\xc4\xe4\xf5\x60\xe1\xe2\x37\x04\xa3\x06\x56\x02\xe9\x47\xf8\xe2\x2a\xa5\xdd\x45\x26\x2e\x7a\xa8\x29\x2e\x68\x7b\xab\x56\x75\xb6\xa3\xec\x08\xc0\xf3\x70\xf5\x2e\xbd\x6e\x23\x8d\x58\x0d\xe8\xc2\x4d\xca\x5b\xa1\x24\x36\x6f\x78\xfb\x11\x6d\x6f\xa4\xb8\x1f\x7c\xff\xf5\x89\x92\xd1\xa1\xfb\x99\xf6\x1b\x63\x1b\xc9\x33\x5d\xbc\x78\x6e\xb1\x14\xce\x3b\x9c\xc6\xe8\x71\xc4\xda\xb1\x1b\x47\x2a\xdd\x9d\x90\x30\xe9\xcf\xd5\x7a\xb5\x66\x0a\xd5\x05\x73\x25\x77\xb9\x9d\xbe\x98\x6e\xc2\xd7\xe6\x63\x97\xcd\x37\xc9\x1d\x07\xae\x56\x21\x8d\xff\xc7\xe5\x13\x65\x6b\x9d\x3d\x93\xff\xf4\xae\x18\x20\xf6\x46\x77\x03\xf3\x85\x9f\x71\xfa\x49\xf9\xd1\x2a\x08\xb6\x7d\xd1\x1f\x5f\xbc\x63\x6c\x72\xe8\x68\x8a\xea\x34\x7b\x9d\xa2\x38\x14\xb8\x65\xec\x40\x8a\xf8\xb5\x26\x74\xe1\xa3\x18\x5e\xd0\xd6\xe0\x7a\x65\x12\xa5\x73\xe8\x55\x8f\x4c\x1c\xaf\x22\x97\xb9\x03\x5e\xec\x30\x9f\x5b\x35\x4a\x9a\x22\x2b\x2d\xda\xe7\x0f\x29\x1f\x80\xab\x13\x82\xfa\x52\xaf\xb2\x4f\x6f\x5b\x0c\xe4\x29\x26\x6a\x92\xd3\x36\x8a\xfe\x07\x9f\x1e\x3c\x35\x55\x43\x55\xb5\x10\x57\x25\x85\x06\x35\x1c\xb4\x28\x83\x7b\x6f\xe2\x18\x66\x6b\xdc\xae\xeb\x99\x50\xb7\x49\x81\x83\x11\xf6\x6a\x3c\xbc\xc0\x0b\x84\x11\x73\xa9\xdf\xf8\xc6\xad\xc9\x81\xa9\x41\x05\x6e\x2c\xb6\xd3\x4d\x23\x0e\xce\x69\xda\x7c\x43\x43\x4f\xd2\xd4\x0a\x4c\xe1\x3b\x03\xdf\xe7\x07\xbd\xda\x16\x83\xf8\x6e\xcc\x2f\x8f\xf2\xf2\x8f\xce\x4a\x32\xb6\x8b\x6a\x36\xa9\xd3\x26\xf1\x4d\x75\x02\xfd\xf6\xab\x1a\x4a\x04\x37\x02\x41\xe8\xc8\xff\xd1\xd0\x06\x9e\xc8\x41\x6d\x8f\x20\x8d\x9c\x78\x85\x50\x12\xf7\xdb\x26\x05\xd0\xe9\xd0\x41\xe9\xc7\x51\xc5\x9e\x1f\x08\xc9\x54\xe3\xed\xe9\x8a\xf4\xb3\xcd\x88\xe7\x13\xa1\x69\xd2\x78\x56\xd3\x7a\xaa\x63\x06\x3e\xf0\xf1\x8c\xea\x93\x67\xe4\xfb\x06\xf7\xaf\x62\x29\xfc\xf9\xe0\x8c\x69\x91\x17\x38\x60\xbf\xc6\x37\xd8\x1f\xe8\x93\x67\x87\x1b\x3a\x80\x89\x73\xf5\x88\xb2\x75\x69\xd7\x1b\x36\xdf\x59\x18\x0b\xed\x34\x32\xc6\xc5\xd1\x05\x01\xf6\x1f\xc7\x70\x42\x60\xfd\xf4\x3d\xf2\x4b\xf8\xd8\xc1\x89\x57\x43\xe1\x13\xfb\x12\x31\x10\x5e\x47\x48\xe8\xcf\xf5\x37\xca\xf0\x16\xb8\x95\xc0\xa9\x90\xb8\xca\x35\xee\x1e\xa9\x0e\xab\x85\x20\x86\x31\x89\xbf\x9c\xe2\x52\xc7\xa3\x55\xc4\x6d\x4f\xe3\x8a\x6f\xc5\x41\x9e\x10\x57\x40\x42\xe3\x2a\x44\x92\xf4\x83\x5a\xd1\xc3\xd9\x72\x64\x84\x8a\xb5\xa3\x0e\x68\xe0\x0c\x09\x75\x6c\x21\x27\x78\xc6\x1b\x80\xef\x17\x34\xbd\x32\x78\x9e\xa9\x99\xc9\x8f\x96\x29\x94\x61\xf0\xe2\x0f\xb0\x54\x30\x0d\x77\x8e\xbe\xd8\x55\x36\xe9\xc4\x73\x10\xc8\xec\xe8\x53\x1b\x5f\xe3\xf6\xd3\x06\x66\x9c\x19\x0e\x2d\xc7\x07\x3a\x34\xe9\x35\x1a\x05\x7d\x21\x1f\xbf\xe0\x51\xf9\x02\x2b\xd8\xb1\xca\x08\x66\x34\xc6\x99\x17\x24\x6c\x03\x05\xbe\x4d\x05\x4e\x5b\x94\x1d\xa7\x9a\x1a\x52\x0c\x36\x8f\xa2\xcd\xcf\x0f\x1d\xa9\x4c\x9e\xb1\x43\x70\x05\x90\x7c\x2a\x40\xdd\xa1\xbe\x4d\x78\xae\xbe\x6d\xf7\x54\x75\x7e\x0e\xfb\x80\x73\x80\x4c\xcb\x8f\x6a\xd1\xc1\x65\xd8\x13\xdc\x6c\x63\xc7\xa3\x1a\x7c\x12\xda\x3e\xe1\x9d\x95\xff\x83\xa8\x60\x2b\x0e\xf2\x40\x6e\xbd\x60\xbc\xa1\xf1\xe2\xdc\x2a\x71\x71\x94\x92\xe3\x15\xe9\x75\x27\x35\xce\x32\x25\x49\x71\x68\x8c\xda\x25\x0b\xd5\x2e\xc0\x00\xae\xde\xa8\xac\x93\xb8\x0d\xba\x7c\x91\x27\x15\xe6\xd3\x39\x94\x20\xcd\x47\x94\x2e\x12\xb1\x9a\xcb\x49\x65\xf9\x5b\xb6\x2b\xfb\x38\x5f\x31\x5c\xb9\xe3\x5e\x35\xf5\x38\x2d\x0c\x27\x32\x77\xab\x33\x42\x89\x53\x75\x21\x12\xb3\x2b\xa6\xe3\x81\x3d\x29\x14\xf0\x3f\x1e\x90\xfe\x6e\xc4\x05\x62\x12\x7f\x58\x93\x5e\x1e\xa3\xec\x6d\x3c\x44\x1c\xe4\x42\x11\xb6\xec\xbe\xb4\x15\x4e\xca\xff\xf6\x1c\xfa\x51\x85\x2d\xbb\xf8\xdd\xaa\x90\xaa\xb0\x96\xce\x1f\x5f\x34\x56\x99\x12\x6e\x09\x08\xc3\x31\x0f\xf7\xf5\x5d\x7a\x4e\x37\x6b\xfc\x04\x17\x6e\xec\x9e\xa8\x54\x79\x75\x5c\x2f\xab\x9a\x24\xb9\xeb\xb8\x44\x5b\xf1\x3a\x3e\xb0\xd6\xf5\x80\xc2\xcb\x0b\x7c\x3d\xb8\xb6\xf3\x23\x9d\x6b\xb3\x66\x92\x53\x2f\x52\x7a\x66\xa1\xe4\x59\xc4\xe0\x62\x2d\xa7\x5a\x3f\xbd\x62\x48\xf2\x14\xf9\x4e\xce\xd0\x4c\x87\xa8\x4b\x59\x92\xe5\x96\xdf\x9b\xd4\xc4\x15\x82\x8b\xa5\x30\x98\xc7\x9f\x05\x70\xcb\x81\x51\x6a\x8c\xd0\x34\xf7\xb8\x66\x62\x14\x6f\x65\xdb\xf4\xc1\xf1\xda\xf2\x23\x21\x69\x79\x88\x58\x09\x98\xfd\xf1\xd9\xba\xf6\x03\x05\x4f\x27\x01\x25\xea\x5d\x95\x81\x83\xf8\xc4\x0d\x62\x55\xa0\x9c\xa1\x68\x21\xfa\x36\x71\xab\x9c\xcb\xf3\xbc\xa3\x2e\xb6\xc0\x4d\x17\x32\xcc\x7f\x3c\xa3\xfa\x4c\x11\x07\xc3\x95\xea\x11\x8e\xda\x82\x8f\x62\x7c\x7d\xef\xe0\xf8\x80\x72\x15\xc5\x5b\xa6\x2b\x6a\xb5\xd4\x52\xc4\xc1\x72\x1b\x77\xcb\x85\x68\x85\x11\x53\xe8\x66\xf0\xd1\xde\x83\x53\xf4\x47\x80\xdd\xaa\x6f\x63\x37\x79\xda\xdf\x9b\x06\x7f\xa5\x78\x95\x34\x14\xd2\x6b\xb8\x05\xa7\xd3\x5a\x8a\xb1\x71\xe3\x39\x2a\x86\xdc\xaf\xf7\x28\xca\x06\x8c\x92\x1a\x2a\x96\x42\x53\xf1\xd1\xaf\x22\xd0\xb7\x81\x1c\xf6\xcd\xfb\x27\x69\x61\x09\x55\x2a\xdc\xe5\x86\xef\xad\x3f\x76\xaf\x40\x2f\x35\xa2\x16\x1c\x2e\xf6\x5b\xef\x26\xa7\xc3\x0a\xca\xc5\x52\xf8\x95\xfd\x7a\x17\x67\xd6\xc4\xbc\xe2\x07\xb7\x27\xb0\x0b\xd7\xc5\xe0\x4a\x66\x3c\xd5\xd4\xad\xc7\x40\x11\x97\xcb\xdc\xc2\x8e\xe0\xef\x0e\xf2\xf1\xc8\x32\x16\x98\xea\x3c\x74\x87\x2a\x0a\x16\xb8\xb5\xb8\xbd\xfc\xf0\x72\x1d\xaa\x52\x27\xbe\xb0\xcd\xc9\xed\x1b\x29\xff\x91\xdf\xa2\xb0\xbb\x2b\x96\xc2\x93\x1b\xd2\x67\xd3\xc6\xcc\x45\xae\x85\xfb\x54\x58\x79\x7f\x61\xa3\x20\xa9\x2e\xa3\x8e\x67\xe3\x26\x01\x1a\xed\xd7\x1f\x51\x76\x2d\x41\xbd\x8e\x79\x06\x2f\xdc\xf2\x82\x04\xdb\x00\x91\x45\xcf\x75\x4b\x46\x6b\xb3\x28\xb8\x06\x7c\x6e\x9e\xeb\xea\xe2\x8f\x7a\xf5\x55\x57\x2f\x5d\x73\xe3\xd2\xe8\x07\xf6\xa9\x54\xc1\x06\xc6\x16\xec\x7a\x17\x9e\x18\x95\xfa\x29\x9b\x05\xdb\x62\xb5\x06\x15\x26\x4c\x97\xe9\xfb\x7f\x1a\xdf\xa8\x49\x1d\xea\xd9\xc4\x85\xf5\x8b\x08\xf7\xe5\xe3\x3a\x38\xcb\xc1\x55\xe4\xc7\x7b\xb4\x66\x59\xe3\xd6\xdb\x88\x93\x2d\xc2\xd7\xa7\xf3\x55\x53\xe9\x5a\xe8\x64\xce\x8c\x51\x3f\xba\xe9\x23\x93\xd3\x7d\x72\xc3\x17\x25\xd5\x51\x06\x1c\xfb\x84\xb0\x94\x45\x48\xf1\x73\x2c\x14\x2f\x57\x0c\xa4\xa8\x63\x11\xd1\x7d\xe6\xc2\xdd\xd9\xb1\x4f\x54\xf1\x85\x93\x9e\x96\x4d\x2f\xef\x92\x1e\x7c\x51\x19\x2e\xa2\x06\x08\x62\xc1\xb4\xb3\x57\x9b\xca\xc4\xf8\xa4\x4e\x3e\xab\x2b\x7c\x6a\x9d\x0e\xdb\x32\xa3\xff\x29\x46\x64\x9f\xbe\x5f\x93\x22\x40\x2c\xea\x2f\x3d\x51\xae\x1a\x5f\x51\xd6\xd8\x42\x0a\xa9\xd4\x6f\xdc\x71\x85\x88\x36\x20\x37\x1e\xce\xdc\xa6\x3d\x72\xd2\xd7\xd7\x96\xfe\x59\xdb\x8f\xf2\x58\xb4\xb4\xca\x50\xbd\x58\x0a\x77\x55\xc4\x52\x0a\xb1\x18\x82\x77\xf1\xed\xba\x77\x3e\xaa\x12\x17\xb1\x76\x5c\x10\xd8\x8a\x04\xb3\x15\x08\x37\xbb\x99\x4c\x13\x5a\xb7\x91\x0b\xce\xf9\xe2\x44\x9e\xff\xaa\xcc\x77\x1e\x6e\x62\xb7\x58\xa7\x2e\x48\xa1\x15\x06\x1e\x49\x15\xab\x0d\x01\x0a\x7a\x5e\x51\x30\x80\x05\x5c\x29\x2c\x6c\x9a\x98\x39\x30\x20\x7a\xc8\x47\xa1\x33\x0e\xc8\x73\x52\xa6\xbd\x02\x6d\x1d\xfd\x8a\x6b\x77\x2b\x2a\x68\xb4\xc1\x57\xd5\xd1\x3f\x79\xf9\x0a\x89\xbd\xab\x80\x4b\x86\x3c\x2a\x9f\xd1\x74\x76\x7d\x86\x31\x30\x45\x64\xd1\xbc\xe3\x0a\xad\x87\xc3\x52\x6a\xf6\x5d\xe9\x81\xe9\x72\xb9\xe7\xda\xdd\xf2\x19\xb4\x91\x5b\xc3\x0e\x6d\x12\xde\x7a\x4e\xb2\x46\xcb\x34\xe9\x2a\x95\xf1\x2f\x17\x24\x11\xb2\x61\x43\x95\xf8\xf5\xd9\xe7\xc0\xb3\x79\xe2\x84\x9d\xb7\x43\xa7\xdc\x02\x48\x51\xec\x2d\xae\x3e\x3d\x56\xea\x4d\xab\xca\x82\xfd\xf9\x67\x56\x4c\xd3\x23\x69\xa3\x33\xba\x8c\x7a\xf5\x39\xa0\x99\x69\x90\x4c\xce\x93\x14\x0c\xe6\xf3\x1f\xce\x9c\x04\xa2\x0c\x0c\xf3\x73\xb4\x26\xb3\x1c\x95\x37\x0e\x01\x1b\x28\xd8\xef\x3f\x79\xf4\x62\xed\x1e\xf0\x12\x36\x3a\x7e\xca\x14\x61\x66\xa7\xbe\x47\x4e\x58\x42\xbf\x59\x92\x3e\x27\x15\x0c\x1e\x6f\x31\x28\xf4\x9f\x9f\xd4\x45\x7e\x1c\xa1\x09\x90\xfb\xce\x7d\x63\x94\x3d\x4b\x5b\x52\x4b\x0c\x5f\x83\x5c\x7a\xd4\x24\x49\x53\x9e\xdb\xdb\x21\x99\xd9\x01\x29\x96\xc2\x8f\x6a\xc8\x7f\x8b\x9a\x8a\x44\xd5\xcf\x9e\x13\xa5\xa8\x4d\x62\x8f\xc2\xfc\x6f\x2d\xd5\x7e\x05\x5b\xc4\xe1\x66\xb9\x51\xdf\xdd\xa7\x34\x97\x3e\x62\xf1\x14\x6b\xfb\x73\x7c\x1e\x63\x45\x9d\x42\x54\xad\xc1\x55\xbc\xfd\x09\x5d\x3c\xd6\xf5\x12\xc1\x9d\x59\x4b\x62\x65\x37\x5c\xe1\x82\x94\x58\xf3\x25\x8a\x91\x1a\xc2\x0c\x2c\xfc\xe3\x65\xe9\xc0\x58\x76\x68\x0b\xe6\x64\x3f\x5f\x92\x6e\x6d\x05\x82\xc0\xf2\xd5\x83\x55\x78\xef\x56\x1e\x61\xe6\x74\x17\x3d\x1f\x43\x91\xf6\xe0\xeb\x7a\xd6\x76\x45\x4d\x1f\xef\x7d\xaf\x55\xd6\x37\x0c\xfb\x88\x38\xe2\x1b\x1f\x53\x62\x60\x23\x6a\xdf\xa0\xf9\x7e\x78\x47\x5a\x5a\xbc\xde\xf0\x8b\xa5\xf0\x92\x17\x2e\xd2\x9e\x03\xab\x06\x98\xa4\xa5\xfb\x97\xbd\xae\x6d\x72\x19\x75\x7b\x79\xf3\x2a\xbf\xc3\x47\xd6\x29\x01\xdf\x41\xc4\xf5\x49\x25\xea\xe4\x8c\x69\x9d\x9a\x9a\x96\x90\xc6\xd5\x87\x7c\x6f\x1d\x90\x08\x41\x9f\xf8\x81\x80\x8e\xe5\x3f\xb7\x2a\x4d\x3a\xae\x23\xe6\x13\xf7\x92\x73\x76\x11\xb9\xaf\xdc\x20\xc3\x47\x0b\x31\x6c\xd3\x40\x10\xd3\x0b\x23\x32\x97\x92\x5b\xb0\x8a\x98\x1d\x76\x18\xb2\x29\xf3\x4c\x1a\xf8\xea\xd7\xcb\xff\xfa\x6d\x19\x69\x69\x23\x7a\xa4\xe1\x9b\x2f\x8f\x4d\xab\x43\x22\x33\x56\x6d\xfc\xfc\x8b\xfc\xec\x52\x56\x45\x2e\xe9\x83\x58\xed\x6c\x97\x0d\x97\xcd\x61\xa9\xa5\xf0\x93\x27\x25\x20\x80\xb8\x15\xea\x45\xd5\x92\xfe\x64\xee\xbb\x39\x1d\x77\x2c\x16\x54\xcf\x69\x27\x3a\x7c\x97\xd6\xbc\x33\x82\xdd\x98\x54\xb9\xdf\x50\xbc\x46\x09\x97\x18\x89\x79\xdf\x76\x8f\xba\x0a\x24\x75\xca\xbc\x5a\xd4\xfb\x4d\xf7\xb5\x72\xba\x81\x5c\xe2\x71\xda\x11\xff\x97\x6f\x16\x32\x5b\xad\x3a\xe6\x78\x2a\xd1\x6e\x9c\x77\xcf\x68\xe5\xc9\x81\x15\x1e\xef\x18\x0e\xef\xd1\x1a\x8d\xe8\x9f\xa2\x58\x66\x3c\xbc\xba\x47\xe3\xa9\x11\xcf\xa7\x62\xfc\xfc\xc8\x65\x52\xb4\x0c\xab\xf9\x68\xfd\x9d\x0a\xed\xcc\x05\xad\x31\x00\x8e\xf5\xe7\x8e\xbe\x73\xb1\x16\x52\x59\xdb\xb3\x5d\x52\xa3\x4d\x65\xcc\x12\x3e\x7e\x9e\xb6\x34\x72\x5d\xac\xae\x72\xbe\xf7\x8c\x92\x0c\x91\x89\xa3\xdf\x00\xff\xbf\xd4\x6f\x5c\x53\xd0\xc6\xa0\x18\x3b\x71\x3c\x7d\xcf\x0a\x6d\x42\x10\x00\xba\x8f\xeb\x17\x5c\xfc\x24\x3f\x2e\x73\xe6\x74\x2d\xee\x9c\x3f\x1f\x52\xc4\x90\x99\xb1\x49\x31\x66\xb0\xc8\x36\xf6\x5e\xce\xf1\x18\x57\x21\xef\x1c\xfb\x82\x02\x51\x00\x09\x35\x86\x7a\x88\x89\xa1\x7a\x1e\xea\xe8\x92\x24\xae\x36\x59\x5a\x36\x5c\xe2\x59\x6a\xea\x1e\xee\xde\xad\x23\x15\x92\x97\xd5\xc2\x1e\xd4\x10\x8b\x4e\xc9\x83\x2f\xca\x37\xa1\xc3\x3c\x77\x7f\xf2\x93\xda\xaa\x3b\xa0\xf1\xb7\xbd\x19\x35\xef\x28\x37\x44\x65\x2e\x20\x47\xcd\x55\xba\xd4\x6c\x03\x23\x1f\xb4\x83\xa2\xfe\xf9\x84\xaf\x8d\xcf\x02\xd3\xc4\xd8\x8a\x25\x5f\x0a\x0b\x86\x0e\x11\x01\xb4\x73\x3e\x90\x02\x72\xef\x48\xaa\x29\x71\xb2\x53\xb0\xb5\xaf\x27\x59\xde\x27\xa6\x1a\x8c\x73\x53\xde\xd1\xf5\x19\x84\x15\x72\x2c\x3c\x7a\xe5\xfd\x62\x31\x08\x80\x80\xf0\xbb\x7d\xbc\x65\x41\x15\x1f\x33\xee\x2d\xde\x9f\x9f\xf1\x8e\x5e\xb6\x63\xae\xbc\x11\x9e\xff\x36\xcf\x47\x1b\x6c\x85\xb1\x75\xdb\x63\x8a\x0e\xb2\x43\x5b\x0e\x70\xe6\x0c\xff\xfe\xcc\x06\x13\xa9\x2e\x5a\xab\x9e\x4d\x9f\x69\x9b\xf2\xcd\x86\x1e\x15\xaf\x91\x2d\x24\xa3\xd1\xbd\xfe\x6e\x97\x20\x93\xd6\xb1\x6b\xc5\x9b\x80\x61\x33\xf4\xd1\x1f\xab\x8b\xd1\x5f\x78\xcd\xad\xb1\x54\x3e\x72\x61\x20\x91\xbf\x4d\x38\xbd\x56\x10\xab\x8b\xc4\xf3\xa8\x3f\x34\xee\xd1\x1a\x35\xde\xcf\x3e\xfb\x80\xb0\xe6\x45\x30\x6b\x29\xf5\xe7\x7f\x7a\x23\x3f\xeb\xd7\x52\xd9\x16\x8f\x79\xf1\x42\xad\x8a\x0c\x7a\x88\xe3\x50\xe5\xe2\xe5\xbc\xb7\xf8\x73\x5b\x87\x9b\xd4\x09\x04\xb0\x26\xf7\xf5\xa3\x9a\x23\x07\x2a\x3b\xb1\x2c\xd9\xa0\x57\xb2\x01\x1f\x33\xa8\x48\xa0\x55\xcd\xd7\x76\x48\xae\x40\x22\x3e\x96\x19\xf9\xdc\x71\x4a\x23\x43\x23\x07\x8c\x8b\x08\x72\x05\x63\x2b\xf7\xf2\x43\xe7\xb6\x19\xea\x4b\x6e\xf8\xcc\xe3\x8a\x25\x0b\x01\x30\x4f\x38\xb8\x4b\xa6\x94\x4e\xca\xa0\xb1\x78\xf8\xb0\x4e\xd5\xac\x10\x07\xc6\x38\x7c\x51\xf6\xfb\x63\x32\x50\x97\x51\x19\xb9\x55\xc2\x15\x47\xff\x76\x36\x26\x39\xd5\x71\x54\x2d\x46\x7f\x76\xe7\x73\x4a\xca\xf7\xbc\x80\xf1\x81\xc2\x17\xa6\xa5\x18\xeb\xbc\x24\x0a\x8d\x9b\xce\x17\x15\x9d\x17\x9d\x90\x31\xaf\x4d\x12\xad\xa1\x6f\xa3\x16\xca\xcc\x48\x8c\x67\xcf\xaa\x12\xd8\x42\x9b\x1f\x26\xe2\x4f\x24\xfb\xb1\x16\xd2\x5d\xc4\xc2\x7f\xdc\x29\x39\x78\x3d\x8a\xc2\x90\xd1\xe9\xa6\xcf\x40\x15\x33\xbf\x4f\xeb\xa7\xff\xe9\x54\xfa\x6d\xcf\x59\x3c\xbf\x4b\x04\xd8\xc2\x05\xcf\xea\xa6\x14\xb1\x9a\x5c\xd1\xa5\x2e\x2e\x82\x79\xfe\x4c\x0d\x17\xce\x87\x83\xdc\x45\x2e\xf6\xc9\xbc\x74\x66\x46\xc8\xa8\x15\xd7\xdd\xb9\x65\x86\xfc\xd6\x60\xae\x54\x41\x7c\x9c\x3a\x65\x22\x87\xea\x5c\x47\x2c\xca\x14\xfb\x1c\x63\xe1\x20\x59\x91\x34\x18\xf5\xb0\x19\x70\x24\x54\xf8\xdb\x67\x34\xcb\x5a\x22\x3c\x03\xc2\xef\xac\x18\xa6\x74\x5c\xb8\x55\x2c\x85\xbd\x8f\xa4\x2b\x4c\xc0\x8a\x4e\x83\xd9\xf3\xe6\xf1\x6a\x65\xe2\x3a\x6d\x25\xb4\x6f\xdb\xa1\x0c\x7f\x01\x55\x0f\xd1\x31\x37\x71\x88\x14\x8c\x09\xa2\x3f\xb9\xeb\x58\xa6\x65\x81\xc5\x17\xf8\xce\x46\x87\x69\xc5\xed\x1a\x01\x11\x66\xcc\x89\x64\xc3\xca\x86\x56\x50\x83\xde\x99\xe8\xa8\x77\xbd\xab\x20\xa9\x6c\xc4\x38\x70\x3a\xf7\x55\x4b\x53\x58\x0b\x3c\x3b\xee\x85\x07\x4d\x54\xe8\xde\x48\x54\x4b\xe5\x13\x69\x52\x4d\x2f\x41\x75\xec\x9e\x53\xac\xf2\xe5\x0e\xbd\x15\x01\xbf\x33\xe1\xb9\x35\xe0\x0d\xb1\xc8\x29\xad\xbb\xea\x9a\xab\xd7\x44\x67\x63\xf4\xab\xb2\x6a\xae\xf5\x60\x9f\x44\x25\xde\x9f\x7b\x25\xbf\x1e\x2b\xcf\x35\xb7\xfe\xce\x11\xa2\xf0\x16\xeb\x41\xb8\x59\xa7\x2a\xe9\x78\xed\x90\x0a\xf6\xfc\xb6\x13\x83\x4e\xb7\x6e\xd4\x01\x7f\xac\x2a\xb5\xe8\xf2\x43\x5e\xd6\xa5\xea\x5c\x0b\x4e\x26\x2f\x21\xce\xcc\xe3\x41\x9b\x2f\xa9\xb9\x16\x62\xbe\x6c\x29\x03\x78\x07\xf7\x22\xd7\xe2\xbe\x04\xf9\xcb\x47\xf2\xef\xe8\xa3\xe8\x4d\xc0\xc4\xea\xc3\x2f\x28\x12\xf0\x71\xbf\x90\xff\x97\x95\xe7\x8b\x93\x86\xa2\x1c\xfe\xad\xd5\x1a\x84\xcd\x21\x4d\x11\x7d\x3e\xb7\x3c\x49\xef\xa8\x4a\x55\xc3\x9e\xc6\x74\xb9\xf4\xa2\x0e\x75\x7d\x0f\x37\xbd\x1a\x6a\xeb\xbb\xfc\x70\xb3\x66\xa9\xdc\x43\x49\xe2\x5e\xff\xbd\x07\x2f\x38\xc7\xf7\xa7\xac\x2d\xa6\x05\xff\x7d\x42\x9a\xa6\x9e\x43\x34\x3c\xb7\x6e\xa5\x56\x31\x06\x9e\x9f\x64\x83\xed\xfb\x74\x6d\x14\xe1\x02\xc2\x57\xa4\xd7\x3c\xaf\xa1\x04\x89\x95\xac\xbd\x66\xbe\x3d\x51\x15\xb1\xbc\x66\xcd\x2c\x50\x68\x11\x2a\xb6\x85\xb1\xab\xb2\xec\x6d\x68\x80\x04\xb8\xe1\xf6\x77\xf4\x09\x9f\xe9\x20\x16\x53\xc6\x7f\xb6\x2e\xb9\x8a\xb4\x11\x5d\xfe\xea\x76\x61\x53\xd6\xe0\x94\x87\x5f\xde\x2a\x6f\x82\xc9\x70\x9d\x7f\x9d\xaf\x3e\x71\xa1\x96\xac\xab\xc2\xd7\x31\x29\x65\xff\x67\x99\x52\x10\x22\xa7\xde\xae\xb5\x51\xb1\x14\xda\xab\x12\xb7\x08\x10\x1e\xcc\x15\x1e\xd5\xe2\x50\xe0\x0b\xc1\xc6\x8b\xba\x34\x60\x0c\xf5\x91\x4f\xe3\x03\x59\x98\xf6\x82\x56\xfb\x63\x16\xd5\x0c\x24\xf1\x3e\xc9\xbd\x56\xd6\x5c\xef\x58\xbc\x38\xfa\xea\x21\x3e\x85\x5f\xdf\x88\x82\x52\x99\xd6\xb2\x22\xaa\x17\x29\x3a\x4a\x0e\x02\x44\x9c\x1c\x5d\xae\x10\x82\x45\xcb\x19\x76\x89\x09\x07\x9e\xde\x24\xb1\x50\xb1\x1c\x7c\x78\x7d\xf7\x28\x05\x29\x02\x42\x0f\xcd\xe8\xb3\x0f\x7f\x27\x2b\xf6\x02\xf7\x84\xbf\x95\x69\x03\xe5\xda\x1b\xa3\xe2\x02\x40\x79\x9d\xd4\xa4\x95\xc1\x64\xc8\x15\x0f\xab\xbf\x70\xfe\x0c\xd5\x15\xde\x71\x02\x8f\xdb\x9c\x18\xaf\x3f\x21\x56\xca\x8c\xba\xb4\x49\xfc\x3e\xf9\x8e\x6e\xd7\xd6\xf6\x75\x6c\x11\x14\xa3\x18\xbe\xad\xcd\x29\xa9\x07\x25\x51\x3c\x86\x5f\x74\x30\x7d\xee\x1c\x5c\xf1\x8b\x2d\x49\xdc\xc8\x1d\xb7\x14\xe8\x20\xc6\x0d\x1c\xa7\xe8\x35\xfb\xd3\x3f\xb8\xb7\xc8\x84\x49\x01\xfc\xbb\xe1\x07\x74\x03\x9f\x1e\xb9\xa3\x08\x9f\xd7\x9c\x4d\x2d\xdc\xa0\x6e\xf4\x18\x20\x41\xbe\x67\x8d\x0c\xf5\xc0\x86\x0c\x20\xb4\x7d\x78\xa4\x36\x2b\xb7\x70\xbc\x0c\xe4\x47\xed\x6f\x3e\xc7\xb5\xad\x8c\x52\x43\x98\xdf\x24\xd3\x6c\x05\x6c\xa5\xc0\xc5\xa7\xbf\xf0\x77\x5b\xd3\xad\x70\x15\xb1\x26\xaa\xda\x6d\x91\x03\x24\x40\xe2\xb7\x33\x63\x10\x7d\x6c\xfa\x3c\x7a\xfb\x68\x05\xfb\xe8\xf9\x04\xbc\xe0\x4b\xfd\xc6\xe7\xde\x52\xad\xf1\x5d\x9f\x91\x72\x5c\x5f\x1a\x96\x96\xa3\x1b\x0e\x72\x7d\x68\x41\x87\x1d\x4d\x3f\xfd\x2a\xf7\x5b\x4c\xce\x7e\xfe\xfe\x35\x1a\xf9\x03\x83\xe4\x85\x98\x64\xe7\xee\x1a\xad\x08\x8f\x32\x82\xbd\xc4\xc9\xeb\x23\xaf\xc9\xff\xd2\xa4\x4e\xcd\x6b\xa1\x2a\x80\x5f\xf3\x33\xa7\xa4\x38\x97\xb8\xc1\x99\x49\xe1\xff\x58\x9a\xdf\x2d\xaa\xfd\xff\x94\xfd\x0f\xb8\x15\x55\xbd\x3f\x8e\x33\x7b\xef\x8c\x90\xff\x1c\x10\x8f\x40\x48\x84\xa4\xec\xe3\xe1\xf0\x57\x22\x52\x44\x44\x24\x36\x02\x21\x91\x21\x6b\xcf\x5e\x7b\xcf\x3a\x67\x66\xd6\xb0\x66\x66\x9f\xb3\xcf\x87\xc8\x8b\x7f\x22\x22\x35\x25\x32\x22\x33\x2f\x19\x19\x79\x8d\x6b\x64\xa4\x46\x46\xe4\x35\xf2\xaa\x99\x99\xd7\xeb\xe5\x92\x19\x11\x79\xb9\xc4\xf5\x12\x71\xa6\xdf\x33\xeb\xbd\x66\xd6\x9a\xb5\xb9\xbf\xe7\xf9\x3e\xcf\xe7\xf9\x3c\x37\x84\x73\xf6\x9e\x59\xeb\xfd\xf7\xf5\x47\x08\xe2\x6c\x57\x00\x61\x0e\x72\x61\xfb\x96\xbb\x76\xf0\x38\x2d\x50\xba\x35\x18\x5e\x7b\xc9\xe1\x5a\xf6\xe2\x48\x05\x19\xed\x72\x8d\x20\xee\x72\x50\xf8\xfc\x93\x59\xe1\x66\x71\x5c\xa3\x01\x5a\xf4\xad\x12\x96\xa8\x43\x46\xfe\x4c\x85\x77\x83\x61\x27\xfa\xc7\xd3\x3a\x68\xc8\x17\x3b\xba\xa8\x38\x5f\xc3\x95\x53\x3f\xb0\x05\x40\x66\xd4\x3a\x38\x28\x2b\x6a\x71\xb2\xfa\xa1\x9d\x7d\x3f\x04\x15\x67\x4e\x07\xa2\xcc\xd1\x2d\x50\x91\xf9\xd8\xae\x82\xcb\x37\x97\x13\x8b\x7e\xde\xa1\x69\x7f\x63\xe2\x62\xbe\x91\x91\x3d\xe0\x9a\x99\xba\xf6\x2b\x49\x94\xdd\x8d\x23\x91\xa2\xe0\x0b\xba\xfa\xa2\x19\xf9\xc0\xe0\xc4\xc2\x83\xd8\xca\x00\x3c\xdc\x07\x01\xdd\xe3\x30\xa0\x52\x5f\xfe\x05\x2d\xcf\x59\xb8\xcc\xb8\x84\x9e\x98\x31\x0c\xdf\xa6\x02\xc5\x4d\x92\x28\xa5\x4c\x68\xd3\x51\x06\xb6\x9d\x80\x87\xf3\x5f\x9a\xa4\x39\xcb\xdb\x88\x38\x52\xf7\xfd\x2f\xab\xc6\xab\xe3\x39\x90\xad\xd6\xe7\xd6\xaf\x2b\x0d\x43\x15\x3a\xcd\x62\x29\x22\x07\x24\x48\x3e\x20\x0e\xf6\x33\x3b\x24\x3f\x27\x4f\x18\xd4\x63\xf1\xa7\xf9\xcd\x62\xf9\xa7\x01\x0d\x05\x09\xf8\xf4\x6b\x52\x88\xd9\x55\xd5\x33\xff\x38\x4e\xf1\xe4\xe0\x33\x5d\xe8\x28\x9f\x3f\xab\xa3\xc3\xb8\x2e\x9b\x48\xe9\xd7\x2e\x54\x0f\xb7\xdd\x85\xe2\xf0\xb4\xb8\x47\x20\xa3\x98\x58\xbb\xe4\x2f\x99\x34\x56\x0b\x67\xdc\x6d\xb8\x12\xa6\xce\xce\x7b\x4f\xc0\x8b\x9b\x3e\xad\xd8\xc0\x88\x15\x39\xf2\x39\xba\x67\x2f\xbc\xb7\x85\x76\xc8\x3d\x9d\x73\x3f\xec\xa7\x05\x31\xd8\xfa\x04\x49\x7d\xd4\x97\xab\xbd\x3b\x4a\x0d\x25\x55\x52\xc1\xae\x89\xf9\x4d\x3c\x11\x48\x6e\x9a\x03\xd6\x2f\xd9\x74\x37\xe3\xa8\xae\xf0\x21\x34\xf5\x78\xb8\xf9\x80\x86\x1e\x77\x10\x6b\x70\x57\xbe\xd4\xcf\xf0\xa2\x7e\x50\xc6\xad\x00\x87\x98\xdc\x15\x96\xb0\x23\x47\x3e\xf2\x2d\xd5\xd1\xf3\x1f\xea\x8a\xbc\x5b\xc3\x4c\xea\xc0\x3b\x9f\x90\x28\x1e\x86\xe3\x4c\xa9\x72\x0e\xf2\x0f\x6c\xcf\x36\x4f\x5c\x66\x9a\x70\xbc\x64\x5a\xa2\xe5\x26\x28\x96\x40\x7c\x9e\xe7\xc7\x57\x7d\xd3\x63\xfa\xd9\x54\xd5\xda\x8c\x7f\x99\x37\x5c\x39\xef\x95\x50\x58\xb3\x7d\x7b\x7e\xf6\x6e\xb7\x99\xd4\x11\x98\xa1\xc7\x9f\xcc\xce\x2b\x11\xe3\x62\xe7\x7d\xb9\x2f\x2f\x55\xa4\x95\xa9\x98\xc6\xe4\x3e\xa4\xf1\x81\xab\x88\x75\x21\xd8\x19\xa6\x99\xf8\x6f\xe7\x86\x2a\x2a\x17\x3e\x89\xa3\xcb\x1d\x47\x14\xc7\x2f\xdc\x9d\xc4\xc6\x0b\xdf\x85\xe3\x72\x63\xa3\xa2\xcc\x1e\x8d\x9b\x37\xa4\x95\x5c\x91\x03\xd0\x5b\xdb\x24\x92\xa7\xd2\x74\xdb\x72\x0f\x89\x49\x10\x0c\x36\x13\xd2\xf8\x83\x67\x34\x1f\x0b\x44\xec\x5a\xdc\xff\x73\x3e\x7c\xe3\x68\xba\x30\x63\x24\x2e\x64\x72\x86\xf0\x84\xf6\xa1\x07\xc9\x79\x53\x84\x09\x10\x63\xc2\x81\x86\x17\x79\xcb\xf6\x6b\x2e\x57\x0c\x99\xc2\xf9\x3c\x7a\xbc\x45\x8f\x88\x0e\x49\x44\xdd\x92\x85\xe6\x6f\x27\x4f\xd6\x62\x56\x6f\x99\xda\x36\xb2\xa0\x20\xc9\x16\xe2\xee\x28\x59\x62\xc6\x0f\xa2\xff\x96\xc4\x19\xdf\xb7\x40\x9d\x35\xe9\x4f\xa3\xb9\x70\xc7\x2a\x34\x2c\x73\xe5\xd5\x2d\x1f\x6a\x6a\x23\x91\x47\x19\x3e\x2f\xf6\xe2\xd3\xfd\xd5\x6d\x2f\x71\xe3\xfb\x1e\xdd\x13\xc8\xe6\x99\x21\xc2\xe1\x77\xf6\x2e\x08\x0a\xdd\x60\xc5\x51\xea\x33\x98\x86\x49\xab\x61\x17\xa7\x96\xd7\xb9\x2f\x0e\xd0\x1d\xfd\x42\xbe\x3a\x02\xf5\xef\x37\x83\x41\xd2\xd1\x81\x83\x1e\xfa\x2e\x00\x49\x96\xeb\xa9\x5d\x29\x63\xa6\x38\xab\xe5\xe7\xad\x1b\x21\xae\xa1\x4d\xba\x94\xeb\x74\xef\x0b\xda\xe6\xc5\xa2\x66\x97\x6e\xd0\x50\xa8\x1d\x4b\x23\xa6\x26\xb0\xb1\x4a\xc1\x65\x12\x0c\x2b\xdc\xa9\x3b\x95\xc5\xbd\x87\x4c\x9c\xe8\x92\x7d\x44\xd1\x43\x9c\x35\xb3\x6d\xd6\xb4\xf8\x95\x0e\x7c\x45\xe1\xdc\xd7\x10\x2f\x4e\x8b\xa5\x68\xaf\x56\xdf\xd9\x14\x05\xe9\xda\x30\x7f\xed\xb6\x64\x2c\x4d\xc1\xac\xe0\xc7\x93\xf4\xee\xc7\x77\xa8\x8b\xc2\x14\xfe\x76\x5d\x6b\xab\x64\x32\x34\x37\x6d\x5f\x5a\x05\x27\xa0\x8e\x7d\xe0\x6b\x3d\x7b\x0e\x1e\xd8\x62\xe2\x38\x12\x7c\x19\xbd\x33\x3a\xfb\xb1\x04\xa2\x4f\xec\xfd\xaf\x5e\x2d\x53\xc1\xb4\xa9\x53\x38\x45\x24\x9a\xfe\x9c\xde\x78\xf9\x1e\x09\x52\xb3\x92\xbb\x35\x40\xba\x8b\x39\x39\x1b\x46\x16\xbb\x97\x8d\xd5\xaf\x61\x37\x72\x85\xf2\x18\x8f\xb7\xbf\xd1\xc4\x36\x79\xd0\x48\x05\xe9\x8d\x05\xf7\x8a\x81\x10\x62\x81\xa5\x0c\xba\xf2\x2b\xb5\xea\xba\x6c\xc7\x2f\xd8\xad\x09\xe6\xf6\xc3\x65\x90\x1e\x5f\x10\x06\xa6\x75\xe5\x0a\x0b\xdb\x4d\x18\xf3\xdc\xbe\x27\x06\x8a\x08\x4b\xfd\xf8\xc8\xff\xfe\x89\x26\xab\x5d\x54\x8e\x7b\x19\x1e\x33\x6e\x18\x28\x16\xa9\xa9\x86\x50\xf4\xea\x7e\x79\x71\x1a\x94\x85\x65\xde\x40\xf5\x1b\x30\xb2\x49\x9b\x80\xcf\x06\xb7\x9e\x19\xa2\x80\xb1\x78\x19\x98\xbf\x73\x92\xd0\xb6\x97\x12\x3f\x1c\x3c\x31\x4e\x5b\xae\x13\xb7\x92\xca\x3c\xe4\xd7\x6d\xb8\x44\x21\xf5\x23\x2f\x8e\x59\x16\x72\x2b\x49\x0a\xfa\xe1\xc1\xf1\xda\x61\x72\x6b\x42\x61\x38\x09\x45\x51\xdf\x5a\x45\x49\xd3\x21\x35\xce\xd5\xdb\x78\x42\xc1\x84\x61\xc6\x81\x5d\x49\x0d\x3f\x65\x73\x36\xbc\x65\xec\xb9\x44\xde\x32\xde\xce\xe6\x1a\x46\x7c\x2c\x38\x82\xeb\x26\x4a\x11\x84\x69\xb3\x38\x65\xe5\xab\x13\xb5\x2b\x82\xcc\xae\xb4\x7d\x2a\xcc\x3b\x9e\x7d\x8c\x8c\x24\x36\x53\x9f\x1b\xd0\xc4\xb6\xc7\xcc\x63\x38\xee\xad\x12\x65\xe9\x0f\x1d\x53\x28\x1c\x18\x97\x29\x5f\xe2\xfc\xe3\xde\x8b\x14\xb4\x26\x7c\x74\xe2\x83\x31\xd2\x2b\x5a\x0f\x69\x72\x3d\x22\x11\xc9\xda\xb5\x95\x7c\x37\x0a\xb8\x8d\x1a\x14\xd3\x3f\xec\x4c\x29\x2c\x1e\x4d\x1a\x90\xfc\x55\x93\xe4\x37\xb6\xe3\x4b\x19\xbd\x76\xf7\xf8\xe6\x47\x58\xb4\x51\x80\x19\xb2\x93\xfe\xb7\xfd\x39\x61\x46\x0e\x6a\x0e\x84\x2f\x8b\x8c\x8f\x1f\xd2\xfc\x0b\x58\xc8\x51\x08\x30\x5a\xf9\xfc\x59\x91\xbd\x2c\x1a\x87\xff\x91\xaf\x89\x5d\x4a\x18\x70\x4b\x45\x5e\xc8\xdf\x99\x1b\xa7\x85\x6a\xca\x6a\x04\xa9\xcb\x81\x85\x0b\x25\x87\xb5\xad\xd6\x34\x0c\xdc\x0f\x5d\x42\x71\x4d\x23\xac\x21\x57\x11\xd3\xed\xcb\xef\x5c\xa0\x19\x20\xc4\xef\xd2\x41\xc4\x06\xfd\xc1\x8b\xdf\xd1\x71\x02\x41\x90\x5c\x2c\x63\x49\xbb\x80\x79\xf2\xad\x43\xb1\x14\x4d\xdb\x97\x66\x67\x93\x83\x12\xfe\x79\x62\x9a\x29\x3a\x29\x29\x96\xa2\x19\x67\xb2\x27\x80\x21\xb7\xd2\xd0\x88\xeb\xc3\x07\x5c\x98\x96\x0d\xf1\x4b\x7a\xf3\xcd\xd1\x7a\xe9\x57\x23\xae\xa8\x38\x6f\x18\xa0\x4b\xc0\x27\x26\xa6\xcb\x9f\xd1\xa3\x5f\x95\x8f\xcd\x44\x20\x3f\xbe\x53\xf3\xdf\x99\x05\xfb\xa9\xe7\x4f\xcb\xd0\x60\x11\x01\x78\xca\x0d\xbd\x57\x32\xd4\xae\x9a\xce\x15\x20\xec\xd1\x92\xb3\x13\xe8\xf4\xf0\xe8\x9a\xd9\x0a\x60\x89\xd7\xc9\x7c\x14\x72\xc9\xc9\x56\x89\xe1\xd1\x5f\x54\xb4\x6d\xa0\x6c\x03\xe2\xf3\x83\x81\x3a\x69\x2c\xda\x21\x84\x74\xec\x50\x88\x6e\xe4\x8d\x57\x34\xf8\x0a\x87\x0d\x27\xd3\x84\xb1\xb3\xb3\x5f\xae\xbd\x1d\xbe\xdc\x82\x56\x68\x1e\x2f\xe3\x65\xe9\x15\x3b\x15\x3b\x21\x04\x4e\x4a\xbf\x7a\x4c\xe3\x51\x10\x94\xba\x8e\x1a\xff\xb4\x56\x1b\x12\xa2\x7a\xc2\x60\x5a\xdd\xa2\x85\x04\x8c\x2a\x38\x49\x06\xf9\xd1\x03\xa5\x6c\xd4\x55\x33\x38\xb3\xf4\x6a\xcd\x50\x1d\x31\x9b\x24\x04\xde\x7c\xff\xc9\x10\x5c\x2d\xea\xd0\xb8\x32\x01\x16\x51\xfe\x09\x05\xb3\xed\x70\xcd\xc0\x62\x29\xfa\xa5\xf6\x9b\x91\x1d\x3a\x2e\x49\x22\xee\x7d\xd1\x24\xad\xf9\xa9\x11\x07\x8b\x41\xa1\xb6\x13\x3d\x05\x79\x22\xae\x0d\x85\x1c\x4e\xee\x6b\xb6\x22\xc1\x1e\xe0\x0c\xec\x6a\x97\xad\x4f\x54\xad\xb8\xaf\x4a\x1c\xc0\x67\x5c\x20\x4c\xe1\x2d\xcc\x68\x17\x86\x9a\xfe\xe1\x3d\x97\x2a\x14\xad\x04\x92\xa7\x63\xdc\xaf\x5c\x2b\xc3\x12\x4a\xe7\x22\x4b\x9f\x49\x01\x41\x09\x10\xcf\x38\x75\x97\xf2\xf9\x2c\x4a\x95\x0a\xab\x70\xf7\x6a\x29\x3f\x4c\xf9\x5a\x45\x20\x4c\x92\xe9\x4f\x62\x2c\x73\x76\x72\xf6\x0e\x75\x92\xa4\x33\xcc\x17\x9e\x4d\x5f\x9c\xcf\x31\x4b\xbd\xfb\x94\x4d\xad\x17\x32\x30\xb0\x9e\xbc\x3f\x3b\x96\xb2\xa8\xcf\x63\xa0\x2e\x45\x5b\xb8\xdc\x6d\x51\x7d\xa9\x65\x21\xfc\xbb\xfd\x4d\xf2\x6f\x09\xa5\xa8\xcf\xf0\xe6\xa9\x22\x3f\x38\x0e\xbb\x3c\xd9\x8e\xb8\x45\x73\x68\xa0\xac\x4b\x84\xd6\xe8\xe5\x2d\x17\xeb\x51\xa3\x87\x08\x7d\x91\xbe\xdc\xbb\x83\x35\x0c\x38\x71\x3c\x5b\xfa\xfc\x7c\xf8\xdd\x94\x97\x06\x27\x25\x45\x94\x55\xa2\x81\xa2\xdc\x66\xb4\x9b\x17\xd2\x91\x24\x97\x09\xb7\x40\xf9\xad\xdc\xb7\xb5\x22\x97\xba\xa8\x8c\xdd\x0a\x88\x31\x24\x01\xef\xc1\x47\x94\xf5\x34\x4f\x94\xc3\xdf\x92\x19\xc8\xe4\x6a\x30\xf9\x4f\x6d\x96\xfd\xd9\xb4\x29\x33\xb8\x57\x57\xee\x81\x89\x7a\x14\x80\xbc\x28\x30\x6e\xe3\xdf\x16\x10\xd9\x6a\xb1\x14\xd9\x9b\x14\xf3\x5d\x86\x85\xb0\xe0\x6d\xe3\xb4\xae\xdb\x01\x25\x33\x91\xfc\x3f\x70\x46\x38\x29\x7b\x38\xe3\x6c\x5a\x79\x54\x1b\xc5\x80\xf1\xb3\xa0\xf3\xde\x36\x52\xa5\x3f\xc5\x77\x02\x30\x96\xb9\x31\xc3\x8b\xea\x26\x61\xe9\xd2\x15\x57\x64\xcf\xbe\x1e\x46\x6f\x7f\x5e\x7e\xe8\xd0\x25\x3e\xaf\x68\x0a\x2b\x16\xc0\xd5\xba\x4e\x98\x7f\xf1\xe0\xb0\x65\xa0\x0a\x80\x83\x9a\xb2\x58\x8a\xee\x3a\x7e\xb1\xd2\xd5\xd7\x42\x1b\x31\xa1\xb0\x16\xff\x24\xb6\xb4\x49\x77\xca\x43\xc2\x7c\x8e\x3f\xe0\x17\x5b\x44\x1d\xe3\x56\xb0\x03\x95\x07\x2f\x72\x6e\xeb\x14\x97\xb1\x9b\x38\x62\xff\x6f\xf4\xec\x97\x97\xd1\xc3\xae\xeb\x37\xec\x3a\x72\xb9\xc1\xfd\xe7\xe6\x68\xde\xfd\x75\xcc\xea\xc8\x0e\x93\x1a\xb5\xe3\xdc\x58\xad\xba\x77\xb1\x89\x7d\x1f\xb1\x86\x58\x36\x8c\x1a\x28\xe7\x27\x1c\x79\xa1\x27\xf9\xdf\xad\xd4\xf6\x56\x41\x10\xb7\xb8\x3c\x53\x5f\xff\xaa\x42\x76\xa1\x7e\xc0\xe2\xcf\x34\xb6\x2d\xfb\x0f\x42\x3f\x1d\xa6\x18\x7f\xd0\x86\x93\xc5\x32\x4d\x08\x42\xc6\xcf\x87\xcb\xf9\x2c\x2a\x53\x9b\xf8\x96\x78\x00\xdf\x7c\x3e\x9b\x76\x6e\x4d\x6c\xa4\xd5\xc5\x5b\x85\xd4\x08\x58\xf4\x7d\x75\x55\xf6\xaf\x97\x51\x05\xfc\x3c\xee\x39\x98\x46\xae\x19\x53\x3b\x38\xef\xfa\x71\x05\xb6\x4b\xf8\x8e\xc5\x42\x9c\x7b\xa5\x7e\x9a\x32\x06\xc4\x17\xd0\x67\x96\x2b\xba\x4d\x01\x8d\x9b\xa9\x52\xf4\x3f\xaf\xea\x6b\x2e\x61\xe7\x5e\x8a\x96\xee\xca\x22\xf4\xbd\xb8\x02\x43\xac\x81\xeb\x19\x7b\x8c\x7e\x87\x15\xc1\x20\x62\x5a\x08\xdb\xa0\x62\x9c\xeb\x5c\x3b\x5a\xaf\x6d\x6a\x3c\x05\xc6\x5f\x60\xc3\xa8\xe6\x25\x18\x71\xb1\x30\x08\xca\x7d\x63\xbe\xae\xa9\x9c\xda\xcb\xe5\x76\x2f\x50\xa5\xab\x6c\xe2\x42\x01\x73\xb4\x63\xac\xd6\xbe\x81\x71\x72\xaa\x40\x93\x5b\x7d\x00\xf6\x85\x9f\x40\x2e\xcf\x3f\xfa\x89\xf9\xe5\x6d\x7a\xaf\x02\x0a\xe6\x00\x35\x5f\x51\x15\x1b\x04\x9b\x0a\xfc\xf6\x25\xc7\x04\x2e\xd4\x46\x2e\x60\xeb\xb7\xe4\xf4\x05\x99\xef\x93\xb2\xd8\x7b\x47\x4b\xb5\xe5\xc1\xd4\x8e\xb6\x19\xe2\x5e\xe5\xd7\x28\xb3\x36\x54\xf3\x2b\xaa\x00\x42\xb4\xe7\x41\xad\x08\xa1\xc8\x4e\xb6\xc4\x85\xad\xe7\xf4\xed\x0c\x07\xb6\xb8\xc2\x71\xef\xe5\xad\x2a\xc0\x3b\x2e\xa2\x18\x54\x0f\x85\x2b\x17\x28\xb3\x31\x0b\x31\x38\x84\x8f\xec\x52\xe4\x58\x66\xc1\xfc\xb3\xd4\x97\xeb\x9b\x98\x8d\xdc\x95\x30\x60\x34\xec\xd1\x9c\x01\x17\x29\xe4\x17\x9f\x60\xc6\xb8\x40\xd3\xac\x07\xb4\x9a\x1a\x31\xca\xa5\xb9\x45\x58\xfe\xdf\xb5\x62\xb0\x4a\x19\x68\x3c\x7d\xf3\x71\xe5\x93\xd9\x61\x19\xf0\x81\x23\xa2\xe6\x11\x4d\x40\x4c\x51\x22\x3d\xa1\x41\xbc\x7d\x4a\xdd\x74\x7e\xf3\xee\xf3\x23\xf5\xea\x50\x3c\xf8\xc6\x71\xc5\xf7\x08\x79\x20\xab\x63\xfc\x79\xa9\x2c\x6f\x2f\xbb\x6a\x66\xfc\x47\x9b\xef\x93\x49\xc9\x99\x1e\xff\xc9\x1f\x37\xe9\x75\xb8\x2f\x75\x6b\x9f\xc9\x8d\x50\x80\x39\x0d\xae\x97\x1c\x7f\xcc\x13\x9a\x91\x75\x27\x65\x15\xe4\xaa\x5a\xe3\xc6\x8f\x04\xd1\xff\x63\xc4\xb6\xfd\x84\x10\xba\x6d\xae\x14\xfc\x53\x3d\x0b\x1f\x7f\x44\xb7\x4c\x0a\x7d\x81\xf9\x92\xcb\xaf\xa3\xef\xe8\x1d\x21\x57\xd8\x05\x82\xce\x9a\xa5\x17\x69\x95\x27\x37\x97\xe0\x9f\xf6\xef\xfd\x25\x58\x05\x55\x2a\x4a\x81\x62\x7c\xfb\xc4\x14\x35\x75\x5d\x7b\xed\x15\x37\xfc\xff\xcd\x5c\x9b\x56\xa7\x70\xde\xb8\x6c\x4f\x50\x9f\x85\x7b\x07\x68\x44\x20\x62\x07\xd4\xd5\xf7\x77\x85\x9a\xb2\xbc\x36\x29\xb2\x8b\x65\x08\x6a\xad\xc7\x25\xae\xcf\x5c\xdf\x34\x44\x5f\x77\x81\xa2\x7e\xc2\x1b\x4d\x39\xe1\x9d\x7f\x5c\x78\x60\x73\x07\x40\x98\xd2\xac\xdb\x27\x07\x12\x71\x4e\x82\xb2\x46\xd6\x90\x54\x8e\xfa\x3c\x4c\x8b\xa5\x28\xf7\xac\xfc\x5c\x4e\x42\x21\x2c\x45\x55\x4f\x5f\x8a\xa2\x14\xa7\x17\x05\x43\xa5\xf9\x1c\x49\xd5\xc8\x17\x77\x40\x53\x13\xc6\xb5\x28\x87\x08\xe7\xd7\xee\x50\x0a\x87\x1a\x4c\x3e\xf8\x0a\xd9\xf8\xc2\x43\xc3\xc4\xd1\x62\x35\x94\x48\x2a\xe4\x56\x6a\xe4\xa0\xaa\x4d\x41\xcf\x23\xba\xeb\xea\x49\xda\xb1\xe3\x66\x2c\x20\x2d\xa8\xf9\xb1\xcc\x1b\xaa\x16\x70\x56\xdc\x87\xff\x5a\x87\x2f\x62\xdb\x06\x89\xbd\x03\x47\xe1\x53\xaf\x0c\xb1\x5f\x41\xf1\x57\xff\x50\xae\xd9\x40\xd4\xa6\x9e\x83\x13\x00\x44\x9f\x71\x6c\xbe\x3e\x69\x8b\x1f\x20\xcf\xcd\x51\x4b\x5d\xf3\xc3\x10\x76\xee\x09\xc6\x98\x5b\xba\x1f\xd5\x9a\x5c\x8b\xe0\x2a\xcc\x62\x5f\xd9\xae\xda\x89\x23\x8f\xc7\xe5\x82\xb5\x4f\x11\xe5\x0d\x11\x03\x8d\x9b\xdc\x67\xde\x51\xf7\xa7\x16\xc1\x82\x24\x90\xdf\xb4\x52\x18\x5e\xb3\x0a\x76\x03\x40\xd6\x3c\x54\xd7\x44\x97\x51\xa5\x91\x48\x73\xf5\xdf\x20\x49\x22\x7e\x90\x31\x9b\x18\xb3\x41\x6b\xc7\x18\xd8\x4c\x43\x4a\xaa\x2e\xd1\xdd\x3f\xca\x3a\x6b\xcc\xf8\xd2\x7d\x4d\xbe\xa8\xc8\x4d\x39\x33\xb9\x5f\x4d\x6f\xb6\xf3\xb7\x32\xf2\x96\xf9\x83\xaf\xa9\x34\x09\x6e\xd4\x9d\x88\x9f\x19\x7f\x7f\x66\x50\x9a\x39\xca\x71\xff\xd8\xf6\xb6\x2c\x13\x1c\x1c\x80\xa2\xc3\x22\x8d\x23\x63\x92\x40\xae\xb6\x73\xd7\xd9\xe7\xe3\x90\xa7\x96\xa8\x93\x07\x40\xde\x5d\x46\x59\x57\xe3\xb2\xe6\xbc\x7b\x72\x8e\xa0\x9d\x51\xaa\x5c\xcf\xb7\x15\x83\x75\x37\x0c\xf8\x6e\xde\xf8\xde\x86\x11\xaa\x7a\x50\x23\x59\x91\xd6\xb6\x67\x3f\x9f\x18\x31\x88\x5a\x71\xea\x63\x8a\x62\x39\xae\x30\x18\x3e\x18\xff\xb9\x55\x06\x87\x20\x64\x99\x56\xa5\x70\xe7\x73\x8a\x5d\x19\xb5\x39\x75\xe1\x1d\x4d\x1f\xaa\x6c\xe3\x20\x83\x9c\xbe\xb9\x25\xfb\x17\x02\xda\xd5\xc8\xa0\x56\xbf\xff\x76\xf6\x49\x75\x22\x0f\xb9\xd8\xc7\x42\x33\xf5\x07\x13\xd2\x76\xd0\xf7\x55\xea\xe5\x45\xfd\xf5\x89\x6e\xb5\x9a\xd8\xb3\xf7\xe5\x96\x28\x6a\x22\xc4\xad\x13\xb1\x5e\xdd\xd1\xa3\x6f\x2d\xe2\x04\x97\xf4\x74\xd7\x77\x28\x99\x8f\x03\xcf\xe2\x7f\xf3\x4b\x45\xad\x19\xd9\x54\xd4\x35\x7b\xda\xd2\x02\x94\xf2\xad\xea\x27\xee\x4e\x3f\x28\xeb\x54\x25\x0f\x5b\xf7\x64\x33\xad\x87\x1a\x02\xe1\xb3\xfd\xf2\x31\xcd\xad\x45\x60\x5a\x89\x2a\x57\xee\x8f\xfd\x15\xc9\x21\xd0\x49\x30\xb6\x58\xda\xc2\x17\xc9\x99\x55\x74\x9b\x76\xf2\x1d\x64\xa1\x46\xfc\xc3\x14\xd3\xf2\x7d\xf2\x4b\xc6\xff\x1f\x24\x8d\xf7\xe8\x74\x3d\x86\xd6\x13\xc5\x50\x29\x77\xf5\xfe\x11\x8a\xe0\x14\x33\x71\x85\x23\x74\xbf\x34\xbc\x55\x49\x42\x9c\xd3\xec\x21\x96\xce\x49\x7f\x3b\x53\x0c\x2f\x3d\xbe\xe5\xfa\xd4\xd6\x26\x69\xe4\x46\x32\x02\x8a\xbe\xe1\xa9\xf9\xcc\x29\x0b\x57\x97\xbf\xbc\x95\xfd\x64\x75\x82\x5d\x17\xc5\x4f\x10\x48\x10\xd7\xec\x4d\x5f\xc4\xb4\xf6\xb8\x0a\xc9\xff\x5a\xa1\xe9\xd5\xb0\x49\x82\x2e\x50\xa5\xcc\xdf\xbc\x5c\xf2\x3c\xdd\x0c\x58\xaa\xb0\x7a\x5b\x8b\x32\x8c\xf3\x6c\x9a\xf8\x15\xdd\xb7\x57\x31\xc1\xa1\xe5\x04\x33\x35\x51\x9b\x45\xc0\x2c\x0b\x22\xd8\xc8\x07\x2f\x52\xfa\x8d\x9a\xaa\xa7\x56\xd8\x32\x41\x01\x5b\x21\xe2\x06\x40\x18\x30\xfa\x2b\x79\x6d\x7d\x88\xfd\xb8\x46\xe7\x5f\xbf\x7b\xa9\x1c\x98\xa2\xb8\x09\xb9\x7b\xbb\xc0\x22\x72\x58\x6d\xe4\x2d\x96\xbf\xac\x4e\x03\x5c\xac\xe1\x40\x10\xcb\x73\x47\xee\x10\x88\x21\x2e\x4c\x3c\xe2\x55\xed\xec\x7b\x88\xcf\x42\xb8\x34\xa2\x75\x4e\x51\xb0\x6d\x94\x41\xb6\xb7\x6d\x12\xfc\xaa\xe5\xe0\xe6\xf7\xdd\xe5\x23\xe3\x7f\x77\xed\x02\xbd\x90\x39\xb7\x4e\x7a\x9a\xf9\x98\x91\xb8\x9a\xd6\x81\x13\xe7\x36\xc0\xcf\x6a\x20\x06\x84\x0e\x8d\xe9\x89\x1d\x2f\x20\xca\x90\xbf\xdf\x4a\x2d\x49\xf8\x3e\x0a\x6d\x21\xfe\xfa\xc8\xc2\xd1\x0a\x6c\xcb\x75\x89\xc2\xcd\x35\x2e\xdd\xaa\x29\x78\x56\x48\x2a\xbe\x66\xec\x5c\xa2\xcb\x1a\xbb\x42\xf3\xf9\xfb\x07\x46\x29\x78\x0c\xd5\x1c\xfb\x85\x96\x26\x57\xe5\x94\xb5\x92\xdf\xba\x21\xad\x42\xcb\x48\xc1\xb4\xe4\xc8\x6e\xd5\xe3\xd0\x0d\xab\xc8\x0c\x42\x26\x28\xff\x7f\x7d\x3d\x05\xe2\x59\x5c\x5d\x9c\xd7\x3b\xf4\xf0\x25\x7a\xde\x72\x4d\x2b\x45\xbd\xe4\xc9\x73\xda\x14\x2e\x14\xf1\x3c\x22\xa3\x14\x50\x01\x75\x03\x30\x2b\xcd\x1d\x1b\x3e\x28\xfd\x4e\xb3\x67\xc4\xbf\xb8\x57\x50\x06\x4d\x16\xc6\x81\x86\xf7\x37\x8f\x0a\x3d\x26\x93\x16\xab\x94\xbb\x99\x14\x4b\xd1\xeb\x8a\x77\x6f\x27\xf5\x31\xd7\x1b\xae\x2f\x49\x3f\xb6\x9d\xac\xf9\xa2\x56\x4d\xb8\xdc\xa6\xd4\xc7\xa9\xcb\x6e\xf4\xc7\x05\x00\xed\xab\x52\xa6\x9f\x9b\xff\xdd\xda\xa2\x86\xa2\x2e\xdf\xa2\xdc\x0f\xb4\x70\xe3\x52\x8d\x10\xc7\x4c\x5c\xac\x21\x66\x0a\x95\x9f\x24\x96\xcd\x78\x5c\xc3\x9e\xa1\x44\x47\x31\x37\xff\x6e\xa9\x5e\xeb\x63\x93\xba\xcd\x16\x07\xc3\x76\x09\x7a\x3b\x37\xe5\xe1\xef\xe5\xe4\x24\x5d\xb3\x71\xb6\xa0\xb2\xef\x7e\xe2\x22\x45\x6d\x8a\x31\x1c\x3f\x27\x11\x23\x8e\x14\x5a\x94\x11\x54\x05\xb3\x32\x5f\x3a\xf6\x15\x86\x2e\xd4\x85\x41\xfc\x74\xf4\x96\x7f\x4d\x31\xec\xe0\xab\xe8\x62\xc0\x50\x9d\xf3\xe6\xce\xf5\x66\xd4\x54\xf9\x2e\x7a\xe3\xe3\xda\xb1\xb6\x01\x71\xc8\xe7\x69\x07\x5a\x86\xab\xe5\x8c\xef\xc1\x0a\xe0\x82\xa5\x62\x0b\x8a\x7c\xf0\xbf\xbf\x7a\x9d\x3c\x27\xdd\x9c\xd1\xce\xab\xc7\x13\xb3\xb3\x2d\x13\x0e\x19\xf5\x50\x16\xf1\x95\xff\xac\xa2\xed\x8d\x6d\x5c\x07\x4b\x7d\x63\x8b\xe6\xc5\xe7\x87\x9e\x47\x59\x90\xb2\x81\xa2\x3f\xbf\xa5\x15\x4a\xa1\x1d\x84\x2c\x31\xd6\x9a\x3d\x5d\x89\xaf\xc8\x46\x3c\xd4\xf4\x19\x95\xb7\x35\xf0\x29\x76\x08\x1f\x5d\x0a\x80\xc1\x60\x26\x1c\x5b\x85\xbd\x18\x67\x2d\x0b\x5d\x59\xd3\x0a\xcd\xae\x64\x5f\x3a\xdd\x92\x7b\x85\x59\xbc\xc4\xed\x9c\xa7\x6c\xdb\xbb\xf4\x05\xcb\x8e\x71\x30\xc1\x58\x8e\xe3\x4b\x1e\xff\xd8\x92\xb8\x32\x01\xea\xc2\x71\x03\x14\xff\xfa\x99\x73\x86\x8a\x5f\xef\x7b\x61\x20\x94\x61\xe6\xbd\x2a\x3b\xa5\x06\x41\xae\x8b\xba\xd4\xc0\x94\xbf\xf9\x09\x45\xc4\x84\x1f\xb7\x21\xfd\xc4\xb8\x04\x31\xca\xd7\x63\x4f\x2b\xe4\x89\x6e\x12\x58\x15\x86\xba\xf9\x71\x5e\xa0\xd8\x95\x06\xdc\x65\x58\x75\x57\x50\x7c\x66\x52\xb9\x90\x07\xc4\xf4\xb1\xe1\x78\x28\xb0\xe2\x36\xe4\xe4\x28\x48\x07\x1c\xea\x1e\xbd\xb3\x3f\x7d\x0c\xc4\xd5\x75\x98\xa3\x69\x73\x9b\xe5\xdf\xc5\xa3\xbf\xf4\x4d\xe0\xbd\x2c\xa4\x34\x28\xa3\xe6\xdd\xbb\x71\x9b\x3b\x58\xd1\x77\x6a\x2b\x96\xa2\x13\x47\x14\x1d\xc0\x84\xd3\x94\xff\xd4\x6b\x7a\xb8\x43\x0e\xe6\x5d\x0f\xf4\x44\x8f\x8d\x57\x75\x43\xc4\xd5\x18\xab\xa1\x52\xb8\xaf\x63\xe2\x8e\x55\xc0\xaf\x6b\xe2\xbf\x94\xa4\xc6\xb1\xcf\x9f\xd0\x9a\x86\x4a\x68\xc2\x2c\x8c\x0f\x40\xcf\x3e\xd4\x2a\x25\xb2\x74\x8e\x53\xf4\xb2\xb6\x2a\xec\xc6\x76\x15\xb1\xe4\x67\xe7\x6e\x5a\xa3\xb5\x99\x84\x89\x09\xd7\x9b\x6b\x60\xc0\x7e\xc3\x8a\xf8\xef\x4d\xd3\x2c\xc0\xb9\xb0\x0c\x16\x02\x93\x3d\xe3\x2e\x56\x46\xa0\xbe\x19\x1f\xb6\xb4\x2b\xc9\xdf\x2e\x26\xda\xc4\x35\x19\x46\xa0\x70\x3a\xe6\x94\xd6\xe8\xa0\x1a\x72\x41\x10\x2c\x39\x74\x9f\x53\x48\x48\x15\x6c\x52\x26\x6e\x4b\xfe\xc4\x5b\x4a\x07\x44\xbb\x31\xab\x86\x89\x6c\xe3\x27\x8f\xa5\xaf\xcb\x6c\x88\x42\x3d\x4a\x32\x07\xf7\x43\x10\x97\xeb\x8e\xc7\xf5\xcd\x75\x5c\xba\x03\xde\x32\xba\x6b\xc7\x90\x24\x1e\x71\x9a\x47\xfc\x0f\x6e\xd0\xa4\x6f\x03\x0a\x8c\x13\xae\x0c\xfc\x6b\x8d\x8d\xe6\xdb\x71\xaf\x2d\xfd\xda\xf3\x1f\x9a\x2f\xbd\x23\xdb\xe2\x92\x66\xc3\x4a\x39\xc9\xe3\x18\xe8\x6a\x28\x48\x1f\xc5\x57\x14\xc0\x1c\x12\x9e\x0f\x7d\x85\x29\x73\x61\x58\x7f\x63\x7c\xd4\x54\xf6\xe5\x8b\xcf\x8c\x54\xfb\x05\x2e\x84\x0e\x1d\xf1\x63\x03\x14\xd9\x10\xac\xd4\x72\xc6\x74\x6d\x43\x64\x23\x5f\x55\x28\xf8\xd9\xab\xba\x32\x1f\x4a\x8d\x54\x2f\xd4\xb8\xeb\x15\x1c\x60\x33\x20\x75\xb9\xd0\xea\xf7\xba\xe2\x1a\x87\xa0\x4c\x8c\x46\xbc\x29\xf1\xfb\x34\x48\xee\xd1\xcd\x2f\x4b\x39\x27\xc2\x18\x09\xe2\xc8\x2c\xbf\xda\x3b\x8b\xe0\xe0\x30\xec\x73\x58\x07\x7f\x73\x2b\x85\x69\x8f\x8d\xf8\xf4\x7d\xc8\x1c\xc1\xa8\x08\xc0\x4b\x33\xbf\xad\x17\xf0\x68\x1f\x37\x2d\x5c\x2b\x87\x4a\x43\xf7\xfd\x3d\x8a\x56\x67\x18\x38\x14\x3a\x88\xdc\x07\xd6\xe8\xf3\x1d\x93\x54\x30\x8c\x64\xa3\xb3\x07\x95\xee\x01\xf5\x10\x47\x8c\x73\x5c\x37\xad\x6e\xfd\xd0\x29\x96\xa2\x1d\x47\x14\x21\xc6\x4a\x88\x98\x0a\x1f\x5c\xb8\x55\xd3\x53\x47\x8c\x70\x0c\x95\x68\x25\xff\x33\xc8\xa6\x31\x86\xb9\xec\x2f\x29\x73\x20\xbb\xb0\xf8\xbd\xdf\x4e\xb0\xc6\xbd\xbd\x1c\xd3\xf3\xe9\x31\x1f\x90\x61\x5b\xd1\xd3\xd0\x97\xbf\x63\xc4\x3f\x44\x65\xc2\x85\x38\x8c\x0f\xb4\xc9\xab\x15\x60\xc6\x28\x23\xbe\xc3\x81\x03\xcf\x6a\x9c\x8e\x4a\x32\x59\x7c\xa1\xa0\xc0\xcf\x82\xb8\x7e\x00\x66\x69\xfe\x58\xbb\xa6\x82\x90\x18\x38\x03\x76\x56\x48\x0d\xce\x5e\xa2\x0c\x93\x13\xe5\xac\xf7\x9d\xb9\x44\xa1\x8e\x09\xe9\x42\xe5\xa9\xfd\xec\x28\x7c\xee\xcb\x56\x5a\x88\xff\xae\x8f\xbf\xa3\xb5\x9d\xd4\x0c\x61\x16\x05\xd0\x80\xd7\xf7\xbe\xdf\x95\x1c\x28\x17\x81\x4b\x73\x36\xc6\xcf\x5b\x3c\x4c\x96\xbd\xa9\xaa\xee\xb4\x29\xd9\x17\x20\x46\xb9\x19\x89\x72\x63\x8c\x26\x45\x4d\xdc\xf5\x21\x61\x89\xd0\x69\x5f\xfe\xe0\x74\x0d\xfb\x8d\x1a\x7e\xc0\xc5\xcb\x60\x74\x71\xed\xa1\xec\xc7\x77\xa8\x6f\x72\xbb\x3c\x11\xa8\x26\x96\xe5\x1a\x0c\x79\x9c\x43\xd1\xab\xa6\xcb\xfc\x80\x17\xd2\xc0\xe4\x50\x00\x4b\xe4\xd6\xab\x66\xff\xdc\xf4\x39\xfe\xd3\x81\xca\xa6\xc0\x26\x38\x0c\xb0\xcb\xad\xdd\xa2\x25\x47\x64\xb8\xf0\x91\x0b\xfc\x36\x9e\x1d\x4f\xdd\x96\x0d\xc9\x65\xd6\x40\x6e\x66\xf6\x64\xbc\x78\x48\x53\x86\xf5\x52\x63\xc1\xdc\x32\x59\x23\x54\x70\x5c\x11\xdc\xd4\xaa\x68\x2e\x90\x0a\x65\xdc\xef\x30\xf9\x2a\xbf\x7f\x14\xe6\x44\x9f\x00\xaa\x70\x72\x47\x4f\xcf\xd3\xd6\x0b\xb8\x82\xeb\x24\xf5\xab\x33\xf6\x28\xd1\xd1\xc1\xa9\x34\x58\xa5\x4d\x5e\x3e\x13\xbb\x41\xc8\xa4\x44\x61\xe1\x3d\xed\x5a\x8a\x8b\x5b\x05\xd0\x6a\x39\xc2\x14\x63\xc7\x80\x81\x2d\x45\x6e\xc5\xec\x16\x35\x70\xfa\x29\xda\xec\x72\xc1\x8b\xee\x86\x59\x47\xfc\x47\xee\x68\x65\xd9\x43\x5c\x8f\x9a\x96\x3a\xeb\x99\xbd\x31\x7b\x3b\xba\x68\x99\xf6\xe2\x7a\xd6\xd6\xf0\x73\x87\x2e\x69\x2e\x62\x31\x74\x4f\x71\x91\xfb\xc7\xa7\x9a\x4c\x91\x2b\x18\x04\xf1\xea\xc7\xe5\x7b\xe6\x05\xbc\x2d\x86\x0f\xd1\x7e\x41\x28\x0c\x59\xfc\x34\x20\x89\x5c\xa6\xb5\x61\xb6\x95\x88\x2b\x15\x7a\x57\x42\x7e\x59\x82\xdc\x4c\xdf\x6f\x7c\x7c\xb5\x42\xad\x89\x4b\x16\x17\x54\xeb\x8c\x8e\xc5\xb2\xcf\x0a\x42\x30\x0e\xce\xdf\xf4\xdc\x79\xfc\x06\x59\x90\x26\xc2\xab\x5a\x25\xe6\xb5\xa2\xc8\x6f\xe6\xdf\x1a\x28\x1c\xd1\x19\xa5\x5d\x4a\xed\x99\x73\xdb\xe5\x7d\xc5\x24\x55\xc1\x7e\x18\x6e\x02\x07\x66\xc2\x32\x7c\x6a\x3f\x8d\xea\xc6\xb1\x57\x20\x38\x37\x41\xdb\x99\x20\x3f\x85\x13\x7d\xef\xd5\x54\x8a\xb9\x9c\x0c\xeb\x73\x2f\x3f\xa2\x43\x06\x4d\x4b\x14\x6a\xb9\xa7\x74\x0d\x26\xec\x72\x0d\x26\x58\x20\xdf\x3a\xf1\x83\x7a\xb9\x65\xfb\xe7\x95\xa3\xdd\xae\x35\xe7\x75\xcc\xe2\x9e\x80\x6b\x22\x9c\xdc\x2f\xd5\xcf\x12\xb4\xb6\xad\x3e\xae\x3f\xf7\x26\xc8\x70\x4e\x67\x78\x7d\xd3\x45\x2a\x03\xa4\x81\x59\x9c\xb4\x81\x91\xc2\x72\xe3\x15\x96\xdc\xff\x55\xf9\xd6\xe5\x91\xef\x72\xa9\xd9\x45\x43\x10\xd3\xb9\x5e\x1b\x7c\x05\xdd\xb4\x18\x57\x3e\xb0\xf9\xad\x2c\xcf\xb6\xbb\x36\x1f\x78\x37\xd3\xfd\x96\xf5\x0e\x13\xbf\x9f\x05\x24\x08\x2b\x30\x89\xdc\x39\x5a\xdb\xa1\xb6\xa7\x6f\xac\xbe\x4b\xbb\x12\x6e\x27\x6d\x28\x43\x96\x97\x56\xe9\x5a\xe5\xa4\x1c\xba\xb8\xd9\x81\x2f\xff\x8f\xad\x1a\x4c\xc5\x21\xcc\xa5\xda\x0d\x7c\x7d\x33\x14\x0d\xcb\x08\xe5\xa0\x25\x99\x83\x06\x3d\x07\x39\xa8\x4c\x40\x1d\x7f\xde\x86\xc1\xa2\x22\xad\x31\xc0\x3d\xe5\x7e\xaa\xe9\x64\x81\x0e\x90\x9b\xcc\x20\xe3\xe3\x9a\x9f\x9b\xb6\x2c\xb5\x66\x7a\x88\xb1\x72\xf2\x45\x4a\x0d\x97\x6c\xd5\x80\x60\xd8\x7f\x2f\xbc\xe9\x1a\x8a\xff\x77\xf4\x1d\x70\xf8\x2e\x5e\xe3\x60\x46\x4c\x7e\x53\xe5\x7e\xc2\xeb\xd4\x85\x85\x1c\x87\x04\xca\xb6\x26\xb7\xf3\xd8\x60\xf1\x5b\xfc\x00\xbc\x3e\x8d\x67\x5e\x4e\x0c\x9d\xd3\x9d\x89\x71\xc3\x61\x69\x01\x1f\x58\x21\xe3\xeb\x20\xfd\xcc\xfc\xc7\xe0\xec\x6f\xeb\x98\x91\x32\x6c\xc4\x6f\x1b\x7e\x58\x78\xb7\x11\x1e\x32\x0a\xce\x41\xd1\x7c\xe2\x2a\x41\x62\x17\x53\x58\x71\xb9\x9c\x9e\xc2\x70\x02\x06\xbb\xe3\xb6\xa8\x3c\x10\x64\x06\x09\x8b\xe2\xf9\x45\xd9\x22\xa5\x0e\xa2\x4b\xa5\x3e\xe3\x88\x3e\xef\xc2\xa8\xcb\x17\xfb\x4f\xe3\x68\xa4\x8d\x34\x02\x64\x13\x24\xc0\xb2\xbf\x9c\x2c\x85\xbf\x19\xd1\xc7\x3d\x5b\x5d\x85\xad\x4a\x69\xa6\x87\xcd\x4f\x67\xe9\x3f\xf5\x6d\xaa\xff\xd3\xff\x78\x4d\x1a\x5d\x21\x26\x37\x22\xeb\xc6\x29\x18\x7f\xe4\xf0\x91\x74\x6d\x14\xdc\x12\xe4\x06\xa4\xd8\x4d\x81\x6e\x95\xfb\x49\x0f\x64\xca\xf9\xa1\x4f\x5c\xec\xfb\xdc\xdd\x2b\xfa\xc3\x8b\xfa\x44\xcd\xf1\x44\x8e\x5c\xb7\x4a\x7b\x2f\x57\xc9\xf7\xc2\x35\x2d\x72\x1b\xe7\x65\x21\x6d\xdc\xad\x13\xba\xaf\xec\xbd\x9d\x39\xa5\x45\x01\x25\xfa\x41\xb1\x8c\xdc\x2e\xce\x87\xdd\xde\x2a\xf1\x77\x4d\x6e\xff\x4b\xc7\xa4\x51\xbe\x97\x2a\xc6\x22\x3b\xbd\x31\xfa\xad\x0d\x1d\xcf\x42\x69\x11\x31\x6a\xa0\x56\x7f\xda\xb6\xd8\xa6\xec\xcd\x29\xa4\xdd\x1e\x02\x74\x02\xb2\x03\x2e\xc3\x2a\xe2\xd2\x38\x29\xaa\xe8\xdf\xdc\x75\xda\x8e\xa2\x8a\xea\x94\x91\x00\xfb\x02\x97\x52\x58\xde\xff\x22\xad\xe6\x33\xbb\xb0\x60\x22\x3e\xf9\x8e\x16\x7f\x38\x4f\x15\xa7\x4a\xe1\xcb\x2e\x90\xc3\x6b\xe2\xa2\xd0\xf7\x88\x49\x04\x16\xe3\xe3\xd3\xb5\xde\x92\xd2\xae\x74\xcf\xf1\xf2\xc3\xe9\x69\x61\x48\x9f\xec\x45\xd5\x8e\xe1\x4a\x35\x41\x13\x5b\xfd\x37\xe6\x64\x37\x8b\x9d\xc8\x49\x15\x4b\x93\xaf\x3b\x7c\x9c\xe4\xdf\x99\x5d\x4a\x04\xdb\x36\x4f\x43\x89\xc7\xe5\x4f\x32\xe3\x7c\x48\xfa\x1c\x00\x6f\x8d\xaf\x4c\x0e\x5c\xae\x21\x76\x18\x46\x89\x4a\xe3\xff\x54\x34\xea\xab\x45\x99\x70\x89\x2e\x96\xa2\x6b\x4e\x66\x63\xa1\x4d\x6c\x6d\x05\x5a\x18\xa2\xc1\xc5\xe2\x7c\xd5\xcd\x7b\x60\x78\xf4\x7b\x06\xcb\x37\x1d\xfa\x16\x54\xb9\x1d\x0f\x43\x24\x59\x40\x5d\x1e\x49\x2a\xaf\x0d\x55\xb4\x89\x09\xbf\x12\xcf\xec\x4d\x9f\x40\x77\xa6\x8f\xe8\x93\x16\x03\x1d\x1d\x1c\xa1\x7b\x4d\xaf\x26\x2d\x43\x6d\x21\x65\x17\xad\x28\xe8\x93\x59\x0f\x33\x5e\x6c\xe5\x6f\x3d\x9b\x3d\x9d\x53\x67\x25\xb2\x41\xe3\x03\x45\xcd\x18\x55\x08\x45\xbc\x27\x8e\xff\xd3\xe0\x0d\x2d\x4d\x35\x17\x2f\xdd\x7a\x27\xe9\xa5\x12\x97\xb0\x49\x76\x7a\xc6\x4f\xcf\x41\xe6\xa1\x2e\x4c\xe9\x8c\x67\xb5\x31\x50\x15\x39\xc4\x8e\xbb\x0f\x50\xe9\xf8\xc3\x70\x8d\xf8\x8b\xec\xaa\x28\x86\x13\x91\x05\xac\x19\xc6\x21\xd3\x0c\x7d\x99\x55\x73\x07\xd6\x29\xde\xb4\x00\x16\xca\x3f\xb9\xf5\x22\x85\x72\x15\x90\x2a\x31\x53\x52\xec\x77\x6f\xbb\x28\xcb\xab\x4b\xf5\x02\xa3\xa9\xc2\xb9\xcc\x0f\xed\x2a\x98\x40\x9d\xdd\x9d\xa8\xd8\x30\xea\x22\x2e\x18\x54\x98\xb7\x5d\xce\xba\x71\x60\x11\xb3\x79\xa1\xfc\xe1\x3d\x69\x00\xb5\x42\x15\xa2\xfc\xf4\x68\xbd\x1b\xab\xda\x0a\x42\xcc\x38\xa1\x0d\xbe\x40\x0d\x93\x25\x4e\x16\x3f\x3f\x09\xe3\xad\x99\xed\xc5\x52\xf4\xaf\x87\x21\x2d\x2e\x0e\x7d\x80\x73\x46\xff\xef\x29\xa8\x47\x97\x51\x2e\xaa\x2d\x8f\xef\xf0\xbb\x5b\xb2\x15\x77\x3a\x32\x57\xac\xaa\xcb\xd4\x0d\x9d\xe2\xd4\xf8\x8f\x2f\xde\xac\x46\x8a\x20\xf5\x1c\xe0\xa0\xb3\x47\x15\x1f\x06\x9b\x06\x2e\xe9\x2a\x96\xa2\x35\x93\x87\x88\x30\x17\x60\xe6\x42\xce\xbb\xf2\xa4\x86\x97\x02\x9f\x09\xf1\x5e\x3f\x3e\xbf\x45\x05\xa5\x72\x4f\x37\xde\x9d\x7c\xe9\x94\x3e\xda\x70\x09\xb2\x53\x77\xb9\x17\xe4\xeb\x6e\x80\x09\x45\xfe\xaf\x43\x15\x98\x7e\x68\x9a\x16\xe6\x1b\xb4\x7d\x6b\xe5\x8b\x8a\xe3\x59\xf3\xe6\xbf\x30\xc9\xd5\x14\x4e\x68\xc8\xd7\x39\x02\xda\x90\xb3\x75\x03\x7f\xc4\x6a\x58\x2a\x57\xff\xd7\x6a\x05\xe2\x2a\x04\x35\xf9\xe4\xe0\x65\xd9\xd3\x73\x0c\x74\x93\x9b\x5f\xd4\xcd\x20\x43\x22\x9b\x3f\xb0\x40\xf8\xb8\xde\xfd\xb8\xaa\x5a\xcd\x25\x6f\xf8\x3d\xfa\xfc\x2e\x7d\x8a\xd0\xed\x5a\xc4\xb6\xe3\xe7\xc9\x07\xaa\x51\xa7\x54\xe3\xb7\x78\x45\xe2\x53\x75\x15\xba\xe6\xb8\x4e\xc9\xb7\x61\x27\x90\x7b\x41\x51\x6c\x09\xdd\x38\xd9\x24\x32\x58\xbf\x17\x02\x2f\xd7\x63\x17\x33\x21\xf0\x92\xbb\xdd\xd6\xfa\x69\x52\x73\x05\xe3\x26\xff\xd2\x61\x5d\x70\x2e\x71\x8f\x8b\x56\xd9\x70\x5a\x4b\x41\x40\xc1\xeb\x33\x37\x45\x41\x8a\xce\x54\xdc\xb3\xfa\x0a\xc5\xbd\xe9\xfd\xa9\xa8\x2c\xc3\xdc\xc1\x8d\xc3\xd4\xb7\x8f\x5d\x54\x2c\x45\x76\x45\x6f\x35\x69\xe8\x71\x2c\xcf\x91\x57\x54\x30\x81\x07\x6a\xbb\xde\x7e\x18\xc6\x71\x93\x96\xa8\x5d\xdb\xa7\x81\x03\x58\x2a\xd1\x94\xfb\xd5\x3b\x82\x56\x06\x58\x4c\x04\x56\x6c\xbd\xc7\x9a\x54\xf9\x68\x83\x7b\x08\x40\x39\xb3\xe6\x19\x89\x17\x0f\x28\x2d\x96\xa2\x4f\xc9\x69\x6a\xb5\x4c\x8a\xa5\xe8\x12\x8d\x98\x06\x7c\xd1\x44\x6e\x68\xf5\x1e\x2d\x9b\xb5\x39\xa9\x63\xfd\x65\x0b\x34\x2b\x57\xfe\xae\x53\x79\x2f\x5e\x2d\x7d\x73\xc3\x10\x65\x4a\x89\xd6\x17\x4b\xd1\xff\x2e\x97\x39\xaa\x8a\x80\xdc\x98\x1b\x7d\x41\x9a\x66\x12\x71\xeb\x27\x2f\xd5\xae\x44\xc0\x3b\xc9\x8c\x94\xcb\x07\x0e\x27\x30\x6c\xc7\x93\xb2\xe5\xa5\x3e\xe3\xc7\x1a\xa3\xac\x0c\xb6\xf2\xaa\xa2\xe1\xfe\x87\x35\x39\x50\x5e\x39\x5f\x75\xaf\x58\x31\xa1\x86\x2d\x40\x5f\x33\x17\x5e\xac\x14\xf4\x0c\x23\xe0\xdf\x88\x7c\x9f\x3b\x36\x2a\xbb\x0a\x4e\x5a\x8a\xe8\x27\xc7\x46\xa9\x5b\x7f\x56\x45\x3d\xc9\x89\x9e\x71\x72\x94\x3a\x4e\xf5\x03\x46\x3c\x0f\xc0\x2a\x73\x3b\xb4\x73\x6d\x52\x4f\x50\xee\x0a\x63\x1e\x80\x4c\x6e\x42\x83\x69\xbc\x31\x49\x57\x7d\x0e\x30\x03\xed\x90\x38\xa9\x1f\x3c\xad\x21\x97\xc3\xb2\x4d\xcc\x22\xc3\x10\xeb\x93\x08\xb8\xd9\x52\x37\x2e\x04\x40\xbd\xc6\xf6\x49\xca\xe3\x61\x40\x78\xec\x33\x7e\xa2\xcd\x64\x7c\x8f\xb2\x2e\xe2\x6a\x16\xd2\xd3\x5e\x4f\x99\x5a\x3c\x30\xbe\x79\x1c\x8a\x73\x1b\x85\x6e\x85\x51\x87\x4f\x24\x8d\x7e\xd3\x65\x36\xe8\x98\x3e\xbb\xe8\xc5\xc5\x55\xfc\x35\x6f\xd1\xcc\x94\x83\x6e\x2a\xd0\x22\x03\x1f\x91\x3a\x8a\xdc\xf7\x4a\xbc\xcb\x59\xdb\x85\x3c\x7c\x28\xd4\x81\xfa\x72\x9b\x27\xe9\x08\x7e\x5c\xa3\x00\x8a\xe1\x63\xaf\x7f\x55\xb0\x42\xd8\x0d\x70\xb9\xcc\xc7\xbb\xcf\x2d\x95\x80\x1e\xa4\x7c\xa7\x9c\x21\xcc\x31\x2d\x1c\x60\x46\x7d\xdc\x13\xf2\xec\x92\x7f\xe6\xac\x42\x9f\x20\x76\x19\xc5\xb7\xac\x72\x56\x78\x63\xf1\xba\x44\x5d\x07\x2e\xd9\x3d\x58\x74\x8c\x89\x78\xd7\x97\x14\xfd\x95\x3a\xb5\x43\x71\x86\xa3\xef\x8c\xd6\x51\xd8\x3d\xdc\xb9\x86\x97\xc2\x3f\x9f\x22\xe8\x26\x0d\x81\xec\xfb\xec\x50\x59\xfd\x96\xc3\xc4\xe3\x29\x47\x4f\xe8\x72\xc5\xa9\xe7\xe0\x3d\xaf\x0c\x95\x89\xd8\x07\xf7\x8b\xfc\xc4\x1d\x8a\x53\x79\x10\x10\x0b\x55\x48\x83\x0b\xe9\xdd\x2f\xe4\x97\x16\x23\x8f\x87\xcd\xfc\x6d\xf5\x09\x32\xd2\x87\x0e\x72\xc1\xdb\x44\xe7\xe4\x9a\x4a\x0d\x14\xc7\xef\x1a\x85\x4d\x4b\xfc\xb0\x27\x6b\x3a\x8d\xc4\x3d\xef\x08\xc4\x98\x3c\x47\x46\x91\x4e\x30\xb1\x5b\xb6\x69\x8c\xd2\xe1\x26\x86\x13\x35\xc8\x10\xf1\xc7\xfb\xe2\xa1\xf4\x45\x9a\x2a\xcf\x38\xf7\xa4\x10\x3d\x27\x0c\x3c\x48\x7f\x34\x41\xc6\x23\x4f\xc4\xa3\xfc\x7b\x7b\x5b\x65\xeb\xd9\x8c\x6b\x59\x35\x3f\x7b\xb8\xea\xc4\xe4\x5a\x3b\x49\x50\xb8\x79\x4e\xb6\x9e\xc4\x26\x75\xa9\x13\x37\xe1\xb6\xe0\x6d\xe4\x5e\x7e\x48\x69\xca\x5c\x64\x82\xe2\xc3\xb1\x8b\x95\xcf\x12\x90\xf8\x3b\xf9\xa8\x8a\x41\x90\xe7\x17\xdb\xb3\x97\xcf\x64\xb4\xbb\x09\x21\x6c\x5c\xfd\xba\x32\x81\xb5\x50\xda\x99\x18\x7b\x1e\x51\xc0\x1d\xa1\x53\xe6\xbb\x89\x93\x9a\xac\xbc\x15\xfa\x65\x6e\x30\xc4\xb3\xf9\x57\x5f\x4e\xef\x5b\x8d\xaa\x6d\x41\xcd\x1d\xa5\x2e\xe5\xd4\x41\xca\x18\x57\x4f\x28\x71\x8b\x13\x00\xe2\xe8\x8e\x08\xc2\xeb\xf2\x1b\xae\xbf\x26\x19\x40\x7f\x5d\xd7\xfb\xe3\x3a\x5b\x5c\x1e\x67\x8c\x86\x33\x0c\x89\x5d\xe1\x94\x70\x28\x44\xf3\xf7\x8f\x96\x35\x43\xc7\xac\xa2\x32\x59\xb8\xe9\xac\x02\xed\x4a\xaa\x5b\x8e\x85\xd9\x9f\x9e\x8b\x36\xa6\xc0\xcd\x73\x5f\x9d\x32\x4a\x4b\x38\xbe\xf0\x6d\x2a\xac\x7a\x59\xe8\x50\x2b\xb6\xac\x0f\xe9\x96\xab\xac\x4e\x12\xef\x1e\xe3\x23\x0b\xb2\x2b\x91\x1e\x82\xa8\x4d\xdd\x5a\x06\x24\xf9\x4e\xe2\x62\x0a\x7a\x1c\x72\x6c\x7c\xc5\x40\xbd\x09\x76\xb8\xde\x09\x50\xaf\x06\x94\x15\xa6\x9d\xd8\x0d\x94\xfa\xf2\xbf\x3f\x2c\x87\xe9\x41\x5b\x53\x85\x69\x1d\x57\xec\x27\x68\x68\xd3\x10\x20\x17\xff\x50\x1f\xa1\x4c\xa2\x59\x72\x82\x8d\x1f\x3c\xa2\x79\x89\x53\x31\xf3\x3d\x39\xb3\x09\x85\x4b\x59\x90\xa2\x70\x3f\xb4\x11\x6e\x57\x27\x72\x78\xc2\x78\xe8\x94\xf4\x81\x6a\xb4\x15\x4b\xd1\xa8\xad\xd9\x47\x83\xba\x50\x03\xfb\x21\x2c\xf4\x92\xb7\xf7\x99\x65\xaa\xc0\x48\x58\xc5\xdc\x72\xb3\xf0\xb1\xd9\xb2\x92\xae\x52\x66\x36\x73\x57\x72\xfd\xc6\xab\xfa\x88\x35\x11\x06\x9f\x5e\xa0\xac\x73\x49\x10\xa6\x7c\xad\xdc\x58\xf7\x7c\xfc\x54\x1f\x26\x27\xf9\x55\xb7\x29\x06\x61\xd4\xf1\x50\xc0\x08\xf7\xd4\x2b\x8c\x9b\x9b\xcc\x32\xb9\x76\x42\xb1\x14\x11\x4d\xa5\x30\x19\xf8\x8b\x52\xec\x3d\x47\x75\x33\x45\xcc\xa5\x47\x85\xff\xc0\xcc\xe9\xd9\xe7\x3d\x7b\x7a\x32\x2e\xb1\x0f\xaa\xeb\xee\x0a\x31\xf9\xcb\x2b\x96\xa2\xef\xef\xfe\xa0\xd6\x15\x10\x5c\xf5\xcf\xa3\x73\x9b\x7b\x5c\x5b\x4d\x96\x05\x01\x2c\xfa\xe4\x3e\xb5\x89\x42\x0e\x78\x35\x17\x56\xae\xd5\xb6\x3e\xa8\x4e\x19\xa8\x47\x5d\x1f\x49\x67\x02\xb0\xef\x5d\x73\x5c\x91\x18\xa0\xe0\x61\x97\x5c\x6d\xaf\x43\xbb\x25\x16\xb6\x53\xbe\x4b\x61\xfa\x06\xd9\xf9\xf3\xcf\x24\xd1\xd8\xbf\x7a\x5e\x61\x4f\x62\xbb\x5a\xc4\x8e\x67\xd3\x06\xd4\x68\x27\x84\xc1\x2c\x76\xca\x88\x31\x4e\x50\x8e\xbe\x77\x36\x3b\x96\xeb\xc5\x24\x38\x1f\x9b\x37\xff\xc0\x46\x19\x32\x1a\x34\x54\x5a\x93\xae\xbd\xe9\x5c\xae\x1b\x97\x9b\x6e\x90\xa7\x29\x06\x70\x39\x01\x2c\xa4\x6e\x73\xd6\xf4\x64\x3c\xeb\x91\x44\xa6\xc9\xf8\xc9\x4c\x95\x03\xca\x29\xda\x32\xde\xbc\x7e\x20\xa1\xed\xd2\xd0\x06\xf8\xdd\x8d\x07\x92\x56\xba\x4c\x6c\xcc\xef\x67\x38\x5a\xc3\x13\x20\x56\xc7\x60\x11\xb8\x7a\x61\xd3\xee\x9d\xe1\x64\x6b\x5c\x28\x28\x68\xb2\x6e\x8b\x3a\xc5\x52\x74\x45\x67\x93\x1c\x86\x19\xfa\xc2\xfe\xc1\x18\xff\xa4\x2e\xb9\xe7\x94\xc5\xab\x8a\x46\x3e\x90\xbe\xf5\x90\x2f\x4d\xc6\x3d\xd7\x22\xa9\xa9\xca\xcc\x3f\xd7\xba\x57\x97\x6f\xe1\xd4\xf4\x2c\x3f\x2a\xff\xe1\xb9\x4d\xf4\xca\x80\x21\x33\x10\x6d\x47\xa1\xab\x5d\x9e\xf9\x0a\xb6\x49\x3d\x41\xdd\xe5\xbe\xf7\xa8\xb2\x75\x64\x0c\x10\x12\xcb\x07\x6b\x31\x45\x78\xad\x35\x84\x94\x11\xdf\x23\x7c\xe1\x2d\x6d\xd5\x80\x7d\x6a\xd7\x33\x4d\xd6\xa7\xfb\x29\x50\xe1\xcc\x7a\xc0\xf8\xe1\xa3\x1a\xe8\xc6\xa6\x8c\x54\x90\x2a\x7c\xb2\x6b\x9c\x2a\x2b\x68\xda\x28\xf9\xcc\x3f\xe8\x18\xad\xbd\xa8\x2a\x76\x2b\x22\x55\x7c\xee\xed\x84\xc3\x8f\x7c\x9f\x70\x28\x31\x99\x22\x4b\x83\xe9\x33\xda\xa6\x4f\x8b\xff\xf0\xf7\xab\xe4\x65\x01\x67\x65\xcf\x06\x7d\xf5\xfc\x5f\x99\xcc\x08\x2e\xf2\x3c\x61\x09\xf7\x93\x1e\x19\x7a\x39\xaf\xff\x3d\x1b\xa1\x87\x5c\x48\x89\x4a\xb1\x7e\x7e\xcf\x68\x25\xc8\x31\x8f\x82\x40\x12\x2c\x25\xcd\xc1\x19\x99\x5e\x33\x4c\xbd\xc6\x0a\x53\x0b\x32\xa5\xd4\x89\x6b\x62\xb7\x97\x97\x14\xeb\xef\x52\x44\xed\x50\xc8\x01\x83\xf9\x9f\x3d\x2a\x7f\x4e\x9d\xc6\xe9\xd8\x26\x01\xd7\xb1\xc8\xaf\x78\x53\xdb\x0a\xa2\xc0\xb4\x2a\x54\x90\x84\xae\x19\xa8\xc9\xb4\x57\xab\xc4\x06\x85\x74\x31\x55\xfd\xd9\x9b\x8a\x28\x62\xe8\x56\x92\x17\x62\x38\x95\x61\x8a\x56\x5f\x9d\x04\xfc\x63\xdf\x7b\x35\x3c\x70\x27\xf4\x93\xad\xc8\xad\x1b\x74\x89\x3e\x3e\x4c\x84\x51\xf7\xb2\x76\x99\x58\x53\x06\x9b\x4c\x55\x27\x5a\x15\xc8\xa9\x69\x51\xda\xbc\x20\x9c\x79\x3c\xfb\x05\x01\x6d\x3b\x75\xb6\xd0\xc0\xbe\xf5\xf5\x44\x31\xdc\xf6\xc1\x5a\x6e\xd3\x2e\xad\x14\x41\x5d\xe2\xd3\xe4\x96\xf6\x0e\x4e\x72\xb8\x00\x9e\x18\xd7\x8d\x53\x09\xce\x8c\xba\x9c\xc2\x10\xbd\x38\x47\xf1\xda\x02\x69\x10\x9e\x88\xae\x1f\x37\xba\x39\x11\x25\xfd\xfa\x8d\x7b\xe5\x19\xf6\x4d\x86\x9c\x32\x48\xe4\x1a\x4f\x9e\xcc\x8e\x62\x3f\x25\x68\x97\xb9\x2d\x5b\x55\xd4\xea\xac\x59\xf1\x5f\x9e\xdf\x72\x35\xe7\x1c\xa5\xac\xb8\xb9\xd5\x10\xe0\x12\xe3\xf9\x9f\x8f\x47\xc1\xf8\xf6\x9e\xd9\xe5\x0a\x6e\xaf\x4c\x9f\xa7\x53\xbd\xc5\xde\xef\x7d\xa7\x35\xcc\x1f\x05\x89\x77\x3e\xb1\x2d\xbc\xc7\xd5\x85\xf1\xcb\x18\x58\xaa\xd0\xd4\xfa\x2e\x14\x57\x6b\x08\x97\x5c\x97\x95\xeb\x57\x1f\xd7\x69\x59\xdc\x57\x8a\x48\x96\x64\xe1\xba\xbd\xad\x92\x97\xd6\xec\xa1\xb8\x75\xb4\x82\x00\x62\x18\x05\x42\xe4\xff\xa6\xb7\xb4\xe9\x77\x2d\x51\x2c\x2d\x8c\x5d\x36\x22\x89\x58\xc8\xad\xf1\x1b\xc4\xab\xa3\xae\xb7\x44\x1b\x47\xbb\x61\x56\xbf\xc2\x96\xe3\xf6\xd9\xb3\x39\x04\x79\x6f\x73\xda\x91\x6e\x35\xdf\xac\x64\xbf\x0d\x65\x58\x5b\x6e\xe4\x5f\x5a\x00\xd3\x64\xc6\x89\xe3\xf1\x3f\x7a\xdf\x04\x89\x95\xe1\xee\x48\xfa\x81\x3d\x39\x4e\xec\xf5\xb1\x53\xb6\x85\x3c\xe4\xe9\x6d\xd2\x0c\xa1\x5b\x6a\x14\x46\xdf\xae\x5e\x7c\x9e\xd8\x9b\xc0\x76\x3e\xb2\x4c\xd3\x53\xe8\x26\x6e\x2d\x55\xb8\xcb\xff\xba\x5d\x86\x8a\x32\xb6\x81\x79\xfb\xa4\x8e\x2f\x44\x0c\x63\x96\x28\x5a\xd1\x27\x15\xcc\x0e\x88\x8a\x97\xfa\x72\xb3\x2e\x50\x1c\x38\xb9\x35\x27\x94\x0a\x7f\xdd\x7f\xb1\x76\xb3\xfd\x20\x95\x33\x2b\x84\x62\x4d\x50\x43\x04\x90\xe0\xef\xbe\xa5\xe0\x32\x92\x49\xe3\x35\x56\x93\xb0\x2b\x8e\x3b\x24\x38\x88\xe3\x8f\x65\x2f\xc6\x2c\x41\x65\x36\xfe\x53\xc0\xb0\xcb\x34\x0e\x49\xa5\x3e\xe3\x17\x4b\x95\xbb\x25\xf0\xd2\x71\x2e\xf5\xa6\x28\xa4\x3c\x9b\x76\x0b\xb0\x1e\x11\x68\x63\x93\xba\x55\x9b\x98\x5c\x70\xea\xe3\x2b\xd3\x93\xd9\x89\x9a\xc5\xbd\xff\xe1\xf2\x34\x7f\xb9\x04\x65\xa8\x2e\x4b\xef\xce\x9a\xb5\x01\xc2\x3d\xda\x36\x59\x05\x62\xaf\xf7\x29\xe5\xc3\x93\x9b\x99\x4e\x37\xe2\xa4\x11\x90\xc5\xfb\xc3\xb3\x23\x54\xd8\x39\x37\x81\x88\x03\x75\xf5\x7d\xa2\x9d\x89\x7f\xc2\xe0\x27\xe1\xc4\x5f\x4b\x2d\x15\x3e\x99\x9f\xd2\x79\x61\xf2\x43\xe7\x14\x4b\x51\xc1\x4e\x5c\x65\x41\xa2\x5b\x2d\x25\x7e\xb4\xf9\x3c\xcb\xb7\x44\x6d\xb7\x7b\xc0\x45\x2a\xed\xf6\xe6\xe5\xf3\xaf\xe0\x71\x23\x7e\x72\x67\x5e\xd5\x4c\x35\x4c\x93\x8f\x07\x52\x1a\xf4\x56\x4d\x77\x31\x20\x65\x1c\x48\xc6\xc5\xcc\x53\x4a\x45\x6b\x37\x8a\xe5\x06\x68\xda\xc7\x3f\x7b\xdf\x22\xa8\xda\x88\xe3\x51\x21\x5f\x95\x5b\x54\x50\x04\xe3\xaa\x55\xc2\x44\x19\x7d\xf7\x51\x65\x23\x19\xba\x45\x38\x64\xf9\xf0\xe1\x74\x6f\x28\xc4\x13\x97\x5d\x17\x15\xc6\x0d\x53\x51\x28\x22\xfb\x8e\x7b\xa2\x49\xf7\x2b\x6e\x34\x51\x02\x1a\xe5\xbf\xfe\xb9\xe9\x10\xea\x16\xb0\x46\x05\x2b\xa1\x2e\xff\x45\x5b\x51\xe8\xba\x92\xfb\xe2\x7f\xb9\x57\x79\x77\x34\x40\x1e\xad\x73\x38\xe4\xa9\x97\x9b\xad\x8b\x29\x0b\x48\x98\x28\x4b\x3e\xa1\xac\x18\xca\x30\x83\x8e\x0f\xe4\x17\x16\xcb\xaf\x68\x21\xb7\x52\x46\xfc\xec\xfe\x7b\x07\x3c\xa5\x05\xc4\x26\xc9\x4c\xe4\xa9\x1d\xb2\xcc\x10\xca\xf5\xf2\x58\xf4\xac\xcb\x76\x28\x16\xa9\x59\xb0\x16\xf8\x77\x6d\x0e\xec\x07\xb8\x1b\xb1\x40\x14\x5e\xc9\x59\x59\x35\x50\xf1\x91\xa0\x2e\x9f\x97\xe4\xcd\xe8\x3c\x1d\xbd\xc3\xcb\xd7\x03\x30\x7b\x9f\xd9\x36\x33\xfe\x1d\xdf\x3d\xac\xe5\x7f\x1c\xb7\x31\x80\x4a\x2a\x0c\x7b\x2b\x5b\x80\xcc\x98\x2d\x21\x01\xc0\x4b\x7a\x47\x7e\xb1\x44\xbf\xd9\x4c\x74\xe8\xaf\x1d\xa0\x2c\x7f\xb0\x1b\x30\xda\x74\x6b\x0f\x9f\xd4\x75\x58\x5d\x9a\x69\x87\x73\xef\x2d\xc0\x38\x71\x29\xad\x93\x2e\x05\x0a\x18\x2d\x3b\x32\x4c\x11\xa0\xeb\x16\xb2\x50\x03\x8f\x08\x2c\x84\x69\x86\x4e\x68\x03\x65\x23\x57\xee\x9d\xa4\x55\x21\x24\x10\x83\x7a\xbd\x89\xfe\xea\x1d\x1a\xc6\x19\x73\xf3\xfb\x64\xdd\x34\xbd\x5d\xe1\x1d\x71\x56\x4c\x9c\xfe\x26\xb6\x65\x5f\x14\xb2\xab\x14\xcc\xc3\x54\x12\xef\x2f\x77\x2b\x73\x08\x8c\x9c\xa4\x56\xfb\xe7\xa3\xca\xaa\x0f\xbc\x73\xd2\xc2\xfa\x13\x8f\x0e\x51\x58\x88\x6e\x5c\xca\xfe\xf3\xc9\xe1\x4a\xad\x5d\x27\x3e\xec\xec\x26\xdf\xa6\x76\x07\x5d\xa8\x12\x57\x53\x07\xfb\xc9\x6b\x50\xc7\xbc\x64\x3c\x79\x32\xb1\x29\x00\x37\x68\x5e\x75\xfd\xe0\x15\x5d\xe0\x9f\xa3\xef\xb8\xfa\xe0\xb6\xab\x47\x88\x78\x97\x35\x57\x0b\x34\x07\x64\x87\x70\x67\x1e\xd9\x54\x2e\xd6\x30\x60\xbe\x8d\x1a\xdc\x4e\x2e\x6e\xbf\x3b\xf6\x0b\x15\x1d\x93\x06\x36\x72\xd3\xee\xf7\xe4\x6a\xb8\x3e\xd7\xf5\x10\x5f\xf4\x92\x85\xc2\x83\x70\x06\x96\x63\xb7\xca\x70\xb7\x52\xd1\xbc\x72\x57\x8b\x5a\xa2\xf3\x52\x9c\x47\x0f\xaa\x51\xae\x03\x8c\x4c\x0b\x33\x61\x46\x7e\x97\xd0\x93\x5c\x10\xf7\x5e\xc4\x0c\x92\x3e\x69\xf3\x63\xf2\x38\x8b\xb9\x65\xfa\x2a\x8c\xb3\x4d\xed\xa8\x1f\x24\x54\x8b\xca\x64\x5d\x5d\x01\x73\x39\x7f\x8e\x4c\x78\xd7\xd2\xb9\x12\xae\x20\x03\x15\x66\x3d\x20\x8f\x53\x5c\x8b\x99\xd0\x16\xfc\xf5\x35\xd5\xe9\x9a\x38\x28\xe0\xdd\x51\x61\xc1\xb3\xda\xce\xcb\x29\x23\xdf\x47\x15\x31\xa1\xc8\xb7\xbc\xd6\xaa\xb6\x61\xdc\x1c\x50\x39\x80\x7d\x0f\x6a\x10\x0a\x46\xcb\xa8\x6c\x37\x12\xb3\x89\x3f\x3f\xdf\xe4\xb8\x94\xcc\xb7\xe2\x80\x47\x07\xaa\x94\x81\xb8\xce\x10\x9b\x23\xa3\xff\x3c\xd9\xb5\xd9\x54\xcc\x91\x0f\x58\x32\x2e\x4d\x10\xa1\xfe\xd6\x83\xf2\x7d\x59\x18\xd9\x89\x87\x77\x6e\xfb\x69\xd5\xe7\x92\xcf\x13\x93\x2b\xf0\xe5\xca\x88\x8c\x3e\x18\xb7\x9e\x29\xf5\x19\xa3\x35\xbf\xbe\x6e\x64\xdb\xd4\x13\xb3\xb8\x9e\x93\x4d\x5e\x79\x2e\x1c\x5d\x28\xa6\xa2\xa5\x2f\xc8\x36\x1b\xf7\x78\x36\xf5\x09\xc7\x88\x44\x9f\x5d\xa9\xcc\xc4\x43\x56\xe3\x2d\xdc\x63\x77\x68\x02\x19\x1e\x31\x93\x77\xff\xc6\x23\xd0\x5a\x2e\x6e\x84\x0a\x7e\x26\xf7\x97\xc1\x30\x0d\xfc\x18\x05\x59\xa5\xf0\x71\x39\x47\xe0\x63\x9b\x1f\x89\x22\x67\x01\xaf\xa9\x00\x8c\xfa\x9b\xb9\xa3\x93\xfc\x18\x34\x15\xdf\x76\xa0\x6d\x45\x42\xdf\xb4\x93\xa1\x47\x6e\xec\x8b\x1a\xd3\x26\xa0\xb4\x92\x88\x78\xb8\xb7\xb5\x88\x6f\x6a\x11\x1b\xc5\x4d\x2e\x68\x73\x16\xfe\xdf\xc9\x11\xca\xe6\xd9\xc7\xd8\x81\xd8\xfd\x1e\x21\xaf\x47\xcb\x36\xa9\x41\x4a\x77\xee\x1e\x24\x6a\xa5\x86\x85\x9d\x62\x29\xba\x64\x7e\x36\x71\x05\x96\xa0\x00\xe5\xde\x4d\xf4\x6d\x1b\x48\x38\xd2\xf3\x1b\xf4\x68\xc7\x28\x79\x78\x4c\x2b\x6e\x07\x40\x25\xb1\xaf\x30\x69\x0e\x64\xa5\x6b\xaf\x2b\x71\x65\xaf\xe1\xca\x32\x80\x86\x76\x66\x7c\x54\x20\x0b\x2f\xd7\xaa\xd2\x54\x5e\xe2\x3c\x23\xc0\xfc\xf4\xbd\xf0\xc1\xf9\x8a\x30\x8e\x76\xdf\x1a\xac\x49\xb9\x33\x52\x49\x3c\x41\xa2\x35\xfa\xbc\x50\xa8\x23\x1a\x3f\xdd\xac\x34\x95\x94\x56\xca\x0d\x80\xa3\x5e\xf8\x8a\xb6\x67\xb2\x88\x0f\x1c\xca\xfc\xd6\xfe\x4d\x17\xce\x89\xe3\x75\x92\x4d\x3e\xb5\x4c\x9d\x67\x3b\xf1\xab\x89\x0b\xd3\x05\xf0\x98\x56\x60\xe2\xf2\xf1\xaf\xdc\xca\x57\x0f\xc1\x59\xe3\x6c\xa9\x90\xa1\x1a\x87\x92\x16\x66\xcd\x91\x29\x01\x55\xea\x98\x81\x2c\xff\x08\x6d\x83\x1d\x7f\xea\xc4\xd9\x70\x6f\x3a\x7a\x11\xa6\xd2\x85\xd9\x0a\x54\xee\xd6\xa4\x13\x1d\xdd\x2b\xf4\xeb\x43\x15\xca\x90\x6f\x3f\x94\xae\xd2\x6d\xae\xf8\x71\x68\xe1\x60\x91\x55\x84\x6c\x73\x5f\xbe\x9d\x65\xeb\x2a\x0b\x95\x49\x10\xf2\x35\x10\x60\x9e\xbf\x72\x36\xbd\x11\x6d\x33\xaf\x8a\xff\xc9\x57\x7a\x95\x69\x0e\x0d\x88\x08\xe6\x4f\x55\x15\xc7\x22\xcc\xea\x90\x74\x3f\xb3\x79\x68\x12\xf7\x7d\x0f\x9a\x9e\xe8\xd0\x8b\x43\x93\xf4\x0f\x65\x2f\x2f\x79\xf7\x08\x25\x0f\x2f\x4e\x11\xc8\x2e\x96\xa2\x5f\x2c\xc8\x86\x87\x5e\x0b\xd1\x2b\x32\x30\x87\x2f\xcc\x93\x6b\x6a\x19\x66\xf9\x85\xa7\x3b\xd4\x21\x0f\x48\xad\x19\x5f\xe9\x19\xa9\x4d\x22\x8a\x88\x71\x72\xcc\xbe\x1d\x2d\x4a\x8c\xa7\x6e\xba\x94\x9a\xb5\x43\x56\x30\xd4\x37\x11\x17\xf0\xcb\xef\xd4\xe0\x5a\x50\x65\x98\x82\xcd\x63\xfc\xa1\x55\xeb\x2a\xa9\x13\xff\x4c\x81\x28\xcb\x1d\x9e\xa0\xfd\x67\x21\xf0\x0b\x9d\xc3\xab\x4f\x69\xdd\x01\x0b\x38\x80\x45\x88\x98\x44\x8d\xe9\x1a\xed\x20\x64\x26\x97\x6a\x54\xc1\x03\xf5\xc9\xd9\x67\xd7\x49\x10\xdf\xee\x28\x04\xac\xc5\x70\x80\xaf\xd1\xcd\xf2\xa3\x6f\x3f\x7f\x61\xd2\xb6\x94\x8a\xa5\x36\x95\xc3\xcd\x5c\x41\xe2\xaf\x1d\xcb\xe2\x17\x68\x19\xb3\x5a\x96\x52\x93\xff\xf2\x33\x23\x14\x45\xdc\x3a\xb5\xa1\x9d\xbc\x4e\x13\x3f\xa4\xd5\x2a\x37\x71\xe5\x0f\xf6\xa5\x43\xc2\x8a\xce\x0e\x5d\x08\x69\xb9\xcf\xce\x1b\xa9\x25\x3c\xe2\x82\xdc\xda\x96\x0e\x8d\x9a\x67\x5a\xd4\x46\xcc\xb7\x88\x07\x7f\x81\x3c\xd2\x54\xf2\x61\x2e\x8c\xa6\x4c\x5c\xa2\x11\x85\x74\x70\xe0\x11\xa6\xd4\x2d\xef\x7f\x59\xd5\xdd\x0a\x5d\x10\x13\x3b\xf3\x10\xa4\x8c\x8e\xe9\xdc\xe1\x39\xff\x23\x0d\x8a\xc6\xed\x04\x5d\x4a\xe1\x33\x1a\x17\x8c\xd1\x1c\x8d\x7d\x1f\xa7\x66\x3a\x23\xd6\x5d\xa6\x27\xc0\x80\x51\x9b\xf7\x0e\x3a\x5c\xf7\xa3\x03\x75\x3b\x3b\x16\x10\x13\xdc\x9e\xa1\xd5\x37\x1a\x53\xd2\x05\x81\x6b\xb2\xa6\x3a\x3e\x77\x4a\x8b\xa8\xa8\x86\x45\xee\xc9\x7d\x73\x93\x22\x8f\x44\x5d\x87\x86\xe0\x5f\xbd\x44\xc7\x25\x8a\x05\x0a\x1c\xd5\x0b\x9e\x55\xa0\x91\x98\x63\xae\xc5\x1a\x33\x3f\xf9\x9c\x02\x29\x72\x92\x48\x35\xea\xd1\x56\x65\x24\x6b\xdb\x24\x03\x3e\x28\x4c\x98\x2b\xea\x4d\x54\xcd\xbc\x89\x03\x3b\xe5\x8e\xbe\x82\x02\x35\x85\x1b\x1b\x56\x66\xe7\x1b\x97\x89\x6b\xf2\x59\x05\xf7\xe0\x01\xd0\xaf\x14\xfd\xc7\x6e\x85\x85\xc5\x82\x66\x34\xc0\xad\x97\x27\x40\x8d\x5a\x0d\x40\x00\xb9\x31\x8b\xe0\xa2\x20\xbb\xf8\x31\x6c\x55\x88\x3c\x39\x8f\x6d\xcb\x3e\x9c\xf5\x21\xb7\x48\x4b\x98\xa3\xf3\x5f\x95\x3a\xa6\x80\xb7\xbc\x6d\xd1\x68\x05\x56\xe3\x67\x5b\xcc\x8e\x73\x7a\x61\x57\xc1\xd8\xf1\x53\x00\xe7\x6b\xa2\x27\xec\x98\xdd\x1e\xff\x2c\x67\xa7\x7c\x63\xa8\x5a\xb5\x43\xe1\x06\xf9\xf0\x03\xba\x7d\x8d\x2d\xf9\x9f\xd1\xb3\x2f\xaa\x73\x28\x86\x39\xf0\xbb\xd4\x97\x7b\xe3\xb0\x8c\x7f\xa9\xb0\x79\xfc\x1f\x1e\x5e\xab\x80\x6f\xc2\xf8\xfe\x73\xf9\xc9\x73\x59\xe4\x4e\x85\xf8\x1e\xa3\x71\x21\x4a\xa8\x9b\xaa\x50\x1a\x33\x2b\xfa\x78\xc0\x0f\x8a\xb8\x5a\x05\x56\xa9\x00\x1a\xfc\xed\x31\xd5\xb5\x5e\xa9\x20\x6e\x77\x5b\x94\x52\x56\x39\x26\x93\x77\xc8\xc5\x81\x19\x27\xb6\x4f\x08\xdb\x5e\x31\x32\xe7\x17\xef\x5b\x07\xb2\xc6\x07\x58\x74\x45\xe7\xb3\x1f\xce\x7f\xf4\xa1\x34\x55\x22\x3b\x4e\xbd\x93\x5b\xb5\xb5\x2b\x09\x02\x3b\xb9\x2d\xc6\xcb\x6b\xd3\x90\x81\x6d\x85\xf9\x56\xf8\x44\x8f\x86\x71\x8f\x6b\x16\xde\x5f\x14\xee\xcb\x06\x64\x8b\xd4\xac\xa2\x1f\xa0\x2e\x9c\xc0\x9c\x6e\xdf\x27\x07\xd5\x9d\x6d\x1e\x7f\xfa\x8f\x68\x84\x77\x0b\xa5\x7b\x99\x0b\x15\x79\x87\x04\x77\xc0\x93\xdc\x4c\xa5\x04\xaa\x12\x6c\x57\x84\x07\xf7\x2f\xdf\xd5\xc4\xbc\x10\xe7\xde\xf1\x22\xc8\xf8\xf3\x43\x29\x87\xd7\xe7\x40\x0a\x9e\xfc\xfe\xb2\x60\xac\x52\xfa\x54\x70\xd3\xda\xde\xf8\xb7\xb3\xb2\xf5\x0d\x6b\xbc\x4d\x7d\x6b\x62\x8b\xa8\x54\x89\xe3\xc5\x1d\x9d\x28\x1f\xf3\x7f\x9f\x90\x41\xcb\x82\x82\xba\x18\x26\xfe\xed\xb8\x96\x4f\xc0\x80\x19\x89\x66\x20\xbe\xd0\xd7\x1c\xcc\xa8\x89\xc4\x9d\x02\x27\xaf\x3e\x27\x1f\x5b\x05\x31\x7e\x9a\x1f\x5b\x28\x19\xc9\x26\x15\x47\xff\xd3\x75\x45\x12\x38\x7e\xc7\x23\xef\x4e\xff\x60\xd6\x55\xc5\xf8\x53\x7c\x63\x41\x8b\xac\x02\x95\x7d\xa0\xf1\xed\xde\xec\x7b\xa8\x20\x26\x30\x6f\xc6\x8d\x53\x46\x28\x13\x26\x56\xe9\x46\xdc\xe2\xdf\xe8\xda\x22\xae\x6b\x7b\xfc\xbb\x6e\x1f\x0d\x27\xb4\x8c\x83\x6e\xcc\x47\x04\x7d\xc6\xad\xab\xd3\x70\x7d\xbe\xb1\xcb\xa2\xbb\x75\x9d\xcc\x6e\x9f\x03\xd6\x13\x45\xc9\xdc\x4f\xee\xd2\xfd\x3f\xb8\xa2\x08\xb7\xef\x4a\x44\xed\xa7\x9c\xd0\xc5\x9e\xeb\xbc\x23\x14\x3a\xee\x81\x0e\x13\x69\xf8\x01\x76\x12\x66\xef\xee\x56\x95\x7f\x5a\x61\x84\x9f\x95\x43\xf3\x07\xa5\x7f\xda\xc1\xf7\x92\x9f\xdf\x71\x71\xf2\x03\xea\x4d\x8b\x69\xe3\x6f\xdb\xd4\x3c\xca\xc5\x12\xe3\xf6\x7e\x42\x22\xc2\xce\x84\x2e\xcc\x85\xc7\xb4\xc8\xc5\x90\xeb\xc7\x31\x05\x32\xe9\x7f\x6c\x4c\xc7\x92\x44\x9a\x6e\x4d\xb2\x52\xda\x11\x4b\xa0\xd1\xf9\xe3\x93\xe0\x69\x77\x5b\x98\x61\x10\xc7\xc8\xdf\xf3\x46\xb6\x58\x48\xfb\xc9\xa4\x37\xb3\x1f\x69\x51\x92\x59\x35\xc4\x89\x2f\xfb\xfd\x33\xc5\xa0\xdb\xc6\x88\x15\xcd\x90\x1f\xb1\xf7\x49\xe8\x2d\x72\x65\x4d\x1a\xfd\xe9\xac\xe6\x35\x24\x7a\xf0\xd4\x28\xc2\xd8\xb6\x69\x64\x7a\x8c\x54\xaf\xf2\xe8\xe0\x1e\x51\x2b\x43\xdf\x05\xbb\xd3\x6f\x8f\x56\x66\xb4\xd8\x03\x47\xa6\x68\xcc\x61\x65\x24\xcf\x50\x99\x8b\x2c\x46\xbf\xdb\xac\x41\x33\x83\x38\xc3\x73\x55\xe9\xe0\xc8\x28\xf5\x1f\xb8\x95\x2a\x12\x32\xe4\x15\x89\x24\xc3\x8e\x4e\x5f\x8b\x6e\x7f\x56\x71\x92\xc6\x48\x08\x18\x1a\xd3\x46\x8b\xc5\x04\x01\xe6\x31\x79\x44\x49\xd0\xd4\x55\x3d\xa2\x72\x5f\xd7\xf6\x79\x15\x16\xd6\x52\x8c\xee\xdf\xc0\x1e\x95\x1b\x07\xf0\x09\x4a\xdc\x7a\xc0\x64\xe2\x72\x0d\x70\x5c\xf6\xe3\xae\x82\xf9\xc2\x04\xd8\x7d\x4c\x93\x0a\x4d\x91\x6b\xf7\x5f\x9e\xbd\xac\x1c\x64\x06\xc3\xda\x1d\x43\x47\xca\x17\xa3\x3e\xfb\x45\xf7\xc2\xb3\x5f\x11\x32\x92\x62\x8c\xa6\x07\x17\xb9\x2a\xba\x46\xa1\x0b\x1b\x5f\x3b\xae\x49\xc1\xa0\xb0\x42\x52\x84\x5d\xd4\xab\x29\xc5\xa0\x1a\x76\x2b\x48\x6e\x76\xee\x78\x21\x7b\x75\x51\xb9\x12\xda\x59\x10\x82\xb1\x61\x75\x73\x63\xea\xc5\x57\x57\xcc\x0b\xde\xf6\x14\x3d\x63\xee\x2a\x27\xec\x0c\xfe\x3e\x57\x2b\x49\x61\xab\x97\xa8\x3a\xee\x38\x7d\xa9\x12\x87\xb9\x67\x7f\xd0\xac\xe5\x7e\xe9\x3e\x65\x5c\x24\x2c\x2b\xf2\xff\x32\x5e\x9f\x5f\x40\x84\x6e\x2b\x96\xa2\x9a\xd0\xdd\x5d\x84\x58\x05\xe6\x13\xdf\x5d\xad\x82\xf4\x43\x37\x71\x07\xfb\x28\x50\x19\x8b\x8b\xa8\x4d\x4d\x04\x42\x8c\xd9\xd8\x37\xf6\x72\xc8\x21\x37\xb8\x15\xea\x62\x9f\xef\x8a\x78\x01\xf9\x99\x16\xad\xa2\xaf\x63\x37\xc4\x40\x6f\x93\xde\x66\x2b\x74\x79\x5f\x86\x8b\x15\xd4\x2d\x76\xaf\xc6\x0b\xb7\xa8\x66\xf3\x35\xe2\xe2\x64\x1d\x37\xff\x45\x89\xda\xac\x32\xea\xe8\xd7\xe1\xbe\x17\x75\x1e\x84\x4b\x3d\x9a\x9e\xbc\x2b\x03\x45\xef\x3d\x34\x4d\xec\x83\x5a\xc7\xe7\x3b\xf5\x41\xa7\x8d\x4d\xea\x88\x8f\x33\x51\xab\xcb\x6d\x8c\x7c\x01\xa6\x2b\xdc\x79\x3a\xfb\x7d\x3d\x12\x74\xd1\x6e\xbf\x8b\x70\x36\x6c\x72\xc5\x06\xae\x4b\xd1\x8e\x26\xdf\xef\x4b\x5c\xc8\x4b\x57\xcb\x54\x58\x49\x55\x6a\xef\x3f\x26\x67\x90\xdc\xac\x27\xfb\xee\xdd\xe7\x74\xfb\x36\xe2\xa0\x84\x69\x64\x78\xb3\x75\x50\x7f\x23\xb0\xe2\xf6\x55\xd4\xbd\xef\x1d\x97\x90\x9b\xc4\x68\xa0\xa4\x59\x2e\xc6\x71\xac\x6c\x13\x13\xb9\x20\xde\x93\xfb\xef\x3b\xd4\x69\x79\xdc\x99\xf3\xe1\x21\xd1\x18\x2e\xc4\x8d\x8b\x90\x84\xe1\x72\xe1\xa1\x6c\x0d\x6a\x22\xc7\x43\x2e\xb6\x6d\x55\x8d\x2b\xfa\xe8\x93\xfa\x8e\x45\xc0\x93\xfa\xf2\x7f\x29\x8b\x91\x53\x4f\x20\x30\xd9\xef\xd5\x4a\x70\xee\xea\xc9\x0f\x38\xdc\x9c\xdf\xbc\x01\xfd\xc9\x8d\x36\x0a\xd5\xed\xce\x41\x09\x3f\x62\xb4\x58\x2c\x45\x7f\xeb\x14\x7b\x73\xec\x82\x0a\xd4\x72\x05\xc8\x56\x85\x0d\x79\xfc\xc7\x6b\x15\x68\x04\xb2\x7d\x9a\xbc\x9f\x36\x4d\xc4\x05\xb9\x81\xc5\x50\x4f\x22\x63\xda\xeb\x2a\x35\x4f\x18\xc4\x55\xd7\x96\xe7\x87\x8a\x8a\xcf\x45\xae\x29\x06\xb6\x7f\xdc\xa2\x65\x54\x14\x04\x94\x26\x6a\x2e\xf9\xbe\xe7\xe1\xeb\x38\x84\x21\x40\xed\xc1\x42\x79\xe2\x93\x43\xc4\x0d\x20\xd8\x05\x09\x56\xe3\x8b\xd0\xc7\x16\x97\x51\x3f\xac\x23\x3b\x3b\x46\x7d\xec\xac\xe6\x8e\x82\x6d\xec\x06\x36\xf6\x7d\x3e\xb7\xe6\x77\xe3\xd6\xa7\x46\x2b\x43\x4c\x93\x82\xf6\xa8\x20\xd2\x19\x73\xe5\x17\xaa\xd9\xc0\x8d\x5d\xbb\x7d\x9c\x56\x0e\x10\x97\x54\x50\x05\x64\x2b\x78\x80\x7e\xa4\x3c\x56\x2f\x80\xe2\x36\x94\x11\x94\xc8\x99\x8d\x5f\x34\x30\xc9\x79\x3c\x9f\x1a\xc5\x81\xf2\x8a\x26\x5a\x56\xf1\x9f\x0f\x98\xae\xeb\x9c\xd7\xb9\xfd\x8f\x00\x02\x94\x95\x5e\xc4\xc1\x2e\xf5\x10\xe0\x53\x0b\x97\x1f\xd4\xa9\x3c\xa8\x2e\xc2\x41\xfe\xce\x29\xe9\xba\xbb\xcc\x65\xc2\x53\xd9\xb2\xc2\xa4\x3d\xfa\xe8\x82\x60\x97\x13\xf0\x44\x37\xb0\x54\x2b\xcc\x02\x86\xaa\xd5\x44\x44\x3b\xf7\x91\x5d\xb2\x56\xa9\x63\x8b\x98\xb6\x50\xfb\x3a\xf7\x86\x8e\x48\x66\x35\x4c\xdd\x44\xd2\xb8\x2f\xdf\xb9\x5b\x93\xd4\x0c\x90\xdd\x48\x50\x62\x71\x84\xbd\x46\xd3\x79\xee\x46\x5c\x26\x3f\xa0\xee\x15\x73\x94\x57\xfe\xed\xb2\x0e\x53\xe1\xd7\x36\xfe\x45\xa2\x61\xcd\xf7\xdd\x91\xde\x8a\xab\x38\xbf\xfe\x9d\x07\x15\x2c\x2f\xe5\x2b\x6b\x7e\xfd\xbf\xa0\x51\x17\x01\xb2\x9b\x26\x4b\xe3\xc4\xb8\xec\x33\x2e\x13\x56\x21\xa2\xaf\x7a\x6a\xb5\xd2\x9f\x52\x06\x25\x6a\xfe\x5f\x97\x40\xfe\x58\x88\x02\xe2\x28\x2a\xdc\x37\x1c\x1e\xa2\xc0\x36\xb9\x8d\x72\xfe\xd1\xb9\x43\x14\x2c\x2f\xe0\x5e\x7e\x78\x9f\x26\x5c\xcc\x3d\x6a\xf8\x2f\x2c\xed\xcc\x02\x39\xbb\x50\x7c\x9d\x5d\xd2\x45\xeb\x57\xb8\xaa\xb8\x86\x15\xa9\x41\xad\xda\x10\xc9\xef\x56\x58\x10\x14\x97\xf3\x8d\xbd\x3e\x7f\x40\xb7\xb4\xea\x8d\x46\x17\x96\x2b\xac\x77\x0f\x6a\x60\x16\xa7\x1c\xfa\x89\x11\x40\xa0\x71\x5f\x50\x45\x08\x5d\x43\x08\xf3\x00\x0e\x7b\xe7\x84\x6c\x4f\x0e\xb3\x91\x2c\x41\xa6\x30\xbc\x47\x21\x1d\x8a\x31\x2d\xff\x00\x53\x76\x49\x3d\xb2\x5a\xb3\xd8\xc1\xc8\x7e\xb2\x68\xa8\x09\xe6\xfb\x3f\xba\x92\x71\x67\x22\x8f\x2b\x71\x04\x72\x65\x97\xdf\xbe\x2c\x4d\x5e\x94\x2b\xdf\x49\x71\xbf\x7f\x79\x31\x03\x5c\xe0\xd2\x82\xc5\x52\xf4\xe9\xd3\xca\xe6\x2d\x8e\xfa\xa4\xc6\xe5\x26\xfb\x29\xc7\xab\x3b\xbe\x4e\xa0\xe1\x50\xef\x7f\x91\x02\xe2\x61\xae\x2a\xde\x54\x3d\x96\x9d\xc0\x25\xd2\xe0\x30\x67\xce\xe4\xfe\x79\x43\xb5\xa2\x82\x78\x71\x8b\x80\x05\x45\xb7\xf4\x56\x36\x06\x36\xc2\x1a\xf5\x6d\x54\x27\x28\x15\x7b\x29\x5c\x53\x81\xe9\x92\x4b\x53\x3f\x8e\xfe\x43\x47\x89\x24\x84\x4d\x70\x2f\xe6\xc6\xf3\x71\x8d\xbf\x78\x98\x6c\xaa\xbc\x44\x14\xf1\xec\x62\x4d\xc9\x07\x33\xd6\xc8\x88\xab\xe5\x7e\xbe\x57\x2d\x5b\x85\x2f\xb2\x18\x8b\x5f\x3d\x3b\x1b\x31\xcb\x8d\xf8\xdc\x2a\xf9\xf2\x2b\xb3\xa5\x69\x2c\x77\x02\x56\xaa\x89\x68\xcf\xa9\x44\xed\x8d\x9b\x22\x73\xd1\x8a\xfc\x8e\x56\xd5\x6a\x5f\x7b\x68\xf7\xf7\xd7\x0c\xc8\xf8\x28\x3b\x7b\xda\x8c\xa7\xb6\x26\x9c\x36\x27\x45\xc4\x2f\xe9\x81\x31\xeb\xf5\x37\xac\xba\x8e\x6b\xd4\xad\xcd\xe4\x37\xbe\x20\x98\x69\xeb\xa6\x18\x6e\xca\x98\xfe\x82\xe6\x57\xef\xc1\x5e\x5b\x38\xeb\xcd\x1e\x91\x81\x25\x04\xb4\x3b\x3e\x40\xff\x78\x1c\x0a\x82\x1b\x29\x2b\x63\x3b\xfe\x8b\x6e\x4e\x71\xc3\x72\x6b\x71\xad\xc9\xfb\xe2\x73\x7a\x93\xe7\x7b\x44\x5c\x33\xa8\xdb\xee\x11\xb5\x45\xe8\xc2\xc6\xb2\x2f\xb7\xfa\x09\x29\x3d\x4e\x32\x8c\x14\x63\x77\x87\xbc\x35\x65\xc4\x37\x3d\x11\xdb\x35\x59\xaf\xb4\xdd\x2a\xff\x83\x66\x3c\x44\x61\xea\x33\xef\x57\xae\x2b\xaa\x60\xa7\x49\xd1\x23\xf7\x2f\x03\x46\x88\x04\xee\x29\x52\x0a\xd1\xb9\xd3\x43\x15\xf9\xec\xf8\xff\x95\xfa\x8c\x11\x0b\x60\xa1\x74\x43\x1d\xb9\xb4\x9e\x0c\x50\x2e\x3c\xab\xa5\x0e\x27\xb5\xcd\x80\xf2\xe8\xad\x7d\xf0\xa5\xaf\xe3\x57\x95\xf3\xfd\x27\xca\xe7\x37\x6d\xd6\x94\x19\xb3\xda\x8b\xf1\xd3\xf9\x74\x34\x4c\x64\xd2\x20\xa5\x0b\xf4\x15\x6e\x7a\x1d\xfe\xf4\x13\x2a\xea\x3d\x77\x99\x66\xf2\xe4\x93\x40\x70\xcc\x4a\xcb\xb2\xec\xac\x6e\xaf\x87\x9c\xc7\xd5\x34\x3f\xe7\xae\x51\x2a\xf6\x06\x37\x1c\x61\xa7\xd8\x97\x7f\xbe\x2d\x51\xd1\x74\x6b\x04\xc6\x54\xb9\xbb\xee\xd0\x52\x33\xb1\xeb\x98\x75\xc7\x3d\x24\x00\x6e\x5b\xd7\x65\xff\x42\x17\xa5\x59\x75\xc3\xdf\x6e\x19\xa3\xbc\x4f\xb7\x4b\x57\x82\xd8\x6f\xab\x7a\xa7\x0c\x60\xd8\xd1\xf7\x34\x71\x76\x31\xcc\x4c\x7c\x29\x6f\xdd\x98\xb8\x20\xb0\x00\xb6\x30\xd1\x98\xd9\xaa\x8d\x2a\xae\xf2\x10\x5d\x78\xef\x2e\x1d\x2a\xe5\x70\x08\x6d\x42\x81\xc9\xef\x5c\xa7\x7b\x48\xd5\xac\xa2\x03\x8e\xb0\xa5\xbe\xfc\x37\x5e\x4e\xc7\x62\xb3\xa7\xb5\x73\x83\xc0\x3d\x32\x43\x4e\x6b\x9b\x36\x95\x4f\x26\x1f\x14\xf8\x39\x46\x51\x20\x6c\xfb\xe3\x92\xec\x32\xcd\xc2\x82\x76\xc7\x1f\x56\x40\x3a\x0e\x6f\x54\xe5\x60\x12\x67\xef\xbe\xfc\xf6\x45\x19\x84\x30\xf1\x40\x29\xd6\x18\x51\x6f\xc9\x6a\x10\x24\x81\xf4\x0b\xdb\x07\x26\x81\x94\xdf\x96\x60\x81\x5c\x45\x7f\xb8\x29\x2b\xad\x7d\x4c\x3b\xb8\x29\x2e\x42\x1c\xdc\xfe\x73\x15\xe1\x34\x52\x73\x51\x10\xe7\xfb\xf8\xbf\x74\x6f\xd2\xb0\x95\x8c\x7a\x5e\xaa\x84\xfe\xf0\x76\xcd\x89\xc8\xc5\xc8\x07\x95\x91\xdc\xb1\x0e\x8d\x48\x5e\x49\x44\x14\xbf\xf3\xaa\x2e\x5e\x62\x8a\x94\x28\x0e\xd8\x47\x22\xf9\x38\xb8\xb6\x6b\x92\x3e\x5e\x19\xa3\xfd\x3a\xc5\xed\x97\xcf\x4c\x1e\x94\x26\x1b\x4d\xb3\x9c\xbe\x7c\xa1\x90\xc5\x58\xb6\xc1\x6c\x68\xac\xa4\x94\x5a\x44\xa5\x94\xfe\xf8\xf2\x6c\x4a\xc3\x95\xc4\x75\x48\x4e\xbc\x5b\x17\xcb\x21\x04\x9f\x69\xdb\x98\x4b\xa2\xf6\xe5\x17\x1c\xd5\xe0\x36\xa1\x1f\xd0\x8a\xd0\x60\x39\x3a\x0f\xa6\xa3\xd7\x5c\x73\x4d\xfc\x3f\x5f\x3d\x9e\xfd\x66\x36\x75\x6b\xc5\x00\xb3\xc4\xcf\x2d\xf7\x8d\xe7\x15\xee\x02\xf1\xb9\x0e\x16\x6f\xd9\x7e\x7b\x4a\xa6\x1f\x4b\x17\xab\xe9\xcb\xdf\x37\x4e\xdf\x5f\x81\x48\x96\x78\xd2\xed\xc3\x47\x29\x2b\x4a\xb0\xa8\x03\xb8\x4c\x81\x2c\x48\xf0\x11\x8c\x28\x5b\x09\x23\xb7\x49\x81\x70\xe1\x1a\x06\xd0\xfa\xab\x6f\x6b\xe4\x14\xea\x06\x16\xe4\xa2\x68\x71\x41\xb6\x01\x5c\x26\x48\x0e\x2a\x9c\xb7\xa5\x00\x06\xa2\x4a\x08\x99\xa2\xe8\xe1\x57\x18\x46\x0e\xcf\x21\xb7\x68\xc2\x40\x88\x54\xae\xe0\x66\x10\x7d\x85\x4b\xe7\x68\xfc\xac\xf6\x76\x81\x6f\xb8\x78\x9f\x32\xa0\xa6\xa6\xe5\x07\x84\xaf\xbc\x87\x74\xca\x37\xc7\x47\xad\x24\xd9\xdd\x0d\xb3\x34\xe3\x4e\x1b\xbb\x6e\xa6\xb8\xcd\xdf\xa5\x48\x02\x57\x11\x2b\x56\xed\x90\x07\xb1\x5f\x28\x45\x2f\xee\xe1\x71\x87\x8b\x21\xac\x92\x52\xbb\xdd\x89\xd0\x5b\xfe\x77\x9a\x59\x97\x83\x59\xa2\x90\x92\x1b\xfb\xba\xf6\xe2\x30\x5c\x4a\xd1\x8f\xd5\x58\xab\x92\xf1\xd6\x87\x84\x65\x76\x69\xbf\x5a\xab\x8d\xce\x28\x7c\xbb\x64\x03\xff\xbd\xfd\x82\x63\x41\x7c\x00\xc9\x46\x17\x2c\x80\x41\xe4\xe2\xd2\xa2\xa5\x2b\xb8\x2b\x4e\x72\xc2\x6f\x79\x5e\x77\xe0\xc6\x28\x48\x66\x21\x8f\x2b\xa1\xd1\xa2\xa8\x87\x77\xe7\x8a\x8d\x1c\xc3\x1e\x46\x01\xe6\x03\xb1\x68\x84\x46\x5b\x9b\x7a\xd5\xcc\x84\x44\xf7\xe1\x77\xe0\x03\xd9\x18\x09\x94\xd1\xf5\x0f\xcb\xa2\xa0\x82\x02\xdc\x56\x2c\x45\xa7\xa7\x0f\x57\xc9\x90\x0e\xe5\x2e\xd9\xc6\xde\x2d\x2d\xb2\x28\x6f\x28\xa7\xe8\xa5\x95\xd9\x17\xd9\x8b\xba\xae\xec\xa4\xe5\x2b\x7d\x5f\x58\x63\x46\x74\x82\xfc\x89\x97\x05\x88\xd5\x70\x50\x2c\x45\x3b\xb5\xf1\x83\x69\x11\x57\x29\x63\xc7\x9d\x11\x70\x4f\xe2\x5b\xa4\xa2\xcc\x7a\xf3\x1b\x36\x68\xa3\xa1\x74\x19\x0e\x81\xf6\x87\x8a\xff\xbb\x4b\x59\x60\xc1\xc0\x23\xfa\xe8\x83\x12\xd3\x87\x5c\x97\x86\xae\x29\x49\x7a\x1f\x7a\x4c\x97\x4f\x96\x71\xa1\x4f\x93\xe5\xec\x44\x6e\x88\x58\x2a\xce\x6b\xfc\x75\x4f\xf6\xe5\x71\x22\x78\x32\x84\xfd\xcc\x50\xb9\x22\x36\x19\xf2\x2d\x3e\xe9\xb8\x79\xa6\xaa\x4d\x16\x27\x18\x88\x08\xb9\x05\xf7\x69\x85\x01\x8e\xcb\x60\x53\x8a\x49\xdc\xbc\x57\x6e\xb7\x79\x1a\xb1\x33\x82\xd8\x6d\x7b\xb3\xa3\x87\xe4\x71\x16\x86\x0f\x53\xa0\x2a\xdd\x88\x70\xc6\xc0\x87\x27\x2a\xed\x23\x23\xa0\xde\x16\xf5\xbd\x3b\x3c\x33\x95\x6d\xe0\x7a\xb1\x14\xb5\x6c\x52\xd0\xc5\x42\x15\xe2\xc6\x13\xa2\xc6\x8a\x73\x0b\x62\xd0\x0b\x19\x47\xa0\xb1\x8b\x3f\xfe\xb2\xd2\x0a\x25\xd6\x4f\x1a\xad\xc9\xab\x51\x6e\x8d\x2c\x46\x6d\x2b\xa5\xdd\x09\x51\xde\x77\x61\x48\x9b\xaa\xc7\xdf\x05\x53\x27\x6f\xa7\x06\x79\xb0\x15\xec\x4b\x79\x0b\xd4\xf5\x0b\x19\xe7\x0f\xe6\xb6\xae\x19\x94\x1c\xfc\x3a\xb4\x6b\x2f\x9d\xd4\xf4\x9b\x98\xd4\xcf\x1f\x30\x5a\x27\x1e\xb9\x0d\x91\x8b\x3f\x29\x0c\x8e\xf8\xa0\x1e\x44\xe0\x7b\xe6\x02\x78\xff\x63\x94\x32\x93\xd1\xaa\x62\x38\x52\xb8\x7a\x92\x06\xa9\x66\x18\xa7\x73\xdc\x6e\x45\xaa\xcb\xb4\xf8\x05\xe6\xc2\x60\x72\x83\x38\x75\x1a\xd7\x9a\x7a\xf5\x68\x8b\xa8\xbe\xe2\xaf\xe3\x85\x41\xb2\xcf\x7c\x7a\xf1\x10\xa5\x72\x31\x69\xb1\x14\xdd\xbb\x4e\x53\x90\xa5\x7c\x3f\x23\xb6\x79\xd1\x51\xfb\x62\x91\x6f\x6a\x2e\xa9\x12\x13\xbc\x40\x92\x8f\x3b\x60\xdb\xa4\xee\xf3\x21\x45\x82\x26\x51\xba\xff\xdd\xa3\x53\x17\x51\xcd\xa5\xa9\xe1\x59\xe1\xa3\x2c\xdd\x8d\xb9\x62\x37\x66\xdc\x3a\x5e\xab\x08\x43\x56\x27\xf5\xf4\x9f\x4c\xd8\x79\xa1\x28\x3d\x39\x43\xfa\xc7\x4f\xc8\xfe\x12\xf7\x04\xb0\xf4\x07\xd7\xe8\xfc\x99\x55\xe9\x23\x0a\x38\x02\xd9\x3f\x0e\xef\x60\x19\x66\x3e\x94\x89\x69\x7b\x6f\xbc\xf0\x86\xcc\xbe\xbe\x87\xcd\xd0\x46\xa2\x4f\xcd\x4d\xd4\xc6\x6a\x71\x19\x24\x50\x71\xab\x36\xea\xa0\x02\xc7\x09\x5d\xa1\x5c\x95\x68\x21\xee\x78\xf6\x62\xa9\x58\xdb\xd4\x0b\x8d\x5a\x97\x16\x0d\x65\xda\x04\x94\x31\xbe\x79\x50\xcb\x3d\x76\x48\x2a\x24\x48\xc6\x7a\x87\x5f\xc9\xf6\x1d\xe5\xb2\x79\x5e\x94\xfa\xdf\x37\x8a\x25\x06\x43\xeb\x33\xdf\xfb\x67\x4f\x49\x73\x32\x62\xc6\xc9\xa7\x43\x57\xab\x2b\x76\x8a\x72\xdc\x78\xf5\xb0\xa8\xfb\xe3\x8e\x5b\xe8\x26\xfd\xb7\x36\xe5\xe3\x66\xa5\x26\x41\x01\x16\xa8\xbd\x6f\x2c\x1b\xa7\x8c\x3c\x1a\xd4\xd5\xa5\xe3\xfb\xf2\x2d\x47\x86\x2a\xa3\x67\xd2\xc5\x6f\xe3\xe6\x4d\x12\xd0\x83\xdd\x5a\x82\xf9\x8e\xa3\xd4\x27\x57\x69\xe7\x0a\xfb\x26\x23\xe5\xa4\xe1\xce\x7d\xf2\x6a\x4d\x0f\xc7\x34\x43\x26\x40\x6b\x32\x31\xf7\x1f\xaa\x8d\x2f\x6c\x54\xe1\x93\x35\x39\x0d\xd8\xfd\x90\xac\x57\xb8\xc7\xba\x0b\x4a\x00\x7b\x46\x65\x81\x3e\x13\x04\xe1\xff\xa2\xc1\x52\xcf\xd2\xa7\x76\x85\x34\xab\x48\xf5\xe5\xde\x38\x94\x0d\x1c\x97\xf1\xd4\xcb\x53\xc4\xe6\x7b\x33\x9c\x25\xfd\xac\x84\x1b\x47\x37\x75\xbd\x02\xc0\x15\x3d\xe1\x5d\x98\x66\xed\x62\x29\x3a\x30\x59\x61\xab\x9b\x38\xd1\x76\xbb\xe8\xb4\x76\x60\x71\x85\x11\x53\xe3\x1d\x0c\x3a\xa4\x6d\x49\x51\x9d\xa6\xac\xc7\x0f\xd6\xe1\xf7\x94\x43\xae\x82\x92\x73\x1f\x94\xd1\xa5\x97\x52\x10\x58\xf1\x74\xc7\x8b\x6a\x95\xda\x5d\x57\xc8\x75\xe6\x2f\xb6\x29\x5d\x96\x87\x18\x90\x39\xfb\x0a\x1f\x79\x7b\x90\xc8\x3d\x9e\xc7\x47\xef\xc6\x75\x47\xd5\x57\x40\xcb\x36\x76\xe2\x9b\x57\xdd\x92\x56\x71\x8c\xd4\x52\x79\x8c\xc3\xa3\xa4\x34\x5f\xc6\x53\xcd\x98\xfa\x58\xb6\x7b\x2a\xa3\x6a\x35\xd5\x7b\xce\x2d\x3f\x2e\xd1\x25\x1e\x6d\xb6\x7b\xe8\x33\x56\x56\x25\x33\x82\x56\xab\xc5\x52\x94\x77\xf5\xdd\x2e\x15\x78\xe6\x1f\x3f\x2b\x88\xa7\xbc\x88\x89\x3f\xee\xae\x8d\x8a\x77\x8e\x85\x5c\x41\xdf\x8f\x0f\xf3\xb5\x17\x8c\x52\x36\x93\x0e\x97\x6c\x87\x39\x8d\xf1\xe4\x5d\xe9\x71\x70\x51\x93\x03\xc5\x94\xa7\xb2\xa8\x66\xe4\xfb\xd4\x04\xb6\xef\xf9\x70\x45\x73\x37\x28\xfb\x1d\xd7\xb4\x28\xec\x19\x8d\x0d\x63\xb4\x1c\x87\x81\x89\x12\x5f\xee\x87\xb4\xcc\x54\x06\x79\x12\x28\xe6\xa7\x8c\xce\x9e\xa5\x2e\xca\x70\xe0\x77\x11\x75\x84\x77\xad\x35\x5e\xeb\x59\x1b\x15\xac\x4b\x20\x7d\xd1\x93\xaa\xb5\xa4\xde\xf4\xe4\xef\x79\x48\x4b\x8f\xc8\xa1\xa1\xb0\x4c\xff\x79\x25\x6d\x5a\x1c\x75\xee\x61\x2c\xb3\x5a\xb5\xd7\x1d\x70\xa2\xa3\x88\x64\xbd\x3b\x15\xbb\xe8\xb8\x31\x6a\x9d\x0d\xb9\x61\x3e\x69\x72\x37\xcc\xf9\xb7\x64\x5f\x34\x97\x61\x06\xc4\xcd\x8c\x49\x49\xa6\xaf\x63\xa1\x8a\xb5\xf3\x15\xf9\x3e\x2f\x53\x87\x6b\xd1\xb0\x89\xea\xc8\xc1\xc7\xb6\x0d\x70\x90\xfc\xc6\xf3\xe0\x34\x5c\x6c\x12\x57\xbc\x87\xc2\x00\x4d\xf3\x6e\x6a\x7b\xfb\x94\x76\x6e\x48\x0f\xba\xd3\x89\x08\xa2\x87\xb1\x69\x15\x4b\x51\x6d\xf7\x20\x91\xc0\x2f\x83\x76\xcd\x18\x78\xb9\x96\x56\xb1\x19\x32\x9c\x02\xfa\xbe\xf8\xb6\xea\x9e\x4a\x00\x30\xfd\xb4\xd0\xf3\x97\xc4\xf4\x47\x64\x39\x8a\x9d\xf8\x91\x0a\xc6\xf3\x9d\xa7\x34\x3f\x59\x64\x76\xe1\x00\x63\xa0\x99\x14\x8c\xc1\x3a\x45\xb2\x41\xab\x55\x40\x4f\x44\xbf\x1f\x0c\x53\xe7\x05\xd4\x71\xb3\x8c\xad\x9b\x9a\xac\xf3\x68\xb7\x5b\xa4\x61\xb2\x82\x30\xee\x7e\x4a\x56\xab\x01\x76\x43\x8e\x76\x2a\x7c\xbe\xbf\x66\x1d\x41\xbb\xdd\x3a\xc1\xdd\xe0\xcc\x1c\x5f\x39\x6f\x93\x52\x56\x67\x10\x2e\x63\x94\xe1\x8b\x87\x4c\x6c\x32\x54\x8d\x1f\xc5\x39\xa1\x6a\x73\xcd\xfc\x8f\xb5\xad\xb4\xf8\xaf\x69\x11\x5c\x61\x70\xa6\x88\x1f\xe2\xa4\xed\x97\xe8\xd5\x62\x85\x40\x25\xc0\x5b\xe6\x4b\xad\x81\x49\x88\xae\xf2\xa5\xf2\xae\x99\xa9\xbf\x69\x4a\x55\x8c\xff\xe2\x07\xda\xe5\xea\x1f\x31\xa7\x19\x80\x3b\xb2\xc9\x5b\x13\x25\x9e\x30\x27\xaa\x1a\x10\x0b\x76\x2a\x19\xd0\xe2\xa7\x86\x6b\xc3\x6a\xea\x60\x90\xb3\x8c\xfe\xfb\x80\xa0\x33\x5b\xa8\x92\xd0\x6b\x8d\xf7\x9f\xd0\xbe\x98\x90\x6a\x4e\xce\xdf\x77\x0e\xc9\x96\x89\x13\xf6\x3d\xe2\xba\x02\x03\x98\x3f\xfe\x58\xba\x7a\x9b\xd9\xce\xff\xfa\x20\x4d\x29\x16\x14\x39\x53\xdf\xf8\xbd\xa3\xb2\x2b\x03\x94\x68\x84\xe4\x6e\x1a\xa3\x43\x3e\x1a\x36\xf1\x81\xfc\x58\xd8\xa8\x10\x74\x92\xa9\x1a\x40\x1e\xf0\x63\x32\x74\x3b\xa4\xa7\x58\x8a\x66\x6f\xd3\xf8\xf2\x9c\x68\x20\xe6\x17\xc6\xfd\xaf\xca\x72\x84\x51\x9f\xb7\xbb\x2f\xcd\xd5\x22\x21\xb6\x88\x9b\x20\x16\x77\x6e\x52\x7a\x61\x06\xe2\x2c\xa5\xe8\xfb\x4f\xaa\x2c\x04\xa1\x70\x11\xfd\xcb\x6d\xd9\x9d\x5d\x99\xc5\xcd\x06\x3f\x9b\x9a\xb3\xf4\x2d\xd9\x29\xca\xb4\xe2\x54\x01\x94\x6b\xb9\x4f\x13\xec\x63\xa1\xef\x63\xdb\x17\xf5\x0d\xa8\xc9\x4c\x97\x95\x48\x02\xc9\x6c\x4a\x09\x8b\x56\x6a\xb8\x25\x46\x1d\x10\xb3\xda\x3c\x40\xa1\xb0\x62\x17\x57\xb9\xdd\x78\xf4\xd4\x36\x5d\x48\xb2\x92\x42\x79\xb6\x46\xd0\x89\x5f\xcb\xb5\x07\x54\xdb\xdf\xb1\xad\x0a\x5a\xce\x4e\x4a\x80\xc7\x0f\xa6\x8d\x5c\x40\x1c\xa5\x2e\x1b\xc2\xd2\x81\x08\x66\x20\xb1\xb9\xf1\x90\x36\x8f\x26\xbe\x4f\x6c\x2c\xa4\x87\x0a\xc3\x0f\xab\x88\x06\xea\xfb\x84\xdf\xe6\x37\x36\x0e\x4c\x1a\xcc\xeb\x56\x17\x4b\xd1\x7b\xef\x56\x9a\x5e\x5c\x49\x50\xaa\xf9\xad\x9b\xb5\xd8\x18\xb0\xb0\x56\x4b\x57\x09\x03\x94\x41\x41\xa7\x4a\xba\x3e\xed\x2a\x56\xb0\x5c\x5f\x45\x40\x77\x8e\x1e\xe6\x3f\xb0\xf8\x71\x97\xd4\xe3\x5e\x23\x68\x64\x4a\x91\x3f\x7b\x2a\x09\x51\x55\x1c\x9f\x97\xed\xac\x50\x2d\xee\xe9\xcf\x57\xd0\xe7\xff\xeb\xc8\xa5\x5a\xce\xa8\x32\x14\x7f\x70\xee\xa1\x97\xc0\x5f\x7e\xf0\xb2\x8e\x76\x01\x88\x63\x9a\x07\x6f\xbf\x1b\x66\x9f\x33\x40\x44\x76\xca\x2a\x0d\x0a\xe6\x76\x23\x96\xa5\x0f\x1b\xc7\x03\x05\xbe\x97\x35\x52\xf9\xbb\x95\xf6\x32\xb5\x66\x25\x38\xe3\x97\x67\xb4\xd3\x83\x71\x8a\x78\xfc\xc8\x31\xdd\xe3\xda\x4a\x94\xed\x93\x73\x51\x58\xd8\x84\x41\xab\x84\x66\xc2\x36\xec\x33\x2e\x5d\xab\xf3\x2d\x1d\xcc\x10\x84\xde\x5b\x94\xb9\x46\x39\x6c\xc0\xce\xe2\xa5\x0b\xd2\x22\x80\xb3\xd0\xa3\xc9\xaf\x65\xbf\xbe\x69\x23\xd6\xa5\x99\xb3\xfc\x20\x48\xbf\x23\xf5\x9b\x6a\x32\xb2\xb7\x25\x3b\x82\x0e\x30\xb8\x23\xdc\xb1\xe5\x62\x05\x8e\xd5\x8b\x5c\x55\xfd\xbf\x70\x85\x26\xca\xe3\x31\x9c\x8c\x74\x24\x5c\x62\xe3\xdb\xba\x4d\x6a\x20\x78\xdf\x43\xde\x4c\xaf\x92\x66\xda\x74\x20\xab\x0d\xe4\x26\xf3\x83\xfc\xac\xe7\xa4\x8d\x0a\x0b\x8b\xa5\x68\xf4\x06\x05\xf2\x4d\xb9\xc7\x51\x61\xf9\x3c\x65\xe7\x6d\xa7\x72\x0b\xc6\xd7\xcb\x69\x99\x6d\x72\xc7\x4f\x79\xb6\x7f\xa4\xc9\xc9\x32\xe4\x0a\x5f\x9a\xe8\x90\xab\x79\xfb\x93\x9a\x15\x08\xc4\x79\x6e\xdf\xe9\x26\x43\x8f\x80\xb8\x61\xea\x1f\xf6\xd5\x75\x52\x9e\xd7\xc1\x15\x7e\x63\xf4\xf6\xe8\xe4\x7d\x97\x6a\x35\x1f\x0b\xa8\x4d\x75\x8d\x8f\x4d\xea\x40\x85\xda\x18\x0c\xe7\x9d\x01\xd9\x03\xd8\xe5\x86\x81\x26\x7d\xde\x3a\xb7\x89\x31\xc9\x1a\x42\xe5\xdd\xd8\xfd\x2e\x74\xd8\xcb\xe3\xeb\xa5\xbe\x83\xb5\x9b\xb5\xaf\x4d\xc3\x20\x09\x9a\xb9\xbe\xb2\xa6\x83\x8b\x52\x44\x54\xeb\x39\xd5\x24\xd5\x56\x0b\xa3\x3f\x0e\x97\xd5\x1a\x23\x62\x48\xfb\x9d\xaa\x12\x8d\x1c\x3f\xc0\xac\x82\x9c\x38\x66\x1f\xbb\x48\x29\x92\x4c\xcb\xe5\xa4\x7b\x18\xc1\x3d\xdd\xa9\xe2\x8c\x4d\xee\x5b\xcd\xef\xcb\x77\x8e\x64\x6b\xa8\x69\xd3\xb3\x44\xfe\x3e\x83\xce\x1b\xd6\xad\x0e\x4b\xf8\x05\x72\x5f\xd3\x91\xa8\x01\xb6\x6d\x12\x24\x8a\x3c\xb3\x27\x6a\x75\x22\xb6\xb9\x53\x1b\xe4\xd1\xc2\x4d\x1b\x15\x1b\x71\x07\x64\x36\x8d\x29\x8a\xa5\x53\x95\x82\x5e\x44\xb4\xee\xc9\x6c\x02\xef\x12\xba\xca\xfc\xa0\x3d\xae\x61\x4e\xcb\x0c\xda\x16\x01\xd6\xeb\xb9\x5a\x1b\xf5\x73\x4d\x78\xee\x4c\x7e\xe3\x71\x15\xc0\xcf\x55\xf9\x0a\xd7\x4e\xba\x30\xbd\x29\xdc\x0a\xe7\x94\x68\x80\x31\x77\xec\xfd\x73\x87\xa6\x44\x8f\x7d\x9f\x64\xc4\x0b\xf3\x7b\x47\x41\x85\xbb\x8c\x11\x07\x65\x2a\xdc\x5f\xcc\x91\x9e\x0e\x61\x53\xcf\x99\xff\x7a\x41\x69\x0d\x1b\x1e\xd7\xd3\x4b\x78\xfe\xde\x48\xa5\x6b\x74\x4d\x50\xb2\x8e\x9f\xf1\x5f\x1f\x06\x44\xeb\x75\xeb\x43\x02\x28\x5c\xbd\x9f\x59\xa1\x78\x58\x33\x8a\x33\x21\x23\xbf\x5d\x32\x35\xdb\x3a\x66\xf2\x85\xd8\x13\xad\x72\x31\xd4\xbc\xd2\xde\xa1\xad\xb5\x4c\xe4\xfb\x38\x48\x5e\xb9\xf1\x49\x8d\x84\x1c\x37\xf6\x28\xd1\xbc\x31\xcc\x42\x5a\x1c\xb6\xb7\xcd\x8a\x7f\xdb\xe5\x43\x9b\x61\xbd\xe2\xba\x44\xc5\x71\xd9\x0b\xae\xe0\x5a\x84\xd3\xfb\xb2\xeb\xfa\x72\x07\x41\x12\x8c\x9f\xaf\xb2\x18\xea\xb7\x4a\x54\xea\xcc\xf6\xa9\x19\x0d\xce\x13\x0f\x4a\xdd\x4e\x54\x56\xd2\xfb\x77\x1e\x55\xe5\xb9\x99\x8b\xdc\x0a\x56\xf2\x91\xb1\xe8\x59\xc5\x6c\x9c\x02\x4a\x23\xf7\x6f\xef\xc8\xda\xd1\x77\x68\x17\x57\x9e\xd6\x84\x7d\xf0\x7a\x60\xb5\x8a\x8b\x5e\x2a\xeb\x0b\x22\x1b\xb9\x15\xe8\x56\x96\x5d\x17\xed\x5f\x0d\xa7\xe7\x5a\x0b\xd5\x91\x4d\x94\x49\xac\x51\x19\x9a\x30\x5a\xb1\x8f\x91\x0f\xbc\x71\x32\x13\xca\xa7\x3a\xa1\x42\xce\x22\xff\xd3\x29\x92\x20\x90\x41\xbb\x6c\x58\x2e\x6b\xed\x14\xcd\x02\x25\xd7\x3f\x1d\x95\x60\x5d\x3b\xa5\xa0\xe6\x1f\xca\xe6\xa0\x06\x62\x15\xa0\x12\x8c\x9b\x2d\x8b\x6c\x8f\x2b\x47\x18\x37\x3d\x37\x56\x4b\x58\xcc\x26\x88\xb3\xae\x81\x46\xb3\xf0\x84\x94\xc5\xad\x10\x3f\x7e\x2c\xa4\xda\x04\x01\xce\x2f\x5e\x72\x45\xf6\xf9\xb9\x5c\xd0\x92\xff\xa0\xf3\x4c\x3a\x0a\x43\x15\x7b\xeb\x0a\xf1\xe3\x62\x11\xda\xd4\x03\x1b\x04\x0f\x86\x57\x3b\xb9\x16\x2b\xad\x4b\xbb\xe4\x66\x7b\xda\x02\x7d\xe6\xcf\x77\x6c\x71\x13\xf0\xf7\xd6\xec\xd8\xaf\x46\x61\xab\xfa\xfd\x45\xda\x44\x9c\x11\x47\x38\x2a\xeb\xc3\x8c\x77\x2e\xd0\x3a\x0f\xee\xa2\x9a\x88\xb1\x07\xfd\x34\xaf\x26\xe2\x93\x20\x99\x6a\xde\xa9\xd9\xc4\x7a\x61\x20\x81\x89\xf9\xa7\xb6\x42\x3b\xfa\xf1\x15\xc9\x4a\xf3\x4f\x73\x15\x00\x1c\x65\x20\xe0\xbe\x71\x0a\xcc\x39\x96\x84\x3d\x4d\xcf\xf9\xcf\xa7\x46\x9c\x3f\x4b\x54\xb5\x2b\xd9\x4d\x59\xea\x50\xd2\xbe\x4d\xf5\x14\x42\x61\x2d\x64\xa9\x8f\xd9\xeb\x1d\xd9\x09\x15\xc7\x30\x83\xb4\x4c\xb3\x74\x71\xd4\xa5\x78\xae\x79\x8c\x98\x7c\x64\x19\xfd\xec\x84\xf6\x3a\xc0\x8f\x9a\x17\xee\xa5\x82\x6a\x88\x1e\x9f\x0a\x1e\xb2\xf3\xf7\x3c\xac\x4d\x9d\x88\x8f\x2a\x75\xe4\x06\xa8\x96\x96\x8b\x85\xcb\x37\x29\x26\xac\x21\xff\xbc\xbe\x40\xe8\xfa\x16\xe5\xca\xa5\xb9\x7b\x5e\x96\x21\xc0\x03\xe3\x04\xd5\x5d\xae\x90\xbb\x2b\xeb\x2a\x0d\x73\x93\x1f\x3c\xa7\xe1\x4e\x38\xbd\x52\xa4\xc0\x7b\x56\x7d\xa0\xa9\x88\xc0\x3c\x5d\x64\x5f\x46\x30\x06\x24\xa2\x3e\x0e\x6c\x71\x6d\x10\x87\x5c\xbf\x5b\xf8\x08\x44\x8f\xbd\xd8\x92\x70\xa4\x65\x5c\x2b\x96\xa2\x61\x33\xf5\x64\xeb\x40\xe9\xcf\x97\x54\x85\xf6\x33\x2d\xb2\x61\xf7\x03\x24\x24\x25\xfa\xf2\x7f\xab\x28\x7b\xf3\x6a\x95\x32\x21\x3b\x7f\xb8\xe9\xc7\x11\xae\x31\x05\x92\x98\x9f\x3f\x93\x48\x70\xd9\xa1\x23\x56\x30\xb9\x21\x39\xd9\x10\x9c\x0f\x61\x5a\x56\xd5\x14\xdd\xb8\x57\x4a\xd4\x66\xa3\xca\xf8\x6c\x2d\xde\x8d\xdd\x4a\x43\x1b\x54\xff\x79\x53\xa2\xf1\x0e\x93\x9f\xa5\xab\xb5\x52\x8b\xeb\x91\x08\xd5\xd1\x25\xef\xea\xfc\xc5\xca\x15\xdd\x40\x56\xde\xfd\x5a\x8b\x28\x91\x13\x77\x36\x31\x70\xd8\x52\x1f\x24\x0e\x76\xd5\x0e\x7b\xe2\x5f\x71\xcd\xd5\xda\x18\x99\xe3\x7f\xc5\x43\xc8\x3f\xdd\xa2\xc4\x53\xe4\x9b\xc4\x4d\x49\xc8\x1f\x3c\xa5\x7c\x57\x52\x27\x36\x41\x49\xca\x8a\xfe\xf4\x98\xaa\x34\x65\x76\x61\x18\x5c\xe4\x0f\x6b\xa2\x34\xb4\x5c\x27\x34\x14\x25\xb3\x71\x5d\xef\x20\x51\xec\xd1\x90\x9f\xbb\x57\x0e\x64\x47\x0b\x56\x7c\xd1\xa0\x79\xcb\x9e\xad\x0f\x6e\x7b\xbf\x16\xe2\x88\xe7\x69\xdb\x91\x39\xe3\x20\x56\x22\x8e\xd0\x30\x6e\x1a\x38\x5c\x01\x17\x54\xab\xe0\x07\x61\x7c\xc5\x1b\x95\x1d\xba\x10\xa1\x52\x14\x7d\x76\x87\xaa\x7c\x86\x1d\xc4\x60\x63\xb5\x74\x4d\xf6\x77\x13\x06\x4a\xe6\xf2\xbd\x46\xb5\x40\xeb\x13\x2d\xae\x8d\xc3\xe7\x98\xdf\x7b\x22\xfb\x48\x42\x37\xf4\x43\x64\x0b\xbd\xe7\xd2\x5c\x15\xdf\xab\x6f\xd3\xa2\x1d\x4b\xd2\x6a\x03\x97\xe3\xe0\x12\x3c\xa8\xe8\x69\x74\x23\xf0\x15\x88\xaa\x4b\x45\x8c\x44\x0c\xf5\xa2\x32\xb2\x95\xa2\xa0\xe5\x29\xb1\xb2\xa4\x8c\x09\x18\xb5\x31\xa6\x20\x6b\x31\x5a\x86\x26\x1c\x12\xce\x23\x8f\x66\xf6\x47\x26\xf6\xf8\x18\xe5\xe7\x07\xb4\xf1\x1d\xf7\xc5\xe2\xde\x3f\xb9\x56\xf9\xb3\x6a\x98\x39\x28\x21\xc0\xe6\x1f\x38\xa1\xa8\x48\x90\x0a\x2c\xa8\x3f\x34\x59\xce\x26\x3a\xda\x8b\x0e\x71\x61\x54\x9b\xfb\x27\x6d\x52\x13\x58\xd8\xb9\xa2\xb3\x93\x2f\xc5\xbf\x39\x7b\x98\x8a\xab\x05\x05\x17\xe3\x7f\x14\x8f\xca\x2a\xee\x06\xc6\x79\x61\xcd\x3a\x5d\xac\x44\x0c\x17\xa2\x1f\x0e\x14\x48\xd9\x86\x8b\x1c\x90\xd7\xcc\xa1\x99\x23\x94\x7e\xb3\x8a\x5d\x20\x41\x1a\xe6\x39\x39\xd0\x34\x2d\xd6\xf0\x6d\x9c\x01\x1f\xe5\x7f\xb6\x50\x69\x8f\x03\xea\xe2\x62\x60\xb1\xa4\xdf\xcc\xcd\x9b\x28\xff\xb9\x6f\xd1\xee\xa6\x03\x4d\xf7\xe8\x66\xe8\x1c\x42\x54\x17\xc4\xd8\xfc\xd8\x57\x55\x95\x3a\xa4\x8e\x9b\x72\x73\xfb\x65\xa5\xa1\x9d\xd0\xb7\x89\x73\x1e\xf0\x66\xae\x6d\x6d\xa2\x59\xe2\x50\xa1\x98\xf2\xfe\x29\x30\xe9\x59\x11\x30\x8c\x9b\x03\xdc\x92\x81\xf2\x7a\xb8\xd4\xe5\x3a\x09\x3e\xdc\x9c\xcf\x9d\xce\xe6\x81\xc0\x24\xe7\xbd\xab\xfd\x1e\xcd\x82\x6f\x81\x34\xcb\x6b\x1f\xdd\x84\x30\xda\xb4\x4e\xcb\x12\x15\xe4\x05\x49\x83\xfa\xcd\xf1\x4d\x2a\xa0\x21\xb1\x53\x53\xa6\xc2\xf0\x23\x93\xb4\xda\x03\x99\xd4\x29\xc7\xad\x99\x8e\xf1\xfd\xb0\x16\x4a\x3d\xe2\x25\x1b\xa3\xfb\x1f\x90\xb5\x17\xee\xe1\x6d\x09\xd0\x6a\xa6\x1f\x55\x04\x9b\x3c\x1c\x17\x9a\x82\xc9\x97\xfb\xdd\x2e\x4d\x4e\x82\x32\xee\xb3\xe6\x59\x89\xf3\x75\xee\xfd\xbb\x35\xac\x38\xf5\xf9\xf0\x4f\xa6\xe2\x9b\xf7\xcb\xf8\x5a\xa6\xb6\x8d\x95\x99\x55\xe1\x8e\xfd\xd9\xdf\x60\x52\xdb\x46\x65\xca\xe2\xb6\x55\x80\xb4\x27\xb4\xa8\x76\xd2\x15\x51\xfa\xbc\x4f\xd3\xb3\xe4\xff\x2a\xd9\x1a\xe6\x37\x2d\x56\x85\xf3\x2b\xc4\x4c\xc4\x5d\x0e\xbf\x2a\xd1\x19\x53\xaf\x8a\xbf\xc0\xf5\xa7\x9a\x5c\xa2\xb0\xeb\x27\x8d\xcd\xae\xd7\xc6\x6b\xc9\xce\x4f\x86\x0f\x29\x2d\x74\x6a\xc7\xa0\xf4\x12\x5c\x35\x83\xb7\x56\xa7\x14\xcc\x10\x57\x47\x2a\x96\xa2\x77\x9f\xd1\xdd\xbb\xcc\x80\x72\xa3\x13\x9e\x52\x96\x1e\xcd\xfc\x1b\x0a\x13\xf2\x0e\x45\x3c\x43\x80\x7a\x45\x18\xff\xd6\x82\x16\x05\x40\xc6\x45\x4e\xc5\x8c\x53\x53\x25\xa8\x01\xd5\x5b\xe0\x4a\xa3\xe5\x4a\x27\x1f\x82\x8d\x5e\x6e\xf9\x39\xd9\x5d\x23\x1f\xac\x53\xbe\x68\x6b\xed\xa1\x6d\x52\x8b\x02\x88\x34\x3a\xae\xf5\xd6\x01\x2d\xd3\xac\x7b\xbb\x91\x2f\x2b\x7b\x6e\xe4\x78\x0c\x01\xd5\xbc\x55\x83\xd9\xfa\x0c\x61\x1b\x4e\x0c\x2f\x8e\x8f\xf7\x83\x94\x3f\x75\xda\xb4\x62\x17\xb1\xa9\x83\x85\xcf\x31\x51\x00\xd1\x55\x64\xfb\x04\x56\x35\x7b\x72\x69\x3b\x84\x1c\xa1\xd3\x18\xad\xbd\x43\x91\x14\x4c\x24\xac\x8d\xe7\xe6\xe9\x3e\xc0\xcc\x11\x45\xd2\xf7\xb7\x65\x08\xfa\x41\x35\xfe\x3f\x4a\x7d\x85\x2b\xdf\x12\xa2\x11\xc4\xe7\xfe\x31\xf1\x03\xfe\xfa\x28\xe5\x69\x89\xa6\xec\xfb\x27\x12\xe0\xb5\x4b\x60\xcb\xd0\x67\xf4\x4b\x44\xb1\x2d\xc4\x08\x17\x73\x34\xee\xbd\x4d\xb2\xe2\x39\x82\xcb\xf8\xda\xd9\xf3\xe8\xcd\x09\x3a\x5c\x61\xdc\xbb\x10\xc4\x16\x10\xdf\xb4\x74\x53\xca\xbe\xc2\x07\x1f\x19\x91\x61\x44\x12\x97\xcf\x88\x8c\xc5\xbb\x46\x29\xaf\x13\x76\xcf\x20\xf5\x37\xcb\x96\xa0\x73\x3f\x74\x2b\x88\xa1\x3a\xee\x54\x0a\x37\xf3\xc8\x04\xf5\xbc\x89\xae\xb0\xe9\x37\x7f\x64\xca\x15\x5a\xc9\x66\xdb\xa4\x1c\xb2\x80\xba\xe7\x45\xb9\x7c\xfb\x79\x8d\x16\x43\xfd\xc0\xa3\x2e\xd4\x0e\xd1\xa9\x5e\x6d\x50\x41\x9d\xf8\x39\x62\xf0\xc9\xcb\xed\x5b\x33\x4e\x0f\x9e\x8e\x9f\xf1\xa5\xce\xdf\xf8\x84\x74\x31\xb4\x12\xb1\x4e\xc3\x9e\xdc\xaa\x77\x1b\x5c\x24\x50\x88\xaf\x6e\x15\x73\xb2\xb0\xec\xe3\xf5\x42\x19\x25\xf7\xcc\xe9\xb4\x12\xa9\x60\x5e\x60\x91\xd7\x24\x8e\xa2\xcb\xa5\xbc\x2e\x5d\x37\x69\xa0\x48\xd2\x2e\x87\x96\xdf\xbf\x48\x1e\x89\x80\x56\xf8\xeb\xff\xd7\xd5\xda\xf2\x62\x7d\x08\x2c\x39\x00\x37\x7f\xad\x45\x93\xa7\x0c\x5d\xd3\xc2\x09\x08\x32\x3f\x74\x75\xb6\x4c\xa8\xd0\x94\x67\x98\x3b\xd6\xda\xa2\x54\xe7\x28\x08\x10\x01\xb9\x84\x3b\x3b\x55\x7d\xd3\x20\x48\xb6\x34\xaf\x37\x65\x18\x93\xb2\x0a\x27\x89\xf3\x34\xbe\xeb\x2d\x49\x4d\x05\x5b\xa3\xe2\x1b\xb2\xda\x71\x90\x8b\x52\x7d\xb7\xfc\x8a\x53\x4a\xbd\x89\xdc\x4a\x35\xe4\x40\xee\x79\x93\x3f\xa8\xbd\x61\xca\x2e\xe3\xea\x69\x7a\xff\x34\x48\xdb\x71\x96\x69\xa5\x91\xf0\xce\x9e\x3e\x35\x4e\x4b\xf9\x76\x40\x6c\xe2\xd6\xe2\x4a\x12\x06\x53\x61\x5d\x82\x7a\x41\x78\x50\xad\x57\x0a\x4b\xdf\x10\xfb\x60\xb0\xc7\x8d\x3f\xda\xe0\x29\xf2\x5f\xf8\x36\x2d\xd3\x8a\xba\x1b\xc9\x3d\x7b\xdf\x10\x05\x8d\xcc\x87\x45\xc6\xd3\xfd\x14\xa5\x23\xe4\x92\x2a\x77\x59\xee\xcb\x59\xcb\x75\xcb\x1c\x9a\xd8\x50\xf1\x79\xff\xbb\x2f\xeb\x04\x51\xdb\x02\x16\x36\x1f\x80\x7d\xf4\x01\xf5\xc5\xd9\x36\x46\xb5\x30\x4e\x0d\xaf\x2f\x13\xbb\x5d\xc2\x61\x7d\x00\x24\xfc\xc5\xf0\x31\xda\xef\xaa\x51\xc6\xe9\xb7\x02\x71\x57\xd8\x99\x1d\xf9\x38\xd0\xaf\x96\xa2\x27\x73\x1a\xed\x32\xac\x56\xb9\x54\x9b\xfc\xd2\xcb\x73\xc3\xc4\x17\xe6\xf0\x6b\x11\x20\xaf\xb8\x5c\x67\x14\x57\xc4\x1c\x07\x98\xb4\x9e\xa6\x03\x22\x7a\x53\xd8\xe4\x6c\x3c\x93\x1e\x22\x6e\xa2\x1d\x8d\x7f\x7b\x98\x48\xfa\xb4\xcb\x41\x5d\x42\x61\xe6\xde\x65\x02\x48\x44\xa9\x67\xf3\xf7\xf3\x1f\xab\x87\x2a\x97\x27\xd1\x10\xef\x94\xb8\x9f\x2e\xe4\x79\xa8\xa9\xd6\xf9\xec\xbd\x2a\x41\x9f\x51\xdb\x4e\x34\xfd\x67\x4c\xce\x70\xdb\xaa\xc4\x97\x8e\x95\x1f\x5a\x07\xe7\x83\x9b\xcc\x09\x3e\x7f\x47\xa6\x36\x0e\x13\x45\xe4\x67\x77\x88\x8e\x02\xb1\x64\x67\x6e\xfc\xea\x02\xc8\x4e\x65\xe1\xc5\xdb\x0d\xfe\x7b\xd1\x83\xeb\x14\x19\xb3\xd0\x0b\x42\x58\x38\xe6\x9c\xf9\x63\x54\x7e\x67\x5c\x59\x38\x19\x77\xf5\x7f\xdd\xa4\x2d\x50\x91\x5b\x41\x29\xe9\x24\x67\x9c\x54\xe7\x1c\x28\x20\x6e\xe8\x14\x7d\x6c\x0b\xd9\x91\x82\xa9\x54\x0d\xe0\x04\x51\x2c\x45\x13\xa7\xc8\x27\xd3\x45\x55\xc6\xc0\x6f\x15\x63\x19\x90\x7b\xe0\x82\x0d\x03\x14\x73\x16\xec\x63\xc4\xb5\xe2\xe2\x5f\xff\xfd\x27\xe5\x9c\xdb\x46\x4c\x45\xf5\x16\xdf\xd2\xc5\x8f\x4c\x8e\x4f\x82\xf0\xb5\x64\xe3\xff\x21\x19\xc3\x9f\x0a\x1e\xd8\xa4\x27\x6b\x53\x21\x28\x13\xfd\xe5\xdd\x26\x0f\xeb\x38\x1b\x28\xd2\xf6\x6b\x57\x42\x07\x3c\x9d\x0b\xf5\x17\x26\x76\xa6\x43\xd4\x90\x11\xa5\x81\xe8\x57\xd7\xd0\x86\xc8\x8f\x23\xb0\xb6\x76\xfa\x87\x5e\xc0\xd4\x2e\x08\xcb\xa8\xf8\x89\x90\x05\x6a\x6d\xd7\x68\x95\x55\x96\x8d\xcd\xd4\x49\xdf\xf8\x96\xa6\xbb\x91\xba\xc7\x8b\x69\xd2\xcb\xbb\x55\x3d\x58\x37\xd1\x57\x1a\xd8\x93\xa5\x92\x76\xfb\x5d\xeb\x8b\x55\xe7\xbc\x86\x61\x37\x4c\x96\x48\xba\x50\x50\xaf\xa3\x9b\x27\x6b\xe0\xf9\x20\xc0\x8e\x17\x08\xaf\xc3\xe8\x8f\x5b\xd5\x6d\x9c\x53\x06\xe9\xb4\x6c\x32\x5e\xf9\x5c\x5a\x31\xd5\xd3\x72\x72\x6d\x90\x3e\xc4\x4e\x5c\x55\x22\xc5\x7f\x5f\x30\x4c\x25\xd5\xb8\xb8\x11\xe7\xbb\xa1\xc3\xa4\x96\x41\x45\x8c\xf2\xbf\x5c\xd7\x8e\x32\xe6\xca\x4d\x09\x3e\xf1\x4c\x55\xd0\xe8\x2c\xe4\x0a\x6a\x9d\x71\xe1\xd1\xec\xe3\x08\x42\xd6\x45\x7c\xeb\xbc\x8b\xf5\xd5\x5b\x25\xbe\x1c\xab\xb3\xbe\x21\x5b\x86\x29\x81\xa0\x0e\x2b\xd2\xdc\xfd\xa7\x61\x3a\xff\x31\xcc\x6c\x1c\x04\x44\xb9\x05\x73\x0e\x64\xa7\xc5\xd3\x67\x09\xe0\xdc\xa4\x93\x42\xd8\x0d\x85\x01\x86\x22\x8e\x4d\x14\xd3\x33\xcc\x02\x44\xb8\x26\x77\x74\x76\xb5\x9a\x1d\x6c\xe2\xfa\x5d\x5c\xca\xe4\xc4\xbd\x8a\x57\x22\x71\xd5\xe5\x74\xc7\x41\xdd\x6f\xd8\x23\xa6\xc8\x68\x77\x0c\x6e\x91\xe4\x58\x4b\xf9\x9c\xe3\x2e\xd0\x07\x7b\xf1\x39\x12\x7d\x61\x74\xdb\x42\xb9\xa1\x69\x8f\xdb\x8e\xc2\xd5\x0f\x29\x56\x21\x5c\x8b\xac\x58\x8a\x3e\xc3\xce\xa3\x23\x99\x3a\xc7\x1a\xff\x36\x53\x01\x0d\xd0\x3a\xdf\xa6\x80\x22\x47\x6e\xf2\xb2\x2c\xc9\xbf\xca\x90\xdb\x65\x13\x57\x5b\xbe\x7e\x7d\xbb\xc2\x64\xa1\x65\x12\x84\x71\x3e\xe1\x2d\xcd\xd5\xd9\x89\x52\x2f\x76\x88\x2b\x74\x0b\x93\xef\x78\xf1\xfe\xb4\x21\x0b\x7d\x8b\xb7\x3c\x9b\x64\x34\xaa\x52\xb9\x01\x8b\x16\xed\x6c\x66\xbb\xda\xb8\x31\xe5\xbc\xa0\xca\x21\x2d\x1f\x38\x6f\x57\xab\xff\xbd\x33\x96\xde\x99\x33\x52\x4d\x84\x21\xce\x1c\x4e\x17\x6c\xc8\x61\x4d\xb0\x89\x4b\x15\xf5\x40\x3b\xec\x09\xc1\xf1\xf0\x54\xb6\x5b\xb7\xc0\x54\xfc\x3c\x9f\xd1\x78\x71\xbe\xba\xc5\x07\xd5\xc9\x62\x29\x1a\xd1\x5f\x15\x88\xa9\x54\xb0\xcb\x89\x41\x7f\xe9\xd4\xf6\xe0\xb4\x86\x32\x84\xab\xe8\xcd\x45\x5a\x2f\x2e\x0d\xe3\xc5\x32\xff\xd4\xb1\x41\xaa\x9a\x58\xa9\xcf\xd8\x30\x58\x77\x84\x06\xdb\x9c\x04\xf8\x7c\x58\x0b\xe4\xd4\xf3\xa8\x8f\x93\xc2\x71\xe2\x31\x5e\xa3\x14\xaf\x4d\x46\x47\xfa\xa5\x9d\x7b\x72\x64\x86\x44\x9d\x72\xf2\x8c\xef\x2f\xd3\x16\xec\x38\x48\x78\x5b\xc6\xea\xec\xc1\x0b\x50\x80\x18\x76\x35\x12\xfa\xc7\x9e\xd1\x50\x25\x36\xf5\x85\xfe\x42\xee\x44\x0e\x66\xf4\x1f\xe3\xe5\xef\xe4\x2d\x9a\x26\x7a\x0f\xa1\x8e\x28\xa2\xde\x33\x57\xd8\x70\x99\x14\x72\x54\xfc\xcf\xab\x0a\x61\x0b\xd9\x00\x28\x0d\xfa\x41\x3c\xb9\xde\xc2\x94\xd5\x2c\xac\x5c\xee\x8f\xdf\xa7\x8a\x7c\xe3\xb4\xdf\x9c\x7a\xb7\x4a\xbd\x25\x8c\x07\x8f\x3b\x3a\xb2\x13\x85\x06\x17\xfb\xcc\xce\x59\x8f\x3f\x95\xbd\x38\x5d\xc8\x0b\xfd\x00\x29\xd2\xac\xd1\xbe\x17\x75\xe9\x0f\x8c\x82\x64\x98\x60\xfc\xe6\x91\x66\x8d\x1a\x81\x5a\xe5\x3b\xa9\x9b\x1e\x83\x58\x7c\x03\xa3\xeb\x43\x4a\x78\x69\x13\xee\x1a\xa9\xcc\x85\x49\x9d\xd8\x98\xd7\x07\xd1\x97\x47\xeb\xc3\xee\x4e\x6c\xa6\xcb\xaf\x4b\x76\x81\xe6\xcb\x8d\xd4\x8d\x2f\x64\xa0\x68\xef\x46\x6f\x6c\xd6\xac\x31\xb9\xfa\xa7\xab\x0d\x50\xfa\x72\x64\x9e\x88\xbb\x36\xc6\x9c\xd5\x1b\xf5\x4e\x6c\x42\x7e\xa9\xe8\xa8\x31\x0f\x69\xa4\x53\xbb\x58\xb3\x50\x2f\x12\x70\x4a\x3e\x96\xf5\x5f\x91\x6f\xe5\xc3\xf2\xd8\xbc\xa1\x60\xcd\xe2\xd6\xc9\xe4\x84\xa4\x68\xc7\x5e\xa9\x3c\xe3\xf9\x0d\xd3\x4a\x1c\x10\x8a\xa5\xe8\xc5\x99\xef\xd7\x0a\xed\x6e\x1b\x39\x59\xae\xe3\x80\xc7\x65\xbd\x5a\x65\xb4\xa9\x67\x8e\xfe\x06\x4a\x35\xc5\x2a\x8d\xfb\x6e\x5e\x8e\x6a\x7f\xe3\xcb\x0a\x58\xae\xd7\x22\x60\x06\xde\x57\x18\x26\x7c\x6c\x66\xb7\x8b\x8c\x5e\x2c\x45\x7f\xdf\x3e\x3a\x33\x16\x22\x26\xf1\xd2\xe5\xde\xbf\xbd\xa9\x0b\x5b\x51\x5b\x8a\xc6\x14\x26\x47\x8a\xe0\x16\xc3\x15\x12\xd0\xf8\x47\x76\x3d\x28\xf9\x26\x35\xc4\xfd\x7e\x96\x68\xa3\x09\x8b\x78\x89\xac\xa0\xf1\x87\x37\x64\xcb\xd8\xc6\xff\xfa\x86\xfe\x23\xd4\xcc\xd3\xe5\x72\xbd\x84\xbe\xfc\xdd\xcb\x54\x66\x7d\x60\x61\x76\x65\x03\xfc\x27\x0b\x1b\xef\x82\x7f\xb2\x92\x21\xd7\xaf\x62\x96\xf4\x98\xb7\xee\x1f\xad\x2c\xf0\x5d\x6e\x8c\x9c\xf0\xc0\x73\x67\x36\xcb\xe9\x06\x27\xce\xc7\xa5\x3f\xd0\x71\x07\xbc\x21\xab\x6d\x27\x6c\xf6\x04\x2a\xac\xdf\x2a\x1d\xdf\x50\x4d\x1e\x8a\x3d\xda\x14\x53\x72\x65\x12\x7a\xd3\xa7\xf7\xb7\x2a\x4d\x82\xdb\x15\x20\xdf\x52\x5e\xff\x27\x04\xdc\xdc\x0f\xe2\x13\xcc\x8b\x89\xdb\x97\xc9\xb6\x26\x74\xbb\xa1\x1f\x98\xf0\x84\x2e\x9a\x85\x1d\xc2\xaf\x7f\x1c\xe1\x6f\x99\xa0\xc5\xa9\x6e\xca\x02\xab\xa1\xe9\xae\x5c\xff\xc4\xff\xe5\x1a\x05\x5e\x1f\x74\xf3\x50\xa5\x68\x17\x4e\xc8\xe8\x8c\x44\x34\x13\x3f\xe0\x80\xa2\xf8\xcf\x1b\x4f\x08\xcd\x49\xf0\xef\x03\x47\xe6\xb7\x47\x24\xe5\x1e\x62\x0e\x9f\x00\x71\xb4\xf8\x45\x4f\xaa\x2e\x59\x1d\x53\xe3\x6f\x69\x6d\x1c\x28\xe2\x1e\x80\x9d\x0e\x3d\x92\xe2\x39\x7c\xaa\x3a\x49\xf7\xe5\xf0\x0b\xe7\x33\x25\x90\x63\x0d\x7b\x9f\x60\x90\x09\x77\xd2\xc8\x4a\x16\x97\x8e\x13\x26\x9c\xb9\x6f\xc9\x37\x18\x20\x09\xb9\x88\x96\xae\xd5\x78\x97\xc8\x0d\xa8\xd4\xb4\xed\x33\x6a\xd3\xe5\x56\xf9\xaa\x36\x5e\x2f\xad\x57\xa8\x7a\x57\xce\x8e\x7f\xfa\xa0\xed\xe9\x5a\xb4\x63\xea\x84\xa6\x62\xe1\xe7\xcf\xea\x3a\x99\x7e\x80\x51\x32\x46\x31\x2e\x5d\x08\xad\x6d\xb7\x45\x6c\x28\xa1\xb6\xee\x92\x60\xbe\x90\x1f\x00\xf6\x46\xb6\xf6\x44\xd3\x05\xc4\xaa\x5b\x6c\x6d\xae\x0f\xed\x6a\xd2\x70\xff\xa7\x36\x0e\xf1\x18\xad\x92\x00\x73\x1f\x41\x61\x69\x73\x6e\xa1\x22\x3d\x5e\x0e\x40\x70\x2a\xbf\xb7\x9f\xfc\xd3\xe9\x33\xa6\x4c\x6b\xe7\x12\x0d\x3d\x3b\xe1\x81\x96\x59\x18\x07\x62\xf0\xe3\xdd\xaf\x1a\x3a\x79\xb4\x0b\xfb\x0e\x06\x82\xf7\x92\xb1\x5a\xf9\x87\x5d\xd3\x52\x1f\xe9\x7f\xd6\xb3\x6b\x4d\xbb\x11\xff\x05\x3e\x05\xce\x76\x1c\xf5\x17\x74\x9a\x01\x77\x05\x16\x57\xeb\x63\xfb\xdf\xaf\x97\x6a\x4d\x03\xc4\xe2\x6b\xb2\xa5\xef\x8e\x8f\xaa\xd2\xa1\xb4\x5d\xad\x89\x76\xfa\x1e\xe5\x4d\xbc\xe0\x02\xfe\xdd\x56\x48\xb2\x71\xd3\x0b\xec\x41\xbc\x4e\x1b\x70\x83\x26\x8a\x58\x4c\x5d\xf9\x6a\xd3\x7a\x4d\x4c\x57\x3e\x75\x5a\x3e\xdb\x4e\xc4\x6a\xb0\x45\xfe\xc2\xd2\xf4\xdc\x37\x11\x9c\x1e\xd5\xc7\x9b\xae\x69\x87\x95\x64\x71\x5a\xd8\x93\x9e\x39\xdc\xdd\xbc\x66\x9a\x70\x5a\x5e\x3a\x8b\x72\x38\x84\x31\x75\xf5\xc0\x34\x17\xc5\x0d\xff\xe8\x1d\xda\xa1\x0a\x04\xfe\xba\xb0\x48\x6a\x3d\x94\x49\xd3\xcf\x6e\x7d\x50\xce\xa3\x1a\x58\x8e\x39\xf2\x9b\xef\x52\x90\x06\x8c\x26\x08\xb6\x5b\x4f\x2b\x93\x34\x5c\xc7\x6e\x60\x15\x6d\xc4\x12\x11\xec\x2f\x3d\x24\xf4\x6c\x3c\x0b\xe6\x65\xc6\xd9\x37\xb3\x4f\xd1\xa6\x28\x19\x70\x5e\xd2\xa9\x08\x37\x3b\x5e\x68\x8b\x7d\x54\xfe\x3b\xfb\x14\xa4\x6e\x18\x98\x16\x01\xfc\x54\x7e\xc7\xf2\x54\x18\x09\x95\x79\x49\xbc\xb1\xd2\xaa\x0a\x12\xeb\x0d\xf4\x9f\x73\xd9\x04\x06\xe6\x1c\xe0\x3b\xfa\xe9\xc5\x0a\xb3\x91\x89\xdf\x30\xc0\x83\x2f\x70\x03\xd7\x10\xe4\x44\x96\x35\x3a\xe3\x99\x76\x25\xc2\xe6\x0f\x1c\x00\x5c\xfd\xf5\x2c\xb4\x89\xa9\x34\x6e\x85\x45\x87\x5a\xb3\xe6\x58\xd9\xcf\x35\x7c\xa1\xd2\x3f\x72\xc8\x2c\x8b\x3b\xb5\xa7\x5b\x14\xef\x07\x16\xc0\x12\x2e\xfa\xe7\x76\x4d\x0f\xa0\x43\xb0\x8b\xa2\x9f\x6a\xae\xbf\x84\x0b\x23\x89\x7d\x5f\xee\xda\x73\x43\xd2\xe8\x49\x5d\x08\xf6\x5d\xe3\xb5\x8e\x0e\x57\x30\x43\x76\x9c\x37\x32\xe6\xdb\x4b\x9a\xc4\x61\x1c\x12\x04\x18\x8b\x31\xad\x61\x8f\xd3\x87\x56\xa6\xc5\x65\x95\x60\xd9\x7f\xc9\x1b\x8a\x6b\x2b\xe2\x48\xbb\xaf\x05\x52\x7d\x20\x50\x90\x72\xf9\x67\x46\xcf\xfe\xff\xe6\xb2\x98\x54\x8d\xc5\x52\x34\xfc\x6d\x81\xec\xa5\xbe\x8f\x15\xde\xb6\x31\xa8\x9a\x39\x5b\x90\x65\x8a\xa5\x68\xec\x1e\x5d\xf6\x9c\x31\x2e\x4d\x04\xca\x33\xd1\x6d\x4a\x7e\x6b\x9b\xc5\xbd\xc6\xbe\xa3\x1b\xe6\x0a\x1b\x6b\x68\xdd\x27\x14\xd4\x25\x5c\x35\xac\x61\xc0\x46\xf5\x68\x86\x2a\x0d\x1a\x8a\x45\x53\xeb\x14\x89\xde\x03\x03\x89\x15\xcb\xfa\xf2\xef\xcc\x49\x16\xd8\x5c\x0b\x2a\xfe\xc5\x9f\x3a\x27\xc1\x9d\x61\xb3\x15\xca\x57\x4e\x0d\x11\x7d\x67\x17\xee\x06\x7f\x0a\xe3\xd7\x13\x9b\x68\x59\x66\x17\xaa\xa4\xda\x03\xc6\x9c\x8d\xb2\xf4\x4b\x50\xc3\x7c\xc3\xa2\xe5\x19\x97\x08\x72\x83\x7c\xa4\x17\x4f\xd1\x91\x29\xa1\xe3\x65\x79\x00\xb9\xe5\x8a\x79\x09\xc3\x41\xc8\x00\xfe\xff\xe3\x49\x52\x77\xc7\x47\x6e\x05\x20\x06\xc9\x5d\xb9\x6c\xba\xb6\x01\x46\x01\xf2\x03\x46\x3d\x4b\x74\x2b\xd1\x9f\x46\xab\x38\x69\xc6\x54\xf1\x8a\x6d\x87\x35\x64\x39\xae\x63\x66\x6b\x70\xa4\xc2\xea\xb7\x2f\x56\x4a\x5e\x12\x97\xcb\xbd\xa9\x74\x44\x6e\xcd\x5c\xe9\x6e\xb6\x3e\xa4\x20\xb8\x9f\xa9\xcc\x2f\xdd\xab\xc3\x97\xaa\x98\x25\x0d\xd0\x8d\xcf\x2b\x95\x21\x23\xbe\x49\x6d\x5b\xd6\x25\xef\xdb\x22\xe8\x8b\x98\xc5\xc5\x42\xc6\x75\x75\xca\x98\x66\xdb\xee\x38\x40\xc1\x2d\xfa\x92\x30\x40\xe3\xda\x7c\xb8\x06\xc0\x2d\xe3\xb9\x0b\xa0\xb3\x9d\x35\x2d\xfe\x5f\x37\xae\x55\x88\x12\xa8\x58\x8a\xc6\x57\xb3\x07\x8f\x56\x13\x28\xd5\xed\x2f\xea\x3c\x29\x14\xb4\x25\xc8\xeb\x17\x34\xb5\x56\x0b\xf1\x42\xde\x15\xc2\xd0\xd1\x9c\xb1\x7a\x1d\xe2\x63\x93\xeb\xc5\x41\xa2\xc9\xbd\xb7\xa2\xec\x0d\x19\xf5\x30\xe3\xc2\x7a\x7a\x21\xd0\x27\x8c\x5f\x97\x5c\x77\xcd\x82\xeb\x96\xaf\x88\x53\xd4\x9c\x27\x86\x8a\x12\xd9\x46\xdd\xd5\x10\x74\xf9\x7f\xa9\xb0\x42\x58\x08\x42\xa8\xd1\xfc\x73\x19\xcb\x46\xde\xd3\xc4\x3f\xe1\x43\xfd\x86\x8b\xb6\x2b\x04\x1d\x43\xa8\x14\x73\x65\xfe\x85\x6d\xec\x16\xa7\xeb\x2f\x74\xec\x28\x68\xc6\x16\xfe\x9f\xcd\xd8\xf6\x45\x0a\x7b\x1a\x73\x16\x50\xe1\xce\x3d\x17\x8b\x34\x1c\x60\x9b\x57\xd2\x1c\x51\x24\x70\x64\xee\x04\x6d\xbb\xcc\x68\xe2\x3b\xb8\x60\x8a\x3e\xba\xa9\x12\x8d\x43\x73\x69\x45\xb1\x16\xe6\x3e\xc4\x02\x51\x1e\xdd\x7f\x42\xcc\x32\xe2\x2e\xed\xb2\x27\x64\x15\x3b\x75\x76\x7b\xb1\x14\xe1\x33\xd9\x77\xe3\x60\x52\xcb\x72\xe5\xbf\xb4\x40\x4a\x6c\x4e\x9d\x56\x2c\x45\x03\x4e\xa5\xde\x54\xb3\x9b\x5e\xd1\xa1\x72\x36\x88\x78\xd8\x25\xae\x1f\xda\x48\x40\x83\x17\x4d\xc8\x9e\xb0\xa9\xd3\x53\xc7\xd9\x23\x63\xb4\xac\x50\x61\xa4\x12\xc7\x56\x01\x8d\xbf\xf3\x51\xc5\x28\x95\x52\xc0\x98\xcc\xac\x40\xd5\xef\xdb\x84\xc7\xa8\x8b\x16\xeb\x4b\x5b\x33\x90\x7d\x58\xbe\xe5\x15\xb8\x15\x16\xa9\x59\x55\x5b\x00\xbd\xf2\x13\x8e\x40\xe2\xe6\x42\xcf\x1c\x67\x70\x49\x79\xbc\x0a\xa7\x38\xef\x24\xbc\xd0\x31\x4f\x2b\x71\xe3\x12\x44\x58\x86\xc3\xa0\xe1\xf0\xfe\x6c\x65\x65\x26\x13\x88\x4f\xde\xa6\xf0\x96\x50\x59\xa0\x52\x96\xee\x52\xd8\xf3\x26\x8b\xbb\x96\xb8\x4e\x39\x3e\x37\x7d\x03\x33\xda\xb9\x59\xe3\x3f\x9f\xce\x96\xce\x7e\xdc\xc5\x83\x7a\x4e\x36\xce\x9f\xae\xaa\x44\x90\x1a\x27\x74\xf0\xe7\xf6\x5f\xfb\x34\x0f\x31\x8e\x30\x4b\x88\x77\xf6\xb2\xec\xe7\x2e\x16\xa1\x66\xf9\xe9\x2b\xb2\x8e\xe6\xfa\x59\x2c\x74\x85\x5e\x7b\x6e\x8a\xb6\x86\x17\x38\x75\xc1\x01\xc9\xdd\xbb\x3a\x3b\xb8\x2a\x13\x41\x27\x50\x19\x15\x83\x35\xa3\x2a\x0b\xf5\x26\xaa\x2e\xc6\xdc\x8d\x4d\xfa\x5d\x15\xea\xc6\x79\x51\x00\xbc\xc7\x3f\x20\x13\x05\xf2\x3c\xc4\xa0\x4b\x15\xff\x75\xf8\x19\xad\x5e\xaf\x54\xb8\xe9\x33\x5c\xb1\xab\x23\x05\xea\x17\x2a\x15\x46\xee\x77\xe5\x0c\xf7\x4d\x7f\xc0\x7f\xd2\xb8\x6f\x7c\x6e\x21\x92\xf5\xb7\xee\x10\xb8\x6b\xd0\xd5\xed\x02\xbf\x93\x68\xee\x26\x88\x62\xcb\xb0\x1b\x90\x90\xa7\xde\x5b\x2f\x68\x72\x06\x14\xf8\xa5\x82\xfb\x2a\x9c\xd8\x95\x28\x40\x2c\x01\x96\xde\x50\xce\x3e\xcc\x5a\xdc\xb0\xf8\x5d\x0d\x75\xc0\x49\x34\x65\x35\x5a\xad\xc6\x6d\x08\xdf\xa7\x26\x7e\x20\x7f\x4c\xac\x67\x49\xd3\x78\x3a\xf7\xf8\xf6\xe1\x0a\x99\x3a\x41\x11\x1b\x13\x67\x6b\x93\x43\x8a\x38\x0a\x1a\xc0\xc7\x5d\xf7\x4a\x95\x48\xb0\xe7\x6e\x42\x7f\x18\xb7\x4f\xca\x3e\xb2\x8e\x29\x33\x52\x21\xb1\x3b\xfa\x5d\xa2\xcc\x3c\x9b\x5d\x99\x87\xed\x14\x86\xc2\x36\x72\x78\x85\x5d\x39\x92\xfd\x61\x53\xaf\xba\x6a\x56\x9b\x98\x08\x7c\xe5\x2d\xc5\x98\x95\x32\x87\xba\xfc\x9f\x9c\x7b\x27\x7d\xa3\x56\x73\xd9\x5f\xb8\x41\x1a\x7b\xe0\x04\xf5\xda\x97\xbb\xbc\x47\x57\x05\x6a\x80\xd9\x62\xf4\x13\x39\x52\xe8\xa4\xb2\x8c\x8f\xde\xdd\xa6\xa2\x31\x31\x83\xf1\xd3\x86\x76\xed\xde\x21\xdf\x47\xa6\xf0\x0e\xc8\x5f\xf7\x1c\xac\x26\x57\x58\x71\xd5\x7b\xc5\x23\xf0\x65\x17\x61\xf0\x1c\xc9\x3f\xd1\x4f\xd3\x66\xb3\x7d\x2a\xae\xd7\xf5\xe2\xef\x3a\xa1\x10\x12\xda\x74\x38\xcd\xed\xbd\x3c\xb7\x1f\x7d\x55\x47\x11\x3b\xf8\x7c\x2e\x50\xf9\xa5\xa3\x74\x71\x4a\x50\x0b\x42\x6e\x00\x9f\xf2\xe0\x5c\xb9\x71\x22\x3d\x4a\xa1\x64\xb6\xc9\xae\xa8\x0b\x13\x6e\x85\x9f\xfb\xc8\x29\x8d\x7b\x0a\xd0\x0a\x20\x1a\x88\x49\x45\xf0\xd8\xd0\xa4\x08\xa6\xcc\x11\x27\x6d\xfa\x39\x4d\xef\x8e\x3b\xfe\x43\x20\xfa\xe2\x03\xfa\x88\xbb\xd7\x21\x6e\x46\x95\xfd\xa5\x07\x15\x11\x01\x8b\x91\x2a\x34\x99\x0b\xb5\x8d\x37\x67\x86\x4f\xd7\x6c\xcb\x7d\x97\x76\xc3\x2f\x7a\x77\xef\x04\x68\x44\xba\xbb\xdb\x84\x1f\x25\x71\x39\xf9\x8d\x73\x78\xdb\x4c\xca\x85\xee\xea\x9a\xa0\xa7\x74\xce\x82\x12\xe8\x93\x6c\x54\xf3\xc3\x87\x75\xc5\xce\xe1\xca\x30\x16\x8a\x15\x99\xd7\xfb\xdd\x22\x8f\xb0\xd0\x69\xe6\x1a\xcd\x07\xe4\xf8\x94\xeb\x25\x5d\x3c\x17\x5e\xff\xac\x8e\xb6\x8e\xb8\xf1\x30\xfe\xf7\xf2\xec\xec\xdc\xe6\xea\x5e\x7e\x90\xb0\x57\x92\x57\xf6\xb9\x82\x8e\x50\x24\x1c\x9d\xac\x86\xe5\xdc\xe1\xb5\xc3\x95\x66\x28\x41\x83\x3d\xb9\x40\x6b\x87\x2c\x86\x51\x90\xf2\x1c\x7b\x9f\xbf\x24\x7d\xd2\x71\xa5\xd0\x04\x36\x7d\x3e\x7b\x13\x5c\x8c\x92\xd2\xbb\xd4\x97\x9b\x18\xe9\x38\x67\x46\xbb\x41\x2a\xac\x70\x81\x40\x51\x80\x40\x15\x67\x62\x03\x12\xe1\x82\x95\xe9\x99\x07\x64\x4c\x38\x54\x3e\x3e\xe4\xba\xb8\x07\xee\xc6\x8f\x8e\x8d\x54\x87\xf8\x5c\xbc\x18\x7e\xc2\x37\x35\xc1\x7f\x86\x4c\xcb\x21\x9a\x9f\x7c\x34\x6a\x9c\xe2\x8b\x84\xe3\xee\x9d\x98\x7c\xd8\xbe\xe6\x9c\x62\x97\x51\x63\x58\x76\x09\xd7\x68\xf9\xd6\x0f\xcb\x95\x30\x1d\x0f\xdb\x91\x2e\xf7\xca\x30\x12\x97\x93\xff\xf3\xcb\xe6\xa4\x41\xa6\x8b\xaa\x2b\x92\x2d\x90\x62\x16\x23\x86\xd5\xbe\xf8\xa5\x6a\xb3\x15\x94\x4d\x6a\x56\x12\xa9\xa3\x5f\xee\xd5\x07\x9e\xe0\x2d\x92\xb2\xed\xee\xbf\x5a\x23\x07\x85\x44\x9a\x87\x2f\x3f\x3b\x52\x29\x37\x13\x10\x13\x4f\x0f\xad\x69\x6c\xc0\xea\x49\x36\x6e\x57\x94\x07\xe2\x7e\x1f\xd7\xe1\x5d\x7c\x7a\x8d\xe6\x4c\x41\xdc\x2e\xa1\x20\xf2\xc0\xf3\x4d\x86\xdc\x60\x2c\x9e\x34\xa4\xfe\xe3\x83\xc4\x3b\x10\x03\x97\xc2\x17\x34\x13\x25\x0f\x99\xc9\x36\x76\xb5\xb0\x47\xf2\x31\x23\x34\x04\x7c\xec\x67\xc6\x68\x35\x27\x75\x49\x40\x99\xe4\x66\xb7\x8a\xf9\xb6\x1f\x60\x24\x40\x33\xc6\x3e\x45\x12\xb7\x82\x6d\x2e\x04\x17\x7d\xe8\x5e\x65\xce\x86\x00\xd4\x76\xd6\x4a\x5f\x9a\x6f\xaa\x76\x35\x6b\x1f\xd6\xd0\x1f\xdd\xc4\xf7\x61\x8c\xc2\x2b\xdd\x8d\xed\x17\xab\xed\x90\x89\x7d\xd5\x09\x22\x3a\xa8\xa8\xb5\xd4\x31\x6b\x54\x10\x00\x37\x17\xed\x56\xe4\x4f\xac\x86\x4f\x4c\x02\xe4\xb0\xc3\x87\x84\xa7\x04\xad\x21\x75\xe1\xab\x35\xfc\x15\xea\x60\x3f\x20\x66\xfa\x9a\xc3\xe1\x50\x7b\x74\x22\x78\x2c\xbc\x8f\xc9\x6f\x38\x3a\x46\x3f\xca\x20\xd3\xc5\x84\x7c\xfd\xc7\x16\x29\x3b\xb2\x4a\x67\x58\x47\x00\xac\xfa\xe8\x53\x4d\x5b\x39\xec\xd6\x02\x4b\x4c\x43\xfe\x2a\xec\x59\x2d\x22\x90\x45\xc6\x89\x57\x14\x41\x05\x1e\x96\x84\x01\xdd\xd7\xb4\xb5\xbb\x47\xbb\xa5\x27\xde\xaf\x34\x51\x9d\x2a\x71\x49\x1c\x56\x85\xca\xc6\xcf\x9f\x51\x74\x20\x6b\xb8\xa1\x80\x41\xa2\xef\x4c\x51\xd7\x34\xa6\x8d\xb2\x92\x9f\x57\x9e\xc9\x36\x62\x12\xb3\x9f\x46\x3d\x7b\x8d\x3e\x34\x5c\x1f\x12\xd6\xb8\x62\x4e\xb1\x14\x2d\xab\x8e\x55\xe4\x44\xce\xe7\x49\x33\xd9\x85\x99\xe0\x02\xe2\x90\x40\x05\x23\xe5\xff\x24\xf7\x6b\x75\x12\x5f\x8e\x8b\x87\x8e\xd0\x5a\x66\x3e\xd3\x3c\xd3\xa6\x25\x22\xc6\xef\x86\x6b\x36\x44\xa5\xfb\xdd\x27\x55\x17\xe5\x32\x09\x10\xd8\x11\xfc\xc6\xd5\x6c\xe5\x04\x79\x31\x1a\x32\xba\x49\x4e\xcd\xec\x2a\x87\xcc\x4d\x98\xac\x7d\xc6\x3f\x14\x64\x5b\xe0\x07\x6d\x19\xf9\xd9\xb5\x27\x86\x28\x9d\x14\xe5\xf3\x82\x6b\x15\xcb\xf6\x06\xb6\xc1\x8c\xc3\xf8\xab\x9d\x4d\x59\x29\x37\x57\x13\xaa\x58\xec\x41\xb1\x70\x3d\xc7\x9b\x50\xee\x96\x5a\xd8\xdc\xa6\x89\x03\xe1\xb8\x6c\xc1\x4c\x12\x29\x0f\xed\x12\xb5\xae\xe7\x51\x9b\xba\x2a\x5d\xfb\x27\x77\x8c\x55\x78\x5a\xc1\x79\x3c\x1b\x3f\xbd\xbb\x49\xa3\xa2\xce\x09\xfa\xe2\x50\xfd\x69\x97\x32\xda\x76\x08\x73\x69\x5d\x29\x45\x7e\x7b\x78\x44\x3a\xb5\x93\x9e\x3a\xd1\xa4\xed\xd0\x9a\x77\x73\xb8\xe3\x46\xe8\x0a\x6a\x0c\xd5\x05\xdc\xfb\x48\x9b\xd2\x0e\x76\x63\xec\x89\x00\xf4\xdd\x0b\x9a\x07\xac\x88\x63\xc4\x04\xec\xef\xa9\xbb\x2f\x56\x40\x57\x70\x94\x64\x93\xf5\xa7\x5d\x72\xd8\x12\xd7\xe8\x2e\x80\xb4\x9b\xc6\xdf\x03\x86\x29\x73\x2d\xec\x70\xbf\x9c\xfc\x6f\xb6\x8e\x50\xe0\xae\x5e\x62\x97\x70\xc7\xeb\x9a\x3a\x91\x85\x18\xb6\x28\xdf\x09\x26\xe8\xdc\xdd\x27\xe4\x5b\x4f\x1d\x08\x5a\x3b\x84\x36\x27\x17\x8d\x88\x7f\xc3\xbe\xc7\x75\x0f\x41\xae\xaa\x0b\x6c\x8e\x47\xb7\xa9\xfa\x35\x41\x80\x93\xed\x71\x4e\xb5\xe8\x10\x5d\xd2\xd8\xbd\x59\xc4\x8f\x86\x40\xca\xbe\xe1\xbd\x5b\x46\x69\xfd\x69\x62\x82\x95\xdb\x7d\x40\xd9\x71\x05\x8c\x8b\xf4\xf3\x32\xec\xd8\x4c\x88\x8f\x30\xe1\x48\x5c\xea\xef\xd9\x9f\x3d\x2b\xf0\xf0\xd2\xdb\x92\xff\xcd\x7d\x17\x26\xa7\x61\x76\xb1\x14\x2d\xdf\x38\x28\xfe\x5b\x4b\x97\xae\x10\x1f\xfb\xe7\x8a\x83\xb0\x85\xe4\xaa\x2a\x42\xfb\x2f\x55\x28\xb9\x7e\x80\x6c\xbb\x69\xd8\xd8\x97\x3f\x5c\xc8\xd0\x3c\x43\xc1\x91\xfe\xec\x39\x8d\x97\x44\x18\xc3\x2e\xe5\x88\x25\x14\x10\x93\x8a\xc1\x3f\x29\x00\x50\xe5\xc6\x4e\x6c\x57\x10\x52\xc0\x56\x46\xf4\xfa\x70\x45\x9b\xc0\xa6\x35\xde\x4f\xe5\x9e\x0d\xf4\x11\x52\x86\x0d\x5c\x8a\x1c\x2d\xcb\x86\x9e\x85\x51\x1d\xd9\x69\x9e\xd9\xb7\x40\x13\xbd\x31\xd7\x37\x0b\x27\x15\xd6\xf5\x97\x33\x2e\x87\x98\x8c\xfa\x26\xe5\xda\x96\x7d\xb9\xb2\x66\xaa\x44\xf8\x8a\x8c\xaf\x39\xe3\xd3\xb9\xfc\x51\x99\x88\xa9\xc2\x11\x33\x7e\xba\xbb\x45\xab\x7e\xa1\xc5\xc9\x6d\x9a\xa7\xd0\x9d\xe2\x1c\x5b\xa6\x15\x7e\x27\x17\x77\x48\x0a\x44\x80\xba\x9a\x75\x3f\xdb\x57\xc9\x11\x9b\x4b\xbc\x62\x29\x5a\xb7\x63\x5c\x53\x9d\x8c\x8b\x01\x91\xb2\x75\xf9\x7b\xee\xd2\xd7\x04\xa1\x6b\x12\xc0\xac\x47\xe3\xe7\xa5\xa1\xdf\x6c\x70\xca\xd7\x87\xdd\x49\xe7\xb9\x22\x3e\x60\xb4\xb3\xb7\x78\xa1\x66\x63\xee\xe0\x84\x2d\xc8\x16\x68\xb6\xdc\xa1\x4b\x33\x55\xff\xd3\xe3\x2e\x52\x5e\x77\xc8\xdd\x34\xb9\xa1\x6d\x29\x1a\x7b\x4b\xf6\x30\xd5\x28\x6b\x20\xd3\xc2\xf5\x4c\xa8\x8e\xbe\x25\x5c\xba\x02\xd0\x0b\xee\x33\x66\x6a\x2d\x5d\x07\xc8\xdd\x41\x66\xba\xfe\x35\xd5\x0d\xce\x21\xbc\x5f\xeb\xaf\x49\x4e\x76\xa3\x0a\xce\x42\x67\x16\x0d\x1f\xad\x00\x08\x2b\x16\x72\x94\x58\xd7\x7f\xa9\xc0\x22\x48\x67\x78\x4e\x97\xba\x19\x78\x33\xc5\x15\x56\x3d\xfe\x4a\x4e\xa6\x2c\x9a\x3b\x4a\x22\x45\x91\xea\xe0\x37\x4b\x21\x66\xc1\x3e\x3b\x6e\x45\xa5\x38\x12\x6b\x16\x0e\xda\x6f\x41\x88\xa0\x2c\xb0\xa8\x87\x2b\x70\x5e\x0f\x57\xe0\x63\x5d\x17\xc6\x99\x1b\x9c\x0d\x56\x2c\xeb\x2b\x8c\xb4\x64\x15\x39\xad\x1d\xcc\x9f\xbf\x39\x51\xfe\x7c\xfe\xdd\xb2\xe7\x6d\xdb\x01\x0d\x03\x2b\x7c\xdf\x00\xf4\xa1\x49\x7a\x04\xba\xb1\x8b\x6d\xa3\xf8\x69\xca\x07\x76\xf0\xed\xa4\x13\xe7\x38\x8f\x0a\xe8\xfc\xf5\xc0\x7b\xf4\x6c\xee\x70\x15\x8d\xb5\x14\x31\x8c\x64\x7d\xf4\x99\xb9\xc3\xd5\xe8\x24\x5e\x79\x6e\xcc\xf1\x21\xe2\x8f\x3a\x05\xfa\x39\x9a\x31\x33\x19\xe2\x84\xd5\x6a\xfc\x77\xbe\x71\x60\x94\x52\x93\x78\x16\xea\x4d\xfd\xfd\x1e\x1d\x3f\x56\xbd\xf4\x16\xb2\x4d\x2b\x34\xbb\x94\x72\x78\x9a\x42\x63\x42\x6e\x80\x5d\x97\x53\xc5\x72\xc7\xcf\xca\xa8\x6d\x86\xd5\x2a\x6f\x2c\xe2\x1f\x89\x45\x55\xcb\xd1\x31\x1c\x6c\x11\xff\x69\xe3\x81\x34\x46\x54\x15\x6c\x4f\x5f\xfe\x73\xef\xc2\xa7\xed\xe4\xf2\xa1\xa5\x68\x86\x60\x55\x5d\x1b\xd7\x27\xd4\x69\xb0\x8a\x8a\x59\xbb\xe3\x90\x32\x61\x9f\xc1\x9d\x4b\x9f\x7e\x45\x5b\xaa\x24\x7e\x3e\xc6\x27\xce\x68\x84\x89\x04\x8d\x0d\x72\x37\x87\x86\x2a\xe5\x22\x01\xb7\xde\xfc\x83\xd9\x44\xab\x4e\x61\x13\xe9\x86\x29\xb7\x69\x5a\x14\x61\xd9\xc6\xfe\x15\xdd\x30\xa2\xcb\x6d\xd2\x1a\x3b\xe4\xe0\x34\x12\x9f\x75\x05\xa4\x8a\x2f\xca\xe4\x25\xdb\x76\x28\x23\xbd\x11\x20\x2e\x9e\x5e\xea\xcb\xed\x5f\x95\xf6\x7b\x15\x85\x7e\x1b\x0d\x3f\xd3\x64\xb4\x5a\xc1\x45\x5a\xad\x42\x7c\x3d\x33\x3e\x6b\x13\x31\x47\x6c\xc3\x56\x1d\x90\x91\x3a\x54\x89\x0e\x4f\x4c\x6a\x32\x30\xec\x12\xc3\xdb\xdc\x8d\xfd\xe5\x83\xaa\x30\x02\xfa\xb5\xdf\xbb\x2b\x19\x12\x30\x8f\x82\x74\x05\x90\xef\xcd\xe1\x72\x26\x00\xea\xa1\x3c\xb0\xdf\xbc\x59\x53\xd0\x25\xcc\x0c\x1d\xf8\xa6\x29\x6c\xed\xad\x8a\x02\x46\xe3\xe3\x28\x71\x25\xfa\xf2\x7f\xed\x81\x63\xb1\x10\x39\xc4\x6e\xb6\x3b\x7c\xee\x3e\x75\xd5\xcb\xe1\x96\xbc\x70\xea\xd1\x64\x30\x18\xf6\xec\x04\x44\xf2\xd8\x5b\x93\xf5\x3a\xcf\x0b\x03\x81\xf6\xd4\xe3\xc0\x37\xb5\x45\x28\xc3\xa6\x69\x65\x2d\x1c\x2f\xd7\xfc\xde\x68\x95\xef\x21\x21\x1f\x18\x9f\xea\x55\x90\xfa\x8c\x62\x50\x44\xae\x9e\x48\x93\x4f\x19\x77\xc7\x0f\x76\x7c\x19\x1e\xec\xb5\x2c\x6c\x54\x15\xa8\xbf\x71\xa9\xad\x6a\xcc\x0b\x27\xfe\xed\x53\xc6\xab\xcd\x32\xd7\xcd\x6b\x2a\x35\x3f\x75\x4e\xd7\xf0\x65\x35\x44\x5c\x91\x17\xb6\x3e\x20\xa7\x35\xd2\x8e\x24\xfe\x2f\x07\x1e\x4a\x97\xdc\xf1\x5b\xd7\x1f\x89\x27\x94\x30\x4c\x0b\x39\x5e\xfc\xfe\x2d\xe2\xf1\x5e\xa7\xe7\x19\xa9\x69\x53\xa5\x4e\xb1\x14\x0d\x7e\x50\xab\xef\x91\xd9\x85\x6a\xe9\xbd\x30\x8e\x9d\x48\x27\x60\x36\x91\x74\xa0\xa3\xcf\x0c\x14\x79\x07\xc1\x60\xee\xb9\xb3\x3a\xaf\xd8\xf3\xd3\xe3\x93\x7f\x61\x68\xb6\xc6\x64\x5c\x02\x89\x0b\x33\x5e\x3b\xb1\xc9\xdc\x43\xc0\xbe\x4b\xd1\x93\x0f\x0e\x57\x39\x6b\x75\x02\x70\x8c\x4b\x67\xc3\xd7\x73\x31\x62\xa9\x4b\x68\xfc\x6b\xfa\xbd\xab\x65\x76\x62\xdb\x99\xcc\xfe\xab\xe7\xd3\x97\x7a\xd9\xec\x8e\xf8\x9f\x7c\x7e\xfe\x20\x11\x67\x10\xa7\xf6\x47\x6f\x3d\x3b\x56\xa5\xe6\x7b\xc5\x20\x7e\xc2\x0d\x1a\x72\x7b\x9a\x38\x8e\xcc\xbd\x77\x94\xde\x71\x75\x25\xbe\xe1\x60\x00\x98\x3a\x9d\x35\xbd\xf0\x23\xa3\x21\xcc\xcc\xc7\xc8\x55\xa0\xd0\xf9\x5f\xef\x14\x4b\x6b\xec\xa1\xf8\xce\x02\x30\x68\xde\x7d\x3a\x54\x1b\x23\x06\xb3\x40\xc3\xaa\x4a\xdc\x69\xc8\xcb\xef\xad\xef\xca\xfe\x1e\xf7\x04\x0c\x75\x86\x95\xe4\xc4\xe4\x96\xde\xa5\x78\xd0\x23\xb3\x8b\xab\x7a\xc6\xff\xa1\xb1\xa3\x89\x18\xc3\x90\x99\x2e\x36\x8c\x95\x67\xc7\x2a\x18\x00\xd4\xdb\x64\x7e\x95\x7f\xf0\x50\x36\xa4\xfd\x3f\xa1\x93\xbe\xb6\x5d\x8b\xb7\x66\xf7\x95\x7e\xb7\xd8\x03\x6e\xd2\xe0\x39\x26\x62\x89\xd9\xdb\xf4\xd7\x15\xee\x50\x9c\x4d\xab\x20\x5e\x93\xdf\xf6\x94\x86\x36\x35\xcd\xd0\x57\x5d\xcc\x27\x3f\x23\xe3\x21\x4d\x14\xc2\x9f\x3d\x29\xff\xd0\xb3\x11\x77\x98\x2e\x84\x9e\x70\x2f\x40\x6c\x7d\x93\x63\x58\xbb\xcc\x64\x2c\x60\xc5\x52\xf4\xef\xe3\x14\x25\xba\x0a\xc3\x2e\xb2\x85\x09\xe5\x31\xe5\x3f\x78\x5c\x67\x1b\x74\x17\xe7\x68\x63\x75\x6a\x27\xb6\xfd\x23\xbd\xf3\x90\xa9\x61\x0e\xf4\xde\xfd\x1a\xb4\x3f\x6c\x08\xb0\x44\xa1\xb3\x1d\xaa\x93\x1a\x23\xb8\x9e\x88\xfb\x8e\x7d\x53\x16\x4d\xbe\x15\x7f\xb1\xe8\x99\x71\x50\x74\xcc\x9e\x32\x75\xf6\x55\x6d\xd3\xaf\xe2\x13\x71\xc5\x73\xa3\x4c\x6d\x3f\x10\x86\xbc\xc6\x2f\xef\x92\x47\x88\x63\x99\xa7\x4c\x10\x72\x41\x1e\xe8\xfe\xdc\xb2\x5b\xfe\x02\x97\xc0\x1e\xe7\x22\xa5\x99\x35\xc3\x32\x02\xe1\xa2\x7f\xd4\xb6\xe9\x5e\xe8\x9a\x41\xc8\xc1\x92\xa2\xd2\x7f\xe4\x5e\x4d\xc3\x2e\x2e\xd6\x38\xac\x8c\x57\x04\x57\xac\x93\xd3\x92\xb6\x8e\xf6\x69\xf1\x3f\xf9\xf5\xba\xa1\x2a\x15\x1e\x75\xf1\xbd\x57\x59\x69\x84\x91\x53\xe6\x9e\xd2\xa5\xe8\xa7\xc3\x5b\x95\x72\xc9\x26\x01\x41\x45\xdf\x43\xdd\x2e\x7c\xd5\xcf\xb5\xc3\xb6\xbc\x0a\x9e\x39\x85\x55\xb6\xde\xf4\x06\x89\x58\xee\x7f\x0d\x50\x30\x14\xd8\xa4\x21\xaf\x0f\x4e\x2f\x4f\x17\x0f\xb3\x8a\x7c\xd1\x30\x68\x89\xe2\x9f\x85\x6c\xec\x06\x04\xd6\x6c\x2b\xd7\x68\x55\x08\x45\xfc\x8b\xc2\x91\x39\xb7\x57\x9a\x3c\xb2\xb0\xa9\xd7\xeb\xbe\x43\x03\x8f\x23\x1f\xfb\x89\xe2\xc5\xa7\xdf\x19\x24\x52\x2d\xf8\x8b\xf7\x15\xee\x1a\x70\x69\x53\xa6\xc4\x01\x57\x0a\x71\xb1\x2f\xea\xa9\x2f\x6b\x53\xd7\x20\xe4\x88\xc5\x44\x28\xc3\xb8\x7c\x8e\xce\x98\xe5\x0a\x0b\x52\x98\xc7\xdb\x31\x5c\x9c\x0b\x1a\x88\x61\x7a\xb1\x14\x4d\x5c\x2d\x53\x03\xd7\x2e\x83\x47\x7d\xed\x52\x99\xb5\xe2\xdf\x84\xb8\x8e\x02\xa7\x89\x6d\x1a\x24\xc2\x08\xa5\x50\x91\xee\x9b\xd7\x92\x19\xaa\xd8\x49\x3f\x30\xbf\xdf\x79\xa0\x74\x5c\x11\x50\x1c\xa7\x07\x56\x69\xe5\x43\x68\x27\x22\xb1\xb9\x1b\x5e\x1d\xa6\x04\x42\x8f\x70\x2d\xa5\xfc\xf7\xee\xd3\x5a\x4d\x1b\x11\x27\x19\x5f\xe6\x4a\xc3\xb3\xff\xb5\x8e\xc4\xec\xb4\xad\x58\x8a\x36\x0c\x50\x28\x1e\x98\xf9\xe1\xff\x8f\xb2\xbf\x81\x96\xa2\xb8\xf3\xc7\x61\xa6\x67\x34\x04\x01\x79\xe7\x8a\x88\x88\x08\x88\xcc\xf5\x72\x79\x27\xc4\x00\xa2\x22\x41\x86\x20\xf1\x2d\x04\xa9\xe9\xae\x99\xa9\x3b\xdd\x5d\x43\x75\xf7\x5c\xe6\xc6\x18\x82\x44\x09\xbe\x84\x25\xc4\xb8\x4a\x5c\xd7\x35\x2e\x6b\x8c\x1a\x63\x58\x62\x08\x31\x86\x25\x84\x28\x31\x84\x10\x96\xc7\x18\xd6\x17\x42\x08\x31\xc6\x10\x96\xb0\xde\xf6\x39\x5d\x55\xdd\xf5\xed\x9a\x9b\xff\x39\xbf\x73\xf6\xec\xc9\x41\xb8\x77\xa6\xbb\xea\xfb\xfa\x79\x91\x3e\x42\xdd\xc6\xb7\xdb\xc5\x24\xab\xad\x2d\x5f\x08\x17\x0c\x51\x45\x12\x8a\xf2\x78\xec\xa4\x1f\x6e\xec\x0b\x4d\x35\x03\x33\xf0\x82\xa8\x9b\xbc\xe7\xa0\xb8\xad\x1d\x81\xe7\x13\x53\xe0\x13\xfe\x6d\xa9\x36\xcf\x43\x1a\x71\x2c\xbb\xf8\x49\x75\xd4\x91\xef\x53\xe6\xe2\x46\xa2\x71\xde\x6d\xfc\x9b\xd1\x0c\x1b\x53\x6b\xaf\xf1\x67\x94\x40\x23\x6a\x26\x0b\x4e\x5c\xa6\x3e\x68\x74\xc6\x50\x8d\x4f\xd8\x73\xce\x20\xb5\x9e\xb6\xa3\x2e\x05\xbb\x55\x60\xdc\x95\x7d\xf7\x01\x7e\x16\x6c\xec\xe6\x27\x83\xdf\x66\x8d\x01\xba\x9e\x9c\x85\x97\x2f\x84\x6b\xaf\x12\xb1\x0c\x15\xa9\x4d\xa4\x59\xb3\x91\xdb\xdb\x3f\x8e\xa2\x18\x09\x30\xd3\xd8\xe9\xaa\xd9\x72\x90\xcd\x59\x1d\xd9\x4d\xaf\x5c\xa4\xbd\x77\xcf\x23\xc8\xbd\x62\xfc\xf8\xf8\xe8\xf4\xce\x89\x51\xf2\xcd\xa8\xe1\x62\xaf\x18\xb0\xc4\x4c\x61\xb6\x0d\xae\x5e\xb5\x29\x37\x7f\xfe\x6d\xf5\x1d\x69\xd0\x3c\xa3\x3e\xb3\x45\xe4\xee\x1b\x19\x71\x51\x19\xb1\x78\x61\x74\x95\x06\xfb\xf4\x69\x60\x56\x2c\xda\x99\x28\xca\xb1\x11\x00\x80\x15\x30\xee\xbf\xcb\x05\xbc\x94\x66\xc2\xe4\xe9\x93\xa3\xaf\xfc\xf1\xfd\xfd\xd4\x4a\x9d\x57\x7a\xdf\x9d\xaf\xed\x1c\x7c\xc1\x3f\xf6\xe3\xc6\x65\xe5\x54\x11\xd9\xa6\xb7\xb7\xce\xe4\x53\xfe\xab\xe2\xae\x2d\xdf\x11\xb5\xd1\x99\x43\x7b\x34\x10\x15\x2a\x16\x51\x85\x43\x66\xe2\x02\x76\x76\xb1\x49\x4c\xa3\x8e\xc5\x02\xb7\x3b\xbb\x67\x21\x88\xc2\x3e\x46\xbc\xe7\xbd\x70\xb7\x2e\x4c\x11\xd8\x3e\x4b\x74\xec\x86\xad\xef\x1f\x77\x6f\xe5\xb2\x88\x54\xc3\xee\x3c\x1f\x74\x10\x5d\xfc\x4a\x9e\x07\xe4\x78\x6d\x52\xad\x50\x0b\x93\xe8\xcf\xff\x78\x9f\x46\x3c\xf3\xaa\xd8\x12\xab\xb1\xdb\x17\x4f\xd0\xca\x45\xcf\xe7\x74\x96\x1e\xb4\x09\x73\x7d\xc7\x68\xb5\x25\xb1\xac\x44\x05\x7b\xfb\x5c\x7d\x95\xa2\x4c\x0b\xb3\xb3\x36\x27\xb0\x74\x44\x58\x4a\x5e\xb3\xf5\x40\xd2\xa9\x15\x03\x80\xa9\x34\xfe\x5d\xdf\xa5\x27\xca\x52\x1f\x5d\x7a\x29\xbc\x55\x94\x61\xa1\x90\xad\x7f\xde\xd6\x55\xe9\xe9\x12\x62\xd4\xa5\x75\xe2\x77\xa5\x40\xa5\xe1\x7d\x83\x9a\x44\xb0\xa9\x1d\x28\x2b\x75\xa3\xcf\x9c\x21\x1c\x04\xcc\xa9\x83\x51\x06\x91\x06\xb7\xb9\x61\xb7\x00\x85\x13\x57\x88\x79\x23\x4e\xbf\x0c\x1f\xd3\x1d\x4e\x18\x8f\xdb\x8a\x66\xf2\xc4\x01\x5d\x6e\x4e\xaa\x51\x85\x97\x77\x69\x2b\xde\x0a\x29\xf9\xf2\x85\x75\x67\x07\x1f\x14\x67\x61\x39\x47\xc5\xf0\xd3\xb3\xee\xb9\x74\xcb\x89\x8a\x84\xda\x28\xbd\xed\x30\xc2\xe5\x92\x61\xb8\x06\x99\xbe\x2b\xbd\xee\x46\xde\xa1\x46\x73\xa5\xe8\x9f\x81\x36\x6c\xcf\x30\x49\x48\x47\x51\x9f\xa0\x63\xd6\xfa\x69\x8e\xe7\x15\xc4\x18\x49\x01\xfe\x8c\xc7\x3e\x00\x10\x89\x06\xaa\x12\x4e\xa7\x19\x34\x04\xcc\x7c\x7c\xc4\x78\x91\xf0\x25\xed\x2b\x17\x03\x66\x61\x37\xce\x97\x3f\x3f\x08\x7a\xc7\x4a\xbe\x10\x5e\xbd\x47\x1f\xb7\x72\xbc\x59\x78\xf9\x9a\x4b\xb4\xbe\xc8\x45\x8c\x58\x56\x25\x05\x44\x6c\x3b\xa9\x13\xd3\xb0\x09\xb2\xf3\xd7\x85\x11\x5d\x7e\x3e\x4f\xab\x5c\x6b\x4c\x0f\xeb\xf7\xbf\x70\x3e\xa4\x7a\xf3\x2e\xea\x57\x1b\x9a\x4c\x7c\x13\x27\xb1\xcc\xe8\x5e\x72\x80\x19\x14\x05\x3e\xe0\xca\x07\xb5\x2d\x19\x73\xa4\x17\xe7\x77\x9a\x54\x68\xb8\x7b\x96\xf4\x67\x7c\x67\xac\x1a\xdd\x57\x68\xe0\xf1\xdd\x48\x53\x68\xed\x5b\xef\x0f\x3e\x5f\xf4\x64\x3e\xbd\x40\xab\x85\x69\x2c\x77\x6c\xcc\xb1\x80\xcf\x78\xab\xc9\xa7\x43\x7b\x0e\x8e\xd2\x7a\x8d\x0a\xb5\x11\xe3\x8d\xaf\x84\x1a\xdc\xd3\x9a\x8e\x1c\xd8\x0a\x44\x3f\xdb\x03\xf3\x26\x77\xe5\xa6\xf4\x8b\xb1\x88\x67\x32\xe2\x48\xf9\x43\x59\x8f\x19\x63\x0d\xcd\x9a\x9f\x56\x2c\xac\x61\xa8\x3f\x92\x9a\x7f\x58\xf9\x22\x13\xfc\xbe\x5c\xf6\x79\xd5\xdc\x96\x19\x72\x2d\x87\x2f\x74\x1a\x63\xd2\x27\x6b\x75\x40\xfd\x78\x9e\xdf\x6d\x3c\xbd\x2b\x7d\x4d\x01\xc2\x4e\xd8\x5d\xa0\xbe\x4d\x13\x05\xa2\x7c\x42\xae\xdf\x0d\x16\x19\xc8\xab\x10\x9e\x90\x77\x69\x92\x3a\x9e\x83\x98\xcf\xe5\x7c\x79\x5f\x69\xad\x8f\xcb\x36\x49\x8a\x33\x4a\xbb\xa5\x48\x1c\xc2\xc2\x01\x3e\xfd\x36\x1f\xcb\x01\x90\x04\x72\x2d\x64\x13\x4f\x98\xb6\x74\x00\xfc\x49\x99\x72\xc2\xbb\xd0\x00\xc8\xb5\xec\x55\xff\xa5\x4e\x98\x1f\x50\x4f\x12\xad\x66\xec\x10\xad\x71\xf4\x9f\x09\xd7\x71\xc9\x17\xc2\xcd\xe3\x52\x3e\x82\x5e\x4d\xf4\x34\xe1\x9e\x83\x89\xf6\x83\x49\xa5\x33\x43\xf8\xf9\x8a\xfa\xd6\x9d\x84\x21\x57\x04\xa6\x01\x8f\x4a\xd7\x6b\x86\x71\xbe\x84\xf8\xf4\x2c\xfb\x94\x06\x0b\xc2\xa8\x49\xb8\xac\xdb\xa8\xdc\x39\x42\x99\xf4\x34\xa1\xde\x0f\xec\x54\x5d\x13\x75\x39\xa1\x2d\xf3\xd5\xed\x5a\xf0\xc4\x76\x4d\x90\x17\x9f\x93\x92\xc7\xf3\xe6\xcf\x9b\x3f\x2f\x86\x85\xb5\x3e\xad\x51\x54\x7c\x0f\xdb\xa5\x78\x2d\xb7\xff\x2c\x70\x49\x75\x1b\x1c\xdd\x17\xf6\xb9\x49\x53\x7b\x72\x7d\x12\xdb\x4a\x48\x06\xeb\x10\xbb\x49\xd7\xa9\x66\xa3\x58\xf0\x3d\x37\xf3\xb4\x06\xce\xa0\x79\x93\x6f\xda\x64\xc9\x6d\xbc\xac\x26\xd2\x9d\x94\x5a\xcd\xb8\xe0\xd5\x1f\x28\x2b\x81\x6a\xb3\x4f\xd8\x2f\xf6\xe8\x1e\x8f\xe5\xc0\xb5\xc4\xee\x85\x17\x68\x9f\x7d\x03\xcc\x33\x89\xc0\xc9\x64\x0e\x3d\x25\xde\xff\x12\xd2\x55\x71\x1b\xf2\x95\x7e\xbd\x04\x2a\x72\x14\xc5\x1b\xc9\xa3\x9c\xbb\x49\x77\x52\x8b\xd1\x3f\x22\xb1\x3f\xbd\x5b\x87\xe4\x0b\x98\x40\x02\x64\xc8\x7c\x7b\x69\xfa\x27\xd0\x1a\x66\xc8\x4f\x9c\x85\xb2\xe3\x5a\x7b\x5c\xd3\x8a\x88\xf0\x5d\xed\x3f\xd6\xb9\xe4\xa3\xcc\x84\xbd\xd6\xb7\x80\xbd\x92\x3e\x9d\x1d\x36\x54\x6b\x40\x88\x2b\x14\x34\xb7\xf7\x6d\x32\x87\xe3\x1b\xfe\xb8\xbc\xfc\xf5\x28\x2d\x9b\x0a\xc5\xb9\x7c\x29\xc0\xf1\xcb\x0b\xdf\x7d\x00\x2a\xa4\x3b\x98\xc1\xe2\xfd\xc0\x89\x74\x18\x2b\x05\x76\xd4\xfd\x5c\x31\x1b\x64\xe3\x0f\x77\x89\x66\x6f\x69\x50\x2a\x81\xe8\x56\x7a\x5f\x77\x61\x5a\xc3\xa7\x66\x32\x35\x0d\xf2\x81\x44\x11\xc6\x42\xcc\x78\xdf\xe8\xf4\x12\xaf\x4c\x50\xfc\xf8\xf5\x13\xe3\xbe\xa9\xf0\x15\x52\x16\x25\xc1\x69\xfd\x5d\x1b\x39\x70\x5d\x75\x01\x49\x91\x03\xff\xaf\xac\xbf\xa0\xc7\xbe\x57\xc0\x0f\x1f\xb1\x92\x01\x7e\x11\x30\x6b\xc2\x1f\x5e\xab\xb5\xd4\x9c\x5d\xed\x63\x1b\xd7\x2a\xd4\xc5\x92\xb8\xf1\xc1\x1b\x4d\xe8\xad\x44\x7c\xe8\xf7\x5b\x55\x1d\xd1\x15\x30\xc2\xb7\x65\x9f\x3f\x08\x99\x98\xac\xea\x20\x3e\x96\xe5\xdd\x55\xd7\x36\x4d\x4c\xa3\xc8\x28\x8a\x7f\xda\xf1\xa3\x0a\x61\x61\xe6\x9b\x6a\xc6\x3b\x97\xeb\xb6\xc5\x8e\xcc\x78\xd9\x0d\x77\x68\x9e\x07\xd3\x9a\x3c\x0f\x9e\x07\xb5\x8d\x29\xc9\x87\x5f\xde\x3e\x02\xdc\x2d\x3e\xe6\x57\xb8\x96\xf0\xf0\xe9\x21\xa0\x2b\xb3\xb0\x8d\xf9\xd8\x23\x9c\x74\x40\x05\x25\x97\x32\x87\x2b\x00\x7c\x7d\x66\xe2\x14\x59\x2f\x37\x7d\xf4\xfe\x9a\x94\x05\x0b\x88\x10\x04\x0b\xef\xbe\x4f\x05\x02\x54\x44\x45\x6e\x68\xd1\x0a\x00\x3c\x1e\x62\xa8\x03\xd7\xa3\xea\xf3\x34\xb0\x55\xf4\x4c\xae\xac\x85\xea\x84\xe7\xd2\x0b\x6f\x1a\x04\xda\xcf\x28\x98\xf1\x60\xfc\x91\xf5\xa2\xb8\x41\x51\xcf\xcc\x1f\x54\x1f\xd5\x18\x36\xb1\xdf\xc3\xff\xdd\xaa\x78\x20\xd3\x78\x9b\xf6\xbb\x2d\xd0\xef\x06\x23\xb3\x22\x19\xe0\xf7\x94\xb4\x61\xaa\xdb\xf0\x2b\x72\xd4\xc2\x17\x54\xcb\xd2\x37\xad\x46\xa8\x4d\xd2\x3a\xc5\xb9\xcf\x4c\xd5\xaa\x69\x6c\x72\xc2\x90\xe8\x5a\x8e\x3f\xa4\x1e\x73\x9d\x36\x50\x99\xa3\xff\xfc\xd7\xf8\xcf\xcd\x2f\xa3\x66\x15\x97\x84\x0f\x9b\x7e\x97\x4c\x35\x78\x6a\x8c\x6f\x0e\xce\x7d\x35\x7d\xdd\x32\xa3\x02\x9a\x57\xe8\x36\x5e\x0b\x81\xf0\xba\xa8\x5f\xc2\xb7\x5e\xd2\x7d\xdf\x39\x39\xd7\x4b\x1c\xd8\x8e\x0a\x93\xe9\xfc\xad\xc8\xad\xe2\x66\xcf\x86\x0f\xf6\x00\x85\x13\x4e\xe6\x8c\x4d\xb1\xe6\x2c\x1f\xa9\xd7\x38\xae\x27\xf4\x55\x84\xe4\xe7\x78\x77\x8c\xd6\xd6\xb1\x2e\xda\xe0\x41\x64\x36\x10\xac\x78\x28\xfd\x2e\xf8\x9d\x32\xa3\x74\x2e\x9e\xe4\xf3\x0b\x2e\xe8\x29\x0c\xc9\xa0\xfa\xc1\x2a\x00\x7d\x31\x51\x0d\x97\x29\x57\xf8\x33\xee\x93\x1e\x72\x7e\x85\x7a\x1c\xbe\xf4\x84\xba\xec\x75\x4c\xa4\x7f\x9c\xdb\xa5\xf9\x5a\x57\x18\xb1\x63\x27\xf9\x7b\x6a\xaa\x3d\x68\x44\xfd\xe1\x71\xe9\x6e\x27\xdc\x08\xf3\x85\xf0\xfb\x4f\xe8\x0a\x46\x65\x42\x5d\x69\x45\x1f\x5e\xa6\x6d\xec\x3c\x3f\x40\x2c\xed\xed\x12\xfe\x47\x11\x78\x67\x23\x12\x5d\xc6\xc3\xc7\x93\x80\xc7\x7c\xd5\xb8\x86\xbf\xdb\x0a\xe1\x0e\x29\xe3\xb6\xcc\xa1\x36\x75\x11\x4b\x18\x5b\x3c\x80\xaf\xef\xd2\x54\xce\x5d\x9f\x7f\x3a\x7e\xb9\xbe\x2e\xf1\xf8\x15\x5a\x2c\x46\x95\xda\x7b\xdb\x34\xaf\x08\x87\x0a\xcc\x86\x24\xdc\x8c\xd4\x64\x64\x19\xe1\x93\x44\x59\xb4\x17\x07\x88\x61\xce\x42\x2a\x64\x29\xd4\x94\x3e\x7b\x66\xac\x48\x48\x5c\x74\x04\xb9\xc8\x6e\xf8\x3d\x99\xe8\xe4\x26\x3c\x33\x14\x8c\xae\x20\x08\xe6\xae\x1c\x78\x46\x38\x0a\x7e\xe1\xc0\x73\xc5\x44\x0e\x59\x96\x74\x6c\x0f\x4f\x5d\xa5\xd3\xe4\x7d\x54\xb4\x63\xb5\xad\x42\x77\x6e\xc5\xc3\x40\xb1\xb5\x82\x19\xe1\x66\x9a\x2f\xf4\xd5\x80\xc8\xb4\x86\x4b\x81\x9d\x4c\x65\xbb\x33\xdb\xa4\xf0\xc7\xad\xc8\x03\x66\x76\xe1\x4f\x1f\xe2\x5f\x99\x8f\xd2\x26\x43\x4d\xb5\x7b\x35\xec\xa7\x8b\xb1\x15\x83\x3b\x33\xc6\xbe\xf4\x12\xa6\x7d\x8a\x60\xc9\xbf\x3f\x4e\x37\x33\xa9\x11\x1f\xd9\xb1\xf4\xc2\x63\x5b\x45\x73\x7e\x23\x76\x11\xd7\x33\xe9\xce\x3e\xfb\xf8\x04\xad\xdc\xa8\x21\xf6\x0f\xf4\x99\x3f\xfe\x62\x13\x50\xd9\x0a\x4c\x3f\x0e\x02\xe1\x5b\x40\x2e\xba\x56\xa1\xbe\x10\x41\xe6\xa1\x72\xf0\x24\xbd\xda\x14\xee\xb2\x72\x95\xb3\x6c\xb3\xb6\x97\xe4\xa3\x14\x45\x7f\xed\xd8\x06\x06\x95\x8c\x14\x03\x57\xec\xb9\xbe\xd0\xf7\x02\x90\x9e\x3a\xb0\xe7\x43\xda\x2b\xde\xd4\x4f\x19\xb7\x45\xc9\xe3\xd5\xc7\x94\xec\x06\x26\x29\x23\xe1\xdb\xda\x75\x25\x51\x17\xcb\xca\x22\x73\xf5\xb6\x74\xe6\xa2\xae\xdc\x5d\x87\x3f\x93\x60\xeb\xab\x69\xe0\xc6\x01\xed\x13\xd6\x20\x30\x8f\x46\x4e\x8d\x03\x00\xb7\x6a\x13\xe7\x12\xb5\x6d\xda\x19\x23\x19\xff\x52\x1b\x24\x7b\x21\xdb\x8e\x82\xbc\x04\x9c\xbe\x7f\x1a\xf8\x5f\x51\xbe\xdd\x90\xff\xa5\xef\x01\xf1\x8b\x17\x60\x33\x56\xbb\xc1\x7b\x87\xc4\x3f\x1c\x42\x53\xc3\xe2\x03\x62\x7f\x7a\x2d\x72\x52\x77\x2a\xfb\x4f\xcf\x37\x09\xff\x55\x2b\xc8\xa2\x75\xb0\x4d\x0f\xdf\xd4\x3c\xf6\x3c\x1a\xd3\xbe\xf6\xee\x54\x5d\xbc\xed\xf3\x38\xf8\xf9\x49\x7a\x20\x13\x96\xfd\x32\xb1\x7c\xf5\x8c\x18\x5e\x4e\x9e\xd1\xca\xed\xda\x46\xef\x4f\x66\x6b\x35\xa8\x52\x9f\xad\xbc\xdf\x02\x00\x48\xc8\xed\x80\x83\x9f\xcb\x9f\xfa\xc7\x34\x5b\xf1\x34\x6f\xd0\x1c\x69\x4c\x64\x93\x22\x66\x09\x44\xf6\x40\x8b\x2e\xb4\xc1\x79\xb8\xb1\xc3\x05\x50\x7f\x6c\x20\x07\x09\xf4\x5f\xf0\x92\x4a\x8a\xa6\x4d\xf9\x5e\x31\x33\x7b\xa7\x66\xd4\x81\x63\x8b\xf8\x2e\x65\x65\xff\x7b\x0d\x88\xc2\xeb\xa8\x78\x74\xfa\x75\x8d\x9f\x80\xdd\x32\x1f\x9c\x27\x1d\x4c\x7e\x83\x76\x71\x82\x1a\xd7\x22\x8d\x7f\xc0\xb4\xab\x54\xc8\xee\xac\x20\xa1\x54\x3d\x75\x4f\xc2\xed\xb2\x63\xd3\xe2\xf0\xf9\x65\x49\x45\x60\xa2\x66\x95\x8b\xcf\x6e\x01\xde\x51\x94\xef\x98\x33\xc3\x57\x0d\x82\x04\x12\xec\xf2\x8c\x90\xf9\x9a\x2d\xc9\xa8\xc8\x8e\xd2\xd7\xcf\x4a\x5a\x57\xc0\x15\xc2\x12\xac\x4d\xf9\xce\xf4\xcd\xaa\x63\x9e\xd9\xf8\xa7\xff\xa9\x70\xc2\xce\xdf\x8c\x3d\x1f\xb3\x66\x6d\x8a\x69\x9a\xb4\x3a\x5f\xf1\xa7\x06\x87\x99\xe1\x9a\x5c\xb5\x8d\xe3\x61\x79\xe6\x3d\x6d\x86\xe9\xd3\x40\x32\x56\xb3\xef\xcc\x57\x87\x77\x46\xfb\x34\x0e\x69\x9f\x00\xb0\xb5\x0c\x91\x28\xc1\x85\xe7\xea\xfa\x6b\x14\xc7\x65\xd2\xce\x63\xea\xc9\x57\x49\x91\x7b\x06\x19\x2d\x2f\x0d\x48\x32\x6b\x20\xfd\x8b\x8c\x2b\x56\x48\x7f\x0e\xe2\x79\xd8\x51\xa6\x1a\xc6\xf5\x6d\xea\x7e\xe3\xa8\x8c\x96\x03\x8f\xee\xec\xf2\x93\xfa\x22\x40\x1a\x23\x4b\x15\xc9\x2f\x1e\x10\x0c\xba\xc9\x53\x66\x72\x11\xaa\xf7\xd3\xba\xc2\x42\x82\x52\x50\x2d\xd2\x85\xd8\x7f\xdd\x36\x04\xe0\x36\x71\x8d\x32\x09\xf2\xfd\xb9\x2b\x22\xca\xe4\xb6\xbc\x43\x5d\x3f\x6a\x62\x9c\x26\x32\x8f\xe7\x47\x7d\xaa\xb8\x65\x07\xf6\xa7\x23\x83\x15\xc8\x01\xf1\x51\x16\xdb\x3a\xd1\x3a\x91\xa2\x28\x99\x01\xbb\xc5\x1f\x7e\x2a\x20\x02\xb8\x7c\xe3\xd2\xee\xdc\xc0\x03\x80\xb7\xc4\xb0\xfc\x6e\x85\xc3\x31\x83\x85\x4b\xac\xf2\x02\xcd\xd8\xad\x5d\xe9\xc0\xf3\xa9\x83\x98\xdc\x37\x1b\xf3\x36\x27\x33\x1a\xec\x36\x4d\x1c\x8d\xdb\xc7\x6a\xb6\x1b\xac\x2c\xdc\x97\xf8\x0f\x5f\xb5\x7e\x24\x18\xe1\x98\x4d\x60\xd7\xec\x27\x87\x29\x9b\x66\x52\x55\xc1\x91\x8d\xd0\xac\x9d\xa3\x72\x46\x3a\xe5\x64\xba\x5b\x2e\xd6\xb3\xa5\x47\x2c\x2c\xa6\x00\x32\x86\x1e\x5d\x95\x34\x1b\x6e\x83\x8b\xea\xb5\xf6\x56\xa7\xd0\x0b\x1c\x47\x3c\xbd\xdb\xb6\x0c\x4c\x45\x1f\x0e\xd2\x35\xbc\x76\x75\x65\xab\xb4\xc8\x4b\xb8\x9d\xbd\x54\x79\xe7\x05\x45\x8f\x58\x04\x31\xc9\x1b\x33\x35\x73\x43\x6e\xcf\x24\x61\x18\xa3\x1e\xd5\x95\xf2\xb8\x0f\xac\x28\x41\xbf\xb7\x5d\x9f\x7f\x0b\x47\x56\xbe\x2e\x7d\x44\xa3\xed\x17\x19\xa5\x55\xbb\xe1\x5e\x91\x00\xd4\xbf\xf7\xb6\x16\xc3\x48\xd9\x45\x36\xb6\x62\x5d\x85\x01\xfe\x40\xd9\xa1\xf1\x51\x86\x58\x1b\x64\xff\x3a\x46\xe5\x76\xe2\x8a\xe0\xa3\x26\x14\x0d\x29\x06\xbd\x34\x9e\xe8\xe4\x0b\xe1\x8c\x75\x00\x49\x28\x63\x61\xe6\x23\x9a\xd3\xa8\x8d\x3b\x05\x87\xd8\x87\x43\x91\xdc\x11\x29\x55\x8e\x05\x4f\x24\xbb\x6e\xe5\x60\x40\x6b\xb5\xb0\x14\x82\xca\x7c\x06\xd2\x2d\x19\x76\x39\x72\x34\xf3\x10\xc0\x30\x56\x10\xe3\x7f\x98\xed\x7d\xb7\x92\x51\xc3\xd0\x67\xf4\xe0\x86\x26\xe7\xf5\xce\x58\xe5\xb4\xaf\xb6\xf0\x42\x8c\x11\xea\xfb\x3d\x32\x58\x2f\x3b\xa6\x1a\x59\x07\x35\xfd\x67\x6f\x50\xdf\xf8\x3f\x4f\x9d\x9e\x2f\x84\x37\xec\x05\xd1\xdc\xc6\x4c\xec\xf5\x57\x4e\xd0\xa0\x39\x0c\x77\xca\x13\x7c\x74\xed\x3f\x10\x44\x17\x50\xba\xec\x19\xeb\xa3\xf2\x87\xe5\x0b\xe1\x89\x0f\xd2\x25\xe9\xed\xb2\x54\x7d\x7f\x91\xa6\x0a\x12\xd8\xc9\x54\x26\x33\xe6\x14\xd8\x5e\xfb\x94\x1b\xd8\xa8\xde\xb8\xb0\x50\x94\xcc\xd7\x9b\x55\x68\x87\x61\xf4\x99\xaa\x23\x83\xaa\x2e\xed\xb4\xb1\x55\x96\x6a\x51\xd9\x5b\x01\xa9\xdb\xc2\x25\x9b\x3b\x5c\x87\xeb\xee\xd3\xf2\x01\x77\x4e\xe4\x5c\xae\x1f\xaf\x90\x03\x2f\x59\x4c\xc8\x00\xbd\x64\x18\x00\x27\x21\xae\x3d\x2f\x14\x8a\xbb\x7b\x0b\x60\xf5\xd5\x15\xe2\x46\x6d\x80\x0b\xa1\xb4\xeb\x26\x0c\x4b\x95\x2f\xbc\x53\xe1\x83\xec\x9f\x01\x4d\x23\x62\xdb\x41\x1c\x1d\x1f\xdb\x0c\xa4\xfc\x90\x5f\x49\x49\xaf\xbf\xd5\x01\x0a\xca\x1a\xf1\x28\xe7\x00\x1a\x3f\x5f\xa4\xd9\x50\x73\xaf\x2b\xc9\x29\x5c\x7d\xe8\x7c\x50\x18\xfb\x3c\xc2\xef\x1a\xa4\xad\x9f\xe4\x32\x3d\xd5\x49\x6e\x7d\x0a\x9e\x6f\x5a\xab\xf0\x74\x74\x50\x48\xba\xe5\xe5\x56\xc4\xe6\xa0\xb2\x72\x02\xf5\xf8\xfe\x3e\xf5\xdb\x6a\xad\x1d\xfc\x15\xcc\x1c\xa4\x5d\x7a\x33\xb0\x6b\x7e\x52\x16\x65\x1f\xf5\x07\x43\xb6\x09\xd7\xad\x8c\x1e\xc5\xc8\xc7\xb5\xf5\x57\xa2\xac\xc1\x6d\xb2\xe7\x8d\x01\xb3\x22\x8b\xd6\x84\xcf\x99\xd2\x06\x0e\xca\x40\x62\x2a\x73\x98\x01\xc1\x71\xdc\x11\xd3\x78\x0e\x48\xba\x23\x76\x3b\x68\xec\x82\xf4\xad\xa3\xaa\xcd\xad\xda\xd8\x4b\x01\x1e\x7e\x31\xfa\xff\x2b\x96\x8b\x7c\x38\xb9\xfd\x92\xa6\xdb\xe2\x38\x58\x2a\xa7\xc4\x53\xba\xcf\x3c\x0c\xfc\x39\x48\x39\x60\x5c\x3c\xf4\xa2\x49\x00\x71\x8f\x6d\x49\x32\xad\x6c\x1a\x08\x76\x46\x44\xec\x42\xbe\xf6\x9a\x38\xa9\x16\x43\x5e\x72\xb0\xba\x33\xf3\xc7\x6a\x44\x62\x54\xc5\x02\x3d\x13\x2e\x1a\xab\x6b\x07\xcc\x98\x9c\x94\x48\x8f\x5f\x0c\x16\x76\xb5\x2a\x71\x9b\x49\x61\x5f\xde\x06\xcf\x92\xcb\x71\x9c\x8f\x94\x24\xb2\xdf\x63\x18\x02\xa8\xb3\x37\xf5\x53\xf0\xf2\x7a\xbe\x10\x8e\xda\x20\xc5\x21\x82\x22\x66\x66\x60\x53\x8f\xeb\xa8\xe6\xfa\xf4\x12\xeb\xdb\x79\xcc\xc4\xf9\xeb\x10\x33\x09\x02\x3f\x66\xda\x3e\x75\x4f\x4a\x88\xb0\x78\x21\x3c\xe6\x5a\x0d\xd5\x83\x98\x8f\xed\xb8\xee\xff\xd5\x4a\xed\xc8\x35\x18\x41\x57\xc4\x05\x70\xb7\x91\x69\x4f\x57\x2c\x95\x58\xaa\xcb\xe8\x77\x54\x89\x1b\x75\x60\xe6\xe1\x66\x2c\xe7\xf7\xbb\x92\x68\x6e\x43\x9f\xcd\xec\xbc\xd7\x07\x40\x04\x54\x91\x72\x9d\x42\x76\x89\xf6\xab\x5c\x8b\x91\xaa\x66\x00\xd7\x0f\x60\xf7\x6d\xda\x29\xf8\x9d\x1c\xd6\xd1\x4b\x31\xbc\x1b\x7c\x34\x72\x79\x53\xef\xed\x38\x81\x4b\x7c\x69\x31\x14\x5e\x3f\x37\x7d\x6d\x3a\x09\xc4\xca\xe7\x56\x3c\x28\x95\x37\xb1\xef\xdb\x82\x75\xfa\xb5\xd1\x40\xfe\xcb\x35\x19\x46\xdc\x2a\xbe\x3b\xbb\x77\x95\x8e\xa3\x70\x13\x9b\x25\x63\xfa\xf4\xa6\x19\x80\x47\x99\x4f\x02\x47\x8c\x78\xb2\xdf\x2d\x0e\x03\x6b\x75\xa7\x86\xfc\x0a\xf6\x89\x99\x2f\x84\xed\x03\xd4\x78\xc0\x0f\xb0\x67\xa1\x78\xbf\xf3\x1d\x43\xb7\xbe\xe6\x93\x01\x7e\x61\xde\x9c\x0d\x24\xe2\x69\x03\xd9\x22\x0f\x4f\x5c\xa8\x2b\x0f\x12\x66\x09\x8c\xf1\xbd\xcb\x81\xab\x21\x62\x18\x73\xea\xa4\x41\xdf\xb8\x50\xaf\x91\x6b\x81\x9f\x54\x21\x99\x57\x97\xa8\x5c\x64\x56\x10\x87\xc5\xb2\xd8\x4a\x2f\xfb\xd8\x55\xda\x14\x0e\x59\xa8\xaa\x7b\x33\x8f\x3e\x39\x18\x0c\x9f\x82\x72\x45\x98\xf2\x64\xbf\x0d\x8c\x96\x02\x37\x7a\xb1\x22\xd8\xe5\xee\x9c\x19\xa3\x1e\x4c\x8c\x63\xe9\x91\xdf\xef\x1d\x96\x54\x68\x9c\xdd\x92\xb4\xf2\x8f\x2c\xd4\xdd\x04\xca\x15\x3f\x76\xba\xc8\x5c\x78\x78\x78\x8d\x7a\x89\x44\xdc\x92\x25\x37\x5e\xc1\x81\x20\xf9\x42\x78\xeb\x88\xf4\xd3\x9a\x32\xbd\x2d\x3e\x19\x4b\x7b\xa7\x00\x0f\xc2\xb4\xf8\x40\x7f\x10\x37\x91\x98\xf7\x45\x7f\x79\xd3\xb9\x49\x69\x5f\xb4\xb1\x23\x20\xb7\x27\x96\xa6\x37\x3c\x9e\xdb\xb0\x38\x4d\xb9\x99\xb4\x77\xc5\x56\x85\x48\x9f\xd1\x3e\x2b\x7a\x36\xff\xbc\x56\x15\xac\x5c\x52\x98\x20\x9f\x09\x44\x74\xf6\xe8\x53\x3a\xdb\xd5\x75\x10\xab\x0a\x62\x14\x9f\x83\xfc\xfa\x28\xe0\xe1\x43\xa3\xbb\xe5\x2f\xc6\x7a\x32\xa4\x13\x25\x11\x60\xc2\x04\x20\xfa\x4a\x30\x07\xd1\x7e\x74\x83\x7a\x00\x2e\x16\x17\x30\x7b\xef\xc3\x43\xe0\x94\xb4\x4c\x6d\x41\x14\xc8\x8e\x5e\xa1\xfe\x03\xad\x63\xc6\x02\x39\x03\x7e\x6f\xab\xec\x5a\x02\x56\xc7\x42\xbd\x3b\x57\x5c\xa9\x8d\xae\x69\x05\x39\x31\xb1\x5f\xd5\x33\x83\x76\xaa\x36\x90\x7b\xb9\x08\x6a\x61\xa1\x3b\xb3\x4b\xd2\xaa\x38\xca\x82\x3b\x61\x71\x59\x02\x17\xfa\x76\x71\x53\x69\x6e\x08\xbf\x03\x90\x72\x3c\xc4\x9b\xef\x77\x72\x2d\xda\xa1\x2f\xf3\xa0\x21\x48\x36\xad\x1a\x97\x82\x9b\xe1\x00\xfd\xec\x6e\x63\x5e\x1b\xa8\x3d\x6c\x5c\x17\x1d\x6d\x66\xa3\xd6\x49\x70\x00\x99\xac\xe6\xbf\xb1\x47\xa7\x7a\x70\x8b\x58\x1e\x5a\xde\x3b\xab\x09\xfa\x60\x9a\x8f\x9a\x3c\xe2\x73\xad\x6c\x21\xe9\x36\x76\x6b\x5a\xc1\xc5\x62\x78\x0d\xb6\x7b\x60\x4a\x5e\x78\x1f\x18\x8f\x11\xbe\x32\x40\x82\xe5\xf2\xad\x27\x95\x83\x54\x89\x83\x90\x56\x69\x9e\x6f\x82\x78\x10\xf5\x2f\xab\x0f\x6a\x54\xf6\x35\x62\x87\xce\xbf\xcc\xaf\x5f\x17\x13\x69\x8b\xe6\x89\x9f\x6f\xd0\x80\x79\xd8\x2e\x71\xb3\xef\x39\x69\x42\x9a\x59\xc1\x75\xf6\x0f\x8c\x9d\xb6\x6f\xd2\x76\x1c\x18\xbb\x79\x54\xc6\xcc\x13\x9a\x8a\x39\xb4\x4a\x1b\x33\x44\x45\xb8\xd0\x29\x5e\xae\xd9\xd4\x30\xea\x21\x0d\x74\x32\xcf\x07\x36\x90\x35\xc2\x88\xa0\xba\x3f\x26\x91\x1c\x75\xea\xcb\x85\xd5\xa0\x07\xa4\xcc\x1e\x62\xf9\xeb\x6d\x1b\x5a\xac\x18\x67\x77\xe8\x1e\x73\xae\x47\x6d\x22\xaa\x17\x71\x5e\xbe\xf6\x26\x50\xff\x46\xac\x9a\x9a\x32\x76\x69\xdc\x56\xae\x19\x40\xca\x12\x41\x23\x18\x1e\x9f\x5a\x32\x5a\xeb\x6e\x10\xc3\x1a\xe0\x35\x73\xdd\x9a\x64\x78\xe5\x26\x37\x37\x73\xc7\x24\x71\x13\x6e\xf4\x21\x94\xf1\xd3\x07\x81\x10\x49\x0c\x30\xe5\x27\x0d\x3d\xa6\x11\xb3\x02\xdb\x43\x09\x39\xd9\xf0\x26\xe8\x83\x72\x3f\xea\x3c\x4d\xa9\x8c\x7f\x84\x41\xcf\x82\x22\xc7\xff\x87\x2f\xae\x1f\x81\xdd\x7c\xf4\x67\x76\x14\x9f\xae\x45\xb6\xa7\x48\x1d\x1f\x6a\x9e\x46\x52\x9a\x54\x52\x62\x8c\xca\x4b\xa2\x0c\x5a\x86\x6b\xd1\x8f\x33\x63\xe8\xc7\x75\x2d\xe9\x93\x51\xe6\x58\xef\x28\x71\x8b\xc1\xf8\xd7\x1e\xd6\x47\x95\x0d\x95\xd5\xb3\xa5\xfe\xe9\x5f\x5a\x21\x9e\x4f\x59\xac\x61\x9e\xd9\x71\xa0\x05\x30\x8a\x88\x8d\x7c\xcc\x90\x6c\xaf\x73\xc3\x8b\xa3\x41\x55\x67\xa3\x86\x47\x9a\x5a\x48\xe3\x92\xdd\x0a\x7c\xec\xad\x0e\x10\xc3\x70\x45\xf1\x68\x3d\x66\xd3\x24\x7d\xf0\xcb\xe9\x26\x70\xf2\x64\xb1\x97\x78\xf8\x88\x36\xbe\xe1\xf8\x65\x6c\x4b\x1f\x98\xec\xbd\x8f\x6b\x12\x1d\x98\x4f\x6c\x91\x2f\xe1\x9b\xc6\x25\x5a\xe0\xa8\x51\xe6\x07\xe5\x00\x7b\x18\xe8\x89\xb0\xf5\xe9\xc8\x53\xb2\x03\x4f\xaa\x6e\x64\x5f\xa9\x88\x02\xe8\x93\x4a\x5f\xe0\x07\x73\xd5\xe1\x11\x64\x65\xbe\x2f\x2f\x74\x67\xbf\xf9\x74\xfa\x6e\x17\x69\xe0\x93\xd5\x01\x16\xba\xf9\xe9\x47\xf4\xeb\x8d\xfa\xf4\x33\x2a\x3a\x5b\xe3\x11\xd7\xd5\x2d\xfa\x7e\x97\xd5\x15\xca\xb2\x7a\xf7\x44\xed\x17\xd9\x5e\x05\xd7\x49\xb5\x47\x80\x44\x36\x7c\x45\xd3\x86\xe3\x2d\x69\x72\x5a\xba\x73\x17\x68\x55\x22\x71\x6a\xd4\x23\xa0\x49\xf9\xd3\x59\xf1\x18\x2c\x5c\x27\x82\x31\x6f\x4c\xb8\x03\x50\x2c\x68\x60\xc7\x60\xf7\xab\x5b\xd5\xe9\xf1\x51\x0d\x27\xed\x7f\xf4\x84\x66\xb7\xa4\x83\x66\x39\x70\x4b\x84\x61\x19\xe5\xdb\x35\xd8\x5a\x14\x09\x1c\xea\x36\x12\x9e\xd9\x5b\xab\xc4\x04\x19\x97\x29\xff\x17\x9f\xe8\x52\xb3\xe9\xa0\x49\xa3\x21\x47\xde\x48\xa6\x7b\x3e\x6e\x9e\x12\x9f\x78\x4d\x7d\x52\x0f\x9b\x0c\xf3\x7d\xa6\x7c\x01\x4b\x0f\x35\x59\x6f\x0a\xff\xbd\x18\x5a\x92\x9d\x03\xa0\x79\xd0\xf0\x6a\x3a\xe8\x84\xa3\xc0\xcf\x3f\xe9\x97\x5a\x40\xac\xad\xc6\x5b\xec\xcc\x2f\x73\xc0\x64\x90\x74\x75\xc5\x5d\xe5\xfa\x97\x75\x56\x14\x65\xc9\xa6\xe1\xdf\x9f\x4c\x1f\x6a\x97\xd6\xa9\xef\xa2\x2b\x58\x11\xc4\xe5\xf3\xb4\xfd\xb8\x54\x66\xf5\x24\xee\x23\xac\x3c\x93\xd2\xfb\xac\x13\x41\x6c\xfb\xce\x41\x55\x69\x15\x49\x39\x5f\x08\x6f\xdf\xac\x8f\xb2\x69\xbc\x98\xb9\x50\x13\x0d\x64\xc8\xb6\x49\xbc\x82\xc8\x9c\xbf\x6c\xb8\x16\xb5\x59\x35\xce\x8f\x17\xdc\x3d\x54\x3e\x37\x9f\xe4\x4b\x94\x61\x8e\x55\xe2\x8c\xca\x07\xe1\x53\x5d\x43\xb0\xa8\xdb\xff\xb7\xa2\xaf\x4c\xa2\x2a\x5b\x62\xa3\x24\xa5\x23\x5b\x3f\x01\x6d\xa1\xfc\x38\x7d\x7d\x5a\xe9\xb8\x16\x09\x2f\xba\x66\xee\x4f\x53\x35\xa2\x3a\x55\xf4\xc3\x5f\xd6\xbc\x2f\xbc\xe8\xd7\xd8\xa4\x0b\xc0\xb7\xb2\x33\x8e\x35\x59\x40\x44\x47\x15\x8b\x3e\xc2\x58\xb0\x49\xa9\x06\xea\x27\x72\xdc\x7b\x80\x28\x8c\xb9\x11\x88\x50\xc5\x98\xf5\x80\x18\x0c\x5d\xd7\xe3\x44\xae\xaf\x86\x17\xc3\xae\x1f\x48\x51\x3c\xe3\xd0\x33\xbc\x36\x8d\xfe\xfc\x86\x05\xf1\xd9\xfc\xff\x9d\xea\x1b\x7f\xe5\xf6\xf6\x7c\x21\xbc\xf1\xa5\xf4\x47\x6e\x97\xd3\x7a\xb9\xd6\xf8\x42\x25\x1d\x67\x6d\x8c\x53\xe5\xdc\x3e\x20\x9d\x84\x9d\x9a\x4d\x1b\x98\xf7\x7c\xb9\x7b\xad\x84\x0f\x2f\x66\xe3\xd1\x33\x3c\x7d\x5a\xdf\xa3\x59\xc4\xb6\x91\x19\xaf\xc2\xd7\xbc\x2b\x82\x09\x31\x71\x11\xb3\xe8\x8c\xad\x9e\xae\x1d\x15\xec\x23\x5b\x80\x7c\xb6\xde\x07\x7a\x23\xec\x79\x58\xb4\x40\xd9\xd2\x4e\x40\xd8\xa3\x9e\xd0\x2d\x78\x68\x81\x88\x0f\x37\x53\xc6\x05\xc7\xae\xeb\x05\x70\x30\x44\xd4\xc1\xe1\xa1\x1c\x58\xfe\x52\xd7\x42\x36\x06\x0d\xc0\x2f\x8f\x25\x9d\x01\x01\xfe\x48\xdd\x99\x85\x7b\x21\xe3\xcb\xe7\x68\x89\xee\xec\xe2\x87\x35\x70\x6f\x50\x2c\x62\xc6\x8d\x23\x63\x48\xa4\x71\xd7\x49\xb0\x3e\x4e\x2b\x26\xbc\x0b\x80\xea\xc4\x2d\x63\xc6\x7d\x50\xf9\xa9\x1d\x7e\xad\x78\xb4\x37\xd2\x12\x9f\x71\x70\x29\xeb\x37\x8f\x89\xd4\x79\x33\xc6\x55\x7e\x60\x73\x9f\xd0\xd6\x05\x7e\xe0\x7b\xba\x09\xdb\x17\xe0\xba\x00\xe5\x0b\xa1\xa3\x31\x0f\xeb\xd8\xa7\x32\xb8\xdc\x72\xa8\x9f\xfc\x8a\xb6\xa4\x0a\x19\x6f\xca\x19\x37\xe2\xe4\xa3\xf0\x56\x8d\x5c\x83\x9c\x22\xf2\x3c\x64\x51\x16\x87\xe9\xfd\xef\x6a\xb9\xad\x82\xaa\xaa\xfc\xc8\x7c\xef\x74\x4c\x20\x94\x0b\x86\xba\x2f\x0e\x44\x5e\xc4\x8f\xe8\xef\xfc\xcb\x18\x9d\x71\xcc\x90\x80\x05\x88\x53\xff\xc9\x5d\x42\x87\xe5\x1a\xcf\x44\x8c\x41\xf2\x52\xd6\x79\x4f\x1b\xf6\x08\x73\x31\x31\xd4\xfa\x70\xb4\x0a\x2f\xd4\xf7\x85\xc1\x60\xb7\x31\x69\x44\x7a\x7e\x5e\x41\x0e\xb1\xff\x81\xdf\x6a\xf6\x9a\xa9\xbd\xc5\xf9\x8d\xfe\xe5\x14\x65\x9c\x56\x4e\x31\x13\x7e\xb8\x52\x7c\x4b\x9b\x52\x8e\x68\x34\xd6\xed\xd4\xb0\xb7\xb6\x2d\x26\x37\xa5\x20\xc6\xfc\x14\x97\x82\x2c\x11\xd4\x6a\x36\xe7\x55\x19\x7f\x7e\xa3\x59\xca\x3a\x91\xc8\xce\x7c\xfb\xcc\x40\xf9\xc6\xa2\xea\x06\x73\x65\x88\x70\xe0\xd2\x31\x6a\x06\xd8\x70\x31\x17\xa4\x69\xe6\x3b\x4c\x5c\x02\x1d\xf8\xca\xc4\x8b\x77\x8f\x97\xb5\xab\x4f\xd2\xa0\x4c\xfa\x4b\x66\x16\x4d\xd4\xca\x12\xc4\x75\x13\x45\x4a\xf9\x99\x32\x0b\xa6\x35\x09\x46\x08\xb1\xb4\xed\x60\xb4\x58\xe4\x19\xe6\x8b\xbe\x26\xfa\x4f\xdc\x6a\x6c\x47\x6d\xcc\x1c\xa9\x75\xbe\xd2\x00\x4e\x73\xe9\x3f\xb9\x45\x9b\xc8\xd1\x40\xa8\x8d\xfe\xc7\x24\x75\xe1\xcb\x0c\x49\x93\x1f\x6f\x9f\x38\x5f\xc2\xd1\x94\x3f\xd2\x7f\x99\xa4\xef\x28\x3c\x69\x97\x22\x50\xb8\x27\xda\xb5\xd5\x15\xa3\xc8\xc2\x72\xff\x96\x6d\x5d\xab\x47\x38\xd7\x8a\x5a\x1e\x49\x57\xcf\xde\x7e\x62\x38\x2c\x0d\x88\x0a\x30\xe1\xc9\x73\xa5\x8d\x09\xf2\x4d\xfe\x51\xb2\x8d\x55\xe9\x4c\xdd\x81\x6a\xc8\xc5\x9e\x52\x9d\x08\x3a\x54\xaa\x2e\x06\x9e\x2f\x84\x72\xbb\xb3\xdf\xdc\x10\xbf\x78\xde\xcd\x4b\xc9\x89\xa7\x86\x4d\xd0\xf2\xb5\x6d\x39\xc8\x9d\xd4\xd3\x51\xce\xad\xbe\x63\x04\x14\xcc\xd7\xe5\x71\xbe\x76\xdb\x08\xb5\x8a\x6a\x56\xf7\xbd\xde\x6f\xb2\x09\xe7\x60\x62\xf1\x90\xae\xd1\x0c\x22\x4c\x16\x08\x8b\x93\xe8\x3f\x7e\xf5\x2c\x60\x25\x0b\x05\x70\xe3\xdf\x76\x6b\xb9\xd7\x44\x25\x62\xa5\x44\x1a\xb2\x5d\x0f\x8a\xc7\xe7\x39\x12\x44\x67\xb8\x4f\x69\x48\x6c\xa9\x80\x10\x5f\x8f\xbf\x3c\xa3\x7c\x68\xa6\xf0\xd1\x51\xbf\x03\x60\x48\x63\x63\xe4\xf2\xe2\xb1\xd0\x9d\xfd\xeb\x2e\x35\x69\x64\xd8\x67\x14\x99\x31\xc4\xed\x55\x0d\xb2\xed\xd5\x18\x46\x72\x65\x9b\xfd\xdc\x13\x9a\xea\x08\xae\x23\x0b\x5d\x01\xf1\x5a\xaf\x69\xf4\x3f\x61\x95\x22\xe8\x39\x42\xb5\x73\xa1\x92\xf6\x48\x79\x98\x66\x34\x7b\x61\xa9\x32\xea\xfa\xb2\x17\x78\xef\x19\x2d\x1c\x97\x84\x7e\x2c\x57\x3b\xe2\xcd\xe2\xac\x5d\xfa\x16\xc2\xa9\x21\x9f\x14\x09\x27\x5e\xf3\xbd\xcf\xdf\x57\xaa\x11\xd0\xf4\x29\xdc\x9b\x61\xf5\x2d\x9a\x00\x29\x72\x70\x22\x40\x9a\xf9\xc6\xdd\x40\x11\x3a\x7e\xe2\xbc\x67\xfb\xd5\x5a\x30\x83\x97\xe4\xb0\x7c\x21\xfc\xe3\x68\x35\x2e\x2b\x62\x5b\x6c\x4b\x77\x6c\xd3\xa1\x44\x55\x8f\x38\xb4\x0e\x95\x6a\xbb\x73\x03\x5f\x51\x99\xd7\xa5\xac\x13\x45\x01\xee\x6f\x4d\x74\x32\x5a\xab\x25\xfe\xcf\xc6\x1d\x83\x40\x8f\x86\x91\xcf\xd9\xbd\xb9\xf3\x9e\x10\xc3\xb6\xa5\xd1\x5d\x17\xdb\x92\xec\x47\xf6\x8c\xd3\x32\x8d\xc5\x70\xcf\x7d\xd4\x6b\xb3\x87\x82\x25\x39\xdc\xb5\x9d\x9a\x2b\x95\x19\x9c\x28\xaa\xfb\xc4\xc1\xf9\x42\xb8\x7d\x00\x74\x6c\x30\xb1\xec\x81\x3e\xfa\xc0\x80\x54\x83\xc4\x03\xeb\x8f\x1f\x1b\x0c\xa5\x53\x88\xfc\x11\x97\x6f\x3c\x1f\x0c\x54\x39\x1f\x32\x77\xce\x02\x51\x18\x5c\x5d\x21\x6e\x5c\x18\xe4\x06\x8f\x96\xb2\x23\x01\x63\x20\xdc\x74\x67\xde\x5c\xa7\xd5\x07\x98\xb9\x0d\x54\x4d\xe9\x8a\x9f\x3a\xae\xd5\xf1\x58\x4a\x93\xf3\xd3\x7d\x47\x4b\x72\x81\x6c\x3e\x5e\x34\x96\xdd\x22\xa5\x28\xa3\x43\x1c\xc5\xf4\xae\x41\x90\xcd\xed\x99\xc8\xa6\xd4\xe3\x7f\x75\xcf\x51\x5d\x7a\xcc\xf3\x89\x1f\xf8\x42\xc6\x21\x9c\xdf\x57\xbd\xa7\x1a\xf1\x7c\xca\xe1\xa1\xc6\x17\xc7\x26\xbf\x72\xfa\xa4\xa9\x1c\xa9\xf2\xda\x70\xad\x2e\x47\xae\x29\xfa\x46\x63\xaa\xaf\x0e\xef\x54\xae\x0a\x95\x21\x56\xec\x18\x16\x58\xbc\xa2\x08\x17\x3f\x9d\x70\x7e\x50\x29\x66\xe5\x66\x66\x68\xe2\x43\x2e\x65\x57\xd4\x39\xb0\x21\x1f\xea\x1f\x3c\x80\xde\xc1\x99\xeb\x77\x27\x1f\xd1\xe7\x72\xd4\xc6\x7b\x80\xc2\x45\xcd\x2a\xea\x44\xdc\x2b\x35\xb3\x6f\xd7\x65\x4d\x0d\x94\x90\x10\xd6\xa3\xf1\xa2\x13\x3d\x09\x68\x92\x32\xf2\x29\x13\x29\x76\x4a\xbb\x6a\xcf\x26\x4f\xe6\x06\xbd\xce\xe3\x6a\xd6\x02\x3c\x29\x13\xf3\x93\x1d\x17\x24\x31\xa7\x59\x6c\x7c\xe0\xc3\x49\xf5\xe2\x7b\x50\x50\xf3\x4e\x0d\x90\x5b\x0b\x98\x59\x41\x5e\xec\x7f\xf3\xf5\x1d\xfd\xe2\x5f\xc8\x91\x36\xe1\x1f\x8e\x69\x90\x16\xa1\x58\x28\x96\xaf\x17\x1c\x6e\xba\xab\x82\xae\x16\x15\xf8\xfd\x4e\xf4\x8b\xcb\x4b\x5f\x44\x90\xfb\x5f\x1b\xa1\x47\x74\x29\x06\xc7\x7b\xc7\x15\x10\xe1\x6f\x22\xbb\x26\x77\xeb\x9b\x5f\x06\x87\x90\x21\xd7\xab\xd9\x52\x59\xf5\x86\xa7\x75\xf1\x1f\xcf\x47\x01\x93\x84\x12\xfe\x43\x5f\xed\xaf\x0e\x62\x7b\xfb\xb4\x49\x6d\xc2\xd4\x6b\xd4\xf2\xe1\x60\x64\xee\xf9\x2c\x70\xb0\xeb\xf3\x74\x95\xf9\xe4\x93\x6a\x63\x15\x15\x4e\x0e\x31\xe3\x87\xfe\x87\x37\x93\x8a\xbf\x42\x52\x3e\x6d\xb9\x32\xd8\x4b\x11\xb7\xea\x53\x87\x97\x91\xff\xde\x17\xa8\xf8\x74\x15\x71\x95\xab\x48\x45\x9f\x6c\x6b\x6f\xdd\xf8\xd7\xf3\x50\x39\x06\x99\x1a\x9b\x4f\x24\xb5\x7d\xe0\x70\x2f\xcd\xfa\x86\x26\x0c\x98\x6b\x21\x66\x25\x2a\x06\x4b\x26\xaa\x22\xc9\xc1\xcc\x14\xd4\xeb\x12\x10\x34\x99\x35\x93\xc3\xc3\xda\x7c\xcd\x6f\x80\x30\x1c\x6b\xe3\xdf\xbf\x74\x84\x9e\xac\xa3\x56\x2a\x86\x2d\xdf\xf5\x74\xec\xb9\x53\x97\x42\x22\xc6\x8c\x5e\x17\x80\x0d\x9f\xe7\x63\x07\xa9\x45\xb4\xb1\xf6\x0e\xe9\x07\x4e\x59\x35\x36\xca\xba\xe4\xac\x46\x3e\x15\x8d\xb6\x98\x0d\x0e\x9a\x94\xd6\x81\x4c\xa0\x08\x03\xe7\x8b\x15\xf1\x75\xac\x07\xd5\xa3\xec\xde\x23\x1a\xa4\xcb\xf5\x89\x1d\x23\x91\x8f\xf7\x4d\xb4\xed\x5a\xbd\xd6\x14\xa1\x7b\x64\x4d\x3d\xb4\x29\xed\x93\xa6\x4c\x9d\xc2\x79\x98\xfb\xe0\xfc\x86\x61\x53\x1a\xff\xad\x3c\x9d\xbc\x95\xd6\xe9\xdc\xfc\x6e\xef\x4c\x68\x5f\x2c\x56\x7c\x1d\x1c\xfc\x97\xbd\x65\xfd\x00\x20\x9e\x43\x1c\x5e\xf4\x7d\xff\xf5\x74\x25\xec\xd9\xa8\xd8\x70\xab\x34\x65\x57\x18\xce\x5b\x36\x14\x2c\x63\xb9\xcc\x73\x8c\x01\x3e\x9a\x7e\x3f\x93\x27\xb7\xcd\x6a\x9d\x36\x4d\x8a\xff\x67\xfb\xb5\x02\xce\x94\x30\x98\xca\xdb\xa4\xca\x77\x55\x2f\x2e\xd7\x45\x72\x63\xbf\x52\x99\x11\x76\xed\xe5\xc9\x46\x98\xbf\x80\x76\x76\xec\xf3\x40\x04\xa0\x26\x2d\x48\xae\xba\x4f\x40\x0e\x2b\xd4\xcf\x17\xc2\x57\x86\x0d\x05\xdc\x52\x9b\x94\x28\x73\xa3\xa4\x12\x5e\x78\xae\xae\x88\x26\xe0\xda\xb2\x1e\x6f\xdb\x91\x7e\x6d\x16\x57\xcb\x8b\x2f\xc1\x0f\x34\x4d\x1c\xce\xb6\x11\x43\xc5\x8c\xcc\x04\x45\x6c\x53\xc9\x15\xbc\x71\x98\x2e\x98\x14\x14\x63\x9c\xc5\x7d\xe7\x02\x89\xc1\x19\x53\xf3\xf9\x42\xd8\xe7\x0d\xa5\x6d\x54\x09\x1c\xd4\x3c\xcb\xfd\x97\x41\x40\xd5\x8e\xeb\xbe\xe4\xe6\xe4\x04\xc6\xa9\x9d\x6b\xdc\xdd\xbb\x35\x9d\x4c\x4a\xc8\xab\x10\xea\xc6\x08\xe7\xec\x95\x13\xc4\x87\xec\xc4\xa8\xc6\xcb\x92\xb0\xdf\x1e\xf5\x39\x66\xb5\xb6\x71\x89\x9e\x93\x6b\xc5\xd0\x6c\x69\xa5\x61\xdb\x04\xf4\x9a\xb9\xcb\x8f\x2a\x8d\x88\x36\xfe\xb5\x7d\x09\x55\xa9\x10\xc7\xc3\x76\x89\xe7\xc9\xfb\x81\x73\x98\x60\xb2\x86\xb5\x05\xe9\x89\x35\xe6\x92\xb4\xe3\x7b\x6c\x7b\x8f\x48\x99\xfb\xab\x91\x0b\x30\x2e\xc6\xff\xce\x51\x01\x4d\x70\x8d\xf8\x2f\xbb\x76\x95\x86\xe9\x4e\x89\xf0\x65\x7e\xd3\x3b\x4e\xd0\x48\xfa\x8b\x66\xbe\x5d\x1f\x18\xfd\xc5\x45\x8b\x52\xbe\x96\x47\xe6\x40\x49\x5b\x9b\xca\x8a\x83\x81\x72\x52\xe9\x35\x3d\x91\x10\xc9\x08\x69\x86\xbd\x69\x6a\x3e\x28\xf0\xa9\x14\x4e\x9a\xdd\x2b\x9d\x20\xba\xb0\x45\x39\x4c\x51\xd5\x48\x57\x0f\x49\x97\x89\x32\xe2\x8b\x9d\x72\xfa\x38\x0c\xaa\x27\x5d\x53\x67\xb3\x4d\x53\x66\xac\x26\xcc\xd0\xe0\x20\x66\x0b\x35\xe2\xa5\xcf\x7f\xb7\x8b\xc9\xc1\x75\xc8\x11\x53\x36\x36\x11\x68\x38\xf2\x05\x11\xcf\xb9\x77\x8e\xd5\x3d\x5b\x1c\x92\x78\xd5\x8f\xd6\x90\xaf\xc8\xf3\x78\x4a\xf1\x85\xe3\xc2\x8e\x36\xcd\x93\x8a\x3a\xc4\x24\x56\x4c\xed\xcf\x1e\x5d\xac\xae\xf2\xf8\x4e\x22\xb4\x36\xaf\x5b\xa5\x2d\x4a\x30\xb6\x13\xd2\x5a\xdf\x66\xa8\x53\xb2\x07\x94\x6b\xdc\xf3\xef\x50\x31\xb0\x68\x53\x6a\x55\xa2\xfe\x20\xfa\x2a\xe7\x8e\x4d\xbf\x1b\xae\x3b\x29\x60\x19\xbf\x6d\xd7\xe4\xda\x30\x8f\x9e\x89\x5d\xb1\xf1\xf3\x9b\x54\xe1\x85\x08\xe3\x0a\x05\x3c\x7d\xd0\x7d\xca\x16\xcf\x0b\xc0\x75\x59\xb2\x10\x60\xb6\x62\x08\x60\x6c\x8f\x7b\xdf\x33\xb0\xc8\x17\xfa\x16\xfc\xc8\x6d\xea\xad\x4e\xa2\x8b\x18\x93\xa0\x9b\xec\xee\x95\x00\x9c\xe7\xfa\x98\x09\x17\x8a\x4c\xfe\x29\x6d\xa1\x8d\x8a\x45\x22\xf7\x29\xd5\x53\x17\xe9\x2d\x59\x94\x89\x49\x0c\x71\x0f\xa7\x3d\x0a\xa0\x71\x54\x7c\xb2\x53\xcf\x0b\x34\xdd\x35\x6b\x4c\xe2\x37\x71\xe5\x72\xb7\x9f\x49\xcb\x47\xd0\xaa\xcc\xc5\xff\x77\x4a\x0e\x0d\x89\x2b\x86\xec\xc6\x79\xad\x69\x09\x91\x62\x71\x9c\x2f\xd6\x07\xe9\x93\xfc\xc2\xa6\xc4\xe6\xb0\x66\x23\x5e\x81\xee\xda\xa5\x39\x9d\x21\x96\xb0\x0e\x32\x7f\x99\xfe\x8f\xb5\xef\xf9\x09\x58\xbc\x58\x21\xee\x02\xb8\xbd\xdd\x73\x5a\x99\xa6\x38\x40\x8e\xdb\xf8\xb0\xbf\xb6\xc9\xa4\x36\x31\x63\xc9\x94\x73\x36\x82\x79\x19\xd7\x13\xe1\xa5\xcc\xe7\x2a\x60\x05\x43\x1c\x21\xf1\x96\x9b\xfe\x66\xdf\x1a\x57\x92\x96\x93\x29\x76\x44\x99\xdd\xb2\x00\xfc\xca\xfe\x75\x0d\x7a\x4a\x83\x72\x25\x06\x7d\xff\xd7\x83\x1a\xf3\x62\x8d\x89\x3d\x8f\xd4\x63\x6a\x46\xee\x2b\xfb\xd4\x71\xec\x44\x2e\x72\x50\x55\x3c\xf4\xe1\x23\xd4\x87\x5d\x1d\x55\x9f\x42\xec\xf6\x92\x75\xa0\x2c\xaa\x98\x15\x5c\xa5\x66\x85\x54\x2b\xfc\x69\xff\x5e\x1b\x8c\x17\x03\x4f\x1a\x41\x86\x13\x5f\x54\xc7\x2e\x70\x3d\x54\xa7\x5c\xa2\xe5\xed\xbd\xea\xe0\x24\x6b\xb2\xba\x08\xb6\xf5\xc4\xa7\x28\xd7\xa7\x55\xce\x60\x89\x88\x25\xfb\x0f\x0f\x02\x33\xa6\x72\x59\xfe\xb5\x95\x4b\xd2\xf7\xb2\x7d\x5a\xb2\x33\x58\xb8\x52\x1b\xb3\x32\xea\x79\x89\x0c\xc0\x5b\x1a\xc7\x55\x58\x76\xc4\x3c\x84\xee\xcc\x5b\xef\xab\xea\x2d\x01\xfc\xf3\x07\x3c\xb6\xae\xcd\xd6\xa2\xb6\x43\x09\xd5\x1b\xdf\xd6\xcc\xa0\x1c\x8c\x7d\x59\x97\x7c\xf9\x35\xf5\x48\x2a\x98\x55\x89\x23\x9e\xfc\xf2\x9a\xfa\xf3\x2a\xf2\x6a\xa4\xe1\x55\xf3\x85\xf0\xfa\xcd\xba\x42\x8e\xf4\x98\x94\xb0\x83\x35\x73\xb5\xe5\xb1\x22\x11\x7a\xbe\xc4\x99\xe5\xc6\xcf\x1d\x06\x9a\xfc\xd5\x01\x61\x9c\x5e\xce\x39\xd9\x5b\x54\xfc\x09\x80\x6b\xe1\x37\x3b\xd2\x97\x1f\x97\x4a\x98\x0f\x9a\xb8\x9a\x46\xf4\x45\x16\x1d\x80\x62\xc1\x0e\x77\xc4\x2b\x74\x67\xdd\xb6\x9e\x7c\x50\xa2\xac\x21\xd7\x3e\x03\x96\x37\xf9\xea\x3a\x22\xde\x8f\x5c\x08\x58\x2a\xc8\xac\x72\x72\xd9\xb4\x5d\xda\x75\xad\xe2\x9a\x58\x12\xca\x6a\x68\x30\xb0\x91\x2d\x11\x16\x2b\x95\x75\x67\x46\x6b\x2b\x1e\xbe\x98\xf1\x49\x5c\xae\xe5\xda\x47\x81\x05\x1b\xa7\xf4\x61\x71\xdc\x33\xc3\x37\x89\xb3\x58\xa2\xcc\x14\x93\xa1\xd7\x3f\x90\x2a\x8b\xe6\xd5\x88\xf9\x2e\x86\x54\xbc\x95\x67\xf5\xcd\xb5\xb6\xda\xd8\xfd\xa6\x1a\x60\x22\x3d\x15\x87\x1f\x5f\x23\x8b\x3f\xc4\x98\x20\x41\x67\x0e\x84\x40\xc7\x95\x78\x82\xa6\xdc\xf6\x64\xba\x0c\xe2\x61\x9c\x50\x16\x7d\x1b\xbd\xd8\x9b\x0c\x36\xb9\x0e\xa9\x4a\xda\xec\x43\xb7\x41\x15\x56\xe2\x2b\x6b\x9b\x81\x4f\xe8\xf3\x6e\x2f\x4e\xd2\xdd\x39\x52\xd3\xfc\xae\xa2\x1a\x35\x91\xdc\xfb\xc8\x93\xe7\xcb\x0b\xc2\x7d\xcc\xf9\x5d\xbe\x76\x93\xce\xa8\x16\x84\xa1\x84\x15\xf1\x93\x3d\x4a\x79\xaa\xb5\x03\x14\x6a\x3b\x07\x0c\xd7\xbb\xa9\x12\xe1\xcd\x54\x78\xd9\x02\x20\xd7\x48\xb8\xb9\x64\x21\x1c\xd5\x7f\xa8\x8c\x55\x88\xbb\x41\x26\x2e\x36\xc6\xcf\x40\xa7\x2d\xe0\xe3\xb6\x54\x4c\x1c\x57\x14\xb3\x29\xca\x48\x99\x48\xb2\x6f\x76\xfe\x52\xd8\x6b\xb8\x41\xd4\xe9\x0b\x00\x73\xb7\x71\xe2\xb9\xf4\x87\xea\x08\xac\xa8\xcf\xe0\x25\xe4\xa0\x21\xf2\xeb\xdb\x81\x53\x94\x8b\xf1\x15\xb2\xae\x8d\x3e\x65\x17\x76\xf9\xdf\x1b\xb3\x57\x7c\xd0\xf9\x36\xf1\xbb\xa0\xfd\x69\xf6\x73\xa7\x41\x8b\xee\x0a\x3f\x0f\xbe\x5e\x0b\xff\x65\x37\xf0\x90\xa1\x9e\x27\xa6\xa1\x44\xa6\x8a\xea\xb2\x34\x94\x2c\xaa\x0d\x7a\x44\x68\x9d\x5c\xa7\xe6\x31\x5e\x95\xe4\x0b\xe1\xe9\x83\xfc\x72\xe7\x17\x60\x87\x9a\x0c\xf9\xcd\x53\xf3\x2d\xfd\x87\x40\x98\xbf\x8f\x99\x40\x49\x66\x8e\x3c\x0f\x96\x17\x51\xb7\x12\x7d\xd0\x07\x36\x24\x73\xa6\x19\x5c\xbb\x2d\xf3\xb3\x92\xbe\x72\x14\x78\x7c\x00\x70\xca\xf5\xdf\x2b\x16\xa1\x36\xe2\x94\x9f\x6c\xef\xd9\x49\x28\x2a\xa5\x94\xfe\x3e\x7a\x10\x68\x0e\x52\x37\xf1\x43\x28\x6e\x99\xf2\xff\xe6\x1c\x2c\xb5\xc3\x5a\x7c\x15\xb9\x9c\xc0\xe3\x5c\xeb\x42\x77\xe6\x76\x4d\x73\x3b\xaa\x28\x69\x20\x49\x44\x99\x1d\xbb\xc7\x68\x5d\x08\x16\xc6\x9f\xf1\x20\x52\x14\x7a\x73\xa7\xea\x74\x79\xec\xc5\x88\xbb\xcc\xfd\x77\xeb\xb3\x33\x1f\xb3\x3a\xc1\x9d\x09\xc2\xd0\x58\x7b\x4a\x2b\x51\x6d\x5c\xc7\x36\x72\x2d\xe9\x92\x18\x45\xd0\xd7\x4e\x68\xa8\xbe\xba\x20\x7c\x45\xf9\xe0\xaf\xc3\xc0\x64\x9b\x61\xdc\x15\x33\x77\x47\x25\xdd\x17\xe1\x81\xda\x58\x20\x8c\x13\xf2\x84\x31\xec\x45\x1d\x1d\x11\xc5\xa5\x31\xfe\x16\xa5\x1e\x88\x62\xc6\x34\xd0\xd6\xbf\xb6\x05\x76\xc7\x36\xa0\xb5\x84\x33\xc3\xa4\xab\xa8\xb6\xea\x32\x19\xe1\x65\xbb\x34\xa3\xb2\xa8\xc3\x74\xcb\x3e\x75\x13\xa0\x53\x78\x6c\x45\x3a\x68\x07\x2e\xb7\x78\xb3\x62\x1d\xe5\xdd\x52\x8b\xbf\x8e\x99\x70\xe2\x8e\x4e\xce\x6b\x57\xe9\xee\xc5\x65\xcc\x08\x52\x3f\xb6\x3b\x33\x63\xef\x70\x3d\x9f\x51\xe6\x73\x59\x9a\xdc\x57\x7a\x5d\xd1\xfc\x5a\x5c\x09\x0d\xe6\x43\xe8\x74\x73\x74\xd5\x4b\x6a\x05\x93\xcf\x83\xe1\x42\xb7\x71\x5f\x7f\x85\x9d\xf0\x7c\xca\x55\xee\x79\x84\x0d\xee\x56\x42\x4b\xb4\xde\xf4\x23\xaf\xd8\x09\x44\xa3\xa8\x5d\xf5\x3a\x51\x59\x28\x7a\x7c\x79\x71\x7a\xfa\xdb\x3e\x55\x56\xdf\xcb\x0d\x30\x96\x66\xb8\x2c\xdc\x14\xb3\x5f\xd5\xc0\x7a\x9e\x70\x87\x91\xcf\xaf\xf0\x9c\xe4\x70\x22\xc6\x1a\x79\xca\x63\x53\xe6\x87\x6d\xba\x65\x67\xe0\x63\x39\xd3\xf8\xaf\x6d\xba\xe5\x20\x13\x03\xd6\x26\xed\xe4\x7d\x17\x80\xfa\x85\x51\x3b\x80\x8b\xe6\xd7\x37\xfc\x23\x43\x71\x09\xf7\xfb\xd8\x06\xc0\x1d\xa1\xac\xcc\x25\xdd\xc3\x39\xfa\x70\x2f\xba\x08\x52\xdd\x68\x1e\x70\x72\x40\x4e\x31\xf0\xb8\x3c\xdd\x06\xdd\x2b\x83\xbf\xc1\x42\x77\x76\xcf\x3a\xad\x50\x8a\x91\x3e\xf3\x01\xd0\x93\x29\xbd\x98\xe8\x5a\x94\x03\x9b\xaf\x39\x64\xc4\xdd\x00\x30\x87\x35\x46\xea\xc8\x27\x5e\xcc\x77\xcd\xf5\x5d\x25\x35\x35\x4d\x0a\xed\xcd\x33\xff\xd4\x9e\xbe\xd0\x1d\xd1\x97\xd3\x60\xa1\x9e\x36\x07\xeb\x8c\x4a\x01\xae\x1d\xc1\x73\x47\x9b\x66\xb8\xeb\x13\x89\x2d\xcc\x6c\x96\xc0\x6c\x01\xad\xe4\x1d\x60\xeb\x4c\x71\x43\xf8\x32\xd8\x23\x72\x9f\xb3\x42\x4a\xe9\x5f\x6d\x07\xc5\x94\xf8\x84\xf1\x81\x06\xdf\x0d\x58\x95\x78\x15\xae\x98\x24\x40\x7e\x1a\xc7\xad\x8c\x84\x3e\x60\x94\x92\xf7\xb5\x6b\x43\x70\xd3\x0c\x92\x4e\x2b\x3c\xef\x75\x48\xb7\x22\x3c\xd1\x86\xb7\xcd\x11\x8f\x69\x29\x61\x18\x1a\xd3\x5c\xfc\xda\x85\x7a\x13\xc1\xb7\x04\x71\x9e\x7d\x73\x6a\xfa\x1c\xba\xc8\x43\xd2\x40\x39\x7d\x0e\xbf\x34\x31\x3d\x03\xe9\xc0\x9d\xb1\xc2\x85\x9e\x18\x6f\xba\x53\x17\xbd\xf3\x90\x8d\x53\x4a\x8a\xd9\x69\x52\xb3\xcd\x23\x66\x15\xbb\x72\xab\x9d\x5b\xbc\x0a\xe8\x96\x31\x47\x7a\xff\x92\x5e\xba\xae\xa4\x1f\x8f\xec\xfe\xfe\x42\xba\x9c\xe6\x63\x8e\x62\x60\x2b\x03\xae\x71\xf6\x30\xd0\x92\x59\x60\x3d\x96\xfd\xf5\x2b\x17\x37\x15\x45\x98\x4b\x08\xab\x8e\xe3\xfa\x97\xa5\xea\xac\x1f\x55\xce\xd1\x93\x5e\xbf\x51\x29\x10\xd8\x40\x64\x20\x67\x6c\x4c\xca\xd1\x6a\x43\x6f\xd1\xc3\xf2\x66\x6d\x23\x4e\x89\x1b\x4b\x59\x3c\xff\xbe\xb6\x6e\xa5\x42\x13\x88\xb3\x63\x32\x93\xde\x56\xa8\xdb\x18\x80\xd5\xf4\x7a\x3e\x31\x1f\x08\x0e\x71\xc7\x2b\x59\x34\xdd\x28\x31\x3d\xc8\x92\xcb\xd8\x7b\x05\x6f\x4c\xb4\xc3\x4b\xe3\xad\xc5\x5b\xfb\xc5\x80\xef\x5a\x64\x57\xa1\x7a\xd7\x48\x71\x11\x3e\xed\xa3\x4a\x1c\x72\x5f\x7a\x5c\xfc\xd5\xeb\xeb\xd0\x1a\xe6\x9e\x76\xbd\xd4\x5d\x1d\x90\xb8\x23\x3c\xfb\xa4\x78\xdb\x0e\x76\x28\x43\xae\xc5\xad\x7d\x8d\x7f\x3d\x98\x7e\xaf\x18\x79\x92\x9b\x9d\x79\x62\x29\x30\x81\x8e\xfe\x05\x0f\x66\x95\xf9\x60\x58\xce\x23\x6d\x21\xbc\x40\x9b\xe9\x3b\x81\x1f\x24\x62\x01\x46\xd0\x5b\x2d\x13\xf3\xdc\xd8\xbd\xdf\xf6\xe4\xf5\x95\x2b\x08\x32\x2a\x5c\x88\xdd\x8c\x8d\x03\xdf\x5a\x03\x16\x4e\x04\x97\x6d\x6a\xf2\x71\xd8\xac\x73\x9b\xf8\xb8\x0c\x8b\xb4\x37\xaf\xa2\xf6\xb6\x1d\xb4\xc8\xaf\xd9\x7b\xeb\x9a\x1d\x3d\x8b\x52\x0c\x37\xfc\xc3\xdb\xba\xf4\x1f\x93\xbb\xb6\xec\xe5\x63\xd4\x6b\xed\xa4\xcc\xb6\x3a\x85\x9b\x63\xe6\x83\xde\xa2\xee\xbd\xba\x42\x58\x23\x7f\x6b\xc0\x62\x21\xe9\x65\x7b\x35\xd1\xa2\x80\x17\x03\xb2\x8c\x72\x80\xf9\x7a\x95\xf8\x7e\xbe\x10\xfe\xed\x70\xf2\x88\x3a\x2b\xd1\x13\xbd\x58\x23\x89\x72\x7b\x9a\x46\xbc\x3c\x38\xba\x0c\x06\xeb\xf8\xc2\x20\x3b\xfa\x22\x3f\x39\x1e\x67\x41\xa7\x86\x48\x39\xca\x82\xe1\xc0\xa7\x54\xfe\x2a\x32\xea\xae\x81\x12\x2a\xb9\x4f\x5f\x2b\x16\x04\x4b\x70\x67\xbe\x10\xd2\xf9\xc9\x0c\xb7\x7d\x72\x53\x26\xbc\xff\x69\x00\x98\xc3\x8c\x2f\xe3\x62\xd2\xed\xa4\x87\x52\xdc\x9b\xba\x64\x2a\x77\x67\xdb\x4f\xa5\xd3\x93\x8f\x5c\x54\x45\x9a\xa0\xd6\x45\x4f\xa9\x81\x72\x09\x63\xb1\x87\x66\x6b\x5a\xf4\x1c\x59\x4e\xca\xd1\x5b\x7a\x5f\x0c\x06\x85\x51\x8f\xd6\x6c\x77\x35\x66\xfa\x60\x59\xaf\x70\xbb\x86\xd8\x72\x32\xf3\xb9\x49\x60\xc8\x58\xc7\xcc\xb2\x69\x9d\xcf\x24\x8e\x2c\xd6\xa5\x50\x4c\x5a\x76\x49\x97\x5c\x75\x1f\xdd\x96\x4e\x57\x33\xda\x67\x49\x6b\xe8\x7f\xbe\x5b\x5b\x13\x52\xd7\xaf\xd8\x89\xd6\xf2\xbd\x2d\xba\xb9\x64\x83\xf3\xa9\x6b\x9c\xc8\x98\x5b\xb3\x30\xbd\xa3\x36\x2b\x88\xb8\x7c\xbb\xa2\x07\x19\x5f\xb0\x42\xf3\xd7\x89\x5c\x95\x52\x86\xd9\x3c\xf7\x62\xad\xc0\xe4\x14\x7b\x52\x22\xfc\xa1\x45\xc7\x63\xd8\x2d\x09\x46\x2c\x60\x65\xd9\x35\x64\xff\xe7\x4d\x98\xce\x02\x21\x20\x9a\xbd\xb0\x75\x28\xac\xb7\x5d\xb3\x92\x2f\x09\x9e\xce\xd2\x11\x32\xa0\xc5\x10\xb9\xec\xee\x6d\xd0\x9e\x85\x70\xe3\xe2\x70\xfa\x2d\x43\x00\x9d\xdb\x97\x4d\x45\xa1\x3b\xfb\xc2\x5c\xad\x1d\x41\xb6\xad\xac\x10\xcf\x3b\xa3\xf3\x01\x90\x17\x4f\xbd\x6e\xd9\xcd\xff\xa5\x8d\xdd\x7c\xfb\x8c\x66\xbb\xf3\xd3\x1a\x4a\x39\xba\x15\x3a\x6d\xab\x3f\xd3\x24\x09\x15\xdb\x31\x46\xdb\xbf\x0f\xf6\x49\xad\xdc\xe5\xa0\xe3\x88\xea\xa1\x29\xf7\x95\x49\xb6\x6e\x7f\x79\x50\xc4\xe7\x82\xdd\x70\x6a\xc4\x8c\x9e\xf2\x5f\x7b\x25\x1d\xc9\x94\x59\x93\xa3\x7f\xbf\x4d\x83\x10\x22\x86\x51\x32\xe8\x3a\x67\xad\x06\xf1\xc6\x88\xc9\x91\xda\xcb\x7b\x94\x56\x00\x57\x3e\x48\x25\xb4\x49\x2f\x8d\xd1\xee\x07\xb3\x50\x27\xd2\xe0\x7a\x99\x0b\x67\x27\x06\x8f\x26\xe8\x52\x8d\xff\x1b\x9d\x9e\x58\x13\x39\x54\xcb\x9c\x73\x7a\x30\x98\x18\x08\x29\x83\xe8\xd3\x8c\xab\x81\xd9\x2a\xf1\x2b\x16\x43\x9d\xfc\x5e\xf4\xaa\x5d\xa2\x55\x82\x75\x41\x51\x87\x91\x26\x7b\x8f\xf6\x10\x1c\xae\x81\x14\x1b\x02\x7c\xe7\xcd\xf4\x1d\xa8\x61\x64\xe2\x1e\xcd\x84\x5e\x3f\xa9\x93\x04\xa3\x6a\xee\xe2\x95\xc3\x20\x58\x0e\x90\x9c\xcc\x0a\x8c\x4c\xbc\x21\xe4\x8c\xbc\xcc\x7f\xdf\xa9\xc6\xe1\x5d\x00\x7e\x61\x64\x36\x26\x2f\xd0\xc2\x51\x08\x5d\xf2\x32\x64\x56\x3a\x45\x29\x64\x3a\x09\x08\x5c\x29\xe4\x51\xb7\xf1\xd4\x9a\xf3\x41\x22\xe3\x13\xaa\x57\xf6\xaa\xd6\x33\xe9\x4a\xe5\xd0\x23\x7a\xb6\xcf\x09\xcb\x91\xfc\xb5\x36\x8d\xee\x1a\xf4\x9d\x79\x7d\x45\x3a\x0c\x4e\x17\xbe\x74\x62\xe6\xff\xc5\xc7\xa1\xdf\x6f\x49\x08\x33\xff\x9f\xc6\x72\x2b\x06\xcc\xf7\xcc\x4a\x60\x23\xab\x0b\x6b\x60\xce\x3f\x2f\xd3\x29\x50\xd1\xfd\xb5\xa4\xf8\x58\x76\xf6\x62\xcd\x20\xbd\xe8\x4a\x8f\x27\x15\xbc\x17\xbb\x03\x52\xe7\x82\x17\x92\x8d\x2d\xe9\xd3\x35\x2b\xae\xe7\xa6\xcc\xd5\xa6\x3b\x8e\x67\x4a\x75\xa0\xf4\x7b\x7e\xe8\xb8\x06\x82\xe1\xae\xc1\xc8\x96\x50\xe9\x4b\x9e\x3f\x1f\x4c\x97\xf8\x50\xfe\xbc\xb5\x20\x8b\x44\x61\x23\x7a\x42\xd7\x0e\x1b\x0e\x66\x4d\x66\x15\xfb\x79\x8f\x74\x89\x39\xcb\x6d\xa7\x87\x03\xd4\x50\x39\x35\xbd\x9a\x6a\xa4\x96\xfb\x02\x37\xc5\x83\xfd\x25\x7b\xb4\x19\x39\xb5\x6d\xce\x84\x94\xd1\xfe\x2b\xbb\x47\x82\xa1\x74\x8d\x61\x0f\xbb\x3e\xe8\x19\xb3\x17\x3f\xa8\xf9\xac\x20\x57\x21\xb4\xc3\xe3\x2f\x35\x99\x60\xf0\xbd\x83\x50\xdb\xf3\x56\x5d\x08\xf9\xc2\x8b\x16\x5d\xa1\xda\x3c\xbe\xf9\x95\x08\xd7\x1a\x13\x23\xac\xee\x1c\xe9\x38\x2f\x2e\x37\xa3\xb3\x6c\x3c\x9e\xd4\xd3\x89\x34\x54\x09\x18\xb3\xd0\x86\x4b\x52\x52\x16\x99\x57\xb7\x68\x1f\x57\x0a\xc9\x48\x30\xf8\xf3\xbd\x2e\xd6\xfb\x4f\x24\x15\xb5\x12\xc0\xe2\x29\x63\x70\x8a\x5f\x5e\xa1\xae\x10\x8e\xf6\x75\xec\x9b\x60\x77\x8b\xc5\xfc\x87\xad\x3a\x03\x33\x16\x78\x95\x67\xe9\x6e\xff\x42\x0d\x74\x24\x60\xc4\x09\x11\x63\x3d\x18\x5a\x70\x61\x22\x71\x71\x9f\x7d\x43\xbd\x77\x0b\x39\xd4\x85\xaa\x75\x0b\x87\xc2\x99\x9c\x1b\xe7\xad\x70\xc9\xde\x34\x4d\x6e\x4a\x9b\x58\x91\xae\x7b\x2d\x1d\x86\x51\xa9\x5c\x41\x2e\xef\x83\xe4\x45\xe1\x01\xea\xce\x7d\x62\xe7\x63\x09\x96\x51\xb8\xeb\xbd\x16\x70\xbe\x4a\x76\x20\xaf\x3d\xef\x99\x0e\xb6\xaa\x3d\x92\x59\x09\xa2\x5f\x7f\x72\xcd\x45\xfa\xa5\x76\xc4\x04\x2e\x01\x9d\xe8\xe6\xb4\x38\xfa\x01\x55\x51\xbb\x8c\x62\x9a\x76\x28\x61\x42\x94\xab\x10\x9e\x2b\x06\x31\x3d\x4d\x62\x97\x8b\xe4\x66\x11\xcf\x67\x84\xcb\xb1\x04\x2f\x6b\x92\x15\x2c\xe1\x1c\x19\x5f\xb4\xd5\xa8\x63\x72\x7b\x5b\xde\x42\xfc\x25\xef\xab\x0f\x4c\x9b\x50\xf2\xe7\xb1\xe1\x51\xf5\x97\xcb\xd4\xb5\xa8\xcd\xc9\xd3\x6f\x1c\x90\x6a\x87\xb5\xc0\x97\x00\xf2\x60\x03\x74\x28\x49\x88\x11\x47\xc5\xa8\xf7\x6a\xe4\x22\x8b\xe0\x66\x09\x8c\xec\x57\x5f\xd0\x55\xef\x03\xe6\x33\x4a\x1d\xf1\xde\x6e\x59\xa3\x3e\x80\x85\x58\xec\x90\x5b\xbf\x16\xf2\x93\x3d\x93\x4a\x08\x55\xf8\xc9\x92\x36\x9c\xb4\x89\x49\x24\x0e\x38\xb7\xb6\x08\xe5\x66\x85\x1c\x0d\xce\x17\xc2\x55\xcb\x95\x08\x15\x05\x72\x33\x99\x2c\x98\xc8\x34\x49\xbd\x86\x53\xe6\xea\x6b\x38\xe2\x22\x35\x28\xcd\x6c\x7f\x21\xfd\x16\x5c\xe4\xc4\xe6\xf9\xe5\x21\x4d\xd5\x55\x55\xf9\x8f\x3f\xbc\xe8\xc2\x74\xbe\xe0\x6c\x58\xe0\x9c\xb1\x1f\xd8\x3a\xfb\xc8\x29\xf1\xda\xa6\xdb\x78\xf5\x0d\x55\xe1\x05\x65\xe4\x5a\xfc\x65\xd9\x2f\x49\x2e\x91\x67\x23\x41\x26\xcd\xae\x5a\xa9\xef\xd6\x5d\x21\xd3\x89\x6c\x79\x4a\xfe\xe6\x6b\x74\x27\x6a\x56\x69\x90\xf8\xf7\xe7\xd8\xf4\x14\x91\x41\x16\xa9\x67\x97\x27\x39\x59\x88\x96\xfe\x78\xb7\xb6\x70\x77\xe5\xfa\xae\xf4\x62\x93\x05\x19\x0d\x5c\x9f\x6f\x11\xc4\xcc\xe2\x93\x1b\x60\x58\xa8\x63\x37\x2f\x88\x28\xd9\xe2\x62\x80\xa6\x21\x54\xd2\x31\xb2\x3f\x99\xd8\x04\x70\xaa\xc9\xf7\x7e\xed\xcc\xfe\x32\x6c\x16\x3d\xbe\xff\x0e\xad\xc3\x9a\x31\x0a\x1f\x77\x09\xb5\x8a\x17\x35\xe9\xb1\xc9\xb3\x66\xb5\x25\xdf\xbb\xef\x83\x00\xd4\xed\xf9\x0c\x99\x32\x4d\x19\x3f\x5a\xa1\xc6\xb2\xed\x4a\x20\x9a\x6f\x69\xf6\xa6\xbf\x6c\xd4\x52\x0a\xb3\x04\x39\x15\xf8\xdb\x41\xdd\x34\xa4\x56\xa3\x1e\xb6\x94\x77\xc0\xc2\x4d\x43\x41\xba\xaa\x4b\x16\x26\x8f\x42\x23\xb4\xa3\xc4\xb5\x06\x62\x1d\xf5\x0b\xfb\x48\x3b\xce\x4e\x52\x86\x42\x4a\x5f\xef\x7d\x9e\x2c\x1d\xa5\xea\x4c\x45\xb5\xb7\x28\x3a\xa1\xe7\xec\x54\x0d\xa9\x52\x81\x92\x7b\xdb\xec\xc8\x1d\xba\x55\x4f\x19\xfb\x15\x25\x04\x99\x79\x71\xa3\x8e\x01\xe0\xda\x4f\x75\x99\x22\xc3\xd6\xb1\x17\x69\x77\x43\x1c\x3f\xfe\x8d\x45\x4f\x7f\x10\xf8\x84\x23\x66\xcb\xed\x9e\xf1\xc0\xc8\xe4\x8c\x75\xf2\x56\x27\x7b\xd1\x0b\x60\x0a\x12\x94\x4a\x62\xa3\xdd\xeb\xf8\x40\x50\x52\x08\xcb\xa4\xee\xcc\x9f\xde\xd7\x30\x3f\x0e\x76\x2d\xae\xc9\x2a\x4e\xdd\xae\xed\xf0\xd4\xd9\x38\x66\x37\x18\x37\xbc\x38\x42\x6b\xdc\x3c\x70\x5a\x8d\x47\xde\x07\x32\xc7\x35\xc4\xaa\xb6\x54\x37\xd9\x09\xcc\x97\x26\xb7\xb7\x4e\x99\xc1\xb1\xc1\x8f\x26\xdf\x61\xbc\xf0\x01\xfa\xc8\xd6\xf3\xe1\xb7\xe5\x3f\xf3\x52\x6d\xf7\x5c\x64\x34\x7a\xc6\x09\xc3\x20\x77\xb5\xe6\x51\xc1\x88\x25\x84\x5f\xf9\x2b\x08\xef\xd4\x86\xd1\x8d\x38\xbe\xbc\xfc\xba\x18\x4d\xf9\x98\x31\x9a\x08\xb1\x18\x77\x8e\xd3\x67\x22\x12\x12\xcb\x5b\xbe\xed\xc0\xbb\xcf\xab\xd9\x7c\x4b\xc1\x4b\x97\x73\x16\x8d\xd4\x1b\x63\xdb\xc6\x6e\x39\xb1\x11\xfb\xd3\x04\x28\xaa\xc1\x65\x14\xc4\x2f\x9c\xf9\xde\x70\x90\xc5\x1d\x87\xba\x9d\x9c\x7e\xc4\xa1\x41\x1d\xa3\x9a\x02\x84\x53\x13\x32\x04\x42\xda\xc1\xf8\xc5\x2b\xea\x9f\x7b\x41\x0d\x33\x61\xa8\x2a\x14\x1a\xce\x68\xca\x29\xd4\x34\x7b\xf6\x3d\xcd\x7c\x77\xed\x20\x40\x36\x90\xce\x83\xdd\x46\xf1\xac\xa4\xe0\x07\x8c\xf3\x29\xc3\x01\xed\xe9\x4f\x14\xe7\xdb\x44\x06\x29\xec\xde\x27\x1a\xff\x25\x88\xa1\x06\x72\x53\x22\x10\x8f\xdc\xa6\x59\x12\xd9\x76\x31\xba\xa9\xc2\x98\x5e\xfd\xbd\x3d\x37\x8d\x04\xd1\xcd\x6c\x1a\x61\x66\xbe\x1b\xaa\xb3\xd3\xc9\x87\x5c\xef\xbe\xae\x83\x34\x6a\xa8\xe1\x28\x15\xc6\xdc\x68\x1d\x2f\x62\x23\xe2\x88\x5a\x56\x48\x55\xdd\xa9\xae\x0a\x07\x4d\xf2\x60\x7e\xec\x24\xc8\xe8\xc4\xb2\x31\xbf\x6c\x95\x73\x61\xf4\x65\x7e\x20\xb6\x97\x37\xef\x51\xe1\x02\xbb\xab\xeb\xc4\x03\x5b\x88\x5c\xfe\xb9\x26\xa3\x25\x61\xfc\x1f\x57\xe3\xcb\x2a\xa0\x49\x0b\xa2\xe7\x2a\x62\xfd\xbb\x00\xae\x22\x8f\x3f\x0f\x02\x8f\xdf\x94\x2e\x67\xab\x36\x26\x6e\x5a\xbe\x34\x37\xfe\x08\x10\x5b\xa7\xd1\xff\x15\xba\x33\x83\x67\x6a\x5c\x8f\xa8\x20\x2d\x51\x06\x1e\x87\x71\xff\x12\x71\x3d\xae\x71\xbb\x20\xcc\xea\xa5\xab\xc0\x1e\x98\x89\x79\x61\xbe\x10\x3e\x7d\xae\xc0\x52\x2f\x8f\x22\x64\x13\xe2\x6c\xc4\x11\x55\xa8\x70\xb0\x1f\x9f\xf4\x44\x2f\x65\xd2\x0b\x7a\x9a\x99\x39\xa5\x35\x46\x28\xb4\x6c\x4c\xc2\x31\x72\x78\x80\xf8\xed\x63\x12\xad\x8a\x98\x57\x91\xf0\xb9\xc7\x16\x4a\xa6\x97\x8f\x19\xe6\x5f\xef\x33\xdb\xa1\x3a\x5f\xd1\xa7\x82\x93\x38\x7e\xa7\x7a\x69\x81\x5b\x8c\x92\x79\xf4\x45\xbf\x34\xe0\x62\xf5\x74\xb1\x89\x82\x26\xcd\xfe\xee\xec\xe3\x43\xd4\xfa\x3e\xf0\x78\x4e\x99\x3c\x57\xf8\x24\x2d\xc3\x75\x69\x97\xd5\xf4\xaf\xb6\xdf\x0d\x14\x9f\x02\x16\x75\xcb\x04\xc7\xb2\x00\x99\xb7\x36\x03\x74\x3d\x72\xc5\xc9\x32\xae\xce\x5d\xa0\xc7\x11\xb7\x1c\xb7\x54\x99\x97\x0f\x8b\x1c\x7e\x33\xe2\xde\x13\xd1\x3f\xd8\x70\xe0\xbc\xb8\xa9\xe0\xba\x1b\x7d\x66\x82\xe5\x33\x2e\xb2\x40\x38\x72\x7d\x6e\x59\x93\xf1\xb3\x27\x2b\xc2\xcc\xd8\xcd\xc0\x69\x50\xc2\x3f\x4d\xa1\xd5\xd5\x76\x53\xfa\xfd\x10\xd7\xa4\x4e\x3c\x70\xfe\xc3\xa6\x16\xad\x7e\x8b\x5d\x95\x0b\xdd\xd9\xdf\x1c\xd6\xe6\x8c\xa8\x8c\xba\x88\x2b\xb6\x66\xe1\xa6\x1a\x88\x86\x0e\xef\x00\x85\x47\xfa\xe7\x97\x80\xb1\x7d\x05\x71\x8c\x7b\xee\xd3\xdb\x35\xa0\x1d\x8e\x82\x9c\xdc\x4a\x1d\xd5\x96\x09\xc4\xf3\x82\xb8\xc2\xbc\xe7\x79\x70\x5a\xb1\x1b\x7b\x95\x1a\x8b\x97\x37\x61\xc7\x08\x73\x64\x17\x54\xe8\xce\x2c\x5d\x21\x75\xb7\x91\x4d\x92\x48\xb0\xea\x1f\x9a\x48\x8a\xdd\xcb\xab\x73\x87\x42\xc4\x90\x1f\x30\x01\x46\x09\xb7\xb5\x68\x9e\xd8\x15\x6c\x56\xb0\xdc\x8c\xcb\xe2\xe7\xb7\x40\x2e\x25\x2a\xc9\x19\xf1\x9b\x58\xb8\xc6\x8e\xbb\xf5\xe5\x56\x4c\x0b\xcc\xb4\xcf\xd7\x1d\x2c\x8b\xd2\xa9\x27\xdc\x33\x62\xb4\x82\x5a\x50\x17\x47\xdd\xae\x2e\xbd\xfe\xd3\xb7\x35\x23\x44\x62\xe3\x46\x8a\x5c\x37\x6d\x3d\x90\xac\xc1\x9d\xd2\x57\xfe\x5b\x7d\xb4\x6c\x89\xba\x80\x0a\xce\x59\x09\xc2\xa9\x51\x1f\xf9\x94\xc3\x54\xf6\x8d\xd4\x75\xce\x9c\x00\xdb\x1a\x58\xeb\xd9\xb6\x64\x98\xe8\x96\x9b\xd9\xa6\xa3\x37\xc1\x07\x5d\xc7\x2c\xc1\x04\x1e\x1a\xad\x83\x9e\xea\xd4\xae\xab\x81\xc5\x37\x97\x37\x13\xa4\xe3\x85\x47\x78\x9d\x66\x93\x40\x8b\x42\xd0\x51\x16\x37\x7b\x9f\x94\xeb\x5b\x54\x4a\x7b\x07\x5c\x7f\x2e\x10\xba\x73\x1c\x52\x66\x48\xf8\xdd\xb6\x88\xc0\xd4\x3e\x63\xd2\xac\xe9\xd3\xa2\x73\x7c\xc7\x31\x80\x3b\x44\xac\x2e\x95\x5c\x33\x7f\xae\x27\x9c\xb3\x12\x4b\x94\x45\x16\x2c\x12\x55\xeb\x6d\x51\x08\x00\x4f\x07\xed\x85\xd2\xb1\x98\x99\x58\x70\x49\xee\x7f\x58\x05\xa9\x0a\xed\xcc\x17\xc2\x05\xf3\x01\x82\x88\x06\x8c\x3b\xce\x45\x7f\xf5\xe3\x5d\x4d\x6a\xf4\x92\x39\xd6\x9d\x29\x3d\x3e\x24\x3d\x4d\x2a\x8b\xde\x22\x37\xf8\x80\x9a\xbd\x74\x62\x61\x1a\x5b\xb3\x51\x39\xe0\x85\xc1\xfb\xa7\x20\x6a\x95\x74\x89\x86\x20\xb7\xee\xa4\x2c\xb1\x89\xb0\x83\x79\xa8\x8f\x9a\x25\x4c\xe1\xec\x29\x14\xeb\x41\x77\x67\xe7\x2c\x57\x9a\x0a\x26\xd8\xb7\x65\xbe\xa4\x21\x52\x2a\x88\xf8\x44\x29\x2f\x66\xc7\x8c\xd2\xa2\x66\xd4\x3f\xc7\x53\xeb\xe7\x56\x0d\x06\xb8\x8e\x06\xd7\xc5\xe2\x52\x2b\x0b\x5a\xe0\x4c\x94\xa4\x34\x60\x37\x3f\xa8\x61\x88\x58\x23\x26\x7d\x87\x37\x2c\x48\x8e\xa7\xef\x37\x27\x8b\x57\xb4\xb9\x43\x89\x2a\xeb\xf2\x47\x56\xe9\x15\xbf\xe7\xa1\x00\xa8\xc5\x64\xf6\x4f\xd0\xe7\x4c\x75\x3e\xe5\x94\x12\x94\x25\x6d\xdf\x26\x63\xa7\x08\x85\xd7\xec\x54\xb2\x64\x33\xf9\x38\xff\x99\x63\x5a\x8f\xcb\xd5\x5d\x60\x87\x31\x6c\x66\xfa\x6f\x94\x69\x1d\x33\x97\x17\x4e\x02\x3b\xfd\xda\x3a\x28\x2e\xc8\xaf\x9b\x60\x1b\xb4\x4b\xe0\x83\x19\x85\x7d\xc9\xfb\x7f\x70\x11\xe8\x00\xa2\x80\xeb\x0a\x2d\x88\xb5\xcb\x74\x7b\x02\xe6\x07\xae\xe8\x1b\xc2\x1d\x03\x64\x6f\x6e\xdb\xb8\xcc\xc5\x7e\xbd\x53\x40\x34\x30\x70\xdd\x28\x83\x9d\x7a\x51\x24\xdc\x9b\x2b\xc4\xc7\x3c\xd5\x34\xcd\x61\x3f\xb2\x27\x3d\xdd\x97\x5e\x6e\x29\x2a\x54\x77\xf6\x0b\x9a\x4a\x8a\x83\xfd\x0a\x8d\x1f\xf0\x93\xc0\xd3\x4e\x6a\x29\xe5\x0b\xe1\x7f\xd5\xc5\x55\x64\xb8\xc4\x48\x99\x0b\x47\x45\x67\x7e\x62\x7d\x80\x2c\x3d\x18\xaa\x49\x68\x63\xe6\x2b\x0f\xa9\xda\x35\x6f\xe3\x66\xb1\xf0\x11\x77\xe8\x4d\x94\x83\xdc\x84\xa6\x90\xfd\x7a\x0d\x8a\xb6\xfb\x5c\xea\x83\x7b\xc3\xbc\x00\xc0\xbe\x5c\x25\x41\x3c\xf2\x5e\xcb\xc4\x3c\x7e\x7e\xc0\x04\xb1\x4b\x15\x6b\x53\xb7\x5d\xa8\x3f\x8f\x3a\xad\x2a\x79\xa8\xaf\x3c\x21\x3e\xff\x78\x78\xf2\xc7\x9d\x0b\x98\x57\x34\xba\x4a\xae\x27\xd0\x6a\xaf\x09\xaf\x80\xfc\x32\xea\xd5\x18\x75\x9a\x0d\x52\xa7\x36\xe9\xdd\xd4\x89\x6b\xc6\x16\xa9\x53\xdd\xb4\x18\x15\xb0\x02\x11\x6e\x1c\xe9\xc7\xf4\xcb\xfd\xe7\xcb\x67\x6e\x93\xb2\x5c\xdd\x8e\x3e\xa9\x16\x5e\xc2\xa8\x2e\x3b\x51\x4a\x36\x04\x96\x25\xf8\x41\xd9\x1f\xaf\xd3\x52\xa1\x52\x9e\x28\xec\x4e\xff\x27\x5a\x42\xb6\x2d\x97\xd5\x97\x6c\xd5\x89\xbc\x3e\x0b\x78\x2b\x29\x70\x3e\x1d\x1a\x08\xa7\x93\x60\x3b\x11\xf7\x1c\x7e\xb4\x99\xd5\xe2\xb3\xc0\x84\xaa\x43\xf7\xcc\xd7\x9a\xb9\x5a\xcd\x96\x68\xd9\x98\x71\xd9\xb6\xb1\x07\x1d\x60\x2f\xba\x45\xb1\xb6\x55\xf8\xe7\x5d\xc0\x24\xde\xf3\x70\x3c\x0d\x34\xfe\xb2\x51\xe4\xa7\x1b\x31\x73\x30\x44\x3f\xfd\x66\x51\x3f\x55\xde\x45\xb7\xeb\x8f\x92\x53\x35\x7d\xfa\xa4\x69\xed\x9c\x78\x96\xab\x6f\xd5\x98\xb7\x34\x60\x66\xcc\xe3\xcb\xfc\xf0\xd0\x50\x40\x3a\xf7\x03\x16\x2f\x83\x8c\x3f\xcc\xd6\x90\x49\x94\xf2\x66\x39\x0a\x1c\xbf\xf4\x47\x80\x01\x5e\xf4\xae\xa1\xfa\x76\xf6\xca\xfd\xe3\xf4\x7a\xca\x43\x7e\x8f\xfb\x95\x3f\xf6\x06\x24\x00\x5a\x13\x88\x30\x5e\x7f\x74\x6c\x19\x28\xcb\x00\x87\xb8\xb1\xfd\x73\xe6\xad\x27\x74\xc9\xc5\x1a\x61\xf1\x48\xed\x3b\x5a\x64\x9f\xc1\x49\xbc\xa2\x9b\xce\x2e\xec\x48\xd9\x13\x8b\x21\x0a\x7d\x39\x99\x8c\x5a\x29\xc9\x85\x9c\x9f\xe4\xab\xd5\x01\x86\xa2\x5a\xf7\x5d\x06\x9a\x7d\xa0\x54\xd8\xb4\x09\xfe\xd8\x0b\x00\xf2\x80\x8a\x45\xe2\xfb\xe0\x02\xb7\x1d\x05\x8d\x53\x50\x2e\x47\x3f\x48\x28\x7a\xbf\x09\x49\xcc\xd8\xc6\x9e\x49\x6b\x5c\x05\xf7\xd7\xef\xc3\xd0\x99\x6f\x9f\xc1\x75\x48\x9e\xd0\xc8\x31\x51\xf9\x9f\xb0\x71\x2e\xeb\x2b\x1f\x22\x2e\x33\x5e\x0f\xf1\xd2\xff\x3f\x81\x36\xf9\xe4\xf6\x7c\x91\xfa\xbe\xa0\x17\xdd\x7f\x42\x03\x04\x46\xc5\x83\x14\x34\xd9\x39\xae\x49\xe5\x31\x31\x74\x92\x70\x9d\xdf\x5f\x05\x8c\xb8\x85\x50\x6d\x58\xbf\x4f\x63\x92\x22\x46\x3c\x09\x2d\xe3\x09\xfe\x1b\x4f\x69\x10\x1a\x9b\xd6\xa4\xae\xd5\xb4\x9d\xfd\x94\x35\x43\x14\xac\x2f\x9c\x0a\xe1\x00\x44\xc9\x00\x3f\xb4\x5d\xfb\xe0\x98\xe1\x98\x4b\xb7\xe6\x31\x5d\x5d\xbb\x82\xf8\x82\x21\x0a\xf5\x09\xc2\xeb\xfe\x6d\x60\xe3\xc2\x88\x47\x92\xb4\xfd\xf7\x13\x1a\xd1\x41\x38\x7d\x7a\x92\xc7\x62\x5c\xf0\xb2\x2a\x9f\xa9\x6d\x89\xde\xd5\xf8\x14\xc0\x33\x78\x3e\x2a\x0b\x3c\xfd\x54\xad\x38\x23\x09\xf4\xf6\x5a\x6d\x70\x57\xc4\x36\xc1\xf5\xc4\x4d\xd2\xb8\xaf\x38\xaa\x29\x01\xf2\x75\x60\xac\xd0\x17\x32\x60\xac\x17\x75\xfd\xd4\xc9\x17\xc2\xb7\x94\x8c\x02\xc3\xd1\x1f\x4c\x1d\xa6\x4a\x26\x17\x0b\x73\xf2\xa8\x24\x9d\x3a\x5f\x24\x8c\x32\xb5\x4a\xa2\x00\x2c\x84\xbf\x5f\xa5\x81\x63\xf3\x33\x04\xd4\x24\x97\xdf\x3f\x02\xee\x3d\xa3\x4a\xb5\x26\x09\x0f\x7c\x4e\xbe\x42\x6a\x03\x10\xc1\xec\x0c\x77\xb6\x88\x08\x36\x2f\x88\x12\xaa\x2d\xd4\xac\xa2\x87\x3b\xb1\x4d\x17\x9f\xf6\xcc\x56\xd5\x66\x9c\xf3\x6e\x2c\x45\x15\xb5\x85\x3c\x8e\xae\x8d\x09\x11\xd4\x0a\xa4\x15\xfe\x7f\xae\x04\x58\x55\x73\x75\x40\x78\xd4\x7f\x76\x6b\x3a\x1a\xac\x0e\x08\xf6\x6d\x21\x60\x9b\x79\x43\x53\xf1\xc4\x6b\x7c\xec\x5a\x89\xe0\xc5\x47\x4e\xaa\x93\x5c\x65\xa8\xc4\xc7\xec\x57\xde\xa4\x45\xd2\x4e\x54\x2e\x63\x29\xcb\xb0\x7d\xa3\xfa\x0c\x15\x54\xab\x71\x78\x71\xe6\x9a\x63\xea\xe7\x28\x0e\xe5\x2d\x60\x43\x8c\x04\x0b\x22\xfb\xcd\x2d\x83\x64\x18\x97\xe8\x68\x31\x96\x7d\x44\x33\x15\x73\x69\x00\x27\xeb\xdd\xd9\xc9\xfb\x35\x7a\x18\x43\x75\x2c\xf3\xde\xbf\x3f\xa1\x29\x66\xd4\x30\x36\x2b\x57\xcc\xce\x17\xc2\xf2\xd3\x3a\x1a\x3f\x2a\x93\xe3\xcb\xd0\xfe\xb0\xa4\xe6\x9a\x0c\x23\x27\x3a\xb9\xbf\x7d\xf1\x52\xad\x4c\x67\x79\xaf\x82\x4b\x9a\x29\xa1\x51\x7d\x5a\x2e\xc4\x84\xc8\xb8\xd7\x5c\x4a\x18\x2d\x6a\x28\x73\xe5\x95\x9d\x9d\x9d\xad\x3e\x76\x50\x2b\x0b\xae\x64\xb4\x48\xa3\xd8\x1f\xfe\x62\x4c\xb2\x7c\x41\x56\x62\xf9\x72\xf7\x98\xf4\x0d\xe8\xa0\x72\xa4\xa5\x82\xea\xb1\xb3\xe9\x03\xcb\x82\xf8\x6e\xbc\x2f\xb6\x8b\x0b\x10\xeb\x24\x5e\x05\x04\x7a\xaa\x59\xda\x7b\x18\x28\x7c\xf4\xad\x40\xf2\x48\x1d\x59\x8a\xd3\xf3\x83\x23\x89\x67\x56\x47\x07\xd4\x1e\x9b\x77\xdb\x70\x90\xc5\x11\x83\x98\x8e\x59\x77\x03\x65\x43\x92\x58\x72\xfd\xea\xb1\xbe\xf2\xd3\xd5\x85\xa8\xfc\x65\xac\x87\x96\x5f\x88\xe1\xfd\xf2\x3d\xf5\x91\x6c\x94\xc2\x5e\x7d\xe3\x89\xe6\x7d\x9c\x27\x8f\xc2\x9c\x0d\x00\x1c\x85\xa2\x7c\x1a\xfd\x69\x4d\x93\xf8\x40\x4e\x91\x94\x03\x1a\xc8\x90\xff\x13\x5b\x65\xb0\xa8\x2c\x25\x2e\xb4\x4f\x7a\xf0\xa0\x9a\x6b\x98\x15\xec\xf4\x64\xaa\x97\x35\x5b\xb4\x71\x4c\xa3\xc6\x02\xe1\x18\xcb\xa3\xff\xcd\xda\x8e\x11\xd5\x11\xb1\xf9\xde\x41\x78\x80\x7c\x56\x8b\x98\x0e\xb1\x12\x63\xc6\x7b\x47\xaa\x05\x3a\xb6\xed\x94\x51\xca\x57\x4f\xe8\xf7\xc6\xc5\x7e\x25\xca\xa6\x72\xb6\xf4\x77\x43\xb5\x88\xf5\xc0\x76\x31\x13\x49\x81\x8f\xea\xce\xa9\x83\x71\xad\xeb\xc6\xbb\x28\x63\xea\x29\xf5\x14\x85\x40\x61\xbe\x10\x6e\x5c\x08\x1c\x38\xb0\xed\xa5\x16\xf9\x97\xac\x1a\xa2\x85\x75\x1e\x41\xc3\xe1\x1b\x81\x64\x0b\x0a\x7c\xe2\xf9\xd0\xc5\xe0\x17\xaf\x68\x8d\x0c\xf2\xaa\x9e\xdc\x94\xff\xfd\x16\x1d\x84\x2f\x35\xc9\x8c\x4b\xc1\x74\x74\xf2\x8c\xe9\x52\xc1\x24\xbb\x6e\x8e\x68\xd4\xdb\xdb\xda\xa2\xce\xd1\xf0\xde\x83\xf1\x87\x08\xc5\xc6\x60\x7e\x93\xe2\x0a\x31\xd5\xca\xf6\xa5\x2e\x55\x3d\x4d\x99\x1c\x0b\x5a\xcc\x19\x24\xa3\x73\x2d\x10\x20\x4c\x5e\x5e\x7c\x38\x2e\x76\x0c\x70\x88\xcb\xa7\x12\xc6\x25\x6f\xa6\x3f\x73\x8d\x48\x28\x6a\x6e\x81\xad\x4c\x53\xa7\xb6\x47\xbf\xea\xd1\x95\x03\xc1\xa3\x61\x82\xd0\x6b\xfc\xc8\x8e\xad\x2f\x2d\xc2\xe5\xed\xee\x3d\xd9\x83\xf8\x76\x0c\x50\x99\xf5\xa6\x92\xd2\xa2\xc0\xb3\xf7\xf5\x17\xa0\x1e\x53\x4d\x4a\x0d\x1a\x03\xf7\x02\xbf\x1d\x10\x5d\x8d\x89\x5b\x15\xb6\xa3\x33\x71\x1a\x53\x84\x94\x4d\xc0\xf3\xa4\x42\x3b\x11\xdf\x53\x67\x26\xae\x93\x88\x05\x61\xc0\xcc\xff\xec\x33\x33\xf5\x37\xca\x15\xd3\xc5\x49\xbe\x60\xa5\xe6\x44\x46\xaa\x98\x97\xad\xe1\xe8\x35\x03\xc1\x07\x20\x65\xe1\x89\xb8\x22\xa7\xad\x6a\xb0\x8f\x59\x6c\x0f\x26\x6a\xa7\xdb\x86\xc5\xea\x2b\x92\xd0\x15\x56\x27\x80\xf2\xb1\x46\x4c\x9e\x5f\x5c\x4d\x29\xd1\xaf\x30\xda\x19\x0f\x4b\xb3\x9f\x3c\xdd\xb3\x04\xb1\xf8\xd4\x6b\x27\x25\xc3\x12\x1c\x38\x4d\xb3\xbc\x2d\x46\x93\x32\x39\x96\x4e\xd5\x9f\x02\xc8\x92\x0e\x2a\x7e\x5a\xed\x75\xf5\xa8\x1d\x62\xf9\xb4\xd3\x85\x10\xc7\x8f\x03\xf7\x24\xaf\x82\xb8\x8e\x47\xf8\x05\x3b\x15\xd5\xca\x62\x07\xfa\x05\xb9\x0e\x9f\x3c\x25\x16\xf1\x31\x0e\x35\x35\x71\x4e\x0d\x31\x24\x19\xb7\x42\x2e\xfd\x96\xa5\x9a\x12\x59\xe0\xd9\xc4\xf1\x34\x9c\xd9\x17\x4e\x8d\x75\xc1\xc6\x46\x38\xc5\x12\x6e\xe2\x93\x8e\x7c\x97\x56\x86\x42\x8c\xd4\xec\x2b\x78\xb9\x18\x7d\xbe\x6f\x3e\x09\x90\x79\x01\x37\x09\xcc\xa0\xbe\xa9\xa9\xb9\x62\x69\x0f\x5a\x3b\x00\xa0\xfe\xe4\xee\xee\xf6\xbe\xfa\x08\x0b\x95\xb1\x25\x4a\x9b\xec\xb7\x6f\x92\x68\x00\xa1\x12\x14\xfd\xf4\xdd\x42\x17\x20\x7f\x6b\x50\x41\x0c\x81\xea\xe1\x8b\xbb\x54\xa0\xb3\x68\x20\x31\x85\xdd\x99\x67\xf6\xb5\x80\x06\xcf\x97\x6b\x62\x51\x6b\xbf\xb1\x53\xcd\xc8\xb8\x1c\x79\xfa\xb5\x5f\xfa\x9e\x2e\x9b\x88\xdc\xa4\xcc\xce\xde\x7b\x22\x41\x48\xfa\x01\x94\x45\x0a\xd1\x8a\x44\x47\x96\xc6\x9d\x6f\xf6\x44\x5b\x52\x09\x90\x52\x12\x86\x87\x3d\xa9\x2d\x0d\x10\xd7\x8f\x14\x57\xbf\xef\xf3\x4d\xb2\x8d\x55\x9c\x9c\xe8\x35\x0b\xc0\xc2\x8d\x98\x0d\x53\x58\x9a\x64\x1f\xbd\x53\x9d\xbe\x2a\x6a\x56\x0e\x79\x38\x37\x28\xa9\x02\xb8\xa4\x05\x3f\x7f\xed\xc3\x14\x26\xc2\xa4\x7c\xfe\x92\xc8\xb4\x2e\x57\xad\xb9\xf0\xd0\x7a\x05\xa0\xcf\xb0\x49\x5d\x4b\xc0\x9b\x82\x77\x93\x00\xe8\x71\x5e\xea\x90\x01\x22\xd2\xf1\x7d\x55\xf4\x5b\xfe\x65\xa1\xba\x2d\x93\xa7\x44\x07\x3a\x5c\x30\x2e\x1d\x4f\x3b\x51\xac\x0c\xfd\xf7\x76\x0d\x08\x66\x23\xaf\x1a\x53\xa6\x55\xe0\x9a\xff\x66\xd2\xdf\xda\xb4\xae\x96\x15\xde\x0e\x91\x2b\x16\x23\xee\xcf\x94\x79\x7c\x97\x28\x4d\xea\x98\x71\x35\xb7\x6c\xeb\x82\x74\xc2\xf6\x11\x2b\xe3\x64\xd3\x19\x3e\x32\xf1\x72\xad\x4d\x21\xae\x89\xff\x91\x8c\xea\xa7\xf7\x0c\x06\x45\xb3\x6d\xc7\x7a\x69\x9f\xd2\x40\x64\xc2\xf6\x4d\x86\x9d\x01\x2d\xba\x15\x40\x74\x5c\x74\x84\xf5\xdd\xc0\xac\x30\xf0\x19\x75\x89\xc9\x3f\xff\xf7\xa5\x3e\xf0\x35\x75\x11\x2c\xfc\xd7\x34\x10\x82\x62\x46\xf1\x75\xd6\x3b\x7d\xf4\x21\x2a\xe3\xd6\xee\x2a\x57\x5f\xbf\x42\x95\x21\x15\x52\xae\x08\x56\x35\x67\xd7\x4f\xed\xaf\x23\x0e\x88\x95\xb4\x74\xb9\xaf\x4c\x87\xcb\xcc\xc0\x37\x2b\xfc\xb2\x1e\x7b\x48\xdf\x46\xd5\x1a\x8c\xfb\x8d\x89\x47\xfc\x55\xa9\x14\x74\x03\x71\x03\x5f\x34\x40\xf5\x27\x93\x2b\xd9\x4a\x5a\x75\x1c\xd7\xec\x45\x17\xf4\x30\xb2\xa0\x42\x96\x3c\xb7\xf8\xe8\x45\x2a\x2d\x90\x1e\x3c\x0c\x8d\x5b\xdb\x55\x39\x6e\x37\xe2\x72\x7c\x5e\xef\x7f\x6c\x1a\xcf\xf5\x06\xbe\xbd\x55\x4c\x2f\xe7\x79\x15\x93\xd1\x12\x98\x5b\x19\x7b\xd7\x27\x5d\xa9\x99\xe7\xa5\xc4\xa4\x43\x23\xf4\x8c\x86\x88\x9d\xf8\xbf\x4e\xba\x03\x5e\x34\x87\x0f\x11\xa4\x78\xa3\x7d\x04\xc8\x26\x12\x97\x38\x84\x6b\x24\x1a\x07\x94\x19\x04\xe6\x08\x04\x1e\x3a\xae\x98\xaa\x02\x1b\x47\x3e\xc0\xd2\x3d\xd7\x32\x14\x54\x72\x01\xef\x54\xc5\x0f\xfb\x52\x7f\xdd\x99\x44\x89\x7d\xff\x5e\x2b\x71\x05\xe1\xc1\x6f\xc4\xca\xfa\x03\x1e\xd7\xd4\x2a\x88\x6b\x49\x8d\x84\xf2\x03\x71\xcc\xe3\xab\x2e\x11\xf1\xb3\xd2\x20\x6b\x7e\x14\x38\xc1\xa7\xfb\x75\x08\x2d\x82\x78\x82\xe0\x0f\xe0\xe6\xcd\xfa\x74\xd3\x14\xf6\x70\xb1\x0e\xdb\xa3\x22\x74\x95\xa2\x10\xee\xf0\x43\x13\xfd\xf1\x47\x47\xa9\x1f\x57\x46\x56\x19\xfb\x02\x6d\xb4\x5e\x1b\xd8\xb4\xb7\xb5\x45\xb5\x2e\x5f\xff\xf2\xc3\x76\xc1\x18\x75\xb5\x8a\x44\x78\x2b\xf2\x5a\x7e\xd0\xd9\x21\xe0\x25\xf1\xd9\x32\x57\xdb\xfe\xc1\x6d\x9a\xc6\x44\x27\x72\xc8\x95\x0d\x1a\x30\x99\x79\xef\xdc\x70\x21\x68\xb3\x2c\xe2\x49\xb3\x38\x9f\xaf\xbf\xc2\xbe\xa7\x81\xd6\x80\x64\xbe\xf1\xb3\x6b\x2c\xbb\x1b\x9e\x6c\x8f\x78\x10\xe1\x6c\x3c\x7d\x5c\x87\x48\xbb\x26\x96\xce\xf3\xd1\xaf\xa5\x8f\xe9\xda\xf5\xbe\xb2\xa5\xcf\xae\x89\xc1\x07\x55\xc2\x04\xe6\xa6\x3f\xa0\xc4\x9a\x88\x09\x29\xb1\xec\x9c\x05\x83\x80\x70\x02\x33\x6d\xbe\x42\xc9\x0c\xf1\xe1\x6a\xca\xa6\x9e\x50\x73\x29\x8e\x03\xa3\x0a\xd7\x67\x84\x1b\x56\xa2\xf6\x24\x07\xe0\x2a\xef\x29\x40\x81\x54\x27\x51\xe4\x0d\xd1\xfa\xe1\xe0\x9c\x7b\x3e\xc3\xc8\x8f\xe1\x6a\xa3\x35\x1f\x5d\x4e\x57\x2d\xc6\xe0\x3a\x63\xed\x8b\x69\x28\xbe\x4f\x19\x75\x7d\xda\x63\x48\xfe\xa7\xfd\x9a\x31\x08\x75\xb1\x97\xe0\x22\xb3\x4f\xcb\x01\x73\x8d\xfa\x52\x2d\xc9\xf8\x3e\x70\xb0\x24\xb6\x27\xd4\xb4\xdf\xd9\x98\xd8\x0f\xd5\x49\x0c\x5e\xfe\x61\xdf\xbe\xea\x6f\xe6\x0b\x61\xfe\x48\xba\x2a\x6b\xd0\xa0\xb9\xa5\xdf\x3b\x5a\x7f\x89\x25\x71\xc3\x90\x9d\xd8\x11\xfd\xf2\x08\xe8\xd7\x4c\x93\x05\xbc\x33\xeb\xce\x6d\x62\xfa\x94\x23\x56\x20\x8b\xea\xe1\x21\x2d\x69\xdc\x36\xe2\x9f\x53\x9c\xac\x46\x9f\x24\x7a\xb4\x36\x12\x4b\x8e\x5b\xc7\x89\xab\x34\xa3\x0d\xe2\x1f\x33\xd3\x0f\x5f\xac\x31\x97\x9b\x61\x4d\xe3\x6d\x91\x48\x63\xcd\xa8\x4c\xd7\x12\xc1\x79\x9b\x32\x2d\x0a\x80\xc6\xe1\x75\x49\x0b\x42\x6b\x20\x28\x19\x3f\x3d\x94\x30\x67\xe0\x90\xdd\xf8\x9c\x30\x87\xce\xdf\xe8\x23\xd6\x24\xea\x7d\xfd\x33\xe9\x5a\xd6\xf3\x91\x45\x02\xe7\x0a\x68\xef\xdd\x6d\xb0\x27\x35\xe9\xd3\x04\xd2\x36\x65\xcc\x70\xfd\xc1\x25\x92\x24\xe5\x16\xd5\x47\x04\xae\x70\x0c\x32\x7e\xd2\x47\x43\xa7\x06\x72\xf3\x11\xfe\x4d\x7e\xf1\x4e\x52\x13\x9d\xd0\x3b\xf6\x60\x30\xc1\xa8\x13\xaf\x22\x96\xdc\xc3\xb7\xab\x97\x28\xed\x28\xb8\xb8\x56\x2f\x0d\x6a\x99\x9c\xfc\x98\xfd\xbb\x64\x87\x3a\x80\x65\xca\xa2\x92\x37\x5c\xf3\xb6\x48\xf3\xb3\x66\xf0\x99\x5b\xee\x3c\x6d\x7c\x6a\x56\x02\xcd\xbe\xf2\xe4\x3a\xcd\x02\xd0\x46\x31\x65\x92\xa3\x1b\xee\x4c\x37\xf2\xb7\xc7\x16\xef\x53\x57\x0e\x54\xda\xb8\xc9\xd0\xf8\x22\x3f\x79\x9d\x98\x01\x5f\xc9\xec\xfc\x97\x35\x5f\x6a\xe4\x9b\x15\xa8\x13\xdd\x9d\xdd\xdd\x95\x7e\x96\x2e\x4f\xfe\x3c\xaa\x7c\x72\x36\x1c\x48\x61\xcf\x44\xb5\x58\xb4\xec\x3f\xfa\x8a\xb3\xb9\x80\xb8\x70\xe4\xb4\xfb\x8e\x9e\x08\x2c\x04\x89\x36\x31\x77\xf9\x7e\x6d\x6b\xcd\xc5\x95\x63\xca\x00\x1f\x6f\x6b\x96\xb3\x93\x67\xcd\x9a\x2a\x86\x6a\x2d\xe0\x45\xd6\x6c\xe4\x97\x28\x73\xf2\x85\xd0\x9c\xaa\x02\xd5\xea\x80\x37\xf0\x25\x22\x5d\xf7\x87\xb5\x24\x8f\xc5\x44\xb0\xd1\x7e\x62\x85\xce\x5d\x94\xda\xd4\xfc\x37\xfd\xe0\xb8\x56\xd4\x32\xa7\x71\x85\x5e\xe7\x74\x67\x7e\x3a\xb7\x1f\x04\x19\x14\xba\xb3\xfd\x5b\xc5\x43\x59\x22\x74\x92\xe3\xdf\xf6\xc5\xe7\x55\xa6\x72\x29\xf7\x25\x15\xa0\x97\xe2\x2a\xe5\xe6\xc8\xfd\xd4\x8a\xc4\xb6\xa3\xe0\x65\x51\xdb\x16\x0e\x3f\x7d\xe7\x34\xa9\x29\xb3\x86\x86\x72\xd9\xa2\x01\xa2\x1d\x44\x5c\x1f\x11\x57\xed\x67\xff\x7c\x48\x5b\x8b\x48\xb3\x9d\x18\xf5\x63\x7c\xe2\x0e\x95\x01\xb8\xca\x73\xa1\x3b\x33\xfe\xf5\xc1\x29\x3a\x74\x74\xab\xa3\x8f\xb4\xe5\x40\x3a\xcc\xd1\xc0\xf7\xa2\x42\x93\x03\xa5\x6e\x3e\xa2\xb9\xf4\x46\x4f\x95\x07\xc0\xe7\x80\x8b\x51\x07\x83\x4a\x87\xe7\xb4\x8a\x7e\xf1\xe6\x79\xcb\xaf\x59\xb6\xbc\x70\xf3\x92\x38\xc5\xff\xe8\x36\x30\x3a\xa2\xe5\x32\x9f\x96\x75\x75\x69\x4e\x71\x34\x28\xfa\x31\x2c\xe2\xd9\x9c\x56\x5f\x23\xbb\x8a\x5c\x2f\x19\xf1\x67\x87\x2a\x6e\x36\xd7\xe4\x08\x27\x5c\x0b\xf0\xaa\xd2\xec\xb1\x10\x5e\xde\x7b\x08\x98\xb4\xd8\x76\xa3\x93\xd2\x28\xbc\x8c\x7a\x31\x1d\xc3\x26\xb7\xc7\x4f\x70\xc4\x49\x0d\xac\x41\x98\x23\xc7\xa1\xc6\x07\x1b\x9b\xc0\x16\xd4\x8b\xa7\xff\xc6\xa6\xab\xd2\x87\xb1\xc4\x30\xb6\xa8\x13\xe7\xc0\xe9\x6f\x88\x1c\x68\x53\x24\xc9\xf4\xbf\x36\xd4\x79\x8a\xfa\x57\x5b\x62\xde\x32\xdf\x1e\xa1\xd1\x0c\x88\x57\xa4\xae\x92\x25\xb8\x48\xf0\x69\xf2\x3e\x2d\xdb\x04\xf9\xbe\xde\x78\x86\xff\xaa\xf1\xcf\x3c\x89\x48\x94\x9f\xf4\xae\x15\x22\xb8\xd6\x90\x2d\x1c\x26\x7e\x7b\x12\xb0\xa8\x90\x8d\xaa\x15\xd0\xdd\x75\xe7\x06\x9c\x19\x0c\x67\xb6\x66\x05\xf3\xe0\xf6\x9d\x45\x83\xc1\xe7\x77\x62\x5f\x82\xdc\x3a\x3f\xae\x4f\x4d\xca\x62\x93\xc9\x3f\xbd\x2e\xfb\x53\x9b\x72\xb8\x48\xd8\xb1\x75\xb0\x0c\x48\x28\xf0\x6a\xc4\x24\x34\xe0\xd9\xf7\xd3\xd3\x75\xb4\x0c\x4b\x10\x03\xed\x07\x25\x6e\x1f\xa7\x65\x4c\xd7\xbe\xaf\xe9\x07\xd0\xc0\x8a\xc7\x64\xd9\x87\xcf\xa4\xaf\x9e\xb4\x11\xf6\x69\x1e\x91\xd8\x9e\xff\x96\x37\x75\x60\x44\xd4\x29\x60\x16\x0f\xc2\xfb\x9c\x81\x72\xce\x3e\xdf\x22\xf9\x5c\x37\xaf\xdb\x78\x62\xfd\x05\xe0\xe4\xb1\x12\x5f\xd2\xc7\x5f\x27\xfb\xdd\x99\x03\x00\xe4\x8a\xa7\x99\xee\xdc\x84\x77\xcf\x07\xc3\x4a\xce\xb2\x1c\x50\xd3\xa9\x1f\xab\x03\x22\xad\xb4\xc4\x67\xbc\x41\x92\x13\x02\xf1\x43\x8c\x0d\x43\xd2\x67\x18\xd7\x89\x90\x55\xc9\xd0\x67\xce\x07\x0d\xb2\x28\x5b\xb3\xd2\x15\x66\xbe\xa4\xd1\x5f\xb7\xf4\x9a\xf0\x4f\xeb\xc4\x4f\xb4\x90\xcf\x23\xc5\x8a\x3b\xcf\x93\x5d\x8c\xd8\x29\x0f\xe9\x9f\xae\xa2\xb0\x5b\x27\x8c\xba\x42\xc9\x3a\x11\x64\x15\x5e\xaa\xf9\xab\x63\x47\x3b\x10\xd1\xfa\xcc\x04\x92\x1c\x65\xce\x12\x2b\x74\x67\xff\x7c\xb8\xa5\xc7\x02\x2e\x3a\x53\x78\xa6\xc6\x53\x6f\x9d\x29\x96\x87\x99\x9f\x75\xa4\xac\x97\x1c\xe2\xc7\xb4\xa7\x5c\x5d\xfa\x26\x31\x1f\xbb\xa4\x81\xeb\x6a\x72\xfb\x8d\x6b\x93\x16\xd7\xc6\xcd\x3e\x5f\x8d\x1d\x6a\xab\x64\x13\x47\xaa\xaf\xa5\xfb\xd8\x43\xcf\x6b\xe7\x51\x2c\x72\xf9\x43\xad\xac\x15\x0f\x75\x09\xee\xf4\x6a\xa8\xc6\xd7\x9f\x83\x67\x6a\x6a\x0d\xc4\xf3\x12\x20\x69\xee\x73\x0f\x68\x74\x6a\x3e\x0d\x6c\x15\x09\xeb\xcc\x4b\xe9\x33\x60\x63\x8d\xf2\x6a\xfc\x75\xcb\x30\x50\x33\x72\x76\x66\x4c\x55\xbb\x64\x05\x00\xed\xba\x90\x19\x95\xf9\xdd\x0b\x83\x75\xa3\xd6\xf9\xbc\x3f\x9e\x34\x0c\x60\x06\xd2\xac\x87\x89\x69\xda\x38\xff\x98\xdc\x40\xa1\x3b\xf7\xc9\x03\xaa\x7f\x5a\x1d\x10\xb3\x6a\x43\x47\x66\x8b\x29\xcf\x20\x12\xa5\x92\xfa\xb6\x51\x60\xa7\xcd\xa8\xab\x6b\x50\x75\x1b\xe3\xee\x4e\x9f\x08\xe4\x96\x59\x23\xb1\x12\xae\xa8\x69\x1e\x5f\xc2\xf1\xa2\x7a\x44\x5f\x15\x7c\xf0\x9a\x9a\x4d\x65\x49\xf9\x19\x8d\xdf\x51\x41\x76\x49\xdc\x8a\x6d\xc3\x7a\xce\x77\x42\x94\x21\x77\x62\x40\x6a\x1e\xc3\x87\xa2\x5b\x1e\x94\xe5\x37\xb1\xc4\xc0\xef\xc7\xd3\x7b\x58\xc5\x73\x77\xfa\xf0\x53\x4f\x00\x4c\x0a\x62\xc8\xb6\xb1\xd8\x62\xff\x60\xbf\x86\x13\xa2\x0e\x72\x63\xc2\xfa\xa2\xb5\x4a\xa5\xad\x9d\xef\x5d\xec\xb3\x89\x94\xb8\x98\x9e\xaa\xca\xdb\x39\xa2\xc6\x10\x35\xda\x89\x6d\xa0\x0d\xf9\xbb\xc7\x87\x80\xe7\xc1\x69\x45\xe2\x76\x9c\x3b\x36\xa9\x34\x7d\x12\x4f\x34\xb2\xd3\x07\x01\x01\x54\x1a\x08\xee\x49\xf8\x0e\x13\xe7\x99\x38\xa8\x4c\xa4\xb7\x69\xb6\xf2\xf8\x28\x2d\x20\x07\xcc\xaf\xe4\x3d\x9c\x28\xeb\xe7\x26\x01\xd1\xe9\x3a\x15\x93\x82\x81\x6d\xe7\x83\x39\x95\x57\x8d\xfe\xec\xbc\xcd\x22\xc0\x2c\xa7\x01\x5f\xcf\x54\x0e\x69\x76\x52\xc8\x0e\xa4\x7a\xef\x5b\xa9\x1d\x89\x23\x46\xd2\xc6\xac\x93\x9a\xcd\x0f\xa9\x56\x11\xb1\x69\x5d\x60\x3f\xe5\xb3\x38\xfa\x9a\x48\xb5\xed\x53\x27\xb5\xcf\x6a\xe3\x78\xa6\xce\x91\xe9\x42\x7c\x66\x9b\xa8\x66\xde\xe9\xd5\xd4\xed\x47\xa1\x3d\xa6\x1c\x64\xee\x7d\x7c\x10\xa8\xf9\x98\x83\x6c\xfe\xe9\xe6\x9f\x92\xb6\x86\xd4\x92\x8a\xa7\xd9\xf9\x5b\x45\x14\x5a\x44\xdc\xb2\x66\xd0\x6f\xdc\xf7\xae\xa6\x47\x8f\x5c\x6c\xcb\x3e\x3b\xd3\xfd\x50\xfa\xc4\x4e\x69\x9d\x2c\xb7\x5c\x6d\x15\xc0\xcc\x24\x35\x6c\x13\x21\x50\x6c\xbc\x98\xbb\x18\x0e\xb6\x1c\x31\xf2\x49\x97\xb5\x7b\x4b\x20\xc7\xf0\x96\x33\xfc\xf9\x83\xaa\x0e\xf3\x51\x55\x08\x24\x7d\xe6\x71\x4d\x5b\x28\x4a\xd0\x4c\xda\x2a\xbd\xce\x34\x1d\x13\x8c\xea\x92\x45\x17\x3e\xab\x68\x8d\xae\xcf\xd5\xca\xa7\x6e\xb8\xb0\x87\xf2\x34\x51\xb8\xcd\xfc\x71\x7d\xba\xaa\xa3\xa6\x19\xd4\x90\x6b\xc6\x57\x3d\x33\x67\xae\xc8\xef\xb7\x52\x56\x85\x62\x4b\x33\x16\x0d\x00\xdf\x57\x68\x74\xb4\xdc\x34\x08\x46\x28\x22\x08\x0a\x99\x7b\x5f\x06\x60\x1f\xe2\x22\xd7\x24\x02\x17\x69\xf4\x07\xaa\x20\x89\x46\x5e\x94\x06\xef\x5b\xae\x5b\x84\x30\x52\x93\x49\xf7\xbd\x05\xca\x02\x90\xa1\x7c\x21\xfc\xd8\x13\x63\xb5\xfa\xd0\x34\x7b\x14\xb2\x3a\xf4\xa2\x68\x22\x38\x96\x32\x59\x48\x6d\x5c\xa2\x01\x2f\xa8\x53\x8c\x4b\xcf\xcd\x9b\x9b\x4b\x4f\x11\x27\xc2\x7f\xbe\x4d\xe9\x3d\xf8\x10\x88\x50\x7a\x0a\x08\x5e\xc0\x39\x26\x30\x94\x2d\x52\xea\x88\x0d\xd0\x7f\x8e\x1c\xa1\xd5\x49\xc5\x22\x87\x31\x0b\xd2\xfa\x6d\x5d\x31\x23\x94\x37\xca\xd1\xe3\xfc\x8f\x5b\x20\xc3\xb2\x23\xa8\x63\x57\x1a\x7d\x1d\xb7\x35\xf4\xa2\xe7\x51\x93\x88\x5d\x62\x4d\x00\x12\x7e\x7e\xad\x86\xa1\x42\xc2\xc7\xa9\x96\x9a\x27\x78\xa3\x9a\x5a\xc5\x29\x12\x7c\xfb\x1b\x60\x89\xc9\x07\x42\x51\xa7\x78\x83\xdc\x74\x58\x48\x46\x85\x4c\xc7\x55\x29\x2d\x4a\x2f\x90\x5f\x37\xbc\x33\xfd\xfb\xc5\x05\x96\x9e\x8c\x09\x86\xab\xd7\xcb\xba\x87\x20\x2b\x4b\x2c\x8c\xf1\xc8\x22\x6d\x22\x82\x3c\x54\x0d\xec\x34\x80\xd8\xb8\xae\x4d\x09\x42\x53\xf0\x1f\x72\xfe\x0a\xcd\x95\x9f\xfa\x92\xdb\x00\xf9\x02\xf3\x72\xe2\x0b\xcd\x90\x8b\xc7\x70\x4b\x98\x7e\x22\x89\x6c\x40\xb8\xb7\xbf\x98\x8e\xdf\x64\x23\x8b\xd4\xa9\xe7\x53\x29\x66\x18\x8e\x19\x25\x8b\xee\x80\x6b\x75\x07\x3c\x2e\x8f\x9a\x30\x02\x26\xfe\xab\xaf\xbe\x82\xff\xe5\x58\x4b\xf9\x49\xeb\x12\xad\x05\x73\x5d\xe2\xa7\x95\x72\xc3\x1f\xb4\x37\xd9\xd8\x9b\x81\xa0\xb9\x70\xb8\xc7\x67\x4f\x34\x6d\xce\x02\xb1\x76\xe0\xa3\x87\x57\x2e\xd5\x5a\x19\xee\xfb\xe6\x0b\x92\x8c\xaa\xe0\xef\xaa\xa8\x26\x15\xb8\x5e\x1b\xe3\xde\x00\x44\xab\x56\x7e\x28\x76\x8d\xd5\x7c\xbb\x6a\x98\x71\x5f\x54\x99\xc9\xf7\x4c\x4a\xae\xec\xb4\xe9\x7c\xd8\x72\xbd\x66\x1e\x2b\xb8\x4e\x12\xe8\x37\x61\x3e\xc8\x84\xca\xf5\xe7\x29\x25\xc1\x5c\x05\xbb\xcf\xcc\xac\xfe\xca\x2d\xda\x6d\x8d\xc7\x1d\xaf\x9e\x18\x96\x1a\xe7\x06\x76\xec\xd4\x6a\x5c\x6c\x40\xb9\x6d\x0b\xb3\xfc\x64\xee\x91\x72\xfb\xc1\x41\x2a\xd6\xb1\x18\x17\x98\xfd\xe9\xba\x1e\x98\xff\x38\xd1\x36\xfb\xc5\x20\x5d\xd7\xb8\xd3\xc6\x9e\xe7\x62\x4f\x00\x7d\xde\xd9\xa7\x85\x58\x56\x46\x2e\xaf\xea\xe4\x89\xbe\xeb\x01\xe0\x46\x49\xea\x02\x7b\x60\x4c\x5b\xa6\x92\x85\x3b\x9e\x7b\x62\x66\xce\xbd\x0f\x88\xee\x4b\x1e\x9c\x5c\x53\x1e\xef\xa3\xc9\x6a\x30\x2c\x8c\x1a\xc5\xb5\xed\x7e\x7c\x30\x14\xd4\x52\xda\xb0\x0f\x0b\xc4\x7e\x41\xbc\x31\xda\x2c\x7c\x90\x9b\x3e\x5b\x5b\xd3\xf1\x15\x9c\x26\xfc\xf2\xd4\xd4\x74\xc6\xac\x12\x57\x6c\x55\xb2\x3f\x7c\x6f\x80\xcc\x6e\xac\x8c\xe3\x75\xf0\x15\x73\x86\x81\x1d\xaa\x6d\x2b\x95\x0d\x63\xd2\x6c\xdd\x07\xda\x11\x3b\x12\x59\x9f\x19\xbb\x46\x0e\x05\x59\xb4\x61\xd2\xb8\xeb\xc8\x7e\xf4\x3d\x38\xd7\xb7\x49\x29\x6a\x6a\xbf\x1b\x0e\x83\x2f\x9b\x78\x3c\x9b\xf2\x47\x7c\xf2\xc1\x64\x87\x4d\xeb\x28\x55\x9f\x9f\x33\xf2\x7c\x98\xca\xf9\x28\x79\x6d\xbb\xce\x5c\xb2\x08\x92\x60\x68\x7e\x79\x9f\xdd\xa2\x0a\x56\xa9\xf9\xdb\x9d\x59\x32\x3d\xf5\xe4\x7d\xc6\x7d\xb1\xc2\xdf\x0c\xd3\x48\x56\xc4\x09\x6c\x1f\xb9\x98\x06\x9e\xdd\x90\x6f\x6d\xe6\x68\x25\x41\x18\x34\x7b\x98\x1d\x2f\x25\x07\xdf\xf3\x92\x83\xff\xf2\x04\x88\xc4\xb6\x89\xd9\x48\x18\xf8\x93\x74\xe1\xb0\xa8\xf4\x47\x4c\x48\x58\x18\x6f\x3f\xad\x69\x82\x70\xdb\xdd\x28\x93\xcb\x4e\xf0\x15\x60\x36\x64\x52\xe9\xa1\x9d\x1d\xb2\x4e\xcc\x98\x2c\xe2\x11\x5b\x2c\xac\xc4\xe3\xfd\xd5\xe8\xa1\xcd\xc9\x33\xba\x11\xe3\x37\xe9\x33\xb3\x1a\xbf\x9d\x31\x00\xf6\xfa\x5e\x03\xb4\xfb\x59\x08\x97\xf7\x87\xf5\x86\x58\xb0\xff\xd7\x24\x38\xfd\x63\x7e\xa5\x46\x19\x07\x78\xae\x7a\x0f\xea\x52\x78\x35\x61\xb1\x90\x20\x14\xc8\x21\x51\x17\x5a\x2c\x28\xe7\x7d\x86\xa2\x52\xa5\x2a\xca\xed\x3b\xb6\xeb\x62\x79\x1e\x1f\xda\x8a\xf7\x31\xf2\xb8\xf4\xac\x8e\x89\xef\x2f\x6a\xf0\x0d\xda\xc9\x45\x20\x79\x94\xb9\x67\x95\x66\xa3\xc5\x61\x4d\x72\x97\x78\xef\x5e\x99\x31\x63\xf7\x59\xe3\x77\x7b\x74\xf7\x7c\x1f\x33\x07\x5b\x04\x31\x12\xff\xbb\xf0\x88\xa6\x8e\x18\x2f\xb9\xf9\x63\xc5\x8f\x02\x1b\xdd\xc0\x17\x36\xba\x3f\xec\x35\x00\xce\x76\x1b\xd1\x73\xfb\xd7\x23\xe9\x5f\x15\x5d\xc0\x9a\x27\x6c\x82\x15\x0a\x71\xe1\x5c\x51\x7a\x2c\xa6\x09\x56\x72\x90\x26\xb2\x6b\x22\x57\x78\xbf\xb5\x6c\x03\x65\xb1\x98\x04\x88\xf8\xf2\x97\x3b\xd2\x67\xaa\xc4\xb8\xd7\x9b\xd4\xb9\x8f\xba\xc6\x59\xc7\xf5\xad\x6a\x6c\x09\x6f\x0c\x57\x7e\xac\xbe\x59\x81\x0c\xe7\x87\xd3\x85\x8e\x83\xec\x28\x21\x43\x41\xd2\x5e\xcf\xf0\x33\x96\x9f\x67\xe7\x6f\x46\x7e\x93\x9c\x7c\x77\x6e\xce\xb1\x09\xda\x69\x67\x55\xaf\x42\x18\xee\xc9\x06\xe6\xd5\x67\x06\xa6\x8b\xbd\x28\xbf\x5f\x71\x0c\x92\x27\x4c\x9b\x03\xe5\xd5\x87\xbc\x77\x82\xa6\x41\x26\xcc\x08\x9b\x35\x81\x73\x37\xbd\x9d\x5e\xeb\x49\x05\xc2\x9e\x44\x00\xb2\xd7\x9d\x4c\x42\x42\x8f\x34\xee\x37\xce\x97\xd7\xc1\x0d\x5c\xc9\xc8\x59\xbe\x59\x03\x87\x9a\x26\x5f\xbc\xc9\xfc\x75\x5b\x4e\x45\xcd\x32\x22\x12\xe6\xf6\x2a\x00\x14\x79\x51\x85\x29\x19\xda\xaf\x6e\x84\x96\x2a\x62\x4a\x28\xd6\xc9\xbf\x1d\x25\x36\x85\x51\x58\x34\xa5\x92\x63\xf8\xc2\x4a\xf1\x87\x0b\x20\x29\x23\xbb\xf8\x89\xe1\x90\x86\x1b\x85\x45\xe2\x06\x22\x6a\xfc\x51\x09\x7a\x16\x31\x84\x52\xfe\xfa\x51\xc1\x5f\x5f\x82\x9c\x66\x27\x9e\xec\x73\xcb\xf4\x2c\x8b\xcb\xd4\x55\x7a\x46\xd9\x1f\xcd\x1f\x0c\x87\x01\xbe\xb4\x67\xcf\xdd\xa3\xfc\xdd\xca\x24\x95\x04\x0c\xb6\x15\x0c\x0a\x93\x55\xf5\xa6\x81\x49\xf1\xca\xdf\x4f\x74\x14\x72\x13\xb5\x47\x5c\x8e\xaa\xf5\x44\x8c\xe5\xd6\xa3\xe2\x30\x2e\xe5\xa6\x08\xac\xf9\xd3\x5f\x9a\x13\xaf\x8d\x03\x0e\xc4\x8c\xa2\xa4\xf1\x41\x8a\xc8\xe5\xd3\x4f\x31\x41\x9d\xf9\x06\xf0\xf8\x40\x8c\x11\xb1\x62\xfb\xe9\x62\x11\xd9\x96\x2e\x2e\x34\x9d\xe1\xbb\xb4\x89\x4e\x47\xe0\xd4\xb0\x04\x30\x64\xb6\xb2\xc1\xcd\x67\xb9\x10\x9a\x07\x44\x45\xb4\xb0\x75\x01\x14\xfb\x7b\xe4\x65\xb9\x52\x5f\x1d\x20\x86\xf3\x85\xf0\xf7\x7b\x35\x15\x0b\xde\x93\xf4\x48\x14\xfa\xd1\x9b\x60\x2b\x50\x91\xf5\x4b\x78\x73\xdb\x30\xed\xb2\x78\xf1\x57\xcd\xac\x4f\xa6\x25\x2e\xb2\x62\xb2\xc6\xd6\x15\xa2\xec\xbe\xd1\xac\x20\xae\xa4\xa2\x4a\xfc\x5b\x8e\xc3\x8c\x6b\xdb\x58\xda\x58\xd5\x4e\x42\xd1\x71\x86\x6a\x35\x49\x68\xbf\x5b\x13\xd9\x29\x33\x94\xcc\xb7\xf3\xfd\x53\xe9\xdb\xc3\x4c\x98\xc8\x1e\x9b\xaa\x50\x29\xb1\xd2\x56\x78\xc3\x63\x60\x20\x4a\x3b\x31\xab\xd0\xa8\x44\x2b\x74\x67\x2f\x3f\x2a\x5e\xcc\x35\x96\x13\xb8\x16\x84\x16\x87\xdf\xd7\x5c\x3d\x63\x79\x38\xbe\x44\x92\x15\xf1\xf8\x67\x84\x05\xd9\xfc\x46\xbe\x10\x4e\x9c\x9d\x68\xa4\x97\xa9\xae\xe3\xd8\x9d\x5b\xa4\xf1\x70\x8a\x34\xd6\x61\x31\x7e\x3b\x7b\x94\x16\xf3\x48\x47\xac\x1c\x2a\xc3\xf1\xf0\x6d\xa3\x9b\xd3\x50\x22\xf2\x2e\x99\xec\x6b\x34\x1f\x43\x8b\xd8\xd8\x71\x50\x7c\xdc\x47\x6e\x1c\x0c\x17\xf2\x31\x5d\x29\x77\xcd\x19\xed\x48\x8b\x9d\x9c\x18\xfb\xdc\xaf\x41\xe5\x2d\xe4\xa3\xc4\xc1\xea\x80\x7a\x73\x25\x6a\xdb\xb4\x53\xbc\x39\xe3\x7f\xdf\x56\xb5\x8e\x5f\x21\xcc\x6f\xe4\x3d\xb2\x26\x5f\x08\x3f\x3f\x48\x8c\x09\x09\x13\xda\x70\xd9\x41\x2b\x60\x55\xe4\x79\xd8\x8b\x61\x3a\xe7\x9e\x1e\x06\x23\x9d\x27\xbf\x6b\xf4\x8f\x3e\xa7\x2d\x55\x85\xfe\x9e\xa7\xd8\x80\xb9\xdc\x19\xc8\xc4\x96\x6c\x44\xde\x00\x2f\xbe\x20\x4d\xac\x49\x52\x79\x94\xc6\xa7\x6b\x48\x1f\x86\x56\xcb\x82\x9a\x17\x6a\xdf\xe8\x0d\x1b\xa0\x58\x78\x22\x3b\xe5\x15\x6d\x5c\x5a\x13\x87\x44\x50\x5d\x3e\xfb\x41\x72\x2c\x2c\xdc\x44\xd7\xc8\x58\x35\x40\x59\x60\xa4\x8b\xf2\x55\xa4\xd1\x7b\xcb\x20\x80\x4b\xb6\x4d\x2a\x44\x27\x87\x16\x25\xdf\xd7\xe5\xfa\xe8\x5c\xc4\x61\x47\xf2\xf3\x83\x62\xd3\xbd\xce\xfc\xef\x7e\xf5\x18\xc1\x9a\x34\x7a\x16\x23\x0f\xaa\xba\x11\xbb\x98\xf1\x6d\x63\xa6\x2b\x04\x82\x43\xb3\x66\x4c\x8b\xaa\xe2\xef\x1d\xd2\xac\x86\x88\xe5\x46\xf7\x54\x72\xd7\x32\xd7\x7e\xa0\x89\xb2\x62\x97\x78\x9a\x4c\x7c\xf6\xa5\xf5\xda\x2a\x1c\xd7\x2a\x8c\xda\xb4\x4c\x3c\x5f\x2c\xcb\x97\xf4\x9a\xf3\xff\xe6\x88\x11\x75\xe8\xb0\x3d\x18\xf5\xbc\x46\x61\x41\x55\xc4\x7c\x04\xde\xa1\xb1\x41\x83\xf6\x0a\x9b\x31\x59\x48\x9e\x73\x6d\x32\xa8\xb3\x3d\x9a\x2f\x84\x13\x46\xea\xf2\x19\x5c\x66\x4c\x00\x81\x5f\x7a\x22\x7d\xa3\xa7\x4e\x69\x15\xa0\x85\xf0\xf4\x00\x95\x48\xdb\xdb\x66\xa5\xb2\xd7\xca\x63\xe9\xcf\x58\x26\x48\x03\x57\x66\x3e\xb4\xfa\x83\x64\xee\xe4\x0b\xe1\xc3\x6f\xc7\x70\x1f\xa7\xc6\x88\xbc\x22\xd9\x2f\x6b\x86\x8e\xb8\x23\x16\xc5\x11\xe8\xf2\xad\x49\x0a\xb5\x02\x27\x55\x44\x96\x6c\xd1\x1c\x14\x50\xd5\x4b\xe9\xb7\xfe\x6c\xbf\x6e\x60\x41\xa2\x74\x94\x28\x32\xef\x1a\x0d\xb0\xb2\xb3\xb8\x8d\x75\xee\xde\xa5\x1a\xc7\xa4\x56\x63\xb4\x8e\xec\x18\x32\xfb\xcf\x37\x49\xc0\x5d\xa3\x4a\xc1\xc6\xa9\xff\x38\xf1\x19\x62\x25\x3d\xca\x88\x00\x31\xfc\xd2\xd0\xd4\x7e\xb8\xfb\x8a\x74\xc3\x88\x82\xe1\xb9\x47\xc6\xe8\xc7\xad\xea\x23\xaf\x22\xc9\xd0\xf1\x81\xbb\x75\xa6\xa6\x62\x58\xc1\x8e\xe8\x02\xc2\xe3\x73\x35\x33\xbc\xa8\xc0\xe4\x29\xd7\xf8\x3d\x80\xc9\xc4\x6d\x69\xf4\xe7\xf9\x9d\xd0\xd2\x55\x3a\xd4\xe6\x6e\x9a\xdd\x13\x3d\x34\xce\x0f\x17\xdf\x31\x02\x9a\xd4\xea\x50\xee\x0d\x47\x44\x0f\x3e\xab\x2d\xc1\x0d\x86\x5f\x38\x94\xbc\xb4\x22\x4a\x21\xf4\xff\xb8\x11\xec\x2d\x6c\x54\xa4\x8c\xcf\x17\xc3\x91\xbd\x93\x72\x9c\x96\x20\xf8\xbc\x57\xfb\x85\xa0\x9b\xaf\x63\xd7\xaf\x40\xc9\xdc\xdf\xbe\xab\x89\xc6\x21\xe6\x13\x60\x71\x13\xfe\xb9\x26\xcc\xf0\x3e\x2d\xcc\x96\x74\xd8\xea\x8d\xcf\x27\xbf\xd7\xc4\x55\x30\xf8\xe9\xfb\xca\xf9\xa0\x08\x12\xf3\xea\x65\x95\x31\xda\xb5\xf3\x2b\x28\x66\xc4\xa9\x0a\xa6\xef\x5c\xb5\x4c\x2b\x05\xb6\x9d\x2f\x71\xe3\xc0\xa8\xe6\x99\xfd\x4a\xba\x6e\x6f\x20\xb7\x8a\xb1\xd7\xec\xf1\x9c\x3d\x50\xd7\xc6\xa4\x33\xda\x62\x6c\x65\x76\x9b\x8e\x75\x42\x16\xa7\x3e\xc6\x42\x52\xed\x86\x56\x31\xfa\x3e\x65\x2e\x6e\x48\xc9\xb0\xa7\x34\xf0\xbb\x2d\xd4\x0f\xe2\x3e\x6c\x99\x5e\x1b\x5a\x76\x23\xa9\x36\x47\x2f\xd5\x94\x36\x78\x7d\x28\xad\xfc\x33\x03\x47\xe9\xc2\xde\x6a\x35\x16\x7f\xb8\xef\xae\x18\xa6\x74\x26\x69\x0a\x6f\xfe\xf1\x7d\xb1\x94\x13\xc3\x38\x0a\x41\x43\x4f\x82\x97\x80\xb9\xc0\x51\xf6\xd2\xe7\x75\xd4\x99\x5f\x91\x11\xeb\x53\x13\x5a\xf4\x7b\xef\x27\x2d\xf3\xdf\x04\x24\x27\x7f\x63\x50\xc3\x4c\xf8\xc8\x35\x9d\x86\xaf\x83\xa6\xdf\x33\x49\x54\x31\x0b\xa2\xee\x5b\xda\x62\x04\x59\x75\x62\xc6\xfe\x2c\x4f\x1f\x48\xce\x50\x85\x38\xe0\x20\x7c\x78\xf2\x72\xad\x95\xec\xc0\x9e\xdf\x18\xef\xf5\xd8\x7d\x6d\xbb\x23\x5d\xe7\xca\xc5\x9b\x43\x3d\x5f\x4c\x31\x68\x20\x4d\x95\x8d\x0d\x77\xf6\xc4\xfc\x12\x33\xe3\x33\x3b\xb5\xd3\x51\x61\x18\x09\x1f\x4c\xae\x5e\x32\x1e\xb8\xe4\x97\x50\x91\x09\x77\xc1\x55\x4f\x8a\x6b\x32\x1f\x75\x21\xd4\xa4\xac\x91\xad\x9e\x7b\x01\xd8\xee\x39\x5c\xdd\x20\x41\x87\x67\x7e\xbb\x64\x60\xaa\x61\x10\xb4\xd6\xc7\xee\x54\x1d\x4e\x07\x22\x7c\x32\xb5\xeb\x81\xa1\x69\x6e\x9c\x1d\xc8\x8c\xfd\xcc\x09\x28\xb4\x56\x97\x4b\x9c\x1d\x77\x00\x3e\x04\x57\x0e\xe3\xdc\xbb\xdc\xd8\x76\x30\xac\x0c\x84\x18\x56\x0c\xde\x16\xac\x87\xfc\x72\xe4\x13\x04\x01\x5d\xb9\x81\xbb\x93\xf6\xd6\xab\x92\x66\x51\x76\x8d\xed\x5a\x63\xd4\xc4\x09\xcb\x73\x70\x7f\x08\xb5\xe2\x23\xa2\xc7\xb6\xab\x1e\xbd\xda\x81\x6d\x0b\x21\x68\xa7\x12\xee\x17\x75\xf5\xe4\xe9\xf9\x42\x68\xf4\x51\x8f\x08\x5b\xc4\x13\x88\x8b\xad\x4b\x87\x82\x77\xe1\x10\xbb\x91\x67\x01\x7f\xc3\x7f\x7d\x0e\xa8\x02\x0a\xa0\xb3\x4d\x7c\xa1\x61\xff\xe1\x99\x26\x0f\x88\x18\x92\xf9\xac\xaf\x9e\x62\x6c\xf5\xd8\x9d\x19\x70\x40\xf7\x35\xaf\x05\x45\x5b\xc8\xc8\xcb\x0e\xb6\xcf\xc2\x8b\xb4\xab\xc3\x30\xf2\xa8\xcb\x59\x96\xbc\x3c\x7a\xe5\xfd\x74\xe8\xaa\x20\x52\xae\xf8\x79\xe4\x55\x8a\x41\x82\x6d\x13\xfa\xc1\x3b\x44\x46\xe8\x64\xc4\xc7\x1c\x4e\x10\xb5\xde\xbb\xc0\x7e\x98\x06\xbc\x76\x6b\x19\xa6\xad\x9a\xb1\x15\x4f\x8a\x63\xe0\xe4\x07\x3b\x75\x72\x99\xe9\x53\x16\xfb\x39\x77\x3e\xa7\x4a\x94\x06\xef\xdf\x54\x75\x30\xea\xa4\x9c\x0d\x0b\xef\x07\xde\x59\xe5\xae\x04\xf6\x95\x0e\xf1\x7c\x4a\xab\xf9\x42\x58\xd1\x84\xcc\x4a\x8c\x3a\xb1\xd5\x77\x66\x83\x18\xcb\xdd\x88\x88\x90\x0e\xdb\xa5\xed\xd4\x48\x11\x33\x65\x22\xf2\xe3\x23\xa2\xd9\xf6\x3b\x69\xbe\x13\xe3\xe8\xa7\x1f\xbd\x29\x5d\x59\xd4\x89\x97\x47\xd1\xff\x97\xec\xd5\xe3\x2b\x2f\xd1\x02\x2e\x97\x81\xe0\x8d\x93\x9a\xf8\xe4\x4e\xe9\x13\x1f\xe6\x37\x7a\x54\x9d\xbf\xea\x89\xbe\xc9\x19\x98\x18\x7d\xe9\xdb\xe6\x02\x2b\xf9\xb2\xc8\x83\x85\x6e\xa3\xcf\x52\x20\x15\x8f\xcd\x6a\x2c\x60\x73\xff\xcb\x9a\x8a\x0e\xb2\xb1\xe7\x13\x97\x20\x57\x71\x72\x8d\xbb\x9e\x52\xe4\x49\x0c\x97\xdf\xe7\xbe\x0b\xa8\xcd\x56\x4a\xff\x31\x43\xcf\xea\x60\x7a\xc2\xe9\x3c\x62\x9a\x6f\x4e\x82\x6a\xfe\x1d\x54\x88\x7c\x84\xe1\x62\x68\xde\x8a\x58\x8d\xe3\xfd\xdb\x6d\xa8\x95\xcf\xdb\x15\xb1\x80\xf9\x5e\x2d\xd9\x07\x55\x68\x3d\xfa\x93\x01\x87\xd3\xf7\xa5\x44\x2c\xec\x09\xff\x95\x2f\x6b\xe6\x56\xdc\xe5\x4d\xbe\xca\x2d\xc0\x15\xc2\x46\x65\xcc\x4a\x98\x23\xb9\xb3\xe5\xe7\xa5\x5b\xa4\x84\x7d\x16\xc2\xfb\x5d\x7d\xc2\x50\xc3\x4c\xd4\xd7\x87\x26\x8c\x04\x5f\xaa\xb3\x29\xb4\xe6\x26\x0e\x69\x52\xe6\xb3\x12\x04\x22\xf0\x90\xc4\x2c\xa8\x09\x42\xd9\x89\xe3\xfa\x71\xc5\x41\x82\xcd\x98\xb0\x52\xd4\xa9\xdc\x81\x9c\xf8\x48\x8a\x48\x66\x66\x9c\x18\x96\x1c\xc0\x62\x2d\xe5\xc6\xbe\x4d\x9f\xfb\x0a\x77\x29\x69\xed\x19\xb6\xa4\xc6\x69\x81\xe7\x29\x7e\xfb\xb3\xf7\xa9\xa0\xd8\xda\x3e\x9d\x3b\x50\x1c\x7a\x4e\xc3\x12\x63\x64\xe2\x52\x10\xcb\x7f\xcc\x7c\x66\xb0\xea\x5b\xbd\xa8\xfb\x12\x0c\x89\xe9\x23\xd3\x8f\xb0\x8a\x1b\x9e\xcc\xaf\x6f\xef\x4a\x57\x15\x15\xea\x14\x85\x6f\xbb\x2a\x13\xbf\xfc\xb8\xb8\x77\xf3\xa5\xe2\x3b\x17\xa8\xea\x0d\x5d\x20\x2c\x9c\xc7\x0d\xf1\xbb\x9e\x32\xb4\xa0\x52\xa1\xd4\xa7\x01\x6f\xe0\xc2\x27\x81\xc0\x4e\x05\x39\x35\xcf\xc7\x1c\x40\x9b\x9b\xd0\xae\xee\x4b\x47\x90\xc8\x00\x67\xbe\xb4\x7b\xa8\xfc\x46\x96\x10\xed\xb4\xa5\x1a\x72\x6e\xc1\xfb\x6a\xdc\x48\x2b\x50\x0a\x94\x5d\xa6\x15\x92\x5d\xc4\x93\x0d\x5e\x3a\x29\x6d\xd8\x27\xc2\x8f\x24\xbd\x19\x13\xf6\xe8\xaa\x39\x76\xe0\x14\x83\x9e\x2a\xc8\x43\xc2\xc6\x30\x7f\x8d\xcb\x31\x95\xfc\xe3\xea\xb1\x62\xe1\x7b\x5a\xf3\xe5\x76\xd0\x46\xb2\x3d\xcc\x7c\xeb\x4d\xd1\xb1\x2d\xeb\xe4\x3a\xda\x72\x82\x70\x65\x8b\xf6\xf8\xa2\x53\xe6\x96\xa5\x72\xf4\x87\xed\x7a\xfd\x68\x23\x25\x02\xb5\xa3\xcf\xa5\xfa\xbf\xe5\x9c\x03\xb1\x61\x4f\xa2\x77\xee\xd3\xac\x49\x7a\x1b\x01\x31\xa5\xdc\xcd\x6f\x43\x37\x09\x47\x2a\x64\xbd\x34\x42\x2f\x8c\x4d\x25\x77\x95\x99\xf3\x92\xe6\xe1\x56\x41\xc2\x7d\xd0\xf8\xc3\x53\x4d\x7b\x41\x6e\xca\x99\x94\xbd\xe7\xae\xd0\x2e\x29\x57\x65\x12\x89\x71\x95\xd6\x82\xd0\x52\x09\xbb\x16\xb0\x22\xce\x9e\x1a\xa4\xef\xc6\xa8\x72\xcf\x0d\x5f\x59\xd7\xa4\x0b\xeb\xa3\x80\x21\x57\xd8\x15\x87\x63\xe6\x8b\x1b\xb3\x10\x79\xb0\xba\xcc\xad\xbd\x1b\x8a\x89\x30\x1b\x73\xa3\xac\xf6\x3e\x9a\x1c\xcb\x94\x56\xe9\xfc\xb3\x6f\xab\xf6\x7b\x68\xe0\x13\x57\x98\x09\xf3\xe2\xe1\xed\x8d\xa9\x84\xc0\xed\x01\x39\xb8\x64\x7b\x3f\x59\xc4\x39\x02\x69\x91\xfd\xc8\xdb\x8a\x0e\x98\xf8\x46\xa0\x98\xfe\x1b\xd5\x00\x5f\x78\x23\x25\x8e\x40\xe5\x44\x3c\x1b\x9c\x4a\xae\x04\xaa\x80\x6f\x93\x99\x39\x4e\x62\xef\x90\xa0\x2b\x66\xe6\x2c\x81\xba\x73\x3e\x0d\x4c\xa9\xee\xb4\xee\xb6\xf4\x9c\xc6\x0e\xfc\x8a\xee\xf4\x61\xd4\x86\x8c\xd6\xaa\x15\xc6\x48\x99\x13\x1a\x54\xd0\x78\xa7\xde\x37\xb1\xbf\x69\xcb\x17\xc2\x2b\x8b\x02\x68\x7d\xfd\xf2\x79\xcb\xf2\xcb\xe7\xdd\x78\xa3\x4e\x92\xbc\xe4\x85\x24\xb7\xd4\x39\x8c\xb7\xdf\x5c\x55\xe3\x72\x65\xfb\x7c\x21\x5c\x75\x54\x05\x6d\x5e\x1d\xf0\x92\x35\x33\x70\x3e\xa8\x00\x3d\x5f\xb4\xbd\xdf\x79\x50\xd3\x35\xc2\x31\x61\x25\x73\xf4\xa8\x08\x2b\xd7\xbb\x65\xbe\xb6\x57\xdf\xed\x82\x13\x4d\xde\x4f\x98\x8b\x8a\x8b\x08\xfb\xbb\xa5\xea\xc1\xd9\xb8\x93\x78\xc5\x80\x95\xf3\x85\xb0\x5b\x03\x44\x96\x18\xc1\x89\x95\xa3\xd1\x67\x2e\x70\xcc\x12\x40\x2a\x64\x0b\xd3\xa4\xdc\xdd\xc7\x55\x73\xce\x00\x50\x2b\xb3\xb1\x2f\xc0\x11\x50\x51\xd3\xfa\xe7\x8e\x00\xcd\x40\x60\xfb\x16\xe0\xad\x84\x81\x26\xa9\x23\xa8\xa6\x51\x45\xc7\x5b\xd3\x6f\x3d\xaa\xd3\x5a\xa3\xb2\x17\x60\x8c\x1e\x79\x5b\x33\x27\x26\x5d\x5d\x48\x0e\x29\x3f\x3f\x66\x04\xa8\x99\xa9\x5b\x15\xab\xd9\xf8\xbe\x04\x43\x62\x21\x8a\xf8\x7e\x45\x45\xfc\xee\xc3\x6a\x0f\x18\xc0\x6e\x61\xdd\x32\xbd\xf2\x14\x8b\x2a\x71\xe9\x5f\x7d\x60\xa8\x6c\x55\xa3\x17\xe9\x53\xf9\x3f\x0a\xdd\xd9\x5b\xe7\x8a\xba\x13\x39\xc5\x80\x47\xbe\xe8\x63\x3f\x1d\x42\x51\x3d\x27\x8a\xc5\x72\x7e\xf9\xe6\xf6\xfe\x80\x97\x24\x4c\xfc\x0e\x4a\x87\x1d\xc4\x50\x05\x41\xa2\x4e\xe6\xbb\x67\x24\x7f\x27\x70\x2d\xe1\xbe\xc7\x23\xf2\x7f\xcf\x07\x89\x26\x00\x47\xe5\x6a\xcd\xf9\xd2\xc4\x1e\x62\x69\x89\xe8\xec\x37\x2a\x2d\x20\x4d\x72\x0d\x35\xf5\x03\xba\x5a\x95\x9b\x2c\x6a\xaa\x35\x73\xf7\x3c\x98\xae\xe0\x3d\x54\xc2\x42\x31\x5d\xe1\xad\x66\xf2\xe7\x61\x63\x37\x3f\x79\x4a\x6c\xff\xbb\x61\x9b\x8e\x28\x89\x51\x44\x3c\x60\x1e\xd6\xac\x4a\xb1\x6b\xd2\x80\xcb\x17\x48\x80\xfe\x7f\xef\x04\x32\x15\x15\xcc\xdd\x37\x8c\xcd\x16\x64\x7f\x38\xc4\x8c\x61\xbc\xbf\x3b\x25\x9e\xda\x7c\x6c\x97\x85\xfb\xf7\x75\x4b\xaf\x09\x87\x9e\x15\x72\x86\x57\x63\xd7\x0f\x58\xa3\x29\x7f\xde\xff\xa4\xe0\xde\x61\x14\x44\x3f\xa4\x0a\xfc\xfa\xa7\xb7\xe7\x1b\x88\x09\xea\x59\x6e\xc5\x0e\x00\x47\x43\x3e\x2e\x0b\x83\xfd\x8f\x4d\x14\x5b\x99\x05\x34\x88\x8a\x82\x60\x0d\xb8\x37\xff\xb3\x4d\x04\xbb\x85\xc4\xb5\x08\x17\x56\xd9\xae\x62\x86\xcf\x68\x50\x13\x86\x38\x73\x1e\x95\x95\x26\xf6\xe4\x77\xc9\xcc\x7d\x61\x34\x08\xbd\x42\xc7\xad\xe9\xb5\x9c\xf3\x92\xc8\xdb\x35\x86\xca\x0e\xf2\x89\xc9\xaf\xf1\x5d\x4f\x29\x70\x55\x11\xf1\x39\xe1\xbd\x87\x00\x2f\x1a\x33\x46\x84\xbd\x84\x31\xed\x60\x22\x5c\xd4\x99\x52\x66\xa7\x57\x41\x7d\x66\xec\x70\x86\xf2\x5c\x23\x26\x16\x70\x08\xc0\x8c\xd9\x4d\x6a\x6e\xa8\xcc\x50\xad\xe2\x89\x4c\x64\xdc\xb0\x64\x18\x18\x02\xf2\x71\x6f\x5c\x51\x5e\x76\x58\x67\x66\x70\x26\x7a\x0c\x88\xdb\x6f\xab\xb4\x3f\x79\xda\xac\xd6\xc9\x5c\xde\xee\x9f\x5b\x87\xe9\x45\x45\x55\x1a\xe1\x9d\x7a\x01\x1a\x06\xb9\x16\x6a\xa4\x9a\xc4\x56\xa1\x65\x97\xbf\x11\x31\x9a\xbf\x99\x74\x42\xfe\xd7\xf7\x8e\x49\x78\x24\x0a\x2c\x5b\xc8\x46\x2c\xef\x02\x9b\x51\x46\x70\x89\xb7\x22\xee\x93\xd2\x57\x1c\x15\x4d\x6a\x82\x21\x62\xf6\x63\xa2\xd0\xcc\xdf\xc0\x6d\x3d\x08\x07\x40\xa9\x31\xf5\xe9\xcd\xc9\xa0\xbe\xb5\x6d\x7a\xf4\x45\x8c\xab\x46\x83\xb1\x2d\x72\x90\x6b\xd1\x1a\x0d\xec\x94\xa4\xfb\xd4\x7d\x20\x62\x38\x7e\xbe\x10\x2e\x48\x01\x22\x3d\x3f\x70\x04\x38\xf6\x5b\x3b\x34\x1c\x72\x60\xdb\x89\x56\x5c\xd7\xcb\x40\xea\xb0\x13\xd7\xa2\x1f\xb4\x77\x2f\x58\xcc\xa3\xc0\x93\x8a\x74\xaf\xed\xd3\x9e\x6f\x0d\xa3\xaa\xa8\x9c\x5e\x77\xf5\x4a\x56\xb4\xef\xcd\x8e\xcd\xdf\x28\xe9\xe9\x07\x95\x89\x8d\xa5\xb5\xf7\x53\x1a\xff\xdd\x33\xa3\x7a\x9c\x77\x50\xbf\x3e\x03\x24\x59\xb9\xc8\x3b\xcf\x04\xde\xda\x24\x32\x89\xf4\xa8\x79\x72\xad\x1b\x0a\x26\xdd\x9e\x87\xdd\xb2\x90\xcd\xcf\xad\x3a\x0b\x6c\xb6\x18\xee\x08\x2c\x62\x0a\x67\xdc\x6e\x63\xd1\x69\x6d\x51\x88\xdd\x46\x6c\x0b\x3e\xb5\x8f\x26\xae\x87\x59\x89\x32\x47\x62\x4e\xb8\x00\xd2\x9f\x37\x37\x9f\x5e\xce\x41\x95\x8a\xf6\xfb\x0e\x81\x83\xef\x14\x91\xe7\x35\x12\x29\x10\x8d\xcf\xe9\x63\xe4\xc8\x84\x3e\x62\xaa\xa8\xbf\x96\xc5\x78\x9e\x6c\x63\x04\x9c\x53\x56\x18\xc5\x92\x06\xfb\xe5\x0d\x22\x66\x95\x83\xe8\x60\xce\xde\xa1\x4d\xb4\x68\x27\x66\x25\xee\x78\x5b\x08\xa7\x6f\x4b\x1f\x8e\xba\xaf\x24\xf5\x32\x1f\x3e\x9c\x3c\xdc\x69\x6d\xf9\xa6\xf8\xf2\xf1\x36\xb8\xd1\x17\xe5\x6e\xbe\x10\x6e\xd5\x98\x3e\x35\x1b\x29\xdc\xed\xb3\x56\x5f\x19\xae\x29\x4f\xbc\x1b\x4f\xa5\x0b\xd5\x40\x3e\xa5\xf0\x71\x4b\x5c\xa7\x6b\xea\xdc\x9b\x16\xa6\xe4\x87\xfa\xc9\x52\x83\x39\x5c\xc9\xf4\xeb\xb3\x35\x87\xb6\x32\x76\xcd\x46\xf3\xe1\x33\xe6\xad\xea\x9f\xe4\x7e\xd9\x1d\x66\x5e\x53\xa1\xa4\x82\xed\x9a\x40\x60\xbc\xae\x8d\x77\x2a\x81\x57\x14\x86\xd7\x5c\xc3\xb5\xf7\xa3\xa3\xc1\x3c\x92\x17\x9e\x2e\x1f\xd0\x02\xcc\xf7\x1f\x1f\x96\x8a\xfc\x62\xb8\x34\xa7\x57\xfa\x25\x4c\x99\x26\x5c\xf1\x44\x6f\x7b\x9b\x7f\x41\xbc\x27\x8c\xc3\x86\x2a\x96\xc6\x01\x29\x6e\xe4\xd0\x64\xc6\x99\xa9\x69\x7e\x51\xa8\x56\xb3\x51\x60\x49\xb1\x89\xec\xef\x27\x69\x74\x4a\x6c\x31\x4a\x1d\x95\x93\x47\x6b\x1c\x84\x52\x80\x25\x97\xec\x99\x93\xfd\x14\x20\xa2\x1e\xfd\xc9\x45\x9b\xe1\xbb\xf6\x25\x88\x27\x5c\x32\x76\x10\xac\x68\x8a\x88\x43\xc2\x72\x1f\x99\xde\x24\x72\x8b\x6c\x64\x56\xf8\xf0\x48\x04\xd1\x8f\x3f\xac\x90\x85\x26\x8d\x31\x17\x9f\xd9\xa6\x32\x3a\xef\x42\xa3\xdf\xdd\x08\x2f\xd4\x2b\x5d\xca\xac\x64\x97\x90\x5b\x3e\x06\x4a\xad\xb9\x62\xf5\x96\xbd\x7a\xa2\xd8\xc9\x71\xa3\x23\x9f\x71\x22\x33\xaf\x03\xfe\xe7\x19\x4d\x6c\x0a\x11\xa9\x8a\x96\xd9\x25\x75\x84\xa3\x1f\x27\x2e\x59\xe6\xbb\xed\xea\x87\x4f\x69\x9f\x34\x65\xea\x14\xee\x16\x78\x10\x32\x69\x1c\xb3\x82\x78\x02\xff\xc9\xe3\xc9\x85\xf1\x82\x26\xaa\xbd\xf1\x9f\x7b\x54\x75\xed\x52\x37\x5f\xc7\xac\x28\xe9\xc4\x99\xf3\x6e\xd1\x65\x7a\xe4\x40\xcc\xa8\x2c\xb9\x48\x4b\xa4\x35\xc9\x0b\x8d\x73\xd4\x4d\x5b\xb4\xfa\xab\x46\xab\xd8\x8b\x29\x47\x3c\xd9\x3e\xfb\xde\x10\x10\x08\x91\x17\x30\x81\x6f\xc8\x3e\xd6\x83\x44\x1c\xdf\x10\x0c\x03\x0a\x71\x45\x1c\x7b\x41\xdf\xd3\x7b\x0c\x28\x3c\x4c\x86\x51\x4f\xa6\x17\x99\x41\x87\x34\x81\x2c\xee\x47\xde\x48\x4f\x33\xb3\x1f\x39\x3c\x04\x50\xd1\xb0\x1b\xdd\xdc\x28\x82\x9c\x7c\xb1\xc9\x2a\x8b\x03\x38\xfa\x49\xb1\xb4\x98\x16\x13\x3d\xb7\x8f\xbf\x3d\x08\x60\xcb\x9c\xa2\x90\x7f\xce\x9d\xf7\xbe\xa8\xbf\xaf\xae\x90\x5a\x0d\x77\x22\x9e\x2c\xfa\xf4\x52\x97\xdd\x45\x7e\xc0\xf8\x4f\x38\xe7\xce\x0b\x9b\xc3\x07\x89\xd5\xda\xc3\x4f\x14\x87\x40\x0a\xa2\x17\x70\x69\xc7\x42\xf8\x4f\x46\xba\xa8\x76\x28\xb5\xd2\x56\xa6\xe1\xec\xcd\xaa\xde\x57\xa6\x3d\xd1\xef\xec\xf3\x9c\xd2\x8c\x30\x13\x5c\xed\xf3\xba\xfa\x49\xd4\x4d\x08\xf9\x02\xb1\x7e\x3e\xb8\x29\xa5\x7b\x60\x62\x6c\x71\x99\x9f\x1d\xe9\x77\x88\x88\x23\xdb\xc7\x4f\x01\xc6\x17\xb2\x4d\x5a\xa1\x51\xc0\x7c\xd0\x82\x3f\x06\x5b\xc4\x14\x34\x3a\xff\x21\x11\x9c\xe7\xc9\x32\xd3\xf8\xcb\x28\x75\x9e\x49\xb3\x85\xf8\x97\x81\x0e\x97\x5d\x97\x93\xd7\x5f\x3c\x3c\x46\xbb\x5e\x51\x8d\x64\xeb\xeb\x51\x72\x5b\xf2\x04\x8a\xd8\x4f\x18\x6a\xad\xba\x37\x61\x4d\xac\x27\x52\x0d\xf8\x5d\x67\x81\x27\x35\x12\x80\xdc\xce\xbd\xda\x86\x3c\x88\x22\x9d\x68\x09\x3f\xb5\x47\x47\x3f\xba\x45\x6c\xfb\x52\x70\x3f\x7d\x47\x7f\x73\xb7\xde\x56\x3b\xc4\x55\xbc\xe2\x55\x0f\x68\x78\xdc\x0a\xe6\x7e\x27\x1c\xf4\xb1\x78\x6e\x8b\x16\x71\x4b\x94\x49\xa8\x69\xe6\xbc\x31\xba\x2e\x3a\x71\x04\xf0\x96\xdf\xc3\x67\x36\xa5\x13\x04\xae\x13\x0b\x47\x45\x45\x6b\xbe\x10\xb2\xd9\xe9\x90\x35\xa3\x2d\x5e\x03\x67\xd6\x1d\x4f\x8f\xd2\xea\x94\xf0\x7f\xa4\xc7\x9e\x01\xc0\xac\xc8\x21\x26\xa3\x45\xde\xa7\x0e\x7d\x4e\x69\x2a\xce\xe0\x54\xc4\x6b\xd8\x79\x71\x5b\x11\x55\x0f\xbf\xda\xa6\x53\x2b\x65\xfd\x9e\x19\xba\x4f\xdc\xc6\x6b\x4c\xea\x46\x7d\x56\xf4\xf2\x2f\xd3\x2c\xb0\x2d\x4e\x32\x94\x6d\xfd\x55\xfd\xd3\x2f\xb7\x46\x5c\x6a\x56\xb0\x2f\x25\x9e\xe3\xfc\x3e\x4b\xf8\xee\xe6\x6f\x43\x65\xd4\xec\x28\xfd\xd3\xf7\x7b\x62\xd5\xc9\x3d\xd1\xb4\xba\x9a\x48\x75\x04\x4e\x91\x36\x05\xa6\xf7\x94\xee\xc3\x94\xd6\x69\xf9\x42\x58\x7c\x49\xdd\x05\x5a\xc7\x8c\x05\x42\xaa\xe6\xdf\xb6\x49\xd2\x0d\xa1\x36\x72\x7d\x38\xef\xf8\xdb\x12\x9d\x0f\xea\xba\xf2\x08\x64\xb6\x6c\x53\x8f\x19\xaa\xd1\xaf\x55\xd5\x7a\xbb\x68\x57\x3e\xf6\xa0\x9a\x9a\x4c\x99\xc2\x7d\x9b\x33\x33\x7a\x09\xa1\x96\x1b\x90\xe7\x21\xb3\x12\x78\xd8\xf7\x63\xec\xbf\x71\x50\x73\x59\xb1\x51\x67\x03\x33\xb9\x3f\x32\x6e\x18\x74\x99\x16\x8e\xac\x84\x75\x94\x7e\x82\xb7\x4f\x07\x25\x0f\x92\xde\x06\xfb\x15\xfc\xd8\xf7\x62\x7a\xd1\xbf\xee\xbe\x40\xab\x83\x4b\x18\x25\x3c\xe8\x49\xeb\xf5\x81\x3c\x73\x90\xef\xc1\xd9\x9a\x31\x7e\x0b\x20\xa5\x13\x27\x3a\xcb\x5f\x04\x94\xe5\x28\x9e\x52\xb1\xd3\x8c\x1e\xc9\xbc\x31\xfa\xdd\x2b\x0b\x50\x20\xbf\x41\xb9\xc9\x0b\xf5\x5f\x68\x4b\xd5\x5a\xf5\x6e\x26\x4d\x04\xc5\x52\xad\x46\x6d\xea\xd2\x7a\xbe\x10\xfe\x78\xb9\xe8\x85\x91\xc5\x70\xf4\x0b\x79\xf2\xc8\xdd\xd8\x31\x00\xce\x8a\x3a\xa3\xb8\x7e\x05\xd0\x54\x57\x83\x8c\xe8\xe3\x8d\x7d\x1e\xac\xad\xa9\x4f\xea\x31\xdd\x27\xe7\x3c\x9a\xb6\x5a\x1d\x2f\x99\x94\xd7\xbf\xab\x4f\x94\x4b\xd8\xf5\x14\x39\x32\xbb\xbf\x6f\xb3\xdd\x00\x29\x07\xb1\x35\xe0\x57\x9e\x8e\x9b\xcf\x9a\xe4\x42\x18\xbb\x36\x0e\x51\x4a\x9a\x90\x76\x36\x7e\x43\x3a\x69\x4e\x88\xbd\x3d\x7e\x3a\x16\x4e\x9d\x5c\x13\xd7\xa4\x53\x59\xee\x53\x27\x46\x80\x3a\xb6\x09\x6f\xf7\xa7\xb7\x75\x8c\x85\x6d\xc7\x0b\xa1\xc3\x13\x9b\xa2\x99\x89\xad\x98\x41\x9b\xbb\xf3\x50\x52\x40\x36\x78\xf3\xf8\x99\xb3\xda\xbb\x43\x25\xdc\xa5\xe9\x65\xce\xbf\x0f\x78\x76\xba\x25\x44\x38\x5d\x78\xd1\x19\x09\xb9\x42\x6e\x15\x6a\x0a\x7f\xe1\x38\x40\x49\xcb\x4b\x12\x0e\xc9\x29\x9d\x51\xbf\x69\x98\x63\xfc\xb7\xa5\xce\x5e\x67\x05\x63\x9b\x5b\x3e\x09\x12\xcd\x43\xa9\x9d\xb0\xc7\x55\xf9\xba\x33\xcf\xf6\xd2\x35\xb3\x29\x8a\xb5\x3f\xca\x21\x10\x31\xab\x60\xcc\xe2\xdd\xe9\x13\x7d\x40\xd6\x75\x90\x27\xc9\x40\x7f\xdd\xaa\x2e\x5e\x27\x92\x56\x7a\x7b\x47\x6a\x28\xb5\x56\x59\xa0\x8b\x2f\x74\xc1\x96\x96\xe6\x92\xc0\x92\xed\xf2\x5b\x9a\x60\x8f\x8f\xd7\x20\x25\x97\x92\x19\xf3\xa4\xae\x87\xe5\x38\xd8\xa1\x09\x6f\x4e\x00\x76\x35\xf9\x27\xd3\x26\xae\xcf\x37\x2c\x10\xf0\x38\x6b\xa9\x0a\xac\x9d\x18\x57\x9b\xf3\x66\x61\x62\x1f\x59\x5c\xf2\xa1\xc3\x85\x13\xd4\x93\xe6\xa2\x44\xc4\x2d\x23\x11\x59\xef\x00\x46\xd5\x51\xc4\x8d\x5d\x05\xbb\x8d\x05\x0f\x5f\xaa\x7d\xe0\x56\x59\x31\xa6\x7f\xd7\x93\xcb\x94\x78\x4f\x95\x8b\xf7\xfc\xdf\xf4\x81\xea\x7c\x4b\x57\xb4\xf0\xc8\x0b\x62\xe0\x67\x13\x1c\xf8\xd8\x15\xa3\xde\x6e\xe3\xae\xd9\xea\x35\x94\x03\xd7\xe1\x4a\x32\xc3\x96\x01\x20\xbe\x8d\x38\x9a\xd8\x58\x37\x02\x6c\x29\x05\xba\x96\xc7\xa9\x8b\x35\xe1\x33\x8b\x3a\x51\x47\x69\x8a\x2a\x75\xd5\xda\x26\x04\x49\x07\x36\x63\x82\xcf\x39\x47\xd4\x28\x8a\xcb\xef\x59\x90\xd2\x91\xb9\xdb\x48\x17\xfb\xc4\x63\x08\xdb\xd0\x1a\xc8\x3d\x25\x8a\x2e\x7e\x12\xb1\x7c\x72\xd3\xd7\x2a\x3a\x92\x47\xec\x3a\xd7\x1f\x06\x95\xf6\x4b\x9a\xba\x99\x98\xed\xc7\x84\xd7\x77\xe6\xf6\x93\x61\xa6\x44\x10\xa7\x8e\xbd\xac\x2f\x04\x7d\xc1\xaa\xe1\x5f\x70\x91\xa6\x3a\xe9\xd5\x98\x74\xd7\x96\x14\xd3\x10\xb0\x1f\xa1\xa0\xdd\x6b\xba\x54\xb9\x9d\xc8\xc8\xbf\x70\x4c\x93\xd4\x22\x7e\x00\xf8\x5a\xef\x0c\x52\x73\x9c\x32\x8d\x2a\xc6\x4e\xcc\xf1\x45\xd9\xee\xb3\xcd\x86\x6c\x98\x99\x04\xd9\xe2\x92\x64\x2b\x53\x93\x90\x40\x2c\xb3\xe9\xdc\xbe\xb5\x5b\x65\x66\x9f\x46\x05\x7f\xcb\x09\x95\x98\xdb\xa7\xcd\x6c\xcb\x17\xc2\x83\x6d\xc9\x81\x73\x28\x3f\x1a\x05\xfd\x08\x70\x49\xe1\x64\xd7\xf7\x39\x0d\x29\x56\x66\x34\xa8\x79\x42\xa7\xf9\xf9\x99\xea\xe7\xd7\xb0\x18\x09\x75\x3d\x93\x1e\x61\xd4\x91\x67\xd2\x1e\x68\x42\x59\x16\x8a\x23\x39\xaf\xc4\x88\x89\x12\x67\x89\x4c\xff\xae\xf4\xf3\xeb\x14\x04\xd3\xe4\x03\x99\xdb\x75\x30\x2c\x5e\x23\x7d\x27\xf9\x7d\xfd\xe8\xa9\x81\x6a\x8e\xe6\xc7\xf4\x62\x6d\x8b\xe8\x4a\x74\x71\x78\x91\x2f\x0e\xcc\xea\x20\x16\x13\xea\x35\x01\xec\xb5\xec\x98\xd7\xfa\x59\x20\xb6\x97\x5a\x96\xef\x12\x43\xf7\x45\x18\xb9\xf9\xf9\x98\xf9\x9a\x7e\xe5\x98\x09\x62\xf8\xc3\x2a\x38\x70\x90\x2f\x91\xd5\x9c\x5d\xfe\x86\xba\xbc\x8a\x3a\x7d\x16\xee\x40\xa3\xf7\x9f\x2f\x84\x9f\x5a\xa7\x16\x1a\x5e\x85\x76\x26\x4c\xb6\x7c\x21\xc4\x4c\x69\x6a\x54\x29\x73\xc0\x64\x35\xdc\xbc\x2e\x1e\x2f\x59\x96\x28\xde\xfe\xd6\x0b\x7c\xb7\x35\xc4\xf3\xa3\x2b\x52\x13\x29\x3f\xbf\x8c\xd6\x31\x50\xa1\xb8\xef\x45\x75\x11\x1d\xd3\xe4\x6c\x1c\x28\x94\xb2\xf2\xf4\x50\xf9\xe4\xa2\xa0\xe2\x79\x42\x9d\x30\x4a\x99\x6b\x1e\xd3\x54\x17\x02\x37\x71\x8c\x78\x61\xbf\xd6\x1c\xf0\x92\x5b\x2a\x9e\x79\x37\x81\x9d\x1d\xa3\xae\x1f\xd3\xc1\x0b\xdd\xd9\xaf\x0d\xe3\x1d\x9d\x8d\x5d\xe9\x01\x53\xbf\x3b\xd9\x11\x55\x89\x9a\xaa\x85\x53\x80\xae\x26\x75\x9b\x35\x09\xbf\x31\x46\xda\x9c\xe3\xb8\xe8\xc9\x7c\xa5\xa3\x67\x3c\x19\x52\x04\xc5\x1f\x1d\x8b\xdd\xf2\x5c\x54\xc7\x0c\x25\x07\xe3\x2e\x8d\xf0\xcc\x97\xc3\x38\x36\x52\xca\xce\x9f\x0a\x10\x9f\xf9\x69\xed\xd1\x9f\xad\x6e\xd1\xd6\xe7\x15\x52\xf2\x13\xcc\x5b\xee\x73\xb6\x72\x8d\xc3\x00\x65\x91\x5d\x37\x56\xa5\x2e\x54\xa4\x41\x13\xfc\x21\x83\x81\x69\x1d\xa3\xa6\xf4\xcd\xcd\xd5\x27\x36\x93\x71\x4d\xb1\xfc\x13\x23\xac\xfb\x16\x6a\x72\x69\x7c\xad\xc6\xbb\xb9\xad\x67\x44\x90\xe6\x4d\xba\x25\x06\x0d\xc6\x7f\x1c\xee\x2b\x2b\xcd\xc0\xe2\xc5\xc5\x45\x8f\xcb\xc5\x8e\x4d\x3d\xee\xc1\xd2\x6d\xcc\xd6\xdc\xd0\x4b\x81\x5d\x22\xb1\x3b\x95\xf1\x5e\x6b\x53\x35\xc0\xe2\x7a\x3c\x73\x00\x18\x88\x04\x5d\x45\x8e\x3a\x7b\xf6\x18\x58\xcd\xb6\xf2\x3d\x6e\x66\xea\x4e\x75\x29\x3b\x19\xf6\x7c\x5b\xc8\xe6\xcf\x7e\xb8\x09\x50\xec\x7a\xb5\xa8\xf9\x91\xca\x24\x4b\x56\xc9\x34\x41\x3d\x9f\xf7\x86\xeb\x2d\xe0\x9f\x3f\x33\x5f\xa2\x94\xaf\xe5\x76\xee\x4f\x15\x9c\x7e\xa2\x50\x9e\xfd\xe4\x3a\xf5\x11\xeb\x04\x8b\x00\xfd\x76\x87\x44\xce\x38\x35\x9b\x4f\x3b\x50\x6c\x6f\x74\xec\x0d\x41\x1d\x77\x63\xa5\xa5\x66\x5a\xdb\xbf\x69\x2d\x77\x8d\x51\xa7\x26\x3f\xb0\xf1\xb3\x71\x49\x50\xf3\x50\x35\x9e\xb1\xff\xf1\x4d\xf1\x6e\x16\x90\x52\x89\x98\x81\xcd\xc7\x07\x43\x97\xea\x69\x24\xaa\xc4\x8b\x81\x0c\x90\xe1\xdf\x0f\x82\xef\x64\x23\xcf\xe3\xa3\xd4\xe8\x97\xfc\xe4\xb0\x06\x5f\x44\x4c\xe0\xfb\x93\x51\xf0\xc2\x07\x9a\x00\xc9\xab\x03\x09\x1b\xce\x54\x07\xa4\x7f\xb1\x83\x88\xcb\x15\x5b\xe5\x08\x27\x77\xfb\x58\x55\x49\xb1\xc0\x03\xf3\xb3\x9c\xb7\x3c\xdd\x50\x77\xb4\xf6\x08\x05\x7c\xec\x24\x34\x9d\xf6\x71\xf4\xce\x79\x9d\xfa\xca\xcb\xe9\xc3\x16\xb0\x72\xe2\xf8\xd7\x9d\x5b\x05\x96\x7c\x5c\xa7\x2e\x5f\x08\x87\x9c\x05\x62\x32\x01\xab\xf2\x27\x30\x49\xd3\xed\xab\xd9\x88\xb8\x3e\x29\x95\xe2\x66\x61\xd7\x02\x6d\xdd\xcf\x10\x9f\xb8\xca\xa1\x4f\xbe\x2f\xf0\xa2\x00\x42\xfc\xc7\xd2\x39\xb1\x83\x56\xdc\x1e\xbf\xdf\x6f\x80\x98\x43\x2d\x8a\x9a\x42\xe9\xb6\xf7\x99\xa4\x07\x21\x2c\xca\x08\x0e\xb0\xcc\xf4\xfc\xc0\x12\x72\x27\xe1\xc4\xd7\x35\x77\x08\x24\x7c\xc5\xa3\xff\x76\xe5\xa0\xc1\x80\xfd\xd2\xc6\xa9\xc3\xd1\xcf\xbe\x72\x95\x92\x6c\x9f\x39\x8b\x6b\xc9\x2f\x52\x29\x45\x90\x85\x21\x7d\xe1\x69\x55\xf4\x79\x75\xc2\x88\x05\x85\xd4\x2f\x1d\x21\x8a\x57\xec\x99\x42\xce\x9e\x57\x18\x1f\x7b\x32\xfd\x72\x4d\x86\x48\xb9\x12\xc5\x02\x9f\x82\x82\x71\xc8\x61\xb0\xac\xe3\x88\x79\xbe\xc2\xc8\x6e\x97\x26\x41\x60\x3f\xc5\xf5\x67\x6f\x49\x97\xd8\x0e\x65\x16\x8e\xba\xa0\x34\x1c\x20\xf3\xd3\x27\x5a\xe0\x24\xa5\x06\xe1\x00\x99\xad\x25\xc8\xab\x9a\x39\x4b\x98\xd1\x6b\x4a\xfb\x45\x8a\x3c\x5f\x4e\x27\x72\xb7\x69\x03\xac\xce\x0a\x75\xa4\xfe\x4c\x9f\xe9\x7d\xa3\x3f\x59\xb0\x3c\x2e\x70\xbf\xa0\x73\xf7\x31\x23\xb5\x8a\x84\xd7\x46\xbf\x09\x9f\xab\x0d\x99\xb0\x1d\x94\x63\xf7\xf9\xeb\xcf\xe8\x72\x6a\x65\xe2\x49\xea\xbf\x60\xc5\xbc\x7c\x8b\x3a\x2e\x45\xe4\xfb\x5c\xd6\x3f\xfc\x23\xf0\xac\xa4\x81\x1f\x4b\x39\x87\xc1\xe1\x26\xad\x57\x17\x58\xcb\x1b\xa3\x4e\x83\x5b\x92\x58\x65\x9c\x56\x2a\xbf\x31\xf8\x47\x3f\xb5\xdb\xf6\x41\x8f\x49\xa9\x30\x11\x9e\x68\x53\xbb\x41\x0b\xd7\x6c\xda\x88\x55\x79\xb2\xb7\xfc\xff\x29\x7b\xfb\x38\x29\x8a\x3b\x7f\x9c\xe9\x19\x09\x41\x84\xe5\x69\x59\x10\x91\x10\x83\x04\x98\x75\x77\x79\x5a\x88\x21\x82\x88\x4a\x70\x07\x81\x23\x88\x8a\xd6\xf4\xd4\x4c\xd7\x4e\x77\xd7\x58\xdd\x3d\xc3\x10\xa3\x86\xaf\x47\x10\x91\x18\xce\x10\xc2\x71\x7c\x95\x23\x86\x18\x8e\x70\xc4\xf3\xd0\x10\xe2\xa1\x21\xc6\x10\x43\x0c\xe1\x3c\x43\x3c\x42\x08\x21\xc4\x78\x1c\x51\x54\xc2\x76\x7e\xaf\xae\x87\xae\xea\x1a\xf2\x7b\xbd\xbe\xfc\xc9\xee\xce\xf4\x43\xd5\xa7\x3e\x0f\xef\x87\xfb\x93\xe9\xb3\x09\xaa\x88\x9d\x37\x61\xe7\x3b\x43\x54\xb5\x35\xe8\x73\x94\x94\x31\x64\x86\xaa\xe4\x53\x84\x04\xba\x85\x80\x9a\x68\x8f\xdf\xda\x22\x32\x83\xc9\xba\x92\x64\xf3\x19\xd9\x63\x80\x92\x15\x1f\x9e\x5a\x22\x35\xe0\xb8\xee\x83\x03\x68\x9a\x19\xbd\xe3\x99\xa3\xe5\xa5\xd3\xb3\xc3\x24\xa8\xc2\x4a\xae\xed\xbd\x3e\xa1\x47\x88\x95\xe0\x12\x7b\x39\x7c\x54\xd3\xd9\x8e\xde\x3d\x16\xe8\xa4\xf4\x4b\x23\xb9\x84\x25\x41\xec\x00\x7d\xee\x75\x65\xf2\x13\x14\x8b\x2c\x5f\xfb\xd9\x5b\x92\xaa\x84\xed\x86\x8c\x7f\x50\xd8\x50\x31\x70\x22\x1a\x87\xc8\x9d\x7b\x9c\x65\xa7\x5d\x30\xba\x99\x72\x43\x0e\xbe\x5b\xa3\x08\x02\x07\xb2\x64\x5c\xd1\xc2\x4d\x7f\xf1\x84\x4e\xc0\x44\x9e\x25\xc9\xe2\xa9\x37\x33\x5a\x63\xc1\x06\x8e\x80\x47\x16\x4e\x68\xa9\x0e\x40\x85\x09\xd4\x97\x28\x4b\x3b\xc9\xaf\x6b\x06\x5b\x38\xe0\xd2\x0a\x9a\x65\x42\x3f\x9d\x5b\x7a\x5f\x80\x08\x1f\x28\xd0\x20\xf1\xfb\xb3\x31\xf4\xad\x93\x8a\x79\xfd\x6e\x83\x5c\xcd\x41\x6b\xd0\x4a\xb3\xb1\x7b\x3b\x58\x9a\xb2\x80\xeb\x55\xe7\x7a\x0c\xf3\xde\x86\x1a\xb7\x10\x98\xfc\x63\x8d\x9f\x8c\x8f\x23\x6f\xc5\xc2\xd9\x5c\x98\xdd\xaa\x32\xb2\xa9\x05\x07\xbd\x91\x03\x92\x04\x94\x24\x88\x7d\x7a\xb3\x22\x7a\x47\x28\xee\xc5\x15\x55\xc9\xac\x99\xc3\x94\x48\xeb\x06\x45\x60\xfa\x01\x61\xf9\xee\xed\x1a\xa5\x3d\xfa\x19\x26\x62\x08\xf6\xa3\xa5\x9c\x03\x5f\x05\x66\xc0\x81\x5a\xf7\xbf\xc9\x52\xd4\x9b\x21\x01\x4e\x5e\x39\x5c\x67\x74\x6a\xfc\x0a\xea\x8e\x4c\xfb\xfc\xe5\xd7\x74\x03\xd1\x62\x5c\x68\x6d\x58\x1b\x97\x8a\x6d\xed\x53\xb2\xb9\x70\xfb\xbe\x06\xb7\xe9\x6a\xac\xbe\x95\x7a\x40\x69\xc6\x02\x44\x4c\xea\xb1\x9a\xb6\x37\xc6\x2b\x38\x1f\xe8\x49\x4f\xf8\xf1\xe5\x57\xa8\x16\x44\xb9\x70\xf0\x73\x43\x15\x26\x70\x91\xb7\x5b\xa2\x3b\xde\x32\x4a\x43\xa5\x56\x7c\xe4\x20\xde\xab\xa0\x51\xe5\xab\x37\x08\x99\x90\x2a\x85\xcf\xf6\xa4\xf6\x6c\x4b\x2e\xef\x0a\x82\x84\xe8\x0c\xd8\x07\xfb\xe8\xdc\x23\x12\xe5\xcd\x14\x53\xf0\xd3\xf5\xba\x45\x51\x15\x72\x70\xff\x7f\xb7\xe8\xba\x73\x00\x39\xbc\xd9\x69\x5f\x23\xdf\xab\x4a\x3c\xa1\x99\xca\xdb\xcd\x3c\x9d\xa4\x14\xf9\x0a\x22\x5c\x2e\x22\xcc\x9f\x62\x94\xa5\x05\x10\xfa\xd7\x36\xb4\xa5\xd2\xf5\x6d\x8c\x7e\x83\x8b\xd9\x5c\x68\x3c\xab\xbb\x2a\x83\x28\x50\x32\xf1\xe3\xd5\x63\x75\x43\x4b\x07\xf2\x3a\x26\x6d\xac\xbc\x52\xc9\x68\x03\xe2\x67\x41\xe0\x5b\x98\x30\x88\x77\x68\x5e\x90\xdd\x09\x02\x4c\x18\x7d\x70\x81\xea\x73\xb6\x1c\x56\xa0\x1e\x55\x15\xc6\x90\xfa\xc8\x36\x65\x4f\x50\xe5\xa2\xe8\x76\xb6\x6b\x30\x60\xa1\xe5\x24\x58\xab\xa9\xd6\x77\x07\x27\xb8\x2b\x24\xa0\x85\x71\x3a\xbb\x44\x9b\x12\xb3\xb9\x1e\x5b\x69\x74\x6f\x84\x2b\x5b\x12\xa2\x05\x8c\x76\xc9\x53\xed\xb1\x47\x95\xbe\xb9\xef\x33\xb7\xce\x6c\x2e\xfc\x95\xa6\x4e\x0a\x2c\x87\xe2\x0b\xe4\x4a\x78\xfc\x2d\x19\x32\x40\x99\x30\x7a\xde\xe3\xab\x64\x19\x6c\xe2\x06\xf9\x6d\xe3\x5b\xbb\xf5\x91\x7e\x31\x28\xc1\xd8\x21\x3b\x33\x79\xcd\x20\x45\x53\x26\xca\xe9\xe8\x06\xfe\xd2\x6c\x59\xea\x82\x12\x4a\x18\xa2\xff\xf2\xe0\xd5\x5a\x7d\x08\x2a\x88\xe0\xc4\xb5\xe6\xa6\xc6\xbd\x20\x07\x34\xf8\x11\x19\xdf\x7a\x82\x9d\x2f\x4b\x6e\xbd\x69\xe1\x6c\x5a\x9a\xb8\x6c\x73\xf8\xd0\x75\x11\x3d\xc9\x2e\x3f\xc7\x05\x9d\x81\x90\x0d\xfa\xc2\x8b\x6c\x5e\x36\x0f\x50\x4b\xb3\x54\x46\x5b\x47\xed\xd3\xa7\xb4\x71\xdc\x6a\xfa\x3f\x6d\x0d\x19\x04\x48\x31\x5b\x28\x89\xdb\x4e\x9d\x58\x32\x92\x3f\x32\x2a\x32\x4d\xb2\xc8\xcd\xf2\xe8\x47\x13\x8b\xcc\x67\x7b\x29\x59\x66\x60\xfb\xa8\x42\x35\xc7\xe8\x91\x9e\x29\xf7\x4e\xb2\x02\x08\x28\x20\x3c\xf1\x92\x33\xa0\xfc\x45\xd6\xad\x0d\x2a\xf4\x9a\x87\x2b\x6e\xac\x79\xe0\x11\xca\xdb\x5f\xa6\xd9\xdd\x78\xd1\x59\x4c\xa5\xa3\x18\x0a\x6f\x6a\x55\x61\x11\x63\xcc\xcc\x29\x33\x9f\x1b\xa5\xc4\x22\x51\xd1\x45\x2b\xfb\x4b\x2d\x03\xa2\x4f\xe9\x52\x90\x2d\xd3\xfb\xab\xec\x1d\xe4\x0a\xa8\x66\xea\x5b\x4b\x24\x5d\xa6\x18\x90\x86\xe4\x29\x63\xcd\x67\x33\xc2\x05\xa0\x31\xb5\x0a\xff\xe1\xc9\x61\x6a\x36\x04\xa2\xa2\xa9\x0c\x2c\x9a\x1e\xde\xb1\x49\x3b\x76\x21\x6f\x5d\xe6\x7a\xd2\xef\x6a\x64\xed\x5a\x74\x39\x95\x68\x2f\xf3\x19\x5b\x91\xe1\xff\xa9\x63\x89\x0f\x09\x85\xf8\x7b\x8c\x53\x96\xbe\xeb\x42\x83\xcf\x56\x41\xe0\x15\x3b\x35\xe5\x18\x13\xb8\x05\x6a\x0c\xe5\xf1\xc9\xe8\x8f\x3f\x68\xd1\x0f\x94\x28\xc5\x64\x3b\x3e\xaf\x10\x0c\x6d\x58\x43\xae\x57\x56\x3a\x4a\xa9\x75\x5a\xa2\x61\x82\x0a\xf2\x81\x8d\x3c\x87\x75\xf6\xbe\xb3\x94\x05\xc8\xb9\x8c\x59\xa8\xaf\xf9\x1f\xf7\x97\xd9\x70\x09\x46\x85\x42\x54\xd9\x3f\xb2\x26\xce\x00\x89\xa7\xe8\xb2\xa4\x8f\xbd\xa0\xf1\x3a\x58\x27\x96\x85\xd0\x5b\xe7\x29\x85\xdc\x94\x89\xd3\xa7\x4f\xa1\x32\xac\xf5\x43\xc3\xf4\xec\xcf\x17\x3e\xcc\x07\xfb\xb3\x2d\x57\xb2\xb9\xb0\xf6\x35\x53\x55\x61\x0a\x6c\xb2\x54\x21\x5d\x5d\x7b\x95\x16\x9d\x3d\x76\x9b\x7e\x9d\x4f\x63\xa6\xbf\xaa\x6a\xe1\xfa\x51\x9e\xc3\x90\x35\x75\x3b\xf9\xa7\xd0\x2d\xd9\x6a\x2e\x16\x9e\x78\x48\xed\xef\x99\x88\x26\x06\x99\x7b\x7b\xb1\x9d\x9e\x63\xee\x86\xd9\x5c\x78\x64\xc7\x20\xbe\xd8\x7d\x4c\xa4\x1f\xd8\x37\x1f\x92\xe7\x56\x0d\x63\xb5\x52\xca\xc0\x2d\x8a\x0a\x1d\x02\xb2\xd3\x1f\xee\xe2\x58\x0b\x1b\xb9\xd4\xc6\xa5\x6b\xab\x14\x3c\x96\x46\xa6\x57\xbf\xd5\xc0\xc9\x2f\x94\x04\xc6\x3f\xbd\xd4\x12\xf8\x0b\xde\xcf\x8f\x6e\xf7\x27\xcb\x92\xb9\x76\xb9\x8e\x0b\xf8\x52\xac\xa2\xd4\xc5\x99\xba\x06\xa6\x1b\x08\x58\xc1\xc6\x8d\x9a\x1d\x0a\xc1\x6e\x49\x24\x39\xa9\x67\xfa\x37\x20\xcf\x08\x06\xa6\xc5\x2b\xac\xdd\x73\xb8\x19\x3d\x76\xa3\xb4\x42\xc1\xc2\x1a\x23\xc6\x49\xf4\x71\x3b\xc3\x52\x5d\xb5\x9a\xfd\xf6\x52\x04\xb0\x8d\x13\x12\xba\xef\xbc\xa0\x80\x7b\x02\x97\xcf\x75\x46\xee\x1a\x28\x0b\x7b\x31\xab\xfe\xd7\xe5\xec\x75\x01\xd3\x84\xac\xea\x48\x6d\xe9\x33\x3c\x51\x15\x01\x87\xce\x7d\x79\x82\x0e\x2a\x03\x44\xd6\x15\x4b\xec\xfe\xd7\x8b\x02\x69\x0d\x08\x43\xf9\x3c\xb8\x73\xb8\xa2\x69\x52\x0a\x12\x59\xea\x8a\xb7\x74\xab\xc0\x0a\x74\x2d\x50\x82\x8a\x6c\xff\x91\xad\xec\x78\x30\x01\x4d\x57\xbe\x7d\x7e\x58\x22\x3c\x72\x1d\x2b\xa6\x94\xbb\x56\x39\xf4\x14\xd3\x9c\x57\x93\xaf\xa2\x1b\xb8\x01\x20\x75\x66\x0e\x7a\xf3\x99\x84\xce\x15\x9d\x5c\x56\xd9\xc2\x4f\xef\xbc\xf7\x2a\xfd\x2d\x41\x40\x24\x52\x35\x5c\x72\x56\x6b\x4c\x79\x56\xac\xff\x64\x74\x3c\x7c\xa5\x96\xe1\xf9\x90\x20\x60\x8b\xc5\xb7\x72\xf2\x48\xb5\xf1\xc0\x78\xc0\x3e\xce\x56\x51\x01\x52\x3c\x78\x71\x33\x7b\xaf\x73\xb8\xa4\x85\x2a\x67\xd1\xa1\xf2\xb6\x00\x6b\x40\xa6\x4e\x1e\x18\xa4\x54\xcd\xc0\x63\xf4\xe8\x74\x6f\x43\x4e\x68\x6a\xb8\x46\xf7\xe6\x64\x0d\xf0\x16\x05\x0a\x0b\xdb\xb4\x30\x77\x68\xaa\xf0\xad\x3e\x9a\xe6\xba\xed\x60\xaa\xff\x49\x7f\x5a\xd9\x3a\x4c\xd5\x0f\x12\xf2\x7c\x51\x2d\x7d\xfd\xea\x64\xfa\x5b\xa6\xc8\x45\x58\x4d\x70\x86\x4e\x68\x75\x86\x85\x6b\x51\x7a\xc7\x47\x4e\xdf\xf9\x40\xca\x27\x81\x95\xfa\xf1\x34\x78\x94\xa6\x22\x60\x57\x90\xcb\x47\x6b\x15\x4e\x9a\x86\x4e\x9e\x60\xc4\xc1\x23\x5e\x83\x4d\x22\x8a\x36\x7c\x89\x9d\x5a\x1f\x79\x93\x17\xc5\x36\xa6\x83\x89\x42\x8b\xf6\x6c\xb0\x0d\x5c\xa0\xd0\x24\xc3\x25\x43\x54\x39\x22\xbb\xc8\xfc\x50\xe9\x73\xf9\xd5\xb9\xe4\xcd\x17\x09\x70\x57\x42\x0f\xaa\x7f\x7e\xe7\x90\x21\x52\x13\x52\x42\xe5\x43\xeb\x1a\xad\x01\x14\xd8\x36\x2f\x09\x7a\x52\xbf\xd6\x50\x61\xf4\x94\xc2\x36\x0b\xc2\x12\x89\x3f\xe5\xad\x2b\xb5\xb5\x5e\x01\x8a\xc4\x5a\xea\xf9\xa2\xa6\xa3\x05\xbc\xd8\xc8\xf5\xa6\x11\xb2\x92\xa1\x38\xee\xcc\x65\x8a\x27\x73\x1e\xdb\x74\x26\xca\x77\xff\x7f\xed\x8c\x6f\xc2\x51\x99\x49\x3d\x19\xd5\xde\xa2\x1a\xad\x4d\x5a\xaa\xae\x91\x38\x73\x1f\x54\x1b\xe8\xbb\x0d\xe2\x3a\x08\xd3\xd4\x9b\x9e\xc0\xc7\x66\x0e\xd7\x0b\x2a\x13\x0a\x6e\x7b\x66\xfe\x7c\x85\x78\x03\xec\x72\x54\x09\x7b\x7e\x9d\xd5\x3d\x77\x92\x81\xc9\xd6\x2d\xdd\x9a\x87\x35\x27\x74\x56\x23\x08\xb3\xe3\xf4\x5b\x0a\xc7\xcc\x0a\x1c\x4c\x01\xef\xa9\xf9\x3b\x93\xc1\xaa\x8a\xed\x32\xae\xaa\x0e\xe1\x61\x7e\x84\x62\x9c\x0a\x4c\xc2\x6e\xfd\xef\xc6\x34\x2b\x07\x61\x42\xc4\xf8\xb2\x31\x72\x6a\x58\x8c\xfd\xe1\xdd\x27\xd5\x42\x8e\x5a\x1c\x8a\x60\x96\xbe\x79\xa3\x2e\x64\x83\xdc\x32\x53\x78\xbc\xb3\x5b\xfe\x19\x75\x25\x53\xd2\x8e\x19\x8b\x93\x52\x8a\x7e\x40\xdc\x68\x7d\x5d\x4a\x84\x3b\xb5\x7e\x95\x26\xed\xed\x00\x9b\xf5\x0e\xc3\x57\x97\xf4\x13\x17\x3c\x79\x7a\x36\x17\xfe\x87\x92\x81\x16\x31\x81\xa8\xc4\x07\x67\x27\xba\x64\x2c\xb2\xa0\xed\xb0\xea\xec\xdc\x29\xa5\xd9\x5a\x01\x2e\x82\x36\x3b\x69\xae\xd7\xf4\x7b\x03\x92\x8f\x6d\x06\xc2\xdf\xba\xb2\x3c\x44\x3e\xdd\x71\x7c\x15\xfe\x6a\xad\xcc\xbb\xeb\xa8\xc4\x34\x83\xca\x6c\x14\x91\xbd\x91\x0b\x3e\x34\xdc\xdf\x4b\xbe\xae\x16\xec\x54\x70\xe0\x0a\x56\xd4\xc5\xf5\xec\x10\xab\x11\xe0\x96\xd8\x32\xfa\xd1\x58\x09\xb6\x0c\x62\x13\xbe\xd5\x0a\xed\xa7\x86\x7c\xab\x40\x60\x8d\x82\x53\x57\xc5\x2d\x0c\x1c\xd5\x07\xe1\x8f\x77\x2b\x9c\xe7\x28\x25\x63\x0c\xea\x8c\xf9\x9c\xac\x46\x4a\xc0\x2d\x45\x1b\x2c\x96\x79\x6b\xda\x34\x98\xef\xa2\x12\xa2\x3a\x21\xac\xd2\x4c\xef\x3e\x37\x4c\x4f\x94\x91\x3b\xa1\x9a\xa7\xc5\xc3\x2e\xa5\xbe\xb3\x41\xc2\xea\xaa\xa2\x98\x37\x5a\xc8\xf3\x31\xd3\x2c\x49\xed\x3d\xda\x8f\xd7\x2d\x6e\x99\x2e\xf4\xb7\x57\xc4\xed\x11\x3b\x3a\x2e\xc2\xbb\x89\xd6\x7c\xc6\xa4\xcc\x5a\x0e\xf7\xb4\x26\x63\xa5\xb4\xbc\x84\x05\x76\xbe\x76\x1c\x53\x44\xa2\x5a\x3b\xa6\x44\x77\x30\xb1\x4d\xa7\xea\x9a\xb8\x14\xd5\xe8\x9c\xb0\x9f\xca\x3e\xd0\x40\x00\x89\x6a\x71\x81\xdb\x49\x6f\xbc\x38\x58\x01\x3a\x79\x10\xb2\x41\x73\x66\xe2\xd9\x11\x8a\xbe\x4a\x25\xa0\x08\x26\x19\x1c\x7f\xd8\x57\x2e\xd6\x12\x41\xb0\xca\x53\xbe\xf4\x55\x27\x1b\x54\x21\x90\x77\x89\xad\x11\xfe\x40\x13\x3f\x33\x91\x5f\xf7\x4c\x50\x11\xcd\x73\x72\xbe\xe1\xe7\x68\x25\x74\x05\xac\x2b\x7d\x74\xb2\x7e\xe7\xa2\xa5\xcc\x33\xbf\x7d\x9d\x32\x82\x60\x12\x1d\xed\xd1\x7d\x8d\xed\x3f\x90\xb7\xf8\x15\xe2\x53\x6a\xe9\x3c\x49\x57\x24\x0a\x5d\x31\xd5\x5c\x51\x61\xd3\x8a\x19\x68\x7a\xe7\x51\xd9\x87\xa9\x00\xe2\x23\x33\xb0\x01\xb1\xb9\xfc\x70\x78\x70\x95\x62\x80\x4c\xe7\xf2\xb9\x70\xdd\x01\xb9\x46\x61\x94\xa3\x30\x13\x0b\x16\xda\xfa\x1d\x65\x65\x70\x7b\x7b\xf4\x62\x33\x1f\x6b\x16\x1c\x6b\x64\x2b\xe3\x9b\x4c\x35\x93\x7c\xbe\xd0\xb7\x90\x79\x49\x9d\xd5\xdb\xb8\x98\x3e\x70\x57\x20\xc8\x18\xbf\xef\x17\x74\x9c\xb8\x0b\xeb\x59\x8f\x35\x01\x79\x13\x6e\xdd\xb6\x4f\xea\x3b\x9a\x66\x72\x4c\x30\x5d\xff\x92\x49\x8a\x3d\x85\x07\xcd\x80\x30\xc8\x55\xf9\x16\x8e\x8e\x87\xa4\x08\x4d\xa6\xcd\xfb\x2f\x06\x03\x94\x7e\x96\x80\xaa\x69\x41\xb7\x2c\x47\x47\xe1\xee\x0a\xab\x66\x67\x33\x89\xc6\xa4\x59\xf9\x16\xed\x84\xa1\xf8\xfd\x58\xcb\xb3\xab\x45\x1e\xac\x53\xa6\x29\x06\x87\xe1\x83\x2f\xcb\xfd\x52\x26\x20\xca\x32\xbf\xfe\x8a\x1c\xe6\x9b\x88\x30\x86\xd5\x0b\x12\xc1\xc5\x50\xa1\xca\x50\x86\x80\x02\xae\x32\x06\xe2\x83\x7b\x35\x2f\xbe\x7a\x25\x3a\x5a\x27\xc4\xba\xa8\x3d\xe9\xcf\x1d\x69\x51\x46\x1c\xbe\x2a\x03\x14\x1e\x56\x26\x8b\x1e\x0e\x88\x49\x47\x3d\xb7\x71\x54\x25\x45\x00\xb2\xd9\x45\xed\x30\x9b\x41\xdf\x4c\x40\xd1\x57\x5d\xf9\x53\x77\x6f\xd4\x05\x2d\x3d\x5f\x08\x8a\xf3\xb9\x78\x71\xab\x8c\xe2\x80\x40\x40\xef\xf0\xbd\x3d\x71\xc2\x80\x1a\x24\xcf\xc3\x59\x1d\x4a\xd3\x8c\x7b\xc1\x1b\xf9\x65\x5a\x6f\x22\x20\x9e\xcf\xfb\xc4\xbf\x5f\x23\x1f\x62\xfb\xf4\xf6\xb6\xe8\xff\xac\xd1\x1a\x1a\x00\xd2\x3e\x21\x43\x67\xcf\x5d\x18\x47\xc1\x22\x86\xd9\x5c\xf8\xc6\xe4\x2b\x24\x37\x25\x3a\x6f\x3f\x36\x43\xd1\x32\x82\x45\x9a\x8c\x2c\x9c\xa3\x9c\x87\x90\x54\xa1\x4b\x27\xfd\x3d\x19\xfb\x85\x81\x0a\xe4\x3e\x9f\x07\x94\xc6\xd0\x39\x5b\x99\xa8\xde\x17\x80\x3c\x6f\xd7\xbe\xd7\x7b\x80\x92\xb2\x97\x69\x90\x7a\xff\x39\x19\x96\x51\x39\x9b\x0b\x47\x53\xdf\x43\x4a\x7a\xca\xa9\xe3\xf2\xcb\x5e\x4f\xa2\x8e\xba\x03\x42\xbd\x3b\xc3\xb7\x43\x85\x89\x11\x10\xd3\x02\x1c\x58\x99\x1d\x1d\x27\x73\x55\xc5\x12\xa6\xc7\xb8\xfd\xbc\xd6\x57\xa9\x02\x3b\xa6\x3f\x0d\x3b\xa1\xc0\x4d\x2b\xd4\x44\x3e\xd7\x93\x59\x7d\xa8\x59\x29\xa8\xa2\x62\x46\xb0\x52\xd3\x57\xed\xba\x3c\xe6\xfd\x67\x73\xe1\x74\x8d\xba\x06\x04\x75\xed\x66\xf9\xa4\x0b\x38\xda\x01\xbd\x8f\x34\x2b\x59\x06\xf6\xf3\xc0\x16\xee\xe9\x0f\x9e\x18\xc0\xb3\x09\x08\x85\x6b\xda\xb2\x87\xc4\xbc\x85\x02\x07\xa3\x87\xb7\xe7\x70\xb3\x7a\x32\x00\x42\x5d\x2d\xa3\x87\xf2\x8d\x5b\x3e\xa6\x74\x5a\x1d\xaa\x8b\xdd\x08\xdf\xb1\x47\xc8\x14\x24\x6e\x5b\x45\x7b\xc1\x3f\xa1\x9d\xc6\xc8\x15\xfd\xbd\x25\xcb\x1b\x1a\xe2\x58\xa8\xe2\x8c\xdc\x2a\x53\x84\x42\x3d\x9b\x0b\x3f\x7b\x7f\xf2\xe4\x60\x56\x89\xbe\x68\x5b\xa7\x97\x65\xb4\x91\x56\x85\xc5\x13\xf6\x55\xe3\x0e\x0e\x52\x0e\x44\x0b\x54\x2a\xb4\x17\x84\x34\x7c\x42\x09\x55\x65\x3f\x3b\x75\x7b\xb3\x96\xe6\x55\x70\x59\x28\x1f\x7e\xa5\x4b\x9e\xa4\x72\x7e\x44\x59\xc6\xd1\x8f\x5f\x7d\x43\xf6\x8a\x7c\x82\x03\xd7\xe4\xf3\x92\xbe\xaf\xeb\x1a\x1d\x80\x9b\xb1\x45\x97\xf9\x7f\x37\x29\xc8\xc0\xb6\xb6\x8e\x6c\x2e\x7c\xbf\x1f\x7b\x7f\xc5\x80\xf8\x16\x64\xad\xf8\x0d\xc7\x06\xf0\x33\x1a\x54\xa2\x83\x22\xfa\xbf\x09\xb6\x3a\x74\x96\x6a\xca\x73\x44\xc3\xc1\xc6\xcc\xa3\xd9\x78\x7f\xa4\x6e\x4c\x83\x2b\xa2\x26\xbf\x70\x52\xd9\x57\x88\xa1\x8a\xee\x3e\xae\x8d\x85\x09\xe2\x83\xc4\x70\xf4\x05\xdd\xfc\xde\x8f\xfd\x1a\x32\xde\x78\x96\x37\xb9\xd8\x37\xe9\x66\x3e\x3f\x73\x88\xc4\x6c\x4b\x04\x55\x78\x60\x23\x6b\x7b\x4d\x9a\xaa\x06\xfa\x27\xc7\x70\x62\x7b\xd7\x8d\x0d\x43\x97\xcf\x9c\x1e\xae\xac\x49\x26\x36\xcc\x38\x55\x74\x7c\xbf\x86\x87\x5f\x08\x2a\xd8\x8d\xd6\xf0\xda\x13\xbc\xcd\x0e\x6c\xda\x0a\x09\x3f\xb5\x47\x53\xaa\x77\x84\x2a\x2e\x55\x22\xe3\xbc\xbf\x7b\x14\xc1\x5d\x0b\x3a\xc8\xab\xd0\xaa\x21\xd7\x63\x9c\x1f\xa4\x08\xa0\xc5\xa7\xfd\x15\x9b\x2f\x01\xe8\xa2\x1b\x89\xc3\xf5\x8f\xcc\xd6\x64\x69\x04\xa9\x56\xe3\xad\xad\x09\x07\xf2\xe3\x86\xcf\xa8\xe8\x6a\xed\xda\x2a\xed\x7a\x0a\x4a\xb7\x23\x55\x18\xa5\x74\xd7\xb1\x4b\x2d\x02\x0d\xb4\x41\x9f\x80\x54\x30\xf1\x25\x9f\xe3\x0f\x9b\xe2\x1d\x56\xa5\x2c\xd7\xbf\xd7\x14\x0f\x71\x2d\xce\xcb\x8c\x1f\x9e\x97\x0f\xdc\x43\x8e\x83\x5d\xd5\xdc\xfa\xc8\x76\xc9\x27\xf7\x4c\xe0\x16\x80\x4d\xb3\xee\x8a\x27\x05\xf3\xd2\xdf\x9e\xad\x20\x88\xa9\x8a\x85\x17\x44\x35\x8c\x50\x31\xba\xae\x4b\xae\xfd\x12\x22\x76\x36\xa7\x31\xb9\x99\xc3\xa2\x50\x91\x19\xdf\xaa\xa3\x41\x9c\x7c\x5c\x10\x3f\xb2\x4c\x2b\x60\x08\xa4\x6c\x3c\x5e\xbf\xce\xbd\x45\x37\xdf\x33\xa9\x03\x35\x6d\x50\xe4\xb5\x01\x22\x26\x15\x4f\xfc\x61\xfb\xb3\xfa\x33\xf5\x2a\xd8\x2d\x88\xbc\xdb\xf8\xf7\x8b\x2c\x1b\x9a\x3b\x3f\xb7\xf0\xa6\xae\x1b\x6f\x5a\x72\xeb\xfc\xf9\x37\x89\xd6\x42\xee\xa4\xe6\x17\x03\x3c\x99\xb1\xff\xcf\xfd\x4d\x8a\x9c\x89\x18\x90\xbc\x29\x57\x59\x05\x7b\x4c\x46\x35\x95\x9b\x38\x90\x3f\x44\x12\xd0\xc1\x74\xb4\x5b\xfe\x4d\x29\xf4\x2a\x04\xbb\xd1\x81\xbc\xbf\xa0\x4d\x05\x2c\x58\x25\xd8\x86\x31\xc1\xa6\x3e\x47\xd1\x99\xa1\x1a\x66\xdf\x5b\x90\xec\xa2\x60\x62\x46\x41\x87\xd0\x40\x1b\x03\x04\x8c\x3f\xef\xe9\xcb\x6b\x35\x7a\x76\xd7\xda\xf4\x59\xad\x5b\x00\x3e\x13\xf4\x33\x3e\xf2\xa2\x54\x75\x81\x8a\xb5\xdc\x67\x76\xc6\xeb\x0f\x54\x68\x3f\xaf\x69\x7c\xb2\x8c\x2a\x60\x97\x03\xc8\x53\x8f\xbc\xd1\x24\x52\x4f\xe8\x72\x02\x6e\xe6\x0b\x33\x95\xd9\x67\x31\x4a\x49\x45\x67\x32\x35\x75\x97\x7c\x1c\x36\x3f\x89\x0e\x3e\xd7\xdc\x10\x34\x98\x46\x5d\xba\xcf\x20\x0d\x14\xef\x38\xa8\x44\xa5\x5b\x38\x47\x73\xe9\x68\x8d\x36\x68\x17\x21\xa9\xc3\x6a\x92\x8e\x39\xf8\xe1\x16\xa5\x7e\x02\x6e\xc1\xf3\x81\x80\x26\xa6\x1e\xdb\xcd\x5e\xdb\x4d\x55\x48\xea\xbe\xc5\xcf\x83\xcc\x2d\x52\xd4\x33\x90\x7d\xec\xf0\xe1\xd6\x64\x45\x60\x02\x37\x30\xcb\x5e\x23\xef\x2e\x75\xb8\xb7\xc2\x2f\xab\x50\x73\x34\x9a\x22\x4d\xce\xeb\xaa\x0c\x9e\x15\x9f\x96\xbd\x96\xc7\x6b\x08\xfa\x26\xbb\x98\xf0\x37\xd7\x70\xf8\x28\x66\xb8\xbb\x8c\xdb\xa4\x2c\xca\x80\xd0\xc8\xb9\xf8\xe1\x24\x0b\xa8\xce\xf9\x85\xa9\x4c\xa8\xcd\xa7\x20\x70\xe2\xb9\xe3\xbf\x3d\x37\x58\x49\x2f\xaa\xb1\x2a\x73\xbe\x22\xe4\x98\xd8\x90\xe2\xa0\xad\xe9\xbe\x62\xd7\x24\xd0\x67\x24\xc5\xd5\x3b\x15\xab\x35\x0b\xd8\x36\x14\x63\xdb\x75\x43\xf8\x90\x07\x63\xca\x57\x5d\x30\x2a\xb9\xff\xb9\xf5\xb3\x38\xe5\xbe\x7e\x51\xd3\x8f\xf5\x1b\xf1\x69\x2f\x8f\x52\x44\xf3\xa1\x6d\x07\xa6\x89\xa2\x2b\xde\xfe\x56\x72\x53\x15\x49\x20\xf6\x07\x8b\x11\x97\xef\xd4\xd0\x7e\x54\x81\x8e\xb7\x4e\x76\x8f\x54\xa5\xf8\x99\xd1\x2f\x65\xfa\xdc\x92\x0c\x2c\xd0\xa9\xd8\xb8\x0e\x21\xa7\x42\xa6\xe7\xef\x95\xa5\xac\x5a\x39\x1a\x9f\x6b\x12\xbc\x94\xc0\xf5\x49\x9d\x71\x4d\xfe\x7d\xff\x30\x2d\xc1\x2d\x08\xf8\x5a\x6a\x8c\x66\x8e\xde\x8d\xf3\x42\x75\x60\x34\xaf\x2d\x6b\xc0\x2e\xe3\x80\xe6\x31\x5b\x55\xe0\x01\x2c\x04\xa6\x98\x25\xa4\xcf\xdc\x3b\x22\x09\x7d\xd5\x94\x5c\x6d\xad\x07\x9d\xc7\x55\x28\xec\x8f\xda\x77\xc8\x81\xa3\x85\x4a\x56\xb4\x7b\x91\x89\xa0\x6b\xd2\x70\x32\x77\xc4\x70\xbe\x38\x99\xcc\x49\x72\xbd\x8f\xd6\xd8\x2f\x04\xfb\x71\x37\xa5\x27\xfd\xed\x85\xc9\xdb\xa3\x43\x7c\xd6\x21\xee\xbe\xc8\x8a\xef\xb9\xa0\x9e\x00\x1b\x2e\xd5\x5a\xab\xbc\x7b\x4a\x5b\x86\x0f\xaf\x48\xae\xf6\xe9\xdc\x37\x36\xe3\xaf\xe1\x69\x75\x60\x9a\x90\x7b\x30\x78\xab\xe5\x1c\x81\x09\xce\xa7\x5b\x64\x91\x94\xf5\xa2\x98\x9e\x99\xb1\x4f\x71\x12\xc4\xa4\x84\x7d\x1f\xba\xcc\x08\x60\x8e\x32\xca\xf3\x51\x45\xba\x7d\xa5\x07\x75\x8d\x68\x78\xa1\x34\xad\x60\xcc\xdf\xb5\x33\x34\x33\x35\xe8\x43\x33\xf6\x2e\x0b\xff\x72\x97\x1a\xf8\x1c\x91\xdc\x67\x73\xe1\xca\x31\x4a\xd6\x4e\x80\x5b\x12\xc3\x2b\xe3\x90\xdd\x40\x43\x26\x90\x3b\xf8\xcc\xef\xd0\xa5\x24\x3d\x01\xc8\x4f\xff\xe5\xdd\x16\xa5\x9f\x2c\x9a\x5d\x74\x84\x1d\xfe\xfe\x9a\xe4\xb6\x03\x66\xd9\xc5\x35\x1b\x52\xb3\x4b\xbe\x41\x46\x69\x4e\x63\x05\x81\xa1\x16\x45\xd5\x87\x87\xe5\xda\xa1\x40\x24\xd6\x11\xe4\x61\xb3\xae\x99\x0b\x51\xa4\x49\x2c\x5a\xf9\xa5\xc9\x4d\xfc\x44\x28\x42\x1f\x31\x22\x99\x31\x70\x5d\xb3\x08\x85\xc0\xa7\xad\x44\x0f\x20\x26\x5d\xf0\x1f\xe3\xe5\x29\x52\xc0\x0c\x0e\xf4\xe3\x51\xc9\xcc\xb1\x0c\x48\x05\x57\xa1\xbf\x52\x9d\x60\xbc\xb1\x53\x21\x72\x22\x9b\xea\x63\x32\xe0\xc1\xf1\xfb\x93\x35\x9d\x07\xb9\x35\xfa\xa4\xd7\x94\x19\x31\x35\x0b\xa4\x73\xd0\xb3\x3a\x0c\x0e\x79\xa2\x5a\xe8\x31\xfe\xbb\x5b\xae\x18\xe8\x96\x90\x0b\x21\x11\xbe\xa1\x6b\x75\x5f\xad\x45\x0b\x7a\x32\xf7\xae\x91\x23\xb5\x1a\x01\x0d\x9d\xed\xf4\x91\x89\x83\x95\x09\x99\xef\x43\x96\x5d\xd4\x0e\xc8\xce\x39\xcf\xda\xc4\x1d\xa5\xcd\x83\x4d\x09\x8c\x45\xf4\x90\xf6\xbc\xab\x0d\x7e\x31\x89\xc5\x6b\x3e\xd4\x8c\x23\x4a\x04\x42\x4a\x28\x67\x1d\x95\xd7\x9e\x48\x2e\x12\x3b\x58\x69\x95\x71\x55\x7d\xba\x5b\x8e\x26\x7f\x05\x97\xc1\x4a\x50\x46\xea\xfc\x2c\xb5\x37\xaf\x11\x5a\x56\x00\xd3\xb7\xb9\x34\x79\xea\x9f\x0e\xb0\xa8\x29\x95\x80\xb3\xb9\x70\xdb\xa9\xf8\x91\x81\x6e\x20\x78\x4f\xb9\x37\x15\x09\x30\x33\xc8\x83\x6c\x2e\xbc\xec\x89\x66\x25\x2a\x22\x9f\x3b\x05\x46\x4f\x63\xdc\x06\xc5\x7d\x1d\xb8\xa6\x25\x36\x14\x5e\xc5\xd6\x5e\xe0\x5a\xd0\xae\x14\x03\xda\x89\xff\xe0\x62\x72\x5f\x97\x31\x81\x40\xd2\xdc\x9e\x5d\xcd\x70\xa2\xb7\x81\xe8\x88\x86\xd9\x52\xe0\x66\x6b\x08\x0a\xe5\xd1\xf4\x79\x45\xd7\xb9\x0e\x1c\xe0\xe2\xc0\xb4\xa8\x4e\x48\xd8\xc6\x85\x68\x40\x01\x99\x2c\x6d\x9c\x94\x57\x75\x2c\xa8\xf6\x6a\x36\x17\xbe\x3a\x79\x48\x22\xc5\xac\x30\xe7\xb3\xf0\x9c\x36\x02\x10\x84\x20\x16\x01\x7e\xc4\xbb\x59\x9f\x05\x36\x72\xd5\x86\x48\xfa\x8f\x6f\x6b\x79\x0b\xad\x7d\xed\x4b\xe4\x2d\xdf\x6c\x34\x3d\x8e\x3b\x27\xe5\x57\x54\x22\x2b\xaa\xb2\xf2\xea\x8e\xb3\x9a\x6d\xa6\x09\x6c\xe8\xfb\x80\x24\xb4\x4a\x0e\x35\xb1\xdc\x74\x52\x3b\x4d\x55\xbd\x2e\x4d\x7c\xa3\x0a\x90\x4d\x8b\x3c\x56\xc8\x3f\x72\x41\x91\x1c\xc7\x04\xfb\x56\x5d\x69\xcc\xae\xb6\x45\xc4\xf0\x7c\xc8\xbd\x40\x8c\xa6\xa7\x15\xd2\x19\x30\x71\xde\xe3\xc8\xa4\x57\x34\x24\xb7\x0f\x4a\xa5\x68\x07\xf1\x82\xf8\x8b\xc5\xc6\xd8\x16\xe5\xb3\x26\x4f\xa1\x32\xde\x0e\x79\x80\x4c\xe9\xa0\xd1\xa9\xa5\x8d\x3d\xe9\x5b\x20\x21\x90\xa8\x8e\x05\xab\x9a\x38\x95\x9f\xc5\x97\xa4\xe0\x58\xf6\x0c\x3f\x9e\xb0\x03\xf3\xac\x81\xf2\x2d\xcd\x71\xd3\x06\x81\x4b\x33\x3f\x1e\x79\x3b\xc6\x27\x9f\x6e\x0d\x78\xd1\x4f\x7d\x2e\x86\xca\x8b\x98\x7f\x5f\x33\xaa\x76\x89\xc9\xa0\x02\x7f\x4f\xfd\x60\x08\x03\xbc\xce\x87\xc4\x55\x01\x89\xe9\x33\x6e\xa3\xd2\x03\x8d\x7d\x9d\x6b\x12\x75\x0e\x7f\xcc\x3d\x33\xe2\xb3\xb3\x9d\xe2\x7c\x52\xff\xf1\x9c\x64\x5a\xf9\x98\x89\xac\x25\xba\x9e\xcf\xf4\x1d\xac\xa0\xfa\x80\xc9\x89\xf5\x46\x78\x36\xf9\xcd\xb8\xca\xe5\x14\x0c\xb2\x56\xb6\x4d\x0a\xd0\xe5\xfa\xa1\xc6\x98\x82\xd6\x23\xc1\x81\x6f\xb1\x9e\xc7\xc2\xa3\xc9\x94\xe0\x6e\x71\xf4\xfd\xf6\xac\x44\x9e\x74\x44\x6f\x2f\x7c\x57\x99\x28\xf9\x16\x8a\x27\x57\x2b\x9f\x4c\x38\xee\xc0\x12\x93\xa0\xee\x31\x7a\x5b\xac\x4f\x51\x45\x1e\x60\x2c\x8b\x7f\x5e\xab\xb7\xbd\x88\x03\x6c\x01\x91\xeb\x49\x83\xfe\x83\x79\x58\x29\x60\x33\x88\x8e\x75\x96\x50\x2e\x58\xa5\xf8\xd5\xac\x80\x4e\x85\xa6\x73\x3f\xd0\x6c\x65\xa8\xc3\xa6\x6f\x51\x55\x44\x96\x24\xfd\x70\x75\xf2\x49\x11\x50\x62\xc9\xf7\x99\xb7\x92\xd8\xbf\x6e\xe4\x13\x8c\x68\x46\xad\x23\xbe\x7e\x49\xe4\x10\x25\xca\xc8\xb3\x36\xc6\x65\xa5\x13\xb0\x6a\x43\x32\x36\x3b\x8a\x87\x52\x4f\xaa\x97\xc2\xed\xad\xd8\xd0\xb7\x30\x2b\x86\x47\x55\xe5\x9b\xea\x88\x49\x3c\xa9\xf3\x99\x78\x42\x0c\xa9\x2e\x3e\xa5\x60\xfd\xe1\x4c\x8c\xc3\x0c\x2a\x8d\xc7\xdc\x23\xdd\x83\xd4\x31\x0f\x28\x31\x8c\xea\xea\x67\xb4\xec\xc1\x75\x03\xe1\x18\x15\x9e\x7d\xb8\x71\xb0\x5c\xe2\x3c\xf9\xec\x8b\x9a\x7f\x2a\x76\x0b\xd8\x8d\x52\x45\x1e\xfd\x5f\x1a\x77\x95\x96\xa1\x31\xe5\xdf\x18\x26\x6d\x7c\x42\xd3\x42\x20\xd4\xb3\x91\x42\x4d\x52\x8b\xee\x95\x41\xba\x86\x03\xbb\x10\x1b\x0f\xce\x68\x49\x10\xe1\x68\xb8\x17\x88\xdb\x03\xfd\xb5\x4f\xa4\xed\x13\x56\xff\xed\xeb\x64\xe7\xc3\x6d\x90\x98\xdc\x87\xea\xc4\x46\x3d\xaf\x06\x05\xcf\x87\x84\x29\x98\xd7\x2e\xe8\xc0\x52\x1f\x41\x56\x1f\x47\x07\xc2\xbe\x15\x57\x6a\x5b\xdb\x2e\x56\x50\x05\x0a\x38\xcc\x94\xfd\x71\xb5\x60\x5a\x40\x9f\x1a\x5e\xd0\x3a\x8c\xc8\xf3\x02\x51\x56\xfe\x62\x6c\xb2\x6a\x47\x05\x91\xe3\xa4\xbe\x31\x51\xbe\x45\x48\xa7\x8c\xd1\xa5\xdc\xde\x39\x50\xf6\xb5\x5a\x85\xee\xd7\xdb\xcb\x07\xf1\x3d\xee\xa1\x92\x1b\xdb\xe8\xbe\x77\x88\x05\xd1\x5b\x5a\xe7\x36\x62\x88\xbf\xda\xa5\xf1\x84\x08\xce\xdb\x50\xea\x9b\xa5\xce\x2c\x1c\xa1\xa5\x32\xc0\xf5\x25\xf4\xfe\x1b\xc7\x95\xd4\x01\xd3\x93\x39\x7c\xe1\xe2\x30\x37\x81\xb7\x30\x61\x85\xbf\xb0\xcc\x1d\xdb\xe5\x9e\x65\xea\xe8\xd1\xa7\xec\x9c\x2b\xc3\xca\x64\x3a\x1f\x4e\xfd\xf5\xb8\xce\xb5\x2e\x40\xe2\x20\x57\x70\xad\xbf\xf6\xaa\x4c\xc9\xfc\x1a\x2a\xd1\xf0\xf4\xb5\x41\x7a\x4e\x56\x8d\x73\xb2\x4f\x12\x79\xa5\x45\x40\x28\xef\x30\xdd\x25\x25\x6b\x99\x8f\x05\x4f\xbf\x6e\xdc\xa2\x6b\x8e\x54\x01\x57\x8d\xa0\xd1\xfc\xff\xf6\xbf\x4a\x3b\x48\xd8\x13\x51\x38\xca\x6b\x1b\x58\xa6\xa5\xb8\x7e\x2e\x8c\x94\xfb\x9f\x8b\x1f\xd1\xd3\xf5\xb3\x1a\xa2\xdb\xb3\x02\xdf\xb7\xe3\x9c\x21\xbd\xea\xa1\xe4\xd7\x76\xb4\xc5\xdd\x64\x56\x06\xdd\x3f\xee\x2a\x05\xac\x03\x48\xc3\xdc\x33\x35\x65\xb2\xcc\xc1\xfd\x80\x3a\x30\xe5\xc2\x37\xb9\x7b\xfc\x62\x5c\x51\x86\x9b\x3d\x99\x3e\x17\xb5\x60\xe1\x51\x0d\x70\xae\x4f\x02\x46\xca\x3a\x88\xbb\xf5\x2a\xfd\xd2\xe2\x18\x2d\x00\x9a\x16\x13\x61\xa8\xa8\x6d\xd5\xa6\x3e\x3a\x0c\xc3\xa5\xf4\x6b\xce\x6b\x0b\xc6\xa9\x48\x22\x45\x47\x7b\xb7\x56\xcf\x62\xe4\xc6\x72\xcf\xa7\x96\x2a\xf4\xf1\x86\x03\xb4\xc7\xf8\x6f\xcd\x2d\x1e\xd8\xf1\x3c\x2b\xb5\xf4\x21\xc5\xa9\x0e\x46\x29\x07\xc7\x69\xa4\x7e\xb6\x8b\x1d\xf9\x73\x99\x97\x8c\xd2\x11\x5f\x3a\x54\x2d\x1c\x1c\x14\x1b\x1d\xf7\x3d\x35\x34\x71\x06\x92\x2a\x97\x9a\x48\xcd\x98\xa9\x35\x50\x58\x6f\x9e\x2d\xed\xea\x7e\x4d\x2e\x39\x88\x4a\x22\xc8\xcf\x8e\x23\xaf\xea\xe8\x2d\x1b\x88\x3b\xdf\x38\x88\xa5\x44\x05\xe4\x41\xe0\xd1\xda\x2f\xf3\x99\x67\x64\x04\xa9\x07\x05\xe4\x82\x89\xd9\x5c\xf8\xcc\x21\x25\x8b\x20\x38\x28\xb0\xb1\x4b\x6a\xdf\x13\x0a\x67\x08\x51\xe0\xb0\x04\xe2\x2e\x7f\x41\xde\xcf\x94\xc9\x53\xb2\x0e\x74\xf2\x8c\xf6\xbc\xe5\x83\xbf\x95\xf6\xf1\x2b\x5b\x74\x44\xc8\x88\x38\xd4\x34\x83\x79\xb3\x64\x1e\xe8\x48\x5c\x86\x83\x7d\xf6\x79\xf7\x29\xef\xdd\xa2\xd2\x61\xac\x89\x09\xde\x54\x4a\x0f\xc5\x9a\x6a\xf9\x41\xed\xd0\xc7\xb8\xec\xf9\x98\x40\x4f\xa8\x5d\xff\xdc\x4a\xfe\x46\x09\x62\x52\x42\x20\xca\xe7\x78\xda\x77\xb3\x24\xec\x69\xea\xb5\xa7\x15\x21\xc7\x20\x9b\x0b\x0f\x69\xba\x15\x1e\x24\x55\x64\x0a\xbd\xa1\x6f\x35\x2b\x3c\x42\x17\xd7\xa2\xeb\x70\xa2\x4c\xa9\x5f\xdc\x0c\x2e\x50\x48\xcd\x97\x0f\xc6\x58\x83\xee\x80\xdf\xe0\x5d\x23\xaf\x88\x6f\x70\x4a\x7b\x36\x17\x3e\xb6\x4a\x9f\x4f\x53\xb9\x33\xfa\x4d\x83\xcf\xeb\x00\x4a\x07\xfa\xb8\xc6\xc4\xf4\x8d\xd4\x6b\xa3\xf5\xd0\xee\x46\x95\x0a\xe7\xae\xb1\xf7\xb2\xf6\x06\x85\xa2\x8a\x49\x21\xe1\x31\x32\xd2\x6d\xd0\xed\x29\x8b\x17\xfa\xf9\xa5\x8a\xdb\x97\xa3\x74\xeb\x76\xaf\x96\xeb\x8d\x9b\x92\xd0\xf0\x3b\x3b\xb9\x42\x80\xe9\xa3\x2a\xf2\xe3\x7b\x99\x2e\x0c\xab\xe0\x0a\xe6\xe0\x9a\xfa\xca\x71\xe9\x46\x7f\x5d\x67\xf4\x70\xae\x78\x46\x51\xc2\xf7\xed\xe8\x20\xa2\xbd\xa1\x51\xef\xc4\xf9\x51\xad\x1e\x63\x93\x9f\x98\xca\xdd\x8b\x82\x42\x37\x63\xc6\x89\xfb\xfa\xe4\xd3\x0a\xe3\x11\x50\xf7\xec\x5c\x38\xee\xd9\x01\x0a\xcc\x81\xe9\x56\xfe\xb9\x5b\x9f\x4e\x97\x59\xfc\x7f\x7f\x26\x57\x10\xb1\xab\x50\x91\x5d\x33\xbe\xaf\x98\x32\x09\x46\x23\x95\x4d\x4c\xbb\x23\xe5\xf1\x33\x69\x5a\x6b\xdb\x14\x2a\xd8\xa2\x9d\x57\x51\x50\xe1\x32\x85\x99\x4f\xbc\xca\x19\xf6\x81\x1f\x57\xd8\xa9\xd1\x53\x35\x4b\x82\xd6\x76\xde\xac\xab\x28\x52\xbc\xa6\x05\x9c\x4a\x74\xe0\xf2\xcc\xec\xe6\xd7\x62\x86\x62\x37\xcd\xb8\xd7\xaf\x91\x65\x07\x95\xb4\x30\x9e\x5f\x4d\xa7\x76\xd9\x85\x09\x0b\x82\x4b\xb8\xcc\x9f\xe7\xea\x86\x6e\x89\xc9\xf8\x5c\xbe\x21\xee\xda\x76\x27\xa8\x59\xab\xef\x1d\xa5\xa2\x02\x1d\xa8\xfb\xb5\x84\xdf\x32\x14\xa4\x11\xf0\x59\xb8\x7a\xb4\x53\x17\xd9\x61\xfd\x2f\xb6\xa6\x5f\xb8\x98\xbc\xff\xf6\xf6\x36\x7e\xa4\xee\x58\xd3\x1c\x6b\xaf\xd1\x3b\x97\x34\xc8\xbc\xf2\x4e\x2a\xf4\xa4\x80\x6c\x88\x5a\xba\x26\xde\x91\xd0\x05\xd9\x5c\x68\xbb\x4a\xeb\x9a\x0d\x98\x99\x7f\xcd\x92\x21\x12\x87\xa2\x62\xa9\x1e\x0f\x9b\xb5\xd2\xa5\x16\x9b\xaf\xce\x67\x0b\x7a\x2e\xcc\xb7\x4e\xa7\x65\xfa\x7b\x9a\x4a\x15\xe5\xcc\x62\x07\x79\x6c\x8a\x94\x2e\x8e\x52\xac\x3f\x5d\x9e\x00\x87\x4b\x2b\x1a\xbe\xbc\x62\x45\xc7\x3d\x9b\x19\x5d\x38\x9e\x30\xf4\x36\x2d\x81\x66\xfb\x56\xf3\x20\x91\x4e\x9a\x54\x78\x88\x51\x4e\x5b\x0f\x24\x9f\x5f\x36\x2b\x28\xd8\x0f\x6e\x95\xb7\x8e\x2b\x90\x7b\x47\x84\x8f\x8c\x53\x08\x76\xec\x55\x50\xd8\xc7\x7e\x55\x48\x3a\xfa\x52\xba\x65\x27\x54\x46\x34\xa4\x4d\x76\x20\xa4\xe6\x33\x57\xbf\xc3\x76\xcd\x8d\xc0\xf5\x03\xa5\xcc\xff\xb7\x8a\x96\xf6\x40\x40\x94\xb2\xdd\x78\x5a\xd1\x1c\x00\x25\xe8\x16\x58\xe1\x98\x79\xf8\xb0\xf4\x84\xa6\x4e\x6b\x12\x54\xfb\xab\xd1\x9a\xaa\x17\x0e\x4c\xab\x10\xc5\x46\xfa\x97\x77\xec\x4c\x16\xb8\xc8\xb6\xd9\x0f\x72\xf7\x2a\x61\x4d\xe9\x92\x18\x37\x1c\x50\xed\xc0\x0a\x05\x4a\xd1\x4b\xbd\x7c\x5c\x17\xdf\x87\x20\xb6\x49\x09\x8f\x9f\x54\x2d\xbb\x0b\x25\x48\xdf\xd9\xb2\xd3\x8a\x9c\x36\x76\x61\x9d\xd2\xbf\xa3\xfb\xfc\xed\x09\xd5\xee\xa2\x02\x7d\xaf\x9c\xcd\x85\x4f\x69\x3a\xca\xfc\xed\x70\x01\xb5\xf4\xac\xf9\x23\xd4\xe2\xc1\x27\xd8\xb6\x61\x21\x2b\xca\xa7\xd9\xfd\x12\xbc\x1c\x26\x4e\xfe\xd9\xb9\xba\x8d\x13\xb4\x99\xe0\xb1\x51\xec\x8a\x63\xc5\x94\xe9\xd1\xf9\xc3\xb0\xc6\xd9\x2e\xe8\x03\xb7\x0e\x2c\xf9\xde\xc2\x0f\x77\x8e\x54\xd6\x86\x03\x1b\x08\x72\x99\xbe\x9a\x80\x13\x6b\xc9\xb1\xd5\x6e\xed\xe2\xda\xce\x88\xa5\x44\x4f\xbd\xad\x71\xbd\x1d\x3a\xcb\xe7\x02\xc5\xe1\xb7\xdf\x55\x25\x1a\x20\x11\xd8\x9f\xdf\x1e\x65\x55\xde\xed\x01\x16\x05\xcf\xce\x7d\xb2\x62\xac\xc3\x32\xa5\x5c\xb8\xdc\xb9\x63\xdb\x91\xab\xb4\x0a\xc1\xa5\x6b\xcd\x8b\x15\x60\x26\x14\x95\x17\xed\x13\x54\xa4\x1b\x67\xfd\x13\x97\xb6\x64\x96\x6d\xa3\xf4\x4d\x8a\x79\x81\x67\x02\xbb\xc2\x82\x47\x7a\xc3\x3e\x39\xf4\x87\x2e\x9b\x99\x34\x29\xd8\x3f\x2b\x28\x29\x39\x77\xba\xb0\x5c\x33\xc0\x82\xa0\xcc\x29\xe1\x37\xae\x56\x6a\x1e\x82\x31\xdd\xb8\xab\xfb\x0a\xf0\x8c\x1b\x97\xc5\x9b\xed\xbf\xd1\x51\xe1\xcc\xd0\x05\x9b\xd4\x25\xc8\x44\x18\xd9\x5f\x3e\xd6\x5f\x67\xc0\xe2\xac\x09\x3c\xe4\x0a\xd4\x52\xfa\xae\x8c\x2a\xb9\x60\xf2\xc4\x25\xf5\x57\xcd\x28\xb6\x00\x02\x1a\x2d\x78\xfe\x95\xe9\x5a\x91\xc8\xf4\xaa\x82\xa5\xb8\x68\x7c\x1c\xb7\x81\x07\xd5\x3d\x9c\x59\xbb\x4f\x83\x29\x00\x07\x10\x8e\x61\xc8\xd4\xa5\xd6\x66\x37\xa8\x89\x93\xee\xf9\xb1\xc9\xcb\x2f\x12\xe0\x20\xb7\x64\x51\x01\x78\x5a\x42\x7d\x57\xd3\xc1\x86\x2b\xa2\xa0\x59\x12\x04\x88\xf4\x47\x2e\x8c\x74\x93\xc3\x1d\x4c\x12\x70\xfd\xcd\x9a\x46\xee\x24\x29\x41\x6e\x6c\x1a\x91\x5c\x25\xbe\x45\x20\xe4\x69\x32\x4f\xdf\xa7\x10\xbd\x72\xf1\x85\xc7\x7f\xe8\x1f\x61\x47\x46\x49\x38\xf7\x18\x4d\xe7\x75\x45\x32\x97\xf5\x06\x58\x93\x3f\xb3\x7c\xa3\xcc\x35\x99\xd8\x2d\x83\x1a\x1a\xa3\x5e\x91\xa1\xa4\x73\xfa\x94\xa9\xad\x53\xa8\x2e\x6d\xbf\x77\x38\xaa\x0a\x38\x79\xb6\x83\xc2\x5f\xde\x35\xbe\x96\xec\xeb\x04\x1e\xf2\x10\x70\xc1\xa5\x78\x01\x99\x35\x4d\x2c\x1e\xdc\x28\x94\x54\x94\x23\x7f\xc8\x09\x4d\xea\x94\xa0\x2a\x74\x27\x90\x3c\x85\x69\xe1\x89\x8a\xa0\xa3\xe9\x13\xa6\xf3\x98\x0e\x4e\xeb\x7a\xa5\x79\xc8\x7a\x65\x34\x20\xe3\xa7\xd9\x18\x63\x96\x6f\xc1\x58\xa1\xb2\xab\xa2\x83\x31\x8a\x88\xdb\x9a\x87\x47\x8f\x2a\xea\x0b\x95\x0a\x23\x1d\x8e\xd4\xad\x56\x2b\x14\x54\xc2\xea\xad\xf6\xb7\xfb\xcb\xe5\xce\x9c\x0a\x57\xa8\x23\xe1\xa8\xfa\x02\x14\xe3\x1a\x5e\xbd\x56\xbb\x43\x1c\xe4\x05\x80\xa2\x27\xfd\xb5\x9d\xfa\xd7\xf8\x16\xb6\x91\xc9\x22\xeb\xb1\xe3\x03\x78\x62\xe1\x54\x00\x2a\x45\x2f\x1c\x65\x34\xe8\x7c\xf4\x02\x51\x91\xda\x86\xd5\x68\xdb\x2d\x33\xb3\x59\xaa\xe6\x39\x30\x9b\x0b\x8b\x4f\xb2\x80\xc7\xe6\x3a\x76\x36\x17\x8e\x50\xd2\xe2\xe8\x7e\x2b\xc0\xa4\x26\x2e\x4f\x5e\xa3\xd3\x4c\x41\xe0\xd7\xc5\x3e\x46\xc7\x25\x2a\xc3\x51\x8c\x71\xd2\xb8\x57\xbc\xb3\x08\x98\x28\xce\x91\x59\x7a\x6b\x22\xa8\x08\xac\x15\x95\x73\xc8\x28\x34\x21\x6e\xdd\x82\x58\x22\x6f\x58\x4f\x0b\x44\xb8\x5b\x56\xf8\x28\xc6\xda\xa9\xaa\x36\x12\xeb\x1d\x7d\xaf\xb7\x4c\x63\xa3\x72\xc6\xe6\x89\x50\xb4\xb9\x57\x17\x64\xd6\x3a\xbd\x23\x9b\x0b\x5f\x61\x32\xd3\xd9\x5b\x5b\x67\xb7\xde\xd6\xd0\xdb\xca\xac\x1b\xa4\x8e\xe0\x6d\x06\x49\x96\x1b\xf9\x85\x3d\x72\x3d\x9a\x01\xc9\xf3\xa2\xbd\xe5\x24\xcb\x70\x01\x29\x05\xd1\xf3\xfe\x41\x5b\xdc\xd6\xab\x35\xe4\xb0\x3d\xc6\xf2\x17\x9a\xd4\x86\x01\x45\x01\x1a\x3f\xe1\x24\xd7\x2e\xec\x42\xdf\x82\x4c\xd2\x34\xfc\x88\x16\x39\x28\xec\x8a\xc3\x35\x7e\xa3\x94\x24\x16\x04\x84\xa9\x48\xe4\xf2\xf2\xc3\x09\x70\x56\xa2\xe8\x57\x1f\x26\xbc\xc8\xc7\x35\xd7\x0f\x28\x99\x29\x35\xe7\x0d\xfa\xf4\xa3\x4f\x9d\x37\x6f\x51\xc2\x42\x61\x13\x3b\x66\xdb\xa7\xb7\xb5\xd3\x36\xee\xbd\xec\xd2\x90\x53\x01\x92\xe6\x68\xdc\xbd\x59\x0a\x3c\x9a\xa0\xa1\x6b\xf4\xe5\xb9\xf1\x43\xa8\xe3\x06\xd3\x7a\xe3\x63\x23\xb8\x85\x13\xae\x58\x54\x18\x23\x26\xaa\x94\x0e\x4b\x0c\x29\x07\xed\x9b\x24\xc8\xe7\xf9\xd9\x78\x6a\x6a\xbc\x08\x8b\x6a\xe9\x99\x3e\x66\xf0\x02\x8b\xb8\x48\x75\x58\x7a\x6a\xb7\xa2\xc0\x0d\x48\x99\xc5\xb0\xf0\x09\x79\xc4\xda\x5c\x91\xfe\xf1\xa7\x55\x67\x7f\x13\x13\x12\x54\x7c\x94\xb7\x69\xa6\x9a\xfe\xcb\x36\xdd\xa4\xb5\x88\x89\x1f\xb8\xc0\xe7\x7d\x16\xe3\xd1\xc5\x31\x7c\x48\xc6\xd5\xd4\x2f\xce\x8d\x90\xe5\x4e\x83\xb0\x76\xe6\x8e\x89\x03\x15\x1c\xbd\x03\x68\x69\x3b\x79\x94\x50\xdc\xf7\x4d\x8b\xdf\xf8\x6b\x1b\x75\xe3\x68\xcf\x8b\x95\x1b\x8c\x1f\x1e\xd0\x8a\xe5\x3c\x70\x0b\xd8\x95\x83\xac\x3b\x15\x29\xcf\xcf\x24\x0e\xcd\xcb\x97\x24\x07\xc7\x31\xb8\x20\x16\xe3\xef\x49\xff\xfe\x40\x32\xfb\xcd\x72\x17\xf4\x27\x8e\x35\x28\x2d\x23\x17\xf9\xd0\xae\xf3\x72\x63\xd3\x2b\x8a\x76\x11\xe5\xad\xa8\x4a\x6a\xe0\x81\xa1\xbc\xda\xa3\x1d\x32\x1b\x90\x12\x07\xf3\xde\xb6\x6b\x10\xaf\x2e\x5d\xac\x04\x80\xcb\x0c\x15\xcf\x6b\x17\x6a\x6c\x2f\xdc\x2f\x9f\xb1\x4d\x2d\xb8\xb4\x13\xa8\x7f\x6c\x6d\x8d\x99\x6c\xc0\xbf\xee\xd1\xca\x0e\x64\xfa\xc0\xc7\x5c\x6e\x3e\xd3\x7b\xb1\x36\x93\x43\x0e\xb3\x03\x6c\xdb\x2d\xab\x27\x3a\xe1\xf4\xf8\xaa\xdd\xbc\x5a\x52\xa8\xda\x3b\xdb\x14\xc8\x6e\x4f\xfa\xd1\xaa\x8c\xb6\x45\x3b\xf0\x38\xb0\x2c\x25\x4d\x5c\xa1\x67\x2a\x2b\xd6\x39\xa7\x18\xcc\xb4\xaa\x77\xbf\x46\xf7\xd5\x0b\x3c\xc0\x0c\x81\x62\x5a\x44\xba\xd7\x88\x64\x36\x98\x07\x6e\x99\x77\x60\x96\x4d\x64\x5b\x64\x11\x24\x25\x54\x87\x55\x7e\x36\x56\x0f\x8e\x56\x00\x6d\x5c\xad\x53\x1f\x0e\xb9\x13\x15\xf1\x7f\x04\xab\xd1\x57\xfd\x69\xaf\xe6\xd7\x82\x69\xcf\xda\xe3\xf3\x9f\x9b\x15\xbc\x07\x5c\xe1\x93\x68\x93\xb3\x14\x6e\x4b\xa7\x12\x48\x49\x60\x32\xe8\x62\x6a\xfc\xdb\xf1\xc9\x45\xb9\xc9\x61\xd7\xc5\x2b\xe2\xf8\xc6\x98\x35\x0f\x7c\xa0\xce\xeb\x6d\x1b\xb2\x9e\xc2\xf7\x37\xf5\x61\x21\x38\x7a\xae\xad\xc9\x97\x37\x25\x6e\x86\xa3\x75\x7c\x83\x06\xa6\x89\x5c\x93\x27\x3e\x66\xe5\x72\x5e\x3f\xb1\x21\xe1\x65\x0a\x6e\xd8\x43\x25\x5a\x4b\xcc\x9f\xaa\x25\x96\x16\x5d\xaa\x54\x77\xe7\xde\xbb\x74\x74\x5e\x2d\x8f\x63\x5f\xc7\xfb\xda\x34\xc8\x45\x01\x49\x7d\x5d\xbc\x50\x21\x73\x47\x99\x31\xa2\xdc\x33\xe9\x52\x35\x68\xe7\xc0\x38\x70\x41\x1f\xf2\x50\xf0\x97\x2e\x61\xa9\x46\x9c\x40\x5a\x83\x3e\xdd\xc6\x44\x77\x66\x2d\xa2\x65\xce\xe3\x49\x0d\x9c\x7a\xcd\x82\x9c\xb2\xf4\x9d\xbd\xca\x2e\x42\x02\x8b\x99\x99\xf3\x81\xd2\x2a\xa5\x18\x5e\x36\xc2\x4f\xed\x5e\xa0\xb5\x21\x2c\x64\x17\x08\x14\x2e\x27\xe9\x8e\xf5\x2d\x4a\xa5\x5b\xab\x27\x34\x90\x17\x1f\x18\x98\x1c\x72\xd1\x93\xf9\xfe\xa9\x94\x9b\xb6\x70\x76\x42\xb1\x51\x81\xeb\xd6\x20\x2c\x47\xf9\xd3\xb6\x21\x72\xdd\x75\x07\xcc\x4e\xd7\x7b\xf3\x5a\xed\x89\x0b\xa3\xc2\x46\xf3\xa1\x1f\x1f\x53\x04\xc6\x83\xb2\x85\xab\x54\xb9\xfa\xcf\x1b\x92\xc3\x06\x61\x85\x8a\x12\xc4\xe8\xcc\xe7\x7a\x2b\x5a\xe3\x81\x6f\x03\x8f\x3d\x12\xe3\x79\x45\x12\x87\x9e\x15\x15\x4c\x4b\xec\xe8\x67\x57\x2a\xb5\x92\x19\xd5\xd6\xbc\xca\x0a\x5f\x3b\x3e\xbc\x82\xbd\x09\x82\x7e\x33\x67\xf1\x84\x2e\x1c\x2b\x23\xa4\xfe\xe7\x9c\x6a\xea\xe3\x16\xa0\x43\x6f\x76\xea\x91\x04\x99\xca\xe5\x33\x84\xd7\xe7\x27\xb7\x79\x7b\x7b\x9b\x18\xb9\xff\xa4\xb7\x2a\xc0\x00\x7c\x95\x3c\x1c\x6e\xdd\xa2\x93\x24\xb9\x4b\x1d\x6f\x0e\xdc\x78\x83\x76\x1a\xc4\x86\xf3\x30\x76\x2f\xfb\xf3\xda\x64\x5a\x02\x5d\x3a\x99\xa4\xa3\xf2\x4d\x5a\xe2\x6c\x05\x6c\xf8\x47\x69\x9d\xff\xb4\x5a\x83\x98\x43\x40\x78\x12\xfe\x1d\x0d\x98\xdb\x8d\xcd\x32\x9f\xa3\xf6\x64\x96\xfb\x2c\x83\xed\x06\xa4\x84\x19\x2e\x30\xf7\x5c\x9c\x7e\xd4\x1b\xfd\x2a\x8c\x99\x67\x92\x4b\x04\xda\xb0\xec\x93\x4b\x17\x28\xb7\x6f\x96\x79\xad\x02\xdb\x09\xf3\x47\x14\xbc\x0d\xce\xb3\xc4\x29\x03\xde\x4c\x5e\xa8\x4b\xc7\x3a\x6c\x3f\xaf\xc8\x48\x05\xb6\x80\xce\x10\x67\xae\x6b\x51\xf6\x54\xe0\xa2\xa2\x92\xea\xfc\xe7\x49\x65\x78\x3f\x79\x62\xc7\xf4\x36\x2a\xdc\x52\x1b\xa1\xab\x8f\x00\xd7\x8d\x95\xa8\xc6\x68\x32\x8c\x26\x85\xd2\xb2\x72\xf0\x5f\x8b\x92\x6c\x06\x6a\xd9\x5c\x68\x28\xf8\x39\x2a\xba\x4f\x2b\xa4\x91\x7d\x93\xa7\xb9\xc5\x8c\xe0\xc2\xbb\xfb\xa8\x8e\x4e\xd1\x7e\xa0\xfc\xb8\x67\x87\xa8\x47\x38\xb5\x6c\xa3\x1d\x8e\x81\x5a\x68\xf3\x6c\x60\x63\x87\x77\x5f\xde\xbd\x4b\xb1\x9c\x47\x36\xcd\x43\x5f\x78\x47\xd9\x4d\x04\x39\x7c\xe9\x87\x83\xaa\x49\x78\x54\x3d\x4a\xfb\xe1\x25\x74\xb8\x33\x9f\x59\x22\x41\x14\x16\x0e\x3c\x2d\x43\x37\x96\x5f\x50\x91\x7a\x74\x70\x44\x57\xcb\xd2\x57\x9b\xd5\x7b\x70\x28\xef\x81\x51\xec\x3a\xc7\xea\xb2\x69\x02\xe6\xfa\x25\xd2\x40\xbb\xb5\x39\x82\x94\xe5\x54\xef\x8f\x4f\xa2\x3f\xae\xbb\xae\x56\xab\xb5\xfa\xd0\x01\xad\x24\xb8\x8e\xe0\x3c\xa6\xc5\x53\x36\x17\xfe\xac\x95\x9d\xbc\x77\x44\x55\x8e\x32\x1f\x4b\x3f\xc4\x11\xfc\x51\xd1\x07\x19\x4e\xf9\xf2\xcc\x15\x3c\x06\x78\x4c\x54\x34\x33\xa7\x53\x8b\xbf\xd1\xb3\x03\x13\xe2\x4a\x6b\xc0\x42\xb9\x50\x8b\xc8\xe6\x3e\xc1\x97\xbf\xd2\xa4\x28\x1c\x54\x99\x5f\xe6\x23\x6b\xc7\x28\xe9\xa6\x50\x8e\x6e\xc8\xde\x27\x28\xdd\x5a\xc5\xc0\x88\x68\xc3\x0d\x5f\x28\x4e\xbb\xf6\x88\x86\xf3\x51\x51\x89\x9e\x16\x2a\x73\x5f\x82\x3d\x4f\x50\x39\xa3\xeb\x1c\x7f\x6e\x20\x5f\x25\x0e\x72\x91\x67\xb1\x33\x27\xbb\x40\xbe\xb1\x22\x40\x34\x47\xe7\x67\xc7\x17\xb7\x26\x02\xa5\x07\x4d\xea\xe6\xd6\x7f\x0c\x07\xea\xdb\xdc\x71\x2c\xbc\xa8\x01\xbe\x31\x12\x3e\x68\xc6\x2b\xaf\x0d\x53\x9b\x4b\x8c\xf6\xc0\xa2\xf4\x82\xa9\xfa\x88\x85\x54\x39\xb3\xeb\xcc\x5d\xb2\x4f\x58\x05\x34\xf9\x88\x7b\x9b\x37\x2c\xf8\xb8\x5c\xf0\xd7\x06\x24\x0f\x5c\xe4\x5d\xa2\xc5\xf9\xcd\x11\xaa\x8a\xeb\xf4\x76\x9a\xd6\xcc\xdc\xaf\x8e\x11\xbc\x00\xd8\xd4\x7d\xbf\x36\x7e\x80\x52\x0b\x45\x99\x71\x38\xec\x19\xc5\xe9\x26\xe6\x51\x18\xe1\xd8\xa1\x0a\x95\x40\xc0\x68\xb2\xb9\xf0\x77\x1b\x64\x79\x9c\xb7\x03\xd7\x67\x84\x3d\x1a\x7f\x66\xcf\x4e\xbe\xcf\x7b\xd8\xac\x3d\xd7\x63\x2c\x19\xc3\x25\x8e\x40\x74\xb6\x61\xc6\x9d\x7a\x65\x79\x5c\xe6\xbb\x52\xd2\x63\xe3\xa6\x2b\x95\x6f\xf6\x19\xdf\x44\x69\xf1\xa4\x16\x0c\x49\x5c\x30\x85\x99\x65\x73\x61\xf7\xfd\x32\x56\x61\x7a\x0f\xab\x14\x44\x36\x28\x11\x5a\x83\x70\x0d\xef\xde\x5b\x07\xf0\x9c\xdf\x2d\x47\x55\x19\x6d\x56\x54\xe4\xaf\x53\x6b\xa5\x8a\x85\x99\xa0\x50\xfa\xce\xd1\x92\x27\x99\x8f\x4a\xf2\xae\x75\x0d\xeb\x93\x76\xd8\x38\xc6\xff\x81\xeb\x15\x16\x96\x69\xd1\xd2\x4a\xd9\xa6\xc6\xe7\x4f\xa9\x1e\x9f\xae\xc9\x07\xf9\xc6\x99\x41\x2d\x89\x54\x31\x81\xa0\x3f\xd8\xad\xcf\x7c\xa1\x82\x85\x48\x5f\xaf\x90\x3f\xca\xc0\xc9\x53\x93\xf7\x5c\x4f\xfa\xc1\x4d\x03\x95\x6c\x1c\xd9\xac\xfd\x3b\x76\x5d\x32\x16\x45\x57\xe8\x23\x10\x03\x84\x6f\xfa\x40\x36\x45\x69\xff\x43\xc6\xc4\x31\x23\xe5\xa1\x84\xa2\xd0\xfc\xb4\xaf\x09\xf9\x02\x64\x33\x8f\xb8\x5c\xf8\xed\x79\xa3\xd5\x7d\x51\xa2\x3d\x37\x7d\xa4\xf7\xe8\x58\x76\x1c\x77\x4c\x6b\xe3\x80\xb3\x34\x66\x67\x41\x36\x70\xd9\x14\x31\xf9\x07\x1d\x6b\x75\x7f\x4d\xc2\xa5\x0b\x32\xd3\x46\xc9\x8d\xa8\x92\xbc\x29\xc3\x7b\x9b\x02\xfd\x41\xa4\x80\x68\xed\xb6\x6f\xb1\x9c\xf2\x4e\x6b\xcb\xe6\xc2\x5f\x30\x6f\xaa\xec\x2c\x42\xc7\x9e\xc9\xed\x76\xdb\xe3\x1a\x19\x13\x56\xa2\x44\x9f\xe1\xb7\xee\xd4\x54\x86\xd9\xa0\x84\xf3\xff\x73\x3d\x69\xd7\xd7\x71\xe9\xb6\x3d\x81\xa6\x40\xff\xfb\x76\xf2\x8e\x3a\x26\x4f\x13\x1a\x5e\x3f\x57\x00\x21\x85\xc0\xa9\x50\x79\x0e\xba\xcb\x6f\x1d\xa3\xb8\x39\x06\x51\xd1\x6b\xde\x17\x7d\xd8\x77\xce\x71\x30\x0d\xec\x4e\x4c\x9d\x3b\x5b\x9b\x55\x34\x08\xb6\x21\xe1\xd3\xba\xcc\x43\x63\x64\x24\x62\x18\x1b\x65\xb9\x6e\x3b\xc3\xea\x83\xf9\x30\x0f\x5c\x36\xd4\xa5\x83\x9d\x0e\x89\x99\x9a\x96\xed\x88\x3e\x26\xdb\x67\x90\xc6\xe2\xa7\x17\x5a\x3d\x39\x58\xf9\xe2\x42\xe0\xf9\xd4\x55\x79\xcc\x12\x0d\xfe\xcc\xe0\x65\x9c\xc0\x92\xba\xd1\x55\x1d\x36\x98\x18\xd8\xed\x9d\x49\x05\x19\xe4\x54\x80\xe9\xf8\xa5\x4b\x99\xc0\x65\x3e\xb5\x6d\x84\xf2\xbe\xa3\x15\xae\x1a\x80\xa5\xfb\x6f\xd7\x65\x43\x0a\xd1\x86\x97\xbb\xa0\x27\xb5\xa7\x33\x19\xbb\xab\xc8\x43\x3e\x33\x56\xdc\xd6\x24\xef\x5e\xc0\x88\xc7\x2a\x7e\x07\x90\x46\xa5\x27\x7b\x6b\x06\x4b\x13\x54\x35\x94\x4c\x69\xad\x32\xb1\x09\xbc\x0a\x74\x69\xdb\x2d\x13\x1c\x55\x75\x02\xa6\x4f\xca\xe6\xc2\xe5\x2d\x9c\x83\x44\xcd\x1a\xab\x1c\xcb\x0a\x5a\x65\xfb\xbd\x7d\x0a\x77\xec\xa5\x19\xca\x39\x89\xe2\x0d\x5c\xd4\xa8\x5c\x9d\x6a\x3d\xa4\x93\xa4\x21\x28\x20\xd1\x69\x49\x07\x76\x72\xad\x4e\x9b\x2e\x08\x1e\x9f\x5a\x9f\xcc\xd3\xd8\x54\xd6\xe5\x80\xa9\x33\x7d\x92\x09\x7f\x42\x0c\x89\xe7\x9c\x77\x72\x41\xce\x45\xc8\xe3\xe3\xdc\x37\x15\x89\x38\xe8\x54\x10\xab\x2c\x8d\x89\xa3\xe4\xda\x87\x94\x2d\x28\x72\xdd\x3f\x1c\x56\xc5\x57\x50\x11\x53\x3c\x5d\x78\xec\x84\x2e\x0c\x69\xdb\x02\x7f\xf7\xf1\x35\x0d\x2e\x5d\x54\x44\x5f\x6c\xb4\x93\xaf\x49\xed\x3e\x4a\x89\x62\xd4\x84\x77\x35\x7e\x27\x22\x66\xe0\x54\x61\x8c\x10\xfb\xfd\x58\xf9\x0e\xa9\x9e\x0b\x3d\xde\xc2\x47\xdf\x52\xba\x34\xc0\xa1\x92\x9b\x94\x3b\xb5\x23\x36\xbc\xaa\xe6\xb9\xfc\x45\x98\x3b\xaa\x77\x3e\x88\x83\xdd\xd8\x5f\xac\x4b\x31\x5b\xa3\x32\x48\x0c\x95\x1f\xfd\xe8\x57\xdc\x83\xe5\x16\x40\xaa\x97\xb0\x4e\x4e\xbd\xb2\x95\x81\xc6\x6e\xad\x02\x17\x57\x65\x7a\xf1\x52\x9e\xcf\x02\xa8\x9d\x25\x3b\x7e\x32\x7b\x86\x28\xf9\xba\x0f\xec\x28\x99\xa3\x0e\x63\x23\xfa\x89\x7a\x91\x2a\x25\x19\xbf\x5e\x3e\x44\x56\x4b\x4a\x43\x2d\xfd\xab\x89\xa3\xf4\xfd\x19\x8b\xe3\xf1\xae\xd1\x1f\xd7\x5c\x23\xe7\xfc\x4c\x16\xf7\xd2\xee\xa3\xad\xaf\xc6\x42\x0d\xed\xd9\x5c\xf8\xe0\x64\x8d\x8b\x8c\x4a\x25\x48\x78\x99\x79\xe4\x65\x6d\x0c\x0e\x6c\xbb\x02\xb8\x40\x50\x4f\xc6\x9d\x97\xfc\xdb\xa2\x4d\x81\xbf\xec\x6f\xbf\xd4\xa2\xa1\xf1\xf2\x38\xf0\xd9\xfc\xfc\x23\x7b\xf5\x5e\x4c\x54\x7e\x8a\xda\xf4\xb5\x6b\x34\x47\x86\x0a\xa1\x03\x76\xe3\x63\xcb\x35\x2b\x63\xdb\xce\x13\xe4\x37\x18\x72\x19\x07\x47\xc9\x44\x41\xfa\xdc\xc5\x15\xe3\x7f\xcc\x96\xb9\x1d\x76\x80\x45\x21\xda\xff\xd5\xc4\x66\x0e\xb7\x01\xd7\x87\x5e\xd6\x06\xd9\x79\xd8\x46\x71\x36\xfb\xd6\x03\xc3\xf5\xe4\xde\x43\x02\x41\xfc\xb3\x85\xfd\x95\x2b\xa6\xcd\x9b\xa6\x91\x43\xd5\x4b\xa0\x02\x90\x14\xe2\x7b\xf4\x5e\x8d\x46\x1f\x40\xcf\x73\x02\xdf\xa2\x9f\x25\x4f\x95\xe2\xb8\xb8\x0b\x98\x57\x9b\xb1\x37\xfb\xc9\x06\x77\x37\x24\x1e\xac\xd3\xa9\x12\x5b\xf4\x8f\xdc\x2b\x94\xde\x4a\x04\xd2\xb4\xec\xa9\xa5\x1a\x9f\xb1\x44\x6d\x34\x98\xca\xf9\xc0\x17\xe3\x73\xda\x82\x45\x7a\xac\x2c\xd3\x26\xbe\xc8\x63\x28\x50\x3e\x49\xfd\xf4\xde\x64\x5d\xda\x31\x89\x7b\xd6\xdf\xbf\x58\x17\xaf\x42\xc0\x66\x29\xf9\x91\xb3\x43\x95\xca\x0e\x98\x3e\x32\xf9\x10\x69\xec\x41\x35\x53\x5e\xc9\x59\x0f\xa9\xdb\x57\xe9\xee\x4a\x4c\xc0\x2d\xfc\xe9\x11\x99\xc8\x02\xa0\xc3\xb1\x7b\xd2\x47\xcf\xe9\x4c\xf5\x8a\x27\xa0\xdc\x99\x25\x73\x15\x30\xba\xc5\x74\x8c\x68\x38\x2a\xbd\xd0\xc4\xb3\x7a\x17\x79\x1c\xb5\x6b\xfc\xb5\x65\x30\x3f\x42\x48\x15\x22\xdb\x66\xa7\x7a\x78\x77\x38\x4c\x81\x37\x39\xaa\x20\x4e\xfa\xf9\x11\x5c\xb2\x22\x28\x94\x20\xeb\x85\x16\x0b\x3a\xd9\xbf\x04\xeb\x62\x2a\xfd\x90\xea\x06\x63\x01\x62\x43\x5a\x2c\xe7\x7a\x8c\x83\xaf\x6a\x7b\x0b\xc5\x8a\x20\x3d\xc6\xe7\x8b\x71\xb7\xae\x1e\x08\x3d\x9f\xf5\x4b\x14\xc9\x1a\x56\x86\xfc\xe7\x4a\xb6\x16\xf2\x18\x73\x55\xf9\xef\xbe\xad\x3b\x84\x92\x78\x74\x98\xfa\xfa\x6e\xf6\xeb\x0b\x08\xa8\x33\xd5\xc9\xd5\x83\xb8\xe7\xb3\x0d\x84\x0a\xc8\xa7\x97\x28\xcd\xf5\x4a\x4c\x1f\x0b\xd7\xcd\x56\x8b\xfa\x58\x65\x3d\xb3\x7e\x84\x22\x6a\x4a\x65\x41\x5e\xdc\xaf\x38\x0d\x53\xfb\x8d\xe8\xab\x06\xb5\x36\x92\xb3\xa3\xf4\x2f\xfd\x14\xcb\x16\xb2\xb7\x01\xbf\x8a\x12\x2a\x4d\x3d\x99\xd1\xef\xea\xa4\x10\xea\xfb\x26\x2d\xfc\x32\xeb\x6d\xcd\xd0\xda\x31\x05\x22\x64\x80\x06\x6e\x45\x0e\xb5\xb1\xf3\x85\xef\x5a\xc6\x1f\x9d\xdc\xab\x25\xc2\xf0\x44\x7a\xb1\xf8\xca\x71\x15\x5a\x82\x4d\xca\x40\x4f\xcd\xee\x2d\x19\x51\xa5\x20\x5a\xbb\xeb\x57\x8a\x1a\xda\x33\x03\x8f\x71\x85\xc2\x42\x5f\x99\x94\xf8\x90\x82\x0a\x33\xad\xa7\xb5\x4c\xdc\x82\x2e\xa7\xff\x5d\x66\x0c\x91\x63\x4b\x15\xd4\xf9\xa7\x87\x34\xb2\x98\x69\x06\x9e\xac\x64\x52\x5b\xf6\x69\xe4\x44\xe8\x59\x98\x3b\xcd\x88\xc0\x59\x99\x27\xa7\x7a\xc0\xf7\x41\x12\x27\x6c\x7c\x64\x17\x1b\x04\x2d\xc4\x66\xd9\x4e\x50\xe7\xf6\xaf\xe0\x69\x14\xd7\x57\x5e\x49\x4f\xd1\xae\x5e\xc2\xe8\x89\x42\x0f\xd9\x0a\xfc\xf6\xd6\x26\xfe\x10\xaa\x90\x78\xa8\x48\xdb\x3b\x33\xab\x4a\x27\x23\x4a\x64\x11\x0d\xca\x97\xf7\x53\x8c\xb9\x41\xa9\x00\x6c\x8a\xe7\xeb\x31\xce\x6b\x19\xa4\x89\xfc\x98\x56\xf4\x9b\x57\x65\xb9\xc7\x65\x0b\x99\xe1\x6b\xf4\x45\xbd\xde\x61\x17\x6a\xa1\x6e\x40\x55\x4d\x69\x26\x70\xbe\x59\xce\xbf\x0a\xd0\x86\x25\x76\x74\xb2\x7d\xf5\xa1\x2d\x5f\x10\x61\x2e\x4e\xa9\x4f\x6d\x1d\xae\x67\xb0\x40\xfa\xc9\xfd\xf3\xba\x78\xd0\x55\x06\x8d\x6e\x90\x8b\x5e\x65\xe7\xbe\x83\xab\xac\x4d\x3d\x65\x9c\xee\x0a\x6d\x03\x42\x40\x09\x24\xd2\xda\xf4\xcf\x38\x94\x76\x76\xc0\xa9\x5e\xa9\x7b\xd6\xab\xed\x3b\x7a\xbe\x34\x77\x71\x7a\xa8\x8d\x71\x81\xee\xc3\x6c\x2e\xfc\xfb\xb3\x1f\x57\x5b\xda\xf3\xe6\x4d\x48\x5e\x93\x38\xe5\x8e\xad\x54\xa4\x67\x09\x5c\xc1\x9e\xd9\x95\xab\x75\xb5\x58\x2a\xe1\xcf\x99\x22\xb3\x27\xea\x84\x88\x28\xc5\x62\x1d\xa7\xd4\xaf\xd7\x70\x19\x35\x40\x4a\xc8\xb3\xa0\x92\x2a\x9d\x68\xd1\x98\x54\x01\xa1\x62\x32\x54\x25\xea\xcb\x77\xc5\x7d\x63\xd7\xb4\x1a\xc6\x05\xd5\x43\x9a\xda\x46\x94\x37\xb2\x88\x3a\x62\x48\x83\xf0\x14\x4f\x54\x7b\x66\xc6\xed\x06\x0f\x45\x4f\xc5\x98\xa9\xf6\x3c\x98\x78\x44\x14\xe0\x97\x8e\xd7\x9d\x7d\x81\x6f\xf1\x97\x1b\xfe\x0f\x35\x3d\x12\x98\xdb\xf8\x6e\xe6\xf7\x1d\xa5\x85\x0a\x60\x01\x27\x41\xeb\xfd\xfb\x53\x9a\x85\x18\x70\x2a\xa2\xd5\x4d\x2b\xbf\xa5\xfd\x15\xc8\xad\xea\x27\x71\xa0\xc1\x10\xce\x87\xae\x0b\x84\xf1\xf9\x19\xcd\xd5\x27\xb0\x7d\xe4\x00\x3a\xde\xe5\xb3\x86\x19\xdc\xf0\x7d\x2e\xb0\xed\x58\xe1\x72\xf9\xf5\x0a\x2a\x11\x9b\x01\xf7\xbd\x3a\xb0\x47\x13\x13\x87\xc0\xf6\xad\xac\x09\x08\xaf\x33\xd2\x57\xb2\xc1\x42\x76\x7e\x74\x5c\x27\x03\x72\xfa\x9d\x8d\xfd\x79\x4e\x6b\x17\x98\x8c\x53\xea\x47\xaf\xeb\x9a\x4d\x51\xc9\xc2\xc0\xd0\x9f\x3f\x32\x54\x3b\xad\x5d\x86\x57\xcc\xac\x7f\x4d\xc1\x3d\x47\xa7\x99\x19\x08\xfe\x45\x66\xee\x69\xdd\x4a\xdc\xb6\x3d\x11\xd5\x3f\x7e\x54\x34\x18\x71\x54\xf5\x85\x9f\xe8\x35\x90\x07\x21\x54\x45\x36\x2c\x51\xf8\xeb\xd7\x86\x24\x67\xb4\x0e\x28\x5b\x81\x4d\x5f\x97\xd4\xf9\x33\x2c\x8d\xe5\xdb\x6a\xc6\x2c\xdf\x79\x7b\x74\x8b\x5f\xe8\x05\x0e\xd7\x00\x0c\x97\x19\xca\x6c\xd8\x67\x60\x2a\xfa\x8a\x1f\xdd\xa7\x55\x87\x51\xdd\xe9\x70\x05\x82\xf0\xd7\xfb\x92\x99\xaf\xe7\x73\x2b\xe6\xcf\x48\xc5\xf9\xc0\x55\xb2\x44\xe3\xd3\x27\x94\xde\x0b\x34\x31\x45\x12\xcd\x7f\x59\x06\xd3\x22\x01\x6e\x99\x4d\x50\xaf\x5e\xad\x37\xca\x81\x87\x5d\x45\x68\xf1\x07\x7d\xe5\x23\xc7\x35\x57\x9d\x0f\x1a\x8b\x0f\x2b\xb3\x60\x0b\x9a\x16\x6d\x82\x2f\xbe\x57\x29\x17\x7d\x64\x23\x26\x09\x92\xfa\xfd\x58\x65\x56\x8d\x68\xa7\xa8\xd1\xa8\x76\xe3\x5d\xca\x43\xc2\x26\x02\x36\x57\x7f\xd9\xac\xf4\x2a\x5d\x88\x4a\x56\x1e\x53\xa7\x74\x1e\x8f\x17\x6f\xbb\x4a\xc9\x99\xa0\xd9\x20\xe0\x61\x2c\x5b\xdc\xa2\xb6\x59\xb9\x88\x01\xd3\x6a\x32\x7e\xbf\x5a\x1b\xc9\x4d\x9f\x3e\x8d\x17\xd0\x47\x47\xc5\x08\x04\x54\x8e\x9e\xe4\x94\xa7\x65\x73\xfe\xbe\x00\xb1\x5e\xd8\xc0\x37\xe3\x8c\x79\xea\x74\x5a\xb1\x6c\x9d\x2b\x1f\x03\x17\x9b\xa7\x5f\xb5\xa8\xaa\x55\x32\x45\x2e\xc1\x75\xc7\xcb\x4a\x01\xee\xfa\x04\xba\xdc\x93\x2a\xf5\xe3\xf3\xfd\xa4\xb2\x50\xf4\x52\xca\xe7\xd5\x82\xd7\xb3\x10\x9f\xac\x5d\x4b\x54\xf3\x2a\x3a\x06\x66\x66\x0b\x46\x71\xbf\xe2\xd6\x0b\x4c\xa6\xd4\x7e\x0d\xdb\x96\x62\x16\x9d\xeb\x49\x7f\x2f\x23\xab\x20\x78\x1f\x33\xbd\x4e\x7d\xe5\x88\xa2\x86\x85\xb1\x9b\xf5\x71\x36\x0f\xe9\xde\x01\xbe\x50\xbb\xea\xb5\x59\x03\x59\x7b\xad\xac\x51\x67\x18\x0a\x90\x8b\x96\x41\x3f\x7e\x52\x3d\xc0\xb9\x46\x7a\x36\x17\x9e\xd2\x60\xdc\xc8\xad\x62\xbb\x2a\x74\x65\xf7\x1d\x61\x5b\xb8\x7d\xfa\x94\x36\x7a\x40\x5e\xf9\xb2\xea\x3f\xed\x22\x87\x5d\x6d\xfd\x4d\xcd\xc0\x87\xc0\x52\x82\xf2\x9d\xde\xdf\x2a\x97\x6d\x15\x99\x3e\xf5\x51\x08\xdd\xf1\x9a\x79\x1e\x04\xee\xa5\x66\x8e\xc6\x2f\x97\xeb\x9e\x38\xb4\xd7\xcb\x51\x33\x3f\xd3\xf8\x66\x5c\x66\x84\xa6\xef\x0f\x3c\x2b\x93\xf1\x3a\xf7\x76\x3e\xbb\x46\xf5\x96\x67\xaa\xe2\x61\x61\x9b\x22\x2b\x8d\xdd\x12\x9b\x25\x2d\xec\xd5\x60\x98\x81\x5c\x1e\xef\xd3\x3b\xc6\xcb\x17\x4c\x69\x9b\xd1\xc5\x0c\xd7\x26\xba\x55\xe6\x9a\xc6\x91\xf6\xef\xbd\x3e\x80\xaf\x14\xb3\x2c\x8c\xb8\x1f\xdb\xaf\x95\x02\x36\x30\xc5\xc1\x9d\x59\x53\x1d\x25\xeb\xd7\x82\x83\x7c\x3d\x8d\x09\x47\xef\x57\x94\x4b\x59\xb9\xf1\x8b\x89\xda\xd1\x01\x08\x35\x04\x9a\x10\x53\x59\x5f\x58\xab\x38\xe9\x14\x7d\x48\xb8\xbc\x67\x7a\xdc\x05\x76\x81\x3e\xc1\x41\x9e\xcb\x8a\x4f\xd1\x2c\x5b\xca\x16\x2e\x60\x52\xc6\x55\xaf\x5c\xe7\x22\xa7\xa2\x0e\xe8\xd7\xc4\xd0\x21\x79\x9b\x62\xfb\x56\xfb\xaa\xfb\x0a\x17\x8c\x99\xd5\x40\x62\x28\x42\x57\xd4\x86\xe1\x9f\x76\xea\xfa\xa2\x51\x05\xc7\x6a\xe4\xa2\xaf\xcc\x7d\x2c\x52\xf7\x98\x26\x7f\xfa\xfa\x77\x93\xb2\x03\xa0\x50\x85\xc4\x47\x1e\x67\x62\x55\x98\xaf\xcd\x4b\x05\xc5\xc5\xca\x35\x2d\x4c\xb2\xb9\x70\xf8\x62\x0e\x0e\x01\x25\xab\x00\x62\x52\xf4\xa4\xf1\xba\xf4\x47\x05\x12\xdf\xe3\x30\x64\x43\x0e\xae\x7d\x14\x5d\xf4\x9d\xaf\x0d\x49\xd2\x92\x7c\xc8\xe4\x0a\x3f\x7e\x52\xed\x18\x8b\xde\x43\x76\xb3\xb6\xeb\x24\x14\x3f\xaa\xac\x0d\x9d\xeb\xe7\x31\x69\x48\xf1\xf5\xff\x26\x13\xa8\x3c\x6c\xcd\xe6\xc2\xd7\x47\x5e\x21\x49\x15\xd1\xb6\xbe\xa9\x45\x33\x7d\x05\x5c\xb7\x2a\x7c\x2d\xcf\xad\x81\x30\xf0\x59\xa8\x4b\xdf\xb8\x41\x06\xc1\x3c\xb6\xa3\xec\x10\xd1\xca\x29\xdd\xb3\x5c\xee\x5a\x4e\xa3\xa5\xdc\x17\x5b\x49\x09\x58\xa1\x11\x2f\xac\x63\x0b\x87\x6a\x29\x01\xdb\x89\x61\xcb\x5e\x85\xc5\x69\x07\x4e\x3e\x96\x99\x79\x74\x9f\x3c\x47\x3c\x13\xfb\x0d\xde\xb7\xc6\x5f\x14\x13\x1f\x36\x84\xcd\xe6\xc2\xde\x17\xd9\x9b\xf3\x82\x0a\x24\x55\xc4\xa1\x65\xc6\x68\xa5\x8f\xc1\x09\xe6\xd1\x97\x4c\x98\xcd\x42\xd9\x94\xb6\x2c\x45\x6a\x1b\x5f\x5f\x95\x4c\x14\x81\xe3\xf9\x90\x14\x68\xae\xc8\xce\xb7\x7d\xe7\x86\x29\x1b\x4b\x58\x51\xb1\x67\x36\xa6\x99\x27\x33\x8c\x7c\xcd\xa2\x76\x7a\xc8\x10\x15\xca\x92\x2d\x62\x61\xbf\xf4\xe6\xda\x3e\x1c\xbf\x93\x0b\xd3\x5c\x47\xb2\x84\xab\x4c\x29\x3f\xfd\x8f\xdb\x39\x7e\xd1\xc6\xc2\x61\xb1\xe9\x45\x45\x95\x27\x16\x7b\x8b\xde\x75\x5b\x75\x88\xca\x37\x61\xd8\x7a\x0a\xac\xbf\x28\x07\x7c\xd8\x85\x4a\x39\x99\xda\xa0\x0d\xed\x1d\xe0\xb2\xaa\x21\x1c\xaa\x19\xfc\x79\x01\x12\xd6\xaa\xc6\xed\xdb\x07\x29\xaa\x26\x2e\x63\xcb\xf4\xa4\xff\xb4\x40\x21\x38\x83\x60\x25\x4b\xf7\x77\xed\xe4\x62\x21\x70\x45\x00\x6c\x96\xe8\x8c\x5e\x90\x0c\xef\x0e\xe6\xb2\xad\xfa\x24\xe3\xbe\x7b\x1b\xa4\xf3\x58\x03\xc0\xae\xf3\xae\xea\xb5\x33\x1b\x68\xf4\x1e\x34\x03\x8e\x62\xca\x85\x77\x3e\x23\x13\x1d\x26\x33\x83\x1a\x9c\xb3\x52\x1f\x6e\x4c\x26\x9b\x1c\x0b\x32\x31\xa1\x7a\xf2\xf7\x6f\x72\xba\x87\x0d\xaa\x98\x73\x2f\xc8\x3a\x55\xd8\xd6\x27\x88\x1a\x00\xd3\x9a\x6c\xf0\x46\xa6\x14\xd3\xd1\x36\x3d\xba\xe5\xe5\xdc\x3d\xd9\xbb\x2f\x00\x74\xdd\xf5\x3c\x21\xb1\x96\xa8\xd8\xb0\xb2\x17\x6d\x8c\x69\x64\xc2\xc9\x37\x9b\x0b\x3f\x7c\x5d\x29\xff\x00\xac\x61\x9a\xef\xac\x74\xe3\x94\xa4\xa3\x23\x9b\x0b\x17\x1d\x90\xee\x10\x4a\xf3\x2b\x7c\x30\x7f\x35\x2b\x0b\x20\x28\x40\xe2\x59\xa8\xd2\xe0\xba\x98\xb9\x6e\xb5\xa4\x16\xd9\xd8\x2d\xf9\x0c\x5e\x12\x63\xcb\x5a\xb5\xfc\x98\xca\x98\xdb\x50\xe0\x67\x6f\xdb\xa9\x0f\xfd\x5d\xc1\x23\x3a\xb3\xfd\xff\x37\x16\x0b\x93\xcc\x19\x4a\x1f\x32\xd6\x48\x8f\x5e\xa4\x3d\x98\x2f\xed\x0a\x24\x08\x0a\xcd\xdb\xd4\x8b\xe3\x35\xc6\x0d\x2c\x61\x9f\xf6\x88\x18\x3d\xf3\xc1\x63\xec\xc1\xcf\x21\xa0\xc6\x9c\x61\x94\x54\x05\xb9\xa6\x4d\xdd\xac\xc3\xa7\x46\xc6\xcf\xac\x1b\x2b\xe0\xa5\x8b\x6d\xea\x78\xd9\x76\xea\x65\x04\xb2\xb9\xf0\x5b\x67\x79\x22\x8a\xdc\x12\xdd\xc8\x5b\x36\xf3\xf3\x2d\xa8\xd3\x84\xe8\x77\x83\x5a\xb4\xd3\x9e\x78\x82\x5a\x91\xee\xd6\xac\xb7\x21\x1d\xab\x44\x9b\xf8\x3d\x4d\x40\xaf\x08\x4c\x9f\x0f\xa6\xfa\xf5\x51\x1a\xd6\xd4\x3f\x5f\x9c\x49\x1f\x9b\x23\x73\xb8\x62\x54\xc4\x0b\xf5\xac\x96\x2a\x6f\x9a\x46\x0f\xba\xc8\xe9\x5e\x17\x4f\x24\x0f\xed\x3c\x0e\x6c\x78\xc9\xed\x97\x7e\x65\xa7\xb4\x0d\x21\x41\x43\x57\x6d\x1c\x17\x94\xb1\xf9\x43\xe8\x31\xee\x5a\xa0\x15\x64\x04\x55\x85\x3a\xff\x9d\x7b\x93\xef\xdf\xc5\x55\x54\xc6\x9a\xc8\xe5\xcb\xe3\x35\xca\x5d\xb1\xc8\x58\x37\xf4\x80\x4b\xcf\x1a\xd7\xac\xe4\xeb\x51\xf5\xc5\x60\x12\xb9\x1e\xe3\x2a\x4d\xc5\xae\x00\x7c\x90\x07\x82\xbc\x9f\x1e\x7f\x68\x88\x72\xde\x9a\xa8\x22\xe2\xff\x77\x07\x0d\x50\xf2\x28\xd6\xdb\x3e\xf9\x72\xec\xb3\x31\x8d\xda\x23\x7f\x6a\xcd\xe0\xc4\x87\x4f\x99\x4c\x83\xcb\xf5\x37\x68\x6e\xbd\xcc\x56\x2f\xae\xd8\xc2\xa6\x5e\x0d\x82\xcc\x14\x1e\xc9\x03\xe9\x0c\x23\xf9\xb1\x63\x26\x5c\x7b\x2d\x2d\x73\x56\x8a\x64\xb0\x8a\x60\x8d\xe5\xf4\xc3\xb7\x0b\x12\x8b\xcf\x0f\xc8\x70\xcc\xbc\xab\xf4\x7c\xa0\x62\x03\x6e\x44\x7f\x0d\x85\x29\x15\x14\xcf\x05\x4a\x2b\xe6\x03\xde\xb3\x3b\x15\x5f\x01\xe0\xf9\x0a\xd2\x21\xfc\xf5\x21\xa5\x81\x4f\xfd\xa8\x12\x63\xf1\x4c\x6e\x93\xfe\xb5\x1c\xe8\x2e\x1a\x7c\xc6\x00\xbf\x59\xbb\x6d\xcc\x45\xd0\x7f\xba\x23\x79\xb8\x06\x2e\xd5\x38\xf4\xbc\x62\x60\x73\xe9\xf7\xd6\x79\x6c\x55\x51\x8d\x9a\xe8\x21\xde\xda\xaa\x61\x36\x98\x2a\x94\x50\xdc\x0c\xe1\x68\xa6\xb1\xb7\x08\xe4\xa3\x63\x5d\x2d\x8a\x97\x5c\x48\x5e\x6a\x74\x2a\x26\xc4\x66\xd3\xf3\x4e\x68\x8a\x95\x50\xb8\x2c\xa5\x8e\x3f\x3d\x42\x59\x6c\x55\xc4\x9d\xdd\xb1\xcb\x00\x6f\xc6\xc1\xc1\x49\x4c\x20\x85\x9d\xf5\x18\xef\x1e\x63\x91\x60\x6e\x6e\x36\x75\x61\x5c\xa6\x29\x24\x10\x64\x5a\x30\xe1\xeb\xf8\x77\x63\xe4\xfe\xcd\xdb\xd8\x2c\x03\x0e\x4e\x9d\xb1\x52\xaf\x84\x3b\x3b\xf9\x4e\x38\xee\xb2\x69\x58\x17\x74\x56\x42\x3d\x31\x0a\x37\x6c\x8b\xe5\x28\x2a\x5c\x86\x36\xf5\xd3\xf9\x3a\x8e\x86\xa2\x9e\xf8\x4a\xfd\x61\xab\x2a\x27\x13\x50\x80\x63\x3a\xd0\x20\x5c\x76\xb4\xf6\xf8\xc1\x3b\xba\x7f\x03\x40\xb5\x40\x44\x7d\xf8\x98\xad\x7b\xf7\x32\x0f\xeb\xe8\xcc\x61\x21\x30\xb3\x4d\x55\xe5\xaa\xb1\x81\x4e\x6a\xc8\x6c\x89\x5c\xa7\x2a\xff\x9f\x5e\xac\x7f\x90\x87\x6d\x76\xba\xf3\x06\xe6\x3f\x29\x3c\x69\x90\x47\x85\x6e\x66\xbd\xd0\x73\x44\x57\x3c\xa2\xad\x76\x0a\x3a\x79\xba\x97\xfc\x6e\x02\x4b\x80\xc5\xa7\xcf\xf6\xd5\x3a\x4e\x81\xe3\xd4\x27\xd2\x24\x55\xbe\x2a\xb8\x72\xb8\x7a\x3c\x81\x84\xfe\xa2\x71\xbe\x8d\xad\xc4\x85\x0d\x70\x35\xe3\xa7\xe3\xa4\xa2\x69\x19\x35\x64\x20\x7f\xb1\xb4\x97\x83\x4d\x04\xfd\xba\xa8\x50\x7e\x7b\x83\xae\xd4\x08\x3d\xaa\xf1\x41\x3b\x0d\x13\x76\x8a\x99\x36\x29\xf0\xda\x31\xb3\x7c\x7f\xf2\x6e\x5c\x64\x62\x1b\x24\x6d\x70\x53\xe1\xae\xc1\xea\xdd\x94\xf9\x81\x92\x7e\x7b\xd9\x20\xe5\x00\x46\x15\x56\xc1\x1a\x47\x42\x15\x42\x0d\x2a\x79\xbc\x22\xfa\xef\x7b\x36\x25\xf7\x27\x74\x8b\x98\x30\xb1\x0b\xd6\x29\x34\x9a\x92\x37\xc7\x3b\x30\x42\x9c\xaa\xa6\xb4\xc8\x48\x54\x7c\x44\xe7\xe9\x99\xf9\x09\xa8\x18\xb5\x67\xce\xe6\xc2\xdf\xf6\x4e\xc6\x8f\x32\xa3\x70\xaa\xb3\xe5\xfb\x4e\x6b\x6a\x51\x38\xf0\xa0\x85\xed\x02\x9f\x56\xa5\x36\x0f\xd2\x82\xee\x8c\x6c\x2e\x5c\x7a\xa0\xbf\x52\xfa\x47\x5f\x75\xcd\x18\x8d\x52\x0a\x5d\x17\x7a\x1e\x84\xb1\x3b\x5e\xfa\xe5\x87\x86\x2b\xb4\x60\x50\x48\x20\xc4\x77\xf8\xda\x04\x04\x16\x20\x17\xff\xcf\x3c\x76\x38\x9e\xda\xd5\xe9\xd2\x0f\xc9\x81\xc4\xf9\x14\xeb\x36\x19\xf9\xa3\xc3\x95\xce\x8a\x87\x5c\xea\x87\x2f\x7e\x3a\xef\xb4\x54\x2d\xe9\x6c\xcb\xe6\xc2\x93\x1f\x24\x5b\x3f\x13\xc4\xa8\xac\x76\x2e\x4e\x70\xdc\x40\x21\x76\x65\x26\xbc\x25\x6b\x56\x5a\x23\x3e\xb4\x41\xed\x24\x12\xec\x32\xad\x8f\x5b\xd7\x0e\xd5\x9b\x7e\x0c\x8f\x95\x5a\xb4\x58\x36\x1a\x26\xb5\xb5\x4e\x8a\x2e\x6c\x73\x9f\x66\xa5\x8f\x50\xb2\xe8\xd8\x96\x6e\xcd\xf4\x5f\x97\x0d\x51\x4e\xdc\x2a\x70\x7d\x50\x8a\x52\xb0\xef\x56\xb9\xac\x24\x2c\x12\xc0\xc5\x6b\x9e\x91\x6f\xc5\x61\xe6\xd2\x6f\x3d\xae\x0b\x71\x74\x88\xe6\xe0\x18\x05\x54\xe0\xea\x90\x90\x70\xd8\xbb\xba\xe8\x35\xe3\x88\x46\x25\x83\x0f\xa3\x8b\x13\x6e\x25\x7b\x3e\xd0\x06\x1f\x00\xb9\xb1\x28\x5e\xea\xba\x87\x58\x22\x6a\x03\xb7\x84\x03\xda\x01\xa6\x7b\xf4\x87\xcb\xf5\x8a\xc9\x24\x7c\x42\x9a\x19\xd4\xaf\x59\x19\xbd\xda\x36\xb4\x80\xe3\xb0\xe6\xbb\x7f\x8c\x25\xe5\xb3\x3c\xda\x62\xbd\x04\x22\x24\xfc\xf8\x8c\xe4\x60\x30\x4f\x30\x2e\xdb\x75\x97\x83\xbf\xa2\x92\xf4\xbf\x2f\x36\x76\xbb\xa3\xad\xc1\x41\x92\x5f\x59\x2f\x15\xd2\xec\x06\x92\xa1\xf1\xcb\x02\x3b\xb2\x6e\xce\xcd\x9f\x13\xbd\xbc\x49\x79\x56\xc4\x02\xdf\x87\x4e\x85\x83\xbf\xd3\x1d\x33\xe5\x96\x74\x28\xa3\xce\xa6\x6f\xe4\xd9\x03\xc9\x53\xaa\x8e\x03\x2e\x95\x9f\x9e\x23\x89\xa3\x59\xba\xad\x7f\xbc\x64\x94\x9e\xb2\xf8\x04\x99\x3e\x9b\xa3\xd1\x6c\x76\xcd\x73\x1a\x79\x16\xd8\x36\xf6\x39\x19\x2a\xfd\xd4\x66\x59\x64\x02\x92\xc7\x01\xcd\x3b\xbf\x78\x8b\x74\x67\xa1\x2e\x60\xe9\x6f\x67\x34\x22\x9f\xef\x60\xe6\xb0\xc0\x59\x86\x77\xef\x48\x06\x48\x1b\x07\x9c\x7c\x5d\xc1\xb1\x96\xe2\xc3\xcc\x81\xc5\x86\x6e\xb6\x5d\x7f\x2b\x2d\xd7\x5c\xa5\xc5\x07\x42\x4d\x43\x04\x2b\xa9\xc7\xf8\x82\x1b\x9f\x66\x93\xa9\xec\x4c\x2a\x45\x62\x58\x40\x9e\xf1\xc6\xa8\xd7\xd8\x5e\x21\x8d\x4d\x9c\x6c\x40\x33\xa8\xe1\x7d\x9a\xf5\x24\x9d\xcf\xcf\x8c\x35\x8b\x59\x52\x0f\x82\x42\x54\x06\x31\x56\xe5\xb7\x4f\x37\x2b\xb0\xb0\xa8\xba\x33\x45\x8d\xba\x67\x83\xa2\x27\x1b\x78\x96\x72\x9a\x7d\x75\x81\xfe\x2d\x25\x58\x67\x6f\xee\x8b\x83\x92\x0b\xaa\x06\x41\x19\xba\x90\x79\x09\x87\x07\xdf\x64\x73\xe6\x45\xdc\xad\x41\x66\x5c\x47\x76\x69\x5d\x3a\x1c\x4b\x94\xa6\xfe\x41\x79\x77\x1e\x9d\x6d\x64\x73\xe1\xf9\x25\x23\x1b\xca\x42\xd7\x0f\x08\x0e\x38\xbf\xf9\xb3\x37\x34\x89\x9f\x5d\x7b\x2d\x5f\xee\x9f\x5f\xce\xd0\x5d\xb7\x05\xdc\x15\x51\x04\xb3\x89\xab\xb5\x7d\x80\x2b\x81\x1d\x7d\x14\x0b\x11\xcf\xbd\x93\xd5\xbe\x8c\x62\xe5\xb9\xbf\xdb\x25\xe4\x26\xd3\x1b\x35\xdc\x6b\x9e\xe0\xe8\x84\xa2\xe9\xff\x3b\xba\xe8\x1d\x2c\x00\x9b\x7f\xd3\x85\xd3\x32\x79\xac\x21\x17\x66\x01\xdf\xdf\xac\x4d\xf4\x58\xa5\xc1\x04\xcf\xa1\x70\x45\x9a\x25\x5f\xb9\x9d\xc7\x04\x92\x47\xc2\x7b\x4e\xcf\x18\x7a\x76\x48\xce\x5b\x01\xe6\x1b\x7a\x63\xe9\xe5\xf7\x8f\xd4\xd7\x27\xc1\x24\xd6\xdb\x08\x1f\x5e\x93\xbc\x04\x17\x22\x7a\x67\x7c\x18\xfb\xcc\xa6\xbf\x45\x45\xa0\xe5\x48\xa7\x62\xbc\x0c\x6c\x1b\x52\xad\xfc\xb0\x49\xe1\xc9\xf8\x04\x55\x58\xaf\xfc\xae\x56\x3e\x2d\x68\x6b\xf3\x69\xf3\x73\xc2\x49\xd5\x18\xd7\x13\x76\x05\xce\x3c\xcd\xb2\x1b\x57\x21\x45\x07\xb0\xc7\xd2\x93\xfa\xe5\x2d\x03\x15\x54\x35\x62\x04\x8d\x0c\x79\x23\x59\x58\x56\x21\x29\x20\x7e\xa5\x32\xd7\xb9\x98\x57\x20\x60\x2c\x47\x1c\xd8\x4f\x6d\xf7\x07\x3e\xab\x08\x0e\xcd\xe5\x3e\xc9\xd0\xa4\xa7\x16\xa7\xbe\x5c\xd9\x7d\x95\x96\x50\x95\x2c\xdf\x01\x24\xd6\x08\xcc\x18\x7b\x06\x28\x29\x0b\xeb\xf2\x1c\x38\xc5\xbb\x40\xad\x74\xff\x7f\x71\x6f\x12\xaf\xe2\x03\x8f\xce\x0c\xf4\xb1\xc6\xbf\xbe\xae\xbb\xb0\x77\x4e\xe6\x83\x8b\xcc\xed\xca\x54\xae\x88\x49\x1e\x15\x98\x96\x63\xe6\xfa\xe7\x12\x94\x06\xcc\xa9\x2a\x13\xb7\x0d\x55\x1e\x1a\xa4\x92\x69\xac\xbf\xda\xf4\xaa\xcc\x39\xca\x16\x20\x1e\x72\x31\xca\xe6\xc2\xba\xc6\x21\xf3\x2a\xc8\xb6\x85\xb3\xcb\xf3\xa7\x64\x22\x1b\xe8\x84\xf4\x30\x7f\x7d\x8c\x25\xbd\x2f\x80\x22\xc0\xdd\xa7\xd9\x66\xe6\x81\x5b\x10\xb0\x48\x7f\xbd\x04\x12\xd4\x1b\xc4\x3b\xb7\x4c\x55\x9e\xa9\x0d\xe8\xfb\xce\xbe\xcd\xf3\x04\x8c\xcb\x3c\xf1\x9e\x33\x37\x4e\x6e\x80\x93\x57\xc6\x0e\x33\xae\x57\x54\x05\xa9\x26\x48\x09\x38\x74\x62\x5b\xbe\xa0\xb5\xda\x0b\x51\x22\x8f\x79\xac\x32\xe6\x28\x83\x53\x0f\x02\x47\xe4\xd5\x7f\xb7\x8c\xe5\xda\x55\x48\xf2\xbc\x9d\x99\xba\x7c\x3e\x8b\xc8\xd3\x27\x76\xb6\x4f\x6b\x9d\x36\x85\x06\xd0\xaf\xcf\xd4\x95\x7e\xdc\xc2\x04\x26\xdf\x38\x6b\x06\xcb\x20\x6e\x03\x1e\x41\xca\x68\xfe\x6a\x2d\x78\x95\x91\x8d\x4b\x04\x38\x34\x89\x08\x17\x3d\x17\x83\x0f\x08\xf2\x55\x81\xa4\xad\x22\x6f\xf2\x10\x83\x08\x18\x2f\xf8\xfa\xe4\x08\x02\x8f\xdb\x9d\x18\xc5\xa2\x86\x07\x26\xf1\x70\x8d\xf6\x06\xbe\x5b\x19\xa6\x17\x6f\x22\x95\x37\x8c\x93\xc9\xe4\xf9\x93\x34\x10\xda\xef\x4e\x48\x7e\x22\xf5\x7a\xa5\x71\x0b\x5c\x02\x8e\x65\x1c\x7d\x23\xb6\x4d\xc7\x54\xcd\xe9\xab\x2d\x2a\xaf\x8c\xd1\x25\xb8\x33\x7d\x5f\x43\xf3\xd0\x63\xee\xf5\x45\x88\x44\x20\xf3\x87\xe8\x68\x10\xaa\xb4\xcc\xef\x76\x9b\xa6\x65\x83\x6b\xae\x90\x36\xea\xc9\xdc\xb9\x69\xa8\x32\xa8\xc3\x81\x2b\xea\xa7\x74\x6b\x8b\xb6\x07\x2c\x5c\x13\x40\x95\xf4\xd3\xba\x77\x17\x8a\xca\x19\xc6\xd6\x3e\xba\x58\x83\xb3\x21\x62\x33\x50\x6d\x1f\xcd\xbb\xc3\xc5\x7e\x6b\x2c\x7f\x79\xd9\x61\xdd\xc9\x2c\x06\xea\x1a\x0f\x6f\x53\x4d\xd2\xdc\x22\x22\x0e\x6c\x40\x3c\x1b\x2f\xf6\x52\x34\xfa\x4c\x33\x20\x80\x1a\x5e\x18\xb7\xbd\xa6\xf8\x2d\x56\x40\x8d\x0b\x61\xfe\xe5\x03\xc5\xc3\xcf\xc6\xd4\x40\xcf\x98\x7b\x4c\x51\x50\xf4\x49\x50\xa2\xe0\xe9\x5c\xf8\x75\x75\x7e\x01\x5d\x0f\xd3\xee\x71\x36\x17\x7e\xe5\x01\x21\x72\x31\x65\x72\x36\x17\xde\x32\x27\x21\x32\x0b\xa9\x68\xe3\xcc\x53\xac\xa1\x53\x41\x9e\x4f\xf9\x6f\xbf\x52\xb8\x2a\x5e\xe0\xa9\x5c\x0d\xe3\x1b\x5c\x54\xc9\xc1\xc4\x2f\xd1\xba\xa0\x27\xd3\x31\x44\xee\xc5\x3c\xb0\x88\xf0\x4e\xf4\x0e\x6b\x19\x18\x26\x51\xd1\x19\x43\xea\xc2\xdf\xee\x50\xea\x5b\xec\xf9\xdc\x6b\x32\x33\x7d\xbc\x1c\x2c\xd5\xb8\x57\x6f\xf2\xf0\x3c\x30\x59\x43\x32\x57\x2a\xd4\x48\x1b\x81\x09\x33\x54\x66\x79\xe6\xd3\x0d\x03\xe8\x52\x94\x49\x08\x0d\x99\xa3\xaa\x42\x29\xd5\x6d\xe1\x6d\xeb\x91\x33\xd8\x7d\x42\xb7\x10\x08\xc9\xe1\x95\xef\x28\x56\xfc\x96\x6a\xe2\x19\x2e\x1c\x7d\x09\x18\xa5\x09\x3c\x5f\xb4\xfa\x52\xb7\x76\xb2\x37\x01\x5a\x1d\x7a\x56\x5e\x3b\x5b\xd1\x1e\xc7\x2e\x4f\x3c\x52\xc5\xae\x11\xd2\x95\xa9\x91\x92\xb4\x40\x53\x60\x87\x20\x4a\xb0\x5c\x15\x04\x35\x70\x9b\x98\xfd\x77\xd2\x48\x97\xb9\x67\xa4\x3c\x90\xd8\x26\xe2\xfc\xfa\xa3\x4f\xb6\x08\x40\x1b\xcd\xed\x13\x94\xf0\xd2\xf5\xba\xc2\xad\x0d\x61\x85\x3d\xb8\xf0\xae\x82\xd6\x31\xc0\x51\x6e\x1d\xe3\x60\xae\xdd\xa6\x31\x66\x2b\x51\x8d\x2f\x9a\x25\xfe\x42\x1e\x0f\x03\x9b\xc3\x07\x53\x3f\xb5\x9a\x78\x4e\x02\x4a\xb0\xc0\x0f\x8d\xa9\x2f\x6b\xcf\x14\x92\x32\xb4\x61\x5d\xd6\xf7\xf5\x7d\x71\xba\xee\xd9\x58\x3c\x80\x6c\x5b\x63\xc6\x4a\x7c\xd6\x5f\xa2\x02\x6b\xe3\x5f\xd6\xda\x9f\x00\x15\x28\x00\x23\xfc\x1d\x17\x24\xe9\xe2\xb1\x91\x22\x78\xfb\x35\xe4\x69\x4e\xc2\x0f\xeb\xb5\x53\x5a\x17\x0e\x53\x5f\x4d\x5a\x3d\x7e\x7e\x81\x2c\xec\x1a\x1d\x37\x52\x6b\x0e\x4d\xf7\x2c\x50\x81\x31\xb0\xf0\x7a\x21\x56\x36\x9a\xfe\xff\x68\xe0\x8f\x6e\x5b\xd1\x99\x2f\xc0\xb6\xc2\xe4\x99\x82\x46\x2f\xf6\xe2\xd6\x6d\xf2\xf6\x85\xe4\x40\xb8\x22\x8c\x8f\xa1\x12\x94\x14\x88\xf0\x7b\x0f\xc4\xc5\x4e\x3b\x4b\x76\x4e\x2d\x90\x61\xcb\xc7\x25\x1b\x01\xdf\x47\xfa\x01\xff\xd4\x31\xe5\x80\x06\x3e\x83\xab\x45\x21\xa7\x6b\xd9\x15\xf1\x1e\x9d\xda\x91\xcd\x85\x3b\x2e\x0c\xd5\xc2\x3c\x60\xf4\x33\x63\xeb\xc9\xa1\x5a\x1c\xc0\x36\xab\x1d\xee\x7d\x93\xe5\x72\xb7\x7a\x04\x40\x1b\x89\xfe\xd6\xef\x2e\x28\x21\x31\x3a\xf6\xa9\xa6\xa0\xf1\x8f\x1b\x74\xa2\x8c\x57\x81\xa6\x8f\x85\x06\xa6\x31\x47\xd7\x38\x8b\xde\x84\x8a\x20\xbc\xeb\xa8\x26\x21\x87\x62\x96\xcd\x42\x8e\x72\x0b\x5c\x90\x27\xa8\xc0\xbc\xa5\x52\xcb\xd7\x69\xa2\x68\x5c\xe5\x80\xb7\xb6\x3b\x46\x0b\x03\x26\x26\x53\xcc\x8a\x87\x2d\xcb\x65\xc7\xc6\x8a\xaa\xea\xde\x4d\x09\x82\x1b\x24\x62\x16\xde\x93\x1a\x3a\x99\x07\x5f\x5c\x83\xcc\xbc\xf6\xfd\x83\x43\xd5\x4e\x6f\xc9\xf2\xc5\x72\x1f\x31\x42\xc6\x06\x5c\x6a\x74\x5d\x1a\x9d\x6c\x2d\x4d\x6a\x63\xb0\x84\x5f\x68\xb2\x16\x05\x7a\x7a\xc7\x00\xef\xd4\xeb\xa3\x15\x0f\xb1\xbc\xe7\x03\x93\xa1\x6d\xb6\xac\x49\x0e\xa2\xfc\x80\xb8\x90\x5c\x72\x0e\xec\x8d\x68\x50\x05\x87\x36\xae\x88\x16\x63\xf8\x3b\x8b\x83\x17\xa0\x97\x67\xc9\x7d\x7a\x7f\xbf\xc6\x48\x46\x77\x76\x3c\xca\x7c\x79\x4b\x72\x5f\x75\xb4\xb5\x4d\x17\x89\xc1\x0d\xcf\x29\x04\x35\xc8\xe0\x81\x74\x6e\x72\xe4\x63\x6c\x41\xa9\x19\x8e\xde\x19\xc8\xcf\x61\xab\x2e\xca\xc0\x2d\x18\xbb\xb7\xdc\x9c\xe9\xc7\xab\x35\x10\x95\x41\xe1\xa0\x27\x14\x96\x0b\x21\x2c\xef\x7c\x71\xd5\xc7\x64\x97\x0d\x93\x1a\x2c\x21\xd0\x40\x04\x35\x86\x9f\xd4\x06\x4f\xb0\x84\x3c\x5b\x98\x7d\x46\x5f\x76\x7a\x47\xbc\x1d\xad\x3a\x3d\x10\xb6\xf4\x1a\xa9\x97\x9c\x15\x1b\x51\x5c\x36\x5d\x6b\xfd\x97\xc6\x43\xaf\xf6\x69\xd9\x5c\xb8\x58\x73\xa5\x73\x00\xe9\xc6\x04\xc1\x64\xbb\x35\xfd\xd1\xbd\xb2\xf9\x57\x01\xd4\x79\x26\xf5\xb9\x3e\x2c\xcc\x2d\x12\x5a\x2c\xb9\x9e\xd4\xdc\x73\x0a\xfb\x00\xe7\xf3\x5c\xa3\x2c\xfd\x7c\x55\xfe\x7d\x09\x33\x05\xa9\xb5\x0a\xc7\xb0\x0e\xe8\xbc\xe3\x57\xd7\x5c\xc2\x74\x51\xb6\x5a\x46\x2a\x66\x86\xcc\x67\x35\x9b\x0b\x1f\x1f\x29\xf1\xfd\x41\x9e\x9e\x0d\xf6\x49\x05\x0b\xe1\xf9\x4c\x6e\x97\xb5\x52\xa7\xef\x6a\x51\x1a\xad\x05\xac\xa6\xe6\xc6\xb4\xe6\x01\x4a\x23\x92\x8a\x8a\x9d\x3f\xc8\x5e\x27\x45\x61\x64\x73\xe1\x52\x23\xd1\xc1\x8d\x4d\x72\x33\x8f\x0e\xe1\x4f\xa3\xee\x54\x2c\xec\xd2\xa4\x6c\x9a\xab\x40\x2b\x4d\x50\x81\x25\x56\x30\x1a\xeb\x8a\xba\x97\x83\x70\xd4\x12\x7a\xda\x57\x9f\x50\xd1\x83\xd4\xd5\x2c\x3c\xb5\x89\xad\x7f\xe4\x50\x4b\xb2\xe8\x4e\x47\x6a\xb4\xb1\x76\xaa\x96\xc8\x75\x06\x3e\xf3\xcc\x78\x2d\x6b\x11\x12\x06\x97\x22\x94\x1a\x1f\xdd\x3e\x5c\x0f\x6b\x4c\x25\x96\x1e\x77\x3f\x7d\x96\xd7\xb8\xd9\x69\xb4\x3c\x7b\xe5\x6f\x54\xf1\x62\x6f\x35\x6b\x1c\x6c\x9a\x81\x51\xf2\x19\x13\x02\xfa\xfc\xa6\x21\x2a\x3c\xd2\xc7\x62\x9c\xdd\x75\x52\xad\xd7\xf3\x88\xd6\x3a\x99\x99\xeb\x74\xdb\xcc\x6e\x48\xdd\xea\xb9\x58\xbe\x4f\x92\x35\xb7\x13\x15\x10\x14\xac\xd7\xaa\x82\x89\xd3\xe7\x37\x0f\x53\x21\xf8\x5d\x5d\x0b\x26\xe4\xf8\x99\x97\xda\xcb\x72\xab\xc5\xc0\x2e\x47\xeb\xf3\xee\x71\x32\x84\x22\xb7\x0a\xec\x00\x70\xeb\xe8\xfd\x4d\x9a\x0a\x06\xae\x89\x1e\xec\x3f\xbe\x20\x1d\xa0\x2a\x31\x6d\xad\x73\x4d\x43\x23\xa8\x02\x44\xcb\x2c\xfc\xc6\x59\xd9\xd2\x9e\xde\xde\xde\x10\x17\xbf\xb0\x8e\xad\xc1\x05\x80\xb0\x5d\x56\x7c\x43\x2e\x0e\x07\x78\xd4\xf6\xf0\x03\xcd\x76\x13\x94\x00\xc1\x2e\xae\x26\x3c\x09\xc3\x3d\xaf\xb1\x8f\xba\x99\x60\xda\x82\x4c\x19\x1a\x4d\x38\x0f\x88\x09\x6d\xec\x4a\x9a\xb0\x31\xe4\x69\x51\x79\x9a\x98\xd0\x36\x49\xea\x4f\xcf\x6a\x75\x93\x03\x6c\x5b\x18\xbd\x0e\x3b\xcf\xd9\x4e\x84\x4b\x27\x18\x7d\xde\x95\x9b\x8e\x9b\xd8\x48\x9d\xc0\xb5\x5c\x89\xc2\xab\xb1\x4e\x73\x6a\xf3\xc3\x72\x43\x17\x6d\x0a\x92\xfd\x3f\x4f\x0c\xe2\x97\xe0\xf9\x38\x76\xdb\xba\x75\xac\xb6\x06\x01\xcb\x7a\x62\x41\xe4\x55\x73\x15\x51\x0f\x9a\x6a\xe7\xc2\x8e\xad\xec\xa3\x3e\x87\x4c\x0b\xf9\xb1\x1c\xd4\x98\x0d\xc3\x95\x7d\x1d\xad\x3b\x1b\xc5\x51\x23\x5d\x38\xc4\xfe\x68\x91\x05\x14\xd3\x5c\x63\xf6\x35\x9f\xd4\x73\x44\x36\xe7\xb8\xd4\xf1\x96\x1a\xca\x35\xf7\x2c\x08\x0a\xc2\x4d\x32\x2a\x18\xd7\x6b\xf0\xca\xc0\xc7\x2b\x25\xb8\x52\x39\xca\x36\x9d\x4a\xce\x36\xbc\xc0\xcd\x43\x8e\x58\x4b\x6e\xe5\x43\x4b\xf5\xdd\xe2\x20\xea\x31\xcb\x6a\xe9\x85\x4b\xe2\x94\xcf\xc7\x35\xd1\x92\xbf\xf6\x9c\xcc\x97\x56\x46\x09\x5a\x37\xd5\xa1\x99\xd1\xaa\xab\xbf\x31\xef\x01\x06\x65\xe1\xac\x82\xec\x6c\x90\x07\x6e\x09\x15\x14\x7b\x29\xe3\xaf\x67\x35\x14\x51\x89\x40\x18\xc3\x3c\x8c\x3f\x6d\x68\x70\x7e\xf6\x6d\xc8\x78\x07\xa9\x9f\xed\x95\xcd\xc3\x72\x40\x03\x51\xf4\x22\x4e\x6e\xe2\xac\x25\x58\x81\xb1\x14\xd7\xc7\x57\x7c\x4c\x4b\x4d\x82\x52\x54\x04\x14\x8b\x88\x72\x8b\x68\xbc\xb9\x7f\xaf\x06\x21\xa3\xa1\x30\x3a\x17\x39\x26\xa9\xcf\x0a\xc5\x6f\x5b\x4c\x01\xa3\x1f\xac\x3c\x11\x77\x5e\x20\x61\x30\x94\x47\x34\x67\x00\x1f\xda\x76\xec\x0d\x9a\xfe\x60\x6b\xb3\x54\x66\xab\x27\x16\xfb\x2d\x1f\x8c\x91\xf5\x1a\xa2\x9c\x04\x66\x3e\x98\xdc\xf1\xab\x75\xbc\x1b\x24\x74\x20\xe8\x9a\xdc\x11\xb7\xf3\x84\x04\x88\x13\x68\x32\xfd\x44\x7d\xc1\x8d\x3b\xab\x4e\xdf\xa9\xd4\x67\x2e\xfc\xc6\x48\xd9\xb2\xf6\x5c\x5c\xa3\x36\x26\xb1\x40\x49\xea\xc2\x91\xc1\xd1\x17\x76\x75\x2d\x58\xa4\xc4\xcd\xf0\x7f\xb7\x0c\x51\x98\x04\xc4\xb7\x0a\x80\x22\xa0\xd2\xeb\xd6\x5f\xad\x65\xd3\x42\x66\x80\x36\x3c\xe9\x67\x9e\xde\xd2\xac\x34\xb1\x3d\x1f\x09\x22\x7f\x78\xdf\x21\xa5\xd5\x6b\x07\x2e\x73\x2c\xfc\x50\x91\x56\x63\xd8\x58\x76\xd2\x5f\xc5\xf0\x0e\x36\x74\xb3\x93\x78\xcc\xce\x8c\x8e\x93\x64\x07\xad\xc8\xe6\xc2\xce\x27\x13\x1a\x4e\x34\x97\x0e\x6f\x3a\x9b\xbc\xc8\x3a\xb4\x7d\x0f\xb9\x09\x78\xc6\x66\xe5\x52\x04\xda\xb2\x27\xd5\xf3\x70\x03\xfd\x33\x76\x27\x4f\x9f\xed\x3b\x48\xaf\xfb\xa3\xcd\x65\x25\x4f\x22\xd3\x22\x88\xce\x0f\xb5\x94\xea\x96\x73\xd2\x8f\x55\x99\x6e\x84\x7f\x79\x47\xd3\xe0\xef\x14\x23\xf4\x2d\x45\x05\x7e\x0f\x0a\x88\x8d\x56\xde\xd1\x94\x63\x09\xcf\x57\x05\x22\xeb\x2b\x47\x1a\xbc\xd7\x3d\xc4\x9a\x8d\x3f\xa9\xb2\xc2\xa3\x04\x31\xf7\x81\xa7\x20\xf5\xe5\x2c\x7e\x03\x12\xd5\xdb\xd1\x8d\xfe\xcb\xbe\xb8\x7b\xdb\xea\xea\x42\xb0\x61\x6d\xc5\x15\x22\xc2\x72\xc5\xc2\xb9\xe3\x74\x20\x03\x36\xa1\xc7\xc7\x33\xc6\xdf\xbf\xa1\xda\x43\x10\xce\x88\xfd\x75\xa5\x89\xe7\x02\xb6\x87\x8a\xec\x85\x1f\xd7\x14\x47\xca\xc8\x49\xf8\xf4\xdd\xac\x48\x60\x78\x88\x60\xbf\xac\x10\xf5\xc2\x4f\x6b\xe9\xb3\x03\x5c\xee\x88\xca\x50\xa3\x3d\xe9\x25\x87\x64\xbe\x47\x00\x6b\xcf\x7c\x6f\x85\xd2\x1c\x0b\xa8\xfc\x15\xb3\x94\xed\xa5\x28\x7b\x41\x40\xe8\x7e\x63\xa6\x11\x19\x55\x33\xd5\x05\x0c\x90\x9b\xfa\xf2\x28\xf9\xe1\x79\x2a\x19\x1c\x5e\x75\x3c\x89\x04\x9b\xda\xc6\xae\x23\x37\xa7\x61\x10\x30\xa5\x95\x9f\x61\x68\xf9\x60\x35\x62\x54\x6c\x40\x13\xfd\x4c\xe7\xb9\x38\xd1\x70\x40\x2c\x8b\xf7\xe7\x0e\xdd\x61\x0c\xf0\xf1\x70\xf8\x89\x2d\xfa\x8c\x0b\x82\xb2\x40\x41\x7d\xf4\x19\x89\x78\x19\xdb\x70\x9c\x7c\x8b\x11\xdf\xb2\x0b\x41\x01\xe1\x06\xd5\xc0\x74\xfe\x83\xe4\x6d\x4d\x9e\xce\x06\x39\x9e\xa2\xd8\xe6\x20\x3b\x1f\x50\xf9\xc9\xd4\x61\xe9\x1a\xef\x78\x34\x4f\xbe\x66\x84\xa2\x2f\x0b\x4b\xd1\xa9\xb8\x5f\x6b\xdc\x53\xa9\x1c\x61\x6b\x19\x7e\xb7\xaf\x0c\x7f\x45\x40\x1c\xbb\x11\x09\xd0\x93\x1e\xf1\x70\x93\x08\x21\x90\x30\x9a\x47\x4f\xfa\xc9\xdd\xaa\x76\x94\xf0\xad\xee\x31\x86\x6e\x91\x72\x4d\x7e\xec\x71\xf2\xfd\xbd\x8a\x84\x32\x9f\x84\x1b\xcf\x9d\x1e\xcc\xe3\x2e\xa5\x6a\x50\x60\x6b\xf4\xd1\xbf\xe8\xad\x08\xa4\x00\x46\x0f\x7a\xb5\xd7\x15\x71\x91\xc8\x00\x65\xd7\x6d\x49\xd6\xd7\xd7\x16\x26\x54\x69\x4b\xf9\xa3\x1d\xb2\x4b\x8d\xf3\xdd\x4c\x1a\x8a\xee\xfb\x47\x4e\x29\x35\x87\x42\x76\x5c\xfe\x96\x7e\x32\x7b\x66\xf4\x45\x75\xb6\xaa\xfe\xcf\xdb\xc9\x1f\xdb\xc0\x2d\x05\x51\x72\x42\xc5\x59\xff\x8d\x1b\x0f\xdc\x9c\xed\x6c\x38\x38\x76\x1b\x9a\xd2\x4f\xe0\xdb\x18\x97\xe3\x36\xf6\x87\xe3\x14\x51\x66\x2e\x94\x9f\x1e\xb7\x2d\x29\x22\xe8\x40\x9f\xe0\xa8\x40\x6a\xcc\x4f\xd2\xf3\xe7\xb2\xc7\x12\x78\x90\xd9\x98\xa6\x16\x8d\xe3\x59\x20\x13\xae\x0f\x97\x3d\x94\xc0\xb9\xdb\x81\x30\x2c\x9d\xf0\x82\xae\x67\x6e\x83\xd8\xc6\xa0\x27\xf5\xfd\xfb\x07\x8a\x4c\xcd\xc7\x48\x74\xb3\x2e\x72\x20\x0e\xf4\xa0\x4f\xa9\xdd\xa9\x83\xcf\xfe\x2d\x31\x23\x9a\x92\xdf\xb6\x51\x71\xdf\xa5\x7b\x9a\x30\xd9\xd5\xb4\x79\x60\x84\x12\x1f\x08\x81\x15\x1f\xf9\x28\x16\x40\xf9\xe7\x3d\xf2\x80\x8f\x12\x10\x1b\x51\x19\x57\x7d\x47\xfd\xf0\x0d\xad\xc9\xc4\x46\x7c\x4a\xf7\xf3\xdf\x35\x6f\xb0\xfb\x02\x60\x47\xd9\x0a\x33\xc8\xbc\x87\x79\xab\x66\x67\x11\xdf\x0a\x1a\x54\xb3\xd3\xaf\x28\xd6\x8d\xa6\x8d\x03\x66\x61\xb9\x70\xb3\x0e\xb1\x2c\x20\x17\x10\x44\x09\xaa\xd1\x77\xf6\x7e\x22\xf9\x9d\x81\x0f\x2c\xda\x09\xa7\x75\xc0\x8b\x3b\xd4\x04\x89\x10\xc4\x69\x5c\xf7\xef\x90\x1c\x25\x76\xd8\x35\x34\x9c\x73\x4d\x5c\x8f\xc1\xc6\x62\x36\x0e\x7c\x05\x26\x50\x81\x94\x30\x13\x96\x76\xc5\xc7\x79\x15\x52\x17\x5a\x97\x1f\x51\x5c\x2b\x99\xe7\xe3\x03\x74\x85\x59\xe8\x7a\x62\xfc\x9f\x5e\xfc\x70\x72\x14\xca\xc8\x33\xd1\x87\xad\x68\x11\x23\x39\x52\x97\xca\xe7\xe1\x23\x93\x65\xff\x0d\xbb\xec\x97\xc3\x53\x1a\x91\xab\x06\xec\xb2\x74\x6b\xbc\xac\x55\xa8\x7b\x54\x6c\x4c\x5f\x7c\xee\x19\x06\x56\x98\x6d\x03\xb3\x4c\xe5\x2f\x79\x48\x7e\x28\xec\x27\xcd\x6d\xb2\xb9\x30\xb5\x4b\x9b\xc8\x73\xfd\x18\x56\xf8\xa7\xfe\x65\xf2\xd4\xff\x97\x66\xee\x6c\x25\xdf\xde\xfa\xcc\xc7\x94\x82\xd5\x0b\x98\xfe\x55\x83\x71\xe5\xd8\x84\x42\x65\x05\x70\x9c\xf1\xee\x07\xae\x8a\x83\xbc\xe0\xdd\x27\x17\xed\x1f\x6f\xd0\xcd\x2b\x10\x03\xf8\x89\xa1\xa2\xf1\xdd\x67\x46\x6b\x47\x61\x63\x72\x6b\xfc\xb6\x77\xf2\xc9\x4e\x9d\x9a\xad\xb0\x9a\x29\x7a\x8e\x93\x97\x8c\x50\xba\x9c\xb1\xfb\x37\x76\x59\x23\xe9\x8f\x07\x24\xa4\x99\xd6\x13\xca\xf4\x3f\xfd\xd2\x89\x04\x65\x85\x23\xd7\xd2\x0b\x9f\xd4\x31\xe9\xae\x60\x0d\x61\x12\xab\x6e\x9c\x57\x48\xf7\x26\xc6\x9c\xfc\xf6\xfa\xfd\xf2\x68\x2a\xd9\x54\xe3\x33\xf5\xa9\xd5\x32\xfc\xd9\x75\x93\x35\x6c\x9e\x5e\xa3\xf9\x77\x22\x07\x32\x1d\x1e\xde\x19\x58\x64\x24\x93\x50\x13\xb8\xd1\x93\x4e\x0c\x65\x7f\xae\x11\xb7\x08\x40\x1c\x6a\x62\xd8\xdb\x06\xd7\x44\xe7\xd7\xb6\x51\x09\x32\x15\x94\xcf\xbc\x28\x0f\x9d\x8e\xc9\xb4\x25\x6f\x0c\x6f\x4b\x7e\x4a\xcd\x12\x37\x69\x64\xf4\xc2\x30\x70\x5d\x3e\x49\xa3\x50\xf2\xf2\xf5\xca\x2c\x2d\x20\x5e\x40\x71\x11\xe1\x6f\xba\xaf\xd6\x52\xa9\x6e\x54\xd0\x94\x72\xee\x7f\x3b\xde\xbb\x41\x85\x02\x40\x3e\xb1\x52\x67\xd1\x51\x2f\x0e\xee\xe7\xd9\xf6\xa6\x62\xd2\x18\x10\x8e\x64\x08\x1f\x9b\xaa\x8f\xda\xa8\x82\x13\xa3\xb6\xa6\xfb\x08\x33\x65\xec\x96\x20\x93\x09\x0b\x7f\x30\x57\xbe\x8e\x3c\xe2\xd3\xfa\xbf\x3f\xac\x21\x9b\x90\x6f\xe1\x40\x48\x70\xa6\xc6\xbc\x92\x10\x57\xf5\x91\x89\x3c\xfa\x6e\x67\x6c\x61\x8f\x79\x1e\x55\x47\x94\x77\x97\x99\xa7\x88\x02\x28\xa6\x1c\xc6\x03\xfb\xb5\xd7\xca\x58\x18\xa6\x62\x67\x6c\xbc\xf7\xb8\x6e\xee\x40\x4b\xe8\x02\x9f\xef\x18\x7f\x7d\x7d\xb0\xa2\x1f\x41\x7d\x46\xe8\x23\x7a\x6a\xcf\xa0\x84\x2c\x0d\x23\xcd\xf7\xd7\x34\x79\x0a\xa8\xc0\x24\x58\x5b\x8f\xea\x4e\x46\x2c\x9c\x71\x0c\xc6\x21\x6d\x16\x47\xa7\x10\x02\xb6\x65\xfc\xe3\xbb\x31\xb8\xc2\xa6\xe4\x29\x01\xae\x18\x60\xe8\x1d\x65\xa1\x1f\xcd\x9f\xe5\x2f\x89\xae\xc9\x14\x30\xdc\x3e\x2d\xe4\xb7\x1d\x64\x68\xe9\x2e\xe8\x5b\x90\x44\x51\xd7\x13\x6a\x3f\x0f\x6e\x64\x2f\x73\x52\x87\xb4\x3a\xcc\x2c\x38\x1e\xf7\x26\x40\xd0\x2d\x02\x8b\xa1\x98\xfe\x81\x7c\x21\x10\x22\xd1\x8f\x1e\xd7\xee\xc9\x41\x25\x02\x19\x43\x37\x7c\xbe\x69\xb8\x7e\xc8\x9a\x42\xa5\x3f\x5c\x3c\x83\x7d\xf9\x42\x35\xa1\x52\x64\xd7\x80\x0b\xec\x3a\xd3\xaf\x4e\x1f\x1f\x35\x56\x5b\x93\xcc\x42\xab\x51\x41\x3b\xfd\xcd\x5b\xd8\x49\x37\x39\xdb\xde\x7e\x5d\xfb\xd4\xe8\xaf\xaf\x38\x38\x46\x0d\xb8\xec\x3c\x6a\xb0\xd3\x48\xdf\xca\x55\x5d\x6e\x0f\x80\x5b\xc7\xaa\x7f\x57\xeb\xb2\xb8\xfc\xba\x94\x61\xf5\x08\x0d\x2a\x3b\x4d\xd8\xe5\xfc\x44\xd3\x67\x00\x35\x80\x62\x1f\xa6\xdc\x01\x4d\x17\x8c\x40\x20\xaa\x81\x77\x9f\x1e\x9a\x38\xe9\xb1\x60\xed\xa7\x7f\xbb\x4d\xce\xa0\xaa\x36\x28\xa0\x2a\xf6\x7c\x1c\xd5\x36\x63\xc6\x69\x2e\x00\x82\x2d\x96\xba\xfc\x90\x3c\x8f\xab\xd8\x0e\x1c\xe4\x72\x8d\xd4\xed\x1d\xe2\x3c\x2e\x21\x45\xd3\x3f\xb5\xaf\x53\x81\x2c\xb9\xd8\x2c\x17\x30\x65\x75\x65\x56\xb5\xb0\xa7\x8b\x2b\xdc\x49\x3d\x5c\xb6\x41\x05\xb7\x9b\x65\xc0\x46\x6e\xe9\x54\x17\xd3\xb8\x1f\x97\xcd\x85\x7d\xb7\x8d\x68\x8c\x43\x31\x7d\xc6\xf8\x88\x66\x32\x57\x83\x9e\x10\x4f\xbb\xe3\x9c\xa4\xda\xd2\xd8\x9f\x29\xec\x4c\x9e\x81\x1e\x2a\x31\x99\x6a\x81\xd3\xcf\x5c\x3d\x57\xd3\x8b\xa6\x45\x6b\x2e\xdc\x54\xe5\x8c\x17\x80\x28\xf1\x23\x74\x35\x0c\x09\x03\x16\xd2\x4d\xf3\xd7\x4a\xcc\xf5\x33\xa9\xca\xf5\x03\x5d\x4a\x53\x3c\x20\xfc\x70\x3a\xf6\xb6\xae\xf4\x05\x90\xcb\x32\x14\xe3\xb1\xcd\xfa\xb6\xb5\x85\x1e\x33\xbb\xb7\xbf\x7b\x4d\x77\x85\x23\x79\x4f\x76\x6d\x8c\x97\xf2\x03\x15\xb0\x69\x77\xc0\x0c\x4c\x0f\xbd\xa3\xa7\xdf\xf7\x05\x54\x12\x8b\xe5\xa5\x3f\x3e\xa5\xb5\xfc\xf2\x20\x0f\x44\xd9\xd6\x93\x6a\xd5\xfa\xc6\x25\x02\x5d\x50\x60\x0f\x2e\xfd\xee\xab\xdc\x0a\xed\xa6\x59\x0d\x39\xc3\x3d\xbb\x64\x8c\xaf\x07\x04\x45\x71\x7f\x77\x31\x79\xac\x77\x50\x79\x55\xc5\xb0\x97\x1e\xbb\x6f\x6d\xd7\x64\xd2\xa6\xf2\x70\x78\xff\xe3\xfa\x6b\x77\x7d\x0e\xdd\x1a\xf0\x70\x03\x2c\x28\xf0\x79\x67\xd2\xf8\xde\x52\x2d\xe0\x53\xed\x8b\x1a\x41\xbe\xec\x00\xce\xda\xab\x34\x26\x4c\x0b\x44\xe1\x5e\xc1\xaf\x2e\x7d\x2b\xd9\xc8\xb5\x80\x03\xbc\x4b\xce\x64\x06\xf5\x69\x51\xe6\x6e\xa4\x9c\x98\x65\x7c\x63\xf9\x95\x4a\xc6\xc2\x7c\xad\x15\xcc\x7f\xea\x17\x27\x68\x4d\x45\x71\xcd\x1d\xd9\x5c\xd8\x67\x83\xfc\xfd\x0a\xf2\xcb\xb8\xa6\x9a\x32\xf7\x18\xfd\x16\x6a\x52\xb7\x81\xd2\xec\x9a\x51\x50\x3c\xcd\x68\xb4\x66\xe0\xa0\x1e\x63\x2b\x17\x27\x5b\x84\x1c\x44\x59\x9c\x3d\x99\x7b\xb4\xce\xaf\x47\x33\x21\x4e\xe7\x0d\x27\x3f\x91\x5c\x9a\x81\x1b\x1d\x9a\x00\xb9\x3e\xab\x5c\x8d\xd6\x65\xaa\xcd\x8b\x90\x62\xdb\xf4\x84\x3c\x0d\x6d\x08\x4a\x01\xeb\xb3\xd4\x67\x34\xeb\x51\xde\xe1\x1e\x78\x17\x7a\xe9\xf6\x91\xbe\xf0\x57\xdd\xbf\x87\x85\xff\x28\x2f\xf0\x7c\x8c\xe9\x7e\x7a\xef\x40\xf2\xc0\xc0\x81\x5f\xa4\x84\xe8\xe8\xaa\xff\x81\xbb\x87\x4d\x6e\x17\xbe\xf1\x5f\xdc\x29\x73\xc3\x56\x93\x62\xdc\xd2\xbb\x77\x2b\x8c\x08\x97\xf1\x6a\xb8\xd3\xc1\xd6\x79\xba\xc3\x7b\x0d\x26\x70\x05\x43\xc7\xca\x47\x5c\xc4\x01\x61\xa6\xd6\xd1\x37\xdd\xa7\x71\x6b\xa8\x37\x11\xae\xf1\x31\xb0\x91\xe9\xc3\xe2\xe8\x02\x50\x51\x58\xad\x3d\xc6\x12\x5f\x1f\x33\xba\x0e\x97\x8d\xe4\x09\xe7\x83\x3b\x14\xed\x4d\xd3\xc2\x36\x10\xaf\x35\x83\x26\xea\x3b\x5d\x18\x52\xd1\xe6\xce\x77\x2f\x0e\x4b\x68\x81\x70\x88\x36\x9d\x24\x34\xbf\x9c\x3c\x2f\x3d\x50\x45\x6e\xe9\x92\x46\xff\x5f\xd5\x8c\x7a\x1c\x1c\x78\xb1\x50\x60\x6a\xcb\xf2\x21\x0a\xe7\x44\xd1\x52\x9c\x71\x58\x4f\x94\x7d\x6e\x37\x66\xdc\xd3\x57\x93\x21\x0e\x08\xa4\xc9\x63\xea\xcb\x47\xd9\x09\xfb\x59\xe8\xba\xd0\x57\x20\xf2\xa9\xb1\xfd\xd8\x6a\x58\x06\x10\x89\xf1\xac\x78\x49\x1c\x84\xb3\xd9\x6c\x2e\x6c\x5b\xa8\xb3\x2f\x30\xa5\x4d\x30\xdc\xdf\x4b\xeb\xb5\x4e\x31\x20\x8e\x48\x82\xd2\xc3\xe7\xb0\xee\x46\xc5\xc2\x4c\xbc\x66\xaa\xcd\x3d\x1a\x02\xa7\xc2\x3b\x50\x63\x6d\xc5\xc1\x0f\xba\xb1\x7a\xdb\x1f\xe6\x6a\xa2\xc0\x14\xfa\x81\xed\x4b\x42\x28\xfa\xcf\x1c\xad\x9d\x08\xb0\x8a\x89\x46\x08\xfb\xdc\x09\x45\x39\x11\x15\x12\xe2\xdd\x93\x76\xe8\x8a\x30\x16\x1b\xf6\xb0\x28\xb0\x73\x85\x9c\xcd\x75\x64\xe9\x2e\x30\xda\xd8\xbe\xf0\x2d\x54\xb2\xe8\x1b\xa8\x6c\xe7\x27\x1d\x04\x05\x86\x4a\xf8\x54\xbf\xc1\xf2\xfe\x69\xab\x99\x9e\x80\x77\x17\xe2\xa4\x1a\xa8\xfc\xe0\x5d\x2b\xe5\xfe\x2f\xd3\x11\x49\x36\x17\xe6\x7a\xf1\x26\x0e\xa1\x70\xd9\x6c\x2e\xfc\xfe\x76\x6d\xf8\x3d\x7d\xfa\xd4\x56\x51\xe9\x40\x4b\x11\xf2\x8e\x5e\xd0\x1f\xbb\x04\x7a\x04\x70\xe4\xc0\x8a\xb3\x8a\x37\xa2\x9f\x00\x8d\x6c\x96\xeb\xce\xc2\xd8\x46\x25\xde\xcf\x1b\xdf\x22\xf9\x55\x40\x81\x0e\xa4\x7e\xf4\xa2\xaa\x00\x55\x64\x53\x6b\xe3\xf4\x56\x5d\x73\x0b\x56\x84\x7c\x4c\xe1\x01\x36\x53\xbc\x05\x78\x65\x89\x3d\x31\x9c\x0f\x1a\xf0\x6a\xb4\xa1\x27\xd3\xc1\x5a\x3f\x55\xc4\x13\x61\x42\x6d\x9e\xe9\x09\x3a\x2a\x6e\x35\xe4\x69\x35\xf3\xb3\x0e\x4d\xae\xd8\x42\x3e\xcc\x5a\x40\x11\xb1\x4c\xb7\x75\xc8\x5b\xc2\x2b\x94\x53\x6a\xd5\x4e\xf9\xae\xf3\x41\xf4\x08\xd3\xfd\x9b\x78\xfc\x2f\x20\x13\xb9\x4c\xc5\x78\x32\x1f\x8f\x71\xfb\xad\xe8\x23\x5f\xef\x9f\x6c\x08\x7f\x86\xdf\xf2\xe0\xc7\x95\xc2\x19\x15\xd9\x64\x7f\xb8\xcc\x6e\x19\xb7\x2e\x91\xdd\xae\x23\xc2\xd4\x88\x69\xe8\xf5\x18\xb7\x6c\x57\x18\xf2\x6e\x5d\x59\xbb\x7d\x89\x42\x69\x46\xa4\x21\xd6\xec\x7e\x52\x9b\x75\x47\x4f\xce\xb3\x04\xc1\x2a\xda\xf3\xad\x6f\x24\xf7\x8f\x42\x6a\x63\x03\xf1\x45\x0b\x7a\xd2\x7f\x5d\x7a\xb5\x2b\x87\x6f\x51\x54\x6c\x38\xb8\x53\xdd\x52\x1a\x94\x5d\x0a\x0d\xb7\xa9\x7d\xfa\xc8\xd3\x2d\x50\x13\x10\x9a\x90\xdd\x32\x2c\x39\x17\xf1\x69\x7f\x99\x3e\xe4\xdf\x6c\x56\x72\x68\x60\xa3\x82\x04\xb4\xf4\x52\x6a\x44\xe0\x40\x02\x18\xec\x51\x33\xfe\xe7\x14\x56\xee\xb0\x11\x1c\xbb\xf4\xe4\xdc\x13\x33\xfc\xcc\xd3\x1a\x27\x39\xdb\x21\x08\x10\xd7\xcf\x97\x23\xb7\x20\x2a\xb3\xe6\x5b\x23\xc4\xaf\xb1\x8e\x40\xe2\x05\x36\x9f\xd0\x2c\x36\x91\x4f\x47\xab\x7c\x46\x9f\x7e\xef\xcc\x60\x75\x35\xbb\x7c\x2a\xfe\xfc\x2d\x72\x20\x51\xb6\x80\x8d\x8a\xea\x64\xf9\xab\x83\x98\x80\xfe\xcd\x88\xd8\x8d\xf0\xd6\x52\x3f\x56\x72\x2e\xc6\x0e\xf2\x6c\x50\x55\x42\xdf\xb3\x4f\xf2\x40\x0c\x01\xd5\xb8\x31\x6e\x5c\xa5\x69\x19\x00\x1f\x72\xa1\x9d\xf4\xb0\x6e\xa1\x78\xca\x66\x6d\xea\x20\xb7\x65\xf2\x48\x45\x92\x0c\x7a\xbc\x61\x26\x8d\x04\xfe\xb9\x33\xb9\xf5\xa0\x5d\xc0\x6e\x32\x10\x67\xe6\xbf\xa2\x04\x0d\x02\x58\xbb\x3f\xfd\xd3\xa5\x8a\xea\xf9\xc4\xc9\x1d\x6d\xc2\x79\x4c\x73\xe8\xc8\x23\x22\xf8\x15\xe9\x61\x8a\xb8\x75\x09\x10\x12\x5d\x2f\xd3\xf0\x19\xc2\x85\x00\x03\xe2\x52\x4e\x44\x98\xdb\x39\x40\x11\x2b\xa2\x55\xf4\x83\x5c\xe2\xc1\xb3\xb9\x6d\x6c\xfa\xcf\x9a\x05\x3f\xae\x42\xe2\x41\x20\x46\x78\xff\xf5\xb2\xbc\x70\x18\x88\x69\xc9\x1d\xdd\x12\xd9\x4c\xd9\x24\xb1\x58\x5c\x8f\x31\xe1\x50\x1c\x65\x88\xa9\x60\x28\x32\x9f\x5c\xc1\x5e\xe5\x8d\x38\x20\x0d\xce\x44\xa9\x9e\x27\xe3\xc5\x06\x40\x54\x09\xa5\xda\x6e\xb9\x5a\x66\x81\x80\x94\x20\xc9\xfa\x16\x70\xa9\x62\x88\xc9\x33\xad\x6f\xde\xa0\xf9\x97\x42\x07\x93\x3a\x0b\x42\x29\x10\xea\x9e\x4e\xb8\x02\x09\xd5\xbd\xa6\x65\xc8\xd8\x36\xcd\x0c\x29\x88\x7e\x81\xf6\xe9\x1a\xaa\xfd\x4d\x19\x5d\xcb\x8a\x91\x12\xf8\x19\x34\x46\xd1\xf8\x67\x52\x7d\x3d\xc6\xe3\x5a\xb9\x5e\x87\xa2\x62\x5b\xb1\x5b\x7a\x44\x16\x1b\xb9\xe5\x8b\x36\xb7\xe8\xb1\xdc\x86\x42\x55\xf6\x26\x6d\xd6\x43\xb5\x46\x02\x60\x73\x3a\xcf\x07\xcf\x4a\xe6\x24\xa0\x7d\xf5\xc7\xf7\x48\x9c\x12\x03\x3d\x47\xf1\x69\xf5\x42\xa5\x01\x52\xa8\x62\x93\xfa\x9a\x87\xb7\x2e\xd5\x9d\x82\x4d\x0b\x72\xc5\x92\x54\x6d\x94\xf6\xd5\x80\x95\xcf\x0c\x55\x92\xfe\xc3\x59\x29\xd5\x6f\x43\x50\x6c\xd8\xae\xe9\xaf\x1c\x96\x72\x00\x54\x4e\xeb\xd5\xf5\x0a\x76\xd5\x27\x81\xe9\x07\xd4\x89\xb5\xc7\x58\x7f\x41\x13\xe4\x05\x76\x99\x4b\x58\x2e\x3f\xaa\x3c\x6b\xc2\x46\x52\x5d\x07\x65\x6c\x99\x36\xa5\x2d\xeb\x41\xc6\xd7\x5a\xb6\x55\xf6\x98\x0b\x0d\x44\xd9\xb4\xd7\xa4\x09\x05\xd9\xc8\xf5\xb1\xcb\x6a\x63\x11\x49\xf6\x68\x65\x07\x28\x80\x0a\xd3\x29\x33\xc6\xe5\x69\x74\xcd\xce\xc1\xc4\x77\x98\x50\x64\xf2\x55\x0e\xd1\x66\x0b\x94\xbf\x08\x08\x63\x5d\xce\xb2\x74\x1b\x7b\x5b\x11\xcf\x0e\x4f\xde\xaf\xc5\x15\x45\x29\x87\xf7\x13\xd3\x5f\xbb\x61\xa0\x02\x2f\xad\x42\xaa\xf5\xf7\xf3\xa3\xdc\xcf\x2f\x5a\x1b\xac\x4c\xce\xf5\xa4\xef\x2e\x36\x29\xc1\x66\x4a\x54\xd8\x84\x87\x76\x0f\xe5\x99\x09\xf6\x91\xca\xdb\x48\x4f\x7c\x56\x63\xed\xda\x0c\x56\xc4\x82\xd0\xfb\xaf\xe8\x62\x11\x5e\x1e\xb8\xa2\x35\xf0\x0f\xdb\x45\x99\x58\xa2\x0f\x25\xd7\x93\x19\xb7\x44\x83\x3a\x4c\xed\xe4\x7a\x3e\xfd\xba\xd5\x41\x42\x54\x5b\xc0\x86\xc7\x98\x5e\x75\x61\x62\x32\xe5\x46\xb6\x53\x21\xb8\x10\x94\x7d\x26\xc2\xa3\x3f\xf7\xe5\xaf\x6b\x8c\x02\x60\x57\x41\x89\x33\xa6\x32\xde\xc1\x06\x1d\x8e\xe9\x9c\x9b\xd3\xba\x51\x21\xb3\xdb\x76\xb6\x66\x41\xa6\xc9\x5b\x5b\xa0\x8f\xd4\x50\x09\x51\x1a\x06\x2b\x75\xbf\x30\x46\xb7\x68\x2f\x16\xe3\xea\xe6\xaf\xf3\x65\xf1\xc5\x91\x99\x62\xc0\x35\x7e\xa5\x5c\xcd\x3e\x6d\x7e\x85\x6d\xbd\x3f\xae\x25\x86\xd0\xb7\x70\x15\xba\x09\x84\x5f\x8f\x31\x6d\x8e\x4c\x08\x2c\x50\xa9\x70\xf9\xd7\x79\x5b\xe4\x81\x7a\x77\x43\x9f\x61\xed\xda\xe4\x92\x2f\x61\xbb\x80\xdc\x64\x87\x3f\xbd\x7a\xa6\x82\xad\xc1\x0e\x4b\xa2\x1f\x62\xea\xdd\xd9\xd9\x7f\xc3\x0b\x33\x73\x85\x02\xc2\x33\x81\x53\xa1\x4d\xb2\xee\x30\xd9\xbb\xb9\x2f\x80\x88\xe0\x95\xb4\xa5\x2c\xbf\xf0\xbe\xad\xfc\x5c\xa2\x24\x7b\x4a\xb1\xef\x2b\xef\xc2\x8c\x52\x48\xb5\xde\x4d\xff\xb3\x26\xa5\xe8\x21\xc7\x11\x05\xab\xf1\xfc\x02\x0d\xff\x60\x83\x82\x50\xa7\xc8\x8c\x39\xa8\x2f\x6c\x6c\x96\x45\x8e\x92\x7a\xfd\xb8\x26\x30\x43\x60\x01\x51\x84\xa0\x10\x28\x5b\x7d\x44\x73\x48\xb4\x71\x1e\x17\x80\x76\xe0\x1b\x07\x84\xa7\xa6\x8f\x9c\xc0\x8e\xd5\xe4\x5e\x50\x4c\x8c\x60\x1d\x53\x9c\xd6\x73\x1a\x1f\xc4\xb4\xb0\x07\x79\x63\xf7\x9a\x26\x5d\xbe\xd6\x82\x85\x40\x20\x7e\x52\xb7\x6d\xd7\x06\x04\x58\xd0\x7d\xf7\x6c\x61\x3b\xfb\x46\x12\xad\x29\x35\x9f\xb9\xe1\xb0\x86\x5a\x22\xd8\xf3\x2e\xa1\xb1\xfe\xe0\x0b\x83\x95\xd5\x45\xfc\x22\xa6\xc2\x91\x99\xd6\x30\x3e\x61\x8a\x30\x9f\xcd\x85\xbe\x02\xfa\x82\x2b\x7c\x02\xaa\xa0\xc4\x14\x46\xd2\xc5\x33\x32\x03\xb1\x02\x97\xde\xd2\xf7\x47\x5f\xa9\xa4\x42\x9c\xf6\xa4\xe4\x0f\xbf\x38\xc5\xc6\xab\x4b\x90\x1d\x15\x5e\x32\x0e\xbf\xb2\x42\x26\xfd\xa6\x1d\x45\x35\x0b\x82\x02\x2c\xb8\x5c\x5e\xf3\xbb\xe3\x1b\xd6\x44\x85\x5b\xb5\x84\xbf\xc9\x2b\xbb\x0c\x52\x85\x9c\x9b\x8e\x48\xcc\x4a\xc9\xc6\x55\x6e\x8f\xb0\x70\x8f\x52\x9c\x63\xe2\x13\x80\xe8\xad\x7c\x73\x69\x7f\x1e\xa3\x4a\x2e\x3b\x2b\xd1\xc8\xc1\x3c\x29\xa4\x08\xcf\x22\x62\x04\x20\xa3\x79\x88\x5e\x0a\x02\x1f\x32\xe7\xa4\x8c\xbf\x77\x88\xc4\x63\xaa\xaa\x1d\xa3\x0c\x19\x06\x2d\x6c\x17\x70\xe0\x37\x9e\x9f\xed\x87\x1b\xba\x56\x36\xc6\xc2\xc6\xf6\xf4\x20\x79\x43\xed\x93\x62\x0b\xaa\x99\x6f\x25\x4f\x19\x07\x94\xc0\xca\x68\x03\xb3\xd1\xc9\x13\x2b\xd4\xf8\x83\x69\x11\x7f\x78\x5f\x7c\x4e\x43\x5a\xbe\xa3\xb9\x7a\xcb\x03\xd9\xf1\x9e\xf9\x91\xe2\x8a\xe4\x20\x37\xf0\xd9\x93\x4c\xe5\x17\x26\x6b\x43\x1e\x62\xd3\xf3\x5c\x81\x1a\xa6\x23\xa2\x5c\x4f\xda\x9a\x29\x3d\xe2\x00\x24\xd8\x05\x81\x8f\xcc\xc6\xfb\x5f\xf5\xe2\x48\x2d\x76\x55\x21\x71\x9d\xd8\xf6\x1f\x87\x8d\x3a\x6c\x14\xf0\x10\x66\x4f\x6b\x1d\xb9\xba\x9d\xe8\xc8\x65\xee\x28\xb0\xe0\xb6\xc8\x07\xa4\x86\x71\x23\xc6\xe8\xda\x37\x64\xde\x9d\xcd\x63\x31\xf5\x0f\xbf\xb9\x5d\xf3\x34\x70\xbb\xf9\x14\x9f\x03\x08\x3e\xb1\x86\x8f\x3e\x66\xcd\x9f\x75\xc7\xa2\x5b\x67\x89\x0c\xec\xfb\xb3\x5b\xf4\xc0\x08\x5d\x31\xb3\xb9\x63\x79\xb2\x80\xb5\xb0\x83\x4b\xd0\x85\x4c\xfa\x80\xa6\x3c\xcf\xba\xc9\x40\x5e\x8c\x8e\x5a\x02\x28\x6f\x2d\x56\xcd\xbe\x6c\x87\x26\x0e\x47\x6b\x8f\x09\xcc\xb1\x27\x79\x83\x3f\x9d\x39\xac\x41\x9d\x53\x6c\xbd\xaf\xcc\x90\xe5\xfc\xb4\x69\xad\x9d\xd3\xa2\xcf\xfe\xda\x4e\x76\x63\x20\xf0\x2d\xde\x9a\x68\x8d\x4a\x8c\xf3\x57\x2b\x27\x28\xed\x0c\x35\x1c\xcf\xd7\x29\xf8\xc6\x22\xa0\x5a\x63\xd1\xee\x98\xb2\x5f\x91\x21\x25\xc0\x65\xaa\xf1\xbb\x15\x2e\x88\x85\x09\x9b\xd4\x65\xee\xdc\xc8\x89\x50\x16\x66\x0c\xd8\x74\x65\x50\x13\x4f\x7b\x00\xe1\x68\xaf\xf0\x3b\xc7\x65\xc0\xe5\x6e\xda\xb9\x70\x75\x9b\x9e\x77\xb9\xcc\x7d\x98\xf3\xc2\x16\xec\xd2\xb4\x80\x91\x6f\x43\xd1\xcc\x79\x7d\xf4\x70\x35\xda\x49\x91\x10\x5a\x52\x3c\xf8\xb6\xe6\x46\xce\x5a\x50\x5c\xec\xa4\xf9\xf4\xd0\x9a\x3e\xae\x87\x2b\xa2\x9f\xac\xd9\xc1\xaa\xd5\x2e\xb0\x12\xd1\x82\xe2\xbf\x9f\xe5\xd0\x4c\x3b\x70\xdc\x28\x8f\x4f\x6f\xb8\xa0\x06\x26\x1c\xb7\x60\x67\x75\x29\xef\xcd\xc2\xd8\xa7\x70\x4e\x9a\x76\xa5\xbe\xb7\x5d\xc3\xec\x9a\x65\xe8\x25\x85\x14\x8c\xbe\x33\x12\x2d\xf8\x80\xd2\xe9\x53\x6f\xec\x92\xc9\x3c\x03\xd4\xeb\xa7\x3d\x1c\x95\xac\x9e\x80\xe7\x41\x27\x6f\xd7\x59\x45\x90\x5c\x5b\x67\x5f\xd4\xd2\x31\x3f\x28\x16\x63\x1d\x11\x7f\xd4\x30\x2d\x75\x72\x4b\xe2\x71\x87\x1f\x28\xa7\x90\x88\x8b\xb9\x9e\x74\xfb\x51\x6d\x1c\xec\x7a\x01\x11\x66\xb0\x46\xed\x19\x3d\x04\x63\x5c\xe0\x55\xe1\xe5\x3b\x15\xf6\x31\xe5\x34\x33\xec\xc8\xf6\xb5\xa3\xf4\x6a\xb1\x80\xd8\xcd\xf0\x66\xe5\xdf\xbd\xad\x0f\xda\x28\x7b\xdd\x83\x36\x4f\x1e\x0f\x6b\x82\xef\x9e\xcf\xb0\xff\xb1\x4f\xc5\xcf\x8f\x69\xc9\x07\x41\x79\x28\xea\xd5\xcc\x65\xbb\x15\x6f\x1a\x12\xbd\x2b\x6e\x8c\x93\x7e\xbc\xa8\x10\x25\x58\x5f\x7c\xd1\x39\x59\xf1\x50\x45\x73\xce\xbf\xfa\xc9\x1e\x85\x36\xee\x5b\x36\xe4\x48\xdd\x15\xad\xc9\xcc\xa6\x44\xbb\x8d\xaa\x8d\x7a\xff\xcd\xea\x42\x88\xce\xf0\xe8\xef\xbe\xa4\x21\x73\x9d\x7a\x94\xa3\xd7\xe3\x5b\x9a\xa3\x9c\x3a\x35\x2c\xb8\xc2\xa9\xd3\xf3\x19\x89\x68\x96\x49\xcf\x88\x31\x73\xf4\x11\x43\x29\xaa\x83\x84\x25\xfa\x7d\xf7\xca\x3c\x81\xfe\xcb\xf5\xa4\x8e\x48\x02\x2a\x95\xa9\x1f\xa9\x14\xac\xb6\x6c\x38\xe7\xaf\x57\x95\xff\x03\x27\xcf\x68\x5a\xe1\xdc\xc9\x52\x4f\xc5\x42\x25\xdd\x01\x31\x5c\x31\x51\x77\xda\x22\x28\xba\x1a\xbe\xab\x6e\x3d\x2a\xb3\x94\x32\xf0\x56\xd6\xcd\x32\x52\x01\xc9\x8b\x5f\xd3\x94\x6c\x5d\x0a\xe7\x08\x80\x2d\x42\xf8\xa9\x39\x5a\xd9\x58\x01\x84\xa9\x2e\xa4\xaf\x3e\xcb\x22\xe7\x67\x01\xb1\x81\x92\xe1\xac\x3e\xad\x91\x87\xb8\xa4\x15\x73\xa2\x31\x8e\x6d\x4a\xbe\x0a\x1f\xac\xa8\x50\xbd\x31\x6e\xcb\x38\x45\x37\xc3\x8c\x91\x8e\xfc\x34\x08\xba\xe4\x32\x6a\x6f\xa3\xcb\xc5\xdf\xcb\xf2\xd4\x3b\x80\x1a\xef\x3f\xb3\x71\xa4\x76\xde\x7b\x26\xf2\xfc\x78\x21\x67\x32\x7d\x34\xc7\x6a\x02\x02\xb6\xc1\xc2\xaf\x1f\xd4\xc1\xa8\x35\x7a\x8d\x6c\xb6\xf6\xce\x85\xe4\x2e\xb3\xb1\x5b\x62\x70\x85\x78\xf3\xfe\xcf\x43\xc9\x8a\xc1\x0e\x4c\x04\x5c\xac\x8d\x36\xde\x9b\xaf\x94\xb3\xd3\xa7\xd3\xbb\x49\xfd\x6f\x97\x36\x6f\x24\x41\x29\x00\x92\x01\x9e\xba\x79\x10\xa7\xf7\x60\x07\xd8\x28\xe6\x04\xd9\xd5\x64\xc4\x9f\xdc\x31\x71\xd2\xb4\x36\x5e\xa1\xd6\xb6\x4a\xf6\x62\x81\x4a\x96\x18\xe4\xa4\x02\x63\x46\xd4\x1b\x36\xd5\x7b\x01\x0b\xe1\x2e\x66\xda\xbe\xa6\xd6\x16\x8c\xaa\x7b\xc1\x52\x13\xab\xa8\xa9\xaf\xde\xa7\x0e\xdc\xa4\xd0\x7a\x2a\x7c\x63\x90\xda\x82\x06\x88\xed\xaf\x51\xbc\xbe\xc8\x03\xaf\x0c\xfd\x7c\x54\xaa\xe6\xc2\x9f\xad\x4b\xa6\x04\x34\x01\x76\x04\x29\x92\x47\xdb\x53\xc7\xb5\xd3\x8d\x96\x1b\x7c\x85\x7c\x71\x71\x72\x89\x95\x08\xae\x71\x2b\x16\xfa\xb5\x67\x94\xa2\xa0\x73\x62\x7b\xe7\xf4\xd6\xc9\xd3\xa3\xff\x7f\x5f\xa3\xb1\x54\x11\x74\x5d\xc0\xac\xaa\x69\x73\xe8\xf7\x92\x66\x5e\x86\x8a\x7b\x65\xea\xe7\x3b\x6f\xfd\x7f\x43\x41\x6a\x36\x3a\x5a\x33\x7e\x95\xa4\xc9\xe2\x5a\x36\x17\x5e\xbd\x23\x09\x0a\xb0\x11\xe3\xd5\xa4\x1f\x3f\x31\x2c\xc9\xb1\x76\x90\xef\x33\xdd\xfa\xe5\xbd\x34\xfe\x79\x55\xec\xe9\xa1\xbb\x93\x9f\x06\xf8\xc0\xd1\x68\xee\x60\x8c\xc2\x12\xf0\xe8\x73\xfc\xf0\xa2\xdc\x69\x16\xa4\xd0\xf7\x81\x9a\x9e\x9c\x05\xdc\x18\xcb\x3c\xf6\xfe\x06\x71\x26\xb7\x14\x6b\x9e\xa4\x6e\xdc\xab\xd1\x3b\x11\xc8\xba\xb8\x8a\x3d\x1f\x5d\xca\x0d\xfc\xa3\x4f\x6a\x8e\x3c\x3c\x00\x84\x33\xde\x1e\x99\xc8\x86\x1a\x1e\xdf\x5c\x4d\xbc\x2b\x4a\x39\xab\x20\x9e\x22\x87\xbf\x59\x3c\x44\x19\xcc\x17\x31\xf1\x71\x15\x67\x73\xe1\xc0\x4e\x7d\xce\x1f\x9d\x03\xf4\xd0\x65\x13\x8f\xbf\xb8\x3a\xce\x02\x10\xc8\x25\x88\xd2\xcb\x2b\x3a\x10\x10\xd8\x14\xa9\x4c\xc5\x59\xdc\xb3\xd2\xfd\x63\x22\x9d\x43\xbe\xb4\x7f\x90\xca\xec\xbc\x6d\xce\x84\x5c\x36\x17\xb6\x3c\x39\x40\xbc\x4c\x54\x04\xd4\x72\xc3\x58\x75\x5a\xd1\xd7\x46\x1e\x73\xb1\x30\x86\x56\x25\x66\x03\x50\xca\x4e\x41\x91\x49\x48\x8f\x19\xab\xc9\xf3\xd9\xc8\x5f\xc9\xe5\xc3\xc5\xef\x7c\xfe\xa2\xd2\x26\x32\xfd\x00\x70\xd0\x78\xe6\x51\x3e\xff\xf5\xeb\x15\xa6\x66\x05\x34\xff\xb7\xe8\x2c\xb2\xb9\x28\xfb\x92\xd9\x57\xe9\x91\xce\x4a\x0a\x10\x7c\x62\x9c\x2e\x5a\xc9\x30\x5a\x4a\xeb\xf9\x81\x71\x71\x33\x39\x4a\xfe\xf4\xc5\x50\x7c\x38\xde\x78\x9e\xca\x99\xd9\xb2\x57\x41\xf6\x0b\x21\xf7\x59\x79\x2d\x4f\xe3\x72\x09\x2c\x3f\x69\x3b\x2f\xbb\xfe\xd0\xc9\x03\x42\x00\xf7\x54\xeb\x49\x75\x56\x55\x77\x14\xe4\xe4\x03\xc2\xd5\x0d\x66\x3d\x3b\xe2\x52\xb7\xe0\x39\x0c\x44\x35\x6d\xb7\x9c\x0c\xdb\x45\x79\x7d\x83\x42\x79\x7d\x45\x58\x63\xad\xad\xbb\xfa\xc8\x50\x7c\x2d\xf3\xf4\xec\xfd\x82\x96\x52\x41\x0b\x54\x11\x26\x2c\x95\xbf\xe7\x7e\x7d\x3e\xe0\x03\x9b\x57\xbe\x6f\xee\xd3\x08\xf1\xd0\x05\xa6\x05\x1d\x8d\xbd\xf5\x87\xaa\x6e\xaf\x5b\xb4\x03\xe8\xfa\x48\x1c\xf5\xe1\x96\xd9\x5c\x12\x3f\xc8\xd3\x5a\x3f\xba\xd2\x4f\xbe\x3a\xac\xa1\x3a\x13\x26\xeb\x83\xef\x65\xbf\x4f\x1b\xc9\x4c\xc5\x21\x05\x9e\xd4\x45\x41\x70\x99\x67\x47\xc6\x67\x25\x56\xde\xc7\xd1\xd1\x32\xb8\xad\x81\x59\xc2\xf2\xa8\x96\x35\x5a\xde\x6b\x02\x87\x77\x93\x1f\x9b\x23\x85\xf3\x63\xe1\x73\x1d\x60\xd8\xd2\xe0\xd4\xd3\xc9\x72\x8b\xd4\x1f\xb6\x68\xd0\x4f\x3b\x7a\xf7\x26\x07\xeb\x22\x3d\x1d\x80\xd0\x6f\xe5\x19\xfc\xf7\x17\x28\xcc\x9a\x20\xdb\x31\x8d\xca\x31\xed\x8e\x87\xa6\x4e\x3d\x16\x3e\x1f\x46\x46\xea\x51\xa2\xa6\x6e\x07\x63\xc5\xbc\xa4\x8c\x8f\x0b\x7c\x7c\x49\x1f\x99\x87\xda\x9a\x95\x46\x1b\xa3\xe4\x70\xf2\x6b\xd3\x81\x06\x55\x10\xea\x72\xcf\xbd\xec\x5f\xdf\xa1\x11\x3e\x81\xef\x63\x2c\xa6\x6f\x3d\x4f\x5f\xa5\x15\x3d\x51\xda\xa8\x5e\xe2\xf4\x27\xb4\x31\x23\xf4\x50\x89\xe9\xc4\x67\x46\xbc\xaa\xa9\x1f\x83\x3c\x72\x13\x7f\xfd\x7f\x9a\x95\x12\x20\xaa\x57\x09\xc6\x54\xff\x27\x3d\xe9\x45\xa5\x4f\x2e\x51\x38\x89\xf7\xf7\x41\x9f\xe4\x52\x5d\x69\x01\x2d\x6d\x32\xd6\xcd\xd3\xea\xa6\x62\x31\x88\x9d\x46\x53\x5f\xfa\x40\x57\xc7\xaf\x83\x6c\x2e\xb4\xe6\x5e\x21\x2d\x10\x49\x36\x17\x5e\xa6\x8d\x44\x2c\x20\xf2\xbb\xfe\x33\xe2\x5f\x2d\x81\x6a\x36\x17\x7e\x7b\x1d\x07\x8d\x50\x0f\x52\xaa\x71\xdb\xa4\x0a\x6d\x63\xcc\x6d\x19\xc7\x5d\x2f\xf1\xfe\x36\x48\x36\x2d\xd3\x53\x8e\x8e\x50\xba\x54\xb6\xe7\x83\xba\x4c\x9c\xc3\x9f\xec\xd3\x96\xbd\x85\x4d\x3e\x2d\x4a\xbf\x37\x43\x17\xe2\x8a\xa5\x04\x52\x4f\xbd\x33\x48\x01\xe2\x94\x84\xd4\xc2\xc0\x9d\x0a\x57\x55\x08\x5e\x18\xc7\x97\x34\x10\xee\xdc\x09\x15\x76\x40\x2f\xe4\xba\x2e\xb3\x2a\x15\x40\x18\x45\x37\x17\xde\x66\x68\xbd\x5b\x0b\x31\x85\x13\xb6\x94\x3e\x7c\xba\x59\xe9\x96\x07\x9c\x59\x44\xdf\xf5\xa3\x0f\xeb\xe0\x01\x24\x53\xb4\x77\xfb\x2b\x32\x23\x55\x16\x3e\xd2\x07\x35\x6f\x3f\x1f\x07\xd1\xc1\xc6\x07\x9d\x6f\x4e\x1c\xac\x04\xe7\x22\xe2\x88\xda\x2d\x0f\xe9\x52\x6c\x4e\x05\xba\x9e\x9a\x2c\xfe\x66\xaa\xdc\xbc\xac\x8c\xca\xf5\xa4\xae\x5e\xaf\x7b\xc7\xfb\x00\xd9\xfc\xb6\x5e\x75\xb5\xd2\x01\xdb\x36\xae\xc5\xf2\x31\xa1\x7b\x8d\x4a\xf7\xf2\x09\x28\x30\x13\xb2\xcc\xb4\x0f\x14\x8b\xae\x15\x22\x03\x8a\xbe\x6f\xc9\x48\x1d\xdd\x1d\x94\x2c\x5f\x58\x54\x7c\xa6\xbf\x6c\x3f\x97\x09\xf0\x5c\x5c\x07\xc4\x2b\x67\x73\xe1\x00\x4d\x0e\x95\xaa\x95\xb3\x7c\xe4\x57\x37\xf0\x10\xec\x20\x93\x6b\x3d\x18\x5f\x78\x53\x17\xaa\xf5\x7d\x5b\x0c\xe3\x82\xf3\xbc\xb9\x54\x41\x04\x70\x25\x90\xf4\x87\xcc\x41\x35\xdb\xc5\x3c\x55\x65\x37\x71\xc2\x89\x58\x46\x8d\xa6\xc7\xdf\xdc\x3d\x44\x61\xfc\x79\xd0\xe3\x26\x36\xe9\xcd\xeb\x14\x67\x56\xe0\x70\x65\xde\xe9\x67\x65\x6e\x2a\x95\xca\xd8\xfc\xe2\xd3\x1a\xb9\x73\x52\x5b\xb6\x00\x84\x35\xa4\x39\x35\x79\xa4\x59\xd8\xb4\x3c\x1f\x39\xc9\x96\x4f\x7a\x80\x9f\x04\x9a\xb1\x3e\x01\x32\x2f\x19\x4a\x07\xcb\xd3\xa7\x48\x75\x15\xc6\xe6\x9b\x78\xa1\xe3\x7a\xd0\xf5\x98\x60\xed\xa6\xf5\x8d\x84\xab\x28\xda\x3e\xb6\xbf\xb9\x21\x63\xe6\xbb\xaf\xe9\x01\x99\x43\x75\x03\x64\x73\x19\x8a\x70\xff\x1a\x6d\xee\x59\xaa\x57\x7c\x04\x14\x79\xe4\x1e\xe3\x09\x05\x93\xc8\xdc\x5d\x98\xbf\x00\xc5\x76\x76\x68\x05\x0e\xb0\xcb\xb1\x37\xd4\x47\xf5\x61\x0b\xf2\xeb\x5c\xdd\x2d\xf5\x8d\x71\x1a\x98\x11\x92\x2a\x32\xe1\xa5\x86\x23\x63\x5f\x61\xed\x8d\xf6\x4e\x2a\xe9\x55\xbf\x41\x93\x7d\x5a\xe1\x63\x42\xb7\x11\xcd\x34\xae\x3a\xc0\x57\x1b\x73\x78\x8d\x22\xe8\xe6\x5d\x32\xc6\x30\x51\xb6\xe8\x73\x3a\xa6\xc6\x6e\x43\x5e\x00\x38\x11\xd2\xf8\x97\x56\xa9\xba\xec\x44\xf1\x78\xfd\xbd\x2a\xcd\x1e\x56\xe8\xb8\x9b\x65\x5b\x1f\xe7\x3a\x74\x7e\x0d\x67\x6b\x94\x40\x1c\x3e\xfb\x8c\x06\x93\xac\x60\xa6\xb2\xf4\x52\xaf\x18\x19\x10\x94\x85\x98\x56\xe6\x2a\xc5\x56\x18\x94\xa0\x6b\x52\xc8\x59\x38\xbd\x4b\x2e\xe1\x02\xac\xa2\x78\x80\x39\x3d\xd4\xfa\x66\x90\xd8\xb8\x9a\xc8\x96\xb7\xef\xd2\xa0\xf4\x3e\xc5\xde\xb0\x99\x63\xf4\xca\xef\x3c\x97\x7c\xe5\x63\xba\x31\x1c\x93\x2c\x84\xd3\x0f\x8d\x4a\x26\x3d\xed\x6d\x3c\xc2\x83\x0d\x6c\x3d\x52\x9a\x33\xe7\x0f\xa4\x37\x3f\x21\xfb\x97\x52\xe3\x41\x55\xfa\x9b\x79\x88\xf3\x50\x5d\x5c\xa3\x44\xa2\xda\x64\xd5\xfc\x87\xaa\xc0\x70\xee\xc9\xc1\x96\x66\x29\x47\x9d\x57\x3f\x25\xe5\x68\x8e\x78\xb4\x77\xa9\xf4\xfc\xc2\x4f\x2d\x6f\xd1\x53\x6a\x1c\xa5\x82\xd1\x9b\x79\x7b\x81\x32\x0a\xb3\x1a\xc6\xde\xa9\x33\x7a\x93\xd3\x33\x01\x9d\x65\x52\x11\xf2\x15\xef\xea\x06\x10\x74\xb9\x0a\x33\x92\xde\x73\x14\xf5\x41\x6c\x17\x55\x25\xb8\x2b\x9a\x15\xc0\x1f\x43\x4a\xfc\x52\x19\xf9\x52\xc5\x2f\x9a\x96\x7e\x59\x7b\x73\x26\x76\x69\x04\x34\x63\xa7\xd3\x8b\xcf\xb1\xc7\x38\xb5\x3d\x4b\x63\x9d\xf1\xfe\x05\x45\xb6\x9d\xf8\xd0\x45\x75\xa8\x78\xc1\xff\xd3\xf5\xba\x93\xac\xd9\xca\x9d\x42\xc6\x10\x85\x1c\x05\x4d\x02\x01\x15\x25\x30\x36\xbb\xba\xc9\x59\xe0\xf1\xba\xfb\x0b\x63\x15\x61\x06\x8b\x4e\x72\xe9\x18\x97\xbb\x76\x2d\x44\x75\x50\xb0\x78\x5c\xd9\x95\x97\xf1\xa6\x7d\xfa\x94\x6c\x85\x77\xc9\x33\x30\x23\x64\x3f\x28\x0c\x2f\x8a\xf6\xdb\x87\xf1\xf4\x04\x10\x60\xfa\x90\x08\x6f\xff\x5c\x8f\xf1\x4e\x4b\x72\x3b\x4d\xca\xb6\xf1\xc6\xd5\xe0\x77\xb4\x0a\x3f\x70\x28\x22\x37\xba\xa2\x8b\xfd\x34\x92\x29\x26\x85\x98\xcb\x9c\xbe\xec\xf1\x91\xda\xd1\x63\x96\xb3\x05\x4c\xff\x9a\xfe\xc2\xbc\x87\x35\x7c\xbb\x3c\x70\x8f\xcc\x49\x2e\x30\xe4\x79\x01\x9c\x50\x63\x98\xbb\x97\xfa\xcb\xf3\x3b\xfa\x05\x3a\xe2\xfc\xe0\xf4\x18\x2d\x03\x4e\x90\x2f\x45\x67\xf7\x8f\x0a\xd0\x15\x16\x90\xc9\x1a\xef\x37\x9e\x61\x0f\xcb\x24\xd8\xe5\xc2\x8b\xaf\xcf\x51\x8c\x09\xa9\xbd\x60\xf8\x9d\xa7\x93\x9d\xa8\x3a\x0e\x7c\x4b\x63\x70\xa7\xff\x61\x01\x3b\x33\x72\x65\x1b\x58\xd8\x89\xbb\x71\x8f\x74\xc9\x4c\xd0\x85\x80\x64\x1d\xec\xe2\x0a\x66\xb4\xeb\x5e\xef\xaa\x48\x3a\x94\xa7\xc1\xe9\xe4\x38\x2d\xa7\x77\xf2\x80\xba\xc7\xf3\x8a\x0b\xe6\x95\xa6\x78\x50\x40\x51\x51\x1b\xbd\x15\xb4\x95\x6b\x5f\xb6\xb3\x99\x56\x6a\xf9\xcb\x32\xb9\xaa\x80\x0a\x0d\xd5\x2d\xe7\x14\xb3\xf1\x32\x22\x8c\x61\xdc\xff\x6d\xc5\xf1\x10\x12\xc8\xc8\x88\xf5\xeb\xe3\xfe\x13\xae\x46\x2b\xc9\x5c\x98\x24\x80\x38\x81\x07\x03\xe7\x12\xf8\xf8\xd4\x13\x99\x16\xe5\xc6\x20\x28\xfb\x16\x89\x12\x1d\xfa\xa8\x6e\x3b\xc6\xa1\xb7\x51\x2e\xc0\x1a\xfa\xe7\x0a\x2c\xec\xcd\x07\x25\x1c\x9f\x8b\x3d\xe7\x9a\xe2\xc9\xad\x2d\xac\xfa\xec\xa6\xe4\xba\xbc\xb6\x8e\x03\x9e\x3d\xa5\x5f\xd4\x98\x20\xdd\x81\x53\x81\xbc\x9c\xcc\x8c\x6e\xd6\x8e\x35\x37\xaa\x49\x40\x09\xf2\x74\xe3\xa6\x16\x85\x60\x5c\xf5\xae\xab\xa2\xeb\xa8\x92\x50\xea\x3b\x45\xdd\xc0\x1a\x95\x63\x61\xed\xd4\xda\xbb\x34\x42\x9a\xed\x61\x1e\x2d\xdf\x5f\x19\x03\xb5\x6b\x54\x27\x4f\x72\x60\xde\xb8\x77\x98\x5a\x1f\x38\xa0\x2c\xb4\x6c\xc2\xa7\x46\x6b\x8a\x85\xcc\xe9\xdc\xe7\x83\x15\xa3\xd0\x4f\xe5\x80\x62\x20\x14\x12\x53\x9f\xdc\xcf\x0d\xb5\xa2\xcc\xd7\xe6\xc2\x11\x33\x0e\x69\x3d\x03\xe4\x45\xf5\x23\x63\x16\x3c\xf0\xca\xe5\x22\xd8\x44\xaf\xf7\x07\xfb\xb5\x93\x0d\x6a\x50\x9a\xd4\xe4\x51\xca\x2e\x12\xda\x81\xa9\x03\x0f\xab\x4e\xd8\x76\x31\xcb\x54\x76\xc2\xff\xd9\xac\xb4\xa6\x5c\x1f\x65\xcb\xa8\xe0\x82\x0a\x63\x0e\x84\xbf\x39\x23\x67\x8f\xd7\x36\x2c\xa0\xe7\x57\x4b\x5a\x37\xb6\x20\x68\x9c\x61\x4f\x5b\xa2\x5b\x6e\x12\x24\x64\x98\x3a\x0e\x6b\x59\x02\x14\x20\x93\x91\x2f\x6b\xa2\x4b\x98\x60\xdf\xaa\x6b\x08\xd7\xd5\x12\x85\x3f\x85\xb2\x21\x8d\x19\x27\x92\x9f\xe8\x62\x9f\x0d\xe3\x47\x1d\x51\xc1\x18\x2b\x68\xfe\x38\x65\xac\x0e\x82\x81\x9e\xa8\x94\x7e\x73\x51\x09\xf2\xb8\x1b\x07\xcc\x4d\x31\xab\xc9\xf5\x17\xb1\x19\x70\x9d\xcd\xaf\xaf\xcb\x6a\x0b\xd7\x67\xbc\x23\x47\xf8\xcb\xe8\x13\xe9\x1d\x05\xed\xfb\x6d\x2e\xe5\x9e\x0b\x5f\x55\x50\xba\x71\x60\xa6\x41\x79\xf5\x10\x85\x37\x07\x5c\xe4\x70\x6d\xc4\x7f\xda\x2c\xa3\x48\x0d\xf9\xec\x3f\x37\xaf\x64\x29\xe3\x6d\x2c\xc7\xdf\xf1\xba\xa2\xec\x06\x09\x05\x99\x18\xff\xa2\xb8\xe4\xe4\x03\xdf\xc7\x26\xc5\x2e\xa7\xfa\xec\x55\x22\x22\x76\x4b\x01\x20\xc0\xf5\x21\xeb\x30\x22\xbd\xc3\x88\xc1\x0a\x28\x1a\x16\xf7\x77\x5d\x23\x9f\x5d\xf4\x79\x16\xb6\x0b\x97\xe0\xea\xa7\x7e\xb2\xfb\x9a\x9a\xde\x84\xbd\xd4\x93\x4a\x7f\x62\x09\xf7\xab\xc8\x03\xaa\x00\x15\x85\xfb\xbd\xe7\x75\x9b\x06\x8f\x0f\xd4\x69\xdf\xe3\xa1\x56\x6d\xc3\x33\xfd\x0b\xba\xa1\xfe\xeb\x62\x93\x52\x83\x13\x44\xbb\xa8\x64\x9e\xaa\x5c\x80\x1d\xe4\xb2\xce\xfc\xc7\xa8\x52\x6a\xb5\x42\x2d\x36\x17\x66\x73\x61\x2b\xe3\x50\x64\x6f\xc1\x36\x8e\xd2\x82\x86\xfe\x67\x7a\xe4\x79\x16\x39\x6f\x64\x93\xda\xe8\x29\x7f\x74\xc4\x00\xf1\xc9\x3e\xb3\x27\xef\x31\xbe\xac\x39\xdd\xd9\xa8\x18\x9d\x54\xb4\xbb\x95\x55\x24\x42\x0a\xd8\x2d\xe3\xaa\xef\xc1\x2a\xa5\x0f\x72\x0d\x12\x1b\x89\xe3\x33\xba\xa5\xd7\x3a\xe5\xe8\x31\x8a\x6d\x7a\x9b\xe6\xf6\x03\x03\x94\xb7\x59\xa5\xcb\x61\xf2\xc3\x0a\x11\xc6\x86\xd0\xa4\x16\x9c\xb5\x4d\xb2\xcc\xc9\x93\xe8\x19\xc8\xc0\xd2\x7f\xd7\x40\xc9\x58\x8d\xfd\xce\x1f\x38\xa0\xd1\x32\x11\xb1\x99\x22\x15\xbd\xcd\xff\xbc\x25\xc9\xd0\xad\xf8\x01\x67\xe8\xde\xb5\x5b\x6f\xc2\x9b\x20\x8a\x88\xac\x83\xf0\xcb\x71\x4a\x1e\x01\xaa\xd0\x8a\xfe\x24\xf5\xcc\x70\xad\x0f\x2f\xae\x2e\x7a\x0a\xcf\x6b\x87\x87\x83\x05\x2d\x9c\x7d\xe4\xb1\xce\xf8\xa8\xac\x41\xba\xfa\x57\x5d\xaf\x59\xb8\xd4\x3d\x3f\x4a\x1e\x13\xb5\xc4\x1f\x5d\x5e\xe0\x60\xea\xd8\x40\x13\x9a\xc7\xf6\x24\xd3\x27\x07\x20\x3b\x1b\x25\x58\x3c\xfb\x4a\xaf\xdb\xa0\xf4\x4c\x2a\x90\x61\x35\x26\x9d\x56\x6c\x8e\x26\x51\x9b\xa3\xd4\xb4\xfe\x12\x2c\xed\xc6\x2d\xc3\xbe\xc5\x81\x3c\x41\xf4\xa8\xc0\x17\x53\x0c\xbb\xfc\x5e\x3d\x64\x40\xc2\xb1\x58\xe9\xc9\x37\xb4\x88\xff\x6e\x50\xd1\xea\x52\xb4\x47\xad\x80\x5a\x25\xad\x3e\xa0\xb7\xf9\x9d\x0a\x24\x80\xb9\x8f\x32\xe9\xe3\x79\x5c\x05\x9b\x69\xf1\x33\x93\x98\x91\x5a\x67\xda\x71\xd0\xff\x47\xd7\xdb\x80\x5b\x51\xd5\xfb\xe3\xee\xd9\x3b\x52\x44\x5e\x0f\xef\x88\x48\x8a\x08\xec\xe3\xe1\xf0\x22\x10\x7f\x52\x44\x44\x05\x36\x01\x3f\x32\xe4\x22\x6b\xcf\x5e\x7b\xcf\x3a\x7b\x66\xd6\x76\xcd\xcc\x3e\x67\x9f\x88\xd4\x8c\x8c\xfc\x11\x19\x3f\x43\x32\x33\x2e\x11\x19\x91\x97\xc8\xb8\x5c\xae\x99\x92\x97\x9f\xf1\x23\xaf\x71\xc9\x0c\xcd\xb8\x46\x64\x64\x64\x46\x46\x9c\xe9\xff\xcc\x77\xad\x99\xb5\x66\xed\x73\x9f\xe7\x3e\xf7\x79\xc2\x73\xce\xde\x33\xb3\xe6\xfb\xfa\x79\xa9\x24\x1b\x5f\x78\xaa\xd7\x74\xc9\x0b\x17\x6c\xe4\x9e\xcc\xf4\xad\xa2\xf3\xb1\x29\xaf\xe9\x3e\xf4\xec\x70\x45\x47\x85\x96\xf9\x7c\x82\xe3\xe1\x6e\x3f\x2c\xd3\x2e\xb7\xb7\xca\x9b\x14\x81\xe9\x71\xf6\xde\x8b\xa3\xe2\xd7\xf1\x8e\x3b\x56\x34\xab\x55\x1f\x4b\xe8\x22\x9d\xb0\x59\x4f\xbf\x99\x33\x98\x18\x92\xcc\x9a\x39\x2b\xfa\x6b\xdf\x9d\xdf\x3f\x2e\xba\x09\xf7\xba\xc9\xf6\x1d\x25\x3b\x82\x4e\x86\x81\xf4\x1d\xfd\xfb\x57\xc3\x7e\xe2\x81\xa0\x52\x23\x5f\x08\xed\x29\xba\x0a\x62\x05\x5c\x60\x84\xb9\x5d\xf6\x5f\xde\x4c\x92\x93\x85\xa0\xd7\x7f\xec\x7d\x6d\xd4\x8c\x7d\xdf\x56\xa0\x1a\xc6\x77\x4a\x71\x90\xc0\xc8\x11\x6a\xa0\x93\x43\x6d\x42\x44\x11\x2b\xc5\x2e\x02\xc6\xa6\xbe\x9a\x7d\x0c\x75\x71\x43\x6c\xf0\xfe\x36\x45\xb5\xf4\x64\x18\xe4\x9b\xf3\x85\xf0\xb7\x5b\x92\xf3\x46\xdd\x84\xab\x89\x9f\x57\x76\x33\xd8\xa9\xc1\x9f\xb8\xf5\xf9\x81\x69\xaa\x7c\xf4\x8f\xf3\x85\x5c\xa6\x67\xd1\x5a\x15\xe3\x9a\xc0\x8b\xbc\x2f\xcd\xc1\xac\x94\xc0\xc0\xc9\x7e\x3a\x25\x02\x9b\xe0\xa8\x2c\x6e\xd4\xc1\x87\x9b\x98\x8f\xa0\xe7\x26\x74\x66\x47\xbe\x39\x42\xb9\x0c\xb7\x82\x19\x27\xf2\x00\xc5\x6f\x35\x47\xd0\xad\x64\xa4\x18\x34\xab\x28\xf7\x18\x1b\xea\xf2\x02\x18\xed\xe4\x9e\x2d\x1f\x5e\x39\x56\x6e\x14\x29\x2b\x5d\xd7\x4c\xf2\x29\xbc\x15\x0b\xd4\xcf\x9e\x09\x2f\xde\x54\x26\x6f\x8f\x45\x1d\xe8\x00\xee\xef\x4a\xa3\x91\x1a\xc8\xad\xe2\x64\xc6\x90\xfe\x83\xd5\xc3\x3c\x83\x45\x35\x52\x14\x1c\x61\xa5\xbf\x78\x9f\xa6\x77\x50\x45\xf5\x2a\xea\xce\x17\xc2\x5b\x94\x1e\xca\xc6\x9d\x1c\x9f\xb5\x7b\x5e\xb2\x75\xe3\x0a\x40\xe9\x6b\x9d\xb8\x5b\x13\x0e\xb7\x51\x43\xc0\x09\xfc\x6b\xf8\x31\x47\x15\xec\x96\x10\xbc\xc8\xab\xf7\xf3\x2f\xb4\xc2\x67\xc8\xc7\x15\x18\x93\xe7\x86\x0c\xd3\xd6\x53\x7e\x9d\x2f\x62\xd3\x6f\x51\xc7\x62\xf1\x16\x4d\x07\x6c\xdb\xf9\x1d\xca\xae\x88\xe6\x0b\xe1\x5c\x43\x96\x14\x0c\x9b\x98\xd4\xf8\x3b\xbf\xf0\x82\x9a\x62\x89\x6b\x62\x4e\xbe\xce\xfe\xaf\xe7\xd5\x5f\xb0\x09\xae\xc3\xe3\x3d\xa7\xb5\x58\x16\xaa\x71\x69\x86\x98\x12\x70\x46\xe8\x75\x12\x8f\xc3\x14\xa2\x27\x35\x73\xd3\x20\xa5\x10\xb2\x6d\x02\xfd\x7c\xfb\xa3\x52\x80\x44\xf1\x33\xee\xc9\x2c\x55\xb0\x0e\x62\xef\x02\x4b\x97\x27\x53\x32\x4f\x75\x00\x9f\xb6\xe6\x0b\xe1\x1f\x8e\xc9\x6e\x0b\x6e\x5a\x76\x8d\xad\x00\x33\xa8\x0f\x69\xe5\xff\xee\x93\x57\x5a\x42\x84\xcb\xf9\x45\x61\xbd\xff\x35\x7c\x35\x31\xb5\x3d\xe6\x79\xdf\x51\x6e\x49\xeb\x6f\xc4\xdf\xec\xc7\x4f\xcb\xe1\x34\xf0\x54\x63\x45\xa9\xaf\x8d\x18\xdc\x99\x1a\x3e\x71\x14\xd6\x4f\xf7\xc6\x52\xb7\x14\x8a\x55\xa3\xad\x8f\x46\x63\xc6\x24\x96\x9e\x98\x38\x26\x3d\xd8\x5a\x17\xf7\x49\x53\x8e\x68\x50\xf3\x46\xc9\xc5\xb1\x11\xbf\x04\x74\xdf\xbc\x57\x5b\xcd\x81\x8f\x4e\x8c\x77\xdf\xb2\x3e\xa5\xf0\xe1\x90\xd8\x3a\xc2\xf8\xe4\xb2\x41\x71\xc4\x37\x6d\x24\xdc\x97\x32\x41\x4e\x16\x22\x9d\x24\x1e\xa8\x5c\xec\xab\xdb\x44\xc3\xbe\x84\x8a\x02\x6f\xe5\xfb\xf2\xcc\x10\x97\x33\x79\x00\x7e\x7a\xa9\x8c\xdf\x5c\xdf\x93\x3b\x48\x3d\xbc\x2c\x9d\xb9\x3a\x30\x0b\x3c\x64\x63\x87\x6b\x90\x81\xa6\xff\x9b\x57\x2b\x33\x4e\x97\x06\xae\xd9\x0b\x31\x64\xef\xb3\x7a\xd9\x86\x63\x80\x6c\xe6\x9e\x55\xfa\x50\xa0\x16\x94\x70\x32\x14\xc8\xfe\x66\x25\x7f\xfc\x79\xcf\x6f\xc0\x60\x7b\x94\x12\xa4\x2d\x8c\x98\xcf\x85\x54\x7b\x8c\xec\x81\x26\x0d\x37\x4c\x2a\x2e\x47\x35\x45\x6d\xeb\xce\x75\xda\xa0\x8e\x31\x1a\x43\x9e\x7a\xb2\x3f\x3d\xa8\xa3\xa7\xcd\xe4\xbd\x31\x1a\xc7\xf5\x88\x0b\x8b\x32\xcc\x85\xda\x72\x93\xb6\x8f\xe9\x4d\xc5\x3a\x71\xa5\x1c\xd4\xd2\xa2\xcc\x5e\x8a\xc4\xc5\x3e\x68\x2f\xe6\x46\x9f\x6e\x51\x5e\xe3\x9a\x8d\x84\xc1\x76\x76\xe5\xc9\xc1\xca\x2e\xc2\x26\x5c\x46\x25\xe7\x3c\xa2\x2d\x59\x80\xd5\x1e\x83\x30\x86\x3d\xcb\x37\x1d\x26\x75\xeb\xd8\xe5\xb2\xa3\x10\x8b\xbf\xbc\x7b\x98\x52\xeb\x72\x11\x7d\x31\x0b\xd9\xbc\x47\x2b\x00\x03\xcf\xa4\x75\xe2\x0b\xfa\x5d\x66\x87\xb0\x32\x48\x2c\xfd\x33\x3f\x7d\x52\x55\x41\x22\x6e\x89\x83\x63\x47\xb3\x51\x4d\xd8\x02\x49\x18\xc8\xfc\x7a\xc1\x08\xe5\x4a\xf3\xf1\xe4\x96\x5f\xed\x97\x9f\x93\x27\xb3\x0a\x7b\x0e\x20\xe7\x65\x72\xb9\x21\x0a\xcd\xd6\x27\x26\xa7\x7d\x67\x27\xee\xd3\xc6\x93\x51\x83\x0c\x6d\xe0\xad\x4f\xc9\x4c\xe5\x61\xc4\xec\x26\xe2\x5e\xf6\xa3\xab\xd2\x0b\x84\x0a\x66\x4e\xc2\x0c\x49\xd7\x46\xf8\x9c\xbc\x54\xe0\x18\x40\x4b\x69\x54\xdb\x79\x72\x98\x8f\x84\xe8\x68\xf8\x87\x51\x23\x94\x89\x14\x78\xba\x26\xe4\xf5\xd7\xc3\x01\x0a\x9e\x87\x46\x1d\xd2\x15\xdb\xd3\xcd\xba\x89\x98\x4d\x3c\x4e\x18\x91\xfb\xa9\x42\x5f\xc5\x75\xd1\x8b\x8a\xda\x7c\x21\xfc\xeb\x33\xba\x74\xb9\xeb\x23\xd3\x17\x2d\x35\x53\x84\x4e\x2c\xd4\xa8\x20\x96\xd2\x55\xe8\xff\x84\x46\xfe\xa5\xac\x1a\x15\x25\x31\x60\xf0\xce\x17\xf9\x85\xdd\xca\x01\x69\xd1\xad\xae\xcc\x6f\x42\xcb\xfa\x38\xcf\x02\x37\xde\xec\x19\x47\xe5\x7e\x82\xf9\xf1\x34\x6b\xff\xc9\x24\xc3\x79\xa8\x9a\x2f\x84\xff\x98\xae\x0b\x19\x94\x02\xcf\x17\x04\xe8\x1e\xe3\xb1\xa7\x92\x9f\x77\xa3\xf3\x14\xae\x5e\xaa\xe9\xa7\x7b\x36\xaa\x82\xc1\x5a\xaa\xd1\xf8\xfb\xfa\x2b\xd5\x3c\x18\x98\x3e\x82\xc5\xae\xbc\x8b\x0f\xd7\x64\x76\xcb\x47\xe1\x0b\x02\xee\x9c\x03\x72\x5b\x63\x13\x78\x15\xfb\x26\x60\x07\x9b\x06\x71\xf6\x79\xe0\x7d\xf5\x05\x35\x69\xc5\xe5\x32\x10\xc6\xf7\xb7\x28\x80\x09\x1a\x00\x8d\x2a\xfb\xe3\x0e\x05\x70\xe4\x14\x03\x98\x6e\x46\x3f\xbd\x47\x33\x88\xfd\xb0\x88\x3a\xc6\xda\xfd\xc3\xd3\x23\xa6\x1a\x66\x26\xbf\xf5\xb9\xf6\xf5\xc2\xad\xa8\x0b\x9b\xc2\x4f\xda\xf8\x7e\xab\x9e\x46\x90\x69\xe1\x18\xa1\x3b\x7a\xfe\x48\x25\x1c\x7b\xd8\xf5\xa8\x4a\x6f\xd6\x30\x15\xb8\x5c\xa6\xcc\xb7\xb1\x27\xf2\xc3\x04\x81\x78\xf1\xa8\x83\x7d\xc2\x0d\xdb\x96\x16\xd3\x41\xb5\x13\x98\x3c\x25\x14\x43\x8b\xc3\x27\xde\xea\x2b\xaa\x22\xd8\x95\xbc\xca\xcb\xcb\x25\x42\x91\xa0\xe9\xe5\xdb\xbf\xef\x2a\x35\x52\xde\x71\x87\x8e\x15\x2c\x84\x33\x3b\x86\xa8\x7d\x8e\x18\xab\xf5\x64\xcb\x8f\xea\x30\x4c\x49\x4b\x12\x23\xc4\x1f\x2f\x56\xde\x18\xdb\x0e\x58\x94\x30\x7e\x73\x42\x1e\x11\x62\x37\x02\xa7\xdb\x22\x2e\x55\x96\x1d\x4f\x69\x34\x0e\xe4\xba\xc8\x55\x31\xe5\x3d\x46\xfe\x2c\xaf\x9b\xee\xc4\xae\x04\xc2\x8c\xac\xa5\x5f\x8d\x2a\x15\x12\x64\xf1\xeb\xf6\xc8\x1a\xcd\x95\x8c\x11\x47\xa0\xb4\x1e\xde\x3e\x48\x9d\x2e\x08\x4a\xe8\x8b\xca\x52\xc6\x6e\xaa\xcd\xb3\xd9\xd3\x1a\xdd\xd6\x42\xdc\x3d\x37\xcc\x8f\x4f\x37\xe5\xaa\xc3\xbb\x2d\x44\x4a\xb3\x67\x86\x69\xc4\x24\x86\x7c\xca\x08\xe5\xa3\xc5\x6f\x6f\x16\xea\x6f\xad\x33\xf2\x90\xc7\xa3\x7f\xbc\x5b\x31\xed\x2e\xdb\x94\x72\x1c\xc3\x77\xec\xfe\xca\xb4\x14\x14\x86\xd6\x1e\x1d\x90\x7a\x1d\xa2\x1f\x5b\xd7\x5f\xdf\x08\xb1\x78\xc1\xfb\x5e\x87\xea\xe5\x60\x76\x63\x47\x0c\x6b\xb2\x6f\x1d\x56\xfc\x6e\x51\x35\xb1\x6c\x78\xff\x0e\x59\x33\x96\x38\x8f\x23\x57\x3a\xae\x53\x9d\x99\x4d\x84\x99\x4d\xa1\x27\xf3\x4b\x65\x82\xe9\xf9\xbc\xd6\xdd\x53\x1c\x10\xdf\x5e\x5c\x11\x60\xfc\xb9\x27\xc5\xbf\x15\xc1\xe6\x3c\x3a\x33\x2f\x3d\x29\x45\x30\x1c\xdd\x1f\xb1\x27\xf3\x83\xf9\xe9\x13\xe3\x80\x28\x8a\xf2\xec\xc3\xef\x29\x45\x72\xd1\x46\x8e\x58\x12\x3f\xd2\x67\x34\x7f\x5b\x90\x4d\x9d\x5e\x24\x3d\xbf\xbd\x46\x1e\xe0\xeb\x62\x15\x8c\xec\x7f\xb7\x68\xbc\xdc\xd9\xb3\x67\xf2\xec\x3c\xfe\x0e\x4e\x20\x5c\x42\xbb\x91\x53\x24\xc2\xfd\x11\xc0\xd2\x5b\xd3\x11\x87\x96\xf9\x49\xc9\x6d\xd1\x08\x21\x76\x74\x8c\x3a\x19\x6a\x96\x05\xce\xfc\xe9\xbd\xf4\x03\x9c\xd5\xd6\x16\x8f\x2c\x86\xf7\xd7\xd6\xf7\xb4\x84\x1a\x62\x9f\x65\x6c\x3d\x22\xe4\x65\x10\x71\xb9\x5e\x0c\x2f\x28\x27\x3d\xa5\x29\x80\xd3\x12\x66\x2e\xf1\x25\x4f\xe1\xab\x45\xd9\x44\x54\x21\x2f\x7b\x16\xb2\xa2\xdf\x9d\x76\x87\x12\x15\x90\x1f\xd5\x30\x30\x74\x5d\x77\x88\x3f\xbc\x9b\x99\x43\x03\x31\x90\xf8\xe3\x21\x2d\x67\xd5\x6c\x18\xc8\x24\xe0\xf5\x6b\xb4\x39\xb2\x13\x98\xd6\x64\x56\x84\x13\x72\x65\x3f\x29\xf1\xd5\x40\x0e\xb1\x15\xa1\x8b\xcc\x92\x4d\x23\xe3\xcc\xdf\x04\xec\xea\x31\x86\xf2\x09\x6a\xde\xb7\x9a\x88\x38\x99\x7f\x7d\x57\x97\x0b\xa0\xc0\x21\xe7\xfd\xf5\x4d\x97\x8b\x72\x8a\x13\xe5\x6f\x39\xc9\x1b\x13\x58\x2e\xc0\x51\xbe\x4f\x26\x16\x1b\xb9\xd5\x78\x0b\x67\x64\xcf\xa5\x41\x22\x45\x1b\x99\x55\xcf\xa7\x2e\xee\x45\xe6\xf9\xba\x3e\x2a\x77\xc4\xe6\x69\xc6\x30\x4e\x27\x56\xbf\xac\x18\x0f\xd3\x16\x6e\xd2\xbc\x9f\xa8\x66\xb3\xbc\x77\x81\x18\x30\x97\xcb\x5c\xc6\x2e\xfa\xc7\xd1\x33\x79\xb1\x68\x13\x8f\x8f\x1b\xbe\xf1\x8a\x8a\x94\x73\x1c\x24\xa8\x27\x61\xe3\x11\xfe\x93\xab\xe2\xb2\x32\xb7\x4c\x31\xe7\x89\x5d\x60\x41\x34\xe7\xb7\x13\x35\x67\x4c\x6a\xc7\x30\xab\xdc\xe5\x2f\x8a\x6f\x51\x8b\x2a\x1d\x4c\xa0\x48\x1e\xbf\x50\x59\x24\x59\xd8\x21\x26\xb2\x39\xbb\x66\xe7\x28\xbd\xd6\xc5\x81\x93\x1c\xbe\xab\x2e\xe8\xe4\xf0\x3a\x4e\x9c\xfe\xac\xfd\x8a\x59\x66\x22\x9b\x04\x98\xb3\xb5\x1d\x0a\x4a\xa4\x8b\x96\x60\x54\x9b\xb9\xe1\xf9\x2b\x44\xc9\xc7\x4c\xb8\x17\x8b\x17\x29\x50\x32\x2b\x60\xa6\x55\xa1\xc2\x31\x63\xcc\xd9\x01\xa2\xd2\xf7\x11\x1f\x75\x84\xd7\xbe\xd3\x22\x25\x22\x98\x92\x8a\x5a\x9e\xd5\xe8\x69\x38\x5e\x0e\xf5\x34\xa3\x06\x29\xf3\xf9\x4b\x19\x3e\xfb\x8a\x8c\x68\x6e\x77\xb3\x0a\xf1\x24\x0d\x33\x2f\x44\x57\x32\x7d\x34\x4b\xef\xd8\x3b\x3c\x61\x38\xde\x73\x5e\x71\x87\x60\x8c\xf8\xbc\x73\x0d\x9d\xc3\xfc\x9a\x4a\xc4\x13\xc8\x99\xf0\xc1\xb7\xd2\x08\x79\x07\x97\x08\xca\x3b\xd4\xf3\x05\xf4\x29\x35\x81\x25\x8a\xc0\x7f\xf4\x78\x89\x27\xc0\x55\x9b\x7c\x4d\xd7\x80\x7a\x3e\xb1\x63\x8b\xf1\x47\xf7\x69\xd9\xbc\x9b\x74\x6b\xac\x94\x89\xeb\xb5\x7e\x14\xd5\xb0\x2d\x50\x78\xab\xdf\xd4\xb6\x94\x62\xf4\x26\x0a\xec\x6d\xd3\xfb\x2b\x1d\x09\x34\x29\x27\xdf\x97\x83\xae\x69\x53\x66\xcd\x9e\x99\x2f\x84\xf5\x50\x83\xe8\x33\xe4\x96\xca\x28\x31\xb1\x2e\x75\x0d\x56\xe8\x6d\xb4\xc1\x99\xd8\x99\xdf\x8a\xed\x53\x99\x03\xbd\xbf\x34\x51\x56\xf3\x35\x4c\x6b\xd0\xcc\x48\xb8\xe5\x48\xed\x3e\xc0\xfa\x3e\xc6\x50\x19\x4f\xce\xd7\x11\xd1\x3e\x66\x35\x86\xfd\x84\xb1\x90\xfd\xfb\x3b\x83\x45\x55\x64\x07\x60\xc7\xcd\xb7\x2c\x77\x2a\xe3\xe8\x0e\x9a\xef\x00\x38\xe1\x89\xc3\x52\x9c\x0b\x42\xa2\x1c\x6d\x7c\xe4\x55\x99\xcc\xeb\xd8\xc5\xdd\x01\xb6\xb9\x1d\xdc\xe9\x5c\xfa\x66\x22\xee\xb7\xcd\xd5\x20\x0a\x3d\x99\xd7\x85\x88\xf2\x02\x54\x27\x8a\xde\xd8\xc1\xad\xc9\xd9\xb7\x88\xad\x84\xdf\x61\xef\x2b\x34\x36\xe2\x96\x68\x27\x3c\xb3\x03\xa7\x65\xa2\x07\x82\x6d\x21\xfc\x3f\x9b\xa4\x88\x09\x8c\x1e\xfb\x4d\x51\x7c\x9a\xb9\x10\x06\xe8\xae\x28\x26\x3b\xa6\x05\x48\xef\xe8\x2f\xb6\x6d\xd0\xe9\x51\x81\x6b\x5a\xc2\x88\xbd\x27\x3b\x7d\xbc\x86\x59\x0c\x98\x00\x26\x4f\x8d\x3d\xf1\xa8\x19\x70\x5b\xe0\xcc\xf3\xfb\x95\x75\x21\x37\x32\x87\xdb\x3c\xbb\x3f\xbf\xfb\x77\xd0\xa2\x42\xb5\xc9\xde\xcf\xc9\xa9\xa0\x12\x39\xa3\x99\x5c\x7d\x44\x1b\x0d\x53\xcf\xc3\xd1\xff\x89\x11\xf6\xf0\xf7\x35\xb8\x91\xd8\x4b\x0b\x80\xcb\xea\x1d\xa2\xa5\xe0\xed\x37\xf4\x26\xdf\x6a\xd1\x9d\x87\xcd\xe8\x7f\x46\xe5\x3c\xda\xa3\xac\xfd\x6c\xfe\xfa\x65\x96\x89\x61\x9a\xe8\xe0\x84\xa5\x5c\xe6\xbb\x97\xf2\xd4\xb8\x9c\x36\x9a\xc7\xca\xb9\x4b\x37\x2a\xd6\x7e\x4e\x50\xa9\xc0\x1a\x3f\x5c\xa6\x79\xfa\x76\x62\x3b\xa6\xe6\x65\xfb\x6b\x46\x29\x9d\xa8\xe1\xc5\x80\x88\xbf\x2d\x1f\xac\x0e\x81\xea\x5c\x54\x23\x7b\xfc\x45\x0d\xf8\x9d\x20\x7d\xe3\x3f\xfa\xca\x52\xc1\x20\x8f\x4d\xf2\x34\x70\xfd\x84\xc3\xf2\x2c\xc7\xce\x4a\x00\x36\xfa\xfd\x33\xe9\x97\x8d\x54\x5c\x9a\xa0\x24\x8d\x82\x9b\x76\x9e\x92\x8e\x92\xbd\x2d\x67\xbf\x5e\x92\x41\xc4\x47\xd0\x67\x7d\x66\xde\x07\xf9\x1a\xaa\x10\x1a\xdb\x5a\x94\xd6\xc0\xc3\x25\x52\xe7\xc3\x9f\x71\x07\x06\xc4\x29\x97\xb8\x62\x89\xbd\xf8\x0e\xd1\xb3\xf9\x18\x95\x08\x1f\xe9\x5c\xd8\xa2\x04\x17\x1b\x3b\xc4\x83\x3d\xd0\xbf\xb7\x8f\x52\xcb\x61\xdb\x76\x90\x2a\xd6\xf1\xe3\xfd\x8a\xf7\x36\xe9\xc6\x02\x70\x9b\xeb\xfb\x92\xfc\x6b\x9e\x1f\xb8\x82\xc7\xfd\xa2\xaf\xe0\x6d\x2c\xda\x09\x8f\x73\xf2\x58\xdd\x14\xba\x88\x12\x69\xb1\xcc\x67\x9e\x4c\x79\xf5\xc1\x73\x81\xed\xd5\xb7\xcf\x68\xf0\x53\xc2\x62\xe0\xda\xfa\xa7\x93\x3e\xbd\x48\x61\xab\x34\x52\x18\x65\xdc\xbc\xa4\x59\x96\xf6\x88\x82\x4e\x66\x18\x79\xd4\x8d\x2d\xe2\x7e\xcc\x34\xd4\x17\xb5\xe3\x77\x26\x77\xed\x21\xdd\x54\xc8\xc5\x79\x51\x9a\x65\x16\xf4\x51\xea\x4e\x3b\x10\x70\xe7\xf0\xc7\x13\xb5\x08\x10\x1d\x5c\xde\x84\xfe\xe2\xd2\xf4\x9f\xb3\x31\xaa\x25\x91\xe3\xf8\x56\x8d\x36\x89\xa9\x8b\x58\x49\xc3\xff\xf7\xab\x2b\xca\x5d\x84\x05\x76\xbe\x6a\x21\x9f\x80\xa2\xa9\xf7\xa6\xd2\x20\xa9\x42\x0e\x4a\x83\x54\xc5\x9c\x76\xfb\x82\x21\xc7\x52\x5e\x0d\x03\x18\xc7\xa7\xf9\x22\x77\x11\x7a\x55\x59\xd0\x88\x71\x73\xee\x6a\xad\xc9\xf6\x7c\xc4\x18\xdf\x68\xc4\x5f\xee\x83\x4f\xab\x00\xc0\x32\x76\x39\xd7\x3f\xf3\xbf\xe7\xa6\x38\x42\x49\x34\x1f\xb2\x41\xba\x9b\x59\x34\x1e\x10\x7d\x66\xa3\x3c\xe5\x33\xa6\xce\x4c\x70\x7e\xc6\x9c\x93\xf2\xd5\xb6\x31\x12\xcb\xc4\xcc\x58\x5f\x4b\x25\x45\x1a\xf8\xd2\xaf\x37\xf3\xbb\x37\xd5\x4a\x93\xd1\xc4\xd3\xea\xc3\x27\xd4\x08\x4f\xab\x02\xdb\x33\xb7\x38\x48\x34\x82\x3e\xad\x80\x16\x3a\x90\x0a\x14\x7f\x6e\x9f\xda\x30\x3d\xcd\xbe\xcb\x78\x91\x79\xb3\xed\xa3\x55\xc4\xf3\x81\xb4\xf6\x56\x87\xd8\xa4\xf0\xc2\x58\x48\xc5\x3d\x17\x2b\x9a\x7a\x9e\x8d\xd5\xaa\xed\x8f\xeb\xf8\xc7\x2d\x2e\x2c\x5d\x00\x8c\x48\x6e\x6a\xfc\x8a\x4e\x3b\x73\x2b\xc9\x30\xe7\xec\x89\xe4\xbe\x95\x59\x02\xbb\xbb\xe2\x35\x6d\x8b\x4e\x99\xcf\x9d\x48\x44\x49\xfc\x91\x61\x52\x3f\x52\x79\x6e\xe1\x6b\x3e\xaf\x47\x97\x20\xca\x0b\xeb\x6c\xbb\x36\x7a\x47\xa6\x45\x70\x5d\x22\xc0\xbe\xaa\xdc\x39\xa8\xbf\xc0\x88\xe3\x7b\xe3\x34\x1a\x07\x2e\x21\xa1\xc9\x90\xfb\x84\x94\x0e\xcb\xd3\x72\xbe\x10\xde\xd2\xae\x09\xb2\xb1\xa0\x58\x94\x63\xf5\xa1\x13\x54\xe3\x1a\x44\xec\x7c\x21\xfc\x44\x29\x3d\xca\xa8\xa1\x2a\xe8\x3d\x12\x05\x59\x9e\xdd\xb2\x76\xb0\xde\x57\xe4\x0b\x61\x70\x4a\xa9\x51\x6c\xa5\x46\x09\x8b\x29\xd6\x7c\x05\xe0\x8f\x3d\x99\xcf\x6f\x16\x1e\x9a\xed\xe0\xd3\x70\x73\x5d\x89\x9b\x4c\xa8\x92\xf6\xe4\xee\x9a\xa0\x08\x26\x5d\x87\x41\x77\xdb\x98\x36\x78\x80\x8a\x36\x89\x32\xc4\xab\x75\x75\x54\x08\xb9\x9e\xab\xa4\x67\xf7\xe8\x74\x5d\xe4\xe3\x72\x90\x18\x34\xee\xdd\x35\x54\x99\x59\xfb\x7e\x32\x7c\xcd\x2c\xd2\xcc\x17\x04\x2d\x91\x93\x78\x7e\x77\x8d\x12\x98\x4d\x86\x91\x13\x3d\x9e\xd7\x9f\x95\xa1\xc3\xa4\x09\xb9\x3c\x4a\x2c\xbf\x3a\xd7\xbb\xfc\xb0\x9f\xe8\xcd\xfd\xd7\x42\x69\x1d\xd3\x49\xc1\x0a\x4c\x0f\xb1\x07\xcb\xe9\xc7\x4f\x9c\xd8\xc2\xa8\x27\x33\xe7\xa0\x86\x5c\x43\x6e\x55\xd0\xde\x8d\x4e\xe5\x7d\x37\xa9\xeb\x0b\xb0\x50\x4f\xa6\x6d\xae\x7c\x68\xf0\x80\x13\x30\xa1\x31\x99\x0f\x51\xa2\x3f\x35\x47\x29\xdf\xfb\x9c\x93\x51\xad\x9b\xd4\xaa\x6a\x74\xca\x7c\x65\x37\x7f\x05\x57\x58\xa8\x46\x18\x55\x0a\xab\xc2\x14\x9e\x38\x3e\x8e\x2d\xec\x55\x89\xe2\x1a\x11\x3e\xbf\x35\x69\x8e\x30\xf4\xc0\x9a\x10\x8a\x22\xbd\x5e\x75\x49\x19\x72\xdd\x73\xf3\xd2\x17\x3b\x6d\x4a\xfb\x8c\x36\x11\xe5\x37\x8d\xd1\x9c\xd4\x91\x67\x81\x41\x3d\x4f\x38\xd5\xfb\x12\xe3\xbc\x19\xf1\x8c\xe7\xd4\xdb\x32\x7c\x77\x8a\x98\x77\x7e\xaf\x1c\xe7\x82\x43\x4a\x14\x8d\xa3\x7a\x16\xda\xa0\x55\x47\x7a\x41\x01\xe0\x92\x68\xdc\x8c\xb3\x7d\x87\x2b\x83\x34\x69\xb5\x16\x7d\xbf\x55\x47\xae\xd1\x9a\x3a\x86\x4d\x3f\x4a\x0d\x26\x75\xbd\xc0\xc1\x4c\x5c\xc8\xe4\xe9\xe9\x97\xb1\x6a\x63\xaf\x4a\x35\x1d\xb2\x9f\x4e\x91\xe3\xc0\x32\x8d\x1a\x3d\x63\x96\xb6\x88\x34\x7d\x52\x27\x9e\x2f\x10\xab\xb9\x47\x5a\xc4\x2b\x4f\x83\xa8\x40\x89\xf2\x12\x94\xc4\x13\x5f\x4d\x7f\x2f\xc4\x5c\x6a\x97\x26\x37\x9b\x33\x5c\xff\x96\x26\x16\x1f\xb5\xea\xd1\x41\x0b\x47\xfa\x9a\x88\x70\x12\x03\xf6\x9c\xd0\x1c\x05\xa3\xd7\x65\xdc\x81\x51\x7a\xb2\x2e\x49\x1a\xd4\x7f\x3d\xc8\xab\x2b\x60\x4a\xe7\xa7\xce\x02\x2d\x75\x0d\xee\xcf\xa5\x61\x63\xd6\xa8\x27\x5d\x57\x8a\x24\x9f\x2f\x84\x56\x4d\x9e\x7b\xda\xe9\xc6\x32\xed\x61\xc7\x03\xe9\x2b\xa0\x01\x8b\x4b\x8e\x37\xd6\xc9\xb8\x5b\x27\x1e\xe1\xfd\xf4\xaa\x71\x83\xd2\x86\x20\x5c\xda\x7b\xa1\x1c\x2a\x60\xde\xe1\x11\xc8\xc7\xe1\x8b\x52\xe1\x33\x70\xd5\xfd\x7d\xf8\x9e\xb0\xe5\x47\x55\x0c\x3a\xa2\x00\xa4\xb9\x29\x49\xde\x75\xa2\x2a\xb4\x0e\x19\xa5\xd9\x12\x98\xc8\xae\x25\x3b\xd5\x9e\xec\x23\xef\x08\xc5\x2d\xd0\xa0\x87\x72\xee\x0b\xed\x43\xe2\xbf\xc5\x54\x3d\xe0\x81\x07\x95\xa0\xcd\x1a\x9e\xcf\x89\xde\x2f\xd7\x86\x83\x86\x40\xde\x0d\xc0\x74\x44\x09\xdb\x7b\x34\x1e\x90\x0b\xe7\x9b\x57\x93\x3f\x5b\xac\xf7\x60\xa6\xc5\xa5\xbf\xff\x78\xa9\xf2\xa0\x25\xa1\x71\x98\x2c\x58\x19\x29\x16\xf9\x9b\x50\xd7\x14\x43\x69\x19\x0a\x1a\x21\x09\x98\x5b\xb3\x4d\x01\xb5\xfa\x98\xb9\xbc\x31\x7f\x67\xad\xa6\x4d\x64\x21\xdb\xc6\x90\xbb\x01\x2e\xf9\xd5\x51\xe9\xd7\xc6\x0a\x3c\x0f\x13\x21\x59\x1a\xdf\x8e\xfb\x2f\xa6\x4b\xad\xd8\xd8\x3c\x7a\x4f\x04\xbc\xe9\x2b\x1a\x58\x69\xea\x4c\x98\xc0\x42\x9e\xbf\xae\x4d\x2d\xdf\xba\x39\x68\xf2\x83\x13\xa5\x26\x18\x2c\x3f\x3e\x30\x6f\xa4\x3a\x44\x01\x19\x5a\xf9\x44\xb6\xbd\xa7\x08\x40\xa3\x22\x07\xfb\x0c\x3b\xa3\x6d\xe4\x19\xba\x57\x35\x45\x7a\xfc\x51\x6d\xd7\xc0\xbc\xc0\x46\x69\x1e\x50\xee\xfa\xb9\x8a\x7b\x13\xa7\x7e\x15\xc2\xe0\x2d\xc5\x19\x88\x05\x2e\xc9\x17\x42\xdb\x6a\xf2\xa6\xac\x93\x12\xd7\x80\x0c\xd1\x89\xcb\x45\xfc\x62\x00\xa4\xfa\xc4\x73\x9a\xb7\x80\x8d\x3b\x85\x47\xc4\x07\xfb\x6b\xaf\x25\x9c\xc7\x44\x24\xf9\x58\xba\x6a\xc2\x5d\x26\xae\x49\xcb\xff\x9e\xcc\x97\xa7\xf3\x89\x6b\x99\x57\x39\x3d\xc6\xbf\x95\x14\x81\xac\x52\xbd\x37\xeb\xae\xcc\x8f\xe7\xf1\x38\xb6\xc4\xbc\x05\xa9\x9b\xdb\xcc\xb2\xb2\x32\xa7\x40\x8c\xc1\x78\x27\x5c\xf3\xca\xa8\xa6\xda\x3a\x99\xc6\x84\xaf\x5c\x1c\xa1\xdf\x88\x5a\x0c\x8d\xcc\xdc\xb7\x4c\xb7\x4c\x01\xf1\x7f\xd1\x59\x19\xd7\xbb\xbc\x25\x5f\x40\x4b\x6a\x60\x7e\x8e\x43\x1a\xf2\x0b\x03\xd6\xe4\x46\x9b\x33\x9f\x94\x65\x7c\xfb\xd4\xbc\xc7\xdd\xe3\x7a\xb2\xcb\x35\xd7\x22\xd3\x8e\x7a\x50\x31\x07\x0d\xc9\x26\xd5\x42\x3d\x2a\x3a\xf8\x4b\x9f\xdb\x30\x30\x41\x19\x2e\x2b\xe8\x28\xc3\x70\xda\x3c\x9d\x8c\x5a\x0e\x5c\x31\x8d\xcf\x98\x0a\x33\xc5\xb3\x71\x27\xe8\x9f\x1c\xe5\x61\x05\x23\xe6\x8a\x8a\xfd\xfc\x4e\x5e\xad\x2d\xb4\x61\x9b\x75\xd2\x95\xba\xd7\x30\x52\x7e\x63\x14\x2f\x70\x4d\xc4\xbc\xd6\x9b\x81\x7b\xf5\xe6\x50\x75\xf2\x82\x4a\x9e\x00\x57\x66\xd7\x3c\xa8\x47\xb5\xe8\x38\x98\xc8\x8e\xe5\x57\x5e\x1d\xa5\x15\x5e\x70\x7f\xe2\x04\x5e\x59\x9f\xfe\xf5\x32\xed\x52\x44\x9a\xc2\x89\x83\xb5\xf4\xe7\xd5\xb0\xe9\x27\xa0\xc5\xb5\x73\xb4\x06\x11\x05\x52\xb4\x75\xd7\x46\x45\xd4\x93\x51\x0a\xd0\xf2\xec\x33\xf3\x75\x98\x6e\x9d\x1b\x5d\x8a\xb4\x33\xa1\xae\xb8\xb4\x79\x55\x0c\xf9\x2a\x59\x46\x2d\xdc\x93\xdc\x2a\x93\x7b\x7e\x2e\xb1\xe5\xa6\xb1\xcc\x08\x76\x4b\xa9\xca\x2b\xf7\xd9\x0d\xa9\x6a\xcd\xa3\xcc\x27\xd0\xf6\xfc\x21\x97\xee\x5f\x09\x20\x4d\x28\x53\x91\x0b\xe1\x2f\x5e\xd6\x18\xf4\xdc\xaa\xa2\x94\x94\xae\x83\x56\xe9\xcc\x74\xc6\x0f\x43\xf8\xfd\x31\x92\xa0\xd0\x0e\xd9\x64\xc4\x24\x4d\x14\x10\x57\x88\x67\x23\x50\xbc\x00\x76\xd9\xe3\x67\x87\xa6\x3b\xf4\x64\x67\xf8\xd0\x1d\xba\x50\x86\x4b\x12\xb6\x56\xe6\x8f\x6d\x49\x42\xc5\x9d\xc9\x42\xe5\x03\x32\x6d\xba\xae\x2a\x6c\xf9\xc6\x3b\x3a\x45\xdd\x89\x6d\x76\xb2\x6f\x6f\xbb\x3c\xfe\xa5\x7f\xca\x17\xc2\x37\xb7\xb6\x28\xaa\x35\x20\x44\x01\x33\xa4\xd2\xc1\xd8\x32\x81\x60\x11\x66\x5e\xbf\x74\x70\xdc\xc4\x00\x84\x9e\x13\x75\x73\xb3\x96\x0e\x4e\xf1\x38\xb9\xec\x7c\x66\x8d\xc6\x40\x2b\x13\x97\x78\x56\xf2\x76\xf6\x64\x2e\xd1\x1c\x53\x3c\xee\x01\x23\xbe\xe6\xb3\x3b\x9b\xa2\x88\x4d\xe3\xa3\x17\x0e\xad\x0f\x6d\xae\x54\xa0\x01\xbe\x6e\xfa\x50\x55\x85\x87\x38\x31\x7a\x28\xfb\xc2\x59\xd9\x1b\x75\x04\x0c\x98\xac\xab\xef\xd0\x1b\x38\x1b\x4c\xa6\x09\x92\xb4\x35\xe3\xc1\x65\xd7\x69\xad\x82\x1d\xbd\x7f\xbd\x98\xee\x84\x5f\x5f\xa0\xcc\xad\xb0\x5d\x06\x77\x49\x9a\xd8\xdd\x54\x56\x36\xdb\x80\xd0\x24\x34\xe6\x36\xbf\x2d\xdf\x8c\x22\x71\x1b\xc8\x51\x23\xb5\xf1\x99\xd5\x92\x05\x50\xc6\xcd\xc8\xcd\xcc\xab\x2b\x79\x0c\x5d\x89\x89\x8f\xed\x22\x0a\x1c\x25\xc0\x0e\x5f\x2b\xd1\x46\x3e\xee\x42\x26\x6d\xea\x1d\x9e\xa9\xa5\x8f\xfa\xb4\xd6\x59\x71\x7f\x3d\x71\xae\x98\xe7\xb9\x0d\x87\x32\x6e\x2c\x30\x6e\xb7\x30\xc9\xb5\x6d\x5c\xe1\x82\x2f\xe1\xb5\xa7\x75\xdc\xb4\x89\x49\x1d\x97\x62\xdd\xe2\x7b\x34\x8a\xa9\xd5\xa8\x51\x93\x11\x0f\xdc\x7b\xc2\xca\xfb\x7a\xac\x62\x26\x74\x9f\x82\xdf\xb7\xb7\xaf\x88\xb4\x36\xf2\x78\xa9\x94\xf9\xec\x11\x0d\xd8\x90\xd0\x9b\x84\x7f\xca\xf9\xb1\x0a\x04\xd4\x12\xef\x5b\x38\xf2\xa1\x2b\x15\xe8\x70\x31\xaa\xe5\x8a\x88\x51\x37\x86\xee\xf5\xe4\x0c\x37\x1d\x3d\x18\x2d\x62\xe6\x7b\x34\x25\xaf\x91\xd9\x78\x34\xfd\x8d\x8b\x36\x35\x85\x18\x66\xf4\x31\x85\x53\x49\x88\x98\x3d\xfd\xc6\xe8\xcf\x7e\x58\x93\x21\x0f\x2a\x42\xbb\xa7\x27\xfb\xff\x76\xf0\xf7\xcb\x26\x35\xec\x7b\xd5\x98\x8a\xf6\x5c\x32\x5a\x29\xe1\x58\x36\x69\xad\xe6\x9b\x87\xb8\xab\x9d\x88\xcb\x1f\xda\x25\xfc\x79\x91\x6d\xa3\x8a\xa5\x3a\x84\x1f\x3f\xa1\x5b\xc3\x52\x3f\xf1\xf6\xaf\x8f\x19\x15\x7f\x14\xad\x34\x1f\x8f\x1f\x1c\x17\x7e\x00\xd0\xf7\xc3\xe3\x5c\xdc\x9a\x96\xfe\xad\x05\x9e\x55\x25\x31\x40\x4d\x7a\xa2\x3c\x95\x94\x7a\xa5\xa8\xf8\x0b\xbf\xa0\xb9\x59\x13\xc2\x97\x2c\xa7\xc6\xc8\xf4\x2a\x4c\x1d\x07\x6a\x42\x7f\x9d\x18\xd9\x7e\xec\x4a\x19\xde\xaf\x79\x30\xb8\xd4\x4d\x74\x2d\x2a\xcb\xb5\xf9\x20\xa8\xe9\xc4\x3a\x3b\x10\xd2\x36\xbd\x27\x63\x42\x59\x18\x18\xe4\x3e\x57\xd7\x2a\x37\x1c\xc3\xfe\x33\x3b\x5d\x7e\x67\x3b\x31\x54\xd8\xea\x35\x7e\xba\xaf\x06\xa0\x21\x75\xcc\x01\xda\xc6\xdf\x1f\x90\xa3\x0a\x2e\x56\xd4\x34\x66\xef\xbb\x93\xcf\xdc\xa6\xcf\xca\x23\xae\x65\x15\xfd\xe2\x53\x8f\x6b\x20\x9a\xe8\xea\xf8\x37\x41\x0b\xd3\x41\xa9\xcc\x30\xe6\x7e\x20\xcd\x33\xfc\xcb\x37\x6a\x61\x07\x16\x5b\xf5\x98\xcb\xfa\x87\x55\x4a\xd0\xa2\x8d\xa0\x3b\x0a\x4b\xbc\x6a\x03\x3d\xf5\xf7\xf4\xb6\xd3\xf7\x85\xef\x67\xf4\x45\xfa\x9e\xd6\x9c\x74\xa6\xde\x98\x9f\x3a\x75\x2a\x57\x4b\xba\xed\xad\x81\x71\xa5\x75\xcb\x2d\xb1\x93\xc9\x2e\x05\xb6\xef\xa3\x2e\xe8\x00\x0f\x9e\x12\xdb\xf8\xd8\x37\x60\xef\x52\x89\xe5\xe4\xe9\x67\xe4\xc1\x91\x0a\xb0\xbf\x02\xf2\x18\x72\xc1\x38\xaf\x5b\x19\x1f\x23\xf0\x39\x95\x5e\xdc\xe3\x35\x8d\x40\xc4\x50\x51\x84\xef\x38\xb8\x7e\x51\x26\x73\x93\xa2\x7c\x21\xdc\xf1\x5c\x62\xe1\x34\x03\x32\x0b\xd1\xe4\x3c\x8b\x88\x61\x0b\xb9\xaa\xf1\xf2\x89\x9d\x71\x0f\x5e\x26\x31\xf9\x73\xe5\xa3\xca\xd5\x46\xfd\x5a\x74\x2d\x2f\xec\xbe\x8c\x9f\x71\x70\xf5\x7d\x57\xa1\x72\x20\x33\x46\x82\xf7\x64\x9d\x55\x0a\x0e\x95\xfa\xc4\x54\xf0\x91\xc6\xb0\xb7\x95\x21\x32\x66\xd8\xa1\x2e\x57\x0c\xcb\xd4\x77\x48\x10\x19\x4c\xe1\x04\x92\x41\xe6\x82\x2f\xad\x57\x00\xec\xc4\xab\x21\x26\xf6\x6b\xdb\x5e\x52\xc1\xbf\x6e\x1d\x79\xa0\xb9\x15\xf6\xd9\x9a\xe8\x15\x30\x5c\x56\x6f\xbc\x31\x58\x32\x61\xae\xe3\x88\x90\xec\x93\x43\xe2\x3b\x57\x55\x1c\x32\xa7\x9c\xbd\x5c\xb4\x76\xc0\x34\x31\xe6\x3f\xac\x3f\x14\x86\xdc\x8a\x5a\x2a\x66\xfe\xf1\x8a\xec\x08\x5d\x1c\x58\xd4\x56\x44\x47\x72\x73\x16\x28\xd3\x77\x5a\x8a\xc5\x76\x26\xde\x95\x06\x1d\x14\x31\x2e\xf3\x7d\xf9\xb0\xc7\x35\xf2\x8f\xf8\x8d\x75\x7b\xe4\xf8\x69\xea\x2c\xe9\x03\x08\xca\x39\x35\x45\x17\x84\xba\x65\xe2\x99\x09\x14\xf8\xcc\xa3\xe9\xa3\x5f\x27\xa8\x98\xec\xf6\xd7\x97\x9a\x64\xdd\x7d\x97\x98\x55\x8d\xe5\x7a\xe9\x88\xe1\x0a\x8a\x88\xf8\xaa\x55\xcd\x6c\x01\x3c\x29\x23\x53\x3c\xda\x0f\xcf\x19\xa6\x4e\xd9\x18\x76\x70\x02\xbc\x3a\xda\xb4\x0d\xf1\x49\x94\x25\x09\x72\x05\xbb\xfa\x13\xad\xe9\x94\x86\xec\x22\x72\xc5\x7f\x96\x07\xeb\x85\x23\x69\x78\x45\x05\xfb\xbc\x78\xf5\x9e\x56\x60\xa4\x3e\xf0\x85\xc2\x99\x97\xf2\x1a\x00\x3b\x98\xc5\xbe\xc2\xf3\xe6\xf2\x56\x73\x35\x26\x2e\x2a\x2a\x65\x29\xbd\xaf\x25\x6d\xd7\x24\x4e\xc6\x1f\x06\xea\x8a\xd7\x3e\x66\x75\xce\x05\x81\x1c\x3e\xb0\x35\x49\x4c\x2e\x6a\xe2\xf3\x64\xde\x7e\x4d\x23\xbb\xd1\x4e\x37\xef\x60\x0e\x1f\xe0\x4f\xc3\x1a\xa1\x58\xaf\x83\x60\x86\x3a\x6e\xbb\xf3\x92\xe4\x78\x7b\x10\x35\x92\xe3\x9d\xdb\x74\x50\x93\x70\xb1\x30\xae\x79\x16\x46\x25\x3d\xc9\xfd\x7f\x13\x24\xbf\xa0\xc2\x50\x29\xe8\xcd\xbd\x3d\xf7\xe9\x0d\x1a\xb0\xb1\x86\x5d\xe8\x35\x20\x53\x3c\xb0\x59\x8e\x22\x3a\xa8\x87\x6b\x56\xbe\x10\x1a\xab\x93\x37\x2c\x0a\xae\x51\x58\xd5\x4c\x05\x18\x4d\x93\xa7\xc3\x3f\xdd\xa1\x0b\x0b\x3b\x35\x1b\x77\x25\x04\xf6\xec\x67\x97\x0f\x4b\x2d\x25\x02\x97\xdc\x1b\xf0\xc2\xfd\xe9\x09\xfd\xd5\x80\x95\x2f\x84\xff\xe7\x9c\x28\xbb\x88\x6f\x41\x0b\x1d\xfe\x76\x9b\xea\xc6\x25\x80\x08\xff\xa1\x29\x63\xce\xcc\xb7\x73\xb0\x8f\x31\x30\x9d\xc6\xaa\xb8\xe6\x0b\x1e\xe5\x97\xda\x35\x39\x90\xc0\xf3\xa9\xa3\xd0\xe6\x32\x47\x8f\xe4\x75\xbe\x42\xfa\xf9\xeb\x6b\xf1\x11\x63\xd2\x83\x59\x8e\x5f\xea\xc5\x6f\x37\x3c\x94\x0e\x14\x95\xc0\x0e\xf8\x6e\xa8\x10\xa6\xcb\x93\x0f\xc7\xd6\xed\x3c\x1f\xe7\x97\x98\xb7\x04\xb6\x8d\x55\x3e\xcf\x5f\x0f\x37\xab\x32\xe2\xb8\x6c\x38\x2f\xdc\x8a\xb1\x8d\x6b\x16\xe2\x8e\xf2\xb9\xcf\xae\x91\x5c\xa3\x62\x74\x53\x9f\x11\xaf\x7b\x54\x44\xf1\xf2\x6a\xf4\x45\x89\x4c\x77\x82\x7c\x21\x9c\xf5\xea\x08\x65\x37\x54\xa7\x76\x00\x73\x38\xde\x28\xbb\x2f\xc9\xd9\xf6\xb4\x99\x33\xa2\x7f\xfa\x0a\xdf\x69\xe5\xe7\xd3\x6e\xee\x13\x97\xae\xe8\xbe\xfe\xa6\xd6\xaf\x22\xb3\x6a\x07\x51\x69\x23\x4a\x83\x6f\x3c\xaf\xa9\xbd\xa3\x06\x66\xbd\xf2\x0f\x72\xb7\x5f\x54\x14\x31\xdc\x86\x2f\xf4\xd2\x47\x68\x0a\xfb\x7e\xc0\xaa\xb8\x21\xbd\x62\x33\x3f\xcf\xa5\x9f\x82\x89\x5c\x31\x35\x6d\xdd\x34\x22\x2e\x1e\xe6\x34\x31\x9e\x07\x4b\x0d\xcf\x1b\x67\xc0\xd8\x4c\x0a\x65\xcc\x10\x5e\xe6\x73\x94\x81\xa8\x00\xb1\x16\x7a\x8c\x6f\x6b\x92\xa4\x51\x35\xe4\x59\x10\xb9\xa1\xb7\xfc\xf5\x36\x21\xcc\x65\x51\x2a\xa8\xb9\xe1\xf1\x4d\x2a\x1c\xa0\x8e\x59\x8c\x22\x7c\xa5\x2d\x7d\x7e\xb1\xe7\xa3\xa2\xcd\x1b\xdd\xa8\x91\x0d\x7f\xbc\x38\xfd\x69\x16\xf5\xb1\x4d\xe4\x50\x3a\xf3\xe1\xa5\x43\xd4\xf1\x45\x99\x51\xbe\x6b\x7a\xe9\x84\xcc\xef\x0d\x28\x37\x4b\x88\x43\x10\xbe\xbc\x36\xfd\x27\x5d\x5c\x11\x76\xdc\x82\xa1\x35\x69\x9f\x00\x5a\x98\xc8\x75\x05\x81\x73\x34\x57\x63\x88\xba\xec\xc0\xf6\x11\x08\xff\xf3\x01\xf1\xac\xb1\xba\x68\x9b\xeb\x33\x52\x0c\x14\x5d\x95\xe5\x6f\x8c\xd2\x12\x9d\xe9\x13\xc7\x13\x4a\x66\xa3\x9f\x53\x4c\x05\x03\xb8\x7a\x71\x77\x5e\x3e\x3d\x42\x99\xfb\xc2\x92\x52\x71\x68\x79\x74\x88\x2a\xf2\xe2\xe2\x0a\x90\xf9\x72\x43\x1f\xba\x52\xbb\x63\x81\x87\xa3\xd4\x9f\xcc\xf1\x7f\xdd\xa5\x20\x4c\x81\x34\x2a\xc6\x6e\x4f\x8a\xc9\xa8\x2f\xe8\xbe\x99\x2f\x4e\x1c\x20\xea\x75\x54\xe3\xfc\xe3\xf0\xc8\x4d\xba\x7b\x05\x23\x1d\x01\x72\x91\xd0\xa5\xfc\xfb\x21\xf5\x51\x7b\xd8\xf5\xcb\x01\xcc\xab\x5f\xb9\x30\x48\x61\x6d\xfa\x7c\x4c\xdc\xb6\x45\x57\xed\x2e\x53\xe6\x20\xa9\xd4\xf5\x2b\x55\x11\x50\xb6\xad\x77\x0f\x4e\x07\xa9\x4e\x64\xdb\xbd\x51\x4b\x8d\xcd\x37\xa9\xdc\x8d\x32\x4c\xb6\xb2\xa7\xce\x5d\xaf\x87\x77\x87\x00\xc5\xba\x37\xa7\xb1\x2f\x5f\xe0\xc8\xb5\x5b\xa2\x24\x40\x64\xf9\xf2\x8b\x73\xba\x86\x3e\x2a\x16\x85\x54\x4b\xf8\x06\xd3\xd7\xb9\x8e\x87\xed\xb2\x48\x1f\x57\xbd\x9b\x16\xa1\x89\x95\xa2\x9a\x75\xcd\x7e\xb3\x3f\xfd\x93\x65\x4a\x05\xc1\x59\xcf\xe2\xcb\x06\xca\xdc\x47\x03\x21\x60\x96\x9b\xb9\x5d\x1b\xf1\x32\xe2\x10\x17\xd9\x42\x27\xf4\x07\x67\xe2\x59\x38\xb6\x61\xad\xde\x3e\x4a\xcd\x16\xcb\x0a\x2b\x14\x09\x81\xf0\x83\xfe\x40\x65\x3c\x53\x87\xe4\x76\xdb\xa6\x2b\xf5\x46\xea\xde\x80\xe3\xb0\x84\xf3\xcd\x63\xeb\x05\x25\xda\x47\x3e\x2f\x4f\x61\x74\xb4\x6d\xa4\xd6\x79\xfa\x58\x66\xad\xc2\x46\x71\x12\x2d\xbe\xdb\xf8\xe0\x83\x6a\xed\xc4\x10\x4c\xa4\xbe\xf3\x72\x32\x8a\xab\xe7\x0b\xe1\xec\xf7\x65\x71\xd7\x7e\x63\xdb\x94\xd9\x53\xa7\x4d\x99\x36\x63\x26\x88\x00\xd7\x15\xaf\xdd\xc4\x36\x1c\xe2\xc4\xa6\x17\x07\x28\xf4\x4a\xa0\xec\x5e\x7a\x54\x31\x12\xae\x30\x62\x06\xb6\x1f\xf0\x8e\xb2\xcf\x2e\xcd\x8e\x8d\xc1\x9a\x8a\xa3\x81\xc6\x3e\xa8\x38\x24\x71\x71\x71\xe5\x7d\x5d\x5c\x6c\xb2\xc4\xef\x44\x4c\x84\xb9\xd5\x5a\x1c\xe4\xd0\xdb\x28\x88\x08\xdf\xbf\x6c\x79\x91\xd6\xa9\xf3\x97\x04\x76\x50\xff\x7e\xa4\xe9\xb7\x51\x85\x61\xb8\xd9\xbc\x84\xf8\xde\x2a\x49\x6b\x37\xab\x71\x83\x34\x63\xbc\x32\xdb\x21\xc8\xed\xe0\xf3\x8f\x5b\x16\x29\x8f\xb9\x8a\x61\x9e\x93\xdd\xd1\xa5\xda\x61\x3b\x38\x85\x95\xdf\xb5\x88\xa7\x5e\x45\x4f\x67\xa3\x8c\x4e\xb4\x46\x5c\xc2\x4d\x11\x8d\x0f\xb5\xc8\x87\x64\x22\xdb\x84\x4d\x35\x8f\x76\x03\xd6\xa9\xb6\x22\x2e\xa0\x2f\xc2\x9f\x1f\x57\x10\x48\xd4\x0c\x38\x5c\x22\x5c\x7a\x48\x06\x13\xaf\x1a\x63\x72\x5e\xdf\xcc\xeb\x8b\x55\xc8\xb3\xb0\x93\xea\x6f\xc7\x9e\x19\xa6\xcc\x35\x5d\x5a\xe7\xda\x5a\xd1\x6f\x6d\x6c\x51\x2e\xd7\x81\x23\xd0\x63\x3c\xf9\x4c\x93\x28\x6d\x10\x55\xe8\xa2\xf0\x32\x8e\x4e\x18\xa2\x26\x47\xec\x39\x1c\x06\xfb\xb7\xed\xe9\xc7\x84\x19\x15\x1b\xae\x1e\xe3\xce\xb1\xf2\x77\x80\xc9\x1a\x40\x37\x9b\xdd\xbd\x40\x5f\x16\x11\xb3\x1a\xa5\x38\x3e\xca\x5d\xfd\xaa\x02\x2a\x45\xb6\x4d\xc5\xad\x9c\x3d\x2b\x9d\xf9\xdb\xdb\x84\x00\x5f\xe6\xee\xe9\x8a\x61\x38\x6a\x50\x96\x80\x69\x16\x4e\xd2\xa0\x8d\x6e\x09\xc3\x74\x11\x1e\xda\xfc\x4b\x44\x05\x15\xf7\xad\x9f\x9c\x27\x8c\xe3\xb0\xc9\x30\x87\xb8\x3e\xd6\x7e\x45\xf2\xb7\x81\x0d\x9a\x5b\x64\x0c\x50\x5b\x3c\x48\x42\x1f\x79\xb7\x09\x5a\x6d\x23\x96\x08\xbd\x1a\xe1\xb3\x12\x02\x31\xa3\x75\x76\x7b\xf4\x97\xff\xaa\x58\xd4\x12\xf1\x05\x1e\xd2\x56\xd2\x88\x39\xa0\x46\x21\x0a\xfe\xec\xeb\x13\x74\x9d\xf3\x32\x72\x88\x4d\xc4\xc4\x29\x9c\x77\x5e\x5a\x54\xb9\xd7\x35\x89\xd1\x18\xbb\xaf\xd1\x9c\x4e\xa8\x1f\xaf\xbf\xda\x14\x75\x3a\x04\xf1\x54\xe0\x30\xdf\x9e\x27\x63\x51\xc0\xb0\x1b\xa5\x94\xcc\x10\xa6\x60\x24\xa3\xa8\x00\xa7\xe1\x5f\x17\x8d\xee\x35\x38\x72\x29\xe6\x70\x73\x78\x85\xb4\x34\x06\x00\xd2\x6d\x7d\xb4\xf9\x2e\x77\xab\x89\x67\xfe\x7d\x34\xef\xed\x22\xa5\xbe\xf0\xc8\x71\x8f\xf5\x8f\x93\x9c\xef\xc3\x20\x21\xd7\x35\x4b\x7e\xd1\x22\xe5\xd6\x4e\x99\x9f\xdc\xc5\x47\x27\x37\x02\xbf\x7e\x80\x82\x1f\xc5\xa5\x28\x1e\xc1\x2b\xf1\xbd\x57\xf5\xc7\x17\x0b\x08\xf1\x39\xe3\x65\x1a\x53\x00\x6c\x6a\x6a\xca\x08\xf5\xb2\x07\x75\xdb\x1d\x98\x70\x8b\xca\xf4\xda\x53\xf2\x66\xdd\x1b\x20\xdb\x81\xf3\x7c\xc9\x84\x64\x52\x5b\x65\xf1\xa0\x79\xdf\xb2\x6b\xf5\xfe\x11\x32\x7d\x13\xad\xc1\x78\x46\x1b\xa4\x79\x35\x8c\x4b\x82\x73\x9a\xb9\xf1\x2d\xd1\x82\xb9\xf7\x06\x24\x2a\xf7\xc3\x65\x8a\x64\xa7\x87\x5d\xe4\xd3\xd8\x2a\x38\xfb\xdc\xae\x24\x58\xf2\x55\x30\x0c\x08\xfe\xf4\x78\x5a\x12\xd3\x6d\xb0\xa0\xa6\x79\x43\x1c\x3f\x18\xcb\x0f\x55\xb1\x4d\x2c\xe1\x6d\xff\xb7\x3e\xf0\x9b\xf9\x05\xb8\x8e\x6d\x0a\x92\xc3\x4d\x79\x7e\xf0\x58\x65\xd9\x6a\xa1\x7b\x03\x62\x73\x34\xeb\xa8\xf3\xcd\x81\xc8\x86\xba\x9a\x67\xf0\xbe\xfa\x1a\xa8\xe1\xf9\xd8\x11\x50\xac\x5c\xcb\x5d\x8a\x23\x21\x4c\x7e\xa1\x04\xfe\x5a\x9b\x2c\xd2\x10\xf0\x01\x6c\xa8\x8c\x32\x93\x04\xab\xc7\x89\x7a\x28\x20\x40\xcf\x3f\xa0\x39\x72\x22\xa7\x48\x4b\x69\xf5\xd7\x4c\x7b\x51\x05\xe3\x46\xe5\x63\xcc\x29\xbe\xce\x4f\xee\x65\x37\x8a\x05\xf0\xb2\x9e\x06\x86\xf4\x7c\x44\xdc\xd8\x61\xe8\x5b\x2f\x2a\xe8\x0d\x1c\xd5\x83\xf9\x42\xf8\x9b\x4d\x7a\xcb\x6e\xc3\x2a\x41\x4e\x47\x0a\x5a\x68\xeb\xb4\x90\x1f\xb5\x1a\xb0\x19\xd9\xbf\x49\xb5\x83\x05\x81\x4d\x63\xec\xca\xcb\x45\x28\x6e\xc0\xa1\x7f\xfa\x91\x64\xd8\xba\x60\xa5\x38\x7e\xb9\xf1\x4d\x83\x00\x87\xf8\x90\x57\x39\x67\xe6\xf3\xdb\xf4\x53\x47\x99\x2f\x60\x9d\xb9\xdb\xdf\xd0\xa5\xcb\x39\x0c\x87\x4f\x65\x96\x2d\x97\x7e\x3a\x35\x2f\x5f\x08\xff\x65\xe7\x20\x25\x00\xc6\xb0\x9f\xbb\x66\xca\xb9\x08\xd7\x1a\x12\xe0\x91\x94\x1e\xf7\xbc\x9a\x9a\xdf\x7c\x0c\xa2\x05\x9c\xc4\xff\xa5\x63\x7c\x9e\xb4\x8c\x98\xa8\x28\x49\xc2\xe1\x9f\x27\x25\x38\x20\x55\x2c\x39\xfc\xba\xe6\xc6\xd5\x85\x5d\x5a\xb3\x68\x91\x20\xde\xdd\x7f\xea\xa2\xb0\x22\x47\xc4\x2d\x33\xc4\xed\xa9\x3a\x2e\x4d\x60\x75\x5e\xd0\x2c\x8a\xf2\xd8\xdb\x23\xb4\x38\x0d\x0d\x23\xbf\x87\xdf\x18\xa1\x39\x60\x32\xe4\x12\x7d\xd0\xe7\xcf\xd5\x9c\xb3\x9c\x1a\x4b\x36\xe3\xa2\xb1\x31\x36\x49\x44\x16\x14\xa7\x87\xb6\x25\x83\xaf\xde\xb8\x9d\x6b\xeb\xa9\x89\x9c\x50\x2c\xd1\xb6\x78\x20\x68\xc3\x7d\x2c\xc7\xed\xe5\x27\xa6\x53\x98\x8a\x0c\xec\x4e\x67\xe0\x5a\x62\xc7\x53\x3a\x22\xa3\x0b\x43\x25\x62\xa2\x44\x10\x6c\xf3\x32\xc5\x8e\xf9\x5e\x65\x5c\xb9\x75\x92\xc2\x2d\x73\xb9\x74\x5d\xf8\xf6\x08\x6d\x7e\x46\x4d\x82\xb9\xf7\xa5\x1e\x00\x7f\x51\x16\xfb\x2f\xa0\x4c\x72\x4b\xbc\x42\x4f\xf6\xcd\x53\x72\xcb\x8d\x7d\xe5\x85\x99\x32\x76\x84\x5e\x90\x56\xc4\x2e\x35\x7c\x6d\x0f\xcf\x12\x28\x4a\xc2\x5b\xc7\xc4\x0f\xdc\x2d\x21\x81\x1d\xc9\xfc\x7d\x93\x1e\x97\x4c\x3b\x28\xc5\x13\xc3\xd0\x0b\x79\xc0\x2d\x61\x4f\x70\xdc\x8d\xc9\x86\x6e\x51\x14\x95\x1e\x26\xd8\x19\x6a\x79\x12\x48\xb6\xae\x4b\x02\x87\x07\xb9\x93\xcb\x92\x57\x85\x81\xef\x8d\xf1\xeb\x9d\x5a\xdb\x01\xeb\x71\x35\x57\x7e\xff\x61\xde\xb6\xdd\xee\x39\xea\x65\x1b\x4f\x9f\xd3\xd0\x78\xe5\xb2\x58\x86\xfd\xc6\xd5\xf6\x3c\xd8\x45\x36\xe9\x16\xe2\x9a\xd9\xdf\x09\x27\x11\xc4\x08\xd4\x6d\x99\x9e\x63\x2a\xd1\x85\xda\xd8\x05\x95\xf3\x65\x7b\x52\xb5\x0d\xc8\x98\xfd\xf5\x71\x59\xdb\x94\xb0\xcd\x71\xe5\xdf\xbf\x6b\x90\x1c\x9b\x22\xfe\xbe\x87\x77\xad\x1e\xac\xfc\x24\xd8\x38\x45\x3f\x7b\xbc\xae\x8b\x01\x38\x35\xe4\x8a\xd5\xa7\x71\xf6\xa5\x58\x0f\xad\x16\xf8\x31\x1a\xfe\xeb\x39\xb9\xf0\x61\xc8\x81\x9e\xc7\x4f\x64\xc4\x8a\x63\x65\xc8\xee\x64\x30\x83\x14\xfb\xa5\xe7\x2f\xb9\x4e\x7b\x18\x2e\x89\xe5\x1b\xb4\x59\xe1\xa7\x4f\x0f\x12\x11\x07\xc4\x81\xf9\xc8\xea\x5b\xfb\x95\x59\x31\x32\xb9\x7d\xb0\x5c\x78\xbc\xa6\x01\xea\xa2\x18\xdd\x28\xd2\x52\x83\x0b\xac\x64\x3f\xa3\x01\xbf\x3c\xe2\x42\x67\x5c\xe8\xc9\x3d\x74\x4a\x6b\xaa\xb1\x5d\xe3\xeb\x6d\x50\x5f\x9b\xa8\xac\xb0\x7c\x16\x40\x9f\x13\x77\x5f\x57\x6e\x93\x5f\x0a\x37\xb7\xd9\xab\x16\xc4\xec\x34\xd6\x50\xc0\xc2\xfb\x5a\x74\x26\x2f\x66\x58\x58\x3d\x67\x96\x8f\x1d\xad\xc5\x34\x93\x6b\x5a\x8a\x16\xe1\x2b\x97\x8c\xd5\x52\x96\x83\x5c\x82\x54\x7c\xdd\x8a\x73\xf2\x58\x74\x5b\x88\xcf\x15\xd0\x61\xd5\x45\xd8\xe5\x7b\xdc\x9e\xdc\x14\xe5\x58\xb9\xa4\x0a\x27\xf0\x9f\xb7\xca\x7f\xe3\xfb\xc6\x70\x69\x97\x72\x17\xf8\x0e\x4f\x4a\xb6\xfe\x41\xa3\x72\x07\x9e\xdc\x44\x66\xef\x79\x40\x81\xec\x11\xee\xcc\x38\x4f\xc1\xc9\xd3\x20\xfa\x1d\x28\xe0\x26\x6c\x1a\xa9\x67\x63\x3b\x49\x6c\xc6\xef\x58\x7a\x90\xdd\x3a\x99\x15\x21\xc3\x2e\x98\xa0\x55\xf3\xaa\xcc\x7d\xa1\x27\xf7\xd9\xfe\xba\xd9\x79\x0d\x3b\xc8\xe5\x2d\xec\x37\xcf\x26\xe9\xaa\x83\xca\x4d\x5e\x78\xd9\x66\xfe\x5a\xae\xa0\x00\xf3\xed\xc9\x7c\xfb\x55\xcd\xf0\x03\xf0\xf2\x3c\xe7\xae\xd0\x8c\xfc\xa3\xff\x11\xd7\x1d\x1d\x73\x55\xda\x20\x2b\x09\xf9\x90\x9b\x56\x8d\xd5\x6a\x61\x2e\xa7\x44\xea\xf1\xa6\x3c\xd3\xb3\x5e\x00\xd1\x7d\x5c\xb3\x54\x5b\xe4\x9c\x65\x28\x85\x96\xef\x83\x76\x75\x14\xf0\x7e\x79\x60\xa4\xca\x29\x70\xd5\xc5\x55\xf8\x6f\xd3\xe5\x4d\xaf\x22\x46\x6d\x2e\x08\x79\x52\x79\xd8\x16\x42\xf0\xe5\xf2\x8b\x34\xf8\x46\xd0\x89\x88\x3f\x79\xdd\xba\x38\xdb\xcc\x65\xba\xbe\x1c\xa1\x8c\x53\x48\xe0\x0f\x4c\x2d\xf3\x96\x79\x11\xf6\xf9\x0c\x48\x7e\xf7\xe5\xaf\x2a\x12\x43\xcc\x93\x9e\x9a\x7f\xed\x27\x37\x1c\x2e\x88\xdc\x8c\x7d\x4d\x03\xc9\x22\xb7\x44\x4a\x28\xb6\x70\x99\xd8\x26\xb8\xae\x1c\x31\x3e\x5f\x27\x8a\x20\x30\xc0\xe0\xaf\x4d\xae\x7a\x4a\x26\x65\xc4\x48\x37\x2f\x58\x17\xe9\xc8\x9f\xe4\x32\xf2\x85\xf0\x2f\x97\x2a\x27\xd7\x86\xaa\x3b\x7c\x2c\x54\x05\xfe\xa2\xfe\xc3\xe7\xc6\x08\xdf\x3d\xab\x58\x3e\x47\xc7\x1c\x8e\xe6\x9b\xb6\x56\xe8\xc5\x42\xe3\xf1\x33\xde\x33\x51\x61\x8c\x50\xdf\xb7\xf9\x5f\x7b\x58\xa1\xa1\x71\x8d\x83\xf8\xce\x8f\xea\x23\x51\x0b\x81\x1b\x0b\x20\xa7\x9c\x9f\xff\x60\xf5\x8b\x8f\x74\x3b\xd8\x16\x7c\xfe\x09\xd5\x72\x43\x58\x16\x44\xa9\x69\x3f\x7f\xa5\xf2\x77\xa2\x9a\x9d\xb2\x85\xdf\x33\x98\x3f\xbf\xf9\xd4\x45\x24\xf0\x25\x09\x22\x3c\xb7\x4d\xe2\xfe\x7a\x53\x29\xb8\x73\x9f\x68\x18\x6b\x08\xd8\x1f\x85\xd0\xba\x90\x2e\xb1\x4a\xc8\x25\xd8\x4e\x31\xc2\x72\x85\x4d\xfd\xe2\x7e\x92\x9f\x4a\xb2\x2d\x1d\xae\x1d\xe1\x8a\x5e\x08\xdf\x5d\x99\xfe\x2f\x1d\xd8\x8f\x47\x1a\xab\x2e\x8e\x48\x4d\xca\x50\xcd\xc3\xb1\xdb\xc4\xdb\x2b\xd3\xaf\x68\x95\xd8\x82\x3e\x13\xbe\xf6\xaa\x86\xa6\x0c\x5c\xd3\x8a\xe9\x9e\x07\xc6\x5f\xa3\xe7\x75\x62\xe2\xe6\xbd\x55\x86\x68\x06\x55\x6e\x6b\x47\xab\x34\x24\x5c\xfa\xa2\xc6\x97\x40\x3e\xea\x55\xa0\xf8\xd7\x27\x9a\x10\x76\xd8\xf5\xa2\xa8\x00\x07\xe3\x3f\x7c\x65\x88\xc8\xd9\x56\xa2\x27\x32\x36\x6a\xce\xf4\xd8\xa9\xc9\x17\xf2\x63\xda\x0b\x5b\xa4\x45\xb5\xcd\xc9\x6d\x5c\xac\xd4\x07\xc8\xad\x08\xbf\x99\x4f\xb8\x1a\x57\xc7\x4b\x84\x5d\x33\x3f\x7f\xe8\xba\x5e\x9a\x18\x1f\xf7\x32\x6f\x36\x4e\x94\x35\x9d\xc4\xa8\x3b\xe7\xfb\xeb\xd7\xdf\x49\xff\xa7\x86\x80\xcb\x14\x7a\x32\x47\xc4\x9e\x00\x2c\xb7\x09\xcf\x11\xd9\x83\x0a\x53\x1b\x9a\xb8\x9e\xcc\x07\x9f\xb9\x4c\x94\xa8\xd1\xff\xba\x5d\xd3\xcc\x99\x3a\xab\x6d\xba\x88\xc5\xdf\xd5\xaa\x7d\x0b\xbb\x4c\x13\xb8\x36\xfa\x3c\x2f\xef\x44\xd9\x46\xae\x50\xc6\x1b\xfe\xac\x86\xed\x02\x8f\x0f\xc1\xe9\x9f\xb2\x5f\xd7\x32\x01\xab\x35\x9e\xb7\xf6\x9e\x94\xfd\x57\x8d\x51\x5a\x86\x3b\x7b\x59\x59\x57\x45\xa8\x44\xe1\x9a\x11\x2c\x72\xca\x67\xb6\xc8\x48\x93\x90\x81\xf3\x85\xb0\x7d\x94\xe6\x7a\x4f\x7d\x2b\xae\x4e\x8d\x57\x47\x0d\x15\xf1\xbd\x16\x44\xc5\x5f\x92\xce\x9e\x39\xd2\x84\xd7\x02\x29\x01\x81\x64\x5d\xcc\x92\x6a\xbe\x88\x24\x5f\x3e\xfc\xbc\x18\xff\xa0\x72\x99\x3b\x52\x86\xb7\x5f\xd4\xfd\x54\x1b\xb2\xf4\x08\xff\x30\xae\x09\x4a\x59\x0a\xcc\x64\xda\xbc\x6c\x5e\xd2\x38\x61\x53\xd7\x4b\xee\xc9\xee\x7f\xeb\x7f\xd2\xa1\xe7\xa5\xcf\x01\xed\x84\x9b\x94\x55\xbd\x98\x68\xe1\x0e\x16\x6a\x11\xd8\xc7\x22\x1d\x7a\x12\x2c\xc4\x17\xaf\xf7\xbf\xa1\xf4\x4f\xb8\x06\x6e\x2a\x9c\x41\x9c\xf9\xfc\x2e\xed\x84\x62\x54\xe5\x4d\xcb\xa1\x63\x8a\x56\xbb\xd3\x14\xf0\xce\xcd\xd4\x2c\x1b\x68\xa7\x28\xe5\xb2\xfb\xde\xd4\x30\x1b\x94\xbf\x3a\xb9\x25\x0a\x43\xd5\x05\xfa\xa7\x9d\x2f\x84\xcb\x5f\xd3\xd4\x43\x02\x37\x0a\x7b\x70\xc2\x16\x59\x2a\x29\x0f\x86\x35\x28\xaa\x15\x80\x72\xba\xba\x45\x3a\xe8\x2a\xa1\x7a\xd4\x58\x39\x5b\x77\x10\x62\x58\x25\x18\xdc\xb6\x5e\x99\x0a\xb8\x25\xc2\xfd\x7b\x7f\xb5\xa6\xb9\x8a\xae\x30\x6e\x58\x1e\x7d\xd4\xa5\xfb\xc6\xa5\x90\x79\x76\x33\x01\xbe\xc7\x08\x26\x8e\x92\xa0\xad\xa6\xe2\xfe\xaf\xda\xae\x03\x31\x0a\xce\x64\xf0\x14\xfa\xd6\x39\x92\x6f\x21\x66\x25\xe2\x72\x7f\xa1\x38\x44\xcd\xdc\xad\x1d\xfc\xa0\x54\x49\x40\xef\x2f\x6a\x7c\x31\x48\x9a\x71\xa5\xd0\x63\x9c\x7e\x4e\xd7\xa0\x63\xa4\x26\x48\x48\xf0\x7a\x0f\x9e\x38\x38\x3e\x3d\x8c\x70\x3d\x66\x10\x67\x7d\x44\xbe\x17\x6a\x05\x96\xfd\xed\x83\x1a\x40\xbf\x46\x6d\x5a\x89\xba\x3a\x3e\xc9\xec\x96\x43\x98\x12\xce\x17\xc2\x7e\xc2\x7f\xb7\x48\x1b\x26\xf5\xe3\x5d\xdf\x65\xef\xea\xc1\xde\x42\x81\xe7\xc7\x20\xbe\x0b\xf3\xe4\xdd\x86\x15\xae\xd3\x8b\x34\xe6\xe4\xb7\xf8\x37\xbf\x85\x51\xe4\xc7\x56\xb7\xe1\x27\x37\x5c\x11\x37\x90\xb1\xb4\x67\x4d\x89\x6b\xa8\x4e\x03\x78\x9d\x17\x69\x20\x1f\x1c\x30\x5a\xc3\x5c\xba\x2c\xfa\x3b\x1b\x66\xc9\x4a\xd3\xa1\x6e\x74\x91\x01\xf4\x08\x9f\x3e\xa8\x36\x94\x6e\xcc\xaf\xf9\xd4\x0e\x79\x4e\xb9\xb1\x56\x25\x76\x29\x37\x26\x3e\xa8\x6c\x62\xa2\x1c\x13\xbd\xa3\xdd\x03\xa5\xaa\x8c\x57\x6d\x3a\x4b\x07\x1e\x96\x03\x20\x4c\x9a\xfe\x73\x7d\x51\xf2\x9f\x4d\xd2\x2c\x76\xbf\xf7\x49\xcd\x78\x13\xbb\x94\x83\x1c\xe2\xd7\xe0\xd3\x67\xe4\x2d\xf6\x02\x56\x27\xf5\x5e\x14\x8d\x7f\x70\xb4\xd9\xb8\x94\x78\x8e\x78\x27\x9e\x70\x13\x98\x52\x2d\xf0\x52\x00\xdb\x5d\xaa\xf7\x6c\x1d\x7b\x7e\xbc\xa7\xec\x31\x82\x37\x74\xdb\x60\xd7\x27\x6e\x00\xfb\xff\x98\xc6\xf7\xe1\x33\x1a\x1b\x16\x16\xee\x7c\x5c\xf6\xf1\xc1\xd7\x6a\xbf\x1f\x30\xbf\xd7\x5d\xf5\xf8\x59\xda\x74\x3f\xf0\x45\x80\xca\x5d\x23\x25\x59\x08\xb2\x53\x9b\xad\x31\x1b\x7b\xa3\xf1\xa7\xe8\x67\x3b\x18\x2f\xda\x2a\xa4\xec\x73\xa1\xf2\x50\xd6\xc0\x2e\x31\xab\xc0\x28\xcb\x5d\x31\xa1\x59\x55\xd5\xc3\xa0\x0e\x21\x10\x70\x7b\x8b\x8a\xf3\x02\x23\x15\x54\x12\xba\x6a\x2d\xb5\xb4\xdc\x0f\x2a\x51\x9b\x4f\x7e\x7a\x05\xbb\x4c\x5a\xa0\x75\x25\x36\x35\xf1\x64\xa9\xb7\x3d\x49\x43\x3c\x45\xd7\x24\x3c\xb7\xbf\xca\x39\xe9\x5c\xcc\x1b\xc4\x5a\x4a\x02\xbf\x10\x8e\xd8\xa4\xe3\xe0\xbc\xc0\x46\x4c\xda\x8e\xa0\x61\x69\x05\xad\x3a\xb5\xab\x5e\x27\xaa\x60\xb7\x17\x05\xad\xcf\x2d\xd2\x84\x3b\x6d\xe2\xfa\x94\x17\xb7\x0a\x41\x79\x97\x62\xc6\x06\x78\x90\x85\xba\x34\x53\xa9\x22\x17\xdb\x39\x6b\xb3\xde\x8f\xd1\xa2\x02\x77\x38\x74\x31\xfd\xa1\xe5\x52\x2f\x62\x6d\xc6\x1f\x77\x72\xfd\x95\xc5\xa8\x48\x9b\x3d\x83\xbf\xf1\x5c\x93\xba\x2d\x08\x0d\xc0\x38\x7f\xc0\x81\x16\x11\x09\x6c\x52\x14\x84\x71\xf0\x39\xd9\x29\x97\x78\x53\x67\xcf\x6c\x8f\x1e\xea\xad\x25\x61\x21\x47\x69\x49\x92\x3b\xc3\x39\x0f\xf3\x27\xb0\x98\x54\x2d\x64\x5a\xb8\x2e\x13\xd9\x8d\xda\x59\x47\x76\x9e\x21\xc2\xf1\x91\xe9\xbb\xeb\x6d\xd5\xab\xaa\x9a\x4d\x1d\xe4\x27\xe2\xed\xd9\xe3\x1f\xea\xbd\x21\xcb\x7b\x7e\x50\x4a\x64\xe4\x32\x4f\x19\xf2\x28\x57\x12\xf1\xbd\xcb\x1e\x55\x3a\x42\xcc\x8f\xc7\xa5\x73\x2f\xe5\xdf\x3b\xba\xb6\x37\x5e\x53\xd3\x74\x60\x2b\x5c\x3a\xa3\x5f\x97\xce\x25\xea\x92\x36\xf2\xb9\xe2\x7e\xd9\xa3\x71\x3d\xd9\x78\xab\xb1\xed\x65\x09\x39\x42\x0e\xea\xa6\x6e\xab\x49\xa1\xee\x5d\xdb\x2d\x75\x31\xa0\x32\x81\x0e\x71\xc0\xf3\xfd\xe4\x74\x3a\x5f\x08\x6b\xab\x5b\x94\x67\x30\xbb\x3d\xfa\x7f\x80\xc4\xfa\xd4\x83\x72\x09\x6e\x51\x9b\x70\x6f\x9a\x9e\xcc\x93\xbb\x87\x2a\x17\xe1\xd4\x18\x11\xee\xbf\xd9\xcf\x19\x43\xd4\x80\x86\x62\x41\xdf\x53\x6d\x42\x94\x90\x8f\x91\x9b\x42\xd0\x8a\x5d\x2d\x71\x19\x49\x00\x87\x53\x17\xec\x9f\xbd\x9a\x59\x76\x47\x94\xd3\xc5\xea\xf1\x47\x5b\x24\x0f\x9b\xa5\xc8\x65\xd9\xcf\x0a\x6e\x9f\xe7\x50\xca\x3b\xed\xdc\x27\xd7\x68\xd6\x5a\x01\xc3\x28\x30\xc1\xc2\x6c\x4a\xbe\x10\x9e\x79\x7a\x94\x16\xc3\x05\xff\x11\xca\xab\xf1\xef\xca\x99\xab\x1f\x30\x87\x12\x2e\xdc\x31\xf0\x98\x66\x7a\x47\x03\x5b\x93\x02\x3b\xbe\x57\x1e\x71\xc7\x01\x74\xc1\x8c\x0b\x49\xf6\x9f\x36\x23\xea\xc0\x73\xeb\xdf\x48\x89\xc0\x62\xc2\xa5\x21\xc2\xc7\x34\xef\x9c\x32\x71\xe3\x0a\x62\xab\x62\x03\x10\xf0\x05\x6a\xee\xa6\x8b\x23\xd5\xfa\x35\x2a\x09\x4c\xaf\x35\x0e\x6f\x7b\x37\x6a\xe5\xb1\x85\x51\x4d\x4c\xcf\x32\x77\x6f\xe1\xb7\xac\x4a\x04\xc0\x3a\x7c\xe7\xad\x66\x34\x6a\xd4\x9a\x7b\x93\x3b\xa1\x99\xc8\x6d\x79\x38\x66\xbe\xa0\x22\xb1\x89\xcf\x6d\xc0\x72\x5b\xca\x1a\xe1\xb9\xe8\xf9\xc8\xb4\xe3\x52\xeb\xf1\xe4\xb7\xdc\x4a\x00\x50\x67\xf8\xad\xe2\x44\x5e\x90\xa0\x4e\x8b\xf0\x15\xe4\xdd\x47\x74\x1a\x7c\x99\x34\x50\xbc\x82\x0f\xcf\x68\x65\x62\xad\x86\x91\x2d\x56\x3b\x4f\xec\xd6\x16\xe0\xc2\x4a\x5e\xec\x27\x33\x3f\x69\x53\xd0\x7b\x51\xa2\xa9\x7b\x30\x04\xfa\xb0\xa1\x08\x5e\x50\xc7\x11\x28\xbc\xc5\x4f\x2b\x15\x7e\xd3\x36\x3f\xf3\x9f\x93\x54\xc4\x62\x43\x54\x46\xdf\xdb\x2e\xc7\x55\xe5\x00\x5e\x83\x6d\x37\x25\x85\xaf\x03\x04\xfb\x74\x70\x0a\xd6\xc8\x6f\x15\x2b\x78\x40\x83\xb8\x43\x83\x3e\x62\x06\x70\xb5\x78\x40\x9d\x79\xc8\x50\x50\x00\xc8\x06\x60\x69\x78\xf4\x91\x81\xca\x3c\x97\xf8\x24\xba\x92\xf1\xe3\xf8\x4e\x78\x19\x22\x2e\xfe\x18\x06\x06\x95\x1e\x23\xfb\x8b\x45\x9b\x45\xbd\x1a\xf1\xb9\xbe\x77\xd6\x69\x72\x4b\x06\xaf\xb8\x44\xf6\xff\x62\xc7\x40\x45\xb5\xce\xc4\x50\xec\xf5\x7b\x5f\xde\xb7\x28\xcc\x56\x89\x8b\x94\x1a\xf9\xaf\x4b\x25\x01\xda\xc6\xa8\x57\x3b\xa2\xa7\x2f\xd1\x74\xb8\x69\x67\x1c\x82\x7f\xab\xcd\x0c\xa6\x4d\x9f\x2d\x18\x51\x7b\x5e\x92\x0d\x8f\x6a\x2c\x90\x2b\x0b\xdc\x19\xe0\x02\xf2\x85\xf0\xde\xc5\x32\x74\x26\x60\xf8\xe8\xe6\xdd\x72\x93\x56\x59\x11\xe6\x5b\x3c\x14\x6c\x69\xe1\xe9\x69\x3e\x88\xaf\xc8\xb9\xc0\x71\x4d\x37\xd9\x42\xac\x84\x3d\x01\xdc\xc9\x74\xbf\x76\x65\x8a\xc7\xd7\x04\x87\xcf\x76\x8e\xba\x52\xa9\xbf\x99\xd3\x74\x2f\xb2\x43\x35\xb1\x54\x3f\x60\x2e\xc7\x71\xfd\xf6\x84\x64\x09\x3a\xc4\x2d\x35\xab\xaa\x64\xd7\x6d\x50\x70\x7a\x2e\xee\x02\xa9\xa7\x5c\xbf\xd8\x84\xc2\xad\x30\xa1\xed\x55\x3a\xa6\x31\xa2\x28\x15\x24\x54\xe3\xf7\x1a\x5a\x1a\xe6\x40\xc2\x35\x35\xf7\x05\xad\x85\xaa\x31\xea\x61\x33\xf0\x29\x13\xfa\x2c\x97\x1d\xd1\x7c\x72\x50\xac\x82\x10\x7e\x77\x8c\x66\x0c\x45\x58\x92\x69\xff\x71\x93\x10\xa0\x45\x51\x5b\x24\xe7\xd5\xff\x78\x33\x95\x9d\x4a\x42\x6e\xc3\x0d\xe5\xc6\x25\x70\x3d\x8c\xf9\xcd\x88\xa3\xf1\x15\xe7\xe5\x5b\x39\x6b\xd6\xb4\xe8\xe8\x3e\xc6\x60\x0f\x9c\xbf\x8d\xd6\x31\x73\x45\x6f\xa7\x97\x8e\x03\x2e\x4a\xb5\xbf\x28\xb9\x86\x7f\x7e\x4f\x0e\xda\xca\x51\x07\x93\x20\xbb\x0c\xf3\xf9\xf4\x1d\x24\x00\x1d\xe1\xaf\xc9\x8b\x8a\xf2\x1a\xf2\x2d\x18\x75\x46\xbf\xb3\x73\x8e\xe6\x8e\xcf\xb8\x4a\x08\xff\xbd\xdc\x42\x96\xbe\xf3\x6d\xad\xb3\xa7\x4f\x8b\x19\x73\x7f\x7f\x45\x8f\x0f\x70\x2c\x64\x65\xf1\xab\x7a\x53\x69\x06\x5c\x73\x08\xfc\xbf\x58\x3a\xb2\xd7\x4f\x86\x11\xf7\x73\xab\xe4\xa1\x8c\x72\x25\xf7\x55\xbd\x5d\x51\xd0\xd9\xbc\x23\xfd\xeb\x15\xc6\x5d\x9e\x01\x8e\x7a\x9f\xa6\x07\x8d\xbb\x6a\xc8\xf5\x62\x32\xdc\xce\x89\xc3\x94\x11\x03\x30\xd8\xc5\x2d\xcc\xfc\x78\x98\xb6\x9b\x0f\xec\xb2\x80\x9f\xca\x8f\xfe\xe1\x8b\xbc\x67\x76\xb1\x89\x3d\x8f\xf8\x7c\x50\x33\x7f\xbb\xa6\x72\x00\x3a\x6c\xe2\x56\x7d\x74\xb3\xa2\xd2\x44\xfc\x00\xa2\xc0\x57\x0c\x9e\x7a\x6e\x76\x1b\x1c\x47\x66\xa0\x79\x32\x12\x97\x49\xa5\x81\x6d\x70\xf9\xdb\x7a\x69\x6c\xf0\x5f\xab\xd9\x5c\x10\xd0\xf8\xe1\x4e\x3d\x40\x55\xe2\x0f\x9b\xff\x54\x2f\xea\xd4\x30\x51\xde\x7c\x60\x14\x17\x24\x71\x48\x17\x2e\x45\x2f\x42\xaa\x7c\x79\x69\x79\x6a\x98\x93\x66\x2f\x6d\x51\x90\x8c\xc4\x27\xdd\x09\xbb\xf4\x8b\xcf\x2b\x1b\x06\x6c\x02\x42\x22\x1c\xf4\x92\x64\x1f\x5b\xd4\x69\x9a\xc7\x67\xb3\x1a\xe6\xca\x43\xae\xe9\x07\x88\x35\x44\xba\xfe\x65\xbf\x41\xf1\xf7\x10\xa6\x57\xd1\x79\xbc\xf7\x49\x7e\xcb\x68\xb9\xec\x71\xd3\xae\xaf\x2f\x93\xf1\x05\xce\x35\xcc\x8b\x5e\x38\xc1\xf7\x04\xcb\x51\xc5\x2b\x21\x5b\x61\x0f\xed\xd9\xa5\x89\x7c\xd5\x70\x22\x9e\x3c\xb7\xdf\x50\x65\x10\x20\xfb\x9e\x70\xf0\x04\x85\x68\xda\xc9\xe7\x16\x93\xc7\xc9\x24\xe3\x60\xc6\x48\x4a\x74\xd0\x98\x71\x58\x86\x78\x17\x23\x56\x6c\xc4\xe5\x50\xed\x9a\xa4\x87\x02\x35\xa4\xb0\xdf\x16\xfe\x78\x17\x80\x56\x11\x2c\x8d\x4e\xcf\x57\x1d\x98\x5c\x30\x67\xc8\x2d\x7f\x3a\xc5\xc3\x8b\xaa\x18\x4e\x1a\x9c\x7b\x34\x5d\xad\xa1\x12\x72\xf8\x58\xfe\x86\x3e\xca\x42\xce\xc1\x6e\x29\xd6\xdf\x1a\x30\x65\x64\x53\x81\x1b\x67\xd5\x70\x93\xdc\x3d\x56\x02\x45\xc1\x33\x77\xa7\x02\x03\x2d\x11\xaf\x46\x3d\x18\x47\x65\xdf\xd3\xb4\x66\x8a\x00\x78\x4f\xe4\x87\xfb\xdf\xa7\xac\xf2\x7c\x3f\x3a\x89\x3f\x1d\xd6\x57\xdc\x9a\xce\x7c\x21\xbc\xf6\x8e\xff\xa1\x08\x06\xb8\xc4\xf4\x9d\x42\x2b\x05\x3b\x90\x0e\x96\x5e\xd0\x03\xba\x13\xdb\xcd\x64\x86\xde\xc7\x7b\xc5\x3b\x09\x23\xb6\x4d\xeb\xc4\xb4\xe4\xb3\x9f\xd3\xa6\x58\x4b\x7b\x5e\x10\xb7\x4f\xff\x6b\x2d\x3f\x6b\x51\x20\xf6\x51\xac\xa3\xf7\xdc\x42\xb1\xfb\x41\xb6\x13\xe5\xe6\x57\xae\x19\xa2\x2e\x87\x3d\x52\xe2\x3b\xb1\xcb\xcb\x57\x88\xf7\xba\x0e\x6a\xcc\x61\xfb\x94\x16\x39\x4d\x56\x6f\xdf\xfc\xf7\x55\x0a\xa2\x29\x94\x09\x33\xcb\x16\xa6\x77\x30\x76\xe0\x22\xc6\xc7\x03\xe9\x77\x66\xf4\x29\x7d\xa4\xeb\x8b\x44\x76\x7e\x51\x33\x9d\x0f\x83\xd6\x41\xc2\xca\xb8\xad\xbf\x36\x89\x04\x19\x99\xc4\xad\xe6\xab\xf7\x29\x52\x25\x3e\x8a\x2e\x78\xa9\x1b\x33\xb8\x05\xb8\x2a\x9c\xbd\x6d\xa8\x72\x0b\x40\x09\x5b\x1c\xea\xb6\x63\x92\x4d\x34\x03\x18\xb0\xb9\x8d\x3b\x74\x2c\x3e\x2e\x91\xb8\xb3\xe9\xc9\xcd\x78\x4e\xf6\x0c\xc8\xf5\x2d\xea\x2a\x8a\x4a\x99\xdd\x3b\xe5\x0b\xe0\x10\x21\x74\x3b\x46\x21\x64\x52\x56\x8d\x1e\x42\xf4\xf8\xd8\xa3\xf2\xb3\x01\xc6\x17\x66\xd6\x2b\x92\xd6\x8c\xfa\x18\x98\xdc\x70\x40\x7e\xf9\xa4\xc0\x70\x30\x16\x03\xcb\x0a\x3d\xd9\x05\x6f\x0c\x77\x53\xa8\x33\x10\x70\xe6\xb2\x31\x57\x1d\x1d\xef\xca\xcd\xa6\x8f\x59\x11\xb3\x4a\xf3\x94\xe2\xb1\xbd\x12\xb8\x96\xa7\xa6\x19\xd4\x48\x73\x39\x94\x79\xc2\xd7\xde\x94\xd8\xea\x81\x2f\x57\xe6\x3c\x21\xdf\x14\x16\x80\x2b\xd0\x77\xeb\x43\x64\xf1\x2b\xcf\x72\x6e\x8f\xee\xc0\x00\xf3\xfd\xe8\x12\x17\x3c\xaa\xcb\x74\xd6\x71\x2c\xc9\x97\x7d\x77\x6c\x32\x99\xec\xa5\x17\xc8\xfc\x6d\x8b\xb6\xad\xe6\x9b\xdc\x32\x4f\xda\xb9\x79\x5d\xcd\x80\x82\x78\xd1\x51\x9a\x38\x5c\x25\x53\x7c\x6c\xc1\xca\xc9\xd0\xf9\x47\xff\xed\xb2\xb2\x22\xd6\x84\x41\xad\x49\xa9\x13\x8e\xaf\x92\x82\x5e\xbe\xa5\x2c\x03\xca\x13\x06\x2b\x63\x7d\xc6\x4b\xad\x1e\xe3\x93\xc7\x65\x18\xea\xb6\x48\x25\xb0\x49\x74\x3e\x8e\xcd\x4f\x73\x68\x4d\xea\xb5\x36\x2f\x44\x8d\x6f\x3d\xa9\xe1\xcf\x03\x28\x01\x62\xfe\xc6\xf0\x8d\xf2\x34\x55\x29\xe4\x98\xbb\xfa\xca\xcf\x73\x85\x2a\x26\xec\x75\x6b\x0a\x2c\xff\xde\x00\x68\xf8\xe1\x13\x0f\xa7\xbf\x45\x07\xb5\x90\xeb\x79\x1c\x2b\xac\xd8\x67\x2a\x0b\x76\x8b\x76\x62\x2e\x5f\xd0\x72\x4a\x43\x16\x50\xc6\x02\x8e\x34\x86\xf3\xf1\xfd\x37\xe5\xf9\x98\xd9\x3a\x6b\x36\xd4\x91\xab\x94\x6f\x47\x2a\x98\x11\xae\xde\x7d\xe3\x73\x7a\x50\xf5\xa8\x5d\x8f\x27\x0b\x2f\x3c\xad\x6f\x2d\xcc\x6a\xa2\x67\x7b\x76\xb5\x0e\xbf\x72\xcb\x36\x31\x7d\xde\xf6\x59\x56\x4b\xf2\xfc\x41\x53\x30\x8e\x6f\xf7\x09\x08\xc5\x0a\x0b\x97\x63\x78\x05\x8c\x8a\x4a\x6d\x8a\xda\x32\xaa\x70\x41\x90\xa5\xaf\xa5\x1c\xe0\xea\x89\x71\x53\x7b\x59\x2d\x96\xf8\x3c\xbe\xc7\xb8\xf1\x8c\x28\x08\x10\x74\x87\xa0\xf4\x19\x6e\xd6\x3b\x03\x87\xc6\xfc\xfa\xf0\x93\xcf\xf0\x14\xc3\x00\x20\x31\xc4\x95\xc1\xc3\x09\xa2\x0a\x8c\xcf\x2f\x4f\x3f\x3e\x5e\xbf\x4b\x66\x80\x9b\x4c\xce\xc6\x6a\x37\xd3\xa3\x0e\xe6\xf0\x28\x28\x66\x3f\x32\x5d\xe3\x41\x74\x91\xd8\x3e\xd8\xb8\xf2\xdc\x10\x51\xbd\x15\x3d\x93\x91\x9a\x00\xaa\xe6\xee\x5c\x23\x0f\x9a\x59\x84\x3d\xf0\x23\x8f\xca\xe2\xbe\x46\x6b\x81\x8d\x62\x8b\xe9\x9b\x15\x25\x7e\xe2\x56\x84\x71\xe6\x85\xed\xfc\x12\xe7\x2f\xf9\x18\xd0\x9b\xfa\x48\x0c\x84\x15\xb8\x1e\xf0\x2a\x94\xc6\xf7\xe5\x11\xbd\xc8\x5f\x88\x45\xd3\x3b\xab\x7a\x75\x5e\x6c\x9d\x7c\xdd\x75\xd1\x45\xdc\xbe\x5b\xb0\x9a\x6c\x14\x54\x2c\x70\x9c\x88\x7e\xeb\x86\x2e\x05\x13\xe8\x23\xb7\x24\xf4\x47\xef\x5e\x97\x4e\x69\x0e\x2a\x31\x52\xea\xe5\x65\x1c\xd6\x27\x3d\x84\xf7\x03\x97\x78\x04\x71\x14\x06\x64\x96\xfb\x57\x09\x77\x7c\x44\xec\x4e\x60\x42\x65\xae\x57\xca\xe4\x7b\x03\xec\xc5\xd0\xdf\x0f\xde\xa5\x75\xe6\xb1\xab\x47\x78\xeb\xae\x11\x8a\xea\x50\xec\x43\x27\x1c\xf5\x57\x8f\xd0\x88\xf9\x54\x0e\x18\x8c\x89\x0b\xb5\x80\xc8\xa9\x1d\xf1\xe6\xf8\x97\x27\x35\x3d\x3c\xcc\xba\x69\x25\x3d\x35\x37\xee\xbe\xa0\xd1\x03\x88\xef\xdb\x38\xb6\xe5\x30\x8e\xf2\x01\xf3\x0a\xe4\x92\x2a\x29\x75\x63\xe5\x89\xfd\x71\x9d\x82\x8d\xc2\x58\x18\x06\x65\x96\x6f\x1e\x9c\xa4\x2a\x57\x66\xb1\xb5\x0a\xfc\x0a\x3b\x35\x9b\x36\x30\x24\xce\x6f\x3e\xa7\x89\x57\x53\x2a\x29\xd3\xb9\xee\x61\xfc\x8f\xad\xf0\x53\x27\xfe\x92\xf5\x72\x85\xe5\x99\x4d\xb5\xc8\x1a\xcd\x1c\xd0\x21\xa5\x92\x8d\xf3\x18\xc1\xe8\x21\x61\xe0\x6c\x9d\x32\x42\x4f\x18\xd5\x58\x5c\x2a\xf3\xdd\xfd\xe9\xaa\xa5\x4c\x03\x96\x37\x1b\x36\x71\x4b\x62\x3c\x98\xeb\xf4\xb9\xc1\xf2\x12\xc4\x3c\x0b\xd9\xd7\x35\x4f\x27\xd6\xbf\xac\x34\x00\xa8\xc8\x61\x6c\x99\x11\xdb\x78\x4d\x6d\x5a\x48\x6c\x35\xc3\xcd\x9a\x4f\x57\x83\x06\x6e\x05\x7b\xbe\xc0\xbb\xce\xba\x54\x23\xb6\x12\x66\x06\x4e\x74\xa8\xcd\x18\x10\xfd\xf9\x79\x8a\x11\x33\xf1\x4c\xea\x94\xb9\xea\x89\xf1\xd5\xcd\xe9\x4d\x40\x67\xd9\x6f\xe4\xfd\xfa\x64\x9d\x89\xdc\x63\xfc\xec\xfd\xe1\x0a\x5c\x94\x33\xa9\x84\xe0\x53\xf6\xb3\xeb\xaf\x90\x68\x07\xa8\x3d\x86\xb5\x0d\x50\x60\x58\x9c\xd0\x7b\xbe\xa8\xb8\xe5\x62\xc6\xfb\xd7\x3a\x37\x38\x18\xbb\x57\x80\x0d\x50\xb1\x68\x8b\xea\xb6\x3e\x58\xb1\xc8\x2b\x57\xc0\x7e\xc4\xe7\xf4\xad\x7f\x2c\xd7\x4d\xf7\xb8\x9a\x2b\x3f\xfa\x33\xe7\xe9\xc6\xde\x3e\x8e\xb5\x70\x32\x73\x87\xe9\x9e\xc7\x2e\x0e\xea\xb0\x9b\xe2\xad\xc7\xda\x43\x57\x69\x07\xc4\xb4\x48\x95\x2a\x6a\x72\x3d\xc6\xdc\xed\x32\x05\xf8\x0c\x99\xb1\x34\xbb\xb1\xe4\xb0\x14\x31\x68\xcb\xe7\x0b\xa1\x73\x40\xb6\x66\xe5\x80\xf9\x56\xcc\xe2\x35\xf6\xd5\x07\x89\xdf\x27\x75\x02\x00\x66\x60\x37\xf4\x91\x3f\xdf\xaa\x74\xef\xe1\x07\x4e\xeb\x30\x95\x64\xbb\x12\x1e\x1f\x97\x3e\xd3\x55\x16\x78\x96\x69\xe1\xba\x0a\x0a\x0b\x17\xcd\xeb\xaf\x32\x7b\x61\xe0\x38\x33\x59\xb5\xe2\x4e\xaa\x82\xde\x8c\x89\xdb\xe2\x57\x35\x0a\xa7\xdc\xc2\xad\xd0\x63\x5c\x50\x58\x78\x26\x65\x9c\xd0\xf7\x8d\x57\x14\x6b\x25\x54\x2e\x73\x4d\x18\x63\xf9\x5b\x9a\x2f\x35\xa6\x2e\xd6\xc7\xfd\x95\x93\x3c\x4c\xae\x44\x6e\x45\xfc\xde\x33\x1c\x91\x16\x3d\xd5\xa8\x02\x8e\x47\x24\xd1\x7f\xfa\xde\x44\xce\xf4\x5f\x19\xd8\xc8\x6d\x6a\xce\x73\x9f\xbe\x6f\x94\x54\xda\x6e\x26\x12\xbc\xb3\x61\x9a\x22\x87\xe5\xb9\xb8\xec\xe7\x3d\x54\xb5\x90\x4d\x5c\x87\xb2\xe8\x7f\xe3\x4a\x2f\xa3\xc6\xb3\x86\xae\x6d\xeb\xfa\xa2\xe2\xb8\xec\x49\x6d\x8a\x19\x30\x46\x62\x56\xfc\x63\x0a\x3c\x46\x31\x99\x8e\x2e\x64\xfc\x66\xb9\x29\x2e\x21\x75\x4c\x93\x3d\xb7\x38\x99\x7a\x17\x7b\x91\x01\x39\x38\x5d\x2a\x23\x7b\xcd\x03\xe0\x65\x0a\x2b\x36\xb6\x74\xe4\x43\xa2\xdc\xdd\xfd\xe5\x4b\x59\x75\x69\xd4\xc0\x8e\x93\xb2\x36\x33\xf2\xf0\x43\x9f\x78\x29\xbd\xd0\xf3\xbd\x3a\xf6\xc1\xe4\x2f\x2d\x31\xfc\xdf\xc6\x48\x75\x9e\xc7\x7c\x2b\x6f\x23\x56\xe1\x62\xdc\xd9\x25\xfb\x38\x82\xac\x12\xdd\x86\xab\xa4\x02\x6f\x6b\x1b\x58\x56\xff\x94\x63\x7c\xf2\xd1\xf7\xc3\x80\x37\xe5\x7b\xe2\xa8\x09\x98\xa0\xe4\x82\x52\x90\x0c\x72\x8c\x9d\xd7\xa4\x87\x05\xbe\x85\xf9\xd0\xec\xb6\xfd\x1a\xe8\xc3\xb7\x40\x37\x52\x88\x5f\x8d\x5e\xaa\x8c\x24\x1a\x62\x2a\xb4\x7e\xdd\x00\x25\xf8\xda\xd5\x7c\x21\x1c\x7b\x54\xb7\x71\x8c\xca\x24\x37\x0e\xb3\xdb\x5f\x4c\xc7\x0d\xe4\x3b\xd4\xab\x41\x25\xc5\xa3\xce\x7d\x4f\x0c\x50\x84\x9b\x38\xbf\xb2\xb8\xad\x25\x0d\xa7\x48\x56\xfd\x4f\x6b\xb2\x81\x0c\xbb\xa6\xc5\x37\xb0\xb0\x74\xbc\xbd\x7d\x84\x16\xa6\x58\x35\xd1\xab\x98\x66\x6b\x7b\x77\xe4\x88\xd5\xbf\xb1\xf3\xc9\xf4\x1f\xa6\xb5\x84\x12\x08\x63\x67\xe3\x91\x31\x69\xa6\x4a\xc0\x90\xed\x20\xcf\xea\x65\xb5\xfe\x8f\x35\x1a\xeb\x9f\x1f\x61\xce\xe4\x89\x6a\xd3\x7d\xa7\x06\xc5\x67\x3b\x6a\x3b\x39\x72\x37\xd3\xf7\xae\x24\x1b\x34\x6a\xb0\x99\xea\x7b\x3c\xdd\x1d\xf8\x0c\x23\xce\xce\x82\xef\x94\xbd\xf3\xbd\x74\xa0\xf0\xa9\x1d\xb5\xf2\x48\xb5\x6f\xfb\xc9\xd1\xf4\xcf\x20\xcf\x43\x9e\x17\x3b\x60\xf1\x6a\xe9\xe9\xc3\x62\xa2\x41\x03\x41\xa3\x3c\xf9\x84\x50\x56\xb6\x08\xf3\x1b\xdc\x76\xc3\x78\xf0\xcd\xab\xb4\xb8\x64\x39\x9a\xbd\x60\xf6\xdf\x7c\xe1\x1a\x43\xa2\xaa\x91\x17\xf2\xa3\x14\x90\x19\xa9\x52\x1b\x91\x7c\x21\xfc\xd0\x7a\x45\x8b\x5e\xd8\x9d\xe5\x96\xce\x1a\x97\xe2\xe7\x2f\xe7\xee\xb3\xe9\x8c\xfa\xaa\xb6\xaf\x23\x0c\xdd\x4b\x62\x92\x94\x71\x73\xbf\xe1\x5a\x71\x47\xcc\x98\x89\x35\xe2\x82\x86\x4e\xc0\xac\xcc\x67\x1d\x1c\x0e\xd7\x79\x47\xba\x24\xb0\x51\x95\x23\x6c\xe5\x2c\xd8\x78\x50\xdd\x76\xb9\x25\xee\x2c\xfb\x9a\xb6\x56\x80\x2e\x7f\xf2\x9c\xa8\x47\x1d\xaf\xe9\x3c\xd1\x9a\x05\xcb\x48\x8e\x37\x8f\xa7\x31\xdb\x14\x12\x34\xf1\xbc\x40\xb8\x6d\x66\x47\xaf\x54\xfc\xf4\x2d\x0c\x7c\xa5\xbb\x17\xa9\x52\x2a\xc8\xa7\x82\xdc\x78\xdd\x38\xe1\x67\xcf\x50\x6c\xa3\x3c\xf6\x52\x19\xd4\x58\x23\x85\xac\xfe\xe9\xa4\x51\xea\xc8\x44\xac\x50\x44\x1d\x17\xfe\x72\x01\xaf\x2b\x3e\x26\x58\x86\x00\x82\x39\x2c\xa5\x06\x3b\x48\xe2\xce\xb7\xa3\x45\x6a\x7f\x11\xd5\x60\xee\xa1\xab\x95\xc7\xee\x38\xc8\x45\x16\xc2\x0e\x71\x4b\xca\x6e\x2e\x83\x1f\xd6\xfd\xeb\x3c\x62\x8a\xb9\xfd\xdd\x4f\x6a\xc7\x1f\x5b\x0c\xb9\x12\xcb\xfc\x3d\x3b\xf9\xe8\x6e\xe5\xa3\xc3\x6f\xae\x92\x41\xaa\x21\x1a\x94\xb1\xed\x8a\xf0\x3d\x71\x39\x24\xc8\x38\xfc\x94\xaa\x6e\x1c\x4f\x9d\x8d\xab\x5e\x51\x66\xdf\xd4\xa9\x21\x9f\x11\xd1\x81\xbd\xd6\xa6\x85\x33\xd7\x27\xf9\x4e\xea\x60\x57\x80\x70\x7e\xd4\xdd\xa2\xec\x85\x3a\x19\xf1\x41\x25\xa9\xc7\x18\x3d\x4c\x03\x5a\xd9\x88\x55\x61\x4a\x23\xcb\xff\x8f\x5c\xfa\x21\xad\x02\xe3\xab\x51\x3e\x4a\x90\xb5\xfa\xc1\x50\xb7\x33\x9c\x1a\x03\xac\x47\x2e\x4b\x7f\x0c\x0b\x3c\x8f\x20\xd7\x13\xbe\x64\xc0\xf5\xfd\x9b\xad\x08\x2e\x46\x01\x60\xf5\x83\x92\x48\x58\x6c\x5a\x4a\x65\xfe\x78\x4c\x31\xd4\xb1\x68\x27\xa3\x1c\xf7\x71\xac\x23\x7d\xb8\xeb\xd6\x54\x8e\x6a\xd3\x2c\xe3\x0f\x8d\xe5\xbf\x4a\xfc\x38\xab\xea\x44\xab\x63\x1a\x73\xa6\x06\xe2\xd9\xb1\xbd\x57\xe6\x84\x06\x4f\xb0\x88\xc3\xe9\x54\xc6\x49\x65\xac\xe2\x5b\x38\x26\x79\x7d\xea\x09\xcd\xfe\x3c\x99\x75\xdf\x5f\x93\xcf\xb6\x44\x1d\xd2\x4d\x12\xc1\xdc\x0e\xa5\xe6\xf4\x2c\x40\xcd\x88\x93\xb6\xa1\x5b\xd5\x07\x63\x15\x8c\x5c\x5f\x31\xf9\x52\xd0\x28\x55\x86\x3a\x48\xbc\x96\x7e\x59\x37\xbb\xbc\x71\x1a\x60\xcd\x73\xd7\x8f\x57\xbe\x04\x49\x2d\x0e\x17\x9d\x92\x17\x04\x03\x07\x60\xc2\x18\xc7\x66\xea\x94\xe2\xa8\x88\x14\x79\xed\xbf\x34\x9a\x0c\x72\x8a\x51\xea\x0a\xbc\x78\x16\x6c\xcd\x12\xf6\xf0\x0e\xad\xe2\x7c\x21\xec\x5e\xa9\x22\x6b\xdc\x12\x89\x71\x52\xef\x1d\xba\x42\xc2\x1c\x41\x53\x6e\xec\x29\x65\xa3\x50\xc7\x0c\x09\x21\xbd\xcc\xfb\x1b\x14\x4f\x95\x3a\x15\x7a\xd4\xc6\xec\x3d\x2d\x0a\x1c\x41\x09\x38\xad\x8a\xd1\x09\xee\x42\x4e\x0d\xa6\x9d\x8f\x8f\x50\xec\xdf\x91\x50\xb6\xca\xfe\x6e\x8d\xde\x6c\x80\xcb\x3b\x46\x02\xeb\x98\x19\x72\x52\x67\x68\x51\xc7\x41\x3e\x9f\xce\xe4\xd6\x1a\x69\xbc\x73\x03\xf3\x00\x6f\x78\x5b\xe4\xfe\x9a\x13\x28\x9a\x06\x14\x5f\x1e\x27\xcb\x91\x69\xad\x33\xa6\xc3\xc4\x6d\x99\x0a\x3e\xa5\xcc\x64\xb4\x0c\xe2\x97\x37\x4d\xd2\x71\xb3\xc4\xf3\xc1\xf2\x1d\x90\x43\x48\x73\xfa\xa9\x12\xdb\x06\xe9\x59\x81\xab\x7c\xf5\x82\x3c\x06\x1d\x18\xb9\xf9\x1a\xc1\x0c\x94\x58\x72\x8b\xde\x90\xf7\x65\xd6\xf4\x29\x33\xa6\xb7\x01\xb8\x68\xb7\x32\x7e\x81\xb7\x89\xdf\xaf\x1b\xda\x92\x48\xe8\xab\x41\x38\x3b\x7c\x5d\xba\x14\x01\x86\x9b\x43\x19\x70\xe8\x61\xc2\xf8\xa3\xcd\xd2\xa1\x0e\xa9\xee\x6d\xdb\x06\xea\x9e\x7c\xac\x0a\xc9\x10\xea\xac\xda\xbb\xba\x92\x6f\x31\x2a\x1e\x84\x79\x79\x4f\xe6\xfd\x3d\xaa\xfb\x98\x67\x52\x98\x5c\x44\x37\xe5\x27\x5a\xd1\x22\x05\x6b\xcc\xc4\xb0\xc7\x98\xbd\x5b\x42\x36\x8a\x01\xf3\x3d\xd3\x0a\x6c\xa4\xcd\x4a\xfa\x28\xcb\x53\x1b\xf9\xc5\x20\x2a\x53\xc2\xe3\x86\xb6\x0b\x86\xc1\x88\x27\xc4\x56\x3f\xfe\x94\xc2\x89\xb6\x10\x6c\x49\xff\x7b\x94\xe2\xb5\x0c\x0d\x73\x74\x63\x7e\xaf\xcb\x37\x52\xc5\x6f\xf0\x9e\xd5\x71\xae\x25\x1c\x58\x14\x4e\x3b\x2d\xdf\x1c\xd2\x95\x2f\x84\x9f\x54\xdd\x8b\xe4\xf7\x0e\x7f\x1f\x0e\x57\x7b\x60\xd7\x2b\x63\x26\xda\xe0\xec\x3d\xfb\x74\x5f\x1b\x3e\xfd\xf4\xe3\x95\x65\xc6\xd3\x14\xa5\x70\x57\x0d\x33\x82\x61\x66\x01\xf1\xed\x57\xab\xf9\xab\x3e\x75\x76\x2b\xa0\xeb\x72\x13\xca\x0a\x7f\xc3\xb7\x5c\x62\x72\xea\xf5\x0f\xe6\x0c\x54\xf8\xb3\x45\x1e\x49\xaa\xda\xc4\xd0\x86\xf9\x0e\x6c\xe5\xc6\x6b\xf4\x29\x16\xbd\xad\xb8\x94\xf2\x30\xbf\xaa\x43\x22\xee\xed\xe6\x1d\xf0\xcb\xc7\xb5\xe2\x1c\xa3\x58\x4b\x3e\x3c\xdc\xdd\x2f\xf9\x9a\xd7\xe4\x0b\xe1\x0d\x0b\x95\x2d\x33\x72\xab\x30\x2e\xbf\x71\x4d\x8b\x3a\x7e\x8c\xa2\x16\x2f\x74\x0e\xcc\xd5\x74\xe4\x68\xb5\x41\xc5\x54\x0e\xce\xeb\x58\x45\x92\xb0\x48\x8b\x45\x98\xb6\x1c\x3c\xda\xa2\x4a\xbb\x78\xd8\x15\xef\x53\xcf\x79\x1d\x68\xed\x07\x2c\x71\x58\xf8\xe1\x35\x97\x8b\x5b\x0c\xa2\xcd\x19\x9d\xde\x8d\x98\xdf\xa0\x4e\x5c\xa7\x84\xe3\x07\x0a\x81\x02\xcc\x6c\xc5\xac\xbb\x27\xbb\xf3\xb9\xe4\xd5\xf3\x54\x15\xe6\xf1\xcf\x35\xeb\xb3\xc7\x1a\x36\xd7\xee\x50\xce\xaa\x4b\x1c\x2e\xfc\xf9\xd1\xe7\x95\x4d\x71\x27\x71\x4b\x36\x8e\x2a\xd3\xf0\xc5\xd5\x0a\x95\xb1\xb5\x23\x5f\x08\xcd\xbd\x32\x6a\xe3\xae\x1a\xe3\x0e\x3c\xc6\xa7\x17\xf3\x7a\xaf\x81\x11\xb3\x29\xdf\xbd\x17\x6f\x1a\xac\x80\x7d\x3c\x1f\x41\xea\xf8\x4a\xdf\x78\xe6\x8f\x2c\x24\x29\xc8\xe1\x85\xe3\xf2\x58\x47\x3d\x86\xca\x98\x98\xaf\x03\x02\x91\xc7\x11\xa7\xd1\x47\xaf\x5d\x34\x58\xb9\x22\x1f\xbb\xa0\x38\x63\xbc\x7d\x9c\xf7\x48\xd8\xad\x10\x17\x8b\xf9\x73\x76\xfe\x51\xc5\x10\x05\x23\x87\xc3\xb3\x5f\xa9\x8d\xd7\x4e\x2d\x08\x6b\xb9\xa2\xe6\x89\x53\xeb\x45\x4b\x9f\x6f\x71\x82\x30\x4c\xf4\x97\x8f\x1f\xa1\x9c\x05\x07\x44\x6f\x63\x78\x68\xee\xae\x95\xf2\x3b\x4e\x9b\x35\x75\x4a\x5b\x1b\xc8\xcb\xbc\x5f\x4b\x1f\x93\x22\x43\x6e\x22\x42\xff\xe1\x5d\x7c\x56\x5f\x83\x70\x92\xfb\xd0\xa3\x92\x0d\x8f\x44\xf5\x1c\xbe\xe0\x27\x31\x02\xab\x7c\x6e\xe3\x7b\x1b\x54\xd9\x3f\x9b\x32\x54\x82\x0e\xa6\x47\xec\x16\x9c\x06\x28\xf6\x08\x95\xbe\x70\xef\x5d\xb2\x7e\xab\x35\x71\xf9\x32\x83\xb6\xc6\xc2\x77\x0e\xbf\x8d\x6f\x3f\xaa\x9e\x22\x57\x98\x0a\x9b\x5b\xb8\x40\xfc\x2d\x0b\x41\x20\x24\x9d\x17\xef\xda\x73\x85\x88\xc6\xe5\x32\x47\xa4\x5c\xf2\x96\xa6\xfc\x0c\x34\xd7\xa4\xa5\x59\x70\x44\x5f\x07\x0b\x58\x0f\x4f\xc5\x2f\x3c\x7a\x85\x32\xe0\x8b\xbe\x54\xeb\x62\xfe\xf1\x1f\xc7\x55\x14\x5d\x9c\x5b\x0c\x58\x25\x2e\x59\x7f\xd3\xa2\xed\x63\x70\xcd\x42\xac\x44\x4c\xfe\xf4\x8e\x9c\xd5\x26\xcb\x88\xe5\x19\x02\x8b\xc3\x18\x94\x70\xf5\x5e\x61\xb0\xec\x14\x49\x25\xe0\x62\x47\x39\xa3\x55\xc9\xf6\x53\xb9\x30\x64\x76\x79\xca\xb6\xaf\xc4\xa7\xc9\xb7\x3d\xa1\x3c\x11\xb0\x81\xe1\x67\xef\x2f\x37\x0d\xd5\xd2\x59\x97\x48\x81\x95\xdd\xba\x1b\x29\x2a\x71\x03\xfb\xd0\x6e\xd5\x3d\x1c\xdd\x18\xbe\x96\xb9\xac\xac\xaf\x04\x03\xd7\x6f\xc8\xcc\xbb\xf8\x82\xb0\x09\x77\x91\xdd\x10\xc6\xac\x73\x0f\xe9\x3a\x51\xdc\x59\x20\x4e\x1b\xb9\x11\x9b\x35\xc4\x48\x31\xb6\xef\x6f\x59\x35\x4a\x7a\xf3\x91\xa6\xc7\xfe\xe8\xe2\x74\xbe\x29\x52\xcf\xa7\x2e\x34\xdb\x62\xe2\x3f\xef\x91\xa1\xa9\x8e\x18\xb0\x93\xf0\xa1\x9f\x5c\xac\x59\xa5\x00\x89\x51\x0c\x5c\x2e\x5f\x3a\x20\x8e\xbb\x65\xe2\xf2\x79\xe8\x4f\x96\x2b\xc7\xb2\xc8\x82\x1a\x14\x0c\x3b\x4f\xea\x78\x75\x50\x13\x14\x02\x41\xc1\xd3\x1a\xbe\xc7\xc2\x38\xde\xc4\x0d\xb9\x49\x9f\x16\xa1\xa0\x14\xd8\xb1\xcc\x59\xb8\xe1\x15\xf9\xf4\xdb\xdb\x5a\x67\x47\xbf\xf3\x9d\x67\x06\x2a\x64\x35\x00\x5f\x85\x7f\xb1\xc6\x35\x05\x0e\xc1\x4d\x92\x44\x95\xcb\x16\x8b\x92\x00\x81\x4d\x7c\x74\x03\x32\xeb\xae\xd6\xe2\x03\xed\x74\xbd\x3a\xb1\x39\x48\x59\x34\x17\x97\x6c\x49\xcb\x35\x3a\xc4\xf7\x82\x22\xf1\x2c\xd2\x8c\x09\x09\xfb\x69\x21\x07\x43\xc0\x89\x45\x41\x06\x4f\x92\x87\xb4\x16\xe5\x6e\xae\x02\x68\xac\x1d\x25\xe7\x69\x96\x02\xbb\xc8\xf5\xdd\x3d\x4e\x46\x6d\x68\xba\x9a\x99\x5d\x99\xff\x77\xbc\x5f\x1c\x16\xa1\x5b\xfc\xcd\x05\x65\x74\xc3\x70\x27\x3c\xbb\xcf\xcc\xd4\x35\x4e\x20\x63\x24\x15\xdd\x2f\x5a\x35\xf0\x20\xf5\x53\x0b\xf2\x6c\xdb\x33\xca\x6e\xa0\x13\xbb\x3e\xc1\xa0\xd1\xf0\xc8\x91\xe4\x80\x7a\x56\xd0\x74\x40\xeb\x73\xae\x92\x5f\xc6\x42\xc2\x77\x2b\x7d\x01\xbf\xea\xa7\xaf\xb7\x39\x27\x9b\x57\xe9\x9d\x17\xf4\xbd\x39\x98\x52\xc4\xeb\xba\x0d\x0f\xa8\x62\xc6\x7c\x6d\xff\x75\xbd\xbd\xc4\xc4\xe7\xaf\x6f\x76\xa2\x02\xf9\xee\x44\xac\xc4\x28\x78\x94\x66\xb6\xb7\xcb\xfc\x18\xdb\x5e\xc4\x27\x60\xee\x5b\x83\xd4\x3a\xc4\x07\xdb\xeb\xec\xbc\xc7\x95\xe5\x30\xae\xd5\x30\x33\x29\xe3\x4d\xfe\xb5\x27\x94\xd2\x97\xb2\x0a\xa9\x73\x41\xb6\x6f\x1f\x4d\x8a\xd0\x0a\x5f\x9d\x7e\xf1\xb9\x16\xa5\x3f\x66\xd8\xb3\x84\x72\xf9\xd1\x37\x92\xe1\xb2\x0f\x38\xee\x25\xf3\x65\x8f\xdb\x45\x90\x03\x78\x3f\x79\xbc\x7f\xb9\x4a\x3e\xf4\x12\xe2\x2f\x6c\xe6\xbf\xc6\x29\x2b\xfd\x00\x00\x7d\x1c\xc6\xbd\xcb\xd5\xb8\x4a\xf7\xda\xc4\x51\xa5\x41\x5c\xc5\x8e\xac\xcc\x90\x6b\x12\xa8\x43\x76\xec\xd1\x78\xde\x25\x8c\x62\xfd\xc9\xd2\x60\x7e\x0c\xad\x46\x8d\x17\x7d\xa3\xfa\xea\xbe\xe0\x9e\x4f\xfc\x40\x11\xda\xcc\xee\x3b\xa9\x44\x14\x1b\x79\x55\xa8\x2d\xe6\xd7\xc6\xa9\x7b\x3d\x70\x81\xd7\x47\x12\xff\xf4\xb2\xbe\xbb\xb0\xe3\x8a\xe5\x7f\xbf\xaf\x4a\x2c\x78\x16\xc8\xd1\x19\x27\x6f\x52\x46\x75\x6e\x27\x82\xc3\xf3\xb6\xad\x4e\x92\x6c\x1b\x15\xa9\x10\xd3\xcf\xdd\x71\x58\xdb\x84\x23\xd2\x89\x52\x91\xf5\x17\xe7\x85\xc9\x8e\x8d\x2a\x5c\x7d\x3b\x5b\x5f\xc6\xa3\xe6\x92\xdb\x97\xde\xbe\x62\xe5\xad\xcb\x21\x82\x9f\xd6\x9a\x65\xbe\x22\x8e\x7d\x3b\x7a\x8c\xbe\x6b\xd2\x22\xf5\xa0\x21\x2c\xea\xe2\xa9\x8b\x35\x51\x04\x29\xe2\x96\x68\x10\x9f\x39\xc7\x33\xe7\xf4\x19\xb1\x38\x7a\xa1\x27\xe7\xac\xd1\x6a\x79\xca\x94\xdd\x81\xe6\x64\xc3\x50\xa7\x45\x4a\x31\x68\xcf\xa0\x8a\x93\x60\x07\x66\x81\x87\x6c\x0c\x03\xa5\x23\xcf\xf2\x4f\x5a\x42\x59\x91\x94\x44\x8e\xfe\xc8\x40\x65\x75\x86\x3c\x12\x15\x42\xb9\x2b\xcb\x4d\xea\xb4\x25\x12\x38\x82\x25\xf0\x87\xe5\xba\xe4\x24\x43\xa4\x62\xf9\xc2\x61\xad\xbc\x4e\x99\x67\x71\x33\x61\x38\xce\x68\xe9\xb5\xda\xcd\xb0\x7d\x24\xba\x08\x6d\x06\xbd\x5e\x11\xd5\x8c\x47\x1f\x0f\x3c\x2c\x54\x2c\x18\x8a\xf2\xb2\x0c\x6d\x5f\x3f\x2b\x1c\x7a\x83\x12\xf1\x29\x23\x01\x98\xd6\xae\x9e\x23\x55\x22\x8a\x88\x15\x55\x9f\xab\x7f\x9f\x39\x52\x89\x6a\xc4\xc5\x25\x65\x94\x62\x7c\xff\x69\x15\x4b\x14\x08\x61\xa2\xaf\xad\xd6\x68\xdb\x8c\x76\xfa\x96\xe8\x1b\x2f\x9e\x93\x11\xa3\x4e\x2a\x94\x51\xd0\xb7\xc8\x2e\x14\xae\x4d\x1e\xaf\x26\x5d\xde\x0f\x64\x2f\x9b\xc4\x5b\x9c\xc5\xa0\xc4\x13\xfe\xb7\x56\xaf\x78\xd4\x8d\x19\xcb\xd9\x77\xea\x12\xea\xe5\xd0\x0a\xb1\x55\x5c\x5f\x6e\xe0\x71\x51\xb0\xe2\x0a\xca\x03\xf1\x81\x9b\xac\x5d\xfe\x44\xd2\xfb\xd8\x58\x75\x35\xf8\xd1\x36\x79\xe5\x53\xa7\xe5\xdb\x6f\x4c\x49\x8a\x78\x8b\xf5\x06\xd9\x33\x19\x29\x62\x2f\x51\x1e\xb8\x7b\x3d\xff\xc0\x4a\x80\x58\xd4\x4e\x60\x31\xd3\xfd\x9d\xc6\xb4\xb0\x89\xc4\x25\xec\x3f\xa3\x0c\xa1\x40\x0b\x3a\x5f\x08\xf7\x70\x95\xf7\xfc\x72\x5a\x49\x81\x6a\xa6\x9d\xe7\x0f\xd3\xab\x82\xd1\x9a\x70\x20\x1e\xd2\x6b\x89\xe0\xa6\xc7\xb6\xb9\x4b\x5a\xe2\xd5\x46\x41\x35\x18\x18\xa4\xc9\xf0\x79\x98\x06\xb1\x0a\x24\x4c\x26\x7f\x77\x54\x47\xc0\x16\x6d\x61\x55\x9b\xbd\x66\x6b\xef\x44\xce\x74\xef\xd3\x67\x31\xbf\x9a\xdb\xa8\x85\x94\xab\xc9\x3c\xfd\x4a\x9a\xd9\xca\xbd\xfa\x7c\x82\xbd\xde\x38\xbc\xd9\xed\x7d\x34\x14\x37\xec\x79\x12\xa6\xb0\xb1\xfc\xb9\x2b\xf5\xd7\x92\xb1\xc9\xad\xca\xf3\xfd\xc0\x46\x6d\x80\xe1\x42\x81\x1b\x35\x78\xe2\x82\xc6\x2f\xd6\x4c\x86\x1b\x8e\x8b\xbc\xe8\xe5\xe6\xb5\xac\xf9\x80\xa2\xfb\x69\x13\x08\x47\xd9\x96\x63\xc9\x5e\x38\xfa\xf7\x94\x0c\x8d\xad\xb3\x49\xa0\x70\x16\xde\x11\x6f\xf0\x77\x76\x11\x76\x5d\xac\x5a\x7c\xfe\xd1\x15\x5d\x3b\xf5\x7c\x6c\x2b\x2f\xf3\xd3\x53\xd2\x50\xa7\x3a\x71\x69\x25\xea\xcf\xea\xe9\x5b\x6e\x2c\x9c\xa2\x6d\xe7\x2c\x86\x71\xfe\xde\x00\xb1\xa8\x79\x10\xa8\xd8\x31\x8b\xb5\x27\x6b\x63\x61\x72\x16\x7e\x77\x58\x3f\x19\x35\xa2\xef\xfa\xe8\x39\xc5\xc0\x9d\x61\x87\x08\x71\x94\x85\x5b\x65\xe6\xae\xdb\xa8\x44\x1c\xa2\x84\x92\x25\x87\x24\x9c\x55\xfa\xaa\xea\x4f\x36\x77\xc5\x01\xa5\xfc\x42\x94\x78\x18\x99\xb0\xf5\x1b\x24\x45\x06\x7b\xa1\xe3\x1a\x2d\x2d\xe9\xa7\x65\x61\x9b\x98\xb4\xe6\xc7\x6a\x59\xaf\x0b\x9d\x3a\x1a\xf8\x5c\xec\x40\xbc\x8f\x13\xcf\xcb\xb2\x8e\x36\x7b\x3a\xf6\x53\x60\x33\xb5\x80\xd5\xa8\x87\xcb\x81\x80\xf0\x39\x1d\x83\xc5\x3d\xa0\x75\x6a\xc6\xd0\x80\x0c\xda\xc8\x5f\xcc\x42\x3d\xaa\x94\x04\xd6\x3b\xb7\xf1\x12\x65\xa8\x8f\x38\x3d\x8f\x2f\x1b\xfb\x6c\x95\xd5\x7f\xeb\x34\xe8\xe8\xb3\xc7\xdf\x48\x2f\x60\xca\xad\xc5\x56\xd2\xec\xda\x9b\xfb\xe0\x66\x6d\x6d\x45\xeb\x58\x58\x2a\x66\xae\xce\x09\xe3\x33\x4e\x35\xe1\xb9\xe1\xa6\x97\xfa\xc7\xa5\x1f\x0b\xf8\xe3\xdc\x5f\x57\x1c\x4e\xa3\x00\x7e\xef\x1c\xa1\xe2\xea\x14\x19\x82\xfd\x5f\xe6\x03\x4f\xca\x48\x3f\xab\xad\x4d\x0c\x1e\x72\x93\x0f\xc1\xe1\xb4\xb1\x9b\x9f\x96\x32\x07\xef\x52\x54\x9c\x90\xc5\x30\x4c\x22\x36\xdc\x77\x55\x53\x9d\xc4\x99\x94\x8d\x29\x5c\xcc\xa8\x27\xf3\x9b\x9b\xae\xd4\x8a\x08\x13\x80\x43\x4e\xa2\x6b\x72\xab\xb0\xc7\x2d\x31\x1a\x54\x2c\xb8\x82\x7f\xde\x9a\xee\x2a\x1b\x34\xe0\xd0\x82\x9f\x6d\x51\x48\x60\x9e\x89\xf8\x39\x7d\xfc\x2d\x09\xf2\x99\x99\xcf\x17\xc2\x7b\x9e\x90\xba\x28\xa0\x23\xf8\xd9\x85\x6a\xf3\xe5\x72\x39\xfb\x7e\xae\xb6\x38\x0b\xb0\x6d\xa3\x74\x54\xe9\x3e\xfd\x3f\x4c\xda\x39\x0f\x66\xe7\x6a\x8d\x2a\xea\x62\x18\x75\x89\xe4\xf8\xc2\xcb\x1a\x6f\x89\x61\x6c\x8b\x56\x1d\x29\x26\x43\xb1\x84\xb0\x4c\x06\xdf\x3b\x3a\x5c\x05\x2c\x7b\x8a\x12\x63\xf6\xaa\xfd\x8a\x0a\x14\xf2\x71\x85\x32\x62\x0a\x23\xbc\xda\xaa\x41\xca\x38\x92\x00\x80\x27\x9c\xb4\x4c\x9f\xfb\xf9\x49\x94\xff\xb7\x8d\x72\xcd\x4a\x15\x8a\xc3\xfd\xcf\x4a\x8d\x65\x0a\x2e\x24\xeb\xc6\x2b\x86\x97\xa8\x8c\x7d\xcc\xa2\xfb\x18\x7e\xfa\x12\xe5\x6c\x40\xd1\x02\xad\xc4\x47\xb5\xe8\xc8\xed\xdb\x44\x03\x7d\xf8\x1d\x6d\xb1\x64\xdb\xb8\x22\xdc\x2f\xa3\x6f\x5c\x98\x20\x14\xb5\x2d\xea\x72\xbb\xc7\x75\xbb\x07\x29\xc3\x13\x8b\xf1\xd5\x71\xee\xa0\x86\xb5\x13\xb7\x43\x56\xea\x86\xa5\xa8\xc3\xda\xd4\x2d\x41\x0e\xce\xef\x90\xb6\x5b\x1c\x7f\xf9\xd6\x72\xa5\x1b\xa3\x1c\x05\x97\x59\xda\x26\x3b\xa5\x62\x6b\x87\x7a\x30\x0e\x8d\x88\x95\x91\x2b\x44\x7c\xc5\x91\x23\x92\x54\x51\x4f\xcb\xcc\x66\x3e\x30\x56\x21\xb8\x76\x12\x1f\x22\x60\x06\x2d\x53\x9a\x08\x56\x09\x38\xf4\x6e\xcc\x7e\x6d\xa4\x52\xa1\x62\x39\x30\xf5\x1d\x7e\x57\xc0\x50\x9e\xff\xac\x26\x19\x58\xa2\x7c\x00\xb1\xff\x54\xec\x8f\x84\xdc\x44\x5b\x7e\xf7\x78\x4e\x44\xfc\x18\x65\x76\x4a\x5b\x32\xfb\xa0\xe6\x9d\x8a\xc0\x99\x27\x41\x8b\x1b\x7f\x11\xdd\x81\x70\xc3\x84\x4a\xee\x4f\x33\xe5\x7e\x87\x76\x2a\x99\x7f\x72\xff\x16\xf5\x36\x28\x10\x8e\xdd\xda\x43\x07\xcb\x73\x28\x09\xe0\x8d\x18\xed\xf2\x4f\xb1\x89\x43\x7c\x98\x33\xf7\x18\x77\xbd\xa8\xe5\x6c\x4a\x4b\xf9\x4e\x12\xb7\x4c\xd9\x5f\x74\xa7\xc4\x2b\xb1\x22\x59\x1a\xfe\x79\xe2\x28\x2d\x3c\xf9\x98\xd5\x09\xee\x9c\xdc\x9a\x2f\x84\xf6\x86\x41\x71\x9f\x06\x53\x32\x3e\xc0\xbc\x73\xce\x44\xfd\x40\x59\xd4\x16\x52\x8b\x7a\xfb\xbf\x72\xd6\x95\x9c\x05\x57\xa2\x9d\x2e\x90\xe0\x74\x4f\xa0\xc1\xe9\xc7\x33\x31\xee\x7c\xfe\x55\x13\x47\x2c\x32\x4a\xab\x76\xc3\x4d\xb4\x3c\xc2\xbb\x15\xdf\x69\x31\x4d\x0f\xdb\x17\xf1\x94\x77\x73\x37\x66\x45\x44\x3a\xa2\x38\x9a\x2f\x84\xff\x32\x37\x3d\xa5\x76\xb1\x8f\xdc\x06\xb2\x82\xc9\x8e\x5a\x36\xbc\xaf\xb1\x3a\xdb\x5a\xdb\x67\x88\xbb\xf8\xd8\x61\x7e\x5c\x96\xdd\xbc\xfc\xf6\x15\x71\x27\xbd\x6a\xa5\xae\xd3\x89\xdc\xe8\xc9\xc4\xc4\xba\xa7\x15\x53\xb0\x1a\x62\x51\xc9\x5a\xe3\x2d\x68\x66\x5f\x8e\xbf\x1c\xab\x10\x14\xff\xd1\x3f\xad\x56\x5a\x33\x46\x1b\xc8\x16\x6c\x7b\xe3\x07\x67\x74\xb1\xe7\x5a\x2d\x11\xbc\xcf\xce\x5d\xab\xaf\x40\x8a\xc4\x67\xd4\x8d\x87\xc1\x77\x3e\xaf\x55\xb8\xb4\x4e\xb0\x2f\x70\x5b\xcb\x6e\x0d\x27\xbe\xab\x99\xa8\x62\xdb\xf6\x68\xe0\xf7\x02\xaf\xca\x7c\x48\x0c\x40\x09\x63\xc4\xe7\x03\xae\xec\x98\x23\x4d\x8a\xee\xd1\xc3\x48\x90\x3d\x9b\xde\xee\xc5\xc5\x86\x82\x09\x5f\x0c\x8b\x9e\x3f\x42\x61\x30\xa2\x3a\xce\x63\x37\x4a\x74\x40\x62\x85\x37\x69\xe4\x08\x6d\xd9\x2b\xc4\xd0\x44\x84\xfe\xfa\x1a\x09\x8f\xe9\xb6\xe2\xa7\xb3\xf0\xe5\x61\x69\x0d\x2a\x19\x6c\x6e\x5e\xaa\xd5\x10\xc4\x26\x58\x58\x4c\x4d\x7d\x3a\x09\xeb\x7c\x4f\x6e\xbc\xa8\x4c\x17\x2a\x0c\x04\x35\x36\xaf\x51\xa2\x15\x26\xdd\x90\x44\x6e\xad\xe9\x82\x50\x51\x99\x84\x6c\x31\xee\xed\xb3\x31\xa6\x59\x3a\x35\x1b\x0b\x06\x86\x71\xd7\x06\x01\x49\x5f\x52\x58\x7c\xeb\xd2\x15\x77\x7e\x5c\x21\x79\x5c\xa1\xc9\xd8\x81\x26\xb6\x50\xc9\x9a\xa4\x6a\x2f\x01\x4e\x1e\xf8\xb6\xa7\x15\x10\x33\xb1\x01\x69\x73\xe7\xac\x24\x0c\x95\x89\x7a\xdc\xcf\x9f\xd7\x92\x1e\xa8\x99\xf2\x45\xdb\xfe\x3b\x92\x48\x1d\x05\x5d\x35\x14\x9e\x3d\x96\x0e\x00\xb1\xd6\xaa\xc7\x87\x8a\xe9\x6a\xed\x86\x47\x85\x53\x1e\xb6\x6d\x80\x6f\xf6\x6c\x52\xdc\xa0\xc0\x9d\xe1\x4f\x2f\xb7\x28\x84\x01\x98\xf3\xc1\xed\xfc\xd4\xd1\x5e\xf0\x84\x62\x7c\x7c\x64\xb3\x36\xe5\xe0\x50\x9b\xf8\x40\x0d\x3a\xa3\xa0\x7b\xb1\x2b\xf6\x08\x67\xd6\xa7\x0c\x9d\xa2\x53\x18\x85\xb9\x9f\xf7\xe7\x82\x09\xf3\xa3\x14\xdb\xe0\xa8\x4e\x7d\x7d\x7a\xcf\xa4\xe1\xca\xd4\xaf\x82\x15\x25\xdf\xbf\xb5\x89\x44\x6c\xa3\x06\x9f\x50\xba\x83\x95\x19\x2d\xed\x84\x11\x45\xb8\x75\xbe\xcc\x64\x33\xf3\x84\x41\xe1\x9c\xfd\xb7\x36\x4d\xc9\x12\xb9\xad\x7c\x5d\x9e\xc9\x4d\xbc\x52\xe9\x0a\xaa\xcd\x8e\x75\x46\x8b\x26\x7d\x1e\x75\x39\x88\xbb\x36\x84\x43\x5e\xd1\x75\xf2\x1c\x87\x0a\xbb\xc1\xec\xec\x33\x49\x6e\x77\x71\x00\x6a\x1a\x76\x3a\x40\x96\x31\x73\x91\x5b\xc2\xdd\xe9\x41\xf1\x7f\x86\x4d\x1a\x43\xa5\xc0\x4c\xa8\xe4\x2f\x8c\xbf\x5c\xd4\xbf\xfc\xe4\xed\xb9\x54\xa2\xc1\xec\x00\xc6\x8c\x99\x25\x39\xf9\x36\x81\xf8\x2b\xec\x9f\xe6\xeb\x5e\xdf\x95\x40\xb8\x73\x8b\x12\xf8\x0b\xae\xc6\xc1\x46\x3e\x87\x16\x86\x7f\x7e\x42\xaa\xa1\x9a\x16\xc1\xe5\x66\x30\x74\xab\x2b\x53\x20\x2a\x95\xa2\xc4\x29\xc7\x24\x5b\x36\x8e\x6c\xaa\x40\x4b\x94\x8f\xb3\xc2\xe5\x9b\x94\x62\x11\x57\x08\x1f\xa2\x4d\xda\xa9\x19\x59\x22\xb1\xca\x34\xbc\x13\x3a\xb6\xda\xae\x26\x02\xb4\x99\x01\xa7\xd3\xc9\x6e\xca\xe4\x8e\x8e\x28\x3d\x35\x4a\x1c\x7a\xdc\x3e\x23\x5f\x08\x73\x6f\x09\xdd\x5c\xc4\x4a\xa8\x13\xa9\x56\x76\x23\x0e\x28\xc0\x41\xec\x22\x70\xed\x52\xa2\xda\xd8\x01\x49\xbf\x97\x30\x66\x8b\xa3\xf5\xe8\x4e\x70\x3d\x36\x66\x09\x3f\xbd\x43\x38\x50\xd9\x08\xab\xc5\x75\x50\xe7\x2d\xf8\xcd\x45\x42\x55\x3f\x1e\x23\x9c\xaf\xca\xcf\x20\x56\x4a\xb1\x0b\x7f\xa2\xa8\x94\x74\x04\x8e\x18\x16\x9f\x7d\x3c\x1d\x67\xa2\x16\x35\x36\x3d\x1f\xbe\x81\xcb\x06\xad\x64\xc4\xe5\x22\xb6\xe9\xf8\xb1\xee\xa8\xe6\x52\x15\x55\xfa\xbd\x28\x7f\x85\x07\x3b\x64\x87\x5e\x46\xcc\x01\x1b\x9c\x42\x4f\x76\xd4\xa3\x69\xf0\xb0\x4b\xeb\xd4\xf3\x49\x2f\x92\xe3\x2b\x9f\xd5\x04\x41\x02\xdb\x16\x3d\x9a\x51\x7b\x46\x17\x45\x24\x25\x00\x1b\x89\xe3\xd9\xe7\x91\xf4\xa7\x94\x88\xe7\xe2\x46\xaf\x6e\x22\x2f\x3e\xac\xa9\x88\x7a\x5e\xc0\x12\x3a\xe0\xfa\x73\x0a\xef\x85\x56\xf2\xb4\xd3\x15\xb5\xe9\x8a\xb5\xfd\x45\x82\x74\x4b\x45\xf0\x74\xc9\xbe\x3e\x47\x1b\xaf\x04\x95\x20\xc6\x8c\xfc\x73\xf7\x18\x55\xf2\x69\x5a\x53\x48\x7b\x69\x83\x8a\xf2\x60\x02\x70\xdf\xf7\x21\x2d\x9b\x23\xdb\x46\xde\xe4\x58\x60\xc8\xf8\xf9\xc2\x24\x74\x4c\x6f\x83\xfa\xf3\x9b\x0a\xbc\xb3\xc6\xb0\xcf\xad\x6c\xe6\x95\x14\x58\x04\xf2\x11\x70\xc7\xa2\x1f\x3f\xb5\xf2\x7f\x72\x79\xe3\xef\xc8\xdf\xbb\xfb\x2b\x19\x0c\xee\xc9\xbf\x6a\xbc\x30\xcf\x0a\x5c\x57\x02\x82\x6e\x7d\x95\x17\xed\x2b\x6f\x5f\x52\x58\xb9\xe8\xe3\xca\xab\xfd\xc0\x41\x21\x33\x06\xac\x66\x45\xb2\x5d\xd3\xac\x30\x19\xc8\x80\x8a\x23\xb9\xee\xbe\x11\xc9\x78\xa4\xa9\x5c\x1d\xaf\xe5\xbe\xd8\xe2\xa4\x37\x0e\xf9\xbd\xe7\xf4\x55\xb3\x5d\x12\xab\xad\xac\x7b\x4c\xdf\x8b\x05\xcc\x8b\x51\x85\x99\x47\x1f\x19\xac\xbc\x65\xc2\x34\x2f\x3c\x69\xc9\x23\x5e\x27\xa0\xef\x01\xef\xf8\xf3\xb9\x51\xd2\x88\x5c\xaf\xc1\xc3\xb6\x77\x94\x3d\x63\xa9\x4e\x3c\xca\x9a\x5e\xb3\xcc\xd4\xe9\xfc\x70\x15\x59\x62\x71\xf9\xf1\x23\x6a\x9f\xcc\x58\x94\xbd\x7b\x32\x7f\x6b\xe5\xd9\xce\xa2\x01\xe3\x14\xd2\xf3\x96\x24\xb0\xf8\xcd\x49\xca\x2d\xa9\x44\x1b\x5b\x68\x41\x65\x2f\x68\xa2\x08\x45\x6c\xa1\x3a\xa1\x8c\xd7\x8c\x77\xef\xd3\x08\xf4\xa8\xe2\x46\x01\x9f\xe3\x95\xc8\xb8\xd1\xca\xcc\xd8\xb6\x55\x6f\x47\x20\x50\xd6\xe4\x37\x47\x0c\x23\x70\x85\xfb\x80\xab\x0c\x13\x5c\x9b\x78\xbe\x4a\x6e\xf8\xa7\x87\xc4\x4a\x9c\x30\x33\x10\xb6\xd6\xa3\x35\x35\x67\x0f\xf9\x01\x2b\xa1\x06\xf4\x46\x9f\xbf\xa0\xcc\xb6\x88\x53\xb3\x49\x99\xf0\xd9\x56\xee\x4c\x52\x39\x79\x16\x49\x11\x94\xa6\xbd\xa9\x12\xff\x71\x54\x48\xde\xfd\x92\x26\x63\x65\xe3\x2e\xc5\x6b\xc2\xb8\xf2\xa8\x0e\xbf\xf5\xb9\x9e\xdf\x8f\xe6\x68\xc5\x9b\xe4\xf0\xf4\x99\x28\x5c\x35\x70\x05\x59\x98\xf9\xc0\xb5\x5e\xab\xe1\x96\x11\xf3\x05\xb1\xd2\x58\x77\x50\xd6\x45\x82\xcb\x08\x67\xf4\x59\x45\xb6\xde\xc1\xcc\x0c\x80\xa4\x6f\x74\x2d\x95\xf5\x1a\x57\xf6\x14\x1a\x5a\x27\xf6\x68\x86\xa1\xd4\xe3\x06\xc5\xb9\x3b\x6b\x4d\x3d\x02\x76\x4b\xd8\x15\x68\x81\x6c\xd7\x3b\x8a\x2c\x28\x2e\x32\xdc\x09\x50\xd4\x07\x12\x73\x56\x29\x7d\x3c\x56\xdb\x42\x04\x51\x81\xad\xe4\xf3\xec\xa1\x16\xed\x42\x6b\x8c\xd8\xbc\x68\xce\x1e\x13\xe2\x2e\x16\xae\x59\x18\xd0\xe9\xc6\xaa\x83\xe9\x11\x57\x23\xa8\x12\xaa\xe9\x41\xcf\x3d\x74\xb5\xdc\xe4\x76\x62\xbb\x8e\xa5\x13\x75\xfc\x53\xff\x38\xaa\xa0\x1b\xab\x41\x54\x00\x85\x4f\xcd\x57\x5f\xe3\x72\x74\x19\xd1\xd7\x38\xbe\x46\x17\xe2\xf6\x5c\x82\x24\xb8\xfe\xfa\x95\x43\x15\x1c\x7b\x09\x33\x5b\x70\x80\x8c\xd9\x77\xc9\x53\x27\x44\xff\x45\x76\x38\xbb\x40\x81\x1f\x30\x0a\xe3\xcf\x7c\x21\x7c\xfd\xa2\x2e\x9f\x0f\xa2\xba\xb1\xe4\x60\xf6\xf6\x13\x57\x69\x95\x8c\x6d\x83\x32\x6e\x55\xea\x7e\x1d\x5c\x27\x24\x3b\x18\xa9\x44\xbf\x0b\x53\xb4\x3f\x95\x12\xf7\xa5\x80\xc5\x30\xee\xcc\xc9\xcd\x2a\xe3\xd2\x27\x5e\x39\x36\x0b\x0a\xf7\x5e\xb8\x96\x57\x1a\xd4\x0e\x9c\x22\x41\xf9\x65\x0c\x7b\xc5\x86\xcf\x39\xf4\xaa\xb1\xf3\x47\xe6\xe8\x2e\xff\x31\xaa\x24\x33\x70\x8f\xce\x22\x6a\x78\x50\xd3\x86\x23\x9f\x56\xf5\x74\x6c\x9b\x13\x35\x79\x8b\x75\xf1\x01\x5e\xe0\xdf\x41\x03\xc6\x55\xc4\x9b\xe2\x3a\x7e\x53\xdb\xb2\x05\x0e\x8d\xe9\x97\xf5\x4d\xea\x22\xd9\x2d\x51\x87\xb8\x7c\x8f\x68\xac\xd0\xfa\x48\x8c\xbc\x64\xfa\xde\xfe\x70\x6f\x6b\x29\x27\x3d\x56\x5a\x65\xa7\x63\xcc\x8d\xd3\x61\xd0\x2c\xea\xf4\x27\xcf\xa6\x47\xe2\x35\x64\x83\x22\x9b\x46\x2a\xc8\xcd\x6e\x6f\x32\x4d\xf3\x51\xc0\x69\x4f\x51\x33\xf0\xe3\x3b\x14\xbc\xb8\x67\x21\x0e\x45\x33\xae\xaf\xeb\x18\x3a\x82\xcb\x82\x54\x1a\xee\x3d\xad\x93\xb1\x1d\x6a\x32\x14\xdb\x43\xff\x9f\x35\x1a\xcf\x9a\x82\xa6\x20\xef\x5d\x72\x63\xe6\x0e\xe5\x63\x1f\x37\x70\xd4\xe5\x6a\x4f\xf6\x4b\x0f\x0c\xd3\xb9\x72\x82\x52\x6d\x04\x37\x29\xda\x78\xd8\xc5\x62\x5b\x9f\xb9\xba\xcf\x75\x4a\x02\x13\x9e\x31\xf0\x7b\xcd\xce\xd1\x0f\x3c\xcf\xbb\xe9\x95\xa8\x82\xdc\x2a\x52\x95\x78\x4f\x8c\x4b\xdf\xa4\x3a\xc1\xbe\x8b\x24\x56\x74\xe7\x79\x8d\x32\x30\x4d\x50\xb4\x96\x9c\x18\xad\xf4\x7e\xcd\x10\x97\x41\x5b\x92\x92\xa8\x1a\x15\x2c\xe1\x67\xfb\x6b\x08\x8c\x28\xd2\xf1\x29\x9e\x13\xe5\xf1\xab\xf6\x2b\x50\xda\x4e\x14\x35\xc6\x90\xdf\xfb\xb6\x37\xc9\xab\x95\x02\x3e\xe7\xe0\x6a\x23\xbf\xbf\x54\x46\x5e\xcf\x64\x81\x4f\x5c\xce\x53\xfe\xd3\xfa\x18\x16\x9b\x87\x25\xc5\xfd\x3b\xa1\x05\x85\x1e\x43\x76\xaa\x86\x75\x8d\x96\x02\x9c\x46\xaf\xab\x46\x4f\x4b\xbf\x8c\x94\x14\xe3\x6f\x63\xfa\x56\x19\x9f\x80\x45\x97\x77\xc0\xbd\x25\x24\xcf\x70\x18\xe1\x0a\x0c\x5a\x15\xe9\x42\xe0\x06\x11\x46\xe4\xe4\x34\xba\xa4\xd7\x9f\x68\x26\xff\x31\x3f\xfa\x81\x06\x07\x99\xbd\x76\x4e\xd1\x6b\x84\x01\x39\x54\x27\x8b\xdb\x07\x2b\x22\x0d\x9e\x2f\x3a\xce\x97\x8e\x2a\x1d\x27\x2a\xa1\x7c\x21\xbc\xe9\x11\x0d\x0a\x47\x8b\x50\x24\x03\xb0\xe5\xb7\xa3\x86\x69\x75\x3d\x76\x45\xff\x7d\x4b\xb7\xe2\x0f\x8c\x5c\x5f\xb8\xd6\xf5\x3b\xaf\x69\x8f\x21\xe6\x27\xfc\xfe\x7e\xef\x48\x10\x10\x77\xe8\x9b\x72\x6c\x90\x9b\xe2\x33\xdd\x1b\xfd\x91\x6f\x4c\x90\x0d\x29\x44\x78\xe1\xe3\x00\xc0\x95\x9f\x9e\xe0\x59\x0a\x6c\x5a\xc5\xbb\xf1\xa9\xfe\x7a\x9c\xe6\x12\x6b\x6a\x2c\xf9\xd8\x3a\x99\x1c\xa4\xd6\x5a\xf4\xdb\xc6\x16\xc5\x20\x99\xd4\xb9\xb2\x72\xee\xb6\x5d\x12\x07\x40\x15\x6d\x91\x4c\x76\xb9\xa2\xdd\xc4\x98\x10\x2a\xed\xc9\x7c\xbe\x45\x7e\x80\x0f\x8e\xe9\x62\xf5\x90\x59\x79\x50\x5e\x25\xce\x3b\x88\x00\x34\xda\xee\xa3\x42\xe2\x90\x29\x3c\x20\x8d\xf0\x8c\x2a\xc1\x89\x62\x76\xf9\x8d\x73\xf5\x91\x85\xeb\xe3\x2e\xbe\x2c\x36\x96\x6c\x4c\x0f\x28\x6a\xd4\x26\x75\x5a\x42\x29\x8a\x6f\xf8\xcd\x77\x95\xb1\x9c\xcf\x10\xdf\xf6\xe5\xa7\x0c\xd7\x6b\xed\x9a\x2d\xd4\x44\x56\xed\x19\x91\xae\x25\xb9\x4f\x34\x0f\x90\x1b\x4e\x0f\x4b\x8a\xdd\x7c\xd4\x4f\xa2\xbc\x85\xec\x72\xf4\x37\x87\x9e\xd5\xdd\x2c\x44\x26\xea\xc9\x5d\x32\x78\xa8\x56\xa6\xc7\x13\xde\xec\x56\x99\x34\x3d\x9c\xa8\x6e\xac\xd7\xd0\xba\x5c\xf2\x2d\x76\x34\xa9\x6d\x1d\xa2\xb0\xa3\xb1\xcb\x15\xed\x7a\x32\xbf\x10\x73\x82\x15\xa6\xd5\x89\xa2\x22\x4f\xb6\xe1\x4f\xec\x1a\xae\x3b\xf3\xcf\x17\x51\x6e\xe1\x83\x72\x5a\x52\x27\x20\xde\xab\xb7\xdc\xcb\x1e\xe4\x2f\xea\x92\xc2\x8a\x5b\x0a\x1f\x8b\x51\xc0\xef\xb5\xeb\xf2\xf9\xc8\xc7\x9d\x12\x59\x94\xfd\xe1\x36\x1d\x49\x61\x32\xec\x23\x61\xae\x51\x08\x3f\xdb\xaa\xfb\xe0\x10\x17\x7b\x18\x74\x1b\x00\x73\x35\xba\x4b\x2b\x12\x85\x29\xaf\x58\xee\x1a\x53\xba\xe4\xe4\x68\x6a\xdb\x6c\x40\x28\x5e\xb6\x6f\xb4\xfa\x7a\x41\x64\x51\x04\xa5\x5f\x5f\x98\xce\xc1\xb1\x82\x89\x8b\x08\x8b\x97\xc6\x39\xb2\x5a\x9f\xe2\x47\x25\x17\x71\xe3\x4d\xdc\x17\xfd\xf4\xa3\x0e\x6a\x54\x18\xe1\x67\x07\xaf\xd4\xf5\x8d\x8a\x9d\xd1\x41\xe0\x7a\x99\xd9\x6f\xec\xd6\x59\x68\xb3\x6e\xe4\xd8\x87\xc9\x53\x84\x1b\x26\xf2\x4d\x30\xce\xcc\x6c\x5f\xa0\x4f\x1f\x62\xd6\x43\xb8\xf2\x81\xab\xb4\xc7\xb9\x62\x32\xdc\x33\xa5\xea\x1d\xfe\x3c\xaf\x95\x57\xc6\xef\x25\x80\x60\xb5\xf9\x31\x67\x78\xc2\xc7\x2d\x8e\xd1\xec\xc8\x76\x69\xc0\xe2\xde\x29\x97\x1d\x93\xce\x11\xe5\x80\xf5\x3a\xc6\xc8\x99\xc7\x14\x2e\x0d\x2d\x21\x15\xc0\xf1\xf8\x6b\xfa\x46\xbb\x24\x58\xb7\x42\xf9\x29\xb7\x54\x93\x7f\x70\x30\xb3\xb1\xef\x13\x21\x00\x19\x5f\xd5\x9c\xc3\xaa\x08\x5e\x77\xb7\xa8\x83\x33\x0f\x3e\x23\x48\x75\x26\x87\x54\x66\x3e\x77\x40\x61\x67\xd1\xb2\x8f\x39\xd0\xc0\xd8\xaa\xe9\xa9\x46\x2d\x89\x37\x19\x00\xbb\x6b\x77\xf4\x17\x77\x80\xf9\x84\x47\xd9\x2d\xb3\x92\x46\xba\x41\x75\x2e\x66\x78\xf8\xd4\x90\x34\x74\x11\xf1\x72\xfe\xf3\xd3\x75\xae\x2c\x76\xf3\xa8\x82\x19\x97\x32\xc9\x4d\xda\x78\xa5\x72\x11\x5e\x8d\xd1\x1a\xb7\x5f\x8a\x55\x98\x8c\x9b\x57\xc6\x66\x77\x3e\x71\xc0\xdd\x2a\xfa\xd7\x3b\x96\xc9\x49\x08\x7c\x54\x38\x72\xfc\xd5\xca\xa8\x85\xd6\x09\x0c\xb6\xf5\x8e\xfb\xe2\xf6\x21\x0a\x51\xc3\xa9\xc5\xb2\x92\xff\x77\xa6\xa2\xf3\x46\x5d\x98\xd3\x64\xcd\xf3\x8a\xc6\x29\xa9\x63\xa1\x55\x17\x5d\xd7\xd1\x43\xca\x3d\x0d\x20\x2f\x43\xf8\x5e\x34\x6b\xa0\xb8\xcf\x26\x41\x36\xe1\x45\xda\xf6\xc7\x93\x65\x4b\x67\x23\x25\x75\x99\xfb\xdf\xfa\x5b\xd0\xde\x26\x18\x61\xbf\xd7\x85\x90\x00\x6a\x9b\xc8\xd6\xad\x2d\x0f\x53\xbf\x00\x66\x30\xbc\x80\x60\xf3\x8f\xc7\x93\x44\xdb\x3e\x75\x66\xf4\xb7\x5e\x3d\xab\xec\xd8\x19\x2a\xd9\x5c\x9b\xe1\x8f\x6f\x6a\xda\x10\xd1\x51\x6d\x12\x47\x0a\x9f\x1a\x33\x4a\xbd\xb3\x89\xb2\x36\xe2\x2d\xc0\xe4\x57\xb9\xd4\xe1\x72\xe4\x50\x2f\xbf\x88\x32\x5f\x9d\x89\xfe\x32\xd4\x69\x03\x10\x88\x3c\x51\x7d\xbf\xf5\x46\x8a\x65\x63\x31\xd4\x15\x5d\x42\xb7\xb6\x2d\x32\xa3\x50\x90\x4c\xb5\x8c\xa1\x8a\x5e\x0b\x05\xde\x07\x0f\xe0\x7f\x5b\xa6\x41\x0d\xa3\x8e\xc4\x46\xfc\xad\xfe\xd5\xa2\xe6\x5d\x1b\xf5\x52\x3c\xb1\x79\xdb\x07\x8a\xea\x28\x70\x4d\x4b\x74\xee\x3d\xb9\x41\xd2\xbf\x22\x49\x4c\x77\xba\x8a\xb7\x3d\x3f\x00\x71\xc7\x71\x55\x7d\x40\x7c\x2e\x49\x9d\xdb\x32\x19\xd3\x6d\x99\xdd\x7c\x49\x52\xdf\x99\xaa\xdf\x8a\xc8\x04\x82\xee\x7b\x2f\x35\xa1\x46\xa8\x83\x01\x9d\x05\xf9\x9e\xbc\x33\x5c\x79\x9c\x42\xb8\x4f\xbc\xfd\xaf\x1f\x53\x16\x72\x25\x04\x1e\xcf\x99\x5f\x1c\xd4\xea\x32\x1b\x8c\x7f\x79\x08\x5f\x70\x5a\xe3\x83\x04\x76\xcc\x86\xc8\xcd\x7e\x5e\x6a\x83\x39\x04\x6a\xbc\x05\xcf\x2a\xa8\x83\xa8\x41\x85\x84\xfb\x8f\x09\x3c\xe8\x60\xb7\x83\xc2\xd9\xea\xbe\xe4\x1a\xad\xc3\xb3\x1b\xbd\x99\x52\x18\x43\x72\x4a\xac\x14\xab\x9c\xf8\x79\xdc\x7b\x5e\x3b\xa0\xc8\xf7\x02\x50\xef\x49\xcf\x20\xbc\x03\xf2\x6f\x38\x88\x11\x9f\x38\xc9\x83\x1a\xdb\xe4\x71\x52\x44\xa9\xdc\x6a\x5c\x72\x8d\x62\x20\xe0\xfb\x94\xb9\xb8\xc1\x4d\x48\x96\x3c\xa8\xf7\x8e\x36\xea\x42\x89\xe1\x76\xf8\xbd\x9c\xc4\x81\xe4\xa7\x46\x87\xe5\x63\xdd\x2a\x49\xc7\xad\xf8\x56\x23\x5f\x08\x77\x9c\x1d\x97\x4e\x52\x2b\x9a\xf5\x23\x32\x53\xdb\xb5\x24\x87\xdc\x6a\xbc\xa7\xbe\xfa\xed\xd1\xca\x05\x12\x17\x8c\x9b\x95\x1b\xb0\xea\x6d\x59\x7d\x76\xa0\x3a\xaa\x5a\x40\x4a\x2d\xf4\x64\xff\xd8\x36\x54\xe9\x05\xcc\xa8\xe5\xe4\x0a\x94\x46\xcf\x32\x49\x8a\x6c\x56\x7c\xce\x3e\x34\x5d\xa3\x2e\xb1\x20\x6e\x2d\x45\xea\xfd\x7e\x47\x32\xdc\xac\xf5\x22\xe1\x18\x68\xed\x3b\x2d\x0b\x14\x04\xbc\x24\xc3\xd6\xaa\xde\xd5\x26\xae\x81\x46\x3e\x30\xd2\xc6\x27\xe1\xab\x13\xa6\x23\xff\xbc\x70\xb8\xde\xfa\xd5\x85\xc5\xe1\xb6\x29\xe9\x38\xe1\x52\xe6\x5b\xc0\x0d\x05\xef\xb4\x4f\x5d\x80\xe7\x97\xbf\xdd\x05\x56\x9a\x8e\x12\x0c\xa7\xcd\x49\x3e\x2a\x5f\x8c\x1e\xd4\x15\xa3\x86\xc4\x61\xce\x22\x45\x92\x48\x5a\xff\x70\x73\xfa\x20\xcc\x6a\x13\xb9\x40\xd4\x6f\xff\xd8\x7e\x95\x16\x49\x19\xc3\x69\xdc\x65\xf6\xc4\x76\xf9\x2e\x4d\x9d\x0a\x04\xee\xfb\xb6\x68\x93\x15\x9f\x9a\x55\xee\xfb\x96\x99\xdf\x57\x22\xab\x88\x12\x51\xb3\x1f\x0d\x75\x8a\x73\xb2\x0f\x84\x1d\xfd\x17\x1e\x4e\xa7\x94\x28\xa6\x43\x4a\xc9\x7e\x71\x7d\xfa\x2a\x2c\x04\x83\x86\x4a\x0c\x71\xcd\xad\x3f\xf4\x21\x99\x8d\x03\xdf\xb4\x6e\x00\xe3\xf7\x66\xd3\xf7\xa7\x06\xc9\xa3\x13\x43\x4e\x90\xc6\xbb\x23\xa2\xe2\x14\xa5\xfa\x45\xbd\x9b\xec\x22\xf1\x84\x73\x71\x2b\x07\x4e\xde\xea\x2b\xd2\xc5\x61\xee\x09\xd5\x13\xc2\x4e\x3c\x53\x56\x75\xab\x27\x07\x79\xd4\x45\x45\x5e\x2a\x2c\x7d\x7c\x84\x52\x14\xc0\x56\xb7\x14\xc3\x30\x73\xd3\xc7\x29\x0a\x29\xd8\xb6\x01\xae\x7f\xa7\x64\x47\x77\xd0\x62\xbe\x10\xee\x9c\xaf\xed\x9c\x69\x31\x1e\x75\xbd\x3f\x4f\x40\xb6\xb8\x1e\x51\xf4\x4f\xa7\x5e\x4b\xbf\x23\xc8\xc1\x8c\x98\x31\x34\x1f\xc2\xcf\x81\x45\x32\x5c\x5e\x57\x61\x08\x2c\xc9\x8c\x2f\x5e\xe4\x25\xee\x8c\x18\x3a\x99\x39\x30\x5d\x47\x1b\xdd\x1b\x10\xe9\x76\x77\x78\x56\x12\x69\x66\xe5\x81\x93\xf0\xea\x13\x2a\xe2\xcc\xe4\x4d\xd4\x0e\xcd\xca\xd5\x67\xa8\x84\x5b\xb9\x4f\xdb\xd2\xc3\x43\xb5\x77\x85\x8b\x5e\x85\x53\x9f\xd1\x25\x17\xa3\xcc\x65\x62\x51\xc7\xb7\x2f\xd3\x7c\x0c\x1b\xc8\x45\x0e\x29\xf5\x82\x68\xc8\x7e\x54\x71\xf9\x84\x7e\x0c\xfa\xc8\xdf\x1f\x92\x5f\xd5\x42\x65\x0c\x55\xee\xfc\x07\x79\xae\x35\x91\x53\x43\xa4\xc2\xfb\xa4\xeb\xcf\xc9\xde\x9f\x21\x16\x95\x80\x8a\x0a\x89\xea\x94\x4b\x3b\x81\xd1\x93\xbb\x66\xb0\xba\x42\x61\x3e\x85\x07\x9b\xfd\x4f\x25\x0e\x07\xb1\xad\x41\x4f\x76\xcc\x1b\x23\x53\x94\x13\x52\x09\x12\x33\x9e\x9e\x4c\x75\x4c\x3a\x55\xcc\x68\x4b\x46\xd9\x62\xe8\xf8\xce\x33\xfc\xa4\x96\x71\x50\x82\x61\x29\x37\x2f\x1f\xa4\x59\xa9\x97\xb0\x43\xdd\x38\x5a\xc6\x93\xa1\x43\x75\xb5\x64\x14\x70\xe7\x42\x58\xf7\x47\x6a\x6d\x18\x78\x3f\x0a\xd9\xa0\x4b\x26\x8d\x56\x06\x2d\x3e\xc1\xae\x2f\x68\x9e\x1c\x70\x36\x7a\x87\x02\x3a\xa7\x34\xea\xfb\x7a\xb2\xf7\x28\x32\xe1\x3e\x9f\x37\xe4\xba\xd6\x4a\xb7\x18\xd0\xa2\x56\x56\xe3\xa3\x94\xf1\xb0\x85\xa1\x6a\x8e\xef\xf9\xad\x13\xd2\x5b\xf9\x32\x11\xa1\xf5\xf7\x67\x15\x1d\x53\x61\x26\x97\x2f\x84\x5f\x5e\xd4\x4b\xeb\xcf\xdd\x13\xfe\xbe\x4b\x35\x58\xf3\xc5\xac\xfc\x5f\x9e\x6a\xb2\x98\x35\x49\x62\xbc\x98\xfd\xd3\x4b\x9a\x7b\x39\x65\x09\x0c\x07\x9f\x90\xe7\x61\x1a\x7f\x8f\xc2\xd7\x42\xdd\x8c\x0a\xba\x2b\xec\xc5\x8d\x72\xe9\x2c\x77\x3b\x28\xb0\x0a\x72\x49\x37\x0f\x0f\x7a\x2a\x6e\x3d\xdc\xb4\x03\x2d\x91\xd8\x46\xd5\x78\x61\x91\x52\x7a\x63\x87\x70\xff\x4d\xc8\x13\x7d\x4f\xca\xff\xe4\x52\x37\xd6\xcd\x05\x60\xf9\x08\xfd\x05\x07\x1c\x82\x40\xaa\xe5\x9c\xfe\x2d\xea\xcc\x8e\x0f\x15\x81\xf8\x79\x56\xcf\x11\x8d\x04\x07\x7b\xe6\x84\x22\xd4\xa1\x0c\xf0\x0b\xe1\xd0\xfe\xe9\x24\x01\xe3\x1b\x33\xf0\x63\x39\x9e\xec\x25\x72\x16\x48\x05\x6b\x6e\x8b\xd5\x64\x44\x26\x32\x76\xbc\x33\xae\xf5\x53\xfc\xd4\x05\x0e\xda\x38\xb8\x4d\x56\xa3\xd8\xf5\x19\xae\x31\xec\xe2\x80\x45\xd1\x34\x27\x53\x9e\x67\x45\x3f\x9d\x1b\xfa\x86\x10\xf3\x06\xb4\x25\xac\x68\xcf\xdb\xba\x2f\x0f\x72\x2b\x02\x60\x6c\x9c\x7b\x53\xa1\x14\x22\x87\xd8\x04\x45\x7f\xf9\x87\x8f\xeb\x5a\x84\x45\xda\x49\xfc\x6e\xb5\x9c\xcf\xfc\xe8\xe2\x48\xfd\x6c\x75\x4b\x21\xf2\x6b\xb7\xe9\x79\xd4\xab\x51\xd7\xc3\xad\x22\x19\x0e\xdd\x35\x50\xa9\xa9\xb8\xe1\x91\xb1\x65\xa3\xfc\x3a\x4e\x00\xb8\x6a\x08\xf3\xa7\xe6\x6a\xc0\x05\x87\x06\x6e\x7c\x62\x32\xdf\xb9\x8b\x5f\xb4\x6f\x01\x48\x3d\x5f\x08\xfb\x1c\x4e\x50\xae\x0c\x2b\x9c\xac\xcc\x55\x27\x94\x86\x28\x88\xa7\x94\x99\x8f\x69\xfe\x33\x9d\x88\xb9\x00\x24\x17\xc7\xfa\x4b\x17\xe4\xe8\x0a\xf1\x70\xa7\xd7\x63\xd7\x4d\xd2\x35\x57\x6c\xe2\x73\xe4\xb7\x48\xd1\xdb\xf7\xf2\x49\xb9\x67\xc3\x8e\x31\x73\xfa\x45\x45\x87\x42\x0c\xde\xe0\x89\x3d\xfb\x9a\x2e\x9c\x50\x44\x0c\x43\x64\x08\x37\x8c\x6a\xd1\xbe\x69\x83\xf7\x5f\x97\x3e\xa0\xf9\xec\x21\xb3\x2a\x80\x1d\x1f\xf4\x15\x0b\x58\x89\xd9\xde\xc5\x83\xed\xf2\x4e\xe4\x96\x50\xc2\x4b\xbe\x61\x8e\x1e\x31\xb0\x89\x63\x79\x83\x1e\xe3\x3f\x8e\x69\xa0\x79\x8c\x6d\x2f\x36\xf4\xbb\x7f\xee\x00\x05\x4e\xc7\x31\x9a\xa3\x86\xf1\xc1\xfc\x1d\x18\xb9\xf9\x25\x88\x29\xa2\x28\x3d\xc6\x1b\x9a\x1a\xab\x85\x6c\x1b\x10\xfe\x92\xdb\xf0\xb8\xfc\xee\x55\x97\x98\x55\x78\xbf\xf0\xf4\x98\x46\xee\xd4\x10\x47\x28\xb4\x3f\xa4\x9a\x9a\x02\xd0\x26\x5f\x08\xaf\xef\xa7\x4c\xd2\x2d\x86\x84\x95\xc2\xd7\x15\x5a\x6e\xe0\xa2\xc0\xb7\x28\xe3\x48\xca\x9e\x0c\x39\xa4\xf9\xe0\x10\x87\x3b\xc0\x86\xe7\x85\x75\xdc\x0a\x9f\xa1\x4e\xe5\x50\x6d\x78\x3f\x29\x73\xa6\x4e\x9b\x05\x3c\x45\x6d\x52\xcf\xb5\x7c\xc4\x86\xea\x93\xbb\xae\x10\x0d\x4c\x67\x89\xfb\x90\x7d\xdb\x68\x12\xed\xa7\x51\xeb\x27\x0e\xce\x95\xe5\x78\x46\x03\xd1\x96\xcf\x21\x72\x0f\xcf\x4c\x17\xc5\x8a\x7c\x65\xb2\x2e\xf9\xd6\x79\xc5\xb9\x07\xee\xbd\x69\xa3\xa0\xa4\x08\xfe\x18\x1f\x7f\x4d\x45\xe0\x0b\x09\x39\xc3\x9f\xab\x60\xeb\x19\x31\xf3\x28\x5f\x64\x08\xb2\xf1\xc9\xfd\x22\xc4\x80\x82\x0f\x54\x86\x73\x36\xc8\x11\x06\x90\xd4\xe4\x8c\x1e\x96\xa0\x6f\xca\x8f\x28\x63\xd7\xe4\xc2\xe0\x03\x56\xca\xdc\x1b\x14\x9b\x95\x3b\xff\x7a\x3c\xb9\xab\xb3\xb8\xd5\xc0\x3d\x63\xe5\x0b\x53\x25\x8c\x34\xb0\x5b\xa5\xf9\x42\xf8\x93\x7e\xc9\xdb\x4e\x6d\xa2\x80\xdd\x1f\x39\x2e\xcf\xc4\xd4\x59\x51\x83\x06\x09\xfc\x9a\x5c\x13\x24\xc0\xa6\x8d\x24\x74\x19\xe1\x4b\xca\x4a\xc1\x71\x78\x5d\x3c\xf7\x35\x0e\xf5\xa9\x79\x0d\xd3\xa2\xc0\x26\xe3\xe5\x49\xee\xba\xa5\x8a\x3e\x7c\x10\xfd\x3c\x40\xaa\xb7\x0f\x53\x9b\xd2\xe5\xf3\x27\xdf\x1e\xcb\xe4\x2f\xdc\xa2\xca\x69\x33\x80\x54\x47\xbf\xf2\xdd\xd3\x32\x6b\xa0\xd6\x8e\xd6\x7c\x21\xfc\xcb\x41\x5d\x3b\x87\x55\xb0\x20\xb0\x64\xfb\x59\xc9\xb6\x06\xd4\x42\xa2\xef\xfe\xc6\x7b\x43\x9b\x2a\x6c\xee\xa0\xb4\xe9\xac\x86\x74\xd6\xdb\x8e\x53\xe3\x87\x88\xff\x48\x58\x9e\xa1\xd8\x76\xcf\xb8\xfb\xb4\x18\xba\xb9\xb4\x58\xc4\x1c\xf8\x93\xb9\xeb\x95\xf4\xe7\x00\x5a\x1d\xf2\xdc\x6f\x15\xcd\x1d\x52\x42\x16\x84\xe8\xcf\xf5\x4b\x1f\xd6\x2a\x8d\x91\x74\x12\xa2\x72\x97\x26\xf6\x51\x27\xd4\x86\xd3\xc2\xb7\x71\xe1\x06\x3e\x03\xb9\x37\xa0\x50\x0b\x7d\x6d\xa7\xe6\xfe\x60\xc6\x5e\xfe\xc6\x44\x0d\xf3\xe1\x99\x51\x65\x07\x53\x31\xc0\x84\x0c\xd5\xcc\xfa\x3b\x02\xb7\x62\x27\xa2\x05\xd9\xbf\x1f\xe3\x6a\xd4\xf3\x6d\x4a\xa3\x2e\xb4\x79\xce\xf9\xcd\x45\x43\xd5\x99\x5d\x99\x83\xce\xf3\x85\x10\x1f\xd0\x70\xd8\x25\x8e\x38\x14\x49\x71\x9f\xd2\x55\x60\xcf\xc3\x5d\xd1\xbd\xf9\x24\xd3\xd7\xdd\x75\x0a\x95\x2d\xbc\xfd\xb9\x2f\x2c\x4a\x4f\x69\xda\xa7\x8e\xef\x8d\xef\x90\xfd\x8f\xc3\x3c\x9e\x17\x6c\x54\x57\x8a\x8a\xfe\xc5\xab\x95\x9a\x1c\xd9\x7c\xfd\xa9\x6f\x48\xef\x7f\x51\xd3\xb2\x2c\x95\x84\x2f\x4b\x4f\xe6\x2f\xef\x4b\xcd\x00\xa8\x0e\xee\x37\x34\x8d\x2c\xd8\x34\x89\x04\xf1\x86\xa6\x5e\x5a\x43\x36\x55\x25\x00\x36\xae\x1c\xab\x95\x4e\x9e\x8f\x99\x1b\xff\xc8\x8a\x65\x3d\xd9\x0b\x8b\x14\xa2\x36\xb8\xe2\x62\xe8\xd2\xfa\x6f\xd7\x46\x69\x51\xb4\x13\xf6\x5f\xfb\xa7\x0f\x4d\x29\x1e\xa0\x52\x91\x1b\x35\xbc\xb4\x5d\xe3\x28\xf8\x42\x4c\x5d\x04\xd7\xf2\x33\x42\x20\x46\x20\xe6\xe1\x74\x1f\xcd\xa5\xeb\x5c\x1b\x75\x3a\xc0\x17\x17\xa0\x4b\xe3\xb2\xdd\xba\x97\x6b\x43\xac\xf5\x0c\x6b\x8c\x66\x05\x89\xed\x0a\x09\x9c\x18\xc7\x18\x0e\x7f\x51\xcb\xa0\xd4\xb6\xc1\x76\x0e\x10\x8d\xaf\x6a\x42\x1f\x36\x70\x09\xc5\x60\xf6\xda\x53\x32\x6d\x71\x98\x42\xe2\x8b\x68\x7c\x68\x79\xba\xfe\xe8\x40\x38\x5d\x5e\x1a\x7f\xee\xc7\xad\x42\x17\x44\xa7\xaa\x7e\x4e\xd3\xed\x46\xac\x18\xb0\x86\x5a\xe0\xe5\xac\xbe\xb2\x9d\x73\x29\xa3\x25\xea\x28\x59\xaf\xed\x8c\xc6\x92\x41\x15\xab\x84\x4a\x8a\x2c\xbc\xd1\x1d\x6a\x85\xbe\x4d\x3d\x09\x49\x7e\x7a\xae\xec\x46\x5d\x5c\xa1\x3e\x11\xd9\x2b\x7a\x2c\xff\x54\xd3\x4c\x0c\x90\x13\xdb\xb9\xb5\x9e\xd4\xe3\x84\x67\x62\x16\x2b\x4b\x65\xf7\x6a\x04\xdc\xe8\xfd\x24\x31\xf3\x31\x7e\x11\x47\x8c\x50\x24\xb2\xe0\x04\xe5\x86\x14\xd3\x9f\x08\xc2\xf1\x3c\xf1\xef\x9a\xa8\xb1\xe5\xaa\xc4\xb6\xe3\x7e\xe5\xdc\x2c\xc5\x3a\x95\x21\x3f\x88\x1f\x49\x76\xee\x6e\x7e\xb4\x6e\x63\x18\x57\xc5\xd3\x2f\xec\x94\xc9\x82\x16\x3b\x04\x2c\xeb\x83\x7d\x87\x29\xb0\x2b\x87\xba\xc4\x8f\x39\x4f\x47\xfa\x6b\xa8\x33\xe2\x99\x36\x22\x4e\xc2\xc2\xc9\x2d\x69\x51\x8e\x3e\xea\xca\xe3\x2e\xec\x40\x53\x94\xf9\x89\x76\x26\x14\x4e\x17\x2c\xc3\xc2\x5f\x6b\x04\xca\x4e\xea\x96\x60\x0b\x22\xb6\x88\x5f\x9b\x2f\x33\x61\x23\x28\x11\x17\xe5\x0b\xe1\x53\x8f\x0f\x10\x05\x45\x07\x65\x5c\x55\x2e\x14\xb2\x3e\x5e\x8d\x21\xb1\x28\xcb\xd9\x6f\x68\x4b\x06\xf1\xad\x45\x90\xbd\xbe\x89\x81\x68\x26\x43\x36\xa3\x34\x50\x13\x99\xc2\xa8\x8a\x2a\x38\x36\x6f\x19\xdb\xa5\x58\x62\xc2\xae\x17\x32\xcf\x63\xad\x31\x14\x65\x2a\x0c\x7d\xac\x11\xe9\x13\xca\x02\xcf\x4b\x8f\xb6\x73\xde\x32\xb1\x89\x03\x65\xad\xe8\x52\x16\x6f\x4a\xaf\x07\x7d\xd0\x4e\xd7\x93\x55\x6e\xe3\x2b\x43\x44\x4d\xe6\x63\xd7\x23\xe5\x18\x26\xf7\xb9\x9a\xf0\x13\xa4\x2e\x38\x92\xc9\x5a\xf7\x15\x0d\xec\x5f\x41\xdd\x35\x46\x39\xbd\x3d\xa4\x12\x10\x51\x6c\x54\x25\xaa\xa0\xbf\x62\x62\x17\x55\xf4\x9e\xcd\x17\x6f\x85\x1e\xe3\xf0\x01\x6d\xc3\x4a\xec\xd8\xe1\xec\x9d\x89\xb2\xec\x63\xd8\x23\x9e\xae\x73\xd2\x93\xbd\xbd\x5b\x97\x57\x72\x51\x12\xc4\xb3\xdf\xdd\xa9\x91\x01\x8b\x31\x1a\x48\x24\xf9\xf6\x2d\x43\xb5\x5b\xcb\xf7\xd2\xe1\x92\x07\x35\xe0\x71\xe0\x07\x1e\x77\xb9\xce\xdc\xb0\x39\xdd\xbb\xdc\x38\x53\x44\x82\xaf\xbd\xa5\xa9\xf5\xdb\xc8\x13\xbb\xf7\xf0\x2b\xc2\xb7\xc2\xb7\x48\xac\x55\x0d\x48\x95\xb7\x75\x91\x6c\x1a\x14\x6d\x1c\x4f\x76\x72\x5f\x18\xa7\x8d\xea\x02\xe6\x8a\x38\x1a\xfe\xf2\xd5\xe4\x66\x23\xcf\x53\x15\xeb\x76\x34\xb9\xc6\xb9\x02\xd3\x7e\xf1\x99\x26\xe5\x11\xb0\x41\x81\x85\x6e\xae\xe3\xb4\x62\xe0\x4b\x1c\x9c\xb7\x01\x25\x6f\xcc\x7a\x52\x01\x50\xd8\xd8\xe1\xcb\x81\x70\x7f\x87\x56\x9f\xf8\x2c\x30\xfd\x40\x88\xa3\x87\x3f\xe8\xab\x03\x94\xb9\xcf\x9a\xe0\x04\x6b\xf9\xa3\x86\x59\xf4\x84\xf9\x8b\xf3\xb3\x7d\xda\x65\x53\xcf\x8b\xd3\x47\x2e\x33\x86\xbf\x1f\x15\x30\xef\xeb\xc9\x8c\x69\xd1\xba\x94\x29\x33\x67\xb5\xc5\x4f\xf8\xff\xdb\xa8\xdb\x0b\x3a\x98\xdf\x0a\xcb\x1a\xab\x47\x24\xb0\xc7\x4d\xd4\x76\x7b\x72\x97\xed\x6a\xa2\x07\xd1\x4e\x41\x99\xcb\xdd\x7f\x34\x7d\x0c\x68\xb9\x0c\xb0\xbf\x13\xef\x0d\x4e\xfd\xfb\xf5\xf0\xaf\x0b\x6e\x92\xf3\x8f\x0a\x65\xaa\x9a\xb5\xb1\x61\x66\x3a\xd4\x07\xae\x89\x99\x8f\x88\x0b\x21\x4e\x10\xf3\x7f\xd3\x47\xc6\x30\xe2\x7a\x98\x5b\x79\x8c\x13\xc7\xea\x4e\xc4\xb0\x1d\x8b\x01\x87\x3f\x52\xf8\x53\x2e\x46\x4c\x10\x07\x86\x6c\x97\xa2\xd6\x35\xec\x33\x6a\xe3\xc0\x69\x5a\xe9\x8c\x3a\xa1\x25\x1e\xd9\x29\x78\x24\x56\x7e\xb8\xce\xba\x3c\x71\x32\xc8\x17\xc2\xfc\x2b\xca\x01\x01\xfd\x3b\xd0\xda\x3a\x7c\xb1\xc9\x02\x0e\x97\xe0\x76\x98\x73\x14\x8b\x9b\x80\x11\x75\x9c\x68\xbc\xb3\x55\xde\xab\x7b\x03\x8c\x55\x27\xaa\xfc\x76\x09\x05\xe0\xda\x12\xfa\xf7\x7f\xf4\x1d\x6d\xbd\x8b\x4a\x95\x04\xfe\xba\x5a\x93\x1b\x2a\xd1\x4e\xd7\xa7\x9d\x51\xaf\x09\x2f\x77\xee\xae\xbb\x14\x99\x0a\xc4\x50\x89\x54\x00\xa7\xfa\x37\x6d\x00\xeb\x60\x3e\xda\x85\xfd\xf4\xf9\x05\x0a\x1c\x51\x0c\x6d\xa1\x9a\xb9\xee\x5d\x5d\x8a\xd3\xc4\xae\x6f\x73\x00\xfc\xae\x7e\xfa\xa8\x3d\x4e\x85\x1f\xab\x2b\x63\x53\xb8\x9d\x7c\x93\x30\x5a\x91\x7f\xc6\x5d\xa9\xdd\xd3\x3d\x0b\x92\x65\x0b\x45\xd5\x18\x10\xf4\xb3\xe3\x69\x79\x15\x2f\xb0\x10\xf3\xa9\xa6\xf5\xf1\xb3\x76\x31\x42\xc1\x29\x72\xe3\xf1\x37\x79\xde\xbf\xc5\xe2\x8e\xb2\xf0\x17\x7f\x7e\x41\x1f\x34\x22\x5f\xd8\x10\x64\x7f\xb8\x3f\x96\x80\x20\x15\x30\x09\x09\xf7\xef\x13\xc2\x2d\x98\xb2\x0a\xbe\xce\x13\x7f\xc5\xf8\xde\x9e\xab\xf5\xc8\x41\x6a\xa2\xce\x4b\xe0\xa6\x6f\x3f\xd0\x64\xdf\xe6\x5b\x62\x16\x84\x2c\x3e\x7c\xf0\xa8\x98\x9b\x3c\x77\x50\x78\xf4\x7a\x1e\xf6\x79\xed\x75\xfa\x80\x68\xf8\x90\x8f\x6d\x8e\xb2\x08\x5d\xcd\x57\x50\x40\x47\x93\xed\xcd\x7b\x43\xd5\x66\xac\x16\xd8\xc2\x9c\x3d\xb7\xe2\x81\xab\xb5\xee\xc6\xe4\xd8\x2f\x30\x6c\xae\x08\xd5\xc4\xe1\x27\xf5\xbe\x09\x01\x78\x84\xb3\x0a\x5e\xdc\xd2\x1c\xcc\x13\xe0\x63\xe6\x2e\xc5\x86\x3e\x19\x63\xd9\x0f\xcb\xc9\xfd\x8d\x37\xb6\xce\xba\x31\x7a\xd6\x5f\xd6\x9c\x88\x48\x1d\xb9\xa9\x82\x20\xfc\xec\xac\xf4\xd1\x0a\x6a\xe2\x68\x19\xd3\x36\x5d\x53\x4b\xa9\xc6\xb2\x3a\x48\x85\x36\xa1\x93\xae\xea\x2b\x3f\x99\x76\xa3\x2a\x38\x63\xdf\x37\x51\x59\x24\x20\xb7\x03\x2a\xc7\x7f\x2c\xd2\xc9\x69\x38\x81\x0d\xac\x39\x25\x09\xfc\x81\x3a\xc1\x3c\x2c\x71\x9e\xb8\x11\x3d\x99\x47\xd8\x90\xd4\x5f\x99\xc3\x51\xe9\x3f\x9d\x30\x56\x4f\x13\x89\xad\xb7\x30\x03\xfb\xfb\xf8\x91\xca\xdb\xe2\x21\xcf\x52\x45\xa4\xef\xbf\x6f\x92\xf6\x0a\xc6\xb8\x94\x5e\x81\x06\x37\x29\xc8\x4a\x86\x8b\x01\xb1\xa3\xd3\x35\x45\x31\xc0\x29\x61\x64\x47\xe9\xf7\xde\x37\xb9\x2b\x8d\x13\x55\xe4\x88\x35\xf2\xc4\x2d\x05\xd1\x41\xe6\xf6\x56\xe7\x0f\xf6\x57\x06\x52\x50\x4a\xde\xe3\xf3\x01\xd8\xed\x1e\x43\xc0\x7f\x85\x36\xf1\xf4\x44\x6d\xa3\x8f\x3d\x3f\x76\x42\x1e\x2a\x94\x6d\x97\x21\x08\x90\x70\x24\xfe\x9c\x53\xe4\xcf\xb9\x61\x94\xd0\xc1\x5d\x3b\x46\xb7\x1f\x8f\x37\xf9\x5c\xb5\xb4\x67\x71\x9c\x38\x6d\xf0\x5c\xd8\xbe\x6e\x80\xb8\x4e\x40\xf5\x41\xcb\xf8\xa3\x9a\xbe\x1a\xf1\x60\x33\xe6\x0b\x21\xbb\xcc\xbb\xc7\xe4\x11\xb0\x29\xe0\x51\xc3\xb7\x5e\x13\x04\x5e\xb8\xb3\xf9\x42\xd8\x27\x4c\x9f\xbf\x1a\xf5\xb8\x1d\x5f\x76\xfc\x5d\xda\x5c\x16\x99\x51\x49\x2c\xe6\xb2\xd9\xcc\xf2\xf4\xd3\x32\xa9\x5b\xc6\x4c\xf0\x04\x9b\x86\x05\xc6\xbc\x67\xf8\x07\x2f\xc3\x94\x33\xcd\x6f\x78\x4b\x6b\x93\x89\x70\x3f\x13\x80\x82\x85\x4f\x28\x18\x27\x1a\x63\xa1\xb3\x2f\x6e\xe0\x71\x0a\x56\x38\x42\x5c\x26\xba\x63\x05\x8d\x69\x28\xcc\x9c\xc4\xe1\x5e\xbd\x4c\xd7\x48\xad\x08\xce\x7e\x38\x78\xbc\x3c\x30\x55\x8c\x38\x98\x70\xee\x32\xcd\x4e\xc3\xb4\x02\xbb\x8c\x59\x3a\x1c\xe7\x16\x4f\xd7\x37\x1d\xd8\xac\x8a\x36\x2d\x77\x43\x97\x56\x7e\x47\x4f\x2e\xf6\x45\xcd\xe2\x33\xe9\x84\x0b\x05\x28\x9f\x9b\x6d\x5c\x28\xcf\xe3\x74\xd8\x00\x66\xc8\x1a\x2d\x96\x03\xf7\x99\x3f\xe6\x13\xcb\xf9\xbc\xfb\x36\xd4\x0b\x3e\x6e\xf3\x04\xe5\x08\xda\xb0\x6e\x14\x87\xf3\x67\xca\x44\xba\x4c\x18\x2e\x52\xa7\x28\x8c\x30\x73\x97\x6c\x48\x83\x7d\x3a\x70\x19\xf5\xfa\x0e\x9e\x75\x35\xad\x02\x6e\xd3\x16\x3f\xc3\x1b\x1f\xd0\x2c\x54\x60\x09\xde\xe0\x09\x3c\x3b\xef\xc9\x64\xcc\xd3\x69\x45\xb5\x49\xff\x4d\x0a\x98\x4f\x2d\x6a\x77\x0f\x55\x22\x21\xf7\x7a\xe3\x58\xae\x4f\x0e\x54\x30\x93\xaa\x37\xd9\xc0\x6b\x9b\x9b\x0d\xdc\x8b\x69\x84\xf1\x52\x1f\xc5\x14\x32\xaa\xf5\xe1\xdd\xfa\xfe\xba\x2b\x24\x78\x39\x6a\xd2\x86\x9e\x51\x2c\x9c\xa9\x43\x3d\xdc\xc5\xa1\xc9\xd9\x7f\x0f\x05\x34\x19\xb3\x0a\x6e\x60\x65\x12\x96\xf9\xd9\xe0\x81\x4a\x25\xe9\xfb\x04\x2a\xd5\x89\x72\x65\x81\xbd\x1a\x8c\xb3\xfb\xec\x93\xe2\xa2\x82\x92\xdd\xd4\x3f\x5d\xbe\x59\x95\xc9\xae\x5a\xb0\x07\x0e\xb7\x95\x95\xfa\x91\xd6\xb1\xcd\x19\xa9\x3b\x6a\xb2\x2e\xab\xa3\x12\x91\x63\x94\x70\xc8\x25\x3c\xb4\x2d\x24\x65\xdf\xca\x7b\x98\x43\x61\xf3\x23\x9a\x5c\xc6\x63\x3f\x9b\xf0\x85\x4d\xbd\x91\x78\x45\x9a\xca\xe4\x0f\xf4\xd2\x4a\xc5\xad\xc3\x1f\x0e\x2b\xe6\x4e\xc8\xae\x46\x21\xe8\x7f\x69\x58\x40\x80\x98\x25\xc2\x7a\xb9\x87\x57\x8b\xa9\x62\x59\x55\x17\x7b\x5f\xfb\xa5\x4e\x00\x54\x27\x22\xd0\x5b\x9f\x9c\xa0\x05\xa3\xc0\x35\x89\xcd\x6d\xe3\xd3\xd9\x72\xe1\x45\xc5\xfb\x15\x91\xf8\xc4\x7c\xfe\xe5\x2b\xb5\xbf\x00\x26\x7c\x20\x80\xc7\x7b\xdc\xbb\x9f\x6c\x62\x10\x71\x8f\x85\xee\xe8\x4a\x7f\xf5\x78\xca\xc3\x2f\x4a\xac\x02\xc1\xf7\xad\xa7\xf4\x89\x3a\xf6\x13\x39\xf0\xd9\xe7\x54\xf0\x0b\xf1\x61\xef\x0e\xb9\xb2\x74\x51\x10\x02\xbb\xb0\x19\x40\xde\x2f\x84\x2d\x0b\xb4\xb5\x4d\xc0\x4a\x98\x61\xc6\x59\x92\x4b\xdf\xe3\x4f\x76\x39\x2d\x12\x3f\xf0\x3c\x1e\xa7\x97\x6a\x4c\x83\x28\x29\xc6\xce\x10\xd9\x91\x6b\xe5\x02\xa0\x13\x31\x00\xa2\xd4\xcb\xe9\x3c\xde\x45\x82\xae\x00\xa7\x70\x95\xe8\xb8\x62\x27\xcc\x61\x0f\xdf\x59\x36\x5c\x01\xe2\xda\x6a\x75\xf8\xfc\x62\x4d\xd2\xc5\xc2\xff\x3f\x5f\xef\x1f\x6f\x45\x55\xef\x8d\xbb\x7f\x64\x5c\x02\xe4\xb7\x87\x23\x22\x22\x22\xe2\xd9\xc7\x73\x0e\x87\x9f\xa9\x21\x12\x22\x21\x9b\x90\x90\xd4\x8c\xb5\x67\xd6\xde\x7b\x9d\x3d\x33\x6b\xb3\x66\x66\x9f\x1f\xd7\x6b\x44\x64\x44\x84\x64\x46\xe4\xe5\x21\x33\x22\x22\x43\x33\x32\x2f\x59\x97\x87\xc7\xcc\x78\xc8\xc8\x0c\x49\x79\xd4\x4b\x5c\x1e\x2e\x19\x21\xd7\x7c\xbc\xc6\x99\xbe\xaf\xf9\xac\x35\xb3\xd6\xac\x39\xf7\xfb\xcf\xbd\xaf\x10\xce\xd9\x7b\x66\xad\xcf\xcf\xf7\x0f\xe4\x31\xf1\x58\xf3\x1f\xda\xad\x4f\x29\x6c\xe5\xc5\x76\x1f\x93\x6f\xab\x17\x39\x35\xcc\x07\x5d\xbf\xde\x90\xd2\xff\xf3\x44\x2b\x0e\x75\x6b\xf0\xa3\x91\x72\xf7\x80\x5c\x0b\xd5\xaa\xc8\x49\x88\xe2\xff\x8d\x29\x7c\x0d\x68\xe0\xf8\x39\x40\x8f\x29\xa2\x22\x08\xc2\x61\xc6\xdd\x9b\x1c\x5d\x56\x11\x63\xbd\x1a\x64\xf1\x13\x0d\x85\x3f\x0a\xaf\x25\x3c\xeb\xcd\xf7\x6b\xaa\xdd\xb4\x24\x00\x40\x3f\x98\x19\x83\xed\x90\x9d\x0a\xac\xf9\xc5\x13\xc7\x29\x6b\x63\x8f\x3a\xd4\xa6\x7e\xe4\x9a\x74\xab\x06\xe2\x37\x85\xc1\xbb\x00\xaf\x9d\x5a\x20\xcf\x14\x75\x70\xc1\x22\x8e\x10\x1e\xbd\xb0\xad\x49\xef\xf2\x62\xd7\xaa\xdc\x8f\x6e\x68\x56\xc3\x71\x8a\x6d\xf6\x72\x02\x20\x0b\x00\x65\x41\xb9\x99\x78\x28\x6d\x1a\xd3\x1b\xe9\x76\xde\xf8\x82\xd6\xc7\x11\x17\xac\x87\x1b\xe2\x00\x64\xc6\xad\xd3\x9e\x11\x8a\x06\xdb\xdf\x5d\xa0\x58\xb6\x61\xd0\xb7\xcf\x76\xbf\x2e\xf2\x3f\xb5\xeb\xd8\x8b\xbb\xaa\xcc\x8f\x8f\xe8\xc0\x12\x1c\xcd\xce\x33\x87\x34\xab\x8e\x32\x65\x18\x31\xa1\x4c\x9e\xfd\xd0\x4b\xf2\x30\xb7\xcf\x99\x3d\xa7\x50\x0c\xbe\x72\x42\x26\x85\xaa\xcf\x04\x0d\xeb\x7f\xbd\x27\x15\x29\x68\x1d\xb3\x68\x78\x2c\x3a\xb8\xe5\x6b\x79\x8d\x56\x61\xd4\xaf\x8b\x19\xf9\xb0\x47\xb9\x38\x7f\x47\x7b\x47\xa1\x18\x0c\xd6\x04\x33\x2c\x18\xb3\x88\x08\x92\x3d\x3b\x4f\x57\xac\x8c\x44\x14\xa3\x47\x79\xa1\x1c\x27\xcc\x06\x86\x3a\x65\x6e\x73\xb3\xc8\xfd\xb6\x8b\x6a\x55\x9f\x99\x2a\xb4\x30\x73\xeb\x43\x12\x45\x00\x58\xc4\x94\xc2\x60\x76\x4f\xa7\x9c\x89\x57\x31\x32\x85\x6e\x24\x74\x6a\xf7\x1d\x14\x4e\xf5\x8c\xeb\x4b\x64\xff\xb6\x55\x9b\xc0\xfb\x6e\x35\xe9\x49\x9b\x1f\xd9\xa9\x24\x4a\x52\xa9\x16\xdc\x3a\x4f\x31\xb9\xcc\x30\x7d\xcd\x6d\x8a\xf1\xd3\xdd\x47\x92\xe7\xd9\xc1\xdd\x6e\x1d\xd5\xc5\xda\x31\xf8\xfe\xc4\xcb\x55\xf1\x3b\x3b\xcd\xbb\x7f\x5a\x11\x0b\x10\x54\x61\x38\x14\xdf\x5e\x2d\x8f\x74\x39\x35\x7f\xc8\xfe\xee\x3c\xaf\xb2\x29\x57\xdb\x1e\x3e\x3b\xf9\x01\x6b\x0e\x8d\x14\xde\x3f\xfb\x26\x4f\x4a\xf3\x7d\x66\x63\xc9\x66\x3a\xbf\x67\x48\x74\x38\x21\x3e\x67\x4f\x8e\x4e\x34\xa5\xd8\x12\x55\xeb\x0d\x2d\x29\xe3\x6b\x8f\x51\xb1\x40\xc8\x90\xed\xca\xb0\x40\xf3\x84\xbc\x78\x60\xf5\x06\x90\x3f\x3c\xb0\x3d\xd9\xe9\x72\xab\x21\x9d\x2a\x37\x57\x6a\x16\xd4\xd2\x12\xc3\xf9\x21\xcb\x15\x0d\x45\x86\x9c\x4a\xf8\x45\x1e\xd0\xcc\x01\xdc\x35\x3e\xc6\x7d\x61\xd6\xe2\x49\xff\x27\xc7\xf9\x93\x5b\x80\xf8\x72\x76\xe5\x42\xf8\xdf\x16\x76\x0a\xed\x85\xe2\xaa\xcb\xf4\xcf\xcc\x0d\xfa\x05\x46\xe0\xe8\x96\x78\x22\x05\xde\x5a\x6d\xe7\x93\xa9\x13\x79\x86\x10\x37\x78\xe2\xd5\x18\x65\x8f\x60\xcf\xce\xdb\x30\x53\xd3\x27\xe1\x43\x8c\xc8\xe1\x65\x5f\x47\xf2\x35\xb6\xb7\xce\xea\x14\x1c\x8c\xef\x9f\xd7\x25\x7d\x70\x1d\x4c\x97\x45\xcb\xfd\x97\x4d\x3c\xe7\x16\x1b\x98\x39\x84\xab\x4f\xe6\x2f\x3f\x29\xb1\xda\x16\x71\x1d\x62\x54\x7d\xc5\x90\xe4\xf7\x9b\x92\xb5\xb2\x81\x1c\x64\x22\xc0\x94\x24\x4f\xdb\xb4\x43\xb2\x16\x6a\xe1\xdf\x25\x58\xa9\x95\x56\x0d\x1c\x56\x00\xc2\x28\x37\xf3\xdb\xa5\x57\xa8\x13\x80\xf0\xc4\xa4\x7e\xea\xaf\x18\x1f\xff\x2f\xe7\x36\x39\xca\x4d\xac\x8e\x4e\x59\x24\x9b\xb1\x51\xc3\x15\xf7\x88\x60\xe5\x13\x33\x32\x01\x1c\x75\x48\xd7\xfc\xaf\x10\x27\xa2\xbc\xe5\xfb\x0e\x0a\x05\x67\xdf\x30\xb0\xeb\x96\x7d\x0b\x62\xf4\xa9\x99\xfa\x6c\x95\x9f\xcd\xcf\xec\x90\x90\xe2\x6a\xe4\x43\x32\xe9\x78\x32\x17\xc4\xa4\xe8\x88\x2a\x35\x63\x1f\x3f\x57\x46\x15\x03\xf3\xf0\x17\x8f\xe8\x98\x2e\xcf\x67\xb1\x1c\x4a\xb0\x70\x92\x4c\xba\x1e\x76\x10\x47\xc2\x67\x3e\xfe\xc8\x78\x65\xcc\x40\xd2\x78\xc0\xd7\x06\x5d\xd2\x1d\x2d\x38\x4c\x06\xba\xea\xb9\x33\xbb\xb4\x96\xc1\xf3\x4d\x22\xf8\x24\xc9\x7f\xbd\x45\xef\x5c\x5d\x0f\x33\x4a\x4c\xd1\x90\xe5\xbe\x20\xc3\x34\xb6\xc3\xbe\xe6\xfe\x53\xca\xf6\x88\x5a\x26\xe1\x9c\xa3\x5f\x1e\xd1\x9e\xc6\x1a\x9f\x34\x10\xd8\x46\xf0\x45\xdf\xa5\x1b\xb4\x05\x21\x46\x4c\xac\x24\x47\xde\xa3\x08\x83\x8b\x6c\x93\x6b\x30\x39\x71\xed\xab\x12\x46\x1c\xda\x70\x6b\x0a\x45\xf0\xdf\x5f\x4f\x16\x32\xb1\x4e\x9f\x54\x61\xcf\xdd\x7d\x50\x1b\x59\x79\xc8\xe2\x6a\x63\x51\xf9\xb1\xe9\x18\x47\xe1\xdf\x8e\x3d\x46\x01\x75\x96\x14\x35\xc8\x96\x9b\xc4\x38\x0f\xcc\xed\x44\xab\xf6\x9f\x67\x55\x9b\x01\x4f\xe1\xc9\xe7\x5b\x5e\x4e\x11\x02\x1c\x51\x95\x64\xbf\x37\x35\xc5\x37\xaa\x63\x0f\x3b\x46\x2f\xaf\xa3\xbc\x8d\xca\xb3\x35\xaa\x94\xf2\x7d\xfa\xed\x87\x64\x77\x2b\x80\x71\xa4\x4f\x94\x78\xff\xfa\xce\xd8\x04\xb7\x8d\x13\xd4\x20\x5f\x4f\x79\x34\x8e\x95\x16\x4e\x6b\x6b\xdd\xf3\xa6\xc4\x03\xd1\x6e\x27\x76\x56\xc8\x9e\x79\x88\x1f\xa8\x32\xc6\x66\xc4\xfa\x59\x7d\x40\x8a\xb0\xcc\x4d\x1d\xa2\xcf\xbd\x3a\x42\x59\xc0\x12\x28\xfa\x83\xd5\x9a\xdd\xbf\x57\x05\x5d\xa5\x30\xaa\x5d\xd6\x32\x26\xfc\x93\xc5\x8b\x53\x3f\xe9\xba\x27\x75\x1e\x94\x1d\x76\x1f\x11\x56\x39\xfc\x28\xff\xe3\x1c\x2f\x43\x0c\x14\xfe\xa8\xcd\x0f\x2b\x67\x67\x8d\x8f\x00\x35\xd7\xff\x50\xb3\x32\x2c\x2a\x95\x60\xbd\x28\x2b\xfe\x1b\x37\x26\x67\x7e\xab\xc5\x74\xf7\xea\x92\xd6\x78\x85\x4f\x9a\xb2\x7a\xda\xa1\x3c\x37\x54\xc8\x95\xda\x98\x09\xd1\x99\x8b\x87\xa7\x36\xb2\x2c\x9e\xff\x17\x8e\x24\x97\x1b\xdd\xc8\xad\x12\xa7\xe2\x71\x3e\x6a\x34\xc4\x38\xad\x41\x5c\x19\xf6\x13\x56\x61\xf9\xa9\x42\xb1\xce\x43\x46\x0d\xe6\x4e\x33\x0e\x8e\x53\x26\x22\xd8\xc6\x2a\xf1\x26\xf7\xdb\xd3\x9a\xc1\x97\xcf\x4a\x91\x93\x0b\x1c\x63\x6b\x4f\xf2\x63\x45\x32\xe8\x4c\x21\x95\xe7\x37\x31\x6d\x0d\xee\x38\xc2\x50\x34\xaa\xcc\x7e\x61\xca\xf3\xe9\x62\x6c\xab\x25\xd4\xa6\x15\x63\x95\x9e\x10\xa8\xdd\x8e\xd0\x3f\xdd\x7c\x4a\x5b\x0a\xfa\xb6\x1d\x91\x56\xfa\x33\xfd\xc7\xf8\x28\xa2\x84\x2d\xaf\xe0\x81\x33\x6e\x24\xa8\x75\x66\x83\xae\xec\x5e\xa7\xd1\x3c\x7b\x78\x8b\x30\xe1\xc5\x08\xcc\x0d\xb9\xec\xdb\x51\x1d\x49\x81\x51\xc4\x56\x0c\x86\x2d\x8d\xf1\x6f\xae\xa2\x89\x16\x7c\xaf\x4b\xca\x2f\x19\xd4\xa9\x80\x50\xa9\x7e\x89\xe6\xaf\x14\xe1\x83\x18\x55\x52\x41\x69\x4e\xf6\x9a\xa6\xe1\xca\x34\x84\x0b\x3b\xe6\xbc\x87\x55\xb7\xf9\x32\x22\x2c\xa6\x64\x74\xdc\xab\x48\x34\x20\x13\x55\x90\x6b\x70\x5b\x0c\xeb\x65\x81\x1c\x04\x5a\x09\xe4\x86\x23\x2a\x1f\xdf\x12\xd8\x81\xa0\x73\xb5\xe2\x6a\xdd\xe3\x31\xe4\x88\x0d\xff\xbf\xee\x1d\x21\xdd\xf5\x22\x66\xcc\x9f\x7a\x86\x8b\x12\x8f\x38\x61\xf4\xb4\x0a\xc5\xa0\xd4\x22\x7f\x6e\x0d\xbb\xae\xc5\x15\x14\xfe\xa2\x48\xc7\xc0\x26\x11\x3e\xb1\xae\x9c\xe7\xd6\x7d\xcf\x21\x35\xb1\xae\xf4\x35\xc2\x8f\xe1\xd7\xc5\x3d\xce\x2e\xd5\x71\x84\x42\xa7\x44\x6c\xa3\xd6\xe7\x15\xe6\x9b\xeb\x62\xd7\xb5\x39\x28\x36\xb3\xe3\x2d\x7d\x12\x47\x3c\x82\x2c\x0e\x4f\xcb\xad\x1e\xae\xf1\x5e\x1c\x8f\xa0\x12\x8f\x8b\x02\xe4\x72\xeb\x05\xd9\x2f\xf7\x22\x66\xfb\x56\x0d\x3a\x90\xcd\xad\x4a\xdf\x0b\x99\x30\xec\x7b\x0b\x0b\x14\x97\x36\x41\xc1\x8b\xfa\xa4\x0f\x1f\x90\xe1\xa7\x62\xf9\xbc\x40\xfe\xe0\x33\xf1\xc0\x6d\xd6\x1c\xc0\x52\x7c\x76\x21\x0f\xa9\x4b\x7c\xc7\xa8\x96\x28\xd0\x48\xcd\x2e\x45\x7e\xab\x9a\xaa\xe7\x0f\x1c\x53\x25\x68\xc1\x4c\x37\x0a\xd0\x3f\x9c\xad\x83\x8c\x69\x17\x36\x22\xba\x7d\x6e\xab\x36\x84\xb0\x50\x83\xb8\xd5\xe8\xce\x7f\xde\x12\x98\x0d\xd9\xd7\xaf\xd3\x74\x36\x60\x5b\x28\x94\x4b\x72\x7b\x9b\x94\xb1\x1f\x35\x63\xbd\x2f\x28\x33\x14\x74\x5c\x64\xbb\x9b\xbe\x23\xfb\x4c\x1e\xb5\x4c\xf8\xb9\xa0\xd0\x31\x56\x91\xb5\xa0\xc2\x8a\xe3\xc4\xd4\x0f\xc5\x95\x06\x88\x81\xad\x50\xc4\xc0\x5c\xbe\x79\x0e\xd0\xd9\xe1\xea\x8e\xd6\x87\xbf\xf9\x83\x89\x4a\x87\x8b\x18\xc0\x82\x83\xa6\xa7\x95\xeb\x1b\x56\x85\x16\x64\xb8\xe4\xed\x74\x5f\xe2\x87\x9f\x85\xf1\x85\xb3\x13\xfa\x73\x1f\x1d\x7e\xad\xf6\x78\x89\x8d\x5d\x0f\x31\x51\x36\x24\xbf\xdd\xe4\x91\x2a\x45\x94\xa9\x46\x11\xd9\x3b\xa5\x19\x3d\x03\x39\xe3\xc9\xca\xc2\xda\x40\x0c\x5c\xad\xc2\x5f\xf9\x0f\xf3\x75\x54\x02\xad\x5b\x58\x98\x9b\x91\xe7\x64\x90\xe7\xb2\x5d\x25\x86\x61\xfd\x07\xac\xa1\x12\x2f\x65\x6d\xea\x40\xfd\xc2\x71\xd8\xf9\x4f\x3f\xac\x01\x10\x22\x7a\x45\x70\xa8\x21\xfb\xba\xb2\x45\xbb\x71\x24\xe3\x51\xd9\xf5\xa1\xe8\x83\x85\xf9\xfb\x89\x1d\x63\xb4\x9c\xd5\x2b\x90\x10\x17\x4d\xe1\xbf\x32\x42\x7e\x0b\xc8\x52\xb1\xae\x78\xce\x30\x8c\x60\x81\xbd\x7a\xbc\x7c\x61\xdd\xa8\x17\x36\x12\x99\x7b\x34\xfa\xa6\x43\x5d\xda\x50\x3d\xd1\x83\x0d\x65\x21\x07\x4d\x58\xc2\x51\xa9\xf5\x88\xa2\x7d\x88\x85\xa6\x47\xe6\x92\xc9\xa3\xd5\x03\x50\x70\xab\xb8\x4c\xc2\xdf\x5e\x5b\xac\x10\x16\x1a\xd8\x01\x47\xa0\xe0\xac\xa6\x42\xee\x7a\x88\x17\x60\x99\xab\x47\xc6\x3d\x36\x1e\x00\xf6\x73\xf5\x3d\x43\x62\x0d\x45\x50\xc0\xfd\xc6\x03\x49\x74\xa9\x98\x65\x83\xad\x45\x9f\x2c\x55\xff\xed\x21\xde\xd7\xdc\x01\xdd\xa0\x7a\x42\x0e\x2e\x51\xc0\xd2\x56\x98\x1b\x21\x34\x68\x38\xc6\x2a\xa9\x54\x65\x66\x5c\xbf\x29\xa2\x70\x1b\xcc\xe7\xdc\x9e\xfc\x96\x86\x34\x33\xf4\x53\xe7\x3c\x73\x8f\x66\x51\xda\x20\xb8\x5b\xa8\x9e\xe4\xec\x29\x4a\xf1\x56\x17\x1a\x06\xb9\x2f\xed\x89\x63\x3d\xb6\xa2\x96\xe7\x60\xcb\x08\x79\x29\x62\xcb\xa5\xd7\x36\x48\xf4\x15\xf2\x94\xca\xa1\x63\xc9\x70\x51\x97\x36\x30\x73\xb9\x33\x51\xd6\x1c\x9c\x82\x8f\xfb\x02\x53\x17\x46\x81\x67\xce\xab\x9a\xc2\x20\x48\xcd\x07\x56\x95\xb1\xc9\x62\x46\x20\x38\x41\x56\x1f\x2e\x42\xef\x06\x0d\x39\x8a\x58\x05\x81\xbd\xa2\x98\x79\xaf\x28\x2b\x63\x48\x10\xfe\x53\xa5\x2f\xee\x79\x56\x6b\x18\x7b\xb8\x11\x05\xe7\x87\x7c\xe0\x3d\x1d\x3c\xeb\xd4\xc4\x03\xcc\xfe\xa8\x83\xdf\x9b\xd6\xe9\x73\x66\x82\x9a\xde\x21\xad\x15\x8a\x54\xf0\xa2\x17\x58\x7f\x5e\xc7\xf7\x60\xe9\x6a\x7f\xd3\x69\x9d\xbe\xe2\xbb\x62\x46\xd2\x9f\xf9\xeb\x11\x1d\x15\x48\xbd\x6a\x84\x47\xec\xcf\x3a\xeb\x46\xab\x90\xd3\x6e\x5c\x21\x28\x2c\x71\xfe\x6b\xab\x1c\x3a\xc1\xe8\x2c\x55\x77\x4f\xdc\x3c\x42\xc5\x9f\x78\x7c\x12\xf2\x50\x20\x2f\xaf\x27\x1c\xc4\xf2\xe8\x9c\xaa\x8d\x17\xaf\xaa\x07\xab\x2a\x0e\xd4\x31\xb8\xfc\x2a\xbd\xa0\x2a\x11\xa2\xa8\x82\x9b\x3e\x9c\x5f\xef\xf9\x3e\x73\xd4\xf5\xfc\x8b\xef\xcb\x8f\xe1\xb4\x92\x56\x50\x58\xc9\xfd\x48\x53\x1e\xed\xf3\x19\x31\xaa\xb1\xfe\xd7\x3f\xbd\x94\xbc\x84\x5c\xcb\x2d\xda\xb3\xc7\x93\xfb\xd5\xf3\xe3\x3a\x8f\xe3\x77\xc4\xe5\x7c\xf0\x88\x64\x8a\x5b\x29\xa6\x78\x6e\xd9\x7d\x43\x25\xdc\x0d\xf6\x51\x3b\x34\x5c\xa8\x6b\x21\x3f\x2c\x4f\x59\x0c\x81\xbf\x7f\xfb\x50\xe9\xd3\x12\xbe\x80\xf1\xcf\x6b\x00\x0d\xd7\x45\xae\x4b\x1c\xd8\x90\x07\xcf\xbc\xd5\x2c\x5d\x05\xd2\x82\x2d\x83\x03\x6d\x29\x45\xc3\xcc\x2d\x3a\x8b\xe9\xcd\x09\xe6\x70\x3d\x8c\xf0\x57\x28\xe9\xd5\x43\x35\xec\x84\xbf\x64\xc9\xba\x84\x89\x33\x57\xdd\x6a\x3b\x9a\xa2\x99\x61\xc4\x8c\x6a\xf4\x45\x1e\x78\x5d\xfa\xd8\xa0\x94\xee\xee\xac\x7c\xfc\x44\x7d\x62\x2a\xc8\xb2\xaf\x5e\x2c\xe7\xb0\x26\x71\x41\x60\xdb\x8c\x40\x38\x7f\x78\x6b\x74\x42\x9c\x42\x68\x24\x06\x9b\xee\xd7\x75\x8a\x04\xac\x8f\x8f\x79\x82\x1f\x6f\xd6\xea\x4c\x8b\x76\x83\x35\x2a\x30\xd2\x6f\x7c\x5f\xe9\x66\xcb\x65\xec\xb8\x7c\xcb\x74\x62\x70\x1c\xb2\xc3\x0c\xfc\xf7\x07\x64\x8e\xa2\x5c\x19\x2c\x18\xf1\x8e\xf4\xcd\x16\x78\xfa\xb4\xa5\xe7\xfd\xc9\xc9\x50\xbb\x98\xc2\x65\xf6\x1e\xe3\xc5\x8d\xe1\x33\x8f\xd3\x91\xfe\x7a\xb1\x82\x60\x29\x7b\x18\x30\x89\x9d\x49\x0f\x66\x1c\x2d\x95\x67\x2c\xe2\x64\x09\x18\x3f\x18\x28\x4d\x67\xcf\x2d\x69\xd2\xe7\x09\xd8\x75\x45\xc3\xba\xf6\x21\x2e\xf6\x5c\x44\x35\x0b\xab\x7a\xd3\x3f\xdd\x2c\xaf\x5d\x77\x95\x46\xe2\x1f\x4b\x1f\xd5\xa9\x07\x2e\x29\x59\x5c\x98\x3e\xb7\x7d\xa9\x6a\xa8\x58\xaf\x73\x29\xd1\xec\x01\xf9\x70\xf8\x48\x36\xa5\xa3\x97\x9b\xd3\x25\x97\x0e\x36\xe5\x6b\x94\x1b\x9f\xd7\xf6\x64\x0c\x19\xb5\x08\x6f\x91\x59\x58\x55\x44\x58\x3d\x46\x6a\xd1\x14\x3a\xfb\xc9\x0b\x29\x02\x5d\x23\xac\x46\x79\x90\xcf\x3e\xb7\x3f\x79\xd7\x2b\x16\x2d\xe1\xf4\x58\x2b\x3f\x53\x17\xe0\xc7\x96\xe0\x83\x65\xf6\x1e\x55\x42\x1d\xb7\x97\x2e\xf6\xe7\x76\x3e\xa9\x8f\x66\xf8\x56\x04\x8b\xc8\x3b\x67\xab\x8c\x1e\xca\x5e\x3c\xf8\x8d\xb6\x8e\xb1\x91\x23\x53\x4e\xe6\x96\x03\xc9\x19\x55\xc5\xef\xe5\xfa\x1e\x0a\xa5\xe3\xbb\xa5\x89\x5a\x37\x13\x9e\x40\xec\x81\x54\x5c\x84\x49\xbe\xb0\x67\x8c\x56\xd3\x8b\x62\x2c\xfb\xf3\x1e\xd9\xcb\x10\x97\x5a\x7c\xe5\x1a\xfc\xfa\x11\x15\x50\x64\x83\x24\x47\x31\x58\x73\x48\x51\x42\xc2\x46\x84\x86\xce\xf4\x9f\xe4\xe4\x86\x49\x85\x62\xf0\x0f\x23\x95\x9b\xd4\xc0\x2c\xbc\x82\xd0\x3e\xfe\x24\x2f\xb7\x7c\xa5\xd4\x41\xcd\xfc\x85\x2f\xad\x0a\x8b\x7c\xc7\x25\x46\x2d\xe1\xff\x76\x64\x21\x0c\xf7\x0b\x1f\x0d\xbf\x9b\x87\x88\x03\xad\x9c\x3e\xfe\xdd\xad\x19\x62\x60\x87\x32\x9b\xfa\xae\x28\x5c\xb7\xee\x4f\xc9\x8b\x46\x78\xaf\x1f\x68\x14\x83\xe9\xd3\x63\x31\xce\xc0\xbb\x87\x5f\x92\x85\xdc\x31\xd3\xa0\xd1\xdd\xbb\x6b\xbd\xdc\x40\xf1\x1f\x73\xf1\x03\x23\xd5\x71\x0a\x72\xf8\x8d\x9e\xba\x40\x14\xa3\xac\xa6\x6a\x40\x7c\x6d\xca\x28\x35\xdb\xda\x82\x34\xfe\xc6\x32\x7e\xa5\x3f\xda\x23\x86\x71\xa9\xc3\x39\x62\x9f\x36\x19\xf3\x59\x0c\x0d\xff\x78\x4f\xa2\x94\x2d\x51\x5e\x9d\x07\xef\xb0\x4b\xe2\x8f\xc5\xb8\x51\xf9\xbf\xfc\x5c\x8e\xfe\xd4\x15\x5e\xb1\x3f\xfb\x87\x57\xa5\x4f\x00\x0d\xfb\xa6\x4b\x77\xc9\xa0\xd4\x3a\x63\xce\x2c\x30\x6d\xde\x77\x93\xea\xbe\x59\x98\x05\xad\xea\x13\x4d\x6a\x7a\x8f\x8e\xd3\x13\x93\xb5\x6b\x49\xa1\x23\x17\x56\x51\x9b\x5a\xc4\x46\x49\xd8\x67\xf1\xbc\x7c\x7f\x43\x4e\x70\x6b\x80\xc6\x49\x3d\x88\x89\x71\x7a\xb1\x71\x1a\x25\x72\x79\x47\x2a\xf1\x11\x51\x44\x05\x54\xb1\xa1\x07\x7c\x07\xe1\xe2\x88\xd9\x2f\x8e\x16\xfc\x50\xe2\x42\xec\xed\xcf\x8c\x5e\xae\x18\x64\x51\xd7\x87\xcc\x97\x5b\xab\x98\xeb\xf4\xa2\x1a\x51\x8f\xeb\xc8\x8b\x34\x4e\x19\xe5\xec\x0a\xb1\x59\xb9\xbe\x39\x2e\x78\x0d\xa6\x78\x4c\x66\xae\x74\x34\x54\x05\x02\x5f\x28\x01\x2e\xe9\xdd\xa2\x1a\x8d\x39\x95\x1a\x85\xd1\xea\xf4\xb6\x64\x6a\xb1\xa8\x40\xa3\xbf\x33\x4d\x13\x89\x77\xeb\x55\x64\x71\xe8\xef\xb1\x8d\x8a\x1b\x28\xad\x22\xc7\x75\x39\x71\x72\x58\x49\x82\x7d\xc4\x52\x63\x76\xca\x94\xb5\x26\xc0\x59\xd7\x2d\x55\xd6\xe0\x75\x64\x60\x1e\x73\xc2\x7f\xf5\xe7\x49\x62\x4c\x80\x6d\xa1\x56\x9e\xbd\x7b\x83\xc6\x58\x47\x2c\x96\x46\xed\xcf\x7c\xe5\x50\xf2\x99\x09\x37\x31\x71\x42\xfe\xed\xdd\x91\xca\x08\x1b\x0b\x31\xf1\xcc\xf7\xf6\x8d\x51\x00\xdc\xcc\xab\xae\xf1\xb9\x63\xfe\xe7\xe7\x5d\xa2\x8e\x14\x6b\x85\x62\xf0\xc5\xed\x0a\x51\x34\x76\x6e\xe9\x83\x63\x10\xfe\xc2\x95\x09\x57\xaa\x79\xcf\xe8\xf1\xdc\x69\x10\x4e\xc2\x08\xef\xce\xef\x35\x2c\x43\x99\x51\xfb\xba\xc9\x85\x62\xf0\xca\x52\x05\xfa\xc1\x90\xe3\xda\x44\xb0\x13\xfb\x33\xff\x7b\x7c\xb3\xd4\xdd\x4c\x6d\x60\x33\xdb\x14\xdd\x51\x83\x5a\xbe\xcd\x07\x2e\xe7\x4b\x3a\xac\x8c\x59\xb1\x88\x44\xd0\x18\xa6\x70\x1f\x7c\xe6\x94\x40\x80\xba\x3f\xb3\xb9\x47\xbe\x9a\x3e\x6a\x51\xaf\xd7\xaf\x55\x39\x08\x3e\xaf\xe1\x79\x11\xcc\x04\x44\x33\xf2\xe5\x26\x41\x93\xf7\x6d\xc8\x76\x0d\x8d\x88\x50\xa7\x9e\xb0\x46\xc8\xb5\x5f\x50\xa6\x90\x61\xab\x04\x1d\x2f\xe4\xa4\xc6\xe1\xe4\x24\xdc\x25\x30\x0c\x1b\x48\x2b\xff\x3f\xb7\x4f\x54\xde\x94\xc3\x09\xd6\x7a\xf9\xf4\xf6\x44\x0d\x0e\xd0\xc0\xac\xd7\xab\xca\xf3\xf1\x92\xc6\x9b\xef\x16\x13\x0e\x91\xfe\x26\x1f\x69\x56\x04\x28\x4c\x02\x0e\x81\xf2\xbe\x7e\x78\xb7\x8e\x77\x72\x4c\x8e\xa6\x88\x18\x87\x5f\xd1\x84\xb6\xa4\x42\x6f\x44\x2d\x58\xd2\x34\x29\x75\x0d\x8d\x74\x27\xbd\xed\xbe\xe4\x9a\x1a\x39\x1e\x29\xd4\x88\xe9\x20\x70\x69\xe4\xa5\xea\xbf\x9d\x95\xf5\x3f\x26\xe1\x31\xd5\x60\xfc\xb8\x81\xdc\xc8\x05\x29\x38\x39\x4f\xc2\x7b\x1c\x9c\x9e\x52\xe5\x7e\x7d\x46\x61\x3c\xf7\x86\x09\x81\xaf\xc8\x36\x3e\x77\x49\xa2\x3d\x0b\xdf\xf7\xe0\x57\x79\xcf\x5d\xa6\xd4\x2b\x21\x8b\x2f\x90\xd6\xde\x9b\x0c\x31\x75\xcc\x43\x4c\xe6\x8e\xb9\x1a\x8f\x91\x9a\x98\x39\xc4\x95\x32\x62\xfd\xf9\x4b\x07\xc5\xcb\x4f\xdb\x8f\x10\xe2\xd9\x37\xb6\xeb\x60\x20\x0e\xc3\x0a\xd6\x36\x8b\x7d\x59\x9d\xd6\xb0\x6b\x43\xff\x79\xe5\xcf\xf5\x55\x10\x89\x38\x74\xed\xfb\x54\xb1\x5e\x8f\x11\x23\xbc\xeb\x6f\x9d\x1c\xad\x32\x84\x6d\xe2\xc0\xe4\x30\xf8\x46\x73\xea\x45\x37\xb0\x43\x00\xa8\xcb\x4f\x4a\xef\x84\xf8\x8e\x56\x51\x8a\x65\x92\x1d\x99\x55\x84\x89\x30\x02\x3d\x84\xcc\x97\x9e\xd6\x15\xf6\x31\xf7\x77\xe9\xcf\xed\x5b\x24\xa7\x7b\x50\x98\xb9\x75\xcc\x84\x0c\xc2\xcc\x66\xc9\x82\x6c\x07\xce\x5c\x76\x97\xa6\x38\xea\xa1\x1e\x71\xcf\xe9\x53\x92\x65\x6f\xaa\x3e\xc7\x3f\x3d\xab\x44\x46\x0b\x8b\xf8\x9b\xb9\xfa\x62\xf9\xc7\x55\xea\x7a\x1c\x6b\x9d\xf9\xe7\x95\xda\x74\x00\x3b\xae\x2f\x42\x70\xee\x13\x9d\x8a\xcb\x0c\xf2\x2d\xc8\x09\x72\x4d\x13\x88\xa6\x7b\xb9\x80\xa2\xc7\x6a\x67\x37\xc5\x2d\x52\xa9\x00\x12\x0b\xeb\x85\xf5\x93\x45\x6c\x68\x79\xb3\x93\x9b\x04\x43\xd1\x77\xeb\xd8\x01\x31\xe0\x7c\xbe\x4d\xc3\xef\x51\x1f\xa4\xdf\x44\x89\xff\xc6\x0d\xa9\x76\x8e\x3a\x15\x70\xd2\x80\xb5\x4b\x7d\x67\xf2\xe8\x31\x5a\x2a\x85\x0d\xb1\xaa\x91\xb2\xf5\x98\xae\xec\x00\x13\x84\x08\xa6\xf8\x13\xa6\x68\xdd\x54\x69\xb7\x8d\x1c\xb7\x4a\xa0\x71\xfd\xdc\x23\x1c\xcc\xd2\x4d\x3c\x98\x21\xe4\x7b\xb7\x88\xa1\x99\x53\x61\xc4\x0a\x13\x5a\x70\x7a\xa9\xc0\xa5\x53\xb0\x47\xc8\xdc\xb5\x53\x6b\x86\x69\x1d\x43\xd3\x23\x8e\xd6\x4c\x41\x90\x34\x2c\xb0\x89\xcf\xed\xd0\x9d\x05\x5d\x10\xd6\xf4\xa2\xa3\xf8\xd0\xa2\xd4\x44\x89\xb2\x08\x63\x9f\x79\x7b\x95\xcc\xe0\x60\x08\x1c\xcd\x46\x82\x85\x7c\xf1\x75\x67\xb1\xb8\x60\xf9\x27\x16\x2e\x54\xce\xca\xc9\xe1\xc3\xc5\x81\x70\x28\x03\xa5\x88\x62\x7f\xde\xdb\xae\x44\x01\xca\x7f\xc6\xf9\x73\xbc\xe6\x5d\x81\xac\x0a\xf2\x54\x7f\xdd\x93\xba\x6f\x3f\xa8\x83\x46\xc3\xa7\x5f\x68\x86\x75\x5c\xcd\x29\x7a\xde\xd7\xeb\x0e\xe1\x36\xad\xf1\xd7\x01\x83\xa1\xea\xcf\xe5\xaa\x60\xc6\x4c\x2f\xa1\xe3\x94\xbd\x63\x98\xb2\xa7\xa5\x8c\x3f\xf1\xfc\x71\xc5\x3d\x82\xf5\x36\x80\x20\xfb\x43\x65\x98\x5b\x66\xd8\xa8\x62\x8f\x8f\x24\x27\x4e\xbb\x46\xbf\xfc\x02\x77\x94\xaa\x2c\xb3\xbc\x2e\xe0\x41\x8b\x28\x33\xc9\x4c\xcb\xbb\xfa\x78\xcd\xb2\xb0\xc9\x91\x40\xb9\xed\x93\x27\xa8\xda\x54\xdd\xa9\x91\x47\x7f\xee\x0f\xf5\xb4\x42\x04\xe7\xd0\x2f\xd7\x5c\x47\x2a\x0c\x23\xcf\x12\x6d\x5a\x6e\xe2\xcb\x8a\x85\x19\xf2\x3d\xa1\x2c\x9d\xdd\xb4\x4d\xb5\x36\xb3\xa8\xeb\x72\x8f\xf1\x63\xfb\x64\x1d\xc2\x10\x71\x0a\x26\xe6\x53\x94\x62\x7f\x6e\x6d\x55\x15\xd7\x05\x43\x23\xf8\x04\xdf\xda\x1d\xd7\x7e\x65\xca\x0a\xc5\x20\xbb\x28\xe2\x1a\x33\x16\x29\xf0\x7e\xf5\x49\x89\x00\xaa\x13\xb7\x46\xfa\xaa\x0a\x96\x34\xf8\x43\xb3\x22\xf3\x0f\xa8\x21\x00\x40\xc2\xeb\x9f\x34\x5a\xae\x0f\x95\x7d\x7a\x66\xd8\x89\x64\x78\x37\xb1\x1b\x89\x43\xe6\xc7\x2f\xb8\x52\x6b\x5c\x2b\x98\x95\xb1\x95\x58\x6c\xe7\x2a\x4f\x2a\xd8\x17\xc4\x2a\x20\xbe\x14\x1c\x7d\xe9\x0a\xa5\x15\x29\xfb\x15\xac\xf3\x85\x82\xee\x17\x78\x99\x7a\x8b\x40\x14\x15\xfb\xf3\x63\x9e\x52\x97\xff\x61\xae\xf4\x0a\x8c\xfb\x0e\x85\x0f\xe9\xdd\x21\x13\xf4\x5b\x89\x59\x98\x41\x62\x05\xd7\xcc\x81\x96\x38\x7d\x4f\x6f\x99\x5d\x28\x06\xdd\xd9\x2b\x94\x66\x9a\xbb\xfa\xe8\x99\x65\xc5\x73\xc3\x94\x0f\x0b\xb7\xe9\x0e\x39\x3a\x74\x0d\xbf\x50\x0c\x3e\xb0\x43\x9d\xb2\xd6\xf9\xfa\xed\xda\x93\x7c\x39\xb0\x12\x3b\xb8\xcf\xc7\x16\x67\x61\x01\x36\x6c\x90\x02\x07\xf1\x7c\xc7\x11\xac\x11\x47\x56\x5c\x15\xc4\x1a\xa8\x52\x4d\xfb\x02\xbd\xa6\x8d\x8d\x38\xeb\x84\x4f\x7a\x6a\xe7\x34\xeb\x9a\xf0\xfb\x9b\x12\xa7\xfc\x95\x09\xff\x2d\xf9\x49\x54\x4b\xb9\x59\x1d\xd2\x96\xb8\xb3\x00\x2b\x2c\xee\x5b\x57\x58\x7a\xf3\x0a\x5d\x3e\x34\x68\xd9\xaf\x8f\x19\xe3\xe2\x0b\x70\x2f\x67\xaa\x3c\xb2\xde\x6c\xc2\xd2\x28\x77\x7d\x7e\x88\x48\x40\x08\x18\xbf\xdf\x1c\x29\x7f\x5b\xdb\xf4\xf0\x2d\x76\x3d\x36\x52\x61\x57\x78\x16\x6f\xfe\x32\x9f\x7a\x5f\x59\xb8\x95\x0b\xc5\x60\xd7\xe2\xf8\x4a\x20\xcc\x8f\x07\x13\xfb\x32\xcc\x8c\x2a\x72\x4c\x40\x7c\xf7\xe7\x3f\xf0\xaa\xb2\x6e\xc5\x46\x4d\xa9\x2e\x1f\xdf\x70\xa5\x93\xe4\xcb\xa3\x01\x8c\x98\xfe\xad\x2c\xc3\x70\x7b\x5b\x6b\x47\xa1\x18\xfc\x74\x64\xf2\x39\x7a\x7e\x6f\x8d\x36\x94\x83\x1f\xbc\x7a\x93\x0e\xa2\x05\x55\x56\x5e\x45\x3e\xf6\xce\x38\xe5\x52\xf8\x7d\x24\x11\xc9\x87\x28\xfa\x0f\x15\x44\x4c\xa4\x82\x90\x72\x0f\xf0\x44\xb1\xc4\x57\xa0\x18\x57\x68\xfc\x3d\x9b\x58\xdd\xc8\xaf\x61\x7c\x5d\x4b\x34\x20\x6c\x7e\x98\xbf\xc4\xe5\xc4\xa8\x22\x66\xba\x09\x8f\xb8\xbe\x09\x12\x28\xe1\x29\xd3\xc6\xec\x8c\xf7\x34\x48\x32\x2e\x31\x1f\x31\x01\x6a\x3a\xb1\x5f\xa7\x87\x79\xd8\x31\x23\x04\x65\xf0\x3f\x96\x8b\xe3\x8f\x5c\x97\x28\x92\x8a\xc1\x95\x9a\x46\x8e\x57\x45\x1e\xf0\xc5\xb3\x7b\x3a\x14\xc4\xbe\x6f\x43\x4f\x7e\xf0\x98\x96\x8c\x4d\x9b\x78\x5e\x6c\x97\xb7\xe7\x11\xe5\xe6\x45\x7e\x8f\x8f\xed\x53\x10\xc5\x3e\x71\xdd\xb4\xaa\xcf\x77\x34\x70\x03\x2e\x97\x21\x5f\xf2\x90\xff\xd5\x6a\x5c\x1a\x93\x06\x8d\x4a\xe3\xfe\x57\xe5\x5c\x48\x08\xdf\xc1\xb5\x7b\x53\xc4\xaa\x2a\x65\xae\x18\x56\xd4\x27\x29\x2d\xa3\xef\x59\x20\xa2\xd0\x9f\xdf\xb0\x2e\x39\xe5\x74\x10\x43\xbd\xc8\x41\x4e\x62\xad\xd8\x9f\xfd\xe7\x7d\xda\x97\x76\x2a\xd4\x42\xf2\x75\xd2\xfd\xea\xc4\xa1\x52\x41\x15\x38\xeb\x9f\x0c\x94\xdf\x0a\x7a\x76\x61\x2b\xfd\xf5\x87\x93\x73\x48\xe6\xbb\x96\x4e\xf0\x7c\xf2\xe1\x94\x77\x55\x09\x5f\xd7\x00\xe4\xeb\x8f\x39\x45\x37\x8e\xd4\x6a\xf6\x1f\xf9\x3a\x4f\x44\x26\xf5\x4b\x5e\x19\x26\x30\x99\x6b\x17\x2b\x60\x6d\xe4\x98\x85\xee\xb0\xb3\x11\x59\xea\xf3\x1b\x9a\xa2\xdf\x31\x00\xdc\xec\x58\x3c\x88\xf4\x52\x80\xc8\xe0\xc6\x45\xfc\x31\x57\x7c\x12\x3d\xe6\xdf\x59\x13\xb4\x5a\x34\xac\xd2\x12\x06\x99\x1f\x5b\x36\x54\x34\x60\xdd\x40\x5b\x0f\x9e\x1b\x3e\x39\xfd\x6f\xdc\x01\xa0\xb0\x77\x3c\xad\xa8\x79\x7a\x1e\x16\xee\x6a\x5f\x0a\x92\xad\x0a\xb1\x51\x85\x38\x48\x9a\xdf\x66\x8d\x99\x5c\x9b\x7c\x05\xb6\xb0\x50\x1e\x37\xa4\xde\xe7\xa4\x79\xda\xaa\xcf\xb7\x3c\x3f\xd2\x69\x09\x8e\xbf\xa3\xba\xf4\xd9\x4e\x6c\xe8\xef\xdf\x90\xfc\xb5\x52\x57\x26\x9a\x37\xbf\xfd\xba\x5c\x68\x71\x26\xc5\xd6\x49\xc9\x9b\x36\xab\x73\x96\x00\xca\x8c\x7b\x52\x56\x21\xdd\x55\xa2\x2a\x72\x64\xa6\xdc\xc4\x83\x76\xc7\x0c\x2e\x12\x3b\x3c\xaf\xd8\xd5\x59\xbe\x4d\x9c\x14\xcb\x3f\xb8\x64\x07\x0f\xbe\xd3\x3b\xa4\x0f\x57\xb1\x3f\x33\xea\x59\xf9\x08\x3b\x66\xb6\xcc\x99\xd5\x06\x7d\x48\xcf\x46\x5d\xdf\x8e\x19\xd4\x67\x00\x4d\x11\xcb\xa4\x1f\x73\xdd\x58\xa0\x86\xf8\x75\xd1\x00\x40\xc1\xbf\x7c\x24\xb7\xe6\xec\x9c\x15\xfe\x86\xb1\xeb\xb5\x01\x04\x48\x81\x39\x46\x6f\xbc\xb3\xab\x3f\xa7\x9a\x38\x53\x17\x37\xb0\x05\xd5\xc0\x8c\xfc\xb5\xdd\x03\x6d\x06\xf8\x28\x49\xaf\x0f\xaf\xb8\x4b\xa3\xd7\x48\x1a\x42\xac\xa9\xd0\x3e\x28\x4e\x4a\x73\xa6\x03\xb5\x3a\x3b\x75\x8c\xba\x3d\x45\x66\x84\x75\xcb\x4d\x19\xa4\xea\x9f\x32\xe2\x7a\x04\x39\x62\x95\xde\xbe\x57\x72\x0e\x51\xa3\x50\x0c\xc6\x31\x2d\x10\x23\x62\xf9\x4c\xac\x30\x72\x2b\xee\xd5\xbc\x93\x31\x33\x22\xc3\xeb\x2b\x1e\x12\xec\x08\xcc\x55\xde\x32\xcf\x6b\xc2\xeb\x25\x46\x6b\xa2\xb1\xc9\xed\x9f\xa9\xb7\x76\x18\x3c\xfe\xab\xa4\xce\xc7\x0a\xbd\x7b\x14\x43\x28\xdf\x25\x8e\x5b\xeb\x2d\x14\x03\x32\x37\x79\xa5\x48\x8d\xd8\x82\x71\x91\xbc\x52\x93\x46\xeb\x24\x2b\xea\x57\xaa\x91\xed\x47\x49\x23\x7e\x03\x78\x47\x2c\x5c\x2e\xaf\xf2\xcb\x5f\x64\x25\xe2\x41\x90\xef\x9f\x27\xdf\xab\xef\x54\x11\xb3\x39\xfc\x30\x67\xef\x55\x24\x5f\x2d\xda\x2d\xea\x43\x4f\x11\xfd\x77\x3d\xc4\x8c\x2a\x84\xe4\x49\xc7\x92\x7d\x83\xef\x94\x11\x61\x02\xd7\xbb\x47\xab\x29\xb9\x2f\x9c\xa3\x6e\x79\xae\x3d\x18\xe3\x29\xf8\x5c\x02\xfe\xf4\x09\xa6\xfc\x32\xe4\x98\x42\xa9\x75\xf8\xea\x34\xb5\x29\x2a\x96\xf2\x83\x46\x0f\x00\x10\x88\x7a\xb0\xe6\x79\xa2\x75\xa7\xa6\xc9\x17\x78\x23\x2e\xe6\xac\x9a\x5b\x08\x5b\xe3\xeb\x2e\xee\xfd\xb9\x5f\xf5\x68\xa3\x6e\xa0\x5f\x01\xaa\x02\xce\xcc\xb3\xc9\xe3\xdc\x45\x90\x68\xf8\x64\x5d\x71\x69\x9f\x7c\xc2\xc4\x24\x1e\x62\x94\xdb\x05\x2d\x58\xaf\x10\xf2\x40\x91\xaf\x3f\xbf\xbe\x4b\x27\x1e\x22\x27\xde\x37\x67\x97\x76\x29\x8e\x5c\x50\x8b\xbe\xd0\xa2\x91\x37\x7c\xb7\x4e\x8c\x58\xe4\xfe\x1b\x07\x94\xc6\xc1\xc7\xae\x19\xb6\xe6\xc1\xd4\x20\x62\xb8\xb8\xc0\x52\xb7\x61\x09\x7b\x60\xbd\xf6\xa3\x38\x7a\x3d\x42\x9e\x2c\x58\xa1\x51\x0c\x00\x48\x1e\x29\xe0\x2a\x8e\x8a\x96\x1f\x7e\x68\xc0\x17\x5d\xb4\x4b\x73\x43\xf1\x4b\xc8\x8d\xa0\x3a\x0a\x0e\xec\x70\xb2\x09\xaa\x23\x56\xe3\xd2\xa3\x8a\x56\xe7\xcb\xcb\x87\xca\x02\x72\x56\xa1\x18\xac\x98\x3a\x3a\x39\x7b\x6a\x60\x41\xe8\x7e\x5f\x23\x85\x4c\x6f\x9f\x25\x48\x21\x8b\x77\xca\x47\x5e\x12\x46\xba\x5f\x7d\x48\xde\xc6\x2e\x1a\x13\x7e\x72\x6b\x8e\x6b\x6c\x79\xd4\x2b\x18\x31\xd7\x2e\xe0\xe4\x4b\x20\xa3\x44\xa9\x25\xf7\x1f\x0a\x78\x2d\x5a\xbe\xc3\xea\xfd\x42\x5c\x17\x76\xf7\xa9\x02\x92\x74\xaa\x9c\x47\xa1\x12\x05\x8f\x12\x10\x8f\xe3\x40\x92\xd1\x66\xf2\x6c\x21\x86\xca\x08\x86\xae\xb2\xb4\xfc\xfc\x33\x3a\x9b\xca\xf0\x10\x23\x8e\x50\xe0\xcd\xbd\x31\x3f\xc5\xd6\x33\x6a\x91\xee\xec\xee\xf7\x65\xff\x88\x08\xeb\x46\xbd\xe9\x50\xf3\xca\x63\xf2\xc5\x62\xe6\xd6\x04\x02\xeb\x83\x0b\xd4\xca\x89\x31\xda\xcd\x35\xb2\x06\xe9\xe3\x13\x37\x7c\x2d\x11\x4b\xfe\x41\x69\xcf\x5d\x06\xed\x85\x6c\xdf\xfd\x5a\x24\xa3\x61\xa4\x8c\xb6\xd9\xff\x71\x84\x4f\xe4\x16\x21\xa7\xa6\xaa\x8a\x7e\x71\xbf\x74\x22\x85\x7d\xa5\x54\xce\xba\x7d\x47\x53\x82\x4b\x69\x23\x21\x93\x1b\xfe\xbc\x49\xcf\xc9\x89\x24\x21\x61\x0b\xbd\xe8\x75\x95\x19\xea\xba\x98\x95\xa0\x3a\xf1\xa6\x29\xee\x31\x58\x01\x2d\x06\x4f\x98\x49\xa3\x5c\xc5\x3e\x30\x2d\x84\xd0\xbc\x4e\x19\x5e\x22\x26\x70\xc9\xd9\x6f\xe8\x5e\xc4\xdc\x1c\x3e\xa2\x65\x64\xee\xcd\xc7\xdf\xcf\x03\xbb\x9e\xd8\x73\x26\xf7\x01\x4d\xde\x08\x71\x75\xdc\xa0\x63\xcf\x40\x92\x36\x62\xb8\xba\xe4\xb8\xbc\x29\x1e\xb6\xb0\x6b\x50\x98\x86\x67\xdf\xea\x8c\xa0\xa7\xc2\xe4\x35\x77\xcb\x29\x45\x1a\x86\xc8\x5e\xfb\xec\x7e\xcd\xe4\x8a\x32\x86\x95\x1e\x35\xff\xe0\x0e\x1e\x47\xef\xe0\x76\x3a\x1a\x14\xe6\xeb\xc7\xf9\xc0\xed\xb6\x06\x72\x1a\x54\xa9\x2b\xcf\xed\x1d\xa1\xec\x71\xa2\x19\xdf\xf0\x87\xaf\xd5\x1e\x50\x1d\x31\xcf\x16\xbe\xaa\xfa\x19\x6d\x6b\x91\x2f\xcb\xc0\x16\x2e\x85\x77\x12\xb6\xc2\xe7\xf8\x90\xb5\xb0\x14\x7b\xae\x81\xea\xe9\xfe\x65\xd7\x91\xe4\x1d\x23\x0d\xe4\xd0\x46\xe2\x8e\xe5\x47\xde\x3f\x46\x19\x27\xb9\x1e\x23\x86\x90\xb2\x59\xad\x4b\x29\x73\x2f\x7a\x9e\x6a\xaf\x9b\x9b\x64\x51\xcc\x98\xcd\x93\xff\xe8\x73\xb2\x62\x91\x5a\xf3\x7c\xab\xb8\x6a\xd9\x95\xa9\x2e\x4d\xba\x42\x46\xd4\xd0\xaf\x2f\x94\x9d\x41\x37\x81\x41\x62\x8c\xe2\xba\xfd\x04\xef\x24\x22\xad\xbd\x42\x31\x78\x70\x6b\x54\xf0\x87\x45\x08\x14\xfc\x9f\x39\xa3\x28\x8c\x52\xe6\xd1\x92\x30\x55\xc8\xb0\xce\xb8\xf6\x32\x10\x7c\xc9\x7f\xc8\xeb\x33\x4f\x40\x28\x70\xf0\xc0\x2b\x83\x13\x12\xf6\x3c\x38\x78\x6b\x15\x9d\x6d\xe4\xa0\x0a\x66\xf0\x93\x6e\x69\x28\xab\x30\x0f\xd7\xab\xc8\xa1\x75\xea\x5b\x2a\xa7\x34\x37\xe8\xb4\x36\x44\xa5\x65\xaf\x1b\xb1\x48\x52\xfc\xc4\x63\xbc\x03\x5f\x02\xe6\x7d\xae\xa7\x4e\xf0\xf3\x9f\x6b\x1b\xa9\x90\x7d\x90\x2d\x26\xf1\x1f\x5e\x37\x54\x36\xe6\xa4\x50\x0c\xb6\xbd\xc7\x0f\xf9\x12\xea\x13\xf9\xbb\x83\x53\x0b\x15\x58\x3f\x5f\xcf\x16\x8a\xc1\x90\x0b\x23\x94\xf5\x38\xe3\x25\x48\xe6\xf3\x42\x54\xc9\x84\xc1\x0f\x94\xad\xdf\xf4\x9a\x94\xc1\x2c\x10\xed\x38\x3e\x33\xfc\xee\x7f\x39\xc3\x6f\x5a\x17\x32\x6a\x38\xec\x9f\x36\xef\x18\xab\x9d\xaa\x92\xcf\xb1\x04\xef\xe7\xd5\x69\x9a\x81\x07\x90\x01\xca\x5d\xf4\x14\xff\x71\xd8\x11\x9a\xe4\x9f\x5f\xad\xf9\xad\x76\x70\xbf\x55\x5e\x91\xfe\x4c\x5b\xbc\x5b\xc4\x26\x1e\x36\xb9\xf6\x6d\x76\xd5\x0b\x0a\xb2\x09\x38\xa7\x90\xe4\x1c\x05\xae\x5c\x45\x20\x6c\x96\xf9\xe1\x06\xfe\xe4\xca\xbe\x65\x15\xc2\xd8\x4e\x38\x9d\x70\x4a\x55\xca\x2d\x57\x30\x43\x96\x19\x26\x0a\x79\x87\x3e\xf3\xb2\x66\x9c\x46\x5c\x0b\x23\x33\x5e\x70\xf6\x67\xcf\xb4\xc4\x4d\xeb\x00\x8a\x82\xd9\xf6\x77\x15\xd3\x6e\x8c\x0c\x9e\x72\x7f\xe1\xf0\xb2\xfc\x4e\x81\x9c\xce\x1b\xdb\x04\x49\x97\x38\x00\x6e\xc8\x4e\x67\x42\x91\xca\xc2\x08\x4c\x75\x32\x2b\xe4\x96\xda\x46\x29\x3c\x63\xf6\xdf\xa6\x28\xa8\x97\xeb\xc3\x1f\x71\x6b\x13\x7f\xd5\x75\x9f\xb9\x3e\x37\x6e\x3f\xff\x82\x1c\x3d\xd1\x1a\x02\x1d\x26\x99\xd7\x9f\x59\x96\x2a\x67\x0c\x6c\x59\x2e\x8f\x5d\xd1\x23\xb9\x5b\x73\xc6\xf1\x50\x0d\x5f\x57\xe7\x99\xf9\xf4\x46\x3d\x9a\xdb\xe1\x95\x13\xac\x3d\xef\x7c\x0a\x3b\x16\xcf\x8b\xfa\x33\xbf\x39\xa0\x29\xc0\x22\xd0\xc6\xe1\x32\xa4\x4b\xf7\x0b\xbd\x43\x86\x1c\x37\xf6\x83\xcc\x7c\xeb\x31\xcd\x2b\xc9\x77\x5d\x82\xb8\x84\xca\xad\xcb\x3e\x1a\x0c\x17\x3e\x6e\x75\xcc\x0c\x5c\x8f\x0a\x9e\x3b\xe6\xea\x70\x0e\xc6\x62\xab\xdc\xec\x73\xa7\x15\x40\xa5\x5f\x01\x92\x4e\x7e\xc8\xae\x09\x7a\x81\x10\x1b\xfa\x8a\xcf\xbf\x45\xb3\x5b\x44\xe5\x32\x31\x51\x83\x78\x51\x27\x3a\xb7\x39\x9e\x2a\x39\xa8\x12\xd1\x74\x4e\xea\x12\x3b\x9e\x20\x9c\xcf\x6e\x4b\x59\x33\x45\xc2\x62\xf9\x8f\x4f\xe5\xc7\x05\xf5\x10\x6a\xc3\x98\x73\xa6\xbc\x0a\x6b\x90\xe3\x21\xb8\xec\xeb\xe6\xf1\x2e\x7a\x21\x65\xbe\x9d\x18\xdc\xdc\x73\x2e\x65\x0c\xe1\xc3\xd5\xe7\x10\x95\xad\x33\x45\xdb\x18\x3b\x9e\x8c\x8e\x4f\xd7\x9c\xd6\x8e\xf0\xaf\x1c\xdb\xfd\x21\x11\x5a\x4a\xf0\x91\xb2\xf7\xe9\x90\x79\xa3\x8a\x2c\xa3\xea\x1b\x35\xa8\x87\xa3\x1a\x68\xfa\x93\xc3\x14\x2d\x1b\xb8\x84\x8b\x06\x29\xa0\x10\xc0\x19\x06\x5f\x39\x93\x40\x9a\xba\xd8\x86\x19\x0b\x6f\xe5\x26\x3c\xad\x58\xcd\xda\x10\xab\x0a\xc5\xe0\x78\xf3\x78\xad\xb9\x72\x22\xad\x6c\x4e\x20\xfa\x58\xab\xbe\x75\xe4\x1a\x27\x42\x3e\x75\xe2\x53\x43\x44\xba\xe1\x60\xab\xcc\x3b\x13\x74\x3d\x6c\x93\x18\x24\x52\xd4\xcd\xec\x38\xa9\x8d\x10\xd7\xf8\xb1\x23\x7e\x7f\xfe\x33\x0b\x35\x60\x5f\x24\x66\x9c\xf9\x8c\x54\x66\x43\x5e\x24\xdb\x95\xdf\x32\x3e\x79\xfa\xb1\xd3\xa0\xb1\x3c\x85\xb3\x49\x47\xc8\x79\x46\x95\xcf\x4c\x7f\xb1\x4e\xd1\xf6\x03\x57\x47\xd0\x77\xfe\xd9\x44\x19\x04\x19\x32\xe1\x10\x67\xcf\xbc\x2e\xab\x3a\x35\xfe\xd7\x35\x56\x02\xad\xe3\x58\xea\x26\x7b\x6a\xf8\x35\x0a\xd1\x23\xa2\x37\x16\x58\xd8\x70\xe8\x03\xbc\x99\xe7\x14\x95\x8a\xd6\x19\x60\x4e\x66\xf4\x69\x7b\x19\x83\x3a\xd4\x16\x16\x10\x3c\x37\xae\xdb\xcb\x73\x3f\xee\xc5\xdd\x18\xf1\x9c\xfb\x25\x4d\x59\x34\x8c\xe4\x15\x21\xbe\x1d\xbc\xb6\x58\x53\x9a\x0a\x8f\x86\xe8\x1c\xbe\xb2\x5d\x7e\x86\x2a\xe5\xb4\xe9\xff\xd3\xa3\xa9\x6b\x53\x56\xab\x5b\xc8\x90\x1a\x2e\xf9\xf1\x3b\x86\x2b\xac\xb4\x2a\x47\x46\xde\xbb\x92\x4f\xf2\x16\x60\xcb\x43\xa9\x1a\xec\x58\x5d\x15\xf0\x8f\x47\xed\xcd\x8a\xd0\xbb\x47\x2b\x61\xde\xb6\x17\x28\x5d\x26\xea\x8e\x6a\xd3\xd3\x83\x54\xb3\xa9\xf0\x1c\x73\x1e\x55\xf6\x87\xe7\x95\x97\x1a\x26\x74\x50\x70\x0f\xb6\x3e\xac\x38\x10\x2a\x0e\xfb\xf9\x71\x0a\x77\x1b\xd0\xcf\xfc\x00\x6f\x52\x1c\xf0\x41\x9b\x39\x7c\x16\x8b\x79\xe7\x52\x58\xd2\xeb\x80\x25\x4f\xf2\x3b\x35\x9e\xbf\x5c\xa1\x85\x59\x26\x17\xa6\x2c\x74\x93\x68\xcf\x96\xf9\xdb\x44\x1e\x53\x6e\xb1\x48\x39\x51\xc5\xe4\x76\xf6\x29\x8c\xa9\x2a\x76\xd5\xce\xc7\x6d\x51\x38\x1a\x4a\x71\x08\xce\x54\x99\x03\x47\x9a\x94\xee\xb6\xc2\xd4\xc5\xe5\xad\xe3\x93\xef\xba\x7d\xce\xec\x4e\xb1\x62\x78\x6a\x90\xec\x43\x71\x4a\x35\x24\xb7\xb2\xa5\x25\xe5\x35\xa0\xfe\x0d\xbd\xd6\x7f\x5f\x59\x3f\x54\x2c\x04\x09\xe6\xd9\x92\x80\x81\x33\xc2\x7d\x0d\x32\x27\x2e\xd2\x59\x75\xd0\xf9\x71\x68\x40\xf9\x4d\x1d\x4e\xc9\x11\x8c\x7c\x52\x97\x3d\xbd\x49\x3e\x21\xae\x57\x22\x9f\xde\xef\xcf\x88\x4b\xd0\x53\xb7\xa8\xe0\x1e\xdf\xbd\x96\xaf\x7b\x66\xb4\xb5\x09\x7e\x47\xb1\x3f\x37\x74\xb4\x82\x97\xb3\x88\x01\xb5\xd7\x73\x8d\x31\x2a\x1d\x4b\xf9\xb9\x37\xab\xb2\xf1\x1e\x23\xc2\x56\x21\x3b\xfd\x45\x7d\xb1\xd2\xa0\xdc\xb4\x88\x6f\x02\x4f\x4f\xd5\xc4\xa6\x49\x49\xc8\x89\x87\x8f\x7e\x7b\x0b\x07\x33\xc4\xbc\x49\xa1\xdb\x56\xec\xcf\x7e\xfb\xe2\xe4\x3f\xac\x22\xcb\x02\x0f\x5e\x8e\x1f\xf9\xf8\xde\xb8\x8c\xa9\x57\x50\x6a\x6e\xf5\x59\x5d\x18\x63\xce\xec\x39\x62\x1a\xf7\x60\x43\x13\x89\xf2\x5d\xaf\x57\xc0\x8d\xbe\x30\x49\x94\x4b\x1e\xaa\x73\xea\xdd\xad\x6d\x69\xa7\x1d\x4e\xfc\xe1\xdf\xef\x07\x7b\x07\x72\xa0\xe4\x9f\x71\x12\x67\x5a\x16\x56\xd2\x8a\x9f\xae\x61\x6b\x13\x34\x11\x76\x1a\x6b\xd1\xe7\x3e\x58\xd2\x1d\xe3\x49\x03\x5c\x65\xa3\x2a\xa1\xa3\x4b\xc1\x4b\x78\xc0\x1b\xfe\xfb\x3a\xa5\x8c\x05\x60\x46\xa1\x18\xf8\x6f\x25\x41\x11\x7c\x7e\xd7\x18\x68\xac\x9a\xcb\xbe\x24\xd9\x6d\x46\x8a\x71\x9a\xbb\xea\x45\x4e\xac\xbf\xad\x70\x3b\x38\xdc\x6c\x96\xc7\xdc\x44\xac\x56\x28\x06\x2f\xac\x12\x7c\x03\xaf\x6a\x27\xa4\x84\x47\xfe\x9c\x27\xf9\x3a\x71\xc2\xbf\xf7\xc0\x3e\x69\x5d\x08\x26\xaf\xb9\x95\xef\x28\x13\xe1\xf0\x44\x83\x07\x53\x7f\xb6\xe3\x78\x8c\xd3\x20\x8e\xb2\xda\xca\x6d\x99\xa6\x3d\x3c\x62\x44\x39\x33\xf7\xfa\xd2\xe4\xbb\xaf\xb0\x28\x69\xe6\x86\x59\x32\xc2\x21\x27\x62\x78\xe4\xb3\x09\x03\x60\xd7\x47\x26\x8c\x07\x36\xbe\x28\x6f\xc3\xdc\x04\xcf\xf0\x2b\xa7\x35\x7b\x18\xc5\x3b\x4a\x1c\xa5\x9d\x17\x69\xc9\x96\xfa\x42\xbb\x6c\xce\x9b\x9a\xea\x84\x1d\xcf\xd1\xa2\x4c\x7d\xba\x35\xae\x93\xba\x7c\x20\x18\xf8\x1a\xb4\x6d\xd6\x74\xe9\xef\xc6\x83\x86\xff\x42\x32\xd5\x75\x51\x97\x53\x1f\xf8\x34\xef\xa4\xe6\x9f\x88\x91\x19\x76\x09\xb1\xa7\xf5\x8f\xcf\x26\xef\x9b\x87\x19\x23\x20\x6e\xd5\x52\x28\x06\xf7\x3d\xae\x55\xd5\x16\x75\x5d\xc2\xcb\xbc\xdc\x71\x09\x64\xc0\x66\x77\xa1\x18\x5c\x36\x84\x07\x1c\xda\xed\x60\xc6\x31\x57\x41\x97\xa6\xd0\x5e\x26\x5d\x24\xe2\x68\xf5\xe7\x7e\xf6\x38\xbf\x78\x8b\x68\x5d\x6c\x36\x9e\xda\x9b\xfc\xc2\x14\x7c\x6a\xb9\x2b\x23\x17\x83\xdc\x77\x4a\x9b\x16\x00\x83\x33\x29\x09\x14\xdc\x38\x52\xf3\x92\x80\x6d\x00\x7c\xec\xbf\x3d\xa4\xd8\xef\x11\x33\x12\xef\x58\xb6\x51\xb5\xdb\x77\xa8\x11\x99\xea\xe4\xbe\xf7\xa4\xb2\x25\x66\x3c\x64\xf6\xe7\x36\xad\x96\x88\x99\x6e\x6c\x3a\x7c\xca\x2c\xe1\x2f\xbf\x5a\xd1\xac\xe6\x8f\xc5\x8b\x85\xc7\x37\x17\x6f\xab\xae\x48\x7e\x3e\x93\xa1\xc8\x29\x78\xc3\xa6\x64\xe8\x89\x15\xf0\x04\xde\xea\x4f\x9e\xa6\x44\x5c\xed\x8d\x2d\xd9\xee\xbd\x27\xed\x8f\x2d\xa2\xd2\xff\x5e\xad\x1d\x4c\xc4\xc4\x10\x6d\xc7\xb0\xa4\x06\x0f\xc0\x2a\x91\x95\x34\xdc\x5b\x95\x62\xce\x08\x2d\xcf\xdc\x84\xf7\x9a\xb4\x88\xcd\x4c\xab\x57\xdc\xbc\x1f\xdc\xc5\x8f\xc4\x6d\xdc\x86\x1f\xa0\x2d\xcf\x1c\x8e\x7b\x5e\xe6\x92\x54\x61\x74\xa6\x2b\xf9\xab\xc2\x18\x68\x09\xcd\x58\x21\x30\xbe\x84\x7a\x0a\x7a\x2b\x7b\xb0\x49\x84\x6f\x98\xba\x16\x8a\xc1\x35\x93\x34\x73\x43\x1a\xd6\x0c\x46\x72\xf7\x52\x59\x24\x5b\x89\x8a\x0d\x47\xeb\x92\x60\x00\x7e\x10\x67\x74\xdd\xf0\x02\xef\x05\x4d\xdc\xc0\x96\x38\xad\xc1\xfd\x43\xb4\x86\x15\xd9\x75\xe4\xf0\xad\x53\xb0\xfb\xd0\x58\x25\xa9\xaa\x52\x23\xd9\x4d\x47\x65\x29\x26\x5c\xca\x38\x98\xea\xbf\x26\xc9\x43\x38\xb3\xd0\xa6\x1c\xa7\xec\x06\x21\xb3\xd6\x3a\x1b\xe0\x13\x07\x35\x2d\x38\x86\x23\xc9\xac\x13\xf5\x51\xa2\x26\xec\xf2\x1b\x38\xee\x7b\xf2\xd7\xbf\x9b\x42\xc9\xf2\xf1\x0b\x15\x0b\xab\xdc\xf2\xa6\x11\xe2\x10\x84\x5f\x23\xa2\x4e\xbc\x2c\x64\x7f\x6f\x73\xc0\x9d\x0a\x85\x7f\xf3\x41\x6d\xff\x62\x58\xbe\xea\x76\x9d\xaf\x6d\x1f\xa7\xf7\x2f\x98\x45\x4d\x41\x66\xfe\xb4\xd8\x5c\xdc\xf3\x69\x22\xc2\x76\x28\xfa\x06\x06\x72\xe5\x66\x39\xb8\x69\xaa\x6a\xe4\xc7\x0d\xa1\xf2\x5d\x73\xa5\xd4\x00\x76\x48\x05\xe6\xde\xa9\x14\xd6\x36\x4c\x6b\x51\x90\x63\x96\x7d\x4b\xa4\xf2\x9b\x26\x5f\xa9\x35\x76\x36\xf6\x68\x43\xf3\x11\x1c\xa6\x34\x9e\x35\x6e\x51\x9d\xeb\x48\x3e\x84\x0a\x6d\x60\xe6\xd0\xf8\xa2\x3e\xbc\x6d\x78\xf4\x69\x95\x4d\xfc\x4d\x91\x58\x8b\xc5\xc1\xcb\xcf\xaf\x1f\x17\xff\x66\x33\xd5\x13\x95\xcf\x4e\xd5\x5f\x1a\x48\x8e\x0c\x24\x3a\x90\x7d\xa1\x3c\x34\x7e\x44\x1d\xb3\x0b\xc5\xe0\x9f\x34\x7e\x8e\x18\x5d\x09\xe9\xd2\xcc\xd5\xd2\x75\x9d\x72\x4d\xf7\xbd\x8f\x47\x22\xcc\x20\xd8\x03\xad\x79\xe7\x3b\xe3\x54\x5c\x08\xb3\x88\x52\x9a\x67\xbe\x92\x4d\x36\xee\xe5\x2a\x19\x48\x46\x37\xf3\x91\xf5\x97\x2a\x20\x37\x0b\xbb\x1e\x71\x08\xd8\xb1\x07\x67\x34\x7f\x05\xdc\x63\xf8\xae\xb0\x72\xcd\x0c\x3a\x27\xbb\xf5\x0a\xea\xae\x45\xa3\x72\x39\xb0\x05\xd3\xfd\x60\xc8\x39\x55\xe3\x58\x30\xb7\x3e\x7e\x56\xf3\xef\xf3\x5d\x81\xa2\x1a\x73\x86\xf7\x21\xb7\x62\xab\x84\x98\x0a\x05\x5d\xbf\x0c\xd2\x74\xe1\xe6\x52\xaf\xeb\xc2\x67\x4c\x3d\xe7\xf6\xd3\xc9\x17\xdf\x40\x86\x6a\x32\xfd\xe2\x06\xad\x8c\x07\x5c\xb5\x15\x2d\xd5\x3f\xff\xbc\x0a\xf1\x75\x2a\x58\x10\xb7\x7e\xd7\x71\xa5\x96\xaa\x99\x13\x96\x44\x49\x83\xc8\x45\x2f\xf3\x43\x75\x07\x77\xeb\xe7\x5e\x0a\x43\xcf\x8b\xd7\x06\x97\x9d\xb7\x6f\x1f\x7b\x4e\xa1\x07\x54\xb1\xd5\x10\xe3\x8f\xf3\x66\xf2\xd3\x95\x18\xf1\xf8\x94\x2d\xec\x04\xde\xde\x27\xec\xf8\x7c\x87\x58\xca\x70\x6f\xdf\x64\x19\xcc\xc0\xa7\x98\x07\x08\xc8\x39\x6d\x71\x19\x50\xf1\xc3\x57\x31\x77\x7f\x72\xfd\xc9\x0d\x24\xc3\x7e\xc5\xf3\xed\x48\x6c\x36\xd8\x7c\x50\xa8\x5c\x22\xcb\xf0\x63\xab\xe4\xfe\xec\xe3\x9a\x21\x7e\xdd\xb7\xeb\xb1\x53\xe2\x8f\x97\xca\xd2\x8c\x47\xf5\x68\x87\x70\xff\xe0\x51\x8a\xe8\x08\x35\x2d\x1f\x2e\x69\xee\xbd\x73\xfa\xfe\xd6\xaa\x15\xa8\xc3\xb7\x37\xe4\xb1\x64\x60\x30\x71\x09\x79\x91\x23\x4e\x6e\x94\x4e\x16\xf2\x5d\x8f\xda\x80\xd8\x80\x62\x7c\xa4\xa9\x7b\x75\x62\x93\x18\x9e\x80\xdd\xdf\xfb\xb8\x44\xfe\x45\x05\xf0\xb3\x3a\xfb\xc8\xb2\xb0\x11\xeb\x92\x65\xcb\x53\x35\x4e\x56\x95\x13\xda\x8b\xfd\xd9\x2b\xcf\x5c\xa5\x15\xf4\x78\xa0\x6b\x96\xdb\xe6\x8d\x48\x52\xa7\x60\xaf\xc7\xd6\x47\xd7\xba\x81\x91\x90\xfa\xdc\xb0\x4e\x5b\x52\x13\xcf\xa8\x86\xf9\x2e\xb1\xa4\xce\xed\x7b\x5e\xf3\x84\xa9\x12\xe6\xf5\x72\xe5\x98\xf0\x83\xad\x3f\x71\xb9\x7e\xc5\xa2\xe5\x3a\x2f\x7b\xbf\x35\x5b\xa0\x8d\x7d\xcb\x23\x5c\x17\x7d\x63\x43\xbb\x20\x0d\xf7\xfa\x06\xb9\xbe\x8b\x70\xd2\xf6\x13\x5d\x0a\x8a\x09\x3b\xd4\x77\x78\x97\x7a\xdd\xbd\x7c\xad\xb5\x02\x5b\x80\x4f\x4f\xdd\xcb\xf7\x2f\x48\x7d\x7f\xac\x9e\xde\x0d\x8a\xde\x40\x43\x20\x0a\x8b\xc1\x95\x87\x95\x8d\x03\x8c\x7e\x53\x5c\xf6\x1b\xd7\x8e\x4a\xf0\x09\x3d\xcc\x61\x5c\x5b\x56\x69\xa8\x38\x4a\xfa\x88\x9b\xd0\x09\x0d\x36\x29\x2c\xb6\x92\xaf\x48\x0b\x7c\xf2\x2e\x45\x89\x49\x20\x8e\xc2\xc7\x72\xd3\x02\x45\x22\xdb\xa2\x8c\x98\xa9\x06\x37\x1f\xa9\x74\xde\xd2\x5b\x57\xb4\x7f\x72\xab\x76\xca\x9d\xb6\x00\x17\xa6\x04\x03\xae\x5d\x29\xf5\x87\x0a\x61\xfb\x95\x19\x3a\x2f\xbe\xb9\x33\x67\x77\x84\x87\xf6\xaa\x47\x2f\x4d\x08\x3e\x10\x37\x26\x4f\xe4\xd7\x67\x87\x29\x79\x00\x80\x0e\xc3\x0e\x2b\x32\xee\xad\xed\xe1\xcf\x7c\x7f\xf9\x08\x75\xc7\xc6\xf1\xec\xb9\x5b\x1f\x92\x5f\xb9\x11\x9e\xfa\x12\xc2\xb5\xf0\x27\x34\x2b\x4b\x3d\x6c\x97\x10\x63\x28\x56\x74\xca\x1e\x7e\x39\x25\x58\x5d\xb7\xb0\xc7\x5d\xba\x60\xbc\xb8\xd0\x1a\x2a\x5d\xdd\xed\x42\x31\xb8\xf8\x1c\x3f\x6d\x9f\x60\xc8\xb2\x91\x0b\xd6\x94\x7f\xdf\x3b\x5c\xa4\x0f\xc6\x88\x58\x46\xe7\xfa\x87\xe9\xba\x20\x6e\x0d\x03\x37\x4a\x6c\xed\xcb\x2b\x93\x97\xb1\x4a\x2c\x51\x31\x64\x7f\x38\x4f\x23\x85\xa1\xda\x00\x6c\xf3\xdc\xfe\x43\xbc\xfd\x5d\x4c\x39\x53\x72\xd6\x0a\x79\x98\xb8\x8d\x01\x3f\x4c\xd6\xd9\x81\x70\x4d\x9e\x18\x6f\x5e\xc6\x6d\x7a\x0b\xc4\x31\x71\x1d\x3b\x60\x01\x6b\x87\xff\x03\xc2\xde\xef\x3c\x55\x93\xd9\x8d\x5c\xde\x3f\xdd\xa3\x59\x9a\xd4\x71\x98\x2e\x0a\xf5\xb0\x0e\x8b\x75\x10\x87\x2b\x00\x3b\x03\x39\xa6\xc5\xe7\x96\xdd\x0b\xa4\x0d\x17\x63\xb4\x12\xc9\x75\xef\x3f\x7c\xa9\xde\x0c\x52\xc6\x17\xa2\x6f\x5c\xac\x68\xbd\xf9\xe5\x32\xe6\x58\x78\x18\x69\x4e\x78\x41\x6d\x2f\x7c\xc7\x4b\xc3\xa4\x73\xd9\xe1\x2a\xa8\xa5\x1c\x4d\x97\x83\xd7\xb6\x2b\x73\xd5\x0a\x03\x45\xe0\xcc\xb4\x8b\x06\x1a\xee\x46\xc2\x35\x37\x3e\x7e\xa9\x32\x16\x0d\x43\x1e\x71\xb9\xf6\x60\x7f\xfe\xe3\x1b\x64\x4c\xee\x98\x53\x68\x07\xe7\xa4\xb9\xa3\x94\xbd\xe3\x1a\x9f\x08\x5e\xfb\x27\xcf\x0e\x91\x67\xbb\x50\x0c\x5e\xb9\x47\x1a\x5c\x59\xea\x2e\xff\x5b\x2b\x34\x45\x24\xe2\x88\xda\xe5\x0e\x33\x19\xb4\xeb\x30\x90\x48\x2b\x61\xaf\x9e\xca\xeb\x6e\xd0\x63\xb5\x11\xe3\x5e\xc2\xd9\x27\xf9\x51\xae\x5b\xa8\xe2\x8b\xee\x78\xc5\xc2\x94\x21\x46\x9d\xe3\x11\xc4\x69\xc9\x4f\x49\x15\xf9\x65\xc2\xec\x08\x97\x58\xec\xcf\xfe\x6a\xaa\x26\x3e\x60\x61\xc7\x49\x2a\x1c\xe7\x3e\xf7\x3a\x9f\xe8\xdc\x49\xac\xba\x0a\xf6\xce\x6c\x9e\x9a\x8c\x7b\x2e\x32\x4d\x64\x27\xff\x75\xf6\x66\xcd\x77\xc6\xf5\xeb\x75\xea\x62\x53\x28\x2d\x5c\xa6\x69\x82\xb2\x68\x60\x11\xfd\xfb\x13\x2f\xc6\x9a\xcc\xe1\x05\x0e\x1e\x6c\xe6\xe7\xd1\xc1\xf5\x2a\xa3\x16\xad\xf0\xaa\x27\x7f\xbb\xee\xfe\xe3\xcb\x6d\xd9\xc7\x58\x4b\xf2\xf6\xfa\x36\x72\x88\x87\x58\x04\xc0\xd3\x47\xd7\x3f\x3e\x7e\x99\x7e\xa8\xc2\x73\xec\x47\x8a\x2a\x2b\x8f\x6b\x65\x09\x01\xe1\x0a\x38\xfd\xbf\xea\xbc\x44\xc1\xeb\x95\x61\x88\x34\xf1\x7e\x59\x8b\x4f\x9f\x55\x28\x06\xb7\x5f\x88\x43\x95\x89\xad\x42\x31\xb8\xf6\xe1\x31\xf1\x8d\x4f\x36\x41\x5f\x5d\xad\x97\xad\x76\x5d\x34\x2b\x3f\xbe\x77\x88\x08\xad\xc2\xd4\x69\x8a\xe2\x9a\x6a\x82\x28\x7d\xf4\x18\xf7\xee\xd0\x51\x49\x0d\x82\xbb\xa3\x52\x2a\x3f\x6e\xd7\x48\x95\x20\x26\xa4\x80\x33\x4b\x1f\x48\x7e\x4f\x20\xcc\x47\x93\x4d\x7c\x78\x9c\xf2\x6f\xea\x75\x4b\xe5\xdb\x66\xe6\xae\x4e\x86\xc5\x06\x66\x6e\xb5\x44\xbb\xa1\xb4\x94\xf7\x65\xd4\x0e\x61\xcc\x64\xe1\x8a\xd8\x21\x7d\x6b\xb0\x26\xa0\x2e\xd0\x45\xc4\xe0\xb5\xe2\xbf\x6f\xe6\x4d\x13\x62\x18\x85\xd5\x6d\xf0\x81\x9e\x94\xe2\xba\xc1\xb0\xa4\xa7\x66\x7f\xbd\x31\x29\x75\xeb\xa5\xd0\xd4\x51\x10\xcc\xae\x94\x7a\xa8\x03\xa0\x6c\x9e\x68\x53\xa1\x1e\xbd\xbc\xb6\x7e\x69\xbe\x66\x13\x48\xa9\x38\xdd\xb9\xe7\x75\x24\x23\xb2\x2c\xea\x45\x63\xf1\x4f\x9f\x93\xa4\x5e\x0b\xa3\x72\x2a\x10\x3e\x74\x4f\x12\x3e\xd3\xd9\x06\x73\xb8\x37\x17\xe8\x78\x4c\x2e\x4d\x2f\x18\x07\x8f\x6c\x96\x04\x17\xbf\x10\xfe\xc9\xdb\x53\xe5\xaa\xde\xc5\x0d\xec\xa8\xc8\xea\xdc\x57\x56\xeb\x1d\x4a\x5f\x9f\x25\x77\xe9\x37\x69\x9a\x3a\x88\xeb\x1c\x08\x98\xd6\xee\x75\x97\x6b\xe7\xca\x23\x0c\x6c\xf8\x22\x31\xc1\x6b\xb4\xa5\x1d\xa3\xae\xab\xb9\x7c\x75\xe6\x2f\x89\x18\xfa\xad\x42\x28\xfa\xee\x66\x0d\x19\x40\x69\x2d\xda\xae\xda\x47\x06\x9a\x89\xc5\x7a\xd8\xdf\xd2\x8c\xb4\x7a\x29\xab\xf1\x81\xe0\xad\xcb\x3e\x1a\xdc\x3b\x38\x32\x36\x77\x3c\x2e\x9b\x1e\xb0\xa7\x93\x48\x2b\x04\x8a\xad\x58\x40\x4e\x53\x62\x7e\x7d\x1c\xe4\xb5\x18\x77\x13\x37\xad\xc9\xb8\xb2\x2f\xf9\x40\x62\x6d\xf7\x18\x45\xfe\x01\x65\x75\x5a\x46\x76\x58\x20\x03\xa2\x21\x9f\xcc\x0f\xae\x87\x4c\xe2\xdb\xe2\x51\x49\x74\xdf\x27\x2f\x8e\x0c\x01\x1c\x83\xbb\x22\x73\x20\xd6\xe0\x0b\xbc\x34\x98\xef\x5b\x69\x81\xc5\xcc\xbf\xbc\x27\x67\x23\xd1\xa2\x25\x4d\x89\x5c\xaa\xac\xfe\x5d\x4f\xf8\xd8\x67\xfe\xf9\x3e\xed\x2b\x51\xd6\x8d\x7a\xc5\x07\x83\xe9\xd9\xdf\xef\x97\x07\x0c\xa4\xcc\x18\x31\x78\x79\x01\x28\x9a\x69\x1a\x1f\x12\x95\xb8\xed\x53\xfe\xb3\x9a\x10\x72\x39\x7c\x23\x62\x1e\xf1\xa5\x77\xae\xd2\x7b\x35\x0b\x33\xd7\xc3\xc4\x49\x0a\xde\x3e\x2f\x64\x76\x25\x2e\xe9\x49\x9e\xb0\x3e\xea\x55\x09\xad\x13\xc5\x79\x5f\xc1\x46\x95\x2c\xea\xba\x00\x78\xc8\xce\x6d\x56\xca\x26\xbe\xf3\x0c\xff\xf8\x2a\x6d\x47\x14\x16\x0e\x11\x25\xfd\xc5\xe3\x12\x9e\x3f\x7b\x76\xa1\x18\x54\xc7\xf2\x11\xc2\xcd\x8c\x98\x5d\x44\x25\x6f\xff\xe4\x69\x39\x8b\xb0\xc1\x09\xb1\xd8\x9f\xb3\x15\x29\x2a\x64\x59\x80\x22\x87\xcf\x7e\xa9\x06\x2c\x70\x8d\x2a\xb5\x10\xb3\x38\x51\x2a\x6b\xbc\x93\x8c\x08\xed\xed\x10\x11\xbe\x7c\x48\x59\xd9\x61\xcb\x2a\x94\xb0\x98\xf3\xdd\xba\x43\x07\xc2\x03\x4a\x01\x9c\xb4\x87\x49\xc6\xdc\x4c\xd8\xaf\x37\xcf\xd6\x3c\xaa\x2d\x52\x13\xcc\x80\xec\x86\x07\x14\xfc\x64\x15\x33\x5c\xa6\x0c\x0a\xb0\xda\xcf\xf9\xd3\x5e\x4c\x1c\x0f\xa9\xa5\x50\xe9\x26\xfe\x1f\x6e\x47\x06\x36\xa9\x13\x59\x40\xf6\x67\x3f\xfc\x82\x40\x5c\x12\x17\xe0\xc1\x41\xdb\xa3\x72\x8d\xe4\x21\x17\x24\x4f\x3a\xcf\x4d\xd4\x0e\x9d\x57\x70\x29\xc0\xc4\xa2\xa1\x6a\x7f\xa6\x67\x98\x22\xbb\x6a\xac\xf1\xc3\xe2\x2e\xb2\x28\xdf\xf7\x8c\x5c\x3f\x5b\xa8\x44\x53\x9a\x54\x99\xbf\x9e\x4b\x9e\xb0\xa8\xed\x73\xeb\x42\x58\x82\xbf\xeb\xa7\xb7\x29\xda\x30\xb8\xea\x81\x41\xd9\x43\x27\xe4\x5b\xed\x26\x1c\x47\x9f\x9d\x76\x4e\x23\x3d\x50\x1b\x73\x05\x0b\x31\x44\xf8\xf5\x46\x6d\x9f\xc9\x69\x5e\x11\xb4\xbd\x3e\x25\x09\x6c\x25\x65\x3e\x43\x9a\x78\xcf\x18\xad\xfb\xb0\x05\x6c\xed\xcb\x27\xa4\xde\x92\x53\x4b\x05\x23\x9f\x45\xae\xc1\xc8\x21\x98\xdf\x8e\xed\xf3\x93\x25\x5f\x37\x65\x30\x47\x33\x2c\x04\x93\xc4\xf0\x73\xbe\x3d\x52\x45\x77\xf8\x15\x0b\x30\x40\xb9\x6f\x3f\xa3\x18\x82\xa4\x55\xe6\x7f\x3b\x59\xd3\x2c\x64\x88\x44\xa2\x45\xb9\x5d\xf7\x25\x73\xb0\xd5\xcb\x20\xa1\x0f\x60\x05\xf3\x6c\x4a\xba\xb6\x4e\x5d\x64\x09\xf8\xd6\xc2\xfd\x31\xe6\xc5\x44\x8d\xe8\x4c\x4d\xde\x98\x8c\x51\xdd\xe1\x11\x45\x25\xea\x8b\x78\x12\x3c\xb1\x50\x73\x38\xab\x51\x46\x8d\x6a\x8d\xa8\x3a\xd5\xc1\xff\x3d\x77\xa9\x2a\x2a\x51\xa8\x63\xd6\xe5\x73\x6d\x9b\xdc\xde\x43\xf1\xb3\x2e\xa5\x15\xce\xb2\xfd\xeb\x86\x8b\x8e\x45\x0d\x4e\x9b\xa2\x41\x3d\xb4\x17\xf5\x77\x93\x9d\x58\x3c\x24\x06\x94\x59\x94\x0e\x9f\xed\x9a\xa2\x65\x4c\xd3\xc1\xbd\x03\x26\xa3\x4d\x53\xb5\x31\x21\x75\x70\xaf\xe1\x7b\x5e\x82\x3a\xfd\xa9\x85\x72\x91\xe0\xf7\x95\x70\x0d\x2e\x11\xb0\xd9\xb3\x13\xd2\xa9\xcf\x40\x82\x43\x08\x4f\xd6\xd4\xe8\x8d\x73\x3a\xa6\xb7\x74\xb6\xb5\xf1\x4d\x48\xfe\x86\xa4\x57\x49\x0a\xb5\x18\xec\xaf\xeb\x2b\x45\xd7\x23\x36\x75\x7a\x79\x03\xb2\xf3\x50\xb2\x78\x82\x6d\x21\x07\x09\xaf\x61\x8a\xf4\x94\xe5\xf1\x2b\xf6\xf3\x56\xa5\x50\xc5\x90\x11\x60\xb0\xf7\x28\x9f\x84\xd4\x31\x73\xa9\x43\xca\xc2\x8e\x66\xfc\x81\x78\xb7\x50\x47\xb5\x04\x6a\xad\xa0\x19\x30\x33\x5c\xc7\x30\x30\x15\x07\x36\xbb\x79\x5d\xf2\xd1\x88\x49\x0a\x71\xbd\x48\x31\x26\xb7\x73\x87\x3c\x2d\x55\x40\xd1\xc6\x20\xf5\xfc\x17\xd6\x46\x28\x02\x6a\x70\x09\x91\xf9\x83\x34\xb4\x07\x71\x6b\x11\xdf\x2b\xfb\x9b\x07\x64\x30\x9e\x35\x1b\xc6\x91\x0d\xcd\x96\x1c\x39\x15\xcc\xa8\xef\xc6\xb3\x63\xf3\xb8\xc0\x39\x33\xe2\x45\x4e\x76\xd7\x1c\x90\xc1\xaa\x81\x2c\x02\xbd\x7a\x2d\x48\x37\xa5\x7c\x60\x37\x58\x27\x0a\x51\x50\x12\xe1\x2f\xe0\xf6\xac\x96\x0e\x4c\x33\xee\xdb\x9a\x5f\x1a\xab\x95\xf7\xae\x70\x71\xc8\x67\x1e\x93\x83\xb7\xc4\xd8\xf8\xd2\xb9\xc9\x6f\x54\x45\x02\xa5\xca\x22\x81\x9d\x91\xc7\x92\x7f\xc3\xf2\xed\xba\xcf\x84\x7a\x03\xa4\xf0\x3f\x29\x33\x38\x61\x68\x0e\xe7\x68\xdb\xab\x72\x7b\x11\xc6\xb9\x60\x57\x23\xd6\xa1\xed\x66\x25\x81\x90\xfc\x94\x14\x5b\x9e\xd5\x3a\x03\x2a\x74\x81\x49\xbe\x05\x60\xeb\x50\x95\x3f\x3f\x2a\x46\x7f\xab\xe0\x97\xdf\xe6\xe5\x93\x25\x26\x06\x60\x78\xe6\xe0\x4c\x4d\x16\xa6\x64\x44\x75\xf3\x17\x4e\xe9\x9c\x66\x93\xa0\xeb\xbc\x88\x02\x9c\x59\xf7\x4e\xf2\x62\x94\xc1\xeb\x32\x12\xd5\xce\xcd\x7f\x37\x42\x37\x7b\x62\xd2\xb1\xe6\xd0\x48\x91\x4f\x99\x42\x3d\xcf\xec\xae\xea\xb8\x55\x13\x25\x6e\xff\x7d\xaa\xb0\x64\x15\xd5\xb0\x20\xe5\xe4\x07\xed\x55\xa0\x52\xb4\xdb\x4a\xb4\x9d\x6b\x9e\x56\x25\x38\x41\xd2\x85\x0f\x7e\xd6\xdd\xa7\xd3\x69\x00\xe9\xc3\x11\x73\x13\x2d\x2e\x6c\xb7\x00\xfa\x39\x6f\x00\x4b\x89\x31\x3b\x15\x0d\x04\x50\xfe\x29\xaf\x55\x07\x4f\xa5\x12\x30\x90\x83\xa7\x5f\x1e\x2b\x45\x39\x3d\xf5\x6a\x65\xaf\x6b\xe2\x80\xa1\x15\x0c\xbb\x49\xad\xe4\xcc\xd7\x1f\xd5\x74\xb9\xc5\x72\x69\xc0\xf9\x78\x76\xdd\x7d\xba\x4b\x38\xf2\x78\xef\xc2\x0f\xf9\x1b\x9a\xc7\x66\x37\x46\x96\x57\xed\x15\x26\x4e\xad\x8a\xec\x0f\x63\x18\xf4\x8b\xb9\xde\x4a\xf6\xf2\xdd\xf2\xac\x98\x0c\x95\xa1\xaf\x3d\xfc\xb8\x02\x98\xbe\xc6\xc6\x88\x21\xe5\x78\x3d\xdb\x3c\xe0\xe2\xbc\x51\x2a\x14\x83\xa6\xa7\x78\x16\x99\x31\x03\xaa\xe6\x07\x76\xf2\x83\xb0\x8c\x7a\xd4\x46\x46\x34\xf6\x9d\x33\x39\x79\xcb\x2b\x7e\xaf\x28\xb3\xed\xb5\xc2\x81\xb8\x82\x23\x3a\xed\x96\xb1\xa3\xc4\x1f\x31\x12\xd1\x86\xc3\x17\xb8\x74\xc2\x25\x51\x6d\xe6\x09\x9f\x9c\xcc\x55\x93\xf9\x98\xc1\x15\x41\x26\xf3\xfd\x17\x93\x85\x93\x45\x9d\x0a\x37\x84\xd0\x2c\xd4\xce\x0c\x68\xdf\x27\x56\xd3\x5b\x77\x6b\xfb\x75\x62\xd9\xa2\x33\x6e\xd3\xec\xa3\x5c\x52\x71\x90\x15\x29\x39\x66\x5a\xf8\x28\xb5\x8b\x1b\x8f\xe4\x1e\x18\xcb\x33\xef\xc7\x24\x36\x38\x68\x39\x95\x5c\x95\x62\xa7\x62\x71\xd0\x73\x3d\xad\x31\x78\xfd\xec\x98\x78\xd9\x83\x62\x9b\x85\x49\x2a\x38\x2e\xb2\xbf\xcc\xe4\xe7\xca\x9d\xb4\xf0\x5c\xb5\x45\x25\xfc\xd1\xce\x91\xe2\x10\x83\xca\x3d\x71\x6d\xa8\x1b\x46\x7a\xc9\xa0\x56\x13\x7e\xd2\xf2\xdd\x37\x5a\x27\x6a\x65\x01\xab\xf5\x72\x3a\xb6\xbc\x90\xe7\x2e\x4a\x20\x3c\x61\x8d\x08\x89\xaa\x75\xa3\xe6\xd0\x91\x9c\x6c\xc0\xcc\xe4\x7f\xaa\x82\x39\xc4\xc1\x05\xcf\xe7\x3c\x95\x7f\x6c\x1b\xa1\x5c\x3e\x97\x7f\xc9\xec\xbd\x0b\x44\xdd\x28\x56\xc4\x70\x0a\xd6\x6a\x92\xd5\xb1\x71\x97\x98\x07\xcd\x79\x54\x7b\xdb\xa8\x4a\x2b\xc8\x11\x48\x9d\xdc\xf1\xc3\x97\xa8\x93\x5f\x8e\x60\x7b\x5a\xaa\x1a\x63\x7d\x85\x1d\xac\xda\x2d\x5f\x00\x72\x7a\x81\x59\x13\x0c\xee\x1a\x2a\x1e\x81\x4d\xc1\x37\x7b\xa3\xa9\xd3\xb6\xeb\x16\xed\x55\x26\x10\x99\xf7\x16\x70\x9a\xf7\xcd\x80\x59\x1b\xbb\x93\x5f\xa6\xf6\xce\x39\xe1\xff\xbc\xf8\x75\x8d\x43\x4f\x1d\xd7\xb7\xe3\x1d\x63\xa0\x99\x6b\x13\xbb\x4e\x5d\x57\x18\xf1\xc6\x2d\xfd\xbf\x76\x68\x7d\x2c\xe9\x09\x2b\x09\x78\xfd\x5b\x86\xe8\x29\xd6\x67\x51\x51\x5a\x3e\x92\xbc\xb2\x73\xda\xa2\xec\x51\x5a\x22\x08\x17\x54\xc0\x32\xfb\x33\xbd\x93\x2f\xe3\x6d\xad\x09\x4c\xea\xd4\x6d\xbb\xb4\x39\x8e\x98\x65\x52\x4e\x28\x1d\x3e\xa8\xf1\x56\xdd\x3a\x61\x24\xf2\x7a\xeb\xec\xd1\x26\xa7\x20\x41\xc5\xad\x39\x5c\x01\xc9\xea\xc6\x16\xef\x71\xf2\x5f\xe8\xd1\xd6\xdd\x24\x4c\xc2\xf2\x51\x1c\xcc\xea\x2e\xca\x1e\x53\x44\xf6\xcc\x0b\x11\x8b\x02\xb3\x42\x1d\x39\x20\xb8\x92\xad\x58\xe3\xd4\x76\x98\x24\x44\x45\x32\x7f\xe1\x9b\xd0\xc2\x12\xdc\xcd\x69\xe2\xb2\x54\xfe\xe0\x91\x26\xed\x6e\x39\x66\x24\x75\x9e\xd9\x79\x50\xfc\x2e\x86\x85\x53\x33\xa4\xa8\xe3\xfa\x9a\x37\x3c\xe2\x22\x81\x65\x4f\x1e\xd4\x3f\x3e\x13\x45\x21\x7c\xbb\xef\x5f\xd0\xb8\x72\x4e\x58\xf8\x90\x0a\x48\x1a\x72\x8f\xae\xd7\x06\xc9\x1b\xe5\x46\x7e\x2b\x97\x8c\x9e\xa0\x88\x78\x30\x8f\xa4\x83\x50\xbd\x47\xf7\x52\x10\x08\x02\x7c\x46\x91\x79\xc3\x88\x71\xe2\x5d\xde\x1a\xa2\x38\x1d\x47\xcb\x68\xb8\xa9\x87\x9f\x93\x73\x45\xd0\x5e\x27\x60\x94\x2c\x43\xc9\x2f\x34\xd2\x0a\x58\x7f\xc5\x68\xdd\x1f\x69\x95\xb1\x57\x0d\x0b\x10\x13\x45\xb8\xd3\x6c\x6e\xeb\xa5\x2a\x8c\x5f\x31\xdb\xed\xcf\x6d\xe9\xd3\x52\x6a\x24\x86\x23\x26\xa2\xd3\x3d\x7e\xae\x89\x5d\xb7\xf8\x56\xe7\xa6\xd5\x0a\xbf\xbd\x1a\x8b\x4a\xf7\x4c\x14\x56\x36\x56\x18\x44\x20\xd0\x65\xf7\xca\xef\xe5\x86\x11\x44\xef\x86\x7e\x39\x44\xb3\x34\x43\x8e\x47\x07\xec\x9b\x0e\x77\x8c\x55\xc4\x22\xc1\x77\x12\x8b\xc5\xd6\xb5\x67\xf8\xa9\x71\x0d\x46\x6c\x1b\x71\x1d\xc5\xfc\xdd\x27\x93\x83\x97\xbb\xc5\x58\xe4\xb8\xe2\x47\xec\x1a\x0c\x63\x90\x46\xc8\xbd\xbb\x50\xc1\xac\xaa\x64\xe5\xeb\x9f\x1f\xa6\x34\x35\x56\xa1\x18\x7c\x70\x74\xf2\xc4\xad\xf1\x01\x57\x1d\x41\x32\xef\x9e\x37\x5c\x5d\xc2\x72\x26\xdd\xa0\x89\x8a\xa0\x33\x38\xdb\x70\xbe\xda\xf2\x17\x92\xd1\xca\x20\x61\x05\xa0\xf7\xe9\x7b\x1f\x1b\xa7\xfc\x6b\x70\xa8\x56\xae\xd4\x07\x6e\xd0\x09\x11\x56\x24\xe0\x9a\xbb\xee\x30\x8f\x9d\x3e\x3f\x68\x0b\x5a\x85\x8e\x2e\x46\x10\x1d\x82\x85\x82\x7a\xe6\x52\xdf\x31\x0b\xc5\xe0\x53\x0b\xe4\xd4\xd1\x44\x1e\x02\x33\xf7\x54\xe7\x7c\xe2\x1e\x99\xd9\xba\x91\x87\x59\x45\x7c\x9d\xcf\xd5\x75\xfb\x42\xea\x61\x43\x6e\xaf\x1e\x9b\x9b\x6c\xd1\x2a\x08\x59\xb0\x7e\x92\xcf\x7b\x74\xab\x26\xc4\x5f\xc7\x11\xc0\x84\xdf\xae\x2d\x7b\x14\xc4\xb4\x45\x5d\x70\xff\xe8\x7a\x54\x53\x65\xe2\x2a\xaf\x1e\x37\x75\x84\x03\x31\xad\x47\x77\xa6\x32\x4d\xec\x88\x39\x5d\x66\xaa\x39\x24\x4a\x6c\x33\x3b\xc3\xfc\x7b\x57\xf2\x4e\xd1\x12\xa4\xd6\xb8\xdb\xcc\xd5\x97\x2a\x97\x9c\x98\x98\xfa\x80\x01\xb7\xef\x95\xc7\x8b\x4b\xab\x87\xbd\x8d\xb3\x6c\x84\x78\x79\xae\x47\x3c\x4e\x99\xec\xcf\x5d\x79\x50\xfb\x44\xa2\x9f\xe5\xeb\xc7\xaf\x6f\x94\x07\xcf\xa9\xc3\x5c\xf6\xd3\x81\xa6\x3a\x4b\xc2\x6a\x26\x1a\xa3\xff\x5f\xc5\xa4\x13\xb9\x61\x05\x16\xe6\x54\xf8\xee\x5f\xda\x99\x4a\x69\x8e\x27\x40\xc2\xdf\x69\xd1\x02\x28\x76\x5c\xee\xaa\x04\x77\xf8\x13\x3b\x85\xea\xa0\x5f\xf3\xad\x2e\x25\xc8\x4f\x55\x46\xc8\x5e\x15\x39\xb5\x84\xb7\xe3\x2d\xd9\xb8\xbd\xe3\x93\x8b\xcc\x9a\x75\x32\xcc\x82\xfb\x0e\x8c\x23\xd8\x4b\x63\x94\xae\xa5\x5e\x07\xbf\xb3\x30\xca\xfc\xf6\xa4\x06\xd6\xf6\x19\xad\xe3\x84\xcd\xdf\xca\x56\x09\x7d\x77\xd2\x84\xa4\x5f\x1d\x1c\x9e\x9c\x8d\x17\x8a\xc1\xde\x05\x5a\xfb\x67\xda\x84\x37\xcf\xf9\x95\x5a\xca\xad\x52\x0f\x5b\x02\x57\xb5\x5b\x1b\x94\x21\xc7\xf1\x63\x2e\xd8\x82\xc7\x15\x6d\x75\xdf\xb3\x11\xd7\x74\x0b\x8e\x4d\x4d\xde\xcb\x0a\x69\x44\x6b\xee\x2c\x9e\x24\x1f\x9e\xef\x98\x98\x01\xaa\x3b\x2a\x64\x5f\xd2\x46\x30\xa2\x3e\xe5\x80\xdf\xfe\x9c\xf5\xf3\x91\x2a\x48\xa3\xd6\x7b\x0d\x9c\xc8\x73\xf3\x27\xab\x90\xe5\x05\x2b\xae\x93\xe3\x93\x84\xdf\xea\x38\xc5\x59\xda\x64\xc4\xa9\x09\xde\x39\xd3\x14\xe4\x50\x83\x0b\x52\x8a\xd1\xc3\x9e\x9d\x4a\x79\xed\x84\x6d\x29\xcc\x1c\x56\x69\x2d\x57\x15\x03\x75\x93\xe3\x6e\x57\xbe\x30\x4a\xfd\x4c\x4b\x97\x2e\xbb\xae\x58\x28\xde\x20\x0f\xaa\x45\x1d\x13\x58\xdf\x1c\x41\xbb\xf8\xad\xeb\x93\x3f\x8d\x58\x16\x41\xb6\x5b\x70\xa9\x43\x6d\x34\x10\x03\x22\x7f\x75\xab\x6a\xbe\x2f\x30\x26\x61\x50\xf8\x4f\x5d\x47\x02\x23\xc9\xd8\xfc\xfd\x5e\xf9\x06\x26\x75\xf9\x76\x89\x4e\x52\x0a\xfc\xcf\xea\xda\xbe\x3d\x06\xae\x8b\xf5\x74\xb0\x72\x26\xcf\x74\x1d\xed\x2d\xb3\xa6\xcf\x00\x55\xa3\xfb\x8e\xeb\x45\xa9\x5d\xf7\x3d\x2c\xa0\xb9\x99\x7b\x1e\xe0\x61\x58\xb8\xe9\xdf\xbc\x58\xd7\x3f\x11\x36\xca\xe2\xce\xdd\xbc\x5e\xf1\xfa\xc0\x8c\x81\x31\x57\x76\xed\x2e\x1e\x44\x90\x57\xb5\x40\x6c\x1b\xaa\x8a\x2f\x4c\xe0\x1f\x46\x50\x74\x0a\xc5\xa0\x73\xaa\xac\x33\x6c\x54\x41\x7d\x60\x44\x1f\xfe\xdd\x99\xab\x93\x51\xb2\x81\x0c\x5c\xe3\x82\xc8\xd1\xad\x1e\x3a\x5b\x9f\xb2\x59\xc0\xd4\x8a\xcb\xc5\x9b\xce\x28\xd5\x92\xcf\xb8\xcc\xd8\xae\xbc\x72\xb7\x11\x83\xa3\x11\xec\x68\x52\x6c\x90\x1a\xd8\xf1\xf8\x6e\x6a\xbe\xe2\x00\x67\x33\xd5\x60\x64\x8f\x5e\xc9\x41\x53\x20\x74\x38\xb2\xcb\x15\x13\xbd\x12\xf8\x52\x87\x01\xb6\x50\x0c\x0e\xb7\x24\xef\x99\xcf\x4a\x28\x32\x85\xfb\x6e\x89\x3f\x9d\x32\x97\x0a\x01\xa1\xa3\xbe\xe1\x0a\x24\xd5\x86\xf8\xfc\xed\x9e\x89\x5a\x4a\xc7\x84\xd1\xbe\x04\xf7\x39\xc7\xb6\xc5\x21\xcd\x26\xe1\x17\x2c\xf4\x49\x4e\x2f\xe9\x8a\x00\x33\x9d\x9d\x3a\x00\xde\xad\x09\x75\x5c\x8d\x7f\x52\xb2\x10\x61\xc9\xcd\x6a\x66\xec\x41\x85\x6b\x3b\x23\x7c\x69\x6b\x14\xa6\x61\x15\x47\x68\x9e\x7a\xd7\x24\xbd\x70\x70\x30\xa3\xae\xb6\xad\x9f\xae\x9d\xb4\x12\x0e\x5b\xff\x30\xc9\x84\x0f\x35\x98\x71\x72\xb8\x8c\xdf\x85\x5e\xea\x87\x0f\xa8\x7b\x55\x92\x7d\x24\x54\x56\x06\xc4\x5d\xbc\xf2\x94\x82\xd9\x53\x94\x0c\xf3\xcb\x5f\x55\x51\x80\x46\xac\xe4\x99\x5b\xb8\x4a\x8b\x8a\x7e\xdc\x8a\x64\x56\x1d\xd6\x1e\x1d\xd0\xb2\xe0\xd8\x7c\x6e\x7d\x72\xc4\x8e\xb9\xdc\x5b\xd8\x38\xe8\x6d\xd5\xa1\xea\xa5\x2a\x21\xc2\x11\x8a\x1f\xd0\xdb\xad\xb8\x4f\x17\x31\x31\xf8\x26\x5e\x74\x20\x57\xcd\x4e\xde\x10\xc9\x5f\x09\xcb\x6d\x60\x12\x2f\x7f\x4e\xab\x71\x60\x82\xed\x60\x91\x0e\x72\x57\x6e\x14\x17\x12\xce\x28\xf4\xb3\x9f\x58\xad\x0a\x5b\x1a\x35\x50\x42\xed\xcf\x77\x9f\x29\x24\xbf\x93\xd3\x20\x8c\x42\xd6\x46\xd6\x80\xf3\xaf\xfd\xd3\x34\xd8\x1b\x08\x2d\x29\x0b\xa9\x1f\x6d\xe4\x13\x0d\x86\xdd\x3a\x05\xb4\x19\xe4\xff\xb6\x15\xbc\xcc\x6b\x6f\x99\x31\x3b\x6c\xa2\x33\xce\x94\x38\x75\xfa\xad\x69\x71\xf2\xd5\x5a\x14\x28\x53\xea\xb9\x1e\xae\xc7\xa6\x54\x6f\x7b\x72\xd4\xdf\x40\xae\x01\xad\x02\xd3\x64\x78\xbd\xde\x7a\x64\x71\x1f\xdc\x7f\x91\x82\x67\x36\xc2\x14\xc9\xf7\x00\x97\xbd\xd0\xa4\xb2\xb8\x3c\xe2\x18\x61\xb8\xe1\xd0\xba\x47\x5f\x8d\x57\xff\x06\x66\xf0\xd0\x72\x73\x9a\x34\x2d\x36\x3f\x25\x5e\x95\x5b\xfe\x80\xe2\x18\x5e\x2e\xbb\x18\x26\xf6\xdf\x5a\xca\xb5\x0c\x61\xdf\x1a\x9e\x9f\x92\x45\x5c\xe1\xe3\x7d\x5b\x57\xf2\xa5\x5a\x18\x55\x7c\xf9\x5c\x33\x7f\xd9\xa6\x45\x6c\xc3\x2f\x97\xc1\x0a\x81\xcf\xc1\x27\x6c\xb9\x4a\x2b\x10\xcc\x01\x25\x8c\xef\x38\x3a\x4e\x09\x94\xe1\x9d\x50\x37\xcf\x6f\xe7\x75\xcd\xdd\x92\xef\xf1\x91\x60\xb6\xf3\xa2\x54\x86\xc1\x25\x64\xd4\xc4\x4c\x60\xeb\x11\x0d\xef\x88\x98\x00\x1d\xe5\x73\x8a\xec\x11\x6b\x35\x5b\xcb\xad\x61\x12\x7b\xfb\x86\xc9\x5a\xa0\x1f\xf8\xcc\x65\x7e\xf1\x4e\x93\x52\xe7\x85\x9d\x65\x99\xfa\xcc\xab\xc2\xeb\xfb\xdd\x0a\x3e\xd9\x9b\xd3\xda\x06\xe7\xea\xad\x75\x6a\x9f\xd3\x05\x9c\xcb\xf0\xcf\x7f\x29\x4c\x6e\x41\xae\x08\x72\xdc\x96\xa3\x9a\x03\x2d\xf7\x1d\x84\x7b\xc6\x6b\x87\xaa\xa3\x28\xe5\x12\xa7\xc2\xf1\x8d\xf9\xc2\x7a\x5d\x43\x91\x79\x88\x58\x42\xf0\xeb\x5c\x43\xe7\x60\xd2\x32\x07\x5d\x08\x94\xc2\xa6\xad\xc9\x39\x23\x34\x93\x84\x0e\xe8\x03\x99\xfd\x87\x49\xc3\x45\x72\x5d\xe3\x13\x53\x28\xf4\xfd\x66\x5e\x4a\xc0\xdc\xf5\x59\xa4\x17\x95\x39\xb3\x50\xe7\x08\xbb\xbe\x8d\xc5\x6b\xfa\xeb\x7b\xba\xce\x9b\x4b\x1c\x2a\xfe\x63\x5b\xd7\xa5\xa9\xa2\x03\x9b\x40\xf5\xcf\x5d\xf7\xa2\x42\x7b\x63\x11\x07\xf2\x3e\x45\xe5\x07\x4a\x1f\x44\xe0\xc6\x07\x9b\xce\xf3\x0b\xcf\x78\x03\xd2\x9f\x9f\xfc\x62\xac\xe7\x85\x15\x5e\x4e\x7f\x76\xc3\x21\x1d\x9b\xe4\x82\xd5\x1a\x1f\xf9\xae\x3f\x35\xb0\x99\x70\xb7\x3a\x0d\xfd\xe1\x5a\xa9\xcb\xad\x90\xe8\x82\xf9\xe5\xd4\x5e\xb8\xc2\x90\x1d\x89\xa5\xef\xd5\xa8\x8f\x62\x9b\x2f\xfc\xdf\x87\xbf\x70\x99\x92\xf6\x98\x5b\x25\x6e\xc2\x7d\xe8\xb7\x37\xe9\xef\xb1\x4c\x5d\x8c\x6b\x03\xc6\xcd\x5d\x7d\xca\x24\x9f\x8f\xb4\x95\xc2\x63\x65\x67\x32\x97\x12\x86\x06\x30\xc5\xc8\xbc\xd6\x90\x0f\xdb\xf3\x99\xc3\x2d\x3a\x40\x48\xe6\xbe\xd1\x72\x90\x27\xd9\x28\xc1\xdb\x77\xc5\xc9\x7c\xc6\x9c\xb0\xa9\x39\xbb\x3d\x05\xcd\x22\x0d\xe2\xf1\xd5\x6a\xe6\x5b\x9a\xa9\x8b\x49\x22\x88\xe2\xdb\x4f\x47\x0a\x80\x0c\x73\xf4\xe4\x07\x54\x39\x25\xcc\x12\xca\xac\xb9\x0f\x6e\x9d\xa8\xa7\x28\xd3\xc7\x5a\x69\xd0\xe4\xc8\xfe\x92\x34\x50\x78\x00\x3f\xf4\xd8\x78\xec\x40\x4e\x02\x6a\xca\x42\x64\xc1\x51\x89\x75\x9a\x3e\xf0\x2a\xdf\x41\xac\xc0\xaa\xbe\x57\x70\x70\xde\xe5\x7a\x07\xa9\x35\xf5\x6f\x6c\x91\xd5\x40\x64\x30\x0a\x7b\x97\xa5\xf7\x29\xb4\xb0\x30\xda\x85\x7f\x58\x3d\x2c\xff\x36\x2c\x9f\xb9\xe5\x73\x70\x7d\x47\xaa\x36\xc5\x8e\x67\x61\x57\xcc\x02\xf3\xeb\x1f\x49\x50\x82\x3d\x2e\x0e\xd2\x9f\xdb\xd3\xd0\xc7\x67\x88\xc5\xb0\xc8\xec\xf2\x1e\x15\xd0\x8f\x62\xca\x5d\x66\xf7\xb4\xb1\x12\xab\x91\x78\xc2\x99\x79\xc1\x18\xa5\x42\xc7\x4e\x01\x55\x38\x3b\xf2\xec\x4b\x4d\xa9\x37\x1c\x65\x89\xcc\x37\x6f\x10\xd8\xc9\xb0\x04\xe3\xf7\xb2\xf5\xac\xd4\x5f\x56\xaa\xcd\xe0\xe6\xa3\x9a\xb9\x20\x63\x20\x1e\x25\x7e\xd2\x97\x46\x8a\xb9\x4d\x0d\x24\xd0\x82\xf3\x8f\x8e\x8b\x00\x79\xcb\xe7\xa7\xd7\x3a\xe7\x86\xc4\x9f\x76\x46\xa1\x18\x2c\x18\x76\x85\xd6\xe9\xd9\xc4\xea\xe5\xab\xce\xa8\x80\xbb\x68\x5b\xf2\x0c\xf9\x0e\xb1\xeb\x18\x19\x55\xd1\x11\x42\x33\xf0\xf7\xc9\x91\x2f\x08\x00\xd4\x79\x7c\x7c\xf1\xa8\xaa\x3d\x65\xfa\x9c\x92\xbf\xb5\x9a\xcc\x90\xbd\xb8\x86\xc2\xc8\xeb\x94\x7c\x56\xe1\xf1\x24\xec\xe9\xff\xf0\x28\x7f\x44\x42\xb0\xab\x50\x0c\xba\x35\xfb\x02\xfe\xf0\x04\xe6\x20\x3f\x74\xaf\xaa\x75\x52\x83\xfd\xe4\x3f\x4e\x14\xc9\x86\xd1\x3a\x1f\x57\xff\x51\x96\xee\x33\xa6\x73\x9b\xac\x0d\xc9\xe1\x6d\x47\xa4\xb6\x98\xfb\xb0\x26\x87\x6c\x61\xcc\xc4\x06\xf1\x8d\xe5\xb2\x71\xc5\x16\x11\xfc\x25\x48\xcf\xe8\x45\xd5\x84\xad\x1c\x2f\x5f\xcd\x41\x89\x62\x54\xd8\x15\xf1\x62\x74\x51\xab\x4c\x96\xb8\xa7\x4e\xc3\x2c\x02\x19\xe4\x80\xbc\xdb\x31\x1a\x31\x9a\x0d\x3c\xcd\x06\x98\x77\xe3\x18\xde\xf9\xd0\x24\x7e\x45\x57\x52\xab\xae\x84\xf9\xfc\xed\x93\xf8\x81\x59\x82\x18\xe8\x45\x67\x3e\xae\xc1\x6b\x1c\xe4\xa2\xd4\xe8\x31\xe8\xb7\x44\x83\x80\x88\x45\x23\x4f\xe1\x13\x4e\x1c\xee\x4c\x5b\x6a\x48\x05\x63\xa6\xc9\x85\x11\x45\xd5\xb0\x99\xc8\x7e\xf8\x26\x5d\x6b\xa8\x4b\xb8\x3f\x86\x45\xc8\xad\x6d\x1a\xdc\x96\x84\x35\xb3\xf0\x69\xc9\x7f\x51\x53\xdb\x70\x11\x22\x66\xc4\x95\xbe\xf5\x9c\x14\x81\x07\x11\xa2\xec\xfb\xf3\xd4\x29\x69\x03\xbb\x1c\x6b\x20\x50\x31\x7b\xf3\x71\xb3\xe6\xd7\xc4\xd3\x0c\xc6\xce\xe5\x4f\x65\x3e\xe5\x56\xce\xf4\xb9\x14\xb8\x25\x42\x3a\x0c\x1b\x14\xc1\x43\xb0\xb0\xe7\x25\x0f\x6b\x54\x3c\x1c\xd6\x64\x11\xb9\x25\xf7\x3f\x77\x24\x32\xb6\x4b\x38\x97\xe6\x77\x6f\x69\x19\x95\x11\x37\xfc\xbf\xd4\x75\xe3\xd9\x5f\x76\xea\x59\x8d\xd4\x8a\xea\x56\xb4\x11\x97\x61\xfe\xa1\x36\x4d\x92\xc0\x65\x08\x5b\xc4\x15\x12\x58\x61\x33\x3a\x4b\xab\x76\x44\xe9\xe0\xc2\x28\x49\x0f\x13\x5f\x9a\x2d\x2f\x2e\x2d\xf9\x82\x25\x74\x53\x5e\xc3\xc8\xf9\x26\x8a\x18\x07\xb0\xc6\x76\x95\x89\x3a\x4c\xaa\x78\xa3\x37\xe3\xcd\xf4\x48\x04\xb1\xd8\x38\xed\x5b\x73\x93\x2f\xb7\xc2\x88\xe7\x09\xde\x79\xf6\xc7\x59\xd5\xfe\xa4\x0c\x08\xcc\x8b\x66\x0e\x08\x30\x86\xc3\x30\x62\xae\xb0\xfc\xc6\x86\x87\xc2\x4a\x31\xfc\x07\x63\x35\x7a\x77\x34\xd8\x84\xab\xfc\xdb\xb7\x34\x3b\x04\xe4\x5b\x1a\xc8\x79\xda\xde\x81\xd0\x34\xfc\x05\xd1\x21\x9a\xb2\x24\xb2\xb0\x63\xa2\x18\x33\x9c\x79\xf8\x65\x1d\xe2\xce\x00\xfc\x12\x77\x6a\xdf\xd3\xa6\x1d\x60\x07\xed\xc6\x2b\xd0\x5d\xfb\x47\x28\x2b\x1b\x2e\x7b\xdc\x9f\xfb\xab\x23\x23\x03\x28\x24\x87\x8d\x4a\x24\xce\xb3\x61\xaa\x82\x01\x64\x88\x6b\x1f\x07\x5d\x5b\xc6\x49\x59\xce\xd4\x2b\x9f\xa9\x58\xa7\x76\xce\x6a\x9d\x03\x13\x87\xc9\x3b\x54\xb7\x40\x14\x49\x2c\xec\x9c\x1c\xef\x7e\xc3\xa3\xa1\x97\x47\xa7\xf7\xe9\xc8\x34\xc2\x34\x6a\x89\x35\x3a\x39\x59\x50\x65\x65\xf4\x1f\x77\x74\xae\xac\xb6\x90\xe9\x5b\x9e\x1b\x9d\xe9\xf1\xcb\xe2\xe5\x3f\xf2\x7b\xa2\xfb\xbd\xb2\x39\xd9\xcf\x54\x41\xd0\x0f\xa0\x82\xc9\xaf\xbc\xb3\x55\x60\x2b\xa0\x7c\x83\xe0\xed\x1c\x1d\xab\xf4\x8b\x8a\x6b\x60\xf0\x5e\x59\xfa\x8e\x5c\xe3\x21\xd6\x87\x9c\x6b\x54\x21\xd0\x1e\xb1\xdb\xa6\x5c\x20\xb1\x3f\x3b\xe2\x22\xd9\x7a\xda\xad\x8d\x56\xd0\x2d\xcf\xbd\xfc\xa4\xb6\xa1\x63\xc8\x71\x0d\x46\xea\x1e\x17\x22\xcd\xee\xcc\x8f\x52\xd7\x06\xd8\x81\x2e\x29\xd8\xf9\xaa\x42\x8b\xf6\x91\x05\x48\xd6\x1b\x9f\x94\x9f\x76\x7a\xbb\xc2\x0c\x08\xbe\x7b\x24\x8e\x89\x55\xf0\x8a\x19\x77\x6f\x64\xd6\xed\xba\xc4\x14\xbc\xbc\x4f\x08\x27\x28\x44\x2c\x71\x72\x8a\x4f\x69\xdb\x13\x6c\xd7\x29\x43\x8c\x00\x9e\x05\x0a\x8e\x47\x35\x70\x5d\x47\xa7\xaa\x64\x02\xc5\x40\x7e\xdb\x98\xc4\x77\x60\x51\x84\xc8\xfe\xeb\xb3\x57\x6b\xb9\xa6\xcf\x64\xc8\xc3\x4e\x8d\x26\x3d\xd5\xdb\x5f\x56\xb1\x1a\x96\x55\x28\x51\x53\x68\xbc\x7e\xb9\x43\x91\xc5\x42\xae\x8b\x0c\x48\x96\xb9\x99\xfb\xc5\x2b\x40\x8c\xf7\x67\x39\x7f\x81\xfc\x21\xb3\x0b\x36\x75\xbc\x6a\x04\xa2\x39\xf6\x88\x2c\xd4\x7d\xb5\x9b\x78\xf6\xe2\xe4\x0b\xea\x9c\x51\x70\xb1\x41\x1d\x53\x7c\xff\xbc\x7d\x6f\x32\x6c\xe3\x7a\x9d\x2b\x3f\xa9\x8d\xd0\x87\xf7\xc8\x46\x48\x95\xb1\xba\x63\xd9\x87\xc4\x31\xe1\x0a\xb6\xcc\xe4\x49\xfa\xce\x5e\x9c\x80\x20\x7e\x79\x97\xc6\xd6\x65\xa4\xe4\x3b\xc8\x8a\xa6\x2e\x6b\x5f\x55\xf5\x24\xc3\x46\xac\x50\x0c\xd6\x4d\x1c\x2e\xaa\x0b\x16\x66\x19\x10\xd5\xca\xdd\xbd\x5b\xe3\x01\xc1\x35\x06\xe6\x73\xb0\x75\xa7\x2c\xaf\x85\x18\x17\x58\x67\xcd\x5e\x16\x9f\x9e\x06\x85\xdd\xfa\xe4\xa3\x1a\x6b\x8a\x11\x80\xbb\xc1\x38\x7a\x63\x5e\x31\xea\xf2\xa8\x51\xab\x52\x01\x39\xc8\x6e\x7b\x6b\x84\x42\xca\x6b\x60\x0e\xc4\xf9\x28\x9b\xa8\x77\x9a\x5c\xc1\x42\x08\x6a\x42\xd6\x44\xaa\x3d\x0e\xf6\x3c\x41\x6a\xfc\xda\x78\x3e\x09\x2a\x21\x86\xcb\x94\x42\x0b\x94\x1b\xd2\xac\xd2\x01\x53\x73\x8b\xcd\xea\x88\x2a\x02\x56\x6a\x18\x3e\x44\xf8\xe6\x45\x40\x5e\xfc\x3d\x7c\x7c\x46\x7d\xcf\xf5\x90\x13\x39\xe9\x76\xbf\x19\x9b\xf3\x53\x9f\xcf\xb1\xb3\xb7\xcf\x16\xeb\x6e\x70\xbb\x86\x3f\xfa\xcb\x09\x59\xeb\xb9\xd4\x0f\x13\x6d\x64\x9b\xfa\x76\x76\x8c\x96\x2f\xca\x42\x86\xe7\x44\x49\x71\xcb\xec\xc1\x86\xef\x11\xae\x82\xd2\x3a\x85\x8f\xab\x6e\x45\x96\x85\x2a\x55\x2c\x47\xe5\xc1\xcb\x4f\xe9\x40\xac\x06\x97\x9a\x0d\x3e\xbf\xe8\xbf\x79\xc6\x34\xa6\xdb\xf4\xe7\x1e\x3c\xa0\x25\x46\x0b\xb9\x11\x59\xab\x3f\x73\xf7\x10\x0e\xde\x08\x13\x52\x01\x97\xcb\xc4\x20\xd8\x31\x40\x2f\x7f\xe1\x78\x7d\x76\x8b\x98\x09\x11\x2c\xd8\x7d\x41\xb7\xbf\x27\x4e\x25\x1a\x89\x7c\xf7\x26\x6d\xb0\xd1\xc0\x8e\x90\xcb\xce\xf4\x1e\x56\x79\xd6\x6a\x83\xfa\xe1\xb9\x8a\xe2\x1d\xab\x20\x87\xf4\x71\x7a\xca\xd7\x4b\xfa\xa6\xce\x8e\xf6\x13\xc1\xe4\xb1\xc9\xd6\xc6\xad\xd2\x3e\xaa\x29\xb7\xfb\x4f\x6b\xc9\xbb\x4a\x1c\x24\xd9\x31\xc1\x5b\x96\xae\x1e\xc6\xe9\x5a\x62\xa9\x9e\x9f\x35\x44\x16\x3c\x7c\x22\x0f\x41\xbe\xfe\x73\xc5\xfb\x04\x23\x2f\x8c\xf2\x75\x21\x8c\x94\xff\xe8\x60\x79\x75\xcd\xf0\x8d\x86\xaf\xf8\x67\x7b\x39\x40\xe8\x0e\xd4\x18\xc8\x4a\x37\xfb\xb5\xcd\x11\xaa\x2b\x0c\x45\xc0\x7a\x6f\xdf\x7a\xe5\x40\x65\x43\x81\x21\x58\xe3\x09\x2c\xea\xce\x67\xaf\xd4\x4a\x53\xe6\xf9\x7d\x7d\x24\xb1\xd0\xc8\xfc\xf6\x82\xfc\xc0\x16\xaa\x25\x62\x51\x36\xeb\x8d\x4e\x6c\xd5\x84\x60\x44\x70\xf5\x48\xd9\x14\xc3\xac\x43\xca\x7c\x1f\xab\x26\xd9\x10\x33\xdb\x05\xe6\xfc\xc1\xdd\x72\x96\x83\x2c\x0b\x57\x70\xf8\x65\xe2\xe3\x7c\xe7\xb0\xb4\x55\xa3\xa0\xf7\x4d\x58\xab\xdd\x57\xdf\x04\x63\x48\x91\x36\xab\x23\x35\x2e\x31\xf5\x99\x8b\x23\x24\xc6\xfe\x8e\x91\x4a\x0d\xc5\xac\xf0\xff\x17\x83\xaf\x2d\x48\xb3\x15\x30\x8b\x24\x8f\x32\x44\x99\x21\x94\x7c\xcb\xc2\x80\xde\x09\x8e\x6e\xd2\xdc\x66\x48\x8f\x4c\x80\x7c\xa7\xfb\xbc\x86\xb7\xa3\x65\x6e\xad\x1e\x8d\xc0\xe7\xad\xd3\x26\x6d\xd8\x22\x46\xec\x2c\x98\x79\x65\xae\xbe\xad\xc4\x51\x43\x10\x3c\x53\x56\x8d\xbf\x39\x9a\xac\xd8\x9f\x2b\xdd\x2f\xbd\xc8\xba\x51\xa1\x18\x0c\x9e\x29\xc1\xfd\x7c\x46\x98\x92\x1d\x3f\xa0\x0b\xcb\x5a\x56\x04\x69\xf8\xed\x3e\x9d\x1a\x28\x24\x2e\x88\x50\xdc\xc8\xfc\x51\xc3\x21\x59\x61\x37\xc9\xa2\x9a\xf5\x32\x0d\x69\x46\x18\x5a\x43\x84\x49\x4d\x58\xb8\x4d\x7f\x48\x7e\x0b\x75\x3b\x62\x0e\x20\xdb\xc4\x47\x33\x65\xed\xd3\xc2\xef\x13\xff\xed\xfe\x6d\xf1\x0a\xc3\xa0\x56\xea\xee\x5c\xbf\x4b\x07\x57\x30\xa5\x4d\xfe\xf4\x85\xb8\x1b\xb4\x90\x13\x19\xcf\xe4\x2e\x7c\x48\x74\x8f\xb0\x1d\xfb\x50\x43\x4c\x37\x40\xeb\xbc\x42\xc2\x00\xdb\xb2\x9e\x47\xc7\x8f\x55\xa9\x45\x4d\xaa\x98\xc6\x8f\x99\xa9\x8b\xb8\x82\xbf\xc9\x35\xd7\x84\x1f\xf6\x63\x27\xa5\x53\xa8\x55\x56\x26\x63\xaf\x9c\x53\x6d\x9b\x18\x71\xf9\x0c\x65\xc6\x05\xd5\xe0\xc4\xc4\xac\x8e\xb8\x57\xe8\x5d\x17\xeb\x92\xc1\x24\x9a\x63\xdd\xbc\x5b\x81\xf1\x2b\x9a\x38\xb9\xdf\x3c\x3c\x4a\xf9\x1d\x54\xc4\xa4\x60\xfc\x5d\x4d\xd1\x5e\x5e\x76\x95\x51\x53\x77\xf5\x33\x93\x94\xd9\x44\x9c\x96\xf4\xe3\x74\xdf\xaa\xb8\x16\xf7\x89\xc0\xfc\x07\x3f\x3b\xa0\x88\x0c\x62\xbe\x60\x79\x69\x3f\x87\x91\x2c\xe8\x86\xb6\x45\x99\xe3\x6e\x91\x83\xe9\xa4\xca\xd6\x3b\xba\xa6\xb0\x45\x5d\xdc\x88\x39\x48\xd1\x0f\x70\x14\x07\x0b\x40\xf1\x72\xf0\x59\xe6\x8d\xe3\xba\x45\x76\x25\xba\x6a\xef\x3e\xc5\x5f\xac\x50\x5d\xe5\xbd\xd5\x9f\x4a\xd2\xd9\x1c\xc4\x0a\x00\x88\xa2\x96\x67\x9b\xdf\xd2\xed\x04\x1c\xc3\xf2\x4d\x1c\xcd\x24\x32\xed\x27\xfe\x1b\xcf\x34\x28\x0f\x32\x4d\xfc\xb7\x76\xb4\xb5\xcf\x28\x74\xb4\x75\xb4\x01\xb8\xf5\xac\xf2\xf5\x89\x42\x44\x6a\x1f\x3f\x24\xfe\x31\xdd\x20\x7c\x37\x2d\x19\x3e\xb8\x61\x11\x65\x22\x14\x5e\xd8\xaa\xd4\xfe\x76\xa1\x18\x5c\xe7\x25\x4b\x8e\xe9\x73\xc4\x8a\xe4\x9b\x8a\x82\x5e\x67\xa1\xbd\xfd\x7a\xae\xe6\x38\xf4\xb9\x38\x98\x74\x74\x84\x21\xef\x9d\x37\xb5\x61\xb5\xeb\x22\xdf\xe2\x20\xd4\x60\x71\x9b\x4e\x53\x74\xb1\xc0\x15\xe7\x5e\x98\xa0\xcf\x69\xc3\xa7\x1c\x19\x21\x14\xfb\x33\x2f\x0f\xd7\x13\xac\x41\x6d\x1b\x3b\xa6\xd0\xa4\xbb\x6a\x2c\xbf\x64\x2b\xa9\x45\xdd\xaa\x3a\x16\x2d\xbd\x24\x87\xd6\x16\x98\xe0\x5f\xc1\xf8\xc1\x5a\x8a\xbc\xaa\x62\xe4\xdf\x9f\xfd\xa3\xc6\x67\x47\xae\x1b\xbe\x52\x42\x5d\x85\x3f\xd6\x9f\xff\xec\xb9\x21\xa2\x63\x06\x3d\xce\xfe\xec\x0f\xd7\x5d\xaa\x95\x6a\x0c\xc7\x44\xe6\x96\xeb\xb4\x3b\x2e\x15\x24\x07\xb0\x11\xcb\x0f\x3d\x1a\x5f\x0f\x0b\x55\xa3\x11\xde\xff\x79\x2f\x7e\xd2\x75\xda\x28\x14\x83\x43\xbb\x35\x57\x3c\x5b\xc8\x43\xe6\xc7\x28\x0d\x20\x18\xc4\x82\xa8\x56\xb3\x9a\x9a\x41\x21\x82\x2b\xec\x68\x43\x09\xdf\x01\x83\x0e\xe2\x09\xfe\x51\x7e\xea\x63\xd1\x6a\x3a\xec\x06\xe0\x50\xbe\xbd\x4a\x2d\x3f\x0d\xe2\x09\xfc\x55\x7f\xee\xf3\x87\xd5\x5f\x6d\x85\x19\x27\xf8\xc4\x8e\x2b\x52\xb9\x93\xb2\x30\x3f\x44\xe2\xb0\xfd\xb9\x4f\xef\x49\x0c\xe1\x6d\x61\x70\x9a\xf9\xe3\xf2\x31\x7a\x73\x43\xf9\x0c\x77\xc8\x69\xb1\xe6\x55\x86\x19\x17\xbd\x30\x3c\x3e\x1d\xa5\x48\x33\xf9\xcc\x7d\xca\x04\x42\x1f\x66\x04\xdf\xbc\x29\xfe\xaf\xf5\x2e\x5d\x7b\x27\xf8\x6a\x43\xb2\x3f\xea\x6e\xaf\x51\x95\x52\x14\xb9\xf3\x17\x8d\x55\x86\xb7\x91\x78\x01\x14\x75\xc7\x5e\xbe\x4c\x51\x64\x72\xbd\xb0\xa4\x57\x9c\x2b\xc6\x1c\x4c\x4e\x1d\x3c\x24\x5c\x52\xf5\x74\xf4\xcc\x66\x15\x76\x8a\x98\x05\xe3\x82\xcc\xfc\x52\x7c\x14\x0a\x30\x6e\xcb\x5c\xb1\x51\xd7\x7d\xe0\x00\x1c\x51\x4a\xff\xd7\x85\xe4\xa9\xee\x26\x0e\xf8\x49\xb8\xc8\xc2\x76\xac\xcc\x99\x7d\x6a\x99\x9c\x85\x1a\x16\xb2\xeb\x09\x6b\xf5\x5b\x87\xa7\xf0\x47\x0d\x90\x69\xe4\x98\xef\xcc\xd1\xbb\x34\xe3\x76\x8c\x6a\x96\x34\x6e\x1f\xbd\x52\x40\xdd\x09\x75\x30\x07\x99\x5f\xcb\xa5\x17\x0b\x0b\xc3\x3a\xd4\x52\xab\xcc\xec\x37\x1f\x1e\xa3\xd7\x68\x75\xbe\xef\x9a\xbd\xf0\xb2\x54\x2d\x0b\xae\xc9\x22\x8e\xb4\x9e\xe3\x1d\xd0\x7c\xcc\x1c\xa0\x91\x2b\xd9\x61\x48\x9f\x04\xa0\x0b\x73\x35\xe5\x77\xfe\x7a\xb9\xe6\xdd\xe5\x5b\x15\xc4\x08\xe2\xf5\x2f\x9c\xa5\x3f\x2e\xd3\x59\x08\x42\xbe\x28\xe6\x01\x7c\x7f\x8a\xa6\x96\xe2\xa1\x72\x39\xfc\x03\x95\xab\x55\xd4\x1d\xfd\x28\x73\xa4\x74\x40\xfe\xb3\x3d\x8a\x02\x0e\x33\x09\x0c\xaa\xb7\x6d\x50\x7a\x5c\xe4\x78\x9c\x8d\x92\x5f\x37\x45\x11\x7d\xe8\x75\x4c\x28\x0e\xdd\x48\x5e\xa1\x29\xf9\x7b\x2a\xd8\x09\xc3\x7f\xa4\xb3\x87\x5a\xf4\x79\x64\xdd\xf3\x99\x74\xaa\xc8\xb5\xaf\xd2\x24\x18\x90\xa7\x02\x47\x72\x5b\xb6\x6b\x5b\x6b\x0e\x45\xe5\xf5\xbb\xdb\x22\x3f\xf0\xf4\x8e\x19\x2d\x9d\xed\xb0\x43\xf9\xc4\x69\x05\xd3\x11\xc9\x06\x15\x83\x85\x4f\xcb\xe1\x6d\x09\xb1\xf0\x54\xe7\x6f\x7b\x3e\xb5\x14\x97\x0b\xb8\x5b\x16\xfe\xff\x68\x99\xc9\x47\x3d\x78\xaa\x96\xd0\x04\xa7\x35\xa8\xad\xd3\x8e\xb3\xd0\xcb\x8b\xe0\x74\xe7\xab\x29\x4c\x80\x80\xe1\x0a\xab\xda\xb7\x9f\xd3\x4a\x6f\x0b\x08\x06\x50\xd6\xe7\x27\x69\x84\x57\x13\x11\x0e\x1a\x0e\x1e\x7a\x52\xd6\x39\x65\x61\xd7\xfc\x67\x4d\xe2\xd8\xa5\x4e\xfc\x8c\x9b\xaa\x8a\x3a\x26\x9c\x13\x01\x4b\xed\xcf\x4c\x3a\x95\x9c\x90\xd9\x98\x74\x0d\xa8\xc4\x98\xf5\x1e\x4a\x7e\x9c\x30\x28\x89\x06\xe4\xd5\x26\xbd\x36\x14\xff\x29\xe8\x79\x77\xa4\xfa\x9b\xeb\x02\x83\x61\x6b\x2e\xae\x06\x46\x2e\x2e\x94\x09\x13\xa6\x09\xee\x99\xb1\x0a\x94\xdd\x97\xf2\x34\xc1\x77\xd8\x08\x05\x8e\x6f\x12\x03\x4e\xe1\x1b\x26\xd7\x54\x80\xe1\x87\xba\x21\x9e\x37\x5c\x15\x98\x2a\xf1\xa7\xcf\xab\xd0\x5f\xfc\x7c\x84\xa2\xfc\xe7\x83\x53\x7e\xb0\xbe\x2c\xc9\xa1\x2c\xcc\xf2\xd7\x9c\x4c\xbe\x21\x62\xdb\xbe\xc3\x63\x62\x70\xec\x78\x9c\x64\x5d\x69\x84\xb6\xe3\xfd\x71\x8a\xb6\xa8\xc7\xd7\x89\x76\x84\x42\xfc\xfa\x22\x0d\xeb\x6a\x21\x6e\xd8\xc3\x13\x7d\xbe\xf9\x88\x98\x91\x82\x7a\x79\xa1\x18\xb4\xcd\x95\xf6\xd1\xb3\xb8\x5c\xc1\x58\x4d\x27\x31\xb6\xd7\x4d\xc8\x21\xf5\x4d\x54\xa4\x12\x28\x08\x64\x67\x3e\x7b\xf6\x2a\xbd\x90\xac\x50\x0b\xbb\x38\x59\xda\xe6\xeb\x17\x49\x12\x8a\xf0\x3d\xd1\x8f\xc3\xd1\xbb\x92\x97\xc2\xa4\x51\x6f\x5c\x3f\xcc\xb3\x6a\x2f\xf5\x1d\x61\x66\x94\x7d\x63\x41\xaa\x29\x6a\x10\x23\xca\x2d\x9f\x1c\x7c\x99\xfe\x90\xb1\x19\x7b\xdf\x07\xcb\x38\x00\x13\x70\xbc\xe1\xb1\x95\xe1\x76\x87\x62\x81\x5d\xc2\x16\xc1\xe5\xf0\xc7\x3d\xae\x85\x1c\xce\xc3\x8a\xd5\xd0\x73\xf3\x36\xc8\x32\x88\x34\x80\xb3\xa1\x93\x9b\xab\x52\xda\xf2\xa5\x17\xf5\xbc\x08\x26\x43\xa6\xd8\xda\xf6\x8c\xd5\x66\x08\x95\xb0\xdc\x0c\x6f\xe9\xbd\x67\x35\xc1\x65\xe4\x46\x82\xcb\xd9\xfa\x4c\x45\x48\x24\x92\x1d\x09\xee\xbb\x47\x56\x3e\x25\xdf\x84\x7d\x69\x76\xd5\x46\x25\x81\x13\xbb\x6e\x71\x75\xe9\x0f\xbf\x97\x1a\x91\x36\x90\x21\x5c\x92\x4f\x2f\xe2\x59\xf1\x16\x64\xd7\x4b\xd8\x52\xa9\xd5\x17\xbf\x93\xfc\xbc\x4e\xa4\x70\x1d\x7c\x6f\x25\x2f\x48\x17\x62\xdb\x86\x59\x6e\x65\x89\xfe\xd2\x3c\x4f\xda\xdb\xff\x95\xab\xe3\x16\x6e\x41\x2e\xee\x4d\xed\x77\x56\xce\xe3\x3d\x87\x4d\x3d\x1a\x36\x97\xfc\xda\xaf\x93\xaa\x10\x00\x7f\xe2\x7e\xc1\x88\x73\x61\xf3\x53\x66\x6b\x8d\x2c\x62\x36\x62\x35\xc0\x21\xe5\xbd\xf5\x97\x29\x37\x99\x35\x30\xb1\x2c\xa0\x9d\x8a\xc2\x63\xf8\xf1\xc8\x9d\xde\x41\xdc\xf7\x37\xf8\x52\xdf\x30\x85\x74\x0f\x8d\xd2\x36\x4f\xd3\x35\xf7\xb5\xa6\xae\x74\x83\xdc\xfe\x74\xb4\xcd\x6a\x9b\x59\xe8\x9c\x3e\x07\x24\x4f\x76\x1f\xd1\x86\x97\x88\x61\x6e\xc4\x03\x9b\x8c\x67\x75\x45\x0b\x8c\xbc\x5e\x3e\xb7\xcb\xfc\x7e\x7e\xcc\x30\x0f\x3b\x21\x31\x95\xb8\xa5\x9a\xd8\x76\x09\xc4\x5a\xf6\x89\xe5\xa3\xa5\x0f\xab\x5a\x3c\x2d\x1a\x2e\x2d\x1d\x67\xc3\x47\xda\x7b\x5e\xa9\xc7\x91\x63\x12\x13\xc1\xbc\x34\x7b\x78\x82\x7a\xbc\xd8\x1a\x9f\xf3\xc2\x9b\xce\x08\xe1\x09\xbb\xce\xb0\x21\xbc\xca\xff\x91\xc9\xe1\xb1\x64\x6a\x72\xae\xfc\xf7\xde\xd3\x5a\xbf\x68\xb0\xc4\xbf\xd7\x9b\x9a\x94\x86\x61\x85\xaf\x4b\x71\x24\xff\xe0\xfb\xc9\x4a\xc6\xa2\x4e\x25\x26\x0c\x47\x1b\xcb\xab\xee\x57\xbc\xbd\x62\xeb\xba\xb0\x11\xfc\xce\x3c\x75\xed\xe0\x7a\x34\xec\x47\x33\xfe\x0b\x97\x89\x92\x0f\x63\x93\xda\xa9\xa3\xf7\xa1\x75\x1a\x47\x16\x58\x3c\x1a\xdc\x79\xdf\x5d\xb2\xfd\x00\x6c\x84\x4d\xfa\xf8\xf3\x5f\x7f\x17\xff\xf1\xb7\xe3\x2a\x62\x69\xcd\xc1\xec\xaf\x56\x0a\x25\x66\x46\x69\x3d\x8c\xd0\x2b\x06\xab\x33\x32\x9b\x70\x1f\xb5\xcc\x5f\x9e\xd5\xa5\xda\xb1\xcb\x23\x64\xe6\xd1\x03\x97\x29\xf2\x84\xe9\xe5\xe8\xe7\x34\xfc\x01\x20\xc7\x22\x4e\xf3\x7d\x52\x7d\x19\xf9\x3d\x85\x62\x30\x6e\x99\x7c\x4a\x16\xa6\x0e\x40\xc4\x2f\x9c\x9a\x28\xb7\x56\xc4\xa8\x92\x4a\x4a\xa5\xb4\x3f\xbf\x66\x82\xc2\xf7\xa7\x36\x06\x29\x94\xf0\x03\x7e\xa4\x4d\x21\x01\x23\x9b\x58\x5c\xd4\x3b\xf8\xf3\xab\xaa\x38\x30\x30\xf0\x20\x18\xf5\x2e\x56\xc9\x34\xaa\xce\xf3\xa7\xb6\xe9\xca\x7f\xdd\xbd\xc2\xd1\x54\x16\x58\x2b\x5e\xd0\xff\x52\x18\x1c\x92\xb0\xb1\xfc\x95\xda\x00\xca\xb0\xfc\x92\xa8\xd7\xbf\xbc\x59\x51\x75\xc6\x61\xcc\xde\x3a\x56\xbb\xab\x91\x60\x4d\xf6\x8f\x73\x47\xab\x5d\x22\x0c\x5c\xe0\xbd\x1f\xd2\xf4\xbc\x7d\xcb\x0a\x33\x6b\xf2\x53\x64\xab\xa7\xf4\xb2\xdb\xf2\x6d\x87\xb8\x1e\x1f\xb5\x5c\x92\xe7\x83\xbc\x05\x18\xba\xb8\xcc\x24\x47\xd6\x1f\x15\xc4\x99\xe5\x22\xd8\x1f\xd4\x58\x3a\x50\xe5\xf3\x19\x47\xa3\x23\x19\x6a\x6a\xc4\x8a\x65\xd6\x82\xe5\x0f\x2b\x7e\x81\xd4\x84\x62\xbc\x50\x0c\xbe\x3e\x6f\xa4\x52\xf0\x47\xca\x8f\xd9\xd3\xcb\x93\xb9\xd0\xaf\x33\x4a\xbd\xa8\xa5\x0a\xfe\xa4\x98\xaa\x96\x89\x43\xc0\x83\x48\x86\x9c\x9f\xbe\x23\xff\xb3\x51\xf5\x19\xf8\x7c\x48\x1c\xc8\x8e\x13\x9a\x37\x0a\xb2\x51\x34\x26\xcd\x74\xcd\x6f\x96\x24\x85\x94\x73\x5c\x7e\xe8\x04\x91\xa2\x7a\xeb\xcc\x77\xd5\xd6\xf6\x1f\x47\x2b\x72\x4c\xbd\x06\x4d\xaf\x27\x76\x6d\xd1\xc9\x05\x0e\x2e\x13\x2f\x86\x38\x3c\x7c\x46\x43\xf7\x60\x6e\x6b\x0c\x0f\xf7\xfa\x6c\x12\x99\xe2\x1a\x62\xb0\xcf\x5f\x74\xf2\x26\x7e\x4a\x93\x5e\x66\x34\x2c\x1f\x71\x2c\xac\xb2\x76\xc2\x40\xdd\x11\xa7\x16\x16\x83\xd7\x9e\x17\xba\x56\xe1\xfb\x53\xb7\xbe\xe3\xdf\x1a\x23\xea\x4e\xd7\x43\x15\x5c\xf0\x90\xa0\x42\xfd\x71\xc2\xd8\xb8\x5c\x00\x99\x04\xf9\xb0\xef\x18\x2c\x0f\xae\xef\x58\xa8\xbb\xec\x83\x4b\x5a\xe6\xd7\x63\x27\xc8\x28\x49\x85\xc9\x63\xf2\x61\xcf\x5c\xa9\x71\x1b\x39\xef\x87\x38\x15\x41\x43\xcc\x1b\x0b\x15\x0c\x07\x69\x10\x40\x91\x05\xb7\xcd\x57\x76\x12\xe1\x57\x5f\xe3\x43\x4d\xf2\xfb\x4d\xfc\x98\x2f\xc5\xdc\xc9\xf6\x0b\x67\xf4\x0b\x6c\x30\x14\x46\x71\x2a\x00\x76\x61\xbe\x5b\xba\x5b\x8e\xa2\x99\xca\xbf\x31\x17\x09\xd6\x7d\xf8\xcc\xbe\xd2\xe0\x8c\xa5\xe9\x33\x61\x4c\xb9\x2c\x2f\xc7\x31\x91\x05\x43\xee\x93\x79\x1d\xc2\x43\xfd\x3a\xdf\xf9\x05\xab\x1d\xcd\x07\xd8\x44\xb6\xab\x25\xf9\xc5\xcf\xe8\xf3\x54\x4b\xe0\xee\xc5\x1c\xf0\xcf\x2f\x0c\x11\xd7\x18\x79\x55\x48\x0a\xc3\x25\x5b\xa0\x0f\x13\x07\x95\x94\x18\x47\x37\xca\x8a\x7f\x52\xea\x08\xfd\xf2\x80\x7c\x86\x96\xef\x18\xd5\x12\xed\x09\x7f\x87\xe9\x68\xcd\x63\x04\x65\x14\x41\xed\x86\x85\xba\xea\xb7\xcd\x59\x49\x7c\x7f\x99\x63\x63\x39\x2b\xab\xb3\x60\xe3\x0a\x2a\xf5\x72\x22\xec\xa7\xb7\xeb\x86\xa0\xc2\x96\x1a\xb6\xb4\x27\x34\xe6\xb8\x8d\x4c\xcc\x61\xde\x37\x1d\x17\x08\x51\x10\x96\x0e\xdf\xfd\xa9\xe7\xe5\xdd\xe7\xea\x3a\x09\x20\xea\x47\x8e\x5c\xa2\xe8\x44\xf0\x02\x6e\xd1\x41\xb1\xb7\x80\x42\x51\xe8\xed\xfc\xa0\xa4\x98\xe8\x98\x36\x61\x7c\xea\x6d\xbe\x28\x24\x30\x08\x8b\x68\xb6\x85\x62\xf0\xd5\x0d\x62\xb9\x5d\xc7\xa8\x06\x48\xf3\x5b\x85\x49\x47\x39\x3c\x50\x50\x71\xdf\xb1\x52\x5e\x04\x07\x87\x3f\xb8\xc6\x61\x8d\xbb\x47\xcb\x8f\x44\x10\x0a\x7b\x81\xfc\xbc\xad\xca\xb9\xf6\x9d\x1a\x61\xb5\xf0\x8f\x6f\x09\x34\x14\x16\x28\x10\xf2\x95\xba\xa8\xe8\x0e\x6b\xd8\x14\x10\x72\x4e\x16\x11\xcd\x8f\x5e\xa5\xd5\xd2\x35\xcc\x31\x70\x49\x44\xc0\xb7\x1f\x8d\x97\x3e\x55\x70\x47\x86\xfb\xd0\xfa\x9e\x82\x13\xe8\x15\x4a\xbd\x3b\x17\x68\xd0\x3a\xe0\x6c\x5b\xee\x75\x05\x27\x6c\x7d\x0a\xc5\xe0\xed\x16\x25\xfe\x13\xb3\xd0\x3e\x67\x0e\xa8\x72\x4f\xdf\x15\xd7\x8d\x1e\xb6\xe5\xe4\xba\xb8\x4f\x97\xa3\x67\x0c\x3b\x46\xe4\x61\x35\xf9\x75\x29\x27\x35\xbd\xad\x50\x0c\x16\xb4\x2a\x68\xf3\x48\x82\x0b\x1a\xbb\x25\x0b\x94\x42\x03\x7c\x28\x41\x1f\xe6\x19\x2d\xb6\x54\x11\xc3\x1c\x92\x21\x52\xee\xe3\xe7\x9b\x06\xa8\x22\x39\xbd\x24\x93\xe1\xee\xfe\x10\xf1\xea\xca\x52\x4b\xd3\xc9\x28\x51\xc7\x8f\x2a\x20\xb2\x5d\x7e\x0e\x86\x40\xa0\x3a\x6c\x31\x8f\x69\x4e\x98\x46\x95\x60\x95\x38\xbd\x6e\x95\xac\x33\x15\x9a\x36\x50\xb4\xd9\x78\xbd\xb6\xb7\x08\x04\x30\x31\xe6\xaa\x8c\xbf\x5c\x7b\x2d\x80\xec\x40\x9e\x00\xca\xf7\x67\x26\xdd\xc0\x63\x7d\x18\x4b\x50\x89\xc6\x46\xe7\x99\x29\x5c\xff\xaa\xb0\x88\x5a\x16\xed\x56\xbd\x7e\xb2\xdf\x3e\x25\xd6\xec\xa4\xe2\x08\xc5\x9c\xdc\xb8\x97\x47\x27\x5b\x5a\x61\xc0\x90\xbb\x7c\x78\x5c\xe4\x44\x46\x22\xad\x93\xbb\xf5\x25\x34\xe8\x1d\xea\x84\xe4\x73\x13\xc7\x2b\xfa\x34\x4e\x5a\x01\xff\x3b\xab\x26\x69\x09\xd3\x0a\x6b\x46\x4e\xf2\x51\x4c\x58\x5b\xc6\x68\x2f\xc5\xf7\x84\x3c\xe7\xb6\xb1\x0a\x48\xaa\xa6\xf4\xe8\xb9\x57\x5a\x34\x60\x7a\x05\x4e\x1f\x94\x1f\x57\x3e\x19\xef\xf4\x7d\x0b\xa9\x3b\xfd\xcc\x0f\x76\xc4\x77\xa6\x81\xa3\x45\x69\xa6\x43\x48\x2e\xd8\x89\xa9\xeb\xbf\x34\xc9\x61\x67\x2f\x46\x0c\x9e\xfb\xef\xca\xfc\x85\x2c\x21\x61\x30\x52\x3e\x50\x65\xb3\x4a\x15\x02\x51\x03\x08\x54\xff\x70\x40\x21\x98\x12\x01\xe6\xcc\x6c\x7e\x57\x6e\xe7\x20\xcf\xa4\x9e\x6e\xfb\x4d\x32\xc0\x7b\x55\xca\x84\xc7\xf0\xcd\xe7\xb9\xfa\xeb\x22\x90\x82\x4a\xa5\x85\x2b\xb5\xf9\x6d\x85\xa1\x86\xc2\xa7\xb3\x9f\xe1\x19\xa8\xb3\x65\x7a\x5b\x98\x08\x73\x1b\x1f\x93\xdf\xb1\xa3\xad\xd0\x1e\xfe\x61\xe6\xcf\x9a\x02\x83\xe7\xb3\xd8\x14\x6c\xd5\x16\xad\x52\x15\x72\xe7\x7c\x17\xb7\x61\xb3\x8c\x8b\x6b\x7c\x62\xd4\x38\x80\xea\xcf\x33\x15\x5e\x0f\xaa\x13\x2f\x0c\xcd\x90\xf2\xbf\xb4\x51\x3e\x35\x8f\xd4\xaa\xd4\x81\x0d\xd2\xb7\xdb\x74\x99\x13\x0f\x33\x98\xde\xc0\xd6\x3b\x6c\x1a\x5e\xed\xd4\x2e\x57\xd5\xa1\xb6\xea\xa8\x34\x5d\x28\xbd\x10\xbb\xce\x81\x09\xf0\xf9\xff\x63\x2b\x0f\xfc\x25\x86\xb9\x3a\x6c\xd6\x3f\x92\x84\x79\xb4\x4f\x17\xeb\xa5\x75\x4f\x37\xeb\x8f\xc1\xa6\xc4\x12\x7e\x35\xb9\xe1\x2f\xe9\x1a\xdc\xae\x47\x23\x1b\x9f\x1f\x3f\xa7\xa3\x32\xb0\x87\x9d\x18\xed\xed\xdf\x20\xa7\x68\x0d\x02\x15\x46\x73\xa7\x62\x53\xcf\x68\x17\xe6\x33\xc8\x27\x86\xa9\x96\x87\x94\xd9\x94\xa3\x1e\x2f\xd1\x54\xff\xc9\x40\x42\xe2\xc1\xaa\xa7\x15\x8e\x3b\x2a\x63\xaf\xb7\x50\x0c\xe6\x77\x8e\x16\xa1\xc3\xc6\x4c\xe1\x48\xe4\x7e\xf2\xa4\xb2\xbc\xb7\x84\x73\x68\xf0\x4a\xab\x66\xae\x68\x59\x60\xae\x28\x94\xf8\xb2\xa7\x8f\xc8\x79\x48\xc7\xcc\xe9\xe1\x1f\xdd\x71\x57\x32\xdd\x84\x49\xc6\xab\x62\xa0\xb6\x08\x1d\x9e\xcf\x8c\x94\xf3\x81\x5a\x95\x60\x5f\x69\xdc\xda\x37\x8d\x52\x35\x4d\x90\x67\x80\x71\x48\xee\xee\xa9\xfc\x83\xcf\x04\x02\x67\x61\x7a\x81\x38\xa0\x76\x92\xc7\x17\xa9\x0a\xa9\xc8\xe3\x36\x23\xcd\xba\x75\x4b\xc9\x22\x86\x88\xbc\x87\x1f\x91\x5f\xb5\xcc\x50\x05\x4a\x8d\x60\xb2\x42\x06\x2f\x5b\xa8\x9b\xd3\xcc\x57\xae\x97\x1f\xa7\x97\xfa\x51\xa6\xcd\x9d\x1b\xc6\x0f\xd8\xad\x3e\x66\x8c\x70\x0c\x54\x7f\xf6\xdd\x8b\x2e\x57\xe8\x22\x25\x92\x86\x72\x3c\xfd\xc0\x04\x2d\xc0\xf2\xdd\x37\x69\xc4\x8c\xf9\xdf\x9c\x4e\x9e\xc9\x08\xe6\xfd\xe8\x93\x72\xa7\x52\x62\x61\x19\xc9\x6b\x7c\xc0\x52\x9d\x72\xf4\x3d\xb5\x41\x2b\x0e\xe9\x8b\x92\x49\x6e\x95\xe2\xe7\x15\x81\x40\x38\x1e\xf1\x96\xe5\xa3\x62\xab\x3f\x29\xa1\x1b\x6c\x38\x74\xb9\x38\x29\x2e\x28\x36\xa4\x35\x9f\xf6\xdd\x23\x41\x8b\x08\x57\x30\x72\x12\xe1\xf6\x95\x47\x84\x07\x5f\xb9\x8c\x59\x94\x8b\xa6\x89\x99\x1a\xab\x62\x8f\x32\x70\x22\xcd\xce\xdb\xa8\x18\x9d\x5b\x88\x2b\x52\xfb\x2c\x49\x92\x16\xd3\xaf\x01\xf6\x91\xb9\x51\xd3\xa2\xd6\xa1\xc7\x2b\x14\x83\xbb\x96\x68\x03\x39\x14\x5e\x1c\x42\xfd\xa8\x5f\xbf\xbc\x65\x82\x56\xb2\x32\x17\x87\xfd\x14\xdf\x39\x86\x85\xd4\x6d\xf7\x29\x81\xdb\x03\xd5\xf2\x62\x7f\xf6\x51\x25\xc2\x75\xbb\xb5\x35\x85\xb2\x1d\x3e\xc0\xdb\x26\x24\x73\x98\x63\x9b\x82\xc4\x35\x4a\x91\xde\x87\xee\x3d\xfb\x37\x6d\xd2\xee\xfa\x96\x45\x1a\xc8\xd1\x58\xbf\xf3\x06\xcb\x1b\x22\xd6\x63\xd1\x04\x2d\xef\x1d\xe4\x5f\xb7\x4c\x89\x55\x28\x06\xff\x32\x81\xff\xcf\x95\x94\x85\x07\x61\xce\x69\xa5\x88\x46\x04\xea\x18\xb5\xfd\xad\x30\x8c\x6b\xa9\x84\xb3\x42\x9a\x58\xb9\x6e\xf8\x63\x7e\x5a\x4d\xe9\x30\x85\x49\x28\xcc\xce\xfc\x12\xfd\x49\x33\x12\x2f\x51\x5a\x0b\x63\x94\x92\x70\x8e\x3c\x26\x08\x37\xa4\x52\xf5\x30\x17\x12\x59\xf3\xe4\x78\x65\xb2\x15\x95\x29\xca\x37\x3f\x7a\x41\xa8\x1c\x00\x3d\x10\x2e\xc4\x5c\x73\xb4\xb2\xa0\x51\x2c\x39\x1e\x93\x47\xba\x8a\x1c\x13\xf4\x25\xe1\xf0\x9c\x3e\x98\x6c\xc8\x23\x42\x6e\xef\x00\x42\x81\x99\xe5\x2b\x93\xb1\xa2\x7d\xce\x9c\x59\xf1\x77\xf8\x75\x43\xc0\x9d\x7d\x30\x08\xbb\xb3\x49\x31\x40\xc6\xae\xcb\xe5\x9e\xf3\x7e\x1f\x8f\x06\x14\x8c\x06\x28\xe5\xb0\xda\x6b\x8e\xca\x40\x0f\x63\xca\x62\x70\xdd\x5e\x4d\x61\x04\x55\xb8\x3e\x19\xd4\x63\xef\x6f\xd0\x97\x87\x11\x4c\x28\xb1\x2f\x3e\xf8\xf0\x25\x51\x72\x63\xb4\xc1\xbf\xf1\x27\x15\x8f\xa7\x29\xc8\x86\xcf\x7e\xfb\x5d\x1a\xf3\x86\xd4\xaa\x04\xe9\xb6\x4a\x27\x37\x4f\xd1\x92\xba\xcf\xe2\x19\x95\x76\x4a\x14\x34\x3a\xc3\x11\x8e\x15\x42\xfa\x89\xfd\x32\x97\x33\xea\x62\x98\x4a\x15\xfb\xf3\x1f\x3f\x20\x27\xcc\xd7\x84\x4f\xf0\x62\x53\x79\x82\x7e\x4f\xa4\x6f\xdc\x78\x8f\xf7\x6e\x31\xc8\x17\x4e\xcb\xfb\x17\xeb\x35\xb2\x87\x19\x68\x6a\x0a\xf2\x60\xee\xa7\x8f\x4c\xfc\x6f\xca\x6c\xc4\x62\xcd\xb0\x8f\xdc\x23\xb3\x54\xfb\x74\x10\xb8\xbd\xfc\xc2\x04\x65\x0c\x45\x2c\x93\x61\xe7\x1a\x37\xa1\x5b\xb7\xff\x4d\x45\xb0\x9d\x91\x12\x86\xfb\xb5\x76\xc3\x95\xf2\xd0\xfd\xf7\xa1\xf1\xae\x11\xc9\x89\x5a\x18\xc0\x4f\xef\xd3\xbd\x25\x90\xc5\xdd\x49\x39\xee\xf8\x87\xbb\xf8\x08\xe7\x8e\x3a\x32\x92\x24\xd8\xf5\x42\x64\x32\xfc\xbb\x91\x10\x52\xee\xfd\xfc\x90\x28\x6e\x77\x76\x86\x45\x51\x59\xab\x8a\x1b\x98\xa1\x0a\x87\x66\x67\x6e\x54\xb9\x1c\xe8\x1a\x04\xea\x90\x99\x21\x53\x2e\x51\x24\xb2\xb8\x85\x6e\x49\x21\xac\x72\x0b\x67\x78\x15\xec\x79\x7e\x2f\x97\x21\x0f\xec\x9e\x8a\xfd\xd9\x1f\xce\x1d\x2c\xde\x59\x98\x3f\xff\x7d\xb7\x92\x55\x2d\xda\x2d\xa6\x85\xde\x49\x7d\xa9\x14\x16\x02\x30\xcc\xea\xcf\x6c\x3c\xa7\x4c\x8b\xc3\xb2\xd9\x8e\x1c\x22\x87\x6b\xe5\x57\xf8\xd5\x99\xc7\xd1\xb0\xc1\xa7\xb2\x82\x58\x89\x7c\xd1\x12\xe5\xda\x17\x8c\xd7\x2e\x56\xd8\x31\xfa\x6e\x2c\x2c\xf7\xe0\xd3\x97\x25\x49\x8d\x2e\x2e\x50\x46\xb0\x23\x6a\xc3\xd1\xcb\xb4\x9e\x16\x31\x27\x4c\x91\x11\xfa\x61\xcc\x7a\xad\x12\x2a\x97\x2d\x22\x6d\x98\xb3\x2b\xf7\xc8\x07\x8c\x4a\x82\x4d\x9d\xdd\x3b\x9e\x87\x8f\x9b\x5d\x90\xde\xcf\xdc\xb0\x59\x67\xef\xc2\x2a\x54\xec\xbf\x1a\x82\x93\x5c\x67\xc8\xf0\x40\x4c\x9e\x57\xa9\xff\x5b\x01\x5c\x1b\x14\x33\xf0\xe8\x42\x01\x7f\xfa\x25\xce\x06\x98\x7d\x58\x5e\xc0\x3a\x8a\x45\xb6\x33\x4f\x48\x42\x3b\x66\x0a\xc1\xf1\x27\x1b\x35\x10\x05\xb0\x27\xc4\x1c\xbd\x18\xcc\x7f\x7e\x54\x7c\x1f\x41\x84\x86\x0b\x71\x66\xcf\x2a\xf0\x89\xf0\x09\x79\x50\xca\xe7\xe6\x4e\xd4\xbd\x5a\xca\xf1\xec\x34\x73\x7a\x90\xd6\x78\x5b\x94\x8a\x0c\x99\x5d\x3f\x4d\x93\x4e\x70\x6a\x88\xc5\x12\xe0\xb0\xd3\x5a\xca\x23\xc3\x02\xca\x54\x71\xf3\x71\x2f\x24\xbb\x04\x0f\xdb\x50\x48\x81\x7a\x81\xa8\x33\x3f\xd2\x2c\xef\x7d\x17\x85\x0f\xfa\x59\x6d\xbf\x84\x18\x43\x4e\x05\x4b\x40\x5f\xfe\x8a\xf5\xda\x81\x45\x0e\xb6\xa2\x03\xfb\xcd\x63\x03\x0a\x8c\x71\x06\x6f\xf0\xdb\x27\x93\xc3\x9b\x0a\xad\x0f\x28\xc5\xf0\xab\x77\x07\x80\x1e\x47\xf8\x86\x3b\x0f\xa5\xb4\xc1\x99\x50\x7d\xe0\x27\xed\xe9\x17\xd5\x59\x85\x53\xe1\x01\x78\xd1\x5d\xba\x9b\x05\xb1\xb0\xc9\x27\xb1\xf4\x5d\x9d\x80\x0d\xe0\x84\xa8\xe0\xfc\x62\x8f\xc6\x41\xf0\x6d\xe4\x44\x34\x92\xf5\xcf\xc6\xfd\x34\x36\x6a\xea\x50\xfd\xcf\x2a\xdf\xbd\xd7\xe5\x36\xa8\xad\xf7\x69\x0e\x62\x61\x08\x32\x23\xc3\xe4\x37\x3b\xb5\x01\x18\xed\xe6\x17\x54\x4e\x3e\xdb\xc7\x2b\xd2\xcf\x1e\xae\x23\x00\x4d\x16\xfb\xf3\xf9\x67\x95\xa5\x75\x1d\x09\x02\x6f\xee\x75\x6d\xaa\xe3\xe0\x06\xec\x79\x0a\xc5\xe0\x8f\x6f\x2a\x98\x16\x20\x13\x05\xb3\x5a\x74\x5d\x6c\xa3\x0f\xdb\x9e\x8b\x1b\x7c\xcb\x7d\x52\x93\x1e\x71\x90\x2d\xa6\x4a\xb9\xa5\x66\x32\x4f\x22\xcf\x42\x8e\x47\x8c\xb4\xdd\x5a\xe6\xaa\xf3\x5a\x57\xd9\x29\x1e\x26\x3b\xa4\x31\x3a\xfc\x4a\xf8\xe2\x81\x8f\x11\xb1\x86\x9a\x46\x4b\xd5\xa4\xd9\x90\xab\xda\xea\xfa\x89\xb0\x11\x71\x14\x50\xd0\x2f\x34\xfd\x91\x32\x83\x65\xa8\xe2\x91\x32\xf4\xf5\x4b\x94\xdd\x9d\x03\x03\xe8\x61\x2f\xa9\x76\x63\xa0\xb1\x03\x57\xfc\xb9\x57\x79\xb2\x29\xf9\xcc\xc2\x2e\x1f\xcf\x67\x46\xf5\x88\x68\xc3\x07\x1b\xb7\xbd\xa9\xe8\x72\x61\x53\xe8\xfd\x86\x1f\x76\x69\x73\x8a\x90\xe3\x38\x71\x94\xbc\x7f\x9d\x96\x02\x7d\xcb\xe2\xe8\x24\xb1\x73\xdf\x35\x5e\x31\xd5\x60\xd8\x51\x55\xaa\xd7\x2c\x18\xaa\x87\xd7\x49\x3a\x8f\xd6\x89\x02\x7e\xf6\xbf\xce\x68\x06\x65\x44\x28\x2c\x45\x27\xad\xb0\x2b\xde\x26\x21\x37\x75\x49\x33\x6d\xef\x88\x29\x31\x71\xb8\x4e\x45\x6e\x92\x22\xf7\xc5\x30\x0c\x3f\x04\xc2\xb3\xa4\xd9\x5a\x54\xfc\x30\x30\x5a\x09\x70\xee\x92\xbc\x20\x5e\x99\xb4\x2e\x1e\x56\x76\xe3\x4e\x4d\xaa\x07\x55\x29\xc3\x12\xfa\x78\xa7\x13\x97\xe5\x9d\x33\x41\x94\xe6\x22\x8d\xcf\xe3\x3b\x42\x0e\xe6\x36\x80\xd6\xdd\xf9\x9e\x42\xb5\xc5\x98\x4f\xb1\xb3\xcd\xe7\x75\x2b\xb6\x2a\x4e\x20\x7b\x32\x5f\xdb\x9e\xfc\xb1\xd4\x0a\x6f\x5f\x6f\xac\x97\xf7\xd2\x4c\xa9\x7e\xda\x45\xab\x69\x73\xaa\x57\x34\xf7\x16\x13\x79\x31\x77\x65\xee\x10\x05\x7a\xc5\x75\x53\x44\x9e\xcf\x7c\xec\x82\xa6\x9b\x82\xc1\x45\x4e\x60\xd9\xbe\xf3\x56\x9c\xbb\xdc\xc2\x74\xd9\x9a\xfe\xe1\x7d\xcd\x52\xdd\x43\x62\x30\x9c\xb9\xec\x01\x55\x40\xcf\x01\xbf\x16\x10\x60\xca\x9d\x5d\x15\xbf\x6e\xb7\x94\x56\xde\x1b\xba\x56\xdb\x9d\x56\x29\x13\xf6\xd9\x6f\x4d\x8b\xe7\x86\xbd\xb8\x16\x4d\x00\xfe\x7d\x6c\x34\x49\x01\xaa\xa0\xcc\x4c\xd7\x6a\xfa\xe1\x25\x9f\xf6\x22\xc7\x10\xc8\xf9\x9e\x2c\xff\x67\xa2\x7a\x46\xc2\x32\x26\x60\xd3\x9a\x95\xb8\x87\x18\x4b\xb4\x45\xf9\xf2\xe3\x03\x31\x7d\xbc\x48\xd9\xf6\x6f\xaf\xa6\x1f\xbf\x50\xf0\x7d\xe7\x2d\xe5\x46\x09\xf3\x25\x7e\x5a\xfa\xf3\x1b\x38\x86\xaa\x60\xa3\x32\x38\xe4\x24\xe6\x47\x6f\x8e\x1e\x1a\xfe\xa8\x65\xcb\x97\x89\xf5\xf2\xa6\x8e\x61\x4a\x89\x01\x2b\x97\xfd\x9d\x1a\x92\x89\x54\x88\x19\x33\x6d\xb3\x5f\x38\xc0\xbf\xec\xcd\xcc\x22\x4e\x85\xaf\x11\xe1\x60\x6f\xd5\xda\x4b\x54\xaf\x63\x8f\xf4\x45\x5b\xa5\xfe\xcc\x9a\xe7\xae\x70\x54\x35\x20\xe4\xa4\x61\x13\x2b\xba\xf4\x62\x8a\xa1\xde\x38\xd4\x34\xca\xa9\x50\x6f\xf9\xa6\x94\x1d\xf9\xf2\x2e\x65\xde\x13\x56\xf7\x5c\xc3\xe4\x71\xd5\x7c\xa6\x5e\xb7\xf8\x6a\xe9\xb2\x67\x25\x54\x08\x3b\x5e\xd5\x77\x09\xf0\x0c\x91\x05\x87\x2b\xfb\xab\x16\x1e\x2c\x6e\xae\x53\xcb\x82\x37\xf2\xf9\x7c\x8c\xe4\x2b\x21\xe1\xbb\x10\x98\xef\x0a\xd9\xc3\xf8\xeb\xc2\x77\x3d\xa8\x54\xc1\xc8\x31\x3c\x1f\x81\x82\x64\xf6\xb5\x8b\x95\x7e\xcb\x77\xab\x86\x1f\x13\x8d\x6e\xde\xa2\x2c\xa6\x1a\x30\x47\xc9\xec\xdb\xab\xc3\xca\xc2\x5e\x39\x76\xf9\x38\x75\x6f\xec\xdd\xe5\x52\xb1\x69\x08\x3f\xe9\xb2\xe3\x8a\x75\xea\xf4\xf0\x2c\xbe\x3b\x48\x26\xce\x19\x6d\x7c\x5d\xb9\x70\x85\x7c\x02\x06\x43\xa4\x52\x25\x09\x10\xd8\xe8\x17\x92\xbd\x6b\xd9\x07\xae\x88\x7e\xcd\xcc\x26\x95\x13\x8b\x98\x51\x0d\x7f\x61\x6e\x9b\x92\xdb\x7b\x5d\x0f\xdb\x61\xab\x78\xfa\xf9\x64\x6f\x57\x62\xa8\x8f\x58\x24\xe9\x9d\xbf\xef\x19\xad\xeb\xe1\x9c\x3c\x1e\x40\x3e\xf5\xd6\x15\x5a\xe0\xb3\x4b\xc4\x49\xba\xee\x0d\x2b\x2b\xf0\x4f\x52\xc0\x0c\x14\x1a\xbe\x38\x41\x3b\x5b\xd4\x82\x5e\x83\x3b\x1f\x3d\xf1\x94\x4c\x7f\x75\x0b\xf5\x76\x33\x61\x5a\x98\xfb\xfe\xeb\xb1\x0e\x7a\x95\x26\x74\xd0\xf3\xb7\xde\xa5\x51\xd2\x68\x15\xe3\xeb\x5a\x95\x28\xfc\xdd\x86\x32\x19\xe6\x74\xfb\xec\x8e\x45\xba\xed\xba\x0d\x4b\x26\x1c\x26\x4d\xbd\xed\xbc\x67\x98\xc6\x64\xc1\x30\xbe\x87\x55\x5b\x6e\xb4\x86\xa8\x25\x4e\x04\x96\xa4\xcf\x6b\xff\xcc\x07\x84\x3c\x3c\xc2\x9f\x3f\xac\x0b\xfc\x0b\xdd\x5f\xa2\xa0\x81\x47\x76\x26\x9f\x96\x43\x4b\xd4\xec\x8d\xca\xf0\x1b\xef\x53\x9d\xcf\x7c\xa1\x53\x97\x99\x7f\xaf\xd2\x69\x9a\x7e\x5c\x42\x64\x66\xdd\x35\x52\x6d\xd5\x38\x8e\xb6\x3f\x77\x46\x71\xee\xed\xa6\xcc\x15\x96\xc3\xc1\x9f\x66\xc7\x81\xbd\x46\x6d\x3d\x8a\x6d\x5f\xa4\xfc\x16\x8b\x78\x38\x22\xc8\x0d\xed\x4c\x4e\x47\x90\x29\x08\xe4\x5c\x9f\x59\xa8\x71\x64\x4e\x48\x81\x06\xd0\xd2\x86\x43\xd7\x79\x34\x46\xbd\xf9\x66\xa4\xed\xfe\xef\xcb\xb5\x2a\xdb\x31\xc2\x6c\x1e\xc5\xa3\x5f\x2a\x0e\x1c\x25\xc4\x6a\x16\x56\x84\xaf\x33\xfb\xcd\x31\xca\x68\x25\x9e\x8b\x15\xfb\x73\x47\xdf\x55\x10\x6b\x0c\x55\x78\x3b\xfb\xe7\x95\xd1\x2a\x43\x4c\x56\xb3\x1d\x2b\x93\xee\x23\x9c\x81\x27\x6f\x4b\x32\x76\x22\x4d\xea\xd6\x26\x66\x61\x76\x9b\x68\x73\x72\x7f\x9b\xd2\xa4\x44\x5f\xc7\x63\x30\xd8\xe2\xf3\xe2\xdc\xc5\xcb\x15\xa1\xa4\x32\x97\x34\xc8\xae\xd8\x30\x51\xab\xec\x7d\x57\x1c\x51\x39\xc6\x18\x74\x52\xf8\xc8\xfa\x8e\x51\x15\xf3\x81\x9f\xde\xa3\x69\x20\x62\xc7\xc1\xbd\x49\x4f\xaa\x73\x7b\x62\x36\x4c\x37\xed\x4e\xe1\x7e\x56\xb7\xc5\xff\x19\x97\xd3\xd0\x9e\x27\x0f\x24\xbb\x32\xc2\x06\xd4\xde\xcd\x1c\x53\x34\x1f\xd6\xf8\x61\x6d\xef\x71\x9a\xf0\xbf\xa8\xc6\x84\x46\x15\xdb\x61\x27\xb1\xea\x94\xd6\x6f\x31\x62\x22\xc8\xf1\xc1\xcd\x63\x75\x85\x6a\xc6\xb0\xc1\xd7\x9a\x99\x8b\x9b\x92\x99\xcf\x46\x16\xea\x75\x49\xd8\x70\xf1\xcb\xf8\x33\x21\x69\x51\xa7\x3e\xe7\x20\xac\xe8\x88\x8f\xa0\x83\xac\x28\x75\xcf\x3a\x3e\x5e\x2b\x1d\x8d\x9a\xe5\x8b\x0e\x1e\x26\x5c\x8f\xc8\x60\xd2\xcd\x01\x69\x99\x3b\xf2\x63\x93\xa2\x62\xbe\xeb\x95\x7d\xab\x50\x0c\x7e\x39\x68\x8c\xde\x99\x09\xd9\xf5\x5b\x85\xc0\xc3\x1d\xb8\x92\x28\x73\x56\x30\x85\xd2\xde\xc0\xcc\xab\x32\x0e\xa6\x9c\xfd\xb2\xee\xce\xe4\x51\x3e\x34\xce\xdf\xaa\x18\x76\x71\x55\x01\xe4\x26\x78\xd7\x99\x93\xc7\x46\xa9\xb5\xa2\x87\xb9\x04\x7e\xf6\xc1\x15\xc9\xf3\xca\x01\x96\x02\x4f\xfd\x8d\xb9\xa3\x65\x04\x90\xb3\xcd\xa0\xef\xe1\x4b\x94\x59\x1d\xd7\xe1\xa4\x8f\x68\x18\x19\x6a\x63\x8f\x84\x5d\x1e\x2f\x20\x97\xbc\xac\x2a\x2f\x01\x27\x52\x39\x89\x2f\xd7\x93\x6f\x9d\xfa\x5e\x6b\x74\x69\x7e\xf6\x96\x2c\x59\xca\x3e\x80\xb6\x52\x67\xec\xb6\x13\xca\x62\x17\x39\x95\xc8\xb3\xe7\x01\x89\x1f\x77\x61\x23\x38\x64\xa5\x32\x9f\xb4\x88\x43\x52\x10\x90\xfc\xd4\x26\xa1\x8b\x48\x4d\x0c\xcb\x38\x67\x9b\x8a\xdd\xb5\x4b\xd4\x24\x7c\x06\xd4\xe6\xc8\x57\x65\xf8\x56\x1d\x95\x38\xe2\x3b\xb3\xa9\x95\xd7\x7f\xb7\x13\xa3\x8a\x2c\xa3\xea\x43\x87\x1f\x7d\xd9\xe9\x7b\x34\xf1\xdc\x0a\x22\x8e\xeb\x0d\xb8\x83\x19\xbc\x7d\x84\xda\x60\xfa\x1c\x3a\x74\xf1\x34\x65\x28\xc5\x68\x09\x95\x60\x59\x55\xee\xb9\xa2\x3b\x3d\xe2\xc0\x8e\xc7\xf7\x60\x90\xae\x36\xee\x55\xdd\x40\x31\x32\xc3\x7f\x78\xfe\x29\x8d\xc6\x59\x2e\x83\x2c\x27\x5c\xbb\x7f\x3a\x7f\xa9\x32\xd2\xa5\x0c\x87\x9d\x46\x9d\x6f\x0f\x4d\x6d\x73\x2d\xf5\x19\xc3\x0b\x3e\xe1\x8c\x46\xaf\xa5\x91\xa4\x43\xb6\x77\x71\x72\x62\x61\x12\xd7\xa0\x3e\x43\x15\x38\x30\x50\x32\xce\xba\x21\xce\x3f\xdd\x69\x5a\x71\x66\x9c\xa6\x1d\x15\x01\x2c\x45\x67\xb5\xd9\x6c\xd2\xe2\x81\x17\x69\x6d\x07\xaf\xbe\xa8\xdb\xb1\x83\x10\x85\x18\xab\x8d\x3b\xa7\x71\xcd\x29\x33\xb0\x60\xa3\x3d\xac\xc8\x55\x5b\x51\xd1\x6d\x65\x53\x23\x3f\xbe\x14\x11\x3f\xf0\xfa\xc1\xbc\x5a\xbf\xc3\xb7\x3c\x24\x67\x32\xc1\xc1\xa7\xa4\xff\x38\x29\x14\x83\x82\x6e\xf4\xa0\x7b\xfe\xc0\x8d\x3d\x23\x56\xf0\xc8\xec\xf2\x5d\x4f\x28\xe1\xff\xf4\xe4\x18\x65\x48\x4c\x98\x17\x25\xfd\xdc\x9e\x23\xb2\x3d\xa3\x69\xbc\xd3\xef\xfb\xf8\xc8\xb7\xcb\x37\x05\x14\x7f\xa3\xe6\xef\x84\x4a\x94\x89\x35\x6a\xf8\xeb\xfb\xf6\x8c\x52\x8b\x6a\xe2\xf1\x9a\x3a\x33\x53\x53\x6e\xe9\xa5\xdd\x98\x11\x8d\xac\xd2\x2e\x80\x70\x8b\x15\x16\x6e\xd0\x76\x68\xac\x54\xc4\x51\xfd\xf6\x82\xdd\x5b\x52\xcd\x99\x81\x4d\x9f\x89\xa3\x7c\xfb\x85\xe4\x19\xea\xf5\x59\x6f\xe2\x17\x06\xdb\x5f\x92\x47\xd7\x46\x55\xa4\x5a\xbf\xbd\xb4\xb7\x29\xd1\xd1\xf2\xd2\x5d\x64\xcf\xad\xc2\x7f\xb6\x1b\x74\xe7\xc3\xef\xf7\xc0\xab\x29\x3e\x32\xae\x2b\x76\xd4\x25\xcd\xf5\xb6\x8a\xad\x7a\x94\x7a\xfe\xa4\x8b\x7a\x53\x46\x5c\xda\x50\x3d\x2a\x5f\xd9\x26\x2b\x83\x7a\x95\x58\xc8\x09\xe3\x7e\x1d\x1a\x90\xdc\x77\x17\x2b\xd7\xdd\xc2\x88\x6b\xce\x04\xfb\x9f\xd2\x2a\x2d\x3f\xac\xb2\xf4\x42\xfe\x73\xe3\x65\x10\x47\x0a\x7b\x3c\xfb\x8d\x9d\x13\xf4\xa7\xeb\x61\x68\xec\xa3\x41\x6f\xe6\xb5\xd7\x15\xfa\x0d\xa0\xf1\xc6\xb4\xe9\xbd\x90\x4d\x1b\xd8\x8c\x90\x2c\x07\x6e\x1a\xa7\x3c\x54\xdf\x71\xb1\xda\xcb\x6c\xdc\x74\x59\xf4\xef\x80\x1d\xa4\x07\xbb\xab\x47\xcb\xbe\x6c\xc6\x6c\x55\xb5\x6a\xd7\xc9\xd4\x67\x35\x30\x36\xe1\xda\x8a\x6a\xf8\xdb\xcf\x6a\x3a\x1f\x55\x6a\x61\x86\x04\xe6\xcb\x1e\x2e\x38\x27\xc4\xac\x53\xc2\x3d\xc9\x67\x2a\xf0\x3c\x83\x11\x0f\x33\x58\x26\x64\x27\xe8\x3d\x0a\xb7\xeb\x15\x22\xcb\x3f\x36\x95\x85\x44\x99\x21\xc0\xf0\x5f\xb1\x2e\x06\xcc\x56\x4b\xbd\xaa\xae\x82\x97\x0c\x43\x0e\x06\xdf\x5f\x3e\x7a\x5d\x7d\xec\x52\x3d\x08\x56\x23\xb0\xdd\xc1\x2e\xc5\x7d\x39\x7c\xaf\xa6\x32\xb2\xcb\xcf\xdc\x20\x3f\x7a\x09\x3b\x5d\xc8\x86\x99\xc4\x7f\x09\x65\x4c\xc1\xc9\x0a\x7f\xce\xbf\xea\x46\xe0\x8c\xf0\xe0\xc4\x8f\xe6\x67\x4f\xeb\x51\xd4\x23\x0d\x14\x85\xfe\x91\xf5\xe4\xa7\x07\x31\x69\x31\x50\xcd\xde\xa9\xfd\xd3\xaa\xef\x98\x4c\x5a\x8c\x17\xde\x1b\x99\xd4\x19\xe1\xf6\x32\x9b\x12\xd3\x51\x90\x7a\xe6\x85\x88\x46\x01\x6e\x6d\x6d\x15\xba\x18\xb7\x6b\xda\x1f\x36\x22\xa6\x78\x17\x43\x37\x69\x65\x43\x6c\x2b\x11\xcc\xb8\x41\xd3\xc9\x8a\x14\x58\x41\xe0\xaa\x3f\x7f\xef\x49\xd5\x09\x45\xd5\x70\xc8\xbd\xb2\x61\x84\x42\x0b\x34\xb9\x74\x4f\x66\xfc\x23\x2a\xf7\x85\x2b\xb3\x89\x71\xe3\xd9\x21\xe3\xd5\x23\x41\x0c\xe4\x44\xa6\xab\x3c\x66\xe3\xe6\x89\x32\x0e\x61\x9b\x32\x82\x52\x10\x96\xdc\xe5\x53\x15\x05\x78\x3e\xde\x2f\x14\x83\xaf\x0f\x4a\x7e\x8f\x5e\x1c\xd6\xa2\x61\x49\x0c\x6f\xfc\xb3\xa7\x94\xba\xae\x4a\x2c\x8b\xd4\xb9\x84\x64\xf9\xd2\x74\x57\x2a\x14\x0a\xfe\xdf\xab\xca\x57\xe7\x72\x55\x82\xd7\x95\xbd\xa6\x2e\xd9\xf3\x5e\x7a\xfd\x7a\xfb\xfe\x74\x10\xe4\x92\xb3\x20\x41\xf3\x8d\x53\x0a\x61\x03\x35\xb0\x53\x07\x66\x66\x7f\xee\x6b\x4b\x25\x32\x0f\xcc\x56\x75\x4c\xd5\xce\xc7\xe3\x5a\x9c\x36\x68\x34\x0a\xfc\x7f\xe7\x92\x5f\xa2\x8e\x58\xe4\xb3\x9f\x99\xbd\x3c\x79\x2a\xda\xa7\xb7\xb6\x8b\x14\xd5\x7c\x72\x8c\x38\x5e\xea\x30\x30\xfc\x1c\x57\xbf\x95\xe8\xbf\x0c\xec\x78\x31\xfa\x33\x7b\xff\x58\xbe\x10\x43\x76\x09\xb9\x2e\x32\x29\x97\x34\xa4\x5b\x87\x2b\xe4\x53\xee\xd5\x94\xbd\x64\xf9\x48\xa5\x9a\x35\x7d\x8b\x13\x00\x27\xce\x93\x84\x1f\x58\x4d\xff\xee\x51\x5e\xe4\x73\xf1\xd0\x38\xda\xcf\xd2\x94\x65\x5d\xe2\x09\x3a\x6d\x63\xad\x92\x07\x90\x87\x6a\x44\x89\x9f\xbf\xd2\x3a\x61\xc1\x2c\x88\xa6\x05\xff\x6b\xbe\x0a\x14\x44\x8c\x8b\x96\x64\x26\xbe\x9e\x54\x69\xc2\x82\x55\x7b\x60\xa2\xbe\x90\xb3\x50\x8c\xf5\x3d\xaf\x2d\xbd\x2b\xa4\x81\x63\xbf\x9f\xcf\x2f\xe6\x9d\x2a\xf2\x3c\x64\x08\x3a\xc4\xb4\xbc\xc2\xef\xf4\x99\xc3\x1b\xa3\xd7\xfb\xf8\x33\x5d\x41\x1d\xb5\x2b\xbf\xff\x71\x95\x6b\x6c\xdb\xbc\xac\xcd\x7d\xd7\x13\xde\xb7\x04\x5b\x42\x57\x2d\xbb\x6c\x3f\xff\x5d\x9f\xa8\x31\x44\x1c\x5e\x78\xe7\xfe\x3c\x5a\xa0\x47\x10\x27\x41\x7d\x7d\x50\x72\x48\x66\xf9\x3d\x03\xa8\x73\xe7\xfe\xfc\x9e\xbe\x16\xe8\xb6\x51\x0d\xd6\x5a\xc0\xe8\xbd\xe1\xfe\x24\xc3\x9a\x38\x26\x06\x8f\x54\xc7\xc0\x61\x55\x67\xc6\xa8\xaf\xfa\x7b\x9a\xd4\x13\x23\x0e\xaa\xf0\x69\xb9\xa8\x0a\x3f\xa2\x4d\x0d\xcb\x18\x5b\xd2\x35\x3c\x33\x75\xd3\xe5\x5a\x68\x75\x6a\xcc\xaf\x7b\x06\x89\xc8\xb9\xa7\xaa\xa3\xd4\x83\xc7\x48\x89\x0f\xdc\x7f\x3f\xff\x12\x15\x0c\x07\xb5\x72\x76\xad\xe2\x4d\xca\x99\x10\xc1\xc8\x47\x92\x98\xe3\x30\x89\x90\x4a\xd5\x2b\x53\xd6\x1d\xf9\x90\x82\x64\xe0\xa7\x86\x28\xca\xdb\xe5\xf0\xd4\x78\x08\x78\x0f\xd6\x59\x38\x04\x85\x3b\x85\x80\xc4\x1d\xc8\x02\xb8\x3a\x97\x8f\x58\x02\x55\xad\x85\x9d\xc2\x1c\x75\x7d\x79\xe3\x76\x65\xd1\xd8\x4d\x1c\xd3\xe2\x84\xb4\x9f\xee\xd7\x17\x58\x18\xb9\x11\xe0\x31\x5f\xdc\xa0\x4d\x14\x11\xa3\x49\x44\x4d\xf0\x99\x25\xa3\x15\x40\xa2\xc7\xa8\x01\x5e\x6b\xfd\xb9\x25\x8b\xe4\x7f\x60\xb4\x84\x99\xc7\x97\xa6\x99\x07\x5e\x8c\x2b\x4b\x17\x91\x24\x1f\xea\xd4\x18\xed\xf0\x0b\x9c\xf3\x56\x4d\x7e\xbd\x62\xd1\x12\x8a\xe4\xaf\x32\x3d\xf7\x8e\x50\xda\x68\x21\x5b\x92\xad\x69\x62\x79\x82\xe4\x02\xa3\xae\x60\xeb\xbb\xba\xcf\xbb\x30\xba\xcf\x99\x4d\x4a\x59\x47\x1c\x6a\x54\x41\xf0\x23\x3f\x67\x43\x93\x16\xf2\xc3\xe2\x83\xe3\x07\x9e\xd1\x74\xed\xea\x96\xef\x54\xb0\xd0\x60\x98\xb1\x47\xd3\xde\xa3\x84\x7b\xb8\x16\xfb\x33\xcd\x3d\x02\x20\xc8\x39\xd1\x5c\xfe\x68\xa9\x2a\x48\xcd\x01\xbd\x20\x33\x26\x00\xf2\xc5\x0a\x72\x54\xf9\xaa\x9f\xaa\x9e\x43\xd4\xe5\xf3\xc3\xcc\x94\xbe\xe4\x1c\xa8\x1e\x36\x9c\x15\x70\x07\x53\x1f\x79\xf6\xe6\x53\x4a\xcc\x6c\x84\x3f\x19\x04\xb4\xde\x53\x54\x4d\x59\x89\x88\x0a\x3c\xb7\x75\x78\xf2\xb1\xb5\xcf\x9e\x33\x83\x4f\x4e\x8f\x6f\xd1\x36\x4a\x60\xd9\x04\xd9\xf0\xef\x0a\x5e\x3c\x61\x24\xad\x19\x5b\x83\x5e\x0f\xd4\x01\x59\xa6\x69\x65\xa3\x7a\x1d\x23\x2b\x3e\x97\x57\x76\x4e\x4b\x56\x18\x4a\x46\x49\x6f\xa8\xb3\x77\x6c\xd0\xaa\x0e\x52\x63\xc4\xbb\x2e\x56\x98\xce\x6e\x18\xa3\x30\xc3\x0c\xec\xb8\x94\x71\x5e\x43\x93\xf6\xad\xe0\x22\x72\xe4\xc2\x91\xe5\x63\x94\x0b\xcf\xbb\x5c\x1e\x0a\x0e\x8f\xbc\x5c\x3b\x78\xc8\xb6\x13\x0b\xc8\x0d\x5d\xc9\xaf\xd7\x15\x16\xbf\xf1\x22\x29\x3f\x7a\x9a\x4a\x6c\x36\x7d\xee\x04\x91\xf9\x74\x95\x67\xd0\xa5\xd8\x2f\x63\x4b\xa5\x76\xde\xde\x99\xfc\x98\x0d\x64\xf9\x58\xec\x96\x0e\x68\x2d\x60\x17\x66\x3e\xd7\x9c\x91\x1b\xf3\xec\x48\x85\x4a\x53\xb2\x28\x77\xbb\xfd\xe7\xa5\x1a\x09\xd4\x77\xc4\x25\xc9\xdf\xb3\x3b\x4e\xa9\x73\xda\xc0\x47\xab\x7b\x82\x5a\xbe\xd4\x1c\xda\x6d\x61\x41\xc0\x5f\xad\x90\x5e\x19\x6e\x60\xc7\xe7\xe8\x9a\x93\x1d\x72\x60\x65\xdb\x6e\x58\xab\xcc\x38\xcd\xa7\x3c\x65\x44\x40\xaa\x3b\xb3\xbc\x65\x64\x62\x36\xcb\x75\x18\xf2\xcd\x67\x15\xdd\xdf\x92\xeb\x31\xdf\x88\x0a\x86\xf6\xbb\x64\x89\x6e\x12\xd0\x36\x71\xbc\x82\xcb\x6d\x0b\xf2\x57\x2f\x9e\xac\x55\x60\xe5\x81\x0d\xab\xf7\x6d\x8b\x6d\x05\x41\x77\x3e\x73\xd1\x33\x92\xce\x05\x50\x31\x33\xa1\xcc\x73\xf4\x39\xf9\x04\xc3\xe3\x00\x58\x59\xf2\x32\xaf\xfc\xaf\x01\xcc\x0b\xdc\x93\x4b\x6e\x1a\x53\x1f\x48\xeb\x3f\x78\x5f\x3a\x23\x13\x3b\x36\x94\x5b\xb6\x62\x74\x5c\x11\xda\x36\x35\x63\xe4\x41\xe7\x78\x3e\xcc\x5a\xd8\x3a\xbf\xf5\x36\x7d\x0d\xb0\x96\x6f\x46\x0a\x2b\x91\x4b\x2c\x82\x1b\xaa\x55\xcd\x63\x83\x79\xea\xbe\xc3\x37\x51\x2c\xf0\xb7\x6c\xdf\x08\x91\xd1\x7c\x17\x0b\xcd\xa8\xfe\xdc\x45\x3b\xc7\x28\x50\x54\x83\x61\x53\x64\xbb\xcc\xc6\xd6\xb4\x5d\x24\x35\xa8\x25\x4e\x70\xae\xe5\x11\xad\x46\xe4\x88\xf4\x96\x42\x31\xf8\x60\x7e\xb4\x78\x86\x1e\x43\x5d\xbe\x49\x22\xfe\xd1\x52\x2d\xd9\x54\x91\x65\x61\xa3\x96\xd0\xe4\xf8\x11\x53\x0c\x4b\x94\xf9\x6c\xe6\x76\xbd\x63\x42\x1e\x0c\xdd\x05\x7e\xf7\xb1\x29\xc9\xff\xec\xd7\x2b\x0c\x99\x31\x5c\x2e\x37\x58\xb3\x55\xb0\x88\x51\x4b\x12\x97\x33\x6f\x5c\xf4\x21\x51\x29\xdb\xb0\xe7\x5f\xb7\x7d\xb4\x54\x31\x54\x39\xbf\x9f\x3c\xa4\x73\x04\x7b\xa3\xea\x78\x81\xe2\xbe\x49\xcc\xd8\x1a\x20\x77\xeb\x72\xbd\xf2\xec\xe1\x79\xef\xb5\x29\x4a\x24\x40\xf5\x2a\xc2\x56\xa1\x18\xfc\xe5\x79\x85\xe2\x64\x51\xa3\x16\x7e\x95\xf0\x33\xfd\xe5\x10\xff\x8c\xed\xad\x33\xc0\x72\xff\x9a\x45\xe3\x14\x01\x87\x4a\x55\x50\x94\x45\x30\x7f\xc9\xe2\x7f\xbb\xe6\xe0\xee\x42\x31\x18\x74\x3c\x3e\xf1\x25\xb8\xd2\xff\xa4\x74\x5c\x8c\x92\x3e\x10\xda\xdf\x34\x41\x51\x73\xe6\x02\x14\xf0\x84\x4f\xbf\x28\xd1\x67\x33\x5a\x3b\xc2\x3f\x7a\xfb\x65\x5d\x17\xd3\x8c\xab\xba\xcc\xff\xd2\x2c\x41\x62\xdd\xff\x68\x81\xfb\x92\xa3\x71\xa3\x71\xdd\xab\x46\x70\x97\xab\xcf\x24\x48\x5e\xdc\x19\x2d\x8c\x1f\xa7\x14\xcf\xd7\x3a\x0a\xbf\xc5\xdc\x1d\xfc\x0e\x7e\x54\x68\x80\x15\xfb\x33\x3f\x78\x77\x80\xe5\x20\x4f\xc8\x35\xcd\x66\x0c\x5b\xff\x1f\x5d\x5f\x03\x26\xc5\x51\xe7\xcd\xf4\x8c\x31\x22\xe1\x1b\x02\x84\x10\xb2\x12\x48\x80\xd9\x2c\xcb\x37\x62\x4c\xf8\x0a\xc1\xb0\xb3\x02\x12\x82\x88\xd4\xf4\xd4\xcc\xd4\x4e\x77\xd7\xa4\xba\x7b\x66\x67\xc3\xe5\x62\x82\x39\x24\x09\x89\xc8\x21\x17\x11\x11\x91\xcb\xe5\x62\xcc\x61\x8c\x88\x91\x43\x2e\x17\xa3\x22\x17\xa3\xc7\x8b\x88\x18\x11\x63\xe4\x38\x12\x31\x6f\xde\x5c\x64\xdb\xf7\xe9\xaa\xea\xae\x7f\xd7\xec\x3d\xcf\x3d\xcf\x3d\x12\xd8\x9d\xe9\xae\xfa\x7f\xfe\x3e\x78\xc2\x42\x9e\x98\x35\xa6\x37\xbc\xab\x39\x8c\x33\x54\xf4\xe0\x11\xcd\xdc\xdc\x0e\x02\x41\xd8\xf1\x67\x73\xc1\x8d\xc7\x35\x11\x25\x9a\xcf\x63\xe9\xe2\x39\x7f\x83\x6e\x68\xcd\x6c\x99\x38\xd9\x5e\x6d\x7a\x8f\x4c\x46\x04\xf5\x8f\x2f\x66\xef\x7e\x5d\x79\xbe\x7a\x75\xec\x78\x04\x37\x11\xa5\x82\x6d\xa7\xae\x05\x3c\x53\xa7\x79\x4c\x6f\xfc\xe8\x91\xe1\x5a\xd1\x2b\x17\xca\xdf\x39\xab\xc6\xf2\x55\xea\x21\x6e\x33\x92\x1c\xcb\x4f\x1c\x05\xaa\xd4\x7c\xc1\xe7\xd9\x3d\x7c\x90\x4b\xaa\xda\x8a\xcc\x77\x5d\x4c\x24\x78\x27\xba\xce\x9b\x34\xc3\x6e\x3e\xe7\x90\x34\xf3\x99\x79\x0d\xe3\xca\x87\x7e\x45\x3f\x92\xab\xcb\x5c\xd9\x7d\x15\x34\x46\xca\x05\x63\x1e\xd1\xb7\x72\x61\x45\xad\x51\x4e\xa7\xac\x48\x6e\x98\xc3\x57\xe4\x61\xc6\x90\x23\x2c\x4a\x13\x33\x87\x35\x0b\xb4\x59\x9e\xc0\x80\x6a\x98\xf2\x79\x13\x93\x39\xa5\x40\xeb\x8e\x47\xeb\xd1\xbc\x4f\xfd\xb8\xff\xba\x33\xbe\x61\xb8\x9b\xf3\x7d\xb5\x3d\x54\xfb\x5c\xb9\xe3\xa9\x0d\x9f\xa0\x7d\x4a\x17\xf5\xe9\xae\xfc\xf2\xc9\x84\x0b\x2b\x66\x82\x88\x9b\x0b\xce\x79\x6a\xc2\x5c\xd6\xd1\x2e\xbd\xa9\x3f\x9f\x68\xb2\x58\xf0\x88\x6f\xcb\xb5\xd0\xa7\xfb\x2b\x2a\x2c\x05\xe2\x51\x3f\x01\x94\x66\x14\xbe\x0e\x97\x42\x7a\x23\x5e\x2f\xaa\xd9\x4e\x7e\x56\x84\x4d\xce\xc4\xa5\x9a\xbd\x19\xa5\x55\x89\x0f\xfc\xf5\x03\xc3\xb4\x16\x58\x14\xee\x57\x77\xc4\xf3\x4d\x4f\x60\x3d\xee\xdb\xa2\x41\x48\xb1\xe9\xf9\x4c\x2e\xf4\x8d\x54\x55\x53\x10\x22\x11\xd8\x33\x35\xf7\x01\x25\x47\xe5\xf0\x70\xf0\x39\x4b\x02\xd3\x3c\x0f\xdb\x55\x6e\xb9\xf5\xb5\x07\x14\xf0\xca\x03\x2a\x03\xa9\xbf\xd5\xe0\xba\x26\xb2\xab\x48\xec\xaa\x65\xe2\xf8\xfb\x57\xc1\xb0\xb2\x8c\x9c\x08\x22\xb7\xf0\x39\x60\xf4\x8a\x98\x27\x52\x5c\xea\x47\xb2\x95\x26\x4e\x8d\x56\x24\xf8\xfb\x8a\xf9\xbc\x69\xcd\x2e\xa4\x76\x95\xba\x1e\xb6\x9a\x5e\x96\x31\x7c\xbd\xae\x3f\x6c\xb2\xb0\x4d\x93\xc1\xf0\x09\x4b\x44\xb8\xe5\x85\xd6\xd8\x3d\xa4\xbb\x49\xc1\x89\x23\xac\xa3\xe0\x7a\xaf\x31\x12\x4c\x4a\x1c\x5a\x13\xdb\x8c\xf0\x2b\x3d\x34\x50\x37\x5a\xb4\xb8\xb5\x7a\x34\x66\xf8\x41\x41\xca\x76\xf2\x70\x0d\x9e\xd6\x3f\x89\x9a\x20\xdb\x69\xe1\x6e\xb7\xd1\x8c\x03\xbe\xd0\x02\xc0\x30\xe1\x51\xcd\x86\x11\xfb\xcf\x63\xc0\x62\xb5\x8a\xa3\xc1\x4f\xb0\xfc\x71\xdd\xab\x4d\x0c\xe8\xe4\x9e\x76\xdc\x9a\xf8\x8c\x58\xfc\x2e\xa5\xbf\xb3\x5a\xd7\x40\x16\xc6\x09\x24\xb2\xfb\x35\x7a\x0f\xc6\x14\x02\xae\xcf\x94\x7a\xdf\xd2\x64\xe0\x9b\x29\x9d\x84\x8c\xd7\x57\x8c\x04\x0c\x79\xe9\xe3\x23\x38\xf2\x8b\xf5\x8b\x43\x2d\xc2\xb9\xe0\x7c\x2e\x72\x74\xc5\xf0\x64\xc2\x65\x42\x24\x28\xdd\x3b\x59\x15\xcc\x73\x66\x64\x73\xc1\x81\x2b\x06\xc5\x7f\x4b\x28\x95\xf5\xa6\xff\x51\xef\x14\x19\xad\x7b\x65\x31\xfa\xb9\x70\x44\xe7\xed\xcc\x69\x73\x5b\xa5\xa9\x49\x5d\x1f\xc9\x31\x62\x62\xf1\xa4\x8c\x6f\x00\xfd\x4a\x0f\xf9\x3d\x04\xf1\x7f\x32\xe0\x4e\x4d\x10\x34\x3c\xa5\x26\xa9\x22\xb0\x3d\xf9\xd5\x59\x70\x8a\x49\xc9\xad\x88\x3f\xa6\x1b\xd5\x8b\x14\xe0\x5b\x7e\xd7\xee\x2a\x2b\xfa\xd7\xb4\xf6\x6c\x2e\xd8\x9e\x57\x97\xa3\x84\xf2\xd4\xc1\x42\x30\x69\xa2\x04\x46\xc8\xd9\x0b\xe7\x14\x6d\x94\xca\x07\x79\x46\xcd\xb2\xcf\x44\x39\xf3\xe8\xb6\xa4\xcd\xa6\xb6\x7a\xb3\x9b\xe5\x46\xf2\x27\x6f\xd0\x1e\x04\xaa\x51\x99\x01\x92\x89\x6b\xe9\xe4\xc4\xfc\x2d\xfc\xb9\xbc\x03\xf9\xf0\xc6\x49\xda\xf1\x17\xaa\xa2\x61\xca\xd5\x83\xef\xd1\xf1\xd2\xdb\x40\x62\x1e\x39\xe2\xb1\x1f\x24\x72\x3b\xd8\xaf\xe1\x08\xbc\xbd\x1e\x08\xe6\xd5\x88\x4b\x04\x6f\xaa\xb1\x5d\x1a\x82\x11\x8e\xac\x09\x6e\x9e\x00\xbc\xa5\x9c\x92\x45\x5c\x0e\x1a\xfb\xcd\x64\x31\xb3\xec\x20\x25\xcc\x48\xa4\x78\xd6\x9b\x9a\xfd\x62\xf2\x0c\x63\x86\x44\xa5\x32\x2c\x93\xb4\xd1\x9f\x2a\xda\xd6\xab\xde\x12\xc1\xa2\x8c\xaa\x55\x22\x46\x91\xcb\x76\x8e\x06\xaf\x59\x28\x83\xaa\xa0\xde\xba\x49\x15\x76\x1e\x17\x01\x33\x6e\x7a\x4a\xb7\x8d\x63\x36\xf1\x3c\x15\x24\x32\x19\x6f\xb0\x2c\xf2\x31\x33\x89\x2b\xfa\xbd\x7b\xe7\xe8\x2c\x3b\x2c\xc8\xf6\x51\x39\xb0\xea\x9c\x9a\xa1\x49\x46\x4d\xea\x67\xe3\x60\xa4\xe2\xfe\xfb\xd1\xa0\xe4\xf0\x93\x90\xa0\xc5\x19\xa0\x11\xa8\xaa\xb5\x47\xad\x18\xeb\x8c\x7a\x4a\x51\x29\xf8\x43\xab\x3e\xab\x41\x66\xcc\x46\x1d\xf4\xbc\x24\xf1\x51\xdf\x2c\x87\x79\x9c\x0f\x23\xfa\xe9\x2a\xf7\x5e\x54\x83\x8c\x79\x5e\xa5\x8e\x32\x85\x4e\x05\x07\x44\x6d\x5d\x90\xbd\xee\x1f\xf7\x69\x96\x53\xd4\xce\x0b\x81\x79\xfe\x2b\xbe\x1f\xa8\xa3\x61\x51\xea\x0a\x1c\xe6\x2f\x4f\x27\x9f\x73\x01\xd9\xc8\x35\x7d\x57\x31\x37\x17\x2e\x89\xf9\x0a\x02\x80\xa1\x6c\x00\x16\x5d\xd4\xaa\x6f\x52\x72\xa2\x01\x4a\x7a\xf4\x8b\xff\x3b\x26\x21\x92\x8c\x7f\x74\x2f\xf4\xc9\xe7\x51\x2a\xfc\x63\xf7\xc0\x48\x08\xdd\x15\xb2\xc3\x7c\x96\xb8\x76\x0f\x18\xc3\x59\x88\x88\x47\xba\x48\xeb\xcc\xb0\x49\x1d\x6a\x13\x53\x2e\x8b\x5e\x1d\xac\x19\xd6\x12\x07\x39\xa6\x1a\xc9\xa6\x9f\x3b\x0f\x65\xfd\x89\x55\xc8\xfa\x7c\x93\x75\xfc\x44\xf2\xad\xcc\x6d\x9d\x3b\x53\x6e\xf0\x6e\x18\x1e\x4b\x62\x80\xf3\x15\x0c\xe9\x49\x3e\x91\x1a\xb5\x7c\x3b\x52\x16\xdf\x30\x56\xa8\x4c\xdc\x56\x23\xc8\xa1\x09\x6a\xdc\x6f\x9e\x55\xdf\xd8\xc2\x45\xa8\x81\xfe\x61\x68\x82\xef\xa1\x92\x13\xef\x2d\xbc\x65\x1a\xe6\xb7\x50\xe3\x5c\xf2\x68\x00\x59\x5f\x94\x14\xa4\x96\xfe\x9c\xd9\x12\x65\xb8\xaf\x29\xf9\xad\xab\x34\x27\x1e\x5f\x1c\xa0\xa6\x69\x57\xfa\x5f\x5a\xfb\x50\xe5\x17\x3a\xa3\x5f\x1a\x17\x67\x21\x8b\x47\x3b\x76\xff\xd5\xc9\xf2\xb1\x46\x5c\x39\x9e\x4b\xff\x75\xab\x6e\x9c\xe0\x94\xca\xe2\xa3\xc5\xf2\x56\x72\x3a\xf1\x31\xe4\xa2\x06\x02\x37\x79\xfe\x61\xf5\xc8\x1a\x7e\x89\xba\x16\xaa\x89\x2d\x81\x31\x65\x3d\xd8\x8d\x61\x2f\xba\xb2\xe9\xb5\x8f\x28\xf4\x7f\x1b\x97\x9e\xbd\xf7\xb2\x76\x72\x6a\x7c\xc7\x2e\x61\x2c\x87\x74\x76\x09\x2a\x14\x90\x9d\x80\xd2\xa5\x7e\x0d\xec\xa1\x6c\xea\x20\x66\x96\xa5\x94\x62\x6a\xea\x3a\xa9\x42\x57\x66\xa4\xc8\x33\xe2\xdf\x2f\xd0\xec\x0a\x6d\x52\x8a\xcc\x61\x83\x83\xcb\xe2\x8b\x5e\xc5\x10\x3c\xb1\x76\x40\xb2\xe9\xa8\x11\x07\x97\x18\x4a\x68\x0d\x67\x96\x8f\xd5\x38\x2d\x1c\x90\x13\x26\x30\x39\x00\xb8\x71\x97\x36\x0a\xa5\xae\x1c\xb5\xa5\x16\x3e\x7b\x5d\x22\x1f\x08\x01\xb4\xe4\x2b\x7f\x6d\x8b\x36\x7c\xad\x10\x49\xb3\x0b\x2e\xed\xd5\xd6\xe6\x65\x54\x8d\x3d\xe1\x33\x65\x50\xa7\x0a\xaf\x12\xfe\xea\xff\x16\xd8\x30\x33\xee\xec\x17\x3e\xa0\xdb\xa6\x02\xc7\x67\x6a\x13\x87\xaf\x54\x25\x48\xb4\xb4\x6c\x14\x98\x18\x6b\x68\xff\x56\xcd\x60\xcc\xa9\x23\x96\xe8\x04\xd3\x8f\xb7\xa8\x1d\x5d\xfb\x0c\xbe\x37\x5b\x9d\x64\x20\x15\x5b\xf3\xad\xa4\xb5\x8f\x5c\x1e\xdc\x77\x70\x0c\xa4\x73\xeb\x75\xe7\x98\x4e\xb1\x2f\x59\x2e\xb1\x87\x49\x3b\xd0\xc7\xd5\x66\x8f\x4e\x72\x30\x01\xc8\x08\xe3\x67\xd5\xe4\x0c\xdd\xa3\x3e\xeb\x43\x1e\x26\xfd\x99\x5b\x15\x0c\x9a\x24\xa2\x70\xfa\x23\xaf\x89\x99\xed\x6d\x16\xae\x93\x84\xf4\xea\x85\xe7\x92\x89\x7b\x7a\xbb\xdc\x17\x5c\xb5\x4a\x0d\x10\x1a\xc8\x25\x7c\xe0\xb9\x35\x0f\x96\xb8\xd8\xc3\xdc\x6b\x3b\x9b\x0b\xde\xaf\x7b\xf5\x21\x8b\x14\xd5\x64\xfb\xdc\x78\xed\x3f\x37\xaa\x8c\xd0\x68\x5d\x9b\x5e\xd3\x0e\xb6\x42\x65\x64\xe7\x11\x97\x5e\xe9\x4d\x2f\x29\xaa\xee\x11\xd7\x9a\x50\xc6\xed\xba\xdc\x2c\xd7\x92\x8f\x34\xf1\xbe\x35\x6e\x22\xc8\xcb\x10\xec\xd6\xf4\x6e\xb6\x28\xac\xab\xcb\x9d\x2f\x92\xff\xf9\x17\x9b\x46\x82\xd8\xef\x12\x07\xbb\xae\xcd\x9d\x42\x07\x32\xe0\xd1\x88\x58\x09\x89\x09\xdb\xda\xa3\x1a\x64\xce\x46\xae\x8b\xa5\x3b\x81\xf1\xe7\x7d\xa2\x5e\x2b\x10\xb7\xc4\x10\xc7\x31\xa7\x1a\x4b\xae\xd5\xfa\xd3\x68\x02\x2a\x6b\xfa\x8c\x37\x50\x12\x95\x3d\xc4\x23\xb4\xba\xd6\xb6\xf0\xa4\xca\x76\x32\x5c\x14\x1d\x29\x3c\x5b\xc6\x1c\x10\x04\xf9\x98\x2e\xcf\x11\xab\x1c\x7a\xb0\x74\xa4\xf2\x1d\x66\x20\xdb\x04\xcb\x60\xcd\xed\x33\xd7\x17\x6d\xf4\x67\xfb\x81\xe6\xc9\x64\x7e\xb1\xc8\x93\xf1\xbe\xa1\xc9\x01\x42\x11\xb9\x9e\x60\x41\xde\x7b\x5e\xf9\xc4\x3b\xfa\x83\x0f\x16\x74\x2a\xa2\xba\xdd\xc8\xe6\x82\x7f\xea\x00\xa2\x58\x3e\x97\xcb\x0c\x6f\xee\x57\xfb\xeb\xd0\x02\x97\x5a\xb5\x98\x4c\x99\x19\x0d\x88\xd6\xc8\x8d\x62\xc1\xcf\x0f\xab\x1f\x26\x29\xa7\x7c\x27\xb5\x7c\x97\x6e\xff\xe4\xb3\x88\x1d\x6d\xac\xe8\xaf\xa1\x5a\x68\xb7\x94\xb0\xcc\x05\x9f\xeb\x94\xe8\x3a\xd7\xa5\x26\x91\xa6\xc2\xe6\xd2\x3e\xfc\xb7\x84\xea\xea\x9c\x91\x50\xf2\x04\x12\x2e\x7f\xf0\x9e\x1a\x69\xf1\xd5\x6b\xd3\xa1\x4b\xff\xb2\x90\x3c\x11\xc0\xa9\x4f\x94\xd0\xff\x78\x42\x0a\x23\x61\xe6\x40\x90\x70\xfa\xfc\x38\x99\x53\x22\x35\xc2\x6b\xd7\x4b\xfa\x53\x58\xda\x73\x5f\x32\xc4\x78\xfb\xfa\xa3\xb7\xae\xd5\x3a\x4f\x68\xca\xc7\xd5\x81\xb5\x98\xe9\x88\xba\x1f\xd8\x77\x1a\xdf\x9e\x2c\x4a\x79\x69\x3b\x18\x3e\xe1\x87\x8f\xeb\xa6\xad\x2e\x36\x7d\x26\x75\xa0\xeb\x42\x8f\xc1\xc2\x4e\xd8\xa0\xe9\x3c\xce\xd3\x2c\x19\x90\x26\xfa\x8c\x8f\x19\x53\xfd\x06\x82\x22\xa7\x61\x57\x91\x57\x16\x50\xf1\x67\x26\xeb\x8a\xbe\x1c\x77\x20\xf9\xdd\x23\xcf\x0d\x93\x75\x05\x63\x18\x59\xc4\x15\xc3\x9c\x74\xe9\x35\x35\xa3\xed\xa2\xbc\x69\x9a\x73\x65\x72\xce\x56\x27\x96\x45\x90\x2d\x5b\xbc\xe8\xdd\x7d\x6f\x49\xb2\xa3\xf9\xa8\x9c\x05\xbc\x5f\x53\x6e\xaf\x53\x16\x3d\xc6\xd4\xfd\x1b\x25\x9e\x9b\x32\x38\xa4\x4f\xe1\x19\x50\x54\x8f\x4a\x64\x44\x7a\xf6\xe0\x26\x52\x91\x5f\xc2\xb2\x3d\x08\x0e\xdc\x37\x46\xff\x45\x15\x55\xc4\xa7\x5e\xec\x49\xe2\x1d\x2a\xc8\xf1\x1d\x87\x54\x68\x8d\x07\xe4\xe8\x94\xfc\x19\x88\xcf\x57\xc4\x6e\x37\x7d\xc7\x2e\x95\x86\x62\xd5\xa1\xe8\x3d\x4f\x1e\xd3\x64\x11\x20\x75\xa5\xe4\x00\xec\xe1\xad\xf1\x30\xa4\x24\xe2\x4b\x7b\xb7\x40\x78\xdc\x85\xc5\xd0\x5b\x42\x77\xde\x5b\x24\xa5\x04\x98\xe4\xa5\x04\x8b\x35\x9f\x26\x1b\xb1\x0a\xf6\xc4\x78\x79\xe2\x6b\xe2\x38\x97\xa8\xe7\x61\x01\x17\x2f\x6b\x36\x39\x8c\x60\xa7\x20\xa7\xd5\xdb\xf7\x6b\x64\x73\x33\x72\x1f\x8b\x48\x21\x63\xde\xd5\xc0\x80\x28\x6f\xe1\x68\xe0\x9f\x7a\xed\x75\x80\x68\xa6\x56\x42\x47\xf5\xf0\x70\xd1\x24\x73\x71\xf0\x6c\x2e\xf8\xe8\x8b\xea\x0c\xb9\x38\x4c\x84\xd3\x5f\x56\x58\x8b\xb9\x53\x67\x71\xcd\x2f\xe3\x73\x2d\x80\x0d\x98\xa7\x3e\x28\xdd\x8d\xfe\x65\xa5\xdb\x37\x63\x6a\x36\x17\x7c\x1d\x80\xf1\x4d\xe2\x91\x1e\xcc\x5f\xfa\x96\x5b\x87\xc8\x96\xb0\x1a\xfe\x2a\xe9\x0e\x7d\x71\xdc\x28\x00\x98\xeb\xa2\x09\x7b\xb6\x97\x00\x74\xa3\x04\x5e\xbd\x71\x64\x93\xdc\x21\x21\x21\x63\xf0\xf6\x1e\x49\x11\x21\x1e\x57\x74\x0e\x3f\xf3\xa5\x17\x81\x0e\xad\x5b\x89\xfa\xfc\x33\x7b\x86\x80\x53\xc3\x48\x83\x83\x22\x27\x6f\x4d\xce\x89\x7d\x87\x08\x94\xa0\x1e\xd4\xd8\x38\x4d\xc0\x06\x5b\x25\xe2\x27\x76\xc0\x4b\x77\x43\xea\x0d\x46\x15\x1e\xe1\xa7\x76\x37\xc9\x19\xd4\x1d\x51\x5a\x7e\x48\xa3\x3e\xd8\x31\x16\x29\xf5\xe6\x59\xa0\x7b\x2b\x9f\x65\x99\x44\x56\xe1\x8f\xb4\x89\x47\x5a\xa4\xbe\x13\x6f\x34\x53\xdf\x38\x3a\x02\x7c\x71\x18\xe8\xef\x1c\xa6\x58\x66\xa0\xc9\xb8\x04\x24\x4b\x84\xec\x26\x4f\x24\xbf\xeb\x10\x3d\xfc\x0a\xdc\x85\xe3\xad\xf0\x53\xd6\x38\xc0\xc5\x30\xfb\x40\xfa\xa5\xfe\xf3\x01\xdd\x92\xce\xe1\x42\x66\xe2\xec\x5e\xfd\x9c\xc6\xbc\x63\x18\xc5\x37\xff\x7f\xce\x35\x99\xc0\xf2\x3a\xba\xff\x09\x71\x0d\x3b\x31\x73\xc1\xcc\xe6\xb7\x17\x35\x75\x0d\x07\x9b\x05\xea\x45\x83\xca\xcc\xa7\xb7\x24\xc3\xa1\x43\x19\x2d\xc4\x92\x6f\xd1\x29\x6b\x3b\x1b\x4d\x10\x5d\x8f\x4a\x09\xbe\x4f\x8d\xd1\x46\x15\xdc\xf9\x38\xcc\xe4\xf4\x09\x88\x45\xa7\x3e\x23\x52\xf4\xec\xf7\x47\x47\xea\xc9\x5a\x1a\x09\xa5\x1e\xbb\x0c\x30\x4d\x5c\x30\xa5\x37\x75\xef\x4b\xaa\xc9\x9f\xd5\x36\xb5\x2d\xbc\x68\xc1\xe7\x35\xc8\x2c\xb2\x5c\x1a\x2d\xfa\x6e\xde\x7c\x93\x16\x52\xc5\x32\x38\xda\xb6\x24\xcf\xe9\x87\x1f\x50\xa5\x03\xd4\x41\xbf\x08\xd6\x4c\xc2\xcd\x8a\x87\xaf\x7f\x2e\x8b\xb8\x60\x63\x5c\xe1\x73\xc4\x7b\x37\x36\x19\x11\x38\x12\x37\xdb\x6b\x4c\xe9\x89\xab\xcd\x56\xc7\x6f\xfa\xdd\x07\xee\x53\x41\xc5\x43\x82\x10\x51\x8e\x11\xc4\x8c\x1b\x63\x44\x67\xcf\xb9\x51\x42\xd1\x99\x74\x78\x4e\x6d\xba\x15\xe2\x41\x3c\xca\xcc\x86\x29\xe0\x9b\x27\xee\xd3\x25\x49\x3d\xcc\x5c\xe9\xce\x27\x0a\xf1\x75\xf7\x6b\x99\x94\xe3\x24\x3c\xb9\x94\x5c\x3a\x4e\x75\x04\x5d\xc8\xe6\xaf\xed\xee\x71\x22\xb1\xad\xc5\x76\x42\x2e\xe9\xb1\xae\xab\x13\x4b\x15\x8e\x1f\x92\x03\xc8\x5f\xbe\xad\x9e\x22\x17\xf0\x14\x48\xd0\xe0\x07\xa3\x86\x80\x71\x37\x62\x9c\xb6\x72\x64\xab\x36\x22\xa2\x88\x4f\x8f\x60\xf7\xf4\xab\x19\xc9\xa1\x84\x45\xaa\x55\xda\x97\x08\x48\x7a\xe5\x7e\xa8\x6a\x65\x62\xc7\x93\x7e\xb7\xdf\xd5\x4c\xbb\x30\x62\x5e\x59\xca\xa5\x5c\xff\xb4\xae\x15\xee\x3b\x1e\x6b\x44\xce\x38\x2b\x2e\x68\x7e\x5f\x2c\x0c\x4d\xa2\x11\xc8\x9e\x87\xc6\xd0\x90\xbe\x70\xb3\xe8\xbb\xb2\x8b\x2d\x94\x68\xc8\xd2\x85\xb3\x1a\x62\x8a\xa1\x7c\x19\x55\x10\xd3\x4c\x48\xb7\xe8\x7a\xad\x1e\xa3\x4e\xa9\xac\xfc\x94\x53\x33\xd6\xfd\x2f\x96\x3f\x02\xf5\xbe\xf8\x79\xf5\xd9\x4a\xb4\x86\x99\x13\x0b\xce\xdc\xb8\x54\xcd\x13\x2b\x6a\x9e\x18\xfc\xee\xfe\x48\x12\x89\x13\x66\xf8\xd9\xff\xd2\xb6\x61\x00\xb5\xc4\x0d\xc3\x78\x0d\xb8\x6d\x93\xae\x17\x80\x6d\x81\x04\xfe\xa4\xf0\xf2\xe1\xc2\xff\x7a\x47\xf0\xa1\xb6\x24\xa4\xca\x25\x9e\x1f\x53\x5c\x9a\x18\x50\x99\xe9\xab\x35\xc1\x53\xe4\x16\x9b\x09\xd0\xe9\xcf\x6d\x1a\x20\x3b\x24\x4a\xb9\x9c\xf0\xc6\x19\xa2\x02\xe9\x58\x7c\x57\x34\xc3\x1c\xfd\x1a\x10\xc6\xa4\x34\xce\x78\x46\x8b\x36\xc0\xf4\x50\x23\x56\xd9\x99\xb0\x5f\x7d\x79\x54\xe0\x53\xab\xf0\xd0\xe6\xd7\x68\xf8\xb4\xe9\x73\xe4\x4c\xf0\xda\x77\xc7\x6b\x99\xb2\x20\xc4\xb5\x6c\xe4\xc5\xb2\x47\x9b\x0e\xc4\x53\x08\x9b\xaf\x49\x52\xfd\x66\x29\x1f\x38\x2b\x5e\xaf\x55\xc1\xda\xcf\xc6\x96\x27\x27\xc5\xa9\x9e\xb3\x1a\xe7\x88\x86\xa1\xd4\xb7\xa3\x4f\xfd\xd3\xa3\xc9\x4a\x8e\xfb\xb6\x11\xa7\x14\x0b\xb0\x7d\x78\xad\x5e\x21\x85\x15\xa8\x90\xda\x0c\x5e\xbd\x12\xc0\x47\xca\x61\x85\x44\xc5\x1e\xeb\xea\x6d\xc9\x00\x63\xf1\xc6\x24\xe1\x76\x75\x7e\xbc\x76\xcd\xba\x89\x27\xb7\x47\xe9\x83\x1d\xaa\x19\x9c\xc1\x7d\x31\x66\xbe\xa4\xaa\x63\xc1\x3d\x0c\x53\xc8\x97\x3b\x9b\xdc\x98\xaa\x98\x79\x24\x86\xd1\xdc\x00\x1c\x58\x5d\x94\xa7\x5c\x9a\x3d\xd7\x6b\x0c\x99\xaa\xaa\x5b\xb7\xca\xc1\x2a\xea\x93\x0d\x69\x6d\x5a\x26\x08\xc7\x9c\xf8\xa1\x7c\x7c\x7b\x53\x09\x22\x84\x75\x73\xc1\x83\x4d\x11\xc2\xae\x22\x16\xcb\x90\x7f\xfd\x6d\x91\x7f\xb9\xdb\x9d\x1b\x6f\x07\xa6\x00\xe6\x8e\x83\x7d\x8f\x21\x2e\x04\x6f\xe4\x94\x2b\x6b\x9e\xf2\xed\xc3\x0f\xf6\x43\x7d\x4e\xdf\xaa\x7a\x54\xe0\xcf\x9e\x95\x40\x9b\xb9\xed\x73\xb3\xb9\xe0\xe5\x4d\xc9\x84\xed\x31\x5a\x2d\x37\xb2\x75\xe2\x00\xe1\x9a\xcc\xa7\x80\x06\x03\xc3\x55\x2c\x4e\xd8\xc7\x5a\x41\xed\x50\xc3\xac\x8c\x7c\x8e\x9f\x1d\x3f\x0a\x96\x43\x1e\xe5\xde\x02\xbc\x49\x79\x47\x9b\xf6\x59\x34\x1e\x8a\x1e\x3b\x02\xea\x2e\x51\xbf\x00\x80\xfb\xdd\x6b\x00\x1a\x9c\xd1\x8a\xd0\x79\xbc\xf2\xdd\x24\x72\xcd\xca\xe6\x82\xc7\x4e\x81\xfa\xba\x1c\xde\xac\x3f\xdc\xdf\x64\x84\x5f\x2c\x12\xb3\x22\x8b\xfb\xe0\x33\xbb\x35\xf0\x05\xf2\xca\x16\x4e\x08\xaf\x04\xf7\x2a\x20\xbe\x53\xe0\x9e\x79\xfe\x41\x51\xc3\xe0\x6e\x64\x57\xb9\x63\x78\xf0\x71\xcd\xb5\xab\x8c\x2d\xf9\x2b\x86\x64\x34\x69\x76\x8f\x4a\x67\x58\x7e\xfa\x6a\x3b\x87\xc7\x43\xd8\x3c\x50\xc2\x9e\xf7\xae\xee\xd9\xe4\x33\xaf\x8f\xb9\xf9\x1d\x9d\x1a\x77\xa1\x75\xe6\x4c\xe9\x51\x34\x69\x59\x5c\x38\xf4\x25\x60\x3c\xfc\xc0\x20\xc8\x9e\xe1\xa1\x64\xc9\x3c\x55\x39\x50\x20\xc4\x93\xbe\x67\xd7\x28\x30\x72\xcf\xc7\x94\x15\xbe\xf1\x7c\xd8\xd2\xe0\xe9\xa4\x80\xad\xd8\x06\x32\xf5\xc9\x5d\x52\x85\x05\x31\x46\xc0\x25\x32\xf6\xbc\x27\xbd\xf4\xb1\x4b\x4a\xfc\xaf\xfe\xf0\xc7\x09\x7d\xe2\x6a\x55\x9c\x9d\x4f\xce\x1f\x12\x1d\x0e\x27\xac\x40\xf8\x98\xe2\xad\x77\xe4\x69\x9e\xc3\x81\x5b\xc6\x37\x8e\x80\x85\x07\x41\x79\x62\x49\x72\x78\x6f\xe6\xf1\x2e\xb0\x77\xe7\x58\xdc\xae\xf1\x9a\x14\x06\xc3\x66\x99\xa3\x64\xb8\xfd\x63\xf4\xb5\x5b\xee\x1b\x0e\x36\x5c\x66\x8c\x37\x30\xb2\xc7\x00\x94\x0b\xb9\x98\xa3\xb1\xc2\x1f\x5c\xcd\xeb\x86\xc7\x4e\x45\x5e\xec\x4c\xfb\xe0\x0f\x84\x7f\xd4\xd1\xd1\x99\xcd\x2d\xd5\xfe\x1a\xc6\x8e\x14\x2e\xce\x6c\x6a\x8d\x87\x60\xb6\xd5\x5c\x94\xdc\x53\x1b\x0c\x16\x3b\x48\x8e\xd4\xe6\xab\x4e\xc1\xf6\x5d\x8b\xe8\x22\x0b\xbd\xc6\xcd\x33\xc4\xa9\x5d\x1c\x36\x1d\x92\x11\xf1\x85\x6e\x15\x53\x22\x4f\x32\x1e\x29\x8e\x25\xdf\xe8\xf4\xf6\xac\x87\x51\x9c\x11\x9e\x3b\x79\x95\xcc\x22\x76\x9e\xe3\x76\x46\x6c\x03\x44\x76\xca\x67\xbc\x5b\x35\x95\xb1\x3c\x2d\xe1\x46\xe4\x9f\x95\xb9\x56\xfb\xaf\x66\x21\xcb\x78\xaf\xc0\x1b\xb1\x75\x7b\x34\x5b\x25\x64\x55\x62\x72\xde\x9a\x6e\x51\x55\xdc\xe1\x14\xb8\x20\x0e\x4f\xbb\x0f\xac\x00\xb8\x46\xd8\xd5\x6e\xdc\xad\x02\x95\x43\x6b\xd1\x07\x5e\xea\x89\x6f\x90\xa5\x75\x21\x7a\xfa\x75\xad\x8f\x2a\x10\x64\x35\x5c\x22\xf6\x7d\x99\x8e\xf7\x34\xb5\xb0\x36\x71\xb9\xbf\xb6\xf1\x6a\xb0\x31\xaa\x10\xd8\xe8\xcd\x07\x2d\x0a\xe0\x18\x72\x7c\xf0\x2b\xf1\xa7\x65\xa4\x06\xfe\xcd\xcc\x0e\x75\x27\xa9\x6b\xd1\x6c\x2e\xf8\x9f\x4d\x40\x3b\x19\x49\x09\xb7\x65\x27\x60\x50\x76\x49\x81\x57\xa5\x7f\x7c\x56\x79\xf2\xda\x5c\xcb\xf0\x8e\x9d\x9a\x96\x57\x04\x2d\x8e\x78\x3e\x33\xce\x8e\xd7\xfa\x9c\xe6\x36\xdc\xf8\xe9\x5b\x2d\xcd\x55\x48\xd6\x2b\xe3\x2c\x27\x7b\x45\x4a\xfb\x7f\xdd\x29\x97\xf4\xdc\x00\x8e\x5f\xbc\x07\x3b\x14\x9b\xcd\xc2\x05\x5a\x73\x2b\xa4\xa2\x3a\x92\xe0\x56\xe0\x41\x59\xc2\x56\x1e\x31\x30\xec\x48\x6d\x5a\xa2\x39\x08\x38\x4a\xb9\x36\x75\xf4\xa2\xee\x93\x28\x49\xd2\xc1\x5b\x9b\x75\x53\x2e\xb1\x81\xe3\xfb\xe1\x7b\xbb\xae\x81\xf3\x1a\x61\x00\x02\x6e\x7c\x66\x3e\xb4\x75\x0a\x73\x7a\x58\x44\xfc\x70\x1c\x98\x74\x55\xb9\x8d\x16\xef\x4f\xf8\x8f\xfc\xaf\x75\x90\x29\xc0\x1d\xee\x38\xf8\xe5\x43\x1b\xa1\x66\x32\xf5\xf9\xf0\x64\xd1\x41\xf9\x90\x88\x13\x11\x84\xcf\x4c\x55\x71\xda\xd1\x27\xbb\xc1\x5f\xf6\x5d\x57\x97\xdd\xb8\x90\xd5\x35\x9b\x16\x12\x99\x7b\x5e\x18\x0c\xc2\x26\x16\x63\xaf\xec\x16\x9d\x31\x5f\xc1\x72\xc8\xf9\xff\x9e\x03\x46\x61\x42\x1c\x9b\xcb\x31\xbd\x10\x87\x49\xec\x84\x67\xef\xb3\x79\xf5\x30\xca\x3e\x63\x5c\x48\x24\xf8\x87\xd7\xa4\xa8\x01\x16\x51\xdb\xd8\x75\xe5\x18\xe5\xca\xdd\x34\x9a\x4e\x0d\x39\xa2\xd1\x22\x4a\xd8\xe1\xd4\x24\x31\x33\x46\x60\xee\xee\x56\x69\x24\x9f\x64\xdc\x24\x56\xe5\xd9\xc5\x7e\x58\xb1\x25\x9c\xff\xad\x59\xc9\x2e\x0f\x3b\x35\xc2\x28\xb7\x5b\x8c\xc6\x11\xa9\xeb\x8e\xca\x07\x4d\xeb\x96\xec\x24\x2b\x4f\xeb\xee\x12\x5e\x59\xb4\x65\xc1\x37\x03\x2d\x4b\x63\x04\xac\x34\x53\x63\x4f\x02\x81\x7c\xea\xda\xd4\x41\xbe\x10\x3e\x5e\x3c\x72\x24\x54\x16\x00\x7d\x66\xa6\xb4\x4a\x64\x2d\xdf\x0b\x53\x51\xc3\x16\x7c\xb3\x13\x00\x7b\xca\xb0\x8d\x98\x84\xd4\x19\x77\x6c\x05\xf3\x7f\xca\x1f\x6e\x64\xa6\xf2\xc7\x1f\x8f\x00\xc0\x3c\x21\x1c\xca\xbd\x5d\x53\xff\xb2\x56\x68\xfe\x2d\x09\x2b\xbc\x60\xae\x70\xb9\x0a\xbf\xc0\x3c\xb8\xd0\x4b\x7d\xfd\xc9\x11\xc9\x1a\x8a\xab\x23\x84\x1f\xe7\xf5\x97\xd4\xd3\x0f\x2b\xd4\x32\xe2\x34\xcb\xcc\xa3\x5a\x37\x68\x5a\x61\xcf\xc1\xdd\xd0\xc3\xff\xbc\xe8\x25\xb5\x02\x2b\x13\xbd\x2d\x1b\xe0\xe8\x4d\x10\x8d\x95\x7e\x53\xd7\xac\x56\xdf\xb3\x86\xa1\x60\xa8\xb1\x70\xac\xd6\x08\xcd\x6d\x9b\x26\xae\x6d\xb6\xa8\x60\x5a\x1c\x21\x9d\x9e\x57\x6d\x42\xce\x55\xa9\xe3\x82\x08\xf1\xfe\x8b\x42\x1d\x7d\x21\xb5\xab\x3e\x3f\x55\x7a\x60\x3b\x7b\x56\x2a\xa8\x62\x49\xc6\x10\xab\x98\x8c\x7b\x20\x06\xa8\xb8\x49\x97\x2a\xef\x16\x89\x90\x61\x34\x3c\x36\xdd\x6b\x54\x5c\xe8\x26\x7e\x77\x22\x94\xa0\x97\xb4\x1c\xc7\x7c\x93\x20\x4b\xb2\xa5\x0f\xb6\xc5\x85\x9f\x34\x79\x91\x5b\xf5\x7b\xfa\xeb\xbe\x29\x1e\x8e\xec\x1d\x52\xbf\xde\xa4\x83\x6b\x70\xd2\x55\xcd\xf8\xfd\xde\x24\x14\xcc\x0c\x7b\x39\xd6\x97\x2a\x7b\xb0\xed\xcc\xe8\xe8\xec\x16\x9a\x87\xaf\x2f\x6f\xd5\xda\x42\xcc\xd9\x9e\x71\x1e\x3e\xd6\x79\xbd\xde\x58\x15\x85\x08\x2a\xb2\x88\x6b\xcb\x69\xc8\x53\x4b\x55\xfa\x72\x90\x40\xe3\x2f\x3d\xac\x73\xcb\x90\x25\xcd\x05\x33\x8f\x5c\xd4\x4d\x9a\x7c\xc7\x93\x05\x33\x67\x18\x6e\x7b\x5a\x49\x42\xe6\x9b\x46\x71\xa9\xeb\xdf\x52\xff\x99\x35\xe9\xe5\xfd\xe5\xf1\xe4\x2b\x99\x3e\x7b\xfa\xd4\xb6\x36\x99\xcc\xb7\x03\x0c\xbc\x94\x6c\x0a\x72\x47\x54\x82\xe2\x5e\xd1\x18\xda\xc2\xcd\x1e\x2c\x75\x80\x10\x13\x0a\x86\xa9\xf9\xa7\x35\x61\x1d\x82\xeb\x72\x80\x52\x39\x33\x5c\x7d\x32\xd8\x4b\xfe\xe9\x3d\x0d\x30\xcf\x47\x33\x31\xa7\x32\x3d\xa7\x15\x78\x80\x44\x4b\x82\xff\x9a\x08\xe4\x43\x6a\x48\x0c\xf8\x8d\x15\xf9\xb8\xf1\x2f\xe1\x78\x72\xfb\x8b\x5d\x8a\x32\xcd\x8d\x3f\x89\x53\x42\xd0\x1c\xc5\xb8\xf7\x3d\xa8\x0a\xe1\x47\xc4\x84\x7f\xd7\xfa\x6f\xd7\xa2\xf5\xc8\xcb\x74\xd4\x5e\x75\x8d\x67\xc4\x7b\x40\x9e\xf5\xad\x8b\x83\xa2\x30\x24\x31\x5f\xc1\xea\x03\x71\x6a\x41\x25\x94\xcd\x05\x83\xc1\xdc\xde\xa2\x2e\x77\x08\x0e\xea\x1b\x44\x34\x13\x20\xc3\xd4\x28\xcd\x30\x21\x1f\x36\x10\x26\x67\xc0\x88\x3b\x34\xf4\x82\xa6\x9e\x8e\x3c\xaf\x8c\xeb\xda\xc8\x79\xf0\x2a\xf5\xf5\xc3\x52\x40\xe7\x03\x04\xc5\x16\x69\x4a\x45\x19\xf3\xab\x11\xfe\xa3\xd4\x32\x44\xc1\xc9\xf3\xd1\x96\x78\xbf\x37\x18\x72\x93\x45\x99\xf5\xe7\x83\xda\x4c\x8f\x56\x1b\x51\x55\xb4\x71\x82\x36\x29\xe0\x90\x55\xdf\xe2\x13\x3a\xfe\x37\xcc\x01\x03\x01\x2d\x84\xb7\xd7\x1f\x3e\xa3\x4d\xc3\xfc\x88\x5d\xf1\x2d\x0d\xfd\x9b\xcd\x72\xf2\x61\x70\xf4\x70\xdc\xb9\xa1\x1e\x20\xcd\x91\x59\xb0\x56\x57\x60\x24\x55\xb5\x20\x78\x5c\xeb\x5b\x91\x5b\x89\xe6\xce\x87\x96\xa9\x6f\x3a\x89\x56\xb1\xe0\x1c\xed\x13\xb9\xdf\x42\xf9\xb0\xe5\xee\xcd\x14\x3a\xc7\x24\xb9\x4d\xc9\xeb\x38\x72\x85\xaa\x20\x66\xb6\xb5\x45\x27\xf2\xd2\x33\x50\x7b\xdd\xf1\xca\xfc\x7d\xbf\xb3\x46\x4b\x1b\x7e\x35\x12\xbb\xee\x4d\x1d\xae\xf5\x31\x34\x71\x5d\x79\x1c\x53\x9b\x9e\x05\x46\x17\xd9\xa6\x0a\xa9\xf1\xbc\x6a\x50\xdc\x56\xe1\xf3\xf0\xd2\xcb\x52\x6c\xd1\x42\xae\x9b\x45\xf1\xd6\xe5\xe3\x55\xc0\xde\x13\x46\xce\xe1\xd9\x3c\xab\x81\x34\x6a\x94\x14\xb0\xdc\xd8\x1a\x73\x0f\x68\x9c\x10\xec\xc4\x10\xee\xf4\xe2\xfe\x4a\xfc\x8c\xb7\x97\x5a\x63\xb6\x4a\xd2\x07\x19\x0a\x6b\xc4\x60\xf4\xdb\x1a\x80\xbf\x8c\x1d\x21\xbf\x1b\x45\x8c\xcf\x14\xc4\x81\xc5\x16\xb1\x89\x83\x3c\x21\x2b\x61\xa0\x57\x86\xc1\x5d\x14\x87\x4e\x66\x73\xc1\x95\x9a\x4f\x77\x17\xcd\xcb\x68\x6b\xec\xd9\x90\xfc\x4f\xed\xb3\x67\x46\xa7\xf2\x3b\x6d\x4a\x5d\x9c\x11\xd3\x8b\x2e\xc0\x24\x4d\x22\x91\xef\xe4\xa2\xb5\xc8\xed\x9d\x8b\x83\x11\x81\x1a\x15\x74\x61\x86\x20\xe7\xd3\x78\xa9\x23\x7e\x14\x0e\x6e\x46\x42\x3f\x0b\x58\xc4\xdc\x4e\x4e\xc4\xa1\x51\xa7\x93\xef\xde\xa1\x61\xe3\x11\x7b\x07\x3c\x7f\x02\x0c\x27\x78\xe1\x96\xc5\x4e\x44\xfa\xff\xe0\x2d\xa2\x8c\x5c\x81\xa5\xc3\x44\x2c\xe1\x60\xdc\xfc\xc6\x08\xed\x48\x15\x84\x1c\x50\xfa\x2f\x4f\x02\x69\x2f\x46\x5c\xd2\xdc\x86\xff\x79\x87\xce\x97\xc5\xd8\xc4\x0a\xe9\x10\x74\x3c\x39\x56\x4b\x05\x91\xdf\xac\xbc\x7b\x9b\xd6\x00\xcd\x5d\xea\x09\xd4\xbf\x48\x23\xfe\x1b\xda\x2b\xf3\xed\xaa\x3c\x4c\x76\x0b\x30\x01\x62\xa8\x28\xe8\x27\xa9\x47\xe7\xa8\x3f\xb6\x1a\x2e\x76\x2a\x1c\x32\xfb\x5f\x03\x44\x15\xec\xf9\xd1\x1c\x31\x33\x73\x4f\xdc\x25\x7a\x7c\x48\xf6\x49\xcd\x6b\x05\xbb\xe1\xd3\x15\x8c\x3b\xa9\x51\x70\xeb\x0e\xcd\xbf\x9c\xfa\x4e\x01\x98\xac\xb5\x3c\xa9\xca\x33\x1e\x17\x52\x77\xcc\x1f\xab\xe5\xf8\xb0\xd6\xb3\xa3\xf5\x50\x70\xe8\x5c\xf2\x3a\x85\xff\x59\x71\x89\x6f\xde\xdd\xb7\xeb\xb2\x98\x8a\x0f\x05\x9a\xab\xe1\xbf\xe3\xc4\x01\x7e\x05\x32\xf7\xdd\xa2\x0a\x75\x24\xb8\xe3\xc4\xb5\xf9\xc4\xe6\x5d\x90\x30\x1d\xd7\x67\x38\x9b\x0b\x1e\xce\x0c\x8e\x5a\x19\x4f\x5a\xaa\xf6\xa6\x7e\xbb\x0d\xd4\x01\x18\x09\xd7\xb5\x1b\x5e\x4d\x3e\xa4\xa2\xef\x84\xd9\x84\xbb\x69\x4a\x66\xd0\xad\x85\x31\x4a\xb1\xa3\x09\xd1\x97\x9a\xf8\xba\x36\x8b\x44\xa4\x0e\xee\x4d\x6f\xfa\xe4\x2d\xd0\x02\x06\xf5\x61\xd8\xf6\x2f\xda\x6b\x30\x19\x31\x2b\xd8\x13\x88\xda\x5c\x6f\xfa\xf1\x42\x93\xc4\x30\x8a\x54\x32\x47\x1b\x82\x5d\xdb\xb1\xe4\xce\xa6\xe8\xd8\x36\xe6\x9a\x2a\x0d\x43\xa9\xb0\x5b\x5f\x95\x9b\xa2\xb0\x5d\xe1\xcf\xfd\x42\x71\x30\xb8\xd2\x42\x88\x26\xb5\xed\x52\x93\x93\x6d\x29\xa2\x6f\x8c\x79\x47\xd7\x8c\x0e\xcb\x50\xe9\x3a\x9a\x7a\xfb\x49\x65\x30\xc3\xd5\x62\xf4\xba\xfc\xc2\xe6\x09\x7a\x8c\xb1\x5c\x61\x4a\x97\xfc\x8b\xbd\x4d\x42\xfc\x1e\xe3\x96\xda\x51\xd6\xf8\x3b\xa1\xbf\x94\xed\xa4\x55\x5a\x73\x2b\x65\x52\x29\xab\x19\xeb\x69\x36\x28\x2a\xdf\x90\x65\x89\x73\x7b\xa4\xb3\x05\xac\xfc\x0a\xbe\xcb\x8b\xcf\xa6\x5f\xfc\xd6\xbe\xeb\xb4\xca\xa3\x0b\xbb\x5e\x23\xb1\xbd\xc0\x7b\x92\x0f\xa1\x07\x23\x2b\x76\x38\xca\xe4\x2f\x8b\xda\x71\x39\x95\xa0\xc8\x65\x4b\x86\x00\x91\x23\x0f\xd5\x79\x9b\xd3\xb2\x33\x99\x58\x66\x4c\x9b\x3a\x6d\xee\xcc\xac\x70\x47\xdf\x38\x41\x65\xb5\x69\x52\x04\x78\x51\x4f\x72\xbb\x69\xa2\xf0\xe2\x89\xdf\x9b\xe8\x4f\x53\x7b\xd7\x0c\x02\x75\x91\xc3\x17\xe5\x3f\xbe\x08\xd6\x5a\x2c\x92\x07\xeb\x4d\x7d\x78\x85\xc8\x38\xc4\xb2\x7c\x61\x4d\xc5\xdf\xf3\xba\x59\x50\x0a\x32\xac\xfe\xc5\x5f\xff\x79\x4d\x2b\x3a\x84\xf3\xac\x94\xbe\xbb\x82\x41\xdd\x26\x9b\x4a\x09\x82\xd4\xf6\xfb\xd5\xb4\xa8\x64\x71\xb1\x94\xf0\xe7\xa9\x27\x3a\x52\x53\x93\x2e\x50\x8b\x8b\x69\x71\xb0\x73\xe5\x21\x81\x78\xec\xb4\x10\x1f\x91\xa8\x2f\xba\x76\x54\x72\x7e\x85\xf2\x7e\x9e\xaf\x48\x59\x1e\x70\x46\x8c\x60\xfb\x18\xf8\xdd\x5d\xb3\x0c\x29\x25\xa9\x2f\xae\x19\xa6\xcd\xdc\x38\xa8\xe7\xe1\xb1\x71\x65\x3b\xbd\x75\x1a\xf7\x02\x28\x02\xa7\x52\x62\x56\x1c\x61\x61\x1a\xe4\x46\x25\xd3\x4d\x58\x53\x4d\x99\x97\xcd\x05\x9d\x6b\xe1\x74\xc1\xf1\x18\xca\x4b\x6b\x9e\xfe\x9e\x06\x56\x21\x56\xc4\x9f\x1b\x79\x6a\x68\x14\xba\xc2\x68\x16\x01\x71\x8e\x6b\x93\x5b\x1c\xd6\xf2\x38\x92\xaa\x32\x36\x69\x8a\xfb\x11\x7c\x3e\x4a\x4a\xa9\xc6\x96\xe4\x5f\xe0\xb3\x3e\x17\x5b\x91\x6c\x49\x7a\xc2\xae\x88\x0d\xc8\x2d\x45\xf9\x31\xb8\x1b\x40\x17\xf3\xb8\x4e\xac\x42\x4c\x1f\x7a\x4c\x63\x52\x96\x50\xd8\x42\x72\x9c\xc9\xef\x7a\xc6\x6b\x77\x88\x79\x65\xa4\xd1\x54\x57\xed\x1f\x03\xe0\xa8\xd8\x2c\xdb\x10\x19\x99\x9e\x62\x88\x00\xee\xf8\x1e\x8b\x41\xf9\xcb\xdf\x01\x62\xc6\xd4\xa2\x25\x27\xec\x38\x1e\xb9\xa0\x12\x40\xd8\x96\x89\xbc\x39\xda\x03\x69\xa1\x9b\xc8\x6c\xfa\xc1\xc9\xba\x7b\x9f\x87\x59\x56\xf6\xd0\xea\x60\xdd\xb6\x4c\xbc\x83\x48\xd5\xad\xcc\x99\x46\x19\x72\x23\xa8\xc3\xa4\x06\x48\xf8\x53\x67\x1f\xd6\xf7\xa4\x1e\xb2\x68\x94\x3e\x1e\x3d\x1e\xa7\x0f\xe2\x96\x9b\xd2\xc7\x74\x63\x94\x96\x82\x99\x1d\xd9\x3a\xbe\xf0\x90\xfc\x1c\x61\x36\xc4\xa4\xe4\x08\x87\xbd\x56\x4f\xdc\x88\x8f\x95\x51\x11\x75\x21\xe8\x5d\xbc\x79\xb8\x5a\x88\x80\x46\x30\x35\xa2\x53\xd3\x1c\xa6\x62\x9b\x2e\x08\x38\x33\xe7\xab\x01\x21\x09\x7f\xf1\xca\x45\xba\x18\x8a\x65\xcb\x92\x21\x7b\x48\xa3\xea\x51\x8b\x48\x35\xf6\x78\x47\xfa\xc0\x73\x60\x2c\x85\x4d\x64\xe3\x08\xf3\xf7\xce\x7b\xa2\x26\x26\xae\xeb\x87\xc1\x71\x1a\x18\xe3\x73\x74\x8c\x0c\x34\x83\x9e\x83\x2e\xf8\x6e\x59\x14\x76\xce\x00\x65\x83\x5f\xaf\xd7\x5b\x0b\x88\x58\x8d\x3c\x23\xb8\x48\x9c\x52\xab\x49\xb9\xcc\x45\xfe\xb9\xf1\xda\x3b\x46\x85\x1a\x66\x1e\x96\xa2\x26\xfc\x95\xe5\xcf\xc5\xc5\xd2\xac\xd9\xdc\x91\xf3\xc8\x76\xc5\x6c\xe8\xf2\x5d\x8f\x98\xcd\xf9\xab\xad\x15\x70\x81\x79\x5a\x79\xb7\xad\x19\x14\xe2\x62\x2b\x9a\xa5\x5c\x71\x3a\x19\xb4\x1b\xc8\xa9\x08\xf9\x70\xbd\xec\xfc\x45\x46\x6b\x43\xfc\x02\xe1\x02\x04\x3c\xb3\x92\xfd\x4a\x0a\xdb\x92\xcb\x91\x60\xf6\xab\x43\xd4\x82\xd8\x8e\x37\x26\x3b\x15\xc9\x58\x8e\xa6\x5f\x50\x7d\xa8\x53\xe4\xdd\x5d\x5b\x8b\x28\x1f\x91\x4d\x7d\x6e\x69\x15\xec\x78\x41\xf3\xfc\xc3\x96\x85\x19\x2f\x7b\xf5\xa7\xb0\x6a\xd4\xa8\x04\x59\x11\xdb\xdc\x1f\x57\x94\xe5\xbf\x7e\x16\x40\x59\x5d\x37\x22\xb8\xfc\xec\x21\x25\x7e\x88\xea\x20\x38\x77\xbf\x1e\xf7\x99\xa5\x26\x1f\x84\x5e\xc3\xc9\x2b\x71\x5e\xd2\x9d\xcd\x05\xee\x7a\xe0\x0e\x88\x51\x5e\xdc\xc0\xff\x33\x10\xe8\x3e\x51\x27\x7c\x72\x42\x32\xe7\x03\xc3\xb5\xca\x4a\xf4\x7d\x56\x23\x1a\xde\xac\x00\x6d\xbf\xfc\x47\x29\x6b\x59\xfc\x4b\x4d\x52\xcb\xe6\x82\x0f\x0e\x57\x7c\x1b\x04\x53\xcb\x3f\x68\x9e\x52\x0c\x95\x4a\x0a\x8f\x9e\xbe\x62\x88\x72\x39\x21\xb2\xd1\x4a\x0f\x39\xa9\xdb\xec\x3b\x31\xe5\x2f\xb5\x6d\xbb\x00\xc5\xdc\xde\x67\x9a\x74\x54\x22\xab\x12\xcf\x2c\x67\x4d\xdf\xce\x16\xa5\x30\x5f\xba\xa4\xc9\x21\x79\x94\x27\xc2\x5c\x30\x7d\xcf\x70\x98\x87\x1c\xae\xdb\x9b\xcd\x05\xbf\xda\xaf\xc1\x6d\x31\x8b\xfc\xfe\xd3\x93\x0e\x80\x6d\x24\xaa\xf2\xa9\x74\x7a\xeb\x33\xd0\x9a\x91\x61\x14\xd6\x16\xc6\x88\x63\x1a\x18\xb1\xe0\x5b\x5e\xf4\x85\xde\xeb\x54\x6a\x81\xb8\xd8\x14\xfd\xec\xa7\x65\xaf\x4e\x98\xe9\xdb\xdc\x80\x84\xb7\xbc\x33\x2e\x28\x35\x44\x54\xad\x32\x5a\x6b\x96\x8a\x48\xaf\xd6\xe6\x0a\x0e\x65\x5e\x59\xd6\xc5\xa9\x5f\xbe\xa5\xdf\x4c\xc7\x64\x38\xd6\xfe\x7d\xc8\xd1\xd0\xd3\x88\xd9\x59\xbf\x1a\x51\xa7\x47\x0f\xd0\xce\x8d\x85\x5c\x97\x83\x73\xc4\xf8\xf3\x03\xef\x41\x06\x4c\x95\x98\x51\xe0\xfa\xc1\x2d\xc9\xfd\x3e\xa3\x3e\xf7\x81\xd3\x3b\xe2\xe9\x57\xea\xbb\xf5\x92\xb4\xcf\xe2\x9b\x9c\xf9\x9b\xe2\xc7\x26\x84\x71\x92\xff\xda\xd5\xb8\xd9\x5c\xaf\x54\xc6\x8a\x7b\x9f\x57\x3d\x6e\xde\x67\x18\xe9\xd8\xc2\x60\x6e\x8f\xca\xa3\xf5\x32\xa5\x55\xcc\xfb\xa3\xcd\x9a\x6e\x58\x17\x0a\x9b\x10\x31\x9e\xda\xba\x57\x54\xb5\x18\xb9\x92\xa7\xfb\x81\x83\xe3\x21\x1c\x93\x11\xea\x35\xb3\x17\x6e\x98\xaf\x2a\xa0\x3c\x32\x2b\x25\x26\xec\x83\x82\xe5\x53\xaf\x4f\xe8\x80\x38\x7d\x81\x60\x8d\x1d\xdb\xd4\x05\x62\x56\x84\x77\xca\xcf\x13\xfb\x97\x15\x14\xac\xf4\x8d\x4d\x27\xd5\xd9\xf4\x2d\x49\x6d\x49\x9d\x5a\x30\x14\xee\xf3\x51\x03\x87\xf7\x79\xe5\x16\x35\xb8\xa9\x37\x09\x4d\xfe\xf0\x59\x5d\x67\xce\x22\x45\xca\x1c\x82\xa6\xc4\x98\xab\x69\x27\x34\x94\x3f\xe1\x27\x8f\x97\x5a\x5f\x7c\x5e\x4c\x3b\xa7\x4d\xcb\xf2\x3d\x98\x94\x28\x58\xf0\x89\x85\x4b\x6f\x5b\xb1\x78\xe5\xaa\x28\x52\xaf\x3c\xab\x39\x2c\xc6\x86\xc9\xb1\xa8\xc8\xd3\x89\xb8\x13\x37\x38\x07\xe7\x89\x2c\xba\xc0\xb7\xb8\x30\x95\xf1\xf4\x31\x68\x63\x62\xfb\x24\x82\x51\xdf\x2e\x05\x26\x16\x8a\x6d\x01\x2f\xd3\x9f\xdf\x16\xc7\x62\xd7\x43\x50\x88\xf6\x95\x3e\x46\x71\x4e\x64\xfc\xbc\xfd\x68\xd3\x38\x1b\x63\x2f\x5e\xcb\xa4\x9f\x97\x6b\x62\x5c\xe3\xa4\x9c\x6c\x2e\xf8\x96\xa3\xd5\xe7\x5d\xa8\x9b\xb3\x85\x93\x31\x60\xfc\x09\x95\x32\xb0\x59\xa6\x32\x93\x6c\x7f\x42\xf3\xb5\x6b\xd8\xd5\x72\x14\x5a\x3f\x3a\x01\x6c\xce\x8a\x84\x13\x0b\xb8\x32\x6f\x7a\xc4\x71\x5d\x0c\x0a\x9b\x24\x6a\x93\x72\xc1\x2f\x0f\x6a\x75\x2b\xf6\x44\x94\xec\x35\xbe\xa1\x21\x99\x6c\xea\x60\x29\xa1\xea\xf6\x40\xb5\x88\x62\x91\x5a\xa2\xab\xda\x1e\x8d\x19\xc2\x4e\x56\x4e\x9f\xbe\xbf\x4a\x54\x67\x5e\x99\x61\x0c\x04\x8a\x7b\xd3\xee\x78\x6d\xfa\x8b\x48\x81\x37\xd6\xc1\xd1\x8b\xea\x98\x12\x8f\xeb\x33\x87\x95\xed\xa9\x09\x5a\x2c\xb1\xac\x3e\x75\x57\xde\xf7\x82\x6e\x32\xe5\xd4\xb0\xc3\x11\xbd\x32\x0c\x4f\xde\xab\x63\x01\x1d\xaf\x2c\xde\x1d\x8f\xec\x03\xdf\x4e\x78\x2d\x3b\x25\xe9\xbb\x35\x47\x5b\x5a\x79\x94\x79\x91\xb8\x76\x66\xee\x6e\x45\x93\x0c\xc3\x76\xf0\x62\xb7\xda\xaa\xd8\xc4\xe4\x02\x51\xea\x86\xfe\x65\x8c\x8a\x99\x73\xda\xda\xb2\x36\x96\x97\x74\xdc\x0c\xbd\x38\x2d\xf8\x16\x8e\x90\x54\x5f\xdc\xf9\x41\xf9\x3c\x7d\x7e\x2e\xee\xbb\x04\x30\x29\x6e\xe5\x9e\xf0\x27\x74\x2c\x19\xa9\xb7\x60\x0c\x71\xde\x48\xe6\x63\x53\xc1\x50\xc2\x9b\xd8\x4c\xeb\x7b\xef\x9d\xeb\xb5\x1c\xde\xb0\xa9\x53\x48\x0a\x4b\xae\x9f\xa7\x79\x47\x97\x89\x83\x5d\x2c\xd1\xc5\x61\x35\xb6\x65\x9e\x0a\xbb\x65\xdf\xb6\x71\xd3\xd0\x3c\x53\x7b\x44\x6b\x73\x31\xb2\x48\xdc\x36\xdd\x3a\x46\x93\x3a\x21\x6e\x35\x6c\xd1\xa2\x57\x78\xfa\x29\xbd\xcb\xa8\x86\xa5\x4c\x34\x22\x2a\x83\x91\xc1\x5c\x2e\xee\x79\xe7\x58\xed\xd7\x31\x5a\xad\x46\x48\x1d\xe3\xb9\x65\x11\x48\x8b\x3b\xfc\xe7\x7a\xd3\x0b\x00\x2b\xc1\x2c\x63\x9f\xd7\x1e\xc9\x83\xf6\x0f\xaf\x24\x04\x7e\xaa\xd4\xc5\x05\x8e\xcf\xfe\xd5\x4e\x55\x2e\x60\xe4\x0a\x63\xd9\x43\x17\x44\xfb\x52\x8a\x8d\xba\x79\x6e\xef\x77\x59\x5c\x90\x05\x88\x31\xec\x41\x16\xcc\xcc\x8b\x53\xb5\x26\x17\xb3\x12\xad\x62\x8f\x71\x31\xb7\x9e\xa6\xd0\x71\xe3\x9e\xb8\x52\xe3\x1a\xec\xc1\xe6\xfe\xba\x4d\x3e\xa9\x21\x8b\x35\xa2\xe1\x4c\x97\x88\x51\xae\x25\x31\x68\xc1\xfc\x67\xc0\xd8\x95\x3a\xa6\xb0\x8b\xfd\xe6\x22\xb5\x75\x81\x0b\xb5\xd4\xcc\x6d\x57\xa9\xbc\x1c\x7e\xf1\x0f\xbe\x08\xb5\xee\x6b\xe1\xeb\x0c\x6f\xc2\xb1\xb3\xba\xd0\x90\xe4\xf6\x07\x77\x3c\x95\x4c\x89\x7c\x5a\xce\x73\xca\xf4\x39\x09\xff\x34\x0f\x95\xc2\xb8\x15\x3e\xc8\x7b\x9f\xd1\xdd\x98\x1a\xc8\xf1\x34\x2d\xa9\x17\x26\xe8\x7d\x4f\x81\x3a\x98\x5b\x2d\x70\x1a\x3a\xcf\x39\xbf\x0b\x22\x8a\x02\x9f\xf6\x05\x5f\x3e\x3a\x5c\x5e\x2e\x4c\x19\x56\xae\x5a\xa9\x15\x6b\x35\x45\x00\xca\xaa\x54\xfa\xf3\xf4\x65\x42\xf1\x5c\x51\xcd\x6e\xf3\xdc\xaf\xda\x93\xdf\x2b\xfd\x87\x79\x23\xf4\x32\x4d\x62\x39\x50\x31\x81\xb0\x29\x61\x9e\x9e\x7b\xd3\xf4\x9d\xc9\x7a\x33\x82\x6b\xc4\x15\xde\x40\x3d\x7a\xbe\xae\xac\x56\x03\x36\x54\x2c\x52\x4e\x6a\x4c\x75\x6f\xd5\x80\xf1\x55\x6c\xfa\x16\xf2\x68\xbc\x79\xc2\xfd\xf5\x61\x66\x01\xe3\x18\x0b\x77\x66\xed\x07\xf8\x4f\xcc\x66\xb3\xb9\xa0\xad\x03\xc4\x67\x27\xee\x6a\xbe\x78\x69\x88\xac\x85\x49\x95\x53\xe0\xf8\x6f\x7e\xe9\x85\xab\xc1\x6a\xbc\x46\x4a\xfc\xa9\x09\xcd\x25\x74\x46\x90\x74\x57\x21\xa7\x80\x9b\xb1\x7c\x67\x4f\x41\xbe\x84\x13\xef\xdd\xb9\x4b\xc3\x70\x85\x82\x9d\xc3\x89\x2e\xf3\x34\xa9\xa9\x22\xa3\xb6\x50\x36\x5f\x37\x58\xf7\xc1\x13\x74\x65\x9e\xc8\xbf\xd0\x09\xc2\x36\x57\x01\xde\x91\xb0\x0a\xb1\x89\xd8\xda\xe2\x65\x83\xc0\x87\xe1\xf8\xe0\xf4\xd1\x0b\xa2\x9e\x58\x9a\xeb\xb8\x3d\x9a\x6f\xb7\x01\xda\x6d\xde\x67\xe2\xd9\xa4\xdf\xdc\xac\xdd\x44\x46\xaa\x55\x2b\x5e\xac\xbd\xae\x24\x93\xdc\x6a\x78\x73\x87\x0e\x57\xd3\x79\x64\x0b\x50\x4d\xea\xdf\xf7\xeb\x15\x3e\x37\xb7\xe2\xc3\xe8\x54\xef\x1c\x1d\x52\xc0\xdf\x4c\xac\x87\x95\xb9\x67\x2f\x90\x00\x29\x96\xb2\xdd\xdd\xe1\x3f\x2b\x4d\xd5\x07\x18\x75\x6c\x59\xd0\x09\x35\xf8\xcd\x7e\x58\xdd\xbb\x26\x23\x79\xc1\xe6\xfa\xe4\x22\xe9\xab\x6f\x9a\xc8\x15\x98\xd1\x60\xd5\x44\xf1\x48\xdc\xaa\x5a\x4e\x3d\x22\xcc\x31\xb3\x77\x36\x7b\x1d\xa5\xd7\xbd\xca\xff\xbe\x85\x9d\xec\x9c\xe8\xea\x1b\x6b\x55\x67\x47\x9c\x22\x43\x02\xb7\xe2\x33\x41\xc4\x28\xbd\x0a\xdc\xcc\x91\x60\x28\x7f\x12\x98\x0e\x5b\xc4\x46\xae\x4b\xad\x6c\x2e\xe8\x79\x07\x20\x7d\x81\x83\x46\xb7\x54\x14\x59\x48\x5c\x07\x27\xd8\xa7\xe9\xe9\x8f\x8f\x6c\xda\x12\xdc\xde\xb9\x38\x9b\x0b\xae\x05\xdc\x90\xa2\xef\x14\x84\xb9\x37\xc7\x94\x8d\x15\xe0\x86\xec\x4a\x12\x26\xcb\xe6\x21\xc1\x3f\xb7\xa8\x43\x51\xa6\x0e\x65\x7c\x8d\x63\xc3\x3d\xa0\x17\x5f\xd6\x74\x6e\x01\xfc\x82\x22\x1d\xbd\xb0\x5e\x24\x28\xbf\xca\xa8\x70\x3c\xec\x77\x8b\x26\x96\x23\xd4\xae\x78\x58\xfd\x44\x90\xac\x95\x8a\x98\x38\x72\x32\x9e\x7c\xfc\xcb\x96\xc4\x0f\x88\x9a\xd0\x2f\x61\x68\x8b\x2e\x87\xcf\x55\xeb\x79\xc9\x3c\x6c\xbb\x1a\x79\x80\x07\x21\x42\xe5\x35\x4f\x89\x28\x10\x29\xed\xf1\x2c\x97\x59\xb3\x5a\x9d\x67\xd7\xa2\x75\x7e\x29\x4e\xbd\xa7\x1e\x68\x57\xc3\x87\x8e\x3f\x7f\x36\xc0\xe0\x24\xef\xbb\x12\x2d\xf7\x7f\x97\xa8\xca\x9e\xb8\x16\xb2\x65\xec\xc9\x7c\x44\x6b\x20\xf9\x40\x40\x69\xc1\x1d\x5f\xaf\x07\xb7\x2a\x65\x9e\x5c\x52\x18\x9b\xdf\xd2\x6a\x0d\xdf\x33\xa5\x9a\x0a\x3f\x8f\x33\x0e\x5d\xdd\x94\xbe\x22\x57\xe2\x0d\xcf\x68\xc6\xaf\x0c\xf1\x47\x9d\xcd\x05\x66\x8b\x82\xa9\x70\xc8\x14\x8f\x0f\x57\x9f\x00\x3a\x7d\x56\x5e\xf8\xf5\xa9\xbc\xf5\xdd\x81\xf2\xf1\x11\xf7\x1e\x3f\x6c\xb5\xb8\x6c\xf1\xb2\x0e\x45\x96\xc5\x2e\x83\x86\x6d\xe9\xf4\xd4\xd1\xb0\xdb\xa9\x32\x04\x8e\x73\x66\x6a\x7f\x6d\x91\xed\x17\x50\x15\x73\x25\x02\x39\x84\x7c\x73\x11\x10\x03\xc7\x55\xbf\xe4\x08\xd9\xd0\xcc\xdf\xde\x28\xb2\xe1\x6a\x64\x5a\xa8\x06\x7e\xe6\xd2\xe1\xea\xb2\x51\x56\x20\x8e\x74\xb4\x59\xf3\xbc\x3a\xe5\x75\xc9\x61\xec\x35\x66\x77\x27\x24\xa6\x19\x96\x20\xa2\xed\x47\x92\x39\xb5\xc2\x90\x8d\x59\x9e\xd2\x8a\xdb\x97\x2b\x9a\xf1\xca\x89\xab\x13\x32\x1b\x8c\xd0\x68\x43\x93\x5e\x39\x51\x9f\xd0\xba\x62\x49\x17\x7c\xff\x4e\x75\xc6\x1c\xd4\x53\x08\xff\x09\xdf\x1a\x07\x93\x5e\x48\xce\x26\xf2\x88\x95\xc2\x0f\x5d\x4b\x88\xcb\x06\x67\xc7\x36\xa9\x78\x84\x71\x3b\x32\x49\xbe\x69\x9b\x5a\x8c\xcc\xe1\x49\x61\xfc\x7c\xbd\xd8\xf1\x23\x27\x94\xbf\x76\x8a\xe2\x1d\xb9\x9c\xc0\x9b\xfa\x7c\x55\xf3\xe3\x41\x36\x72\x70\x42\x55\xd7\x3f\x0c\x60\x1a\xdc\x7e\x2b\x8c\xb2\x2f\x6c\x91\x6a\x19\xd8\xa1\xbe\xd0\x26\x9b\x32\x59\x6a\x95\x99\x7c\x97\x1b\x7c\xff\x11\xa8\x68\x16\xd9\x55\x6c\x2c\xc6\x3d\x74\x01\xcc\xee\x82\x03\x23\x75\xd7\x7a\xe2\x31\xec\x46\xae\xf5\xc1\xca\x51\x31\x56\x30\x8f\x93\x62\x56\xc6\x3a\x5d\xd7\x40\x70\x84\xe4\xaa\x65\xe3\x0b\x40\x94\x9f\x2f\x59\x8a\xbc\x1c\x7e\xda\x13\x49\x01\x3b\x1e\x17\x22\x71\xb0\x1f\xaf\x16\x0c\x4b\xe2\x6f\x68\x4d\xbc\xdf\x15\x6f\xa9\xf3\xef\xe1\xb0\xcd\x57\x4f\xe8\x93\xfd\x44\x5d\x7d\xb7\xcf\x1a\xc0\xc8\x48\x53\x5b\xa0\xbe\xe7\x56\x08\x13\x63\xa1\xc0\x3f\xa1\xce\x64\x01\x85\xe5\x19\xaf\x97\xf7\x00\xc1\x7c\xe8\x3e\x31\x6f\x72\xf2\x3d\xd5\x90\x5b\x21\x09\xfa\xcc\x53\x1d\x4d\x1c\x2e\x57\x62\x00\x9e\x93\x12\x90\x55\x46\x6c\x79\x51\xaa\xb3\x34\xb4\x54\x19\x3b\xd4\xc6\x8e\xac\xe8\x72\xbd\xc6\x75\x6f\x8f\xd6\x1e\xaa\x5b\x25\x0c\x4b\x56\xd8\xd0\x32\xe8\xf7\x19\x15\x67\x80\x57\x01\xa9\xb6\x21\xe0\x92\x58\x1e\x12\x20\xa7\x82\xee\x4e\xed\x9b\x65\xe9\x84\xd7\x36\xa1\x39\xb8\x45\x5b\xb0\xe3\xb5\x1b\xf4\x5a\xd5\x2b\xf7\x55\xf0\xa6\x1e\xbb\xa5\xc9\x20\xac\x54\x8e\x37\x20\xd5\xfd\x6a\x0a\x6f\x71\xe8\xd7\x8e\x67\x44\x3a\x9b\xd6\x36\x75\x3a\x87\xfa\xa5\x3f\x7a\xa3\x0a\xed\x36\xd7\x03\xe6\x7e\x80\xbd\x99\x62\x59\x76\xbc\x7c\x79\x1b\x2c\x03\x7d\x41\x9e\x38\x94\x83\xcc\xf8\xa7\xfd\x3f\x07\x46\xc8\x78\x65\x59\xa8\x40\x2d\x12\xd3\xe7\x47\xbe\x22\xce\xda\xc2\xdb\x74\x39\xee\xde\xf4\xa7\x1e\x49\xd6\xe3\xc8\x9b\xd2\xd5\x15\x1e\x86\x55\xab\x34\x65\x24\x81\xba\x86\x74\xd3\x5d\x47\x40\x56\xe3\x2a\x16\x61\x21\xdd\x1e\x47\x04\xea\xf8\x7c\x32\xa0\xa9\x57\xe5\x91\x65\x51\x2f\x5a\x37\x6d\x7b\x56\x97\x79\x70\x2b\xae\x20\x85\xfe\xcf\x56\x5d\xf2\x02\x99\x61\xc9\x2e\x95\x42\xff\x05\x00\x16\x8a\x84\xaf\xdf\x82\xcf\x75\x24\x5f\x99\xeb\xd0\x7a\x9e\x22\x56\xd0\xd7\x7a\xc6\xf4\xf3\x22\x86\x98\xcc\x77\x25\xb2\x32\xf3\x59\x29\xc8\x3c\x6d\xd6\xd4\x99\x73\x67\x0a\xa5\x69\xcd\xf4\x84\x5f\xbf\xe8\xc5\xde\x79\x36\xc6\xd6\xce\x9a\xd6\x74\x28\x76\xde\x3f\x0c\xb6\xc1\x51\x0a\x4c\x3d\x9f\x51\x43\x88\x02\xe2\x43\xb7\x64\xa8\xff\xed\x49\x75\x3d\x6b\xc8\xc2\x8e\x29\x7c\xa6\x46\xce\x18\x22\x2b\xbc\x3c\x8e\x97\x2c\xa9\x7f\x5b\x2a\xbe\x88\xd7\xa8\x92\xa2\x50\x3f\x39\xd6\xad\x95\x03\xd4\xac\xf0\xe9\x9c\x48\xda\xc7\x7a\xc4\xe9\xb3\x30\x12\x58\xe8\xd4\x76\x60\xa7\xe3\xc4\xae\xe7\x3b\xe7\x8f\xd6\xee\x06\x77\x59\x91\xca\x9e\x0f\x5c\xa9\xdb\x2a\x60\xdb\x95\x9b\x94\x45\xc7\x93\x65\x75\x0f\xaa\x50\x07\x27\xca\xea\x79\xf7\xeb\x50\x3b\x52\xe3\xb4\x94\xdb\x3b\x17\x07\x47\x4f\x45\x52\x90\x84\x15\xa8\x70\x2c\x39\x1b\x63\xf0\xbb\x50\x2d\xb1\xa1\xfd\xde\xab\xf1\xfd\xaa\x88\xef\x33\x64\x8d\x7c\xb9\xd4\xf5\x7c\x5b\xfc\xd9\x3f\x1f\x82\xcd\xbd\xcd\x50\x21\xcc\x1b\x9f\xdc\x33\x22\x82\xb1\xde\xd1\x01\xd5\x8e\xe6\x9f\x57\x85\x4a\x5c\x9d\xaa\xf1\x68\x6e\x9e\x82\x95\x14\x48\x89\xa3\x8f\xfe\xc7\xd1\xc4\x13\x2c\x8f\x96\x30\xb7\x98\xe2\x31\x7f\xc8\x7b\x03\xe5\x73\x2f\x45\xac\xba\x6f\x5f\x8e\x6f\x4b\xfb\x5c\x1e\xac\xfa\x3f\xa4\xeb\x1a\xd9\x88\x55\x38\x12\x8e\xcf\xd9\x46\x8e\x91\xbf\x98\x61\x53\x4a\x7e\x18\x8f\xad\x55\xec\xc5\x30\x85\x04\x1b\x76\x0c\x8a\x7e\x13\xb2\x08\x5f\x14\xa7\xff\x6d\xbd\x6e\x8b\x4b\x9d\x86\x4d\x3c\xa1\xf5\x7d\xe2\xb0\x7a\x3a\x33\xe6\xf0\xac\xcd\xb1\xc6\x6d\xc9\x79\x18\x2d\x60\x97\xeb\x3d\x27\x1c\x95\x07\xaf\xd5\xa6\xb3\xa8\xae\x10\xfa\xe5\xa1\xe2\xb4\x2d\xa4\xbe\x58\x59\x67\x3e\xd2\x35\x32\x21\x04\x80\x18\x8a\x38\xf7\xfb\x5f\xd4\xae\x5b\x99\xba\x58\x5c\xf8\xe0\x8e\x3b\x55\x7d\xe5\x91\xaa\x47\x39\x8b\xcd\x3c\xa8\xc9\x57\x32\xea\x74\x47\xce\xfd\xc1\x7f\x3f\xa4\x49\xf1\x11\xa7\x84\xaa\x94\x61\x01\x34\xe2\xf7\xf1\x6f\x66\x81\x91\x73\xb7\x89\x59\x95\xc7\xe8\x4f\x9f\x1f\x0f\xda\x13\xcc\x1c\xec\x36\x81\xb5\x52\x9b\x5f\xb9\x56\x7f\xe5\x98\x39\x08\xf8\x1f\x7e\xe9\x56\x91\xcc\x6f\xa7\xe1\xff\x85\xed\xc3\x3c\xa8\x5d\xef\xba\x02\x0c\x7c\x55\xb5\xc9\x9d\xd2\xb7\xd4\x0a\xe8\xef\xf6\xc2\xd5\xb8\xcf\x4c\x51\x5d\xa6\x06\x1f\x81\xd5\xab\x92\x32\xca\x94\x34\xaa\xfd\xcc\xf6\xd6\x88\x32\xba\x7c\x9d\xe6\x6a\xc4\x0f\x49\x4f\xd4\x8d\xa7\x6f\xd7\x30\x5f\x66\xd8\x11\xcb\xc4\x3c\x74\xa7\xf6\x3c\x63\xd3\x1d\x65\x95\xe3\xe4\x9b\xdd\x6d\x1c\xb9\x07\x0d\x1a\x2f\x8e\x90\xa5\xba\x85\xdd\x2c\x65\x04\x3b\x12\x66\x74\xe0\x92\xce\xce\x11\xc5\xf2\x94\x1a\x27\x4c\xbf\x6f\xd9\x48\x30\x75\xf1\xb0\xe3\xca\x68\xd7\x9b\x2e\xdf\xa9\xa3\xaf\xab\xbc\x3c\x51\x25\xfb\x1d\x33\xa0\xaf\x23\x23\x38\x6b\x5a\xc8\xe7\x84\x3a\xe3\xee\x63\xe2\x13\xdd\x45\x69\x21\xcf\x48\xa1\x14\xf7\x2a\x77\xf4\x03\xd6\xa7\x16\x46\xdc\xa7\x23\xb5\x4a\xae\xcb\x3d\x8c\x38\x78\x28\xd7\x9b\x7e\x48\xda\xe8\x31\x6e\x92\xcd\xc3\x55\x6a\x6a\x64\x9f\x53\xa3\x52\x11\x64\xb1\x96\x51\x0b\xd8\xf1\x1d\xce\x31\xa3\xd1\xe0\x76\xcf\x3c\x4d\x69\xcc\xcf\xe7\x2d\x89\xb7\x4b\xfd\x61\x93\xb6\x5a\x35\x3d\x3f\x86\x1f\x4f\xbb\x52\x85\x2b\x26\xb6\x2e\x2c\x5b\xe7\x33\x48\x1e\x67\xda\x75\xfb\x54\x86\x4d\x2f\x6b\x23\x12\x63\x7e\x1e\x03\xda\xc9\x2e\xc1\x36\x16\x7f\xfc\xb9\xd5\x11\x0d\xd4\x92\x23\xad\x3d\x67\x93\x9f\x03\x3b\x5d\x34\x92\x99\x4e\x3d\xd1\xaa\x72\x17\xb1\xc3\x7a\x9e\x77\x53\xc6\xd8\x75\xc9\x43\xe1\xbb\x7e\xd8\x32\xcb\x5c\xf2\xc6\xab\xda\xf4\xa6\x51\x65\xbe\xab\xee\x68\x7a\x4d\x7f\xad\x1a\xe9\xc1\x8c\x40\x45\xcd\xe0\xd7\x6b\x35\x27\x1d\x46\x4a\x25\x1c\xd9\x7e\x07\xbf\x7c\x56\x83\x4c\x49\xf9\x5f\xf9\x01\x36\x69\xf6\xb2\x62\x9f\x95\x75\x6d\xa1\xa8\xcb\x0b\xb1\x8d\x3a\xcd\x9c\xfa\x79\xa1\x74\x20\xf8\xa3\x0b\xc7\x0b\x18\xe2\x32\x4a\x9d\x52\x53\xff\x76\x69\x87\x2a\xf0\x1c\x1c\xfe\xff\x8a\x10\x33\x7d\x72\x80\xa6\xbc\xc0\x1d\xb0\x5c\x2b\x7a\xa4\xe9\x4d\x97\xb5\xee\xce\xaf\x46\x9b\xaf\x3b\xba\xc6\x82\x18\x25\xec\xba\xb2\x1e\xcd\xd6\x88\xb0\x22\xce\x14\xf7\xab\x1a\x09\x59\x88\xf1\x3c\x75\xcd\x79\x1d\xd7\xc8\x5c\x4c\x2c\x0b\x06\xc5\xcf\xac\x97\x47\x3a\xbc\xbb\xa2\x3a\xba\xe1\xb9\xab\xb5\x57\x18\xa3\x1b\x8c\xcf\xf4\xbf\x1a\x7c\xbb\x5a\xc2\xa0\x7a\xcb\x96\xab\xb9\xb4\xa7\x14\x86\x4d\x48\x0a\x1e\xd5\xdc\x27\xc2\x2f\xe0\x4a\x18\xdb\xef\xdf\xd3\xc7\xf7\x94\x1b\x4c\x48\xeb\x50\x34\x56\x7c\xc2\x3b\x1c\xee\x41\xca\xd5\x89\x5a\x05\x80\x80\x17\xea\x58\xb9\x6a\x74\x82\x19\x41\x34\xfd\xc4\x91\x58\x5d\xfa\xd4\x2b\xc0\x32\x39\xd2\xc7\xbb\xb1\x2b\x49\xc1\xb0\x1b\x22\x7a\xa6\xd6\xbf\x2b\xb7\x06\x0d\x3b\x4f\x85\x13\xd0\xd1\x23\x89\x99\xd9\xc2\x85\x53\xf8\x24\x2f\x9b\x0b\xee\x7a\x4f\xc3\x73\xa1\x3c\x23\xa6\x04\xf7\x6d\xd8\x37\x1c\xb6\x31\x62\xa6\xcd\x83\xfa\xcb\x90\xf8\xdb\x15\x5e\xd4\x5c\xaf\x51\x9a\x08\x01\x95\x96\x4c\x99\xc1\xc1\x81\x6a\x5a\xe6\x57\xc5\x0f\x78\x36\xda\x6c\xf8\xac\x86\xb9\x80\xbb\xb1\x74\x95\x7a\x04\x45\x54\x37\x13\xbb\x96\x54\xef\xc0\x18\x78\x93\x6f\x46\x35\x67\x26\x8f\xd2\xa7\x3c\x7e\x2c\xe2\xfe\x91\x8b\x4a\x99\x42\x0c\xec\x27\xee\x07\x3a\x91\x5c\xca\x86\x9f\xd5\xea\xb1\x78\xd6\x66\x22\xf0\xcb\x33\xfd\xa4\x7b\xd8\x42\xea\x94\x18\x18\x72\x67\x1e\x6b\x49\x5e\x69\xee\x7d\x1f\xc6\x4a\x89\xea\xe8\x0c\xb4\x64\xe4\xe1\x6a\x19\x39\x09\x3f\xab\xd5\x2f\x5e\x0d\x86\x75\x96\x15\x91\x77\xf9\x07\xb5\xa2\xc7\x64\x9a\xc2\x55\x34\x75\xf8\x44\x74\xec\xf3\x79\x31\x74\x4b\xf5\x5b\xa6\xad\xda\x2c\x44\x6c\xb9\x39\x0b\x56\xee\xd6\xc4\x66\x88\x65\x45\xfd\x06\xa8\x16\x3f\xb2\x53\x14\x01\x15\x62\xf2\xd1\x47\x7a\xdb\xfd\xfa\x0a\xb6\xc6\xb5\xad\x22\x69\xaa\x7a\x8b\xd4\x7c\xb6\x8a\x98\x35\x30\xf0\x54\x1b\x7a\x59\x63\xe4\x21\xc7\x37\x4d\xa2\xed\x7f\x5e\xb2\x92\x6f\x4c\xb4\x0b\x22\x4e\xb9\xa3\x9a\x60\x50\xd8\xa6\x4e\x04\x87\x33\x66\xcf\x00\x4b\x29\x42\x6d\x5c\x20\xa6\xd8\x3a\x7c\x0b\x60\x1e\x89\x63\x12\x66\x71\x93\x5f\xe3\xd9\x93\x0a\xa0\x23\x9c\x12\x9a\xd1\xd4\xe9\xc9\x87\x93\x61\x2c\x8f\x99\x74\x10\x30\x86\x1d\x53\xa0\x78\x13\xb9\xb8\xd1\x34\xa8\x5d\xbd\x74\x10\x9c\xad\xf1\xc0\xb9\xb6\xa8\xfd\x40\x8a\x22\x44\xdf\xa0\x31\x80\xd3\x8c\x98\x2d\x7a\xe9\xd4\xa3\x13\xa0\x96\xb9\x2f\x9d\x9a\x7b\x5a\xc4\xcb\xf1\x28\x1f\x67\x07\x1b\x4f\x69\x6a\xcb\x35\xac\x7c\x35\x52\x3f\xeb\x97\x7c\xe3\xa5\xf0\xcc\xb1\x82\xb6\x80\xcb\x7c\xf6\xb8\xee\x2e\x8c\x58\x29\x52\x7f\xc9\xbc\xcf\x6b\x06\x57\x90\x98\x64\x9f\x79\x64\x11\x50\x4d\x0c\x4b\xdf\xb5\x79\x00\xf9\x6b\xc8\xda\xf6\x6f\xd6\xa9\x98\xeb\x3b\xc4\x46\x25\xe2\xc8\x41\x57\xea\x6b\x33\xb4\xaa\x18\x7b\x75\x1c\x89\xe0\x05\x1f\xd5\xd6\x31\x5c\xd4\x32\x56\x6a\x79\xe3\xbc\x7a\xff\x1e\x65\xe1\xb1\x14\x31\xf1\x77\xfb\xae\x69\xfa\xd4\x9c\x73\x2b\x35\xbc\x7f\xa7\x85\x09\x17\xa9\x59\xca\xf5\xdb\x9b\xf8\x4e\x66\xd9\x69\xa0\xb8\x52\x5f\xd1\x1f\x6c\x03\xa8\x45\x6b\x0d\x5a\xe3\xdc\xeb\x89\x51\xa3\xe5\xba\x98\xe5\xf9\x00\xc9\x6b\x15\x35\x49\x91\xd2\x82\x38\x0b\xb7\xcf\x50\x2a\x23\x52\x27\xe1\x80\x3a\x31\x88\x61\x94\xcd\x05\x57\x6c\x03\x26\xc8\x84\x63\x34\xf8\xf1\xdb\x31\x59\x71\x07\xeb\xd4\xc6\xcd\x32\xca\x97\x74\x5a\x47\xd8\x3d\x86\x7d\x59\x74\xe0\x3e\x96\x01\x1a\x22\xe1\x9b\x96\xdf\xea\xfe\xf3\x23\xb4\x5d\x21\x16\x18\xee\xd4\xd7\xb5\x82\x1f\xf9\x1e\x75\xa8\x2d\x7d\x96\x8d\x7f\x1b\x0c\x1e\x87\xcf\xb1\x70\xe1\xbb\xb9\x7e\xe0\x10\xd0\x3a\x55\x45\x01\x9c\x22\xb7\x6a\xf1\x99\x4b\x69\x88\xf9\x4a\xff\x15\x31\xbc\x89\x55\x9a\x37\x20\x17\xfa\x6b\xef\xcc\xc4\x8e\xb4\x39\xba\x6a\xad\x32\x5f\xe0\x66\x1a\x09\x5d\x97\xbd\xcf\x01\x6f\x47\xae\x96\xc9\xd9\x9c\xbb\x41\x93\x8d\x3c\xd9\xa6\xa4\x8f\x1e\x50\xd5\x69\x81\x54\x2d\x6a\xc3\x0c\x90\xbe\xee\x17\x1a\x9a\x88\x43\x26\x54\x0b\x79\x4a\x9a\xd5\xcd\x6c\x93\xb2\x7e\xbd\xa9\x9b\x8d\x3e\x50\x2e\xac\x14\x3e\x5d\x79\x51\xbf\xbf\x0e\x78\x30\x90\x84\xc4\x6a\xfa\x48\x72\xe8\x95\x47\x44\x68\x13\xa7\x8f\xee\x05\x9e\x2f\xc5\x62\xd6\xa4\x16\x97\x55\x4a\xdd\xf9\xc4\x38\x80\x62\x66\x0e\x6a\x3e\x24\x4f\x6e\xbf\x4a\xe9\x1a\xf3\xb3\xfb\xeb\xfb\x00\xa9\x77\x46\xeb\xb4\x39\xe1\x1f\xee\x7f\x5b\x1f\xce\xb8\x84\xf7\x8b\xd2\x14\x71\x3d\x28\xc3\x71\x84\x95\xce\xdc\xbf\x42\x5d\xf6\x12\xad\x17\xa0\xa4\xfd\x97\x7e\xac\x8d\xa0\x0b\x98\x5a\xb4\xd4\xe0\x3f\x31\xb8\xe5\x72\x34\x2c\x2f\xfa\x92\xba\x61\x1c\xdd\x25\x51\x69\xb3\xa7\x87\xff\xf3\x87\x53\xb5\xf1\x37\x29\x60\xb7\xca\x30\x92\x53\xec\xf4\xe5\x9d\x49\x38\x01\x2a\xf5\x81\x62\x9c\xbc\x01\x5c\x2f\x5e\xc9\x09\xd3\xc9\xd9\x23\xb5\xa7\x8d\xc5\x20\x2a\x78\x75\x9c\xe8\xbc\x30\x6b\x70\xf3\x7a\x4a\xb0\x27\xde\xdd\xe5\xf7\xae\x05\xc3\x17\x4a\x9b\x75\xe5\x1d\xcd\x31\x41\x08\x7d\xcb\x0e\x77\x4c\xbe\x2f\x15\x70\xe4\x48\xfc\xe2\x97\xcf\xea\x84\x22\x93\x0a\x2f\x14\xf9\x75\x07\x2b\xab\xda\x39\x09\x92\x49\x6a\xa3\xfa\x8a\xf5\x32\x2d\xf8\x0e\x09\xc3\xf3\xf6\x17\xb5\xc1\x4f\x01\x55\x3d\xcc\xe2\xf3\x8b\xf6\xa9\x41\x69\x91\x38\x42\x81\xf3\x3a\x89\xa2\x5c\xe9\x21\x4f\xfc\xc9\xd1\x77\xaf\x4f\x60\xa9\x85\xf1\x8b\x06\x70\xf8\xc2\x3e\xb5\x7d\xb4\x05\xae\x4b\xe8\xf1\x86\xa7\xe4\xba\x1b\x35\xc7\x36\x8c\x23\xf2\xac\xf1\x97\x7d\xea\x04\xb9\x55\x8c\x58\x59\x31\x7f\x0e\xaf\x9f\xa2\x2e\x33\xb6\xb0\xe6\x67\xd3\x34\xa1\x7c\x12\xb8\x88\x23\x66\x53\x5f\x80\xa5\xd3\x6f\x6a\x17\xcb\x8c\xc6\x4b\xeb\x57\x2b\xb0\x7c\x23\x7c\xf7\x03\x81\x10\x2d\x57\xec\x8f\xb8\x2d\xd7\xa8\x89\x18\x29\xf0\x50\xf8\xeb\x1d\xda\x88\x1e\xc5\xc2\xbe\x6d\x16\x9c\x40\xfb\x5c\x2b\x2d\xfd\xd4\xc4\xe4\xdf\x9f\x36\x77\x56\x9b\xdc\x57\x1a\xa5\x67\x78\xf5\x94\x5d\x0c\xc5\x44\x9a\x7a\xb5\x43\x37\x6a\xae\x56\xc8\x29\x61\x46\x7d\x09\xaa\xbd\x4f\x9f\xa4\xd9\x79\x22\x9a\xf8\xd6\x6c\x2e\x98\xc3\x94\x40\x7d\xb3\x42\x53\xe6\x86\xc7\xb5\x58\x17\xe9\x26\x8a\xad\xe9\x97\xb6\x6b\x63\x51\xcb\xca\x52\x5f\xf6\xa0\xc6\x3d\x2f\x89\xbb\xdc\xde\xd6\xc6\x69\x42\xe1\xd7\xbd\x79\xad\x1e\xfc\x9d\x8a\x1c\x91\xa7\xdf\xdc\x26\xee\xf9\xf2\x85\xcb\xc3\xba\x82\x0d\x06\xb0\x8a\x02\xe6\x73\xae\x74\x6e\x03\x34\x72\x24\x96\x34\x53\xb9\x69\x9e\x4e\x77\xe7\xca\x7d\xbc\x82\xfc\x4c\x19\xc0\x0d\xc2\x6e\x4f\xa8\xe9\xa5\xc6\x6c\x02\x5d\xa0\x04\xba\x44\xf0\x98\x5f\x9e\x4f\xd6\xad\x25\xc4\x0a\x98\x3f\x32\x30\xca\x4d\x6f\x7b\x7b\x28\x6c\x68\x49\x45\xa4\x95\xe3\xbb\xae\x06\xb2\x5f\x0e\x8c\x7e\xa9\x7e\x4f\xa9\xb3\x58\x42\x61\x0b\xe1\x84\x7d\xd1\x6b\xf3\x41\xe7\x4b\xa4\xa0\xdc\x91\xb1\x62\x99\xe2\x08\x85\xbb\xf4\x67\x0f\xc1\xf4\x5c\xb4\x7c\x2c\x37\x49\xc6\x15\xe3\xaf\x02\x9c\xf6\x6c\x2e\x70\x2f\xe8\x52\xd7\x1e\x2e\x09\x95\x37\x11\x34\xca\x1d\x9a\xbe\x2b\x43\x45\x2f\x3a\x77\x9f\xfe\x05\x94\x12\x03\x4e\x97\x43\xcf\x5c\xa3\xd7\x89\x91\xfd\x0e\x2f\x2c\x3e\xde\x22\x3e\xf1\xaa\xdc\x27\x56\x84\x7f\xff\x9c\x27\x17\xe4\xc2\xfc\xc9\x14\xe2\xba\x05\x20\xc3\xaa\x7a\x8c\x8d\xe0\x92\x5a\x5e\x99\x72\x07\x85\xe0\xf3\x47\xe2\x1d\x28\x9d\x04\x75\xd0\x26\x74\x8c\x82\x90\x3f\xb3\x22\x25\x64\xf9\x0f\xbb\xed\xd0\xc8\x24\x34\xce\x75\x23\x99\xb4\xed\x63\x92\x5f\xbc\x4e\xb9\x88\x10\xbf\x0c\x4f\xbe\x9a\xf4\x34\x44\x35\xf2\xbf\xc2\xc6\x52\x44\x98\x21\x67\x17\x0b\x6f\xa9\xa6\x61\xeb\xfd\x45\x30\x39\x15\xca\xd6\xe1\xc1\x7a\x7c\x28\x28\x57\xeb\x88\x15\xc2\x42\x69\xd1\xeb\xe2\xe4\xdf\x55\xa6\xd9\x5c\xf0\xa8\x66\x35\x62\xd1\x1a\x20\x36\xcf\x38\x01\x7e\x2e\x71\x2b\xe2\x99\x76\x4d\x10\x4f\xba\xca\x88\x4b\x23\x95\x9e\xf4\xef\xe4\x0d\x44\x35\xcc\x22\x9a\xcb\x33\x2f\x6a\x2b\x6f\x44\x98\x2c\x89\x37\xed\xd6\x50\xbe\xd2\xa7\x23\xd7\x9b\xfe\xa1\xf1\xa1\xe6\xf3\xd2\x9c\x56\x33\x13\x8e\x46\xa5\xad\xe7\x73\x3c\xe2\x8f\x1e\xd0\x8c\x40\x1d\x0f\x4b\xe6\x25\xaf\x61\x56\x9e\x4c\x9e\x54\x1b\x15\x18\xf7\x1d\x8c\x66\x3b\x2f\x2d\x1b\x02\xd2\x11\x66\x22\xf0\x6e\x9c\x3c\x46\xa6\x6e\xe4\x98\xba\x57\x67\x6f\xfa\xbb\xed\x7a\x01\x8f\x2c\x8b\x13\x0f\x4b\xf2\x0b\x6d\x7a\x5e\xd1\x7a\xa0\x0b\xf8\x2f\x27\xe8\xea\xd5\xdc\x61\x50\x86\xb4\x7f\xbd\x0f\x2a\xff\xca\x99\x5d\x36\x17\xfc\xf2\xc9\xc1\x80\x28\x2d\xc4\xab\xd2\x2f\x0b\x7d\x86\xec\xed\xac\x4f\xb1\xc3\xa7\xb5\x86\xd0\x97\xcc\x93\x60\xef\xba\xab\x94\x0f\x4b\x98\xb1\xe9\xf8\x49\xda\x33\x12\xa4\x85\xf0\xb5\xe9\xdf\x7c\xd2\x95\xda\x50\x16\xe5\xd5\xad\xbf\x63\x3c\x40\xea\xd8\x55\x89\x58\x31\xd6\x69\xbc\xb3\x2a\xf2\x50\x85\x48\x60\x47\x14\xb9\x7e\xf4\xf4\x28\xad\x95\x74\x0a\x38\x82\x43\x36\x76\xc5\x79\x70\x76\x3b\xb7\xcc\xb5\x5a\x6e\xd4\xca\x16\x17\x23\x66\xf6\xb9\x91\x36\x5e\x06\x5c\xba\x22\x22\xcc\x11\x03\x0e\xa3\xe5\x4e\x20\x30\x4a\x1c\x2c\x90\xab\xbd\xc6\x7f\x6f\x1c\x2c\xab\x73\x86\xa5\x53\x6a\xf0\x0f\x2b\x06\x47\xbf\x6b\xd2\xa4\xa8\xc4\x78\x7f\x10\x2f\xcc\x56\xe5\xa0\x7a\xf1\x71\xcd\x5b\xdc\xc6\x65\x0f\x25\x66\x31\xdb\x5e\xd3\xcc\x6d\x51\x24\x8a\x6c\x7c\xcf\x49\x8e\xdb\x22\xcf\xfb\x14\xe9\xd4\x3c\xc2\x91\x49\xf3\x2e\x67\x21\xa8\x66\xfb\xae\x63\x91\x98\x2a\x2e\xe0\x30\x34\xf1\x9a\xdd\xe8\x79\x59\x45\xc5\xb2\x9c\x88\xa6\x7f\x3e\x47\x0e\x7d\xcc\x32\x95\xf3\xbb\xc1\x07\x12\x54\x4e\x8e\x70\xe1\xeb\xe0\x1d\x5a\xd5\x9b\x2f\xf8\x96\x85\xca\xf0\x77\x1b\x5f\xd8\x00\x04\xe0\x26\x09\xa4\xbc\x31\xfd\x8a\x11\xb0\x88\xb7\x63\xc7\x84\xd4\x87\x8f\x29\x31\xa9\x02\x76\x08\xf4\x12\x30\x56\xcc\xd1\x60\xaa\x65\xca\x12\x78\x98\xf4\xfe\xc9\x9a\x20\x1e\xad\x3b\xc2\xfa\xe3\x91\xed\x7a\x10\x72\x22\x78\xe5\x10\x68\x47\x12\x07\x8b\x6c\x2e\x78\xee\xcc\x04\x35\x26\xf1\x6d\xe4\x10\x0f\x71\x07\x3f\xfd\x34\x7d\xfb\x8c\xfa\x09\x5c\xc8\xc9\xa4\x8c\x0f\x4f\x32\x77\xec\x6e\x32\x4e\x71\x71\xb4\x2d\xfa\x43\x8f\x08\xe8\x77\x09\x37\x8a\x66\xf2\xe0\x54\x49\x24\x2a\x94\xb0\x00\xca\x95\x01\x6c\xa7\xea\x97\x2c\xbe\xf8\xce\xdc\xb6\x42\x4c\x08\x17\xc5\xd6\x4e\xf2\x69\x96\xa4\x6b\x44\x9e\x51\x54\x10\xdd\x46\xc7\xe3\xda\x4b\x93\x20\x33\xb8\x0f\x4a\xb7\xcc\x13\x59\xd5\x17\x76\x76\xc6\x85\x8b\x70\xb6\x5a\xe2\xf0\xdd\xf0\xcf\x27\x68\x76\x82\x11\x93\x5a\xc9\xa3\x7f\xf7\x79\x20\x25\x48\xf3\x54\x3a\x89\x6c\x02\x32\xc5\x92\x5e\xcb\x55\x67\x9e\x83\xb5\x56\x34\x57\x4b\x4d\xdf\x00\xaa\x1e\x0b\x49\x03\x8c\x63\xfb\x13\x32\x17\xc2\x02\x93\x97\x7c\xfe\xe1\x41\x00\x54\x64\x55\xb3\xb9\xe0\xd9\xa1\x23\xe0\x0c\x7a\xf5\x94\x9c\x9c\x40\xdc\x37\x35\x86\x2e\x39\xdc\x22\x48\x09\xc6\x39\x17\x93\x81\xb9\x8e\x18\x89\x58\xb1\xc1\xa7\x06\x24\x4b\x79\x86\xa4\x38\x49\xc6\xbc\xa8\xde\x11\x87\x26\xf2\xc4\x58\x76\x92\x8f\x0a\x77\x47\xae\xb3\x11\x67\x61\x75\x8b\xc4\xc6\x62\x2f\x8f\x44\x8d\x92\x59\x76\xbf\x6e\x31\x8d\x5c\x93\x8a\x32\xfb\x27\xc7\x20\xce\xae\x84\x84\x0d\x66\x6f\xfa\xcc\x2d\xba\xfd\x76\x89\x85\x7d\x4e\xf8\x8f\x8c\x77\xa6\x26\x64\x07\x90\x67\x72\xd9\xa1\xcc\x03\x3d\x22\x44\x08\x12\x1c\xb7\xcd\xcc\xe6\x82\x73\x6b\x74\x76\x97\x8b\xb3\xf9\x86\x00\xd0\xc9\xe6\xed\xe3\x67\x80\x91\x2e\x0d\x8b\x44\x3e\x8f\x4f\xd3\x16\x7d\x9f\x8e\xac\x86\x1b\x27\x86\xd7\xc6\x46\xb8\x1d\xb3\xc2\x87\xd9\xaf\x8a\xbb\xb0\xda\x42\x05\x52\xa3\xae\xc7\xe5\xc4\xe3\xe8\xf9\x70\x41\xa5\x3b\x8f\xe6\xc5\x1c\xdf\x18\x10\x4b\xe2\xba\xbe\x15\x95\x1b\x97\x0f\x4b\x4d\xdc\x48\x0c\x62\x63\x13\xc9\x09\x01\x87\xf9\xf4\x9f\x86\x27\x77\x5b\xac\x8e\x9c\x02\x72\x14\x5d\xa5\x37\x7d\x5f\x3f\xad\x29\x09\xc3\x44\x58\xe4\x49\xb5\xea\xfb\x56\x83\x03\x5a\xa5\x0e\x0f\xb0\xc1\xb7\x17\x69\x7b\x57\x2e\xf1\xe5\x02\x5d\xe9\x2b\xde\xd3\x1d\x7b\x4d\x0b\xb1\x98\xd3\x66\xfc\xd7\x93\xda\x5a\x2f\x4f\xa8\x85\x78\x4f\x10\x0b\x36\x2c\x4b\xd2\x4c\xc5\x9c\xfe\xb7\xc7\x00\x18\xd9\xc2\x70\xf2\x3a\x74\xac\x40\x3b\xdd\xbe\x6a\x71\x53\x05\xf9\xa1\xed\xa0\x8a\x15\xb6\x86\xc4\x13\x38\xcd\x81\x4f\xeb\x55\x8a\x20\x6f\x8b\x2d\xc7\x15\x73\x34\xb4\xb1\xf0\x9c\x15\xe3\x6b\xda\x13\x4f\x58\x78\x06\xcf\xe6\x82\x5d\xa7\x07\xc5\x47\x90\x55\x44\x3a\xf1\x17\x01\x7d\x51\xcf\x23\x9e\x5f\xc0\x91\x1d\x5a\xfa\xae\x05\x23\xe0\x7f\x64\x28\xb2\x51\x7b\xe5\x9d\x48\x7e\xce\x93\xab\xd4\xfd\xcf\xaa\x23\xee\x31\x52\xa4\x0e\xad\x65\x73\xc1\xd7\xe7\xab\xe6\x6b\xda\x34\xaf\x2c\xe6\x90\x22\x1f\xbd\xbe\x39\x09\x8b\x22\x4e\x81\xa0\x3e\xeb\x86\x5d\x0e\x10\xa7\xad\x72\xc5\xed\x3f\x5d\x68\x51\xb1\x8c\x6b\xeb\x4a\xc3\x14\xcd\xa4\x64\x6a\xd2\x03\x69\x83\x9c\xc3\xdd\x76\x46\x93\x3a\x34\x3d\x9a\x8f\x20\x31\xa3\x0f\x27\x0f\x08\xad\x61\xc6\x7c\x0b\x17\xc4\xd9\x4d\xbd\x25\x17\x27\x8b\xd7\xac\x5a\x71\x5b\xf8\x10\xd7\x1d\xd6\xe4\xe2\xa8\x57\xc6\xcc\x8d\x18\x35\xbd\xe9\x5f\xed\xd4\x99\x89\x94\x5b\x3f\xc9\x4e\x2c\x35\xe8\xca\xc1\xb1\xbc\x81\x25\x69\xd8\x86\x35\x00\xcc\x11\xca\x34\xbc\xb1\xc1\x3f\xce\x13\x49\x07\x99\x15\x87\xd6\x2d\x5c\x88\xf4\x94\x5b\xce\x35\xd5\xf4\x72\x91\x91\xee\xdf\xa9\x9e\x9e\x43\xf3\x7e\xf8\x67\x3f\xd9\x2a\xae\xeb\x32\x9a\xe7\xdd\xc6\x9f\x5e\x19\x04\x5e\x1f\x17\x3e\x28\x9d\xb9\x49\xfb\x89\x96\xef\xc9\x4d\x57\xb3\x7e\xd6\xbf\x3c\xa4\xe9\x26\x59\xc8\x54\x9b\xd8\xdb\x76\x69\x30\x0a\xe9\x0a\x2e\x83\xf0\x77\x0f\x0f\x03\x83\x6a\x27\x52\x2b\x4e\xdf\xb5\x13\x7a\xa7\x52\xb3\x52\xa6\x96\xd8\x8f\x18\x3b\x2f\x69\xe0\x46\x1f\xbb\x05\x24\x88\x17\xc1\xf2\x1e\x2d\x0a\xd6\x2b\xf5\x08\x6e\x97\xeb\xcd\x58\x2f\xe8\x66\x0c\x79\xe2\xb9\x95\x46\x62\x5b\x12\x94\xf7\x6b\x84\x3a\xea\x70\x05\x63\x33\xb2\x83\x0c\x3e\xdd\x9d\xcc\xea\x45\xb1\xdd\x4d\x38\x35\xa6\xde\x9c\xac\xb5\xe8\xd8\xc2\x79\xb5\xf9\x0a\xde\x9a\x77\x55\xf4\x9f\x84\xd3\xa9\x71\x02\x04\x5d\x22\x71\x62\x3b\xd7\xe9\x76\x3a\x8c\xd4\x90\x25\xae\xfa\xd4\x20\x6e\x9e\x2b\x9c\xb2\x13\xfd\xee\x27\x5e\x4f\x1e\x0a\x16\x8b\x79\x19\x47\x4f\x27\x9f\x01\xb6\xf3\xc8\x75\x1b\x02\x0d\xa7\x46\x1f\xd5\x6e\x7d\x6c\xd5\xde\x16\x3d\xc6\x2d\xcf\xaa\xf1\x01\x05\xd1\x31\x33\x5a\xda\x08\x7c\xc2\x21\xd9\x4e\x69\x90\x1c\x5e\x82\x05\xea\x3c\x57\xa5\xc1\x45\xaa\x7d\x8c\x3e\xd1\x29\xc8\x4a\x2d\x38\xb9\x40\xac\x1b\x97\x9b\x1d\xbe\xe5\x35\x00\xb2\xb7\xd0\x2a\x2e\xe0\x6a\x2a\x6a\x95\x4c\xba\x7d\x28\xd8\x96\x3b\x65\x5f\x18\xf2\xcc\x58\x26\x7e\xc2\x5d\xd8\x15\x82\x6e\xea\x33\xce\x7c\x24\x99\x26\x7c\x86\x9d\x64\x63\x30\xac\xaa\xd6\x5b\x4e\x34\xcc\x4c\xff\xee\x5d\x71\x01\xed\x30\xf5\x65\xc3\x92\x8c\x89\x8f\xd0\xf6\x12\x04\x82\xd9\xb2\x74\x9c\x75\xba\x59\x11\x3a\xe6\x4b\xfe\xf1\x78\x8c\xd4\xac\x35\x01\x2e\xd3\x5f\x9c\x38\x4a\xfb\x84\xc4\x89\x37\x57\xdf\x7a\x7a\x54\x33\xda\x58\xfa\x10\x19\x4f\xee\x84\x4a\xd2\x7e\x24\x6b\xfc\xec\x50\x4d\x29\x10\x35\x28\x93\x76\x82\xa9\x41\x4f\x37\x51\xbd\xc3\x84\xcd\xd7\xbf\x02\xa0\xf9\x4c\x4d\x5a\xf8\x50\x91\x3b\x82\x5b\x5a\x46\xf7\x75\x26\xe5\x3c\x72\xbe\xd6\x36\x38\xbc\x07\x22\x9e\xf2\x24\x59\xb0\x2b\x39\x6b\x10\x74\x16\xd7\xa3\xce\x14\x0f\x78\x43\x67\x36\xcf\x97\xa6\x07\x88\x59\x04\x73\x9a\x8e\xb1\x75\x14\xe0\x3f\x11\x46\x4a\x44\x4a\x4c\x7c\x75\x8c\xca\xc1\xe1\x33\xe1\x62\x1a\x5e\x23\x9b\x0b\x7e\xbe\x51\xc3\xf4\x92\xee\x58\x10\xef\xeb\xbb\x13\xf2\xc5\x6a\xb6\xfe\xd1\x83\x5a\x19\x63\x61\xe4\xfa\x0c\x47\xb3\xcc\x9b\x4f\x0f\x96\xbf\xaa\x8c\xb8\x09\x47\xf8\x87\xf6\x01\x90\x36\xf3\x3c\x6e\x72\x9d\xa9\xe0\x55\x0d\x84\x56\x4d\xb8\xde\x16\xee\xd4\xd1\x40\xbc\x58\x95\xac\xcc\x97\x4f\xc5\x13\x5c\xc7\x6f\xd6\x31\xf8\xee\xad\xa3\x61\x41\x18\xab\x0a\xf3\xfe\xc3\x68\x1c\xea\x43\x5b\xc9\x43\x15\xec\x48\x3d\xd3\x1b\x4f\x0d\x86\xe9\x9b\xbf\xdf\x2b\xa6\x6a\x90\x39\x2e\xa4\x47\x19\x9f\x9d\x4f\xec\x49\xb2\x99\xf8\x50\xbd\x0f\xe6\x77\x66\xcb\x71\xdd\x7d\x83\xc6\x6b\xc0\x8c\x26\xe2\x33\x6d\x4e\x6b\xbb\x8c\x4f\xdf\x78\x09\x78\x38\xe1\x3a\xcf\xf9\x95\xb5\x4a\x00\x07\x99\xa8\x80\xed\x66\xf7\xda\x97\x03\x55\x70\x70\xed\x24\x9b\xb8\x11\x84\xe5\x1f\x7b\x44\xe5\x1a\xeb\x7a\xf3\x56\xa4\x1d\xda\x62\x56\x2d\x4a\xe4\x62\xf9\x5b\xfd\xe0\x72\x4b\x7c\xf5\x28\x0a\x5c\x98\x30\x54\xbe\xf6\x02\x66\xb1\xa7\x95\xf1\x8f\x9b\x95\x8c\x58\x11\x71\xa3\xd2\xe4\xa7\x1b\xf0\xde\xc8\xa4\x5c\x42\x5c\x6a\x9f\xe9\x0f\xc5\xb9\xc5\x6a\x95\x47\xfe\x8e\x0b\xe2\x84\x25\x6c\xbc\x34\x5a\x65\x9d\x14\xa4\x59\x52\x7a\xd6\x8d\x22\xe4\xdd\x8e\x0a\x3d\xe5\x06\x56\x14\xa1\x60\xce\x2c\x81\x43\xea\xa4\xcc\xb3\x54\x44\xcb\xac\x79\x3e\x36\x7d\x31\x71\xc1\x67\x32\x72\x65\x2e\x01\x73\x79\x8e\xe6\x0f\x72\x45\x11\x01\x16\xf9\x42\x63\x2b\xf8\xe6\xe0\x89\xda\xbb\x6d\x84\x95\x72\x5f\xc7\xe0\x41\xd0\xcc\x72\x2e\x8a\x70\xcd\x2a\x9f\x05\xd2\x58\xc8\xe4\x90\xa9\xe0\x7d\xe5\x78\x9a\xb3\x70\x61\xe2\x3a\xde\xf6\xc4\x10\x88\xc9\xf0\x18\x3f\x46\x5f\xeb\x8c\x67\x7c\x16\x86\x16\x0c\x9b\x03\xfd\x39\x39\x25\x81\xe3\x4a\xfd\x6c\xac\xbe\xf0\x14\xb2\xf8\x72\xd3\x3d\xf8\xa2\x38\x2a\xb8\x58\x0c\x1f\x97\x28\xf0\x33\x13\xd7\x0f\x96\x07\xab\xc0\x65\x30\x78\xe4\x3c\x76\x4a\x3b\xe0\x61\x15\x20\xeb\xbe\x9f\xee\x54\x54\x3e\x46\xc0\x27\x3b\xb8\x7a\x9c\x96\x17\x48\xb5\x3a\x25\xe1\x4c\xf6\xca\x9c\xe4\x87\x6f\x60\x14\x4d\x69\x2f\xb5\x28\x17\x07\x1f\x0a\x3a\xff\xfd\x2a\x7d\xde\x52\xa3\xa6\x28\x12\x26\x9c\x04\x5d\x46\x58\x63\x15\xc2\x2f\xc0\xe3\xd5\xd2\x89\x83\x41\xe7\x8e\x0a\x7c\xd5\xc2\x76\xa9\x37\x33\xb3\x2d\x3b\x8d\x6f\xb8\x33\xb7\x1f\x4c\xc6\xec\x7a\x98\xce\xec\xe6\x72\x70\xeb\x39\xf5\xa2\x8a\x16\xaa\xf1\xd9\x57\xba\xe3\xc4\x8d\xaa\xa2\xad\xf2\x8d\x43\x58\xef\x95\x7c\x54\x6a\xb2\x16\x48\x7f\x0d\x28\xfc\x15\xa8\x9f\x97\x5a\xfa\xa9\x67\x5e\x01\x5a\x41\x5c\x90\x4b\xb0\x1c\x8d\x8d\xed\xe3\xf5\x82\xcd\xc5\xac\xc6\x31\x69\xb1\x6d\xee\x8f\xb6\x89\x33\x9c\xf7\x1b\x3c\x2d\x06\x3f\x33\x74\xc5\x78\x62\x56\xb8\x1b\x54\xae\x37\xf3\x37\xc7\xf4\xea\xc4\x8e\xda\xcf\xd4\x03\x40\xac\x97\xb8\x0c\x61\x8b\x64\x73\xc1\xd1\x89\x1a\x86\x4a\xcc\xb9\x23\xfa\x42\xea\xdf\x8f\xab\xc4\xed\x3b\x32\xcb\x46\xfa\x48\x7f\xd5\x56\x7c\x1e\xad\x34\xa8\xfa\xb7\x07\x5f\x56\xdf\xbc\x8c\x58\x21\xec\x78\xf8\xbb\x7d\xfb\x11\x20\xc1\x8a\x22\x95\xa8\x74\x16\xd0\xa3\x99\x44\xa0\x7c\xe1\x29\x5d\xe1\x21\x8f\x3c\x3c\xa5\x2e\x20\x40\xcb\x9d\xe4\xb1\x2c\x61\x66\x23\xa7\x21\x95\x0d\xc2\x70\xf9\xee\x09\x6d\x9c\x1d\x4f\xf4\x32\xab\xba\xc6\xc3\xfa\x8e\xc3\xe6\x9a\xe2\xc0\xc3\x20\x3f\x87\x1d\x50\x41\xe9\x82\x7d\xf9\x45\xa0\x2e\xe0\x5b\x9e\xcf\x22\xfe\xea\x57\x2f\xab\x26\x35\x4c\x34\x09\x4b\x86\x71\x63\xa5\xed\x2a\xa3\x75\x4e\x16\x9f\xfb\xbc\x6e\x0e\x48\x3d\xec\x7a\x32\xd3\x0d\xbb\x52\xd4\x8e\x26\x23\x2e\x47\xb1\x3f\x3a\x5f\x57\x13\xf5\x0b\xd2\x40\x28\x3d\xfc\x16\xe8\x67\x45\xf8\xf4\x21\x7c\xe0\x6f\x4e\x06\xd6\x28\x54\xca\x92\x8e\xde\x07\x3d\xfb\xb8\x80\xa7\x90\xb3\x59\x74\x01\x40\xb6\x3d\xdf\xf1\xc4\x46\xb8\x4b\x3f\x78\x0c\x63\x11\x38\x82\xdf\x1f\x52\x66\xab\xd3\x78\x39\x55\xdc\x9a\xec\xc6\x1c\xdf\xb4\x30\x62\xd9\x3a\x46\x55\xea\xb8\x02\x7c\x19\xa3\xe5\x6f\x3e\xac\xed\x8a\x7d\x6c\x81\xdd\xd2\xc9\xb1\xc9\xda\xac\x42\xa9\x26\x7e\xf8\xcb\xb1\xc3\x40\xe2\x8b\x49\xd5\x69\x74\x50\xeb\x43\x5c\x17\x47\xea\xb8\xc6\xdd\xfd\x15\x60\xb3\xab\x29\x05\x18\x5f\x2a\xc6\x5f\xaa\xad\x75\x4e\xf8\xd3\x06\xbc\x2e\xa2\x2c\xb1\xab\x16\xaf\x5e\xc3\x0b\xf9\x77\x43\xaf\x06\xc7\x08\xdb\xb8\x40\x3c\xc1\x29\x0d\x6e\x7d\x07\x0c\x2b\x0a\x36\x71\x08\x57\x04\xe5\x73\x9f\xde\x15\x62\xea\xba\x1c\x39\x48\xb8\xfa\xa6\x5e\x69\xd1\xc1\xfb\xb5\xb0\x5a\x17\x5c\xb2\xde\xcc\xfa\xb2\x28\xe5\x97\x61\xe6\xbb\xc8\xc2\xd1\x41\x34\x86\xbe\xa3\xc1\x38\xb8\x68\xaf\x2c\x4c\xfe\x63\xb5\x48\x97\x65\xdf\x26\x16\x89\x55\xe5\x46\x3c\x04\xf4\x8d\xa8\x64\xa4\x86\xdf\xe6\xac\x80\x93\xdc\x1e\x3f\xc8\x88\x51\xff\xf0\x49\x8d\x81\x86\x11\xd7\xfe\x17\xe5\xf3\xe6\x8d\xa3\x74\xa8\x55\x34\xaf\x0f\xd8\xd0\xa1\xa0\x43\x2c\x95\x85\xdb\x70\xfa\x7c\x7f\x30\x13\x44\x6e\x54\xe0\x1c\xbc\x38\x0a\x30\xbb\x98\x83\x1a\xa0\xc9\xf9\x07\xcd\x40\x2b\xbc\x73\x36\x72\xcb\xf2\x1c\xfd\x55\x89\xe7\xdb\x61\x0d\x15\xbc\x7f\x83\xf8\x3a\x77\x62\xea\x20\xc8\x3d\xca\x74\x0d\xed\xcb\xdb\xb2\xde\xac\x3a\x9e\x5e\x71\x6e\x28\xd8\x02\x31\x86\xc5\x1a\x6d\xf6\xe3\xd7\x6b\xf7\x01\x39\x16\x6e\x68\x07\x73\xfa\xab\x5a\xde\x0e\xa3\x4c\xf8\x76\xb8\x12\x6b\xb5\x5f\xfc\x79\x67\xb6\xf1\x5e\x68\xc9\x1a\x00\xda\x41\xa4\x0f\xb7\x89\x4b\x3d\xaa\x5a\x27\x36\xff\x79\x52\xd5\xfc\xd2\x05\x4d\x6e\x8c\x12\x27\x22\x19\x67\x56\x33\x50\x8a\x94\xa9\x2b\xac\x6f\x7e\xe8\x28\x09\x8c\x02\xe1\xcb\xf4\xf9\x47\xb4\x49\x05\x12\x0a\x10\xa2\x81\xf8\xca\x2d\x71\x2a\xf7\x90\x0d\x52\xf9\xab\xbb\x74\xfa\x74\x35\x02\x99\x17\x96\x80\x62\x1d\x77\x23\x1e\x7d\x5a\xc6\x68\x72\x6d\xbe\x63\x02\x12\xc7\x97\xb6\x2a\xe4\x61\x95\x5b\xe6\x05\x5f\xdf\x00\x6d\xe7\x6d\xb3\x1c\x56\xac\xb9\xde\xf4\xaf\x81\x30\x82\x57\xc7\x82\x1f\x65\x7c\xa7\x1c\x7f\x50\xec\x29\x55\x82\x20\xb3\x47\x9b\x6f\x90\x12\x62\xd8\xf3\x22\x36\xbe\xb1\x67\xbe\x36\xce\x56\x3a\x2d\x91\xb5\x46\xda\x5c\x0b\x59\x93\x0e\x97\xd6\x30\x7e\x36\x6f\xb8\x32\xb8\x81\x9a\x86\x6b\x2f\x7f\x30\x2a\x63\x84\xeb\xc3\x31\x50\x65\xc1\x12\x6a\xc3\x9c\xe1\x51\x5d\x4f\x99\x27\x11\x57\xfc\x5c\x9f\xd3\xb5\x6a\x3d\xe2\x59\x11\x7e\xba\xf8\x24\xe0\x2f\x21\xe2\x34\xa2\x89\xdc\x02\xb0\x56\x9b\xd5\xde\x3a\x8d\xbb\xbf\x9d\xd4\x58\xcd\x35\x54\xf2\xb1\x12\x14\xbf\x6e\x8d\x36\x4c\xcc\xbb\xa6\xcf\x62\x8f\xba\xf4\x03\x9d\x40\xb0\x28\xa9\xd2\xa2\xb9\x17\x45\xa6\xa5\x72\x84\xb9\xed\x01\xb8\x30\x77\xc5\x24\xc4\xf8\xbf\x47\x93\x34\x36\x0e\x75\x17\x6d\x69\x30\x3e\xc1\x08\x58\xbe\x28\x62\x04\xf4\x66\x46\xf6\x48\x73\x19\x31\x41\x48\x8f\xd1\x46\x05\x2e\x11\x0a\x90\xd5\x6c\x2e\x58\x76\xe3\x58\xfd\x9e\x7a\x22\x78\xcb\x34\xd0\xb6\x43\x63\x8d\x09\x54\x6b\xa4\x96\x75\xf6\x38\x10\x63\xc1\x45\xca\xe5\xd0\x6f\x98\x20\x5f\x29\x15\x79\xe6\x1a\x4d\xd5\xcb\x77\xc2\x1a\x7c\x0a\xe6\xfa\x28\xb5\xe3\x23\x41\x8f\xe7\x56\x09\x8b\x84\xf5\x33\x8f\x69\xa2\x12\xd5\xb0\x01\xf4\x22\xd2\xca\xc3\x9b\x81\x57\xb8\x13\x2d\xf5\x0f\x2c\x80\xc3\x23\x2f\x82\x8d\x5d\xbd\x4f\xb7\xcb\x25\xf1\xf4\xec\xbb\xa7\xc6\x81\x76\x19\x23\xaf\x19\x1c\x3e\x0c\xa8\x7a\x95\x69\x13\x64\xae\x37\x7d\xc3\x1c\x5d\x56\x97\x16\x22\x73\xf7\xcc\x2d\x9a\xc3\x3f\x75\xfa\xb2\x47\xeb\x77\x30\x39\xc4\xeb\x42\x35\x54\x29\xa3\x42\x4f\x72\x3f\x7b\xf1\x82\xa6\x37\xc1\x99\x12\x70\xf5\xb8\x6e\xa9\x3e\xa6\x22\xc8\x92\x85\xae\xf1\x99\xf5\xa2\x62\xaa\x5a\xa8\x11\x26\xe8\xaf\x9e\xb8\x46\xeb\x01\xac\x0a\x34\x65\x1d\xbc\x15\x8a\x79\x12\xc7\x24\x9c\xab\x13\xcc\x3a\x23\xe6\x38\x09\x79\x8a\x83\x1a\xdd\x24\xaa\xb0\x7e\xbd\xbf\x19\x0e\x59\x72\x38\x21\x50\x6c\x7f\xd6\xac\xd7\x85\xbe\x9d\x02\x92\x5e\xc7\xc1\x43\x13\x54\x3c\xa9\x53\xc6\xd1\x15\x7f\xec\x02\xcc\x67\x47\xa0\xe7\xc2\x1f\xb4\xe3\xd9\xe4\x6f\xea\x21\x56\x25\xc1\xd3\x5b\xba\x2f\x6e\xda\x3d\x9c\x58\x56\x66\x6e\x79\x45\xb9\x0f\xb4\xcf\xce\xe6\x82\xaf\x58\xaa\x42\xc9\x37\xc2\x14\x56\xe0\xa1\x2b\x4c\xc4\x27\x83\x84\xd8\xb6\xeb\x5b\x92\x22\x94\x7a\x70\x19\x30\xec\x43\x0c\x79\x8c\xd2\xaa\xa8\x61\x5e\xd6\x64\x3e\x19\xf2\x1d\xb3\x4c\x30\x93\xbb\x88\x4d\x0f\x80\xda\x12\x77\x8b\x8e\x2e\xf5\xf9\x73\x52\xdf\xc0\x67\xae\x2f\x98\x2e\x9b\x2e\x8b\x58\xe8\x60\x52\x2a\xe7\x29\x2b\x87\xc7\x8d\x03\x0d\x4e\xa9\x2e\x21\xdf\xe0\x6a\x37\xc6\x8f\x3b\xb5\xf5\x48\xdd\xc1\x4c\xc2\x1b\xf3\x33\x80\x16\x13\xe1\x12\x40\xe1\xa9\x78\x7c\x89\x26\xf8\xc9\x88\x1d\x49\xb5\xfe\x6c\xdf\x44\xed\x5d\x79\x1e\x66\x7d\x0a\x05\x7e\xe5\x0a\x6d\x28\xd8\x70\xcc\x72\x1f\xb8\xde\x81\x97\x9a\xa6\xf3\x1e\x23\x79\x9f\x2b\x12\x0b\x71\xa5\xdb\xcb\xea\x92\x3a\x18\xb1\x7c\x33\x87\x08\xbd\xa6\x6a\xa3\x9a\x90\x54\x51\x15\xcd\x52\x6d\x34\xed\x85\x5f\x48\xdc\xcf\xd4\xa5\x07\xfa\x12\x2b\xf7\x28\x8d\x24\x36\x2a\x13\x87\x26\xfe\xc2\xf5\x5c\xeb\x2f\x95\xab\x41\x29\x77\xe4\x4a\x37\x88\xf7\x76\x5c\x0d\x3a\x3b\x37\xe1\xa0\x36\xa9\xa6\x29\x07\xb2\x3c\xf1\xc4\x66\xe7\xc1\x53\x9a\x54\x24\xa5\x85\x56\xfe\x8b\xd2\xff\x39\x46\xbc\xee\x95\x94\xd1\x0a\x02\xce\x03\x07\xa4\x19\x03\x62\xa8\x81\x1c\x28\x69\x6e\x7c\xa9\x2d\xf9\xec\xc3\xb0\xce\xbc\x1e\x52\x20\x10\xd9\x12\xe4\x0e\x69\x95\x46\xd8\xde\x13\xa9\x5b\x1b\x8c\xdb\xa2\x0e\xe4\xcc\x69\x53\x67\xcf\x9d\xc9\xfd\x02\xc0\x80\x7e\xda\x9c\xc8\x71\xcc\xf8\x7f\x1a\x49\xb6\xec\x3b\x9a\x85\xd2\x8c\xe1\x3a\x94\xc3\xf5\xe2\x09\x72\xc7\x04\xd5\x82\x8b\x0b\xcd\x63\x07\xd6\x99\xdf\x54\x45\xa7\xd4\xbf\x69\x9a\x5c\x36\x76\x04\xc3\x30\x7a\x0a\xdf\x1d\x97\x0c\x2c\x0e\xf5\x48\x31\x32\x51\x4f\xcd\x7d\x49\xed\x1d\x95\x6a\x60\x13\xea\xab\x6d\xb7\xbe\xb8\x15\xac\x14\x51\xdc\x57\x34\xa2\x55\x9e\x89\x85\x61\x14\x41\xe9\x73\x22\xe2\x66\xf3\x22\x43\xfd\xab\x03\x98\xc2\x84\x21\xd3\xb7\xa8\xef\x8a\xa9\xc7\x84\xe7\xc0\x24\x9c\x9a\x1e\x93\xd4\x36\x63\xd9\x8b\x1a\x0b\xbc\x10\x56\x0f\x48\x81\x43\x8d\x33\x9d\x2a\x4a\xd2\x3c\x66\x3c\x47\x7e\xf1\x49\x55\xc1\x4e\x6b\x6f\xcd\xe6\x82\x33\x45\xd9\x31\x97\xf9\xe2\x36\xd8\x73\x8b\x66\xa2\x16\x26\x40\x81\xf7\x79\xa5\x55\xd7\x74\x2a\x5a\xd8\xf4\x24\xee\x70\xc2\x2a\x2d\xe3\x49\xf1\x05\xde\x0e\x8d\x1d\x77\x7d\x54\x99\x24\x6f\x69\x62\x00\xf8\xab\x96\x91\x10\x13\x13\x16\x9a\x91\x8c\xce\x57\x34\x2a\x97\xe7\x3b\x92\x48\x9b\x42\xfd\xd5\x33\xaa\x63\x64\x79\x65\x21\x11\x9c\xfe\xd3\xd1\xbe\x19\x49\x22\x8b\x3c\xa0\xd3\xa5\x90\xcb\x23\xaf\x08\x6a\xdd\x57\x82\x32\x39\xc2\xb1\xde\xb3\x15\x88\x8a\x61\x54\xc3\x5c\xab\x71\x99\x68\xa6\xf3\xc8\xa9\x70\x12\x9f\x84\xd9\x06\xaf\x68\x54\x41\x5c\x43\x8e\x06\xc7\xfb\xd3\xe9\x49\xda\xf9\xaf\x56\x48\xdf\x26\xf3\xc6\xe7\xf6\x81\x8a\x90\x21\xc7\xe4\xe7\xe0\xee\xa9\x1a\xef\x80\xa1\x7b\x94\x59\x50\x6f\xaa\xdb\x00\x0a\x51\x94\x09\xee\x92\x31\x68\xb8\xa6\x78\xea\xb3\x02\x66\xa2\x86\x0b\x9e\x78\x43\x31\x67\xca\xd4\xb2\x68\x1d\x01\xf5\x2b\xe3\x6b\xa7\x35\x99\x6f\x22\xda\xb3\xde\x4c\xe3\xb4\x6e\x9d\x18\x5b\x48\xc8\xca\xea\xf8\x71\x49\x02\xe1\xf0\xc2\xd4\x6f\x8d\xe4\x8f\x22\xf2\x8e\xfc\x75\x6b\xb2\x3e\x42\x45\xe4\x20\xb7\x81\x6b\x53\xe6\xa9\x58\xb7\x77\xc9\x70\xd0\xa2\x21\xbb\x1a\x71\xab\xa6\x6f\x00\xcd\xba\xc7\xb0\x53\xf2\xca\x3c\x49\x7e\xf6\x0d\xad\x57\xc1\xcc\x23\x45\x31\xeb\x8d\xba\xaf\xdf\x2e\x51\x16\x8d\x5e\x02\x28\x6e\xac\xbf\x2c\x6e\x4a\x81\x71\x27\xe2\xde\x54\xc7\x6b\x5a\x4f\x5b\x36\xcb\x98\xe5\x93\x74\xd0\xf4\x45\x2d\xee\x56\x1c\x9a\xb7\x90\x6f\x96\x13\xaa\x57\xbd\x99\xd5\x6d\xea\x63\x97\x30\x2d\x31\x54\x2d\x73\x78\xd9\xb0\x1e\x8d\x3b\x4d\x3d\xca\xcc\x86\x69\x11\xd7\x8b\x34\x9f\x57\xbf\xa2\xb1\xc5\x70\x99\x21\x07\x90\xab\xbf\xdd\xaa\x2d\x63\xe6\xce\x69\x93\xf8\xa5\x37\x34\xb1\x46\x0b\xa3\x30\xdd\xc9\x59\xf9\x67\x5f\x1d\x0e\xaa\xea\x6e\x82\xa5\xf9\x75\xfa\xde\x27\x74\x3a\x54\x8c\xe4\x14\xa5\xc4\xfe\xb7\x93\x33\x03\x5a\x2c\x12\x71\x12\x34\x7e\xc9\x93\x2f\xc0\xd2\xc9\xae\x5a\x58\xce\x5d\xd2\x3b\x8c\x91\x60\x11\xe8\x72\xd3\x0b\x11\x34\x17\x43\x8b\x07\x1a\x9e\x5e\x2b\xe2\xd3\x6a\xe4\x59\x6e\x93\x12\xab\x44\xcf\x7d\x5b\x3b\x5a\xd4\xe2\xd9\x4f\xab\x1c\x06\x2a\x43\x0a\xc4\xb2\xb9\xe0\xaa\x2e\x5d\x84\xa2\x5a\xe6\xc2\x17\x7c\x2c\x27\x2a\x92\x9e\x35\x00\xb1\x64\xd2\x62\x51\x74\x1a\x23\x6f\x6c\xa9\xeb\x33\x0d\x61\xf2\x82\x79\xf4\x94\x59\xe1\x47\xb7\x40\x81\x2c\x0f\x71\xf7\xef\x5c\x6f\x7a\xf2\xcb\x9a\xa1\x95\xc3\x3d\xc1\xe5\x85\xba\x6e\x1f\xd0\xfa\x24\xc8\xb2\x40\xc2\x1f\x74\x11\x04\x0c\xca\x84\x84\x64\xe6\x83\x8b\xa0\x5a\x42\xd8\x32\x8b\xa5\xd3\x79\x38\x5e\xf2\xa4\xcf\x4a\xd0\xb2\x68\x94\xf6\x02\x28\x71\xa4\x2f\x5c\xe6\xb1\xd7\xc0\xd6\xc7\x2f\x11\x09\x1f\xfa\xf4\xb2\xe1\xb2\xe2\x27\x35\xe4\x11\x37\x6e\xdf\x06\xac\x53\x47\x09\xbb\x1e\xb1\xc5\x92\x25\xb8\x79\x1e\x30\xc3\xa4\x4e\x29\xeb\x12\xdb\x8e\x9c\x5e\x8c\x1f\x8c\x02\x26\x30\xb4\xd0\x28\xf9\x48\x84\xb1\xe0\xe4\x2f\xb4\x09\x8e\x6f\x57\xa3\xb7\x91\xfe\xc5\x13\x70\x55\x2c\x16\xa2\x72\xc7\xf0\xc8\x2a\xd0\x96\x94\x1d\x6a\x47\x1e\x74\x33\x0c\xb1\x5e\x5b\xe4\x17\xa9\xcf\xcc\x7b\xc0\xc3\xdc\x3e\x51\x57\xbc\xe7\xda\x8f\x5c\xe2\xf9\x31\x89\xbb\x73\x49\x4f\xf8\xfd\xc7\x9f\x55\x75\x8b\x83\x3c\x64\x11\x1e\x2d\xde\x3c\x22\xd0\x78\xcb\xa4\xb9\x87\x3e\x40\x7d\xff\x0a\xc0\x94\xf1\x2c\x24\x54\x16\x37\x68\xc5\x0e\xf1\xbc\xd8\xaa\xe7\x3b\x03\x40\x6c\x47\xc2\x63\x26\xd8\x3a\x74\x58\x53\xf4\x0b\x7f\xfd\xef\x03\x31\xdb\xe3\x38\x53\x54\xf4\x30\x73\xa8\xb0\xb5\x39\x38\x4a\xa2\xfd\xa9\x30\x14\xea\x4d\xfd\xd3\x4e\xf5\xd6\x2d\xec\x38\xb4\x1b\xc4\xa9\x07\x0e\x00\x4b\x78\x84\x18\xa9\x35\x7d\x95\xd4\x04\xdd\x1b\x12\x39\x05\xc4\x84\x01\x64\x7a\xe1\xc9\x44\xa0\x63\x25\x22\x26\x3d\xe9\x8b\x9a\xc5\x6c\xcc\x50\x6f\x0a\x19\xbd\xa9\x29\x47\x34\x07\x72\xa9\x20\x19\x27\xbe\xf1\xdb\x93\x5d\x89\x90\xf2\xeb\x2b\xb3\x66\x6e\x9c\xa7\x8f\x62\x2c\x54\x2f\xfa\x52\xe7\xc4\x98\xb6\x23\x09\x14\x9f\x95\x9d\x21\x0a\xbd\xab\x9e\xd1\xc9\xc9\x4e\x78\xb3\xa3\xd0\x99\xbe\x5b\x83\x40\xa8\xfc\x90\xa8\x02\xd2\x17\xbd\x6b\xf5\xc7\x15\xcd\x5c\x64\x56\xda\xb3\x5a\x45\x48\xdc\x8d\xed\xaa\x84\xf7\x06\x7f\x5f\x05\xba\xd7\x35\xf9\x1c\x6f\x98\xac\xf5\x77\x5c\x0f\x4a\x02\xa4\xed\xc3\x90\xce\x4b\x2d\x81\xa9\xb6\x7e\x7c\x8d\xba\xca\xb8\xde\x84\xb4\xfb\x95\x96\x5f\xea\xd8\x32\xa9\x0d\x96\x0e\xaf\x3f\xf7\x21\xd0\x7f\xc7\x4c\xb7\xa6\xf7\x76\xdd\x2a\x71\xd8\x16\x60\x4f\xae\xd5\x73\x0f\x01\x0e\x27\xb6\x08\x16\xe2\xfd\x57\xdf\x09\x9a\x26\xec\x61\x46\x5d\xdc\xed\x8b\xf9\xd1\xe1\x77\x63\x6e\x45\x1d\xe7\xb3\xb9\xe0\xb8\xc6\xe6\xad\xd2\xba\x48\x08\x72\x2d\xf4\xda\x0e\x0d\x3f\x47\x4a\xd1\xe8\xf4\xe4\x78\x28\x70\xea\xc6\xb2\xa1\x46\xea\x99\x89\x5a\x35\xd3\x70\xa8\x55\x70\xfb\x98\xd4\xec\x79\x47\x5b\xac\x31\xe4\xba\x59\x46\xa9\x17\x15\xfd\xe9\xed\x97\xc1\x70\x2a\xac\xa9\xf8\x97\x44\x3f\x4e\xe2\x2c\x04\x80\x88\x6b\xcc\x24\x8f\x68\xeb\x8f\xa1\x22\xb0\xd8\x4f\x0b\x94\x68\x15\x6c\x12\x3c\xa9\x82\x10\x1d\xac\x23\x4f\xcb\xda\x9e\x6b\xc1\xe5\x82\x2a\x98\xdd\xd0\x1a\x66\x5d\xb4\x21\x2e\xfc\x63\x97\x86\xc4\xd9\x17\x3b\xae\x84\xa2\x7f\xbc\x73\x0c\x1c\x29\x2e\x5b\xb6\x62\x4a\xf4\xb3\x39\x3f\x2b\xaf\xcf\x68\x6c\x9b\x44\xf4\x97\x4f\x00\x2f\x36\x3a\xc9\xa4\x8e\x23\x08\x12\x1f\x10\x3e\xb3\xd9\x0e\x6c\xb9\xd4\x81\x61\xa5\x2d\x1a\x52\xa2\xf0\xc9\x7c\x60\x75\xb2\x34\x2c\x59\xa8\x20\x9a\xec\x17\xba\xc4\x09\xea\x44\x11\x90\x75\x9e\xc7\x1f\x7f\x76\x89\xeb\xdd\xe6\xbb\x5e\x27\x6b\xa6\x40\xce\x6f\x17\x23\x13\x6e\x31\x23\xe8\x65\x57\x9d\x8a\x59\xea\xd5\x26\xab\xf1\xde\xcc\x0c\x4d\x92\xa1\x84\x1d\xbe\x5e\xe2\xa5\xcd\x82\x65\xd0\x9f\x8e\x2b\x56\xf3\x8c\xd8\xbd\x22\x12\x6a\xb2\xab\x52\x28\x75\xed\x02\x5d\x52\x86\x11\xd7\xb3\x51\x04\x1e\x3f\x02\x1d\x6b\x7d\xd7\xe5\xb2\x7b\x5f\x38\x04\xfe\x14\x77\x13\x93\x66\x73\xc1\xdf\x38\x83\xd5\x6b\xae\xcb\x8d\xef\xbf\xee\xb8\x1a\xb4\x4c\xf7\xf8\x84\x45\xab\xb6\xde\xd4\x84\xf3\xa2\xda\x76\x51\x3d\x9b\x0b\x8c\x63\x1a\x30\x5a\x50\x60\xbd\x98\xf1\xbe\x5f\xd9\x34\x4d\x9a\x3b\x97\x2f\xc8\xb5\x6e\xba\xe8\xb3\x30\x94\x28\x41\xbe\x03\x1a\x14\xb3\x8a\x98\xd7\x50\x02\xd8\x7f\xf7\xba\x64\xae\x71\x9b\x27\x71\x60\x3f\xf4\x8e\x4a\xf6\x4e\x58\xcc\x84\x87\x8d\xbb\x47\xf3\x81\x97\x94\xd3\xe1\x10\x66\x8f\xc3\x4c\x79\x4d\xff\xdb\x1d\xe2\x80\x96\x18\x2a\xf8\x51\x41\x91\x5a\x2e\xd5\xed\x24\x34\x9a\x37\xd7\x35\x7d\x3d\x8c\x1a\x61\x44\x16\x28\xb7\x99\x97\xc7\x28\x84\x4e\x13\x09\x37\x75\xa6\x3f\x90\x91\x41\xae\xcb\x39\xa6\x41\xcf\x0a\x71\xe0\x5c\x87\xf0\xb1\x5d\xf0\x9f\x3b\xe3\x91\x21\xe1\x6e\x9a\xb1\xb8\xd0\x97\x16\xa8\xd6\xa9\xc4\x70\xde\xc1\x35\xb0\x4c\x29\x39\x3a\x8a\x36\xbc\x97\xd1\xec\x61\xcc\x6e\x41\x86\x5b\x8c\x5c\x8f\x36\x25\xbc\x0c\x19\x38\x1c\xd4\x33\xc8\x21\xb6\x10\xe7\x4f\x7d\x79\xa9\x22\x9a\xf1\x2d\xde\x90\xf9\x3a\xac\x01\x99\x65\x09\x45\x1e\x6d\x24\x4b\x6d\xec\x61\xc7\xe4\x5d\x86\xf7\x90\x46\x39\xa3\xae\x62\x16\x7c\xae\x45\x95\x34\x5c\xb9\x03\x71\xab\xb3\x61\xfb\xc0\x4f\xf3\x5d\x2f\xde\xf6\x1b\xbb\x1d\xc8\x2d\xf0\x4d\x5e\x82\x5c\xa1\x93\x16\xa9\x8d\x85\x62\xeb\x9c\xd6\xe4\x41\x23\x0e\xdf\x89\x52\x16\x19\x0a\x67\xba\x95\x13\x4d\x62\x5b\xd4\xf3\x9a\x32\x2a\x72\x9a\xe2\x66\xfa\xa3\x17\xe3\xe5\x51\xb6\xe8\x83\xae\xec\x97\x2d\xc9\xcf\xe2\xe0\x68\xf6\x6c\x4c\x3a\xa0\xb2\x0b\xa7\x77\x67\x26\x68\x72\x02\x16\xa9\x08\x01\x2e\xe3\xce\x5d\x13\x54\xb5\x55\x46\x0c\x0b\x0c\x73\x33\xef\xe8\xb9\x23\x43\x94\xbe\x0a\x8d\x90\x66\x17\x5f\x10\x76\x5b\xab\xa8\x5b\x26\x36\xf1\x5c\x1f\x4c\xa6\xc7\xf5\xd3\x48\xe8\x44\xba\x95\xe6\x7a\x53\xf5\xf9\x4a\x7e\xd1\xe7\x07\xff\xf4\xb2\xf8\x17\x10\xcb\x8a\xde\xc3\x13\xbb\xa1\x3a\xad\x53\xe3\xe7\x77\x7d\xb7\x0c\x86\x5c\x2d\x23\x8c\xb6\xe9\x0b\x03\x62\x4d\xe5\x59\xd9\x5c\xd0\xb9\x4b\x84\x1a\xb3\x4c\xac\x02\xc3\xbc\xaf\x4e\xff\xe6\x91\xa4\x39\x00\x71\xcd\xf8\x26\xde\x54\x4c\x06\x97\x7b\xfc\xb0\xc0\xe7\x6b\x21\x1e\x05\xbf\xaa\x13\x32\x31\x77\x5f\x69\x88\x8a\xf0\x2b\xfd\x20\xac\xaf\x40\x4c\x61\x87\x7f\x7b\xe7\xe2\xe0\x7b\xef\x69\xe3\x28\xa4\x30\x3a\xfe\x84\xf8\xdd\xdf\xe3\x37\xbb\xe5\xfd\xe7\xe6\xe1\xf2\xb6\x48\xe1\x4a\x11\x82\x82\xd7\xf2\x00\x68\xc8\x19\x34\xcd\xeb\x9b\xa9\xe3\x21\x99\xca\x2c\x7b\x42\x01\x7e\xe5\x02\xed\x9c\xda\x5c\x7a\x88\xd4\xe4\x08\x24\x7d\xd5\x3b\x03\xe5\xb7\xf0\xb0\xc3\x27\xf0\x46\x63\x95\xfa\x75\x12\xa3\xd0\xf4\xeb\xcc\x72\xfc\x3a\xb3\x73\xb8\x38\xef\x5f\x26\xa8\x68\xdc\x3e\x8b\x93\x31\xbf\xf0\x63\x30\x0f\xc5\xbc\x84\x09\x7f\xfe\xf9\xa7\x20\x30\xc5\xc3\xac\x6a\x71\x7e\x65\xe6\x91\xb3\x49\x50\x89\x8d\x3d\x46\x4d\x64\xf5\x69\x65\x92\xbe\xb3\xe3\x1a\xad\x08\x96\x8c\x33\xf1\x1e\x3e\x7d\x41\x3c\xcc\xbb\xfd\x02\x71\x40\x4c\x7b\x6a\x2f\x14\x11\xb6\x88\x29\x3d\x43\x52\xd6\x7c\xd1\x6f\x2c\xb4\x84\xae\x9f\xba\x7a\x3f\xbb\xa0\xa0\xd7\xf9\xa8\x5e\x37\xde\x6d\xbf\x46\x7b\xd1\x51\xaa\x11\xd0\xc7\xcb\xf3\x92\x6d\xb4\x8b\xcc\x88\xd5\x03\x87\x34\xa7\x56\x8f\x06\x23\x78\xa1\x8d\xa8\xae\x54\x6a\xa2\xc2\xb0\xd0\x66\xdb\xdf\x55\xfd\x07\xc8\x7f\x28\x1e\xa1\x31\x7f\x41\x72\xce\xdf\xc2\xd1\xb1\xb7\x6d\x4a\x66\xbd\x32\xe2\xfa\x79\x91\x23\xf2\x87\xda\xc5\xa5\x5e\x80\x18\xaa\xf9\x5e\x01\xcc\x9f\x83\x39\xfd\x81\x74\x19\x57\xc6\xfb\xf4\x9e\xe1\x60\xd9\x88\x1c\xb7\x48\xb9\x64\x5e\xea\xfb\xdb\x81\x35\x20\x61\x1c\xfc\x74\xcb\x43\x3a\x77\x2d\xae\x30\x33\x9f\x83\x2a\x1d\xd4\x21\x26\x54\x2c\x78\xe4\xa2\x52\x88\xe0\x40\x84\xc4\x00\xe6\x23\xf7\x0d\x85\x0b\x35\xa9\x47\x37\xe1\x38\x40\xf4\x23\x22\xa6\xef\xf3\x98\xbe\xb9\x73\x3d\xe4\x33\x24\xfd\xb7\x7b\x53\x7b\x41\x39\x8f\x4a\xd8\x31\x85\x3e\xf0\xdc\x05\x09\xc5\x53\xd9\xac\xde\x3f\x0a\x70\xaa\x48\xd1\x2b\x67\x8b\x16\xe5\x80\x9f\x5f\x6b\xb3\x5b\xb7\x8e\xb8\x79\x90\xa4\x9c\x8c\x5a\x23\xaa\xc5\x3c\xe5\xcf\x65\x6d\xf7\x60\x70\x0a\x27\x89\xec\xf4\x7e\xa9\x48\x5b\x20\x6e\xd5\x17\x93\x86\xe1\x40\xd3\xb4\x18\xd6\x1c\xe2\x9b\xd6\xcf\xc5\x4f\xc7\x6e\x1e\xf7\xa7\x1f\xbc\x52\x7d\x4a\xc1\xe1\xe5\x94\xd3\xf0\x54\xb6\xff\x58\x3d\xf4\xbc\x45\xcd\x0a\xd7\x75\x96\x2d\xe8\xbc\xfb\x55\x15\xc7\xd3\x02\x0f\x76\xbf\xed\xa7\x01\xf5\x7d\xa5\xa9\x69\xf8\x23\xc1\xb4\xcd\x32\x69\x99\x5a\x42\x5c\xf5\xa1\xf5\xc3\xe2\x3c\x07\xb9\x6a\x5f\xd9\xa3\x02\x7c\x05\x63\x01\xae\x48\xfd\xec\xd9\x38\x9e\xb4\x4f\x0f\x83\x87\x91\xde\x0c\x74\x32\x88\xe3\x95\xb9\x35\xb3\x28\xc9\x6e\xdf\x29\x8a\x2b\xe4\x79\x92\x14\x90\xcd\x05\x4b\xc7\x4a\xf4\x96\x63\x52\xc6\x22\x5f\xc4\x67\x34\x3e\x75\x39\x2e\xf8\xaf\x3b\x16\x9f\x6c\x86\xef\xc9\xe6\x82\xdf\xde\xaf\x54\xa0\xfa\xf0\xc1\x18\x54\x4c\xe2\x39\x71\xb7\x89\xab\x42\xbf\x23\x76\xe0\x4f\xbd\x33\x4e\xb7\x58\xe1\xd3\x41\x1c\xf9\x67\x1a\x6b\x04\x99\x33\xbb\xca\xad\x61\x0f\x39\x14\x98\x26\xa4\x7f\x37\x6e\xb8\x5e\xa4\x8b\xe9\xf7\x23\xf7\xa9\x67\x51\xc7\xc4\x85\x13\xf9\xcf\x6b\x9a\x9e\xb8\x5b\x62\x86\xa4\xcc\xf4\x6f\xb6\x28\x7f\x13\xaf\x07\xbc\x88\xdd\x4f\x8f\xd5\x8a\x1b\xae\x5c\xad\xfc\xe9\xfe\x70\x5a\x94\xb6\xcb\x89\x85\x9c\xac\x47\xb3\x2b\x05\x10\x86\x8c\x1f\x0a\x08\x5c\x4e\x97\xcf\x77\xe7\xc6\x27\x04\xce\x31\xbb\x90\xf7\x0b\xb4\x9a\x34\x8d\x9e\x36\x18\xac\x75\x05\xc4\x2a\xd5\x72\x50\x69\xbe\x57\xc2\x57\xf2\x74\x47\x92\xbd\x0f\xbc\xf2\x9b\x81\x52\xef\x9c\x93\xfd\x17\xf3\xc3\x2b\x31\xaa\x07\x68\x87\x52\xd7\x43\x56\x49\xf8\xdb\x3d\x78\x48\x77\x67\xa8\x22\x4e\x0f\x10\x09\x30\xdd\xa5\xe9\x12\x11\x26\x45\x55\x44\xbb\xed\x6c\x89\x8f\x49\xd6\xe4\x5b\x83\x47\x77\x0d\x50\x22\x8d\xd9\x5c\xf0\x4d\x36\x0c\xd6\xd0\x8d\x3a\xb5\x8a\xe1\xdf\xfb\xf0\x0b\xba\xe2\x51\x0d\x39\xa6\x32\x2b\x1c\x71\x12\x3a\x61\x59\x7c\x15\x16\xfe\xc6\xe2\x50\x7d\x97\x6c\x87\x6d\x8a\x94\x3e\x0c\xa3\x50\xcf\xd2\xe4\xfc\xc5\xc2\x25\xe2\x72\xab\x26\x59\x7e\x66\x6e\xbe\x52\x45\xaf\x06\xca\x5b\x94\xfb\x59\x3c\x75\x52\xaf\x5a\x4d\xcb\x2f\x88\xa1\x48\x35\x9b\x0b\xde\x3f\x54\xc1\x05\xb0\x2d\xa4\xc2\x1a\x51\xbe\xb3\x87\x6a\xb4\x7a\x86\xea\x72\xa1\x75\xdf\xe4\xa4\x60\x82\x87\x85\x94\xcc\xc1\xe3\xf1\xb3\x9b\x3b\xa3\x9d\xeb\x33\x0c\x6f\xba\x1f\x36\xf1\x3c\x1c\xd3\xe1\xb7\x9f\x8a\xeb\xe6\xb2\x9f\x07\xc7\xf5\x83\x56\x72\xa0\x1d\x76\x3b\xae\x4b\x1c\x20\x0d\x9c\x79\xdf\x13\xc3\x40\x54\x75\x48\x51\x50\x3b\x53\x8f\xf6\x1f\x11\x15\x81\x2e\xb5\x48\x01\x45\x64\xf3\xf4\xa0\x1e\x1d\xf5\x28\x36\x6e\x42\xc7\x74\xe1\xe4\x64\xf6\xe2\x46\x7f\xb2\x31\xf9\x7a\x3f\xc9\x6c\xf8\xc4\xca\x3b\x3a\x56\x7e\xec\x6e\x30\x19\xf8\x60\x2d\xae\x6c\xcb\x8d\x42\x34\xab\xfd\x41\x06\xf2\x27\x85\x58\x47\xea\xb3\xb3\xc4\x21\x2e\x5a\x1c\x9b\x9b\x79\xdf\xea\x04\x28\x6a\xd1\xaa\xd8\x5a\x68\xe0\xd1\x38\x3a\xa1\x3e\x9c\x96\x4f\x9f\xd7\x7a\x28\x8b\xba\x42\x5f\xa6\x37\xf5\xc6\x99\x18\xd7\xca\x68\x55\x50\x1d\x7a\x53\x5b\x76\xeb\xb6\x2f\x42\xf4\x55\x6e\xa0\x73\xc1\x7d\x17\x07\xcb\x50\x84\x4c\x8f\x48\xcd\x9f\x75\xe3\x35\x3e\x3c\xf1\xca\xfc\x24\xcc\x0b\xff\xeb\xaf\x1e\x88\x28\xbd\x91\x1a\x5f\x6f\x6a\xe9\xa1\x64\x1d\xe4\xd0\x3e\x19\x19\xf8\x99\xe1\xd1\xdf\x48\xf0\x1e\x07\xb5\xc6\xa9\xae\xc2\x74\xbf\xe3\x60\xd0\x5e\xdd\x03\x30\x2c\x8f\x49\x24\xe3\x9f\xe9\x60\x91\xb3\x06\x76\x45\x9a\x58\xbb\xe5\x1a\xd0\xe8\x35\xc3\x82\xbf\x79\x1a\x68\xad\x10\x9b\xb2\xe8\xfc\x7f\xef\xc4\xd0\xf0\x37\x74\x74\xac\x4c\x48\xe0\x5f\x00\xba\x18\x84\x59\xd1\xba\xfb\xa4\x03\xb6\x23\x61\x84\xe2\x0d\x54\xb0\xf6\xb0\xb4\x33\xfb\x5f\x50\x5a\x13\xc1\x92\xc8\x67\xa5\x28\x28\x04\xbf\xc9\x0c\x04\x9f\x8a\xef\x5f\x6e\xda\x0b\x80\x6b\xdc\x2e\x22\x3c\xd0\x1b\x9e\xd7\xd2\x81\xe5\x9b\x82\x5b\x21\xce\xc2\x1f\x27\xc7\x8f\x93\xd1\xa6\x0f\x90\xb9\x72\x73\x82\xc8\x86\xcd\xa8\x5f\x6a\x9f\xac\x53\x86\x11\xd7\xf6\x89\xb0\x6c\xc7\xf3\x0a\xd0\x29\x87\x77\x1f\x1f\xaf\x14\x4b\xf9\xb4\xbb\xd9\xc8\xf4\x28\xdc\x88\xfa\x66\x45\x92\x2a\xd2\x33\xa4\xea\xac\x54\x04\x0d\x8f\x7f\x77\x32\x28\x12\x26\x34\x28\x58\x2c\xc6\xf0\xed\xcd\x1a\x4f\xde\xb2\x70\x29\xc6\x75\xf2\x8c\x76\x6b\x59\x53\x7c\x8d\x43\x5f\x6f\xfa\x4d\x6d\xbb\xce\x47\xab\x31\x00\x6e\xda\x32\x65\x56\x69\x13\x37\xfc\x5c\xc8\xf4\x30\x23\x3d\x71\x47\xf9\xbb\x5b\x45\x90\xe9\x20\x25\x9e\xf9\x94\xfd\xcd\xb7\x87\x0f\x83\x5c\x97\x3c\x66\x2c\xcc\x4c\xa9\xc9\xad\x7a\x48\x2b\xe7\x1b\xc9\x25\x6b\xfa\x3f\x6a\x3a\x68\xbc\xea\x71\x7e\xb9\x98\xe8\xff\xe2\x17\x00\x9d\x5e\x26\x16\x2a\x60\xab\x5a\x0e\x13\x5f\xf0\xed\xb7\xd4\x09\x2c\x72\x85\x6a\x51\xce\x35\xce\x8b\x6b\xfd\x31\x5f\x3a\xa3\x73\x2b\xc5\xc2\x08\xb0\x96\xeb\x29\x47\x20\xd3\xe0\x8b\xd2\x3a\x7f\x55\x99\xda\x89\xf9\x67\xea\x81\xe7\x93\xcf\x1b\x3b\x26\xf5\x19\x02\x6a\x16\xc6\xbf\x5f\x01\xde\x2f\x65\x8c\xba\xd2\xc2\xe0\x93\xcf\xa8\x4b\x86\xb9\x6f\x3b\x11\x2a\x1f\x9d\xbb\xe3\x6a\x05\x53\xc8\x9d\x1a\xa0\xfc\x61\x2c\x5c\xcf\xe6\x82\xee\x03\x71\x3c\xac\x34\x74\xba\x6a\x50\x5e\x30\xa9\xae\x6f\x3a\xb0\x49\xfb\x72\x8d\x4a\x0f\xec\xd4\x04\xf9\x18\x96\xe1\xec\x53\x0f\x25\xe9\xfa\x37\xc9\xe1\x4e\xd7\x53\x30\x94\x23\x87\x27\x8b\x35\xdb\x35\x9d\x6e\xb9\xa5\xe7\x75\xe1\x6d\xe7\x92\xa7\xab\x68\xf9\x24\xda\xf1\x06\xdf\x29\x8e\x89\x1f\x53\x36\xab\x87\xb8\xca\x2d\x4d\xbe\xdc\x1e\x22\x4e\x24\x59\xf8\x86\x66\xcb\x54\x26\xb2\xc5\x8c\x12\xe7\xa5\xd3\xda\x40\x82\xa2\xd8\xaa\xe0\x91\xa9\x83\xe3\x70\xe4\xfa\x42\xae\x26\x35\xc5\x01\xa3\x2b\xa8\x80\x7d\x83\x66\xb8\x8a\xed\x3c\xa3\xc4\x8a\x37\x98\xee\xa5\xe4\x13\x98\x96\x6d\x48\x95\xe7\x5c\x6f\xe6\xee\x57\xae\x06\x83\x3c\x8b\x4a\x59\x1f\x9e\x1a\xf7\x77\x8c\x84\x43\x3e\xc9\x91\x0c\xaf\xfd\xa3\x53\xe3\x70\x85\xdd\x66\x78\x5e\x6a\x62\x72\x61\xd5\x45\xcb\x0e\xf2\xca\x48\x83\x6d\x19\x63\xd6\x82\x72\x88\x0f\x04\xc2\xb6\xf8\xa9\x43\x3a\x14\xdc\xa2\x76\x9e\xf0\x7f\x2d\x41\x92\x7f\x6c\x4b\x3e\x5d\xe1\xd0\x44\x62\x3c\x75\x7a\xd8\x3e\x0d\x17\x6f\x61\x0e\xa7\xc8\xf5\x66\xea\x33\x06\xc7\xbd\xad\xf2\xd7\x1f\x2c\x72\x71\x8e\x21\xa7\x84\x23\x24\xf7\x31\x67\x24\x68\xf3\x6a\x38\x6b\x13\xc7\xe7\x3b\x8d\xd4\x07\xf4\xd5\x24\xae\x61\xc7\x2b\xcb\x81\xf5\x5a\xa6\xa6\x2e\x4e\x95\xbf\xbe\x0d\x57\x6a\x43\x5b\x9f\x0b\xe9\x4d\x11\x43\xdb\x45\x3b\x47\x80\xf1\x7b\x95\x11\x17\x59\x7c\x37\x7d\xdd\x0e\x5d\x0f\xd4\xa6\x8c\x1b\xa3\x88\x48\xb3\x66\x40\xf2\x8b\xce\x98\x35\x37\x6a\x7a\xfa\xa9\x03\x43\x7a\x30\x38\x7a\xad\x9e\x46\xf8\xc7\xa8\x20\xa1\x37\x6d\x4f\xc4\x2f\xb6\x4c\xfb\xc0\x0e\xed\x56\xb3\x84\x6e\x52\xa6\x5c\x25\xe2\xf4\xe0\xe4\x47\xe4\x48\x3f\xee\xfa\x22\xce\xdf\xea\x07\xc4\xfa\xc0\x14\x60\xde\xe5\x5d\xe2\xf9\x2f\xbd\xe3\xf6\xa5\xd9\x15\x77\xac\x5c\x1c\xfe\x9d\xde\x89\xea\x24\xe4\x19\x97\xc2\x0b\xff\x78\xdf\x00\x0d\x24\x8e\x3d\x54\x2d\x4b\x60\x48\xaf\xb1\x7b\xa3\x18\x26\x2d\x2e\xd8\xbe\x03\x84\x54\xd2\xdf\x3c\x00\xa0\x5c\xc4\xce\x5b\xb8\x20\xb2\xc1\x55\x13\xd5\x7f\x48\x82\x63\xee\x57\xa4\xdc\x12\xb5\x9a\x54\x5b\x53\x7b\x06\x0c\xd7\x1e\x5a\x55\xa4\xee\x95\x9b\x92\xc7\xd5\xf3\x0b\x5d\xb6\x26\xe5\x7e\x93\x26\xef\x16\x5b\x0d\xf6\x66\x2c\xe0\x5c\x16\xd9\x71\xf2\x84\xf0\xca\xfe\x01\xa0\xcb\xce\xf5\xa6\xed\xd7\x75\xaf\xf6\x82\x90\x91\xc8\xf5\xa6\x6f\x2f\x2a\x72\x43\x9e\x82\xdf\x9c\x5e\xdd\x27\x04\x15\x39\x52\xa6\xc4\x38\x3f\x0a\xf8\xca\xc1\x53\xf2\xfb\xdd\xc9\xef\x45\x6a\x61\x5f\x2c\x54\xe6\xa2\x92\x7a\xfa\x0c\x55\x5e\x14\x08\x67\x4d\xa4\xf6\x4d\x6e\x12\x08\xb7\x7d\x0f\xcb\x13\x96\xda\x1f\xe8\x86\xbc\xbe\xe3\xb1\x86\x60\x27\xf7\xb1\xb1\x5c\x3e\x50\x35\x3f\x42\x4a\xa9\x27\x12\x8d\x0d\xd6\xbc\x9c\xfc\x88\xb3\xda\xa6\x35\x59\xba\x5c\xd8\x3b\x16\x4c\x69\x1d\xdf\xe9\x21\x08\x30\x53\x7a\x8d\xde\x31\xea\x3b\x14\x11\xe3\xb7\xfb\x8f\x73\x54\x92\xee\xa2\x35\xec\xb8\x84\x83\x98\xbe\xf7\xb4\x46\xc8\x45\x0e\xaa\x20\x80\x26\xeb\x4d\x7f\x66\xd7\x08\x30\x29\xaf\x61\x2b\x2c\xed\x79\xc5\xfd\xd1\x5b\xb4\x2d\x58\x98\xfd\x01\x24\x3e\x3d\x65\x9d\xe6\x00\x86\x30\xb1\xa5\x63\x51\x32\xc0\xee\x01\x12\xb4\x1e\x66\x9e\x2f\x9c\xd6\x7b\x53\xab\x76\x0c\x94\x0d\x2f\xaa\xc9\x29\x85\xfd\x7c\xdc\x17\xcf\x9a\x96\xcd\x05\x5f\x29\x42\xd9\x3f\xe4\x61\x5f\xa8\xa1\xcd\x1b\x01\x46\x68\xa6\x47\x3c\x31\x81\x0d\xbe\x7f\x5c\xcc\x1b\xda\x67\x65\x8b\x94\x7a\x59\x0f\xf1\x1e\x29\x33\xfa\xd6\x84\xec\x0f\x98\xf8\x8c\x89\xcf\x22\xa9\xc2\x81\xed\xcf\xf3\x63\x94\xca\x34\xd1\x6b\x03\xfc\xaa\xe8\xb9\x16\xfb\x9c\xaf\x9d\xfa\xfd\x0b\x40\xa5\xbb\x5c\x47\xfc\x74\x19\x57\x9e\x8b\x7f\x78\xcd\x01\x5c\xe9\xf4\x1b\x7b\xe3\xa6\xb6\xc8\x95\x8d\x2f\x83\xf2\xae\x46\x58\x89\x38\xbc\xfe\xea\x9d\x2c\x98\x79\x8b\x19\x01\x16\x2c\xdf\xd9\xac\x97\xa0\x52\x9c\x30\xd7\x6b\x5c\x75\xa2\x09\x5d\xc8\xab\xeb\x60\xf0\xe5\xe4\x7f\x98\x44\xa2\xd1\xed\xba\x51\xba\xf8\x5a\xb1\xc8\x87\xd0\x31\xfd\xe1\xcf\x8f\x6b\x51\x03\x3b\x98\x91\x22\x56\x24\xda\x5e\x63\xa4\x26\x31\x45\x1d\x82\x1c\x92\xa0\x64\xbc\x39\xff\x2a\x79\x08\xec\xaa\x90\xcf\x9f\xa6\xf9\x92\xe4\xb9\xe9\xaf\x9c\xaa\x3c\xfe\x3c\x10\x9c\xa5\x56\x81\x21\xbe\x51\x4b\xd7\xcf\xeb\x7c\x39\x6a\x62\x37\x06\x1d\xf4\x3f\x07\xf6\xfd\xa6\xe9\x33\x89\xa9\x4a\xcf\x7e\x55\x98\x4b\x4f\x9f\x9d\xcd\x05\x1d\xfd\xf4\xa6\xdd\x89\x3d\xd7\x82\x37\xee\x1f\x9e\x98\xaa\xd8\xc8\x31\x85\x33\xdc\x38\xdd\x36\x0b\x39\x95\x56\x69\x71\xd8\x02\x24\xea\xf2\xc8\xaa\x08\x60\x8a\x31\x05\x34\x83\x2e\x66\x44\xc2\x9c\x83\x19\xa7\x93\x30\x88\xb0\x69\xf6\xfb\x40\xfd\x64\x8c\x6d\xd7\xe9\xdf\xb7\x48\x3c\x94\x27\x56\x3c\x81\x32\xbe\x3a\x4f\xb9\x01\x9a\xe1\x57\x18\xfc\xb4\x2e\x0c\xb1\xb2\xb3\x37\xfd\x9e\xd8\x77\x64\x57\x48\x4d\xbc\x26\x6d\xa9\x2d\x49\x0f\x70\x68\x96\xda\x7c\xb3\x8d\x57\x6a\x40\xea\x3a\x72\x00\x94\x08\xb6\xe9\x4f\x00\xa6\xb6\x9c\xa1\xec\x1d\x3b\x49\x4b\xbe\x36\x11\x73\xcf\xe6\xdd\xe1\x8f\x86\x2a\x54\x7a\x01\x47\xc3\xab\x26\x68\xcd\xd0\x53\xba\x48\x94\x2d\x74\x23\x82\x71\xda\x46\x98\xdb\xe5\xc8\xd1\x96\x39\x7f\x24\x48\x05\xae\x49\xaa\xb2\xe9\x0e\xde\xde\xa8\xc3\xbd\xb9\x99\x80\x9c\x82\xf4\x1f\xaa\x15\x52\xc4\xe2\x4a\xf8\x93\x26\x65\x73\xc1\x35\xdb\x75\xaf\x11\x96\x27\x85\xf0\x1d\x89\x39\xc2\x47\x87\x8a\x02\xe0\x4e\xea\x13\x17\xf8\xdb\x1b\x9f\x99\x13\x61\x1c\x18\xc6\x9e\xc9\xb7\x6e\xa9\x55\x46\xfc\x46\x51\x9e\xab\xc0\xdd\xa9\x83\xf1\x22\x57\xf5\xe0\x25\x4f\xf3\x98\x65\x14\x15\xea\xa8\x21\xa0\xb0\x6a\x4f\xe4\x8e\xd2\x85\x08\xad\x4a\x98\xfd\xc5\x04\xce\xdc\xa7\x97\xb2\x40\x9b\x5c\x32\x1f\xff\xef\x2a\xad\x96\xb5\x38\xd2\xa0\x55\xbc\xc3\x5c\x6f\xea\xcd\x0e\x80\x03\xc4\x48\xbe\x79\x63\xd8\xe3\x5a\xef\x22\xaf\x1b\x2f\x28\xd3\x23\xb4\xb9\x5c\x1f\xf2\xbc\x69\xab\x5b\x0a\x0b\x5a\x94\x16\xca\x61\x36\x0a\x5f\xd7\x15\x9a\xc7\x0a\x76\x3d\x94\xb7\x88\x2b\x57\xff\x46\xb9\x00\xe6\xa3\x3e\xab\x11\xe1\xf4\x6a\xbc\xde\x4f\x61\x16\xa0\x35\xac\x6c\x21\xbf\xda\xa6\xeb\xd6\x54\xc3\x22\x44\x12\x65\x8d\x03\x2f\x03\xcd\x5c\xe4\x73\x51\xee\xf4\x27\x0a\xb1\x38\xaa\x14\xd5\xe2\xd3\xc1\x0d\x17\x55\x75\xcd\x7c\x27\x9b\x0b\x96\x6f\xd6\x5d\x7e\x1a\x31\x05\x77\x8b\x26\x79\x5e\x20\x40\x05\x33\x78\xf8\x39\x7e\x50\x2c\xec\x64\xa7\xb5\x45\xeb\xf4\xd7\x07\xc4\xc0\x0c\x0b\x55\x20\x97\xcb\x30\xee\x8b\x87\x88\xb4\x12\xad\xc7\x53\x9f\xeb\xd4\x89\x1c\x16\xc7\xe4\xf2\xd0\x77\xf7\x26\x01\x2b\xba\xc3\xb6\x91\x29\xf4\x39\xf5\x37\x71\x87\xc8\x24\xd9\xf6\xa6\x48\x75\xc3\x13\x40\x43\xb0\x42\x2c\x2b\x7c\x45\xaf\xd4\xa4\x48\x0b\xf6\x12\xd3\xfc\x1b\x00\xc4\xd5\xad\x62\x93\x70\x73\x3c\x7e\x88\x46\x3c\x19\x9f\xfd\x19\xd3\xc3\xc6\xe2\x9d\x01\xba\x37\x10\x87\x44\x4b\xde\xdc\x8b\x17\xc7\xea\x3d\x25\xb5\x0a\xd8\x89\xd4\xed\xd2\xc3\x83\x68\x41\x5d\xa0\x54\xac\xf4\x06\x0c\x97\xba\x27\xb6\x8d\x0b\x84\x63\xbf\x82\xdb\x5e\x57\x51\x81\x26\xbc\xb5\xd2\xd3\x4e\x01\xab\x50\x62\x59\xa8\x24\x3e\xa9\xb3\x45\x43\x54\x50\x2f\x1a\x5c\xfc\x93\x26\x76\x55\x62\xd4\xaf\x46\xbd\xbc\xa3\x59\xb8\x30\x5a\x8f\xe9\x3c\x2f\x9c\x89\xa7\x12\x61\x1b\xa7\xc7\xe8\x13\x53\x9b\xa8\x08\x92\x60\xff\xf5\xf3\x51\x7e\x45\x42\x2c\x34\xb5\xfc\x16\x40\x04\x77\x70\x2d\x4c\x1b\x82\x63\x93\x3f\x29\x0a\x18\x86\xaa\xfc\xf4\xfe\xcd\x31\xb5\xb0\x8f\x04\x18\xf4\xdf\xfc\xef\xc3\x55\x53\x4f\x00\xb1\x3b\xf5\xe2\x00\x4d\x34\x07\x71\x41\xdd\x3e\x46\xb4\xc6\x5d\x7b\xc4\xef\x95\xb0\xcd\xd4\xaf\x35\x8e\x77\x15\x3b\xc8\xf2\x62\x8f\xa4\xa5\x9a\x17\x9a\x85\xec\x7c\x24\xd9\xbe\xd5\x00\x6b\xc3\x3c\x0d\x6f\xbd\xb8\xdc\x99\x63\x63\xc1\xa5\xcf\x57\x29\x76\x10\x94\xae\x34\xfe\xe3\x72\x42\x64\xbd\x68\x85\x25\xa4\x80\x49\x4f\xd3\x58\x70\x55\xdf\xe9\x42\x79\x25\xea\x6d\xdc\xb5\x63\x20\x9c\x41\x64\x73\xc1\x49\xe5\xcd\x3d\xa7\x75\x66\x36\x17\xac\xbb\x52\x1b\xa7\x20\x89\xec\x8e\x70\xa3\xdb\x8d\x31\x90\x9e\xcb\x45\x44\x41\x9d\xf4\x1f\xe5\x64\xf7\xd6\x3e\x4b\x46\xb3\xd1\xed\xcd\x9b\x41\x64\x7a\xf1\x86\x38\xbd\x7b\x27\x14\xf1\x6c\x08\xb3\x98\x4c\x7a\x45\xf2\x19\xcf\x9a\x93\x75\x3d\xca\xa2\x75\xe2\xca\x09\x5a\xfd\x17\xde\xdc\xa2\x6f\xa9\x01\xc5\x83\xcf\xa8\x8b\x51\x42\x25\xb8\x3a\x7c\xf0\xa2\x5e\x8c\x71\x38\x86\xc0\x9e\x05\xdf\x5d\xa1\xed\x7b\x48\x24\xf7\x9a\x59\xe1\xa9\xa3\x09\x16\x45\xb9\x60\xe1\xd4\x41\x40\x26\x82\x73\x09\xa7\x69\x26\x71\x7e\x55\x20\xa8\xea\xeb\x92\x57\x61\xda\xdc\xb9\x73\xe4\xba\x62\xa4\xae\x0b\x4e\x18\x96\x68\xa5\xf8\x69\xdd\x38\x55\xb7\xf8\xb2\x90\x89\xb5\xa4\x99\xba\x4b\x53\x03\x28\x22\xcb\x25\x45\x65\xe3\xf4\xda\x29\x85\x10\x2a\xa3\x04\x99\xd6\xf8\xc3\x2f\x80\x69\xbe\x89\x8a\xa4\x00\xbb\x80\x9e\xc7\x87\xca\x9b\xe9\x61\x56\xc3\x8e\x08\x4d\xa9\xe3\x6d\xca\xeb\x3d\x3b\x87\x6f\x01\x8f\x0c\x03\x64\x2f\xc2\x15\x6c\xc2\x37\x77\x6c\x83\xc6\x5b\xc7\x9e\x67\xc5\xe8\xf1\x5c\xaf\x71\xef\x51\xb0\x41\xa0\x75\x47\x28\xdb\xf7\xa6\x16\x9d\x80\x06\x15\xbe\x30\xcb\x3e\x7a\x0b\xd0\x84\x46\x2c\x3b\xbb\x3d\xfc\xdd\xd7\x9e\x56\x5f\x8f\x3a\x38\xd1\xae\xbe\x7f\xaf\xc6\x86\xf1\x2d\x9b\x6f\xd3\x62\x17\xaf\x73\xe7\xe3\x2e\xaa\xd0\x87\x78\x58\xef\x15\x1a\xa1\xcf\xe4\x1d\x36\xca\x5b\xd2\xa6\xc7\x98\x74\x2e\xd2\x45\xe4\x66\x72\xc1\xf6\xc7\x93\xf8\x9e\x32\xb5\xa8\x89\x7c\xd7\xeb\x0b\xe4\x9e\xbe\xb6\x35\xd9\xa4\x0a\x7c\x4f\x1f\x48\xa0\x4c\x7b\x59\x9b\xfc\xfb\x5e\x99\x32\xc2\x83\xab\x60\x88\xfd\xfd\x01\x00\xfa\xa1\x0e\xb5\x68\xc9\xe7\x4d\xcc\x83\xcf\xa9\x9e\x3c\x2f\xdc\xc3\x53\x53\x21\xa6\x92\x09\xf6\x50\xb0\x6f\x87\x64\x9d\xd3\x3a\x87\xa4\x7d\xc8\xd1\x81\xa4\x1e\x7f\x74\x62\x2a\x9b\xd9\x32\x70\x88\x1a\x57\x47\x2b\xc0\xf4\x4e\x4d\x9b\xcb\x25\x56\x4d\xaa\xbc\xa6\xfe\x7a\xbf\x3a\x6e\x65\xcc\xf2\x98\xc1\xd1\xeb\xba\x77\x44\x22\xbe\xc3\xf5\x90\x93\xf7\xe3\x7a\x60\xe2\x0e\x6d\x85\x50\xc0\x96\x98\x09\xa9\xa3\x3a\x23\xdf\x9a\xfc\xa8\x6e\xc3\x2c\x53\x89\x24\x23\xae\xd0\x07\x4d\x3e\xd1\x9b\x56\x8c\xd7\x73\xb6\x8d\x1d\x37\xa1\x08\x96\x3e\x71\x78\x88\xbc\x1c\x0c\xd9\x52\x0f\x2b\x78\xf7\x59\xd5\x56\xf4\x60\x1b\xfe\x83\xcc\xb8\x2a\x70\x9c\xc3\x8c\x12\x87\xbb\x13\xb7\xf6\x03\x42\xf0\x26\x23\xb6\x2d\x33\x74\xe6\x93\x67\x47\x34\x65\xe8\x7a\x58\x34\x5b\xef\x08\x14\xc5\x27\x5a\x3b\x9a\xce\xe5\x61\x20\x1f\xe6\x56\x84\x76\xe0\xa5\x7d\x6a\xad\xc0\x80\xee\x66\xea\x07\xaf\x6a\xa2\x91\xd5\xaa\x85\x7c\x57\x80\x25\xd3\xb8\x2c\xba\xce\x8e\x55\xe1\x1b\xfa\xd4\x06\x31\x5e\xec\xbc\x9d\xab\xec\x5e\xbb\xec\x1a\xfd\x04\x10\xec\xc4\x6c\xe0\xf4\xa9\xbd\xf1\xf5\x31\x51\xb1\x69\xb2\x72\xec\x6d\xcd\x61\x58\x0a\x8f\x45\x31\xf6\x6f\x5f\xd6\x34\xda\xc3\x20\xeb\x11\x07\x49\x59\x58\xfe\xfa\x0d\x31\x1c\xe6\x7e\x44\x9a\x1d\x51\xae\x37\xd5\xb2\xa6\x8f\x6a\x83\x43\xd2\xbf\xbb\x4a\x12\x80\x84\x85\x75\xfa\x87\xfd\xfa\xb4\x2d\x0d\x1f\x35\xd3\x66\xb8\x26\x75\x3d\xb9\x4b\xfc\xed\x0a\x68\xb3\xc4\x7d\x4b\x25\xa2\x3f\xd7\x9b\xba\x79\x6a\x72\xed\x6b\xf3\x7d\x21\xee\xd1\x4c\x18\x3b\x46\x6a\x5b\x13\xe0\xe8\x9c\x59\xdc\x39\xb6\xb9\x37\x72\x49\x21\xde\x38\xac\xdb\x2c\xaa\x26\xa0\x08\xa7\x49\x4b\x5a\x88\x0f\x22\x23\x2f\x8d\x60\xf9\xb6\x68\x21\x4c\x3d\xcc\x8b\xff\xcc\x83\x7b\xc5\x39\xee\xa2\x3e\x13\x66\x3c\xd9\x5c\x30\x45\x33\x87\x2c\x32\x82\x1d\x01\xe8\xcf\xa4\x32\xc9\x57\x93\xf7\x99\x17\xdb\xb5\x44\xb7\xe3\x93\x65\xa9\x4e\xc8\x81\x8f\xe1\x3f\xbb\x66\x15\xd8\x80\xa0\xb0\xc0\x56\x77\x74\xfc\x56\x8d\x99\x43\x6a\xc4\x22\x72\x8f\x91\xeb\x35\xfe\x7a\x59\xc5\x29\x9b\xf0\x85\x93\x31\x6b\x86\x42\xa6\xf0\x2e\xf3\x5f\xab\x5a\xa5\xed\xf3\x89\x85\x9c\xdc\x3e\x75\x40\xfb\x46\xdc\x71\x9a\xe7\xe2\xff\x6e\xd5\xb4\x48\x31\x72\xa4\x61\x61\x7a\xfd\x1e\x08\x4a\xe2\x5b\x74\x41\xc1\xf8\x67\xe1\x74\x98\xed\xc4\xb4\x6a\xf5\xe1\x65\xb9\x77\x8d\x00\x48\x2c\x44\x2c\xac\xba\x41\xd3\x9c\xfe\xc0\xba\xf8\x93\x5b\x34\x8c\xae\xf5\xb2\x66\x97\x2c\xb4\x55\x45\x69\xbc\xeb\xad\x01\xf1\x27\xb8\x29\x9b\x0b\xfa\xbf\x94\xec\x98\x6d\x62\x96\x91\xc5\xf7\xc7\x30\xee\x19\xd3\x0f\x69\x03\x1f\x9f\xe5\xa9\xdc\x7c\x65\xee\x1b\x18\xb7\x57\x26\x61\xd1\x1e\xe6\x3f\x0e\xe8\x60\xc1\xaa\x9f\xb7\x88\x19\xed\x81\x8d\xd6\xad\xc9\xb0\x1f\x51\x4f\xe5\x32\xee\xf3\xda\x8c\xc9\xc5\x0e\xa1\x91\x5b\xc9\x7f\x1f\x12\x31\x7c\x05\x35\xcb\xe0\x69\x64\x96\x9d\x19\x08\x26\x56\x61\x19\x35\x6a\x09\xc0\x84\xfa\x79\x02\x61\x62\xc1\xcf\x41\xfe\xcf\x5b\x5c\x5a\x38\xf8\xdd\xa2\x41\x32\x85\x79\x9e\xdc\xa1\x1b\x77\x4f\x1c\x0a\x15\xa1\xa8\x30\xdd\x4e\xff\x9f\x79\x50\xfc\xdf\xf5\x6d\xf9\xd7\x53\xab\x01\xde\x51\xd8\x31\x84\x7f\xfd\xbe\x2e\x55\x3e\x96\x7d\x07\x08\xe1\x1a\xdf\xef\x3f\x42\x4b\xe7\x36\x77\xd7\x09\x9e\x38\x3a\x04\x8c\x7f\xb0\x90\x0e\x31\x5e\x78\x23\x79\x6b\x38\x76\x94\x7b\xce\x79\xca\x2a\xe2\x49\xe0\x42\xec\xa0\x6a\x95\xc0\xb6\x33\x7d\xe4\x7e\xad\x66\x6a\x14\x1c\xdc\x10\xc3\x7c\x1e\x0f\x1f\xd8\xa6\xbd\x72\xca\x3c\x9f\x49\xef\xe9\xb9\x4f\xe8\x36\x8e\x28\x2e\xb6\xae\xec\xd0\x5f\x7c\x89\xb8\xc2\x72\x4c\xdc\x9e\xef\x1e\x8a\xfb\xa7\xbc\x5f\x04\xdb\x8b\x9f\x8e\x03\x74\x2c\x47\x42\x02\xc3\xd7\xfd\xba\xe6\x61\x28\x06\x61\x3e\x13\x0e\x44\xa9\x59\x57\x0e\x07\xe8\xd7\x02\x66\xd2\xba\x21\x33\xa6\x07\x98\x1b\x02\x03\xe5\xc3\x4a\xf0\x8a\x01\x5d\x90\xd4\x98\x97\x25\x56\x82\x72\xb9\x6f\xbe\x79\x3c\x3d\x10\x54\x35\xbc\x37\xfa\xfe\xc8\x78\xd2\x90\xe7\x88\x51\x35\x59\xda\xb6\x19\x6c\xb3\x3d\xc6\x81\xc4\xe9\x6f\xfc\x78\x0c\x68\x9a\x1d\x5c\x62\x08\x1a\x08\x2c\x07\x82\xc7\xc8\x13\x52\x27\xbc\xa0\xba\x57\x98\xfd\x67\x3f\x11\x56\x6b\xdc\xd7\x4c\x9f\xfa\x9d\xba\x53\xa5\x7b\xdf\xe1\x63\x44\xc2\x29\xcb\xb7\xbc\xd5\x54\x74\xd4\xb0\x25\x04\x1d\xab\x11\x50\x61\x75\x27\x78\x3a\x80\xb3\x3c\x5e\xe4\x66\x4a\xc2\xae\x8e\x1e\xd4\xa6\x34\x65\xae\x09\xc1\xf9\x4b\x6b\x27\xe8\x88\x64\x27\x42\xe4\xa5\xda\x8f\x4a\x67\x63\x52\x2c\x8a\x6b\x91\x59\xb9\x20\xf9\xd7\xbb\x68\x05\xbb\x72\xe8\xb6\xb4\x9a\xec\x41\xba\x90\x59\x71\x25\x85\x40\x65\xb8\xb1\x4f\x41\x76\x3f\xb2\x88\x7c\xd1\xc6\xeb\xcf\x6b\xd9\x0d\xbb\x5e\x96\x16\xb3\xd3\xa3\x0a\x82\xad\x01\x45\x3d\x23\xc2\xfc\x2f\x8d\x9f\x54\x7f\x9a\x67\xb8\x2e\x6e\x97\xff\x0b\x38\xb2\xe5\x8c\xb4\x8b\xda\x46\x8e\x0b\xd4\x3a\x28\x32\x7c\xea\x4d\x3f\xb8\x31\x2e\x52\x3d\xb5\x8c\xff\x76\xe4\xe9\x45\x2d\xcb\xf7\x90\xa0\x66\xa5\x47\xbd\xa5\x9e\xbb\x85\xdd\xbc\x58\x03\xa5\x0f\x2b\x78\xf8\xb4\xb6\xd6\x6c\x2e\xf8\xde\x80\x64\x70\x26\x4e\x0f\xb2\x91\xcd\xb9\xa9\x50\x38\xef\xf1\x56\x49\xd8\xc0\x61\x63\x23\x91\x8f\x57\x5f\x50\xe7\x76\x92\x15\xbe\xc9\x7f\xda\xad\xc3\x5f\x2c\x2e\x3d\x28\xc3\x45\x51\x93\x65\xaa\x97\xa9\x85\x5d\x14\xb9\x04\x07\x3f\xdd\x0c\x4c\xf8\x90\xb0\x93\x08\x9f\xd6\xfb\x3a\x24\xcf\xd0\xa2\x3e\x4f\x66\x8b\x0e\xa9\x60\x49\x6d\xe2\x88\x8d\xd4\xdc\x67\xe0\x5a\x3e\xac\x6f\x68\x55\x98\xd7\x18\x97\x57\x25\xa1\x21\x73\x65\x90\xbf\xfd\x25\x4d\x8d\x8a\x61\xd7\xb3\x94\x3a\xc1\x87\x35\x9d\x28\x5a\x85\xc6\xc9\x53\x4e\xab\x77\x5b\xf6\x59\x41\x6c\x5a\x7e\xb4\x54\xf9\xec\xcd\x9e\x9d\xcd\x05\xbd\x4f\x26\xbf\x76\xc9\x47\x0c\x39\x1e\x8e\x05\x37\x3f\xb5\x7e\x34\xe0\x43\xa3\x92\x9f\x08\xa3\x27\x36\xa9\xbb\x2d\x85\xac\x78\xd0\x92\x07\xe0\x1b\x1a\xa2\x18\x59\x61\x92\xf0\x6d\x89\xb3\x1a\x78\x85\x4e\x58\xc3\x9e\x17\x01\xa0\xd3\xd3\xa6\x0e\x86\xe4\x0e\xca\x0b\x45\x6b\xbd\x34\xe4\x23\x45\x3e\x5e\xf5\xc2\x93\x32\x66\x47\xf2\xf6\xb4\x74\xf9\x76\x9e\xb6\x68\x65\xd4\x67\x36\xf5\xc5\x0d\x13\xd0\xe6\xb1\xdd\x2d\x5a\xad\xd7\xa7\x86\xd3\xb1\xc3\xa0\x61\x2e\x89\xd5\xe1\x47\x0f\x27\x5b\xc6\xf0\x1c\xb8\x55\x8c\x2a\x91\xae\x54\xaf\xf1\xbd\x25\x62\x54\xba\x52\xf6\xfe\xea\x33\xf5\x6c\xbb\x0a\xdc\xb5\xf0\xef\xfe\x74\x89\x08\x1c\xf7\xf8\x48\xba\x9b\xa5\x1e\x2d\x24\x4f\x6e\xe4\xf5\x28\xca\xd0\xf3\x9a\x4a\x5f\x78\x4a\x48\x2d\x36\xb7\xde\xd2\xad\xd5\x11\x94\xcf\x3e\x38\x2a\x35\x73\xdd\xeb\x4a\xca\xcd\xe2\x4d\xa1\xf6\x85\x2b\x4b\xb4\x9a\x3a\xac\xf4\xfc\xaa\xc0\x33\x7f\x7c\xb0\x0e\x14\xf5\xf3\x51\xfc\x1b\x7f\xa7\x42\xb9\xf1\xd6\xd7\x14\x08\x3b\xe8\x0a\xa5\x01\x66\x23\xe1\x5f\x9e\xf8\x5f\xda\x03\x49\xbf\xae\x8b\x99\x50\x0d\x4f\xff\xa4\x23\x46\x6f\xa1\x52\x78\xb3\x3e\x7c\x49\xd3\x11\xc3\x36\x22\x4e\xec\x78\x97\x9a\x7e\x41\x3c\xd0\x3b\x51\x5d\x0a\x23\x6f\x7b\x31\xf9\xa5\x12\x0e\x53\xc3\x5e\xd2\x08\xe4\x4c\x98\xc4\xf1\x61\xee\xc5\xf9\xa2\x10\x75\x88\x59\xc1\x16\x77\x4f\x28\x10\x9b\xc7\xd2\x9f\x3c\xa5\x1e\x65\x87\x98\x90\x24\x93\xd5\xec\x07\xc4\xe7\x28\x53\x8b\xc8\x75\xc8\xb4\x83\xd7\xc0\x01\x64\x29\x8c\x38\x00\xce\x90\xa9\x66\xa0\x01\x7c\x0d\xbb\xb2\x5e\xde\xfc\x04\x58\x87\xf3\x4e\x26\xbc\x05\xef\x1e\x12\x6d\x02\x32\xef\xf1\x09\x1f\x78\x7f\x73\xa7\xf6\x84\x31\x73\xb1\x55\x94\x11\x62\xd8\x23\x00\x85\x1a\xcb\xb5\xff\xa1\x03\x08\xcc\x91\xaa\x88\xa6\x1f\x9f\x05\xeb\x4a\xfe\x19\x5e\xbd\x11\xa4\xfa\x3a\xb2\xf9\x38\xf9\xcb\x1a\x86\x56\x9a\x17\x45\x13\x78\xe3\x2b\x1d\x62\xad\x70\x9b\xeb\x52\x93\x20\x41\x75\x4b\xf6\xdc\xb7\xbe\x27\x1e\xf1\x2a\x6a\xb9\x1e\x6a\x00\x81\xaf\x9f\xbc\xa8\x8b\x0a\xa1\x1a\x6e\x24\xa5\xc5\x17\xee\x56\x48\x06\x14\x6d\x0b\xc3\x87\xf3\xb0\xc6\x8d\x6d\x6f\x9f\xd1\x3a\xad\x7d\xa6\xbc\xa0\xc7\x07\x26\xff\xeb\x3d\x3e\xf5\xd4\x09\x3a\xbe\x55\x85\x52\x6c\x57\x2d\xca\x6f\x65\x67\x77\x72\x71\x8b\x98\x43\x2d\xa1\x87\xad\x19\x35\xf7\xbb\x0e\x8e\x63\x28\x71\x75\x12\x52\x6f\xfa\xc1\x89\xc0\x3e\x5d\xd8\xb0\x19\xd7\x6b\xe2\x86\x05\xe2\x22\x66\x23\x35\xd7\xcb\x0c\xef\x07\xce\x8f\x30\x84\x48\x2c\xfa\xf6\xbe\x25\x8d\xdb\x59\x43\x2e\xbf\xff\xb4\x6c\x34\xa0\xcc\xe3\x6a\x39\xc1\x43\x2f\x5f\x09\xad\x09\xf2\x98\xeb\x6e\x1a\xab\xf4\x00\x62\x12\x2c\x7d\x86\x4f\xbf\xab\x78\x2e\x56\xf3\x8a\xe8\xe3\x2b\xb4\x29\x3a\x62\x9e\x23\xfc\x8c\x84\x96\xdb\x8d\x37\xea\xde\x9a\x05\xca\x04\x2d\x78\x42\xf8\x8c\xed\x37\x5a\xb4\xea\x0b\xf7\xb1\x80\x4e\x7d\x65\xcf\x30\x30\x48\x67\x15\x2c\xcc\xe9\x8c\x91\xe7\x92\x3f\xde\x43\xcc\xb7\x69\xad\x42\x64\x6e\x7b\xeb\x65\x30\xcb\x01\x17\x2f\x3d\xfb\xe8\x55\x0a\x60\x54\x0f\xff\xea\xdb\x3b\x92\x27\x04\x33\xaa\x82\x86\xf1\x69\xcd\xb3\xc7\x0c\x8b\x44\x79\xea\x83\xcf\x3c\xa2\x56\x7f\xa8\x7d\x46\xf8\xd3\xfe\x0d\x80\x08\x4d\x6a\xe7\x91\xa8\x8c\x5c\x4f\x63\xbd\x72\x77\x3f\xbe\xf3\xdb\x2d\x9e\x54\x76\x55\x99\xe0\x5a\x53\x8b\x1c\xac\x01\x96\xd7\xa8\x52\xe4\x73\xc6\x87\xef\x17\x93\x99\x3a\xe2\xd2\x34\xa3\x35\x6b\x85\x32\x66\x52\x1c\x3d\xbd\x7a\x68\xdc\xc1\x22\xee\xc0\x71\x7b\xe7\xe2\xe0\xff\x1d\x16\x13\xab\x69\x73\xb3\xb9\x60\x7f\x3e\xf9\x8f\x49\xf6\xff\x53\xf6\xf6\x61\x57\x54\xf5\xde\xb8\xfb\x25\xe3\x31\xe4\xe5\xf6\x06\x11\x11\x91\x10\x51\xd8\x77\xbc\x0b\x48\xa6\x88\x88\x8a\x6c\x02\x54\x42\x42\xd7\x9e\x59\x7b\xcf\xba\xf7\xcc\xac\x71\xcd\xcc\xde\xf7\xbe\x23\x34\x0f\x29\x87\xcc\x8c\xe3\x31\x22\x33\x34\xe3\x10\xc7\x83\x46\x46\x44\x44\x1e\xf3\x90\x87\x38\xe6\xe3\x8f\x3c\x44\x3e\x46\xc6\xe1\x90\x99\x91\x11\x91\xc7\x7b\xfa\x5d\xf3\x5d\x6b\x66\xad\x59\xfb\xee\xb9\xae\xe7\x2f\xaf\x0b\x64\xef\x3d\xb3\x5e\xbe\x6f\x9f\x17\x27\x09\x30\x77\x3d\x92\x8d\x7f\xbd\x16\xa2\xa2\xb7\x9a\x9c\xca\x2f\x74\x09\x3e\x24\x75\xfd\x38\x73\xe2\xe1\x0b\x5c\x64\xde\x53\xe4\x6f\xc2\x0a\x43\x2a\x3e\x26\x7f\x16\x1b\x28\x6e\x34\xc6\xa1\xf0\xfb\x36\xfd\x0d\x49\xde\xe4\x82\xde\xa2\x4d\x6c\x19\x31\x6b\x5c\x32\x34\x7e\xa4\xdf\x5d\xa1\x48\x05\x63\x5c\x8f\x9f\x7d\xd2\xfd\x32\x31\xc3\x36\x49\x1a\xd7\x90\xdf\x0f\x90\x5d\x96\x38\xef\x57\x2b\xed\x0d\x73\x14\x34\x13\x0d\x0d\xcb\xa4\x4d\xee\x19\x1d\xa9\x1a\x34\x88\x30\x30\x78\x8e\x7e\x78\x62\x98\x7a\xd5\x9b\x24\x51\x31\x39\x75\x40\x85\x45\x61\xb7\x24\x34\xbe\x8b\xab\xb5\x8e\x65\xe8\x72\x71\xc4\xe8\x97\xbb\x04\x53\x33\xd1\xc1\xb8\x73\x40\x86\x9c\x2c\xac\x01\x7c\x07\xc4\x31\xc7\xc8\xee\xb1\x9d\x12\x70\xd6\xcc\x92\xa5\x38\xaa\x56\x81\xe0\x28\xaa\x22\x77\x4f\xca\xf0\xa0\xbe\x2f\xcc\x67\x72\x0f\xbf\xd5\x8f\xd4\x1a\x97\xc0\x86\x44\xef\xff\x5b\x3c\x54\x05\xbd\x24\x0c\x82\xbd\x19\x9f\x2f\x2f\x7e\xde\xb1\xdb\xe4\x69\xb0\x39\xfd\xe0\x46\x2d\x31\x6b\x90\x00\xd9\x22\xc9\xfd\xfa\xa2\xf4\x88\x76\x13\xb5\xcd\xf5\xdd\x23\x1a\x42\x78\xf6\xac\xd9\x49\xc3\xb4\x78\xee\x46\xe1\x7d\x18\xb0\xb0\x56\xe3\x8f\x70\xce\xae\x31\xda\xfb\x44\x4e\x85\xd4\x42\x00\xe2\x24\x69\xcb\xaf\xd7\xb5\xe7\xd4\x69\xff\x72\xeb\x56\x39\xe1\x9b\x1c\x5f\x7f\x5f\xdb\xdd\xe6\x13\x84\xfd\x84\x59\x55\x7b\xf9\x7c\x65\x80\xe5\x61\xc6\x75\x1d\xa0\x02\x7f\xe2\xac\xec\xd5\xde\x1d\x56\x88\x8d\xdc\x00\x66\x6d\xb0\xf7\xae\x3c\x32\x42\x29\x92\xe2\xb2\x59\x79\xf6\x6f\xaf\xd5\x70\x09\x36\xf2\x03\x10\xf8\x81\x4f\x7f\xe0\x80\x42\x7c\x47\x89\xc5\xf6\x91\xe1\x89\xbc\x84\xcb\xb5\x98\x45\x5b\xe6\xb6\x03\x9a\xef\x01\x75\x4d\x21\xd0\xf1\xf2\x4d\xf2\x9a\xa2\x61\x60\x50\x48\x75\xf2\x1b\x07\x69\xea\x30\xe0\x70\xd8\xaf\x79\xda\xda\xf5\xb2\x42\x87\x09\x7b\xc9\xa1\xd0\x14\x25\x4f\xf1\x6c\x68\xca\xac\xc9\x93\x26\x4f\x9e\x1c\xa7\x2f\xef\x74\x4a\x45\x76\xf9\xb4\xd1\xe9\xa9\x3a\x1e\x45\x5e\x22\x09\xa7\xa2\xf8\x68\x7a\x81\xf9\x41\x57\x02\x89\xf8\xd5\x2b\x0a\x1d\x37\x08\xe2\x92\x3a\x3e\x3f\x4b\xd6\xa5\x32\x77\xc8\x56\x15\x49\xa3\x9f\xeb\xd7\x0b\x75\x3c\xe4\x26\xfe\xd9\xe5\xbe\xe2\x9c\x79\xd9\x92\xd4\x15\x3c\xda\xb8\x4c\x54\x00\x95\xf9\x35\x67\xa5\x49\xea\xb4\xa9\x33\x01\xaa\x38\x46\x77\x66\x63\x2c\xfe\x41\x90\x2f\xa4\x11\xbb\xb8\x64\x74\x76\x65\xc1\x20\x88\x89\xed\x19\xfd\xe0\xf5\x8e\xf4\x9b\x5d\x4f\x94\xd9\xd1\x85\x2f\x2b\xd6\xeb\x06\x6f\x9e\x14\x96\x8f\xce\x16\x95\x5d\xbc\x3d\xdb\x79\x44\x27\x39\xf9\xb5\xd0\x97\x55\xf0\xd3\x7b\x46\xca\x6f\xd0\x1b\x2e\xd1\xaa\x91\x4a\x1f\x90\x7a\x2d\x03\x6c\xdd\xf3\x8b\x36\xe9\xce\x19\xc4\xe6\xe0\xab\x2f\x6b\x07\xa4\x4a\x5c\xe2\x0b\x90\x62\x74\xb4\x47\x93\x8f\xc7\x2e\x4a\xb5\xb6\x73\x1f\x7f\x7c\xb0\xa2\xab\x3a\x13\x5c\x15\x9e\xb9\x49\x73\xbf\x0b\x02\xec\x9a\xa9\x7b\xe1\x37\x14\x13\x66\xd8\x6c\x14\xa6\x42\x85\x4b\x87\x68\x08\x58\xe8\xe1\x60\xc5\xa7\xaf\x30\xec\x35\x85\x2d\x45\x82\x00\x0b\x07\xe7\xe8\x3f\x34\xb8\x15\xf2\xeb\x49\x8b\x36\xf7\x45\x36\x38\xbd\x73\x43\x2e\x1f\x96\x8f\xee\x55\x0c\x3d\x6c\x44\x1c\xf5\xce\xba\xf6\x85\x31\x5a\xa9\x22\xda\xe0\x4a\xdf\x32\xf7\xc5\xd7\xdb\x9d\x59\x92\x40\x7d\xd1\x8b\xfc\xea\x5f\x50\x9a\x32\x93\xfb\x08\x6a\xb2\x2a\x01\xe3\xab\xc9\x01\x2f\x3b\xaf\x90\xeb\x85\x7b\x40\x31\xbd\x54\x8e\x66\xac\x4e\xaf\x54\x47\x41\xb7\x44\xdb\x6e\x92\x37\xf3\x94\x29\x20\x6e\x7b\xc9\xe8\x7e\x2d\xb3\xf9\x4c\xb6\xa2\x8d\x9d\x1b\x04\xbb\x2e\x8a\x17\x5e\x84\x92\x1b\xe6\x8d\x94\x90\xa4\x36\xca\x56\xfe\x76\xad\x21\x73\xe5\x8c\xc9\x71\x4e\x9f\x38\x0c\xad\x7c\x52\x40\xf0\x61\xae\x94\x6f\xae\xba\x48\xb9\x10\x51\x3f\x96\xe9\x83\x34\x89\x15\x0f\x11\x93\x23\xcb\xf2\xff\x99\x97\xab\x02\xcd\x62\xc4\x1d\x04\x00\x6c\xdc\xca\xeb\x05\x34\x09\x24\x94\xad\x70\xd9\x08\xc5\xad\x07\x1b\x38\xc1\x8e\xfd\xa6\x28\xc2\x30\xf1\xeb\xf0\x39\x9f\x9e\x99\x5d\x5d\x7a\x99\x8b\x89\x6d\xf3\x84\x35\xc9\x1b\xdc\x8a\xd6\xd4\xb2\x5b\xa1\xd3\x6b\x11\x97\x36\x14\xf4\x7d\xb4\xdd\xd6\x68\xb9\xf1\x56\x57\xe1\xf9\xf9\x4f\xbc\xa1\x23\xeb\x6d\x3b\x99\x1d\x3c\xa4\x59\xd9\x38\x28\x09\x70\xf9\x1f\xbf\x70\x41\x56\xc8\x84\xa9\xb6\x8a\x13\x34\xea\x67\x0d\x07\x7e\x42\xcb\x5b\x35\x5f\x26\x4f\x34\x20\x90\xfb\xad\x3c\x9c\xfd\xa2\xa9\xb3\x4b\x49\xf7\xe6\x02\x21\x07\x55\x27\x60\x51\x0b\x1a\x38\x53\x87\x6b\x61\x8b\x04\x98\xcf\xc1\xf2\x87\x35\x05\x0c\x46\x0d\x9c\x0a\xfa\x46\x27\x34\x98\x2e\xd0\x4f\x1b\x89\x10\xe4\xe1\x3c\x47\x54\x5e\x87\x58\xa0\x6e\xe8\xbb\x46\xe9\x7c\x97\x38\xf3\x4a\x42\xfd\xf4\x73\x74\x85\xe6\x20\xcc\xac\x55\xee\x23\x9e\x50\x6c\xed\x02\xc5\xd6\xe3\x8b\xe4\x2c\xc2\x60\x48\x74\xd4\x56\xad\xe6\xe8\x8d\x6b\xed\x0a\x72\x49\xca\x82\xbb\x76\x85\x24\x37\x58\x6a\x8d\x75\x73\xa7\xcc\x78\x9b\x42\x84\x46\xae\xaa\xab\x89\x42\x37\x2d\x94\x8e\x81\xf3\xd3\x5f\x54\x92\x2c\x8c\x42\xb0\xaf\xc8\xad\xdf\xa3\xcb\x73\x86\x81\x85\x99\x1b\x07\x5a\x71\xd3\xfe\x56\x93\x80\x33\x31\x12\x9c\xfe\xfc\x5f\x37\x28\xcd\x58\xee\xdf\x11\x7f\xe8\xb7\xa4\xca\x1c\xea\x72\x00\x19\xb6\xfe\x12\xd9\xc0\x64\x18\x9b\x0e\x72\xdb\xe0\x99\xf9\x7f\x1e\x38\x54\x81\x89\x08\x4a\x4c\x6e\x9a\x32\x47\x47\x0d\x44\x00\x5c\x79\xd3\xf3\x69\x36\xd5\x84\x46\x68\xee\xfd\x7c\x06\x8f\x05\x22\x5d\x24\x04\xa5\x90\x65\xab\xdb\x6a\xe1\x80\x11\x23\x48\x2d\xa4\x0a\xb3\x07\xc8\xed\xd9\x1d\x42\x8e\xb1\xa4\xb7\xdf\xd6\x17\xdf\x34\xdf\x18\x9b\x96\xae\xae\xd7\x06\x49\xc9\xdd\x55\x54\x06\x4f\x0e\x09\x58\x9c\xc4\x0f\x1b\x2b\xbf\x63\x4a\xd7\xb4\x2b\xe3\xcf\xd9\x7a\x4c\x36\xaa\x1a\x98\x91\x2a\xe1\xd4\x89\xe2\x0d\x73\x54\x97\xaf\x66\xfa\x32\xae\x32\x35\xe3\x7e\x64\xa3\x96\x4f\x90\x74\xc3\xba\x7e\xa7\x18\x2c\x83\xce\x26\xb4\x3d\x97\xbc\x91\x45\xb0\x34\xb0\x1f\xb4\xfa\xc9\xb8\xa2\xda\x96\xf4\xb1\x70\xab\x1d\x4e\xbd\x78\xaa\x8e\x34\xf0\x30\x6b\x52\x56\x17\x77\x7a\xcf\x46\xd9\x51\x68\x5a\x24\x70\x71\x2b\x33\xe0\xa9\x9e\xa5\x67\xdd\xb3\x67\xa4\x88\xc5\xb9\x1d\xe9\xa6\xe9\x05\x79\xe8\x35\x8d\xec\x75\x72\xd9\xc4\x92\x1b\xc7\xe4\xf8\xf5\x20\x8d\x10\x8f\x7b\x02\xec\xf2\xc1\x4a\xf1\x9a\xe2\xc5\xb2\x2b\x4a\x6d\x61\x70\x9a\xc5\x95\x54\x5f\xd3\x42\x13\x22\xae\x3f\x09\x20\xd8\x7d\xb9\x63\x1b\x94\x72\xb8\x17\x33\x52\x2a\x47\xaf\x1f\x13\xa6\xab\xd4\x35\x91\x8d\xd5\xf1\xee\xab\x9d\x6d\x29\x66\x15\x64\x6a\x09\xb2\x93\xc3\x37\x89\x09\x0a\x3b\xf8\x6e\x88\x46\xdc\x1f\xd6\x66\x1f\xa2\x8e\x5b\x5d\x49\x76\xf0\xa3\x81\xe7\x8a\x22\xa7\xca\x05\x5f\xee\xdf\xa2\x38\x11\x83\x84\x5d\x74\xc7\xab\xb2\x0e\xe3\x4a\xbe\x69\x1d\xe6\x2d\xe6\xc9\x05\x71\x1b\xc8\x26\x80\x72\x7e\xf4\x10\xbf\x8f\x12\x59\x13\x4e\x29\x2d\xcd\x17\xf7\x4e\xf2\x34\x7b\x36\xc3\x75\x68\x63\xb7\x74\xa5\xca\x2f\xbf\xee\x8d\x4e\xa5\xc7\xd4\x6b\x61\xe2\x70\xad\xf0\xaf\x08\x81\x40\xbf\xe5\x07\xd8\x89\xbf\xe9\xc4\x0b\x1a\x16\xd0\x43\xcd\xb8\x0e\x4a\x97\x2f\xf7\xfe\x06\xfe\x6f\x2a\x36\x6d\x8a\x3b\xe3\xa4\x26\x91\x6e\x90\x80\xf4\xe2\x04\x32\xbe\xf4\xc5\x6c\x74\x4c\xb4\x76\x0c\x1b\xa5\xa4\x8d\xdc\x8a\xfd\x32\x63\x6f\x0a\x29\xaf\xf8\x65\x7c\xe0\xf8\x85\xe9\x9f\x33\xd2\x20\x18\xe8\xfb\x12\x60\x47\xe6\x28\xa3\x3c\x4a\x18\xe6\xc0\x91\x4d\x95\xcb\x9b\xed\x73\x53\x68\xa0\xb5\x3b\xfb\xe5\x07\xbc\x2f\xdf\x4f\x83\x98\x98\x06\x00\x8a\x8d\x7e\xbf\x52\x61\x3f\x03\x76\x43\x58\x51\x8c\xd4\x58\x2b\xc8\xad\x27\xc9\x51\x71\xdd\x42\xf9\x8f\xe2\xb0\x43\x9d\xf8\x8e\x8b\xce\x7b\x78\x94\xd2\xd1\x8d\x6f\x31\xe2\xd6\x42\xe2\x27\x46\x79\xb9\xaf\xb7\x7b\xa7\x85\x46\x9d\x37\x92\x0e\x6d\x92\x4f\x79\x77\x88\x09\xa3\x60\x31\xc4\xd6\xc8\xdf\x5d\x09\x0d\x2b\x41\xdb\xe7\x6e\x5d\x32\x56\x8b\x9a\x55\xee\x3f\x9b\x7d\xee\xf1\xeb\x2f\x50\x33\x2b\x33\x35\x1c\xe7\x23\x9c\x63\x43\xd4\xbf\x85\x8b\x75\xac\x06\x38\x72\x91\x97\xcc\x4b\xe0\x2e\x7e\x48\xb5\xc2\x6b\x99\x4a\x80\xcb\xdd\xce\x74\x39\x39\x86\xa0\x95\xf8\xf9\x55\x8a\xcc\x1e\xf2\x89\x6d\x43\x13\xf4\xba\xfd\xba\x59\x94\xf0\xde\x88\xce\x3e\x2d\x75\xc3\x66\x4e\x07\x54\xc4\x18\x2d\x25\xb2\x30\xc3\xdc\x59\xa7\x60\x75\x2a\x10\x48\x92\x3a\xdb\x17\xb6\x7b\xd9\x5a\xd6\xc2\xac\x97\xd6\xfa\x15\xa1\x5f\xcd\x0b\xe5\xd2\x92\x6b\x97\x5e\x77\xfd\xa2\x45\xcb\x94\xa0\xfe\x49\x5b\xd9\x9f\xd8\xa7\x2c\xc8\xcc\xc5\x73\xd7\x68\xd4\xfb\x8a\x30\x0e\x12\xb9\xd2\xc0\x47\x3a\x14\xa9\x04\xdf\x26\x75\xa8\x5b\x76\x4c\xd7\x22\x05\x75\x69\x1c\x13\x7a\x53\xd9\xed\x3b\x1f\xed\x10\xdf\xe9\xe2\x1a\x0d\x88\x10\x2f\x7d\xeb\x9c\x36\x85\x85\x00\xd0\xe1\x82\xff\xf3\x87\x47\x2e\x75\x15\xda\x03\xef\x1c\xf7\xc7\xab\x29\x8c\x3b\x2d\xc3\x20\x32\x1b\xdc\x44\xa9\x78\xe7\x71\x9e\xfa\x2e\xc1\xdc\xa7\x34\xb7\x26\x63\xe8\x8e\xea\x71\xb0\xfc\xe9\x6e\x9d\xef\x4c\xc5\xa0\x45\x38\x0c\xef\xdb\x93\xdd\x0a\x4d\xc4\x81\x42\xd1\xe4\x4e\xc5\x6a\x80\x86\x1c\xc4\x5e\x5c\xa2\x18\xee\x57\x40\x95\x3f\xad\xdb\x3f\xb0\xff\x22\xe5\x1a\x8d\xe3\xac\xbe\xc7\x3f\xb7\x68\xa0\xf8\x87\x3e\x64\xae\xb9\x01\xcb\xf5\xa9\x51\x35\xac\xe1\x54\x0b\xbf\x38\xbd\x53\x51\x1d\x16\x72\x04\x7c\x16\x72\xf1\x48\xcd\xfe\x59\xa7\x88\xe7\x36\x6f\xd7\x98\xb3\x94\x3a\xa2\x9d\x35\x60\xab\x22\xc2\x85\x9d\x64\x80\x5f\xbc\xfc\x25\xd5\x24\xb7\x4a\x99\xc0\xd2\xe4\xa6\x9f\xc9\xbe\xa4\xe9\x93\x93\x2e\x4f\x61\x9c\x56\x75\xe3\x1a\xe1\x74\xf1\x5c\xc7\x0b\xc3\x93\xa5\x60\xd8\x2f\x55\x29\x2b\x99\xb8\x12\x9f\xdc\xfa\x19\x25\x06\x30\x27\x35\xde\xbb\xfe\xa5\xec\x31\xb8\x1b\xb9\x01\xf2\x05\xfc\x20\x9b\x19\xdd\xd7\xd0\xb0\x00\xb6\x4d\x05\x39\xa8\x01\x2a\x68\xf7\x70\x6d\xdc\xd2\xad\x5d\xf3\xbb\x96\xb4\x4d\x43\xee\x9a\xa9\xcd\x7c\x29\x96\xad\xab\xfc\xaa\x4d\xda\x41\xa1\x8c\xd1\x66\x4a\xf1\xf8\xe8\x89\xc1\x49\x68\x9b\x25\x7e\x79\xee\x79\x45\xb6\x02\xf0\x63\x97\xa5\x31\x74\xf8\x18\x65\xf7\x56\x7c\x61\x22\x5e\x79\x9c\x0f\xa1\xe6\x63\x87\x1a\x0c\x05\xa4\x8d\xc0\x9b\x1f\xa0\xdf\x24\x94\xf9\x81\xe8\xf5\xaf\x17\x52\xb4\x00\x10\x70\x85\xf0\xfe\xf6\x45\x8a\x4c\x5a\xe8\x81\x1b\x9b\xe8\xb5\x2e\x3c\x4b\x71\x15\xb2\x88\x4d\x3c\xa0\x5a\xe4\x0a\xa6\x6c\x43\xf5\xaa\xe1\x2c\x7a\x2b\xd0\x54\x24\x50\x55\x48\x6e\xfe\xf4\xd8\x45\x5a\xfa\x56\x27\x7e\x80\x5c\x90\xf1\x87\xeb\xfa\x5b\x57\x2b\xda\x37\x52\xa3\x2b\x1a\x34\x56\xa6\xa9\xbe\xc1\x30\xe6\xea\x97\x7d\xc5\xfa\x01\x5d\xaf\x1c\x63\xa9\x24\xff\x77\x4b\xff\x46\x09\x05\x47\x01\xad\x54\xd2\x17\xe4\xd6\x85\x9b\x52\xfc\xb1\xe7\xdc\xaf\x33\x36\x5c\x33\xb1\x18\x7a\xea\xb4\x52\xc7\x88\x9e\x74\x74\xfe\x2a\xc5\x90\x94\xf4\xc0\xc1\x8f\x1f\xf9\x47\xa7\x64\xce\x7d\xd9\xcc\xc9\xb0\x4b\xce\x9d\xa5\xe8\x06\x8a\xc6\x7c\xfc\x19\xef\xbf\xa6\xb5\x4e\xb8\xcb\x38\x44\xeb\x91\x5a\xb4\x6e\x28\x13\xbe\xc2\x9d\x9a\xd6\x9a\x03\x56\x9b\x72\xd2\x96\xfb\xca\x29\xd9\x40\xe8\xc6\x76\x43\xe5\x91\xe4\x7e\xb6\x47\xbb\x6e\x39\x8a\x39\xa5\x8f\xef\x56\x5c\x52\x67\xcf\x9e\x34\x73\x3a\xf4\x56\x1a\x3b\x34\x0c\x19\xb6\x13\x03\xcf\xdc\xc9\x23\xa3\xb5\xbb\x13\xfb\x06\x23\x9e\x14\xa8\xca\xbf\x5a\xe1\xf9\xe1\x02\xb9\xd5\x0a\x4f\xad\x1e\xa5\xc4\xea\x6a\xd0\xb6\xaf\xd7\x44\xf2\xf8\x57\x31\x50\x62\x2d\x02\xa2\x22\x03\x64\xff\x8b\x38\x1e\x36\x13\x29\xf0\xdc\xdb\x23\x3e\xac\xbd\x53\x16\x67\x2d\x6d\x97\xde\xbf\xbd\x2e\x43\xa0\x4d\x5c\x83\x40\xb7\x58\xfe\xfd\x2f\x5f\x90\x5f\xed\xc5\x39\x9c\x0d\x98\xd9\xe8\xd8\xe6\x73\x45\xc1\xe7\x71\xe8\x4e\x8e\xcc\x55\x25\x3c\x52\xf3\xab\x78\x9d\x96\x0e\x4f\x4c\xe9\x93\x71\x67\xb9\x2f\xbf\x59\x99\xb8\x20\x23\x20\x0d\x01\x8a\x9a\x2e\x85\x45\x0d\xd0\x84\xcb\x05\xb2\xbe\x0c\xbd\x8c\x26\xcc\xbf\x6a\x19\x8d\x17\x32\xc3\x42\x7e\x7a\x0e\x4a\xbb\x84\x07\xeb\x8d\x37\x2f\xbc\xf6\xc6\x45\xf1\x1f\x1d\xb3\x2f\x76\x55\xe8\x0b\x33\xdb\x85\xfe\x3e\xf6\xa4\x26\xa4\x0d\xd8\x1a\x5e\x82\x46\x8f\x2e\x55\x30\xec\xd4\x0f\x08\x77\xfb\x79\x54\x71\xf7\x70\x88\x2b\xd8\x07\x40\x2d\xf4\xf8\x44\xce\x80\xc8\xf0\xe3\x01\x3a\x45\xd5\xc5\x4d\x64\x0b\x90\xe1\x57\xbb\x35\x9e\x77\x1c\x5b\xe3\x97\x30\xce\x6b\x13\xe7\x20\x2e\x4e\xa5\xb0\x0b\xde\x42\xa5\xef\x3a\xb5\x8b\x57\x1a\xab\x44\xf4\xb4\x39\x5e\xb8\xd0\xa9\xc8\xb1\x22\x66\x58\x5c\x8b\xa7\xb8\xf0\xa0\x02\x72\x62\x21\x58\xd8\xc2\x94\x21\x8a\x5e\xd1\xdc\x75\x19\x23\x0d\x21\x80\x3c\x67\x94\xc4\x10\xd5\x11\x43\x66\xaf\xc2\x72\xef\xcb\xdf\xb3\x67\x88\x92\x18\x1a\x75\x20\x85\xf7\xde\xc7\x6b\x9f\xdb\x51\x10\xf8\x2a\x2f\x60\xf4\x79\xc9\x57\x04\x52\x52\x22\x5a\xb2\x48\x87\xde\x91\x04\x95\x9c\xdf\xb9\x5d\x91\x6b\x4e\xd2\xf0\xf3\x0f\x6a\x0d\x27\xd7\xa5\x06\x17\x0f\x2c\xf7\x15\x7e\xbf\x4a\x99\xf1\x79\x28\xa5\x96\x0f\xd5\x84\x3b\xab\xe0\x20\x94\x56\x37\x17\x32\x8d\xe8\x01\x1a\xd8\x29\xca\xff\x9b\x6f\xe8\x96\x0a\x8e\x67\x13\x70\x10\x02\x09\xa1\x7f\xd8\x25\xf5\x53\x69\x4f\xa9\x1c\xad\x5f\x20\xc3\x9b\x8b\x9b\xdc\xc3\xea\xc5\x41\x23\xb4\x10\xe1\xe2\x44\x3a\x39\x5f\x7b\x53\xa8\x5d\x86\x01\x75\x68\x05\x76\x5c\x74\x68\x63\xf6\xf2\x4b\x52\xc9\xf8\x7a\x04\x9c\xcf\x98\x46\x3b\xbb\x91\x93\x61\xae\x79\x71\x98\x92\x55\xa3\x1a\x57\xb0\x04\x60\xfb\xb3\x3a\x58\xc3\xc1\x5a\x8f\xb3\x7c\x5f\x8a\x23\xe5\x88\x50\xd9\x66\x28\xcc\xd1\x68\x38\xf1\x1e\x0b\x30\x58\xf2\x89\x36\xf9\xce\xa7\x45\x3d\x4e\x03\x14\x50\x61\xed\x3f\x4e\x1b\x10\xb4\x28\x83\xda\x49\x90\x66\xfe\x63\xbe\xde\x17\x15\x22\xcd\xd1\x9d\xb3\x86\x28\xbd\xef\xae\x59\x57\xc6\x5f\xb1\xfa\xa0\xdc\xe5\x1e\x0a\xc1\x9f\xbb\xdc\x57\xf8\xc6\x7b\xe3\xb5\xf7\x15\x40\x07\x85\xb4\x71\xf6\x0b\xb7\xcc\x19\x96\x24\xf5\x06\xe3\xb3\x65\xca\x15\x65\x0e\x46\xaa\x57\x68\xda\xcb\x7b\xb6\x43\x69\x7c\xb4\x90\xcd\x1d\x6a\xdf\x1d\x3b\x22\x33\xe0\x0d\xed\x20\xa1\x66\x44\x7f\x5d\x9e\x7d\xe4\xa9\x53\xa6\x2b\x5a\x49\x79\xd6\xa9\xc5\x61\xda\x48\xb3\xa9\x5f\xae\x55\x15\xda\xfc\xb8\x0e\xe5\x10\xd8\xb9\xaf\x76\x2a\x4d\xc1\x00\xa7\xc2\x75\x9f\x7d\x5c\x35\x29\xc3\x2e\x32\x38\x1d\xbf\xdc\x97\xbf\xaf\xaa\xa6\xe7\x2c\xb3\x9c\xce\xa1\xec\x8f\xa8\x84\xc4\x4e\xec\x04\x2f\x1c\xa7\xe1\xac\x89\x51\xc7\x49\xd8\xbd\x67\xb5\xee\xe9\xee\x20\xd7\xf4\x45\xd4\xf6\xde\x1e\xad\xed\x31\xc4\x59\x7b\x69\x26\xf5\x91\xbd\xe7\xa9\x24\xc2\x1a\xe6\xbe\xe5\x45\xdb\x95\xc1\x2a\x55\x39\x95\x23\xc7\x3e\x4f\x51\x59\x63\x38\x01\x04\xe4\xb6\x3c\x92\x0e\xd3\xf9\x23\x42\x84\xb4\x9f\xd5\x21\xc2\x38\x01\x47\xe4\x7f\xf4\x88\x16\xe4\x3d\x5a\xc7\xe2\xf5\x9f\xb3\xf3\x62\x2d\x81\x77\x03\x1f\xbb\x13\x15\x89\xdb\xdc\xc0\xfb\x25\x3e\x10\x64\x2f\x73\x5f\x7e\x50\x00\x8b\xb1\x6f\x84\x7c\x12\xb1\xfa\x1c\x5d\x96\x34\xc0\x35\xca\xb8\x96\x51\x74\xd5\xf4\x36\x69\x2a\x70\xd2\x97\xfc\xbc\x68\xa1\xf0\xca\x08\x50\x0f\x20\x47\xf6\x1c\x19\x26\xc2\x8f\xc1\xa8\xd2\xbe\xe8\x2b\x4e\x59\x25\x95\x77\x42\x05\x3a\x5e\xf8\xfe\x56\x5d\x42\x9f\x3a\x49\xf4\xcc\x7f\x77\xa4\x6e\xc0\x35\x7b\xa6\xe0\x84\x5c\xb3\x55\x46\x51\x4f\xb4\xfa\x34\x6c\xcb\x4f\x4f\x74\x64\xaa\xd5\x4a\x05\xae\xe8\x97\x14\x7b\x26\x8b\xd4\x2c\xcc\x4a\x1e\x4a\x70\x4e\xe1\x59\xaa\x62\x1d\x33\x70\x35\x04\xf7\x94\x1d\x45\x25\x19\xa7\x2c\x08\x6b\x9c\xe9\x7f\x51\x2f\x8f\x27\xd7\xba\x26\x53\x61\x1e\xab\xe6\xcb\x23\x52\x47\xbd\xa8\x1e\x67\xdb\xf1\x23\x5d\xdf\x3d\x58\x54\x01\x18\x9b\x36\x5f\x87\xa9\x5e\x9a\x70\xb4\xf8\x6f\x3c\xef\x9d\x44\xc4\x92\x93\x3f\x4a\xe5\xe8\x86\xd5\x9d\x6d\x77\xd0\x9c\x52\x39\xba\xd8\x13\xc3\xc4\xd0\x8e\x6f\xb9\xae\x52\x39\xfa\xd8\x59\xfc\xb6\x5e\x16\x32\xc0\x5d\xf2\x9e\xe3\xd7\x34\x17\x47\x64\x07\x14\xf6\x0c\x6c\xc6\xfb\xb9\x29\x73\x69\x41\xe8\xf6\xa7\xb6\x9e\xbb\xf1\xed\x6c\x5e\x30\xb5\x6b\xf6\x0c\x5e\x34\xde\x79\x5c\xc7\x30\x11\x47\x7a\xc3\xfd\xf7\x73\x8a\x51\x23\x62\xdd\x94\x91\x44\x72\xac\x70\xf3\xd2\x4b\x32\xd7\x13\x11\x7d\xcc\x6c\xee\xb9\x72\x90\x8c\xe3\xdc\xe1\xbf\x1c\x4d\xd9\xae\x7d\xa7\x45\x89\x81\x13\xc5\xcd\xf5\x7b\x3f\x94\xbc\xcf\x2b\x4b\xe5\xe8\xb2\x93\xba\x6d\x41\x0f\xbf\x27\xa2\x95\x4b\xd3\xc8\xe8\xd2\x66\xa9\x1c\x7d\x70\xb9\x22\xea\x0d\xb6\x88\x50\x3e\xfd\x71\x7a\x3b\x01\x4d\xcc\x8e\xf1\x51\xad\xd0\xb1\x68\x28\xc7\xe2\x27\x3b\xe4\x31\x74\xe0\x06\x31\x5f\x94\xfe\xb8\x20\xda\x3d\xe0\x6d\x0d\x5e\x1e\x50\x86\xa5\x02\xf2\x5f\xee\x53\x35\xeb\xe2\xc0\x9e\x1a\x08\x14\x76\xe5\xb3\xf0\x65\x3b\xec\xb5\xea\xb4\x91\x91\x6f\x8c\x1e\x1d\x31\x44\x64\x8a\x2e\x6e\x39\xdc\xbe\x2a\xf7\xea\xb6\x36\x17\xa6\x80\xb8\x61\x32\xe4\xc8\x5d\xfe\xb6\x42\x2d\xf6\x18\x16\x6d\xeb\xcb\x8f\xeb\x17\xa7\xe7\x69\xe9\xfc\xbd\xdc\x89\x9a\xd7\x91\xb5\x0c\x9b\xf9\x8c\x66\x54\x1f\xbf\x2a\xdb\xc4\x4c\xc8\xb1\xad\x3e\x94\xdd\x61\xd3\x66\xcc\xe2\x68\xe3\xfc\xe1\xfb\x65\x29\x67\xd3\xf8\x1c\x45\x9f\x58\xaf\xc0\xa2\x90\x47\x02\x41\x9a\xeb\xcb\xdd\xaa\xb2\xf7\x69\x1b\x69\x38\x1a\xfe\xea\x79\xf2\xd1\xf8\x38\x17\x16\xa6\x72\x48\xa1\x80\x7a\x18\xc4\x2b\xa0\x78\xc8\xe1\xb3\xff\x86\xbd\x77\xe2\xd5\xbe\xf4\xb8\xd6\x6f\x23\xbe\x89\x1d\x8c\x5c\x9a\x8c\xbc\xa7\x0c\x98\xa0\xa5\x85\x01\x66\x84\x32\x10\x83\xd4\xfb\x85\x53\x26\x9f\xaf\x54\xa9\x98\xa8\xd6\x1d\x3f\x3a\xaa\x4e\xab\xdc\x38\x0d\x9b\xb0\x41\x47\x79\x33\x83\x06\xc4\x80\x7a\x2f\xf2\x07\xc9\x04\x85\x91\x6a\x15\x8a\xec\xa5\xd2\x09\x83\x20\x38\x32\x57\xbf\xa7\x18\xbc\x43\x51\x22\x42\xd7\xef\x8e\xc2\x5f\xc4\x1f\xdc\x95\x81\xfb\x2e\x92\xa3\x16\xe4\x82\x5b\x56\x5b\xc7\x67\x98\x06\xaa\x6b\x12\xd7\xc5\x2c\x1d\x4b\x7e\x68\x82\x2a\x64\xef\xc6\x09\x6b\x92\x2f\x4c\xb0\xe4\x75\x1b\x30\x1a\x56\x40\x8a\x20\x7a\x7a\x9c\x2e\x61\x49\x9b\xa9\x51\x4d\xae\xbc\xb6\xad\x7b\x59\x13\x66\x3d\x50\x1f\xee\x70\x47\xeb\x8b\xc0\xa8\x19\x1a\x12\x43\x91\xbf\x50\x73\x27\x83\x75\x72\x71\x00\xeb\x54\xee\xcb\x6f\xed\xe4\x37\xeb\xd4\xc9\x93\x13\xba\x69\xb9\x2f\x3f\xcb\x52\x19\xdc\x1c\x42\xfd\x82\x68\x16\x2d\xc1\xa1\xdd\x40\x7e\x50\x9a\x87\x59\x0d\x23\xd5\x6b\xf0\x8d\x17\xd3\x55\x98\x3e\x6d\x16\xc0\x0d\x34\xdb\x4b\xc3\x75\xfb\x91\x0b\x8d\x46\x0e\xd2\x08\xa6\xe0\x6b\x43\x5c\x01\xf7\x88\xae\x7b\x3a\xa5\x63\x89\x6e\x4d\x9e\xce\xd1\x0f\x3c\x8b\xc3\xb9\x88\xf5\x7d\xf9\xf7\xd6\xc2\xa9\x00\x69\x98\x99\xca\x7e\x7b\xe3\xa8\xa6\x8d\xd2\x13\x30\xec\x10\x3f\x25\xf0\x38\x96\xec\x51\xb8\xb4\x42\x4d\xc8\x47\xfb\xf4\x3c\xdc\xf6\x2c\xe4\x86\x0e\x66\xd0\xb2\x8b\xff\x97\xbb\x84\x76\xfa\x72\xea\x42\xae\xba\x6e\x84\x6e\xfe\xce\x9c\x64\x2a\x92\xdb\xba\x57\x83\x8c\xe0\x1a\x86\x9a\x4b\xcc\xf9\x0f\x8c\x55\xc6\xc7\x61\xc2\x41\x9b\xb9\x45\x27\x0a\x84\x01\x4e\x81\x06\x07\x17\x67\x7f\xa3\xc9\x90\x83\x02\x62\x80\x96\x3e\x6f\x93\x07\x9a\xe9\x7f\xe8\x79\x29\xa6\xbf\xb0\x71\x7b\xba\x7c\xb8\x09\xfa\xc0\x27\xb5\x54\x06\x73\x71\x62\x58\x80\x57\x76\xa4\x09\x90\x1f\x5a\xca\x85\xb9\xf3\x36\xed\x56\xf4\x18\x64\x23\x42\x15\xcc\x3e\xaa\xf4\xdf\x54\xf9\xaf\xb7\xf5\x0c\xb7\x41\x03\x2c\xfa\x40\x85\xce\x7b\xf9\x3e\xbd\xd5\x25\x0a\xad\xea\xbf\xba\xf8\xbe\x40\xac\x16\x0a\xa8\xea\x89\xc5\x02\x35\x4f\xea\x16\xcd\x70\x3c\xbf\x3e\x4b\xde\x42\xdd\x04\xb9\x0a\x65\x3d\xff\x05\xc5\xa9\xc8\x40\x0c\x60\xc2\x2b\x16\x2a\x2e\xc9\x53\x26\xc3\x69\x51\x88\x9b\x0c\x07\xa0\x3b\xc6\x23\x49\x71\xb9\xd6\x55\xf3\x3d\x26\xbb\x6a\xaf\x2e\x48\x2c\x45\x5c\xdc\x04\x62\xe8\xac\x71\x5a\x31\xd2\xec\x57\x1e\x26\x37\xec\x9a\xec\xc7\x82\x67\x46\xb2\xe0\x83\x4e\x67\xa3\x38\xc8\x44\xc4\xb1\x27\xba\xa3\xaa\x6c\x9f\xca\x47\x6a\x2d\x58\xfd\x2b\xde\x55\x74\xaa\xdb\x0e\xe1\xbf\x9a\xb2\x10\xc3\x26\x11\x90\xda\xd5\x3d\xe7\x29\x4d\x01\xb7\x17\x46\xac\xe5\xbe\x9c\xcd\x59\xa1\xa5\x5b\x50\xab\x89\x51\x90\x31\x26\x28\x7e\xe6\x3e\x99\xa8\x76\x53\xe2\x06\x5c\x1d\xfd\x63\xa7\xb5\x77\x84\x1c\xcf\xc6\x5c\x82\xac\x70\xdb\x3e\xa5\xb1\x48\xdc\x00\x29\xb4\xd8\x42\x45\xcf\x57\x90\xd8\xb5\xd1\x8f\xe6\xea\x23\x06\xa3\x2e\x48\x01\xcb\xce\x52\xe8\x7b\x94\xab\x88\xf5\xf6\x2a\xbb\x2f\x34\x0c\x8c\x21\x99\x8c\x36\x05\x1a\x77\x09\xb9\x58\xe3\x1c\x7e\x85\xf7\x8b\x4a\xcb\xf8\xa6\x6d\xeb\xe7\xbf\xdf\xa3\x8f\x79\x00\xd1\x26\x21\xb5\xbf\x59\x34\x5c\xbb\xe5\x12\x69\xbf\xfc\x89\xc3\x92\x8e\x7d\x05\xe0\x89\x16\xe9\xee\x32\xcc\x6c\x22\x26\x80\x3e\xb9\xba\x26\x40\x88\x18\xaa\x22\x30\x5f\x91\xef\x6c\x74\x35\x3d\xce\x15\x0c\x5d\xa9\xca\x36\xc5\x7e\xd0\xf7\xb1\x20\x12\x1d\xdf\x27\xbd\x3c\x2b\xb4\x3f\xdf\xb1\xfc\xa0\xf7\x75\x1a\x29\x71\x83\xc4\x19\x28\xf9\xc2\x09\xcf\x71\x1d\xf6\xeb\x90\x8b\x4c\x5d\x3d\xba\x2f\x7f\xc5\x8b\x5a\xd3\x27\x74\x8d\x20\x44\xb6\x70\xb3\xdf\xca\xc6\xc8\x1f\x67\x36\x88\x4f\xdb\x0d\xb4\x0a\x97\xba\x2a\xdf\x87\x22\x06\x1e\xb4\x85\x1e\x8d\x86\x8f\x18\x38\xe2\x40\x84\xab\x8c\x97\x67\x16\xb3\x10\x1c\xf9\x78\x93\xfc\x43\x15\x45\xfe\x1a\x72\x83\x47\xd9\xdf\x62\x50\xf1\x0e\xd9\xb7\x37\xcb\xdc\xf5\xee\x10\x40\x56\x71\x9c\x07\x76\xc8\xf0\x21\xc3\x14\x42\x09\xc3\x42\xc5\xa8\x1c\xfd\x6a\xc2\x60\x05\x09\x04\x77\x5d\x71\x80\xf4\x0f\x41\x8a\x90\xe5\xad\xeb\x34\x0e\x22\xc3\xb8\xae\x88\x4a\x16\x6e\xd7\x65\xb2\xb0\x9f\xe2\x44\x4b\xef\x0e\x56\x38\x30\xc0\xc9\x2c\x7e\x5e\xcb\x50\x03\x8b\xd1\xb0\x66\x25\x09\xc4\xe7\xb7\x29\xf2\x48\x18\x03\x72\x33\xfa\x4f\xa9\x22\xdc\x8b\x75\xa1\xcf\xbe\xc2\x26\x6d\x9b\x63\xa1\x55\x66\x73\xe9\xc5\xe8\xfb\x07\x34\xea\x06\x58\xa4\xf3\xca\xaa\x31\xae\xcd\x77\x1f\x64\x94\x79\x4c\x7c\xd5\xd4\x35\x8a\x1c\x9c\xd2\x0f\x93\x53\xb8\x55\x69\xf5\xc1\xbb\x87\x07\xf9\x8e\xa0\x94\x61\x06\x4c\xd6\x78\x3d\xe6\xd8\x43\x95\x16\x6c\x4a\xfb\x59\xaa\x90\x0c\x18\x71\x0d\x0b\xc3\xe0\xb6\xf0\x35\xc5\x75\xde\xa4\x4d\xd7\xb3\xd3\x12\xfa\xc9\x1d\x43\x15\x52\x4d\x9d\x77\xd8\x0a\x3f\x5c\x31\x54\xdc\xe9\xc4\x85\x04\x1a\x0a\x8a\x17\xa7\x6b\xec\x98\x1e\x31\x7a\x81\xe7\x7f\xe5\x1c\x85\xa6\x64\x21\xdb\xc6\x6e\x4d\x85\xb3\x7f\x60\x8c\xd2\xa5\x61\xc4\x45\x35\xb8\xb5\xf2\x57\x0f\x97\xda\x87\x76\x5c\x3b\x3f\x2a\xec\x2f\x7d\x5a\x0d\xc0\x16\xa4\xf0\x89\xa3\x0a\xcc\xc2\xc6\x0d\x91\xeb\xe7\xbf\x3c\x46\x93\x21\xbd\xcc\xa4\x4d\x33\x03\xa0\x1c\xac\x49\x8c\x07\xa8\x9e\x12\x8f\xf2\x0f\xde\xa6\x6c\x11\xb0\x3d\x2a\x95\xa3\xb7\xf7\xaa\x72\x3e\x90\x53\x02\xcb\x7e\xfb\x47\x7c\x0b\x79\x38\xb5\xda\x98\x5b\x8d\xcf\x38\xa1\xee\x18\xf8\xf3\x31\x28\x18\x33\xb9\x67\x56\xc5\xc4\x93\xcd\xe9\x57\x4f\x9c\x57\x2a\x47\x33\xd6\x5c\xac\x47\x7d\x6c\x53\x8f\xfb\xde\x8a\x7b\xb3\x73\x43\x76\x5f\xd4\xa9\x6f\x11\x3f\x5b\x14\x7e\xea\x35\x31\x8b\x24\x81\x8b\x7d\x90\x65\x88\xce\x7e\x3a\xdb\x9e\x44\x96\x83\x5c\x9f\xba\xed\xcc\xb4\xfc\x3f\xae\xed\x90\xd7\xb6\x37\x2e\x39\x6e\x87\x37\xf1\xaa\x71\x1e\x23\x01\xf1\xad\x64\x9a\x7a\x59\x45\xf1\x7b\x22\x34\xc0\x86\x05\xf2\x47\xd0\x14\xbd\xe5\xa5\xf3\xc4\x9e\xc3\xb8\x54\x45\xb6\xd0\xf0\x79\xa9\x28\xf7\x57\x8b\x86\xaa\x96\x1e\x7e\x5c\x4b\x65\x2d\xec\xc4\x59\x5b\xf2\xfc\xcf\x9c\x9d\x1e\xc8\x80\xb5\x73\xcb\x06\x3e\x27\xf3\x94\xd9\x53\xa6\xc0\x50\x60\xae\x3e\x35\x03\xb7\x11\x64\x27\xc6\x0e\x7d\xc5\x5b\x77\xcb\x83\x60\x85\xa0\x17\xc0\xf1\xf2\xdf\x7b\x57\x9b\xac\x32\xca\x7d\x47\xd2\x0a\x7e\xd9\x0b\x42\xdb\x1a\x39\xf0\x9e\x6b\x9a\x8a\x26\xd4\x4e\xa2\x5f\x12\xcd\x5f\xdc\xce\x24\xe0\x36\x4c\x22\x4a\xcf\xea\x1d\xac\x70\x34\x02\x48\x2e\x56\xad\x53\x64\xb5\x1b\x98\x35\x2d\x6c\x03\xf6\xf2\xec\x8d\x7a\x02\xec\x9a\x69\x9a\x95\x8f\x14\x56\x53\x05\x43\xd9\x92\xb7\xcf\xca\x6e\xb0\x3a\x66\x82\x45\x20\xef\x94\x49\x7b\xd2\xeb\xd8\xce\x50\x6b\xfe\xfb\x55\x8e\xa7\x5d\x66\x58\x4d\xa4\x86\xba\xfd\x9a\xb4\x0c\xc7\x53\xa5\x9c\xf3\xc2\xa4\x6a\x62\xa5\x6b\x73\xaa\x78\xfc\x9e\xaa\xf9\x0e\x95\x9c\x67\x13\x9e\x76\xbf\x7c\xc5\x45\xda\x9d\x0e\x7c\x6e\x13\xc8\xe1\xe0\x28\xf0\x8b\xfd\xc2\x34\x0a\xdb\xb6\x2a\x0f\x3e\xa7\x93\xff\xf9\x75\x0c\x11\x55\x2f\xef\x33\x37\x29\xa0\x3f\x87\xc2\xfe\xbb\x6a\xb1\xd0\x77\x74\x03\x16\x9a\x42\xd4\xba\x7b\xe1\x10\x91\xd8\x55\xd2\xee\x40\xf1\xc1\xb3\x25\x95\xf1\xb2\x76\xd1\xc3\x87\x3a\x95\x22\xd7\xe6\xf6\x61\x3c\x9e\x7e\xe4\x31\x55\x5c\xcd\x4d\x4d\x3c\xaa\x2f\x64\xbb\x3a\x9c\xcc\xc7\x87\xf2\xb2\x35\xfe\x75\x4f\x71\x6f\x33\x0c\x4e\x36\x5c\xf4\x42\x5a\x64\x18\x4c\x19\x63\x1d\xdd\xde\x51\x21\xc8\x2f\x2d\x67\xa1\x64\x2b\xfe\xf5\xe4\x40\xf1\x88\x26\x40\x9d\x72\x9f\x12\x06\x96\x26\xf1\x45\xe0\x2f\xf7\x15\xaf\x9f\x2e\x3b\xde\x16\x09\x0c\xcb\xa0\x46\x5d\x15\x1b\xdc\xa0\xd6\x27\xb6\x74\x6b\xf9\xf1\xa3\x8a\x6a\x0b\x87\xe4\x25\x0b\x31\xfc\x2d\xde\xb2\xf4\x6c\xe4\xba\xa2\xcf\x30\xa6\x3a\xa4\x99\xce\x34\x08\xef\xba\xe6\x8f\xec\x94\x49\x42\x2d\x24\xd2\x26\x2e\xdf\x5c\xa3\xe3\x0b\x60\x44\x02\xd2\x5c\x7d\xb9\xcf\x76\x29\xae\x8f\x9c\xa9\x52\x2a\x47\xef\xbe\xcc\xbf\x02\x3b\x9e\x85\xb8\xef\x7c\x5f\xfe\x27\x1b\xb5\x2c\x93\x26\xcc\xc9\x7d\x3d\xd9\xa3\xe0\x20\xc3\xc6\x34\x13\x0b\x72\xe7\xed\xca\x16\xec\x33\x02\xab\xdf\xba\x64\x5c\x45\x8b\xf2\x08\x86\x98\xb0\x81\x46\xad\xd4\x5a\xfd\x56\x9c\xb8\xf2\x18\x3f\xef\xe9\x41\x4a\xf7\x14\x42\x66\x79\x78\xf6\x07\xc7\xe5\xae\xe8\x45\xce\x3e\x2c\xf7\x84\x88\x32\xd1\xcc\x7d\x0a\x41\xd8\xe7\xc5\xc8\xdc\xfb\x55\x71\x1c\x07\xcc\x43\xa2\x6d\x6f\x5c\x20\xbb\x1e\x7a\xb1\xf3\xd1\x48\x21\x74\x31\x93\xfb\x37\x45\xa7\x1e\xeb\xd0\x9a\x46\x80\x98\xf8\xdd\xee\xf4\x44\x18\xb4\xcd\x56\x3a\x37\xfc\x6c\xd1\x5b\x74\x40\x79\x47\x54\x3b\x85\xf1\x2b\x34\x11\x5f\x85\x6e\x91\x14\xd1\x3f\x9f\x2c\xa3\x02\xa9\x66\xb4\x04\x07\xbc\x2a\x9f\x1d\x20\xbd\xf1\x2f\x39\x7d\xb4\xdd\xc6\x2c\x69\xa0\x8a\xab\x67\x97\x26\x25\x61\x93\x20\xb0\x93\x3a\x3a\x3f\x62\x1d\xdf\xa9\x89\xe4\x25\x40\xca\x75\x81\x25\x0b\xdb\x76\x52\x99\x7c\xac\xbd\x57\x18\xba\x86\x95\x6a\x61\xe6\xfe\xe5\x84\x56\x8a\xb8\x01\x29\xf9\xd8\x89\x23\xa6\x23\xda\x0e\x6b\xdf\x57\x8a\x48\x46\x3d\xd0\xda\x2e\xf7\xe5\x7f\x36\x42\x93\xf3\x41\x0e\xf7\xba\xe1\x24\xf9\x45\xbd\xca\x68\x90\xba\x2e\x81\x9c\xf6\x81\xd3\x72\x91\xc4\x5c\xb9\x54\x8e\xe6\x15\x65\x07\xb0\x07\x12\xb4\x7f\x3b\x75\xae\x58\xc8\x9a\x00\x9c\x7f\x4e\x81\xf8\x3b\xa8\x25\x44\x9d\x72\xf9\x77\x86\xaa\x99\x3b\x60\x0e\xa3\x19\xdb\x47\xaa\x9a\x1b\xa4\x6e\x21\xc5\x39\xad\xf0\xc5\x01\xf2\xdf\x34\x11\xb3\x28\x0c\x55\xac\x57\x35\x7a\x41\x98\x08\x92\xe7\xe8\x53\xe7\x2b\xd2\x44\xbe\x25\xaf\xad\xe8\x2f\x57\x6b\xd5\x4b\x18\xd0\x84\x67\xb7\xe8\xb1\xf3\xb5\x37\x14\xa0\xa4\xb2\xf9\x32\x64\x85\xd0\xc9\xbc\x7d\xfe\xf2\x38\xe1\x79\x57\x3e\x5f\xcd\x26\x0e\x47\x35\xe7\x5f\x9c\x95\x5e\xa2\xa8\x97\xa8\x24\x97\x1e\xf5\xfd\x22\x06\xd8\xea\x47\x76\x0f\x55\xce\x40\x95\x47\x8a\xfc\xcd\x07\x75\xd6\x9e\x5b\x6f\x17\xa5\xce\xef\x9f\x3b\x34\x29\x01\x83\x54\xfc\xa4\xf0\x79\x65\x1d\x03\x86\xb8\x10\x74\xee\x1f\xae\x4e\x67\x88\x2e\x12\x9e\xd1\xd1\x53\x9a\xc0\x53\x05\xdb\x04\x37\x04\x80\x28\xba\xca\xbc\x58\xdf\x8c\x8c\x65\xcd\x9d\xf2\xe5\x63\x83\x93\x2f\x6a\x60\x98\x47\x45\x9f\x78\x4c\x1d\xce\xfb\x46\xe8\xfb\x18\x4e\x76\xfe\x99\x71\xf2\x97\x4d\x9b\x26\xf8\x97\xc1\xf2\x2c\xc5\x20\x2e\x99\x70\x7f\x8d\xed\xc2\x94\x6e\x5d\x39\x1a\x33\x23\xd1\xc9\xa9\x9c\xad\x58\x2c\x98\xf8\xee\x10\x05\x18\x6e\x99\xc3\x0b\x34\x65\x38\x14\x18\x96\xb8\xf1\x2a\xef\xa7\x57\x8d\x65\xb4\xb5\xfa\x7b\x14\x1d\xfe\xa9\x93\xa5\xa1\x4d\xfe\x99\x87\xb2\xfd\x24\x8f\xb8\xb8\x5f\x01\xd0\x25\x33\x35\xcc\xa2\x43\x98\x1a\x00\x0a\xbf\xe9\x55\x8d\x17\x69\xd3\x2d\x85\x10\x81\xb6\x4b\x79\xb9\xd0\x05\x74\xe3\x97\x34\x29\xb8\x19\x93\xae\x9c\x3c\xa3\x6b\x0a\xd7\x05\x9b\xfa\x92\xe2\x5c\xcc\xcd\x8c\x9d\xa7\x14\x5b\xf4\xd0\x27\xae\x5f\x97\x22\x28\x11\x19\x7b\xbe\x92\x3c\x50\x56\x0a\x28\xff\x6f\xb9\xaf\x70\x6b\x20\x8d\x4c\xaf\x2c\x81\x0c\xc7\xa9\x84\x18\xc2\x92\xf0\x7c\xf6\x51\x9d\x84\x27\x80\xeb\x89\x59\x92\x63\x5e\xa0\xbd\x76\xc6\x48\x22\x00\x93\x5b\x7e\x32\xfd\x8e\xae\xd9\xc0\x72\xfa\xe4\xdb\x72\x6f\xcc\x10\xdc\xdc\xbe\xdc\xee\xa9\x4a\xe0\xf0\x3c\xa1\x00\x97\x7b\x75\x3f\xdf\xf8\x4b\x18\xf6\x81\x30\x01\xdb\xeb\x26\x53\x89\x5f\x9c\x51\xd0\x97\x7b\x35\x2f\x08\xbf\x33\x4b\x71\xfd\x59\x2a\x47\x77\x8a\x3c\xc5\x0b\x5d\xe2\x5b\xe2\x56\x9a\x70\x46\xc8\x49\x62\xb8\xce\x72\xff\xd0\xd0\xac\xc1\x7a\x02\x86\x3c\x6a\xa3\x94\xf3\x5f\xb8\x75\xb9\x92\x25\x30\x51\x06\xf5\x15\xf3\xa7\x94\x21\xbe\xf0\xf2\x2e\x95\xa3\x1b\x36\x8f\xd7\x36\x6f\xe8\x1a\xc4\xee\x8f\x10\x50\xdc\x9c\xc1\xdb\x63\xce\x17\xcc\xad\xdf\x39\x24\xd3\x60\x83\x3f\xec\xd5\x60\x55\x89\xfd\x6f\x32\x5b\x42\x8a\x43\xa7\x43\x4d\x9c\xdc\xc2\xdf\x7f\x83\x73\x3a\x84\xc0\xf9\x39\x5a\xd8\x09\x6b\x35\x0c\x1c\x01\xa1\x53\xd4\xd2\x67\x6f\x1c\x6b\x2a\xbc\x27\xf2\x56\x6f\x96\xf5\x3b\x75\x2a\x0c\x8f\xfa\x9e\x55\xa6\x42\xc8\x24\x69\x8e\x8a\x0e\x9d\xa7\x74\x76\x01\x8e\x14\x9f\xe1\x37\xb7\x65\x8f\x2a\x75\xed\x96\xa0\xa0\xe6\x46\x77\xeb\x20\xa6\x38\xd1\x4f\xab\xa4\xc6\xd2\xc4\x78\x38\x2e\x87\xe0\x1e\x7a\x45\x73\xd7\x17\x7e\x92\x7c\x26\x58\xda\x25\x27\xab\xb3\x67\x96\xca\xd1\x86\x1d\x90\x56\xd8\xd8\x2d\xcd\x4e\xcf\xc9\x5f\x5f\xd4\x51\x2c\x95\x4a\x32\xf2\x18\xa5\xf9\x6a\x61\x8f\xf8\x01\x85\x99\x08\x3f\x01\xab\xb7\x6a\x88\x63\x04\xcc\x13\xd1\xa4\xfe\xf0\x43\x89\x21\xbc\x9b\xa8\xb9\x7f\x41\x7a\xab\x07\xb8\x8d\x04\xfd\xb1\x37\x74\x85\x4b\x93\x20\x3e\x87\x26\x79\x0d\xd1\x81\x88\xcd\x45\x05\x25\x42\xad\xfb\xa6\x11\x8a\x10\x98\x5b\xc3\x8c\x6b\x65\xc7\x6f\xea\x93\x15\x79\x7d\x5c\x59\x02\xdd\xe5\x52\xc7\x45\x6d\xa9\x0f\x06\xa3\x1b\x61\x06\xf0\xfc\xd3\x23\x55\x9b\xcf\xc5\x8b\x97\x4d\x14\xf2\x43\x30\x2b\xc8\x09\x03\x90\x1b\x18\xed\x75\x13\xac\xed\xd2\xe3\x2a\x07\xd1\xb6\x91\xa1\x62\x1e\xac\x0e\xb5\xdd\x0f\x0e\xa3\x4c\x54\x11\xe4\x6a\x7e\x64\xeb\xc4\xa6\x35\x86\x80\x2b\xb4\x6c\xe7\xdf\x98\xb5\x89\x1d\xb1\x4e\xf1\x81\x6c\x10\x16\x84\xd4\xe7\x58\x92\xe5\x8b\x34\xed\x53\xcc\x6a\x98\x65\x45\xbb\x72\x8f\xed\x4e\x2f\x60\x1f\xd0\x6a\xbd\x8a\x52\x8e\x25\xc0\xc6\xc6\x54\x25\xd2\x81\xbe\x20\x71\x6b\x90\x0d\x7d\x77\x48\xbb\x65\x37\x75\x15\x1d\xf7\x4d\x1b\x85\x92\x26\x72\xd4\x24\x21\xbf\x2e\x90\x1a\x89\xe0\x91\x9f\xbc\x9d\x99\x0f\xca\x3c\xac\x17\x55\x50\x5c\x2c\x96\xfb\x8a\x97\xbe\x7d\xa1\x52\x3f\xb5\xa9\x3f\xe5\x5f\x17\xd2\x8a\x0d\x82\x9b\xa2\x0c\x7d\xe0\x9d\x4e\xb5\xa4\xac\xf9\x09\x86\xa3\xfc\xa8\x04\xd9\xf4\xaa\x8d\xb2\x27\x16\x29\x4d\x03\xc2\x6d\x9f\x8e\x2d\xe6\x1f\xbc\x38\x14\xa0\x8a\xbe\xe2\x30\x4d\xcd\x88\x56\xab\xc4\xc0\x42\x09\x37\x7f\xf3\xe1\xec\x8d\xea\x50\xca\xc0\xd2\x53\xee\x80\x15\xdb\x35\xdd\x1c\x91\xbc\x26\x29\xd8\xcf\x3a\x15\xbe\x0a\x6e\x10\x9e\xda\xe4\x37\x69\x88\x66\x2e\x9d\x05\x29\xcc\xfa\x93\x0a\xc8\x92\x38\x04\x66\x1f\x0f\xec\xcb\x66\x57\x26\xae\x62\xd7\xc7\xdc\xae\x4b\x96\x04\x5f\xdd\xaa\x71\x3f\xe1\x46\x94\xc9\x7f\x74\xf7\x2b\xda\x94\x12\xe6\x93\xc8\xe5\x0f\x05\xbd\xab\x0b\xef\x6d\x53\xd0\xa4\x4c\x1a\x7c\x3d\x7e\xff\x87\x92\x34\x09\x44\x61\xbe\xf3\x54\xf6\x1e\xbd\x8a\x53\x1b\x0a\x47\x1e\x93\xaa\x66\xc8\x0e\x1d\x50\xab\xc9\xa6\x1a\x1b\x4f\xeb\x88\xaf\x84\xc5\xdc\x57\x78\x6a\x6b\x46\x3b\x5a\x2e\xec\xd5\x3b\x79\xc7\xe5\x16\xd4\x9b\x95\x56\xff\x5f\x9a\x13\xa4\x61\x11\x5c\x4d\xfa\xd8\x2f\xce\xd5\xef\x06\xd7\xb0\x43\x9f\x33\x31\x40\x72\xf2\x56\x61\x03\xdf\xc4\xa8\x9e\x50\x15\x7e\x73\x48\xd1\x1e\x02\x51\x72\xc8\x36\x1e\x5b\xab\xb5\x43\xc1\x61\x4f\x48\xdc\xde\x3a\x46\x6e\xd5\x29\x33\x64\x06\x56\x58\xf9\x88\x46\xe9\x46\xcc\x15\x53\x83\x97\xb9\x46\x6a\x69\x21\xb5\x5b\x55\x82\x6d\x25\x5b\x2d\xde\xb7\x45\xa3\xea\xdb\x34\xa1\xfd\x6f\x7f\x68\xb4\x76\x62\x51\x0d\x65\x41\x71\x5f\xd9\x3f\x5c\x0a\xee\x06\x2a\xc5\xb1\xb2\x3e\x8b\xcf\x30\x90\x53\xe1\x12\x40\xa0\x4a\x90\x65\x90\x76\x55\x15\x2e\x4c\x22\x68\x19\x47\xcb\xf5\xfc\xca\xb4\x42\x07\xb9\x09\xf8\x3a\x6f\x3c\x2d\x9a\x62\xf5\x96\xad\x7a\x82\xe4\x3a\xf6\x2b\x26\x42\x60\x3c\x43\x6c\xd1\x94\xf8\xcb\x5e\xe1\xe8\x03\x92\x59\xfc\x83\x8a\x53\xcf\xc9\xf6\x85\x10\x27\x8e\xbb\x19\xee\x79\xfe\x47\x7b\x14\xcf\x7a\xe4\xa8\x7c\x83\xe2\x86\x0e\x5e\xe2\x75\x53\xa3\x8e\xa1\xe8\xfe\x8e\x22\xaa\x33\x6d\x06\xdc\x7c\xff\xa5\xb1\x31\x93\x19\x08\x30\xac\xba\x46\x67\x84\x79\xa0\x94\xfc\x69\xa5\x0d\xc6\x98\x82\x6d\xff\xb8\x22\xbb\x5e\x4d\x24\xda\xd4\xd1\xd5\x8b\x15\x7d\x61\xb0\x6e\x80\xce\xbf\x18\x4b\x37\x57\x0e\x4e\x82\xab\x29\xd4\xbc\xf3\x27\x35\x15\x80\xc0\xc2\x82\x32\x5b\xd8\xd0\xc9\x1f\x6c\xe9\x2d\xd3\xba\xae\x84\xbc\xf3\x37\xd5\xf6\xff\x59\x78\xa7\xfc\xe9\x7e\xd9\x54\xea\xc5\x04\xc4\x8a\x79\xe5\xb7\xba\x57\xfb\x47\xc8\xae\x0b\xcc\xe5\xe1\xe5\xca\xb4\xb7\x27\xc0\x5c\xfe\xfa\x83\xef\xb5\x59\x73\x72\x7e\x82\xb8\x1f\x0a\x87\xb6\x4b\x80\x19\x86\x1b\xa3\x73\x88\x62\xd6\x6c\x80\x28\x17\x7c\xd4\xa7\x2b\x72\x37\x38\x40\x8f\x73\x29\xe3\x5e\x88\x5b\xe7\xc8\xae\x47\x9d\x98\xa0\x49\x2c\xc2\xd4\xae\x51\xca\x80\xcf\x0d\x2c\xc0\x52\x44\xbf\xef\xd1\xaa\x42\x46\xdd\x1e\x49\xf5\x59\xf8\x10\xdf\xa7\x82\x93\x6a\x71\x31\xa5\xa1\x8b\x75\xbf\x2b\x6c\xfa\xfc\xe9\x8b\x1f\x5c\xac\x34\xf9\x02\x6a\xd4\x2d\x6a\x3b\xa5\x72\xf4\x97\x51\xf2\x3e\xaf\x31\xd4\xe0\x40\xe7\xdc\x51\x8d\x2c\x2e\xef\x55\x9e\x79\xad\xdd\x95\x4d\xa5\xa5\x8f\x57\x5b\xf8\x7b\x69\x93\x86\x4a\xa7\x0d\xcc\x84\x88\xdc\x01\x91\xf2\x57\x81\xf1\x13\xe5\x6e\xbb\x48\xcb\x27\x5c\xda\x10\xe6\xcb\xbc\xaf\xd2\x75\x44\x9a\x90\xe3\xb4\xa8\x7d\xf7\x1d\xd9\xce\xb6\x25\x1f\xfa\xaf\xaf\xa5\x97\x45\x2d\xb4\x55\x20\x5b\xee\xe5\x63\x5a\x26\xc7\xdd\x6a\xe2\xc3\x70\x66\x77\x9b\xd3\x3f\x88\x52\x89\xd6\xf4\xb8\x1d\xd9\xc7\xb1\xc1\x5b\x5a\xb0\x03\x9c\xb7\xb4\x9e\x66\x58\x69\x82\x00\x07\x54\x2b\x5b\xc7\x64\x1f\x0f\x37\x30\x6b\xf1\x79\xa0\x30\xb4\xf9\xe3\xe6\x6c\xf0\x21\x00\x15\x88\x56\x1e\x52\xf0\xae\xd4\xc1\x4a\x63\xb8\xaf\xf0\xdd\xdd\x52\xaf\xc1\x8d\x03\xee\x1f\x35\x6c\x51\x62\xc9\x9e\xcc\xde\x73\x43\x0e\x2a\x83\xdb\xb0\xe2\xc4\x9b\x18\x70\x68\xf7\xc9\x5a\xdc\xb0\xda\x06\xa1\xc5\x4b\x35\x72\x63\xe8\x27\xe1\x2d\x7f\xe7\x76\x79\x67\x59\xc8\xad\xab\xce\x9c\x7f\xff\xac\x3c\x78\xa1\x6b\x86\x1c\x1a\x71\xf0\xd4\x90\xa4\x97\xb3\x78\xb1\x10\x69\x63\xc7\x35\xb7\x02\x9f\x24\xda\x52\xe9\xd2\x15\xbe\xf2\xce\x30\xb5\x70\x41\x01\x69\xf0\x2e\xc3\x77\x5f\xce\xbe\xde\xa0\x49\x6a\xb5\x4c\xa9\xff\xa5\x21\xda\x68\x24\x34\x2c\x07\x65\x66\xfa\xb9\xa7\x37\xc8\xa2\xdd\xa0\x00\x6a\xf5\x08\x43\x01\x58\xb3\x44\x95\x63\x82\xd9\x4f\xc5\xc8\xad\x59\xe5\xa1\x6e\xde\x4d\x6d\x7c\xc7\xfc\x57\x4c\x15\x32\xef\xc5\xb9\x76\x02\x99\xff\xed\x46\xdd\xf8\x83\x51\x33\xce\x16\x78\xd3\x78\xd1\x3e\x85\x0c\x1f\x27\xa1\x3c\x79\x9f\x32\x76\x84\xd2\xd6\xf1\x6c\xea\xa0\x20\xb9\x13\x0a\xe7\x71\x53\xb1\xd2\xb2\x00\x99\x24\x74\x32\xda\x52\xb7\xe7\xf5\xe9\x8d\x8f\x99\xc4\xd5\xe4\xaf\xbe\x57\xcb\x5c\xee\x0e\x11\x13\xdc\x93\xe9\x03\xf8\x23\x37\x13\xc7\xb5\x05\xbb\x3b\x94\x7c\x17\x7c\x84\x81\xae\x7d\x72\x44\xb2\xa0\xb7\xe9\x6d\x9c\xcb\xb5\x83\x1d\x57\x29\x02\x4e\x90\x00\x86\xf6\x09\x21\x02\x6c\x84\xdc\xe4\x38\xf7\xd7\x03\xa3\x94\x2b\x0b\xb9\x55\x0a\x2a\xb5\x92\x5a\xfd\xbb\x40\xd1\xf4\x43\x46\x9c\xbe\xe5\xe7\x29\x1d\x4f\x86\x6d\x31\xd1\xce\x5d\x32\x4f\x76\xe1\x67\x82\xa5\x4e\x7e\xe4\x00\xb9\x2d\x67\xce\x4e\xba\x1d\x8f\xcf\xd3\x01\x11\xdd\x58\xf1\x57\xca\x7f\xf0\x6c\x8d\x2d\xc6\xb0\x87\x00\xf8\x04\xc9\xee\xb3\xf7\xc9\xa6\x2c\x78\x9f\x7d\xe1\x36\x95\xa3\xca\xaa\x94\x39\xc8\x35\x30\x5c\x5b\xd3\x0f\xca\xbf\xab\x63\x5b\x55\xc8\x2d\x76\x07\x9a\xde\x95\xd9\x20\x7e\x2a\x2b\x5c\x18\xa0\x89\xe6\x54\x09\x66\x06\x4e\x7b\xd4\xc5\x87\x9e\xd7\x15\x6e\xdc\x5a\x5c\x16\xa7\x22\xf7\x85\xf3\xa6\xf2\xf8\x8c\xe3\x88\x8d\x79\xf4\x5c\x77\x42\x15\x15\x75\x03\x06\x06\x91\x29\x60\xf4\x73\x5a\xf3\x0f\xbb\x90\x56\x88\xe2\xe2\x8e\x05\xba\x15\x49\x8d\xfa\x42\x12\x2a\x2e\xb7\xa2\xb3\xf9\xb0\xca\x26\x0d\x38\x39\xb7\x7b\x89\x19\x0d\x42\x2a\xe9\x6b\x4f\x47\x16\x44\x5c\x43\xc2\x3e\x31\xf7\xc5\x17\xfa\xf3\xf2\x69\x17\x2b\xeb\x2b\x4e\x7d\x45\x23\xf1\x22\x89\x59\xed\xe2\x8e\xaa\xf2\x9a\xe0\x4c\xa7\x37\xde\x56\xe2\xb0\xc1\xa8\xdb\x02\xf5\x99\xae\xfc\x25\x32\x6b\xb8\x3b\x24\x30\xa8\x6f\x3b\xe9\x47\xdf\x4d\x03\x10\xb2\x42\xd9\xe3\xfb\x9f\xc9\x7a\x46\x0b\xb2\xb8\xa4\x62\xa7\x2d\xac\x6b\x2a\x6d\x99\xbc\x10\xc2\x4f\x2a\x94\x5f\xbd\x2e\xf3\x0a\x8f\xd1\xf8\x84\x08\x6a\xdd\x1d\x5a\x79\x84\xec\xb8\xfe\x86\xae\xab\xc8\xde\x1e\xda\x39\x34\x7d\x07\x5c\xb2\x71\xd9\x92\xbe\xc2\x99\x57\x06\xa6\xfe\x52\xc0\x2c\x19\x62\xea\x62\xac\x01\xc3\x0a\x84\xfd\x27\xbb\x38\x2b\x64\x1e\x8a\xcb\x7b\xb5\x26\xfe\xe8\xfd\x32\x19\xf2\x18\x6d\xd0\x3a\x27\x2c\xfe\x71\xdb\x25\xae\x0a\x7a\x07\x2d\xbd\xb6\x75\x1a\xdf\x93\x5d\x6b\x16\x0a\x8e\x6b\xe1\x65\xa5\x53\xcf\xc2\xd2\xf4\x59\x33\xe3\xd5\xf8\xc3\xb8\xcb\xf4\x53\x81\xdc\x00\x01\xda\xa4\x0d\x48\xb8\x20\x1b\x4c\x1c\x64\xbb\xa4\x4e\x7d\x95\x87\xf6\xe0\xc3\x6d\x4a\x92\x93\x85\x8a\x4b\xf4\xfe\xce\xf4\x28\x5b\xbc\x8f\xb9\xfd\x80\x82\x0c\xb1\x18\xe1\xc6\xc2\xf5\x1e\xc5\x37\x0f\xb1\x4a\xc8\x74\x1a\x4b\x5f\x6e\xb7\xd6\x22\x84\xc8\x4f\x5d\x2c\x40\xc9\xb9\xa1\x4b\xf4\x3e\x95\x2f\x25\x66\x73\x8b\x06\xe9\x19\x49\x85\xc8\x2e\x4b\xee\xc7\x5b\xb2\xce\x4c\xe6\x65\xc4\xc6\x25\x13\x97\xaa\x0c\x18\x84\xfd\x90\xd3\xfe\xa9\x4b\x67\x7e\x33\x44\x92\x24\xab\x70\xd7\x7c\x7e\x32\xa7\x4c\x09\xac\x24\xbf\x89\xdf\xfe\xf1\x0d\xd2\xb3\x18\x43\xf3\xfe\xee\x53\x42\x6c\xd3\xb0\xa8\x8d\xf8\xe0\xe4\x0b\x9b\x74\x5f\x1b\xd7\xb0\x2c\xd4\xca\x4c\x5d\x27\x6b\xb6\xbf\xe0\x12\x9f\x3c\xd0\x86\xb3\x34\xec\x1d\x65\x1e\xe5\x7c\x52\xb9\x25\x8d\x4e\x95\x95\x42\x5c\x1b\xb9\xc9\x58\xfe\x0f\xda\xb1\xa8\xd2\x9e\xec\xc8\xa4\x30\xfb\x41\xfd\xfa\x6c\xe0\x52\x0b\xa3\xc4\x64\x65\xe6\xac\x4b\xb3\x9d\xb5\x25\x13\x65\x0a\xa2\x64\x23\xd1\xb8\xed\x43\x93\x2a\xdb\x0e\x2c\x21\xee\x9d\x7b\xa2\x47\x31\x0a\x23\x36\xf5\x71\x83\xeb\xfd\xbf\xf0\xea\x65\x5a\x5a\x1f\xb6\x40\xc3\xb6\x1f\xf7\xac\xbb\xdf\x3b\x5f\xfd\x0d\x13\xcb\xf2\x5a\xf9\x43\x57\x42\x18\x0a\x2a\x08\x08\xce\x7d\x85\xf0\x39\x3d\x30\x81\x27\x32\x65\xdc\xac\x29\x7f\x6c\xb3\x26\x40\x88\xaa\x71\xf4\xcd\xbc\x97\xe2\xc4\x6d\xb2\x57\x93\x74\xfa\xf3\xe3\x35\x14\xa7\x8f\x04\xa6\x26\x1a\xa1\xe1\xaf\x2d\x6c\x13\x83\x7a\x81\xc2\x10\x18\x72\x22\x11\xed\x6f\x60\xe6\x0b\x4f\xa9\xfc\x6b\xa3\xa4\x02\x17\x6e\x63\x2a\x15\x2a\x07\x05\x29\xcd\xc2\x40\xb9\xc9\x5d\xef\xe9\x33\x59\x86\x3c\x0f\x9b\xa9\xea\xeb\xfd\xaf\xf3\x12\xfd\xda\x06\x69\xa8\xeb\xf3\xc2\x42\x85\x4a\x82\x0d\x86\x03\xc4\x5a\xa5\x1a\xe6\x0c\xa9\x72\x54\xdb\x2d\x33\xaa\x16\xb1\x1d\xa4\x68\x17\x17\x6e\x9f\x94\xde\xea\x46\x06\xed\x5b\x9d\xd3\x56\x22\xc4\x59\xa8\x40\xb2\x57\x57\x2a\xea\x66\xb0\xa1\xff\xcb\xd5\xeb\x1a\x9e\x07\x04\xbe\xb8\x00\x0a\x53\x37\xe8\x2e\xf4\x71\xf4\x35\x02\xbe\x78\x85\x4e\xcd\xa4\xbe\x12\xb6\x68\x18\xa4\x7e\x42\xdb\xcf\xd6\xfc\x84\x60\x02\x9e\x1e\x95\xcb\xab\xaa\x38\xa6\x1d\x08\xbd\xe2\x5c\xef\x5b\x09\xc9\x80\x09\xed\x86\x7c\xed\xad\x4e\x09\x98\x26\xca\x45\xa9\x19\x6c\xc5\x69\x9f\x20\x09\x47\x3f\x7a\x2d\xdb\xd5\xa8\x86\xae\x09\x52\xe5\x40\xe8\xf1\x85\xe1\xf2\xdc\xd3\x3a\xe8\xc7\xa5\x5c\x92\x28\x09\xfc\x03\xde\xd6\xdc\x93\x41\x22\x25\x35\xbd\xc8\xcd\x7e\x5e\x33\xec\xa6\xae\x2b\x95\xd3\xf0\x8b\x43\x94\x5e\x0c\x37\xcb\x2a\xec\x7a\x4b\x66\xe0\x28\x0c\x68\xc9\xc4\xc8\xe6\xd0\xbd\x0f\x9d\xa3\x20\xfa\x58\x88\x2d\xde\x0b\xfb\x48\x87\x4e\x4b\xc3\xc8\x4b\xc2\x69\xe1\x2f\xef\x9e\x27\xaa\x26\x0f\x02\x6d\xc8\xb8\x96\x75\x79\x94\x12\x05\x31\xab\x62\x03\xc6\x61\x85\x7f\x39\x7b\x98\x32\x34\x6f\x70\x86\x23\xfc\xdc\x5f\x3c\x3b\x44\x59\x13\xae\x0d\x9c\xff\xba\x38\xd7\xe5\x6a\x95\x18\xdc\x88\xb8\x38\x8c\x3b\xfe\xa6\x0b\x07\x99\xe3\x86\x47\xd2\xd8\xe4\x02\x05\x6d\x68\x77\xb6\xb2\xa9\x61\x16\xf4\x6a\x26\x18\xdf\xdb\x96\x98\xa5\xd8\xb8\xc2\x84\x5e\xd0\x91\xf1\xfc\x0f\xaf\xb3\x90\xe3\xa1\x1a\xa8\xa6\xe6\x3e\x7f\x5c\x91\x55\x00\x83\x3f\x1e\xd4\x8f\xea\x04\x0f\x86\xdd\x5e\x31\xef\x2f\x7c\x56\x43\xaa\xd5\x30\xf7\x32\xe4\x8b\xf7\x8f\x43\x2e\x52\x3e\xd2\xa5\x21\x68\x13\xab\x70\xa8\xcf\x6e\xd3\x74\x02\x6a\x38\x91\x84\x8d\x26\xce\x15\xef\x3d\x20\x8e\xd0\x2f\xe6\x23\xc2\xdb\x34\xd8\x9f\xe0\x75\x72\x2e\x30\xa4\x9d\xbf\x78\x49\x6b\x86\xa1\xba\x22\xfe\xfa\xd9\x81\x12\xfa\x15\xb4\xe9\x94\x16\xce\x1b\x93\x1e\x87\x9a\xc2\xac\xe8\xcb\xef\xb5\x2e\xd3\x0a\x7d\x8f\x61\xa7\x7f\xc3\xdb\xb1\x53\x87\xab\x29\x92\xa0\x2b\x41\x43\x70\xd1\x48\x0e\xa4\x59\x1a\x9a\x48\x59\xa9\x35\x5d\xa3\x95\x22\xa6\x41\x70\xb3\xad\x83\x79\xf9\xc2\xc1\x4a\x6e\xd5\xea\x2a\x95\xa3\x6f\xae\x53\xfa\x71\xc8\xb7\xb0\xda\x39\x2c\x5c\x5c\xfd\xb0\xf2\x99\x3e\xb5\x43\xfe\x2b\x74\x96\xe8\x57\x07\xe9\xa5\x62\x45\xf5\x43\x2b\xae\xee\xc8\xfe\x7d\x03\x19\x88\x8f\x3b\x39\x7c\xe6\xf9\xe3\x0a\x09\x2f\x08\x5b\x0d\xec\x23\xa8\x79\x0b\xff\xc7\xd2\xc9\x5b\x26\x00\x79\xb8\xdf\xe5\xb8\x52\x39\x32\x37\x8a\x89\xe8\x6c\x20\x9f\x7c\x42\x53\xe4\x46\x0d\xec\x86\x49\xcb\xa1\x78\xcf\x18\xfe\xee\x16\x10\x47\xb6\x7c\xa2\x6f\x6b\x9a\x36\x02\xfd\xc0\xb7\xd1\xf7\xe7\x0a\x7b\x64\x46\x3d\x0b\xba\xa7\x87\xf6\x2a\xe5\x22\xfc\x96\xb8\x34\xf9\xc9\x3c\x15\xbd\x83\xe2\xd3\x08\x33\xfe\x15\x93\xce\xd7\xd2\xc5\x69\xd3\x12\x78\xe9\xe7\x46\xa4\x8c\x55\x38\x58\x37\xde\xc6\x7f\x1e\x6d\x60\x56\x4d\x95\xf2\xf2\xc3\x3a\x78\x95\x7e\x73\xc8\x00\x89\x5d\x97\x77\x6c\x63\xac\x8e\x63\x73\x6b\x82\x2a\xf2\x8b\x77\x87\x4a\x2c\x02\x11\xdd\x92\x5b\xc7\xb7\x75\x6d\xab\x81\xd0\x00\xf9\xef\x2d\x02\xa1\xc5\xa0\x3e\x15\x9e\xcf\xb9\x71\x7b\xf5\x38\xca\xf5\xc0\x53\xba\x76\xe9\x90\x2c\xa9\x9b\x94\x6b\x91\xfd\x79\x87\x4e\xfa\x24\x9e\x97\x72\xf6\x0a\xbf\xa8\x2a\x98\x1a\x86\x82\x06\x2a\x95\xa3\xbf\xef\xc8\x52\x9d\x79\x8f\xbb\x1c\x8d\x9d\x33\x4a\xfb\xcd\xc8\xad\xdb\x38\x95\x01\x2c\xdc\x7a\x46\xa1\x0a\x53\x93\x67\x20\x17\x0e\x12\xac\xa7\xd0\x14\xaa\xf4\x85\x7f\x7b\x49\xed\x61\xb9\x26\x62\xa8\x81\x61\x4e\x6e\x9c\xe1\xc9\x43\x13\x06\x0f\xe5\xe8\xaf\xdb\x14\x9c\x78\xc8\xa8\x87\x81\x7e\x7a\xab\x46\x2c\x68\x20\x3b\xc4\xe2\xb2\xfa\xc1\x49\x55\xfa\x8c\x91\x2a\xec\xdf\x33\x2f\x49\xa5\x71\xdc\x10\xb9\xe6\xc9\x63\x9a\x14\x4b\x68\xf3\x7e\x1e\xac\xf6\xd8\xa5\x0a\x02\x04\x89\xb1\xb8\x84\x23\x9d\x3f\x4e\xb4\x56\x12\xe3\xea\xdc\x3f\x1d\xd0\x85\x05\x8d\x7a\xe8\x89\xe8\x73\xbf\xa2\x76\x53\xb5\x69\xc8\x88\x6f\xc5\xff\x68\xdf\x51\x4d\xba\x97\xe1\x66\x02\x7f\xdb\xfc\x5e\x7a\x83\xdd\x1d\xaa\xa2\x3c\xa5\x87\xd3\x2c\x05\xa0\x76\xd1\x40\x11\x68\xfc\x80\x61\xb8\x23\x61\x50\xfb\x7a\x36\xb6\x9b\xbd\x38\x88\x0b\x85\xac\x0d\xd7\x13\x4b\x64\xbe\x5b\xa3\x54\x08\x38\x96\xfb\x0a\x3f\x6f\x8c\x56\x56\x33\x04\xca\xac\x1b\x60\xdb\x26\x35\xcc\x8d\xc8\x8a\xc5\x7d\x8a\x50\xb5\x47\x7c\xca\xbd\xb5\x7e\xb2\x5c\x11\x8a\xb2\x91\xcf\xc5\xf3\x9f\xed\x54\x81\x6b\x94\x19\x16\x28\xa8\xad\xb9\xc8\xcd\x02\x07\xf5\x2b\xf8\xd7\x07\x64\xb4\xad\x86\x2e\x67\x46\xdd\xfa\x14\xdf\x28\xbe\x87\xf8\x3c\xf5\x0f\xeb\xdb\x98\x92\xd8\xf5\x13\xbf\xe0\x72\x5f\xe1\x5b\x9b\xd5\x9c\x01\x9b\xc4\x80\x74\x7f\xfe\x7a\xc5\xe5\x8e\xfa\x01\xad\x03\xf2\xb1\x0a\x56\x08\xd1\x15\xf7\xb7\xf9\x0a\xc4\xc1\x97\xdf\x48\xe5\xb7\xe5\x92\x12\xe8\x34\x72\x1c\xc2\x3a\xcd\x17\x01\x14\x2c\xf8\x3f\x59\x31\xe1\x02\x15\xa7\x87\x19\xd8\x0c\x72\x57\x8d\xe8\xd6\xdb\x54\xef\x80\x38\xad\x53\x96\xe9\xad\x51\x09\x8f\x9c\xda\xa4\x86\x78\x2a\x71\x45\xa7\xe6\x35\xe1\x27\x70\x8f\xe2\x53\x9c\xdd\x74\x03\xa6\xac\xd6\x36\xd6\x2e\x2c\x10\xd6\xa4\x86\x15\x57\x88\xa5\x72\x74\xe3\xbb\x9d\xb2\xa3\xbb\x4c\x5e\xc9\xcb\x7a\xb2\x22\x4d\x42\x7c\x3b\x77\x50\xc1\xc1\x1b\x36\x1c\xca\x07\x17\xa5\x79\x4d\x13\x9a\x44\xf5\x35\x52\x4b\xb9\xae\x3a\x67\xdf\x3b\x59\xee\x84\x2b\xa7\x8a\xee\x5d\xfe\xb5\x33\x63\xe4\x57\x05\x36\x72\xfb\x51\x78\xcb\x7d\xf8\xb8\x02\xa7\x44\x01\x97\xad\x89\xbe\xf5\x6c\x7f\x4e\x5b\x69\x1d\xb3\x45\xfa\xf0\x62\xa7\xd2\xb6\xc1\x46\x2e\x52\xba\x47\xb0\x07\xe3\xa5\xef\x98\xaa\x49\x79\x93\x2a\xe6\xae\xec\xc9\x75\xf7\xb9\x63\xba\x79\x3a\xed\xc6\x71\xda\xcf\x3b\x5e\x1f\x7f\xfb\x12\x2d\xa7\x8a\x97\x42\x3b\x7e\xf9\x15\x9b\xd5\x74\xa1\x46\x9c\x36\xca\x44\x71\xc9\x3b\x7c\xd0\x32\xbf\xeb\x3a\x8e\xd3\x7a\x5a\xe1\x1b\xb8\x5c\x16\x0e\x6a\x02\x43\x4b\xf4\x2b\xa1\x09\x7d\x69\x68\xca\xbc\xfb\x98\xd6\x36\x20\x8e\x07\x3d\x47\x38\x1d\xcb\x96\xc8\x5b\xb3\x3b\xb4\x49\x08\x3b\x79\xe4\x5e\x69\x60\x4c\x7b\xda\x5e\xdc\xfb\x4c\x36\xb7\x78\xdf\x0b\x25\x3e\x7e\x23\xce\xc8\xbc\x89\x06\x8a\xa6\x53\x5f\x71\xc2\x91\xfe\x2b\xfc\x74\xcf\x95\x4c\xb5\xee\x6b\xef\xd8\xe5\xbe\xbd\x77\x98\x9a\x94\xf9\x1e\x66\x94\xff\xe0\x6f\x9d\x95\x5e\xf3\x18\x28\xb3\x80\x22\xb8\x63\xa5\xfc\x31\x36\x32\x55\x33\xb3\x01\xf3\x78\x74\x9a\x36\x6b\x4a\xd2\x45\x3e\xa3\x21\xa5\x1a\x38\x61\x6d\x70\x85\xbc\xc9\x89\xd1\x1b\xe9\xed\xe5\xf0\x9a\xfb\xde\xd1\xdc\xd6\x38\x24\x8b\x0b\xd8\xad\x79\x5f\x4b\x8d\x2b\x34\x4c\x04\xbe\x27\xcf\xd3\x59\xc4\xd8\x4b\xfa\xc0\xd1\xc7\x47\xb5\xb9\x94\x90\x44\x04\x28\x9a\xaf\x61\x36\xc0\x28\x53\x44\xc0\xdf\xbe\x9a\x42\x55\x1d\xe4\x26\x50\x8a\x73\xae\xc9\xa2\x36\xa8\x4d\x1a\x98\x30\xa4\xf1\x46\x47\x3f\x36\x50\xb6\x3f\x4a\xe5\xe8\x7c\x8d\xe8\x1c\xb4\x0c\x2a\x1a\xb7\xe5\xbe\x42\xc7\xc3\xfa\x93\x7b\x18\x71\x87\xee\xbe\xa2\xa7\x4d\x9f\xa7\x74\x4d\x9d\x21\xea\x8d\x49\xd3\x15\xab\x93\x50\x18\xac\x7f\x69\x43\x92\xe1\x61\x14\xc4\xc7\x3a\x7a\xbd\x8d\x8d\xe3\x84\x2e\x09\x5a\x89\x7f\xc8\x39\x8b\xb5\xad\x04\x93\xcc\x12\x0b\x93\x1f\x98\xff\xe3\x8e\x7e\x7f\x3e\x6f\x81\x78\x9d\x6d\x33\x31\x9e\x4b\x45\x23\x96\x6a\xe2\x3b\x21\x63\x04\xf3\x0e\x7c\x72\x72\x6f\x59\x23\x8f\x4c\x0d\x3a\x24\xf1\xcb\x7f\x58\xb9\xe1\xc5\xec\x5e\x79\xbb\x8f\x1d\x53\xc6\x2f\x4d\x52\x15\x54\xe3\x27\x76\x68\x3a\x86\x50\x3d\x83\x8e\x3e\xcf\x21\xd1\x23\xc3\x32\x2a\x8b\x3e\x46\x3e\x87\x02\xee\x1f\xa7\x20\x74\x58\xc8\x7b\x58\x3f\x3c\xa1\x00\xf5\x7b\x71\x50\xc1\x35\x2a\xba\x58\x5d\xbd\x3c\x8e\x2c\xa7\xf5\x16\x4d\xf6\xc6\xe8\x47\x45\x8b\xf8\xc6\xa5\xb7\xdc\xb8\xf8\x86\x85\xd7\xde\x92\x94\xba\xcf\xb8\x5a\xef\xc0\x24\x01\x65\xdc\xfd\xbb\x30\xf4\x9a\x4e\x15\x56\xee\xd9\xc8\x85\x85\xec\x51\xa8\xf9\x5c\x68\x76\xbb\x36\x3d\x75\x29\x6b\xa2\x96\xc2\x15\xcd\x5f\xa0\x69\x4d\xb5\x30\x62\x7c\xfe\x1d\x5d\xa8\x89\xfc\xa5\x3c\x17\xfe\x72\x72\x3f\x7e\x24\xbb\xc6\x4d\x14\xaf\x46\x92\xc6\xfd\xe9\xd4\x18\xed\x5f\xb3\x1a\x26\x99\x5b\x38\x1a\xab\xe3\x14\x31\xf2\x03\x01\x3d\x08\xbb\xb2\xd7\x78\x85\xd1\xba\x45\xb2\x16\xaf\xd1\xbf\xac\x57\x64\x18\x88\x81\xf9\xb2\x3e\xac\xf8\xf0\x54\x41\x99\x15\xea\x96\xea\x61\xdd\xfc\x03\x19\x38\x4d\xa2\x4f\x0f\x50\xd5\xf4\x43\x16\x00\x01\x09\x4e\x5b\xaf\xa2\xef\x55\x67\xc8\x77\xa9\x09\x72\x3c\xd7\xe4\x15\xea\x78\x5c\x8d\x96\xfb\x0a\x6b\x66\xa6\xc5\x71\x03\x31\x1d\x0c\xf9\xd1\xfb\xf4\x14\xdf\x84\x76\xd0\xc8\x27\x75\x5e\x8f\x43\x5c\xc4\x44\x81\x31\xe1\xe1\x8c\x05\x79\x3d\x3e\x82\x2d\xd9\x67\xf3\x89\x22\x52\x50\xd8\xd9\xa9\xc8\x3f\x55\xab\x71\x60\x2c\x95\xa3\x03\xb3\xda\x97\x59\xf4\xec\xfb\xf6\x6a\x7d\x5d\x98\x88\x48\x3a\x73\xd0\xd5\x2e\x8b\xdd\x6e\x2a\x97\x7f\x60\xac\xf6\x76\x21\xd7\x0e\x78\x14\xcc\x5d\xab\x08\xf6\x1a\x14\xe4\x28\x39\x00\x64\xc0\x2b\x42\x66\xde\xb8\x8e\xda\x76\xa8\xb8\x6b\x14\x76\x2c\x94\x29\xa2\xc7\x68\xc5\xc6\x4e\xc9\xa7\xb6\x38\xf1\x85\xe0\x6a\xe5\x23\x01\xa5\xcd\x95\x8f\xf3\xef\x0b\x7a\x01\xee\x81\xa9\x4f\x83\x0f\x0e\xbf\x39\x5d\x91\xac\x9b\x3d\x75\x16\x9c\xa4\xf9\x77\xc9\x37\x3b\x7b\x66\xd7\x34\xa0\x66\xae\x91\x63\xcf\x3a\xe1\x28\xdd\x71\xb2\xb6\xc5\xae\x1f\x0a\x01\xc3\xfc\xef\x0f\xf2\x43\x2d\x7a\xa3\x7c\xf7\x8d\x5f\xa2\xc1\x40\x58\x2d\x74\xb0\x74\xea\x19\x7a\x3c\x0b\x03\x01\x27\x6e\xbf\x5f\xff\xd4\x5f\x4f\xc8\x42\x1b\xa6\x4c\xe1\x7d\xe9\x35\x8f\xa7\x05\x8a\x47\x24\x0c\x2a\x3a\xc2\x94\xd6\x19\x36\x5d\xec\x9b\x08\xda\x1c\x8f\x1f\x57\xb8\xa8\x36\xb0\xe1\x64\x13\xe9\xc4\x15\xa5\xec\x75\xec\x9a\x98\xf9\x41\x4a\x9a\x6c\x97\xf6\xbe\xe4\x60\xd2\xa0\xf6\x0d\x9b\xfa\x21\x2f\x05\xb0\xe2\x1f\x65\x93\x4a\xfc\x46\x60\xa1\xae\x1f\x9e\x3d\xc9\x2e\x0e\x90\xdb\x42\x56\x98\xf1\x8c\xcf\xad\x91\xd4\x17\xdc\x83\x6a\x35\x9c\xaa\x61\x8e\x19\xd3\xa1\xaa\x1e\x61\x07\x34\xc5\x72\xff\xf4\xa0\x52\x71\x86\x41\xe8\xc4\xff\xef\xf5\x2b\xe5\x88\x83\xd1\x26\x52\x41\x62\x57\xcd\x97\xc3\xf1\x00\xa3\x36\x5b\xc9\xfc\x15\xfb\x07\x8b\x5f\xcf\x7d\xaa\x60\x2a\x3c\x5c\xd7\x0d\x45\x89\xd3\x74\xb9\xaf\xf0\x98\x62\xeb\xd9\x8b\x58\x0b\xee\x80\x2f\x05\x8a\x22\x6b\x42\xe0\xe6\x7b\xf3\xf7\x3b\x74\x67\x16\x54\x23\x2e\x16\xaa\x27\x95\x37\xd3\x0c\xc2\x47\x89\x7e\x49\x61\x69\x87\xac\x4f\x7c\xc2\xa8\xda\x00\x2e\x8e\x5c\x90\x6d\x10\xc1\xfc\x8a\xf8\x06\x4d\x5c\xfc\xfa\xf2\x77\x6c\x97\x09\x3e\x08\xea\xc5\x89\x9b\x0f\x93\x45\x89\x9c\x9c\x35\x4e\xde\xa4\xc8\x23\x18\x0a\xcd\xdc\x81\x47\x2f\xd2\x32\x5b\x86\x51\x68\x30\x94\x64\xdb\x85\xeb\xb6\xf1\x21\xc2\x0d\xb4\xd7\x51\xc8\xaf\xd1\xfa\x40\xe1\xb5\x80\x99\x98\x28\xfe\xff\x5c\x11\x26\x85\x4d\x2e\x19\x94\x2b\xef\xcb\x6e\xf2\x69\xd3\xb9\x62\xef\x3b\x8a\x97\xbd\x8d\x5d\x97\xf6\x40\xce\xb7\x55\xf7\xc8\xf4\x7d\xcc\x4a\x95\x64\xbc\x72\xee\x1b\x09\xe1\xde\xc3\x6e\x80\x44\xc1\x7c\xeb\x16\x4d\x69\x34\xbe\xdf\x31\x13\x76\xe2\x85\x5b\x8a\x02\x52\xc5\x65\xd6\x46\x9b\x7a\xe0\xf3\x10\x4b\x0d\x2a\xfb\x72\x7f\xea\x19\xae\xce\x06\xa8\xc9\x49\xd3\x10\x70\xb5\x86\x6c\x35\x04\x0d\x4e\x1e\x30\xaf\xbb\x86\x2b\x7d\x2f\xa4\x41\xfb\x00\x27\x77\xfb\x28\xdd\xd6\xcf\xc4\x54\x6c\x8c\xea\x2a\x79\x38\x54\xc1\x9e\xf8\x53\x97\xbc\xa6\x0f\x4a\x02\x5c\xe3\xe0\x1b\xd1\x03\x19\x7e\xba\x53\xc2\xf1\x6c\x15\x57\x3a\x55\x52\x66\x66\x4c\x2e\x95\xa3\x83\xbb\xdb\x81\x8b\xa2\xb2\x1d\x79\x52\x3e\x74\x03\x07\x98\xa1\x94\xb9\x35\xa6\x4b\x51\xe6\x0d\xdd\x9a\x80\x99\xff\xdd\x52\xdd\x28\x0a\xd2\xf3\xc4\x4a\xe7\xeb\x27\x25\x54\x1d\x9a\x66\xf9\x73\x27\x09\xf8\x23\x89\xaf\xe8\xd9\x60\xfd\xf9\x52\xd7\x15\xda\xe5\xd1\xf4\xc1\x85\xc5\x07\x0c\x85\x3e\x05\xfb\xfa\xbc\x7e\x6b\xc3\x84\x49\xf9\x81\xf1\x17\x28\x25\x8e\x41\x5d\x53\x9d\xd5\xfe\xe3\x6e\xfe\xfd\x9f\xa0\xac\x2e\xfa\x85\xc5\xc9\x4a\xb2\x99\x92\xd2\x36\xcf\x19\xa5\x04\x64\xdf\x27\x36\x2e\x31\x2c\x9a\xd4\xc0\xde\x39\xa1\x2a\xfb\xaa\x96\x45\xb9\x75\x0a\xcb\x11\xa4\xa1\xb8\xe1\xf9\x53\x2b\x14\x36\xb6\x0d\x02\xc1\xd1\xff\x5a\xad\xe8\x85\x63\x03\x85\xbe\xd0\x10\x8c\x3e\xd3\xa9\x78\x58\x20\x46\x1d\xcc\xc5\x15\x72\x7f\x5e\xa9\x93\x47\x88\xe7\x27\x24\xcc\xd5\x6f\xb5\x21\x07\x78\xb2\x95\xfb\xd8\x19\xdd\x21\x51\x64\x7a\xd0\x80\x74\x27\x75\xca\x47\x75\x6b\x9c\x1e\x54\x2a\x47\xc5\xbb\x84\x97\x93\x8b\x2c\x4c\x9c\x24\xa5\xbc\x22\x50\x93\x32\xdf\x87\x2e\xc5\xa1\xde\x2c\x65\x38\xac\xf4\x2b\x97\x5f\xb0\x4f\x8c\xd4\x52\x72\x98\xea\x8b\x66\x74\xcf\x4b\xd9\xd3\x6f\x21\x66\x82\xe3\xa4\x10\xa2\x28\x7c\x62\xe4\x05\x7a\x11\x09\x07\x90\x03\xa6\x9e\x7b\x5b\x6a\xb9\x80\xb7\xe1\xc5\x0f\x6b\x63\x5a\x8c\x05\x1b\x35\x5f\xed\x4d\xb7\xa7\x85\x40\xe7\x6a\x3a\xbf\x24\x16\x71\xd4\x54\xe1\x95\xe7\xb9\xd2\xcf\x52\xec\x63\xd6\x68\x6b\x1f\xe4\x4e\xef\x3b\x57\xce\x41\x80\x80\xbc\x63\x3b\x2f\xb4\x6e\x11\x52\xc2\x7d\xb9\x8a\xe2\x75\xeb\x86\xf0\xbd\xaf\x2f\x1e\x98\x7a\x21\xce\x2a\x95\xa3\xb1\x8f\x2b\xed\x3b\x64\xb7\x00\x73\xfd\xfe\x01\xa5\x65\x85\x5c\x33\x83\x77\xfe\xcc\x8b\xe9\x71\x0f\x5a\x0a\xb0\x66\x7b\x63\x78\xd2\x6b\xba\xe9\xa6\xa5\x2a\x48\xe9\x93\xf7\xca\xdc\xa8\x12\x32\xe8\xc3\xfc\xd3\x26\x59\x50\xb5\xc9\xf4\xe4\x26\x3d\xd5\xa9\xe0\x79\x0d\x0c\x8b\x14\x97\x8e\xbb\x74\x02\x89\x2d\xb0\xa8\xa2\x27\xf4\xcf\x0a\x09\xdb\x87\x24\xa1\x54\x8e\x36\x69\x28\xc4\xb8\xec\x4b\xf9\x60\xdc\x68\x74\x93\x88\x1a\x0d\xcc\xe0\xac\xfe\xe0\xf4\x05\xa0\x16\x02\x32\x2c\x06\xf2\xd5\x94\x26\x42\x9e\x22\x61\xe4\xd0\xd0\x85\x1c\xf8\xd1\x17\x74\x6a\x9f\x48\x6e\xa0\xe2\xfa\x63\xe7\x60\xb5\x4d\x1a\x67\xc6\x87\x9e\x52\x6e\x8b\xa0\xe5\x10\xf5\x20\x17\x7e\xfa\xb0\xfe\xa8\x35\xf0\xd6\x35\x93\x0a\xa8\x3e\x4e\x6d\xbc\x72\xed\x97\xe8\x6b\xda\xbf\x0a\x88\x43\x13\x44\x01\x9c\x9e\xbd\x62\xb8\x98\x75\x1d\xd8\xcf\xff\x70\x29\xaa\x82\x33\x60\x7c\x07\xfc\x56\x71\x71\xae\x30\x9e\xad\x41\xf7\xfa\xde\xec\x29\xa7\x2e\xdf\xfe\xd1\xa8\x37\x47\xa8\xed\x1b\xae\x63\x2e\x3e\xec\x92\xaa\x16\x20\x09\xcf\xfe\x44\xc1\x3f\xea\x11\x41\x8c\x88\xdf\xbf\x48\x8c\x3e\xbf\x30\x1b\xaf\x88\x89\x85\xc7\x7e\x5f\xee\xba\x81\xda\x58\x9a\x56\xf8\x54\x1a\x96\x33\x3a\xae\x18\x67\x9b\xc8\x00\x50\x7e\xfe\x1a\x51\x09\xf8\xd8\xae\x96\x6a\xb4\x81\x99\x2b\x90\x9f\xc5\x87\x94\xbc\xd6\xc2\xb6\x97\x8a\x49\x0c\xad\x28\x3a\xfc\xae\x81\x5d\x93\x20\xa0\xab\x17\xd7\xdd\x26\x4f\x1f\x89\xf7\x18\xd9\x36\x56\x4b\xcb\x7d\x6e\x23\x98\xe9\xc3\x14\xfe\xb8\x2a\x85\x79\xcd\x2a\xc5\x3f\xeb\xbf\x1e\x96\xaf\x19\x18\x3a\x5c\xa9\x65\xf0\x5b\xe7\x2b\xdf\x6c\x52\x17\xfb\x04\x09\x87\xc4\xd7\x8f\x28\xa4\x7c\x56\xe1\x52\x93\x9f\xd8\xfb\x37\x2c\x43\x7a\xdb\x2d\x43\x34\xa4\x8d\x1f\xfa\x9e\x68\xaa\x03\xb2\xe1\xa6\xed\xc3\xb4\x12\x2f\x29\x72\x2e\x7b\x51\x47\x62\xfa\xd4\x05\x33\x1b\x3e\xff\xbb\x64\x63\x6a\xa2\xe1\x1a\x19\xab\xb2\xc2\xa5\x1a\x3a\x92\x1b\x7a\x55\x5b\x89\xb6\xde\xaf\x76\x75\x2a\x59\x24\x17\x0a\x85\xa9\xd2\x57\x94\xce\x0b\x60\x82\xa0\x7e\x28\x79\x30\x30\x28\xec\x0d\x3a\xdb\x4b\x92\x52\x39\xea\x38\xa9\x10\x3c\x0d\x93\xba\x08\x42\xca\xab\xbb\xb3\x0d\x20\x46\x0c\x2b\xc0\x19\xf2\x71\xee\x6b\xe7\x68\x70\x03\xe4\x78\x88\xd4\x5c\xde\xf7\x9b\x7d\xb0\x2d\x03\x88\x33\xa9\xe4\xfe\xf9\x13\xf7\x53\x29\xcd\x43\x36\x1c\xbd\x0c\x7f\x28\x7f\xf8\x1a\x05\xda\x82\xe3\x2d\x6b\x82\x75\x0e\x74\x6b\x3e\xb8\x44\x27\x17\x21\xd7\xc5\x36\x2f\x70\x91\xa6\xec\xd7\xc4\xc8\x13\xe6\x13\xd1\x71\x4d\xc0\x20\x74\x6d\x52\xc7\xb6\x20\x5c\x16\x36\x0b\x5d\x90\x65\x21\x6b\x08\xb7\xcc\xe2\x39\xef\x68\x61\x10\x11\x5b\x36\x43\xf3\xa3\x97\x9e\xab\x1c\x20\x10\xd8\xdd\x97\xc5\x79\xfa\xd4\x20\xc8\xee\x87\xc7\x53\xf8\xd2\xfb\x83\xc4\x59\x66\x76\xfc\xdf\x72\xf4\x8f\x57\xa7\x67\x65\xe6\x34\xa8\x8b\x5f\x9a\x3f\x5c\xb9\xba\xc2\x78\x2b\x94\x84\x6a\xf3\x83\x67\x65\xab\x39\xbf\x89\xdd\xa4\x20\x92\xa5\xd6\xfc\x25\x3a\xf1\x36\xde\xc2\xa9\x26\xe1\xcd\x8a\x40\xb0\x0f\xb1\xf1\xd4\x0a\xe5\xcd\x87\x26\x71\x95\xf9\xb4\x35\x5a\xb1\x2b\x0b\xc2\x6a\x95\xcf\xfd\x82\x11\x1a\x33\xa8\x41\x90\x4b\x79\x6f\x42\x02\x9e\x7f\xb9\x5b\xf7\x40\x67\x86\x18\xdf\xf2\xbb\xed\x7a\x85\xcb\x6e\xa1\xc0\xb2\xa1\xab\x1f\x7d\xea\x78\x7b\x5a\xed\xfa\xa4\x4a\xd2\x04\x76\xc7\x1e\x09\x62\x44\x16\xa3\x2e\xd5\x5b\xe6\xd1\x7b\xa3\xf5\xbe\x0e\xa8\x02\x0a\x31\xef\x19\xf2\x8e\x9a\x72\xe5\xb4\xf8\x23\x7f\xac\x64\xd2\x36\xf2\x88\x09\xee\x4b\x85\x53\xab\x04\xe8\x28\x7e\xd5\x3c\xb9\xbe\xe0\x69\x9e\x7b\x85\x2e\x48\x65\x8b\x59\x68\xe1\xdd\x0d\xe7\x89\x3f\xe6\x04\x5d\x61\xd0\x50\x08\xac\xf6\x96\x2e\xa8\x52\x0a\x02\xc7\x67\x1e\x15\x3d\x13\xf8\x1b\xcc\x78\xf9\xb7\xef\x49\x6d\xb8\x07\xa3\x60\x8e\x40\x82\x23\x31\x4c\xc3\xa8\x37\xa9\x5d\xcd\x76\x6b\x7f\x7e\x0d\x7c\x44\x69\x09\xa3\x35\x30\x11\xd3\xa7\x2c\x9f\x1b\xa3\x8b\xdd\xb7\x52\x27\x85\x2f\x3f\xa7\x5b\xd4\xfa\x01\x10\xa1\xa3\x65\xef\xa5\x03\x87\x0a\x49\xe1\xd2\x6b\x87\x88\x2c\xc1\xa4\x1e\x64\x09\x5f\x18\x20\x13\x9b\xee\x90\x01\xec\xe7\xf7\xbd\xb2\xe7\x63\xe2\x2a\x44\x8b\xb3\xf6\xca\xae\x81\x8f\xaa\x48\xd5\xbf\xf8\xf6\x23\xfa\x9d\xda\xc0\xc8\x96\x8c\xe8\x39\x3b\x74\xaf\xcd\x2a\x48\x33\x25\x12\x0f\x7d\xb9\x7f\xb8\x66\xb8\x9a\x2c\x71\x64\x2f\x3f\x4d\xf9\xbc\x4c\x87\xa6\x24\xd6\xde\xd7\x4f\xc8\xb6\x4e\x6d\xea\xa0\x3a\x71\x91\xda\x2f\x29\xfc\xf9\x21\x05\xe9\x8f\xea\xed\xb2\x13\xf5\x1e\x39\xe1\x75\x50\x15\x3c\x0f\x33\x9b\xf3\x5b\x6f\xf1\xbd\x72\x13\xf4\xb4\xd3\xd3\xf6\xbb\xa2\x06\x8a\xa4\x81\xb0\x76\xe4\x82\xd5\x97\xb2\x73\x44\xdd\x01\xb5\xf3\xcf\x66\x69\x7d\x5a\xcc\x82\xb0\xb7\x97\x64\x19\x22\x3f\xf5\x06\xc7\x7f\x39\x7f\xb9\xec\x10\x98\x73\xd3\x0e\xa6\xeb\x2a\xb3\xa1\xdc\x9c\x45\x69\x0b\x95\x8b\x2e\x65\x37\xcc\x04\xf5\x36\xf0\xc0\x16\x31\xfe\x1d\xd3\x95\xa3\x83\x5d\x9f\x2b\xbd\x46\x5b\xf7\xea\x52\x60\xcc\x4c\xb5\x36\x0b\x3f\x5a\x2b\xd4\x13\xa0\x83\x15\x4d\x31\x35\x62\xac\x5b\x47\x0c\x4d\x4a\xac\xfa\xc0\xa7\x76\xa7\x4c\xd8\x67\xce\x04\xc5\x8a\x47\x27\xf4\xaf\x90\xd0\x26\x27\xd4\x97\xfb\xcb\xba\xac\x00\x87\x89\x58\xd0\x2f\xfc\x69\xc7\xe2\x11\x99\x60\x4b\x90\x0d\x1d\x2b\x38\xfa\xab\xee\xd3\xd4\x39\xe2\xdc\xca\xe5\x59\x36\x84\xc0\x2b\xf6\x2a\x22\x59\x84\xab\x0a\x3c\xfc\x34\x7f\xd4\x1a\x98\x7c\x47\x6b\xba\x65\x6f\x15\x79\x1e\x46\xb6\x5a\x42\xe4\x6f\xdf\xab\xab\xb3\x63\xa6\x6c\xf9\xa6\x36\x9d\x70\x89\x1b\x58\xdc\x30\xa7\xaf\xe0\x9c\x68\x97\x76\x14\x6c\x84\xe2\xb8\xd1\x1a\xea\x02\x41\x47\x1f\x72\x46\xf2\x52\x76\x23\x75\x63\x9b\xf8\xc4\x10\x4a\xd0\xa9\xbd\xcd\x88\xc1\xc9\xc9\xc5\xae\x0f\x59\x4f\xd1\x12\x97\xd7\xf5\x4b\x6f\xb9\x7e\x51\x39\x59\xaa\x69\xaf\x5f\xc4\xb7\x77\x68\x12\x03\xd2\x42\xfd\x2d\x1f\x98\x33\x5c\xff\xa5\x4c\xb4\x78\xc6\xa9\x15\x11\xaa\x70\x48\xcd\xc0\x6d\x32\xef\x12\xbc\x14\x41\xa6\xfb\xf8\x86\xb4\xe4\xaa\xa0\x50\x29\x12\xae\x9d\xaa\x49\xf8\x12\xd7\x26\x81\x55\xa3\xcd\x2c\xd0\xb0\x78\xff\x08\xed\xcc\x83\x2b\xb1\x86\x46\x7c\x63\x8d\xbc\xba\x7c\xca\x59\x3a\xff\x7c\xe2\xda\xff\x17\x39\x45\x99\xf2\xa9\x05\xd3\xb6\x46\x06\x19\x54\xb3\x91\x90\x05\xc9\x7d\x7d\x7f\x7a\xd1\xd6\x18\x4d\x04\x11\x4e\x88\x89\xa1\x15\x3a\x15\xd8\x72\x77\x4c\xea\xcf\xb2\x84\x0f\xe4\x3f\xb6\x2d\x7d\x39\x24\x03\x5e\xfd\xe8\x39\x4a\x89\x6d\x97\xca\xd1\xc2\xb7\x79\x9c\x5b\x92\xca\x6a\xe6\xbe\xbb\x51\x8a\xa0\x52\x15\x68\xcc\xee\x95\x14\xbe\x1a\x2d\x95\xa3\x0b\xdf\xe3\xbb\x60\x41\xd8\x4d\x64\x6f\xea\xc8\xae\x73\xd3\x5e\x40\xa5\xb7\x54\x8e\x3e\x70\x5f\xa7\x92\xb8\xcb\x6b\xef\x59\xc5\x18\x4f\xd1\x97\x84\x74\xe8\xf6\xd3\x82\xef\x8e\x00\x04\x5c\x38\xf5\x48\xda\xc3\x84\xf6\xfa\x43\x3b\xb5\x1e\x31\xa1\x41\xca\x3b\xca\x3f\xb0\x42\x5e\x58\x2e\x05\x97\xcd\xf8\x8f\xbf\xdf\x25\x17\xf3\xca\x69\x57\xc2\xd9\xb9\xe0\x25\x61\xcd\x4d\x9b\x15\xaa\xdc\x89\x79\xb6\x6b\x98\x9e\x5e\xd6\xf9\x61\x7f\xed\x7e\x5d\xec\xd5\x46\x22\xb3\xcc\xcf\x5d\x90\xbe\xf9\x06\xea\x56\xe8\x85\x8f\xbd\xcc\xef\xf0\x69\x5d\x40\x65\xf1\xf6\xe8\x3d\x6e\x07\xb1\xba\xe8\xb9\x44\x1b\xe5\x75\xec\xea\x41\xa4\x2f\xdf\x79\x46\xb6\xf1\x70\xbc\x88\x97\x6b\x33\xdc\xba\x4b\x60\x48\x9e\x11\x90\x9b\xa0\x08\xff\xcc\x98\x0e\x6a\x08\x43\xe4\x89\xf3\x6d\xcc\x45\x55\xa7\xbe\xa5\x68\xd5\x70\x18\x55\xfc\xc7\x4f\x5c\x33\x51\x2f\x73\x02\x14\x32\x2e\x7a\xef\xb5\x8b\x2e\x1f\x7c\x47\xcf\xe5\xfc\x80\x04\x00\xe6\x14\xb9\xdc\x97\x5e\x91\x8b\x51\xe3\x25\x64\xee\x82\x17\x14\x9d\xd5\x96\xe3\xe0\x80\x97\x96\x1f\xd7\x60\x07\x3e\x06\x8b\x51\x7e\x71\x7c\xfd\xb8\xa6\xa5\x1b\x32\x87\x92\x84\x09\x9b\x3b\xb1\xbd\x43\x29\xda\x89\x5f\xe7\x9c\x90\x17\xd6\xaa\x86\xbc\x21\x83\x3e\x63\x74\xcb\x56\xd9\x66\x44\xcc\x69\xb5\x75\x61\x7e\x5e\xe4\x97\xa1\x45\x19\x23\x1c\xae\x58\xf8\x99\x0c\xab\x8c\xa8\x3a\x90\xdb\xf6\xf2\x43\xeb\x60\x51\xa7\x16\x3e\xf9\xac\x06\x9e\xc4\xa8\xce\xc1\xf3\xb9\xcf\xe7\xdb\xe0\x71\x38\xd1\x8e\xfb\xc1\x98\x44\xb6\x32\x74\x7d\x6c\x53\x31\x8e\x9b\xa3\x2b\x82\x62\x1b\x2c\x9c\x84\xb0\x4c\xf4\xc9\x5d\xb2\x1d\x82\x03\x8b\x18\x70\xbf\x7c\x76\x87\xca\xf7\xf4\xc1\x9e\x91\x53\xfd\x0a\x6f\x8d\xd4\xc9\x71\x0d\xe2\x5b\xa9\x38\x69\xee\xfc\x9d\xba\x54\x34\x37\xa1\x13\x03\xe4\xbf\xbe\xd2\x29\x52\x61\x13\x33\xc1\x39\x87\x1e\xe9\x4f\xdf\xd0\x3d\x83\x91\x49\x90\x80\xe2\x5e\x91\xe7\x49\xd1\x32\x20\x69\xb6\x78\x45\x1b\x47\xa7\xe9\x12\x2f\x64\xd1\x00\xdb\xed\x9a\x97\x57\xef\xcc\xbe\xce\x2a\xa9\x60\xc6\x5f\xe7\xfa\x93\x17\xa5\x4f\x19\xb2\x0a\x6a\x67\x17\x4d\x7f\x56\x77\x50\x33\xec\xd0\x4c\x2c\xfb\x0f\x29\x55\xb4\x87\x03\x46\x6d\x1c\x3a\xa5\x72\xf4\xbf\x27\x75\x28\x1d\xe2\x06\x17\x28\xec\xcb\xff\x4c\xf1\x05\xf0\x18\x01\xc8\x42\x34\xf4\x1a\x7e\xb9\x2e\x24\x89\xa6\x5f\xb1\x4b\xf3\x26\x35\x31\x4c\xbe\x52\xe6\x66\xe1\x5f\x77\x9e\xa7\x56\x5e\x66\x22\x76\xdc\xf5\xa2\xe0\x30\x09\x4e\x49\xfc\x8c\xcf\xbc\x2d\xa3\xa3\xcd\x6d\x9a\x03\xc0\x3e\x14\x66\xcd\xd4\xec\xb1\x11\x32\x49\x46\x5c\x78\xdf\xf1\xb1\x49\x95\x50\xe5\xbd\x44\x64\xfb\x97\xb5\xed\xf7\x37\x06\xa5\x77\x7e\xe8\xc0\xb2\xdc\xa5\xed\x91\x0a\xc3\xa8\x6e\xd2\x66\xb2\x57\x37\x3f\x9a\x1d\xb8\x4f\x9f\x3c\x19\x56\xa4\xf8\x29\x45\xae\xd9\xc2\xb6\x27\x3a\x37\x9a\xfa\xb8\x8f\xe3\xaa\xcf\x48\xb0\x5c\xf7\x1c\xe4\x9b\x83\xcf\x7b\x53\x54\x5e\x31\xd8\x77\xb1\x16\xbc\x0d\xa2\x49\x52\xe7\x8f\xbc\xa0\x45\xc8\xf8\xb4\x89\xdb\xe7\x3f\xef\xd5\x8c\xd6\x68\x2a\x85\x39\x72\xcd\x18\x6d\x5f\x34\xb0\x1f\x90\x5a\xe2\x20\x1b\x87\xb4\x01\x33\xf9\xcf\xba\x19\x31\xa2\xce\x3b\x17\x7a\xd9\xe4\xc3\xaf\x53\x46\x0d\xab\xae\xa3\x28\x7e\x7d\x9f\x5a\x01\x33\xd3\xa0\x7c\xa0\x3b\x4d\x73\x21\x34\x11\x81\xd3\x17\x27\xd6\x33\x0f\xe9\xa0\x5b\x1f\x3a\x9f\x5c\x8f\xb0\x2b\xfb\x1a\x69\x18\x34\x31\xa9\x25\xf2\x75\xbf\xdd\x22\xef\x35\xe2\x1a\x5d\x6d\x73\xd8\x65\x47\xe5\xe0\xa3\xa1\xe6\x0c\xd1\xc8\x4e\x0d\xac\xc0\xf0\xdd\x21\x4e\xcd\x4e\xf2\xdf\x59\xa5\x17\xdc\xb6\xed\xa7\x32\xd5\x87\x8f\x2a\xd2\x87\x0c\x4c\xbf\x20\xc7\x18\xdf\x66\x3b\xe9\x59\xc2\x49\xa6\xaf\x30\xd1\xcd\x86\xde\x2a\x65\x1c\x1f\x33\xf1\xd9\x74\x37\x3a\x15\x70\x19\xd8\xad\x79\xf4\xb3\xf8\x36\xe2\xcf\xfc\xed\x85\x9a\x84\x75\xe8\x22\xdc\x40\x2a\xb1\xf2\xc6\xd7\xb3\xaf\xd4\x02\xbd\x12\x7e\x79\x3e\xb1\x87\x1f\xb8\x25\x88\xc5\xb5\x3e\x3c\xeb\x91\xf7\x15\x2a\x34\x89\x6f\xb9\x1a\x62\x20\xf4\x1d\xfd\xe6\x6c\x55\x56\x23\x3b\xa1\x14\x28\x77\x00\x2d\x35\x29\x0b\x38\xa8\xbf\xc7\xfb\xb0\x16\x0b\x2a\xc8\x4d\xdb\x3a\x52\x04\xe2\xaf\x7b\x74\x75\x21\xc3\x46\x4c\x91\x16\xcd\x4f\xd4\xa4\xa1\x1b\xc4\x08\x88\x63\x51\x9a\x6c\x8f\xc2\x68\xa9\xd7\xcb\xd4\x52\x3b\xbf\x7a\x83\x2c\x59\x9b\xa8\xe5\xb6\x01\x68\x8b\xd6\x82\x36\x2a\x39\x4c\x5f\x12\x49\x94\x7f\xe7\xb6\x52\xa5\x85\x98\x39\xb8\x1f\x59\xe2\xc7\x35\x2f\x0c\x3b\xe9\xc2\xe5\xbe\x73\x52\xf4\x58\x2c\xe4\x73\xd3\xeb\xe2\xa7\xee\x52\xf8\xb4\x52\x1f\x74\xbd\x66\x24\x1d\xfa\x09\x73\xf8\xfb\x8f\x0a\xbd\x2f\x17\xb8\x0b\x3c\x20\x7f\x6c\xff\xa8\xff\x0b\x2f\xb2\x1c\x5d\x33\x56\xd5\xd5\xf1\x11\xb1\x81\xfb\x11\x6d\xf1\x84\x6c\x02\xf2\x05\xe2\x65\xd4\xd9\x9a\x2f\x8b\x4b\xee\x0e\x93\xd9\xd6\xac\xa9\x83\xd4\xc2\xa8\x54\x8e\x7e\xb7\x5d\x41\xab\x83\xef\xd7\xc0\xec\x1e\x24\x8e\xc7\x68\x03\xf4\x15\x52\xcc\xee\x17\xe6\x6b\xf4\xe8\x30\xb0\x84\xa7\xaa\xd0\xd4\xbb\x5d\xab\x9a\x1c\xc9\xaa\x7d\xef\xe5\x34\x55\x0c\xdb\xdf\x7e\xe1\x3f\xf6\x08\x17\x52\x4a\x4d\x49\x3d\xed\x2b\xac\xd9\x9a\x1e\xa4\x8f\x98\x46\x9c\x72\x16\x65\x28\x81\xf0\x9d\x68\x12\xe4\x67\x2f\xd5\x5a\xe3\xc2\x4e\x34\xe1\x34\x7e\xf6\x15\xbd\x59\x13\x17\x75\x7e\x32\x98\x28\x6c\x3b\x96\x22\x6b\xa7\x4e\x9e\xdc\x16\x85\xff\x7d\xed\xf9\x9e\x2a\xed\x5b\x73\x49\x6f\xe2\x71\x1a\x55\xb2\xf5\xa9\x13\x56\x10\x43\xf5\x89\xaa\x6f\x74\x5f\x7e\xe3\x11\x99\x27\x08\x3f\xf1\x36\x75\xcd\x7d\x1f\x4a\x7f\x43\xa9\x1c\xcd\x5b\xa7\xe1\x85\xec\xd0\x21\x6e\xe8\x24\x8f\x74\xa9\xa2\xce\x20\x50\xb7\xf1\x93\x9c\xbd\x30\x7d\x12\xab\x55\x6b\xfb\x92\xa3\x7b\xf8\x56\xbc\xd1\x44\x16\x4d\x50\x85\x7f\xaf\x69\x79\xd8\xc4\x0f\x5a\x38\xe3\x32\xda\x39\x57\xc6\x02\xc8\xa6\x04\xa8\xea\xe9\xf7\xcf\x6f\x2b\x71\x44\xef\xb0\xb1\x45\xc2\x0e\xe3\x72\x38\x9a\xd9\x2b\xfc\xee\xa9\xcd\x6f\xaa\x8f\x2b\x22\x70\xc8\x44\x9e\x18\x56\xaf\x5a\x2a\x63\x70\xcd\xa6\x5c\xe2\xe0\xa1\x8d\x52\x52\xd7\x45\x81\x85\x6c\xa2\x0a\xa3\x0c\x5c\x20\x87\x58\x35\x64\x13\x57\x72\xc0\xa2\xe9\x0b\xd3\x1f\x62\x92\xf8\x08\x3d\xb3\x49\xb2\x4f\x52\x76\x5b\xee\xa2\x23\x1a\xb1\x1c\xb0\x95\x24\xd9\x23\xf9\x47\xf6\x6b\x0d\x8c\x96\x93\x6a\xf8\x1c\x59\xa7\xb0\x94\xb1\x49\x0c\xe2\x0a\x5d\x8a\xd7\x15\xd5\x60\xe2\xdb\x98\xcb\x56\xff\xfa\x2c\xa5\xd9\xc8\x8b\xc5\x15\x67\xa5\xc7\xf2\xca\xe9\xd0\x41\xda\xf2\x96\xd6\x9c\x65\xc4\x49\xbc\x39\xa1\x95\x31\xe8\xb0\x6e\xc8\x04\xf2\x50\x7c\x1a\x54\x7b\x5e\xf3\xf9\x03\x4b\xc0\x39\x71\xc6\xbd\x3c\xe3\x57\x64\x43\xfb\x6e\xce\x63\x9a\x04\x99\x6b\x26\x1d\x98\x6f\xbe\xa1\x74\xfd\x91\x4b\x94\xd7\xbe\x6b\x4c\x7a\xb2\x1d\xef\xaa\xb6\xc4\xec\x9a\x51\xaa\x5d\x9f\x6b\x82\xe0\xa2\xc8\x15\xd7\x68\xe2\x3f\x20\x6e\x26\x06\x8b\x85\x07\xe6\xca\x03\x57\xc3\x54\x44\x5e\x6e\x32\x79\x58\x88\xa8\xe0\x1e\x62\x83\xc1\xe3\x8d\x1a\x8d\x0e\xf7\x78\xc8\x55\x38\xff\xff\xf2\x6e\x7b\x19\x4b\xdc\x84\x64\xf7\x51\x85\xc2\x50\x8f\xb7\x55\x15\x01\xe8\x43\xb9\x7e\xe3\x23\xef\x36\x30\x10\x3a\x8b\x13\x2b\x7a\xaa\x81\x6a\x5c\x1c\x80\x5f\x25\xd6\xfb\x9a\x9c\x13\x8e\xeb\x0c\x9b\xcb\xf1\x65\xf3\x99\xe7\x16\xf0\xd1\xe6\xcd\xd4\xc3\xb6\xa3\x62\xd2\x0a\x96\xa9\x3b\xf8\x3b\x15\xcc\x04\xc7\x39\xfa\xaa\xa6\x85\x01\x1c\x19\x2f\x0e\x10\x29\x8b\xbb\xbc\x25\xdd\xe3\x36\x15\x98\xb1\x68\xe4\x8a\x0f\x6b\x19\xb7\x4b\xea\xc4\xec\xc5\x1a\xa7\xff\xf7\x63\xf4\xf4\x99\xba\x3d\xa9\xdc\x63\x74\x72\x2b\x24\x90\x02\xb4\x7c\x0b\x09\xfc\xb0\x42\xfc\x76\x95\xa3\x7c\x73\x88\x28\x09\xb9\x6b\x2f\x07\x57\x5c\xfd\x88\xb0\x5b\xe1\xd8\x65\x40\x2e\x5f\xfd\x37\x4a\x36\xbe\x80\xf7\x9d\xa5\x19\xd2\x53\x0f\x25\xbd\x5a\xf6\xd6\x87\xc4\xe1\x02\x11\xb2\xdc\xae\xdb\x2e\xd5\x12\x50\x1b\x23\xee\xb3\x06\x1d\x80\x14\xdc\xf0\x87\x8d\xd9\x0c\x1a\x7b\x1e\x62\xa6\x50\x6a\x4e\x15\x05\xb7\x8a\x82\x86\x56\x83\xa6\xa0\x36\xad\xda\xa3\x89\x20\x12\x86\x8d\x40\x38\xd8\xf4\xe5\x4b\x6f\x29\xc4\x26\x9a\x68\x92\xde\xbd\x81\xdf\x7d\x53\x26\x4d\x9f\x31\x1b\x4a\xa8\x63\x9a\x18\x3b\x09\x48\x2f\x76\x7d\x8b\x78\x09\x88\x70\xcb\xee\x4e\x51\x99\x05\xb6\x4a\x3e\xca\x7d\xed\x9a\xc1\x0a\xc8\x1c\x84\xcd\xf3\x1f\x14\x5f\x50\x09\xb9\x88\x41\xde\x3b\x4b\xde\x88\x2e\x50\xe4\x55\xb5\x3d\x41\x02\xbe\xd6\x26\xdd\x48\xc9\xb4\xba\xba\x47\xa8\x29\x38\xc3\x9c\x7b\xce\xcb\xc7\xbf\xf4\x0e\xcd\x68\x5d\x71\x8f\x8c\xc7\x76\xc9\xae\x72\x9d\x85\x1e\xac\xca\xdf\x57\x14\xfb\xb3\xa9\x30\x30\xdf\xfc\x76\x76\x61\xea\x84\x11\xdb\xa6\x0d\x62\x58\x99\x76\x66\x34\x67\xba\xae\x01\x0c\x1c\xa0\x34\x5b\x5f\x39\x5e\x41\x32\x37\x90\x40\x98\x1c\x9b\xab\x00\x48\x3c\x62\x72\x15\x9e\xad\xbb\xfa\xc3\xcb\xf3\x06\x56\xad\xa2\xd8\x9c\x5d\xe6\x62\x7e\xbb\x5c\x78\x8e\x36\xcd\xa5\xc8\xb0\x92\x9b\xf0\xc2\xac\xda\x57\xda\x94\x88\x7e\xd6\x10\xc6\x71\x88\x70\xaf\x0f\xa9\xb1\x55\x9a\xa3\x29\x42\x5a\x0c\xa3\x80\x4b\x1c\x91\x59\xe9\x9d\x1f\xe0\x38\x37\x7b\x7b\x97\xe6\x11\x89\x02\xcc\xa4\x67\x5b\x97\xa6\x13\x39\xfd\xca\x2b\x93\xf3\x3e\xce\x1b\xd9\xd4\x7b\x59\x28\x2e\x72\xb8\xe5\xe6\x5b\xfb\x14\x43\x23\x1a\xba\xdc\x9b\xa0\xfe\xa4\x56\xc9\x51\x39\x4c\xce\x8d\x7c\x44\x86\x09\x2a\x0c\x30\x0a\xe7\x6b\x0a\xa0\x89\x6f\x38\x7c\x4d\x74\x60\xb4\x26\x19\x48\x85\x16\x7d\xf4\xc9\xc5\x5a\x86\xed\xfb\x98\xab\x05\xe5\xdf\x7d\x90\x5f\x12\xe0\xe3\x1e\x32\xe1\x90\xf4\x4b\xce\xde\x2c\xdd\x18\xbf\xe4\x4a\xa8\x8a\x27\xf5\xe5\x27\x0e\x1f\x2c\xb6\x2f\xcf\x89\x4a\xe5\x68\x10\xb7\x6a\x29\x7d\x02\xb9\x75\xcc\xb7\x55\x5b\x95\x30\xaa\x9a\x0d\xa8\x1c\xcb\x10\xb4\xd2\x4b\xb3\xb2\x5b\x33\x41\x04\xda\x87\x11\x48\xe9\xa5\xc2\x87\x15\x68\x49\x40\xbd\x12\xe3\x26\x26\xe5\xbe\x3c\x7d\x45\xef\x75\x33\xbb\x25\x46\xba\xd3\x07\x0e\x55\x06\xb8\xcd\x16\x98\x51\x0c\x1e\xae\xb5\xc6\xa8\x1f\x08\x2a\x89\x00\xa0\xbe\x32\x36\xb1\x58\x61\x35\x1c\xf0\xa1\x42\xe1\xc4\x18\x21\xb5\x4c\x6d\x81\xed\x29\x7c\x75\x14\xef\xdb\x72\xe9\x3f\x7b\xa9\xee\xcf\x4e\x92\x3c\x77\xee\x66\x0e\x73\xb8\x8e\x86\x2c\xd0\x59\x08\x9f\x3c\xa8\x27\xc9\x55\x9b\x0b\x76\xf1\x5a\xf5\x2f\xcf\xf2\x99\xed\xa2\x16\x75\x5d\x44\xda\xad\x5a\x57\x2c\x98\xa8\xed\x41\xd0\xe6\x10\x88\xc1\x76\x54\x26\x9d\x9f\x16\x7c\x36\x56\xaa\xf9\xf7\xdf\x51\xa6\x50\xa6\x60\xdf\x24\x56\xed\x7d\x85\xca\xc3\xfa\x56\x17\x52\xc9\x3c\x17\xbb\x78\xef\x08\xa5\xaf\xce\x98\x6a\xca\x53\xec\x5e\x22\x4b\x88\xa0\xc5\x98\x85\x5d\xc2\xad\xa8\xbb\x4f\x6a\x59\x02\x37\x8e\xe7\x5d\xc3\xfc\xbb\x63\xe4\x61\xb8\x33\x81\x2c\x4f\x1f\x25\x5e\xa6\x18\x8d\xeb\xcf\x77\xc1\x7b\x1a\xc7\x8b\x05\xfd\x21\x2f\x7e\x6b\xe9\x51\xd9\xeb\x17\xf6\x7f\xc5\x6d\x5a\x2f\xd0\xf7\xc3\x94\xa8\x52\xbc\xf2\xa0\x4c\x29\x5b\x88\x01\xae\xe7\xc3\x2e\xdf\x2a\xb7\x03\x66\x05\xae\xb0\x5f\x9d\xd0\x4c\x63\x91\x43\xec\x84\x95\x98\xff\xc9\x1e\x99\x77\x81\x1b\xb8\x1f\x94\x3c\x04\x3a\xc3\xc5\x19\xa3\x94\xeb\xdf\x62\x9c\x70\x92\xff\xdc\xaa\x31\x0a\xe8\xd9\x81\x84\xb9\xed\x45\x5c\x34\xb3\xa4\x67\x68\x94\x05\xc2\xf3\xa4\xdf\x67\xbd\xd0\x14\x49\x9e\x5b\x43\x35\x08\x70\x53\x1e\x54\x7b\x8e\xc8\x35\x69\xb5\x1a\x3f\x50\xe3\xb0\x82\x79\xa4\xae\x49\xd5\x34\x6a\x7b\x8f\x26\x96\x17\x5f\x3b\x04\x71\x8d\xa0\x78\x0d\xe7\x3d\xa7\x1b\xae\x33\x46\x9b\x62\x27\xfd\x66\x87\x62\x79\xd9\x66\xdd\x52\xb8\x51\x41\xa2\x37\x13\x1f\xb3\x1c\x0b\x06\x27\x55\x92\x6b\xf0\xcb\xac\x78\xc7\xeb\x0a\x01\xcc\xad\x61\x37\x31\x2e\xed\x2b\x3c\x13\xe9\x32\x97\x60\x98\xc5\x43\xd4\x06\xc5\xd6\x08\x19\x9c\xcf\x9c\xdf\xf7\xa8\x62\xd9\x05\x6e\xf6\x05\x5b\x53\xb5\xf2\x30\x73\x48\xea\x62\x58\x3c\x7b\xdd\x70\x25\xaa\x9b\xc2\xf2\x05\x3e\x6c\xd2\x42\x05\xe1\x40\x5c\x95\x1d\x97\x7f\x7c\x11\x7f\x92\x0a\x32\xea\x15\xca\xe5\x4c\xbe\xb3\x49\xf3\xa5\x49\xec\xcb\x84\xb0\x75\xfc\x99\xa3\x96\x2a\x76\xc5\x88\xd9\xc8\xa5\x0d\x40\x53\x6c\xd0\x3a\x24\x76\xda\xa5\xe8\x7b\x3c\x7b\x77\x82\x1c\x9d\xd8\x93\xc7\x3d\x95\xf8\xee\x06\x0c\x99\xc4\x08\x32\x82\x1c\x0f\x9f\xc8\xe6\x72\x1c\x29\x34\x69\x62\x53\x21\x95\x6d\x7f\x49\x19\xdb\x48\x48\x55\xfe\xf8\xd9\x6d\xd2\x0f\x3c\x57\x2c\x47\x1f\x18\xa4\xbc\x9c\x26\x72\xd4\xc9\xdb\x57\x97\xb7\x41\xea\x92\x59\xd3\xa4\x52\x39\xfa\xe8\x53\xe9\xb8\x25\x08\x94\x8c\xb2\x38\x7a\x8c\x9a\x42\x80\xed\x00\x06\xef\x83\xfc\xe5\x53\x25\x1f\x03\x80\xd6\xac\x9d\x70\x5d\x18\x39\x7e\xac\x56\x13\x52\x5f\x65\x62\x8a\x44\xe1\x2e\x5b\x51\x26\xa6\x22\x23\x1c\x52\x51\x0c\x25\x58\x5c\x22\x97\xa3\x9a\xad\x0b\x52\x11\x7e\xdd\x47\x1d\x93\x34\xbe\xab\xcb\x55\xd6\xa0\xa1\x96\x3f\xfd\x46\xd2\x56\x32\x43\x81\x7e\xff\xe6\x02\x61\x28\xe5\xda\xc4\x17\x34\x99\xc2\xfd\xdd\x1a\xdd\xd6\x0d\x48\xe2\x39\x9c\x3b\xa4\xd4\x58\x15\x46\x91\x69\x20\x4e\x98\xbc\x71\x7a\x32\xcd\x8f\x3f\xa8\x05\xb9\xca\x4d\x5b\xe4\x62\xa0\x30\xa0\x0e\xa0\xa5\xa1\xa2\x78\xb9\xca\xff\x77\xae\xaf\x03\xa0\xde\xe6\x54\x8d\xf4\x1f\xd0\xc4\xdd\x39\x37\xaf\x98\xad\xd0\xba\x71\x93\xf8\x56\x7f\x11\xaa\x78\x8f\xe6\x99\x6c\x84\x7e\x40\x4d\xfe\x41\xd1\x5e\xcd\xea\xdf\xc1\xbe\x8f\x6a\xa2\xfe\x2e\xae\xb6\xb3\xfd\x61\x80\xc1\xc2\x42\x0f\x38\x2e\x0d\x19\x9d\x8f\xc4\xbf\xe8\xb6\x45\x6d\x26\x8a\xa9\x1d\x5c\xee\x37\x9a\x0c\x8b\xef\x20\xdb\xc6\x8c\x4b\x50\xb3\x6a\xa7\x1c\x7d\x28\xba\x37\xc5\x25\x77\x69\x2f\x80\xd4\x12\xb4\xfc\xa2\xab\xb5\xf1\x0e\x75\x40\x08\x5e\x58\x27\x45\xa7\x4c\xbd\xc2\x85\xe9\x8f\x8b\x4d\x6e\xcf\xb2\xe2\x75\xcd\x72\xc8\x76\xa8\x1f\x4c\x84\xe4\xfc\xc7\x73\xb2\x7f\xe7\x31\x1a\x26\x82\x28\x97\x5b\xca\x54\x8a\xd4\x38\xbd\x22\x1a\x3f\x50\x46\xe4\xee\xd0\x0f\x48\xb5\xd5\xd5\x05\x2b\x7e\x8f\xa9\xb9\xf3\x12\x21\xe2\x12\x7d\xea\x4d\xf9\x6f\x0c\x14\x1a\x08\x40\xb6\x71\x61\xbc\x2d\x4b\xcc\x95\xe7\xf5\x8b\x23\x3b\x15\x1e\xa7\xeb\x87\xb6\x60\x1a\x7e\x71\xbc\x16\x01\x6c\x4a\x53\x31\xd7\xdf\x2b\xc6\x98\x36\x72\x4d\x07\x31\x88\x7a\x27\xaf\xd6\x84\x98\x2d\xea\x26\x68\xda\xdc\x93\xaf\x64\x6f\xe3\x29\x93\xc5\xf6\xe3\xd7\xe3\xf2\x31\xf2\xc7\xd7\xa9\x8d\x7d\x97\xd4\xe3\x0b\x32\xfa\x4d\xa4\x0d\x20\x5d\xf0\xf6\xe1\x07\xee\x1b\x5b\x87\x4a\x50\x04\x49\x3a\x40\x6b\x77\x4e\x52\x5e\x04\x33\x09\x32\x78\x3a\xd4\xe0\xc8\x9f\xb6\x48\x3c\x6a\xbc\x3e\x52\x6a\x10\xee\x2f\x5a\x38\xbd\xa6\x53\x6d\x28\x5a\xa4\x42\xb8\x52\x88\xd5\xa5\x21\xda\xe3\xed\x50\x0d\x6d\x5b\x24\x47\x85\xd2\xe1\xec\x03\xdf\x1d\x12\xa3\x9e\x7a\x9d\x14\x9a\x8a\xeb\xaa\xdf\xc4\x26\x57\x47\x18\x74\x85\x5c\x2a\xec\x78\x36\x6d\x09\x58\x77\xee\x67\x6f\xb5\xe9\x0e\x79\x38\x71\x4d\x28\x7c\x68\xd7\x79\xc9\x8b\x68\xa9\xae\x0e\xd7\xad\x1a\x2e\x4f\x55\x56\xfe\xdf\xb3\xd3\x38\x6e\x87\x6d\xfa\x05\xc5\x8b\x34\xc0\xa8\x15\xfa\x3e\x26\x6e\x96\x93\x1c\x69\xb2\x71\xc2\xb7\x3a\x61\x10\x5d\xbf\xe7\xd2\xf4\x19\x2d\x8c\x4c\xa1\xc8\xeb\xb7\x0d\xb1\x0a\x7d\x3b\x75\x11\xad\x8a\xd4\x97\xcb\x3d\xbc\x7a\x88\xaa\xd5\x62\xd4\x4b\xe5\x68\x55\xa4\x6a\xf3\x12\xc8\x32\xba\x57\xc9\x64\x2c\x40\x46\x1d\x4c\x3d\x66\x68\xee\xb9\x3e\xf8\x40\xc0\x99\x3f\xa8\xf4\xfc\x88\x4b\x43\x48\xa9\x7a\x0e\x28\x23\x86\x16\x0a\xa8\x6d\x23\x50\xc1\x71\x0f\x2a\x28\x6c\xe2\x5a\x09\x19\xe2\xd3\x0b\xfa\xb3\xc4\x60\x82\xcc\xdb\x71\x4c\x13\xa2\x44\x75\xec\x0b\x36\xf1\x89\x83\x3a\xa6\xca\xf6\x44\xc3\xe4\x27\xcf\x0d\xd3\x32\x20\xc6\xb5\x1a\x0a\xfb\x02\xde\xdb\x59\x16\x3a\xf0\x7f\x5e\x65\xe9\xde\x57\xad\x0a\x9e\x08\x76\x8d\x85\xa7\xf7\x4a\xd0\x10\x89\x5f\xc6\x77\xf3\xbc\x21\x32\xb9\x6b\xf6\x74\x00\xd1\xfe\xcf\xcb\xd9\xd4\xa5\x81\x5d\x62\x23\x1b\x0b\x24\x19\x20\x45\x8f\x78\x6d\xd9\x58\x80\x88\x40\x83\x14\x3a\xab\x43\x94\x85\x60\xa5\x19\x00\x7b\x18\xae\xc8\x7f\xd4\x68\xfc\x99\x5c\x0e\x7f\x37\x57\x2c\x29\x2d\x23\x6e\x0d\x79\x1c\x52\x9e\x6d\x8f\x7e\x3a\x3f\x4e\x0b\x44\xc8\xe5\x84\x78\x6d\x48\x7c\xdb\xeb\xd9\xde\x49\x37\x32\x68\xa5\xbf\xbc\xb9\x78\xcf\x3a\x2d\x9e\x7b\x89\x1e\x55\xee\xe8\x1b\x52\x60\x94\xda\x3c\x31\x7d\x60\xb1\xae\x93\xd5\x4c\xca\xff\x79\x93\x55\xb6\x3c\x61\x55\x04\xb6\x98\x33\xde\xd4\x04\x45\x2d\xe4\x78\x71\xb2\x66\x11\x2f\xdd\xc5\xfb\x35\x49\x6e\x46\x2b\x15\xcc\x12\x2e\xe6\xa1\x03\xd9\x05\xbf\xcc\xef\x12\x53\xed\x9b\x4e\xcb\xab\xd1\x69\xc5\x35\x0b\x11\x4a\x22\x37\x3c\x29\x4b\xc2\x2a\x43\x6e\x2f\xf6\xe5\xe1\x8f\xee\x38\x27\x3b\xce\x9f\x36\x4d\x08\x5b\x8c\x1b\x21\x77\x78\xe8\x06\x48\xb4\xe3\xfa\x8a\xeb\x0f\xe9\x60\x1d\xec\x24\x84\xb8\xe2\x83\x2b\x34\x69\xaf\xf8\xa7\x00\xb9\x52\x5c\xe1\xbf\xdc\xfe\x37\x90\xfb\x5c\xf1\x63\xfe\x3b\xf2\x6a\x73\x90\x02\xb6\xc9\x3f\xb4\x42\xf7\xd6\x4d\x35\x88\x93\xae\xdf\xaf\xdf\xcf\xd4\x39\xd5\xc4\x44\x6f\xcd\x3e\x3e\xc2\xbc\x05\x21\x46\x1a\x3a\x68\xf7\x7f\x16\x64\x2c\xa8\x40\xc9\xbd\x54\x8e\x76\x17\x65\x4e\x69\x62\x8f\x4b\x7b\xe8\x5d\xfa\x5f\x9e\xa3\x1a\x57\xde\x1d\x0a\x4b\x9c\xa1\xa6\x9c\xba\x56\x42\xbb\x1f\x64\xcb\xf7\x14\x3b\x9a\xbb\x43\x1a\xc4\xdf\xf8\x35\x39\x5d\x6c\x80\xdd\xf3\x35\x5b\x15\xac\x16\x76\x6b\x5c\x33\x32\xbf\xaa\x53\x11\xe0\x0a\x6d\xbb\xc2\xe9\x73\xc5\x55\xef\x29\x3e\x20\x29\x64\x1a\xc6\xe8\x5b\xdb\xae\x10\x33\xe9\xb9\x9e\x3d\x58\x0d\xfb\xdc\xc1\xf1\x8c\x62\x16\x0a\xd3\xef\x81\x7c\xca\x1b\x57\x9f\x8c\xa3\x49\x6c\xec\xf3\x73\xf0\xc1\x77\xf8\x65\x71\xe3\xb5\xa5\x99\x00\x3b\x7b\xf3\x7e\xcd\x42\x9f\xfa\x01\xf6\x13\x1f\xb2\xdc\x57\x56\xca\x90\x66\x58\xb8\x09\x3d\xde\xd3\x9a\xd4\x41\x9d\x80\x7f\x33\x4f\xaa\x46\xed\xca\xde\x5d\x55\xc2\x1c\xd1\x35\x7b\x7e\x2c\xcf\xa5\x49\xe0\x63\xbb\x0a\x3f\x7e\xc0\x24\xe5\x52\x11\x0a\x96\xf1\x3b\x18\xa9\x69\x55\x80\x9f\xda\xa4\x44\xfa\x78\xd2\x51\x59\xe2\x58\x34\x4e\x12\xf9\x66\x77\x0e\x29\xb2\x72\xd8\x88\xc3\x63\x39\x1a\xba\xbb\x53\x21\xd6\xa7\x42\xd8\x7d\xb9\x07\x3a\xe5\xb4\xb6\xd2\xbe\xe8\x7f\xe6\xd9\x4d\x69\x39\x6a\x60\xd6\x9e\x60\xfc\xfb\x23\x63\x94\x3c\x8b\x32\x53\x78\x0c\x65\xd4\xe6\x47\xbf\x9c\x99\x26\xc2\x68\x03\x34\x9a\xb8\x99\x68\x29\x88\x33\x0c\xbb\x05\xe5\x1e\xf6\x45\xa2\xf6\xc6\x06\x4d\x5d\xc6\xa6\x8c\x98\x28\x7e\xbd\xa2\x37\xf7\x77\xa7\x3a\x45\x1d\x10\x10\xc3\x26\x0e\xf8\x56\xc7\xaf\x73\xf2\xc6\x0e\x85\xe1\xef\x24\xcd\xcc\x95\x0b\xe4\x7d\x6e\xa1\x06\x06\x91\xd0\x85\x5d\xda\x6c\x05\xdb\xb8\x41\x7c\x45\xc0\xaa\xf0\xc1\x36\x3a\x95\x41\x3c\x82\xdd\x40\xe8\xb3\x2e\x58\xa0\xfa\x90\x98\x0c\x99\x30\x77\x17\x16\x69\x16\x65\xa4\x17\x5e\x75\xe1\x81\x09\xd9\x00\xd0\x42\x76\xff\xba\x97\x27\x1f\x9e\xfb\xff\x66\x8e\xae\x9f\xf1\x2b\x1f\x94\xf0\x3f\xac\x02\xa7\xef\xbc\x2b\xfb\x2c\x5c\x52\x2d\xde\xb6\x82\x02\x3c\xa8\x9d\xdd\x14\x60\x93\x97\xe6\xeb\x26\xa8\x31\x82\x89\xbe\xd8\xa4\xf9\xd9\xfb\x7d\xca\x8c\x44\xd7\xfe\xa8\xa7\x41\xe1\x70\x53\x50\xff\xb6\x1c\x53\x5f\x59\xab\x42\x4d\x40\xa5\xfc\xd3\x4d\xba\xb6\xb5\x8b\x5b\x3c\x5a\x44\x5f\x50\x28\xa3\xc4\xf1\x28\x80\x1b\xee\x79\x68\xac\x76\x49\x04\x7c\xb0\x98\xe1\x21\x15\x97\x8a\xf2\x15\xbb\xb6\x50\x5c\xdb\xdd\xc8\xc6\x35\x97\xb2\x26\xae\x71\x43\x21\x2f\x55\xc5\x79\x93\x27\x24\x4b\x44\x4f\xaa\x3c\x6e\xac\x32\x49\xb5\x49\x95\x32\x97\xa0\x92\x8f\x32\xdb\xbd\x78\xcb\x63\xd9\x17\x32\xf5\x4a\x31\x22\xff\x5a\xa0\xf5\x1e\x88\x83\x85\xcb\x4c\x7e\xe9\xde\xb6\x06\x43\xe8\x28\x94\xe6\x77\xe7\x2a\x8e\xd2\x34\xf4\xa5\x20\x6e\xfe\xb3\xa7\xd2\x7c\x97\xda\xed\xf0\xd0\xb0\x7b\x98\xc2\xcc\x03\xbb\x1f\x41\x32\x9d\x3f\x5e\x5e\x20\x75\x3b\x24\x82\x55\x9b\xbb\x64\xbf\x36\x4b\x06\x35\x20\x28\xd2\xa6\x3e\xc2\xcf\xdc\x22\xde\x7a\x93\xa3\xb3\xed\xbd\xda\x98\x0c\xe4\x51\x12\x79\xd2\xc5\x95\x6c\x32\xc6\x2f\x09\xa1\x72\x2c\xc8\xbd\x3f\x8f\xb8\x0c\xd2\x0d\x8c\x00\x24\x4b\xe6\xfa\x7f\x5d\x3b\x28\x8d\x74\x3d\x70\xf7\x5e\xf4\x90\xae\x42\xee\x02\xf9\x29\xd1\x6e\x9c\xdf\xd3\x9f\xa4\x53\xea\x34\xdf\x97\x7b\x66\x3b\x5f\x5a\x8f\xbb\xf6\x14\xbe\xb9\x5d\xf7\xd5\xe7\xde\x97\x42\x0d\xec\x87\x4b\x52\x4c\x01\x73\xba\x4a\xe5\xe8\xdf\xf6\x74\x2a\xcc\x00\xa3\x1e\x30\xe1\xa2\xd1\xda\x32\xcc\xd5\x70\x1a\xc2\x18\xe8\x5b\x8a\x42\x78\x60\x61\x2e\xc3\x7b\xb5\x46\xc6\x9f\x9d\x74\x4b\xf2\xdf\xd0\x30\x8d\x4e\xc8\x4c\x39\x1c\x8a\x9e\xeb\xd2\xc6\x0f\x18\xbb\x09\xfc\xe9\xd4\x1a\xa9\xf4\x40\x24\x0d\x2b\xfa\xd4\x7e\xc5\xb1\x88\x38\x0e\xe1\x31\xb8\xfb\x88\x10\x32\xa6\xa1\x1b\xd8\xdc\xf0\x2c\xdf\x7c\x50\x39\xa1\xa9\xba\x62\xb1\x77\x65\xa7\x1a\xc7\xab\xc4\x16\x84\xc0\x1f\x3c\x9b\xfd\xb9\x16\x72\x4d\xbf\x94\x6a\x95\x15\xeb\xdc\x4c\xb6\x74\x7d\xd2\xea\xd2\x23\xc9\xc8\x09\x1a\x3a\xdb\x01\x8f\xc8\x80\x5b\x73\xc4\x5f\xb1\x76\x55\x5a\x13\x3b\x89\x61\x70\xf4\x8d\x81\xd9\xfb\x9b\xb2\x1a\x72\x49\x2f\x4a\x75\x0b\xfa\xf2\x0f\x46\xba\xa4\x86\x4f\x02\x01\x63\x7a\x86\x2b\x25\x94\xae\xed\x17\x58\x3d\x40\x97\xae\xb8\x3b\xc4\x7e\x22\x23\x91\x3b\xba\x5a\x1b\x9b\x27\xfe\xc3\x62\x05\x6f\x3f\xac\x0c\x1f\xa8\x17\x27\x9d\x26\x07\xc9\xbe\x33\x42\x4c\x6f\x29\xe5\x1d\xb0\xfb\x9e\x92\x1d\x63\xd7\xc2\x75\x55\xef\x7f\x9f\xbc\xf7\x2c\xc2\x68\x1d\x52\xa0\xc6\x28\xed\x9e\x6e\x19\x90\x7c\x40\x3a\xf1\xd9\x5d\xd2\x8c\xc4\x31\xda\xe6\xf4\xb9\x71\x9a\x36\x51\x6f\x56\x84\xa7\x70\xdd\xf0\x61\x0a\x4e\x39\xac\x85\xa8\x85\x78\x95\x70\xc3\x54\x19\x42\x9b\xb4\xc1\x4b\x7b\x36\x80\x4f\x99\x6e\x66\xd4\x6e\x1b\x06\xe4\xff\xb9\x83\x0f\xab\xa6\x4c\x8e\xeb\xa7\x7c\x61\x87\x22\x1b\x1c\xfa\x3e\x8c\x63\xa2\x81\xd3\x75\xa6\x11\x23\xf5\x24\x2a\x45\x77\xec\x1c\xad\xe0\x9e\x99\x19\xb6\xcf\x5e\x86\x9f\xa5\x5b\x15\xfa\x06\x23\x15\x81\x02\xcf\x7d\xe0\x44\x1a\x0f\x9b\x96\x6a\x01\xf5\x51\xad\x1d\xe4\x1b\xd8\xc5\xa2\x70\xf9\xec\x93\x32\x6d\xa9\x5b\x88\x31\xd4\x4b\xe2\xad\x3c\xaf\x47\x28\x04\xbb\x16\xaa\x90\x00\x71\x5d\x81\xaf\xed\xd5\xd5\x9f\x85\x54\x37\x4f\x08\x27\xb6\xa9\xc9\x70\x4c\x71\xd2\xe7\x78\xcb\x4c\x54\xa9\x5d\x3f\x10\xb2\xcf\xab\x26\x29\x13\x87\x04\xa3\x99\x33\x7a\xce\x11\x11\x18\xde\xfe\xcd\xeb\xb5\x4c\x13\x91\xc0\xe2\x5d\x80\x1f\x6f\x54\x3d\x49\x11\xc8\x08\x88\x98\xb1\x50\xd8\x08\x57\x6d\x14\x40\xaf\x0f\x30\x66\x79\x89\x4f\xa7\x88\xa1\xb6\x9d\x53\xb8\xf7\x34\x7f\x74\x10\x36\x05\x2e\x21\xb8\xa2\xfc\x9e\xc3\x57\x4a\xcb\x50\x23\x0e\x95\x7a\x5b\x75\xf9\xe6\xec\x25\x87\x12\xbe\xe9\x23\x63\x95\x5e\xbf\x15\xb2\xf6\x21\x6e\xfe\xc8\x6b\xe7\x2b\x63\x28\xc4\xb0\x45\x6d\x53\xd4\x48\x97\x2d\xcf\x46\x95\x2a\x43\x0e\x71\x6b\x16\x72\x52\x71\xfb\xfc\xaf\xde\xb8\x58\xa9\x47\x38\x28\x52\xef\xb2\x7f\xa8\xe7\x12\x0d\x9b\xb9\x0c\x3c\x23\x32\x25\xd7\xd7\x77\xeb\x66\x6c\x36\xf1\x05\x96\xb9\xf0\xb9\x83\x4a\x87\x52\x18\x10\x80\x1f\x75\x7e\x69\xb7\x3a\x8c\x09\x30\xe3\x5e\xa6\xf1\x5f\xdd\x7b\x52\x39\xa6\x71\xa6\x53\xb2\x11\xe0\x1c\x39\x69\x71\xc4\xc3\xc2\xe9\x19\xb1\x80\x08\x50\x46\x21\xb7\x41\x36\x87\xa6\xcd\xe8\x82\x23\xf5\xab\x5e\xd9\x2a\xc7\x4e\x25\xde\xa8\xa9\xbf\xdb\x89\x99\xba\x3d\x4a\x8b\xab\x90\xc1\xdf\xfe\xbc\xa8\xeb\x8a\x37\x90\x4d\x4c\xd9\x1c\xee\xcb\x8f\xbd\x4d\x05\x5a\xb0\x90\xf3\xb1\x2e\x52\x6c\xf0\x4d\x4a\x39\x3a\xb0\xd8\x3b\xe2\xc2\xf6\x72\xc5\x4f\xd6\x22\xca\xbd\x25\x3f\x8a\x1b\x20\x97\xca\xd1\xb8\xc9\xff\x8b\x5f\xc0\xf1\x21\x19\x7d\xaf\x5a\x0c\x33\x14\xd7\x05\xa5\x72\xe4\xaf\x4c\x05\xb1\x38\x81\x8f\x6f\xba\x9b\x64\xf6\x32\x65\x6a\x09\x0e\x5b\xfc\x8a\xf6\x9f\xd1\x95\xba\x5b\x8c\x7b\x0d\x8b\x2e\xea\x9c\x81\xda\x4a\x32\xea\x10\x5f\xb4\x45\xc7\x3c\xc8\x73\x8d\xeb\x18\x09\x38\x39\xa5\x30\x6e\xad\x56\x22\x00\xea\x83\xa7\x36\xa2\x14\x39\xfc\x98\x06\x3c\x01\x23\xe7\x2e\x3e\x1a\x70\x15\xb9\xcd\x0a\xec\x5f\x50\x82\xe8\xe4\x91\x67\x09\xf5\xf5\xd1\x7c\x5f\x6e\xfd\xcc\x4e\x65\xd7\x2a\x1d\x85\x5e\xa9\x3d\x3d\xb5\x34\x25\x5e\xa0\x4e\x6d\xe4\x42\x3d\xec\xa6\xe8\xa4\x8d\xa3\x35\xc4\x07\x98\x38\x08\x01\xc9\xdf\x68\x5d\xed\x30\xce\x8e\x92\x97\x34\x5c\x19\x0d\x7b\x80\x88\x33\x70\x22\x4b\x30\xa0\x43\xd1\x1c\xe1\x12\x21\xb0\xfe\x1d\xaf\x5d\x98\x3d\x47\x59\x88\xf3\xb0\x97\x12\x28\x73\xc8\xbd\xcc\xdd\xa2\xcc\x88\x6c\xda\x02\xf2\xdf\x67\xae\xd0\xae\x51\xd2\x20\x26\xd7\x0c\x80\x33\xff\xc4\x8e\x36\x23\x3a\xcc\xb2\x46\x74\xc5\xd2\x04\x58\xb0\xd2\xad\xf1\x79\xab\x60\x56\x9b\xd4\x16\x95\xbe\xbc\x47\xd1\xda\x07\x91\x04\xc2\x85\xb2\xf3\x47\x7b\x85\x1a\x27\xa3\xf5\xf8\x9e\x91\x61\xf1\xcb\x0f\x66\xf7\x41\x2b\xac\x51\xdf\x46\x0d\xc5\x18\xf9\x85\x03\x12\x7b\x0a\xb3\xaa\xc3\xaf\xb4\xf5\x01\x7c\x31\xed\x9d\xb2\x78\xbc\x96\x13\xd7\x2d\xe2\xd0\x06\x09\x34\x88\x54\x5f\xe1\x94\xe6\x57\x8f\x5d\x60\x26\xa6\xa7\x34\x77\xe2\x61\x75\x58\x8f\x3c\x3e\x3a\xbe\x5c\x73\x5c\x33\x60\x4f\x4b\x47\xe2\x37\x23\x65\x04\xe0\xb7\x0c\x8b\x18\xf0\xa3\x3f\x38\x50\xae\x0b\x66\x5c\x56\x3c\x37\x61\xa0\x5c\x74\x93\xf8\x20\x83\x15\xff\x79\xeb\x26\x99\x12\x54\x13\x05\x92\x6f\x9d\x50\xd2\x63\x6a\x76\x87\x8c\x36\x40\xa0\x62\xf0\x3c\x9e\x06\xde\x12\x32\x07\xb9\x7e\x1b\xaf\xbb\xf0\xeb\x87\x84\xb4\x78\xc0\xb3\xd3\xdc\xe7\x5f\x3a\x5f\x15\xd1\xc2\x25\x86\x1b\x0d\x21\x3e\xd3\xd4\xc4\x82\x51\x83\x28\x89\x5f\xae\x5b\xea\x11\xb3\x44\x98\x2a\x7a\x70\x85\x7a\xb4\x04\xd3\x09\x5a\xca\xcf\x4b\x36\x62\xc3\x8a\xcf\x56\xa1\x7b\x5f\x9b\x30\x54\x5d\x24\x95\xf7\x68\x93\x54\xc4\x52\x79\xb1\x3b\x0f\xeb\x42\xd0\xc4\x0e\x92\xdc\xfc\x7f\x3f\xab\x0b\x93\x60\x23\x4e\x0b\x05\x07\xe8\x0b\xab\x34\xb6\x1b\xb9\x3b\x24\x26\x09\x92\x03\xfd\x53\x45\x92\xc3\xa2\x0e\xf5\x71\x4f\x28\x04\x16\xf7\xbd\xab\xc0\x68\xdc\x80\x64\xd5\x73\x72\x3b\x27\x68\xbc\x12\x04\x46\xd3\x7c\x20\x3f\xe4\x05\x4d\x68\x84\xf2\x28\x21\x32\x59\x6b\xef\x79\x6a\x09\x99\x70\x4f\x0a\xdf\x7f\x5f\xef\x27\x37\x12\x10\xe7\xc2\xbb\xb2\xe9\x7c\xcd\x46\xbd\x48\x35\x24\x2e\x98\x1a\x4e\xb7\x8a\xb9\x1b\x20\xd7\xa8\x59\x70\xaf\xa6\x91\x3a\x91\x55\xe0\x3b\xdf\xd6\x9c\xeb\x6d\x14\x34\x08\x9a\xe8\xa4\x3c\x82\x27\xc7\x89\x62\x9f\xdb\x0f\x82\xd0\xc8\x26\x09\x1a\x09\x2c\x40\x08\xc9\x71\xd1\x2f\x96\x88\x46\x39\xe9\x29\x35\x31\x86\x92\xe8\x83\x2b\x45\xd7\x0b\xdb\xdc\xb7\x38\x7b\x7b\x2c\x17\x5e\xc2\x7e\x58\x31\x61\xb6\x52\xd8\x35\xe4\xff\x42\xd0\x4a\x50\x79\x7f\xda\x9c\xfd\xe9\x69\xab\x4f\x54\x99\xb3\x14\x6c\x25\x23\xdc\xc1\xa1\xf0\xaf\xd3\xe5\xf8\xd8\x44\xa5\x72\xb4\xff\x21\x9d\x73\x65\xdb\x48\x74\xfd\x8b\xcb\xd7\x6b\x12\x6e\xd0\xea\x83\x9a\x04\x88\x51\x93\x15\xc1\x2e\xd7\x45\x90\xc4\xc4\xdf\x32\x6c\x73\xf6\x75\x4f\xf9\xc8\x54\xde\xf3\xd9\x3a\x47\xd7\x98\xae\xe0\xc4\x6e\xac\xe0\x3f\x99\xfd\x57\x84\xcb\xf6\x46\x0f\x6f\xe2\x15\xc1\x02\xec\xb4\x2b\xaa\xe7\x36\x6d\x57\x42\x4b\x9c\x07\xc8\x5e\x46\x61\xf9\x4d\x1d\x0a\xbe\x88\x19\x22\x8d\x79\x73\xb3\xfe\x2b\x7c\x0e\x25\x2a\x95\xa3\x3d\x67\x86\xeb\x6f\xb5\x4b\x88\xba\x7c\x7a\x90\x46\x57\x40\xbd\xa9\x04\xd0\xf2\x22\xbf\x68\x6a\x84\xc1\xf9\xc9\x7f\x31\xaf\xc0\x3f\x78\xa5\x17\xd7\xdb\xf1\x85\x48\x4c\xed\xec\x60\x64\xa6\x26\x83\xff\xf6\x94\x9e\xf8\x1b\xd8\xa9\x60\x96\xb4\x69\xcf\x98\x8a\x64\x12\x18\x69\x71\x32\x69\x61\xa7\xa6\x79\xd2\x4c\x9d\x74\xfb\xf2\x57\xad\x1b\x96\xa8\xb4\xdd\xbe\x44\xc5\x31\xff\x4c\xa3\xd8\x5b\x88\x39\x42\x6a\xac\xf0\xe1\x95\xd9\x00\x95\x78\x76\x28\xb9\xcf\x30\xcd\x88\x12\x26\xd9\x29\xe0\xd4\x53\x04\x05\x69\x18\xc4\x55\x98\x07\x3f\xe7\xd8\x7a\x99\xc5\xc2\x9b\x91\xc0\xfe\x6f\xef\x14\x54\x59\x52\xc1\x8c\xa4\x8a\xe7\x85\x63\x5a\x75\x9c\x5a\x19\x8a\xcb\xf9\x80\xe6\xbc\x95\x5a\x1b\xc5\xc9\x49\x74\xdd\x90\x91\x4a\xda\x5c\x65\xc8\x0f\x58\x68\x24\xae\x51\xb9\xeb\xa4\x1e\x41\x9c\x67\xf3\x9b\x7d\xf5\x56\x55\x28\xd1\xc5\x55\x48\xc2\xa1\xfb\xf0\xf7\xaf\xe8\x30\x71\xd7\xa0\xcc\x9b\xd8\x9e\x18\x3c\xb7\x96\x1f\xed\x8a\xcd\x71\x34\x51\xae\x5b\xc9\x5a\x89\x2b\x4a\xa5\x7b\xf7\x2a\xa1\x93\x92\x44\x41\xad\x2f\x3f\xeb\x3e\xe9\x56\x6f\xab\xc4\xeb\xdc\x6d\x0a\xfb\xa5\xe2\x73\x13\x8f\xe8\xaf\x67\x5f\xe8\x4a\xc6\xb9\x5d\x61\x71\xf5\xa6\x60\xbf\xc7\x6b\x2a\x57\x1e\xb1\x6d\x94\x68\x0a\xe4\x6e\xd6\x20\x29\x89\x6a\x0f\xa7\x1b\xef\x7b\x9c\x5f\x6c\xb7\xe0\x1e\x30\xa0\x8e\x17\xf2\x52\x4b\x01\x06\xdb\x94\x32\x6e\xb6\xc5\xa4\xc4\x5d\x3b\xad\x63\xd3\xb6\x4e\x95\x40\x82\x13\xed\xb7\xc2\x77\x1e\x52\x99\x25\x0e\xe7\x6b\x2f\x7c\xbc\x5d\xf6\x56\xa8\x38\x74\x54\x3b\x54\x1d\x1e\xd4\xc2\x00\x14\x1b\xac\xe9\x0e\x98\x2c\x74\x9c\x44\xfd\xa7\xb8\xec\x79\x4d\x91\xcc\x0d\xc0\x09\x4a\x60\xc9\x8a\x23\x3d\xad\x86\x71\x84\x8d\x58\x4a\x11\x2f\xde\xba\x6e\x98\x42\x2f\x71\xa5\xa4\xf0\x0f\x1f\xd6\x20\x3d\x94\xb9\xa9\xf1\x56\x61\xb4\xab\x99\xb6\x3a\x98\xd5\xb0\xd0\xb3\x28\xbc\xbe\x39\xfb\xbd\x7e\x1c\x6d\x31\xa9\xb9\x41\x4a\x4d\xff\xcf\x2d\x69\x1f\xce\xb1\x15\xb4\x4e\xfe\x9e\x23\xba\x79\xe6\x94\x59\x5d\x49\x86\xd0\xb7\x38\xfb\x97\xbd\xa8\x86\x12\x6e\x5d\xe1\xa5\x1e\xc5\x2e\xcd\xc6\x66\xf2\x6a\x77\x69\x35\x4d\x93\xd1\x94\x0e\x97\xab\x9c\xec\x48\x73\x72\x0a\x74\xca\x1b\x96\x2d\x89\x6e\x7b\x54\x91\xb3\xf6\x03\xe2\x80\x92\x5b\x34\x47\xbb\x21\xaa\xc4\x95\x74\x97\x1c\xde\x76\xbe\x9b\x21\x86\x29\xf9\xf1\x33\x93\xb2\x6f\xa4\x4e\x99\x93\x35\x0d\xdd\xf8\x90\x4e\xfc\x70\x3c\x45\xcf\xec\x7b\x6b\xb4\x66\x8c\x47\x89\x2d\x50\x4c\xc7\x1e\x14\x82\x88\x71\x05\x2d\x80\x96\xf9\x2f\xf7\x0c\x51\x48\x0f\xc4\x87\x84\xf4\x52\xd5\xb1\x86\x70\x73\x97\x7f\xdc\xa7\x61\x98\x2a\x71\xa6\x02\x46\x09\xf9\x29\xbd\x59\xe5\xe1\x99\xb3\x79\xe4\xfb\xe5\xd4\xb4\xea\x0c\x4d\x94\xd0\xc6\xb6\x6a\xc6\x24\x0e\x36\x2c\xe4\x12\xdf\x49\xfa\xd8\xc5\x05\x42\x16\xc4\xb7\x28\x8f\xe0\xc1\xaa\xec\x63\x75\x87\x2c\xc1\xa0\x47\x2b\x15\x22\x1b\x77\xe5\x01\x03\x53\x7e\xbe\x6e\x1c\x22\xd3\x16\xec\x36\x08\xa3\x2e\x27\x68\xc4\x8f\x79\xf1\x3e\xde\x8a\x71\x88\xc1\x28\x07\x24\xc5\xff\xe6\x8e\xf1\x69\xba\x30\x6d\x06\xbc\xa4\xe7\x2c\xfe\x3f\xce\x23\x4c\x55\xa0\xdd\xdb\xa5\xf9\xde\xb5\x5c\x6c\x00\xb4\xd3\x4f\x64\x9d\x8b\x97\xef\x55\xa5\x6e\x02\xe0\x73\xf1\x0e\xe6\xb8\xa5\xda\xcd\x63\x0b\x29\xf9\x71\xf1\xbf\xbb\xae\x43\x74\x97\x30\xa3\x46\x32\xd3\xff\xf8\x29\x21\x17\x4e\x9b\xae\x67\xa3\x16\xff\xa0\xef\xdc\x24\x57\x8b\x51\xde\x19\xc9\xf5\x2e\x1f\xe6\x66\xe6\xd8\x2d\x71\xc5\x2f\x58\xa2\xca\xb7\x77\xcd\x9e\x11\x7f\xdb\xf8\x6e\x85\xae\x89\x9c\x0a\x1f\x95\xc1\x97\xe6\x2b\x6e\x36\xe5\xaa\xe1\xb8\xee\x68\xf1\x9e\x44\x1c\x10\x27\xed\x50\x79\x95\xc4\x07\x7b\xbc\x08\x0d\x69\x4b\x6c\x78\xb0\x9f\xb7\x4d\x1b\xe1\xa0\x8a\x2d\xd0\xd4\xb9\x2f\x1f\x38\x5f\x1d\x0f\x19\xc2\x6e\x0f\x7e\xc7\xd3\xcb\x47\xca\x80\x65\xea\x50\xfc\xed\xc3\x15\x2b\x17\x2e\x15\x92\xec\xb7\x13\xdb\x74\xa8\x6c\x40\x6c\xde\x52\xfc\xb3\x86\x49\xe5\x42\xaa\x69\xbb\x65\x93\x32\x06\x06\x2b\x83\xf8\xc1\x9e\x5d\x39\x52\xe1\x12\x21\xd7\xe7\xf2\x45\xc9\xb7\x3d\xb1\x75\x48\x72\xb4\x19\x32\x04\xc4\xf9\x56\x9d\x1e\x26\x5c\xf1\xc5\x16\xfe\xfa\xa1\xec\xb1\x6f\x12\xdb\xc6\xad\x89\x73\x94\x28\x36\xe0\x0a\x4d\xfa\xc1\xc3\x06\xa9\x72\x36\x3a\x3f\x6c\x5f\xec\x91\x52\x80\xb3\x26\x97\xca\xd1\x7f\xe5\x87\x2a\xa0\x0a\x37\x60\x50\x3e\x76\x6a\xc2\xda\xbe\x45\x9b\xc9\xae\xcb\xbd\xbe\x4b\x95\xc1\x70\x0d\x5e\xa4\xe4\x9e\xea\xe4\x1d\xa6\x2a\xec\xb7\x5f\x29\x61\x38\xde\xee\xc2\x31\xfd\x2e\xad\xbb\x87\x5d\x33\x64\x09\x6b\x7f\xcf\x92\x6c\x72\x6f\x22\x97\x88\x24\x58\x3e\x63\x51\x11\x4f\xb2\x43\x43\x29\x74\x6a\xb3\x74\x10\x5e\x45\x48\x36\xac\xdc\x3a\x38\x83\xbf\x2f\x95\xa3\x01\xd5\x6c\xaf\xb4\x81\x08\x97\xb4\x2c\x9e\xed\xea\x26\x9e\xe1\xdd\x21\x4e\x6c\xeb\xbe\xb6\x5c\x45\x84\x00\x1b\x1e\x36\xde\x86\x93\x9a\x79\x28\xef\xb9\xa7\x14\x97\x68\xc6\x66\xbe\xe4\x4d\x86\xfd\xc0\x16\x37\xcf\xf2\x01\x6d\xa6\x1f\xb6\x1c\xe7\xf5\xe5\x5f\x7b\x2d\x3b\xc9\x6e\x10\x1f\xf5\x0b\xec\xff\xa8\xb0\x94\xab\x22\x1b\x06\xb6\x73\x5f\xe0\x97\x51\x62\x9f\x27\xbe\xaf\x43\xe9\xe5\x21\xd7\xc5\xc9\x84\xf2\xdb\xaf\x48\x77\x70\x66\x2b\x73\xec\x93\xbb\x64\x68\x0d\x15\xc0\x75\x7e\xc1\x49\xad\x2e\x77\xcd\x89\xac\x02\xfb\xf8\xba\xcd\xd9\xe8\x53\x43\xac\x82\x6a\x49\x41\x90\x0b\xc6\x69\x9a\xf2\x0c\xfb\x40\x19\x4a\x2c\xa5\x7a\x94\x53\xea\xb7\x9c\x0a\xb5\x49\xaf\x20\xa4\xcf\x1a\x7f\xa9\x9e\x88\xf9\x08\x8a\x21\xbd\x9f\xfd\xb6\x8e\x54\xc6\xa4\x37\xd9\x67\x3f\xd8\x20\x6f\x37\x0b\xd9\x5c\x75\xea\xb4\x46\xef\x69\x24\xd0\xd2\x68\xf6\x3b\x8a\x5c\x10\x71\x3c\x1b\xa0\x71\xc5\x4b\xd7\x6b\x09\x51\x83\x18\x9a\xcd\xd0\x73\x67\x84\x8e\x04\xa3\x55\xc2\xd9\xd9\x85\x67\x5e\xd2\x28\xff\x15\x70\xba\xc4\xa9\x4e\x5e\x9e\x0d\xd0\xd8\x15\x80\xf6\x60\x24\xf5\xce\xcf\xb5\xd6\x69\xb2\x47\xd4\x8b\x93\x94\xe4\x0d\xcf\x59\x9d\x5e\x82\x1e\x6d\x6b\x7a\xe6\x3f\xbd\x59\x43\xfc\xa0\x86\xd0\x2c\x2e\x4d\xd5\xc8\xc3\x36\x9a\xd8\x95\xc2\x40\x36\xca\xd9\x2c\xd7\xa2\xfd\xc9\x35\x7c\x4b\x57\x18\xa9\x21\x93\x00\xfb\xaa\xef\x39\x85\x26\x84\x41\x50\x30\xad\xa9\x7e\x67\x4b\xf1\xaa\x26\xb4\x59\x26\x0f\x48\x46\x3c\x0d\x12\x24\xb7\x78\xf4\x9d\x41\xe3\xb4\xfe\xe6\xbc\x7e\x75\xd4\x90\x39\x24\x39\x87\x21\x63\x18\xac\xee\xf2\x4f\xed\x6c\xab\xf6\xea\x09\xf8\xee\xc4\xe2\x8b\xd5\x0f\x5e\x3a\x6f\x62\xf6\xdd\x94\xca\xd1\xc6\xa7\xcf\x53\x01\xcd\x06\x66\xf0\x93\x0e\xce\xd5\x85\xd2\x5d\xca\x38\x33\x00\x64\xc1\x34\x65\xce\xb8\xa0\xf3\x32\x5d\x98\xa7\x0f\xcb\x4d\x2d\xc0\x20\xdc\x10\xaf\xaf\x78\xfd\x7d\x72\x74\x22\x50\x84\x6d\xf0\xa0\x19\xf7\xa6\x07\xb4\x81\x15\x1d\xb5\x07\x35\x2d\x1c\x9f\xda\xc8\x05\xf0\x8e\xfc\x6a\xfa\xae\xac\xa1\xd2\x3e\x17\x34\xb9\xae\x16\x19\x94\x21\x8c\xd1\x07\x3f\x75\xae\xb4\x90\xa3\xa5\x72\x74\xcf\xab\xfa\x64\x96\xd3\x68\xb8\x2a\x8d\xf9\xa0\x16\xa4\xe3\x9f\x2e\xa4\x80\xee\x99\x2f\x79\xf7\x93\x41\xf6\xec\x7f\xeb\xd6\x6c\xfc\x51\x45\xcf\xe6\x63\x6b\x07\x8a\xb5\xac\x80\xae\xd9\xd2\xcd\x0a\x4d\x92\x2b\xf4\xf7\x15\x3f\xfc\x6c\x16\x52\x6c\x58\xa8\x81\x6c\x22\xe8\x5f\xc9\xa9\x33\x15\x25\x31\xe2\x56\x89\x4b\x02\x98\x27\x7e\x6a\xbc\x2c\x19\x1b\x8a\xe0\x6d\xed\x40\x7a\xc7\x19\x58\xb9\xfc\x0a\x4f\x9d\xd0\x11\xd3\xb4\x87\x98\x42\x2b\xa8\x78\xfd\x7e\x9d\xb3\xe9\x93\x80\xa4\x8d\xb9\x56\xef\x45\xfa\xe3\x66\x95\x95\x0b\x07\x9e\xcd\x26\xc4\x73\x78\xba\x71\x41\xb7\x66\x59\x8e\x08\x2b\x31\x44\xfc\x54\x11\x32\x7f\xc7\x09\xad\xc1\xd5\x74\x31\xe3\x50\x51\x1e\xa5\x2e\x9b\x25\x56\xb6\x1e\xda\xf1\xdb\xdc\x3e\x57\x65\x4f\xb3\x04\x93\x76\xf6\x31\x05\xe0\xe7\xa1\xf8\xdb\x3f\xf9\xa8\xde\x2e\xa8\x89\x9b\x07\xe2\xb7\xf9\x8a\x6a\x7a\x49\x01\x4f\x14\xbd\x79\x46\x0b\xea\x3d\xc8\x48\x35\x82\x4a\x1a\xc8\xc5\x63\xc4\x11\xdd\xd0\xff\x33\x53\x97\x3d\xa3\xa1\x27\xdc\x3b\x3c\x4d\x38\x81\x51\x3b\x31\xf6\x78\x7b\xac\x4c\xb8\xe2\x3c\x1d\x06\x80\xc5\xe9\x91\x4e\x1b\x01\xda\xab\x20\x49\xfc\x78\xa9\xca\x53\x70\x2a\x28\x69\x0e\xdd\xb1\x6f\xb4\xb6\xc3\x0d\x1b\xa5\xe4\x4a\x68\x6a\xdc\x71\x48\xe6\x9b\x71\x4d\x14\x47\x2c\x87\xdf\x76\x0f\x6c\x12\x5d\x0c\x39\x6e\x1a\xd2\xa1\x80\x37\x01\xad\x1e\xff\xe6\x31\xc7\xf4\xa9\x66\xe8\x9a\x49\xfa\xff\x80\xe2\xc1\x6d\x12\xcf\xa6\x0e\x0a\xb8\x01\xe5\x8b\x07\x78\x2e\xbf\x14\x1c\xe7\xb0\xc9\x87\x93\x03\xce\x51\xb4\xdd\x7a\x19\xb2\x08\xf0\xc8\x1f\x55\x91\x87\x20\x61\x0e\x60\xd5\xef\x3d\xdb\xa1\x96\x92\x01\x46\x61\xfc\x21\x5f\xc8\x67\x13\xa0\x0a\x12\xf4\xd8\xfc\x0b\x2b\xe5\xec\xb3\x8a\xe1\x34\xfe\xc7\x84\x4b\x64\xa1\x40\x40\x1f\x1d\xeb\xd9\x75\x5f\xd1\x3f\x3c\x56\xff\xc8\xfa\xc4\x76\xbd\xa9\x40\x13\xba\xf2\x61\x9a\x2d\xf6\xc4\xb4\x99\x59\xd6\x66\x37\x6a\x21\x3b\x3e\xe3\x56\x46\x90\x37\xff\xd5\x51\x83\x92\x27\xb5\x11\x54\xae\x33\x56\xa8\x1a\xf1\x06\xc3\xc8\x17\xaa\x40\xd1\x94\x77\x34\x34\x1e\x23\xb5\xb8\x62\x4d\x40\x01\x33\x7a\x2f\xd4\xe3\x1e\x9f\xd6\x8b\xde\xc7\xa5\x45\x85\xf7\xe5\x31\x04\xab\x50\x57\xb6\x45\x15\x39\x19\xdb\xdc\x2f\x77\xaa\xfa\x24\x86\x45\x38\x9a\x64\xae\x18\xba\x54\x89\x28\xef\x6a\xcf\x69\x02\xec\xc0\xa4\xcc\x8a\xf9\x9e\xeb\xa6\xc0\x51\x17\x4f\x6a\xcb\xfc\x06\xed\x4e\x6f\xaf\xba\xa5\xc8\xb3\x7c\x6a\xb2\xd6\xd1\xa2\x44\x4e\x1a\x8a\xab\x5e\xcc\xae\xbe\xd1\x8b\x18\x34\x04\x3f\xbf\x53\xfd\xe5\x3d\x01\xd7\xea\xfd\xf1\x58\x05\x41\x4e\xc1\xee\x86\x84\x4e\xfc\x41\x63\x2a\x17\x68\x75\x93\x89\x59\x8d\x8a\xd5\xfc\xde\x4b\xe9\x8f\xa3\x97\xa9\x92\xb7\x43\x46\x5d\xa8\xd5\x8b\x49\xbb\x88\xcb\xac\x2c\x7c\x5d\x53\x2b\x30\x02\xd2\x00\x19\x71\x0e\x34\x99\xbd\x30\xbb\xd5\x6a\x16\xa6\xac\x66\x69\x08\xff\xdc\xad\x9b\x34\x7c\x1a\x75\x03\x8b\xdb\x56\xf3\x9b\x74\xc2\x9b\x3a\x6d\x84\xd5\x70\xe2\xe9\xfe\xd4\xbd\x03\x45\x5d\x44\x4c\xb8\xcb\xce\x5d\xdf\x8f\xff\x35\x4f\x5a\xef\x3c\xa3\x03\x63\x02\x44\xec\x84\xe4\x5d\xf8\xe4\x3e\xd9\x7f\xe8\xc6\x8c\x3a\xca\xb0\x39\xf7\x95\xe7\xe4\x5f\x86\xae\x98\x54\x09\x85\x8b\xa3\xdd\x4a\xdd\x4e\x0c\x8e\x45\x29\x3f\xae\xdf\x75\x0e\x65\x29\xdb\xf8\xb3\x3d\x4a\xa9\x8d\xdc\xc0\xe2\x30\x88\x81\xef\x64\x6b\xed\x8a\x48\xfa\xbe\x34\x49\x58\x3c\x63\x52\xb3\x20\x4d\xba\x23\xca\x86\x2e\x8b\x86\x7e\x40\xd5\xf6\xf6\xa2\xe5\x52\x53\x2e\xb4\xe3\xa2\x51\x48\x3e\x26\x1e\x12\xb7\xbe\x36\x21\xbb\x7e\x96\x83\x40\xb8\xde\xa3\xed\xde\xc7\x5f\x7a\x5d\x10\x0d\x55\xeb\xdd\x35\xfc\xe6\x43\x41\x40\x99\x8b\x5b\xbc\x11\x75\xcb\xbd\x1d\xea\x3d\x14\x50\x6e\x4f\xb2\xe2\xa8\x10\x44\x01\xff\x19\xc2\xbb\x56\xb9\xa7\xf7\xc8\x53\xeb\x12\x03\x24\x5e\x3e\xf5\xbc\x0a\xca\x4f\x49\x96\x77\x32\x0d\x55\x47\x1d\x62\x10\x13\x1c\x51\xe2\xc7\xf9\xc0\x9b\x17\x6a\xf9\x1d\x46\x41\xfc\xac\x22\xde\xfe\x6a\x8f\xc6\xcf\x43\x2c\x10\x2a\xcc\xb9\xd7\x56\x2b\x7e\x4d\xc8\xad\xf1\x5c\xab\xf0\xc4\x68\xc5\xe3\x97\x26\x53\xd3\x41\x7b\x3b\x95\x29\x2c\x72\xeb\xd5\x10\x1e\xb1\xb0\xfe\xf9\xb4\x4b\x26\xfc\x92\x96\x2d\x89\x6e\x13\x2f\x0e\x4e\x8f\xe8\xc4\x98\x9b\xd4\x27\x6c\x08\xb0\x7a\xfe\xef\x06\x68\xc2\x28\x20\xbd\xc3\x93\x50\x31\x13\xbd\xb3\xa1\x38\x09\xa5\xa2\xf3\x0f\x9a\x3c\x45\x2f\x33\x1b\x23\x70\xe3\x87\x3f\x36\x4f\xc9\x56\xb6\x41\x98\x91\x55\xb4\xfe\x3f\xeb\xfa\x9b\x88\xa7\x15\x58\x61\x68\x47\x3a\x57\x70\xf9\x5c\x01\x84\x97\x3a\x86\x2b\x3d\x22\x1a\x60\x3f\x6d\xf7\xef\xae\x8c\xd6\xc2\x82\x51\xd7\xce\xfa\xda\x53\xb2\x65\x1a\xba\x71\x04\x34\x44\xc4\x8c\x5c\xc9\x62\xaa\x70\x2a\x16\x1e\x25\x5d\x7b\x80\xbb\x96\x24\x65\x6b\x07\xf0\xad\xe4\x63\x87\x40\x57\x13\xf6\xc7\xb9\x03\xb4\xdc\x35\x00\x45\x28\x3e\x0f\x2a\x5e\xbd\x86\xc7\x22\xdf\xc2\x8c\x54\xab\xa5\x72\xf4\x9c\x82\xb8\x40\x16\x43\x0e\x28\x5d\xbd\xa8\xe8\xed\x61\xdb\x2e\x19\x16\x65\x42\x85\x89\x2f\xd2\xc1\x49\xd9\xd7\x56\xa7\x0c\x0b\xcc\x05\xb4\x8d\x9e\xd3\x3d\x31\x6c\xea\xa7\x57\xe2\xa7\x9e\x4a\xe3\x04\xa9\xb6\x57\x7d\x5f\x9a\x20\x57\xb7\xc9\x38\xe2\xa7\x2f\x3f\xf5\xcc\x45\x7a\x41\xed\x60\x06\x66\x16\xc2\x33\x99\x0c\x54\xc5\x50\x5d\x1c\x30\xde\xbf\x7e\xf5\x35\x0d\xbc\xcc\x3b\x44\xf1\x2f\xd9\xb2\x5d\x13\xa9\x47\x95\x0a\x09\x02\xe1\xbe\x92\xec\x91\x01\xcf\x9d\xaf\xa2\x0d\x3d\xf8\x64\x98\x23\x45\xf3\x0f\x9d\x97\xc2\x3b\x54\x47\xf8\x39\xdc\xa1\xb1\x74\xa3\x8d\x33\x32\x89\x2b\x34\x90\x6e\x83\xda\x0d\x2a\x58\x94\xa7\x4e\xeb\x5e\x0c\x09\x6c\x4c\x20\xc2\x6f\x1d\xad\x0f\x1d\x59\x42\x1c\x8c\xa6\x68\x9c\x53\xe4\x73\xb4\xb8\x98\x12\x2c\x7a\x5b\xed\x84\x31\x87\xbb\x92\xe6\xb6\x4e\x1a\xa6\xf6\xbe\x6c\xe4\xf1\x4e\x73\xb4\xbf\xd8\x8f\xd4\x44\xfa\x69\xbf\x16\x90\x28\xc1\x44\x2e\x95\x23\xa6\xcd\x43\x51\xd3\x22\x76\x52\x60\xdc\xf1\xb2\x66\x07\x8e\x6b\x34\x20\x28\x10\x00\x2b\xf7\xb4\xcc\xed\x2f\x6b\x5a\xa0\x46\x86\x26\x67\xdb\x49\xd5\x90\xb5\xfa\xe5\xbb\x19\x5b\x39\x6c\x1b\x23\x16\x27\x05\x4f\xaf\xef\x10\x17\x74\xbc\x3f\xa8\x29\xbc\x68\x1e\x51\x88\xe6\x01\xd0\x31\xb8\x78\x44\xfe\xcc\xa8\x6c\x23\xaf\x42\x2d\x13\x65\x99\x9f\x7d\xc5\x52\x23\xed\x27\xf8\x3e\x34\x7d\xcf\x3f\x2e\x9b\xa6\xbc\x3a\x4c\xe0\xe1\x70\xf9\x5f\xb5\x56\x53\xe5\x46\x02\x56\x91\x7b\xf5\x71\x95\x8f\x46\x44\xaf\x35\x0e\xd8\x52\xb6\xdc\x86\x7c\x25\x77\xd5\x86\xfe\x6e\x6a\xfe\x46\xcb\x03\xb2\x3e\x6f\x29\xdc\xe8\xca\x47\x74\x86\xa4\x89\x93\x6e\x97\x75\x96\x14\xec\x0e\xda\x0d\x37\x3e\x72\xb5\xde\x57\x66\xd8\x0f\x38\x30\xec\x2b\xbd\xea\x20\xd5\xb6\x49\x0d\x33\x11\x3f\xff\xee\x94\x56\x52\x31\x9a\x82\x57\x72\xf3\x16\xab\x05\x6e\x32\x51\xea\xcb\x3d\xec\xb5\x25\x55\x34\x8e\x62\x09\x07\x6e\xed\x16\x19\x1a\x1a\xd8\xf7\xb1\x0d\xef\x75\x92\xf2\xf6\x38\x39\x36\x20\xfc\xf3\x1a\x43\xb3\x8d\x2f\xb8\x4b\xd7\x66\xcf\xfd\xd4\xae\x29\x33\xc4\xad\x7e\xd9\x04\x85\x3b\x81\x6d\x35\x20\xfc\x68\xcd\x88\xac\x02\x0a\x8b\x0b\x41\x83\xc3\x46\xfe\x7d\x84\xc6\x7f\xf5\x02\x92\x22\x05\x73\x3f\xbc\x66\x78\x92\x63\x13\x17\x03\x64\xd9\xa8\x03\x22\x3a\x7f\xfc\xf5\x44\x58\x7d\x46\xa9\x1c\x55\xf6\xaa\x2d\xe7\x66\x85\x82\xc2\x41\x9e\x2a\x82\x54\xca\x60\xf9\x05\x0d\x72\x44\x02\x51\xd8\xe7\x97\x3f\xa6\x9e\x6a\x83\x3a\x3c\x47\x58\xba\xab\x53\xc9\xd2\xc0\x0a\x1b\xfa\x37\x85\x27\xcf\x92\x79\x46\x85\x9a\x20\x3b\x78\xa8\x43\x15\x33\x4d\xcc\x9b\xb6\x29\x52\x11\x35\xc4\x35\xff\x8b\xd7\x0f\x87\x1d\x52\xba\x99\x30\xd2\xc2\x6e\x5d\xf5\x1b\x1d\xb3\x50\xf9\xed\x54\x48\xa2\xe7\x56\x1d\x1c\xab\x85\x09\x2e\x74\xa7\x99\x6b\x11\x3e\xb7\x28\x5d\x47\x1d\x50\x80\x68\x33\xb6\xaf\xca\x16\xcd\x95\x80\x70\x5d\x76\x86\x1f\x7b\x46\xa9\x53\x2a\x47\x5b\x56\x68\xb7\x9f\xe7\x31\xda\x48\xac\x49\xf2\xdb\x35\x2c\x78\x9d\xd8\x36\xa7\x7e\x40\xaf\xf9\xfd\x67\x87\x8a\x1d\x5a\xb5\x43\xec\xf2\xb5\xce\x9f\x3d\x4a\x8d\xf1\x40\x25\x13\x92\x9f\xf9\x9b\x7a\x74\xdd\x78\x93\x18\x3c\xcb\xf2\x00\xe2\x51\xb8\x4a\xe3\x1a\x9b\xc4\x07\xc7\xc2\x06\x4e\x7b\xa3\x85\xa7\x57\x67\x3f\xa5\x1b\x24\x04\xba\xd4\x09\xc2\x83\x3a\xb4\xc3\xb6\x93\x23\xf2\xcf\xb6\xa6\x65\x25\xb4\xeb\x13\xac\xfa\xb5\x9a\x21\x2a\xa0\xf3\x18\x46\x42\xbc\xa2\x2f\x3f\xe2\xd0\x79\x49\x44\x03\x95\x26\x57\x64\x98\xfb\x0f\x9d\x2b\x55\x78\xe3\x02\x3c\xb7\x6e\x8d\xf4\x4c\x43\xbd\xa5\x72\x64\xaf\x92\xc0\xb8\x2a\x6e\x96\xca\xd1\x07\xb7\xca\xb6\x7c\xaf\x22\x28\x57\xc0\x45\x05\xe4\x60\x18\x34\x04\x0d\xdb\x35\x56\x62\x2d\x8f\x8c\x3a\xec\xfd\x11\x67\x54\x87\x23\xc0\x9a\xc5\x7f\xbc\xa3\x4b\x13\xc6\xc0\x86\x95\xb2\x8c\x7f\xb9\x4f\x89\x5e\xa9\x7d\x13\x4c\x46\x46\x4a\xdf\x0d\x85\x94\x14\x9d\xdc\x2c\xab\xc3\x8a\x9a\x4d\xe5\xeb\xc7\xf9\x2f\x9a\x3d\x95\x9b\xed\xf4\xe5\xfe\xb2\x45\xd7\x5f\xb5\x41\xbd\x37\x51\x40\x69\x6d\xba\x50\xe9\x1f\x37\xdb\xd2\x98\x77\x8e\x28\x58\x88\x56\x05\x4a\x9b\x62\xd7\x74\x4d\x54\x05\xba\x94\x89\x8a\xe8\xe8\xa9\x6d\xe2\x0c\x89\xde\xf7\xd0\x86\x36\xce\xa7\x0e\x16\x7d\x9f\x68\xd9\x90\xf3\xf4\x77\x1c\xff\xf1\x13\x37\x8d\xd3\x53\x41\x46\x1b\x94\x04\x34\xab\x2f\xfd\xc4\x58\x19\x7f\x71\x8b\x6f\x82\x11\x6b\xce\x53\x1e\x2e\xf0\x0d\xe4\xc1\xce\xdf\xfa\xb2\x28\x34\x29\x20\x7f\xa3\xa1\x8a\xbc\x69\x9d\xda\x81\x0f\x4a\x3f\x85\x3f\xbd\xcf\x49\x61\x29\xf8\x5c\x54\x5b\xf9\x83\xaf\x8d\x95\x9f\x1b\xc2\x8c\x38\xb1\x44\x13\xb7\x0f\x6c\xee\x8f\xec\xd6\xdb\x1c\xb4\x89\x25\x16\x30\x5f\xdb\xae\x1f\x8c\x86\x00\x4a\x45\xb6\x76\x66\xb0\xdb\x4d\x5b\x62\x9c\xd2\x5b\xd4\xf4\xc7\xbd\x8c\x49\xe8\xdc\x31\x69\xae\x1f\x7a\x09\xe7\xaf\xd0\xd2\x54\xc0\x85\x47\xb0\x18\xff\x7e\x6b\xbf\x9c\x22\xfc\xff\x84\xbd\x7d\xbc\x15\x55\xbd\x3f\xce\x7e\x08\x0d\x91\xc7\x03\x22\x20\x1e\x09\x81\x84\x7d\x3c\x3c\x3f\x64\x3e\x00\x22\x22\xb2\xb9\x80\x88\x5c\x32\xd6\x9e\xbd\xf6\xde\xeb\xec\x99\x59\xe3\x9a\x99\xbd\xd9\xa4\xc4\x97\x94\xd0\x94\xb8\x64\xe4\x35\x22\x32\x2e\x72\x8d\xcc\x4b\x66\x84\x66\x66\x46\x46\x5e\xe3\x12\x19\xd7\xd4\x8c\x8c\xcc\xb8\x86\xe6\x35\x32\xce\xf4\x7b\xcd\x67\xad\x99\xb5\x66\xcd\xb9\xaf\xdf\x3f\xdf\xef\x0d\xe1\x9c\xbd\x67\xd6\xfa\x3c\xbe\x1f\xca\xd8\x4e\x5a\x41\x7e\xe9\x44\x9c\xd4\xa9\x03\x16\xd0\xec\xcd\x11\xca\xd0\x82\xbb\x63\x46\x20\x5c\x48\x21\xb7\x16\xf4\x1a\xb0\xca\x22\xe5\xfb\x9e\x4c\x01\x73\x3f\xd8\x33\xa2\xe7\xd0\xc7\x1f\xc7\xcf\xe6\x2b\x58\x33\xcb\xaf\x56\xf9\x42\x2f\x98\x79\x14\xbe\x95\x89\xed\xc2\xa4\x19\xa9\x5a\x60\xfc\x00\xc9\xaf\xa9\xfb\x9e\xbf\x8e\x36\xdc\x7a\xd2\x17\xf0\xcc\x02\x1e\x34\xab\x0c\x79\x3e\xe8\x40\xc3\x23\x7c\x64\x90\xb8\x46\x60\x25\x5f\xe0\xb3\xc6\xcc\xe7\xdf\x18\xac\x94\x3d\x60\x36\x0d\xef\x71\xeb\xaa\xa1\x0a\x2f\xd7\xa8\xd9\xc4\x20\x02\x97\xf4\x1f\xaf\x09\x35\x21\x13\xc7\x10\x87\x5c\x59\xd3\x6a\x0a\xbb\x46\xb1\xfb\xda\x25\x3d\xb2\xa5\x05\x71\xc6\xd6\x86\xa6\x65\xcc\xd5\xaf\x94\xcd\xe5\x15\x4b\x22\xe1\x73\x64\xbb\x28\xb6\xea\x7d\x61\x8c\x36\x89\x33\x3c\x5a\xc2\x2c\x96\x0a\xbc\x4f\x78\x82\x87\xbf\x94\xb7\xae\xc1\xfc\xa7\x2e\x96\x55\x21\x35\x08\xf6\x52\x0c\xb2\xec\xb2\x47\xf9\x6f\x5b\x74\x6d\x71\xb1\x92\x3e\x57\x1f\xe2\xe1\xa7\x86\xd6\x09\x39\xf1\x7f\xba\x35\x12\xdf\x32\x23\xe7\x8b\x7c\x9b\xd2\x88\x4c\x9a\xe4\xd5\x54\x93\xe2\x93\x5b\xe4\x2c\x94\x11\x0f\xca\xfb\xca\x50\x7d\x69\xeb\x79\xfc\x71\x72\xee\xe6\x82\xa9\x83\xc4\xc1\x35\x50\x19\xbb\xe2\x6d\xe5\xfe\xde\x47\xa9\xa6\x68\xe4\xc8\x9f\x1f\x3f\x44\xed\x82\xa2\xd3\x5b\xec\xce\x5c\x74\x40\x61\x01\xf3\xdb\x51\x28\x06\x5f\x1d\xa9\x30\x60\xcc\x30\x06\x84\x9d\x68\xf8\xf7\xff\xac\x07\x75\x60\xbd\x0a\x3f\xc9\x7b\xb6\xf0\xb4\x94\x70\x24\x2f\x76\xe7\x66\x8e\x95\x17\xcd\x40\x95\x84\x55\x7d\x66\xc1\x59\x09\x89\x6d\xc1\x02\xe6\xe6\x63\x8a\x6f\xb9\x69\x72\x5b\xb5\xcc\x8b\x59\x85\x4e\x02\xc8\x4b\x9e\x2f\x6e\x7d\x33\xee\x8b\x4d\x4e\x69\xc8\xf5\x3f\x23\xf1\x86\x0d\xdf\xb4\x31\x43\x25\x62\x46\x07\x3d\xd3\xf5\x54\x4f\x34\x31\x21\x78\x53\xde\x7c\x69\xb4\xb9\xd3\xd6\x76\x1a\xcc\x63\xd8\x78\xfe\x92\x57\x10\x97\x44\x9b\xef\xff\xee\x7b\x41\x5a\x17\xfe\xba\x65\x4b\x0a\xc5\x60\xc5\xeb\xf2\x91\xd2\x32\x76\x5d\xc1\xb7\x0a\x6e\xde\x95\x2c\x37\x1c\x46\xcb\x24\x29\x65\x9b\x79\x7d\xb1\xee\x4b\x5b\xf6\x0d\xe5\x22\xe4\xe7\xdf\xd9\xa6\x12\x3c\x2a\x98\xf1\x63\xfd\xb3\x6d\x72\xd7\xc6\xb7\x6f\x23\xc7\x44\x6e\x82\xc8\x30\xb0\xe3\x45\x6e\x82\xb7\xec\x52\xcc\x33\x28\x75\x4c\x88\x79\xbf\x59\x23\x5f\x4e\x35\x3c\x19\x5b\x14\x1d\x28\xd7\xc2\x82\x30\x9a\xbb\xfc\x1e\x69\x18\xfa\xb1\x54\x0d\x38\x74\x85\xb2\x96\x4c\xaa\x09\x7c\xef\xd1\xc1\xca\x20\xa9\x12\xa1\x11\x33\xbf\x5f\x34\x40\x3d\x03\x30\x4f\xc9\x5e\xf2\x88\x32\x5d\x80\x5d\x75\xa1\x18\x7c\xa2\x9f\xae\x5d\x8f\x4c\x31\xac\xd8\xbe\x27\x19\x72\xea\x36\x6d\x46\x86\x05\x73\x37\xc7\x31\xc7\xae\xc6\x03\xa7\x4d\x13\x55\x6d\x08\x62\x23\x68\xa1\x8e\xef\x1d\xa8\x0e\x04\x2d\x70\x3b\x3d\xbd\x9f\xe7\xc9\x55\xa8\x4e\x6d\x39\x68\x0d\x66\x0d\x1b\xac\xf6\xab\x0d\xec\x72\xc6\xf0\x04\xad\x40\xa8\x50\x3f\x4a\x44\x6f\x3d\xae\xe1\xcd\x1b\xc8\xa6\x0d\xcd\x4d\x6c\xe8\x91\x31\xf2\x21\x2a\xbc\xd8\x54\x98\xda\xb8\x3e\x39\x18\x31\x31\x36\x91\xf0\xe9\x94\x45\xd3\x6d\x9b\xf4\x76\x08\x98\x46\xa2\xbe\xfd\xf2\x2e\x9d\xfc\x85\xf8\xfd\x11\x4d\xec\xbf\x6b\x96\xde\x1e\x43\x95\x8a\x40\x26\x14\xbb\xf3\x73\x65\xf2\x14\x56\xe1\x8d\x01\x51\x4b\x43\x6d\x41\xce\xc9\xad\x59\x1a\xfb\xf2\xda\x10\xf3\xde\x7d\x5b\x59\x00\x90\x72\xdc\xbc\x05\x47\x03\x9e\xb0\x96\xd7\x08\xf3\x5a\x00\xee\x2f\x06\x77\xb4\x69\xe0\x0b\x9f\x45\xb7\x38\x33\xfe\x31\x59\x44\x62\xa5\x56\xcc\x9c\xb8\x5d\x77\x42\x34\x63\x1a\x4d\xa1\x18\x54\x05\x7d\x60\x6e\x71\xe9\x8a\x6b\x97\x2f\xbf\x36\xfc\x32\xad\xf9\xba\xea\x26\x31\xc3\x5f\x05\x2a\xc0\xd3\xe4\xd0\xcf\x45\x50\x5b\x8e\x7c\x48\x03\x3e\xf8\xcc\x13\x3b\xaf\xf1\x93\x45\x5e\xf0\x89\x90\x7f\x0d\x06\x3d\x2e\x95\x4e\xca\xbc\xf1\xea\x35\x66\xb8\x3a\xa0\x8c\xcd\x73\x88\x0b\x03\xbe\x47\xe6\x8d\xd3\xca\xd0\x5a\xa9\x55\x28\xe3\x82\x89\x0a\xeb\xa8\x6f\xd4\x26\x44\xb2\xf8\xc1\x3b\x5e\x32\xb4\x20\x23\xbc\x01\x02\x68\x2a\x56\xe8\x1f\x5e\x23\x75\x5c\xa9\x02\x74\xca\xde\xf5\xda\xf9\xd1\x35\x30\x39\x27\x65\xd3\x58\x59\x8f\x74\x61\x10\xb7\xe1\xf1\xfd\x5b\xa5\xc8\x75\xd2\x41\x36\x17\xf7\x81\xdb\x34\xea\x70\x3f\x55\xda\xa5\x50\x0c\x3e\x73\x19\x0f\xd6\x25\x93\xd8\x9c\x3e\x9d\xfb\xeb\x21\xd5\xef\xb9\x4b\x48\x63\x00\xf6\x73\x4b\xf2\x20\x37\x11\x2b\x58\xd4\xae\x42\x90\x88\xdd\x2d\xee\x7c\x4e\x8c\xe5\x23\x94\x1b\x7c\xd6\x5f\xed\x6c\x93\x4e\xed\x4d\xe5\x6b\x7d\x59\xe3\xf3\x98\xb4\x54\x8a\xc4\x8d\x7e\x78\x48\xd8\x60\x82\x2e\xf4\xd1\x61\x29\xfd\xc0\x1a\xa1\x36\xd7\x74\xcb\xfc\xe9\x6d\x55\xeb\xa6\x6a\x13\x0f\x31\x9e\x5f\xb2\x1f\x1c\x4f\x49\x8c\x30\x9f\xc4\x5a\xbc\xb9\x6f\x9f\xd1\x15\x03\xcd\x7a\x04\x18\xce\x7c\xf8\xea\x8b\x94\x18\xd7\xb2\xd3\x04\xdc\xda\x6a\x19\x82\x3d\x9f\xd9\xd4\x87\xc3\x75\xa5\x3d\x48\xa9\x60\x4c\x6a\x93\x7a\xa1\x18\x2c\x7e\x43\xe3\x62\x3b\xea\xc3\xcb\x7c\xb0\x48\xc7\xb1\xf0\xd6\x04\xc8\xa2\x9e\x22\xf4\x42\xed\x06\x66\x1c\x92\xbb\x75\x81\x92\x88\x09\xae\x9a\xd4\x08\xa3\x73\x6e\xd6\x7c\xa5\x95\x09\x2b\x59\x04\x7f\x9e\x59\xda\xa1\x1a\x09\x08\x58\x0a\x07\xb4\xe5\xfe\x3e\x54\x9b\x79\x51\xd8\xce\x01\x56\xbc\xdf\x4c\x6d\x1c\xee\x60\x54\xc7\x62\xa0\x9a\xbf\x7b\xbe\x52\xbc\x83\x3c\x85\xc4\x5a\x2c\xd8\xaf\x40\xc4\x4d\xe2\x79\x31\xc8\x7d\xd9\x3d\xfc\x50\x5f\x87\x6d\x0c\x1c\xb6\xec\x86\x0a\xaf\xa3\x16\x53\x56\xa1\x66\x3d\x1a\xc6\x3d\xbe\x73\xb8\xd2\x1b\x98\x98\x73\x7f\x3a\xa2\x93\x7d\xed\xa3\x4a\x7a\xb2\x11\x40\x3f\xb2\x83\x57\xcb\x94\x82\x5b\x51\x19\x3b\xe4\xad\x36\xa5\x46\xf5\x4c\x10\xb8\x01\xbe\xee\x01\x59\x11\x86\xb5\xa0\xca\x64\xdf\xfd\x92\xbc\x6a\xd8\xa0\x36\xb5\x44\xed\xf2\xb1\x67\x14\x55\xd9\x0a\xec\xfd\x83\xdc\x4c\x9d\x4f\x63\xe3\x26\x32\x61\xc7\x99\x7d\xfd\x05\xc5\x83\x0f\x23\xe8\x2e\xff\xb1\x75\x50\x14\x5d\x40\xc1\x0a\x88\x03\xc1\xaf\x5f\xd4\x88\xdd\x02\xd7\x10\xcc\xb6\xff\x6f\x26\xf0\xb2\x25\xdd\xb9\x53\x4c\x36\xa1\x5d\x88\x98\x85\x62\x70\x91\x90\x9f\xad\x60\x2f\x4c\xa3\x00\xab\xfb\xd2\xb3\x3c\x07\xd8\x5c\xb2\x92\x57\xa6\x6b\x56\xf1\xa6\xd4\x41\x55\x7e\x79\x8a\x0a\x03\x31\x52\x22\xcd\x3c\xf3\x0a\xff\xa7\x4b\x4c\x6a\xe0\xe8\xc1\x8e\x5f\xa9\x2f\x9b\xac\x0a\x65\x50\xd0\x44\x2b\xf7\xdf\x0c\x95\xfb\xa3\x2a\x43\x15\x4f\x15\x18\xce\x7c\xe2\x5e\x61\x3f\x80\x40\x81\xef\x9d\x40\xe3\x00\xf8\x20\x73\x09\x94\x2f\x71\x39\x7f\xb1\x43\x46\xeb\x9a\x0f\x41\x6a\xaa\xc2\xa4\x04\x5f\x72\x4e\x5c\xce\x4c\x65\x5a\x9b\x4b\x9d\x98\x64\xf4\x91\x91\x1a\xc2\x88\xfa\x42\x4a\x59\xed\xd2\xf0\xd1\x18\x60\xe7\xb6\xac\x54\x9a\x9f\xb9\x3c\xc9\x38\xc5\x48\xac\x4f\xd3\x4a\xa8\x64\x90\xf2\x4c\x6b\x08\xd4\x80\x73\x47\xd7\xea\x60\x11\x26\x6d\xac\xaf\xdb\xaa\x08\x3b\xe0\x06\xc1\x4d\x78\x9e\x57\xdd\x1f\xeb\x34\xd6\x00\xf3\x17\xa3\xe4\xbe\xbc\x58\x9b\x78\x73\xd7\x3e\x28\xb5\x2e\x98\x37\x4c\x49\x03\x55\x1b\xc0\xc2\xa2\x2f\xca\xce\xd2\xd6\x38\x1e\x0a\x03\xa9\x26\xe0\x58\x1c\xa5\xb9\x84\x00\x8d\xd8\xc0\x82\x1a\x96\x5d\xfc\x9e\xb2\x8c\xe6\xb6\xfa\x85\x62\xf0\x5f\x27\x47\x28\x47\x89\xf9\x55\x10\x33\x8e\x7f\xe8\xbf\x2a\xa0\xe4\x06\x35\x4d\x0c\xd9\xf7\x95\x73\x75\x92\x35\xf4\x57\xbc\xe9\x5a\x77\x46\x06\x67\x8b\xd8\x3d\xe8\xb1\x4d\x9a\x27\xd9\xed\x76\xcc\x6e\x7f\x67\x37\x8f\x01\xd7\xb3\x26\xb1\xcb\xc8\x8c\xce\x70\xf6\x8b\x8f\xe9\x33\x7f\xbb\x15\xed\xc4\xfe\x30\x40\x24\x60\xd1\xb8\x04\xa3\xfa\x68\x93\x52\xdf\x0b\x23\x43\xb4\x58\x18\x37\x2c\xf6\x20\x0a\x0b\x85\xdc\x6b\xa7\x65\x4b\xeb\x20\x13\xe4\x78\x31\xdf\x4c\x51\x51\xb7\xe7\xb7\x3c\xde\x26\x1e\x0f\xf2\xc0\xdb\x2f\x92\x26\x58\xf1\x84\x0c\x1b\xd3\x26\x4e\x87\xb1\x5a\xfe\x43\x0a\x83\x00\x5c\xd5\x3d\xce\x31\xee\xce\x7f\x76\x64\x24\x78\xe1\x3b\x11\xec\xb8\xd7\x6b\x3a\x58\x01\xc2\x28\x16\x47\xcc\x78\x2a\xb5\x2b\xae\x90\x48\x71\x9e\x8f\x8a\x9e\x5f\xc1\x87\xd6\x4b\x61\xed\x9b\x7c\xd0\xd6\x76\x25\xdd\x79\xc2\x5b\x36\xf8\xe7\xf9\x32\xa6\xd6\x91\x0a\x55\xe9\xce\xcc\x57\xf6\x68\x15\x13\x7b\x42\x04\x67\x9e\xa3\x63\xb3\x60\xae\xc7\xc7\xbd\x20\x56\xf5\x90\x66\xe2\xe6\xfa\xac\x4e\x1b\x5c\xcd\xd6\x54\x64\xdb\x04\xbc\x04\xae\xff\x25\xfd\xd4\x0b\x84\x1c\x11\xc8\x0e\x2f\x52\x32\x13\x30\x7a\x11\x8f\x17\xd9\x4b\x8f\x0c\x4f\x66\x5b\x3b\x81\xf5\xb9\x79\x65\xf2\x33\x54\x19\x1f\x68\x4e\x2c\x14\x83\x87\x37\xc6\xcb\x21\x0f\xa7\x04\x31\xb2\xc6\xda\x78\xbe\xbb\x0e\x29\x62\x34\xd9\x25\x23\x55\xeb\x3c\xea\x0b\xc3\xc4\x03\x8a\x47\x87\x50\x4a\x2d\x14\x83\xf7\x4b\x43\xd5\xd6\x76\xdc\xb8\x09\x70\x84\x0b\xc5\xe0\x53\x25\x5e\x80\xcd\x61\x7e\x15\xe4\xc9\x20\x43\x2e\x9c\xa7\x75\x08\x35\x30\x5b\x88\x22\xe9\x79\xcf\x68\xd3\x20\x58\x76\x73\x89\x85\xf3\xee\xd1\x34\x8e\x41\xcb\x2a\xfc\xb6\x42\x10\xea\xd8\xb0\xe1\x2a\x4c\x41\x1f\xab\x3d\xa6\x68\xae\x56\xe0\xa0\x07\xdf\xd3\xd0\x60\x93\x27\x4e\xeb\xec\x8c\xb2\xc4\xa6\xcd\x32\xaa\xcf\xe0\x03\xe4\x8d\xaf\x6b\xea\x00\x48\x10\xb0\xe2\xe8\x71\xea\x56\xf9\x19\xfc\x34\xa9\x78\xcb\xd4\x91\x5a\x83\x84\x6d\x90\x5f\x13\x3b\xdf\x9f\xbd\x34\x58\x99\x66\xcb\x76\x60\xdf\x10\x5b\x83\xc0\x89\x93\xf3\xef\x3b\x27\x26\x0f\x40\xcc\x07\x47\x66\x4f\x41\x3f\xdb\x39\x4c\xb6\xe4\x1e\xb1\xa8\x57\x6b\x29\xdd\xe4\xc6\xa7\x95\x09\x37\x43\x6e\xad\x50\x0c\xae\x3e\x95\xc4\xee\xcc\x28\x4c\xe3\x61\xaf\x5f\xbb\xcc\x1f\x13\x85\xf8\xfe\xc8\xcd\xc3\x94\x42\xa4\x42\x4c\x12\x9e\x7c\x11\xd6\x0e\x5d\x99\x5a\x87\x1b\x98\x79\x52\x4d\xe9\xdc\x63\xb2\x7a\x6e\x22\x66\xc2\xf9\x81\x9f\xfb\xc5\xe9\xf2\x5e\x0b\x89\xda\x42\x31\x38\xff\xf8\x40\x65\xeb\xe6\x43\x25\x1a\x98\xa2\x98\x03\x23\x5b\x78\x93\x07\xb7\x29\x25\xab\xcf\xc2\x67\x1e\xb6\xea\x63\x5e\x96\x3f\x73\xc6\x64\x61\xc9\xdf\x9d\xfb\x3e\x53\xce\x3f\xa5\x65\x0b\x70\x4f\xf9\x85\xbb\x87\xc5\xd7\x29\xa5\x99\x63\x36\xe4\xb2\x44\xa5\x2a\xe4\x9e\x38\x3e\x20\xaa\xc8\x4b\xbe\x09\x23\xf3\xc0\x1b\xaf\xa1\xe3\xcc\xb0\x3d\x12\xaa\x79\x7f\x7b\x79\x84\x0a\x12\x4a\x65\x12\xeb\xa1\x64\xce\x2b\x98\xc8\xae\xfa\x31\x86\x31\x73\xc3\xcb\xf1\x27\xa9\x29\x8e\x8b\xc1\xdf\xce\xc8\x6f\x35\x6d\xda\x0c\xf1\x65\xb3\xc7\x46\x6a\x84\x08\xc4\x3c\x62\x10\x27\x5a\xe5\x67\xf6\x9f\xab\x50\x63\x7d\x86\x79\x82\xf8\xc8\x33\x1a\x74\x8d\x67\x57\x51\xc8\xfc\x65\xb7\xee\x65\x45\x1c\x67\x42\xc2\xb0\xb4\x78\x2b\x57\xe0\x58\xe6\xe1\x26\x62\x0a\x62\x3c\x7b\xd3\xc1\xc8\xc7\xc8\xc4\x0a\x14\x31\xfb\xa5\x7e\xa2\x46\xf7\x6d\xd0\xfe\xec\xce\xbd\x3d\x2a\x4e\xaa\x1e\x48\xa0\x71\x51\x93\xb1\xc9\xca\xc1\x46\x1e\x32\x89\x0e\xce\xfb\xf3\x73\x1f\x4d\x66\x58\xec\x31\x1a\xa6\x39\xb8\xfd\x7a\xe8\x58\xb4\x86\xff\xee\x9b\x40\x14\x16\x28\x46\x2f\x29\xfb\x5e\x13\xf9\x62\x9f\x3a\xb3\xb7\x5e\xde\x79\xd8\xe4\xe5\xf2\x57\xce\x95\x30\x56\x10\x09\xc2\xae\x97\x86\xa3\x75\x6a\x24\xc6\x1a\x28\x85\xf0\x4c\xfe\x49\x4d\x88\xdd\x63\xe0\x79\x06\x88\x8b\x7f\x7b\x28\xd9\xd3\xab\x1a\xbe\xd1\x7c\xdb\x5c\x90\x92\xa4\x8f\x16\x4e\xdd\xd9\x0f\x34\x73\x71\x1b\x59\xb1\xa2\x40\xf0\xa0\xc2\x9a\x37\x6a\xd4\x44\x00\xf8\x86\x6f\xfc\x59\x4e\xfb\xe2\x9a\x6f\xc0\xa1\xd0\xef\xc6\xd7\x4a\xb2\x60\x45\x69\x6c\xd0\x03\x5a\x0a\xeb\xe2\xd0\x45\xfe\x9b\x9f\xdc\xa8\xe5\xd8\x26\x3c\x0f\x7e\xcc\xd0\x72\x65\x9d\x0b\x9c\x3f\x6c\x7b\xdc\xd7\xea\xee\x17\x35\x90\x22\x71\xc3\x6f\x2b\x86\x1b\xcd\xde\xc2\xe4\x1d\x97\xc2\xfb\xb8\xf5\x09\x8d\x7d\xcc\x88\x5b\x53\xfc\x81\xce\x7b\x70\x9c\xfe\xdc\x1b\x58\x48\xec\xe8\x27\xe5\xfc\x86\xe2\xdb\x4f\x00\xac\x54\x5c\xd8\xc3\xb8\x51\xe4\xbb\xe6\xae\x36\xe5\xb6\xbb\xd4\x16\x03\xf5\xfc\x25\xf7\xeb\xa3\x5d\xc7\x2f\x99\x61\x81\x2c\xd0\xad\x3f\xd8\xa1\x08\xc3\x22\xcb\x11\x0b\x8b\xa7\x5f\x10\x10\x32\xdf\xc1\xac\x41\x5c\xc0\xa7\x67\x86\x3e\x94\x00\xcb\x70\x46\x20\xb0\x91\xb6\x68\xdd\x82\x55\x42\xae\xdb\xea\x89\xd4\xf4\xd7\x73\x47\xab\x75\x71\xdd\x6d\xa2\x2a\x4e\x8b\xc5\x5e\x36\x46\xc6\x0b\x1b\x23\xfe\x3e\xf2\x9b\x4d\x8d\xc2\x82\x08\x48\x37\x8b\xd7\x3c\x61\xaf\x06\x81\x24\x16\xe8\xe6\x46\x79\xe1\x3e\xcd\xc7\xbb\xc2\x48\x59\x58\xdf\x07\x1f\xdc\xaf\xd9\xd4\x86\x5f\x1a\xe6\xa0\x42\xd2\x34\x3f\x70\x0e\xaf\x17\xe7\x09\x69\x30\xb5\x9b\xea\x78\x59\x33\x04\xf6\xed\x08\xcc\x50\x0c\xee\x3b\x9a\xd2\x71\x01\xde\xae\x28\x55\xe7\x75\x2a\xb3\xfb\x52\x17\xaf\x0e\xe1\x32\xdd\xfd\xba\x86\x9d\xaa\x22\x70\x62\x86\x86\x77\x8c\xc0\xd5\x23\x9b\xda\x2d\x8b\x78\x80\xd9\x78\x72\x78\xf2\x90\x94\x19\x6d\x88\x92\x38\x7b\xf7\x64\xde\x97\x2f\xe0\x50\xd8\x18\x07\xab\x29\xfc\x71\xdb\x1f\xc0\x25\xc1\x4c\x60\xdb\x9b\x6d\xd2\xae\xbf\xa1\x54\xbc\xef\x9c\xcb\xa7\x6d\x15\x3f\x2c\x4c\xc3\xbe\x7c\xfa\x29\x6d\x1c\x24\xbc\xf1\x04\xd8\xe2\xe1\xf6\x36\xa5\x08\x65\x8c\xba\x11\x81\x61\x8f\x8e\x05\xc6\x52\x67\x36\xd7\x7d\x26\xc9\x31\x41\x16\x2f\xe4\x26\x74\xa9\x60\x79\x49\x4e\x0d\xbf\xd4\xa0\xdb\x75\x15\x24\xca\x2c\x70\xd6\x11\x0f\x7d\xf9\x69\x45\xf5\x56\x99\xe0\x65\x8e\xdd\xa3\x63\xce\x4d\x62\xc4\x00\xc5\xd6\x58\x65\x79\x64\xf9\xae\x80\x68\xbd\xa5\xa0\x67\x4c\xcc\xed\x06\x2f\xee\x18\xa8\xd2\x67\xb9\xed\x5c\xe6\x0f\x0b\x95\xea\x91\xbb\x28\xe4\xc6\x5f\xa9\x93\xd9\xe2\xb3\x71\x60\xbf\x26\x50\x26\xa6\x06\xf1\xbe\xbb\x20\x39\xdc\x63\x39\x44\xf3\xc6\x15\xaa\xa3\x10\x64\xd4\x0a\x5f\x72\x65\x1f\x7d\x4a\x5e\x2a\x6c\x7b\x0c\x43\x0e\xba\xed\x79\xed\x94\xd5\x30\x8a\x4b\xa9\x15\x5a\x1a\x14\x26\xd8\x5a\x1a\xfc\xee\x65\x8a\x64\x37\x32\xcd\x02\x4c\x0d\x83\xdf\xbe\x92\xaa\x50\x5a\x52\x88\x6a\x63\x7b\x7b\xaa\x35\xa2\xb6\x4b\x60\x99\x16\xb5\x9d\x63\x0f\xeb\x8a\x29\xa8\x6c\x92\x48\x77\xb1\x3b\x73\x64\x66\xf2\x87\xf8\x65\xbf\x4a\x1b\x49\xb7\xf2\xcf\x3e\x1f\x67\x8e\x2e\x9a\xf6\x26\x6b\xcc\xd3\xb4\x1b\xd6\x3a\xc8\x8e\x5a\x89\xdc\xe7\x36\x29\x15\xe3\x38\x13\x23\x18\xa3\x67\xcf\xb9\x42\x91\x23\x0c\xbb\x2c\x96\x8a\x74\x7f\xbe\x3a\xf9\xd1\xea\x3e\x2b\x73\x37\x19\x65\xbd\x3b\xe7\x15\x59\xe8\x86\xe1\x50\x1d\x21\x94\x06\xf1\xb6\xb7\x86\x99\x85\xf9\x58\x2f\xf3\x35\x0d\x31\xe9\x98\xc8\x0b\x8f\x3e\x2f\x0e\x0c\x71\xc5\xe7\xf9\xb6\x4a\xbf\x08\x4e\xcb\xef\x50\x62\x18\xf1\x0d\x49\xa6\xcf\x07\xf1\x86\x64\xd2\xcc\x42\x31\xf8\x9f\x05\x5a\x74\xc5\xdc\x59\x94\x3b\xaf\x66\xb1\x22\x4a\xdb\xe4\x03\xb5\xe0\xf0\x26\x2d\xb1\x86\x87\x8a\x23\xca\x83\xb7\x77\xeb\x8a\x19\xd2\x81\xbe\x3b\xb3\xe1\x32\x75\xc1\xcf\xac\x48\x0c\xbc\xd8\x9d\xbd\xc3\x91\x77\x64\xc6\x4c\x21\x5c\x78\x6b\xf2\x8e\x74\x74\x74\x44\xdb\x98\xd3\x27\x14\xf9\x59\xcf\xf3\x05\x3a\x6e\xfa\x0b\x3c\x3c\xf9\x76\x0d\x39\x0e\xbc\x34\xf2\x74\xf2\x30\x63\x9f\xbf\x8c\x64\x69\xfc\xcb\xe9\x43\x52\xbf\x8a\xd3\x65\xdb\x77\xe8\x8a\x49\x61\xd3\x55\xe5\x48\x9c\xe0\x8f\x9b\x15\x32\x8d\x89\xbc\xb0\xe8\x12\x23\xc6\x6c\xdf\x73\x53\x20\x5c\x6c\x95\xcc\x28\x34\x17\x6e\x4d\xfe\x67\x33\x2c\x32\x6c\x3b\x16\x5f\x1e\xdf\x26\x82\xa6\x05\x92\x0f\x90\xdf\x01\xea\xb5\x56\xd1\x68\xf2\x3d\x0a\x4e\x04\x61\x43\x73\x58\x2e\x66\x1d\x12\x3e\x24\xab\x4d\x86\x28\xc3\xf4\x41\x1f\x2b\xd3\x7f\xdd\x18\x2d\xd6\x09\xc5\x5a\xbd\x5b\xf8\xd1\x2e\x61\x75\xce\x97\x14\xb0\xa1\x38\x25\x74\xad\x3c\x46\x2a\x30\x63\xd8\xf2\x60\xf2\x7d\x9b\xb0\x4c\x89\xe6\x4d\xc7\x77\x73\x99\xac\x25\x98\x3a\x66\x6a\xed\x90\xfd\xee\x2b\x8a\x76\xa7\x89\x71\x5d\xb9\x23\x23\xf2\xfd\xa2\x7b\x10\xa6\xf3\xf0\xb7\x0f\xbe\x47\xcb\x34\x35\xdf\xf3\xcc\x18\x25\xba\x69\x1b\xbf\x39\x7c\xb8\x0d\x99\x71\x62\x25\x19\x48\x9a\x35\x8c\x31\x66\x38\x3a\x8f\x9f\x59\xa9\xe9\x3f\x61\x23\xfc\x9f\xd0\xbc\xcc\xde\x27\xdb\xb2\xb2\xc2\x4f\x3a\xb2\x90\xa7\x60\x8b\x96\x31\xb3\x79\x0a\xee\xce\x7d\x65\x8d\x2a\x7c\xcb\xb8\x9f\xe6\x9c\x3b\x95\x86\x36\xec\x8e\x00\xf7\xc4\x9b\xdd\xd5\x0f\x4a\x33\x39\x94\x9e\x45\xfd\xf2\x5e\xe5\xd1\x78\x0c\x39\x8e\x14\x61\xf8\xd6\x7b\x1a\x33\x11\xb5\x5c\x51\x0c\x7d\x57\x5f\xcf\x31\x6c\xa3\x64\xdc\xce\x31\xc5\x04\x23\x3c\x15\x35\xea\xc3\x16\x26\x77\x6c\xa7\xa6\x9c\x46\x2a\xd8\xf5\x5a\x66\xcc\x80\x7f\x26\x7f\xb1\xf6\x38\x89\x97\xf4\x0a\x0e\x36\xbf\x3c\x58\x5d\xb2\x53\x43\x0c\xaf\xbe\xb4\x44\xc2\x08\x3b\x20\xc3\x1f\xdb\x20\x54\xa5\x6b\x8c\xb8\x9e\x85\xa0\xf8\x79\xff\xe9\x94\x65\x4d\x24\x6d\x93\xed\xbc\x22\x25\xe1\xeb\x31\xda\x12\x95\x5a\xae\x7b\xb9\x76\x4f\xbd\x9a\x1d\xf9\xfc\x86\x65\xa2\x46\x5f\x8f\x88\x5b\xd2\xe0\xf4\xb0\x92\xe6\x19\x8e\xac\x9d\x3a\x35\xca\xba\xe1\x33\x8f\x17\x64\x90\x8a\xf6\x2a\x12\x2c\x25\x5c\xa1\x4c\xe5\x47\xfd\x76\xa3\xc2\x60\x0c\xbf\x25\x47\x75\xdd\x77\x5c\x99\x86\x11\xaf\xc6\xf3\x66\x9f\xd9\x5a\xb4\xa8\x32\xcc\xc1\x39\x50\xf8\x0c\xe2\xd0\xa5\xc2\x32\x6c\xf8\xdc\x68\x3f\x95\x7b\xbe\x71\x30\x5e\x91\xcf\x9a\x3a\x23\xfc\x4d\x64\xa1\x3e\x0b\x8e\x2d\x60\x73\xcb\xb6\x5c\xa8\x4e\xdf\x16\x2e\x9c\x10\x1d\x91\x42\x31\x78\x35\x52\x1b\x66\xa8\x12\x85\xb3\xe2\x73\x72\xe6\x5e\xc2\x65\xdc\x20\x66\x7c\x26\x73\x97\x2b\x76\x7a\x96\x1c\x53\xe7\xb3\x8f\x24\xa8\x31\x8d\xf0\x40\xf0\x02\x30\xbb\xfe\x39\xb9\xe7\x86\x89\xcc\xe0\xf7\x74\xb5\x2a\x9f\xb9\xc2\x62\x2e\x30\x37\xcb\x74\x16\x9e\x3b\x31\x59\xf1\xca\xbc\xe3\x9f\x83\x0c\x55\x6e\x3e\x3b\xa7\xb7\x86\xb8\xc5\x36\xe1\x63\x92\x38\xd3\x7e\xed\x4e\x7d\x2c\xef\xf8\x82\xfc\x14\x3c\xb6\x4f\x61\x71\x8b\xbd\x42\xae\xf8\xac\xb6\x90\x00\xb3\x5b\x2e\xbe\x71\x69\x1f\x1e\x15\x16\x22\xd6\x45\xfd\x18\x6f\xb6\x49\x94\xeb\x96\x63\x12\xcf\x2f\xc3\xcf\xc9\x04\x07\x75\xc3\x52\x40\xa1\x89\xd5\xd8\x87\xe7\x29\x4f\x92\x72\x26\x11\x3c\x49\x4f\x7d\x92\x58\x3a\xa1\x74\xe7\xd6\x28\x63\x68\x6c\xfa\xa2\xc2\xce\xdc\xf2\x90\xd8\x98\x71\x74\x01\x5c\x83\x8f\x3f\x22\xa4\xf2\x91\xe5\x70\xd7\x82\xcc\xe5\x15\xf9\xaf\x27\x4f\x2d\xd4\xb8\x6b\x6c\x9f\xcd\xa3\x94\x69\x1e\xb1\xd2\x8b\x89\xec\xfa\x75\x72\xcf\x8f\x2a\x4a\x84\x79\x60\x66\x5b\x6a\x82\xcd\xdd\xb8\x6b\x9a\x7f\x83\xe1\x35\x89\x60\x15\x64\xa7\x5d\x19\x07\x5c\xe2\x29\x6e\x3e\x77\xef\xe7\xe3\x9e\x9b\x8c\x1a\xae\x96\x7c\x65\x10\x74\x60\x7f\x7f\x45\xc9\x69\x2d\x04\xb1\xc3\x47\xd3\xfa\x1e\x50\x33\x04\xeb\x56\x25\x5b\x8a\xf1\xa2\xda\x1c\x75\x8f\xe2\x04\xe9\xc5\xea\x65\xf9\xe6\x3c\x59\xdf\x4a\x45\x84\x20\x7b\xaf\xa2\x0c\xcb\x1d\x1b\xc5\xf3\x1e\xb9\x44\xa0\x61\x31\xe2\xf8\x1c\xd6\xa6\xb1\xc9\x22\x9a\x9f\x98\x25\x5c\xf0\x76\x4a\xe2\x0e\xaf\x8d\x07\xda\xd9\x27\x4f\x69\xdb\xea\x96\xe5\x78\xd4\x12\xff\xb8\x6f\x3f\x15\x5d\xc5\x18\x97\x93\x7e\x74\x94\x7c\x24\x93\x3b\x41\x52\x3d\x7f\xf5\x9e\xf3\xa5\x16\x4a\xd8\xb2\xb5\x1d\x1c\x9a\x2a\xd1\xc5\xc3\xc8\x29\x42\x7e\x61\xd2\x41\x2c\x46\x82\x3f\xa9\x73\xc9\x84\x35\x29\x2f\x14\x1f\x59\xa2\xa0\xc2\x81\xa8\x7d\xd3\x1a\x09\xd5\xb0\x4b\xb0\x9f\xbe\xc1\x16\x29\xba\x81\x59\xab\x0c\x74\xe4\xec\x08\x2e\x8d\x5c\xb8\xa9\x63\x59\x6a\x24\x92\x19\xb8\x51\x53\x32\x88\xb4\x13\x27\x16\x8a\x01\x3e\x9c\xcc\x57\x61\x2c\x2d\x33\xd4\xb4\xa3\x8c\x71\xe6\x75\x3e\xab\x41\xcc\x0a\xeb\x56\xe7\x39\xcd\x58\xd7\xb7\x7b\xd4\xa4\xf9\x57\xad\xa3\xe5\x88\xdc\xd8\x1a\xe2\x27\x1d\x71\x98\x9d\x3c\x69\x06\xc0\xfb\xb7\x29\xce\x0d\x2d\x10\xd7\x0d\xd6\xe7\xe3\xbf\x65\x03\x8a\x27\x73\x5d\xf6\xff\x60\xb9\x88\x9d\xc1\xfa\x39\x1a\x49\x97\x58\x84\x7b\x62\xe7\xfe\x3a\x7e\xb0\x7a\xf7\x1d\x24\x6e\xf3\xaf\x8e\x69\x08\x66\xae\xb8\x22\x5e\x66\xee\x45\x36\x42\x59\xd4\x73\x3d\x79\x95\xdc\x72\xf3\x13\x9a\xa8\xe7\x74\x71\x0a\xee\x98\x99\xe2\x2b\x78\x8c\x94\x7c\xa9\x2e\x10\x9c\x51\x72\x9b\x8b\x71\x9d\x2f\x1b\xae\x1f\xae\xf9\x91\x22\xc2\x35\xa3\x93\x4f\xf8\x13\xdb\x55\xc9\x4b\xfe\xc1\xc2\x1f\xba\x61\xa1\xcc\xa6\xf5\x06\xb2\x3d\x46\xdc\x5a\x83\x98\xa4\x50\x0c\xfe\x30\x5b\xe3\x66\x21\x17\xb5\x70\x83\x7b\xf7\x8a\xbb\xb9\x6c\xd3\x79\xa2\x66\x36\x41\xa0\x5f\x80\x12\x16\x21\xd5\x0b\x33\x37\xfd\x6a\x25\x5c\xf2\x62\xb1\x50\x0c\x7e\xfa\xb2\x3c\xae\x46\x0d\x22\xc0\xec\xd7\x15\x9b\x6e\xdf\x72\x7c\xe8\xe6\x3f\x7e\x48\x7e\x78\x86\x1d\xbf\x6a\x73\x39\xfe\xfc\xa7\x47\xf3\x5f\xb7\x9c\xd8\x2a\x17\xc6\xbc\x27\x5e\xeb\x54\xd3\x51\x34\xf7\xfc\x53\x3a\x7b\x44\xcc\x77\xe3\x09\x16\xde\xcf\x7f\xee\x32\x82\x94\x4a\xeb\x51\x4d\xc9\xb5\x86\x58\xd9\xa3\x4e\x24\xfe\xd0\xda\x21\x71\x0a\x60\x18\xa0\xe2\x14\xf2\xd6\x69\xa5\x32\xa1\xbe\x21\x78\x9c\xeb\xfa\xf0\x9a\x4c\x8c\x10\xb8\xf5\xc9\x2f\xbd\x91\xf2\x14\xf9\xa9\xbd\x69\xf0\x85\xa1\x0a\x5c\x01\xb5\x8c\x1a\xe6\x4e\x27\x8e\x02\xf4\xb4\x69\xa1\x18\xe4\x15\xcc\x40\x89\xa1\x66\x18\x8a\x4e\xbd\xc0\xf1\x51\x73\x7d\xb8\x23\xd9\xf9\x1a\x60\x24\x5a\x6e\x8d\xee\x9d\xbc\x1c\x46\x2d\x2c\xc2\xc2\x28\x70\x74\x73\xc2\xa7\xb2\x64\x62\x8b\xd3\xa8\xdf\x5a\x24\x3f\xd7\xba\x96\x58\xd5\x17\xbb\x73\x3b\x16\xea\xae\xf4\xa6\x18\xb3\xe3\xdd\x03\x94\x6f\xe2\xf0\xc6\x74\xc5\x95\xfc\x13\xd6\x40\x66\xe4\xcf\x57\xf3\x13\x76\x8d\x5f\x0d\x1b\x8c\xe7\x17\xa9\xcf\x11\xb6\xcd\x85\x62\xf0\xeb\xf7\x94\x20\x6a\x53\x58\x77\xf2\x55\xd4\xdf\xb2\x17\x27\x87\xa9\x24\xbd\x0f\xda\xb3\x22\xe1\x15\x20\x00\x23\x30\x4b\x1b\x33\x4c\x61\xc5\x80\x6d\x7c\x9c\x25\xfb\x7b\xca\x04\xa8\x4a\x99\x3c\x28\xff\x64\xa6\x04\x1b\x6d\xe2\xd6\x04\x93\xc4\x7f\x4c\xf5\xcb\x66\xc8\x50\x2d\x9f\x57\x68\xfe\x62\x15\xca\x9a\x88\x09\x85\xcb\xcc\x9a\xb5\xf2\x7d\x8e\x6b\x12\x13\x30\xf9\x87\xf6\x2a\x0d\x80\x5f\x26\x25\x93\x17\x3d\x6b\x5e\x90\xcc\x7b\xb7\x46\x1c\x58\x5f\x4b\xf9\xf7\xee\xdc\xc4\xb3\x43\x55\x01\xa3\x06\xb6\x09\x16\x8b\xec\xd6\xa0\x84\x5f\x8d\x2c\xb0\x2f\x14\x3d\xf2\x4d\x26\x23\xea\x07\xcf\x2f\x5f\xa2\x95\x92\x35\x4a\x8c\x78\x7e\xf4\x93\x0d\xf2\x5e\x77\xf9\x36\xe1\x83\xee\x1b\xb4\xc1\xab\x47\xa3\x3d\x68\xb1\x3b\x7b\xcf\xb6\xe4\x5a\x6a\x1d\x40\x74\x55\xde\xcc\xac\xd1\x72\xe5\x6b\xa2\x66\xa1\x18\x0c\x7f\xfc\x42\x05\x39\xe0\xd5\x58\x4b\x35\x44\xea\xb7\x47\x2d\x68\x4d\xb3\xe0\x85\xa7\x33\xfb\xcb\x03\x0a\x08\xc1\xe6\x7d\x5f\xb1\x3b\xbf\x62\x66\x7f\xe5\x68\x72\x3c\xd0\xff\x3e\x2e\x0f\x9f\x8d\x3c\x0f\xc0\xcb\xdd\x99\x87\x5e\xd1\x76\xdd\xbe\x5d\x46\x66\x3d\xb6\xbc\xc8\xfc\xf7\x02\x05\xbf\x55\xa3\x60\x2a\xfa\xf0\x1c\x2d\xe7\x51\xab\x44\xec\xc8\x2c\x32\x5b\x29\x69\x85\x1b\x2e\x23\x33\x9a\xc5\xfc\xa3\x6d\xb4\xd6\xb4\xb1\x2a\x0e\x43\xb3\xda\x19\x76\xe7\xec\x47\xc4\x64\x0b\x81\xe0\x2b\xd4\x14\x0f\xf7\x91\x47\xc8\x42\x5d\xe1\x8b\x08\x26\x0e\xd2\x84\xc6\x6c\x8f\x40\xfb\x44\x44\x97\x9b\x6f\x7f\x28\xf9\x76\xa7\x4d\xee\x2c\x4c\x9b\x3a\xb5\x13\xe2\x41\x9f\xc3\x03\xa2\x58\x00\x5c\x19\x28\xcf\xef\x7b\x4d\x91\x54\x08\xab\x8f\x42\x31\xb8\xa2\x8f\x1a\xc7\x8d\x1a\x62\x55\x5e\xa5\x96\x6a\x8a\xc6\x34\x72\x04\xd0\x22\xfb\xf4\x16\x2e\x5a\xbd\x80\xd8\x65\x3f\xd5\x7c\x5d\x75\x2a\xc6\x31\x99\x18\x25\xf6\x04\xdb\xa6\x8b\x41\x0a\xb5\x1c\x04\x62\x5f\xb9\xaf\xbc\xab\x32\x54\x0d\x0e\x3b\x3f\xb0\xb4\x4d\x79\x18\xcc\xad\x09\xeb\xd0\xfc\x54\x33\xf9\x80\x1d\xc4\x0c\x1c\x76\x72\x49\x38\xf7\x2d\xef\x25\x1f\x1c\x06\xb2\xbc\xe2\x35\x9c\xbb\xbc\x5d\xd1\x69\x37\xa9\x1f\xa6\xd7\xf0\x1b\x3f\xfd\xa6\x3e\xb5\xb3\xbd\x5a\xe4\x6e\x98\x73\x57\x27\xcf\x46\x29\xac\x90\xe5\x48\x77\xd9\xe3\x1a\xec\xdb\xf7\x18\xaa\x46\x6a\x53\x1b\x2a\xfc\xcb\x03\x5f\x0e\xd6\x4c\xe8\x50\xec\xd8\xab\x5a\x57\x64\x66\xf7\xbd\x58\x4b\xf0\xa6\x47\x2c\xca\xe0\x27\x89\x26\x68\x65\x5e\xc5\xf6\x73\xf9\xbd\x42\x31\xf8\xdc\xd8\xd4\xe9\xb5\x7c\x9b\xb8\x16\x9c\x88\x7f\xa8\xb8\x02\x66\x53\x95\xe0\x9b\xc9\xae\xe1\x6f\xf5\x16\xbf\x9e\x56\xf8\xc8\xf7\x5d\x9c\x76\x9b\x70\xf9\x40\x13\xce\xc4\xed\xb7\xab\x02\xb3\x1e\x47\xa7\xbe\xaf\xdd\x25\x07\x31\xcf\xc6\xd1\x6e\x25\xf7\xf4\x44\x5d\x74\xdc\x34\x23\x3d\x36\xfc\xa8\x36\xc4\x40\x55\xcc\xa4\x50\xf1\xe6\xe7\x45\xb7\x0b\x3a\x08\xb1\xc7\xd5\xea\xfb\x95\x0c\xec\xdb\x31\x3c\xf2\xc9\xd2\x05\x4a\x48\xf2\x30\x53\x0e\xcb\x94\xc9\xc9\x31\xa0\x8d\x5c\xd4\x93\xc8\x49\xee\xce\x45\x52\xfd\x81\xcb\x2f\xe8\x47\x1f\xad\xd0\xa5\x74\x4c\x52\x8f\x87\x46\xbf\x3d\xae\x2d\xf4\x6b\x98\xef\x47\x25\x63\xe3\xa1\xc5\x32\x1e\xb7\xb0\x89\xc1\x8a\xde\x6c\x8c\xd2\x4e\x9d\x6f\x60\xbe\x5c\x8c\x22\xca\x6d\xfb\x84\x75\x54\x61\x66\xf8\x74\x3e\xf6\x86\x82\x25\xe3\x4c\x14\x81\x9c\x5c\xf9\xae\x4c\x3e\x1e\x87\x36\x24\xfb\x0c\xe3\x19\x05\x1c\xbb\x16\x7a\x3a\x8e\x91\x79\x67\x66\xaa\x28\x2f\xf1\x96\x3f\x37\xe6\x98\x02\x9a\x66\xa4\x5a\xe5\x9c\xce\xa1\xb7\xa7\x52\x8f\x1b\x5b\xaf\xe5\xef\x5e\xa0\x69\x24\x4a\x49\x3d\x11\xdc\xe6\x6f\xe7\x5d\x64\x0d\x23\xd0\x96\xff\xe3\xe9\x81\x51\x3c\x2b\xfb\x46\xd4\x6b\xce\xbd\xbf\xbf\x32\x49\x87\x8a\xfc\xda\x57\x14\x57\x0e\xbb\x4c\x9b\xe1\x11\xa8\x99\x71\x1b\x72\x39\x2c\xe4\xf2\xeb\xf7\xf5\x53\x26\x56\x70\x4e\xbe\xfa\xac\x34\x08\x64\xfa\xfb\x0d\xea\x8a\x5f\x77\x1d\x99\x56\x2b\xcc\x17\x8f\x2c\xd5\x9b\xc1\x92\x4b\x62\x32\xf1\x2d\xeb\xa3\xa9\x4c\x4b\xc9\xf1\xc1\x87\xde\xd4\x32\x2c\xa3\xd4\x89\x0c\x0e\x0f\x3c\xa5\x98\xf8\xc4\x8e\xe6\xd7\x3f\x2b\x01\x97\xa0\x3d\x82\x5d\x0f\x95\x4c\x30\xf3\x0b\xff\xd5\xf5\x4a\xac\xae\x53\xa7\x65\x82\x75\xfa\x84\x35\x0a\xbb\x86\xf9\x55\x9e\x04\x6a\x47\x14\xb9\x32\x5c\xc1\x76\x59\x58\x73\x95\xf6\xe9\x93\x78\xbb\x5c\xf0\xdd\x48\xda\x6b\xef\x02\xe5\x5c\x55\xab\x0c\x35\x22\x62\x71\xfb\x15\xc9\x33\x6a\x63\xd3\x05\xac\xb9\x82\x8a\x9a\xaa\xe1\x4c\xd7\x82\x1c\x40\x1c\x5c\x9b\x57\xa4\x14\x18\x4b\x3e\x07\xfe\x8b\x2e\x6e\xd8\x59\x29\x65\xaa\x0a\x6c\xe5\x7e\x2d\x05\xa8\x19\x8e\x71\xe4\x2b\x9f\x49\x9e\xd8\x66\x0d\x73\x81\xb4\xe0\xbc\xa9\x3d\x48\xe9\x30\x57\x58\x50\x84\x91\xb2\x3c\x46\xc8\xb6\x51\x55\xb7\x7b\x41\x2f\x1e\xc2\x1d\x5c\x15\x72\xe2\xb9\x81\x7b\x2e\x4a\x4e\x87\x52\x91\xb3\xd7\x1a\x19\x36\x0c\xf0\x86\xa5\xbe\x9b\xbc\xf5\xf3\x34\x98\x6e\x8d\x61\x1c\xf3\x44\xa3\x68\xe9\x8e\x4e\x08\x8a\x13\xb0\x85\xa9\x11\x58\xd3\x5d\x31\x3d\xf9\x13\xdc\xb0\x63\x46\xae\x56\x77\xdc\xf2\x52\xdc\x87\x98\x35\x6e\x52\x38\x9a\xaf\x25\x16\x22\x1b\x8f\x4b\x47\xbc\x19\xf7\x6b\x1a\x16\xbc\x47\xe4\xc0\xb5\xb1\x65\xa5\x3a\x6f\x95\x30\x73\x45\x39\x96\xbd\xb8\x57\x8a\xc0\x54\x96\x04\xf1\xfc\xd2\x67\x35\x79\x5e\x64\xdb\x71\x12\xcd\x0f\xd1\xf6\xa2\xdc\x9a\x01\x6a\x36\x29\x17\x73\xf4\xe5\xb1\x5a\xa0\x75\x0d\x6a\xf5\xc4\x03\xce\x76\x4c\xd4\xcd\xd7\x6d\x8f\xdb\x20\x15\xbb\xf3\x6d\x7b\x86\x29\xed\xb7\x59\x29\x30\x6c\x12\x1e\x2b\x83\x9f\x74\xe8\xca\x99\x06\x65\xe5\x58\x7f\xad\xbe\x6a\x84\xf6\x11\xc2\x6c\x68\x95\x23\xb6\xdb\x25\x59\x45\x86\x14\x45\x2c\x89\x60\xf4\x52\xf9\xc7\x0d\x42\x4d\x64\xf3\xb5\xc0\xff\xae\xe4\x11\x7c\x32\xb7\x59\x3e\x7e\x46\x4c\x51\x31\x73\x71\x2b\xfa\x99\x2b\x9d\xb4\xb3\x9a\x11\x39\xf7\xcd\xaf\xa4\x08\xcf\x14\x6c\xbd\xc5\x5c\x2a\xa7\x51\x6e\x7c\x57\xa0\xb4\xc2\xc4\x79\xdf\x0e\x85\x9b\x67\x22\x1f\x9c\x8c\xb2\x6b\xb4\x45\x03\x18\x78\x4a\xb9\x9b\x79\x5b\xf4\x27\xe4\xf9\xcc\x8e\xd1\x02\xbf\xd9\x28\x0f\x2c\xad\x22\x4f\x95\x3f\x68\x3f\x19\x8d\xd5\x71\x99\x70\x9d\xb4\x29\x5b\x34\x59\x92\xc9\xb1\xc3\xe7\x1d\x6f\xa7\x34\x8e\x1c\x64\x13\x2c\x27\x03\xc7\x16\x6b\xe3\x31\x6a\x53\xe6\x0a\xd5\x89\xfc\xa4\xbe\xfc\xb7\x2d\x47\xa5\x48\x9e\x3e\xb7\xfe\xa9\xe4\x8b\x10\x36\x13\xd7\x3f\x25\x74\x37\x4d\xc0\x6d\x76\x67\x1f\x68\x93\x23\xdc\xb2\xef\x91\x8a\xcf\x51\xdc\xf9\xbb\x0f\x0b\xba\x15\x34\x08\xe1\xbb\xfd\xcc\x9e\xe4\xc7\xf4\xeb\x0c\x11\x1b\x4b\xc7\x9d\xcc\x37\x8f\x27\xd5\x8f\xed\x8e\x4a\x87\xd9\xc1\x41\x7d\xc9\xa8\xb1\xea\xd6\x81\xaa\x52\x83\xf8\xf7\xf8\x99\x36\x51\xf6\xe0\x96\x5a\xc4\x64\x3f\x72\xaf\xe2\xf2\x1f\x76\xde\x83\x16\x0e\x8f\x12\x0f\x66\xe9\x1f\x7f\xfd\x07\xa9\x3a\x97\x63\x81\x9c\x42\x31\xf8\xe1\xf8\xe1\xa9\x68\x62\x22\xc6\x15\xc8\x83\x8f\x3c\xae\x97\x98\x36\xa8\x21\x72\xce\xde\xd3\xf3\x15\x41\x52\x1f\xa6\x8d\xdf\x5e\xa8\xcb\x45\x53\x0f\x1b\xb0\x70\xe2\x72\x2d\x7f\xde\xab\x5d\xf9\xb5\x1e\x43\xf1\x04\x4f\xdc\xb7\xde\x03\xfa\x2b\xa3\x04\xc0\x0f\x66\xcf\xbb\x55\xab\x30\x18\x68\x6c\x8a\x15\x60\xf3\x59\xdd\x23\x59\x5a\x8e\xe6\xce\xec\x4f\x11\x5c\x40\xb7\x9f\xca\x8d\xff\xd9\xd1\x72\xd6\x58\xc6\xae\x8b\x19\x07\x0e\x6c\xbf\x5d\xce\xc7\x26\x4f\x2a\x84\x7f\xf5\x9d\x63\xfa\x06\xa5\x11\x5e\x4c\xae\x76\x5a\x6a\x0c\x57\x4a\xe3\xd4\x94\xe3\xdd\x37\x86\xa8\x0b\x4e\x6a\x57\x0b\x08\x70\x65\xb9\x27\x34\x63\xf7\xf0\xe8\x89\xb9\xe4\xee\x2d\x6d\x72\xa8\x3a\x4e\x39\x08\x4f\x6e\xd7\x4c\xee\x7c\xd7\x8b\x9a\xd7\xcc\x75\x3b\x05\x5e\x94\x58\x8e\xab\x8e\xc1\xb2\x93\xdb\x15\xfc\x3e\x43\x55\x02\xac\x9d\x31\x42\x95\x0f\x9b\x24\xa6\x15\x05\x07\x67\x26\xeb\x65\xc4\xac\x96\xa0\x54\x27\xbf\xd8\xc2\x89\x97\x68\xef\x9d\xb8\x9c\x7e\xa0\x2a\x40\x37\x94\x87\xcc\x48\x03\x37\x61\x18\x9e\x19\xd0\x37\x4e\xe9\x35\x6c\x45\x29\x7d\x8b\xa6\x6f\x61\xa0\xb0\x38\xe1\xcc\xbf\x7f\xaa\x5d\xa4\xd5\x2e\xae\x17\xd6\x09\xbe\x17\xa1\x7a\x7f\xf5\x92\xca\x3b\x73\x49\x35\x49\x03\xa8\x3d\x9b\x72\x3b\x6c\x60\x5b\x40\x91\x26\x8d\xe6\x0b\xff\xdb\x7c\x82\xb9\xdc\xf8\x94\xcd\x72\xae\x5d\x05\x92\xde\xf7\x77\x5c\xa0\x0e\xe0\x38\x5d\x29\xb2\x52\xec\xad\xc1\x6c\xc0\xf7\x30\xa2\x04\x77\xdc\xab\x43\xf3\x30\x2e\x53\x4b\xcc\xbc\x17\xea\x00\x3a\x5a\x42\x25\xb3\xc5\x8f\x57\x76\xed\x5e\x65\x24\xce\xab\xd6\x30\xa2\x4f\x0d\x14\x05\x12\x62\xd4\x45\x27\x34\xf5\x18\x0f\x85\x8b\xc0\x0c\x8c\x57\x16\xbb\x34\xb6\x48\x89\x9a\x2e\x4f\x58\xb1\x04\xc8\x8b\x3b\xf9\xd7\xef\xa2\x2d\xae\x52\x98\x6b\xcc\x17\xed\x2c\x63\xa4\xc1\xd7\xb9\x5f\x7b\x45\x6b\x11\x50\x33\xc2\x17\x0c\xbc\x5d\x31\xe8\x40\x2e\x31\x15\xbc\x7c\x26\xab\x19\xa9\xd8\x1d\xad\x0e\xe9\x4b\xba\x7c\x9d\x26\x0d\xe3\x79\x5c\x3a\x10\x2e\xe3\x5f\x5e\x6c\x53\x26\xfb\x4e\x0d\xb1\x32\x87\x0a\x3d\xff\x76\xf2\x9f\x35\x31\xaa\x83\xaa\x09\xac\xd8\xd6\x3c\x72\xa1\x96\xba\x2a\xbe\x8b\x5d\x0e\xd5\xcb\x67\x3a\xda\xb5\x8b\x67\x97\x11\xa7\x03\x48\x1a\xf7\x76\x4d\xf9\xd5\x23\x76\x19\x9b\x66\x42\x20\xba\x31\x5d\x03\x41\x61\xd7\x35\x31\xe3\x7d\x7c\x74\xf7\xde\xd9\x90\x44\xc6\x96\x19\x76\xcb\x76\xf4\xb7\x92\x77\xea\xee\x2b\xb5\x22\x3a\x02\x0c\x0b\x34\xef\xb1\x23\x23\x7a\xf8\xd6\x11\xda\x32\x38\xb2\x4f\x73\x00\xb3\xcd\x96\xc8\xd6\x07\x17\x6a\x76\x2d\xc8\x24\xf5\xc4\x97\xd9\xba\x2d\x39\x92\x9e\x12\xe7\xe7\x57\x83\x38\x59\x35\x3b\x1a\xd1\x8b\x3b\xac\x39\xe8\x03\x0b\x05\xf6\xf8\x70\x70\x73\xb3\x9e\xe2\xd3\xfc\xf9\xc8\x54\x98\x33\x79\xbc\x47\x4e\xa8\xa2\x1d\xd2\x1d\x67\x34\xfa\xa0\x85\x98\x97\x68\x81\xf3\x5d\xbd\x87\xaa\x2a\x0d\x16\xf2\x7c\x86\x79\xa6\x9e\x39\x31\xf9\xad\x7d\x16\x8b\x15\xe7\x15\x67\x80\x32\x43\x4d\x60\x38\x07\xaf\xbd\xa9\x8c\x90\x2d\x87\x51\x87\x81\x68\x49\xb1\x3b\x73\xe2\x8d\xe4\xcf\x0a\xab\x74\xfe\x6c\x8f\x0f\x50\x3c\x09\x30\x6a\xb4\x0a\xc5\xa0\xfe\x9c\x02\x64\xa6\x26\x1c\xae\xe5\xcf\x68\xb2\xcd\xd4\x2a\x71\xd9\xd7\x4f\xcd\x11\x2b\x69\xdf\x21\xa8\x06\xe7\xf4\x9e\x0d\xb2\xc8\x1e\xe7\x4a\x0d\xac\x60\xc2\x76\xf9\x11\x05\x6c\x96\x0b\xaf\x06\xef\x0d\x93\x33\x04\x5a\xa5\x36\xd8\xd6\x65\x9f\x78\x5d\x27\x23\xfb\x66\xc4\x99\x7e\x73\x4f\x24\x6a\xcc\xe1\xcf\x43\x4b\xc9\xa3\xd0\xc0\x8c\x54\x88\xe0\x7e\x42\x32\x1e\xb4\x97\x47\x91\x32\x35\x3c\x61\x0c\x92\x7d\xe9\xdc\xbe\x92\x52\x59\x28\x06\xed\x0a\xd5\x49\x78\x63\x43\x0e\xea\xd3\x37\x0a\x9b\xe3\xc2\x42\xe5\xe1\xe9\x1a\x56\x95\x1b\x2c\xc5\x00\xe1\xfc\xe7\xcf\x26\x8f\x91\x8d\x98\x20\x39\x73\x78\xd2\x37\x34\xe3\x2f\x0b\xd5\xe3\x66\x23\x38\xae\x75\xe7\x0d\x6a\xfa\x56\xfc\x35\x66\x1f\x55\x8d\x5f\x2a\x15\x40\x84\xe6\x5a\xcf\x29\x3e\x9d\x48\x18\x91\x3f\xa4\xb9\xf6\x87\xcf\x0a\x31\x2b\x6a\x4d\x4f\x28\x5e\x5e\x80\x8b\x95\xd7\xfb\x3e\xd9\xb5\xba\x35\x5f\xb9\x4f\x1f\x9b\xa9\x89\x0d\xb0\x3a\xb2\x5d\xe4\xf6\x84\xca\x7b\xfb\xd1\xe4\xca\x7e\x1a\xb7\x5e\xca\x15\x67\x4a\x20\x26\x67\xf4\xe8\x52\x2a\xb7\x0d\x8a\xd0\x73\xb6\x47\x6c\x1f\x50\xc0\x90\xbf\x6e\xdf\xa2\x0d\x2e\x4c\x5a\x45\x76\x24\xb9\x95\xdd\x7f\xbe\xc8\x93\x16\xb8\x45\x05\x8f\x3f\xab\xe8\xc6\x23\x26\xdc\x60\xde\x99\xad\xed\xec\x18\xb2\x49\xec\xa3\x17\x96\xac\xdf\x56\xf4\x77\xea\xc4\x0e\xcf\x57\xe7\xa0\xc1\x4a\x29\x87\x4a\x61\x17\x13\xfe\xb0\xbf\x1f\x89\x40\x75\x1c\xc0\x1f\x14\x04\xf3\xb1\xc2\x68\x53\xb8\xe8\xe5\x2f\xef\xab\xda\xb7\x98\x18\x01\x0a\x39\x18\x50\xbb\x58\xaf\x4a\xb9\x11\x1e\xa1\xd1\x16\x3c\x73\x7c\xb2\xbe\x43\x77\xb0\x5d\x8e\x64\x37\x4e\x3e\x23\xcf\x6b\xcd\xb7\xab\x5c\xec\x20\xff\x99\x45\xaa\x48\x38\xe3\xf6\xe0\x22\x99\x96\x86\xeb\xb0\x06\x0b\x7b\x98\xb5\x44\x05\x99\x7b\xa3\xac\xf4\x80\x35\x10\x3d\x84\x47\x3f\xe4\x56\xcd\x7e\x70\xad\x83\x19\x89\xf9\x66\x90\xa0\xde\x8b\xab\x0b\xcf\x00\x78\xc0\xd7\xd6\x5f\xa4\xf7\x77\x88\x01\x57\x23\xf2\xd3\x1a\x74\x56\x4e\x1a\xc0\xfd\x28\x85\x64\x1c\x78\x20\xb9\xe7\x9e\x72\xf9\x54\x9e\x0f\xf7\xbc\x2f\x0d\x47\xdc\x94\x3a\x53\x7e\x7c\x3f\xed\xf4\x53\x66\xc8\xee\x2b\x33\x75\x25\xdf\x34\xdc\xdc\xb1\x02\x75\xc4\xe1\xff\xd6\x76\x3b\x49\x68\x4d\x23\xb5\xf2\x95\xd1\x03\x94\x0d\x03\xa7\x6d\xe4\xb6\x3e\x22\x7d\x4a\x7c\x30\xf8\xde\xa0\xa5\x5a\xdc\x85\xec\xe4\xcc\x3f\x33\x73\x3a\x0f\x62\x66\xcb\x72\xc2\x6a\x2c\x7f\x55\xfb\xa0\x24\x79\x3c\xec\x69\x83\x55\xaf\x88\xfe\xce\xc1\xb0\xa6\xcb\x2f\xec\x13\xe7\x2e\x0e\x9c\x82\x72\x6d\xb3\x56\x7a\xe3\xa8\x12\x0c\x3e\x7a\x48\xc1\x23\xea\x34\x9e\x4e\xbd\x21\xae\x82\x2b\x8e\x68\x43\xa7\x39\x91\x57\x8a\x4b\x5c\x2f\xa6\xd9\xfc\x75\x95\xd6\x1f\x51\x37\x86\x81\x03\xf5\xc2\x1b\xa6\xa0\x57\x91\xe5\xc0\x0c\xaf\xeb\x3d\x9d\x1d\x01\xbf\x8a\x23\x6a\xdf\x3c\x57\xa6\x0d\x60\xf0\x45\xd0\xc6\xfc\xb5\xcf\x2b\x58\x75\x5e\x65\x42\x7e\xf8\xfd\x41\x75\x0f\x53\xe5\xc6\x26\x99\x01\x6d\xb1\x8c\xaf\xa5\x20\x7f\xfe\xdf\x01\x39\x39\xad\xf0\x40\x70\xf7\x68\x89\x59\x32\x64\x3a\x0f\x36\x56\x94\x6d\xa7\x87\xc2\x54\x4a\xad\x96\x6b\x72\xe1\xb4\x62\xe0\x3f\xa1\x1b\xab\x83\xd6\xa4\x47\xa4\xf9\xf2\xe1\xb1\x23\xb4\x00\xdf\x15\x39\xb7\xc0\x7f\xff\xbb\x06\x4c\x44\xe5\xb0\x82\x8a\x75\x05\x7e\xf0\x6e\xf2\x3f\x4f\x9a\x3c\x7d\x62\xe7\x8c\x99\xd1\x58\xed\xd3\xa9\x76\xd6\x72\xc2\xb3\x2a\x76\x3a\x87\xb5\xb8\xe2\x21\x1b\xd5\x35\x17\xed\x8b\xca\x5a\x85\x6a\x78\x7e\x6c\xd8\x95\x1b\xbd\x5a\x4b\x41\x84\x9a\x28\xfa\xf9\xb9\x1f\x69\x53\x26\x17\x99\xd8\xb5\x90\xcd\x2d\xf7\x72\x7f\xdb\x39\x4c\x29\xee\x5d\x2f\x2e\xf8\xc2\xff\xf8\xc3\x5d\x7c\x05\x5f\x03\x69\xb4\xe0\x3b\xc3\x87\x68\xc5\x5d\xd4\xc9\xbe\xba\x7f\x68\x72\xcc\x45\x2c\x21\x09\x91\x1b\xf5\x18\xbf\x0f\x0b\x71\x93\x83\x05\xbe\xda\x99\x52\x06\x01\xdf\x72\x8e\xee\xbb\x7b\x7b\xca\x63\x12\x30\x1a\x02\x7b\x9a\xfd\xf1\x4e\xf5\x37\x19\xd4\x86\x2d\x27\x9c\x90\xb3\xeb\xb5\x03\xcb\xa8\x6f\x47\xaa\x0d\xbf\x7b\x5e\xb1\x64\x4e\x01\x91\xb2\x87\x3a\x65\x98\x68\x51\xb0\xd6\x0f\xf0\x6c\xad\x70\xb8\xcd\x27\x0e\x94\x97\x42\xbe\x74\xc4\x63\x0a\x89\x53\x25\x04\xac\x78\x56\x46\x06\x2f\xc2\x7c\x04\xb9\x3b\x79\xa2\xbc\x0e\x53\x56\x55\x38\x9f\x4f\xde\xae\x94\x88\xd8\x24\x0d\x4e\x65\x41\xdc\x60\xad\x70\x23\x31\x6a\x08\x9b\x6e\x82\x66\xd9\xb5\x72\x94\x92\x2c\x6d\x3b\xcd\xb1\xcf\x0e\xee\xa5\x6b\xe5\x84\xc9\x97\xf7\x16\xd9\xe6\x1b\x12\xb3\xe2\xd4\x88\x49\x5d\x27\x86\x4e\x74\x67\xdb\xdf\x97\xf1\xa0\x46\x39\xac\x20\xf7\xfd\x3e\xfd\x55\xfc\x3d\xe4\xa7\x8f\xed\xd4\x24\x72\x6b\x94\xa3\xd4\x82\x67\x7a\x2b\x53\xad\x88\x02\x0e\x83\xb4\xe1\x8a\xc0\x6d\x54\xda\x39\xfb\xfa\xc5\x65\xad\xd8\xad\x5f\x32\x35\x39\x05\x30\x10\x23\xa5\x52\x6c\xa1\x1b\x6f\x3a\xbe\xf0\x86\xe2\x64\x4a\x7d\xc6\x5d\x26\xbf\x70\xa7\xa4\x71\xd6\xc0\x05\x80\xfb\xe1\x6a\x0b\xb7\xd7\x2f\x50\xfe\x56\xb5\x86\x5d\xaf\xe0\x20\x02\x0b\x87\x69\x43\x35\xea\x05\x48\xf8\x89\x66\xfd\xee\x7e\x31\xd0\x88\x19\xb5\x54\x16\x5c\x3e\x47\x75\x6b\x50\xa4\x4d\x40\x62\xea\xea\x4b\xb5\xae\x05\x23\x66\xbb\x69\x17\x94\x5c\xff\x5a\x34\x4d\xf1\x10\x43\x96\x52\xf2\x7d\x79\xfb\xf8\xd4\xd1\xe4\xda\x29\xe9\x96\x2e\x7b\xd3\x1e\xf9\xae\xf9\xe4\x5f\xb8\xce\xc0\xfd\xfc\xc5\x46\x0d\x6a\x6b\xa2\x78\x85\x76\xef\x9d\xdc\x22\x7e\x71\x64\x45\xa5\x7f\xd1\x83\x1d\xf1\x73\x70\x90\x99\x7a\xbe\x77\xac\x51\x7a\x67\x9b\x96\x4a\x98\x41\x69\x98\x59\xf9\x52\x9b\x94\x22\x51\x0d\xfa\xfa\x2f\x1c\xa6\x95\xd3\x5e\x8c\xd2\xcc\xfd\x62\xa9\xac\x10\xa7\x74\x16\x38\xaa\x31\x63\x5c\x91\xac\x5c\xc7\x88\x14\xf5\x88\xc6\x97\x30\x90\x03\x70\x72\x50\x7e\x78\xe2\x59\x55\x7f\x1d\x0c\xdb\x04\x06\xeb\xb3\x9a\x32\x4b\xa5\xa3\xd4\x41\x3a\x7a\x40\x2f\x06\xdf\xd7\x7a\x5d\x62\xc7\xd3\x62\x77\xa1\x2a\x77\x88\xdd\x68\x26\x7c\x7c\x7d\xfc\xbd\x2b\x0a\xa4\xa8\x3b\x53\xd3\x24\x89\x91\x85\x19\x31\x10\xef\x40\xe1\x9f\x2e\x53\x06\xe8\xae\x43\x61\x54\x18\x9c\xdc\xaa\x08\x01\x50\x0e\x55\xcc\xfd\xdb\x71\x65\xf9\xc6\x50\xb3\x84\x8c\x3a\x0f\xbd\xb7\xbe\xd1\xae\x25\x3a\xdb\xc7\x66\xb2\xce\xc9\x3d\xb1\x5a\x48\x72\x21\xd7\x47\xa6\x90\x5d\xcc\x9a\x47\x34\x9b\x14\x54\x66\xa4\x1c\xab\x95\x75\x67\x87\x2c\x56\xc5\x0f\x40\xe2\xa5\x0c\xbf\x35\x37\xb6\x7d\x84\x0a\x7f\x5f\x5e\x9c\x20\xaf\x6f\xf8\xa3\xbb\xce\xb6\x6b\x41\x04\x59\x24\xe9\xe9\x18\x2c\x5b\xaf\xc0\x18\x6f\xf3\x91\x2b\x2a\xe4\xdc\x57\x06\xf4\xc8\x4b\xe6\x73\xdf\xfb\xb2\x52\x44\x05\x74\x8a\xd3\x18\xb0\xcc\x18\x47\xac\xdc\x18\xe6\xa2\xf5\xc1\xc7\x6a\xe7\xc7\xbf\xcb\x82\xdd\xc9\x87\xae\x8e\x8f\x79\x87\x9b\xba\xa7\x99\x31\x5d\xda\x1c\x82\x9a\x80\xdf\x14\x56\x5b\xd9\x2f\xbc\x19\x97\x9b\xa0\xb8\x12\x9c\x33\x32\x2e\x86\x2b\x69\xae\x75\x7e\xe9\x76\x99\xe3\xea\xc8\x52\xd7\x1a\xeb\x07\x29\x5e\x9c\x40\xa0\x0d\x1f\xc2\xf9\xcf\xb6\x89\xba\x4f\xc0\x31\x0c\x54\x06\x4a\xe8\xe7\x4f\x7d\x44\x7d\xf4\x4b\x96\x2e\x99\x20\x6c\x87\x93\x21\xe2\x57\x82\x80\xc4\x70\x74\xb2\xae\xb2\x15\x18\x0f\x5a\x17\xf6\xf8\xc1\x82\xc7\x22\x7b\xfe\x32\x6e\x22\x13\xa0\x87\x93\x5e\x96\xfd\xa1\xa2\x4a\xa0\x8a\x8c\x5f\x7c\xab\x6e\x46\xec\xd6\x88\xab\x58\xdf\x05\x8f\xee\x1b\xa8\x72\x2a\x39\x72\x27\xdb\x5f\xae\x1c\x0c\xb0\x98\xfa\xad\xa6\x08\x59\x21\xc0\x9f\x83\x12\xb6\x43\x71\x1c\x75\x51\xb9\x2c\x24\x72\x8a\x15\x9d\x8b\xc2\x2c\x64\xcb\xbd\x54\x77\xf6\x37\x5a\xc1\x61\xe2\x26\xb1\xdd\x7a\xb4\x16\xc8\xed\xd3\x1a\x08\x4e\xb5\x5d\xad\x4d\xc1\x10\xb8\x55\x47\xc6\xc3\xb9\x8f\xf6\xd6\x6d\xe1\x4c\x12\xdb\x24\x66\x5f\x39\x3d\x4e\x2b\xd8\x58\x95\xd8\x04\x71\x4a\x5a\xf2\xcd\xfc\xd7\xc6\xe4\xc3\x53\xd5\x67\x45\xa0\x7b\x6b\xfa\x10\x55\x0d\x64\x1d\x38\xc2\x42\x31\xb5\x66\x57\xb2\x60\xb3\x91\x85\xc1\xc2\xe9\x07\x1a\xff\xa3\x0b\x37\x39\x75\x12\xa2\x57\xfd\x4c\x42\x15\xcb\x72\x78\x1f\x91\xe9\x33\x4f\x1b\xfd\x57\x2a\x98\x45\xc1\x79\x2b\xdf\x50\x14\x96\x50\x9b\x5a\x88\xb5\x54\x2e\x73\xbe\x97\xc6\x81\x35\x90\xdc\x94\xe4\x33\x8b\x15\x08\x01\x36\xb8\x60\x75\x66\x6e\x5b\xe4\x9b\xd6\xa2\xbc\xbe\xbb\x7b\x5b\x12\x54\x5e\x01\x12\x75\x2a\x2c\x8f\x9b\xad\x6b\xd7\x84\x6f\x26\x6e\x25\x8f\x76\x25\xc4\x48\x1c\xd8\x43\xbc\x5b\x51\x54\x1b\xdd\x96\x51\x03\x24\x29\x72\x08\x48\xfc\xe6\xfe\xf2\x81\x10\xbd\x27\x46\xad\x50\x0c\x7e\x7a\xbf\x36\x2c\x34\xa8\x07\x22\x9d\x71\x34\xcc\x9c\xd6\x8c\xa6\x4b\x78\x9d\xc3\xa2\x99\xe0\x5f\x47\xe9\x5d\x1c\x2a\x4b\xe2\x6e\xf6\x63\xf9\xb6\x44\x24\x75\x41\xbb\xae\xd8\x9d\xbb\x5d\xa3\xd1\x20\x61\x3f\x04\x2f\xed\x43\x1b\xb4\x7a\x85\x56\x3c\x2c\xdc\x2f\xb2\x4f\x6d\xd0\x9c\x06\x25\xcf\x59\x30\x20\xce\x3c\x22\xc3\x77\x18\x46\xc0\x2c\x13\x3a\xf7\x47\x5f\x13\x44\x4f\x27\x6c\xaf\xe0\x13\x1e\x3e\xa1\x5d\x44\xea\xb3\xe8\xf9\xce\x5f\x0e\xf7\x25\xfc\xe3\xa5\x73\x22\x09\xad\x93\xf7\x4b\x02\x12\x09\xcb\xc3\xe2\x62\xde\x15\x54\x05\x17\x3f\xc3\x0e\xc6\x21\x91\x74\x94\x52\x21\x71\xa3\x99\x76\x1b\x8e\xf6\x70\x99\x0f\x36\xc9\x0b\xc0\x91\x78\x1e\xe6\x0b\xae\x2f\xbe\xa6\x91\xdc\x6a\xbe\x17\x1d\xd8\x9f\x6f\x56\x67\xb0\x16\x2e\x13\xe4\xc1\x3c\x37\x98\x59\x16\x29\x01\xb4\x1c\x20\x73\xfe\xae\x2f\x2f\xc5\x6e\x44\x26\xb5\xb1\xba\x5b\x58\xb6\x4d\xdb\xb8\xe2\xa6\x47\x9b\x36\xe4\x30\x8f\x6b\xad\x88\x0c\xbe\x66\x7f\xf2\xb5\xfb\x36\xb7\xea\xe6\xd8\xce\xec\xd2\xa9\x4a\x52\xd0\xe9\xce\xc1\xb8\xe9\x5a\x1b\x6b\xb6\x92\x6c\xc3\x60\x57\x9b\x8a\xea\x8d\xd1\x4e\x85\x62\x70\x70\x85\xea\x56\x11\xd1\xea\xf3\x33\x85\xb6\xe1\x1c\xdf\x33\x13\xbb\xde\xfb\xb5\x7e\x37\xcc\x18\x35\xfe\x8a\x0b\xc5\xe0\xd1\x13\xf2\x78\xa2\x12\xf5\x63\xda\xd4\x39\x0f\xe9\x70\xac\xb0\x31\x31\x27\x18\x50\xe2\xff\x78\x5e\x6a\xab\xdb\xc0\x76\x44\xc9\xc8\x56\x5f\x53\x54\xa6\xa9\x6f\x7b\xa0\xc7\x29\x4c\x8d\x66\x3e\x1e\x01\xb3\x48\x83\x98\x98\x83\x47\x73\xc7\xf6\x9e\x1f\xa5\x1d\x11\x33\xc6\x27\xac\xbb\x80\x33\x53\x28\x06\xe5\xad\x43\xc5\xbb\xab\xd7\x7c\x53\x45\x42\x67\xb3\x6b\x86\xaa\xc3\x03\x0f\x83\x4f\x26\x44\x9b\xf1\xed\x63\xb4\xb7\x15\xc3\x2f\x92\xd9\xbf\xf2\x6e\xfc\xde\x38\xe7\x34\x19\xc0\xf7\xae\x51\x21\xc0\x3e\xec\xfc\x73\xe4\x5d\x0d\xec\x48\x9b\x36\xc0\xbd\xc5\xcc\xc0\x5c\x18\xdf\x97\xc9\x33\xe1\xee\xdf\x58\x89\x41\xaf\x15\xb0\x24\x8f\xd1\x3d\xd9\xd5\x6f\x69\x5e\x4a\xd4\x2c\xc3\xf4\x23\xe1\x2e\xfb\x3f\x2f\x09\x27\x5c\x51\xcb\x43\x2f\xf2\x2f\x47\x55\x76\x88\xc1\xb0\x07\xfc\xfb\x60\xe2\x73\x8a\x96\x2f\xaa\x10\x14\xc1\x38\xfe\x38\x91\xbf\x89\x6b\xd7\x3a\x26\x15\xca\xd9\xc1\xfe\x0f\xe2\x4f\x3b\xad\x13\x3e\xed\xbf\xbe\xae\xbe\x08\x13\xad\xe5\x45\xe4\x80\xdd\x8a\xd7\x9f\xa9\x9c\xb8\x73\xa6\x2b\x6c\x14\xea\x38\xaa\xc7\x6a\xbe\x6d\xb3\x90\x68\xa7\x42\xbf\x27\xdb\x3c\xaa\x49\xec\xf8\x70\xd0\xa0\x10\xb8\x59\xf3\x8b\x9f\x76\xf9\x4c\x3e\x26\x39\xff\xd1\x11\xe9\xec\x15\x46\x40\x8e\xf8\xcc\xde\x70\x22\x2e\xf2\xb0\x9f\x76\xae\x1c\xbf\x20\x8e\x6b\xd7\x2f\x16\x4f\x23\xf3\xec\x50\x15\xde\xdd\x54\x00\x53\x9f\xd9\x73\xa9\x56\x97\x4a\x93\x4a\x07\xb0\x9f\xb1\x4d\xa5\x22\xa2\xed\x54\x30\x09\x3f\x16\x50\xf2\xaf\x1e\xa2\x94\x7a\x65\xcc\x6c\xd1\xf1\xe4\x86\x9d\x2b\x3b\xf1\x69\x97\x4f\x9a\x1e\xfe\xed\xc7\x97\x6b\xd0\xe0\x30\x81\x45\x6a\x55\x3f\xe8\x50\x36\xb8\xc8\xab\x09\xb5\x83\xdc\x3e\xc5\xf3\x95\xfa\x9e\x41\xa1\xdc\xcd\x6e\x6b\x93\x9f\xc8\xa4\x2d\x64\xf2\x34\x98\xe9\x7c\x41\x8b\xa6\x16\x8e\xf1\x02\x13\x17\xc8\x7a\x91\x18\xa2\x38\x2f\xcf\xd4\x53\x71\x13\xb1\x08\x2d\x10\x7c\xa7\xa1\x6a\x6d\x13\xa3\xce\x6b\xb6\xcc\xaa\x15\xf2\xd7\x4f\xea\x2c\xc0\xc4\x1b\x14\x3f\xee\xd4\xa6\x60\x0c\x95\xe5\x16\xf7\x3f\x74\x8e\x3f\x76\x4b\x04\xd9\x31\x14\xb8\x9f\x26\xb3\x1a\xe6\x09\x31\xc8\xc9\xfc\x7c\x45\x7c\x85\x9b\xb5\x54\x1b\x9b\xfd\xe5\xe3\x0a\x51\x20\xac\x39\x09\x2a\x14\x83\x41\x6f\xa8\x00\xe9\x30\x5e\x81\x97\xea\xf3\x81\x62\x3d\x8b\x5c\x2e\xf2\xfa\xb3\x55\x22\x7d\x50\xdb\x23\x4c\xd1\x8a\xcd\xe6\xaf\x54\x36\x44\x2c\xec\xd4\x80\x04\xf0\x2c\x07\x6b\x41\x25\x1c\x5c\x38\x74\x60\x72\xd8\x0a\x77\xec\xc9\x85\xfa\x86\x19\x94\x3e\xc5\xbe\xe8\xaa\x07\xe4\x0d\x36\x7d\xdb\xa8\x81\xd8\x7f\xf8\x5f\x7e\x32\x53\xc1\xdc\x93\x72\x13\xe3\xb0\x90\xcf\x7c\x51\xb6\xa6\xb6\x22\x5f\x1f\x6c\x2e\x45\x99\x8f\xb0\x92\xa2\x1b\x10\x9c\x98\x1c\x77\x35\xbe\xe9\x43\xb1\x7d\x36\xb5\x40\x60\xd8\x20\xe0\x83\xc7\xa7\x70\x7f\x52\x86\x35\x15\x82\xcb\x26\x3f\xea\xf3\x46\xb6\x29\x47\xdd\xa3\x4c\x88\x8c\x67\xad\x4d\xe7\x4b\x24\xcc\xcc\x42\x31\xb8\x63\x6a\x9b\x32\x99\x72\x3d\x18\x62\x87\x7f\xf3\xae\x53\x1a\x38\x03\x37\x5a\x13\x9a\x4a\x5f\x9b\xfd\xeb\x71\x5e\xc4\x4d\x9a\x35\x19\xf4\x30\xef\xd9\xa7\x49\x47\xa2\x32\x31\x90\x09\x82\x44\x22\x29\x7d\xe7\x1e\x45\x7a\xd5\x40\x0c\x9c\xcb\x5e\x7b\x97\x77\x41\x4b\xb9\x7d\x7f\xd8\x18\xf9\xab\xfa\x47\x3d\x64\xa4\xb6\x9a\xd9\x7b\x84\xff\xd9\x35\xbc\x93\x87\x57\xf6\xe1\xac\xd2\xae\x8b\x79\x50\xe6\xb5\x37\x92\xe1\xbb\x8b\x58\xd8\xc6\xeb\x34\x9f\xf8\x1b\xb5\x31\x6e\x99\x5a\x48\x0e\x1c\x32\xcf\x9c\xab\x43\x1e\x4b\x04\x47\x3c\xca\xdc\x6f\x3b\xe4\x61\x60\xd8\x05\x45\x32\x0e\x35\x1a\xb1\x3f\x0e\xdd\x4e\x87\x55\x28\x06\xf3\x46\x8d\xd1\x73\xff\x5a\x62\x4d\x48\x99\xca\xe6\xfb\x4e\x14\xce\x0d\xd8\x14\xce\x26\xdf\xc9\x5f\xa0\x28\xf2\x60\x58\xb1\x46\xb7\xf3\x33\x15\x9e\x7d\x96\xb5\xc2\xcb\x23\x0a\x86\x6b\x5e\x4a\xd0\xaf\x3c\x6c\x97\x85\xcf\xc1\x55\x67\x2e\x48\x54\xa3\xb6\x11\x73\xad\xb3\xe7\xee\xe3\xa5\xe3\x8c\xce\x02\x58\x52\x65\x3e\x3e\x5a\x37\xdf\x07\x3f\x0b\x34\x4a\xb5\x69\xf7\x6d\x17\x83\x10\x7a\xf6\x1c\x6d\x62\xe0\xd5\xa8\x8b\xf9\x5c\x34\x58\xd6\xce\x3f\x66\xd9\x77\x4c\x22\x04\x15\x72\xa5\xc7\x78\x9d\xb4\x08\x53\x5b\x4d\x4c\x99\xea\xf1\xf1\xcd\x9e\xfa\x7e\x97\x4f\xef\x93\xb3\xb0\xff\x68\xbb\x40\x85\x0f\x70\x42\x05\x81\x61\xe5\x82\x3e\xca\x12\x1f\x41\x04\xc8\xd5\xcb\x9a\x08\x23\x68\x37\x84\xe7\x4d\x50\xc2\x9c\x23\x1a\x52\xa9\x46\x9c\x68\xba\xfb\xc6\xee\x81\x0a\x46\x8e\xd5\x01\xa9\xdd\x35\x7e\x84\x5a\xb7\x71\x87\x6f\x69\xfd\x93\xfd\xe9\xfd\x1c\x49\x3e\x9f\x9a\xa0\x7f\x1d\x7d\xcb\xef\x99\xda\x66\x78\x06\x5f\x8b\x0f\x39\x23\x96\x4d\x16\xdf\x27\xf1\x31\x71\xf6\xd2\x5e\x83\xd5\xc1\x2f\x65\xdc\xd5\x2b\x73\x8b\xa3\xf4\x5d\x35\xdf\xe6\x81\xee\xcc\x1e\x8d\xf0\x82\xcd\x30\x8e\x46\x13\xf6\xdb\xce\x68\x23\x36\x2f\x3e\xf1\xc3\x58\xb2\xb7\x9d\xd5\x19\x59\x80\xfd\xa7\x29\xce\x5a\x78\xca\x45\xa6\xfe\x11\x1b\xab\x1c\x35\x31\x23\xe1\x42\x78\xfa\x26\x7c\xf4\xb1\x64\xe6\x46\xa5\xb2\x6f\x16\x18\xd8\xd3\x26\x5c\xe4\x73\xee\x46\x7e\xc5\x7d\x9b\x54\x5a\x22\xe5\x0d\x3a\x15\x47\xc5\xa9\x1d\x93\xa0\x3b\x59\xa9\xc0\x4d\x18\xe6\xc3\xf4\xef\x6c\xd5\xa4\x9b\x18\x16\x02\x1c\x85\x62\xf0\xb8\xa6\x8d\x5d\xf2\x5d\xe8\xe9\xb9\xe4\x19\x17\x55\x7c\x96\x3f\xfc\x1b\x18\xb6\xcc\xd8\x32\x60\xff\xe2\xe4\xe3\x9a\x34\x6b\x7a\xa7\x70\xfc\x2d\x8b\xb7\x65\xa2\xa6\x89\x5d\x37\xfc\x71\x85\x62\xf0\xfb\xe7\x87\x88\xa0\x50\xf5\x4d\xc4\x0a\x2e\x46\xdc\x15\x20\xcf\x96\xaa\x2a\x13\x26\x71\x71\x23\x8c\xe0\x39\xda\x95\xf2\x15\x86\x21\x0c\x68\x39\x7c\x77\xbe\x12\xde\x7d\xab\x24\x12\xfa\x81\xbd\x33\xdc\x1a\x72\x70\x3c\x87\xba\xa2\x22\x8c\x02\xda\xe1\xcf\xdb\x91\xd7\xde\xb9\x76\x66\xa9\x8c\x3b\xcb\x53\xaf\x9c\x00\xd1\x21\x8a\x11\x39\x6e\xc2\x57\x58\x44\x1c\x62\xbb\x75\xa2\x54\xb4\x5f\xef\x9d\xa0\xa3\x96\x7d\x83\x83\x6b\x8e\x3c\xdd\xa6\x4c\x93\x2a\x66\x24\x7c\x94\x59\xf7\x8c\x74\xb3\x9b\x02\xb0\x4a\xff\x10\xff\xfe\xd7\xb8\x7c\x3d\x20\x01\xe0\xdf\x7a\x31\x79\x0a\x2c\xdf\xf4\x88\x45\x4c\x33\xfc\x59\x65\x6a\x9a\x02\x95\xd3\x9d\xfb\x51\x6f\x5e\x9e\xb6\x08\x36\xc1\x03\x3a\x33\x67\xfe\x20\xf1\x54\xb1\x8d\xb8\x3d\x5d\xf8\xcb\x36\xae\xe1\x71\xc4\xa9\x11\x13\xd9\x5e\x8d\x51\x87\x97\x61\x0f\x2b\xba\xc2\x0e\xa3\x05\x03\xb9\xc4\x86\xa7\xbd\xba\x37\xf7\xe7\x5b\x8c\xbc\x9b\x71\xda\x9f\x2f\x3f\x79\x65\xb2\xa6\x2d\x85\x61\xb7\x46\x62\xef\xea\x3f\x76\x5c\xda\x43\x8d\xc0\x89\xdc\xc9\x53\xff\x09\xc5\xbe\x1b\xf6\x66\xd1\xbe\x22\xb3\xe1\x94\xdc\xdc\xa7\xf9\x3c\xb9\x7e\x81\x5c\x82\xa9\x2b\xaa\xcc\x17\x1f\x8c\x9f\xf6\xa4\xa9\x61\x19\xf3\xfe\xee\x36\x95\x14\x42\x90\xd8\x4f\xe7\x97\x75\xca\x7a\x96\xd1\x26\x34\xdc\x4f\xbd\x3e\x46\xfb\xe4\x91\xb2\xa2\xcb\x5b\xea\xe8\xd7\xdc\xbd\x59\x9d\x7e\x85\x59\xa7\x21\x4a\x02\x34\x55\x1c\x1d\x1c\xd6\xc2\x89\xcf\xf6\xf7\x3d\x3a\x01\xd5\xaf\xd6\x22\xc4\xdf\xb5\x67\x64\x53\x68\x00\x9d\x3b\xea\x7e\xee\x78\x59\x99\xbe\x62\xc6\x69\x48\x99\xff\x54\x0a\x41\x6e\x54\xcf\xbf\x56\xe6\xce\x14\xa5\xd7\xc0\x62\x03\x17\x5c\x3b\x5c\x89\xf9\x3e\x8f\xc0\x8f\x6c\xd3\xd5\x4a\x3c\x62\x21\x23\xa2\xfa\xbc\xf9\xdc\x85\x0a\x12\x11\x56\x9f\x8a\x0d\xd5\x17\x9f\x56\x15\x70\x50\xc4\xda\xc9\xa8\x16\x75\x11\x48\xa2\xd8\x9d\x59\xab\xf9\x33\x70\x48\x58\xd4\x0b\xdd\x3d\x5f\x0a\x2f\x78\x80\x52\xbf\xb6\x4f\x0c\x97\xe5\x55\x60\xf8\x3c\xbe\x75\x4a\xbe\xd1\x2e\x61\x1f\x02\x49\xc0\x37\x95\xa1\xa9\x51\xe7\xf2\x13\x77\xac\x4f\x72\x2b\x91\x85\x7a\x00\xa6\x67\x5f\x38\xa8\x6b\x71\xb8\x1e\xb6\xa2\xc0\xf7\xc9\xdd\xfd\xa3\xac\x63\x8a\xed\x61\xfe\xde\x3d\x43\x14\x2f\xe0\xeb\x55\xd7\xdf\x2b\x15\xa1\x21\xea\x92\x7a\x58\xb8\xff\xb0\x2b\x59\x2a\xc2\xd8\xda\xe5\xad\x1b\x57\x00\xba\xb3\x97\x56\xc8\x1a\x86\x6f\x81\xc9\x61\x84\xe5\x61\xab\x64\x49\x8e\xec\x96\xc0\x14\x7f\x65\x49\x7b\x22\xcb\x60\x96\x82\x4b\x75\xe7\x2e\x7c\x5f\x0b\xfd\xc8\xe5\xc3\x70\xae\x45\x36\xb1\x5d\xaf\xf3\x88\x2d\x04\x45\xa3\x99\x75\xa6\xba\x58\xbe\x9e\x19\x20\x79\xbd\xa2\x9f\x9c\x95\xd7\xe0\x54\x5e\xaf\x98\x00\x58\xd4\x0d\xcf\x71\xf8\xfc\x96\x6c\x97\xdc\xaf\x5a\x34\x9a\xca\xdc\xdd\x36\x44\xd4\xb4\x25\x62\x53\x39\xb9\x0d\x7e\x71\x5c\x42\xd1\x4b\x14\x9c\x93\x96\x26\x8b\x9e\x2a\xb6\x41\x49\xbe\x27\x19\xeb\xdc\x12\x0d\xe8\xdf\x85\x6d\xd0\x12\x88\xaa\xc2\xb3\x4a\x3d\x6c\x22\x48\x49\x3f\xee\x92\x3d\x75\x0d\x95\x30\x2b\x87\x67\x19\x2a\xba\xcf\xf5\x89\x5b\x94\x64\x0b\xfd\x2d\xcd\x4c\x88\xd3\xbe\x78\x9d\xb4\x4e\xf9\x1d\x1e\x12\x65\xc7\xe7\xce\x0c\x55\x42\x91\xeb\x70\x15\x1c\x8e\x00\x3f\xa8\xf6\xca\xdc\x47\x3d\x7c\x44\x3f\xec\x35\x54\x29\x49\x3d\xcc\x22\x25\xeb\xee\xcc\x17\x2a\x5a\x11\x43\x58\x99\x48\x26\xc0\x53\xa7\x7a\x50\x1b\xe6\x9e\x04\xb9\xb1\xef\x6b\x90\x8a\x8a\xc0\x15\x5e\xbc\x3e\xa5\xed\x18\x06\x0f\x31\xad\x7d\xfe\xb5\x38\xe8\xb6\xa8\xaa\xd3\x33\x6e\xe2\x45\xea\x26\x05\xa0\x13\x05\x17\x14\x26\x04\x9d\xf1\xcc\xc9\x4b\x7b\x6c\x84\x53\x13\x8f\x2c\x2a\xa7\xe0\xea\x25\x1c\x6d\x38\x3e\xde\x4b\x0c\xd5\x88\x6d\x63\xe4\x50\x93\xc4\xe2\xf1\x23\xe6\x27\x0b\xc6\x92\x48\x46\xdf\x7c\x5b\x53\xec\x2c\x17\x8a\xc1\x1b\x87\xe2\x6f\x62\x2a\x18\x8a\xe0\xb1\x1d\x8a\xe6\x0e\xb2\x61\xe4\x17\xac\x1b\xaa\x36\xcb\x58\x08\x9e\x7d\x54\x43\xd0\x44\x2e\xd7\x50\x89\xf3\xb0\x91\xbf\x76\xfe\x30\xe5\xb9\x18\xa6\x5f\x96\xcd\x49\xe6\xa1\x51\xba\x75\xbb\x5f\x0e\xbb\x27\x3e\x8e\xff\x5a\x1f\x2d\x5c\x00\xcb\x00\xb3\x78\xa5\x90\xfb\xdd\xf3\x7a\x27\xee\x1a\xbe\xd8\x4c\x05\x77\x9d\x1a\x9c\xe8\xbd\x22\xc8\xc3\xe7\x1e\x91\xdf\x85\x94\x31\xe2\xf2\xfd\xc6\x2b\x3d\xc3\x5f\xa2\xd5\xcc\x67\x8f\xf2\xda\x16\x99\x04\xc7\x36\x2c\xff\xd8\x99\xe2\xbf\x18\xb8\xec\xb3\xe8\x0e\xe4\xbe\xb6\x57\x71\x5f\x45\xac\x8a\x88\x00\x3b\x66\x97\xaf\x96\xd8\x80\x8f\xa6\x4e\xc0\x2f\x02\x05\xab\xe1\x73\x98\xe6\x37\xf2\x8a\x1c\x24\x66\xd4\xa5\x66\xf8\x83\x26\x6a\x72\x72\xb4\x69\x63\x26\x08\x04\xdf\x2e\x25\x5f\x50\x03\x99\x26\x2a\x53\x93\x94\xe5\x4e\x6c\xe8\x31\x25\x63\x90\x75\xe0\xc4\x9d\xfb\xe0\xa4\x26\x8e\x83\x6c\x82\x92\x8d\x71\xf6\xe0\x4e\x0d\xb0\x6e\x1b\x84\x19\x66\xc4\x4a\xcb\xcc\x3f\xa8\x01\x48\xc3\x06\x31\x2c\xc9\x62\x1a\xd9\x3c\x45\xa1\xa5\xc1\xb1\x48\xe1\x91\xe9\x73\x99\xfc\x44\xeb\xb0\xc5\x73\xf0\xe7\xd9\x50\x65\x80\xc1\x5c\x8f\x17\x4b\xe1\x87\x65\x32\x67\xce\x9a\x06\x9a\x70\x57\xbd\x15\xd9\x1b\x73\x53\x0a\x2e\x2d\x92\xdd\xa6\xf1\x92\x01\xa9\xa7\x3a\x67\xcc\x3a\x28\xbd\x5a\x1b\x04\x7b\x36\xb2\xb8\x2f\x57\xb2\xf8\xfb\xf0\x09\x3e\x24\x72\x29\x54\x4c\x1f\x3a\xa0\x01\xbd\x3c\x3e\x6b\x13\x33\xae\x1b\x0f\x29\xe8\x71\xda\xe4\x55\xc0\xa4\x51\xa2\x89\x57\x36\xa6\x35\xde\x06\xc2\xb8\xa8\x46\xed\xe8\xbc\x6e\xec\xa5\xd3\x1d\x70\x1d\xdb\x62\x05\x93\x9b\x55\xd1\x6a\x1d\x8c\x58\xb4\xd1\x0a\x7e\x7a\xbb\xd2\x01\xd5\x10\xac\x95\x32\xe7\x1c\x6b\x4f\x75\x40\x5c\x64\x00\x10\x68\xbc\x6b\x39\x7c\x4c\xf1\xd6\xa4\xdc\x09\x97\x95\x14\x0f\x64\x70\xd3\xcf\xfe\x79\x55\x2a\xfe\x53\xb1\xad\xb8\x6a\xfe\x80\x38\x1d\xa3\xc8\xb5\xac\x73\xd5\x10\xb5\x73\x50\x0b\xee\x5e\x17\x28\x6d\x8f\x5d\x56\x36\x3d\xb9\xa3\x67\x74\xf9\xeb\x6a\xad\x80\xed\x38\xce\xff\xec\x41\xd9\x8f\xcc\x9a\x38\x73\xd2\x8c\x8e\x19\xd3\xf8\x34\xfc\x8a\xc8\xe4\x92\x0a\xfc\xff\x97\x37\x0b\x6e\x8b\x5b\x43\xc2\x87\xfe\xa3\x6b\xb5\x95\xac\xef\x7a\xc4\x10\x18\xf4\xec\xd7\x37\x4a\x51\x47\xae\xdf\xf3\xa9\x05\x8a\xf3\x1a\x63\xd8\xc4\x0d\x21\x8e\xd4\xab\xef\x50\x8d\x78\x18\x75\xc1\xab\x97\x0c\xd3\x32\x11\x5a\x1b\x47\xb1\x4f\xad\xe4\x73\x95\xeb\x18\xc7\xd3\xe5\xbe\xb5\x54\x0e\xe5\x3d\x0c\xf2\xcf\xb2\x82\x5e\xbf\x5f\xdf\xc5\x9b\x96\xe0\xe2\x64\x3f\x99\xd7\xfe\x1b\x0e\xf3\x1d\x67\xdf\x4e\x58\x02\x45\x60\x61\x2e\x23\xe1\x5b\x32\x69\x15\x1c\x78\xf5\xae\xe2\xdd\x8d\x17\x2a\x11\xab\x54\x22\x9e\xea\x19\x9d\x3f\x3d\x52\x99\x25\x70\x09\xfd\x04\x24\xfe\x1d\x45\xdd\xca\xb5\xa8\xe9\xad\x53\xda\xf6\xff\x7a\x77\x80\x82\x8f\xf1\x6d\x18\x7f\xde\x3c\xff\x7c\x71\xa9\x5d\x8f\x2f\xcf\x7d\x9d\xc1\x88\x4c\x44\x5c\x21\xb6\x9d\x29\xbf\x35\x39\x79\xdb\x60\xd8\x00\xf0\x02\x62\x87\x35\x05\x1c\x68\xb1\xa1\x93\x02\x25\x3b\x4f\x25\x57\xff\x16\xf5\xed\xc8\x59\x43\xdf\x38\x9c\xfb\xa0\xba\x12\xb3\x5d\xdf\x0a\x0f\x0f\x7f\x93\x87\x56\xfe\xff\x18\x8a\xe8\x53\x8d\xae\x3b\x79\x85\x07\xcc\x7e\x41\x90\x84\x9c\xda\x58\xf5\x11\xad\x44\x43\x76\xc1\x41\xbe\xa9\x69\x99\xde\x71\x3c\x39\x5b\x00\xcf\x19\x00\x13\x94\x77\x0e\x55\xb4\x92\x98\xab\xc2\x14\x57\xf1\x73\x3e\x07\x7b\x4d\x8c\xc3\xfb\x58\xda\x25\xcb\x28\xbc\xd6\xc0\xc2\x9a\x3d\x4c\x94\xe2\x4e\xcc\xc7\x65\xa1\x77\x7e\xd5\xad\x29\x50\x38\x26\x55\x81\xb6\x0f\x8e\xbc\x2e\x0d\x0b\x3c\x3f\xd5\xd0\x6e\x95\x25\x12\xa5\x8a\x98\xd7\xc9\x67\xf4\x96\x18\xf4\x9d\xd3\x2d\x71\xee\x9f\x97\x6b\x0a\xaf\xe5\xb0\x14\x77\x3d\xbe\x41\x83\xe4\x5e\x79\x41\x15\x6c\x28\x95\xc0\xe9\x34\x33\x73\xb3\xfc\xd3\x1a\x46\x8c\xd3\xf9\xd6\x6b\x75\x7f\xa4\xc6\xc6\x0b\xc1\xf5\x1a\x00\xcc\xf5\x90\x6f\x1b\x35\x9e\xfa\x01\xdc\x7d\xce\x3c\xf9\xe4\x22\x07\xef\x68\xf7\xb1\x46\x35\x3e\x15\xf4\xf2\xbb\x76\xa7\x75\x42\x97\x5c\x1b\x1c\x7f\x5e\x4b\xd4\xac\x1c\xc1\x04\x32\x3f\x5c\xda\x5f\x89\x1c\x40\xb7\x1d\x3e\x5a\x5e\x44\x0b\x5b\xd8\x53\x15\xb4\xe7\xef\xd4\xb6\xf2\x7c\xfa\xca\xbf\x11\x1a\x9d\x52\xfc\x37\xc2\x53\x2a\xf1\x7c\x5f\x9d\xa9\x6d\x41\x19\x02\x85\x65\xa1\x7b\x77\xf8\x0a\x1d\xd1\x60\x36\x04\xb3\x26\x78\x45\xe9\xbf\xba\x28\x11\x3b\xdb\xfe\x9b\x92\xbd\x09\xaa\x54\x10\x61\x2e\x57\xa6\xd5\x8b\x9b\x15\x1b\xf9\x94\xc6\x6d\x59\x25\x6a\x92\x75\xa2\x22\x9a\x29\x9c\x81\x2d\x64\x23\x41\xd1\xc8\x0c\x9f\x37\x24\xda\xfd\x2d\x5e\xbc\x64\x99\xaa\x3b\xbb\x2f\xf9\x52\xc3\x52\xb5\xe0\x3b\x22\x6a\xb7\x3d\x3a\x4a\xef\x95\x5c\xad\x7c\xf9\xdd\x31\x75\x58\xe5\x7a\x42\x03\x32\x78\x72\x07\x9f\xfc\x2c\x61\xc4\x42\x2c\x45\x98\xc8\x7d\x72\xa6\xac\x8f\x27\x4d\x8f\x0e\xc2\x73\x6f\xc9\xa4\x10\x4d\x0d\xe1\xc7\xfd\xbe\xaf\x46\xf1\xe4\xce\xa9\xd1\x5e\x66\x6d\x45\xd9\x30\x85\xd5\x06\xa4\xe8\xe6\x51\x49\x97\xf1\x21\xf7\xbe\xda\xa5\xab\x38\xbb\xbe\x09\xb9\x3a\x78\xfa\xa0\xc0\xeb\x50\x24\x34\x99\x67\x78\xda\x01\xc0\x2a\x61\x06\x86\x13\xcf\xf7\x3c\x4c\x04\x68\x7a\x76\xf2\xbe\x8b\x79\x53\x7a\xfd\x35\x85\xc5\xb4\x41\x5d\x4f\x9f\x3e\x05\xe7\x3d\x34\x42\x39\xe3\x2d\x93\x2b\x9d\x49\xe1\x8b\x5c\x2f\x19\x04\x4c\x39\xd4\x0e\xfa\x8d\x6a\x8b\x5e\xe8\xcd\x80\x52\x11\x7f\x3e\x86\x4f\x37\x0b\xe3\xaf\xbd\xf1\xa6\x54\x39\x9c\xf9\xfd\x8e\x01\x09\xc2\x47\x78\xcb\x1e\xe8\xd4\x1c\x04\xa8\x51\x23\x42\xfd\x36\xbc\x6e\x2f\xae\xd7\xa9\xaf\x56\x29\x62\x90\x89\xd5\xe4\x5b\xa7\x85\x55\x9c\x89\x2c\xd0\x47\xcb\x3d\xa8\x01\xc4\x60\x90\x50\xc6\x3d\x10\xb7\x82\x9d\x0b\x25\x02\x97\xa4\xb0\xbf\x99\xbf\x2f\x19\xa9\xb5\xa6\x62\x08\x24\xee\xd1\xd7\xa7\x0f\x55\xc6\x43\x89\x09\xe8\x43\x95\x64\xc0\x2f\x21\xa3\x2e\x10\x67\x77\x39\x1a\xc6\x67\xc9\xb5\x41\x97\xc6\x82\x40\xc6\x6d\x3e\x61\xb1\x36\xd1\x91\x46\x3c\x77\x20\x2c\x9a\x3b\x64\xb7\x8d\xe5\x15\x72\x85\xb2\x12\x29\x8b\xca\x3b\xf7\xdd\x0f\x92\x13\x73\xe8\xe0\x36\x0b\x69\xaf\xb0\x94\x26\x15\x18\x28\x1d\xbd\x5d\x11\x5e\x14\xa6\xa9\xf1\xab\x5c\xfc\xb2\x2c\x1d\x1d\x8a\xa1\xf8\xb8\xe1\xdd\x36\xc9\x79\x52\xd5\xf7\xe6\x6e\x53\x01\xfb\x8e\xc9\xa7\xe3\xff\xb2\x38\x8d\x24\x83\x17\xc7\x49\xbc\x97\x6d\xd5\xb0\xca\xa8\x63\xc2\xec\xd8\x44\x6b\xef\xf9\xd2\xc3\xb8\x5a\x28\x06\x7d\x5f\xd4\xe0\xf8\xc8\x8b\x20\x7c\xc1\x03\x6d\xf2\xb3\x4e\x9e\x0a\x03\xb7\xdc\x93\x4f\x25\xaf\xda\xe4\xce\xc2\xa4\x19\x42\xb8\x68\xb5\x12\xfd\xc0\xab\x11\x12\xc4\x96\xf7\xb4\xf5\x3c\x6a\x45\xe6\xee\xf9\x59\xef\xc7\xcd\x89\x49\x9b\x85\x62\x70\xdb\xdb\x11\xfd\xae\xc2\x89\x3b\xd9\x75\x15\xed\x6e\x4b\xf6\x44\xb6\x6d\xbb\x06\x86\xe9\x70\x7b\x82\x44\x77\x67\x06\x6e\xd6\x24\x11\xfc\x30\xbd\x88\x61\xc7\x89\x51\x82\x00\x81\x48\x19\xa9\x0a\x59\xb9\x6d\x43\xa5\x25\x5c\x62\x82\x97\xbb\xe2\xac\xec\x85\x90\x01\xc8\x20\xde\xb9\x27\x7f\x2f\xd1\xac\x69\xba\x30\xf3\x5d\x64\x62\x4b\x64\xb6\xe7\x9f\xd3\x88\x74\x35\x64\x9a\xd8\xae\x0a\x25\xe8\xbb\x8f\xc9\xdd\x18\xad\x78\xd8\x2e\x58\xc4\x35\x31\x12\x27\x32\x73\xcf\xbb\x43\xb4\x47\x1b\x29\x1e\x1c\xed\x4c\x3e\xb5\x19\x13\xa7\x74\x76\x8a\x3e\xee\xee\x89\x0a\x3c\x04\x5b\xa4\x50\x21\x36\xe2\x4b\xc8\x3e\x27\xc6\xea\x9f\x27\xc2\x4a\xe9\xf3\xd0\x5e\x8f\xf1\x37\x65\x23\x8b\xef\x59\xef\x58\xaa\x06\x79\x75\x55\x77\xe8\x91\x61\x7a\x51\x1e\x36\xc2\x1c\xcc\x4f\x56\x4b\x39\x81\xb0\xbd\x0e\xfa\xe5\x35\xd8\xb2\xe9\xbb\x35\x08\xdf\x7c\xc1\x17\xe8\xce\xb4\x7e\xc9\x14\x53\x91\xe0\xb9\xd1\x7a\xb3\xc9\xb8\x1d\x01\xaf\xf2\xaf\x3a\x2e\xf1\x94\xca\xf6\x4a\x84\x8a\x4b\xca\x1a\x7c\x07\xad\x8d\x06\xab\xd9\xaf\xbe\xa7\x35\x59\xbe\x5d\x66\xb8\x1c\xc1\x1c\xf3\xd7\x54\x78\x97\x32\x69\x52\xc7\x64\x90\x5c\xbe\x4d\x0b\x53\x7c\x9e\x05\x88\x9f\x8f\x2e\xd1\x6a\x2a\xec\x20\x06\x20\x3f\x61\x3d\x9a\x1b\x2f\x40\xa6\x7c\x0d\x0a\x0a\x54\xe5\x51\x5a\x2b\xc9\x68\xb2\x12\xce\x8f\xe8\x2d\xd9\x83\x40\x31\xfb\xe6\x68\xa9\xfa\x6c\x58\xb0\x3d\x1b\xa4\x49\xe5\x70\xc6\x58\x34\x72\xc8\x9d\x77\x6e\xfc\x2f\x3c\xca\xa5\x24\x9f\xd0\xf5\xe3\xa9\x10\xd5\xeb\xce\x4d\x5e\xa5\x8d\xa3\xb9\xbb\x45\x6b\x82\xb0\xf3\xeb\xce\x7d\x52\xd3\xed\x11\x7e\xf0\x70\xb6\x3f\xbf\x6b\xa4\x16\x98\x61\x45\x42\xc4\x74\x28\x78\xab\x37\x6f\xf8\xe7\x22\x46\xe5\x76\x3b\xf8\xf4\x3c\xcd\xb7\x88\x72\x59\xc1\x28\xa0\x9f\x18\x93\xfc\x95\x36\xc6\xe5\x78\x39\x3b\xcb\x16\x7c\x1e\xbf\x64\x20\xa0\x2e\xe6\x0e\xcc\x57\x3d\x35\x0d\xae\xc9\xd3\x9d\xeb\xad\xb8\x39\x54\x19\x85\xb8\xdb\xde\x57\x61\x02\xe3\x2a\x02\xbc\x4b\xf6\xbe\xe9\x5c\x70\x66\x41\xd8\x1d\xa4\xae\x49\xee\xeb\x0f\xf6\x17\x3f\xbb\xe4\x7b\x42\xfe\x1f\xaf\xd1\x22\x22\x84\x34\x7e\x80\x5f\xe8\x49\xc7\x30\x62\xc7\xe6\xde\x99\xc3\x7f\xda\x32\xbf\x5c\x0e\x1f\x25\x80\xf6\x0e\x2b\xb4\x6d\xea\xb3\x02\x80\x0f\x76\xeb\x96\x59\x36\x78\x39\x88\xb8\x73\xdf\xa0\x84\xd4\x2a\xc8\x64\x72\x3d\xfd\xdc\xc7\xfb\x29\x84\x8e\x48\x3f\x2f\x3b\x55\xdb\xaf\x82\x64\x61\xcc\x2b\xa9\x6f\x6d\xd3\x0a\x03\x9b\x6b\x65\x9d\x7e\x8c\x17\xb3\xc5\x71\xcb\x6e\xbc\x66\xee\x82\x68\xb2\xd9\xb9\x44\xcb\x60\x4d\x5a\x88\x65\x78\xba\x73\xd3\x5f\xd2\x84\x9e\x09\x0b\x63\x4c\x0d\x59\x92\x5f\x9d\xfd\xc9\x50\x0d\x37\xe7\x38\xd4\x06\x2a\x28\xbf\x43\x03\x5e\x57\xc9\xa3\x26\x01\x90\xcc\x1b\xc3\xf4\xf1\x40\xac\x70\x9a\xff\xe7\xdd\x9a\xe8\x17\x2f\xfa\x78\x3c\x7d\xf8\x4d\x31\xaf\x49\xd8\x65\xec\x52\x00\x58\x06\xf3\x2b\x90\xff\x33\xbb\x47\xc9\x3f\x2e\x53\x27\x02\x7e\x8c\x78\x61\xb0\xba\x27\xf3\x23\xfb\xf0\x55\x77\x2a\x0e\xf8\x89\x6d\xd5\x1a\x9d\x22\x0a\x04\x16\x1f\x99\x11\x82\x26\x3f\x73\xb6\x56\xe7\x53\x13\xbc\xcd\xf8\x8e\x61\x9e\xad\x4c\x4a\x7c\xa3\xae\xa2\x69\x33\x9b\xde\xbd\x58\xcb\x1d\x76\x59\x37\x78\xda\xf1\x98\x7c\x86\xe0\x9f\x50\x28\x06\x5f\x33\x79\x6d\x74\x23\x0a\xfb\x02\x86\xc1\x7e\x2a\x7f\xed\x78\x29\xf5\x5c\x86\xaf\x7b\xd7\xa9\x51\x5a\x99\x6d\x01\x35\x1d\xc5\xca\x5c\xf9\xb6\x45\x9a\xd6\x73\x13\x09\x8d\xb5\x3e\xa3\xb4\xe0\x10\x43\xb6\x04\x8e\x8c\x29\x24\xe7\x75\xb8\x4c\x4c\xd0\x98\xc8\x8e\x9d\xaa\x1d\x2c\xec\x7a\xe0\x83\xc5\x7f\x6c\xd7\x0e\x6e\x37\xb8\x02\xd9\x06\xf5\x1b\x69\xf7\xa6\xcc\xcf\xcf\xc4\xa5\x18\x6e\xa8\x78\xea\x9f\x0e\x8d\xf9\xd3\xa8\x5e\x28\x06\xbf\xd1\xb4\x35\xc2\xf6\x44\x9c\x95\xff\xc7\x34\x4a\xbe\x49\x6c\x8f\xda\x50\x84\x45\x63\x8b\x65\x8b\xc7\x68\x89\x0a\x13\xbb\xc4\xb0\x51\x03\x69\x7b\xc5\xab\x65\x5f\x3c\x4e\x28\xfb\x69\xe5\xcd\x0d\x6f\xf2\x0b\x76\x33\x31\x15\xe0\x6a\xe6\xb3\x0a\xe2\xd8\x8d\x66\xbc\xc1\xac\x9d\xb2\x30\xa5\x86\xe1\x3b\x1c\x82\x20\x2e\xa5\x75\x4a\xad\x4c\xad\xb0\x0c\x3f\x79\x4a\xd7\x90\x6b\x95\xa2\xd2\x39\x3b\x6c\xaf\x66\x38\x6e\xf3\xaf\x98\xe8\x03\x5e\xea\x95\x52\x42\x45\x46\xcd\x17\xae\xbc\xb9\x4f\xac\xe7\x4c\xbe\xf9\xe0\x3e\xd7\x83\x36\xfa\x0f\x0e\x25\x97\x36\x93\x66\x72\xde\xfe\x47\x7a\x49\x22\xa5\x1b\xe6\x4e\x93\xef\xca\x92\x4f\xe7\xad\x72\x7c\x2a\xa7\x4c\x06\x85\xd0\xb5\x9a\x4e\x0c\xf2\xbd\x1a\x27\x55\x73\xcd\xaa\xa5\xef\x2a\xab\x74\xc4\xea\x1c\x08\x38\xc5\x6e\x53\x3a\x2c\x01\xf6\x2e\x14\x83\x37\x1e\xe2\xd3\xab\x15\x98\x95\x49\xe2\x76\x9d\x15\x1e\x41\x8e\x6f\x13\xb7\xc6\x31\x0b\xc1\x6f\xb7\x4b\x76\x2c\xe2\x2f\x45\xef\xfe\xff\x71\xab\x02\x53\xc2\x1e\x8e\xf4\x26\x7e\xa5\xad\x1c\x5c\x0f\x33\x3b\x29\x73\x98\x79\xea\x45\xed\xdc\x21\x06\x50\x7f\xe5\x38\x65\x77\xad\x48\x1e\x5b\xa0\xde\x80\x39\xc6\xc5\x79\x4d\x14\xdd\x8a\x99\x30\x43\x0e\xc4\x75\xb0\x81\x54\x15\xab\xee\x6c\xa5\x8f\xf6\x3c\x6d\xb7\xc9\xe1\xcb\x90\xc4\x1f\x7d\x46\x7e\x1d\x5a\xa9\x14\x4a\x18\x34\xd4\xaf\x51\x50\xa0\x06\xb2\x1b\xc8\x15\x8e\xc4\xd9\x7f\xd9\x9a\x0c\x09\x2d\xec\x4d\x68\x94\x40\xb2\xb1\x9f\xba\x1b\xb5\x95\xfa\x32\x37\xeb\x45\x5e\x2a\xac\x20\x26\x55\x04\xd1\xff\x35\x7f\x99\x16\x3f\x5d\x8f\x78\xdc\xc2\xa0\x99\x5e\x0a\xcf\x79\x2f\x99\x75\x78\xc4\xd4\x9e\xf1\x67\xf3\xf2\x24\xe0\x06\x32\x7d\xb1\xec\xca\x7d\x6a\x94\xbc\x3d\x25\x6a\xc2\x8e\x67\xbb\x62\x7d\x13\x49\x89\x09\xcc\xcf\xbb\x33\x35\xa5\x66\xdb\xc3\xcc\x61\xc4\x8d\x45\x3f\xe7\xbf\x26\xb1\x86\x15\x9f\xb5\x14\x6b\xac\xdc\x93\x6b\xe5\xf5\xc6\x76\xa4\xb2\x97\x0d\xc6\xc8\x0a\x5c\xb0\x8b\x0d\x5e\x71\xec\x3c\xab\xfb\x91\x73\xd8\x0a\x9f\x2f\xc2\x3f\xfe\xf4\xbd\xfd\x95\xe9\x20\xb8\x27\x0c\x08\xf8\xd8\x61\x19\xf5\xbd\x14\x9b\x38\x37\xc6\xe1\x4f\x7d\xfc\xb5\xf3\x96\xcd\x96\x83\xcc\xcf\x2a\x82\xc8\xbe\xeb\xf3\xdf\x5f\xd7\x78\x32\x61\x59\x23\xf6\x4a\xc1\xce\x40\x6e\x22\x89\x0d\x0e\xcb\xb0\x79\xb8\x65\xba\x62\xb3\x02\x06\x73\x51\x59\x39\x5a\x68\xb4\xa0\x52\x64\xc5\xf8\x9b\xf6\xb8\xf6\xc5\xa0\xbd\x57\xd9\x2a\x95\x51\x69\xec\x0f\xf9\xe1\x92\x62\xe5\x2c\xf4\x0e\x0a\xc5\xa0\xfa\x66\x04\x37\xab\x21\xd0\x9f\x08\x5f\x2a\x2f\xee\x34\x40\x0e\xc3\x26\x89\x25\xd1\x1f\x9c\xc3\x63\x2f\xc8\xf8\x5b\xc4\x13\x92\xb0\x97\x35\x78\x8d\x36\x9f\x74\x91\x88\x63\xf3\xfd\x3d\xca\x66\x07\x81\x57\x3e\x6f\x9a\xae\xd6\xb8\x53\x25\x46\x4a\x98\x71\xc1\xc1\x0d\x9b\x34\x9a\x1c\x65\x62\x35\x78\xcb\x2b\x83\x45\xef\xc5\x49\x13\x91\x07\xd9\x89\xae\x8f\xea\x11\xa0\x0c\xbd\x5d\x4f\xba\xce\xd9\xdb\x9e\x96\x27\x6c\x12\x58\x3a\xf3\x41\x57\xf8\x93\xfa\xef\x4b\xfe\xee\x32\xa5\x7c\x7e\x9a\xf9\xd0\x44\x7d\x00\xe0\x45\x0c\xbd\xdc\xbf\xf5\xe5\x51\x6f\x31\xb2\xbd\x98\x5d\x9c\xf9\x4e\x7b\xac\x34\x82\xa5\x9b\x51\xee\xa9\xc4\x19\x16\xb3\x8d\x9f\x28\x23\x87\x92\x89\x9b\x85\x62\xf0\xbb\x7b\xe3\x77\x5b\x87\x89\xfc\xbc\x27\x34\x79\x7b\x65\x80\x17\x66\x95\xec\x25\x8f\x29\x2e\xb2\xc8\xab\x41\x61\x9b\xfd\xdd\x6a\x0d\x30\x2a\x6a\xe1\xc1\xef\x49\x84\x39\x92\x0b\x99\x60\xdc\xb3\x83\x55\xdc\xb0\x6b\x70\xb8\x47\xe6\x4b\x6b\xa4\xe2\x87\x4d\x94\xd8\xfa\x9c\xa6\xd6\xc2\x48\x03\x86\xce\x2a\xb3\xe7\x0f\x2f\xc9\x67\xde\xac\x11\x53\x55\xd9\x9d\xb5\x85\x1f\x9c\x49\x9d\x9d\x05\x61\xcd\x94\xff\xf8\xf2\xd4\x95\xe6\xe2\x75\x99\xaf\xa6\xbc\x9e\xeb\x38\x52\x95\x38\x75\xa5\x18\x16\x93\x72\x61\xd2\xac\x59\xd3\xc3\x3f\x9b\xb2\x77\xa8\x32\xbd\xf2\xdd\xf0\xff\xf2\x6a\xd0\x41\xac\xb5\xe5\x43\xf7\x5a\xb0\xce\xcc\xf4\x39\xa2\x75\xd2\x96\xb2\x3a\xed\xce\xdc\x77\x40\x7e\xae\x2a\x2d\x94\xa2\x45\x4a\x77\x2e\xe8\x25\xef\xbf\xd9\x62\x5c\xe1\xe8\x1b\x1f\xf0\x9d\xf0\x94\xcb\x41\xe5\xf5\x4b\x1b\x38\xe6\xdd\xc2\x3c\x3c\x6c\xdf\x9d\x1c\x90\x87\x95\x22\xb2\x3d\xda\xa3\x9d\xf6\x92\x13\xfd\xd5\x3d\x19\xe8\xe4\x6c\x8a\x48\x99\x35\xc4\x9d\x02\xfb\xb7\x6b\x7d\x54\x8d\x32\x3f\x0e\xae\xd9\x99\x02\x58\x74\x1d\x43\x46\xc2\xd2\x37\x73\xcd\xba\xe1\x4a\xe5\x64\x56\x0a\x06\xb6\x5d\xca\x04\x7f\x26\x5b\x2d\x0d\x14\x19\xc8\x41\xcc\xf3\x19\x87\xcd\x2e\x7f\x2d\xf9\xe6\x1d\x46\x2b\x98\x3b\x36\x46\x6a\x2e\x99\x2f\x68\xe4\xa0\x26\xa3\x91\xe1\xd7\x4f\xa4\xd1\x20\xad\x28\x27\x2a\xf3\xdc\x03\x11\xff\x19\xb9\x9c\x6c\x99\xa9\x1c\x94\x68\x3b\xb1\x8b\x55\x8e\xe0\x47\x84\x5a\x23\x30\xf1\x01\xed\x77\x47\xad\x9f\x28\x66\x6c\x01\xae\xc8\xcc\x7d\x9a\x57\xc1\x8b\x29\x2b\xbb\x1e\xa3\x56\xea\x11\xd7\x97\xeb\x63\x20\xec\xa2\xb0\xf0\x8d\x8c\xd0\xe5\x20\x6c\xc8\xfa\x64\xd6\xec\x82\x36\x38\xd9\x47\x64\x0f\x2d\x14\x1f\xcb\xf6\xab\x1c\x84\x78\xe9\x4a\xcd\xa4\x8b\x45\x0b\xa5\xec\x27\x5f\xbb\x40\xd1\x10\x69\x25\xdf\xce\x3e\x5d\x7c\x18\x3c\x92\x62\xe9\xd3\xfd\x6d\x9a\xf0\x87\x45\xeb\x7c\x93\x95\x39\xbb\x29\x65\x82\x02\x0c\x22\x3e\x54\xca\x3d\xa5\x4d\xd2\x68\xe4\x6d\x31\xe2\x90\x62\x5f\xee\x51\xa3\x5e\xa3\x66\xc4\x07\xd8\xeb\x69\xd0\x41\xb3\x14\xc9\x80\xa9\x38\xb0\x1f\x3d\xab\xfd\x35\xc2\xc2\xf7\xc3\x79\xd5\xf2\xcb\xfd\x78\xc5\x80\x44\xa9\x00\xf7\x70\xcf\x70\x05\xe9\x16\x9e\xb6\xe0\x68\xfb\xc5\x0a\xc1\xa7\x81\x6d\x3f\x05\xe6\xcb\xfc\xe7\xed\x2a\x35\x87\x36\x4d\x58\x1d\x2f\x7d\x41\x88\x0f\xa3\x12\x66\x36\xcc\x9e\x73\x87\xef\x1c\x22\x2d\xdc\x92\x20\xc5\x05\x0a\x2e\x8a\x96\x50\x15\x42\xcb\x1e\x4d\x8d\x8b\x61\x80\x80\x59\xd0\x79\xc3\x58\xe8\x17\xe7\x0e\x4a\x94\xd0\x3c\xd1\x05\x3b\xf5\x42\xb1\x8e\x18\x92\x96\x24\x2f\x1d\x1b\xa9\x4e\x24\x3c\x62\xfb\x7c\xa0\x1a\x45\xc7\x37\x27\xca\x5e\x94\xd1\x26\x8f\xc5\xeb\x16\x25\xb7\xc4\x16\x31\xa9\x8b\x1b\xc4\xd0\xc8\x6c\x3f\x1a\x23\x27\xec\x2a\x4c\x37\x3f\x5e\xf3\xcf\xaa\x60\x6c\x72\x09\x3e\x98\x4f\x5f\xf5\x92\x30\xee\x60\xd4\x15\x24\xbf\xae\x93\x0a\x39\xcd\xb5\xb8\xa7\x50\xb0\xe0\xd6\x38\x49\x35\xea\x24\x7c\x0c\xa7\x0f\x69\x0f\x8a\x9a\x49\x61\xf8\xcc\xe2\x97\xb5\x08\x8e\x4d\x27\xb2\xf1\x7c\x78\xbf\xac\x54\xa8\xef\xb9\x1e\x83\xf8\x93\xf9\xf4\x70\xfd\x14\xbb\x46\x1c\x63\x72\xff\xa1\x40\x86\x50\xb9\x11\x99\x1f\xf4\x0d\x84\x2d\x55\x8d\x2a\x6a\x2d\xb9\x19\xf3\x14\xa0\x3a\x38\x19\xf2\x05\x5b\x7e\xcc\x82\x81\x52\x06\x25\xb2\xa3\xcd\xfc\x65\xb6\x62\x5a\x89\x98\x25\xf0\x48\xf3\x76\x6b\x23\x6c\x64\x39\x88\x54\xed\x08\x91\xb7\x63\xd1\x05\x5a\x45\x8f\x98\x40\x14\x65\x7e\x51\x56\x4c\x17\xec\xaa\x6f\x56\xc4\x4c\xe4\x77\xf3\xe2\xf2\xad\x89\x62\xcf\xf2\x8b\x35\xc0\x16\xb1\xcb\x42\x73\x4f\xae\xf6\x2f\x7f\x41\x55\x50\xb1\x0d\xec\x44\xaa\x51\x0b\xcf\xed\x79\xf1\x1b\x27\xb5\x5c\xb3\x33\xf9\xf3\x2b\xa8\xb9\x8e\x68\x23\x11\x7a\x99\x6e\x7d\x0c\xab\x5c\x5e\xb3\xff\xf5\xc1\x8b\x94\x6b\x87\x2c\xea\xd4\xa8\x8d\x3b\x94\x67\xfe\xea\xca\x64\xdf\x5f\xa3\x16\xe7\x1a\xa7\x20\xaa\xcf\xf0\x44\x33\x07\x29\xb4\xbc\x7c\x9f\x36\x65\xa3\x8e\x98\x09\xcc\x92\xcc\xc5\x8a\x1f\x59\x19\x59\x28\xc2\x8a\x65\x5e\xdc\xa9\x80\x4c\x9b\x04\xf6\xef\x37\xc8\x64\x53\xed\x52\x79\x0b\x73\xfa\x68\xb8\x02\xc3\xf0\x85\x35\x80\x18\xf4\x05\x85\x43\x17\x6b\x27\x96\xc1\xe3\x53\xed\x0e\x4a\xa3\x95\xd1\x83\x0f\x2d\x4d\xf8\x51\x8e\xbd\xa0\xed\x00\x38\xea\x9c\xc7\xd8\xcb\xcf\x24\xcf\xc8\xf4\xc9\x1d\xd3\x27\x0b\x82\xf6\xdf\x4f\x24\x6b\x03\x45\x95\x22\x8d\x4d\xf9\xf8\xa2\x78\x5a\x62\xb0\x94\xe4\x74\xc6\xda\xa5\x99\xd3\xd5\x90\x67\xd4\xc0\xa1\x4e\x5d\x7e\x5f\xf7\xa8\xc4\x4b\x5b\x88\x11\xaf\x07\x7b\x83\xcc\x2b\x4b\x14\xa8\x75\x89\xf9\x0e\xa0\x32\x77\xbf\xa4\x93\x41\xc3\x2a\x50\x30\x4b\x8b\xf6\x48\x3d\xe9\xd5\xc0\x59\x30\xaa\x9f\xe7\xa8\xd4\xd3\x26\xe5\x56\x08\xc5\xee\xac\xc3\x38\xaa\xd5\xa9\x21\x66\x21\x03\xfb\x5e\xd8\xd8\xc1\x95\xbf\xf1\x6d\xdd\x4b\xc6\x8b\x31\xc6\xef\xbf\xab\x2d\x81\x1d\x64\x60\x30\x74\xe5\x9f\xe7\xec\x91\xf8\x96\x59\x4e\x4c\x7f\x5b\xd9\x57\xc7\x37\xf8\x76\x59\xbc\xa9\xdc\xb7\x0f\x5d\x22\x51\x6e\x8c\xe0\xb2\x85\xec\x89\xa9\x29\xc6\xf6\x15\xbc\xdc\x9b\xda\x31\xb5\x50\x0c\xbe\xac\x99\x97\x57\x4c\x61\xf4\xcf\x67\xda\x97\xdc\x7a\xb1\x32\x81\x77\x41\xe8\x45\x7f\x71\x57\xb7\x5d\xac\xbc\x11\x40\x40\xa4\xda\x99\x83\x0a\x89\x13\xf9\x1e\x75\x5c\x28\x6e\x27\x3d\x28\xe8\xf8\x26\xb2\xb9\xf0\xcf\xa8\x7d\x72\xcb\x01\xe6\x41\xcb\x8e\xc5\xcb\x6a\x2f\xad\x26\x95\xed\x1c\x2a\x7b\x7e\x60\xe5\x45\xfd\xf6\x78\xe9\x4a\x56\x43\x6a\x25\xff\xc0\x62\x81\xa3\x2b\xb9\x42\x5e\xff\x1f\x59\x25\x9e\xdb\xb8\x10\xd5\xa9\x55\xe1\xc6\x6a\x52\x54\x11\xa8\x8e\xaf\x0f\x90\x92\xf6\x94\x86\x0d\xd0\x0e\xc9\xba\x9f\x32\x19\xc4\xf9\xf6\x26\x5f\x91\xef\x38\x58\x28\x5d\x04\xc7\x86\x69\xd6\x9e\x18\xd5\x45\x78\xfa\xe8\x6a\x05\x7b\x0f\x3a\xc1\x30\xba\xb8\x60\x87\x2c\xa8\xc3\xf6\x16\x64\x3b\x46\xf3\x13\x87\xd3\xee\x74\x0f\xe7\x87\xeb\x39\xd7\x0c\x5b\x2f\x81\x01\xff\xef\x5e\x83\xe3\x5a\x50\xb2\xd2\x82\x57\x57\x8f\xd2\x5b\x53\xdf\xa5\x89\x7c\xf8\xa5\x97\xb4\xee\x95\x86\x65\x12\x47\x35\xa5\xd4\x8d\xf2\x5b\xc7\xeb\xea\xe0\xc4\x36\xb0\x1b\x0d\xec\x57\xd4\x84\x09\x58\xc4\xa2\x00\x6e\xed\x3a\xd9\x03\x99\xc8\x56\x5f\xd9\x97\xa6\x27\x1f\x5b\xdd\xa6\x4d\x71\x8d\xee\xff\x40\xeb\xd1\x39\x36\x89\x87\xae\xa9\x6b\x78\x2b\x0e\xd4\x3d\xe2\x20\x41\xfc\xcd\xb8\x4f\xe9\xcd\xa0\xe7\x71\xe4\xb1\x8c\x33\xd7\xdc\x3f\x42\x6f\x1b\x2c\xe2\x46\x9b\xfc\xc0\x78\x4a\x17\x7d\xf7\x8c\x9a\xd8\x9a\xae\x39\x90\x10\x0a\x0b\x7f\xfb\x6d\x80\x85\xc9\x7c\x6b\xaf\x86\xec\x40\x55\x46\x1b\xca\x10\x30\xb8\x4e\x93\x49\x01\x52\xac\x48\x81\xc5\x75\xda\x77\xf5\x5d\x62\x8a\x7d\x42\x7e\xe6\x61\xcd\xe7\xc1\x26\x76\x0d\x95\xa0\xfe\x06\x04\x46\xe6\x57\xe3\x93\x8d\x43\x13\xb9\xb8\x8c\x7a\x5a\xc9\xe7\x47\xed\x8a\x9c\x26\xc1\x9c\x12\x3a\xfb\x97\xee\x57\x7d\xb1\xa3\x19\xc9\x9b\x27\xe5\x77\x85\x05\x97\xeb\x09\xe3\xe2\xdb\x86\xaa\x40\x70\xce\x38\xca\x7c\xf9\x1e\xa5\x9f\x67\xaa\x3a\xdd\x6a\x15\x50\x1d\x9b\xf4\xff\xef\x3a\xc5\xe3\x13\xd5\xc5\x2d\x3c\xd8\xef\xc2\x04\x2f\x96\xa3\x55\xa3\x1f\x75\xe6\xd0\x05\x7a\x15\x50\xa9\xf0\xe6\x3b\xf7\xfc\xa9\x4b\xb4\x14\xef\xbb\x91\x47\xba\x1c\x9c\xde\x25\xbc\xf0\x96\x16\xaf\x99\xb7\x6c\xf9\xb5\x4b\xc1\x6f\xf8\x8c\xc2\x18\xf6\x4b\x65\xc1\xbf\xfa\xdb\x6b\x29\x09\x23\x59\xc0\xf6\x3a\x19\x7f\xdb\x7a\x47\xe2\xdb\x5e\xc6\x0f\xe6\x12\x42\x4d\xa5\xa7\xcc\xff\xf3\xe4\xfe\x71\xeb\xc0\x5c\xe8\xbf\xf3\xff\x3c\x52\x03\x81\x60\x14\x3e\x4e\xde\x38\xb5\x14\x62\x7e\xe4\x58\x59\x0c\x1e\x7b\x73\x94\xf2\x52\x58\x29\x3d\xbb\xcf\x9f\xb7\x58\x83\xf5\x82\x08\x8e\x10\x1f\x5b\xb0\x47\xd3\xbe\xa7\x25\x5a\x6e\xc5\xa0\xc2\x85\x02\x04\xe7\x60\x83\x00\xf9\x1d\x5e\xca\x90\x5d\xba\x76\x24\xb5\x22\x89\xce\xcc\x5f\x7b\xa5\xa4\xed\x01\xb1\x0d\x65\x44\xce\x1c\xa0\xf9\x10\xac\x75\x08\x8b\x87\xad\x0f\xec\x97\x3d\x27\x37\xde\x41\xb1\x24\xee\x25\xbd\xfe\x2f\xe9\x79\x18\x71\x2f\xe8\x2b\xcf\xe0\xb4\x29\x1d\xd3\x40\xf6\x62\xcf\x43\xfa\x70\xc6\x2e\xfb\xa2\xb4\xff\xf2\xb9\x62\x93\xe4\x13\x4e\x76\xdf\x72\x44\xdf\xb1\xbb\x91\x39\x54\xf6\xbd\xed\xba\x8b\x79\xb4\x45\x8b\xe0\x6a\xc1\xd8\xce\xb8\xf5\x98\xd4\x39\x05\x5a\x94\xdd\x03\xe2\xea\x39\x66\x32\x9c\x5a\x2e\xf5\x7e\xd7\x45\x29\x2c\xd3\xf7\x4d\xb1\x11\x23\x36\x6e\x21\x56\x4e\x17\xa2\xf7\x0e\x95\x87\xb2\x8a\x3d\x04\x9c\xb2\xe0\xc1\x39\xca\x24\x95\xa1\xc8\x66\x21\xf7\xb7\xde\x3c\x9f\x51\x28\xbb\xe1\xbd\x7c\xf7\xde\x64\x15\x52\x45\x76\xd5\xf5\xb8\x0a\x08\x74\x10\x03\x1e\xe4\x0f\x64\x29\x2e\x81\x9e\x5a\xeb\xde\xc4\x06\x1a\x04\x5b\x83\x51\xed\xaa\x38\xb9\x09\x9c\x8f\x2b\x9e\x1e\xdb\x4c\x0d\xdc\xdc\x9e\xa2\x4d\xf6\xc0\xc6\x82\xde\x3a\xf8\x61\x53\x05\x23\x00\xb7\x07\x98\x6d\xfe\x7c\xad\x60\xe5\xa3\x04\x91\xe4\xa6\x2e\x14\xad\xfa\x5a\xc3\x67\xae\x68\x30\x7e\xa6\x1d\x14\x83\x5a\x8e\x0f\x5f\x94\xa3\x95\x7e\xab\x01\xb3\xc0\x52\x23\x82\x26\x38\xc2\x56\xa2\xe4\x13\xb3\xcc\xa1\xf4\xbf\x7d\xbd\x27\x47\xa8\x48\x2d\x55\x4c\x96\x3f\xb3\x40\x47\xbc\xf8\x40\xf2\x82\x67\x1b\x1c\xdd\x99\x44\x15\x53\xdb\x24\x36\xee\x41\x07\x20\xff\x89\xd7\x64\x0f\x51\x31\x51\x35\x3e\x37\x1b\x07\x69\x2c\x9e\x5a\xcb\x25\x06\x41\x76\x44\xca\x7c\xe1\x39\x09\x52\xaa\x21\x7d\x5e\x17\x7c\xaa\x21\xcf\x4f\x18\xeb\x31\x2a\x17\x8a\xc1\x8f\x4f\x4b\x7d\xbe\x12\x46\xbe\x9d\x26\x24\x6e\x99\xae\x28\x28\x53\x93\x94\x61\x91\xab\x34\x2c\xd7\x2a\x78\xe6\x12\xf6\xb8\xa4\xc9\x94\x1d\x32\x2e\xf9\x60\xe7\x91\x2a\x26\x5f\x5e\x7c\x81\x22\x05\xe0\x56\x19\x32\x70\xc5\x87\x11\x49\x6e\xe1\x7e\x1d\x49\x8a\x8c\x1a\x87\x66\xfc\x63\x85\x86\x1d\x80\xb2\x98\x0f\x5c\x6b\x3b\x75\x59\x04\x68\x1b\xb0\x1b\x21\x7a\xfe\xf7\x71\x3e\x70\xbc\xb9\x46\xbc\xc4\xc0\x31\x3b\x40\x81\x3a\x56\x81\x3c\x16\xe3\xa7\xff\x36\x5b\x13\xe3\x8e\x45\xdb\x73\x03\x46\x29\x00\x49\xd3\xc4\x55\xa1\x1a\x50\xec\xce\x6c\x5e\x19\x97\x8b\x18\x66\x36\xb9\xab\x6e\x57\xf5\x42\x28\x85\x23\x6c\x6d\x49\xf6\x55\x0e\xf2\x18\xa1\x5e\x8f\xd7\x27\xbf\x7a\xab\x76\xca\x0c\x6c\x23\x46\xa8\xf8\x34\x3b\x26\xa7\x98\x5e\xae\x83\x19\xf5\x23\xa6\xd7\xf1\x17\x74\x3b\x71\x64\x6b\x82\x43\x99\x9b\x35\xf8\x95\x45\x41\xd4\x18\xc6\x73\xff\x15\x0c\x52\x68\x77\x4d\x11\x6d\xf2\x1d\xab\x85\xc0\x09\x75\x7c\xa1\x06\x94\x6f\x7f\x44\x97\xed\xa4\xcd\x82\xeb\xd1\xb0\x44\x8e\x00\x2b\xf9\xf5\xa3\xb5\x7d\x14\x43\xeb\x22\xf8\x49\x76\xdc\x6b\x42\x4c\x8a\x59\xd8\xa4\x51\x5b\x34\xf5\x6a\xe1\xed\x8f\x5a\x25\x28\x3e\x06\xeb\xcb\x71\xcc\x4c\x2a\xd2\x5b\xee\x9e\x53\xaa\xbc\x16\xe6\xd3\xaa\xab\xfa\xca\x42\xc6\xc6\x4d\xd7\x41\x0e\xe7\xdd\x7c\x8a\x25\x6b\x36\x54\x61\x82\x5b\xeb\x44\xbf\xde\x7e\x5a\x16\xe9\xa8\xe5\x43\xed\xf9\xd8\x1b\xbc\xb5\xc1\x26\x31\x08\x7c\xf9\x0d\x6b\x34\xf7\xd0\xb5\x60\xe3\xcd\x69\x01\xdd\xf9\x49\x76\x9c\x2a\x2c\xe0\x04\xe4\xbe\x76\x44\x12\x33\x2b\x88\x55\x53\x3d\x73\x76\x7b\xbb\x6e\x5a\x4f\xab\x0c\x39\xb5\x96\x28\x77\x06\xaf\xd7\x00\xb6\x0d\xd2\xe0\x23\x19\x38\xc3\x03\x4f\xeb\x70\x5d\x97\x08\xdc\x25\xda\x2f\xc4\xf6\x10\x78\x01\x07\xab\x97\x26\xdf\x5c\x93\x98\x4e\xd8\x57\x24\x4e\xc9\x17\x1f\xd1\x1b\xec\xaa\x1f\x96\x00\x82\x8b\xbe\x44\xcb\x08\x98\x07\xe0\xb4\xb3\x44\xf6\xb1\x01\xed\xda\x5f\x4d\x58\x27\xf0\x2e\xe2\xe6\xa3\x91\x82\x0e\xb5\x28\xa7\xa8\x67\x5f\x3d\xc4\x97\x17\x25\x6a\x23\x90\x06\xef\x8a\xe8\x74\xb8\x01\x6a\xc7\x00\x02\x2e\xbd\x3c\x58\xfc\x69\x78\xa1\xb1\x57\xb3\x49\x58\x2d\xdc\xa4\x58\x69\xc2\x16\x06\x9e\xc4\xc7\x9f\xd2\x9e\xa1\xe7\x31\x64\x44\xaa\xf6\x99\xaf\xdf\x3a\x4e\xef\x9d\xaa\xc4\xec\x91\x50\x93\x1b\xbe\x9e\x3f\xd4\x71\xd4\xe1\xfb\x98\xdc\x4e\x45\xf8\xde\x67\x5e\x8d\x97\xc9\xb9\x6d\x2f\xcb\x4e\xbe\x11\xe3\x61\xf4\x58\x79\x24\x2f\x09\xaa\x69\x1d\x76\x4d\xf8\xd4\xa1\x94\x75\xf0\x7a\x2b\x9f\xd5\xd6\x53\x61\x4e\x89\xe6\x12\xaf\x4d\x97\x6d\x58\xc9\xa4\x46\xbd\xe4\x73\x41\xaa\xee\x2c\x9e\xa3\x07\x52\x62\xa0\x2a\x8d\x09\x99\x99\x8b\x46\x2b\xbb\x3d\x6c\x36\xb8\xcb\xcb\xa2\xc9\x1a\x3c\x13\x4c\x9b\xe3\x6e\x30\xf7\x1b\x8d\x07\x68\xe3\xf0\x27\xd4\xc5\x41\x3c\xe7\x45\x99\xa2\x66\x4e\x09\x1b\x5a\xc0\xbc\x11\x26\xf3\x44\x17\xa6\x0e\x62\xe5\x98\x8e\xf1\xc3\x27\xe2\x9b\x34\x8d\x03\x3e\xd7\x06\x9a\x8c\x62\x87\xdb\xa1\xf8\x16\xb7\xad\xe3\xef\x85\xf9\x26\xd4\x33\x6f\x6e\x51\xc6\x47\x6e\xcb\x04\x66\x69\x66\xe7\x62\x79\xcb\x9b\x2d\x20\x50\x66\x9f\xb9\x55\x8e\x1f\x7c\x90\x22\xe2\x0e\x0e\xb9\x31\x3a\xbf\xb6\x46\x3d\x7e\x37\xc5\x24\xfe\xd5\xcb\x84\x92\x22\x35\x4d\xac\x5c\xa2\xfc\xa6\xfd\x43\x15\xfa\x3c\xf5\xcc\xc8\xd7\x33\x78\x62\xe9\x20\x85\xf7\x41\xb8\x12\x50\x77\xe6\x0f\x1a\x6e\xce\x44\x56\x29\x1a\x3a\xff\xec\x48\xb2\xdf\x21\x62\xac\x9f\x3c\x97\x37\xec\xd1\x11\x08\xa8\x52\x21\xcc\xe2\xb4\x9b\x31\xa0\xf4\xd3\xce\xaf\x4c\x91\x61\xbb\xe4\xb3\x6a\xf4\xe8\xfa\x77\x29\xd4\x77\x80\x2d\x70\xdd\xd7\xbb\x55\x25\x25\x6e\xde\x0d\xaf\xf3\xcf\xdc\x57\xa2\x70\x93\x4d\xa8\x1d\x66\x05\xbd\xb2\xe8\xd3\x27\x16\x2d\xf4\x40\xf6\x49\x12\xe1\xa6\xef\x11\xb2\x62\xc6\x5c\x9f\x31\x15\x00\x76\xe2\x01\x7e\xcd\xbd\x1a\x01\x5c\x5f\x93\x43\xde\x4f\xf2\x3f\x45\x84\x85\xe5\x64\x9d\x87\x88\x6d\xbb\x65\xf4\x47\x0d\xcc\xd5\x49\xbf\xff\x81\x3c\x4e\xfc\x14\xc8\x66\x6d\x6b\x79\xb0\x5a\xeb\xd0\x46\x8b\x82\x17\xfc\xfc\x51\x17\xf0\x72\x3a\xbc\x9b\x5e\x0d\x73\x0d\x4a\xbe\xa2\xff\xa7\xa3\x31\x2a\xc7\x75\x13\x6b\xb2\x9c\xd3\xd0\xb1\x77\x26\x6a\x25\xbc\x1b\x72\xdf\x7c\x4f\xce\xf8\x25\x63\x6b\x72\xef\xa1\x5a\xdf\xe2\x0a\xd6\x53\x41\x63\xcf\xcf\xe0\xf2\x85\xd9\xff\x79\x4c\xd9\x92\x4b\x8b\x98\xdc\x4d\x4f\x0f\x97\x98\xa1\x14\x91\x32\xf3\xcb\xad\xfa\x10\x09\xd6\xa5\xd1\x20\xf4\xb6\xec\x10\xad\x16\x70\x3d\xae\x81\xd1\x7b\x71\xe4\xc0\x64\x9a\x88\x81\x6c\xf5\x80\x61\xf1\x44\x1b\x25\x98\xb1\x4b\x7b\xe9\x93\x4c\x83\x60\x8f\x43\x0c\xb3\x97\x5c\x31\x56\x0b\x19\x8c\xd1\x72\x8f\x26\x44\x2b\x35\x1b\x4e\x93\x36\x35\x19\xb4\x6b\x0e\x88\xb6\x07\xac\x88\xc2\xe7\x65\x2f\x92\xb7\xb6\xc2\xa9\x83\x1c\xae\x3b\x6a\xb9\x8e\xea\x74\x3d\x62\x83\xad\x73\xb4\x01\xbd\x68\x79\xfc\xec\xa8\x93\x2e\x8c\x77\x99\x9c\x83\x35\x07\x39\x5e\x0f\xc7\x3b\x3b\xe9\xb4\xb0\xd9\x87\x50\x51\x81\x3b\xb1\xcf\xd1\x7a\x13\xbf\xa4\xba\x15\xe5\x1e\x3a\xa1\x80\x6d\xb8\x88\x8b\xb8\x7d\x0b\x87\x25\x5f\xc5\xcc\xa9\x9d\xa2\xa6\xfd\xfc\xec\xd4\x2a\xa4\x52\x89\xba\x02\x24\x9a\xba\x2a\x13\x08\xf6\x03\xcb\x65\x68\xab\x63\x16\xd6\xea\xb7\x2e\x4d\xad\xfd\x3d\x86\x7b\x66\x8a\xe6\x07\xe6\xf5\x3a\xc4\xc6\x0a\x98\x34\xf3\x44\x85\xdf\x44\x86\xc5\xce\x07\x82\xd3\x0f\x02\xed\x20\x45\x2d\x5c\x6e\x87\x8e\x41\x06\x03\x2e\x6a\x73\xf7\x92\xcc\x3d\x8f\x6a\xfc\x7c\x3e\xe9\x42\xb6\xc7\x73\x4a\xf0\xd5\x67\x07\x28\x93\x70\xa1\x9f\xf5\x8d\x7b\x14\x8a\x25\xb5\xf8\x98\x2a\x3b\xeb\x64\x9b\x32\xac\x33\xf9\x74\x05\xc4\x50\x76\x69\x98\x80\x1a\x16\x6a\xcc\xc1\x0b\x7d\xe4\xbf\xa9\xf9\x16\x31\x89\x78\x8e\xdf\xfb\x40\x78\x43\x09\x23\xae\xb0\x0f\xb6\xd3\x8b\xc4\xa8\x98\xbd\x70\x89\xaa\xfb\x58\x21\x2d\x04\xed\x88\xf0\x70\x9d\x32\x63\xe2\xb4\x19\x9d\x05\x28\x89\x35\xa4\x26\x57\xea\x15\x13\x92\xe0\xee\xb1\xca\x26\x89\x98\x7c\x70\x71\x66\xfa\x68\x05\x2b\x01\x24\x06\x92\x56\x83\xca\x5e\xf9\xe0\x18\xad\x4c\x88\xe6\x58\xc9\xda\x2e\x9f\x19\xa6\x58\x9a\x43\x80\x0d\x3a\xfb\x25\xbf\x5a\x97\xef\x7a\x42\x3d\xf4\x7d\x9e\x93\x0a\xd7\x9a\x26\x71\x60\x28\x2f\x03\xe0\x82\xd9\xda\x10\x94\x74\x61\xb3\x8b\xd8\x72\xe1\x9c\xdd\x90\x4f\x66\x4f\x9e\x5a\x3d\x64\x97\x3b\xc2\x48\x13\x7c\x67\x17\x9f\x80\x2f\x40\x0c\x94\x35\x94\xdb\xbe\x64\x4d\x9c\xfc\xc1\x05\x28\xf8\xd4\xfe\xc8\x1f\x9b\xb9\xbc\x0d\xc9\x7e\x7c\xd3\x60\x45\x91\xa1\x5a\xe3\xbe\x16\x81\x3f\x4f\x77\x6e\x85\x5d\x3f\x88\xc4\x06\x0f\xcc\x11\xc6\xef\xd4\xe4\x54\xc5\x4f\x3e\xae\xab\x83\xba\xf5\x08\xeb\x90\xef\xb3\x20\xd9\x53\x95\x18\x75\x89\xef\x26\xd0\xc3\x2f\x2d\x1f\xaa\xb6\xc8\x80\xd1\x11\x20\xba\x3e\x53\x07\x28\xff\x89\x8b\x77\xe6\xef\xbc\x4c\xef\xc1\x98\x10\xbd\x0b\x3a\x4e\x6b\x7a\x23\x61\xcf\x85\x14\x3f\x81\xdc\xc3\xf7\x9f\x17\x6b\x65\x87\x19\x43\x1b\x6b\x31\x6b\x6a\x47\x67\x27\xbf\x5d\x7f\xdc\x94\x7c\xf8\x6b\xb1\x4d\x9d\x1a\x2d\x11\x43\x98\xdf\xe5\x8e\xc8\xf3\x46\x3c\x04\xd3\xe1\x3b\xd6\x24\x2b\x76\x52\xc6\x11\x51\x5f\xba\x53\xce\xed\xa7\x85\x75\xea\x3a\xc4\xc0\x3d\x28\x3a\xe5\xb6\x4c\x4d\xb2\x16\xc6\x09\x12\xd1\xca\xdb\xe3\xd7\x3b\xa3\x63\x7a\xf8\x43\xfb\x3e\xab\xa1\x89\x7c\xc6\xb8\x2c\x1e\x57\xe6\xba\x42\xc9\x81\x35\x14\x53\x14\xda\xb4\xd5\x78\x0b\x87\x65\x6e\x19\xf1\xd6\x29\x58\xff\xb4\x2e\xc6\x8e\x3c\x6c\x8b\x59\x7b\x66\x93\x2c\xc4\x0c\xc4\x30\x66\x90\xb5\xe8\x49\xde\x7c\x20\x9f\x81\xc4\xc4\xf9\x0f\xc5\xe3\xdf\xaa\xaf\x96\x2b\x17\x76\x6a\x2d\x25\xd7\xfb\xb4\x65\x6b\x96\x7b\x61\xb8\x74\xb3\x9a\x31\x75\x46\xf8\x45\x2f\xdc\x23\xa7\x27\x36\x6d\xd0\x56\xca\x56\xef\x37\x1a\x80\xba\x46\xa9\x49\xc0\x3f\x8f\x87\xe1\xf5\x3b\xe5\x1c\xc9\xa3\x3e\x8b\x74\x0b\x32\xdf\x3b\xa4\x0f\xaa\x68\x58\xa3\x47\xbb\xf7\xef\x9d\x4c\x06\xea\x75\x18\x09\xe5\xe4\xbb\x1e\xd1\x35\x3c\x38\x44\x83\xff\xbe\x2b\x5f\x4e\x7e\x4f\x07\x7b\x5c\xe2\x46\x6e\xa4\x27\x77\x26\x8f\x04\x65\xc8\xae\xe2\x9e\xb0\x65\x99\x5f\x6f\xd2\xac\xf3\x71\x94\x94\xf3\xd7\x1e\x1c\xa2\x14\xec\x2e\x65\x91\x80\x5e\x86\xf4\xd1\x8a\x63\x02\x94\x33\x78\x5f\xab\x97\x2a\xb3\x4c\x6c\xb5\x00\x87\xff\x8d\xf1\x23\xb5\xdc\x52\xa1\xcc\x42\xe0\xe0\x14\xfe\xf7\x5f\xef\xea\x21\xe8\x89\x39\x61\xdf\x73\xf5\x1b\xda\xc0\x22\xe7\x66\xc6\x29\x53\x12\x0f\x5b\x0e\x65\x90\x31\x9e\xdd\x9a\xfc\x75\xb0\x43\x01\xff\x4e\xf1\xd5\x66\x94\x12\x82\xa7\x80\x29\x81\x64\x93\x9f\xa9\x58\x7e\x38\x0c\x77\xf9\xe5\x48\x44\x39\xbb\x78\xf7\x45\x5a\xfd\x64\x6b\xa8\xaf\xbf\xf4\xd2\x34\xc3\x70\x03\x9b\xd4\x51\xd4\x20\x8a\xdd\x79\xf2\xa2\xe4\xa8\x98\xb8\xc6\xd9\x78\x31\xce\x99\x27\xb6\xc2\x5c\xe4\x10\x8f\x9a\x09\xb4\xd4\xd5\xcf\xaa\xf6\xd1\x1c\xb7\xcb\x5d\x7c\x66\x6d\x95\x90\x29\x0f\x60\xfd\xf9\xc1\x5b\x74\x97\xc4\x1a\xd6\xe0\xf3\xd9\x6f\x75\x29\xe4\x37\xf8\x41\x6b\xe6\x09\x51\x37\xbb\x86\x19\x1f\xd6\x67\xdf\x58\x2a\x39\x14\x15\xd0\xd8\x51\x4c\x9d\x1f\x7e\x41\x2e\x8d\x2a\x61\x8f\x44\x5b\x28\x56\x39\xf9\xe2\x6c\x41\xea\xa3\xd4\xe2\x57\xe2\xca\x39\xda\x5d\xc2\x88\xc5\x8e\x0d\xc5\xee\x6c\xee\xa9\x38\x10\x11\xb0\x16\xad\xbe\x2f\x5b\x88\x1a\x46\xe1\x0d\xe3\xff\x7f\xb1\x3b\x3f\xb1\xdc\x26\xd9\x7e\x48\xa9\x82\x37\xdd\x9e\x18\x77\x7a\x3e\x2b\x21\xdb\xe0\x14\xa3\xb7\x3b\x79\xc6\x99\x3e\xa5\x63\xea\x34\x58\x5e\xcd\x89\xb8\xf5\xd4\xe6\xbd\xcc\x95\xef\xaa\x08\xd4\x6a\xad\x60\x86\xaf\x31\xfc\xbb\xf3\xde\x3a\x5f\xea\xdb\x85\x1f\xef\x01\x81\x35\x34\x91\x5f\xe5\xde\x62\x85\xfd\x03\xa2\xb3\x63\xe0\xb2\xb8\x2f\xbf\xd1\x08\xc1\x28\xfc\x0a\x62\x9d\xfa\x95\xa5\xa3\xb5\x36\xb1\x41\xcd\xb0\xf9\x69\xa2\x86\xc2\x4d\xff\xce\x74\x55\x9e\x20\xfc\x2b\xbc\x7d\xfd\xb7\x15\x3a\xb3\x8e\x31\xa1\x53\x98\xc9\x0b\x53\xef\x79\xbe\xe8\x86\x21\x46\xef\x19\xd6\xae\xfc\x24\xe4\x87\xd9\x82\x50\xdf\x55\x41\x8e\xf9\x9b\x66\x2b\xd2\x2c\x98\x54\x21\xd3\x3c\xf1\x2e\x6f\x57\xa7\x4d\x9a\xa6\xd4\x1e\xc1\xab\x1a\xa1\x1a\x99\xd0\xbc\x40\x51\xf7\x79\x26\x59\x2b\x0c\xbb\xd4\x67\x46\x7a\x6f\x96\xfd\xe9\x06\xfe\x83\x97\x12\xa3\x66\x51\x09\xef\xff\x76\x5b\xb2\xd1\x76\x9b\xd8\x76\xa9\x0d\xab\x22\x79\xeb\xe6\xed\xd2\xd6\x55\x0d\xcc\x5a\xd4\xc6\x7c\xa3\x14\x98\xdb\x93\x0f\xd8\x64\xc2\xcd\x29\x59\x6d\x2f\x59\xac\xe8\x33\x56\x2a\x94\x09\x89\xa2\xb9\x4f\x6b\x72\xe6\xc4\xc0\xb6\x24\x2d\x7c\xfe\xd1\x68\xa9\x5b\x21\xd8\x2c\xf3\x46\xf5\xa8\x86\x7c\xad\x85\x27\x9c\xcb\xc9\x99\x33\xf5\xf7\x05\xc2\xf7\xeb\xc2\x7f\xf6\x13\xc6\xcf\xa6\x63\x22\xfe\x02\xc9\x28\x59\xb1\x34\x29\x88\xdc\x05\x47\x35\x63\x2e\x87\x52\x26\x18\xa6\xdd\xb9\xad\x07\x25\x6a\xc4\xad\x21\xe6\x80\xd6\x42\xb2\x08\xb8\x75\xbd\x36\x9f\xa4\xc8\x13\x44\xfa\x6b\xa6\xeb\xfe\x8b\x26\x6a\x12\x09\x59\x34\x3f\xe0\x1f\x10\x39\xe0\x3f\x12\x7c\x5e\xfb\xfb\xc2\xd5\x36\xfa\xfb\xb9\x6f\xed\xd3\xd7\xfd\x61\x1f\xc0\xff\x7b\xd8\x69\x5d\x77\x56\xc9\x30\xb0\xd2\x8f\xd8\x22\xaf\xee\x90\xf3\x9a\x19\x53\x38\x2c\x88\x9a\xd0\x67\xf9\x2f\x0c\x88\x3f\x5f\xd4\xb3\xe5\xfe\x78\x56\xf1\x6e\x25\x15\xaf\x16\xb6\x61\xfc\x6d\xe4\x1b\x83\x22\xd3\x0a\xec\xfa\x96\x18\x57\x66\x3e\xb9\x78\x88\x93\x14\xf1\xe4\xf6\x85\xc1\x7f\x32\x6d\xde\x5a\x05\xde\x1f\xaf\x94\x6e\xb8\x47\xe2\xdd\x10\x33\x70\xa1\x8a\x98\x41\x54\x63\xa8\x69\x3b\x75\xfb\x60\x6c\x96\xa5\xeb\xcd\xab\x2b\x15\x75\x50\x70\xbd\x81\x44\xf6\x7d\x47\x33\xae\xae\x9a\x2d\x7e\x83\xde\x68\x8f\x51\x03\xa4\x4c\x84\x25\xfb\xe4\x8d\xfc\x45\xe0\xb5\x1e\x54\x45\x99\x4b\xb4\x7d\xb6\x6b\x22\x93\x5a\x22\xaa\x4e\xe1\x96\x61\x85\x15\x02\x48\x96\xf6\x36\x52\xd7\x25\x18\x81\xef\xd4\x3f\xee\xe9\x27\x02\x68\x85\xe3\x74\x82\xdf\x0f\xd3\x21\x00\x7e\xb9\x25\xb4\x77\xe7\x39\xc3\x54\x7f\xab\x15\x13\xa2\x68\x5c\x28\xfe\xe3\xac\xae\xa1\x01\xf2\xee\x3d\xb6\xbc\x97\x75\x24\x6b\x1b\x0f\x79\x58\x83\xaa\x1d\x6e\x1b\x10\x75\x1e\x61\x0d\xc1\x01\x03\xd3\x26\x6b\x6e\xe7\xc4\x14\x45\xfc\x8e\x75\x0a\xc2\xc0\xa8\x61\x0b\x66\x15\x1b\xb7\xf1\xe7\x37\x75\x5a\x47\x67\x27\x08\x7d\xb4\x29\xab\xb7\x5a\x9a\x76\x98\xfb\xd9\x7b\x9a\xd5\x90\x07\xad\x1f\x51\xb0\xa8\x37\x8d\xe4\xb9\x7b\x1e\xc3\xb8\x6e\x21\x15\xa4\x99\x39\xff\x6c\xca\xdc\xcf\xc0\x02\x61\x36\xe6\xf1\xe4\x87\xaf\x48\xb3\xcc\x5d\xfa\x23\x8f\x50\xd4\xc5\xee\xfc\xa7\x16\xc9\x97\xe6\x10\xa3\x0e\xe9\x6d\xfd\x51\x85\x80\x05\x92\x85\xf1\x58\x63\x8e\xb0\x76\xc4\x76\x59\xe0\xa0\xb2\xf3\x5e\x90\x05\x40\xcd\x2f\x14\x83\xfe\x63\x65\x10\xb4\x91\x83\xa2\xc2\x79\xcb\x68\x2d\x10\x73\x23\x44\xad\xfc\xf9\xf2\x8e\x94\x54\x66\x2b\x56\x91\xc9\x8c\x38\x23\xf1\xce\x20\xe5\xed\x22\x13\x59\x4a\x39\x12\x8c\x52\x3c\x50\xa8\x85\x3d\xc2\x5f\xd6\xcd\xdb\x75\x9d\x56\x62\x47\xde\x15\xdd\xb9\xf3\xde\xd5\xd7\x2d\x91\x15\x46\xee\xe7\x27\x74\xdd\x4c\x42\xa3\x12\x30\x73\xe0\x90\xb2\x5e\x37\x11\xb1\xc2\x07\x72\xc5\x65\xf1\x03\xa9\xa2\x30\x5c\xdf\x65\x6b\x20\x0a\x13\xe4\xba\x44\xbc\x74\x1b\x9a\x84\x53\x03\xe8\x73\x80\x44\xfd\xea\x4a\xf9\x28\xb1\xe5\x78\x91\x2e\xf9\x64\x65\xf0\x89\xad\x12\x62\x75\xa8\x1b\xfe\xdf\x99\x81\x2a\xba\x84\xaf\x2c\xf2\x1f\x5a\x24\x45\x65\x60\x31\x97\xbc\xb7\x9f\xb9\x47\x57\x0a\x31\xea\x11\x1c\xec\x57\x5b\xa3\xa5\x4d\x89\x63\x2e\x9e\x16\x82\x95\x9e\x87\xed\x32\x57\xa8\xcb\xfd\xfb\xaa\x11\xd8\x06\x9c\x00\x2c\x13\x97\x33\x5f\x15\xfd\x08\x2e\x7f\x51\x93\x05\xa2\xa5\xb0\x9f\xe3\x2f\x34\x7f\xce\xe6\xd1\x5a\x22\xb1\xcb\xb8\x41\xea\x42\x74\x27\x7a\xad\xc3\x1f\xd2\x10\xeb\x61\x6a\x4d\x61\x50\x83\xbf\x7d\x20\xcb\x62\x98\x4c\x80\xcb\xab\xc3\x0f\xea\xc1\xe9\xc9\x86\xa6\xc4\x28\xad\xf7\x8c\x7b\xe8\x5e\x2b\xf7\x7b\x4d\x4a\xd3\xf8\x8e\x3c\xeb\xdd\x5f\x39\xe4\xd0\x98\x4e\x3c\x74\xa1\x32\xaf\xe2\x51\x59\xd6\x93\xf8\x1e\x59\x0c\xd5\xc3\x5e\x2a\x7c\x74\xff\x32\x52\x37\x59\x82\x4f\x2b\xa8\xf5\x17\x35\xf4\xf5\x8c\xcd\x49\x86\x02\x02\x7a\xf6\xac\xa6\x7b\xdd\x72\x70\xbc\xab\xfd\x6c\xdb\x10\x95\x4f\x50\x25\xb6\x18\xa5\x66\x6f\xdf\x22\x13\xa6\xf0\x58\x85\xe9\x4b\x30\xb5\x24\xd1\x05\x86\x49\x5d\x9c\x56\x91\xfd\x12\xd3\xd8\xfe\x36\x82\xa3\x0c\x71\x63\x97\x29\x39\x1f\x26\xb5\xab\x30\x16\x12\x98\xea\x87\x2f\x53\x02\x0d\x12\x7e\x15\xe7\xee\xd6\x80\xc5\x02\xba\x88\x9b\xc8\x33\x6a\xf1\x57\x61\x23\x07\x26\x50\x7b\xd0\x0d\x7e\xb5\x97\xe6\x4d\x3e\x49\x24\x2a\x77\x85\x26\xc2\xeb\x0b\xdc\xee\xa5\xed\xff\xc7\x36\x6b\x62\xa1\x18\x3c\xf9\xbc\xd4\x9f\x6b\xa5\x87\x1e\x97\x9d\xe2\xc8\xaa\xb9\x0b\xae\x9f\x7b\xcd\x75\xc5\x78\xca\xbb\x4d\xc7\x04\x52\x1a\xc9\x85\xdd\x79\xf5\x05\xe9\x12\x49\x08\x10\x5c\x7d\x2a\xd9\x5b\xde\xe6\x23\x93\xbb\x0e\x08\xb4\xd3\xb4\x2e\x01\x30\xa2\xa6\x6f\x7b\x38\xbd\x62\xcc\xdd\xf0\xb2\x8e\xea\x6f\x60\xd7\x23\x55\x24\x46\xe2\x85\x62\xf0\x07\xad\x61\xc6\x6b\x0b\x16\x71\x3d\x70\xbb\x86\x4d\xd7\x94\xed\xbc\xa8\xa9\x21\xc7\xc1\x36\xb1\xab\xf0\x1a\xa7\x6a\x72\x27\xda\x00\x24\xf3\xf0\x23\x3c\x28\x50\x1b\xc3\x54\xea\xfe\x13\x43\xa2\x33\x1f\x26\x8b\x0a\x8e\x9c\xa4\x5c\x4d\x6b\x82\x61\x4e\xdf\x8e\x50\x5a\x97\x1e\x92\xd2\x2b\x34\x0c\x94\x6b\x57\x25\xb7\x25\xd3\xa7\xf1\x47\x79\xef\xf4\xe4\x2b\x25\xee\x84\xae\x2e\x48\x97\x43\x34\xdb\x1c\x38\xb6\xae\x28\x45\x33\xfe\x5b\xda\x5e\x26\xbc\x3b\xa0\xd1\x74\xe2\x59\x2d\xe8\x56\xe2\x19\x52\xe6\xc1\xd1\x83\xc0\xc8\xa0\xe0\x3b\x06\x8a\x60\xcb\x41\xe6\xb0\x0c\xb9\x4d\x6c\xd4\x5c\xae\x4f\x91\x39\xb1\x27\xde\x27\xf9\xd0\x1f\xc5\x2d\xcd\x0d\x59\xa9\xf2\x89\xc0\x14\xae\x7e\x5a\x4e\x1a\x4c\x8c\x22\xf6\x76\xf7\x63\xda\x8c\x1e\xb9\x14\x00\x47\x22\xcb\xfc\xfa\x7d\xcd\xad\x95\x20\x8b\x88\xfe\x05\x32\xeb\xd7\x5f\x8c\x57\x39\x0c\x35\x95\x91\xeb\xa7\x27\x26\xff\x65\x8d\x32\x86\xed\x32\xf5\x23\xc2\xcc\xa7\xf9\x7d\x2e\x5c\x63\xdb\xb8\x70\x23\x62\x44\x01\xf7\xe6\x3f\x5a\xd2\x7a\x32\xc7\xc1\x48\x20\x78\x73\x53\x0e\x24\xe2\x19\x46\x85\x62\x70\x6a\x57\x5b\xea\xea\x01\xb5\xf4\xb9\x4a\xfc\x28\x66\xcd\x82\xf1\x54\x63\x2f\xef\xd6\x6e\xa1\xae\xab\xe0\x2c\x73\x27\xb9\x4e\x67\x61\x2e\xa3\x69\x2f\xd5\xec\xe5\xf3\x75\xde\x91\xeb\x91\x06\x8a\x6c\xab\x36\xac\x92\x2c\x44\x64\x7b\xa4\x50\x27\x65\x1b\x76\xda\xe1\x71\xfc\xed\x69\x0d\xfa\x6c\xe2\x72\x15\x30\xb8\xf0\x22\xff\xe3\x3d\xdd\xf7\xb5\xc2\x4d\x3c\x45\x77\x70\xe2\x6d\x85\x49\x85\x2a\xa8\x56\x28\x06\x7f\xda\xa9\xca\xe0\x20\x61\x0d\x5e\xb8\x17\x0a\x43\x13\xdb\x85\x49\xd3\x0a\xc5\x7f\x3c\x26\x4b\x12\xaa\x0a\x65\x5d\xd4\x47\xd7\x89\xa8\x63\xdf\x11\x61\xec\xe9\x2b\xe4\x08\x0c\xaf\x25\x00\x79\x08\x9c\xfb\x87\xe9\xb9\x94\x98\xe2\xb6\x6f\xb9\x52\x53\x22\xa0\x22\x51\x04\x4b\x1f\x1a\x9e\x7e\x8f\x6e\xa4\x48\x91\x6f\x5f\x95\x54\xc2\x81\x20\xf0\x75\x45\x5e\xa5\x8c\xbd\x58\x63\x3a\xf7\xa9\xb2\xae\x3a\xeb\x33\xaf\x26\x5e\xc0\x24\x53\xbb\x8e\x14\xfc\x5f\xc5\x7f\x3d\xe7\xac\x0e\x35\x85\x4a\x94\x47\x83\xcc\x95\x42\x5d\x74\x09\x32\x48\x05\xf8\xaf\xf9\x29\xb7\x0f\x91\x5d\x68\xa1\x82\x23\xf0\x7d\xf0\xe9\x27\x92\x85\xb4\x4d\x99\x57\x83\x1f\x16\xb7\x85\x6b\xde\xe3\xff\xf6\x26\xd3\x42\x36\x51\x64\x4c\x73\x5f\xdb\x20\x79\xbb\x26\x32\xea\x85\x62\x70\xdb\xca\xcb\xe1\x7f\x2e\xa5\xae\x8d\x2b\x5e\x61\x19\xaa\xd7\x90\x49\x6c\x8b\xb2\xf0\x7f\xe3\x6a\x0a\xa0\xd7\x9d\xfb\xd3\x7b\x32\x20\x94\x69\x6c\x6f\x98\x2b\xa4\xbe\xa5\xe7\x33\x5b\x38\xde\xe7\x3e\xf1\xbe\xa4\xd4\xad\xc3\xca\xa7\x9a\x2d\xbc\xf8\xe6\x60\x26\x2c\x60\xc2\x6f\xd1\x67\xb4\xa6\xd3\x1c\x16\x75\x26\x88\x9d\x14\xbb\xb3\xb3\x77\x69\xbc\x4d\xdf\x16\xa4\x85\xec\x5d\xeb\xe5\xa8\xa7\xa9\xa0\xe3\x72\xbf\x7a\xb9\xaf\x14\xb6\x0e\x9f\xfb\x3f\x9f\x52\x76\x98\x8e\x49\x44\xc1\x5f\xec\xce\x8e\x59\x23\x3a\xf5\x06\x05\x17\xf5\x4c\x69\x6c\x1c\xb0\x11\xc3\x85\x62\x70\xce\xb6\xa8\x2b\xa6\x0d\x62\x1b\x02\xf6\xf0\x97\xfb\x05\x95\x9f\xb2\x98\xb7\x5e\xed\x10\x40\x4d\xce\xd4\x2f\x14\x83\x0d\x77\x6a\x94\xe1\x88\x90\xce\x47\x26\x3f\x7f\x7b\x84\x7e\x68\x11\xe8\x9f\x71\x82\x69\xfe\xae\xfb\x15\x5f\x6c\x1c\x86\xcb\x48\x53\x62\xc6\x11\x39\xff\x83\x66\xbc\x53\x63\xff\x09\x9c\x90\x18\xa1\x7f\xee\x81\x0b\xb5\x7b\xd3\x44\xac\x1c\xe9\xc5\x8f\x98\xa8\xb9\x78\xb8\x26\xb2\x63\x01\xb3\xcc\xbf\x29\x30\xcd\x32\xb5\x91\xf0\xe3\xa8\xac\x95\x57\xaa\x8e\x89\x07\x4b\x87\x59\x77\x0a\xcf\x46\x5c\x05\x81\x81\x30\x26\xfd\xf9\x31\x5d\x85\xba\x8b\xa3\x82\x45\x86\x7e\x7f\x98\xd6\x7d\x70\xfd\x09\x8e\x21\xfb\xfd\x42\x25\xfa\xd0\xf0\x98\x43\x1b\xbf\xec\x4d\xa5\xd4\x0a\x5b\xc4\x42\x31\xb8\xa8\x34\x54\xb9\xe3\x20\xbc\x2b\xf2\xda\x4d\xa7\x23\x60\x7b\xd5\x17\xb2\x69\xd9\x31\x7b\xf8\x27\xbd\x01\xdb\x2d\x14\xcf\x6d\x36\xf0\x19\xe7\x7c\x46\x30\x97\x94\x5e\x75\x44\xfe\x22\x0b\xb5\x28\x2b\x14\x83\x09\x8a\x57\x7a\x03\x7b\x98\x71\xbd\xaf\xcc\x0f\x0f\xc6\xbb\x3e\x42\xb9\xb1\xce\xae\x45\xda\x2a\xd9\x67\x75\xe9\x5b\x9c\x5b\xb9\x64\x90\x5a\x4e\xdb\x1e\x9c\x9a\x0b\x05\xb4\x2c\x8c\x2c\x8c\x1b\xea\xf5\x3f\xa5\x58\x2e\x62\x46\x4c\x31\xdf\xe8\xbd\x59\xf3\x82\x26\xae\x07\x55\x8e\x00\x16\x0f\xd8\xdb\xae\x96\xf0\xdc\x13\x5f\xbf\xe5\xbf\x1b\x33\x34\x65\x77\x7e\xdd\xb2\x25\xe1\xcf\xff\x9f\x27\x14\x87\xb4\x1a\x56\x46\x9f\xc1\x90\x47\x52\x23\xea\xb2\x09\xa2\x59\x6b\xd6\x00\xf0\xea\x71\xe9\x0e\x5b\x4e\xb9\xf0\x64\x7f\x79\x52\xb7\x8e\xe9\x02\xdd\x2b\x51\xf7\xff\x49\x13\x6f\x2e\x49\xe3\xc6\x4b\x27\x6b\x5c\x4c\xcc\xac\x58\x8f\x5e\xe0\x24\x0a\x1d\x03\xa3\x0c\x89\xaa\xd4\x26\x2e\x74\xad\x85\x0f\xe4\xf0\x82\xd8\x5e\x0a\xd1\x98\x1b\xf7\xb8\xee\xab\x40\x4d\x1c\xa1\x90\x32\xdf\x6f\x4b\xfe\xd7\x06\x62\x04\xd9\x22\xf2\xe7\xd7\x8e\x3f\x4f\xbc\x35\x27\x3c\x8d\xff\x79\xbf\xca\x1d\xf1\xc5\x90\x74\xcf\x66\x45\xe6\xdb\x6e\x95\x55\x65\xa0\xdc\x04\x8d\xa2\xde\x44\x66\xc4\xcf\xea\x5c\x2c\x8f\x1c\x2a\xd5\x6b\x68\x1d\xbf\x07\x0b\x34\x69\x1e\x03\xd5\x23\x1d\xac\xf2\x9c\xfe\xca\xc9\x2d\x87\x9f\x29\xab\xdd\x34\xb0\xdc\x14\x28\x9e\x41\x79\xd5\x32\x72\x6d\x74\x23\x5e\xbb\x5d\x57\xdd\x89\xa0\x7a\xe7\x8e\xbf\x40\x2f\x84\x1c\xdf\xe3\xb0\xb9\x9f\xdb\xca\x0f\x63\x24\x42\x7c\xe6\x82\xe4\x9b\x03\x3b\x78\xb2\x0e\xc5\x16\x74\xc5\xe0\x64\x9f\xe4\xef\x6b\x92\x0a\x86\xe6\xe5\xc6\xd3\x8a\xc5\x3c\xb6\x54\xe2\xed\x85\xa5\xe4\x27\x99\x34\xb9\x63\xca\x0c\xc1\x11\xfd\xd2\x6e\xf5\xae\xd6\x88\xc1\x31\x76\xef\x8e\x55\xf8\x6e\x20\x6d\x02\x15\xc1\xe7\x3b\xb5\xc7\x59\xa3\xa2\x56\xc9\xcd\x7d\x4d\xcb\x52\x61\x13\x1f\x59\x21\x67\xfe\x7e\x42\x5a\x47\x4d\x99\x01\x8d\xed\x41\x65\x48\x03\x46\xbd\xcc\x0f\xbf\xe0\xab\x7d\xe5\x6a\xd5\x80\xd2\xe5\xc2\xb3\x1c\xb4\x33\x97\xda\x0c\x91\xf4\xf5\xbc\x6a\xde\x68\xad\x1a\x31\xa1\xad\xc7\x09\xca\x58\xce\x3e\xac\xe7\x64\x04\x42\xa6\x7c\xee\xb8\xdb\x89\xd8\x17\x0e\x34\xbd\xc5\x20\x10\x90\x82\x79\x88\x23\x25\x33\xd9\x2b\x93\x3f\x80\x83\x51\xa2\x1b\x35\x64\x83\xb6\x2a\x24\x36\xb2\x0d\xb9\x78\xc9\x54\x8e\xe9\x5c\xb8\x32\x89\x66\xb3\x9f\x3b\xad\xf3\xf7\x2c\x50\xc5\xc1\x3d\xda\xb8\x4c\xdf\x23\xcb\xee\x49\xb3\x66\x71\x3b\xe1\x97\x56\xf3\x1b\x7d\x7d\x43\x19\x22\x67\xcf\xdb\x1b\xc9\x60\x58\x88\xf1\xc9\x5e\x9f\xfb\x7b\xd2\xc3\x72\x12\x50\xe1\x85\xca\x3a\xd4\xc6\x4d\x7e\x3e\x83\xfc\x15\x23\xb5\x27\x68\x60\xdb\x53\xc4\x0c\xbf\x71\x72\x70\x42\x89\x00\xdb\x61\x94\x0f\x6e\x29\xab\xe4\x2c\xcb\x12\x87\xe9\xab\x65\xb9\x6c\xac\xf3\xb1\xd9\x75\xbb\x23\x6b\x52\xbb\x8c\x4d\xe5\x8b\xe4\x2f\x79\x3e\x65\xaf\xd7\x88\xec\xf5\xba\x33\xb3\x37\x9d\x17\xa5\xfb\x42\xa1\x18\xe4\xef\xbc\x48\x7f\x9c\x0e\x02\x28\x4a\xb4\x6d\x31\x5f\x93\x5f\xb0\x41\xc5\x66\x36\x78\x60\xcb\x05\x3d\xdc\x7f\x2e\x6f\xf6\x83\xb7\xe5\x45\xa9\x21\xbb\x4a\x00\x79\xdd\x9d\x79\xb8\xb7\x02\x08\x65\xb4\x69\xbb\x0d\x62\x72\x9f\xb5\x5e\xdb\x74\x16\x57\x6c\x08\x1d\xbc\x7a\x40\xbb\x2e\xc4\xab\x85\xad\x12\x2c\x07\xfa\xcc\x51\x56\x0a\xc4\x72\x00\xa4\x0e\x73\x9b\x59\x87\x46\xa6\xbe\x59\xc4\x08\x86\x8c\x39\x4a\xa2\x6b\x3d\x0c\x9f\x62\xa0\xd8\xb5\x18\xb4\xcc\xd7\x92\x23\xda\x64\xb1\x47\x1b\x98\xb9\x18\x8b\x01\xcd\xe9\x67\x64\x32\xc7\x88\x79\x61\x7b\xf3\x2d\x6d\x94\x32\x15\x34\x8b\x60\xa9\x54\xd2\x75\xfc\x22\xed\xb2\x8f\x0d\x53\x28\x4e\xbe\xeb\x51\x8b\xf7\xc9\x3f\x6b\x57\x34\xde\xc3\x1a\x07\x3e\xe0\xb6\xfc\x60\x65\x8f\x58\x26\xc2\xc6\x60\xf3\x26\x1d\x22\x6d\xc6\x8a\x30\x77\xee\xd4\x19\xac\x14\xae\xad\x50\xb3\x6e\x6d\x50\x69\xb9\x76\x58\xdd\xef\x3c\xcc\x57\x17\xd7\x98\x85\x6b\xea\xb5\x1e\x66\x29\xee\x76\x0d\xf5\x21\xe4\xed\x48\x64\xc8\x1f\xdc\x68\xca\x63\x0c\x00\x74\xf8\x98\xe7\x9e\x4c\xe8\x81\x82\x40\x95\x20\x42\x76\x0d\x1f\xa9\xc8\xb1\xd8\xf5\x14\x66\xe2\x92\x77\x75\x20\x00\x43\xae\x6b\xf1\x73\x0d\xaf\x33\x7f\x62\xa0\xd2\x5c\xba\xc2\x1e\x68\xee\x1c\x5e\x9b\x59\xbe\x5b\x83\x9d\x78\xf8\xdb\xd8\xe4\xd1\x5a\xf6\x35\xb1\xed\x91\x24\xb4\x20\xf8\xef\xb5\x2a\xaa\x82\xbf\xf8\x20\xa7\x71\x3a\x38\xd3\x40\x70\xcc\xae\x5e\x14\x6f\xc7\x19\xf5\x94\x31\xfb\xd0\xf7\xc5\xb2\x95\x96\x12\xf8\xd8\x6f\x1c\x97\x7b\x7e\x60\x08\xa9\xf8\xb2\xcc\x35\x4c\x9e\x0d\x9b\xda\x05\x83\x43\x2d\xb2\x7f\x3a\xd4\xae\x3f\x0b\x9a\x52\xc3\xf9\xf0\x1a\x15\x92\x17\xe5\xe0\xbf\x64\x79\x55\x3a\x79\xf2\xc4\xa9\xdc\x09\xf8\xf6\x2d\x12\xd7\x4a\xd4\xd5\xc0\x15\xbd\x65\xd2\xef\xf2\x39\x59\xec\xd0\xdb\x69\x65\x9c\x3a\x36\x05\xa9\x25\xf8\xd5\xde\x31\x7a\xd5\xe1\xf5\x38\x30\xfe\xf1\x65\x32\x73\x09\xbd\x99\xa1\xc9\x7f\xda\x68\x21\xa3\x86\x5d\x13\x35\x92\x2f\x65\xf6\x44\xf9\xa9\x1a\x42\xa4\xea\xd5\x61\x43\xd4\x5b\x01\x94\x3b\x48\xcd\x13\xb7\x4a\xec\x40\x61\x52\xf8\x6d\x3f\xa1\xcc\x46\x6b\x34\x1a\xd1\xdd\xb1\xb8\x6f\xfc\x43\x3f\x56\x28\x06\x3f\xf3\x52\x77\xa6\x29\xd1\x40\xd9\xf6\x01\xc9\x14\x54\x46\xcc\xb3\xa8\xef\xd5\xc4\x74\x3d\x79\x72\xdf\xf6\xb4\x42\xd0\xe0\x12\x57\xb0\x9a\xfe\xbd\x29\xfb\x4e\xe4\xd6\xe5\xe6\x68\xee\x12\xf9\x1f\x18\xb2\x0d\xca\x78\x99\x9e\x7d\xbe\xd4\x96\x0c\x49\xa4\x5a\x83\xc6\xac\x7d\x2f\xcf\x6a\x4b\xaf\x59\x72\xfd\xbc\x65\x51\x7b\xfd\x85\x13\xc9\x19\xd3\x1a\x81\x4c\xcd\x5c\xf9\x12\x57\x14\x9e\x47\x5c\x1b\xeb\x1b\xeb\xe0\x0b\x79\xad\xcb\xab\x11\xbb\xee\x46\x5b\xb7\xb5\x4f\x29\x22\xb3\xd4\x8a\x66\x7e\xa3\xae\xd6\xd7\xb0\x80\x48\x8c\x2e\x68\x87\xa2\x36\x53\x46\x76\xd5\x14\x23\x92\x81\x3b\x34\xc4\x5d\x03\xd9\x75\xda\x50\x4b\x92\xe0\x96\xe7\xd2\x53\x6a\x10\x94\x5c\x72\x4a\x3e\x8e\x26\x0b\x7f\xaa\x50\x4d\xb2\x0f\x4a\x77\x84\x38\xb0\xba\x98\x35\x40\xa0\xa4\x3b\xe7\xd7\xda\x12\x42\x0e\x36\xb5\x00\xd8\x93\xbd\xab\xb7\xe2\x17\x86\x2b\x5c\x93\x3d\xfc\x7a\x9f\x7c\x53\x86\x4a\x8b\xc0\x62\x3c\xf3\x80\x66\xb8\x8f\x3c\xe1\xdf\x80\x2b\x42\x10\x02\x30\x29\xe1\x9f\xfc\x75\x9d\x2a\xd6\x19\xc1\xba\x8e\xbf\xa7\xa3\xb4\x0c\x06\xd3\x26\xde\x29\x04\x9b\x3f\xd0\x9d\xa7\x90\x13\xf7\x26\x99\xc6\xdb\x03\x44\xa9\xe0\x00\xac\x14\xd8\x2d\x97\x2d\xe5\x7f\x28\x94\xdc\x20\x93\xe5\x7e\x7b\xb5\xcc\x57\x93\x66\xcd\xec\x0c\xef\xdc\xd9\x7d\xc9\x30\xe8\x10\x9b\x1a\x35\xec\x69\x80\xd9\x59\xca\xdb\x46\x86\xe1\x33\x64\x40\x82\xbd\xf1\x98\x3e\xaf\x0e\xb3\xb6\x1b\x8f\x17\x9f\xd4\xe6\x08\xd8\xab\xc1\xea\x96\x53\xb3\x17\xdf\xaa\xe0\x2c\x88\xc9\x75\x46\x8e\x8f\x55\xa4\x49\xa8\x05\x62\x41\x10\xb0\xaf\xe0\xf1\x73\x39\xf3\xd5\x72\x3d\xfb\x4f\xf3\xb4\x15\x3c\xaa\xc4\x2b\x9d\xec\x1f\x37\xea\x9e\x33\xc0\xc6\xe7\xcd\xc1\x5b\x1d\x09\x69\x03\x80\x7f\x40\x92\x9a\x71\xbb\xa2\x16\xd4\x40\x46\xa4\xbd\x99\x79\x4e\x63\x0e\x3a\xc8\x06\x4d\x95\x42\x31\x78\xfe\x99\xe4\x20\x7e\xea\x74\xde\x67\x1c\x4e\x6e\x70\x6d\xda\x03\xee\x3f\x5f\x5e\x95\xfc\x0e\x55\x16\xc3\xbf\xbb\xb3\xe8\x75\xfe\xc5\x6f\x80\xa9\x88\xfc\xe2\xb3\x36\x6b\x22\x2f\x31\x3b\x53\x3c\xfc\xcf\xbd\xa2\x74\xf9\x3e\x73\x7d\x51\xb6\xed\xd6\x04\x28\x48\x39\x62\x4f\xce\xd8\x77\xa1\xd2\xd1\xba\xe0\x42\x2f\x33\xd5\x2d\x0a\xff\xbb\x63\x26\x50\xbe\x9e\x16\xe3\x2e\x86\xc1\xe0\x3d\xfb\xbf\x07\xc4\x61\xa4\x50\x84\xf1\x2e\xf5\xaa\xc3\x69\x1f\x14\x80\xd1\xad\xc3\x42\x9f\xb9\xd7\x13\x3a\x67\x87\x03\x7e\xc1\x91\x14\xde\xd5\xef\xb4\x75\x33\x54\x14\xbc\x3b\xbc\x74\x9b\xf6\x8e\x39\x00\x47\x2c\x34\xde\xea\xab\x19\xc3\x33\xe2\x21\x62\xf3\xc8\xf1\x4e\x7b\xf2\x7d\x36\xc2\x83\x2f\x48\x42\xef\xdf\xfb\x7f\x39\x73\xc3\xc9\xfa\xf1\xa8\x76\x65\x24\xda\xb4\x50\x3d\xad\x14\x93\xbf\x62\x9d\x4a\xce\xa4\xcd\x30\x21\xfd\xdc\x56\x2b\x20\x0a\xba\x99\x1e\xd8\x9e\x64\x66\x9d\xe5\x4f\x6f\x11\xae\x62\xbb\x8c\x18\x5c\xb1\x55\xaf\xa4\xfa\xa8\x72\xac\xc1\x32\x7f\x87\xc6\x6e\x89\x41\x1e\xe1\xaf\xfa\x73\x2f\x4d\x0a\x85\x78\x64\x1d\xe6\x4f\x55\xf4\x61\xa3\x8f\xf1\x31\xc3\x2a\x0a\x48\xc4\xfc\x67\x4d\xd5\xe1\xb7\xea\xc3\x14\x33\xfb\x85\x3e\x4a\x76\x45\xaa\x0a\xd6\xc0\x51\xda\x44\x8a\x11\xc7\xc4\x9e\x38\x50\xf9\xe5\x27\x65\x11\x48\x7d\x8f\x09\xb1\xc9\xfc\x6a\x79\xc1\x2c\xd0\x41\x65\x3c\xf0\xbe\xa2\x4d\xc3\x5d\x13\xe3\x7a\x0c\xe2\xf9\xfa\xe1\x01\x1a\xb1\xa9\x18\xbc\xa9\xbd\xfd\x8a\x09\xdc\x40\x91\x6f\xbe\xe9\xc8\x01\x49\x18\xf7\x55\xa1\xb7\xcc\xf0\xa7\x53\xe3\x19\xa0\x89\xf1\x21\xa7\xb5\x5a\x6f\xa1\x50\x4b\xf2\x3f\xeb\xd3\x7b\x90\x36\x11\x8c\x8e\x6f\x1e\xbc\x40\xe9\x96\x4c\xdf\xf6\x10\x23\x26\xff\x82\xff\xf3\x3c\x67\xca\x5d\x6f\x37\x30\x03\x13\x72\x91\xec\x27\x28\x48\x18\x83\xb2\x94\xe2\x54\xf6\xf5\x37\x63\x4c\x42\xd5\x4e\x2b\x50\xff\xbc\xcf\x00\x65\x34\xd7\x40\x10\x33\xaf\x2b\x7d\x24\xf1\x43\x85\xc8\x8d\x0e\xb5\x2e\xcd\x51\x95\xb4\x5c\x87\x0f\x2b\xb3\x9b\x35\x8c\xbe\xe9\xdb\x86\x58\x5b\xe4\xe7\x6c\x18\xad\x1d\x3c\xcf\x05\xee\x64\xb2\x4d\x38\xba\x37\x99\xd7\x6d\xb0\xa2\xe6\xf3\xe0\x8e\x98\xf0\xbc\x5f\x1e\x12\xc0\xf2\xb9\xe3\xc2\x17\xf0\xf2\x4a\x8d\x8e\xd8\x04\x91\xaa\x60\xf5\x69\xde\xf5\xae\x12\x6a\xec\xf2\x30\x8e\x9d\x98\xec\xd5\xeb\x61\x51\xec\x27\x30\xda\xd9\x57\xb6\x8d\xe2\x77\x8c\xfa\x2e\x71\x09\xb2\x51\xea\xd6\x6e\x16\xe2\xb2\x73\xa9\x6f\x7b\xad\xa8\x40\x9c\xa6\xf8\x98\x96\x5b\x36\xb2\xc4\x14\x10\x4d\xee\x61\x63\xca\xc5\x1b\x9e\x99\x1d\xcf\x2c\x4b\x66\x0a\xfe\x95\xff\xf4\x66\xc5\x72\x1c\xbc\x45\x44\x11\xe5\x8d\xe4\x85\x43\x0d\xf9\x1e\x2e\x84\xcf\xe2\x85\x85\xc9\x3c\x3b\x69\xd6\xac\xc9\xe1\xff\x33\x4d\xb4\x70\x9f\xde\x28\x2f\x54\x49\x65\xa6\xfd\x60\xa3\x4c\xb1\x20\xfb\x57\x28\x06\x17\xf7\xd1\x06\x83\x35\xa1\xca\x13\x54\x6c\x1e\x80\xe6\x2e\xb8\xe6\xc6\x25\xd7\x17\x17\xc3\x91\x9d\xa2\x99\x4b\x86\xbd\x77\xb4\x01\x1c\x7a\x8c\x27\x80\x9b\xa9\x05\xee\x76\x5f\xb8\x5d\xa0\x7a\xb1\x4d\x60\xb8\xfd\x4c\x67\xf2\x9c\xe0\xb5\x0e\xe3\x82\xa5\x26\x76\x63\x78\x5e\xfe\x9c\xd3\xd2\xd0\x79\x1a\x28\xb7\x3e\xd0\x57\xd6\xed\x16\xd0\x9f\x5b\xa3\x62\x9e\x8c\x09\xd5\xaa\xec\x92\x16\xbc\xa7\x8b\xad\x83\xe4\x06\x9f\xd3\x14\xbb\xf3\x0b\x46\x0f\x8c\x8b\x3c\xce\x5b\x05\xa2\xc0\x33\x52\x95\x0c\x06\x65\x30\x55\xdc\xb1\x42\xce\x59\x48\x09\x5e\xf1\x6f\xb5\xf4\xec\x85\x0f\x4c\x14\x67\xa3\xce\x2a\x3e\xe6\xc8\x26\xe1\xdf\x7f\xa2\x4d\x5b\xca\x73\x0a\x63\xee\x0a\x0d\x1f\xcf\x8d\x5a\x15\x0e\xfb\xcf\x0f\xa8\xe6\x80\x8e\x49\x5d\x10\xc5\x03\xb5\xa5\xed\x7c\x34\xe5\x11\x07\x04\xce\x8b\xc1\xbf\x9e\x92\x88\x9b\xb1\xc8\x72\x3e\x96\x16\x33\x93\x5e\x09\xdc\x52\xe1\x98\x97\x12\x06\x31\xea\x66\x0b\x68\x48\xff\xbe\xe3\x02\x2d\x4b\x23\x78\xcf\xe1\x17\xba\x99\x5b\x92\x17\xae\xa9\x57\x70\x4a\x77\xe3\x73\x77\x0a\xa6\x48\x35\x4c\x21\xc1\x8c\xab\x93\xef\xc2\xc3\x8c\x91\x92\x19\x4f\xfe\x96\x3c\xa2\x20\x31\x91\x43\xc0\xaa\x24\x98\xab\xcb\xf7\x33\x0a\x5e\x21\x1d\x9c\x8c\x79\xdf\xeb\xca\x30\x81\x7a\x1c\x97\x13\x9c\x3e\x1a\x7f\xbf\xdb\x7c\x54\x28\x06\xdf\xd3\xb8\x28\x16\xd0\x44\x71\xa1\xea\x47\x22\x22\xf9\xff\x8f\xaf\x77\x8f\x93\xa2\x3a\xf3\x87\xe9\x4b\x58\x44\xe4\x32\x0c\xe3\x38\x22\x22\x12\x54\x98\x1e\x67\x86\x01\x07\x44\x97\x9b\x88\x88\x34\x01\x44\x25\x06\x3d\x5d\x75\xba\xeb\x4c\x57\xd7\x29\x4f\x55\x75\x33\xb3\x68\x0c\x41\x74\x95\x20\x71\x8d\x4b\x5c\xe2\xaa\x71\x8d\x51\x97\xb0\xc6\x28\x4b\x08\x71\x09\x4b\x88\x31\x84\xf0\x63\x59\x96\x18\xd6\x18\x43\x58\x42\xd4\x10\xe2\x1a\xe2\x54\xde\x4f\x3d\xe7\x54\xd5\xa9\xd3\xb3\xef\x9f\xce\xe0\x4c\x4f\xd5\xb9\x3c\xcf\xf7\xf9\x5e\x46\x08\x5d\x4b\x85\x4f\x59\x32\xc7\x9f\x6f\x90\x7c\x09\x1c\x57\xa0\x6d\xcd\xdb\xa2\xb5\x41\xad\x35\xe1\x49\xb5\x72\x50\xb3\xd4\xf4\x98\x96\xeb\xe0\xaa\x53\x46\xbd\xc1\xef\xfe\xa5\xc2\x19\xd4\x82\xb2\x5b\x54\x62\x77\xbf\x7d\x85\xc4\x8c\xb7\x2c\xcc\xc0\x2e\xac\x37\x47\xac\x1c\x02\xa4\x02\x79\x8c\x73\xc3\x52\x5b\x14\xe2\x33\xb2\x7a\xc1\xb0\x48\xf0\xdb\xbe\xb1\x54\x92\xbd\x20\x56\xc2\xc2\x41\x3c\x73\x72\xec\x45\x32\xfb\x5e\xe8\xbd\x42\x05\xfd\x5d\x8f\x5d\x10\xd5\xb9\x40\xaa\x4f\x7f\x66\xf6\x85\xf2\xf1\x4a\x35\x8f\x87\x02\x07\xdf\x5b\xb6\x38\x59\xb1\x45\xf6\xdf\x4e\x45\x94\xee\xef\x2c\x96\xce\x2e\xec\x22\x12\xf4\x5c\xf0\x39\x6a\xbb\xc4\xb8\xc9\x20\x5a\x19\xf3\x66\xb1\x69\xbf\xea\xe5\x5a\xc4\x0c\x5b\xba\x17\xc5\xda\xff\xe3\x19\xb5\x50\x5f\xe3\xc5\x96\xc6\xff\xa6\x10\x83\x82\xd2\x32\xd4\x01\x6d\x49\xab\xbc\x61\x6c\x69\xbd\xe1\x88\xbc\xbc\x2e\x79\x01\x05\x4f\xcc\x72\x49\xe4\x09\x12\x1c\xb7\x0f\x0f\xbf\x3a\xb9\xf2\xff\x7f\xde\x50\xf8\x89\xb6\xec\x12\xce\xf0\x25\x86\xa1\x67\xf8\xf8\x58\x5c\x3a\xd7\x30\xe9\x4b\xe8\x4b\xb2\x9b\xd2\xb1\x5d\xa4\x59\x97\xd5\x99\xbe\x72\x97\x44\xc8\xb6\x68\x05\x99\x84\x3b\xa4\xa6\x6f\xd9\x26\x4d\x6a\x5c\x17\x57\x6c\x60\x09\x7f\xfd\xfe\xfa\x44\x24\x88\x36\x08\x8f\xa5\xff\xdd\x2f\x19\xd0\xd1\x82\xe4\x44\x9b\xca\x2c\x8c\xf7\x52\x0f\x66\x44\x33\x60\xb6\x77\x6e\x9f\x3a\x22\xc3\x16\x67\xfe\x7c\xf6\xee\xe4\x19\x5e\xc4\x84\xfb\xcb\x26\xef\xfa\x45\x93\x93\x84\xe3\xd8\x30\xb9\xbe\x98\x39\xb2\x37\x49\x4e\xb4\xa9\x4d\xab\x4e\xd9\x20\x65\x43\xba\xad\xfd\xb7\xab\x31\x24\x88\x35\xa3\x6e\xc2\x96\x1d\xb1\x55\xa5\x9a\x62\x27\x0c\x89\xcf\x4e\xe4\x24\xa0\xdc\x2d\x44\x33\x48\x09\xd5\x59\x11\x65\xbc\x55\x72\x3a\x04\x44\x20\x8b\x4b\xe0\x53\xfb\x9b\x25\x2a\xa0\xe5\x15\x91\xe6\x8a\x1c\x1d\xff\x13\x37\x7e\xd3\x3c\xa1\x27\xe1\xb2\xd3\x15\x4b\xaa\xdd\x7a\x3a\xce\x9f\x59\x0c\xc9\xe9\xd8\x02\x13\x44\xdf\x6c\x90\x44\xf9\x26\xad\x09\xcd\x7f\xea\x3a\x01\x19\x2e\x05\x17\xe2\xe8\xa9\x2c\x96\xfe\xb9\x14\xf5\x92\x1a\x7c\x86\xaf\xc9\x1a\x65\x20\xeb\xf4\xff\x7a\xa5\x1c\xd9\x8f\xd7\xd8\xd8\x72\x44\x0a\xfe\xb9\x41\x92\xbf\x2b\x0d\x23\x7f\xe7\x8b\x8c\xc1\x9a\x01\x75\x5a\x2e\xef\x9f\xb7\xa0\xde\x70\x07\x6b\x9e\x4b\x99\xe0\xec\x2d\x51\xac\x72\x91\x43\x10\xd7\x40\xc6\x5e\xf4\x9f\x5b\xa7\xaa\x1a\x39\x16\x23\x78\x51\xbd\x3d\x91\x4b\x82\x46\x69\x42\x7b\x35\x6e\xaf\x98\x70\x04\x8f\xbe\xe8\x49\x85\xcd\xcf\xdb\xd5\x9c\xa8\x8a\x1d\xec\x4f\x7e\x61\xa1\xb1\xb2\xd5\xa7\x8e\x71\xa5\x5e\xfd\x72\x74\xa7\xe4\xea\xc4\x68\x19\x5c\x4c\xd2\x43\xce\xc4\x8c\x4c\x1b\xd9\xb2\x1c\x37\xbd\x52\x10\x4e\xec\x60\xbb\x59\x3c\x1c\xd5\x9f\xbd\x9d\xd3\xcf\xef\x40\x65\x5a\xc5\x56\x39\x2e\x48\xfd\xd2\x2b\xc3\x62\x35\x45\x2e\xef\x5f\xf1\xd1\x78\xc9\xe3\xa4\x86\x59\xd1\xab\x9f\xcf\x5d\xbb\x41\xb1\x15\x2a\x50\xa6\x53\x8b\xc8\xfb\xe2\x83\x8d\xcd\xd2\x9f\x27\x7a\xe5\xf0\x92\x6a\x12\x4c\xfd\x22\x62\x15\xa8\xb4\x83\x37\xeb\x0a\xef\x98\x22\xaa\x02\x4c\xcf\x6b\xd7\x43\x52\x88\xaa\x83\xf5\x02\xbf\x2b\x7e\xa3\x28\xff\xec\xe0\x26\x13\xfe\x48\x2b\x14\xdb\x2a\x4a\xcc\x08\x6c\xd9\xb9\x5f\x01\x24\x5c\x46\x35\x3e\x12\xe0\x63\xa4\xce\x7d\xf1\x29\x48\xeb\xe5\x10\xff\x20\x05\x83\x38\x36\x0d\x0a\xd2\xa6\xc7\x95\x79\x31\xf5\x84\x55\xcd\x5f\x29\x04\x47\xf0\x22\x83\x15\xe9\x6f\xad\xd3\x32\x87\x44\x00\xff\x8d\x35\x8a\x28\x09\x0f\x80\x4d\xfb\x4d\xef\x8c\x92\x27\x11\x22\x5c\xf7\x17\xdb\x64\x0c\xcc\x25\x55\x21\xc0\xee\x62\x52\xce\x30\x5e\x43\x34\x0e\x49\xa7\x3f\x1d\x7b\x20\x51\xb0\x22\x9b\xde\xa4\x48\x9a\x68\xa1\x20\x11\x58\x87\x1c\x6b\x10\xc7\x75\xb0\xdb\x35\xea\x81\x9b\x47\xf6\xb2\x9e\xc4\xc4\x44\x33\x3d\x27\x34\xe0\xba\xaf\x4b\x41\x68\x85\x2d\x06\xaf\x36\x6f\xdd\x15\x07\x3a\x11\x75\xf9\xfb\x9f\xdb\xa7\xce\x77\x83\x5d\x12\xda\xce\xad\xef\x12\x1d\x08\x46\x26\xc4\x71\xa6\x3e\xb3\x9e\x37\xae\x77\x04\x9f\x4e\xb6\x79\xec\x68\x50\xf9\x36\x15\x1b\xeb\x30\x2f\xf7\xbf\x74\x5a\x9e\xf6\x61\x54\x0e\x4e\x36\x5e\x26\xfc\x54\x28\xd9\x79\x8e\x4f\xb0\x91\xb6\x1d\x48\x2e\xfc\x0a\x37\xb5\x49\x7c\xea\xe6\xb4\xa2\x0d\x47\xcc\x25\x9a\x67\xa2\x10\x61\x4e\xcf\x50\xf2\xe8\x18\x76\x30\x62\x9a\xc1\xcf\x9a\xec\xf5\x27\xe3\xf2\xa9\xe4\x51\xab\xd4\x67\x50\x2f\xf8\xfb\xd6\xbe\x30\x00\x92\x22\x2c\xec\xf2\xfe\x4f\x06\xc7\xc5\x55\x09\x59\xa5\x60\x5f\xe5\x1c\xb7\x17\xd2\x96\x1a\x27\x7e\x7a\x80\x4b\x28\x28\x40\xd4\x15\xbe\xe4\x55\x79\xe2\xeb\xb8\x5e\x05\xd4\x91\xa9\x97\x76\xab\xb8\x22\x2b\x73\xc6\x9a\x7f\x71\xb3\x92\x3e\x57\x2c\x12\x8d\x20\x53\x10\x1c\xe6\xbe\x28\x47\xc0\x7a\xc1\xa9\x6d\x85\x1f\xac\x3f\xab\x5b\xd1\xc9\x8a\x70\x29\x91\x6e\x7b\x44\x19\xe3\xd8\xd4\x0d\x0a\x23\x64\x8a\xfd\x85\x8e\x2a\xb9\x41\x15\x02\x81\x8b\xf1\x8b\xbf\x69\x48\xdc\x5a\x22\x93\xf4\x00\x63\xab\x4d\x09\x51\xad\x61\x5c\x36\x79\xca\xcc\xdf\x15\x24\x2a\xaf\x88\xbd\xcf\xf7\xa7\xbe\xbf\x31\x0e\x6d\xf1\x98\xf0\xc2\xcc\x9c\x5b\xaa\xbe\x46\x9b\x32\x37\x3a\x6a\x56\xdd\x79\x1e\xdf\x6f\x41\x1b\xf0\x4d\x05\x01\xae\x41\xfd\x26\x80\x9a\xf3\xdb\x63\x14\xc1\xb1\x69\x19\xf3\xf8\x41\xff\xb2\x3d\xd1\x9c\xce\xc1\xb2\x90\xec\x1a\x2b\xb9\x0c\x4b\x98\xb2\x52\xd2\x9c\xdd\xff\xee\xba\x68\x60\xa6\x69\xb1\xb5\xb9\x7f\xfc\x35\xc5\x7b\x1c\x33\x86\x18\xe1\xf2\xf2\xe5\x6f\x26\xbf\xd9\x83\x6b\x9c\xbb\x15\x94\x6b\x92\x3c\xcd\xa6\x26\xb7\x76\xe9\xcf\x3c\xdb\x9c\xdc\xa4\x9d\x9d\xad\xd3\xda\xdb\x05\xba\x77\xec\x6c\xfc\xea\x35\x46\x1c\x87\x87\x07\x08\x86\xf4\x95\x27\x15\xf8\x12\x99\x26\x75\xc3\xc3\x21\xfd\xd7\x8a\x59\xbe\x6b\x10\x47\xd4\xe2\xe9\xda\xf3\x91\xc1\x09\xb5\xaa\x58\xc8\x73\xf7\x1b\xf1\xeb\x63\xb4\x06\x3b\x20\xdf\x9f\xf9\x3e\x8b\xcf\x4a\x86\xab\x50\x5e\xf8\x07\x9f\x13\x90\x35\x65\xba\x4c\x4b\x68\xfd\x44\xf2\x7e\x0c\xc5\xe1\xc1\x0f\xbf\xba\xa1\x29\x79\x33\x44\xbc\xb0\x0e\xc5\x9a\xd0\x40\x2e\x16\xd0\xee\x90\xf7\x24\xb1\x2c\x62\xfc\x91\xcd\x97\x88\x47\x3c\x3b\x05\xbe\x4c\x3e\x89\xde\x98\x43\x25\xbe\x77\xe6\x97\xe3\x93\xf7\x48\x89\x86\x25\xfe\x97\x4f\x5d\xae\xd4\xb3\x55\x62\x95\x1c\x97\x26\x83\x00\x32\xff\x7c\x32\xea\x42\x75\x54\x05\xea\xcb\xec\xe4\xde\xa9\x68\x65\xd4\x9b\x40\xa1\xee\x5d\xdb\x92\xc4\x6b\x92\xe7\xc4\x1d\x4f\xc5\xa1\x52\xc0\xb0\x83\x3d\x71\x7a\xb5\xa2\x4a\x33\x28\x0d\x5d\x67\xbf\xdb\xc5\x61\xad\xb9\xc8\x2a\x33\xcf\x76\xb5\x7a\x01\xea\xda\xad\xbc\x31\xeb\xa5\x9e\x55\x12\xde\x6c\xdd\x83\x63\xb0\xa3\xa3\x0b\x24\x79\x37\xc6\x6b\x1b\x33\x69\x80\x9d\xba\x6c\x4f\xb2\xd2\xb3\x70\x4d\xd4\xf6\xb1\x7e\xf9\xfa\x99\x4a\x3e\x0d\x66\xba\x87\xb9\xee\x37\x7c\x5e\x17\x4d\x8a\x8b\x17\x9b\x20\x8b\xc8\x42\xfc\x6b\x87\xd4\xa5\xbc\xe0\x8a\x92\x16\x99\xed\x5c\xc8\x6f\xca\x9b\x89\x55\xd2\x69\x25\x44\xe8\xbe\xb6\x3f\xa1\x15\xe0\xf4\x6b\xff\xb8\x62\x86\xaa\x63\x87\x94\x2c\xa1\x24\xbb\x78\x6d\xfc\xf7\x5f\xe1\xc0\xce\x58\x7c\x48\xd5\xe9\x32\x3e\x2d\xe8\x4f\x4f\xd8\x1a\xd7\x86\xc1\xde\xa0\x15\x6e\x09\x12\xbc\xf3\x67\xce\x4d\x90\xd8\xc3\x4e\x70\x0d\xbb\x03\xc4\xee\xb5\x5a\xd2\xc8\x0b\x03\xc4\xef\xff\x70\xae\x14\xf1\x1c\xd5\x4c\x75\xdd\x4a\xa7\xe4\x03\x04\x0d\x30\xf4\xa1\xd9\x86\xb0\x80\x0d\xce\x7e\x83\x52\x68\xe0\xa7\xab\x48\x13\xb2\x34\x6c\xc6\x16\x68\x59\xe7\x48\x1c\x47\x1e\x31\x9d\x53\xdf\x69\x52\x2a\xb8\x12\x0b\x6e\x57\xd7\x63\x98\xd7\x14\xb7\x9c\xaa\xa7\x0a\x61\x17\xe4\xc3\x02\x18\xf8\xb3\xe4\xd7\xeb\x06\x75\xb2\x50\xda\x7e\x7d\x48\x72\x65\x54\x10\xb1\x04\x47\x3e\x62\x44\x8e\x3d\xae\xea\xa0\x99\x66\x70\xff\x5e\xe8\x87\x8e\x8f\xaf\xa3\xf3\x14\x29\x73\x51\xc1\xe4\x1f\x2f\xfd\x1b\x53\xc2\x67\x30\xab\x60\x79\xfd\xfe\xe7\x0a\x85\x8d\x47\x3d\xe1\xfa\x99\x59\xf1\x10\x87\x31\xe7\x58\x16\x8f\xf0\x5a\xf5\xb2\xda\x57\xd2\x82\x89\x2b\x3c\x4b\x72\x85\xe4\x10\x1c\xa5\x74\x5e\xa9\x40\x84\x41\x99\x14\xfa\xf1\x7e\x75\xe4\xf9\xe2\xd8\x84\x0c\xd3\xf4\x90\x15\x17\x2b\xb5\xab\x13\xb4\x66\x91\xb6\xf2\xbc\x95\x51\xe5\x66\x90\xba\xac\xef\xec\x84\x71\x8a\x3c\x10\x18\x87\xe1\x60\xbe\x71\x99\x3a\xb7\x42\xae\x78\xc8\xc1\xb7\x0f\x48\x8e\x7c\xc1\x4d\xe3\x86\x4b\xd8\x6f\xb0\xe2\x1b\xd1\x93\x1e\x5c\x76\xf8\x42\xde\x50\x14\x4c\xd2\xd7\x87\x18\x87\x9b\x16\xae\x95\x12\x60\xb8\x8b\x68\xf0\x8a\xae\x79\x33\x66\x2e\xb6\x01\x59\xfe\xc4\x92\xe4\x63\xef\xf1\x98\xb0\x79\x4f\x2f\x3a\x22\x41\x81\x06\xb1\x30\x28\xed\x27\x1c\x51\xe8\x35\x66\x24\xaf\xf4\x53\xd5\x66\x99\x40\x4c\x19\x76\xe3\x2d\xb8\xac\xa0\x8c\xfa\x3c\x62\xea\xe1\x8d\x97\xda\xf6\xb1\x94\xda\x50\xc3\xc0\x59\xc8\xf7\x67\x7b\x5d\xc9\xfe\xaa\xd7\xa6\xc1\x4d\x0a\x0e\x18\xe7\xc2\x64\x33\x07\x66\x8d\xc1\xdf\x9c\x5b\xc6\xab\xe2\xa2\xe9\x11\x68\xb0\x5f\x2f\xf0\xdd\xb7\x0a\x31\xd4\xeb\x94\x05\x9e\x74\x72\x70\x12\x85\xf4\x2c\x52\x41\x25\x62\xc1\x3a\xe5\x57\xd7\xd7\x67\x26\xfb\x10\xe2\x94\xb1\x15\x8e\xf5\xa2\x32\x63\xc1\xf3\xbc\xe6\xbe\x0d\xfc\x49\xa5\x4e\xff\xd1\x91\x8a\x55\x5a\x7b\x78\x69\xfd\xd7\xe2\x11\x12\xa4\x01\xbd\x7e\xfa\x7b\xeb\xea\x22\x9a\x51\x29\x0a\xb2\x4e\xff\x78\x83\xea\x6c\xe0\x44\x85\x56\x66\xcb\x5c\x29\x4f\x90\x3a\x2e\x0a\x71\xf2\xd4\xbf\x35\x8a\xd9\x6f\x01\x42\x8a\xfd\x57\xd4\xe4\x45\xd0\x41\x0b\x94\xa0\x78\xe4\xfc\xb0\x9b\x02\x58\xeb\x47\x9f\x8c\x96\x81\x6e\x2c\x48\x6c\xeb\x0f\x46\xb5\x60\x85\x44\xce\x19\x7b\x26\xc5\x39\x54\x84\x41\xee\x55\x1d\xc3\xc6\x1a\xa6\xc0\x10\x66\xce\xf5\x8a\x45\x64\x48\x2a\x3c\xeb\xf9\x51\xc9\x84\x5b\xee\xba\xbe\x33\x5e\x84\x16\xc6\x3a\x3f\xaf\x32\x7b\x0a\xbc\x3f\xe1\xfe\x24\xf0\xa1\xbf\xf8\xd1\xf9\xe2\x39\x50\x33\x97\xf7\xbf\xfa\x91\x22\xb0\xa7\x56\x70\x5e\xf5\xf2\xdf\x98\xfc\x78\xad\xdb\xc7\x28\xe5\x16\xe6\x4e\xb9\xa9\x17\x3e\xe6\xef\x78\x9e\xe7\x9a\x09\xfa\xf6\x9d\x33\x15\xf3\x92\x22\xf5\x04\xad\x22\xbd\x64\x95\x92\x67\x6c\x9a\x02\x28\x7f\xb4\xa8\x94\xed\x6b\x5c\x86\x2c\xcc\xe5\x6b\xf0\xba\x4f\xef\x53\x83\x72\xb5\x32\x2a\x45\xd6\x3e\x1f\xb0\x16\x89\xe1\x62\x11\x87\x0b\x61\xc4\x8a\x9c\xfb\x66\xdc\x07\x91\x8a\x8d\x99\x43\xad\xc8\x10\x3a\xfb\xc0\x44\x45\x72\x8c\x4d\x82\x06\x40\x0a\x2b\xa7\x05\x18\x6d\x50\xce\xc4\x49\xfd\xf0\xbe\xf8\x25\x14\x49\x24\x81\xbd\x76\x92\xca\x12\x2e\x19\xc1\x61\x16\xc6\x04\xb9\xbb\xe3\xa1\xa9\x11\xac\x76\xf5\xba\xbd\x7e\xfb\x65\xea\x83\x22\x0e\x55\xfc\x83\x52\x1f\x48\x49\x42\x45\x0a\x72\xcc\xe0\x49\xfd\xa1\x35\x1a\xc3\xf1\x45\x91\x9d\xd0\xa0\x74\xf0\xc8\x2a\x79\xc1\xc3\xe3\x30\xff\xe5\x5d\x72\x01\x62\x89\xf0\xb6\xcc\xb0\xfb\x62\x17\x50\x9c\xf0\x16\x4a\x2f\x3d\x29\x9b\xb3\x6a\x9c\x10\x94\x3e\x7d\x40\x11\x05\x12\x93\xcb\x85\x5f\x7b\xaa\x51\xa2\x32\x4b\x29\x9a\xff\xb2\x50\x8e\x30\x85\x38\x2e\x21\x5e\xba\xe3\x44\x0c\xf3\x83\x8b\x1f\xf3\xc2\x7c\xbe\xec\xa8\x62\x5c\x51\xe0\x52\x2f\x0f\x16\xfa\xf2\x9d\x0d\x32\x5d\x7a\x5a\x8e\xa7\x3a\xfe\xec\x6e\x85\xbe\xea\x99\x45\xce\xf5\x4d\xcf\x39\xd3\x20\x16\x44\xd0\x34\x23\x17\xc3\x75\xd2\x7d\x77\x74\x13\xd8\x3c\x52\xec\xba\x13\x17\x48\xb5\x4f\x2e\xef\x9f\x37\x52\x82\xb1\x90\x6d\x33\x0a\x4e\x11\x5c\x23\x7f\xc7\x26\xb5\x27\x2e\x45\x89\xd0\x0f\x32\x65\xc6\xc4\x10\x91\xaa\x9b\xcc\x37\xde\x53\x38\x13\xc8\x8d\x3d\xb9\x53\xbf\x68\x55\x84\x17\x44\x73\x69\xe4\xde\xf3\xed\xc6\xd8\x99\x4c\xf7\x6c\x6a\xd5\xdb\xba\x2e\xbd\x33\xfa\xd3\x0a\x10\x9c\xf3\xf2\xe2\x2b\x94\x0b\xbd\x44\x5c\x64\x0a\xc1\x69\x72\x49\xfe\xea\x88\x4c\x29\x65\x25\x4c\x82\x3b\x6f\x67\xfc\x26\x4a\x1e\x24\x59\xf9\x2f\x0d\x53\xb5\xc8\x2e\xc7\x6f\xc3\xa7\xf0\xc1\xd9\xa8\x86\xb3\xf4\x50\x4c\x97\xba\xe4\x60\xa3\xb8\x1e\x09\x50\x53\x98\xa8\xf5\xd3\x4f\x6c\x19\xa3\x14\x06\x62\x17\x3d\xd0\x27\xd5\x33\x22\x69\x32\x75\xde\xc8\x78\x19\xf4\x20\x56\xe2\x19\x0b\xe9\xfc\xce\xe4\x32\xe8\x6a\x6f\x9b\x2e\xb4\x11\xdf\x98\x2e\xe8\x6e\x98\xda\x80\x8b\xa4\xdf\x50\xe0\x29\xe4\xb8\x38\x3c\x87\x52\x4f\x18\x8a\x54\xb6\x58\x84\x80\x33\xf8\xed\xc7\x1f\x57\xd8\x54\x82\x76\x30\xd6\x3e\x5f\x74\x76\x5a\x39\xf8\xef\xdb\x8c\x01\x5d\x1b\xe1\x24\x4b\x0d\xe3\xd9\x50\x4b\x6e\xb8\x0d\x76\x61\x67\x38\xa6\xe4\x8d\xe2\xab\x9b\x78\xc7\xb4\x14\x1c\xb7\xe1\x08\x53\xdf\xf3\x94\x77\x15\x7d\xab\x66\x50\x13\x31\x21\x43\xe8\x4f\xdd\xb3\x46\xcd\xcd\xa9\x84\x76\x98\xd9\xae\xd6\x91\xb2\xc5\x24\xc7\x63\x5a\xde\x4d\x3e\x3d\xe6\x59\x8e\xc8\xd9\xe9\x7e\x23\xbe\x11\xc3\x70\xfe\x5c\xde\x9f\x72\x4e\xf9\x15\xe0\x75\x01\xbc\xd1\xda\xaa\xba\xa0\x11\x93\xea\x1c\x05\xf5\xa7\xb5\xf3\x9a\x0d\x38\x1b\x10\x2b\x96\xef\x4f\x8d\x9c\x39\x5e\xd9\x52\x8c\x11\x27\x79\x18\x66\x9a\x0c\x69\x35\x18\xa8\x0c\x25\xc4\x08\x45\xc9\x62\x92\x72\x58\xca\xfc\xdd\x60\xfe\x9b\x34\x0a\x59\x1c\x1c\x7d\xf8\x4e\x8f\x44\x9a\xe7\xb2\x1c\xde\x8d\xfd\x59\x29\xac\x11\xd3\x23\x5d\x42\x36\xf3\x6c\x8b\x04\x6b\xdf\xe3\x61\xd2\x23\x0d\xae\x32\xff\x3a\xfc\x32\xe5\xc2\x35\x50\x05\x2b\xa4\xe7\xd4\x6d\xad\x32\x00\x50\xe1\x00\xb8\xff\xab\xdd\xa2\x9c\x43\x96\x8e\x5c\xee\x49\xa6\x15\x2f\x56\xce\x01\x6a\xa2\x78\x85\xa6\x6f\x5a\xa4\x78\xdc\x57\x6c\x93\xf6\x62\xe1\x20\x96\xf9\xce\xb8\xa8\x4a\xaf\xa1\xfa\xf1\x42\xab\x51\x97\xb9\x64\x63\x06\x68\x38\x94\x44\x63\x8f\x24\xe2\x3e\x65\x0b\xe8\xf4\x1b\xbb\x25\xe6\x2f\xf4\xab\xe2\xc4\xfe\xd2\xac\xf8\xb9\x82\x9d\x48\x29\x54\x9e\x3e\x2d\xc9\x15\x75\xe2\x70\xe1\x39\x14\x55\x37\xbc\xac\x86\x29\x21\x8b\x54\xa8\xe7\x84\xf6\x55\xa9\x1f\xed\x90\x4a\xe3\xe0\x7f\x04\x26\x66\x6a\xa2\xdb\x22\x79\x34\xd6\xb5\x21\x6c\x82\xc2\x2e\xa3\x56\x91\xb0\x4a\x1c\x18\xd3\x9f\xfe\xe0\xf1\xe4\x1b\xab\x19\xc4\x0d\x11\xf7\x78\xc8\x93\x39\x23\x01\xeb\x7a\xb4\x88\x52\xbf\x1e\xcb\x37\x70\x01\x02\x44\x53\xd7\x1e\xe5\xb0\xd4\x1c\xe8\x36\xa2\xd0\x9c\x05\x9c\x15\x72\xab\x8e\xaa\xae\x43\xab\x52\x05\xf5\x3b\x16\x3f\x92\x2e\xd9\xcc\xca\x7f\x74\xbb\x14\x41\xce\xbf\x64\x37\x2b\x82\x06\xcb\xc2\x0a\x9d\xbe\xeb\x93\x08\xd0\xef\xee\x84\xf4\x9d\x8e\x15\x31\x87\x5d\xe7\x56\x7e\x5b\x8e\xcb\x9c\xfb\x5e\x0a\x74\x82\xec\x6d\xa7\xd4\xc4\x16\xcf\x36\x25\x1d\xca\xa0\x77\xf8\xa1\x3d\xc7\xec\x75\x1c\x09\x31\x4b\x35\x4e\xbc\x48\xea\x68\x5d\xd7\xc4\xba\x6c\xaf\xbe\x2b\x06\xdf\xd6\x10\x6f\x0d\x98\xfd\x66\xd0\x91\xe4\x0b\xef\xc1\xcc\xc1\xbd\x30\xf0\x16\x0f\xcd\x75\xc7\x48\x4d\xa0\xed\x99\x88\x91\x3e\x38\x22\x6e\xcd\x4a\x99\x56\xd2\xc3\x4c\xdd\xb8\x2a\xf9\x17\x58\xa8\x84\xac\xd8\x2e\x3f\x3d\x63\x69\xfc\x28\x3a\x3a\xc0\xcc\xf4\xf3\x4f\xc7\xdb\xb9\x8c\x2d\x0b\x07\x7d\x9a\x44\x4d\x12\xea\xd8\xce\x76\x88\x04\xcf\xf7\xa7\x8a\xeb\x94\xa9\x36\x43\x05\x4e\x97\x0d\x5f\x81\x59\x48\xde\x89\xb4\x50\x25\x7c\x25\x0b\x4a\xfb\xa7\xb3\xe7\x87\xc2\xd3\xb9\xc1\x31\x28\x08\xd7\x9a\x81\x5c\x17\x7c\xfa\x83\xd7\xb6\x7a\x82\x94\xf0\xcf\x40\xb0\x15\x7e\xa8\x1f\xf7\xf0\xae\x66\x2e\x12\xd6\x1e\xd5\x27\xf9\xf1\xb6\x1c\x11\x2b\xea\x19\xce\xdb\x9c\x2c\x74\x4b\xc8\x2c\x30\x44\x80\xfd\xdf\x27\x3d\xb4\x49\x0b\x93\x57\xae\x49\x43\x9f\x8d\x37\x0c\xfe\xc2\x8b\x9e\x15\xd4\x3e\x30\xa2\x82\xdf\xf7\xa9\xd8\x1c\x23\xf8\xbe\x54\x2c\x66\x97\xbc\x15\x5f\x11\x05\xcc\x2c\x03\x31\xa8\x4a\x67\xb6\xf3\x7d\x32\x07\x22\xaa\xe7\xae\x4d\x7a\x5d\x47\x6a\x88\x29\xf5\x0a\xd5\xf4\x7f\x6d\x8c\x2a\x99\x1a\x09\xee\x9b\x8e\xb7\xe3\x93\x07\x02\x54\x85\x70\x2b\xf3\xd0\xa6\xe4\x93\x37\x71\xb1\x98\x08\xd5\xfb\x87\x77\x86\x89\x07\xea\x41\xc8\xc6\xd2\x41\x4a\xf0\x72\xa1\x12\xde\x8d\xa3\xcf\xa8\xee\x4e\x20\x2d\xb4\x81\xac\x95\xfe\x8e\xc2\x69\x0d\x2a\xe9\x58\x18\x98\x6d\x57\xe2\x92\x40\xd1\x13\x7e\xf3\x0b\x9f\x08\x96\x14\xb8\xd0\x05\x1f\xe3\x91\x6e\xfe\x95\x39\xae\x8b\xb4\x32\xfc\x29\x67\xdf\xaa\x1b\x11\x05\x1d\x68\x18\xb1\xb3\x70\x97\x52\x5c\x1a\xa8\x16\xf7\x1c\xfd\x99\x43\xcb\xe2\x29\x2e\xc8\xbe\x6a\xb8\x50\x47\x4c\xb0\x3f\x54\xb2\xd9\x90\x6b\x98\x98\x1b\xa6\x44\xdd\xd4\xb7\xce\x2a\xe5\x00\xd5\x84\x42\x37\x75\xad\x12\x8f\x57\x04\x09\xb9\xf8\xe6\xcd\xb1\xa6\x85\x92\xa0\x15\xa5\xbb\xa4\xe8\x2c\x8f\x98\xe0\x4f\xea\x7f\xaf\x35\x2e\xfd\x2b\x94\x30\xd9\xab\xf3\xa5\x27\x15\xed\x6e\x15\x33\x97\x0f\x6a\xfa\xd3\xef\x1c\x1e\x25\x03\xeb\x65\xee\x27\x5f\x19\x16\xb5\x31\x55\x10\x1b\x46\x18\xfd\x23\x52\x1f\xe1\x59\xc0\x38\xf2\x6f\x6d\xbf\x40\x5c\xc1\xd8\x86\x7e\xe0\x33\xcd\x17\x49\x07\x23\xe7\x65\x55\x50\x18\xe7\xf5\x97\x62\x7c\xb6\x4e\x9f\x06\xe0\xd0\xc6\xe4\x22\xd1\x71\x91\x68\x24\x34\xc6\xf8\x53\x63\xb2\x45\x72\x6b\x94\x7f\xf6\xcf\x9d\x55\xd1\x23\xa8\x11\xf8\x50\xeb\xd1\xdd\xc9\x49\x9d\x83\x2d\x04\x17\x52\x1d\x9e\xd0\xe3\x36\x49\x43\xdd\x0a\x65\xc8\xd2\x3d\x50\x8e\x65\xf6\x1e\x94\xbc\x51\x11\x0f\x6e\x77\x3d\x20\x6b\x67\xf0\x0e\x05\x7c\x83\x30\xc6\xf0\xa2\xcd\x0e\x31\xe5\xd0\x8b\x2a\x32\xb9\x49\xc4\x17\x5a\x2f\x51\x3c\x11\x73\x0e\x4e\x1c\xf4\x53\x9e\xfe\xbf\x3c\xe9\x39\x32\xfd\xc3\x6e\xc5\xe5\xc4\x83\xe4\x48\xa0\xef\xcc\x1d\x2c\x0d\x6e\x30\x62\x3a\xbc\x9f\x7f\x5a\xa3\x2c\x30\x02\x56\x11\x9c\x8f\xef\x1d\x48\x3e\x27\x6e\xfa\x34\x90\x73\xe0\x23\xe3\x64\x26\x77\xc9\x08\x3d\x68\xf7\xf7\x25\x4f\xbe\x8e\xb0\x4d\x48\x55\xa4\xa0\x17\x48\xf9\x2b\x52\x56\x09\x6f\x11\xb7\x49\xe6\xd6\xf0\xf8\x45\x57\x2c\x12\xff\x57\x63\xc7\x8a\xf7\xc1\x47\xb3\xf5\xa1\xbc\x9b\xe3\x6b\x5d\xc7\x4e\xd0\x21\xa4\xce\x7f\x38\x79\xa7\x08\x7f\x1b\x8e\x2a\xc3\x07\x5a\xb0\x64\x9c\xda\x4c\xea\xc4\x95\x23\xf5\xd3\xc7\x24\x3a\x89\x46\x98\xe6\x91\xba\xa6\x30\x35\x6a\xbb\x70\xdd\xc5\x55\x9e\x44\x9c\x6d\x5c\xaa\xcc\x32\x82\xb2\x9e\x87\x63\xc4\x13\x93\x71\xef\x4b\xcc\x5d\xc4\x72\xc4\x34\x39\x04\x7d\xee\x35\xc9\x3d\x89\x32\x46\x38\xcf\x2f\x5b\x5e\x10\xaf\x4c\xbc\x06\x69\x98\x15\x84\x3c\x25\x3d\x7b\x03\x3f\xeb\x3a\xda\xc3\xc1\x5a\x6a\x7d\x63\xf2\x3d\x5c\x51\x89\x22\x80\x67\xaa\x36\x0d\xd0\x40\xe6\xf2\xfe\xda\x27\x9a\xd5\xc6\x02\x33\x97\x77\x66\xe9\xdc\x87\x22\x54\x50\x43\xac\x18\x7c\xe1\xf8\xc7\xf1\xe6\xef\x11\x5e\xbe\xa9\xec\x8a\x81\xf3\xea\x9d\x29\x89\x69\x8f\xfd\x49\x0c\x00\x4c\x85\x2a\x00\x41\x36\x03\x24\x46\xcd\x52\xde\x8b\x14\x13\x1d\x46\x7e\x0f\x59\x5d\x97\xb4\x5d\x62\x9e\x15\x54\x49\x62\xc7\x97\x6f\xe7\x93\xc8\xe5\x2b\xe6\x2c\x59\x90\x5f\x36\x3f\x44\x2f\x4f\x9f\x0a\xb3\x94\x1c\x6a\x56\xb1\x05\xf1\x48\xe9\xcf\x74\x46\xb3\x2f\xc3\x8b\x3f\xa8\x7f\xfa\xfe\x31\xca\x8d\x41\x84\xf8\x64\xd2\x3b\xaa\xd9\x38\xd2\x89\x57\x09\x5d\x0d\x3e\x2f\x71\x8c\x6c\xaa\x95\xa1\x92\x4d\xff\xe7\x16\x65\x3e\x08\x80\x2c\x08\x59\x39\xcb\x33\x73\xd9\xee\x46\xf1\xf1\x5c\x6c\x9a\x58\x73\x3d\xc4\x63\xe3\x9e\x3a\xd4\x28\x03\xa7\xa1\x5b\x9c\x7f\x57\x51\x05\x71\x5d\xe4\x8a\xd4\xb4\xec\xe5\xd7\x2b\x94\x5b\x0a\x93\xf7\x87\xf6\xa8\xda\x24\xe6\x1a\x62\x97\x47\x67\xbb\xdb\x95\xfc\xd3\xaf\x9d\xb2\x84\x5a\xb0\xbc\xc7\xb6\xf2\xcf\xb8\x9c\x83\x18\xd1\xc3\x9a\xb0\x7b\x00\x66\x4e\x70\x1f\x9d\x19\xac\x16\xc1\x96\x86\x99\xe5\x4c\xa9\x71\xc5\x45\xab\x62\xda\xc5\x91\xc5\x1a\xd1\x85\x5d\xd3\xcf\x77\x26\x6f\x04\xca\x1d\xd8\xc4\xb9\x32\x67\xbb\x14\xde\x43\x4d\xc2\x61\xa8\xfe\xd4\xe6\xc5\x32\xed\x40\x0b\xa5\x5c\x4b\x97\xc4\xc7\x50\x70\xf9\x85\xc3\x02\xee\x97\xad\x18\x4c\x96\x4c\x8a\xc4\xcd\x93\xd9\x73\x54\xa2\x22\x83\x68\x18\x8e\x08\xbd\x31\xce\x4e\x16\x0c\xf6\xa1\x92\xaa\x42\x0b\x0e\x6c\xf8\x3c\x2f\xbd\xa6\xf0\xac\x09\x73\x85\x9d\x6b\x6a\xf4\x7b\x9c\xee\x76\x23\xc3\xa5\xa0\x23\x8c\xfb\x80\xd7\xaf\x14\xea\x37\x5a\xa9\xc4\x5f\xf7\xff\x28\x49\xbc\xa8\xe7\x9a\x94\x82\x6b\x41\xea\x4f\x93\x47\x4a\x1a\x57\x8b\xcb\x8b\x86\x28\xba\x65\xa4\xeb\x91\x16\xee\x91\xb6\xa8\x99\x45\xf7\x78\x75\xb3\xe3\xfd\x0a\x39\xb4\x87\x16\xc2\x25\xfe\xca\xf0\xb8\xca\x2f\x21\xbd\xcf\x90\x63\x63\xfd\xee\x21\xc9\x77\x1e\x3d\x66\x31\xb7\xfe\xdf\xa7\x64\x73\x1a\xf0\x54\xfc\x99\x94\xd5\xaf\xc3\x67\x17\x7b\x16\x1f\x6d\x10\x27\x6c\xe4\x16\x01\x5b\xf0\xa8\x4c\x62\xd3\x40\x4b\xe5\x77\x2b\x2e\x77\x3c\xf9\x2a\x02\x67\x76\x29\x6c\x63\x52\xb1\xcd\x88\x62\x5d\xde\x30\x46\xd9\xd3\xd4\xe6\xb0\xd4\xf9\x0b\x47\xca\x8a\x3a\x10\x33\x65\xb6\x3d\xac\x8e\x57\x58\x19\xbb\x11\x8a\x70\xc5\x61\x29\xfc\x20\x07\x23\xb1\xe1\xcd\xa2\x54\xa6\x14\x6a\xd4\x1f\x8d\x8f\x80\x3c\x4f\x33\xc4\x0d\xfa\x7b\x05\xe3\xac\x10\x07\x33\x54\x10\xde\x65\xfd\xd9\xcf\x2d\x49\x7a\x73\x96\xa8\xa9\x63\x6b\xc0\x4b\x9a\x3d\xa6\xaa\x37\xb9\x69\xd1\x4d\xb3\xc3\x87\x6f\x52\xe0\x22\xe6\xfd\x47\x87\xab\xae\xc1\x41\x85\x64\x0f\xf8\x63\x87\x8d\x4b\x7e\x42\x42\x6b\x61\x02\x33\xd7\x1d\x7f\xc4\x9d\xf2\x56\x18\x88\x00\x5d\x44\xe6\x1f\x9d\xd9\xad\xd0\x1c\x31\xaa\x88\xa8\xcf\xb8\xec\x99\xbc\x49\x89\xce\x0b\x2e\x65\x15\xf0\xb9\x71\x36\x47\x00\xf2\x55\xcc\x6c\xac\x95\x65\x72\xc7\x62\x05\xf0\x32\x31\x72\x10\x4c\x7d\xe3\xf1\xe6\xaa\x37\x92\x6b\xbb\x4a\xec\x90\xb0\x88\x67\x29\xfa\x40\xea\x85\x0a\xa8\xd4\xaf\x37\x8c\x90\xb4\x7d\x1c\xe1\x1e\xb7\x41\xca\xdf\x31\x09\x0e\x4e\x6f\x30\x0f\x7f\x52\x99\xd8\x8a\xc1\x0a\x40\x75\x3f\x6e\x0a\xad\xeb\xc1\x11\x8c\xc3\xaf\xdf\x1e\xdc\x20\xca\x69\x54\x29\x90\x92\x27\x0c\x9a\x5e\xbf\x3f\xfe\x05\x05\x4f\x33\x90\x70\xac\x4d\x2d\x3f\xa5\x84\xea\x58\x0e\x98\xe3\xbb\x22\x83\x6a\xe1\x85\xea\x07\x70\xca\x42\xf4\xf9\x27\xc5\xcd\x4b\xc4\xde\x8b\xfb\x7e\xcb\xce\xe8\x5c\x9b\x3a\x3d\x97\xcb\xfb\x4f\x4f\x8c\x8f\xb5\x42\x34\xaa\xc9\xde\x30\x48\x8a\x84\xa0\x5e\xc9\xe0\x1e\x16\xf3\x94\x5f\x5c\x62\x88\x08\x74\x28\x3b\xbe\x53\x42\xc0\x90\x53\x46\xae\x66\xe0\x1a\x54\x3f\xd9\xea\x31\x5e\xca\x58\x41\xdf\xce\x0f\xf2\x67\xdf\x19\x21\x11\x90\xc4\x24\x7d\x95\x12\xb7\x80\x1d\xc4\x92\x3e\xf5\x99\xaf\x75\x8e\x0e\x8f\x18\x1e\x38\x41\x81\x75\x71\xf2\xc9\xba\x54\x9b\x9a\x62\xec\x92\xfe\xcf\x91\x72\x8e\x3d\x20\x87\xc1\x6f\xfd\xab\x5d\xe3\x94\xeb\x01\xf5\xa1\x24\xc9\x05\x0f\x1e\x20\x3d\x43\xcc\x68\xff\xe5\x4e\x45\xb1\xec\xd9\xe0\x5f\x0c\xcd\xfc\x17\x36\xf1\x3d\x09\xe1\x07\xfc\x6e\x2f\xbf\xa2\x0a\xf1\x19\x29\xba\x8e\x98\xbe\x7c\xe5\x90\xaa\xdb\x29\x88\x56\xd6\x37\x37\xa9\x9e\xa9\xd8\xe1\xf5\x13\xdc\xb8\xfe\xb6\x6d\x8a\x6c\x0a\x96\x1a\x71\xc3\x76\x25\xad\x48\xdb\x40\xe4\xca\xc9\x6c\x23\x8b\x32\x4d\x9a\x58\x65\x62\x86\x0a\x90\xec\xe4\xe7\x47\xc9\x32\x4d\x81\xe6\x4d\x88\x6d\xfc\x8c\x04\xab\xda\x1a\x59\x97\xee\xe5\x62\x51\x13\xa4\xbf\x2d\x72\x23\xa8\x86\xb9\xff\xef\x43\x83\xa4\xc4\x3b\xd3\x36\x80\x75\xf8\xde\x3a\x49\x9f\xca\x20\x70\x5c\x68\xeb\x17\x1f\x54\xfc\xfe\x8c\xc8\xf6\xe4\x8e\x67\x15\x36\x89\xe9\x15\x78\x84\xba\xb8\x25\xca\x0f\xb5\xc8\xdd\x1a\xe1\x9e\x60\x39\x6a\xc1\x7a\xcc\xa6\xd5\xdc\x66\xac\x87\x59\xc5\xfe\x53\x2b\x2e\x51\x2f\x18\x6a\x25\xe0\x92\xc6\xf6\xba\x89\x30\xbc\x50\x3f\xd7\xa4\xf6\xbd\xc8\x35\xc2\x66\x25\x7b\xdd\xf6\x78\xe2\xd9\x4b\x59\x59\xa5\xf5\xf6\xcc\x4c\xd4\x87\x38\x24\x8f\x65\xe7\x28\x7c\x4f\x91\x91\x12\x3e\x8d\xec\x43\xbb\xe3\xff\x91\x9b\x93\x0a\xac\xb0\x49\xf1\x9c\x0b\x09\xa8\xbc\x26\xb3\x0f\xc4\x55\x57\xc5\x63\x15\x64\x05\x6d\x97\x3f\x6d\x48\xdc\xa4\x38\xa8\x2a\x59\xa4\xa6\x36\x9c\x1e\x2e\x9e\xa8\x66\x7a\xe0\x23\xf6\x4c\xf3\xa8\x98\x9b\x17\x66\x1a\xa5\x96\xbc\x11\xa3\xb7\xbc\x4f\xc4\x8c\x03\xda\x3d\x6f\x2a\x57\x07\x38\x9f\x25\xaf\x8e\xcc\x94\x87\x93\x6f\xc7\x03\xc1\xa1\xc8\x0c\xbd\x66\x8f\x32\xcc\xa4\xa1\xb0\x27\xb3\xed\x2d\x59\x8c\x8a\x1c\x17\x7c\x35\x53\x0f\xee\x0d\x53\xb3\x4d\x53\xe4\x9d\x1e\x30\xe3\x41\x49\x67\xeb\xd4\x8e\x4e\x18\x9f\x3f\x1d\x07\x15\x98\xa8\x40\xeb\x83\x4e\xff\x28\x79\xd4\xb8\xc2\x18\xbf\x3f\x3d\xa3\xa9\x8e\x12\xa4\x79\x8e\x13\x66\x70\x65\x96\x4b\x9a\x8f\x0a\xb2\x40\x3d\x10\x7c\x7d\x6d\xcf\x08\xa9\x7d\x84\x91\xd1\xea\xa2\xea\x28\x5a\x29\xa0\xd0\x22\x27\x4b\xdf\x95\x36\x2e\x65\x16\xd7\x43\xf2\xc3\xfa\x8d\xf7\x39\xab\xb6\xb3\x3b\x97\xf7\xef\x9d\xac\x40\x19\x0c\x95\x4a\x58\x0f\x79\x44\xcd\xca\x0a\xb7\x19\xd5\x79\xa2\x6d\x98\xd2\xb5\x64\x4d\x02\x15\x02\x47\xa6\x54\xdb\xb1\x64\xcf\x51\x35\x91\x5e\x21\x4c\x21\xf8\x5d\xb8\x39\x22\x5f\x54\x90\x66\xe4\xf2\x7e\xd3\xfd\xfc\x1c\x28\x22\x02\x3e\x4b\x3f\xdc\x1c\x79\x72\x7a\x76\x2e\xef\x0f\xbe\x5e\x7d\xa3\xa6\xce\xdd\x95\xba\xdf\x55\x6d\xf0\x42\x8f\xbd\xd4\xc5\xdd\xc9\x6f\x5d\x13\xb9\x35\xa5\x7f\x33\x7c\xa2\xf2\xd7\x93\x92\xe1\x46\xcc\x81\xa8\x3d\xba\x4e\x4f\x5e\x05\x8a\x7b\x60\xf0\xa3\x5a\x9f\x8e\xa0\xad\x12\x20\x61\x1d\x27\x94\xe6\x58\x03\x8b\x6e\x1d\xfe\x27\xe2\x84\xd3\xb0\x2f\x16\x94\xd6\x12\x57\x88\x85\xc2\x8b\x22\x7d\x99\x1f\xfd\xd8\xb6\x8e\x8e\xe0\x2b\x17\xde\x1f\x61\xf7\xa8\x20\x51\xf4\xd3\xfe\xb2\xe8\x9f\x3a\x6d\xa0\xa5\x5d\xf3\x6e\xb4\xe5\xb8\x0f\x23\x6c\xb9\xcf\x3f\x36\x42\x1a\xfd\x5f\x33\x35\x78\x46\xfb\x27\x36\x4b\x6f\xd1\x66\x58\x27\x1a\x30\xee\x82\x6f\xfe\xbf\xd5\x63\xa2\x55\xa6\xcb\x46\xce\x2f\xbf\x25\xa7\x7c\xf0\xc0\x3e\x9e\x30\xf2\x69\xc1\xfb\xe7\xc3\x0c\x58\x76\x6f\x7f\x12\x95\x18\xd7\x4c\x0b\x2a\xa2\xaf\x0c\x52\x3d\xde\x21\x73\x95\x77\x2a\x23\x77\x4a\x62\x29\xc3\x0b\x7e\x0a\x74\xc6\xeb\xd6\x5e\xaa\x6c\x78\x47\x63\x9e\xed\x99\x9c\xfb\x02\xbb\xec\xd2\x27\x95\x99\x9c\xc7\x34\x03\x39\xa1\x96\x30\xbd\xbf\x51\xf2\xf5\xf5\x58\x6f\x39\xf8\xc1\xbb\x24\xa9\x54\x81\x32\x48\x37\xf1\x4f\x0c\x56\x8d\x0a\x10\x5c\x2d\xf0\x11\xdf\x7a\x4e\x61\x9d\x78\x25\xcf\x71\xa9\xb2\xc8\x67\xf4\xc4\xe0\x07\x58\xc8\x32\x5a\x42\xa1\x9a\xf3\x37\x6d\x97\x4a\x20\x23\xab\x22\x56\x67\x6c\x97\xfa\x5c\x13\x2f\x7c\x6f\x36\x10\x63\xa8\x8f\x48\x35\xed\xdc\x95\xf1\x43\xba\x56\x5a\x09\xdf\x5c\x98\xfc\xd8\x06\xb5\xa5\xb0\xa3\xd4\xfb\xdc\x0f\xe8\x96\x5e\x46\x50\x9d\x8b\x51\xe6\xc7\xae\x94\x95\xd0\x56\x68\x23\x41\x53\x3f\x73\xa9\x94\x00\x23\x0d\x33\x60\x96\x61\x48\xaf\xaa\x4c\x5c\x97\x38\x80\xec\x4c\xda\x7c\x91\xd4\xf4\x69\x30\xef\x8b\x87\x9f\x2b\x4e\xd6\x9d\x2c\xe1\xe0\x54\x88\x45\x27\x49\xae\xfb\x22\xe3\x52\x7d\x36\xaf\x0e\x4e\x24\x8d\xb9\x8c\x14\x3c\x5e\xbc\x5d\x74\x34\xd6\x14\xd2\x5a\x7d\x34\x5b\x7a\xdf\xe0\x3a\xef\xbc\xa0\xf0\xe3\x0a\xf9\x6b\x7b\x14\x9e\x19\x73\x05\x09\x3a\x26\xf5\x14\x1b\x79\xed\x2e\x5c\x63\x45\x59\x94\xfe\x9f\x7d\x0d\xd2\xfb\x76\x3c\xc6\x4f\xf0\x61\xcf\x8a\x10\x55\x70\x94\x87\x0b\x6e\xcf\xe0\x16\xe5\x2d\xb9\xd8\x74\xda\xc4\x80\x24\x75\xc3\x46\x49\xbb\xc7\x88\xb8\xa1\x7e\xf9\x89\x52\x0a\x1b\x9e\x56\x56\x5a\xa5\x96\x97\x95\x79\x14\xb1\x30\x88\xbf\xcb\xb3\x38\xf0\x70\x83\x75\x4f\x95\x27\xbd\x86\x2b\x29\xf7\x2a\xff\x78\x0e\x71\x43\x1b\x9c\xcc\xd5\x9d\x52\x9b\x83\x8a\xd8\xc5\x8c\xa0\x5c\xde\xff\xe2\x90\x16\xf5\x12\x73\x19\xd1\x5c\x3e\xf1\x4e\x4d\xeb\x51\x99\xd8\xa6\x8b\xa2\xa9\xcf\x3a\x61\xd2\x46\xb9\x33\x0c\xa4\x5d\xde\x5f\x37\x35\x65\xb1\x7b\x9f\x3f\xe5\x58\xf2\xaf\x99\xda\x1e\xf6\xdc\x67\xe6\x73\x2c\x76\x5e\xaf\xcd\x78\xe3\x74\xfb\x4a\x99\x5a\x60\x73\xe7\xe3\x78\xcd\x7d\xa5\x59\xf2\x09\x41\xcc\x92\xc1\xf7\xcc\x53\xe3\x46\xc5\xe2\x84\xa8\x3e\x59\x34\x5e\x1d\xde\x38\x3c\x59\xc6\xef\xda\x28\xf9\x51\x81\xaf\x27\xf4\xd6\xfd\xa9\x97\x5a\x1b\xa5\x0f\x11\x85\x89\xf5\x67\xb2\x3d\xb1\x99\x8c\xe3\x15\x6c\x8a\xeb\x6d\x29\xd2\x07\xb7\x2b\xe4\xec\x3e\xd2\x97\x10\x15\x64\x3b\xa5\xd2\xd8\x66\x30\x19\x1a\xd9\xda\x28\xa1\xc5\x1a\xe4\x0c\xc0\x6a\xbc\xf6\x4e\x09\x35\x29\x13\x2e\x93\x48\x0d\x3f\xa7\x3a\x1d\x04\x8f\x9b\xd7\xe2\xa9\xa1\x0f\x41\x8b\x17\x7c\x1d\x30\x40\xa8\x2c\xfd\x95\x8f\xf1\x53\xe8\x46\x54\x65\xc4\x94\x06\xf0\xfe\x23\xcf\x2b\xae\x46\xa4\x1a\x87\x6d\xac\xdc\x1b\xcf\x39\x2b\x09\xcf\xbb\xec\x44\xc9\x74\x8f\xfb\x03\x06\xcf\xe8\x17\x55\xc5\xe8\x85\xb2\x4a\x64\x37\xfb\xcd\x23\x8d\xe1\x47\x6b\x4d\x70\x0b\x66\x1f\x6e\x96\xa0\x4f\x4b\x27\xd0\xc3\x09\x80\x62\x8b\x11\x05\x7f\x71\x76\xd3\x33\x6f\x49\x8e\x8e\x55\x68\x21\xfc\x3f\x48\x95\x57\x8d\x60\x53\x34\xbc\xe9\xa5\xaf\x25\x17\x7b\x19\x5b\xbd\x28\x36\x35\xb9\xa8\x1a\xbb\x96\x63\xd9\x31\xe7\xf0\xfb\x1c\x79\x5e\xb1\x30\x7f\xcb\x9c\xd0\xa3\x2d\xfd\xc0\x7a\x95\xd3\x8d\x82\x13\x42\x70\x45\xf6\x9e\xe3\xcf\x78\x05\xc3\x8e\x66\xc8\x34\xd1\xd4\xdf\xaf\x8a\x4f\x95\x02\xb6\x70\x11\xb8\x8b\xa9\x37\x6f\x87\x09\x75\x6e\x21\xae\x99\xd8\x75\x73\x4b\x91\x56\x0e\xee\x10\x75\x51\xbd\x30\x7e\x84\xb8\xda\x2b\x91\xd0\x91\x9e\x09\xb9\x32\xb0\xb1\x61\xe9\x7e\x76\xfb\xff\x9d\x26\xa5\x0e\x95\xf7\xbf\x9f\xac\x9d\x4c\x2a\xb6\xac\x3a\x64\xfb\xd1\x7d\x89\x50\x2e\xcb\x01\x67\x82\xd4\xc3\xeb\xf8\xf9\xb9\x04\xbb\x57\x57\x09\x73\x3d\xfe\x11\xde\x98\x9e\x2c\xb5\x0c\xaf\x82\xac\x1c\xd4\x65\x4e\x68\x6c\xfa\x42\xa3\xa8\x1b\x19\xb2\x4a\x22\x35\x36\x78\x80\xf3\xb7\x4b\x2a\x30\x8f\x55\x49\x95\x23\x6f\xd5\xc1\x8d\x89\xa3\x14\x33\x51\xa6\x9c\x98\x79\xa1\xb4\x6f\x88\x29\x75\x30\x99\xff\x78\x27\x4c\xf3\x00\xa3\xf0\x9b\xb7\x49\x16\xef\x7c\x24\xf2\x49\xbc\x80\xf9\xbc\x09\xe6\x4c\xfe\x48\x69\xa4\x88\x01\xa8\xcd\xfe\xcd\xfd\x8a\x5e\x0e\x95\xb0\x23\x22\x0a\x3f\x5a\x91\xdc\xf0\x9d\x3c\x9d\xdd\x46\x4c\xb4\x31\x97\x28\x34\xe0\x0e\xd0\x86\x05\x9f\xe0\xc4\x92\x86\xf0\x8b\x96\x65\x0b\x69\xb0\x7f\xbb\xe4\x34\x0e\x9e\xbf\x66\x6f\x50\xae\x5c\xd7\xaa\x32\x95\x88\xa5\x11\x5b\xb4\x78\xfd\xa9\x47\xde\x10\x47\x33\xf2\x1c\x6a\x62\xaf\x12\x6c\xc7\xf7\x5e\x8c\x3b\xbc\x1e\x5c\x2c\x4a\x2b\x7c\xde\x6b\x17\x4b\x70\x63\xd9\xa2\x35\x1e\x1b\x11\x0e\xf9\x72\x1f\xc9\xec\x26\x61\x18\x17\xfc\xa2\xef\x8e\x15\xcb\xdc\xe9\x2d\x21\x4b\x3e\x4a\x7e\x73\x7b\xdc\xe6\x14\x19\x0e\x1e\xfb\xe5\x0a\x8b\x13\x1c\xbf\xc3\x0a\xac\xeb\x7d\x29\x4e\x94\xc7\x61\x85\x9b\xfe\x10\x37\x1a\xcf\xdd\x64\xe9\x04\x0d\x40\xfa\x3b\x78\x54\xcd\xe3\x0e\xdd\x24\xc3\xdb\xe5\xc3\xa7\x25\xe4\x4f\xe3\x02\xb6\xae\xa7\xd4\x62\x1d\x5c\xbd\x42\x18\x63\xe8\x62\xa9\xb2\x6e\x9b\xc6\xb3\xcf\x16\x34\xc8\xc5\xa6\xc8\x98\x4b\xff\xd5\xe3\xa3\xd4\xe2\x26\xef\x3f\xf3\x91\x48\x91\x62\x8c\x9b\xe9\x06\x3f\xe0\x5a\x36\x42\x9a\xbc\xf1\x96\xc6\x7e\x57\xc1\xbd\x2d\x8d\xe0\x50\x16\x9f\xdd\xf4\xf4\x48\xb1\xdb\xe1\x24\xe3\x73\xfd\xf1\xeb\x94\xb1\x80\x6b\x98\xd8\xc5\x1c\xf1\xee\x7f\x2c\xb9\x97\x2b\x45\x78\x0c\xf5\x55\x53\xbf\x25\x7c\x55\xb0\x05\x7a\xda\x7b\x66\xc6\xaa\x38\x46\x72\x79\x7f\xfa\x8a\xb8\x22\xf3\x2c\x2e\xfb\xe5\xe5\xc4\xa7\x9e\x92\x63\x21\x34\x97\x0a\x4a\xdb\x91\xc1\xa3\x65\x16\x5c\xf4\xf5\x47\xb6\x47\x1b\xae\x82\x7a\x82\x05\x7c\x58\xe8\x24\x30\xb3\x24\xb6\x7a\x7f\x7a\xd5\x39\xa5\x87\xf5\x58\x05\x3b\xa1\x87\x5b\xea\x0f\x2b\xf8\x67\x76\x3d\xd8\xb7\xa9\x6d\x4b\xe2\x55\x53\x42\xc8\x94\xd6\x74\xe3\x24\x35\x0c\xcd\xc2\x66\x88\xca\xa4\x4b\xb3\x63\x54\x06\xcc\xed\xcc\xd0\xde\x51\x14\x0b\xb7\x9f\x53\x0d\x50\x42\xcb\x94\x70\x1c\xfb\xe8\x1a\x11\xc9\x8d\x8b\xd0\x29\x67\xaa\xb7\x8f\x97\x8a\x05\xad\x4c\x79\x51\x92\x5c\xac\x99\x93\x97\xa9\x5b\xd7\xa1\xc1\x33\xa0\xc5\x5c\x0d\x44\xd1\xc0\x89\x30\x65\xa3\x43\x60\xe9\x09\xd4\x76\xe1\x16\x05\xdc\xf1\x1c\xc9\x1e\x39\x3b\xe5\x88\x12\xf1\xb9\x06\x02\x01\x34\xa1\x8a\xfe\xf4\x95\x8a\x94\x80\xb8\x5c\x7f\xce\x31\x8b\x5d\xbb\xeb\x80\x3d\x4b\x17\xc9\xc3\x2b\xce\x0d\xa4\x61\x12\x7d\x58\xc6\xbe\x53\x19\xfd\x3a\x26\x02\xea\x4c\x74\x20\xec\x79\x56\x76\x89\x74\x91\x29\x1c\x9f\xef\xe6\xe9\xce\x39\x3d\x28\x4a\x43\x03\x1c\x38\x69\x37\xad\x4f\xd6\xc7\xfc\x7a\x48\xa0\xb6\xa9\x57\x37\x72\x00\x64\xce\xbc\x60\x39\xdc\xa9\x30\x94\x1d\xea\x59\xba\xd8\xd1\xd9\xd5\x57\xc6\x38\x8a\x88\xc5\x8a\xb8\x70\x77\x0c\x97\x27\x52\x96\xc3\x1b\xd4\xd5\x0f\x45\x3b\x02\xd5\x82\x72\x79\x43\x36\xde\x11\x3a\x01\x1f\x57\x2e\xa4\x48\x1f\x69\x56\xc1\x3a\x47\xc3\x96\x1e\x09\xc4\x2e\xdc\x39\x22\xa1\x88\x09\x3e\xad\xa5\x60\x5a\x0c\x87\x3e\x9b\xd9\xe2\x6a\xe1\x23\x22\x26\x0c\xa1\x31\xec\xfc\x65\x6a\x82\x2c\x62\x95\xb0\x57\xbe\x58\x72\x27\x67\xc4\xb6\x43\x1c\xf7\xe4\xf3\xbc\x81\x97\xcd\x92\x5e\x94\xcc\xe9\x6d\x0c\x61\x34\x3c\xad\xac\x2f\xa2\x0c\xd9\x2c\xe9\x93\xd2\xfd\x46\x8b\xfa\x70\x99\x86\x1d\x6e\x2c\xe6\x97\x9f\x55\x6e\xb6\x19\xdd\xd3\x61\x86\xfc\x65\x26\xb5\x1e\xb4\x52\xf1\x5c\x21\xb2\xf8\xa7\x93\xaa\x08\x1c\x9b\x7a\x98\xd9\xb4\xab\x20\x33\x4c\x7b\x10\x17\x5a\xf8\x4f\x2b\x39\x7e\xdc\xea\x15\x86\x32\xdf\x79\x3e\x39\x5d\x13\x29\x22\x03\x94\x3b\xa9\xbb\xde\x52\x12\xa3\x90\x69\x4e\x69\x93\x5a\xa8\xcf\x19\x92\x54\x8e\x31\x52\xe5\xb7\xdd\x33\xc7\x9a\x64\x86\x38\x62\x7a\x68\x48\x34\x3f\x06\x44\x2a\x48\xcb\xe5\x7d\x4f\x97\x8c\x0f\xa9\x07\x73\xc7\x54\xfb\x8b\xf1\xa1\x53\xf0\x1c\x22\xdc\x04\x23\x68\xea\x85\x03\x75\xe4\x08\xde\x06\x07\x3b\x14\x84\x8c\xdb\x9f\x8b\xdf\x9b\xd5\x16\x0f\x6d\xbf\xd7\x15\x0d\x83\x3d\xcb\x50\x3d\x18\xd6\xdc\x17\x6f\xbd\x5e\xe4\x78\x06\x62\xc1\x89\x9f\xf9\xc2\x53\xa3\x24\x05\xac\xc5\x2d\x65\xd2\xeb\x95\xe1\x85\x49\x69\x99\x08\xe7\xf3\xfe\x34\xde\xc1\xa9\x8b\x90\x79\xed\x8f\x6b\x56\xd6\x84\x8d\x61\xe2\xc0\xdb\xbd\x1b\x5b\x54\xc6\x92\xa5\x87\x5e\x3f\x99\x31\x7a\xb3\x84\xaa\x42\x0e\x56\xfc\x20\x9e\x90\xd8\xae\x1e\x66\x6e\x64\xfa\x7c\x73\x1f\xff\xf5\x1d\x53\x73\x60\x60\x72\xe6\x22\x19\x5a\x32\x93\x1e\x4e\xe7\xcd\x56\xd5\xa7\xc8\x0d\x4e\xf1\x88\x8d\xb2\x47\x89\x6d\x74\x28\x61\x38\xf2\x00\xdb\x62\x08\x46\x3e\x2e\x11\x27\x8c\x8d\xf9\x74\x9b\x94\x39\x64\x50\x13\x3b\x08\x06\x86\x3f\xd9\x38\x90\xc5\xb8\x98\x1f\x9d\x8e\x01\xc5\x5e\x5a\x01\x90\x6e\x52\x72\xbb\x74\x76\x85\x9c\x8a\xbd\xbe\x42\xa9\xe5\x1e\x52\x58\x8f\x2e\x9e\xce\xd9\x0d\x71\x59\xc5\x67\xd7\xc1\x8f\x9c\xd4\xae\x66\x5c\xd2\x4a\xf8\x87\xbe\xec\x27\x7f\x5d\x85\x5a\x65\x2e\xa4\xed\x7e\x72\x8c\xac\xa4\x92\x08\x87\xd7\x3d\x26\x85\x2b\x52\x47\x03\x11\x7e\xb0\xd8\x7f\xbe\x20\x5a\xec\x57\xf0\xd9\xdf\xe7\x5f\x56\xbd\xc0\x34\x86\x43\x3b\xdc\xd4\x57\x15\x42\x4a\x91\xf2\x72\xd8\x7f\x66\xb1\xaa\x97\xc1\x4c\x23\x4e\x64\x48\x4f\x8f\xc7\xfa\x56\x12\x73\x21\xfd\x6d\x0f\xc7\x03\xfa\xae\x1c\x18\xa2\x97\x4f\x24\xaf\xd5\x5e\x6c\xba\x0e\x49\xe6\xb8\xfb\x2f\x3d\x9e\xbc\xa4\x28\x31\xe1\x6f\x2e\x52\x2a\x50\xfb\xd4\x87\x6f\x25\x27\x15\xbd\xd4\x71\x48\x31\x29\xf2\xdc\xa8\x80\x3d\xc8\x71\x19\xb5\x90\x27\xa4\xc9\x0f\x48\x4f\x54\xeb\x0d\xee\x48\x1b\xf2\x89\xfa\xd3\x97\x0e\x6d\x92\x3a\xbf\xe0\xe4\x32\x90\xc5\x39\x62\x0d\xaa\x0b\x07\xa9\x8a\xa0\x15\x7f\xd7\x10\x7e\x17\xcc\xb1\x4a\x30\x1c\x0a\x57\xf7\xfd\x4f\x44\xfd\xaa\x69\x4a\x4f\xe7\xaf\x5f\xbb\x20\x7e\x6a\x50\xfe\x1e\x99\xa4\x58\xbe\x1a\x0c\x23\xd7\x09\x53\xa6\x9a\x4e\xc5\xa5\xba\xcd\x20\xae\xfd\x37\xc7\x54\x87\x5e\xca\x22\x24\x20\xd3\x74\x28\x59\x62\xf2\x19\x1c\xa9\x73\x29\xfd\xe7\xbe\x71\x4a\xad\x43\x35\xac\x07\x4d\x72\x04\x2a\x64\xa5\x80\xb1\x02\xf2\x4c\x57\x87\x3a\xc5\x6b\x49\x92\x45\x3b\xa7\x09\xf6\xc9\x90\xb7\xf8\x5d\x36\x8f\x7a\x96\x06\x78\xc9\xf8\x99\x11\xa2\xcd\x0a\x09\x2b\xaa\x61\xab\x24\x3a\x0f\x2a\x14\x10\xb0\xd4\xb2\xcb\x57\xc4\xa6\xc8\x53\x67\x04\x5f\x19\xd7\x3d\x32\xbe\xd2\x43\x41\xcc\xe1\xa6\xe4\x87\xaf\x62\xa6\xa8\x10\xd3\xf3\x9a\x9b\x64\xc8\x52\xa7\x66\x50\x69\x05\xe7\xe2\x43\x93\xd5\x33\xb4\x54\x8a\xac\x68\xb3\x9f\x3b\xc6\x69\x16\xb7\xde\xb0\x60\x4e\x5d\x59\x3e\x7a\x77\xb2\x2a\xc8\x99\xe1\x48\x29\x75\xd5\x86\x18\xec\xb0\xc8\x1a\xde\xf7\xee\xd8\x21\x45\x13\xd7\x82\x8b\xd0\x9d\x9c\xdc\x55\x16\x66\x25\x6a\x63\x97\x51\x13\xec\x60\x92\x97\xe1\x95\xb1\x47\x34\x46\x60\x1c\xd4\xd2\x28\x6b\x2d\x68\x19\xa0\xd0\x65\xca\xe0\xb9\x8a\x88\x09\xdc\x16\xbe\xc7\xbf\x70\x4e\x62\xdf\x22\xa6\xc9\x89\xce\x3d\xfc\x95\x95\x82\x45\x07\x50\x7c\xad\xa0\xf2\x17\x58\x19\xeb\x61\x19\xf3\x8c\x29\x79\xe5\x87\xa4\x08\x98\x9f\xcc\x97\xc2\x09\x09\xcf\x2c\x4f\x5b\x5b\x2f\x8e\xbe\xc8\x13\x46\x89\x0c\x05\xa6\x67\xb5\x4a\x51\x1d\x26\x15\xac\x7d\xff\xec\x0b\x8a\xf6\xd9\xf0\x22\xcb\xa1\xd4\xcf\x07\x29\x09\x32\x08\x47\xae\x78\xe1\xcf\xfd\x97\x26\x5e\xb6\xce\xf7\x5c\x46\xbd\x35\xd2\x77\x16\x6e\x1c\x29\xd1\xd7\x6c\x0c\x31\xa0\x4f\xbe\x21\x59\x41\x30\xac\x83\xcb\xc0\x3b\x0b\x95\x78\x0c\xea\x80\xbb\x26\x71\x04\xff\x6e\xfd\xe0\xe4\xa9\xd6\x43\xac\x92\x63\x60\xab\x24\x57\x2b\xe9\x4d\x43\xe2\x0c\xce\xa0\x4c\xed\xcf\x7c\x7e\xa1\x1c\x6c\x08\x96\x4b\xbc\x14\x5c\x77\x28\x6e\x55\x21\xad\x05\xea\xdc\xbf\xda\xde\x34\x40\x55\x09\xdf\xfa\x7d\xb1\x2e\x09\x31\x1e\xb7\x6f\x5c\x1d\xf2\x34\x84\xa7\x44\x95\x53\x61\x7e\x7b\x54\x11\x42\x33\x37\xa4\x0c\xa6\x4b\x5b\x94\x12\xdd\x40\x2c\x1c\x69\x67\xbe\x70\x77\xf2\x42\xf0\x2c\x03\xb1\x8a\x74\xf5\x55\x5e\x55\x3d\x9f\x78\x38\x0c\x67\x47\x7c\x7c\xa5\x1c\x29\xe1\xc2\x7c\x13\x60\xe9\xf9\xcf\x0a\xa6\x2f\x0c\x44\x01\xb8\x58\x19\x1b\xad\xd2\x6a\x2e\xef\x2f\xb4\x93\x8f\xba\x40\xf5\x1e\x8f\xd1\x2a\x4a\x30\x8f\x46\xcc\x56\x00\x52\x54\x89\xf5\x91\xee\x01\xc5\xcc\x98\x96\x14\x7e\x94\x7f\xfc\x5d\xd5\xb2\x31\x2c\xed\x52\x8f\x9f\x95\xbc\xdf\x19\x2d\x06\xad\x4b\xf0\x27\x37\xbc\xa0\x18\xb4\x40\x94\x40\x42\xb5\x92\x5e\xf9\x5c\xf2\xd6\xaa\xa2\x1e\x1b\xf5\x62\x9c\x00\x9b\xb7\x1e\x96\x7d\x6f\x6b\xf0\x7a\xff\x7b\x18\xef\xc3\x2b\x9e\xe9\x0a\xdf\x10\x28\x75\xd3\x77\xa7\x15\xfb\xe2\x69\xb9\x0a\xb1\x3c\x57\x70\xd9\x32\xab\xb6\x48\x0d\x93\x57\xe1\xe9\xf2\x29\x73\xfa\xc5\xd2\x29\xa0\x63\x13\x73\xd2\xb7\xf8\xeb\x5b\x4f\x0d\x8b\x54\xb8\x41\xcd\x74\xe1\x06\x45\x12\x40\xb9\x26\x3e\x83\x62\x82\x55\x89\xa1\x0a\xf7\xd3\x2d\xac\x8e\xab\xe7\x81\xc6\x40\xa9\x39\xe6\x45\xe1\x49\x56\xad\xf3\xaa\xcb\xfc\xfd\x64\xf9\xf9\x62\x0d\x73\x5f\xce\x1f\x1e\xe0\x6b\x38\x5f\xc0\x4c\xb2\x1a\xcf\xfc\xfd\x4e\x55\x72\x52\x08\xde\x48\x68\x93\x4e\x36\xc9\x11\x55\x22\x99\xe1\x55\x8e\x13\x97\x90\x55\x0a\x3a\xad\xe0\x63\xfb\xd7\xae\x8a\xb1\x46\x04\x9b\xf3\xc8\xfb\x17\x4b\x3a\x5d\xad\xec\x80\xe9\x4c\x7c\x6d\x39\x4b\x63\x12\x4b\x01\x9b\x6e\xce\x85\x44\x0e\x21\x28\x4c\x9d\xda\x78\x81\xa8\x4a\x1d\x87\x43\xa5\x9b\x86\xa9\x49\x7a\x00\xb4\x86\x72\xcf\xe7\xdf\x3c\x3f\xfc\x98\xd3\x83\x7e\xcc\x4a\xac\x33\xc7\xc6\x65\xa8\x3b\x3f\x5e\x32\x52\x1c\xd3\x48\x23\xd4\xe3\x9e\x6f\x47\xa4\xd3\x13\x9b\xa4\x44\xf8\x18\x39\x73\xd7\xa2\xd8\x33\x13\x46\x81\xc9\x67\xbd\xee\xe4\xa5\x4a\xc1\x41\x78\x1c\x8f\x1e\x99\x58\xa4\x86\xcf\x8d\xcb\x14\x14\xec\xc0\xf5\xf3\x95\x9a\xa3\xb7\x52\xa0\x66\x98\xa9\x30\xe7\x3d\xa9\x63\xd5\x58\xd0\x13\x71\x7f\xf6\xdf\x57\xa1\x1a\x36\xb1\x95\x9b\x1e\x2f\xb5\xcb\x25\x4c\x0e\xe9\x15\xc2\x3d\xa5\xfe\x2c\xa9\x6e\x74\x12\xc2\x9b\xa9\x33\xb7\x4b\xa1\x7c\x35\xd0\x4f\xc5\xd7\xd7\x6b\xc3\xa5\xfe\xd5\xc0\xd5\xd0\x5e\x3c\x7d\x60\x27\x5f\x39\x36\xea\xcd\xd9\x98\xe5\xaa\x04\xd7\x60\x26\xdb\xc2\xbf\x3e\x97\x79\x8e\x83\xcd\x08\xc6\xb4\x9e\x4c\x1e\x6e\xdc\xa6\x0c\xf1\x34\xd7\xe0\x1f\x6c\x9b\x90\x3c\x36\x31\xe7\x55\xc1\x8b\xb8\x72\xd6\xc8\xe8\xaa\xd2\x42\x70\xf8\x64\xfc\xd7\xd4\x18\xd2\xca\x1c\x9c\xfb\xf0\x7d\x7e\x33\x2d\xa3\x05\xcc\x12\x71\x10\x43\xd7\x35\x4b\x68\x59\x1f\xa1\x4e\x05\x59\x36\x72\x20\x49\xf0\x8a\xa5\x82\x77\x8f\x18\x32\xa4\x0b\x74\xd8\x0a\x29\x11\xa1\x86\x2a\x00\xda\x7c\x4d\xe7\x03\x87\x65\xf9\x5b\x6e\x88\x92\x02\xb7\x88\xf4\x4b\x13\xf5\x82\xdf\x75\x7f\x86\xcd\x57\x1b\x30\x93\xb6\x49\x84\xd3\xd4\x5f\x86\xf0\x56\x66\x19\xe6\xed\xba\x30\x62\xfc\x94\x99\x9c\x5d\x40\x17\x6c\xf1\x8c\x12\x75\xad\xdd\xb7\x56\xb9\x12\x08\xdf\x91\x3c\xf2\x7c\xf3\x47\xd1\x24\x90\xe1\x28\x71\x76\xde\x66\x69\x04\x23\xf1\x83\x7a\x14\x74\xc1\x23\x66\x98\xa0\xfa\xc7\x87\xa2\xe9\x17\xb7\xad\x88\x37\x6c\xea\x21\xc5\xb1\xd8\xc4\x6b\x90\xa5\xb3\xd0\x56\x15\x5e\xee\xf5\x23\x95\x4e\xd9\x84\x70\x02\xe1\x92\xd3\x38\x48\xa0\xc5\x8e\x43\x35\x02\xad\xa6\xff\xd5\x49\x12\x68\x4d\x8b\xf0\x29\xe6\x6e\xe6\xcf\xcb\xc6\x8e\x43\x2a\x84\x73\x9d\xfc\x9f\x1e\x4b\x8a\x1b\xcb\xc8\x44\x8e\x61\x91\x32\xad\x26\x18\x6c\xc6\x2b\x52\xdc\x72\x95\xf3\xe0\xfd\x2d\x4d\xa1\x3c\xc4\x2b\xa0\x5c\xde\xff\xd4\x56\xc9\xd9\xd8\x94\x10\xd5\xd4\x94\x8d\xca\xbc\x1a\x55\x0a\x54\x27\x48\x5c\x71\xf0\x67\xb6\x37\x45\xc7\x5d\x0d\xf3\xa3\x42\x09\x80\xf6\x1c\x5c\xf4\x4c\xe1\xe6\x75\xfd\xb8\x26\x59\xe9\xa4\x19\x38\xf2\x90\x39\xf7\xbe\x9a\xa2\xe1\xc6\xb1\x44\xa9\x47\x86\x35\x49\x26\x19\x05\xe2\x86\x7c\x15\xbf\x8f\x83\xe3\xc0\xff\x41\x3a\xc1\x4c\x48\xaf\x00\xc1\xd9\xff\x9a\xa4\x37\x42\x26\x09\x3e\x60\xe9\xc3\x84\x97\x88\x68\x72\xc7\x6e\xbd\x42\xa9\x61\x48\x1f\xb5\xd0\x80\xc1\x58\x74\x49\x5c\x98\x52\x3e\x8f\xf2\x3f\x59\x24\x39\xc7\x9a\x88\x3b\x78\xa8\x6b\x77\xfe\x4e\xfe\xda\xb1\x55\x25\x21\x94\x98\x19\x14\xd3\x84\xac\x2b\x82\xb2\xe6\x52\x3d\x3e\xb1\x83\x9e\x5f\xe7\x81\x68\xe9\x5f\x2b\x6e\x0d\x48\xbb\xc7\x23\x51\xb2\xda\xb7\x9e\x1c\x26\x9e\x03\xaa\x05\x7d\xd2\xe9\x03\xd1\x9d\x6a\x63\x53\x78\xe6\xcc\x6a\x0b\x25\x50\x25\xfe\xb1\x47\xac\x1e\x9d\xb8\xc1\xc5\xd3\x38\xf8\x61\xa3\xb2\x33\x7a\x79\xe8\xf9\xf3\x2b\x93\x3b\x5c\xb0\xe0\x80\xb2\x0a\xdd\xf0\xcd\x13\xe2\x71\x25\x44\x65\xe5\xfd\x9d\x1b\xe2\x15\x56\xa1\x3a\x66\x16\x01\xf9\x63\x7f\xe6\x6b\xab\xeb\xc0\xf1\x0a\x52\x52\xa5\xfa\x33\x5b\xbb\x63\x20\x57\x33\x88\xa9\x57\x42\x52\xb3\x8f\xed\x64\xd3\x56\x40\x56\xa9\x4c\xcb\x89\x15\xfa\xbe\x9c\xcb\x49\xcc\xd0\x1e\x29\xf3\xf0\x63\x8a\x5e\x9a\x7a\xf2\xee\xc9\xb4\x1f\x51\xda\xfe\x02\x31\x49\xe4\x0e\x90\xed\xd9\x11\x81\x15\xe5\xaa\xd4\x8e\x7f\xcd\x48\x3e\x21\x8e\x8d\x20\xd6\x1b\x8e\x22\x86\x5e\xaf\x74\xe7\x98\x39\xd8\x14\xdf\xf6\x37\x6f\x4d\x46\x40\x6b\xc2\xad\xa5\x3f\xb3\x61\xa1\x7a\xed\x83\xed\x00\x12\x88\xf3\xa3\x6d\x92\xce\x0f\x97\x90\x81\x99\x0b\x06\xeb\xab\xcf\xa9\x04\x6f\x5a\xb3\x04\x9d\x6a\xf0\x02\x85\x7c\x4b\xf4\x70\xa2\x7d\xeb\x47\x8a\x4f\x11\xe2\xc1\x9a\x3d\x3d\x62\x8d\xb0\xb7\xa5\x07\x4b\x3d\xd7\xa8\x01\xd3\xdd\xff\x9b\x34\xbf\x58\x6e\x41\x96\x2e\x09\x64\x32\x87\x4e\x87\x51\xd1\x62\xb2\x12\xfc\x96\xde\xa6\xa4\x8d\x08\xb5\xf8\x54\xab\xa5\x98\x6c\x6a\x75\x5c\x01\x2b\x34\x3a\xa0\x7e\x22\xbd\xe2\xca\x71\x12\xfc\x5a\x0d\x7e\x78\x9d\x83\xfb\x0e\x29\x0e\xcd\xa5\xac\x84\x20\xc1\x3a\x55\x5b\x2d\xb3\x07\x4c\x93\x20\x1e\x3f\x98\x32\xe3\x7f\x5f\x22\x55\x6c\x69\x06\xf0\x23\x1f\x7d\x31\x9e\xfa\x84\xf6\x77\x75\xa5\xe9\xb1\x37\x62\x4e\x7e\x3b\x28\x4a\x8a\xc3\x54\x1e\x3c\x2b\x50\x2b\x51\xb1\xa7\xee\x79\x32\x49\x3b\x74\x3c\xd3\x24\x55\x64\x01\x84\x1a\x3f\xc8\xd9\x62\x06\xb2\x30\xb8\x35\x46\x16\xc7\x48\x6c\xeb\xe0\x0d\x09\x0e\x50\xf6\x4b\x4a\x3c\x92\x1d\xfc\xb4\x78\x72\x74\xef\x30\xa1\x64\xa2\xac\x9c\xc8\xea\xc8\x7c\x70\x2e\x09\xf7\x70\xbb\x53\x68\x41\x93\xf2\x92\x21\x4f\x8d\x93\xca\xab\x01\x12\xea\xfa\xd3\xff\x3e\x31\x7e\xba\xa4\x52\x21\x96\x30\x50\x9a\xae\xb4\x85\xd3\x3a\x5a\xaf\x99\x21\x40\x9f\xec\x5a\x61\x8d\x82\x2c\x97\xe8\x14\x7c\x14\xfd\x8f\x57\x0f\x54\x62\x32\x64\x95\xa3\x71\x56\x2a\xbd\xf7\x12\xa9\xf7\xf7\x0a\xf5\xa3\xe3\x03\x7a\x72\xbd\x77\xcc\xe8\xee\xe4\x37\xf2\xac\x15\x12\xb1\x84\xa7\xf5\xf9\xcb\x67\xc7\xf7\x27\x29\x59\x22\xd8\x31\xdf\x93\xbc\xfe\x29\x2a\x9b\xb8\x37\x49\x6e\x4e\x7d\x77\xbb\x3a\xfb\x06\x2e\xb5\x30\xe2\x29\x2d\x6a\x96\xfa\x75\xa0\x79\x03\x27\xd5\x84\x56\x63\x7f\x98\x2a\x1f\x6c\x39\x58\x8b\x43\x3f\x52\x0b\x15\x66\x85\xd6\x85\xa6\xf2\xbd\x8e\x19\x33\xda\x05\x0d\x2f\x3b\xe8\xb4\x3a\x13\x25\x4c\x82\xa5\x1e\x57\xf3\x30\x68\xa4\xab\xf9\x8c\xa2\x44\xb3\x4d\x6c\x09\xd5\x81\xdf\xb2\x36\x4c\x57\xb7\xa8\x67\xf1\xa0\xbe\xa1\x2b\x05\x69\x94\x9a\x44\x4c\xad\x1f\x15\x79\x28\x96\xa7\x99\x3c\x17\x68\xff\x4c\x49\x00\x28\x8e\xfa\x5c\xde\xff\x71\xb7\x74\x72\x25\x18\x0c\x2f\xc4\xdf\x08\x23\xf7\xe0\x79\xfc\xd6\xa8\x77\x9e\x0a\x1b\x87\xfc\x36\xc9\x2e\x50\x00\x2c\x70\xd4\x14\x0f\xc7\x6f\xb3\x68\xa2\x42\x01\x3e\xe5\x3f\xaa\xd9\x64\xdc\xca\x45\x9c\x8f\xb7\x2d\x54\x85\x20\x96\x8e\xb8\x39\xa2\xff\xc5\xc7\x24\x47\x60\xe4\x32\x61\xf9\x3d\xfa\x09\xa9\x13\x71\x0d\xc8\xd7\xf0\x97\x98\xe2\x9d\x52\x24\x32\x4f\x53\xd7\xb5\x24\x4f\xbe\x6e\x51\x22\xdd\xf5\x42\x02\x64\x4c\xb8\x89\x4b\x8e\x45\x16\x75\xca\xf0\xfe\xe7\xed\x6f\x89\xdd\x60\xeb\x4f\xa2\x9f\x2e\x8c\xd7\xb5\x4b\x75\xd4\x9b\xcb\xfb\xa3\xaf\x1c\x1d\xb5\x62\x32\xb0\xf4\xa9\x4d\xbc\xa1\x75\xbc\x52\x89\xeb\x50\x82\xdf\xfa\xee\x3e\xc5\xdf\x5a\xc7\x8e\x13\xb5\x31\xfe\x76\x05\x41\xb7\x71\x70\xa1\x15\x3c\x56\xe2\xd5\x7b\xf0\x6f\x7e\xb0\x56\x49\x2b\x21\x25\x1c\x94\xcb\xbc\xb5\x09\xaa\xbf\x57\x4f\x29\x78\x38\x6f\xbe\x83\x92\xfe\xe1\x75\x71\x7f\x1c\x3c\x67\xa2\x49\xb3\x81\xfe\xd4\x7d\x8a\x4f\xb2\x43\x99\x1b\x9a\xa4\xef\x12\xae\xa1\x48\x47\xdc\x3a\xed\x8a\x2c\xc7\x3f\x6c\x5a\xb1\x69\x25\x57\x43\x82\xdf\x97\xbd\x7a\x7c\xec\xe2\x62\x3b\xbd\x9a\x41\x91\x85\xcc\x5e\xce\xdc\xcc\x5e\xb1\x4c\xd2\x41\x79\x05\x11\x09\xc7\x75\x01\xc7\x36\x2b\x48\xa9\x5e\x25\x0e\x17\xaf\xc3\x67\xf0\x3e\x89\x79\x8d\xb5\x5a\xad\x0d\x79\x7a\xd0\x55\xb7\x69\x7c\x30\xf4\xb9\x99\xc9\x65\x60\x70\xa3\xd4\xec\xb4\x43\x71\x55\x58\x02\x72\xe6\x6f\xef\xe6\xdc\x9b\xb9\x21\x6c\x1e\xa1\x4c\xde\x38\x89\x14\x8d\xab\x9c\x8d\xf7\x63\xc9\xba\x0d\x9c\x9c\xb5\x5e\x93\x58\x1c\x45\xcd\xd6\x8a\xb1\xa1\x6d\x09\x73\x85\x01\x51\xbd\xdc\xfb\x33\x93\xbb\xd4\x0c\x74\x16\x1d\xb7\x7e\x87\x32\x02\xb7\xbc\x0a\x66\x31\x95\x3b\x55\x7a\xe8\x42\x79\x21\x3b\x98\x55\x91\x88\x35\xc8\xae\x6f\x91\xa4\x23\x31\x0d\x20\x78\x5e\xf7\xf6\x24\x70\x1b\x97\x02\x73\xb5\x3f\x3b\xa1\x55\xca\xbd\xa3\xa5\x12\x01\xb0\x23\xb3\x36\xbe\xfe\xa8\xa6\x21\x07\x5c\x01\x82\x9f\x73\xe7\xc2\x98\x1f\x56\xc3\x41\x29\x12\xaf\x99\xdf\x6d\xe0\x3e\x05\xf3\x90\x85\x74\x52\x9f\x3b\x92\x1d\xb2\x99\x2f\x9c\x8e\x19\xd7\x74\xb7\xe5\xf2\xfe\x3f\xdf\x17\xef\xbc\xce\xf6\x5c\x07\x24\xbe\xdf\x79\x67\xd8\x9c\xb1\x0a\xb2\x20\x39\x3c\xf8\xc5\x7f\x7b\x48\x25\x25\xd0\xd8\xec\x7c\x53\x55\xc1\xa1\x83\x52\x58\x8c\x4f\xab\xbb\x15\x18\xda\x40\xaa\xc3\x51\xe6\xd0\x3a\x65\xb5\x17\x73\x4e\x98\x5f\x7d\x54\xc1\x13\x0a\x26\xb5\x74\x61\x0b\x5c\xde\xda\x2c\xe9\x1e\xbd\xe4\xe0\x24\x33\x32\x59\x77\x68\x16\x76\xeb\x27\x07\xe9\x6f\xec\xac\x73\x2a\xe0\x54\x91\x6f\x3e\xae\x56\xa6\x70\xd9\x85\x66\x28\xcf\x2b\x79\x19\x05\xc4\x2c\xa4\x99\x49\xb4\x72\xf8\x49\x99\xad\xe1\x31\x5a\x20\xd4\xa4\x25\xd0\x71\x5d\x29\xd9\x4f\xf1\xa9\x02\x14\x9a\x27\xba\x2e\x97\x1a\xe6\x2a\xc1\x2e\x4f\x7a\x52\xa6\x52\xc6\xec\xba\x82\xdc\x63\xd2\x63\x7f\x47\x2a\xf4\xa8\xa6\x79\x36\x0f\x63\x4d\x59\xe7\x24\x46\x22\xaa\x20\x86\x2c\x0d\xe6\x25\xde\x60\x49\x6e\x80\x4c\x0e\xc3\xa4\x7f\xc0\x42\x43\x00\xc7\x25\xae\xe7\x86\x0b\x31\xf5\xb8\x14\xc4\xc4\x27\x71\x82\x44\x7e\xc5\xfe\x11\xe2\x96\xc8\xb9\x84\xab\x8c\xb2\x96\x64\x06\x59\x41\x25\x09\x4d\xed\x4f\xb7\x4c\x56\x5e\x13\xf8\xb7\xaa\xe4\xf6\x4c\xdb\xfb\x92\xa3\x81\x57\x32\xf9\xf6\x99\xa3\x18\x1d\x85\x66\xf2\xfe\x90\xc1\x92\x95\x0c\x86\x69\x4a\xbe\x3f\x33\xef\x74\xbc\x41\x7b\xa9\x27\xcf\x89\xf1\x86\x4b\x25\x64\x8e\x60\x6e\x65\x99\x3c\x38\x9e\x50\x46\xc0\x1a\xb5\x01\xd8\xf2\x7f\xf2\x44\x9d\x1b\x83\xa5\xd3\x62\x51\x2c\x95\x9f\x36\x4b\x84\x1b\x20\xb0\x86\xe3\xb9\x59\x8b\x15\xa2\x53\x15\xb3\xde\xa0\x80\xe6\x92\xf0\xf4\xba\xb6\xe4\xc6\xea\xe5\xec\x12\xa1\x04\x9e\xc4\x9d\x04\x6f\xd1\xe6\x83\x3e\xf9\x8a\x01\xee\xc9\x89\xc9\x8e\x77\x6a\x87\xc8\xc9\x5f\x79\x24\xa2\x5a\xf4\xd0\x3a\x8f\xb5\xf4\x99\x2d\xe7\x87\xdf\x9e\x1c\x3c\xe7\x55\x0b\x64\x6a\x74\xf0\xcb\x82\x1f\x72\x63\x97\x34\x75\x87\x32\x3d\x34\x32\x38\x31\x7c\xb4\x34\x3d\x02\xcc\x00\x90\xb2\xae\xc3\xca\x8c\x86\x30\x91\x98\x95\x9d\x3a\x61\xbc\xfa\x02\xea\xfe\x9e\xcc\x9d\x4f\x35\xc8\x78\x44\x84\xd0\x2d\x52\x10\x3a\x8f\x31\x38\xb9\x42\x69\xfd\xf8\xa3\x57\x2a\x6f\xce\x82\x98\xb7\x01\xdb\xae\x1f\xbd\x28\x55\xf7\xae\x83\xcb\x84\x41\xbc\xde\xbf\x4e\x6e\x12\x2d\x20\x23\xc0\x93\x97\xe2\xd2\xdb\xa5\x9a\x3a\xac\x0f\xf0\x5e\xc5\xd0\x09\x99\x65\xc9\xd0\x29\x8b\x94\x80\x43\x50\x89\xf3\x93\x2d\x55\x95\x5c\xa3\x35\x8f\x15\x04\xf5\xb2\xf9\x94\x70\xed\x45\x0e\x07\xdc\xc3\xe5\xfb\x4d\x85\xcf\x5b\x40\x56\x59\xa0\xfc\x69\x77\xa8\x18\x8f\x50\x9a\xcc\x47\xba\x6e\x7f\x9d\x3a\xdb\x73\xc5\x07\x78\x74\xbb\xe4\xcd\xa7\x57\x09\xd7\x87\xa7\xf3\x6b\x87\x8a\x97\x0a\x98\x8e\xab\x20\x1d\xc8\x0c\x2a\x2c\xee\xb8\x12\x51\xd2\xa7\x48\x71\xcb\x2e\xb2\xf9\x39\xf4\x6f\x4f\x4a\x06\xcf\x06\x31\xa9\x43\x6d\x68\x45\x33\xec\x69\x85\xe0\x4e\x0d\x09\x6c\x4d\xdf\xe8\xca\xe5\x33\xb8\x0c\xf3\x76\xe2\xfb\x93\x39\x0a\x44\x18\x15\x84\xf2\x13\x0d\x6a\x48\x2c\x2a\x16\x89\xc6\x57\x9c\xff\xed\xbb\x5b\x06\x68\x08\xa3\xa8\x8f\xbf\x74\x5e\x24\x21\xe6\xc8\xc5\xc8\x93\x6e\xac\x7d\x6f\xfc\x5f\x78\x2d\x40\x40\xb9\x1d\x72\x7d\x5a\xee\x85\x5b\xfd\xb5\x16\x35\xf7\xd5\xb3\x49\x64\x87\xfd\x25\x5d\x20\xd7\x06\x8f\xfd\x0e\x7f\xd3\xf3\x93\xd4\xa8\xeb\x0a\xe2\xf5\x0a\xbf\x7b\x6f\x7a\x9c\x5f\xea\x4b\x0d\xee\x8f\x92\x49\x3f\xa1\xa8\xd8\x4c\x44\xa2\x78\xd9\xd4\x53\x83\x15\xf1\x4a\x1b\xef\x4f\xfd\xc2\x1e\xd5\x62\x3f\xca\x6d\x15\xe0\xf1\x2b\x4b\xe2\x7d\x01\x8c\x70\x5e\x2a\x2f\x3f\x2b\x09\xf3\x29\xa3\x5e\x09\xc4\x56\xcf\xed\x8c\xe9\x2d\x25\x48\x07\x48\xb5\xee\x1b\x29\xb3\xe1\x85\xe1\xab\x74\x38\xa2\xc8\x19\x3e\xf8\xce\x03\xb3\x2f\x53\x37\xad\x74\x09\x85\x18\xea\x1f\xaf\x8c\x1f\x75\x15\x69\x18\xdc\x97\x2e\x98\xac\xe8\xa0\x21\x5d\x36\x28\xa3\x04\x5e\x95\xb9\xf9\x44\x54\x89\xba\x41\xcd\xea\xff\xea\x64\x1c\xc4\xdf\x99\xcb\xfb\x73\x85\x85\xdf\x62\xaf\x62\x47\xf9\x30\xd9\xa9\x8a\x96\x88\x23\x9e\xe2\x50\xfd\xe9\xb3\xfc\x40\x9e\x47\x2b\x15\x02\xf0\xa1\x7a\x6b\xdf\x7a\x90\xaf\xd1\x1b\xe6\xdf\x36\x67\xd9\xfc\x5c\xde\xbf\x78\xa8\x34\x81\xb4\x91\xce\x3d\x62\x47\x29\x1e\xdc\x65\x6c\x87\x42\xe1\x74\xfa\xf0\x50\x71\xe0\xae\xc9\xe5\xfd\x7f\x5d\x25\xcc\x6f\x3d\x9e\x07\xd8\x9f\xbd\x7c\x4f\x3c\xd4\xaa\xd4\x87\xcc\x7e\xba\xb5\x59\xba\xe6\x5d\x37\xa1\x38\x3a\x2c\xa5\x30\xeb\x8c\x58\xe0\x5b\x97\x7a\x72\xb5\x92\xc3\x57\x20\x7c\x24\x90\x3c\x9b\xa7\x2a\xca\x5c\x6c\x55\x83\xad\x08\xf6\x42\xfc\xc2\x3a\xfd\x26\x07\x67\xe6\x30\x8b\x9a\xba\x6c\xb1\xfa\xda\x81\x51\xd1\x13\xe5\x20\xe7\xf2\xa5\xfe\x6d\xf3\x63\x74\xbc\xf3\x9a\xf6\xd6\x19\x1d\x53\x5b\xa7\x4e\x9b\x1e\xfc\x91\x8f\xdc\xa7\xc4\x00\xc3\x91\x5c\xe7\xf0\x39\xa7\x2b\x6e\x66\xfb\x40\xe4\x0a\x75\xfa\xe7\xe7\x0f\x18\xdd\x58\xe3\x01\xdc\x68\xa2\xc8\x12\x77\xa9\x6d\x72\xcc\xa4\x3f\xf3\x9d\x57\x39\x3a\xd5\xd1\x95\xcb\xfb\xb3\x1e\xbb\x5c\x2a\x2e\x0a\x6e\x8e\x11\x5d\xc7\x75\x4f\x24\xfd\xf4\xdb\xca\xf9\x53\xa3\xb9\x1a\xea\x0d\x65\x8f\x99\xa6\xc6\xa4\x7d\x1d\x11\xc0\xc8\xb1\x65\x82\x1f\xce\x80\x84\x5f\x52\x21\x5b\x06\x84\xe0\x30\xbd\x62\xf0\xa1\xe8\x85\x23\x4b\xcd\x74\xf1\xaf\x58\x5d\x7f\x31\x84\x40\xca\xe6\x66\xc5\x67\x81\x32\x61\x79\xe4\xdc\xc7\xaf\x8c\xa5\xc8\x45\x65\x49\xd2\x9b\xfa\xd1\x0b\x75\xee\xb2\xdc\xc5\x58\x54\xeb\x5f\x1e\xaa\x66\x8d\xf5\x22\x33\xf8\xbb\xf8\xad\xd2\x35\x33\x09\xc2\x11\xb3\xd7\xab\xf4\x19\xc4\xa2\x55\xd9\xa1\xcb\x7f\xe9\x2d\xa5\xfd\x64\x2e\xd1\xcc\x48\x89\x99\x6d\x6e\x10\xdc\xa3\xb6\xe5\x75\x00\x5e\x6a\xa2\x3e\x90\x87\xa1\x03\x82\xc3\xfb\xdf\x0d\x95\x08\x3a\x66\x36\x02\x5f\xce\xd4\x2a\xe5\x43\xd7\x30\x2a\x07\xd5\xac\x38\x61\x7f\x5c\xe0\x7b\xac\x00\x09\x63\xb9\xbc\xff\xdc\xd3\xf1\x91\xd3\xd1\xda\xd9\xde\x9e\xcb\xfb\x5f\xfe\x48\xe1\x34\xdb\x50\xe8\xf3\xb6\xf7\xd2\xce\x38\x5f\x40\x0f\xe9\xda\x99\x31\x13\xe2\xad\x28\xcc\x8a\x91\xeb\x10\x48\x75\x7d\x6d\x6b\x1d\xc6\x65\x15\xbd\x50\x19\xf3\xa5\xc5\x11\x4a\x5f\x22\x71\x3a\xa1\xff\xfd\xa6\x16\xa5\xdf\x77\x0d\xcc\x90\xcd\x13\xe3\x32\x67\x07\x29\x4a\x3e\x1b\x31\xb7\xc2\x7d\x90\x61\xda\xf2\x5b\xa6\x92\x2f\xcd\x08\x81\x9a\xb5\x5d\x45\x24\x7a\xbd\x3e\xc1\x73\xbe\x61\x89\x9c\xf6\x8c\xc0\xf9\xf8\x61\x85\x01\x5a\x23\xae\xa1\x33\xb0\xb4\x14\x6e\x7f\x53\x27\x49\xfc\x1e\x54\xc2\x41\xd5\x4c\x72\x79\xff\x8b\x27\x25\xec\x1a\x83\x59\x14\xec\x97\x8d\xf7\xc5\xa1\x39\x35\x02\x87\x61\xbb\x2b\x38\x6f\xb4\x02\xd6\x4c\x00\x65\x5e\xec\xab\xcf\x8e\x47\x94\x72\xaf\xab\xcb\x9f\x95\xae\x2b\x54\x28\x10\x17\x30\x94\xec\x47\xd1\x23\x75\x1d\x69\xc5\x67\x4e\x2e\x8d\xdf\x92\x49\x69\x59\xd6\x6f\x66\xbe\xdc\x93\xac\xaf\x31\x43\xbc\x33\x7d\xf2\x49\xd5\xcb\x8e\xc4\xe1\x16\xe4\xa9\x26\x99\xe1\x83\x19\x14\x4d\x50\xa8\x8e\xdd\x73\x81\x58\x9f\x3d\x3c\xfc\x23\xf5\xd6\x49\xc9\x34\x16\x57\x91\xe3\x86\xdd\x43\xea\x2a\x45\xae\xa0\xf5\xda\x8c\x50\x57\xf6\x42\xba\xc3\x54\xc6\xf5\x0c\x69\xb8\xe8\x99\xa1\x35\x64\x7a\xd4\xcb\x8a\x3c\x01\x9c\xa8\x13\x84\xd3\x57\x26\x25\xdf\x24\xb4\x93\xbc\x30\xe0\xb5\x7b\x7a\xf7\x27\xd1\xc3\xd3\xe4\x08\x97\xcc\x9d\xb3\x92\xfb\x38\xd8\x76\x1a\xd1\x23\x7b\x89\x37\x0a\xaa\x49\x42\x28\x5d\x4a\xbd\xab\x60\xb5\x1d\x33\x66\x74\xb5\x4d\x61\x05\x58\x0a\xa7\x5e\x8e\x1f\x4a\x57\x97\x64\xb1\xdc\x9f\xf9\xc3\x1e\x65\x91\x3b\x8e\x17\x34\xb9\x51\x1a\xe4\xd5\xef\x2a\x85\x0e\x23\x15\x8c\x2c\xee\xc6\x19\x14\x34\x0b\x4e\xc8\xfe\x2b\xc1\xaa\x74\x79\x94\x05\xb8\x28\x9c\x69\x18\x29\x01\x40\xac\xcc\x1b\xdc\xe1\xfc\x66\x5b\x80\x18\x23\x32\xff\x38\xfb\xd9\x5d\x12\x3e\x4b\x98\xe3\x42\xae\xfa\xd7\x25\x33\x37\x64\xb9\xd8\xb2\xc0\x4f\xe6\xd4\x9b\xc9\x8f\x56\x24\x1a\x84\x1c\x85\xf0\x93\xff\xbd\x23\x63\x24\xac\x54\x06\x98\xde\xe8\xe6\x65\x60\xc9\xeb\xe5\xa4\x97\x9f\x89\x23\xd2\x33\x5d\x86\x72\x48\x33\x08\xae\x86\x21\x07\xd9\x5b\x8f\x46\x77\x86\x5e\xaa\x8f\xaf\xb8\x77\xa7\x82\x5b\x1a\xc2\xe1\x2b\xef\x4f\x94\xe2\xd8\x34\xe6\x39\x06\xf7\xfa\xde\x17\x9e\xc7\x4b\xd4\x30\x7e\xbf\xe6\x5e\x95\xbc\x81\xe2\xc8\xa8\xfa\x8c\x8e\xec\x25\x13\x15\xb1\x36\x43\xb5\x28\x5f\xe1\x75\x89\xaf\x44\xfb\x40\xcd\xd2\x9f\xee\x5e\x2c\x9d\xc6\x33\x66\xb4\x07\xcf\xe9\xf1\x95\x7c\x1b\xf5\xd0\x32\x0f\x51\x49\x2d\xde\xab\xdc\xf9\xdc\x97\x57\x20\xe2\xf7\x1c\x4e\xee\x82\x8e\x0e\xd7\xe0\x38\x6e\x8c\x40\x9c\xde\xa1\x08\xf4\x74\x6c\xb9\x40\xd4\x14\x8f\xe6\xae\x7d\x4a\xd4\x14\x25\x0c\x29\x48\xd7\x4b\x5b\xc2\xf9\x35\xb6\x11\xe3\xa6\x0b\xe9\xce\x45\xf1\x5b\x05\xf3\x16\xe1\x15\xd5\x9f\x19\x2b\xb5\x4e\xc1\xf9\x06\xb3\xba\x7f\x10\x19\xd0\x66\x08\x19\x8d\x7e\x6f\x54\xbc\x58\xcd\x50\x30\xb3\xfb\x35\x65\x23\x78\x2e\xad\x20\x57\xa8\x49\xf2\xfe\xc3\xef\x70\xa0\xef\x0e\x14\x94\x13\xa1\x38\x39\x5d\x69\x96\x72\x22\x2a\x94\x82\xed\xc9\x4a\x5b\x72\x54\x70\x31\xa3\x04\xe2\x5d\x53\x7f\x3e\xa4\xc6\xbe\x88\xf0\xf8\x10\x86\x7a\x70\x95\x6c\x4b\x2e\x46\xe7\xd6\xaa\xe4\xae\x0f\x9a\x42\x3e\x84\xf9\xc0\x4c\x82\x6a\x16\xad\x52\xd7\x42\x1c\x73\x0f\x11\xa3\xa1\x42\xbc\xe1\x60\x18\x75\x5e\xaa\x24\x6f\x82\xa5\x30\x2a\x87\x1c\xbf\x57\x1b\x15\x99\x0c\xad\xd0\x28\xe5\x3b\xf8\x07\xbb\xd5\x20\x6f\x8d\x27\x74\xf1\xe6\xf9\x96\x17\xe3\xf5\xde\xdd\x39\x55\x58\x86\x67\xae\x1f\x1b\x6d\x20\x93\xd5\x57\xd9\x4b\x17\x8b\x1a\x92\xf3\x7e\x39\x76\x7d\xdf\xb1\x16\x09\x06\xd2\xa0\x73\x90\x96\xc6\xc2\x61\x6a\xe4\x82\xc7\x44\xdd\x94\x5e\x3e\x48\x4e\x69\xb0\x4a\xe2\x1d\x67\xde\x32\x15\x99\x85\x14\x9c\xc6\xdd\x5c\x3a\x26\x8d\x96\xda\x23\x4e\xa8\x0c\x7e\xe2\xd6\x73\x2a\x83\x95\x58\x51\x65\xba\x43\xf1\x2b\x29\x32\x6c\x69\x46\x05\x85\xd6\x32\xf3\x77\x4a\xd0\xbc\xe9\x81\xbb\x46\x7a\xc7\x27\x75\x2e\x0c\x9a\x49\x1d\x11\x8f\x9b\xb9\xea\xcd\x98\xb4\x22\xf8\x99\x99\xf7\x3e\x0c\x49\xd5\xb4\xe6\x1a\xb0\x4f\x4f\xed\x50\x8b\x5d\x17\xca\x47\x9b\xdb\x35\xa0\x1d\xaa\x85\x69\x4d\x27\xbd\xc8\x88\xf9\x67\x95\x87\x93\x0d\x6e\xd7\x34\x71\x76\xae\x59\x10\x4e\xea\x35\xc0\x86\x60\xeb\xbd\xf4\x5e\xf2\x02\x77\x50\x2f\x20\x7a\xdf\x5e\xaa\x5a\x40\x54\x6c\x64\x11\x1c\x9a\x75\xef\x1e\x3f\x90\x0a\x3f\xfc\x10\x29\x73\xbd\xec\xdd\x62\x71\x1e\x62\xda\xde\x28\x59\x51\x53\x46\xfb\xa8\xe4\x58\xf9\xf6\xb3\x2a\x3a\xc0\x90\x55\x12\xf5\xf8\x0f\x15\xa1\x0d\x2a\x51\xf1\x41\x52\x4f\x27\x14\xc7\x72\x5a\xd7\x8f\x95\x72\x4f\x23\x2e\xe9\xc3\x56\xac\xfd\xdc\x7d\x34\x26\xcd\x3b\x30\x76\x7b\x78\xa2\x44\x80\x27\x9a\x81\x4c\xb0\xf3\x08\xbe\x35\xf5\x15\xc1\xb0\xa2\x8c\x1b\x8a\x66\x8f\xcb\x3c\xe5\x2a\x32\xbd\xd0\x9e\x67\x77\x8b\x94\x0a\x44\xb1\xce\x90\xde\x83\x00\x4e\x7e\xe8\x48\x92\xe3\xc5\x30\x6f\xbd\x54\xb4\xf7\xd3\xaa\x72\xc3\x63\xc5\x78\x7e\x79\xe9\x0e\xde\x9d\x20\xdb\x66\xd8\xe0\x7d\x3d\xac\xdb\x86\x1d\xfc\x20\xac\x42\xbe\x13\xe5\x33\xa3\xf4\x9d\x85\x3a\x20\xdf\x63\x2c\xf6\x63\x9b\xc9\x01\x6b\x9d\xa1\x62\x88\xcb\xce\x9d\x2d\xd3\x6b\x30\xaa\x14\x28\x82\xaa\xc4\xff\x98\x9f\xbd\x8e\x4d\x4c\x3e\x80\x7d\xfd\xac\xe4\x74\x21\x7b\x7b\xfc\xcd\x43\x91\xb2\xa5\x2c\xc7\xa8\xef\x98\x15\x37\xd9\x16\x12\x8a\xd8\xcc\xc8\x4f\x62\xf8\x33\x92\x64\xaa\x70\xee\xd2\x0f\x2f\x88\xc5\x32\xc1\x32\xdd\xfd\x44\xcc\x0d\xa0\x36\x1e\xe0\x24\x5a\xf4\x2a\xff\xc0\xb7\x96\x90\xa5\x03\x66\x9e\x3f\xc8\x6b\x95\xdb\x28\x33\x13\xe6\x49\x2f\x2c\x1b\x25\x81\xb6\x85\x02\x9f\x00\xfc\xf5\x73\x4a\x63\x03\xa6\x42\xa2\xa3\x5f\x77\xbb\x7c\x2f\x44\xa2\xd7\xd4\xe2\x41\x63\x94\xba\x8e\x5b\xcd\xfa\x77\xf7\x29\x2e\x73\x3c\x33\x97\xd7\x91\xa9\xbf\xdb\xc4\x3f\xec\x8c\x30\x9a\x21\xf3\xfa\xcc\x31\x92\x1a\xb4\x64\xb8\x50\xbb\x02\xc4\x76\x4c\x81\x00\x88\xab\x19\xd8\x34\x13\xb5\x6b\x7f\xaa\xf5\x63\x25\x1b\x4c\x23\x82\xd4\xa0\x34\x8d\xbe\x1a\x5f\x58\x22\x40\x77\xe3\x8d\xeb\x23\xdb\x92\x57\x56\xe7\x8c\x08\x28\x1c\xfa\x70\x1d\xca\x08\xfe\xb6\x62\x52\xfa\xd3\x99\x4a\x6e\x00\x46\x41\xf5\xcd\x35\x1a\x77\x1f\x8c\x0f\xc5\x12\x03\xe6\x6d\xda\xdb\x12\x7f\xad\x4c\x4c\x18\x9f\xcf\xbf\x52\x0a\xb4\x26\xa6\x49\x22\x3f\x98\xf4\x1d\x4b\xd5\x80\x4b\x56\xc6\xae\x6d\x22\x09\xcb\xfc\xa5\x62\xfc\x6c\xe2\x02\xb2\xa8\x15\x4f\xaa\x53\xfb\x57\x8a\x54\xa2\x65\x73\xe6\x2d\x9c\x73\x73\x7e\xd9\x92\xba\x27\xa4\xed\x89\xdd\xff\x81\xc7\x99\x5e\x10\x9f\x1f\x39\xde\x4d\xfc\x70\xb3\x9a\xee\x5d\xf4\x82\x1b\x00\x6c\x21\xcb\x93\x23\x66\xfb\xf4\x8e\xba\xae\x7d\xcb\x7a\x85\xaa\x18\xdc\x37\x0e\x15\xf2\xeb\x64\x7d\xfa\x95\xbb\xa5\x1a\x25\x4c\x2d\x4e\xb1\x06\x41\xdd\xc5\x51\x90\xdb\xc4\xce\x66\xb5\x19\xc0\x0e\x2f\xfa\xfc\x35\x9b\xea\x32\x45\x8b\x34\xf4\xf9\x81\xe3\xe4\x7f\x67\xd7\x19\x47\x07\xb5\x45\x24\x87\xee\x3c\x13\x2f\xce\xae\xee\x1c\xe2\x32\x90\xe0\x39\xbc\xa8\x60\xd8\x8e\xe6\x15\x8b\x66\xf4\x3f\x2e\xfa\x44\x59\x13\x88\x84\x4f\xa9\x3f\xf5\xfb\xfd\xa1\x3b\x2e\x35\xc3\x79\xca\xc7\x4b\x24\x35\x1e\x36\x71\x81\x89\x41\x7d\xf6\xf3\x43\x2e\x92\x3a\x02\xe6\x1a\x09\xb7\xdb\x9f\x9f\x51\x1a\x7a\xe4\x46\x89\x7b\x1f\xb5\x29\x42\x0f\xe4\x15\x83\x2b\x5e\xce\xda\x7e\x44\xd1\xe9\xbb\xd4\xd3\x8c\x38\xc2\xf1\x86\x77\x2f\x94\x88\xaf\xf7\x78\x84\x61\x3d\x44\xfd\x47\x2f\x8a\x30\x8f\x02\x0a\xb3\x10\xd3\xa7\xe7\x5f\x2e\x61\x5e\x3a\x66\x35\x70\x3f\xa9\x9f\xca\x6e\x54\xb4\x20\xd4\x2c\xd3\x6a\x52\x86\xb2\xae\x3a\xa5\xf6\x7f\x01\x8e\x03\xd9\xbe\x5c\xba\x2c\x32\x9f\x33\x91\x13\x7e\xce\x7b\xde\x52\x7d\x2f\x4d\x17\x45\x3b\x67\x67\x41\x71\x6b\x35\xf9\xc8\x4a\x06\x01\xae\xba\x4f\x89\x15\xb1\x4a\x28\xb2\x8d\xbb\x78\xba\x34\x6f\x75\x99\x57\x2a\x71\xdf\xb8\xd4\x50\xc9\xf0\xd1\x41\x15\xc7\xe3\x37\xcf\xef\x8f\xc7\x77\x27\x10\x1c\x6c\xc4\xb8\x85\xe1\x91\xb9\x6a\x72\xba\x43\x44\x13\x0e\x37\xc8\x1d\x63\x95\xdc\x68\xa4\xa3\xfa\x88\x09\xff\x99\x13\xb1\x0f\x99\x63\xd4\xb3\x04\x52\x7f\x78\x5b\x85\xf8\x90\xe6\x12\x2d\x5c\xbc\xd9\xab\x5e\x9d\xa8\xec\xf1\x02\x2a\x99\x04\xb9\x44\x61\x8b\x7d\xd2\xc3\x17\x72\x24\x12\xcf\xfb\x97\x2b\x7a\x14\x9e\x17\x21\xae\x62\xff\xd8\x24\x85\x0d\x47\x6b\x98\x01\x43\x4f\x4a\x2e\xfc\x24\x79\x10\x17\x09\x58\x07\x04\x0f\xa8\x79\x90\x84\x7e\x19\x88\x55\x90\x86\x3d\x98\x26\xc0\x6e\xbe\xe5\xac\xea\x85\xe1\xd8\xd4\x72\x48\x64\x6d\x9d\x5a\x1e\x93\x8b\x35\x50\x79\xe4\xf2\xfe\x05\x4f\xc7\x37\x1c\x32\x73\xf7\xa0\x5e\x87\x04\xff\xf6\x6b\xad\xa1\x55\x64\xaf\x28\xc6\xb3\x6b\x16\xc4\xf7\x67\xb0\x19\xf8\x6b\xeb\x7d\x8e\x83\xb9\xd8\x63\xb0\xbd\x4f\xc8\x04\x12\x03\x11\xc6\xd5\xde\x70\x0a\xef\x9b\x1f\xb3\x6f\x99\x0c\x42\x75\x2b\x7f\xb5\x8d\x42\x36\x50\xe6\xa2\x85\xb1\x80\xd6\xab\x48\xcb\x72\x5b\x83\xd2\x65\x31\x62\x0b\x3a\xf3\xd7\x7b\x94\x35\x4f\x4d\x13\x85\x2e\x18\xe9\x17\xf5\x78\x09\x0a\x4a\xb5\x30\x6e\xf8\x27\x89\x1c\xd6\xd1\xd5\x7a\xcd\x8c\xf6\x5c\xf0\x87\xf7\x3d\xc4\xaf\xed\x95\xa4\xcc\x5d\xd0\xd7\xbf\x21\xd1\x37\x1d\x87\x88\x68\xc8\x7c\x7f\x6a\xc6\xdc\x78\x3b\x04\xf5\x99\x25\x48\x89\x37\x6d\x8f\x0b\xae\xe0\x90\xae\x14\x04\xb7\xfb\x53\xd6\x65\x96\x4c\x1c\xa3\x4c\xc7\x2a\xc4\xd0\x9f\xed\x5b\x90\x44\xc2\x20\x58\x07\x69\x9e\x89\xc2\x7c\xe2\xf4\x3c\x53\xf5\xd7\x81\x58\xc3\x88\x31\xd1\x9f\xf9\x4a\x3a\x7a\x92\x25\x24\xfb\x58\x9a\xcb\xa2\x6f\xb0\x04\x4b\xeb\xf8\xc7\xd1\x37\x2c\xcd\x90\xbe\xe1\x0d\xaa\xc3\x98\x5c\xa2\x91\xbe\x08\x2b\x78\xf1\x8c\xec\x31\x83\xf4\x5e\x51\x78\x5e\x9b\x08\x4d\x01\xef\x99\xe0\xb1\x75\x8f\x1d\x2d\xdb\x4f\xd8\x26\x06\x71\x45\xe9\xac\x32\x41\xa6\xa6\xc9\x5d\x9c\xfc\x9f\xbe\xd8\x24\x9d\x23\x0c\x3b\x18\x87\xe5\xf9\x36\x65\x9e\x83\x2b\x1e\xa7\xa6\x27\xcf\x81\x13\x13\x14\x5d\x5b\x55\x14\xcc\xef\xed\x8f\x0d\x45\x5c\xee\xd7\xb2\x9f\xcf\x2e\xe7\x63\x86\x25\x1f\xf4\xd4\xbd\x47\x15\xef\x34\x2f\xe8\x4c\x43\xa3\xd6\xa3\x2b\x93\x45\xa2\xe7\x68\x82\x49\xda\xb1\x58\x79\x9d\x2e\x72\x71\x8e\xd6\xac\xe8\xea\xc9\x68\x23\xd5\x42\xd2\x41\x8c\x89\xee\xcd\x53\x8c\x3c\x1d\x9b\xb2\x08\x7e\x4d\x77\x2d\x8b\x6e\x26\x13\x19\x61\x1d\x75\x9b\xd9\xa2\xde\x03\xa0\x58\x03\x0d\x6b\x7f\x36\x3b\xbe\x29\xf1\x06\x90\xcb\x08\xe5\x7a\xac\x63\xd3\xe3\x7d\x4f\xda\x0a\x6d\x45\xf8\x1f\xd6\xb1\x98\x8c\x16\x39\xc0\xd5\x97\xf4\x54\x32\xb4\x2e\x52\x13\xcb\xe1\x0b\xff\xda\xde\x18\x2b\x0d\x25\xa5\x64\x76\xd4\x59\xa9\xe9\x43\xcc\x24\xa8\xc2\xa3\x44\xfc\xbf\x3c\x2e\x0d\x9e\x83\x0d\x1f\xfc\xc1\xff\x31\x38\xe6\xb6\x14\x90\x1d\x34\xd4\x75\x17\x6e\xc7\x09\xd5\x34\xc7\x63\xba\x08\xcc\x4e\xfd\xef\xab\x0a\xcc\xa3\x7b\x1a\x2f\xf6\xc3\x29\xec\xb9\xad\xf1\xaf\x08\x63\xb9\xd5\x8b\xa5\x6d\x7f\xec\x1c\xdb\x09\xef\x79\xd1\x16\xc9\xbf\x68\x8d\x8d\xa0\x93\x23\x4e\x25\x1a\x91\xdc\x76\x42\x25\xf3\x7a\x0e\x37\xc2\xf7\x7f\x70\xfc\x72\x75\x8d\xb0\x82\xa7\x95\x9d\x29\x09\x27\xbe\xcc\x8c\xb9\xca\xed\x8c\x1c\x29\x00\xef\xaa\x59\xc9\xc4\x21\x1e\x1d\x3c\x40\xf5\x90\xb1\x86\x2a\x84\x2b\x1b\x69\xd8\x31\x88\x1d\x82\xe0\xd7\xed\x91\x22\xb0\x69\xf0\xe4\xfd\xf7\x04\xb9\x71\x71\x5d\x5f\x96\x79\x6b\x87\x60\x2b\x58\x8e\x98\xce\x1c\x5d\x1c\xdb\x4b\x91\xe0\x14\xad\x1c\x92\xda\xe8\xa4\x99\xed\xcb\x11\x7b\xa7\x68\xd6\x27\x24\x7e\xe1\xd8\xb0\x68\xdf\xaf\x09\xfe\xfd\xaf\xf8\xec\x26\xa7\xe3\x22\xb6\x1c\x9c\xa3\x0c\x32\x02\xe0\x80\x6d\x5c\xac\x96\xc1\x56\x15\x5b\x50\x58\x08\x24\xfe\xc3\x17\x24\x25\xbd\x57\x0a\x6e\xb1\x8c\xbe\x4c\x01\xcd\xaa\x98\x01\x5d\x19\xd6\xfe\x75\xc7\x1a\xa4\xa2\xb4\x16\x5e\x6f\xbf\x78\x3c\xfe\x41\x2e\xe5\x61\x30\xbb\x1b\x64\x6f\x4a\xdb\x73\x31\x10\xad\xfd\xad\x7b\x78\xf1\xb0\x84\x58\xd8\xc5\xa0\x6c\x4b\xef\x38\xa8\xb8\x93\x78\xcc\x09\xfd\x39\x32\x1f\x6c\x8c\x3c\x7f\x90\x69\xcb\x59\x47\xe9\x6b\x7c\xd5\x5d\x12\x45\xa7\x41\x6a\xc8\x48\x25\x6c\x95\xd3\x84\xc3\x11\x45\xba\x6f\x2f\x6f\x97\x97\x1b\xd8\x74\x13\x9c\x9b\x36\x29\xb1\xb4\xc8\x30\x98\x02\xbc\x2e\x91\xbb\x6d\xd0\x82\x89\x83\x7d\xc7\xde\xe8\xed\x72\x7e\xb8\xb9\x38\x76\xb5\x5c\xb2\x34\x34\x64\x4c\xfd\x5a\xf1\xbe\x2f\x32\xe4\xf1\x68\xd5\xcf\xce\x8c\xc9\x8e\x16\x5c\x0d\xd2\x85\xf3\xcd\xe9\x11\x92\xe6\x41\xf2\x68\x7f\x7a\x95\xa2\x22\x12\x49\x17\x72\x79\x3f\xf9\xf1\x48\xca\x0c\x23\xb6\xec\xdf\x3c\x27\x85\x30\x4f\x05\x61\x78\xf0\x6c\x0f\x1b\x63\x25\xcb\x20\x53\xbd\x2b\xfc\x9e\xae\xe4\xaf\xea\xf5\x74\x62\xc9\x9a\x73\xdf\x68\x13\x80\x28\x35\xbd\x10\x25\x48\xf7\xee\x55\x58\x1a\x8c\x58\xa8\x84\x58\x84\xa3\xa5\xaf\x6f\x94\x64\xab\x9e\x6b\x42\xff\x06\x5c\xac\x85\x12\x53\x81\x8a\x36\x29\xb3\xe6\xcd\x26\x09\x60\xb3\xa8\x4d\x85\xa5\x6b\x7f\xf6\xae\xc7\x06\x52\x45\xc2\x49\xf2\x42\xab\x5a\x18\x96\x20\x25\x23\x32\x73\xc8\xbc\xfb\xb2\xbc\x48\x1d\xcf\x14\x38\x51\x66\x45\x3c\x88\xad\x50\xb9\x00\xb0\x8c\xba\xd6\xb1\x88\x9d\xa8\x15\xfe\xe6\xd9\xd8\xbd\xa3\x33\x38\xb7\x8f\x9b\x71\x6f\x42\x23\xc7\xc2\x86\xa5\x92\xd4\xb1\x18\x74\xa7\xb9\xbc\xbf\xfb\x4d\xe1\x8c\xeb\x7a\xa2\x4a\xf2\x5f\x9d\x75\x91\xda\x1a\x40\x06\x3e\x6f\xca\xd7\x0f\x49\x7e\xb7\x4c\xb4\x72\x6c\xa8\xfe\xbf\x4f\x8f\x96\x3a\x32\xc7\xf5\x34\xee\x10\xf9\xe0\x46\xc9\x72\x02\xe9\xc4\x34\x11\xb0\xc6\xd7\x1c\x57\x00\x5a\xdb\x46\x2c\x68\xb9\x78\x3a\xed\xb1\x91\xca\x73\xa6\x42\xb8\x96\xf7\xff\x59\x8a\x76\x36\x50\xad\xcc\x5d\x99\xb3\xcd\xd7\x8f\x96\x06\xb2\xae\x2b\xca\xe9\xf4\x1d\x93\x93\x3f\x89\x5a\x0e\x16\xb8\x53\xfa\xc1\xa5\x8a\xed\x3a\x8f\xa7\x86\xf6\x99\x4b\x54\x73\xcb\x30\x48\x99\xeb\xcc\xab\x25\x6c\x12\xe9\x0c\x5b\xc8\x24\x3c\x57\x6a\xb9\x21\xe1\x99\x0e\x04\xc7\x88\x3d\x79\xcf\xed\xf2\x23\x2a\x7a\x4c\xd4\xa6\xd3\x3f\x89\x86\x00\x41\x8f\x56\xe7\x71\xba\x2f\x5e\x8d\x98\xb3\x24\x10\x07\xaf\xb2\xa6\x68\x0a\xaa\x88\xcf\x79\x1e\x5d\x92\x70\x24\xb5\x4d\x50\x07\xfd\xe0\x54\xb3\x74\xcd\xc7\xd4\x3a\x6e\x70\xb5\x38\xaa\xc2\x4c\xb8\xfa\x8f\x3e\x11\x66\xb9\xda\x4e\xf2\xf8\xfb\x44\x31\xb0\x09\xe9\x76\xd1\x28\xe8\x27\xa7\xd5\xec\x4e\x31\x33\x0d\x9e\xa9\xaa\x36\xfa\xdb\xce\xf1\xca\x69\xca\x30\x86\x5e\xd5\x35\x42\x17\x89\xcc\xff\xbb\x5d\xea\x6e\x6b\xa4\xc8\x59\xe4\xa9\x67\x5e\x48\x5e\xda\xa8\x82\x06\x0c\x2b\x7f\x6b\xb7\x3a\x21\x32\x79\x42\xa5\x3f\xee\xb8\xd4\x8f\xe9\x3a\xc3\x0e\x1f\x77\x66\x57\x8f\x1b\xe0\x53\x41\xa8\x9b\x20\x8d\xa4\xff\xbb\xa0\xcc\xe4\x5d\x83\x68\xc2\xaa\x2d\x9b\x17\xf4\xbb\x79\xd4\xa4\x0c\x01\x39\x09\xe0\x81\x0d\xe3\xa5\x3f\x04\x57\xb9\x04\xd7\x1f\xf5\xbe\x1a\x8d\x02\x2a\x68\x81\xac\xdc\x15\xfb\x98\x19\x5e\xa5\xee\x8f\xdb\x5f\x8d\x3d\x03\x6c\x94\xcb\xfb\x9f\xdb\x24\x1c\x48\x18\xa9\x10\x0b\x3c\x05\xe1\x6f\xfa\xcb\xb9\xb8\x36\x24\x56\x35\x78\xff\x25\xae\x83\xf3\x3b\x8f\x28\xd5\x88\x45\x0b\x05\xcc\xa2\x66\x26\x75\xfb\x61\xc5\xca\x8f\x6a\x9e\x94\xf4\x96\xbd\xe6\x35\x49\x90\x03\x3c\x70\x1d\x33\x02\x1b\xa1\xa8\xc8\x83\x18\xd1\x42\xc3\xe3\xfe\xec\xa7\xe7\x8e\x90\x7d\x1d\x60\x6a\xf0\x73\x9e\x86\x93\x9b\x23\x74\xdf\x1c\x9d\x4c\xae\x9a\xff\x5a\xc8\x2f\xa8\xe5\x5c\x31\x9e\xcb\xfb\x8b\x96\x49\xae\x1d\x7c\x90\xcd\x35\x0e\xa9\xf7\x46\x47\x3e\x63\xb2\xff\xed\xbc\xd5\xf1\x99\x0f\xb9\x2f\xc1\x83\x38\xbf\x5d\xf2\x92\x0b\x0a\x76\xd0\x01\xe4\xfd\xeb\x96\xa8\xcc\x03\x2b\x34\x6e\x80\x23\x5d\x5b\x91\x5c\x2f\xe0\x58\x83\x42\x1d\x26\xbc\xfa\x91\x0d\xaa\xd3\xb6\x8d\xc5\x54\x90\x15\x15\x7c\xaf\x82\x4c\x33\x7a\x48\xa9\xcf\x9c\x94\x54\x99\x35\x62\xe9\x7c\x3f\xbf\x7a\x3a\xf9\x99\x6a\x06\xad\x04\x4b\x2a\x5c\x37\x55\x7f\x74\x9d\xc8\x2b\x97\xf7\x9f\x92\x52\xb9\x1d\x6c\x16\x73\xcc\xe3\xfe\x15\x74\x53\x52\x65\x33\x6d\x3a\x07\xab\xc7\x18\xc3\x45\xb1\x66\x8a\x9c\xd3\xd4\x08\xc5\xb2\xc5\xc2\x88\x71\x18\x74\xfa\xb0\xfa\x64\x0c\x52\x46\xd5\x32\xea\x8b\x29\x11\xf3\x14\x13\x6c\x40\xc7\x9d\x10\x79\xaa\xb4\xcb\xac\x6c\x1c\x46\xdd\x3d\xfb\x71\x1d\x57\x4c\xf7\xb4\xf0\x5e\xf2\x0f\xee\x55\xfd\x93\x1c\x07\x69\x4c\x58\x45\x4c\xdf\x11\x35\x69\x76\x2f\x0d\x2f\xc4\x13\xa7\x46\xc8\x0e\x97\xc1\xe7\x6f\x6b\x1c\x2d\xfa\x07\x54\x2a\xe1\x48\x40\x3f\xbe\x29\xd2\xe5\x32\xa4\x89\x4f\xf4\xe0\x58\xa5\x10\xa4\xd4\x8c\xda\xc2\x4b\x8e\x27\xef\x9b\x3e\x54\xe6\x52\xd6\xbc\x7f\xd7\xa1\x89\xf1\x64\xc4\x2b\xe3\x2b\xc0\x97\x2e\x38\x0e\x4c\x37\x11\x95\x3c\xd9\x94\x54\x11\x18\x55\x2a\x41\xcf\xc7\x3d\x48\x86\x5e\x18\x3d\x7b\xee\x63\x1b\xf9\x04\xfe\xfe\x21\x65\x88\x6b\x92\x72\xf0\x6e\xe2\x95\xff\x3b\x01\x36\x75\x4c\x6f\xed\xea\x9c\x06\x98\xcb\x7d\x85\x46\x71\x1f\x55\x88\xe3\xa2\x72\xd0\xdc\xc3\x2f\x7a\xfd\xfd\xa8\x92\xa8\x92\xaa\xa0\xa2\xef\x39\xaa\xca\x29\xaf\x09\x4d\xeb\xb3\x57\x6d\x57\x5d\xf5\x20\x32\x28\xdf\x9f\xf5\x1e\x8b\xde\x41\x19\x85\x26\x91\x37\x3d\x71\x49\x82\xbc\x64\xd6\xa1\xf3\xef\x0e\x95\x24\x84\xfc\x9d\xe7\xf2\xfe\xbf\xef\x6f\x4c\x22\xbf\x11\xfb\x6e\xa4\x14\xdb\x54\x99\xda\xd6\x09\x99\xdc\xbf\x3d\xd0\xa2\xec\x5f\xf0\xb7\x0d\x6f\xf9\xee\x93\x23\x25\xd2\x31\x04\x52\xfb\x57\x28\xd6\x81\x9a\x81\x1d\x31\xc6\xcf\x9c\x7e\xa2\x51\x86\x91\x1c\x9b\x08\x53\xdf\x5b\x95\x1a\x14\x15\xa8\x49\x1c\x43\x72\x6b\x42\xcf\x29\x13\xa4\xaa\x3e\x60\x2c\xdd\x5f\xed\x8d\xaa\x01\x7b\x0d\xa9\x3b\x00\x67\xae\x57\xa2\x74\x01\xfe\xa2\x8c\x4f\xb6\xfd\xc9\x8a\xe0\x0f\x9c\x93\x38\x2c\xfa\xc0\x5c\x11\x92\xc0\x9c\x32\xb1\xe4\x13\xf1\xaf\x16\x28\xd6\x83\x61\x5f\x1e\x45\x7e\xed\x56\x38\x20\x15\x6c\xe9\x70\x0d\x08\x3b\x59\x77\x81\xcc\xcf\x30\x49\x01\x4c\x94\x1f\x30\x12\x29\x16\x8e\x27\xec\x05\xfc\xab\xba\xd5\x1c\x0f\x93\xe0\x30\x39\x26\xdd\xb1\xb3\x5e\xd0\x10\x92\x28\x1f\xbd\x3f\xf9\x9c\x0b\x0c\x59\x7a\xc2\x99\xe0\x3f\xde\x57\x5c\xa9\x18\xaa\x86\x26\x5d\xe9\xbf\x3b\x10\xc3\x2f\xe0\x6e\x11\xcf\x38\xfe\x73\x5f\xf2\xb7\x76\x4d\x6b\xeb\xe8\x14\x40\xd2\x37\x0e\x24\x1f\xba\x81\x82\xe6\x48\xa7\x35\xb1\xc2\xef\x5d\xc4\x1f\xed\x5c\x5c\x46\x72\xb4\x74\x7f\x76\xee\x58\xc5\x80\x1a\xaf\x21\x1a\xad\x27\x2c\xa5\x3f\x50\x5d\xcc\x45\xb6\x8b\x20\xdc\xa7\x73\xe3\x9a\xa4\xde\xa1\x8a\xb9\x39\x3c\xdc\x41\xbf\x7d\x55\x06\xfb\x4c\x71\xb5\x7f\x6b\x72\xd8\x2a\x45\xee\x03\xfd\xa9\x63\xef\xaa\x83\xf3\x01\x17\x61\xaa\xb2\x35\xc6\x58\xba\xa6\x82\xbf\xc6\x2a\x09\x9d\xaa\x54\xbc\xa0\xd8\xf5\x8f\x1e\x8f\x4a\x90\x6e\xa0\xaf\xce\x74\x15\x14\x00\x79\xae\x48\xb8\x17\xd5\xd3\x06\x89\xbf\x61\x10\xae\x77\xdf\x3b\x3b\xe6\xf8\x4f\x9b\xd1\x91\xcb\xfb\x53\x0d\xe5\x9e\xa1\x2c\x74\xbd\xfe\xdb\x3d\xc9\xba\xb1\xa2\x69\x48\xf1\xb6\xec\x4f\x2d\x95\x0e\x50\x8f\x79\x25\x0f\xf5\x72\x37\x9d\xd4\x8d\x93\xc7\x29\xd7\x45\x49\x47\x26\xb6\x62\xd6\x45\xfa\xa3\xd9\xc9\x33\x43\x03\x59\x5a\x78\xe5\xa7\xfe\xb8\x75\xac\xd2\x07\x55\x12\x36\xcc\xe9\x13\x8b\x94\xa1\x13\xd6\x19\xb1\x70\x82\x7d\x94\xfa\xa5\x62\xde\x5b\x04\x98\x90\xe3\xea\x0f\x0e\xe2\xe7\x34\x78\x98\x70\xe4\xf6\xa0\x2b\xc7\x26\x1b\xa4\x40\xc2\xd7\x9f\xbe\x4b\x32\x67\x2f\x61\xfe\xb5\x5f\x1e\x90\x1c\xb9\x3a\xdb\xa6\x5e\x13\x7c\xf1\xef\x9f\x57\xa0\x2e\x5c\x40\x8e\x1b\x57\x2b\xa2\xc7\xfe\xc7\xd3\x75\x09\x45\xb0\xcc\x1e\x90\xf2\x73\xb4\xa0\xaa\x07\xee\x4d\xeb\x3e\xf5\x4a\xd7\x90\x27\xa2\x44\xfa\x53\x3f\x68\x87\xf5\x90\xbb\x09\x1a\xa1\x01\x25\xd8\xf3\x93\x75\x03\xd1\xb5\x29\x75\xc0\x7c\xfa\x57\x4a\x80\x6b\x8d\x56\xb0\x30\xc3\xb8\x57\xb6\xd2\xc6\x8c\x91\x02\x1f\xec\x3f\xf4\x44\xb3\x2d\x65\x6a\x24\x80\x86\xf3\x5f\xa8\xa3\xe5\x54\x20\xe3\x8b\x97\x14\x37\xbe\x32\x5c\x7e\xa2\xb9\xbc\x7f\x6e\xc3\x58\x65\xdf\x04\xfb\xaf\x8a\x4d\xc1\x47\x78\xfd\x48\xd4\xc0\x53\x53\x4a\x32\x4a\x8d\x2b\x34\xc5\x77\x5f\x5f\x42\x36\x75\x43\x31\x6e\xcb\x6a\xc9\xd0\x16\xff\xfa\xa7\x45\x73\x8e\x59\x09\x23\xd8\x25\x99\x7f\x5a\x28\x91\x81\x18\xa5\x80\xa9\x64\x27\x1a\xf1\xde\xd1\xe1\x95\xa4\xb7\x3d\xae\x26\x10\xe1\x2a\x22\x92\xbd\x45\x7a\xa8\x6a\x45\xd5\x96\x30\x74\xf4\x57\x2f\x68\x92\x3a\x86\x24\xb3\x78\x57\x74\x3d\x55\x7b\xeb\x8f\xb1\x97\x86\xb7\x48\x52\x5a\x52\x2c\xc2\xdb\x8f\xb6\xc6\x9a\xf9\x1c\x52\xbc\xc7\x23\x40\x07\x4a\xad\x7d\x6d\x94\x64\x5d\x04\x90\x72\xde\xff\x69\xb3\x62\x07\x42\x2d\x0d\x73\x1f\x9d\xe8\x3a\x1d\xea\xf3\x7a\xcd\xa5\x76\xce\x66\x84\x32\x31\x27\x2b\x1f\x4e\x98\xc5\x0b\x87\x00\x98\x47\x1d\x91\x7d\x94\xc1\xe3\x5e\x40\x04\x07\xdf\x4f\x9e\x09\x7d\x06\xa2\xc9\x21\x64\xfa\x77\x27\xe2\xcf\xe9\x22\x13\xb6\x9e\x7f\xed\x0e\x4e\x7d\x0c\x27\x93\x15\x58\x2b\x13\x2c\xc5\x25\x12\xeb\xa1\x01\x83\x3f\xef\x90\xca\x8c\xb7\xb1\x3e\x85\x23\x28\x6b\xcf\xc4\xf5\x4e\x70\x21\x82\x1d\x41\x7f\xea\xda\x33\x2a\xf1\xc3\x44\x6b\xc2\xa7\x70\xec\xf4\x48\xa9\xb5\xb7\xf9\x64\xf5\xa6\xe1\x8a\x5f\xec\x35\xc2\x3a\x64\xdc\xb2\xb8\x7a\x71\x0d\xec\x44\x49\x32\x47\x3b\x13\x53\x89\x0a\x01\x3a\x3f\x9c\x24\x5b\x4f\x71\x80\xf9\x36\x3e\x60\xcf\xf7\xa7\x9f\xda\x21\xe1\xc9\xbd\x16\xe8\x50\xa1\x2f\x71\x4c\xa5\x02\x0c\xaf\xdd\xd4\xcd\x4f\x8e\x8a\xb5\x25\xe1\xc8\x3c\xf3\xa7\x9e\xe4\x3a\x9d\xda\x19\x31\xb0\xc3\x40\x69\xc5\xd4\xc9\x65\x94\xda\xa2\x3f\xf6\x57\x0c\x8b\xcf\xb8\x62\x50\xd0\x04\xff\xc7\xfc\x61\x71\xef\x63\x05\x5f\xe4\x4f\x31\xfd\xbb\x75\x72\x48\x43\xcd\xb2\x4d\xfe\x74\xff\xb0\x55\x09\x78\xa6\x8c\x51\x10\x17\x70\xc3\x09\x77\x09\x3f\x8a\x35\x03\x59\x25\x3e\x71\x6f\x59\x19\xff\xde\x32\x43\xc0\x61\xc9\x5e\xdd\xa5\x3a\x66\x5a\x3a\xae\x92\xb2\xec\xfa\xdf\x9f\x6e\x69\x8b\x0f\x16\x64\xf5\xe6\xf2\xbe\xf6\x8e\x64\xcb\x4b\x2a\xb6\x48\x0b\x42\x13\xa3\x8b\x55\x33\x82\xde\x7e\xb8\x42\x78\x12\x9e\xfd\x7c\x55\x4d\x78\x6e\x98\xb8\xfc\x6d\x7e\xf6\x6d\x7b\x37\xc6\x78\x0d\xaf\x80\x99\x2b\xdf\x3c\x8a\x43\x9b\x53\x23\x6e\x1f\x66\xc1\x01\x3d\xa5\x2d\xb4\x2f\x7a\x39\xda\xe5\x05\xec\xd6\x61\x37\xd3\x1f\x97\x4a\x73\x0a\x29\x87\xc1\xaf\x9d\x31\x3e\xe9\x4b\x64\x63\xcb\x72\x7a\xcd\x2a\xb2\x08\x1a\xc0\x21\x67\x72\x97\x6a\x1d\x0d\x03\x5b\x21\x29\xc8\x8c\x38\x3e\xa0\xbc\x0a\x1c\xf6\xfb\xd3\x1f\x6e\x50\x96\x46\x50\x8c\xb5\x85\xfa\x3a\xbb\xab\xce\x6b\x8f\x87\x91\x08\xa4\xea\xd8\x8a\xf8\x45\x78\x10\x3b\x79\xc7\xb2\xe8\x89\x63\x4e\xbe\x99\x69\xf1\xd6\x48\x27\x0e\xcf\x2e\x0c\x59\x7d\xe3\x76\x24\x07\x9f\xae\x81\x83\xf5\xaa\x3e\xa4\xd7\xd6\x49\x9a\x3c\x17\x59\x3c\xda\xfc\xaf\x25\x45\x79\xc1\xa4\x5a\x39\xd8\x39\xa9\xf5\x75\xb5\x67\xd7\x54\x51\x7b\xfe\xfa\x4e\xfe\x72\x97\x00\x2b\x27\xdf\x9f\x3e\xb1\x47\xb4\xe5\x61\x94\x8a\xdf\xb7\x41\x21\x3c\x60\x13\x03\x52\xcc\x20\xec\x02\x9a\xf9\xef\x66\x15\x2a\x9d\x88\x11\xf1\xcf\x9b\xa8\x14\x22\x0c\x87\x45\x67\xe6\xb7\x9d\xbc\x86\xac\x62\x46\x8a\x84\xbb\x52\x65\x6f\x94\xe6\x94\x9a\x70\x9d\xf1\x8f\xee\x55\x3d\x9e\x1d\x07\x87\x3e\xb7\xa9\xee\xb3\xa3\x24\x44\x42\x2b\x83\xad\xf6\x33\xbb\xe2\xa5\x5f\x33\x50\xc8\x45\xbe\xf7\xb9\xd8\xb2\xa5\x52\x27\x9e\x4f\x4f\x68\x8f\xd9\xcf\x8e\xcb\x30\x96\x3b\x67\xff\xe5\xb7\x87\x89\xd3\x8d\xdf\x2f\x99\xe7\x9f\x54\x09\x77\xb9\x0e\x71\x1a\x7e\xa1\x3b\x3a\x94\xac\x28\xbb\xe0\x4f\xbb\x85\xbb\x12\xc7\x04\x79\xbf\x3f\xfd\x59\x49\x2f\xe0\x09\x1a\xf6\xe5\x5b\x62\x1e\x9b\x1d\xac\xa0\xf1\x67\x9a\xa2\x8a\xaf\x20\x33\x22\xfb\xd3\x0b\xb6\xb6\xc4\xf8\x7e\x5d\xa6\x6a\xfa\xe9\x0d\x72\x65\xc5\x5c\x5e\x59\x9d\x58\x9d\xdc\x1e\x45\x54\xa5\x2c\x9a\x5c\x67\x5b\x3f\x96\xb9\xa5\xc8\x15\xa2\x0c\xbf\xf5\x29\x35\x3a\xde\xf1\x22\x96\x6a\x76\xca\x22\x75\x3c\x8d\xf4\x60\x15\x8a\xf6\xea\x8b\xdb\xa5\xa4\x06\x5c\x08\x3e\x88\xbf\xec\xe9\x88\x9d\xe0\x25\x88\xc1\xb8\x1a\x3d\x40\x5a\xb3\xc2\xad\x77\xc5\xd9\xa8\x14\xd2\xa9\x64\xd1\x9e\x59\xfb\x46\x72\x4f\x12\x87\x21\x6c\x72\x84\x02\x1e\x7d\x36\xf9\xd1\xf0\x1a\xac\xc1\x90\x87\xd7\x79\x0f\x36\x48\xe8\x10\xe3\x99\x48\xf9\xfe\xcc\xf4\x41\x75\x69\xd4\x36\x65\xae\xd0\x4f\x5b\x52\x29\x8b\x0a\xd4\x45\x90\x3d\x91\x1e\x25\xa5\x82\x22\xdb\x66\xd4\x66\x24\xb4\x92\x4b\xb5\x3d\xa1\xd8\x12\xc3\xf3\x69\xcd\xe5\xfd\x62\x4f\x5d\x92\x35\x58\xc7\x73\xbf\xe6\xd7\x45\x8c\xcf\x82\x65\x73\x96\xdc\xbc\xe0\xd6\x65\x2b\xc2\xdb\xf5\xa1\x5d\x72\x35\x15\x26\xd8\xf3\x3f\x6a\x65\x52\x0b\xed\x7a\x0c\xde\xc3\x79\x8b\x14\x5b\x3a\x13\x39\xc2\x01\xff\x1f\xb6\x46\x68\x0a\x76\x22\x39\x7b\xd3\x82\x98\x42\xa7\x23\xd6\x6b\x4a\xba\x2b\x45\x01\x85\x8a\x45\xac\x89\x48\xa5\xf4\xa2\x55\x6a\xc4\x10\x2f\x65\xc4\xc4\xfe\xda\x0f\xa3\x53\xd1\x00\x5f\xda\xf3\xae\x94\x9a\x0d\x3e\xd6\x4b\x35\xb7\xab\xfd\x3a\xb2\x84\xe2\x20\xb3\x64\x9b\xd2\x1e\x70\xd5\x0e\xff\x53\xd6\xae\x8b\x96\x0a\xc1\xf2\xca\x9a\xba\xeb\x32\xa9\xd9\x75\x79\xf1\x5a\x77\xc0\xd6\x26\xc4\x2b\xa2\xe4\x11\x13\xe0\x6e\xff\x7b\x9d\x17\x88\x62\xd8\xf6\x82\x92\xd0\x9f\xdd\x1d\x97\x04\xf1\xd4\xd2\x4f\x73\x7f\xd3\xdc\x8d\xc8\x44\x8c\xa1\x92\x44\xc8\xc9\x1c\x38\x25\x95\x8a\x60\x0b\x1c\x96\x97\xff\xb2\x2d\x59\x5b\x19\x5e\x89\x2f\xcf\x4f\x3d\x71\xa1\x72\x00\xd6\x30\x0f\x30\xf2\x9f\x9a\xa8\x18\x38\x88\x2e\x25\xc4\x3d\x1f\x12\xe6\x94\x35\xe4\x40\xac\x46\x6a\xd9\x39\x29\x63\x19\xb9\x2e\xa5\x41\x6b\xfd\x76\xbc\x54\x4c\x5a\x28\x08\xaa\x4f\xea\x87\x1b\x62\xa1\xb6\x59\x67\xea\x96\x25\x2d\x72\x37\x47\x6c\x21\xdd\xca\xfc\xe9\x59\xb5\x6f\x03\xb6\xab\x70\x74\xde\xbc\xb8\xce\x63\x40\xe7\x7c\xc8\x60\xd1\x6c\x54\x0c\x1f\xdc\x5e\x3b\xa2\xf5\xa1\xf7\x15\x95\x5f\xc1\x71\x19\x4f\x56\x16\x67\x4c\xc7\x6a\xd9\xc6\x84\xd7\xe7\x1c\xb1\x37\x67\xaa\x86\xe6\x3c\x55\x49\x74\xfe\x5f\xb3\x25\xfb\xda\x48\x9a\x38\x54\x92\x77\x5b\x38\x58\x5c\x26\xa0\x33\x79\xff\x4f\x7b\xf9\x1b\x5e\x44\xad\x52\xae\x8c\x3d\x59\xfc\x73\x45\xbb\x12\x84\x5a\xc1\xc0\x36\x81\x26\x9f\x9f\x47\xe3\x56\x46\x87\x76\xa1\x30\xa9\xee\x22\x7a\x65\x76\xf2\x42\x35\x10\x1f\xf5\xfb\xd7\xee\x53\xe8\x05\x26\x72\x84\x34\xd6\xef\x3a\xab\x00\x5f\xa4\xe2\x60\xb3\x28\x30\x9e\xfb\x66\x27\x59\x24\xcc\x2b\x15\x7a\x07\x04\x09\x2f\x53\x68\xe6\x8e\xa7\x05\x1d\x52\x18\x9b\xf2\x99\xa6\x38\x07\xa0\x56\x67\x1f\xd0\x9f\xf9\xe3\xd6\x06\xd9\x41\xa1\x84\x79\x87\xb4\x47\x64\xa9\xe8\x49\x4b\xdf\xcc\x50\xc9\x99\x2e\x68\x93\x49\x15\x96\xe9\xfd\xd7\x47\xbd\x6d\x25\x91\x9f\xdc\x9f\xfa\xfa\x52\xde\xbf\x02\x95\x18\x33\xc8\xb4\x3b\x37\x2a\x3e\x4a\x22\x23\x84\xab\x9e\x90\x4f\x75\xac\x11\x28\xc6\xb6\x0e\x55\x8d\x54\x8b\x45\x10\x24\x85\x63\x97\xc6\x2b\x63\xf4\x98\x9b\x1d\xaa\xeb\xfe\x1e\x69\x72\x68\x60\x54\xe5\xc0\x48\x66\x9d\x1e\xfb\x8d\x77\xe4\xba\xeb\x1e\xec\xb5\x67\xe2\xc5\x89\xd7\x88\xee\x11\x36\xf8\x2b\x4d\x12\x29\x00\x57\x28\x43\x96\xee\x81\x1b\x66\x66\xef\x7e\x3e\x2b\x5e\x6e\x10\xe2\xd6\x95\x2c\x29\x4b\xc9\x95\x45\xae\x1b\xa7\x61\xf9\x93\x66\x29\xfe\x21\x98\x4b\x6b\x85\x34\xc2\x5e\xa4\xf0\xf2\xb1\x6b\x50\x08\xaf\x8c\x0e\x90\xf4\x4b\xc7\x9a\x95\x7f\x83\xdd\x28\xee\xef\xfc\x55\x8d\x32\x6c\x00\x1b\x04\x86\xc7\xf3\x86\x08\x71\xa3\xc7\x28\xf7\x1b\xbd\x4d\x99\x6c\xda\xa8\x14\xc7\xa1\x2d\x1e\xae\x8e\x61\xb0\x26\x4f\xc2\xae\x16\xb1\x02\xed\x6d\xed\xed\x53\xa7\x05\x3f\xee\x27\xfb\xf9\xb9\xb6\xc2\x40\x5c\x66\xfd\xe9\x15\xc9\x26\x09\x6b\x65\x03\x31\x5d\xe1\x41\xdb\xad\x8a\x6d\x6d\x5b\x4f\x9b\x92\x35\xb2\xab\x41\x32\x01\xc6\x05\xe6\xc1\xfc\xdb\xff\x9b\x3b\xa3\x4a\xc5\x91\x79\x94\x99\x2d\x0d\xd1\x56\xb6\x80\xdc\x9a\xdc\x0e\xdb\xef\xae\x9b\xe7\x94\x85\x58\xd4\x7f\x72\x97\x42\x99\xa5\x61\xcc\x47\xe6\xec\x6b\xe7\x87\xf7\x6d\x39\x97\xf7\xf7\xaf\x4a\x66\x7b\x21\xee\x27\xe7\xcf\x63\x92\x5c\x0b\xb9\x06\x06\xf5\x24\xe1\x78\x64\xf6\x91\xeb\xe3\xb3\xde\x42\x15\x31\xe6\xd9\xb4\x52\x79\x13\x8c\xf6\x04\x97\x36\xa8\xf8\xce\xbb\x6f\x74\xf0\xb5\x3a\x4e\xc2\xec\x16\x39\x56\x03\xbc\xaa\xfc\xf7\x07\xc9\xd8\xb0\xcb\xc7\x15\xfe\xdb\x56\xac\x12\xe2\x82\xfa\x7a\x8a\x43\xe6\xe6\x4d\xd2\x56\xd0\xa8\x45\x2b\xa1\xb1\xc4\xc9\xb1\xd1\x73\x26\xb6\x9c\x03\x92\x57\xb4\x87\x8e\xcb\x88\x30\x59\x4b\xfd\xcb\xe2\x8b\xa4\xdf\x69\x9a\xc4\x75\xa4\x1b\xff\x77\x6b\x63\x6e\x2c\xee\x93\x5e\x75\x9f\xd4\xca\xda\x88\x31\x22\x7b\xb8\x37\x99\xb2\x89\x8f\x81\x0a\x84\x63\xdf\xff\xf8\x96\x44\xa1\x5e\x63\x07\xfd\x6f\xbe\x3f\xd5\xbe\x69\x6c\xdd\x3d\x4c\x19\xc8\x02\xb9\x5b\x68\xee\xf6\xf8\x61\xe1\x0a\x66\x10\x8f\xe1\x9f\x78\x53\x99\x91\xbb\xdc\xec\xb8\x37\x3c\x6d\xad\x62\x18\x38\xbb\x86\x54\x48\x1f\xcc\x54\xad\x9e\xe4\xed\xe0\x18\xd4\x86\x1a\xf2\x43\x29\xca\xd5\x66\xb8\xc7\xd3\x09\xb7\x1b\x18\x25\x32\xac\x97\x28\xea\x0b\xdf\x6d\x1b\xaf\x6e\xe0\xfa\xfc\xca\x97\x56\x85\xb6\xa3\x41\x17\xcd\xff\xde\x43\x0f\xc5\x2f\x70\xaa\x2c\x6e\x4f\x7f\xb4\x40\x21\xfa\x78\xcc\xa6\x4e\x68\x6e\xbc\x7b\xb3\x72\x5e\x69\xae\x14\x7d\x9c\xfe\xc8\xad\xcb\x45\x74\xb1\x03\xde\x35\xfe\xf5\x77\x26\x30\x2c\x5d\x14\xe9\x5f\xca\xf2\x4f\xb7\x94\xd1\x02\x02\x7c\xd6\x37\x8f\x09\x60\x85\xf5\x3a\xdc\xdb\x35\x7d\xd0\x8c\x6b\xcb\x2a\xe7\x9c\x66\xf0\xf5\x8a\x39\x66\xa4\x56\x0f\x1d\xa3\xdf\x98\x1e\xb3\x1b\x10\xd1\xb1\xb4\xaa\xd2\x1b\x8e\x48\xc1\x79\x50\x83\x70\x15\xf7\x5b\xf7\x5f\x28\x11\xcb\x0d\x5a\x96\xd6\xf0\xf5\x47\x15\x40\xda\xd2\x89\x23\x28\x15\x41\x8b\x00\x6f\x71\xd8\x99\x64\x19\xd8\x15\x22\x5d\x3b\x0f\x49\x11\x4e\x94\x79\x8e\x03\x0e\x73\xe9\xc6\xa1\xfc\xac\xc8\x71\xce\x4f\xea\x2a\x91\x17\x6e\x63\x8b\x58\x8e\x67\xa2\x5c\xde\xbf\xf1\x0d\x35\x65\x03\xe4\x57\x82\x41\x98\xb5\x9a\x2f\x19\xa0\x7f\x22\x62\xba\xbe\x7c\x69\x7f\xe6\x44\x3a\x6a\xc8\x74\x24\xd8\x5f\xfe\x9f\x5b\xd4\xb6\xca\x36\x29\x89\x78\xff\x8f\xf8\x6a\x22\x3c\x2a\x22\x97\x13\x76\xc2\x6d\x36\x6e\x8b\x44\x1b\x47\x26\x29\xf0\xe0\xc4\xcc\xa1\x16\x29\x83\x48\x8c\xeb\xd3\x77\xc9\xd1\xf5\x48\x44\xf8\x54\x72\x79\x7f\x93\x32\x44\x04\x37\x5c\x14\x14\xd6\x82\x0d\x31\xe3\x98\xd4\x40\xf7\x25\xe4\x1a\x5f\x37\xa5\xf1\x47\x15\xb3\xde\x9a\x81\x85\xf1\xd3\xb7\x76\xcb\xcc\x7e\xc4\x7d\xb0\xeb\x5a\xec\x7f\xd8\xc0\x4b\x9b\x85\x48\xc6\xc2\x32\x07\xdf\xbf\x44\xfe\x9f\x35\x35\x2d\xb0\x3f\xd5\xbc\x6f\x98\x38\x46\xf8\xae\x4a\xef\xdc\xa1\x58\xba\x0a\x46\x15\x96\x39\x1f\xd7\x1c\x6a\x96\xa4\xf8\x1e\x43\xf2\xe8\x67\xf3\x3e\x09\xa2\x36\xa9\xc3\x2d\xb0\xc0\x16\xaa\x51\x35\xe9\x2a\x20\x13\x08\x54\x1c\x47\x79\xe1\xcc\x08\xa9\xec\x41\x90\xb0\x71\x68\x6e\x6c\x38\x05\xc0\x80\xde\x32\x3e\xa1\x9a\x28\x59\xb8\xae\x3c\xca\x6c\x5f\xa9\xe0\x35\x48\x27\x38\xaa\xb4\xff\x7e\xb3\xb2\xc5\x6d\x5a\xc6\x61\xfd\xfe\xff\x26\x4b\xd4\x29\xcd\xf5\x38\x19\xcd\x3f\xba\x36\x16\x95\x42\xf9\x7d\xeb\x8b\xf1\x6d\x2c\xc5\xda\xfa\xa7\x76\x8e\x90\xff\x7f\x6e\xe3\x36\x4b\xd1\x47\x61\xe6\xd0\x62\x51\x66\x99\xa6\xef\x7d\x2b\x2e\x6a\x0d\xa4\x76\x3a\xfe\xd5\xb3\xa3\x5f\x87\x7a\x64\x75\x05\x55\xac\xbe\x19\x00\x79\x21\x8a\xfc\x63\x25\x76\x2f\x9c\xbb\x86\x1e\x41\xe9\x83\x52\xea\x8b\x88\x66\x84\x8e\x5b\x3f\xa5\x34\x50\x84\x3b\x88\xf3\xb2\xed\x83\x87\xf9\xfe\xa6\x05\x87\x1b\x6a\x42\xf1\xb9\x44\x10\xaa\x85\xd6\x3d\xf3\x56\x51\xad\xfd\x98\x23\x4c\xc9\x72\x79\xff\xd4\x70\x89\x09\xee\xf1\x07\xf5\xf6\xc4\xba\x18\xf9\x1a\x62\x3a\x8f\x0a\xca\xde\x79\x9f\xe4\xb6\x67\xb9\xe4\x1e\x0f\xae\x96\x3f\x08\xc9\xfa\x62\x4c\xad\x30\x3d\x35\x75\xcd\xb3\xcd\x12\x03\x4b\x43\x15\x89\x11\x90\xdd\xb0\x48\xed\x2f\x6c\xdb\x24\xd1\x30\xfa\x48\x56\x91\xcf\x43\x22\x22\x50\x10\xf8\xa1\x33\x6a\x58\xd4\xd9\x1b\x89\xf8\xf8\x0f\xa4\x8c\x0b\x3b\x68\x91\x73\xd8\x24\xd0\xf5\x66\x76\x34\x26\xd8\x02\x3a\xae\xf0\x94\x1f\xff\xc1\xd7\x92\x25\x98\xc6\x70\x4d\xc0\x0b\x0f\x6c\x4c\x6e\x18\xd3\xb3\x34\x03\xc3\xe5\x00\x25\xda\x4d\xab\x95\xd6\xdb\x20\xdc\x13\x5d\x78\x20\x7f\xe9\xbd\xe8\x73\xf6\x60\xf9\x60\x38\xfc\x91\x3a\x75\xd1\xa8\x67\x8b\x3f\xff\xac\xe8\x6e\xa8\xe7\x9a\x94\x72\x5c\xf7\x4f\x8a\xbf\x5e\x34\x76\x17\x0b\xe2\xd8\x7b\x12\x29\x0b\x31\x3d\xe8\xc5\x73\x79\x7f\xdf\xb3\xf1\x3b\xee\x98\x71\xcd\x8c\x5c\xde\xcf\xbe\x1f\x65\xf8\x74\xc7\x28\xce\x79\x5b\x27\x48\x90\x88\xe3\xc2\xa1\xa2\xea\x2f\xfc\xe7\xcf\x45\x9b\xa0\xe2\xc9\xe0\xdb\xe6\xd6\x58\xdf\x89\x4c\x8d\x1a\xd4\xcc\x15\x3d\xcc\xc9\x6f\xef\x6f\x4e\x5e\x79\x86\xc7\x1c\x97\x5a\xf0\x3e\xe3\x7d\xf4\xb9\xbd\x0d\xe1\xa1\x8e\x34\xc8\x7a\x80\x4b\xa0\xeb\xbd\x64\xa5\x53\x10\x6d\x89\x8f\xb6\x2a\x01\xae\x18\xf2\xe9\xe1\xa2\xe0\x6f\x6f\xf9\x44\x31\xe5\xa4\x41\x55\x03\x26\x26\xa9\x8b\x9e\x97\x72\x7c\x30\x32\x5d\x23\x38\x5c\x3e\x3b\x31\x7a\x4f\xc8\xaa\x49\x75\xe3\x29\x5b\x95\xe8\x30\x54\x0b\x73\x92\x32\xcf\x0c\x53\x6c\x8b\x50\x81\x5a\x52\xfe\x45\x6a\x46\x8b\xea\x44\x7f\x8f\x47\x58\xaf\xa8\x07\x87\xac\x51\xa6\x08\x26\x0a\xca\x80\x52\xe4\x99\xd6\x66\xf3\x5b\x3d\x8a\x2f\x3f\xae\x8a\x40\x8b\xb1\x7b\x68\xe6\xb3\xc3\xa5\x64\x25\xaf\x00\x8e\x40\x44\x50\x79\x33\x83\x4f\xc7\x73\x5c\x70\x24\xf1\xaf\x7e\x25\xc2\xde\xca\x16\xcd\xe5\xfd\x4b\xf7\x26\x37\xe5\xb4\x76\xd0\xb7\x87\x0d\xd8\x7d\xe9\x06\xa9\x75\xb5\x21\xee\x28\xef\xcf\x5c\xc5\xdf\xda\x72\xcc\xe4\xb9\xf4\xa9\xb1\xd1\x03\x2d\xa2\x8a\xb4\xf3\x07\x3d\x26\xde\x09\xd7\x2f\xc0\x4f\x1e\xb1\x4e\x09\xc2\xc0\xa6\x29\x78\xda\x8f\x1a\xd1\x87\x9c\xd6\xda\x9e\xcb\xfb\xdf\x3b\x79\x61\xe2\x08\xca\x81\x85\x21\x10\x0d\xb3\xa3\x77\xd7\x9b\x72\x68\x66\xe8\x52\x9b\x69\x58\x38\x52\x6c\x8f\x3e\xc4\x74\x9e\x27\x9f\xe9\x6b\x8b\xe0\x2d\xa7\x50\x57\xf7\x66\x2f\xd8\x28\x65\xd8\x60\xe0\x39\x5a\xc2\xdc\xf4\xe6\xa0\x4c\x47\xd2\x9f\x46\x5f\x96\x0c\xc1\x28\x63\x21\x82\x36\x76\x90\x4c\x28\xb7\x6d\xcc\x1b\xfe\x8b\x94\x23\xa0\x07\x69\x65\x9b\x8a\x1e\xec\x9e\x96\x01\x6b\x35\xe1\x11\xe2\x3d\x2f\xd5\x9d\x05\xdd\xe3\xc4\x41\xff\xbc\x61\x7c\xb9\x2c\x47\x30\x9c\xc8\xae\x52\x52\xd9\xf9\x90\x51\x74\x23\xd9\xe9\xfb\xe5\x5c\x26\x62\xea\x1e\xdc\xcd\xbf\x3c\x1e\xc7\xe7\x72\x3d\x8b\xb3\x49\x22\xb4\xd2\x42\x1f\x10\x17\xb7\xba\xc2\x8e\x02\xe0\x53\xce\xf5\xfe\x79\x5f\x92\x8c\x54\x46\x84\xa7\xe1\xab\xd5\xc1\x93\x69\xa9\xdc\x32\xb1\xe6\x32\x6a\x41\x26\xb6\xff\x83\xee\xf8\x3b\x45\xa4\x49\x77\x46\x2a\x73\x77\xb2\xf9\x33\x50\x35\xac\x19\x52\xc6\xfa\x98\xca\xdc\xeb\xd5\x75\x2f\x67\x15\x7d\x56\x21\x37\xad\x33\x5c\xd6\xf7\x34\x49\x21\x3c\x7c\x2d\xc1\x4d\x78\x5c\xa1\x17\x97\x48\x35\x74\x67\xf3\x37\x4f\x90\xb2\x9c\x19\xe5\x60\x7b\xe6\xb5\x93\x0a\x89\x83\x7a\x41\xdd\x16\xa6\xcb\xf4\x67\x2e\xd9\xcc\x57\xce\x72\x62\x95\x90\x4d\x59\x38\x1f\x4f\x5d\x72\x34\xb2\x1c\x30\x55\x7c\xc7\x6f\x3a\x2e\x2f\x1f\x56\x05\x16\x61\x7f\x6a\xff\xf3\xf1\xa0\xaa\x07\x42\xa3\x4d\x49\x94\x97\x6e\x7b\x4e\x75\x13\xa9\x12\x37\x0e\x84\xfb\x2f\x61\xce\xaf\x19\xa8\x02\x55\xdd\xad\xaf\xc8\xf6\x54\xdd\xdd\xf0\x17\x0d\x53\xec\x63\x40\xd3\x49\x22\xc7\xc1\xec\xab\xd1\xe6\xec\xec\x86\x56\xf5\xbb\x47\x93\x2b\x40\x27\x8e\xcd\xa8\x4d\x19\xd0\xa6\xdd\x90\xcf\xd2\x9f\x9e\x73\xbb\xda\xc9\x47\x43\xa2\xd4\x75\x4f\x8b\x01\x24\x46\x8c\xc7\x64\x67\xcd\xe1\x7c\xeb\x92\x8a\xcd\x68\xc5\x76\xbd\xe0\x67\xac\xdd\x16\x06\x3a\x91\x12\x60\x1e\xc1\x27\x68\x1f\x72\xa9\x6c\xf7\x42\xb8\x73\x68\xb2\xe6\xfe\xaf\x87\x55\xf8\xcf\x36\x69\x05\x69\xbd\xa1\x46\xee\xcb\xef\x45\xd7\x5c\xaf\x27\x29\x45\xd3\xdf\x6a\x3a\x5f\x2c\x4d\x16\xb4\x1c\x0f\x6f\x94\x33\x62\x91\x09\x6d\xe6\x88\x77\x12\x38\x8d\x1d\x2a\x9d\x52\x2f\x72\xe6\x6e\x6e\x49\x7e\x79\xdd\x47\x1a\xbf\xfb\x4a\xe5\x08\xe4\x65\xdd\x80\xec\xb9\x6b\x5e\x53\x1b\x68\x46\xad\xde\x4a\xd8\x40\xb7\x49\x78\x6a\x81\x94\xc0\xdf\x3c\x97\xf7\x4f\x3c\x15\xdf\x00\xd4\x73\x73\x79\xbf\x49\xf1\x94\xd7\x69\xe8\xd6\x3b\xdf\xad\x9b\x44\x51\xaf\xc4\xbd\xee\xfd\x57\x84\x60\xde\x46\x8e\x83\x4a\x7c\xb7\xdc\x6d\x28\x8e\x1a\x88\xc4\x66\x86\x69\x7d\xb7\x44\x34\x17\x4c\x9b\xe0\x65\x75\x1f\xbd\x54\x3d\xe5\x18\x76\xb0\x25\xbb\x5b\xcc\x5a\x24\x5d\x3b\x88\x85\xc9\x8c\x1f\x3d\x2b\x4d\x8e\x82\x77\xf1\x99\xfb\xe2\x60\x56\x98\x2b\x8e\x34\xe3\xd5\xd9\x11\x34\xd5\x6b\x86\xa9\xf8\x8c\x66\x58\xdc\xfe\x92\xcf\x1d\x7e\x79\x8a\xbb\x8b\xcc\xd1\xa9\x89\x1d\x48\xc1\x57\xef\x83\xc9\x8a\x9f\x3d\x48\x15\x75\x98\x47\xf1\x27\xf7\xe2\x36\x95\x9d\x83\x22\x27\x8e\x94\x6d\x45\x67\x6b\x48\x6f\xdb\xc3\xad\x80\x6e\xc1\x8c\xe8\x28\x9a\xb6\x3d\x11\xdf\x3a\x8c\x9a\xc5\xe0\x07\xf7\x18\x2a\xe5\xc0\xaa\x12\x8e\x39\xf0\x6a\xe7\xf3\x9d\x4a\x26\x7f\x91\xf4\x09\x87\x7a\x95\xe4\xbb\xb4\x18\x7d\x0e\xc2\x0d\xb3\xcb\xfb\x92\x80\x03\x12\x73\xa7\xec\x78\x76\xc9\xff\xfd\xd0\xa0\xc3\x5f\x73\x56\xb1\xc2\xa3\x5e\xc1\x0c\x3b\xca\xeb\x9e\x90\x50\x6d\x90\x19\xe2\x5c\xc9\x0b\x56\xd1\xff\x3c\x21\x8b\x83\xe5\x62\x32\xb5\xf2\xac\x32\xa7\xe1\xff\x63\xa4\x5b\x19\xc9\x4b\x8e\xa0\xd9\x28\x60\x9d\x51\x30\x46\x7e\x79\x97\x6c\x0b\x64\xe9\x70\x4b\xe5\xb6\xc5\x3c\x8c\xa9\xfc\xdc\xfc\x70\x97\x62\x5e\x68\xd2\xe0\xd1\x4b\x30\xc7\xff\xb4\x2a\x2d\x1b\x37\x8f\x8d\xd5\xb8\x5b\x14\xf6\x07\x87\x61\xa2\x49\x73\x7f\xe6\xe1\xd6\x31\x61\x89\xdd\x31\x35\x21\xf3\x7d\xb0\xf3\x42\xa9\xdb\x03\xed\x0f\x0c\xa1\x82\x4f\x36\xcd\x92\xf0\x55\xe4\x80\xd5\x55\x76\xa4\xc2\xc7\xd6\x89\xc3\x70\x09\x31\xd1\x2a\x65\x6f\x1c\x2b\x51\x65\x4c\x64\x59\xfc\x67\x3d\xd6\xad\xe4\x83\xe0\x52\x70\xcf\x46\xee\x2d\xab\x36\x87\x78\x5e\x50\x6c\x71\xc6\x41\x66\xbd\x22\x41\x06\x50\xb6\x97\xbb\x46\x67\x1a\x96\x46\x67\x22\x36\x63\x53\x64\xff\x61\xc5\x9d\xb7\x84\xfa\x42\x00\xbb\x79\x81\x00\x2e\x89\x15\x02\x97\xe9\x43\xae\x2a\xad\x8a\x06\x63\x09\x44\xa6\x28\x11\xad\x4c\xa2\x61\x8b\x2b\x2a\x33\x8f\xbe\x72\xb9\xf2\x87\xb9\xc8\xea\x45\x86\x27\x04\x5a\xe1\x49\x7d\x6e\x5d\x5c\x48\x4c\xbd\x46\x42\x27\xfd\x7f\xe7\x86\x3a\xb9\x05\x0c\x63\xbd\x82\xac\xfa\xac\x8d\x97\xb2\xd2\x78\x96\xda\x9e\x19\xaa\x35\x6e\xca\xb6\x60\x2b\x07\xaf\x96\x38\x6e\x6e\x01\x32\x9d\xd8\x03\xfd\x2f\x67\x64\xb4\x0a\x4c\xa9\xfd\x7d\x3d\x31\x68\xe0\xc8\x94\xf8\x6f\x59\xca\x59\x44\x6d\xf0\x90\x14\x33\xdd\xfe\xcc\xdb\x92\x72\xa0\x44\x7a\xf8\x00\xad\xe9\x31\xe9\x8f\xea\x90\xff\xa8\xdf\x4b\xd7\xb7\xde\xe6\xb5\xc1\x3a\xbd\xbb\x31\x79\xc9\x4e\x6d\xed\x6e\x6f\x17\x60\xd8\x7f\xdf\x7e\x95\xba\xc8\x5d\xb0\xb6\x75\x07\x32\xcd\x3e\xef\x05\xa9\xb4\x45\x6e\x28\x17\x4e\x0d\x1a\x9b\xbc\x41\xec\xf0\xf3\xa7\xd6\x0f\x51\x9d\xe7\x1d\xc9\xd7\x3c\xdd\x37\x44\xd2\x0c\x82\x05\xb0\x49\x4b\x21\xfe\xff\x95\x77\xf8\x2d\x3b\xb5\xad\x1b\x88\xc5\xcf\x5f\x39\x4e\xea\xdc\xc1\x8a\x4c\x3d\x97\x7b\x26\x4b\x02\x01\xe2\xba\x50\xb9\xa6\x3e\x3b\x3e\xfe\xea\xf4\x69\xa1\x59\x97\x35\x7d\x8c\x8c\xde\x0b\x27\xc8\x5c\xde\x7f\x70\x35\xff\xbd\xb7\x11\x1d\xd6\xea\xf3\x6f\x4a\xb3\x01\x46\xaa\xc8\x25\x7d\x91\x93\xe9\xbf\xb7\x34\x4a\xe7\x0d\xb1\x34\x93\x72\xfe\xd4\xcc\xfd\x31\x6d\x85\x84\x47\x42\xea\xc2\x3b\x55\xf3\x66\x52\x32\x22\xaf\xb8\xcc\xde\xaa\xc4\xb6\xc1\xae\x6b\xf2\x44\xe3\xfe\xf4\x3f\xaf\x1e\x2e\xea\x6c\xcb\xe1\x04\x92\x6c\x97\xcc\x8e\x03\x3b\x31\xd8\xbe\x87\x86\xa9\x27\x45\x11\x18\x5a\x02\x21\xc8\xfc\x69\xe9\x18\xa9\x58\xb1\x70\x0e\xfc\x23\x83\xdf\x71\x78\xa6\xe4\xa4\x02\x4e\x27\x35\x41\x45\xd3\x86\x44\x7f\x4b\x89\xa0\xf0\x80\xfc\xa0\xa8\x18\x72\x63\x64\x09\x46\xe5\x37\x66\x29\x04\x54\xcf\x26\x60\x7b\x98\xef\x4f\x3f\xd8\x99\xe4\xb5\x11\xaa\x4d\xa9\x16\xea\xaa\x9b\x3f\x6f\x51\x44\x95\x5e\x01\x3b\x3c\xaa\xfa\xea\x27\x15\xd8\x88\x56\xb0\x41\x6b\xe1\x9c\xf2\x19\x43\x11\x57\x06\x85\x8f\x41\x2d\x41\x6b\x0a\xfe\xc9\x3a\xc5\x45\x53\x44\x70\x70\xca\x56\x6a\xdd\x53\xc9\x4f\x0f\x17\x6c\x05\x10\x79\xe3\xc9\xc6\x98\x06\x21\xb1\x5f\xce\x13\xc5\xaa\x66\x22\x46\x8a\xd0\x6a\x2f\xeb\x12\x1c\x2f\xd3\xe4\x75\x6d\xf0\x8b\x0f\x74\x29\xac\x1f\x5a\x13\xce\x9e\xd9\x89\xfb\x25\x09\x33\xf3\x34\x91\xfb\x9c\x3a\x76\x24\x69\x35\xe6\x18\x98\xe1\x0a\x76\x7b\x71\x95\xf2\xeb\x2a\xe2\xa5\x4d\x6f\x55\x22\x5f\x18\xae\x71\xde\xc8\xf8\x16\x19\xb2\xd3\x19\x0a\x96\xb6\xff\xbb\xc6\x68\x58\xde\xe7\x85\x09\x09\xf7\x1e\x10\x46\x48\xd8\x24\xb8\x0a\x1d\xe5\x85\x4b\x14\xae\x01\x36\xcd\x48\x3f\x3a\x6b\xa4\xca\xf5\xaa\x50\x8d\x21\x57\xbc\xac\x6f\x8d\xe3\xe5\xee\x62\x62\x69\xd4\xb4\x1c\x83\x44\x0d\x4f\xfa\xc9\xc7\xe4\x2d\x08\xe9\x18\xbc\x1f\x4f\x9f\xde\x1f\x5f\xe3\x45\xd3\xe3\x26\x8e\x19\x5b\x32\x23\x04\x48\x9b\xff\xdb\x6c\x54\xc6\x4c\xef\x9a\x16\x3c\xca\xea\x8b\xb1\x60\xa4\xb5\x03\x3c\x41\xba\xa5\x83\x01\xeb\x04\xc1\xae\x7a\x40\x57\x34\x58\x3c\xcd\x07\x06\x89\x3f\x9b\x10\x43\x59\x57\xd5\x47\xce\xdc\xae\x66\xf3\xa1\x5e\xcc\xc4\xea\xff\xe9\x76\x45\xba\xcb\x18\x0d\x65\x93\xe9\x9b\x1a\x64\x3a\x91\xe5\x18\x90\x4d\xf2\xf0\xfd\xd1\x27\xb6\xa1\x6c\x3d\xb3\x5b\x54\xd7\x26\xd6\x4b\xe2\x98\x7d\x6d\x88\xe2\x40\x90\xf0\x0d\x0a\x1e\xd0\xef\x14\xa4\x37\x58\x7b\xc1\xf2\x17\xcb\xfe\xc5\xb5\x4a\x6c\xe2\x15\x1a\xb5\x2c\xca\x12\x29\x50\xe7\x29\x53\x3b\x0a\xe7\x47\xc8\xd5\x1c\xf2\x91\xb2\xc4\x90\x0d\x2c\x38\xff\xf8\xd3\xc9\x22\xde\x20\xa6\xd9\x8b\x13\x3f\x3a\xfb\xc0\x6a\xe9\x7d\x9b\x0e\x8e\xc6\x2b\x99\xcb\xd6\xab\x12\x55\xaf\x04\xbe\xb1\x7c\xf9\xae\x7d\x6c\x94\x74\xf4\x87\xe9\x50\xa4\xbb\x59\x62\xcb\x33\x96\x50\xbe\xe0\x2d\xc9\x53\x40\x47\x55\xa2\x73\x0f\x41\xb1\x67\x77\x2d\xa8\x03\x57\x78\x95\x0e\x98\x53\xfa\x9c\x92\xc7\x52\x62\x18\xbb\xb1\xad\xe7\x2c\x2b\x59\x81\xe8\x96\x26\x58\x3d\xc9\x3b\x73\xf6\xe2\xd1\x12\xa2\x7a\x8f\x27\xd0\xae\xf4\x73\x92\x6f\xbc\x41\xa9\x49\x4a\x08\xde\xd1\x55\xc3\x62\x12\x3b\x0e\x95\x6c\xbb\x3a\x55\x00\x11\x72\x60\xc5\x92\x7a\xae\x21\x59\xb5\x77\xb4\x73\xb1\xec\x37\x27\x45\xdb\xdb\xa9\x85\xb1\xc2\x5f\xff\x58\x56\x2e\x20\x37\xc2\x6d\x32\xff\xd6\x10\xb3\x5d\x50\x71\x00\x9f\xbb\xd4\x98\xf5\x6a\x45\x5e\x42\x7d\x41\x49\xce\xa9\x89\xa3\xc6\x4b\x29\x39\x9c\xcf\xc6\xb7\x73\x6a\xfb\x39\x95\x46\xed\x02\xb3\x84\xff\x7f\xb5\xc3\xaa\xb5\x52\x88\x4f\x7c\xf5\x4a\x29\xc8\xd1\x34\x3d\x16\x9c\x5a\xbf\x3e\x20\x82\x1c\x79\xb2\x0c\x48\x98\x9f\x93\xee\xcd\x50\x2c\x00\x3e\x2b\x4a\xbc\xb8\x43\x2c\x0d\x4f\x01\x9f\x99\xf4\xe7\x96\xa9\xf6\xcd\x16\xb8\x54\x73\x65\x76\x58\xc0\x28\x07\x36\xb0\xac\xa0\x78\xce\xd8\xab\x47\x49\x6f\xd0\x03\x16\xaf\xbf\x5e\x4c\xc8\xa7\x4e\xcf\xd9\x94\x0b\xcf\xb2\x9d\x3b\xd5\x30\x02\xab\x14\x2a\xf9\x3f\x23\x22\x51\x2a\x94\xc7\x20\xfa\x17\xbd\x11\xbd\x7f\xcd\x73\xc3\x91\xdd\xd5\xf7\x85\x38\x1b\x30\x98\x83\xa2\x72\x92\x02\x1c\x1a\xc4\x71\x29\x03\x4b\xa9\xfe\xf4\x7f\xbf\x15\xd7\x8d\x35\xee\xfb\xee\xe7\x56\xc1\xdf\x9b\x9b\x27\x25\xd3\xd4\x61\x72\xdf\x3b\x37\xc0\xa5\x1e\x3c\x2f\xff\xbb\xbb\xa4\x3c\x1c\x03\xdc\xa4\xfc\x87\xcf\x5d\xa5\x74\xa3\x61\x96\xcc\x00\xb1\xf1\xa9\x1f\x1d\x94\xdc\xd8\x0d\x62\x62\x58\xf1\xd9\x19\xab\x14\xd1\x01\x68\x9e\x42\x02\xf2\xb4\x6d\x1c\xa2\xb2\x30\xd6\x81\x1b\xf9\xf4\x38\x49\x90\x81\x3c\x13\x8e\xa5\x3b\x1f\x8b\x51\x8d\x2a\x81\xb2\xf7\xef\x26\x25\x17\x6b\x2f\x65\x42\x27\x11\x6c\x83\xfb\x3e\x1c\x93\x5c\xec\x30\xdf\x0a\xce\xb1\x77\xe2\x3b\x06\x4c\x6a\x81\x3f\xb3\x78\x61\x3c\x12\xd5\x09\x86\x60\x96\x9e\x0f\x43\x67\x73\x9e\x27\xea\x7b\x1f\x47\x17\x91\xe0\x84\xce\x54\x4f\x18\x13\xa6\x82\x02\xf8\x5f\xd2\x30\x4e\xf9\xb6\x67\x91\x22\x11\xa2\x58\xb8\x3d\x8f\xbe\x19\x0a\x43\xa8\x89\x19\x38\x88\x57\x86\x87\x09\xa1\xb6\x6d\x86\x74\xec\x9f\x29\x68\x93\x89\x39\x1a\x99\xfe\x60\x6b\x6c\x5a\x05\x87\x0f\xa1\x56\x22\x45\x27\xf3\x8a\x8a\x22\x71\xe2\xb0\x28\x17\x57\x1e\x54\xa6\x62\xd4\x0e\x71\x92\xaf\x8e\x0d\x89\x8f\x06\xb2\x92\x09\x5f\xa9\xe1\xca\x9c\xaa\x48\xb5\x60\x83\x44\xec\x8e\x69\xab\x2f\xb5\xa9\x33\x25\xf8\xcc\x2e\x2a\xe5\x6e\x5a\x32\x25\xb9\x58\x72\x79\xbf\xb9\x6b\x8c\x8c\xf8\xb8\xc6\x3d\x1e\x2a\x07\xfb\xff\x81\x99\x12\x15\xa3\x84\x2c\xd9\x7a\xd0\x3a\x17\xc3\x09\x5d\x33\xe4\xd6\xa8\xa9\x2d\xe1\x67\x1e\x2d\x54\x51\xe2\x8e\x78\x73\x6c\xf4\x61\x82\x05\xa2\xc2\xaf\xd7\x6d\x8b\x26\x19\x56\x2f\x93\x50\x8a\xc3\x1f\x4e\x50\x3a\x59\xc4\xf3\xb9\x95\x98\xb6\x99\x92\x02\x4d\xaf\x70\xbd\x65\x66\x88\x64\x51\x58\x43\xc4\xa9\x04\x3b\xc2\x7f\x5a\x91\xce\xc4\xc9\x9d\xd5\x78\x78\x7e\x64\xe3\xf0\xe8\x44\xe0\x44\x89\xd4\x7b\x4f\xa8\xc4\x56\x4b\xa6\xb0\x6c\x5e\xcc\xd7\x2b\x28\x27\x83\xdd\xbb\xf5\x7d\x65\xac\x49\xad\x92\xa8\x16\xec\x5c\xde\x6f\x7b\xe5\xa2\xe8\x72\xab\x83\xc0\x52\x37\x2b\x42\xfc\x5c\x2e\xf4\x2e\xfc\xc5\xf0\x68\x96\x62\xb9\x75\x7e\x5f\x99\x5b\x0e\x86\x84\x40\xcb\x85\x32\x2c\x35\xe3\xb8\xb0\xa9\xd6\xa8\xd0\xb9\xdf\x78\x38\x7e\x5a\x25\xd3\xab\xc0\xe8\xff\xdf\xb7\xc6\x33\x1f\x1b\xb3\x22\x65\x15\x48\xca\x08\x7e\xc4\xbe\xa3\x52\x62\x29\x75\x1c\x5e\x3c\xfb\x83\xb7\x27\xce\x2c\x20\x94\xa6\x37\x1c\x96\x8b\x09\xcf\xe1\xa0\xdc\x2d\x07\x65\x4e\x91\x63\x73\xbe\x54\x66\x93\xc8\xc1\x26\x8c\x11\x57\x68\x9e\x2b\xfb\x62\x38\xc9\x05\x4a\xe0\xfe\x17\x94\x6c\x13\xc9\x1b\x45\x68\xfa\xff\xf2\x49\x43\xf8\x31\x98\x9b\x33\x49\x95\xff\xa5\xc6\x69\xd5\x3c\x90\x61\xab\xe4\x1a\x71\xa2\x4f\xe6\x17\x7b\x94\x53\x84\x72\x0a\x00\x1f\x2e\x67\x57\xcf\x96\x8c\x7b\x60\x8a\x42\x34\x60\x02\xf8\x6f\x0d\x49\xde\x10\x35\x62\xe9\x34\x9c\x69\xff\xb1\x45\xc0\xeb\xc4\x34\x5d\x0a\x4b\xaa\x63\x50\xf2\xb3\xd0\x2a\x66\x35\x03\x9b\x95\x88\xb1\x9d\xfe\xdb\xb4\x9a\x9d\xca\x20\xe9\x08\xce\x9a\xe7\x9e\x4b\x12\x8b\x29\xd3\x85\xcb\x88\x7a\x13\xfc\x7c\x96\x4c\x56\xd4\x89\x23\x67\x0b\xa4\x26\xb5\xa8\xba\xd9\x1c\xb5\xdd\xf8\x43\x7c\xc7\x8c\x35\x31\x25\x12\xbc\x90\xa5\x31\x50\x5a\xe8\xe5\x84\x9d\xfc\x7c\xd5\x80\x56\x84\xb5\x71\x51\x00\xdb\xdd\x22\x1f\x40\x6d\x53\x62\xd4\x29\x97\xf7\x0b\x4f\x89\xad\x42\x4d\x41\x5a\xbd\x76\xab\x6a\x5c\x4d\x70\xd2\x5a\xd7\xff\xa3\x14\x03\x1f\xbb\x72\xe5\xf2\xbe\xbb\x2c\xfe\x6b\xcb\x1e\xc0\x26\xd2\x91\xf5\xde\x43\x4a\x3f\x6c\x15\x19\xe2\x6c\x76\x8f\x01\x49\x03\x56\xf8\xbc\x03\x75\x70\x64\x95\xe8\x92\xda\x76\xce\xf4\x61\xe2\x79\x0a\xcb\xfb\x3b\xa6\x27\xdf\xd5\xd4\xd6\x69\xd1\x18\x37\xbd\x65\xc2\x04\x09\x8b\x87\x29\x43\x50\x55\xab\x84\xa6\x35\x4d\xc9\xa3\x88\x19\xd8\xab\x20\x57\xc0\x34\x53\x6a\xf0\x9b\x7f\xfc\x8e\x70\xcb\xe9\x75\x5c\xcc\xb9\xca\xff\x29\x6a\xb4\x22\x62\x15\xce\xce\x4b\xbf\x3e\x33\xf9\xa3\x4a\xc4\x33\x09\xb2\x88\x6c\xbc\xf6\xfd\x16\x21\xac\xa2\x1e\xa7\xf4\xad\xef\x51\xdd\xc0\x4c\x13\xeb\x53\x6a\xe0\x1a\x7a\xfe\x95\x17\xc9\x22\x5c\x25\xf3\x75\xf2\x9d\xc3\xc3\xef\x68\x18\x90\x9c\xd4\xe1\x6e\xfe\x25\x62\x75\xcc\x98\x01\xb3\xad\xd4\x6f\x6e\x97\xce\xe5\x22\x43\x24\x78\x61\x97\x6e\x54\xc4\x4d\x7a\x15\xe8\x51\x1c\x34\xbd\x20\x9d\x2c\xe7\xb8\x7b\x2e\x6f\x54\x7a\x9f\x95\x1c\x2d\xc1\xbd\x30\xdf\x9f\xfe\xc1\xb3\xc9\x3b\xd4\xf0\x4a\xa2\x64\x4e\x6d\x7f\x5c\x18\xf3\xd6\x90\xcd\xe3\xba\x8a\x4b\x15\x13\x6b\x83\x7a\xbc\x1c\x85\xa7\x38\x76\x9b\x6c\x57\x42\xaa\x08\x52\x56\xd2\x97\x2a\x66\x02\x51\x02\x36\xaf\x34\xfe\x67\x68\x54\x54\xe2\x52\x38\x5f\x48\xe5\x0f\x2a\x52\x29\xab\x4a\x4a\xc0\x9c\x10\xc5\xef\xc7\xc7\xa4\x34\x29\x2c\xbc\x7f\xc3\x75\x7b\x49\x63\x83\x44\x3e\x2b\x95\xc4\x40\xf2\xb5\x03\x3c\xef\x64\x9e\x01\xce\x4d\x33\x8f\x8c\x12\xfd\x99\xe5\xa2\x4a\x08\x35\x7d\xdc\x2d\xa8\x2d\xc5\x22\xd1\x60\x7d\xf8\x83\xd7\xab\x84\x48\xe1\xea\x25\x4c\x05\x61\xe6\xf4\x5d\xe5\xc6\xe2\xf6\xf1\x51\x53\x96\xba\xe1\xbe\x8b\x93\x53\x5c\x6a\x09\x37\x5b\xbe\x26\xbe\xdf\x93\xfc\x8b\x8b\x90\xc3\x45\xc4\x7c\x24\x78\x50\x1b\xa3\x3e\x9c\xe7\xa8\x66\xa6\xaf\x8c\xf9\x60\x3a\xa9\xa3\xb8\xa5\xfe\xe3\x71\x35\x3b\x4b\xc3\x21\xe9\xfe\x8d\x13\xdc\x51\x73\x01\x43\x56\x1f\x96\x40\x62\xff\xb3\xc3\x15\x44\x85\x96\x4a\xa1\x44\x3b\xfd\x99\x17\xeb\x1a\x53\xca\x5c\x91\x5f\xed\x4f\x79\xb9\x59\x69\x5b\xa4\x81\xee\x3c\x65\x6d\x56\x90\x85\x2c\x9e\xf2\x95\xba\x49\x66\x37\x06\x35\x2b\x8b\xd4\x74\xa3\x5e\x54\x98\x78\xb8\x8a\x85\x2d\x8b\x7f\xa3\x12\xae\x6e\x12\x17\x33\xe8\xde\x04\x61\xf4\xd5\x0b\xeb\x6e\x0d\x7e\x37\xf9\x47\x77\xc6\x49\x5b\x72\xd1\x99\xba\x60\xef\x48\x19\xc8\xf1\xe0\xe5\xcd\xdc\xd3\x28\x29\xad\xab\x98\x57\x6f\xf9\xfe\xd4\xf4\x59\x0d\x62\x43\x05\x97\x30\x65\x84\xe7\xb1\x34\x9e\x18\xa3\x7c\xb0\x32\x27\x81\xa7\xbb\x76\xc6\x15\x08\xae\x73\x33\x4d\xdf\xf5\x4a\x04\xe2\x19\x32\x65\xf0\xf0\x51\x75\x3f\xe8\xa4\x4a\x74\x0f\x99\x62\x1b\xf5\x0e\x6a\x52\xaa\x56\x68\xcf\x82\x0f\xf3\xab\x65\xc9\xbb\xaf\x66\x60\x34\xa0\xb1\x7b\xfa\xdb\xc3\xd5\x04\x06\x98\x94\x85\xd0\xe4\x94\x37\xe3\x0d\xce\x67\x68\xb0\xad\x3e\xaf\x68\x55\x34\x04\x07\x61\xd0\xb4\x72\x49\xfa\x43\xdb\x22\xee\x43\x09\x92\x5a\x92\xcb\xb4\x67\xad\x14\x42\x00\x06\xc3\xf0\xa0\x96\xf0\x05\x7a\x33\xb6\x2c\x6c\x9a\x52\x3e\x7b\xe6\xfb\xeb\x23\xb7\xcd\xe9\xed\xb9\xbc\xff\xd3\x03\x89\x8a\x7d\xc9\x92\x29\x79\xb5\x46\x1e\xae\x24\x48\x7a\x8e\x27\xf4\x23\xc1\x62\x78\x7d\xae\xea\xee\x4f\xc2\x70\xe8\xf4\x8e\xa1\xbc\xca\x2a\x31\x64\xdb\xa1\x44\xf7\xe3\x86\x61\xd1\x1d\x02\x97\xc1\x92\x63\xb1\xbe\x02\xd5\xa1\x13\x99\x9b\x5e\x91\x30\x3e\x2d\x68\x0d\x83\xe5\x39\xc6\x52\x28\xf2\x38\x74\x0d\x79\x3c\xce\x81\x63\x54\x62\x7b\x65\xbe\xff\xae\xd2\x39\x22\xa6\xa3\x52\x38\x78\xcc\xae\xea\x4b\xfe\xc4\x8e\x19\xd3\xba\xb8\x41\xcf\xc5\x4a\x0e\x8f\x83\x35\x86\xdd\xc8\xed\x31\xf3\x8a\x22\x82\x26\x8e\xe3\x85\x74\xf8\x4f\xf5\x34\x45\x47\xb4\xe6\xca\xcc\xfc\xe3\xd9\x18\xdc\xf0\x2c\x13\xd5\x8a\x9e\x09\x97\xcd\x4f\x86\xab\x82\x1c\x56\x0a\xfb\xe6\xcc\x05\x2c\x3e\x9e\x05\x6a\x10\x94\x22\x0d\x4a\x34\x8f\xee\x88\xc1\x5e\xcf\xc9\x06\xf9\xe6\xf2\x38\x72\x93\xfd\x54\x4b\xdc\xf8\xf6\x70\x42\x51\x66\x43\x8b\xe4\xc6\x47\x2b\x15\xcc\x34\x22\x6c\xeb\xc7\x2c\x95\xb2\x15\x51\x95\x42\xbd\x36\xf1\xad\xe4\x2f\x75\x31\xaa\xf0\xeb\xf2\x67\x2d\x12\x57\xcd\x45\x2e\x71\x5c\xae\x39\x82\xd6\xf3\xd5\xe4\x6b\xa8\x62\x43\xf0\xb8\x20\x82\xbb\xf7\xe8\xc8\x78\xa3\x86\x33\x89\x5f\x2d\x52\x4a\x5e\xf4\xff\xd1\xf5\xf5\x71\x52\x1c\x65\xfe\x99\x9e\x11\x11\x09\xaf\xcb\x42\x80\x10\x82\x84\x10\x60\xd6\x65\x81\x65\x89\x88\x84\x10\x42\x08\x61\xf6\x00\x09\x26\x18\xa9\xe9\xa9\x99\xae\x9d\x9e\xae\xa1\xba\x7b\xf6\x45\xc4\x88\x88\x18\x11\x23\x3f\x44\xe4\x72\x11\x63\xc4\x88\x11\x23\x26\x88\x31\x22\xe6\x38\x8c\x88\x39\x8c\x31\x87\x39\x2e\x62\xc4\x88\x18\x91\x8b\x18\x31\xb2\xed\xef\xd3\xf5\x54\x77\x55\xd7\xec\xdd\x3f\xf7\x91\xc0\xee\x4c\x77\xbd\x3c\xcf\xf7\xf9\xbe\x30\x12\x4b\xfd\x0f\x9d\x1d\x1c\x37\xc8\x58\xf0\xc8\x47\x6a\x61\xdc\xeb\x48\xd1\x57\x31\xcb\xd4\x25\x7b\xa4\x7e\x1f\xbb\x91\xb1\xde\xfe\xad\x8a\xc6\x90\xb8\x26\xf5\x19\x48\x7f\x53\xb7\xf5\xd3\xaa\x4f\xe8\x57\xe2\x18\x9f\x45\x4d\x7a\xf4\x08\xc4\x78\x01\xb6\xb8\x74\x92\x8a\x19\x56\x19\xc1\x61\xe7\x12\x38\x67\xe2\x63\xcd\xcc\x9b\x75\xeb\x7f\xfb\x43\x2a\xfc\x16\xde\xe4\xb4\xc0\xdd\x1f\x6e\x7d\x5d\xc3\x9f\x30\x72\x23\xbd\xf3\xd8\x4b\x9a\xe7\x96\x67\x87\x37\x75\x64\xd1\xd0\x6b\xbc\xf7\x89\x64\xe1\x5b\xe0\x81\x54\x0c\x71\xaf\x5a\xe0\x41\xad\x5b\x22\xd9\x79\xb3\xf9\xb9\xb2\xbb\x09\x9e\x74\x78\x8d\x44\x76\xb7\x17\x5f\xd2\xe8\x7d\x1e\xa5\x60\x57\x9e\x7a\xa7\x12\xdf\xdd\xe1\xb3\x0a\xb2\x11\xe7\x55\xee\x52\xac\x0d\x2c\xc4\x78\xd3\x7a\x43\x90\xc4\x5d\xf3\x5e\xa9\x4f\x53\xce\xf5\xe0\xa0\x9f\x7d\xbf\x43\x6a\x51\x78\x59\xf2\x79\xcd\x1a\xa2\x29\x96\x05\x4f\x90\x5f\x96\xaf\x3e\xad\x2d\x24\x8c\xb8\xa2\x18\x58\xb8\xc7\x23\xca\x51\x0d\xdb\x14\xea\xb6\x37\x94\x21\xa3\x47\xab\x9c\xc7\xd6\x9b\x7e\xfc\x51\xc5\x02\x90\x94\xc2\xfb\x7b\xce\x81\xc1\x71\xc5\x2a\x46\x9d\xc6\x7b\x5e\xad\x0b\x7d\x62\x3c\x5e\x1d\xea\xb0\x05\xfb\x64\xc3\x53\x6e\xca\xe6\x82\x4f\xdc\x2f\x37\x2b\x2d\x16\x45\xa1\x99\xfa\xf4\x71\xdd\x73\x03\xf3\x50\x1a\xb5\xdf\x30\x16\x3c\x39\x54\x15\x5b\x0b\xae\xc2\x23\x17\x94\x18\x79\x07\x94\x83\xd9\x5c\x60\x6d\x93\x3d\x37\x76\x3c\xcb\x77\x09\x72\x81\x63\x65\x6c\xd7\x62\x63\xc2\x1e\xad\x42\xdc\x8a\x60\xb9\xbc\xe7\x69\x4d\x48\x62\xdb\xbe\xeb\x31\x05\x61\x5f\x73\xb3\x9a\x2b\x69\x12\x11\xf7\xb8\xed\x21\x59\x07\x84\xe5\x7e\x49\x50\xff\x6f\x78\x03\xf4\x8f\xb7\xd2\x8a\x8b\xea\x3d\xe1\xcf\xaf\xd4\x13\xd2\x3d\xe4\x51\x21\x19\xea\xcd\xbc\x4b\x81\x5a\xf2\xa8\x92\x47\x70\xc9\x0c\x5b\xaf\x58\x33\xe3\xaa\x67\x81\x84\xf0\x75\x85\xd9\x87\x5c\x0c\x59\x54\xe3\x5e\x14\x50\x24\x02\x69\x6a\x66\xc9\x6a\xdd\x24\xac\x40\x3b\xb1\x6d\x27\x9c\xe2\x7e\xbe\x56\x6b\x26\xec\x4e\xd4\x2d\x60\x9c\xa0\x79\xde\x0d\x4a\xcf\x58\x13\x7e\xd3\x88\xe9\xc9\xc8\xbd\xa9\x49\x17\x15\x3d\x03\xb7\x5c\xef\x35\xca\x02\x15\xe6\xd5\x12\x58\xd0\xa4\xff\xfb\xb8\x4e\x0e\x36\x51\x01\xbb\x82\xba\xbf\xe9\x59\x58\xb9\xb7\x45\xd3\x97\xf0\x9f\xec\x16\x44\xf3\x12\x43\x4e\xc1\x85\xb9\xf6\x0f\x76\x5f\xad\xfa\x63\xe4\x82\xd5\xaf\x36\x2a\x22\xa7\xf0\xd8\xa7\x05\x01\xb2\xef\x98\x24\x87\xa2\x65\x95\xde\xe0\x28\xdc\x52\xd7\xb4\x28\xe5\x97\x44\x6a\xc8\x13\x13\xb5\x93\x80\xa1\xce\x3c\x66\xac\x5b\x70\xfb\xa3\x79\x51\x59\x0b\x56\x86\xb1\x07\xf6\x44\x26\xfe\xf3\x7b\xae\xd5\x7f\x0e\x75\x4a\x59\xc4\x22\x0e\x5c\x26\xfd\x86\x52\xe9\x29\x89\xcd\xf7\x6e\x50\xcc\x85\xc0\xca\x01\xba\x90\x3f\x9d\x1e\xdf\x17\xc6\x94\xc5\x8e\x15\xae\x50\x98\x36\x74\x3d\xae\x54\xaf\x16\xe2\x55\xf9\x66\x48\x89\xcc\xde\xe2\x21\x13\x39\x09\x73\xae\xff\x6a\xbf\x26\x66\xff\xd7\xd9\xd3\x18\x7b\x5e\x83\x73\x6a\x25\xb6\x71\xd5\x02\xe5\x44\xf2\x6f\x7c\x7d\x97\x12\x37\x5e\x8a\x84\x21\xe7\x77\x0c\x55\xf0\xcc\x7c\x1e\xdc\x70\x3f\xf8\xaa\xd6\x8d\xd4\x50\x01\x47\xbd\x63\xd7\xd3\x63\x94\x6b\xc5\x35\x09\xdf\xe4\xf2\x64\x58\xaf\xe4\x7b\x21\xc0\x84\x0c\xb6\x7c\xb4\x34\xaa\xf7\x75\x35\xcc\xe0\xfd\x9a\xa0\x06\x85\xaf\xc7\x4b\x0c\xfd\xde\xbb\x45\x1b\xc4\x71\x98\xd3\xb3\x71\x1c\x0a\x6e\x64\x36\x5f\xa7\x8a\xeb\x3b\x29\x2b\xd7\x0d\x26\xbe\xdd\x4f\x3b\xf7\x3b\xaa\x7d\xcd\xdb\x8c\x87\xb6\x27\xf7\x64\xb9\x03\x7b\xc4\x4e\x7a\xcf\xfd\x75\x93\x9c\xb6\x22\x2f\x9b\x0b\xe6\x6b\x01\x4e\x90\xe5\xc3\x87\x05\x92\x8b\xf4\xfe\x9d\x5a\x25\x89\xba\xa7\xae\x5d\x1b\x2e\x88\x69\xc2\x02\xe0\xd6\x05\x75\x94\x4e\xe3\x4b\xab\x64\xe2\x0d\xf6\x54\xf1\xcb\x4e\xc5\x90\x1f\x31\x48\x9c\xe9\x9d\xd2\x3f\xfc\xd1\x37\xde\x98\xcd\x05\x63\x76\x25\xc7\x7a\x73\x66\x09\xbb\x8c\x7b\x2f\x44\x3a\x47\xc2\x1d\xcb\xc2\x3f\x5b\x55\x14\xa6\xab\xd3\xa3\x34\xba\x54\xa5\x75\xbc\x76\xf0\xf0\xec\x16\xc0\x25\x22\x58\x69\xf2\xa0\x61\x3a\x27\x93\x13\xc3\x96\x8a\x1c\x20\x9b\x2b\xe5\x47\x1d\x57\x8a\x49\x1f\x47\x15\xfa\xa9\x71\x7a\x5c\xbb\x1b\x95\x67\xc6\xaf\xb7\x82\x73\xda\x9d\x0c\xf9\xaa\x98\xf6\xe0\x8b\x0a\x6c\x40\x4b\x62\xb6\x9d\xf9\xe0\x69\x0d\x07\x05\xab\x81\xb0\xd4\x15\x70\xf4\x6b\x1d\x51\x7a\x76\xa7\xc3\xa2\xa4\xfb\xef\x0e\x8b\x4b\xa2\x22\xae\xdb\x3a\xe9\x6e\x0d\xa4\xbe\xd1\x44\x70\xf7\x64\xfa\xc9\x7c\x38\x07\x55\xc2\x1f\x35\xfb\x90\xbc\x76\xf2\x4d\xb2\x55\xff\xe8\x5a\x19\x16\x62\x5a\x88\xcb\x75\xf5\x2d\x9a\x3d\x33\x46\xfb\x3d\x02\x00\x9e\xca\xdf\xe4\xef\x9a\x34\x5a\xaf\x69\x75\x22\xd6\x83\x1d\x5c\x2a\x09\x84\x54\xae\x8b\x89\x73\xf5\xf6\x62\xe6\x6c\xa8\x49\xc8\xd2\x08\xf2\x77\x4d\xec\xf0\xf2\xf5\xb6\xfb\xeb\x64\xa4\xe1\x25\x4b\x90\xcd\x33\xda\xc4\x4b\xfe\xed\xeb\x8a\x80\xd9\x43\x2c\xeb\x71\x37\xdb\xe0\xea\xd7\xb5\xec\x79\xe2\xc4\x80\xa3\xb1\x6a\xb2\xa4\xd6\x42\xd6\xdf\xcd\xb2\xce\x9b\xc1\x7d\x38\x6f\x7b\x54\x8f\xb8\x20\x76\x41\x98\xba\xa4\x27\x3d\xd0\x97\x99\x21\x75\x22\xe2\x48\xfa\x57\x4f\x28\xe6\xdc\x90\x1f\x6e\x5c\xea\x0f\xf2\xe4\x5b\x0a\x15\xe2\x10\x5e\x2e\x08\xa2\xd5\x66\xcd\x22\x1b\x72\x5b\xc0\x8b\x2b\x3c\x0f\xdb\x76\x4b\x90\x95\x51\x17\xd9\x58\x5d\x75\xb3\x9e\x54\xb1\x85\xb0\xa6\x10\x6c\xfd\x6f\xbd\x01\xcb\x74\x85\x47\x99\x12\x51\x61\x14\x16\xbd\x33\x5a\x1f\xb3\xb2\xb9\x60\x61\xff\xe4\xf2\xb4\x89\xe7\xd9\x38\x5b\x76\x68\xa7\x23\xbe\xef\xb6\xe5\x8d\xda\xd1\xcb\x01\xe2\xf0\xf9\xf7\x3b\x25\xb9\x60\xdc\x62\x9d\x97\x5c\xee\x02\xcd\xb1\x1b\x39\x65\x31\x11\xbf\x4b\xf3\xd7\xe5\xeb\x1d\xa2\x92\x0e\x3f\xac\xdd\x89\x85\xf0\x8d\xd2\x38\xe5\x6e\xc1\x2e\x3d\x92\x9a\x56\xab\x90\x0b\x14\x50\x45\xba\x8f\x2a\xef\x06\x5f\x9d\x55\xcb\xe3\x9d\x30\x6b\x76\xf8\x56\x7f\x71\x49\x64\xa7\x46\x79\x4e\x57\xad\x69\x54\xe0\x75\xc5\xad\x3f\x58\xbc\xbd\x2e\x7d\xad\x14\xa5\x36\x87\xdf\xe3\xd6\x85\xf0\x74\x3f\x40\x7d\xee\xac\x13\x5d\x89\xbd\xe7\xdf\xc1\xff\x7c\xce\xec\xf0\x6f\x7d\xed\xcd\x78\x13\x5b\xb4\x5a\xe7\xb1\xd1\xda\xaa\xb6\x9b\x4e\x9c\x37\x9a\xeb\xcd\x8c\x5c\x0f\xe8\xe2\x9d\x94\xe1\x38\x98\xcc\xb8\x51\xcd\x43\x05\x43\x73\x7e\xb9\x6f\xec\x81\x43\xcd\x85\x8a\xfd\xa5\x3d\x83\x15\x45\x45\xb8\x9f\x02\x7b\xae\xfc\x55\x36\x72\xa5\x54\x2f\x58\xb9\x8c\x97\x55\xd9\xdb\x39\x09\x53\xdf\xff\x8d\x42\x87\x79\x3b\xa6\xac\x24\x3c\x17\xd2\x17\x14\x52\x02\xd7\x28\x79\xc8\xe1\xfd\xf3\xa5\xc7\x34\xb2\x8b\xd7\x5d\x21\x32\xe3\xe2\x3f\x1f\x56\xa4\xa0\xd4\x8f\x59\x96\x6f\x9f\x16\x67\xb0\xb4\x2f\x6f\x9f\x08\x2d\x6f\x70\xf7\x12\x5d\x78\x8d\x2a\x55\x3b\x2a\x7b\xd3\x3f\xd6\xdc\x12\x39\x3a\x37\x31\x9b\x0b\x8e\x4e\x56\x3c\xb8\x44\x3e\x63\x6a\xee\x72\x79\x27\xf9\x2e\x00\xf7\xa9\xf2\x9b\xf2\x0f\x6b\x84\x81\x60\xea\x81\x66\x38\x8b\x6c\xbf\xcb\x67\x10\x00\x50\x0b\xc4\x9d\x51\xe2\xf1\x2c\xc6\xef\x81\x1f\x9d\x5d\xc4\xc2\x1b\xb8\x9e\x4e\x6a\xfc\xa0\x49\x9b\x9a\xf1\xbe\x9c\x40\x54\x13\x9f\xd2\xbc\xf9\xb8\xea\xd5\x8e\x22\x29\xd5\xc6\x09\x4a\xc4\x05\x5c\x3b\x7c\x2e\xe7\x44\x43\x07\xd3\x83\xb1\x4d\xea\x35\x11\x92\x17\x35\x54\xfc\x0f\xff\xd8\x51\x17\x22\xc4\x6d\xd7\x63\x17\x12\xe3\x5f\xc6\x5f\x2d\x9f\x01\xff\x72\x56\x87\x66\x93\x46\x6d\x9b\x76\x8a\x56\x26\x28\x36\x2a\x26\x73\x88\x71\xcd\x64\x2e\x58\xa3\xc0\xe7\x3c\x85\x8b\x5f\xaf\xa2\x68\xfe\x06\x98\xd4\x67\x6f\xe5\xde\x8e\xfa\x9a\x7f\xd7\x69\x5d\xa2\xed\xfa\x15\x29\x87\x30\x52\x2b\x65\x65\x5d\xa1\x79\xc1\xed\xf9\xc3\x04\x09\x7f\x77\x63\x0b\xbb\x65\x82\x15\x92\xe2\xb3\x7b\xe4\x3f\x6a\x99\x3e\x6d\xf6\x0c\x30\x67\x5f\xff\xb2\xa4\x51\x11\xa6\x04\x0d\x86\xbf\xe8\xc6\xfb\xe4\xa3\xae\x61\x96\x47\x1e\xe1\xb7\xe5\xe3\x7b\x74\xe5\x6a\x05\x91\x88\xfe\xb9\x7f\xb5\xe2\x17\xca\x68\x3e\x2c\x21\x96\x6d\x79\xa7\x58\xd1\xc4\xce\xe6\x82\x13\x47\x23\x33\x49\x1b\x75\x85\x3f\xf0\xe5\xf3\xc9\x6a\x67\x56\xb3\x70\x26\xfc\xed\x80\xf8\x74\xe8\xd3\xf6\x46\x4e\x9b\x4b\xb4\x1e\x6d\xfd\xe1\x45\xdd\x0a\xc9\xe3\x61\x33\x70\x66\xff\x4c\x43\x3f\x8a\x0c\xbb\x16\x87\x2c\x84\xcf\x54\xcf\x1b\x03\x65\x6b\x18\x7e\x9a\xf3\x63\x93\x2f\x06\x3b\x25\xe2\xe0\xf8\x27\x1a\xbf\x3d\xad\xac\xd8\xa8\xad\xe8\xcd\xb4\xef\xd0\x02\x1c\x1c\xde\x5a\xf0\xf1\xbc\xd8\xf6\x13\x17\x8a\x99\x08\x23\x25\xc2\x67\x58\xc1\xfc\x97\x65\xc8\x56\x9e\xcf\x9e\x2e\x2e\x4b\x7e\xe0\x0a\x71\x31\xe3\x4e\xf3\xf0\x53\x52\x2b\x16\x80\xb8\x6c\x01\x76\x88\x47\x15\xc8\x7d\xc9\x3c\xb8\x59\xef\x74\x08\xae\x29\xab\xa2\x37\x35\x7c\x7c\xf2\x1e\x0a\x2f\x35\x3e\xd1\x0d\xfe\xda\xae\xce\x7f\x1c\x27\x91\x00\x3f\xbb\x43\x65\xdf\x55\x10\x53\xad\xcd\xfe\x26\x68\x50\x16\xad\x10\x13\x78\xd4\xe9\x33\x0b\x23\xd4\xa4\x48\x99\x98\xfa\xb0\x05\xf2\x87\x30\xca\xbb\x18\x85\x44\x72\x46\xb3\x63\xc6\xb8\x0c\x89\x44\xff\x28\x68\x3d\x85\x5f\x81\x00\xa7\x98\x0a\xfb\xf0\x9e\x28\xb1\xcc\x04\x53\x72\x63\xf1\x20\x8d\xa8\xe1\x79\x94\x39\xb8\x3b\x6b\xda\x24\x0a\x61\xcd\xf5\x1a\x5f\xe9\x3f\x44\xc1\xa2\x0a\x24\xdc\xc8\x9f\x7d\x31\x79\x1d\xcf\x9a\xe3\x59\xa2\x2a\xbd\xa0\xed\x83\x2a\xc1\x66\x64\xc3\xbb\x79\xe0\x35\x75\xe7\x1b\x72\x84\x92\xc2\xf8\x8f\x4b\x70\x5a\x39\xb4\x86\x6d\xb0\x7d\x7b\x44\x4b\xf5\xc3\x95\xaa\x4d\xbb\x63\x22\xc0\x9c\x1e\xcd\x44\x83\x30\x3d\x8b\xdc\xd8\xbe\x51\xb6\x52\x56\xb7\xef\x14\x10\xa9\xbb\xad\x2e\x29\xe8\x06\x0c\x9e\xf8\x99\xf7\x38\x1c\xd7\x77\x41\xe1\xa5\x23\x10\xc1\x0c\x8d\x17\x5a\xa1\x05\x85\x79\xba\xd3\x91\xa8\x16\x66\xe0\xdc\xf5\x5a\xb3\x24\xec\x97\x6c\x9a\x47\x75\xe9\x0b\xe9\xa9\xfd\xe0\x02\x0f\xaf\x25\x17\x63\x71\xbe\x5f\x7c\xb6\x41\xa6\x42\xa8\x4e\x2b\x4b\xdb\x86\x29\x57\x91\xe9\x91\x4a\xb8\x88\xc6\x1c\x4a\x7e\xb2\x4e\xc4\x0a\xd8\x89\xd4\xd9\x07\x25\x2b\x8b\xa0\xf0\xaf\xff\x61\x66\x5c\xc6\xce\x99\x3e\x9d\xab\x7f\xe7\xcb\x12\xbf\x1b\xb9\x1e\xeb\xb1\x70\x25\xef\x96\xa5\x92\x32\x58\x31\x51\x1b\xb0\x96\x10\x71\xdc\x28\xa0\x26\xd5\x55\x1b\x03\x0f\xcf\xf7\x08\xaa\x0f\x36\x4f\xdb\x0f\x24\x97\x32\xcf\xed\x05\xd6\xc4\x53\x5a\x5a\x7e\x4b\xeb\x0c\x71\x0b\xad\x58\xa5\xa3\x82\x05\xc2\xc5\x3b\xe1\xc1\x18\x7c\x3f\x88\x86\xd9\x35\x6a\x03\xb3\xe5\x2b\xcf\x43\xb9\xb5\x94\x54\x90\xeb\xd2\x88\x3d\xda\xf3\x96\x06\x53\x11\xc7\xc1\xa8\x4a\x6d\xe2\x02\xce\xbb\xa2\xbd\x37\x33\x66\x29\x9c\x0f\xc8\xe4\x48\xb4\x30\x1f\xe2\x53\x8b\xfe\x9a\xbb\x01\x43\x8e\xcb\xdd\x17\x01\x53\x5a\x66\x5f\xa7\x7f\x4c\x5c\xc5\x4e\x01\x3b\x5e\x04\xbd\xa7\x1e\x7e\x59\x37\x85\x37\xfb\x1c\x8e\x7d\xd3\xd6\x58\xff\xd4\x16\x5a\x25\xe3\xdc\x69\xa5\xaa\x33\x7d\x29\xac\xfe\xed\x61\xb8\x59\xf2\xe0\xf0\x60\x0c\xd1\x7a\xa2\x02\xb5\x29\xc3\x6e\xd2\xdc\x2b\xbd\xfe\x59\x79\x57\xfa\x0e\x32\x4d\x5c\xe5\x91\x1d\x51\x75\xfe\x81\xbd\xc9\xfb\xa8\x55\xf8\x0d\x78\x12\x8b\xb5\x39\x76\xf0\xf5\x76\x1d\xa4\xea\xe0\x4e\xa8\x02\xdc\xc8\x90\xe6\xa1\x62\xa7\x71\x46\x88\x98\xab\xbc\x7b\x51\xdf\x4a\x49\xd8\x4d\x3b\x56\x0d\x10\x47\x62\xd8\x78\xa5\xf6\x9e\x19\x2c\x5e\xb5\xc5\xa5\x1c\xe1\x5f\x99\xa5\x99\x63\x20\x8e\x7e\x21\xdf\x8b\x18\x62\xe9\x4f\x5c\xd1\xb7\x85\x67\x5a\xb1\xb3\x79\x77\x4d\xf7\x57\xc2\xd5\x08\x95\x5c\x30\x56\x63\x7d\xe0\x98\x68\x22\x1f\x60\xbb\x90\x99\x97\x71\x35\x7c\x0c\x3f\xd6\xac\x5e\x5c\x9b\xf0\xbe\x83\x5f\xe2\xe9\x2f\x8a\x40\x25\x98\x78\x71\x10\xfd\x33\x0f\xd4\xf9\xd5\x21\xb3\x1c\xcb\x0a\xce\xce\xab\xcb\xa4\x2b\x40\x82\x34\x80\x20\xeb\x0f\xab\x19\x29\xbe\x1d\xc7\xd0\x6d\x78\x5e\xa3\x28\xd9\xc4\x21\xa6\x98\xb2\x7d\x57\x33\x9d\x82\xc4\x17\x2f\x32\x22\xbd\xf5\x65\x25\x6f\xad\xc2\xd3\x0f\x7c\x90\x1e\x0f\x5d\x3c\x52\xdb\xc0\xb2\x53\x7e\x72\xc0\x50\xb5\xdc\x29\xf2\x3b\xe3\x86\xb9\xb0\x17\x25\x90\xc1\xa7\x5a\xc6\xb5\x5d\x9a\xa1\x0b\x02\xab\x10\x28\x1f\x26\x1d\xd5\xcb\xaa\xf0\x9c\x11\xe7\xc1\x9d\x83\xe2\x91\xec\xec\x96\xf0\x0f\x5a\xcf\x28\xd4\x2f\xa7\x47\x4d\x01\x3e\x32\x57\xdb\xb4\x88\x74\x22\x27\x1e\xeb\xa4\x37\x36\xab\xf3\x60\x62\xdb\xc0\xd1\x79\x63\xa8\x52\xed\x39\x7e\xd8\x23\x07\x8f\x4d\x48\xee\x5d\x1f\x17\xfb\x88\xea\xee\x35\x86\x1f\x95\x9f\xa6\x80\x54\x19\x7a\x6a\xf4\x5e\x89\x2c\x76\x76\xf0\xe9\x8e\xf1\x1f\x6d\xc9\x63\xc3\x45\x65\x6e\xcf\x1c\xf9\xbb\xac\x68\xef\x4d\xff\xf1\x35\xd9\x0a\x15\xa3\x36\x22\xd7\x6b\xfc\x60\x0a\xdc\xee\xc2\xa6\x2c\x17\x4c\xb9\x98\xdc\x0d\x36\xa9\x25\x98\x45\xbd\xe9\x73\x8a\x67\x18\xf2\x3d\x5a\x75\xf9\xe1\x36\x7d\xbb\x16\xa7\x48\x50\xa1\x5b\x35\x04\x4a\x2f\x2f\xea\x80\x3a\x47\x5f\xc4\xe4\xfa\xb6\x8d\x62\x77\x63\x07\x17\x89\x09\xd4\x04\xe3\xb5\xdd\x23\x55\x47\x30\xaa\x10\x46\x8d\xaf\xaf\x96\x25\x4f\xa9\xb3\x1b\x6c\x93\xa2\xff\x38\xfd\x79\x25\x5a\x0f\x3b\xae\x0f\x08\xfd\xfe\xa2\x1a\xca\x80\x1c\x93\xd7\xa2\xcb\x0a\xa3\xeb\x7a\x3b\x0b\xf9\xb6\x90\x6a\x8c\x6f\x94\xe0\x37\xa9\xa8\xae\x1c\xad\xf0\x99\xb3\x94\x95\x90\x23\x32\x27\x53\x4d\x5a\x3c\x81\x69\x61\x47\x33\x44\x7c\x70\xbc\x96\xe0\x13\xa5\x58\x89\xdc\xe1\x74\xe3\x05\x3d\x8c\xcd\x2d\xbb\x82\x01\x69\xdc\x78\x46\xf2\xe3\x44\x22\x1a\xdc\x4f\x9f\x79\x54\x93\xe1\x20\x16\x31\x03\x52\x3b\x77\xc9\x6d\x6e\x13\xc7\x24\x26\x24\x52\xa4\x7e\xad\xa4\x96\x75\x03\x60\x1c\xfe\xac\xcc\x4a\x68\xab\x56\x72\x89\x93\xde\x56\x7d\xfa\x61\x65\xa7\x5a\x9c\x09\x9d\xeb\x4d\x7f\x64\x3e\xd4\xcc\x26\xa3\x2e\xd8\x8e\x08\x7c\x73\xca\x25\x35\x6f\xa8\xc8\x55\x43\xc1\x77\x07\x25\xd7\xc3\xf4\x19\xe0\x8f\x02\xd5\xc6\xbc\x57\x25\x11\xbd\x35\xcb\xb5\x47\xc6\x30\xcd\x06\x2f\x3c\xeb\x23\x41\x4d\xea\xc4\x55\xba\x54\x2e\xe6\x82\xa4\x7f\x70\x49\x32\x9d\x4b\xa4\xa6\x5a\x1c\xa5\x32\x0d\x75\xbc\xed\xf0\xde\x16\xa5\xe7\x97\x17\xff\x1f\x43\x27\xfe\xaa\xef\xdc\x29\x35\x26\x4c\xd0\xc1\x82\xf3\x45\x78\x0a\xcb\xa9\x47\xb8\x43\x59\xf4\xd6\x47\x8e\x97\x9b\xd7\xc1\xbc\xd3\xde\xff\x44\x32\xcb\x8d\xc0\xf1\x9a\x7a\xfb\x0e\xb8\xb7\x66\x66\x5b\xc3\xff\x39\x08\xb4\x88\xd9\x05\x28\x6c\xba\xea\x32\x27\x33\xff\x72\x51\xd6\x5d\x10\xc9\x98\xad\x50\xd7\x03\xb5\xad\x50\x82\x6d\xe9\x51\x78\x09\xc4\xb3\xc5\xed\xf1\xc1\x4b\x83\x15\x41\x9b\xc3\xe7\x73\x37\xee\x82\x12\xe6\x6e\xc1\xa4\x8e\x8b\xb7\x3d\x5b\xa5\xb7\x21\xf6\x19\xad\xe2\xfa\xc0\xe7\xf4\x17\x82\x3a\x82\x25\x0f\xc0\x89\x7d\x2e\x6c\xcd\x47\xc5\x45\x36\x62\x44\x90\x5f\xd3\xc5\x46\x45\xaa\x12\xde\xf2\x7c\xe3\x7e\xf3\xe9\x06\xd5\xae\x4c\x6e\xf4\x0f\x9f\x16\x74\x60\x19\x16\xce\xe1\xf8\x89\x0a\x66\xc4\x4b\x30\xd0\x3a\x65\x3a\x9e\x94\xff\xc1\x42\xd5\x2a\xb7\xcf\x0e\xff\xc5\xd7\x4f\xe8\x30\x2b\x64\x22\xc7\x02\x8a\xa9\x45\xd9\xd0\xc8\x40\x94\xa7\xf5\xd6\x24\xfc\x0c\xd1\x35\xf8\xd9\xb1\xca\x77\xe1\x79\x08\xd9\x5c\x30\x70\xab\xf0\x0a\x41\x0c\x10\x8c\x9f\xce\x1b\xae\x60\x10\xcc\x2b\x01\xf7\x21\xd3\x32\x4c\x16\xdc\xb6\x9d\xcd\xfd\x73\x77\xa4\x61\xc0\x58\xf0\xbb\x37\x0a\x2f\x6a\x8b\x8a\x1c\xb8\x1f\x0c\x94\x67\x43\xb8\x12\x4c\x0b\x7b\xf0\x5b\x4e\x1c\x8b\x07\x50\xb4\x58\xd4\x9b\x92\x75\x63\xe1\x22\xb8\xc3\x29\x10\xd0\x4f\x65\x2e\xc3\x83\x65\x88\xdb\xd7\x8a\xd3\xcd\x78\x6a\x8b\x74\xfe\x44\xea\xea\x1e\xb8\x4a\xa3\x25\x20\x21\x97\x0b\xde\xa3\x85\xc3\x72\x4c\x59\x9c\x65\x7f\x5c\x3d\x5a\xb1\x35\x73\x3a\x50\x45\x11\x9f\x05\x7f\x7f\x22\xea\x7e\x15\x5d\x97\x92\x27\x6b\x52\x24\xdc\x28\x33\x37\xf6\x93\xcc\x4c\x16\xdf\x7b\xbd\x1b\x1a\xeb\xcc\x43\xc4\x99\xf4\xfb\x23\x72\x3f\xac\xf3\x09\x16\x59\xa5\xaf\x4c\x90\x90\x8b\x6b\xc3\x4c\x72\xe2\x06\x3d\x55\xd2\x45\x35\xca\xba\x05\xb1\xef\xec\x89\x28\x74\x90\x03\x15\x5c\xfd\x72\xfa\xb8\x4c\xfb\xb4\x70\x36\x17\xf4\x7f\x11\x76\x74\x3b\xe1\x63\x9a\x5b\x6b\x1a\x1b\x04\xd5\xb0\xc3\x9d\xf0\x49\x04\xbf\xa6\x3f\xaf\x81\xd7\xa6\xed\xe7\xa3\x95\x35\xfc\x2d\x58\x0b\x1e\x0d\x9b\xb4\xf0\x53\x2c\xbc\x98\x90\xbd\x92\x08\x75\x7c\x44\x91\x1b\x59\x48\xf0\x46\x4f\x68\x3e\xef\x25\xea\x79\x38\xb2\x61\x4b\x3d\xab\xd5\x3c\x9d\xc4\x73\x20\xc6\x18\xce\xe6\xee\xb9\xaa\x4b\x2d\xaa\x8a\xfe\xe1\xf8\x4a\x45\x4f\xe2\x14\x54\xea\xd5\x27\x4f\xc9\x71\xb0\xe5\x33\x46\xba\x51\x1d\x56\x67\xcc\x7b\xf2\x1a\x95\x19\xb7\x64\x09\x67\xc6\x89\xa5\xb0\xef\x70\xa3\x74\x9c\x75\x13\x26\x10\x0f\x9f\x97\xdf\xbc\xc4\x08\xae\x89\xcf\x73\x87\x16\x11\x07\xb1\xb0\x80\x33\x5e\x91\x25\x16\xad\x62\x27\x6c\xe5\x0a\x70\x89\x2d\x9c\xab\x94\x4a\x36\xea\xb4\xe1\x7c\xc8\xac\x04\xdb\xfc\xac\x60\xed\xa8\xd9\x50\xe9\x4b\x9a\xd5\x57\x91\x11\xec\x14\x84\xfa\x2e\x38\x35\x08\x0a\x7c\xf8\x49\xc1\xec\xbc\x32\x42\xe1\x35\x08\x01\xd6\xc9\xc8\x97\xc7\xe8\x3b\xc8\x27\xa0\xff\xe2\x05\xf9\xed\xf7\xeb\x51\x11\x65\xce\xa6\x86\x0b\xfe\x8b\x87\x34\x30\xd6\x42\x8c\x44\xe1\x89\xfc\x1b\x5c\xdb\x3a\x52\xb5\xf4\xe0\x12\x95\x68\xad\xb5\x5d\xa8\xab\xe7\xb9\xf5\xab\x78\xe3\xcf\x69\xfe\x0a\x58\x4b\xa0\x9a\xd3\x21\x8f\x9d\x0a\xf6\x18\xcf\xe0\xe6\xcb\xef\xcb\x93\x34\xb3\x66\x86\x6a\x58\xf0\x40\x53\x1f\x1b\x28\xf7\x60\x0f\x62\xa8\xdb\x2d\x67\x73\xc1\x39\x63\xb8\xc2\x95\xa1\xac\xc2\x6f\xb0\x60\xe7\x61\x89\xc8\xb8\xa8\xc6\xd5\x7b\xfa\x12\xfa\xfc\x2e\xad\x99\x33\xcb\x0e\xed\xb4\x71\xa1\x24\x4c\xec\x8c\xff\x75\x92\x81\x94\x26\x11\xef\xfd\x48\x41\xe1\x01\x10\xd7\x02\x88\xfb\xd9\xa2\x92\x4c\xe7\x44\x38\x52\x36\x17\xbc\xac\x24\x4c\xf1\x7c\x41\x7e\x9b\xfe\xf9\xbe\x24\x7b\xd5\xa6\x66\x19\x3c\x1c\xf4\x0a\xaa\xb8\x0d\x36\xf0\xed\x3c\xad\x8e\xb3\x50\xfe\xde\xa6\xbf\x03\x5c\x45\x2c\xf6\x18\x99\xdd\x94\x5c\x1e\xd4\xee\xae\x54\xc3\x86\x0c\x48\x1c\x97\xf6\xea\x86\x36\x3c\x24\xcd\x8d\x7a\xb2\xcc\x3b\x46\xbd\x3b\xf1\x17\x2c\xdc\x69\x63\xcf\xcb\x56\x91\x59\x46\xac\xcf\x60\x41\xe3\x37\x36\x5c\x0b\x45\x64\xbb\xa0\x83\x5b\xba\x56\x6f\x27\x59\x15\xa8\xee\x40\xc8\xfb\xb2\xe2\x55\x5f\xa0\x15\x44\x60\x86\xf3\xed\xfb\x92\x58\x02\x64\xc1\x68\x2e\x25\xa9\xdd\x27\xe4\xb6\xec\x24\xb6\x0a\xae\x7e\x6f\x18\x5c\x47\xb8\x2b\x7c\x09\xa4\x08\xd7\xb9\xf1\xf6\x4b\xba\xdf\x77\x9c\x4b\x79\x65\x91\x36\x54\xe7\x62\x7b\xd8\x2c\x37\x68\xce\x07\xeb\x7c\xe2\x81\x30\x86\x73\x9c\xc6\x6e\x83\xc3\x7a\x01\xf8\x5e\x74\xb7\xcb\x83\xcd\x46\xf9\xf0\xeb\x52\x26\x3e\xc0\x1f\x37\x48\xab\xb4\x3e\xb8\x71\x5f\xec\x2f\x6b\xbe\x96\xe9\x90\xea\x78\xf0\x01\xb5\xe3\x16\x51\x76\xd9\x5c\x30\x66\x0f\x5c\xe6\xed\x0c\x1c\xa6\x16\x9c\xd2\x60\x2b\x86\xd6\x81\x24\x8e\x1f\x07\x4f\x68\xe2\x8a\xe9\x2d\x8a\xbd\x60\x6a\x49\xc7\x00\xb1\x53\x38\x1a\x7b\x36\xd0\x53\x8d\x69\x94\xf9\x31\x32\x80\x19\xe2\xdd\xe1\xef\x7c\xc7\x58\xcd\x68\x16\xa3\x02\x66\x91\xf6\xaa\xf9\xf5\xb8\x22\x29\x16\x08\x1f\x01\x8d\xeb\x43\xbf\x1f\xf9\x33\x7d\x7d\x72\x5d\xc7\xe7\x31\x2a\xd4\xca\x29\xa2\x69\x10\xf2\x8c\x38\x25\x39\x9a\x49\xed\x3e\x24\x9f\x7a\x58\x8c\x95\x1c\xd2\x83\x84\x97\x43\xb0\x26\x61\xcf\x69\x86\x35\x2f\x47\x10\xce\xc0\x2a\x59\xc0\x88\x47\x5c\x4b\x54\xe4\x37\x28\xbe\xd2\x45\x0e\xca\xc1\xe7\x1b\xbc\x4f\xd6\xbe\xb8\xc6\xdd\xdf\xab\x4b\x6f\xd0\xf7\xa0\xeb\x0a\x79\x52\xf2\xcd\x0e\x7b\x78\xb4\xb6\x9d\x50\x8d\xc4\xe6\x74\xc6\x90\x25\x3a\x00\x81\x62\x28\x2b\xf5\x8e\xc7\x75\x1b\x4c\x4a\xec\xf8\xbf\xfe\x73\x65\xd2\x79\x2a\x4f\xb1\x44\x8d\x92\xa7\xc8\xa8\xbd\x31\x07\x31\xef\x17\x62\x43\x91\xf9\xd7\xe8\xab\xdb\x2c\x8b\xb3\x3c\x38\x34\x5e\x61\x41\x89\x58\x8e\xe0\xe6\xbd\x2a\x26\xc8\x50\x25\x2f\x6c\xfb\x7e\xf7\x9c\x1a\xbc\x6e\x61\x26\x64\x9e\xef\x5f\x5b\xe7\x68\x06\x86\x7e\x5c\x6d\xfb\xb2\x66\xb7\x58\x0a\x7f\xa0\x9c\x0a\x66\xae\xc4\x35\x64\x21\x11\x24\x73\x72\x7d\x9d\x41\x1e\xf8\xf2\x43\x57\x34\x73\x9e\xc6\xb1\xad\x86\xe7\x63\x8c\x8e\x06\x5b\xf7\x68\xde\xa6\x18\x43\xe2\xab\xf1\x8c\xd6\x93\x70\x30\x49\xc4\x21\xf0\x71\xcf\xac\x9d\x11\x25\xc4\xe4\xa6\xe4\x61\x63\xbc\x5a\x57\x15\xe3\x1a\xb2\x7d\xa4\x64\xa3\x7c\x46\x16\xc3\x1e\x52\xb1\x89\x13\x83\x80\x8c\x76\x2b\x4f\xe7\xf3\x70\x7d\x30\x96\x59\x53\xe2\xbd\xa9\x4d\x4c\xf0\xc2\xef\x4d\xbf\xef\x64\x7d\x3c\x0f\x86\x80\x24\xe3\xda\x83\x63\xf5\xc2\xcc\x2a\x30\xd4\x19\x2f\x9d\x01\x2d\x9a\x69\x0d\x17\xb5\xba\x16\xa9\x42\x73\x35\x6f\x9f\x32\x26\xc2\xbc\x95\x08\x2f\x28\xf8\xcd\x2d\xa3\x47\x46\x73\xf1\x65\xcb\xda\x57\x24\xc6\x21\xec\x91\x04\x77\xc0\xc1\xa6\x47\x4c\x90\x9b\x2c\x19\x9b\x3c\x5a\x7c\x37\x0e\x12\xbc\xf2\x7a\x12\xfb\x25\x1e\xd0\x27\x8d\x93\x3b\x60\x9f\xde\xe2\xa8\x3c\x47\xe3\x9d\x79\xa9\x2d\xae\xa1\x8e\x2a\xea\xc6\xca\x1c\xcb\x78\xe8\xd9\xab\xe5\xae\x0f\x4f\xab\x41\x0f\xc5\x45\xbf\x85\x58\x74\x30\xce\x5f\xaa\xcd\x08\x50\xb8\x2f\xc1\xf1\xa6\x4b\x2a\xdd\x4a\x0c\x97\x28\x53\xa4\x1a\xa9\xef\x4e\x4b\x4e\xb6\x40\x55\xa5\x8f\x86\xd2\x73\x76\xc6\x93\x52\xaf\x7e\x90\x6a\x5c\x7a\x5a\xab\x9e\xc1\x16\x37\xce\xe8\x7f\xc8\x90\x26\xe6\x1e\xf3\xdd\x3a\x06\x6e\x7a\xf2\x5a\xe1\x78\xc3\xa1\x68\x5a\xe1\x78\xe7\xf9\x0b\xb2\x8e\x97\xd2\xc4\x9b\x15\x99\x9c\x5f\xa1\x61\x1d\x91\x79\xdf\xfd\x4a\xf4\x10\x22\x9c\xd9\x1c\x7e\xf9\xdb\xf7\xeb\x0b\x5a\xa8\xa1\x69\x34\xe3\x49\xfd\xbe\x3d\x3e\xe0\x51\x01\x65\x73\xc1\xfc\x5d\x13\x14\xcf\x26\x5a\xc5\xac\x4f\x79\x63\xef\xd6\x46\xa5\xaa\x62\x18\xd9\x44\xb0\x9b\x33\x0f\xde\xa7\x9b\x93\x63\x54\x8e\xf4\x2a\x1f\x9c\xa4\xae\x47\x27\xfc\x9d\x92\xf0\x78\xd7\x1a\x41\x05\x0d\x17\xb0\xc3\xb5\x38\x11\x96\xf8\x97\xd5\x72\xa1\x94\x29\x73\xf2\x98\x95\x94\x73\xe4\x47\xc7\x60\x37\x57\x51\xf8\x71\xf9\x79\x3c\x68\x87\x1c\xc1\xf6\x60\x52\x52\xf5\x4a\x5f\x5b\xa2\x7a\x86\x83\xe5\x34\xdf\x4d\x57\x92\xcb\x77\x9d\xb8\x07\x53\x99\x17\xe5\x0f\x2b\x83\x6f\xad\xfc\xd8\xb4\x26\x9d\x13\xc3\x66\x2f\xb8\xa3\xf9\x06\xfd\x54\x73\x51\x5f\xbe\x60\xc6\xeb\x47\x74\xcf\x29\xd3\x0b\x6b\x0d\x48\x0b\xef\xcd\xcc\x39\xa6\x90\x89\xf9\x0b\x6b\x7d\x5e\xd1\xe9\xc7\x32\x7d\xfe\x97\xed\xd7\x86\x2a\xf7\x67\xe4\x79\x7c\xec\x2a\x3d\xa3\xd3\x87\x61\x01\xc7\x38\xd6\x2b\x64\xd8\xbc\x8d\xc4\x49\xb8\xcf\x11\x50\x00\x06\xa7\x1c\x41\x69\x18\x3f\x05\xfe\xf8\x4e\x5c\x51\x52\x45\x52\xd7\x74\x28\x1e\xbf\x84\x67\xad\x7c\xcf\xbb\x0e\xfe\xe7\x8d\xef\x67\x79\xe4\x10\xb7\x52\x4f\x31\xfc\xda\x10\x8d\x73\xcf\x99\x67\x61\x9d\xe5\x78\xb1\xa8\xeb\xc0\x25\x35\x3d\xca\x8f\xe4\x13\x9c\x82\x70\x6e\xa8\xcc\xe0\x8c\x4c\x5a\x96\xf7\xd3\xa2\x69\x11\x63\x34\xc9\x2b\x4f\xf5\x2e\x7f\x97\x5e\xf2\x14\xdd\xa9\x75\x36\x76\xe9\xed\xe7\x60\x51\xdd\x45\x63\x4d\xc7\x73\x0b\x15\xe6\x13\xf5\xf9\x03\x9e\xde\xa1\x0e\x85\x0b\xbc\x4c\x0c\xae\xd7\x44\xc7\xd8\xf5\x48\x85\xc3\xbd\x82\xb4\x70\xd3\x09\x1d\x77\xc7\xbe\x87\x1d\x14\xcd\xd3\x83\xa5\x67\x25\x2d\xaf\xe0\x3b\x08\xd7\xa4\x57\x72\x70\xc7\x71\xad\xba\x36\x2d\xbf\xcc\x88\x36\x68\xfa\xf3\xc0\xfa\x94\x6e\xe1\x0a\x5a\x7b\x56\xbe\xb3\x2a\x32\x39\xec\xbd\xba\x41\x7c\x5f\x54\x10\x18\x59\xe6\xa6\x8b\xda\x5c\xdd\x35\x79\xf7\x2f\xba\xc4\x8e\x2e\xc5\x35\x8f\xc2\x9c\x26\xd3\xf4\x60\x83\x72\x6e\x39\x16\xf2\x3c\x6e\xce\x90\x39\x25\x49\xd4\xb2\xa7\x96\xa7\xec\x9f\x0c\xd5\xa7\xd7\xb6\x3b\x21\x01\xf6\x6d\xf7\x69\xc1\x6d\xb8\x14\x19\xf0\xaf\x5b\x3e\x4c\xe1\x41\xda\x76\x95\x57\xef\xe9\xe7\x35\xcf\x71\x93\x11\x97\xb8\x91\xc9\xd9\xb9\x45\xba\xe7\xb8\x53\x72\xbd\x38\xc6\x2c\xb8\xe6\x50\x4c\xe2\xe3\x4e\x08\xdf\x1e\x3f\x5e\xdb\xa2\xc2\x16\x8e\x84\x3d\x90\x78\x9b\x5d\x2f\x68\xf5\x1d\x26\x3d\x72\x28\xf9\x8f\x6d\xf2\x02\x60\xbe\x5d\x7f\x9c\x66\x3e\xf6\xaa\xd0\x23\xd8\xa8\x04\xce\xf3\xbd\xa9\xc3\xcb\xb4\xee\xd0\xc6\xc8\xf5\x59\xe4\x2f\x72\x74\xd4\xc8\xfa\xef\x21\x5c\xbf\x7f\x37\xe4\x3a\x51\x8d\xc8\x8b\x5b\xdf\x7e\x3f\x3c\xa2\x1d\xd3\xa8\x4a\xb0\x23\x0c\x09\xc6\x6a\xbd\x25\xf5\x3d\x97\x14\xe0\x21\xf1\xcd\x37\x63\x48\x72\x01\x56\x89\x43\x4d\x0b\x27\x83\x49\x32\x73\xd8\x68\xa5\x83\xb7\x2b\x28\xe9\x51\x99\xdd\x2b\x21\x7f\x02\xb3\xea\xf7\x66\x14\x7d\x0e\xb3\xb1\x48\x61\xfa\x64\x5e\x33\x13\x0a\xbb\x3e\x18\x90\xae\x9c\x5b\xc7\x15\xc9\x8b\x34\xf7\x5c\xf0\xdd\x0d\xb2\x11\xe0\xd2\x1c\x40\x64\x67\xbc\x2a\xab\xdf\x12\xb2\x6d\x54\xe2\x1e\x80\xc1\x8b\x2f\x6a\x1b\x26\xac\x06\x80\x58\x7a\x5d\x55\xc3\x96\x78\x86\x17\xbc\x8a\xd6\x16\x3d\xd0\x9b\xd6\xb8\x5d\x52\xc4\xb1\x4d\xfd\xa5\x1d\xb6\xd6\x52\x10\x43\x71\x88\xff\xc2\xff\x91\x26\x03\x41\xa0\xf7\x1e\x54\x2c\x7f\xc3\x86\xbb\x00\xfe\xcc\x17\x9b\x75\x11\x33\x71\x23\x2b\xd9\xd4\xf2\x5d\xfa\x98\x09\x33\x93\xb8\x32\x1b\xe8\xc3\xda\xc3\x82\x40\x8b\x88\x02\xb5\x78\x57\x1d\x1e\x51\x53\x08\x3e\xc1\x89\x11\xca\x41\xe7\x3b\x05\x14\xf5\xc4\xfd\x87\x08\x67\x1d\x61\xbe\x00\x7f\x3a\x56\x9b\x8b\x85\x7b\x1e\x57\x19\x76\xb0\xcf\x04\xf6\xff\xd6\x28\x25\xe8\xd3\x4e\x04\x21\x07\x3f\x5a\x36\x52\x41\x62\xa2\x9c\x42\x40\xfb\x1f\x3d\x9d\x5c\x7e\x15\x62\x5a\xd8\xc6\xc9\xf3\x2f\x75\x65\xb1\x3c\x1f\xba\xe2\x04\x9c\xd4\x90\xbd\x4a\xca\x73\x13\x57\x44\xbf\xa0\x41\x2d\x9d\xc8\xb6\xab\xa8\x2a\x94\xe3\xbd\xc6\x07\x6f\x86\x79\xcc\xed\xd4\x2e\xc0\x80\x24\x79\x8f\xdf\xf8\x90\xe2\xb0\x89\x3c\x2b\xac\xef\x15\x4b\xd0\xf0\xb7\x1e\xd0\x72\xc2\x91\x5b\x8e\xfc\x18\x7a\x53\xeb\x5f\x6a\x4c\x80\x54\x8c\x3b\xba\xf0\xa5\xff\xf1\x7b\x74\xb3\x6d\x50\xe5\xc5\x7c\x84\xf5\x5b\xfe\x0f\x82\x25\xb7\x32\xdb\x76\x52\xda\x18\x39\xd8\xab\x77\x14\xf9\xde\x7a\x09\x78\x41\x06\x73\xe4\x72\x30\xfe\xe5\xc9\xfa\xf5\x01\x91\x19\x98\x45\xf3\xcd\x18\xef\xfd\xf2\x5a\x45\x17\x84\x19\xa1\xbe\x6b\x03\xb9\xf5\xdf\x4e\xeb\x09\x51\x0e\xee\x22\xae\x27\x8d\x35\x9b\x5a\x93\xdf\x70\xfa\xf4\x69\x6d\xd3\x67\x4e\x9b\xdd\x2c\x88\x8c\x99\x9b\xdf\x68\x50\xe1\x67\x9b\x13\x3e\xb8\x79\x83\xd6\x3a\x59\xe1\xf6\x12\xb2\xb5\x99\x32\xe2\xa4\x4c\x65\xad\x18\xbc\x32\x29\xc6\x95\xa7\xf3\x20\x2f\x79\x03\xbd\x7e\x50\x98\x68\x30\x18\x03\x98\xe3\x35\x0a\xa4\x48\xe9\x07\xad\xe9\xb7\x66\xea\x72\x83\xd9\xad\x00\xb0\x3c\x74\x51\x50\xba\xc2\x66\xcb\xe7\x41\x59\xc6\x6d\x57\xb4\xa3\x05\x77\x8a\x69\x42\x49\x73\x9a\xef\xb4\x78\x4a\xa6\x70\x02\x78\xc7\x52\x4d\x69\xe0\x87\xfb\x0b\xde\xed\x8f\x1f\xd0\xd3\xea\xe3\x4e\x2c\xbd\xed\x28\x60\xd0\x55\xcc\x7d\x90\x8d\x07\x26\x24\xff\xae\x5f\xb5\xb0\x0d\x10\x69\x6a\x4e\x93\xe2\x5d\xdf\x3a\xab\x69\x3a\x47\x56\x34\xe3\x6a\x99\x15\x05\xb9\x6a\xc1\xb6\xe3\x9a\x39\x07\xb6\xab\x62\xc8\xf3\x74\x4f\x5c\xb6\xf2\x50\xec\x60\xde\x46\x41\xcb\x01\xc5\xc8\xa1\x2a\x1c\x87\xaa\x76\xf1\x61\x8d\xb2\x88\xa2\xfc\xb6\xd4\xd7\x8e\x69\x5d\xbe\x0f\x88\x5f\x70\xe1\xb2\x2c\x62\x5c\x9a\xe7\x85\xcd\x37\x9b\x00\xb5\x5f\x54\xa7\x73\x0f\x6e\xd4\x1c\xe9\x3c\x0b\x77\x0b\x9d\xc1\x18\x4d\xcf\x61\x22\xc7\x14\x29\xb8\xbd\xe9\xef\xec\x94\x13\xb0\xb2\xda\x9e\x4e\x79\x52\x3e\x37\x9b\x38\x50\x3b\x77\x2c\x8b\x5b\x54\x57\x3a\x92\x9f\xaf\x25\xa4\xe8\xa4\x22\xba\x7f\xe3\xc0\x10\x61\x3e\x23\xa2\xff\x1e\xdc\x7f\xb5\xf2\x33\xc3\xbf\x71\x61\x5f\x36\xf1\xd9\x40\xcb\x87\xc0\xaf\x45\xf4\xaa\x89\xef\x99\x5f\xac\x8a\xa0\x6b\x98\xb9\x30\x31\xbb\x57\xb1\x32\xcd\x63\xc7\xc1\x1e\x7f\xbc\x19\xcd\x29\x86\x5f\x43\x51\x83\x60\x74\x4f\x92\x49\xf7\xfc\x8e\x7c\xcf\x8b\xc9\x53\xbd\x12\x5e\x5a\xd4\x21\x88\x57\xd0\x7c\xb6\x50\x5d\xad\x59\x9f\x21\x1b\xe2\x32\x83\xf2\x89\xc8\xae\xdd\x75\xb1\x53\x02\xfb\xad\xcc\xda\x2b\xb2\xbb\xe2\x03\x12\xe2\x9a\x34\x7a\x72\xf7\x3e\xa2\x65\x19\xe1\xae\xc8\xef\x5a\x9c\x53\x4f\xae\x1f\x27\x8d\xe7\xc2\x1e\xbf\x7e\x44\x7d\x78\xa9\x2c\x44\x34\xfa\x2a\xa7\xff\x0d\xec\x73\xe8\x0f\x51\xf6\xe9\xdd\x07\x74\x8c\xa5\x82\x20\x8c\x97\x8b\xb8\xf3\xfb\x47\x4b\x70\x4b\x97\xd5\x05\x0f\x2f\xd6\x1a\x12\x01\x9f\xf3\x1e\x9c\xe5\xf9\x1c\x00\x47\xe0\x88\x1d\xf6\x4a\x11\xad\xe0\x23\x7b\xe2\x27\x9f\x87\x7c\xce\xd3\xc2\xce\x63\x01\xb2\xcb\x28\xca\xc1\xed\x4d\x8f\xe8\x77\xbd\xbe\x53\xb1\x6d\x53\x2d\x1e\xe8\xd8\xa8\x77\xe9\x75\x52\xf8\x35\xea\xc0\x8e\xa6\x73\x1a\xc0\x4b\x3b\xc3\xba\x0f\x0a\xcb\x21\x2f\xab\xe3\x55\xc7\x23\x8e\x1f\x99\x0e\x58\x5d\x30\x39\x58\x45\x50\x89\xfb\xed\xa5\x53\x0b\xc7\x69\x17\x93\x20\x6e\xbb\x31\x34\x72\x6a\x80\x36\x5c\x40\x84\x51\x69\x04\x6f\xfc\xbf\x9d\x89\xe4\x75\x90\xd8\xa6\x3e\xbe\x51\x6b\x69\x21\xf5\x47\xe8\xe7\x7e\xb2\x47\x7f\xe2\x5c\xf9\x12\x85\x12\x72\x0b\x04\xb4\x5b\xaf\xd7\x6b\x98\xc5\x72\x4f\xfb\x92\x2a\x6d\x2e\xc2\xa0\x38\x7d\xef\x90\xe4\x03\x2c\x12\xbb\x02\x4a\xc7\xe4\x5a\x33\x33\x72\xfb\x15\x70\x3c\x3f\x5a\xb8\x21\x79\x00\x97\x31\xae\x46\xbf\xf0\x83\x4c\x71\x73\xe0\xd6\x17\x88\x93\x3e\x20\x74\x6e\xa7\xea\x50\xef\x47\xac\xe3\x1b\x76\x34\xc8\x74\x5f\x25\x4c\x35\x75\xaa\xaa\x50\xd1\xa8\x5d\xa6\xb5\x70\x91\x8e\x7d\xa7\x68\xac\x20\xc2\xba\xff\xab\xaa\xdf\x77\xa1\xc0\x5b\x9d\xff\x18\x30\xb2\xae\x8e\x8d\xfc\x96\x8e\xac\xd1\x96\x05\x46\x66\x9c\x28\xb0\xf2\xf5\xb1\x5a\x8f\x96\x98\x16\xf6\x1a\xaf\x8c\xd2\x6e\x31\x86\x7c\xa1\x77\x0b\x0e\x8e\x7f\x97\xb6\xe0\x1c\x5a\x41\xac\x1b\xd7\xa6\x76\x2a\xd5\x5c\x26\x75\x41\xb0\xe0\xbb\xaa\xd8\x71\xb9\x90\x3c\xf8\xde\x3e\x7d\xe2\x4b\x9d\xe8\x06\xfc\xe4\x6b\x4a\x08\x84\xcf\xaf\xda\xbb\x1b\x14\xe5\x28\x81\x58\x91\xf4\x88\xb5\xb0\xab\xee\x22\x2a\x34\x99\x3a\xa9\x87\xff\x30\xf0\xb8\xe5\x7b\xfe\x29\x8d\x40\x86\xed\x02\x66\x76\x77\x34\x78\x5d\xbd\x3f\x69\x2a\xe9\x7b\x70\xd2\x19\xb9\x8b\xba\x7b\x85\x83\x3b\x63\x6f\x8b\xb7\x06\xea\x15\x45\x54\x7a\x3f\xbd\x23\xf9\xfb\xca\x22\xcc\x4e\xac\x9f\xca\xca\xf1\xda\xf3\xef\x24\x8e\x5b\xee\x4e\xd8\x13\xeb\x09\xe8\x55\x8a\x23\x16\x76\xe6\xce\xcb\x43\x95\x5b\xc7\x15\xf6\xef\x0d\xed\x9a\x95\x03\x65\x71\x52\xf6\x1f\x5b\x87\x2a\x38\x21\x76\xdd\xa6\x6c\x2e\xb0\x4f\xeb\x70\xbe\x53\x24\xb1\xa8\x3c\x35\xf9\x5c\xa2\x81\xb0\x71\x0d\xa8\x0c\xbd\xe9\x37\xdb\xe4\xbb\xb2\x7c\x1e\x4f\x93\x6a\x3a\xa3\x50\x4a\x5d\x97\xf0\x4a\x9a\xff\xed\x39\x2f\x0c\x57\xf6\xa7\x87\x08\xe7\x00\x05\xcb\xa6\x48\xc4\xc4\x64\xc4\x2c\x63\x4f\x30\x43\xc2\x53\xf2\xc1\x7b\xfa\x52\x2a\x6b\xa9\x09\x2b\x77\xeb\xc4\xf1\xf0\xf7\x46\xae\x54\x4f\x3e\x34\x42\xab\xb7\xf2\x82\x8b\x76\xd5\x95\x64\xc8\x8a\x50\x4e\xdc\xa1\xae\x03\xe4\xba\xd8\x03\xb9\x58\xfa\xcb\xfd\xe0\xb0\x5c\x61\x52\x8f\xeb\x32\xfe\x1c\xc4\x25\x23\x66\x45\x6e\xc0\x93\xfa\xf7\x61\x89\x90\xca\x84\xe4\x3c\x53\xd9\x09\xa4\xb3\xbb\x62\x84\x45\xcc\x82\x5e\x5f\x28\x61\x63\x2e\x0e\x08\x7f\xdf\x59\xe8\xfb\xb2\xed\x88\x95\xeb\x94\xdf\xa9\x61\x27\xeb\x18\xc3\x1e\xa3\xb1\x7e\xf8\xbf\x1a\xe2\x89\x67\x91\xd6\x29\xd9\x77\x2e\x49\x2e\xab\xe9\x33\x9b\x9b\xda\x84\x02\xe9\xec\x42\x98\x34\xce\x6c\xce\xe6\x82\x77\xb3\xe4\x75\x60\x91\x92\xc5\xa5\x9b\x11\x50\x12\x6c\x79\x5a\x62\x9b\xcb\x40\xd0\x2f\x8a\xf6\x2f\x5d\x54\x8e\x2b\x5a\x00\xa3\x78\xe3\x2a\x4d\x7c\x6e\x5a\x84\x21\x33\x69\x85\x60\x9c\x79\x45\x04\xa6\x79\x88\x79\xe0\x09\x95\x7e\xff\xa3\x7a\xb8\x42\x21\xeb\x92\xae\x88\xf8\x75\x67\x97\xba\x1a\x21\x0a\x72\xc6\x6a\x79\xaa\x0b\x21\x25\x6f\x6f\x7a\x8e\xe8\x37\x09\x06\xb3\x1a\x5e\x3a\xec\xb3\x85\x48\xb6\x13\x55\x94\xc1\x83\xf1\x6f\x6b\xfa\x92\xa9\x42\xf1\xfc\xf7\xa7\x65\x80\x18\xb7\x6f\x4a\x7d\xed\x4d\xdd\x06\xd9\xae\x09\x80\xa3\xe1\xf2\x70\xd5\xa7\x93\x7a\x90\x4c\xb4\xf7\x48\x5c\x3b\x50\xce\xb5\x9f\x3b\x48\x4f\x14\xae\x54\xcb\x44\x8c\xb5\xd2\x27\x1e\x87\xb2\x6c\x29\x75\x4a\xd9\xe5\xc8\x01\x3a\x1a\xd6\xb4\xd9\x79\x64\x9b\xd4\x21\x31\x95\x6b\xc6\x4c\x79\x04\xcc\x98\xd6\xdc\xdc\xcc\x49\x9e\x17\xf5\x4c\x24\x11\x3e\x60\xf4\x2c\x7b\xa7\x28\x10\xc0\x20\x34\xd3\x30\x4a\x2f\xc7\x8b\x11\xa4\x92\x79\xfb\x63\x8a\x2d\xa9\xd5\xed\x46\x3e\x74\x6f\x7b\x40\xb5\xe3\x77\x70\x17\x5c\x86\xdf\xd7\xe8\xb3\x25\xdf\x71\x84\x2b\x5c\x30\xa1\x0b\xce\xf7\x5b\xa9\x53\x0a\x0f\xaa\x0a\x3f\xdc\x32\x9f\x59\xaa\x99\xa0\xe1\x22\x0c\xdd\x52\x03\x76\xe8\xc8\x98\x8d\x98\x20\xc6\x18\x6f\xcc\x57\x3d\x50\x6d\xea\x73\x30\xa7\xb0\x40\x6b\x51\xa8\x67\x01\x92\x76\x6e\x4b\x24\xef\xf1\x1d\xa1\x69\x4b\xfd\xfe\xa8\x22\x98\x67\xa8\x06\x06\x81\xb9\x5e\xe3\xab\x2f\xe8\x07\x2e\x9f\x85\x02\x90\xbf\xf9\xb4\x14\x91\xcf\x9e\x99\xcd\x05\x03\x5e\x53\x80\x56\x31\xe5\xe6\xe9\x76\x2b\x93\x1b\xcd\x77\x88\x8d\xb8\xf5\x5c\xd8\xbc\x71\xe5\xc9\xc8\xb5\xba\x4a\x12\x48\xeb\xd1\x7d\x73\xb6\x55\x09\x75\x03\xd8\x91\x3f\xe7\xe2\x36\x85\x6d\x88\x4c\x48\x12\xe1\x95\xda\x39\xed\x18\xe8\x44\x31\xa2\xfa\xcf\x57\xfb\x4c\x82\x03\x6c\x74\xc5\x52\x78\x3b\x33\x66\xa9\x9e\xc3\xdf\xdc\xa5\x00\x87\x3e\xab\x91\x9a\xca\x04\x4f\x7f\x6a\xbf\x5c\x05\x65\x6a\xfb\xa8\xc2\x89\xf1\xdf\x7b\x42\x4e\x67\x99\x22\x41\x1a\xa1\xc9\x65\x3d\x9a\xa7\x4e\x78\x44\xc9\xa2\xc9\xc8\x28\xaf\x84\xd0\x12\x43\x55\x8b\xc3\xcf\xfb\x9a\x46\xe8\x76\xa7\xb7\xb7\xdf\x96\xcd\x05\xd7\x1b\x8a\x54\x93\xd8\x94\x1f\xf8\x6b\x8e\xc4\x7b\x77\x76\x33\xd7\x88\x76\x6d\x13\x33\x2d\x1b\xb9\x65\xa4\x92\xc8\x8c\x05\xa7\xb5\xe9\x76\x24\x20\x12\x56\x4a\xc6\xb9\x83\xc9\xd6\x07\x18\xb8\xfc\xa9\x82\xfd\x60\xfa\xad\x55\xb2\x3b\x63\xe1\x3d\x32\xf5\x39\xd8\xc9\x15\x44\x9c\xf8\x62\x9c\x5c\xd5\x73\x1d\x51\x5e\xf6\x4f\xc6\xe6\x46\x78\x05\x77\x84\xed\x7d\x24\x06\x0f\xb6\xbe\x94\x7c\xa1\x33\x67\x65\xdb\xa2\x03\x72\xee\x40\x2d\x3a\x94\xb8\x9e\xcf\xf2\x50\x84\x87\xbf\xf1\xb1\x46\x79\x09\x4d\x9f\xd6\xc2\x3d\x0f\xb6\xf7\x53\x4c\xa9\x3c\x46\xf8\xd0\x21\xb5\x48\x46\xff\x57\xbc\x3a\x6b\xae\xcc\xbf\x64\x84\x9f\x2c\xf1\xc0\x87\x6d\x96\x12\x1d\xc8\xa8\x0f\xf7\xa9\xd1\xab\xe5\x51\xb8\x9d\x18\x89\x7d\x93\xfe\xdc\x30\x6d\x3b\xfb\x7c\xa8\xc5\x53\x49\xd6\x4c\x90\x37\x0e\xc4\x49\x75\xf8\x05\x30\x22\x1b\x7a\x54\x31\x05\xc3\x98\x65\xab\xc8\xe1\x99\x63\x46\xc9\x52\xb8\x13\x3e\xf1\x4c\x21\x8f\xce\xb4\x9d\x12\xe4\x5c\x54\xe3\xfa\x8f\xb5\x5b\xc6\x28\xfb\x1c\x23\x60\x49\xe6\x7d\x0f\xf8\x5f\x99\x8f\x5c\xa5\xbb\x80\x30\x0c\x37\x47\xf0\xb9\x09\xc3\x95\xdf\xc1\xb9\x0b\xfc\x57\xb4\x0e\x88\x5f\x38\x2a\x70\x2d\xc3\xfb\x0b\xc0\xdd\xbe\x8b\x96\x88\xed\x28\xda\x91\xcc\x90\xb3\x92\xac\xce\xff\x43\xf8\x5a\x3f\xb5\x35\xf9\x34\xfc\xaa\x8b\xbd\x26\xc0\x93\x9a\x1e\x13\x9c\xe0\x3b\xb2\x60\x99\x9e\xfe\xd4\x28\x8d\x36\x8a\x1d\x2c\x4d\x0a\x72\x03\x75\x8b\xff\x28\x4a\x26\x35\x64\xe7\xc0\x78\x23\xcc\xe0\xcc\xf9\xbc\x2e\x59\xa7\xac\x10\x45\xc5\xc3\x01\xf7\xad\x96\x24\xde\x58\x41\x0e\x2a\x71\x9f\x76\x5e\xc7\x26\x17\x06\x5e\x2a\x61\x16\x2f\xd2\xe2\xa5\x7f\xf3\x92\x8a\x19\x17\xa8\xe9\x57\xf8\x34\x31\x7c\x50\xed\xf7\x27\x92\xbe\x88\x03\xb2\xa2\xbb\xb6\x27\x53\x62\x44\xa0\x56\x1f\xc0\x4a\x6f\x7a\x8a\xa6\x38\x24\x9e\xb8\xe8\x53\x43\x8e\xc7\xcb\xb8\x13\xd5\x73\x87\x3e\x93\x57\x08\xb4\xa4\x46\xe0\xf1\x1a\x64\xb1\x12\x79\x85\xf3\x40\xaf\x28\x14\x1b\xf4\xea\x16\x16\xf9\xfd\x07\x95\x59\x2d\x62\x79\xf8\x5a\xbf\x7f\x3c\x3e\x72\x9a\xc0\xbe\xe6\x0f\x9b\x1a\xf5\xb2\xbd\x2c\x30\xcb\x77\x8f\xad\x83\xc0\x2a\xd0\x85\xe5\x85\x28\x12\x00\x23\x3e\xee\x3d\x7a\x54\xcf\x98\x44\xdd\x6e\xa4\xb3\x93\x69\xe2\x1e\xb7\xd4\x4a\x3d\x5e\xac\x23\x86\x99\x78\x1a\xb7\x71\xe9\x4d\x2d\xec\x49\x1e\x75\x35\xdf\x76\x84\xfc\x1a\x36\xe9\xe0\x66\x65\x92\x88\xf3\x3c\x23\xa1\x63\xbf\x1e\x9e\x53\xa4\x0c\x83\x86\xf3\x6f\x1a\xe1\xa8\xe8\xdb\x45\x62\xdb\x51\xef\x77\x45\x49\x9e\x42\xcc\xb3\x7c\xd5\xa1\x64\x9f\x06\xc5\x56\xc0\xe9\x29\x9b\x0b\x6e\x16\x00\x30\xbf\x0c\xc3\xed\x36\x7f\xb3\x12\x52\x45\xf2\x38\x4e\xd1\xff\x81\x3c\xe8\xfd\x32\x2f\x67\x2a\x8d\xca\x8e\x45\xdd\x11\x23\x3d\x33\x62\xff\x40\x79\xec\x65\x73\xc1\xa8\xb6\xf1\x7d\xad\x37\x07\x6e\x4b\xf1\x8f\xda\x16\x26\xff\x52\x07\x32\xcb\x44\x1f\x6f\x6c\xd7\x50\xab\x4e\x8c\xaa\xd4\x81\x37\x14\x2c\x9b\x27\x6f\xea\x02\xe4\x1c\x22\xa0\x90\x7c\x63\xbf\xe6\x7c\x53\x43\x4e\x99\xd6\x12\x66\x3a\xc1\x07\xd6\x28\x62\x6e\x6a\x96\xf9\xe1\x73\x5f\x6d\xa8\x84\x75\x23\x80\x2e\x75\x67\x55\xce\xc4\x67\x36\x37\xb5\x86\x8f\xe7\x6b\x6d\xc3\x55\xb8\x93\x3b\x6f\x86\x7f\x3e\x7d\x7b\xfc\xd8\xaa\x1c\x4d\x1c\x7e\x73\xdd\x82\x8c\x8e\x83\x81\x8b\xe5\x5e\x2e\x52\xdf\x51\x0d\xb7\x3e\x77\x48\x2b\x29\x18\x8d\x39\x51\xe9\x46\x8d\x9c\x6d\xa2\x3c\x71\x70\x6c\x04\xfd\xb6\x47\xe4\x44\x44\xc4\xaa\x27\x37\xeb\x3f\x8f\xe8\xa0\x14\x74\x6e\x02\x3c\x4a\xdd\x77\x58\x2f\xf9\x4d\xea\x14\xb2\x02\x2d\xfe\xca\x59\x1d\x2d\x2c\xda\xca\x29\x97\x69\x29\x68\x5a\x74\xe6\x50\xbb\x00\x40\x52\x1c\xd5\xbb\x50\x49\x70\x10\x3e\x09\xd0\xb9\x2c\x38\x0e\x47\xb4\x45\xe0\x58\x0b\x3e\x7c\x6a\x82\x56\xf9\xba\xd0\xfa\xab\xe8\x5f\x50\xee\x18\x9a\xb8\xb2\x60\x10\xb6\x73\xa5\x1c\x84\xcd\x6a\x69\xe6\x76\x0b\x93\x15\x17\x06\x16\xf9\x86\x18\x65\x61\x3b\x5d\xe1\x01\x89\x60\xec\xf1\x4a\xbb\x02\x69\x57\x4b\x0c\x09\xa1\x85\xf1\x07\xc5\x16\x23\x2c\xe7\x8a\xc8\xb5\x48\x2c\x19\x9b\x97\x7c\x73\x60\x04\x04\x93\x90\x67\xc5\x14\xdc\xf4\x5d\x8f\x56\x60\x4c\xfa\xd3\x09\x49\x2e\x8d\x43\x5d\x8f\xa1\x7a\x82\x75\x70\xed\xe4\x78\xae\x63\x96\x55\xaf\x9d\xde\xcc\xbc\xa3\x40\xce\xbb\xc5\xb3\xec\xf0\xfa\xaa\xcf\x1a\xfa\xe5\x5e\x85\x66\x42\x1d\xec\x59\x58\x90\xf7\xdf\xfe\x82\x5e\x29\xdb\x22\x4e\x02\x56\xe9\x2a\xe9\x1e\x5c\xee\x03\x78\xfe\xe2\x20\x25\x3f\x7e\x3a\x9f\x85\x5c\xb8\x47\xa9\x0a\xb0\xd7\x89\x39\x23\x32\x9e\xa4\x3d\xbc\x3e\xf9\x42\xab\x45\xcc\x19\x07\x09\xcb\xfc\x5e\xe3\x37\xf3\x94\xac\x88\x3a\xd3\xc3\xf4\x9a\xf3\xaa\x2c\x88\x81\xdc\x83\x37\x24\x7f\x5b\x12\x6f\xe2\x72\x77\xbc\x89\x9f\x3a\xab\x35\xa4\x98\xc4\xe3\xed\x1b\x4f\x0e\x56\x3d\x5a\x38\x18\x3a\x7c\x95\x26\x74\x46\x56\x05\xe9\xaa\xc7\xe1\x2b\x61\xb1\xce\x68\x99\x36\x63\xe6\x0c\x6e\x3d\xfb\x7c\x7f\xfe\x27\x6d\xd9\x5c\xb0\xbc\x47\x71\x4f\x71\x3c\x6c\xdb\xd8\xf4\x7c\xb0\xc3\x35\xc6\xb6\x0d\x53\x24\x01\x36\x62\x61\x51\x16\x1c\x52\x3c\x27\x4d\xea\x8a\x70\xe3\x85\x9a\xef\x57\x81\xf9\x25\x18\x6c\xfd\xe3\x84\x5e\x74\xa8\x79\x20\xbc\x13\xfa\x54\x4f\x5f\x13\xf1\xa8\xc5\x9d\x6e\x6b\x91\x5e\x5d\xdd\x15\xca\x28\x90\x4c\xd3\xde\x2b\xf5\x83\x29\x5e\x48\xa5\xfb\xc9\xb2\xb2\x88\x99\x47\x6c\xd2\x23\x90\x98\x6b\x9a\xe4\x4e\xc4\x5d\x84\xab\xb8\x82\x3b\x06\x25\x8f\x64\xbe\x00\x99\x8d\x1c\x50\x73\x8a\x4b\x61\xe6\x91\xa1\xe2\x38\x77\x4d\xea\x78\x62\x76\xf1\xd3\xcb\x00\x8b\x56\xa9\xeb\x62\x57\x18\xf5\x8c\x7c\x53\x75\x07\xe1\xfe\xe9\x12\xe1\x5f\xa7\x49\xa5\xc1\x1e\x48\x54\x08\x8f\x58\x2a\x89\xcc\x84\x90\x9c\xb6\x67\xe4\x56\x2f\x50\x28\xda\xc2\xcd\xf1\x8d\x41\x31\x06\x6d\xe3\xa2\x72\x80\xfd\xeb\x69\x1d\xe7\xac\xd0\x9a\xa0\xed\xf4\xa6\x9a\x37\x03\x76\xd5\x4e\x79\x25\x2c\xf9\x22\xcb\xfa\xc9\xeb\x16\x64\x9b\x02\xbc\xbb\xdd\x19\x95\x78\xf1\x48\xb5\x28\xfb\xc0\x0b\x71\x4d\x5c\xc1\xe1\x32\x99\xbc\x59\x33\x56\xef\xc4\x6e\x14\xfa\xf1\xe9\xc3\xf2\x57\x54\xc3\x53\x49\x44\x4d\xbc\xf0\x46\xb2\xa5\x29\x93\x3c\x4e\xd8\x31\x1a\xa3\x0e\x43\x85\x74\x87\xe3\x7a\x61\x2d\x9f\x0b\xfe\xe3\x4d\x99\x38\x65\xe3\x48\xb5\xf3\x9f\x07\xeb\xbe\x3b\x2a\x47\xb3\x85\xb4\xd5\x23\x13\xf6\xf8\x5d\x99\x1e\x28\xf2\x68\x4c\x54\x05\x9e\x7a\x70\x50\xbc\xe8\x0a\xf6\x78\x76\x57\x89\xdf\xdb\xfb\x5f\xd3\xfc\xc9\x08\x0b\xdb\x18\x80\xe7\x3b\x6e\x4e\x32\x17\x9b\x84\xb4\xcb\xf8\xdd\x02\xf9\x7d\xa9\xe3\xda\xc8\x07\x03\x40\xe3\x7a\x25\x17\xba\x84\x1d\x9f\x38\xbc\xe8\x2b\xb6\xc9\xa5\x1b\x36\xa4\x61\x91\x5e\x82\x01\xc8\x0f\xc7\xea\x4c\x2c\xe4\x8a\x9c\xe2\x74\xda\xd2\xf2\x8f\x9d\x02\xdf\x5f\xa9\x2f\x6c\xd5\x23\xaa\xf9\x20\xd9\xb7\x39\x98\x0e\x6b\xee\x73\xcf\xc2\xb9\x7f\x23\xa7\x6f\x82\x10\xfc\x39\x0d\x0a\xa1\x45\xc5\xb2\xfd\x5b\x5a\xce\x89\x83\x4a\xc8\xa1\x92\x6e\x53\x6b\x12\x63\xc6\xdc\x8a\x5b\x73\x77\x8b\xce\x67\x56\x87\x6e\xe6\x61\xdb\xe2\x58\x95\x3d\x53\xe1\x51\xcd\x4d\x91\x16\xbd\xac\x5b\xa5\x65\x1c\xcf\x15\x46\x6c\xd1\x74\x8f\x7c\xac\x54\xcd\xe6\x82\xf5\xd3\x86\x29\x6c\x23\xe6\x74\x23\x70\x2d\x3b\x1f\x65\x05\x17\xfd\x12\xaf\xe5\x83\x45\x93\xe5\x53\x2e\xd1\x1a\x66\x4e\xd8\xa7\xf0\xf3\xf9\x86\xcd\x8a\x68\x18\x55\x79\x1b\xb6\x6d\xc8\x0d\xda\xd3\x2d\x85\xf7\x53\x7d\x5b\x94\x2e\x0f\x53\xbb\xd6\xf0\x28\x13\xf3\xb9\xd4\xa7\x76\x68\x29\x22\xd4\x2e\x10\x27\xf9\xf5\xd3\x3b\x5b\xe2\x5b\xc5\x36\xeb\x12\x88\x52\xc7\x47\x0b\x02\x28\x4d\x4c\x9c\xb6\xaf\x94\xc0\x3b\xf4\xcf\x0a\xab\x22\xf5\x89\x76\x25\x4e\x3d\xec\x2e\x40\xed\x9a\x9e\xf4\x88\x46\x88\xa9\x56\xed\xee\x98\x50\x07\xa6\x56\xd9\x3b\xa9\x6b\x11\xa5\x90\xf9\xf0\xf3\x52\xd2\x46\x3b\x1d\x95\xd4\xfb\xab\xb1\x4a\x01\x5e\xc5\xa8\x2c\xd0\x36\xb4\x58\x0e\xca\x50\x87\xf2\xb1\xd7\x03\xb3\x30\xdb\x7e\xfb\x2d\x75\xcf\xf1\x63\xcd\x57\x8b\x46\x11\x0b\x3c\xe0\xbf\xe7\x0f\x56\x1c\xd5\xfc\x4a\xf8\x67\x6c\x91\x5e\xeb\xb9\x2e\x66\x5e\x9c\xc2\xb7\x73\xb3\x32\x16\x28\x16\x29\xe3\x7d\xcd\xdb\xa7\xc4\x30\x95\x43\x6b\xf2\xbb\x2d\xbe\x67\xa8\x4a\x73\xe1\xc3\xce\x60\xec\x79\x7d\xd7\xbb\x55\xdf\x13\x00\xd1\x27\x27\x5e\x9f\x6c\x4f\xfa\xe2\x6a\xa7\x86\xad\x55\x7a\x2b\x46\xc0\x4a\x6f\x54\xb3\x36\xde\xb2\x91\xeb\x12\x53\xb0\xdd\xca\xe7\x94\x81\x24\x29\x60\x15\xb7\xca\xac\xde\x24\x9e\x0d\xa7\x87\x87\xdf\xf3\x9d\x8f\xe8\xca\xab\x88\x23\x1a\x7c\xb2\x7d\x98\x52\x59\xd5\xa8\xeb\x91\x6c\x2e\xb8\x69\xa2\xf6\xdb\x2d\x1e\x48\x25\x30\xd6\x11\x3b\xe0\x17\x70\x24\x9a\xff\x82\xf5\x10\xd4\xc8\x9d\xc0\x79\xd0\x9b\x63\x82\x3a\x6d\xce\xde\x09\xda\xb1\xcd\x7c\xd7\xc2\xb5\xc4\xba\x0e\x66\x6c\xd5\xb3\xd8\x98\x18\xe9\xf4\x6c\x93\x25\x70\x3e\xcf\xb9\xde\x07\xda\xf5\x59\x25\x8e\x65\x23\xe9\xca\x13\x1a\xa7\xad\x52\xd1\xda\xb2\xf4\xd7\x1f\x89\x0d\x30\xef\xcd\xe6\x82\x33\x9b\xc6\xab\x17\x2a\x65\x85\x7a\x1b\xd4\xf4\xe5\xb5\xf1\x4d\xe2\xc4\xa4\x91\xd4\xbb\xc7\xea\x16\xf3\x1e\x76\x94\xe4\xa2\xd4\xe7\xf7\x8a\x8c\x18\xae\xb1\x14\x49\x05\xb7\x3e\x92\x3c\x71\x3d\xca\x18\x4e\x92\x01\x32\xab\x56\x89\x27\xcc\x93\xd7\xb3\xb9\x20\x3b\x59\xae\xd4\xa2\x1f\xf6\xe6\x76\x36\x17\xb4\x8a\x93\x8b\x3b\xcc\x58\xfc\x9e\x5c\x3c\x29\x69\x41\xed\x3b\xae\x49\x2b\xf5\xec\x69\xa3\x69\x98\x12\xd3\x89\x9c\x82\x85\x6d\x98\x09\x1d\x84\x57\x79\x9b\x4d\x5c\x17\x29\xed\xec\x90\xd7\xc4\xa1\x8d\x88\x0d\x09\x58\xe1\x03\xdf\xfa\xe0\x48\xbd\x3e\x23\xc2\xfd\x3e\x3d\xa4\xad\x41\xd1\xaf\xc4\x3f\xea\x9f\xc0\x17\xe2\x01\x00\xd8\xc5\x8e\xc7\xeb\xbd\x6c\x2e\xb8\x7d\xef\x40\xd1\x07\xd8\x10\x4e\xf8\xde\x7c\x94\x21\x59\xe0\x13\xbb\xe0\xb8\x34\xe4\xb6\x51\x4d\x79\x60\x83\x2c\xd9\x20\xf0\x5b\xca\x24\x55\x31\x4a\x3f\x30\x40\x1e\xb9\xc4\xb1\xfc\x0a\x02\x79\x5f\x6f\x6a\xf5\x10\x45\x97\x81\x8b\x51\x26\x65\xfa\x9f\xba\x1a\xcc\xa2\x9d\x31\xa9\x3a\x75\xfc\xa4\x2c\xb6\xf2\xfc\x39\x08\x75\xc2\xa9\x99\x43\xa2\xaf\xbb\xbc\x3d\x5a\x23\xc6\xab\x7a\x28\x0a\xaa\x61\xd7\x8b\xec\xa3\xa6\xb6\x2a\x33\x02\x52\xb6\x10\xb1\x39\x1f\x80\x8d\xd3\x2e\x31\x8c\x05\x46\x94\x1a\x76\x28\xe1\x57\xce\xe3\x39\x45\x05\xba\xe0\x94\xe2\x79\xec\xf1\x58\x86\x6c\x2e\xd8\xbb\x55\x69\x2e\x71\x41\x1c\xbb\xcf\x6a\x3a\xe0\x99\xaa\x58\xf1\x83\x9b\x64\x3d\x87\xbb\xc2\x55\xad\x6c\xa0\x71\x5e\xb2\xac\xae\xa0\x6e\x10\x71\x1f\x79\x45\x77\xec\x04\xbb\x7d\xf1\xc1\x2f\x6b\x39\x29\xd3\xe7\xcc\x69\x15\x42\x8a\xd4\xdc\x53\x43\x94\xa6\x1f\xb2\x73\x8d\x9f\x6e\x92\x57\xed\x9c\xa6\x39\x3c\x01\xf9\x06\x41\x65\x2d\x60\x0f\x73\xd4\x84\xb7\x18\xb7\x34\x24\x38\xed\xd8\x8f\x06\xab\x6d\x76\x92\xbc\xe0\x21\x0f\x31\xcc\xf1\x14\x96\x97\x07\x50\x6e\xa2\x1e\x90\xe3\x71\xff\xa4\x58\x61\x5f\x9a\x50\xd7\x86\x54\xc2\x0e\x0c\x0a\xa4\xbf\x2e\xd3\xa8\x76\xc4\x13\x30\xcf\x7f\x2d\xd0\x23\xbb\x1d\x94\xb4\xec\x7e\x1c\xac\x86\xb3\xb7\x38\x0e\xca\xde\x85\x18\x51\xf5\x57\xff\x58\xac\x45\xa8\x31\x04\x49\xbf\xc9\xe3\xe9\xce\xcd\x43\x14\xa2\x7d\x85\x33\x1a\x33\x3d\x87\x65\x0a\x0c\x52\x0d\x56\x9a\xc5\x46\x66\x88\x8f\xe0\xc5\x93\xba\xec\x0d\x53\x27\x2c\x1e\xe6\x56\x3c\xe9\xdc\x15\xd9\xa8\xda\xb8\x44\x5c\x1b\x79\x94\x65\x73\xc1\x6f\xaf\x0c\x51\x96\x08\xe1\x37\xe7\xb8\x0d\xf2\x85\x51\x30\x3e\x4e\xcd\x79\xf1\x1a\x65\x54\x94\x2f\xf8\x89\x31\x79\xd6\x6b\x54\xea\x21\x07\x73\x5f\x64\xf0\x83\x18\x35\x4f\x6a\x6b\xec\xb0\x7c\x7b\x62\x90\x4a\xe7\x2b\xf2\x72\x2c\x75\x2e\x13\x7f\xcb\x92\xaa\xfa\x49\x17\x5e\x57\x45\xeb\x1e\x61\x90\x2e\x9f\xfa\xca\xfd\xe3\x12\x2b\x8d\x37\x38\x5a\x71\xd1\xa6\xab\x7e\xdc\x92\x4f\xa4\xdd\xc2\xdc\x93\xda\x3a\x47\xcc\x8e\x42\xf3\x72\x41\xf9\xd1\x51\xca\x79\xe3\x91\x0a\x29\xa0\x68\xa1\x1a\xe6\x00\xf9\x1f\xb1\x9d\x2d\x59\xa8\x07\xd9\xb1\x6f\xf2\x51\xcd\x38\xaa\x82\x6c\x3b\x6b\x22\x5e\x3a\xc0\x7a\xba\x53\x33\x45\x41\xbc\xa0\x91\xa6\x6c\xa9\xb1\x81\x16\x63\x6d\xe1\x22\x74\xc3\x27\x36\x2b\x16\x41\x48\x04\xa5\xbf\xfe\x9a\xa6\x08\xe6\x57\x7a\x74\xd1\xe3\xfb\x34\xe7\x18\xdf\x21\xae\xa5\x48\x82\x27\xbf\xd5\x18\xbb\x6a\x78\x4c\x35\x50\x3e\xbf\x5e\xa2\x78\x1d\xa8\x86\xca\x16\x2a\xf4\xa8\x11\x0a\x17\xce\x28\x36\x18\xa4\x0c\x88\xd7\xeb\xf3\xf5\xf4\xb0\xce\x88\xe6\xd0\x9b\x99\x38\xaa\x6e\x4e\x19\x07\xc1\xa5\x7f\xf3\x24\x30\x28\xee\x46\x1e\x66\x25\xe4\x25\x6b\xdc\x8f\x33\xf9\xcb\x6c\x9f\x85\x4b\x3b\x38\x7b\x48\x16\x8c\x25\x68\xec\x36\x08\xa3\xdf\xe9\x73\x66\x71\x83\xa3\x5f\x6f\x57\xac\x98\xc2\xb7\x4c\xc1\xd3\x3d\xaf\x45\x30\xba\x55\x8c\x4d\x4b\x46\x98\x7e\x7e\x66\x2c\x7d\x2a\xf9\xdd\xd1\x55\xf0\xb5\xb5\x0a\xe3\x59\xb6\xd5\xc1\xad\x05\x9d\x56\x34\x67\x06\x9f\x7e\xdd\xd7\x58\x17\x63\x87\x5d\x2f\xec\x44\x00\x1c\x49\xfd\xb1\x51\x43\x0a\x28\x2a\x86\x8f\x84\x83\x2b\x5f\x69\x90\xef\x7b\xfa\xcc\x69\x6d\xcd\x33\xb3\xb9\xe0\xab\x27\x55\xe4\xb2\x90\xf5\x68\x16\x0c\xd7\x53\x87\xcf\xc7\xa9\x43\x85\x38\x9d\x79\xfc\x36\x65\x00\x82\xf2\x79\x4e\x78\x2d\xbf\xae\x61\xc2\x38\x32\xcb\x4c\xfd\xcf\xcd\xca\x05\xe4\x57\x44\x42\x62\x6a\xcc\x30\x95\x7d\xde\xa5\xdc\xdb\xd3\xb7\x68\xc5\x9c\x4d\x91\x17\xe9\x1d\xae\xbf\x6a\x74\x02\x81\x62\x61\x19\x5a\xc2\x42\xee\x96\x99\x34\x4f\x02\xd0\x5c\x19\x4a\xb8\x0f\x67\xd8\x4b\xfe\xcd\x90\x26\xf8\x1c\x99\xea\x78\x4c\x5b\xe7\x7e\x58\x8a\x47\x55\x23\xda\x5c\x8f\x43\x91\x02\x66\x32\xaf\x38\xf5\xeb\xc7\xb5\xb4\x24\xd4\x15\x11\x18\x6e\x18\x0b\x08\x0f\x07\xc1\x23\x20\xd8\xd8\xa7\x5d\xe0\x96\x2f\xf8\xf4\xc6\xfb\xe6\x0e\x55\x8a\x07\x61\x67\x92\x3a\xbc\x10\x28\xd8\xb7\x87\xf7\x7f\x6f\xea\x27\x4b\xa0\x16\xaa\x52\x40\xd1\xd2\x0f\x6f\x83\xaa\x69\x05\x66\x25\x1f\x4b\x47\xbc\x60\x81\x08\x7f\xc2\x8a\x66\xf9\x67\x8f\x0d\x55\xb1\x79\x0e\x29\x04\xaf\x6a\x00\x45\x44\x8a\xe3\xab\x65\x79\x5b\x84\xed\x7a\xa8\x13\x75\xf3\x8f\xb4\xfd\x91\xa1\xaa\x24\x1a\x14\x8e\xc6\xcd\x53\x94\x3f\xb5\x89\xc8\xa9\x65\xe3\x01\x25\xc1\x95\x3c\x62\x25\xee\x8f\xf1\xea\x62\xe8\x46\xdb\xc0\xe8\x05\xa8\x03\xbd\xa9\x53\x8a\x16\xc3\x63\x94\x56\xeb\x3b\xa2\xbf\xbc\x0a\xbc\x24\xee\x6a\x3a\x40\xcb\x62\xe0\xbd\xa3\x28\x9f\x76\x9c\xd7\x74\x76\x10\xa6\x54\xa4\x8c\x4f\xa9\xe0\xcc\x2c\x5f\x49\xfe\xa5\x12\x62\x0c\x7b\x9e\xd6\x16\x78\x35\xc5\x93\xc0\x67\x9e\x05\x1c\xb1\xf4\xf6\x33\x7a\x14\x40\x1e\x2c\x5c\xc2\x67\xd1\xf9\x9a\x22\x55\xa9\xf0\xf7\x74\xef\x85\x61\xa2\x40\x89\xc5\xe9\xd9\x5c\x70\xac\x41\x3e\xb4\xe9\x73\xda\x9a\xf9\x3b\x35\x3a\xdf\x50\x68\x1c\xa4\x10\xe5\xaa\xa7\x5a\x9b\x93\x58\x80\x85\x59\x0f\x2d\x69\x9c\xcd\x0f\x0d\xd3\xd2\x3a\xbb\xaa\xc8\x01\x3b\xfc\x63\x83\x04\xa7\x0a\xd5\x50\x09\xee\xbd\x4c\xea\xfe\xe4\xf7\xe8\xa6\xbe\x67\xb9\x22\xe8\xf4\xa9\x6d\xb0\x84\xf3\x8c\xa2\x82\x89\xe0\xe6\xbe\xa3\x15\xaa\x6f\xe8\x8c\xb3\xb9\xe0\xb0\x16\xab\xd9\x45\x50\x05\x2b\x4c\xef\xf4\x7f\x2f\x51\x02\x8e\x9c\x02\x35\x2d\x40\xad\x52\xbb\xb6\xeb\x90\xa6\x17\x29\x28\x7a\x33\x1f\x5b\x1f\x9f\x8b\x2e\x52\x5c\xbd\xe7\x2f\xd3\xca\x70\xc8\xb3\x11\x88\xda\xe1\x9d\x23\x15\xd4\xdb\x26\x2a\xf8\x9e\xb2\x14\x71\x3c\xaa\x22\x93\xbb\x8d\xf1\xd7\x33\xf3\xcc\x35\xda\x99\x5a\x44\x4e\x0c\xa5\x9f\xb9\x54\x47\x90\xf4\x18\x72\xc5\xce\xcd\xa4\xc5\x8a\x6e\x47\xcc\x73\x40\xc6\xcf\x91\xbf\xc9\x7a\x58\x00\x17\x16\x45\x85\x6f\x66\xdc\xcb\x0d\x0a\xee\x64\xe3\x12\x76\x40\x2c\xf6\x89\x79\x49\xb7\xb9\x0a\x8f\xe1\x0a\x6e\x94\x0c\x33\x1f\x87\x7d\xde\xd3\x2f\x29\x46\xf5\xf1\xec\x73\x53\xfc\xd8\x0a\xbe\xaa\xc5\xfe\xfe\xf3\x43\x45\x8d\x54\xe1\x21\xd0\x40\x69\x7c\xaa\x5d\x68\xd8\x6d\xbf\x42\x1c\xe2\x57\xb2\xb9\xe0\x8b\x8f\xe9\x00\xb9\x70\xd9\xfb\xc6\x2a\x99\x91\x38\x3d\x9b\x0b\xbe\x04\xfc\x8d\xec\x32\xe4\x59\xc8\x21\xd8\x56\x6a\xd4\x47\x35\x78\xdf\xa3\x62\x68\x9c\xf9\xc4\x12\x85\x83\x6a\x51\x2f\x2c\xf5\x83\xcf\xad\x52\x8c\x20\x2d\xe4\x70\xd2\x46\xf0\xd6\xcb\xc2\x44\x1d\x92\xd0\x87\xbe\x16\xf7\xdb\xc4\xb1\x22\xd8\xf0\x23\xf7\xa8\xc1\x32\x84\x53\x76\xd3\x6b\x98\x62\x0f\x45\xc3\x86\x12\xc8\xb1\xb7\xb6\x25\x77\xbd\x4d\x4a\x96\xc7\x43\xd1\x8b\xc8\x8d\x86\x8d\xe9\xf4\xb8\xe1\x51\x23\x45\x0a\x61\x2b\x2a\xd0\xb8\xbf\xac\xd7\x95\x7a\x1e\x65\xfc\x36\x80\x51\xd8\x6f\x0f\xf5\xa1\x55\x81\x33\xe1\x53\x6f\xe8\x9c\x0c\x7e\xa2\xc2\x83\xdd\xbd\xa8\x41\x71\x38\x41\xe0\xd4\x13\xfe\xab\xcd\x33\x35\xb4\x8d\xcf\xc2\x44\x66\x5b\xef\xe6\x81\xa2\x74\x01\x83\xcc\xf4\xa1\x71\xf2\xe0\xe8\xf0\x5d\x8f\x08\xb8\x25\xb7\x17\xaa\xa0\x15\x1e\xaa\xb3\x94\xeb\x35\x9e\x38\x36\x54\xba\x63\x44\x3c\xa2\xcc\x49\xb8\x57\x6e\x05\x25\xb6\x9a\xe3\xd3\xae\x9d\x42\xc8\xb6\xb1\x59\x9e\x5a\x51\x27\xbd\xdf\xb9\x5f\xce\x9c\x69\x4c\x59\x1a\xb6\x5d\xba\xad\xf9\x59\x2e\x22\xdb\xa7\x0d\xa4\xb8\x19\x63\x12\xde\x34\x46\x5e\x4a\x82\x17\x61\x27\xdf\xdd\x07\x87\x3f\xf5\xcb\x2d\xba\x7d\x48\x14\x75\x25\x2e\x86\xc1\xbb\x65\x6d\xc0\x13\x94\x99\x6f\x02\xca\xd0\x9b\x3e\xf5\xa6\x2a\xe6\x23\x20\xc0\x81\x43\x92\x3e\xa8\x26\x67\x80\xa3\xa0\x7d\x8f\x44\x4f\x6d\xe4\xf0\x55\x06\xf4\xfa\xf0\x89\x5f\x1e\xa8\xf1\xea\x38\x07\x1b\x8e\xa8\x9e\x4b\xfa\x6c\x92\x94\x1c\x12\x9f\x0b\xa9\x77\xef\xd7\xf8\x63\x0e\x5f\xa4\x32\x21\x3d\xb3\x7a\xef\x35\xca\x9c\x48\xd7\xe7\xbe\xbc\xe8\xa6\xe4\xf6\xb5\x91\x59\x76\x3d\xea\x60\x78\x47\xc9\xae\x66\x52\x97\xc2\xca\x26\xc8\xee\x76\xb9\x6a\x25\x73\xd7\x21\x99\xc1\xe7\xa1\xf0\x73\x3d\x72\xe8\x26\xfd\x35\xd8\xfc\xa8\xf7\xfa\x78\x17\xc6\xaf\xd7\x4b\xf8\x3c\x12\xfe\x6d\xd8\xaa\xa4\x03\x02\x3d\x26\x35\xe9\x1e\x71\x00\x99\xdc\xdc\x89\x03\x58\x17\x32\x52\x4d\xc5\x29\xc9\xa9\x7b\x6b\x49\xba\x0f\x45\x65\x3b\x92\xc1\xe8\xdf\xe8\x17\x7b\xe1\x38\x5e\x49\xf2\x38\x5e\xd0\xbd\xe9\xd6\x21\x3a\x0c\x51\xc5\xa6\xb4\x2c\xf8\xda\x46\x79\x60\x84\x1f\x92\xe0\x4e\xfe\xf9\x1e\x7b\x5e\x9e\x2e\x15\xe4\xf1\x8d\x96\x32\x56\xc6\x87\x6c\xcd\x56\x04\xfe\x0d\x4d\xf0\xab\x2d\x0c\x6f\x4c\xf4\xac\x37\xad\x94\xae\xef\x16\xf2\x05\x9d\xd9\x7c\x55\xa2\x29\x55\xb7\xdb\xb4\x28\x72\xc2\xe7\xcf\x2f\x87\x1b\x17\x34\xca\xa3\x0e\x25\xba\x96\x5b\x5a\xc4\x54\xdf\x0f\x0b\x45\xce\xe0\xff\xb2\xae\x84\x72\x89\x8c\xb4\x4c\x1d\xbc\xa2\x4c\x65\x2b\x9c\xf6\x1f\x7e\x89\xda\x91\x41\x0a\xc6\xcb\xdb\xe6\x81\xfd\x06\x29\x24\x26\xae\xb1\xfd\xdb\x24\x4d\xac\x49\x1c\x4f\x48\xfc\x8c\xa3\x0b\x45\x51\x43\x3b\x1d\xc9\x24\x48\x7d\xaf\x1f\xd4\xac\xd3\x67\xcc\xe6\x7e\x76\x87\x62\x74\xae\x9b\xa9\xf7\xf1\xf1\x25\x8a\xc1\x96\x8d\x6b\x98\xef\xa3\x5c\x6f\xea\x1a\xcd\xf6\xb0\x46\x98\xe7\x47\x38\x73\xfa\x7f\x45\x92\x7f\xd1\xe6\xf8\x5b\xf8\x41\x3c\x8d\xf3\x5c\xa1\xf9\xc8\x1c\xa0\x27\x9b\x0b\xae\xbd\x4a\x28\x44\xc3\xae\x9b\x8b\x4c\x9e\x96\x59\x4f\x40\xdf\x7a\xb7\x46\xb0\xe3\x2e\x57\xa2\x8b\xcc\x7c\x62\xe0\x70\xd9\x6d\x20\x53\xcc\x51\x7b\x0d\x4b\x61\xeb\x84\xef\xd6\x43\x91\x25\xc9\x11\xe5\xab\x71\xa3\x3d\x33\xec\xd9\x73\xbd\xe9\xa5\x8d\xc9\x89\x5b\x4b\x8b\xe8\x54\xc7\x8c\x85\x87\x56\xe6\x61\x32\xa9\x5f\x8d\x53\x2c\x49\xed\x2a\x2f\x98\x82\xea\x01\x2d\xdc\xa6\x58\x14\x67\xca\xdc\x9d\x91\x50\x08\x92\x12\x5b\x6d\xb9\xd3\xbc\xf0\xfc\xce\x05\x2b\xfa\x69\xdd\x0c\x72\x71\x36\xdf\xcd\xff\xbf\xd8\x03\x5d\xaf\x8c\x54\xe1\x52\x64\x77\xf7\x44\xb2\x62\x63\xc7\x59\x4d\xae\x86\x1d\x11\xd1\xad\x0e\xa9\x37\x4d\xd0\xd8\xe1\x98\x31\x2a\x14\x99\x99\x7e\x03\x61\x1b\x38\xe1\xee\xc8\x47\x91\xf7\x17\xcf\x26\xff\x49\x0d\xb3\x02\x11\x44\xcf\x3f\x3f\x9b\xfc\xc2\x16\xed\x04\x25\xcf\xc2\xc5\xd1\xf7\xe5\x10\xf1\x3b\x26\x69\xf8\x47\x89\x73\xc6\x89\xe0\xdb\xf7\x1a\xe7\x36\x6b\xb7\x2f\xa3\x7e\x35\x0a\xe6\x4c\x3d\x65\x48\xb2\x57\x58\xd7\x7c\xf4\x66\x35\x03\xdd\x35\x7d\xd7\x4d\xb8\x56\x7f\x6b\xcb\x30\xa5\xff\xb5\x6d\xf0\xae\x49\x0d\x5e\xa0\xf4\xb3\x91\xa6\x9e\x03\x91\x5d\x1a\xf1\x89\x55\x66\x34\xb5\x36\x0b\xc3\xc0\x3f\xdc\x27\xa5\x0e\x02\x34\x4e\x1f\xe9\x27\xb7\x3f\x3f\xc2\xe2\x47\x9c\x79\xdf\x7c\x0d\x0e\xf2\x9a\xea\x52\x31\xee\x0b\xae\x95\x2f\xd2\xf7\xea\x2d\x6c\x32\xa3\xfa\xf7\x69\xa7\x2c\xc0\xaa\x6f\x1d\x82\x8f\xb4\x82\x38\xb1\xa2\xf3\x4f\x0f\x25\xaf\xea\x1a\x32\x6d\x54\x4b\xb6\x4b\x99\xc5\x8d\xd2\xe1\xd8\xa2\x7e\x78\xeb\xd4\x71\x40\x4b\x97\xe5\xde\x60\xd4\xc5\x51\x4a\x7e\xfa\xf8\x3d\xba\xb4\x00\x39\x02\xc1\x0a\x3e\x37\x71\x92\x56\x82\x73\x62\x3e\x30\x50\x48\x09\x3b\x66\x6c\x00\x9c\x39\x0a\xaa\xff\x95\x8c\xe4\xfd\xfa\x7c\xc9\xf4\x57\x1a\x35\xbf\x04\x64\x96\x51\x1c\x24\x6d\x1c\xd3\xb0\x07\xce\xec\x8e\x0a\x88\x51\x0f\xc9\x37\xaf\x7a\xfb\x6f\x4a\x5e\xd9\x9d\xc4\xb3\x2c\x3e\xa9\x2d\x89\xd1\xdc\xb8\xcd\x90\x36\xb2\x94\x76\x73\xd3\xa5\x7a\xb0\xf6\x45\x09\x92\x9a\x7e\x9e\x0f\x90\x1f\x79\x72\xb0\xa8\x2f\x6a\xc4\xb5\xa0\x04\x1d\xf9\xc4\x30\xb5\xda\xb5\xb9\x8f\x6d\x6f\x7a\xdd\x55\x3a\xf8\xe8\x7a\xe1\xfa\x82\x1a\x39\x3d\x7c\x81\x56\xb8\x72\x87\xcc\x0a\xd8\x44\x84\x3f\xf6\x97\xe7\x86\x8b\x87\x86\x55\xdb\xed\xcc\x96\x89\xca\x94\xc0\xf3\x11\xef\xf8\xbe\xbe\xba\xde\xfb\x4c\xe8\x60\xd2\x23\xe7\x0f\x16\xd7\x87\xc7\x3f\x1d\xa7\x39\x1c\xd3\x3a\x21\x6a\x13\x1e\x7c\x2d\x14\x74\xdf\x3f\x21\x31\x5d\x18\xb4\x4f\x51\x24\xe2\x9d\xa8\x1a\xb6\xeb\x6f\x6a\x13\x55\xec\x12\x26\xcc\xa8\x8d\xeb\x1f\xd6\x8c\x4f\x4c\xd3\xaf\x22\xc7\x8c\x6c\xfe\x52\xf3\x5e\x97\x5b\xd3\x64\x44\x49\xdd\x6e\x9c\x99\xfc\x2e\x45\x86\x63\x35\x7e\x83\xd0\x7b\xe5\x49\x01\xe6\x5a\xc6\x07\xc6\xc6\x1d\x50\x91\xcf\x92\xd7\x5e\x91\x9f\xb4\x08\xef\x22\x33\x42\x06\xae\x30\x1c\x3e\xaf\xdb\x76\x2b\x49\x01\x0c\x29\xa1\xdf\xa9\x05\x13\x60\x5d\x2c\x24\x82\x5c\xaf\xaf\x8b\xd4\x61\xc5\xc7\x9f\x73\x62\xf9\xd5\x63\xbe\x96\x88\xe2\xb6\xa8\x43\x05\xc4\x74\xe7\x4c\xb8\x94\x17\x23\x47\x09\x48\x48\x5f\xb7\xf1\x3a\xf5\x83\x62\xf0\xf1\x49\xd6\x6c\x07\x46\x2b\x83\x6f\x2e\x57\xe7\xa4\x8e\x86\xb9\xd2\xf0\xc5\xc6\xbc\x73\x1f\xb1\x64\x52\x5f\xb7\x41\x1f\xec\xeb\xcc\xe4\x65\xaa\x11\x74\xc9\xb2\x41\x34\x33\x4a\xcb\x71\x73\x63\x1f\x24\x7e\xda\xa4\x2f\x2b\xb6\x43\xd4\xe7\x43\x72\x65\x5d\x1a\xb3\x1f\xd0\xb4\x0c\xc8\x26\x60\xba\x19\x7d\xe1\xd2\xe5\xf1\x7d\x9d\x18\x45\xcc\x35\x09\x70\x8d\xb8\xa3\x04\xc5\x90\xb3\x79\x29\xab\x77\x56\xed\xf7\xd6\x75\xaa\xfc\x01\x91\x7a\x2f\x8e\xf4\xaf\x66\x6a\x8c\x5e\x46\x38\x8e\x41\x21\x12\x5b\x21\xc4\x16\x70\x11\x3b\x05\x1c\x59\xe0\xa5\xfe\xe3\x85\x64\xbf\x58\xa2\xf1\x49\x33\xa8\x63\x84\xd6\x41\x50\x81\x1b\xe4\x37\xca\x07\x5a\x43\x26\xe2\xe6\x38\xbd\xc6\x91\x49\x71\x4d\xda\x89\x55\x5a\xea\xab\xb6\x06\xf1\x60\xc4\x84\x88\x3d\xd8\xa9\x24\x91\x5b\xe0\xad\x9a\xcd\x05\x7b\x40\x31\x99\x5d\x82\x6d\xe2\x12\x53\x69\xc5\x36\x3c\x93\xdc\xc9\x36\x75\x0a\x9c\x57\x27\x90\xe1\xf9\xcf\xe8\xde\xff\x34\x1f\xb1\xd4\x82\x7f\x1d\x56\x97\x43\x17\x49\xbb\x44\x63\xf3\x99\x76\x59\xb6\x14\x50\x27\x2f\xf7\x2e\xed\x86\xc9\xf3\xed\xa8\x47\x15\xe2\x04\xe7\xab\xca\x74\x0b\x85\x1f\x33\x17\xfc\xf8\xb8\x62\xea\x85\x2b\x14\x96\xda\x87\x1e\x55\x34\x3f\x3e\xe3\x2b\x38\x33\xe1\xac\x6a\xc9\xd7\x03\x19\x1d\x1b\x96\x5d\xab\xa0\x10\x61\xe1\xad\xbf\xeb\x45\x2f\xca\xdf\x10\x16\x11\x3c\x46\xb1\xfb\x98\xa6\x6c\xef\xae\xf2\xd3\x0d\x48\xf7\xa7\x5e\x51\x84\x27\x1e\xaa\x54\x04\x18\x9c\xfa\xd0\x40\x38\x2a\x3d\x5c\xa9\x46\xe3\xad\x9f\xb4\x28\x86\xf8\x5c\x3e\x0b\xaf\xe4\xfb\x5a\x78\x66\xd1\x46\x15\x41\x27\x99\x3d\x79\xa8\x22\x28\xcb\x13\x2e\x0a\xdf\x36\x1f\x8e\xae\x05\xa4\x02\x94\xdc\xcc\x87\x37\x25\x97\x01\xb4\x0f\x62\x54\x79\x68\xe5\x60\x45\xf2\xca\x1d\x2c\xd2\xaf\x59\xda\x3d\xe9\xe7\x6d\x62\xc6\x26\x00\xbf\x95\x2c\xc2\x3c\x53\xfd\x35\xde\xb5\x4d\x41\x82\xab\x51\x45\xf3\xbe\x99\x43\x14\x58\x5e\x54\xc3\xd7\x2b\x99\xc0\x5e\x27\x57\x18\x06\x77\xee\xd1\x5a\x67\x6c\xdb\x51\xc4\xcf\x37\x9f\x1b\xa1\x38\x53\x75\x2b\x42\xb6\xfd\x0a\xc3\x28\xcf\x6d\x17\x63\xc0\xf0\x9e\x89\x43\x45\x57\x47\x39\x16\x0f\xe7\xfe\xb5\x7b\x63\xce\x94\xef\xd4\xc7\x2f\xef\x9a\x02\xef\xa6\x8a\xab\x55\xc1\x35\x7c\x69\x7d\x83\xa2\xd0\x37\x61\x40\x17\x2e\xfa\xf4\xcd\x63\xe5\x3c\xa8\x3e\xcb\x39\xe8\x58\x33\x4d\x15\xa3\x2d\x5b\x36\x35\xf9\x17\xf4\xbf\xff\xf1\xd3\x8a\x87\x1c\x62\x9d\xe0\x90\x1b\x6d\x67\x3a\x01\xda\x9f\x95\x56\x5c\x9b\x6f\xb8\x4f\xb6\x6d\x91\xe1\xef\x04\xdd\x1a\x85\x61\xcc\x44\x48\xe6\x83\x67\xe5\xa5\x5e\xa6\x2e\xad\x71\xaf\x99\xa9\x55\xed\x9f\x30\xdf\x45\x05\x0c\xa4\x8d\xc5\xaf\x89\xa0\xda\x1e\xcc\xf2\x88\x74\xc8\xf4\xd1\xf7\x1c\x50\x96\x77\x58\xf3\x88\x9e\xf4\xd0\x46\xc1\x79\xa7\x4c\x08\xad\xee\x55\xae\xc1\xaa\x45\x6c\x02\xb1\x0e\xe1\x8f\xcf\x1e\x53\x52\x92\xb1\x27\x84\xf7\xe9\xfd\xab\x95\x52\x11\x97\x7c\x1b\x31\xb8\x36\xf7\x2b\x86\x63\xa6\x1d\x67\xba\xbd\x77\x6b\x83\x94\x17\xa9\x81\x3c\x7f\x3a\xaa\x8c\x9b\x13\x8e\x85\xdc\xcd\xe5\x4d\xd5\x58\x12\x47\xa6\xd1\xa9\x0f\x30\xe5\xea\xea\xae\x32\xc2\xe5\x82\xe9\xbb\x5f\x92\x0b\xc1\xf2\x1d\x14\x39\xbf\xa7\x17\xae\x4c\xd2\x0a\x08\xa7\xbc\xd7\x2b\xb7\x5f\xee\x90\xde\x23\xa4\x3e\xd2\x7b\xd7\x26\x80\xeb\x16\x91\x7c\xfd\x18\xda\xe8\x5d\x1f\x6b\xb4\xda\x78\x9c\x6c\xfb\x79\x69\x06\xca\xe3\xfc\x53\x1f\x5e\x1b\xff\x7c\x93\x87\x65\x26\x6f\xe4\x8f\x6e\x4c\xb6\x72\xc8\xf1\x2c\xea\x74\x27\x09\x08\x7f\xde\x28\x2f\xfd\x59\x5c\x09\xf8\xcc\x0b\xf2\x99\xe7\xfd\x62\x11\x8c\x68\x8c\x9f\x2d\xd6\xc4\xf7\x6e\xd8\xc6\xc7\x3e\x57\x6b\xd7\x42\x61\xd9\x8e\xba\x15\x69\x78\x6f\x9a\x29\x01\x1f\x88\x99\xd8\xc1\xc8\xef\xca\xe6\x82\x6b\x16\x2a\x31\xcc\x61\x89\x65\xbc\xd9\xa8\x58\xf0\x62\xc7\x8d\x23\x92\xa7\xbc\x9e\x3c\x76\x9d\xa6\xee\x26\x79\x15\x7d\x40\xe1\x46\x15\x48\x4c\x86\x69\xec\xa7\x05\x20\xe1\x1a\xb5\x7d\x69\xae\x1a\xfc\xd8\x4e\xf6\xc9\x25\x91\x71\x2b\x06\x1a\x2b\xda\x7b\xd3\x17\x8e\xe8\xa9\x6d\x1e\xb2\x61\x9f\x7c\xed\x19\x49\x45\x22\x4a\xfc\x79\xaa\x30\x6c\xa8\x42\xfa\x13\x5a\xc2\xf4\x7a\x2d\x8b\xb2\x64\xfb\x15\x51\x00\xbc\x67\xeb\x08\x47\x65\xa0\xd5\x22\x46\x51\x7a\xc8\x62\x2d\x67\xd5\x23\x51\x7a\x5d\xf0\xf7\x7b\x74\xb7\x6e\x8a\x0a\x12\x3a\x34\x5a\x37\xca\x6a\xc4\x21\x5d\x6a\xc2\x65\xea\xe3\xcf\x28\xaa\x74\x93\x60\xc1\xd6\x4b\x2f\x1b\x04\xf0\x89\xf4\xde\xc8\x2b\xe1\x1b\x7e\x09\xf1\xfb\x65\xa0\x16\xd4\x5c\xa0\x9d\x8e\x05\xe2\xae\xb0\xa4\xff\xeb\x90\xf8\xba\x28\x2a\xd1\x99\xc1\xbd\x43\xe4\x34\x17\xeb\x36\x05\xbd\xc6\x6a\xc5\x8b\xd0\x44\xac\x40\x90\x09\x62\x0e\xbe\x73\x33\xf3\xf6\xc5\x8f\xbb\x92\xc8\x03\xdb\xd4\x05\xb0\xa2\xc7\x19\x0d\xe0\xac\x6b\x5c\x1e\xa7\x90\xdb\x48\xc5\xc5\x76\x91\xb7\x0f\x9f\x79\x59\x7e\x9f\x6e\x0a\x3a\xfa\xf4\xff\xeb\x68\x94\x49\x25\x49\x84\xb5\xc0\x74\xff\x92\x82\x6f\x8b\x83\xf2\x0b\x56\xbc\x1b\x5b\x9a\x5a\x38\x52\x2c\xa2\x6f\x4c\x64\x9b\xbe\x1d\x11\x59\x8c\xc1\x85\xe1\x0a\x6f\x14\x0c\x2b\xb8\x8e\xbd\x61\xb8\xb6\xb8\xa0\xc7\x39\xad\x88\x81\x2c\x0a\x61\x1e\xc1\xbd\x87\x74\x7f\x17\x56\x21\x62\x2e\x95\x1a\x26\x07\x46\x88\x84\x37\xd8\x3b\xba\xf4\xd1\x59\x9e\xe7\xf1\x80\x80\xfe\xa6\xe7\x35\x89\x93\xe3\x50\xdf\x31\xb1\xe8\x12\x79\xdb\xb1\xbb\xed\x5d\xb2\xff\x75\x5c\x8f\x78\x7c\xeb\xd4\x75\x2d\x0b\xce\xdd\xa4\x5f\x3f\x05\xe2\x20\xdb\x15\xd0\x7e\xf2\x25\xaf\xdb\x20\x8d\xc7\x70\x8d\x8f\xde\xe7\xeb\xb9\xaf\x10\xd2\x19\x99\x5b\xb4\xad\xba\x46\x0e\x07\xeb\x53\x36\xcf\x2b\xa5\x89\x0c\x85\x0d\xbe\xd9\x5f\xc1\x78\x91\x1b\x99\x8c\x18\x0b\x96\x8b\x70\x5e\x44\x78\x2a\xcc\x8f\xb4\x80\xae\x3c\x23\xb8\x28\x36\xd0\xcf\x0f\x2a\xa3\x1a\xc7\xa4\xbe\x20\x46\xa7\x6e\xd3\x92\x72\x91\xc7\xeb\xba\xf8\x20\xbc\xef\x31\xa8\x28\x4a\xd8\x21\x1e\xe8\x65\x52\xef\x38\x19\x33\x42\xca\xb1\x17\x48\x66\x8d\x66\xda\xee\x7b\xc8\x92\x36\x5d\x47\xd7\xcb\x75\xe0\x20\x47\x24\x59\x3f\x35\x3a\x09\x90\x3b\xc8\xeb\xc4\x62\xa0\xa5\x9f\xff\x2d\xca\xc0\xac\x83\x20\x58\x8e\x9f\x5d\x2b\x09\xaf\x02\x87\xae\xf7\x8f\xfe\x55\x87\x6e\x39\x62\xdb\xbe\x2b\xb5\xc0\x78\xb2\x9c\xa1\x48\x1e\x19\xdf\x17\xbf\xbb\x90\x3c\xe9\x24\xe2\x92\xf9\x90\x16\xf2\xeb\xa1\x4a\x9e\x2b\x1b\xa3\x07\x32\xf8\x39\x50\xe3\x7b\x34\x8f\x4c\x93\x2a\x07\x80\xb1\xe7\x9e\x78\xe9\x84\xff\x97\xeb\x4d\xbd\xd8\xa5\x80\x98\x00\x34\x70\x57\xd7\xf0\x6f\xff\xf0\xca\x20\x51\xa7\xf8\x8c\x33\x14\x82\xbb\x1e\x8b\x85\x60\x55\xaa\x77\xc4\xc1\x7b\x1f\xd7\x2e\x0b\x64\x57\xad\x44\x5a\xde\x5c\x85\x72\x5d\xc1\xcc\xc4\x05\xec\x66\xf3\xd8\xe9\x09\x6b\xf0\x89\x75\xfd\x8e\x09\x8f\x2b\x1e\x2c\x0f\x54\x94\x51\x96\x90\x4b\xdd\x71\x59\x4f\x96\x04\xa5\x0f\x00\x49\xaf\xbe\x24\x01\x87\x0e\x04\x44\x1a\x66\x29\x21\x27\x18\x31\x80\x84\xde\x7e\x30\xf9\xc4\x6b\xd4\x13\xba\x0f\xe3\x9b\x6f\xbe\x4b\x5b\xab\x36\x72\x84\x42\x5c\xe1\x8c\xa7\xc6\x5d\xbe\x4e\xf9\x76\x3c\x60\xaa\x6e\xf3\x3e\x77\x5e\x5b\xad\x2e\x37\x17\x13\xb8\x52\x5e\x0b\x9e\xb0\x49\x0d\xdb\x51\xb4\xc4\xa3\x3b\x74\x77\x56\xe4\x44\x52\xf4\xef\x3e\x9c\x7c\x78\xc4\x29\x90\x1a\x29\xc0\xcf\xe6\xdf\xef\xc3\x93\xf4\x69\x1f\xe3\x0d\x59\xe4\xfb\xf3\x60\x3f\x41\xdb\x6a\x9a\xde\x16\x7e\xe9\x2f\x6c\x83\x0d\xd8\xe1\xe7\x89\x0d\xf6\x9e\xe9\x17\xb7\xca\x22\xa1\x03\x77\x62\x9b\xcb\x5b\xbf\x73\x58\xb2\xd4\x7c\x87\xd4\xc7\x95\x0f\x3d\xa0\xbd\xa2\x6e\xd7\xc3\x95\x28\xf4\xa9\xe3\xb4\xae\x44\x85\x83\x5f\x3c\xfd\xcc\xd6\xb9\x3a\xe3\xb5\x6d\xba\x48\x5b\x3d\xb0\x33\x66\xce\x99\xbe\x9d\xb8\x74\xda\x74\x8e\x9f\x30\xc4\x8b\x2c\x92\xd3\x99\xd3\x52\xd7\x14\xcf\x71\xc7\xad\x54\xfa\x22\xda\xa5\x2a\x2f\xb6\x2c\x93\x10\x8b\x83\x3b\xf5\xb5\xdf\x31\x4d\x09\xcc\xa7\x36\x78\xb8\x2d\x7b\x45\x50\xaf\x89\xe3\x03\x8f\xba\xdf\xa4\xe4\x75\x35\x63\x36\x27\x2b\xd4\xb4\xaa\x30\x7c\x8c\x0a\x05\xfe\xe5\x29\x93\xf5\x05\x88\x3d\x62\xd2\x3e\xd3\x6d\x1a\x8d\xb8\x24\x6c\x6d\x6d\x0e\xbf\xea\xce\x09\xaa\x57\xa2\x83\xa3\x39\xd0\xbf\x5d\xea\x9b\xb1\x15\xfe\x66\xf0\x6c\x4d\x8f\x1f\xa4\x00\x9a\xc8\x29\x80\xa4\xff\x5d\x32\x07\xcc\x77\x2a\xd9\x5c\xf0\xf4\x16\x85\xb3\xb2\xce\xe6\x79\x92\x1c\xb2\x71\xf6\x68\xee\xfc\xc4\xaf\x10\x87\x8b\x98\xc4\x73\xed\xd5\xcc\xcc\x19\xed\xb4\x81\x82\x23\x61\xd5\x77\xef\x03\x50\x63\x21\x76\x88\xab\xf2\x1f\x8f\x6c\xd4\xd8\x8c\x94\x95\x85\x51\x70\xf0\xcd\x89\x0a\xd3\x15\x55\xf9\x9c\x36\xbd\xed\x21\x58\xe5\xb7\xb4\xcc\xe2\x65\xc2\x27\x3d\xf9\xc2\x89\x5b\xc1\x9e\xd2\x99\x3f\xf1\x96\xc2\xc3\x23\x05\xca\x38\xa9\x2c\xfd\xbb\x27\x46\x68\x3b\x18\x8b\xd1\x44\xc7\x58\x95\xb8\x97\x77\x49\x81\x43\x4d\x1f\xb8\x5f\x8f\x4e\xb0\x4d\x5a\x89\xe5\x16\x46\xf7\x03\x43\x25\xff\x33\x76\xc4\xbb\x79\x80\x98\x5b\x12\xd7\xaa\x20\xf0\x67\xda\xad\xb0\x2d\x5b\xda\x78\xe4\x7c\xfa\xfb\xaf\xe8\x16\x6e\xbe\x6b\x45\x4c\x56\x63\xdb\x55\x62\xf2\xc3\x73\x31\x83\xd4\xc3\x4a\x9c\x1a\x97\x57\xf2\x12\x35\x75\xe6\x68\xf2\xf8\xc8\x03\xe5\xc5\xad\x20\x08\xed\x0f\x7e\xff\x42\x72\x81\x72\x5a\x56\x4c\xe1\x4a\xef\x5c\x30\x25\x59\x58\x31\x64\x5a\xa8\x4c\x63\x0f\xdd\x64\x47\x67\x3e\xd7\x17\xbe\x8e\x63\x6b\x9e\xcc\xa7\xd7\xca\x9e\x5e\x10\x83\x95\xb7\xfe\x36\x08\x5f\xce\xa2\x6a\x95\xd1\x2e\x6e\x39\x0f\x7d\xee\x3b\x4e\xc3\x33\xbb\x83\xa1\x75\xd1\x73\x1c\xa9\x07\x4c\x81\xcb\x77\x5c\x68\xbc\xb3\x00\x93\xc4\x19\xbc\x6b\xbb\xed\x91\x6b\x95\xce\xba\xd6\x5d\x27\x3e\x33\xbe\xd1\xa8\x59\x83\x86\x95\x16\x46\x9c\x51\x2a\xee\xa9\xf1\x5a\xfe\xbc\x8b\x91\xe7\xc5\xc6\xcd\x7c\x5f\x8c\x1d\xdb\xa8\x6c\x49\xf0\x7d\x13\xfd\xc3\xf9\x06\xad\x9c\xa2\x88\x09\xf3\xbc\xf4\xb7\x97\x28\xd5\x0c\x65\xdc\x3d\x3e\xf8\xab\x86\x44\xa0\x62\x31\xfc\x9f\xe0\x35\xee\x5f\xd0\x88\x7f\xa4\x8b\xa7\xd3\x67\x73\x81\x9b\x1f\xa2\x74\xf9\xac\xe8\x73\xa0\x6f\x90\x16\xb8\xc5\xa0\x24\xc0\x05\x60\xb9\xa5\x5e\xed\xdf\x50\xc7\x80\xe0\x38\xfe\x32\x6f\xb0\x58\x98\xb3\xb3\xcd\x33\xa6\x4f\xcf\xe6\x82\x33\xd1\x24\x19\x03\xaf\x2f\x75\xe1\xa2\x6e\x3d\xe7\x61\x46\xa8\xe0\x65\x17\xd9\xd5\xa2\x4e\x63\x10\x6d\x6d\xbc\x6d\xa1\x6e\x3a\x8e\x6b\x60\xbb\x1c\xa5\xfa\xfd\x68\x57\x5d\x52\x36\x37\x0d\xe4\xc7\x57\xe6\x1a\x25\x7b\xb9\x1b\xdb\x36\xff\xa9\xe9\xf5\x6f\x2a\xc9\xf3\x7e\xa9\x84\x1d\x0b\xf3\x23\x4b\x5e\x1f\xf8\xc5\x18\x05\x73\xb1\xe9\x03\x5b\x7f\xe3\xd8\x3a\xeb\x70\x97\x13\x9e\xa6\xde\x9c\xcd\x05\xd5\x99\xd7\x2a\xdc\x47\x87\xd7\xc7\x6e\x62\xdd\x2e\x9f\xa7\x12\x63\xf8\x98\x79\xc9\xc3\xc9\xfb\xe0\x83\x62\xb6\x7c\xe8\x42\x83\x82\xff\x15\xf9\x99\xcc\x0f\xb0\x29\xa7\xf4\xb8\x75\xdf\xf5\x30\x8e\x3c\xeb\x33\xb3\x4e\x29\xed\x3f\x71\x4c\x1c\xed\x83\xeb\xce\xc7\x8a\xad\x0f\x65\x73\xc1\xf9\x6d\xf2\xe5\xb7\xb6\x35\xcd\xe2\x2a\xdd\xe7\x56\x6a\x04\x5f\xe2\xe2\x78\xde\x9d\xfe\xf0\xd2\x6b\x94\xf2\xc6\x75\x13\x9b\x32\xf5\xf3\x67\xa1\x85\x5c\x4e\xd7\xf9\x18\xb8\x8e\xbd\xc6\xd5\x6b\x95\xf1\x1b\x54\x1b\xe1\x1f\xaf\x3d\x26\x1c\xe3\x72\xcb\x97\xdf\xb6\x6c\x65\x2e\xea\x2c\xac\xa3\x5a\xb2\x8e\x3b\x75\xed\xda\xf0\x1f\x2c\x5d\x33\x36\x89\x09\xae\x98\x2a\x69\xf2\xd9\x5c\x30\xa5\x59\x76\x87\x25\xcc\x95\x5d\x61\xb9\xfa\xfb\x09\x7a\xe6\x54\x57\x74\xab\x6a\x20\xe2\xa7\xce\xcb\xa3\x9b\xde\x68\xda\x94\xd3\x96\x32\x68\x54\xa3\xd2\x02\x97\xd4\x64\xd0\x7f\x3f\x0a\xcb\xfd\x6e\x62\xdb\x04\x71\x0f\x3b\xa3\xe5\xa1\x11\x4a\x65\xc9\xb0\x47\x8b\x94\x47\x34\xa7\x3e\x7f\x4a\x96\x86\xd8\x29\x71\xea\x86\xce\xc7\xfa\xc0\x64\x19\x20\x45\x2b\xca\xa3\x6d\x3e\x13\xe9\x44\xab\x55\xac\xc4\xc7\x65\x1a\x1e\x18\x10\x7e\xad\xf6\xe5\xed\x13\xc3\xc3\x7d\x47\xa3\x02\x2d\x9a\x44\x7a\x88\xa7\x8e\x8c\xd3\x63\xf4\x9c\x82\x2f\xe8\x3c\xfc\xc0\x6d\xae\x69\x13\x7f\xd4\x59\x96\x6a\xad\x21\x2d\x0a\xb2\x67\x61\xb3\xcc\x21\xcb\xc3\xa3\xeb\x68\xe7\xdd\xf1\x0f\x5c\x3a\x50\x90\x61\xb1\x85\xc2\x2d\xcb\xe7\x81\x63\xe6\x8b\x86\xa2\x4a\x1c\x00\x19\x52\xe7\x8a\x8a\xe8\xdd\x67\x1e\x51\x15\x7c\x1f\x9c\x26\xe1\x97\x4e\xa4\x4a\x23\x7a\x8d\x1f\xf6\x1f\x96\x18\x3e\x14\x70\x17\x27\x86\x68\x29\x61\x45\x02\x62\x42\xa8\xe4\xdf\x3c\x39\x4e\x5b\x60\x0c\x61\x9b\xb8\xa0\x63\x02\x57\x9a\xae\x64\x6b\xd8\x8d\x9c\x72\xb4\xbf\xea\xb8\x53\x93\x04\x6b\xcb\xaf\x7a\x91\x7b\x5c\x45\x4b\xa6\xcf\x63\x86\x7b\x68\x0d\x8c\x4a\x73\x01\x7d\x71\x8c\x02\xe4\xd5\x27\x56\x7c\x5c\x29\xb8\xb8\xcc\x98\x97\x29\x4d\x8a\x55\x9d\xeb\x31\x21\x19\x0d\x76\xb7\xa9\x85\x9d\x04\x4b\x96\x0d\x4a\x1e\x9b\x30\xc1\x14\xde\xc0\x85\x6c\x2e\x78\xe4\xdc\x8d\x75\xed\x42\xe4\xce\xa3\x7f\xa2\x93\xa7\x1b\xa2\x63\x28\xeb\x59\x38\x9b\xa7\x94\x3b\xe5\xa4\xff\xd0\x21\x28\xf8\x3e\xc3\xc8\x37\x19\xe2\x8f\xb8\x73\xe7\x38\xed\x90\xa4\x31\xf0\x01\x2e\x4c\xeb\x0f\xc4\xd5\x63\x4b\x96\x33\x86\xae\x5d\x2d\x92\x8d\x18\x2e\xa1\x0a\xe0\x49\x2f\xca\xea\xad\x6d\x5a\x33\xbf\x9c\x4f\xbc\xac\x7b\xd2\x40\xbc\x21\xbc\xdb\xe7\x56\x4f\x90\xf5\x1e\xae\x61\x56\xf6\x5d\x5c\x9f\x62\x30\x62\x9a\xa0\x81\x62\xc4\x13\x66\xfb\xbd\xa2\x7b\x39\x8a\xda\x37\xf3\x21\xa6\x25\x6e\x11\x41\x81\x09\x5e\xda\x3e\x4a\x01\x4b\x5d\x54\xad\x62\x14\x9e\xd0\xfc\xfe\x1e\xb4\x5a\x1e\x02\x33\xb3\x15\x5c\x42\xf9\x6e\x28\xfe\x3f\xf4\xe8\x08\xb5\xfa\x2a\x85\xdf\x16\xfe\xcb\xa3\xf3\xe1\x40\x5c\x80\x7c\xd5\x2b\x22\x7d\x4b\xb3\x42\x3a\xe3\xc3\xf1\xff\xdc\x95\x08\xf4\x74\x70\x58\x01\xfc\xbf\xab\xe4\xce\x0f\x6f\x3f\x9f\xe7\x54\xf1\x29\x42\x7e\x12\x94\x37\x5e\x27\xcd\xe6\x82\xab\x87\xc5\x50\xb7\x5b\xcf\x35\x31\x3e\x7f\x5f\x5d\x5e\x6a\x78\x4c\x08\xa8\xf7\x33\x43\x62\xf0\xa0\xad\x65\x4e\x36\x17\xcc\xdc\xa7\xd5\x39\x55\xea\xb8\x14\x82\xd9\x84\x4f\xb5\x79\x4f\x5d\x5c\x25\x75\x4a\x00\xd1\xfd\xf4\x24\xbc\xf5\x45\xc4\x71\x08\x2f\x70\x53\xfe\xfe\x21\x2a\xa5\x2a\x3b\x2b\x7c\xa0\x3f\x18\x17\x77\x79\x9e\x95\x70\x17\x4c\xbd\x71\x44\xb7\xe7\x67\x51\x54\xe1\x4b\xbb\x40\x12\xb8\x08\x11\x66\x23\x27\xe1\x0e\x92\x9a\x7f\x59\x14\x8a\x62\xff\x87\xbf\x9b\x0e\xea\x03\x0b\x0e\xef\x77\x71\x25\x7f\xfa\x58\xfc\xec\x6a\x58\xf7\xdd\xef\x4d\xfd\xe7\x15\x75\x6c\x6a\x73\xc4\x2a\xdd\xd1\x5f\x71\x2a\x60\xb4\xe4\xd0\xb8\x5a\x1a\x74\xad\x82\x4f\xba\x1e\x2a\x61\xb7\x29\x11\xbf\x5b\xb1\x87\x2b\x3a\x00\xbc\xce\x17\x82\xdb\xcf\x1f\x8f\xe1\x3a\x5c\xe8\x54\xfa\x95\xe6\xb3\x13\xb5\x43\x9e\x55\x9b\xfa\x22\x9b\xee\xec\x9f\x5c\xf2\xc8\x9d\xda\xd1\xc1\x9f\xc1\x80\xc5\xa3\xea\xca\xfc\x18\x0c\xff\x99\x93\xb0\x61\xad\x0a\x50\xf5\x67\xc5\x29\xf1\x37\xf1\xb0\x8d\x45\xf8\xa7\x29\x0c\x54\xf4\xe3\x24\x7f\x46\xc3\x2a\x51\x81\xb8\xd1\x50\xbc\xfd\xb6\xde\xf4\xbf\x28\x79\x4b\xd3\xe7\xb4\xf1\x3e\x2d\xf3\xa1\xd1\xc3\x15\x5a\x04\x0a\x0f\x7c\x7e\xb1\x7d\xff\xd9\x71\xca\x30\xd1\x71\x31\xa9\xfb\xb6\x7f\xe9\x91\xa5\x54\x91\x38\x9c\x4f\xc4\xbf\xec\x47\x0f\xd7\x29\x0e\x2a\xc4\x89\xcb\x78\xe3\xcf\xcf\x6a\xc0\x04\xb6\x6d\xdf\x46\x2c\x46\x77\x5f\x94\xbe\x94\x34\x2c\xe6\x16\x3f\x36\x52\x7d\xdb\xa2\x70\x04\xce\xd3\xd6\x2e\xb5\xf3\x32\xcb\x1e\x22\x7c\xa6\x7b\x62\x9b\x8e\x11\x22\x9b\xf0\xb3\x12\xea\xf7\x1d\xd5\x24\x2f\x03\xbb\x1e\xca\xdb\x61\x4f\x88\x39\xff\x8c\xef\xb2\x33\x0f\x2b\x23\x36\xea\xe1\xb0\x5f\xe2\x5f\xf1\x3d\x22\x92\xa7\x93\x11\x8f\xfb\x5d\x07\xdb\x0f\x6a\xb0\xb5\x15\x76\xa2\xd5\x84\x9b\xf0\xdd\x67\x35\x9f\x93\x82\x48\xb2\x39\x32\x50\xfe\x9e\x75\x3e\x8a\xf3\xe7\x53\x5f\x3f\x2f\x04\xc5\xb4\x94\xa5\x9d\x82\xc8\x9b\x5a\xb1\x5a\x69\x72\xfc\x82\xa2\x83\x4f\xaf\x9f\xa6\x75\x80\x36\xa9\x10\x87\xdb\xa5\xf0\xb0\x0a\xe3\x17\x52\xe7\xe7\xaa\x69\x9a\xe9\x9d\x8f\x6a\x4e\x97\xb8\x10\xc3\x60\xe9\xa7\xb6\xc0\xf7\x9d\xd9\x96\xb5\x44\xcd\xb1\x7c\xca\xb4\xfa\x96\x43\x49\x96\xa8\x2b\xc3\x46\xf4\xd7\x2e\x4f\x1b\x91\x8a\x8a\x62\x1a\x73\x97\xa8\x8d\x53\x11\xb8\x4e\x1d\x2d\xfa\x6a\x8a\x9a\x03\x7e\x78\xbe\x6b\xb2\x16\x69\x84\x11\xcb\x03\xec\x17\x7c\x7c\x8d\x88\x3d\x47\x79\x9b\xf2\xd1\xc3\x4d\x83\xa0\x13\x42\x79\x1f\xa6\xc1\xc6\x47\xbb\x92\x53\x48\xcb\x77\x5d\xac\x59\x9b\x04\xc1\x2a\x55\xdb\x51\xe3\x4d\xcb\x1d\x1d\x91\xbd\x01\xf8\x82\xf1\xa4\xa9\x81\xf1\xca\x25\x4d\x9c\x81\x7f\x97\xa1\x19\xa7\x60\xca\x4a\xba\x17\xdf\xd8\x49\xda\x93\x61\x78\x9d\x0f\x49\xa5\xbc\x1b\x0b\x66\x5c\x52\x16\xb9\x85\xc2\x7b\x9f\x1f\x59\x2b\xb7\xc2\x38\xfc\x76\x94\x67\x09\xdd\x4b\xda\x59\x24\x8d\xba\x70\xdc\xab\x8c\xde\xae\x12\x5b\xba\xc3\x62\x73\xf5\x20\xe9\x09\x5a\xe4\x3b\x63\xd9\x2a\xad\x96\x63\xc8\x21\xb1\x3d\x17\xa0\x4f\x19\xc1\x08\x8c\x68\x84\xb9\xde\x54\xf3\x73\xb2\x6e\xf4\xfc\x4a\x5e\xd0\xcb\xaf\x5e\xac\x11\xdb\x62\xb9\x70\x6f\xea\x81\xbc\x06\xbc\xfa\xae\x29\xec\x6b\xd3\x57\x36\xab\x7c\x2d\x6e\x29\x9e\xcd\x05\x6b\x40\xe3\x14\xff\x8b\x39\x20\x41\xf9\xc9\x40\x8d\x78\x07\x19\xa8\xf2\x09\x7f\xf1\x5c\x72\x11\x11\x3b\x81\x80\x1b\x85\xcd\x2a\x9f\x06\x39\x84\x77\x29\xee\x6a\x45\xf7\x6f\x51\xae\x5c\x4f\xff\xb8\x5d\x4d\x95\x70\x31\xb0\x0c\x9e\xd7\xc2\xf7\x11\x8b\x4c\xa3\xd2\xdf\x3b\x97\x3c\x19\xca\xd8\x16\xc1\xbf\xb2\x20\xef\xd8\x0c\xfb\xfc\x4e\xe4\xb8\x28\x76\x7f\x5c\x73\x9f\x3c\x16\xa6\x4f\x9b\xde\x36\x7b\x5a\x1b\x37\xe9\xcc\xbc\xe7\x01\x85\xc5\x52\x15\xb2\xca\xf1\x97\x93\xa7\x8b\x85\xdc\xa9\x1c\xab\xfa\x83\x06\x7c\xd4\xa8\x4c\x26\x1b\xce\x92\x4f\x8e\xeb\x38\xd4\x57\xbd\xa9\xa8\x07\x44\x31\x6e\xae\x25\x78\x96\xdf\x38\x19\xd7\x2e\x35\xc2\x4b\xae\x2d\x8f\xd5\x41\x0b\xae\x47\x4a\x84\xfa\x91\xfd\xe7\x77\x26\xd6\x3b\x9f\x01\xd0\xf7\xec\x76\x6d\x78\x15\x16\x80\x76\x6c\x07\xf3\xeb\xf3\x8d\xda\x3f\x8c\x51\xe7\xcd\x2f\x5c\xa7\x6d\xe3\x0a\xb1\x09\x48\xdb\x23\x3c\xb0\xe7\x05\x85\x18\x0d\x5a\x4c\xd1\x1f\x3f\x7b\x22\xf9\x89\x5c\x04\xb3\x81\xe0\x3d\x63\xb5\x29\x3c\x23\xb8\xc6\xdd\x66\xe2\x9f\xfa\xbd\xea\x8d\xff\xc7\x45\xd3\x54\x77\x65\xfe\xeb\x83\x8a\x41\x22\x75\x85\xa5\xb7\xb1\x69\x80\xfc\xe3\x19\x2d\xd3\x5a\xda\x5a\xf9\xad\xf0\x46\x73\xf2\x53\x55\x11\xf3\x60\xbd\xdf\xf6\xa0\x6e\x52\x59\xc5\x15\x14\x47\xb1\x7d\xed\x81\xe1\x6a\x57\xdf\xbe\xbc\x7d\x6a\x2e\x9b\x0b\x8c\x53\xe3\xf5\x0e\xaa\x24\x08\x82\x72\xa7\x3c\x74\xae\x51\xdf\x4a\x91\x1b\xd8\xf8\x73\xc3\x55\xdf\x0d\x86\x78\xe5\xdc\x9b\x3a\xdc\xbf\xaf\x29\x29\x66\x91\x82\xd9\x38\x2a\x2c\x79\x8a\x36\xc6\xdc\x8a\x61\xd2\x5a\x99\xbe\x69\xc7\x91\x61\xd7\x1c\x68\x54\x0d\x42\x54\x33\xc0\x9f\x1f\xd3\xb3\xc1\x4d\xf0\x5d\xe5\x3b\xec\x87\xcb\xa5\xcd\x82\xaf\xf8\x3d\x91\xc9\x62\xe4\x4d\x2b\x55\xc4\xc2\x6a\x88\xef\x60\xfb\xb4\x6e\x5f\xc2\x6a\x62\xf8\xbc\xa8\x45\x74\xd7\x61\x2f\x66\x61\x9b\x27\xe1\xae\x28\xca\x59\x97\xcf\xed\xcc\x82\xb3\xa3\xe3\xdf\xe8\x28\xd8\x76\xf0\xf7\xfd\xc3\xa3\x2a\x25\x5b\xc5\xac\xc3\x67\x90\x63\xb6\xff\x58\x72\x53\x74\x50\x9c\x7c\xee\xe9\x8f\x6d\x91\x46\x53\x54\x09\x2f\xf8\xeb\x59\x2d\x38\x1c\xb1\x42\x27\x62\x58\x78\x0c\xfe\x56\xa3\xa9\x21\xa7\xc4\xc4\xd0\x2b\xbd\xe7\xe2\xb5\xca\x75\xea\x78\x75\x96\x5c\xe9\x9f\x5e\xd6\x33\x7e\xab\x98\x99\xbe\x0b\x47\x23\xcf\x40\x7e\xbf\x80\xcb\x5d\xd3\xf7\x44\x02\x82\x11\xac\x81\x3f\xf3\x9d\xb0\x26\x05\x16\x0c\x1d\x02\xfd\x50\x4b\x0b\x0f\x00\xb3\x1f\x4f\xee\xc7\x0a\x07\xc5\x71\x89\xd1\xb8\x20\x35\x9e\xbd\xa8\xe1\x1c\x48\x86\xfb\x64\xde\xdf\xa3\xe0\x6d\xeb\x7c\x62\xdb\x88\x71\x4a\x59\xea\x9c\xb6\x57\x71\x97\x38\x8b\xbe\xbe\x5c\x5b\x24\x94\xb2\x70\x57\xc0\x38\xec\x73\x6f\x26\xab\xf8\x6e\x5c\x46\x9c\xba\x9f\xf7\x59\x49\xbc\x0c\xb0\x45\x7f\x7d\xa4\xf6\x17\x11\x83\xd6\x35\x58\x77\x49\xdd\xbf\x8e\x47\x10\xbf\xf6\x3f\xa2\x5b\x2d\x15\x8b\xd8\xf4\x94\x88\x95\x31\x6d\xc9\x1f\x09\x19\xd3\xbc\x46\x59\xb9\x30\xf9\xb1\x78\x99\xe9\xd6\x9f\x1d\xe9\xc9\xfd\xae\xd1\x0f\x62\xcf\x77\x44\x13\x95\x19\xb8\x5b\xd3\x47\x51\xdf\xc5\x22\xe4\xd2\x5b\x2a\x50\x41\x0f\x33\x5b\x90\x15\xc3\xeb\x65\xdd\xa4\xd8\xfc\x91\xc4\x1e\x20\x4d\x9b\x6e\xd2\xe4\x60\x30\x87\xe7\x64\xf1\x7a\x56\x75\x43\x0c\xad\xf5\x90\x1e\xb9\x6a\xff\x31\x50\x6e\xe5\x0e\x4c\xab\x88\x15\x44\xf2\x6e\x66\xeb\xc9\x78\xa1\x5b\xae\x4a\x0d\xdf\x38\x41\xf6\xf7\xa4\x52\xb5\xc3\x4e\x07\x6e\xb6\x3f\xec\x86\xc1\xfb\x5d\x88\x79\xc4\xc1\x3d\xca\x71\xb5\xac\x41\x46\x3b\x13\x07\xf2\x12\x2b\xd8\x75\x81\x0d\x91\xf9\x50\xe6\x06\xed\xfc\xc6\xc8\xeb\x73\xba\xb7\x73\x93\xae\x99\x45\x9e\x00\x49\xef\x7c\x29\x2e\x91\xb0\x6b\x66\x73\xc1\xc2\xd5\x0d\x09\xea\x73\xe4\x68\xf9\xb3\xfb\x92\x3f\x83\x11\x57\x24\x6d\xfc\x46\x73\x48\xe5\xa6\x8e\x55\x10\x5a\xfe\x7a\x6f\x3c\xfb\xcf\xe3\x3a\xe6\xbd\x31\xe2\xbc\x0a\x51\xc1\x75\x18\xfe\xb3\x83\x73\x35\x7d\x66\x57\xd5\x46\xc2\x5d\x53\xe4\x63\x9e\x1a\xad\x1d\x9a\x8c\x6b\x21\xc4\xd1\x51\x69\xd3\x33\x44\x4d\x64\xdb\xb1\xed\xc4\xed\x8b\x1a\x94\xa6\x0b\xbb\xae\x50\x11\x19\xff\x76\xec\x1a\xc5\x17\xc0\xb4\x90\x02\x9d\x06\x4b\x18\xac\xa9\x9c\x3a\x66\xbc\xe6\x7c\xf2\x98\xc9\x33\xe2\xa1\xb8\xc6\xe6\x67\xff\x57\x15\xee\x93\x45\x3b\xa1\xcb\x27\x81\x2e\x8a\xa0\x95\xc8\x33\xfd\x44\xcb\x35\xda\x01\xc3\xc2\xf6\x48\x6c\xf6\x9f\xab\x7e\xda\x7e\xbe\x4a\xb1\xc3\x07\xac\x27\xdf\x1a\x12\xdf\x08\x36\xf6\xe0\x0b\xfd\x79\x97\xc6\x09\x61\x18\x89\x6d\x35\x4f\x88\xfc\x0a\x8c\x14\xc1\x32\xf9\x17\xf3\xe5\x07\x5d\xe7\x53\x0f\x67\x73\xc1\x97\x1e\x51\xf4\xbc\xb8\x82\x3d\xcc\x22\x5f\x95\xf4\xc3\x9a\x60\xa4\xca\x48\x01\x47\x48\x58\xf3\x24\x4d\x77\x8c\xb3\x91\x31\x43\x7c\x78\xa4\xbf\x70\x4c\x73\xc6\xa8\xc5\x09\x2e\xbd\xe9\xe1\xf3\xb4\xba\x87\x16\x8b\xe1\x99\xa7\x46\x56\x7f\xd1\x51\xe8\xe8\xdd\x9c\x71\x94\xeb\x4d\x6f\x79\x29\xde\x87\xc8\x56\xad\xd4\x2e\xf7\xd7\xd7\x05\xbf\x20\x05\x5a\x91\xda\x38\x44\x07\x0b\x91\x2b\x0b\xe9\x75\x8a\x29\x7d\x15\x23\x10\x84\x7f\xa9\xa0\xed\x2d\x14\xa5\xe5\xa4\xdf\xbe\x4b\xaf\x05\xbb\xc5\xa9\x75\x83\xf2\xa0\x5b\x66\x37\xb5\xcc\x0a\x7f\xfc\xde\x0d\xa2\x0f\x6d\xce\x56\x6d\x1f\xa0\xa0\xb5\x50\x5c\x50\xdf\x15\xc9\x08\xad\x0f\xe9\x4f\xd5\x41\x05\xc4\x9f\xb9\x94\x88\x2d\x3b\x30\x5a\x0d\x00\xaf\xcb\x61\x1b\xa7\x00\x66\x04\xf4\xb6\xe9\xe7\x9f\x50\x4c\xc5\x6d\xca\x90\x1d\xbe\x4e\xa0\x70\x9c\x7e\x5e\x16\x97\x65\xca\xb0\xcc\x54\xfa\xa3\x32\xeb\xc0\x5d\x55\xcc\x38\xa5\x91\x93\xec\xb6\x6a\x48\x68\x09\x55\xc4\xa1\x6d\xb0\x51\x3a\x51\x89\x46\x7a\xd7\xe1\x6f\x6a\x55\xb2\xed\x59\xd4\x2f\x59\x11\xab\xe1\xfa\x89\x22\x84\x9a\xfa\xc0\x5f\xf6\x6f\x4e\xe0\xa3\x05\xdf\x8c\xe8\xfc\x9a\x8b\x66\x85\x82\x7f\x0f\x2f\x32\x9f\xd9\xa9\xd0\x91\x69\x67\x44\xe5\xf8\xb8\xe6\x6a\x12\xde\xec\x55\x6c\x73\x8f\x29\xee\xfe\x05\x96\xd0\xa3\x12\x3c\xd3\x0a\x7f\x57\xc6\x8f\x2e\x69\xd5\x8a\x4d\x6a\xa2\x92\x49\x2f\x16\xc3\x98\x5b\x71\x81\xa9\x62\x8f\xd4\xd5\xcf\x8a\xff\x80\x58\x45\x45\x2c\x52\x8b\x7b\x92\x0b\x95\x56\x23\x30\x9e\x6f\xeb\xfb\x97\x0e\x53\xbb\xc7\xe8\xdc\x5c\xb2\x5a\xcd\xff\xb2\x63\xa8\xb8\x67\xb1\xa2\xa6\xa4\xc0\xce\xce\xf5\xa6\x67\x9d\x84\xdf\xbe\x88\xd7\x12\xca\x02\x6a\xed\x37\x4c\x7d\xa8\x26\xae\xf2\xd3\xfc\x9d\x80\x01\xda\xd8\xc9\x4e\x9f\x91\xc0\x1d\x57\x2b\x1e\xa0\x79\xa0\x4c\x19\xf7\xcf\xd7\x43\xa8\xb8\xff\x93\x4d\x9c\x32\x9f\x21\xf1\xbf\xf4\xdf\x4a\x1e\x8a\x6b\x61\xcc\xeb\xa3\xa6\x7d\xc9\x6d\xc8\x59\x35\xf1\xb4\x72\xe3\x55\xe2\x99\xd9\x88\x95\x55\xa2\xd8\x7b\x1b\x14\x1d\x97\xf0\xe7\xcb\x05\x33\x2e\x4a\x07\x49\x12\xab\xf5\x66\xee\x4e\xe6\x0a\xd7\xb0\x4d\xab\xfc\xef\x7f\xf5\x80\x1e\x1f\x5e\x89\x8a\xf1\xd4\xa8\x26\x29\x55\x9a\xd1\x0c\xb9\x3c\x3a\xa6\xfb\xb7\xcd\x50\x91\x2c\x42\x84\xd5\x08\x27\xfd\x84\x4b\xcb\x84\x5f\xc8\x47\x6f\xb9\x15\xaa\xca\x66\xd7\xab\xda\xa1\x43\x4a\x8e\x24\x7a\x38\x5a\x8d\x5c\x41\xac\x8c\x63\xca\x63\x6a\xee\x95\xe4\xa7\x75\x30\x2e\x88\x5e\x34\xf5\xa1\xa7\x35\xc8\xd6\xb6\x85\x12\xfa\x9b\x4a\xe0\x69\x19\x3b\x05\xd0\x8a\xa4\x26\x6c\x05\x56\xfc\x12\xda\x17\x26\x5a\x5b\xa0\x67\x81\x32\x8c\x0a\xc2\x81\xf0\x73\xc7\x47\x2a\x0a\x19\x07\x2b\xca\x80\xf4\x2d\x1a\x04\xc4\xfd\x85\x1d\x87\xf8\x95\x78\xf0\x27\x3c\x90\xc2\xf3\xbb\x0a\x63\xe0\xf4\xef\x3b\x64\xf5\x53\xc1\xcc\xc6\x9e\xa7\x56\x54\x37\x1f\x96\x15\x15\x72\x5d\x5c\xc1\x0e\xe1\x6a\xb0\xcc\xc7\x0c\xd5\xd2\xbf\x24\x7c\xd9\xbf\xb4\x4b\x0e\x4a\x89\x62\x57\x97\xba\x5d\xcf\xf6\xf6\xd5\x04\xc1\x8c\x7d\x04\x3e\x5a\x3b\xf7\x74\x05\x68\x6a\xde\xaa\xe4\x21\x55\xc4\xd8\xe6\x5a\x76\x68\x26\xd3\xd9\x4d\xe3\xf5\x77\xd6\x59\xe7\x01\xff\xf1\x13\x0d\xea\x96\x29\xf3\x71\x5f\x36\x17\x9c\x3e\x16\xeb\x1f\xb3\xd9\x6c\x2e\x68\x6e\x97\x07\xb3\xc7\x50\xb1\x48\xcc\x32\x8c\x8d\x82\xb9\x1b\xe4\xe9\x9b\x0f\x0f\x16\x94\xcd\x33\x5e\xb6\xa7\x4f\xef\xab\x1f\x72\x00\xc5\xe9\xc1\x99\x1a\xb7\xc5\xee\xae\x54\x89\x29\xb6\x57\xf0\x17\x43\xa1\x69\x59\xd9\x5c\xf0\xef\xfd\x65\x87\x58\xa2\xbc\x6b\x34\x2e\x68\x5f\xb0\x4c\xf3\x3d\x54\xc3\x15\x1f\xba\x22\x3f\xb7\xeb\x11\xd5\xe0\x24\xbd\xf2\x2a\xdd\x9f\xa3\x00\xe9\x70\x62\x55\xef\xb3\x00\x32\x6a\xa7\x7c\xe8\x0d\x3b\xe8\xab\x5a\xe8\x34\xf7\xbe\x77\x23\xab\xa9\x6d\xb0\xeb\x6e\x67\x18\x97\x95\x61\xd8\x9f\x66\x8e\xab\xab\x24\x69\x3c\xd6\xe4\xd7\xf4\xa6\xc7\x87\x2a\xad\x7f\x95\xf0\xe1\x7b\xfa\xdb\xbb\xea\x78\x6e\x26\x47\x5d\x68\x9c\x78\xf6\xdf\xbb\x85\x53\x98\xc8\x3f\x4a\x0d\x3d\x51\xa7\xf8\xf6\x19\x32\xbb\xc5\xae\x7b\x66\xbd\xb6\x6c\x38\x4a\x22\x87\x91\x2f\x1c\xd7\x94\x7f\xdc\x92\x3c\x9e\x4e\xa5\xbf\xb9\x4c\xc9\x8e\x9a\x33\x67\x4e\xb8\x04\x66\xee\xb9\xb6\xcf\xf2\x33\x4e\x21\x31\xbe\xbd\x7d\x50\xb4\x80\xc3\xcb\x31\xfc\x9c\xe7\x1f\x01\x68\xf5\x1e\xc4\xba\x13\xc6\x17\xe9\x2f\xd4\x34\x8f\x06\xc4\xe3\xe2\x00\x4f\xfb\xbb\x03\xaa\xef\x25\xe0\x7b\x53\x77\x40\x34\xb7\xa8\x21\xa2\x30\x30\x31\xbe\xbf\x56\xab\x8f\xc3\xcd\xef\xa9\xd0\x78\xe6\x93\x13\x1b\x13\xd5\xb8\x5f\xa9\x0a\xc7\x98\xcc\xc6\xa3\x09\xa4\xb4\x08\xae\x56\xe9\xc7\x34\x75\x74\x9e\xab\x3d\x00\x5c\xbd\xf7\xa0\x64\x4d\x74\x50\xcb\xe9\x63\x66\x99\x1e\x3b\x1f\xd6\xd7\x4a\x9f\x95\x71\xcc\x9e\xbb\xe5\xe0\x08\xd5\xc4\xc3\x42\xae\xe8\xeb\x52\x73\x26\xcb\x23\xa5\x86\x5d\x17\x5e\xf7\xb8\x17\xb5\x59\x2f\x15\xa4\xa4\xde\xf4\x8c\xd7\xe4\xe1\x55\x44\xc4\xc9\x63\x56\x52\x56\xe5\xc5\x8e\xeb\xb4\xca\xd0\xf3\x78\x0e\x48\x01\x32\x3f\xc2\x1f\xf1\xc0\x6b\xe3\x95\x56\x04\xb8\xf9\x3a\x03\x65\x5e\xa3\x3e\x29\x2d\xc1\xbb\xcf\x05\xcf\x3d\x9f\x7c\x93\x20\xa5\x17\x69\xc5\x47\x8b\xfa\x60\xc0\x29\x21\x46\x94\xac\x9d\xf6\xdb\x82\xcf\x6e\x53\x02\x01\xb8\x27\x07\x54\x76\xc6\x9a\x49\x72\x68\x5e\xf2\x49\x01\x43\xc4\xb7\xbe\x1c\xee\xc8\xbf\x4b\xbb\xd7\xf8\xdf\x2c\x45\x96\x16\xd1\x41\x78\xeb\xd9\x06\xa5\xcd\xf5\x30\xdc\x9a\xb9\x60\xde\x34\x8d\xa2\x66\x7a\x34\xb2\x19\x4a\x7f\x7d\xbc\x96\x64\x60\xe2\x08\x0d\x49\x6f\xc9\x68\xac\xe5\x2a\xe3\x81\x6f\x11\xc1\x31\xb3\xe6\x85\xb8\x3e\x9e\x8c\x2b\x75\xc3\x9c\xdf\x3d\x2c\x39\x4b\x1e\xa9\x60\xce\x71\xf5\x2b\x82\x27\xf1\xb6\x83\x1a\xde\x81\xf3\xc2\x8e\x36\xe8\x38\x38\x5e\xb1\xdd\x22\x36\x2a\x60\xbb\x6a\x91\xc4\x16\xcb\xb0\xe7\xc6\x69\xff\xde\x71\x89\x47\x79\x67\x25\x70\xa9\x31\x17\xb5\x41\x57\x24\x82\x10\x04\xbd\xcc\x4d\xc7\x93\x1c\xa5\xa8\x35\xee\xc3\xb0\xa9\x79\x88\xd6\x30\xc0\x56\xa9\xe5\x15\xa4\xc1\xb8\x65\xa3\x24\xb7\xf9\xdc\x28\xa9\xee\x6d\xae\x78\x42\x8f\xfc\xaf\x56\x71\xdc\x1a\xdd\xfb\xc6\x40\x51\x74\x42\x56\x97\x61\x9d\xbc\x5a\xbc\x50\x93\xb3\x48\x7b\x53\xdf\x3e\x0f\xe7\x10\xad\x61\x06\x3c\xb6\x99\x5e\x72\xff\x54\xb9\x1f\x1c\xc7\x2a\xfb\xef\xd3\x9c\x39\x9b\xc5\xed\xb5\xf5\xe8\x08\x65\x51\x26\x86\xe3\x63\xd5\x65\xb4\xce\x27\x42\xcb\x95\xb9\x6f\xbd\x2c\xf5\x8a\xd4\xb6\x69\x67\x8c\x8d\xbf\x70\x5a\x8b\x95\xb4\xa8\x1d\x87\x5d\x4f\x7d\x01\x6e\xfe\xbb\x6e\x59\x79\xdb\xf2\x3b\x6e\x59\x1a\x7e\xae\x31\x96\xc2\x59\xae\x51\xbe\x23\xf9\x4f\xea\x3d\x9b\x3c\x87\xd7\x11\xd6\x1d\xa3\x31\xfc\x6f\xbc\x75\x0f\x7c\x7f\x8b\x86\xb7\x21\x1f\xa0\xed\x7c\x42\x19\x7d\x89\x41\x31\x1f\x12\x9f\x94\x11\x6e\x54\x98\xd4\x06\x3d\x81\xc2\xee\xab\x72\x5c\x0b\x5a\xfc\x49\x37\x5f\xa7\x5f\x01\x25\xcb\xa3\xf1\xa4\x63\x45\x7b\x70\xf7\xc6\xb9\xae\x85\xaa\x38\x86\xcd\xe7\x16\x7d\x87\x9b\xec\x8c\xe7\x7f\x3e\x1e\x79\xe3\x9b\xbb\xda\xf2\x05\xdc\x5c\x98\x39\x6f\xaa\x5c\xae\x51\xa7\x7f\xc3\x33\x23\xb4\x8a\x07\xc1\x71\x6b\xdc\x30\x40\x7b\x84\x88\x39\x11\xe5\xe5\xb9\xf1\x71\x2d\xe1\x85\x65\x49\x30\xeb\xa8\xdc\x59\xae\xa0\xf6\xc9\x9e\xe7\x85\x85\x0a\x4e\x82\x80\xbb\x98\x69\xd8\xa7\x73\xb3\x98\x2b\xcb\xdf\xd7\xc6\xf1\x1b\x37\xfb\x7e\x9b\x37\xc8\x75\x2a\xd0\x45\x82\x23\x44\x23\xbb\xcc\xf4\x23\xa3\x35\xea\x33\x77\xea\x8b\x2c\x01\x9e\x7d\x45\x49\x04\x40\x35\x3e\x57\x7d\xfa\x41\xe8\xb5\x14\x7e\x73\x36\x17\x0c\xea\x80\x2e\x64\x39\x2d\x58\xa8\xa2\x9c\xed\xfd\x17\xab\xf9\x62\x09\xdb\x88\xf9\x8a\xff\x08\x6f\x92\x82\x6f\x5c\x80\x7d\x93\xb7\x51\x0f\xbf\xd9\xee\x7b\xf5\x7a\xed\x02\xee\xe6\x74\x92\x69\x89\x76\xeb\xab\xab\x92\xfb\x5f\x44\x65\xf5\x65\xd5\x75\xd3\xc1\x3e\x59\x7c\x71\xd5\x91\x3a\xf2\xf2\x08\xa5\xf1\x27\x66\x39\xb6\x55\xef\x5c\x14\x19\x17\xda\xb8\x84\xb9\xa8\x3b\x58\xfc\x88\x9a\xe1\x0e\x16\xc8\xe1\x32\x98\x07\xb5\x4d\xb6\x9d\x30\x4a\xb9\x4c\x30\xf9\x26\x9e\x7a\x5c\xd7\x9a\xd4\xf8\xe8\x0c\x79\x11\x28\xf0\xb6\x3d\x8a\x98\xd4\xb7\x6d\xc4\x78\xb7\x77\xf7\x52\x0d\xb1\xa1\xf9\x3c\x66\x04\x6c\x49\x82\xb5\x81\x56\x71\xc5\x99\x71\x7c\x6b\xac\x3d\xab\x21\xf5\x1c\x47\x81\xe4\xa0\xa8\xfa\x98\xf6\x40\xa3\x4c\xc1\xb0\x93\x8c\x9f\xed\x2a\x37\xbf\x54\x12\xe1\xd5\x63\x97\x29\x1e\x1e\x36\x77\x38\xcb\xe6\x82\xc9\xcb\xaf\xef\xe3\x1a\xd3\x9f\xc3\x77\x06\xc2\xb2\xb1\x48\xc9\xc2\x2c\x5b\x65\xe2\x52\x4d\xff\x64\x98\x70\x2a\x60\x90\x2a\x1b\xfe\xa2\x27\x2f\xca\x87\xdd\x83\x5c\xcb\x23\xdc\x26\x2e\xfd\xdb\xd5\x75\x79\x33\xd5\x08\x74\xba\x6d\x89\x4e\x25\x2c\x12\x85\xf1\x96\x79\xff\x6e\x25\xb1\x88\xa0\xf0\x00\x05\xec\xfa\x7d\x4e\x1d\x34\x56\xa5\x4e\x41\x0c\x21\x8d\x3b\x76\x25\x1f\x65\x91\x61\x6c\x25\x26\xbd\xc1\x6b\xab\xaf\x51\xa0\x63\xd7\x25\xb6\x62\x11\x70\xfd\x2b\x9a\xea\x02\x29\x0d\x53\x70\x74\x92\x76\x9b\x7b\xa8\x04\xd4\x3f\xfd\x01\x8e\x98\x06\xb3\x98\xd6\x2c\x8f\x74\x34\x76\x68\xa6\x0d\x88\x08\x62\xf8\x9f\xdf\xec\x8b\x97\x16\x29\x97\x7e\x31\x41\x83\xa0\x0a\x11\x24\x91\x1e\xb9\x69\x60\xfc\x84\xde\x97\xcd\x05\x9f\xd9\x27\x0c\x7a\x19\x2e\x10\x70\x40\x36\x6e\x7f\xfa\x5a\xad\xc4\xa0\x8e\x87\x1c\x1c\x0f\x82\x53\x53\x8e\x49\xce\x66\x15\x85\x77\x2e\x14\xa2\xd1\xb2\xbb\x6b\xb5\x3e\xe6\x64\xac\x5b\xb2\x67\xbb\x76\x0c\x11\xb7\x71\x4c\xc3\xe9\x35\xc6\x0c\xd1\x3c\xd8\x70\x17\x31\xe3\xa1\x53\xf0\x91\x2e\x55\xee\xca\x91\xd4\x70\x61\x9e\x32\x62\x30\x74\x1d\x51\xb3\xa8\x2e\x15\x93\x43\xf5\x0f\x45\xe6\xe2\x9f\xbe\x59\xb6\x6e\xc4\x4d\x94\x2f\xc6\x76\x98\x99\x87\x6b\xae\xe4\xd7\x45\x04\x66\x3a\x5a\x1b\xe4\x91\xaf\xf0\x91\xd3\x7f\x5b\x7e\xb5\xc2\x1d\xe7\xd3\x98\xb7\x92\xbf\x9e\xfa\x3c\x66\x3a\x58\xb7\x75\x88\x28\x2d\x31\x63\xc4\xb6\x51\x36\x17\xf8\x0a\xc3\x15\xec\x96\xc3\x25\x7b\xff\x7d\x43\xc4\x3a\xae\x91\x82\x90\xa5\xa4\x73\xaf\x2b\xa3\x16\xa7\x68\x43\x58\x01\x77\x09\x59\xaf\xab\xfe\x7c\xa7\x14\xb9\x5f\x6d\x5b\x1a\xe5\x03\x97\xc2\x52\x5b\x98\x83\x96\xbb\xa4\x49\x98\x89\x54\x2e\x71\xfa\x0f\x97\x87\xc6\xbf\x23\xb2\x99\x0f\x4e\x2c\x18\x9a\x34\x41\xe0\xc7\xd0\x6f\x96\xe9\xb9\xd3\xae\x5f\x0d\x0f\x08\x37\xf2\x46\x4c\x91\x13\x4a\x44\xbf\x0f\x2e\x31\xf2\xe1\xed\x18\xab\x1a\xdc\x24\x7a\x13\xe3\x33\xf3\xa5\x8b\x40\x0b\xcf\x93\x1f\x38\x0a\x1e\x0b\x43\x5c\xae\x03\x94\xa6\x35\x13\x87\x6b\xe7\x02\x27\x50\x64\x9c\x81\x63\xd4\x79\xfa\x1d\xcb\xa6\xca\x13\x30\x9b\x0b\xde\xdb\x90\x1c\xe1\x15\x0b\x5c\xc2\x58\xef\xa8\xf0\xcb\xb7\xe2\x9a\x1a\xb1\x7a\xb5\xf2\x4d\x4f\x6a\xa3\x5e\x61\xdd\x05\xee\x81\x95\x9a\x8e\x07\x94\x10\x2b\xc8\x70\x99\x09\x73\x85\x4b\x14\x76\x3d\x2e\xc7\x48\xf9\x27\xb4\x14\x2c\x07\x22\x92\x38\x29\xe4\x7f\xdf\x52\x32\x58\x39\x8a\x76\xd3\x5e\xa5\x78\xf2\xbd\xb0\x53\x03\xcd\xec\xff\x3c\x94\x5c\x84\x37\x56\xc4\xb5\xf8\xc2\x1a\x45\x80\x8f\x31\x67\x2f\x1b\x3f\x7f\xa8\x31\xd1\x5b\x2a\xd7\xc8\x9d\xd2\xab\xa5\xa6\x40\xbc\xc1\x4b\x03\xd4\xdc\x29\x5a\x95\x71\x68\xe7\x15\xfd\x81\x85\xbd\x22\x81\x1c\x98\xcc\xf2\xe7\x65\xef\x68\xd3\x7c\x9e\x7b\xb0\xc8\xfa\xe2\xbd\x9a\xc2\x1c\x3b\x48\x7a\x6c\xa6\xbf\xd1\x21\x81\x61\xe2\xf8\x91\x05\x97\xe5\x69\xe7\x15\x97\xa5\xf3\x64\x21\xe1\x9c\xff\x0f\x4d\x46\xd1\xd2\x26\x50\x0b\x3a\x4a\xbb\x6c\x08\x67\x4d\x84\x27\xcb\x94\x4d\x2a\xdc\x5c\x24\xe1\x0f\x0c\x1f\xd3\xb7\x9e\x11\x0c\x42\xe2\x7a\x90\x6f\x9a\x0e\x26\xeb\x22\x55\x80\x36\xf8\x4b\xb8\x55\x33\x5d\x6c\xcd\xce\x10\xfc\xd9\x09\x0f\x44\x0e\xef\xac\x93\xaf\x88\xf0\x0f\xaf\x5b\xa5\xdb\xe0\xbb\x1e\x30\x00\x53\xdd\x5d\xf2\xd9\x31\xce\x2a\xc5\x4e\x21\x9a\x61\xf6\xa6\xef\xdd\xd9\x47\x5c\x08\x34\x8d\x6f\x2c\xd5\x58\x54\xd1\xb6\x16\x1b\xb4\xe7\xb0\xa6\x89\xc2\xb1\x5d\x7e\x66\xcb\x19\xb9\x05\x11\xfc\xf5\x1d\xcd\xa3\x54\xd9\x71\xa5\x1a\x7e\x04\x8b\x70\x9a\x55\xaa\xeb\x98\x10\x14\x9a\x1c\x23\x49\x9f\x7f\x66\x78\x7c\x0d\x48\x5b\xa9\x60\x9a\xc6\x21\x28\xd0\x42\xac\xe8\x4e\x1f\xba\x79\xbc\xb6\x01\x4c\x9c\x2d\xd0\x0a\x71\x90\xe3\x45\xe0\xf1\xbf\x6e\x90\x8b\x18\xd9\x84\xa7\x08\xa4\x3e\xb8\x47\x9f\xb9\xe1\xd8\x87\x3b\xd5\x56\xd5\x19\x4e\xd4\x22\x79\xa2\x84\x51\x7f\xfa\x49\x49\x42\xb6\x51\x9e\xd6\x55\xdd\xc6\x4f\xd6\x6b\xe6\x27\xac\xe2\x7a\x8c\x3a\x25\x75\x72\x97\x5e\xfa\x8a\x20\x5f\x58\xd4\x8f\x34\x08\xc6\x63\x4a\x72\x8a\x62\xed\x61\x7c\xf4\x85\x78\x47\x9b\xe0\x2f\xfa\x2f\x87\x87\x8b\x53\xd6\x23\x6e\x91\x63\x03\xdc\x48\xb8\x6d\x49\xb2\xde\x2d\xe0\xd8\x86\x0f\x5a\xd5\xab\x46\x6b\xe6\x47\xa4\x10\x91\xf6\x8c\x03\xaf\xcb\x31\x06\xb1\xf3\x9c\x32\xf8\xc6\x13\xa3\xf5\x1a\x12\xfb\x95\x68\xdf\x18\xd8\x86\x82\xee\x16\x97\x24\x43\xec\x3f\xb8\x41\x84\x81\xc5\xfe\xdb\x4b\x35\x1e\x9d\xc5\xb9\x6a\xbc\xe3\x9f\xb0\x4a\xf5\x7f\xe3\xd5\xf7\x4e\x47\x4c\xba\x50\x05\xfa\xbc\xa5\x8f\xe9\xec\xa5\x88\x67\xd1\xb2\x48\x92\x8a\x6d\xce\xee\x5b\x3f\x5a\x83\x40\x3a\x51\xa5\x1a\xc7\x66\xe6\x7a\x8d\xa7\x06\xd5\x4f\xc0\x61\x8b\x6c\x95\xaf\x97\x7a\x56\x1f\x21\x2d\x37\x08\x79\xa8\x47\x9c\xb0\x23\x58\xb5\x5a\x5e\x79\x65\x87\xd4\x80\x7a\xfa\xb1\x21\x72\x04\xe9\xd6\xe7\xe6\xac\x39\x26\x21\xa4\x88\x64\xea\xd6\x45\x65\x65\xe6\x37\x25\x1f\x59\x19\x92\x09\xc3\x9b\xf6\x6b\x4d\xa3\x14\x10\xca\xad\x20\xaa\x2c\x97\xff\x99\x10\x83\xfd\x9e\xaf\x80\xfd\x99\xfb\xcf\x28\xbe\xff\xb4\xdb\x21\x16\xf7\x2f\x4b\xfd\x6c\x0f\xb4\x2f\x0b\x90\x53\x2a\xd3\x72\x5d\xd5\xf9\xef\x3b\x27\x6a\x47\x0e\xaa\xf4\x49\xb5\x98\xf2\x6c\xf2\x74\xee\xa6\xbe\x53\xc2\xac\x09\x5e\x73\x47\x55\x5e\x06\x91\x46\x1e\xc2\xd6\x67\xbf\xa8\x60\xa0\x61\xe1\xe0\x11\x87\xf0\x46\xf3\x8f\x73\x85\x7d\x21\xae\x50\x13\x76\x45\xf2\xb3\x15\xb4\xc2\x9d\x54\x44\x5a\x24\x8c\x3a\x3f\xf5\x86\x90\x89\x60\xa6\x86\x49\xa5\x8a\xaf\x68\x15\x30\x61\x51\x57\x7d\xfa\x51\x3d\xbd\xcf\xc3\xac\xc2\x21\x34\x88\x17\xdb\x2e\x8f\x95\xb2\x25\xf2\x88\x9b\xb7\xcb\xef\x56\xa1\x35\x12\x31\x10\x83\xed\xad\xb2\x12\x76\x51\x05\x31\xe4\x24\x42\x12\xbd\x0b\xf1\xc0\xa3\x85\x23\x39\xb4\x20\x63\x00\x99\x32\xf3\x49\xad\xba\x9c\xbc\x27\x66\xcc\x88\x2a\xd6\x9f\x77\xe8\xc1\x41\xc5\x22\x31\x7d\x5b\x58\x66\xa6\x96\x6b\xb4\xfc\x72\x78\x1a\x55\x79\xf2\x1b\xc7\x37\x7e\xf5\x8a\x12\xbb\x85\x2a\xd4\x51\x01\xca\x51\x8b\x94\x8c\x7a\x5c\xa8\x50\xee\x48\xd7\x35\x45\xb9\xbe\x91\xeb\x46\xc5\x5e\xd7\x43\x22\x15\xa4\xe0\xc7\x24\x9f\x96\x87\xb4\x69\xae\x83\x3d\x12\x8f\x15\x33\x1f\x9f\x94\xfc\x74\x31\xef\x06\x60\x94\xe7\xc7\xc3\x86\x8b\x58\xcd\xfd\xe2\xdd\x9e\xe7\xc4\xe1\x6f\xbf\xaa\x0e\xe1\x91\x89\x59\x3e\xf2\xee\x98\xbf\x41\x9e\x2b\x0e\x4f\xf1\x33\xee\x5c\x1b\x3f\x5d\x54\xe9\x56\xbe\xe6\xbf\xad\x1d\x18\xb7\xa6\xfc\x35\xef\xd8\xae\xe1\xdb\xd8\xe9\x16\xa3\x8a\xfe\xcf\x24\x91\x4e\x9b\xd4\x87\x89\xa4\x47\x6b\x01\x1e\x70\xe0\x09\x8c\x13\xad\x49\xb6\x7c\xb8\x0b\x32\x66\xea\xa3\x3b\x53\xe3\xb7\x27\x9d\x0c\x3a\x91\x59\xc6\x8e\xe5\x7b\xe0\xa5\x91\x40\xc4\xbf\xfa\xa0\xc4\x58\x98\x0f\x0a\xf8\x7d\xe0\x14\x9f\xbd\x63\xc1\x5d\x75\xfb\xf5\x37\xcb\xaf\xd5\xea\x52\xdf\xc5\x61\x71\xea\x36\x89\xc2\x20\xb5\x41\xb3\xc0\x42\x32\x8d\xa0\xd7\x78\xf6\x8c\x12\x27\xcd\xc3\x4b\x04\x7a\x62\x1c\x58\x2f\x18\x68\x0c\x95\x2a\x08\x48\xf4\xa9\x5f\x4c\x53\x8a\xf5\x66\xfe\x94\xb7\x16\x24\xa4\x98\x70\xe9\x5a\x35\x42\x1c\x49\x76\xa1\x53\x45\x2c\x8c\xf5\x3a\xd3\xc0\xe5\xb2\x4b\xbe\xdb\xc7\x34\x2a\x9a\x17\x9b\x38\xc4\xe4\x1c\xee\x67\x98\xc2\xfd\xf4\x40\x5f\x6a\xfc\xa7\x1a\x5e\xcc\x33\x73\x81\x39\xb1\x79\x5b\xf2\x99\xd8\xdd\x36\x86\x56\x3c\x3a\x46\xef\x79\x48\x33\x5b\xf6\xf3\x42\xaa\x9e\x0b\x9e\x9a\x2c\xa6\x44\xff\xd7\xec\x65\x91\xc6\xca\xc6\x45\x1b\x2b\xb2\xd2\xd4\x1b\x4e\x12\x69\xe8\xc4\xb6\x1d\x96\x63\x3c\x55\x4f\x5c\xd4\x1b\xce\xca\x2d\x59\x24\x25\xa1\xa3\x4c\xbf\x34\x57\x5b\x71\xdc\x32\x5c\xfc\x9b\x3b\x9a\x92\x9b\xd0\xa1\x35\x5c\xc9\x03\x1c\x94\xeb\x4d\x5f\xd0\xc8\xe0\x6e\x95\xcb\xf3\x22\xa6\xfb\x2b\xcd\xb0\xad\x97\x60\xc7\x11\xba\x6a\xe3\xc7\x0f\xa9\xa3\x51\xee\xe4\x9a\xda\xbf\x57\x21\x21\x94\xb0\x63\xf2\x3d\xfb\xa3\x26\x89\xe4\x80\xf2\x8f\xb7\xe6\x9f\x5b\x52\x97\x61\x50\x10\x8e\xe8\xc6\x8f\x5a\x45\x26\x23\xab\x70\x9e\x6d\xa6\xf6\x62\xb2\xe2\x43\x79\x64\x5a\x48\x93\xe1\x1c\x5a\x30\x22\xa2\x19\xdc\xba\x50\x01\xb3\x82\x25\x27\x75\xe7\x67\xc2\x1d\x02\xf8\xa5\x7f\xd7\x2e\x38\x61\x8a\x08\x8e\xd3\x3b\x4e\xc6\xc4\xd8\x62\x51\x88\x1d\x96\xbc\xa5\x75\xcf\xe1\x32\x8a\xcb\x20\x77\xa7\xb2\x8a\x0b\xa8\x12\x5d\x6c\xe9\xf7\x2b\x61\x58\x79\x46\xf2\xf0\xc3\xde\x6a\x4d\x1e\x2d\xd3\xb3\x6d\xd1\x61\xf8\x9e\xf3\x63\x14\x2f\xba\x3c\x72\x3d\xa2\x84\xe8\x05\x5f\x7a\x53\x23\x55\x21\x1b\x2e\xba\xcc\x2a\x8d\x22\x1b\xf9\xa1\xc0\xf0\x72\xcb\x92\xf1\x9a\x43\x64\xf4\xd0\xe4\xcf\x9e\x93\x19\xaa\x94\xb6\xdd\x22\x9f\xef\xb6\x3d\xf1\x81\x89\x1d\x57\x75\xe1\x9c\xa2\xbd\xbd\xb0\xc6\x85\x9b\xde\x98\xd4\x23\xaf\xc8\x12\xca\x83\xb5\xcb\x9c\x61\x83\x95\x49\x04\x57\x10\x1a\xc7\x85\x7f\xc1\xad\x36\x75\xe1\x22\xfd\xee\x33\x71\x11\x4c\x0a\x54\xa9\x98\xef\x6f\x93\x1f\x8f\x56\xb1\xc3\x01\xd9\xcf\xee\x90\x2b\xab\x02\xd0\x21\x3f\xf9\x8b\x5b\x12\x29\x7c\x0c\x7a\xb3\x60\xd8\xde\xe4\xe3\xb3\x51\x25\x0f\x39\x5b\x9f\x1d\x08\x9d\xe3\xad\x54\x35\x11\xcc\xbc\xef\x82\x66\xe2\xc1\x61\x5b\xe1\xa1\x1b\x1c\x3b\xa0\x5c\x8d\xa8\x4a\x00\x24\xde\x20\x94\x48\x33\x66\x09\x11\xee\xa1\x7d\xb0\xbe\xf2\x28\xcf\x17\xc5\xaf\x25\x58\xe0\xd1\xee\xba\xb2\xaf\xe7\x84\x86\xd1\x13\x8f\xf4\x60\xa1\x6e\x4b\x9f\x5b\xa4\x25\x3b\x32\x1c\x76\x79\xe0\xf0\x00\x6e\xf3\x67\x95\x92\xa3\x80\x6d\x64\xf9\x4e\xc2\xab\x72\xea\x51\xe5\xe4\xc3\x35\x12\xf9\x1d\xa6\xe7\x5c\x86\xce\x95\x44\x19\x0e\xc1\xe9\x06\xf9\xce\x3a\x50\x1e\x18\x26\x2f\x69\x98\xba\xcf\x58\xb8\xd3\xa7\x45\xa1\x9a\x7f\x18\x2f\xdf\x54\x78\xd1\xc3\x56\x78\x7e\x93\x2c\x59\x63\x7f\xee\x68\x3c\xf4\x59\x2d\x6c\xab\xc3\x67\xdd\xb1\x0f\xec\x9a\xe4\xce\xef\xc0\x76\x8d\x8b\xde\x14\x99\x4d\xea\x97\xc7\x41\xbb\x9a\xe0\x7e\x8b\x12\xec\x91\xe3\xfa\xde\xc5\xb6\x1d\x67\xc7\x9d\xdd\x13\x8b\x54\x91\x53\x6f\x5e\xf2\x91\xed\xf5\x0a\x6a\x69\xd7\xfe\x79\x2d\x9f\xd3\xc4\x4e\xb8\x06\xc5\xa0\x79\x7f\x87\x38\x58\x6c\xc4\x2f\xc5\xf7\xec\x92\x22\x32\xbe\x1e\xd7\x69\xec\x71\xd7\x43\x51\xe2\x42\xe6\x53\x1b\x00\x61\x5b\x40\x4b\xd4\x8b\xb2\x7f\x8d\xbf\x4e\x92\x56\x45\xd9\x99\xe1\x47\xb8\x7a\x9f\x3c\x7b\x6c\x5f\x59\xbb\xd7\x1d\x91\xe7\xb3\x25\xa2\x2c\x07\x28\x76\xb8\x98\x71\x0b\x86\xd4\x88\x03\x49\xec\xc3\xa5\xb0\xba\x6f\x62\x70\x05\xdf\x49\xab\xdd\xb6\x1a\x48\x3d\x75\x55\xc2\x5a\xa2\x3d\xb7\x22\x81\x9a\xf5\xa6\xfe\xbe\x5e\x4d\x9b\xc4\x22\xcf\x42\x7c\x83\x33\x32\x5f\xf3\x46\xc8\xd2\xec\xf7\xe0\x00\x71\x52\x84\x4b\x8e\xbc\x29\x3a\x3f\xc1\x4a\x4e\xbd\xa3\x41\x23\x45\x96\x18\xc6\x92\xcd\x98\x19\x31\x40\x31\xfa\x8c\xa2\xe9\xc3\xbe\xf0\x19\x49\x18\xe9\xb4\x08\x38\x34\x5e\xfd\x24\xdc\xcf\xcb\x51\xd5\xa3\xac\xbe\x6a\xdb\x3e\x10\xb6\x40\x05\x45\x1e\xb1\xc6\x09\x6d\xf9\x98\xc8\x33\x63\xbb\xa0\x74\x4d\x11\xc7\x55\x19\x35\x61\xdf\x6c\x7a\x3c\x09\x02\x74\x0a\xcb\x8b\xb0\x80\x94\x8b\x76\xea\x76\x69\x63\xc4\x4b\x7d\x70\x26\xbf\xa4\xe6\xe6\x3a\x84\x6b\x12\x8f\x34\xc9\x96\xb1\x82\xaa\xd9\x0a\x24\x81\xe8\x05\xdd\xe1\x65\xca\xb4\x17\x99\xc4\x96\x09\x64\x53\x7b\x34\x15\xa8\x43\x3b\xbb\xa3\x0e\xa2\xb3\x55\xc3\x7f\xb8\xca\x3b\xc6\xd6\xff\xf6\x86\x3a\x0a\x62\x82\xa0\x9b\xfa\xfb\x38\x4d\x89\xcb\x7c\x4f\xe4\x51\x72\xe9\xd6\xbe\x2b\xb1\x93\x6c\x91\x33\x49\x7e\x23\xa6\xc0\x2e\xf6\xb2\x1e\xe5\x57\xe7\xd9\x13\xca\x8f\xb6\x10\xd4\x8f\x41\xcf\x22\x3d\x82\xb2\x68\xfb\x4a\x06\x43\x7a\xf9\x92\xfa\x01\x02\x89\x63\x39\x8d\x5e\xc9\xbc\x47\x7d\x64\x21\x9c\x6c\x96\x1a\x68\xf0\x62\xd0\xb9\x25\x73\x14\x91\x22\x2a\xe3\x3c\x75\xf8\xcf\xbd\x79\xc7\x50\x05\x61\x2b\x41\xc8\xde\xf0\x7d\xea\x54\x9e\x03\x4a\xc2\x40\xf6\x27\x5d\x02\xea\x5a\x70\x17\x2f\x62\x1a\x86\xe8\x98\x56\x0f\x8e\xa2\xbd\x7e\x39\x70\x84\x32\x3f\x62\x44\xe2\x76\xdf\xde\xab\xd3\x01\x9a\x61\x6a\x98\x1a\xf3\x66\xb2\x58\xac\x91\xb2\xc5\x68\x4d\x41\x9a\x82\x27\x56\xc1\xc5\xb6\x00\xa8\x51\x11\x8b\x77\xfa\x94\x06\x55\x1d\x0e\xba\xb6\xf0\x47\x16\x4e\x24\xcb\xdf\x92\x8d\x1d\x27\xe1\x48\xf8\x09\x85\x0e\xc4\x2d\x21\xc2\x12\xef\x95\x0d\x7a\x7a\x42\x11\x23\x4f\xa0\xc9\xd3\x3a\x12\x7b\xc4\x45\xd0\x0e\xd4\x9a\x95\xd8\x20\x9b\xa7\x16\x84\x7f\xfc\xc9\x13\x4a\xf6\x3a\x2f\x14\x1f\x3f\x24\x4f\xb2\x9a\x60\x34\x7e\x76\xe9\x30\x0d\xb9\xcf\x65\x73\x41\xaa\x67\x70\xd4\x8c\x10\xea\x43\x4b\x3a\xf3\x49\x9d\x61\x6a\xd7\x70\xdc\xed\x2f\x3c\xaa\xdd\x66\x3d\xd8\xb4\x84\xdf\x0d\xdf\x8e\x03\x9e\x83\x91\xcf\x8a\x2a\x62\xfc\x1c\x4e\x2e\xa5\x4b\x79\x45\x2b\x4f\x7d\x96\x15\x76\x1c\x99\xbb\x9b\xc7\x28\x5f\xc3\x25\x05\x0e\x09\x28\xe3\xd5\xa7\x75\xc8\x35\xbc\x96\xb0\x29\x9a\xf6\xcc\xc7\x9f\x49\x7e\xb0\x19\x6d\x9e\x95\x2d\xda\x92\x65\x35\x7e\x5e\xf2\x5e\xec\xc1\xc4\x41\x79\x4d\x80\x4c\x37\xc3\xeb\x77\xc3\xaa\xdb\xc2\x08\x40\xe4\xf4\x9e\xdd\xf2\x6c\x9c\xd5\xdc\x34\x8b\x9b\xde\x7d\xf1\x6c\x32\xf5\x39\x8f\xed\x12\x43\x05\x68\x4a\x25\x4b\xee\x92\x76\x90\x74\x52\x56\x16\x99\xa4\xbd\xc6\x82\x41\x75\x9a\xee\x1a\xb7\xc1\x06\xd5\xe5\xd3\x4a\x6c\x11\x27\x23\xba\x10\xc1\xfe\xaf\x17\x95\x4a\x8a\x50\x81\x88\xa6\x4e\xcf\xd7\x80\x7b\x9b\xd6\x50\x99\x20\xa9\x34\x7b\xe7\x21\xe5\xf0\x2f\x16\x39\x47\x91\x53\x09\x1a\x96\x4c\xd6\x9a\x21\xdb\xaf\xe4\x7d\xb7\x4f\x9a\x00\x73\xe2\x1a\x80\x76\xeb\xd4\xbe\xe0\xd7\x2f\xd4\x7d\xa7\x22\x66\x4c\xb4\x63\xc1\x4f\xb7\x0a\xe4\x20\xf2\x0c\xbe\x7e\xb7\x2c\x3e\x3d\xea\xc7\xce\x0b\x6f\x97\xf1\xbc\x26\x77\xe5\xe0\xbc\x3b\xaa\x5f\x2f\xbe\xed\x85\x25\x04\x20\x95\xd7\x06\x7a\xae\x10\xc6\x5e\xec\x2f\xf1\xb7\xa2\x66\xe5\x85\x51\x35\x2e\xfa\x33\x8b\x0a\x72\x22\xcd\xe9\xa2\x2a\x42\x9b\x79\xb0\x41\x38\xf1\x08\x61\x7f\xf8\x2f\x1e\x34\xa2\x00\x4f\xdf\x45\x25\xee\x5f\x7a\x52\x63\x75\x96\x28\x2d\x84\xb7\x99\xf8\x04\xa7\x0f\x41\xb1\xcb\xe3\xb5\xb8\xe3\xf4\xb1\x45\x8a\xa7\x92\x87\x0a\xc4\xaf\x44\x7a\x89\x3f\x2d\x4a\x1e\x64\x25\x0c\x91\x75\xc1\xbd\x93\xf5\xe9\x7b\xb8\xd9\xb0\x78\x08\xa9\x67\x1e\x1b\xa3\x97\x49\x1e\xb6\xb1\xeb\x8a\xee\xe6\x4b\x67\x35\x7e\x8e\x2f\xe6\x16\xc6\x7d\x1a\x7f\xc2\xa6\x4e\x09\xe6\x25\xfc\x82\x1a\xfc\xb0\x9e\xca\x29\x92\xe3\xf9\x69\xdd\x6f\x83\x9e\x2a\x03\x6a\xba\xc8\x43\xe2\x1b\x1b\x64\x71\x5c\xa3\xa0\x35\x18\xda\xa6\x8b\x3a\xab\x55\xee\x8e\x0d\xf7\xd2\xcc\x71\xc9\x5a\xab\x33\x52\xfb\xb8\x96\x10\xd2\x22\x21\xaf\x4f\x4d\xd7\xa8\x2b\x7c\x1f\x81\x3b\x29\x74\x02\x7f\x65\x49\xc5\x7c\x2b\x90\xc7\x36\x6a\xac\xae\x0a\xea\xa0\x11\xfb\x79\xde\xc3\x75\x71\xf2\x16\xaa\x0a\xfe\xde\x7f\x55\xfb\xf6\x1c\x85\x77\x70\x40\x63\xc0\xf1\x38\xb5\xe8\xa6\x4f\xdd\xf2\xcc\x30\x95\xf6\x53\xe5\xde\x9d\xc1\x0f\xd6\x6a\x2a\x2f\xdf\x8e\xad\x59\x87\x5f\x01\x60\x36\xe7\xba\xd8\x23\xb1\x9d\xe8\xad\x8d\xfa\x8a\x76\xb9\x26\x0a\x2e\x92\x96\x07\x92\xa2\x3f\x60\xeb\x01\xa1\x32\xb9\xa3\xdd\x69\xca\xc8\xbc\x46\xcb\x60\xba\xb1\xef\x79\x79\x11\xb9\x16\xb6\xb9\xac\x28\x38\xa3\xb1\x21\x3a\x63\xc3\x92\xd4\xc3\x47\x93\xdf\xa0\x87\x3a\xd8\x85\xa3\x2e\xf5\xb9\x05\x4a\x31\x6d\x11\xa7\x9c\xcd\x05\xd9\xb3\x5a\xb0\x1c\xf6\x30\x43\xd1\x6a\xdc\x7a\x5a\xd1\x89\xd0\x42\xd8\x2c\xde\xb9\x49\xe1\x4b\xf9\xf9\x3c\x8e\x74\x73\xe9\x85\xa3\x94\x0c\x05\x30\x0f\xc8\xf5\xa6\xbf\xb5\x77\x54\xfd\x56\x88\xaa\x9e\xa9\xaf\x43\x7e\xf1\x34\x5e\xf0\x4d\x79\x52\x8d\x7f\x75\x1c\xec\xba\x3c\x99\x24\xdd\xf3\xba\x3c\xfc\xbb\x85\x99\x6f\xea\x74\xab\xa6\x3a\xe9\xb6\x51\x67\xa4\x3a\x49\x1f\xd8\x21\x11\xcf\x22\x43\x4e\xd9\xae\x7f\xe6\xc6\x01\x71\x10\x22\x56\xe1\xd7\xf6\x6d\x27\x06\x88\x03\x9d\x2f\xe8\xe5\x8f\x8d\x48\x1e\x8b\x05\xda\x09\x2a\x83\x35\x37\x0b\xd3\x57\x5c\x20\x90\xa8\xf2\x9d\x05\x32\x8a\x36\xec\x52\x82\xef\x2c\x92\xf8\x3a\xe7\x17\xe1\xc8\xce\xbc\x7f\x5b\xa3\xb6\xc5\xdd\xc8\x74\xe0\xcd\xc7\xf5\x20\x2e\xd7\xc5\x2c\x9b\xe7\xfe\xbe\xc1\xac\x65\xd0\x60\xd5\x88\x53\x88\x15\xa9\x46\xbf\x4d\xf2\x17\x41\xce\x4e\x6c\x07\xb8\x5f\x13\x94\x38\xc2\x4a\xe0\xa7\x07\x07\x47\x7f\xd6\x14\x56\x0d\x2b\xda\x83\xbb\x9f\x50\x0c\x09\x4c\xdf\x8e\xcd\xce\x32\x9d\xad\x7a\xd4\x7c\x09\x77\x47\x63\xd8\x8f\xdd\x17\xdd\xd6\xb1\x2d\x14\xb7\x84\x5a\xad\x78\x02\x2a\x78\x5f\xab\x12\x8c\xe1\x57\xab\x76\x37\x14\xcf\x5b\xbb\x34\x7c\x12\x11\xbb\x13\x89\xc0\xed\x9b\xe6\x4b\x82\x78\xa7\x85\x2a\x55\x5a\x5f\xd3\xec\x5e\x39\x44\xb9\xa5\x31\x18\x13\x3e\x7d\x50\x96\x65\x2d\xd3\x5b\xc3\x3f\x3a\x75\x51\x8d\xf9\x60\x98\x2f\x51\xe3\xf7\xdb\xe0\x4b\xcc\x9e\x01\x12\x21\xc8\xdf\x36\x7c\x6d\xc4\xee\xe2\x2e\x38\xb0\x06\x1f\x4d\x22\x1a\x65\x52\x70\x10\xb7\x4a\x8a\x1d\x47\x0f\x6a\xbe\x79\x0c\xf3\x44\x66\x1e\x36\x92\xf9\xf4\x6b\x3a\xec\xc9\x0a\x44\x44\xd8\x1a\x57\x1f\x52\x34\xb6\x76\x78\x18\x83\x77\xf5\x38\x4d\x5d\xe9\xe0\x4e\x51\x19\xc8\x0a\xed\xe9\x27\x46\x2b\x60\x66\xdd\x53\x9a\xb2\x4c\x51\xa2\xda\x24\x12\x6a\x1c\x7f\x40\x71\x11\x61\xdd\x22\x52\xe1\xba\xe3\x6a\xc6\x04\xab\x11\x53\x0c\x4c\xbe\xb8\x1e\x56\x21\xf2\x3c\xce\x32\xe7\xe5\xd0\xc9\xb7\xc6\x29\xfa\x2c\x1e\x15\x4b\xbc\x6e\xb5\x0a\xcb\xdc\xb5\x69\x74\xdd\xf5\x40\xc4\x58\x27\xd7\x9b\x7e\x7c\x93\x76\x98\xd3\xa2\xc7\xcd\x05\x38\x3e\xf7\xdb\x47\x94\x36\xc6\x8f\x0a\xef\xce\xb5\xf2\x0b\x61\x33\x3c\x59\x20\x2e\x7a\xe3\x63\xc9\x42\x53\x24\xec\x4f\x55\xa6\xf5\xbd\xc6\x2f\x9a\x65\x46\x0d\xed\xc4\xf5\x99\x24\x93\xdb\xc4\x44\xc0\x46\x5e\x91\x02\xf6\x60\x7c\xaf\xa0\xf4\xba\xc4\xce\x83\xcc\x73\x56\x1b\x3c\x93\x5b\x6c\xe4\x96\x63\xe8\x63\x81\x95\x5c\x27\x45\xc2\x70\x9e\x56\xf2\x5c\x7b\x04\x35\xf3\x55\x1b\x93\xc7\x35\xa3\x36\x8e\x6e\xeb\x6d\x02\x57\xe8\x44\x35\xc8\x4c\x7c\xdb\xa5\xe4\x7e\xc6\xb6\x2b\x16\x4d\x4e\x98\xe2\xde\x6e\x21\x07\x89\x13\xa9\x5b\x46\xc8\xcd\x68\xe6\xb1\x0b\x3f\xdf\xaa\x85\xd4\x21\xb3\x2c\xc6\x26\xc6\x9e\x4c\xf2\x91\x91\x1a\x72\xca\xb4\xf6\xff\x29\x7b\xfb\x78\x2b\xaa\x7a\x7f\xdc\x3d\x7b\xe7\xd7\x50\x79\x38\x1e\x0f\x88\x08\x88\x04\x8a\xec\xd3\xe1\xf0\x4c\xc6\x55\x40\x44\x02\x36\x21\x22\x12\xd7\xcb\xda\x33\x6b\xef\xbd\xce\x9e\x99\x35\xae\x99\xd9\x9b\x7d\x32\x45\x42\xae\x21\xa9\x11\x99\x79\xc9\xfc\x1a\xd7\x4b\x5e\x23\xe3\x9a\x99\x91\x91\x99\x97\x4b\xc6\xe5\x9a\x99\x19\x91\x19\xd7\xcc\x4c\x8d\xc8\x88\x3c\xd3\xef\x35\x9f\xb5\x66\xd6\x9a\xb5\xe9\xfb\x7a\xfd\xfe\xba\xb7\x83\x67\x9f\xd9\x33\x6b\x3e\x8f\xef\x07\x15\x7b\x19\x6d\x7c\x24\x03\xd5\x22\xb6\xc0\x5d\x45\xbf\x7a\x3e\xeb\x6d\x20\x57\xc4\x7c\x7c\xa0\x6d\x89\xe7\x6a\x8c\x3d\xea\x7b\x58\x98\x85\x6c\xde\x2d\x3d\x31\x42\x75\xf2\xf0\x59\x45\x2c\x15\xac\x2a\xc5\xe1\xfd\xeb\x2e\xfd\x45\x8b\x7b\x5c\x5e\x1f\x5c\xb8\x99\xef\xfa\xaf\x21\x56\x86\xe1\x66\x3c\x28\xa8\xbb\x50\xea\x83\xc2\xfc\xcf\x76\xf2\xe4\x7e\xa5\x45\x02\x45\x01\xb4\x30\x72\x91\xac\x80\x69\x98\x28\x5e\x4f\x7f\x4b\xf0\x51\x48\x9d\x81\xa5\x09\x3c\x6e\x43\x93\x5c\x23\x89\x77\xe4\xcc\x13\xbc\xa9\x6e\x60\x9e\xf5\x56\x3f\x3f\x44\x79\x4d\x69\x1c\xda\x67\xce\x92\x35\xa8\x38\x8c\xc9\xc5\x7e\x74\x83\x48\x52\x84\xb7\x42\xb9\x69\xf7\x0c\x4e\xce\xa5\x50\xe1\x2a\x74\x3d\xa2\x71\x2f\xe2\xf0\x99\xb0\x47\xa6\xad\x53\x32\x36\x46\x96\x4d\xcd\x3a\xa4\xbb\xe8\x98\x26\xd4\x80\x19\x4e\xf6\x27\x1f\x3b\xaa\x17\x65\xc0\x43\xe0\xe5\xeb\xd7\x46\x2a\xb0\x6b\x2a\x20\x04\xb3\x15\x92\xf4\xf4\xe9\xdd\xd3\xa6\xc6\x3f\xfc\xdf\xca\xfb\x45\xb0\x28\x96\xa2\x33\x36\x89\x41\x59\x13\x03\x70\x3e\xff\x99\xa1\x43\xd3\x19\x69\x9f\xc0\xbe\xaf\x7e\x56\x27\xa9\xd3\x46\x6a\x04\x7d\xdb\x08\xbd\x93\x0b\x93\xea\x37\x5a\xb0\x5e\x57\x59\x73\x3c\x1b\x91\x44\x9c\x6b\xdd\xae\x44\x6b\xdb\x0d\x03\x61\x52\x59\x5e\x26\x5f\xe6\x0a\x23\x18\x16\xc5\x6b\x9f\x18\xa6\x0a\x53\x05\x7c\x30\x72\xcb\x43\x43\x92\xff\x2c\x05\x28\xae\xde\xad\x0e\x99\x5c\xbe\xef\x1d\x30\xce\x1d\x94\xcd\xef\x7d\x38\x48\x1e\xc5\x75\x0f\xe8\x1a\xda\xc0\x52\x24\xd8\x3f\x95\x51\xa0\x31\xb0\x45\x99\x79\x90\x00\xa7\x6a\x4c\x67\x6a\x6a\xfb\x01\x43\xc4\x4d\x96\x8a\x79\xdf\xca\x46\xda\x20\xc4\xbe\x85\xd2\xd1\xd9\xc6\xfd\xa3\x33\x02\x8c\x33\x7b\xdb\x32\xc5\x86\xb7\xe4\x4a\x3f\xa3\x00\x7c\xdf\xeb\xaa\xa6\x75\x9c\xd3\xd2\x6b\x9a\x77\xc6\x70\xad\xd4\xed\x0b\x7d\x21\x12\xf4\x9c\xe6\x88\x90\x60\xf3\x79\x70\x6f\x6e\x4a\x56\xaf\x34\x48\xaa\x24\x63\xc1\x9d\x5d\x99\x95\xb5\x6a\x8d\xf5\x9c\x42\x77\x0e\x13\x8b\xbe\x1f\x2d\x53\x14\xb2\xc2\x32\x07\x8a\xac\x57\xfc\x1b\x6d\xd4\xac\x84\x36\x84\x99\xef\x73\x2b\xfe\xe2\x22\xe4\x38\x38\x50\xe2\x4c\xe1\x9a\x97\xb5\xad\x5d\x15\xb7\x70\x23\x4b\x95\xfc\x77\x2b\xdb\xe8\xd8\x61\xb9\x4c\xcd\xba\x94\x37\x9c\x3e\x5e\xef\x90\x19\xc3\x89\x1f\x68\xae\xbe\x56\xdb\x5c\x86\x95\x0a\x66\xe9\x19\x3f\x5a\x50\x0a\x47\xc7\xb3\xf9\xe4\xb8\x58\x8a\xfe\x79\xd0\x30\xa9\x92\x90\xda\xbc\xfd\x72\x4e\xfb\xb1\x0f\x03\xcc\x92\xc0\x5e\xd2\x5c\x46\x3c\x1b\x09\x54\x40\xee\x3f\xb6\x68\x68\x7c\x16\x17\xa9\xa9\x9a\xd4\x2d\xb3\xe4\x48\xb2\xda\x46\x1f\xcc\x4d\x9c\xa6\x14\x73\x4d\xe2\x5a\x82\xd5\x9e\x3f\xb1\x85\x87\xbb\xaa\x1d\x82\x21\xe8\x87\x6e\xd7\xe4\x08\xcd\x1b\x43\xc2\x1b\xd3\x64\x1f\x99\x9f\xac\x2b\x39\x78\x18\x5b\xc9\x89\x35\x6e\x5d\x22\x6b\xa2\x26\xc6\x75\x0b\xb5\xa0\x0c\xbf\x4e\xd1\xe3\x04\xc8\x54\xfc\x51\xa7\xf7\xf3\x28\x73\x15\x61\xdc\x52\xe6\x0b\x0a\xf2\x03\x99\x26\x08\xf6\x15\x4b\xd1\xab\x7b\x95\x15\x28\xb7\x5a\x87\xa8\xc8\x06\xcb\xf7\x1f\xf5\x07\x18\x34\x56\xf3\xdf\xf4\xf4\x71\x21\xa8\x3e\xf1\x56\xf3\xcb\x0b\xb2\x07\xc2\x45\x0e\x29\x27\x43\x1f\x18\x99\x3c\xa3\x14\x53\x99\x7b\xb5\xad\x6d\xbb\x4e\x99\xc3\xd9\xf3\xf0\x6d\x86\xbe\xa8\x39\x69\xd6\x88\x9d\x0a\xdb\x1b\x5b\x1f\xca\xfe\x7a\x05\x07\x41\x68\x9a\xc4\x4d\xae\xcc\x1f\x27\x91\xc8\x88\xb0\x8c\xfe\xf9\x36\x37\xa5\x2d\xd5\xb0\x93\x9c\xa7\x4f\x1e\xe9\x54\xd0\x33\x55\x92\x2a\x83\xed\x7d\x58\x66\x2d\x8b\x80\x21\xa2\xb1\xf7\x5e\xdd\x3e\xc9\xe3\x5a\xef\x10\x87\x46\x29\x33\x32\xe2\x3a\x48\x18\xf3\x3c\x74\x9c\xe7\x84\xde\x69\xc5\x52\x74\xcd\x7b\xda\xe1\xe0\x5b\x72\x57\x05\x50\x44\x4f\x28\x8f\x39\xa0\x60\xfc\xbd\x7b\x8e\x66\xfc\xdd\x14\x80\xc7\xfc\x84\x13\xea\xec\x36\x5d\x0b\x4f\x7f\x57\x42\x86\xb8\x46\x85\xf2\x17\xd6\x6a\x79\x25\x20\x89\x96\x7f\x69\xc0\xb8\x6a\x9e\x4e\xa5\x0b\x61\x3e\x08\x2f\x51\xfe\xfb\x9d\x59\xd9\x66\x52\xad\xc5\xa7\xcb\xef\xd3\xc7\xfd\x7e\x70\x69\xd1\x8d\x2f\x1e\x32\xe8\xed\x3a\x82\xba\x8c\x6d\x3b\x45\x6d\x16\xe8\x72\x9d\x27\x61\x06\x3c\x5a\xe6\xb6\xee\x4c\x74\x84\xdd\x3e\x65\xdd\x6c\xfc\xed\x72\xbe\x50\xbc\x82\x9d\xc2\xa6\xe8\x9f\xba\xa5\x09\x9b\x4d\xd5\x8d\xce\x4d\x23\x25\x9d\xa6\xaf\xed\x25\x7f\x6c\xd0\x29\xd5\x82\x13\xf9\x8f\x5f\x6f\x91\xe9\x20\x71\x11\x10\xb3\xc3\x1d\xc7\xe4\x63\xe0\x2b\x6a\x28\x9d\x3e\x22\x1c\x04\xf0\x7a\xe4\x24\xf1\xbc\x39\x27\x2b\x5b\x87\x08\x83\xf2\xc5\x6d\x97\x96\x35\x5e\x52\xe6\x36\x2c\x2e\x64\x00\x92\x5b\x68\x68\x4d\x6a\x33\xfe\xec\xa4\x96\xf9\xb4\x62\x72\x86\x5d\x0b\x73\xd5\xcc\x81\xfc\x3f\x2f\xc8\x36\x78\xd3\x45\xe5\x9d\xaf\x16\x14\xf8\x07\x4b\x3a\xf7\x68\xc8\xd3\x4a\x21\x45\x9b\x6e\x3a\xfa\x30\x3a\xb5\xde\x26\x71\xfc\x11\x95\xfc\x73\x93\x64\x5f\x06\x02\x70\x6e\x4b\x81\xd6\x1a\x2b\x5f\xd3\x00\x3c\xd4\xad\x16\x41\x00\x3c\x01\x59\xe0\x57\xb3\x5f\x6f\x76\x91\xb0\x44\x3e\x36\xbf\xf7\x09\x79\xb5\x71\xf4\x48\x8c\x94\xff\xf3\x5e\x7d\xce\x60\x0a\x90\x61\xfe\xbb\xa2\xb5\x98\x32\x7b\x5a\x0f\xbc\xdc\x77\xbd\x22\x37\xf0\xbd\x53\xc6\xb5\x15\x04\xff\xf9\xa8\x36\x18\x43\x2c\x19\xb4\x15\xc6\x1c\xc8\x3e\x3e\x8b\x20\x07\xb9\x16\xf5\x68\x68\x53\x3f\xcb\xde\x9a\xf6\x1e\x4f\xbc\xf3\xe3\x3e\x3e\x43\xde\xca\x77\xe9\x59\x91\x79\xa9\x68\xd5\x80\xb1\xeb\x0d\x6d\xf1\x0c\xb3\x3e\x30\x65\x38\xba\x4d\x7f\x97\x6c\xdc\x40\xa9\x43\x5b\xa1\x53\xa1\x06\xd4\xfb\x30\x68\x67\x18\x23\x3b\x95\x7e\xc2\xa6\x8c\x54\xb8\x65\x7d\xa1\xff\xf2\xce\x8c\xb2\x20\x76\x84\xa8\x68\xd5\xd0\x36\xfe\x18\x7b\x89\x43\xc5\x2f\xc6\x69\xb2\x96\xc8\x0e\xb1\xd0\xae\xb9\x6d\xa7\xa6\x0e\x85\x03\x26\x48\x19\xa5\x81\xdc\x98\x07\x34\x36\x28\x36\x29\x20\x0d\x95\x9a\x64\xc8\x58\x25\xa2\x85\xfd\xfd\x62\xde\x3a\x77\xb3\x06\x0c\x5f\xef\x61\x33\xf1\x27\xb9\x42\x23\xb8\xfa\xb8\x41\xec\x04\x17\x16\x37\x4e\x7f\x38\x4b\x87\x60\xfa\x1e\x66\x7e\xd2\x00\x18\x9b\x16\xc8\xb1\x8b\x4f\x4d\x82\x83\x36\xe0\x47\x7e\xd1\x1e\x85\x2c\x51\xa3\x01\xad\x32\xe4\xd5\xe2\xbb\x68\x3e\x2b\xa3\x22\xad\x80\xc5\x33\xdc\xdd\x0d\x0d\x7d\x30\x2e\xe4\x70\x78\x91\x7e\xd9\x4b\x9a\x1c\x22\x75\x93\xf9\xc0\x87\xdf\x4c\x23\x18\xa9\x28\x18\x61\xe3\x73\xa3\xc5\x2c\x0e\xf9\xbc\xad\x71\xd7\xc9\xbf\x0d\x3e\x75\xbc\x3e\x6c\x1c\xcb\x1e\x53\x0f\x33\x78\x5b\x5c\x13\x17\xb1\x5b\x43\xae\xc9\x65\x44\x80\x5d\x71\x60\xa4\x92\x43\xe2\x1a\x3d\x73\x56\xcf\xbc\x7f\x98\x28\xfa\x81\x64\x28\x22\x5e\xeb\x90\x92\xe4\x3d\x3b\xf1\x8e\x1e\xc8\x3f\x3d\xf9\xfc\x53\x57\xbf\x9c\x4d\x73\xd7\xae\x89\xda\xa3\xe2\xd3\x96\x53\x09\x17\x77\x8d\x6a\xdb\xec\x38\x08\xb6\x2f\x7c\x9e\xb0\x71\x71\x76\xde\x6c\x13\x1b\x2c\xa4\xda\xa7\x1b\x3f\x7c\x2c\xfb\x57\x13\x86\xcf\xa9\xfa\x90\x37\x35\x64\x69\x19\xf9\x82\x37\x57\xb8\xe6\x01\x55\x75\x20\x4e\x0e\xfc\x6e\x7f\x7f\x42\xf6\x70\xd6\x88\x65\x25\xa6\xd6\xc6\x3f\xae\xbf\x58\x7b\x14\xd4\xb3\xf1\xc4\x53\x36\x41\xb9\x09\xc7\x25\x00\x36\x50\x53\xd7\x6d\x1d\x1c\x19\x71\x0d\x54\xc9\xeb\xdb\x60\x49\x1f\xb8\x53\x08\xac\xd5\xb0\x43\x4c\xe1\x2f\xb8\x5e\xd8\x4c\x2d\x46\x0d\xd5\xdb\x24\x5a\x75\xba\x8c\xed\x75\x6a\x63\xdf\x25\x75\xda\x28\x96\xa2\xdf\x2a\xa8\xcb\xb2\x4d\xfa\xfb\x13\x33\xb9\x45\xfd\xea\xb8\x9b\x59\xa8\x1e\x7f\xfe\x4f\x1f\x49\x50\xb9\x1c\x32\x38\x49\xe1\x8c\xa3\xb2\x4f\x6d\xbe\x68\x38\xb0\x43\xe0\x0a\x02\xcc\x30\x1c\x70\xc3\xbf\x69\x98\x52\x78\x71\x59\x9d\x68\xca\xdd\xf2\x8f\x98\xa0\x2f\x52\x2c\x45\x3f\xeb\xeb\x52\xff\x4b\x86\x7d\xe1\xdb\x1b\x5d\x5c\xc8\xbe\xf5\x01\xb6\xb1\x57\xa3\x6e\x5a\x31\xe6\x56\x3e\xa5\xf9\xf7\xd1\x06\x56\xb7\xe5\xd1\xd6\x7d\xca\x10\x9e\x85\x6e\xbd\x12\x8a\x3b\xf7\x60\x36\x52\x61\x37\x80\x3f\xee\xe2\x90\xf9\xdc\x38\xc8\xd8\x3d\x58\x66\x67\xd0\x37\x84\x75\x45\xb3\x4f\x53\x22\x72\x5b\x4d\x98\x35\x40\x7c\xdc\x7e\x5f\xb6\x92\x73\x69\x53\x34\x4a\x0b\x8e\xf1\x64\x51\xc5\x41\x91\x11\xb3\x56\xbc\x31\x24\x66\xbd\x58\x8a\x1e\x2f\x68\xfd\x55\x0d\x51\xe1\xd5\x57\x1a\xc8\x7d\x6d\x81\xa6\x35\x48\x5c\x97\x57\xd4\xf0\x9a\x7e\xfe\xb2\x91\x0a\xa7\xc0\x37\x69\x53\xe1\x09\x46\xbb\x76\xa4\x8b\x55\x62\xb7\x69\x4d\xe4\x4d\x83\x3f\xb7\xf9\x35\x6c\xfb\x18\xc5\x6f\xc0\x94\x4d\x83\xd5\xaa\x20\xfe\x13\xbf\xb1\x75\xc3\x22\x28\x54\x44\xc5\xf8\x36\x4b\x07\x73\x7d\x24\xee\x90\xf2\x85\x7d\xaa\x5b\xa1\xcd\x85\xad\x36\xee\x57\xe5\xf0\x9d\x38\xa5\x72\x2d\xb1\x19\x3a\x33\x97\xd9\xc4\x14\xb7\x8c\x3d\x90\xbd\x99\x13\x59\xb2\x89\x3a\xef\x84\x42\x12\x75\x4d\xca\x3c\xca\x92\x15\xc2\xf9\x77\x2b\xbd\x36\x66\x3e\x49\x0d\x9c\x73\xbf\x7a\x57\xaf\x63\x79\xb8\x16\xf2\xbe\xab\x66\x0d\x57\xaa\x5f\xa2\x42\x11\x73\xd1\x0b\x8a\x3b\x32\x6d\x99\x94\xbb\x23\xcf\xdd\x9b\xfd\xc4\x26\xf2\x6b\xaa\x3e\xe9\x4b\x67\xcb\x38\x1f\xbf\x2a\x63\x84\xef\xf8\xd5\x7d\xa8\x99\xd4\x5b\xdf\x1a\xa7\x26\x27\xee\x5c\xa9\x27\xa7\x6b\x76\xca\x92\xa6\x4c\x30\x2b\x87\xbe\xaf\xda\x2d\x0f\x37\x54\xef\x85\x94\x1a\x9f\x2b\xbf\xa9\xaf\x76\xfb\xb0\x64\xec\x19\x7b\xc7\x76\xa8\x01\xcf\x21\x3e\xac\x51\xfd\x9b\xb4\x59\x6f\x28\x24\x6e\x94\x11\xe6\x3b\xaa\xd7\x6a\xc0\x08\xe5\xb5\xeb\x07\x6f\x18\xa5\xe7\x71\x86\x7d\x3f\x15\x5d\xcb\x7d\x42\xdb\x68\x3b\x71\xed\xc3\x92\xee\x38\xdf\xe8\xd7\xca\x47\xd4\xb4\xb1\xef\x43\x86\xe1\x15\xe2\x5f\xd7\xe9\x64\xb8\xf8\xa5\x87\x59\x9e\xf1\x83\x85\xbc\x9d\xb8\xa2\x5c\xaf\xa1\x7e\x92\x0c\xaf\x73\x8b\x4e\x3f\x47\xdc\x9a\x00\x33\x8f\xe1\x24\x99\xfd\xf5\x4d\xf9\x54\x9b\x28\x21\x8d\x9c\xb3\x48\xeb\x91\xb8\xdd\x85\x38\xf1\xbf\xeb\x92\xbf\x23\xf8\x58\xf1\x9f\xfe\xa7\xc3\x99\x2c\xdb\x10\x56\x56\xc9\x03\xa2\xa3\x14\x15\x77\x50\x0b\x85\xb8\xfb\x96\x82\xc8\x48\x07\xcd\xf1\x3f\xfc\x64\xe7\x08\x6d\x62\xa4\x54\x09\x0f\x74\xe9\x1c\x19\x93\xf8\xa9\x59\xce\x40\x6e\xfc\x33\xd9\xb9\x4f\x80\xc2\x7e\xe2\x66\xd1\xda\x85\x4f\x8d\x12\xd5\x6b\x8d\x78\x5e\xc6\xf6\xeb\xbf\x2f\xe7\x9b\xc3\x99\x62\xd2\x9e\x61\xed\xfb\x71\xe5\xcd\x09\xca\x37\x9e\x21\xff\x21\xa8\x21\xb7\x5e\x6c\xd1\x10\x7a\xa0\x95\x92\x69\xe0\x83\xcd\x51\x6e\x88\x2b\x03\x8b\xc9\x59\xc1\x4d\x4b\x1e\xbe\x06\xf1\x09\x78\x96\x0d\xe4\x16\x6c\xd3\xf4\x81\x48\xb5\x26\x0c\xf7\x84\x55\x31\x80\xdf\xd6\xb5\x79\x61\x80\xb4\x04\x18\x73\x94\x06\x72\x3f\x7e\x7c\xb8\xda\x47\x64\x2a\x9e\x27\xdf\xbd\x40\xbb\x7d\x5c\x81\x2f\x8e\xfc\x3c\xbe\xfc\xc3\x65\x72\x3c\x60\x63\x7e\x70\x6f\xdd\xda\xa5\xe4\x12\xe4\xfa\x1e\x4d\xdc\xaa\x1e\x19\x3f\x4a\xab\x98\xcd\xb8\x02\xc3\xa9\x50\xf7\x81\x6d\x5a\x2a\x03\xed\x27\x55\xa7\xf5\xc5\x97\x05\xd9\x54\x58\x14\x74\x17\x4b\xd1\x9d\xef\x69\xc6\xb9\x42\x9e\x81\x89\x56\x2c\xf7\xbf\xef\xca\xa8\x50\xc1\x2c\x20\x36\xe9\xc7\x2c\xae\x68\xf8\xdb\xff\xb3\x8b\x87\x2a\x40\x3b\x62\xc7\xf9\x76\x57\xb7\xbe\xaf\x03\x15\x47\xbe\x0c\xfc\xca\x60\xe9\x5c\x8f\xda\x84\x34\x8c\xe3\xaf\x4b\xf6\x0f\x0b\x8b\xa5\xc8\x16\x0d\xb0\x45\xcd\xc4\x38\xa4\xf0\x0f\x47\x94\x09\x55\x03\x33\x8e\x64\x19\x28\x7c\xf8\xb0\x46\x0b\xa4\x0e\x10\x91\x52\xbc\xe2\x91\x09\xf2\xa6\x4f\x99\x3d\xbb\xa7\x58\x8a\x46\x68\xe9\x21\x60\x08\x70\x0f\xd0\xf7\x5d\xb8\x5f\xf3\xdf\x45\x1e\x09\xc0\x36\x21\xa9\x0f\xae\xdd\xaf\x8e\xda\x6c\xbb\x68\x82\x40\x50\x21\x6f\xf0\x62\x6b\x3e\x6f\x5f\x75\xc4\xd1\xc4\xd5\xa7\xd2\xbf\xc4\x49\x95\x38\xa3\xc6\xab\xae\xe5\xa9\xb2\x82\x78\x86\xcb\xf6\x2a\xb3\xe8\xd0\xaf\xe1\x36\x03\xae\xdc\x82\x75\xc2\xb4\x76\x36\xc8\x79\xe7\x6b\x1b\xb4\x9b\xe2\x84\xd5\xaa\x22\x01\x98\xff\x75\x23\xcd\x20\x1e\xf8\x67\x1a\x6f\x68\x96\xbb\xbe\x43\x69\x50\x13\x03\xd2\x21\x37\xe8\x52\x27\x20\xdd\x6c\xb7\xd2\x65\xee\x9f\x2e\xd6\xc2\x67\x5c\xdc\x0b\x54\xc8\x98\xed\xd9\xaa\x88\x58\xb4\x4e\x32\xe3\xe2\x81\xfc\xad\x83\xf4\x8c\xc7\x2c\x46\xcb\xa2\x66\xcf\xdd\x37\x43\xd0\xaf\x31\xb2\x83\x5a\xab\x58\x8a\x3e\x36\x49\x57\x4b\x36\x89\x74\x38\xcb\x0d\xbc\x2a\x83\x88\x4d\x1c\x50\xc4\x89\x33\xe5\xfc\x5d\x0a\x5b\x32\xf4\x93\x9a\xb7\xf0\x91\x45\xa2\x5d\xb1\x43\xa7\x9c\x10\x9e\xf2\x77\x3c\x25\x3c\xbf\x1a\x71\x6e\x24\x50\xfd\xc3\x89\x9e\xcb\x14\x6e\x23\x28\xf1\x74\x27\x73\xcc\x8e\xce\x36\x75\x1a\x9f\xb2\x80\x84\x8e\xa8\xec\xbf\xbc\x53\xc6\x2c\x07\xc1\xb6\xeb\x4e\x77\xb0\x28\x5f\x03\x64\x53\xf8\xd3\x9f\x7e\xee\x6c\x65\x03\x11\xff\x64\xce\x4d\xa9\x70\x03\x8a\x73\xbd\x24\xc2\x98\xda\x84\xd4\x8b\xcb\x1d\x24\x09\xc2\x85\xb1\x7b\x64\xe4\x6c\x90\xf8\xd3\x72\xaf\x9c\x95\xad\x82\x1c\x9a\xec\x91\x7f\x36\x8b\x67\x35\xea\x82\xcf\x59\x4a\xe2\xff\xd8\x23\xe9\x6c\x1d\x57\x53\x85\xb9\x79\x4f\x0f\x4e\x62\x57\xfc\x0e\xc1\x72\xe7\x49\x29\x4f\xea\xa6\xf7\xe5\x83\x85\x61\x4a\xd8\x4c\xa9\xff\x9b\x25\xad\xd5\x56\xa9\x7b\x73\x5f\x56\x22\x2d\xa9\x04\xb5\x22\xc0\x16\x61\x95\xdc\x38\x6b\xa4\xf2\x02\x22\xa0\xf4\x7a\x36\xaa\x86\x50\x14\x1e\x7b\x4f\x4a\x34\x41\x6d\x7d\xde\x1c\x9e\x78\xae\x8f\xd3\x48\xf4\xe3\x3b\xf9\x05\x87\x5e\x7c\xc6\xe0\x6d\xf8\x72\xa4\x31\x48\x48\x9d\x4b\x49\xe4\x0f\x9c\x2e\x5a\x15\xca\xa0\x86\x31\x86\x2c\x1b\xa1\xeb\xe7\xc8\x11\xd7\x69\x5b\xd4\x5d\x7b\xdd\x0f\x30\x7f\xe2\x83\x0a\x67\x2b\x1d\x4a\xb1\x14\x7d\xcd\x96\xc5\x6c\x68\x85\x55\xe8\xa2\xae\x91\x2c\x46\x96\x11\xce\xbd\xaa\xa1\xec\x72\x90\xe7\x87\x5c\xb0\xe5\xca\xe5\x3a\x03\x02\xd9\x76\x8a\x22\xfc\xe4\x24\x5d\x89\x8c\x24\x92\xd0\x17\xcf\x93\x9f\x37\xa5\x37\xee\xaf\xe0\x15\x7e\x44\x5b\x67\xa2\x20\x40\x66\x1d\xa2\x62\xf4\xc1\x77\xf8\x7d\xe8\xa3\x26\xc8\x46\x14\x6e\x60\x6d\x2e\xe5\x3e\xa4\x18\x13\x0b\xbd\xb3\x4b\x02\xa5\x08\x0c\x99\x1f\xf2\xe4\xb1\xea\xe1\x34\x17\x38\xa7\x90\xb7\xea\xb9\x4f\xfb\x52\x2e\xe0\xa7\xc4\xc4\xe6\x8b\xda\xfe\xd2\x83\x40\xe9\x62\x5b\xb4\xf6\x57\xed\x83\x0a\xa5\xb8\x0c\xf7\xa3\x38\xf7\x3b\xa8\xd5\x06\x84\x29\x9c\x39\x27\xc9\x2e\x0d\x9c\xd8\x4f\x5d\x72\x46\x7a\x66\xfa\x42\xbb\x58\x8a\x72\x91\xa2\xd2\x68\x27\xe4\xb6\xc1\x2b\xb2\x15\x2c\xf2\x3c\x64\x23\xb3\xc6\xfd\x76\x78\x3e\x92\x54\xa7\x80\x2a\x02\xa1\xb9\xe0\xbe\xe1\x9e\x2a\xcf\xab\xae\x0c\xa7\xbe\xa4\xae\x9f\xa1\x6c\xe0\x23\x82\x9b\x3b\x86\x49\xc1\xfe\x44\x36\xed\x13\x5b\x15\x45\x96\xb8\xc5\x84\x51\xe6\x04\xad\xad\x99\xda\xd3\xc3\x07\x46\xdf\xe8\xea\x54\xfb\x0f\x3b\xe1\xe7\xe4\x9e\x58\xa8\x60\x5d\xa8\x8b\xca\xb0\xdc\x1d\xc8\xdd\xaf\xcd\x25\x80\xff\x92\xa0\x99\x56\x1e\x4c\x33\x47\x1d\x1c\x64\x8c\xf9\x2f\xa9\xbc\x30\xbe\xc0\x30\xe6\x6c\x4a\x83\x85\x15\xa6\xa9\xec\x67\x0b\xe4\x5d\xad\xd1\xc0\xe6\xda\x97\xc6\x25\xf7\x0c\x15\x17\x51\x09\xb0\xd8\xd7\x1b\xdb\x7a\xb4\x99\x20\xf1\x41\xbd\x9b\x73\x6d\xbf\x24\x04\x61\x90\x69\x62\xdf\xe7\x42\x09\xf9\xb7\x47\x64\x0f\xa5\x8b\x82\x90\x21\x5b\xa6\xa9\xdc\xae\x03\xe3\x4e\xd5\x58\x05\xd4\x9d\xac\x0a\xdb\xdd\x3b\x57\xb8\x63\xcc\x02\x59\x9f\x5d\xbb\xb5\x85\xa7\xdf\x72\xf8\x88\x12\xa5\xd8\xc7\xc2\x75\x1b\x54\x76\x5a\x0d\x25\xa2\xe1\xef\xbc\x7b\xbe\xfa\xdc\xa9\x19\x3a\x7c\x14\x21\xfe\xd6\xf2\xcd\x1a\x02\x8d\x58\x82\xf2\x35\xf3\x1d\x6d\x10\x98\x0c\xbd\x84\xc1\xcb\x7d\xbb\x46\x2b\x89\xa4\xda\x42\xba\xb0\x41\xb4\x4d\x23\x19\x04\xd4\x15\x13\x05\xd4\x7b\x91\x96\x3e\x2b\xd8\xf5\x71\x91\xb8\x56\xe8\x07\xb2\x71\x3a\x39\x57\xdf\xe9\x79\x88\x09\x92\x4e\x9e\x9c\xec\x92\xb4\xed\x30\x93\x91\xb6\x6a\x2a\x65\x5c\xe5\x20\x33\xe7\xc6\x8f\xc8\x1b\x36\x65\xf6\x8c\x9e\x64\x33\xbc\xfa\xa1\xe1\x4a\x4f\x5c\xad\xaa\xb6\x2b\x3f\xd1\x5a\x90\x32\x62\x2e\xe6\x43\x42\x99\x53\x9e\x7c\x46\x32\x95\x6a\x61\x35\xc4\x2e\x0d\x12\xa6\x52\x7e\xb8\x10\xd9\x58\x8c\x83\x8c\xc5\xe4\x0b\xc7\xdb\xbc\x55\xc2\xb2\x4d\x4c\x8e\x43\x85\x0c\xd6\xb5\x48\x7a\xb1\x95\xe5\x94\x2d\x7a\x5b\x7b\x82\x89\x89\x49\x74\x7f\xb7\xee\x5c\xe3\x06\x40\xf2\x88\xa6\x9e\xa6\x73\xc4\x58\x9c\x73\x60\x78\x51\xd4\xf6\xbc\xd5\xb8\xfa\x70\x13\x0f\x82\x2b\x85\x3b\xc8\x0a\xda\x44\x2a\xa3\xff\x43\x4b\x34\xff\x4e\x86\x9a\x1c\x2f\x34\xba\x4f\x31\x05\xae\x21\x97\x38\xdc\xa1\xb4\x63\xd1\x08\xb5\x14\xaa\xa9\x11\xc9\x58\x30\x38\xfb\xa2\xf4\xa1\x06\x09\x92\xe1\xa3\xec\x79\xbe\xfd\x92\xc0\x96\xb7\x60\x84\x16\x7f\xb5\xaf\xed\x1e\xa6\x4c\xf3\xb8\x62\xf9\x80\xf1\xcb\x51\x19\xc7\x75\x13\x33\xa0\x89\xe5\x67\xab\xc1\xc9\xc3\x66\xb2\x63\x30\x56\x6e\xe5\x23\xeb\x06\x4d\x4a\xb4\x15\x1a\xb7\xc2\x37\x6b\xd8\x0a\x6d\x2c\xb6\xf8\x85\x2b\x17\xe8\x0c\x6e\x65\x0b\xfc\xc4\xbd\xfc\xe3\xf0\x7a\x0f\x01\x84\xe5\xd9\xb3\xda\x12\x58\x3a\x67\xe7\x25\xe4\xe2\x35\xda\x04\xcd\xa6\x7e\xf2\x81\x51\xdf\xfd\x3a\xf7\x18\xac\x4a\xe0\x19\x19\x97\xac\x95\x0d\x12\x65\x65\x50\xf6\xca\x7f\xf2\x30\x4f\xa1\x13\xaf\x23\xdc\xb1\xfe\xaa\x35\xd9\x13\x57\xc3\x8e\xe7\x07\x18\x59\x72\x27\x7e\xbd\xc6\xc5\x8a\x2f\x10\xc6\x4b\x22\x93\x4f\xb8\x5b\x81\x3e\xe3\xc4\x99\xc9\x38\x71\xec\x3c\x65\xfe\x82\xea\xc8\x57\xc4\x29\x8c\x79\x13\x86\xab\x24\x9b\xeb\x96\x8f\xbf\x14\x06\x59\xf1\x95\xaf\xdb\x23\xdf\xbd\xe4\x0d\x48\x8f\xff\xe4\x34\x73\xd7\x27\xb6\x6d\x1d\x0b\x13\x34\x29\x68\x9b\x54\xb0\x1f\xb4\x6c\xcc\x11\x9d\xf9\x3d\x07\x86\x49\xc7\xa4\x24\x07\xe5\x3f\xf7\x5c\xa7\x52\x99\x52\x1b\x73\xfb\xf7\xc8\x34\xce\x57\x88\x53\x36\x76\x03\xe2\xaa\xaa\x27\x63\xdf\x15\x15\x33\x78\x45\xc5\x95\xfd\x53\x37\xa7\x29\x7c\xea\xac\xb8\x0b\xca\x9d\xb0\xd3\xbd\xed\x74\x40\xac\x65\x4b\x8d\xf1\x37\x64\x70\x2f\x7e\x08\xcf\x29\xf7\x01\x8d\xc7\x0d\xaa\x16\xfc\x2b\xe4\x93\xc9\x26\x17\x9c\x8c\x6f\xd8\x32\x45\x57\x8e\x86\xf1\x2f\xa4\xa1\x26\x47\x15\xa3\x70\x97\x36\x68\xe0\x2a\xbe\x1d\xc6\xa0\x47\x74\x39\x73\xc4\x44\x72\xdb\xf9\x2a\x9c\xcd\xe2\x75\xd4\xb6\xb1\xeb\xd7\xf5\x56\x72\x20\xff\x03\xd9\x32\x83\xef\x62\x74\xcb\x46\x2d\x67\xc3\x64\x59\x34\x60\x1f\xdd\xa6\xaa\x58\xc3\x46\x39\xfa\xec\x02\x4d\x03\x02\xfa\x1e\x01\xc2\x32\xd6\x3f\x24\x13\xb5\x83\x83\x1a\x85\x42\x39\x77\xb3\xb6\x80\xac\xd8\x78\xbd\x22\x42\x7c\x4d\xaf\x4e\xcc\xf0\xa5\x62\xeb\x40\x61\xc4\x63\x9a\xc8\x43\x13\xb5\x44\x97\x5e\xb8\x66\x43\x97\x3a\x69\x0c\x88\x2b\x60\xb3\x03\xc6\x05\x6b\xe4\xd5\x03\x54\x1f\x70\xfa\x73\x39\x1e\x79\x09\x76\x15\x95\x9c\xdc\x27\x35\xe3\x01\xa8\x61\x6b\xc2\xd5\x67\xe0\xa9\xa1\xca\x54\xdb\xc2\x71\x9d\x77\xd7\x51\x39\x1d\xa0\x95\x0a\xc4\xa4\x6d\x9b\x94\x2f\x4f\x59\xc0\xcd\x1f\x72\xc7\x47\xa4\xe7\xbf\x4c\xf4\xb2\x32\xda\x76\x2c\xad\xd4\x04\xbc\x3c\x3e\xde\xbf\xe8\xc8\x86\xd1\x0a\x43\x6e\x3f\xf6\xb1\xe6\x27\x38\x94\xd7\x3a\xc5\x8f\x60\xc7\x23\xae\x5f\x27\x6a\x2e\xfd\xde\xb1\xb6\x2d\x64\x5c\x7a\x04\x09\xfc\x65\xdd\xfe\x36\xc5\x85\x38\x4e\xc1\x49\xfa\xd6\xda\x2e\x95\xc2\xc1\x6f\x2b\x47\xeb\x5d\xb4\x50\xb1\xfc\xa0\x0d\x4e\xe8\xce\xfd\xf9\x55\x3e\xc3\x58\x19\xb2\x3a\xf1\xdb\x5e\x9a\xfc\xea\x2d\x72\x9d\xc9\x50\x7f\xbf\x83\x02\xd4\x0f\x80\x80\xcd\x2b\x15\xa9\x46\x1a\xba\x56\x08\xca\x60\xc6\x2a\x4f\x13\xe7\x0f\x03\xc0\xb4\x27\xc3\xec\x2f\xcc\x91\xc4\x79\xd4\xee\x53\xfd\xea\xe1\xb4\xde\x9c\x3d\xbd\x18\x1f\x95\xd6\xb3\x5d\x4a\x82\xf1\x03\xce\xcc\x84\x47\x34\xe9\x09\x45\x70\x95\x01\xc4\x1a\xfe\xc4\xbc\x31\xa7\x88\xf5\x00\xc0\x46\xb6\x78\x47\xaa\x27\x54\x16\x49\x4a\x59\x9d\x3b\x54\x74\xb7\xa1\xe3\x61\x21\x7d\x73\xde\x6a\x0e\xce\xb9\xfa\xea\xf8\x17\xbf\xf8\x9e\x36\x38\xa9\xd1\xa6\x2f\xe8\x9f\xef\xec\xcd\xbe\xe3\x75\x8c\x3d\x7e\x16\xff\x55\xdb\x14\x31\x62\xd6\xe2\x76\x54\x71\x00\x36\xce\x19\xdb\xa9\xce\x99\x4c\x9a\xe8\x75\xef\xdc\xae\xe0\x8f\x90\xc5\xcb\xd0\xf8\x1f\xfe\x79\xb7\x6c\x8c\x4d\xe4\x05\x88\xb8\xaa\x59\xe0\x55\x97\x65\x2f\x07\xac\xd2\x78\xad\xf9\x5b\xed\x16\x09\x99\xf9\x8c\xdf\xab\xbb\x26\x3d\xe2\x66\x98\x62\x1a\xaf\x38\x3e\x54\x1d\x60\xc6\xfd\x54\xf4\x71\x85\x1b\x5a\xa3\x4d\xce\x22\x8b\x3a\x5f\x94\x5d\x8e\x89\xdd\x20\x64\x82\xc6\x9c\x7b\xe4\x29\x85\x69\xc4\xa8\x57\x04\x4d\x05\x63\xf0\x9a\x36\x06\x19\x65\x81\x90\x62\x1e\x30\xc6\x9c\x54\x6a\x87\x1a\x05\x82\x61\x9c\x3b\x5e\xb8\x5b\xa6\x3f\x56\xc3\xa1\x83\x02\x6a\xd3\x2a\xc7\x28\x18\x3f\x7c\x55\x47\xf4\xc6\x71\x17\x1e\xca\x57\x0f\xe9\xf8\x7a\xd8\xe9\x0b\x60\x6a\xef\x1c\x45\x15\x0c\xbb\x2d\x0e\x21\x1f\x51\xeb\xd2\x53\x74\x62\xf2\x36\xa9\x30\xe9\x14\xb5\x33\x8c\x65\x3c\xda\x0e\xdb\x39\xfd\x0c\x0d\x13\x4b\x13\xb5\x04\x63\xd6\x59\xc3\x94\x4a\x9f\xd5\xc1\x02\x7d\xdc\x3b\xf2\x87\x41\x13\xdb\x10\x2d\xf3\xff\xf4\x9a\x5c\xfb\x10\xb7\x41\x82\xf6\x71\x61\x7e\xf3\x96\x73\x92\x42\xac\x82\xc1\x3d\x10\x98\x82\xf9\x87\x07\xcb\x64\xd6\xa4\xa1\xad\x0c\xe8\x8c\xd3\x97\x6b\xaa\x92\xa2\x21\x34\xc6\x1c\xd5\xca\xb2\x26\xe1\x9b\x6f\xde\xac\x7a\xc7\x87\x28\x1b\x0a\x10\x9b\xc8\xff\x61\xb4\x5a\x79\xda\x01\xf1\xc0\xb3\x1f\xa0\x90\x85\xba\x82\x2d\x0c\x3d\x1f\xc3\xcc\xba\x5b\x4b\x96\xbe\xcd\x15\xa4\x4b\x03\xc6\xa7\x46\xe8\x93\x67\x8f\xa4\x52\x0e\x64\xae\x18\xeb\x91\x2a\x34\x83\x3c\x79\x34\x6f\xd2\x1b\x2b\xa1\x67\x20\xc6\x0c\xd7\x2e\xd1\x61\xba\x2c\xb4\x39\xd5\xc6\xb8\xfb\xbd\xec\xef\x06\x21\x2b\x87\x76\xba\x41\xc8\x0f\x3d\x2d\xfb\x22\x55\x59\x19\x99\xd9\x06\xa5\x70\xfd\xed\x17\x28\xc5\x30\x13\xb2\xc4\x00\x61\x15\x79\xe3\xc1\x93\x7c\xa0\xdb\xac\x51\xa7\x58\x8a\x2e\xf5\xda\x24\x25\x1c\x4f\x0c\x7a\x9a\x0f\x68\xe4\x44\xe2\xf8\xd8\xae\x24\x24\x2f\xc3\x15\x3a\xa3\x48\xa8\xca\xe7\x3e\xfa\x8a\x02\x15\xac\x51\xa8\xc3\x8d\x1b\x67\xa8\xbc\x05\x4e\xc5\xe2\x5c\x16\xfc\x98\x16\x3c\x6b\x88\x21\x33\xc0\x8c\xf4\x27\x00\x3f\xe3\x2f\xc7\x35\x1d\xbf\xa6\x9b\x8c\xb5\xcf\x3c\x2b\x2b\x8a\x55\x47\xb6\xd3\xaa\xb7\x50\x9b\x28\x56\x54\x5b\xd0\x21\x2a\x56\xea\x31\x82\x03\xc1\x09\x7f\xf7\x1d\xdd\xa3\xc7\xa1\x7e\x0a\x5c\x0a\x34\x29\x43\x33\xf4\x03\xea\x24\x1b\x92\xdc\x7a\xcd\x1e\x35\x68\x79\x02\x73\x54\xb8\x6b\x77\x1b\xb9\x3d\xc5\x84\x1a\xb5\xe5\x8a\x3b\x06\xa9\xc3\x0e\x29\x9a\x3f\x57\xa7\x31\xda\xe0\xd4\x0d\xe6\x14\x5f\x13\x1a\x51\x7e\x10\x5a\xa4\xfd\xed\xce\xdd\x7d\xf8\xcc\x24\xcd\x5d\x52\x2c\x45\x83\x9e\x94\x79\x94\x0f\xda\x12\x3e\xed\x3b\x1b\x47\x28\xc1\xdd\xaf\x11\xa5\x50\x30\xbe\xdb\x7b\xae\xc2\x3f\x6f\x12\xdb\xc2\x82\x82\x56\x3e\xae\x57\x09\x9e\x4d\x1d\x94\x7a\xa3\x7f\xe7\x1d\x6e\xca\xb8\x24\x74\xbc\x30\xbb\xb8\xfa\x87\xc3\x17\xe8\xa7\xcb\xad\xc4\x3f\x48\x32\x51\xee\xcd\x77\x74\x8b\xb6\x76\x4d\x33\xe3\x47\xeb\x75\x6d\x34\xc4\xaa\xd8\xe2\xa3\x82\xcb\x2b\x2a\x1e\x03\x9c\x0b\x93\xb3\x7e\xd5\xa2\x36\xe4\x0c\x11\x42\x7f\xec\x61\x91\x7e\x31\x76\x8b\xa8\x0a\x59\xe4\xcd\xc7\xda\xe4\xb1\x85\x07\x94\xf1\x4c\x4f\xa7\x28\xb6\xdd\x6a\x88\x18\x72\x03\xcc\x6f\x0e\x79\x4b\x53\x1b\x09\x41\xf6\x3a\x1d\x0b\xad\x3b\xa0\xea\x55\xc4\x39\x06\x56\x89\xc3\x35\xd1\x1e\x04\x9a\x92\xc2\xd2\x30\x3f\x6b\x65\x62\xab\x0a\x21\x19\x86\x3d\x48\x90\x1e\xaf\xbc\x36\x49\x8f\x17\x8e\x53\xca\x2c\xec\x73\x41\xa4\xfc\x2d\xe3\xf8\x96\x74\x01\xf1\x6b\x38\xa3\x85\x3b\xbf\xac\x29\x8d\xd6\x51\x0b\xfb\xa1\x66\x3f\x7b\xcb\xf8\x44\xb0\x92\x17\x59\x0d\xb9\x1b\x60\x10\xb6\xd3\xea\x71\xd7\xaa\x36\x1d\xe2\xd0\x86\xb5\x13\xd7\xa8\x7f\xfb\x49\xed\x50\xc3\x86\x49\x74\xb9\xf3\x4e\x6a\x71\x27\x4c\xd9\x2f\xb9\xe6\x1b\x9d\x4a\x10\x43\xa0\x7f\x08\xcf\x93\x6d\x56\x8c\xe8\xb0\x8b\x19\x60\x14\x06\x8c\xae\x1d\x17\x68\x2f\x32\xc1\xdc\xea\x3e\xe9\x1f\x4e\x5f\x37\x4c\x11\x3a\x61\x5c\x85\x31\xdf\xb5\x4f\xda\x05\x13\xd5\xf9\xf0\x6f\x9a\x1f\xb9\x07\x9e\xc1\x40\x74\x19\x36\x57\xa1\xa0\x21\x93\xbf\x23\xb9\x6b\x3b\x35\xa1\x2d\xca\xf8\x5e\x37\xbf\xa0\x9c\xf6\x53\x33\xa7\x40\xf3\xf8\x13\xf1\x74\x11\x8b\xeb\x48\x0e\x2b\xa9\x3e\xab\x81\xd4\x28\x78\x34\xa4\x5e\x8b\x3f\xd2\x20\xae\x65\x14\x04\x72\xa0\x60\xbc\xab\xb9\x53\xdb\xb8\x8c\xdc\xb8\x19\x70\xd3\x01\x29\x35\x34\xb0\xba\x4d\x58\xc0\xd5\xf9\x78\x11\xf2\xf0\xc1\xec\x57\x98\xd9\x9b\xd4\xd1\x33\x8e\xb6\x1b\xef\x63\x37\x48\xc5\xe0\x7e\x67\x49\xb3\x0e\xd0\xb3\x19\xc8\xfd\xcb\x6a\x8d\x39\x1e\x72\x98\x09\x47\x3d\xdc\xd9\xa1\x54\xc4\xdc\x4e\x38\xfe\x9c\x8b\xde\xd4\x17\x6f\x20\xe2\x69\x8a\xfc\xf8\xbf\x6f\xa8\x6d\x05\xe3\x96\x92\xc6\xaa\xd7\xcf\x55\xd0\x3b\x20\x94\xec\xf2\x39\xcf\x0f\x57\x6b\xa6\x54\x88\x51\x9b\xb8\x88\x23\xfb\xe0\x15\x3a\xff\xbe\x04\x08\x46\x19\x37\x8a\x35\x26\x1f\xec\x52\x67\x18\x2b\xe6\x5d\x0a\xaf\x5b\x7c\x7d\x6f\x6c\x92\xe9\x6d\xca\xec\xa9\xd3\x60\x7b\x7c\xc7\xed\xe9\x47\x70\x62\xd7\x40\xbe\x71\xa7\x36\x30\xa3\x62\x73\x51\x40\x2b\xd5\x35\x4e\x0d\xdb\x5c\x08\x7d\x76\x8f\x1c\x2b\x9a\x8c\xfa\x71\xdd\x90\x74\x53\x05\xe3\xa0\xc6\x0d\x8c\xef\x3c\xa3\xd5\xf8\x7c\xa7\x4b\xd2\xdf\xf4\xaa\x9b\x5c\xcc\x00\xaa\x97\x4d\x13\xc1\x0a\x7e\xa1\xbd\x53\x7b\xb8\xd0\xd8\x80\xf1\x7e\x61\x36\xdf\xdb\x33\xb3\x67\x46\x71\xda\xd4\xd9\xb0\xe2\xdd\xf5\xb2\xce\x41\x60\x9c\x30\xf6\xf5\x57\xd3\x2a\x5d\xba\x5a\x16\x06\x6b\x4a\xbb\x65\x4a\xc5\x3e\x32\xbf\xe7\xb5\x4b\xb4\xba\x33\x64\x2e\x2c\xbc\xdb\x7d\x8d\x23\xfc\x9a\x96\x66\x40\x9e\x39\x48\x0a\xae\xfc\x8f\x9e\x56\x00\x29\x35\x62\xd6\xb9\x4e\xd8\x81\xc1\x9a\x06\xb3\xdc\x50\x7a\x5c\x5f\xec\x27\x0f\x88\x4d\x1b\x46\x00\xf9\xc9\x7d\x78\x71\xb6\x75\x0e\x6a\xf8\x14\x68\xcf\xfc\x27\x3b\x74\x1e\x51\x19\x5d\xda\x9d\xd6\x51\x0a\xee\xdb\x47\x9c\xce\x1b\xdf\x8e\xe1\x47\x95\xf4\xeb\x79\x34\x7e\x5c\x7c\x71\x51\x1d\xad\x55\xe1\xa1\x2f\xba\x83\x5b\x1e\xe0\xf5\xc9\x35\xc8\x55\x8a\xb9\xdc\xb3\xab\xa4\x81\x62\x19\xb9\x75\x7c\x0a\x01\xaa\x8b\xfb\x46\xa8\xe0\x31\x87\x28\x42\xd0\x85\xb5\x0b\xb5\x49\x64\x4d\x5f\x8e\x77\x9f\x25\x07\x49\xcd\x1a\x09\x70\xc6\xbe\x60\x68\xef\x08\xfd\xde\x02\x5b\x0e\x98\x10\xba\x35\x9e\x98\xb1\x26\xd8\x6a\xe3\x77\x8d\xce\xac\xb5\x7b\xf2\xb5\xfe\xcd\xce\xfe\x22\x5e\xef\x85\xb6\x9f\x06\xa2\xdc\xcb\x96\x6a\x06\xc1\xea\x4d\x94\xa1\x32\xe7\x7f\x7f\xba\xa6\x6f\x34\x75\xa6\x58\x46\x5f\xb0\x4f\xc3\x72\x99\xd4\xa5\x8e\xc4\x57\xe4\x87\x3d\xa9\x68\x8f\x87\x71\x1b\x3e\x6f\xbd\xdc\x9d\xb9\xa8\x4c\x6c\x25\x61\x5e\x70\x52\xe1\x58\x05\x28\xce\xdd\x5c\x1b\xeb\x7f\x9e\xcf\xfe\x9d\x72\x2b\x2e\x6c\x2c\x41\x72\x2e\x0d\x18\xce\xcd\x3c\x09\x5f\xed\x5a\xd4\xc5\x7e\xaa\x57\x31\x90\xfb\xf5\x7b\xbc\xee\xa0\xe5\x06\x01\x11\xbe\xb8\xc0\x33\x34\xfb\xf3\xd0\x75\xd3\x06\x6d\xd8\x13\x13\xdb\x4e\x0d\x11\xc2\x56\xfa\x44\xe3\xff\xac\x92\xaa\x5f\x72\xff\xd4\xf6\x9f\x4d\xb6\x86\x81\x91\x51\x2a\x59\x0d\x57\xe6\x6a\x16\xb0\xb5\x38\x9e\x71\xf7\xbe\xe8\xc1\x87\xb4\x72\xc5\xe2\x76\x0c\x3c\xfb\xfc\xf6\xfe\xcc\xe7\xf1\xee\xec\xbc\xbb\xa5\x78\x85\x4b\x9b\x71\x98\xfb\xca\xd3\x4a\xaf\x69\x56\x10\x88\xdd\x17\xce\xbd\xf9\x54\x16\x61\xa0\xe5\x5b\x7f\x31\x23\x43\xb9\x78\xf1\x35\x97\x96\xda\x97\xae\x9c\xa3\x05\x3e\xab\x53\xf4\xa0\x72\x91\x26\x7a\x14\x77\xe4\x35\xbe\x2c\x92\xd2\x36\x23\x76\xf0\x30\xc8\x41\xf4\xd8\xe5\xf4\xf6\xe1\x5b\xb3\x7b\xac\x0a\x8b\x23\x76\x10\xe0\xac\x1d\x58\x7e\xec\xdd\xba\x0d\x7d\x82\x4e\xd9\xbb\x50\x37\x03\x68\x70\x6b\xdc\x52\xf4\x7f\x1f\x4c\xab\x02\xbb\x05\x28\xb2\x87\xdf\x95\x9a\x42\x7e\x7b\x91\xef\xec\x3c\x3b\x09\x29\x38\x6e\xa9\xa3\x5b\x36\x73\x9d\xde\x6b\xb0\xc9\x78\x47\x23\x2f\xe9\x23\xf3\x74\xd5\x76\x3b\x85\x33\xfe\x34\x50\x04\xa6\x3d\xe4\x12\xbf\x56\xb4\x51\x5c\xd5\x42\xfe\xcb\x4f\xef\xfa\x7f\xac\xdf\x21\x0f\xf7\x33\xc1\x30\x64\x20\x37\x91\xfb\xcd\x6b\x72\x4c\x53\xc1\x88\xab\xe0\x6d\x90\x56\xe9\xbd\x33\x8b\xc5\x52\xf4\xf3\x1b\x34\x86\x89\x4d\x9b\x72\x7d\x6a\x04\x8f\x9c\x1d\xff\x74\xd9\xb2\xe5\x82\x89\xbc\x6a\x7b\x9b\xb2\x0b\x10\x2c\x78\x2f\x1c\xb5\xe9\xbe\x54\x89\x30\xf1\x2a\x0d\xe4\xe6\x3c\xa3\x0e\x0c\x9b\xb6\x00\xef\xe6\xbf\xd7\x10\xdb\x60\x60\x84\x72\xc8\x47\xee\xe1\xc7\x15\x89\x7e\xdc\xc0\x76\xdb\x09\xab\xd9\x1a\x08\x86\x7a\xa1\x8d\x18\x30\x8c\xe0\x6a\x0e\x2f\xd0\x11\x9e\xb8\x9e\xd8\x1d\x7c\x7a\x9e\xc4\xe4\x20\xbf\x5e\x2c\x45\x7f\xbe\x5c\x2b\x0f\xb0\x5f\xe7\xc0\x86\x33\xef\x3e\x47\x1d\x19\x03\x88\x13\xf0\x13\x4b\x78\xea\x5e\x4a\x5d\x01\x3a\x2c\x2c\x3f\x4b\x33\x33\xa4\x88\x59\xe2\x01\xfd\x5a\x13\x15\x12\xa6\x38\x09\xb7\x64\xb1\xe6\xf8\x87\x2a\x15\x62\xa1\x06\x49\x64\x8e\x8c\x07\x9f\xcc\x90\xea\x30\xe6\xfd\x7a\xfe\x71\x4d\xc8\xb8\xee\xe2\x14\x0c\x67\xdc\xd8\x91\x2e\x61\x3c\x4c\xd3\xcd\x4e\x8f\x16\x54\x10\x73\xd2\xa2\x65\xfc\x5e\x59\x4f\x95\x29\x6b\xf9\xc5\x52\xf4\xe8\x42\x19\xa1\xa7\x76\x03\x9c\xd3\x7b\x22\xdb\xb7\x4c\x39\x15\x51\xa1\xe0\xbd\x72\x51\xfa\x8b\x7c\xaf\xe9\x88\xb1\x47\x36\x61\x76\x3c\x95\x8d\x08\x4d\x14\x9f\x05\x41\xd2\x48\x5e\x20\xf2\xae\x2a\x79\xca\xb1\xaa\xf1\xd5\xdd\xdb\xcd\x23\x45\x40\x3d\x58\x83\xf2\x36\xe2\xf0\x6b\xa7\xec\x16\x60\x4c\xbe\xfb\x04\x9f\xbf\x2f\x44\x01\x6a\x9b\x79\x1b\x9f\xec\xd7\x26\xd8\x49\x56\x10\x35\xf9\xe8\xed\xfa\x98\xd2\x21\xae\x95\x50\xeb\x72\x6f\x3f\x99\xf8\x97\x30\x46\xcb\x34\xf1\xe1\x39\xa4\xad\x17\x03\x0a\x78\x24\x11\x95\x5e\x3e\x4d\xf1\x21\xa1\xb6\x8d\x20\xa9\x45\x43\xc7\xf1\xae\xc4\xc5\x4d\x93\x8a\xfe\xe8\xb9\x03\xfc\x4d\x37\x6b\x7c\xaf\x3b\x7a\x95\x3e\x10\x93\x84\xe5\x42\xcf\xbc\xec\x77\xa9\x22\xc6\x42\x3b\xf5\x78\x32\x3e\xb6\x5d\xb9\xa7\x00\xbf\x14\xd2\x6b\x23\x3c\x05\xde\xb0\xde\xa3\xc2\xd0\x2b\xf7\xc6\xb3\xb2\xd3\xaa\x61\xd7\xc5\x30\xb9\x7d\xdb\x96\x3f\x6d\x02\xb7\x20\xfe\xe9\x99\x8a\x3e\x21\x14\xc8\x15\xcc\x65\xbb\xaf\x3f\x30\x4a\xc1\xf1\xbb\x7e\x68\x07\xc8\x55\x6a\xa4\xfc\xfb\xe7\x28\xfd\x1c\x4d\x46\x25\x6f\xdc\x9c\xed\x1d\x7c\x82\x2c\x71\xec\xc4\x6a\x7e\xf7\xdd\xa3\xe4\xbb\xda\x68\xc7\x1b\x19\x03\xfb\x47\xa8\x65\x4c\x40\x4c\xe2\xa1\xc4\xbb\xe3\x43\x87\x32\x98\xff\x94\x0a\x55\x1a\xc8\xcd\xb8\x41\x05\xbd\x80\x78\x76\xb4\x79\x65\xf2\xa0\x1d\x07\x94\x9a\x61\xd1\x36\x5a\x31\x93\xb0\x18\x5e\x0f\x46\xab\x85\xf3\xef\x1c\xab\x7c\x63\xc4\xe5\xe4\xda\x14\xec\x54\x74\x37\x09\x10\xcf\x79\x85\xe6\x2e\x61\x3b\x39\xd1\xb4\xa9\x09\xe6\x18\xa8\x53\xd3\xb5\x47\x29\xf5\x70\xfe\x64\x35\xcc\x96\x09\x28\x98\x97\x06\xf2\x17\x8e\x96\x3f\xcf\x1c\xa7\x83\xe7\x67\xd7\xc3\x59\x1d\xd8\xc2\xea\x07\xda\x9b\x5c\xd9\x03\x1b\xf7\xec\x6f\xcf\x20\x60\x01\xcb\x97\xf4\x53\x8e\xf2\x0c\x39\x8f\x62\x81\xb1\x3c\x6f\xfb\x48\x5e\x97\x78\xa1\x6b\xb6\x29\xa1\x18\x9f\x78\x58\x3e\x20\x87\x86\xbe\xaf\xee\x50\x3f\x7b\x5f\xbb\x22\x0b\x6d\x64\xd5\x12\x0b\x5d\xc2\xd5\x6a\x7e\x0d\xd9\x36\x76\xf9\x14\x69\x60\xa1\xd0\xc1\x8d\x8f\xac\xa5\x0a\x9f\xfc\x61\x9d\x2c\x89\x66\x75\xcf\x9e\x1e\x3f\xed\x1b\xac\x61\x22\xca\x80\x01\x3d\x57\x08\xfd\x8b\xdb\x06\x06\x83\xc9\x25\x0a\x52\x41\xd3\x31\x12\x66\x1b\x42\x56\xf9\xf4\x33\xfc\xd1\x95\x89\x65\x09\xd2\xf5\xf2\xad\x32\x31\xdb\xf1\xbd\x84\x17\xe2\x15\x79\xf2\xea\x84\xd5\x55\xf5\x85\xc3\x23\x32\xef\x0a\xb5\x89\x85\x02\xca\x13\xfa\x7f\x17\x4e\x3d\x05\x4c\x4a\xde\x3c\x93\xc7\x96\x25\x24\xd8\x8e\x9b\xb5\x47\x46\x8b\xc8\x8d\xdf\x33\xd1\x0e\xcf\x52\x1c\x2e\x51\x60\x66\x81\x22\x4f\xf7\xc8\xf9\x7e\x25\xe4\x86\x35\xe6\x3d\xd9\xd6\x0d\x87\xa7\xa2\xd7\xe5\xef\xdd\x2b\x0b\x61\xaf\xd6\xf2\x89\x49\xd0\x29\xe8\xcc\xff\xa5\xb1\x30\x03\x86\x4c\x8c\xca\x36\x16\x53\xbf\xa5\x07\xd2\x9a\xac\x41\xda\x65\x61\xf7\xef\x1f\x75\xea\x72\x3b\xf9\x06\x5f\x59\x79\x2a\x28\x87\x40\x31\x7e\x5d\x0a\x4a\xb8\x20\x97\x1c\x57\xcd\x9f\x17\xb5\x55\xd9\xa6\xcd\x62\x29\xba\xf1\x4d\xe9\xcd\x05\xee\x15\x3f\x17\xee\x16\xf3\xed\x10\x30\x3b\x17\xbc\x9a\x61\x5b\xba\x55\x01\xf0\xbf\xe6\xf1\xec\x4e\x65\x5a\x71\x06\x9f\x7b\x0e\xee\xd0\x55\x8c\x92\xa2\xe9\xea\x85\xda\x06\x9e\x32\x0c\x3c\x63\xee\xa2\x3b\x7e\x5e\x9b\xd8\x80\x47\x53\x82\xf0\xa0\x86\x26\xfb\x18\xbf\x10\xac\x95\xac\x0a\xbe\x73\x4f\xb6\xa8\xec\x43\xad\xec\xab\x94\xff\xf4\x3e\x65\x24\x44\xca\x98\x11\x54\x2c\x45\x1d\x4a\xcf\xcf\x7b\x8e\xf8\x0d\xbb\x6a\x50\xdb\xe0\x11\x16\x4d\x62\x35\x5a\x3d\x9a\x8e\x29\x42\x94\x42\x26\x7c\x3b\x6b\xe9\xb6\xee\x52\xce\xf3\x98\xdf\xe0\x61\x63\x09\x11\xda\x27\x85\x33\x85\xea\x30\x71\x4d\x22\xf6\xb2\xb7\xac\x1e\xa5\x4c\x24\x5d\x1f\xb3\x06\x0a\xc0\xbd\x47\x74\xfd\xf9\x59\xb2\x6c\x21\x2e\xc0\xa0\x27\x2a\xdb\xcb\x26\x0a\xab\x80\xcc\xf9\xcc\x22\xf9\x96\xf4\x51\xca\x93\xc1\xb1\x6d\x5a\x9b\x0d\x98\x56\x61\x41\x69\x8f\xd7\x87\xd2\xb6\xc0\xa4\x1a\x7b\xb7\xea\x4e\x79\x0e\x2f\x10\x53\xf2\x52\x7e\xff\x59\xb2\xb8\xad\xd1\xa0\xbd\xb8\xcd\x5d\xc7\x0f\x44\x52\x5f\xc7\x2d\x30\x09\xe2\xae\xf4\x57\x8a\xec\x47\x99\x86\xb6\x25\x52\xd7\xfc\xd3\x75\xb5\x06\x47\x8e\xbb\xef\x5d\x23\x88\x0a\x9c\xda\xd0\x96\x14\xbf\xfa\xa2\xdc\xb0\x17\x8b\x19\x37\xf5\xc9\xdb\xb5\xb6\x7e\xf6\xd4\x69\x7c\x9f\x72\x87\x66\x61\x66\xda\x88\x38\xfc\x25\xfa\xd2\x28\xd5\xc2\xcc\xa7\x2c\x50\x3b\xbb\xdc\x2f\xe7\xea\xdc\x01\x9c\x20\x9c\x0a\x8b\xcf\x52\xd6\x87\x21\x85\x35\x65\xef\x21\x55\xbd\x02\x3b\x04\xce\xdb\x1f\x57\xf3\x97\xee\x6a\xd7\x84\xb0\xf5\xd1\x9d\xca\x4c\xdf\x23\x8c\xf0\xb1\xd2\x03\x5b\xe5\x19\x98\x35\x0d\x24\x72\xef\xea\xd5\x86\xae\xc8\x0f\x8a\x1e\x32\x53\x27\xc3\x25\xda\xc8\x13\x59\x0d\x60\x2b\x71\x09\xad\xab\x57\x2a\x7e\x29\x34\x64\x00\x35\x82\xfa\xe4\x4f\x4b\xda\xd8\x44\x01\xf6\x83\x44\x80\xd1\x78\xa2\x43\x23\x46\xa4\x0e\xb2\x94\xf9\x02\x73\xf4\xbf\x7b\xd3\xc9\x3e\x0d\xfd\xcc\xde\xe6\xc1\x55\x0a\x0d\x15\xd5\x71\x5c\xe0\xc0\xfd\x3e\x50\xc9\x36\xc5\x2e\x0a\x6a\xc8\x25\x22\x8a\xc8\xc8\xb7\x73\xee\xdf\x31\xd2\x56\x17\xbf\x57\x2c\x4c\x27\x44\x48\x75\x70\x2c\x6c\xb8\x77\x48\x06\x6c\x50\x2c\x45\x47\x1e\xe4\x79\xf2\x9a\x00\x05\x38\x99\xa6\x18\xef\x0d\x4e\x86\xaf\x60\xc5\x1b\x3f\x9c\x4f\x1c\x80\xdf\xf5\x40\x5d\x91\x8f\x22\x2e\x58\xa1\xf2\x74\x66\xce\x28\x96\xa2\x2f\x97\x35\xb9\xdf\x1a\x6b\xf9\x36\x66\x62\x19\xa2\x39\x2c\xcc\xcd\x26\x1d\x1b\x37\x89\xeb\xd7\x5b\x9a\x9b\xc8\x47\x5e\xd1\x06\xa1\x84\x05\x35\xde\x05\x2c\x6a\xc8\xd5\xb9\x45\x7c\x8c\xfc\x36\xd5\xe0\x3f\x6f\x11\x30\x42\xb0\x22\x8d\x7f\xe9\x1c\xee\xcf\x62\x63\xb7\xd8\xdb\x36\xd7\x58\x76\xf9\xff\x1f\x8f\x6a\xe8\xc6\x74\x5c\xd1\xf5\xba\xff\x0b\x03\x72\x13\xef\x3c\xbe\xb5\x29\xfb\x36\xd6\x08\xef\x1f\xa2\x59\x7d\x0a\xa0\x02\xb6\x4e\x80\x41\xfc\xd2\x8c\xc4\x5d\xd4\xaf\xc6\x59\x14\x4e\x58\xcf\x6b\x02\xc3\x09\xe8\x6b\x3e\x95\xdf\xae\x28\xc1\xe0\xf5\x35\x62\x23\x86\x04\xbc\x62\xa0\xf0\xf1\xe3\x7a\x27\x45\x1b\x49\x32\xfe\xe2\x21\x05\xe7\x19\xdf\x40\x71\x06\xb6\x6b\xa9\x27\x74\x09\xac\x6a\x78\x42\xfd\x8f\x2d\xd9\x87\x32\xa3\x7b\xe6\x74\xb1\x3f\x9e\xa2\x8e\xf7\xa8\x1d\xa6\x58\x9f\xa7\x4e\x4b\x67\x17\x13\x7d\xe8\xa8\x97\x3c\x27\xe5\x0f\x90\x02\xbd\xcf\x1f\xdd\x9a\x56\x08\xde\x29\x7a\x80\xdc\x04\xd5\x66\xbd\x22\xdd\x55\x77\x74\x29\x40\xfb\xb0\x6c\x85\xf0\xc4\x1f\xef\x54\x44\x91\x6c\x1b\x2c\x22\xa1\xf8\xfa\xa2\x86\x2c\x41\x36\x62\x09\xe9\xc7\xda\x70\x9e\x9a\x9b\x12\x39\x79\x91\x98\xd8\x3e\xbe\x9c\x5d\x0a\xc4\xcf\x8c\x02\x11\x7e\x53\xbe\x16\x2e\x50\xbb\x07\x72\x7b\x5f\x95\x6f\x1e\x28\xe1\x95\xa2\xfa\x06\x51\x92\x84\x5c\xe1\xe9\x1b\x6b\xb3\xaf\x4e\x85\x58\x38\x4e\x19\xa7\x34\x3a\x0d\x67\xa8\x80\xb7\x00\x78\xe4\xa5\xe8\xa2\x43\xe9\x8b\x8f\x1d\xd5\xf7\xf6\x2b\xf7\x2b\xcd\x1d\x57\x53\x2d\x0d\xe4\x36\x09\x73\x9f\x06\x25\xbc\x45\x1a\x71\x82\xbf\x2b\x01\x43\x16\x60\x3a\x97\xed\xe3\xff\x85\x0d\x6f\x56\x69\x20\x37\x69\xd0\x48\xa5\xd9\x74\xb0\x8b\x4d\x45\x71\x28\x37\xfd\x5e\xc9\x0d\x52\x4d\xd3\xf2\xbf\x7b\x40\xfa\x5b\x53\x55\x80\x3d\xba\xdf\x1e\xae\xc4\x24\x46\xe5\xa0\x38\xba\x65\xa5\x2e\xe2\xdc\xac\x13\xbf\x96\x34\xc6\x23\xe6\xe8\xb3\x2a\x07\x91\x04\xc5\x60\x6c\x38\x4b\x2b\x91\x61\x9e\x27\xcc\x0a\x07\x72\xdb\x9f\xd5\xe0\xee\xa8\x8f\xda\x24\x03\x77\x37\xce\x3c\x22\x34\x0a\x6d\xae\xce\xd4\xf3\xd4\x07\xb4\xaa\xbb\x41\xf0\x29\xfc\xbf\x06\x0a\xa7\xdf\xa4\xe5\x47\x14\xe7\x72\x3e\xd5\x5d\xf2\xb0\x82\xb4\x02\x72\x1c\x1c\xc5\x2f\x4d\x1a\x2b\xbb\xa6\xb8\x56\xe0\xed\x74\xf6\xb1\x77\x04\xe7\x88\xff\xc0\xb2\x6c\x1c\x27\x6c\xb0\xb9\x78\xee\xf6\xf3\xb4\xdd\x5a\x72\x0f\x8b\xa5\xe8\xba\x0e\xc5\x9b\x07\xd5\x68\x15\xb9\xb0\xe0\x39\xfc\xac\x36\xc2\x0d\x19\xf5\x30\xbc\xe0\xd2\x5f\xd8\x9e\xa3\x37\x1a\xfc\x7d\xe6\xa9\x2e\xf7\xd5\x09\xfc\x7a\xae\x06\x9f\x0a\x92\x96\x6d\x33\xb7\x6b\xc0\x6e\x8e\x2e\xe4\x41\xfb\xa3\x17\x67\x73\x5d\x35\x38\xe5\xd4\x3d\x77\x91\x22\x8e\xdf\x3b\x63\x7a\x37\x48\x2f\xee\xe9\x93\x2f\x78\xef\xb4\xc9\xd3\xa7\x4c\x2d\x96\xa2\x69\x2f\xe8\x0b\x4e\x00\x86\x24\xde\x20\x1d\x8f\xf2\x1c\x17\x67\x5b\xd0\xb0\x81\x6b\xff\xcd\xf3\xe7\x28\x83\x2d\x9c\x16\xb4\xcf\x3f\xc5\x73\x1f\x92\x76\x94\x9f\xbe\xb8\xcd\xb8\xb6\x8f\x1b\x95\x25\xb3\xbf\x0d\x4f\x29\x73\x12\xa7\x8c\xec\x64\xea\x70\xf7\xf8\xec\x49\x08\xa8\x5c\x41\x6c\x1a\x29\xfd\x44\x01\x33\xd5\xec\x54\xf1\xcd\x9c\x72\x54\x8a\x3e\xf1\x94\x56\xc6\xd2\xa6\x48\xf9\xa5\x01\x63\xd5\x71\xe1\x0b\x5e\xa3\x2c\xf4\xf9\x42\x6c\x56\x07\xff\xbe\x0b\x33\xeb\x9d\x5d\x3b\x25\xd2\xb0\x0f\x37\x39\x54\x54\x3a\x85\xd6\x4f\x8e\x50\xe6\x3f\xb6\xad\x1e\x03\xe3\x36\xcd\xb5\xac\x1c\xda\xb6\x87\x13\x05\xf6\xfc\x41\xb7\xf8\x77\xaa\x22\x22\xa4\x6e\x74\x5b\x0f\xc1\xe8\x5b\x40\xcd\xba\x68\xaa\xbf\xf7\x54\xe2\x35\x1e\x07\x9b\x1a\x7f\x46\xcf\xbf\x2b\x09\x76\xa8\xae\x8e\x11\x36\x9c\xab\x50\x74\x2a\xc4\x25\xc9\xaf\xec\x3c\x9e\x31\xb9\x68\xda\x3c\xd6\xbd\xf2\x9c\x28\xa0\x19\x71\xfc\xf6\xdd\x4d\xee\xf7\xa7\x0d\x55\x32\x4a\x00\x23\x1f\xe3\x55\x43\x17\x89\xa6\x75\x6c\x09\x82\xeb\x7f\xbc\xc5\x83\x25\xa8\x75\xc6\x4f\xef\x01\xc5\x76\x1b\xd9\xc5\x1a\x0c\x94\x8d\x8e\x49\x69\x26\xeb\xb6\xbb\xdb\x22\xc5\x9a\xb5\x7f\x47\xdc\x5e\xa8\x7c\xed\x7c\x27\xdb\x70\x56\x69\x83\x57\xe8\xff\xb5\x8c\xef\x29\x96\x92\x7a\x1d\x11\x9b\x36\xa4\xd8\xc9\x2b\x07\xb3\xbf\x63\x22\x90\xae\x8b\x2e\x7a\xa5\xcd\xa6\xc0\xac\x25\xdf\xa7\xe0\x0b\x30\xd7\xaa\xee\xe5\xdd\xca\x9d\xbe\x7f\x99\x06\x96\x0d\x5d\x97\x24\x27\x38\x7f\x40\xdc\x03\xe2\x5b\x14\x64\x11\x1b\x4b\xce\xd3\xba\x8d\x19\x33\x2f\x2d\xda\xac\x5c\x2c\x96\xa2\xbf\x3d\x2f\x2b\x79\x16\xba\xc5\x52\xb4\xf4\xa6\x6c\x48\x05\x72\xc0\x8d\x71\xad\xd4\xe6\x91\xf8\x24\x0f\x35\x2e\x26\xd5\x5a\x99\xb2\x1a\xa5\x56\xb1\x14\xad\x3b\xca\xcf\x7f\xd9\xc6\x7e\xc2\xc2\xff\x41\x8d\xb7\x5e\x2b\x90\x57\x43\x58\x96\x15\xd1\xdb\x07\xe4\x0e\x99\x7a\xc9\xad\x8e\x5b\xdb\x0d\xfa\xae\x0c\xd9\x42\xd8\xa4\x30\xfc\x3d\xad\x95\x70\xab\x8c\xa4\xc6\x25\xc6\x31\x05\x85\x5c\x26\xb6\x90\x40\xcc\xbd\xbd\x59\x06\x2f\x8c\x18\xec\x23\x3f\xd8\xc9\xef\xf0\xd5\x0c\xb9\x44\x2e\xfa\xe7\xbd\xa6\x28\x55\xc7\x2d\x58\x1c\xd2\xed\x09\x4a\xdf\x1e\x90\x8a\xcd\x71\x90\x3f\x3c\x7c\x5e\xdb\xfd\x8a\xcf\x1f\xe7\x21\xad\xee\xd5\x3d\xa9\x99\xc3\xa7\x22\xf9\xef\x4e\x96\xeb\x12\xe8\xab\xa2\xd1\x1a\x67\x10\x83\x86\xbd\x48\x8f\xe7\x3c\x2b\xd4\x78\x69\x28\x58\x71\xc6\xf7\x7a\x34\x86\x7a\x68\x9a\x18\x5b\x1c\x0c\x54\x2c\x45\xf7\x32\xfe\x80\x14\x21\x4c\xb8\xa8\xc7\x9e\x94\x52\x02\x6d\x20\xfc\x81\xfc\xd2\xfb\x47\xb6\x7d\xa3\x30\x15\xe5\x35\xc6\x7a\xfc\x53\x97\x33\x6a\x11\x59\x1a\x5c\x7b\x54\xc6\x5b\xa7\x5b\xfe\xfc\xd6\x7d\x5d\xea\xdb\x1f\x24\xa6\x57\xa5\x01\xa3\xf9\xa4\x26\xf6\x46\xcb\xe5\x64\xea\xb7\xe6\xb9\xd1\xcd\x36\x2c\x08\xd7\xc0\x12\x28\xd2\xfc\x77\x0f\xb5\x99\x5f\xb8\x16\x62\xe9\xfe\xef\x63\x2f\x28\x6a\x07\xac\x4c\x38\x18\x32\xfa\xe8\x61\x8d\xfe\xc6\x30\x0a\x6a\x01\xd8\x46\x09\x22\x62\xf4\x5a\xf0\x77\x40\xd3\xb0\xd2\x9c\x76\x20\x8d\x81\x96\x2a\x8d\x98\xef\xd0\x84\x4e\xb1\x6f\x52\x16\x24\x59\x2f\x77\xdf\x56\xdd\x2f\x2b\xac\xd6\xd2\x8d\xfd\xdb\x4f\x0e\x4b\xfa\x0a\x0f\xbb\xc9\x9b\xf3\x95\x9d\xb2\x4e\xf4\x6c\xd4\xcf\xcd\x0e\x26\x68\xb6\xf9\x70\x77\xdc\x74\xdd\xf4\xef\xa3\x65\x2c\xe6\x25\x51\x11\x33\xe0\xbf\xff\x66\x8d\x68\x5e\x54\x01\x9d\x39\x83\xfe\x4e\xd7\xd7\x84\xb7\x3e\xf9\x76\x85\x07\x94\x25\x16\xb8\x06\x97\x06\x72\x95\x97\x35\xc2\xb3\x83\xfa\x53\xaa\x71\xe3\xf1\xb4\xfa\xb5\x71\x43\x09\x61\x7f\x3e\x36\x5c\xc1\x7b\x98\xf5\x62\x40\xf9\xff\x2d\x0d\x18\x9b\xb5\x9d\x4e\x19\x8b\x86\x1a\x3e\x72\x9c\x06\xa9\x08\x10\x69\x22\xf7\xd2\x39\x09\x58\xa5\xb8\x46\xbb\x9e\x72\x9c\x83\x45\x03\x71\x8b\x30\x41\x42\xb6\x4d\x9b\xe2\x06\x7f\x69\xad\x82\x23\x06\x27\xf6\x36\xf6\xc4\x43\x13\xb5\x9c\xe3\xbb\x9c\xac\xdc\x8e\x4b\xf8\xe0\x02\xc5\x3f\x9b\xfa\x92\xa1\xba\x66\x5e\x6a\x60\x50\xc7\x3c\x39\xc7\x7f\x7d\xcd\x73\xba\x2e\xab\x1f\xa0\x90\x21\x57\xcc\x4e\xf3\xfb\x2d\xb1\x0d\x07\x33\xd7\xb8\xe4\xbd\x53\x57\x9d\x6a\x80\xa4\x90\x58\x17\x2f\xdc\xa9\xe8\x80\xd9\xa1\x23\x10\xe1\xf9\x93\x5b\xb2\x77\xb5\xc2\xb0\x6b\x26\x85\xbb\x71\xa6\xf4\xb2\xac\x04\x44\x39\xd1\xbf\x7f\x40\x91\xc1\x0c\x5d\xce\x2b\x8e\x96\xf7\x6a\x96\xe5\x30\xa6\xe2\x1a\x40\xa7\x55\xc6\x6a\x2d\x02\x97\x95\x01\x27\x44\x31\xb7\x1c\xc7\x57\xe0\xcb\x57\x2c\x4f\x85\xa6\x1f\xd5\xfd\xe5\xb1\xc5\x05\xb0\x13\x14\x7a\xff\xe3\xc3\xd5\x91\xbd\x68\xfe\xb8\xb9\xea\x6f\x2e\x97\xb4\xb5\x69\xc5\xf8\x27\xf4\xb2\x74\x32\x8a\x2c\x94\x48\x7e\x33\x09\xf0\x04\xa8\xa5\xec\x10\x5f\xae\x75\x2a\xd3\x35\x93\x3a\x0e\xe7\x71\x1b\x77\x2c\x90\xfd\x53\x5d\xf5\x12\xbf\xe5\x85\x2e\x65\x75\x8c\x91\x55\x41\xbe\x30\xed\x7e\x6b\x8e\x26\x0e\x93\x08\xf0\x24\xd5\x59\x73\x8d\xcc\x7a\x55\xa8\xc4\x9b\x94\xc1\xe1\x7f\x50\x93\x30\x73\x10\xf7\x8d\xe3\xf7\xe0\x56\x91\x03\x54\xa7\xb9\x91\x4a\x7c\x40\x96\x28\x8f\xff\xfb\x1d\x99\xd6\xa7\x4c\x99\x0e\xde\x4b\x9d\x63\xb4\x84\xca\x70\x5d\xf3\xc4\xfa\xc4\x91\x36\x44\x84\x69\x87\x96\x44\x97\xe6\xf0\xda\xf3\xa4\x4b\x74\x5b\xe9\xd4\xb8\x5d\x12\x0e\x03\x93\xb4\x41\xb8\xc6\x9f\xc8\x7e\x3e\x5e\x6f\x62\x2f\x48\x26\xda\xf1\x85\x7f\xbb\x57\x47\x97\xd2\x3a\x54\x4a\x5f\x9d\xa7\x43\xa1\x92\xb3\xfb\xf5\x49\xd9\x0f\x75\xa8\x05\x9a\x30\x12\xb4\xf0\xdc\xd0\xcc\x54\x0c\xe6\x95\x57\xba\x3a\x96\xcf\x6a\x41\x0b\x15\xed\x39\x74\xae\x9a\xb0\xe2\x8c\x2a\x42\xc5\x8f\x26\x9c\x52\x7c\x4a\xbc\xa9\xce\xfe\x73\xd5\xa2\xc1\xf7\x53\x21\xe2\xb7\x67\x8c\xd2\x0f\x77\xb2\xfc\x86\x6c\xb3\x6d\x92\x76\x5e\x28\xa3\x6e\x40\x13\x04\x5e\x74\xc3\xc3\x7c\xb2\xb1\x00\x2f\x8c\x23\x83\x0a\x9c\xeb\xef\x9d\xe0\xa9\xe2\x6d\xa1\x4b\x84\x47\x78\x1b\xae\x66\xdc\x2b\x1a\x8f\x9d\x85\x5c\xac\x24\xff\xfe\xd5\x1a\x24\x17\x9b\x28\xf4\x93\x6e\x2d\x9a\xbb\x46\x5b\xdd\x9b\x66\xe8\x21\xa9\xe7\x44\x47\xeb\x69\x9c\x25\xd8\xe7\x3f\xec\x97\xc9\x9f\xd8\xad\xd0\xe9\xaf\x11\x17\x84\x3a\x1e\xde\x2d\xd5\x16\x6d\x55\xe2\xe1\x22\x85\xfa\x6c\x13\x11\x70\x7e\xbb\x2c\xdd\x0a\x7b\x38\x48\x6a\xc4\x7d\xbb\x64\x45\xd7\x48\xfc\x44\x76\x2e\x49\x73\x4e\x2d\x54\xd6\xdf\xb9\xee\xd7\x46\x64\x96\xef\x2c\x28\x12\x87\xcb\x1f\x0e\xe4\xff\xf6\xba\x54\x8a\x69\xc1\x84\xea\xaa\x65\x7a\x09\x50\xa1\xcc\x49\x5e\x04\xe3\xf5\x7b\xbb\x32\xdd\x49\x95\xc1\xc0\x19\xb0\xd6\x8a\x27\xe4\x94\x9e\xa2\xc7\xa1\x2d\xb9\xaf\xdf\x23\xb7\x60\xdd\xa9\xf4\xcb\xf5\xe3\xe5\xa9\xc1\x76\x68\x12\x2b\x39\x35\xbf\x9d\x9c\x3d\xd7\x4d\x5e\xca\x4a\xb9\x35\xe3\xc2\xf5\x0a\x77\xab\xe5\x78\x35\xca\x97\xdb\xc6\x6c\xa9\xc4\x01\xd6\x33\x51\xc7\xb3\xe9\xdf\x66\x34\x71\x1d\x2b\x5c\xfe\xec\xe0\xcc\xeb\x5a\x1a\x30\xbe\xe2\x76\xa8\xf4\x32\x01\x50\xc8\xef\xb6\x07\x89\x5b\x03\x97\x76\xc6\x84\xec\xa5\x51\x66\x63\xe4\x0a\xdf\x13\xf8\xe8\xcd\x37\x77\x66\x9c\x50\x57\x2c\x1f\xcf\x6d\x08\xb7\x64\x11\x2e\x75\x0c\x23\xd1\xec\xb8\x3c\xd7\xad\x89\xd5\x22\x37\x20\x45\x1f\x3b\x24\x20\xbe\x23\x9a\xa3\x0d\x67\xb4\x89\x3d\x7a\x36\x32\x39\xff\x3f\x77\xc6\x0b\xaa\xe8\xba\x49\x43\x57\x48\x10\xda\x47\xd5\x3d\x1b\xb6\x1d\x60\xa0\xe5\xa7\x75\x5d\xa2\xd7\xbc\x0e\x09\x02\x8c\x4f\xc5\x32\xcb\x9d\x3c\x2a\x39\x5e\x7e\x1d\xab\x98\xcf\xfc\x83\x35\xbd\x7c\x01\x87\x43\x11\xc1\x5f\x7f\x16\xea\x2f\x80\xf0\xf5\x88\xc1\xed\x03\x6f\x9d\xa3\x30\xcd\x69\x80\xab\xdc\x86\x65\xcb\x5a\x4d\x80\x91\xd1\xa6\x2f\x88\x13\xc6\x9d\xcf\x2a\x2a\xe9\x21\x48\x80\xe4\xd6\x46\xf2\x67\x18\xf9\x71\xb1\xfb\xc3\x63\xb2\x02\x0b\x15\x57\x9a\xdc\x07\xc6\xb5\xc9\x77\x59\x69\x11\x31\xfe\x3d\xc5\x8e\xcb\xa6\x71\xcd\x5b\x3a\xaa\x8e\x71\x59\x15\x64\x0a\x1e\x1a\xa4\x30\x63\xb1\x49\x59\x6a\xcd\x69\xbc\xfc\xd0\x79\xea\x1e\x20\x79\x45\x44\x24\x1d\x75\x56\x66\xfb\xe4\x73\xa5\xfc\x35\x37\xa7\x2c\xd6\x1a\x69\xbf\xeb\xdb\x3b\x64\x8e\xa6\x65\x10\xf2\x80\xe0\xf0\x59\xc5\x0f\xac\x2f\x74\x3c\x8e\x93\xb9\x6c\xbf\x60\x42\x61\xe6\x10\xe0\xe7\x41\xef\xf3\xf5\x42\x36\x58\x39\x2d\x20\x7a\xc1\xec\xbb\x31\x52\xd6\x4e\x09\xed\x00\x80\x04\xe3\xd3\x62\xa2\xe5\x26\xd3\xf8\xdc\xda\x9e\xb3\x65\x04\xab\x14\x4b\xd1\xa2\xb7\x92\x20\x15\xb2\xa0\x46\xc5\xec\x27\xdf\x7f\x50\xab\xae\xd1\x29\xe5\x67\xef\x7d\x48\xd0\x74\x68\xc8\x88\xe0\x8d\xe5\xbe\x75\xe0\x7c\xad\x98\x22\x2e\x92\xec\xd6\xdc\x4d\xdd\x1a\xfe\x89\x78\x45\x5a\xa9\x70\x28\xeb\x17\xde\x91\x21\x96\xa8\x4a\x39\x5d\xfb\x14\x0e\x37\xaa\x73\x33\xe1\x0b\x3c\x45\x16\x16\xd5\xf8\x7b\x51\xd8\xb0\x8d\x97\x9f\xa1\x67\x09\x0c\xd3\x1d\x0f\xc9\xc0\x17\xba\x15\x9b\xb8\x89\x8d\x63\xbe\xf3\xde\x0b\x9b\xfa\xbe\xd4\xd7\xcd\xa3\x0c\xff\xb4\x34\x16\x95\xc3\x44\x8e\xe7\x5f\x8d\x94\x4d\xe9\x8a\x0e\x11\x92\xea\xca\xf5\x43\x92\x58\x14\x30\x41\x3e\xbd\xdc\x68\x1b\x9a\x58\x52\x9d\xe6\x43\x43\x65\x97\x22\x74\x5c\x07\x72\x37\x3d\xc6\x3f\x66\x81\xa0\x7d\x17\x4b\xd1\x37\x1f\xe0\xed\xd6\x52\xa4\x56\x75\x77\x2e\xd3\x80\xac\x21\x4b\x7c\x92\x72\x9f\x1f\xa5\x43\x83\xe3\x72\x2b\x79\xb3\x2b\x95\x4e\xb5\x6c\x28\xa3\xb2\x0d\x36\x2d\xb9\xb3\x3a\xf4\x5e\xad\x62\x2b\xd9\xf3\xe3\x17\xa7\xb1\xda\x42\x50\x1d\x9e\xb6\x43\xec\x92\xdc\xc4\x95\x2b\xfa\xf5\x3a\x1d\x5e\x41\xc3\x6a\x8d\xaf\x4e\x77\x8f\x50\x79\xad\x2d\x0e\x62\x29\x5c\xf7\x4e\x7a\x3a\x29\x70\x1a\x72\xfd\x0d\x3e\x9e\xba\xaa\xa4\xef\xc7\x06\x8c\xef\xbe\xa9\x6c\x23\x28\xb3\xb9\xa4\x17\xbe\xfc\xec\xf4\xeb\xf0\xb3\x7c\xfa\x4b\x1a\xd9\x25\x8e\xb8\xbe\x90\x55\xc9\xad\x7b\x43\x93\x0e\xa2\x6e\xb1\x81\x59\x19\x04\x7e\x38\xec\x73\x15\xbf\xe9\xc2\xc9\x8c\x0f\x1a\x73\x0b\x77\xe8\x9e\xc6\x0d\xec\xc3\xfa\x96\xfb\x1a\x4d\x8c\x12\xf3\xcd\x32\x15\x40\x51\x63\x98\x32\x8d\x21\xae\x43\xf9\x7c\x30\xef\x4e\x50\xb2\xbf\xa2\x75\x91\x1b\xaa\xd1\x74\x68\x18\x30\x54\x15\x7e\xe4\x85\x42\x59\xb1\xe6\x84\x86\xd9\xaf\xa3\x16\x2a\x96\xa2\x5a\xaf\x1c\xc2\x5a\xb0\xff\x55\xb6\xb7\x4b\x57\x88\x01\x0b\x0b\x32\xdd\x44\x65\x28\x5f\x24\x5d\x53\xe3\xee\x30\xc7\xef\x3d\x57\xed\x5d\x02\xe2\x0a\xab\x95\x6f\x94\x2f\xd0\xba\x32\x12\xf4\xab\x62\xae\xc6\xb3\xcb\x95\xfd\x74\xcb\x4b\x68\xea\xd1\x8b\x9a\xee\xfa\x94\xd9\xa9\xa7\x9c\xd0\x52\x1a\xb6\x57\x17\xb4\xf3\x30\x8b\xfb\x8c\x64\x90\x39\x67\x99\xbc\x85\xa1\x07\x41\xbd\x58\x8a\x6e\x5e\xd9\xa9\xee\xeb\x7c\x62\x91\x7e\x5e\x10\x4d\x50\x01\x08\x1e\x46\x9c\x15\x9d\x5c\x68\xf7\xdc\x6c\x41\x8d\xca\x34\x04\x57\x9e\xa8\xbb\xa0\x90\x91\xdd\x24\x10\xaf\x7e\x52\x98\x34\xc5\x49\x01\x00\x23\xf7\x0d\x53\x2a\x21\x0b\x73\x35\xfc\xeb\x57\xe9\x7d\x2b\xc1\xae\x25\x16\xfb\xc6\x2e\xc5\xd5\x3b\xc0\x36\x6e\xa4\xf8\xd5\xff\x5a\xa6\xbc\x15\x1c\xf2\x56\x1a\x30\x3e\xfb\xa8\x26\x42\x55\x27\x35\x12\x50\xae\x56\x9f\x7c\x93\xcb\xb6\x28\x70\xc6\x44\x1c\x2d\xa9\x99\xa6\x2a\x1e\xcf\x71\x91\x00\x85\xe8\xfd\x27\x34\x15\x1a\x1a\x14\x03\x1c\x67\xa2\x64\x96\x9b\x1f\x7a\xb3\xce\xf9\xe1\xb2\x9c\xc9\xea\xec\x1f\x5e\x51\x20\x60\x94\x40\x0e\x3d\xf0\xb0\xe2\x7a\x41\xe3\x00\x58\x0e\xb9\xfe\xf6\x5f\x0e\xa5\x6f\xb7\xed\x41\xa0\x5c\x71\x60\x98\x78\x32\x3e\x46\x0c\xf0\x65\xa5\x01\xe3\x1b\x4f\xea\x9c\x62\x61\x89\x19\x39\x91\x66\xa6\x80\x6d\xe4\xe2\x56\xd1\x77\x48\x50\xcb\x2a\x6b\xe4\xde\x3e\x5d\xb6\xde\x0e\x09\x4c\x55\x08\x67\xfe\x7d\x52\xca\xac\x0a\x6f\xf3\xcf\xc6\xf1\xa8\x61\x87\x42\x01\x32\x77\x4f\xcf\x58\xbd\xb8\xf2\x18\xae\x61\xd7\x27\x0d\x9c\x90\x68\xbe\x3f\x49\xf7\xe3\x22\x0e\x4e\x28\x94\x87\xd3\x18\x69\xf2\x35\xd7\xe8\x55\xed\x02\x91\x60\x4e\x95\xcc\x4d\xfe\xd8\xc3\x5f\xc1\x65\xb4\x7b\x0a\x08\xd6\x6f\xc8\xe6\x26\xff\xc6\x10\x31\x41\x86\x92\x1b\x99\x19\x7b\x14\xed\x0b\x5c\x65\x82\xcf\xf4\xfd\x51\xbc\x01\xbb\xc2\xae\x60\xd6\x52\x26\x59\xd1\x39\x37\xf1\x2f\x7b\x0d\xb7\xa8\x2a\x0d\xe4\x3a\x6f\x56\xf3\x00\x32\x03\x22\xa6\xb5\x6b\x47\xf1\x04\xbf\x4a\x19\x8e\x1e\xd1\x5c\xe5\x7a\x7b\x27\xf7\x26\x1e\xe6\x85\x4f\x4c\x52\x75\x84\x78\xe2\x12\xa7\xfb\x82\xfe\x51\x7a\xa4\xf5\xb1\x9b\x2a\x2b\x0d\xe4\xef\xbd\xbb\x2b\x8b\x12\x8e\x8b\x12\xbe\x30\xfe\xac\xab\xf3\x90\xab\x55\x82\xb5\x49\xc0\xde\xdb\xb3\x45\x8b\x43\xfd\x7a\x03\x69\xb9\x3c\xba\x5f\xc1\x33\x53\x17\xf3\x08\x54\x1a\xc8\x7d\xff\x79\x3e\xee\x2f\x4d\x5c\x86\x89\xda\xdd\x15\xdc\x75\x8a\xbd\xf6\xe4\x69\x53\x41\x1a\xee\xa7\xd3\x54\x4f\xd0\x1a\x85\x8d\x33\xd4\x37\xd3\x0e\xf1\x1b\x1f\x67\x92\xc5\xb8\xa9\xea\x70\x7c\x7f\x42\x5a\x2c\x96\x83\x76\xbf\xff\x8f\x2b\xba\x7c\x0c\x57\x11\xe1\xc2\x5a\x07\x1f\x3d\x27\x23\x9f\x91\xf0\x9c\xfe\xb4\x70\x84\xa2\x36\x65\xd6\xe2\xdb\x9d\x42\x98\x6f\x3d\x24\x7f\xa9\x41\x7c\x13\x33\x2e\xf5\xb0\xbb\x47\xbe\x17\xe0\xfd\x2a\x1f\xec\x8e\x27\xe5\x29\x70\xc3\x80\x25\x2e\xf2\xf9\xa5\xc7\xc4\xdb\x81\x85\xd2\x67\xee\xb2\x79\xda\x50\x84\x04\x28\xab\x19\x72\xda\x4a\xd9\x94\x09\x84\x7b\xfc\x8b\xff\xba\x51\x23\x64\x57\x02\xcc\x5c\x4a\x85\xe2\x76\xfe\x0b\x0f\x6b\x50\x0a\x90\xf9\xe3\x7b\x89\x3d\x23\x86\xa8\xd5\x4a\xb1\x58\x8a\xfe\x5a\x11\x94\x91\x96\x70\x7d\x85\xa1\xb4\x22\xb2\x49\x7c\x3f\xe4\xfd\xdf\x77\x9f\xd5\x4d\x3f\xaa\xe0\xf8\x22\xc3\xc2\xe9\xc7\xb5\x2d\xb5\x87\x61\xc0\x2e\x1c\x82\xcf\x9b\xa5\x67\xfc\x6a\x08\x30\x02\x51\x0e\x5e\xb9\x58\xc3\x19\xd0\x90\xd9\x34\xb1\xcd\xc8\x7f\x45\x5b\x7c\x58\xc4\x37\x43\xa1\x64\x0e\x33\xa1\xaf\x6d\xd1\x07\x6c\x36\xa7\xeb\xe6\xbb\x3b\xe4\xbd\xec\x9d\x3a\x5d\xf0\x43\x73\xef\x9e\x95\xdd\x80\x23\x6a\x0b\xf2\x53\x76\xc2\xf5\x4f\x97\x0f\xd7\x02\xaa\x2b\xa6\xdd\xd1\xfd\x6b\x86\x49\xf9\xcb\x72\x52\xa1\x7b\xe3\xe4\x41\xa8\x13\x46\x5a\xd8\xad\x03\xca\x74\xec\x42\x85\x05\xd5\xa6\x84\x74\xc1\x88\x6c\xe0\xae\x92\x4a\x20\xb6\x5f\xcb\x9e\xe0\x89\x73\x7e\x8d\xe0\xb8\xed\xd8\xa3\x14\xbc\xd0\xe8\x16\x4b\xd1\x5b\x95\xa1\x4a\xc1\x11\xda\xf1\xd1\xbf\x6d\x30\x7f\xbe\xd7\x0a\x49\x71\x18\x97\xb7\xc6\xcb\x23\x8c\xca\x16\x56\x48\x81\x46\xc7\x1c\x49\xca\xf4\x31\x63\x04\x5b\x6d\x5c\x94\x51\x5d\x62\x2b\x15\xba\x66\x4d\xa8\xd4\x75\xc9\xac\x15\xff\x3f\xca\x34\x79\xd4\x0b\xa3\x65\x83\x0a\xe0\x86\xb6\x11\xe1\x03\x96\x8c\xc0\x40\x91\xe0\x1f\x3a\xf1\xcd\xb3\xc4\x2d\x74\xf9\xe1\xdf\xb9\x4f\x88\x92\x04\xa8\xea\xa2\x44\x8f\x29\x58\x28\xa6\xec\xd8\xf5\xa5\x7b\x7b\xfe\xe3\x87\xc6\x67\x9f\xae\xe3\x9b\x62\xe4\x90\x8d\x1a\x5f\x58\x93\x3d\xd8\x75\xe2\x68\xd0\xb7\xdf\xa8\x33\x17\x1a\x72\x9c\x62\xfc\xa0\xff\xf6\x82\x86\xb3\x23\x1e\x23\x48\x2c\x66\xf5\x6f\xf9\x9f\x87\xbb\x94\x53\xa1\x22\x02\x8d\xf9\x0f\xeb\x8c\x36\x8b\x36\xf9\x09\xbb\x77\xb9\x18\xff\x3a\x88\xf1\x51\x73\xc1\xda\x38\x5a\xff\xaf\x71\xb1\x4c\x2d\x92\x02\x63\x8d\x9f\x3d\xaa\xf5\x0e\xd4\x4a\x25\xc3\xf2\x97\x8c\x57\x9c\x7c\xdb\x5b\xee\x43\x0b\x74\x0f\x88\x38\x8e\x0a\xb5\xfd\x2b\x77\xc8\xfe\xd2\x54\xa0\x00\xb9\x9b\x8f\x09\x97\xda\x95\x8b\xae\x5c\x76\x4d\x72\x83\x0e\x2e\xd2\xe8\x48\xc4\xb6\x09\x72\x7c\x35\xd4\xe5\xbe\x7d\xef\x90\x24\x26\x59\xa1\x09\x35\xf2\xa7\x07\x6b\x1b\x9d\x30\xa8\xc5\xbd\x01\xec\x00\xff\x6d\x9f\x22\x94\x08\xb0\xe9\xf8\x2b\xff\xea\xe1\x36\x7a\x3d\x02\xff\x4e\x70\x0f\xc9\xdd\xd6\x2b\x83\x5f\x02\x52\xf8\xd9\xac\x36\x03\xb2\x80\xfb\xe1\xc3\x3f\x77\xec\xd3\xa7\x81\xc8\xf7\xe3\x68\xca\x11\x44\x77\x6d\xd3\xaa\x54\x14\x57\x77\x49\x6d\xd7\x67\x68\x4b\xe0\x26\x15\x9d\xcd\xb0\x27\xb3\x55\x09\x9d\xe8\xc6\x09\x53\x23\x5f\xb8\x5e\x76\x72\xeb\xa5\xcc\xe3\x57\x17\x88\x13\x71\x63\x88\x71\x5c\xa6\x47\x7f\x64\xa3\xb5\xef\x81\x05\x86\x3b\x55\xe6\x79\x7a\xa1\xe2\x71\x8c\x5d\x64\x81\xbd\xc8\xd2\xe5\xda\xc2\x95\x03\x88\x44\x14\xe4\x54\x21\xd1\x8c\x03\xc7\xc7\xe7\xad\xcd\x6d\x96\xe2\x31\xcb\x9c\xb8\x35\x39\x77\x91\x96\x97\x02\x21\x2f\xc6\x4f\xf1\xaf\x0f\x29\x56\x81\xae\x0b\xeb\x6c\x87\x0f\x80\x26\x8c\x1b\xa2\xbc\x5c\x08\x42\xf9\x77\x6f\x52\x46\x45\x36\x32\x45\x4e\xfe\xf0\x4a\x39\xbb\xac\xb6\x40\xf4\xc8\xea\x54\x05\x80\xe3\x8b\x0c\x19\xe6\x53\x84\xa3\xd9\xf7\xbf\x86\xca\x65\xe4\x92\x96\xf0\xff\x93\x68\xe0\x1f\x2c\x1e\xa2\x0c\x41\xa0\x1f\x7a\xe3\x15\xf9\xc2\x57\x59\x7c\x8c\x42\xde\x61\x6f\x7a\x35\x5b\x22\x35\xb0\x85\x5d\x2a\x1e\x5d\xea\xf3\xd2\x7a\xb4\x6d\x49\x0d\xec\x6a\x71\xb0\x0a\xd7\xbf\xc9\x9f\x60\x15\xbb\xbc\xac\x88\x2e\x5e\x30\x46\xeb\xdb\x6c\xd8\x7b\x13\x94\xda\x58\x1a\x9b\x8e\x65\xcf\x0d\x43\x7e\x0d\x8b\xf4\x27\xcf\x4d\x6d\x44\xf6\xbf\x9a\xde\xc3\x27\xb4\xd9\x98\xf7\x93\xdd\x52\x50\x01\x55\xb1\x6b\xb6\x07\xe5\xb7\x5f\x53\x10\x15\x8c\x58\x55\xd0\xce\xba\x75\x27\x3f\x0e\xf3\x10\x00\x0b\xa1\x3d\xba\xfa\x29\xa5\x2d\x87\x7a\x01\x86\x1c\x57\xae\x50\xa6\xdc\x0e\x49\x27\x81\xd1\x23\x8a\xca\x67\x59\xe8\x12\x16\x16\x1c\x16\x78\x2f\x50\x3e\x85\x7a\x65\x93\x25\x17\x5a\x33\xbb\x67\xc4\x0f\xf5\xac\xbd\x32\x86\x36\x49\xa0\x36\x25\xff\x7d\x77\xda\x94\xd4\xe2\x56\x2a\x1a\xac\xad\x59\x05\x94\x2b\x2e\x48\x60\xa3\xbf\xec\xbe\xf6\xc5\x17\x17\xf5\x4a\x56\xc7\x2f\x75\xf3\x2f\x1b\x30\xe2\xd9\xc2\x0c\x70\xe5\x51\xa5\xfc\x6d\x60\xe6\x61\x98\x36\xe5\x7f\xa5\x29\x3c\x72\xff\xc0\xb4\x36\xff\xfc\x96\xa1\x4d\x65\xd6\x05\x75\xe9\xcf\x77\x5d\x28\xdf\x49\x62\xd6\x1c\xea\x5a\x6d\xea\x40\xf9\xcf\x8f\x54\x88\x0a\xa1\x59\x43\x2e\xd7\x4f\x33\xe6\x5d\xa2\x1d\x19\x16\xb8\x18\x5c\xf2\xdb\xd4\x27\x06\x8c\x17\x15\xb9\x50\x1b\x57\x28\x0b\x68\x23\x6e\x09\x87\x0d\x1d\xc9\x0b\x0b\x5a\xa9\xe0\xf6\x43\xd0\xd2\x13\x13\x6a\x24\xba\x28\x85\x4f\xdd\xde\xae\x90\x10\x70\x04\x3e\xbc\x2b\x17\xec\x94\x2f\x91\x1d\x9a\x0c\x09\x3b\xf7\x65\x8f\x77\xa4\xa7\x3f\x48\x25\xf8\xf2\x4b\x5f\x4a\x33\x8b\x1f\x28\xe3\xb9\xc2\xec\x9a\x32\xa1\xa5\xcc\xc2\x28\x5c\x0f\x98\xbb\xcd\xfc\xe9\x2c\x42\xac\x21\x7c\xb3\x72\x6f\xaf\x1f\xad\xac\xae\xed\x53\x70\x03\x73\xc7\x4e\x93\xd5\x0f\x25\x36\xc8\xea\x57\x00\xc5\x34\x90\x7b\xe7\xa0\xa2\x0c\x07\x20\x83\xf8\x0f\x5d\xdc\xa3\xeb\xcb\x95\x13\xe6\xcf\xd8\x57\x75\xcf\x65\xe2\xe0\xf8\x75\x8f\x9f\x7b\x3b\x71\xeb\x22\x83\x7f\xf5\x6b\x41\x4d\x21\x48\x5c\x97\x1a\x0f\xcb\x84\x0c\x73\x6b\xb7\x2a\x86\x10\xf1\x39\x3e\xc3\xd6\x48\x09\x65\xf3\x94\x60\xe4\xd2\x64\x9e\x81\x97\x41\xdc\x87\xa2\xa0\x34\x90\xff\xe6\xe8\x73\xd5\x99\x7c\x00\x7a\xd2\x71\xc4\xfe\xcd\x71\xe5\x1f\xb0\x4b\x24\xdb\x67\xde\x1c\x05\x39\x9e\xe1\x92\x3f\x26\xa3\x78\x2d\xeb\x24\x9e\x9b\x32\x38\x9b\x0d\x41\x45\x32\x11\x77\xcf\xcf\xef\xe0\x1d\xd0\x47\x43\x8c\x5d\x88\x0e\x93\x0f\xcb\x20\xe0\x75\x87\xdd\x5c\x91\xf3\x62\x09\x8e\x54\x42\x60\xb2\x60\x9a\x35\x43\x93\xd6\x70\x4d\xc2\xcc\x54\xba\x3f\xdf\xb3\xbe\x53\x29\x35\xbd\x1a\x13\x6b\xb5\xc2\xfc\x9e\x36\x3e\x49\x83\xd6\x53\x3f\x98\xfc\x1f\x1f\x3a\x37\xb3\x51\x85\x2d\x10\xfc\xe6\x0c\x4d\x44\xcd\x64\xd8\x22\x71\x9a\xef\x2e\x96\xa2\xfa\x0e\x65\x89\x83\x40\x8d\x0a\xaa\x9e\x3f\x0e\x3d\x3b\x7d\x96\xbc\xd2\x58\x7a\x8c\xf7\xb4\x2b\xc1\x68\x26\x43\xe2\x99\xb8\x3e\x3d\xf7\x5e\x46\xe6\xfb\xea\x8e\x14\xb9\x50\xa6\x2c\x43\x26\xfa\xf9\x6a\xbd\x32\xf1\x3d\xea\xfa\x89\x76\xc9\xa3\x2b\x05\xa2\x9c\x30\x00\x0c\xe4\xb7\xf4\x8e\xd5\x4a\x3a\xb7\xea\x83\x12\x1d\xaf\x11\xe6\x14\x4b\xd1\xff\x2e\xd1\x46\xd6\x8e\x70\x47\xe7\xab\xb7\xae\xa1\xba\x5e\x1c\xf3\xa9\x94\x3b\x7f\xf1\x65\x59\x5f\x94\x5b\x36\x6a\xc2\x4f\xbf\x3e\x4d\x1b\x1d\x13\x60\x41\x8a\x8f\xfc\x87\xe3\x3a\x0e\x26\xae\x9f\xc1\x48\x94\xc3\xdf\x5e\xa9\x75\x88\xec\xe1\xd5\x90\x9f\xb8\xbf\x1a\xdb\x9e\x3a\x5b\x94\x71\x34\xe4\x41\x79\xf4\xde\x91\xd2\x01\xa2\xcd\xac\x2f\x3f\x4a\x9b\xc6\xfb\x35\x0a\x73\x68\x71\x6c\x9a\xeb\x44\x13\xec\xa1\x6a\x0d\x07\x01\x89\x3f\x72\xc2\x8a\x76\x51\xec\xd4\x1a\x67\xd7\x92\x2c\xb4\xb3\x49\xb9\xa2\xc7\x98\xb5\xe9\xcc\x0a\xc1\x6e\x35\xff\xa5\x8d\x1a\x6a\x86\x3a\x38\x91\xa1\xff\xe7\x8e\xf3\x55\x22\xb1\x8e\xce\xed\x5b\xa6\xb4\xeb\xc4\xad\x17\x4b\xd1\x66\xad\xac\xe7\xc0\x75\x91\xad\xaa\x1b\xe5\xae\x19\x57\x44\x53\x7d\xdb\xe4\x24\xef\x38\xe5\x74\x13\xb7\xa7\x83\xcb\xbd\x39\xc8\x0d\xe3\xaa\x55\x0c\xed\xa2\xf7\xdc\xac\xe4\x20\xef\xb1\x4e\xe5\x15\x59\xe8\xdc\x2c\x64\xa4\x19\xb2\xb8\x65\x68\xe1\x86\x67\xb3\x15\x6b\x6f\x4f\x4f\x2f\xbc\x26\x7f\x56\xbe\x67\x50\xc3\x7a\xdb\xfb\xfe\xfd\x67\x8a\x9e\x88\x8b\x6b\x9d\xbe\x40\x13\x94\x47\x65\xe2\x66\xa7\xb5\xf5\xd7\x25\xe1\x08\xb6\x44\x6d\x5c\xbc\xe8\x8e\x8d\x63\xdb\xa9\xa3\x7a\xc8\xfc\x9f\x03\x3a\xaa\x16\x84\xf7\xe0\x59\x3e\x74\x46\xf6\x32\xca\x2d\x96\xe5\xc8\x0f\x18\x07\x96\xa8\x8a\x59\x53\x66\x41\xdd\x39\xb0\x48\xd1\x97\xa2\x2d\x64\x73\x3a\xfb\x80\xf1\xcd\xb7\x92\x29\x50\x15\x70\x46\x51\xcf\x38\x6d\xa3\x0e\x94\x53\x4b\x71\x72\x46\x9d\x1a\x6c\xbd\x16\x32\x9f\x2b\x14\xe7\x3e\xae\x99\xe7\xf9\x01\x1c\x6a\xc1\x6f\xc8\xdd\x78\x44\x59\xea\xd7\x08\xae\xc0\x06\xe1\x4b\x0a\x3c\xd2\xac\x61\xe4\x89\x89\xfb\x15\x2f\x25\x8f\x93\x26\x21\xeb\xd8\x13\x1f\x50\xb7\xf9\xcb\x96\x2d\xbf\x54\x86\x2d\xd5\xd5\xf0\x7d\x02\xfb\x0b\xca\xd9\x42\x7a\xda\x5c\x3c\x4a\xfd\xeb\xb6\x55\x0c\xbd\xe4\x29\x40\xca\x1b\x7b\x24\x1b\x91\x3c\xbf\x65\xd6\x40\x6c\xd6\x4c\x98\xae\x03\xb9\xfe\x07\xb3\x37\xa8\x46\x1d\xea\xe3\xf5\x21\xb2\x13\x50\xd5\x77\xbb\x74\x67\x3c\x4e\x13\x4b\xcc\x46\x4b\x03\xc6\xeb\xbb\xe4\x54\x94\x17\xdc\xc9\xbe\x3a\xff\xc7\x46\xfa\xc6\x34\xc0\x5e\x0b\x50\x7b\xd3\x5f\xe2\x3b\x33\xc9\x70\x97\x81\x77\xd3\xe0\x91\x99\xa5\x8e\x10\xbe\x4f\x26\x2b\xde\x19\xa3\x15\xea\x24\x6d\x37\xcb\x8e\x3e\xff\x86\xe0\xd4\x63\x47\x39\x48\x8f\x6e\x10\x90\xe4\x54\x50\x09\x4e\xcc\xcf\x67\xf1\xa7\x52\x41\x66\x68\x07\xd0\xfb\x4f\x7f\x52\x53\x37\xe1\x38\x87\xd4\x5d\x36\xbf\xff\x7e\x6d\x38\x80\xe3\x40\xef\x4a\x93\x8e\xe8\x57\xca\x88\x19\xd4\x7f\x8b\x08\xa6\x65\xf1\x1d\xff\xf6\xfd\xba\xdd\x5f\xd0\x20\x48\x71\xf8\xc8\x7f\x49\x9c\x14\xbc\x1e\x99\x30\x8f\x88\xee\x79\x98\xff\x84\x2b\x86\xc4\x15\xcb\x11\x4d\x35\xd2\x46\x6e\x1d\x09\x3f\x88\xf8\x33\xee\x7e\x4a\xf7\xcb\x03\xed\x20\x31\x64\x88\x6e\xd9\xaf\x1b\xcf\x87\x16\xc8\xaa\x11\x93\xcf\xf9\x87\x8d\xe4\x27\xae\x0f\xb9\xd5\xc4\xec\xfe\x39\xcd\x43\x1f\xdf\x18\xa6\x38\xea\x42\xfe\x88\xc6\x32\xc6\x76\x02\x3e\x1b\xf3\x96\x26\xad\x81\x7d\x3e\xd3\x7f\x46\x99\x5a\x5b\xc8\xb2\xe0\xf6\x57\x0d\x85\x1e\x48\x7c\x47\x84\xac\x1f\xdf\x37\x54\x94\xa7\x4e\x19\x31\xb0\x23\x8e\x5a\x33\x84\x7e\x2c\xb6\x61\x66\x37\x90\x7b\x64\xa5\xa2\x21\x40\xcd\x3a\x68\x08\xfc\x74\xbc\x06\x1d\x61\xb8\x99\x3c\xcd\xe8\x89\x57\xf8\x69\x29\xfa\xd4\x26\x29\x5d\x7b\xee\x31\x1d\x37\x49\x7d\x6c\x86\x50\x79\x73\x7a\xe3\x6b\x1b\xe5\x97\xaa\xa0\x06\x65\xa8\x0c\x8f\x6a\xea\x0d\xda\x42\x44\xc8\x7a\x65\x91\x38\xb9\xf1\x19\x7d\xff\xe4\xd8\xec\x50\xdd\x70\x38\xea\x1a\xbe\xfc\xde\x65\xd9\x64\x38\x65\xaa\x50\xc8\x3c\x3a\x67\xa4\x14\x71\xd0\xc3\xfe\x40\x6e\xf9\x1b\x0a\x60\xb9\xa6\x7a\x14\x9c\xfb\x86\xb6\x74\x27\xbe\xd4\x1c\x2d\x7c\xf2\x1e\xf9\x0c\x84\x15\x5c\xb1\x14\x95\xde\x11\xb7\xdb\x46\xdc\x69\x29\xff\xcb\x49\x72\x94\xd9\x87\xea\x88\x05\xa8\x6d\xd6\xf5\x71\xcd\x08\xb0\x41\x03\x5c\xac\x72\xf0\x31\xcf\xaa\x3b\x14\xeb\xc1\x80\x37\x96\xe7\x07\xda\xe0\x87\xcf\x49\xc5\x58\xe8\xa9\x8d\xca\xa0\x29\x74\x01\xe1\x79\x5b\xbf\xe6\x9e\x93\x8c\xc1\xb2\x3b\xb7\x6f\xdd\x9f\xae\x37\xb0\xdd\xae\x3e\xfd\xb2\x86\x0d\x02\x83\xb1\x04\xef\xb8\x6c\xab\xea\xad\x07\x66\x6f\xd0\x11\xed\x38\x5d\x04\x1c\xba\x5e\xa9\x2d\x3f\xd6\xa7\x18\x0f\x87\xcc\x0d\x8a\x94\x5b\xf1\x0d\x39\xc8\x5f\xe6\x19\x33\x93\x31\x79\xe1\xb2\x39\x92\xc7\x6c\xab\x80\xee\xef\xdc\x3d\xaa\x3d\x7f\x71\xda\x0c\x9c\xde\xea\x66\x65\x6d\x5a\x43\x2e\x6c\xeb\x73\x77\x3e\x3b\x82\xb7\x02\xc4\x35\x41\xc2\x55\xc5\x89\xdc\xf5\xae\x86\xd4\xa1\x2e\x4e\xb8\x82\xaf\x8f\x94\xa0\x6d\x0f\xa3\xf6\x91\x85\x71\xf8\xe8\x20\xf1\x1a\x42\x83\x78\x59\x43\x11\xbf\xa3\x99\xcd\x75\x6e\x7e\x41\xb5\x55\x61\xc9\xaa\xa0\x70\xc3\x5e\x15\x0e\xc4\xc5\x85\xe3\x90\xf5\xd3\xa7\x34\xfa\x89\x19\x90\x06\x11\x0a\x87\x03\xc6\x93\xe3\xb3\xb5\x0f\x38\xf0\x41\xa2\xfb\xb0\xd8\x8c\x72\xed\xde\xf8\x7b\x14\xde\x19\xa2\xf4\xb3\xc0\xd7\xc9\xef\x79\x55\xe1\xdc\xe3\xb8\x45\x83\x04\x70\x70\xa4\xc6\x2d\x70\x30\x23\x41\xa2\x39\x54\xb8\x78\x17\x4f\x1b\x0b\x6d\xca\x48\x82\x78\x1e\xc8\xff\x76\x7c\x87\x32\x78\xa1\xc9\x16\xea\x66\xef\x9c\xac\x56\x90\xc3\xc7\xec\xd1\xa6\x21\x4a\x57\x87\xd6\x03\x7e\x49\xe9\xa4\x02\x8c\x9c\x04\xd6\x6a\x4c\x7a\x41\x32\x52\x78\x9c\x5b\xbb\x71\xb4\xf2\x9f\xc6\x97\xde\x56\x66\xad\x54\xfc\xaf\x19\x6e\x80\x2b\x24\xe0\x0b\x8c\xdb\x14\x60\x91\xef\x61\x6c\xd6\xe2\x07\x01\x41\x7e\x9a\x06\xfe\x2d\x16\x13\x2d\xae\xc7\xd7\x0a\xd4\x54\x13\xbb\x41\x8b\xf8\x20\x94\xda\x58\xa1\xdb\x36\x63\xb3\x9e\x28\xde\xe7\xff\x78\xf1\x88\xa4\x90\xc9\x1e\x9a\x62\x29\x7a\xff\xc9\xec\x6f\xda\x18\x55\x43\x2c\xa6\x6e\x85\x35\xca\x56\xc9\xc7\x26\x75\xad\x1a\xf7\xc1\xf9\x91\xc5\x0f\xdb\x8c\xe2\xb4\xf8\xa9\x9e\xbd\x4b\x86\xc7\xb8\x2b\x0d\x89\xb0\x17\xfb\xd9\x1a\xf9\xe5\x83\x26\xe5\x9e\x7c\x5c\x82\xfb\x71\x4d\x50\x3f\x74\x28\x0f\x3b\xd1\xc1\xd7\x15\x8d\x60\xe4\x5a\x84\x23\xb1\xa2\x8b\x27\x8b\x5c\x8b\x2b\x0c\x85\xf0\xf8\x5e\x58\xaf\xa4\x73\x14\x10\x9f\xcf\xa1\x21\x5d\xcd\x5a\xa8\x13\x06\x2b\x15\x1c\xa4\x92\x43\x57\x2e\x96\x4c\x70\x93\xc5\x3d\xe0\xe4\xb4\x17\x0d\xd5\x8d\x7f\x61\x55\x37\xef\x28\x03\x16\x72\x70\xd5\xcf\x2a\x8a\xdf\x70\x62\xaf\x5b\x1a\xc8\x5d\xf5\x1e\x4f\xcd\xd7\x78\x18\x25\x9c\xc2\x19\xe3\xf5\x1b\xec\xfa\xa9\xd2\x68\xee\xd6\xc7\x84\x21\x99\xe7\x21\x86\x02\xde\xb0\xce\xd7\x08\xaf\x36\x82\x5d\x53\x22\xc9\x7b\x62\x92\x70\x67\x25\xcc\x0f\xf8\xf3\x18\x28\x7c\x70\x5f\x47\x7a\xb6\x03\x12\x84\xfc\xc4\xe6\x6f\x5e\x70\xae\xde\xfc\x05\xbc\x8c\x78\xf2\xa8\xea\x5a\x1d\x60\xd7\x27\x15\x81\x28\x36\x3e\xe5\x6a\x02\x74\xb8\x46\x5c\x2e\xc9\x5d\x38\x57\xd8\xb0\xfb\xa4\x0a\x03\x9a\x25\x73\x26\x69\xdf\xcf\xf7\x88\x8b\x7c\x1f\x9f\x6a\x9d\x98\xff\x81\x86\x0c\x07\x27\xd4\x32\x8e\x93\x3e\x1f\xac\x5d\xb5\x43\x2d\x32\x1a\x98\x71\xf4\xd3\x53\x43\xf5\x7b\x12\x60\xc5\xa1\xed\x47\xfb\x15\x0c\x35\x62\x5c\xad\xa9\x57\xf3\x31\x43\x7e\x3d\xe9\xad\xed\x74\x5c\x3a\x75\x2a\xc8\xe5\x7e\xfe\x5d\x19\x5f\x9b\x35\x02\xcf\x3f\x7b\xe5\x1b\x9f\xd1\xf6\x25\x88\x11\x3f\x01\x26\x46\xf3\xe6\x75\x4a\xbc\xb1\x8a\xee\x2e\x4d\x50\x76\x0f\x88\x08\x2f\xca\xee\x82\xe8\x4c\x19\xf1\xbc\x84\xaf\xb7\xb1\xc2\x3b\xd3\x8f\xb8\xb4\x69\x63\xab\x0a\x72\x45\xf1\xb3\xda\xaa\x91\x9f\xfc\x30\xfe\xa5\xd4\x03\xf6\xfd\x3b\x04\x63\x86\x05\x00\x18\x8c\xfe\x7b\xe8\x20\xf1\x45\xe2\xba\x67\xcc\x22\x45\xa4\xdf\x11\x0e\xd8\x10\x9e\x8f\x1d\x93\x18\xf0\xde\x99\x71\x87\xa4\xe9\x2d\x00\xc0\x24\x99\x19\x0f\xe4\xfe\xb2\x4a\x5a\x64\xc0\x3a\xbf\x7b\x62\xea\xd3\x31\x90\xfb\x5d\x8f\xb6\x7d\x67\x18\x25\x6e\x33\x8b\x5c\x79\x7b\x93\x6c\xa4\xd1\xd5\x07\x29\xc2\x84\xc0\x93\x17\x8d\xf5\x5b\xda\x14\x05\x29\xce\xcb\xf9\x4f\xed\x55\x41\x0f\x00\xce\x83\x52\xfe\xcb\x9b\x54\x25\x0b\x53\xc0\x5a\x72\xd6\x0d\xd2\x35\xa6\xdc\xde\x11\xbf\xa1\xcf\x2b\x50\x60\xd6\x04\xb6\xe0\xaf\xbb\x4f\x19\x28\x3d\xca\xcd\x4b\x4f\xa6\x80\x59\x46\x05\x05\x2a\xfa\x64\x45\xdb\xf9\xc3\x82\x89\xf3\xfb\x21\x57\xfd\x46\x61\xeb\xd2\x4a\x45\xe8\xb0\xec\xf3\xda\x25\x90\x84\x60\x38\x6c\x00\xb7\x3c\x92\x1e\xb5\x32\x52\xa8\x4b\x85\xbe\x85\x43\x95\x5c\xe6\xbb\x80\x6f\xdf\xf6\xac\xbc\xaf\x75\xca\x70\xe0\xd7\x49\xb1\x14\xcd\xb7\x3b\x55\x49\x52\x79\x5e\xff\x3a\x48\x90\x1d\x31\xc3\x8a\x14\xaa\xd1\x7f\x24\xfb\xfd\x67\x80\xd2\x34\xf7\xa8\x8e\x3e\xf3\xa2\xfc\xcb\xc8\xa2\x1e\x5f\x11\x9e\xde\x06\x9d\x74\x5d\xcc\xc4\x4a\x72\xdb\x65\x32\xfe\x84\x2e\x32\x4d\xec\x05\xc9\x79\xbf\xfe\x7e\x8d\x1e\x42\x1c\x0c\xff\x98\x50\xdd\xff\xac\x6d\x1f\x9b\xc8\x0d\x12\x12\xe8\x80\xe1\x29\x76\x07\x01\xf6\x83\x24\xb0\x45\x1b\x34\xa9\x2a\x67\x22\xd2\xb4\x6d\xbe\xd3\xc9\x4d\x7a\xfc\x26\xe4\xfb\xcb\xe4\x79\x47\x6e\x40\x2c\x0c\x6f\x0f\x72\x61\x6c\x70\xdd\x0a\x65\x13\xcb\x1c\xc4\xef\xf7\x59\x9b\x64\xca\xac\x20\x3b\x80\x9d\x0b\x3c\xd7\xd7\x4e\xd3\x43\x18\xab\x72\xce\x0e\xa4\x32\xa4\x69\x2f\x21\x17\x24\x77\x39\x8c\xf4\xc4\x65\xd9\x93\xd9\x3b\x7b\xf2\xf4\xe9\x3d\xfc\x3c\x1c\x5b\x98\x1e\xea\x76\x6f\xd4\xe8\xfe\x85\x4a\x45\x8e\xb9\x05\xce\xa5\x3d\x67\x25\x0f\x7f\x66\x9c\xbf\x0b\xe7\x75\xab\xc4\x51\x13\x99\x35\xae\x4f\x7e\xf5\x62\xc5\x34\xa9\x59\x6f\x22\x66\xb9\xa2\x56\x44\xf3\xf8\x50\x97\xeb\x71\x52\x55\xdc\x6d\x6f\x45\xce\x09\xca\x98\xb9\x35\x6e\x3c\x9c\x1c\xd3\x39\x1a\x59\xcc\x47\x41\xc8\x2c\x94\x04\xf3\xe8\xe7\x6f\x74\x88\x86\x03\x3b\x3e\xb6\x1b\xc2\xed\xe7\x0b\x0f\x5e\xa0\xc8\x97\xb8\xed\x21\xc4\xf8\xf1\xf1\x91\x12\xfe\xdd\xae\xf9\xbd\xe7\xf6\x2c\xcf\xbb\x42\x59\x99\xd3\x14\xda\x64\x87\xd7\x0e\xd3\x0a\x90\xf8\xae\x5d\xbd\x3f\xbb\x8a\x28\x33\xe4\x5a\x4d\x44\xdc\x4c\x07\x19\x0d\x3f\x8d\x5f\x3e\xaa\x54\x08\x73\xd2\xa1\xd0\x38\xc5\x99\x18\x55\x99\xaa\x25\x97\xfb\xb7\x6d\x32\x0e\x4c\xed\x29\x0a\x86\xc6\xb7\xd7\x69\xc8\x9b\x30\x15\xbb\x2e\x14\x77\x0e\x55\xfa\x51\xca\x45\x35\x4f\x5b\x37\x38\x09\xb0\x1c\xa0\x1e\xdd\x35\x4f\xdf\xd2\xc3\x91\x12\x41\xcb\xd3\xe8\xc4\xc4\xf5\x3d\xc2\x70\x2a\x41\xba\xe9\x76\x3e\x0b\x5a\x1e\xb4\x75\x1b\xb9\x4f\x8c\xd0\xa5\xcb\x5c\xd1\x7f\xe7\x6e\x1d\x94\x22\xdb\x2d\x22\xe6\x51\xf1\xf7\xb9\x69\x8f\x2c\xeb\x2a\xc4\xaf\x61\xe6\x60\xa8\xc4\xbe\x39\xb7\xd3\x53\xd5\xc8\x70\x23\x3e\x30\xa5\xc8\xbc\x57\xd1\xa0\xc4\x55\x62\x8a\xad\xce\x80\x27\x6f\x65\x40\xe3\x7a\x3a\x40\x8c\xf0\x75\xd5\x11\xcd\xa0\x2e\xb1\x7b\xe4\x45\xcf\x05\x3b\x78\x86\x5d\x88\x19\x53\x7d\x3c\x8d\xce\x97\x13\x2b\x6d\x56\xe6\x70\xdd\xc2\xc2\x6e\x79\x55\x2e\xa9\xd6\x02\x87\x3b\x06\x1e\x3b\xa6\x59\x0f\xd0\xf8\xb6\x99\x21\x57\x43\x85\xaa\xeb\x9b\xf7\xab\x46\x56\xa2\x57\x18\x28\x6c\x3a\x9d\xff\xf5\x15\x24\x74\x88\x74\xe1\x8c\x06\x4e\x13\x50\x1f\x37\x2e\x86\x4a\xd1\x33\x87\x44\x9b\x61\x87\xd5\x2a\x6f\x53\x3e\x70\xbf\x5e\x2d\xdb\xa9\xb8\xdf\xe8\x0e\x89\x15\x45\x71\xdd\xd3\xf5\x54\x1a\xdb\x5d\x4b\xbe\x98\xd1\x87\x5f\xc9\x02\x76\xe2\xa0\x6a\xdb\xc4\x44\xa7\xd0\x3a\x28\x7c\xb4\xeb\x1c\x55\x49\xc2\xc1\x35\x2b\xce\x1b\xbb\xef\xd7\x4f\x14\x01\xaf\x0a\xce\xcf\xba\x43\x59\x21\x7a\xd8\x35\xc1\x26\x39\xb7\xfd\xa0\x5c\xf5\x5a\x0c\x35\x88\xc5\xd7\x5a\xd9\xb7\x77\x47\x5f\x67\x36\x6a\x3b\x14\x44\x62\x72\x5b\x1e\x6d\xab\x00\x18\xb5\x6d\x61\xe7\xf5\xbb\xa1\x6d\xde\x7d\x24\x08\x13\x9b\xa7\x56\x0f\x1f\x00\xe0\xf5\x9e\x4d\x05\x25\x26\xfa\xe7\xd5\x59\x70\x04\x65\x71\xd7\x6e\xea\x01\x25\x7a\x4f\x5b\x34\xb5\x00\x51\x6a\x57\xc4\xac\xe3\xce\x17\x32\xc2\x81\x55\x96\x9a\x62\x89\x55\xe2\xed\xf7\xaa\x2a\x2e\xf1\x89\x3e\x51\x50\xb0\x23\x84\x17\x61\xef\x3e\xd4\xa1\x94\x30\x56\x93\x6f\x63\x8d\xa3\xa7\xeb\xa2\x1c\x36\xe2\xe6\x49\xbc\x84\xfd\xf9\x9b\xf2\x6d\x42\xaa\x58\xc6\x4e\xa1\x3a\x8a\x82\x00\xc0\xb8\xbc\xb6\x7c\x73\xd1\x98\x36\x7d\xd6\x6c\x2b\x38\x60\x7c\xe2\x29\x99\x37\x41\x96\x14\x99\x35\x5e\x37\xed\xee\x1c\xac\xa0\x44\xa0\x69\x7f\x22\xd0\x5d\xcf\xe0\x9c\x8b\x96\x33\x1a\xaf\xed\x16\x02\x96\x94\xf8\xd1\x85\x0f\xca\x62\xe1\x43\xa2\x54\xda\x3b\x59\x63\xc1\xc6\xfd\x06\xf8\xca\xff\x65\x89\xbc\x28\x2e\xe2\xce\x90\x57\x03\xbd\xd0\xe7\x00\x36\x52\x9c\x9f\xf0\x0b\xda\x35\x09\x0b\xe6\xf3\x19\xbf\x0b\xc4\x38\xb3\x35\x7a\xfb\xb1\x54\x0b\x2a\x20\x4e\x66\x0a\xc3\xde\x93\x79\xa6\x0a\xe2\x46\x7a\x22\xe9\x1f\xa4\x4d\x5b\xc1\x8a\xa0\xc5\xaf\xb7\xf9\x3a\x5f\xe8\x4c\xe9\x05\xbf\x56\xe3\xca\xd3\x35\x5c\x23\x0e\x12\x02\xcd\x23\x73\xd3\x17\x77\xc6\x4c\x48\xe5\x1f\x7e\x51\xf5\x0f\x47\x8c\x54\x00\x1d\xb0\x62\x96\xdc\xf8\xd0\x4a\x85\x98\xa7\xb0\x40\xff\xc3\x38\x9d\xd2\x5a\x25\xc0\x5e\xe7\xe8\xf7\x1f\x4d\x48\xff\xd6\xac\x1e\xc0\x87\x9f\xb7\x4c\x33\xd6\x91\x9a\x19\x02\x32\xfb\x83\x47\xdb\x1c\x9e\x02\xcc\x83\x9c\x98\x65\x9f\xf3\xaa\x62\x88\x51\x4e\x84\x99\x00\x25\x75\xbc\x53\x23\x80\x00\x92\x36\xda\xfe\xb2\x6c\xb2\x6d\x75\xec\x79\xc9\x1c\x7e\x6c\xaf\x04\x94\x24\x12\x6c\xa8\x8d\x8c\xff\x14\xda\xc4\xba\x4b\x9b\xf1\x01\xfa\xc5\x65\x13\xf5\xbc\xc5\x5b\xde\x76\x7b\xa9\xfc\x7f\x1c\x56\x19\x05\x8c\x49\x31\x8e\xc2\x5d\xf7\x4d\xd0\xba\x2a\xc7\x21\xc1\x29\x44\x0e\xa2\xf2\xe5\x4a\xb6\x35\x11\x88\xa3\x7c\x67\x5b\x5a\x75\x35\x49\x9b\x00\x71\x7e\xc8\x78\x65\x08\x0d\xf8\x21\xfe\x22\x16\xc2\x8e\xec\x14\xda\x01\xf1\xb6\xb8\xc9\x50\x61\xf9\xa3\xee\x3c\x95\xde\x00\x3f\x36\x5f\x7c\x57\x12\x0d\x2f\xd1\x2f\x75\xde\x9d\x0a\x88\x83\x61\x04\x72\x9f\xd1\xab\x0a\x9a\x89\x82\x63\x6b\xb1\x14\x7d\x91\xbf\x73\xc5\x25\x61\x5c\xc9\x28\x8d\x84\x71\x5a\xbf\xe2\x7f\x42\x6c\xec\x72\xec\x65\xfe\xe6\x75\x4a\x80\x08\x1c\xea\x7b\x35\x21\xc5\xfd\x8f\x0f\x6b\x00\x08\x6c\x22\x0b\xfb\x42\x87\xf5\xb2\xc7\x15\x1e\x63\x18\x24\x24\xe7\x81\xc2\x96\xb9\xba\x0d\x22\x12\xd8\xe2\xf9\x6f\x8c\x51\x16\x89\x66\x1d\x57\xf8\x74\x4d\xb9\x49\x85\xa1\x7b\x78\x9b\xbb\x70\xc9\xf5\xf1\x35\xdc\xb0\x4e\xf1\xfc\x9c\x05\x72\xd9\x6f\xaa\x66\x53\xdc\x99\x10\x22\xf3\x14\x4d\xa4\xa6\x4e\xcc\x3a\x7f\x4f\x7e\xbf\x53\xaa\xf2\x82\x70\x5f\x6e\xe5\xed\xaa\xcc\x9d\x4b\x4c\x2e\x48\xf2\xef\x6b\xd2\x2e\x8c\x38\xca\x41\xce\xdf\xfa\x30\xef\xc6\xa1\x7a\xe7\xc3\xbc\xfe\x73\xd5\x44\xd1\x20\xae\xc0\xf4\xe5\xbf\x3f\x4e\xb3\xed\xb2\x1c\xe2\x12\x8e\xc4\xa7\x6e\x62\x9e\x5f\xde\x2e\x44\x3c\x1a\x98\xa1\xaa\xf0\x26\xdb\xa0\xbd\xee\xe0\xf6\x90\xba\x46\xe5\x3b\x0e\x0f\x4d\x82\xa3\x9b\x4c\x9b\x8c\x1f\xbd\xae\xf8\x15\xc4\x45\x6d\xd4\xbc\x47\x8d\x8f\x76\xb2\x1d\x8c\x56\x6d\x12\x8a\xd3\x0c\x23\x8b\x1b\x4f\xef\x2a\xc8\x36\x03\xb5\x03\x7c\x3f\xf3\xc2\x18\x2d\xfe\xb8\xb8\x42\x4c\x82\x58\xea\xab\x98\xcf\x3d\x92\x16\xe8\x98\xb5\xd9\x13\x1b\x7f\xad\x89\xfa\x88\x62\x27\xe3\xb2\x7e\xcf\x41\x4d\x24\x36\xf1\x31\x8c\x56\xde\xa3\xb1\x62\x6a\xd4\xa4\x36\xdf\x7d\x41\xe6\xba\x67\x43\xb6\xe8\x77\x50\x9f\x80\xa9\xea\x93\xa9\x1b\x57\xaa\x87\xc5\x77\x70\x40\x40\x12\xd6\xf8\xd3\xe0\xec\xdf\xa8\x53\x9f\x36\xa8\x80\xee\xc7\xa7\x69\xe1\x09\x89\xa1\xec\xe3\x48\x39\x63\x5b\x59\x59\x77\x09\x42\x4c\xe1\xa2\xdb\x65\x63\xd4\x42\x6e\xdd\x2f\x22\x30\xbc\x73\xc0\x8e\xad\x70\xed\x36\x0d\xd8\x42\x80\x96\x91\x40\x5f\xff\xf0\xb2\x58\x35\xdb\x24\x9d\x48\xff\xa4\x8b\x67\x1b\x9f\xda\x80\xb1\x5f\xf9\x8c\xb4\xcb\x0e\x13\xbb\x96\xe9\x67\xf1\xf7\x64\xd1\xd5\xab\x60\x7e\x30\x4e\x56\x76\x76\x8b\xba\x2e\xe2\xe4\xab\xd5\x2b\x78\x47\xb7\x02\x99\x35\x47\xa5\xfd\x45\x5d\x0a\x77\xa2\xca\x35\xaf\xc6\xcc\x92\x77\xab\x49\x9c\xb2\x8d\x2d\x1e\xf8\xcf\x1e\xf1\xff\x48\x2b\x50\x93\x3d\xb6\x47\xfe\xfd\x0a\x65\xd8\xa1\x9c\xe5\x7a\xf8\x05\x59\xb6\xaa\x3a\x06\xc6\xc8\x39\x69\xee\x22\xe5\x10\xd0\x75\x2f\x9f\x97\x7c\x7e\x5f\x9f\x1e\x02\x67\x58\xf2\x71\x4c\x99\x3d\x7d\x5a\xb1\x14\x2d\x5a\xa2\x2d\x8f\x68\x68\xa7\xc2\x06\xdf\xd2\x16\x6e\x15\xca\xcc\x14\x4c\x9e\x9b\x37\x5a\xab\x64\x30\x6b\x10\x13\xca\xcb\xa8\xf6\xdc\x48\x89\x78\x69\x97\x95\x7a\x6c\x77\xf6\x95\xa8\x84\xb6\x5d\xac\xc0\x64\x4f\x7c\x7c\x34\xe7\x90\x8a\x6f\xac\x54\x90\x4d\xa1\xf9\x58\xfb\xae\x00\x94\x97\x43\xd5\xb4\xe8\x04\x7f\x41\xae\x76\x45\x05\x9d\xdc\xa1\x0f\x3e\x93\xbd\xe9\xc4\xf1\x70\xfc\x14\xb1\x2b\x76\x34\xf9\xaf\x0a\x3e\x70\x15\xf9\xd4\x26\x20\x25\xf9\xf8\x22\x1e\xff\xe7\x83\x42\x5d\x4b\xf9\x3b\xb3\x46\x9d\xaf\x7f\x1c\x65\x01\x72\x03\x11\x90\x56\xf6\xf1\x0f\xbb\x2a\xe9\xfd\x4b\xd1\x84\xf5\x3a\xbf\xc5\x0a\xe3\xa2\x2f\x11\x9d\xcd\xfd\xe5\xa0\x86\x91\x16\x3b\xa4\x44\x63\xfe\x9c\xde\xf4\x5e\x86\x00\xe0\xc9\xc6\x86\x73\xf6\xf1\xa6\xd2\x0b\x19\xa9\x08\xc5\x8f\xf8\xd7\xe6\x28\x4d\x25\x17\x2b\x14\xb1\xee\xae\x4d\x5a\x91\xb6\x9e\xd8\xd8\xe7\xc3\xa7\xc2\xec\x27\xce\x96\x23\xb4\xf8\x39\x94\x2e\xd3\xb9\x9c\xa1\x2f\x76\x58\x8b\x1e\xff\x3b\x1d\x25\x8c\xc3\x17\x7a\x69\x48\xab\xa1\x36\xfd\x97\x9c\xf9\x02\x6f\xed\xa6\x4e\xe9\x9e\x31\x0b\x10\x0a\x33\x94\x7d\x13\x82\x5a\xf4\xbf\x1e\x94\xf8\x2d\xa4\x4f\xcc\xa3\x2f\x1c\x52\x72\x2e\x07\x8f\x8b\xe4\xd1\x31\x59\x8b\x7d\x60\x62\x8a\x59\xda\xbf\x2f\x18\xad\xd2\x3a\x5d\xe2\xfa\x71\xc9\x95\x18\x30\x8f\x56\x87\x64\x24\xc0\x76\x19\x71\xe1\xa4\xe1\x96\xe6\xb4\xe5\x80\xda\x23\x1c\x26\x78\x81\x7f\xb1\x22\x1b\xa7\x1c\xda\x00\x3c\xbb\x68\x02\x2f\x39\x7a\x9e\x5e\x36\xb2\x14\x0b\x6c\x9c\x29\xa8\xcd\x55\x46\x70\x83\x86\xf1\xcd\xbf\x43\x63\xf6\xf6\xf6\x4a\x66\x2f\xec\x52\xef\x18\xa9\x78\xcf\x12\x87\x07\x9a\x5d\x2b\x33\x32\x6b\x00\x02\xe0\xc5\xfd\x93\x6f\xa8\x6e\xe3\x1e\x81\x55\x09\x4c\x0e\xa6\x8d\x55\x65\xc2\x4c\xc2\xfd\xea\xe2\xcb\x7a\x65\xa3\xf6\xa5\x5d\x93\x86\x90\x6d\xc5\xba\xa8\xf5\x98\x0e\xbf\xec\xa3\x2d\x2e\xe4\xc1\x15\x8e\x1e\xd1\xd0\x4a\x21\x73\x13\xd2\xee\x88\x07\x86\x26\x97\xd9\x87\x4d\xa1\x74\xf0\xd1\xca\x88\x4c\x51\x84\xfc\x20\x15\xcf\xca\x9d\xfd\xa2\xac\xc0\xc6\xc9\x49\xc1\x1d\xfb\xd3\xa2\xc3\xb7\x25\x4c\x38\xda\xf8\xa4\x16\x74\xab\x0c\xd8\xf6\x72\xbb\xfe\x6f\x3b\xdb\x0c\x13\x79\xb9\x2c\xcb\xa9\x65\x47\x34\x48\x73\x58\xad\x62\x3f\x59\x98\x45\x53\x36\xeb\x74\x55\xca\x31\xae\x00\x00\xdf\xda\xf6\x8f\x56\x68\x8a\x26\xbc\xb8\x35\x8b\x91\x20\x81\x7f\x29\x88\xa2\x9e\xa6\x91\x3a\x2b\xc4\xad\x62\x16\x10\x4f\x50\x76\xbf\xa5\x0d\x99\xca\x18\x25\xfe\x5b\x83\x1f\x4f\xa4\x3a\x91\x4b\x1c\x50\xb5\x1f\xc8\x7d\xf1\x1e\xa8\xd3\xe3\xff\x74\xc1\xca\x04\x8f\x7a\xcb\x0e\xa9\xfd\x87\xdb\x14\x9c\x8c\x57\x8f\xa4\xa1\x20\x74\x6f\x8c\x2f\x77\xea\x71\x1d\x5f\x6a\x62\x22\xb1\xa0\x83\x1b\x72\x38\x58\x15\xd8\xa1\xa8\xa5\xb0\x00\xc4\x7c\x02\x86\x13\x83\x44\x19\x15\x32\x8c\xf8\x72\xaf\x7c\x5f\xf6\x2e\x87\xae\x8f\xb1\x63\xa7\x58\xd2\xf7\xdd\xcb\x33\xba\x05\x1f\x11\x6d\x16\x36\x40\xd8\x26\x60\x99\x28\x36\x74\x6b\x0a\x9a\xf0\x00\xae\xd2\x80\x88\xaa\x11\xfa\xd0\xdb\xc6\x76\x28\x1c\xf4\x1a\x86\x91\xda\x40\xe1\x53\x23\xd3\xaf\x5b\xc1\x8d\xf8\x0f\xfe\x70\x84\x86\xc1\x21\x96\x95\x22\xaa\x72\xd7\xdd\xa3\x60\x25\xb0\x1f\x14\x69\xa5\x38\x35\xfe\x35\xb6\xbc\x4b\x45\x7b\x05\x36\xd8\x73\xc6\xf7\x62\xfc\x5a\xe5\x57\x5a\xfd\x08\xba\xf3\x62\x29\x7a\xfd\x41\xed\x0d\x12\x2a\x25\x89\xe5\xcc\x95\x67\x08\x9a\xdf\x44\x8e\xcb\x33\xa6\x0e\x6a\x03\x2e\x0b\xb5\x47\x38\x1d\x67\xef\x92\x63\x40\xca\xaa\xc8\x15\x80\xde\x62\x29\xba\xe2\x31\x9d\x51\xd2\xd0\x64\xec\xa3\x8b\xde\xd5\x40\x0b\xc8\x13\x0f\x18\xcf\x4d\x77\x39\x6e\x77\x9f\xa8\xa1\x4c\xad\xc1\x89\x9f\xbc\x97\xae\x1f\xbd\x7b\x74\x7c\x70\x20\x50\x69\x10\x5c\x8e\xdd\x9c\x7d\x5a\x92\xb8\x2f\x58\x51\x87\x5f\xd4\x00\x16\xb6\x1d\xb7\xef\x62\x27\x9a\x5f\xbb\x47\x86\x0a\x46\x49\x3f\x48\xc5\x88\xef\xb1\xf5\x8c\x36\x93\xef\x20\x14\x67\x60\xf3\xba\x53\x29\xf3\x24\x33\xe4\x4f\xdf\x24\x3f\x35\x75\x53\x4c\x20\x1f\xc3\x9e\xe0\xef\xd7\x15\x8e\x23\x0d\x0e\x7f\xb0\x4b\x81\x03\xf1\x46\xc1\x3f\xa2\xa8\xef\x95\x29\x4b\xf2\xf2\xd3\x96\x6e\x9b\x16\x07\x0b\xde\xc0\xde\xb5\x47\xfe\x4e\x83\x98\x01\x71\x78\xb3\x7f\x41\x4d\xee\xa4\xa8\xca\xa2\xdc\xfe\x44\x76\xf2\xee\x75\xfb\xdd\xed\xf3\xba\x81\x42\x58\xee\x52\x87\x0e\x6e\xda\xec\x47\xcb\x56\x0d\x53\xf1\x5b\x2d\xbe\x25\x1c\x37\x59\xc5\xc1\xc4\x6d\x19\x1f\x30\xcf\xee\x3d\x5b\xbd\x90\x52\x74\xf6\xd6\xb4\xac\xee\x0f\x13\xc0\x63\x6e\xe1\xee\x73\xd2\x76\x46\xa1\xb8\xcf\xae\x69\x8a\xbd\x36\x72\x52\xb3\xdf\x97\xde\x13\x18\x06\x82\x1c\x0a\xab\xfb\xfc\xeb\x8f\xeb\x23\x55\xdb\xc7\xdd\xc9\x90\x7e\x49\x79\xec\xdf\x6b\x11\x69\x02\xe2\xce\x7d\x74\x5a\xf6\x6e\xb3\xb0\x5c\xe6\x15\x4a\x74\x5b\x43\x99\x45\x13\xdb\x16\xfe\xe8\x67\xcc\x52\x04\x8f\x28\x83\x4f\x59\xfa\x74\xf6\x53\x5c\x1a\x98\x02\x5f\x9d\x7b\xf7\xf2\xec\x11\xb6\x40\x57\xa6\xcc\x71\x77\x30\xbb\xba\xcb\x4b\x6f\x5a\x37\x57\xb6\x5f\x5a\xc8\xce\x5e\x54\x1b\xb3\xd5\xda\x0e\xc8\xb3\x01\x7f\x98\xf0\xbd\x0a\xef\x5b\xae\x28\x63\x33\x9c\x8c\x4f\x8c\xcb\x14\xed\x6d\x86\x1b\x04\x37\x8b\xa5\xe8\x73\x4f\x6b\x14\x40\x14\xa0\x3a\xc9\xd0\x2c\x0f\x3c\x23\xbf\x6f\xef\x14\x8e\xfb\x7d\x7c\xbb\x5e\x22\x06\x71\x15\xc3\x45\x5f\xa7\x4c\xd2\xc3\x62\xb5\x0a\x8a\xbb\xf1\x71\x62\x9b\x75\x8e\x1b\x35\xeb\x1e\xb1\x85\x65\x4e\xa1\xe3\x9d\xf3\xb5\xb6\x94\x04\x66\x0d\x25\x93\xbf\xfc\xbf\xbc\xa1\x2b\xb2\x52\x9f\x84\x50\x2e\x48\x5d\xad\x1f\x9f\xe0\x58\xb1\x79\x76\x18\x57\x57\x35\xd5\x9c\xc0\x78\xf0\x01\xc5\xff\x09\xa3\xf8\x01\x46\x3f\x7e\x48\x29\x93\x4c\xbe\xa5\x34\xce\x58\x24\xf3\xc0\x8c\x19\x93\xa7\xf7\xf6\x16\xe3\x2b\x6c\xec\xcc\xf8\x75\xad\x2c\x5d\x2a\x41\xcd\xc5\x52\xf4\xbb\xbb\x39\x33\x6a\x01\xf2\x49\x99\xb4\x75\x36\x23\xef\x9b\xa4\xa5\x48\x2f\x2c\xdb\xc4\x44\xee\xa9\xf6\x69\xc6\xf7\x02\x45\x5d\x18\x55\x43\x98\xa0\xe4\x7c\x2f\x1b\xa4\x7d\xea\x40\xf5\xaa\x94\x2d\xf9\x25\xbb\x65\x8c\xef\x03\xb6\x9c\x9c\x18\x6e\xbd\x53\x7f\x08\x2c\xac\x56\xed\x24\x3d\x2c\x34\x64\x15\x88\xd7\x9b\xd8\xb6\x31\x87\xe9\xe4\x77\xbc\x2c\xcf\x65\x99\x30\x15\x19\xb7\x77\xb2\x82\x23\xa1\xa1\x60\xd7\xde\x3a\x4d\x1d\x0d\x14\xa9\x97\x9c\xc6\x6f\xf0\x57\xbd\xb8\x80\xb4\x63\xf0\xbf\x3a\x43\x2b\x89\xfc\x16\x08\x5b\x42\x49\x54\xd5\x1d\xb7\x30\xb2\xe2\xb6\x2c\xe9\x86\xae\x5d\x2c\x9f\x5a\x93\xb8\x75\x31\x2f\x33\x1e\xd2\xaa\x54\x1b\x9b\x01\x23\x26\x09\x84\x8f\xf6\x37\xef\x14\xb8\x12\xc4\x70\x95\x70\x60\x46\xfe\x57\x7d\x2a\x1b\x80\x22\x8b\xbb\xee\x66\x63\xe7\x78\x2d\x57\xc0\xcb\x90\xc8\x0b\xe4\x47\x33\x89\x14\x31\x61\xa1\xf0\x9f\x43\x95\xf2\x1b\x11\x17\x37\x71\xb9\xcc\xff\xde\xe0\x93\xca\xea\x28\xe0\xa2\x58\xf1\xd5\xbb\x6f\x0a\xea\x0a\xd4\x0a\x80\x6a\x14\x80\xa9\x15\xa5\xa5\x57\xa6\x1a\x7d\xcf\x28\x5e\x01\xa2\xb3\x28\x96\xa2\x6f\xac\x10\x9e\xa8\x57\xb4\x89\x39\xe5\x27\x2d\x4f\x8b\x9a\x7a\x0b\xe6\x20\x0b\x5e\xd5\xba\x76\x3b\xf4\x6b\x1c\x4b\x19\xbd\x7b\x40\xc1\x8c\x79\xb4\xae\x68\xd9\x19\x9f\x59\x98\x30\x46\x98\x97\x04\xab\xdc\x09\xce\x68\x2d\x2e\x21\x65\xcc\x82\x56\xdb\xf1\xde\xf5\x8c\xaa\xe3\x43\xfc\x00\x15\x4b\xd1\xc3\x93\xe4\x49\xb2\x70\x83\x70\xe9\x8b\xff\xb9\x78\xb8\xba\x62\xa1\xc4\x0d\xb8\x95\x65\x69\xc0\xf8\x97\xbd\xaa\xc0\x93\x25\x70\xf0\xf9\x43\xc7\x87\x89\x33\x06\x92\x0f\x22\xbf\x7e\x6d\x70\x26\xa1\x31\x30\x4c\x2f\x8c\xdb\x7d\xae\xd2\x5d\x2a\x55\xc2\x60\xcd\x69\x2a\x40\x49\xac\x32\x3e\x36\xf2\x54\x56\xff\xcc\x6e\x89\xc8\xbf\x7b\x50\x56\x58\xbf\xd9\x6c\x76\x8b\x21\x08\x88\xd4\xdb\x04\x28\xb4\xdd\x26\x75\x44\x33\xd0\xb8\x5d\x45\x95\xfb\x34\x79\xf1\x0a\xe3\x56\xcb\xfc\x8c\xba\xfb\x94\x9c\xf9\xa7\x43\xd9\x6a\xac\x85\xc5\xe0\x22\xf7\xed\xe3\xba\x45\x7a\xc2\x12\xb8\xb4\xaf\x2f\x69\xf6\xbf\xad\x35\x0a\x36\xb2\x5a\xbc\xd5\xcf\xef\xd8\xa3\x4f\x77\xf8\x9e\x8a\x8f\x49\x2f\xbd\x58\xeb\xda\xb0\xeb\x63\x21\x27\x35\x75\x46\xf6\x43\x7b\x7b\xba\x67\x0b\x63\x8f\xaf\x3e\x26\x71\x44\xb4\xd9\x56\x87\x8c\x3c\x2c\xc0\x78\x9c\x9d\x43\xfa\x39\x74\xfd\x5f\x0f\xe8\x9c\xdb\x54\xdb\x53\x80\x62\x06\xcf\xe2\xcf\x7a\xcd\x15\x57\xad\xb8\x72\x5e\x52\x67\x4c\xbc\x4f\x39\x18\x4e\xa2\x10\x91\x7b\x72\xac\xf0\x3e\xa7\x21\xcc\xf3\xcf\xbe\x58\xf1\xea\x0d\x5d\x58\x9e\x1a\xc3\xf6\x0a\xec\x22\xf2\xf8\x2a\xef\x7b\x3b\x86\x8a\xe4\x69\x93\x2a\x81\x06\x7c\xc0\x18\x3d\x54\x9e\xa6\x6a\x48\xf8\xbe\xda\x38\xef\x80\x36\xd4\x07\xaa\x94\x40\x69\x2c\xda\xa7\x33\x70\x42\x2b\x3e\xc9\x22\x80\xdd\xd5\x3f\x4c\xb4\x1e\x15\xcc\x9d\x1e\xe3\x9f\x5e\xf1\xbc\x0c\xa4\xf1\xdf\x49\x4c\x70\x72\x9f\x11\x8e\xc7\xbd\x53\xc6\xb5\x4b\x47\x88\xaf\xd0\x87\xf9\x1b\x91\xdb\xf6\xa6\x5c\x80\x30\xdc\x40\xbe\x8a\xd6\xcc\x7f\x05\x90\xf5\x5c\x29\x0a\x65\xf8\x2b\x5f\xbc\x4f\xf2\x72\xb0\xdb\x20\x8c\x82\x8f\x2c\x0c\x01\xa0\x00\x1d\xd1\x2d\x6f\x43\x2a\x67\x68\x34\x5f\xd4\x55\x67\x2a\x94\x59\xe9\x84\xb0\x50\x5e\x7c\x8e\x0a\xc9\x77\x05\x42\x26\xb7\x67\xaf\xee\xff\xe5\x10\x86\xad\x6e\x31\x44\x5b\x71\x52\x3e\xd5\x26\x65\x42\xec\x7a\xfc\x33\x9a\x70\x87\xeb\xa2\xa2\x83\x98\xae\x57\x64\xfc\x75\xb1\xb6\x31\x45\x2e\xd7\x0d\xde\xf8\x3c\xbf\x5d\x65\xc4\x25\xec\x8c\xb3\x1e\xe4\x4f\x1c\x37\x90\x1d\x22\x41\xa3\xf8\xf8\xc8\x09\x7a\x85\xe2\x5a\x78\xfd\xa5\x40\x3e\xce\xde\xff\xf3\x3d\xc5\x06\xa0\x96\xca\x88\x1f\x78\x4e\xd9\x07\xb4\x83\x71\x3a\x35\xdc\x1e\xcc\x4b\x52\x3b\x94\x37\x14\x47\xc9\x40\x18\xfb\x14\xea\xa7\x69\xdc\x37\x4a\x61\xfa\xad\x0c\x3a\xcf\x7c\xba\x4b\x2d\x5b\x26\x4e\xbc\x14\xb2\x46\xfc\xdb\x67\x68\x70\x33\xc4\x18\x72\xab\x98\xaf\x91\xf3\x2f\xce\x55\x82\x7e\xdc\x8b\x28\x85\x96\xb7\x7b\xb8\xb2\x33\x43\xae\x5f\xa1\xcc\x11\x19\xf7\xff\xcc\x91\x67\x8d\xd7\x38\xf1\xf3\x47\x84\x83\x7b\x37\x2d\xd3\xeb\x3c\x04\x2c\xaf\xa4\xf1\x2b\xdf\x70\x9e\xda\x90\x54\x18\x75\x83\x94\x81\x95\x7b\xf9\x49\x75\x2f\x14\xba\x30\x2e\xed\x2e\x96\xa2\x4b\x76\x77\x4a\xa7\x22\xd5\xdb\xe8\xba\x49\x52\x14\x60\x42\x08\xa8\xcb\xd3\x4e\xd7\x2c\xb2\x40\xb7\x32\xbd\xd1\x77\xec\xd2\x69\xa6\xf1\x5f\x69\xa4\x52\xc7\xfb\x4f\x66\x37\x50\x1e\x0d\xed\x36\x37\xb7\x02\xa9\xb4\x59\x3e\xc8\x6f\x99\x33\x1b\xb2\x14\xc0\xbe\xa7\xda\xa2\x9e\xae\xc9\x7d\x39\xd8\x22\x48\x34\xbd\x93\x56\xa4\xed\x5e\x8d\xaa\xde\xfc\xb5\x83\x7c\xd6\xbb\x14\xf9\x19\x03\xa7\x31\x8f\x64\x40\x4f\x75\xa8\xcd\x82\x39\xd9\xf7\x80\x50\x53\x8c\x2e\xfa\x75\x59\x09\x86\xad\xf8\xba\x91\x1b\x24\x3a\xd4\xd1\x09\x55\x04\x5d\xd0\xac\x80\xea\xa4\x79\x04\x4b\xf1\xf8\xc4\xa3\x27\x3f\x7c\x9f\x26\x5c\x8e\x61\xb1\x7a\x69\x03\x00\x10\x77\x6a\xc7\xbf\x16\xba\x55\xc4\x44\x05\xf2\x99\x91\x12\xc1\xa9\x4a\xe9\x1a\xb7\x5c\x7e\x4e\xf2\x0f\x55\x05\xd3\x91\xfb\xe7\x6d\xb2\x98\x70\x11\x63\x14\xe0\x89\xef\xbb\x3c\x89\xb1\x71\x3b\xe8\x79\x3c\xc6\x4e\x9b\xa0\xab\x6f\x82\x8f\xa1\x5b\xe5\x15\xe2\xac\xe3\xf2\xcd\x73\x31\xe2\x7a\x94\xbd\x77\x66\x53\x9d\x8f\xc5\x64\x2f\xba\xa1\x9f\x07\xe6\x65\x8b\x96\xb4\x05\x86\x6d\x23\xf8\xbf\x59\xc4\xf7\x18\xf5\x78\xf3\x2f\x6a\xa6\x19\xe5\x4e\x69\x19\xae\x56\xd8\x41\x65\x48\x5b\x69\xb7\x32\x3d\x08\xfd\x19\x87\x9d\xe5\xcb\x3b\xe4\x4b\xc9\xfd\x28\xe2\x87\x33\xa7\x2c\xcf\x41\x95\x52\x2b\x4e\x7e\xcb\x2f\x56\xbd\x4a\x18\x12\xbe\x8d\x47\x17\x76\x28\xa5\x48\x62\xbf\x67\x7c\xf9\x79\x79\x13\x3c\x00\xba\x96\x06\x8c\xfe\xc3\xba\x0b\x88\xdb\xc0\xdc\xcc\x02\xe8\xa8\xbb\x35\xc2\x4f\x3a\xbe\x12\x18\xe7\xd7\x0f\xf2\x35\x9b\x47\xa0\xb6\xfd\xe8\xc9\x31\x7a\x6c\x60\xc8\x04\xde\x79\xca\xd9\xbf\x7c\x72\xd6\xb8\x94\x88\xc1\x4d\x6b\x4f\x97\x52\xfe\xa7\x2a\xd8\xf1\x3f\x5d\x78\x53\x56\x81\x2e\xce\xfe\xc5\x52\xb4\x5b\x51\x79\x6e\x62\x94\x08\x11\x9e\xb1\x49\x7b\x07\x48\x10\xf8\xe5\x90\x55\x6b\x9c\x83\x10\x17\xdc\x93\x74\x72\x3b\xe2\x8c\x2e\x41\xd4\xde\xf1\x8a\xe6\xdb\x57\xa3\x6e\xa2\x22\x7a\xc3\x71\xc5\x6e\x28\x08\xb8\x83\x40\x6e\xf5\xe9\x92\x08\x6e\xc7\xb5\x82\xf7\x78\x3a\x82\x75\xb0\x8e\xfc\x8a\x2e\xe2\xfb\x86\xe2\x55\x0c\xb7\xae\xa3\x76\xdb\xee\xa7\xf0\xa1\xfd\xf2\x21\x4e\xef\x29\x36\x51\x00\x9d\xed\x07\xee\xd5\x45\xe6\xa9\x89\x7d\x9f\x32\x91\x61\x0b\xe3\x76\x2a\x1a\x2c\x60\x4c\x92\x10\x70\x3f\xf4\x88\x64\x8b\xa3\x44\xb9\x2c\x3f\x7a\x9c\xe2\xb9\x4d\x18\x06\xd5\xdc\xe5\x4a\x88\xf0\x03\xe2\x85\xb6\x38\xe1\x7f\xbd\xf9\xbc\x74\x70\x5c\x6f\xbb\xe6\xcb\x7b\x65\xa4\xae\x70\xe1\xa0\x8f\x6c\xce\xbe\x64\x4d\x94\xc8\xbd\xce\x1c\x99\xad\x71\x1b\xa4\x1e\xa4\x5b\x6a\x51\x21\xcf\xd7\x4c\x8d\xea\xfc\x58\x70\x35\x97\x6a\x9f\xe2\xb6\xd9\x54\xc6\xfe\x6f\x68\x02\xfe\x8c\x54\x51\x2a\xa6\x9c\xff\xd2\xa1\xec\x60\x1e\xf9\xbc\x84\x38\xb9\x2e\x7d\x80\x8e\x0f\xc8\xff\xa7\xb4\x6d\x1a\xb2\x52\xd3\x9d\x81\x42\x6e\xa1\x36\xeb\xb3\x89\x97\x4c\xa6\xd6\xae\xea\x10\x2f\x1f\xa7\x98\x10\x1e\xa4\x76\x3f\xa1\xa6\x3e\xc7\x41\x6e\x62\x39\xf0\xca\xc6\xb6\xae\x9e\xc4\xa1\x2d\xd9\x1f\xfd\x72\x31\x7f\xcb\x7c\xc4\xdd\xb9\x26\x9d\xaf\xdf\x16\x5a\x65\xc8\x71\x40\xe9\x3f\xfa\x97\x67\x35\xcc\x35\x2d\x97\x5b\x92\xb9\x36\x68\x28\x2f\x8d\x96\x20\xb7\x8e\xc4\xc2\xc0\xc8\x9f\xd4\xe3\x00\xf3\x7c\x9c\x2a\x11\x39\x4f\x67\xdf\xd9\xa9\x22\xdd\xfc\xd3\x33\xca\x38\x55\x57\xdb\x3f\xff\x06\x15\xca\x5a\x09\x85\xd9\x8d\x71\xf3\xdd\x1a\x13\x1c\x31\x13\xdb\x36\x67\x08\x25\xd9\xf7\x1f\xb7\xf0\x8a\xee\xca\xa4\x6d\xfe\xc4\x31\x8d\xd8\xc2\x38\xfa\x2c\xfa\xdd\x1e\x89\xf2\xe2\xb6\x20\xcb\xe7\x4a\xc8\x87\xc9\x29\xab\xdf\xb9\x5c\x23\x49\x23\xbb\xae\x91\x60\x3f\x33\x21\xfb\x6a\xc1\xe4\x1f\xe0\x57\xa2\xc5\xcb\x9f\xcc\x5e\x41\x05\xb9\x5c\xe8\x30\xbf\xf9\x61\xad\x88\xc3\x7e\x2d\xac\x54\x6c\x49\x4a\xcf\x75\xf6\x67\x7f\x79\x46\x71\x8a\x38\x2d\xc6\xd8\x34\x13\xe0\x8a\x8a\x48\xaa\x2f\x54\x80\xe8\xb0\x39\x0e\x78\xad\x34\x60\x1c\x96\x7a\xac\x65\xc0\x13\xe7\x5a\x1a\x1b\x4e\xcc\x98\xf9\x1a\xeb\xf6\x59\xba\xbc\x2e\xed\xc7\x6e\x72\xba\xe6\xaf\x1e\xa1\x52\x9c\xd3\x11\x27\xb4\x07\x77\x3d\xad\x6d\xd9\x39\x9f\x83\xdf\x3a\x20\x74\xbc\xa6\x34\x10\xbe\x27\xc8\x3e\xc6\x43\x7b\x15\x0a\x10\x25\x5c\x31\xc2\x78\x65\xb5\xa2\xb3\x4c\xac\x50\x15\x94\x33\xae\x65\xda\x2b\x55\x43\x8c\x37\xec\xd1\xb7\x04\x54\xb9\x2f\x04\x66\x03\x60\xcb\x2b\xfc\x47\xa1\x57\x65\x88\x8f\xb0\x73\x7b\xba\xb4\xea\x24\xf9\x8e\xb9\x2f\xcc\xca\x9e\x39\x27\xf4\x6d\x71\x7b\xe4\x05\xdc\xbe\x4f\xe1\xbd\xaa\x53\xb7\x2b\xb9\x51\x54\x71\x1e\x66\x2e\x6a\x1b\xf5\xe5\x77\x6d\x95\x37\xb0\xc2\x60\x27\xe4\xa6\xda\x3a\xef\xdb\x2c\xa0\xa9\x95\x0a\xb1\x09\x6f\x45\xa2\xa0\x91\xad\x40\x6b\x2d\x14\x04\xba\x86\x7a\xfe\x03\x07\xb3\xc7\xca\x6f\xf9\x01\x76\x94\x59\x61\xf4\xb2\x36\xe2\xa8\x21\x61\x07\x1d\x2d\xde\xa1\x92\x04\x59\x20\x6b\xca\xe8\xf7\x33\x94\xb2\x01\x07\xc5\x80\xc2\x31\x38\xfa\xac\xcc\x38\x2d\xca\x04\x97\x2f\xb7\x78\x9a\x92\x50\x1a\xd8\x0d\x42\xa1\x4d\x5d\x39\x22\xa3\xbd\x67\x72\xa1\xba\xc1\x67\xc5\x57\xb1\x6c\x99\xf0\x3c\xb8\x55\xc3\xc5\x70\xd9\xd7\x2a\x61\x76\xb2\xff\x5a\xfe\xa0\x74\xf0\x31\x53\x95\xc5\x9e\x95\xdd\xd9\x68\xc4\x88\x43\x5c\x45\x2c\xa2\x1d\xc9\x74\x6c\x93\xba\x2e\xb7\x00\x77\xb9\xa6\x91\x0d\xe0\x36\x2a\x63\x3b\x09\xe0\xd6\x0a\x1e\xa4\x7b\x67\xa5\x8b\xf7\x62\x29\xfa\xc2\x5c\x05\x79\x00\xda\x18\xc9\x35\x6d\x78\x7d\xb8\x32\xfb\xe3\x0e\x01\x49\x91\xce\xf6\x68\xab\x08\x5c\x0e\x85\x90\xa7\xb1\x6a\xb0\xc2\x98\x71\x6d\x6e\x91\x9e\xeb\x3d\xa2\x28\xa2\x21\x9f\x70\xc3\x8d\xd5\xca\x44\x82\xd1\xd0\x8b\xbf\xc4\x07\x6e\xe2\xd7\x39\xef\xca\x25\x0b\xaf\xb8\x66\x65\x72\x39\x2f\x4d\xd0\x11\xf9\x7c\xae\x02\x6a\xd3\x9c\xb9\x76\xb2\x53\x8a\x4c\x05\x0c\x23\x2b\x23\x41\x99\x27\x15\x65\xb1\x45\x1c\x5c\x2c\x45\x67\x08\xd1\x26\x27\xae\x6b\xa0\xec\xb4\x37\xa6\x55\x0c\x47\x22\x6a\x3c\xdf\xae\x34\xf6\xba\x21\xe0\xde\xff\xaa\xb9\xdb\xf1\x47\xce\xf5\x01\x72\xff\x79\x4c\xf1\x21\xa4\x5c\x6f\x3c\xd2\x0a\x1a\xcc\xfc\x10\x2e\x55\xdc\xbf\xaf\xf6\x70\xfc\xcf\x55\x98\x21\x5b\x5d\x15\xb4\x8e\x2a\xb8\xf2\xb2\x03\x10\xa2\xce\xc1\x3a\x99\x8d\x05\xd8\xe6\xa8\x95\x61\x2b\x64\xfa\xad\x87\x41\xd8\x4f\x1b\x3e\x28\x32\xe4\x4f\x28\x7b\x21\xab\x9b\x03\xe0\x16\x3f\xce\x5f\xdb\x29\x53\x26\xcf\x9a\x32\x6d\xf2\x4c\xce\x8c\x9f\xf3\x56\x7a\x3b\x2a\x58\x17\xe4\x8a\xee\xb8\x3d\x25\x54\x30\xca\xe7\x9b\x4f\x47\x2a\x49\xb8\x8a\x18\x0e\xf8\x32\xe8\x81\xde\x73\x14\xb1\x09\xb7\x6a\x73\x7a\x62\xfe\x17\x0b\x65\x15\xdc\x6a\xa8\xb3\xff\xdc\xaf\x76\x0b\x71\x3a\x8c\xdd\xa2\x10\xc8\x9f\x31\x6a\x98\xa8\x27\x5c\x21\xbf\x08\x2a\x4c\x07\x74\x99\x4b\x02\x4a\x77\x82\x3b\x79\xc3\xb1\x21\xc9\x2f\xf9\x22\x5e\xe7\x46\x0c\x3e\x57\x01\x65\x31\x57\xc2\x32\x0e\x1f\x52\xbe\x02\x72\x01\x90\x09\x7a\xab\x9f\xdc\xaa\x0f\x1f\xaa\xb0\xb4\x81\x72\xbe\xf0\xe9\x1e\x25\x6e\xac\xf7\x40\xcd\x82\x1b\x67\x2d\xed\xd7\xcc\xdd\x30\x63\xf1\xc1\x6d\x89\x73\xfb\xc7\xd7\xb5\x25\x42\xe8\xd7\xd2\xde\xbe\xeb\x51\x0e\xe0\x5a\x10\x77\xb5\x44\xd5\x23\x3d\x7b\x8b\x3c\x5c\xbd\x53\x66\xc4\x7f\xe9\xa5\xd7\x14\x50\x4c\xca\x28\x8c\xe3\xef\x12\xdd\x77\xb0\x42\x81\xb7\x04\xdb\x69\xa8\x52\xec\xa0\x4b\x99\x65\x33\xd2\x00\x56\x13\xbc\xa7\xb5\xe3\xda\x8c\x90\xf8\x26\xc3\x98\x23\x85\xf2\xdf\x3a\x43\xc3\xf7\xa2\x7e\x2c\x44\x7d\xdf\xa7\x2d\x14\x61\xfd\x27\x3c\xce\x38\x59\xc7\xdd\xa5\xbc\x21\x20\x8d\x59\x30\x8f\xea\x59\x8d\x25\x6e\x91\x5b\x5e\x52\xe7\xed\x55\x86\xe1\x4c\xfc\xdf\x55\xda\x74\x20\x7d\x97\xfe\xbc\x51\x32\x52\x61\x0b\xe0\xf3\x45\xb7\x94\xc6\xfc\xe5\x6e\x2d\x92\xc5\xf7\x44\x34\x6e\x13\x9e\xd3\xe1\xb7\xdc\x3c\x25\xd9\x97\xec\x1d\xa1\x9d\x3a\x1b\xb5\x00\x99\x05\x4b\xdd\xfc\x8f\xbb\x78\xdd\x59\x8b\xbb\xf6\x84\x1f\xf5\xe7\xd7\xc6\xe8\xfd\x27\xaf\x3f\x14\x4f\xb8\x9e\x19\x5a\xa8\xab\x61\xb3\x26\x94\xe6\x38\x50\x61\xa5\x2d\xa3\x29\xb2\x42\x1b\x0a\xc6\xa7\xa5\x1b\x3f\xb6\x95\x91\x4a\x6e\xe8\xeb\xd9\xa7\x50\xa6\x56\xab\x1a\x22\x66\xf9\x09\xae\xe9\x9b\x4b\x34\xec\x2d\x09\x5a\x10\xc2\xa2\x5f\xf4\xc9\x36\x0f\x98\x51\xef\xeb\x57\x0d\x55\x3c\x6e\x4b\x53\xb0\x1e\xd4\xd6\xe1\x21\x93\x68\x97\x6f\x1e\x92\xa3\xb7\x1a\xaa\x60\xc5\xe9\xab\x30\x4f\x38\xb1\x00\xcf\x1d\x14\xa1\xbe\xfc\xf2\x18\x2d\xc5\x33\x1b\x01\x31\x5d\x0e\x8f\x2e\x9c\xa5\xfb\xc9\xb9\xa8\x9a\xaa\xae\x5d\x7b\x52\xf1\xec\xc4\x96\xc4\x7f\x5d\x26\x50\xdb\x65\x64\xd6\xe1\xb5\xf8\xe3\x56\x49\x5a\x8a\x5f\x75\x8b\xe0\x76\x8b\xb1\xfc\x67\x77\x6b\x7b\x95\x1a\x0a\xb8\xa9\xda\x5c\xd6\x46\x13\xab\xda\xd4\x01\xc5\x16\xb1\x04\x3c\xfe\x0a\x3f\x05\x4b\x31\x33\xb1\x25\xca\x59\x4f\x23\xb0\xc5\x3d\x3e\xad\x54\xc4\x29\xff\x9d\x22\xd7\x6f\x52\xa7\xc2\xdb\x8b\xc2\x07\x46\x8f\x51\x6a\x49\xe4\xb8\x56\x9b\x42\x62\xe1\x43\x95\x61\x4a\x15\x64\x8b\x3f\xf7\xab\x45\xd9\xa7\xc3\xe9\x25\xbc\xab\x9c\xb4\x4c\x79\x00\x9c\xc2\x3a\x2a\x7b\xac\x9b\x18\xb0\x42\x09\x50\x7d\xeb\xa6\x44\x4b\x8e\xb2\x00\xde\xa7\x52\xf4\x1b\xa6\x24\x94\x90\x03\x03\x7e\xbb\x4b\x5d\xe2\x3b\x14\xd4\x1d\xb6\xd4\x38\xf0\x29\x41\xcd\x4f\xef\x93\x07\x99\x98\x75\x3e\xcb\x7e\xbf\xad\x98\xee\x2b\xfb\xad\x4f\x6d\x94\xf7\xc5\xc1\x0e\x65\xa0\xff\x62\x7c\x4c\xc0\xd8\xe7\xd7\x90\xcb\x15\x58\x8c\x91\x7d\xc2\x25\x89\x32\x97\x73\x89\x00\x3a\xb6\x6f\xb3\x86\x5f\xb5\xe2\x50\x14\xa4\xd8\xf5\xdc\x55\x1b\xc5\x66\x10\xb3\x00\x11\x17\xca\xbe\xaf\xa8\xd2\x95\xc8\x0d\x70\x5c\x57\x15\xfb\xa8\x4d\x20\xf8\x1c\xb9\x49\x93\x58\x07\xed\xca\xf6\x7a\xed\x8c\x77\xf8\x1c\xed\x4a\x04\x6a\x55\xaa\x98\xee\xba\xcb\x47\xca\x41\x85\xd3\x76\xfc\x1e\x5d\x79\x9e\xba\x26\xf6\x03\xaa\x0c\xcb\xf3\x47\x5c\xc5\x98\x21\x74\x1c\x2c\x84\x06\x0a\x2b\x34\x43\xf0\x38\xf3\x25\x38\xc7\x8d\xdb\x34\xcc\x1d\xf2\x45\xe3\xe1\x3d\xa5\xc3\xb1\xb0\x8f\x5d\x13\x73\x0e\xf8\x40\xfe\xc2\xc5\x52\x0e\x1e\x79\x49\xcd\xdf\x75\xda\x45\x2a\x50\xc1\xe2\x22\xad\x6d\x44\x9d\xc2\x07\xef\x54\xe4\x35\x43\x07\xb9\x92\xd4\x99\x9b\xf9\xba\x16\x6d\x29\xad\x3b\xa0\xb0\xc1\xd3\xcc\xdd\x07\x54\x7b\x79\xd7\x4d\x3c\x0e\x8e\x2c\xd1\xb2\x2b\xbd\xb4\x51\x56\x22\xcc\x90\xce\xb4\x75\x74\xc1\xc7\xc1\xb8\xf0\xa8\x6e\x3b\x84\x02\x3e\xf5\x2d\x45\xfb\x2d\x88\x95\x62\x0d\x4c\x70\xbb\x78\x78\xc7\x9a\x0f\x68\x45\xb6\xd7\x87\x84\xcc\x51\xa6\x3a\xda\x3e\x42\xac\x64\xd6\x63\x66\x12\xd8\x33\x45\xf4\x70\xa6\xb9\x60\xad\x26\x27\xd7\x44\xaf\xaf\x1d\x9b\xd1\x9e\xaa\x50\xd6\x2e\x4b\x3f\x65\x9f\xbc\x05\x35\x52\xad\x35\x51\x0b\x02\xec\xbf\xed\xca\x5e\xd2\x7a\xe2\xd6\x42\xa1\x02\x9d\xfd\x84\x11\xd2\x48\xa8\x4a\x55\x9f\x9b\x5b\x47\xf2\xba\xaa\x41\x2c\x4c\x03\xc4\xc7\xcc\x05\x67\xdd\x18\x65\xb5\x11\xc6\xd9\x9b\xe1\x86\x60\x80\x71\x90\x91\xf1\xd6\xf8\x14\xfe\x58\xb5\x81\x9a\x7a\xe4\x69\xd9\x1e\xc6\x1f\x27\xda\x18\x4e\x2f\x9a\x2f\x94\x43\x97\x42\x43\x1a\x3f\xf8\xeb\x2f\xcb\x0e\xa8\x70\x4b\x18\x38\x8e\x5d\xae\x6b\xbb\x10\x5b\x41\x2d\x7a\x47\x75\x39\x74\x13\xa6\xf3\x62\x7a\xd1\x39\x52\x2b\xcc\x6b\xb4\x89\x2d\x9e\xd5\xaa\x87\xe4\xc2\xa7\x85\x82\xa2\x9f\x59\x15\xbd\x74\x9a\xe4\x7c\x3a\x34\xf0\xeb\xb4\x4c\x94\x84\x1a\x3d\x77\x03\xbf\x57\x15\x16\x02\x44\x0b\x52\xc9\x9f\xf8\x10\xae\x78\x15\xb0\x09\xf5\xb7\xbf\xdf\x50\x42\x17\x09\xfc\x90\x85\xb0\xd7\x78\x54\xa9\x67\x48\xa5\xc2\x47\x09\x4b\xf6\x9d\xad\xf4\xab\xf1\x4f\x26\x6b\x6e\xdc\x7d\x21\x4b\x7d\xa4\x06\xf2\xff\x7e\x3c\x5b\xff\x4c\x9d\x39\x5b\xe8\x93\xfd\xf4\x60\xf6\x16\xb9\x34\x6c\x60\x14\x26\x43\x82\x7b\x9f\xd7\x24\x18\x58\xdc\xb4\x9b\x75\xb1\x47\x88\x7e\xa5\x59\x83\xd5\x08\x47\x3c\xc2\x87\xe7\x7f\x72\xcf\x79\x2a\xc5\x23\xcc\x30\x2c\x73\x57\x08\x5f\xae\x55\xd7\x5f\xf1\x91\x45\x57\xaf\xb8\x72\x95\xf2\x4a\x9e\xfd\x9a\xb6\xaf\x4a\xf1\xdb\xa2\xf2\x9a\x36\xa1\x0d\xa4\x96\x82\xeb\x66\x1f\x94\xaf\x10\x2d\xf7\x49\xae\x5f\xae\xfb\x2c\xd9\xd0\x37\x10\xe3\x7b\xef\xa8\xb4\x4e\x8e\x60\x5c\xdc\xf4\xc1\x30\x2a\x99\xe5\x1c\x5b\x99\x0d\x84\x2e\x72\xb0\xa8\xca\x2b\x81\xba\x27\x76\x84\xd2\xcf\x0b\x37\x68\xb1\x03\x06\x79\x02\xcf\xb6\xc5\x50\xac\x6d\x68\x4d\x71\xa3\x8e\x6e\x7d\x54\x77\x77\x73\x28\xf3\x13\x28\xd9\xd6\x7b\xb2\x97\xe1\xd1\xf8\x53\xe3\x47\xf0\xb7\x41\x1a\x06\x98\xf4\xd7\xdc\x96\xa2\x75\xf8\x79\x25\x59\xa6\xf2\xf0\xb0\x9c\x29\xc8\x86\x6b\x4a\x0f\x08\x08\xc0\xfb\xba\x72\x5c\x1a\xc1\x7d\x14\x8a\x4f\xe9\x7f\x55\x37\x1e\xb2\xb9\xf6\x49\x92\x19\x97\x4e\x50\xd4\x90\xc4\xfc\x32\xbe\xf2\x8f\xcd\x1d\x2b\x9b\xd2\x06\x07\x27\xb7\xd1\x56\xc9\x06\xdd\xd4\x32\xa8\x31\xb4\x5e\x14\x14\x1f\xdf\xa2\x4d\x7d\x60\x73\xcb\x95\x59\xc5\xbb\x5c\x0c\xb4\xdc\xc0\x30\xaa\x57\x50\x3a\xe2\xfd\xcd\xc5\xba\x65\xbc\xef\x61\xd7\x4a\x07\xca\xf9\xc5\x13\x78\x07\x08\x13\x6a\xae\xea\x55\xdb\x9e\xfd\xcc\x1b\x43\xec\x2b\x84\xbc\xdc\x23\x6f\x68\x6c\x7c\xd4\xc0\xdc\xa6\x32\x7a\x62\x03\x6f\xd1\xe7\xb1\xd0\xf5\x9b\xc4\xac\x27\x30\xf4\xd2\x3b\x17\x2a\x95\x6e\xe8\x79\x28\xac\xb6\xcb\x2a\x3c\x57\x49\x6b\x6a\x16\x42\xae\xbe\x70\x33\xaf\x57\x56\x50\x5f\x69\x80\x8d\xcd\x27\x14\xb0\x07\xc3\xb8\x56\x2c\x45\xaf\xad\xd1\x17\x39\xe0\x02\x23\xba\xb8\x5c\x73\xb1\x26\xea\x0b\x7c\x68\x4e\xda\xc8\xdd\xb1\x55\xb6\x87\x71\x28\xa7\x4c\x54\xc6\x39\xd2\xa1\xa8\x79\x14\xdb\xd2\xc6\x27\xee\x56\x0f\x19\x08\x73\x71\x84\xc1\x1b\xe3\x47\x2b\x05\x34\x73\x71\x3b\x70\xea\xd7\xea\xfa\xc8\xf3\x30\xb8\x01\xdc\xb2\x55\xc3\xf2\xc4\xff\x83\xdf\xf7\x31\xc7\x64\x6c\xc6\x65\xcc\x7c\x55\x69\xa9\xe0\x6b\x20\x58\x62\x61\x94\x88\xd9\xd7\x46\x4b\xe2\x44\x4d\x75\x82\x5f\xb8\x45\x0a\xaf\xd7\x15\x73\xff\xf9\x8a\xb9\x61\xd9\x0e\x31\x38\xa5\xc7\x5f\xeb\xac\xfd\x72\x28\x61\x23\x57\xf9\xac\xfc\xe7\x5e\x94\xcf\xa4\xd9\xdd\x40\x50\x82\x1e\xb0\x86\x27\x9c\x84\xe5\x2b\x96\x8f\x57\x8b\xbb\x49\xa3\xe4\xd7\x31\x05\x09\x4b\xa6\x9a\x59\x9d\x23\xd4\xfb\x67\x67\x4c\x59\x7e\x3e\x4f\xdb\xdc\x38\x42\xf9\xf6\x5b\x97\xe9\xdd\xbc\x80\x4b\x49\x0b\xcd\x8d\x37\xeb\xf1\xa6\x4a\x9c\xc4\xf3\xd1\xd8\x32\x4a\x25\x54\x05\x24\x55\x33\xf8\xf4\x8b\xfa\x60\x0f\x99\x82\x10\x66\x5c\xa0\xa0\x72\x51\x53\x2c\x5f\x8d\x75\x2e\xaf\xe8\xab\xa1\x5d\x01\xf4\xe2\x13\x7c\x5e\xb1\x32\xb4\x71\x0b\x37\xe4\xcd\xfe\xf2\x03\x63\x95\xac\x06\xd0\xb2\xf6\xe2\xaa\x6b\x10\xa7\x27\x82\x8c\x76\xd1\x0c\x9d\x62\x25\xd1\x0b\xaa\x76\x74\x2a\xb2\x13\xcc\x41\x2e\xe6\x12\x3d\x5f\x74\x87\x88\x26\xc3\x46\x42\xdc\xac\x30\xfc\xbe\x8b\xb4\x12\x0f\x9f\x8a\xf3\xdd\x37\x8b\x97\x68\x89\x62\x16\x84\xb4\x9b\x14\x9d\xbb\x0a\xa5\x41\x19\xd9\x36\x34\x46\x1b\xca\xd9\x9b\x33\x65\xf6\xac\xe9\xc9\x1a\xf2\x9f\xc6\xca\x1e\x17\x8c\x44\x4c\xe2\x09\x18\x4e\x8e\x3e\xdd\xa1\x48\xe5\x38\x21\x87\x76\x15\x66\xbd\xa3\x18\x16\xa0\x32\x65\x98\xf9\x13\x21\x42\x6b\xdd\x38\xad\x24\xd5\xe9\x81\xdb\x39\x14\x75\x05\x2e\xa3\xaa\x1d\x47\x5b\xe5\x94\xff\x75\xf0\x70\xa5\xe1\x82\x08\x6e\x26\x4c\xfd\xff\x33\x49\x9b\x9b\x63\x24\xa4\x68\x7b\x6f\x38\x4f\x4f\x3d\x5c\x1c\x06\x68\x93\xd7\x8e\x6d\xd3\x0a\x6b\x60\x1b\x5b\xb0\x07\x8a\x5e\x1c\xa9\x88\xbd\x50\xdb\x16\xb0\xa1\x68\xfa\x73\x1c\xdb\x01\x4e\x64\x1e\x8b\x6b\x5f\x28\xd5\x5f\xd3\x81\x22\xc4\x6a\x62\x5c\xe7\xea\x47\x9f\xbb\x49\x19\x68\x7b\xc8\x8c\xab\xe2\xf7\xb6\x6b\xae\xfb\x20\xe9\x22\x84\x76\x93\x77\x68\x63\x97\x26\x64\x47\x5b\x69\x46\x5e\xfe\xa8\xe2\xd0\x80\xab\x12\xa6\x77\x95\xc6\xff\xf1\x42\xdb\x2e\x23\xb3\x2e\x42\xc9\x09\xbb\xcd\x88\xaf\x02\x92\x6a\xc9\x34\x7d\xe8\x62\x65\x05\x82\x58\x11\xb6\x20\xc9\x5b\x74\xe7\x0a\x65\xaf\x22\xe7\xe6\xd1\x30\xd6\xa1\xa8\xcd\xf8\x35\x02\x1e\x35\xf9\x9b\x34\x45\x32\xbb\xc5\x88\xc9\xbb\x9e\xdc\xc3\x27\xe4\x43\xf5\x71\x08\x0a\xfc\x49\x7c\x38\xae\x09\xb9\x81\x3c\x75\xba\xd3\x2f\x4c\x7a\x7e\x84\x52\xbc\x33\xae\xa0\x6f\x71\x34\xc6\xc8\x65\x89\x8a\x90\xdb\x17\xf2\xba\xe0\x5a\x6d\xa6\x6f\x53\x3f\xad\x30\x97\xba\xa9\x50\x3f\x62\x75\x55\x1a\xfb\x88\x36\x80\x9e\xd2\x3d\x65\x7a\x32\xf7\x59\xfe\xa0\x86\x1e\x04\x73\x42\x81\x39\x8d\x7e\x50\x50\x05\x41\x59\x43\x40\xd9\x47\x75\x6b\xfa\xa8\xd8\x42\x62\xc5\xf3\xe6\x48\xf9\x85\x18\xb1\xb2\x74\xd6\xda\x60\x05\xed\xc1\x08\x85\x21\xef\x07\x8f\xa7\x0f\xc2\x62\xea\x02\xe3\x87\x65\x19\x77\xb9\x2f\x2b\xa9\x0a\xa7\xf3\xa8\xeb\xfe\x11\xe2\xde\xb0\xa0\xa6\xb5\xea\x4b\xa5\x65\xe3\xf4\xde\x9e\x62\x29\x1a\xf4\x8c\xc2\x73\xb6\x51\xb5\x2a\x02\x50\xef\x04\x6d\x28\x1a\x26\x58\xdc\x5c\xc7\xe8\x21\x4a\x91\xc0\xd9\xa1\xbb\x14\xe1\x52\xe4\x60\x46\x39\x00\xd8\xde\xa1\xd0\xd0\xec\xd0\x81\x81\xc4\x0f\xb6\x29\x59\x8b\x91\x2a\x12\x53\xa5\x7c\x67\x9f\x4c\x35\x08\x56\x42\xaa\x7b\xeb\xef\x0f\xe8\x29\x17\x25\x1a\x20\x9f\x5f\xc5\x4f\xc3\xd5\x01\xb2\x85\xc4\x12\x79\x42\x96\xb2\x75\x9c\x81\x68\x19\xff\xb2\x7d\xa8\x08\x5a\x61\xea\x92\x6c\x84\x0b\x13\x8d\x7b\x80\xea\x7c\x77\xbb\xc6\x0f\x45\x0d\xfe\xf2\x8c\x2f\x96\xa2\xdf\xbe\xab\xee\xae\x60\xdf\x1d\xfd\xe4\x0d\xed\x85\xa4\xbe\x4f\xca\x02\xc3\x35\x60\xcc\x10\x88\x56\x9b\x9a\xd2\x8d\xbb\xb8\x5f\x71\xa7\x88\x33\x86\x18\xb2\xee\xdd\xa7\x91\x0e\xe2\x22\x09\xd9\x45\x3b\x04\xeb\x2b\x18\x79\x7e\x6e\xa7\xf0\x54\x0b\x18\x75\xab\x35\xca\xcd\x81\x8d\xef\x73\x86\x67\xd1\xa3\x00\x02\x89\xc3\x67\x19\xf1\x80\x9d\xff\x0f\x4d\x9f\xa9\xc2\xad\x8b\xa0\xee\xda\x20\x6e\xe1\x4a\x46\x43\x9e\xb0\x72\x57\x9c\xd4\xb6\x71\xc4\x87\xee\x09\xa2\xdd\xb8\x33\xb2\xff\x68\xb1\xb0\x2a\x3e\x2c\xf2\x4f\x0a\xf4\x43\xe8\x14\x4b\xd1\x7d\x87\xc7\x69\xb5\x2f\xa5\x0e\xd6\x77\xa7\x85\xf1\xfd\x5a\x30\x68\x99\x36\x91\x46\x13\x1f\xf2\xf4\x75\x39\x47\x6c\xf3\x4e\xfb\xd8\x63\x17\xea\xe9\x81\x05\xc2\x0a\x40\x9e\xa0\x97\xd7\x0d\x53\x1b\x3e\x8e\x3c\x2d\x9c\x79\x43\x56\xa8\x05\xec\xe3\xa4\x26\xbb\xea\x04\x92\x7f\x4e\xb3\xbd\x9d\xd2\xc3\x05\x06\xe1\xf5\xfe\xac\x54\xd7\x2c\x87\xea\xe2\xeb\x43\x3d\x69\xf4\xc1\xa1\xa3\x5e\x52\xee\x7f\x34\x27\x05\xe4\xba\x9a\xda\x5f\xe1\xe2\xc9\x1a\xa9\x09\x57\x19\xb2\x78\x77\xc1\x0b\x9b\x0d\x07\x65\x8c\xed\x0b\x19\xf1\x2d\x92\x26\xce\x23\x42\x80\x78\x29\x0a\x14\xb5\x82\xfc\x53\x5d\xbc\x03\xb8\xb6\x0e\xe2\x99\x28\x55\x7b\x7c\x6b\x63\xba\xdf\x0d\x70\x62\x03\xfe\xf4\x41\x21\x9e\x8e\x6b\xa8\x41\xb8\x95\xb5\xf1\xa8\x2b\xdf\x6d\x27\x8c\x6f\x57\xfc\xd3\xde\x93\xed\x44\x74\x47\x74\x61\xd1\xc6\x1d\x63\xb4\xea\xcc\xc3\x4c\xf0\x05\x92\x22\x18\xad\x90\x0b\x15\x08\x51\x03\x85\xe5\x63\x79\x51\xb5\x94\xd6\x90\xe3\x60\x55\x8f\xdb\xad\xfc\x1d\x35\xfc\x14\x01\xf9\xa0\xa2\x9d\x6c\x63\xd8\xd0\xe4\xaf\x5c\xa0\xcd\x0d\xc0\x48\x88\x1b\x58\xc0\x2f\xdd\xea\xca\x10\xe7\xd2\x06\x17\x48\xd9\xda\xa9\x08\x68\x50\x0f\x31\x0b\xe6\xb7\xf9\x5f\xee\x96\x37\x62\xca\xac\x44\x93\xfb\xf4\xb7\x86\x2b\x25\x38\xab\x62\x3f\x28\x0a\x11\x52\xe3\x57\x23\xa5\xd7\x3a\x16\x90\x9e\x68\xed\xfd\x69\x91\x6f\x85\x6a\xc5\x7e\xee\xac\xec\xab\x36\x6d\xd6\xe4\xd9\x33\x67\x09\x37\xda\xd6\xda\x74\x3a\x58\x25\x66\xb1\x14\x4d\xde\x9c\x71\x2c\x86\xd2\xf3\x80\x82\xbb\x6b\x10\x64\x52\x07\x80\x71\x1f\x7a\x55\x5f\xb7\x5b\x44\x18\x11\x0f\xe4\xde\x6f\x6b\xc2\x7e\xf1\xcb\x26\xb4\x2b\xc7\xd6\xba\xb4\x97\x9f\x70\x5c\xf7\x40\x7e\xbf\xa6\xca\xe0\x50\x17\x07\x28\x75\xa1\x31\x3e\x25\x4c\xc4\xac\xb0\x2c\xe6\x1b\x3f\x3d\x96\xfd\x8d\x4a\x68\x57\x88\x6d\xa7\x54\xe6\xa9\xf7\xa7\xdf\xb0\x15\x07\xa6\xa8\x73\xac\x20\x07\xd0\x30\x20\x2e\xe6\x3b\xca\x0d\xa3\x94\x6c\x1c\xc4\x1d\x38\xfc\xb9\x8b\xba\xe5\xb3\xc1\x96\xc3\x3d\x14\xf2\x5f\x53\xb0\xd4\x2d\xe4\x13\x45\xc6\xa5\x70\x67\xdf\xd0\x4c\x8f\x09\x43\xbf\xed\x4f\x0b\xa3\xfa\x6b\x57\x5c\x91\xae\x59\xb7\x08\xe3\x76\xd8\x73\x13\x15\x5f\x50\xb8\xe5\xb9\x61\x22\x91\xd3\x06\x66\x65\x02\xfb\x57\xe3\x11\x8d\x9d\x9f\x8a\x34\x08\x37\xc3\xc7\xde\x48\x8f\x45\x9d\x21\xf1\xee\x0d\xd1\x2c\x95\x2d\x00\xa4\x62\x2b\xa5\xf5\x3e\xb0\x4e\x7b\xa9\xc0\x8c\x25\x03\x95\x32\xea\x4f\xf0\x82\x76\x71\x5c\x03\x2a\x9b\xb5\xcd\xff\x1f\x5d\x6f\x1f\x6f\x55\x55\xe7\x8f\x73\x1e\x22\x74\x10\x79\x12\xf0\x8a\x88\x8a\x60\xc0\xb9\xf2\x78\x05\x32\x42\x44\x04\x44\x0e\x21\x22\x92\x43\xac\xb3\xf7\x3a\xe7\xac\x7b\xf6\xde\xeb\xb8\xf6\xde\xe7\x72\xef\x8f\x8c\x88\x94\xc8\x8c\x8c\xcc\x21\x33\xc6\x31\x33\x43\x33\x65\xcc\xd0\x71\xc8\x31\x32\xc7\xcc\x61\x88\x31\xc6\x88\x31\xc7\x21\x87\x31\xe3\x4b\x8e\x63\xde\xdd\xef\xb5\x3f\x6b\xed\xbd\x3e\x7b\x1d\xf2\x3f\x2f\xf7\x9e\xb3\x1f\xd6\xfa\xac\xcf\xc3\xfb\x61\xbc\xbc\xce\x6b\x89\xe3\xf6\x2a\x25\xf5\xe8\xe1\xd5\x0a\x54\x40\xbd\x00\xd2\x90\xe2\xec\x01\x46\x51\x1e\x9f\x79\x6a\x4f\x2f\x9d\x95\x6d\xde\x4d\x9f\x3e\x43\x35\x3d\x6e\xbb\xcf\xb4\x6e\x69\x36\x9d\x44\x2a\xfe\x9f\x3b\xdb\x70\xcf\xbe\x1c\x67\x24\xe6\x22\xd1\x92\x41\xa8\x01\x34\xab\x04\x3c\xa4\xf8\x73\xcf\x30\xa8\x0e\x4a\xb9\x2b\x39\x9a\x0a\x1f\x3d\x9c\xc6\xe1\x46\x3d\x44\x77\xfb\xb9\x41\x7a\x6b\x08\x65\xab\x72\xbf\x1a\x72\xb6\x98\xe3\x90\x9a\x12\x75\xcf\xdf\x8f\xa4\xa8\xc0\xa5\x16\x96\xcd\x84\x3b\xce\x41\x04\x14\x22\x88\x17\x50\x09\x93\x7a\x78\x07\x52\xc7\x08\xda\xfa\x47\xb6\x21\x43\x97\x54\x4b\xf2\x7a\xbf\x30\x3e\xfb\x86\x7b\x0d\x16\x45\xe1\xaa\x0d\x63\xcc\x13\xaa\x56\x97\xad\xa3\xe8\x53\xf3\x8d\x1c\xb5\x07\x0c\x9c\x92\x41\xc9\xe8\xbc\x72\xa2\x0c\x2d\x4b\x5e\x6b\xe1\x42\x63\xd7\x4b\xe0\x8a\x1c\xa6\x3d\x7d\x4c\x82\xf8\x04\x51\x94\x97\xf7\x6f\x4d\xf3\xc5\xe9\x25\xe8\xb4\xbc\xbd\x32\xfb\xbe\x67\x4f\x4b\x46\x2b\xe7\x3e\x35\x1c\x23\x12\x5c\x2a\x8d\xad\x4f\x22\x25\x9d\xa6\xe0\xe0\x41\x57\x2a\x47\xf7\x9c\xcc\x5e\x86\x84\x21\xca\xcb\xb8\x7b\x1d\xc2\x42\x31\xaf\x86\x41\x15\x7b\xba\xcc\x34\x30\x6d\xa8\x9f\xf1\xba\x31\xe7\x0c\x85\x27\x8b\xc4\x77\x9f\xd3\xfe\x46\x7e\xa3\x8d\x57\x58\xb8\x58\x8c\x54\x65\x86\xe7\x73\x87\xd9\x89\x72\x4b\xee\x77\xbb\xe5\x26\x5f\x42\x44\xe9\xfa\xba\x01\xf7\x5b\xa8\x4e\xc5\xb8\x6c\x49\xd2\xc8\xdf\x4d\x45\x0a\xd1\x16\x0f\x1c\x29\x7d\x9e\x7b\x67\x7d\xb6\x17\x32\x5b\xed\x92\xfc\x92\xae\xec\xda\x90\x7a\x68\x09\x6b\xa1\x7e\x91\x49\x50\x51\xf3\x3e\x40\x60\x7f\x66\x5b\xdb\x33\x24\x56\xc2\x49\xfb\xd2\x2a\x44\x7a\x6f\x52\xc1\x02\x56\x8d\x5f\xd3\xb7\x50\x66\xcc\xdc\xa6\x93\xc4\x93\xf8\x6f\xae\x3e\xdc\x66\xb7\x5a\x71\xa8\x9b\xbc\xe1\xcb\x9e\x1f\x83\xf0\x4e\xc4\xb3\xc1\x38\x48\x00\xa0\xb1\xf0\xeb\x63\x88\x7f\xea\x50\x22\x4a\x16\x18\x56\xe4\xcf\x30\x2c\xb1\x5c\x10\xac\x56\x3e\x5d\x3b\xce\x34\x33\x2a\x40\x77\x29\x01\x8d\x47\x0f\x74\x68\x51\xa5\x76\x59\x8c\xff\x58\x9d\xae\xce\x1a\xdc\x5c\xee\x86\x3d\x13\xd0\xc1\xed\x69\x4f\x54\x73\x14\xf5\xb1\x19\x7a\x46\x31\x17\xb4\x22\x56\x3e\x87\xd0\x9b\xb6\xcb\x3d\x96\x36\xe6\xef\x18\x7f\xbe\x91\xb7\x80\xdc\x9c\x04\xe8\x40\xa9\x38\x68\xd7\x25\xed\x9b\x6a\x4a\x8f\xa8\xb4\x75\x88\xa6\xaf\x34\x2b\x73\xb7\x49\x3c\x96\x40\x77\xa3\x6f\xef\x94\x21\x19\x30\x6e\x89\xeb\x4f\x21\x1c\x68\x94\xa9\xd3\x3b\xe7\xce\x51\xcd\xf7\x4b\x8e\xea\xc4\x04\xcc\xc6\x3b\x27\xd5\x61\xe7\xfd\xee\x1e\x24\xef\x45\x98\x2c\x10\x9e\x1a\x88\xdd\x06\x71\x2e\xb5\xf6\x5e\x9d\xa6\xfa\x99\xda\x2b\xb7\xe0\xf5\x36\x57\x33\x3b\x29\xae\xf3\x27\x5f\x4c\x6c\x16\xc0\x36\xbe\xe3\x4c\xdd\x1d\x86\x46\x35\x59\x7c\x96\x2a\x2d\x18\x81\xa6\x7b\x7e\xc5\x84\x0e\x94\x1b\xf5\xc0\x94\x54\x77\x19\x66\x5d\xa1\x15\x92\x9b\x6d\xa6\x34\xf9\x07\x0f\x26\xa2\x2a\x36\xb5\x14\x0b\xb0\xb0\x7f\x83\x1e\x72\xb7\xda\xda\x72\xf9\x51\x8e\x21\xb0\x06\x52\x1c\xa7\xb3\x5d\x7d\x70\x05\x72\x17\x91\x13\x41\xf0\x4b\x3a\x60\x46\x9d\xa4\x77\x9f\xdb\xba\x17\x69\x9c\xda\x75\x2a\x12\x22\xe9\xc8\x79\xca\x03\x29\xb4\x99\x25\x53\x80\xdc\x7d\xaf\x9b\x6d\x4d\x8b\x0b\x5b\xf9\x15\x17\xed\xbb\xb3\xbc\x3a\xc1\x7d\xd6\x90\x4d\xd1\x4c\xdb\xef\xc7\xf5\x73\x8c\xf3\xa4\x47\x46\x84\xe2\x87\x9a\x26\x1d\x74\x9a\x3a\x4d\x57\x3e\x2f\x4f\x82\x72\x8a\xe5\x29\x4e\x3d\xae\xfb\xcd\x2e\x47\x19\xe7\xbf\xbc\x9b\xe5\xdd\xd5\x18\xf1\x02\xb9\x40\xcd\xb7\xc1\xa7\x8e\x31\x96\xb3\x68\xfa\x6a\x04\x55\x98\x66\x60\x05\x1d\x5a\x63\x01\xe8\xc2\xa9\xe0\x77\xff\x78\x23\x03\x85\x9a\x5e\x46\x9b\xfc\xf1\xf7\x93\xaa\xa3\xaf\x29\xa8\x0d\xc8\x88\xc2\x9f\xb6\x66\x1f\x20\xf3\x5a\xc4\x61\x89\xde\xec\x67\x27\x63\xc7\xcc\x2a\xf3\x52\x83\xff\xb3\x67\x0d\xc3\x29\x70\x4d\x40\xe7\x2a\xb7\x40\xa3\x59\x7b\x53\xe4\xe8\x8b\xfb\x32\x84\x38\x8d\x88\x81\xba\xe7\xff\x19\x2c\x03\xe6\x05\x3c\x69\x0c\x5c\x37\xd9\x6c\xe5\xf1\x86\xca\x93\xf6\x28\x97\x70\x60\x70\x29\x25\xa0\xf9\x28\xcd\x20\x5e\xad\xc1\xc1\xb8\x63\xe6\x04\x13\x40\xe4\x19\xf6\xc5\xfd\xf9\xff\x3a\xa8\xc6\xdd\x54\xb0\x2a\x53\x2d\xe6\xe2\xf0\x07\x4d\xa2\xb0\x70\x93\x01\xd8\xe4\xe2\xd9\xea\x2f\xbc\x20\x14\x30\xcc\x7f\xe2\xd1\xe4\xb4\xb7\x19\x8f\x97\x88\x97\x5d\x56\xbc\x0e\x11\xac\xdc\x9f\xbb\x6b\x23\x12\x0f\x0c\xa5\xd1\xd6\x48\x03\xac\x2b\xcd\x83\x55\x49\xfa\xe0\xcd\x66\xee\x57\x09\x45\x45\x25\x25\x3b\xee\xd1\x79\x54\x8b\x3b\x61\x9c\x46\xc9\xc4\xcb\x7d\xe8\x2c\xcd\xc1\xe9\x2c\x95\xa3\x09\x23\xe5\x1a\x58\xdc\x89\x0e\xde\x33\xde\xd0\x91\xda\x61\x1e\x05\x38\x14\x7c\x40\x71\xdd\x73\xb2\xdc\xad\xb3\x5a\xbd\xd4\x4c\x34\x0d\xf3\xbf\x5c\x68\xb8\x3e\x78\x56\x9d\x0b\x60\x23\x9c\xbb\x01\x0b\xf1\xcd\x89\x8f\x82\xfc\x27\xee\x37\x64\x35\x64\xc2\xa5\xe0\xf7\xff\x7d\x85\xe6\x2f\xcc\x2c\x41\xb3\xc9\xd0\x95\x13\xcc\xe2\x58\xd8\x23\x7f\x45\x25\xf1\xba\x00\x4d\xa0\x9d\x08\x08\x45\x1d\xe2\xd1\xde\x92\xef\xb2\x00\x93\x28\xdf\x7e\x1f\xeb\x36\x3b\x0e\x69\xfa\x14\xf5\x2d\xfb\x8b\x37\x2c\x6b\x23\x16\x01\xa5\x24\xe1\xd0\xe5\xd6\x1d\xc4\xbe\xdb\x0e\xad\xa5\x2b\xf8\xa5\x3b\x0c\x8c\x0c\x09\x02\x2a\x34\x47\xec\x85\x66\x36\x57\xa9\x10\xf5\x91\xff\x30\x36\xbb\x40\xac\x3a\xb3\x24\x4a\xec\xac\xe1\xd9\xab\x81\xde\x63\x32\xe5\xbd\x7e\x65\x7f\x71\xf4\x45\x46\x39\xd9\x02\xfe\x66\xbc\x33\xde\x5a\x34\xc5\xdc\x50\xcc\x65\xba\xc3\x61\x26\x6b\x67\xde\x6f\x74\xc7\x02\x12\x00\x27\x92\x38\x49\xbb\xad\xb0\xe6\x29\x04\xfc\x70\xe2\x2d\xda\xce\x02\x98\x66\x40\x27\x61\x84\x22\x37\xeb\x8c\x55\x38\x5a\x50\xcf\x23\xa5\x72\x74\xe5\x43\xfa\x87\xa1\x47\x89\x0f\x85\xe7\xf1\xa9\x26\x14\xae\xc6\xb5\xd7\xdf\xbc\x39\x32\xb1\x5c\xc2\x1d\xa7\x17\x54\xb3\x65\xb1\x3f\xee\x51\x0d\xec\xe4\x4d\xda\xee\x15\x5c\x5c\x3e\xcf\xe8\x23\x33\xcf\x4e\x7a\x7f\x17\x29\x43\x1e\x9b\x35\x1d\xee\x12\x0b\xa2\xc9\xeb\x43\x0c\x4e\x0b\x0b\x8c\x56\x52\xae\x3a\x4e\x8f\x05\x2f\xea\x23\x7e\x3d\x60\x01\x99\x7a\x51\xfc\x91\xbf\x9d\x97\x5d\x13\xbc\xd9\xe4\x1e\xf5\x92\x76\x63\x71\x08\x32\x03\xf6\x48\xa3\x12\x3f\x90\xff\x1e\x82\x26\x5a\x2d\xff\xb2\x16\xbb\xac\x9b\xc5\x97\xf2\x7d\x47\xf6\x52\x7b\xa4\xf3\x53\xee\xbb\x08\x8a\xe0\x87\x41\x20\x7d\x1b\x86\x18\x76\xb6\x41\x0f\x2f\xf5\x90\xde\x24\x33\x5c\x8e\xe6\x29\xb3\x26\x12\x17\xf6\xde\x75\xf3\x8d\x49\xbc\xe3\x72\xe8\x89\xc2\xd3\xee\xeb\x3a\xbf\xbd\x4e\x2d\xf5\x20\xab\x49\x6b\x88\x69\xff\xe2\xaa\x5c\x3b\xda\xaa\x2e\x7a\xfa\xdc\x39\xd3\x4a\xe5\x68\xc3\x63\x23\x50\x9e\x24\x85\xb0\x4a\xe5\xe8\x8b\x8f\xca\xf1\xe0\x52\x2f\xde\x32\x34\x48\xbb\xab\xf9\x0f\x1e\x42\x6e\x84\x1c\x9a\x64\xd1\xb5\xf7\x19\xb7\xc8\x2a\x34\x20\x09\xc9\xa5\xd0\x75\x04\xcd\x9f\x12\x1b\x0e\xc0\xd5\x4c\xd6\x22\x00\x61\xa7\xdf\xd9\x76\xec\xde\x7e\xd4\xcc\x48\x15\x90\x24\xf5\xe0\x5b\xb1\x72\x22\x1e\x5b\x0b\xde\x14\x4a\x7a\xad\x2d\x17\xfe\xdc\x2b\xfa\xd4\xf4\x38\xaa\x98\x0b\xd3\x9e\x47\x22\x19\x6e\x45\xf0\x9a\xc3\x40\x3e\x71\xdb\x1c\xfd\x72\x7a\x48\x58\x03\xf1\xdd\xaf\x2c\xd7\x9f\xc3\xb0\x41\x78\xfe\xf2\x41\xf2\xa9\xdd\xc4\xbd\x1a\xcd\x50\x66\xbe\xea\x20\x89\x27\xc2\x9c\x52\x39\x1a\x7a\xab\xf2\xaf\xf4\x52\xe0\xeb\x5f\xdf\xa1\x9b\x82\xd3\x67\xcf\x2c\x95\xa3\x4f\xe7\x0d\x32\x70\x68\xd5\x95\xac\xfb\x25\x77\x6b\x50\x6c\xd3\x21\xbd\x20\x92\xd0\x16\x45\xbe\x7b\x85\x21\x98\x00\xa6\x12\x5e\xe2\x80\x99\xdf\xae\x35\xe8\xa0\x55\x10\x4d\x19\xd5\x6e\x44\x41\xad\xd4\x4c\x3d\xf7\xf2\xc3\xc6\xbf\x0b\x72\x0b\x40\xa9\x55\x04\x9c\x69\x14\x6b\x81\xe0\xbc\x29\xc5\x17\xa3\x3f\x6d\x40\x93\x21\x5e\xa1\x02\xf5\x6a\x8b\xfc\x04\xd2\x4b\x91\xa0\x43\xe5\x57\x6b\x3d\x9c\x8d\xc7\x20\x98\x02\x3d\x85\x0f\xcf\xca\x86\xf0\xb8\xb4\x8e\x17\x24\xb7\x4f\xef\xdf\x32\xb5\x54\x8e\xee\x33\x40\xc9\x41\x3d\x3e\xf6\x64\xcf\x2f\xfa\x8c\x89\x60\x49\xb0\x6c\x6a\x7e\xf0\x83\xf7\x47\x6a\x7f\x67\x04\x90\xce\xf7\xed\xcc\x86\x25\x87\xb9\xe0\x92\x29\xc2\xc4\x7a\xbc\x78\xeb\x2c\x9d\x07\x49\x8b\x52\xe0\x86\x8c\x5d\x68\xbc\x62\x8f\x34\x55\xde\xf8\xed\xe5\x3a\xdd\xf7\x89\x25\xa0\x27\x8c\x1a\xfd\x0b\x8c\x46\x00\xe7\x8e\x82\x33\xff\xed\xfd\xd9\x14\xbb\x87\x05\x01\xad\x08\xce\xed\xac\xd3\x63\x7e\x49\x5f\x46\xa6\xad\x2a\xf3\x7a\x28\xf6\x9e\x1a\x92\xea\xf2\x37\x28\xee\xe7\x47\x3f\x3e\x85\xef\x84\x4b\xb6\x7b\x54\x3d\x84\x94\xca\xeb\xc4\xab\xd5\x09\x38\x4f\x2f\x1c\x85\x78\x5d\xcc\x55\x10\xad\xfc\x8f\x8c\xf1\xb9\x43\xab\x81\xd2\xa7\x3d\xaa\xb0\x8a\xbe\xc5\x54\x95\x91\x1f\xb0\xd6\xa4\x28\x58\x82\x12\x3f\x7e\x35\xf2\xcd\x7d\xf7\xc9\xd3\xd8\x64\x77\xaa\xf6\xf1\x8e\xd5\xa6\x40\x8a\x74\xde\x52\x2a\xa9\xdf\xdf\x3d\x4c\x0b\xc7\xba\xa9\xf8\xd1\x60\x34\x47\xa1\x2e\x81\xae\xec\xcd\xcf\xa3\x88\xa0\x40\xa1\x1f\x7d\xcb\xc0\x2b\x4b\xc3\xf2\x74\x3c\x5f\xb8\xe9\x51\xbd\xaf\x67\x4e\x87\xb7\x3e\x73\xaf\x4e\x7c\xa4\xc3\x3e\x20\x2f\x75\x71\xf2\xf1\x53\x6d\x6f\x10\x68\xe7\x4d\xc1\x03\x19\x03\xa5\x28\xc0\x3f\xa0\x26\x9e\x4b\xac\xba\xd4\x77\x0c\xd7\x23\xff\x5f\x70\xf0\x6a\x2b\x01\xff\x6e\xb1\xb9\xd1\x3d\xde\x92\xd9\x08\xb4\xb8\x1b\xcf\xc9\x97\xe0\x72\x21\x2b\xa9\xe8\xe0\xfc\x84\xd4\xc3\x85\xcd\xa4\xba\x40\xf4\xf1\x5b\x87\xa2\x3d\xcd\x81\xef\x94\x3b\x68\x8c\x55\x7d\x8b\x7a\xb0\x65\xa3\x1d\x2b\x4c\xf5\x67\x25\xf0\x5c\x2a\x47\xcb\x97\xe9\x20\xd9\x4b\x25\xca\xfd\x71\x23\xfd\xb6\x88\xdf\x48\xf5\x88\x96\xac\x92\x67\x99\x45\x20\x7e\x16\x36\x49\xb9\x85\xd2\xd2\x20\x60\x75\x62\xb3\xde\x8c\xe6\x4c\xfe\xab\x48\x3d\xbe\x97\x80\xf6\x10\x4c\x6f\xef\x1e\x85\x3b\x77\x4d\xc1\xa0\x95\x1f\x7f\xe0\xbb\xa7\xf4\xa8\xd6\xb5\x2a\x82\xd9\x08\x26\xf0\xc1\x64\x99\xf4\xac\x26\x61\x5f\x06\xe9\xf0\xe8\x03\x17\x18\x39\x4d\x60\xd5\x0d\xc9\x98\xab\x76\x1a\x06\xb8\x2e\x13\x1e\x6f\xa9\x48\x9a\xd0\x28\x8d\x21\x7b\x95\x39\x29\xbe\x72\x99\x87\x85\x9d\xaa\x5c\xc8\x7d\x15\x3d\x85\x5c\x36\x02\x01\x42\x79\xb0\x3b\x7f\xf5\x78\x2a\x67\x21\x90\xd8\xd3\xfa\x83\x66\x61\xeb\x07\x29\x9e\x60\x54\x25\xbb\x44\xea\xdc\xb1\x79\xa8\xff\x7d\xfa\x21\x73\x7a\x1c\xfa\xa4\xa6\xca\xe2\xfc\x7f\x2d\x37\x9a\x39\xe9\x0c\xb1\xbf\x70\xe5\xae\xb4\xe3\x65\x33\xd3\x0a\xb3\x3f\x37\xff\xe5\xb4\x40\xa2\x8d\x78\xd9\x94\x77\x6a\x62\x31\xef\x2d\x95\xa3\x77\x96\x9f\xa5\x2d\x1f\xe2\xc5\xd3\x18\x3e\xde\x48\x15\xfc\x26\xf7\x7c\x56\x61\x71\x1d\x2a\x37\x7a\xc1\x7a\x5e\x56\x87\xb4\xc5\x6c\x19\x59\xa2\x33\x66\xc8\x52\xaa\xc1\x6c\x8f\x34\x9b\xd0\x86\x2d\x47\xcb\xc6\x9e\x6f\x1e\x12\x22\x3e\x26\xc0\x22\x0c\x9e\xff\x17\xdf\x46\x20\x91\x54\xab\x5f\xbc\x63\x50\x38\x84\x4d\x45\x92\x07\xe5\x16\x22\xdc\x29\xad\x50\x0c\x98\x5b\x78\x44\x2e\xe5\x1b\x61\xff\xf6\x17\xee\xc8\xa7\x07\x8d\xe3\xe0\x31\xd9\x19\xa8\x9a\x9e\x59\x9a\x9e\xa8\x6e\x8d\xdc\x2c\x8b\xdc\xe5\x04\x26\x94\xd1\x5f\xaf\x4d\x9b\x1e\x93\x02\x6c\x89\xf0\x8e\x77\xa1\xca\xec\x12\x38\x05\xe3\x6d\x32\x10\x73\xb7\x25\xee\x9e\x9e\x92\xd7\x2b\x3c\xb5\xd1\x94\x45\x55\x07\xa7\xb4\xfe\xf9\xb7\xa2\xa1\xdf\xe8\xf9\xa1\x50\xea\x5d\xb9\x67\x5f\x36\x62\x33\xe7\x6e\x52\x86\xe5\x3e\x66\xd8\xab\x52\x92\x10\x84\xd6\xbf\x62\x54\x40\x75\x22\x68\xbc\x06\xa5\xb4\x0b\xa4\x90\x07\x3a\xb3\xfb\x28\x4e\x57\x7b\x49\x23\x7b\xca\x15\x07\x18\x19\x84\x45\x84\x3a\x6a\x26\x5d\x21\xbb\x76\x2d\xae\x8a\xe8\xdc\xc6\x77\x4d\x71\x74\xa9\x64\x91\xac\xa1\xdf\x77\x20\xf3\xb0\x66\x93\x38\x71\xd0\x95\x6a\x58\xc5\x8f\xdd\x8d\x54\x71\x9a\x5c\x2a\x59\x5d\xf5\x82\x99\xcc\x73\xaf\x96\x18\xac\xfd\xe3\xa5\xc6\x58\x50\xc4\x2f\xd0\x4b\x01\x01\x47\x1e\x33\x0d\xc3\x7b\x92\x5b\x7f\xe2\xee\x74\x8e\x46\x42\x3f\x9d\x6c\xbf\x8a\xd6\x25\x28\xf4\x42\x31\xbc\x6b\xfd\x08\x2c\xd6\xb4\x72\xd1\xea\x29\xe5\x52\x39\xba\x6d\x49\xba\xaf\x42\xe8\x15\xe5\xcf\x7a\x30\x6d\x8f\x32\x3b\x53\x8b\xe7\xee\x6c\x2a\x17\x78\x29\x77\x01\x88\xf7\x93\x09\x79\x82\xf9\x81\xda\x51\x97\x4c\x34\x07\x57\x8e\x43\x6b\xa9\x6d\x76\xbe\x29\x35\xfe\x4b\xcb\x43\x8f\xb4\x79\xe7\x14\xce\x53\x93\xd3\x19\xb3\xa7\xc9\x19\x73\xd4\xa5\x24\x17\xaa\x34\x00\x65\xbd\xfc\x4f\x36\x1b\xcf\x24\xf4\x92\x41\xd0\xc9\x69\xd9\x17\xdd\x43\x1d\x49\xb3\xcd\x7d\x48\x11\x1a\x56\xd1\x44\x07\xa2\x77\xbc\xc1\x48\x11\x94\x04\xb2\x43\x0d\x49\xc3\x39\x86\x5b\x6c\x5c\x82\xc1\xfe\x87\xbb\xd8\x72\x20\x11\x50\xe4\x3d\x80\xf7\x39\xb4\x19\xd1\xc1\x48\x93\x3a\xe0\x02\x91\x3b\xb0\x69\x9c\xb1\x31\x82\x7a\xe8\x33\x02\x26\xf2\xf2\xa2\xef\x92\x3e\x5e\xa5\xeb\x48\xd0\xee\x75\x5a\x9c\xbe\x43\xd7\xe3\xd5\xb8\xd2\x83\x45\x95\x94\x1a\x35\xe2\xd5\x60\xf8\xe2\x07\x6a\x6c\x6c\xf0\x29\x42\x8f\x69\x50\xfe\x13\xeb\x25\xc4\xe0\x5a\x41\xba\x99\x45\x31\x4d\x75\x88\x67\xb6\x1b\xa8\xf0\xe0\x38\xd2\xdb\x48\xac\xd5\x97\xd2\x75\xb9\x82\x00\x14\x3e\x76\xd0\xc4\x5b\xce\x9d\xdb\x29\x4f\x74\xff\xe0\x79\x7a\xaf\x88\xf6\x26\xf7\x9f\xfa\xd0\x18\x29\x6c\xc6\x6f\x06\x56\x6b\x7d\x13\x32\xe3\xf4\x43\xd2\x80\xa5\xb9\xef\x22\x3d\xd8\xe4\x1e\x85\xd7\xba\xf3\xd8\x58\x63\x73\x41\x0b\x28\x75\xb8\x28\x0c\xec\x4e\x03\x29\xa9\x63\x39\xac\x1f\x47\x72\x58\x0c\x40\x18\xaa\xe8\x5e\xe5\xe8\x32\x43\x7e\xa9\xce\x5d\x15\xc6\xf2\xee\xc1\xbf\xa0\xe1\xbf\xf2\xea\xfe\x42\xe7\x0c\x43\xc9\x81\x39\x0e\xf4\x7e\x90\x71\x67\x91\x2e\x9c\x60\x2c\x29\x3b\x7e\xca\x6d\x0c\xac\x3c\x3d\x90\x5d\x35\x99\x31\x94\xbc\xb1\x5f\xbf\x86\x54\x74\xbb\x3a\xe7\x82\x84\xe2\x81\x24\x43\x13\x22\x6c\x2a\x01\xee\x73\xd6\x8d\xc2\x98\x81\x66\x93\x08\xea\xc9\x55\xf4\x1f\x37\x8f\x44\x19\x51\x83\xb7\xa8\xd7\xe0\xa5\x72\x54\xdb\x27\x65\x80\xae\x26\x22\xa8\xf7\xd0\x76\x47\xba\xe6\x71\xd3\x8e\x2a\x8e\x5b\x35\x06\x4d\x0a\x39\xaa\x38\x89\xac\x7a\xa4\xaa\x05\xb0\x81\x94\x71\x8a\xd4\xf4\x81\xcc\xe4\xf6\x97\xcd\xee\xb8\x57\xa3\x2a\x3e\xe7\x5f\xbc\xd7\xc0\xb0\xa4\x1e\xa2\xb2\x85\xb5\x79\xa7\x1e\x49\xd3\xb6\x91\x74\xfe\xef\x16\x64\x3c\x75\xa0\x85\x0c\x77\x5e\xa8\x20\x34\xcb\xb4\xa9\x33\xe5\x52\xfe\xf8\xc4\xc4\x30\xac\x73\x76\xfc\xed\x85\xb5\x17\xf7\xb4\x4d\xb1\x44\xa0\x94\x0a\xfb\x52\xe9\xca\xe7\x0d\x4f\x13\x0b\xc0\xb4\x6a\x3c\xf0\x61\x05\xbd\xee\x21\x20\x46\x95\xff\x7c\x97\xc9\x8a\x05\xdb\x3e\xb5\x5e\x7f\x3c\x76\x0c\xa2\x11\x42\xb3\x54\x77\x43\xc7\x1b\x1c\x0c\x11\xda\x24\x8b\x81\x28\x6c\xba\xd9\x50\x4b\x23\xa2\x41\x7c\xd4\xa6\x8d\x3e\xb8\x43\x0e\x7b\xc1\x4f\xa8\x14\xc7\x8e\x4a\x18\x48\x5c\x53\x71\xd3\xfb\xfa\xad\x49\x8f\xd8\xf8\x0d\x2d\x50\xc4\xfc\x0a\x0f\x3d\x4b\xe9\x6f\x8c\xb4\xb3\xa5\xb7\x2d\xa4\xec\x6d\x6e\xc0\xab\xfa\x7c\xac\x71\x87\x60\x25\x93\xff\x3b\x53\x06\xcd\x1b\xea\xa5\x7a\x08\x3d\xb3\x0f\xa1\xa2\x98\x80\x93\x32\x1c\xc2\xdb\x87\xb7\x91\xc6\x98\xaf\x37\xf5\x4d\x83\x95\x3b\xb3\x43\x29\xd0\x3a\x92\xbb\xef\xb9\x4b\x66\x73\xbc\x09\x6d\x4e\xa5\x16\x93\xff\x07\x54\xb5\x35\x1d\x22\x83\x21\xeb\x30\xbd\x05\x24\x34\x43\x7d\xc7\xde\x17\xf5\xf4\xce\x65\xb6\xed\x64\x1b\xd3\x77\x18\xa6\x4f\xc4\x6e\x11\x2f\x88\xb3\x5f\x58\x97\x4f\x6c\x32\x0e\xfd\x66\x93\x12\x91\xa0\x8e\xbe\x38\x7e\xb4\x59\xdc\x05\x09\x64\x64\xd7\xad\xc8\xf0\x94\x7b\x81\x64\xa9\xcf\x7f\x11\xc5\x1e\x0e\xaf\x4b\x87\x95\x15\x45\xd4\x5d\x0a\x9d\x46\x7c\xcb\xb3\x15\x89\x3a\x0e\x87\xb2\x73\xfa\xfb\x79\xba\x19\x1b\xd4\xa5\xd6\x72\x76\x57\xdf\xb2\x30\x2b\xa7\x14\x70\xf9\x4a\xaf\x3a\x36\x0c\x7f\x39\x91\x89\xd0\x4f\x26\x9c\x13\xff\xd2\x55\x57\x99\xd9\xe3\x18\xa3\xfb\xd8\xcd\x59\x22\xe5\x5d\xf8\xf6\xa3\x66\x03\x96\xaa\x89\x0a\x3c\xb6\x3b\x56\x20\xf9\xde\xa0\xee\x01\xd6\xeb\x07\xab\x31\x8d\x5e\xd2\x82\x4a\x0b\x2e\x32\x36\x91\x08\x98\x47\xfb\x8c\xc4\xcf\xd9\x69\x70\xea\x43\x9f\x79\x40\x21\x48\xb2\xa8\x53\x03\x52\x0c\x93\x52\x2c\x03\xb9\xb2\xfb\x4d\x91\xc5\xd0\xb3\x98\x4c\xca\xa2\xdb\x27\xeb\x53\xcd\x0a\xdb\x82\x4e\xa1\x7c\x5c\x3f\x2e\x59\x9a\x01\xb7\x49\x3b\x0c\xda\x1c\x74\xbf\x3f\x81\x74\x30\xa5\xc0\x91\x95\x60\xd3\x0b\xbf\x1d\x6c\xc8\x4a\x31\x49\x98\x8c\x3e\xb8\xd3\x68\xc4\xb7\x28\x70\xc9\x64\x43\x6c\xec\x7d\xa6\x96\xb5\x1f\x08\xde\x9b\xa0\xcc\xf2\xc5\xfd\xa3\x34\xcb\xd6\xc9\x74\x93\x5e\x5d\x6b\xda\x44\x92\x54\x70\xaf\xc8\x1d\xf9\x94\xae\xaa\x13\xcf\x8a\x53\x1b\x10\x97\xde\xf6\x76\xf6\xe9\xb6\xa8\xc7\x1c\x02\x62\xf7\xaa\x2c\xf9\xd5\x71\x5d\x40\xb7\x98\xe3\x13\xac\xac\x54\xd8\xb9\xab\x43\x9d\x0f\x4e\x10\x17\x6a\x4e\x7c\x60\xd9\xdc\x01\x7e\x6a\x7f\x61\xf0\x7c\x23\xfa\x12\xbf\xc9\xda\xa6\x84\xd1\xe5\x6f\x0d\x47\xd2\x72\x7e\xd2\x31\xfa\xc5\x06\x99\x36\x5a\x42\x7a\x97\x16\x86\x37\x87\xa9\x73\x00\x2a\x43\x65\x65\xfc\xe1\x13\x7a\x84\xe2\x13\xd7\x97\xd8\xfd\xec\x29\xf2\x87\xe3\xe7\x60\x40\x88\x45\xab\xa1\xa4\xc9\xe6\x87\x21\x50\xa4\x96\xc0\x7f\x52\x0b\x74\xcf\xbe\x3c\xfe\x92\x73\xde\x97\x47\x40\xd5\x21\xf1\xe6\x2c\x54\x26\x8f\x33\x92\xb4\x2a\x17\x41\xe8\x81\x91\x3e\x74\x29\x4f\x6e\x31\x28\xa1\x09\x25\x12\xfe\x75\xa7\x11\x5d\xe2\x2c\xd0\x87\x39\x08\xcc\xd7\xfb\x46\x1b\xc9\x03\x0f\x3d\x69\x58\x9e\xff\x8d\x61\x65\x9a\xac\x3b\x35\x00\xc9\x75\xbd\x37\xd6\xb8\x32\x9b\x0a\x97\x79\xa9\x53\xc5\xf4\x35\x1f\xc9\x86\xae\x3a\x0b\x68\x4f\x5c\xb4\x48\x60\x69\x76\x2b\x0c\x54\x1c\xdc\xd0\x8f\x9f\x59\xa2\xc6\x7b\xef\x45\xe3\xcd\x8b\x90\x52\x4a\x3a\x12\xf4\x17\x9e\x3d\xae\x94\xd6\x48\x4d\x4a\x99\x6f\x79\x3c\xbb\xe5\x5b\x4c\xd4\x98\x07\x6c\x2a\x1c\x98\xe7\x3f\x73\x3e\x0a\x56\x0e\x23\x1e\xb3\xea\x0d\x64\xd0\x73\xd5\xc2\x34\x65\x60\x41\xfb\xee\x9d\xf4\x9e\xce\x32\x67\xc6\x15\x76\xb9\xbf\xb8\x65\x0d\x7c\x75\x69\xa9\x72\xd2\x52\x5a\x15\x66\xaa\x7e\xd6\x8b\x7a\x62\x5b\x23\x99\x10\xfd\x99\x6e\x3d\x0c\xb5\xa8\x13\x30\xab\x7d\x16\x46\xb1\x56\x54\x1d\xaa\x94\xe8\xc4\x78\xb3\xad\x41\x6a\xc4\xcb\xb4\x89\xfa\x73\xdb\x06\x9c\x95\xae\xc0\x56\x5c\x04\xbc\xb2\x1b\x71\xc0\x1c\xaa\xb2\xea\x9d\x0b\xe5\xaf\x51\xc1\x25\x9e\x24\xf7\xf1\xe1\x1a\xcb\xdd\x8b\x32\xfd\xc2\x73\x27\xf5\x9d\xf0\x10\x9c\x66\x02\x30\xfc\xec\xcf\x3f\xb1\x0e\xc9\x3e\x24\x6e\x9f\xa5\x72\x74\xe5\x6e\x74\x92\x37\x58\x9d\xc9\xde\xea\x15\xb7\x9a\x1e\x9b\x15\x22\x48\x43\x61\x97\x93\xc4\x60\xe7\xc9\x76\x27\x9e\x20\x48\xbb\x5d\xf9\xdb\xe6\x18\xf9\x66\x53\x30\xaf\x56\xe1\x44\x24\xf2\x9d\x6b\x87\xa2\x01\x77\xe7\xe5\x71\xfa\x56\xd8\xd5\xd5\x81\x8b\xde\xa9\x53\x74\x37\xb0\x54\x8e\xbe\x81\x8a\x8c\x1e\x00\xb7\xc5\xdf\x34\xe5\x4e\xa4\x52\xda\x22\x1e\x6f\xc5\x09\xf1\x60\x43\xd0\xb8\x22\x19\x32\x72\xb2\xfb\x62\x51\x87\x07\x75\xe1\x0a\x7a\xf2\x21\xa4\x11\x2c\x53\xca\xdc\x67\x9f\x1c\x83\xba\xe1\x66\x85\x6d\xeb\x67\xeb\x52\x9b\x59\xf1\x61\x15\x7f\xd0\xf8\x57\xb3\xcb\x40\x79\xec\xc4\xbb\xa5\xe4\x71\x8f\x96\x4a\xe5\xe8\x4f\x8f\x5d\x68\x06\x70\x2f\x50\xb6\x36\xfa\x44\x74\xdf\x35\x3b\x5b\x40\x47\xf2\xb4\x86\x76\x50\x1f\x91\xb0\x24\x97\xae\xd0\x9d\xc2\x5f\xbd\x9e\xb6\xec\x2c\xd1\x6e\xb0\x77\xdf\x3e\xa4\x27\x66\x93\xa6\x6c\xdf\x7e\xbb\x03\xd9\x0f\xc4\x3f\x95\x9d\xe4\x03\x3b\xcd\xb9\x9e\xc5\x6b\x12\xc5\xa2\x32\xa4\x6b\x5f\x3e\x5b\x15\x2c\x52\x72\x32\x7e\x35\x33\x5f\xcc\x86\x1e\x90\x8f\x97\x1d\x6b\xb0\x6c\x35\x5c\xea\x90\x0a\x6d\x23\x14\xb6\x1a\xd2\x4e\x7c\x18\x71\x78\xea\x71\x19\x2e\x51\x2a\xab\x77\xfe\x05\x0d\x75\x99\x2c\x5e\xee\x64\xaf\xb8\x4a\x6d\x2a\x12\x61\x26\xe8\xee\x09\xc3\x95\xc8\x72\xb8\x9f\x98\x94\xf4\xe7\xbe\xbd\xf5\x42\xe3\x60\x76\xb9\x15\x7f\x80\x95\xa0\xf8\x41\xa0\xe3\xd2\xec\x45\x74\x4d\x2f\x4d\x9f\x7e\xd9\xf4\x2e\xb5\x0b\xf6\xde\xac\x13\x86\x8a\x88\xf7\x23\x52\x77\x7e\x39\xdd\xca\x82\x20\x05\xe7\xfc\x63\x0f\x0f\x53\x7b\xd5\x22\x4d\x62\xc9\xdb\x2d\x7c\x63\x6b\x9b\x55\x51\xe2\x60\x53\x1c\xfa\x8a\x86\xe8\x33\x1c\x15\x4e\xe9\xa6\x62\x50\x47\x4a\x0b\xf3\xb5\x91\x70\x8b\x23\xe2\xee\xef\xfa\xd2\xdf\xc7\x0e\x08\xfd\xc5\x21\x6f\x67\xb3\x9b\x49\xad\x44\x3a\xea\xaa\x07\x75\xc2\x10\x3a\x8e\x60\x16\x82\x8b\xe4\xeb\x47\x51\x8f\xa5\x0e\x74\x83\x52\x39\x1a\xd2\x32\xc4\x5c\xe3\xe3\x4a\xa9\xe0\x1c\xc6\x1a\x3d\xc2\x66\x52\xe5\xec\x2c\x83\x44\x67\xd5\xa9\xd5\x90\x06\x71\x85\x7f\xee\x34\xde\x63\x3d\x14\xaa\x7d\x5f\xee\xcf\x1f\xd9\x6e\x40\x47\x89\x20\x36\x4b\x14\x02\x0a\x6f\x9e\xd4\x1b\x98\xfa\x16\x71\x12\x72\xe9\x1b\x93\x51\x39\xcc\x3c\xbb\x2a\x65\xe9\xfe\xe6\x51\x44\x59\xa0\xa2\x46\xa0\x09\x97\x5b\x7e\x12\x8d\x9e\x04\xb8\x93\xc6\x25\xf5\xcb\x1a\xb0\xd5\x4d\xac\x5b\x42\x24\xc3\x16\xdd\x30\xd4\x6c\xe4\x3b\x3c\x14\x6a\x37\xd9\xcb\x10\x48\x86\xa0\x31\x53\xfe\xe2\x37\x4c\x6f\xa8\x34\x35\x2e\xbc\xba\xd9\xbc\x57\x06\xed\x60\x55\x9a\x57\xb6\x0d\x4f\x32\x67\x3b\xd4\x56\xce\xcb\x47\x99\xb2\x2d\xdc\xa7\xc9\x26\xe9\x31\x7c\x66\xe8\xc6\x00\xd2\x0b\xb9\x93\xe4\x2a\xff\xcd\x63\xda\x7a\xaa\x8a\xac\xa7\xf2\x2f\x5c\x61\x60\xf0\xa7\x25\xad\xba\xb1\x42\x07\x55\x97\xf3\x2c\x9b\xe9\xf6\x57\x65\xa3\xe7\x5a\x22\x32\x1c\xf5\xd2\x38\x13\x24\x41\x49\x82\x04\xfb\x8f\x4b\xb3\x5f\x75\x79\x69\x96\xd2\x0a\x3c\x6b\x85\x0c\x4c\x4d\x12\xb0\xa4\x8d\x72\x64\xf7\x48\x74\x00\xc0\x62\x92\x6f\xfd\x6f\xb7\x9f\x83\x3a\x46\xa2\x9a\x32\x7d\x8b\x3d\x48\x0c\x3b\x2e\xc1\x25\x27\x61\xf4\x46\x64\xb0\xce\xfd\xb0\x45\x9c\xde\x10\xca\xb9\xef\x1b\x40\x00\xd2\x23\x4d\x03\xcb\xfd\xf9\xeb\x8e\x1b\xe9\x1e\x6b\x51\x05\x08\xf7\x8e\xca\x8b\x8d\x8b\x04\x87\x34\xe1\x62\xc9\xb6\x6c\x24\x8a\x0f\xb9\x06\x6f\x65\x8e\x89\xe8\x66\xd4\x33\xb2\x58\xc0\xfa\xa8\xe7\x03\xe9\x3e\xba\xe3\x8a\xb3\x93\xf3\x54\xc9\xfd\x47\x37\xce\x93\x0b\xc1\x25\x41\x9d\xba\x04\x72\x9b\x72\x7f\x71\xfb\xf3\x5a\xc4\x86\x69\xb8\x45\xf4\x8e\x6d\x6a\xfa\x4a\x1f\x0d\xf5\xfa\x6b\x8b\x33\x6a\x0a\x32\x6a\xef\x16\x7a\xe9\xb7\x1c\x70\x6f\x40\xe1\x64\xf4\x5d\xe8\x98\x9d\x05\x19\xf7\xbf\x6c\xcc\xb6\x27\x66\xce\x56\x01\xa6\xd4\x35\xd1\x0c\x16\x7e\x70\x5a\x04\x56\xb1\xe3\x59\xe5\xf7\xe7\xc1\x94\x52\x29\xa4\x77\xbc\x68\x30\x03\x66\x27\x53\xe6\xdb\x1e\x94\xad\x6b\x22\x84\x92\xe4\xcb\x3f\xfb\xb0\xfa\x11\x74\xdd\x00\xda\x59\x43\xfc\x01\xea\x84\x3e\x64\x6c\xfd\xb9\x9b\x54\xbd\x7e\xf5\x46\x8b\x36\x81\xb3\xb1\x6a\x96\x39\xf2\xf6\xb8\x05\xf6\x2e\xc9\x40\xe9\xbb\x7b\x4d\x2f\x66\x4f\x4d\xc3\x8f\x4f\x4e\x9f\xfd\x46\x86\x6d\x6b\x89\xd1\x6c\x9b\x14\x50\x27\xd5\x1e\xfd\xdc\xf0\xb4\x44\x9d\xd9\x09\x4a\x85\x7f\x32\xb4\x85\xeb\x44\xb8\x50\x81\x7c\xf1\xdd\x31\x19\xf0\xa8\xa0\x40\x6f\x03\xd5\x88\x7e\x24\x47\xe4\x86\x01\x8b\x83\x9a\x89\x4b\x71\x0c\x7f\xe5\x8a\xc3\xa5\xa0\x8d\x6c\xa8\x4d\x78\x4e\x9f\x74\xa1\x47\x5a\x84\x39\x49\xeb\x2e\xf7\xa9\xad\x3a\x66\x76\x13\xab\xd1\xe4\xd0\x56\xbb\x65\x54\x87\x91\x1d\x08\xca\x6a\x5e\x02\xdf\x76\x8e\x67\x93\x07\x70\x3a\x06\xa3\x0e\xd9\xa2\xcd\xbe\xfa\xbf\xda\xa9\x8b\x80\xe9\xb3\x67\x02\xd5\x6d\xd2\x78\xe4\x9c\x5e\xf1\x03\x62\x39\x12\x28\xb1\xfb\x36\xad\xae\x41\x6a\xd4\xb3\x4c\x75\x8d\x68\xa9\x89\xab\x06\xac\x03\xbc\xc3\xdd\x87\xd2\x67\xde\xcd\xa1\xa6\xbc\x7c\x0d\x62\xe5\x31\x70\x56\xc8\xfd\xdd\x03\x98\xd3\xc9\x6d\xc9\x24\xbe\x66\x9e\xfe\x62\x95\x11\x52\x1b\x54\x69\xa9\x0a\x28\xf3\xd6\x6a\x5d\x40\xbb\x55\x2a\x47\x23\x0f\x24\xa5\x42\x35\xf4\xe3\xb4\xfd\xf0\x09\x53\x23\x5a\x39\x8f\xd7\x59\x53\xc1\x23\x2e\xde\x9c\x0d\x30\x54\x84\x4d\x05\xd5\x28\x2c\x9b\x33\x02\x9f\x6b\x5c\x40\x7e\x11\x5d\xbd\xe6\x2c\x6d\x39\x10\xef\x9a\x7f\x99\x68\xa4\x9d\xdc\x51\x60\xe3\xe4\x64\x7d\x57\x6b\x5e\x35\x7a\x43\xcc\x9f\x7f\x51\xa1\x41\x28\x55\xc6\x2c\x4b\xc7\x8d\x45\xfd\xae\xde\xb6\x4a\x2a\xff\x9f\xa3\xf4\x68\xcc\x57\xf2\xbd\xd1\x1f\x3c\x79\x0e\x2c\x76\x18\xee\x42\xe4\x8e\x4d\xc8\xb6\x19\xfa\xb8\xc3\x83\xde\xb0\x51\x67\x19\xdb\xd6\x62\xf1\x4e\x2d\xdf\x5d\xe1\x70\x4e\x9f\x3d\xd6\xe8\xe3\x71\xd1\x48\x2a\x69\xb2\x21\xbb\x75\x4a\xa5\x44\xd6\xe3\xa7\x13\x71\x87\x94\xdb\x25\x87\x73\xe5\x2a\x56\xd8\xb2\x3d\x1b\xb7\x66\x4c\x93\x0e\x6a\x2f\x1c\x1f\x86\x1f\xe8\x52\xd9\x25\xfa\x8f\xd7\xc6\xa0\xf3\xa2\x87\x0a\x98\x91\x2a\xf5\xf6\x27\x06\xcc\xf4\xeb\xa4\x49\xd3\xfa\xe7\x8a\x6a\xe8\xc1\x01\x34\x1e\x7e\x3e\x9e\x04\xe3\xa7\x6d\x9c\x53\xb1\xe9\x34\x7b\xd6\xfc\x29\x00\x08\x2b\x95\xa3\x62\x55\x2f\x2a\xd7\xb2\xe3\x3d\x6d\x4f\xca\xf2\x24\xee\x5f\x89\x75\x49\x7a\x04\x0b\x02\x20\xc7\xe4\xcf\x1b\xac\x2b\x58\x87\x78\xa0\x70\x94\xff\x73\x57\xc6\x1e\x4b\xa9\x07\xbe\xdc\xd4\x65\x3a\xf1\x3c\xd6\xa2\xc2\x27\x02\x8b\xae\x2c\x5d\xa4\x1f\x13\xb8\x4e\x40\x7d\x20\x39\x86\x51\x67\x76\xd5\xf2\x5a\x5c\xa9\x61\x09\xea\xa7\xb7\x1b\x8d\xc6\x6a\x55\x4a\x0d\xc9\x13\xbe\xb8\x39\x98\x6c\x54\x9c\x01\x15\x15\x2a\x6a\x53\x15\xa1\x3a\xbb\xa2\xfe\xe6\x39\x54\x9b\x07\x94\x80\x24\xda\x79\xcf\x8e\xc0\x77\x26\x02\xa5\x3e\xf5\xf3\xa3\xc3\x91\x4e\x80\xaf\x46\xe8\xb9\x2f\x3c\xa4\xb3\x01\x62\x59\xa1\x9b\xf8\x17\xe4\x2b\x1b\x93\x31\x6a\x7c\xd8\x26\xc6\x08\x6b\xb1\x3d\x35\x03\x4a\x6d\x57\x1d\x29\xa2\x51\x27\xf0\x91\x50\x78\x74\xf9\x6d\x89\xc2\x0a\x68\x3e\x42\xb0\x7c\xe0\x51\x25\x95\xc8\x84\x15\xb2\x00\x60\x2d\xb9\x5f\xad\xc6\xd7\x97\xb4\xf4\x0b\x7b\xbb\x4c\xf3\xcb\x16\x17\x7e\xd2\xf8\x19\x22\x85\x09\x24\xe6\x9c\xba\x4d\x87\xf7\xba\x4a\xda\xe5\xff\xd6\x2b\x71\x19\x56\x85\xff\xbf\xe1\x61\xf9\xa5\xc9\x7a\x83\x0a\x68\xc3\x1c\xd4\x44\x23\x4c\x29\xf9\xc6\x55\xcf\xdc\xdb\xd2\x21\xb4\xd4\x33\xce\x6d\x79\x53\x55\x7f\x0d\x92\x3e\x8e\x8f\xcd\xc9\xc6\xd0\x38\xf4\x27\x3a\xf7\x63\x86\xa9\x83\x5a\xda\x62\x49\x09\xbb\x9f\x0b\x8c\x90\xb1\x99\x45\x24\xcf\x33\xf7\xde\x01\x54\x82\x03\xe6\x1d\x1d\x90\xae\xe1\x31\xdf\x24\x61\x9a\x9b\x14\x9d\x7b\xcc\xae\x73\x10\xd4\x69\x8f\x6f\xf4\x63\xf6\x7f\x80\x28\x82\xdc\x61\x2d\xd9\xcf\x7c\xe9\x4c\xdd\x54\xf1\xc2\x40\xa0\xf5\xfc\x87\xc7\x92\xc1\x9d\xdb\x14\xdc\x95\x5e\x87\xb9\x47\xa6\x9a\x2a\x51\x16\xf5\x02\xa5\xeb\xf6\x85\xe3\xd9\x59\xa2\xcf\x3c\xef\x74\x92\x96\xb9\x57\x6f\x36\xd8\x1a\xa4\xe6\x77\x2a\x89\xa2\xe0\x52\xc4\x27\xe6\x4e\x4b\xc6\xd7\x19\x68\xa1\xb6\x88\xe3\x10\x9b\x3b\x0c\x4e\xd1\x51\x2f\x0f\xc7\x42\x2d\xea\xdd\x16\x9e\x1c\x90\xca\x3d\x5b\x34\xf5\xc5\xfb\xbf\xfb\x34\x46\x87\x43\xee\xc3\x90\xc4\x6c\x02\xad\x4c\x5a\xc5\x77\x6c\xc0\x7d\xa5\x38\x2d\x01\x06\x65\x7f\xf1\x73\x4f\xa5\xe8\x3c\xd7\xee\x4c\xe6\xad\xe7\x18\xba\x99\x36\xad\x04\x09\x4d\x6d\xd2\x8a\x6c\xb7\xa4\x11\x5a\x75\xd7\x18\x94\xe5\x1e\x41\x84\x26\x8b\x54\x98\x47\xe5\xee\x28\x9e\x77\xd4\x80\xa8\xb1\x6a\x90\xd6\x7f\x9b\x8e\x2b\x2d\x6d\x69\x27\x17\x67\x42\x1b\xb2\xf9\x74\x83\x7a\x1e\xb5\x7b\x55\x14\x49\x0e\xb1\x3f\xcc\xd7\x2e\x75\xed\x82\xe5\x85\x33\x1f\xd6\x19\x6c\x37\xaf\x94\xca\xd1\x03\xf3\xf5\xf8\xa9\x1a\x4a\x2e\x0b\x9c\xcd\x92\x09\xf6\x37\x8f\xff\x95\x2a\x1a\xa5\xe8\xf5\x4f\x57\x99\xb6\xab\xa2\x31\xa5\x33\x23\x01\x33\x54\xfe\x05\xf7\xe4\xf8\xa6\xbc\xf7\x3c\x14\xd1\x88\xcd\xb2\xca\x80\xf9\xae\xb7\x74\xc4\x23\x15\x0e\x7d\x45\x6b\xc5\x08\x15\x61\x12\x66\xa0\x6c\x83\x7f\x6a\x9f\x89\x25\x54\xea\xd1\x12\x34\x5c\xec\x5c\xae\x1b\x07\x0c\x8b\xbd\x3f\xfd\x86\x1c\x34\x2f\x4a\xc6\x1f\xc6\x28\xe9\xaf\x9f\x37\x28\xc5\xac\x41\x9d\xde\x84\xa0\x3f\xe9\xb8\x59\xaa\x93\x66\x40\x85\xaa\xc5\xa7\x6d\x1b\xac\xf2\x06\x10\xc1\x8b\xfe\xe5\x39\x23\xe5\xe4\x6e\x05\xe6\xae\x30\x79\xea\x43\x84\xc1\x2a\xab\x85\x82\x26\x3c\xa9\xfe\x35\x72\x71\xc3\x22\xb4\x98\x8c\x79\xf9\xe7\xc7\x1b\xa0\xe4\x3a\x91\xd8\xe3\xc2\x6a\xf9\xb5\xcb\x42\x07\x84\x13\x72\x2f\xec\x4c\x44\xed\x7c\x6a\x81\xea\x5f\xd4\xb3\xc7\xe8\x26\xc5\x45\x80\x4f\x2d\xee\x29\x8a\x57\x9e\xdd\xad\x42\x1a\x60\xfb\xe3\x22\x19\xd4\x50\x8e\x28\x9e\x05\x71\x5d\xaa\x2b\xa0\xe8\xa1\x45\xc8\x57\xbd\x5d\x4e\x54\xec\x50\x7e\x9d\x75\x72\x4b\xc8\x1c\x6c\x73\x95\xeb\x78\x3f\xab\x0b\x52\x0f\x89\x47\x15\x93\xa0\xcd\x6a\x76\x75\x87\xde\xd0\x26\x74\x27\xfa\xc2\x6b\xba\x6e\x0f\x74\x48\x8d\xfe\xb0\x1a\xe5\xd2\x73\x2f\x9f\x5d\x2a\x47\x8f\x4c\x3e\x5f\x37\x6b\xa7\xcd\x0d\x4c\xd4\x4b\x74\xc6\x71\x79\xa3\x57\xae\x5a\xbe\x74\xc5\x35\xab\xcb\x2b\x92\xb3\xa2\x81\xdc\x01\xaa\x61\x5c\x51\x45\xfb\x5e\x1e\x9e\xc4\x4e\x97\x0a\x4b\xb1\x2f\x0b\xe7\xac\x32\x81\xea\x82\xb6\xa8\x88\x03\x28\x0c\x35\x97\xbf\x2c\x9f\xf0\x4a\x35\xf7\x85\x21\x69\xe1\x91\x27\x91\x6c\x65\x8f\x27\x15\x72\x21\xd9\x9e\x34\x4f\x8f\xce\xe0\x82\x53\x38\xf4\xaf\xdf\xfa\x8b\xe3\x0c\xad\x1e\xff\xf3\xfc\x50\x95\xeb\x04\xac\xe4\x2b\x01\xbb\xa9\x2b\x75\x6a\x14\x90\x5e\x35\x56\x6b\xac\xfc\x4b\xbd\x42\xa0\xfe\x28\x16\xc8\xff\x0e\x90\x64\x2b\x99\xc6\xdf\xb4\x02\xfb\x3b\xbb\x6e\x98\xc2\xe7\x73\xcb\x8d\x69\x4b\x37\xaf\x7b\xbe\x84\x0f\xeb\xe4\xf6\xe6\x07\xf0\x88\x97\xf9\x32\x82\x5f\x30\x58\xe1\x25\x25\x7d\x3a\xde\x45\x7b\xb5\x2a\x62\x40\xdd\x52\x39\xfa\xd7\x8d\x1d\x59\x75\x1f\x43\x0f\x6e\x94\x7c\x3b\xb3\xba\x90\x9f\x45\x7f\x71\xc0\x41\x04\x0a\x77\x21\x75\x02\x4e\xd6\x1b\xc3\x74\x17\x33\xf5\x3a\x3f\xb5\x79\x0c\xee\xe3\xcf\x9b\x92\x2c\xdf\xf8\xf6\x06\x7e\x30\x1c\x37\x45\x89\x2d\x4f\xff\x15\x77\x66\xf3\xbb\x5e\xee\x34\x58\xa9\x49\x9c\x06\x6b\x57\xdc\x8d\x0e\xde\x26\x37\x2d\x11\x82\xc4\xf5\xcb\xf1\xdb\x74\x13\x82\xd7\x48\x00\x34\xca\xf1\xa7\x0c\x3d\x3f\xd7\x65\x35\x41\xbc\xc0\xef\x4c\x22\xd2\xaa\x15\xba\xf4\x25\x71\x96\xe3\xb7\x01\xaf\x0b\x67\xee\x46\x87\x20\xf1\x1a\x25\xc1\x2b\x15\x95\xfe\x47\x87\x8c\x30\x2e\x78\x9d\x55\x18\x92\x9d\xcf\xff\xe3\x8e\xd1\x66\x9d\xab\x74\xe7\xfa\x73\xff\xb0\x25\x09\x35\x00\x08\x86\x1e\xd4\xf4\x93\xb2\xe2\xeb\x61\x9e\x27\x75\x59\x06\x4f\x40\x6a\x6b\xa4\x41\x7b\x15\xea\xe7\xc2\x37\xb3\x51\x89\x38\xa4\x42\x5c\xa2\x05\x63\xf2\x3f\x1d\xa8\x9d\xe4\xb0\x2b\x7c\x6e\xe6\x0a\xf9\x96\xaf\x25\x2e\x41\xe1\xfd\xd6\xe5\x7a\xd4\x56\x6b\x63\xa7\x17\xba\x0c\x42\x21\xf1\x03\xee\x31\xbf\x9e\x00\xf3\x0b\xef\x6e\x93\x6e\xbf\x57\xa9\xd3\xd6\xac\xf3\xbe\x34\x07\x99\xf1\xf7\x56\x1a\x38\x1b\xbe\x7d\x9a\x3c\xab\x56\x11\xcf\x46\x65\x45\x6e\x78\x51\x91\x14\x29\xc4\xf1\x2d\x5d\x7a\xe3\xb4\x98\x05\xf2\xab\xea\x6e\x07\xbf\x62\x90\x41\x98\xc7\xad\xd0\x21\x89\xd4\xf5\xbf\x3d\xd6\xa6\x85\xc5\xb4\x5e\x51\xee\xa7\x07\x86\xa2\xb8\x37\x63\x1a\x44\xa5\xd1\x8e\xfc\xf6\x6b\xe0\xdb\x8b\xae\xc1\xf3\xb5\x3b\xad\x4e\xa8\x62\xe0\x02\xee\x59\x92\x46\xd4\x1a\xc5\x4a\x99\xf3\x1f\x68\xb3\xc7\x03\xc7\x0c\x95\xd5\x5d\xf6\xba\x32\x9a\xe5\x36\xac\xe6\x89\x33\x54\x7a\x46\xc2\x80\xf1\x50\x1d\xda\xb7\xbd\x60\xf0\x60\xc3\x00\xac\x6f\xa3\x57\xbb\x47\xaa\xd2\xce\xa6\x82\xde\x12\xa6\x03\x98\x7d\x73\x0c\xfd\xd6\x80\x0a\x87\xa5\x60\xd6\xfe\xdc\x1b\x22\x7d\xdf\x9c\xb4\x09\x63\x17\x1e\x5c\x35\x0a\xa5\x1c\x59\x41\xaf\x87\x3b\xb4\x28\x4c\xd8\x76\xf2\x7c\xa1\x6e\xf2\xa1\x61\xba\xa5\x7a\x7a\xcf\x1e\x4a\x9f\x53\x18\x60\x29\x94\xce\xe3\x72\x0d\x60\xd9\x95\x52\x39\x5a\x32\xd0\xa4\xa7\x57\xc3\x1a\x95\x23\x88\x68\xf5\x9d\xd9\x67\x3b\x09\x64\x8d\xa6\x26\x76\x11\x67\x2f\xec\xc0\x33\x10\xb3\x67\x78\xcb\x0a\xc3\x57\x38\xae\xbb\x1c\x34\xd7\xce\x8f\x8b\x14\x1d\x99\x55\x01\xb0\xf9\xa0\x54\xfd\x2f\x2d\xa1\xed\x4f\xac\xb8\x6a\xbd\x31\x95\xa2\xe0\x4b\x9a\xd4\x64\xd7\xda\x3a\x6d\xac\x85\xf1\xab\x9e\xb7\x57\x37\x6e\x03\xee\xa1\x56\x7f\xee\xd6\xa7\x8c\x3a\x40\x30\x9a\x78\x19\x0c\x5e\x89\xc2\xbf\x90\xe1\x3f\xfa\xe8\xbd\x06\xa7\x89\xd6\x05\x15\xd8\x0e\xad\x50\x8c\x90\x6f\x28\x6a\xc9\xe6\x87\x4f\x40\x85\x85\x25\xa8\x14\x2a\x2a\x9c\xec\xce\x16\x50\x60\xa8\x48\x5c\x3f\x3b\x0e\x2e\xfc\xdb\x2c\x3d\x50\xa2\xb8\xb2\xfa\x8f\x07\xcc\xb3\x4c\xd8\xc4\x18\x71\xe6\xc6\xb6\xd4\xa9\xe5\x56\x88\x90\x0e\x12\x9f\x7d\x5f\xc7\xf3\x6e\x5e\xea\x86\xa6\xf2\xe1\x97\x4d\xdb\x5e\x5b\xd9\x4d\xcf\xdf\x2e\x6b\xdd\xd5\x3d\xd4\x69\x51\x74\x70\xfd\x79\x0f\x1a\xe3\x48\x37\x8b\x52\x39\xfa\xbb\x63\x67\x25\x19\x9e\x54\x75\xce\xff\x02\xad\xf4\x26\x77\x98\xd5\x2b\xd5\x1f\xca\xfd\x85\x4a\x3e\x5d\x40\x7e\xd8\x8e\xac\xec\xd9\x62\xaa\x55\xf5\xf4\xaa\x94\x36\x3a\x7b\xb8\x11\xa0\xab\x55\x06\xf6\x30\xc9\xf8\x2c\x7f\xd1\x6b\x3a\x3d\x6a\xf0\x06\xf0\xaf\x36\x4f\x34\x55\x99\xc3\x00\x27\x12\x9f\x31\x58\xe3\x33\x66\xcc\x9a\x9d\x2c\xb0\x4b\x4e\x1a\x58\x45\x66\x7b\x71\x46\x0a\x99\xee\xb5\x1b\x64\x4a\xe3\xf6\x06\x75\xee\xf0\x1a\x54\x4f\xab\xde\xd3\x77\x0e\xe4\x48\x44\x82\xac\x68\x3a\x5b\x0f\xf1\xeb\xcc\xab\x05\xdc\x2b\x09\x2e\xab\xdd\x2e\x43\xd4\xb6\x49\x05\xe3\x0a\xb6\xf2\xab\xc9\xb2\xec\xea\x11\xd4\x0f\x94\x67\x5b\x90\xed\x07\xcc\x9c\x9d\xf6\xc5\xff\x73\x6a\xba\x7c\x98\x85\x58\x7a\xb9\x68\x7c\x9b\x5e\x68\x20\xb8\xa3\x71\x06\x3f\x1f\xa8\xf5\xfd\x89\x45\x6c\xea\xb2\x76\x66\xf6\xde\xbd\x7a\xac\x89\x15\x3d\xfe\xb8\xb6\xbd\xe5\x24\x52\x86\x5a\x7f\xe1\xc7\x33\x90\x94\x5c\xbc\x32\x83\x52\x39\xfa\xca\xdd\x48\xbf\x3c\x84\xb4\xbe\xdc\x5f\x6c\xdd\x63\x5a\x05\x27\x2e\x41\x4a\x84\xef\x55\x6c\x20\xd2\x52\x68\xfc\xde\xf5\x12\x14\xee\x72\x41\xe3\xec\x84\xda\x4c\x19\x64\xfe\xa0\xa8\x4e\x80\xd0\x09\x58\x4b\x69\xe1\xef\xdc\xa5\x31\x29\x4d\x62\xb1\x2a\x6b\x07\xf0\xbc\xb8\x37\x1b\x03\x1a\xa4\x46\x5c\x9a\xe9\x8b\x36\x17\xea\x43\x18\x94\x20\x82\xf8\xeb\xd5\x11\xf6\x8b\x47\x35\x11\x8d\x83\x09\x74\x1b\xd9\xe7\xc8\x6e\xb9\x7b\x10\xa2\xfc\xd0\x50\x94\x52\x0a\x99\xc6\x5e\x70\x44\xae\xb6\x6b\xb9\x90\x62\x72\x30\x30\x47\x82\x28\x15\xe2\xd8\xa1\x65\x61\x09\x4c\xb6\x1a\xc9\xb2\x36\x29\xb5\x55\x43\xa9\x54\x8e\x4e\xcc\xc1\x4a\x6a\xda\xa4\x76\x95\x31\x63\xec\x9a\xad\xfa\x2d\x67\xdd\x65\x42\x52\xbd\x5e\xfd\x72\xf3\x47\x27\x22\xa3\xd5\x38\x28\x8c\xf3\xb4\xa1\x05\xc0\xc2\x06\xbd\x6e\xcc\x73\xe2\x72\xde\xb3\x75\x7a\x95\x3b\x32\x63\x38\x42\x2b\x37\x1d\x0a\x2f\xaf\xb8\xc6\xd0\x13\xf4\xb8\xe8\xa1\x35\x89\x84\x4b\xea\xa2\x21\x23\x91\x99\x0e\x6b\x34\x08\x73\x78\xab\x54\x8e\x8e\x1d\x54\x3d\x41\xc2\x9c\x38\x39\x8e\xef\xe4\xfd\x4d\xd9\x10\xd3\x22\x56\x18\xba\x89\x7c\xf4\x7b\xd9\x17\x1e\x10\x41\x44\x46\xc9\x37\x7f\xe3\xfb\xba\x11\x4e\xa0\x30\xcd\x7d\x7c\x87\x4e\xc2\x41\xe0\x59\xe6\x9e\xaf\x0e\x35\x64\xf1\x79\x32\xeb\x4d\x90\xb0\x9d\x63\x65\xe2\x68\x53\x8b\x0b\x2d\x19\x7a\xe4\xfe\x11\xea\xc7\x2e\x07\x47\x65\x25\xd1\x36\xee\x21\x03\xf8\x26\x48\xa5\xa2\x60\xd8\xd1\x6f\x6f\x3b\xad\xac\x93\x94\x9d\x89\x38\x82\xea\x05\x82\x48\x19\xc1\x7b\x34\x00\xca\x6f\x61\x9a\xd5\x61\x27\xed\x68\x81\x53\xb8\xec\xba\x7c\xe7\x60\xd2\xa7\x6d\x3a\x5c\x4e\xee\xa2\x6f\x9c\xd4\xcb\x3f\x20\x4d\xaa\xc4\x6e\xe4\x1f\xcc\x1b\x6a\xe4\x2d\x40\x4f\x70\x94\x10\xce\xdc\xe7\x87\x26\x48\x9b\xab\xae\x92\x6f\x32\x5a\xeb\x9d\xa5\x62\x41\xad\x26\x1f\xe2\x87\x16\x0e\x4e\x16\x92\x1c\x41\x7f\xf2\x56\x33\x19\xaa\xca\x5c\x08\x8e\xd8\xdf\x9c\x68\x43\x1e\x3b\x2c\xcd\xa8\xdf\x33\xdc\x38\x1c\xe9\xf6\xaa\x8a\x8b\xc2\x8d\x77\x9b\x36\x79\xbc\x99\xc8\x91\x17\x2e\x7b\x7c\x54\xa6\x43\x27\x3c\xe2\xc8\x4e\x65\xfe\xc2\x3e\xbd\xfc\x66\x4f\x9b\x56\x6a\x2a\x45\xa7\xe2\x8d\x95\x51\x88\x8e\x54\x13\xbc\x59\xe7\x15\x46\xa0\x03\x6f\xb8\xa5\x5b\x0e\x25\x9e\xf6\x02\x18\x73\xa0\xcd\x7c\x96\x7a\xb5\xa0\x9e\x5c\xcd\x27\xf2\x26\x8f\x9b\x79\x8d\xa4\x5b\x9d\x1f\x73\x8f\x21\x49\x50\x27\xaa\xee\x83\x9d\x36\xf3\x0d\xcd\x55\xe6\x95\x40\xb6\xa3\xcb\xd1\x25\x6f\x8c\xc1\xe0\x20\xc7\xa1\x92\xc8\x0f\x7f\xf3\xc3\xc7\x32\xc3\x79\x3f\x69\x74\x46\x57\x18\xd8\x20\x87\x37\x69\x1f\x0e\x91\xf9\x5d\xcf\x9a\xe4\x39\x87\xd6\xb4\x8f\xee\x95\x0b\x8d\x27\x11\x56\x88\xb4\x00\x85\x56\xe7\xdf\x3d\x68\x70\xeb\x36\xca\x79\x39\xd8\x07\x0e\x31\x88\xa4\x2e\x73\x18\xd0\x57\xa5\x7b\x96\x12\xe8\x18\xb0\xfa\x7c\x73\x6b\x58\x94\xca\x37\x2f\x27\xae\x5f\xdb\xa3\xe4\x10\x79\xe8\xcb\xf3\xf8\xde\x75\x68\x6e\xd3\x6b\x7b\x14\x66\x07\xe7\xbc\x9d\xfc\x9e\x47\x7b\xe3\x2c\xe0\xcb\x5b\x46\xe2\x10\xac\x7d\xdb\x47\xbe\xa0\x9b\x7e\x21\xaa\x0a\x8b\x5b\x56\x1a\xd3\x50\xe6\x2a\xcd\x9c\xc2\x16\x04\x5c\x6c\xc6\xa9\x2e\xd4\x33\xab\x0d\x45\x49\x41\xdd\xc4\x42\x06\xca\x8e\xeb\x36\x24\x29\xb5\x25\x8f\xcf\x8b\xee\xee\xd0\xb1\xd7\x2c\x1b\xa3\xf7\x5f\x4f\xa9\xb0\x0e\x16\xdc\xd9\x3f\x18\x1b\x92\x91\x38\x97\x83\x21\x4a\xb1\xf0\x5e\xfa\x71\x16\xef\x6c\x57\xc3\x9f\xa7\xd0\xbd\x89\x0e\xe9\x71\xac\xf0\xee\x73\xa7\x95\xba\x16\xe6\xff\xfd\x48\xfa\x50\x5a\xc8\x68\x3f\xaa\x18\x26\x75\x89\xcd\x85\xaa\xe8\x2e\x1e\x98\x11\x1d\xf4\x28\xd8\x6e\xe7\x46\xed\xbb\x34\xbb\x47\x42\xaf\x42\x9d\x20\xf1\xc6\xcf\x16\xcb\xbf\x7c\xa9\xcd\x73\x22\x29\x56\xa3\x11\x7b\x4c\xbf\x3b\x87\xbb\x15\x46\xd4\x70\x1c\x2e\xfd\x8f\xa8\xd1\x02\x2a\x95\xb0\x65\x6e\x41\xaf\xbf\x16\xaf\x2a\x01\x6d\xa7\xe8\xbf\x3e\x18\x87\x0e\x24\xb5\x26\x59\x8a\x9f\x85\xea\xfe\x59\x79\x36\x5d\xcf\x1d\x9b\x29\x55\x80\xa7\xa7\xca\x44\xaf\x4e\x89\x12\x37\x2d\x6c\xa9\x26\x40\x6e\xd5\xd0\xda\x70\x44\x76\x05\x56\x11\x87\xb2\x5a\x1b\x63\xae\xf0\x33\xa3\xd1\xeb\x73\xc7\x4e\x61\x92\xfd\x85\xa9\x07\x4f\x23\x36\x18\xa7\x80\x20\x36\xd8\xba\x1b\x9d\x64\x92\x10\x1c\x2f\x81\xda\x7a\xbd\xf9\x7b\x38\xb7\x2b\x82\xd9\x60\x75\x59\x58\x3a\x08\xc5\xff\xb0\xb7\xc1\x5b\x88\xc0\x6d\x68\xda\x5a\xa0\x4a\xa5\x88\x32\x5f\xdf\x2f\x5b\x01\x2d\x69\xac\xf5\xda\x3b\x06\x13\x94\x8b\x9a\xca\x2f\x26\x94\xca\xd1\xf7\x0f\x61\x26\x53\x35\xd5\x5f\xcb\x0d\x5e\x38\xd1\x8c\xf7\x8a\x93\xaa\x94\xcc\x10\x34\xfa\x14\xe6\x2c\xbb\x4c\x05\x62\x8e\x1a\x15\x7e\x68\xc3\xe5\x14\xfc\xc5\xa8\xd1\xca\x5c\x52\x2a\x47\x4f\x1c\x50\x7e\x01\x1b\x49\x7a\x8c\x97\xca\xd1\x33\x15\xf9\x1a\x89\xef\x13\xdf\x97\x79\x74\xa3\xc3\xa0\x68\x72\xae\x32\xd7\x9f\x6f\xc6\xee\x70\xa2\xa6\xfc\x45\xcf\xde\x8e\x73\x63\x87\xd4\xe2\x2f\xfc\x03\x12\x8b\x77\x79\x0b\xd6\x5b\xc7\x31\x2d\x9b\xc7\xda\x25\xf0\xd6\x2e\x6f\xeb\x8c\x54\x1d\x96\x98\x63\xe4\x7e\x30\xd9\x08\xc4\xa0\x90\xa5\x8c\x12\xfa\x73\x9b\x0c\xf9\x26\x9f\x83\x19\x07\xac\x80\xc5\x47\xb2\xe4\x98\xb0\x29\x05\x51\x6e\x7a\xfd\x4c\x75\x22\x42\x0e\xfe\xbf\xb7\x66\x13\xc8\x66\xa7\xdb\x29\x7f\xf1\x9f\xea\x46\x4e\xcf\xe9\x14\x2c\x1f\x53\x58\xfa\x94\x49\xf7\xa7\x8e\x7a\x6a\xef\x0e\x34\xfb\x00\x56\x28\xc0\xfd\x11\x6e\xeb\x9b\x9b\xce\xc6\x04\x05\xd8\x36\x2f\x9e\x32\x34\x50\x5c\x9e\x08\x04\x45\x1f\x45\x44\xce\x9a\x60\xd0\x10\x8a\xbe\xf6\xbc\x56\x0f\x6d\x86\x7e\xbd\x01\x49\x5f\x3a\x3f\x7a\xfe\x31\x53\xb5\x2f\xac\x51\xd9\x44\xce\x86\xc3\x19\xaf\x19\x9a\xe9\xb4\x4a\x3d\xc5\x94\xcb\xbf\x38\x68\x28\x1a\x20\x12\x40\x77\x15\x7b\x1d\xe3\x99\x29\x97\xe2\xe8\x53\x77\xe8\xf4\xbe\xaf\x37\x84\x21\x3f\x7a\x60\xf7\x2e\x1c\x82\xb9\x1b\xf1\xe7\xbf\x79\xd0\xa0\xb1\x86\x15\x8b\xbb\x2e\x0b\x02\x9a\x9a\xe3\xdd\x70\xdf\x05\x3d\xe6\xb4\x2a\xa5\xc2\xcb\xe7\x7d\xe5\xa9\xd1\xa8\x9d\xee\xd9\xd4\xf5\x12\xb1\xd4\xe2\xe8\xd5\x06\xc3\x8e\x79\xc4\xb3\x18\x2a\xa9\x73\xdf\x7f\xab\x6d\x30\xe5\xeb\x0e\xd0\xe0\x87\x75\xf2\x41\x83\x3a\xe3\x4d\xd8\x87\xb9\xce\x27\x8d\x66\x20\x30\x61\x7c\x05\xb7\x3c\x7e\xb4\x7d\x14\xd6\xc3\x7c\x09\x02\x2c\x0c\x32\x0c\x77\x78\x8d\x7b\x4c\x89\xc1\x3c\xb5\x3b\x3b\xe2\x09\xa8\x43\x2d\xee\x9e\x16\xe7\x70\xe2\x8e\x0e\xe3\xd9\x58\x4e\x68\x27\x19\xf6\xc5\x4a\x46\x58\xd0\x20\x4c\x54\x41\x16\x8f\x4f\xc7\xb3\x34\xc9\x59\xa2\x5b\x37\x69\x0a\x4c\xd7\xac\x52\x39\xfa\xf1\xfa\xd1\x08\x2f\xe6\x36\xa9\xe7\xa7\xea\xb3\xdf\x3c\x95\x7d\x1f\x15\x26\x5c\xe6\xd5\xea\xc4\x95\x44\x22\x10\x63\x19\xa2\xd4\x48\x88\x50\x20\xa0\xe8\x9e\x2c\x6c\xa7\x22\x42\x0f\x74\x68\xb3\x93\xd7\xc2\x85\x33\x10\x8c\xa2\x53\xb2\xe1\xbf\xf1\xac\x81\x74\x00\x31\x10\xd5\x65\xd9\xb7\x5e\x03\x60\xa8\xcb\xa4\x6c\x7b\x49\x50\x05\x72\x85\x58\x30\x54\x9f\x06\xbd\x3c\xf4\x6a\xbe\x82\x7e\xe4\xc7\x1b\x6a\x06\x0e\x4d\x44\x6d\x3e\x9f\xd7\x99\x70\xc6\xf5\xb7\x3f\x77\xfe\x89\x91\xa8\x84\x68\x50\xde\x92\xda\x40\xb9\x17\x0d\xd1\x6b\xe9\xfc\x0d\x16\x7f\x42\xf1\x05\x0b\x73\x9e\x37\x9b\x99\x20\xd8\x94\xe8\x9b\x0b\x24\x8e\xca\xc0\x58\x3a\xa2\x77\x0e\x43\x59\x2e\xf3\xc0\x1c\xa9\xf0\xea\xa3\x59\xf1\x50\x4e\x04\xa4\xcc\xed\x63\xc0\xcd\xef\x18\x9a\x7c\x0e\xe9\xed\x01\x11\x32\x95\xc5\x7d\xef\xf5\x0e\x54\xf4\x67\x71\x69\xe5\x68\xee\x2e\xa3\xc6\x70\x81\xff\x2a\xd3\xd9\xed\x48\x0d\xdb\xa6\x56\x62\x9a\x91\x7b\xdf\x36\x83\x0a\xb5\x53\x09\x89\xcf\x23\x05\xd8\x5b\x42\x06\xad\xf5\x5c\x73\x01\x22\x24\x58\x09\x06\xe7\xc6\x81\xe3\xf0\x28\x69\xcd\x94\xec\xcd\x95\xca\xd1\x5f\xed\x95\xa7\xdc\xf5\x4d\xd6\xc0\x83\xd2\x67\x9e\x52\x0e\xac\x8e\x54\x3d\xeb\x2f\x3c\xa2\x2b\x7c\x87\x40\xca\xbb\xf1\x84\xd1\xfd\x95\x6f\xca\x67\xb6\x02\x88\xe7\xbf\x34\xc8\x18\x79\xb8\x54\x30\x2b\x75\xa8\x88\x9e\x7e\x48\x07\x9e\x2a\x89\x9f\x0c\x68\x24\x40\x1d\x70\xc1\xe1\x6c\xe0\xe9\x0e\x41\x98\x0a\xcb\x39\xbd\x69\x08\xaf\x86\x01\x73\x58\xe2\xf3\x5c\x58\x7f\x2f\xb2\x34\x91\xc6\xf2\xcd\x71\xc3\x50\x43\xb3\xca\xe2\xb5\x10\xfd\x50\xd9\x26\x5c\xe9\xd9\x82\xe2\x79\xce\x81\x6d\x26\x1b\x49\xbb\x8b\xa4\x66\x44\x1f\xd9\x86\x51\x51\xd4\x4d\xf2\xc7\xdb\x87\x18\x6a\x31\x3c\x74\x92\x56\x76\xf4\x95\xc9\xd8\x76\x8a\xd4\x42\xc7\x69\xe7\x57\x75\x6f\x47\x59\x30\xf1\xa9\x2b\x53\x95\x5f\xee\x97\x6f\x6c\x39\xf1\x6a\xe8\x6a\x73\xab\x0f\x6a\xea\x7f\x0d\x0b\xbf\x7e\x2c\x68\xf3\x03\x56\x7a\xd8\x69\xc1\xb4\xf2\xa8\xec\x00\x2f\x26\x82\xd4\x89\x87\x0d\x9c\x9e\x78\x48\xe1\x0a\x02\x0e\x85\x4e\xe1\xe6\xee\x11\xf8\xf4\x4d\x24\x53\x72\x13\xee\x4f\xbf\xdf\xe5\x68\x32\xf5\xd9\xd7\x11\xc9\xf5\x96\x50\xb6\xe8\x8a\x85\x63\xe7\xa1\x37\x21\x85\x9c\x52\x8c\x4c\xb9\xbf\x60\xcd\x69\xd7\x83\x17\xc4\x0a\xb8\x90\xee\x30\xab\x9a\x72\x7d\x82\x46\x37\xec\x99\xfe\x5b\xe5\x85\xb6\x78\x20\x31\x77\x13\x50\xaa\x2a\x77\x23\x42\x94\xbc\x6e\xc8\x61\x34\xeb\xcc\xe1\x3e\x6f\xd6\x65\xba\x5a\x10\x0f\xa4\xca\xae\xbe\x4c\xfc\xbe\xf9\xee\x14\x5c\x94\x50\x12\x5a\x82\x04\x52\x90\x9c\x82\xad\x94\xa0\x4d\x41\x3d\x1a\x4a\x7c\xd9\x1f\xd7\xa5\xfb\x65\x0e\xc0\x8b\x0b\x83\xef\xc4\xf4\x49\x52\x93\x99\xf0\xed\xef\x67\x93\xc7\xce\x19\xd3\x66\xaa\xc8\xf2\x4b\xc3\xd7\xb1\x02\xdc\x25\x88\xb0\xd1\xdb\x5b\xb3\x7f\x36\x7d\xee\xdc\x19\xaa\x9f\xbf\xd4\x33\x4b\x9f\x80\x28\x36\x6f\x7f\x61\xf5\xc2\x54\x11\x71\x6e\xbc\x12\xdf\x30\xdd\xaf\x40\x29\x4c\xc2\x5d\xf7\xb5\xd0\xab\xa6\x5c\xd4\xe8\x24\x78\xb2\x4f\x3c\x85\xcc\xc8\xa8\xcd\x7d\x30\x55\x2b\x47\xdf\xb9\x03\xb3\x8d\x28\x15\x8a\xf7\xf1\x4f\xa3\x4e\x03\x7f\xd6\x14\xac\xab\x4c\xc4\xad\xd7\xe2\xbd\x2a\x82\x74\xec\x4b\x9f\x22\x30\xf2\xa2\xb1\x0a\x3b\xe6\xd1\x80\xdd\x12\x26\x46\xfe\xe3\xee\x97\x59\x39\x74\xaf\x98\x34\xd3\xff\xf3\x73\xb8\xe7\x49\x9a\x80\x5f\x8e\x7e\x66\x63\x8e\x56\xe8\x04\x54\x8a\x5f\x15\xb7\xa3\xa4\x92\x09\xa7\x54\xfe\xf3\x76\x23\x72\x53\xe2\x52\x4f\xf2\x66\x72\x9b\x5e\x43\x19\x7c\x50\xe7\x15\x06\x95\x78\x0b\x31\xef\xeb\x92\x89\x9b\x9b\x6a\xb8\xdc\xf8\x4d\xaa\x7b\xf0\xb9\x11\x4b\x8c\x6a\x9f\xb5\xa8\x00\xa4\x36\x1c\xcf\xcf\x19\xfc\x12\x09\x45\x54\x7f\xbb\xb2\x75\x3e\xda\x8a\x3c\x6c\x57\x72\x7e\xfb\x95\xec\x01\xdd\x4b\x84\x14\xd4\x28\x5e\x1c\xb4\x49\xcd\xba\xcc\x03\xf7\x1d\x89\xfe\x13\x47\xf4\x83\x72\xe4\xe1\x10\xe7\x3a\x7f\x7f\xa2\xad\xed\xd8\x62\x76\x12\x49\xf2\x3d\x8f\x9b\x30\x7e\xc9\x99\x4c\xd1\x51\x85\xbd\xcf\xb6\x85\xa3\x96\xb4\xb6\x49\x9c\xdf\xf3\x95\x7b\xb5\x5c\x1c\x09\x03\xde\x96\xb7\x3d\x6a\x70\xa0\x2a\xa1\x6d\xab\x8d\xfb\xf7\xaf\x18\x4e\x08\xd0\xed\x52\x3b\x63\xae\x31\x6e\xb2\x89\x9b\x2a\x78\xe5\x7e\x31\x15\x8d\xe1\xba\x51\x08\xb4\x4e\x22\x25\x96\x96\xd4\xfc\xfe\xd0\x28\xa4\x7d\x14\xca\x1c\x6d\xc7\xc2\x11\x48\x8c\x0c\x2c\x97\xe2\x15\xb7\x67\x9a\xe9\xf4\xe0\x52\xee\x29\x3a\x4b\x65\xd6\x39\xa8\x12\x64\x8e\xd4\xd0\x8a\x6f\xe4\x8b\x93\x75\xd6\x45\x82\x40\x22\xcc\xe0\x09\xb6\x8c\x49\x7d\x8a\xcc\x90\x23\xdd\xc7\x8f\x98\xbe\xa3\x42\x50\x18\x6e\xcb\x26\x5a\xee\xd4\x1d\x09\xd7\x58\xc8\xd9\xf8\x23\x86\x17\x45\x85\xd8\x29\xdd\xf3\x6b\x4a\xc2\x64\x21\x61\x89\xfa\x4b\xbe\x7b\x5f\x92\x1c\x90\x1e\xd9\x33\x5a\x73\x5b\xf6\x92\x5a\xcc\x07\x68\xaf\x3a\xef\xa6\x17\x8d\xfe\x24\x97\x73\x35\xd5\xd1\xfa\xdc\xe3\xfa\x7d\x07\x94\x05\xd4\xa9\x10\xc0\xe7\x25\x47\xd8\xe8\x9b\xcd\x40\x68\xc5\xb5\x2a\xec\x90\x83\x4b\x0c\x4d\xdd\x50\xf3\xd7\xfe\x30\x16\x11\x7b\x48\x40\xfc\x40\xf0\x66\x3d\x4e\xcb\xfe\xbb\x23\xf5\x67\xa4\xd2\xe5\x2d\x3a\x72\xcf\x60\xdd\x73\x88\xff\xfa\x5b\x0b\x90\xc4\x63\x10\xba\x15\xb0\x0c\x89\xf6\xce\x33\xab\xfd\x50\x5a\x1b\x44\xdb\x67\xb5\xf3\x7a\xa9\x36\x7c\xcd\x9d\xf5\x36\x8a\xa7\xbc\x52\x49\x74\xa5\x1e\x57\xc9\x96\x20\x9e\xcf\xdd\x52\x39\xfa\xed\xc4\x8c\x4e\x65\x40\x74\x7b\xb4\x64\xe8\x0f\x75\x87\x76\x8d\x4a\xd4\x3c\x99\x7f\x5a\x47\x17\xf8\xb7\x67\xee\x32\x39\xf8\xa9\x40\x4c\xf2\xb0\xe8\x1c\x7d\x50\x33\xdf\x0f\xa5\x5c\xcd\xde\x44\x74\x10\x80\x57\xc5\x66\xb6\x2d\x30\x55\x5a\x57\x17\x4f\x1a\x0c\x43\xe2\x36\x13\x2e\xe9\x65\x48\xb9\xa7\xc2\x3d\xe8\xc1\x7c\x41\x60\x6a\x27\x25\x8d\xa0\x0e\x82\x73\xf1\xef\xff\x44\xd9\xdd\xc7\x65\x81\xf2\x61\xeb\x2f\x8c\xdf\x83\xa0\x63\xd4\xaa\x7b\x40\xd5\x18\xbb\xd3\xb4\xf0\xed\x85\x7c\x00\x38\x3b\xa5\x59\xd9\x7f\xf4\x68\x18\x08\xe5\xda\xd7\x9f\x7b\xd4\x70\xac\xad\x09\x4a\x3d\xf0\x5a\x84\x2d\xf2\xbb\x17\xf4\xf7\x01\x74\x21\xde\xc8\x0f\x6e\xc3\x6f\x25\x2e\x73\x99\x90\x49\x59\x6e\xe4\xfb\xfa\x44\xb4\xfa\x28\x08\x5b\x41\x1b\xfd\x9a\x8e\x73\xd0\x85\x0b\xc1\x02\x2e\xa0\x91\x7c\x2e\x5a\x5c\xc4\xf3\x40\x6b\x26\xfe\xa4\x5f\xe6\xb3\x1d\xee\x78\x75\x26\xaa\x7a\xa8\xa9\x7c\xaf\x9e\xdc\x82\x4c\x96\x84\x16\x67\xa3\xe4\x80\xf7\xb2\xf7\x58\x67\x8e\xe3\x03\x4c\x16\x56\xd2\x26\xa3\x0b\x5a\xa1\xa2\x26\xab\x42\x9d\x54\x7e\x53\xdb\x47\x38\x2e\xc9\xd0\x22\xd6\x4d\x44\x79\x1d\x91\xc7\x68\xf4\x9d\x31\xb8\xd5\x92\xe0\x20\xf6\xed\x30\x76\x0c\x11\x96\x94\xf0\xc8\xf5\x77\xe2\x24\xd7\xb1\x7b\xe4\xb1\xbf\xe9\x4d\xfd\xe1\x33\x67\x4c\xed\x9a\x05\x9c\xa4\x1e\x43\x89\x5f\x0a\x31\xc8\x5c\xe5\x67\x13\x2f\x35\xce\x25\xe6\x52\x3f\x20\xea\x86\x0c\x6b\x98\x63\x63\x50\x2b\xc5\xeb\xc6\x24\xd1\xc2\x5f\xcf\x42\xef\x9e\x78\x36\x07\x30\xea\x0d\xcb\xf4\x4f\x6b\xa1\xef\x12\x58\x81\x4f\xab\xc9\xdd\xf5\x84\x52\xac\x4b\xb4\xa3\x43\xbf\xdd\x80\x87\x69\x51\xb3\x78\xa2\x29\x9d\x44\x6d\x96\x18\x46\x3f\xbc\xd0\x20\x27\x81\xe9\x93\x87\xde\x47\xf1\xce\x75\x23\x50\x5f\xd4\x22\x8e\x0c\x49\x75\xa3\xd8\x68\x12\xdf\xd7\x30\x89\xe5\xaf\xea\xac\x84\xf7\xc8\xd9\xcf\x7d\xcb\x4d\x6c\xc0\x46\x39\x9a\x4d\xbe\xe9\x93\x06\x77\xd5\xe1\x20\xba\xe1\x29\xaf\x7b\x68\x4d\x7f\xa7\x53\xde\x7d\xb9\x8f\xf4\x20\xd5\xc5\xfc\x9c\x85\xba\x22\x9e\x3e\xbb\xed\xe9\xdf\xb3\x6f\x70\x3a\x3c\x9e\x05\xef\x75\xa0\xb1\x12\x05\xa9\x31\x2f\x73\x3d\x85\xff\xd9\xae\x5f\x59\x25\x7e\x2d\x98\xc6\xf0\xd9\x77\x94\xba\x59\x08\x26\xbc\xa2\x41\xe5\x7c\x7b\xf7\xfb\x08\x77\xc9\xab\x41\xc0\x01\xe7\xb1\xb1\x33\x9d\x5e\xf3\xca\x65\x60\x4b\x7a\x22\x19\xcc\xba\xbc\x26\x48\xb3\x2e\x6b\x9d\xee\xfb\x0c\x41\x1d\x87\x58\x0d\x50\x0f\x48\xca\xbf\x2f\xb5\xf7\x23\x42\x37\x91\x0f\xc9\xbd\xba\x07\xd9\x88\x80\x26\x92\x8a\xf8\x5f\x1b\x80\xa6\x0b\x75\x91\x98\x39\xfe\xed\xc4\x0b\x71\xdf\x48\x36\xf2\xda\x5a\x8e\xdf\x42\x84\x05\x3f\xb4\x2c\xe6\x59\x81\x3c\xc8\x2d\x0f\x13\xc0\xbd\xaa\x6a\xd3\x7c\xc3\xeb\xd0\x4d\xab\x76\x88\xe6\x3d\x9b\x86\x69\x00\x49\x0a\x36\x18\xb6\x0e\x09\x7f\x7b\x2d\x1a\x00\x83\x2d\xbe\xab\xaf\xbd\x97\x62\x7a\x1c\xda\x36\x79\x29\xfc\x64\x86\xa1\x34\x55\xa7\x01\x17\x40\xfd\x8f\xef\xd1\x1d\x8b\x86\x91\x0a\x33\x52\x2a\x47\x77\x19\xfa\x54\xa9\xfc\x9b\x1c\x09\x7d\xf5\x1e\x39\x05\x59\xc2\x9b\x0d\xd6\x2e\x77\x9e\xff\xc2\xbd\x66\x0a\x23\xe2\xcc\x4f\xe6\xba\x97\x68\x6d\x67\x0b\x48\xd1\xda\xa1\xf2\xe3\x57\xe8\xaa\xb9\x85\x1b\x20\x37\x1f\xd3\x81\xa9\x87\x05\x75\x1e\xc6\x39\xc2\x99\x8b\x71\xe3\x3e\xb0\xea\x10\xc4\x76\x2d\xd0\xee\x38\x24\xfe\xb5\x4b\x36\x64\x57\x45\x9d\x78\xb5\xb4\x23\x9a\x1b\x3d\xc4\x54\x23\x60\x5e\x12\x03\x16\xb7\x0c\x14\x1a\xf0\xdc\x1c\xda\xa2\x4e\xe2\xb6\xb7\x49\xf9\xd6\x25\xc3\x6c\x98\x64\xef\x1c\x99\xcc\xd6\x57\x96\xaf\xd7\xc5\x77\xc7\x28\x79\x7c\x5f\x1f\x82\x98\x64\xee\x73\xb7\x9d\x8b\x4a\xd0\x66\x58\x71\x98\x95\xfa\x44\x16\xb7\x9c\x32\x2e\xac\xce\x79\x72\x61\x5f\x3e\x24\x5f\xc0\x4d\xa4\xe2\x70\x10\x98\xc9\x4c\x19\x1f\x7e\x6d\x14\xa2\x1f\xe1\x47\x9c\x3b\x7b\x8d\xdc\x5b\x57\x49\x55\xa9\x64\x7d\x5d\x7e\x2c\xbb\xb7\x52\xf3\xb5\xd4\x2b\x26\xf7\xbc\x41\x3a\xa0\x7e\x00\x63\xab\xdc\x63\x6f\x22\xd9\x92\x4a\xe8\x87\x80\xfd\x2a\x9e\xbf\xd8\x94\x11\x22\x22\xfe\x1b\x35\x63\xff\xe2\x0c\x63\x37\x8b\x5e\xe2\x61\x4b\x8f\x62\x63\xa5\xe2\x40\xfb\xbe\x84\x4f\xc2\xb6\xca\x5d\xfc\x02\xfc\x61\xe9\x3a\xd2\x4d\xfd\xa0\x77\x52\xdb\xf2\x2b\x3c\xd4\x32\xe1\x32\x55\x28\xa5\x54\x85\x3b\x7a\xd4\x25\xe6\xea\xf4\xa4\x62\x9e\x79\x66\xbf\x32\x36\xad\x77\x19\xb4\x1d\x26\x2b\x0a\x8e\xcd\x6a\x2c\x90\xb5\xc7\xba\xc3\xf2\x47\x8b\x88\x48\xa4\x57\x56\xb5\xce\x52\x67\x2e\x91\x76\x94\xc5\xe6\x18\xc3\xb3\x91\x39\x8e\xe0\x7e\x12\x9a\xf2\xa3\x07\x65\xd8\x7c\x9e\xcd\xab\x60\xb6\xd5\x3a\xaa\x0c\x7a\xe2\x1a\x9d\x28\xe5\x9c\x79\x9b\x12\x52\x2a\xa8\xb0\xc4\x0f\xf3\x4f\x77\x24\x26\x74\x4d\x29\x31\x1a\xad\xf2\xd0\xb9\xc9\x95\x77\x68\xee\xef\x37\x67\x66\x0b\x92\x49\x24\x87\xa9\xbd\x43\x64\x1d\x42\x5b\x14\x0a\x9b\xdc\x92\xbb\x86\xa4\xa1\x4f\xd6\x3a\xb9\x3f\x6e\x1f\x89\x16\xac\xcf\x3d\xd5\xc0\xc9\xcf\x35\x34\x0b\x66\x74\x29\xcd\x82\xfc\xab\x1f\xa0\xa0\x8b\x15\x15\xba\x35\x4d\x17\x6e\x36\x2a\x6c\xd6\x96\x9d\x2c\x39\xa3\x73\xdf\x6f\x4a\x96\xce\x95\x15\x2e\x4e\x23\x17\xdc\x5f\x58\x5a\xc9\x1e\x57\x0d\xe2\x30\x92\x25\xc5\xe5\xd7\x0e\xd4\x14\x7e\xc8\x64\x29\xd5\xec\xaf\xdc\x3b\x07\xb2\xdd\x7c\xad\x7e\x90\xc5\x1e\x7d\xdf\xf0\x68\xec\xa9\xb3\xa4\xb8\x89\xbe\x77\xf3\x70\x95\x7a\x08\x0c\x37\xd8\xa0\x6f\x72\xd6\x0c\x98\x00\x6f\xde\xa3\x73\x53\x25\x40\x07\x40\x8e\xeb\x76\xa1\x41\xa8\xc3\xec\x38\xbf\x7f\xe1\x15\x94\xe5\x70\x45\x74\xcd\x2d\x77\x12\x88\x29\x15\xd2\x4b\x3a\xfa\xc9\xe0\x0e\x84\x74\xe9\x09\x78\x8f\x57\x27\x2e\x73\xa4\x0d\x48\x61\xc3\xfd\x3a\xce\xd4\x48\x85\x3a\x0e\x06\xaa\x7d\xef\xc1\x6c\x63\xb5\x46\x9b\x75\x22\xec\x20\xb3\x17\x3f\xb7\x4c\xfb\xc0\x49\xcf\xb9\x0b\x24\xc7\xb8\x74\x55\x9d\x08\x87\x62\xa9\x16\xdb\x90\x03\x91\x29\xa3\x12\x2a\xe8\xb9\x54\xae\xaa\x25\xe9\xf1\x5b\xbc\xe1\x4c\x03\x20\x42\x44\xa0\xd8\x2f\x72\x92\x50\xbc\xec\x49\xa3\x3f\xc8\x1d\x16\x30\x2b\x69\x51\x14\x16\x0d\x36\xa0\xa2\x61\x10\x82\x8c\x31\x24\x18\x5f\x1e\xa4\x71\x0f\xac\x1b\x65\x31\xfb\x06\x6a\x08\x73\x97\x14\x1d\x78\xe4\xc5\xa1\x99\xc6\x13\x24\x2e\x7f\x33\x2d\xe3\xaf\x08\xac\x88\xf8\x6b\x87\xee\xd0\xad\x88\x0a\xdf\x18\xa7\xdc\x2f\x23\x11\x41\x07\x24\xd5\xe2\x4f\x3d\xf7\x49\xe5\xb7\xb1\xd1\x62\xca\xcb\x84\x2c\x32\x2c\x67\x91\x44\x79\xee\xb3\x8f\x29\x0e\x6a\x6f\xfc\x8c\x24\xd3\x7f\xfb\x0b\x48\x9f\x89\x49\x13\x95\x38\x24\xed\x30\x27\x22\x24\x0e\x97\x35\xd0\x7f\x8d\xd7\x46\x1f\x2a\x6d\x9a\x82\xba\x0c\x8c\x03\xfa\x73\x5f\x5b\xa2\x2b\xc1\xaa\x0d\x19\x56\xfe\x97\x27\x0c\x39\x0f\x02\x5d\x7e\x58\x44\x7f\xde\x21\x43\xd1\xf5\x89\x66\x6d\xfc\x21\x57\x20\x59\x7b\xec\x2b\xb1\x0c\x19\xfd\x39\x3e\x12\x40\xab\x1b\x7b\x68\xa6\xb2\x77\x86\x36\xf2\x0d\x7b\xd2\x54\xa6\x0a\x47\x53\x36\x1a\xaf\x7f\x39\x1b\xd6\xa1\x39\x93\x36\x2e\x73\x2f\x9e\x89\xf8\xa1\xe1\xc6\x50\x48\xef\xe0\x9e\xa2\x69\xab\x21\x65\x18\x3b\x15\xe8\xb0\x77\x6c\x9a\xff\x4a\x73\xb0\xf9\x27\xcf\xc2\x3a\x85\xe5\x68\x4c\x6b\x04\xee\x14\xdb\xbd\x2a\x6d\x9c\xf7\x3e\xee\xc9\x55\xa8\x50\xec\xaf\xab\xc7\xea\x37\xe5\x70\xee\xfa\x09\x20\x75\x4b\x32\xc6\x61\x1b\xe5\xbe\xed\x3a\x9c\x7d\x77\xdc\xb2\x88\x8f\x2c\x66\x0a\xaf\x3c\xa0\x0f\x20\xb0\xbb\xf9\xfd\xea\xe1\x68\x46\x63\x49\x3f\xfa\xfe\xdc\x9b\x8a\x20\x6d\xb7\xe5\xa7\xf9\x51\xeb\x75\x92\x54\x21\x35\x01\xd0\xcc\x6b\x0e\x69\xd7\x7b\x86\x12\xad\xfc\x27\x1d\xbd\xfe\x67\x5e\xde\x39\x0d\xa4\x68\xf7\x8e\x35\x7b\xaf\x52\xb7\x03\x72\xee\xb0\x63\x14\xe2\x56\x57\x90\x04\xd3\x7b\xc1\x05\x6d\xfb\x9a\x11\x27\x8e\xee\x40\x6a\x8d\xff\xfa\xb9\x4a\xf6\x9d\xf6\x50\xd2\x4c\xef\x3f\xda\xfe\x86\x36\x8f\x4b\xaa\xf8\xe8\x66\x53\x1f\xb3\xce\x99\x95\x0e\xd8\x7f\x3c\x60\x14\x1e\xb2\x2d\x5b\x36\xa5\xac\x7a\xa5\x83\xbb\xda\x2c\xfd\x3c\x49\x11\x9d\xf3\x3a\xd6\x14\x90\xbe\xee\xd0\x73\x8a\x9c\x91\x68\x22\x58\xa5\x9e\x4d\x24\x03\xf3\xc3\x1e\x3a\xaf\x5d\x89\x27\x8f\xdf\xc3\x6f\xe6\xe9\x28\x4e\x1d\x0a\xfd\x95\xc2\xc9\xe7\x74\xee\x2e\x25\xcf\x92\xd6\xdd\xba\x0a\xd2\x9a\x6e\x26\x33\xe9\x1f\xee\xca\x06\x64\x9f\xd5\x3c\x56\x8d\x53\x43\xa9\x01\x0e\x27\xfe\x47\x9e\x33\x88\x7f\xd4\xeb\xa3\x8e\xe1\xf4\xf0\xdd\x75\xc9\xdc\xa4\xca\x85\x1b\x47\x8b\xfd\x77\x5f\x64\x3c\x04\x9b\xf9\x0e\x69\x19\x1d\x8d\x25\xf3\x25\xb0\x44\xe6\xd9\xa3\x9e\x53\x44\x7e\x22\x68\x62\xa0\x54\xf8\x7b\xa3\x21\x4f\xc0\x7a\xb8\x47\x49\x27\xdf\x27\xff\xa2\xce\x5d\x66\x31\x5b\x46\xb0\xdf\xbc\x7d\x0e\x4a\x72\x10\xfa\x2d\x77\xc3\x31\x54\x19\x06\x5c\x10\x80\x37\xe5\xa7\xbe\x68\xc0\x30\x29\xd0\x1a\x93\xd9\x6b\xfe\xf7\x5b\x47\xa3\x89\x88\x17\x6f\xc0\xd4\xb8\xe7\xe2\xf5\x48\xea\xc6\xb3\x43\x39\xee\xce\x2f\x3a\x28\xb3\x1c\x97\x0a\x20\x5d\xe6\x2f\xb8\x53\xa7\x06\x89\x0c\x28\x91\xac\x8b\x72\x7f\xe1\x38\x12\xcc\xb1\xa0\x73\x1b\x3f\x8f\x09\xf3\x50\x4e\xe3\xd0\x6e\xe2\xd9\x02\x10\xae\x3f\xda\x25\x3f\xbd\xe1\xc9\xf1\xc8\x05\xca\x2b\xef\xfa\x3a\xe9\x41\xaf\x65\xe3\x1b\x06\x97\x42\x50\x8f\xe0\xe3\xb6\x20\x9e\x19\x8a\x36\x2d\x1c\x19\x51\xb9\x4b\x1e\x0a\xa1\xa8\x51\x4f\x96\x98\x39\xe7\xad\x73\x51\x07\xc2\xb3\x7a\x4b\x96\xaa\x6e\xa0\xfd\x5f\x37\x10\x47\x41\xc0\x85\x47\x7b\x15\x36\x63\xc5\x06\xb3\xc0\x10\xd4\x96\xff\x56\x9c\xf0\x5a\x9b\x81\x9d\x22\x2b\xc8\x0a\xb0\xb9\x5a\xb3\x7e\xb9\x69\x1b\x1b\xa1\xe9\x34\x71\xa0\x85\xb7\xf0\xfd\x0b\x51\x45\x02\xf8\x5d\xa5\x40\x80\xba\x58\x85\xf9\x9b\x8d\xe1\x0c\x0d\xa0\x6f\x2d\xf1\xc3\x4c\x61\xf6\x78\x13\xd8\x6e\x70\x8a\xcd\xb2\xb3\xb9\x7c\xb5\xb3\xd2\xc9\x3a\x4f\xc3\xb2\x5c\x7f\x42\xcb\x4d\x52\x94\xd5\xe5\x8a\xb6\x1e\xdb\x90\x16\x67\x6d\xd2\xc4\x85\xe6\x80\x4b\x4f\x9b\x9f\xa8\xf9\x77\x76\x4e\x3c\xd6\x33\x50\xe2\xf1\x01\x2e\x1c\x35\x0f\x19\xf7\x80\x01\xd7\xa5\xb5\x78\xfb\x21\x16\xcd\x7d\x87\xe4\x12\x6a\x32\x0b\x94\xd7\x72\x4f\x8d\x54\xe5\x0e\xb5\x59\x40\x85\x20\x1e\x25\x59\x91\xb1\xb5\x57\xc8\x91\xf9\x8a\x04\x9b\xaf\x02\xde\xff\xdd\x85\x66\x16\xa9\x36\x7d\xfc\x99\x5f\x3c\xa6\xe3\x4e\x25\x99\x25\xfd\xe3\x2e\x44\xe3\x75\x08\x73\x53\xe4\x68\x6e\xe2\xfe\xec\x4a\x01\xbf\x2f\x35\xa8\x59\xfc\xde\xd4\x6c\x38\x4e\x1c\x7a\xa4\x4d\x50\x1b\xcc\x27\xf7\x5a\x4b\x56\xc1\x4b\x88\x13\xd7\x38\xc5\x8f\x0f\x34\xcc\xb9\xa5\x3d\xce\x94\x44\x6e\x21\xef\x76\x20\xbf\x78\x08\x9f\xe5\xfe\x42\xb9\x65\x8e\x5d\x48\x8d\x21\x25\xc9\xb1\x5b\xb1\x09\xaf\xcb\x24\xb7\x33\xbe\xe0\xdf\xde\x3f\xda\x08\x81\x09\xc9\xa9\xbf\x38\xe1\x03\x1d\xf0\xbb\x43\xcf\x0a\x42\x21\x85\x9f\xee\x58\x95\x75\x50\xa4\x0e\xb5\x02\xc1\xbd\x38\x09\x3d\x1d\x96\xe9\x03\xe5\xac\x1a\x17\x59\x00\x62\x8a\x3f\xa4\xf8\x70\x3b\x5c\x86\x7b\xc9\x96\x6b\x8c\x34\x5d\xc3\x09\xf8\x11\x42\xb4\x7d\x69\xab\x89\x41\x71\x58\x4b\x2a\xf2\xf6\x17\xae\x79\xa6\xdd\x04\x8a\xb9\x24\x48\x35\xf8\xb6\xad\x40\xc3\x57\x87\xd7\xa4\x65\x48\x3e\xbf\x37\x19\xdb\x0b\x2e\x43\x74\x65\xa8\x79\x85\x95\xb0\xa1\x06\x76\x51\x34\x4b\xee\xbf\x15\x9d\xd7\x75\x26\x4d\x8a\x8e\x59\xb8\x6c\x91\x2d\xa9\xc2\xfe\x8b\xb2\x1d\x66\x9b\xd9\x8a\xaa\x92\x2b\x1e\x4e\x96\xb7\x27\x7b\x20\xf3\x8f\x49\x1d\xe6\xab\x5b\x54\xd4\x1c\x62\x43\x0b\x4b\xbb\xb0\x0e\x9c\x7a\x7e\x5b\x44\x90\x84\xf0\x24\xbb\x9f\xf3\x68\x1a\x6b\x3a\xa7\x83\xf4\xea\xa4\x89\x5a\x43\x12\x73\xa4\x86\xa1\x3c\xae\xe9\x90\x5a\xa8\x4e\xb2\xd5\x8b\x2e\x6c\xdb\xb2\x22\x2e\xed\x32\x2d\xd8\xcf\x6d\x94\x2d\x97\x2b\xab\x00\x9a\x69\x5b\xd6\x9d\x2f\x1b\x53\x50\x5a\x63\x2a\xbf\x08\xbb\xcc\x97\x67\x09\x4a\x95\xe6\xe3\xd0\xfd\x48\xa7\x4f\xb0\x16\x73\xa8\x94\x96\xfc\xfa\x70\xb9\x84\xa4\x6d\xbb\xd2\xc9\xf9\x72\x45\xf6\x56\x41\x09\x47\x10\x4f\x01\xd2\xb6\xa9\xcc\xd2\xef\x51\xf4\x97\xc2\x27\x0d\x7f\x24\x9b\x78\x96\x16\x38\x1e\x76\xd7\x98\x4c\x3b\x51\xbb\xf1\x94\xa3\x41\xa6\x08\x25\xf7\x02\x62\x05\x53\xe8\xc6\xf8\x2f\x17\x1c\xc0\x6c\x9b\x64\x3b\xe6\x4e\xbe\x32\x02\xc5\xf7\x16\x53\x38\x94\xfc\xf2\xbb\xf4\x33\x97\x23\x1a\xa9\xd6\x74\xea\x70\x1b\x56\x36\x3e\x60\x14\x5f\xe6\x3f\xaf\x40\x5d\x49\xa7\xd7\x6d\x82\xac\x5f\x74\x52\x6d\x2a\xe6\x59\x34\xcd\x96\xde\x7c\x2f\xab\x5a\x75\x61\xd2\xee\x2d\x8b\x73\x71\x26\x78\xe3\xca\x29\x4b\x53\xea\x7e\x74\xce\x82\xe1\x48\xfd\xc0\x91\x02\x03\xfd\x79\xbb\xa3\xed\xc4\x64\x41\x68\xab\xe0\x5c\xe8\x39\xda\x46\xa9\x09\xe3\x7c\x5d\x4e\x4f\x76\x23\x96\x4f\x85\xf3\xa0\x0e\xf1\x9b\x1f\x31\x18\x54\x61\x05\x6a\x33\x04\x9d\x2a\x38\x8b\x50\xfe\x03\xd3\x61\xb8\x9a\x0b\xc6\x8e\x48\x93\x46\x5a\x0a\x98\xc2\xec\x15\xbe\xbc\x35\xdb\x96\x74\x89\xd3\x20\x58\x30\x2c\xba\x76\x82\x62\x85\xa6\x93\xc3\xc7\x4e\x5f\x3b\x29\xf5\x3d\xf7\x31\x84\x02\x04\xe6\xb6\xd2\x82\x7f\xfd\x0d\x5c\xfb\xc0\x42\x8c\x3f\xae\x30\xd2\x14\x31\x25\x5e\x8d\x4a\x14\xfb\x3b\x6f\xe8\x05\x6d\x81\x14\x43\xc3\x93\xf5\xf2\x8f\x5f\x4a\xd2\x51\x3f\x50\xc8\xa3\x2f\xdf\xad\x87\xcd\x71\x44\x03\x41\x4a\x87\x06\xf2\x7f\xca\xfd\xb9\x55\xc2\x04\x26\x0b\xd7\x57\xa6\x28\x0f\x19\x34\x9c\xa6\x00\x66\x80\xe2\x15\xdf\x32\xc7\xe8\x3f\x12\xdf\xa2\x29\x57\xa9\x38\x48\x12\xca\x4b\xd7\xd3\x1a\xb7\xbd\x5e\x53\x55\x38\x7a\x6c\x6f\x16\xdb\xee\x5b\x75\xf0\x38\x64\xed\x4e\xf7\xcc\x90\x62\xb3\x05\xa9\x06\x0a\x74\x7c\xd7\x71\xf9\x35\x3e\xe7\x5e\x29\xe0\xf1\x71\x1b\xef\x72\x12\x00\x2e\xb1\xdc\x5f\x1c\x70\x6f\x1a\xbf\x66\x4d\x9f\x03\x95\xfe\x2a\x5c\x75\x34\xa9\x27\x61\x58\xd1\xbf\x2d\x30\x6b\x25\xc7\xe2\x6e\x82\x5d\x29\x9c\x6f\xb7\x61\x90\xa6\x2b\xa4\xc5\xf8\xcd\x4a\x38\x14\xd4\x35\xe0\x0d\x6e\x7e\x28\x71\x59\xb5\x01\x4a\xa0\x43\xee\x02\x61\x38\xaf\xc9\x4e\x4d\xe2\x4d\x94\x7b\xe9\x59\x79\x7e\xcf\xec\xec\x9a\x01\x3a\x8d\xef\x19\x67\x06\xb1\x19\x4f\x69\xf9\xcb\xd7\x20\x90\x1f\xb5\x01\xe4\xd7\x9f\xff\x7c\xb7\xbc\xa0\x95\x4a\xb6\x20\xbe\xc8\x81\xb3\x74\x13\xab\xdd\x33\xb0\xf0\x9d\x91\xd9\x7d\x14\x57\x34\x04\x00\x40\x3a\x46\x77\x75\x24\x62\x33\x56\x1d\x70\x3b\x28\xa5\x7e\x5b\x49\xf0\xa7\xa0\x41\xe8\x0e\x6c\x2d\x9a\xe4\x13\xcf\xa7\xb7\x84\x60\x44\x29\x6f\x38\xfa\xe7\x01\x7a\x20\xd3\x97\x26\x25\xdf\x5a\x34\x14\x8d\x92\xc1\x44\x35\x7a\xe6\x00\x16\x24\x84\xa1\x1f\x2c\xb5\x0d\x46\x27\x5c\x72\x52\x92\x29\x43\x91\x23\x16\x1f\x0c\x5a\xea\x9c\xa7\xa4\x9d\x4f\xee\x33\x38\x56\xa4\x46\xfa\x98\x07\x47\xbf\x0e\x20\x3f\x30\x9c\x9e\x3c\x5e\xf2\xe2\x3b\xf1\xd2\x16\x73\xee\xf3\xa8\x33\x65\x71\x27\x74\x61\x93\xfc\xe8\x88\x5c\x06\xd7\x11\xcf\xa6\x0e\x1a\x1b\x16\x2f\x5c\x2f\x43\xc8\x24\xe9\xd7\x51\x8e\x6e\x3f\x21\x7f\x70\x55\x9c\x1b\xc2\x61\xf4\x85\x97\x4c\xbf\x27\x87\x35\x12\xb4\xe9\xd3\xe3\x75\x5f\x40\x5a\x90\x13\xc1\xa4\x3e\xca\xb3\x73\xce\x6e\x3f\x10\x5e\x4d\x67\xdb\x15\x30\xa3\xd4\x55\xc1\x43\xfb\xda\xc0\x9b\x22\x7e\x3d\xb2\xd4\x2c\x3f\x24\x97\xa3\x4f\x00\xe1\xfb\xd1\xc1\xf2\x7f\x6d\x07\x2c\x09\xef\x46\x14\x21\x29\xf6\xaa\x64\x98\xff\x13\x29\xb0\x13\xaf\xa1\xc4\x8f\x0f\x1f\x36\x80\x8e\xd4\xa1\x15\x41\x02\x2a\xbf\xac\xe8\xec\x45\x40\xa3\x3a\x73\x60\x02\xf0\xf9\x2b\x74\x27\xad\x47\x15\x8e\x4f\xdd\x93\xad\x4b\xc0\x66\xc2\xcd\xd8\x4c\x48\x7c\xd0\xc8\xfd\xa3\xb0\xae\x11\xbe\xef\xad\x8b\xda\x10\xd8\xd5\x20\x8b\x30\x2f\x96\xde\x44\x06\x4b\xcd\xd0\x2b\xf9\xcc\x91\x33\x87\xc2\xaf\x5f\x31\x34\x17\xc2\xde\xd4\x15\xf4\x4b\xf2\xf8\x2d\x5d\x45\x82\x3a\x77\x98\x55\x5a\x29\x78\xbc\x8a\x65\x7b\x23\xf7\xf8\xbb\x43\xd1\x5a\xa9\xcb\xbe\xf3\xd7\xb4\xa4\x9a\x43\xc2\x52\x39\xfa\xd0\x9d\x1d\xa8\x17\xe5\xc7\x7f\x5f\xaa\x09\xde\xa3\x8e\xfe\x27\x26\xca\xe2\x77\x21\xf1\x43\x6c\x18\xb3\xd8\x30\x11\x01\x65\x2b\x02\x56\x69\xd1\x3f\x77\x9a\x91\x34\xae\x8c\x64\xc9\x39\x2f\xb8\xc8\x28\x57\xd5\x26\xcf\x32\x59\xde\xde\x9e\x16\x7a\xb4\x17\x0b\x78\x2f\xde\x8c\xac\xa0\x79\x28\x40\x36\x31\xfe\xe0\x8f\x09\xc5\xfb\xe2\xa1\x2f\x23\xed\xb7\xd6\x18\x50\x96\x1a\x2d\x71\x27\x39\x58\x76\x8c\x31\xe5\xb7\xd4\x25\x16\xcf\xbc\xb4\xbd\x17\xcb\x60\x4a\xa2\xaa\xbb\x2d\x9e\x31\x66\x73\x58\x20\x3d\xa9\x93\x44\xff\x7a\x83\x48\xdc\x03\xd5\x54\x4d\xb5\xb7\x8a\xd7\xbc\xa9\x6b\xba\x6a\x28\xe2\xaa\x46\x3d\xee\xf1\x13\xc7\x1b\x21\xa0\xc5\x1a\xbc\x15\x5f\x59\x9a\x01\x57\xdf\x33\xe5\xf8\xfc\x74\x12\xdc\xb3\x10\x83\x19\x00\x04\x0c\x2d\xad\x79\xbb\x54\x6a\x99\x60\x65\x6e\xda\x97\x58\xa3\xfb\x12\x9f\x5a\x2a\x47\xdf\x1c\x8f\x8f\x71\xda\x3e\x11\x1e\xb1\xa9\xcd\x2b\x8d\x5b\xf1\x73\x51\x2b\x32\xf7\xf5\x15\xba\x97\xde\xe4\x60\x07\xbd\xf4\x75\xb9\x80\x56\x71\xa7\x8a\xde\x63\xb7\xe1\x16\x27\xb8\x55\xa7\x46\xff\x6a\xd9\x31\xbc\xbb\xfd\x1e\x39\xfd\xfa\xf0\x16\x9d\xf4\x55\xb9\xa0\xca\xfa\x7a\x5e\x5d\x36\x4f\xaf\x63\x1e\x71\x59\x56\x88\xee\x04\xc2\xd0\x3a\x61\x60\xd5\x21\x35\x67\x09\xb3\x5d\xa9\x7a\xc5\x6f\xc6\xeb\x6e\x1b\xd7\xf6\x24\x43\xe2\x3d\x13\xcf\x46\xf4\x5d\xee\x94\xca\xd1\xae\x01\x48\x36\x3c\x24\x0e\x45\x08\xbb\x7c\xee\xe6\x2c\xdf\x29\xac\xf8\xa7\xe5\x55\xe6\xfe\xf7\x20\x9e\x20\x83\x0a\x99\xb2\x25\x88\x5f\xe9\xc5\x17\x99\x56\x07\x92\xda\x99\x2a\x07\xe4\x6e\x30\x3a\x44\x71\x08\x86\xbc\x50\x0e\xef\x6e\x5f\x62\x8c\xf5\x66\x4c\x57\xd1\xdd\x79\xdc\x64\x78\xd1\xb8\x90\x95\xe3\x8b\x6f\xed\x44\x8d\xf1\xf8\x35\x2b\x51\xc6\x75\xbb\x8d\xa6\x12\x8d\x8f\x70\x9a\x68\xe9\xe4\x7f\x70\x4c\xc6\xee\xd5\x4a\xe3\xf4\xe9\x71\x72\xa5\x01\x3c\x2e\xc1\x8a\x7f\xec\xc1\x34\x0c\x4d\x87\x99\x4d\xce\x1d\x30\x12\xc5\x40\x6a\x81\x3a\x72\xfc\x0f\xd7\x7f\xa0\xb5\x7a\xab\xa2\x0d\xbb\x11\x5d\xbc\x40\xbe\x46\x97\x57\x14\x89\x26\x1a\x6b\x42\x82\x78\x98\x1a\x31\xe4\x7f\xba\x5d\xb9\x47\x72\xeb\x34\x82\x50\xab\xf7\x1b\x9b\x3f\x14\x80\x45\x4d\x58\x94\xf7\xdc\x6f\x80\x22\x84\x34\x06\x8f\x93\xe6\xc2\x67\x11\xdb\xac\x4e\x1c\x87\xc9\x1c\x3c\x69\x52\xfd\xe4\x61\x13\x62\xab\xcc\xee\xa2\x2b\xee\x43\xba\x46\x92\xcc\x9a\xa4\x0e\xc3\xde\xba\x10\x2d\x31\x8f\x59\xac\x49\xda\xa6\x2a\x85\xef\x5c\x61\x40\x88\xa1\x1f\x92\x8c\xfd\x73\xbf\xef\x36\x8c\xbe\xa9\xa7\xf8\xfc\xb9\x13\x07\xd2\xc9\x89\xc7\xe3\xa2\x60\x30\xe2\xd7\x71\xe5\x69\x72\xec\xc1\x0e\xfd\x4b\x95\xb6\xb8\xf0\xca\xc4\x91\xa8\xf2\x21\x55\x35\x14\x8c\x3e\xa2\xc4\xcb\xe7\xcc\x9d\xdd\xd5\x39\x1b\x94\x39\x06\xbf\x63\x08\x17\x72\x87\xf6\xe2\x2c\x28\xf7\xa3\x2e\x7d\xc3\x50\x7e\x03\x4d\xcc\xbc\xe1\x55\x5b\x0c\x5b\x3f\xc8\x6f\x6c\xde\xe3\xa9\x43\xfe\x66\xc3\x53\xdb\x67\x41\x88\xed\x36\xf2\x3f\x38\x60\xda\x55\x09\xc2\x94\x85\x40\x71\xeb\x18\x93\x87\x93\x20\xaa\x13\x7b\xc2\xb7\x96\xe8\x21\xbc\x4f\x08\xc3\x19\xec\x35\xc7\x75\xa4\xa0\xbe\x0f\xf3\x83\x2f\xbd\x90\x19\xda\xc7\x6f\xc0\x4f\xde\xf1\x7b\x7d\xaa\x1f\xc0\xfd\x26\x53\xc6\x80\xa5\x72\xf4\xb5\x53\xa8\xf5\x67\x59\xa1\x1f\x70\x90\x64\x8b\x5e\x1e\xac\xb4\x1d\x5d\xe2\x5b\xa9\x06\xf0\xa4\x25\xd9\x35\x40\x37\x36\xa9\x08\x54\x9f\x3d\x9a\x57\xc9\xde\x11\xb5\xb8\xc7\x5d\xa6\xcd\x9a\x73\xc7\xc7\xcb\x8d\xb4\x86\x30\x27\xb9\xb2\xd9\x87\x75\x68\x72\x28\xf7\x88\xc0\xf7\xd9\x3d\x14\x01\xff\xab\x55\xe6\x29\x2b\x94\xe5\x2b\xd3\x34\x50\xfa\xcc\x69\x83\x9a\xed\xb7\x9e\x67\xa6\x81\x2d\xea\xb1\xc4\xe6\xa4\xb0\x75\xaa\x9e\x06\x24\x35\x6c\x92\x14\x0c\xdf\x22\xd3\xdc\x2b\xc3\x5a\xfc\x2c\xd0\x85\xcc\xb5\xb3\xa7\x89\x3d\x89\xb8\xcc\xe2\x99\xec\xfa\xa5\xc9\x06\x22\x8e\x78\x0d\xdf\x90\x74\xfd\xcc\xdb\x6d\x92\x11\xdc\xab\xa5\xb4\xcc\x7c\x65\x97\x8c\x65\x4b\x5b\x48\xe5\xad\xff\x55\xdc\xe6\x17\x00\xda\x5c\x37\xca\xec\xbc\x0b\x87\x11\xe8\x78\x41\x97\xe1\xd0\x2c\x79\x1e\x4f\x9f\xad\x3c\x6a\xf7\x28\x9c\x86\xd2\x85\x28\x95\xa3\x3b\x26\xff\x55\xf2\x10\x2f\x2b\x95\xa3\x71\x4b\x50\xe6\x0f\x23\x9c\x52\x39\x7a\x6d\x90\x69\xe0\xef\x38\xb2\x23\x55\xf4\xd7\x61\x53\xb3\x40\x10\x1b\x60\xc2\x5d\x3b\x4c\xa1\x55\x20\xd4\xf7\x26\x87\xdc\xd7\xde\x54\x5e\x17\xb4\x85\x51\xab\xf9\x4f\x9c\x34\x24\x5f\xa4\xd2\x1d\xe4\x7b\xde\x34\xfd\xce\xe2\xb2\x4c\xc9\x5e\xc4\x2b\x75\xba\x21\xff\xd4\xc3\x45\x23\x8e\x4b\xb2\xeb\x3c\x77\xab\x0e\xed\xb4\xd5\xae\x3b\x9a\xff\xdb\x3b\xd0\x24\x2e\xae\xb6\xe2\x4b\x1c\xb0\x22\xfb\x99\xdd\x1c\xb5\x8c\xf3\x47\x14\xcf\xf3\xc6\x3a\x8d\x03\x73\xfc\x35\xfb\xd7\xa5\x87\x4d\x25\x8c\x8f\xed\x51\xde\x25\x6d\xe7\x83\xc5\x9c\x29\xf3\xda\x22\xdb\x0f\xde\x30\xaa\x96\x3a\x69\x48\xb4\x66\xfc\xc1\x83\x9e\x33\x79\xc0\x96\x93\xca\xd3\x28\x67\x91\x6d\xa7\x74\x8a\xd0\x47\x6d\xee\x21\xf5\xda\xfc\x9d\xcb\xd1\x6a\x17\x34\x3e\x7e\x13\x75\xbd\xdc\x1b\x86\x5c\x75\x93\x73\xa1\xec\xb0\xbb\x56\x22\xe7\xd6\x39\x9d\x71\x01\x5f\xb8\xce\x08\xf1\x10\xcc\x40\x9a\xe1\xdd\xfd\x7f\x01\x06\x28\x53\xc6\xfb\x2f\x3a\x5b\xed\xb6\x9a\x7a\x62\x91\xbb\xce\x14\xed\xf2\x03\x41\x7d\xc5\x36\x99\x69\xcb\x03\xf4\x7a\x98\x65\xd2\x4a\x28\xb0\x1f\xcc\xfa\xdd\xfa\x95\xb5\xb8\xd3\x82\xa1\xcf\xa9\x77\x8c\x6e\x3d\xf7\x69\x92\xbd\x74\x1c\x45\xf5\x36\x09\x12\x4e\x6b\xe1\xb5\x53\xc3\x41\x65\xbe\x14\x36\x01\x29\x2f\xe7\xc6\xc5\xf9\x1d\xa8\xe7\x69\xb6\x7b\xd6\xde\x6f\x4a\x7c\x27\x24\xad\xdc\x3f\x1d\x92\x13\x98\x45\x4a\x0b\xb5\x2d\xbb\xcd\x1d\x7e\xd2\x14\x09\xb1\x02\xe2\xd5\x9c\xc4\x9a\x67\xd4\x10\xa3\x35\x33\xbd\x33\x91\x76\x5a\x6e\xd0\x81\x13\x5d\x43\xb9\xd9\x7f\x7b\x74\x08\xea\x9e\xc0\x81\x7c\xf5\x4a\xc3\x9e\x17\xa9\xf8\x2b\xa3\xcb\x2d\x77\x1a\x3d\x33\xa1\x18\xd7\xe5\x68\xe9\x50\x19\xff\xaf\x94\x25\xaf\x8a\x43\x53\xb6\xe8\x27\xdf\x00\x8d\xab\x72\x7f\xfe\x92\xc3\x59\xd7\x8a\x8c\x6d\x54\xdb\x7e\x3b\xa3\xcb\x84\x30\x8b\x26\x87\xca\x59\x99\x5d\xd2\xf9\xc8\x46\x82\x30\x20\xbb\x44\xfe\x43\x46\xfe\xc9\x6a\x1e\x49\x2c\x25\xa3\xef\x1f\x91\xa1\xce\xe6\x16\x68\x30\x45\x9f\xbf\x57\x77\x23\xfb\x98\x5b\x21\x95\x1e\xe8\x22\xf2\x43\x46\x6a\xc5\x69\xfc\x34\xe4\x13\x3e\xf7\x1e\x85\x8d\xab\x87\x41\x20\x85\x61\x3f\xf7\x86\xa9\x6a\x03\x69\x8d\x7c\x59\xfe\xde\xf6\x2c\x35\xae\xd2\x54\xda\x93\xff\x41\x94\xc6\x84\x49\x2e\x1c\xd0\xff\xf0\x9a\x4e\x7c\x7a\x48\x00\x55\x45\x71\xdc\xc4\x51\x59\x48\x1f\x98\xaf\x43\x5e\xfa\xd7\xcb\x86\x22\x98\xbd\x90\xc2\xf8\x37\xbf\x8d\xba\xc7\xcc\x96\xbc\xa3\xfc\x4d\x1d\x58\xca\xa4\x56\x0f\x7a\xdb\x02\xcd\x64\x47\x67\x80\x36\xf3\x2d\xd6\x74\xa4\xa4\x50\x7f\x4e\x9c\x40\x75\x7c\x5c\xa1\xc7\x1f\xb9\xa0\x6a\xa8\xcc\xd7\xb9\x97\x36\x11\x3f\xbd\x30\x6d\x76\x35\xa8\x3a\xa7\xa2\x4f\x3f\x66\x0c\x40\xb9\xc3\x82\x4a\x28\xf8\xe9\xd0\xfc\xef\xde\x2f\x0f\xba\x45\xac\xe9\x70\x97\xc8\x12\xab\xb7\x4f\x23\xad\xec\x10\xc4\xfa\xce\x1c\x84\xc4\x38\xb8\x67\x13\x78\x35\xf9\x83\x86\xf9\xe4\x1c\x05\x10\x52\xd3\x9e\x29\x4f\xe9\xbf\xb2\xa9\x1a\x8d\xf7\xe7\x3e\x7f\xaf\x69\xb2\x9f\xa4\x63\xb9\x71\xfa\x0f\x02\x41\x5a\x14\x30\x3a\xf9\x73\x9e\x1a\xd3\xb6\xdd\x13\x81\x3b\xcf\x5c\x94\xa1\x68\x0a\xe6\x53\x5b\xee\xc9\x33\x22\x83\xa4\x49\xed\x38\x11\x95\x5f\xb7\xfa\xc1\x6c\x5c\x27\x82\x54\x49\x80\x8b\xf0\xfe\xc2\xb8\xd6\x48\x04\x9e\xa7\x24\x48\x4a\xf8\xdf\x4d\x33\xdd\x99\x65\xaf\x4f\x4e\xf9\xd6\xa8\xe3\xc9\x0f\x88\xab\x44\x51\xe7\x9d\xd0\xfb\xc1\xa3\x3d\x49\x56\x98\x3b\xf6\x40\x3b\x03\x81\x24\xc4\xa4\xbe\x15\xba\x8f\xc3\x61\x87\x5c\x7a\xf3\x30\xd4\x70\xae\x54\x40\x4a\xa8\xb8\xbe\x82\x46\x37\xa1\xa8\xf8\x12\x94\xf8\xdb\xba\x3e\x41\xba\x29\x8d\x83\xca\xe0\x5b\x87\x69\x70\x20\x4f\x2e\x62\xd3\x9e\xb3\xb4\x3d\x36\x14\x0c\x9f\x44\x4c\x55\xff\x96\x90\x52\x05\x5f\xcd\xfd\xf0\x68\x87\xf9\xfa\x2c\x2a\x12\x14\xd0\xcf\xc7\x63\x34\x73\xd5\x09\x13\x31\xd5\xfe\xfc\x8c\xbc\x5e\xfb\xb4\x5b\xba\x7a\x2b\x72\xc7\xb5\x3b\x11\xab\x89\x78\x0d\x11\x36\x03\x4b\x81\x43\xde\x54\xe7\xd0\x0a\xe6\x81\xcb\x75\x76\x43\xed\x3f\x64\x1a\xd9\x56\x05\x01\x21\x0a\xf9\x8e\x07\x65\x5a\xda\x6a\x32\x97\xe3\x4b\x64\xb7\x42\xbb\xf3\xc1\x8f\x3f\xd8\x97\x8d\x8b\x69\x21\x96\xc0\xd6\xdc\x63\x69\x03\x90\x79\x41\x86\xd4\xb3\x60\x8d\x61\x55\xe7\xaa\x60\x9a\xfb\xf0\x00\x39\x46\x9d\x31\x6d\xda\x34\x58\x94\xbd\xaf\x4b\x0c\xc0\xea\x3a\x77\x89\x86\xbe\x46\xd7\x46\xfa\x6d\xb5\x24\x2b\xe8\xb3\x86\x73\xae\xcb\x7d\x8b\xf7\x68\xb5\xa5\xa8\x6e\x38\xd4\x01\x4b\x45\x75\x5b\x1f\x79\x23\xdb\x65\x22\x36\x8c\xd6\x03\xe5\x47\x28\x81\x1a\x37\x1c\x92\x2b\x75\xf6\xac\xb9\x4a\x56\x31\x47\xdf\x4f\x4d\x26\x5c\xa2\x06\x1a\xfd\xb9\x63\x5b\x65\xca\x78\xa5\x52\x22\x50\x17\x30\x6e\x85\x6a\x39\x59\x82\x80\xb8\x74\xe1\x9b\x93\x87\x69\x03\xe3\x84\xd5\x9f\xab\x2d\x4e\x57\x18\xa5\xd0\x31\x18\x39\xef\x34\x46\xc2\x89\xc0\x1c\x5b\x9b\xfe\x7a\x1d\xe4\xc3\xcf\x5b\x94\xd6\xa6\x82\xb6\xe1\x3e\x72\xee\x3d\x3a\x0f\x6e\xf5\xfa\x75\x2e\x2d\x6e\x6b\xaf\x9a\xe8\x72\x3f\x60\x5e\x62\x0c\x90\xfb\xee\x60\x2d\xac\xb7\x48\x09\xeb\xdd\x24\x51\x8f\xa5\x45\x22\x6c\x77\xf8\x7d\xfb\x54\x3a\xe7\x15\xbc\x29\x11\x94\x85\x81\x53\x11\xf0\x88\xb7\x64\x66\x13\x6d\x42\x96\x82\x80\xa2\x61\xc0\x86\x1a\xb0\x66\xb4\x19\x91\x18\x91\x7a\xca\x3b\x16\x99\xe9\x05\x17\x6e\xb2\xb1\x7e\xf2\x4c\xf6\x69\xcd\xb8\x7c\xea\xec\x04\x83\x5a\xf8\x68\x1d\x0f\x7a\x9b\x0e\xb1\xe2\xdd\x1f\xde\x97\xcd\x3e\x6c\x20\xd6\x96\xa8\x5d\x4b\xe5\x0b\x7a\xf6\x9a\x2d\x14\xd7\x4d\x96\x46\xf1\x63\x27\x4f\x83\x09\x8c\xf7\x03\x52\x29\xfe\xe8\x61\xb9\x2a\x16\x75\xb3\x0a\x0f\x03\x96\xbc\x6e\x67\xb7\xe1\x7e\xd6\x35\x43\x06\xec\xfd\x87\x87\xe0\x02\xb9\x54\x8e\x9e\xe8\xc8\x4e\x4d\xb4\xe4\xab\x12\xa6\x02\xf0\xc2\x97\x24\x45\xb3\x74\x63\x7c\xbc\x57\x84\x9c\xba\x24\xd9\xe8\x92\x47\x75\x72\x99\x82\x95\xca\xd1\x47\x8e\xea\xca\xda\xe5\x36\x15\x5e\x82\xe8\xbd\x70\x0e\x8a\x97\x5c\x37\x50\x9f\x7e\x26\x5d\x65\x4d\xa7\x5d\xd1\x75\xe5\x46\x79\xb7\xd7\x91\x1e\x9b\xf5\x92\x7a\x12\xbf\xdc\xad\xba\x12\x06\xd8\xbb\x8e\x0b\xfb\x9e\xd7\xf6\x19\xa4\x9a\xec\x1c\xad\xb5\x35\xf1\x10\xa2\x39\xf2\xa6\x42\xe6\x42\x66\xfc\x56\x56\x8e\xa7\x42\xbc\x5a\x83\x37\x4e\xeb\xdd\xf2\x4f\xf7\xea\x68\x4d\xe2\x17\x91\x3c\xb6\xd1\x47\x46\x24\xc9\x86\x4f\x41\x8d\x4b\x3e\x80\x15\x3b\x64\x91\xbd\x9c\x56\xa8\x4d\x91\x14\xd9\x2f\xd6\x9c\x87\xb8\x08\x61\xad\x0e\x53\x5e\xc9\xe1\x2d\x95\xa3\x3b\x0f\x20\x29\x25\x80\xdb\xe4\xd7\x19\x5a\x90\xca\x7b\xa3\x05\x6a\x36\x17\x0e\xd2\x22\x39\x8d\x3a\xb7\xb9\x68\xf0\x96\xdf\x40\xf5\x7e\x71\xb0\x32\x0f\xa8\xd0\xb8\x2a\xe8\xbc\x32\x5e\x7a\x9b\x0c\xfb\x69\x39\xf5\x99\x32\x2f\x79\xe0\x6b\x2b\xba\x61\x51\x11\xbc\x51\xc7\x8a\xee\x7b\x6c\x94\x46\xd4\x05\x25\x20\x1d\x5e\x78\xbe\xae\xc5\xfe\x6a\xed\xe4\xab\x85\x27\xf4\x19\xc4\x81\x96\xa7\xd7\xd7\x9c\x39\x72\xdb\x2f\xb9\xf2\x9a\x1b\xae\x4e\x08\xaa\xbf\x7f\x2f\x1b\x9b\xeb\xa4\x46\x18\x46\x06\xe6\x9d\xd5\x69\x10\x9b\x0e\x7d\xb1\xdc\xb0\xa6\x9a\xaa\x87\x6a\x16\x10\x1d\x5e\x60\x56\xdc\x8e\x43\xd4\x78\xbe\xc0\xd7\x1a\xc5\x21\x09\xea\x2a\x6e\x3f\x7f\xca\xc8\xe1\x05\x73\x29\x91\xe3\x95\x38\x2e\x2f\xd9\x2c\xf7\xcb\xe2\xd0\x33\x81\x6f\xd1\xd7\xdf\xd4\xe9\xab\x4d\x44\x43\x4e\xfa\xdc\x22\x82\x59\x08\x56\x93\x76\xda\xc5\x51\x5b\xb2\x51\xa0\x97\xb8\xc4\xe3\xa1\x55\x67\xa9\x7d\x7b\x2e\xea\x94\x27\xda\xf5\x94\xb4\x28\x2e\x13\xaf\xba\xdb\xd0\x99\x49\x2c\x90\x60\x71\x8e\x78\x6d\x34\xca\x65\x7c\x4b\xb0\x66\x22\x16\xf7\x3f\x18\x69\xc3\x45\x10\xd6\x42\x2a\xe5\x26\xcf\xdf\x96\x90\xa2\xa4\x9b\xa0\xe4\x11\x17\x3f\xbf\xe9\x5c\xd4\x9d\xb0\xa9\x48\x28\x97\xb0\x46\xbf\xb7\x69\xb0\x5a\x63\x44\x5a\x71\xbe\xdc\x95\x8d\x8d\x3e\xc4\x6d\x56\xf3\x82\xde\x84\x44\xf5\xeb\x7c\x1b\x85\x91\x09\xfc\x7e\x73\x3f\x98\x9a\x3d\x60\xa5\x74\x7c\x95\x59\xc8\xa6\xb4\xf0\x84\x61\x30\x56\x15\x71\xc2\xa4\xc5\xfb\x7f\xb3\x6d\x48\x92\xf7\x78\x0a\xe4\x74\x7c\x80\x46\x92\xdb\x30\x19\x3d\x6c\x36\xac\x48\x85\x39\x2c\x48\xe4\x2c\x1e\x79\x05\x77\xe8\x58\x83\xcb\x41\x6d\xee\xb9\x0d\x06\x84\x91\x08\x3b\xd3\x86\x2d\x2c\x7c\x1d\x99\x08\x72\x30\xe8\xde\xf5\x92\x3c\xfe\x0d\xe9\x84\x97\x0c\x89\x5e\x15\x66\x99\x2f\xdd\x00\xfa\x8b\x03\x2f\x42\xa4\x07\x1e\x02\xf7\x3e\xbe\xf8\x70\x85\xde\x58\x74\x23\xf4\xfc\xd3\x8c\xeb\xf2\x65\x86\x5d\xa9\xcf\x88\xea\x1a\x5d\xb1\x03\xb1\xa4\x37\x2a\x58\x5e\xa1\x7f\xbf\xfe\x30\xe6\x36\x1d\xf5\xac\xe1\xc3\xfe\x1b\xcd\x8f\x7b\xea\xcc\x49\xc0\x92\xdf\x9b\xaf\xb7\xe1\x8c\x39\xf1\x6f\xde\x7a\xc4\x30\xc4\x74\x88\x0f\xc8\xbe\xe8\x27\x75\x83\x70\x1d\x97\xe3\x80\x73\x1a\xf8\x3e\x46\x7a\x20\x50\xd3\x37\x1f\x85\x05\xe9\x50\xaf\x34\x5d\xa3\x7a\xe6\x0e\xd6\xa2\xd9\xbd\xc4\x6b\xd0\x76\xbe\x67\xb1\xb1\x4f\x0b\xff\xb0\x06\xda\x36\x1f\xec\x45\xfa\x09\x14\x32\x4d\x08\x7b\xbf\x7a\x0a\xa1\xd3\x05\x38\xd8\xa8\x80\xf8\x99\xd7\xce\x4b\x76\x85\x4f\x2d\x93\x64\xd8\x5f\x18\xbc\x2b\x7d\x06\xb5\xf8\x85\x46\xc3\x1e\x3d\xd7\x88\x3b\xdc\x01\xd3\x30\x2b\x3e\xa4\xef\x33\xb0\x53\x6e\x93\x12\xab\xae\xe4\xa1\x1e\xb9\x57\xed\x76\xee\x10\x4f\xc3\x10\xa2\x35\x43\xd2\xc3\xb3\x3b\x6c\x43\xdb\xe6\xf7\xf7\x19\x84\x15\xc1\x7b\xa6\x88\x0a\x9c\x75\x4f\x2a\xbc\xb4\x92\x22\x87\x57\xed\xce\xcb\xe0\xb9\x95\xb4\x73\xde\x5e\x6b\x28\xcf\xa5\x1a\x1e\xf1\xfb\x7b\xfc\x3e\xbd\x9e\x67\x77\xce\x9d\x19\xbf\xa0\xff\x7d\x20\xfb\x4e\x7b\x69\x90\x74\x7a\xb7\x1f\x3c\xc7\x4c\x9f\xd5\x04\xfb\xdf\x2b\xaa\x82\xb3\x78\xb5\x2a\x2f\x68\xd4\x84\x6c\x3f\xb1\x09\xcd\xb2\x76\x44\x69\x74\x65\x67\xfa\x20\xc2\xce\xf6\x41\xe0\xb0\xad\x26\xb9\x21\x90\x65\x63\xee\xa1\xd7\xd0\x5c\x97\x59\xf5\xb8\xd6\x86\xf1\x7c\x87\x5e\x7b\x00\x35\x65\x52\x0b\x3f\x7f\xfe\x92\xb3\xd5\x82\x04\xc8\x30\x04\xc8\xa9\xa8\x91\x20\x88\x25\xc1\xa2\x3b\x91\x24\x56\x0f\x11\x8e\xf4\x0b\x2d\x2e\x5c\x92\x1d\xc7\x25\x53\x86\xc2\x37\xa6\x29\x59\x20\x2e\xc0\x27\x18\xe4\xda\x5e\x56\xcc\x28\x97\x27\x53\xcb\x5b\x1d\xad\x66\x5e\x8d\x77\x49\x61\xa1\x5c\x1b\x37\x78\x89\x2a\x99\x34\xfa\xfc\xd8\x8b\xd8\xa7\xca\xa7\x12\x4f\x55\x32\x9b\x5f\x9c\x2b\xac\x68\xf4\xd4\x56\x24\x34\xc0\x9b\x75\x90\x0b\x56\xf4\x47\x81\x80\x8a\x01\xb1\x1a\x8a\xcb\x99\xdb\xf3\x76\x07\x6a\x38\x34\xc3\x20\x83\x4d\xc9\x4f\xbb\x5f\x97\x20\xb5\x38\x32\xfd\xe3\x00\xbd\x58\xa6\x77\x82\x7b\x6b\x61\x97\x21\x45\xde\xe2\x4e\xe8\x32\x8f\x87\x7e\xd2\x7a\x7e\x00\x09\x2f\x48\x4b\x1e\x88\x3e\x77\x23\xd5\x1f\x8b\x35\x05\x23\x1e\xd8\x2a\xfc\xf4\x68\x36\x76\x53\x87\x36\xeb\x24\x1d\x54\x16\x6f\x5f\x3f\x3a\x7b\x70\xd5\x88\x50\x86\x89\x85\xef\x3d\x8b\x14\x20\x37\x5a\x54\x34\x25\x3b\xbf\xf0\x6a\xc6\x21\x92\xc7\x81\x50\x1a\x20\x9f\xf9\x70\xf6\x89\x82\x64\xad\x12\x7a\x78\xda\xd0\x8d\x14\x4c\x72\xab\xa5\xee\x60\x6b\x6c\xf6\x5f\xa5\x52\x8c\x92\x7d\xce\xad\x7a\x76\x64\x06\x71\x90\x2a\xb0\x9f\xbf\xc1\x68\x71\xc2\x9c\xb8\x37\x49\xdd\xe3\x13\xee\x9f\xc6\x8c\xd2\xcc\x20\x9a\xc9\x8e\xaf\xbc\xd5\xc0\x51\x03\x5b\x42\x3d\x99\x8b\xef\x53\xfd\x4f\x57\xa0\xa4\xea\xab\xf7\x1a\x0c\x71\xee\x21\xa6\xf2\x07\xcb\xcf\xc5\x9d\xbc\x80\x96\x02\x5e\x4a\x10\x8c\x85\x9b\x16\x21\x9d\xff\x3a\xf1\xb0\x1b\xc8\x8d\x9b\x8d\xbe\x24\x28\x95\xc9\xa2\xe5\x57\xdb\x55\xfa\x20\x08\x20\x1d\x0b\xdf\xd9\x9d\xbd\x6b\x1a\x17\x78\xd0\x78\xf2\x13\x0e\x9e\x65\xf4\x49\x5c\x22\x04\xd3\x0c\xb8\x7b\x26\xcb\x34\x06\x2c\xb7\x13\x5f\xd7\xe8\x1b\xe3\xe4\x17\x39\xdc\x97\x79\xca\xfe\x6e\x84\xfe\xe7\xc9\xa8\x83\x34\xd1\x24\xb6\x49\x6a\x75\x1a\x04\xc0\xe3\x9e\xb8\x52\xe3\xf2\x12\xf5\x00\xd4\xcd\x1a\xb8\xcb\xe0\x06\x10\x27\xe9\x6d\x14\xcf\xde\xa1\x95\xf5\xe4\x61\x60\xb5\x11\xd4\x0a\x27\x5f\x1f\x6d\x64\x01\xf1\x12\x81\x67\x54\xeb\x48\x0f\x33\xc1\x11\x4d\xad\xb0\xa4\x68\x80\x88\xe2\xbb\xf0\x95\x4f\x4e\xee\xdf\x97\x65\x91\x42\x76\x58\xe5\xa1\xb0\x6e\x31\x04\x0b\x77\x4e\x95\x8f\xeb\x4a\x81\x29\x70\x85\xfa\xb8\x51\x66\xed\xd8\x54\x00\x85\xa1\xb7\xa6\xd8\xa2\x78\x27\xea\xac\xad\x6f\xaa\x42\xb4\x91\x66\xa0\xa8\x46\xb9\xe9\x6f\x69\x53\x61\xde\xa7\x4b\x09\xff\xc9\x11\x6d\xcb\x1e\xfa\x8a\x27\x50\x2f\x8b\xf8\x01\x15\xa9\x64\xfc\x0b\xef\x5c\x68\xe4\xec\x71\x39\x3e\x05\xb4\xb8\xb4\x7a\xc2\x35\x15\x5d\xa3\xf4\x08\x05\xc1\x8e\x46\xdc\x96\x86\x53\x0b\x60\x5b\x35\x2c\xf2\x42\x3d\x5a\x05\x70\x6e\xee\xc5\xf5\x6d\xd6\xe8\x2e\x0b\xfc\xc4\x40\xe4\x9f\x17\x0f\x53\xe5\xca\xb5\x37\x2c\xbc\x52\x65\x41\x27\x17\xa7\x8d\x1a\xd6\x8c\x43\xf5\x66\x43\x5f\xb3\x47\xce\xe0\xe5\x49\x74\xee\x00\x13\x58\x1e\xa6\x43\xe6\xfe\xfc\xd1\xe5\xd9\x9a\x40\xa9\x7a\x66\x30\xf8\x5b\x15\x79\xb8\x19\x06\xea\xee\xce\x7f\xd1\x68\xf8\x38\xcc\x4e\x4d\x03\xfe\x60\x80\x9e\x69\x8b\x82\x61\x9a\x3c\x0d\xde\x0d\x4c\xae\x83\x1b\x67\x97\x6a\x50\xf6\x54\xe7\x48\xbc\xad\x1b\xd4\x06\x4a\x57\x7f\x71\xd0\x5e\x44\x06\x96\x46\xfc\x80\xfd\xbc\xb5\xcd\xfa\x40\xf0\x38\xbf\x81\xde\x6d\xf0\xc2\x68\x84\x47\x62\x01\x02\x5a\xe6\xfa\xba\x94\x82\x7c\x22\x70\x30\x7c\xb3\x49\x6d\x69\x86\x8e\x56\x90\x29\x7c\x6f\x2f\xea\x3f\x32\xbb\x87\xc0\x5f\xdd\x62\xe8\xfc\x37\xa9\xf0\xb9\x97\xbe\xbf\x8f\x1a\xbb\xcc\xe2\xbe\x82\x42\x47\xff\x3a\x79\xac\x71\x62\x6e\xc4\xba\x43\xd1\xe4\xa1\x59\x7e\x7c\xd5\x26\xa7\x33\x2e\xcf\xbf\xb3\xcb\x54\x3a\x74\xb9\x42\xbe\x45\xdb\xab\x10\xdc\x4a\xab\xb4\xcc\x85\x39\x44\x9b\xb2\xc7\x24\x7f\x6d\xd4\x76\x53\xb9\xaf\xbc\xae\x1f\xfb\x46\x46\xb8\xc3\x65\xcf\xfc\xed\xfd\xc8\x3d\x0a\x6e\xb9\x54\x8e\x0e\xd9\x89\xd3\x78\xc0\x24\xdb\x79\xec\x5b\x06\x2a\x43\x70\x12\x30\xe4\x74\x90\x3f\x54\x31\xa0\x9f\xd2\x46\x51\xb1\xc8\xa3\xb9\x33\x10\xe3\x33\xac\x34\xb9\x24\x77\xe6\x5f\xd9\x83\xac\x3d\xa8\xdb\x94\x63\x9b\xd7\xc6\xeb\xf7\xdd\xac\x33\x87\x78\x41\x5d\xf0\x26\x0c\x3e\xa6\x0d\x45\xf1\xb4\x4d\xd1\x3f\xbf\xfb\x38\x92\x2f\x86\x5c\xf3\xf6\x65\xb2\x53\xb0\x50\x50\xd2\xa8\x2a\xe6\xf5\x6d\xa3\xcc\xd7\x6d\x13\x27\x1d\x7a\xe5\xd9\x48\xdd\x33\xef\xe3\x02\xaf\xb7\xbf\xde\xa7\x73\x39\x10\x94\x2d\x95\xa3\xdb\xb0\x8f\x0e\xf1\x1a\xa8\x9d\x14\xfd\xf7\x66\xc4\x90\x14\xcc\xa6\xe0\x02\x90\x54\xc1\xf7\xdd\x9d\x76\x66\x95\x43\x2e\xc8\x89\xf4\x19\x0c\x20\x4a\x64\x07\x39\x7a\xee\x2d\xe4\xec\x40\xdc\xa6\x44\x6a\x6d\x40\x85\x99\x43\x7d\x9f\x41\xcd\xfa\xb8\x61\x4c\xd0\x22\x99\x2a\xf8\xc7\x77\xe9\x47\xef\xb0\x96\x32\x4c\xb8\x66\x37\x52\xdd\x11\xbd\xbe\x94\xe9\xc8\xbf\xd2\x9d\x5e\x27\x6f\x25\x2d\xc5\xfc\xa8\xc7\xcd\x41\x49\x68\xa5\x25\x70\xe1\xdb\x91\x5c\x46\xa4\x5a\x95\x7e\xc0\xf9\x65\x6b\xd3\x7e\x4f\xd0\x6a\xa3\x0c\x7c\xa1\xc3\x4c\x86\x6c\x49\x13\x84\xc3\x63\xe6\xfb\x86\xbd\xcf\xdc\xae\x19\x32\x3a\x5c\x6d\x90\xa0\xa5\x07\x6c\x42\xce\x28\x1c\x9e\x37\x5c\xbd\x18\xab\x11\xc7\x37\x35\x2d\x7a\xfe\x99\xec\x92\x0e\xbd\x2a\x17\x41\x08\x68\x53\x59\xc2\x9f\x7f\x33\xea\xe0\xf9\x3e\x15\x69\x79\x39\x50\x7e\xe2\x72\xca\xb1\xbe\xd8\xe0\xfb\xb5\x23\x8d\x85\x40\x32\xb9\xaf\xcc\xc2\x78\x60\x0f\xaa\xf7\xfc\xcf\xdf\x1e\x8a\x47\x0b\x92\xb2\xfb\x3f\xcb\xb0\xd6\xb6\xe7\x33\x3f\xa0\x9e\x05\xb8\xd1\xdf\xef\xcf\xa8\x65\x89\x50\xd9\x1e\xcd\x7b\xab\x9d\x5d\x4e\x85\xc4\xa2\xe4\x5f\x9e\x38\x3c\x21\xf0\x68\xe3\xcd\x28\x1f\xa0\x1b\xf3\x02\x16\x88\x50\xee\x8a\x09\x17\x8d\x35\xd6\x9d\xc5\x6c\x6a\x3b\xbd\x49\x2e\x17\x1a\xae\x08\x82\xb0\x54\x61\xb5\x78\xcd\x4b\x3a\x35\xb6\x19\xa9\x09\x02\x38\xf7\x5c\xe3\x2d\x04\xd8\x0a\x18\x78\xa7\xab\x1e\x46\xee\xab\x2b\xe5\xb9\xb8\x9c\xf9\x15\x9e\x1e\xd8\x17\x28\xe2\xf5\x62\xc1\x6c\x02\x77\x3f\xea\xb6\x61\xa8\x58\x4a\x5c\xb3\x6e\x7a\x07\x15\xe5\x75\xde\x23\x38\xe8\x9b\xe5\x5e\xb6\x55\x03\x87\x5a\x44\x9a\xac\x76\x7e\x90\xcd\x69\x88\xe3\x54\x04\x0b\x02\x9e\xd1\xcc\xc9\x1f\x40\x52\x56\x44\x48\xd3\xab\x72\xb4\xc5\x20\x8b\x57\x39\xf4\xa5\xa0\x81\x9d\x26\x6b\x03\x4e\x66\x89\x54\x93\x5c\x99\x84\x7d\xc7\x78\x64\x12\x69\xa1\x38\xc4\xd3\x11\x0e\xc7\x8e\xeb\x05\x33\xbb\x9b\x70\xa9\x0c\x5e\x3d\x2c\xf0\xa8\xaf\x94\xb5\xe6\x5d\x81\x33\x7f\x8b\x7b\x2d\x0a\x93\xf1\xe2\x94\xba\x01\x35\xdb\x48\xad\x30\x60\x2d\xad\x8b\xf8\xdd\xae\xec\x39\x46\x5c\x96\xda\xf6\xec\x59\x9d\x8e\xd2\xfc\x26\xc9\x62\xe9\xc7\x64\x2d\x59\xe3\xf4\x1d\xca\xbf\xd3\xd2\x37\x8b\xe3\x87\x1b\x85\x0b\x11\x12\xf6\x22\x85\xcc\x36\x9d\x8f\xfa\xef\xa7\xf1\xd4\xce\x5f\xa6\x6d\xe5\xe3\x34\xae\x1c\x0d\x7f\x21\xfb\x06\x9a\x75\x1e\x48\x6d\x33\x9a\xf2\xd9\x73\xeb\x36\xa9\xae\x75\xe8\x38\x14\x4c\xf4\xa3\xc3\x48\x60\x43\x4a\xc0\x40\x0a\x7f\xe8\x90\x44\xca\xaa\x14\xff\xad\x09\x7a\x00\x32\x77\xce\x1c\x38\x65\x1c\x3d\x93\xa5\x3c\x69\x0c\x3e\xf1\x28\x42\x1e\x70\x2e\x37\xcd\x16\xc3\xd8\x2a\x5e\x15\x7e\xea\xe9\xf4\xb3\xdd\x32\x56\x2c\xa3\x19\x3a\xcd\x67\xee\x44\xc4\x30\x5e\xa9\x50\x21\xc5\xd2\x07\x9c\xe8\xc0\xcd\x3f\x56\x65\x19\x29\xbe\x71\x4a\x65\x28\x08\x95\x21\xfe\x3f\x29\x6a\x92\x2d\x58\x55\x91\x06\x8b\x0b\xde\xc0\xdc\x5d\x40\x99\xab\x2e\xe6\xc0\x08\xe9\x56\x60\xbd\xed\x35\xeb\x47\xa3\xb3\xc0\xb6\xb1\xf9\xe4\xed\xbb\x34\xb4\xdc\x22\x6e\x7c\x9a\xaf\xde\x86\xa8\xa0\xa1\x17\x30\xc7\x81\xd3\xfc\xaa\x35\xfa\xe7\x15\x2a\x82\xb0\xaf\x2f\xae\x81\x72\xbf\x78\x49\xb6\x20\xae\xb6\xc1\x9f\x52\xdf\xcf\xaf\xd7\xc9\xed\xcf\x2b\x7e\x20\x42\x4b\xb6\x99\x72\x0f\x3e\x98\x0d\x43\x1e\xaf\x39\xac\xc1\xa6\x24\xe7\x63\xe1\xc4\xa8\x6c\xad\xd7\xe2\x4e\xc3\xef\x21\x35\x9a\x4a\x5f\x2c\x78\x58\x71\x73\xa9\x27\xe5\xf3\xf2\xbf\x7e\x75\xa4\x9e\x56\x56\xd0\xbd\x7f\x60\x20\xff\x7d\x2a\x5c\x1a\x64\x11\xf1\xb9\x7f\x5b\xd1\xa1\x12\xb0\x80\xb4\x6b\xab\x14\x7a\xee\xc5\xda\xf7\x81\x9c\xa4\x97\x23\xff\x80\xfc\xab\x75\xd4\xa3\x96\x79\xde\xf5\x17\x56\x1a\x50\x7c\x9b\x7b\x1e\x31\x34\x28\xbe\xd5\x71\x36\xfa\x64\x12\x7f\xea\x19\x86\xf0\x00\xb1\x79\x33\x50\xd8\xa5\xe3\x9b\xd3\xbb\xf4\x10\x26\x3e\xba\x67\xc9\x20\xf8\x88\x4f\x96\xca\xd1\xb1\xcd\x58\x7f\x81\x7b\x89\xe3\x5f\xee\x63\xfb\x54\x7d\x40\xac\x86\xd4\x90\xc8\xad\x1f\xd5\x66\x9c\x2c\xfb\x81\x5a\x4a\xe3\x5f\x5f\x83\x79\x16\x34\x5b\x67\xa3\x75\x43\xef\xd6\xca\x00\xdd\xc4\x27\xed\xac\x86\xc3\x0f\x65\x43\xa6\x17\xb4\xa0\x63\xe8\x8e\xd1\xab\xb1\x29\xb8\x0f\x41\x4c\x35\x37\xfe\x78\xaf\xd1\x77\x6f\x02\xe6\xd9\xe9\x55\xa4\xc6\x5b\x9a\xc3\x30\x49\x81\xf4\xc2\x5f\xbd\xbc\xc4\xf4\x5d\x6b\x91\xd4\x1a\xa3\xf7\x84\xbc\xed\x19\xd3\x52\xe1\x8a\xbd\xaf\x99\x50\x12\xd1\xa0\x41\x52\x20\xbf\xf9\xd4\xc8\xe4\x1f\xe6\x61\x37\xf1\x87\xea\xc8\xaf\x82\x42\xbd\x93\x9f\xb7\xd8\x68\x67\x7a\x54\xa2\xf9\xf2\xe3\xf7\x65\xdf\x7e\x8d\x8a\xa0\x2f\x0b\x8b\x2d\xfc\xe8\x55\x24\xc5\x9a\xe1\x5f\x6d\xc9\xbe\x97\x4a\x58\xf1\x78\x0b\x73\x58\x1f\x1c\x6f\x94\x8b\x4e\x5c\xe5\x27\xe6\x7d\x03\x0e\xa7\x65\xed\xe5\x4a\xd0\x7d\x3f\xea\xed\x12\x47\x36\xf0\xa2\x4f\x2c\xd2\x55\x75\x2a\x6a\x27\x7d\x7f\xfe\xf0\xfa\x39\x99\x21\x82\x60\xd2\xd7\x28\xfa\xf8\xb8\xbf\xe8\x96\xa8\x16\xda\xe3\x87\x0c\x09\x65\xea\xf9\x08\xe1\xfd\x91\xf5\xba\x69\xe8\xd1\x1a\x0f\x18\xe8\x96\x24\xd9\xf1\xf8\xdb\x24\x4d\x71\x0d\x10\x8f\x99\x87\xed\x95\x6f\x78\x4d\x67\xe2\x3d\xc4\x69\x50\xdc\x4f\xfa\xd1\x2e\x53\xe7\xca\x67\x56\x7a\x34\x0e\x7d\xcc\xf0\xc8\x23\x56\x20\x59\xb4\x85\xbc\x68\xb3\x07\x95\xa4\x2b\x59\x01\xce\x78\xa1\x4d\x27\xbc\x49\x2d\x25\xb5\x02\x11\xed\xc7\x66\x53\x84\x56\x12\x4a\x52\x65\x88\xee\x73\x60\x7b\xff\xc2\x2f\xaa\xc8\xab\xd1\x8e\x37\xfe\xe7\x9f\x43\x23\x72\x87\x12\x35\x9c\xca\x0d\x78\xde\x9c\x45\x29\x10\xa4\x2c\xe4\x8b\x33\x90\x72\x68\x0f\xb4\x7b\xe1\xac\x39\x77\xf9\x59\xea\xa3\xb8\x0f\xe0\xc8\x42\x30\x15\x67\xbc\x81\xe0\x1e\x77\x41\xe6\xe5\xad\x53\xc6\x50\xc8\xb6\x7d\x85\x0f\x9c\xf2\x6e\xda\x59\xef\xa9\xd3\xb6\xaa\xf6\x89\xc1\x06\xe2\x81\xf9\x81\x60\x95\x50\xe9\x5b\xc4\xd7\xf1\xce\x7b\xf2\x0c\xab\xb3\x6e\x30\xbe\x2b\x95\xa3\xff\x7a\x34\xdb\xb1\x69\x31\x1a\x78\xc4\x85\x13\x40\x43\xda\x3f\x5d\x1f\x8d\x00\xac\x82\x21\xa3\x88\x5c\xfe\x4e\x03\x95\x1b\x3a\x4a\xef\x21\xff\xe4\xd0\x73\x11\x20\xca\x66\x2d\x66\x87\x24\x01\xde\xe7\xde\xd4\xa8\x98\x9a\x74\xae\x1c\x79\xd8\xa4\x24\xb8\x2e\xf7\x7a\x28\x71\x82\xba\xc4\xb4\x05\x2f\x64\xb1\x9e\x0d\x66\x7b\xd2\x80\xec\x34\xb2\x88\xc5\x61\x8f\x22\x79\x2f\x9b\x3b\x14\x88\xd5\x90\x44\x7e\x6a\x6d\x8a\x1f\x74\x7b\x1b\xaa\x4d\xf4\xf0\x9a\xac\x1d\x0a\xd4\xe8\xd3\x3d\x3c\x1a\xe6\x61\x53\x72\x65\xaf\x78\x40\x2a\x0f\x05\x24\x3e\x05\xed\x01\x19\x79\x52\x58\xb3\xf1\x7a\x7d\xce\x60\x93\x05\x81\x60\x8a\x62\x11\x2f\x98\xdc\x9f\x1f\xd6\x5b\xbb\x4e\x9c\x6a\xc9\xe6\x7d\x72\xe0\x70\xdd\xd8\xa1\x2a\x8f\x17\xac\xd9\x54\xd8\xad\xb3\xa7\x5d\x64\x94\x81\x0e\x80\x7a\xa4\xcf\xa9\x6a\x3a\x47\xff\xbb\x0f\x73\x49\xfd\x26\xf7\x7c\x99\xc3\xfc\xaa\x65\x28\x21\x53\xda\x50\xf4\x9c\x07\xe6\xe1\x44\xa3\xaf\x2f\x19\x2b\x6c\xd8\x3d\x32\xb9\x4d\xc3\xb5\x73\xa4\x59\xc1\x34\x89\x08\x00\xfe\x0f\xd9\xf8\xe6\x33\x71\xf3\x96\x08\x08\x65\xb9\xcb\x37\x0e\x49\xd2\x10\x2a\x60\xcb\x17\x2f\x40\xd5\xb1\xe6\xee\x3d\x75\x06\xfc\xe0\xca\x95\xf1\x77\x35\x4e\xca\x75\xbb\x54\x68\xd5\xd1\xd1\x97\x1a\x9c\x5e\x3f\x15\x8e\xef\xcf\xff\xfc\xc9\xf3\xd0\xdd\x54\x1c\x66\x49\x17\x0f\x75\xb6\x15\xb6\xa9\xb2\x65\x55\x98\xcc\x9d\xf3\x9f\x1a\x20\x9f\x77\x02\xf1\x8a\xc3\xcd\xd3\x0f\x9c\x8d\x0e\x05\xd9\xa0\xf9\xe7\x3b\xd2\x7c\xd5\x61\x0a\x6a\x12\xdd\xf8\xc0\x10\x34\x76\x8a\x6f\xbf\x7a\x87\xc4\x98\x5c\xcf\xdc\xa6\xcf\xb1\x3a\xe3\xf4\x97\x10\x6b\x61\x63\x93\x7a\x72\x9a\xf5\x8a\x19\xa9\x05\x05\xab\x15\x55\x5b\x1f\x5d\xa6\xe6\x01\x7d\x5c\xd0\x14\x3f\x79\xfe\xfe\x34\x24\x90\x8a\x68\x5b\xff\xe7\x69\x0a\x9a\x0b\x72\x6a\xc3\x8e\xea\x97\x22\x6d\xc1\x4b\xe5\x28\x1a\x8b\x06\xe8\x95\x46\x9d\xf4\x49\xab\xad\x25\x43\xce\x33\x92\x43\x97\x79\x54\x57\x38\x2f\x1c\x68\xf3\x74\xe8\xa6\x56\x9a\x8f\x7f\x7d\x4d\x5a\xe4\x08\x9e\x11\x4b\x29\x7e\xe2\x79\xbd\xd8\x5c\x22\x84\x12\xaa\xcb\x7d\x75\xcf\x28\xd4\xdd\xc9\xb2\x71\xd1\x40\xd4\xa6\xb5\x50\x51\x8e\xbe\xb0\x09\xc5\x90\x56\xfc\x19\x3f\x33\xcc\xed\xfc\x20\xce\x28\x52\xf2\xcd\x5f\x2d\x41\xe6\xdf\xcc\x87\x5d\x35\x70\xa1\xe9\xf7\x5a\xe3\x7e\x0a\xf0\xc8\x47\x9b\x30\x1c\xc3\x61\x16\x4d\x45\x27\x9e\xe9\xd0\xb2\xab\x6d\x59\x67\x6e\xd2\x1b\x06\x90\xc7\xba\x25\x64\x82\xda\x4a\x7c\xac\xf0\x89\xd7\xdb\x7c\xc4\xa4\xfd\x81\xc4\x60\xfc\x79\xb9\x41\x5d\xf4\x1b\xda\x14\xe0\x4f\xbb\x90\x52\x0e\xf1\x6c\x47\x02\x56\x26\xcd\x93\x51\x89\xb8\x90\x39\x7c\xf2\x78\x36\xe3\x46\xf0\x32\x37\x15\x4d\x3a\x34\x7f\x14\x0a\xee\xf1\x81\xec\x11\x25\x2b\xff\xcd\x8d\x13\x50\x24\xf1\xfc\xd0\x09\x40\x03\xaa\x2d\xc1\x3e\xfb\x71\xb9\xdc\x57\x71\x97\x64\x74\x7c\xf3\x47\xe6\xe8\x36\xe1\x24\x37\x2e\xd3\xaf\x68\x83\xad\x5b\x75\x80\x85\xc8\x09\xfb\x77\x0d\x5b\xc4\x78\x3f\x06\xf2\x3c\x79\x64\x59\xf6\x81\x85\x9d\x7e\xa7\xba\x91\x38\x24\x0c\x9f\x73\x6e\x7a\x72\x98\xf8\xb5\x68\xdd\xde\x91\xe8\xc5\x43\xd6\x05\x85\xeb\xfe\x3a\x5a\xfd\x42\xb0\x16\x88\x23\x46\x4f\x23\xa7\x96\x1e\xe6\x38\xbc\x07\xca\xae\xf1\xe7\x9b\x8b\x4b\x62\x51\xd2\xf6\xef\x5c\x54\x6e\xd6\x89\x57\x2b\x85\x00\x0c\xcd\x8f\x34\x66\x93\x71\x9d\xee\x4b\xa6\x54\xfe\xcb\xb7\x9d\x95\x94\x96\x9e\xd4\xd2\xda\xb5\xd6\xf0\x5e\x73\x80\xad\xae\xa6\x3b\x3f\x7c\xc8\xf4\x86\xf5\xa8\xcc\x11\x72\x2b\xde\x92\x61\x22\xe9\xfc\x4a\xc0\xdb\x2f\xa2\xb3\xd2\x8b\x9a\x3e\xbd\x54\x8e\x16\x1f\xca\x66\xc4\xdd\xc4\xe7\x5e\xa6\x1e\x8a\xfe\x67\x10\x02\x33\x0b\xa1\x10\x2f\x10\xc4\x57\x2a\x7d\x33\x8b\x3b\x0e\x69\x42\xd7\x87\x3e\x63\xda\x69\xa4\xfa\x26\xf9\x2d\x2f\x2b\x6d\x60\x39\xc3\x91\xdd\xcf\xc5\xf3\x65\x04\x9e\x39\x47\xd1\xc3\xfa\xf3\x3d\xcb\x94\x67\x54\x93\x37\xe2\xcf\xbc\xc1\xce\x3e\x84\xe9\x33\x66\x2b\x84\x7d\xbc\x4c\x3e\x1e\x19\xbc\xb0\x1e\x3e\xa5\xbb\x1b\x6a\x8a\xc1\xf3\xe4\x07\x55\x1d\x22\x7b\xbf\x5b\x46\x0e\x55\x47\x41\xbc\xd4\x7c\x89\xad\x7e\x61\xb8\xf1\x2e\x7b\x85\x3c\x46\x53\xce\x62\xee\xf1\x36\xd0\x46\xd8\x54\x13\xe3\x45\x2b\x8c\xbc\x89\x38\x54\xb0\x6c\x4d\x19\xdd\x75\x5b\x96\x1e\x9d\x78\xbc\xaa\x56\x8e\xee\xfa\x94\x4c\x5f\x53\x87\xb4\xb8\x48\x87\x0a\x85\x6f\xf5\x61\xed\xf6\x66\x53\x2a\x4b\x95\xca\xd1\xbf\x18\x42\x3f\x74\xa3\xc5\x82\x84\x1f\xb0\x79\xdc\x85\xc6\x91\x42\x3c\x1f\xe4\x48\x24\x7d\x4b\x36\x8f\x67\x74\xc1\x5a\x28\x2d\x54\x7a\xa3\x2e\x35\x47\x1e\xd1\xc5\x37\x8f\xc0\x3c\x10\x5a\xe5\x1c\x32\xea\xc2\xf0\x91\xa8\x7c\x8c\xc3\x97\x6a\x93\x7f\xbd\xa5\x24\x00\x3d\x78\x99\xb0\x0c\x76\xdc\xac\xd5\xae\xb0\xff\xeb\xbf\x6f\x4f\x43\x78\xb7\x64\x0e\x1d\x7d\x5e\xa9\xc0\x90\x20\x11\x10\x2c\x7c\xf8\xcc\xd3\x1a\x08\x25\xb8\x84\xbf\x19\x79\x36\xa6\x0e\xc6\x3b\xf8\x7b\x1f\x18\x1a\x02\x71\x45\x2d\x13\xd3\xe2\xff\xb7\x2d\x2d\x05\x9a\x04\x5d\xcb\xc5\x27\x0d\x63\x77\x2e\xb8\x17\xf0\x04\xb7\xb7\xf2\xea\xfe\xc2\xe1\x67\x86\x19\xb8\xda\x52\x39\x3a\x6e\x28\x7f\x58\x4c\x58\x61\xea\xd0\xc0\x6e\xc5\x9e\xc9\x0e\xb7\x05\x91\x7c\x9c\xef\x0e\x4f\x54\xb3\x89\xd5\x00\x1f\x9f\x72\x74\xee\x5b\xc3\x33\xa4\x8b\x46\x18\xe7\x97\x4f\x6c\x1b\x89\x90\xb2\x0e\x15\x2a\x42\xe7\x7f\x7d\xc8\x1c\x0c\x08\x62\xd3\x84\xe0\x7e\xe4\x4e\xd3\x12\x35\xfe\xf7\xa4\xef\x5e\xb8\x76\xab\x31\x4a\x92\x6a\x7a\x09\x11\xfc\x4f\x08\x71\x25\x28\xf1\xfd\x50\x69\x6a\xe6\x6e\x9b\x71\x0e\xee\xa6\x06\x82\x84\xd2\x72\x25\x77\x9d\x41\xaf\xaa\x3a\x34\x10\x50\x88\xab\x20\xbd\x68\xa3\x91\x12\x03\x2e\x18\x39\x79\x9f\x33\x58\x7f\x6b\x85\x87\x9e\x4d\x94\xa7\x71\x7e\x50\x31\xdb\xc5\xb0\x42\x79\x2e\x14\x67\x38\xb8\x29\x04\x82\x73\xbd\xa5\x72\xf4\xec\x20\x9c\x82\xca\x2b\x8c\x7e\xb4\x67\x98\x5a\xaf\xbc\x64\x11\x9f\x81\x27\x4c\xe1\xe6\x3c\x72\xf2\x75\x48\x03\x34\xe6\x26\x9a\x5e\x57\x71\x4d\x60\xa5\x8c\x88\xc2\xaf\x8c\x59\x5d\x8d\xb7\xa8\xf0\x90\xe6\x5b\x6e\xf5\x12\x9d\xd0\x78\xdc\x6b\xd6\x7b\xfd\xf8\x03\x00\x9d\x2f\xb2\xf1\x6b\xf6\x8c\x69\x49\x83\x7b\xe5\x44\x03\x56\x02\xc6\x21\x19\xb3\xf4\xa7\x77\x67\x03\xb8\xcb\xfb\x88\x5b\x61\xb7\x84\x54\x03\x53\x9d\x5d\x68\x96\x6b\x35\x3c\xde\xe3\x00\xfc\xbd\x54\x8e\xc8\x53\x17\xa0\xde\x4d\x28\x82\x7a\x49\x7a\x0e\xa1\x46\xdc\x59\x1b\x90\xd6\x57\x08\xea\xa8\xa5\x72\xd4\xf7\x98\x31\x30\x03\xe1\x13\x78\x0b\x9f\x38\xa8\x9b\x09\x95\x6e\x2e\x1a\x2e\x6e\xc4\x16\x4b\xab\x65\x7f\x76\xd6\x5c\xd9\xfc\x91\xde\x8a\xa3\x66\x60\x18\xd2\x6c\xa9\x8b\xb7\x3c\x1b\x36\x3d\xda\xe3\x9f\xd6\x64\xf3\xa2\x77\x0d\xce\x0a\xf1\x6c\x02\x9c\x5d\xf5\x86\xce\x9d\x6a\x92\xfd\xdc\xa6\x43\x58\x3a\xea\x2f\x1c\x1e\x87\xed\x2a\xaa\x22\x45\x39\xe4\xa7\x9f\x39\xd6\x08\x1f\xdc\xa5\xb6\x7a\xfd\x80\x6d\x9d\xda\x69\x7e\x36\x70\x66\x54\x70\x8d\x7f\x64\xb6\xe1\x7e\xd2\x97\x0d\xc8\xf1\x7a\xe9\xa9\x53\xc7\x95\x7d\x35\xb5\x68\x26\x3b\x78\xdb\x81\xf2\xa2\xaa\x51\x8e\xed\xc1\xf2\xb3\xcc\x6a\xc8\xa4\xef\xd3\x07\xb2\xcf\x4b\xaa\x5e\x76\x77\xb7\x4d\xae\x77\x8a\x34\x5f\x15\x96\x99\xc4\x45\xd3\xde\x54\xdd\x1e\xee\x28\x9c\xba\x86\xca\xfe\xc7\xf1\x8f\x18\xb9\xa8\xcf\x2d\x46\x02\xa9\x6e\x64\x36\x69\xd7\xaf\xc2\x42\x00\x6e\x93\x06\x0c\x66\x23\x00\x54\x3d\xa4\x7b\x02\x4d\x6a\x53\xb0\x3a\x4f\x37\xff\x8b\x03\x4c\x43\x0e\xe6\xf0\x50\xe5\x49\x07\xd7\xea\xdc\x6a\xce\xec\x19\xa5\xae\xae\x59\xd3\x01\xf8\xb3\x77\x88\x4a\x7a\x49\x40\x43\x78\x24\x4b\xaf\x40\x20\xa1\x38\x79\x53\xe3\xe8\xe2\xf5\x6b\xb0\xbd\x9f\xe0\xca\x06\xf2\xdd\x89\xa8\x0e\xe7\x76\x8d\x36\xb9\xb4\x2e\xcf\xff\xea\x2e\xcd\x09\xb0\xfc\x36\x5a\x44\xf1\xa3\x8b\xcf\x33\x0e\xd9\x30\xa8\x57\x43\x47\x29\xa9\xe6\xff\x6e\x9c\xcc\xc8\x67\xce\x9d\x1b\x7f\xff\xfc\x75\xe7\x20\xc4\x1b\x03\xb7\x2a\xa9\x28\xf0\xc3\xe5\x06\x9b\xa9\x5a\x4d\xe4\x3e\xf3\xa5\x47\xd3\xb3\xd3\xa1\x7d\x68\x93\xd6\xee\x1e\x83\x8b\x49\x02\xdd\x3d\xe6\xcb\xec\xff\xc6\x13\xa6\x5f\x3e\xb3\x1a\xd0\x4e\x8e\x77\xde\x8f\x0e\x9a\xbd\x34\xd5\x89\x4b\xe6\xd6\xb9\xaf\xbe\xa4\x97\x5b\x45\xb0\x8a\x1a\x5c\x0f\x18\x7b\x81\x99\xd5\x50\x3f\xdb\x4c\x2f\x9c\x3f\xe6\xaf\x54\x3d\x01\xea\x1a\xc5\xf5\xdb\xcf\x52\x29\x71\xa8\x2a\x95\xff\xef\xcc\xec\x5e\xe8\xa6\x95\x54\x16\x5a\x6b\xbc\xe5\xd7\x9b\x1b\x38\xf4\x82\x5e\xe9\xa8\x0d\x41\xee\xd3\x5b\xd0\xc4\x57\x00\x0e\xb3\x3f\x7f\xdf\xa9\x73\xb3\xbb\x5a\xce\x3c\x42\x59\xc1\xff\xd0\x90\x67\xb7\xc0\x65\x38\xcd\x87\xde\xd7\xc0\x64\x81\xe9\x90\xc5\xcf\x2d\x31\x8d\xd2\xe2\x5a\x41\x22\xb6\x0b\x85\xf9\xe8\x8c\xe7\x5e\x10\x1f\xa5\x90\x8c\xf6\x76\x5d\xda\x16\x26\xa4\xd3\x76\xbb\x43\x61\xf1\x4b\x23\x47\xa3\xea\xa1\x97\x22\x6f\x88\xc2\x2f\x8f\x8e\x44\xcd\xb4\xf8\x5c\x54\x43\x9c\xa5\x2f\x2c\x00\x16\x79\xaa\x20\x79\x45\x35\xf4\xe0\x3d\x8e\x87\x9f\x8f\x27\xc1\xf8\x69\x1b\xe7\x54\x6c\x3a\xcd\x9e\x35\xdf\x34\xf3\x55\x87\xc5\xb7\x4e\x8e\x48\xd8\x60\x93\x26\xa1\x05\xb6\xb0\xcf\xa4\x6c\x05\x2a\x02\x46\x23\x9c\x6c\x33\x8a\x71\x4b\x16\x63\xd9\xa0\xf3\xc1\xcd\x5a\x81\x99\xb6\x5b\x97\xfc\xf6\xd6\xb4\x47\xe1\x87\xb5\x52\x39\x9a\xbe\xc5\xe0\xa0\x77\x76\x29\x0e\x7a\xb1\x79\xb7\xd6\x46\x0e\xd1\xb3\x29\x0e\x37\x08\xa9\x15\xc1\x91\x86\xc1\xf1\xe7\x32\x48\xd2\xd0\x97\x0b\xb9\xf0\x8f\x87\xb3\x4b\xd0\x0f\xeb\x44\x04\x5c\xc1\x37\x93\xe7\x3e\x6c\xab\x2a\x4b\xb8\xd3\x8a\x4f\xc0\x91\x27\xb3\x4b\x72\xd6\x9c\x12\x29\xf9\x75\x22\x12\xed\xac\x47\x36\xa3\x66\x29\xf5\x43\x6c\x39\x75\xe3\x9c\xc4\x72\xaa\x22\xe5\xfb\x94\x3e\xf6\xb4\xa2\xdc\x2f\x41\x08\xce\x3c\x45\x2f\xd0\xf1\xcb\xa6\x16\xf3\x93\x31\x7e\xff\xb6\x6c\x0e\x44\x54\xbb\xed\xd7\xca\xca\x54\x8a\xa4\x02\x56\x66\xd2\x00\xf9\x5d\x57\x83\xbe\xbb\xbe\xa1\x93\x86\x2a\x4c\x95\x89\x74\x8a\x9a\xab\x75\x18\xa2\x33\x71\x7d\xeb\x23\xba\xcb\xe2\x79\x08\xb6\x52\x8f\xcf\x20\xa9\x1c\xb0\xc4\x14\x71\xb3\x6b\x54\xa6\x67\xb9\xcb\x87\x0f\xc5\xc7\x96\x54\xa6\x5f\x2c\xda\x34\x86\x83\x38\x33\x95\x90\xdb\x0f\x1b\x4c\x41\x98\x01\xab\x89\xca\x7f\x2f\xcc\x4a\x1c\x37\xa9\x90\x1a\x8b\x16\x3d\x5d\x96\x50\xbc\xe5\x59\xa3\xd0\xe3\x2d\x96\x8e\x1d\xaf\x59\x79\x75\xf4\xa9\x37\x95\xb9\xed\xcc\xce\xcb\xe3\x7b\xf9\xfc\x6a\x34\x0f\xa8\xb8\xf1\xfb\x18\x71\xea\x6c\xd4\x6e\xe9\x81\xe5\xf3\x9b\xe1\xba\x42\x06\xd9\x6a\x9a\x74\x22\x0a\xbf\x3d\x61\x52\x7f\xea\xa0\x56\x25\x1b\x3b\xcf\x2c\xd4\xee\xb4\x5e\x9c\xa8\x7e\xf4\x55\x79\x01\x2b\x97\x5e\x7b\x75\xfc\x6d\xe7\x74\x1a\x5e\x58\x12\xfc\x91\x88\xe2\x4d\x9d\x90\xed\xea\xd4\x59\xad\x4e\x45\x5c\x81\x59\x29\xc6\xb6\xf0\xb3\x91\x88\x80\x2e\x67\xd3\xf1\xc3\xfb\x57\x24\x79\xe5\x53\x51\xa3\x52\x49\xaf\xf0\xed\xe5\x46\x4f\x81\x28\x51\xb0\x48\x2c\x48\xe3\x21\xe6\xae\x45\xf5\x07\x0c\xf2\x16\x07\xb4\x85\x6c\x6d\xed\x9f\xa1\x39\xd5\x21\x74\x0b\xef\x57\x4a\x7e\xd7\xc7\xc5\x42\xbb\x6d\xf5\x79\x8f\x99\x12\x60\x89\xf9\xbb\xa4\x49\x44\x81\x32\x59\xea\x23\x8d\xcb\xba\x79\xe5\x32\x1f\xa4\xd7\xf8\xb8\x09\x46\x81\xe3\x49\x42\x81\x19\x66\x7e\xac\xec\xba\x97\x85\x76\x6f\x80\xd4\xf6\x0a\x5f\xcf\xcb\x7f\xb8\x8e\xd7\x6a\x99\xb9\x46\xa1\x99\x06\xa6\xf8\xbf\x72\x7f\xee\x50\x0b\xab\xfd\xb2\x16\x65\x52\x8c\x71\xdc\x4e\x59\x52\x5c\xed\x36\x99\x48\x67\xbc\x5b\xeb\x0a\xdb\xc7\x2b\x0a\xf4\xf3\xc7\x87\x24\x2d\xed\xca\xce\xd5\x9d\xed\x71\xf0\x5d\xd3\xe0\xb6\x2e\x6d\xcc\xf4\xa5\x4e\xdd\x8a\xf6\x11\x91\x52\x31\xc5\x55\xf7\x0e\x53\x51\x82\xd8\xd2\x20\xb9\x54\x8e\xa2\xb7\xf1\x04\x20\xf4\x02\x59\x42\x45\x9f\xbe\xd4\xe8\x42\x81\xeb\xba\xd4\x5e\xfd\xf2\x0b\xe7\xa1\x5d\x4a\x02\x9a\x68\x1d\x4b\xb3\x40\xf6\x46\x1a\x7b\x5d\xe4\x8f\xf4\x67\x04\x77\xb4\x99\x0f\x14\x60\x90\x33\x38\x86\x5c\x2f\x29\xf1\xa9\x43\x7d\xa9\xfa\x52\x78\xf5\x6e\x63\x88\x16\x8a\x1a\x15\x69\x0b\xad\xe8\x38\x19\x1b\xd3\xc4\x75\x3c\x5e\x44\x5f\x3f\x6e\xf4\x0e\xe3\x2b\x92\x96\xb0\x10\x36\x3f\xfb\xae\xb2\x82\xaa\x13\x5a\xe1\x80\xa7\xfb\x7f\x6b\xe4\xde\x9a\xb4\x88\xc1\x19\x42\xc6\x1b\xaa\x12\x82\x57\x12\xed\x8f\xdc\xb1\x81\x67\x26\x45\x64\x7c\xa5\xff\x3b\xde\x94\xdf\x68\xd2\xd4\xad\xe7\xca\x0f\x70\x92\x61\x71\x21\xc2\x66\xc0\x2a\x0e\xa4\xb9\x85\x3f\xdd\xab\x13\xb3\xe9\x73\xe7\x76\xe1\x9e\x68\xe1\x27\x03\xcc\x99\xb2\x6a\xbd\x10\x4f\x4e\xbe\xa3\x4b\x9f\xcc\x6c\xd3\x16\xb3\x64\xf6\x7c\xf1\x56\xd3\x04\x8e\xf4\x26\xb3\xa4\x4b\x8c\xee\x68\xd0\xc3\xe5\x84\x07\x4e\xeb\x63\x6b\xb5\xf2\x21\x88\x72\xb7\x89\x03\x0f\xd6\x03\xdd\x2a\xa8\x4c\xa0\x34\xe0\xa7\x47\x50\xfb\x3d\xf4\x08\x6d\x91\x52\x39\x5a\x7a\x14\x3b\xf0\x3a\x54\x2a\x74\x20\xd5\xcf\x2d\x2f\x8f\x34\x42\xaf\x64\x7b\xff\x7c\x8e\xd6\xbe\x14\xb8\x48\x5c\xf7\xb0\x11\xab\xeb\xc4\xab\xd5\x89\x3e\x7f\x0a\x57\x1b\xad\x16\xe2\x38\x9a\x59\x90\xff\xec\x56\xfd\x52\x9a\x0e\x09\x18\x46\xbf\x17\x97\xae\x97\xaf\xb7\x42\x61\xf2\x54\x79\x50\xf1\x75\xec\xb0\x86\x3b\x52\xb7\x3f\xa7\x7b\xbf\x73\x66\x4d\x9d\x2d\x6d\x44\x3f\x8d\xd8\x55\x8c\xf7\x40\x03\xe7\xab\xef\xa5\x31\x82\x7a\xb7\x94\xca\xd1\xca\x8a\x7e\x6f\xd4\x6a\xf8\x01\x95\x09\xfc\x19\xa7\xb2\x2b\xc9\xe3\xcc\xef\x4d\x9d\xcc\xb7\x98\xaa\x3c\xc9\xf0\x47\xfe\xf1\x84\x2b\xd2\xa7\x65\xd5\xf5\xfd\x44\x37\x18\x2e\x14\x0e\x95\xca\x4d\xf2\xaf\x96\x4e\x30\x45\xa7\xa9\x9f\x90\xdc\xfa\xf3\xd5\xba\x1e\x86\xb7\x74\x76\x10\xfd\xd7\x02\x1d\x05\xbc\xd0\x72\xe2\x4a\x1d\x4f\x82\xbf\xff\x12\x5a\x98\x3d\x2c\xb1\xf0\x28\xfc\x72\x16\xe2\x1d\xf3\xa6\x23\x05\xbe\xbe\xb2\x00\x8d\xb9\xed\x16\x28\x69\xc6\x3f\xef\x51\x1a\x14\xc4\x63\x2e\x28\x2b\x4b\xa2\xd6\x86\x9d\xd9\xe4\xc3\x01\xb3\x7c\x09\x28\x8f\xff\xec\x6b\x5e\x9b\x7f\x00\xf7\xfd\x78\xcf\xa9\x9a\x7c\x61\xd5\xe0\x9d\x70\x26\x88\x5e\x3b\xcb\xee\xd6\x91\x05\xb2\x9e\x92\x92\x0b\xe8\x2f\xfc\x43\x4b\x37\x2f\x42\x87\xd5\x05\xb1\xea\xb8\x79\xe1\xc9\x28\x2b\x15\xce\x13\xf0\xca\xb7\x1f\x93\x0b\xe8\x4a\x10\x4f\x41\x58\xa2\xcf\x0d\xd1\xe5\x64\x8b\x38\xb6\xb6\x89\xdb\xbb\x77\x94\xb9\x7c\x95\x7a\xdd\xdb\x1b\x11\x61\x1a\x0c\x4e\x07\xbe\x92\xbd\xdd\x16\xe3\xa0\x2e\x99\xb6\x85\xaf\x75\x12\x44\x7e\x43\x2a\xf1\x9f\x54\x44\x91\x8a\xcf\x9d\x30\xa0\x8e\x74\x96\x1a\x24\xe4\xaf\x5d\xa9\xb0\xe8\x85\x7f\x39\x9a\x15\x76\x69\x10\xc0\xe6\x47\xab\x8c\x12\xd4\x25\xbd\x5c\x96\xa0\xd1\xd2\xb7\xd3\xab\xb3\x64\x1a\xf6\xc6\x10\x7d\xbd\x97\x43\x03\xbf\xf0\xa0\x3c\xdf\xd6\xb0\x36\x12\x66\xb4\x63\x75\x3a\xa9\x0c\xda\x00\x4a\xd1\x02\x91\x8d\x13\x75\xd5\xa8\xcd\x7d\xc5\x9c\x58\x73\x9e\xa2\x60\xe9\x6e\xdc\x89\x6d\xc9\x13\x6e\xfc\x76\x9d\xbb\x4d\xbc\xc5\x02\x87\x8d\xc9\x99\x7e\x4a\x40\x42\x21\xad\xbb\x2f\x9a\x9f\x6d\x6a\x54\x05\xa3\xb6\x4b\xbc\xa9\xa7\x4b\x23\xf3\x77\xaf\xd2\xa7\x6f\x1f\x91\x70\xfd\x22\x5f\x6d\x8c\x0e\x69\x35\x60\x7e\x90\x58\xd2\xbf\xab\xc1\x8d\x22\x55\x7c\xc9\xbf\x81\x22\x6d\x93\xf8\x7e\x93\x8b\x20\xc1\xdc\x14\x7e\xf7\x90\xb1\xc6\x3d\x3b\x1d\x2b\xc0\x5f\xcf\x47\x98\x2d\x9b\x3a\x19\xf9\xc0\x47\x0c\x71\xbf\x2a\xf4\x4f\xa1\xa4\x07\x07\xcc\x47\x9e\x37\x63\x02\x8c\x6c\x25\x4e\x2a\xf7\x89\x85\x48\x09\xaa\xce\x85\x14\xb7\x87\x09\x52\xfd\x1d\x73\x54\x19\x50\x51\xa5\x52\xff\xaa\x3f\x7f\xd3\x0b\x59\x0d\xfa\x20\x74\x88\x47\x55\xdb\x3c\x7b\xcc\x6c\x1b\x97\x21\x85\xd8\xb0\xf0\xfe\xdf\xb3\xd8\xe6\x21\xf5\xfe\x97\xc6\x95\x3b\x97\x65\x4f\x4b\x40\x0b\x41\xcc\x48\x47\xd1\xaf\xdd\x37\x0e\x11\x26\xe3\xf4\xde\x5c\x61\x0f\x0f\x69\x63\x91\x07\x30\x44\x91\xf8\xe0\x1c\x9d\x36\x02\x5d\x01\x00\x11\x20\x2e\x34\x2e\x55\xec\x37\x1e\x4a\x74\xe3\x9d\x7b\xc7\x19\x8b\x86\x78\xd0\x15\x4e\x1b\x2b\x3f\x5b\xa4\x51\xb7\x71\x52\xdc\xce\x06\x7e\xf1\x39\x64\x44\xea\xc1\xc4\x26\xfe\xae\xcf\xdc\x7c\x7a\x07\xb8\xc4\x32\xec\x13\xc7\x4c\xda\x32\xc8\x25\x48\xf2\x76\xef\xca\x6c\x60\xa9\xf3\x84\xe8\x9b\x13\x8f\x99\x8e\x1f\x54\x89\x7a\xef\x2e\xa6\xb9\x7d\x68\x35\xd0\x79\xdf\x61\x8c\x2b\x7d\xde\x1b\xf6\x49\xd7\xf6\x0f\x1e\x34\xa4\xaf\xb9\xc7\x15\x0a\x3e\x47\x11\x87\xf7\x96\x90\x29\xf2\x53\x7f\x61\xf5\x8e\x4b\x8c\x8f\xf3\x94\x50\xb0\xf9\x68\xae\x3f\x9a\x9e\x4b\x1b\x19\x76\x87\xfe\xd2\x84\x11\x18\xa0\xe7\x86\x72\x75\x14\xfe\xb0\x68\x38\x6e\xa8\xc5\x95\x20\xac\x88\x39\xd9\x6d\x94\x50\x33\x53\x64\xeb\x1f\x1e\x54\x42\x3f\x82\x05\xcc\x62\x3e\xb8\x8e\xd5\x1f\x1e\x8e\x9a\x93\x22\xf9\xb0\x79\x8f\x6a\xbd\x56\xdf\x12\x94\x5a\xf5\xf6\xb7\x5a\x6c\x3c\xd3\xa6\x00\x18\xa4\x12\x89\xc7\x75\x0c\x0a\x3d\x52\x11\x4c\x76\xe2\xfb\x73\xeb\xb7\x0d\x4d\x0a\x8a\x1a\x11\x56\x3d\xbe\x8c\x9f\x19\xb0\xa1\x80\xf8\x8d\x52\x95\x0b\x4b\x9d\x73\xb9\x5b\xc7\xe3\xb9\x82\x8b\x65\xc5\xff\x75\x1e\xe2\xad\x30\xaf\x26\x07\x72\x77\x7e\x80\x6e\x0c\x00\x31\x52\xb6\x6f\xa8\x4e\x97\x88\x67\x0b\x29\xcd\x95\x7c\xd4\xb5\x7b\xcc\x44\x1d\xd0\x76\x09\x51\x24\xf7\xe9\x13\xe7\xa0\x65\x0c\xa2\xec\xea\xc4\xf9\xe3\xe4\xb6\x6e\x80\xdd\x2b\xa5\x12\x72\x5f\xd9\x82\xcc\xde\x99\x70\x18\x8d\x13\x85\x5d\x08\x04\x44\xaa\x14\x78\xd3\x0b\x2f\xd5\xae\x7a\x75\x9e\x0c\x90\xd6\x1a\x4c\xba\x80\x54\x1c\x4a\x42\x39\x83\xb8\xc3\x30\x2a\xa4\x72\x52\x2a\x67\xae\xf1\x95\xdd\xf6\x3e\xb2\xd7\xca\xd8\xbc\x0e\xfa\xff\x29\x7b\xfb\x38\x29\x8a\x3b\x7f\xdc\x79\x90\x10\x02\x08\xcb\xb2\x3c\x88\x48\x10\x81\x00\xb3\xee\x2e\xcb\x93\x31\x06\xd1\x10\x44\x64\x39\x44\x44\xc2\xd7\x50\xd3\x5d\x33\x5d\x3b\xdd\x5d\x63\x75\xf7\xcc\x0e\x12\x42\x88\x21\xc4\x10\xf4\x38\xc2\x71\xc8\x19\x8f\x24\xc4\x10\xc2\x11\x63\x38\xcf\x70\x1e\x31\x1e\xc7\xa9\x21\x9e\x31\xc4\xf3\x88\x67\x38\xe2\x19\xe2\xa9\x47\x8c\x21\x86\x6d\x7f\xaf\xfe\x54\x75\x57\x75\x0d\xf9\xe3\xf7\xa7\x2b\xbb\xd3\xd3\x5d\xfd\x79\x7c\x3f\x68\x53\x41\x9b\x46\xb7\xaf\x9d\x23\x57\xdf\xe1\x9c\xaf\xc2\x72\x08\xb8\xfa\x93\x5f\x3b\x4c\xe6\xd3\x12\xc3\xae\x61\x71\x61\x8e\xec\x4d\x47\x9a\xc8\x4f\xa6\x1d\xeb\x1f\x86\xaf\x69\x4e\x11\x26\x62\xac\x61\xa7\xac\xf4\xf3\xf6\x00\x9d\x3c\x93\x86\x44\xf6\xe7\x2f\x69\x4d\x32\xab\xe5\x15\x9b\xd2\xd6\x6f\x35\x0a\x76\x03\x47\x6d\xb5\x89\xe2\x1b\x92\xd5\x17\x88\x8c\x46\x4d\x0e\x87\x1d\x65\xff\x5b\x18\xc5\xf9\x96\x30\xdb\xbd\xfe\x0c\x2f\xa1\x67\x17\xe6\x00\x89\xfd\x09\x3e\x76\x42\xbe\x65\x63\x1f\x7a\x94\xbc\xa5\x90\xc1\xeb\x51\xa6\x15\x0f\xee\xca\x6d\x32\xc8\x97\x19\xf2\x14\xbb\xcd\xfe\xec\xd0\xd1\x1a\x77\x1b\xe6\xcd\x3c\xbb\x5c\xfa\x9e\x26\xa4\x8e\xbd\xe8\x05\x0c\xec\x44\x6f\x3e\xfc\xdd\x3e\x45\xe8\x5c\x90\x37\x3e\x24\xa0\x6b\x8b\xb0\xed\x04\xea\x20\x77\xd1\xb2\x31\x5a\x31\x0e\xca\x76\x62\xfe\xfb\x7f\x27\xf5\x04\xec\x05\x0c\x25\xb6\xcc\xe1\x61\x0d\x83\x57\xa1\x0c\xfb\x5e\x85\xa4\x00\xc5\xe1\x8d\x9a\xfe\x54\x11\xdb\xe5\x14\xbc\x20\x1c\xb5\x6e\xac\x16\xb0\x3d\x1f\x95\x71\x1c\x31\x5a\x46\xcb\x2c\x52\x62\x38\x68\x1a\xac\xe6\xa7\x5e\xc7\x31\x37\x2b\x02\x3b\x50\x31\x37\x21\x5a\x3d\xae\x29\x45\x19\xd0\xe6\x8b\x22\xf4\x07\x03\x5b\x52\x2c\x36\x3e\x5b\xcc\x07\x9b\x84\xd3\x8c\x8f\x5c\x13\xb1\xa6\x08\x97\xfb\x37\x2e\x1f\x5a\xe8\x41\x15\x1b\xb9\xcd\x06\x74\x3f\xdb\x2b\xdf\xe2\x1a\x76\x03\x8e\x94\xbc\x7c\xad\xb6\x65\x06\xee\xb1\x84\xb3\x6c\xd4\x8c\x16\x90\x57\xb5\x90\x2d\xe6\x9a\x2f\x3d\xde\x22\xc2\x34\x36\x89\x5f\x30\xa2\xcb\x8a\x02\xcc\x13\x29\x44\x02\x23\x5c\x15\xfd\x89\x85\xea\xee\xd8\xf6\xfc\xc4\x05\x72\xf0\xc2\x09\xda\x45\x38\xd5\x22\xb6\x6d\x15\xc8\xbd\xa9\x3b\x5d\xc5\x94\x48\xb9\x81\x6d\xda\x3c\x4e\x0a\x77\xb4\xc4\xee\x8c\x86\x01\x23\xa0\xbd\x0f\x8c\x53\x6a\x4c\x30\x5d\x23\x29\xfe\xc5\xea\x07\x54\x26\x91\x70\x06\x29\xf4\x84\x47\x0f\x4b\xa6\x36\x53\xe9\xea\xb3\x94\x46\xab\x18\x10\xdb\x2f\x70\x61\x80\xcb\x8f\x4d\xd0\xb2\x8c\x13\x75\x7d\x28\xa5\x6c\xf3\x87\x35\xfc\x2d\x05\xd3\xab\xf0\xc7\x17\xd2\xe7\x81\x51\x07\xb9\x04\x25\xc6\x75\x99\xdb\x87\x35\x81\x2b\x1c\x98\x38\x82\x0e\xe3\xe9\xd5\x1a\xef\x2d\x28\xfa\x71\xc7\x95\xb9\xa2\x45\x5f\xd0\xb8\x35\xe2\x1a\x09\x70\x31\x4b\x8f\x8f\x48\x3f\xdd\x2a\x97\x77\xda\x38\x90\x4f\xa7\x3b\x41\x36\x93\xeb\x13\x46\xff\x7e\x4c\xbe\x19\xbf\xe7\x27\x87\x25\xf7\x93\x47\x85\x73\x8e\x41\x04\x49\x5f\x41\xd1\x9c\x6b\x51\x53\x1f\xf2\x19\x2a\xf4\x84\x7b\x8e\x26\x77\x98\x18\xaa\xd0\xcc\x07\x2d\xd9\x2a\x70\x81\xc9\x6c\xcb\x0a\x15\x80\x08\x2a\xac\x75\xca\xe0\xbe\xdf\x7e\x4e\x79\x1f\xa1\x77\xd4\x4b\x97\x6f\xbe\xd4\xa6\xdd\x27\x22\x46\xd6\xb9\x81\x87\x55\x03\x66\x70\x22\xcb\xfe\x8d\x36\xae\x29\x51\xdb\xa6\x75\xe1\x61\xd7\x9f\x99\x3d\x38\x4d\x67\xa8\x23\xaf\x9d\xfb\x56\x0d\xda\xa7\xcf\x80\x02\x47\x10\xff\x73\x5f\xbd\x4f\xf9\x02\x36\x56\x7b\xd2\x3b\x06\x0f\x91\x8a\xe5\xd1\xd1\x6b\xfd\x86\xfa\xb6\x0a\x4d\xe2\xfc\xb5\x2d\xb2\x7e\xb0\xa8\x0f\x32\xa4\xe1\x8f\x76\x89\x46\x93\x78\x38\x7a\x2b\x6b\xf3\x75\x72\x1b\x0d\x84\xee\x77\xf6\x8d\x87\x34\x9f\x73\xec\x9a\x28\xf5\xa2\xf5\x67\xee\x63\xb2\x72\xb0\x53\xde\xe5\x1f\xd8\xac\x80\x2d\x81\x7b\x86\x5d\xf0\x7c\xce\x8c\xba\xaf\x4d\x82\x59\x03\x75\x9e\x96\x79\xe2\x8c\x6c\xcd\x6c\x24\xfc\x28\x91\x20\x9b\xdc\x50\xc3\xc2\xa7\x35\xf3\xee\x5a\xc5\x59\x05\xd9\x89\x82\x50\x66\xe2\x03\x13\xe5\xbc\x14\xd9\x51\x15\xe9\x12\x54\xf0\x50\x4a\xcf\x2e\x7f\xeb\x26\x5d\x42\x82\x25\xe7\xbc\xda\x2d\x2f\xbc\x6e\x11\x1f\xd7\x91\xf0\xb2\xbf\xcf\x1f\xa5\xa5\xf0\x12\x17\xd3\xea\xe9\xcf\x3e\xbe\x4c\xa9\x7b\x02\x83\xf1\x88\xd9\x32\x70\xbc\x96\xf0\x5c\xaa\x39\xc5\x5f\xca\x94\x05\xb7\x4f\x6d\x62\x58\x2e\xb0\xb6\x87\x98\xf2\x3a\x40\xa2\x38\xea\x4c\x20\x75\x3f\x72\x4c\xbb\x0e\xf0\xa4\xe1\xeb\xcb\x49\xed\x6d\xf1\xfa\x6f\xe9\xd2\xdb\x54\xaa\xcd\xc7\x2e\x51\xcd\xe2\xea\x7c\x7b\x9b\x7b\xe0\x3a\x8d\xe6\xe3\x7b\xd8\x2e\xc5\x6d\xef\x07\x9f\x54\x2d\x9c\x28\xc8\x05\x84\x5f\x39\x9d\x8e\xae\xd8\x80\x8c\xc7\x9a\x87\xf5\xb9\x49\xab\x84\x5c\x43\x15\x63\x13\xf6\x63\x73\x4e\xcb\x17\xa8\x4e\xe1\x65\xcd\x7f\xe2\xa4\xb0\x84\xc2\x0e\xf6\xd5\xf9\xdd\x27\x2f\x91\xf7\x66\xae\x70\xc6\x80\x04\xf7\xb9\x33\xca\x0a\xd5\x89\xa2\x5c\xd5\x0f\xa2\x0b\x5e\x7f\x58\x7e\xc9\x92\x8d\xea\xbc\xe9\xbd\xca\xd2\x69\xd2\x54\x51\x7f\xdc\x72\x68\xb8\x4a\x2b\x0e\x2a\x30\x11\x7c\x66\xc9\xe0\x38\x44\x44\xd5\x50\xb8\xef\x11\x95\x57\xe4\x96\x40\x26\x0d\xa6\xb5\x2c\x79\x1d\x4b\x9c\x5f\xbc\xb2\x43\x19\x96\x19\xc8\xc4\x0e\x1f\x69\x7c\x64\x9b\xae\xe3\x29\x94\x49\x39\x84\x65\xdb\xdb\xe9\xde\x0a\xbb\x65\x20\x01\xcd\x68\x82\x7f\xdc\xd9\xd1\xe4\xfc\x08\x6e\x7c\x3d\xfd\xb9\x87\x77\xb6\x88\xde\xc4\x0b\xaa\xb1\x7b\x5e\x7f\x66\xeb\x9e\x18\xd6\xcb\xa5\x7e\xe4\x1b\xbc\xf3\xe4\xa8\x54\xed\x2f\x3a\x76\xf8\x22\xaf\xbf\x7c\xc5\x45\xf3\x4d\x82\xf1\xca\x7c\xce\x6f\x32\x21\x20\x86\x9f\x98\x10\xe4\x5b\xf3\xe9\xa5\x39\x58\x28\x55\xa8\x61\x91\x8a\x45\xdc\x94\x3c\x4a\xf8\x3f\xdd\xb1\x62\xab\xeb\x33\xe4\x89\x5e\x7a\xea\x4b\x9a\x58\x0b\xa9\x10\x1f\xf1\x2f\x5b\x5e\xd1\xa6\x14\x0f\x6e\x05\x84\x63\x81\x60\x91\x1f\xb4\x4d\x63\x35\x10\xcf\x08\x80\xd5\xc9\xcb\x11\x73\xa8\x80\xea\xe2\xa2\x50\x9c\x9a\x33\x49\x01\x99\x01\x1f\xb6\xd0\x13\x7e\x63\xb4\xea\x26\x89\x31\x2b\x05\x30\xca\xf8\xf1\xb0\xf4\xc6\xb9\x88\x58\x21\x6a\xe2\xdd\x14\xb8\xeb\xfc\xca\x2b\xb4\x74\x0c\x62\x36\x62\x90\x19\x95\xd2\x13\xa7\xe9\xb6\x86\x60\x2d\x0e\x21\xe5\xe8\x63\x92\x63\xdb\xd9\x09\xc2\x0c\xdb\xe6\xcb\xea\xc4\x60\xb8\xde\xf4\xc2\xb1\x5e\x45\x56\x81\xe1\x06\x56\x45\x87\xae\xe2\x06\xda\x85\x15\x16\x62\xbe\x95\x9e\x07\x67\xb3\xb5\xe1\xe2\x0c\xb8\xb4\x86\x62\x1a\x57\x8f\x66\xc4\x3e\x73\x36\x17\xc7\x86\x0b\xfc\xd8\x6e\x25\xf8\x47\xf5\x7a\x25\xf0\x38\x44\x74\xe4\x02\x79\x2f\x7d\x30\xea\x02\x71\x29\xcd\xb0\xa8\x2a\x2b\x97\xdc\xb5\xeb\xb4\xd9\x90\x1b\xab\xb4\x52\x11\xda\xb2\x1f\x63\xba\x5c\x07\xac\x53\xf8\xd4\xc4\x39\x98\x34\x4f\x5e\xb3\x39\x43\x66\xd9\x3b\xb1\x71\x40\x90\xc8\xa4\x7e\xa0\x43\x71\xcd\x8f\x3d\xfa\xa2\x0f\x0a\x6e\xd2\x1e\x0a\x0b\xcc\xd8\x7c\xf8\xca\xeb\x12\x10\x04\xad\x35\x29\xd4\x65\xa7\x2b\xe5\xac\x13\x80\xe1\x09\x6c\xd1\x6e\x3f\x38\x4d\x2b\x8d\x39\xec\x4a\x7c\x3b\xbd\x3e\xff\xd0\x7a\x0d\x86\x0a\xf2\xd4\xb1\x28\xd3\x63\x43\x15\x5d\x03\x54\xf6\xb8\x92\x79\x78\xe0\x50\xac\xef\x44\x81\xf4\x3a\x7b\xbe\x56\xd1\xd9\xc8\xf3\x80\x1e\x2d\x02\xdf\xfc\xc3\xfc\x1d\x70\x08\x63\x9c\xb7\x35\x4e\x91\xec\xeb\xec\x00\xfc\x8b\x15\xdd\xdc\xc7\xd2\xa7\xdd\x46\x86\x45\x02\x0f\xf1\x4b\x8f\xbb\xb1\x5b\x34\xc6\x1e\x23\x5e\x45\x3c\xba\x9f\x6a\xf9\x16\x23\x66\x37\x04\x42\xe0\xaa\x69\xc9\xe8\x2a\x75\x5c\x73\x9d\x67\x64\x64\xaa\x33\xea\x2b\x4c\xbf\xec\xff\xee\x93\x35\x10\x0c\x1e\x97\x5a\xba\x46\x3a\x4a\xa4\x68\x32\x6b\x4f\xe8\x24\x7f\x54\x2e\x0b\xcd\x6c\xd0\xfd\x9f\x30\x4e\xf7\xae\x6d\xd8\xb0\x8e\x84\x30\xf3\x6e\x5e\x8a\x4a\xc5\xa3\x3c\xbd\x91\xd8\xa3\x9d\x19\x13\x58\xcf\xbc\xce\xfb\xaf\xe3\x49\xe1\xea\xaf\x53\xa8\x97\xb9\xcf\x59\x7a\xb9\x8e\x3d\xc8\x2b\x7c\x8c\xdb\xaa\x61\xc2\x39\x67\x45\x0c\x27\x07\xad\x68\xc6\xd0\x42\x6e\xbc\x41\x33\x94\x2a\xe2\x12\x65\x1c\x8e\x11\x7e\xfa\x4d\xad\xb2\xa5\x36\xe5\x05\x67\x7e\xc5\x71\x55\x47\xc3\xa6\x2e\x59\x97\xd8\x7a\x6d\x29\x2a\xd8\xce\x79\xdd\x73\xa2\x8b\x23\x4b\xd3\xed\x8b\x43\xed\xa8\x79\x49\xdb\xcc\x7e\x66\xa1\xac\xe7\x2c\x8f\x60\x2b\xfa\x6b\x9b\xc6\xe9\x4f\xa3\x6a\x53\xa6\xbc\xe9\xb9\xcf\xaf\x51\x38\x6c\x90\xdc\x39\xb8\x66\xd0\xf5\x8a\xf9\x58\xe0\x5b\x30\xd8\x4b\x58\x23\xab\xfa\xae\x52\x4a\xb0\xa2\x67\x30\x52\x8c\xb2\x81\xfe\x72\x6d\x3d\xa3\x88\x70\x37\x5b\x6b\xcc\x9f\xa4\xc8\xcd\x0b\x3d\x8e\x87\xdf\xd5\xec\xd1\x5c\xec\x81\x65\x8f\x76\x0a\x16\xac\x10\xd6\x90\x15\xc2\x0f\x5e\x55\xb7\x33\x41\x26\xe7\x37\xc2\x15\xd3\x13\xbc\xbb\xab\x23\x50\x21\xe8\x5b\x2b\x83\x77\x05\x7b\x1e\xb6\x95\x3c\xfd\xac\xe6\x4e\xc3\xb1\x22\x31\xda\xe7\xbd\x9d\xb2\x5d\x98\xd5\xa1\xe0\x72\xfb\x73\x6f\x1e\x92\x30\x38\x54\x57\xfe\xe2\x86\x0b\xaa\x6e\x8d\xe0\x91\xf6\x67\xc6\xe7\xb5\x25\x66\xe0\xba\x98\x15\x82\xaa\x10\xb4\x1b\x3f\x2d\x7d\xbe\xc0\xd8\x37\xde\xbb\x5f\xbd\x48\x14\x7c\xc9\xe8\x6f\x86\x32\xc5\xa4\x82\x4d\x79\x60\x86\xb6\x3b\x2b\xa2\x78\x01\xb0\x74\x00\xff\x03\xb7\xa2\x18\x7e\xf1\xbb\xc1\x8a\xc0\x48\xb5\x8a\x11\xd0\xec\xf2\x13\x56\xea\x70\x4d\x01\x07\x86\xd2\x35\x7c\x67\xa5\xf2\x5b\xb1\xd0\x5f\xe8\x6f\x92\xcb\xc1\x26\xd4\x5e\xf8\x87\xbd\xe9\x30\x37\xb5\x48\x6c\xbb\xf1\x11\xcd\x00\xf3\xde\x0d\x09\xf2\x4b\xf8\xce\x73\x50\xfb\xcb\x3b\x95\xa6\x95\x3a\xd8\xa2\xf5\x42\x4f\x78\xe5\xc1\x74\xf7\x87\x58\x6c\xc3\xbd\xb4\x98\x3c\x97\x5a\x4a\x37\x75\x2c\xbf\x3b\x85\x05\x81\x61\x21\x17\xa9\x4d\x55\xf6\x5a\x75\xfa\xeb\x72\x73\xc0\xfe\xec\x27\x9f\x51\x5a\x3d\x44\x2a\x34\xaa\x85\x33\xeb\xef\x4d\xbf\x67\xbd\x81\xc7\xd5\x31\x12\x0b\xc4\x8f\x3c\xa6\xa2\x4b\x84\x7d\x4a\xf4\x3f\xce\x1f\x1c\x9a\x04\x02\x21\x2e\xb7\x56\x93\x36\x03\x65\xc5\x44\xfe\x29\xd3\xb2\x47\x36\x5e\x2e\xae\x7b\x55\x04\x54\x57\xbd\x3e\xf9\xfa\x75\xc3\xa5\x82\xab\x70\x83\x09\xb7\xbe\xae\x33\x50\x7d\xcc\x1c\x30\x4a\xe2\x06\x28\x23\xcf\x29\xd2\x68\x3e\xa4\x6a\x1e\x10\xcc\xbc\xc2\xf3\x85\x99\x76\x74\x34\x2e\xd5\x08\x23\xbe\x14\x08\xcc\x7d\xe8\x79\xdd\xf8\x81\x31\x22\x50\xaf\x3d\xfd\x99\x31\xda\x44\xb1\x6a\x53\x3f\xd9\xdf\xe7\xef\x9d\xaf\x99\xde\x12\xa3\xa2\xa9\x5e\x1c\x79\x5d\xc2\x58\x7b\x8d\x6b\x8a\x15\xd8\xe0\x6b\xf0\x13\x0b\xb9\xc9\xee\x37\xb3\xf7\x25\xc1\x63\xa0\x3e\xb7\x99\x80\xfa\x75\xc4\x53\x9a\x84\x2f\x46\x4c\x44\xc7\xb6\xc7\x25\xea\xac\x11\x9d\xea\x33\x03\x84\x3f\x26\x06\xc9\x25\x8e\x89\x7c\x76\xf1\x04\x95\xe9\xed\x13\x77\x4a\x73\xac\xfb\x1b\x6d\xc0\x88\xfb\xb0\x53\x8d\x2d\xa1\x0a\x3d\xe1\x4e\x65\x57\xc3\xf5\x9c\xf8\x61\xb8\x22\xab\xb0\x58\x70\x54\x3d\x10\x0f\x8c\x01\xce\x1e\xd7\x19\x98\x70\x4a\x05\x60\x2e\x33\xf7\x12\x55\x0d\xa6\x0f\x0c\x9c\xb6\x3c\xac\xe1\x78\x6c\xb4\x0e\xc5\x66\x80\x5f\xbf\x20\x77\xa4\x7c\x65\xef\xf9\x0c\x58\x65\xfd\xb9\x27\x16\x28\x52\x46\x75\x14\x9d\x18\x08\xa3\x5b\x36\x2b\x03\x37\x46\x69\xc5\x6e\x44\x15\xff\xc7\x66\x27\x2b\xdc\x9a\xb4\x2c\x7c\xa5\xc8\xc7\x50\x77\x60\xa7\x68\x83\xff\x8c\x9c\x12\xcc\xaf\x5d\xf5\x67\x8a\xfc\x74\x96\x73\x26\x89\xd9\x3a\x03\xb5\x91\xfe\xfc\xed\xe3\x47\x2b\xef\x23\x8b\x02\xb1\x32\xad\x32\xb5\x29\x2a\xb5\x6d\x50\x3f\x11\x63\xeb\xf3\x07\x62\x52\x5e\x54\xf3\x41\xd8\x7a\x6e\x2e\x5c\x48\xe1\xb6\x22\x66\x78\x9d\x45\xdc\x46\xe1\x86\x32\x6b\x46\x1d\x0f\x61\xba\xe1\x23\xc6\x66\x0c\x6c\x5e\x76\xed\x48\x65\xee\x85\xb8\xde\x16\x44\xd8\x67\x9f\x6e\x36\x69\x15\x33\xaa\xcc\xa3\xdc\xe3\xbb\x70\x83\x5d\x04\x79\x44\xd9\xae\xcd\xe0\x48\x18\x1b\xbb\x85\x59\x4d\xda\xc1\x53\x13\x38\xcd\xec\xae\x02\x58\x1c\x3e\x26\xa7\x6e\xc4\xe5\x26\xe3\x51\x03\xed\x44\xff\x01\x4d\xfa\xcf\xaa\x1a\x0a\xd9\xf5\x49\xc5\x42\x45\x0d\x90\xfe\x97\xd9\x09\xbc\x93\xc5\x55\x46\xcd\x80\x0b\x4e\xe8\x29\xfe\x66\x5b\x6a\x02\xc5\xba\x88\xca\xdf\xb8\x7b\xbf\x40\x02\xdb\x01\x48\x76\x6c\x5b\x7c\x99\x32\xd3\x85\x21\xc7\xcf\x0e\xf2\xa7\x80\xfb\x8c\xe8\xad\x82\x30\x3b\x49\x93\x74\xf0\x51\xa2\x4a\x7b\xa0\x4b\x2b\x70\x6d\xe2\x0b\x2a\x67\xee\x87\xab\x35\x7d\x60\xd4\x97\x3c\xec\x2d\x67\xe4\xf9\x66\x90\x49\xe4\x55\xf6\x2d\x4c\x21\xf2\xfc\xd8\x4e\xe9\x0f\xe2\xea\x67\xce\x6d\x9f\xd3\x1d\xfd\xe0\xa5\x43\x72\xfe\x59\xee\x02\x8c\xd3\x3d\x33\x64\xc9\x49\xe4\x3e\x38\xfc\x3a\xb7\x2b\xe1\xde\x3d\x7a\x34\x98\x32\x43\x53\x47\x17\x42\x22\x49\xd3\x7c\xf3\x3a\x7d\xf6\x1e\x4f\xd8\xe4\x4e\x22\x77\x68\xae\x9c\xf0\x74\xce\x9b\x3d\x3b\xba\xc2\x4f\x9d\x4c\x07\x4e\x0b\xbb\x6e\xda\x4a\x33\xfb\xd6\x04\x55\xf1\x8d\x71\xb2\xed\xaf\x1e\x19\x2a\x7a\x48\x5b\x08\x4f\x15\x42\xed\xac\x46\xd1\x40\xcc\x3e\xfa\xae\xd7\xb4\x40\x31\xae\x24\x3d\xc0\x69\xce\x08\x2c\xdc\x16\x7b\x6b\x36\x43\x57\x67\xae\x50\xa1\x03\x86\x1d\x98\x30\xb6\x71\xc6\x6a\xc0\x7f\x0b\x3b\x82\x3e\xd4\xa4\xe3\x95\x33\x26\x4c\x74\x55\x82\x27\x65\xfe\xc5\xf2\xe0\x8f\x4c\xc5\xd6\x3b\x00\xfa\x7e\x7f\xce\x5b\xc6\x87\x34\x0b\x03\x1b\xb9\x44\x1d\x12\xbe\xff\x84\x9e\x0d\xea\xf1\xf7\x5a\xd8\x91\x94\x11\xae\xa9\x0c\x76\xf2\x5d\xdb\xb5\x21\x11\x4a\x38\xe7\xcf\xee\xd3\xd4\x9c\xfb\x40\x4e\x46\xe8\x7d\x86\xb7\x6e\xe5\x15\xce\x92\xc0\x50\x9c\x7d\xfa\x33\xd9\xa2\x6e\xdb\x57\x8d\x77\x97\xe6\xe2\x91\x5a\x86\x13\x22\xec\x6f\xdd\xa4\x98\x6e\x21\x90\x6b\x02\x68\xfd\x20\x65\x44\x56\x47\x15\x1c\x0b\xb3\xfc\xc3\x78\x5e\xff\x61\x87\x94\x59\xd4\xd5\x6e\x38\xa3\x81\x21\x69\x11\x19\x06\x4d\x4c\xe6\xaf\x1f\xa3\x95\x81\x94\x56\x93\xc5\xf6\xdc\xc5\xa9\xc2\xc1\xc7\x1c\xce\xd6\x9f\xfb\xda\x6b\x97\xc5\xbf\x71\x6d\x0c\x24\xf8\xf5\x0b\xc3\xa5\x7c\x2e\x8b\x6b\xf4\x75\x0f\xa5\xef\x55\xdd\xc2\x2e\xae\x41\xe5\x0d\xe8\xd1\x2f\xc8\xbd\x4f\xb0\x8e\xa8\x96\xca\x9b\xe5\x5b\x39\x73\xf6\xac\xe8\x72\x1e\xd4\x18\xf3\x40\x7b\x97\x8b\xc4\xf1\x03\x2f\x57\xc8\x7c\x36\xa7\x8a\xab\x0e\x8c\xbd\x8a\x62\x78\x54\xb0\xf3\x57\xe2\xe7\xe3\xd5\xc1\x2e\x15\x5c\x32\xeb\xf5\x26\xfd\x26\x6a\xd7\xe2\x98\xf4\xe8\x31\x71\xd4\x28\x73\xb1\x6d\xab\x51\xe7\xe5\x41\x22\x0e\x46\x5d\xe6\xb6\x71\xba\xac\xa6\xed\x23\xde\xd5\x3e\xfe\x86\x76\x1a\x28\x2d\xf1\x67\xfe\x2f\xd7\xf1\xb7\xd6\xa1\xae\xc7\x47\xe7\xf9\xab\x9e\x93\xd7\xd8\x3d\x77\x46\x27\xdc\x8f\xfc\x86\x3c\x8f\x64\xb7\x51\x9b\x63\x7a\xd7\x9f\x53\x80\xd1\x16\x27\x27\x67\xef\x7f\x5e\xf6\x36\x73\xe6\xa4\x7a\x9b\xcf\x1f\x8b\xa7\x9d\x00\x40\x8c\xed\x28\xff\xed\x70\x9b\x9e\x4a\x28\xdf\xd4\x8f\x7d\x4d\xde\xc2\xde\x20\xf6\x45\x0d\xdf\xb8\xa0\x7b\x93\x9a\xa8\xc1\xd7\x5b\x9f\xce\x0e\x8d\xcb\xfd\x80\x15\xe1\xb0\x8f\x7b\xb1\xa9\x62\x31\xe2\x75\x4f\xb6\x77\x03\xff\xf7\x15\x62\xdb\x7c\x97\x79\xe8\xda\xe4\x5c\xf5\xa2\x98\xaa\x30\x23\xab\xa8\xd9\x61\xa0\xa4\x44\xf7\x7b\xc5\x33\xaa\xb8\xab\x61\x01\xa9\x35\x3b\x6e\xab\x86\x06\x23\xc2\x86\x3d\xd6\x44\x7f\x42\x2c\xc8\x91\xcd\xb5\x01\x13\xe7\x92\xb1\x0a\xd6\x86\x05\x1e\xe2\xb9\x36\xff\x85\xbd\x6d\xea\xfc\x9c\x63\x2b\x78\x69\x77\xa3\xde\x57\x59\x00\x61\x8d\x8a\x71\x08\xb2\x6f\xae\x96\x73\x02\xb0\x1b\xf1\x7c\xe2\x08\x65\xf2\x2d\x4f\xa4\x67\x12\x0e\x9f\x4a\x87\xe3\x35\xd0\x2c\xf2\xfd\xa8\xce\xe4\x53\x8e\x01\xd7\xa6\x65\x63\x40\x3e\x29\xef\x9e\xb9\xc8\x3a\xd2\xf0\x25\x40\xf8\x23\xc7\x75\xb5\x22\x57\x70\x16\x32\x9f\x3a\x2a\x87\x43\x34\xaa\x3e\xb2\xdf\x5a\x27\x0b\xb2\x06\xad\x63\x46\x94\x40\xd9\x39\xb6\x49\xbe\x1d\x27\x50\xad\xef\x6f\x4d\xd7\x80\x9e\xcf\x50\xbd\x88\x19\xc7\xa1\x28\xf0\x8e\xb9\x1a\xae\xce\xb6\x03\x4f\x32\xf0\x1e\xde\x35\x44\x8a\xcc\x45\x2f\xed\xcd\x5a\x6d\x09\xd8\xc1\x8b\x8c\xfa\xfb\x0f\x4b\x53\x26\x48\x09\x72\x59\xe6\x5d\xab\xe4\x10\x1b\x57\xe1\x65\xf9\xdc\x00\x19\x6f\x2b\xc8\x8e\x5a\xe2\xe8\x6b\xfc\xf6\x6c\xd2\x77\x19\x95\xb8\xf0\xcb\x6e\xdc\xa2\x7b\x75\x31\x92\xe8\xbe\x64\x16\x0e\xfd\xb0\x92\x0e\x05\x76\xa2\x69\x59\xfa\xe2\x46\x9d\x84\xe4\x96\x05\xdd\x31\xbc\x66\x97\x56\xea\x72\x5b\x68\x26\x24\xaf\xb3\x7f\xda\xa6\xab\xe0\x07\x52\x2b\x21\xbf\x6c\xbe\x62\x7c\x45\x3c\x83\xba\x51\xb9\x07\xdb\x8c\x47\x35\xea\xb9\x61\x60\x1b\x43\xfd\xc4\x57\x97\xdf\x54\xc7\xb0\xc4\xc5\x8c\x77\x55\xb9\x33\x6f\x6a\x4d\x2c\xb1\x6d\xae\xaa\x05\xdf\xf8\xd8\xa3\x7c\x7c\xc3\x02\x07\x86\x11\x4f\xbd\x9c\x4c\x8a\x8a\xac\x69\xd8\x9b\xf9\xc9\xeb\x3a\xdc\x9b\xb8\x1c\xdc\xc5\xe9\x41\xab\xd7\xa9\xfa\xb3\x5e\xfc\x8a\x65\xef\x3d\x22\x33\x43\x1d\xa4\xa9\xbe\xbe\xb8\x59\x2f\x0b\x33\x01\x0e\x82\x9b\x31\xe6\xf9\xab\x24\x1e\x5d\xea\xf4\x37\x3d\x8e\x0b\x1b\x95\x8e\xb8\x48\x44\x6d\x7d\xf3\x4b\x97\x25\xbd\x1a\x29\x72\xf6\xc6\x96\x5d\xca\xe2\xb1\x76\x8d\x67\xd8\xd7\x78\xb0\xdb\x98\x36\x56\x65\x79\x21\x90\xf0\xa8\xe6\x35\xa7\x21\x0b\x31\x6c\x51\x1b\xe4\x86\x39\xfa\x63\xff\xa1\xf4\xdd\xb0\x31\x62\x6e\xe2\xa9\xd8\x9f\x1d\xb5\x8a\x9b\xda\xde\xee\x12\x8e\x9a\x68\xaa\x9d\xec\xe2\x87\xb5\x2a\xc7\xa4\x1e\x6e\xe0\x94\x48\xdf\xb7\xee\x9b\xa2\x07\x06\x70\x50\xe2\x15\x68\xfa\x66\xfc\xed\xeb\xe9\x96\xa2\x4c\x02\x9b\x20\x97\xa4\x57\xb0\x99\xcb\x5e\xe1\x59\x64\x45\xc0\x2a\xc4\x8b\xfd\xd0\xb2\x87\x56\xf1\x4c\x78\x07\xe2\xe2\x42\xda\x78\x1b\x8c\x66\x38\xe3\x66\x85\x34\x10\xe9\x9e\x05\x07\xf0\x5b\xcf\x29\x3a\x1f\x06\x43\x4e\x51\xa8\x03\x9e\x3f\xa8\x05\x9b\x28\xba\xc6\x31\xcd\xdc\xab\x6d\xe3\xab\xd5\xd8\x47\x22\x7b\xcd\xf9\x74\x85\xd5\xd5\xd9\xc5\x61\x9c\x83\x4e\xc9\x99\x16\xb8\x1d\xa5\xd8\xff\xd9\x7f\xd2\x72\x87\x83\xcb\xc8\x02\xdd\x44\x8e\xfb\xf8\xf4\x7c\x0d\x2b\x83\x1c\x62\x37\x2e\x5a\xdb\x3e\x37\x9b\xdf\x90\x18\xd5\xfe\x1c\x2f\xd5\x14\x66\x85\xe0\x2e\x2e\x14\xb4\x55\x18\xe8\x8d\x4d\xbf\x72\x6e\xe0\x14\xb9\x02\x2d\x28\xe6\x7f\xfd\x42\xf2\x8a\x71\x86\x42\xba\x24\xaf\x9e\x15\xd9\x17\x7b\x9e\x90\x92\x5e\xbd\xf0\x0a\x05\x27\x6a\xe2\xa6\x5f\xca\x7c\x4e\x23\x44\x97\x58\xcc\xd0\x14\xba\xb7\x79\x54\x94\x6f\x49\xe7\xec\x24\x4b\xd4\xc4\xca\x97\x06\x0c\x78\x62\x1f\xdb\xa7\x02\xce\xcb\x1c\x08\x04\x55\xe1\x65\x9a\x89\x72\x91\x30\xdf\x4a\xe0\xfc\x8b\x9e\x69\x12\x85\xb6\x11\x53\x06\x6f\xe6\xf9\xd1\xca\x77\xd0\x4c\x66\x5e\x68\x95\x3a\xba\xaa\x50\xe3\xf5\x0f\x0f\x53\x9a\xda\x02\x4c\x98\xb3\x83\xdd\x51\xca\xfb\x6e\x06\x76\x81\x21\x01\x5a\xcc\x79\x8a\x9b\x58\xd5\x42\xcc\x41\x06\x0e\x7c\xae\x5b\x11\x7e\x7b\xf3\xd5\xc9\x2f\x62\xb7\x46\x18\x05\xc1\x0b\x50\xf5\x4b\x3f\xf6\xb1\xbb\x5a\x94\x9a\xc9\xf3\x49\x09\x04\x0e\x27\xae\xd5\x5c\x17\x19\x71\x04\xff\x2a\xfc\xe6\x32\xa1\x93\x88\xbc\x0a\x97\x82\x59\xb4\x4c\xf3\xd7\xa3\xcc\x8c\xb5\x1e\x73\xe1\xd2\x8b\x98\x68\xc6\x23\xe5\xa9\xef\xea\x51\x16\xc4\x44\x62\xf6\x40\xe6\xec\x40\x6d\xe8\x41\x7c\x5f\xc0\xa2\xfb\xb3\x1f\x5b\xae\x91\xd3\x83\x1a\x8e\x25\xf6\x65\x00\xb8\x46\x73\x82\xf0\xa3\x04\x20\x84\x1f\xe2\xf7\x68\xd9\x22\x2d\x75\x50\xdf\xb7\x13\x0d\xb5\xdc\xd6\x77\x9b\xec\x99\xda\xc5\xe0\xe5\xbb\x25\x31\xe0\xb3\x71\x91\x78\x06\x97\x23\xcd\xbc\x78\x5a\xb3\x5d\xab\x21\xb7\x42\x6b\x5c\x85\x41\xc4\xba\x3b\x86\xf1\xba\xee\x0e\xe2\x79\xb4\xae\x14\xe9\xbf\x1a\x27\x08\x88\xbd\xa8\xaf\xe9\xf8\x4f\x58\xd6\x84\x12\xe7\x65\x48\x78\x6b\x51\xc6\xa9\x42\x67\x74\x6d\x43\x8e\xf3\xf7\xcb\x0a\x5c\x93\x57\xfc\x5f\xe9\x1d\xa6\x8c\xc8\xfb\x00\xb2\x93\x1b\x79\xf0\x0a\xed\x06\x09\x01\xa2\x64\x97\xb8\x66\x5d\x1a\xbc\xe0\x92\x32\xe6\x9b\x6e\x3d\x43\xbd\x6f\x25\x17\xd1\x39\x17\xde\xbb\xc6\x82\xa4\x85\xed\x05\x7f\x82\xf8\x6b\x5e\x3a\x97\x7f\xff\xe5\xd4\x75\x53\x8e\x29\x7d\xeb\x14\xea\x44\x50\x43\x6a\x03\xf3\xc3\x87\x55\xdd\x73\x4e\x7a\xec\xcf\x7d\xa8\x63\x6c\x1c\xcc\xb1\xd9\xa4\xf0\x96\x1f\xbf\xe7\xe2\x12\x55\xbc\x7a\xba\xa1\xa4\xb8\xa0\xda\x36\x2e\xc3\x1b\xe4\xbd\xad\xcb\xea\x89\xf1\xba\x38\x12\xe3\x07\x6b\x2c\x00\xea\xf9\xb0\x6f\x14\xf9\xe5\xe7\xb3\x65\x7d\xe3\x52\x56\xc7\x65\x82\x78\x1d\x52\xef\x1b\xa3\x55\xa4\xbe\xc4\xab\x64\x36\x4c\x4e\xff\xdd\x59\x1d\x1d\x51\xe1\x6c\x54\x04\x74\x6c\x88\x82\x59\xa8\x63\xc9\x63\x9d\xcb\xf4\xe5\x01\xd4\x06\xff\x35\x36\x9d\x24\x29\xf3\x2d\x0a\x6a\xf4\x2e\xf5\x7c\x62\x08\x99\xe4\x71\x4b\xa5\xf1\x24\x69\x56\xcf\x98\x3a\x55\xca\xb2\x97\x11\xab\xa1\xb2\x95\xf2\xad\xca\xfc\x67\x87\x26\xc3\x82\xed\x32\x09\x1c\xc9\x47\xff\xec\x96\xf4\x75\x34\x50\x85\xd6\xb0\x5b\xa1\xd1\x2b\x21\xc9\xca\x03\x34\xcf\x22\xc5\x8b\x4f\x2c\x9b\xff\x78\x40\x82\x24\x50\xec\xf3\xab\x5a\x68\x95\x94\xad\x81\xd8\x6e\xf5\xf4\x67\x47\x2f\x95\x15\x96\x22\xc7\xd9\x54\x91\xbf\xd2\x22\x0f\x83\x85\x19\x25\x5c\x48\xbe\xf0\x9e\x8e\xef\x8e\xed\x1b\xe3\x49\x4d\x65\xad\x2c\x07\x2d\x12\xfd\x6f\x7e\x34\xd1\xab\x2d\xa9\x8e\xca\x03\x52\x63\xee\x1b\xe7\x93\x2e\xa6\x6b\xee\xbc\xe8\x27\xa7\x1f\x13\x0b\x7e\x1b\x34\x50\xc2\xab\xf6\x5e\xa6\xdc\x73\x28\x2f\x3e\x3a\x56\x53\x2a\x0c\x4c\x80\x57\xc6\xd4\xd2\x03\xab\xe5\xdb\x0d\xd2\x6e\xa0\xaa\xa6\xac\x8f\x80\x45\x0b\xb5\xf2\x80\x53\x02\x89\x4d\xaa\xd5\x58\x44\xf4\xf5\xbd\xe9\x22\xc4\xaf\x53\xa1\xe8\xe0\x2f\x57\x65\x33\x8a\xc4\x26\xeb\x20\x9c\xdc\xa3\xb8\x10\x50\xaf\xc8\x31\x98\xb9\x53\xa7\x87\x48\x33\x2d\xab\xd0\x13\xb6\x69\x26\xec\x56\xe0\x15\x91\x1b\xcf\xae\x33\x7f\xf5\x70\xf2\xef\xeb\xe0\x83\x9a\x79\x62\x55\xba\x7f\x42\xae\x7b\x51\x65\xa1\xeb\xdc\xa4\xf1\x71\xa5\x67\xe7\x4d\x0f\x68\xf4\xe3\xa0\x68\x13\xcf\x8a\xf5\xd6\x7a\x4f\xcb\x2f\x53\x25\xd8\xc0\x0e\xe6\x9e\x1e\x7f\xbf\x49\x3e\x42\x5a\xf4\x11\xb7\xbd\x0f\xaf\x7e\x4f\x5f\x99\x7a\x9e\x82\xf2\xc9\x9d\x7e\x49\x8e\x44\x5d\xd1\x2b\x77\x3e\x2e\x86\x24\x88\x89\x35\x5e\x6e\xd1\x58\x59\x91\xe3\x2a\x31\xa0\xce\x87\x15\x51\x5e\x03\xa4\x60\xe4\x09\x6f\xf5\xea\x76\x55\xf8\x1b\x9b\xd8\xc0\x9e\x47\x39\x06\xaa\xb1\x5e\xd2\x2e\x48\xac\xd6\x9b\x9d\xf5\xb2\x96\x6c\x69\xc9\xc7\xc2\x30\x30\x77\xa7\x70\xf5\x06\x75\x90\x82\x43\x6d\xa1\x58\x94\xfb\xd1\x7e\x2d\x4a\x08\xda\x7c\x7a\x15\x92\x39\xb5\x34\x5e\x1c\x02\x0c\x1e\x84\xc4\x2e\x49\xe2\x7d\xe0\x91\xe8\x6e\xa5\x8e\x2d\xc8\xe0\x67\x76\x97\x92\x36\xd7\x9c\x92\x6e\x73\xbf\xbe\x42\xc2\xa0\xba\x66\xce\x02\x7e\xe2\xbd\xe9\xdc\xe9\x07\x95\xc0\xee\xd5\xaa\xfa\xa9\x6f\x8c\x51\x66\x49\x88\x55\x0b\x25\x8c\x84\x57\x56\xf8\xd9\x43\x4d\x64\x09\x1f\x1b\x62\x66\x79\x6a\xa8\x36\xdf\xb1\xa8\x1b\xbf\x41\xd9\xfe\xbb\x94\xd5\x97\x45\x98\xdf\xe0\xa6\x75\xd9\x7b\x5f\xe3\xef\x0b\x1f\x14\xf1\x0a\x6c\x52\xc7\x65\xca\x5b\xc1\xb5\xf6\x6e\x3d\xa1\x99\x4a\x77\x77\xf0\x42\x7e\xc3\x8e\x89\x4a\x51\xe8\x63\x56\xc4\xac\xdc\x9c\x3f\xff\x46\x01\x6a\x14\x91\x51\x01\xde\xa7\x40\x2e\x2d\xeb\x55\x91\x87\x06\xec\xa7\xa3\xb0\xd0\xf5\xb4\x2a\x39\x63\xf0\xd1\x44\x74\xdf\x3f\xff\xb0\x8c\x07\x06\xa9\x71\x80\xee\xb3\xbb\x54\xa8\x23\x97\x86\x6c\x2f\xf4\x84\x67\xb5\x6d\x21\x72\x5d\x1a\x08\x60\x12\x1c\x92\xde\x09\xbc\x41\xa8\xd6\xbc\x42\x4f\xf8\xdb\x97\x92\xb4\x5e\x4d\xb9\xbe\xdc\xaf\x20\x93\x3d\xa3\x7e\x8d\x57\x8f\x3e\x75\x53\x97\xd0\x95\xe0\x28\x01\xbd\xaa\xf9\x79\x9f\xb2\x5e\xb7\x48\x49\x0c\x16\xef\x71\xc5\x5d\xc7\x2e\xf0\x87\x01\xc1\x7b\x32\x3d\x86\xaa\xa2\xc6\xf4\x49\x20\x5d\x91\x97\x9c\x68\xc7\x40\x81\x4d\x4a\x25\xb5\xac\xd8\xec\x6b\xb3\x66\x0b\xf9\xd3\x0b\x2e\x75\x31\xaf\x53\xb4\x2a\xa8\x44\xfb\xd2\x32\x91\xd3\x77\x35\xe1\x79\x1c\x82\x99\x10\xc1\xcf\xfe\x61\xb3\xfc\x0a\x25\x9b\x54\xab\x7c\xe2\x16\x6e\xe7\x2b\xc8\x9b\x7b\x6e\x6c\xfa\xd6\xb5\x55\xfa\xba\x23\x70\x09\x0f\x52\xf6\xba\xb1\xca\x0e\xd6\xb6\x61\xf0\x27\x93\xdc\xb2\x77\xd2\xc7\x6c\x66\x17\x17\xdf\x09\x69\x5f\x9b\x72\x80\xb9\x3b\xb6\x88\x53\x6f\x4d\x4b\x02\x46\x32\x1b\xed\xcf\x8d\x1c\xcd\xd7\xcb\xc8\x8c\x92\x13\x62\x50\xfd\xb7\x77\xa4\xe3\xaf\x8b\xeb\x17\xf5\xf4\x6e\x59\xcc\xa9\x28\x0b\x68\xe0\x93\xbb\x83\xe6\xf9\xd1\xcf\x37\xc9\x57\xa4\xab\xa3\x03\x60\x8e\xc7\x1e\x4e\x42\x86\x05\xca\xc6\x1d\xca\xe4\xdb\xf3\x91\x49\x02\x8e\xcb\xf9\xec\xe1\x74\x54\x72\x4b\x36\x1f\xcb\xa5\x8b\x93\x8e\x09\x9a\x0c\x0b\xf5\x91\xa4\x22\x64\x36\xea\x7e\x33\xd4\xf5\xad\xf8\xa1\x6d\x5e\x2e\xcc\xf2\x5d\xcf\x17\xd5\x64\xf8\x6c\x97\x2c\x20\x2a\x2c\xaa\x31\x40\xf8\xf9\x89\x91\xca\xf8\x9e\x89\xa2\x0d\x04\x66\x26\x0e\x97\x26\x22\x5e\x5c\x8f\x4d\x59\xd3\xaa\x15\x5e\x7c\xe9\x3e\x6b\xa5\xd6\x69\x04\x04\xc2\xb0\xd8\xa1\x1f\x3a\x2f\x18\xec\x8c\x04\x0e\x98\x70\x46\x1f\xde\x36\x48\x27\xea\x41\x17\x04\x5c\xba\xab\xb4\x75\x0f\x0d\x7c\xae\xe6\xc9\x0d\xb2\xfe\x53\x11\xce\x15\xf6\xe5\x08\x86\xf1\x83\x95\x51\x52\xd4\x1e\x00\x2e\xfa\xd8\xbd\xc3\x45\x3f\x8c\x4a\x25\x12\x75\x00\xd1\xc7\xff\x9b\x06\xa0\xf3\x68\x2f\x0d\x98\x2b\xe6\xd3\x85\xd1\xea\x4a\x70\x4e\x57\xa1\x27\xfc\xfa\x2a\x85\xe0\x43\x5c\x0a\x48\x49\xc8\x82\xbf\x38\x20\xe3\xfd\xcc\x6b\xe6\x42\x45\xbb\x51\x53\xc4\xc7\x36\x29\xc6\xf8\x3d\x9e\xb8\xde\x14\x50\xaa\xdb\x61\x62\x9e\xb9\xf3\xf1\x26\xe7\x3f\xd7\x17\x28\x8f\xf0\x8d\xf3\xfc\x85\xbb\x93\x20\xd7\x45\x15\x75\xd3\x96\xbb\xe3\x91\x36\x95\x38\x8a\x3d\x9f\x51\xc2\x11\xe1\x7f\xba\x6e\x84\x92\xc5\x59\xe2\xe5\xfb\xe9\x56\x1d\x5d\x5e\xb6\x80\x3b\x0e\xfb\x83\x4f\x08\x25\x92\xce\xf6\xee\xe8\x3f\xaf\xbf\x2e\x7d\xd6\x60\x4d\xc0\x77\x07\xe1\xbe\x49\x0a\xd8\x98\x11\xa7\x2a\xa2\xfa\x0f\x2e\xa4\x0f\x44\x83\xb2\x0a\x57\x05\x84\xf7\xf3\x4b\x6f\xab\x36\x14\x55\x0e\xdd\x0d\x4f\x1f\x57\x8a\x5c\xe4\x9a\xd4\x29\xf4\x84\xdf\x2d\x0d\x13\x51\x1d\xf9\x3e\x22\x7c\x28\xfa\x05\x37\x19\x38\x94\x68\x9f\x8c\x66\x53\x87\xa6\xc3\xbd\x57\xc7\x26\x76\x05\x7c\x2d\x3a\xc0\x9f\x6c\xd3\x08\x9c\x9c\xea\xc7\xbb\xde\x4f\x69\x8e\xe1\x42\x34\x38\xd9\x7c\x7f\x5c\xdb\x2c\x25\x85\x72\x58\xd4\xd4\xee\x6a\x94\x18\x72\x76\x92\xdd\x3e\x56\xa3\xa8\xe3\x3e\x24\xf6\x81\xfa\xfc\xef\xb0\xad\x3a\x27\xb2\x52\xc1\x04\x51\xae\xcc\xe9\x55\x32\x0f\x98\x34\xf0\x19\x41\x41\x9f\x92\xa0\x7e\xf5\x50\x8b\x32\x1e\x9a\x31\x6b\xde\x2c\xc0\x30\x7c\x66\x7c\x13\xec\x3e\xe0\xab\xe7\xcc\x8c\x2d\x7c\x65\x7a\xcb\x0d\xb7\x2d\xbb\xf9\xce\xdb\x6e\x11\x5b\x9e\xcf\xf7\x7d\x44\xbb\x43\xa8\x86\x6d\x3e\x33\x6d\xae\x55\x07\xaf\xd1\x95\xb4\x10\xf0\xab\xf9\x09\x0f\xf3\x52\xa3\xbc\xda\x44\xb5\xc8\x5f\xb3\x85\x8f\x5c\x80\xae\x17\x65\xeb\x47\xc6\x49\x38\xa4\x02\x37\x6e\xea\x67\x36\xda\xfa\x7c\x85\x2f\xad\xc5\xcb\x32\x72\xd2\x87\xa2\x9f\xae\x14\xdf\x68\x83\xd6\xc6\xd5\x29\xb3\xb9\x0e\xba\xc8\x21\xe7\x5f\xe4\x4d\x0a\xb2\x31\x83\x78\xe5\x6f\x94\x37\x53\x88\x2b\x17\x7a\xc2\xed\x1b\xd3\x4f\x51\xe8\x3d\xf1\x65\xa8\x86\xdd\x3e\x2f\x2d\x98\x70\x4d\x19\xc9\x3c\x78\x22\xb9\x23\x15\xdc\x44\xe6\xcd\x3c\xaf\x4d\x36\x8d\xf6\x62\x3b\x6a\xbf\xa8\x96\x41\x6f\xbb\x70\xee\xe6\xfb\x80\xa8\x7a\x19\x36\x6c\xb8\x82\xbe\x30\xa2\x0f\x88\xe2\xdc\x12\xa1\x50\x69\x33\x8c\xcc\x46\xa1\x27\x1c\x6f\xf3\x57\xea\x36\x65\x70\x91\xbd\x74\xab\xf6\x24\x11\x31\xe5\xea\xea\xf1\xa3\x49\x61\x84\x4c\x65\x13\x95\x7d\xf2\x4c\xfa\xd7\xea\x16\xf6\x2d\xcc\x84\x5c\xda\x33\x43\x95\xb9\x7c\x1d\xc3\x5c\x2d\xbf\x42\x91\x29\xaf\x53\x56\xf1\x2c\x0a\x13\xce\x5b\x9e\x4a\xa7\x7f\x33\x2a\x61\x61\x34\xfd\x87\x1d\xa3\xf4\x0f\x89\x31\x89\xd9\x53\x07\x64\x54\x36\x28\x38\xc5\x70\xb3\xd1\x1f\xac\xd2\xf5\x87\x01\x7b\x1f\x6f\xe1\x6f\x55\x4d\x27\x68\x35\xb0\x69\x00\x2f\xda\xe1\xb3\xc9\x13\x42\x95\x66\xa7\x93\x6f\x6f\x11\x77\x93\x93\x8e\x01\xc8\xfa\xa6\xaa\xe3\x6a\x4a\x45\xd1\x6c\x87\x74\x19\xb1\xf8\x4c\xb1\x3e\x4e\xb5\x9f\x45\x71\x3d\xe5\xed\x54\x4d\xf5\x58\xec\x2c\xf5\xc5\xe7\xd4\x8d\x2b\x02\xb1\x77\xe8\x7e\x53\x02\xf1\x9e\xc9\xfd\xf0\x6a\x8b\x87\x29\x90\xe7\x39\xb3\xa2\x37\xea\x07\xaf\xf0\x47\xbd\x8c\x92\xc4\xcd\x3e\x3b\x77\x2b\x5f\x6b\xdc\x48\x19\x23\x26\x6d\xc6\x7a\x64\x7f\xe1\xc7\x33\x6c\x83\xba\x66\x01\xa6\xde\x1a\x85\x0a\x84\x97\x3d\xaf\x50\x41\x96\x06\x2e\xcb\xde\xb9\x33\x3d\x9b\x44\xa6\x43\x5c\x50\x6a\x8e\xd1\xeb\xfd\x19\xf3\x4d\x7d\xd7\xdf\x1b\xc4\x2a\x75\xe1\x8f\x4e\xea\x0e\xb9\x0c\xc7\x06\x70\xb9\xcc\x26\xa9\x09\x17\xa8\xe3\xce\x2f\xee\x18\xad\x31\xe1\x95\x24\x39\xea\xb8\x52\x8e\x71\x06\x2c\x5c\xc7\x84\xdd\x0a\x33\x11\x4c\xe8\xee\xd3\xec\x83\xcc\x6b\x6a\xe4\x9a\xb2\xc3\xb1\x65\x8b\xe6\xf3\x66\x73\x05\x76\xc1\xa9\x0f\xc7\x15\xe7\xba\xd7\x78\x8d\x81\x18\xf1\x7c\x6a\x30\xe0\x59\xe6\x57\xbe\xdc\x12\xff\x73\xe4\x26\x3a\x2b\xf9\x8f\xdc\xa7\x60\x3c\x0c\x8b\xda\x88\x71\x14\xc0\xdd\xeb\x55\x81\x12\x2f\xe0\xb8\xe1\xcf\x76\xc9\x6b\x2f\xdb\xc8\x8b\x35\x24\x1f\x7f\x58\x33\x78\x36\x7c\x5a\xc4\x02\x73\x99\x0d\x14\xc5\x36\x46\x4c\x2e\x0d\xd6\x9a\xd7\xe0\x50\x81\x1d\x03\x43\xe4\xbd\xfa\xb6\x94\xc5\x34\x61\xd7\xf7\x9d\x36\x81\xa8\xf3\x6c\xe4\x14\xb1\x22\xd6\x91\xfb\x93\x2f\x95\xd5\x89\x42\x85\xc8\x3c\x76\x54\xf1\xbf\x31\x8c\xc0\x93\x1a\x34\x2d\xef\x24\xce\x5a\x33\x54\xee\xf8\x83\x35\xa5\x2a\xb0\x50\x49\x94\xa2\x2f\xbf\x3c\x5a\x29\xea\x7c\x52\x44\xb6\x0d\xb6\x84\x40\x57\xbc\x96\xef\x3f\x17\x10\x1b\xc6\x1d\xb7\x74\x8f\x50\x07\x43\x40\x25\x2e\xf4\x84\x3b\x14\xe0\xb8\x43\x19\x87\xee\x84\x2f\x68\xe0\x16\xec\xf9\x08\xa6\x2a\x42\x2e\xa2\x4b\x51\xf2\xbd\x3b\x20\xae\x1f\x70\x8d\xf9\xdc\x83\xf3\x75\xba\x0d\xf1\x08\x2c\x72\xc3\x13\xf3\xb5\x41\x28\xa9\xf1\xb2\x1d\xa2\xcb\x86\xdd\xba\xd3\x4a\x23\xfa\xbf\xb1\xba\xe2\x95\xa1\x78\xef\xfc\xa0\x54\xe2\xa1\xc1\x8f\xbd\x78\x38\xb1\x1b\x38\x4e\xd9\x5b\x8f\x68\xab\x09\xd4\xa0\xa5\x92\xd8\x24\xef\x7e\x54\x1e\x22\xe4\xfa\x16\x06\x98\xeb\x5f\x4d\x6c\x4b\x45\x29\x03\xfc\x72\x20\xb8\x7f\x60\xb1\x1c\x3b\xd8\x18\x57\xaa\x48\xb5\xed\xc6\x6c\xbc\xbc\xfd\x65\xec\x36\x8f\xa2\x73\x1f\xd6\x64\x31\xba\x3a\x67\xcc\xea\xea\x28\x40\x07\x9b\xbf\xa7\x4b\x13\x17\x44\x2e\x32\xb9\x1c\x81\x48\xd0\xfb\xda\xe4\x27\xb8\x51\xde\x6a\x6a\xa5\xf3\x43\x34\xb9\x0a\xcf\xc2\xd8\x85\x88\x20\xdf\xff\xa1\xdb\x86\xab\x53\x4e\x5c\x84\xf4\x77\xcd\x9b\xa3\x95\x67\x08\x92\x38\xf2\xf4\xb6\x5c\x97\x7e\x1c\xb4\x54\xc2\xae\x87\x63\x25\xc9\xb3\x2b\xd3\x8b\xdb\x06\x72\x2b\x18\x5f\xb4\x12\xca\x57\xf6\xb7\xca\x06\x50\x4d\xf9\x63\xce\x89\x5e\x34\x85\x19\xe3\x43\xcf\xc2\x0a\x2e\xf2\xdf\x74\x47\xff\xf2\x99\x36\x25\x5c\x19\x04\xfb\x71\x6f\x9b\x1d\xf2\x12\x0f\x41\xb7\x71\x81\x95\x5b\x63\x34\x6a\xfe\xde\xd7\x5a\xeb\xc9\xfc\xa3\x48\x19\xb7\x53\xeb\xe9\xcf\x3c\xb2\x56\x26\x28\x07\xb9\xa8\x2c\x1c\x1c\xfa\x33\x99\xbd\xba\x07\xa3\x43\x5c\x1e\xa5\xe1\x0e\x64\xdf\xba\x44\xee\xfd\x8b\x24\x7a\x67\x3e\xfd\xb0\xee\xd0\x3b\xb7\x93\xc3\x6c\xbe\x99\xd5\x24\xe1\x00\x48\x2d\x6a\x32\x77\x40\x9b\x92\xb2\x7c\x8b\x82\x2a\x06\x27\x64\x0e\x6d\x12\x4a\x8f\x49\xa6\x7c\x3b\xf0\xcd\xeb\xb9\x21\x13\xdf\x8f\x0d\x94\xd1\x09\xec\xb0\xc2\x9f\x9e\xd2\x77\xa7\x28\x30\x03\x9b\x4b\xe1\xc3\x54\x71\xc9\x56\x65\x4a\x69\x63\xe8\x40\xe1\x7f\x7c\x71\xb5\x6a\xf3\x8e\x84\x5f\xfa\x63\x9b\xd2\xe8\x49\x33\x8a\x36\x00\x8d\x9a\xde\x64\x45\x9d\xdf\xbc\x40\xfa\x1c\x05\xac\xd0\x13\x0e\xd5\x8d\x1b\x8b\x34\xf0\x39\x4a\x71\xd6\x61\x41\x58\x74\xaa\xd8\x30\x10\x47\x35\x64\xf6\x6c\xb9\x4a\x6f\x15\x91\x05\x52\xd3\xe9\x41\xe5\xf4\x13\x72\x6e\xea\x36\x58\xa0\xae\x03\x5f\xd4\xcc\x34\x3d\x9f\x61\xe4\x80\x39\x0b\x2f\xc5\x97\x28\x76\xa1\x0e\xee\x23\x09\x94\x3a\xb7\xc3\x9e\xf9\xff\x4f\xc2\xf9\x93\xcb\x3e\x51\xe8\x09\x33\xa7\xd2\x5f\xb3\x37\x88\x8e\x23\x44\xa0\x5c\xe7\x32\xb5\x59\x89\x92\x7f\x45\xe5\x48\x5b\x35\x5e\xf7\x2f\xeb\x59\x72\xf3\x8d\x9f\x00\x90\xcb\xcb\x82\xe6\x89\x19\xaa\xa1\xa8\x84\x53\x29\x67\xef\x8d\xd2\x4e\xdc\x9c\x4e\xb1\xa0\xc8\x4f\x9b\xcd\xc3\x7f\xd1\xc6\xf5\x42\x4f\xf8\xdf\xdb\xd4\xc9\x0c\x10\x01\x1f\x9c\xab\x5b\xf6\x73\x98\xac\xc9\x21\x81\xe6\x51\xdd\x58\x19\x31\x38\xb4\x80\xc9\x79\x40\x1b\xb9\x62\x66\xa1\xaa\x70\x57\xcc\x7d\xf1\xc5\xb4\xba\xc4\x47\xc5\xb2\xeb\xae\x47\x55\x99\x77\x14\x13\x10\x32\x22\x89\x2e\xc2\x0d\xd7\xa8\x60\x95\xd0\x7c\xec\x3d\xc9\xd6\x33\x90\x53\x45\xa4\xdc\x34\x11\xca\xcd\xf6\x87\x55\x13\x8a\x7c\x1c\x5c\xdc\x2e\x7d\xfc\x17\x40\x0f\x2e\x18\x72\x7d\x83\x5b\x15\x4d\x2c\xec\xc5\xa4\xa2\x85\xd5\xf4\x2b\x63\x05\x08\x28\xdd\xf2\x92\x86\xad\x91\x68\x6c\x70\x2c\x8e\x51\x63\x13\xc5\x6a\xf8\x93\x89\xe1\x44\xa1\x27\x9c\xbc\xa4\xe9\x26\xf3\x42\x9c\x17\x7b\x1d\x5a\x5b\xd3\xa0\xae\x87\xc9\x45\xfb\xdf\xdf\xf5\x69\xa4\x5a\x87\x4b\x06\x39\xd2\xc5\xa3\x7b\x89\x9c\x77\xb8\x29\x59\x8d\xcc\x91\xb7\x9b\x4c\x6f\x2e\xce\x56\xbd\x7f\x9c\xf6\x92\x96\x11\x71\x85\xfa\xc5\xbb\x2b\x87\x89\x8a\xdb\x68\x18\x62\x8d\x94\x7b\xcd\xd7\x45\xe8\x5c\x6a\xc0\x9a\x0a\x62\xdf\x86\x17\x04\xfe\x98\x96\x55\xf6\x53\x7e\xf5\x21\x75\xfb\x02\xbe\x73\x10\xab\x5b\x07\xf1\x44\x8f\xfb\x7c\x86\x1d\x68\x23\xb6\x6e\x19\xaf\x85\x4f\xa6\x29\xdb\x67\x7b\x57\x48\xd9\xc3\x0e\xa8\xca\x47\xb6\x6b\xaa\x95\xc8\xc5\xaa\xd7\x75\xe6\xc1\x09\x7a\x9d\xcd\x28\x32\x85\xde\x7c\xf6\xd5\x23\xe9\xf1\x00\x76\xb1\xd3\xe0\x9c\xcc\x2f\x1f\x54\xfc\x63\x09\xf3\x7c\x46\x38\x87\x85\x3e\xc7\x0f\x00\x08\xb9\x82\x4a\x02\x54\xe5\xc3\x2e\x57\x4a\x5a\xd2\x14\x26\x27\x29\xae\x78\x42\x3b\xae\x70\xb3\xc2\xe5\x6e\xd9\x20\x57\x04\xdd\x73\xe6\xa4\x48\x2d\x93\x6a\x72\x95\x86\xa2\xe3\x9b\x7b\x51\xb9\xab\x81\x97\xa8\x3c\x15\xf6\xcb\x42\x22\x4a\x31\x30\x26\xd6\xda\xe6\x22\x6f\x9b\x63\xab\xbd\xe8\xce\x67\xf7\x6b\x29\xad\x7d\x2e\x9f\x84\xe5\xeb\x6d\xc3\x14\xba\x78\x1f\x74\x88\xf9\x7b\x14\x88\x8d\x4d\x1c\xea\x1a\xd8\xb6\x21\x22\xfc\xeb\x5d\x52\x4f\x9e\xff\xe9\xd9\x7d\x23\x55\xd4\xaa\x1a\xf5\xb7\xea\x81\xc7\xf7\xed\x18\x86\xf7\x5d\x49\xfc\xa9\x92\xe4\xeb\x4d\x1b\xac\x39\xaa\x45\xad\x3f\x72\x38\x8c\x2c\x8e\x96\x2b\x47\x6b\xfa\x6d\xa4\xc2\x88\xcf\x17\xd2\x50\x3f\xe4\x6a\xca\x64\xb3\x7d\x56\x47\x74\xe1\x7f\xf3\xe2\x44\xb5\x6a\xf6\xaa\x18\x90\x3d\xfa\x43\xbc\xfb\xb4\x6e\x8f\xe6\x06\x62\x36\xf6\xac\x06\xa5\x83\x1d\x75\x2d\xa1\x61\xb4\x6b\x32\x5a\xa2\xb1\xb4\x11\x2b\x63\x4f\x38\xac\xbd\xdf\xa7\x6b\xd8\xa1\xd8\x18\x21\xbb\xc5\x57\xd8\xf9\xd0\xb6\x46\x1f\xfa\xd3\x55\x9a\x20\x3d\x2f\xdc\xc2\x21\x5a\x25\x52\x62\xa8\x4c\x84\x6c\x50\xf8\x45\x53\x1f\x1e\x89\x7e\x70\x3a\x4f\x29\xd9\x09\xc9\x69\x6b\xc0\xa3\xca\x0e\x7d\x49\x9e\xdd\xae\x42\x67\x53\xcc\x6a\x5d\x33\x4c\xe5\xe2\xa0\xbe\xe8\xda\x7e\x70\x42\xfb\x36\xa4\x94\x80\xe6\xea\xd7\x29\x42\x33\x31\x81\x1a\x6a\xf7\xc5\x45\xa9\x5d\x5e\x00\x43\x9a\x7f\x1a\x2b\xa5\xc0\x81\x9e\xf9\xcd\x7b\x55\x3f\x54\x8f\xf3\x0e\xa1\x04\x0c\xc7\x0d\x52\xfe\x6e\xd4\x27\xba\x65\x8e\xe7\x9e\x2f\x08\x5a\x29\x95\xec\x53\xd2\x90\xc5\x6e\x66\x96\x94\x5b\xa4\xac\xa5\x8b\x3c\x13\xdd\xdd\xb4\x07\xf9\xeb\xde\x2b\x95\xba\x1d\xc0\x33\xcd\xd0\x99\xb5\x23\x15\xa5\x12\x17\xaf\x0b\xb0\xcd\x17\x8d\xaf\xb5\xa4\x0f\x53\xc5\xc5\x75\x01\xb2\x7d\xfb\x11\x0d\x68\xe4\x72\x13\x0d\x90\xe5\x8c\x5b\x29\x63\xb4\xb6\x21\x01\xb4\x5b\x6c\x0d\xde\x19\x4e\x6f\x2a\x2a\x13\x3b\x57\xd2\xac\xb6\x70\xb0\xa6\x19\x2e\xe1\x6a\x15\x33\x83\x32\x97\x77\x55\xf9\xab\x95\x98\xc3\xfb\x59\x3e\xfb\xff\x7b\xcd\x68\xd1\xb0\x88\x6d\x32\xd1\x9c\xf4\xf4\x67\x3f\xba\x51\x08\xe0\x7a\x5c\x12\xea\xff\x5e\x6f\x55\x56\xa6\x36\x46\x1e\x07\xb5\x64\x5e\xb8\xa0\xa8\x1b\x57\x48\x55\x8c\xd2\x33\x4f\x68\xbd\xa6\x8b\x51\x3c\xe8\x9c\x38\x6e\x98\xb2\x9d\x03\xc7\xe6\x70\x9f\x36\xf6\x12\xc5\x76\x3c\xf6\xfa\x76\x98\x0e\x3b\x26\x6b\xc4\xe2\xa1\xfd\x79\x77\x60\x93\xc6\x31\xa3\x35\xe9\x6d\x9a\x9b\xa1\xe0\x41\x7c\xd4\x57\x28\x31\x8c\x0b\x3d\xe1\xae\x01\xba\x7e\xbc\x53\x0d\x6c\x8f\xd4\x70\xec\xd8\x9d\xdb\x7f\xf0\x72\xad\xa6\x66\x5c\xa7\x8c\x8f\xf1\xf2\x33\xc6\xa9\xd6\x63\x14\x99\x7c\x41\x75\xe9\x5a\x75\x8b\x16\xb8\xa2\x42\xff\xf5\x1a\xc5\xab\x84\x60\x16\xd5\x6c\x02\x24\x78\xf8\xbd\x64\x2d\x8f\x0d\x5f\xc9\x31\xe1\xae\x37\xe5\x40\x64\xde\xdc\x59\x85\xb9\x20\x39\xf5\x86\x6c\x1a\x6d\x6a\x70\xd0\x75\x26\x58\xc9\x5b\xa9\x9b\xb0\xb0\xcd\xe3\xd0\x90\xfe\xec\xff\x6c\x4c\xd6\x8d\xbe\x11\xc3\x6e\x33\x13\xae\x4b\x57\x82\xb3\xf9\x18\xeb\x19\x5d\xde\xd0\x46\x8d\x58\x80\xb1\x3f\xff\xf1\x22\x9f\x0d\x2d\xc0\xb6\x2a\x46\xf8\x9f\xae\x6e\x46\xc0\x35\x33\x93\x58\x98\xdb\x31\x40\x02\xf3\xf9\xcd\x1b\xb1\x46\x70\xce\x28\xb1\xb9\x11\x7e\xbe\x7b\xa5\x8c\xf2\x14\x59\xa0\x34\xf4\xd1\x19\x2a\x5f\x2d\x80\xca\xed\x4d\x3b\x99\xdf\x60\x57\x5d\x2c\x7f\xe0\x3e\x2d\xd6\x53\x53\x58\xb7\x65\x2a\xae\x0a\x9c\xf1\x29\xb3\x04\x89\x74\xf9\x46\xf9\xa1\xb8\x46\x00\x9a\x4d\xf7\xf3\xd2\xbe\x73\x76\x47\xa1\x81\x98\x09\x55\x74\xc1\x46\x1c\x60\x7d\x52\xdb\xc1\x19\x0c\xe3\x18\x15\x95\x0f\x96\x34\xf9\xcb\xf9\x24\x6e\xce\x33\x7f\x7d\x46\x96\x81\xb8\xcf\x0a\x9c\xc4\x62\x37\xbb\xf1\xb4\xae\xdc\xcc\x4c\xb1\x1c\xcd\x7f\xe0\x02\xbf\xed\x4b\x70\xa9\xa4\x54\x8e\x0f\xbe\x2c\xa3\x6a\xd7\xec\x02\xb8\x0c\xfa\x08\x66\x4a\xf9\x31\x0b\x35\x2a\x1b\x8a\x3d\x94\x73\xdb\x9f\x51\xe4\x94\x69\x1d\x33\xc0\x6d\x88\x37\xf7\xd1\x77\x34\x64\x93\xe7\x71\x8f\x43\x51\x16\xbf\x35\xf8\x32\xa5\xec\xaf\xc2\x64\x67\xee\x46\x5d\xe1\x36\x28\xfa\xa2\x0f\xfe\xe2\x58\xfe\x98\x3b\x3b\xe7\x14\x3a\x3b\x3b\x81\x46\xff\x8a\x6e\x39\xee\xfa\x1c\xde\x94\x1d\x25\x45\x9e\x7c\xc8\xc1\xce\xcb\xf2\xf1\x9b\xc2\x62\x2a\xf7\xf8\xf5\xcd\x13\x10\x86\xcd\x58\x0c\xc9\xdb\x3a\x52\x39\x32\x4e\x62\xfe\xd8\x9f\x9b\xf6\x72\x9b\x72\xf1\x3e\x18\x89\x57\xad\x28\x1a\xfc\x56\x33\xb7\x34\x83\x46\xba\x8e\xcd\x0f\x6a\xd1\x6a\x1f\xe2\x54\xed\x86\x18\xe8\xef\x7f\x24\xe9\x3c\x6c\xac\x20\x4b\x87\x6f\x94\xc9\xed\xd3\x6a\xed\x98\x39\x38\x9f\x87\xd8\xba\x45\xc1\x7c\x2a\xfb\x0f\x8f\x71\x5c\xc6\xed\xd2\xe4\x4a\xad\x27\x6f\xdd\x30\x4a\x2f\x0f\x5c\x43\xa8\x08\xbf\xb6\x51\x7e\x61\x0d\xcb\xbc\x9f\xdf\x7d\x06\xaa\xff\x10\x26\x7e\xb9\x41\x9d\xfc\x03\x21\x91\x4f\xe8\x73\x3b\xce\x0b\x39\x4b\xe2\x52\xc3\xc2\x4e\x33\x42\x79\xb5\x5c\xa8\xa8\xe2\x56\xb9\xab\x27\xa7\x9f\x68\x95\xc6\x84\x8a\x5c\xe7\xbb\xbc\xc9\x48\xa0\xac\x62\xd9\xfa\x95\x25\xcd\x15\x8d\x5d\x93\x66\xbe\x3f\xdd\x23\xd7\x70\xac\x99\xc3\xb0\x7e\x81\xac\xf4\x5d\xe4\xe0\x64\x4c\xfd\x01\x45\xe7\x8d\x32\x52\x26\xc2\x84\x35\xb7\x40\x40\xa6\xec\xe8\xc4\xf3\xfa\xff\xe1\x4d\x9c\x9d\xd7\x33\x65\x01\x23\xa9\xf6\x7d\xd2\xb5\x31\x22\xd6\x41\x2e\x55\x1c\x04\x4e\x8d\x69\x4a\x9c\x18\xb9\x7c\xf4\x9a\x9f\xa7\xbd\x07\x51\x8d\x24\x1a\xef\xec\x72\x19\x00\xa7\x80\x04\x66\x7e\x80\x22\xfa\x56\x8e\x4a\xcf\xa8\x1a\x9a\xb8\x4e\x4c\x4e\x83\x6a\x35\x7a\x62\x70\x34\xfe\x79\xad\x56\x1a\x12\x5b\x71\xb7\x79\x54\xba\x1d\x30\xc5\x4c\x22\xec\x9b\x38\x4a\xf9\xfb\x3e\xc7\xa2\x0a\xee\xfe\x8a\x92\x26\xdd\x60\x91\x04\xd7\xba\x6f\x8f\x9c\xac\x9a\x53\x90\x83\x7c\x25\xd4\x67\xbe\x30\xe0\xcf\x5a\x0a\x47\x59\xe5\xbf\xf6\x2b\xc8\x28\xd7\xa5\x8d\xd8\x19\x79\xf5\xd1\xe6\xe7\xcd\x75\x2a\xb9\x38\xfd\xac\x3d\x83\x25\x88\x0e\x88\x95\xc7\xb9\x82\x30\xa3\xc5\x22\x66\x85\x22\x62\xd4\x2d\x78\x7e\x03\x86\xd9\xf9\xac\xa5\x38\xfb\x39\x08\x60\x39\x3d\x21\xd3\xb0\xf2\x26\xf1\x68\x9d\x43\x17\xc2\x8e\xbd\x09\x03\xa2\xca\x9a\x6a\xbe\xfc\x90\xb9\x42\x51\x45\x52\xe3\xce\xaa\xe6\x81\xe0\xd5\x01\x3e\x94\xa1\xd6\xbd\x12\x9f\x94\x91\x74\x81\xcb\xcf\x7a\x5e\x63\x45\xfa\x31\x0b\x23\xbb\x7a\x46\xf2\x25\x67\xcd\x8e\xee\xca\xc8\x52\xf2\x46\x51\x53\x55\xa5\xfe\xd2\xae\x74\xef\x21\x40\x8a\x4c\x98\xb7\xc0\xab\xb5\x77\xe5\x9f\x51\x36\x55\x56\xa4\xf9\xec\x1e\xc5\x5f\x99\x2b\xe6\x46\xc5\xf5\x69\x4b\x91\xae\xc7\x30\x66\xe1\x6f\x45\x78\xff\x1b\xda\xb6\x85\x32\x61\xaa\x28\x87\x93\xd9\x5b\x8e\xa5\xef\x4d\x95\x63\xda\xb9\x7b\x49\xe1\x96\x26\x51\x9d\x77\xd2\x3d\x4f\x99\x8a\x7d\xcf\xf3\xdb\x35\xff\x58\xd0\x3e\xe0\x98\x2d\x91\x50\x57\x0c\x48\x6f\x2a\x8d\x78\x44\x9c\xdf\xda\xad\x3a\x6b\x61\xa3\x02\xfe\xd4\x4f\x0a\x8f\x58\x60\x97\x94\x11\xcc\x29\xf2\x77\x74\x0d\x57\x05\x36\x02\xf8\x69\xee\xae\x75\x0a\xd2\x04\xd7\x0d\xca\x11\x46\xb9\xe7\x8e\x0f\x97\x5d\x46\xb2\x01\x2a\x1f\x91\xff\x3a\x70\xfd\x80\xf1\x37\xf6\xe0\x75\x7c\x9a\x57\x47\x0c\x20\x0a\x0b\xaa\x3c\xb0\xd7\x90\x1d\x44\x99\x65\x49\x55\x4e\xa3\x4d\x28\x39\xb2\xec\x4d\x3d\x5c\xd2\x58\x74\xe4\x76\xab\x4d\xe9\x86\x88\x3a\xf7\xbf\x5e\xab\x46\x2d\xe4\xc6\xda\xd8\x70\x3b\x3e\xf3\xb8\x66\xb7\x87\xcd\x20\xe1\xc8\xfd\x69\xef\x38\xa5\xff\x2f\x35\xef\x88\x6f\xbb\x4f\x1f\x2e\x45\x8f\x9b\xff\xf2\xdd\x3b\xa5\xea\xbd\x2f\x2d\x9f\xc2\xb7\x1f\x92\x77\x95\x11\x93\x37\x17\x99\x70\x93\x2c\x59\x4d\xe4\x07\x15\x10\xc9\x59\xa0\x85\xc6\x2a\xb1\x6d\xb1\xfb\x79\x62\x70\x3a\xf7\x16\xa9\x53\xc4\x66\x81\x37\x00\x70\xdc\xfe\xdf\x4d\x1a\x31\x17\x33\x1f\xa0\xcf\x8c\xcf\x6e\x47\xbe\x36\x26\xd9\x63\x34\xeb\x3e\xdf\x7d\x40\xa6\x92\xa6\x01\x41\x38\xf9\x19\x55\x94\xbd\x46\x7c\x21\xc7\x15\xfe\xe0\x3a\xdd\xad\x96\x3b\xd6\x29\x1a\xc5\xdb\x93\x89\x87\x47\x4b\x09\x0a\x59\xf3\x90\x8f\x22\x8a\x61\x41\x08\x90\xd5\xc4\xb4\x77\x9b\x4c\x01\x12\x42\xa6\xf9\xb2\x86\xb6\x2b\x1a\x17\x41\xdb\x65\x6f\x79\x4a\x73\x35\x43\xcc\xc6\x1c\xe8\x9f\x94\x19\xb9\x6f\x76\x8f\x51\xda\x7c\x83\x96\x5d\xe8\x0a\xc4\x18\x7d\xd5\x24\xd1\x62\x53\xc3\x67\x1c\x60\x9f\xbb\xe3\x65\xd9\x5c\x70\xc6\x75\xa1\x27\x24\x8a\xec\x6a\xe7\x1c\x61\x40\x9e\xb9\x7e\xa0\x26\xe7\x86\x0d\x64\x62\xee\x3f\xd6\x9f\x3b\x27\xfd\x59\x3a\xda\xa3\xbe\x25\x7b\x46\x49\xda\x5d\x73\x3a\x0a\x55\x1a\xb8\xfc\x85\xd8\xa8\x68\x05\x23\x03\x37\x2f\xf7\xdf\x3a\x20\xc1\x53\x48\x0d\x2d\x9b\x4b\xf1\x50\xb2\x4a\xb8\x1a\x6c\x6e\xd7\x21\x45\x93\xca\x75\x03\xde\x1f\x65\xbb\xb6\xb5\xc4\x05\x40\xc1\x33\x68\x2c\x74\xfd\xfc\x4e\x55\xd4\xa9\x48\x78\x2b\x72\xfd\x76\x85\x58\x68\x11\xe2\xc7\x4b\xf3\x8c\x7b\x89\x2e\x32\x64\x97\xe2\x5c\x9c\x9f\x30\x8e\xdf\xd0\xce\x79\xb1\xa8\x5f\x7f\x6e\xfe\xf8\x2b\x94\x03\x66\x5e\x64\xde\xb0\xa7\xa6\xe7\xc6\x72\xd4\x74\x24\x50\xac\x7b\xa6\x6a\x78\x15\x46\x7d\x49\x89\x3a\xfc\x1a\x0f\x38\x76\x83\x71\x5c\xf1\x77\xce\xc9\x46\xd3\xa3\xa0\xdf\xe6\x3a\x80\x12\x0f\x7f\xbb\xfd\xf2\x2a\xf5\x92\xad\xc9\xd2\xa5\xd3\x25\x96\x35\xfa\xd5\x7c\xb6\x55\x9a\x4b\x4a\x86\x7b\xd8\x3b\x49\x62\x83\x88\x52\x60\x66\xd7\xce\x96\x7c\x94\xa8\xb2\x6a\x42\x07\x8d\x5c\x30\x3a\x85\x0e\xe0\x74\x0d\x50\xa4\x0d\xa7\x6e\x4c\x4f\xbe\x0d\x46\xb9\x9e\x85\x7e\x83\xae\xd1\x8a\xc5\xe8\xbc\x52\xc5\x97\x7b\xb4\xaf\x21\xa6\xcb\xc0\x55\x8d\x95\x36\xfa\x33\x5f\xd9\xd3\x2a\x5e\x81\x02\x8e\x02\x33\x8a\x21\xa3\x7f\xfd\xb4\x9c\xbe\x3a\xc4\x34\xed\xe6\x52\xf3\xca\x45\xa2\x24\x43\x06\x23\x25\xc2\xed\x8f\x7e\x74\xbd\x84\x9a\xa2\xb2\xd8\x09\xcf\x51\x20\x2e\x36\x20\x3c\xa3\xba\x43\xf3\x0c\xf7\x1b\xd5\xc4\xfd\x24\xfa\x4b\xb7\x6a\x23\xa1\x12\xf1\x2c\x17\x27\xec\xf0\xcb\xb2\xf2\x20\xa2\x32\xc3\x38\xde\x80\xe7\x72\xdb\x15\xf2\x35\xf6\x3c\x54\xe6\x70\x89\x3b\x9e\x9e\xec\x2a\xd2\x28\x98\x41\x95\x0f\x2a\x40\xfa\xc3\xf1\x57\x29\x5b\x1f\x58\x22\x45\x19\x34\xf7\xe8\x30\x91\xd1\x3c\x1f\x83\x6e\x7d\x4f\x58\x3f\x74\x99\x02\xba\xe5\x9d\xc4\x33\x79\x4d\x60\xd0\xa9\x5a\xc8\x23\xeb\xa4\xe4\xef\xf9\xad\x1a\x29\x95\x3a\xc4\xc5\x58\xb4\xb5\xb9\x95\x6b\xdb\x94\xb1\x92\x85\xaa\x55\xae\xf9\xd8\xd3\x9f\xf9\xf6\xcb\x8a\x20\x15\x0d\x18\xf1\x7c\x00\xf4\x46\x01\xf6\xb7\x93\x46\xa9\x7c\x6f\xe1\x4f\x04\xc9\xff\x67\xbd\x2d\x0a\x58\xdb\x13\x93\x97\xff\x39\x3a\x56\xcf\x9c\x65\xe9\x0a\x95\x7d\x7c\xf5\x95\x69\xa6\x2b\x80\xed\xf8\x12\x90\x7b\xc6\x86\x47\xf7\x6b\xca\x0a\x51\x4d\x24\x14\xf7\x97\xb7\xa8\x9e\x5d\x0c\xbb\xc8\xe6\xa7\xf2\x0b\x6f\xb7\x2a\x5c\x72\xcf\x62\x9c\xc6\xd2\x9f\xbd\xa5\x6b\x8c\x72\xe8\xf8\xac\x06\x27\xda\xda\xaf\xd6\x06\x27\xef\x60\x3d\xfa\xe7\xd3\xae\xe7\xcf\xc3\x0e\xfa\x02\x46\x38\xe4\x2b\xf7\x7e\xf7\x10\x89\x61\x81\x38\x70\x6e\xb6\x2c\x1d\xf0\xdd\x01\xb1\x49\x91\x91\xc0\x29\xf4\x84\x3f\x7d\x74\x88\x6a\x63\xdd\x13\x5e\x2e\x43\xf3\xcc\xee\x79\x85\x9e\xf0\xc0\xf1\xf4\x0b\x24\xcc\x05\x93\xf7\xff\x63\x9a\x4f\x12\x02\x5e\x80\x8f\xfa\x44\xcf\x60\x9f\xd3\x65\x19\x3c\xd0\xa4\x10\xa5\xd3\xaf\xb7\x68\xbe\xe3\xd4\x33\x68\x7d\xba\x44\x33\x9e\xdd\xa4\xcf\x54\x2c\x4a\xed\xd8\x95\x7f\xd6\x66\x0d\x58\x1d\x3b\x7a\xd4\x79\x07\x74\xe3\x8b\x72\x26\xe1\x41\xc5\x17\x7e\x74\xe0\x08\x65\x09\x52\x12\x7b\xfb\xf0\xae\xf6\xe4\xb5\xe5\x9a\x2f\xd1\x0f\x6f\x3a\x2f\x7f\x7d\x66\x67\x3b\xa7\xbe\xa8\xb8\xb4\x19\x33\x79\xbe\xfb\x0f\xae\x60\x51\x58\xdc\xbe\xac\xd9\x8f\x72\xdf\xfc\x11\x49\x1b\xd6\xae\x64\xfa\xde\x3e\xbe\x42\x5d\x82\x9c\x22\x66\x6a\x2f\x95\x7d\xfa\x92\xd8\x5a\x1f\xd7\xc0\x40\x30\x3a\xc2\xff\xfb\x4c\x8b\x42\x5f\x73\x3c\x6c\x97\x40\x2d\x60\x7b\x7a\xdf\xe3\xd1\xb8\x38\x9a\xb0\x66\x94\x1a\xd3\x97\xf5\xdc\x36\x1d\x5e\x94\x28\x1f\x7d\x78\xb9\xcc\xb8\x35\xe4\x11\x9b\xe0\x1a\x1c\x9f\xbd\x53\x95\x82\x98\x61\x04\x6f\xcf\xa5\x02\x27\x58\xe5\xc8\x9c\x42\x4f\x78\xa6\x7b\xa2\x16\xa1\x11\x29\x5b\xc4\xb6\x79\xcb\x17\x27\xe1\x91\x63\x79\x0a\x2a\x93\x1a\xe0\xd1\x06\x2e\x19\xa9\x30\xa2\xb1\x4b\x1d\x2c\xbc\xa9\xde\x52\xfb\x36\x1f\x45\x6f\x58\xf4\xe3\xdf\x1f\x56\x2a\x49\xc4\xb5\xc1\xfa\xb3\xbf\x98\xcc\x5b\xc0\x85\x98\x45\xd9\x1a\xac\xfc\x24\x61\xe9\x86\xc1\xca\x64\x10\x79\x16\xd4\x92\xef\xb4\x4a\xc6\x9b\x1d\x9d\xfd\xe7\xd7\xea\x5e\x28\x35\xe4\x19\x56\xca\xfd\xe1\xdb\xef\xea\xdc\x7d\x88\xa6\x71\xdb\x96\xff\xf4\x82\xf4\xe9\x8e\xa5\xce\xc4\xe1\x3f\xb2\x47\x88\xfd\xe3\x12\x44\xfc\xe3\x96\x9c\xaf\x19\xd4\x2d\xdb\x51\x5f\x11\xcb\x57\xfe\xdd\x42\x75\x9e\x69\xf2\x1f\x5e\x3e\x8e\x37\x9f\x88\xc4\xe3\x91\xc3\xd3\x44\xd2\x71\x82\x72\x59\x68\x1a\xcc\xe5\x7c\x1b\x3e\x4a\x11\x62\x9b\xf0\xa5\x1b\x03\xd2\xd7\x5f\xc6\x20\xc5\x61\x37\xc4\xec\xe1\xf3\x8b\x53\xd0\x3d\x86\x49\x91\x37\x3a\x53\xf2\xea\x86\xaa\x41\x7d\xee\xcd\x71\x94\x5f\xcd\x9c\x2e\x51\xe8\x65\x4f\x9e\xd3\x72\x18\x71\x28\xc3\x5e\xec\xbd\x92\x3d\xd2\xa5\x85\x07\xae\xc6\x6e\xc4\x6a\x90\x87\xf6\xc8\x2a\xc1\x23\x66\x73\xf7\xd1\xba\x56\x57\xd4\xa3\x95\x04\xf5\xfa\xa6\xa9\x5e\x3e\xae\x0a\x6a\x7d\x7f\xe6\x35\x65\x38\x68\x53\x83\x63\x61\xf7\xb6\xaa\xbb\x8a\xba\x44\xf0\x4d\x3c\x32\x41\xe9\xf6\x02\x46\x2f\xa2\xeb\x91\x3b\x37\x50\x1f\x9b\xfa\xc8\xe6\xf4\x8e\x8f\x0f\x1a\xa1\xca\x46\x99\x98\x81\x61\x6a\xee\xdb\x66\xfa\xda\x49\x3b\x6e\x4f\x4a\xb7\x5b\x07\xe8\x5e\x06\x3e\xb1\x45\x51\xf2\x4f\xc3\x14\xa5\x40\x86\x5c\x23\x16\xa8\xda\xb0\x7b\x84\xb8\x7c\x0e\x4d\x47\x9c\x70\x95\x79\xee\x6d\x99\x14\x1d\xe4\x45\x05\x49\x82\xe5\xfc\xc4\x31\x7e\x08\x97\x04\xae\x61\x01\x97\x73\xbd\xa6\x41\x9c\xe8\x68\x64\xde\x7f\x48\x0b\xc7\x28\xf0\xa8\x8d\x03\x27\x56\xbe\x3e\x73\x50\xf8\x22\x96\xf8\xbe\x59\x64\xa6\x39\x2f\x08\x21\x6b\xc4\x6a\x60\xf8\x9a\xbf\x7d\xc6\x08\xf5\xa8\xd7\x30\xe3\xe8\xbc\xff\x18\x94\x86\x07\x19\x09\x85\x4b\x93\x51\xa9\x29\x40\x68\xc2\x0c\x3b\xfe\x3e\xd9\x9f\x7e\x23\x0d\x91\xe6\xaa\xb3\xd1\xdf\xbe\x6d\x86\x0c\x21\x55\x86\xed\xc0\x84\x8a\x6c\xfe\x3a\xde\x87\xbb\xd4\x8f\x12\xc0\xee\xe3\xe9\x23\x09\xec\x06\xe0\xfd\xf2\xc5\xed\x1a\x53\xfe\x15\x1a\xc4\x30\xe3\x4c\xfd\x1b\x43\x64\x5c\x04\x36\x42\xdf\x86\xc4\x46\x03\x07\x69\x6f\xcf\x65\x3b\x15\xb8\x01\x8b\x1a\x66\x08\x67\xe1\x7d\x79\x11\x47\x6d\x1c\xbb\x96\x7d\xf7\xc2\x65\x0a\x45\x82\x57\x47\x53\x07\xf3\xcc\x70\x2b\x35\x31\x4b\x53\xa7\x4d\x77\x98\xb8\xd3\x65\xb4\x2e\x2a\x8a\x0a\x3d\xe1\x0e\xcd\x16\xa3\x8c\xfd\x58\x75\x2f\xf7\x93\x6d\xb2\xbd\xc7\x26\x89\x75\xf7\x92\x35\xd2\xb4\xc9\xc2\x15\x88\x06\xdc\x88\x90\x44\xdd\xc0\xb2\xc1\xfc\xcc\x58\xd4\x83\x4d\x6e\x66\xe9\x44\x79\x95\xb4\xce\x0d\xac\xbe\x73\x97\xa2\x25\x4a\x18\xa7\x05\xff\x62\x83\x04\x0e\x52\x55\xec\x78\xda\x06\x85\xd2\x8b\x91\x81\xe3\xb3\xfb\x17\xec\x22\xeb\x0d\x31\x16\x1b\x77\x5e\x98\x62\xb9\x0d\x9f\x4f\x28\xc3\xd1\x9a\xe7\x3a\xb2\xed\x80\x09\x2e\xee\xaf\x5f\xd0\x8d\x60\x98\x13\xd8\xb1\x96\x69\xde\x7d\x31\x7d\xf6\xca\xd4\x36\x3d\x9f\x53\x4b\x55\xc5\x96\xcf\xed\x91\xf7\xac\x8a\x5d\x3f\x2a\x0a\xd5\xad\x56\x26\xb3\x54\x46\x2d\xab\xbd\xd4\x04\xa3\xcb\x7e\x75\x4d\x32\xd3\xed\xea\x86\x48\x3c\x66\x9a\x3c\x55\x38\xaa\x9e\x81\x76\x9b\x2b\xfb\xfc\x46\xdf\xc8\x68\x09\xae\xb1\xfd\xf9\xf1\xea\xfc\x8c\xb8\x45\x86\x81\x20\x2f\xeb\x86\xdb\x9f\x51\xc2\x8d\x8d\xfc\x3a\xe2\x0e\x9a\x63\x5f\xf8\xb0\x56\x53\x4f\xbf\x08\x16\xf3\xdc\x2b\x52\xad\xc6\xc3\x65\x6a\xba\x0d\xe4\x59\x6e\x03\x35\xa2\x03\x3a\x62\x80\xf2\xda\x22\x07\x33\xca\x45\x64\xec\x1d\xb2\xf6\x10\xe6\xa9\xd1\xe5\xff\xb8\x43\x93\xa5\x08\x90\xb6\x1c\xd9\xb4\x62\x88\xd4\xf4\x2b\xc1\xa8\x73\x9f\xc6\xd1\x04\xdb\xda\x04\xa3\xf9\xc4\xf3\x7f\x46\xa9\x52\x3e\x9f\xb7\xaa\x1f\x12\x91\x1d\x4e\xc4\xf4\xd8\xc8\x88\xd8\x35\xf0\x26\x54\xfe\xe9\x8f\x96\x8f\x4c\x41\x41\xb0\x11\x70\x4b\xff\x4d\x13\xe5\xe1\x15\xd5\x68\x98\x79\x4d\x73\x77\xe2\x63\x11\xb8\x38\x08\xf4\xf7\x73\x47\xa5\xc2\x32\x8b\xd8\xa4\x39\x66\x3d\xbc\x6e\x88\x2c\x17\x3b\x0a\x3d\xe1\x35\x4b\x94\x77\x9b\xf0\xe3\x7e\xb7\x32\x3c\x36\x71\x29\x10\x16\x6b\x67\x75\x00\x0d\x78\xb6\x8b\x2e\x76\xfa\xb4\xe4\x26\xb2\xa8\xa4\x0f\x37\x9d\x9d\xa8\x55\xdd\x3c\x1c\xc7\x6a\x0b\xdc\x8a\x33\x8b\x85\x96\x23\x62\x65\xee\x20\x96\x1d\x77\x68\x82\x96\x8f\x61\x0f\x46\x3c\x8b\x3b\x78\xc2\x8b\xfd\xce\x59\xb9\x91\x28\xc3\xe2\xfa\x2f\xcf\xb7\x69\x6f\x0e\x15\x34\xb2\xcc\x27\x16\x2a\x0e\x9c\x65\x37\x56\xab\xfe\x65\xca\x56\xcc\x17\x33\xe4\xfe\xcc\xba\x87\x78\x06\x43\x51\x5d\x8b\x8a\x51\x8f\x03\x33\xf5\xeb\x4f\xab\xac\x6e\xe4\x56\x0a\x0d\x10\xd1\xce\xd5\xd7\xe8\x4a\x01\xb1\xf4\x1e\x2f\x61\xbe\x76\x2a\x89\xc2\x65\xa6\xa2\xb0\xc2\x5b\x5f\x4b\x5b\x3e\x54\x11\xb3\x09\x82\x85\x65\xb5\x99\x82\x94\xfd\xdb\x41\xca\x1b\x8a\xca\x58\x90\x18\x1a\x6d\xc3\x44\x6c\x66\xc8\x6e\xf0\xc5\x79\xee\x0f\x4f\xea\x44\x31\x30\x1b\x10\x73\x97\xc6\x38\xf9\x8a\xd1\x92\x3e\x56\xbc\x6a\xae\x90\xa8\x87\x81\x52\xf8\xed\x6b\x75\xe7\x83\xa0\x6c\xf9\x62\x7e\x99\xdf\xa2\x30\x6c\x2c\xca\x18\x1f\x70\xe7\xae\x9c\x34\x4c\xdc\x59\xdb\xa6\x62\x62\x91\xfd\xf8\x62\x95\x63\x0e\x62\xdc\xbc\xab\x9c\x7f\x22\x7d\xb6\x60\x00\x1d\xf7\xb8\x07\x56\xb6\x29\xe7\xd1\x41\xcc\x88\x5d\x07\x32\xdf\x5d\x28\xbb\xd1\xba\x45\x6d\x6c\x61\xc0\x7f\xf2\x1a\xfc\x9f\xf7\xeb\x1a\xa6\x40\x6b\x8f\x27\x2b\xb9\x25\xdb\x04\xcd\xc2\x69\x9a\x2e\xbc\xbd\x40\x1e\x8e\x5e\x64\xd0\x22\xd7\xf7\xcd\xdf\xf1\xfc\xe0\x38\xc3\x40\xbd\x7c\x8b\x86\x07\x44\x26\xcf\x60\xc8\x16\xc1\xe2\xb3\xcb\x26\x28\x88\x67\xe0\x37\x36\xd3\xd7\x9e\x7d\x34\xc5\xf6\x4a\x56\x76\xb7\x2d\x1f\xaa\xdc\x2f\x28\x70\xa7\x5c\x80\x87\x61\x63\xb7\xd0\x39\x4b\xf7\x16\x18\x31\x2c\x99\x16\x63\xf0\x03\x4b\x0f\x93\x57\x68\x66\xfc\x89\xa3\x49\xbc\xff\xaf\x25\x6b\xa6\x3a\x0c\x2a\xd3\xc7\x6f\xc9\x80\x26\xec\x2b\xf3\x4c\xd4\x10\xc2\xbf\x8f\x0e\x91\xe6\x76\x51\xa0\x7e\x5f\x27\x15\x21\xc6\x10\x5f\xc5\x87\x4f\x5e\x1b\x0f\x6f\x1d\xcc\x99\x25\xe1\xda\xf5\xa2\xf0\x60\xa4\x86\x0c\x78\x7e\x57\x2e\xd0\x31\x2c\x1e\xa8\xfb\x8b\xa0\x93\xb9\xff\x92\xa6\xde\x06\x83\x86\x16\xaf\x51\xbb\x9e\x1c\x99\x9e\x8d\xf8\xa8\x02\xde\x33\x99\xa9\xa7\xae\xd4\x8a\xc8\x32\x78\xef\xaa\xc2\x42\x97\x1c\x91\xdd\x58\x1f\x0c\xa7\xee\x59\xa9\xed\xfe\x91\x5d\x11\x18\xb6\x39\xf7\x25\x56\x41\xc2\x3a\x78\x66\x38\x46\x4f\xf4\x46\x22\x19\x99\xa7\x6e\xd2\xcb\x17\x6d\x94\x00\xf3\x2f\x69\x51\xb6\x34\x65\x3b\xe0\x2f\xc7\x17\x87\xc9\x52\xad\x42\x4c\x37\xfa\x9a\x80\x28\x1b\x7e\x4a\x4e\x3c\x2d\xd5\x4f\xf0\x4d\xa6\x0c\xf3\x00\x03\x13\xfd\x1d\xb4\x55\xa3\x89\x81\x93\xf9\xf4\x5a\x51\xf9\xcd\x2b\xb3\x1a\x22\x89\x31\x6c\xe3\x5a\xf4\xdc\xf8\x86\xf0\xf3\x6c\xb4\xd2\x03\xba\xb5\xa8\x70\xa4\x62\x4f\x9d\xf9\xeb\x03\x52\x1c\xc0\x2e\xc5\x75\xe9\xaf\xce\xf3\x02\xae\xcc\x48\xf4\x97\x04\x13\x2c\xfb\x8f\xae\x3e\x19\x26\xbe\x8f\x63\x35\xcc\x19\xd2\xad\xd8\xae\x4a\x62\x59\xf8\xcf\x83\x65\x1f\xa1\x2e\x16\xa1\x13\x9f\xa1\x90\x38\x02\xc3\xc0\x9e\x57\x0a\x6c\xc8\x33\xaf\x75\xf1\x07\x54\x0d\x1c\xb1\xef\x7b\x5d\x42\x7b\xdb\x01\xda\x71\xe7\xe2\x56\xa5\xa6\x42\x06\x8e\xd7\xf2\xd3\xe7\xf3\xeb\xef\xee\x4a\x09\xcb\x6e\xdc\xdf\x64\xdc\x51\x8d\xce\x72\x85\x23\x94\x97\xce\xd6\x28\x43\x04\xf0\xa6\x7c\x77\x68\x86\x4a\xf5\x1d\x78\x3e\x43\x36\x81\xd7\x7b\x9a\xa6\xaf\xed\xf9\xc8\x07\xee\x15\x41\x9c\xc8\x97\xdf\xba\x3c\x79\xc7\x9d\x62\x93\xf5\xfa\x61\x37\x5d\x9b\x34\x70\x05\x81\x31\x66\x31\x60\xdc\x43\x2c\x9f\xd1\x6c\xaf\xc0\xd7\xc3\xa4\x75\x37\x4e\x0e\x54\xe4\x93\xe8\xb2\xaa\x55\x98\xec\xf4\xe7\x37\xbf\xac\x2d\xc1\x82\x32\x62\x1c\xba\x9c\xfb\xda\x43\xb2\x52\x99\x35\xab\xbd\x7b\x66\xf4\x15\x7f\x6d\xb7\x28\x7b\x11\x87\x06\xfc\xa9\x77\x69\x74\xad\x1a\x66\xa4\xd4\x88\x43\xfd\x13\x1d\xa3\x52\x6c\x32\x41\x1f\x82\x63\x74\x93\x32\x1f\x2d\x07\xae\x83\x5c\x6e\x3f\x7c\x7e\x98\xf2\x39\x7c\xaa\x90\xbf\xbd\x96\x5e\x1d\x49\x3c\x63\x74\x93\xef\x78\x51\xe5\xac\x61\xe4\x88\x3a\x7f\x46\x56\x73\x2a\x43\x7e\x00\xee\xb9\x30\xf3\x0d\xbf\xb6\x40\x13\xf4\xe3\xae\x39\x5c\xce\x6e\xfe\x13\xa3\x95\x39\x1e\x31\x53\x66\x95\xf3\x8e\x2b\xae\x2d\xb4\xb8\x4e\x91\x3a\x09\xf7\x08\x58\x5a\x95\x61\x93\x18\x89\xaf\xda\xba\xc7\x52\x9d\xa2\x03\xd3\xd0\xfe\xcc\xea\x43\x49\x88\x2e\x37\x9a\x88\xda\xf9\x69\x8b\x14\xd9\x14\x87\xd8\xc2\x76\x64\x30\x1f\xbe\x2c\xa0\x96\xa9\xd6\x9e\xf9\x42\xb5\xc9\x66\x07\xbb\x26\xf1\xa3\x76\x85\x83\xbe\x7e\xbb\x62\xa8\x32\xa8\x87\x97\xfc\xf2\x76\xad\x1c\xa0\x46\x05\xb3\x98\xd3\xff\xa3\xa7\xb8\x86\xba\x42\x57\xd0\xcb\x98\xf5\xf3\xb5\xfe\xc8\xab\x48\x0b\x51\x7b\x63\x9a\x0b\xe4\x60\x9f\x51\x03\xc5\x53\xbb\x74\xa7\xb0\x64\x8d\xc6\xc2\x89\x85\xdb\xc5\x70\x27\x73\x6d\xbb\x04\x88\x07\x51\x59\xba\xbc\xaa\xc1\x4e\x19\x2d\x81\x1a\x52\x7c\xf8\xcf\x6a\xc2\x3e\x26\x2e\x11\x57\x14\x0c\xd9\x2b\x86\xca\xf2\x19\x81\xc0\x65\x7d\x06\xe4\x98\xe8\x5f\xde\xbc\x54\x69\xb0\xc3\x4b\x4f\x68\x6f\x99\x45\xec\xd8\x24\x1f\xa2\xca\xbc\x77\xf4\x02\xed\xee\x80\x30\x2c\xc0\x8a\x45\x0d\xac\xdb\x1b\x98\x65\xcc\xd5\x22\x1e\x78\x55\x43\x53\x05\xae\xc9\xa7\xc9\xe1\x57\xb7\x69\x07\xb8\xc1\x08\xe2\x2d\x16\x7c\xe6\x8d\xcb\xe5\x8b\x4a\x3c\x0f\x76\xfc\x9d\xfb\x14\xca\x78\x15\xf3\xe1\x9a\xf9\x48\x93\xd8\x6c\x15\x31\x60\x30\xf2\x6c\xbf\xae\x7d\xa4\xd6\x22\x31\x01\xb2\x9b\xa6\x68\x9f\xd9\x18\x09\xe6\xe7\x2b\xda\x18\xbc\xcc\x90\x19\x20\x29\xf5\xf0\x4d\x45\xba\xc7\xc2\xc4\xf5\xd7\x41\xf7\x76\x6d\x07\x0f\x45\x4b\x95\xa9\x74\xee\x9d\x25\x72\xe3\x5a\xf5\x1a\x86\x45\x91\x8b\xec\x86\x47\x92\x7b\x3b\x65\x6d\x13\xc3\xad\x08\x7e\x75\x31\x41\xed\x2b\xd3\x34\x31\x6f\xec\xf9\x02\xcc\x63\x9d\x48\x2f\xf6\x7c\x86\x2a\x17\x93\x3a\xcd\x1e\x5c\x3f\x42\x99\x68\xf5\x8a\x3a\xa6\x3f\x3b\xe7\xac\xcc\x90\x65\x86\x71\xa5\x60\x34\xaa\x8c\x80\xb2\x53\xee\x8e\xc9\x8a\x8e\x1a\x72\x31\x5f\xef\x96\x6f\x1a\x21\xfe\x4c\x54\x8e\xe1\x82\x2d\xa8\x1f\x4f\xac\x94\x62\x8c\x90\xa4\x32\xef\xad\xd4\x9a\xb0\x86\xe7\x63\x87\xa3\xf0\xc9\xc6\xa4\x1c\x70\x52\xe6\xb7\x9f\xe9\x1b\xa6\xbc\xc4\xb1\x8b\xf1\x6e\x2d\xa0\x63\x57\xc8\x12\x86\x7f\x5a\x2e\xa4\x0e\xa8\x89\x63\x59\xb7\x1f\xbe\x2a\x7e\x06\xe9\x04\x26\x68\xb9\xf7\x6f\x12\x7d\x02\x46\x10\x8a\xf7\xcf\x95\x38\x28\xd8\xe6\xae\xb1\x75\x97\x9d\x0a\xf6\x84\x1b\x50\xb1\x19\xe4\xe9\x09\x44\xe2\xb4\x09\xba\xa2\x11\x4e\x44\x24\x2f\x8c\x1f\x25\x3e\xd3\x2e\x25\x6a\xca\xe2\x1a\xcf\x6f\x4b\xa0\x14\x7e\x33\x71\xd0\x7a\x57\x93\xec\xa2\xf5\xc4\x1c\x2b\x57\xf4\xa5\x0a\x01\x6b\x0a\x34\x99\x59\xed\x3a\x3a\xce\xa9\xda\xc2\x83\xf1\xa7\xe3\xe5\x0a\xc6\x07\x54\x69\xf8\x1b\x45\x71\x35\x70\x19\x2e\x93\x18\xa2\xd4\x9f\x9f\xbb\x4b\xc6\x10\x93\x16\x7a\xc2\xc2\x73\xad\x6a\xbb\x8d\x02\x5b\xd8\x5a\x96\x76\x8f\xd7\xcb\x5f\x83\x54\x6d\xe2\x26\xfb\xf3\xec\x9b\xb6\xd0\xe6\x44\xae\xc9\x55\x2c\x33\x5f\x7b\x6f\x9c\xb2\xbf\x20\x36\xf5\xaa\x56\xca\xe2\x71\x42\x28\x7b\x3f\x09\x76\x4e\xd8\x5e\xf7\xde\x9b\x9e\xd1\xd0\xd2\x74\xb3\xd9\xff\xb8\xb3\x5d\x31\x9e\xe4\xc8\xee\x8f\xbe\xd2\x64\x2c\x5d\x44\xc5\x18\x90\x9e\x31\xd6\xe9\xce\xa6\x45\x9f\x26\x22\xbf\xd9\xdf\xac\xd6\x23\x0e\x58\xdb\x24\x54\xee\xf0\xe5\xc3\x97\xeb\xe7\x95\x50\x46\x7c\x21\x7e\x9c\xff\xd2\x52\x0e\x88\xbc\x0d\xb9\x3e\x65\x54\x99\xeb\x0d\xd5\xea\x76\x1b\x11\x93\xd7\xed\x99\x77\x34\x3b\x2f\xa1\xca\x07\xfa\x35\xc9\xac\x34\x3f\x7a\x7b\x3a\x27\xc5\x1e\xa8\xb0\xc2\xd7\xef\xcc\x87\x1f\x6f\x52\x68\xb1\x63\x55\xe1\xf0\x67\xdb\x85\x6a\x81\x50\x68\xe0\xd1\xf6\x1e\xc5\x63\xcb\xa3\x25\xbf\x60\x50\x98\x97\x65\xb6\x68\x92\xa3\x51\xc7\x91\x88\x9f\xe7\xbe\xb8\x7a\xb8\x14\x4f\x13\xda\x7d\xe1\x27\x17\x2b\x00\x62\x05\xf1\x13\xfe\x42\x33\x7b\x88\x23\x30\xaf\x2a\xc7\x9f\x54\x7a\x6c\xe2\x71\x14\x07\x3f\x50\xef\xbe\xa4\xe9\x7a\x04\x55\xcc\x8c\xd8\xeb\x2d\xdb\xaa\x78\x06\xb3\x76\xdc\x0e\x88\xe0\xdc\x9c\x6e\xbd\xfa\xad\x48\x6e\xc2\x83\xbb\x15\xad\x54\x37\x4a\x7b\x8d\x42\x4f\xf8\xb7\x27\xd3\x83\x1f\x13\x31\x17\x69\x48\xe6\xcc\xdf\x94\xe4\x8c\x7b\x0e\x18\x66\xfc\x6a\x99\x54\x30\x4c\xcc\x1a\x86\x3e\xa9\xc8\x0f\x60\xcf\x23\x5c\x24\xf1\xdf\x35\x82\x40\x97\xb0\x2a\xe5\xdf\xe4\xe4\xb2\x2b\x52\xad\x05\x43\x76\xa1\xac\xb0\x2e\xfb\x73\xef\x7f\x63\x70\xdc\x7c\x77\x45\x45\x6e\xee\x9a\x23\x23\x95\x55\x24\x40\x82\xf8\x05\x34\xd6\x48\xaa\x8e\x11\xd8\x51\x45\xd5\xb4\xaf\x29\x9e\x15\x4d\xe3\x14\xec\x83\x7c\x45\xa6\xeb\x51\x45\xa9\x85\xd8\x36\xef\xa0\xc2\x2f\xed\x4c\x8a\x3e\x1b\xe9\x89\x28\xfc\x2b\xc6\xa7\x18\xb7\xdf\xa6\x37\x03\xa5\x49\x9a\xfc\x32\x49\xf8\xe1\xfd\x39\x53\xa3\xa2\x83\x26\x0b\x2f\x9e\x78\xb1\x73\x64\x76\x92\x7c\x8a\x41\xa9\xd0\x13\x3e\x7d\xbd\xa4\x65\x95\x91\x6d\xa3\xb2\xa5\x38\x49\x84\x2f\x1e\x1c\xa1\xf4\x34\x5c\x53\x34\xfa\x52\xb7\x08\xf3\xf7\xe5\x04\x99\x0d\xa5\xc1\xfe\x8b\x0b\xa3\x15\x3e\x01\xa7\x65\xc6\xad\x5c\xee\xb7\x97\x68\x45\x0e\xb6\xfd\xd8\xb1\x65\xde\xa3\x69\x95\x00\x87\x18\x8c\x46\xef\x4d\xb3\xbb\x74\xf6\xf4\x58\x1d\x11\x8a\x3c\x80\xf7\x2b\x78\xf6\xfc\xed\xd7\xa7\x3f\x8c\x91\x92\x2d\x6c\x02\x32\xbf\x6c\xd5\x15\x7c\x13\xc6\x3e\x44\xff\xa7\x06\x49\x04\x33\x55\xac\x4e\x73\x4f\x2a\xfd\x8f\x1d\x2f\xa5\xfb\xb3\xbb\x0f\xf2\x87\xbe\x82\x61\xc4\xe7\x8a\x2d\x8b\xc6\x6b\xd1\x25\xb6\xbe\x32\xe2\x76\xf1\x47\x1a\x3c\x32\x2a\xed\xa3\xc8\x08\x57\xf8\xd1\x1d\xe9\xaf\x58\x24\x9e\x45\xab\x1a\x93\xf5\x3f\x17\xf3\x44\x51\x04\x2b\x46\xe8\x30\xbe\xbb\x56\xc7\x2d\x50\xdf\xa7\xc2\x3a\xf4\xed\xac\x6c\x91\x66\x2a\x7f\xe7\x95\x41\x23\x95\x21\x28\x81\x1c\x56\x87\xf8\xbb\xe6\x0d\x05\xc8\x60\x80\xa5\x6d\xb6\x7b\x97\xb2\xa3\x25\x3e\x6f\x47\x72\xbd\xda\x46\x16\xbb\xbd\xb4\x21\x49\x4f\x99\x23\xab\x79\xbb\xb2\x38\xb0\x49\xa0\xca\x75\x8e\x3d\x3a\x4a\xa1\xc8\xb9\x46\x43\xe5\x93\x3c\xdd\xa2\x74\x7c\x35\x52\x13\x8e\x61\x56\x3c\x98\xc1\x7c\x68\x92\x3d\x72\xb6\xc9\x8e\x1a\xf9\xb8\xdc\x88\x13\xd1\x67\xcf\x69\x96\xf6\xdc\x21\x23\xb5\x74\x3f\xdd\xd1\x4c\x34\x71\x8a\x20\x89\x0f\xdf\x70\xed\x59\x99\xe3\x4b\x10\x44\x7f\xb5\x62\x92\xd6\x5a\x56\x2e\x2e\xf0\x55\xd1\xec\x40\x85\x8a\x54\xac\x74\x7e\xfd\x4b\xe3\x52\x5c\xf7\xa6\x2a\xe7\xe6\xc7\xd5\x35\x48\xac\x77\x99\x19\x27\x44\xa9\x14\xd1\x85\x0d\x7a\xc2\x4d\xd6\x6b\x9c\xb7\xb9\x6c\x58\x3a\x40\x24\x76\x43\x22\x21\xfb\x9a\xd4\xa5\x2c\x4f\x04\x46\x2a\x13\x3e\x24\x0f\x91\x8b\xcb\x89\x63\xf4\x41\xa9\x28\xd1\x0b\xab\x8e\xf7\x5b\x54\x31\x5d\xcf\x20\x06\x31\x61\xf9\x34\xf2\x45\x19\x72\x40\x57\x1e\x2c\x21\x24\x8e\xe2\x8e\x6f\xa8\x33\x7c\xc3\xf2\x2c\x44\x0a\x3d\xe1\x53\xd6\x87\xe2\xf2\x1b\x50\x48\xc1\xee\x11\xea\xd0\xca\xc0\x0c\x76\x86\xb9\x79\xe3\x26\x69\x31\x10\xbc\x1f\x0c\xab\x42\x79\x0d\x20\x42\xdb\x8d\xdb\xe5\x96\x64\x4e\xa1\x73\x76\x74\xde\xaf\x9b\xa1\x3d\x28\xb1\xd8\x10\x4a\x00\x33\xce\xa5\x47\xfb\x0e\x75\xfd\x32\x75\x30\xbb\xa8\x6f\x42\xf6\x4f\xbd\x4a\xe3\x6e\x11\xbe\x8a\xce\x6c\xdb\xa5\x11\xa5\x3b\xc5\xbd\x7f\x70\xe3\x28\xb5\x69\x43\x15\x6e\x20\x06\x05\xdc\x98\xc7\x74\x6d\x00\x27\xca\x5f\xed\x1c\x10\x9d\xbf\x75\x46\x53\x6f\x54\x45\x2e\xc1\x42\x69\x3f\x5c\x7f\xec\x43\x22\x6d\xc2\x98\x2b\x7b\xe6\x94\xfe\x3e\x30\xd2\x40\x29\x0c\x4d\x76\xda\x8e\x58\xd7\x96\x33\x3f\xa0\xf6\xdf\xdb\xdc\x00\x9b\x16\xa5\x66\x0c\xbc\xf8\xd4\x93\xc2\x12\x11\xbb\x7c\x31\x8b\x6a\x1c\x32\x73\x2b\xbe\x08\xd0\x34\xd3\x36\x38\x1d\x03\x5d\x6e\x10\xcd\x9b\x89\x6b\x26\xa6\x3f\xac\x42\x3d\x5a\xa3\x52\x87\x30\xfb\xe3\xa1\x3c\xa6\xdc\x10\xcb\x1b\x24\xe2\x06\x0b\xd3\xd1\x93\xb2\x32\x8a\x7d\x8d\xe3\x71\x6d\xf6\xdd\x09\x43\x14\x1c\x3c\xe0\x9c\x4f\xf2\xa4\x66\x47\xb5\x3d\x4f\x9b\x30\xde\x7a\x2b\x94\x78\xbc\x3a\x71\x4d\x8f\x36\xbd\xa2\xb9\xad\x63\x95\x31\x65\x95\x11\xb7\x9c\x3c\xbb\xcd\xe3\xe5\xff\x2a\x22\xdb\xc6\x0d\x87\xba\x20\x2b\x97\xfb\xf4\x24\x4d\xff\x03\xd7\x59\x43\x0c\x5d\xae\x38\x2c\x5f\x7a\x54\xa5\x36\x2d\xc3\xaf\xe4\xef\x4d\x66\x9c\x18\x04\x88\x33\x0f\xdb\x8a\xca\x34\x75\x01\x24\x50\x7e\x43\x27\xff\xfa\x98\x39\xd1\x33\x00\xd7\x53\xde\x9f\x5f\x31\x30\x71\x9c\x04\x5f\x26\xe0\x4e\x33\x41\xd0\x0a\x5c\xd1\xe5\x2f\x9b\xc1\xef\xf2\x27\x41\x14\x5a\x69\xd9\x77\x76\x28\x59\x52\x65\x3d\x2e\xd2\x46\x6e\xc8\xf5\x49\xf4\x02\x54\xc5\x8a\x66\xc6\x1b\x9a\x16\xc9\xec\xce\xf6\x39\xc2\xa0\x6c\xec\xb5\xc3\xeb\xc9\x6c\xbf\xce\xb8\x69\x42\xf6\xc4\x2b\xfa\x8a\xb4\x44\x6c\x9b\x57\xcd\x70\xcc\x8a\xc3\xf8\x4c\xc1\x0a\x1c\xe4\x02\x36\xb3\xa7\x3f\x3b\xee\x95\xa4\xff\xf3\xbc\x66\xc1\xa5\x2f\xd5\x34\x24\x16\x31\x2c\x9c\x86\xc5\xe7\x6e\x7f\x29\xb9\xdb\x65\x60\xe9\xae\xd8\xaa\x35\x8d\x16\xad\x0b\xd2\x7b\xf6\xa4\x25\x8d\x93\x70\x9f\x4f\xd9\xc5\x74\x17\xf3\xc3\x0f\x09\xe9\xa1\x2a\x32\xb0\xd2\xd1\xe7\x17\xcd\xd7\x06\x77\xae\x41\x03\x86\xca\xd2\x59\x20\x7f\x92\x3f\xb0\x3a\xb7\x45\x84\xc3\x39\x6c\xab\xc4\xa5\x04\x3e\x2c\x36\x85\x0d\xc8\xc9\x36\xc5\x47\x29\xad\x58\xf4\x88\xc0\xf9\x59\x0d\x8f\x63\x7f\xa3\x9f\x0e\x78\x5c\xab\x98\xa2\x46\x42\xe8\xc7\x3f\xf7\x92\x56\xac\x58\x88\x25\x54\xb2\xfd\x35\x39\x6d\xc2\x26\x01\x94\x79\x7e\xec\x4d\x2a\xa2\x80\x51\x40\x37\x6a\xef\xcc\x44\xad\xb9\x44\x0c\x99\xa4\xec\x88\xd2\xfd\x8f\x2c\xd6\x14\x77\x3d\xca\x33\xde\xe2\xcd\x0a\x5a\x2f\x00\x2b\xa4\xe8\xc7\x2f\x1e\x93\xa9\xa6\x84\x6a\x51\x07\x09\x08\x95\xdf\x8f\xd5\xbe\x51\x7b\xb1\x9d\xb4\xf3\x51\xfe\xcf\xed\x56\x55\x01\xa0\x62\x21\x93\xd6\x0a\x3d\xe1\x69\xad\xb1\xf4\xa2\x57\x99\xeb\xd6\x7d\xe7\x79\x05\xc7\x4f\x58\x95\x32\x2e\x41\x6b\xc9\x0a\x06\xf9\x76\x74\xda\x13\xa9\xd4\x53\x3a\xd8\x1a\x23\xc7\x01\xbf\x2a\xfe\x1d\xa7\xbd\xa4\xd9\x18\x62\x37\x60\xf1\x5d\xcf\x7f\xd9\x95\xf7\xd0\xa2\xa0\x45\xa9\x0f\x31\x9e\x57\x5d\xd4\x6c\xc2\xf1\x7b\xb9\xdf\x29\xb6\x7b\x36\x71\x38\x87\x20\xb3\x67\xa8\x5e\x54\x22\xd7\xd0\x90\x13\xd9\x21\xc7\x2e\xd7\x22\x07\x90\x10\x62\x89\xfc\xaf\x9d\x54\xd8\x09\x24\xd6\x1f\x1f\xb6\x5b\x48\xae\x21\x9f\x78\xdc\x26\xe6\x77\x2f\x69\x5e\x38\xa4\x54\x22\x51\xd7\x24\x56\x8b\x0b\xc7\xca\xf9\x55\x95\x06\x1c\x23\xb6\x66\x91\x9c\x4c\x77\xb5\x77\x45\x3f\xb2\x5f\x95\x64\x99\x66\x57\x86\xec\x9e\x3e\xcd\x57\xc9\xa6\x2c\xd9\x3c\x4c\x9a\xab\x1c\x4c\x54\xe6\xfd\xe2\x3f\x0c\xe5\x29\xaa\xca\x10\x14\xb9\xb9\xe7\x1e\x48\x3f\xf1\x99\xdd\xed\x73\x66\xf1\x46\xe0\x8d\x7d\xc2\x0b\x01\x1b\xe0\x86\x17\xfd\xfe\xf7\x4c\x7d\xbe\x2e\x4c\x34\x85\x65\x53\xb8\xfd\x49\x15\x45\x8e\x40\x2a\x59\x80\xe2\x0a\x7b\x95\x8a\x80\x30\x0a\xef\x4f\x7e\xec\xf2\x04\x4b\xe0\x5b\x38\x85\x29\xfd\xf8\xe1\x74\x1f\x01\xee\x19\x28\xb6\x3c\x88\xfa\xc8\x31\xb3\x15\xb0\x07\x65\x95\xe8\x0f\xde\xb8\x4f\xb7\x1a\x76\xaa\x40\xa8\xe6\xbc\xd0\xdc\xbe\x13\xad\xea\xae\xa4\x26\x1c\xca\xc2\x27\x96\xa6\xd6\x3b\xc4\x06\x1e\x6e\x66\xd5\x21\x59\xb0\x21\xd0\x99\x4d\x29\xf5\xe7\xde\x38\x92\x66\xee\x7f\x5c\x28\x56\x7f\xe0\x3a\xe9\xf8\x02\x6e\xc0\xd9\x65\x96\x3c\x97\x25\x1b\xf7\xf1\xe9\xd9\x6d\x53\xf9\xe9\xb9\x11\x31\x5f\x0c\x4f\x7f\xb6\x5a\x97\xf8\xa3\x41\xd1\xc6\xb1\x62\xd5\xa6\xfc\xc8\xe4\xff\xd0\x54\xf1\x78\x99\x60\xf1\x73\x40\x7c\x14\x04\x3e\xbd\x81\x77\x0b\xcb\x11\xe1\x7a\x08\xf9\xf6\x41\x0a\xcb\x20\x28\x95\x44\xef\xe4\x2c\x94\xef\x71\x05\x7c\x3a\xca\xd1\x05\x45\x8f\xf4\x37\x83\xd5\x50\x5a\x49\xa0\xda\xfd\xb9\x9d\x3b\xb4\x86\xcb\xe2\xa2\x13\xbc\x8d\xbb\xeb\xf9\xf4\x59\xb1\x31\x8a\x3a\xb5\x28\x15\xf2\x72\x3a\xbb\xe9\xb8\xce\x24\x43\x7e\xc0\xa4\x6c\x9b\x29\x20\x17\xd8\xab\xd2\xc0\xe3\x19\xf9\xfd\x5e\x79\xa1\x26\xae\x32\x1c\x4b\xfc\xf6\xf4\x67\xce\xbc\xa3\x67\x4a\x8f\xda\x01\x2f\x7c\xe0\x92\xfe\x56\x13\x01\xac\x04\x45\xe4\xd1\x94\xd5\xda\x85\x33\xad\xd2\xfe\x4e\xed\xc7\x8e\x0c\x96\x35\x7e\x00\xbc\xdd\xbb\xf6\x6b\x7c\x49\x70\x46\x28\x94\xe4\x58\x3e\xf7\x2f\x87\xf8\x70\xb7\x8e\x6d\x3b\x41\x5d\xf1\x05\x64\xf6\x6b\xeb\x2f\x22\x79\x5e\x88\xc7\x50\x99\x13\x2f\xf2\x29\xc8\x8d\xd4\x0e\x9c\xa2\xda\x36\xe6\x4e\x6f\xbe\x42\x2f\x70\x88\x43\xcc\x58\x4b\x38\xaa\x64\x96\xcb\x91\x68\x89\x32\x8c\x98\xa3\xfc\x81\xfc\xa4\xb9\xd3\x9a\x2a\x6a\x02\x66\x63\x42\x31\x4e\xf3\xfc\x7b\x49\x86\xab\xba\x45\xc0\xbc\x64\xe8\x0e\x7e\x79\x9f\x30\x2a\x80\x99\x53\xcd\xbe\xdf\xd0\xe2\x7a\xc0\xdc\x04\xeb\x99\x39\xf8\xa2\xe6\xaa\x17\x30\x98\x33\x49\x8d\xcb\xec\x0f\xe4\x08\xc2\x61\xea\x17\x3f\xf5\xf8\x87\xe2\x78\xb8\x36\xfa\x5b\x57\x6b\x1d\x3f\xd8\x71\x09\x9d\xd7\xf0\x2f\x3a\x24\x20\x70\x56\x21\x6a\xa2\xd6\xe9\x39\x9e\xb8\x71\x41\x3c\xab\xa8\x89\x1e\x49\x07\x50\xfe\x0f\xd0\x73\xa3\x94\x7d\x0e\x32\xef\x0e\x10\x77\x39\xee\x09\x07\xee\x12\x16\x35\xdc\xa4\x3d\xfc\x52\xaf\x86\x94\x40\x04\xf0\x92\xe0\xb3\xf1\x13\x51\x67\x2f\x42\xe5\x14\xc9\x3d\x38\xa5\x4a\x97\x97\x05\x52\xf5\x87\xcb\xb9\x0a\xc0\xad\xd4\x45\xcc\xb0\x9a\xf5\x9e\x67\xec\x97\xf5\x6f\x91\x35\xa0\x53\x9b\xd6\x32\x5a\x79\x45\x6c\x14\xd5\xdb\x9e\xc3\x4b\x93\xcc\x5b\x03\x55\x74\x1e\x36\x89\x57\xa5\x50\x48\xe4\xbe\xbf\x23\x7d\x1e\x67\x15\x3c\x0c\x05\x33\xc7\xd2\xdc\xf3\xb2\x8e\x0e\xc0\xa8\x1a\xf3\x6e\xfa\x33\x37\x9c\x6c\xf2\x2e\xe5\xc0\xa1\x78\x43\xb5\xd4\x52\xc0\x2b\xb6\xcf\x90\x27\x08\x87\xb9\xcb\x5f\x10\x88\xd3\x6a\x95\x51\x3e\xe6\xc8\xcc\x19\xad\x2f\xfe\x9c\xaa\x45\xdd\x64\xa8\x31\x87\x29\x94\xc0\xa0\xe8\x71\xb3\xbb\xe8\xff\x3c\x79\x8e\x6b\xcf\x77\xcd\x84\x14\xfa\xcc\xbe\x31\x5a\xc6\xaa\x12\x96\x6c\xe9\xbe\x77\xdf\x04\xad\x0a\x73\x03\xc3\x20\xd3\xd5\x5a\x3f\x73\xec\x00\x67\x9a\x80\xdd\x90\x5e\xc7\xbd\xff\xd4\x48\x65\x4c\xe3\x23\x62\x63\xc6\xc5\x75\xeb\x4f\xeb\xe5\x8f\x61\xb9\xe0\xa1\xcd\x87\xc6\x5b\x56\xf3\xbe\x74\x09\xe2\xbb\xb1\x23\x6b\xb5\x74\xc7\x68\xdd\x4d\x5d\x49\xf6\xe4\x8e\x0f\xeb\x95\xa8\x53\x44\x41\x39\xcd\xa0\x58\x68\x26\x75\x3b\x48\x85\x85\x33\x57\x0f\x13\x09\x39\xf0\x82\xb8\xe2\xfd\xe3\x53\x69\x1a\xf8\x9c\xc2\x6c\x2e\x59\x56\x18\x20\x0b\x07\x9b\x36\x40\x13\xe7\x73\xe3\xf9\xa9\xbd\x15\xd9\xa8\xe1\x11\x14\xb7\x77\x33\x7d\x9d\xe6\xec\x10\x57\xb8\x02\xe7\xaf\x6c\x53\x28\xe1\x36\xf5\xc4\x52\xeb\xd0\x5c\xc5\xa7\xbe\x68\x06\xb6\x8d\xa4\x3c\x60\x78\x70\xeb\x70\x51\x36\x53\xa3\x52\x15\x0b\xff\x0c\x93\x26\x6e\x3e\x70\x66\xb2\x67\x4e\x8f\x54\xc5\x5b\x50\xe0\xf9\x22\xae\x7e\xef\x84\x56\xc4\x39\x0e\x72\x15\xba\xfc\xb8\xb5\x9a\x89\x2e\xd0\xf8\xb9\x2d\xef\x49\xc5\xa2\x90\x01\x62\x4c\xb2\x77\xdf\xdd\x29\xae\x0c\xcc\xb7\x0c\x9b\x83\x07\x86\x69\xbb\x7f\x10\x4a\x8e\x7b\x96\xd6\x41\x8a\x3e\x0b\x27\x7d\xfe\x6c\x72\xfa\x35\xc2\xb6\x89\x99\xf0\x9e\xec\x09\x77\x6b\x1a\xea\xc8\x30\x70\xd5\x8f\xd5\xf0\xdd\x73\x63\x95\xa9\x0f\xf4\x06\x55\x12\xab\xb4\x86\xc5\xb3\x09\x55\xad\xb3\xbb\xd0\x13\x5e\xb7\x63\xb8\x8a\x15\xf7\x81\x93\x93\x5b\xf4\x5c\x8b\x4a\x3f\xa1\x94\x03\x9d\x6e\x7d\x41\x87\x30\x58\x42\xa6\x36\xca\xe4\x2b\xf4\x91\x31\xab\xa3\x86\x74\x31\xf3\x5f\x69\x82\x93\x7b\x02\x6f\x91\xfb\xc3\x85\x21\xe2\xdd\x70\x00\x69\x1f\x76\xb7\x8a\xc6\x1b\x33\xec\x50\x37\x3a\x9f\x1f\x7d\x41\xee\xde\x1c\x93\x93\xc8\xc7\x25\x29\xa0\x82\x1c\xe5\x70\x6f\x18\xaf\xa9\x6b\x37\x3c\x6c\x97\xe2\xa2\xd7\x3d\x35\x56\x85\xdb\x14\x01\xf0\x2e\xdf\x9f\xa1\xcb\xb4\xcd\x8f\x15\x00\x86\x49\x3c\xae\xcf\xbf\xa6\x11\x5f\x6c\x6a\x54\x62\x27\xb3\x13\x0b\x47\xc7\xac\xae\x1e\x7d\x2f\xf1\xc1\x63\xc9\xd5\xba\xa4\x4f\x29\x1a\x3e\x7f\x54\x6e\x4d\x50\xa9\x84\x08\xd3\x59\x2e\x21\x1a\x27\xeb\x51\x6a\x9b\x89\xaa\x46\xf6\x85\x6b\x55\x8d\x37\x5a\xa5\x42\x97\xbe\x3f\xf3\x93\x95\xba\x11\x27\x77\xf4\xe5\x91\xf8\xe0\x2b\xe9\x17\x7b\x2d\x38\x15\xf4\xf4\x67\x76\xbc\x94\x42\xe0\x00\xf7\xa7\xa7\x3f\x37\xf0\x71\x89\xe5\x11\xa2\xff\x32\x97\xff\xdb\x02\xa1\xb4\xca\x88\xc1\xdb\xab\xaf\xbc\x31\x46\x29\xe3\x1d\x87\xaa\xe2\x33\xd9\x17\x1f\xd7\xd0\xe9\x88\xd4\x85\xd8\x91\x28\x1a\xff\xe3\x84\x92\xb1\x30\x06\x7c\xfa\xf1\xd1\x09\x36\x6e\x9d\xe2\x4c\x12\x2e\x3a\xac\x49\x55\x74\x75\xf0\x18\x75\xcf\x34\x79\xcd\x20\x23\x19\x05\xd7\xf8\x13\x2e\x7f\x40\xde\xb8\x32\x61\x76\x89\x11\x0c\x99\x26\xf3\x97\xcb\x14\xf1\x7c\xc4\x4c\xcc\xab\xb4\xc3\xef\x8c\x53\x9a\x16\x00\x57\x11\x3f\x90\x30\xc0\xdc\x4a\x0d\x2b\x16\x45\x33\xc1\x7f\x98\xde\x35\x59\x6b\xf5\x90\x83\x5c\x93\x56\x69\x60\x53\x4f\x8d\xcb\xf9\xee\x13\x6d\x4a\xaa\xa8\x46\xf5\x85\x29\xba\x8c\x2f\x1f\x50\x94\x95\x02\x0f\x3c\x51\xbf\x38\x29\x3d\x2b\xb5\x82\xd8\xbb\xe7\x03\x73\xb5\x11\x5f\x35\x6a\xc7\x03\x97\xf8\xc9\xd4\xb3\x3f\xf7\x7f\x87\x79\x33\xd0\x2b\xf8\xba\x3d\xfd\xd9\xcf\xdd\x97\x4e\x1f\x06\x66\xc5\xd8\xe5\x4b\xa6\x3b\xb6\x52\x1e\xc8\x32\x65\x45\x64\x58\xb8\x06\xa2\x3d\x93\xb5\x72\x9f\xbb\xc3\x8b\xfa\x60\xdc\x49\x85\xdd\xa8\x6a\xd3\x5e\x7d\x4e\x47\x28\xe1\x12\x66\x2c\x41\x48\xe5\xaf\x5e\xab\x8d\xcc\xcc\x1a\xf1\x84\xa8\x79\x74\xd9\x0f\xdc\x94\x60\x4b\xa9\x29\x38\x49\xe1\xa1\xf6\x51\x4a\xe1\x43\xeb\x6a\x01\xfa\x33\xad\x16\x29\x33\xec\x22\x13\xc7\x8b\xe6\xf0\xc7\x4f\xf3\x10\xb4\x18\xb9\x01\x62\xfc\x09\xfc\x71\xbf\x7c\x38\x30\x35\xc0\x30\x07\x04\xc7\xfe\xd9\xad\xa9\xe3\x51\x8b\x81\xf5\x7d\xaf\xca\xad\xc8\x14\xf8\xc9\x07\xa7\xe9\xd4\xdc\x12\xb1\x09\xcc\x3c\xa0\xa7\x3e\xb6\xa3\x45\x94\x65\x29\xfd\xa9\x55\x9a\xc4\xf0\xdd\x01\x58\x35\xc4\x5d\xc4\x89\x85\xf2\x02\xdc\x28\x5b\x95\xb8\xae\x58\x66\xfc\xc4\x24\xd3\xcf\x9e\x0b\xac\xd8\x8f\xdd\x2b\x9f\x42\x2f\x46\x6e\xa1\x8a\x02\x80\xb6\x7c\xe6\x05\xa5\xbe\x04\x31\x92\x42\x4f\x88\xe6\x2b\xae\x11\x98\x1b\x9b\x45\x67\x7a\xea\x55\x5a\x7f\x61\xb4\x73\xef\x9d\x74\xed\x73\x6b\x7b\x9b\xba\x85\x10\x18\x02\x38\x7d\x03\x47\xcb\x22\xa2\x8c\x6c\xee\x26\xbd\x73\xb0\xce\xae\x2f\x07\xdc\x97\x21\x4a\x0c\x33\x97\x6b\x52\x3d\x2c\xaa\xf7\x00\xe1\xe9\x3e\x3f\x56\x7a\x74\xe9\xd8\x8d\xf0\xff\xbd\x90\x6c\x93\x49\x7b\xb1\x09\x24\xbe\x69\x9b\xca\xab\x04\x05\xa5\x9e\xfe\x5c\x8f\xaf\xfa\x3f\x12\xca\x48\x74\x85\x95\xc5\xba\x2c\x3e\x6f\x4c\xe0\xe1\x7d\xe2\xac\x6e\xba\x6b\xdb\x49\xaa\x7f\x5d\xb3\x2f\xad\x21\x2e\xcc\xcf\xb1\x1c\x57\x2d\xe3\xb5\x5e\xe7\xbc\x99\x80\xb2\xfb\xf2\xf2\x2b\x14\x4c\x4b\xc3\x03\x38\xac\x18\x54\x42\x43\x9e\x7d\xbb\xaa\xf2\x56\x9d\x2a\x62\xb0\x6d\x82\xda\x2d\xbf\x6a\x89\xae\x25\x6c\xd8\x41\x72\xa1\xb9\x41\x5a\x4d\x62\x05\xe5\x04\xab\x90\xdd\xb2\x5b\x20\x36\x84\x3d\x0e\x3f\xca\x67\x2e\x28\x65\x01\xf2\x50\x05\x4e\x4d\xf6\x93\xdd\x1a\xde\x89\x38\x58\x58\xfc\x66\xbe\xb3\x82\xa7\x86\x45\x34\x60\xbc\xb7\xe8\x4c\x76\x93\x51\x27\x0f\x00\x54\x4b\x48\x4e\x2f\x4b\x5e\xcf\xf7\x5f\x97\xab\xab\x46\x50\xa6\x9e\x8d\x6a\x85\x9e\x70\x5b\x51\xd6\x73\x54\xd1\x11\x0c\x8f\xb7\x29\x8e\x5c\x9e\x17\x70\x20\x49\xe1\x31\xad\x3f\x08\x3c\xee\x4c\xc9\xc7\x50\x7f\xf1\x84\xf6\xbf\xeb\x51\xb4\x05\x70\x0e\xcc\xec\x3e\x7a\x9f\x2c\x2f\x14\xc7\xe3\xf0\x9e\xe7\xdb\x14\xa8\x1b\x72\x4d\x87\xfa\x16\x1f\x9d\xf5\xb4\xc8\x13\x3d\x77\x5e\x61\x16\x74\x17\xd3\x1e\xd1\x57\xdd\x35\xec\x81\x04\x55\x42\x98\xfd\xda\x51\xb9\x6a\xe9\x9e\x5b\xe8\x09\x0f\xf4\xe9\x53\x0a\xf0\x1e\x32\xed\x46\x6c\xeb\x35\x28\x9d\xf5\xba\x3a\x04\xe2\x68\xc5\x3b\x4a\x35\xc1\xb7\x73\x4d\x0d\xe1\xfd\xdd\xba\xa8\x29\xd7\x93\x32\xf9\xd1\x58\xc3\xb5\xc6\x0a\x4b\x88\xe7\x12\xc3\x0a\xa4\x13\x47\xf8\xf3\x27\xc5\x9e\x8c\x16\xdb\x0b\x3d\xe1\xe1\x07\x94\x79\x98\x1d\x8b\x8c\xe6\xef\x6a\x93\x8f\xcf\xac\x93\x18\xa5\x95\xeb\x30\x47\xa4\xfb\x4a\x83\xe7\x1c\xff\x21\x85\x3a\x8a\x5d\x3f\x60\x42\x48\x2d\x73\xe0\x71\x09\x58\x17\x9e\xc8\x9a\xb2\x90\x81\x8a\x98\xb9\xd8\x8f\x77\x36\xf7\x4f\xd2\x58\x0e\x81\xed\x0b\xec\x42\xd2\x55\x8d\x58\xa3\x88\x4e\x20\xc3\x27\x06\x84\x9e\x1f\xb0\x74\x9a\x66\x60\x3a\x7b\xd1\xcd\xe5\xd4\xc7\xd2\x71\xc8\xc4\xc8\x86\xf0\x1d\xb2\x75\xe9\xeb\xeb\x25\xae\x83\xa5\xb2\x42\xee\x17\xf7\x36\x0d\x2c\x11\x0b\x3c\x61\xf0\x14\x65\xad\x9f\x6b\xda\x0b\xa8\x5a\xa5\xc4\xf5\x13\x45\xc7\xec\x40\x4d\xb8\xd6\x8c\x6a\xe4\xc4\xf8\x26\x66\x78\xbf\x1c\xbf\x67\x55\xdf\x82\xbb\x7c\xf5\xeb\x8a\xb0\x58\xc0\x18\x69\xc0\xfb\x97\xbd\x5e\xb1\xd9\xc5\x77\x07\xc2\xbd\x2d\x13\x5c\xd0\x00\x0b\x35\xcc\x1a\x31\x29\xb3\xa7\x3f\xf3\xc8\x7b\xfa\x1e\xa0\xaf\x20\x36\x73\x5f\x79\x75\xb4\x3a\x59\x32\x52\x6e\x18\x0b\xb5\x01\x1c\xb2\x01\xaa\x2f\xed\x49\x3e\xbe\x96\x07\x9f\x1b\x17\xdd\x7c\xc3\xd2\x4f\xc6\xfd\xc3\xb9\x07\x14\xef\x4d\x49\x59\x09\xef\x5a\x22\x63\x74\x89\x08\x57\xeb\xec\xfa\xdd\xda\x29\x61\x38\x36\x36\x84\x72\x62\xd6\x53\x97\x2b\x52\x04\xcd\xf6\xfa\x9f\x19\x90\xae\xab\xea\x18\x57\x80\xc3\xf3\xda\x5d\x82\xb0\x13\x7b\x8b\x86\xbf\x5f\x14\x93\xf9\x4c\x3e\x5d\xc8\xe7\x1e\x56\xe2\x64\x55\xc8\x8e\xf5\x67\x7f\x6c\xa7\x2b\x2b\x8b\xd8\x36\x62\x1a\xd6\x2b\x37\xf0\x26\xf5\xfb\x94\x2d\x5e\xcd\x9f\xdc\xc5\xef\xc9\x6d\x60\x35\x97\x70\x34\xde\xd4\xb6\xf1\x82\x8e\x2b\x42\xc1\xd2\x71\x52\x05\xac\xac\x6a\xd5\x99\xab\x34\x50\xa8\x8d\x1a\x31\xa9\x31\x33\x66\x33\xff\x86\x0b\x6d\xea\x79\x04\xaa\xff\x53\x7d\x2a\xb5\x3b\x60\x89\xc7\x50\xee\x4f\xaf\x0d\x8e\x91\xe0\x0b\xef\x88\xfe\xe9\x9f\xae\xd5\xb3\x8e\x70\x43\xe7\x13\xef\xce\x77\x74\x0d\x5f\x71\xa0\x64\x05\xec\x9c\x90\xd5\x49\xe0\x5a\xd8\xae\x96\x78\x9e\x39\xff\x9e\x56\x5a\x02\x6c\x5f\xe4\xb3\x7c\x87\x86\x72\x2b\x32\xaa\x58\x84\xd1\x9d\xda\x1c\xb5\x01\x0e\xd4\x9c\xce\x17\xfe\xc7\x00\x15\x29\xe1\x14\x39\x7f\xbb\x3f\xbb\xeb\xe9\x64\xa2\x50\x8b\xae\x21\x7c\xfd\x45\xcd\xe6\x99\x8a\xba\x64\xd7\x73\x89\x1e\xb0\x0b\x6b\x76\x59\xb7\x7d\xa6\x94\x3e\xef\xb1\x16\x4a\x0c\x3d\x98\x3e\x40\x33\xd9\x14\x43\x56\x18\x84\xfe\x4b\xb5\x4d\x61\x34\x9b\xaa\x95\xda\x83\xcf\x5f\xae\xec\xf4\xf4\x85\x7b\x38\x65\x01\xaf\x5f\x31\x02\x3c\x29\x9c\xa2\x77\x6d\xfe\xb3\x95\xc8\xe7\xe8\xd7\x9e\xfe\xdc\xd4\x03\xda\x4c\x0e\x31\x5c\x0a\x38\x78\x13\xd2\xe0\x65\x45\x2d\xd3\x14\x3a\x79\x18\x6a\xad\xa6\x2f\x1c\xf6\x3c\x02\x50\x9e\xf9\xef\x69\x72\xb8\x5c\x66\xc8\xc4\x62\x90\xc0\x2b\x97\xfc\x35\x0a\x7c\xb8\x46\x8c\xa8\x49\x7a\x60\x59\xab\x92\xf3\x8b\xc4\x26\xd8\x25\x85\x9e\xf0\xe0\x30\x5e\x0e\x7b\x06\x23\x8e\x83\xca\x42\x10\x93\x1c\x15\x3f\xf6\x71\xb5\x8a\x98\x90\x36\xcf\xfd\x6a\x95\xd2\xbd\x11\x6c\x73\xc9\xf2\xce\x93\xc2\x42\x57\x30\xb7\x0d\x15\xc3\xd7\x9f\xbb\xbb\x57\xae\x88\xfc\x80\x55\x0a\x3d\xe1\xe9\x33\xfc\x56\x71\x13\x23\xf8\x23\x5b\x36\xf2\x09\xd9\xe2\xa0\x88\x12\xf6\x5a\x75\x82\x86\x92\xf5\x6c\x38\x57\xde\xc5\xe4\xbf\xff\x7d\xb2\x4e\x27\x62\xc9\x16\xa0\xa1\xed\x49\xa2\x88\x83\x5d\x93\x2f\x25\x72\xf3\x5e\x95\xd4\xdf\x62\x54\x85\xe6\x86\xd6\xd2\x28\x1e\xec\x55\xdd\x8b\xf1\x67\x73\x99\x69\x72\xee\x40\xa5\x65\x50\xb8\x6c\xbb\xc2\xab\x35\x03\xc4\x4c\xa8\x79\x37\xe5\xff\x0c\x92\x17\x82\xc3\x52\xdd\xb7\x8c\x0b\x77\xf7\xf6\x02\xca\xec\xc7\x1b\x75\x27\x13\xd3\xb4\x93\xc0\xb2\x99\xe9\x76\x56\xa8\x5c\xe6\xc5\x7b\xf6\xc6\x5a\xfa\x37\x01\xdd\x10\x67\x84\xcc\xb4\x3e\x39\xfb\xf1\xeb\xd1\x61\x19\xac\xc5\x77\xc2\x18\xf1\x25\xb3\x22\xbb\xf9\xda\x71\x69\xd9\xb4\x65\xd3\x17\xa4\x74\xd3\xbe\xb0\x32\xbd\xdd\x28\xda\xc8\xa8\xc4\xa2\x03\xeb\x9a\x6e\xe2\xe4\x77\x34\x62\x37\x73\xf8\xce\x3e\x0d\x09\xba\x70\x46\xdf\xe9\x56\xed\xa8\x9b\x20\x86\xc0\x34\xfe\xbd\xb6\x70\x17\x02\x7c\x50\xeb\x7c\x6b\x42\xfa\x45\x9b\x42\xb8\xe0\x58\xfe\xf3\xdd\xe9\x4c\xeb\x46\x57\x09\xa4\x81\xdc\x7f\xae\x57\x1e\x62\x54\x67\x79\x5e\xa1\x27\xfc\x57\x4d\x9f\xb1\x0c\xf4\xfb\x06\x07\x6e\x43\xe6\x18\x64\x69\x19\x00\xd4\x73\x04\x4f\x73\xce\x6e\xdd\xf6\x97\xc5\xe3\xca\xf0\x81\x6d\x49\x41\x16\x78\x56\xa1\x27\xbc\xf1\x5e\xbe\x7d\xb8\x05\x23\x93\xd8\xcd\x0b\xe8\xdc\xb0\xfd\x7a\xb1\x29\xdc\x6f\xf8\x93\xfa\xd6\x1b\x7c\x6a\x7c\xb3\x87\x52\x82\x1a\xdb\xab\x3c\xad\xba\x54\x6c\xee\xb2\xbf\x51\xa8\x8a\xd8\x05\x73\x36\x2e\x09\xb7\xd9\xd2\x27\x76\x94\x4a\x17\xe3\xdc\x5b\xfb\x65\x3a\xee\xec\xea\x28\x98\x08\xf6\xef\xcf\x68\xce\xfa\x84\x21\xd5\xc3\xf5\xb1\x2d\xca\x26\x36\x0a\x24\x80\x18\xff\xd4\x05\x6d\x04\x0a\xb3\x57\xd1\x35\xfd\xfd\x23\xd2\xd1\xae\x1d\x1e\xf7\xe2\x83\xb2\xae\x9f\xd9\x59\xe8\x09\x7f\x76\x76\xa4\xd6\x3b\xd6\x79\xd9\x78\xf7\x93\xaa\xed\xaf\xef\x47\x35\x2d\x3c\xcb\x9f\x2c\x8c\x7d\xa2\x39\x4c\xbf\x59\x89\xa7\x45\xe8\xe0\x62\x13\xf1\x2d\x4a\xdf\x23\xb2\x84\x20\x25\x51\x55\xfe\x49\x1b\xcc\x60\xb7\x8c\xca\xc9\x2e\x10\x6b\x46\xc2\x12\x01\x1e\x3f\xf8\x67\x4e\x0b\xb4\x9b\x8b\x12\xd3\x80\xd5\x0f\x2b\x68\xdf\xd8\x96\x37\x9c\xb1\x5a\x4e\x5d\x00\x56\xc5\x82\x6a\xfc\xa8\xbe\x3b\x75\xa2\x32\x61\xf0\x48\x94\x85\x8d\x26\x75\xa1\x7c\x8f\x66\xfb\xc4\x51\xe6\x9c\x09\x36\x6d\xf7\x95\xca\x84\x8c\x2f\x44\xf5\x7b\xf2\xec\x31\xed\x8d\x99\xe2\xc7\x58\xd2\x11\xef\xca\xe7\x6a\xd8\xc8\x81\x62\x37\xb7\xfb\x4d\x71\x13\xab\xb1\xca\xe4\xc7\x3b\xb4\x79\x35\xb2\x2b\xc9\x04\xf9\xc5\x16\x35\xba\x2c\x5e\x3c\xbd\xa7\xd0\x33\x31\x29\xb6\x1c\x45\x4e\x2c\x9c\xe2\xca\x5a\xb8\x11\x58\x88\x21\xa5\x10\xfb\xdc\x63\xf2\x97\xc0\x8f\x2e\xfe\x1f\xaf\xec\xfc\xb0\xde\x45\x94\x3d\x0b\xa7\xed\x93\xb2\x5b\xdf\xd5\x6f\x13\x46\x31\x20\xe9\x77\xab\x5b\xd5\xc9\xb0\x19\x18\x98\xc1\x11\x9e\x76\x9c\xe7\xc2\x5b\x90\x5b\x44\x0d\xe4\xa5\x45\xba\xb2\x33\x4f\x0d\x17\xcd\x9f\x93\x28\xab\xf6\xe7\x47\xbc\xa2\x54\x48\x01\x2b\xf2\xb9\x70\xf8\xdf\x4c\x38\x4f\x2e\xb8\x79\xc9\xcd\xb7\xdd\x1c\xbf\x3b\x0b\xbb\x25\x1e\xc2\xc5\x65\xea\x13\xa1\x9a\x2f\x70\x89\x85\x96\x74\xa4\x9b\x21\x00\x9e\x97\x6a\xd0\x7d\xe2\x46\x9f\x23\x1a\xbb\x09\x82\x2a\x7f\xa3\x05\x6c\xea\xe8\x39\xb4\x29\x3b\xe7\xa2\xcd\xad\x06\xfe\x7b\xa9\xd4\x1d\xc5\x48\x19\x31\xbe\x35\xb9\x55\x15\x95\x95\xf7\x7a\xc3\xe8\xf4\x3b\x39\xa7\x3b\x5e\x47\x8e\xe9\x50\xd1\xec\xe5\x32\x62\xd0\xf9\x1c\x3e\xa6\xa5\x71\x1f\x31\xc1\xe2\xca\xfd\xd5\x5e\x65\xe7\x18\xeb\x4f\xc2\xc5\xde\x79\x3a\xfd\x48\x6d\x5c\xc4\x26\xae\x89\x9c\x2d\x4e\xcb\x4f\xef\x1a\xae\x4c\x18\x5d\x8e\xc8\xc9\xae\x59\x71\x11\xde\x21\x20\xae\xc6\x6f\x91\x72\xd4\xae\xcc\x44\xe1\x5d\x73\xe5\x65\x58\xb4\xae\x7c\xdb\xfc\x43\xc9\x20\xac\x48\x9b\x12\x5d\xf6\xef\x4e\xeb\xa6\xa8\x51\x47\x21\x22\xe9\xdd\x0a\x5c\x88\x44\x2d\x6f\x74\x09\x37\x0e\x4c\xa8\x28\x35\xa0\x5c\x41\x82\x99\x21\xf5\xf5\x3d\xaa\xee\x66\x96\x08\x81\xfb\x65\x60\x1a\x09\x5f\x6f\xb0\x06\x8d\x2f\x36\xaa\xc8\xf3\xa4\xb2\xfc\xd7\xd7\x70\x76\xed\x0d\xb6\x5d\x64\xc4\xf7\x69\xb3\xb4\xee\xbf\xf8\x63\x2e\x12\xbf\xb0\xc9\xab\xa7\xef\x3d\xad\x8b\x41\x96\x83\xb8\x54\xc8\x4c\x3a\xa4\x50\xa9\x09\xf7\xb1\xff\xd2\xc2\xf1\x7a\x69\xcb\xc1\x8a\xc4\x8b\x6d\x12\xce\xaf\x56\x55\x3d\x2a\xd4\x29\x22\x17\xb0\x45\x43\xbe\x71\x85\xd6\x94\xf9\xc4\x20\x55\x28\x4e\xf8\xf7\xf9\xa7\x57\x35\x0b\x43\xe2\x62\x27\xd1\xa4\xbf\xd3\x4e\xc7\x2e\x8b\x7a\xbe\xc0\xd7\xed\x52\xb6\xae\x45\xe4\xf3\x57\x13\x1f\xd6\xdc\x15\xc5\xac\x23\x31\x5a\x9f\xbd\x3a\x7d\x7a\xa2\xea\x01\x06\x60\x43\x7d\xf9\x9a\x5a\x48\x87\x74\x84\x3b\x14\x5b\x2a\x03\xdb\x80\x3b\xca\x4f\x3c\xa5\xcb\x29\x44\xc7\xd4\xa7\x2e\xf7\x87\x82\xd7\xfb\x17\x17\x64\xc8\x2b\xb2\xa8\x62\x57\xce\xdf\xff\x8e\x6d\x51\x12\x9d\x69\x8a\x54\x72\xc7\x76\xed\x5b\xe0\x32\xa3\x55\x8b\x16\x09\xe2\xfd\xdd\xc6\xbc\x0e\x18\xc1\x20\xc3\x01\x0b\x96\x59\x07\x26\xc9\x67\xc8\xa8\xeb\x03\x3c\x17\x37\xf5\xf5\xb9\xaf\x0e\x1d\x22\x03\x6e\x74\x0f\x3e\x34\x80\xa7\xb5\x2a\x68\xe1\x44\x2d\x51\xf8\xc3\xa3\xe9\x4f\xb2\x10\xe4\x62\x71\x5c\x9e\x9c\x2c\xe7\xf9\xa0\x94\x9d\x9f\x3f\x23\x3d\x09\x47\xfe\x64\xff\x22\xd5\x7f\x2e\x9b\x4f\x14\x06\xb0\x6f\xf0\x51\x59\xb6\x75\xb6\x98\x1e\x98\x0e\x61\x7c\xd5\xb6\x4d\x3b\xac\x5c\x10\x99\xd7\xc9\x5d\xdb\xf9\x68\xee\x06\x37\x2a\x55\x6d\x5b\x26\x93\xf7\x8f\xca\x87\x49\xa7\x30\x42\x59\x8a\xf5\x9e\x7d\x5e\xe1\x1a\x97\x63\xf9\xd5\xfe\xdc\xf7\xcf\xc6\x3c\x25\xc3\x90\x8e\xdb\xe1\x2b\x87\x9a\x88\x89\x25\xe2\x19\x49\x85\x1d\x3e\xfa\x2e\xff\x32\x37\x61\x03\x3b\x45\x48\x2d\xe1\xeb\xc3\x54\xe5\x7a\x97\x32\x04\x14\xb7\x8f\xb4\xc7\x18\xc1\xde\xd8\x72\xfa\x85\x83\xea\xcb\x23\xe0\x81\x85\x9e\x30\xf7\xc8\x08\xad\x9b\x02\x77\xd7\xcc\x5d\x47\xf9\xd8\x91\xd1\x22\xac\x3d\x3f\x36\x41\x32\xdc\x29\x2a\xf4\x84\xff\x98\x57\x6c\x88\x91\x5d\x85\x51\xf3\x97\x34\x89\x22\xe2\x31\x84\xed\xc4\xe2\x2f\xf7\xda\x36\xbd\xd5\xf1\xa8\x5d\x8b\xc9\xe8\x37\x1d\x18\xa5\x0c\x05\x18\xa3\x60\x76\xca\x07\x99\x37\xdc\xa4\x05\x64\xa1\x07\xd3\x9f\xd9\xbd\x84\xe3\x7c\x80\x45\x5c\xe8\x09\xef\x3f\xc5\xef\xd3\x1d\xa8\xe1\xe2\xb8\xfa\x2e\x77\x69\xfa\xe9\x8c\xf8\xc4\xb3\xa4\x57\xed\xd5\xa7\x2e\x8b\x13\x77\xec\x7e\xf4\xec\xb0\xc1\xe2\x52\x10\x57\x13\xfe\xd0\x6b\xc9\x3d\x30\x2c\x68\x89\xaf\xd5\x38\x8b\x41\xd5\xc2\xa8\x86\x6c\x51\x69\x6f\x65\xe9\x4f\xed\xa5\x01\x13\x71\x82\x97\x78\xdd\xa6\x94\x48\x0e\x62\x27\xb7\xdc\xe2\x36\xad\xba\xf6\x19\xf6\xbc\x64\xa2\xf3\xbd\x93\x1f\x96\xd4\x1b\xec\x63\x86\x5c\x6f\x8a\x1e\x4a\x76\x2e\x11\xa7\xdc\xb6\x09\xdf\x25\xfc\x24\x1c\xdf\xdc\xf0\xc1\x4c\x26\xa1\xf9\xd6\x0e\xa4\xc7\x9c\x35\x64\x9b\x44\x73\x91\xce\x3c\xf6\x94\x0c\x52\x6e\x7b\xa9\x1d\x44\x0e\xff\xdf\x13\x52\x20\x29\x4a\x32\x38\xdd\x59\xdc\x2b\xbb\xfd\x3a\xf2\xe0\xb3\x86\x6d\xd2\x2a\x29\xdb\xa6\x75\xf1\x48\x4b\x07\x25\xe6\x76\x0a\x34\xc9\x79\x74\x68\x94\x96\x1f\x90\x21\x12\x43\x66\x42\x9b\x96\xcd\x08\x2d\x33\x54\xb5\xe2\x13\xb2\x7f\xc6\x95\x5a\x78\xc1\xae\xae\x6f\xba\xab\x55\xf1\xbb\x56\xd2\xfa\xe9\x96\xab\x94\x41\x1c\xad\x62\x3e\xf3\x6d\x56\xc0\x5e\xc9\x8b\x38\xdc\x57\xb5\x89\x41\x7c\xae\x0c\x75\xab\x74\x38\x6c\x9f\x0d\x34\xd2\xb3\x77\x0d\x57\xe5\x8b\x38\xf1\x72\xbd\x22\x4d\xe8\xd3\xa0\x39\x88\xfe\xf0\xbe\x98\x15\x4f\x5c\xcf\x87\x6e\x2a\xb3\x73\xb4\xb2\x9c\x46\x06\xb0\x37\xb2\xf3\x8f\xf1\x5c\xcf\x2f\x34\x3a\xc5\x3d\x82\xfd\x19\x75\x16\x50\x3e\xe4\x57\x6a\x34\xc4\x3a\x06\x39\x08\x18\x41\x7f\xef\x0c\xff\xfd\xa5\xa4\x6c\x89\xef\x70\x8b\x96\x1d\x7d\xe4\x55\xc4\x8d\xed\xd6\x44\x61\x63\xc5\x2e\x2f\x36\xf8\xed\xe5\x6e\xc8\x37\x80\xd6\x69\x13\x4c\x2e\xfb\x6f\x97\x34\xa9\x64\x08\x45\x6a\x91\xb7\x3f\x9e\x15\x40\x3b\xae\x00\xdd\xfc\x17\x26\x6e\x4c\x6e\x70\x61\xde\x5c\xe0\x7f\x0b\x2e\xc3\x9d\xa8\x88\xd4\xa9\x60\x36\x7c\x61\x58\xfc\x86\xfb\xb1\x20\x58\xa6\xb7\x5b\x94\xb8\xd4\xb6\x89\x30\x15\x1e\xaa\xbd\x7d\x98\x5b\x04\x0b\xdf\xb7\x13\xa3\x47\x28\xd9\x94\xf9\x16\x6f\x6e\x33\x4b\xdf\xd5\x9d\x46\x8c\x8a\x85\x40\xad\x42\x4e\x5a\xbf\xb2\x3a\x9d\x69\x68\xc9\xc7\xb1\x1e\x4e\xe6\x8b\xab\x9a\x55\x52\x18\xd0\x5b\xe3\x37\x7f\xfb\x01\x6d\xe2\x1a\x30\x8c\x82\xd8\xe5\x6d\x6b\x57\x12\x9e\xca\x28\x2a\xcc\xc7\x6f\x9b\xa4\x15\xf7\x3e\xb6\x79\xc3\xad\xb1\x57\xc7\x5f\x5d\x4f\x6f\x80\x4b\xbe\x75\xb1\x2d\x4c\xae\xb2\x3e\xfd\xc4\x67\x76\x14\x1c\xe2\x06\x7e\xac\x5c\x72\x68\xbc\x4a\x88\x36\x91\xcd\xd5\x78\xae\x6b\xd3\x71\x4c\x62\x10\x07\xbf\x33\x57\xd2\x87\xf8\xf7\x34\x9e\x90\x14\x17\xa0\x18\x65\x67\x2f\xd5\xfd\xb0\x6c\x5b\xdc\x94\x5b\xae\xe7\x61\x7a\x4e\x67\x67\x3b\x18\xc6\xfc\x7c\x79\x8b\xca\x71\x2b\x89\x0c\x32\xe2\xe4\x15\x2a\xa5\xd1\x6f\xd6\xe1\x27\xeb\xb5\x18\x53\x43\xa6\xc8\x4d\xb9\x1b\x9e\x14\x26\xdc\x51\x3f\x69\xf8\x38\x71\x8e\xfb\xe3\xb9\x26\x3c\xb5\x16\x5a\xbe\x5a\x14\x46\xe1\x26\x72\x90\xcb\xdf\xaa\xdc\xed\xc3\xd2\xcf\xc6\xa4\x6e\x85\xd6\x7c\x0f\xd7\xb4\xe1\xfc\x65\xda\x76\x2b\x2a\xb3\x7b\x69\x23\x29\xa6\xef\x3f\xaf\x19\x23\xc0\xcc\xc2\x8d\x67\xdd\xb5\x16\x0d\x41\x8b\xfb\x90\x27\xb1\xfa\xfd\x99\x89\x6d\xba\x3b\xa7\x81\xb8\xfa\x6e\x38\x56\x4a\x93\xb5\x77\x81\xe4\xf7\xbe\x4d\x0a\xe4\x58\x14\xa8\x39\x63\xb7\xb2\x23\xae\x61\xe6\x59\xc8\xa4\xf5\xe8\xda\xfe\x6e\x8f\x2e\xe5\x08\x5e\xd2\x7c\x51\xfd\xe0\x7b\xe3\x95\xc1\x44\x11\xdb\x4d\x83\xd4\xfc\xb2\x9a\x4e\x1a\x60\x55\xee\x69\xc0\x67\x7b\xc6\xd3\x7a\x59\xef\x10\x39\x91\xec\xdb\x3f\x5c\xc2\xbf\xd6\xc5\x25\xc8\xaf\xb7\xcb\x31\x39\x2a\x23\x46\x5d\xd5\xc2\xfa\xd1\xbd\x2a\xa8\x84\x61\x3b\xae\x3f\x3e\xa6\x8c\xb4\x54\x3b\xbe\xd5\x3c\xba\xce\x9b\x37\x63\x76\x77\x74\x8b\xf2\xb5\x7d\x63\x95\x84\x01\x5c\xd7\x2a\x62\x89\xd7\xeb\xa8\xcd\x32\x7c\x94\x6d\xe2\x54\x41\xf5\x32\x9c\xde\x97\xee\xcf\x9d\x86\x98\xea\x3f\xb5\x58\xb1\xde\x43\x80\x55\xfc\x44\xbe\x59\x98\x47\x34\xc3\x19\xc7\xd2\x84\x5d\x11\x15\x7b\xce\xf4\x51\xef\x75\x05\x3b\xc6\xc7\x8e\xc3\x43\xe1\x47\x0f\x5d\x0c\xe4\x18\xa3\x7d\x0e\x68\x66\x4b\xd1\x83\x66\x18\x71\x59\x3f\x81\xd6\xfe\x77\x61\x7e\xec\x13\xa3\xc2\xef\x4f\x66\xc3\x16\x79\x60\x60\x9d\x59\xe8\x09\x57\x0d\x54\x40\x28\x41\x54\x04\xf7\xf4\x67\x7f\xbe\x98\x47\xfa\x1b\x03\xcf\x07\x8f\x21\x3d\xf2\x04\xf7\x5d\xa9\xd5\x52\x51\xb9\xcd\x35\x43\xe2\xd2\xe4\x87\xda\x74\x46\xa8\xd6\x44\x95\xf2\xe7\x3a\x12\x42\x8b\x01\x08\x52\xc5\x36\x6e\x9b\x7c\xb4\x8e\xe1\xd7\x89\xc7\xb1\xe7\xf3\x85\x94\x78\x23\x60\x0a\x90\x3e\xfc\xbb\x2d\xa3\xb4\x4a\xd4\xf3\xe3\x0d\xed\xd7\x8e\xcb\x51\x17\xa8\x00\x46\x1f\xbd\x64\xdd\x98\xe6\xca\x3e\xd6\x7a\xca\x3d\x22\x5c\xa9\x17\x29\x52\x22\xd9\x73\xaf\xf0\x98\xd6\x39\x6f\x5e\x07\x4c\xaa\xff\x6f\x91\x6e\xf7\xec\x11\x2f\xde\xc0\x67\xfe\xfa\x4d\xad\x77\x60\xc4\x21\x2e\xb2\x13\x68\xd5\xf5\x8a\x0a\x73\x54\xa1\x50\x8f\xfb\xf7\x7c\x75\x9f\x3c\x5d\x65\x2e\x06\x92\xbb\x79\xa5\x04\x6b\x72\x2e\xb6\xba\x4c\xce\xde\xbd\x77\xac\x16\xef\x6a\x38\xf9\xa0\xfe\xec\x13\xfb\xf9\x7c\x8a\x06\x7e\x81\x96\x0a\x3e\x67\xed\x67\xbf\xbf\x46\xe5\x84\xc5\x2f\xd5\x70\xdd\x19\x98\x94\x12\x80\xc6\x81\x9b\x24\xa0\x11\x46\xb3\xbe\x7a\x83\x26\x77\x68\x64\x1c\x41\x62\x13\xe4\x63\xbb\xab\x45\xe5\x19\x0a\x59\xec\xcc\x8d\x4f\x09\x92\x21\x62\x08\x2a\x44\x6e\xd4\x75\x44\x56\xa7\x1e\x25\xac\xd0\x13\xb6\xbd\xcb\x45\x5e\x16\x32\xe4\x1a\x0a\xf4\xb1\x3f\xbb\xf7\xa0\x36\x5b\x47\x55\x62\xc6\xab\xbb\x70\xc3\x20\x4d\xb3\x0c\xdc\x50\x63\x30\xd2\x93\x0a\x74\xd4\xc3\x06\xc3\xb1\xe5\x82\xc5\xc7\x5b\x05\xc3\xc6\x88\x01\x8f\x01\x9b\xb1\xcb\xc7\xf7\x35\xdf\x40\x48\x2f\xfc\xb1\x3f\x7f\x46\xb8\x99\x52\x17\xd9\xea\x33\x1a\x5a\x4d\xdf\xd7\x06\x46\x7c\x3d\xd6\x13\x5e\xb7\x47\x33\x4e\xb2\x2e\x56\x11\xe4\xb6\x33\xc5\xf6\x8b\xfa\xa4\x04\x4d\x44\xb8\x7e\x41\x4a\x58\x35\x60\xdc\xba\x2e\x3c\xdc\xa5\x88\xb3\xc2\xea\x23\xfa\xac\xdf\x2f\x57\xa8\x65\xa8\xc4\x51\x52\x99\xff\xda\xa2\xe2\x2d\x63\xd7\x34\x88\xa6\x1d\xab\x94\xda\x0a\x5b\xa8\x46\x60\x56\x9c\xfd\x74\x9f\x50\x15\x40\x2c\xf6\xe0\xbc\x7a\xbb\x0e\x4a\x29\x07\xc8\x93\xe0\x67\xcf\x1d\xae\x7e\x0a\x29\xc3\x1d\xfb\xd7\x13\xda\xee\x70\x1d\x00\x83\x90\x90\xbd\x4e\x75\x50\x1f\x79\x5b\x07\xd1\x1b\x94\xc5\xdb\xc1\x8f\xef\x53\xf0\x16\x08\xac\xdc\xe4\xed\xa7\x5c\xb9\xae\xb0\xa4\x61\x5c\x44\x5d\x77\x9f\xe6\x22\xd6\x39\x6f\xee\xdc\x76\x41\x35\x1e\x3c\xb9\x49\xdb\x48\xc8\xc6\xc1\x2c\xe2\x4b\x07\x46\x2b\x3d\xb7\x43\x4a\xc4\x48\xcc\x51\x33\x7d\x9a\x48\x9d\x44\x92\x89\xe3\x72\x26\xd4\xd7\x42\x81\x2b\x35\x11\x73\xbf\xd0\xd6\xf9\x33\xc1\xda\x20\x7e\xaf\xef\x7c\x74\xa4\x08\x53\x3e\x56\xc3\x67\xf8\xe0\x92\xf4\x90\xd5\xa1\xcc\xc4\x86\x85\x88\x5a\x03\x65\xfe\x55\x58\x50\xf9\xb1\x87\x47\x7f\xee\xcd\x25\xe9\x67\xe1\xf9\x88\xd5\x29\x35\x2f\x2a\x57\x31\xe5\x94\x18\x9a\x04\x45\xac\x92\x40\x1e\x79\x60\x94\x52\x44\x18\x18\xca\x2b\xae\x07\x9a\xfb\xc7\xc7\xb4\xee\x02\x31\xdf\xc5\x2c\x09\x8a\xdf\x7c\x46\x25\xab\x78\x55\x62\xc4\xc6\x31\xb3\xd6\xca\x1c\x0e\x6d\x32\xb0\xc7\xb8\x79\x6c\x4f\x7f\xee\x97\x8f\x4f\xd7\x42\x20\x27\xe7\x47\x25\xed\xc5\xf6\xc1\x4f\xed\x57\xfc\x9d\xd0\xba\x54\x6f\x9c\xfb\xe0\xc3\x82\xa6\x84\x21\x5b\xf4\xe7\xef\x55\xb4\xfb\x01\x99\xc0\x79\xc6\x07\xdf\x53\x2c\xe3\x38\x4f\x34\xfc\xfd\x1b\xaa\xef\x9f\xea\xcb\x36\x5b\x23\x53\x50\xea\x88\x7c\xe3\x17\x95\x09\x3b\x8d\x99\xd6\xd9\x47\x8f\x28\x28\x74\xea\xf9\x75\xae\xac\x32\x6f\x8d\x2e\xf2\x10\xb8\x3e\xd0\x8f\x00\x2c\xf1\xad\x61\xba\x65\x1d\x8e\x79\x26\xb9\x7b\x8e\x4b\xa9\xb3\x5a\x13\x4b\x38\xff\xc5\x17\xd2\x97\x88\x98\x13\xa7\xb3\x01\x1a\x01\xd1\xc4\xdc\x0c\x3d\x4e\x99\x2b\x56\xab\x76\x74\x9c\x5f\x0f\x1a\x37\x99\x55\x6d\x32\x94\xf7\x06\x6e\x14\x9a\xa6\xee\xe1\x15\x5a\x57\xd7\x8c\x2e\x70\xea\xc8\x7f\x66\xaa\xb0\x95\xa5\x35\x2e\xd3\xcb\x06\x29\xe4\x45\xd0\xfe\xa5\xc4\x15\x8a\xd1\x03\xf2\x4d\x2d\xaa\xc9\x15\x3e\x45\x19\xfb\xae\x1f\xab\xce\x22\xd7\x2c\x21\x3e\x61\x0f\x4d\x7f\x98\x38\x93\xd1\x89\x17\x94\xe4\xe7\x4f\xcb\x95\x0e\x76\xcd\x20\x8e\x65\xeb\xce\x09\xa5\x80\x94\xbb\xd3\x89\x11\xca\xc9\xb6\x89\x67\x71\xa0\xff\x83\x07\xc4\xf6\x16\x5c\x57\x65\x97\xf1\xb9\x47\xf4\x45\xb8\x07\x22\x0a\xb1\xa2\x6e\xf6\xd9\xf7\x04\x51\xa6\xd2\xf0\x0c\x86\x84\x4c\xcd\xb2\x05\xf2\x58\x39\xc8\xe3\xed\xda\xff\xcd\xbf\x32\xc5\x46\xa5\x76\xa5\xa9\x59\x9a\xf5\x44\xfa\xbd\xaf\x60\xa7\xea\x62\x06\xcb\x30\xf9\xde\xef\x7e\x74\x8c\xa2\xcc\xe3\x60\x00\x24\x07\xb1\x83\xcb\xa5\x47\x46\x6b\xa1\xb0\xbb\xc3\x13\xbc\x88\xec\xfd\x67\x64\xe9\x28\xcb\xc4\x15\x7a\x47\x00\x0b\xab\x58\x56\x33\x33\x7a\x98\x4c\xfc\x77\x07\x84\x9b\x6e\xf6\xe7\x3e\xb5\xa0\x4d\x0d\x13\x60\xf1\x27\xb6\x8e\x2d\x47\x35\xb6\x76\x00\xbe\x72\x1c\x8e\xfc\x8f\x9a\xc8\x5a\x95\xd1\xa2\x8d\x1d\xbe\x1c\xc8\xbe\xfb\x86\x62\xba\x22\x28\xad\xdc\x6c\xe6\xb8\x56\xd7\x20\x9f\x06\xc2\x87\xf1\xcb\x4b\x14\x49\x5e\xc2\xaa\x36\xe2\xd0\xa7\x1c\x7d\x5a\x35\x35\x32\x71\x54\x41\xf5\xf4\xe7\x1c\x53\xa9\x9c\x68\x8d\xe0\xa8\x05\x98\x30\x5f\x21\x03\x20\xc6\x02\x9b\x47\xae\xec\xa7\x34\x25\x97\x0a\x31\xf9\xb6\xfb\x9f\x77\x6a\x30\x6e\xcf\x0b\x40\x58\x30\xfc\xce\x12\x45\xc0\xc0\x40\xac\xc6\x2f\xa7\xab\x45\x75\x21\x0a\x4c\x21\xb7\xf2\xd5\xb3\xca\x5a\x12\x55\xa3\x98\x07\x95\x6f\xe7\x9b\xba\xe5\xdf\x3a\xc4\xe2\xcc\xf3\x17\x6b\xb5\x05\x8d\xed\x63\xe6\x72\xa5\x4c\xae\xd7\xf0\x5e\xaf\x8e\x63\x61\xbd\x41\xac\x3b\x92\xfd\xe0\x33\xc9\x6a\xcb\xc7\xbd\xca\xf1\x9a\xdb\xd1\xaa\x34\x5b\x8e\x43\x4d\x08\x04\xe1\x6f\x36\xa6\xab\x9c\x22\x66\x7e\xf4\x7e\x6a\xc2\x02\x3b\x26\xc9\x49\x2a\x32\x6b\xc8\xf5\x51\xf9\x22\xf6\x7c\x03\x12\xd7\xaa\x29\x6a\x29\x38\x79\xa0\x52\xde\xd8\x18\x57\xa0\x52\xff\xfa\x73\xfc\x35\x2b\x05\xb6\x5d\x28\xda\xbc\xfe\xcd\x3c\xf9\x46\xba\xbf\xeb\xec\x14\x33\xef\x2e\x45\x16\xc1\x0a\xdc\x32\x83\xe9\xc0\xd7\x9f\xd7\x14\xd5\x60\x03\xcb\x37\x2f\x3f\x95\xe3\x92\x22\x81\x7b\x3f\xf7\xf9\x56\x39\xf8\x51\xf0\x46\x5f\x7e\xa4\x55\x8d\x6b\x55\x1b\x35\xf8\x0a\xe2\x9a\xcd\x49\x68\xae\xa3\xe6\xa1\xda\x73\xa1\x52\x3d\x43\x0b\x0b\xa1\xf0\x92\x13\x9c\x5b\x7c\x0b\x43\xbd\x24\xa5\x13\x92\x19\xfc\x8c\xa2\x2c\x68\x04\x36\x9c\x0b\xe0\xe7\x3e\x92\x7c\x92\xdd\x2c\xb6\x93\x73\x5e\x69\x53\xea\x46\x52\xb6\x7c\x2c\x6a\xf5\xdc\x47\x96\x8f\x49\xbe\xbd\x5e\x9f\x86\xa3\xce\x0d\x57\xda\x4a\x5a\xe1\x67\x73\xbf\xe6\x3a\xef\x20\x56\x26\xb1\xeb\x7c\x66\xc1\xfc\xe1\xe2\x4e\x44\x35\xb9\xa8\x9a\x72\x2b\x8a\xe3\xb5\x22\xa1\xe1\xd3\x94\x0a\x57\x66\x8c\x06\x41\xac\x23\xe1\x44\x9b\x39\x3e\x3b\xdd\x93\x16\x1b\x15\x5a\x4b\x59\xa8\x84\x97\xcd\x6d\x53\xa9\x6f\x35\x6a\xc4\xf2\x54\xd9\x0d\xcf\xc8\xb9\x17\x3c\xc8\xfc\xc4\x45\x71\x22\x60\xa6\x67\x91\x2a\xb7\xeb\xda\xa6\x18\x91\x34\x0c\x3b\xa6\x0d\xf5\x1e\x10\xcb\x2d\x81\xbd\x81\x1f\xb6\xec\x55\x54\x01\x54\x7f\xe1\xdc\x2b\xbb\x75\x1c\xa8\x53\xc5\xae\x87\x64\x2a\xcb\x77\x9f\x1d\xa1\xf4\x27\x7d\xd1\x5f\x86\xa0\xda\xa2\x4a\x6c\x53\xe1\x8c\xd3\x9f\xfd\xdd\x64\x79\x4c\xa2\x30\x26\x60\x82\x6d\x87\xc4\x9c\x35\x60\x1c\x41\x5f\xe8\x09\xef\x7a\x47\xf6\x99\x14\xf9\x56\xd4\x88\x0c\xd0\x75\x59\x89\x58\xb9\x65\x7e\x33\xba\x4d\x9d\xb9\x33\x33\xf6\x18\xec\xcf\x77\xbd\xc4\x07\xe1\x9f\xa4\xa6\x57\xc5\xfc\x5c\xae\xeb\xe6\xf9\x5c\xc2\xff\x0f\x0e\xaf\x27\xe3\x17\x01\x6c\x0f\x3f\xf2\x98\x36\x2b\xa2\xb4\x22\xbd\x33\x36\x7f\x43\xc1\xa8\x20\xaf\x82\x61\xb4\xb8\x68\xa9\x22\xa3\x22\x30\x8f\xf1\xca\xf5\xef\x5f\xd3\x45\x49\x4c\x52\x23\x66\x80\x6c\x58\xa0\xe5\x6e\xd8\xab\x08\x75\x93\xb2\x0b\xc5\xba\x6b\x00\x3d\x35\x3b\x6f\xef\xe5\x7a\xdd\xc4\xc9\xab\x22\x60\xde\xf6\x9e\x26\xc1\x40\x5c\x04\x73\x60\x0e\x35\xc9\x1d\xda\xc5\xef\x71\x2d\xca\x13\x42\x0c\xf6\xad\x35\x9a\xa2\x34\xad\xbb\xed\xb1\x44\xda\x8d\xdd\x31\xc3\xc9\xa1\x06\x43\x06\x44\xf3\xf0\xd5\x0e\xb9\xb5\xf9\x74\x53\xdc\x9b\x34\xf4\xa2\x62\xb4\x90\xfa\x3e\xd2\x3d\x3c\x95\x50\x59\xf4\x94\x91\x32\xfa\x72\x0c\x93\x82\xbc\x82\xdc\x43\xff\xfb\x6a\xcd\xbf\x84\x11\x8f\xba\x02\xb8\xd9\xd3\x9f\xdd\xe8\xeb\xff\x9f\x3a\x55\x1f\xa4\x86\xa2\x8b\x7d\x6e\xb6\xac\x07\x90\x70\xfa\xc9\x7c\x79\x4d\xab\xd6\xf4\x40\x27\x15\x0e\x19\xaa\xe3\x5a\x5c\x59\x24\x7c\xdb\x1e\xaa\xf4\xa5\x10\x42\x5f\xe8\xd6\x44\xe6\x50\x19\x7b\xbe\xf4\x67\x0c\x3f\x7f\x44\x9b\x8e\x99\x0e\xf1\x13\x4f\xdb\xea\x62\x01\xd5\x22\xeb\x62\x37\xa7\xfc\xa0\xa7\x15\x53\x0d\xe3\xee\xe8\x47\x6b\x07\x8d\x97\x69\x9b\x20\xb7\xd9\xa2\x23\x7b\xa1\xa8\x07\x1b\xb1\x70\xff\xe7\x0d\xe9\xf7\xa5\x41\xe3\xc1\x7f\xe6\xd2\x81\x32\xce\xdb\x94\x56\x2d\x0a\xfc\xec\x70\xfb\x86\xf1\x5a\xc3\x17\xab\xf0\xc6\x74\xc4\xec\x8f\xee\x6a\x55\xc9\x8f\xa8\xc1\xf5\x98\xc2\x4d\xa7\x74\xb1\x04\x87\xc4\x74\xe8\xfe\xcc\x6d\xe3\x34\x50\xb6\x25\xa6\x6c\x57\x9e\x1f\x21\xaa\x72\x9f\xd7\xc9\x14\xf2\x59\xf6\x1b\x9b\x65\xa8\x10\xe4\xad\xe8\xc7\x37\xbd\xaa\xe1\x99\x09\x00\xc8\xf9\x3b\x30\xf0\x39\x0d\x26\x4d\xca\x88\x61\xdf\x8f\x35\x9e\x72\xfd\xaf\x2b\xa9\x93\xf0\xbf\x19\xde\x78\xb8\x4d\xbf\x34\x81\xa5\xc9\xec\xbc\x6f\xa4\x52\xea\x9a\xa8\x8c\x84\x7e\x64\xc6\x3e\x9e\x7e\xfa\x8c\x20\xb3\x91\x9a\xe1\x2f\xcf\xea\xe7\xc9\xc0\x9e\x2f\xca\x93\x45\x42\xe9\x8b\x06\xbe\x89\x04\xdf\x3d\x7f\xc7\x96\x74\x6e\x00\x0f\x09\x1f\x01\x37\xc5\x17\x18\xf9\xa3\xad\x5a\xd5\xc3\x59\x01\x02\x4f\x36\xce\x4a\x39\x36\x19\xd8\x0c\x18\x67\xb7\xff\x64\xd2\x65\x4a\x40\x8e\x9a\xd2\x70\xc8\x46\x6d\x41\x62\x25\x1d\xdf\xb8\x77\x78\xde\xbe\xe3\xe6\x25\x4b\x6e\xbe\xe1\xd6\xdb\x94\xaf\xf5\x8b\x76\x79\x4b\x7c\x46\x8a\xc8\x8e\xc3\xdb\xe3\x1a\x02\xb6\x86\x12\xb1\xfb\x5f\x0e\x6a\x6a\xfa\x92\x99\xfb\xb4\x37\x9b\xac\x54\xbc\x00\x99\xb1\x4a\x4e\xf6\xbe\xe7\x2e\xd7\x2e\x13\x33\x5c\xe3\xc0\x63\xe0\x12\xbd\xa2\x9a\xe5\x05\x8c\x70\x2d\x8f\xc7\xb7\xa7\x9d\xee\x18\xf2\xc4\x08\x71\xea\x49\xb9\x93\xe7\xf2\x7e\xff\x74\xad\x62\x11\x15\xc5\x82\xef\xd8\xba\xf3\x22\xa7\xec\x09\x7c\x62\xce\x17\xbc\x53\xcf\x8f\x87\x29\x61\x97\x26\xa8\x74\x77\x80\xb1\xeb\x49\xbe\x74\x38\x68\xa3\x8e\xa7\x83\xae\x25\x9c\xa9\xf0\xad\xbc\x2a\x62\xb1\x1a\xd5\x0b\x4a\xc1\xe2\xd5\x31\xe3\x02\x95\x3f\x58\xf0\x67\x8c\x20\xc4\xdb\x99\xdd\xa3\x8a\x8d\x42\x3a\x8b\x7e\xbc\x64\xaa\x4c\x4b\xb3\x3a\x67\xa9\xd3\x98\x5f\xbe\xaa\xce\x43\x4a\x41\x19\xc7\xa6\xb9\xe1\x0a\xb3\x35\x3d\x01\x8f\x37\x4c\x43\xb5\xa9\x79\xf7\xbc\xf6\xae\x59\x02\x02\xb8\xec\xa4\xe6\x13\x92\x64\xb2\xf8\xf0\xe3\x4b\x86\x29\x8b\x91\x80\xbb\x32\xdd\xeb\xf2\x5b\x1a\xc3\x13\x0a\x3d\xe1\xce\x67\xb4\x88\xc2\x48\xf4\x4d\x05\x09\x7e\xd4\x84\xf4\xcb\x6e\x61\x0f\xa6\x19\xb1\x67\x50\xe6\x03\x27\xe4\xcb\x50\x44\x46\xa5\xcc\x55\x90\x7b\xc2\x5b\xe5\xd6\x93\x38\xf0\xb7\xee\xd7\x44\x63\xe0\x79\x73\x12\x76\x54\x73\x87\x3f\x57\x98\xd4\x81\xed\x13\x07\xf9\x60\x7a\x91\xbf\xe1\xf5\xa1\x0a\x6c\x99\xab\x3e\x0f\xd2\xd5\xc0\xed\x52\xa1\x4a\x7c\xd1\x99\xe4\x6f\x1b\x2c\x63\x10\x46\x42\x68\x3b\xdb\xd5\xae\x4d\xda\x68\x91\xfa\xd2\xea\xf3\xde\xa7\xd3\x37\xd5\xa1\x34\x15\x6e\xc2\x79\x4d\x99\x10\xc7\x0b\x53\x78\x8b\x9e\x16\x5b\xeb\xbb\x83\x84\x00\xf8\x61\x96\x0e\x50\x3e\x76\xbd\xe4\xdf\xff\xcf\x06\xf9\x56\x95\x18\xc1\x26\x97\xe3\xcb\x4c\x9e\x34\x5c\xc1\x9b\x31\x0e\x2f\xcc\xfe\x4f\x97\x30\x02\x07\x91\xe4\xc4\x5b\xa1\x3f\xb3\x65\x5a\x7a\x4d\xcc\x99\xcc\x04\x33\x71\x65\x52\xc9\x68\xd1\x19\x79\x27\x19\x85\xa7\x92\xb9\x24\xd6\x4a\xa5\xf5\x42\x4f\xf8\xfb\xd1\xf2\x79\x76\x76\xce\x98\xdb\xd9\x3d\x63\x0e\x1f\xcf\x5c\x7b\x5e\x0d\x01\x51\x7c\xe0\xa2\xd8\xbb\x8f\x0a\xa7\x2f\x9b\x1a\x15\x24\x54\xe5\xde\x3a\x26\xef\x7f\x91\x35\x10\x17\x13\x3c\x32\x9e\x57\x3b\x10\x73\x41\x92\x2f\x3a\x81\xc7\x8e\x0f\x8f\x03\x5d\xb9\x8c\x99\xd0\x25\x71\xac\x11\xca\x4a\x13\x55\xe2\x61\x4d\x6b\x93\xdc\x17\xaa\x61\x3b\x06\x63\xd5\x5f\xe2\x72\x36\x66\x10\xbd\xf5\x3f\xde\xa1\xf1\x93\x31\xaa\xc5\x06\x04\xb9\x9f\x4c\x52\x80\x52\xd4\xa8\x70\x73\xc8\xad\x02\xcc\x45\x70\x99\xc6\x03\xcb\x9f\x3e\xa9\x33\xb9\xca\xd8\x0d\x12\x2b\xf0\x6f\x0b\x2b\x64\x37\x46\xa0\xc0\x2f\x5d\x35\xf8\x32\x91\x07\x12\xed\xff\xdc\x1f\x9f\x4c\x3a\x8b\x79\x73\xba\x0a\x3d\xe1\xd7\xef\x92\x20\x3c\x18\x10\x3e\x74\x61\x94\xa2\xd3\x02\xd5\x67\x32\x48\x9e\xb3\x4c\x3f\x9e\x6e\x99\xda\x80\x0a\xe4\x91\xe4\x9b\xc3\xd2\xc7\x93\xaf\x17\x80\x24\x51\x80\x62\x73\x83\xc6\x63\x74\xa8\x42\x06\x0d\x3f\xfb\xe2\x44\xad\xd6\xc2\x85\xde\xc0\x2d\xc3\xf7\x94\x61\xe9\xca\xeb\x04\xdd\x08\x00\xe2\x45\xca\xa1\xc0\xb9\x55\x43\x93\x30\x46\x91\xda\x83\xfe\xf0\x01\x3e\xe8\xb3\xb1\x5b\x06\xe2\x73\xf6\xf5\xf9\x12\xd3\xa3\xfa\x4d\xe7\xb6\x8c\x95\xed\x2a\x01\x82\x13\xe2\x7d\xb7\xf5\x10\x7f\xac\xb3\xa3\xa3\x18\x1e\x6d\xf2\x05\x13\x7a\x81\x82\x7d\x80\x97\xe9\x03\xf5\x12\x65\x4e\x5c\x5b\x65\x7e\x3f\x59\x9e\x2c\x64\xdb\x05\x17\xd7\xa1\x47\x3b\xc6\x64\x99\x8c\xfb\xb0\x01\x73\xa3\x58\x60\x24\x1c\x77\x53\x8c\x8b\xc7\x08\x26\x0a\xf9\x8d\x1b\x75\x05\xa2\x18\xbb\x16\x0b\xee\x7d\xeb\x94\x02\xff\xc4\x06\x75\xb0\x0a\x20\x18\xd8\xaa\x7d\x0b\x53\xc8\xea\x2c\xd5\x3a\x42\x0b\xe9\x03\x92\x8f\x2e\x96\x9d\x18\x61\xdc\xe8\x5e\x2c\x58\x1e\x55\xc6\xbb\x6e\x59\x87\x9f\xad\x7d\x59\x11\x4c\x8e\xed\xe8\x7a\xc2\x23\x1a\x20\xc0\xa0\x8e\x83\x5c\xb8\x9e\xf0\x95\x27\x79\x50\xbb\xc1\xf5\x2d\x86\xfa\x60\x84\xfc\xb0\x56\x97\x71\xdb\x04\xf1\xc5\x6f\x5b\xd6\x9f\xbf\xf4\x49\xcd\x58\xc1\x23\x17\x51\x67\x3f\xbb\x4f\xd7\xe2\x26\x20\x42\x1f\xb7\x5b\x7f\xda\x74\xa5\x76\x27\x82\x44\xd0\x30\x3e\x5e\xb8\x4f\x61\x58\x13\x3b\x88\xf9\x15\x4f\xaf\x52\xdc\xb4\xa3\xef\x38\x5a\xdb\x4c\x61\xe6\xf9\x75\x70\xe5\xe1\x70\x97\x71\x93\x95\x3e\xc6\xb3\xa3\x48\x1c\x3e\xb5\x4f\xce\xad\x89\x0d\xea\x26\xd9\xdd\xdf\x48\x12\x5b\x50\xad\x16\x7a\xc2\x17\xdb\xb4\x3d\x32\x84\x37\xbe\xf9\x0f\xdf\x93\xa6\xde\xc0\xad\x0e\xbb\x9e\xd3\xa1\x96\xa5\xc0\x43\x36\x6f\x26\xf6\xbd\x90\xfc\xeb\xae\x8e\xe8\x9d\xcd\x2d\x9e\x90\x3e\x0c\x89\x5b\xd8\xf4\x6b\xe3\x92\x70\xee\x86\xd1\x4a\xa4\xf4\x7c\xd5\x61\xb2\xf3\x3a\x59\x77\x98\xc4\x43\xcc\x01\x7b\x49\xc0\x11\x8f\xd8\x25\xf4\x7b\xb1\x4d\x30\x2f\x7c\x46\x9c\x1f\xad\x17\xc7\x89\xc3\x46\xee\xce\xa5\xe9\x7a\xc4\x22\x4e\xe2\x15\xfd\xe5\x7d\xca\x34\xd4\x22\x2e\xd4\xc3\x39\x6f\xae\xb2\x76\x07\x51\x61\x40\x6a\x9d\xd1\x7d\xb4\xa2\x37\x43\x2c\x7f\xb6\xbd\x27\x09\x6e\xf1\x18\xed\x19\x45\x65\xc0\x56\x65\xe0\xb2\x77\x29\xfa\xdf\x16\x0a\xdc\xd8\x68\x72\xcd\xc0\x49\x69\xd2\xdb\x74\x59\x8b\xa5\x10\x90\x2d\xaf\x37\x91\x74\xa3\xf6\x2f\x56\x85\x79\x55\xb1\x3c\x10\x82\x8c\x29\xec\x5a\xfb\x1e\x19\xc9\x02\x55\xd7\x78\xe4\x36\x81\x2d\xf2\x7d\x46\x62\xc1\xc5\xf7\xb5\x55\x00\x22\xcc\xf3\x19\xa9\x24\x12\xaf\xdb\xf7\x29\x5a\x5f\x42\x4f\x5c\x79\xeb\xf3\x8a\x03\x1a\x47\x6a\xc1\xfd\x59\x7f\xae\x45\x1d\xfd\x12\x1f\xdc\x78\xb2\xdf\x5f\x21\x3c\x68\x03\x3e\xff\x99\x22\x5f\x88\x06\xe0\x68\xbf\x33\x29\xf9\x81\x0b\x47\x73\xc3\xde\x16\xa5\x48\x2d\x07\x76\xd4\x85\x85\xef\x8c\x9b\x98\xfc\x79\x61\x3f\x48\x9a\x02\x4b\x7f\x7e\xf8\x2e\xf9\xac\xa9\x61\x04\x55\x68\x30\xff\x71\xa5\x00\x48\x0a\x5b\x7a\x40\x91\x8d\x4d\x94\x52\x89\x27\x18\x6d\x9f\x31\xf9\xcf\x16\xda\x28\x71\xa2\x19\x2d\x68\x2e\xcb\x18\x76\x84\x81\xc7\xbe\xb9\xda\xc0\x5a\x0c\x7f\x92\xa6\x21\x33\xb3\x45\x75\x69\x25\x46\x45\xec\x6d\xf2\x57\x35\x3b\x7f\xf9\x58\x59\x18\xe5\xc2\xd9\xcd\x60\x0d\x8c\x62\xcb\xae\x65\x9f\x08\x17\x8d\x4e\xbf\x1c\x25\xca\x70\x5f\xdc\x7a\x9f\xd9\x71\x85\x56\x46\xc3\x64\x58\x09\x89\x37\x6e\x4e\x37\xe7\xa8\x4c\xb9\xc6\xe1\xe5\x17\xb4\x5a\x1e\xac\xb7\x2d\xe4\x38\x98\x71\xde\xc2\x43\xeb\x87\x24\x9d\x97\x1f\xc5\xe4\x43\x77\xa9\xf2\x87\xbc\x8e\xea\xcf\x5e\xd8\xaa\x1b\x74\x32\x8c\xfc\x18\x21\x99\x5b\xdf\xc6\xe7\x71\xa5\x78\xf8\xdd\xb3\x6f\xb4\xfe\x22\x22\x27\x76\x7e\x3b\xff\x48\xec\xc7\x49\x4b\xb0\xea\x0c\xf7\xee\xd4\x92\x04\x43\x46\x25\x3e\xba\xa5\x63\xd2\xe4\x36\xb0\x53\x2f\xc9\xba\xc3\xc9\x39\x63\x00\x94\xea\x5c\xa2\x48\x75\xf1\xe6\x5b\x54\xb2\xeb\xbb\x25\x6f\xb0\x11\x7d\xa6\xd9\xab\x6d\xcf\x30\x32\xa3\x3a\x33\x91\x24\x3c\xba\x4e\x01\x2d\xd9\x1c\x14\x9f\x21\xd3\x5a\x14\xe5\x00\x6c\x9b\x5c\x42\xe3\x97\xab\x9b\x8e\x00\x6f\xde\xe3\xd5\xd6\xb7\x5f\x4e\x37\xd7\x81\x17\xeb\x2b\xe7\x26\xdd\x25\x47\x72\xa8\x82\x1a\xd8\x0b\x94\xd7\xfd\x33\x2f\x6a\x30\x76\x2e\x31\x86\x48\x02\xa6\xfc\xc9\x60\x65\x64\x59\x41\x15\xa2\x74\xfb\x6f\x2a\xbb\x9b\x2a\x31\xfc\x80\x41\x5d\xfc\xc0\xff\x47\xd9\xbf\xc7\x59\x51\x9c\xf9\xe3\x38\xe7\x12\x24\x8a\x80\xdc\x45\x44\x44\x02\xa8\x9c\x71\x06\x86\x6b\x0c\x01\x44\x44\x82\x1c\x02\x88\x84\x10\x42\x9d\xee\x3a\xa7\x6b\x4e\x77\xd7\xa1\xba\xfb\xcc\x1c\x62\xf0\x12\xa3\x48\x0c\x21\xae\x61\x0d\x21\xae\x31\x2c\x31\x86\xe5\xc3\x12\x83\x84\xb8\x84\x75\x0d\x21\x84\xb8\xac\x2f\x97\x35\x2e\x31\x84\x10\xd7\x1f\x12\x63\x90\x18\x74\x9d\xce\xef\xd5\xf5\x54\x77\x55\xd7\x99\xfd\xe3\xfb\x97\xbe\x66\x86\x73\xa9\xae\x7a\xea\xb9\xbc\x2f\x8b\xe4\xb4\xcf\x67\x24\x7a\x3a\x4d\x8d\xfa\x5f\x6e\xbd\x5c\x3c\x53\xd4\x09\xd1\xf5\x3a\x0d\x16\x5c\xc6\x25\x40\x31\x84\xfe\x93\x97\x25\x36\x32\xd1\x57\x7a\xfd\x24\xf4\x1f\x96\x11\x5c\xb1\xa9\x61\x29\x9f\x68\x46\x2f\x49\xed\x98\x34\xa3\x50\x0c\x17\xde\x2b\x2b\x92\xb6\x29\x62\x62\x9b\xf9\x02\xa8\x02\x45\x6f\x73\xd7\xbc\xe5\xe2\x98\x3c\xf4\x8c\x42\xdc\x42\x3e\x70\xed\x32\xbf\x69\x19\xa8\x36\x72\x6b\x84\xdf\xaf\xd3\x4e\x03\xc0\x66\x31\x37\x62\x4f\x27\x07\xef\x2b\x0f\xd1\xf3\xb9\x7c\x28\x57\x77\x5a\x92\xbe\xc6\xab\x54\x68\x59\x40\xde\x9d\x7d\x68\xaf\xbc\x2d\x4c\x9c\xf2\x7d\x3c\xbf\x40\xc3\x91\xda\xc4\x17\xf4\xe1\xec\xbb\x23\x94\x13\xe5\x4c\x8e\x51\xe1\xab\xf4\xeb\xa1\xe0\xf9\x34\x7e\xa8\xb9\x6a\xcb\xff\x75\xe0\xf8\x33\xff\xe7\x2d\x70\x84\x88\x49\x28\x98\xc3\xe5\xce\x0f\x97\x39\x66\x89\xba\x26\xae\x13\xd5\xa9\x6d\xc4\x48\x1d\x15\x6a\xe3\x3a\x0f\x92\xa2\xae\xbd\xe1\xb0\x26\x07\x4b\xba\x44\xdd\x11\xeb\xdb\x67\x5f\xd8\x9f\x4e\xbd\x2a\x0c\x63\xd7\xab\xa1\xf4\xf0\xe4\xa2\x12\x27\x1d\xea\xfa\x09\x23\x63\xe6\x63\xb2\x17\xea\x10\x4f\xc1\xd5\x26\xc2\xc1\xbf\x57\x0c\xb5\x1d\x62\x02\xfc\xb1\x3b\x3b\xe2\xb8\x54\x9d\xe4\xd6\x82\xd7\xe7\x13\x81\x23\xe2\xf2\xd1\xca\xd5\x7d\x55\x75\xa2\xaa\x28\xf5\xde\x3b\xa3\x25\x16\xb4\x86\x4d\x21\x88\xf8\x9f\xbd\x64\x3d\x3a\x31\xa5\x77\x3d\xfb\x04\xbc\x7a\x05\x11\x70\xfd\xcc\x7d\xf3\x89\x6b\x94\x47\xcf\xf5\x83\x9b\x76\xd5\x2b\x4a\xb3\xb1\x12\xa8\x8a\xc5\x57\x8e\x4d\x3f\xcc\x7a\xc1\xb3\x50\x2d\x76\x13\xce\x5f\x37\x41\xa6\xdc\x15\x52\x57\x32\xf9\xcc\x4b\x3b\x07\x28\xc0\x66\xe1\xdd\x75\x6e\xaf\x3e\x43\x9f\x38\x79\x6a\x2b\xd4\x9e\xf9\xf5\x9a\x08\x87\x49\x68\x17\x31\x13\x05\x84\x5f\xbc\xa1\xa9\x5e\xba\x75\x82\x25\x1d\xa4\xf2\xa4\xbe\x4b\x3c\x9f\x38\xd4\x6d\x4c\xbc\x71\xfc\x78\xde\x88\x5a\x28\x97\xb9\xc6\xb5\x55\x0a\xc5\xf0\xe7\xef\xa4\x35\x7d\xb8\xea\x87\xd3\x13\xaa\x27\x7b\xfa\x54\xfa\x4f\x6b\x94\x55\x1b\xe3\x3d\x60\xe5\xa4\x03\xd0\x3b\xe5\x74\xef\x81\x21\xc7\xc3\x8d\x9e\x8c\xd1\xb6\x96\xe2\xe7\xe5\xe0\x16\xae\xae\xf4\x77\x03\x14\x6d\x71\xa1\xf6\xcc\x37\x44\xcb\xc6\x74\x38\xad\x21\x9b\xd3\x0f\x48\xe2\x1b\xff\x80\x36\x97\xae\x04\x76\x99\x23\xfa\xc1\x71\xf8\x03\x19\xac\x85\x51\xa0\x4d\xc4\x90\x27\xfc\xf9\xb3\x3a\x70\xcf\x13\x60\xf2\xec\x8b\xe3\x94\x71\xa9\x4f\x6b\x35\x91\xb2\x64\xef\x1c\x2b\x77\x7c\x29\x48\x54\x9c\xc6\x3e\xaa\x09\xcc\xfa\x2c\xa8\x20\x37\x2d\x91\xfd\x4d\x0d\xe9\x9d\x58\x38\xc7\x03\xd0\xf9\x87\xb4\x19\x47\x07\x29\xd1\xc0\x27\x12\x34\x67\x2b\x1e\x9d\x86\x85\xeb\x3c\xb5\x7a\x69\x57\x3a\x14\x58\x81\x5b\x91\x22\x3a\x9c\xe8\x7e\x34\x36\x86\x37\xaa\xb1\x5a\x48\xae\x7a\x40\x11\xb1\x63\xd1\x3d\x05\x29\xf3\x8f\x3f\xd0\xe5\x9e\x0d\x6c\x42\x55\x72\xe4\xbc\x72\x66\x14\x43\xb4\x70\xdc\x3c\x15\xe7\xc4\xdd\x83\x20\x27\xcd\xd2\x13\x32\xdc\xb7\xb7\x72\x97\xb5\x42\x31\xbc\x3d\xab\x68\x34\x78\x9e\x70\x08\xcb\xfe\xfb\x2a\x6d\x04\x88\x51\x3d\x19\x01\xe6\xee\x7c\x56\xfa\x90\xe1\x28\x5f\xba\xe2\x90\xf2\x94\x10\x31\x5b\xc4\xd7\xfd\xe9\xce\x26\x4d\x65\x8e\x41\xc1\x26\xdc\x7f\x9f\x7b\x43\x76\x5f\x26\xf1\x96\xd6\xa6\xdd\xea\xb4\x0c\x99\xa0\x6d\xf8\xf1\xbc\xfc\xbb\xf6\xf6\x42\x31\xbc\x75\x73\x3f\x11\x53\xec\xba\x48\x54\xbe\xb8\x29\x35\xc2\x2f\x05\xcc\x83\x2f\xfe\x17\xcd\x9d\x95\x7f\xc0\x1b\xd7\x72\xfd\xed\x39\x27\x9b\xf4\x1f\xa8\x5d\x17\xa1\x2e\x5c\xfe\x52\xb3\xca\x78\xc0\x0d\x4a\x7a\x04\xaf\xbd\xbf\x4a\xd3\x9a\xb3\xf8\x24\x80\x7f\xba\xde\x2f\x49\x74\x8f\x4b\xb9\x10\x92\x52\x46\xac\x5f\x24\x2f\xf7\x69\x9c\x99\xf1\x0f\x27\x53\xaa\x3f\x4e\x00\x77\x6d\xe6\xc7\xe7\x94\x82\xa3\x24\x34\xe5\xbb\xb3\x1b\xc6\xaa\xcb\xe6\x50\xce\x67\xda\x54\x92\x41\x90\x3b\xe6\x73\x76\xd8\xe1\x74\x8f\x63\x72\xab\x10\x6d\xfb\xca\x1a\xd9\x88\x04\x67\xe8\xcc\xbc\xf6\x71\xae\x8a\x19\x09\xdc\x04\x45\xd9\x14\xc4\xa7\xea\x33\xde\x58\xd0\x2f\x7a\xf5\x70\xf0\x50\xed\x58\x72\xdb\x02\xab\x60\x23\x56\xc1\x31\x6d\x39\xfb\x8d\x27\x74\x99\x19\x24\xa7\x5c\xd9\x59\xba\xb5\x30\xb7\xd2\x05\x08\x01\xcf\x33\x32\x8b\xb4\xac\x3d\xa8\x61\x56\x27\x1e\x4d\x08\xf0\x7f\x7b\x52\x05\xe5\xd6\xb1\x21\x00\x06\x99\x1d\x4f\x5c\xa9\x14\x6c\xbe\x91\xf2\xe7\xcc\xbd\xfc\x8e\x46\x2c\x61\x26\x66\x52\xee\x3d\x47\x2f\x08\x46\x9b\x43\x2a\x2c\x76\xf3\xda\xb5\x32\xfd\x8f\xe2\x06\xbf\xb0\xae\xfe\xfb\x76\x68\x1d\x0b\x19\xf6\x32\x07\xa1\x47\x0f\xe8\xc6\xdd\x8a\x17\x11\xe6\x72\x4b\x71\x22\x30\x7f\xbb\x66\x05\xef\x02\x07\x4c\xb0\x50\xba\x73\x9f\xd6\xdc\xa3\x4d\x5c\xc6\xae\xc7\xf9\xdb\xa2\x28\xfa\x77\x4d\xb3\xdf\x33\x2c\x6c\x06\x36\x94\x18\xe1\xbb\xaf\x29\x60\x11\xe4\x11\x80\x21\x67\x37\x28\xd3\x43\x14\xd8\xe0\xc3\xf0\x05\x65\x94\xea\x10\xc3\xc2\xb6\x70\xae\xb9\x7d\x57\x3a\x9a\x4b\x38\x62\xa6\x75\x83\x76\x4d\x46\x0b\x52\x06\x16\x1c\x8f\xea\x83\x5a\xd2\x8b\xe6\x20\x37\xee\x3f\xf1\x4b\x66\xe1\x42\xa0\xc9\x2d\xc7\x36\x36\x38\x75\x3f\xbd\x0d\xcf\x3d\x98\xde\xdd\xb4\x93\x7b\xb4\x87\xc7\x77\xa6\x3f\x53\x5b\x1b\x67\x6d\x71\x38\xd6\xc1\xa4\x4c\x72\x78\x6d\x2f\xf3\x19\x6f\x92\x06\xe9\x04\xdb\xc8\x38\x99\xbc\x76\xb6\x40\xea\xf2\x1c\x93\xe7\x3b\xeb\x9f\x48\x5f\xd3\x9e\x45\x88\x8f\x7b\xba\xd1\x33\xae\x72\xd5\x0a\xb2\x24\xdf\x37\x8f\x2c\xb9\x42\x1c\x63\xe2\x24\x41\x2c\x37\x67\xf7\x95\xfa\xbd\x06\x1e\x79\x9c\x7b\x3f\x77\xb7\x36\xdb\x17\xba\xa3\xd9\x1f\x6e\x51\xf2\x20\x64\xf3\x09\x7e\xee\xf0\x51\xcd\xb7\x8b\x94\xfd\x78\x60\x9d\xc7\xe7\xb4\x47\x14\xb0\x2a\x6e\x80\x92\x10\xbf\xf9\xfe\xeb\xed\x26\x3d\x7a\xcc\x12\x85\xef\x96\x8b\x9a\x16\x91\xb0\x55\x05\x2e\x68\x22\x36\x3a\x5a\x73\x46\x31\x08\x33\x02\x07\x04\x57\x20\x9f\xc8\x4d\xd8\x29\xd8\x98\xa8\x0a\x7a\x8b\xb9\x9f\x2e\x1f\xaa\xf7\xa2\x63\x80\x50\xe5\x7c\x52\xf6\x2c\x29\x2e\x8b\x09\x4c\xbf\xd7\x2c\xbb\xf9\x70\x08\x80\x33\x9b\xe6\xc1\x2a\xb7\xcd\x68\x99\x54\xe0\x20\x56\x8e\x99\x79\xfa\xfa\xa6\x80\x4f\x7c\x1f\x43\x1a\xa8\x57\x7a\x9f\x3c\x34\x5a\x39\x17\xbe\x85\x3a\x51\x13\x78\x37\x7b\xec\x6d\xde\x9b\xe7\x06\xa5\x12\xeb\xf4\xdb\xbb\xf5\x7c\xd1\xb0\x5c\xee\x12\x26\x82\xdd\xc8\x79\x49\xcf\xd8\x44\x4d\xfb\x3c\x33\x7a\xad\x2a\x71\x0f\x63\x43\xe7\x42\x93\xa2\x68\x8d\xb3\x37\x61\x0e\x33\xf2\xc9\xa4\x31\xc6\xb8\x0a\x5c\xa2\xd5\xb6\x4d\x4b\x6d\x63\x3d\x09\x60\x03\x3d\x05\xf5\xe0\x12\xd4\x2c\x19\xf6\xce\xf4\x41\xca\xd0\xd5\x27\xb1\x3c\xcd\x63\x27\xb5\x69\x40\xb4\xee\x32\x5e\x66\xfe\xe3\x9d\x24\x7f\x40\x01\x4f\xb8\xee\x3a\x38\x46\x5b\x78\xc6\xb0\xe1\x5f\x2f\xca\x48\xb1\x6a\x0f\x69\x66\xea\x25\xe4\x56\x59\x50\xf3\x0d\xb1\xdb\xbf\x73\xaf\x56\x2f\x10\xca\x09\x34\xa2\x9d\xf4\x29\x25\x4b\x71\xa9\xcb\xdb\x28\x7c\xd3\xee\x19\xad\xa9\x45\xda\x54\x40\x81\x73\xd7\x6d\x03\x30\xff\x1d\xc4\x2e\x05\x4c\x51\x66\xc9\x1c\xdf\x26\x1b\xd1\x0d\x8c\x38\xa9\x7f\xc4\x70\x00\x75\x78\x01\x9f\xa5\x11\xb7\x02\x11\xf4\x2f\x4f\x35\x91\xf9\x31\xab\x8b\x9e\x7a\xf6\xe1\x8b\x0a\xce\x95\x31\xe4\xc6\x89\xe1\xc7\x35\x72\x0a\xc7\x48\x42\x02\xf8\x40\x4d\xcd\x8b\x19\x15\x49\x63\x78\xf3\xcb\x30\x0a\x9a\x17\xb8\x55\xc2\xaa\x71\xa7\x6b\x5e\xaf\x26\x83\xff\x44\x8a\x31\xfb\x47\x5f\x81\x9c\x90\x72\xdc\xb1\xcd\xef\x90\x53\x70\x5b\x8a\xd5\x84\x97\x9c\x4f\x44\x5a\x3a\x7b\x50\x92\xf8\xca\xdd\x62\xca\x86\x88\x6f\x09\x75\xc4\x15\x87\xd5\x36\xa6\x67\x04\x90\x99\xad\xe9\xa3\xa2\xd7\x80\xb0\x28\xba\x8f\xc7\xf6\x26\x9a\x85\xa8\x81\x94\xa8\x1c\x7e\xeb\x59\x1d\xba\xd8\x01\xa6\xd3\x1c\x6d\xf5\xd6\x7a\x31\x13\xb2\x6f\xf2\x0c\xfe\xde\x37\x6d\x91\x9a\x3b\x48\x11\x9b\xc9\xd0\x71\x7a\x23\x8b\x03\xbe\x7c\x4f\x30\xbc\x73\x77\x3e\x78\x85\x02\x91\x37\x2b\x00\x04\x3b\x90\x08\x65\xf0\xa1\x23\xdf\x40\x6f\x4e\x1a\xd3\x74\x31\x33\xc3\x42\x6e\x85\x63\x9c\x62\xc9\x9e\x71\x37\x0f\x56\xb0\x98\x84\xfb\xc9\xf2\xea\x6a\xf1\xc5\xe1\x0a\x16\x3b\xba\xd3\xa9\xcb\x5b\x55\xd1\x8b\xaf\xd8\xa3\x22\x77\xa3\x47\x0d\x23\xb8\xec\x07\x9a\x7f\x77\x27\x71\x4d\xda\x99\xc4\xd8\xfd\x67\xa5\x40\x24\xe6\xde\x9d\x3f\x5f\xae\xce\x8b\xa3\x3a\x94\xb3\x34\xf2\x33\x2e\x4e\xd0\xea\x16\x10\x60\xed\x51\x5d\x76\xd6\xee\x51\x71\x40\x00\x8f\xf3\x66\xc7\xd3\xb1\x9a\xb6\x85\x61\x05\x4c\x30\x7d\xf9\x20\x76\xcd\xa2\xa1\xfa\xbe\x36\x04\x50\xfc\x5b\x5d\xfd\xe3\x11\xc1\xdc\x78\xf3\xce\x39\xa0\x93\x1c\x0c\x45\x0c\xbd\x3b\xf3\x41\x49\xd1\xc7\x46\xe5\x32\x47\x24\xe6\xba\x14\xf2\x54\x9c\x67\xf0\x52\x28\xec\x38\x2e\x70\xc7\xd1\x15\xca\x04\x21\x22\xff\xd0\x4e\xcd\x5a\x09\xbb\x1d\x44\x1b\xf2\xdd\x7c\x4a\x19\x48\x31\x8c\xa2\x0d\xd1\x79\x41\xd5\x10\x77\x6a\x76\xd2\x3b\xcd\xce\xcb\x27\x27\x25\x68\x69\xba\x3f\x32\x63\xcb\xba\xac\x0c\x62\x7c\x28\x13\xe7\x95\x4f\x4f\x95\xe0\x25\x07\x18\x35\xf9\x3b\x8e\xc0\x01\x9f\xd3\xb2\x50\x11\xf2\xfa\xcb\x21\x95\x4c\xce\x2a\xd0\xe2\xcb\xfe\x6e\xa0\xac\x06\x79\x2e\x68\x72\x24\x5d\x31\x2c\xed\x8c\x55\x12\x3a\xa2\xdd\xc6\xe1\x29\xd3\xce\x25\x86\xc4\x34\xa8\x44\xf1\x2c\xb7\x63\x9f\xaa\xcb\x42\x3d\x0f\x18\xd9\x97\x1e\xd2\x54\x37\xa7\xb4\xf2\xbb\xe2\xd8\x01\xc9\x53\x06\x80\x56\xd3\x9d\xf9\x93\xc7\x34\x0e\x36\xae\x0b\x3a\x00\xe8\x76\x6e\x11\x13\x06\x0f\xfb\x22\x1f\x3a\x3b\x71\x88\xd2\xeb\x93\x5d\xec\x70\xe0\x31\xa5\x44\xb2\x31\x8b\xed\xf3\x3e\x63\xf5\x60\xa7\xea\xc9\x8e\x5d\x0e\xaf\x52\xbe\x15\x72\x2b\x9e\x0f\x06\xa2\x77\x2b\x03\x33\x87\x08\xb1\x5e\xf7\xe9\x94\x89\x85\x61\x23\x22\x86\x66\xcf\x4c\xd4\x70\x24\x8c\xd4\x6c\xa1\xea\x94\xb9\x67\xa8\xac\xa6\x84\x2a\xe4\xee\x01\x09\x86\x39\x88\x81\x46\xa7\x35\x8c\x17\x16\x7a\x27\xf0\xeb\x51\xbb\xf4\xea\xd4\x80\x82\x00\xde\x63\xff\x33\x29\xaf\x10\x87\x78\x29\x2d\xe3\xcf\xad\x80\xa5\xac\x73\xd1\xea\xa8\x20\xfc\x70\xbe\x9c\xe4\xd5\x79\xc2\x9a\xf9\xdb\x96\xab\xf4\x64\x1d\xa2\xa9\x20\x2a\x6f\x7c\x29\xc9\x1a\x4a\x8a\x40\x67\x77\x6e\xd3\x5a\x05\x4e\x42\x7d\x9f\x23\x39\x73\x64\x0b\xec\x2b\x93\x76\xba\xc2\x9e\x23\xff\xc5\x43\xba\x7c\xa6\x1d\xa5\x61\xc2\x95\xe4\xbe\x16\x11\x4f\xb1\xeb\x63\xd0\x4e\x0b\xef\x5d\xa4\xa8\x5e\x31\xc2\xad\x02\x72\xfe\xe6\xf4\xb0\x66\xca\x8c\xf8\x98\x7c\xf0\x6c\xfa\xe4\xc6\xf6\xbb\x16\xa9\xc5\x31\x22\xff\xe5\xbd\x72\xe8\x5b\xe0\x10\xa6\xb5\x8f\xea\x66\xca\x2c\x45\x91\xce\x7d\x62\x73\x7a\xf5\xab\x04\xd7\xa3\xcb\x57\x24\x97\x7f\x7c\x56\x7f\x38\x36\xa9\x24\x9b\x2c\x7b\x52\xa1\xca\xf2\x11\x70\x31\x5c\xf2\x92\xfe\x2f\x6a\x81\x04\xed\x8e\x3c\xae\x5d\xf6\x81\x17\x9b\xea\x7c\xeb\x19\xf0\x6f\xba\x6d\x39\x97\xb1\x4b\xc7\xe3\xbb\x15\x23\x29\x24\x45\xc8\x8a\xdd\xd9\x9f\x31\x65\x43\xfb\x08\x3c\x7d\xb3\x3f\x1f\x29\x45\x32\x6d\x54\x28\x86\xb7\x1d\x8e\x0b\x8e\x94\xf9\xd3\x21\xc5\xb1\xa0\x69\xb6\x98\xd9\xdf\xa5\xe1\xae\x28\xf3\xcb\xd4\x26\x54\x54\xa2\xfd\xfa\x29\xb9\xba\x8b\x3d\x03\xd5\x04\xda\x37\xf7\xfd\xbc\x8a\x70\x2d\x61\xd1\xb9\xbb\x35\x7f\x8d\xb6\x4d\x4c\xcc\xb0\x60\x26\x09\xec\xf9\x81\x99\x63\xf4\x2a\x08\xe3\xf8\x9a\x92\x34\xf5\xb1\x5b\x14\xd0\x4a\xb4\x0f\x63\xb6\xe2\xa4\x0d\x63\x7a\xaa\x8f\x0b\x94\x11\xee\xa2\x28\x3e\xfc\xe0\xc5\x3d\xc3\x07\x20\x7c\x3c\xfb\x92\x4c\xfb\x0d\x5b\xf4\x72\xf4\x2b\xb0\xfc\x58\xbf\xf8\x8e\xa9\xc0\xac\x6e\xec\x19\x25\x44\x53\xe6\x23\xf0\x2d\xbc\x30\x50\x23\x20\xd3\x40\x94\xa6\xe1\x53\xcf\x27\x8f\x80\xb2\x26\x1d\xca\xcc\x17\x7b\x0b\x01\x1b\xc3\x88\xe7\xce\x6f\xd6\x3e\xa6\xa5\x79\x1e\xc7\x72\x37\xdf\x3d\x9b\xb7\xc8\x26\x7e\x94\xa8\x98\xd8\x16\x03\xdd\xa1\x9a\x5b\x2f\x17\x9f\xb5\x50\x67\x35\x3e\x6e\x85\xbd\x69\xe1\x04\xcf\xb0\x18\xc5\x5c\x12\x97\xaa\x5e\x77\x0f\x6f\x1e\x24\x2f\x5f\x64\xc4\xad\xe4\xdc\xf8\xbe\x23\x95\x4b\xd4\x6f\xee\x25\x19\x1b\x35\x34\x02\x75\x03\x49\x9b\xaf\x3d\xaa\xa6\x43\x01\x8b\x99\xe1\xeb\x2e\xf6\xd0\x7d\x13\x05\xc7\x92\x17\xb4\x07\x6a\x51\x9a\x0c\x12\xf3\xf7\x4e\x90\xf9\x03\xa8\xd1\x16\x8a\xe1\x30\x33\xbd\xc1\x2d\xe2\xf9\x94\x91\x58\x09\x2f\xf7\xc0\x1b\x72\x17\x70\xbf\x17\xdc\xe4\x8c\xd4\x9d\x79\x7f\x93\x82\x6b\x72\x1b\x25\x0a\xfd\xcc\xdc\xad\x17\x34\x19\x3d\x8c\x4c\x00\xa7\x6c\x7b\x59\xb1\x11\xf7\xa9\x51\x55\x12\xd6\xc7\x26\x69\x99\x2f\x31\x45\xb6\xc0\x33\xa7\x81\x9a\xda\x00\x6d\x80\x7e\x16\x00\x77\x5a\x8f\x8a\xc4\x58\x5a\x99\x3f\x9a\xfe\x07\x6e\xc0\x49\xf5\x22\x1c\xbd\x31\x74\xa0\x28\x7c\x60\x9a\x14\xab\xba\xcf\x6d\xf2\xbc\x4e\xf4\x7e\xec\xb1\x1f\x85\x0d\xc9\x6b\xa1\x47\xeb\x50\x39\x2d\x0c\xea\xd8\x45\x0a\xbb\x21\x73\xd3\x7c\xa1\xe2\x89\x2c\xd8\xd7\xbc\x7b\x77\xd7\x46\xe5\xb9\x22\xc7\xc4\x9e\x07\x44\xbd\x8d\xbd\x34\x59\x5a\x5c\x11\x6e\x98\x7d\xf6\xc9\xc1\x18\x03\x39\x7a\x7d\x2f\xfd\xe8\xd5\xa1\x2a\x2f\x05\xdc\x36\x79\x16\xf8\xfe\xe2\x66\x3c\x54\x4b\x53\x74\x7d\x4b\x48\xe0\xf1\x12\x96\xbf\xe9\xd7\x00\x32\x52\x98\x63\x07\x0e\x71\x03\xbd\x36\x0f\xfb\xef\x1a\xd5\xac\xee\x7c\xdb\xb2\x25\x0a\xe6\x73\xd4\xd0\x44\x71\x8c\x72\xa0\x5b\xe6\xcf\x4b\xe1\xde\x9c\x0e\x4c\x1c\x0e\x66\xbb\x7f\x94\xcc\xd6\x91\x67\x19\x8c\x96\xf9\x95\x7c\x44\xd3\x06\x6e\x50\x16\x9d\xcd\x78\xd2\xf2\x42\x56\xeb\x61\x58\xb8\xce\xa8\x8d\xfd\x9e\xba\x50\xf9\xc6\x01\x4d\x21\x85\x7b\x0b\x02\xde\xe0\x37\x5b\x21\xd3\x9f\xcb\x51\x69\x06\xe1\x0f\x31\x9d\xce\xf5\xbd\x37\x69\x9e\xb5\xb5\xf9\x69\x5f\x59\xed\x56\x06\x30\x3a\x08\x96\xc7\x15\xd6\x96\x0b\x4a\x85\x45\x2d\xd7\xe5\xd5\xf2\x97\xd6\xc8\x89\x6c\x95\xd6\xa0\xb1\x28\xe3\x8a\x35\x52\xf1\x1e\x66\x90\x64\x64\xf6\x9d\x50\x87\xa7\x3e\xa9\x8b\xa7\x3c\x90\xc9\xcb\x46\xf0\x6e\xa3\x3f\xdf\xf6\xac\x5a\x79\x0a\xa3\x47\xc0\xf4\xfe\xa5\x26\x3b\x2f\xb8\xab\x59\x5c\x65\x5b\x92\x10\x61\x57\xf6\x03\xc2\x71\x0f\x28\x39\x8b\x8d\x1c\xde\x96\x9a\x36\x46\xfe\x70\xbc\x41\xb9\x2c\xed\x55\x77\x2b\x42\x76\x89\x5b\xc2\xbc\x6c\xb2\x90\x16\x49\xdb\xf6\x7d\x44\xf3\x1b\xa5\xe3\x2d\xc4\x70\x8a\x73\xb1\x62\xb4\x46\x85\xb1\x28\x34\x74\x1f\x3b\xa7\x99\x30\xd8\x30\x75\x8b\x55\xc9\x9e\xba\x52\x59\x1d\xd7\xc5\xbe\x02\x39\xc8\x8c\x1b\x2c\x37\x60\x5b\x5b\xeb\x8c\x96\x29\x53\x78\xf4\xba\x7c\x82\xde\xcd\xe0\x35\xab\xe8\x66\x7c\x77\xaa\xfe\x71\x5d\x4c\xec\x94\x34\xf0\x7f\xd4\x15\x1b\xea\x00\x84\x64\xc3\x67\x8f\x6b\xd5\x2c\x43\x6e\xc5\x8e\x81\x58\x99\x77\x77\x35\x59\xc6\x62\x66\xe0\x1a\xec\x26\x9e\x06\xae\x1c\xa0\xa0\xa2\x8c\x2a\x34\x64\x0f\xaa\xac\x1d\x0f\xb3\x78\x5c\xb4\x69\xba\x86\xe2\x23\x55\xec\xde\x98\xb2\x81\x3d\x34\x42\x17\x52\x8c\x67\xfe\xd7\x3d\xae\xc5\x0e\x62\x58\x88\x99\xda\x05\x38\x07\xec\x26\x0a\x8b\x30\xaa\x04\xcd\x64\xd9\x67\x07\xca\xcf\x5b\x16\x81\x20\x3b\x76\x9f\xf6\x35\xb9\x2c\x24\x91\xea\x8b\x2f\xb4\xe8\x57\x19\x71\x51\x52\xf3\xbf\xba\x4b\xbb\x04\x59\xe0\xf9\xa2\x35\xbb\x77\xaa\x62\xa7\x48\x3b\xc1\x98\x32\x77\xc9\x4a\x7d\xd2\x57\xc7\x76\x62\x9c\x38\x6f\xfb\x68\x25\xcb\x0f\x7c\xb2\xae\xf9\x8b\x64\xff\x6b\xa6\x26\xa1\x80\x8c\x2a\x98\xea\xe7\x0e\x2f\x55\xae\xb3\x1a\x32\xb0\x00\x87\x47\xc5\x88\x9d\xf4\x65\xec\xd4\xb4\xe5\xea\x9b\x93\x04\xb5\x75\x32\xd7\xd2\xfa\xd5\x31\x98\x95\xdc\x8a\x1c\xea\xaa\xf0\xbb\xe1\x33\xaf\x54\xe4\x22\xd6\x79\x94\x2a\x7a\x60\xd9\xbb\x80\x07\x56\x58\x49\x10\x15\x00\xb9\xf8\x57\x5f\x55\x0e\x26\x71\x69\xc0\x4f\x6b\x97\x10\xf2\x6c\x9b\xcc\x69\x97\xd3\x16\xcb\xf5\x1a\xdf\x89\x0b\x60\x41\x70\xe5\x08\xc5\xe4\x7c\xfa\x8c\xe8\x47\xa7\xf7\x0f\x56\xaa\xec\x1a\x31\x44\x07\x2d\xf3\xaf\xad\xa2\xb6\xa9\x61\x83\x94\x85\x91\x4f\x1f\xad\xf5\xeb\x20\xe2\x0a\xe7\x27\x80\x3c\x3d\xdc\x47\xa1\x93\xd7\xa8\xeb\xd1\xe8\x78\xfc\x68\x16\xdc\x10\xcb\x85\x17\x31\x47\x57\x2c\xd5\xd5\x2f\x91\x6b\x4a\x2e\xf9\x53\x37\x28\x7d\x45\xd7\x8d\x7e\x07\x19\xf8\x6d\xc7\x61\x3d\x17\x60\xb6\x9e\xaa\x73\xc8\xcf\xbe\x27\x6b\x89\xc0\xc3\xe5\xc0\x8e\x35\x16\xb6\x8f\x96\x8b\xb1\x1e\x9b\x14\x1a\x1c\x9b\x57\xeb\x9d\x19\x1b\x57\x00\xfb\xc2\x1b\xb2\x1f\x7f\x5d\x99\x56\x96\x19\x31\x38\x0e\x32\x37\x68\x51\xd2\x17\x71\x82\xe6\x0e\xe2\x17\xd7\x68\x02\xc7\x01\xa3\x35\x8c\x62\x15\xdf\x28\x5c\x4e\x3a\xd1\x5f\xc9\x21\xf9\x58\x23\x9b\xd9\x7a\x85\xb2\x19\x44\xc9\xbb\xb6\xde\x87\xff\x60\x72\xa1\x18\x4e\x78\x3c\xdd\xb6\x28\x35\x20\xcf\x1e\x37\x57\x6b\xff\xd6\x44\xfb\x37\x1c\xb5\x55\xf0\x9d\x02\x6e\x50\xc8\x4f\xe8\x82\x99\xb0\x78\xcb\xb0\x59\xa2\xaa\x01\xf2\xff\x68\x12\x8d\x52\x3d\x42\x64\x68\x4b\xe6\x0d\xd5\x32\xb4\x44\xb8\x77\xe9\xb9\xd1\x9d\x3d\x74\xcc\x5a\x52\xc8\xd8\xd7\x3a\xa0\x0c\x34\x18\xf5\xa2\x8a\xcb\xb6\x85\x77\x54\x14\x92\x3e\xf5\x60\x72\x2f\x55\xa9\xea\xa7\xf3\x6b\x88\x62\x85\xb9\xd4\x73\x89\x7a\x91\xe6\x6f\xab\xf5\x8b\x87\x26\x8b\xa9\x8b\x0b\xc5\xbe\x0a\x50\x93\xd1\xc0\x35\x44\x1f\xeb\xd2\xd7\x74\x78\x30\x87\xa9\x8b\xb8\xe2\xd9\xc9\x3b\xa3\xf5\x8a\xa8\x79\xce\x7c\x47\xb6\xaf\x3a\x31\x7f\x1c\x1f\xb9\x41\x9b\xc5\x5b\x54\xe8\xa6\x85\xdf\xd3\x7c\x8e\x9d\x80\x99\x98\xb5\x08\x79\xcb\xfd\x8b\xe4\x9b\x94\x02\xe5\x4d\xae\xfe\x50\x67\x1e\x70\xce\x7a\xac\x8b\x99\xfb\xb7\x83\xd7\xc0\xe3\xe2\x82\x10\x5e\x15\xba\xc9\xa9\x8c\xcd\x9a\xaa\x0d\x63\x88\x83\xa3\x68\xe7\xc6\x40\xa3\xd6\xd7\x75\x6c\x90\xe7\x33\x64\xc4\x33\x82\x79\x37\x28\x07\xd6\x0e\x1c\xae\xa4\x11\x7e\xaa\x4b\x7e\x7b\xd2\x81\x3a\x39\xa2\x63\x74\xfa\xde\x28\x53\x16\xc4\x78\x1f\x05\x46\x75\x41\x53\x40\x98\x04\x68\x89\xff\xbc\x77\x98\x52\xe9\x53\x55\x6c\x2b\xf7\x9d\x05\x8a\x64\x63\x60\xf6\x60\x75\xe1\xed\x51\x55\x52\x7c\xc2\xb0\x00\xd2\x6c\x1f\xac\x9c\x51\xe1\xf6\xc8\xdb\x07\x1d\xc0\xf0\x98\x33\x7f\x49\xa1\x18\x4e\x79\x44\x29\x18\x53\xdb\x28\x3b\x18\x40\xac\xd4\xf5\x78\xe7\x35\xfb\xd0\x62\x4d\xae\x28\xa8\x61\x46\x28\xeb\x51\x26\x73\xf5\xf9\xa4\x4b\x5d\x03\x2c\xdb\x1f\xdf\xd3\xec\x3f\x18\x31\x70\xdc\x8f\xda\xb5\x59\x8e\x8e\x4a\x51\x9d\x72\xf4\x29\xc8\xa5\xb1\x53\xe3\xfd\xf2\xb0\x5a\x93\x18\xea\x12\x6f\xc5\x7c\xca\x52\xd3\x0d\x4f\xb4\xaa\x1e\x78\x52\x45\x25\xaa\x07\x2d\x93\x93\xde\xbd\xeb\x03\x05\x0c\x98\x1f\xf2\xa6\xb6\x47\x31\xf2\xb8\x01\x24\xaf\x0c\x9c\x56\x85\xd1\xd8\xe0\xe3\x01\x7e\xc5\x6e\x7a\x69\xb8\xd2\x21\xe6\x3a\x87\x28\xb9\x23\x6e\x59\xad\x4f\xed\x4c\x24\x4c\xb3\x79\xa4\x5b\x72\x30\xf9\x2c\x16\x52\x4e\x57\xbe\x30\x5b\xf1\x57\x8c\x7d\xe6\x62\x5d\xe4\xaf\x8d\x96\x28\x79\x87\x4b\x0f\x62\xb0\xe7\x17\x93\x25\x63\x92\x86\xef\x03\x78\x0f\x87\x36\xbf\x32\x54\x79\xd2\xd4\xf5\x89\x1b\x40\x27\xd6\xd3\x06\x26\x86\x85\x3c\x9f\x78\xd2\x66\x79\xa3\x70\x5c\x98\x34\xad\x75\xe2\x8c\xb6\xc9\x13\x27\x4f\x99\xca\xbd\x22\xbb\xe4\x33\xe3\xb6\x21\x7d\xfa\x6a\x24\xb0\x06\x4b\x28\x7f\x99\x1f\xbc\x97\x8e\xfe\x55\xea\x59\xc4\xbb\x51\x69\x76\xef\xe9\x3d\x46\xcb\xcb\x18\x97\x80\x4f\xc9\x49\x74\xe7\x3f\xbb\x76\xa8\x02\xf6\x48\xb2\x45\x0e\x6a\xde\xac\x40\x94\x2d\xe4\xa2\xe8\x87\x3f\x9a\x34\x40\xe4\x8e\x7c\x98\xc6\xa5\x10\x0e\x75\xc8\x43\x53\xc3\x26\x8a\xa1\x59\x64\x80\x86\x2d\x47\xac\x50\x06\xe1\xf4\xd8\xea\xef\x03\x85\x68\x41\x4d\x04\x40\xa6\xdf\xd7\x62\xa7\x7d\x58\xd2\x1b\x0e\x8d\xef\xd4\x7b\xd5\x01\xef\x35\x4d\x6c\x4a\xb3\x4e\xbf\xa1\x51\xa0\x03\xcf\x4a\x3c\x68\x33\xef\x3e\x38\x40\x7c\x53\x03\xbb\x62\x2c\x9e\xfb\xf1\x86\x54\xf6\x1b\x25\x13\x40\x8b\xfe\xfd\x18\xa5\x86\xc2\xc2\xfd\xb2\xeb\xa5\xcb\x44\x0c\xe3\x64\xe0\xa3\x8f\xc8\xcb\xbb\x7d\xca\x24\x00\x8c\x75\xe7\x9e\x3c\x73\x85\x42\x79\x10\x59\x69\xc7\x05\x19\x9a\x70\x57\x0d\xb9\x1e\xf8\x11\x70\x05\x07\xc1\x70\xf5\xc0\x6c\x31\xda\x00\xcf\xbe\xd9\xac\xe0\x8e\x19\x76\xe5\x39\xdf\x54\x56\x74\x9e\x91\xd7\x24\xaa\x94\xdd\xbf\x51\xf3\x01\x42\x65\x8e\x06\x8a\xae\x92\x8d\x37\xab\x2d\x22\xd7\x47\x15\x31\x55\xdc\x78\x7e\x90\x72\x2c\x58\x83\xb3\xb4\x8a\xe1\xc3\xad\x83\xf4\x8c\x8b\x6f\xc5\xfb\xf3\x4d\x36\x2b\x76\x8c\xae\xff\xdc\xc2\xb1\xda\x9d\x18\xfd\xae\x07\xc5\xe0\x6e\xcd\xae\x01\x19\xeb\x02\x02\xc8\x4a\x21\x34\x78\xea\x6d\x0d\x04\x6f\x47\xe9\x20\x6c\x01\x1e\x03\x6a\x47\x75\x1d\x4d\x17\x0b\xc8\x4f\xa6\xfd\x4d\x68\xba\xdc\x19\x7d\xf1\x33\xef\x8d\x6c\xde\x96\x76\x10\x4f\xde\xc3\x63\x59\x99\x36\x71\xd5\x9d\x62\xd8\x67\x4c\xb3\x18\x16\x58\xdd\x8b\x37\xd8\xb4\x53\xf1\xb7\x82\x39\x62\xe3\xd8\xd5\xcd\x29\x2c\xe6\xba\x1b\xa2\x40\x1a\xac\x19\x3c\x7b\xc8\x35\x19\xd2\xa6\x69\xd7\xbd\x9a\xae\xaf\xda\x66\x4c\x99\x06\xd8\x8f\x79\x2f\x37\xab\x32\xc6\x1c\xf4\xa5\xf3\x92\xc9\x30\xad\xa5\x5c\x88\x73\xf6\xf4\xfe\xf1\x33\x2f\xdb\xc4\xf0\x0b\xc5\x70\xe9\xcc\xe4\x36\x10\x1e\xbe\xe3\xfb\x69\xc2\x93\x8c\xd4\xa5\x92\xc0\x67\x4e\x69\x7e\xa8\x8e\x83\xcd\xe8\x46\xb4\x13\xaa\xf9\x9f\xb2\x2a\x9a\x7e\x7d\x60\x73\xcb\xb3\xcd\xfb\xd2\x51\x13\xc7\x0e\x50\x19\x77\xb4\x2e\x1b\xec\x79\x70\x65\x84\x9d\xb6\x7c\x1e\x25\x1b\x77\x16\x8a\xe1\xef\x1f\x83\xef\x60\x93\x92\xd0\x25\xef\xce\x56\x2e\x4d\xee\x80\x3a\x51\x94\xcc\x32\x7f\x59\x32\x40\x91\xb3\xa8\x70\xfc\x55\x7e\xd5\x7e\x0d\xeb\x34\x63\x7a\x1b\x24\xba\x7b\x4f\x0d\x56\x3f\xa3\x41\x99\xc9\xc3\x41\x7e\xfd\x62\x25\x83\x71\x83\x52\x09\x5a\xf2\xdf\xf6\x75\xd1\x85\xa8\x58\x8f\x1b\xb1\x1b\x17\xf0\x5d\xc0\xc9\x9a\x35\x2e\x92\xa6\x6f\xfd\x8c\x52\x65\x39\x04\x39\xa4\x50\x0c\xd7\x6c\x80\xf4\xf9\x4e\xe6\x05\xb6\x7a\x9f\x5d\x3f\xf5\x1a\x05\x21\xc9\x88\xdd\x7c\xe8\xf3\x97\x8f\x4e\xc3\xab\x3a\x90\x8b\x7c\xd4\xe3\x98\x7a\xf6\x0d\x4a\xeb\xb5\x44\x59\x8c\x14\x5a\xbf\x4b\x91\x17\x00\xdd\x95\x62\x77\xfe\x73\x43\x67\x73\x68\x79\xd2\xb6\xbb\xb9\x1c\xb8\xbc\x65\x3d\x9a\xff\x7c\x34\xf2\x47\xb7\x76\x4d\x2f\x99\xb8\xd5\x6c\x9f\x95\x34\xf4\xd2\xa9\xcc\xe9\xfb\xf5\xbe\x08\x40\x62\x60\x4f\x3f\xf6\x9a\x92\x0d\x53\x9b\xdb\xc6\xbf\x9a\x97\xa8\xe8\x32\xb8\x10\x0b\x44\x64\xf4\x2f\xee\xd8\x25\x40\xae\xdc\x89\x8a\xd3\xb5\xbf\x64\x6a\xfc\x20\xca\xe2\x01\x52\x77\xc6\x5e\x10\x83\x62\xeb\x14\xba\x5f\x2d\xae\x90\x98\x4d\xfc\xd5\x79\x83\xed\xc6\x31\xba\x47\x10\x43\x9d\x62\xf6\x31\xfb\x29\x78\x3e\x4b\x29\x49\x39\xd9\x3f\xb2\x47\x11\xe9\xa1\x88\xa5\x46\x8d\x07\x66\xc9\x82\x0e\x37\x77\x09\x5d\xc5\xc2\x12\x55\x18\xc6\xe2\x16\xfd\xe3\x63\xa3\x9a\x12\x6f\x1f\x95\x6c\x39\xdb\xcf\xe5\xc6\x8d\xd7\xc2\x53\xca\x9d\x5e\x35\xb8\xcb\x4f\xd9\x28\x24\xf0\x8d\x44\xe6\x35\x95\xe7\xbf\x7c\x60\xb8\x52\xf4\x9b\xc4\xe3\xaa\x4e\x30\x95\xca\x8e\x3e\xd6\x14\xcf\x89\x61\x11\xa3\x0a\x84\x4a\x25\xad\x28\x6b\xc2\xf4\xf5\xa8\x4a\x11\x1f\xf7\xf0\x28\x99\x73\x54\x69\x49\xa5\x24\x3c\xdf\x4f\xbf\xf3\x12\x8b\x04\x31\x32\x3c\xc8\x92\x58\x35\x65\x12\x9f\x86\x0f\x9f\x38\x4a\xab\x89\x6c\x9f\x70\x75\xce\xd8\x5a\x3d\xf3\xeb\xfb\xd3\xc9\x90\x43\xaa\x16\x22\x36\x15\xa3\xca\xf8\x09\x9d\xe9\x25\xaf\x38\x3f\x60\x2e\x0d\x00\xb0\xf8\xd8\x39\x00\x54\x2e\xe3\xfa\xcf\xcd\xfd\xf3\xb7\x04\xc7\xda\xe7\xcc\x32\xae\x02\xd0\x72\x75\x7a\x7c\xd7\xd4\x53\xae\xce\xd6\xaf\x07\xdf\xc2\xdc\x68\x50\x5c\x9e\xf9\x4d\xaf\xe8\x65\x20\xb1\x85\x13\x48\xe6\xcb\x33\x63\x30\x6d\x2d\xfa\x77\x82\xa5\xf3\xcc\x7e\xc9\x64\xe1\x8a\xfd\x33\x4f\xa7\x6b\x32\x87\xba\xc4\xa7\x2c\x56\xf8\xbf\xe7\x9c\x2e\xf2\xe0\xf9\x09\x60\xe4\xc3\xa9\x0a\xc4\x56\x73\xee\x94\xe9\x36\x72\x14\xfa\x68\xf6\xa6\x03\xe9\xcb\x6a\x52\x6b\x2b\x80\x1e\x9e\xd9\xdf\x3f\xc9\xec\x3d\xcc\x09\xc9\xb9\xd5\x2b\x87\x28\xc1\x27\xda\xaf\x31\x24\xe4\x89\x73\x3a\x42\xd7\x8e\xae\x1f\x61\x31\xcc\x29\x4a\xbb\x15\x0f\xac\x26\x47\xbd\xcc\x94\x1b\x52\xf7\x4c\x3d\x4a\xf6\xa0\x6e\xba\x41\x91\x3f\xb4\x51\x60\x42\x0c\xdf\x79\xff\x58\x2d\xd3\x77\x50\x4f\xb4\x91\xec\x40\xdd\x77\x97\xd1\x0e\x6c\x80\x4d\x53\xb6\xf7\xa5\x12\x3c\xa8\x38\x66\x85\x9f\x69\xd1\x59\xea\x41\x0d\x8b\x41\x69\xfe\xee\xd9\x32\xd4\xba\x58\x0c\xc1\x5f\x1c\x0c\x1b\xaa\x96\xd8\x02\x9c\x7f\x20\xbd\x24\x9d\x84\xfb\x9b\x28\xc0\xee\x5b\x6e\x18\xa2\x16\xd8\x9e\x15\x4b\x1c\x64\xc2\x76\x85\x3c\x4f\x19\x67\x7a\x14\x8a\xe1\x97\x96\x37\xe5\x97\x40\x3b\x4b\xd2\xf3\xf1\x1b\xd3\x35\xf6\x3a\xd1\x68\xc8\x5c\x76\x20\xbd\xaf\x2c\x8c\x98\xf4\x66\xce\x6d\x38\xab\x78\xde\x46\x21\x82\xd6\x7c\x10\xde\xf9\xc8\xcd\x4d\x9a\x5c\xd1\xa6\x4b\xb8\x9e\xbd\x2c\x45\x6f\x86\x52\x4f\x81\x1a\x64\x2f\xdb\x02\x9d\x9d\x79\x20\x7f\x9f\x7e\x30\xbb\x17\x42\x66\xbf\x2c\xc6\x73\x46\x8b\xf6\xc9\xed\xf2\x36\x99\xdc\xda\x32\x39\xfa\xd9\x37\x35\xdb\x1a\x93\x20\x17\x41\x4a\x1a\x07\xa1\xcf\xcc\x55\xf4\xe9\x30\x8a\xb5\x07\xeb\xf7\xa6\xd3\x35\xa1\x1e\x30\x51\x85\xdb\x7c\x65\x65\xcc\x11\x5e\x17\x10\x06\xbc\xe1\xcf\x9c\x55\x7a\x1c\xb4\x93\x27\x87\x7f\x77\x4e\x61\xff\xa3\xf5\xeb\x45\xc9\x94\xeb\xf5\xa4\x26\x0b\xe6\xfb\x88\xb3\x46\x79\x41\xd2\xf6\x9a\xbe\x91\x3c\xdf\x6e\x88\x14\xf4\x6f\x0a\xa7\x9c\x1a\x3e\x2d\x09\xb7\xc0\xaf\x1e\x51\x45\x7f\x2a\x42\x1b\x3b\x33\x65\x6e\xfa\xa8\x56\x62\xf8\x78\xee\xa6\xd9\x82\x7e\x43\x6d\x00\x1d\x45\x3f\x1c\xbe\x45\x57\xaf\xae\x30\x1c\x4f\x33\x6e\x3f\x7e\xb5\x52\x4a\x20\x4e\xc9\x4c\x5f\x6e\xeb\x66\xeb\x30\xc2\x3a\xb2\x83\xa4\x09\x1a\x1e\x99\xc0\xdf\xd3\xc6\x6e\xa1\xad\x55\x64\xf4\xb9\xdf\xbd\x3e\x5a\xa9\x2b\x69\xcd\xc6\xe3\x9b\x9d\x07\xc6\xbd\x9e\x1c\xba\x72\x59\x81\x9e\x66\x97\x8e\x56\xf4\x4f\x11\x33\x7d\x2e\x3e\x98\x6f\x3c\xd1\xb4\xeb\x45\x78\x88\x75\x36\x6e\x58\x33\x40\x29\x74\xb8\x28\x60\x78\x01\x48\xd0\x85\x5b\xac\xa8\xe8\x50\x43\xde\xc6\xc3\x7d\x93\xbf\xbe\x36\xfa\xe7\xfd\x5f\x48\x8f\x16\x2b\x0d\x17\x1b\x80\x5a\x36\x8c\xa6\x64\xed\x86\x45\x4d\xed\x56\x3e\x3a\xcf\x5c\xb6\x4a\x0d\x61\x51\xe2\xc3\x85\xa3\x8b\xe1\x6b\x5b\xb4\xd9\x46\xc0\x08\x0d\x84\x45\x4e\xf6\xe6\x31\x6a\xf6\xea\x94\x50\x9c\x60\xef\x1d\x9e\x7e\x02\x15\xec\x62\x26\x8c\x81\xf9\x61\xf9\xc6\x39\x1d\xf0\x5e\xb1\x62\xc4\x7a\x66\xdb\xdb\x72\x73\x45\x39\x98\xb0\x60\xcd\xec\x3e\x20\x9f\xbc\xe7\xa3\x72\xb9\xe9\x60\x3e\xf4\x9a\x46\xf7\x22\x98\x21\x16\x25\x0d\xb1\x2d\xc8\x73\xf9\x11\x7a\xf0\x75\x38\xfb\x09\x36\xd7\xe7\x1f\xd0\x40\xfd\x06\x76\x11\x23\x14\x4c\xe5\x4a\xae\x36\xbb\xf3\xc0\x92\xd4\x17\xba\xea\xb6\x62\x54\x60\x7b\x98\xeb\x83\x15\x8a\xe1\x89\x8b\xa2\xdc\x36\x78\x5b\x84\x03\xf6\x7a\xdf\x3c\x58\x04\x5d\x6c\x52\x87\xb8\xc2\x5b\x25\x0c\xdf\x1b\xa2\x72\xa6\x2c\xea\x62\x8f\xa7\x88\xb9\xf7\x8f\x2b\xa8\xa2\x58\xe0\x82\x1f\xc6\xdc\x2e\x61\x57\x8d\x3a\x1b\xcd\x39\x7f\xbe\x63\x5b\x62\x7d\xcd\x30\xf5\x1b\x35\xe8\x32\x8e\x59\x0d\x3f\x8e\x2a\x52\x05\xe1\x7c\xed\x2e\x65\xc6\xcd\x4a\xb1\x73\x75\xf6\x83\xa5\x8a\xbc\x3d\xea\x48\x1c\xad\x8b\x47\x47\xba\x29\x7a\x9b\xdf\x49\x5c\x35\xcb\xfa\xc1\x02\x9d\x33\xe7\x1a\x82\xe9\x91\xaf\xbf\x0a\x57\x0f\x8b\xa5\xa7\xcf\x6a\x8d\x4a\x09\xf7\x6f\xde\xce\xd9\xd6\xe7\x75\xf2\x4d\x9d\x72\xf2\x59\x7c\x35\xfc\xac\xb7\x2a\x8f\x84\xab\x36\x1f\x92\x84\x13\xce\x0e\x14\x1f\xd7\xf3\x89\x1f\xf8\x82\xcc\xb0\xf7\x35\x99\xfa\x5b\xc8\xb6\xb1\x0a\xf5\xc8\xfe\xd0\x56\x14\x4d\xb8\x00\xde\x1e\x57\xe3\x20\x95\x38\x84\xdc\x6c\x11\xa8\xa4\xe3\xfd\xe0\x6d\x3e\x85\x98\xa2\x58\x96\x19\x39\x41\x9e\x78\x8b\xf2\x87\x11\x5e\x50\xb0\xe3\xb4\x2c\x53\xfc\xa5\x2b\xa1\xff\x53\x22\x00\x40\x70\x37\xa4\xe3\x49\x35\x70\x53\x78\xfc\xee\xec\x79\x4d\xf7\xb2\x84\x6c\x3b\x46\xdc\xad\xe8\xa7\xe1\xf5\xa6\xc4\x29\x2b\xe9\xa3\x90\xeb\x19\x36\x63\x8f\x8b\x7b\x34\x0f\x7d\x8b\x32\x46\x63\xcd\xcb\xdc\x35\x13\x92\xb9\x39\x01\x6d\x9d\x65\x4b\xba\xf3\x46\x47\xb2\x50\x93\x5b\xa6\x17\x8a\xe1\xdf\x3e\xd0\xd1\x86\x81\x17\xc4\x36\x73\x99\xb1\x5b\xfb\x89\x2b\x73\x8a\xe8\x67\x65\xca\x9a\x11\x05\x07\xbf\xda\x0d\xa0\x05\x67\xd1\xe3\xe9\xf4\xc9\x26\xb6\x41\xa1\xec\x48\x07\xeb\xa3\x23\x53\xca\xaf\xa2\x2f\x36\x6c\x84\x4a\xe3\x63\x75\xec\xf3\x8a\x3e\x73\xcd\x59\x0d\x76\xa1\x2c\xdc\xd2\x1d\xaa\x0a\x96\xc5\x41\x03\xf7\xf7\x1b\xa4\x52\xc0\xb9\xcb\x5d\xb4\x28\x93\xcb\x8a\xd4\x7d\x03\x7a\x8a\x07\xcf\xa9\x3a\xe5\x0c\xb4\x96\xdf\x50\xa4\x71\x3d\x9f\x32\x87\x82\x40\x5e\xff\x99\xc9\x1d\x63\xdb\x4a\xf0\xcf\x8c\x80\xb9\x4a\xe1\x56\xa7\x84\x3c\xaf\x49\xf9\x38\x33\xb9\xb7\xde\xb9\x74\x7d\x46\xed\x1e\x6b\xf1\x5b\x85\x9c\x18\x3f\x11\xd1\xe9\xe7\x49\x47\xfe\x11\x55\x26\x88\x6b\x2e\xf3\x6d\x37\xfd\xe2\x55\x4a\x85\x6e\x10\x64\x13\x5f\xfd\x64\xdb\x76\x0e\x55\x50\xf4\xc8\x08\x12\x3d\xae\x5c\x4d\x61\xbf\x46\x91\x12\x39\xb1\x10\xe0\xc5\xa9\x9a\xbf\x12\x36\xa8\x1b\x4f\x5c\x7f\xb5\x7d\xa0\xf2\xcf\xfc\x06\x6f\x08\x87\xbf\x3c\x20\x83\x63\x85\x30\xbb\xcc\x08\x76\xf9\x35\xfa\xf5\x95\xba\xf7\x04\x32\x7c\x92\x34\xbf\xc8\xcd\x70\x8e\x16\x06\x3c\xc8\x66\x3e\x4c\x12\x7a\x13\x35\xd3\xdf\x7f\xf7\x8a\xae\x2d\x45\x0c\x54\xa1\x8a\xf1\x54\x6e\xdd\x26\x39\x40\x80\x0f\xae\x54\x76\xdf\xdf\xaa\xe8\x18\xa3\x0a\x5a\x1f\x5d\xe3\x7c\x21\xa7\x96\x75\x1d\x5f\x23\xe0\xf8\x62\x7e\x0a\x9d\x55\x1a\x53\xcb\xb3\x51\xd5\x12\x54\x69\xf9\xf2\x1f\xf6\x1b\xa0\x60\xac\x4c\x50\xed\x73\x77\x36\xb9\xe5\x9b\x36\xe4\x58\x99\xd5\xa5\xfe\x0a\xa6\xa4\xc1\x9f\xcb\x99\x43\x83\x92\xf2\x41\x9a\xbc\x85\x6b\x4e\x48\xc7\x40\x86\x21\x5d\x89\x3e\xbb\x7e\xd1\xfe\xe2\x69\xd8\x3f\x77\x50\x19\xea\xc3\xbf\x9c\x86\x1f\x96\x30\x3c\x18\x88\x21\x4b\xa5\xe1\xaf\x4f\xdc\xf8\xda\xf0\x77\x2a\x72\x85\x2d\x33\x38\x69\xe0\x58\x52\x6c\x4f\x9f\x31\xb5\x50\x0c\x3b\xf3\x1a\x29\x81\x36\xe2\xe1\xe3\x7b\x6b\x21\x45\xba\x73\x7d\x09\x57\xf9\x1d\x1c\x3f\x99\xed\x79\x29\xb7\x8e\x14\xf9\x91\xfc\xc3\x97\x36\x09\x9b\x38\x9c\x10\x24\xc8\x83\xb9\x5f\x67\xe1\x32\xaa\xba\xa4\xcc\xf3\xb0\x43\x33\xf5\xee\x51\x85\xb7\x88\x21\xbc\x97\x17\x5d\xa1\xe4\xfb\x71\x8e\x62\xb4\xc4\xf3\x69\xc6\x30\x02\x31\xac\xd5\x1b\x15\x59\x14\xaf\xe1\x38\xd8\x67\x24\x36\xaf\xc8\xdf\x75\x77\xb2\x3e\x35\x94\x0c\x99\x86\x66\x63\x4b\x46\x03\xdb\xb6\x20\x81\xe7\xb6\x9f\xd4\x51\x8a\xb6\x79\x23\xe6\x72\x63\x1f\x7d\x46\xa7\x23\x2a\xe6\x98\x99\xae\x05\x0a\xcf\xc5\xa0\x2e\x75\x84\x24\xfe\xc7\x8f\xa4\xeb\x0c\x54\xe7\xaa\x7d\xea\x98\x3b\xdc\x75\x41\xb3\xa0\x24\x15\x2b\x96\xbc\x11\x6d\xec\x76\x2d\x64\x47\xa9\xac\x61\xc5\xa5\xff\xa8\x8d\xa3\xf4\x4b\xc9\x27\x0e\x65\xf8\xc6\x96\x84\x29\xdc\x75\xb5\x82\xcb\xac\xb0\x66\xda\xde\xac\x37\x93\x43\x5b\x61\x4d\x55\x78\xee\x17\x8f\xa4\x73\xdb\xf6\x76\x21\x23\x71\x79\x49\xd7\x98\x98\x31\xa9\x30\x59\xd4\x31\x0b\x86\x8b\x89\x2a\xef\xbc\x5f\x32\xfa\x6a\xed\xa6\x2a\x71\xd9\x2f\xce\x18\xe2\xe5\xca\x81\x0b\xca\xb6\x6d\x9b\xcc\x41\x9b\x4b\x14\xde\x57\xc0\xea\xa4\x4e\xb9\xbd\xed\xaf\xce\xc8\xa7\x9e\xf2\xbb\xe1\x7b\xa2\x34\x50\x35\x79\x62\xc2\xdf\x37\xd3\xff\x29\x39\x98\xe3\xdd\xf2\xdc\x0b\x71\x07\xd1\xb0\x85\x6c\xf4\x8e\x37\xd3\x47\xdd\x64\x41\x3c\x4d\x58\x75\x2c\xbd\x3f\x4c\xda\x29\x04\x84\xb3\x9f\x9c\x35\x44\x3b\x4c\x66\x43\x48\xe9\xbd\x31\x2c\xd5\x27\x8f\x21\x81\x1c\x0e\xf8\x5e\xfa\xb2\xf5\x2c\xd4\x39\xb1\xa7\x5e\xc5\x17\x37\xca\x0d\x56\x62\xd4\xb0\x40\x9f\xa7\x3b\xf7\xd5\xc7\x35\x19\xbc\x44\xc7\x39\xde\x9b\x13\x87\xa6\xb7\x97\x89\x6c\xdc\x48\x4f\x0e\x73\x57\xed\x6a\x92\xe6\xe5\x96\xc1\xd8\x84\xe7\xf2\xa9\x59\x3d\xc9\xfa\x42\xf0\x5f\xaa\x61\xc7\xdb\xa6\x73\xa9\x05\xd0\x73\xbc\xf8\x8e\x32\x7f\xe2\xf8\x06\x61\x32\x2e\x62\xd9\x6d\xd8\xc5\x75\x94\xd0\x57\x4f\xc1\xd3\x10\x1d\xa4\x42\x31\xfc\xe9\xea\xf4\xa5\x4b\xed\x86\x53\xe3\xa3\xd3\xa6\x4b\x37\x13\xb8\x5a\x3c\xc3\xb1\x34\x5c\xee\xfd\x4d\xe9\xa7\x83\x91\x2f\x4a\xb3\x75\x4f\xc8\xdc\xa1\x6d\xc6\xf4\x56\x7e\x6a\x7f\x31\x52\x89\xa9\xb1\x11\xeb\xdc\xbd\x49\xe2\x60\x58\xaa\xb3\xdc\xc7\xc6\x69\x22\x8a\x94\xbf\x76\xf8\xc1\x9a\xa1\x4a\x7b\xca\x41\xca\x7a\x4f\x9d\xa9\x24\x27\x36\xad\xa3\x2a\xe1\x13\xd9\xcb\xe5\xe0\x38\xa8\x70\x8e\x4e\xf1\x65\xd5\x27\x4b\x70\x74\x32\x5f\xd4\x14\x98\xfd\x68\x23\xf2\xd1\xda\xe2\x56\x3d\xa8\xba\xb8\x33\xc6\xf9\x67\x2e\x1c\x4a\x3b\x3a\x4f\x9a\xce\x2b\xf6\x13\x59\x05\x98\xc7\x30\x2f\x15\x9e\xdb\x7d\xb9\xb8\x82\x3c\x83\xab\xb2\x3a\x63\x15\xda\x17\x8a\x52\x4c\x9f\x88\xd4\xfe\xad\x35\x4d\xf6\x52\xa2\x70\x03\x3a\xc7\x7d\xc7\x14\x1d\xe0\x86\xa8\x84\xee\xb6\x14\x87\x14\x12\x45\x60\xc8\x20\x7d\xd5\xd3\xc0\x42\xae\x8b\xb9\x4c\x40\xe6\xa7\x0b\xa0\xa4\xbb\x03\xd9\xd4\x55\x75\xee\x7a\x29\x36\x19\xeb\xa2\x1c\x08\x46\x99\xed\x69\xd0\xbe\x4f\x4a\x18\x0c\x57\xd3\x81\x6d\xea\x56\x05\xc3\x40\xba\xf8\xe4\x2d\x5a\xf8\x69\x23\x75\x0f\x02\x47\x80\x48\xf3\xb7\xd7\xb5\x6c\x88\xd6\x02\x1b\x09\x09\xf9\xf0\xa5\x63\xfd\x9b\xb3\xd6\x92\x24\x77\xf2\x2f\x9a\x04\xff\x57\x25\x1a\xa4\xd3\xa2\x85\x62\x78\xf9\x56\x6d\xf4\x19\xe5\x20\xe2\x4e\xfc\xfe\x72\xb8\x96\x97\x05\xeb\xa3\x75\x51\x6e\xdf\x1b\xfb\x28\x86\x38\x36\x45\x7c\x9c\xf2\xc2\x6b\xea\xb0\x85\x79\x3e\xf7\x5e\xb3\x71\xb9\x1c\x2d\xd0\xb7\xce\x68\x42\xed\x54\x18\xd5\xcd\xdc\xab\x91\xc8\x6d\xf0\x52\x2c\x76\x67\xb6\x5e\x3a\x50\x91\x4b\xe0\xce\x7b\xbc\x67\x74\x40\xc5\x03\x96\x49\xec\x64\x9a\x5f\x36\x16\x18\x11\x8b\x70\x27\x51\xf4\x5b\xb3\x4f\x4f\x55\xa4\x09\x4b\x01\x94\x08\x5f\x38\x2a\xbe\x1d\x31\x29\x4b\x51\xaf\xfe\xb0\x2b\x39\x8f\x98\x37\xa4\xf8\x9d\x76\xe9\x61\x7d\xa8\x23\xa4\x84\x8a\xdd\xd9\x87\xfa\x4a\x2b\x65\x8e\x83\x04\x35\x3f\xd9\x53\x37\x38\x45\xa5\xdf\x42\x31\xfb\xc1\x9d\xa8\xaa\xcc\xe6\x32\x33\xfa\xe8\xc9\x7e\xe0\x1a\xc4\x16\x0e\x46\xe9\xb8\x33\x63\xb4\xcc\x47\x3d\x83\x60\xd7\x8f\x2e\xa3\xe8\x53\xcc\xd7\x8c\x75\x90\x69\x42\x44\x0d\x0b\xb3\x14\x7e\x30\x72\x41\x0a\x3c\x1c\x37\x4b\x81\xbe\x74\x2a\xa3\xc2\x96\x95\x5a\xd9\x89\x2b\xc4\x15\x15\xde\x80\x07\x74\xcb\x66\x50\xe0\x29\x14\xc3\x9f\x2b\x06\xa1\x96\x07\xd8\xa0\xb7\x5e\x6b\xd6\x8f\xe6\x75\xb5\x18\x87\x4d\x3a\xa8\x49\x94\xba\x3e\x61\x58\xea\xfb\x9f\x3e\xab\xb9\x4d\x3a\x35\x64\xf8\xb1\x56\xf7\x8b\xc3\x15\xc1\x34\xcc\x5d\xc4\xa3\x37\xbd\x66\x8c\x1e\x95\x0c\x4c\xea\xc2\x91\x31\xb7\x74\x91\x36\x82\x76\x4d\x5c\xc3\xdc\xfa\x2f\x7e\x9e\x1f\x1d\xaa\x8d\x78\x5b\x5b\x04\x46\xec\x27\x03\xd2\x2d\xba\x2a\x75\x1c\xcc\x3c\x08\x3e\xfa\x40\x6c\xfb\x62\xd8\x8f\x88\x39\x5e\x81\x05\xb1\xf9\x63\xfe\x8a\x92\x20\x2f\x21\xdb\x23\x65\x9e\x69\xee\xca\x4b\x2e\x92\xdd\x3c\xe1\xfb\xc8\x01\x05\x5b\x8c\x6c\x10\x9a\xc8\x2f\xdf\xd4\x44\x91\xc3\x75\xf1\x51\x8a\xdd\xf9\x4f\x0f\x54\x0a\x3d\x2b\x40\x65\x5e\x1d\x29\x4a\xa0\xa7\xb5\x76\x60\xc3\x25\x06\xf1\x1c\xa8\x33\x1e\xdc\xaf\x33\x49\x91\x4d\xd6\xe3\x98\x58\x98\xfb\xa7\x92\x7e\x1e\x50\xfc\xd4\xb2\x53\x56\x0d\x52\x78\x07\xd5\x98\xa7\x9f\x6d\xd9\x23\x99\x07\x36\xa9\x11\xd7\x4b\xa9\x02\x7e\xb7\xd7\x95\xae\xaa\x87\x83\x99\x20\x45\x44\x81\x7a\xca\xe3\xe9\x4f\xeb\x33\x8c\xfc\x44\x04\xf3\x9f\xe6\xc9\xa8\x1c\x30\xd1\xfe\xca\xbc\x3e\x5d\xf7\x8c\x73\x6a\x94\x7b\xd4\xf2\x5c\xe9\xfc\x12\xad\xcc\xe2\x52\xa2\x30\x91\x39\x3b\x6b\x98\xd2\xd8\xf1\xa2\x5f\xd8\x30\x51\x09\xbf\x71\x1e\x1e\x6b\x1d\xb3\x24\x0f\x8c\x56\xa4\xf5\x02\x98\x2d\x22\xbb\x30\x2f\xe8\x44\xc4\x46\x0a\xda\x3f\x7f\xf3\x6b\xca\x5e\x0d\x6a\x35\x9b\x57\xe3\xd9\x3f\x69\xa8\x23\x01\x85\x15\x37\xe8\x8a\xb7\x93\x34\xb9\x86\x9b\xd2\xe4\xec\xfb\x63\x87\x28\x90\x7c\x9b\x3a\x58\x0c\x4b\x96\x1c\x54\xc1\x6b\x35\x54\x22\x36\x89\xef\xcf\x7c\x7d\x55\x3a\x45\x8b\xdd\x08\x15\x3e\x67\xf6\xd7\xa7\x75\x53\x4b\xdf\xb0\xe0\xe1\xf3\x14\xe7\x85\x3d\x52\x51\x69\x7a\x3b\x67\x27\xed\xd7\x52\x52\xe4\x56\xf9\x00\xef\xfe\xf3\x80\xc9\xf2\x7c\xc4\xc1\x00\x99\x97\x07\x8c\x68\x66\xf0\xc0\x32\x15\x8a\xe1\x8d\xdb\x54\x83\x05\xa7\x84\x7c\xe0\x54\x77\x67\xef\x59\x7d\x99\xb8\x92\xdd\xa8\xee\x77\xce\xa7\x4b\x81\x4e\xca\xaa\x89\x98\xd1\xf2\x27\xe2\x8a\x8b\xba\x1c\xe7\x01\x16\x7a\x2b\xd2\xdf\x8a\x63\xd3\x60\x82\xc3\xeb\xd8\x1f\xcd\x54\x1a\x15\x8c\x83\xc6\xa3\x7f\xf6\x9b\xf9\x12\x06\x9f\x16\x5c\x29\x14\xc3\x36\x0d\xac\x03\x38\x6c\x37\x61\x14\x74\x67\xa6\xbd\xaa\xf9\x72\x27\x6d\x9a\x58\x96\x67\xce\x38\x29\x82\x3c\xa9\x8d\xaf\xe6\x9e\x6b\x65\x83\x56\x00\x0b\x9b\x15\x52\xbe\x68\x2a\xf0\x39\xe4\x13\x51\x59\x66\xfe\xb1\xaf\x6c\x68\x80\x79\xb2\x4a\x9b\x58\x3e\x5a\xd9\x88\x2e\xa7\x30\x34\x0d\x17\xbe\x56\x57\x0c\x74\x50\xd5\xd2\x04\x4e\xb3\x2b\xe4\xfe\xe2\x63\x41\xa1\x95\xc8\xed\x15\xb4\x51\x13\x6c\x76\xc1\x79\xba\xa7\xb7\x32\x1a\x0e\xbc\xe8\xa3\x11\x81\x10\xb8\x98\xbf\x5a\x0f\xf5\x8c\xd6\xb1\x93\xf8\x06\x66\xfe\x9f\xa6\x85\x5b\xa2\xb6\xe7\x63\x75\x7c\xd8\x77\xa1\x66\x83\x65\x53\x6a\xda\xc0\x75\x8f\xeb\xd7\x5e\x2d\x1a\x76\xca\x67\xa4\x06\x04\xaf\x64\x18\xf7\xd6\x76\xed\x6f\x1a\x76\x9d\x68\xf8\xaa\xdc\x94\xa7\xaf\x72\x53\xec\x7f\x0f\x47\x97\x49\xe0\xf9\x20\xe1\xfe\xc1\x4c\x68\x19\xdf\x59\xe5\x5b\x29\x2e\x3b\xde\x9e\xaa\x13\xb7\x6c\xca\x90\xa9\x76\xa4\x32\xdd\x17\x65\x9d\x30\xa5\xad\x05\x90\x81\xdb\x3a\x20\x47\xbe\x85\xd6\xa0\xde\xcf\x3d\x6d\x0b\x49\x81\xa8\xb0\x2d\xf3\xad\x34\x4a\x41\x4f\x71\x0f\x4c\xb0\x6a\x3c\x06\x03\xd0\xf9\xc5\xa5\xf3\x9a\x46\x0a\xeb\x75\x29\xd7\xc0\xb3\x52\x63\xcd\xfc\x30\x7d\x90\x82\x6c\x94\x58\x6f\xe6\xfe\xfc\xaa\xf6\xc0\x7d\x6a\x0b\xab\x9b\x70\xef\x1b\x9a\xae\x21\x76\xd3\xbe\x8c\xd9\xdf\xbe\x13\x87\x07\x5a\xe5\xfb\xc0\x9f\xaa\x6b\x99\xd9\xe5\x44\xd7\x34\x19\x30\xff\xbb\x36\x73\xe2\x08\xa9\x78\x32\x7e\x7d\x6f\xa5\x8a\x27\x7e\x10\x9f\x55\x6f\xa7\x2a\xe3\xd0\xc5\xc5\xa6\x8b\xdd\x99\x67\xbb\x46\xd4\x14\x51\x57\xfd\x94\xdd\xaf\x20\x32\x4d\x86\x91\xc3\x97\x74\x59\x28\x08\x9f\x34\xb0\x39\x96\xf5\xeb\xca\x28\xc0\xb7\x18\x17\x9c\xee\x9d\x1f\xa6\xbc\xa1\x8f\x6a\x16\xe5\xcd\x22\xae\xf2\xf0\xb6\x66\xb4\x8e\x3a\x78\xbc\xfc\xc4\x09\x31\x30\xe4\x04\x04\x25\x8f\xcd\x0c\xeb\x4a\x48\x6c\x25\x1b\xa9\xc3\xe3\x3d\x23\x07\xaa\x52\x05\x06\x2f\x04\xc2\x07\x94\xac\xc1\xf3\x19\xac\x6f\xee\x67\x1b\xf5\x16\xca\xf4\x56\x4f\xe0\xf3\xb2\x5b\x8f\xf6\x53\x90\x15\x3c\x5c\xff\xe9\x95\xf4\xdf\x8f\xef\x24\xb6\x1d\x67\x01\x87\x77\xc9\x32\x2d\x70\x91\x4b\x1c\x1a\x80\x8a\x45\xe6\x17\x07\x74\xc2\x6c\x60\x62\xd9\x1f\xfd\x59\xbb\xac\x21\x68\x50\xb1\x78\xc6\xff\xf5\x97\xfb\x27\x51\x36\x56\x3b\x7a\x40\x51\xa4\xaf\xd8\xdc\x1f\x25\xf3\xf1\x2d\xba\xbb\x35\xef\x6f\x43\x51\x7a\x76\x5b\x8a\x97\xdf\x80\x22\x76\xcc\xa8\xa1\x6a\x79\xe2\x04\x76\x72\x71\x4f\x38\x2b\x2f\xb3\x76\xae\x41\x3f\xe7\xac\xb6\xa5\x91\x53\xb3\xe3\xfd\xfe\xc3\x3d\x4d\xaa\xd8\x46\xcc\x92\xcb\xbc\x7b\x76\x5c\x67\x53\x77\xcc\x40\x3d\x64\x87\x4f\x4a\xe5\x67\x9b\xac\xe3\xaa\x90\x8a\x37\x28\xf7\xd7\xe3\x22\x86\xbc\xfa\xe8\x78\x49\x29\x85\x0c\x8b\x0a\xb8\xcb\x63\x4f\x42\x00\x98\x8f\x19\x43\x8c\xf0\x22\xe8\xf0\x50\x91\x74\x1a\x16\xa9\x61\x1b\x55\x68\x1c\x55\x4e\x6e\x00\xad\xa9\x15\xc8\x8e\xf2\xec\x54\x59\x7b\xdb\x45\x0d\x0a\x85\xa2\x1d\x93\x12\xd0\x1d\x38\x38\xc9\x51\xb1\xaf\x0b\x33\x87\x83\xc6\x8e\xd2\x1e\xb7\xad\x05\xcc\xcc\xa0\xb2\xca\xbc\x22\x36\x6f\x2f\x84\xdf\x5c\xdf\x57\xec\x5b\xe2\x44\x67\x66\xfe\x72\xa9\x72\x62\x61\xd6\x0c\x34\xeb\xce\x7d\x57\x61\x9d\xfa\x98\x3f\x1a\x5e\x4c\xdc\x9d\x62\xae\xc2\x64\x62\x53\x6f\x0d\xf9\x60\x23\x2f\xde\xee\xb9\x87\xfa\xea\xcc\x1b\xbf\x13\x63\x17\xba\x49\x1d\xb5\x66\xa1\x13\x50\x9d\x12\xc5\x8b\xca\x24\x2b\x07\xcc\x25\x1e\x37\xfb\x78\x6b\xad\x92\x7c\x51\x37\xaa\x77\x90\x4f\x3c\x87\x27\x5f\x0f\x3f\x93\x9c\x61\x9f\x4b\x40\xcb\x7c\x7c\xc9\x54\x89\xbc\x35\xaa\xa9\x5f\xf5\x53\x0a\xee\x3a\x05\xdd\xeb\xcc\xd1\x76\xa5\xeb\x68\x60\x9b\x51\x9e\x64\xaf\x7b\x14\x02\x13\xa9\xb8\x20\xcc\x9b\x2d\xca\x69\x27\x76\xb9\x1e\xd8\xa5\x9b\xd5\x86\x25\xf0\x17\x8a\x61\xd0\xd1\x64\x1e\x13\x6b\x43\x84\x6f\xb7\x28\x46\x9d\x4d\xba\x33\xd9\x0d\x96\x6e\x76\x86\xfc\x16\x10\xcf\xbb\xf4\x6d\x4d\xaf\x10\x99\xc2\x3f\xb4\x74\x5a\x25\x6e\x30\x61\xc1\x2e\x8e\x7d\xc7\xe9\x74\x3e\x99\x10\xa2\xb2\xff\x3e\x3c\x46\xca\xf0\xf6\x36\x4f\xa3\xcf\xb4\xa7\x3f\x7a\x15\xe3\x5a\x52\xaa\x5c\xb6\x54\x3b\xcd\x16\x32\x69\xa7\xc8\x14\x5f\x9c\x2a\x87\x24\xd8\xc6\x86\xcf\xa8\x4b\x8c\x1e\xec\xf0\xce\xc5\x04\x00\x2f\x60\x42\x98\x2a\x73\xe1\x94\xd4\xf0\xa2\x2a\x07\xff\xea\x91\xda\x00\x92\x51\x91\xc6\x84\x4f\x94\xa5\xac\xcc\xf8\x2e\xe4\x22\x17\x8d\x57\xee\xc3\x9f\x6c\x4f\x14\x9a\x8a\x90\x32\x84\x2b\x14\x36\x75\xe0\xaa\x35\x47\xe6\xd7\x27\x79\x4e\x6c\x63\xb7\x30\xb5\x50\x9c\xa7\x5c\x54\xa4\xce\xa9\xdb\xe1\x73\x6b\xe4\x0f\x6b\xc4\xa8\xf2\x33\xb7\x6f\xbd\x14\x29\x11\xb6\x05\xab\x85\xe0\x3e\xf2\xc0\xa5\x72\xff\x91\x31\xae\x82\xe6\x8c\xb2\x1a\xc2\xcd\xba\xd2\xed\x88\xbf\x0e\x1d\x96\x5e\xbe\xe8\x83\x89\xe9\xcd\x52\x1f\x42\xd1\x6d\x0c\x63\x43\x85\x92\x87\x77\x9c\xd1\x12\x71\x86\x71\x55\xa4\xcc\x51\x8e\x74\x61\xa6\x32\xeb\xb7\x70\x4c\xce\x5d\xa3\xb9\xfd\x4d\x8d\xe5\xa5\x73\x5b\xc7\x09\xa3\x7b\x54\xa2\x4d\xbb\x33\xf3\x97\x37\x94\x3c\x99\x61\x07\x31\x48\x22\x16\x2f\x4d\xeb\x71\x02\x79\xfd\xa3\xcf\x2b\x08\xc1\xa0\x29\xf8\x1c\x79\x5a\x4c\x19\x96\x2f\xe1\x7a\xa2\x87\x15\x75\x61\x90\x78\xe1\xa7\xb3\xe3\x45\xd9\xfc\xaf\xf1\x8b\xf7\x1f\x0e\xe9\xfa\x12\x51\x51\x86\x44\x30\xf9\xf0\x8c\xd6\x73\x98\x54\x88\x8b\xb1\x6d\xe7\x65\xef\x12\x7a\x06\xd0\xc0\x39\x75\x52\xb9\xdf\xf9\xe2\x47\x2f\xf4\xc8\x69\x1d\x62\x0f\xf6\x96\x32\x91\xce\xdd\xb3\x5d\xe9\x15\x37\xd4\xb9\x74\xfe\x33\xab\x35\xb2\x66\x14\x0e\x61\x8c\xbb\xae\xb7\x32\x8c\x53\xd0\x14\xb9\xfb\x14\xf1\xdd\xb6\xa9\x6d\x5e\xaa\xcd\x90\xbf\x6b\xa4\xdc\x21\xd1\x9d\xe6\x53\xb7\x50\x81\xc8\x94\x9b\xbd\x58\x53\x1c\xe4\xd2\xaf\x52\x8c\xa4\x73\x7a\xb3\x4e\x7a\x2c\x85\x39\xbe\xfc\x7f\x5a\xd6\xf1\x2e\xcb\xe4\xe3\x22\xb1\x14\xc8\xda\xfc\xaa\x56\xad\x1b\xc0\x88\xc3\x65\x61\x81\x97\x75\xfa\xa8\x36\x52\xa4\x84\xbb\xab\x24\xd6\x9a\x8e\x2b\xfb\x5b\x1d\x41\x94\xe3\x87\xe6\x41\x21\xc6\xc7\x0d\x83\x79\xe9\x1d\xcc\xd2\x49\x2d\x6e\x82\x85\xfa\xba\x98\x27\xa2\x72\xd9\x0e\x44\x08\x79\x6a\xfb\x10\x2d\x3c\x56\xc5\x78\xea\x0f\x47\x07\x2a\xb9\x15\x29\x13\xa8\x46\xbf\xbe\x4f\xc3\xa8\x07\x8d\xf8\x4a\x0a\x7f\xb5\x21\xd9\x74\x6d\x20\x26\xb0\x6d\xbd\xb2\x3d\x69\xa7\xdb\x29\x90\x9d\x1f\x5f\xa9\x81\xab\xb0\x8f\x19\xf5\x70\x57\x80\x6c\xd1\xff\x3d\x18\xf6\x4d\xb4\xa9\xa2\x48\x32\x6c\x63\xdf\xf8\xc5\xdb\x5b\x0b\xc5\xf0\x26\x5f\x1b\x04\xe2\x3a\x66\x76\x43\x75\x00\x19\xf0\xbc\xda\xc5\xb7\x0d\x9e\x74\x41\xea\xd2\xdf\x92\x4d\x6a\xb7\x9a\x2a\xbe\x34\x53\x8f\xe8\x7e\xc2\xf5\x38\xf3\xcf\xcf\x3f\x0d\x65\xd5\xb2\x1a\xe2\x37\x2e\x84\x86\x3f\xf7\xd2\xc0\x34\xc8\xf5\x90\xa7\x7e\x96\xd5\xa6\x06\x5d\xe2\x1e\x59\x3c\xe5\xfe\xc3\x63\x4d\x52\x63\x28\xc6\x8b\x64\xaf\xb8\xd0\x13\xd8\x15\x18\xe5\x70\x9c\x3e\x72\x36\x3d\x57\x2b\x23\x56\xb5\x02\xdf\x24\x69\x5d\xf4\xee\xdc\xb9\x89\xc9\x50\xc7\x47\x0a\x95\x3e\xf7\xd8\x4b\x32\x65\x2d\x23\xc2\x38\xb0\xc1\x7b\x52\x19\xdb\x70\x2b\x6b\x18\xe3\x3d\x51\x4b\x6f\x7c\x1f\x77\xc5\x90\x63\x9e\x2b\xfe\xe7\x33\x8a\xf1\x86\xed\x5b\x5c\x6d\x4e\x2c\xc2\x35\x8a\xc9\xbe\x40\xf9\x86\xe3\x27\xc0\xae\x5c\x82\xdd\xb8\xdb\x9d\x99\x1c\x0e\x55\x7b\x34\xf3\x96\xdf\x58\x8c\xb3\xc8\x7b\x36\x69\x57\x6d\x94\xc8\x31\x18\x42\x6d\xeb\x1a\xae\x34\x50\x48\x09\xab\x2e\xe5\xad\x0b\x75\x9a\x15\x71\xe3\x2b\xfa\xd0\xdc\xf4\x5e\xea\x64\xd4\xad\x98\x51\x9a\x9b\xc4\x82\x57\x5e\x93\x50\x1a\xa4\xc0\x35\x73\xbb\x5f\x11\xae\x4e\x84\xc6\x90\xc5\x93\x37\xcb\x1c\x12\xb4\x38\x9b\x32\x96\xef\x1f\x83\x2e\x9e\x8d\x3d\x0f\xb3\x42\xd5\x05\x8b\x98\xdc\xed\x0f\x0c\x53\xd1\x53\x9c\x37\xe7\x13\x5e\xb2\x65\x7e\xd5\x57\x2d\xa8\x48\x99\x77\xf5\xbf\xfd\x8e\x34\x7b\x29\x4c\x8e\x5e\xe2\x5f\x66\x02\x73\xe7\xd6\x3a\x66\xdc\x8b\xa2\xe9\x0e\xf9\xef\x5d\x2a\x29\xd8\xc7\xcc\x41\x60\x14\x37\x64\x94\xee\x38\x83\x4d\x22\x4c\x5a\x73\xc7\x27\x88\xbe\x71\x60\x97\x41\xb5\x2d\xf3\xe7\x37\x92\x03\xef\x45\x19\x43\xf8\xc7\x37\xf5\x41\x92\x40\xfe\x87\xb5\xc5\x49\xf8\x66\xa8\xa4\x64\x1c\xd5\x81\x4d\xb9\x8a\x23\x86\x33\x3f\xaf\x0d\x10\x17\x1b\xef\xd4\x40\xce\xf1\x6d\xc5\xee\x84\x61\xe2\xc3\x54\x6e\xfc\x88\x54\xd6\x5b\xc7\x0c\x1c\xbd\xf9\x2f\xff\x7a\xe9\xe5\x52\xde\x20\x5a\xa3\x7c\x97\x26\x35\x56\xb3\x88\x8d\x4c\x6c\xd7\x2c\x82\x14\x7a\xae\xa7\x79\x0d\xb7\xb5\xcf\x88\xfb\x38\xbd\x4f\xeb\x89\x3d\x0d\x4c\x01\x69\xce\x7a\x53\xf5\xdc\x9d\xb1\x80\x7f\x03\x58\x8c\xf2\x0b\x50\x64\xa7\x84\x91\x79\x53\xf8\x1f\x7a\xc1\xbe\x98\xcf\x20\x2c\x09\x38\xcc\xf6\xdd\x1a\x1f\x92\x8f\x97\x41\xf7\x3c\xff\xd1\x1a\x90\x04\xa7\x4d\x8a\xde\x7b\xea\xeb\x62\xb2\x84\x1d\xec\x2a\x93\xa5\xb0\xb8\xa1\x9f\xb8\x05\xa9\x07\xc8\xf0\xfc\xad\x5b\xd3\x9f\x53\x72\x56\x84\x78\xd6\x6d\xb3\xae\xd5\x92\x06\x93\xab\x18\xaa\xd8\xf1\xee\xdc\xf4\x37\x7b\xe8\x9d\xd5\x18\xc1\xb1\x95\x59\xe6\xb4\x96\x4e\xb7\xdd\xd4\x2e\x44\xdf\x76\x3e\xa9\xa8\x60\x12\x9b\xdf\x0e\x8f\xf7\x91\x7c\x04\xa2\x6a\x64\x5d\x7e\x11\xf2\xac\x62\xf4\x39\x9b\xba\x86\x0b\x0f\xaa\x4a\xa1\x36\x58\x26\x1c\xde\xd4\x04\xd5\xe9\x10\x12\x02\x20\x2c\x33\x78\x6d\xf2\x66\x0e\x4e\x29\x04\xce\x53\x25\xdd\x38\xff\x24\xfa\x70\x93\x04\x52\x3e\x05\x6a\xbb\xa0\xd5\xe4\xe0\xe9\xca\x9f\xf5\xe3\xfb\xe1\xc2\xb8\x85\x52\xf5\xab\xfc\xe3\xcb\x1a\xe0\xd4\xc4\xd4\xa6\x15\x8e\x2e\xe6\x00\xe1\x2f\x69\x72\xf9\x16\x8e\xa2\x69\xdc\x6a\xdc\xb4\x6a\xb4\x76\xe1\x04\x65\x07\x14\x6c\x64\x36\xf5\x95\x99\x8a\x2d\x07\x71\x02\xdb\x47\x2e\x8e\x3b\x24\xd9\xe9\x23\xe4\x72\x75\x22\xbb\x0a\x89\xe3\x82\x45\x02\x00\xec\x23\x46\xeb\x94\xf8\xb4\xae\xa8\x03\xb7\xcf\x55\x67\x24\x81\xeb\xab\xa2\xc9\xd9\xc7\xac\xf4\x51\x46\x6e\x83\xba\x02\x38\x76\xfa\x0d\x98\x3e\xb6\x4d\xf2\xad\xb4\x92\xd4\xc1\x64\xfd\xa9\xd9\x50\xbc\x5f\x59\x7a\xcb\xb0\xc0\x05\xd9\x99\xcc\x2a\x4d\x41\x8e\x6b\x98\x25\x81\xda\x38\x3d\x54\xc9\x88\x0d\x62\x62\x33\x56\xa6\x5d\xf9\x5e\x7f\x91\xce\xb8\x18\x0b\x48\x99\xb1\xb4\x9f\xfa\xe7\x85\x62\x38\xa5\x6b\xbc\x96\x58\x60\xc3\x42\x4e\x8f\xfa\x06\x9f\x7e\x22\x09\x80\x2e\x89\x42\xd6\x27\x96\xca\xa2\x12\xda\x70\xb5\xc0\x8f\x2d\x12\xff\x65\xb1\x3e\x4b\x8f\x52\x70\x43\xf4\x0d\xb3\x2d\x07\x65\xec\xe7\xe6\x0f\xd8\xf3\x1c\x14\x85\xb0\xf0\x7b\x67\x14\xa4\x29\x9f\x13\x01\x1c\xec\xe4\x9a\xf4\x2b\x96\x90\xef\x63\xde\x1b\xe5\x49\xe5\x4d\x4c\x73\x2f\xaa\xe3\xc0\x89\x0e\x9e\xdc\xe5\x27\xd8\x55\x6a\x63\x0a\x93\x8a\x1b\x9d\x11\x33\x30\x78\xa9\x76\xf8\x0d\x05\xcd\x8b\x5d\x64\xfb\x40\x75\xdf\x39\x4e\x31\x68\x41\xbe\x0f\xcc\xef\xb7\x56\x2a\x3e\xba\x01\x63\x84\xcf\x03\x4e\x3f\xa2\xfc\x34\x0a\x93\xbc\x55\xbc\x74\x87\xf6\xd1\x19\x45\x66\x27\x6a\x88\x4e\xd6\x0f\xee\x97\x05\x8c\xd9\x51\x28\x86\xd7\x8c\xbc\x46\x4b\xa0\xa2\x6c\xae\x4e\x3c\x5f\x40\x64\x8a\xdd\xd9\xb5\x7d\x75\x4c\xa4\x59\x91\x0d\x93\x09\x6b\x24\xea\xab\x30\xbd\x09\xe3\xbb\x27\x2f\x6f\x6d\x6e\x60\xd1\x5c\x85\x1f\x61\xb2\x07\xe5\x35\xe3\xc6\x8e\x9c\x90\xa4\x02\x86\x3d\x62\xf2\x17\x51\x72\xcb\xff\x6c\x95\xfd\xcd\xc9\x40\xeb\x39\xd3\x3a\x2c\x45\xe2\xc7\xc2\x94\xbb\x50\x0c\x9f\x7a\x5d\x70\xcf\x58\xe0\x94\xa0\x5b\xf5\xe8\x82\x1e\xcd\xa3\x01\x8c\x71\x6a\x83\xf6\x4b\xca\x0c\xa9\x03\xbe\xbf\xac\x08\xe8\x60\x56\x81\xed\x8f\xb6\xc3\x7b\xdc\x8a\x78\xdd\xc4\xcb\xdf\xff\xdf\x9b\xa9\xec\xeb\x96\x79\x82\x11\x1b\x95\x9b\xef\xc1\x60\xab\xc2\x41\xf6\x7c\x2a\x54\xec\xce\xec\x78\x50\xdb\x66\x35\xea\xdb\xbc\x26\x31\xe3\x78\xf5\x4c\x6b\x13\x7f\xaa\xc2\x90\xe3\x09\x45\x80\xcc\x67\x17\xaa\xa7\x36\xe1\xd8\x44\x3b\x70\xa0\x02\x8e\x16\x4d\x6c\xce\xb5\xdb\x90\xc4\x0d\x0f\xa9\x89\xde\xdf\xf6\x68\x09\x7c\xc9\x84\xd6\x3d\xbc\xd3\xfc\x27\x64\x77\xbe\x86\x11\xef\x0c\xf0\xc4\xf5\xca\x47\x25\x3a\x85\x8b\x32\x8d\x3d\x22\x10\x5a\x66\x1d\x89\xd1\xd6\xe5\xbd\x06\xc6\xbd\xfa\x99\x12\x5a\x3f\xec\xb8\xd6\x7c\x24\x9e\x66\x04\x9d\xfd\xde\xa9\x04\xd5\x61\x93\x84\xfa\x36\xf4\x65\x45\xc3\xc9\xc6\x5d\x48\x50\x65\xae\xd0\xe4\x29\x01\x4a\x67\xf8\x22\x2f\x32\xf6\xcb\xfc\x4d\x68\x0a\xc2\x6c\xf5\xbe\xb7\xf5\x1c\xb7\x82\x62\xd7\xff\xe5\x23\x54\x1d\x78\x37\xca\x6d\xb9\x06\x98\x66\x47\x5e\xe2\x08\x79\xd1\xec\xca\xbc\x63\x8f\xea\x29\x62\x09\xfa\x4d\xf4\x78\x06\x5a\x8a\x19\xa6\x8d\x3c\x0f\xd0\x20\x64\x92\xc2\x45\xea\xc4\xb5\xe8\x2a\x3e\x72\x40\xd1\x9f\x8a\xbe\xa9\x01\x52\x57\xa1\x7b\xaf\x84\xa0\xc5\xfd\x9b\x70\xf5\x56\x6d\x98\xc6\x90\x6b\x6a\x50\xbe\x13\xbd\xd2\x7f\x93\x68\x40\x12\xb7\x22\xbc\xb9\x32\x6f\x95\x94\xc4\x53\x6d\x92\x3d\xdc\xc3\x22\x13\x37\x48\x9c\xd0\x7a\xd9\x72\xbc\x8d\x03\x03\xd9\x8d\x9a\xcf\x35\x2b\x33\x13\x97\xa7\xe1\x56\x36\x36\x69\xdd\xab\x92\xaa\x05\xd4\x12\xb1\x2d\x66\x6b\x15\xbf\xb0\x48\x8b\xc3\xfd\xdf\xcf\x52\x68\xa4\x89\x78\x65\xf4\xfa\xdf\x59\x21\xb7\x05\xf8\x3f\x81\x64\x45\xae\x3c\x49\xd9\xbb\x88\xa1\x0a\x43\x35\x9e\xb8\xdf\x31\x36\x0d\x0c\xa1\x2e\xee\x22\x0e\x1f\x82\x37\x8b\xf8\xe7\x2f\xcf\x0e\x14\x0f\xc1\xa3\x36\x31\x88\x98\x4f\x5f\xb3\x08\x7e\x3c\x9f\x32\x6c\xa0\x58\xe1\x20\x97\x5d\x22\x83\x56\xac\xae\x2c\x94\xb3\x2c\x1a\x30\x20\xc2\x74\xe7\xbe\xdf\x92\x96\xe5\x88\xf6\x6b\x74\x27\xfc\x97\x36\xf0\x01\x7e\x8e\x68\xa6\x76\x5d\x50\x49\xdb\x75\xec\xf9\xa4\x12\x5b\xa5\x0c\x99\x9f\xd2\xe6\xf6\xb0\x11\xf0\x14\x2c\xbc\x7f\x44\xcc\xb9\xa9\x44\xf5\x09\x10\x03\xc3\x9f\x29\xee\x36\xc8\x11\xa3\xc7\xcc\x3f\x68\x19\x6e\x25\x20\x26\x37\x26\x8b\x21\x3e\x5f\xdf\x04\x87\xdc\x41\x2e\x02\xa9\xc2\xeb\x36\xc0\xa0\x1f\x11\x70\x52\xfc\xdb\x2c\x48\x3a\x97\x19\xd4\x6f\x06\xf8\xff\xaf\x9d\xce\x16\x6a\x36\xee\xf2\x1a\x5e\x8f\x36\x6f\xe7\x26\x0c\x56\x0e\x40\x39\x60\xb1\xe0\xcc\x4f\xba\xd2\xc7\x2c\x60\x86\x15\x54\x6f\x54\xc0\xf4\x0f\xb4\x42\xdb\xcf\xe3\x08\xed\x4c\xff\x9a\x46\x2b\x00\xe1\xa1\x1a\x62\x31\x8a\x28\x3f\x6c\x93\x5c\x5a\x2e\x3b\x0c\x37\x26\x84\xfd\xbf\x5b\xa8\xf5\xd9\x2c\x5a\x03\x58\x4a\xee\x91\x43\xb2\x58\x9a\xd4\x5e\x28\x86\xcb\xf3\xca\xdc\xc4\xc7\x35\x0b\x47\xe7\xfe\xb3\x75\xc5\xf0\xdf\x65\xc4\xe0\xfb\xf0\xb9\x6d\x50\xbe\x2c\x45\x0e\xb2\x6d\x64\xc5\x55\xfb\x6f\x2e\x0c\x57\x3a\xfe\x5c\x59\x33\xb9\x14\x9f\x3e\x7e\x85\x12\xfa\x5d\x1f\xe6\x93\x07\xb7\x8d\x50\xee\xd2\x0e\xa0\xc6\xca\xd4\xd6\x0b\x65\x22\xba\x2e\x88\x12\x4d\xd5\x1e\xb4\x65\xf1\xc8\x34\xc6\x63\x19\x6f\x20\x24\x6f\xf9\x3f\x0b\x86\x2a\x20\x84\x92\x67\x30\x52\x02\xf4\x56\x6e\x6c\x56\xcc\xb4\x38\xed\x80\x6f\xe0\xdd\x32\xc2\x41\x8b\x35\xfa\xe9\xd7\x56\xc9\x0b\x4b\xba\xf4\xf2\x15\xdc\x37\x54\x3e\xe6\x3a\x71\x71\x03\x31\x98\x83\x6f\x3e\x90\x3e\x0a\x16\x32\xaa\xa0\x06\x54\xec\xce\x54\x27\x0c\x71\x75\x59\x1b\xd0\xb5\xfe\xc2\xd3\x83\xf5\x43\x02\x7d\x86\x8b\xef\x69\x7a\x90\xd1\x51\x10\x43\xe8\x76\x2d\x17\x8f\x4e\x7a\x8c\x8c\x7d\xff\x84\xc2\xb1\x71\x6a\x36\x6d\x38\x18\x64\x69\xb3\x0f\xbf\xd3\x2f\xde\x9e\xb0\xff\xc3\x77\x5e\x53\x54\x48\x10\x33\x39\xb8\x60\xee\x19\xd1\x4a\x74\x7d\xec\xba\x1c\x84\x9a\x3d\x7b\x3e\x5d\x92\xd4\x89\xed\x22\x92\x8e\xd8\x99\x23\x77\x0f\x53\x75\x40\x7c\x2b\x2a\x27\x31\x8b\x76\x54\xf0\x8a\x26\x2c\x86\x8d\x80\x71\xdc\x50\x33\x92\x35\xf3\xd7\x13\x50\xf3\x4e\x99\x51\x28\x86\x5f\x7d\x34\x5d\x7f\xfa\x34\x60\x2e\xf7\xdd\x8e\x4f\xf9\x1f\xf7\xaa\xf6\x71\x75\xcc\x3c\x10\xcb\xc8\x9a\xfd\x46\x6a\xa1\xbc\x42\x3c\x1b\xf9\x94\xc1\x71\xc8\x7e\x6b\xaf\xe6\x5a\x86\x08\x2f\x1e\x81\x40\xd6\x76\x42\xc6\x70\x8b\x32\x86\x5d\x13\x1e\x5a\xf6\x1e\x5f\x01\xf3\x34\x6a\x62\xec\x9e\x0d\xd6\xe8\xc0\x01\x56\x0e\x9c\xd8\xde\xf4\xb5\xa4\x29\x59\xe6\xca\x0b\xb2\x4a\x22\x4f\x5f\xad\xec\x01\xde\xbf\x35\x52\xb2\x66\xb9\xd5\x63\x64\x1d\xa5\x12\x7d\x33\x8b\x5f\xd2\xc1\x54\x9e\x87\x7d\x3f\xd6\x5e\xcd\x7d\x27\xaf\xb9\xc7\x38\x34\xd1\x2b\xc8\xdc\x23\xf8\xa0\x4b\x40\x43\x41\xcf\x78\xef\x98\xa4\xf8\xd6\xf2\x14\x84\xae\x85\x0c\xd1\xc7\x36\xae\x59\x14\x8c\xc9\x33\xcb\x9f\x07\xa1\xc6\x29\x85\x62\x38\x2f\xab\x59\x49\x32\x8c\xc0\x50\x9a\x8f\xd7\xba\x74\xbf\xa2\x28\xee\x93\x3a\x2f\x23\xc3\xbb\x7a\x0f\xa9\xe9\x92\x57\xd0\x38\xb9\xe4\x9d\xc4\x3e\x59\x8c\x9e\x56\x69\xc0\x27\x47\xd4\x88\x72\x65\x7e\x30\x5f\xce\xf6\x4d\x0a\xb9\xec\xa7\x97\x42\xa0\x5d\x7e\xc7\x3c\xee\xd9\xfe\xa0\x02\xa1\x08\xca\x3e\x51\xa2\xcc\x1f\xb7\xc6\xf7\x90\x8f\x2b\xd2\xdc\xe6\x63\x17\xe4\x71\xed\xa4\x2e\x98\xc9\x45\x0b\xfd\x83\x17\x94\x90\x16\x78\xd8\xf4\xaa\xca\xcb\xe5\x27\x4e\x50\xb0\xe0\xd8\x8d\xed\xc6\xb3\xa7\x14\xa7\xdc\x32\x81\x31\x6f\x78\xca\xd7\x04\x32\x10\xf3\x2c\x3b\xca\x90\xf8\x53\x68\xf7\x95\x5a\xa6\x56\x43\xac\x79\x8a\x7d\x73\x79\xa0\x38\x85\x05\x37\x5a\x46\xd7\xe3\xb9\xc7\x97\x17\x8e\x54\x72\x0f\xdc\xcc\x5b\x5f\xc3\xf4\x77\xe6\x17\x67\xbc\x9b\xae\xb5\x64\x5c\xc4\x5d\x69\x60\x78\xfd\x32\x71\x50\x00\xa2\x41\xb7\xc3\x56\x59\x80\x48\x95\x06\xf1\x55\x71\xf7\x06\x5d\x47\x93\x3a\xc2\x84\xf4\xfe\x83\xa9\xf6\x31\xc7\xe5\xe5\xe7\xb4\x68\x8a\x72\x81\x83\x58\x5a\x1e\xe5\x73\x47\xb5\xf8\xc0\x6b\x13\x17\xe4\xd5\xc6\x16\x8a\xa1\xb7\x7c\x50\x3a\x3c\x88\x8c\xe8\xb9\xed\x8a\x92\x1c\x03\x39\xb1\x9f\x9c\xd7\xae\x4e\x14\x2b\x49\xe6\x9e\x7f\x46\xd6\xac\x75\xce\x71\x58\xf8\xbc\x92\x94\x30\xc6\x55\x8a\xc2\x99\xa3\x74\x37\xc5\x28\xa6\xc7\x5c\xd8\x70\xec\x23\x69\x5f\x4a\xec\x62\x56\xa1\x35\xcc\x09\x98\x4d\xf4\xb9\xcc\x84\xd9\xd0\x58\x51\x1a\x48\x40\x0b\xbf\xa5\xaf\x4a\xc4\xa5\x05\x9b\x94\xf9\xd4\xeb\xf6\x76\x2d\xa7\xe7\x3d\x03\x8f\x0b\x1a\x88\x67\xb0\xf8\x85\x74\x5e\x5d\x8e\x42\x86\x9d\x5a\xd4\xec\xba\x1d\xb2\x16\x2e\x37\x83\x43\x07\xbd\x20\xc8\x6b\xa4\x8b\xa7\x89\xd1\x72\xfe\xdb\xdb\x4d\x9b\xb6\x8a\x4d\x5b\x94\xfc\xd9\xdf\x4f\xd2\xc9\x48\x34\x71\xd1\xca\xf7\x96\x57\x56\x94\xf9\x9a\xb4\x2b\x46\x32\x85\x8f\x0b\xd7\x67\xc7\xa1\x0c\xa2\xec\xa8\x53\x57\xea\xa9\xbd\x81\xcd\x58\x17\xfb\x95\x99\xaa\x77\x10\x76\x20\x68\xf3\x68\x7f\xcd\x9e\xf4\x2c\x85\x9b\xbf\xf6\xc0\x51\xca\x37\x26\x28\xa2\x47\xb6\x47\x2b\xe0\xda\x94\xbf\xb5\x2b\x85\x1f\x05\xb1\xb7\x68\xdb\x4c\xab\x27\x35\x8e\x81\x12\x39\xf7\x69\x1f\x0e\x6d\x4a\x4f\x31\xf4\x6e\xce\x74\x25\xdd\x0a\xca\x88\x0e\xdf\xf9\x70\xb9\x50\xd9\x0f\x94\x86\x5f\xae\xa2\x98\x7e\x5b\x51\x0d\x0e\x2e\xd0\xd7\x3f\xa2\x3d\x71\xde\xdf\x51\x2d\xfb\xb2\xfb\x24\xb3\x92\xda\x8e\x28\xc1\xde\x1f\xae\x90\x0d\x2b\x88\xcb\x67\x4b\x1d\xcd\xbe\xab\x95\xbd\x6d\x77\xa2\x46\x94\x16\xb5\xce\x86\x7b\xb9\xd4\x28\x14\xc3\x7c\x1e\xf6\x40\x9d\x36\x78\x88\x88\xbe\xd6\x97\x67\x6b\x8d\x00\xe2\x1b\x16\xe0\x23\x39\x26\xe6\xb8\x36\x90\xf4\x2c\x52\x83\xd3\x3f\x7f\xdf\xb0\x54\xf1\xc3\x07\xd8\xb0\xec\x99\x77\x35\x71\x14\x8f\xcb\xf7\xa6\xa6\x5f\xff\xd3\x5b\x19\x4e\x72\x6e\xf8\x15\x6e\xda\x4f\xc3\x6e\x18\xb4\xe7\xc4\x7d\xe7\x66\xc9\xb0\x60\x41\xdc\x30\xf8\xe1\x4b\x1f\xd3\xd2\x39\x96\xd8\x01\xa7\x63\xed\xcf\x5f\xd6\x6d\xcd\x0d\x3b\x30\x13\xa6\xd2\xa2\x67\x35\x66\x5c\xc9\x00\x77\x71\xfd\xac\x8f\xed\xad\x1d\xa0\xc4\xcf\x87\x3f\xc4\xeb\xd7\xa4\x0f\x50\x85\x83\x8d\x78\x9f\x3d\xbf\x71\xbd\x9c\x92\x0b\xb3\x52\xe5\x30\x77\xd4\xd2\x6a\x9a\xd1\x75\x26\x6a\xce\xa1\x17\x9b\xce\x92\x8f\x88\x2b\xba\xe7\xff\xbd\x3f\x1d\x5a\x27\x4f\x03\x52\x11\xb5\xe1\xcb\x85\x3f\xdb\xa4\x89\xa9\x53\x0f\xd9\x18\x20\x50\x0a\x98\xf5\x15\x65\xd8\x48\x69\x72\x3e\x66\xce\x4e\xff\x6b\xa0\x94\x82\x78\xa2\xd2\x42\x3e\xae\x0a\x61\xd6\x71\x2c\xe4\x99\x9b\xb9\x47\x41\x1a\xd0\x4e\x35\x2b\x1a\x32\x4a\xe7\x91\xba\xd5\x02\xf1\xbc\x20\x51\x5c\xcb\xdd\x36\x52\x23\x72\x00\x87\x42\xe0\x11\x86\xcd\xd3\xa4\x97\x82\xc4\x17\x3f\xfd\xf0\xbf\x79\xb1\x09\xe0\x1a\xb7\x76\x21\xe0\xb7\xbc\x98\xde\x47\x81\x4b\x84\x5b\x4d\x93\x1a\xcd\xdc\xff\xfb\xa5\xa2\xb4\x3f\xbc\xd6\xd2\x2e\x43\xc4\x09\x4d\xea\x39\xd8\x35\x74\x00\x17\xbd\xe3\xf3\x78\x03\x45\xb7\x7e\x98\xb9\x54\x91\x7f\xb3\x10\xc3\x16\xb5\x4d\xe1\x15\x94\xfd\xfe\x99\x74\x5e\x5f\x41\xcc\xc4\x6e\x5a\xbd\x3a\x33\x7c\x09\x64\x13\x35\x1b\x35\x3a\x85\x5b\x47\xb1\x3b\xf7\xcc\x83\x10\x01\x2a\x01\x62\x01\xe3\x75\x42\xee\xb9\x35\xc2\x04\x8c\x08\x2e\x72\x78\xd5\x16\x98\x58\x7a\x0d\xd7\x24\x06\xf2\x9b\xdc\x70\xf2\xbd\xd6\x28\x90\x3b\x1a\x30\xe2\x71\x20\xe6\xad\x32\xe7\x35\x1b\xaa\x60\xf2\xd2\x7d\x80\xfd\xb9\xd3\x26\x16\x03\x5d\x9f\x44\x59\xb7\x4b\xe7\xb5\x26\x2e\x04\x3f\x78\x25\x55\x82\x79\xb5\x18\x05\x9a\x6d\x1b\x93\x04\x8f\xa9\x85\x49\xd1\xdf\x66\x2f\xd5\xc9\x1d\x5c\x20\x2c\x0e\x63\xab\x4d\x31\x25\x02\x64\x36\x4f\x2d\xbf\x3a\xf5\x4a\x91\x56\xd9\x66\xc1\xc1\x26\xb2\x0b\x9d\x24\xa6\xe5\x64\xfe\x77\xc4\xd5\x7a\xe2\xeb\xd4\x40\x47\x94\x8f\x1c\xc3\xc7\xa7\x37\xb1\xb2\x1b\xf1\x76\x0c\xf7\x6b\xd3\x92\xe9\xad\x71\x64\xff\xbc\x28\x68\x29\x33\x31\x98\x10\x67\xd7\x0c\xbe\x5c\xd2\xc4\xa3\x40\x6d\xbc\x38\x58\xd1\xf2\xf2\x91\xdb\x40\x56\x50\x28\x86\xef\x6b\x7e\x05\x1d\x81\xe7\x93\x72\xa3\xa5\xa5\x25\xc6\xd1\xde\x63\x69\xba\x4f\x15\xec\x1a\x0d\x70\x41\xee\xce\x74\x9c\xd7\xf9\x55\x26\xed\xe4\x75\x19\xb4\xc0\x90\x3d\xf9\xff\x8b\x30\xe3\xed\xd0\x86\x0e\x57\x9c\x51\xfa\x63\x01\x62\xc8\x85\xd9\x5c\x6e\xe5\xd6\xf4\x56\xa5\x36\xa9\x63\xc2\x90\xa2\x2f\xdc\x9d\xb9\xe6\x3d\x45\xfa\xc7\x40\x2c\x76\xc4\x53\xe8\xfd\xaf\xc7\x2a\x89\xa5\x12\x51\x83\x46\xbf\x13\xca\xd4\x03\xc0\x42\x9c\xfe\x63\xca\x31\xb8\x43\x38\xbe\xa5\x8f\x10\xd6\x23\x35\x9f\xf2\x51\xab\x71\x00\x2e\x6c\xe1\x84\x06\x2d\xae\x7b\x06\xc0\xb3\x59\xe6\x53\x06\xf8\x9a\xcc\xe8\xd6\x74\xc4\x33\x88\xe7\x62\x46\x05\xc2\x22\xde\xdf\xed\x2f\x0a\xd0\x01\x26\x15\xc8\x2f\x1e\x02\x83\xfe\xc2\x1d\xc8\xb5\x90\x0f\x22\x06\x49\xbf\xe3\x73\x02\xe4\x5a\xa2\x94\x0f\xfa\x73\x9f\x1f\xad\x99\xaa\x09\x5e\xae\xf0\xb8\xe0\xb1\xf7\xf2\xfb\x61\x0b\xd7\x02\xc7\x11\x36\x5e\xf9\x7b\x8f\x2b\x3d\x4b\xd7\x0d\xdc\xf5\x04\x71\x7f\xbd\x6c\xb7\xc6\x7a\x4b\x54\x33\x78\x4b\x64\xfe\x71\xd1\x4a\x97\xb9\x75\xae\x97\x1c\xfc\x56\xa1\x41\xfc\xf3\xa5\x8a\xed\x3e\xa3\xb4\xca\xe9\x6a\xad\x72\x18\xdc\x50\xe4\xba\x73\x3f\xd9\xa0\x71\x3a\x59\x43\x18\xfc\xef\x7d\xe2\x0a\x37\x05\x06\xe0\xf9\xb0\xf5\xaa\x54\xe5\x12\x2c\x1a\x5d\x19\x20\x9c\x3c\x5d\x1e\x04\x2e\x4d\xe0\x63\xde\xd8\xca\x5d\xb5\x35\x0d\xac\xb6\x30\x73\x30\x18\x5b\xeb\x97\xf4\x66\xcd\x8d\x7a\xf2\xe4\x96\xc9\xd0\x2e\xc8\x4c\xd3\xa4\x0d\xcc\x80\xb7\x37\x04\x64\xac\x3a\x33\xd9\x46\x16\x8d\xd6\xa3\x65\xbe\x22\x02\xe5\xd4\x2c\xe4\x91\xf5\x3c\xa1\xfb\xe5\x16\x68\xb3\xdd\x86\x4a\x54\xc8\x7a\x71\xbc\xc2\x38\x6d\x10\x5f\x63\xa8\xc2\xa5\x19\x13\xa7\xbc\x2f\x29\x92\x4c\xd8\xab\x21\xb7\x41\x79\xc6\x3c\x74\xae\x82\x51\xe4\x4d\x61\x3e\xd0\xfb\xe5\x13\x83\x53\x18\xfe\xc4\x88\xf6\xa4\x3c\x43\x75\xea\x37\x97\x89\xd9\x9b\xc6\xc0\x96\x13\x1a\x51\xe1\x17\x35\xe5\x9e\x12\xa9\x54\x12\x61\xde\x5c\xbf\x07\x9b\xa6\xf4\x75\xe2\x1a\x24\xf1\x3e\xbf\xe5\x65\x4d\x97\xb3\xec\x73\x2e\x47\xad\x50\x0c\x7f\x6b\xc9\xac\x57\x75\xcd\x1f\xa9\x61\xb2\x28\xc3\xc2\x34\x4c\x0c\xba\xde\x6a\x01\xa8\xc4\x22\x14\x98\x98\x71\xff\x0c\x31\x29\xde\x61\x36\x99\xf9\x51\x16\xcf\x90\xc2\x69\x47\x14\xfd\xaa\xe8\x8a\x10\x21\x7c\x99\x86\xd2\x80\x10\x2e\x2a\x98\x9f\x6a\x9a\x84\x44\x94\x7b\x2b\x2e\xe8\x5e\x7b\x3e\xf2\x29\x8e\x95\x05\xf3\x1f\xeb\xd0\xab\x45\xe0\xd3\x35\x04\x2c\xe7\x7f\xb3\x89\x65\x2d\x97\x28\x87\x89\x9c\x32\x88\xf5\x03\x1b\xf1\x3a\x20\xff\xa5\x07\xa1\x00\x37\xf9\x9c\x21\xec\xb2\x35\x50\x46\x4b\x9b\x58\xed\xcb\xc7\x29\xb0\x3d\xe2\x55\x18\x82\xf1\x57\x63\x5e\x92\x07\xe3\x20\x56\x41\xba\x73\x94\x82\x32\xc0\xbe\x6f\xa7\x1a\xb5\x0f\xee\x93\x0f\x67\xfa\xa4\xc9\xb1\xce\xf8\xac\xc1\x5a\xc2\xde\x40\x55\xc2\x52\x89\xca\xc0\x81\xcd\x8a\xe8\x52\xb8\xfa\xd6\x59\x49\xf9\xd9\x52\x6b\x16\x95\xd9\x39\x4f\x99\x1a\x52\x58\xb0\xa8\x78\x5f\xa9\x08\x3c\x52\x23\x88\x96\xdb\xe0\x0d\xbb\xfc\x96\x85\x32\xb6\x13\xc7\x11\xfd\x90\xdc\x57\x2e\x68\x23\x35\x4a\xdc\x18\x0a\xfe\x8b\x03\x12\xd9\x6e\x04\xd1\x8b\x5c\xdb\x77\x98\x56\xe1\x76\x50\x30\x08\x09\x17\xcf\xd5\x7f\xc5\x0c\x4b\xdc\x83\x8e\xe0\x16\x1a\x01\xf0\xd4\xce\x69\xec\xd7\x75\x01\x31\xaa\x76\x23\x19\x5a\x4c\x13\xdc\xae\xa2\xaf\xda\x44\xe4\x57\xbd\x9e\x5e\xb1\xa9\xd3\xb8\x0e\x96\x10\x2f\xb9\x79\xb6\x6a\xd3\xec\xc7\x2a\x8f\x47\x36\x69\xe6\x24\x00\x92\x8d\xd2\x0a\x79\xf1\x5d\xb2\x43\x11\xfb\x8c\x27\xb3\xf4\xbc\x9e\x90\x50\x86\xe3\x89\x6e\xae\x32\xfa\x5a\x39\x47\x98\x11\xff\x2b\xbd\x32\x7a\xf3\x1d\x20\x85\xcc\xc7\x26\x66\x1c\xe0\x2d\x73\xca\x4f\xbe\x28\x27\x77\x44\x35\xe7\xde\x7e\x4c\x2b\xa7\x38\xd7\x20\x16\x4b\xcb\xbc\xd2\x4b\xcb\x3a\xba\x04\x7c\x4c\x40\x8e\xb6\xdc\xaf\x51\x37\xb9\xb3\x32\x9c\xc6\x0b\x5b\x84\xee\x50\x62\x3e\x1e\xfd\x8b\xef\xdc\x9d\x7e\xc5\x84\xca\x2f\xc6\xa4\x5f\xd0\xb4\x52\x3a\x2d\x2a\x92\xb6\x21\xf3\x64\x05\xc2\x71\x17\xf2\xeb\xf5\x5f\x03\x07\xd7\x67\xe0\x33\xc1\xd1\x45\x7f\xd8\x9c\x28\xf2\x56\x48\x94\xd1\x3f\x3e\x5c\x5e\x93\x8c\xa2\x28\xed\xcd\xf6\x59\x2a\x7f\x36\x69\x2a\x57\x3c\xca\xdd\xf8\xfc\x68\x2d\x4c\x24\xbc\xf2\x78\x56\xdb\x9d\xa3\xf7\xa6\x93\x8b\x0a\xb6\x4b\x88\xf9\x69\x4e\x5c\xe6\x01\x4d\x00\xcb\xa7\x15\xcc\x67\x76\xd0\xa6\xb1\xc6\xca\xd8\x5f\xb3\x1a\x1e\x31\x08\x72\x93\x36\x60\xf4\x17\xef\x74\x68\x6c\x1e\x1b\x99\xc4\x48\x99\x84\xdd\x73\x4a\x07\xd9\xb0\xaa\x67\x11\xee\x7c\xa6\x9f\xe5\x7f\xaf\x2b\x7a\x30\xd8\xf3\x0b\xb4\x0c\x48\x47\xb6\x2a\xe9\x97\x83\xc9\x94\x2c\x09\x7f\x36\x3b\x49\x71\xdb\x66\x4c\x8d\x3e\xd4\xc7\xcf\x69\x38\xc3\x20\xba\xc0\x39\x82\x2e\xf3\x81\x72\xed\x73\xb3\xfe\xb8\xb7\x74\x67\x1f\xdd\x7c\x96\x56\xb1\x57\x83\x76\x59\x3c\x68\x3b\xac\x19\xba\xb4\x09\x56\x40\xee\x70\xbf\xf8\xea\x16\x2d\xd0\x4c\xfd\x79\x79\x06\x89\xeb\x20\x1f\xce\xe0\xce\xb3\xe9\x97\x30\x10\xe3\x4d\xa0\xfc\x86\x63\xc3\x94\x41\x95\x61\x60\xcf\x2b\x07\xd0\xdf\xcb\x5e\x7d\xb7\x66\xd6\x18\xb0\x46\x7c\x9f\x3e\xf3\x94\xc0\xfa\xc5\xe0\xa3\xf0\x57\x4d\xd2\x42\xd8\x6c\x29\x14\xc3\x2f\xf7\x4d\x09\x7a\xf1\x5e\xfa\xbf\xf5\x53\x88\x09\x72\xb6\xb7\xe3\x1a\x7d\x87\x45\xc9\x47\x02\x98\x5c\x72\x6b\x78\x64\x12\x9c\x1e\x64\x72\x47\x45\x51\x85\xb7\x1f\x19\x24\xb2\x5c\x9c\x72\x60\xdb\xd1\x35\x52\x01\xee\xb7\x16\x60\x4e\x56\xc3\xac\x60\x23\x5e\xba\x0c\x3b\xa5\x66\x1f\x3c\x80\x40\x92\xbc\x5f\xf3\x74\x42\x0c\xdf\xc8\x4a\x70\x80\x26\x68\xf8\x74\xec\xfb\x3c\xcf\x88\x5e\x70\xdc\x2b\xc9\xae\xb8\xa9\x54\xe5\x6a\x1e\x23\xe5\xb2\x08\xe3\x23\x80\x52\xcc\xbf\x59\xed\xdc\xba\x14\x90\x89\xd9\xae\xa1\x8a\xb4\x40\xc9\xc6\x9e\x27\x3c\xb4\xb2\x2f\xbf\x29\x81\xb8\x51\x4e\x15\xae\x9e\x27\x2f\x51\x0b\xbb\x86\xe5\xf0\xc1\x69\xe9\x3c\x7f\xd6\x36\x76\x0b\x93\xd4\x1c\x7d\xd3\x52\x59\x83\xa3\x72\x99\xb0\x28\x71\xab\x0b\x89\xcf\xdd\xab\x75\x4d\x09\x07\x9b\x09\x05\xf6\xd3\xaf\xe9\xe2\x95\x80\x23\x8a\x6a\x47\x5e\xc2\xcf\xed\x75\xa9\xf8\x18\x7c\xe7\x5c\xb1\x52\x9b\x08\x91\x3a\xe1\xf2\x02\x42\xba\x21\xff\xc0\x35\x5a\x00\xad\x61\x46\x1c\x3e\x9b\x8d\x49\xe3\x96\x62\x4c\x4c\xeb\x98\x45\xcf\x07\x6a\x84\x8f\xac\x49\x6f\xe6\xf1\x31\x50\xfd\xbb\xa3\x06\xc6\xdf\x7c\x8a\x9c\x6c\x5f\x72\x41\x1d\xaf\x26\xda\xf6\xda\x18\xc8\x40\x8c\x35\x12\x30\x53\xfe\xd3\x03\x12\x1e\x9b\x8d\xd2\x64\xb5\x95\x23\x34\x29\x4d\x17\x17\x2c\x64\x97\xe3\x8a\xb5\xb2\x5b\xb6\x11\x7d\x8b\xe0\x72\x81\xb8\x05\x1b\x75\x16\x8a\xe1\xcc\x4b\x85\x57\x32\x0d\x5c\xd3\x17\xda\xf1\x99\x7b\xdf\x56\x70\x08\x98\x95\xa5\xe1\xf0\xaf\x9f\x12\x92\x9a\x08\x66\x47\xde\x4e\x61\x1e\x46\x17\xd0\x14\x40\xf6\xe8\x62\xd9\xfc\xb5\x68\x22\x83\x7a\x34\x5d\x53\x74\x7a\xd5\x75\x85\xb2\x13\xdd\x29\x7a\x4d\xf1\xa9\x7d\xcd\x96\xb2\x62\x28\xf2\xee\xea\xa1\xa9\x07\x51\xb6\x69\xa7\xc8\x80\x87\x0c\x18\xa6\x9c\xe3\x3a\x55\xb1\x9a\x0f\x6a\x3e\x4c\x26\x76\x89\xa0\x91\x86\x5b\x84\xeb\x12\xef\xcf\x47\x09\xef\x98\x37\xd5\xb0\xd5\x36\x63\xc6\x74\x1e\x27\xfe\x67\x85\x02\xf5\x77\x7d\x52\x50\x5e\xdf\x5e\x23\x6b\xb0\x0a\x66\xc8\x89\x0e\x60\x7e\xe6\xdd\xb0\xc2\x46\xa3\x84\x19\x58\x06\x16\xbb\xb3\xd7\xe4\x15\x3b\x69\xc9\xbb\x2f\x14\xc3\xc9\x8f\x69\x76\x7a\xd8\x73\x30\xd7\x16\x17\x7b\xea\xfb\xe3\x20\xb6\xdc\x6a\xdb\x58\x29\x90\x33\x7f\x77\x5a\xff\x7a\xc8\xb7\x62\x93\x91\x05\x67\xe1\xb9\xb5\xb7\xb6\xf0\xab\xe1\x7b\xad\x97\xcb\xc7\x13\x15\x2b\xbf\x38\xac\xe8\x04\x70\x25\x65\x07\x03\x2e\x21\x7f\x67\x56\x43\x97\xb9\x94\xdf\x8d\x70\xc3\x66\xbf\xfb\x84\x50\xa1\xa5\xb6\x0d\x36\x7e\xbf\x59\x3f\x48\xec\x6d\x8f\x30\x14\x67\xa2\xdd\xd9\xff\xb7\x4b\x0d\x25\x9e\x2a\x73\xbb\xf8\xc4\x55\xca\x9d\x5f\x22\x86\x85\x82\x2e\x25\xcf\x7b\xe8\x83\xc1\xfa\x16\xe7\xd3\xd1\x0b\xab\xb4\x84\xcc\xa2\x81\x1d\xb7\x33\xf3\xd9\x27\x94\x91\x85\xef\x13\x3f\xe0\x63\xd2\xb6\x43\x30\xe1\x5d\xde\x60\xcc\xc2\xc2\x44\x4e\x6a\x2d\x74\x08\xc4\x5f\x0d\x31\x9f\x18\x81\x8d\x58\xa1\x18\x7e\xb6\x76\x65\x7c\x92\xdb\x26\xeb\x35\xf4\x9c\x51\x49\xda\xe6\xaa\x4d\xe6\xcc\xb6\x1d\x8a\xca\x8c\xd9\x04\xdf\xfe\xb8\x02\xca\x00\xe2\x41\x74\xea\xf9\x4d\xfa\x97\x83\x02\x43\x8d\x6d\x5c\x4a\x26\xad\x99\x9f\x8c\xe9\xaf\xd4\xf9\x51\x84\x0e\xbf\xbc\x49\xe5\x01\x38\x35\xe4\x46\x51\xd0\x22\x1c\x84\xf8\xdb\x57\x95\x71\x1e\x29\x83\x47\xc2\x0f\x3e\x80\x2f\x38\x23\x69\x5c\xf3\x1c\xf1\xac\x2e\x34\x4b\x3c\x0e\x8b\xe7\x95\xfa\x32\x99\x5d\xf0\x2e\x45\x38\x4e\x9b\x6c\x59\xd4\xe6\xc0\x4c\xa1\x14\xf4\x82\x62\x5e\xc8\xa5\x37\xf8\x7b\x2c\x28\x69\xda\x1d\x66\x47\xe0\xf9\xbc\x3d\x26\x76\xd3\x5b\x17\x12\x0e\x54\x9d\xbf\x71\xbf\x16\xf9\x42\xa4\x1c\xf3\x15\xcf\xde\x3b\x40\x7c\x61\x40\xb0\x45\x5b\xf8\xb1\x57\x74\xc1\x9a\xe8\x52\x31\x44\xa7\x73\x55\x56\x97\x35\x77\xa3\xc3\x9e\x4c\x00\x73\x0f\x3d\xa8\x6b\x80\xd2\x4e\x10\xc1\x0b\x37\x3f\x98\x7c\xa8\x69\x53\xa2\x17\xfb\xdd\x22\x8d\x73\x46\x9d\x18\x75\x98\xfb\x53\xcb\x55\xcd\x05\x11\x49\x94\x73\xf2\x97\xf5\x13\x9a\x84\x01\x8b\x1d\xe4\x97\x31\xc5\x81\x07\x57\x10\x4f\xc1\x33\x7f\x9a\xa5\xec\x0e\x2a\x8c\x00\x39\x1c\x6c\xa7\x66\x8b\xe4\xf9\x71\x81\x2c\x12\xb4\x41\xa3\x7a\xa0\x00\x73\x57\xc2\xa9\xf7\xc3\x69\x2d\x51\xdf\xa7\x4e\xa1\x18\xfe\xfe\x0d\xb9\xa3\xa8\x67\xd3\x42\x31\x7c\x1f\x6e\xa2\xc2\x62\xdc\x89\x58\xb5\xd9\xa7\xfd\x74\x1a\x0b\x68\x78\x46\x8f\x23\xa0\x35\x93\xd2\x01\xa9\x12\x10\x1f\x31\x01\xd6\x59\xb6\x39\xd9\x4f\x33\xa6\x4e\x2f\x14\xc3\xef\x2e\x97\x97\x62\x74\x81\x81\x6b\xf9\xdf\xbd\x34\x44\x15\x9c\x22\x89\x10\xf1\xa1\x76\xdd\x84\x28\x11\x1c\xc9\x5c\xf6\xac\x3c\xf6\x7c\x87\x0b\x99\xdb\x31\x53\x87\x28\x23\x1f\x23\x70\x4a\x02\x03\x94\xff\x9c\x96\xff\x0b\xfc\x6b\xec\x8d\xf5\xd6\x07\x57\xab\xa3\x58\xbf\x50\x63\x84\x53\xcc\x13\xb7\xca\x7e\xf9\x74\x7c\xb2\x51\x27\x27\xba\x7d\x76\x55\x5a\x91\x6f\x3a\xd4\x5c\x4b\xef\x4d\x4f\x52\xfc\x80\xb9\x98\x35\x8f\xba\xf3\xde\x6a\x2d\xcf\x71\x6a\x36\xbf\x29\x20\x8f\x0f\x1f\x1a\x9a\xde\x6c\xdc\x3b\x3b\xfa\x1f\x31\x4d\xfa\xd5\xc6\x64\xa4\x8a\x38\x0b\x41\x1b\x59\xef\xea\xa7\xe2\xef\x0b\xc5\xf0\x07\x2b\x75\x62\x8b\xf0\x8b\x4a\x2a\xf1\x4b\x57\xb5\xa4\x1f\x3f\x75\x9c\xc0\x8d\xe5\x39\x7b\x94\x6e\x1c\xf3\xfa\x40\x71\x21\x44\xab\x27\x90\x57\xe1\x3f\x0a\x2b\x16\x54\x11\x8f\x21\x73\x5f\x93\x52\x4b\xcc\x51\xe7\xdf\x98\x67\x7e\x4f\x7d\x28\xdc\x23\xe6\x2c\x5e\x3b\x27\x3e\xbb\x8e\xc6\x66\xb3\x68\xe0\xf1\x89\x8e\x34\xde\xc9\x3c\xa8\x71\xed\xc9\xba\x80\x8a\xdd\x98\x7b\x77\xc9\x10\xa5\x51\x50\xc3\x51\x62\xc7\x01\xe9\x83\x16\x27\xf5\x56\x1d\xa7\xe6\x3f\xf9\x71\x4f\x2a\xaa\x78\x1c\x41\x21\x72\x90\x57\x06\xab\x74\x40\x9b\xe7\x92\xf1\x40\xe4\x87\x27\x75\x05\xac\xc0\x83\x21\x7d\x58\xd1\xa4\x1d\x3d\x2c\xcd\x02\xc2\xad\xf9\xa6\x02\x3e\xb1\x29\xcc\x7d\x75\xb0\x26\xde\x3a\x45\xf4\x3f\x2e\x5b\xaf\x99\xb3\x20\x07\x79\x46\x00\xe6\x83\xbc\x7d\x3a\x77\x9b\xe4\xa5\xdb\x3c\x70\x0f\xeb\x33\x38\x8e\xac\x42\x48\xa1\x0e\x8a\xf7\xbf\xd8\x22\x93\xfb\x32\xa3\xf1\xc4\xfc\xfa\x6d\x1a\x5f\x2a\x31\xc7\x21\x28\x1e\xe4\x74\xe7\xbf\x32\x57\xf1\x35\xc1\xc4\x8f\x07\xca\xb6\x66\x5e\x66\x73\x11\x7e\x81\xee\xef\xdf\x11\xf7\xf9\x10\x61\xe0\x6c\x15\x3e\xb9\x5e\x51\x5a\xe2\x59\xab\x04\xa5\xff\x6e\x29\x34\x60\xcb\x40\x09\x0f\x1f\x5e\xa0\xab\xca\xc5\x92\xed\xd9\xdc\xb3\x83\x95\x07\xee\x61\xc1\x36\xe8\xce\x9d\x1e\xac\xc5\x95\xa8\x6a\x84\xd0\x79\x74\x38\xac\xcc\x5d\xc8\x4e\x21\xd5\x32\xdb\x0e\xa5\xdf\x87\x0b\x08\xc1\x6e\xdd\xe6\x5e\xa3\xad\x8e\x6b\x62\x1b\xa9\x8a\xd4\xf9\x31\x6b\x87\xca\x7c\x52\x02\x2b\x0b\xc5\xf0\x77\xe7\xe4\xbd\x33\x23\x5a\xc6\x8f\x3f\x22\xb3\xb4\xc9\x53\x95\xeb\x3b\x7c\x72\xb4\xbc\xe8\x5d\x5c\xc1\xf5\xe8\x5b\xfe\xb3\x36\x3c\xf5\x7c\x46\xdd\x4a\x01\x31\x27\xae\x9a\xf7\x89\xbc\xb7\x16\xf8\x82\x56\xf8\xfc\x26\xc5\x94\xd5\x72\x54\xd6\x6c\xe6\xee\x55\xe9\x2f\xea\xd2\x7a\x8b\xa8\xfc\xdb\x37\xc9\x4f\x66\x91\x8a\x25\xc8\x10\x51\x19\xbe\x5b\x4b\xe4\x89\x13\x8b\xc8\x5d\xd2\x32\x38\x15\xf3\x7d\x8b\xf0\xec\x27\xfb\x07\x85\x53\xe4\x52\xb7\x80\x39\x7d\xc3\xe5\xf7\x62\xae\xf6\x48\x1a\x35\x59\x42\xae\x41\x99\x90\x52\xd3\x53\xac\x75\x0a\x68\x95\x61\xe4\x79\x01\x13\xcc\x86\x5c\xef\xd1\xb0\xee\xb7\x92\x72\x13\xf6\x70\xc7\x95\xda\x17\xf5\x79\x23\x96\xab\x68\xfc\x76\xc4\x10\x95\x20\x84\xfd\x58\xee\x2c\xf7\xe1\xee\xa4\xe8\x29\x95\x70\x3c\x55\x3a\xb2\x50\xd7\x1d\x6a\xf0\xdc\xf5\x5f\x37\xe9\x0a\x30\x60\xe0\xa8\x30\x8b\x7f\x78\xbf\xfc\xf4\x88\x31\x44\x2a\x2e\x94\x09\xdd\xb9\xc9\x2f\x40\x12\x37\x37\xc0\x2e\x4c\xb0\xb8\xed\xbe\x42\x3c\x42\x26\x72\x08\x2f\xf9\x3f\xdc\x9f\x34\xb1\x0d\x0e\xac\xe1\x7f\xdb\x6f\x67\xac\x40\x21\x04\xd6\x33\x8b\x9f\x91\x15\x0c\x43\x06\x8c\x9c\xf3\xd7\x76\x8d\x50\x4a\x03\x6e\x1b\xad\x28\x9c\xee\x56\x2c\x18\x27\xb5\xb4\x4d\xe1\xd4\xd4\x1b\x06\xa6\x0f\x1e\xe0\x7d\x7f\x74\x21\x99\x6b\xb9\xa6\xaa\x90\x76\xdf\x9b\x3a\x5e\xd3\xad\x23\xcf\x8b\x87\x0f\xbd\x35\xf1\x21\x8f\xda\x75\x69\x14\xfa\x4f\xf9\xd1\x5a\xde\x6a\x62\xe6\x61\x83\x61\x1f\xb1\x98\x8d\x59\x79\x51\xcb\xfe\x02\xdf\xb0\x54\x01\xb0\xd1\xcf\x0f\x52\x00\x15\x20\xeb\x58\x28\x86\xaf\x6d\x4f\x56\xce\xc7\x5d\xf1\x1f\x8f\x19\x28\x3c\x7a\xeb\xb4\x0a\x71\xfd\x99\x97\xe1\x69\x2c\xeb\xc4\x26\x4e\x84\xe8\xfa\xb5\xa4\xd3\x0a\x5a\xf2\x05\x05\x7b\x6c\xf4\x58\x9e\x3a\xdd\x24\xd1\x0a\x81\x6f\xc0\xfc\xe4\x5d\xcb\x9c\xf5\xc9\x9f\xd7\x1d\x0b\xa0\xac\x2a\x73\xdb\x79\x0a\xff\x8d\x92\xea\x30\x16\xf4\xc2\xa0\xbe\x4c\x0f\xca\xdb\xcc\x8a\xea\x09\x6c\x42\xfe\x9d\xbf\x7b\x7f\x7a\x19\x4a\xd8\x2e\x23\x41\x6e\xe5\x9f\xf8\xd5\x1b\xd2\x9f\x98\x4f\x90\x92\x5f\x67\xff\x70\x5e\xbf\x44\xcb\xbe\x08\x8f\xdd\xf9\xe0\x1d\x51\x43\x13\xb3\x30\x9d\x8f\x3c\xfe\x77\xcc\x18\x25\xe1\xfa\x3f\x25\x4d\x8e\x75\xa4\x0f\xc8\x84\x38\x3e\xcc\xd1\xfa\x2a\x85\x82\x98\x1e\x6c\x5c\xac\x49\x6a\x4d\x2e\x4c\x9a\x16\x27\x28\xde\xfc\xf4\x77\x28\x13\xae\x71\x23\x86\x4f\xdf\x10\x8a\x57\x86\x0d\x67\x3a\x8a\x50\x35\xc8\xc8\x27\xcd\x98\xd8\xde\x3e\xa5\xc0\x0d\x24\x27\x26\x15\x5d\x67\xca\x97\xfa\x77\xa3\x34\xa9\x56\x6a\xc6\xbd\xe6\x4c\xf7\x7e\xc5\xfc\x45\xb5\x05\xdc\xdc\x27\xfa\xd3\x79\xcb\x0b\xc5\x30\xd3\xae\xa1\x07\xca\xa4\x4a\x1d\x0e\x2e\x89\xaa\x26\x45\x53\xba\x84\x3b\x89\x2d\xa1\xb4\x5f\x9b\x3b\x42\x8a\x81\x90\x26\x9c\xcc\xaf\xad\xab\xf4\x92\xc0\xc7\x9d\xc4\xc4\xa2\x2a\x39\xb4\x4a\x23\x6f\x5b\x94\x18\x31\xd4\xb0\xcf\xf6\xf4\x2f\xeb\xc4\x23\x09\x90\xfc\x56\x2d\x2f\xe1\x40\x5d\x2f\x46\x0c\xad\x78\x3a\x59\xa8\xb2\xad\x60\x7b\x33\xa7\xc6\x25\xa5\x2f\x62\x4d\x1d\xee\x5c\xff\xd5\x1a\x2a\x1c\x23\x03\xc3\xad\x14\x3e\x54\x56\x5c\x2f\xc0\x6a\x58\x94\x7d\x7f\x1b\x29\xbd\xb0\xcd\x80\x83\xd5\x7b\x4b\xf0\x6e\x14\x32\x9c\xa8\x48\x50\x27\x44\xf7\xbe\x13\xe3\x06\x3c\x61\x99\x99\xdf\x54\x17\xfd\x09\x12\xd5\x87\x01\x17\xba\xe6\xfc\xba\x89\x97\xc6\x54\xb7\x42\x31\x1c\x36\x78\xa8\x42\xe0\x48\x1c\xff\xf8\x0b\x1c\x19\xaf\xad\x17\xab\x10\x37\x6e\x0b\xa7\x37\xf7\xdb\xf7\x6a\x0a\xee\xc8\x4f\x04\x85\x20\x2c\xfe\x93\x46\x62\x04\x01\x49\x4f\xb0\x42\xb7\x5f\x0a\x13\xdb\x79\x34\xa8\xd8\x2a\xeb\x2f\xf7\xdd\x43\x9a\xbe\x06\x31\x12\xcd\x8e\x71\x8b\x44\x93\x28\x2a\x0d\x6d\xe2\x59\x62\x2b\xfe\xc7\x1a\xd8\xfd\x2b\x0a\x1c\x6d\xc2\x83\xc2\x75\x63\xc5\xdc\x9a\x21\x23\xaa\xec\xbf\xb0\x51\x30\x5a\x88\x61\xc8\x27\x1a\xfe\x76\x80\x36\x8f\xae\xd5\xa8\x87\x45\x77\x72\xc8\x4a\xb5\x56\xb5\x6d\x54\xa2\xc2\xec\x35\xbf\xf0\x98\x36\x06\x8f\xe5\x53\x78\xee\x7a\xfd\x69\x5d\x8e\x95\xeb\xfb\x0a\xf5\xca\xab\x06\xa4\xbf\xe2\xa4\x76\xc9\x07\x7f\x45\x53\xa0\x6a\xd0\xc0\xad\x60\x06\x54\x72\x7f\x44\x3a\xef\xea\xc0\x2c\xf0\x90\x8d\x9d\x1b\xd7\xae\x15\x89\xeb\x5f\x15\xf0\xb9\x45\x1d\x31\x08\x0f\x37\xee\x4d\xbf\x2c\x31\x09\xf5\xf9\x28\xa7\xd8\x9d\x3b\x3f\x42\x55\xdf\x73\xb1\x81\x3d\x0f\xf0\x98\xd9\x83\x02\x9f\xe2\x19\xd8\xc5\x00\xd1\xfc\xc1\x5e\x99\x28\x94\x89\x8b\x5c\x83\x88\x71\x51\x3f\x4d\x2d\xc1\xa1\x26\x66\x2e\xf1\xe2\x7e\x74\xf6\xda\xa9\x50\x82\xcf\x71\xd0\xfa\xe6\x19\x62\x66\xcd\x3e\x8d\x06\x83\x58\x85\xcb\x9f\x17\xc3\x6f\xb7\x43\x96\xba\x10\x55\x2a\x98\x29\xb3\x87\xcb\x8f\x6a\xa4\x87\x5a\x0d\x23\x16\x4b\x02\xe8\x10\x74\x8c\xe2\x8f\x72\xa7\x0b\x59\xf8\x82\x16\xe5\xc5\x1e\xde\x2b\x27\xe0\xb2\xaa\x13\x2b\x7b\x6f\xef\x11\x3d\x71\x91\xc4\x3e\xfa\x8e\xdf\x44\x42\x14\xd0\x50\x98\xa2\x7e\x7e\x43\x12\xe8\x8c\x72\x13\x88\x3f\xbb\x72\xb7\x46\xa2\xc6\x38\xca\x96\x45\xdf\x29\x77\x6e\xe3\x10\xb1\xde\x75\x0c\xa9\x40\x54\xb1\xf3\xc4\xb6\xa6\xc9\x23\x12\xce\x2a\x8a\xb9\x89\xdf\xdb\x0d\xbb\x7e\x09\xaa\xdb\x2a\x92\xfe\xed\x2d\x8a\x26\x42\xe0\x19\xb6\x70\xfe\x98\x3e\x4a\x3b\xd6\x4e\x09\x80\x5c\x41\xfc\x8a\xa5\x0e\x5d\x1b\x95\xc3\xce\x15\x8e\x5b\x77\xe6\xde\x57\x84\x0c\x3f\x97\x25\x8b\x5e\xf8\xf6\xb2\x86\xdc\x0f\x58\x15\x37\x04\x78\x14\x6a\x36\x05\x39\x8a\x4c\x93\x88\xd9\xf4\x85\x99\xe2\xc1\x53\x66\xa6\x9a\x90\x23\x0f\x7f\x4c\x4b\x9f\x02\xdf\xc2\xc8\xf3\x45\xfe\x93\x74\x3e\x33\x67\x5e\x49\x96\xde\xe5\x5a\x79\x9a\xfa\xf1\x44\x68\x22\x47\x39\x60\xa1\x18\x4e\xc9\xca\xce\x51\x19\x43\x08\xfd\xa7\xb1\x92\xf4\x6b\x91\xb8\xca\xfb\xe4\x56\x5d\x09\xc8\xa3\xcc\x87\xe8\xf7\xdb\xf9\xba\x3a\x38\xd8\x8a\x91\xa4\xf7\x98\xfb\x61\x19\x16\xc9\xa6\x06\xc0\xf9\x32\x81\xd6\xa5\xa0\xeb\x51\x95\xa4\xa0\x14\xf7\x3e\x9b\x94\x4e\xa4\x5c\x28\x86\x97\x4e\x4c\xe7\x5a\x86\x0d\x59\x78\x77\xee\x09\x45\xc9\xda\x25\x2e\xe2\xae\x8f\xd9\x55\x2f\x24\x40\x87\x49\x13\xa7\xf1\xe6\x44\xc7\x95\xc9\x71\x6d\xb2\xe2\x9d\xf5\xac\x7c\x91\x12\xb5\x4c\x70\xae\x2e\x74\xe8\x97\x32\xad\xd5\x70\xe2\x2b\x93\x9f\xa3\x58\x91\x97\x4b\xa4\x50\x0c\xaf\xdc\x3a\x48\xc9\xc0\x05\xa3\xb0\xd8\x9d\xf9\xcd\x79\x0d\x3c\x12\xb0\x3a\x26\xb6\x2d\x2d\xca\xb3\x8f\x68\x48\xc0\x32\x36\xa9\x66\x51\x1e\xae\xb7\x06\xa6\xaa\x21\x50\x8b\xc9\x94\xf7\xa7\x9f\x0f\x1f\x77\x88\xd6\xc8\x89\x55\x12\x26\xef\x8a\x0c\x38\xfc\xe3\x03\xca\x16\x24\xcc\x26\x2e\x3c\xfe\x5f\x1f\x4c\x56\xad\x00\x73\xcb\x23\x3b\xae\xd3\x8e\xab\xdf\x13\x84\x2c\xbb\xcb\x82\x16\xd1\x1c\x46\xd6\x53\x37\xf1\xcd\xeb\xa3\x49\x53\x75\x22\x81\x9d\x87\xb4\x7e\xdf\x68\x49\x3f\xb1\x79\x41\xfb\xad\xa9\xb1\xfb\x23\x23\x9e\xaf\x9a\x72\x3c\x58\x97\x85\x8a\x07\xfe\x5a\xd9\x9a\x96\xdb\x10\xb7\x8c\x8d\x58\x3d\x2c\x5b\x29\x37\xc9\xbd\xf3\x76\x88\x18\xc4\xdc\x7c\x42\x01\x90\x61\xd7\x8b\x4d\xbb\xfe\xfc\x5a\x92\xa4\x10\x2e\x44\x97\x09\xfd\x34\x51\x18\x03\xe9\xbd\x3b\xf3\x73\xcd\x76\xc8\x40\x25\xe2\x62\x01\xb6\xc9\xed\x38\xc7\x2f\x6b\x1b\xbb\x85\x69\x62\xe1\x2f\x0b\xe5\x05\x14\xf3\x08\x05\xb4\xeb\x03\xd1\xfd\xc0\x5d\xdc\xfb\xa6\x3b\xf3\x91\xf5\x9a\x51\xbf\x83\xb9\x52\xb6\x27\x7d\x83\xbe\x30\x5b\xbb\x7d\x6d\x54\xe7\xda\x12\xfc\x94\xed\x3a\xac\x10\x5e\x7d\x0b\x92\x9f\xcc\x97\x77\x8e\x82\x84\x24\xda\x9f\x3e\xf1\xfc\x66\x99\xec\xef\xcf\xd2\x46\x51\x34\x28\xd9\x22\x55\xc8\x7e\x69\x7f\x93\x59\x8b\x10\xae\xf4\x46\x35\xd9\xd0\xa0\x2a\x14\x17\xd9\x47\x56\x42\x78\xbe\x25\xfa\x16\x34\x91\x3c\xcc\xda\x8f\x8b\x1e\x11\x75\xb0\x4f\x1c\x3e\x08\xb8\xeb\xf1\x14\xef\x3f\xe6\x61\xfc\xa1\xa6\x37\xc5\x5d\x81\x28\xcb\x3f\xb0\x47\x81\x4f\xda\xc4\x05\x04\xe4\x4f\x34\xdb\x1c\x1a\xa5\x8b\x04\xd9\x71\x80\xbf\xef\xc1\xd8\x43\xc5\xe5\xfe\x55\xe1\xb5\x1f\x42\x08\x9e\x32\x35\xad\xf8\x92\x5d\x96\xbf\x52\x69\xf0\xfb\x04\x6c\x67\x92\xc9\x9d\x66\x5f\x5e\x62\xc8\x03\x8f\xc7\xf0\x6b\x23\xaf\x48\xa7\xaa\xd1\xdb\xcc\x1f\x7a\x5d\x53\x26\xe6\x62\xd7\xf7\x6e\xaa\xd9\xa8\x91\x10\xd3\x32\xff\xf2\xa4\xee\x04\x58\x2a\xe1\xb8\x24\xce\x9d\x5b\xac\x4a\x92\x56\x11\xe3\x4e\xc3\xdb\xc6\xea\x98\xad\x2a\x16\x86\xa5\x99\x65\xf3\xd3\xd3\x5b\x97\x78\x1e\x72\x05\x80\x36\xdd\x76\xb9\xfb\x71\xc5\x6e\xd3\x30\x82\xb8\x53\x1e\x4e\xd8\x2f\xac\x41\xca\x3e\x66\x05\x1f\x71\xf7\x2d\xfb\x9d\x74\x3a\xe4\x5b\x0c\x23\x1f\x27\x95\x72\xe6\x7a\x31\xf3\x9c\xc3\x25\x89\xe4\xc8\x75\xf0\x3e\xdd\xfc\xa8\x4e\xbc\x34\xff\x36\xef\xac\x48\x19\x4c\x73\x96\x3e\xe8\x69\x2c\x65\x83\xe3\x7c\x3f\xe5\x0c\xfc\x85\xbe\x32\x4a\xd2\x72\x19\x73\x56\x62\xb8\x71\xc2\x48\x5d\x45\x5f\xb6\x83\x79\xb5\xaa\x95\x34\x6d\x60\x94\x04\x6b\x37\x6b\x4c\x33\x9e\x0a\x19\xb2\x08\x68\x3b\x31\x58\x8a\x13\xab\xb7\x77\xaf\x27\x61\x07\xdc\x05\xa7\x5d\x24\x90\x1f\x9b\x27\x20\xee\x81\x6f\xa3\x4e\x5e\x94\x5c\xd2\x5b\xac\x91\x87\xaa\x4a\xdc\xcb\x36\xda\x53\x4e\x89\x71\x6f\xf1\xef\x77\x69\x02\x70\x9c\x03\x11\x08\xb5\x5d\xfe\x8a\x57\xac\x57\x68\x9d\x08\x84\x5d\x78\x06\x32\xf8\x05\xc5\x54\xc7\x8a\xee\x34\x38\x61\xc1\x38\xd5\xcd\x88\xdb\xa9\x16\xbb\x73\xcb\x8f\xca\x0f\x30\x99\xb7\xb5\xf9\x65\x91\xef\xd2\x20\x66\x16\x62\x9e\xa5\x08\x56\x3f\xb9\x30\x89\xa3\xe3\x79\xe1\x96\xc9\xbf\x08\x9c\xda\x9b\x0a\xc5\x70\xd4\x3c\x0d\x9e\x2c\x3e\x7b\xb3\xd3\x69\xae\xfd\xc9\x2b\x24\xca\xd8\x89\x5b\x1d\x17\x26\x35\xb9\x1a\x61\xcf\x53\xd4\xef\x9f\x38\x2b\x5b\xaa\x9d\x18\x03\xa1\xfd\xd3\x1a\x25\xa1\x46\x3b\x31\x4b\xf6\xe9\xd1\xd1\x63\x20\x89\xf4\x1a\x86\x45\x91\x8b\xec\x86\x47\x9a\xe2\x63\xfe\xfa\x55\xca\xe9\x30\x1d\xc2\x11\x4b\xbc\xfb\xda\x27\x2f\x33\x02\x07\xf1\x2f\xfd\xee\x0d\xc9\xce\x70\x90\xd2\xed\x9e\x78\x52\xcb\xa3\x03\xcf\xa7\x4e\x7c\xfa\xc3\xe7\x57\x68\xe0\xdb\x32\x58\xdd\x65\x2e\x79\x0f\x8c\x30\x6f\xe1\x73\x1b\xac\xcb\x4a\xff\xf4\x35\x48\xf2\xa6\xb4\x4c\x9e\xc6\xb5\x30\x5a\x74\x76\x72\x8d\x5f\x91\x82\x6b\x31\x7e\x64\xa2\x51\x69\xd2\x42\x31\x2c\xbc\xaa\xa5\x7a\x14\x99\x71\xbc\x24\x69\x8c\x01\x17\xa7\x04\xca\x55\x76\xec\x41\xc5\xee\x0d\xab\x0e\x07\xd1\x67\xf8\xd8\x9b\x69\xed\x3a\x3b\x2a\x77\x3c\x1f\xf4\xf6\x13\x80\x6c\xf6\x97\x6b\xf4\x9c\x3c\x28\x6b\x16\x02\x9f\x69\x11\xd3\xa3\x1a\x4a\x20\x5c\x2f\x3d\xa2\x40\xe1\x14\xa1\xa8\x7c\xff\x51\xda\xed\x48\xa2\x6c\x4b\x10\x68\x57\x8c\x80\x4a\x1a\xd0\x56\x50\x49\xdf\xbe\x52\x01\x44\x81\x4d\xe9\x04\x5d\x37\xdd\xc6\x8e\x83\x60\x96\x95\x5f\xfb\xb8\x8e\x71\x02\x7e\x37\x30\x08\xfe\x5b\xea\x1c\xa2\x12\x4f\x4a\x17\xe7\x15\x4a\x68\x99\xf0\x88\x40\x10\xff\xe3\xa1\x6b\xc4\xec\x83\x81\x50\x61\xce\xdf\xa2\x08\x3e\x58\xc8\xc1\x36\xf6\x84\x50\xfc\xb1\xad\xe9\xe5\x34\x5d\x03\x54\xd4\xd2\xc7\x66\x4e\x97\x7a\x29\x22\x56\xe5\xe9\xf2\x27\x06\x36\xd9\xd0\xb8\xa6\x98\x37\x5d\xbd\x56\xf7\x2a\x32\x2b\x71\x03\xea\x5f\xf2\x6a\x3b\xc5\xf3\xa2\xfa\x4c\x14\x34\xb5\xb1\x72\xd3\x4f\x6e\x9f\x51\x28\x86\xbb\x5e\xd0\xbb\x6c\xb4\x2a\x68\x7d\x39\xbb\x6f\x4a\x7a\xbf\x13\x40\x27\x99\x53\x27\xe5\x99\xc2\x5d\x3e\x65\xb1\x16\x62\xfe\x92\x93\x82\x87\x42\xba\x0a\x1e\x4f\x7a\xa3\xbf\x3f\x3c\x3a\x1d\xad\x0b\x9e\xdf\x88\x73\x94\xdc\x55\xdb\xb5\x3e\x69\xc0\x9c\x14\x53\xe4\xc2\x66\xdd\x97\x0f\xd9\x05\xcc\x9b\x6e\x70\x71\x7f\x6a\xa2\x2c\x8e\x7c\x46\x6a\xd1\x8e\x29\xa9\xea\x2e\xdc\x96\x49\xf4\xf6\x06\xbc\x98\xd4\x5d\x75\xa2\x3f\x88\x70\xcb\x0a\xd5\xc3\x6e\x32\x78\xd8\x3d\xb7\x58\x21\xe0\xa0\x28\xf7\x18\xd1\x64\x6e\x59\x83\xf6\xf9\x9e\xe1\x90\x12\xcf\xa5\x8c\x78\xb4\x2e\x23\xc8\x89\xe5\x9a\x53\x38\x9c\x87\x4d\xd3\x87\x2a\xad\x70\x71\x16\x01\xbf\x71\xfa\xc5\x26\x92\x80\x8d\x8c\xb8\x74\xcf\x0f\x7f\x5b\x35\x02\xa0\x8c\x1b\x37\x64\x3f\xd9\xae\x31\x8c\xcb\xa6\xdf\x23\xe7\x74\xe5\x5e\xc0\xec\x2d\xc2\x3c\x7f\xed\xdb\xaa\x19\x95\x05\x49\x4f\xf2\xc0\x83\x8a\x0b\x34\x81\xfb\xf9\x86\x5d\xda\x68\x95\xda\x81\x23\x6e\xd7\x1f\xbf\xaa\x08\x0a\xb0\x44\xda\xea\x65\x45\xc8\x89\x11\xe8\xee\x85\x93\xcf\x29\xf7\x65\x32\x8b\xeb\xce\xac\xda\x2e\xbc\xf6\x11\x33\xa9\xcb\xa1\xa4\xdd\xf9\xde\x6f\x2a\x2c\x3d\x62\x54\x85\xe1\xd4\xad\x3b\x64\xad\xd1\x09\x2a\xf5\x99\xef\x77\x0d\xd2\x92\x62\xde\xaf\x79\xb3\x45\x6d\x76\xc6\x2a\x1e\xbc\xe0\x3c\xda\x84\xf2\x00\x3c\x68\x7c\x3f\x0f\x79\x49\x0e\xf7\x49\xb3\x44\xfc\x9e\xc7\xd3\xc7\xdc\xef\x79\x42\x66\x7d\x98\x1e\xe0\x06\x35\x5f\xf8\x5e\x2a\xad\x81\xfc\x83\x47\xd3\x43\x37\x87\xfa\x94\x51\x1b\x89\xc6\x44\xfa\x9d\xb7\x81\xf7\x5c\xe1\x0e\x54\xb3\x71\x6a\xb0\xf6\xe8\x44\x39\x5d\x34\x89\xa7\x6c\xae\xf0\xb9\x31\x12\x1b\xab\x8c\x36\x93\xdd\x9a\xdf\x29\x97\xda\x42\x25\x52\xe2\x52\x7b\xd9\xe7\x47\xa5\x77\x97\xdb\x52\x6a\x41\x2d\xcd\x98\xea\x3c\xd6\xee\x7b\x86\x89\x53\x0a\x98\x97\x34\x9e\xe6\xec\x51\xd4\x28\x94\xe9\x80\x05\xa9\x56\x7b\x6b\x2b\x50\x39\xc2\xdb\x7b\x6b\x7e\x4e\x8c\xca\x9e\x05\x58\x89\x2e\x81\xe6\x64\x61\x31\x6e\x2e\x8f\x32\x3f\xd6\xd4\x1c\xeb\x5c\x57\x59\x98\x71\x66\xbe\x7b\xbf\x86\x1f\x22\x36\xd0\x66\x45\xe8\x39\xdc\x7e\x8d\x76\x19\xd6\x88\x49\xbc\x54\xf7\xe3\xc2\x2a\x5d\x87\xcb\x40\xa6\x24\x2a\x2c\xdb\x93\x5c\xda\x35\xbe\x8d\xcd\x17\xd2\xc9\x54\x07\xb5\x5c\x8f\x72\xc6\xb3\x9e\x4c\x8d\x14\x53\xa8\xc5\xa8\x8e\x54\xaf\x94\xdb\x56\x2a\xe5\x35\x31\xaa\xd1\x57\xf9\xd6\x72\x55\xc6\x27\xaa\x7a\x04\x90\xfb\xec\x50\x58\xd3\x28\x48\xc1\x2a\x7f\xc6\x4a\xe2\x59\x89\xb0\x42\x31\x9c\xb5\xe1\x3a\x65\x76\x54\xa6\x1c\x1c\x4c\x9b\x09\xc2\x74\xbe\xd6\x3d\xe7\x26\x7c\xb1\x84\xf8\xe7\x0f\x0b\x9c\x98\x85\x08\x03\x65\xc9\xee\xcc\xec\xa7\x74\x22\xab\x6b\x44\xa9\xb5\x70\x43\xbd\x78\x3a\xf9\x28\x26\xc7\xc4\x3c\x34\x4a\xdb\x39\x81\xe7\x11\xe4\xde\x38\x53\x04\xcc\x96\x95\x52\x2f\xc8\x21\x36\x6f\x51\xe5\x1e\x9b\x37\x42\xa6\x6d\x4d\x33\xaf\xec\xb5\xc7\x87\x8a\x6c\xdd\x32\x18\x2d\x2b\x2a\xac\xd9\x23\xd3\x15\xc2\x5a\x57\x6c\xd3\xd1\x9d\xbb\x67\x43\xba\xa6\x62\xc8\x17\x58\xe9\xcf\xbf\x24\x7c\xef\xb8\x4d\x42\x82\x33\x36\x57\xc8\x04\x42\x34\x17\x3b\x24\xdc\x03\x4c\x24\xbb\xb7\xaa\x4e\xd2\x53\xa3\x3f\x72\x7a\xc3\xc3\x59\x40\x3b\x31\xa8\xd5\x0d\x3e\x29\x8c\xc0\x40\xad\x36\x3f\xec\x94\x62\x8e\x52\x47\x1e\x94\x76\x67\xe6\x41\x46\x74\x07\x66\x06\x36\x79\x25\xfe\x8d\x7e\x1a\xa0\xc7\x42\xcc\x26\x58\x25\xa7\xe6\xcc\x0f\x35\x96\x02\xa9\x58\xc2\xb9\xe1\xa9\xbe\x49\xef\x09\x75\x92\xf8\x00\xd8\x2f\x6a\x98\x0a\xc2\x90\x6b\xa2\x94\x75\x4a\xc6\x4c\x37\xc3\xdc\x80\x61\xa7\x84\x59\x45\x34\x9f\x38\x6a\xe8\x9e\x37\x20\x67\xba\x75\x5d\x20\x14\xb8\x76\x5e\xa5\x1f\x1b\x1b\xb1\xa4\xdd\x94\x7d\xae\x55\x25\x4c\xc1\x28\xbc\xd8\x9d\xf9\xe7\x97\x94\x8b\xdd\xc2\x2e\x75\xb0\x0b\xfa\xd5\x7f\x5a\x0b\xef\xc0\x28\xb4\x8d\xb3\xd7\x09\x27\x42\x16\x38\x14\xae\xad\x6f\x2c\x10\x6e\x2c\x16\x75\x79\x76\x36\x91\x89\x31\x6a\xe0\x61\x30\xdf\xb1\x76\x68\xb5\x63\x09\xb2\x9b\x38\x07\xff\x73\xfb\x65\xf1\xde\x83\x8a\x41\xd3\x44\xc4\xae\x19\x30\xa1\x71\xdf\x67\x7d\xfa\x16\x9a\x21\x64\x9d\x8e\x64\x7b\xa0\x23\x9a\x00\x3f\xe7\x55\xdc\xd3\x37\x6b\x58\x22\xe2\xad\x0b\x08\xf6\xe5\xea\x5c\xa7\xcb\x95\x12\x64\x36\x34\x16\xef\xd2\xfd\x57\xaa\xf1\x1f\xbb\x86\x85\x5c\x3f\xc6\x34\x7c\xab\xac\xa8\x6f\x70\xed\x18\x25\xfe\xdf\x77\x41\xc2\xaa\x38\xe0\x8c\xd4\x90\x40\x16\x67\xbc\x43\xda\x0a\x89\xe3\x11\xbb\x2c\xdd\x2e\xc2\x00\x76\x7d\xcc\x7c\x04\xf5\xdd\xe6\xb9\xe9\x30\xe0\x55\x71\x67\x94\xc9\x8b\xee\xdf\xe5\xad\x9a\x46\xbd\x25\x3d\xcd\xb2\xbb\x2f\x5c\xa5\x44\xa7\xf5\xc8\x41\x4e\x60\x2b\x01\x78\x8b\x06\x4f\xf4\x5c\xda\x19\xff\xdb\x5b\xdf\x48\xbf\x6f\x03\x31\x27\xb0\xab\xb1\xfd\xec\xe6\x76\x0d\x34\xe0\x56\xa8\x2c\xca\xb3\xa7\x4e\x41\x8f\x69\x25\x09\xba\x02\x05\x42\x9d\x43\x8a\x4f\x2e\x78\xf4\xf0\xbe\x82\xb6\x32\x86\x85\x9c\x1a\xaa\xb8\xb1\xb7\x7f\x75\x87\x44\x0f\x5b\x98\xad\xa7\x15\xa5\x75\xb0\xea\xa2\xc2\xfa\x14\x4e\x11\xd1\x67\xe8\x6c\x97\xdf\x1e\x95\x9a\x0b\xee\x3e\xe7\x63\xd5\x61\x52\x86\x2c\x30\x3c\xf9\xfa\xf0\x94\x34\x8f\x89\x1d\x6a\x30\x40\xba\x66\xc3\x10\xe2\xd7\x5d\xd4\x2e\x63\x75\x64\x35\x5a\x31\x4c\x55\xc4\x33\xb2\x97\xb4\xc4\x9a\x6d\xbe\x60\x91\xe7\xbe\xf6\xa6\x02\x50\x8e\x0e\xd6\x35\x92\x2e\xc9\x02\xa7\xa9\xba\x19\xb0\x63\x8c\x32\xca\x4b\x04\xd2\xf4\x38\xfd\x93\xde\x29\xef\x5b\xe1\xb7\x52\xec\xce\x4c\xde\x9d\x3e\x30\x2e\x62\x06\xe5\xd2\xc6\x62\x32\xfe\x3f\x4f\xa9\xc2\x5d\x06\xae\xf9\x88\xbb\xd2\x76\xe7\xaf\x6b\x15\x05\x49\xc3\x29\x51\x61\x72\xd9\x9d\xb9\xf3\x40\x3a\x0f\xeb\x44\x7c\x6a\xeb\x8b\x9c\x42\x04\xbf\xed\xe7\x3e\x26\x13\xce\x4e\x62\xe0\x82\x43\x5d\xdf\xb2\x9b\x78\xdd\x9f\xde\xae\xa5\xc3\x76\x14\xcc\xa1\xee\xdc\x20\x45\xec\x5d\xb0\x8d\xfd\x54\x39\x1d\x2f\x9d\xa0\x6a\xd1\x3a\x1f\x68\xcb\x1d\xf6\xee\x96\xc1\x22\x3f\x8f\x0a\x4f\x79\x32\xd7\x1c\x51\xdd\xcb\x31\xaa\x16\x08\x2c\xc1\x8f\x1f\x81\x63\x67\xd1\x1a\x8e\x49\x5c\xb9\x2f\xbf\x3e\x44\x51\xd7\xf3\x71\xc1\x25\xc2\x8c\x6c\xd3\xf2\xff\x4b\x99\x4e\xd0\x1c\x8f\x2d\xef\xa9\xf6\x04\x18\xd0\xf0\x0f\x35\xc8\x56\x4b\x07\x64\x81\x80\x9d\xc9\xaa\x3a\x5a\x42\x29\xf3\x97\x0b\x62\x96\x16\x65\x0d\x65\xdb\x1d\x3a\xa4\xd9\x17\xd5\x18\x46\x42\x23\x35\xbb\xc8\x4e\x57\x25\x06\xf1\x41\xcd\x29\xfc\x37\x1b\x02\x77\xd5\x8d\x21\x93\xf7\xf5\xd5\x43\x08\xf6\x92\x98\xb4\xf0\x6d\x0d\x74\x81\xec\x20\x51\xa8\xb3\x27\xa5\x67\x76\x25\x84\x7c\xab\xa7\xa2\x29\x73\x5e\x1a\xd9\x62\xa3\x09\xe1\x9b\xb9\xee\x94\x0a\x74\x14\x3a\xf0\xd1\xdb\x1f\x3d\x71\xa5\xaa\xf1\x88\x99\x43\xdc\xc4\x3f\x20\xbf\x79\x63\x3a\xdd\xe7\xd0\x8a\x92\x1d\x1b\xcb\xa7\x33\xeb\x7b\xe6\x2a\x1a\xad\xdc\xfa\x46\xa8\x44\xec\x3c\x2e\xb8\x2f\xd4\xe5\xb6\x0e\x5c\xfa\x64\xdc\x6e\xf9\xd7\x4e\x20\xfc\x24\xa3\xef\x7c\xf2\x06\xb9\x31\xc0\xf6\xcf\x00\x23\x9f\xec\xea\x07\x06\x28\xa0\x4f\x87\xdf\x9b\xb7\x1e\x97\xc5\x2b\xf6\x0c\x64\x23\x93\x1f\xae\xae\xf7\xd2\xfb\x80\x1a\x3e\x2d\x09\x9b\xd2\x70\xc0\x6e\x55\xec\x40\x79\xe4\xe7\x4f\x0f\x4a\xb2\x35\x45\x83\xf4\xbe\x67\x65\x15\x8f\x5a\xa0\x45\x37\xac\x5f\x92\x94\x00\x34\x88\xcf\x21\x5a\xb5\xe9\xb2\x38\xdb\x86\x68\x4d\x9d\x9f\x99\xfe\x75\xe0\xf2\x81\x4a\xac\x7c\x3f\x72\xaf\xf6\xaf\x0d\x0b\x3b\x71\xbe\x1e\xee\xeb\xdb\x57\x2c\x23\x32\xac\x28\x2d\x3a\xa8\x65\xf7\x04\x57\x28\x1f\x2b\xf3\xbd\xfe\xd9\x0b\xfa\x9c\x83\xc4\x0e\x33\xeb\x7d\xc5\x03\xb0\x86\xe1\x46\x59\x7d\x46\x3f\x76\x25\xe4\x52\x57\x4e\x89\x7a\x6d\x85\x73\x5f\x1c\x3f\x8f\x76\x2a\xad\xf5\xec\x80\x11\x52\x5e\x1c\xd3\xa6\x6b\xe0\x86\xe9\x22\x93\xa1\x82\xdb\x74\xdf\x3b\x57\xc8\x9c\x38\xc1\x47\xbe\xdb\x0a\xc1\x1c\x14\xb6\x79\xe0\xb8\x73\xb6\xbc\x95\xaa\xa8\x1e\xa8\xee\xfa\xf9\x25\xab\x34\x88\x7a\x09\x99\x08\x94\x11\xc4\x07\xfe\xdb\x66\x21\x32\x42\xba\x7c\x8c\xf9\xad\xfa\xd1\xd7\x24\x88\xb1\x50\x42\x1e\x97\xc8\x97\x9c\x9f\xbf\xd7\xe8\xcc\x16\xaa\xd5\x60\x3e\x9c\x19\x31\x56\xaa\x4c\xaa\xb2\x3a\x99\x47\x57\xf1\x75\x2b\x2c\x41\x3e\x23\xb4\x59\x3b\x3d\x7f\xd3\xda\x64\x53\x75\x2a\x9b\x6a\xed\xe0\x21\x3d\xa1\xe2\x8a\xdd\x99\xbf\x8e\x6b\x2a\x34\xac\x54\x5d\xf7\x8d\x95\xaa\x68\x95\x47\x3c\x1f\x0b\x2f\xf6\xec\x5f\xd7\xe8\x10\x78\x6a\x93\xa8\xba\xf6\x9c\x38\x75\xb8\xbe\xd7\x20\x45\xf3\x86\x54\xac\x12\x67\x93\xfc\x66\x9f\xde\x38\x71\xa2\x7c\x83\xa7\x8b\x2f\x6e\xd4\xd4\xa8\x70\x05\xc7\x9e\x0b\x12\x37\xf0\x5f\xa3\x86\xa9\x23\x96\x3a\x76\xb9\x33\x2e\x7f\x94\xbf\xdd\x27\xd3\x12\xca\x5c\x00\x05\x65\x97\x0d\x1c\xa0\x84\x0c\xca\x45\x02\x1f\x1f\x37\x48\xab\xe4\x40\x16\xee\xc5\x89\x0a\x61\x95\xd1\x2a\x66\xa8\x12\xfd\xfd\x78\x8d\x44\x11\x95\xe1\x35\x6c\xe8\xb0\x86\xf0\x75\x4d\x42\x2c\x7a\x3f\x5a\x15\x3e\x7b\xdd\xb9\x67\xb4\x6e\x28\xc3\x42\x30\x23\x9d\x08\xfc\xea\x60\xea\x53\x18\x56\x00\x6a\x02\xb9\xaf\x6e\xd1\xd4\x9e\x31\x4f\x4b\x61\xf3\x7c\x7b\xb6\xde\x95\x63\x42\xc2\x23\x7b\x2a\x56\xef\xe4\xb2\xf9\x3c\x37\x3f\x20\x5d\x89\x27\x73\x6f\xc9\xae\xc3\xb2\x5d\x02\x13\x18\x45\xa0\x60\xb6\xda\x0f\xb1\x7d\xe8\x48\xe5\x6e\x3a\xab\x6a\x17\x23\x07\x40\x5e\xd9\x99\x6f\xc8\x29\x42\xa0\xe8\x1c\x64\xef\x3a\xaa\x63\x75\xb9\x1d\xf7\xf0\x4d\x09\x7e\xa2\xad\xa5\x50\x0c\x3b\x75\xf1\x30\xec\xe2\x32\x9f\xa4\x25\xb2\x1d\x0f\x9f\xd0\x16\xd2\x23\x3d\x00\xe2\xb2\xaa\x5b\xa8\x8d\xdc\x0a\x58\xc2\xde\xb9\x42\xbd\xa7\xa4\xf9\x4d\xb6\x74\xbc\x87\x2e\x98\xc7\x13\x2d\xb8\x2a\xcf\xef\x15\x12\x1f\xdc\x4f\x28\x1c\xf9\x8c\xd2\x1a\x44\x0e\x08\xf5\x5e\xf1\xe1\x78\xed\x78\xfb\x16\xea\xe4\x36\x02\xcd\x0f\xfa\x80\xac\x88\xc7\xd9\x7c\x50\xb8\x50\xf1\x45\xa9\xd8\xc4\xa9\x81\x70\xe8\xc2\xde\xfa\x93\xe7\x5a\x6d\x00\xe5\xbc\x76\x4c\x0f\x6e\x39\xf1\x68\x8b\x09\x4b\xad\xa5\xd4\x53\x23\xdb\x9c\x9a\x6c\x84\x57\x68\x3d\xfa\xcb\x5f\xcc\x6f\xb2\xff\xaf\xc6\xe7\xb9\x53\xd3\xa9\xeb\x24\xbe\x45\x03\x5f\x20\xf2\x3f\xab\xa9\x84\x56\x30\x65\x15\x92\x32\xca\xbe\x4d\x1b\xf6\x12\xb7\x42\x63\x9e\xcd\x07\x8f\x43\xd0\xa7\xd1\xad\x6d\x46\x21\x01\x81\xbf\xe7\xb7\xee\x4e\x7f\xb1\x80\x95\x84\xc6\x4c\xb1\x3b\xfb\xe1\x44\x29\xe8\xc3\x3b\x00\x9f\x99\xaf\xf9\x54\x32\x1c\xe3\x27\xbe\xde\xa5\xe1\xa3\x02\x06\xc9\xae\x52\x2f\x7e\x76\xba\xce\x3d\x75\x69\xe0\x1a\xb1\x0a\xc5\x7f\xf6\x4e\x8b\xc0\x3b\xc4\x60\xd4\xa3\x65\x5f\xdc\x06\xe9\x27\x7b\x7a\x4d\x1a\x79\x40\x7c\xb1\x75\x33\x97\x3d\x2e\x40\xc1\xd4\x89\x75\xa1\xf3\x77\xdc\x30\x38\xa5\xbf\x69\xe3\x0a\x44\xe9\x01\x4c\x61\x95\x62\x46\xcb\x36\xe5\xdd\xef\xcb\x46\xe8\xa0\x3e\x9f\xb3\xc4\x62\x15\x8e\xcc\x57\x87\x27\xe7\x1b\xe3\x32\xaf\xba\x47\xca\x02\xab\x83\x96\xe2\x1b\x37\xc7\x84\x44\xfb\x52\xe8\x34\x15\x8a\xe1\xa8\x33\x3a\xa0\xd1\x26\x9e\xa6\x30\xb1\x61\x66\xba\xd6\xe3\x18\x38\xcf\x47\x4c\xcc\xa0\x3f\xa1\x64\x5e\xb8\xcb\x20\xf1\xd4\x31\xfb\xf1\x15\x2a\x92\x85\x19\xb1\x34\xf6\xf9\xb9\xb2\xa7\xd7\x36\x63\x4a\x1b\xc7\x6b\x09\xbd\xf3\x05\xb4\x53\x35\x1b\xcb\xb4\x8d\x85\x5c\xef\x53\xdc\x07\x2e\xfe\x22\xff\xef\x69\xd5\x47\xd5\x87\x51\xcd\xd1\x0f\xd3\xa3\xc9\x20\x16\xa5\xf0\x4f\x25\x41\x67\xea\xf4\xe8\x03\xb4\xbc\x37\x40\x99\x50\x54\x2a\xfc\xa6\x5b\x7f\xbf\xa2\xeb\x80\x40\x3c\x8d\x9f\xaa\x3d\x13\x05\x08\xbf\xc1\x80\xd3\x0b\x70\x39\xad\x07\xd5\x69\x11\xde\x18\x50\x5a\x0b\x0f\x3f\x2b\x43\xe9\xd4\xa9\x85\x1a\xbf\x5f\xba\x73\xed\x2b\x9b\xc8\x77\x94\xf9\x48\x6a\x6c\x2f\x9a\x9e\x7e\xe9\x75\x01\xc6\xae\xa6\xb8\x5c\x78\x54\xb1\x85\xb0\xc0\xf3\x2c\x53\xb8\x21\x5d\x6e\xd9\x81\x53\x0b\x58\x5a\xe3\x31\x33\xfb\x98\x5a\x56\x05\x7e\xdc\xed\xc8\x1e\x58\xaa\x0c\xe6\x18\x12\xcb\x72\x0b\xd3\x39\xa9\xdc\x9e\x9f\x5f\x43\xc5\xe9\x0a\xdd\xdc\x4b\x29\x49\xfe\x6c\xde\x08\xa9\x8c\xd7\xd4\xa7\xcc\x7d\x6f\x1e\xe4\x9e\x77\x50\x97\xbf\x79\xce\xf8\x20\x7d\xa0\x3b\x02\x0f\x22\x4e\xf8\xad\xb5\xaa\xaf\x4b\x2d\x28\xd9\xc4\x88\xd5\xa5\x2e\x5d\x04\x8f\xe6\x76\x8f\x21\xce\xb5\xb9\x6d\xc9\xad\xe1\xf3\x2d\x4d\x3e\xe6\x2c\x29\x8f\x1a\xa3\x9b\xec\x53\x4a\x36\x8e\xed\x53\x42\xeb\x3d\xc5\xfc\x9b\x52\x50\xf9\xfb\xce\x13\x1a\xf2\x9f\xe1\x75\x01\x68\xa2\x17\x8a\xe1\xc9\x92\x36\xd4\xa3\x9e\x0f\x3d\x6e\x91\x36\x7e\x78\x20\xb9\x23\x91\xa3\xb6\x56\x96\x3e\x36\x40\xd1\x50\x02\x90\xd1\x7d\xf7\x2a\x8d\x93\xe8\xfa\x55\x71\x29\xb7\x0c\x96\x5b\x54\x30\xba\x78\xd1\xf2\xf9\x7e\x3d\x5a\xf9\xf1\xda\x64\xcf\x3c\x49\x32\x2d\xd9\xc8\xd0\x89\xb7\xe1\x89\x9a\x0e\x9c\xb5\x29\x2b\x07\x42\x9f\x22\x7c\x71\xa3\x8e\x25\x63\x51\xd1\x2d\x62\xcf\x73\x1b\x64\x25\xd3\x36\x63\xc6\x8c\x42\x31\xec\x7f\x3c\xee\xd2\x04\x5e\x00\xee\x4a\xb9\x86\xe2\x53\x4c\x59\x89\x08\x6b\x82\xeb\xee\x95\x01\xc2\xc1\x26\x31\xc0\xbf\xf8\x57\xbd\x12\xae\x60\x14\x33\x58\xec\x63\xb1\xf8\x31\x95\x92\xce\x18\xe5\x68\x70\x51\x78\x16\x95\x3e\x5e\x15\xf9\x96\x52\x79\x67\xfe\x94\xd7\x4d\x1e\xdc\x32\xf1\x0c\xe4\x73\x9d\x86\x28\x59\xf5\x5e\x15\x0e\xfc\x41\x45\x68\x90\xe5\xd7\x2c\x90\xf1\xb8\x6d\x12\xdf\x45\x5c\x98\x78\xf8\xeb\x5a\x1b\xd4\xac\xc4\xf8\xf8\xcc\x5f\x5d\x95\xaa\x81\x5d\x13\x81\x06\xca\x03\x47\xb4\x1d\x84\x0c\x20\x56\x43\x8b\x73\xe2\xb9\xc1\x62\xc9\x90\x53\x22\x95\x20\xf1\x5e\xff\xfd\x06\xad\x73\x8c\x6c\x9b\x4f\xf9\x45\x10\x5a\xf7\x92\x1c\x6e\x95\xc0\xe7\x2e\x7d\x37\x05\x5d\x52\xf3\x0f\xd7\x15\x10\xc2\xe5\xe7\x06\x29\xed\x92\x12\x65\x02\x01\xf4\xe9\x01\xe9\x94\x66\x3d\xf2\x2c\x9f\xf8\x3d\x18\x9f\x77\xe7\x7e\xbf\x36\x9d\x99\x25\x82\x97\x30\xe0\x89\xb7\xf9\xc8\x13\xba\x0e\xb9\x1f\x77\x7f\x8f\x58\xaa\xf3\xad\xc1\xb8\x46\xc6\x4a\x85\x8d\xe8\x72\xff\x15\x5e\x8f\x44\xeb\x71\x71\xab\x8a\x51\x0e\xa2\xe3\xc1\xa3\x47\xfe\xfe\x6b\x14\x7e\x9a\xd0\x24\x44\x29\x50\x57\xee\xc1\xe9\xb0\x2f\x7d\xd4\x15\x9d\x60\x5e\x1a\x64\x87\xaa\xa6\x63\xaa\x5a\xc3\x8f\x86\x2a\xf6\x0a\xc4\xf5\xad\x02\x43\x2e\x38\xbb\x65\x6f\x7b\x42\x93\x7b\x6b\x15\x72\x6f\x99\xa3\x9b\x60\x42\xb9\x00\x31\x13\xcc\x2a\xe3\x77\x3f\xf6\xc6\x65\xf1\x83\xf8\x64\xa1\x18\x7e\xf5\xc0\x00\x45\x39\x9b\xf7\x18\xc2\x16\x89\x50\x6f\x9b\x31\x5d\x07\xd0\x7c\xb8\xa6\x49\x97\xb4\xc6\xb5\x41\xf3\xcb\x2e\xa6\xaf\x8b\x3a\xb2\xb1\x6b\x70\x43\xe2\xa4\x8f\x30\x74\x96\x96\xa9\x26\x90\xac\x66\x5a\xf5\xd2\x45\xca\xb8\xdd\x22\x65\x3e\x8d\xc8\x2e\x31\x15\x01\x25\xcc\x2a\xa4\xc1\xf7\x53\x14\x70\xeb\x2f\x27\xd9\x59\x99\xd4\x0b\xc5\x70\x9a\x36\x4b\x04\xcd\x0f\x87\xda\x12\x55\x93\xfb\xd7\x5d\x29\x7d\x6f\x81\x56\x8a\x7e\xf3\xe4\x02\x29\x8b\xd5\x81\x1a\xc8\x8e\x6e\x28\x4b\xc5\x9e\x6d\xdf\xaa\xac\x9e\x15\xed\xfb\x62\xf8\x7e\x93\xed\xaf\xe7\x0b\x5c\x06\x64\x9e\xaf\x68\xb8\xf9\xe8\x8e\xb7\xf0\xfa\x14\x6e\xfe\xfb\x33\x65\x9c\x9a\x3c\x4d\x68\xec\x85\x8f\xb5\x6b\x10\x68\xe4\x13\x47\x83\x40\xdf\xfe\xb2\x26\x41\x61\x23\x27\xdd\xe6\xfc\xfa\xa5\x70\xc8\x6f\xb1\x08\x43\x8a\xb9\xd1\x9d\x7d\x75\x68\x13\x75\x62\xb9\x8b\x6f\x8c\x93\xe1\xd5\x6d\xe9\xe0\x06\x76\x96\xae\x29\xc6\xfc\x40\x14\x97\xc5\xee\xdc\xa4\x58\x65\x04\xb3\x32\x65\x8e\x00\x19\xbc\xb1\x56\xa9\xde\x50\x1d\xec\xc6\xc2\x23\x1f\x4a\x75\x14\x2f\x2a\x32\x0a\xc8\x35\x0b\x88\x8b\xfc\x14\x8a\xe1\xa9\x05\xca\x13\xef\x44\x9e\x55\x0a\x8c\x2a\xc0\x62\xb2\x9f\x35\x87\xeb\x11\xd5\xc0\xcc\x05\xc0\xed\x9e\x11\x3a\x04\xce\x67\xd4\x45\x81\x1f\xd7\x56\x0f\x3e\xab\x55\x38\x34\x10\x8e\x54\xc5\xf0\xf3\x4f\x8b\x65\xa2\xac\x53\x45\x2c\xe6\x3f\xb3\x47\xc3\x3c\x81\x09\x14\xdc\x72\xd9\xd9\x23\x94\xfe\x35\x76\xfd\x06\x47\xee\x0a\x7e\x52\xe6\xaa\x27\xd2\x21\xa8\xea\xc6\xbe\xf1\x99\xe1\xca\x30\x39\x8a\xbe\xbe\xd0\x24\xca\x4e\x7b\x4a\x97\xc6\x72\x84\x2c\x6a\xb6\xd7\xa8\x64\xc3\xdb\x94\x46\xd5\xe1\x56\xd0\x5d\x16\x7a\xe0\xde\x78\xfd\x92\xfd\xfb\x17\x86\x29\xd8\xe1\x12\x66\xc8\x26\xeb\xe3\xfd\x3e\x5c\x56\xe3\x36\x2e\xa9\xc3\xa9\x2b\x5c\xa5\x77\x89\xa3\x65\x6c\x88\xeb\xee\xce\x99\xba\x80\x39\x68\xb8\x43\xca\x9b\xfd\xef\x7b\xe5\x09\xe9\xc0\x2e\x5f\xa3\xb7\x40\xe6\xac\xb0\x64\xd1\x2d\x4d\xf9\xd8\x92\xba\xa6\x4f\x4c\x5d\x9c\x9a\xfd\x67\xbe\x7e\xb3\xc2\xc4\xc6\x36\x31\x68\x4d\x38\x65\x7f\x64\x9c\x56\x11\x36\x5c\x6c\x70\x07\x05\xcf\x07\xd9\xac\xfc\x0d\x8f\x8e\x52\xfa\x32\xa8\x6e\x36\xd9\x1c\xe4\x2f\x6f\x4d\xbf\x8a\x6f\x61\xc7\xc3\x76\x1d\x27\x5a\x0b\x99\x6f\x2a\xda\x89\x65\xe4\xf0\xe7\x14\xfe\xdc\x6a\x52\x55\x77\xb1\x11\x6b\x85\xde\x76\x48\x95\xd4\xb4\xcb\x05\xae\xa8\x8d\xe1\x11\xe7\x1f\x7e\x47\x6b\xfc\xdb\xa8\x1e\x03\xcb\x1e\x3e\xdc\xa4\xc9\x18\x65\x5b\x62\x64\xf0\x9b\xf6\xc1\x6a\x3b\x04\x38\x91\xd1\x3f\xfb\xe9\x63\x1f\xd3\x3e\x8e\x53\x43\x6e\xa3\x19\x38\x92\xfb\xdd\x07\x13\xb4\x90\x6c\x03\x9f\x34\x3a\x07\xfa\xf3\xd9\x36\x17\xd0\x95\x73\xa9\x27\x84\x85\x34\x91\x58\x45\x75\x36\x16\x3a\xe6\x74\xee\xcd\xd0\x11\x70\x68\x49\xba\x56\x85\xfe\x1a\x4d\x09\x35\x56\xe3\x00\x5d\x9a\x39\x6f\x0e\x95\xee\x1b\xaa\x37\x4e\x78\xf3\x87\x43\x93\xcb\x9e\x47\x3f\xf9\x9b\xd7\x65\xdf\x9f\x11\x83\xf3\x83\x93\x10\xf7\xdb\x6d\xda\xa2\x30\xe2\xe0\x1e\x51\x43\xbd\xf7\xe9\x71\xc5\x91\x1e\x41\x9d\xb6\x6e\x06\x6c\xdb\x18\x55\x02\x2c\x98\xb2\xf9\xf1\x4a\xc4\xe2\x3c\x42\x70\xda\x01\xc7\xec\x47\x86\x89\x42\xb2\x99\xe5\xfa\x4d\x4d\x52\xd7\x41\x55\x85\x4b\xb8\xf5\x51\x28\x4d\xe7\x06\x8d\x14\xf3\xed\x7b\xa7\x21\xa1\xb8\xa5\xb8\xf8\x96\x39\xb7\xcc\x99\xcf\x85\x14\x4f\x00\x94\xf8\xda\x68\x93\xf4\x57\xda\x6c\x60\xf8\x24\xb3\x91\xb9\x27\xb5\x2e\x05\xb1\x13\xcb\xf5\xf8\xc8\x7d\xf9\xe4\x95\xe9\x4d\xa6\xf6\x96\xf3\xb3\x6e\x4e\x7f\x68\xec\x5a\x9c\xb6\x03\xcc\xc9\xaf\x9d\x55\xe7\x30\xcc\x01\xc7\x35\xf1\x3c\xfe\xbc\x5a\x4a\xbe\x56\x9a\xd4\x61\x72\xc3\x86\x26\xea\x24\x55\xaa\x02\xad\xc2\x5b\xce\x08\x4f\x5b\x0b\xe3\x9a\x67\x61\x0e\x1c\x4e\x3a\xa2\x9f\x18\x95\x4e\x32\xb8\xb4\xa7\x8b\x7b\x54\xf1\xd9\xb1\x58\xb8\x1b\x81\x83\x8c\x88\x6a\x6f\x0b\xc7\xb8\x29\xed\xad\xbc\x51\xf9\x85\x0f\x46\x6b\xf6\xe5\xf1\xea\x28\x17\xeb\x1f\x5b\xfa\x45\xef\xb6\x42\x7e\xbf\xef\x6c\x56\xe4\x7d\x6a\xd8\x20\xc8\x26\x1e\xef\x32\xfd\x69\x16\x3c\x33\xdc\x55\x43\x2e\x37\xae\x0d\xbd\xac\x3a\x66\xa2\x65\xec\x79\xe0\x4f\xfc\x5c\x8b\x46\x1f\x20\x25\xec\xc7\x8c\xb9\xa8\xfa\x9c\xb1\x42\xf3\x92\xe6\x58\x10\xa1\x26\xf7\xed\xbe\x5a\x92\x38\x63\xfa\x0c\xf8\xcd\xe7\xe7\x2a\xfe\xa1\x88\x81\xb5\x48\xe6\x75\x05\xfc\x6e\xd8\x88\xc0\xd5\x1d\x16\x37\xc3\xe6\x5b\x88\x5c\xac\x68\x1b\x64\x26\x8e\x10\x7d\x5e\xc4\x84\x6d\x5f\x76\x29\x4c\x45\x85\x66\x21\x70\x11\xee\x1a\xa7\x09\x29\x13\xae\xb1\xc6\x0b\xd7\x3e\xcf\xa6\x1f\x97\x8b\x62\x91\xfc\xf5\x4d\x75\xc4\xfa\xba\xc0\x01\x23\x70\xb3\xbd\x67\x94\xd6\x40\xab\x20\xe2\xc6\x18\xfb\x70\x87\x64\xb9\x39\xd8\x29\x14\xc3\x21\x8f\x0d\x96\xc3\xad\x8a\x7a\x0c\x9e\xd7\x96\x90\x4a\x75\x97\xcc\x95\xaa\x71\x7e\x50\xa9\x60\x0f\xbc\x10\xfa\xdf\x9b\xbc\x7c\xc0\x50\xf4\x93\xbf\xed\x91\xd7\xdd\xe4\xf6\x16\xae\xa6\x95\x3d\xf7\xb4\x4c\x9e\x4c\xca\x2b\xcb\x57\x6b\xe9\x16\xd1\x8c\x58\xcf\xf5\x70\x97\x42\x3d\x08\x4a\x1d\xd8\x00\x0c\xce\xe7\xce\x24\xa3\x25\xcf\x40\x71\x2c\xb9\xaa\x0e\x39\xca\x12\xcc\xab\x22\xd9\x5b\xf9\xf1\x0e\xad\x2d\xd9\xa8\xc5\x5e\x39\x97\x9e\x18\xa6\xdc\x44\xbe\x6f\x47\x97\xa7\x78\xbd\x6b\xf7\x69\xa2\x67\x88\xd8\x44\x5a\x87\xfd\x28\x1c\xad\xdf\x14\x76\xa3\x93\x52\x53\x66\xf8\xe1\xa3\xb3\x87\x28\x22\x78\x4a\xf1\x9b\xeb\xbc\x08\x90\xb0\x4f\x51\x86\x7d\xaf\x2a\xc7\x93\xe1\x2d\xa5\x81\x71\x9d\x1d\xe5\xde\xb0\x8f\xba\x73\x5f\xba\x98\x2c\x2f\x71\xf9\x2e\x3a\xa5\xd9\xed\xb5\xcd\x98\xda\xea\xb5\x08\x40\xcb\x73\x63\xe4\x12\x91\x64\xfa\x36\xed\x09\x7d\x46\x1d\x95\x5c\xe2\xf6\xfc\x44\x4d\x36\x00\x5d\x54\xe7\xa5\xee\xd5\xa2\x57\x0a\x36\x9d\x00\xbe\xf8\x67\x61\x7d\x64\x61\x8f\xf8\x20\xb5\xfd\x19\x45\x8e\x9a\x8b\x5c\x0a\xa5\xac\xaf\x2d\xd4\x72\x4e\x2e\x01\x27\x21\x7b\x39\xbb\x8f\xf6\x07\x81\x09\xd3\xa4\x78\xce\x70\xf3\xb3\x49\xd4\xb3\x38\xe8\x46\x16\x83\xd9\xb2\x16\x09\xa2\x1c\xaf\x66\xa3\x58\xbf\x3a\x5f\xd4\x70\x39\xdc\x90\x4f\x3c\xf8\xdc\xd4\x34\xad\xaa\x5c\x22\x3d\x44\xc4\xf0\x8d\x59\x03\x15\x89\x56\x2c\x3a\x3b\x5f\x7d\x5d\xf6\xa3\x4c\x06\x94\x9c\xec\x29\x8d\xa2\x8e\x1d\x52\x61\xe2\xee\xde\xb8\x45\x9e\x04\x03\x39\x35\xbe\x8b\x6f\x7a\x3d\x7d\xdf\x97\xb0\x4d\x70\x3d\x51\x7a\xca\x7e\xf3\x35\x6d\xb8\x5d\x2e\x47\x71\x4c\xfc\xf6\xa7\xfb\x2e\x17\x85\x03\x24\x9f\x61\xff\x11\xc9\xf5\xe1\xfa\xcd\xe6\xcd\xbf\x9a\x0a\x20\xd5\xdb\xe7\xcc\x99\xdf\x94\xe6\xcd\xde\x1c\xd3\x09\x6b\x98\xcb\x40\xce\xb9\x38\x52\x95\x62\xab\x34\xa7\x3e\x13\xfb\x29\x03\xa9\x68\x51\xae\x58\xaa\x25\x9c\x0c\xb9\x7e\xa1\x42\xea\x82\xa8\x53\xec\xce\xed\x7d\x5b\xa5\x46\x3a\x38\x56\x2e\xcb\xfd\x48\x4c\x85\x0d\x5e\x00\xf3\xd5\x79\x61\x89\x6e\xfd\xed\x4a\x47\xb3\xee\xec\xbf\xbd\x96\x7e\xb6\x9c\xfd\x0d\x10\xf8\x07\xfa\x42\x1c\xb8\x0d\xd9\xd5\x54\xad\xf7\xfb\x6d\x4d\x2c\x19\x1e\x72\xef\x28\x6b\x49\x65\x14\xbe\x3d\x71\xce\xb3\x57\x68\x23\x90\x12\x32\xaa\x2d\xf1\x2f\xdb\x47\xca\xaa\xbc\x93\x44\x95\x4d\xa1\x18\x96\x0f\x29\x61\xcb\x67\xa4\x56\x83\x56\xf8\xa0\x07\x46\xeb\xe1\x99\x51\x97\xd6\x95\x8c\x3e\xdc\xbb\x07\x1e\xd3\xfc\x9e\x40\xde\x97\xf7\x82\x67\x4e\xdd\xd8\xfa\xea\x1f\x17\xeb\x52\x61\xd1\x67\x80\x75\x28\x2b\x32\xfe\x0e\x62\x8c\xc0\x24\x75\xc3\x4b\x7d\xc5\x39\x15\x96\x78\x5b\xdf\xd4\x3d\x1b\x3d\x3f\x51\x52\xbb\x64\x43\x12\x76\x0c\x38\xfe\x1f\x0c\xd4\x3c\xbd\x18\xee\x14\xc2\xba\x99\xc1\xf0\xd2\x76\x00\x5b\x3c\x77\x5e\xa8\x0e\x95\x6d\x04\x8d\xd4\xf3\xc3\x75\x92\x74\x00\x72\x6f\xe2\x72\x39\x79\x58\xe7\x1c\x94\x39\x64\x44\x34\x36\xff\xb0\x50\x23\x76\x23\xb8\xd8\xc3\xe3\x47\x14\xe9\x4b\xd4\x00\xe8\x15\x9d\x25\x7b\xea\xc8\xf3\x88\x30\x16\x0d\x7f\xb2\x40\x4e\xde\xea\x30\x91\xfc\x97\xd1\x10\xd3\x9c\x86\xe7\x63\xc6\x65\xa2\x73\xf3\x40\x03\xa3\xc0\xb0\x43\x7d\x0c\x74\xc2\x28\xb7\xe5\xab\xf0\xc7\x9b\x15\x24\x7f\xa7\x42\x24\xca\x7e\x79\x9f\x5e\x11\xe3\x1a\xf6\xe2\xd2\x67\xdf\x12\xdd\x2e\xd8\x24\x54\x5c\xd0\x95\xa9\xe2\x14\xd6\x01\x41\xf1\xae\xd2\x58\x8e\x22\xb5\x67\x81\x7a\x67\xee\xd8\xab\x69\x04\x37\x71\x7d\xcc\x08\x65\x3d\x88\x8b\xdf\x14\x6a\x80\x5b\x5e\xd4\x83\x86\xcf\xc8\xae\x1e\x32\x77\xa0\x29\xf2\x7d\xfc\xd2\x19\x95\x7c\x43\xea\x02\xc0\x77\xcd\x7c\x95\x43\xbf\xde\x72\x1b\x85\x62\xf8\xff\xa7\xec\xff\xe3\xa4\x28\xee\xfc\x71\x9c\xe9\x99\x20\x12\xe4\xe7\x0a\x88\x88\x88\x08\x08\xcc\x86\x5d\x96\x65\x41\x25\x8a\x88\x88\xc8\x10\x20\xa8\x84\x20\x35\xdd\x35\xd3\xb5\xd3\xdd\x35\x56\x77\xcf\x30\x7b\x68\x90\x20\x31\x84\x78\xc4\xe3\x0c\x67\x3c\xce\x18\x82\x9c\x67\x8c\x31\x1e\x31\x1e\x47\x78\x13\x24\x1c\x21\x9c\x31\x48\x88\x21\x1e\x31\x46\x79\x13\x43\x0c\x87\x84\xe3\xdc\xf6\xfb\xe8\xaa\xea\xae\xea\xea\xcd\xfb\xfb\xf8\xfc\xe5\xc3\x65\x77\xa6\x7f\x54\xbd\xea\xf5\xe3\xf9\xe3\xeb\xc5\xe4\x7d\x95\x40\xf8\x20\x79\x67\x61\xe3\x8b\xbc\x75\x6c\x02\xbb\xca\x05\x4b\xe9\xdc\xf4\xc0\xa3\x22\x2e\xd6\x01\x43\xd8\xe6\x96\x8d\x51\x48\x68\x0e\x24\xe5\x46\xb4\xe5\xb2\x63\xf6\x2b\x4c\x67\xd7\xc5\xd4\x13\x3b\xcc\x92\x18\xaa\xf2\x92\x97\x15\xcc\x37\x01\x94\xad\xc1\x2f\xe7\x7f\xfa\x4a\xfa\xdf\x80\x1f\x6b\xda\xe3\x92\xc1\xb2\x8e\xa9\x9c\x70\x21\xf0\x37\xf1\x28\x4b\x5d\xc3\xf3\x85\xe0\xbe\x1b\xa5\x67\x82\x89\xab\x9b\x74\xa9\x3d\xb0\x25\x25\x51\xed\x01\xea\x26\xc2\x89\xd0\xe3\xf6\xb1\x77\xbb\x00\x41\x3f\xfc\x9c\x4b\x95\xa8\xc2\x8c\x92\xb8\x47\xf1\x7f\xee\x48\x51\xf4\xdb\xa3\x56\xd2\xbd\x0a\x5e\xcd\x23\x10\x78\xbc\x05\x92\xbb\x7c\x24\x37\xbd\xa4\x8f\x23\xcc\xaf\xa9\xa0\xfe\x89\xf3\x6a\x35\x0e\x74\x33\x2e\xe0\x47\x16\x07\x48\xed\x6a\xaa\x0a\x73\xd5\x07\x92\x11\x10\xb4\xca\x6c\x2c\x39\xb4\x97\xe2\xdd\xc3\xad\x14\x58\xbe\x13\x2b\x2f\xaf\x55\x49\xc5\x25\x04\x58\x44\x1a\xdd\x77\x70\x22\xc7\xe6\x03\x87\x3f\xaf\x13\x3e\x13\x79\x9a\x8a\xec\xd9\x9e\xd2\x19\xf4\x90\x03\x78\x11\xce\xbe\xe9\xe3\x0b\x3c\x18\x16\x3d\x9f\x79\x59\x7c\xef\x23\xa9\xdf\xec\x94\xa1\x05\xd3\x6c\xf5\x15\xa7\x52\x3a\xa5\x16\x95\x52\xcd\x17\x82\x33\xf7\x5c\x25\x49\xb8\x78\x79\x0b\xe3\x0a\xab\x55\x79\x70\xfe\x68\x64\x32\x80\x87\xd9\x5e\x91\x20\xa3\x0c\x05\x65\x23\x7b\x47\x6f\x16\x4a\x0a\xae\x85\x23\xa3\xc1\xae\x21\x12\xfc\x94\xc2\x5a\x68\xd4\xf9\x76\x1f\x05\x09\xe6\xa1\x12\x5d\x33\x8c\xb9\xb1\x5e\x01\x8a\x71\xfe\x6f\x94\x1a\x0d\x6b\x52\x72\xa7\xa2\x8b\x2d\xdf\x83\x56\x83\x51\xec\xb3\x7d\xbc\x14\x82\xb2\x54\xe2\xc9\xde\x4f\x56\x25\x9f\x30\xeb\x34\x4a\xde\x76\x74\xaf\x7d\x4d\xf1\x90\x8f\x28\x3c\x7c\x63\x67\xbe\x6e\x4a\xea\x97\xa5\x12\xb2\xf8\x3e\xcc\x17\x82\x5f\xb2\x75\x9a\x5f\x0a\x41\x0a\x8f\xab\x4d\xdc\xcd\x47\xde\x30\x5a\xa3\xd9\x6d\x96\xac\xca\xe9\xfa\x76\x04\x0a\xc9\x5e\x2a\x0a\x8b\x3c\x65\x36\x68\x37\x0f\x56\x4e\x11\x18\xc5\x2d\x06\xc0\x2b\x93\xb1\x6a\xee\x50\xce\x77\x86\xe7\x9d\x93\xe8\xfe\x6a\x0f\xed\x16\xed\xb3\x3a\xb0\x2a\x52\x29\xb7\xf9\x15\x36\x34\x58\x62\xfa\x96\x2d\x4b\xac\xe4\x2e\xad\xa9\x46\xd0\x7a\x05\xc1\x64\x97\x20\x77\xd7\xbb\xd2\xc8\x12\xba\x4c\xf2\xf4\x23\x26\x92\x6b\x41\x27\x3f\x43\x9d\x24\xdc\xd2\x26\x15\x4b\x93\x5b\xa9\x85\x63\x76\xe3\xa8\xbf\x26\xa1\x1c\x13\x24\x17\x48\x00\x4b\x08\x9c\xba\x49\x79\x01\x41\x5b\xa7\x3c\x02\x6c\xa3\x1e\x1a\x73\x24\x85\x6c\x1d\xdb\x45\x6e\xdd\xf9\xdf\xa7\x2f\xe3\x2b\x93\xf8\x0c\x5e\xb6\xf9\xa2\x14\x96\x23\x8e\xcb\xf1\xc9\x22\x4c\xe8\x7e\x95\xe9\x47\x6e\x97\xdd\x15\x60\x35\x5f\x08\xbe\xbd\x5d\xa1\x68\x81\x2e\x83\x00\x0f\x3a\x15\x2c\x1b\xac\x06\x53\x9e\x10\xdf\x51\x26\x90\xc5\xe0\xeb\x14\x41\x4e\xe8\x13\x1c\x09\xae\xbd\xbb\x71\x88\x34\x9c\x41\x36\x2f\xc5\x5f\x95\x24\x8d\x0d\xc0\xa8\xe3\x2b\xde\x8c\x67\xbb\xc8\x90\xf5\x7d\x1e\xea\x23\x76\xb8\x4e\x45\x43\x70\xd5\x94\xdb\x47\x99\x96\xe1\xc9\xec\xa6\x84\x88\xcd\xbb\xb7\xbf\xdb\x22\xbe\xc9\x35\x71\xf8\x94\x7f\xf4\x8a\x28\x1f\x4b\x80\xe4\x09\x04\x7a\xa4\xbe\x55\xe4\xe6\x67\x4c\x3a\x8b\xe6\xb4\xaf\x1f\x96\xac\xd9\x3c\xdf\x48\x23\xd0\xe7\xbd\x29\x29\x58\x22\x90\x77\x70\x0d\xbb\x1e\xca\x17\x82\x4f\x6e\x65\xad\x19\xe8\x78\xa6\xef\x22\x10\xee\x9a\xe0\x17\xd6\x60\xfe\x3c\x80\xe3\x5a\xf1\xd4\xf5\x9b\x9e\xc4\x75\x34\x31\x27\x2a\x66\x6e\x64\x86\x48\xf9\x85\xd8\x02\x8e\x21\x8f\x6e\x7e\xb1\x57\x65\xd9\xb8\xcc\xf0\x44\x30\xe4\x73\xd7\xac\x65\x87\x78\x6b\xbb\x67\x26\xed\x29\x77\x26\x43\x89\x89\xad\x22\xc1\xb8\x02\x65\xe1\xd3\x6c\xf5\x39\x61\x4f\xc6\xf9\x00\x29\x1f\x00\x6d\x44\x17\x5b\x8a\x75\x02\xf5\x0a\x5d\x75\x4f\x2a\x0a\x49\x66\xf8\xce\x08\x73\x01\x66\x13\xa4\x45\xc1\x10\xf9\x1d\x00\x13\x38\xd4\xa3\xee\xfb\xe7\x93\x6f\x12\xd7\x21\x87\x75\x67\x0e\x1d\x88\x67\x7a\x9d\xb0\x9e\xba\x8a\x65\x8a\xf3\x08\xb2\xa9\xf8\x19\x85\xca\x5d\xbf\x7b\x78\x62\xe0\x06\xa5\xca\x7d\xcc\x21\xc9\x9e\x56\x02\xe9\xbd\x23\x34\xae\x08\x4e\x7d\xdb\xf3\x45\x49\x61\x94\x40\x1d\xf8\x11\xeb\x60\xff\xba\x2b\xd4\x4c\x87\x9a\xba\xb0\xd8\x3b\x67\xbb\xe8\x43\x5a\x54\xe9\xb5\x08\xa8\x65\x09\x5d\xac\xdb\x5f\x50\xe4\x70\x67\xb4\x4c\x67\xb5\xe8\x0d\x1b\x07\x48\x43\x0f\x02\xc2\x7a\x76\x25\x7b\xec\x73\xb0\x45\x05\xf0\xbb\x33\xbf\x3b\xca\xd2\x95\xf0\xcf\x29\x3a\xe8\xc2\xdb\x91\x21\xaf\x5d\xf5\x49\xa4\x38\x7d\xd3\x6e\xa5\xdb\x49\xf5\x02\x22\x72\x63\xef\x17\x24\x56\xba\x1e\x6e\x59\x10\x8d\xf1\x91\x2a\xd1\x09\xa9\x86\x2c\x03\x38\x84\x0f\xed\x9f\x56\x44\x9a\xef\x84\x40\x9d\xc1\x5e\x33\x25\x15\x58\x5d\x25\x18\x7b\xb1\x59\x02\xde\x25\xee\xac\x0c\x98\x95\xdc\xc3\x12\xb0\xcb\xf5\x5d\x76\x79\xf9\x42\x70\xf9\xe3\x72\x71\x54\x37\x50\x83\x6a\x2f\x65\xed\x75\xb2\x5d\x87\xe3\x32\xd2\x5d\xae\x6d\xab\x42\x88\x8a\x65\xd0\x22\x94\x5f\xe5\xc8\x48\xa5\x2c\x42\x90\xea\x8a\x47\xcd\xac\xab\x4e\x26\x8c\xfe\xc4\xce\xd8\xdd\x47\x9a\x75\xb9\x1c\xcc\x14\x66\x12\x83\x0e\x0b\x18\x73\x15\x39\x58\x37\xe5\x66\x63\x6e\x46\xf1\xff\xc1\x21\xa9\x46\x5d\xac\x9b\x66\x2a\x21\x15\x10\xcf\x64\xda\xb6\xdf\x5d\xc1\x22\xd4\xad\xec\x19\x87\x77\xd1\xe7\xa0\x3a\x71\x22\x06\x70\x84\x76\x6a\x10\x8c\x50\xd0\x05\x55\xd2\x93\x9c\xc0\x25\x87\xc6\x2b\x09\x1c\xa9\x30\xfa\x58\x73\x6a\xb2\x3d\x74\x29\x37\x4f\x34\x70\xd4\x62\x9a\x3e\x78\xac\xf2\xe7\x75\xd2\xe3\x64\x62\xe2\xb8\xbf\x32\x70\xa3\x05\x4c\xad\x3d\xc5\x73\x2b\x13\x40\x4f\x0e\x66\x1c\xf3\x93\x1d\xbc\x73\xee\x61\x27\x9d\x2c\xe6\x4a\x47\x93\x7f\x8f\x5d\x8f\x00\x5d\x38\xc9\x68\x3f\x5a\x2e\xf5\xf3\xb1\x8d\x1c\x24\x39\x38\x66\x2e\xdb\x12\x43\x00\xcb\xd4\x41\x45\x7b\xaf\x43\x74\x4d\x50\x35\x0c\xeb\x8b\xe6\x2a\xfa\xc6\xd8\x72\x4d\x58\x43\x15\x37\x2d\x10\x9f\xed\x56\x6c\xfb\xd8\xd1\x62\x44\x83\x96\x2f\x9f\x16\x06\x14\xd8\x4a\xfd\xf5\xc9\x17\x55\xc2\x23\xf5\x6d\x8a\x6d\x9a\xcb\x4d\x8a\x40\x05\x73\xfe\xe3\x0d\xc5\x8e\x33\x29\xdb\x1b\xf6\x0c\x9e\x9b\x97\x5c\x32\xba\x49\x93\x75\xe8\xba\x11\xba\x6b\xe5\x38\x75\xaa\x42\x47\xe0\x26\xb0\x85\x16\xed\x77\xbd\x64\x5e\xce\xad\xdd\x58\x30\x98\x75\x71\xb8\x74\x76\x30\xf4\x11\xa7\x52\x05\xf7\x4b\xad\xc7\x48\x54\x86\x0a\xca\x08\xcd\x84\xf1\x33\xa8\x9e\xf6\x03\xad\x12\x94\x13\x91\x62\xb8\xda\xc2\x9f\x5f\xa1\x74\xe3\x91\x4b\x85\x99\xe9\x0a\xfa\xbb\x53\x92\x68\x75\x94\xfc\xd2\xcc\xb7\x53\xee\x78\x5a\xa8\x06\x09\x9d\xa9\x3e\xb0\x41\xe1\x2b\x10\x18\x7d\x1a\x8f\x99\xc7\x15\xbd\x2c\x9d\xca\x1f\x71\x8c\xeb\x77\x76\x4b\x6a\x56\xb0\xe4\xb1\x01\x49\x66\xdc\x73\x2c\xfa\xd2\x93\x08\x45\x68\xe9\x3f\x4a\x8c\xbd\x3a\x32\xe2\x79\xcd\x25\xa7\xd4\xb2\x02\x30\xe5\x14\x26\xdc\xf1\x90\x40\x87\x9b\x50\x06\x64\x1d\xf8\x68\x10\x3f\x15\x5c\x36\xfc\xa1\x49\x6b\xee\x88\x22\x03\x0c\x98\xe1\x54\xf8\xf0\xbb\x17\x89\x74\x65\xbc\x2b\x75\x67\x83\xc9\x92\xc3\x83\x8e\x1d\xd7\xb7\xe8\x8d\x4c\x9f\x3b\x4c\xaa\x84\x80\xef\x99\x98\x44\x9c\x38\xb4\xef\x1a\x76\x93\x8e\x07\x49\x54\xc1\xa6\x38\x4e\xff\x5b\x8c\x30\x61\x96\xc5\xc5\x16\xfe\xaf\xe2\x3d\x51\xc2\x7e\xdc\xe8\xd5\x3e\x3d\x97\xb7\x16\x2d\x48\x2a\x4c\xf5\xbc\x7e\x58\xa4\x9e\xae\x03\x2a\xf4\xa0\xf8\xfc\xd9\x11\x4a\x56\x6f\x40\x1c\x4f\xb9\x73\x25\x89\x97\x60\x10\x40\xf1\x68\xf4\xf1\xbc\xa2\xc4\x08\x0b\xf8\x8e\x6e\x0a\x0e\x67\xf6\xeb\x8e\x58\xbc\x45\xdf\xf3\xe8\x09\xcd\xf0\xeb\xdd\xd9\x8d\x27\xaf\x90\x5b\x3c\xd4\xa8\x57\x94\x27\xc7\x37\x26\xf7\x5c\x7b\x07\xbf\xa9\xe6\x0b\x71\x4a\x31\xa6\x2b\xdd\xeb\xfd\x5d\x1b\x07\x55\xf9\xc4\xc1\x3e\xf3\x81\xd9\x72\x46\x1c\x8e\x04\x33\xca\xfe\x0d\x6b\x86\xc4\x6d\x04\x39\x35\x7f\xbc\x49\xca\x63\xaa\x55\xc8\x05\x30\x32\xad\xc2\x17\x86\x30\x7d\xa1\xdf\x29\x02\xaa\x91\x26\x19\xfd\xf5\x2b\x1f\x93\xa4\xb5\x8a\x2e\x24\x4c\x91\xf7\xea\xcd\x0a\x84\xa3\x8c\x27\x4f\x1a\x3f\x3e\xfc\x8b\x5b\xd7\x47\x14\x6a\x9f\xce\x15\xfc\xad\x6c\x4a\xb2\xd4\xc4\x76\xd5\xc5\x8e\xec\xe2\x77\x91\x4d\x8e\xef\xd2\x6f\x05\xc4\x73\xa0\x3c\xc6\xbd\x6f\xae\x4c\x51\xb1\x6d\xec\xd4\x21\xb0\xa8\x35\x70\x26\x5f\x93\x40\x37\x36\xe2\x56\xea\x99\x1b\x1e\xe5\xa0\x70\x9a\x7e\x31\xac\xc9\xa6\x27\x44\x0d\x47\xed\xf4\xc2\x5f\xbc\x38\x61\xb0\x8c\x11\x2b\x95\xa8\x8d\xe1\xf7\x8b\x62\x2b\x96\xa1\x03\x09\xd5\xae\x0c\xde\x1b\x79\xb9\x9c\xf4\x02\xa2\x73\xf5\xf8\xcc\x7f\xaf\x50\xf4\x3a\xea\xd0\xaa\x41\xa5\x00\xff\xf8\x65\xc9\xf9\x95\x29\x2f\x86\x7f\x7b\x7d\x9b\xf8\x71\x05\x3a\x0e\x64\x77\x36\xae\x77\x8f\xbd\x60\x66\xcd\x3b\xf0\xd9\x61\x3d\xec\x62\x9a\x10\xa2\x85\x0a\x65\x06\x12\x13\x54\x5d\x8e\x06\xd4\xee\x3c\x97\x34\xe0\x2a\x42\x10\x91\xf8\x7e\xb0\x41\x24\x28\x1e\xf1\x5d\x8f\x8e\x39\x23\x57\xf1\xcc\xfa\x13\xd7\xf5\x78\x38\x4b\x44\x28\x1e\xe0\x3f\x9e\x1f\x4f\x79\x1a\x8a\x41\xd3\xac\xd2\x50\xb1\xe6\x8c\x84\x15\xda\x9b\x4b\x05\xcd\x45\x92\x81\x0e\xfe\xa7\x2d\x39\xdb\xb1\x2d\xb7\x27\xe5\x92\xac\xdb\x9e\xec\x26\x87\x21\x85\x0d\x83\xab\x4e\x8c\xb5\x70\xab\x40\x8e\x6b\x30\x97\x3c\xcb\x3c\xe2\xdb\xd5\xa4\x08\x9d\xf6\xd9\x59\x0a\x76\x97\xdb\x3a\x45\x5c\x88\xab\x0e\xb3\x4a\xea\x2e\x50\x36\x80\x05\x85\x00\xe6\xf9\x99\xc9\xe2\x02\x49\x7d\xe5\xcc\xcc\xfe\xc9\xab\x75\x91\xc7\xcb\x99\xc6\x45\x11\x44\xd4\x0e\x70\x70\xcd\xb2\xab\xd4\xb7\xcb\x21\x68\x11\x8d\xe3\x3f\x9b\x47\xc9\x4d\x58\x02\x53\x34\x99\x1c\x1a\x28\xf2\x96\xa9\xd3\x28\x5a\xff\xf8\x23\x0a\x91\x8c\x36\x25\x58\x69\xf2\xf9\xe3\x6a\xa6\x11\xa6\xff\x45\x18\x8d\x4e\x3f\xb1\x23\xb9\x30\x08\xac\x21\x36\x44\x50\xdb\x75\x2d\x87\x7a\x6c\x51\x47\xb2\x38\xc1\xaf\xdb\xe3\xa4\xda\x02\x92\x7e\xf5\xb5\x9b\x58\xe0\x58\x62\x81\x62\xc3\xa9\x48\xc1\xed\x96\xe5\x57\xa7\xae\x1b\x12\x86\x40\x8a\x69\xf7\x86\xaa\x48\x45\xe7\xf3\xb4\xa8\x01\x0e\xb7\x62\xc0\x76\x11\x34\xa2\xf4\x65\xdd\xe3\x4a\x53\xda\x71\x80\x33\xc9\x96\xfc\x34\xb2\xa3\x47\xf4\xa8\x89\x15\x26\xfa\x37\xcc\x65\x65\x3c\x5c\xad\x43\xfa\x0f\xd4\x8e\xe6\xe1\x4d\x2c\x18\x52\xce\x77\xbe\x10\x8c\x51\xfc\xb4\x24\xa1\x14\x96\xcf\xf7\xad\x26\x03\x80\x83\x3d\x3a\x48\x0d\x13\x19\x6f\xae\x14\xf6\xaa\xf1\x0e\x7e\x6b\xa2\x48\x63\x2a\x98\x38\x45\x48\xe8\xd6\xfd\x3f\xc7\x84\x18\x47\x35\xd6\xee\x1a\xbe\x2a\xf9\x05\x26\xf6\x38\x4b\xb8\x10\xe0\x2d\x8a\xb9\x0b\xac\x41\x2b\xb2\x0b\xc8\xfe\xf6\x11\x45\x19\xd6\xae\xf7\x04\x40\xc9\xd5\x37\x0d\x4b\xc5\xb0\x28\x8d\x1c\xbe\x42\x99\x97\x22\xcf\x83\xc4\x6a\x34\x47\x82\x54\x23\xfa\x4b\xe0\x69\xaa\x35\x39\xf7\xac\x52\xb6\xf9\x4e\xb2\x03\x98\x09\x38\x32\x73\x1e\x94\xb5\x08\xce\x0e\xbc\x5c\x6a\xd4\x00\x0b\xda\x3c\x6e\x6b\x0f\x0f\x1d\x2d\xf1\x34\x30\x23\xb1\xaa\xab\xf6\x2b\x63\xa4\x33\x02\xb8\x11\x84\xf6\x9f\x6e\x1e\x20\x55\x0b\x8c\x7b\x6d\x9c\x10\x1d\x24\x49\x4b\x9d\x56\x41\x63\x78\x07\xc9\x81\x80\xb0\xac\x56\x1b\xb2\x45\xa6\x93\xba\x3e\xe1\xf8\x80\xc0\xbb\xc0\x8d\x7d\xa9\xd5\x97\xc5\x4c\x3b\xb3\xaf\xb7\x8a\x47\x32\xbe\xa3\x35\xfc\xd1\x57\xe6\x27\x9f\xb0\x09\x6a\x90\xbf\xc2\x20\xe8\x99\x4d\xcd\x62\x74\x7e\x53\x32\xfe\x4c\x0e\x5f\x20\xfd\x96\xfd\x73\x24\x47\x33\x7a\xfe\x87\x3f\xbd\x6d\x87\xea\xa7\xea\x85\x19\x80\xc3\xc5\x9e\xe9\x1d\x56\xe7\x26\x4b\xd8\x22\xc1\x2e\xf2\x15\x51\xcf\xec\x2f\xce\xb1\x78\xb9\x94\x1a\x67\x49\x5b\x2a\xa7\xe8\x6c\xda\xd8\xd5\x71\x3d\x96\xea\xf9\xe7\xfd\x4a\x31\xeb\x1b\x65\xda\x3b\x8d\xa7\x9b\xdf\xad\x49\xfe\x37\x56\xd2\x9e\x79\x67\xc7\x30\xe9\x51\x7b\x90\x50\x34\x1e\x43\xb6\x5f\xfd\x7a\x93\xf0\x67\x28\x49\x57\xb4\x7a\xad\x18\x2d\x4e\x9b\x4a\x01\x2f\x2f\xad\x63\x58\xa1\x3b\x4d\x40\x3c\xec\x47\x92\x94\x59\xf7\x4d\xa5\xd3\xe8\x43\xce\xdf\xd0\xec\xad\x52\x71\x81\x61\x8c\x17\x5f\x6f\xb1\x05\x51\xb0\x1a\x76\x95\xe6\x1d\xdf\xe2\x96\x9e\xc0\xf7\xb0\x83\x39\xf8\xf2\xf6\xa5\x8a\x36\x0b\xd6\x2b\xa0\x0e\x1a\xae\x24\x2c\x75\x68\xb7\xaa\xc4\x5d\x83\xae\x87\xca\x4c\xd3\x8e\x46\xc1\x4b\x94\x2e\xbb\xc3\x61\x4a\x91\xdc\x52\x66\xd6\xb8\x54\x24\xf5\x49\x23\x4c\x38\xd4\x93\xf6\xab\x3b\x47\xf6\x98\x09\x44\x2f\x42\x7b\xe1\x54\x9c\xd0\x12\x5f\x25\x57\x07\x37\xd5\x54\x01\xbe\xc8\xb5\x8b\xaf\xdc\xd3\xed\x0c\xa1\x16\x91\x5d\x8e\x8a\x57\xd7\xd6\x3e\x23\x01\x06\xea\x55\x93\x04\x97\xec\xaa\x85\x1b\x6c\xb3\xcd\xa8\x29\x44\xfa\x30\xea\xd2\xd9\xf2\x98\x52\x64\x64\x0d\x68\x0e\x47\x53\xe7\x3b\x35\x85\xce\x84\x2d\x03\x51\xbd\xf7\x42\x77\xf6\x83\x26\x96\x4c\xde\x4e\x20\x8c\x7a\xb2\x37\x5a\x09\x3e\x9e\x4f\x5c\x3e\xde\x38\x14\x48\xe6\x89\xd0\xf0\xa9\x6e\x02\x58\x28\x25\x8e\xa8\x6a\x61\x1b\x30\xcb\xa6\xcc\xfe\x7d\x71\x64\x36\x28\xd0\x8f\x46\xe6\xa9\xcd\x49\xd1\xe9\xd8\x26\xf1\x70\x7f\x5e\x4b\xc6\x73\xce\x85\xa7\x14\x96\x72\x98\x6e\xb2\x24\xf1\x0d\x55\x46\x84\x23\x42\xf3\x85\x60\xf0\x9a\x11\xd2\x55\xfa\x0e\xf2\x64\x42\x60\xae\xed\xa2\x58\xf7\x2d\x6d\xed\xf9\x42\xd0\x1a\xc4\xb5\xc2\xd4\x4f\xb5\x85\x5f\xfc\xf5\x0d\xe2\x9e\x94\x42\x56\xb1\x38\xe4\xa2\xe9\xe2\xe3\x2b\xbb\x24\x79\x97\x72\xea\xd4\x18\xc8\xa7\xb4\xb7\x23\x2e\xb2\xa8\x19\x4a\xd7\x8b\x09\xd1\xb2\x86\xf1\x91\x08\xbf\x04\x8a\xc8\x03\x0c\x51\xf6\x4b\xf3\x7a\x25\xcf\xa0\x3e\x77\x6e\x4f\xda\x85\xc1\xdf\x6d\xe3\x8a\x03\x5e\xec\x55\xf2\xdb\x23\x97\x09\xec\x54\x78\x16\x67\x47\x0c\x53\x52\xa0\x1a\xd2\xb9\x2c\xd3\xfb\xeb\x92\x6f\xa0\x6d\x9a\xc7\x15\xa0\x83\x1d\xc9\xd1\x12\x34\x7c\x40\x0c\x05\x80\x3a\x77\x83\x44\xcf\xc1\x16\xeb\x50\x66\x4e\xdd\xa8\xaa\x9b\xd3\x09\x34\xef\xde\x1c\x3a\x24\xf5\x18\x45\x13\x31\x58\xd3\x8b\x65\x1e\xae\x5f\x74\x3d\xe0\x70\xd3\x94\xcc\x1f\x1e\x57\xd2\x2e\x50\x45\x1e\x1d\xd5\xb1\x92\xe1\xf7\xd2\x25\x14\xc3\x95\x45\xc7\x46\x4f\x1d\x56\x5a\x8d\xab\x81\xee\x71\x67\x93\x4f\xac\x49\xf5\x24\x10\xa9\x03\xde\xa8\xfb\xd1\xfb\xc2\xd8\xa5\x06\x74\x13\x94\x41\x03\x4a\xe2\x95\x6f\x4f\x61\xfb\xbb\xe2\x40\x5a\x42\xae\x38\xde\x23\xbb\x4f\x0c\x61\x6f\x7a\x7a\x44\x32\x78\x47\xfd\x04\x36\xe0\xda\xb4\x5b\xb9\x1a\xdb\x2f\x97\xad\x68\x3e\x90\xbd\x38\x41\xed\x4e\xdb\xd8\x42\xd2\x80\x71\xb1\xd5\x94\x80\xb2\x7a\x80\x79\x75\x7e\xe7\x5c\xf2\x09\x34\x4f\xa2\x5c\xa9\x7c\xf8\x04\xf4\x9d\xc9\x77\x4b\x05\xcf\x21\x09\x2b\xef\x22\x8c\x0e\xa4\xef\x9c\x48\x7e\x73\x1d\x13\xcf\xa4\x33\x3d\x7e\x0a\x37\x9e\x18\xc8\xf7\x20\x85\xf4\x30\x29\xda\x0d\xca\xa0\xd7\x40\xe5\xf8\x88\x9b\xc5\x0b\x5b\xc9\x51\xb4\x69\xbe\x44\xf2\xb1\x80\xeb\x12\x8c\x99\x7a\xe7\x8f\x5f\x57\x3b\x29\x44\xe7\xda\x09\x81\xfe\xa2\xe8\x63\x78\xb8\xee\xc8\x55\xd1\xc3\x63\x93\xdb\x07\x84\xe5\x1d\xb0\x10\xe0\x8c\xcb\x64\x0b\x67\x12\x47\x05\x59\x5c\x35\x3a\x18\xd0\x97\x1d\x91\xaa\x5f\xf5\xc0\x21\xc9\xee\x2a\x03\x1b\xfe\xc7\x89\x81\x3c\xa6\xe9\x9e\x1f\xd5\x9a\xcf\x2c\x96\xcc\x0e\x00\xe2\xde\xec\x9a\x76\x66\xa8\x92\x4f\x3a\x5c\xf0\x3f\xbb\xbb\x5f\x93\x34\x07\x29\x9b\x1e\x6f\x9f\x65\x82\x05\xc9\xd3\xa6\x84\x4a\x9e\x99\x2f\x87\xd1\x9f\x4b\x2a\xd5\x06\xb2\xcc\x3c\xac\xf4\x69\xae\xb3\x70\xa7\x80\xc4\x88\xfe\xfd\x17\xcf\x2a\x26\xbb\x2e\x87\x8f\x52\xe8\xe3\xee\x2e\x71\xc5\xba\x49\xf1\x49\x14\x5c\xbd\x52\x22\xd3\x11\x08\x22\x5b\x8d\xb3\x0a\x18\xc0\xc1\x4e\x09\x78\x71\x05\xfd\xdb\xb5\x4a\xee\xcf\xea\x02\xd6\x55\xdc\x75\x56\xb6\x7d\xa5\x7a\xa8\xb9\xdb\xe7\x49\x8a\x12\xc8\x8b\xf2\x82\xb7\x8c\xd1\x52\x4f\xd1\x32\x74\xe0\xa5\x8d\x4a\xd7\x98\x52\xd7\x0a\x39\x06\xa4\x1e\x89\x51\x0e\x54\x1b\x37\x4a\x4e\x91\x71\x25\xad\xaf\xd1\xbd\x76\x6c\xfc\x2b\x12\x58\x25\x3d\x10\xbc\x79\x14\x5b\x2a\x6d\x53\x27\xb7\x4e\x9f\x42\x55\x32\x7a\x89\x24\x1a\xd8\x8c\xa4\x5f\x7d\x54\x1a\xb6\x23\x26\xd5\x91\xbb\xf5\x65\x9e\x11\xfb\xa4\x6c\x01\xa6\x43\x1e\xfc\x57\x2f\xb6\x1b\xaa\x14\x62\x40\x1b\xc8\xcb\x7b\xa9\x25\x47\x15\xba\xbc\x6c\xf9\x4c\x5b\x72\xf9\x14\x29\xbd\x9e\xbe\xf2\x0d\x7b\x93\x3b\x95\xea\xee\x49\xef\x37\xd3\xf5\x81\x0a\xba\xf1\x1d\x17\x5a\x91\x0b\xd7\x99\x94\x85\x17\x77\xf5\x65\x01\xfb\xe6\x66\xb6\x25\xee\xc2\x98\xc8\x95\xc9\xbf\x70\xb1\x00\x06\xf9\xb2\xf3\x85\xe0\x4b\xdb\xd8\x2d\xd5\xb1\xef\x18\xb4\x51\x17\xb4\xaf\xee\x09\x1c\x49\x75\xab\x96\xce\x16\x2b\xd5\x8e\xad\x0c\xce\x29\xf4\x6b\x9f\x84\x2b\x32\xa6\x67\x3f\xbe\x7b\x62\xf2\x6c\xb1\x6d\x40\x05\xbd\x7b\xa4\x8b\x64\xe7\xf7\x4a\x3e\x1a\x26\xc2\x2b\x25\x9f\x0f\x0d\xe4\x66\x8c\x9f\x4d\xc5\x86\x37\x9a\x05\xf9\x13\xd6\x93\xd4\x8a\x76\xc9\x1c\xda\xd1\x4d\x26\xbb\x35\xac\x3d\xce\x1c\xab\x7e\x31\x35\x5c\xba\xef\x50\x4a\x5c\x3a\xc2\xe2\x65\xfe\x63\x5c\x93\xb2\xa5\x98\xab\xd2\xe8\xdd\x97\xcb\x4d\xea\x52\x89\x0f\x0d\xbb\xb3\x9f\xdb\x9e\x8c\x73\x25\xd7\x0b\x43\x5d\x95\xd8\x3d\x64\xbd\xb9\x1b\x3b\xa4\xd1\x04\x74\x74\xd3\x86\xe1\x61\x57\xbc\x28\xb5\x57\x21\x20\x5e\x11\x52\x79\xce\x5c\xfb\x51\xb1\xf7\x8a\xd8\xf7\xd0\xfd\x3e\x4c\xed\x88\x37\xba\x64\x8e\x13\x41\xb1\x64\xf1\x67\x26\x88\xa8\x9e\xc7\x75\x87\x32\xd6\xc2\x32\xe8\xdb\x6b\x38\x2e\x1e\x90\x8a\x54\x3e\x05\x2f\x77\x48\x12\xa3\xb1\x1e\x7e\xf8\x51\xdb\x4e\x4a\x10\x7f\x9d\x02\xb2\x69\x5e\xbb\xb0\x8f\x18\x77\x51\xa3\x07\x99\x15\xf7\x2f\x87\x44\x90\xb1\x30\xa0\xb9\xe6\x37\x1f\x53\xd0\x87\x40\xe7\x66\xc6\xdd\xd9\xdb\x4e\x4b\x28\x59\x1d\x38\x06\xb7\xfb\xf9\xe2\xf3\x03\xf8\xcd\xb1\x0c\x21\x4c\x0f\x4e\x8b\xd6\x89\x87\xb1\x34\x3c\xd5\xce\x48\x5e\x3c\x16\x62\x5c\xe0\xa0\x69\x4b\xca\x40\x87\x50\x1b\x96\x98\xe8\x9a\x39\xa9\x71\xfa\x10\x20\x44\xb4\x8e\x83\xe5\x23\x14\x61\x25\xbf\x8c\x15\x55\x79\x63\xb9\x82\xe2\x75\x3c\x14\xa9\xad\x45\x09\x42\xae\xb0\x48\xf1\xec\x32\x49\xcc\x6d\xfc\xc1\x50\x49\x26\x03\x3a\x3e\x0d\xc7\x37\x6f\x14\xe1\xb8\xad\x83\x8b\x0f\x77\x6b\x9f\x7c\x50\x44\xda\x62\xb8\x84\xa0\xec\x76\xb1\x42\xb1\x1c\x32\x70\xdd\xa9\x5a\x54\xe9\x86\x3e\xca\xff\x7e\x4a\xea\xec\x11\xc4\x64\x0b\x92\x7b\xf5\xba\x56\xa5\x57\x6a\xbb\x5e\xfa\xcc\x0e\xda\x15\xc7\x41\xbd\x51\x84\xc4\xad\x02\x9d\x09\xe0\x68\x57\xf7\x91\x20\x95\x4e\x27\x6e\x84\xc1\xf6\x9d\x7e\x02\x91\x5e\x4e\xad\xe4\xcc\x9b\x5b\x93\x0d\x85\xd6\x08\xe3\x98\xb9\xe6\x70\xb2\x2c\xa7\xbe\x0b\x25\x9f\x82\x05\x8b\xf3\xf9\xc8\x16\xeb\x3a\x4c\x41\xa4\x33\xdf\xef\x62\xff\xbc\xc8\x87\xc4\x4b\x81\x2d\x32\xde\x9c\x2b\x94\xe2\x87\x1d\xca\xac\x31\x7b\x6e\x9c\x0c\x90\x62\x4e\x65\x74\xb6\xcf\x35\x1c\x4b\x98\x40\x54\x66\x82\x77\xc1\xe4\x56\x15\xaa\xac\x7b\xa8\x14\x75\xa3\x32\x4b\x9c\x78\xfe\x38\x75\x7a\x3e\x5f\x08\x5e\x7d\x64\x84\xd4\x25\xb1\x8b\xf4\xfa\x44\x60\xdf\xdf\x37\xb9\x62\x00\x35\x39\xa7\xd9\xf1\x34\xa5\x65\x53\x04\xc5\x46\xe4\xe9\xfb\x5f\xc1\x60\x69\xfd\x53\xd6\x56\xf8\x3e\xa6\x71\x5d\xd9\x2a\x46\x4c\x02\x5f\xbb\x7a\xa0\x94\x6e\x30\xe0\x66\xbe\x10\x1c\xec\x37\x54\x28\x45\x25\xb4\x42\x34\x78\x86\x7b\xdc\x41\x1d\x3b\x0c\xc9\xf2\x85\xb5\x52\x05\xe7\xe8\x04\x1a\x88\x9b\xda\x17\xa4\x22\xd6\x84\x0e\x2f\x08\xfe\x34\x26\xee\xce\x96\xb1\xd0\x39\x08\x96\xac\xe0\xb3\x1b\xa4\x9b\x90\xa2\xeb\x44\x07\xe5\x8e\xed\xa2\x92\x9a\x36\x2d\x5f\x08\x0e\x9d\x65\xa8\xa5\xa5\x90\x38\x0d\x20\x03\x27\x3e\x1c\xa5\xe4\x3c\x7e\xf8\x54\xb9\xbc\xcc\xab\x2f\xc7\x2d\x9a\xb2\xcc\x58\xd6\xb6\x9f\x8b\xff\xa1\x0b\x4a\x0d\x5a\x6d\x5c\x73\xf2\x31\xb3\xe6\x1e\x3d\x11\x1e\x78\x79\x28\x0f\xa1\x55\x13\xbb\x09\x91\xf3\xbb\xf9\xc8\xca\xc4\x55\x9a\x61\x9c\xab\x09\x3b\x57\xcb\xe7\x21\x38\xb3\x47\x6d\x88\xd7\xa0\x85\xab\x91\xfc\x6c\xe6\x27\x17\x54\xa0\x02\x13\x56\x8c\xfb\x23\x9f\x7f\x45\x24\xab\x25\x02\x6c\x58\xc7\xac\x0f\xf1\xbc\x62\x27\x54\xb2\x62\xc9\xf8\xec\x7b\x4d\x8a\xf9\x52\x83\xbb\x8f\x3f\xe6\x0d\x8a\x42\xac\x07\x23\x0d\xa4\xcc\x75\x4b\x55\xe1\x08\x30\x29\x65\x7e\xd6\xad\xad\x1a\x28\x8c\x7d\xa1\x0c\xa6\xbc\xe2\xbc\xe4\x5d\x22\xc1\xa2\x3e\x5c\x95\xbc\x0c\x4a\xa5\xa7\xdf\xd8\x77\x87\x24\x23\x5e\xf5\xa9\xf8\x44\xe6\xa2\xe2\x5c\x48\x6c\x18\xe1\x51\xb5\x2f\x9c\x92\x24\x1a\xcb\x98\x36\xe4\x6f\x5d\xc3\x25\xc1\x60\x89\x42\x75\x7a\xed\x61\xeb\xe5\x16\x43\x5d\x5a\x53\x03\xc9\xb7\xcd\x67\x62\x69\xc1\xf6\x6d\x92\x89\x32\xf1\x1a\x38\xcc\xa9\xc6\xf0\x06\x4e\xd4\x31\x0c\xbf\xe7\xe1\xbd\xac\x54\x9e\x83\x1d\xe8\xb9\x95\xa8\xf2\xff\xa3\x02\x7f\xf0\x08\x60\x2e\x7d\x51\x6a\xae\x0d\xd8\xa2\x62\x87\xe8\x34\x44\x50\xc9\x72\x43\x9a\xd9\x47\x2f\xc0\x75\x29\xd7\xcb\x5c\x3e\x5a\x3c\x1e\x0f\x3a\x74\x59\xbf\x7f\x90\xd3\xc5\x81\x05\x5d\x0f\x39\x08\x38\x31\x61\x6d\xd2\xd2\xe4\xa3\x0b\xaf\x3e\xea\xed\x76\xf5\xe7\xd2\x3e\xa0\x84\x40\xbe\x10\x8c\x78\x4b\x19\x83\x20\xa2\xfb\x36\xeb\x01\x70\xa1\xca\xec\xf0\x6d\xac\xd0\x9a\x4d\xf4\x0a\x8e\x7a\x90\x6b\xd7\x8b\xe7\x55\xf5\x5d\x93\x8d\x33\x47\x6a\xec\xb2\xe6\x45\xd8\x3f\xe9\xb1\xdf\x7b\x51\xa5\xd7\x60\xe2\x45\xca\xb9\x99\xa1\x9b\xaf\x51\x53\xec\x3c\xf5\xba\x93\xd1\x83\xda\xc5\x57\x06\x48\xc3\x13\x3a\xef\xcc\xad\xdc\xac\x54\xbd\x54\x39\x99\x09\xb7\x9e\x96\x44\x8b\x71\x0d\x12\xb8\x9a\x3a\x64\x82\x08\x93\xf7\x5a\x6d\xa8\x84\x1a\x71\x24\x6d\xfb\x5c\xff\x92\x54\xdb\x0b\xb9\x82\xe0\xf3\xed\x62\xd8\x09\xbd\x54\xd2\xbb\xe3\x42\x8f\xe6\xf6\xcc\xd5\x50\xeb\x73\x58\xe9\x54\x53\x3c\x14\x8c\x78\xa9\xd9\xff\x5d\x24\xb4\xda\x09\x6d\x17\xdc\x24\x95\x94\x6e\x98\xda\xd3\x2d\xfd\xfd\x7d\x43\x65\xb0\xa0\x41\x4d\x49\x19\xa9\xb4\xeb\xc8\x64\xb5\xa2\x20\xb8\x4a\xb0\xdd\x70\x2d\x5c\x73\x2b\x8d\xa4\xcb\x43\xe0\xef\x15\x23\x1e\x37\x6e\x31\xff\xf6\x1d\x25\x75\x82\xa4\xe8\x26\x46\x26\xb9\xdb\xbb\x2e\x13\x36\xd9\xe1\x5a\x7a\x41\x51\x89\x0a\x77\x22\x9f\xc9\xf4\xda\x27\x91\x2a\x08\xa2\x35\x6e\xb0\x7f\xaf\x00\x74\xdb\x94\xd7\xf3\xe7\x55\xe2\xc0\xf7\x1d\x02\xc3\xc4\x96\xe7\xdc\x99\x19\xf7\x08\xb3\x80\x06\x4d\x01\xbe\x37\x73\xb8\xf4\x68\x08\x96\x1c\xb0\x82\x13\x2f\x24\x37\x1b\x1b\xc6\xcb\xe4\x90\x65\x67\x98\xf1\xc8\xd4\x0e\xda\xa6\x7c\x2b\x79\x8a\x97\x29\x1a\x87\xf0\xe3\x35\x37\xf2\x9d\xb1\xa9\x7c\x01\xf6\x34\xa8\xec\xea\x37\x46\x79\xfa\x04\x42\x8f\x8a\xc1\xc8\x58\xd9\x7e\x0b\xe3\x94\xc8\x4e\x39\xa9\x05\xcf\xf4\xe2\x79\x06\xd3\x43\xe0\x0d\xdb\xcf\xf4\x12\x0b\x92\xa2\x52\x3c\xaa\x94\x1b\xfc\xa9\xa8\xc0\xaa\x70\x99\x00\x23\x09\x70\xff\xf9\x50\xc5\x52\xd1\x84\x9c\x6a\x4c\x07\xb1\xd7\x2f\x12\xd3\x2c\x50\x0b\xcb\x41\x4b\xf5\x88\xea\xce\x6d\xd8\xa4\x58\xb3\x60\x8b\x57\xb1\xd9\xff\x73\x52\x62\x58\x59\x56\xf8\xf1\x8c\x3f\x58\x5f\x21\x5e\x28\xc1\x75\x99\xad\x5e\xe4\xed\xf4\x65\xc8\x81\x0d\x40\xd8\xba\x7e\x74\xb7\xa8\xe0\xef\x8b\xb4\x6d\xaf\x78\x9b\x8e\xc3\xab\x9c\x46\x9e\x3c\x86\x7e\xf9\x52\x9c\xb9\x94\xfd\x84\xa1\x7f\xee\x73\x1b\x92\x75\xdd\xf4\x28\xd6\xbc\x7a\xf0\x52\xfa\x0d\xb7\x2f\xa1\x9d\x96\xa7\x55\xe0\x1a\x02\x5c\x5f\x80\xd7\xa9\x67\xb7\x88\x79\x3c\x34\x6c\xdf\x91\xe7\xb9\xdf\x55\xe8\xb7\x75\x60\x55\xb0\xcf\x8c\x4e\xb5\x6d\x1f\x29\xf0\x0e\x14\x56\x20\x38\x0f\x0c\x82\x80\x87\x74\xcc\x7e\xad\xf3\x70\xbc\xed\x9b\xa7\xb5\x85\x0f\xe2\x1f\x16\x88\x0d\xde\x09\x1c\xc9\x39\x50\xeb\xfb\x92\x78\xa6\x36\xe8\x44\x52\x25\x90\x59\xf3\x4e\x94\x85\xf8\x14\x87\x96\x7d\x79\xac\xc2\x46\x75\xbc\x30\xd8\xd4\x69\x5b\xe3\xe6\x09\xc9\x4d\x2e\x0c\x93\x63\x19\xe0\x8b\x66\x72\x71\xf9\x9e\x09\x50\x72\x2e\x97\xd9\x3f\x45\xd2\x75\x45\xc0\xa1\x84\x84\xdf\xcc\x57\xf1\xa6\xbc\x89\x5e\x08\xe6\x4b\xae\x21\x36\xe6\xa9\xb5\x22\x64\xe7\x41\x62\x47\x16\x62\xdb\xd6\x25\x1f\xa2\xed\x83\x22\x20\x54\x12\x53\x1e\x0e\xdc\x78\x3c\x36\x38\x41\x5e\xbe\x10\xf4\x1d\x28\x3b\x42\x46\xd3\xd7\xcc\x68\x49\xc9\x11\x39\x4c\x10\x31\xfc\x96\xff\x7a\x5b\x9a\x5e\x52\xd3\xbd\xf0\x36\x4e\x33\x45\xcf\xfc\x6c\x68\xd1\xce\x5f\x22\xe7\x3b\xb7\xf1\x72\x39\x1b\xf3\x0d\xdf\x62\x8c\xbd\x07\x8f\x0d\x91\xb6\xaa\x1b\x7d\x47\xb6\xf6\x82\xf8\x83\xb2\x0f\x09\x09\x4f\x38\xba\x24\xc7\x0f\x16\xcf\xc4\xe7\x34\x81\x62\x2a\x5b\xf4\xc2\xda\x82\x7b\x91\x06\x2f\x3d\x2a\x41\xd1\x90\xab\xfb\xae\x4b\x33\x99\x09\x52\x36\xa5\x5b\x80\x0e\x2a\xb7\xcd\x15\x1b\x34\x9f\x17\x61\x72\xdf\x56\xd5\xfa\x3f\x72\xd3\xa3\x9d\xcb\x5f\x0f\x97\x2c\x94\x20\xe4\x49\x7e\xd3\xd2\x4b\xd8\x5e\x2c\x04\x99\x9c\x42\xa9\x67\x56\x7e\xe1\x6f\x2d\x7b\x97\x53\xe6\x20\x47\x68\xde\x46\xc4\x32\x71\xfc\x22\x7b\xbe\xd6\x5e\x55\xa5\xc1\x23\x38\x02\xdb\xdd\xfd\xac\xd2\xeb\x84\xbe\x47\x68\x3e\x45\xa3\xd6\x36\x47\xb5\xba\xd4\x2b\x30\xd2\x69\xd4\x06\x69\x57\x48\x67\x89\xeb\xbb\x1e\x40\x0e\x28\x5a\xac\x85\x31\x22\xc7\xae\x8e\x00\x9d\x8b\x4f\x9c\x9c\x2c\xf0\x4d\x5e\x82\x03\xa4\x55\x4e\x26\x86\xf3\xbe\x5d\x44\xbc\x1f\x1b\x74\x1f\x51\x93\x3a\x9a\xd1\xdb\x91\x00\x61\x77\xe6\x9a\xc5\x8a\x18\x83\x45\x20\x30\x1a\x9c\xbd\xa5\x35\x29\x4a\x36\x1e\x84\xb6\xa8\x44\x5f\x5d\x94\x44\xc8\xa0\xe6\x62\x73\xa9\xb9\x07\xb9\xb7\xdc\x3a\x45\x91\xd8\x85\xc0\x72\x23\xcc\xf9\x6d\xcf\xc5\xf1\x85\xca\xd8\x06\x70\x4f\xca\x8f\xdb\xf5\x6d\xe1\x22\x7a\x78\xf2\xc0\x64\x65\x10\x16\xba\x3b\x94\xe1\x2d\x04\x0e\x72\xca\x02\xab\xff\x75\xc5\x58\xb7\x4c\x40\x0d\x5a\x11\x2c\x63\xe6\x72\x89\x4c\x84\x6b\x8c\xf9\x46\xfa\x27\xaf\x83\x40\x0b\x02\x37\x2e\x5d\xb4\x4d\x7b\xc5\xa6\x6c\x9d\x31\x79\x1a\xa3\x43\x9d\x9d\xa7\xb0\x2c\x19\x52\x97\xc2\x6c\x68\xc0\x3e\x3c\x25\x25\x8b\x19\x59\xa0\x66\x76\x89\xce\xa2\xa9\x60\xcc\xde\x3b\x12\x75\x85\x99\x58\x74\xf8\xeb\x6f\x1e\x12\xe2\x48\x04\x96\x51\x0f\xc6\xec\xce\x4c\x85\x4f\xce\xbc\x53\x83\x9d\x0b\x59\xe5\x5c\x47\xd0\x62\x6a\x26\x2d\x0a\x95\xdf\x00\x7e\x78\xc0\xd3\x71\x42\xf0\xd4\x62\x55\x8e\xdc\x31\x58\xd9\x79\xc3\x7e\x59\xde\xd8\x67\x92\xbc\x87\x77\x8e\x13\x51\xf7\xff\x8f\xf5\xe4\x3d\x22\x65\xad\x58\x3e\xaa\x41\x22\xab\x95\x5c\xf3\xa2\x0a\x9e\x77\x7c\x0f\xba\x93\x3a\x3b\xe9\x3b\xb8\x62\xb6\xd2\x91\xa8\x02\x12\xb5\x4e\xa7\x6e\xe7\x3d\x45\x5c\x87\x96\x25\x69\x0a\x6d\x1f\xa2\xc6\x5e\xfa\x59\xcf\x48\x54\x10\xcf\x27\xc5\x30\x60\xf2\xa6\xe2\x5b\x63\x78\xbd\x46\xca\x7e\x22\x41\x5d\xfd\xba\xd4\xb1\xf0\x5d\x93\xb3\x62\xfe\x70\x5a\x12\x8f\x0e\x6b\xe8\x3c\x2e\x51\x7d\xdd\xf6\x09\xd2\x77\x33\x55\x72\xda\x85\xd8\xab\x68\xb3\x01\x5d\x47\x46\xb8\x4f\xd9\x64\x72\xd9\x51\xa5\x13\xef\x93\x1a\x6c\x08\xa3\xc9\xdc\x88\xd1\xa9\x2d\x03\x49\x8d\x99\x43\x47\x10\x98\xef\x8e\x6c\x4a\x10\x21\x0d\x50\xa3\x67\xd1\xca\xfd\xa3\xa5\x8e\x89\x09\x09\x4a\x4b\xc7\x6b\xef\x28\x52\x07\x54\x7c\x98\x62\x1b\x28\x57\x66\x8e\x52\x11\x5b\xd8\x75\x61\x64\x5b\xfd\xea\x5e\xf1\x90\x5a\x62\xd3\xb2\xbf\xbb\x91\x6d\xe3\xbb\x10\xb0\xb9\x95\x52\xb0\x72\xed\x65\xa2\x76\x0e\x8f\xe3\x7f\x3e\xc8\x1e\xfc\x22\xe2\xc3\x04\x09\x2e\xfb\xa9\x7e\x9f\xe4\xc9\x35\x60\x5a\x13\x35\x49\xd0\x12\xc2\xb4\xe6\xe4\xb7\x1c\x31\xbf\xc5\x45\x48\x0c\x48\x4a\xb2\x46\x6a\xee\xd2\x03\xf2\xb0\x0b\x59\x90\x79\xa6\xcf\x58\xac\x14\xfb\xe5\xf0\xbd\xf0\xaa\x18\x7e\x74\x95\xf2\x62\x8a\x36\xa5\xd7\x71\x84\x4a\xb0\xee\xa2\x64\xf0\x00\xac\x52\xde\x00\xb4\xef\xf8\xa7\xa7\x45\x44\xaf\xfa\x8e\xee\xf9\x91\x9a\x6e\x76\xc7\xa6\xb8\x3b\x53\x05\x71\xb2\x73\xe0\x95\x84\x6b\x30\xc5\x47\x32\xaf\xa1\x6f\xbd\x95\xe4\xb1\x50\x1a\x7c\xcf\x63\x8f\xdc\x65\xbb\xb9\x1a\x18\x41\x1e\x72\xd3\xee\x1c\xad\x52\x8f\xac\x48\x6b\xd1\xf0\x8a\xfe\x75\xaf\xa4\x11\x16\xa6\x61\x06\x9b\xe9\x3e\xfc\xa4\x2a\x89\x0b\x5d\xc8\xe8\x44\xb4\xf1\xf7\x9b\xbd\xa3\x94\x33\x92\x69\xfc\x0b\x60\x67\xe6\x53\x12\x1f\x6d\x3c\xb5\x51\xa5\xb5\xe6\x80\x99\xfd\xa5\x31\x03\xb5\x0a\x1b\xd0\x5f\x5c\x84\x13\xae\x6f\x26\x0d\xa1\x59\x23\xd5\xc3\x45\x27\x90\xc3\x4e\xb3\x81\x22\x9f\x4a\x5f\x8d\x1b\x35\x1c\x36\x9e\x48\x86\x3c\x2a\x08\xc0\x93\x84\xe0\xc3\x9d\x6c\x81\x61\x5a\xca\x07\x37\xf6\x63\xcb\x15\xfb\x9e\x81\x31\xf3\x1d\xca\xfe\x66\x5b\x93\x44\x62\x04\x7e\xa9\x04\x7d\x92\x2f\x04\xc7\x5e\x8a\xfb\x4f\xa0\x22\x93\x3b\x47\x9f\x56\x6c\x6d\x68\x77\x31\x99\x2c\x6a\x5f\x7a\x34\x3e\x11\x3d\x6a\xfc\x9d\xd1\xee\x91\x7c\x8f\xf2\xd3\x5a\xa3\xe9\xed\xfd\xfd\x24\x41\x28\x5d\x07\x45\x9a\xaf\xfe\xe7\xe6\x4f\x46\xdb\x80\x89\x7a\x8f\x90\xd5\x6f\x1d\xda\xfd\x89\x6d\x83\xf6\xf5\x89\x67\x53\xc8\x4d\x53\x19\xfe\x73\xae\x0c\xfe\x67\x0a\x03\xa2\xcc\xae\xac\x63\x0f\xa5\x65\x1a\x9f\x90\x86\x5f\x77\xcf\xfb\x92\x9e\xae\x89\x0d\x4c\x2a\xb4\xb6\x0f\x57\x4c\xbf\xc1\x5c\x67\x1e\xe9\x72\x17\xe9\xd7\x56\xf2\x35\x21\xd6\xd7\x8e\xb8\x90\xb5\x75\x72\x8e\xe3\x94\x2d\x6c\xc7\x6b\xf3\xc3\x8d\x1c\x29\xe3\x3b\x06\xa1\x9e\xc8\xc1\x40\x2d\xee\x1a\x58\x0d\x2e\xbb\x1d\x2c\x7b\x7a\x40\x7a\xe9\x8c\x1a\xcc\x53\xb0\xb8\xd9\x99\x2f\x04\xdf\x7e\x4e\xe4\xe6\x1d\x53\x23\x13\x33\x0d\xad\xe9\xc7\x43\x27\xa6\x5d\x7e\x6d\xe1\xd2\x54\x9e\x62\x40\xdb\x89\xa9\x7e\xb7\x0e\xff\x6b\x0e\x66\xbc\xf7\x79\xf3\x7e\x91\x75\x08\xb7\xb5\x9a\x24\xdd\xe6\x57\x21\x41\xcc\x9e\x9f\x35\xf8\xa6\x2d\x57\xd0\xad\xa8\x1c\x8b\x24\x64\xff\x5b\x01\xc3\x19\xe1\x61\x4a\xa3\x15\x53\x5e\x18\x5f\x53\x2e\x88\x8f\x50\x23\xb6\x7e\xb6\x6e\x28\x4d\x12\x10\x81\xd7\x36\x8c\x4a\xe6\x7a\xa5\xe6\x62\x33\x6a\x4e\xb7\x5e\x83\x59\x2f\xb3\xb5\x57\xc5\x76\x18\xbf\xdf\x55\xb1\x0d\x91\x21\x65\x77\x66\xc1\xdb\x62\xe7\xb7\xb5\x4c\x6e\x99\x31\x2d\x1f\x5e\xe4\x9a\xd1\x91\x47\x8b\x67\x52\xe0\xc5\xcf\x14\xb9\xf4\x4e\x50\x05\x7c\x0f\xc7\xfe\x2a\x33\xd6\x49\x72\xe2\x61\x15\x49\xfc\x2a\x07\xc3\x3e\xfd\xc4\x65\x3c\x0b\xe0\x54\x1c\xed\x33\x46\xdc\xac\x21\x00\xe5\x0b\x81\xb3\x8c\x2d\x83\xdb\x81\x83\xa4\x6d\xf8\x71\x8e\x9d\x3d\x74\x84\x94\xf0\x1e\xf5\x73\xf1\x27\x00\x8a\x35\xba\x62\x22\xcb\xa6\x6e\xd3\x4d\xcc\x4b\xb6\x2d\x4f\xc6\xfb\x0a\x56\xd3\x69\xcf\x97\x9e\xe2\x49\xac\x83\xeb\xd4\x99\x36\x5f\x08\xce\xe5\x94\xf6\x1c\x76\xca\x11\x8d\xa9\x3b\x7b\xe7\x2a\x76\x23\xcc\x71\x84\x6a\xf5\x1c\x94\xd4\xf0\xa7\x4d\xa5\xd0\x83\xf1\x13\x14\x91\x57\xe8\xb8\xb4\xb1\xc4\xca\xd5\x9b\x4d\xf1\xd0\x1b\x98\xf8\x45\x66\x47\xf1\xf1\x66\x49\x42\xca\x82\xb0\x46\xd3\x1e\x6d\xfd\xb3\x0a\x3c\x00\x79\x28\x5e\x2d\xda\x99\x27\x54\xba\x86\xd1\x88\x96\x62\x9f\x1b\xa5\x09\x30\x74\x3c\x14\x75\xa8\xf3\xb3\x93\xf9\xa8\x87\x31\x9b\xce\x9d\x1b\x9d\x3c\x49\xa1\xe5\xc2\xba\x09\x09\x8c\x45\x55\xae\x51\x7c\x48\xab\xd8\x83\xac\x13\xcc\xe0\x0a\xab\x9f\x53\xad\xad\x5d\xae\x8d\x4f\x47\xb6\xa5\x2b\xa5\xc6\x7a\x2a\xc1\xc9\xce\xdb\xc8\xf1\x32\x18\xd3\xf6\xab\xd6\xde\xc4\x33\x64\xcc\x14\x99\x0b\xdd\x5a\x9f\x12\xfd\x1d\x0b\x3a\xf9\x96\xe9\xf9\x42\x50\xde\x23\x1e\x1b\xf0\x4c\x0b\xd2\x90\x94\xb9\x78\x6e\x60\xf4\xa6\x80\xc1\xbd\x54\xb4\xaf\xec\x17\xe5\x6a\x15\xd8\xd0\xa2\x87\xda\x8e\x76\xc5\xa2\x84\xfa\x2b\x70\x21\xbd\x38\xcb\xec\xd8\xa0\x8a\x64\x60\xbd\xc2\x71\xb8\xbf\x9f\xc5\xae\xfb\x56\xec\x13\xfa\x84\x2f\x19\xcc\x57\x16\x1d\xb5\x59\x4c\x27\xe8\xfa\x59\x62\xca\x4a\x1d\x92\xf3\x15\xa4\x57\x12\xe9\xcf\xe7\x8d\x21\x52\x22\xef\x18\xb8\xc6\x04\x7b\x83\xa7\x25\xc6\xb8\x0f\x1c\xc8\xda\x05\x23\x16\x48\x18\x17\x03\x50\x7d\x8c\x4f\xf5\x49\xbe\x81\x96\x8e\xc9\x2d\xed\xd3\xa2\x0d\x7f\xd3\x5b\x71\x5e\x83\x48\x2c\xf7\xf6\x66\xb3\x5a\x59\x18\xd1\x8a\xff\x37\x41\xe5\xaa\x50\x7c\x5a\xf6\x9d\xd6\x7e\x51\xe9\xe7\x84\x61\x69\xe9\x85\x4b\xc3\xbf\x59\xb8\x70\x49\x58\xef\x57\x93\xc0\x87\x06\xb6\x2a\x28\x5f\x05\x56\x05\xa5\x44\x87\x82\xfd\xa7\x92\xeb\xb0\x64\xf3\x75\x02\x7a\x0d\x93\x85\x23\x17\x2d\x5e\x34\x89\x5e\x69\xf8\xf5\xbf\x7e\x54\x22\x28\x60\x0b\xdb\xec\xc0\x83\x07\x87\x4b\x8f\x42\xd6\x10\x2f\x04\xdd\xcb\xa5\x46\x4f\x58\x51\xd1\x23\x26\xbf\x6b\x94\xd4\x26\x33\x08\x4a\x8d\xb0\x32\xaf\x9e\x16\x75\x51\x2c\x19\x20\x4e\xcc\xef\x3f\x99\xf4\x26\xba\x8f\xa9\xd7\xfc\x61\xa0\xb8\x94\x30\x45\x94\xdf\x70\x76\xda\x56\x91\x01\xdb\xd0\xc6\xd4\xe5\x49\xee\xfc\x8e\xf4\x24\xf9\x4e\x92\x80\x24\xb7\x6c\x97\x90\x13\xc0\xa6\xc7\xf2\x57\x2f\x88\xa3\x2a\x4a\xed\x4c\x8c\x0d\xa6\x5c\xbf\xea\x15\x09\xf0\x04\xa2\x17\x38\x59\x69\xf9\xad\x06\xba\xc7\x55\x12\x72\xf7\xac\xe8\xc1\xe0\xd2\xe5\xd3\x92\x9d\xf3\xa4\xfd\x13\x0d\xc6\xbe\x2a\x29\x98\x94\x98\x40\x47\x80\x66\x27\x9f\x4c\x3b\xd7\xe5\x5a\xf0\x68\x82\x14\x67\xb0\x09\xf9\x57\x6e\x54\x41\x10\x10\x11\x66\x1f\xf1\xc5\xa1\x8a\xa8\x9a\x05\xec\x98\x55\x7d\xef\x2e\x2e\x07\xea\x94\x23\xc1\x80\xcc\x76\xa5\xad\xe8\x40\x18\xe6\x30\x74\x03\xae\x18\x97\x72\xd6\xa7\xe6\x12\xec\xd3\x26\xed\x63\x7b\xb6\x0e\xa9\xe5\x18\xbd\x8f\x57\x5f\x88\x73\xc8\x46\x49\xc2\xef\x67\xae\x21\x09\x89\x14\x9b\xb3\x2b\xa6\x3c\x27\x1e\x10\x34\xf8\x48\x3d\xf3\xe4\xdc\xab\xe3\x9f\x76\x52\x37\xef\xb4\xf5\xef\x82\xbe\xc9\x33\x63\xea\xb4\x0e\x4e\x6c\xa6\xfb\xf6\x43\x85\x72\x51\x04\x84\x08\xd1\xa8\x6f\xbd\x28\xf9\xf5\x4e\x0d\x5f\xb2\xf6\xca\x85\x78\xa3\xd7\xac\x48\xfa\x32\x7b\xa1\x9f\xd0\x35\xa9\x02\x92\x46\xdc\x65\x06\x1f\x17\x05\x78\x52\xd4\x28\x98\x30\x40\x86\xa3\xd0\xa7\xdd\x7a\x56\x82\x06\x11\x50\x44\x9c\xa2\x16\xac\xd9\xc0\x65\x2b\x4d\x6c\x61\x43\xf6\x97\xff\xf5\x06\x69\x96\x0b\xe9\x19\x97\x2b\x4c\x51\x87\x49\x56\x97\x67\xb2\x43\x85\xcf\x2c\x67\x12\xb1\xa9\x6a\xc0\x45\x96\x20\x24\x07\xeb\x27\xb3\xdc\x21\x3c\x6c\x08\x2a\xfa\x6c\xd7\xbf\xf2\xac\x50\x79\x72\x81\x87\xdc\x92\x6a\x87\xd9\x9d\xbd\xf3\xcc\x88\x68\x72\x70\xf7\x9c\xa5\xa9\xfd\x7f\x68\xb8\x64\xef\x05\x2c\x2b\xc2\xbf\x66\x36\x6f\x4c\x6a\xaf\x13\x90\x90\x9c\xcc\xfc\x66\xf5\x75\x4a\x16\xe1\x79\x3d\x2a\xe9\x6a\xe7\x14\x84\x31\x70\x5d\x9f\x44\x83\xec\xe0\x42\x6f\x96\x6f\xe8\x10\xd0\x9e\x6f\x70\x7c\xef\x55\x6a\xbe\xeb\x52\x3b\x13\x1d\xba\x4c\x78\xe4\x31\x4d\xc4\x47\x0f\xfb\x3a\x0b\x76\xd9\x55\xc3\x25\xdc\x05\x30\xee\xf7\x01\xf1\xb8\x73\x6b\xf6\xfe\xcd\x42\xbb\xaf\x11\x96\x5d\x07\x2e\xa8\x09\x42\x95\xcd\x21\x56\x8d\x93\x53\x17\x1b\xf9\x04\x85\x3f\xbe\xa6\x49\xaa\x4d\x81\x6f\x19\x84\x05\xe5\x9b\x14\x60\x41\x09\x90\x49\x8c\x0f\x7c\xf5\x8b\x71\x2f\x7e\x5a\x5b\x58\xd9\xdd\x78\x59\x74\x2e\x96\x7d\x98\x2f\x04\x63\x3b\xd8\xc9\xdf\xd2\xda\x3e\x79\xca\xf4\x0e\x8a\x2a\x79\x5e\x44\x63\x5c\x4a\x25\xbd\x9a\x52\x65\x02\x0f\x58\x38\xce\xf3\x1f\xbd\x28\xa4\x7e\x5c\x5b\xca\x30\x5f\x58\x93\x7a\xa2\xdc\x5d\x24\x92\x4b\xe8\x78\x52\x41\x70\x5a\xb4\xe3\x09\x08\x57\x53\xcb\x9c\xd8\x27\x8d\x60\xfd\xa2\xcf\x82\xe5\xe6\x2d\x4a\xcf\xa2\x86\x91\x11\xe5\x51\xb5\x05\x71\x93\xb1\x41\x9d\xd7\xe2\xb1\xd7\xf3\xbd\xc5\x87\x19\x08\x7a\x5c\xb1\x7f\x54\x6a\x2e\xac\x53\xd4\x49\xa4\x87\x78\x32\xf1\xd6\x09\x13\xcb\xca\xdc\x36\x42\xd1\xe5\xa2\xca\x60\x31\x4e\x22\x7b\xe9\x41\x69\x42\x5a\xc5\x15\xe8\xda\x11\x2c\x39\x58\xd2\x9a\x4c\x8b\x3a\x9b\x7b\x64\xe2\xdd\xdf\x5b\x01\x71\xe2\xd5\x4c\xe8\x23\x3a\xf1\x66\xb6\x2a\x72\xe5\x4e\x49\x62\x66\x76\x67\x37\x1e\x50\x5f\x1c\xd3\xc3\xe3\x4d\xfc\x5d\x8a\x71\x80\xdf\xec\x36\x33\xe6\x56\x18\xd0\xce\x7e\xc0\xd6\x8d\x67\x12\x46\x49\xd0\x8c\xd7\x44\x96\xc5\x44\x45\x53\x7b\xae\x4b\x39\xe3\x88\x5f\x45\xc0\xe4\x42\x59\x83\x24\x37\x50\x5c\xb4\x28\xd3\x89\x66\x42\xef\x1e\x61\xe7\xc3\x42\x54\x86\x84\xc2\x29\x0a\xdd\xda\xae\x76\x81\x1f\xb0\x91\x61\x58\x90\x21\xe5\xa3\xe6\xc0\x4b\x7d\xf9\xbc\x0d\xf1\x76\xf1\xfb\x33\xe3\x75\xe8\xca\x9a\x40\x3f\x78\x2c\x36\x1b\xab\x42\x8f\xa5\xfe\x13\xdf\xfa\x64\x7c\xaa\xe6\x0b\xc1\x4b\x47\xe3\x6d\xda\x96\xa7\x95\xbc\x75\x5a\x91\xfd\xea\xc2\x84\xeb\xc2\xf2\xcc\x6e\xd4\xd3\x72\xd5\x6e\xd3\x8c\x83\xcb\xc8\x9f\x3e\xad\xa8\x06\x59\x3a\x36\x31\x33\x05\x0d\x1e\x77\xb8\x17\x3f\x93\xb5\xcf\x17\x82\xce\x7d\xec\x62\xe6\x42\xaa\xfc\x93\xfd\xe9\x11\xb1\x4e\xcb\x96\x0f\x69\x8e\x9b\xbb\x76\x5d\x9c\x2e\x5a\x14\xdb\x95\x39\x91\x53\x5f\x2f\x81\x12\x60\x09\xbf\xa3\xaa\x60\x96\x68\xf7\x8a\xc1\x23\x87\xee\x8b\x1e\x9f\xc1\x50\xbc\xd7\x8f\x55\x2e\xda\xf1\x4c\x02\x56\x73\xa8\xe8\x9a\x79\x12\xbb\x9e\x40\x07\x30\xc3\x79\xdf\x91\xc4\xb2\xa8\xb1\x22\x2d\x59\xc2\xcf\xeb\x7e\x89\xd5\x97\x73\x30\xc1\x9e\x29\x69\x03\xe4\x36\x18\xf2\x9b\x0d\xd3\x49\x26\xf9\x1c\xe3\xf0\x9e\x1c\x18\xa5\xbd\xf1\xd9\xf6\xcd\x35\x8a\xe4\x29\xaa\x41\xe6\xaa\xa1\x9d\xfa\x88\x35\xfd\x6e\x21\xa8\x0b\x3b\x29\x29\x06\x0d\xcf\x4f\xb4\x16\x39\x9a\x36\xbc\xa9\xa9\x13\x92\xfb\x07\xba\x1e\xb2\x81\x07\x23\x65\xb7\xcf\x8e\x96\x35\x83\x59\x48\xcf\xfc\xa6\xb7\x38\x98\x7d\xa7\x8e\x49\x05\xb0\xe1\x9c\xf6\x0b\x09\x97\xd3\xd2\xc6\x27\x26\x99\xbf\x51\x24\xa4\xa8\x4f\x58\x1c\x26\xee\xbf\xa8\x50\x52\x7c\x52\x0a\xeb\x17\x0f\xe7\x01\x8a\x78\x9f\x9f\x72\xd4\xd2\xd0\x45\x92\x21\x7d\xf6\xf0\xcd\x92\xd8\x82\x89\xac\x30\x49\xe7\x6b\x0b\x76\x0d\x91\xae\x96\xda\x6e\xd3\x22\xee\xb1\x07\xd9\x2a\x2c\x41\x18\x95\x7f\x97\x2d\x1b\xaf\x2e\x27\x03\x39\xc0\x72\xd3\x82\x41\xda\xfd\xf3\x95\x79\x13\x90\xe9\xec\x97\x6e\x91\x70\xc5\xd0\x8a\xb0\xdb\x99\xe1\xa3\xe5\x8c\xba\xee\x7a\x09\x28\xed\x92\xcd\xaa\xd3\x99\xd5\xe0\x03\x82\xa9\x1f\xa8\x27\x89\x6d\x43\xa2\xa3\xf0\xe2\x58\x37\x6a\xd2\x83\x29\xfb\x32\x17\xea\x61\xbe\x42\xc7\x38\xcf\x3e\x27\x32\x16\x2a\xe2\x0c\xd3\x0c\xc9\x15\xaf\x28\xce\x97\x98\xea\xe3\x7b\x11\x33\x28\xf3\xc4\x36\x51\x24\xc4\xf2\x7b\xdb\x54\xa9\xcd\x4a\x24\xcd\xa8\x9d\x3c\x23\x72\x47\x8c\xac\x7c\x21\xc0\x52\xa7\x99\xba\xb1\x20\xb6\xf7\x6a\xbd\x92\x10\x60\xae\xaf\xc3\x7b\xdc\xa2\x82\xf9\x63\xdf\xb1\x52\xcc\xf1\x1d\x1d\x59\x16\x6d\xd6\xaa\xef\xe7\xe4\xa6\x21\xf1\x7a\x67\x93\x12\x7a\x6a\xe5\xd6\x8f\xbc\x52\xa9\x07\x7c\xe2\x1a\xa0\xc1\x2c\x93\x82\xce\x77\xe4\xb6\x7d\xd1\x42\x7a\xd4\xf6\xcc\x4e\xf4\x58\x26\x58\xf0\x24\x9d\x92\xee\xdc\x84\xd7\xc4\x5f\x18\x98\xc8\x20\xa5\x2b\xf6\x4b\x52\x0a\x26\x26\x1e\x43\xb8\x21\x3a\x34\xf9\xd6\xe3\x62\x89\xd4\x91\x67\x72\x5d\x5d\xed\xb3\x92\x7f\x36\xc3\x73\x72\x24\xca\x57\x8e\xf1\xda\x18\x1a\x54\x09\x75\xdb\x42\x55\xd7\xbc\x06\x1c\x0f\x44\x68\xbb\xee\xec\xcf\xde\x66\xf1\xe7\x5e\x68\x79\xae\x04\x3f\x0d\x6e\x79\x4d\x9d\x95\xa2\x6a\x8c\x03\xcd\xfe\x74\xac\x2a\x77\x40\xf5\x34\x80\x1e\x79\xdc\xb4\x3c\x31\x42\x60\xaf\x52\x1d\x65\x6d\xe7\x5b\x71\x98\x6e\x9b\xde\x12\x7e\xe2\xd1\x45\x52\x15\x07\x19\xdb\x31\xbb\x6e\x85\x28\x5c\x80\xe7\x01\xbd\x87\x82\xe1\x91\x63\xe2\xd9\x42\x1d\x3b\xd8\x6e\x44\x87\xf3\x47\xed\x4a\xd8\x30\xa9\xb3\x37\xc3\x0f\x44\xe9\xc1\x4d\xf3\x53\x45\x59\x35\x5c\x0f\xdc\x8c\x68\x77\x93\x94\xf3\x95\x60\xa4\x28\xa7\xfd\x5a\x53\x70\x27\x0e\xf2\x1a\x14\x96\x22\x16\xe2\xd7\xb7\x49\x0a\x76\xa0\x1e\x6e\xb1\x57\xa6\x70\x96\x1b\xf1\x6d\x46\xa7\x08\x26\xce\x52\xd5\xdf\x8b\x16\x57\xe0\xc8\x2d\x58\xde\xa4\x1c\x37\x8c\x1d\x93\x55\xec\x81\xa3\x4a\x9e\xef\x85\x78\xdd\x49\x22\x71\x40\xaf\x40\xc2\xcc\xee\xdb\x89\x4c\xb2\x64\x25\x0b\x8d\x77\x7f\x73\x90\xd3\x93\x3b\x5a\xdb\xe9\x5b\x5c\xc8\xaa\xa8\x5b\xac\x22\x45\x7a\x49\xc7\xcf\xd7\xe6\x25\xaf\xa0\x58\x1c\xe7\xf5\x20\xeb\xfc\xe2\xd6\x21\x51\x69\x44\x61\xd8\x0c\xd7\x18\x1c\x98\x98\xd2\xf7\x07\x31\x58\x2b\x58\x1a\xaf\x9d\x3a\x4e\x9b\x3f\xbe\xaa\x24\x1d\x61\x10\xf3\x90\x47\xd5\x08\x69\x18\x83\x6b\x79\xf3\x0b\x5b\x7e\x6c\xc3\xb9\xa7\x37\x7d\xcd\xf9\xbb\x31\x36\xd2\x9d\x58\xd2\xeb\x8a\x38\x6d\x48\xe7\x6b\xe7\xce\xc5\x55\x78\x4d\x06\xea\x66\x76\x9f\x8d\x87\x0c\xab\x41\x0c\x6f\x5d\x3f\x38\x5e\xdc\x78\x75\x23\x5f\x08\x8e\xb0\xc1\x79\xfe\x56\x68\x59\xbe\xae\x4b\x2d\x9c\xec\x76\x85\x20\xca\x7c\x67\xe8\xad\xb0\x8d\x34\x4b\xf5\x15\x77\x4a\x16\x73\xc4\x8f\x40\x28\xad\x25\x51\x53\x83\x22\xf6\x53\xe4\xb4\xcc\x1b\xad\x4a\x14\xf0\x3c\x4c\x1c\xd8\x88\xb3\xf7\xaf\x18\x0a\xf2\x15\xad\x16\x84\xd0\xec\xb2\x33\x71\xca\x58\x01\xf2\x5c\x3e\xd7\x7f\x90\x74\x6c\x56\x01\xa2\x1f\x76\x7d\x2f\x65\xd7\x79\x61\xc6\x57\xe6\x52\x98\xec\x1b\xb5\x3b\x15\x34\x48\x8b\x68\x36\x04\x93\x46\xa6\xac\xb1\xcb\x04\x44\x68\xab\xdc\xac\xfe\xc9\xfd\x52\x05\xc8\xe1\x8e\x67\xda\x84\xbe\x57\xa8\x7f\xea\x41\x97\xbb\x07\x6b\x5f\x94\x3b\xdc\x3a\xe0\x92\x4a\xda\xd9\xa2\xd4\x17\x65\x8d\x1c\x75\xcd\xdd\xd5\x21\x85\x01\xdf\x73\x2b\x88\x6a\x80\x07\x3e\x57\xc8\x59\x82\x7d\xcf\x84\xc0\xf5\x62\x49\xc4\x23\xea\x54\xd1\xc6\x3e\xc7\x12\x07\xef\xf5\x53\xda\x0d\xc0\x02\x36\x70\x74\x20\x60\x6d\x43\x27\x2a\xda\xe2\x36\x24\xe5\x68\xd6\x1f\xbc\xda\x3f\x9d\xe7\x31\xcc\x55\x55\x6b\x92\x14\x3d\x56\x57\x63\x95\x8b\x69\x92\xa9\x0d\x81\x90\x7b\x74\x85\xef\xeb\xee\xf7\x65\x66\x86\x53\xc7\x98\xbe\xa1\x39\xbd\x65\x57\x77\x1d\xba\x2e\x88\x5c\xdd\x2f\x0e\x17\xc7\x12\x95\x8f\xe4\xbd\xaf\x3b\x5e\x17\x29\x6b\x6b\xcb\x98\xd4\x53\xfc\xc9\xc1\xe4\x01\x0e\x88\x4d\xbd\xdd\xca\xbc\xd7\x1d\xc5\x96\xff\x9d\x35\x58\x3a\x2e\xa3\x7a\xf0\xdd\xb7\x25\xe7\x59\x8c\x2b\xae\x09\xad\x52\x78\x6b\x4b\x3a\x15\x8c\x97\x89\x5c\x16\x26\xaf\xe4\x52\xb0\x36\xf0\x4c\x68\x03\x0f\xe9\x54\x20\xbc\x5b\xfb\x47\x32\x28\x69\xaa\x4a\x37\xae\x26\x10\xbc\x6e\x15\xe7\x0b\xc1\xd0\xad\x29\x77\x30\xaa\x58\xc0\xda\x79\x9f\xec\xab\xaa\xb7\xa3\x6a\xd5\x8a\x46\x7f\xda\xd9\xd6\x01\x32\x42\x92\x69\xd4\x4d\x94\x66\xb8\x90\x78\x84\xb6\xb0\xbb\xb5\x2d\xa3\xb8\xef\x5e\xb8\x5e\xf9\x58\x36\x58\x7e\x52\x5c\x64\x29\x72\xa2\xca\x7e\xbc\x2c\x12\x5b\x89\x72\xd2\xdc\xc2\xb3\xaa\x52\x82\xcb\x41\x23\x39\xb2\x4d\x24\x93\x26\x24\x04\x12\x49\x4e\x37\xbb\xae\xb7\x02\x43\x22\x38\xf6\xc0\xb8\x79\xcb\x08\xf1\x30\xd2\x7c\xac\x6c\x87\xb8\x3b\xd3\xf7\xfc\xf0\xee\x9a\xcf\x0e\x4a\x82\xf8\xe8\x56\xb8\x62\xb3\x4a\x65\x22\x04\xc7\xf4\xd4\x9a\xc2\xe0\xa7\x74\x3d\x10\x6b\xfb\x77\x67\x36\x0a\x15\x40\x60\xe5\xa5\xe8\xf3\x8f\x53\x52\x7f\x89\x7d\xc7\x73\x63\xe2\xf2\x7b\x73\x55\x77\x78\xcf\xb4\xa0\x09\x85\x9a\xa3\xf6\xc5\x93\x52\x0e\x0e\x2a\x66\x18\x13\xc2\x3f\xfd\xc3\xa9\xc1\xd2\x6e\x09\x13\x02\x1a\xda\xbe\xfb\x98\x2c\x9c\x4b\x6a\x4c\xec\x26\x37\x7a\xca\xe5\x32\x02\xc0\xb2\xa0\x53\x66\x7b\xeb\x6b\x4f\x49\x9d\x19\x8f\x95\x40\xc1\xd4\x97\x9a\xa4\x0f\xaf\xc2\x48\x0e\x39\x33\x7f\x97\xf8\x6d\xe2\x17\x19\x02\x31\xf3\x9b\x59\x03\xa4\x2f\xa5\xde\x8a\xf3\xde\x4d\x46\xcf\x46\x18\x7e\xa2\x3a\xe7\xdc\x0e\x05\x0b\x81\xec\xaa\x15\xd1\x75\xaf\x99\x95\xec\x88\xd5\x4d\xcc\x42\xca\xf1\xa2\xea\x31\x4b\x6c\x06\x22\xa7\x58\x8c\x3b\x8f\x0c\x95\xcb\x43\x0f\x44\x2c\xf7\xee\x5c\xff\x4d\x6c\x41\xde\x85\x49\xc4\x4c\xbf\x83\xa8\xe9\xa1\xef\x78\x54\xd8\x82\x14\xc3\x7b\xca\xcd\x7e\x2d\x5e\x5c\xc5\x1e\x14\x40\x0f\x6b\x62\x21\x75\x62\x26\xff\xdd\x9d\x19\xa0\xe0\xbb\x75\x5c\x8d\x2c\x70\xff\x46\x51\x8d\x2b\x11\x1f\x45\x4e\x16\xef\x71\xd9\x56\x03\x96\x2c\xaa\x1e\x1b\xac\x7b\x64\x68\x82\x1e\x6a\x53\x8a\x30\xf3\xc0\x8f\x18\x5f\x98\x18\x50\x37\x65\x7a\xd0\x85\xd1\xd2\x31\x28\x75\xf0\xb2\x0f\x2e\x14\xb9\x2e\x4e\x9b\xe8\xd6\x07\x2b\xeb\x1f\x38\x65\xc1\x14\xba\x9b\x4b\x82\x60\xea\x37\x94\x2f\x04\x3f\x55\x84\x6b\x51\x15\xa5\xe1\x94\xc1\x67\xfa\x8a\xa2\xbb\xe1\x57\x98\x95\x6b\xbf\x65\xca\xa1\xe1\xea\xa0\x1a\x99\x92\x04\xaf\xf4\xbb\x2c\x7a\x7d\x35\xda\x1a\xc9\x9a\x27\x94\x41\x8c\xcb\x90\x3b\x74\x10\xf3\xb7\xc9\x71\xba\x0c\x60\xf9\xb4\xa3\x00\x9e\x60\x15\x84\x67\x3c\x3d\xde\xe9\xfe\xb9\x8e\xdf\x55\x09\x20\x9a\x73\x06\xee\xd3\x0a\x05\x8e\xca\x98\xd5\x19\xab\x6c\xbe\x2a\x18\x66\x57\x59\x8b\x33\xaa\x37\xb4\x47\xfa\x4f\x56\x03\xb1\x13\xc6\x49\xdd\xf7\x18\xb4\x4d\x3d\x6a\x7e\xa4\x48\x2a\x79\x90\xb0\x15\x1b\x3d\xf8\xdc\xb4\x4e\x05\x54\x88\x6b\x42\x45\x3c\xf8\xd7\x65\x4d\xd2\xe9\x47\x15\x58\xe8\xdb\xf9\xa7\xe3\xa2\x4c\x29\xfa\x56\x91\x16\xa6\xd7\x6d\x1a\x18\xd7\x91\xbe\xc5\x31\x07\x5f\x1b\xa3\xe8\xf4\x00\x0b\x52\x58\x7b\x70\x56\x63\x0f\x07\xde\xef\x73\xf4\x56\x43\xb1\x08\xaf\x20\xda\x82\x64\x19\x4f\xb0\xed\x9c\xec\x2e\x56\xa5\x62\xb8\xe1\x37\xbc\x35\x33\xb9\x97\xcb\xc0\xe6\x55\xcb\x1f\x9f\x57\x42\x80\x8d\x2b\x71\xc9\x77\xbe\xa4\x4c\xbb\x70\x3d\x82\x06\x64\x8e\x1f\x93\xce\x27\xdf\xd3\x4d\xa6\x16\x9b\xdd\xa6\x30\xd0\x5b\x3b\xf8\xa4\xf4\xe8\xc9\xe4\x73\x2e\x02\x52\x06\xc8\x91\xda\x1c\x17\x2e\x88\xfa\xbe\xad\xb9\x2d\x5f\x08\xbe\x71\x5c\xc1\x3f\xf9\x84\x00\xc5\xbd\x30\xfb\xc8\x0e\x6e\x8f\xc8\xad\x58\xc2\xab\x78\x85\x5c\xa3\xac\x57\x8f\x00\x03\x24\xd1\xfe\xb9\xf6\x7d\x72\xa6\xc3\x0b\x74\x7a\xb1\x3f\x7b\x21\x26\xb5\x30\x8a\x44\xd2\x64\xf5\x7d\x29\x3b\x64\x68\xec\xf0\x8f\x9e\x6b\x12\x3f\xee\x84\x04\xe9\x26\x1d\xb9\x5f\x3c\x22\x21\x57\xf2\xed\x51\xbf\xb3\x7f\x9f\xe1\xf2\x5c\xae\x4a\xa0\x09\x1d\x97\xab\xd5\xbc\xf0\x2c\xeb\x0e\x2c\x49\x62\x4c\x76\x0d\x4f\xbe\x47\x03\xd7\x99\xe9\x70\xe6\xfb\xe7\x14\xf9\x17\x07\xd7\x8b\x18\x10\x36\x4f\xcc\x04\x37\xab\x12\x69\x56\x89\xa7\x98\xbf\xe8\xa3\x8a\x9a\x71\xa5\x20\x1d\x18\x98\x07\xc6\xbf\xfd\x80\xeb\x59\xdb\x55\x0b\x51\x4e\xa2\xb6\xe2\x65\xb5\xbb\xc3\x79\x65\x11\xd6\x71\xe4\x4a\xfa\x0b\xf9\x45\x16\xa0\x46\x30\xa9\x8d\x37\x67\x17\x63\x2d\x15\x69\x07\x23\xf3\x43\xe5\x12\xeb\x26\xb6\xb9\xd2\xdf\x96\x97\x44\x99\x44\xc1\xb7\x99\xcf\x2c\x60\x3d\xca\x25\xc8\x00\x4c\x0b\x51\x01\x2e\xf6\x49\x1c\x42\xd1\xe0\x29\xfc\xd3\xfb\xa6\x5c\x29\xf5\x7c\x9c\xb8\x20\x8c\x88\x02\x7b\x5e\x56\xe6\xb8\x54\x93\x8f\xa7\x18\x1f\xf6\x11\xc1\xd4\xe0\xbb\x2b\xd3\x67\x47\x52\xa9\x0a\xba\x7c\x63\xef\xd3\x86\x48\x8d\x59\x02\x74\x86\xd8\xd7\xba\xce\x27\xa0\xa3\xcc\x82\xad\x3b\x77\x15\x89\x2c\xc3\x6c\x9b\x95\xd9\xd9\x67\x6a\xec\x47\x92\x47\xb4\x24\x6d\x09\x74\x82\xdd\x74\x44\xfb\x15\xd7\x13\x2e\x21\xae\x0e\x14\xa0\x75\x4a\x21\xcc\xa0\x5c\x92\xf7\xe8\xf8\x0f\x7a\xf0\xe7\x61\x21\x5a\x7b\x95\xbf\x7d\x82\x0c\x3e\x87\xd3\xda\x1e\xbb\x46\xa9\x9e\x40\x05\xb8\xa6\x82\x4c\x9c\x3d\xa6\x87\x11\x60\x84\x33\xa6\x75\xd6\xb5\xad\x71\xbd\xbc\x1a\x4a\x62\x97\x7b\x03\xf5\xdc\xf0\x3c\x16\xe8\xa3\xd8\xf4\x88\x52\x36\x61\x26\x20\xc7\xeb\xb7\x69\xcd\x02\x10\x3a\x75\x1a\x0d\x4c\xbf\x1f\x2b\x29\x40\xc8\x09\xdc\x5b\x83\xa5\x61\x71\x64\x0e\xae\x7d\xb8\x56\xbc\xa3\x22\xf1\x11\x23\xb2\x68\x9d\x03\x15\x92\x87\xef\xea\x16\x64\xc7\xe6\xf2\xb3\xac\x27\xd2\xdc\xda\x3e\x35\xfc\xe4\x63\x8a\x3a\xb9\x8b\x3c\x9f\xe5\xab\xac\x0b\x3b\xb2\x5d\x82\x3c\xf8\x96\x4b\x8d\x60\xdc\xd1\xa3\xa4\xc5\x54\x2a\xc1\x94\xca\x40\xb6\xf1\x14\x0b\x0e\x16\x2c\x23\xd7\x02\x1e\xa6\x75\x5b\x66\x89\xa7\xca\x65\xe9\xd8\x8e\xa4\xef\x32\xdf\x7b\x5f\xb1\xb4\xf0\x5d\x17\x22\x87\xd3\xf9\xa2\x4c\xf9\xec\xaa\x81\x7c\xe9\x58\x36\x6d\xbd\xd2\xad\xbe\x5c\x92\x63\x61\x6d\xf0\x6d\xad\xc9\xa0\xe1\x00\x47\x57\x5d\x65\xbf\xb1\x4f\x42\xad\x50\xc7\xd2\x54\xbb\xe1\xbf\x2e\xb2\xaf\x5b\x04\x08\x28\x13\x50\xa5\x80\xbb\xbb\xc6\x29\xab\x06\xd8\x45\x6c\x20\x51\xf2\x66\xa7\xce\xed\xc9\x4e\x99\x85\xaa\x91\x23\x06\x49\x7b\x0b\x23\xb6\xe9\x7f\xb2\xe6\x72\xa5\x9e\x8c\xb0\x14\xcf\x49\x88\xeb\x12\xb0\xac\xd8\xc0\x6f\xe5\x3c\x89\x44\x83\x4b\x72\x31\xd4\x6b\x0c\x3b\x96\x69\x6a\x42\x9f\xee\xba\x43\x23\x64\x18\xd0\xb2\x49\x62\xc4\x9e\x2f\x04\x63\xf7\x24\xc5\x66\xf8\xe0\x00\x79\x0d\xfe\xf8\x93\xef\x77\x2e\x49\x5e\x6c\x34\x98\x08\x32\x17\xa4\x53\x49\x65\x35\x06\x3f\x7a\x6b\x80\xf4\xbc\xe9\x6a\xca\x1e\x3c\x3c\x44\x22\xd7\x52\xac\x63\x18\xf3\x7f\xb8\x4c\x26\x14\x19\x90\xd4\x31\xb1\x22\x71\x95\x19\x7b\x14\x55\xde\x30\x41\xa6\xbb\x7e\xe7\x44\x76\xdf\xb7\x58\x55\xaa\xdb\x1c\x54\x5f\x52\x27\x66\x76\x15\xa0\xb2\xc3\x31\x34\x1b\xa4\x51\xaf\xeb\xeb\x3a\xb3\xc4\xc9\x5e\x73\x52\x1d\x6a\xba\x2e\x02\x0e\x73\xf0\xee\xe3\x88\xbf\xa9\x5a\x90\x61\xc7\x83\x7b\x4f\x0a\x81\x77\x2c\xcf\xb6\x1e\x3b\x7c\x45\xba\x28\x8c\x54\x79\xb5\xbf\xec\x12\x83\x1c\x02\x74\xc6\x4f\x66\x2b\xf8\x91\x4d\x71\xe4\xa9\xca\x42\x0e\x1f\x5d\x90\xb5\x0b\x75\xe0\x52\xdb\xba\xe3\xc9\x6f\xb9\xdf\x47\x50\x18\x0a\x4e\xdd\xd8\x5f\xee\xa4\xe4\x0b\x81\x33\x37\x39\xfa\x01\x46\x18\xfe\xad\x1e\xa7\xd2\xd7\x1e\xbf\x9c\x17\x1d\xcc\x41\x86\x75\xbf\x68\xfa\x15\xc4\x4d\x86\x8e\xe6\x19\xe1\x03\x5d\xb9\xaa\x49\x60\xfd\xa5\xf6\xad\xb6\xac\x23\x79\x1a\x13\xe8\xf9\xc4\x89\xe3\x7b\xf0\xf7\xbd\x53\x3e\x49\x34\x28\x16\x8f\x25\xa3\x02\x28\x5a\xe9\xd6\x6c\xe6\x4f\xaf\x2b\x6d\x93\x3a\xb7\x30\x0a\x5e\x92\xbc\x48\xca\x0d\xdb\x01\x2e\xf2\xe9\x60\x44\x5f\x2f\x0e\x60\xce\xe8\x8b\x7d\x11\x14\x5f\x3d\x42\xa5\xcd\x38\x02\xff\xc3\xea\x95\x3d\xae\xa8\x68\x2e\x75\xfd\xd9\x81\x92\x80\x00\x60\x18\x97\x97\x16\x48\x94\x6c\x8b\x8f\x04\x72\xce\x3d\xf1\x1b\x36\x65\x29\xdc\xcc\x33\x9e\x94\x25\x5b\x7e\xb9\xcc\x90\xbe\xb9\xda\x7e\xa5\xb7\xa9\x53\x51\x61\x7a\x65\xc1\xab\x73\x92\x70\x41\x37\xdc\x4e\xe5\x22\xae\xb8\x3d\x51\xd8\xae\x79\x5b\x72\x9b\x23\xc8\x63\x06\x62\x6f\xbf\x26\x2e\xbe\x04\x21\x13\x07\xfa\xf1\x6c\x89\x0b\x0d\x4d\xa4\x5b\x90\x61\x5d\x3e\x7a\x3b\xf9\x4e\x5b\x5a\xa9\x14\xae\x15\x2b\xeb\x7d\xf5\x14\x5b\x39\xcb\xa0\x41\xcd\x9d\xc5\x1d\xfe\x76\xfd\x20\x41\x0c\xab\x47\x2d\x8c\x1b\x46\xc5\xe1\xc3\xa0\xac\x3f\xc5\xb4\x64\x70\xa4\x38\x3a\x35\x3c\xbe\x72\x1b\x8f\x4b\xd6\x4e\x74\x4a\xa4\x54\x96\xdb\x66\x4b\xd3\x2d\x82\x0d\x5f\x8f\x7a\xe8\xb9\x05\x4d\x02\xad\x01\x48\x11\xfb\x12\xb0\x50\x7b\x48\x52\xbd\x2a\xc1\x62\xf3\x0c\x0a\x03\xfb\x70\xcc\x20\xa9\x55\x08\x21\x15\x0d\xbd\x6b\x3b\x77\x4f\x02\xc4\xf6\xe9\x96\xee\x7c\x53\xa5\x68\x00\x52\x86\x02\xad\xd2\x4b\xbc\x5b\xb8\xba\x6a\x61\xc2\xc8\x99\xeb\xb6\x8e\x4e\xed\x48\x0e\xbc\x14\x0d\x24\x63\xac\x78\x15\x6d\xd3\xb8\x4c\x4c\x78\x3b\x76\x31\x95\x1d\x4d\x8f\xf2\xdc\x39\x25\x11\x94\xbd\x34\x45\xe6\xda\x0b\x2c\x79\x82\x04\x70\x05\xbf\x4c\x91\xc3\xbf\x2d\x5c\xcf\x57\x58\x7d\x7d\xc7\xbc\x2b\xf9\xde\xf4\x29\x1e\x1d\xd6\xf8\x44\x82\xa9\xf3\x6a\x67\x46\x0b\x56\x75\xcb\x74\xca\xaa\x6e\x13\xfa\xa1\xa9\xbe\x48\xb0\xe6\x46\x96\x7c\x2f\x86\x2e\x04\x44\x37\x53\xad\x86\x83\x4f\x88\x13\xa0\xc2\xfb\x4a\xe2\xe8\x6e\x6e\x1b\xa5\x14\x7e\xd5\xf0\xf8\xc0\x04\x71\x63\xc1\xee\x4c\xe5\x98\x2c\x94\x0f\x9d\x08\x0b\xc0\x8d\x06\xda\x6f\x96\x24\x27\x80\xe3\x81\xa8\x73\x3a\x42\x11\xa2\xac\xe2\x2a\xed\xa9\x44\x20\x9b\xdc\x4d\x67\xd4\xb1\xb5\x03\xa3\xb1\xf5\xbb\x22\x85\x33\x7c\x3b\xb6\xc9\x6e\x0a\x94\x29\x6c\x24\x58\xc2\x83\xc6\x0f\xe6\x25\x31\x9e\x9f\x66\xde\x0c\xd9\xdb\xad\xc8\x78\x23\xea\x47\x69\x93\xc6\xa8\x33\xbe\x2a\x26\x5e\x94\x09\x6f\x96\x40\x89\xcc\x28\x5f\x7d\xdd\xd3\x24\x53\x8d\x08\xd7\xd1\x9c\x2f\x04\x3f\xde\x23\xdb\xf2\x45\xae\x46\x34\x57\xdd\xda\x1e\xc3\x68\x3d\x3a\x35\x8c\x01\x56\x3b\x57\x8b\xce\x69\x47\x0b\xf3\x4d\x29\x68\x8a\x4e\x28\xf0\x4c\x82\xb1\x1d\x7b\x5f\x7e\xe6\x15\x29\xd4\x03\x07\x18\xcc\xe9\x72\xc7\xf0\x7e\xf1\x8f\xc7\xe6\x0b\xc1\xa7\x56\x49\x22\x31\xae\x67\xda\x14\x60\x7e\xc7\x93\xac\x26\x6b\xf9\x14\xc5\xb1\x5d\xb6\x85\x75\xc5\x65\x52\x26\xed\x63\x8e\x9f\x95\x6a\x9a\x84\x51\x8e\x36\xee\x68\x3f\xfd\xda\xbe\xf2\x4c\xc0\x63\x1a\xd9\xcc\x1b\x73\x65\x6f\x85\x26\x8c\x7d\x22\xf4\xab\x1f\x1e\xaa\xb8\x11\x98\xd4\x41\x9a\x4b\x68\x52\x76\xe9\x8c\x89\xb2\x83\xbd\xcf\xe0\x2e\x85\xee\xec\xcb\x39\xde\xbe\x03\x84\x67\xf1\xb9\xda\x02\x89\x21\x5f\x76\x62\xf6\xfa\xdc\x7d\x14\xf5\x98\xbf\xcd\x82\xba\x47\xb0\x0d\x75\x13\x84\x15\x6f\x7a\xfe\xfc\xbe\xe2\x9e\x67\x41\x97\x9d\x45\xc1\xf4\x92\x60\x6d\xd9\xb6\x14\x7d\x1f\x31\x93\x09\x94\x1f\xdb\x06\x8d\xe3\x02\x54\x36\x72\x0c\x2e\xfe\x75\xfc\x05\x96\x02\x9b\xd8\x86\xf4\x44\x0b\x5f\xc3\xcf\x4f\xa5\x5b\xac\x0c\x42\xc7\x42\xce\xd0\xa1\x4a\x75\x64\x59\x4c\xef\x38\x7b\xc5\x81\x78\xce\x08\x1d\x2f\xda\x20\xd9\xfd\x62\xf5\x39\xd8\x81\x9e\x09\x99\x9e\x7a\x70\xc9\xde\x81\xfc\xe4\x71\x3c\x9f\xb0\x93\x47\x3b\xb6\x2a\x21\xc8\xc7\x84\x64\xf3\x85\xe0\xb6\xe0\x26\xd7\x04\x55\x18\xe7\xb9\x37\x96\x7c\x87\x06\xfd\xd1\xf4\xe7\xa3\x81\x37\x7a\xca\xea\x8e\xa2\x01\xa7\x18\x6d\xb3\x26\x45\xf1\x44\xf8\x9b\x9e\x8b\xdc\xb9\x7c\xc7\x63\xb2\xe3\xbf\x3c\xa4\x98\x97\x02\xe4\xc4\xf6\x4d\x3f\x7b\x59\xe4\xf2\xe3\x29\x05\x9b\xb6\xcb\x94\x56\x47\x11\x76\x51\xdd\x18\x2e\xf1\xf3\xbf\x1b\x94\xd6\xe6\xea\x2a\xb4\x84\x10\xee\x7c\x2f\x6e\xc1\x3a\x28\xd5\x94\xd0\x3e\x36\x12\x6a\x34\x16\xb2\x11\x8b\xc1\x81\xac\x57\x45\xb1\x26\x0d\x4e\x10\xaa\xdd\x93\xcc\xa1\x28\x13\x02\x94\xcb\x84\x19\x1f\xf0\x3a\xe3\xcf\x3b\xd4\xd1\x13\xe0\x69\xb2\xf6\xa7\xa7\x92\xa7\x4b\x0d\x38\xd1\xbc\x55\x7b\x20\x60\xb5\x17\x85\x63\xe8\xac\x06\xfd\x83\xa2\xcb\x03\x6b\xd4\xda\x88\x8f\x81\x6f\xdb\x9e\xd0\x52\x88\xa9\x4d\xb9\xdb\x5a\x47\x08\x93\xa4\x94\x75\x48\xc6\x3e\xc0\xf1\x89\x61\xd9\x47\x33\x93\x2f\x3f\x2f\x49\xc0\x16\x11\xa6\x1c\x14\x2d\x58\x28\x02\x87\x01\x6b\x88\xe1\x9f\x5e\xdc\x21\x77\xb3\x48\x3d\x21\xaf\x73\xef\x2e\xf6\xde\xcb\xc0\xb2\x58\x82\xa0\xe5\x3b\x55\xb6\xbc\x8b\x59\xd3\x95\x95\x71\x33\x24\x6b\xce\x52\x78\x50\x16\xba\x35\xef\x7c\xf2\x6f\x4a\x10\x84\x6b\x36\x0e\x1d\x2f\x6f\x10\xf5\xf4\x78\x0b\xe3\x4a\xf8\x47\xef\x8e\xb8\x5c\xa2\x50\x1b\xb8\xe6\x56\x50\xc5\xcc\x17\x82\x9b\x5b\xc5\x6f\x43\xa3\xcc\x06\x07\x7f\xe9\x54\x0d\xc3\x4a\x16\xe4\x2f\x23\xd8\xb1\x5e\xb1\xb9\x62\xf6\xd9\xac\xe3\xf0\xb4\xe4\x46\x51\x07\x56\xf4\x0c\x9f\xe8\x2b\x0d\x7c\x78\x2e\xcb\x32\x92\xbd\xef\x48\x04\xe3\xba\x93\x56\x94\x3d\x20\xb0\xce\x15\x8a\xaa\x7c\xcc\x54\xaa\x0a\x1b\x12\xa4\x47\x16\xc2\xc9\x3f\x5e\x7a\x4f\x8a\x6b\x6b\x20\x8e\x65\xa5\xc0\xa5\x36\x65\x72\x8e\x3c\xdd\x8c\x3d\x48\xfe\xb0\x48\xea\x69\xdb\xdc\x53\x2d\xbc\x9d\x33\x07\x26\x28\x1f\x8b\x6c\xe8\x7a\x80\xf4\x20\xab\x96\xbd\x76\xb1\x8c\xec\x8b\x4a\x5e\x0a\xf9\x0f\x22\x53\x24\x8e\x52\xbf\x71\xb8\x6a\x35\x18\x26\x80\x0c\x9d\x4b\xab\xf1\xbb\x47\x72\x4c\x27\xb0\xac\x7c\x21\xf8\xce\x3d\xe2\xe5\x19\x90\xf2\x38\xbb\x33\x0f\x6f\x49\xde\x93\x81\x5c\x17\x5b\xd1\x0e\xcc\x7c\x38\xb2\x49\x08\x15\x41\xd1\x6b\x3a\xdf\x26\xf7\xf4\x40\x9d\xb2\x79\xcf\x4b\xe2\xef\xd3\x69\xed\xf5\x86\x84\x4f\xf5\x4c\xe8\xba\xc0\xc2\x0e\xaa\xa0\x7c\x21\x58\xd8\x15\x43\xa4\x75\x20\x9f\xe0\xdd\xb9\x85\x6f\x2a\x07\x25\x70\x7c\x44\x01\x80\x51\x36\x3c\x9c\x5c\x2b\x45\x1c\x1c\x85\x8d\xd4\x1b\x7d\x72\xdd\xb0\xd4\x8e\x21\xac\x30\xcf\xdc\xf0\xb6\xe4\x03\xe7\x1b\x28\x6a\x09\xa1\xed\xdc\x64\xcd\x09\xeb\x62\xce\x81\xd5\xee\x90\x04\x73\xcb\xbe\xe3\x51\x95\xe6\xec\x37\x3d\x69\x01\x23\xc7\x60\x1a\x5c\xd9\x4d\xfd\x14\xc9\x04\x52\xf6\x39\x82\xe0\x47\x6d\x32\xd5\xcb\x8a\x3c\x59\x07\x9c\x54\x6b\x51\x0b\x46\xbd\x46\x9a\xe1\x4d\xd9\x24\x19\xcd\x87\x99\x50\x73\x73\x33\x43\xb1\xf5\xda\xaa\x66\x5f\x36\x88\xe4\xad\x83\xfb\x0f\xf6\xe3\xf5\x49\xfb\x14\x1a\x43\x8c\xf3\x5c\xf8\x04\xea\x15\x86\xe2\x9f\xc1\x85\x98\xc2\xbf\xcf\x1b\x98\xa9\x88\xbd\x77\x5e\xf2\xd0\xb4\x7c\x9a\x45\x7d\xda\x12\xbd\x12\x3a\xb2\x2a\x04\x9f\xb4\x24\x33\x1b\xec\xa1\x1a\xc3\xce\x84\xcf\xe0\xc6\x51\xf1\x4e\xb4\x7c\x3d\x7c\xe1\x2f\x28\x67\x0c\x60\x0a\xbc\x5c\xb3\xe3\x17\xfb\x93\x83\x39\x13\x90\xbc\x6b\xc2\x12\x4a\xc0\xcd\xb5\xca\x0e\x29\x92\xfa\x96\xc5\xa2\xfb\x8e\x51\x6c\xae\xb8\x98\x75\x45\x64\x62\xdf\x17\x5f\x1a\x20\xd3\xf2\xc2\x77\xf0\x53\xab\xfd\xff\xcb\x91\x5c\x88\xbf\xfe\xe3\xa3\xc3\xe4\x63\x82\x41\xbb\x58\x6b\xe4\x5f\x66\x8f\x11\x8b\xbf\x65\x72\x47\x4b\xdb\xe4\xe9\x53\xa6\xa4\x6a\xdc\x99\x6f\x2b\x6a\x51\x98\x78\x26\x1f\xdb\x6a\xcf\x9d\x11\xd2\x0c\xd4\x5d\x29\xd3\xa4\xd8\x94\xeb\x9c\x4a\x1c\xde\xc5\x03\xa3\x52\x8c\x45\x1c\x1d\xd8\xb5\xa3\xaa\x66\x42\x15\x92\x1a\xeb\x19\xb0\x91\xdf\x67\x97\x2a\xea\xe6\xd0\xf3\x7c\x5d\x67\xaa\x0a\x34\x27\xbe\xff\x02\xab\x94\xef\x02\x8c\xe9\x24\x72\xb5\x71\x0a\x80\xd3\x42\x15\x58\x47\x9c\x2e\x5c\xe8\xce\x6c\x9a\x13\x07\x0d\x04\xa4\x24\x2f\xfb\xa2\xc5\x16\xdf\x12\x5c\x43\x90\x3a\xc1\xcf\x55\xc0\xcf\xd4\x89\x23\x66\x3e\x65\x3f\xbf\x3d\x39\x18\x73\x31\x1d\xdd\x04\x9b\x76\x45\x23\x41\xcb\xf2\xb9\x83\x46\x06\x8e\x13\x5b\x04\xb3\x39\x1e\xfb\x97\xdc\x12\x49\x96\xa3\x4e\x80\x53\xb6\xd8\x49\xa3\x39\x7b\x25\x48\x80\x3d\xb5\x99\xaa\xed\x66\xfe\xaf\xd0\x0c\x25\xc0\x97\x7a\x98\xf7\x2a\xb0\x21\x03\x78\x34\x27\xe4\xe3\xbd\x7f\xd8\xaf\x64\xa0\x04\x41\xc7\x88\x33\xd0\xf5\xd2\x4a\x6c\x9d\x46\xc5\x0b\xb3\xf3\x56\xc5\xbb\xc4\xa7\x4a\x02\x99\xd1\xef\x4b\x82\x33\xa8\x6c\xa6\x75\xd7\xb3\xdf\x39\x36\x42\x18\x9e\xa9\x1a\x74\xc1\x4f\x4e\x28\x89\x2e\xf2\x58\xaf\xbd\x3b\x77\x6f\x3f\xc9\xf4\xc4\x29\xfb\x56\x89\x69\x5f\xb6\x8a\x60\x5e\x71\x70\x9d\xe6\xb3\x93\x79\x03\xbb\x08\x75\x6c\xf3\x28\x35\xf8\x09\x11\xe1\x3b\x9a\xa7\xe5\x0b\xc1\x0a\x41\xd3\x6e\x99\x42\x7d\x6e\xb2\x2f\x88\xbb\x2c\x16\xc7\xd1\xc5\xf6\xa2\xa7\x62\x30\xdd\xa8\xc7\x9e\x9d\x3e\x56\x6d\x5e\x59\xc0\x0e\x4b\x66\x36\xbd\xce\x1e\x90\x46\xf1\x31\x0d\xb0\x53\x92\xf0\xb4\x80\xc3\xfa\x9d\xff\x73\x42\x76\x50\xc6\x25\x14\x21\x42\x9e\x3a\xa6\xe0\x8c\x08\xcd\x50\x2d\x3a\xcd\xcd\x5d\xda\x26\x0d\x65\x09\x82\x25\xb6\xa1\x6b\x8a\x3f\x0a\x40\x91\xc1\xaa\x76\x2f\x47\x99\x32\xf6\x27\x1d\x16\x99\x27\x94\x0d\x57\x85\x54\xd6\x47\xac\x7d\xa3\x28\x8d\xb6\x09\x9b\x7e\xe6\x3e\xe7\x0d\x55\x1e\x0c\xe2\x90\x90\xcc\x75\x07\x54\x7e\x11\x74\xfc\x88\x05\xf6\x77\x87\x58\x72\xd8\xda\x32\x79\x5a\xeb\x14\x4a\xea\xff\x9b\x29\x0c\x05\xb9\x18\xde\xef\x43\xd4\x29\x69\x0a\x67\x7f\xa8\xb0\x2c\x09\xac\x41\xc0\x2d\x41\xb2\xcf\xec\x97\xba\x6e\x3e\x81\x80\xf6\x22\xb2\xc5\xa7\x52\x58\xf6\x12\xd5\x98\x64\xda\x71\x99\x83\x07\x06\xf3\x1d\x68\xdb\x88\x6e\xb4\x30\x07\xfa\xea\x14\x8e\x0d\x05\x1e\xa2\xee\xdc\xf9\x42\x60\x2b\x68\x9a\x32\xc1\x7e\x95\x67\x87\xb7\x0c\x54\x00\x85\x80\x54\xe8\x53\xa3\x58\xac\xf7\x3b\xd9\x5d\x76\xc2\x3a\xb4\xa8\x50\xc1\xf7\xf7\xaa\x19\x70\xd9\x67\xc3\x1c\xd6\x6c\xff\xfb\x43\x8a\x1c\x17\xa2\x38\x7b\x4a\x9f\x63\xed\xaa\xc7\x36\x08\x82\x0e\x28\xca\xdd\xe0\x8f\xd4\x0a\x49\x07\x3e\x8d\x69\xe1\x6a\xf8\x6c\xfb\x28\xa5\x40\xd2\x61\x35\x96\x77\xa5\xb1\x04\x4a\x2c\x39\x8f\x40\x87\x2a\x3b\x16\x82\x1d\x17\x14\xec\x0c\x5a\x1d\x27\xec\x5f\x3a\x20\xed\x15\x44\xfd\xca\xb5\x95\x2f\x8a\x3d\x06\x3c\xfa\x8a\x32\x6f\xab\xf6\xff\xc0\x76\x13\xba\xa8\xfd\x8e\x8a\x5c\xa6\x08\x7c\x0f\xb9\x1e\x1d\x65\xfc\xe7\x31\xa1\xa2\xdc\xda\x9e\x2f\x04\xfa\xd0\x41\x32\xec\x8c\xf7\x97\x36\x4c\x50\x5e\x03\xb6\x90\x1e\x69\x4b\x67\x5e\xdf\x27\xf9\x95\x41\x6a\x19\x9a\xbb\xdb\x92\xa6\xb1\xd0\x71\x59\xee\x94\xbb\x62\x67\xdc\x72\x2b\xda\x74\x34\xd1\xd4\x34\x28\x5a\x27\x25\x1c\xb5\x18\xb2\x7f\x51\x40\xd9\x61\xf9\x17\x81\x4c\x7f\x26\xb9\x38\xb8\x1e\xa4\xb9\x6e\xf6\x73\x2a\x06\x0f\x59\x16\x8f\xba\x5d\xfd\x44\xd8\xb7\x91\x65\x41\xc7\x61\xfd\xf4\xec\x89\x05\x4d\x89\x7e\x3a\x20\x4c\x54\x27\xfb\x8f\x93\xb9\x5d\x96\xee\xa1\x1a\x62\x04\x88\xe0\xca\x4e\x75\xdc\x4f\x5c\x93\x93\x5f\x7e\x7d\xe6\xb2\x88\x48\xba\x68\xce\xd2\x7c\x21\xd8\xb0\x20\xf9\xc4\x6c\xe0\x56\xe2\x4a\xe0\xc4\x9b\xa9\xce\x67\x5b\xe4\x79\x78\xd0\x48\x2e\x24\x59\x30\x8e\x45\x3c\x6d\x71\x53\xb2\x9b\xe3\xda\x88\x38\xb8\x26\x45\x93\xe0\x57\x0f\x8a\xbc\xcb\x42\x4e\xd9\x47\xae\x87\x74\xfa\x0a\x8a\x93\xb9\x66\x31\x63\x22\xd3\x5c\xec\xe4\xfe\xcb\xa5\xe5\x11\x41\x48\xc2\xef\x5a\x6a\x8a\xe6\x9c\x01\x18\xed\x56\x41\x95\x0e\x55\x64\xdf\x00\xb2\xf2\x98\x18\xd1\x78\x3f\x77\xdd\x6a\x79\xdd\x83\xd8\x4a\x75\xd4\x58\x15\x84\x8e\xfd\x32\x7f\xa0\xb9\x4f\xec\x14\x08\x35\x90\x9a\x71\x6a\x4d\xe7\xa5\x37\x47\x2d\x5f\x18\x10\x41\x1b\xa9\x49\x84\x37\xe0\xc2\x7c\xb1\xc1\xfe\x5b\xe8\xce\x7c\xe6\x78\xcf\x4a\x7b\x7c\x7f\xae\xee\x33\x4c\x5a\xc6\x36\xa6\xb3\x53\xf6\xd0\xb2\xcb\x58\xc2\x1e\xb1\x13\x10\xf5\xe0\x60\xbc\x98\xec\x0b\x44\x89\x84\x90\xb8\x3e\x30\x62\x0d\x9a\x91\xab\xe2\xee\x51\x1d\x44\xe4\x88\x5c\xff\x51\x32\x97\x9e\xb8\x54\xde\x3f\xf3\xa7\x67\xc5\x7b\x83\x35\x48\xb8\xfe\x48\xf8\x4f\x77\x2d\x54\xd2\x39\x36\x87\xae\xe6\x0b\xc1\x81\x7d\x43\xe4\x75\x5c\xc5\x2e\x6b\x0a\x9e\xeb\x2b\x12\xf2\xb0\xae\xc9\x17\x82\x96\x9a\x62\xc4\x8b\x25\x9b\xbb\x6d\x9b\x55\x89\xb3\x6a\xd5\x92\x24\xce\x7e\xac\x48\xd9\xbb\x95\x30\xc6\xe9\xc0\x62\x80\xdc\x81\xca\xf3\x35\xb0\x65\x01\xe2\x32\xda\x4e\xb7\xf6\x03\x85\xe9\xc1\xcd\xa2\x58\x64\xce\xe6\x67\x2b\x16\x2a\xa2\x05\xb1\x7d\xbb\x78\xd9\x0e\xb0\x23\xc3\x8a\xee\xcc\x4f\x86\x4b\xfd\x70\x66\xcd\x44\x27\xb1\x2f\x9c\x55\x25\x57\x5d\x81\x65\x9b\xbd\x9e\x1d\x1a\x35\x40\x58\x5f\x3d\x28\xdc\xa3\x34\xc7\x71\x31\xd2\x63\x5e\x5c\x13\x3c\xe5\xf6\xf0\x2d\x5c\xae\xc8\xf3\x14\x11\xaf\xc0\x82\xaf\x36\x0b\xfd\x61\x0c\xf2\x85\x60\xfc\x64\x99\xd5\xe6\x52\x21\x82\xf0\x23\x2e\x93\xbc\x9c\x5d\x0f\x56\x4d\xe0\xe0\x2a\xf6\x2d\xfa\x94\xb2\x97\x2a\x5c\x78\xee\x26\xce\x26\x2a\x8c\xe6\xf8\x82\x21\x9a\x51\x8e\x4f\x62\x73\xa3\xdc\xf8\x03\x62\x38\x27\x29\xe0\x07\x17\x46\x8a\x2b\x09\x37\x60\x9d\xea\x9f\x75\x67\x75\x75\x6c\x00\x88\xd7\x28\xd3\x9e\x02\xcb\x31\x1e\xef\xcd\x51\x60\x3c\x21\xa2\x85\xee\xca\x7e\x51\xa8\xbb\x75\x4e\xbe\x10\x64\x9c\x3e\xf4\x77\xa6\x87\xb7\x7c\x3a\xd9\xb5\x13\x6a\xe1\x3a\x8c\x97\x59\xe6\x9f\xb4\x01\x3c\x18\xbb\x1e\xa8\xb0\x02\xed\xd1\xf5\xac\x98\x98\x0d\x08\xc1\x75\x69\x18\x9d\xf9\x87\xd7\x58\x22\xb1\x1c\xcb\xd8\xe9\xcc\xe7\x9f\x1f\x2d\x83\x03\x16\x2e\x5c\x34\x49\x70\x7f\xa2\x06\xc7\x75\x2f\x25\x78\x03\x46\xa4\xeb\x9d\xbb\x7b\x83\x42\x8c\x2e\x95\x10\x63\xea\xd1\xb2\x75\x97\x02\xdc\x71\x41\x8d\x6f\xe7\x60\xfd\x5c\x89\x9f\x0d\x2b\xc0\xa2\xf5\xd4\xa2\xe1\xec\x96\x16\x36\xcf\xe7\x80\x8a\xe0\x19\x47\x31\xc9\xc3\xbe\x15\x89\x69\x4d\x78\x47\xe1\x50\x30\x65\x52\x9a\xa2\xfc\xf2\x49\x09\xf8\x44\x90\x1d\xb9\xaa\x66\xdf\x9d\xaf\x78\xc7\x52\x5d\x29\xe4\x00\x86\xa7\x0e\x83\xca\x9c\xa7\x45\x6d\x50\xc2\x96\x45\x15\x95\x15\xea\x97\x62\x86\xc0\x36\x29\x43\x3a\x1e\x3c\xad\x8c\x7c\xc2\x7d\x13\xf7\xe6\xbb\x33\xeb\x27\x5e\x25\xf5\xdd\x7c\x37\x8d\xa2\xf9\xfb\x8e\x2b\x65\x68\x2f\xb6\x6d\x6c\xd0\xa5\xcb\x44\x54\x73\x5f\x54\x98\x2e\x9d\x7e\x78\x2e\x85\x49\x54\xf8\xf9\x27\xe7\x28\x90\x72\x8a\x60\x70\x9c\x18\x3e\x32\xe8\x2d\xd1\x72\x2f\x86\xc5\xbd\x57\x25\x18\x97\xa8\xcb\xe4\x56\x59\x1a\xbc\x0a\x08\xb0\x2c\x68\x31\xc8\xd8\x80\xd7\x93\x73\xca\x3a\x22\xc0\xf1\xf0\x24\xd9\xef\x21\x3b\xf0\x49\xd6\x09\xd1\xbb\x00\x03\x5d\xce\x19\x29\xab\x19\x5a\x29\x26\x54\xe6\xda\x33\x4c\xfb\x77\x51\xf3\x92\xb4\xf7\x95\xbf\x52\x58\x43\xd3\x41\x9d\xd0\x71\xf9\xe1\x8b\x2a\x70\x94\x0b\x82\x22\xde\xc1\xa3\xae\x29\xe1\x4d\x35\x37\x27\x7b\x1e\x35\x6c\x59\xb0\x08\x60\x25\xd9\xf3\x18\xb1\x55\xb2\x8e\xb7\x78\x84\xe4\x7b\x7f\xf2\x44\x65\x46\x6b\xe5\x3d\xbf\x54\x02\x26\x27\x7d\xd0\x40\xea\x9c\xe4\x69\x79\x95\x80\x3a\x3b\x9f\x83\xc1\x83\x15\x50\x16\xae\xc1\x58\x30\x76\xc1\x09\x09\x95\xe9\x17\x91\x45\xfd\xf6\x32\xfe\xe8\xa6\x44\x75\x85\xb8\x9e\xa2\xf6\xcd\x0e\x05\xea\xcc\x2c\x42\xe9\x78\x45\xfb\xd9\x01\x45\x76\x6a\x75\xd5\xe2\x20\x56\x96\xf2\x65\x9e\x14\xb1\x95\xda\xab\x07\xe7\x8f\x0c\x8e\xf2\x89\xc8\x45\x21\x5f\x08\xde\x98\x27\xce\x83\x2a\x55\xbf\xe4\x4a\xc9\xc3\x2e\x2a\xda\x76\x04\xdc\x1f\xae\x39\x7e\x8e\x7c\x70\x7c\x80\xc4\xf3\x64\xd9\xc0\xed\x1b\x15\xb1\x4d\xe4\x40\x1b\x46\x6c\xe6\xdc\xf2\xed\x83\xa4\x33\xc9\xf3\x09\xbd\xff\x4f\x3c\x9a\x94\x81\x77\x75\x13\xd3\x5e\xb6\xda\x77\xfc\x60\xab\xc8\x61\x2b\x98\x18\x61\x32\x9e\x9b\x2c\x8c\x31\xb0\x2e\x29\x7a\xe7\x6e\x5d\x2e\x32\xd8\x8e\x36\x9a\xc4\xf2\x96\xc6\xa2\x99\xe2\xe4\x2f\x11\xec\x78\x88\x25\x0b\x1f\x1f\x50\x6c\x1b\x30\x70\xbd\x49\x33\x65\x91\x12\xcd\x5c\x3f\x42\xc9\x67\x9d\x32\x45\x3d\xb3\xcd\xfe\x0c\x17\xf7\xbc\x13\xd1\x8c\x5e\xfb\xce\x3a\x09\x03\x26\xf0\x20\x8b\xc5\x05\x60\x82\xca\xec\x94\x08\x6e\x7e\x47\x95\x6d\x36\x90\x6f\xf3\xaa\xa6\xa8\xac\xff\xb6\x96\xe8\xa4\x7f\xa3\xd4\x9f\x27\x44\x4e\x99\x89\x95\x65\xfb\x5c\x54\x72\x12\x13\x18\xb8\x1e\xf7\xa9\x32\x57\x9f\x91\x35\x5a\x62\x99\xc3\xe0\xc4\xde\x81\x32\x77\x97\x01\xbd\x9f\x58\x3b\x2a\x19\x5b\xd3\x1a\x64\x1f\xd5\xd8\x1e\xec\x98\xdc\xce\xac\x95\xbe\xbc\x40\x96\xaa\x2d\x41\x2f\x0c\xc9\x85\x6e\x8d\x28\xc0\x16\x0f\xd0\x66\x2d\x3b\x25\x9a\x7b\x89\x37\x36\x41\xd6\xad\xcb\xfc\xf2\xf9\x7e\x52\xfc\x2c\x04\xe5\xc9\xc3\xa5\xf3\x24\xc9\xed\xc8\xfe\xcd\xa6\xe1\x71\x77\x5d\x45\x23\x0c\xef\xd5\x83\x07\x23\x87\xac\xdf\xf6\xba\x82\x40\xaa\x80\x06\x74\x7d\x3e\xd4\x88\x22\xde\x03\x0a\x16\xa6\x1c\x56\x59\x0e\xd5\x32\x62\xc7\xff\xaf\x88\x34\xce\x0e\x53\x41\x1a\x17\xf7\x3f\xa7\xf2\x7a\x98\xf4\x39\xb3\x83\xa2\xa0\x98\xfd\x9b\xe3\x95\x6c\xc9\x0d\xb2\xcc\xe6\x3d\x6c\x14\x3e\x97\x31\xd9\x3e\xd7\xac\x64\x8c\x10\x94\xd8\xd8\x8d\xf9\x27\x1e\x96\x5a\x22\x78\x35\xcb\x14\xde\x39\xa4\xd8\xcf\x00\x6c\x23\xdd\x44\x0a\x80\x7d\xed\x60\x71\x1e\x40\x1b\x95\xe9\x18\x96\x9d\xcc\x3f\xec\x9b\xe8\x03\x99\x88\xb3\x0b\xba\x35\x6b\xc2\x90\xe8\x66\x31\x72\x3c\x2e\xeb\xd4\xad\x7d\xe3\xe5\x81\xe2\x48\xab\x02\xa6\x12\xf9\xb5\x81\xca\x50\x1d\xdb\x76\x12\xae\x19\x7c\x78\x52\xb1\xae\x6a\x9e\xc6\x2d\x74\x1f\xda\xad\xfa\x02\xdb\xb1\x4a\xb0\xb6\x6f\x4e\xf2\xb1\xb4\x4c\xa7\x46\x76\x51\xec\xa9\x1f\x11\x6d\x60\x87\xae\xc5\xa9\x52\x22\x4c\x9b\xce\xbc\xb0\xd3\xbe\xb0\x3c\x92\x31\x77\xd8\x30\x4e\x9b\xb7\x52\x99\x8b\xe2\x38\x35\xce\xbe\xbe\x83\xad\xcd\x2a\xb2\xd8\x9f\xff\xb9\x5d\x2c\x4e\x54\x03\x4e\x4d\xa6\xa1\x7c\xf0\x9c\x32\xc4\xc7\xc4\xa0\x0b\x27\x78\xe7\x38\x87\x80\x20\x62\xf0\x22\x69\xad\x34\x2c\x0f\x23\xb3\x17\x4b\x45\xcd\x7e\x6e\x10\x8f\x33\xf2\xeb\xab\x4d\x50\x8b\x43\x88\x08\x57\x9c\xce\xec\x6a\xe5\xc6\xba\x7e\x95\x40\xba\x1b\xb3\xf8\xa8\x58\xaa\xbe\x03\x5d\x3d\x4c\xe3\x66\xdf\xa3\x88\x39\xa2\x22\x24\x5e\x83\x03\x29\x6f\x2b\x25\xff\xb5\xa3\x95\xc2\xc1\x79\xd5\x36\x6b\x84\xc2\xac\xc0\x46\xa3\xec\x03\x62\xb8\xcd\x6c\x8f\x1d\x7f\x5d\x9a\x80\x00\x8a\xf4\xc8\xba\x43\xaf\x94\xf2\x2f\x42\xa8\x6a\x88\xc4\x8d\xb8\x6d\x87\x62\xf7\xe0\x36\xca\x20\x2c\xdd\x65\x02\x66\xf0\xde\x0a\x45\x3f\x92\x44\xf3\x7b\xba\x3a\x7e\xb7\x83\x23\xda\x19\x48\x2b\x5f\x08\x06\xee\x52\x4d\x84\x4b\x10\x30\x87\x89\x5c\xe6\x9c\x44\x36\x0f\xab\x49\x2e\x86\x98\xf1\x3a\x92\x81\xb5\x01\xc3\x8b\x35\x40\x83\xe7\xa8\xfa\x45\x55\x1f\x86\x55\xcb\x74\x6c\xf4\x63\x05\xbb\x59\x41\x96\x05\x09\x17\x68\x78\xe3\x9d\x41\xb2\xa6\x82\x6f\x85\xd7\x58\xbd\x99\x81\xb1\x16\x15\x16\x2e\xbd\xe3\x96\x5b\x53\xf9\xd2\x03\x4d\x57\xc8\xf9\xfc\xdd\x8b\x04\xd2\xa1\x10\x3c\x7b\x48\xf4\xbc\x5a\xdb\x28\xb2\x6d\x9f\x52\xc8\x32\xee\x24\xcb\x17\x72\x9f\x50\xf2\x6b\xd7\x06\x84\x4b\x0a\x7f\x7a\x60\x12\x36\x3c\xa6\x0b\xb8\xa6\x87\x3c\x30\x79\x0c\x4b\xaa\x92\xc7\xc1\xef\x3a\x78\x2b\x97\x40\xd7\xb4\x19\x8f\xe5\x8f\x8f\x71\x2a\x80\x4f\x22\x64\xd6\x25\x8f\x4f\x55\x93\x7d\x6a\xbc\xe9\x78\xd0\xb2\x50\x99\x4b\xda\xa4\xb5\xa0\x73\xcf\x4a\xb2\x0b\x88\x50\x5c\x6c\x8b\xe2\x14\x15\x21\x79\x9d\x88\x89\xdb\x6f\x76\x32\xba\xfb\xd5\x2a\xb7\x6a\x91\x0f\x9a\x47\x8b\x29\xb3\x5f\xc4\x03\x7b\xf6\x1b\xcb\xe3\x36\xdc\xf4\x66\x3a\x48\xfa\x0f\xf3\x5a\xe5\x2c\x20\xae\x19\x86\xe2\xc4\x99\x11\x8c\xed\x25\x25\x01\x18\x33\x22\xc4\x57\x8f\xc6\x9f\x46\xcf\xc6\xa0\xcf\xd8\x51\x7f\xf5\x60\xe1\x10\x8c\xaf\x1d\x16\x8d\xc7\x8e\x56\x0a\x8b\x3a\xcd\x83\x8f\xc9\xda\x35\x5a\x7d\xb4\x00\xc3\x39\xd8\xab\x23\xcf\xa4\x9a\x93\xbc\x45\x78\xfe\xdd\x26\xe5\x31\x31\xb0\x73\x36\x38\xc7\x82\xf8\x3c\x5c\xa9\x00\x64\xe0\xa8\x38\xba\xfa\x4d\x5e\xcc\x5a\x7e\x74\x50\x65\x3e\x2b\x21\x6a\xa5\x96\x2d\x6d\xd7\x0e\x95\xe1\xdc\xf7\xfb\xd0\xa5\xff\x56\x64\x27\xd7\xd4\x0f\x22\x7f\xe5\x1a\x72\x23\x80\xe6\xf4\xbe\x71\xa7\x07\x39\x91\x23\x6f\xf6\x97\x1f\x89\xaa\x1c\xc9\x5a\x90\xbd\x26\x08\xb0\x42\x1d\xc2\x4a\x9a\x70\xa3\xb8\x10\xf2\xf6\x3b\x8f\x50\x4f\xbf\x18\xb7\xc8\x74\x33\x4d\x03\x58\xda\x29\x3e\xbd\x0c\x7b\x90\x93\xff\x41\x97\x38\x06\x81\x51\xc3\x7a\x4c\x84\x6d\x6e\xe2\x32\x26\x16\x47\x07\x8d\x1c\x9e\x3c\xea\x80\x5e\x71\x70\xdd\xa2\x08\x0f\xde\x2a\xc9\xce\x7a\x5a\x98\x7e\x26\x08\xdf\xf4\xd1\x7c\x65\xae\x90\xb8\xae\xa0\xd4\xb5\x8c\x51\x18\x20\x55\x4b\xc0\x75\x72\x7d\xd7\xb0\x64\xff\x6e\x1a\xa1\xa2\x5d\x70\x72\xa2\xb0\x91\xd3\x8b\x12\xd6\xbc\x5d\x21\xbf\x9a\x48\x07\x65\x2c\x48\xc7\xe6\x23\xec\xd5\x19\xe1\x99\x48\xd8\x06\xce\x8c\xbc\x47\x12\x50\x63\x7a\xbd\xe1\x8f\xb7\xf6\xe7\xc4\x70\x0a\xa8\x24\x5c\x1d\xbe\xf3\xf1\xe4\xb1\xde\xc0\x3e\x6d\xcd\x04\xbf\xea\x2b\x39\x66\x9b\xd0\x05\xd4\xbb\x3b\x7c\x82\xff\xbc\x56\xcd\x74\x74\xca\xde\xe0\xe9\xc0\x9f\xf7\xc5\xa2\xaa\x0c\x64\x30\xec\x95\x81\x12\xd4\xcf\x40\x14\x48\xb8\x6e\x99\x5c\xe3\x22\x0b\x78\x90\x44\xb8\x76\x77\xa9\xa2\x04\x0c\x4d\xc2\x7d\xa8\xb3\xb9\x43\xaa\x3d\xb1\x8b\x38\xa7\x67\xb5\x42\x1b\xb0\x41\x25\x9a\xae\x06\x2d\xcf\x45\x48\x4e\x83\x2e\xa0\x42\x77\xb6\x69\xb5\x68\x72\x81\xf0\x14\xbc\xea\x14\xc7\x36\x4e\x9d\x92\x2f\x04\xfb\x15\xbd\x39\x57\xf7\x09\x69\xc4\x76\x25\x99\xdf\xed\x97\xfd\xe0\x11\x93\x08\xcb\x75\x2e\x8c\x67\x0e\x13\xa0\x1f\xd5\xa4\xbf\x7f\xfe\x4a\xf5\x88\xc1\x36\xf4\x08\x1b\x71\x05\xfd\x86\x72\xc1\x34\x60\x41\xc7\xa0\x9a\x64\x39\xd2\x29\x56\x34\xae\x52\x3f\xaf\x1a\x4b\x3f\x6e\x5e\x29\x81\xef\x64\x23\xf6\xf7\x53\xf3\xe5\x70\xe9\x7a\x48\x67\x4f\xee\xd9\x57\x78\xb3\x10\x12\x03\x51\xf2\xb2\x21\xf9\x4e\xb6\xd1\x78\xf3\xf3\x71\x12\x71\x91\x1e\x84\x34\xc2\x75\xdd\x3c\x24\x01\xd6\x24\x88\x7e\xe3\xf4\x9d\xc9\xe0\xed\x40\xdb\x73\x69\x06\x20\x85\xd9\xaf\xaf\x8d\x23\x6a\x27\x05\x2f\xe6\xc8\x8b\xac\x01\xbd\x2c\xea\x00\xc8\xe5\xff\x16\x31\x4e\x37\xa0\xb4\x13\x66\x2a\x33\xc7\x86\x83\x9d\x86\x8d\x7d\xb7\x99\x83\xe4\x8a\x7b\x25\x55\x7a\x40\x7c\x57\xca\xef\x32\x5f\x7f\x2d\xb9\x6a\x4a\x16\x28\xb3\x66\x6d\xa6\xf0\x14\xdb\x16\x35\x60\x31\xf2\x15\x3d\x04\x5f\xdd\x1a\x8d\xfc\x1c\x3e\x54\x6b\xce\x17\x82\xfb\x6a\xd7\x88\x44\x7c\x35\xd4\xfd\xf0\xa5\xa4\x02\xc0\xab\x4f\xa9\x13\x26\xdf\xf2\x08\xc7\x45\x67\x2f\x9f\xcd\xb7\x2c\xaa\x5a\xd8\x66\xa5\x67\x66\xbf\x23\xd4\xbd\x57\xa7\x8e\x56\xed\xc8\xea\x61\x52\x33\x40\xaf\x40\x2f\xef\x32\xa7\xa1\xee\xcc\xe7\xb4\x64\x1e\xd6\x40\x5e\x97\x09\x2a\x9f\x57\x6a\x88\x51\x6d\xea\x5c\x18\x18\x56\xe4\xac\x90\x29\x5e\x54\x74\x21\x5d\x1d\x58\x02\xf9\x1e\xcc\x6f\x92\x38\x91\x29\xa0\x7f\xb7\xb6\x73\x68\xbc\x97\x5a\xdb\xc2\xb4\xb9\x8d\xbb\x87\xde\x09\xec\x22\x70\x0c\xa9\x03\x90\xfd\xc2\x63\xc2\x25\xb6\x75\x5a\xbe\x10\x60\x2f\xb9\x6f\xb1\xef\x51\x62\x1a\x5d\xb5\x63\xe7\x25\x2c\x11\x1c\x0f\xb1\x20\xa1\xad\xb9\x51\x28\x6c\xd0\xcc\x71\xdb\x22\x85\x16\x06\x2d\x58\x8c\x7c\xf0\xe8\xab\x5e\xba\x4a\xf4\x8e\xab\xbe\x83\xb8\x93\x63\xf6\xf4\x42\xa5\x7b\xe0\x17\x75\x50\x8d\x1b\x44\x2f\xcf\x6f\x4a\x08\x16\x10\xa0\xb3\xb7\x36\xe1\x35\x89\x8a\x44\x60\x8d\x6b\x92\x0f\x3e\x23\x7b\x69\xd3\x7a\x8c\x19\x28\x5d\x79\xaa\x29\x31\x95\xd1\x09\x7f\xfd\x5f\x3e\xa6\x94\x5f\xc0\xe9\x02\x0e\x02\x91\xfc\x61\x78\xe4\x4f\x79\x9f\xed\x9a\x85\x8b\x16\xa7\xce\xc7\x55\xbd\x2e\x8b\x8a\x14\xcf\xa4\x1b\x79\xde\x41\x55\x29\xc0\x2a\x55\x51\x95\xcf\xdb\x3f\x5e\x3e\x24\x01\xdf\xc3\x35\xb6\x96\x66\x2b\xbe\x30\xb1\xf9\x2f\x17\xf2\x78\xbb\xc4\xf9\x5d\x06\xcf\x5c\x32\xc6\x1c\x09\x2a\x06\x9c\x32\x7d\x37\xb9\xf5\x3b\xc4\x2e\x4e\xd0\x07\xb3\xaa\x7f\x06\x76\x74\x02\x3d\xc8\xca\x90\x8b\xcf\x0a\x47\x48\xbd\x92\x2f\x04\xfe\x83\xd2\x78\xb4\x4a\x25\xdd\xba\x33\x1f\x2f\x12\x7c\x8a\xe6\x14\x5d\x2a\xbb\x6a\xc4\x40\x19\xff\x42\xa1\x27\x1a\x38\xa4\x6a\xb9\x53\x61\x3e\x0e\xfc\xfb\xf7\xd7\x05\x3f\x6b\x2a\x25\xd1\xde\xb6\x93\x3d\x6c\x78\xbf\x4f\xa3\xab\x9c\x8c\xfa\x67\x87\x2b\xdd\xfa\x25\x93\xe8\x3b\x0a\xef\x1c\x2f\x48\x86\x44\x17\x11\xec\x55\x90\x23\x5b\x14\x06\x37\x5d\x60\x27\xe4\x52\xe0\x31\x01\xca\x3f\x8e\x11\x20\x17\x94\x12\x54\xcc\x92\xc9\x2a\xff\xbf\x81\x99\x8f\xd2\xa4\x45\xe2\xca\x11\x63\x05\x2d\x51\xdc\xad\x4b\x10\x39\x3d\xb8\x37\x66\x8e\x97\x04\x20\xb7\xb5\xb5\x6d\x5a\xc2\x4e\xf0\xba\xf3\xe2\xb5\x56\x1c\x7e\xf2\x68\x0f\x29\x7a\xec\x26\xb4\xaa\xb1\xbe\xef\xa0\x15\xbc\xdf\x45\x65\x6f\xc3\x0d\xf9\xf4\x53\xc2\xfd\xd9\x18\x8f\x2c\x98\x37\x20\x37\xc6\xa7\x60\x8c\x29\xf1\xdb\x76\x61\x2d\xfc\xc9\x3b\x47\xc4\xb2\xec\x98\xd6\x9a\x6f\x6f\x6f\x6b\x09\x1f\xea\xb8\x3d\xea\x00\x9a\x54\xa0\xc7\x95\xbc\x33\x4f\xad\x15\xe7\x21\xd5\x41\xe0\xf2\x90\x99\x37\xde\x97\xc6\x1b\xe1\xb7\xd2\xb3\xec\xcd\x81\x49\x3d\x63\xa6\x4c\xc2\xcc\x1f\x94\x01\xc0\x2c\xb5\xf1\x98\x74\x41\x0a\x2f\xed\xea\xde\x97\xf3\x04\xdd\x2e\x02\x4a\xa3\x89\xc2\xdc\x97\x9f\x54\xf8\x60\x11\xb9\xd7\x4d\xbf\x8d\xe0\x8b\x6f\x2a\xbe\x16\x66\x83\x0d\xd1\x83\x8b\xc3\x55\x3d\x69\xca\x39\x72\xa1\x90\x9f\x98\xf4\xa4\xe4\xdb\x30\xa3\x9d\x76\xfa\x3e\x3e\x9c\xec\xde\x96\x08\xec\xb1\x6a\xd3\x7e\xbe\x38\xd9\x53\x27\xb8\x88\x1c\x06\x3d\x13\xf7\x72\xcd\x48\x05\x94\xe1\xba\x00\x59\x80\xd5\x40\xe1\x55\x7e\x6f\x94\xd2\x3f\xe1\x78\xc7\xf0\x68\x59\x26\x89\xea\x31\x8a\x76\x34\xd2\x42\x7b\x65\x8a\x89\x0b\xe9\x54\x17\x7c\x24\xce\x3a\xcf\x04\x8e\x9c\x1d\x3c\xff\x44\x12\x5d\x9c\x1c\x39\x26\xc5\x1b\xb2\x32\xd6\x09\x39\x5c\xbd\xbe\x10\xfc\xfb\x16\x49\xc8\xce\x35\xe9\x84\xa1\xd0\xad\x5d\xbf\x46\x30\xe2\x68\x9f\x83\x06\xdd\x55\x26\xaf\xbf\x40\x03\x4a\x83\xbc\xdc\xba\xb7\x14\xac\xa2\x09\xf5\x0a\x1f\x9e\xf6\x5b\xa7\x08\x1f\x00\x86\xb7\x8c\xb0\x71\x99\x5f\xdc\xdc\x5f\x02\xaa\x50\x14\xde\xc9\x73\x5c\xfe\xdd\x42\xe5\xc8\x5f\xfc\xbe\x05\x4a\xd7\xc6\x77\x91\x03\x5d\xd7\x86\x5c\xb9\x6f\xd2\x94\x14\x6c\xc9\x46\x92\xb5\xfb\x6f\x77\x0c\xe1\x99\x4a\x3c\x5a\xa0\xa7\x8d\xb9\x9a\x27\xe8\x26\x66\x25\xd1\x86\xd7\x86\xa9\x61\x3f\x6a\x70\x67\xbe\xfd\xa2\x2a\xec\xa2\x83\x2a\xe4\x0d\x6b\x7f\x69\xa4\x7a\x99\x4c\x51\xff\x77\x78\xf2\x03\xa7\x4f\x6f\xee\x98\xce\x27\x24\x5f\x7f\x91\x1b\x71\xfb\x6e\x35\x2e\x4e\xb2\xf3\x15\xb3\x7d\xd3\x77\x8b\x40\xe0\x09\x33\xdf\x98\x9f\x3c\x38\x38\x1d\x25\x72\x86\xfa\xca\x48\x49\x61\xc6\x06\x65\x24\xec\x83\xf4\xd6\x11\x52\x99\xef\xd4\x20\xf1\x64\x7e\xf0\xf1\xe3\x83\x13\x74\x5e\xd6\x2d\xcc\x5c\xb2\x51\xe2\x4a\x03\x37\x3c\x8c\x2e\x6c\x1d\xca\xd7\x12\xf5\x01\xc9\xdb\xd0\x75\x41\x99\xea\x16\xdd\x27\xb1\x67\xab\x38\xfc\x8a\x46\x98\x2e\x1e\x7a\x5e\xa9\x55\xe8\xb6\x08\xff\xe5\x4b\x7b\x92\xa1\x05\x13\xe8\x14\x7d\x52\xe6\x4b\x98\xae\xbd\x01\x0e\xb7\xfd\x80\x56\xac\x8b\x96\xbd\x4a\xf1\xdc\x6d\x00\xd7\x37\x01\xf1\x95\x6c\xef\xa1\x1d\x72\x6f\x83\x1b\x7c\x6a\xef\xbd\xc5\x82\xd5\xad\x26\x74\xf2\x25\x5f\xda\xe0\xbf\x1a\x25\x6e\xb7\xa5\xb9\x7d\x5a\x78\x53\xd5\xc7\x12\x82\x53\x84\x3a\xa6\x6b\x9f\xbc\x28\x4d\x45\x9d\x94\x5f\x4f\xe7\x6a\xb6\x22\x6a\xd8\x83\x61\xa9\xce\xa9\x57\xda\xc9\x0d\xdc\xd1\xc6\x2e\x02\xd7\x6d\xe4\x0b\xc1\xbf\x95\x24\x28\x22\xf6\x4b\x25\x40\xb3\xa7\x9c\xf6\xa6\x84\x7a\x41\x35\xa4\x53\x32\x14\x4b\xd4\x82\x15\xca\x96\x68\xd0\x2e\x8a\x10\x0f\xd7\xec\xaa\x02\xc0\xc3\x96\x41\x27\x5d\x54\x1c\xa8\xa6\x3a\x78\x02\x9b\x83\x6f\xf7\x0e\xbe\x3c\x49\xdc\x8b\x6c\x10\x36\x37\x8b\xe5\x63\x20\xc7\x49\x10\xf0\xba\xb3\x7d\xf6\x4a\xb1\xb7\x79\xea\x74\x0a\xd0\x7e\x3f\xae\xe6\x3b\xa1\x25\x65\x3f\x6f\xec\x4f\xd1\x10\x1d\xea\x0c\xce\x4b\x83\xbb\xd7\xb2\x87\xe4\x61\xa7\xec\xd3\xd9\xe0\xe6\xb7\x65\xec\x27\x37\xbd\xc9\x06\x8f\x28\xca\x5b\xb1\x62\xc4\xb5\x1b\x63\xaa\xa0\x4b\x2d\xa2\xc5\x88\x6c\xf6\xc9\x94\x7e\x2b\x24\x2e\x20\x8d\x88\x19\x7b\xb5\xa2\x6e\x5d\x82\x90\x29\x07\x31\xa4\xc6\xeb\x2b\x25\xa5\x2b\xdf\x33\x31\x41\x5d\x1c\xab\x51\xf0\x54\x59\x74\xe6\x36\xc8\x79\x70\x4b\x3e\xe0\x56\x93\x90\xe8\xdc\x78\x5f\x3b\x3b\x57\x51\x23\xa5\x5d\x8d\x42\x30\xbf\xb7\xd8\xc8\x40\xd7\x31\x31\x62\x2d\xcc\x8e\x8d\xaa\xa7\x21\x8b\xaa\x5c\xf9\xe9\x97\x17\x54\x67\x47\x0b\x51\x61\x7b\x56\x1e\xfe\xed\x91\xcb\xa5\x96\x0e\x72\x3c\xc0\xb4\xc0\x82\x09\xde\xd5\x52\x52\x5e\x6a\xf4\xa4\xb2\xfe\xb5\x93\x22\x48\x54\x81\xaf\x47\xce\x7a\xbd\xd8\x62\x9f\x4b\x20\x14\x47\x7f\xf0\xee\x62\xa9\x33\x40\x80\x57\x03\xf9\x42\xf0\xe5\xd1\xc9\x73\xbc\xd6\x5c\x6d\x56\xd4\x50\xb6\x2d\x1d\xc0\x03\x4c\x9e\x9a\x79\x84\x5f\x51\x99\x98\xc2\x38\x01\x0f\x73\x88\xf3\x98\x17\x14\xf9\xa5\x30\x9f\xe4\x18\xa4\x3f\xee\x49\xc5\x1e\x5e\x52\x69\x17\xe7\x25\x33\x93\x30\x69\x8a\x5c\x5c\xd3\x09\xc2\x6f\x7b\x25\x3f\x68\x86\x98\x2b\xf4\xfb\xe8\x0a\x75\x3d\x97\x4a\x48\x67\xcd\xe9\x63\x2b\x38\x32\x06\x02\x6a\x03\x11\x7e\x73\x69\x23\x0b\xa1\x0b\x1a\xbe\x61\x23\x4b\xf2\x30\xff\xb9\xa4\xa7\xd9\x3a\x25\xe2\x39\x6a\x4d\x4f\x25\xd3\x18\x0b\x02\xdd\x64\xb9\x74\x32\x57\xeb\x7f\x38\x75\x16\x56\xb1\x1b\x09\x96\x75\x67\x8b\x0a\xbb\xce\xf5\xfc\x52\x89\x55\x98\xb7\x5e\xe4\xbc\x36\x48\x08\x23\x84\xac\x7d\x5a\x51\xdc\x84\x96\x85\xeb\x91\xcc\xda\x83\xa7\x45\xe0\x02\x04\xc6\xc4\x65\x7f\xbe\x28\x3c\x66\x4c\x6e\x69\xa5\xbd\xe8\x07\xb9\xee\x7d\x0d\xc1\x7a\xf8\xff\xf9\x83\xc9\x65\x60\x61\xcf\x53\x96\xc1\x7f\xbc\xac\x5a\x63\x02\xa6\xd4\xc0\x16\xb2\xbb\x95\xa7\x0a\x76\xd5\x04\xd4\x5c\xbe\x5b\xfb\x87\x95\x43\xa5\x74\x9d\x8e\x94\xa3\x1c\x6b\xc6\xe2\x64\xac\x70\x60\x9d\x8f\xae\xff\xa2\xb8\x11\x80\x1a\x24\xa0\x0c\x79\x56\x7d\xde\x50\xdd\xe8\xa8\xe6\x93\xcb\xf2\x82\xe0\x51\xc5\xef\xc8\xc1\x1e\xd3\x0b\xeb\x73\x40\x65\xe8\x18\xbe\x1e\x01\xe0\xb5\x27\x8c\xf1\xca\x8a\xa1\xab\xa3\xd1\x83\x44\x42\xe6\x2f\x1b\xa5\xe2\x0f\x92\x30\x55\x09\x5e\x5d\x18\x77\xa5\x09\x2a\x45\x5d\xd0\xc1\x1b\x92\x87\x22\xd4\x2b\xae\x07\x69\xbf\xbf\x4b\x3a\x14\x57\xf4\x89\xff\xd8\xc3\x95\x08\x8a\xf4\xbb\xa1\xca\x1c\xab\x0b\xe6\x75\xd3\x67\x59\x94\x38\x21\x1f\xea\x64\x3e\xea\x4c\x2b\x08\x49\x4c\xc2\x2a\xc0\x16\x7d\x33\xe8\x5c\x1c\x7c\x41\x17\x4c\x1c\x13\x9f\x9c\x29\x65\xba\x4c\x94\xa9\x10\xdc\xb7\x4b\x65\xe9\x42\xee\xc2\x95\xe9\x73\x88\xb5\x22\xa7\x75\xb4\x85\x1b\xfd\x8e\x09\x83\x65\xd1\x02\xcc\x14\x63\x7f\x3e\x58\x21\x7c\x21\x23\x66\x1a\x3c\xf3\xa0\x4a\x31\x86\xbc\x86\xdf\xf8\x8a\xf8\x2c\x9d\x50\x6e\x5e\xf8\x15\x9b\x9b\x95\xa6\x15\x0b\xd6\x9c\x33\xea\x6f\x4c\x12\xe4\xdb\xda\x68\x1a\xf3\x66\xa7\x6c\xcf\x4e\x10\x94\x9e\xf6\xd3\x81\xca\xe3\xb7\x10\x6b\xa2\x73\x2c\xf3\x12\x25\x87\x2e\x12\x7a\xda\xb0\xf1\xed\xc4\x77\x24\x6a\x29\xf1\x1a\xd8\xce\x17\x82\x31\x39\xd1\x92\x2e\x61\xc9\xbd\x35\xf3\xa5\xd7\x59\xbb\x6e\x29\x81\x8e\x17\xcb\xbc\x3e\x53\xe4\x36\x17\x98\x50\xe1\x85\xf0\x67\x9f\x7e\x4c\xd2\xf6\x68\x38\x06\xc1\x0c\x02\xb1\x4c\x22\xac\xa0\x32\x8d\x03\xb9\xa6\xb7\xae\x86\x0e\x35\x6c\xb3\x90\xeb\xe5\x97\x12\x3f\xcd\xe7\xff\xe1\x79\xb6\x2e\x16\x51\x2c\x9e\xb1\x57\x3c\x10\x82\x64\x7d\xe6\xe0\xad\x1d\xc9\x9d\x5f\x21\xd0\xb6\xf8\x4c\x8a\x5d\xda\x8b\x4b\x15\x78\x13\x43\x21\x24\xe7\x28\xe3\x6a\xe9\x0e\x0a\x24\x9c\x02\xd7\x9d\xf9\xce\xcd\x43\x93\x62\xe9\x31\x37\x6c\xdf\xec\x64\xca\x59\xf2\x2d\x8b\xee\x2b\x14\x6f\xcf\xec\xb8\xce\x7e\x3c\x1f\x03\x24\x3c\x1b\xc7\x73\x3d\x1f\x48\xdd\x33\xc3\xc7\xb4\x7e\xa6\x12\x90\x41\xa5\xc7\xba\x32\xfb\x4a\xb3\x18\x39\x19\xd0\xa2\xb0\x31\x91\x8c\xfc\xeb\xc8\x08\x29\x4f\xdd\x28\x79\x72\x7b\xe7\x83\xa3\xd4\xc3\x8e\xd9\x5b\xc4\xc6\xc0\xda\x27\xf6\x26\x9f\x51\x11\xb8\x26\x22\x4a\xf6\xdb\x6b\xa2\x22\xfd\x15\x9e\x4a\xbc\x56\x08\x7e\x7d\x34\xf9\x1c\x2a\xd0\x71\xa0\xd1\x90\x29\x06\x39\xff\x71\x8e\x99\x8f\x34\xee\xe9\xdc\x67\x2c\x17\x5b\xb4\x70\x94\x8d\xb7\x1d\x95\xb8\xc3\xb8\x2e\x2d\xc8\x59\x4f\xc7\x60\x5b\x83\x66\x66\x0b\x15\x51\x03\xd7\x84\x55\x13\x12\x83\x71\x5c\x96\xed\x16\xcb\xbd\x81\x09\x37\x64\xfc\xb7\x79\x31\x9f\x80\xab\x58\xd2\xad\x71\x54\x60\xf9\x4c\xec\x52\xe0\x71\x82\x52\x3a\xb1\xaa\x8e\xd0\xf5\xb0\xfa\xa7\x23\xf4\xde\xd5\x94\x82\xa8\x68\x03\xe7\xc6\x9e\x8c\x5b\x6b\x38\x2d\x97\x9e\x99\xa6\x38\xf7\xc4\xdd\x16\x9e\x5f\xbf\xf1\x81\x88\x72\x15\x4c\x8a\xd0\xa2\xb0\xaa\xde\xaa\x14\x84\xc5\x07\x8d\xfc\x8d\x60\x33\xee\xe4\x56\x4b\xb4\xab\x58\x1e\x37\x48\x06\xb1\xf1\xf2\xe5\x93\xad\x32\x34\x9c\x79\x9f\xd2\x54\xc7\x51\xde\x28\xee\x02\x95\x24\x3e\x48\x5b\x34\x4a\x1a\xa7\x08\xb7\xe6\x42\x77\xee\xd2\xc3\x92\x06\x15\x72\x98\x92\x41\x77\xf6\xa8\x22\x4d\x57\x24\xa0\x0b\x59\x14\x15\xc0\x4f\x56\x72\x4e\x2a\x19\x74\x82\x6c\x3b\x5a\x28\x9f\x3b\xdd\x27\xfc\xbd\xc5\x8b\xf2\x85\x20\xbb\x4e\xa1\x56\x59\xb8\xc4\xd1\xb1\x73\xdf\x14\x2f\x7d\x7a\x64\x63\xbd\x66\x7e\xf2\x60\x1d\xcf\xda\x5c\xc1\xc3\x1b\x06\xf1\x84\x12\x03\x43\x07\x2e\x9b\x61\x7d\x69\xb3\xf8\x08\xa6\x7d\x49\xa5\xef\x9e\xe2\x4d\x29\x40\x08\x72\xc3\xba\x32\x76\x7d\x7e\x21\x99\xfa\x01\x97\x9a\x6e\x78\x8c\x32\xa4\xee\xe1\x95\x63\xae\x92\x4a\x34\xd7\x41\x20\x6f\x42\xd2\x05\xcb\xe1\x06\xa0\x5c\xff\x66\x09\x50\xe6\xa2\xb2\x99\xb7\x01\xa5\xfa\x7d\x53\xe1\x64\x5a\xd8\x31\xe8\xfb\x8e\x2d\x56\xf7\x0c\x57\xe5\x21\x2d\x03\xc1\x58\xe7\x23\x78\xf9\x11\xc5\x99\x16\xfb\x42\xdf\xe2\xbe\x1d\xf1\x8a\xc1\xc5\xf0\x28\xfc\xbb\x51\x92\x90\x22\x34\x90\xce\xe4\xc7\x7e\xa6\x48\x57\xba\x26\xa8\x22\x82\x65\x7a\x75\xb6\xd0\xcc\x0e\x89\x32\xc6\xe1\x62\xb3\x28\xdb\xe0\x57\xab\xc7\x29\x15\x8d\x07\x49\x09\xac\x4e\x6b\x5f\x65\xcf\x38\x71\x1b\xd3\xf6\xc3\x53\xea\x0b\x13\x93\xbb\x84\xd5\xef\x31\xe6\x25\x33\xb5\x4d\x15\x96\x87\x55\x40\x78\x4b\x45\x6b\x3c\x2b\xd1\x57\x60\x09\x0b\x67\xcb\x5d\x6f\xaa\xa5\xad\xe7\x41\xa7\x99\x06\x90\xec\xd1\xd7\x93\x8f\x13\xd9\x61\x96\x40\x65\xd6\x59\x96\x3b\x6e\x39\x3d\x37\xf2\x77\x43\xda\x0d\x50\x2b\x9c\x95\x8a\xa8\xa5\x09\x81\xe7\x46\x20\xf7\x9b\x16\x24\x93\x89\xf6\xfc\x54\x7e\x86\x5f\xf6\x4a\xb2\x21\x87\x9b\xcd\x66\xb7\xd9\x6f\xe6\x99\x57\xf2\x49\xed\xd9\x20\x2d\x56\x00\x08\xa4\x41\xe3\x76\x27\x65\xa9\x6d\x19\x04\x46\xa6\x05\xbf\x98\xa7\xa8\x7e\x02\x2a\xf1\x48\xd5\x52\xf6\x1f\x52\x98\x55\x11\x34\xa5\x10\xfc\xed\xb1\x38\xd7\x6b\x54\xa3\x86\xa3\xf6\xb5\x7b\x14\x6e\xa6\x30\x56\xbf\x6c\x81\x04\xa7\x84\x96\x45\x69\xfa\xc9\xeb\xff\x8a\x42\x42\x2e\x13\x54\xe5\x00\x86\xdc\xa8\xf5\x22\x8a\x84\x2b\x93\xe9\x4c\x6b\x64\x8c\xaa\xae\x1f\x5e\x3e\xad\xc2\x76\xed\xa4\x7d\xfa\xfc\x12\x58\xc6\x86\xd3\x00\xae\xe9\x34\x40\x43\x6d\xfe\x07\x43\xfa\x25\x9f\xbd\x0e\xaa\x3c\x45\x9a\x3c\xb8\x49\x7a\x9c\x3a\x34\xb0\x43\x47\xeb\xda\x0d\xfb\x15\x11\x58\xe0\xf0\xca\xaf\xd3\x18\xa6\x66\x9c\xb6\xcb\x09\x31\x1b\x15\xea\x4f\x05\xbb\xb8\x86\x99\xa6\x62\x58\xde\xdc\x7e\x22\xf9\xef\x91\x14\x59\xa4\xb7\xf9\xa7\x7d\x22\x25\x6e\x6d\x9f\xd6\x3c\x95\x92\x61\x57\x89\x7c\xc8\x05\xc8\x90\x36\x5e\xe6\xdf\x27\xaa\x64\x41\x62\x4f\xaa\x33\xbd\xf5\x83\x4f\x25\x2c\xc6\x5d\xdf\xf2\xa2\xd9\x6c\xf0\xf1\x82\xb4\x61\x0c\x15\x1e\x8d\x68\x67\xc3\x97\xab\x32\x1c\x16\x26\xfc\x45\x69\x37\x3c\xc5\x0a\x32\x1b\x53\x80\xd2\xb0\xad\xc9\x69\x80\x03\xba\x0c\x02\x3c\xe8\x54\x30\x8f\xf5\x3c\x7d\xcb\xef\x56\x18\x0b\x36\x22\x4a\x7d\x71\x7a\xb0\x58\x03\xb8\x1a\xb7\x5b\x7f\xb0\xb6\x49\xea\x98\x35\x98\x09\x31\xa5\x50\x6f\x95\x0f\xf2\x1e\x04\x70\xff\x61\xa0\xd2\x9b\x87\xcc\x11\xdf\x63\x23\x08\x26\xc5\xfd\xae\x42\x59\x63\xe5\x76\xcc\x50\xc9\x65\xcf\xb3\x7a\xd1\xf5\x08\x74\xca\x74\x1c\x96\x79\x57\x1b\x9f\x0a\x6f\x96\x0b\xbc\x1e\x50\x63\xda\xfb\x17\xc6\x28\x85\x41\xbd\xa7\x6a\xed\x4b\x33\xe3\x91\x9f\x55\x95\xea\x80\xdc\x5d\x63\x25\x50\x33\x81\xa0\xe2\x30\x5a\xa5\xf6\xb9\xd9\xe3\xc4\xd9\xe1\x57\x21\xa1\xa5\x08\x95\x1d\x52\x93\xde\x65\x47\x7a\x42\xf7\x82\x70\xbb\xb3\x4e\xc4\xf7\xd6\x29\x92\x94\x1e\x64\x36\x8f\xb9\x47\xd6\x8b\xaf\xef\x98\x32\x25\x6f\x73\x1b\xc2\xcc\xa8\x89\xa2\x5c\x27\xc0\xa1\xc6\xf8\x9a\x7d\x3e\x3e\x58\xca\x38\x5c\x1f\x53\x56\x26\xa3\x53\xeb\x94\x7c\x03\x02\x12\x81\xbc\x5f\x7a\x2b\x25\x55\x58\x89\xfd\xe0\x1e\x98\xc9\x86\x88\x9c\x85\x18\xe6\xaa\x51\x12\x97\xbb\xf7\x98\x12\xcc\xa1\x03\x09\x27\x9f\x69\xfb\x66\x2b\xcd\x6e\x84\x2d\xd6\x9e\xa1\x45\xf4\x84\x63\xc9\x9b\x6d\x99\xc6\x83\x5e\x51\xe1\x5b\xd6\x91\xe7\x21\x26\xbc\x12\xad\xd1\x8d\x5a\x7c\x83\xd3\x9a\xe9\x70\x6d\xce\xe8\x91\x09\x83\xe2\xc2\x12\x99\x7c\x54\x08\x6a\x8b\x93\xcf\xde\x40\x6e\x99\x0a\xcc\x47\x7d\xc3\x07\x16\x4b\xeb\x9b\x94\xfd\x08\x69\x9c\x19\x74\x4a\x6e\x5e\x7a\x35\x1a\x9d\xb2\xff\xf4\xfa\x20\x69\x3d\x00\x87\x4a\xb3\x64\xcd\x99\x4a\x6b\x14\x42\x27\x0f\xca\x11\x7b\x2b\xb7\xea\x68\xf2\x2a\x04\xc2\x93\x91\xab\x0d\x65\xde\x65\x35\x18\xc8\x38\xb5\xa7\x26\x8f\x51\x59\xe8\x75\xfe\x11\x5b\x6e\x94\x75\x9f\x7d\xe2\xc5\x6d\x4e\xda\x27\xd4\xcf\x8c\x55\x9e\x43\x19\xba\x5e\x9a\x0f\x91\x6b\x1f\x2b\x2a\x49\x8f\xaa\xd1\x74\x6b\x9f\x1b\x7e\xa5\xc8\x4d\xd2\x96\xb9\xb9\x89\x27\x55\xc9\x33\x64\x41\x2f\xb2\xa9\x69\xbb\x87\x4f\x02\x2c\xa0\x57\x20\x3f\x5a\xbe\xca\x61\x56\x77\x41\x8f\xd0\x6e\xe0\xdd\x3b\x05\x88\x0c\x4a\x6c\x20\xed\x87\x23\x58\xdd\x52\xf6\x11\xaf\xe2\xae\x38\x20\xeb\x9a\xbb\x88\xb1\xda\xc2\x77\xd6\x57\x41\x79\xd7\xe9\x13\x0e\x3f\xfe\x96\x6d\xa2\x6f\x80\x48\xc5\xf7\xe8\x50\xe4\x7b\x45\x25\x8d\x83\x14\x47\x2a\xdc\x79\x32\x9a\xda\xb5\x05\x06\xb4\x79\x93\xb0\x3b\xd3\xbe\x8c\x75\x04\xe7\x60\xdb\x41\x15\x59\x67\xf5\x33\xa6\x52\x36\x98\xd0\x76\xa1\x55\x83\x51\x5a\xa2\xd9\x6b\x46\xa8\xe7\x31\x2d\x25\xf9\x53\x5b\x3c\x46\x12\x43\x01\x4c\x89\xdb\x78\x8b\x7e\x68\xfe\x0e\xc7\x80\xb6\x83\xbc\x14\x05\x58\x3b\xb2\xbf\x27\x0f\x2f\x83\x37\x4f\x9a\x1f\x55\x2d\x94\x0c\x58\x85\x8e\x11\x7b\x1d\x68\xcf\x2e\x90\x54\x80\x70\x11\x4b\x2f\x22\x93\x79\x3f\x79\xc1\x61\x14\xa3\x48\x17\x36\x6a\xfb\x4d\x71\x98\x84\x1b\xa1\x7a\xb8\xae\x4b\x55\xe0\x82\x2f\x2b\x02\xab\xc4\x77\xb9\xc9\x67\xae\x48\x54\x5b\x69\x1c\x8d\x22\xbb\xb5\xe2\xa9\x48\x99\x99\x18\x55\x2b\xac\x0e\x82\x5d\xa7\x24\x39\x4a\x9c\xba\xff\xe7\xd7\x89\xee\x66\xa7\x1f\xbb\x10\x65\xee\xf8\x48\x9e\xb0\x85\xcf\x13\x61\xb6\x12\xb3\x0f\x9c\x1f\xa5\x08\x9f\xc5\x5a\xef\x51\xe2\xd5\x3e\x56\x95\xeb\x06\x54\xa8\x94\x7a\x41\xd0\x6a\xaa\xe3\x60\x13\x0f\x09\xc8\xa9\xb8\x36\x70\x5c\x13\xd1\xf3\xab\xe3\xa3\x18\x1b\x81\xdd\xd4\xf1\x94\xbb\x7d\xa1\x88\xef\x55\x9f\x54\xb1\xcb\xd5\x51\xb7\x3f\x1e\xdf\x67\x9d\xa4\x30\x15\x99\x3f\x9f\x15\xda\x08\xb6\x4c\x50\x32\x6f\xee\x81\x8b\xc2\x09\x93\x7a\x52\xd0\x34\x5f\xe7\x28\xce\x42\xb7\xf6\xd8\x0b\xd7\xca\x08\xd4\x70\x3f\xd1\x58\xaf\xee\xf4\x2f\x3c\xae\xb4\x81\x7c\xa2\x34\x80\xb3\x8d\xde\x3d\x1e\xe9\x46\x4c\x22\x7e\x4a\x31\x7d\x0d\xab\x96\xf8\xbc\x7f\x78\x93\xba\xe1\xee\xf7\x11\x81\xd1\x0a\x1e\xf0\x88\xc2\x78\x91\xa6\xca\x1c\x0c\xf6\xcd\xb5\x57\x2a\x39\x51\x19\x38\x31\xe8\x34\xf8\xc3\x29\xb1\x4c\xeb\x98\x54\xf2\x04\x5a\xdc\x58\x36\xf3\xf7\x35\xf1\x6f\x0e\xae\xe1\x8a\xdf\xe5\x40\x1a\x29\xba\x73\x97\xee\x8b\x53\x72\xc7\x88\xaa\x1a\xcd\xda\xac\x74\xbb\x41\x9d\x59\x3a\x52\xe9\x8d\xec\x96\xe7\x14\x14\xa6\x07\xec\x2a\x3b\x7b\xc2\x44\x51\x9b\x79\xe6\x5a\xf5\x6d\x41\x54\x76\xb8\xdc\x6c\xac\x52\x70\xe0\x34\x3b\x8a\x6f\xc5\x4e\x19\x5b\xd0\x95\x13\x14\x1c\x88\xc4\xd5\x04\x84\xe9\xa9\x7e\xb6\x2a\x3a\x10\xd8\x80\xae\x0b\xf2\x85\xe0\x6e\x89\x9b\xee\x1b\xa0\xe6\xb9\x98\xe2\x56\xfe\x28\x90\xa4\xd0\xa7\x75\xd1\xe4\x45\x82\xd6\x42\xcb\xfa\x39\xfd\xc4\x97\x74\x42\x97\x21\xed\x7f\xe3\x48\xdd\x42\xa8\x43\x3a\x3e\xe7\xfb\xed\xbf\xe6\xc7\x9f\x59\xa7\xe2\x6e\xd7\x6c\x12\x42\x3d\x50\xd6\x62\xdd\xbd\x5e\x92\x27\x6b\xf6\x9b\xe9\x73\x5b\xa5\xb4\x6a\xca\x3e\x24\x04\x59\x16\x60\xc3\x19\xbf\x29\x99\xd4\x19\x7e\x09\xfb\x44\xbf\x3f\x09\xa1\xd0\xbe\x7b\x61\xb0\xd4\xdf\xc2\x4c\xc0\x2b\x18\xf9\x84\x04\x12\xf5\x08\xa4\x78\xda\xe0\xd8\xac\x41\xfc\x88\x73\x6d\xc8\x0f\xcd\xee\xec\x3f\x8f\xe5\x26\x85\xb0\x18\x41\xb2\xb5\xaf\x56\x55\x39\x43\xcb\xe7\x0a\xae\xda\x23\x9b\xd5\xb1\x43\xde\x06\x4e\x98\x08\xb0\x3c\x60\xdd\x2c\x29\xd9\xb0\x10\x74\xf8\xca\xd3\x3e\x7e\x5a\x24\xdf\x65\x60\x59\x90\xc9\x47\xfe\xfb\x63\xc9\xe5\x55\xc7\x84\x6a\x90\xb2\x46\x82\xb6\x6b\xde\x70\x09\xd8\x1a\x5b\x3d\x50\xd4\x7c\x66\xcb\xa2\x38\xa5\x85\xd0\x94\x36\xe8\xfe\x63\x8a\x40\x07\xe0\x72\x39\xc1\x30\x8d\xad\xb3\x79\xe9\x12\x3b\xbb\x53\xb9\x6d\xdf\x05\xe5\x28\xf4\xff\xe8\xa2\x78\x87\x16\x20\xe5\xf0\x85\xdf\xb9\x54\xc5\x98\x00\x07\x5a\x7c\x54\x5c\xd6\x86\x48\xc5\x1f\x85\x43\xd1\xd4\xf1\xba\x31\xc9\xed\x6d\x23\x4b\x09\x2f\x99\xeb\x3e\x88\xda\x98\xc5\x22\x7b\x76\x9f\x7e\x4a\x35\x2e\xd6\xc3\x4c\x81\x8f\xc6\xef\x91\xae\xad\x88\x0d\x8a\x6c\x38\x3a\x86\x46\x6b\x0b\x3a\xd4\xaf\x24\x16\xa4\xbd\xf1\x94\x90\xba\x40\x29\xd7\x0d\xed\x83\x83\xf1\x1a\xd6\x2d\xc9\xbb\x30\xb3\xfe\xf1\x64\x19\xe6\xda\xbe\x6b\x56\x60\x0d\xe9\x66\x12\x4d\xbc\xfb\xa4\x38\xd4\x1d\xc8\x80\xed\x4d\x43\x87\xc9\x44\x6d\xee\xf9\x45\x55\x75\xf3\x87\x24\x41\x60\xd0\xb0\xa8\xf3\x64\x21\x68\x9f\xc5\xc6\x05\xb7\x58\x48\x82\x17\x65\xff\x38\x51\x6d\x82\x50\x7c\x1b\xcd\x7f\xb2\xf7\xf5\x4a\xc0\x21\x3c\x2a\xb7\xf0\xe0\x47\x1c\xb9\xed\x5b\x54\x1d\x35\xbc\x9c\xe7\x9e\x17\xe4\x81\x09\x6a\x39\x3f\xfb\x71\x69\xb3\xfa\xf7\x53\xa5\x8c\xec\xc3\x3b\x2e\x13\x52\xcd\x74\xfa\xd6\x8b\x11\x96\xf2\xb7\x5b\xb8\x98\x56\xfa\xeb\x7f\x41\xd1\x55\xf1\x6b\xc0\x4a\x3a\x95\xef\x9e\xcb\x5f\x32\x88\x40\xae\xff\x33\x53\x22\xbc\x33\x4a\x4f\x15\x10\xc9\x83\x31\x37\xec\xd1\xe4\x02\x9d\x36\xbd\xb9\xa5\x83\xa3\x76\x9e\x10\x60\xbd\xa8\xb4\x2f\x29\x91\x99\x37\xf0\x38\x71\xaa\x3e\x93\x3d\x99\x25\xd8\x86\xe1\xaa\x09\xef\xaa\xbe\x4b\x51\x34\x42\x0d\x60\x98\x82\xcd\xf0\xdd\x2e\x95\xe6\x53\x2a\x45\xb8\xff\x9f\x54\x2f\x97\x20\xab\xb6\xef\xc4\x9a\x25\x7b\x24\xd1\x74\xca\xec\x0c\xaf\xee\xda\xa7\x2f\x97\xa7\x5c\xb4\x60\x66\xe4\x02\xb4\x48\x12\x00\x77\xc2\xf0\xc5\xf2\x85\x9f\xbe\xac\x90\x0e\xfc\xd5\x3e\x69\xd0\x31\xd7\x61\x45\xdd\xc5\xad\x02\x07\xb9\x26\xeb\xbc\xb5\x1d\x51\xce\x5b\xa3\x86\x5c\x18\x55\x88\x5a\x66\xad\x98\x59\xb9\xbe\x6d\x33\x6c\x59\x18\xe1\x9f\x9a\xc5\x13\x78\x4c\x58\xbc\xd9\xb8\x32\x41\xf9\xf6\xf2\x3a\xf3\xe8\xcd\x0e\xd1\xc4\xe1\x61\xa3\xd5\xec\xa8\x5d\xb0\x59\xdc\x87\xc3\x7d\xdc\xc3\x9f\x4f\x3f\x2c\x40\xb4\x36\xed\x87\xac\x5a\x3a\x52\x8a\xe2\xe9\x3e\x43\xe6\x3f\x36\x08\x6f\xdc\x12\xb3\xac\x4f\x45\xaf\xcb\xba\x52\x7d\x69\x7a\x92\x5c\x52\x63\x18\x88\xe5\xc8\x2e\x82\x62\x3d\x52\x78\xc8\xe1\x63\xc9\xde\x85\x15\xa6\xca\xca\x44\x36\xf3\x9a\x82\x49\xe1\x02\x41\xa2\x57\xfa\xbb\xd7\xc4\x09\x59\x4a\xe2\x70\x73\xbe\x24\x8f\x63\x22\xd7\xc3\x44\x38\x23\x2c\xba\x28\x36\x6b\x1d\x70\x01\xa0\x9c\x7f\x52\x05\x09\x20\x47\x47\x55\xc0\xd5\x95\x72\xde\x26\x96\x83\xce\x45\x96\x2d\xc3\x61\xb5\x15\xa7\x14\x41\xdd\x70\xf7\xc4\xca\x56\x73\x66\x0f\x95\x9f\xb8\xfc\x87\x8b\xa6\xb0\x7d\x3c\x1f\x34\x80\x05\x2c\xe4\x99\x52\xaa\xa9\x3d\xf9\xd4\xf0\x04\xe8\x88\x0a\x1b\x45\x2c\xa3\x4d\xa3\xae\x52\x0b\x91\xc8\x84\x96\x63\x1a\xaa\x23\x55\x99\x19\xcb\xe2\x6c\xe7\x6b\x9b\x54\xdf\x0d\xc6\x2c\xa1\xe0\x90\xe0\x6b\x3b\xd3\xe0\x9b\xf0\xe7\x7f\x68\x53\xed\x70\xa1\x01\x75\xaa\x84\xc6\xcb\xf0\xc6\x5a\x49\x85\x07\x56\xe9\xf2\x5a\x2b\x11\x61\x6c\x40\x74\x66\x20\xd7\xbe\x4b\x42\x49\x58\xe1\xc1\xca\xa8\x9a\x27\x9f\x55\x0f\x78\xa7\x8c\x79\x1d\x40\xd7\xcd\x76\x69\x1c\xe3\x11\xe8\xd1\xc6\x4c\xe6\x86\x66\xb1\x44\x8b\xc0\xa9\xf4\xb0\x44\x73\x97\xed\x50\xe7\x5e\xc0\x6a\xe6\x69\x6f\xbf\xc7\x65\x06\x4b\x0d\x58\xc8\x08\xa3\xd4\xe3\x27\xe2\xf3\xaa\xd3\x4f\x2b\xec\x4e\x51\x5a\xf5\x00\x11\x0b\x39\x7c\x92\x9e\xb9\xbe\x43\xd5\x49\x13\x38\x4b\x7e\xae\x9b\x5d\x92\x0c\x6d\x18\xa5\xc3\x6b\xf9\xb7\x83\x03\xa4\x7b\x61\xf8\xb8\xb5\x1d\xfd\x62\xb7\x11\xaa\x01\x72\xc3\x62\x8e\x3c\x85\x0e\x91\xbc\xfc\xb5\xde\x7b\x92\xef\xae\xe5\x53\xad\xac\x69\xf4\xf5\x5d\x4a\x90\x82\xa4\xc6\x95\xe0\x82\xf1\x63\x55\xa0\x50\x25\x02\x91\x7a\x5b\x86\xca\x9d\x56\x0f\x39\x7e\xb4\x89\x4c\x12\xcf\x92\x8b\x96\x9f\x58\xd7\xa7\x46\x8b\xbf\x9a\x3a\x95\xb6\xc4\xf2\x3c\x58\x4d\x1a\x15\x8b\xae\xa2\x2a\x1d\xad\x4f\x6c\x8d\xf7\x07\x6b\x4c\x88\x39\xf0\xa6\xbe\x12\x97\x09\x84\x15\x15\xaa\xd3\x1e\xf6\xbf\xbe\x23\x69\x31\x54\x19\x94\x87\xb6\xc6\x96\xa9\xfa\xcb\x35\x60\xc5\xe8\xbf\xee\xfd\x2a\x5a\xca\x42\x3a\xb7\xca\xfb\xd1\x07\x32\x1c\x98\x72\x20\x69\xdc\xff\xee\x22\x45\x3e\xa7\x48\x9f\x1c\xe1\xb8\xb7\xcc\xef\x1f\x14\xcb\xdb\x44\x65\x93\xd2\x44\x97\xcd\x4d\xb6\x49\x6c\x10\x59\x44\x2c\x7c\x39\x0e\xbf\x2c\xd7\x18\xdc\x21\x86\x68\xc4\x84\xbe\x0d\x3c\x6c\xe1\x32\x8a\x4b\x6b\xed\xa7\x27\xc4\x7a\x98\xd1\xdc\xda\x16\xde\xc9\xf1\xed\x8a\x3c\x95\x4e\xa9\x2f\x9c\x44\x94\xcb\x7f\xa0\x2c\x4c\xb7\x22\xf9\xe4\xcd\x7a\x39\x55\x34\x79\x92\x21\xe1\xe4\x67\xaf\xe9\x81\xc0\xa0\x1e\x0a\xd3\x37\x24\xd7\x4c\x11\xfb\x91\xb7\x96\x76\xbb\xa1\xe0\xc1\x2d\xe0\x56\x62\xb6\x4a\x78\x4f\xb3\x1d\x99\x03\x63\x40\xa2\x53\xd5\xf3\x42\xe0\x6c\x12\x30\xc2\x2e\x13\x11\xe4\x44\x2a\x17\xbf\x7f\x57\xac\x85\x30\x37\x6d\x20\xf6\x86\x72\x5f\xee\x18\x24\x88\x7a\x28\x0a\x14\xb7\x3e\x3f\x5e\x49\x8f\xc3\x13\x66\x75\x4f\x16\x3a\xd9\x2b\xe7\x26\xd7\x05\x72\x74\xcb\x37\x98\xc3\x61\xee\xce\x13\x82\x90\x5d\x66\xe6\xe5\xd7\x3e\xc6\xf2\xc3\xb9\x3e\xf1\x4c\x48\x6c\x06\xc6\xcb\xdc\x26\x49\x08\x38\x10\x95\xcd\x22\x26\x26\x35\x01\x2f\x74\x67\x06\x4a\xb2\x84\xd4\x96\x88\x39\xa1\x65\x3e\x5c\xaf\x10\xaf\x4c\x28\xc9\x98\x2f\xea\x62\xa3\x5a\x2e\x39\x49\x6b\x0f\xc6\xa1\x31\x8b\xa2\x1d\x59\x26\x10\x3a\x61\xd6\x21\x9d\x9d\x17\x72\xc3\xc2\x8f\x0b\xdf\x9e\x9a\x64\x7e\x6b\x8f\x24\xa1\x80\x6c\x18\x31\x22\xb4\x5f\x6f\xbc\x42\x2a\xcf\xbd\xbc\x8b\xa9\xb4\x2f\x43\xde\x66\x56\xab\xd6\x65\xb4\xae\x60\xd4\x9c\x6f\x2e\x56\x71\x03\x35\x44\xcd\x96\xe9\xa2\x2f\x2d\x52\xe0\xff\xa8\xc2\x30\x01\xc1\xf6\x13\x42\x3d\x43\xee\x85\x65\xff\x65\xa1\xd2\xd1\x42\x1c\xa1\x14\x7c\x67\xe9\x28\xf5\x84\xe0\xbe\xf2\x46\x04\xf7\x9e\xaa\x88\x4a\x10\x18\xd1\x79\x68\x46\xf8\xd2\x59\x11\x75\x5b\x26\xb7\x4f\x9f\x42\x11\xbe\x9b\x93\x6b\xb6\xe2\xdb\x20\xa9\x5a\xfa\xf9\x8e\xd4\xd1\xe4\x21\x27\x96\x10\xd1\x3a\x86\x27\xff\xdd\xc6\xe1\x9e\xf2\xed\x68\x02\xb6\xfb\x84\x38\xba\x20\x3b\x07\xf2\x85\xa0\x53\x19\xd0\x54\x91\x55\x26\xc8\x8e\x07\x34\xda\x77\x16\x2b\xbd\x31\x76\xea\x49\x4d\x8e\xa6\x0e\x15\x5f\x6b\x20\x20\xb4\xcf\x33\x2f\x8e\x4b\xfe\x7b\xac\x22\x18\x59\x9e\xf5\x12\x05\x52\x03\x3b\x65\xdd\x04\xa8\xe1\x1b\xf4\x60\x35\xc6\x48\xed\x78\xbf\xc8\xa9\x33\xef\x3d\xa8\x0e\x0a\x81\x8b\x1d\x96\xf0\x76\x2d\x10\x0b\xd3\xd5\x4d\x82\xa1\x21\x0b\x43\x64\x1f\x39\x9b\x6c\x94\x53\x77\xf0\xf0\xb0\x51\x23\xcc\x5f\x46\x8b\xc8\x08\x2d\x94\x36\x4b\xc9\x69\xc7\x24\x82\x9d\xdb\xd0\x4d\xc6\x43\x2a\xf7\x1a\x21\x5c\xae\xd2\x2d\xb6\x4f\xdd\x98\x8c\x0c\xbe\xc3\x44\xbb\xdc\x74\xb3\x3e\xf3\xe6\x22\xf1\x0d\x15\x64\x79\xcc\xa4\x54\x33\x4e\xaa\x5d\xe0\x4e\xa8\xc7\x03\x98\xb2\x82\x2f\x02\x8e\x5b\xa7\xf9\x20\x3d\x50\x3e\x18\xfd\xff\xaa\x65\x25\x6d\x8c\x7f\x9f\x18\x49\x94\xe8\x15\xfa\xad\x0f\x1e\x1b\xc2\xeb\x9b\x2a\x04\xba\x19\x0d\x52\xb2\xdf\x1d\xa3\x84\x62\xcb\x2f\x95\xf8\x7c\xfc\x9b\xfb\xff\x1a\x9d\x5d\x68\x1d\x8e\x79\x57\x59\xd8\x16\x40\xb6\x70\xe2\xcc\x3e\x78\x8c\x8f\x08\x4d\xe2\x3b\x15\x3a\x96\xcf\x5a\x93\x05\xee\xdd\x6e\x98\xa4\x86\x2d\xb9\x33\xf4\xbb\x95\xca\xaa\x26\xb8\xc8\xf8\xa2\x6c\x14\x75\xf4\xb4\xaa\xf1\xee\x62\x9f\x8a\xfa\xf0\x1e\xe6\xf2\x17\x45\x8c\xb2\x7d\x62\x70\xdb\xb5\xee\xec\x99\x17\xc7\xc8\xa7\xd3\xfc\xf9\x93\x16\x62\x27\xad\xce\xf6\xe9\x9d\xaa\x0b\x90\xeb\x71\xe8\xea\x73\x2b\x54\x73\x67\xbf\xca\x4f\xe7\x43\xfb\x12\x6c\x52\x66\xaf\x9d\x2f\x04\x5f\x3e\xa6\x1e\x10\x1e\x74\x5c\x6e\x81\xfb\xe9\xb1\xaa\x6d\x40\x4d\xf4\x84\xbb\x33\xf7\x3a\xc9\xa7\x0b\x88\x8d\x7d\x12\xd7\x30\xd9\x3f\xed\x51\x04\xbb\x28\x34\x23\x7a\x10\xb9\xd1\xc3\x15\xdc\x3a\x84\x1e\x0b\xad\x34\xa8\x0c\x1c\xa8\xa6\x75\xa8\x0b\x46\xe2\xcc\x0f\x49\x5c\x26\x3a\xd8\x64\x4d\xa0\xe1\x5b\x86\x4b\x61\xde\x71\x60\x19\x7b\x28\x3a\x03\x2e\xbc\x38\x4a\x9a\xfd\x94\x30\xb1\x53\x33\xb2\xcf\x29\xde\x10\x0e\x1d\xf9\x56\x63\xe4\xd3\x4f\x1e\x14\x1b\x17\x94\xbc\x1e\x7c\x1b\x7f\xfe\x5a\x72\x87\xd4\xc3\xec\x25\x72\x8f\xbe\x7e\xbe\x02\x49\xc6\xec\xcd\x05\x1d\x2b\xd9\x3a\xfc\x6c\x19\x38\x06\x2f\x83\x0a\x67\x95\x7e\x35\xb2\x2c\xe8\xc9\x71\x3b\xb7\xc1\x61\xda\x75\x8b\x91\x6e\x02\x62\xb8\xf2\x39\xa3\x75\x31\xa2\x41\x1e\x58\xf9\x79\x32\x64\x54\x1b\x3c\x5a\x85\xe1\xd0\x8e\x31\xaf\x17\xc6\x94\xae\x52\x13\x3c\x50\x86\xb6\x98\xc2\x66\x32\x3b\x14\xa5\x37\xa7\x8c\x1c\xe6\x1e\xc8\x01\x1a\xb3\x37\xb0\x4c\x78\x11\xcd\x42\xf3\x85\xe0\x13\x1b\x94\x77\xe9\x20\xa6\x76\x92\x2f\x04\x6f\x3c\xa9\x92\xc6\x91\x24\x31\x52\x98\x70\x85\x84\x21\xf0\x50\xbe\x18\x96\xe9\x61\xb9\x18\x3e\xa3\x21\xa7\x2e\x57\x9a\x81\xbc\x55\x3f\xe6\xb8\x60\x9a\x19\xb4\x3d\xa0\x6d\x7a\x53\xf9\x9e\xb0\x72\xb6\xa2\x7a\xa5\xd7\x3d\xc2\x21\xdf\x95\x5a\x9e\xda\xac\x23\x03\xa2\xbf\x68\xe6\x6c\xe6\xd1\x1f\x0d\x90\x7a\x96\x61\xe2\x14\x34\x2f\xe6\xd8\xf4\x1a\x74\x3c\xe6\x5f\xa4\x7d\x7e\xa8\x08\x24\x80\xb8\x66\x98\xf0\x49\xa7\xc5\x9f\xcf\x2b\xc0\x25\xc7\x45\xae\x07\xe3\xc3\x2b\xf3\x6d\x47\x6a\x7e\x30\x89\xcd\xe0\xd4\x41\x2e\x7f\x82\x6d\x1b\x12\x36\xb9\xfc\xf1\xc5\x64\xc3\xa1\x42\x80\xcb\x1f\xa0\x38\xe2\xbf\x79\x96\x09\x7c\xe6\xf3\x85\x20\xb7\x46\x14\x04\x75\x13\x79\x1e\x17\x3b\xf8\xcb\x42\x49\xcd\x16\x73\x51\x8d\xec\xed\x9b\xe2\xbc\x7e\x3c\x75\x18\xf9\xe7\x1d\x4d\x7c\x0f\xb9\x1e\xf1\xf5\x58\xb9\x54\x2b\xf6\x95\xf5\xa9\x75\x0f\x12\x36\xf8\xee\xea\x14\xf6\x3a\xd8\x57\x19\xa0\xdf\xf1\x92\x9b\x62\xfa\xd4\x28\x02\x3c\xf4\x56\x12\x63\x45\xad\x38\x75\x6c\xf7\x94\xe9\x6a\xdd\x4b\x9b\xf8\x93\x71\x3c\xd9\x07\x33\x3b\x4b\x69\x53\x95\x30\x29\x43\xd2\xe0\xe1\x7a\xa1\x12\xa3\xaa\xc0\x43\xf4\x1d\xb0\x4a\xf7\xdb\x03\x87\x29\xbb\xa1\x02\x23\xc4\xf1\xd6\xa5\xe2\x31\x5a\xc0\x31\x58\x9e\xdf\xad\x3d\x2f\xc1\x02\x5a\x26\x4f\x99\x31\x6d\xf2\x34\x2a\x42\x97\xbb\xe1\x79\xf1\x07\x13\xa4\x0d\x79\xdf\x40\x09\xa2\xc9\x35\x4c\x69\xb1\xf5\xeb\x66\x25\xbd\x81\xe5\xb0\xce\x76\xca\x1c\xfb\xf6\x83\x11\x9c\x51\x88\x9d\x72\x9d\x20\x86\xef\xc8\x75\x2a\xed\x76\x0f\x02\x97\x83\xec\x72\x95\x1c\x7b\x4a\x77\x38\x1e\x24\xdc\x25\x87\x9e\x7a\x64\xbf\xcc\x9b\x63\x56\x00\xc1\xda\xb3\xd2\x85\xb1\x91\x2d\x6f\x28\x6d\xe8\xad\xd4\x9b\x10\x10\x2b\x72\x48\xf8\xdb\xcd\x5c\xdb\x8a\x20\xaa\xd8\x50\xe8\xce\x6e\xd6\x84\xcc\x4d\x1a\x05\x90\xfd\xc4\xde\xf1\x75\xb5\x84\x47\x3d\xaa\x2d\x05\xdf\xd8\x93\x04\xe4\x4f\x60\x51\xe4\xe6\xfe\x97\x2b\x6f\x99\xf3\x32\xb4\x4f\x4f\x50\x2c\x47\x50\xd9\x84\xae\x97\x27\xac\x99\xc2\xd7\xc1\xcc\xfe\xf2\xf4\xb7\x5c\xe6\xfa\xd6\xb9\x95\x4f\x27\x3c\xa3\xaa\xe1\xe1\x68\xe4\x0b\xc1\x85\xed\x0a\xa8\x9c\x40\xe8\xe1\xba\x23\x95\x82\x99\x99\xad\x12\xb2\x8e\x8a\x8e\xa5\x0e\xf3\x9b\x3e\x18\x20\x65\x61\xf4\xa1\x9f\x1e\xcd\x30\x0f\xf3\x7c\x07\x38\xd1\xc1\x33\x27\x55\x34\x44\xee\x9b\x85\x36\xd5\x32\xb6\x68\x45\x0a\x82\x3f\x08\x2e\xe3\x95\x12\x0f\x8b\x19\xa9\x63\xe5\x20\x07\xb0\x96\xc3\x72\x09\x08\x0c\x6c\xec\x33\xfe\xdf\xe3\xbb\x24\x98\x10\xc6\x36\xad\xcd\x1a\x17\x87\xf7\x10\xfb\x79\x46\xf6\xcc\x48\xb6\xb8\xda\xda\x5b\x5a\xe4\xa6\x49\x76\xe7\x13\x03\xa4\xd3\x9a\x52\x40\xce\x1f\xeb\xc1\xd9\x9f\x4d\x78\x7e\x6b\x0e\xae\x2a\x02\xa0\x14\xc0\x3d\x57\x8c\xb5\x91\x97\xda\xff\x4b\xfb\xab\xe3\x5d\x02\x81\x4f\x85\x26\xf8\xcc\x2b\x7b\xcd\xe9\x11\x52\xbf\xae\x93\x7a\x36\x4a\x91\xfe\x91\x3d\xa9\x7e\x88\xee\x8b\x53\x2d\x77\xc9\x64\x59\x68\x9e\x69\x98\xd0\xbc\x77\xc8\xa3\xe2\x82\x4d\xa0\x47\x06\x57\x95\x3e\xb2\x48\x06\xd2\xb9\x6a\xf1\x83\xaf\x09\xd0\x37\xa0\x73\xa6\xd6\xbe\xe2\x17\x4b\x04\x19\x80\x4e\x9a\x86\x3e\x38\x42\xe8\x50\xa5\x99\x79\xbd\x77\x0d\x92\x9e\x12\x64\x07\xa2\xb6\xe2\x89\x61\x52\xaf\xc7\xf0\x5d\x8f\xf6\xd0\xe8\x1a\xfa\xf2\x11\xf1\x42\xe1\xfd\x3e\x6b\xbd\x7f\xed\x4d\xb9\x0a\x22\x88\xc9\x66\xd9\x07\xd4\x2e\x0f\xcf\xf9\x72\x96\x27\x79\x85\xeb\x80\xe8\x7c\xb8\xd0\x7b\xa6\x98\xe4\x20\x4a\x0d\x2e\x2d\xe0\xfe\x6c\x96\xe5\x73\xc0\xba\xf6\x85\xb9\x52\xc7\x14\x3b\x04\xd3\x29\x90\xb9\x97\xa5\x0b\x40\x67\xee\x4c\xc1\x7b\x43\x13\xfa\x05\xcc\x4d\x2e\x5b\x7d\xfa\x2a\xe9\xd8\xc2\x6e\x7a\x3c\xb4\x7c\x24\x1b\x42\xde\x4d\x19\x09\xc9\xda\x68\xd5\xc4\x81\xd2\x66\xd4\x4d\x9a\x12\x5a\x35\x35\xc7\xd4\xb1\x63\x70\xbe\xd9\xc1\x7e\x69\x61\x6d\xa4\xfb\x16\xe0\x9a\xf8\xda\x06\x3e\xf8\x85\x0e\xc1\x96\x15\x01\xdc\xa6\x29\x33\x13\xb6\xa3\x58\x03\xea\xe8\xbe\xe4\xbf\xd5\x90\x8b\xa2\xde\x52\xe6\xf9\xdd\xac\x65\xbe\xe4\x96\xc5\x73\x3f\x9b\xaa\x08\xc7\xf4\x56\xe0\xc0\xc8\xb2\x22\x98\xf2\xa0\x59\x62\xf8\x68\xfe\xff\xe8\x7a\xfb\x78\xa9\xaa\x7a\x7f\xdc\x3d\x33\x12\xa1\x22\x0f\x87\xe3\x11\x11\x11\x09\x50\x98\xe3\xe1\xe9\xf0\x20\x11\x20\xa2\x12\x30\x5c\x24\x32\x32\x72\xcd\x9e\x35\x33\xeb\xcc\xde\x7b\x6d\xd7\xde\x7b\x86\x39\x72\x89\x0c\x89\xcc\x10\xcd\xb8\xe6\x25\x33\xaf\x71\x89\xcc\x88\xcc\xb8\x64\x5c\xaf\x1a\xd7\x88\x4b\x46\x46\xe6\x25\x32\x32\x33\xe2\x67\xc6\xf5\xab\x5e\xe3\x6c\x7f\xaf\xbd\xd6\xda\x7b\x7d\xf6\x9a\x73\xff\xb9\x0f\x72\xce\x9c\x3d\x7b\x3d\x7c\x9e\xde\x0f\x2d\x8e\x67\xc6\xa9\x93\x00\x0f\x44\x03\x2e\xbc\x11\x3a\x2d\x78\x9e\x68\xb3\x24\x13\xe2\xf0\x85\x07\xf5\xbf\xe7\x57\xa5\x4d\xc6\x2d\xe7\xa8\x41\x4b\x29\xca\x7e\xa6\x3c\x25\xb0\x4c\x0b\x91\x59\xf5\xaa\x08\x70\x7f\x9e\xb9\x15\x4c\xcc\x91\x8f\x9c\x68\x9b\x86\x0f\x9e\xd5\x29\x57\xd4\xb5\x64\x6e\x1f\x56\x46\xa7\xd3\x1e\x1e\x53\x5f\x39\xa5\x97\x1a\x25\xcc\x21\xde\xb2\x2f\xf2\x70\xaf\xd6\xc1\x21\x0e\x65\x71\xd5\xfa\xc3\xf5\xed\xa0\xbf\xe6\xc1\xc9\xdf\x96\xd7\xe2\x29\xbd\xc5\x85\x51\xa2\xb7\xb9\x36\x03\xec\xcd\x03\x56\x0c\x2c\xa9\x82\xd4\x97\x3d\x31\x4a\xd3\xdd\x16\x04\x13\x71\x3f\xe4\xc6\x49\x35\x39\x6a\x59\x51\x94\xe3\xe7\x6b\xfc\x56\x68\x9a\x5d\xc2\x98\xb3\x3b\x37\x75\x2b\x0c\x0e\x81\xf6\xc4\xc3\xe6\x88\xa3\xe0\xd9\x94\xfa\xd5\x7c\x21\x5c\xcd\xc0\xe0\x18\x4a\xa7\xff\x90\x29\xe8\x05\xe3\xc2\x62\x45\x20\x55\x8f\x4a\x8c\x20\x79\x27\xd4\xce\x19\xad\x67\xf4\x84\x3b\xcb\x26\x75\x72\xb6\x70\x8e\x5a\x26\x5a\x43\xbd\xa8\x46\xa2\x4f\xdc\x57\x52\x9f\x58\xc7\xac\x28\x3b\x74\xc6\x79\x4b\xc4\x37\xc5\x9e\x4f\x6c\x81\x43\x08\x27\xb5\xa9\x60\x27\xb0\x11\x2d\xc7\x73\x69\xe6\x72\x51\x16\x20\x66\x11\xce\xe9\x46\xfc\x76\x4a\xef\xd6\xf2\x30\xe9\x55\x8a\x5d\x49\xbd\xcf\xba\xc5\xcb\xb5\xd7\x2e\x25\x84\x20\x77\x29\xbb\xf2\x15\xb1\x0b\x17\x38\x3d\xd8\x22\x26\x78\x59\x99\xc1\x6b\x81\xf0\xc4\xac\x59\xd1\x5b\xd9\xa5\x91\x4d\xcb\x84\x61\xc4\x6c\x61\xd2\xda\x97\x3b\xf7\x95\x16\x5f\x73\xe5\xb1\x90\x71\x8b\x02\x4b\x7d\x53\x95\x46\x67\xe5\xa7\x13\xb5\x37\x8c\xf9\xe4\xad\x1c\x24\xe0\xa4\xcc\xcb\x27\x92\xdb\xdc\xc5\xad\xe0\xcc\x1f\x1e\x02\x94\xcf\x80\xf0\x66\x6c\xae\xa2\x61\xc7\xaa\xc8\x29\x45\x69\x5e\xb2\x6e\xc6\x7f\xac\x69\x8f\x33\x13\x69\x77\x14\x3b\xb3\x65\xc6\x9d\x93\x6c\x1c\x1f\xfa\x7a\x65\xbe\xf8\x2a\xb8\xc1\x1b\xc4\x29\x71\x77\xb5\xf0\x09\x4d\x6d\xd3\x0e\xbc\x04\xab\x78\xef\x80\x71\xda\x0e\x2a\x73\x89\x26\xbd\xfd\xfa\x0a\x50\x20\x72\xb0\x14\xc1\x9b\xaa\xe9\xec\x71\xee\x17\x6f\x2b\x4e\xd4\x24\x52\xa5\xc2\xaf\x9c\xa3\xff\xe8\x64\x07\x08\x9f\x38\xfa\x82\x09\xb4\x3c\x33\x7a\x30\xd4\x23\x8b\x6d\x18\xf5\x8b\x6f\xd6\x2b\xe2\x34\x2d\x14\x74\x92\x42\xf8\x99\x9d\xe9\x52\xc9\x65\x58\xb6\x0c\x7d\xab\x19\xdf\xa6\xce\x2c\x00\xf8\x73\x4c\xec\x79\xfc\x9f\x39\x81\x7c\xc8\xe8\xf4\x08\xdd\x65\xd8\xc1\xc0\xc2\x3b\xfc\x6a\xb7\xae\x56\x0b\x11\xc3\xdf\x7d\x4e\xed\xc3\xee\xfc\x94\xe8\xaf\x65\x46\xeb\x05\x08\xc3\x89\xbc\x4c\x5f\xee\xea\xc9\xfd\xca\x7f\xc8\xf1\xd6\xf7\x75\xb7\x3d\x2e\xcd\x86\x4b\xd2\xf2\xf6\x33\x07\x40\xa1\x1a\xfd\x8f\x42\x9f\x71\xe9\xdb\x1a\xec\x8c\x9a\x92\x66\xc8\x63\xda\xde\x67\xb4\xc8\x4f\x19\xe6\x23\xd2\xe7\x4f\x43\x25\x36\xe6\x08\x67\x15\x81\x28\x7f\xfa\x2d\xdd\x7a\x8a\x1b\x30\x8a\x61\xed\xc4\x87\x54\x8a\xdb\x10\xaa\xfc\xc6\xd7\xf6\x03\x3d\xdb\xa0\x44\x92\x0b\xf6\xdb\xaf\x69\xa7\x52\x5a\xf6\xc9\x92\xf8\x41\x47\xfd\x5e\x94\x1e\x13\x5b\x08\x12\x18\x5f\xbb\xef\xe2\x7e\x0b\x08\x81\xad\xfa\x3e\x90\x14\xf4\x70\x94\xd4\x49\x37\xa0\x09\x7b\x04\xdb\x78\x39\xe5\x8f\x75\x5e\x08\x79\x0c\x58\xb8\x42\x86\x85\xd7\x00\xfe\x0c\x76\x58\xce\xcd\x69\x1c\x17\x86\x1b\x93\xc4\x42\x1f\x97\xde\xe6\x0b\xe9\x3a\x4f\x96\x65\xff\x78\x52\x6c\x46\x97\x38\x02\x3e\x9a\xdb\x78\x40\xe4\x0f\x8b\x63\xb1\xb1\xe8\x91\x3a\x37\xb6\x83\xf9\x51\x19\xd5\x29\x93\x06\x67\x1b\x9f\x90\x65\x15\x45\xb2\x1f\x6c\x5c\x02\xe4\x09\x6d\xca\xfc\x8a\x94\x65\x99\xda\xa1\xf1\xf8\x39\xfe\x47\xea\x46\x65\xef\x1c\xa5\x5e\x47\xd9\x6a\x02\xce\x7c\xe7\x23\xe2\x89\x24\xaa\x40\x74\xa2\xb2\xbf\x5b\xab\x65\x34\x9c\xc7\x2d\x76\xe0\x43\xc0\x9b\xde\x42\x45\xe1\xdc\x9f\xbd\x5b\x13\xca\x8c\x4d\xb0\x9b\x62\x62\xfb\xdf\x3d\xea\x18\x98\x45\x7e\xa0\xbf\xbe\x76\x58\xea\x37\x26\x4c\xe2\x74\x98\x4f\x65\x2e\xd6\x5e\xb1\x90\x8d\xe7\xe5\xcd\x9a\x5d\x60\xc4\xd2\x00\xb1\x71\xde\xfd\x97\x6b\x67\xca\x8a\x42\x95\x93\x12\xe0\xfd\x8b\xe6\x55\xe3\x53\x37\xce\xc4\xce\x7f\x3a\x49\x70\x6e\x13\x3a\x03\x0b\x06\xa5\xcb\x3d\xc2\x84\x29\x99\xd8\x49\xa2\xfd\xfd\x5c\xb7\x08\x0a\x45\x64\xf1\x20\x3f\xc4\xed\x2f\xd9\x93\x4e\x9f\x97\x3d\x0f\x1d\x48\x3c\xc2\xaf\xa7\xed\xaf\xaa\x85\x91\xb1\x55\x96\xa1\xf7\xe8\x3e\xee\xc8\xe7\x5c\x0c\xf9\x5d\x16\xdf\xdf\xa2\x43\x62\x05\x25\x9e\xcb\xf1\xd6\xf2\xfc\x67\x54\x59\x50\x63\xa8\x0c\x53\xa0\xab\x3b\xa5\x7c\x19\xf2\x99\x24\xee\x0c\xd7\xcc\x46\xa3\x2d\x6c\xc5\x82\xee\xc6\x1f\x5f\x06\x3c\x7a\x8b\x7a\xc2\x36\x21\x77\xdd\x83\x82\x0f\x3e\x6d\x7a\xf4\x43\x37\x6e\x14\x2f\x63\x4a\xe7\x0c\x3e\x84\xfa\xaa\xd6\x67\x46\x9c\xce\x29\x04\x57\xdf\xd3\x44\xf0\x5d\x46\x8b\x16\xb6\xb9\x2c\xca\xef\x5f\x8f\x3d\x20\x19\xc3\xa6\x04\xdb\xf6\x3c\x99\x70\x8c\x67\x71\xcb\xff\x15\x9a\x8d\x5f\x83\x32\x8f\x5f\x5b\x7d\xb9\x31\x83\x92\x3c\x09\xf9\x7c\x5d\x3e\xb5\xb3\x85\x46\xe5\xa3\x0a\xa1\x89\x26\xef\xed\x8f\xa9\xae\xa2\xd2\x12\x8d\xfe\x65\xf7\x13\xaa\x1b\x59\x47\x16\x6f\x70\x25\xb9\xee\x7d\x77\xc1\xdb\x56\xc0\xee\x57\xbe\x71\x21\x48\xff\xb8\x95\x6b\x76\x7c\x47\xf2\x44\xa2\x35\x69\x5c\xb8\x58\x87\x9f\x50\xcf\xc5\x51\x79\x1a\x23\x93\xbf\xf7\xd8\xf0\x78\x2e\xc0\x57\x3c\x9e\x36\x4f\x5a\xd4\x0e\xb0\x6d\x29\xc5\xce\xde\x96\xe0\x2a\x0c\xfc\xc4\x6b\xb9\xee\x74\x2a\x80\x22\xa1\x47\xa5\xe7\x62\x47\x8f\xb6\x81\xce\x14\x70\x26\x7b\x75\x24\x1c\xa7\xb6\xa8\x3a\xbf\x11\x8f\x55\xb0\x25\x19\xe3\x99\x33\xe5\x64\x96\x5d\x4e\xa4\x9b\xb3\x2f\xef\x3b\x5f\x26\xfa\xae\xe8\xe0\x1f\x78\x44\xf4\x10\x96\xe2\x06\x24\xf0\x86\x7d\x1d\xc3\xe4\x4b\xac\x70\x3d\x76\xf9\x97\xbe\xd7\x91\x0e\xe8\x0e\x62\x75\x5c\x4b\x8f\x37\x33\x77\x3d\xa3\x41\x82\x15\x89\x8a\xe7\x21\x1f\x3a\xa2\xde\x05\x23\x66\xb5\x4c\xb0\xd5\xea\xd9\x3c\xf2\xa0\x76\xa7\x11\x1b\xe7\x2d\x14\x8f\x9a\x66\xed\x6c\x49\x73\x04\x7e\x32\x53\x60\x29\xdc\x5d\xfc\xec\xc6\x9e\x0d\x82\x98\xba\x94\x36\xa9\xd5\x82\xd3\xcf\x7d\xee\xb4\x0e\x11\x8b\x93\x5e\xa9\x08\xf0\x81\x5b\x5a\x08\x1b\x81\xe5\x4b\x8c\x94\x71\x76\x8d\x46\xc6\xb5\xa2\x1d\x50\x4d\x6c\xae\x3f\xf6\x46\x52\x33\x06\x9d\x41\xab\x98\x64\x27\xb4\x03\x2c\xfa\xf9\x42\xb8\x6d\xbf\x3a\x16\x6e\x50\x71\x90\x29\x85\xd3\x73\x77\x9f\x19\x01\x32\x26\x9f\x21\xee\x41\x15\x3d\xe3\xd6\xfb\xd2\x74\x62\x13\xf9\x55\x6a\x71\x61\x5e\xbd\xa1\xf1\xdf\x5d\xe2\xfe\x98\x3a\x35\x5f\x08\x6f\x3a\x00\xd4\x35\xb9\xe3\x75\xbe\x10\x2e\x7b\x60\x30\xe0\xb5\xf0\x32\x76\xff\xdc\x11\xa9\x56\xbc\xc2\x96\xdc\x71\x2c\x09\x0e\x29\xc1\xee\x4c\x7d\xac\xba\x0b\x51\xb1\x14\x58\x16\x8a\x25\x32\x1e\xd7\x6e\x6c\x54\xe2\x2f\x54\x74\x3e\x82\x51\xc9\x06\xb6\x88\x95\x98\x35\x0d\xd6\x6f\xde\xdb\x02\xc2\x12\x29\xba\xdc\x5a\x60\xb8\x22\xec\xf8\xa3\xc7\x7e\xa7\x5d\x13\xbc\x88\x6a\x6f\x64\xc1\xf8\xd4\x67\x4c\x9a\x3f\x5a\x6b\x0b\xb5\x9c\xcf\x9f\xef\x1f\x9f\x6a\xd0\x36\xaa\xd8\xb2\x09\x17\x23\xd5\x5f\xef\x47\xde\x00\x96\xd4\xc8\x76\x7d\x21\x3f\x87\x0f\x00\x9c\x70\x94\x4e\x31\x1e\xf0\x8c\x23\x9a\x2f\x84\xcf\xcd\x41\xf8\xfd\xff\xc2\xce\x84\xce\xd0\x43\x83\xf8\x69\xed\x7d\x4a\x41\xa1\xb5\x5d\x65\xfc\x74\xbd\x36\x59\xa3\x0d\x54\x42\xcd\x98\xba\x9a\xbd\x6a\x97\x52\xcd\xf0\xab\xd8\x89\xf2\x34\x86\x79\x81\x58\xe8\xcb\xf4\x6e\x6e\xd3\x62\x35\x3f\x5b\xe1\xb9\x2b\x93\x35\xf1\x83\xde\x78\xe9\x37\xac\x14\x55\xd1\x62\x6c\x95\x8a\x28\xb0\xc1\xe2\xbf\xa9\x31\x08\x27\x27\xd4\x92\xab\xf6\x6b\x83\xff\xea\xd5\x75\x4b\x18\xb1\x1a\x13\xb6\x8b\x34\x71\xe6\x94\x59\xf9\x42\x38\xe8\xb1\xe4\x9b\xb2\x09\x2d\xd0\xb9\xec\x05\xc2\xed\x34\xbf\x10\x39\xb5\xd6\x7f\xfd\xea\xbe\x16\xee\xaf\x74\xee\x08\x77\x4e\x17\xb7\xe6\x6a\x0b\x45\x2b\xc1\xf2\x85\xd0\x3e\x92\x3a\x58\x98\xd5\x25\x09\xce\x98\x33\x6b\x68\x7c\x1f\x22\x56\xb2\x44\x53\xf5\xa5\x81\x09\x6e\xbf\xc2\x35\x50\xe2\x18\xbf\xf1\x41\x91\x7b\x5e\x8f\x99\xb0\x3f\xc8\x4c\x15\x9d\xaf\xfc\x4d\xd4\x69\xdd\x56\xdb\x5e\x4c\xf7\xd8\x4b\x54\xac\xfc\xee\xed\xba\x04\x8b\xcc\x92\x45\x02\x74\xd9\x53\x3a\x0c\xd1\x21\x31\x36\xe0\x8d\x87\xc7\x80\x40\x25\x87\x57\x5a\x6b\xbf\xeb\x4d\xdd\x5e\x57\xa0\x8d\x63\x4b\x9a\xf0\x6f\x67\x35\x25\xb7\xc0\xa7\x0e\xb5\x9b\x49\x95\x7d\x67\x4e\x84\x13\x44\x4a\x3c\xbf\xff\x96\xf4\x30\x09\x3c\x89\xed\x0b\xaf\xd9\x7f\x45\xcb\x35\xdd\x1f\x70\x6a\x17\x03\xba\xfa\x95\x8a\xb2\x99\xce\xbc\xa6\x70\x6e\x5c\x0d\x39\xbc\x7c\x60\xfa\xa8\x50\x07\x4b\xb7\xc4\xdc\xa8\x79\xd2\x5e\x19\x4e\xc3\x34\x4b\x07\x54\xc1\x4e\x09\x89\xb7\x74\xf9\x61\xcd\x9d\x14\x97\x62\xa6\x44\x6e\x98\xbe\x41\xa9\x69\xc6\xe4\x90\x25\x00\x12\xcd\xfd\xda\x1c\xd1\xa8\xa9\x8d\xd3\x82\x12\x91\xe0\xe5\x0b\x07\x0e\x6f\xc4\x7d\xaf\x22\x5f\x42\x81\xbd\xba\xf6\x4d\xf1\x02\xbb\x67\x4d\xed\x9c\x11\x3d\xd1\x15\x0f\x89\x3c\xae\x93\x32\x1e\x70\xf7\x1c\x48\xd9\xee\x94\x02\x93\x2b\x81\x17\xfa\x8c\x6b\x1f\x10\xef\x7a\xca\x2c\x3e\x7c\xe1\xb8\xa0\x17\x64\x37\xcb\x67\xc8\xe1\x23\xc6\xf7\x7c\x28\x9b\x61\x61\x59\x58\x67\x37\x94\x81\x85\x83\x85\x8a\x94\x25\xa4\x99\x77\xb6\x8e\xd7\x2a\xd2\x22\xb1\x70\x7f\x8b\x96\xbb\xb3\xaa\xd4\x97\xa1\xfe\x60\x6e\x19\x50\x8e\xf7\xb1\x85\x2b\xd8\x11\x09\xdd\x9d\xd3\xd3\x23\x46\x9b\x38\xc4\xf3\x59\x93\x2f\xa0\xb6\x3d\xff\x3c\x0a\x96\x3a\x89\x24\xe1\x56\x4d\x1a\xc6\x91\x1c\x03\xd9\x15\xbc\x7a\x7f\xba\x37\x54\x45\xc2\xcd\x15\xb3\x04\x08\x31\x69\xe9\x30\xf9\xa1\xac\x82\xf3\x9e\x89\x78\xb9\xb7\xfe\xe1\x8e\x7e\x6a\x38\xa9\x49\xb8\xf9\x80\x48\x8b\x57\x58\xc8\x49\x98\x84\xcb\xe6\xa9\x12\xdd\xa3\x26\x91\x68\x4b\x7e\x9f\x7f\xe5\x24\xf0\x92\x45\x0e\x6c\x08\x1d\x9a\x3a\x12\xf2\x23\x98\x1f\x3b\x27\x09\xfa\xc4\x8c\xed\x62\x11\xab\x18\x31\x61\xc1\x5a\x58\x3b\x5c\x66\x7e\x4e\xba\x2d\xa8\xf1\x76\xf8\x30\x5c\x4e\x4b\x73\x73\x00\x1d\xdd\xa7\x0d\x27\xc1\x54\xfc\xf6\xfc\x64\xd1\x3c\xa8\x15\x3d\xf3\xc1\x76\xc0\x7b\x48\xf3\x2e\xcf\x8a\x6f\x1f\x38\x5e\x94\x50\x88\x1b\xf1\x5a\x2d\x78\x5b\x28\x70\xcc\xaa\xb8\x5a\x4f\x66\x34\x5c\xa8\x4b\x6b\x98\x33\xff\x44\xc6\x3f\x74\x89\x3e\x44\x13\x02\x90\x3c\x25\x7d\x74\x08\x98\x47\x61\x07\x59\x51\x6a\x13\x7e\x41\x43\xdc\x72\x49\xa0\xa6\xc4\xd3\xbb\xa5\xb6\x34\x08\xb4\x21\x87\x03\xd6\x3c\xd0\xf8\xe0\xb2\x73\x32\x19\x7c\x97\xa9\x7f\xc8\xdb\x28\xa6\x09\x86\x5b\x81\x35\x5b\x15\x5b\x09\xcc\xf4\xcf\xc3\x86\x83\xe9\x9c\xcd\xbd\x39\xa3\x87\xad\xd7\xb5\x2b\xd2\xb2\xb8\x27\x48\x92\xf8\x77\x6d\x07\x82\xa7\xb3\xa7\x47\xe5\x93\x41\x16\x03\xa5\x02\x62\x59\x52\x05\xab\x2f\xfb\xeb\xe3\x09\x10\xba\x49\x53\xfa\x9f\xc6\xfe\x27\xe1\x91\xb2\x5d\xca\x44\xac\x36\xfe\x32\x27\x3d\x34\xf6\x30\x96\xdf\xf1\xcc\x9c\x74\xc2\x1a\x38\xfc\x5e\x96\xc3\xec\xe6\xb6\x8b\xf5\x35\xe2\x22\xaa\x62\x8a\x7b\xe5\xcb\xc3\x61\xa2\x17\xa3\xea\x33\xe7\xae\xd2\x3b\x60\x1c\x63\x34\x79\xd2\x84\x09\xfc\x61\xce\x02\xcd\x63\xa7\xc4\x70\x83\xf7\x27\x3e\xba\x57\xb6\x67\x02\x66\x63\xb1\xa9\xff\x67\xa5\x46\x81\x42\x75\x2c\x71\x88\xe1\x1b\xbd\x97\x6a\x05\x84\xef\x13\xa8\xa5\x93\xfb\xe0\xf8\x09\xad\x09\x5d\x22\x63\x9f\xbe\xa5\xe6\x4c\x4e\x5f\xca\x6e\x20\x5b\x65\xc6\xa4\x15\xe2\xa8\x71\x87\x48\xfe\x32\x8f\x67\x86\xa9\xe0\xef\xb2\x58\xc2\x61\x8a\x74\x04\x0b\x1c\x86\xb9\x27\x67\x66\xfe\xea\x61\xa0\x9f\x50\x46\x81\xc5\xf7\xdb\x65\xd2\x8c\xb2\x50\x16\xf3\x88\xec\xe5\x0f\x88\x11\xd9\xf5\x94\x35\x91\x59\xc5\x0a\x91\x12\xfe\xeb\x48\x39\xb0\x2b\xf5\x20\x93\xef\xd7\xf0\xe1\x4d\xe9\xdd\x64\x45\xd5\x57\x94\x67\xcb\xb4\x2d\xf3\xa1\xae\xff\x0b\x70\x2d\x06\x0b\xd7\xbc\xa4\x71\x8b\x48\x2d\xc6\x70\x19\xff\x2b\xbf\xad\x47\x6c\xce\x5d\x0a\x9d\x3b\x40\xdd\x1d\x9b\x4c\xf0\x9e\xd8\x98\xe4\x8a\xa8\x93\x94\x69\xc6\xc3\x20\x97\xef\x8d\xae\x22\xd2\x13\xe5\x0c\xf9\x42\xf8\xbd\x39\x02\x5f\xbc\x02\x39\x81\x69\x12\xd0\x1d\x3a\x38\x47\x23\x91\x45\x37\x7e\xac\xa9\x2a\xee\x83\x0f\xd4\xa1\x60\x0f\xf3\xc5\xbc\x6f\xf0\x46\x90\xcb\x13\xe6\x57\xf9\x5e\x7a\xa5\x3c\x5c\x66\x62\xdc\x93\x44\xd2\xad\xc2\x47\x5e\xee\x07\x91\x2f\xee\x87\xf0\xfd\xb1\x89\xc7\x86\x27\x7d\xc1\xa2\x4f\x3a\xf7\xf5\x51\xa0\x56\x60\xb8\x57\x00\xc4\x55\x1a\x37\xe8\x85\x94\x09\x77\x5d\x58\xa3\x86\x9f\xd8\xae\x61\xce\x30\x77\x29\x88\xbd\xf0\x6f\x68\x01\xf7\x3a\xbc\x93\x22\xa7\x98\xb3\x1e\x4a\x99\xbc\xfb\x4c\xd8\xaa\x2f\x5f\x34\x46\x15\xc5\x38\x3a\x54\xb8\x45\xf3\x78\xa6\x30\xa8\xe4\xa9\xee\x02\x01\x26\x69\xa9\x3b\xb6\x67\x86\xca\x1d\x5c\xb6\x02\x1c\x5f\x53\x63\x36\x9d\x27\x6b\x3b\xc4\x6b\xe4\xb3\x50\x12\x3f\x4a\x50\xea\x0b\xd3\x87\xc4\xaf\xc6\xb0\xa8\x13\xee\x48\xd5\x8e\x6d\x19\x32\x65\x1b\x1a\x24\x98\x61\x4f\x4a\xf2\x8a\xc1\xce\x87\xdf\xbe\xa4\x25\x01\x6f\x20\x2b\x01\xaf\xfc\xfb\x61\xc0\x7a\x40\x0e\x7f\x9a\xbe\xdc\xa7\x80\xc4\xa9\x27\xb5\x2d\x8c\xa3\x6d\xc0\xb9\x3a\xc0\x9e\x67\x07\x42\x65\xa6\x7c\x95\x38\x49\x8c\xb8\xae\x25\x58\x76\xb9\x61\xcb\xd3\x8b\xd4\xa4\xac\xc6\xbd\x3c\xf9\x75\x3e\xcb\x95\xf8\x31\x46\x39\xbe\x87\x6b\xd5\x9c\x12\x55\x87\x83\xa3\xa3\xf8\xf3\xfb\xb4\xfd\x14\xb0\x4a\x7c\x0c\xb3\x8f\x6f\x89\x8d\xac\xac\x44\x2d\x68\xf5\x46\x75\xf5\xcd\x98\x3c\xb3\x4b\xaa\x9e\x4c\x3d\x94\xd4\xc5\x65\x0a\x5c\x1d\x33\xdf\xea\xd5\x20\x26\x28\xb1\xe7\xfc\xd1\x7a\x0d\x86\x8b\x55\x74\xbc\xb4\x03\x1a\xf9\x33\xc4\xc5\x5e\x3f\x33\x3e\xbe\xb6\x04\x93\x51\x46\xbf\x2f\x9d\x7f\x99\xb6\x36\x25\x9b\x3a\x25\xe8\x79\xbf\x6e\x62\xb2\xba\x5e\xab\x65\x7c\x6e\xec\xc0\x51\x20\xfd\x94\x4b\x0b\x7b\x3d\xe3\xc7\x8b\xfb\x6d\x01\xb3\x3d\x9f\x09\xce\x5f\xfc\x6f\x7f\x9f\x9c\xbe\xcd\xa8\xeb\x52\x07\x0c\x5b\x32\xb7\xb6\x89\xbd\xba\x12\x43\xe8\x5c\x65\xbb\x3e\xf4\x2d\x07\xb1\x83\x46\xf6\xe6\x37\xd3\xf1\xc7\xa1\xc2\xf8\x53\x22\x21\x57\x6b\xe0\x36\x0f\xd9\x02\x5b\x9b\x79\x81\x41\xf2\x98\x83\xb9\x94\x49\xf6\xdf\xf6\x8e\xd1\xa3\x90\x83\x1d\x4d\xd2\xef\xe2\x77\xd5\x3d\x44\xa3\xd7\xcb\xb7\xcb\xd3\x3d\x0a\x1e\xc1\x49\x33\x16\x2e\x06\x29\x06\xd5\xda\x07\xb5\xf6\x46\x99\x21\x22\xd1\x0e\xb9\xd5\x1d\xa0\xbb\x43\x99\x4f\x8b\xd8\xe2\xea\xae\x06\x1b\xab\xfb\x41\x11\xec\xf8\x24\xf6\x39\xc8\x6e\xd1\xcc\xce\xcd\x28\x19\xb1\x2c\x60\x76\x9e\x63\xef\x6a\xe3\xfb\x72\x99\xb2\x12\x17\x50\xe4\x85\xe5\xbb\x6f\xb6\xdc\x51\x26\x66\x0e\x16\x56\xdb\xe1\x77\x47\xa7\xf7\x4d\x94\x71\x72\xfd\x46\x45\xfd\xc9\x55\x3b\x45\xe3\x70\x41\x05\x37\x61\x54\xfb\xf6\xda\xf4\x0a\x20\x47\xf6\xcf\x8c\x9d\x0f\x6a\x92\xbc\xd8\xe2\xf7\x9c\x70\x94\x4e\xdf\x62\x7f\x7f\x1e\xe0\x18\x9c\x40\xf2\xc7\xb3\x5f\x03\xee\x6b\x45\xa8\x9a\x9b\xf9\x4a\x5b\x4c\x43\xae\x73\xf8\x4a\x78\xcf\x5b\xd0\x6b\xd8\xad\x89\xcb\x77\xda\x1d\x40\x32\x27\x60\xd1\xcd\x77\xe0\xc4\x24\xed\xcb\x3a\x35\x89\xd4\xeb\x17\xf8\xb8\x3d\x37\x44\x6e\x5a\x64\x2d\x08\x4a\x84\xaf\x59\x71\x2b\x30\x4e\x35\xa3\x22\x99\x24\xa4\x89\x3b\x36\x0e\x55\x5d\x82\x98\x94\x9b\x59\x34\xf6\xa2\x34\x4b\x9a\x35\xf3\x0d\xe1\x32\x99\x5b\xfa\x08\xa8\xda\x78\x19\xc2\x43\xdc\xf4\xed\x8a\x3f\xc4\x39\x70\xe1\x35\x1a\xad\x55\x32\x3a\x92\x60\x94\xf9\xca\x4e\x15\x6c\x6c\x93\x1b\x8b\x71\xb6\xab\x06\x49\xc6\x96\x88\x50\x62\x7c\x37\x58\x9e\xe9\x55\x5e\x1d\xfb\xc8\x01\x5a\x39\x7d\xd9\x93\x67\x81\x98\x3e\x46\x5c\x49\x37\xfa\xc4\x2d\xeb\xb4\x98\x48\xa3\x3c\x5c\x34\x3f\xc3\x3f\x1f\x11\x21\xfb\x26\x9b\xf8\x40\xbe\xfc\xeb\x67\x20\x16\xca\x92\x97\xd6\xc2\x37\xc0\xf8\x0f\x08\x77\xef\x7a\x49\xcb\xb4\x09\xc3\x31\xea\x96\xb7\x06\x17\xaf\x6e\x07\x2b\x6e\x03\xe5\x8d\xcc\x8b\x6f\xab\x65\x9f\xda\xd5\x35\x3b\xfa\x3b\xf3\xf7\x01\x9a\x7d\x33\x2a\x1a\x78\x5b\xea\x75\x10\x78\xaa\xa8\x14\xbd\xf7\x57\x97\x00\x4c\x22\xc3\x0e\x7f\xc1\xd1\x47\xd8\x1a\xcd\x17\xaf\x33\xab\xc8\xa9\xc4\x9e\x2d\x99\x66\x4e\xfa\x60\x22\x9b\x58\x04\xb1\x7c\x21\xfc\xf7\x16\x05\x04\x1b\x39\xa5\x78\x10\xf6\xd0\x38\x2d\x27\xa7\x36\xa6\x8e\x88\xc4\xe1\xb1\x33\xe2\xb6\x94\x4d\x25\x51\xaf\x5c\x74\xb3\x3e\x0a\x36\xa3\xff\x97\x33\x2e\x9f\x7d\x58\x01\xa2\xa3\x47\x70\x70\xb4\x41\x88\x29\x88\x17\x99\xd7\x5e\x96\x36\x6d\xc4\xb2\xf8\x1c\x33\xbc\x60\x9e\x16\xab\x03\xcb\x2a\x22\x2e\xf2\xc3\x0b\xe7\x4f\x0d\x50\x8b\x5f\x8d\x6a\x0d\xd9\x32\x18\xf2\xa2\x78\x32\xae\xfb\x54\xa4\xb4\xc6\x73\x8e\xa9\xc7\x86\xa6\x13\x9d\xe8\x4f\x3c\x20\x8d\x6b\x17\x7e\xec\xba\xe5\x85\x9b\xe2\x23\x62\xec\x49\x5f\x1a\x16\x6d\x48\x8a\xc5\xbe\x21\xda\x65\x18\x14\x6d\xe2\x27\xd9\x54\xae\x6d\x72\xba\x5b\x51\xc6\x25\x2e\x6f\xd6\x2a\x1c\x97\x7d\x56\x2f\x78\x6a\x02\x92\x23\xc0\x94\x1f\xee\x04\x6e\x10\xd4\x16\x68\x19\x41\xfc\xcf\x5d\x54\x82\xca\xad\x15\xc9\xf2\x36\x1e\x3f\x70\x9e\xdc\x27\x41\x94\x31\x1c\x18\x93\x6e\x75\x11\x97\xf4\xa3\x4e\x19\xae\x38\x7e\x11\x1c\x3a\xa2\x22\xf1\xaa\x71\x73\xe3\x6b\x7b\x93\x51\x55\xc0\x61\xb2\xaf\x00\x44\x90\x47\xf9\x71\xe3\xc1\x67\xc1\x5b\xc3\x21\xf1\x22\x6f\x0a\xe2\x60\xe6\x2f\x87\x93\x0f\x70\x44\xe6\xf7\xa7\xb2\x7a\xf6\x22\x23\x3e\xe2\x7b\xe9\x6f\xa3\x34\x45\x6f\x44\x9c\xd8\x37\xee\xd3\x1a\xe3\xa6\x81\x2d\x01\x44\x8e\x8b\x90\x47\xef\xeb\x37\x7a\x24\x1c\x82\x1b\x76\x03\x20\x7e\x31\x28\xa2\x1a\x82\x03\x81\x70\x18\x50\x14\x21\x5c\x8d\x8e\x27\xf6\xaf\xbe\xae\xfe\x7b\x25\xb0\x62\xd1\x75\xe3\xf7\xa7\x75\x40\xb9\x27\x48\xf1\xe2\x71\xff\xf7\x69\x55\x60\x9b\x1c\x1f\xd4\x97\xbd\xf6\x65\x2d\x9b\xa5\x93\x7a\x7a\x78\x25\xb7\xe0\xb0\x74\xbe\xa8\x26\x72\xa7\x9f\xd9\x0a\x50\x08\xac\x84\xc5\xe3\x64\xd6\x0e\xd3\x88\xb1\x16\xf2\xaa\x09\x14\x28\x77\xe7\xa3\x9a\xd7\x32\x0b\xfc\x6a\x0c\x8f\xdb\x3d\x4f\x4d\xb8\x50\x85\xe1\x7e\x15\x9a\x32\x0b\x42\x35\x5f\x99\x99\xef\xe6\x32\xa7\x92\x44\xc2\xcd\x3a\xf2\x81\x4f\x2c\xe9\x00\x71\x49\x57\xd2\x04\xc7\x5c\x62\x3c\xb5\xa7\xee\x3b\xaa\xb6\x43\x14\x44\xe4\x0e\xcd\x7c\x40\x63\xef\x3a\xb4\x8e\x2d\xbf\x29\x33\xfb\x47\x9c\x94\x9c\x09\xb6\xb0\xea\x02\x2e\x7f\xf5\x42\x79\xcc\x6d\x6c\xc9\x66\xe2\x66\x4d\x88\xc3\x44\x8c\x5a\x4d\x27\xbe\xee\xb2\x5b\x8f\xaa\x94\xa6\x12\xa5\x2c\xc9\xd4\x66\xc2\xc0\xd8\xfc\xd7\x2e\x0a\xf2\x83\xb1\xef\x11\x0d\x40\x1e\xc4\xa0\x93\xd3\x6f\x83\xe8\x07\x27\x9a\x40\x03\x9e\xd8\xdc\xfd\x46\x1a\xeb\x85\xdf\x7e\x41\x31\x05\x4b\xa4\x65\x96\x98\xf9\xd5\x89\x76\x25\xc8\xaf\x99\xac\xbd\x3d\x02\x44\x0d\xa6\xbc\x85\x8c\x6f\x0f\x3e\x3f\xf9\xd0\xc9\xf9\xc2\xbc\x74\xa6\x48\x1c\x2f\x60\x1c\x6a\xaa\x74\xa9\xb3\xaf\x6d\x51\x08\x09\x0b\xda\x42\x9e\xdf\x9b\x54\xd4\x65\x04\xd0\x00\x99\xcf\x0d\x11\x99\xfb\x75\x9e\x07\x00\x74\xd9\x7b\x0e\x5f\x08\xaa\x41\x5b\xa8\xfe\x8f\x4e\x0b\xa6\x11\x81\xe1\xc9\x14\x1e\x6e\xd1\x5a\x95\x39\x57\x38\xf7\x45\xb1\x9d\x56\x50\xe6\xa3\x12\x6d\x24\xb3\xae\x97\xef\x48\x83\xf4\x91\x8f\x4c\xe4\x58\x24\x2d\xcb\x64\xfc\x7a\x33\xa8\x55\x01\x0c\x66\x9e\x82\x8a\x55\x28\x2d\x41\x94\x4e\xf6\x17\x5b\xa1\x78\xb6\xe9\x23\x5f\x5c\x44\x97\xac\x4f\x0f\x39\x3a\x27\xdd\x7a\x6b\xf4\x61\xf3\x2c\xc0\xff\xc3\xbd\xd5\x52\xe0\x20\x46\x4b\x0e\x6a\xa2\x7c\x21\xfc\xd7\x67\x2e\x06\x57\xaf\xed\xa6\x39\x57\x53\x9e\xbe\x48\x8f\x7e\xd8\x93\xca\x14\x1f\x5c\x32\x46\xbb\xa5\x98\x94\xd8\x8b\x0d\x48\x0a\xe1\x6f\x56\x6b\x32\xbd\x51\xb9\x20\x21\x00\xab\x9e\xd1\xe5\x82\x03\x16\xbd\x00\x59\xb7\x0e\x39\x90\xde\xbf\xc5\x40\x72\xcb\xd6\x3c\xa2\xc3\x1d\x6c\xd7\x12\x5e\xe4\xfc\xea\x9d\xd9\xab\x13\x1a\x65\x59\x25\x15\x24\x32\xef\x87\xca\x20\x8c\x26\x2b\x36\xe2\xa8\xe8\xaf\xac\x41\x0c\x9b\x55\x87\x36\xe3\x8e\xe5\x5d\x0f\x28\x8c\x5c\xf7\x94\xfc\x94\xa9\xb3\x5a\xaa\xb8\x6b\xac\xb6\xd6\x46\x4f\xbe\x10\xb6\xcd\x4f\xb6\xab\x8b\x61\x6d\x7a\xe2\x04\xf0\xaf\x8c\x5e\xaa\x94\x73\xbc\xe7\xe6\xf3\xe2\x5f\x88\x72\x28\xe3\x7a\x81\x5e\xe3\x50\x08\x46\x9d\x44\x3a\xb7\xcf\xf8\x9f\x43\x80\x29\x86\x59\xf4\x09\x9e\x50\xd1\x79\x32\x04\x52\x5f\xd8\x8f\xed\x93\x07\xbd\x2e\x01\x2c\xb3\xb9\x29\x54\xe6\x56\xdd\x2a\x0c\xd5\x29\x93\xb3\xff\xf7\xe6\x6a\x9e\x20\xb6\x50\xb7\xcf\x0d\xbf\x15\x02\xcf\xa2\xa4\x36\x7e\x9e\x5b\xde\xd2\xad\x84\xb9\xdb\xbb\x24\x3e\x67\xd7\x3e\x22\x92\xfa\x6b\xaf\x5b\xb4\x60\x65\xdc\x29\xff\xf2\x71\xad\xc9\xe8\x5b\xc8\xf1\xfb\xad\x0a\xb2\xff\x35\x0b\x7a\x88\x20\x9b\x7f\xd5\x4b\x06\x8a\x44\xfa\xa6\xeb\x5a\xac\xdb\x33\x8f\x01\x23\x2c\xbf\xca\x35\x9e\x6a\x2f\xa7\xbf\xd6\x47\x62\x84\x64\x6e\xaf\x7a\x65\x3d\x01\x93\x33\x86\xcc\x67\xb7\xa6\x35\xd6\xeb\xd8\xc7\x0c\x39\xde\x84\xfe\x78\x3c\xdb\x17\xc3\x7a\x43\x08\x19\x4b\xa0\xdb\xfb\x7b\x2f\x02\xf7\xb6\x00\x1a\x72\xf1\xd0\x42\x9f\xf1\xeb\xb3\x9a\x92\x8d\x85\x2a\x41\x42\xe3\xe9\xcb\xae\xd2\x54\xb3\x3d\x1f\xdb\x31\xee\xed\xcf\x9a\xb3\x0b\x65\x15\xe4\x90\xde\x58\x6a\x35\xeb\x4f\xd5\x01\x15\x96\xa2\x4e\x19\xd7\x3f\x9e\x06\x95\xc5\xd8\x81\x94\xfc\x54\xe6\xcb\x25\x69\xa0\x50\x44\x4e\x89\xc6\x71\xef\xa1\xd7\xf5\x0e\x1d\xb7\x43\x93\xd1\x68\xda\xcb\x49\x2c\x75\x6a\x2d\xda\x61\xb9\x0b\xce\x6f\x81\x47\xb9\x98\x49\x8d\xb2\xef\xbd\x21\x4a\x99\x05\x9e\x05\x44\x12\xc2\x93\x37\x88\xdd\x5b\x12\x2b\x9f\xbb\x56\x48\x4e\xe7\xaf\x2b\xd9\x81\x93\x22\x8a\x86\xff\x16\xb6\x81\x86\x97\xeb\xc6\xc1\x3a\xfb\xce\xa9\xf4\x17\xb6\x91\x67\x52\x0b\x69\x66\x83\xb7\xdf\xaa\xcb\xfc\x7b\x54\x0a\x88\x5c\xfd\xe4\x48\x65\xc9\xd1\xaa\xaf\xbc\x7e\x30\x60\x05\xc9\xf6\x74\x73\xf1\x08\xd0\xc6\xb6\xb9\x73\x8a\x18\xbb\xfe\xc3\xf8\xd1\x5a\xbc\xab\x63\xcf\x27\x15\xe4\xe3\x49\x0d\xbe\xbe\x99\x63\x9a\x56\x28\x2f\x24\x38\x8a\xec\x9e\x50\x7b\x48\xa7\x24\xdc\xb3\xc2\x7f\x1e\x3f\x1c\x06\x36\xc4\x6a\x5c\x3e\xcd\x5d\x77\x09\x94\xc7\x73\xb1\x29\xe2\x74\xbc\xcc\xf7\xdf\xa1\xbc\xb3\xa4\xb5\xbf\x9e\x03\xcd\x1b\x34\x14\x7c\xb2\x17\x70\xb7\x15\xe3\x25\x85\x59\x4c\x37\x0c\xd6\x3e\x0e\x48\x44\xd4\xf3\x45\x05\x74\x72\x8f\x2a\xff\x6e\x0b\x10\x27\xc2\x18\xab\x56\x03\xdd\x46\xcc\x38\x80\x32\x77\xc5\xde\x36\xf0\x1f\x51\xbd\x19\xef\xae\x7f\x98\x2c\x3a\x11\x0d\x64\xd5\x84\xe0\xd7\xe7\x6f\xd6\x30\xc5\xc8\x0a\x94\x6e\xb6\xf1\x31\x41\x98\xcc\x2f\xf0\x7c\x46\x5b\x24\xa9\xb3\x2f\x74\x26\xad\xda\x6e\xae\xf0\xf8\xf4\xe2\xf6\xf4\xb0\xcb\x26\x49\x45\x72\xbf\xb8\x8f\x97\x99\x0b\x19\x29\xa9\x0a\x38\xec\x3b\x3f\x7d\x20\x88\xe7\x05\x38\x19\xe3\x0f\xde\x0b\xd2\x47\x2e\x9c\x2d\xd0\x74\x7f\x7e\x09\xce\xae\x66\xcf\xc8\x17\xc2\xe9\x2b\xe0\x3c\x1a\x47\x01\x5e\xba\xbe\xdf\x3e\x4e\xd9\x24\x37\xed\x7c\x21\x9c\x3a\x08\x70\xed\x1c\xda\xc8\x17\xc2\x31\xc7\xd2\x5b\xbc\x4e\x2d\x1a\x25\xd5\xf0\x4c\x87\x77\xf8\xa3\xf5\x6b\x21\x30\xa5\xc3\x80\x64\xaa\xf6\xed\xd6\x75\xd2\x08\x23\x52\x3d\xc3\x78\x78\x8b\xea\xfc\xc4\xb2\xaf\xe1\x90\x15\x63\x60\xd1\x11\x73\xd1\xd2\x38\x8c\xdf\x3c\x2f\x97\x8e\x51\x59\x67\xed\x3e\x7f\xb0\x3c\xa8\x44\x32\x14\x8d\x1f\x9c\x05\xa6\xf7\xc8\x93\xf1\x2b\xfb\xf5\x39\x9a\xce\x36\x43\x65\x21\x28\x50\xe8\xcb\xda\x87\x35\xe9\x36\x87\xfa\x31\x12\xa2\x10\xe6\xda\xa5\x3e\x5b\xe0\x09\x9a\xf5\xdc\xdd\xe7\xc7\xf5\x5a\x91\xff\xfe\xb6\x97\x34\xa1\x81\x5e\x14\x3b\x25\xbf\x3f\x4f\x5c\x48\x4b\x90\x8b\x1c\xa1\x37\x1a\x7d\xdf\xc9\x8a\x8e\xe0\x60\x02\x1d\x67\xf6\xa9\x7d\x5f\xab\xa2\x32\xea\xe1\x64\x16\xba\x4d\x3e\x03\x6a\x72\xc7\xf5\x49\x4b\xd5\x6a\xf2\xf9\xeb\x2f\x0f\x69\x5e\x6e\x71\x1e\xd1\x9f\x29\x4f\x6e\x56\xbb\x3a\x32\x09\x8d\x3b\x6c\x55\x6a\x88\x75\xc6\x38\x2e\x70\xcf\x44\x0d\xcf\xc2\x90\x8d\xe2\xa6\xe7\xb6\x74\x71\xcd\x2f\x4e\x46\x4b\x7e\xba\x57\x9b\x9b\xad\x39\x61\xce\x9e\xe9\x57\x65\xc5\x76\x9e\xf4\x94\xf6\x5c\x8b\xf0\x00\x9a\x5b\xd3\xae\xb3\x6a\x99\x97\x60\xdf\xf7\x6f\xd4\x86\x90\x8c\x6a\xf2\xb9\x97\x5f\xa5\x6e\x72\x2b\x28\x11\x33\xa6\x70\xef\x3e\x29\xb2\x89\x34\xf4\x61\x16\x50\xde\x6c\x0a\xee\x29\x7a\x74\x38\x54\x34\x43\x7e\x55\x5c\xbe\xab\x35\x04\xb8\xcd\xb7\x8b\x0c\x9b\xbf\x07\x18\xbc\x69\xb3\xfc\x6a\xbe\x6c\x51\x6e\x23\x95\x1d\x33\x5f\xad\xad\x68\xf8\xf0\xc7\xf1\x07\x01\x41\x6d\xc7\xa4\x36\x1f\xf2\x1d\x3a\xa2\x3c\xf9\x05\x45\xe7\xea\x01\x13\xb5\xfa\x4e\x82\x07\xfb\x49\x78\x8c\xff\x1e\xa9\x73\xca\x50\x2d\xee\x3b\x86\xff\x6f\x49\x3b\x54\xbf\x80\xcd\xf4\x6b\x56\x68\x2a\x45\x16\xc1\x8e\xe4\xe4\x85\x3f\x76\xd5\xd9\x0a\x1c\x47\x5a\xe6\x66\x3f\xb2\x62\x08\xd0\xe8\x12\xf4\xab\xdc\x92\x83\x5a\x77\xdd\xa9\xb0\xc4\xbd\xe9\xcc\xd3\x97\xea\xd5\x65\x29\xcf\x10\xd7\x4b\x14\x1b\x6a\x41\x75\x38\x24\x81\xcb\x00\xd0\x97\x7d\x6c\x65\x5b\x1c\x85\x62\x91\x56\x81\x94\x9d\xf0\xe4\x44\x2d\x20\x0a\xba\x67\xbf\xa6\x54\x85\xfb\x81\x88\xa4\x53\x96\xe3\xce\xe8\x63\xa6\x0c\xeb\x47\x60\x5b\x3c\xd2\xee\xf6\x0b\x41\x77\x9b\x73\x92\x32\x43\x36\xc7\x84\x39\x64\xc5\xaa\x1b\x0f\x2f\x05\x35\x91\x30\x9a\x81\x36\x33\x57\x49\x74\x0b\x71\x70\x31\x61\xc7\xe6\xd6\x3c\x07\x99\xaa\x3e\x66\x16\x35\x6b\x32\x5d\x9a\x35\xb9\x03\x94\xcf\x9e\x4d\x38\xbb\x47\x36\xaa\x7f\xb9\x31\x9e\x75\x79\xd4\x91\xc5\x5c\xee\xf2\x6d\xba\x52\x89\x87\x3c\x3f\x79\xb9\x5f\xe9\x4a\xbf\x2b\x1c\x44\x39\x14\x72\xfa\x7d\x57\x6d\x8b\xc5\x1d\x7b\x03\xb5\x62\x40\xf3\x8b\x8f\xcb\xac\xce\xa1\x36\xb2\x88\x18\xe9\x65\x96\x69\x2e\x94\x0d\x8c\x6b\xb1\x8d\xdb\x73\xa7\x95\x2b\x44\x13\x74\x8d\x1f\x1e\xd6\x0f\x58\x8c\xfb\x5d\xff\x6c\x97\xec\x04\x25\xde\xc0\xc6\x03\xc3\x34\x4e\x33\xb6\x2a\x24\xb0\x21\xc7\xdc\xea\x69\x53\x26\x3c\x10\xd6\x7f\xc3\x4a\x0d\x66\x56\xb2\x09\x93\x5e\x58\xdb\xb6\x26\x15\xdd\x6d\x41\xa2\x2b\x36\xf4\x45\x71\x1f\xdd\xe4\x32\x22\xda\x7f\x3f\x2e\xe9\x5c\x7b\x2e\x63\x62\xbd\x09\xf6\x05\x46\x3c\x3b\x1e\xbc\x4f\x1d\x09\x5f\x86\x89\xcc\xd5\x47\xc7\xeb\xab\xe2\xe0\xa6\x4c\x20\x53\xc9\xd2\x97\x07\x5d\xaa\xa5\xe6\x04\xcb\xf2\x4d\x2e\x21\x19\x27\x67\x73\x24\x4a\x2f\x64\x54\xb9\x7b\x75\xbf\x43\x76\x81\x91\xba\xf8\x65\xa5\x62\x8c\xa0\x1b\xed\x25\x03\x34\x39\x2b\xae\xc2\x13\xdd\x67\x5c\x2f\xef\xfb\x73\xc5\xdc\x75\x01\xe1\x1d\x3a\xf4\xa4\xda\xdd\xae\x85\x38\x79\x27\x19\x19\xec\x1d\x25\x40\xcb\x53\xa6\xe5\x0b\xe1\xb2\x17\x62\x97\x61\xc2\x23\x9f\xba\x64\x7e\xa9\x0d\x3e\xb9\x08\x1f\xa1\x8e\x83\xa2\x35\xe1\xd9\x6b\x8e\x68\xba\x3e\x0d\xe2\xc4\x26\x1f\x5f\x04\x86\x90\x15\x8b\x2b\xfa\x87\xff\xbc\x0d\x0c\x5f\x4c\x3e\xa9\xb8\xa1\x0e\x5b\xab\x54\x9e\xb4\xec\x57\xef\xd2\x27\xe2\x42\x20\x3c\xae\x35\xc7\x1f\x12\x16\x0d\x37\xf9\x41\x89\xe0\x56\x2d\xc8\xbc\xe6\xec\x5f\x27\xb5\x2a\xa3\xf5\xb4\x4b\xcc\x1e\x60\x82\xd3\x40\x4d\x9e\x66\x18\xb7\x4c\xd4\xe7\x76\xcc\xc1\xbe\x9f\x72\x9c\x9b\xb7\x43\xf9\x72\x08\xd3\xfb\x0f\x6d\x68\x87\xe1\x21\x4a\xea\x8a\x16\x16\x2e\x83\x32\xb9\x70\x31\x73\xb1\xcf\x90\xe4\x8b\x2f\x3a\x92\xde\x06\x4e\x60\x17\x31\x13\x24\x38\xe3\xb2\x25\xe2\xfe\xb9\x21\x70\x2a\x82\x6f\xca\xdd\x2f\xff\xba\x98\x53\x39\xa2\x1f\x5f\x55\x68\xb9\x03\xba\xef\xd6\xd1\xc0\x84\x49\x4b\xc8\x9c\xa1\x09\xd9\xcb\x2e\x36\x74\xb0\xee\x5c\x19\x73\x6a\x12\xcb\xdc\x6f\x9e\x6d\x69\xb3\xc4\x12\xa3\x22\xdb\xf8\xec\x3a\xd8\xf0\x97\x62\x30\x02\x1e\x69\x34\xf7\xaa\x6c\x51\x4a\x71\xb6\x24\xe6\x99\x97\x8a\xa0\xab\xe2\xf9\xa8\x68\x09\xe2\xbc\x31\x75\x96\x46\xa2\xc2\x0e\xae\xa3\x38\xd9\xde\xd8\x03\xfa\x63\x2c\x7a\x73\xd1\x89\x0e\xaf\x5a\x34\x1c\xb6\xb1\xa5\x0e\x65\x38\x71\x7a\x42\xbd\xc1\xeb\xf8\xa6\xd3\xec\xfd\xaa\x98\xd1\x64\xe7\xe6\xf2\x61\x72\x06\x4b\x35\x78\x22\xd6\x6a\xf2\xe4\x51\x51\xeb\x72\x51\x0b\x5e\xc6\x97\xef\x4f\x54\x41\xbb\x79\x23\xfa\xa1\xee\xf8\xd6\x47\x56\xde\x22\x65\xbe\xbf\xea\x5a\x72\x55\xa5\x96\x1c\x67\x67\x77\x0e\xe8\x67\xa2\x18\xdd\x26\xfc\xe6\xfe\xd3\xd9\xf6\x14\x46\xad\x8a\xe3\x46\x73\xf6\xfa\x81\x9a\x5a\x1e\x65\x22\x50\x78\x31\x56\xe3\x4f\x07\x5a\x1b\x6a\x12\x47\x20\x32\xb5\x03\xf3\x55\xf7\x17\x95\x4a\x92\x9c\xaa\xf2\xb4\xb6\xc1\x6d\x60\xa5\x6d\x17\x39\xf2\xbe\x5f\xbd\x4e\x93\x34\x8b\x69\x01\x8a\x15\x90\xfd\xec\x1a\xc5\x67\x22\xbc\x25\x52\x78\x42\xc3\x0c\x60\x27\xba\x65\xe1\xf1\xec\xcb\xfc\x6d\xa9\x6e\x0d\xc5\x95\x3e\x45\xb0\xfa\x26\x00\x13\x7a\xd1\x62\x5b\x02\xb3\xf2\xf9\x95\x6a\x4b\x96\x90\x89\x21\x98\x60\xfe\x53\xe9\x67\xb5\x4d\x33\x3a\x04\x0e\x6c\x87\x7e\xfd\xa5\x18\xe7\x64\xdb\xb4\x14\x93\x2e\x5f\x38\x03\x36\x3a\x62\xd4\x22\x0e\x8a\x0f\xce\x25\x5a\x1c\x47\x45\xca\x54\x10\xc8\xfc\xf4\x75\x9d\x5d\x5b\x8c\xa7\x6b\x85\x70\x3a\xe0\xbf\x7b\x2e\xb6\x62\x09\x97\x99\x4f\x48\x99\x86\x75\x26\xf1\x13\x33\xc9\x3b\x0f\x26\x4d\x17\x44\xad\x96\xa6\xcb\xa7\xdb\x92\x0e\x7d\x89\x9f\x35\x25\xdd\x3a\xa0\x6b\x88\xac\xc1\x04\x2f\x2d\xaa\xd3\x6f\xee\x6c\x03\xc5\x7e\x1d\xb3\x78\x6e\x71\x74\xa2\xca\x6a\x4d\x94\x2f\x84\xdf\x5d\x97\x26\x3a\x4e\x17\xc8\xef\xe9\x5b\x75\x97\x4c\x0a\x4a\xf2\x7f\xe9\x14\xed\x9c\x99\xd3\x39\xc0\x28\xf3\xa7\x41\x2a\xd3\xe7\xfd\x09\x22\x7c\xa6\xb3\x37\x6d\x4c\x27\x3a\xa8\x4e\x9d\x12\xfa\x3f\xe0\xd2\x9b\xb7\xa8\x66\x4b\xbe\x48\x03\x27\xce\xb1\x8c\x3b\xad\x11\xf1\xe5\x78\xed\xb5\x29\xd8\xe7\xfc\x2d\x29\x8d\xa7\x5a\x51\x54\x94\xc6\x0f\x76\x68\x0e\x2f\x2c\xca\x18\xe3\x8a\xb2\x6f\x91\x14\x2a\x02\xe4\xdb\xbe\x8c\x3f\x18\xc8\x46\x3a\x5e\x20\x6e\x98\x9d\x7b\x65\x47\xcb\x69\x20\xe8\x74\x7b\x6a\x1c\x94\x5f\x11\x3e\x9a\xfc\xd5\xad\xbf\x0b\x34\x87\xa3\x04\x40\x16\xc6\x9f\x11\x0d\xfe\xbc\x87\xeb\x9c\x4f\x82\x3c\x41\x79\xf9\xaf\x25\xd2\x15\x28\xba\x48\xa3\xc5\xbb\x77\x87\x54\x1c\x5e\xb0\xf2\xda\xc2\xc7\x56\xae\x8a\x0f\xfa\x13\xc7\x74\x32\x32\x17\x45\x4d\xf0\x8b\x63\xc4\xa2\xc4\xdd\xd2\xe3\x3a\xba\x55\x18\xd2\x08\x77\xc3\x3b\xdb\x46\x89\x6f\xc5\x7b\xb6\xc4\x6c\xe1\xaa\x5f\x71\x0a\x58\xfc\x22\xcf\xcf\xbb\xc8\x94\x7a\xe7\xb2\x13\xcd\x90\x53\xe3\x52\x7e\x6f\x76\xe8\x59\x55\x15\xc7\xc8\xc5\x71\xed\xd2\x39\x95\x21\xb3\x56\xa2\x0d\x21\x06\xf0\xa5\xf5\x5a\x91\x43\x9d\x52\x40\x24\x80\xc7\x30\x99\x52\xcd\xab\x13\xde\xe9\x4a\x12\x9c\x63\x6d\xe9\x14\xf0\x23\xb2\xe5\xfd\xf6\xc9\xf4\x27\x4e\x99\x35\xb9\xab\xab\x2b\x06\xe3\x0c\x38\xa3\xb1\x87\x48\x0c\x55\x33\xbe\x73\x87\x12\x0f\x61\x65\xde\x24\x02\x2d\x9c\x3a\x71\x4a\xc4\x8c\xad\x2d\x06\x68\xc6\xf7\x36\x15\x7e\xe0\x2e\x67\x57\x64\x3f\x50\x52\x93\x06\xe2\xfb\xa4\x8a\x4a\xa4\x89\xe0\x76\xcd\x7c\xf9\x3e\xf1\x3a\x5c\x46\xea\x24\x2a\x7e\xf9\xeb\xf8\x97\x41\x62\xc1\x57\x60\x66\x42\x7c\x65\x69\x21\x10\x40\x0b\x98\x88\xdc\x99\x57\x96\x03\xef\x1b\x5e\x91\xa3\x78\x0a\xba\x60\x14\x90\xf8\x41\x4c\x5e\x70\x8f\x6e\x15\xb0\xc8\x1b\x9d\x32\x65\x36\x4f\x62\x5b\x12\x0c\x3a\x5f\x43\x88\xfb\xa8\xc6\x0f\xd2\xc7\xdc\x51\x60\x37\x7b\x2d\x53\x5a\x63\x4b\x97\x60\xee\x2c\x88\xd5\xbb\xe0\xf7\x2d\x0f\x00\xc6\x2a\x34\x25\x3c\x6b\x2c\x3f\xd4\x32\x9c\xa2\xd2\x86\x37\xbb\x5f\xf9\x53\xd4\x09\xfc\xa5\xdb\xb6\xaa\x6d\xc9\x69\x7d\x52\x9b\x33\x7c\xf0\x7c\x38\x8a\x73\x4c\x2c\x24\xbe\x67\x3f\xad\xd0\xfc\x3e\xa8\x7b\x9e\x3c\x22\xca\xd8\x65\xe6\xb5\x28\xf5\x07\x56\xf4\x42\xa2\x61\xf4\x21\xa1\x73\xa6\x1f\x51\x5d\x91\xcc\x35\x4f\x68\x03\x32\xea\xe3\x58\x15\xbe\xb1\x56\xdc\xcb\x35\x52\x72\x90\xeb\xf2\x41\xec\xa7\x87\x48\xa4\x8f\x45\xeb\xa8\x46\x92\x38\x93\xef\xd4\x31\x6b\x56\x74\x69\xf3\xfd\x2b\xeb\xcc\xef\x9f\x48\x07\xb8\xa0\xb7\x88\x6b\x5c\x33\x58\x74\xee\xa3\x60\xbc\x63\x40\x0b\x94\x18\x31\x1b\x01\xb5\xc4\xcc\xbd\x3b\x20\x35\x27\xe1\x27\x66\xef\xbc\xe3\x02\xd5\x08\xb6\xa3\x43\x73\xfb\xe6\x11\x20\x51\xe5\xe4\x7b\x51\xe5\xdc\x73\x77\xfa\xc0\x4f\x9b\xc9\xcf\x9a\x38\xbc\x9f\xdd\xa9\xdb\x33\x2a\xa8\x98\xb8\xc7\x8c\x43\xa7\x15\x61\xcd\x6a\x51\xc9\xc8\x75\x5f\x05\xf5\xc1\x1d\x2a\xb1\xdf\x6b\x06\xc8\x7a\x94\xd1\x40\xcc\x65\xe6\x3d\x07\x9b\x08\xfc\x9c\x0a\xa5\xdf\x27\x8a\x1a\xc7\x85\x58\x16\x7f\x49\x49\xd0\xcc\x7e\xf8\xd5\x4b\x5a\xd6\xb4\x41\xbc\x44\xd0\xf3\x11\x5d\x0d\xd1\xb3\x90\x53\x12\xde\xbc\xfc\x7d\x5d\x74\x1c\x30\x27\x4a\x34\x81\x63\x64\x36\x2c\x54\x95\x87\x25\xed\x81\x0d\x73\x55\x7f\x46\x21\x36\x84\x75\xfe\x68\x37\x00\x3c\x32\x22\x66\x22\x7c\x73\x7c\xe0\x71\xd5\x28\x76\x09\xc7\x93\x65\x1e\x7b\x51\xbc\x0d\x8b\x0b\x92\xf1\x5e\xec\x1f\xeb\x1f\x94\x09\x39\xc7\x1f\x3e\x07\x06\x09\xc4\xac\xda\x54\x80\x14\xbe\x3f\x2c\xad\x9d\x52\xb1\xb8\x6b\x5a\x3c\xb2\x52\xcf\xd3\x2e\x0c\xaa\xf3\x8b\x24\xcf\x97\x98\x79\x8b\x97\x9a\xfc\xeb\x3f\x70\x54\xd7\x6b\xe2\x70\x6a\x9f\x20\x4b\xe6\x46\x53\x42\xb1\xfd\x13\x44\x52\xbe\x10\x3e\xb5\x2b\x7d\x5c\xa6\xcc\x9e\x3d\x5d\x0c\x3e\xfa\xb2\xdb\xf7\x43\x15\x48\x8c\x4b\x52\x05\x72\xaa\xa3\x61\x34\x44\x15\x2e\x35\xd4\xb6\x3f\xa4\xae\xc8\x2a\x65\x25\xd1\xd1\x0b\x3a\xc0\x30\x4f\x08\xd1\x44\x57\x24\x0f\xcf\xef\x87\xc9\x46\xf7\xa3\x8d\x1e\x0e\x1c\x23\xea\xeb\x69\xd3\xbb\xf2\x85\x70\xc9\xa3\x7a\x62\xea\x98\xd8\x15\xda\x7d\xd9\xe1\x8f\xab\xae\xc2\x8c\x29\x9d\x5c\x46\x31\xfb\xa0\x2b\x4d\x01\xb1\x63\x56\x6d\xc4\x78\x50\x7c\x47\xf0\x5e\xf2\x0b\xa9\x57\xab\x52\xbb\xd4\x5b\x25\x4d\x0c\x4c\xf5\x76\xaf\x87\xdc\x61\x0e\x4a\xed\x38\x3d\x02\x5e\xde\xc8\x23\xbe\x74\x44\xf9\x9b\xc4\x6f\x2f\x0b\x3c\xae\xf7\xc5\x95\xef\x6e\x1d\x9a\xbe\xac\xf9\xe9\x9b\xf8\x92\x9c\xa8\x26\x72\xd0\x6a\x41\xb7\xbc\x97\x7c\xf1\xe9\x9d\xd3\xa3\x92\xfd\x05\xf5\x07\x69\xb1\x07\x4c\x83\x3b\x07\x80\xee\x89\xd4\xe7\x37\xce\xce\x01\x28\x2f\x6a\xd6\xb0\x98\xb2\x7e\x68\x57\x7a\xd0\x3f\xb5\xab\x4b\xe2\x24\x57\x6c\x00\x7a\x18\x60\x28\x99\xfb\xd2\xad\x7a\x07\xa0\xcc\x14\x02\xa0\x2f\xf3\x94\x2b\x32\x8c\xaa\x30\x81\x36\x7a\x07\xa9\xfe\x1b\x36\x71\x9d\xc0\xc6\xd2\x42\x0d\xc3\xc3\x75\x23\xac\xb8\x94\xf8\xdb\xe0\x16\x2c\x96\x17\x58\xbe\xe4\xb8\xf6\x65\xee\x85\x59\x5c\xf4\x18\xd2\x5f\x3f\x37\xf0\x66\xe5\x76\xd7\x8f\x6b\xdd\xcb\xdb\xd5\xbe\x2b\x33\xda\xcb\x49\x02\xeb\x19\x48\x20\xa3\x05\x14\x89\x5f\x51\x57\x60\xf3\x3c\xcc\xa4\x02\x1b\x7a\x0f\xbc\xd4\xa0\x8a\x98\x60\xde\xec\x5d\x09\x09\x1f\x8e\x14\xc7\x43\xcf\xe9\x56\xe8\xa2\xd2\x57\x02\xe4\xdf\x5c\xa1\x75\xd9\x2c\xea\x54\xe4\x68\xf6\x7d\x60\x5e\xe3\xe2\x12\x07\x78\x1b\xfe\x2d\x49\x7c\xf4\xab\x4d\x30\x28\xb8\x7e\xaf\xfa\x69\x14\xc5\xa2\xe8\x6d\xfd\xf8\x2d\xa9\x10\xc3\x51\x9e\x32\x1c\xdc\x7b\xab\x56\x23\xc9\x86\x80\x5c\xcc\xdf\x3c\x23\x8e\x47\xac\x24\xca\x77\xf4\x07\x76\xaa\x6e\x51\x91\x9f\xcb\xcc\x8d\x2f\xa7\x57\x6a\xea\xe4\xe9\x53\x67\x4e\xee\xee\xea\x12\xa1\x36\x77\xcd\x38\xb1\x29\x6a\x98\xff\xbc\xf1\xec\x40\xcd\x7b\xaf\x8a\x1d\x21\x8e\x5c\xe8\xcb\x7e\x65\x8f\x46\x68\x67\xa8\x8c\xd2\xb3\x90\xf0\xd4\xf3\x97\x80\x38\x13\x4f\x6f\x69\x62\x0b\xb4\xfa\x01\x51\x2d\x22\x4f\xf8\x72\x0a\x63\x2f\x63\xd9\x68\x30\x9f\xc6\xa8\x64\xc9\x31\x82\x71\x76\xbb\xae\x0d\x83\x91\x9f\xf0\xb9\x8f\x3c\xa5\x65\xc9\xd4\xb2\x10\x13\x0d\xcc\xe7\x81\xc7\x86\x5f\x0d\x6c\x57\x56\x8a\xeb\x06\x6b\x63\xbc\x2a\x29\xfb\xd2\x0e\x23\xe3\xaf\x06\x92\xc2\xdc\xa1\x31\x7b\x66\x4e\x1b\x50\xf7\x28\x5b\x89\x40\x49\x49\x4b\x2f\xaa\x81\xe7\x53\x27\x25\x4a\x31\xb8\x2a\xaa\x90\x45\xb1\xcb\xbf\xf1\xe5\xbb\xd4\x58\xa4\x44\xa9\x64\x6a\x1b\xf7\xbe\xdb\xa6\x2c\xdf\x03\xf0\x09\x1f\x0e\xd3\xdf\x9f\x8a\xd1\xbd\xe4\x5b\x4e\x3e\xa5\x89\x13\xd1\x52\x9c\x37\x6f\x08\x41\xc7\x07\x80\xb0\xae\x9e\xab\x8b\x8c\x52\xc1\xe3\x0a\xbf\x35\x04\x42\x24\x2b\x0c\x49\x7d\xf6\xeb\x77\x49\x17\x30\x1a\xc8\x8a\x37\x9c\xf4\x12\xd8\xc7\x16\x62\x5c\x72\xe5\x92\x57\x86\x02\x64\x9f\xcc\x1a\xa6\xf8\xc0\x39\x1c\xd9\x2e\x37\x63\x08\xef\xa9\xca\x8f\xac\x22\x56\x11\x92\x99\xd9\xbf\xae\x4e\x29\xab\x44\xb9\xc8\x81\x5e\xad\xed\x44\x5d\x5c\x0e\x64\x2c\x34\x0e\x8f\x3e\x4f\x1e\x3b\x54\x8b\xc2\xe0\x21\x91\x7c\xe2\x75\xbe\x68\x27\x08\xc4\x4a\xf8\xfd\xa9\x3a\x1f\xa5\x2e\x27\x80\x88\x49\xf4\xa9\xe1\x3c\xaf\x39\x7e\x08\x6e\xac\x62\x1e\x64\x2f\x77\x2f\x04\x68\x18\xe9\x3c\x75\xf3\x70\x19\xa3\x3c\x3f\xef\xa9\x5e\x44\x79\xc7\xc8\x24\xae\xb6\x54\xe4\xe1\x07\x9f\x1c\x0e\xa1\xb8\xf8\x36\x4b\xdc\x43\x3f\xd8\x0d\x45\x68\xeb\x98\x55\x64\x13\x63\xfc\x83\x3a\x7a\xdb\x69\x26\x10\xe2\xec\xc0\x8c\xf8\xda\xab\x90\x83\x6a\xc0\x7e\x29\xfb\xd9\x07\xda\xa1\xd2\xfc\xa2\x55\x93\x78\x96\x91\x2f\x84\xa7\x77\xa8\x40\x14\x65\x2a\xd1\x3a\xf5\x3d\x98\xbe\x6f\x7a\x90\x8b\x9c\x49\x73\x62\x19\xa5\x33\x9a\x7c\x73\xbe\x5b\xe6\xea\x17\x2c\x6c\x79\x73\x8c\xba\x8c\x20\x5f\xc2\x13\x8d\xf7\x5f\x18\xde\xa0\xfd\xc1\x8e\x1f\xd7\x61\xe7\x16\x29\x11\x5f\x18\xfa\xe7\xc6\x75\x01\x50\x95\x8b\x4d\x5f\xb6\x81\xfb\x8c\xe6\xbb\xe9\xbf\x28\xdd\x48\xaa\xc4\x8d\x41\x74\xdf\x79\x4d\x6c\x8c\x95\x81\xd0\x84\xbf\x71\xa9\x92\x25\xf0\x9a\xb6\x5b\xa5\x4e\xab\x33\xee\xac\xb5\x40\x8c\x24\x10\xea\x5d\xe1\x58\x1f\xfc\x66\x95\xf0\xe6\xa5\x8e\x71\x9a\x20\xf4\xf8\xf3\xd7\x57\x91\x43\xec\x14\xce\x72\x98\x05\x18\x00\xa2\xab\x93\xfd\xd1\x73\x1a\x7b\x82\xd6\x31\x57\x06\x93\xdf\xdc\xe8\xac\x6b\xe0\xa7\xc0\xb6\xb1\xa5\x30\xc0\x2b\x27\x6b\x7d\x70\x64\x63\x4f\xe6\x7b\xb9\x0f\xf8\x5a\x54\x64\x0c\x7b\x3e\x5f\xab\xf0\xd3\xcb\xf5\x46\x2a\xad\xc9\x6e\xf7\x87\xf6\xe8\x73\xa4\x98\x46\xd1\x97\x59\xb4\x52\x56\xd7\x42\xa5\x57\x1c\xeb\xb9\xe5\x76\x79\xc5\xf3\x4b\x1c\x39\x98\xdb\x22\xe7\x0b\xe1\x99\xc1\xb1\xb6\x4f\x9d\xf8\x3e\x88\x7d\xdb\xe6\x5e\xae\xd2\xbc\xae\xbc\x8d\xed\x22\xcf\xa4\xd2\x75\xca\x87\xbb\x2f\x86\xbb\xf6\xc6\xe5\x93\xe2\x4f\xc8\x17\xc2\xdc\x53\x2a\xb8\x94\x2d\xca\x48\x09\xa5\xea\x8f\x37\x17\xf7\xe7\xb9\x2f\x72\x96\xba\xab\xba\xc1\x65\xe2\x54\x30\xf3\x89\x90\x23\xca\xfe\x6e\x33\x84\x07\xf1\x1b\x3e\xba\x38\x8e\xcf\xd7\x8c\x3c\xb9\xb4\x17\x07\x14\x6d\x3a\xa1\xc1\xb4\x1b\x88\xd9\x4a\x0f\x66\xcb\x5d\xc9\xf5\x66\xbb\xb2\xed\x7b\xc1\x38\xb5\xbf\xa2\xf2\xb1\xc4\x55\x99\x17\x1c\x80\x8c\xe7\xa0\x52\x15\xdc\xdf\xec\x77\x56\x68\x40\xef\x00\x7b\x25\xc4\x77\x48\x78\xe5\x80\x74\x18\x16\xdc\x55\xdc\x0b\x23\x8f\xb1\xec\xb4\xfa\xe0\x0a\x72\x2a\x52\xa0\x2e\xfb\x76\xef\x08\xf0\x5d\x65\x7a\xca\xfb\xc0\xcb\x97\x02\xb3\xaa\xc0\x73\x89\x29\x96\xfa\xab\x4f\x89\xf3\x7b\xa3\x53\x09\xbc\xaa\xa8\xae\x57\x5c\x17\x2e\x02\x80\xe9\xb8\xef\x9e\x2f\x84\x43\x1f\x53\xff\x19\xad\x6b\x50\x16\x25\x40\x85\xbe\xdc\xf5\x4f\x2a\x7b\x5c\xdc\x10\x45\x58\xb8\xfa\x29\x35\xf1\x28\x53\xea\x17\x91\xd5\x22\x1b\x9e\x99\xf8\x58\x3f\x9a\xb8\x62\xe2\x9e\xbb\xe7\xd1\xa4\x85\xb9\x64\x09\xd8\x0a\xe1\xe4\x25\x90\x78\x47\xa4\x52\xc6\xd5\x77\xa8\xff\x5a\xa1\xac\x24\x56\x66\xe7\x52\xd5\x24\xb6\x5a\x35\xa7\x7f\x32\x51\xc5\xba\xdb\x02\x22\x88\x74\x43\x5f\xd0\x81\xf8\xa8\x8e\x45\x60\x0a\x7f\xb8\x27\xed\x90\x02\x3d\x69\x26\x41\x51\x06\xa3\x34\x46\xed\xc9\x0a\xc3\x80\xc6\x98\x9b\x3c\x15\x58\xd1\x59\x84\xf7\x7d\xdf\x7a\x23\x7d\x80\x03\x27\xba\x2e\x79\x9e\x37\xd4\x05\xab\x61\x63\x26\x14\x07\xc2\x9f\xb4\xe9\xe0\x96\xa0\x92\x97\x81\xe3\xcd\xd5\x22\x85\x74\x19\xf5\xa9\xdf\xe4\x66\x66\xd9\xc2\xca\x61\x30\x41\x75\x02\x2e\x33\xf6\xc6\xae\x34\x0e\x86\x4b\x71\xb6\xd8\xcd\x84\xdf\xd9\xac\xfa\x52\xbd\xd8\x86\x1d\xa0\xcc\x3d\x45\xd5\x09\xe1\x7d\x86\x3f\x6c\xd3\xcb\x15\x5b\x54\x2b\xa2\x57\x90\x7d\x7a\xad\x0a\x00\x13\x52\xa7\xfc\x57\x67\xc4\x83\x17\x6c\x54\x45\x71\x83\xe0\x37\xc3\x34\xa5\x06\xbb\x88\x3c\x4f\xbe\x9d\x49\x0f\xa4\xfb\x9b\xdd\x32\x79\xbf\x6f\x1d\x48\x4e\x70\x89\x06\x45\x7e\x55\x74\xb9\x6d\xf1\x4f\x76\xe6\x6f\x54\x9b\xea\xdc\x93\x17\x69\xce\x62\xdc\x58\x8c\x8b\x4a\x4d\x56\x7c\x65\xa2\x17\x36\xe1\x79\x8f\xa6\x17\x6e\xca\xec\xd9\xdd\x12\xd1\xfd\xd6\xba\x21\x71\xc4\xe7\xcd\x6e\x5e\xfd\x9d\x1e\xa2\x93\x51\x51\x22\x32\x6b\xfc\x6c\xf7\xc5\xa0\x59\x47\x2d\x5a\xc1\x7e\x62\x0d\x99\xf9\xdc\xf6\xf4\xe5\x50\x44\x76\x31\x60\xc4\x01\xe3\xd8\xf0\xd9\x0e\x65\xa5\x1f\x00\x02\x40\x6e\xee\x8b\x6a\xd3\xf1\x9c\xb1\x10\x8e\x7a\x34\x39\x1c\x26\x97\x5f\x4c\x7d\xb1\xaf\x4f\x9d\x9c\x2e\x04\x51\xd1\xc2\xe2\x8b\xc4\x96\x2a\xe9\x8e\xa8\x71\x7f\x9a\x02\x50\xa3\x2e\xb6\x6c\xe4\x68\x20\xa7\x6a\x59\x05\x4e\x8c\x78\x2e\xf8\x0f\xe3\xdb\xc1\x81\x90\x57\xa5\x48\xc4\xaf\xf6\x45\xdb\x86\x05\x4e\x14\x90\x78\xaf\xe2\xd1\x8b\x1a\xaa\x95\x9b\xf7\x69\xfc\x7f\x15\xfa\x32\xa3\x17\x5f\x01\x26\x12\x5c\x72\x81\x78\xfd\x8c\x5a\xcf\x3a\xa0\xef\xcb\xfd\x4a\xa2\xb3\x50\x5f\x9b\x3e\x52\x5c\x05\x4d\x8a\x89\xdf\x33\x1e\x38\x93\x09\x68\x03\x97\xcd\xc9\x5d\x7d\x1c\x38\xd9\x04\xac\x44\xb9\xed\x63\x76\xec\xf1\x76\x30\x92\x53\x6c\xde\x42\x5f\x66\xed\xae\x74\x47\xc9\x8c\x8e\x7a\x3f\x40\x16\x63\xe5\xa2\xf3\xe2\xaa\x89\x17\x18\x43\x4f\x8c\xd0\x4a\xa2\x49\xac\xc8\xe5\xb5\xff\x67\x14\xd0\x99\x4a\x7b\xcc\x1e\x02\x23\x40\xe2\x09\x3f\x32\x71\x9f\xbf\xbb\xbe\x43\xff\xba\x24\xd6\xb4\xc9\x0c\x7a\x4d\x97\x52\x2b\x29\x63\xa0\xed\x93\x2f\x94\x61\xad\x49\xcb\x65\xfe\xee\x0e\x2e\x1a\x0e\x5f\x43\x8d\x08\x5d\x8b\xec\xd5\x7b\x04\x0e\xb0\x4a\xa4\x1f\xe6\xa7\x67\x69\x3c\x87\xa6\x74\x3a\x9f\xbf\x46\xef\x90\x45\xbb\x80\xe3\x21\xc5\x99\x36\x9e\x29\x0d\x89\xf3\x83\x46\xc2\x15\xac\xec\x02\x40\x79\x17\xf3\x06\x48\x6e\xc9\xc0\x74\x02\x6a\x63\xde\xc2\x90\xc7\xec\xe1\x57\x2f\x02\x11\xa4\x07\x00\x83\xc3\x79\x3b\x2f\xd7\x2a\x48\x64\x21\x89\x99\x56\x95\xdb\xd7\xc7\xaa\x6a\x7c\x5a\xbe\x2b\x7a\x8c\xe1\xaf\x0d\xd7\xf7\x2f\xbf\x9f\x1e\x3b\x99\xde\x53\x35\x87\x9a\x35\x59\xe5\x2c\xbc\xaf\x45\x00\xd0\x25\x3e\x96\x62\x22\x8b\x4e\x82\xfb\x9a\xf9\xc4\x14\x06\x67\x27\x1f\x12\x2f\x74\x25\x92\x54\xe1\xe5\x13\x63\xf1\x76\xab\xc4\x95\x32\xd4\x73\x12\x01\xfb\xcb\xaf\x60\xd4\xc7\xc2\x2d\x4f\x1d\xc4\x8f\x66\xd2\x4f\x66\x52\xcf\x8f\x8b\xef\x3b\x37\xe8\xf8\x52\x62\x23\x2b\x4e\x45\x33\x97\x8e\x56\x9b\xca\xa6\xc5\x28\x01\xf1\x64\xdc\xbf\x79\xaa\x78\x0f\x1f\x8f\x5e\x03\x28\x59\xee\x5d\x98\x3a\xf6\x51\x3a\xf9\xb3\xf7\x94\x3b\x22\x8b\x3b\x32\x99\x8d\x9b\xd5\x7c\x9c\xdb\xd5\x7c\x60\x6c\xfa\x5e\xb1\x90\x59\x25\x81\x87\xd2\x8e\xbc\xb9\x8f\x76\xa7\xbf\xce\x6d\x01\x0e\x24\x34\x27\xf3\x9d\xd1\xd2\x1e\x77\xe5\x82\xe5\xd7\xde\x78\xd3\xb5\x85\x98\xe2\xbb\x6c\x71\xab\x94\x68\x94\x40\xc6\x7a\xff\xcd\x41\x2d\x66\x61\x5c\x31\x4b\x0e\xb4\xc3\x5f\x38\x17\xca\x52\x0b\xc5\x6d\xe5\xec\xbe\x47\x45\x63\x60\xca\xac\xa9\x71\xc3\x13\x64\x2c\x5e\x20\x8d\x9e\x8d\x79\xdd\x80\xad\x27\x84\xe9\x9e\x02\x5b\x39\x4a\xbd\xa3\xad\x3c\xb2\x43\x17\x90\xe6\xa4\x8c\xf8\x9c\xf6\xf4\x88\xf7\xdd\xa0\xac\x26\xe4\x23\xc4\xc5\xf9\x15\x96\x8e\x4b\x0e\xae\x4b\xb1\x31\x63\xe5\x5b\x12\x0d\x1c\x58\x42\xbb\xf7\x43\xdb\x87\x01\x9c\x20\x2b\xc9\xab\x63\x23\xe0\xcc\x93\x22\x43\x55\x3e\xe6\x30\x4e\xcd\x01\xc0\x12\xc9\xd8\xe3\x6c\xbd\x43\xaa\xe9\xd8\x8c\x9e\xe6\x46\x60\x79\x3c\x6f\xaa\x4e\x97\x31\x45\x28\x11\x50\xaf\x03\x6b\x75\x61\x3a\xdb\x45\x4e\x53\xee\x37\x63\xc4\x0e\x11\x05\x80\x37\xe1\xeb\x80\x8a\x4c\xb0\xb0\xb1\x50\x9b\x61\xeb\x53\x3a\xd6\x16\x63\x13\xcb\x1d\x13\x05\xf5\xdb\x77\xa5\x17\x16\xaf\x33\x85\xcb\x45\xcc\xb8\x9c\xb4\x4f\x7f\x22\xc6\xa8\x47\xea\x02\x81\x97\xfd\xe4\x6e\x55\xf1\x14\x2d\x64\xd6\x8a\x01\x6b\x19\x12\x66\x26\xee\x4d\xff\x95\x62\xe0\x11\x07\x7b\x5c\xb8\x2a\x4a\xf7\x3f\x31\x4a\x9d\xa3\x06\xb6\x2c\x68\x7b\x74\xe7\x51\x4d\x3e\x8c\x32\x3f\x70\xa4\x28\xee\x27\xc7\xea\xf6\xbe\x40\x4a\xc1\x28\x00\x6b\x11\x54\x24\x92\x6b\x75\xe3\xab\xc9\xe0\xb6\x73\xe6\x94\xe8\x4b\x5c\x70\x8b\xee\xc0\xc7\xb9\x65\x42\x65\x54\x46\x96\xa7\x26\xb6\x41\x61\x17\x95\xe0\x9e\xbf\x49\xbb\xae\x4b\xd8\xf1\x49\x99\xc4\x62\xe9\xa1\xe3\x5e\xa2\xd5\x58\xa6\x4f\xb9\x41\x85\x98\x74\xff\x78\x83\x58\xd4\x55\x5c\x7c\x8a\x6f\xa1\x67\xb4\x41\x99\x5f\x25\x4e\x4c\x16\x37\xce\x7d\xb2\x5d\x8f\x48\x72\x72\x98\xf9\x1f\x90\x6c\xd7\x30\x06\xe9\x46\xce\x14\xb2\x2d\xf9\x8f\x23\xcb\xc2\xcc\xf3\x31\x24\x6d\xe4\x26\x3e\xd7\x0e\x1a\x80\x6e\xe0\x27\xfa\xfb\xd9\xf7\x27\xab\x39\x37\x8f\x4f\x1f\x1f\xa9\xb5\x43\x1c\x27\x3d\x01\x32\xfe\xfe\x68\xac\x16\xc8\x8a\x88\x49\x43\x97\xa3\xda\xc6\x17\xdd\xca\x38\x92\xde\xa8\x19\x52\x10\xdb\x65\x34\xde\x64\xe3\x6f\x1d\xa1\x7f\x63\xc9\x62\xbf\xe3\xc4\xc5\xfa\xe6\x30\xe3\xd6\x61\x78\x3c\x8c\xed\x9b\x68\x83\xaf\x7d\x78\xff\x3c\x70\x64\x29\x63\xa4\xc4\xf1\xdd\xc6\x01\x17\x3a\xdc\xa0\x9a\xe0\xa7\x64\x16\x76\x40\x7c\x93\x65\x21\xd7\x13\x73\xf7\x50\xfa\xc2\x99\x55\xe4\x70\x45\xd7\x3b\x77\xc5\xea\xce\x7c\x80\x2c\x30\x2c\xfb\x0e\x8d\x00\x2f\xb5\x12\x58\xc8\xa7\x42\x26\x62\x6c\x49\x5d\x70\xd8\x26\x42\xb2\xf0\xc6\x8c\xd2\x64\xb6\x29\x35\xab\xd0\x50\x23\xd7\xb3\x26\x8d\xaa\xc3\xac\x1e\xa7\x5e\xc6\xb1\xf1\xe9\xc8\x60\x53\xdf\xab\xd1\x22\xb1\x08\x54\xa4\x39\x6c\xc1\x01\xae\x13\xdd\xdf\xd1\x72\xfe\x61\x70\x4b\xb2\x97\x9f\x21\x69\xb7\x3f\x1e\xa5\x01\x4c\xb9\xaa\x20\x66\x42\x83\x28\xfc\xc9\x2e\x41\xb0\x21\x4e\x09\xbb\x7c\x1a\x68\xe2\xe8\x67\xc4\x41\xcb\xba\x6f\x03\xbe\x08\x72\x84\x03\x8a\x71\xe9\x13\xba\x17\x98\x69\x71\x9e\x8d\xd4\xfa\xbf\xe0\x51\x5d\x78\x01\x99\xd5\x78\x9b\x78\x07\xc0\x47\x7a\xd8\xe2\x5d\xd1\x65\xe1\x25\x80\x97\x52\x6b\xd2\xbc\x4d\x7c\x2f\x28\x12\xaf\x4a\xa2\xd5\x6a\x68\x1b\xd6\xe5\x6c\x2c\x53\xd5\x1b\xd9\xef\xde\xaa\x17\x2f\x33\x66\xcb\xe2\xe5\x5f\x9f\xd0\xc0\x06\xd4\xc2\x92\x50\x9a\xfb\xc4\x92\xd4\xb5\x65\x52\x3b\x41\x77\x67\x3f\xe1\xeb\x72\x89\x6e\x15\xf5\x22\x56\xb2\x62\x2c\x7d\x76\xf7\x68\xb5\xbd\x1a\xc8\xac\x61\x47\xe8\x1d\x7c\x73\xe3\x18\xd0\x25\x6e\x22\x8b\xb4\xa2\x27\xb2\x1f\x3d\x31\x34\x6e\x0b\xac\x88\xf5\x1e\xc2\xb1\x27\xf4\x81\x91\x8b\x4d\x89\x8e\xc9\x0d\x38\x67\x70\x7c\x03\x48\x7c\xba\xf1\x8b\x57\xb4\x94\x02\x37\x88\xe3\xd5\x9a\x29\x97\xd3\xbe\xcc\xcf\xb7\x0e\x49\x76\x40\xa2\x0a\xd2\x0e\xba\xde\x15\x46\x04\x4e\xa1\x2f\xfb\xb3\xd1\x57\x6a\x8f\xe0\x51\x93\x88\xd1\x6b\xab\x79\xeb\x61\x2b\xb9\x5c\xa6\x76\x4f\x8b\x16\xeb\x26\x69\x7f\x17\x38\xea\x22\xe5\xf7\xd0\xef\x27\xaa\xb7\x35\xad\x2b\xda\x66\x81\x40\xf2\xef\x19\x29\xc2\x78\x89\x11\x8e\x2b\xca\x76\x4c\x55\x65\x54\x09\xbb\x96\x30\x1e\xe0\x1f\xf2\xcf\xa3\x21\x61\x97\x23\xd4\x39\x61\x77\xd9\x66\x3d\xcf\x6b\x36\xaa\x98\x49\xdf\x05\xe3\x91\x31\xea\x31\xbb\xf8\x07\xdd\x5d\xd5\x66\x36\xdc\xc8\x47\x12\xf8\x8c\x47\xe7\x25\x52\x93\xe2\xe2\x59\x71\x14\x90\x52\x19\xcf\x57\x33\xd7\x9d\x96\x73\x6e\xe4\x13\x2f\xfa\x9a\xf9\x42\xf8\x91\x39\x31\x2d\xca\x29\x09\xf7\xc5\xec\xbc\xb1\x49\xd9\xed\x14\x5b\xc9\x87\x1f\x7d\x38\xc1\xf7\x05\x5c\xbf\x20\x29\xe5\xe7\x77\x68\xce\x6e\xa8\x61\x0a\xd0\xb2\xba\xa9\xfb\xda\xe4\x6c\x8c\x13\x77\xc2\x77\x35\x6f\xf6\xae\xce\xae\xae\x69\x33\x62\x04\xc8\x7f\x1d\x49\xff\x6b\x0f\x22\x56\x52\x4c\x64\xcf\xb9\x55\x5c\xfa\x2e\x2f\xba\xc4\xc5\xb4\x71\xd1\x30\x30\x9f\x62\x18\x71\xa3\xed\xec\x73\x4e\x9b\xf2\xec\x0f\xa0\xa2\xdd\x5b\xba\x10\x02\xaf\xd1\xe2\xa1\xab\xf1\xfb\xa7\x45\x92\x77\x2d\xa3\x65\xd8\x77\xcd\x9f\xbc\x52\x2b\x99\x04\xc7\x44\xc4\x58\xfd\xe8\x7c\x7f\xa4\xb2\x22\x62\x40\xcd\x26\xfb\xb5\xd7\xc5\x4e\xba\x7e\xe5\x82\x45\xd7\x45\x47\xa6\xfe\xba\xc6\xed\xc8\x63\xbf\x2a\xac\x9f\x3e\xb6\x10\x08\x00\x51\xc7\x17\xae\xf2\x87\xb7\xa5\x5b\x13\x65\x86\x9c\x1e\x8d\xde\x64\x5c\xf9\xa8\xd6\xc2\x65\x38\xa1\xaa\x54\x17\x5d\x92\x86\x53\x71\x6b\x16\x0f\xc7\x22\xa6\xdf\x9b\x0c\xe4\x7c\x09\x8b\xea\xd8\x9a\x00\x21\xde\xb7\x4b\x4d\x3c\xba\x3a\x67\x4f\xe7\x64\xef\x3f\x5e\xa5\xaa\x8d\x09\xb3\xbb\x04\x5a\x71\x95\x8a\x33\xae\x85\xa4\x6d\x86\x0c\x12\xaf\x3d\xa1\x2e\xd8\x1e\xdc\x10\x92\x4f\x3b\xde\x1c\x09\x7a\x48\x9e\x4b\x1d\x8f\x14\x49\x02\x8c\x58\xf2\xb0\xcc\xa3\x2d\x6a\x46\xf7\xf1\xe2\xb9\x97\x6b\xab\x51\xa2\x0e\xf6\x08\x57\xac\x4a\xc4\xad\x3f\x7f\x48\x8e\xb6\x2c\xae\xd3\x67\xb0\x79\x49\x82\xc5\x90\xa9\xc2\xd6\xc7\x86\x89\x63\xb2\x06\x23\x0b\x09\x35\xa1\xf0\x24\x68\xe2\x34\x11\x6f\x03\x9e\xd6\x68\x22\x66\x7e\x56\xd7\x54\xd9\x03\x9b\xfc\x5a\x8c\xb9\xbe\x2d\x20\x9e\x20\x00\x19\xb7\x00\x13\x4b\x93\x61\xe4\x0b\xfb\x87\xec\xe2\x45\x02\xbd\x74\x53\x03\x3b\x69\x51\x84\x85\x7b\xd2\x07\x0a\x97\xcb\x42\x27\x31\x4a\x65\xe5\x25\xdb\x1e\x0e\x95\x87\x1c\x39\x1e\x0f\xf8\xf9\x42\xb8\x71\x0e\x34\xb4\xaa\x13\x4f\x7a\x54\xbf\xf7\x54\x7f\x06\xb6\xb1\xe4\x64\xe1\x64\x7a\x2f\x79\x41\x91\x97\xae\x04\xd8\xdc\x64\xaf\x18\x7d\x81\xba\x15\xa3\xda\x69\xec\x76\xf1\x5d\x57\x23\x0b\x73\xf3\x73\x4e\xb4\x5d\x95\xee\xb4\x54\xa3\x2a\x16\x35\x63\x95\x76\x05\x09\x9e\x57\x85\xbb\x3a\xa1\x0d\x7d\x6d\x24\x50\x1f\x2d\x51\x57\xd6\x56\x9d\xb9\x34\x04\x78\x8a\x68\x45\x5e\x25\xb2\xd7\xfc\xa2\xce\x6b\x5b\x8c\x22\x33\xbf\xd8\xaf\xb1\xcf\x6b\xa8\x89\xbd\x20\x5d\xc4\x66\x3f\xd3\x09\xac\xf3\xb9\xcb\x01\x1f\xa9\xd1\x86\x74\x9c\x59\x21\x67\x33\x66\x15\x31\x21\x49\xed\xf9\xc4\xe4\xdb\xfb\xd2\x8c\x3e\x2f\xa6\xf2\xfa\xc8\x76\xf5\xaa\x6f\xe7\x60\xc4\x04\x80\xc0\x18\xe2\xa7\xf3\x03\x46\x4c\x33\x95\x39\x9d\xd8\xd7\x02\x94\xe7\xc8\x24\x1c\xcb\x4b\x9d\x05\x73\xdd\x06\xb6\xf8\x7f\xbb\x4f\x1a\x3d\x2c\xc7\x0d\xd0\x6d\x30\xb6\x0c\x4b\xe8\x1a\xd7\x2e\xd2\x7b\x8d\x0b\xef\x4f\x64\x20\xa6\xe7\x0b\xe1\xaf\x6f\x55\x98\x6b\xcc\x85\xa2\xfe\x41\x53\xc5\x9d\x39\x79\x4a\xd7\x8c\x7c\x13\xb1\xd8\x0d\xe1\xd2\xe7\x87\x00\x58\x4a\x51\xd8\x8e\x2d\x7d\x2b\x09\x5f\x96\x80\x95\xbd\xab\x95\xa1\x1e\xbf\x06\x62\x26\x8d\xb1\x67\xd3\x78\x40\x46\xa6\x65\x31\x13\x43\x96\x37\xa1\x25\x82\x9f\xe8\x00\x47\x91\x06\xfc\x85\x8e\x5c\x22\xd9\xd2\xd1\xef\x41\x67\x79\xe3\x17\xc7\xb4\x42\x90\x96\x9a\x95\x00\xb1\x92\x74\xe1\xf9\x7d\xa8\x6a\xe7\x1a\xf7\x75\x05\xe7\xef\xe7\x47\x93\xaf\x91\xef\xe6\x71\xf6\x15\xad\x36\xf4\x6a\xc8\xc7\x8c\xb3\x9f\xfa\x32\x73\x07\xa7\x67\x14\xbc\xe5\xe7\xe0\x56\xc7\x86\xec\xbf\x74\x81\x41\x04\x6a\x46\x91\xf0\xb2\x4e\xc9\x69\xe5\xc8\x09\x0e\x4a\x72\x92\x7e\x4c\xb5\xc9\xc1\x00\x2f\x6f\x90\x4c\x2e\xa8\x42\xb0\xae\x63\x38\xc4\x05\xc5\x0c\xf2\x4c\x59\xd3\x13\xf3\x4c\xe4\x94\x90\xc5\x4f\x8c\xb1\xe9\xb9\x16\xf1\x5f\x6c\xc6\x06\x19\xe1\xcf\xf6\x8c\x00\x1f\xe9\x99\x8c\x14\xe5\xb9\xfc\xdb\x7a\x9d\xf9\x2b\x4c\x45\xa4\xde\x60\x5f\x76\xe7\x5d\x9a\xb6\x5b\xa9\x27\xf0\x38\xf4\x55\x00\x48\x7e\xb4\x5c\x29\x1b\x90\x62\x2b\x7b\xe8\xbe\x44\x36\xb9\x8a\xac\x94\x15\xea\xbd\xbb\xc5\xf5\x5d\xe0\x66\xc1\xe1\xd8\x9b\x75\x6f\xbe\x5e\xcc\x85\x85\xd5\x6f\x9c\x37\x37\x69\x73\xd9\x34\x86\x84\x9e\x57\x4e\xd6\x14\x95\xa3\x6a\x79\xc6\xb6\x74\xad\x37\x6d\xba\xc4\xf1\x64\x5f\x9b\x1b\x6b\xe2\x73\xf6\x6a\xf8\xdc\xbb\x9a\x3d\x30\x5a\x17\xfb\xc5\xbe\xfe\x70\xfa\x43\xf2\xf9\x49\x0d\xc1\x11\xcb\xec\x6c\x03\x17\x4b\xa9\x8c\x7c\x6e\xfd\x15\x8e\xb9\x5b\xac\xe5\x82\x52\x6c\x2f\x13\xad\xcb\x5f\xc5\x88\x52\xb1\x90\xf8\x2d\x24\xd1\x95\xd9\xfd\xba\x63\x86\x44\x7c\x8b\xad\xec\x1f\xd4\x98\x57\x26\x76\x64\x4b\x33\x63\xdf\x0d\xc0\x63\x0c\xd5\x49\x89\x08\x37\x83\x1d\x1a\x11\xa8\xb3\xb3\x53\x32\x78\xff\xf9\x6c\xfa\x5f\xa6\x77\xcd\x88\x1b\x02\x86\x9f\xbc\x43\x5a\x8b\xb2\xd9\x8f\x95\xa1\xf3\x64\x5d\x20\xfc\xbe\x2c\x7b\xd5\x29\xb5\xfa\x62\x7a\xe8\x15\x74\x3a\x9d\xd1\xe9\xd1\x0f\xc8\x98\x10\x54\x2a\xc4\x29\x79\x0d\xec\xf2\x59\xfc\xf4\x73\xf4\x59\xbc\x8d\x1c\x22\x01\x5c\xe7\xdf\x05\xc6\xc1\xa6\x49\x85\x6f\xdb\xf7\xdb\x93\x2d\x57\x22\xb8\xe5\x4f\x3d\xe0\x6a\x5b\x5a\x88\x52\x08\x98\x46\xf4\xda\x47\x94\x62\x5b\x45\x8f\x54\x44\x62\x7a\xea\xb1\x09\xad\x43\x2b\xf8\xb1\xea\x78\xfe\xfa\xa4\x76\x0c\x85\x9f\x98\x78\xe0\x93\x25\x4d\x03\x35\x4a\x0a\x38\x2b\x87\xef\x86\xc7\x0e\xa7\x7f\x57\x6a\x45\x09\x19\xd4\xff\xd0\xf4\xf2\x4c\x0b\x05\xa5\x7e\x39\xfc\x99\x5f\xf5\xa8\xf7\x62\xa1\xde\xc0\x22\xbc\x6d\xf8\xb0\xda\x13\x65\x6a\x59\xb4\x21\x3b\xe7\xef\x9c\x6a\x07\x7d\x81\xc0\xf1\x11\x71\x38\x1f\x3e\x5c\x74\xf0\x4a\xed\x81\x4a\xc4\x24\xa8\x7f\xea\x74\xe6\xe9\xf5\x2a\x34\x5c\x19\x67\x61\x9f\xd8\x2a\x02\xe9\xa2\xd8\x32\x45\xdd\xd5\x47\xf6\x00\x1a\x92\x4f\x58\x3c\x68\xb8\x64\x31\x70\x61\xc5\xc2\xd6\xb4\x32\x2f\x95\x4c\x95\x48\x51\x8c\xea\x3e\x7f\x4a\x24\xec\xab\xb0\xcd\x0d\x36\x02\x26\x92\xd5\x8f\x74\xa8\x01\x5f\x19\x31\x46\xa0\x28\x49\xee\x93\xfb\xc5\x12\x43\x81\xd2\x3a\xc0\xf5\x2b\xe5\xec\xf0\xda\xc5\x40\xa4\xce\x2e\xf1\x0e\xc3\xe8\x15\x4a\xab\x4f\x58\xf8\x4e\x11\xe2\x90\xf9\x95\x34\xa8\xb4\xb8\xed\x1a\x5d\x0f\x8f\x86\xf5\x36\xb5\x50\x0b\x64\xe3\x73\x6f\x26\xc9\x29\x0a\xca\x20\x51\xf9\xc4\xe4\x7e\x1b\xac\x80\xd8\x7c\x44\x9a\x22\x94\xb0\xec\x01\x89\xdc\xe9\x67\xa7\x2f\x04\xe0\x05\xa1\xf5\xf9\xb9\x10\x18\xb1\x27\x10\xfb\xf0\x3f\xeb\xc9\xc5\xe9\x20\x3f\xae\xbf\x67\xbe\xa4\xdb\x2a\xf9\xd4\x01\x5e\xa8\xc6\x6f\xd6\x02\x15\x3a\x2e\xec\xa2\xa6\x10\x2b\xb7\xc3\x59\x3a\x8d\xf1\xbb\x39\x6b\xb4\xec\xdc\x31\x21\x8c\x10\xad\xd5\xec\x21\x02\xe6\x5c\xe1\xf2\xcd\x6b\x6e\x15\x60\xf1\x65\x82\xc7\xfa\xa4\x2e\x5e\x21\x81\x69\xfd\x8a\x57\x0c\xdd\x07\x9d\xb8\x4d\xae\x66\x69\xfc\xfa\xbe\x4b\x41\x97\xac\x18\xb4\xa0\x13\x8c\x12\xd3\xaa\x42\xcc\x64\x83\x55\xd4\x4c\x57\x3f\xa9\x25\x33\xb1\xcb\x9b\x50\xef\xf9\xe3\x7b\xd2\xc7\x86\xd1\x46\x4b\x31\x98\xeb\x79\x58\x42\x9b\xa8\xd3\x8b\x2c\xce\x1a\x8e\xb7\xe1\xd2\x97\x46\xe8\x10\x5f\x01\x39\x70\xf6\xa6\x08\x7a\x26\x91\x42\x8b\x3f\x15\x26\xfb\xf9\x85\xb4\xd4\x13\x30\x5a\x07\x50\xb5\xdc\x85\x73\x55\xd5\xe5\xd1\x80\xcb\xb5\xaa\x52\x5d\xf3\xce\xb4\x50\xa3\x89\xa3\xb2\x4f\xa0\xc7\x1f\x3f\xde\x01\x3a\x77\x16\xb4\x15\x09\x6f\x78\x1c\xb0\x06\x30\x2a\xf3\x07\xb9\xf7\x2c\x24\x38\x78\x81\xe5\x4b\x7d\xcb\xec\xa0\x83\xba\xfa\x90\x8f\x99\xe7\x62\xe6\x25\xaf\xb3\x1b\xf4\x48\x5c\x46\xec\x28\xf8\x71\x5c\xcd\xd8\xb3\xba\xb0\xb6\x29\x01\x70\xb9\x4f\xb6\x4c\xf0\xea\x18\x25\xb6\xce\xd7\x39\x9a\xca\x0a\xb2\x63\x31\xaa\x85\x83\xdb\x00\xc4\x46\x38\xbf\xf2\x92\x65\xe7\xe8\x11\xa9\xef\x1c\x55\x5a\xa2\x69\xd5\xd8\xa0\xde\x86\xf2\xc0\x97\xc7\x6a\xc9\x61\xd0\x59\x45\x8c\x17\xe5\x57\x0f\x4e\xff\xf9\x32\xc6\x25\x29\x09\x37\x79\x5f\xff\xbd\x6c\x75\x0b\xde\xdf\x0d\xf0\x02\x24\xaa\x6f\xfb\x32\x1f\x3e\xaa\xd6\x3f\x7a\xb7\xb6\x78\xe6\xcc\x9f\xf7\x27\xbd\x18\xc4\x41\x74\x8a\x6e\xb8\x60\xbc\xc6\x32\x45\x25\xe2\xa5\x91\xb4\xc6\xf8\x31\xda\x3e\x67\x81\x49\x8a\x56\x22\x9c\xf7\xf2\xf1\x74\x56\xd3\x3d\x7b\xca\x34\x6e\x69\x3a\x48\x6b\x9b\x34\xaa\xc8\xe7\x63\x2e\x39\xc3\x69\x3b\x38\x44\xde\x33\x02\x24\x15\xc5\x8e\x8b\x9f\x54\x2f\xaa\xcc\x04\x03\x37\xdb\xd5\xad\xaa\x7f\x1a\xf8\x65\x12\x9d\xf8\x2f\x1f\x4b\xaf\x6d\xf7\xf4\x7c\x13\x23\x29\x19\x97\xfb\x62\x4f\x92\x7c\x14\x69\x23\x7a\x0b\x5f\x7b\x7a\x38\xa0\xc1\x09\x20\x14\xf7\xe4\xcc\xa8\x15\x4d\x24\xcb\x44\x1d\xf9\xae\xda\x04\x53\x26\x4f\x9f\x31\x3b\xfe\x95\xff\x38\xdd\xde\xd0\x41\x22\x5c\xae\x3d\xec\xb8\x5f\x69\x22\x98\xa0\x15\x64\x1c\x5e\xae\x22\x4b\x3c\xac\x03\xdc\x4b\x6d\x86\x8a\x3c\x0b\xd5\xaa\xc8\xa1\x75\x4e\xf3\x89\xaf\xc7\xbf\x1f\xbc\x44\x0f\xe6\x9e\x47\x4c\x64\x49\xed\xfd\x09\xaf\xc6\xf1\xa4\x89\x5a\x28\xb7\x99\x27\x1f\x93\x89\x6a\x2c\x62\xfd\xc9\x85\xba\x2d\x22\x32\x25\x9e\x45\x76\x28\xde\x1a\x25\xca\x8d\x8f\x12\xd7\xe5\xbe\xe6\xc6\xf3\x57\xb5\x6b\x97\x1a\xf2\xc5\x75\x90\xbb\xe0\x8c\xe6\x88\x17\x05\x50\x13\x95\x62\xb1\xcc\xbf\x3e\x01\xe4\x42\x13\x96\x4e\xf4\x2f\xed\xeb\xf5\x71\x89\x19\xc4\x07\x3f\xb4\xe5\xd4\x66\x81\x85\x62\x5e\x58\xe6\xe0\xc9\xcb\xb5\x73\xed\x94\x19\x6e\xa4\xfb\xc3\xc6\x8b\x77\x8b\x78\x7d\x13\x23\xf1\x2f\x66\xcf\xa8\x9d\xd4\x20\x0e\xe6\x73\x8f\xec\xd6\xce\x74\x4e\xcc\x5b\xfb\x52\x59\xe6\x00\xf0\x75\x23\x66\x2c\xb7\xf4\xc8\xc9\x51\x8d\xa4\xfb\x26\xb2\x84\xf4\xcb\xbe\xfa\x6c\x8c\x0d\xb6\x6a\x40\x50\x3b\xfc\xce\x73\x00\xea\xe7\x47\xb5\x16\xe3\xcd\x47\xe3\xa9\x1b\x74\xf6\x60\x94\x47\x8a\x3a\xec\x57\x0f\x02\x52\x50\xe0\x54\x78\x69\xf0\x04\xb0\xb4\x6e\x50\xc6\xf5\xc1\xe7\xdc\x91\x5e\x9d\x09\x5e\x52\x3b\xe7\x8f\x0c\x83\x7f\x58\xb4\x95\xc2\xab\x07\xfc\x5f\x6e\x0e\x92\xe6\x9f\xd1\x4c\x7f\x9a\x8c\x98\xb1\xd5\xc3\xaa\x61\x9a\xa8\x48\x39\xfa\x07\x70\xbd\xe4\x96\x6d\xd6\xda\xd1\xa4\x8e\x9d\xf8\x91\x32\xdf\x02\x55\xb5\x5f\x45\x4e\xcd\xab\x90\xba\x8c\x08\xb9\x71\x03\x74\xa5\x7e\x56\xc2\x2c\xc6\x7a\xcb\x2d\x45\x24\x0e\x7d\x45\x67\x14\xf7\xc3\xdf\xee\x1c\x02\x3a\xec\x0c\x73\xe6\xd2\x3f\x6a\x2c\xe3\x2a\x8d\x0a\xb2\x64\xc6\x72\xfb\x39\xe9\x57\x96\x67\x81\x23\x33\x95\xab\x5f\x04\x16\x3c\x89\x36\x7a\xa1\x2f\xfb\x07\x4d\x4d\xb9\xc8\x12\x65\x85\x4c\x75\xac\xd8\x74\x51\xc6\x25\x69\xb6\xef\x80\xb1\x1a\x07\xf1\xe4\x0b\xe1\xc2\x39\x6a\x49\x67\x4c\x99\x3c\x73\xf6\x8c\xe8\x4b\xaf\x1f\x7f\x11\xc8\xb4\x9c\x4a\x1e\x35\x10\x91\x9f\xf2\xd7\xf5\x2a\x52\x17\xa9\x5d\x44\xac\xa4\x9c\x85\x8d\x39\x3d\x97\xeb\x87\x2f\x4f\x2c\x4b\x92\x29\xe3\x56\xc5\x7b\xda\xb4\xd3\x67\x81\xe7\xe3\x78\xe4\x9b\x9b\xb1\x28\xfd\xcf\x45\xee\xeb\x1d\xbb\xf4\x2c\x5b\x95\xe0\x48\xbd\xc0\x4a\x4e\x94\x76\x76\x91\xd3\xa4\x4e\x4c\x3b\xcc\xde\x7e\x20\xc9\x8f\x4b\x01\xa4\xa5\xbe\x7f\xbe\x2e\x0b\x45\x3d\x1c\x93\x3a\xb3\x7e\x27\x70\xda\x72\x68\x83\x1b\x26\xc9\xbc\x6f\xfa\x46\x20\xc4\x87\x1c\x6e\xdb\xc4\x73\xf1\xb3\xef\x02\xbd\x43\xca\xe7\x27\xdf\x5d\x99\xbe\x57\x7b\x70\xb9\x2c\x34\xbf\xa0\xa8\x64\xf6\xbb\xd5\x24\x58\x94\x09\x3f\xf5\xcd\xd7\x2f\x86\xe0\x60\x86\x1d\x30\xf4\xcc\xde\x3e\x57\x13\x29\xc7\x2e\x12\x1e\x6f\xa2\xd3\x38\x7a\x0f\xd0\x7b\xb8\x2d\xc0\x58\x04\x94\xdc\x15\x73\x52\x14\x7b\xc0\x33\x78\x58\x4b\x15\x05\x8f\x5f\x08\x37\x87\xaf\x69\x52\x73\x1e\x45\x0c\xc7\x42\x1c\xfb\xe7\x43\xe1\x55\x18\x72\x2a\x87\x40\xfb\x48\x5c\xdf\x59\xe3\xad\x11\xe0\xbf\x51\xe6\x7b\x0d\x01\x5e\xcb\xbe\x7f\x4c\x01\x82\xad\x26\x97\xce\x69\xc5\xe5\xdd\x3c\x4b\x6b\xa7\x50\x87\x98\x28\x15\xa3\xbe\x05\x46\xa1\x4e\x67\xb9\x93\xf3\xa3\x72\x6b\x8a\x23\x40\x67\x1c\x36\x1e\x3f\x72\x9f\x88\x4a\x5e\x15\x71\x05\xc7\xcc\x95\x80\x24\xee\xf9\x4d\x31\x21\xcb\xdc\x06\xc0\x2e\xb4\x42\x1a\x88\x8b\x82\x65\xe6\x9e\xea\x00\xdc\x10\x8b\x04\x20\x51\x36\x46\x1e\xd2\x48\xaa\x49\xa9\x93\x5c\x41\xde\x89\xcb\xb5\x42\x81\xab\xdc\x51\x47\xfc\x69\xd1\xb6\x19\xb5\x5c\x3c\x62\x9d\x4a\x7b\xa8\x43\xef\xa6\x33\x9e\xe9\x33\xe3\x5a\xfc\x99\x39\xda\xd4\xda\x0a\xbc\x58\x8f\xae\x32\x6a\x14\x76\xa2\xab\xba\xc4\x27\xa7\x8b\x91\xc5\x35\x8c\x14\xc6\xf5\x3d\xf1\x67\xa6\xcc\x9e\x35\x8d\x27\xc5\x1d\x9b\xe3\xe9\xbd\x5d\x8c\x87\xea\xd9\x4f\x02\x6b\xf7\x9a\x43\x1b\x16\x2e\x71\x25\xcb\x47\xb7\x68\x7b\x92\xac\x8b\xf3\x21\x7e\x2f\xdd\x71\x46\x12\xc4\x11\x33\x09\x44\x9e\x5e\xe9\x00\x43\x1e\x1a\x08\xcd\xb1\xdc\x8a\x85\xda\x0c\x80\x36\x30\x4b\x04\x24\xdf\x79\x5e\x02\x7e\xd6\x71\xfb\x7d\x9e\xb2\x1e\x55\x73\x12\x0a\x68\x54\xd9\x8f\x3f\x99\x56\xb9\x9d\x32\x4b\x34\xce\x32\x7f\xb9\x25\x69\x39\x2f\xd3\x5b\xce\x7d\xd9\x4f\x6d\x03\x71\xd7\x29\x51\x41\x41\xc9\x9c\x3f\x04\xf8\x7a\x53\x27\x10\x3c\xa9\x7f\x1c\xa7\x1f\x48\x46\x38\x2b\x42\x76\x50\x2e\x5a\x1c\x4b\x94\xb8\xca\x69\xd2\xf8\xe2\x22\x49\x5e\xc7\x08\xae\xc3\xcc\xd3\x17\x24\xdf\x9a\x03\x36\x36\x2f\xd2\xc1\x51\xae\x45\x9b\x51\xb2\xce\xbf\xc7\xf7\xa6\xb7\x29\x9c\x2e\x84\xe0\x64\xb6\xb5\xc4\xc7\x92\x9f\xea\x3d\x5e\xec\x42\xf6\xbf\x8b\x38\x76\x8e\xc3\xca\x3e\x3c\x37\xb9\x92\x78\x92\xf4\xfe\xce\x76\xd0\xfa\xc6\xa2\xa5\x22\xa5\xdb\x77\x03\xf8\x9a\x4b\x2c\x21\x67\xff\xc3\x77\xb5\x87\x6e\x10\x69\xe8\xc2\xb1\x2b\x8f\x3c\x00\xa5\x03\x4d\x9f\xf2\xd1\x4f\xf6\xc8\x9a\x36\x2d\x02\x48\xb4\xe3\xb3\x37\x03\xfc\x3e\x8b\x35\xbe\x87\xbc\xa7\x51\x97\x02\xcf\x27\xe5\x44\x95\x6f\x6c\x15\x22\x4d\x14\x55\xa1\x2f\x3b\x7f\x4f\x12\x17\x3c\x5c\x54\x7d\x93\xaf\x9f\x8a\x9d\xad\x69\x43\xc0\xa0\xfb\x8c\xb9\x6b\xf4\x2a\x94\x55\xa2\xab\x56\xee\xc5\xe2\x53\xe9\x53\xee\x70\xd0\x71\x11\x99\x26\x8d\x27\xc4\xdf\x28\x02\x77\x19\x3f\x66\xd5\x9b\x9d\xa2\x03\x52\xe0\xce\x0f\x34\x6e\xe4\xb9\x5b\x80\xfb\x8f\x8b\x19\xe2\x1d\x88\xa5\x0b\x07\x83\x3a\x99\xc3\xb3\x0f\x89\x69\xc2\xa2\xc0\x41\x90\x0a\xdd\x97\x3d\xdb\xa9\x85\x51\x22\x72\x16\x69\x26\xf5\x87\x79\xe0\x69\x30\x2b\xf2\x1e\x6b\xf8\x95\xf9\x12\x8d\x8e\x1d\x1a\x38\x5c\x9a\x24\x9c\x54\x04\x40\x0e\xe4\xa5\xb6\xce\xb9\xbd\x20\x91\x24\x95\xaa\x2f\x9c\x59\xc2\xd9\xc7\x46\x80\xd9\x76\x94\x4d\x75\x76\x72\x5f\xf4\xcc\x39\x0f\x0f\x06\xfd\xbd\x75\x7c\xa8\xf8\xba\xa6\x78\x1d\x53\x5d\xcd\x16\x01\x95\xcc\x4b\x96\xf2\x69\xa1\x80\x2f\x91\x3d\xb6\x34\xe9\x9c\x9a\xad\x48\x80\xec\x7d\x0f\x4a\x3a\x79\x40\xac\xd8\x7b\x2b\x7b\xdf\x11\xad\x49\x1e\xb0\x22\x95\xf7\x64\xc3\x11\x45\x07\xdf\x65\xfc\xf2\xff\xfc\x8b\x97\xb4\xe4\x82\x5c\x19\x48\xe0\x7d\x6e\xee\xd2\x39\xd1\x02\x62\x1d\x53\x0c\x67\x5e\x35\x5c\x3f\x87\x51\x3e\x53\xd4\xd0\x7f\x6e\xa7\xa6\x18\x70\x59\xdb\x68\xb1\xc2\x38\x16\xe6\x68\x09\x88\x5d\x57\xa5\x23\x01\x71\x62\xd3\x8c\xd1\x7e\xbb\x96\x7a\xf8\x31\x5c\xf2\xc4\xc1\xc1\xa0\x6d\xcd\x77\x68\x97\x35\x24\x8e\x82\x35\x2c\x37\x7e\x6e\xe0\x9e\x21\x71\x76\xef\x57\x85\x05\x71\x5f\x76\xf1\x63\x3a\x2c\x98\xd6\x88\x6c\xc8\xfc\xe7\xf4\xf4\xd3\x30\x14\x5f\x80\xef\xb8\x9a\x38\x3e\xf1\x1c\xcc\xa8\x97\xa2\xcc\x0e\x38\x74\x81\x52\x7b\xe7\xcd\xdf\xa7\xb6\x0f\x93\x79\x56\x62\xaa\x1a\x7d\xda\xff\xae\xd1\xc5\x94\x08\xf1\xb1\x90\xf7\xeb\x33\xdc\x47\x5b\xd8\xf0\x94\xd9\x49\xc6\x9d\xf9\xd2\x29\x11\x3c\x56\x20\x6e\x4e\x93\x2f\x84\xa7\x4f\xb4\x29\x2e\xd1\x4a\x90\x1c\x6c\xda\xa6\xa3\x3c\x03\xe6\x33\x4a\x6d\x5e\x6c\xbf\xb1\x21\xbd\x80\x82\xd7\xc6\xe9\x88\xe2\x5b\x3f\xd4\x26\x22\x6a\x99\x32\x0e\x87\xbb\x7c\xbe\xb6\x5a\x7e\x7c\x53\x6d\x7d\x57\x44\xc7\xc2\x84\xe5\x98\x00\x67\xe7\xcc\x2f\x40\x41\x6f\x01\x91\xb1\xdc\xca\xe3\xa0\x51\xca\xb8\xda\xf1\xff\x1b\x2b\x36\xee\xb5\xd4\xf1\x11\x27\xfa\xfc\x03\x4c\x04\x03\xe2\x0b\x01\xf6\xbe\xdc\x15\xef\xa5\x5f\x60\x9d\x50\x0b\x3b\xbe\xd8\xce\xb7\x2c\x1d\x06\xa8\x8b\x93\xa7\xce\xee\xca\xf3\x63\x31\x4e\x39\x82\xd8\xad\x2a\x82\xeb\x47\x6a\x0c\xa5\x44\xfb\x23\xb7\xe2\x41\x7d\xaa\xea\x07\xac\x84\x62\x33\xd5\xe9\xbd\x40\x48\x3b\x28\x0a\x8e\xd0\x26\x8d\xaa\x5d\xa1\xc8\x4a\x0c\x75\x6f\x5c\xa9\x1a\xa6\xd5\xa0\x28\x7a\xed\xe7\xb1\xf4\x29\x2b\x0b\xe9\x1b\xe3\xf7\xb7\x8c\xd6\x37\x6c\x89\x43\x9d\xd5\xc6\x1b\x72\x50\xd3\xf7\xa7\x12\x18\x7e\x8b\xab\xfa\xdb\x1e\x84\xab\x7f\xa2\x3b\xfd\xa1\x5e\xc0\xea\x98\xd7\x3b\xa6\x74\x4f\x5a\xab\x55\xae\x3e\x0d\xcc\x6a\x2c\x92\x34\x40\xf7\x7a\x08\xac\xa8\x20\x8e\xf1\xf3\xdd\x52\xd9\x6a\x39\xaa\x63\xf0\x57\x33\xc6\x23\xa0\x39\x45\x85\x91\xa3\x31\xff\x54\x7a\xbb\xfb\x55\x6a\x23\x71\xb0\x78\x81\x74\x27\xa0\x9d\x0b\x9b\xf9\x68\xef\xb6\x6f\xd3\x4d\x6e\xcc\xc0\x53\x4c\xd3\x61\xdb\x81\x42\x44\x2f\x43\x55\x20\xe9\x9c\xf9\xdf\x4d\xa0\xcf\x8b\x15\x2b\xbe\x63\xa4\x88\x48\x0b\x12\xb7\xfb\xc4\xea\xbe\xed\xc2\x38\x72\x97\x02\xd1\x15\xcc\x7e\x7e\x88\xae\x18\x63\x62\xc7\x53\x24\x92\x7b\xac\x74\x0f\xdd\x45\xcc\x22\x42\x7a\xa7\xd5\xc0\x2d\xfb\xfa\x80\x58\x93\xa9\x8e\x19\x77\x12\x6e\xf5\x66\x77\x06\x27\xab\xe9\xc0\x43\x66\x3c\xd1\x09\xf9\xd7\xb2\xed\x1b\x2d\x44\xdf\x59\x55\x86\x11\x26\xb2\xf7\x44\xdf\x2c\xfb\x0d\x0d\x43\x5f\xc3\xd8\x95\x57\xfe\xbb\xa3\x15\xd6\xce\x6f\xd0\xbc\x1b\xc4\xc6\x13\xd9\x1f\x6b\x76\x7b\xb7\x05\xc4\xf1\x03\x37\xf1\x74\xf9\xe7\x25\x3a\xe7\xdb\x14\x31\x91\x83\xf3\xdf\x79\x5b\x99\x39\xd3\x72\x39\xcf\xb0\x84\xbc\x4a\xb5\xdf\xd1\x23\x92\xdf\x4b\xa5\x7a\xc6\xae\x6e\x55\xfb\x35\x90\xe7\x4b\x97\x9d\xb0\xf1\xa4\x36\x8f\x25\x25\xdc\x29\xdd\x75\x17\x9c\x02\xee\x75\x94\x2b\x41\x18\xff\x32\x56\xdb\x38\xc8\x57\xc0\x9b\xf0\x7b\x8f\x6b\x47\xdd\x95\xb9\x07\x87\x7c\x6f\x7e\x17\x18\x06\xe8\x74\xcf\xb0\xb6\x52\x6c\x12\x87\x32\x5b\xba\xb9\xff\xee\x06\x4d\x20\x0c\xf9\xdc\x12\x45\xe0\x09\xb3\xdb\x06\xaa\xfc\xa4\xca\x25\xf2\xd4\x59\x59\xf5\x46\xba\xb2\x8a\xd2\x2e\xe4\xa0\x74\x1b\x3b\x37\x54\xeb\x68\x56\x18\xf7\x91\x63\xd2\x75\x25\x7b\x6c\x77\x1a\x21\x84\x5d\xe2\x99\xd4\xe5\x9b\x1b\x96\x9d\xc6\xb3\x63\xda\x95\xb5\x89\x03\xb9\x0d\xc6\x77\xe2\x04\xc4\x42\x4e\x4d\xf6\x64\x8c\xb9\x1b\x87\x82\x99\x8f\x18\xe7\x85\x9f\xed\x4d\x02\x60\x9c\x20\x9d\x4e\xaf\x0e\x0d\xb8\xea\x31\xe7\xc9\xcf\x6c\x1f\x0a\x46\x01\xe5\x32\xe6\xc7\xaa\xf9\x84\x3e\xc9\xf5\x13\x8e\x78\x66\xc1\x03\xea\x58\x9b\x2c\x68\x96\xc1\xcc\xce\xb8\x1c\xb4\x89\x4a\x2c\x10\x82\xf4\x7f\xdf\x2b\xa6\x5c\x33\xa7\x72\xbb\x78\x6b\x8c\x46\x8c\xa6\xca\xc6\xef\xa7\xa7\x07\xcb\x6a\x89\x9b\x7d\x44\xbf\x8d\x17\x69\x5d\x16\xc4\x18\xc1\xb2\x47\x9e\xcd\x8f\xd7\xa7\x23\xa8\x44\xac\xd8\x16\xec\x85\xf7\xd2\xd1\x55\xac\x8b\x4f\xa9\xe8\x3c\x84\x77\x8f\x93\x85\xbb\x2f\xe0\x75\xdd\xe7\x68\x29\x06\xb2\x48\x99\x32\x87\x20\xa5\xe7\x92\x79\xfa\x84\x48\x28\x16\x33\xa8\xd8\x69\x6c\x3a\x73\x29\x60\x7c\xb9\x56\xcb\x30\x34\x7b\xef\x71\xdd\x2c\x83\xb0\x22\xae\xa5\xb6\x53\x78\x72\x56\x0c\xc5\x90\x55\x6c\xb3\xed\xca\xfe\x32\x43\x49\xa4\xd2\x43\xe8\x17\x9f\x6e\x49\x6b\x84\x66\x2a\xaf\x98\x26\x87\x6a\x79\x7a\x88\x6d\x47\xe7\xe3\x8d\xb6\x98\x6d\x8e\x71\xf4\x62\x79\x0b\xe0\x2d\xdd\x4e\x84\x98\x38\x96\xef\xf9\xcf\x2d\x2d\x1d\xfc\x28\x67\x89\x7b\xdd\x9b\xb7\x8c\x04\x05\x93\x67\x06\x38\x75\x87\x8c\x96\x65\x37\xc3\x5c\x5e\x34\x5f\x08\x1f\x01\x0a\x3d\xc4\x93\x12\x8f\x7d\x46\xe9\x31\xb5\xcf\x5c\x62\xd6\xe0\xc9\x34\x76\x1c\x85\x5b\x5f\x6a\xae\x1b\xdf\xda\x01\xb7\x26\xf5\x8a\x80\xaf\x93\x9d\xb9\x36\x95\x05\xa9\xcf\xba\xaf\xad\x45\xe3\x9f\x6b\xcb\xc4\x13\x38\xa3\xcb\x95\x7a\x89\xd2\x15\x89\xe3\x79\xef\x7e\x4b\x73\xad\xc6\x95\x58\x66\x2b\x7b\x76\x6e\x52\x66\x20\x56\x04\x51\xef\xb3\x6c\x68\x92\x1f\xc4\x63\xec\x30\xd7\xa1\x6f\x70\x71\xdd\xf1\xb7\xf9\x0f\x0b\x55\x10\x40\x9e\x4b\x58\x62\x57\x94\xd9\xa4\xb9\x14\x4b\x1b\xf7\x18\xa0\x94\xb9\x6a\x74\xd2\xeb\xa4\x76\xe2\x1c\xb7\x3a\x03\x4f\x28\x29\xf3\x33\xbd\x63\x0c\x68\x7c\xc0\x07\xde\xf4\xb2\xb2\x22\x81\x7d\xa9\xdc\x45\xf3\x52\x56\x22\xcc\x2f\x63\xe1\x26\x8e\x9e\x00\x0d\x67\x44\x1a\xc2\xe0\xa1\xd0\x97\xbb\x4c\xf3\xde\xe7\x06\x93\x71\x79\x53\x38\x38\x41\xbb\xf3\x29\x17\x8b\xe9\xcf\x67\xb5\x7d\x13\x88\xb4\xd4\xc6\x9e\x4f\x4c\x5e\x62\x05\x83\xd3\x83\xc0\x86\x30\xbf\x13\xaa\x3a\xb2\x32\xfe\xdc\xd1\x24\x03\xad\xb6\xba\x69\x64\xae\x2a\x69\xdc\x4c\x62\xdb\xd4\xf1\xd2\x45\x55\xe6\xc5\xbd\x1a\x2f\xc9\x63\x08\x5b\x24\xba\xc3\xe4\x5b\xa6\x0c\x88\xe1\x20\x2b\x1e\xb9\xfc\xed\x3d\xed\x62\xb5\x69\x2d\xb6\xa2\x33\xce\x6e\x05\xfe\xd6\xd1\xc1\xb8\x7e\x30\x34\x52\x0c\xfc\x2a\xe6\xe6\xaf\x23\x5f\x55\x7b\xdf\xad\x62\x4b\xa8\x2b\x6d\x1d\x0c\x54\x59\x02\xc2\x73\xf4\xec\x7f\x8d\x14\x3b\xf7\x63\xbd\x30\xf7\x32\x36\x0d\x4b\x1d\x13\x61\x72\x95\xe9\x79\x75\x48\x72\x32\x2b\x0e\xe9\xe5\x9d\xcc\x1f\x68\xd3\x67\x1b\xad\x23\x76\x60\x4b\xf0\xfe\xa1\xd5\x43\x55\x87\x27\x11\x4e\x1c\x3e\x5e\xb1\xd9\x7d\x7d\xac\x14\xfe\xb6\xfd\xb2\xfe\xee\xe4\xd8\x13\x9e\x17\x81\xbf\x1a\xd3\x22\xd5\x1f\xd5\x59\x12\xbe\x9b\xd9\xd7\x9b\xc6\x56\x79\x26\xe9\x57\xbc\x76\xdc\x1e\x59\xcc\x74\x16\x3a\x17\x45\x19\xeb\x8f\x37\x01\xdc\x86\x53\x4a\xab\xd6\xde\x95\xbc\x7e\x9e\x15\x87\xf7\x3f\x76\x99\x7e\x09\x46\x49\x52\x2f\x50\x9c\xcf\xfc\x7f\xf3\x34\xd3\x0b\xcc\x2a\x7c\x38\xcc\x01\xc4\x1d\xe9\xce\x7d\x05\xd9\xa8\x95\xa8\x91\xf5\xda\x14\xfd\x2d\x05\x80\x19\x36\x40\x7b\x80\x80\x91\xb2\x54\x54\x8c\x0b\xd1\x39\x4f\x40\x6f\x9b\x98\x39\x9a\x2f\x84\xbf\x70\xc7\xa4\x05\x36\x58\xab\xa0\x6c\x76\x64\xd7\xa5\x5a\x9e\xe8\xc7\xd6\x3c\xa2\x10\xce\x9e\x5d\x32\x0c\xca\x2a\xc5\x08\x99\x8e\xfd\x22\x06\x5e\x8f\x19\x1c\x2a\xcc\x3c\xa0\x26\xc4\x15\x86\xb8\x58\xb0\x6a\xf7\x9c\x7e\xf7\x32\x7d\x55\x81\x52\x92\x10\x04\x3a\xba\x4a\xab\x6a\x2c\x8c\x1c\x35\x2c\xdb\xb1\x47\xd4\xb8\x2b\x51\x19\x61\x98\x7e\x57\x4a\x80\xbd\x14\x38\x0e\xe6\xa2\x48\xab\x4f\xab\x2e\x45\x0f\xe6\x8d\x8b\xdf\xb5\x27\x7a\xd3\x2e\xf6\x89\x54\x87\xbf\x4a\x21\x50\x1d\x1a\x2d\xfe\xca\x13\xaa\xab\x99\xd8\xc6\xf0\x5b\xe6\x5b\x53\x35\x14\xe5\x14\x49\x2e\xff\xe5\xeb\x50\xae\xb5\x8a\x98\x2d\xe9\x35\x36\x90\x6c\xf2\x1a\x24\x4a\x3f\xf9\x77\x45\xdb\x45\x5e\x34\xa5\x73\x5a\xf4\x63\x3d\xc7\x54\x7b\x2e\xd6\x5f\x7b\x5d\xaa\x0e\x63\x56\x07\x6c\x0a\x63\xb5\xc6\x1c\x9d\x32\x6d\x76\x7e\xca\x8c\xab\xa7\x74\x0b\xa1\xe8\x0b\x5e\xd4\x23\x9a\x3c\xd1\xb2\x76\xcc\x7d\xee\x98\x4c\x32\x8a\x57\x97\xcc\x7c\x21\x0c\xcf\x19\xa9\x67\x51\x5e\x74\xed\xc9\x1f\xff\x44\xbb\x48\x11\xa2\xab\xd0\x97\x8e\x01\xaf\xbe\x02\x38\x4a\xa8\xd7\x65\xfc\xb5\xf5\x68\x1f\x84\x2d\x5c\x47\x7e\x62\x82\xf7\xd5\x71\xda\xdf\x09\x5c\x82\xaa\x49\x57\xe5\xae\x4d\x71\xf6\x97\x18\xbe\x48\x77\xa3\xc5\xbc\xe8\xcc\x17\xc2\x05\x6d\x0a\xe2\x88\xcb\xfa\xdd\xf2\xae\xb4\x3e\xba\x16\x5b\x16\x12\xcf\xb9\x75\xfb\xd0\xf8\xd9\x11\x33\xab\x84\x4b\x06\x18\x57\x6d\x51\x16\xf2\xb8\x9f\xc9\xf7\xca\x14\x9f\xaf\x6c\x11\xd3\x8f\x36\xc5\x7c\x00\x80\xa8\x23\xa7\x46\x81\x89\xf8\xc7\x07\xa5\x43\x47\x03\x5b\x96\xf0\x0b\xaa\x0b\x26\x0f\x7f\x9c\xc7\x26\xb7\x81\xf3\x4a\x1c\x93\xb8\x82\x73\xff\x4f\xeb\xd5\x86\x33\x91\x65\x26\x70\xb6\xcc\x12\xe0\x67\x3f\x25\x3f\x6d\x6a\xab\x55\xe2\x10\x5d\xd1\xc7\x8b\x65\xb5\x01\x49\xf5\xbd\xf4\xb6\x9d\x32\x63\x86\x3c\x72\xcf\x3e\x17\x13\xa3\x5c\x17\xf3\x9d\x7c\xec\xbd\x24\xea\x93\x3a\x10\xe8\x9d\x3b\x5d\x49\x5f\x04\x0e\x72\x88\x2d\x64\x9b\x74\xd4\xdf\xdf\x2c\x1d\x1a\x5d\x8f\xd2\x29\x7e\xbf\x4f\xce\x17\xc2\xe3\x83\xc4\xaa\x7e\x2c\x26\xd7\x5d\x54\xd6\xf7\x5f\x5d\xbc\x36\x9e\x03\xbd\x74\xce\x18\x88\x41\x5d\xb9\x70\xa5\x8e\x41\x2d\xf4\xe5\x66\xbc\xae\x5d\x1c\xd8\xf1\x82\x04\xad\x9d\x79\x65\xb4\x74\x85\xf0\x9a\x66\x95\x20\x9f\x89\x8d\x90\x7d\x65\xa7\x22\x2c\x21\xc8\x8d\xfe\xa5\x7c\x2b\x9e\xa4\xf1\x14\xc2\xe9\x6b\x3a\xe2\x47\x50\xbc\x8e\x38\xe0\x1f\x57\x52\xbd\x53\xa6\x45\x7b\x65\xa6\x42\x4a\x4e\x99\xc5\x3d\x2b\x6e\xbc\x23\xf6\x72\x62\x81\x48\x71\x2f\x7d\x4b\x73\xfe\xaf\x4a\x35\x01\xe3\xfe\xbd\xca\x3b\xce\x4c\xac\x42\xb4\x54\xff\x80\xca\x76\xa9\x83\x45\x20\xe5\x1c\xd3\x42\x5f\x76\xe3\x7c\xcd\xb8\x9e\x91\x22\xee\xdf\x1d\x3e\xfb\xb3\xfb\xb5\x02\xb1\xec\xe3\xd8\x51\xaa\x38\x30\x51\xef\x73\x4c\x22\xc6\x32\xaf\x54\x75\x0b\x71\x9f\x33\x45\xa4\x85\xf7\xcb\x1b\xa4\x8c\x79\x6c\x42\xd1\xd2\x85\xaf\x42\x55\x5d\x81\xba\x17\x5b\xfd\xd0\x06\x61\x33\x72\xfd\x75\xcb\xaf\x5b\xb9\x60\x69\x0b\xa2\xb0\xae\x29\xe0\x23\xdf\xc7\x4e\xdc\xed\x31\xfe\xe9\xaa\x11\xe9\xa9\x47\x6c\x8b\x9b\x9d\xbf\x5a\x2c\x66\xe0\x96\xe4\xd8\xc7\x58\xea\x4b\x23\x6c\xd4\x10\x2a\x5e\x83\x47\xc1\x4d\xf6\xf1\x15\xe3\x26\x81\x55\x2e\xf4\x65\xae\x99\x9b\x72\x30\xaa\x31\xa4\x72\xaa\x70\xe1\x49\x69\x11\x8e\xad\x28\x71\x92\x9b\x62\xe7\xaa\xb8\xd6\xb1\x11\x57\x96\x09\x6f\x3b\xa8\xba\x0d\x4e\xd3\xcf\x77\xcd\xc8\x77\x4d\xcf\xcf\x9e\x15\x3d\x91\xb9\x53\x7c\xf9\x65\xa8\x86\x18\xbf\x59\x52\x77\xdb\x83\xa3\xd2\xed\x42\xae\x25\xce\xa5\x67\x79\xe7\x84\x0b\x0a\x74\x6a\xc9\x1a\x37\xad\x11\xd6\x96\xe1\x8c\x63\x23\xc0\xe1\xad\x62\x86\x2c\x29\xab\xfa\x89\xf9\xc9\x65\xd8\xcb\x37\x77\x7a\x7b\xfc\xa7\xd4\x72\xf0\x19\xe5\x4e\xd5\x99\xcd\x39\xe0\x09\xc0\x67\xcc\x71\x9f\xf0\xf3\x7b\xd4\xed\x76\x5b\x10\x15\xcf\x44\x84\xba\x4b\x67\x01\xb3\x63\xec\x61\xe6\xa7\xa4\x9f\x33\xdf\x5b\xa4\xb8\x56\x62\x2b\xdc\xde\x7b\xa5\x76\x25\xb8\x41\xd1\x22\x26\x72\x44\x9a\x9d\x7e\xc6\x55\xfb\xf5\x36\x80\x8f\x48\x8c\x2e\xcf\x2e\x7d\xa0\x15\x9a\x66\xeb\x95\x77\x5f\xf6\xef\x75\xfd\x1c\x94\x31\x93\x60\xca\xfb\x9e\x12\x7d\xc9\xe5\xc8\x75\x49\x4a\xc2\xf7\xe9\xcd\xc3\x41\xbd\x2b\x54\xa8\xf2\x85\xd0\x03\x0e\xdd\x55\xe4\xc5\x96\x32\x7f\xd8\x90\x5e\x45\x60\xf2\x15\x43\xe5\x07\xcf\xd1\x14\xfc\xa8\x1b\x05\x03\xc1\xf2\x2d\x84\x3f\x3a\x0c\x24\x95\x5a\xe1\x0d\x2e\x30\x4c\xb0\x30\x75\x29\x07\x96\x64\xae\x9b\xaa\x89\x51\x94\xa2\xd4\x87\x20\x2b\x1e\xe8\x9c\x19\x26\x9d\xfa\x69\x09\x16\xac\x1d\x00\xb0\xc3\x28\x92\x78\x37\x99\xe8\x6f\x75\xc5\xa5\xfa\x51\xec\xf4\xc0\x02\x63\xee\x71\xa9\x0e\x40\x1b\x45\xda\xe4\x77\x86\x3b\x17\x28\x49\x33\x6c\xd6\xa4\x75\xd9\xd7\xde\xbe\x08\xe4\x59\x3e\x43\x42\x7e\x83\x1f\xd1\x6a\x3d\xdd\x52\x6f\xd2\x40\x60\xc9\x72\x2f\xab\xb4\x8e\x21\x9b\x0b\x02\x38\x6a\x4f\x5a\x81\xed\x06\x89\x64\xec\x87\xf7\x8a\x84\x6f\x21\xaa\x32\x21\x2b\xcf\xb7\xea\xbd\xb7\xa6\x17\x3b\x8f\x19\x92\x89\xdc\x4f\xd7\xe8\x27\x4d\x6a\xba\xc7\xce\x8c\x7d\xc6\x1e\xbf\x3f\xf4\x14\x97\xc2\xbc\xea\x19\xad\x1d\x88\xb9\x5d\x7c\x8c\x47\x34\xdc\x85\x80\xb1\xe8\xfb\xd8\x76\x05\x93\x6c\xed\xa3\xe3\x34\xe9\x42\x70\xff\x80\xd1\xfe\xd5\x20\xc7\xb6\x70\x85\x48\x2a\xa4\xd4\x71\x3f\xac\x71\x35\x6d\x5a\x27\x58\xe0\x3a\xef\x5b\x08\x94\xbf\x12\x19\x0e\xa9\xa7\x99\xbb\xab\x98\x26\x59\x54\x02\xab\xec\xf9\x0c\xa3\xd8\x4a\x4c\x21\xe2\x3e\x79\x97\xd8\x2a\xcb\x3c\xd8\xbd\xfc\xf6\xfc\x56\xff\xd4\x9e\x1e\xbe\x90\x5f\x92\x69\x99\xdd\xf4\xb0\x55\xe6\xdf\xf6\x44\x66\x34\xfc\xb6\xab\xb9\x14\x5a\x7a\x27\xff\x7a\x57\xfa\xd4\x62\x52\x2e\x63\x4b\x7f\x9a\x2c\xd9\x0d\x29\xe9\x65\xec\x78\xc9\xfd\xfb\xcb\x51\x17\x16\x09\xf2\xf2\xab\x18\x6f\x42\x71\xcd\xc0\x63\x6a\xeb\xb8\xc2\x96\x6c\xf3\x7e\xa8\xa9\xeb\xc4\x70\xe7\xf2\xcd\x9a\x72\x89\xe3\x48\x8f\x1f\xb5\xd1\x9b\x2b\xd3\xf5\x93\xdf\xc0\x8e\xdf\xcc\xfb\x8d\x78\x6c\x6f\x7c\xe6\xad\xd1\x30\x90\xe3\x72\x6b\x38\xdc\x03\x54\xe1\x1d\xea\xe4\x7b\x70\x83\xff\xea\xb3\xe3\xd2\xd9\xc1\x04\x2e\x5c\x98\x2f\x84\xbf\x99\x0b\x74\xae\xad\xa6\x1c\x68\x2e\x5e\xac\xb9\x19\x39\x15\xe2\xc4\x00\xe7\xdc\xed\xeb\x2e\x88\x53\x6b\x61\x88\x9e\xb9\xa8\x4b\xac\x62\xc5\x22\xbe\x1f\x4b\x5d\x65\x6f\xda\xa4\x7d\xca\x3a\x64\xbb\x96\xb4\x6a\x32\xc6\x1f\xb9\x5c\xdb\x24\x8e\x8f\x98\xa7\xdd\xa3\xdf\x38\xa5\x7b\x28\x97\x88\x54\xcb\xe5\x7f\xb9\x71\x97\xde\x95\x15\xc2\x33\xc8\x97\xde\x73\x1f\xb8\x01\xa4\xdf\x9c\xa7\xce\x3d\x2a\x33\x77\x3f\x04\x6c\x4c\xab\x98\xe1\x22\x67\xc2\x94\xdf\x1c\x0e\x70\x20\xc4\x29\x62\xc6\xbf\xcb\x9b\xeb\x41\xa3\x84\x5a\x92\x9c\xfc\xc1\x95\x49\x9d\x3f\xa3\x7b\x6a\xbe\x10\x3e\xfd\xa2\x2a\xa1\x15\xe9\x93\x33\x3e\x0f\xa7\xb7\xb4\x1b\x30\x2c\x9b\xfa\xd7\xbc\xa9\xbb\x35\x5b\x65\xc4\x64\xc7\x30\x73\xa6\x53\x0f\x47\xc5\xc0\x8f\x12\x24\xde\x85\x1d\xa0\xa9\xac\xda\x81\x99\xd4\x40\xc6\xc4\x7d\xe9\x03\x5c\x41\x5c\x30\x28\x0a\x29\x7b\xf6\x03\xed\xa6\x9a\x34\xc8\xb9\xb6\xbb\x0d\xec\x9e\xe8\x4e\x17\x04\xa6\x8b\xb6\x43\x90\xbf\x23\x44\xd9\x78\x4b\xe7\x62\x5d\x7d\x34\x88\xe2\x5c\x9c\x6c\x2f\x7e\x66\x08\x00\x89\x30\xae\x06\x6d\xe0\x76\xf5\x47\x84\x2c\xb7\x28\x9b\xc7\xaf\xd6\xd4\x68\x9b\x8c\xc4\xcc\x67\x7e\x02\xdd\xf5\xe9\x3d\xdc\xa0\xac\x26\xee\xf0\x4f\x3f\x25\x6b\x4a\x62\x32\x5a\x14\x12\x12\x17\x0f\x10\x99\x46\x77\x77\xe7\x4c\x3e\x2a\x78\x70\x4e\xfa\x3d\x72\xb1\x9e\xe8\xa6\xe5\x60\xed\x73\x73\x8a\x9c\xe7\xf0\x8d\xf3\xb9\xd1\x7c\x7f\xe6\xaf\x5b\xe7\x52\xe6\xe7\x6f\xb4\xf9\xff\xd2\x93\x85\x4b\x6e\x1d\xaf\x5d\xde\xa8\x8e\xbd\x7e\x53\xe3\x9f\xbf\x9e\x34\xb8\x44\x0a\xce\x63\xc7\xf1\xd5\x40\x72\x82\x7b\xb2\x84\x43\x4f\x0e\x4d\x62\x18\xb6\xa5\x76\xf4\x1f\x5f\x52\xad\xf0\xf4\x8d\xcb\xdf\xea\x5b\xa7\x55\x02\x5f\xc1\x66\x2d\x45\xe7\xcd\xb9\xea\x56\xf0\x59\x50\x2e\x5b\x22\x95\xfd\xc9\x2a\xa0\x52\x50\x2e\x13\x8b\xc4\x40\xa6\x9f\xbc\x02\x4a\x4b\xc4\x50\x89\xae\x13\xbf\x72\xde\x0a\x6d\x95\x50\x19\x73\x66\x70\x5c\x77\x67\xc7\x8b\x10\x29\x31\xa0\xf2\xe9\xcb\xb7\x4e\xd2\xb2\x26\x25\x37\xd2\x1f\x05\x89\x8d\xd7\x65\x27\x3d\xc2\xe4\xcd\x91\xf9\xd1\x12\x0d\x2c\x53\x65\xb4\xc1\xa1\xe1\xe1\x6f\x3b\xd3\x97\x28\xa7\x80\x73\x80\x5b\xcc\x01\xb7\xde\x06\xc0\xb1\xce\x9e\x4e\x90\x7d\xcd\x1a\xad\x33\x45\x7d\xcc\xea\x04\x37\xe4\x39\x9d\xb3\x5f\xd0\x4c\xaf\x45\x81\x19\x78\x01\x74\xe9\x0a\x3f\xaf\xcc\x1f\x3d\xda\x00\x1f\xfa\xca\x43\xaa\xeb\x8d\x8a\x0a\xf8\xbe\x72\x5c\x1a\x1e\x40\xca\x3c\x23\x7b\x6f\xbe\x26\xb2\xee\x70\x67\x56\x59\xca\x7d\x5b\x13\xfa\xf1\x02\x97\xc3\xed\xe3\xe4\x74\x70\x47\xba\x52\xab\x22\x56\x8f\xd7\x46\xa7\x6b\x3d\xff\x70\xea\xe6\x97\x77\x76\xe7\x0e\xad\xdc\xb6\x2c\x5c\x11\x73\x02\xd1\x4e\x9d\x7b\xbe\x52\xc1\x13\x5a\xfa\x51\xf6\xb6\x44\xb3\x19\xb5\x51\x72\xcf\x6f\xdb\x01\xb4\x1e\x19\x37\x2b\x13\x69\x82\xb1\xf4\x90\xe6\xbb\x83\x7c\xdc\x29\xfe\xca\xdf\xd7\xa4\x1f\xa3\x4c\x03\xa7\x84\x80\x57\xb2\xf9\x34\xd8\xef\x8c\x06\x2e\xf0\x86\xdc\xdb\x2d\x52\x04\xc4\x18\x72\x38\x18\xf4\x8e\x83\x97\xa9\x86\x08\x8d\xbe\x52\x6b\x09\xfc\xd3\xb5\x6d\x40\x11\xd2\x43\x45\x8e\x62\x8b\x82\xe1\xdb\xd2\x5c\x91\x9b\xb6\x44\xbb\x0c\x0d\xd3\xe9\x16\xd1\xfa\xe8\x1f\xf8\xf3\x76\x75\xb2\x2d\xd4\x10\x5b\xb7\x27\x9d\x08\x08\xf7\x3b\xb3\x4a\xac\x12\xc3\x82\xdd\x90\xfd\xfc\xd8\x4b\xd5\x0b\xb3\x2c\x0e\x5e\xf0\x31\x4c\x15\x3e\x75\x38\xb9\xac\xa6\x74\x47\xf5\x5e\xee\xfc\xaa\x36\x6c\x14\x75\x7e\x4a\xe3\x37\xf3\xcb\x21\xda\x3c\x4f\x70\xe2\xe4\xb8\x74\xdf\x72\x95\xba\x54\xa8\x53\xa2\x16\x37\xc6\x3e\xf1\x8a\x06\x2a\xa2\x25\xcc\x9f\x27\x76\x68\x79\xfc\x01\x4d\x7c\x4a\x98\x66\x25\x41\x68\xd9\x93\xe9\xbf\x3a\xb5\xab\x4b\xd9\x09\x65\x7e\xf9\xb2\x8a\xab\x65\x2c\x74\x43\xfa\xb2\xfb\x7a\xd4\x2c\xc0\x8b\x39\xe8\xee\x19\x75\x5b\x39\x02\xff\x2b\x77\xdf\x8c\x3d\x1a\x8e\xa9\x84\x91\x88\x0c\x03\x77\x00\x8b\x6a\x1a\x10\x8f\x20\x07\xf1\xa7\x06\x9a\x73\x0d\x2a\xff\xae\xb1\xf9\x44\xac\x25\x5e\x27\x12\x17\x49\x85\x60\x73\x2e\xf3\xfc\x68\xb5\x85\xa2\xf5\x92\x15\x31\x78\xbf\x37\xc8\x5c\xf6\x5a\x88\x4e\xc9\x4e\x7e\x5c\x8c\x42\x6c\xea\xf0\x5e\x1a\x67\xd8\xcc\x7a\x44\xa5\x8e\x66\xc0\xdf\x53\x66\xae\xd6\xee\x74\x4c\x1a\x44\x37\x90\xf8\x26\x83\xb6\x25\x85\x35\xb6\x5a\xf8\xd8\x99\xd3\x72\x3a\x23\x7d\x7a\x4c\x1e\x04\x8d\x4b\x73\x9a\x14\x71\x3d\xf1\x9a\xee\x33\x56\xbd\x0b\x8a\x07\xce\x58\x16\xd5\xf2\x15\x00\x13\x1f\x9b\xeb\x08\x9a\xf0\xb9\x13\xc5\x49\x28\x5a\xc8\x96\x60\xdb\xfb\x06\x4a\x48\x19\xc6\xc2\x45\x66\xc7\x3a\x00\x57\x0f\x8a\x0d\xc4\xbf\xef\xce\x51\xc9\xd3\xbb\x9c\x7d\x94\xbe\x8b\x76\xee\x01\x32\xc7\xe0\x56\x25\x83\xd4\xa3\xd4\x71\x05\x73\xc0\x58\x14\x4f\x9e\x5b\x02\xda\xe0\xae\x85\x3c\x91\x88\x66\x2b\x47\x94\x07\x0e\xa7\x90\x64\x0e\x03\x31\x11\x1f\x4b\xbb\xfa\xf0\x4f\xfb\x2f\x54\xa9\x1c\x57\x24\x09\x7f\x7a\x52\x81\x4b\x10\x13\x62\x12\x9f\x9e\x2e\x8a\xd2\x95\xc4\xac\xc2\xd9\xc4\xaa\x3d\xaa\xbd\x2e\xf8\x02\xb9\xb5\x47\xc5\x8f\x82\xc8\xc6\x03\xf3\x1d\x1d\xed\xb0\xd5\xd3\x80\xd4\x80\x07\x93\x5d\x6e\x23\x12\x57\x5d\x67\x76\xa4\x4b\x15\x17\x3b\x3e\xaa\x50\x41\xad\x57\xa5\xca\xe4\xed\xe2\xef\xf1\x71\x16\x4a\xac\x7d\xb2\x1f\xd0\xaa\x49\x16\x58\xb8\x24\xe0\x2e\xf3\x0f\x5d\xa0\x12\x90\xe8\x1e\xbb\x72\x9f\xea\x0c\x4a\x28\x78\xcb\x2d\x76\x64\x3d\xa4\x1f\x20\x22\x3a\xe1\xef\x6c\xd7\xe3\x6c\xe0\xf8\xac\xe9\x91\x92\x04\x48\x67\xaf\x1b\xa8\x10\xcd\x55\xd0\xda\x3e\x31\x0f\x90\x64\xa3\xe8\x02\xdd\xeb\x07\x9f\x55\xa7\xb2\x88\x7b\x5d\x21\xf5\xf3\xce\x58\x2d\xde\x53\x4b\xa6\x1b\xe1\x67\x5f\x02\x1a\xef\xd1\x4d\x29\x04\x1a\xb2\x6f\xc8\xae\x41\x03\xe3\x1a\xe6\xb8\xa2\xff\x00\xf3\x7c\x2a\x20\x31\xea\x65\x7e\xb9\x5b\xda\x2a\xa1\x56\x24\xd7\x91\x83\xea\x05\xf4\x04\xa5\xa6\xf0\x4e\xd8\x1e\xea\xd6\x08\x45\x29\x44\x29\x54\x30\xde\x79\xa1\x45\xaa\x6e\xba\x4c\x23\xee\xdd\x00\xdf\x28\x75\xc4\x51\xfd\xe7\xba\xd8\x91\xd2\xf4\x91\xbf\xe5\x65\x99\x74\xb4\xe8\xc1\x2c\xf0\x90\x85\x6d\x80\x20\xd9\x5c\x4c\xaf\x44\x0f\xc5\x1a\x35\x76\xec\x46\xed\xda\xc7\x0a\x13\xd0\x97\xd9\xbd\x26\xbd\xdd\x8a\x45\xb3\x9f\x41\xb9\xb1\x77\x39\xe8\x89\x60\xa7\xe2\x57\xb1\xd4\xf8\x29\xc8\xfb\xed\xda\xa0\xa8\x00\x76\xeb\xb4\x06\xa3\x9c\xcd\xf1\xae\xbd\x84\x7d\x3f\x37\x15\x24\x62\xc4\x36\xab\x88\x98\xc2\xfe\xdf\x78\x4e\xe2\x54\x1d\xdc\x10\xf1\xe0\x8b\x3b\x2e\x4e\x75\x79\xd3\xd0\xef\x0f\x1c\x1b\xad\xe7\x83\x18\xe7\x3d\x9f\x89\x81\x38\x67\x05\x2d\x1e\xa2\x6e\x00\x9b\x3a\x5c\xde\xf1\xae\xc7\xc6\x01\xe0\xb9\x4d\xca\xdc\x46\xcc\x6b\x45\x35\xb7\xc9\x99\x55\x11\x5b\x04\x8b\x36\xb0\xf1\x07\xcd\xcb\xa5\x4a\x85\x85\xbe\x8f\x6a\x12\x22\x13\xfe\x61\x0c\x50\x69\x42\xae\x74\xfd\xc9\x1c\xd8\x92\x8e\xd5\x35\xc2\x3c\x4d\x76\x3c\xdc\x5d\x4a\xff\x4c\x6f\x33\xa8\x48\xfa\xab\xba\x85\x76\xdc\xa0\xb3\xa4\xea\xdc\x9d\x56\x62\x78\xff\x0d\x20\xe2\x4b\xd8\xc4\xae\x04\xe5\x19\x5f\xdb\x75\x21\xa4\x21\xf0\x60\xf0\x05\xa6\x55\x47\xc2\x85\x4f\xa2\xfc\xae\x79\x44\x3a\x8d\xd3\x4a\xd5\x82\x0a\x05\x99\x8e\x85\x09\x97\x9a\xf1\x37\x17\x2f\x4b\xb8\xe4\x75\x1d\xf6\xec\x62\xe4\xe3\x92\x25\xcc\x45\xb2\x03\x07\xa7\x3b\x72\x88\x48\x63\xf2\xaa\x96\x16\xba\xc8\x93\xda\x88\x99\xd9\xf5\xa4\x5f\x49\xcb\xad\xeb\xf4\xfb\xb3\xc0\xb7\x87\xc3\x09\xfb\x0c\x47\x95\xe8\x58\x64\x34\x6b\x6f\x00\xe3\x5d\xda\x70\x84\x0c\x72\xdf\x42\x50\xab\x9a\x62\xe0\x97\xb9\x70\xd7\x04\xad\x0c\x71\xa9\x47\xfa\x47\x4b\xbd\xb8\x59\x06\x00\x3b\xf0\x70\xbe\x48\x83\x28\x64\x14\xfa\xb2\x87\xde\x4d\xef\xce\xc0\x21\x51\xa2\xcb\x24\x4a\x31\xfa\x11\x4f\x6b\x0f\x61\x51\x72\x12\x5e\x72\xca\x1d\xfc\xfe\x6b\x0a\xee\xcc\x5a\xa7\xef\xf7\x0c\x1b\x09\xf5\x05\xf5\x7f\x1e\xe7\x8f\x02\x5c\xc0\x12\x66\x4e\xbe\x84\xa0\x02\xf1\xea\xde\xf4\x6a\xf8\xb6\x80\x2b\xe7\x86\xdf\xad\xc1\x79\x19\x46\xd0\x8d\xe8\x92\xf5\x17\x83\x7b\xd5\xe5\xcd\x17\x8e\x48\xe5\x43\xe7\xf1\xab\x80\x8c\xb6\x23\x64\x05\x87\x8c\x19\xa1\x97\x18\xd2\x6f\xe6\xc5\x95\x52\x94\xdc\x67\x18\xfb\x79\xcf\x46\xdc\x96\x2c\x57\xee\x05\x8c\x1e\x9f\x05\x1c\x5f\xf7\xe2\x83\xea\x46\x2a\x51\xa7\x46\xeb\xbe\xc7\x13\xf6\xdc\x85\x9b\x07\xc7\xa1\x31\x2a\xfe\xa2\x4f\xfe\xe5\x76\x4d\x1a\xac\x8a\xeb\x4d\x20\xff\x91\x39\xf2\x44\xfa\x07\xb8\xb5\x07\x64\xfd\x7f\xfe\x99\xb4\xd3\xb1\x83\xa3\x3f\x5d\x13\x69\xb0\x1e\x33\x1e\x79\x48\x1d\xbd\x72\xe0\x28\xe3\xbd\x5b\xa7\x83\x5d\x86\x9a\x3c\x0a\xff\x7a\x8d\xee\x41\x8d\x9c\x12\x4d\x88\x13\x4f\xad\xb9\x08\x88\x44\x44\x15\x29\x76\xe2\x93\x3c\xbe\xa8\xed\x4f\x69\xdd\xd0\x9f\x9c\xe2\xd9\x0d\x1a\x3e\x83\x78\x26\x71\x13\x7a\x4b\xa1\x2f\x53\x79\x2d\x09\xd9\x35\x07\xe8\xb2\x1b\xc3\xc7\x6a\xe0\x11\xc2\x78\xfe\x0f\x91\x6f\x97\xbd\x94\xc6\xd1\xf0\xa2\x6c\xd2\x9c\x96\x63\xf2\x8d\xf7\x74\xeb\x1f\x1f\x5b\xfc\xba\xfc\x34\x50\x45\x36\xa9\x23\xbf\x26\xc7\x2d\xce\xcc\x69\x55\x29\x43\x45\x82\xa2\x4c\x43\x78\x5e\xac\xbf\x3f\xbd\x7b\xcd\x99\x5d\x62\xf7\xfe\xe3\x7b\x17\xc8\xbd\xe7\x73\xed\x84\xf0\x9f\x1e\xbf\x44\xaf\x39\xeb\x04\x09\x4c\xd7\x8a\xeb\xfa\xb2\x0f\xaf\xd2\x9d\x84\x13\x0d\x8c\x79\xe3\xb4\x38\x6a\xd1\x86\x32\xda\xc9\x16\xf5\x78\x10\x78\x9a\xb4\x56\x66\xc8\xbc\x24\x3b\x9d\x3a\x2d\xca\x4e\x8d\xb7\x65\xfa\xdc\x40\x92\xa6\xf6\xa9\xc5\xea\x86\x63\xad\x97\xcc\xde\xc9\xba\x14\x21\x71\xcc\x58\xdf\x2e\x8b\x77\x6a\x73\x6b\xee\x69\xe6\xc5\x9e\xa7\xfb\x8e\xa9\x0a\x8f\x11\x3f\x10\x5e\x7d\x99\x39\x07\xd2\x17\xd4\x54\x21\x1c\x91\xa7\x56\xa9\x53\xba\x28\x16\x16\xf6\x8f\xdc\xe2\x5d\xbe\xcf\x4c\x4e\xbf\xfc\xb2\x3c\xce\x99\x4f\x76\xa9\x42\xd6\xb3\x68\x9d\xea\x08\xeb\xdf\x1d\x4a\xef\x19\x0e\x20\xeb\x07\xd5\x34\xe5\x94\x66\x4a\x40\x3c\x2f\xa1\x2e\x2c\xd6\xb3\x1b\x56\xe7\x00\x53\x2e\xf7\xf4\xfb\x03\x9a\xdb\x27\x62\x18\x33\x19\xd5\xe6\x9c\x91\x82\x98\xc4\x12\xae\x85\xd7\xec\xd0\x35\x8f\x51\xc9\xa2\x66\x4d\x34\x5b\xc3\xf0\x4d\xe8\xe4\xd3\x43\xb9\x20\x54\xe6\xbc\x27\xdb\xc1\x15\x57\x27\x8c\x0a\x11\xc4\x42\x38\xed\x60\xfa\xeb\x15\xb1\xdf\x5f\x27\x26\xb3\xab\xc5\xbd\x40\xaa\xda\xf2\xd7\xfb\xeb\x25\x63\xb5\x8d\xe5\xe0\xa6\x19\xf8\x7e\x9a\xb3\xfd\xa9\x3b\xd2\xc8\x70\x0b\x47\x6f\xc1\xe7\xfc\x1f\xd1\x69\x96\xb0\xc1\x3b\x24\x97\x83\x38\x7e\x95\x7b\x7c\x8b\xaa\xef\xfa\x07\x41\xf9\x23\x38\x2f\x9f\xac\xb6\x38\x30\x32\x1c\x97\xfd\xc3\x37\xa9\x7c\xba\x88\xb8\xff\xab\xca\x4c\x7e\xbe\x58\xfd\x63\xe0\x94\x11\x61\x56\x33\x11\xab\xf8\x5c\x49\xf5\x45\x7a\x85\x8d\x73\xee\xce\x9d\x09\x5c\xbd\xcc\xb5\x5e\x95\x14\xff\x16\x15\xc0\x3b\x67\x4f\xe5\x9c\x83\xed\x20\xaf\x22\xb5\x2a\x11\x56\xd0\xaf\x6e\x8e\xb1\x27\x8d\x1a\x17\x44\xed\xcb\x75\x68\xb4\x98\x1a\xf2\x50\x13\xa5\xb8\x36\x73\x9f\xbb\xa2\xa1\x8f\x9a\x5a\xc3\x7b\xd8\xd1\x01\x1b\xa2\x4e\x29\x1e\x72\x18\x37\x1d\xd7\x2d\x99\xcd\x1a\x6e\xc2\x3c\x2d\xf3\x53\xbd\x5f\xc9\xa2\x50\x28\xf6\xe0\x7f\x9c\x52\x7b\xaa\x8e\x2c\x22\x50\x5e\x53\xa6\x02\x6e\x53\x2b\xf8\xfb\x7a\xcd\x6b\x91\xf3\xb9\xf8\x16\xf5\x5f\x52\x47\xbc\x87\xd8\xd8\xc1\x5c\x92\x66\xd9\x48\x7d\x10\x50\x4f\x24\x09\xa4\x7b\x78\xcb\x6c\x0a\x94\x10\x99\xde\x2e\xa8\x15\xe3\x47\xd5\x3f\x0f\xe5\xcb\x57\x25\x17\x9a\xe0\x85\x1a\x3e\x70\xf9\xc5\xeb\xa2\x1f\xe4\xf0\xd3\x8f\x9e\x0f\xa4\xee\x68\xb4\xf3\x0a\xe1\xd8\x5b\xe0\x8f\xfa\x58\xea\x91\x1b\xff\xfe\x80\x46\x38\x61\x18\xd9\x09\xae\xeb\x96\x97\xa5\x68\xa5\x8e\x69\xb8\xe8\xed\x0e\xbd\x6e\x46\x96\x74\xb2\xcb\xdc\x30\x1f\x40\x8c\x89\xe7\x22\x47\xc8\x90\x1a\x4b\xe7\x8c\xd2\xd6\x06\x39\x5e\x39\xba\x22\xe4\x9d\xfa\xda\x9c\xf3\x64\xe9\xc7\x9a\xf9\x42\x58\x7a\x26\xfd\xf3\x75\x82\x7d\x07\xd9\x89\x45\xb7\xb1\x1e\xfc\xa5\xb8\x7b\xe2\xe5\x0b\xe1\x35\xdd\xaa\x03\x12\xb4\xf4\x6f\x0c\x5f\x16\x28\xbc\xd1\x19\xb3\x42\x27\xad\x51\x1b\xbd\x8c\xa5\x06\x62\x9f\x71\xe1\xf9\xba\xb1\x92\x59\x95\xc6\x4a\x49\x7b\x79\xec\x11\x7d\xda\x81\xc5\x3b\xe4\xeb\xf6\xe4\x44\x25\xd3\x86\x14\xf4\x31\x9c\xbf\xb0\x03\x12\x83\x85\x78\x70\x02\xc5\x1d\x27\x27\xf4\x88\x41\xb8\x64\xe6\x13\x25\x80\x65\xba\xfe\xa6\x15\xa9\xf9\x2e\x3b\xa8\x05\x2c\x0b\x99\x89\xdc\x80\x31\x10\x98\xd0\x32\x6c\xf1\x5e\x51\x66\x2e\x18\xef\x57\x69\x23\x2a\x6a\x78\x85\x3c\x6b\xa3\xfe\x95\x68\x50\xa9\x4e\xea\xe9\xe1\x74\xbb\xbb\xf7\xb6\xc0\xbe\xb8\x78\x8a\x2c\x2a\x4a\x56\x7a\x77\x4c\x99\x3e\x79\xe6\xec\xae\xfc\xa4\xe8\x31\x72\xbd\x77\x03\x05\xc4\x5e\x1f\xf3\xad\x91\xfd\x61\x19\xf2\x92\x39\x88\x31\x7a\x8c\x17\xde\x18\x2e\xef\x35\xc2\xa9\x5d\x31\xfb\xca\xdc\x2a\xfd\xcb\x69\x20\x01\x61\xc6\x94\x23\xba\xa8\x07\x22\x76\x12\x8e\xff\xf6\xb8\x3a\xfa\x96\xd4\x0d\x08\xbf\xf9\xb2\xce\xdd\x65\x2c\x70\x7d\x5c\x12\x8d\xf1\xcc\xb9\xd3\x75\xa9\x7f\x8b\xf8\x88\xc5\x42\xc3\x99\x1f\x02\x25\x69\x33\xe0\x7e\x29\xd9\xa3\x2f\x74\x80\x99\xa6\xe5\x25\xc0\xdf\x7c\x21\xdc\xd8\xdb\x0e\x56\x00\x68\x58\x87\x13\xce\xa6\x41\x33\x45\x46\x69\x8d\xf7\x2b\xc4\x4c\x2e\x7d\x25\x7d\xe9\x49\xcd\xba\x98\x16\xb5\x3b\x64\xc2\x5d\xe9\x97\xc1\x59\xe0\x71\x3f\x3f\xfb\xa7\x6d\x00\x11\xe5\x52\x56\x83\x96\x6d\xd9\x69\x47\x80\xd6\x59\x54\x81\xc9\xc4\x30\xd3\xb9\xf1\x0a\xed\xf8\x92\x2a\xf2\x6d\x5a\xea\xa1\xf0\x96\xcf\x0e\xbb\x5b\x53\x34\xaa\xe3\x58\x09\xc2\x08\x36\x69\x4d\x52\xcf\xa4\xcc\x97\x73\x86\x05\x73\x2f\x00\xf7\x73\xf4\xe3\xdd\x19\x20\x22\x4c\x29\xef\x81\x5c\x77\x5c\xd6\x7e\xcc\xac\x12\x1f\x9b\x52\xa4\xda\xd8\xbb\x5b\x1f\x63\xd5\x69\xec\x46\x9a\xcd\x81\xc4\x3e\x36\x4f\x8e\xcf\x5a\x07\xb8\x2f\xb1\x25\xdc\x01\x73\x4b\x9f\x4e\xa2\x42\xde\xd7\x31\x5d\x7d\x99\x5f\xbe\x0d\x06\x18\xd8\xac\x22\x87\x78\x9c\x91\xf9\x27\x6d\x82\x6c\x51\x47\x00\xcb\xf9\x63\xfc\xe9\x98\xfa\x3e\x35\xc4\x38\xd6\x79\x54\x57\x0b\x8d\xc5\x07\x0e\xde\xe1\x1b\xf3\xf5\x99\xb4\xc9\x02\xe2\xcb\xde\xd7\x13\xeb\xce\x93\xfb\x89\xa7\x41\x3b\xc6\x4b\xac\xa2\x8f\x51\x89\xfb\x72\x3e\xd6\xaa\xd3\x2c\x8b\x46\xa1\x17\xf3\x6f\x47\x80\x39\x17\x61\x8c\x0a\x77\xb5\x6c\xf7\x73\xa0\xbe\x97\xaf\x78\x9b\xf6\x61\x33\x66\x26\xd9\x2b\x8f\x88\x9f\x79\xfa\x72\x2d\x03\x74\xb1\x65\x51\x7e\xbd\x03\x45\xfb\x4d\xe9\x9a\xd4\xa6\x9e\x2f\x02\xf4\x17\x7b\x04\xb0\xba\x7b\xda\x74\xae\xbb\xb2\x22\x86\x7c\x3b\xa6\x15\x24\x0a\xb4\x1b\xba\x34\x51\x25\xe4\x73\x7b\x60\x89\xdc\xd8\x2c\x7b\x03\x37\xf9\x18\x62\xaf\x33\xb7\xbf\x0e\x5a\xed\x98\x61\x9b\x3a\x22\x99\x31\xea\xf7\x27\x59\xcf\xcc\x99\xd3\xb8\x82\xdb\x26\x75\x52\xd5\x7c\x22\x0a\x2d\x3f\x18\xd8\x01\x64\x74\x3c\xe1\xb0\x1c\x7f\xb3\x2f\x9c\xd6\x88\xcb\x16\xf2\x62\xe2\x72\x76\xeb\xfa\xf3\xe4\xad\x20\x5e\xe6\x9f\xe7\x8c\xd1\x42\x6f\xb3\x84\x9d\xf4\xbb\xca\xde\x77\x4a\xc9\x54\x73\xdd\xf4\x1f\xad\x1d\x2a\xd7\xdb\x94\xcd\x81\xe8\xb3\x4b\x77\x0c\x07\x3d\x3b\x6a\x13\x4f\x78\xbb\xbc\xa5\x76\xb6\xc9\x45\x01\x0b\xe1\xc3\x40\xfc\xc9\xa6\x25\xf1\x1f\x0f\x8d\xd3\xfb\x47\xd1\x15\x1c\xa5\xa6\x62\x61\x0e\xbf\x3a\x42\x2b\x1e\x70\x43\xfc\xcb\xef\xca\x32\x50\xd1\x5e\x54\x03\x6f\x7b\xc5\x72\x69\x4b\x40\x2d\xa8\x4b\x92\xfd\xc5\x26\xc0\x7b\xb0\x50\xb3\xc1\x48\xa5\xca\x11\xbd\xdf\x7e\x55\xdc\xe9\x16\xae\x20\x53\xa8\xe8\xff\xef\x71\x4d\xc4\xa4\x8e\x59\x19\x56\x82\x99\x11\x6d\x43\x15\x7b\xff\x26\xe9\x33\xf6\xf1\x17\xb4\x1c\x5f\xd4\x3a\x52\x4a\xea\xd3\x7b\xc7\x80\x5e\x06\xf3\xed\x80\xd3\x1d\xb4\x2e\xe4\x90\xf4\x5f\x6e\xf2\xf4\xbe\x84\x9a\x49\x6e\xf4\x4f\xb7\x80\x88\x45\x2a\x22\xf3\xe8\x33\x3e\xb2\x52\x55\x28\xcd\x28\x8d\x49\xb2\x84\x1d\x2f\xea\xdc\xde\x32\x17\x9a\x13\x74\xd6\x53\xdb\x86\x41\x8a\x6e\x7c\x37\x8d\x3e\x3c\x0c\x6e\xda\x22\x15\xe2\xf5\x6c\xe9\x15\x5a\x9d\x62\xf1\x90\x81\xb9\x0d\xb8\xda\x3e\x6e\x97\xda\x00\x53\x27\xcf\x9c\xd9\xcd\xa1\xd3\x12\x40\xe4\x53\x17\xd4\x24\xf4\xb0\x16\x3f\xab\x58\x64\x66\x3c\xf3\xee\x95\x64\xc3\xdb\x02\x92\x90\x99\x57\xdd\xad\x67\x01\x26\xb2\xac\xce\xb8\x58\x1c\xb4\x62\x88\xac\xd3\xa2\x28\x2d\x61\x83\x0b\xee\xd6\x6d\x90\x03\xbf\x1a\xf7\x86\x6e\x5a\xd1\x97\xfd\xcb\x58\x1d\x44\x69\x11\x93\x24\x2c\x56\x63\x5a\x55\xdb\x12\x25\xec\x79\x48\x75\x97\xc2\x3d\x77\x75\x34\x5a\x7b\x1e\x52\x2e\x72\xce\xab\x23\xa0\xf2\x4c\x14\xcf\x45\x46\x61\xf4\xbc\x0a\xac\x1a\xf1\x3a\x62\x0a\x83\xf6\x27\x36\x68\x15\x2f\x0a\x3c\x54\x91\xe3\xf6\xec\x43\xe3\x2e\x05\xe7\x2b\xca\x44\xa8\x5b\x85\x68\x90\xec\xd3\xbb\x92\xe4\xaf\x17\xea\xf9\x1a\x9f\xda\x93\xc8\x43\xf0\x21\x87\xf1\x45\x5f\x17\x4a\x28\x52\x8e\x46\x10\x5d\x81\xa1\x57\x41\x35\x61\x6e\xde\xc4\x8f\xc8\x6f\x77\x8a\x3b\x72\x05\x0a\x2c\xd0\x21\x5a\x7d\x56\xd3\xce\xc3\x9e\x17\x93\x9f\xb2\x9f\xdb\x9e\xbe\xa6\x6b\x0c\xf5\x10\x13\xd7\x26\xc1\x3c\xc0\x18\xec\x8a\xf3\x58\x16\x49\x32\x07\x02\x1c\x82\xf4\x0a\x1b\x17\x91\x10\xff\xdc\x7e\xf4\x62\x30\x58\x66\x0c\x31\x12\x55\xff\xc8\xe1\xd3\xa9\x43\x9b\x35\xbe\xa3\xe9\x93\xba\x8a\x40\xb9\x0f\xbe\xa4\xb0\x3a\x75\x94\x00\x6e\x5f\x05\x44\x9e\x52\x60\x26\xee\x5b\xc6\x7b\x0f\xa4\x2f\x4e\x1e\xcf\x31\x6f\x7f\x29\x56\xd8\x79\x1b\xd4\xfb\x92\xe4\x6b\xa1\xd6\x34\x4c\x9d\x88\x58\x12\xc3\xb8\xe8\xa0\x3e\x0e\xf6\x02\x96\x5c\x32\xd9\xcb\x6f\x06\x1e\xd2\x62\x64\x64\x0b\x57\x32\xe3\xba\x39\xe9\xea\x10\x23\x4f\xca\x9e\x18\x68\x8c\x6e\xd2\x26\xd9\x1d\xd1\x1b\x3b\xfe\x04\xbc\x3d\xe4\x91\x0a\x1f\x9a\xaf\x75\x50\xb8\xd4\xac\x48\x03\x86\xef\x1c\x01\xca\x42\x6a\xa9\xa9\xe7\x38\x60\x3f\x1a\x25\x49\x92\x14\xdd\x97\xdb\xb0\x5b\x57\xdc\x23\x66\xcd\x8a\x45\x6d\x8d\x35\xba\xc5\x9b\x65\x71\x95\x7d\xc7\x4b\xda\x58\xc6\xf7\x5f\x06\x13\x5d\x54\x41\x4e\x0d\xe5\x0b\xe1\xb1\xd1\xba\x77\x9d\x90\xd7\x89\x71\x0a\x19\x4f\xcc\xd7\xf3\x37\xb9\x8c\xb4\x2a\xd7\x64\xb3\xdd\xba\xa7\x8d\x17\xf0\xfa\x51\xe0\x78\x1b\x13\xb5\xfb\x9b\xb7\x40\x3b\xe3\xa1\x6d\x76\xa1\x76\x45\xc8\x80\x17\x0f\xbb\xb6\xef\x1b\x09\xb9\xaf\x3a\xeb\xe6\x82\x1b\xd2\x2f\xb9\x8e\xac\x00\xc7\xc9\x43\xc7\x5b\xca\x61\x52\x5c\xb5\xdf\x58\xd5\x06\xf7\xbc\x1b\x48\xb1\xd8\x27\x96\x26\xbe\x14\xb3\xf2\x85\x70\xe5\xfa\x36\x90\xdb\x27\xa2\xd6\xe1\x4f\x07\x2a\x3a\x09\xa7\x8b\x65\x76\xbe\xae\xd3\x86\x5d\x1f\x11\x47\xa6\x63\x5f\x5d\xa5\xfd\x2b\xf1\x51\x49\x5a\x4c\xf7\x19\xdf\x98\xaf\x61\x92\xec\xa0\x52\x49\x34\x29\xc3\x59\x60\xb5\x4a\xd4\x94\x60\xbf\x47\xd6\x0c\x85\xf8\xb2\x32\x97\x0e\xc9\xd6\x4e\x00\xf1\x65\x62\x07\x16\x70\x73\xef\xcb\xcc\x1a\x3b\x4c\x86\x6f\xc7\xc1\x49\x4b\x3d\x87\xdf\x88\xe1\x39\xd4\x73\xc5\xb8\x70\xc0\x92\xcb\x40\x19\x8b\x99\x83\x5b\x7b\x8a\x83\x0f\xa8\xdd\x8e\xcd\x2a\xb6\x78\x39\xf4\xe9\x57\xc5\xdf\x98\x31\xb9\xab\xab\x2b\x6f\x63\x21\x70\x97\x9b\xdf\x0e\x8d\xe7\x88\x44\x4a\x18\xb7\x4d\xed\x57\xeb\x51\x4e\x46\xbe\xb3\x56\x4f\x60\xe4\x01\x91\xe7\x6d\xff\x16\xbd\x8c\x67\x0e\x62\x25\xa1\x35\x95\xdc\x78\x0f\xe8\x9a\x3e\x9c\xc2\x18\xe5\x96\xe2\x22\xf8\x56\x4f\xfa\x53\xf8\x88\x00\xd9\x98\x71\x7a\x83\xcc\xf3\xd8\x41\x39\x11\x61\xa8\x21\x8e\x75\xcf\x7d\x6d\x60\xd2\x5e\x21\x8e\xd0\x9e\x0d\x83\x41\x2d\x1e\xaf\x38\xaa\x6a\x44\x35\x94\xbf\x4b\x17\xd5\xf3\x03\x08\x0e\x73\xb7\xa6\xff\x7d\x06\x57\x9e\xe3\x47\x57\x20\x87\x0f\x6b\xf0\x27\x17\x99\x78\x52\x8a\xbe\x91\x0b\x96\x8b\x72\x21\x5f\xa4\x81\x18\xe1\xdd\xe9\xab\xa5\x12\xa1\x2c\x0a\xaa\x0f\xee\xfb\x50\xa3\xb5\x09\xd6\xdf\x64\x6e\xcf\xa3\xb1\xae\x5d\x1d\xc1\x68\xf2\xb7\x91\xa3\xb4\x80\xc4\x71\x5c\x2a\x61\x7c\xeb\x06\xa0\xe8\x5e\x89\xcf\x7a\xfd\x2a\x8d\x78\xed\x62\x6c\x56\xa5\x78\xd0\x17\xde\xeb\xc7\x5f\x5b\xf0\xd2\x07\x77\x2b\x3b\x2d\x02\x35\xc7\x47\xfb\x62\xd3\x7d\x1c\x59\x20\x5d\x35\xee\x1d\xab\x8f\x77\x85\xb4\x8d\x54\xa0\xeb\x18\x0d\x3a\x92\xd4\xc7\xdc\x71\x28\xba\x08\x5f\x1c\x02\x68\x16\x18\x71\xd1\xd7\x0f\x3e\xa4\x8a\x87\x32\xa3\x40\x6b\x39\xf3\xd7\xb5\x29\xc4\xb3\x5f\x15\x86\x66\x99\xd5\x87\x65\xae\x24\x80\x21\xfc\xe6\x78\xfc\xcd\xf3\xe2\xb0\xd8\x9d\x2f\x84\xfe\xae\xe4\x56\xab\xe1\x16\x35\xfe\xec\x90\xc7\x94\x25\x9a\x5f\x6c\xc9\x67\x47\x6a\xa6\x14\x26\xa9\x93\x58\x8b\x3c\xf3\xe4\x7c\x81\xc8\x58\x8a\x6a\xb8\x89\x9d\x1a\x55\x4d\xaa\xb1\x53\x95\x08\x12\x70\xc7\x0c\xdb\x27\x4a\xf9\xec\x80\x94\x50\x8c\x80\xba\x77\x4b\x9b\x5c\x7b\x9b\x98\x50\x31\x69\x2f\x90\x1a\xbc\x2d\x40\x8e\x2f\xd3\xae\xf0\xdf\xae\x02\x67\x5d\x49\x72\x1d\x1b\x0e\xa6\x70\xb7\x05\x84\x35\xf9\x89\x58\x06\x72\xe4\x12\xf1\xfc\x80\xf3\xa3\x7e\x7f\x50\x49\xc3\xfa\xb2\x35\x18\x7e\xf9\x0c\x10\x37\xec\xc5\xac\x88\x48\x8f\xb0\x13\xb9\x66\x0f\xd0\x22\x0e\x6c\x5b\xc0\x3f\x8c\x4b\xce\xef\x2f\xe6\x4c\x8e\x79\xd3\x8b\x76\x5c\xaa\x6d\xdf\x0a\x11\x22\xe7\xf1\x0d\xb4\x65\x8b\x38\x4a\xa0\xb1\xdc\x09\x8a\x48\x0f\x52\x41\x9e\xbe\x15\x4a\x73\x31\x86\xe5\x74\xe8\x96\xad\x9a\x1e\x4f\x54\x58\x8b\xe3\x9c\x59\xbf\x21\x59\xe0\x32\xa7\x8d\xa4\x1a\xb2\xef\x6c\x55\xaf\xa6\xe6\x10\x5c\x17\x3c\xea\xe1\xda\xf1\x31\xa9\x9d\x28\x54\xfc\xf6\x69\x6d\xd8\x8c\xcd\xaa\x43\x6e\x0b\x24\x0e\x21\xf3\xc1\x01\x63\x74\x07\x91\x1b\x35\xf6\x66\x78\xe1\x3e\x5d\xc5\x9b\x0a\x97\xb9\x98\xf4\xf4\x47\x69\xf9\x6c\x22\xe6\x37\xaa\x18\x5b\x22\x93\xcc\xad\x3a\x2d\x3a\xcb\x2b\x5b\x76\xea\xd7\xbb\x47\x03\x7d\x2f\xbb\xd8\x8a\xbf\xcb\xfe\xe0\x0e\xa5\x7a\x41\x28\x38\xc5\x99\x4d\xd2\x3f\x2d\xe0\x23\x09\x63\x90\xa6\xd0\x21\x9c\xea\x24\x9c\xe9\xf8\x51\x7d\x52\x80\xcc\x9a\x0c\x17\x7b\x8f\x9f\x27\x1f\x9b\x9b\xbd\x7d\xf3\x81\xa1\x0d\xd0\xa6\x95\x8a\xba\xcb\xc7\x27\xb5\xb9\x20\x3d\x0f\x7f\x14\xf0\x23\x31\xf3\x02\x14\x27\xce\xdf\xd1\xd6\xc1\xa6\x4e\x09\x09\x0d\x8d\x70\xd5\x4b\x9a\x35\x5c\x4a\x6b\x2a\x6e\x8d\x7f\xc3\x15\xf5\x82\x69\x89\x46\xa3\x71\xe1\xfa\x64\x3f\xd8\xb8\xd5\x20\x62\x6b\xb7\x6c\xdd\x53\xc7\xaf\x50\x1b\xb3\x66\x3c\x12\xfa\xfe\x7e\x71\x4a\xb9\xc6\x73\x49\x2a\xa6\x44\x9f\x38\xf6\x69\x08\x3b\x82\xf3\xe6\xff\xef\xf9\xf4\x56\xa9\x09\x61\x27\xf9\x70\xe1\x79\x47\x5b\x33\x1a\x4e\xe1\xe5\x1d\x82\x69\xf7\x0b\x77\x8c\x99\xf9\x7c\x21\xfc\xd6\x28\x80\x48\x23\xcc\x0c\x6c\xf1\xf7\xa3\xd7\xf7\xcc\x41\xcd\xce\x67\x46\x67\x57\x97\x80\xe9\x3e\xd8\x0e\x30\x49\x96\x70\x90\x54\xd7\xcb\xb4\x1b\x40\xda\x83\xcb\xd1\xcd\x9d\x2f\x84\x77\x6c\x96\x6b\x28\xf9\x23\x77\xef\xd2\x64\xdb\x4c\xea\xfb\x93\xa0\xe5\x6f\xe6\x0f\x6f\x88\x97\xb6\x14\x47\x37\x14\x10\xaa\x35\xbe\xdc\x21\x11\x63\xd1\x25\x2f\x4b\xaf\xde\x5d\x62\x57\xdc\x54\xa5\x8c\xb3\x65\xf9\xeb\x7d\x75\x48\x0b\x25\xdf\xac\x26\xb5\x84\xf1\x63\x4d\x54\x8a\xf4\x62\xbf\x88\x2b\xb4\x4e\xcc\x74\x3c\xec\xdc\x0d\x44\x87\x5d\x97\x0a\xb1\x8f\x2c\x5a\x22\x5a\x64\xd3\x3b\xa7\xf0\x5a\x68\x95\xd2\xbf\x24\x2d\xd1\x38\xfb\x9f\xc7\x34\xc5\x7c\xec\xc4\xca\xb1\x3f\xdc\xd4\x9e\xca\x6b\x81\xa6\x02\x1b\x1c\x6f\xfe\xd8\x5f\xe2\x0b\x8f\xa6\x5d\xe2\xe4\xb6\xde\xbc\x5f\x41\x87\xcd\xc4\x85\x65\xcb\x13\x40\x31\x1e\x31\x49\x64\xfc\xe0\x2d\x2a\x54\xf6\xe0\x46\x74\x3f\x85\xb5\x6a\x2c\xd0\xe3\xd4\x89\x23\x35\x65\xb3\xcf\x8e\x1b\x06\x9f\xcc\x0e\xa2\x44\x3c\xfc\x77\xcd\x2c\xbf\x84\x13\xf4\x95\xb1\xf7\x0d\x71\x38\x2a\x16\xe5\xd4\xb0\xec\x33\xc2\x53\x2d\x7f\xe3\xf2\xc5\x37\x2e\xbf\x71\xd5\x8d\x2d\x45\xc0\xed\xa3\x86\xc9\x72\xce\xb2\xf2\x45\x5a\x12\x74\xd7\xec\x97\xa6\x8f\x52\xcd\x31\x54\x6b\xbd\x7a\xfe\x78\x50\xdd\x4e\x9c\xd4\xd2\x4a\xe4\x3c\x92\x74\xe8\x2c\xb4\x2e\x6e\xfd\x7f\x3f\xf3\x7f\x29\xa7\xf1\x97\xb3\xe1\xa1\x0b\xd4\xe5\xce\xb1\x09\xdd\x4f\xa6\x21\x30\x2e\xf6\x19\xb5\x70\x60\xf7\x37\x10\x30\x8b\x22\xf6\x4c\x9b\x32\x79\xd6\xd4\xd9\xf9\x42\x38\x7d\xa7\xa6\x58\x85\x2d\xe4\x10\x0d\xac\x98\x9b\xf0\x88\x36\x25\xe0\x60\xf3\x38\x8f\xfd\xc1\x01\x8d\x0f\x19\x20\x16\x30\xe4\xf1\x16\x53\xa1\x2f\xfb\xc3\x53\x1f\xd2\x63\x8b\x8b\x6e\x9b\x64\xb7\x36\xd3\x76\x0e\x69\x29\xd8\x2a\x0c\xd9\xf1\xdd\x66\x7c\x7a\xa2\xae\xf4\xd6\x43\xb9\x02\xb9\x1d\xdd\x2e\xe1\x06\x7d\xe1\x8b\x89\x3b\xd5\xaf\xdb\x74\x50\x03\x22\x95\x2a\xe1\x84\x3b\xd8\x72\x1e\xb1\x41\x35\xb3\x7b\x65\x0f\x2d\xf3\xe4\x08\x3d\x7b\x9c\x2d\x32\xeb\xef\x54\xfb\xf1\x66\xe1\xa8\xde\x33\xaf\xab\x71\xba\x2b\xf4\x9f\x8d\xd3\x27\xd3\x27\xda\x0f\x2c\xd4\x9f\xa5\x5e\xee\xf3\x9b\x14\x0e\xbd\x1a\xf0\x8d\x7b\x2e\xc8\x68\x18\xf6\xaa\xc8\xe5\x5d\xb2\x31\xcf\x40\x2b\x22\xb7\x8a\x3c\xa1\xd4\xfa\xd5\xa2\x76\x9c\xab\xd4\x17\x32\xe1\x5f\x58\xa9\xcd\x55\x1c\x3e\xaf\xe3\x81\xfe\x87\x63\xc0\x3c\x36\x70\x3c\x62\x0a\xdb\xe9\xec\x0b\x8b\x34\x5b\x69\x7b\x5a\xe7\x8c\x2e\x99\x41\xff\xe5\x05\x75\x14\x78\x38\xd0\x23\xcc\x95\xf5\x96\xc9\x82\x6b\x91\xc4\x47\xaf\x2f\x77\xe7\x89\xf4\xe2\x30\xd2\x9f\x8c\x41\xb8\xea\x89\xcb\xb4\xa2\x0a\xaf\x33\x03\x8f\xfb\x13\xc7\xa2\x9f\xab\xe1\xf8\x1a\x99\xd5\x18\x41\xf4\xaf\x9b\xd5\xba\x4e\xeb\xec\x9e\x1a\xbd\xa4\xbf\x87\xa0\xb5\x22\xa7\x5b\x85\xbe\xec\xb4\xe3\xda\x60\x06\xfb\xca\x18\x2a\x57\x1b\xa9\xd6\x86\xb2\x28\x7c\xd4\x14\xd8\xd2\x43\x01\x9c\xb3\x1a\xbf\x98\x03\x24\x48\x91\x90\x6c\xca\xd5\x07\x81\x22\x8f\x33\x33\x2d\xde\xc4\xce\x75\x8c\x02\xf3\x34\xc4\x84\x57\x69\xf4\x44\xc6\x16\x6d\x1c\x5e\x65\x18\xf9\xd8\x49\x44\xf5\x32\xa7\x40\x9a\x48\xd6\xe5\x19\xa5\xdc\x64\x71\xdb\xae\x36\xb0\x6b\x7a\x12\x1b\xa0\xcc\xa1\x13\x49\x46\xe2\x7b\x3c\xf8\xfe\xe5\x3d\x2d\xe8\x55\x71\xb9\x4c\x30\x9f\xd7\xc8\x77\x68\x9e\xd1\xda\x40\x81\x5f\x8d\x8e\x1f\x8a\x29\x81\x85\xbe\xcc\xc4\x5b\x75\xe6\xa3\x47\xcc\xb8\xa9\xfa\xed\xf1\x23\xf5\xac\x95\x44\x41\xb7\xc4\x07\xbe\xd9\x05\x25\x89\xf7\xae\x22\xbb\x88\x82\x0a\x2c\x0c\x16\x17\x93\x4c\xce\x45\x50\x3e\xff\xd9\xbd\xe9\xbd\xe3\x52\xcf\x17\x06\x1f\xe9\xab\xa5\xb4\x50\x31\x35\xd6\xb5\x80\x37\x72\xb3\xda\xb4\xf2\xb1\xca\x68\x10\x3b\x27\xff\x71\x88\xee\x46\x18\xc4\x92\x14\x99\xef\x31\xb5\xc4\xb3\x66\xc9\x9d\xb5\x73\x96\xe6\x8c\xc4\x84\x73\xb4\x02\x9d\x95\xb5\xee\x75\x89\x20\x8b\x56\x02\x2c\x09\xd5\xd9\x6f\xdd\x05\x26\xc0\xd4\x83\xe3\xa9\x93\xcf\x83\xb9\x0c\xb6\xb9\x2b\x7e\xb8\xeb\x99\x8b\xb4\xbf\x68\x27\x3d\xb6\x67\x27\x8b\x38\xf3\x09\x04\x52\xe0\xec\x7f\x4f\x54\x7f\xc1\xa4\x76\x91\x38\x89\x3e\xe8\xb2\x91\x00\xd9\x49\xa9\x23\xa4\x73\xb7\xae\x53\xfb\x1c\x43\x4f\x80\xbe\xdc\xbc\xa3\x4a\x63\x05\x52\x32\x8c\x2f\xe4\x86\xc8\xe2\xcc\x73\x49\x9c\x0c\xcc\x3a\xa3\xce\x62\x49\x78\xe0\xe5\xea\xab\xb5\xaa\xaa\x5c\x46\x24\xc1\x7b\x18\x53\x4b\xaa\x39\xd6\x35\x3d\xfa\x2f\xbf\xaa\x82\x82\x1a\x99\xb5\xce\x7c\x21\xdc\xf7\x68\xf2\x53\x5e\x39\x1f\xfd\xd4\x4b\xa3\x13\x04\x93\xd7\x4c\xab\x81\x2d\xd8\xa2\x8f\x31\x50\x59\x75\x72\x5f\x7e\xe9\x62\x7d\x7d\x44\x24\xe2\x87\xa5\xf6\xa6\xce\x84\x8f\x3b\x92\xe6\x09\x5d\x0b\x3a\x76\xbb\xe5\x75\xdb\xb7\xa7\xc6\x72\x94\x8c\xf0\xd9\xc7\xf0\x87\xb4\x11\xa5\xc8\x99\xe2\x70\xff\x2f\x3b\x14\x36\x71\x3a\x87\x59\xbd\xbb\x3e\x1e\x75\x26\x02\x28\xf9\x42\x78\xd7\x16\xb5\x62\x41\x0c\x9f\xcd\x96\x57\x00\x0d\xc5\xc0\x16\xe6\x04\xc6\x17\x80\xf9\x76\x25\xc0\xbe\xcf\x2b\xc0\xdc\x47\xc3\x74\x94\xe3\xb6\x0c\xd1\x5b\xbd\x62\xb0\x16\x56\x29\x8d\x95\x2c\xb2\x73\xca\x89\x0b\x01\x57\x5b\x0d\xcf\x1b\xad\xb3\x40\xb1\x2d\x93\xff\x67\xb7\xa8\x19\x88\x43\x99\x10\xbb\x2b\x51\xe1\x5a\xc6\xbf\xed\xfb\xc7\xc5\x46\xad\x36\x5d\xea\x57\x31\x8f\x65\xe1\xd7\xc2\xf3\x13\x3d\x5e\xbe\x3b\x07\xde\x21\xde\xe1\x0a\x8c\x44\x39\xf2\x78\x27\x38\x10\x88\x89\x98\x95\x99\x56\x1d\x06\x9a\x99\x71\x51\x93\xdd\xde\x21\x1b\x93\xc8\x27\xd2\xd7\x64\xd2\x22\xb5\x95\xca\x96\xb0\x29\x33\x7e\x97\x51\x5e\xe2\x42\x97\x44\xb5\x0a\x79\x15\xdf\xa3\xb6\x3c\x85\x17\xd2\xa4\x5e\x6d\x10\xe4\x23\xa5\xad\x9a\xbd\x67\x7f\x7a\xbd\x85\x3f\x33\x8d\x6d\x77\x07\x6e\x57\xe8\x03\x87\xc0\x0f\x0e\x6f\x57\xd6\x15\x26\x6c\x98\x65\xae\x3e\x90\xde\x8c\xd4\xf4\x3b\x79\xea\x1e\x36\xda\x35\x80\xae\xeb\x32\x5a\x47\x56\xc2\x02\x3c\x3c\x00\xf4\xf0\x48\xa5\x2a\x78\x61\x86\xb7\x0f\x86\x0d\xb3\x69\xca\x62\x3c\xfb\x5a\xaf\xc6\xab\xa6\xb4\x96\xe8\x50\xa5\x2f\xd4\xea\x19\x5d\x60\x94\x96\x89\x2f\x7b\xd7\x3f\x19\x0b\xc5\x3d\x4d\x31\x58\xcc\x7e\x73\xae\x46\x25\x47\x12\x13\x9a\xad\xbf\x91\xfe\x22\xc4\x76\xff\x7f\xba\xde\x06\xdc\x8a\xaa\xde\x1f\x67\xbf\x44\x44\x80\x87\x17\x01\x01\x11\x89\x8b\x04\xec\x13\x1c\xde\x89\x0c\x11\x11\x09\xd9\x06\x88\x46\x46\xac\x3d\xb3\xf6\x9e\x75\xf6\xcc\xac\xed\x9a\x99\xbd\x39\x27\x33\x33\x23\x22\x23\x32\x22\x32\x33\x53\xf2\x1a\x99\x99\xd7\x8c\xbc\x44\x44\x5e\x23\x33\x22\x22\xe3\x4f\xfe\xcc\x88\xbc\x64\x5e\x32\x2f\x9a\x79\x3d\xd3\xff\x99\xef\x5a\x6b\xd6\x9a\xb5\xe9\x79\xee\xf3\xf4\x5c\x81\x73\xf6\x9e\x59\xeb\xfb\xfa\x79\x61\xd4\x6b\x84\x91\x1c\x4c\xdd\xf4\x88\xa6\x44\xcd\x40\x08\x5e\x45\xba\x25\x8f\x19\xf5\x29\xf2\x6b\x2e\x92\xaa\x42\xf1\xc5\x7b\xc6\x9a\xbf\xd6\xa5\xcc\x16\xeb\xf8\x78\x0d\x1b\xa9\x45\x2b\x58\xe0\xca\x2c\xfa\xea\x11\x73\x71\xc3\x2c\x2c\xab\xde\xc5\x77\xf3\xee\x79\x19\xf6\x7b\xa8\x8a\x89\xf1\x67\xdf\x4c\xdf\xa3\xeb\x6a\x78\xee\xfc\xb7\x1e\x54\xc7\x38\x94\x16\x27\x85\x4f\x76\x18\x6f\x17\x24\x6b\x16\x96\xca\xf1\x69\x65\xab\x19\x6a\xab\xc4\xf8\xad\xa7\x35\xfd\xef\x88\x4b\x24\x7f\xeb\x51\x45\xb5\x75\x28\x68\x78\xb7\x69\x7a\xad\x56\x38\xe8\x16\x81\x2b\xf4\xa1\x67\xc7\xb6\x9f\x1f\x64\x39\x72\x07\xb2\x7a\xaa\xe2\x2f\x54\x89\xeb\xb5\x75\x95\x56\xff\x31\xe6\x21\x08\x71\x10\x06\x42\xb2\xeb\x07\x47\xd4\x37\xa0\x3a\xef\xe1\xad\x37\x5d\x78\xae\x3b\xc4\x8d\xd3\xa0\x75\x1c\xf1\x84\xb6\x28\x70\x6d\xcc\x9f\x56\xfe\x7b\xb7\x28\x3e\xfe\x25\xc8\x0f\x09\x50\x88\x42\x12\x78\xa0\x1e\xf0\x31\xce\x27\x28\x5d\xc3\xb8\x24\x61\x5b\x19\x70\xe3\x01\x63\x11\x06\x68\x36\x49\xce\x2c\x8e\xdb\x78\xb1\x11\x0a\xa3\x9a\x8b\x4c\x75\x8c\xfb\x9e\x30\x8e\x45\xe4\xdb\x72\x3f\x5e\x58\x6c\x50\x1a\xb0\x6f\xd3\x96\xc7\x09\xa0\x30\xbe\xdb\xb8\x49\xd5\x72\x75\xd0\x3a\xe6\xe4\xb9\x0e\x43\x92\xb4\x1a\xb1\xd4\x3e\x9f\x53\xd8\xfe\xf1\xa4\x62\x0a\x20\xb5\xe3\x8d\x67\x1c\x93\xca\x20\x35\xca\x77\x9b\x6f\xec\x34\xf0\x7f\xbc\xda\x14\x05\xfd\xcf\x4c\xcb\x50\xea\x83\x88\x8d\x2c\x79\x56\x88\xc9\xf8\xca\x28\x63\x79\x7b\xf5\xc0\xec\x49\x6d\x61\x26\x7d\x59\xfe\xa0\x45\x68\x97\x88\x65\x6a\x7e\xb5\x1a\x49\xd4\x70\x1b\xfd\x34\x7f\xf8\x7e\x63\xad\x11\x52\x2e\x74\xcc\xaf\xed\x97\x1e\xe3\x69\x20\x62\xdc\xa7\xbf\xf0\x1f\x0f\x68\x6c\x56\xda\xd6\x85\x1c\x3f\x7c\x9e\xb8\xc3\xd5\x14\xd4\x6a\xe7\xd5\x01\xc6\xa4\xe6\x84\x4e\x52\xda\xd8\xd0\xc3\xc0\x56\x61\xd0\x8b\x97\x18\x07\x18\x7b\x04\xb3\x73\x81\xed\x72\x5f\x5c\x9d\xad\xa0\x6b\x98\x79\xbc\x30\x48\xed\x6c\xf1\xa1\x31\xe9\x73\x68\xb6\x8f\xe6\xbf\x64\x38\xb6\x81\x41\x27\xd7\xf1\x2e\x6c\xdd\x6e\xf4\x6d\x9b\x88\x2b\xb7\x0e\xf9\x6d\xdb\xcc\xaa\xa3\x09\x7a\x1f\xe2\x48\xfd\xb2\x91\x7d\x92\x55\xe1\xc4\x22\x0a\xc4\xdc\xfb\xaf\x37\x33\x7c\xcb\x97\x77\xfc\xa1\x67\x35\x8f\x60\xe4\x7a\xa5\x72\x7c\x64\xfd\x50\xe5\x77\x20\x87\x39\x85\x3f\x9f\x31\xa0\xee\xa8\x4a\xc1\x6e\x19\x1b\x48\xa5\x5d\xb7\xf1\xe3\xd3\x60\xd4\xc2\xd8\xe6\x8e\x30\x7d\xb9\xd5\xc7\x0d\xcd\x39\xaf\xe1\xd2\x1e\x05\xe0\x59\x31\x4e\x0d\x1d\xf5\x5a\x3a\x5e\xf1\x94\xa1\xd3\x8c\xea\x52\x14\xa7\xb0\xcf\xd6\x78\xbe\xdc\xda\xa7\x89\xf9\xe2\x72\xc5\x78\x35\x29\xac\x20\xc6\x68\x4b\xcf\xe2\xbb\xce\x9e\xeb\xd3\x60\x1c\x08\x5f\xdc\x65\xfd\xb3\x33\x0d\x8f\x04\x96\x83\x40\x24\x8f\x65\x04\x64\x73\x7f\x5c\xaa\x85\xf5\x16\x76\xb9\x41\xd6\x87\x9f\x17\x82\x49\xca\x2a\xf8\x1d\xbd\x63\x8c\x66\x4d\x57\x1f\xcf\x5f\x77\xd2\x44\xcd\xbb\x9c\x6c\xa3\xfd\x95\xbd\x06\xa2\x05\x76\xa2\xd0\xc4\xc4\x1f\x79\xee\x3c\x7d\x30\x07\xc5\xc8\x27\xf7\xaa\x1a\x87\xba\xed\xe3\x98\xaf\xbc\xa9\xd7\x01\x35\xae\x44\x07\x87\x62\xd0\x45\x6d\x23\x47\xf3\x3a\x1c\x3d\x36\x5c\x23\xf9\xd3\x00\x43\x97\x1b\xff\x79\x99\xfa\x9d\x80\x5a\x40\x86\x0e\xfe\x5d\x4a\x2e\xcc\x23\xb6\xed\x62\x6e\x20\x5a\x2a\xc7\x4f\x6f\x36\xe3\xaa\x2b\x0d\x96\xe2\x6f\xed\x33\xdd\xaf\xb8\x41\x11\x9f\x9c\x57\x5f\xd6\x60\x27\xc4\x0a\x09\x17\x1c\x12\x00\x92\x17\x84\x6f\x73\xcb\xa1\x1e\x6e\x72\x34\x77\xf3\x4d\x41\xaa\xa7\x54\x90\xea\x0b\xbf\xbd\xbe\x9d\xaa\x15\xe9\x2a\x26\xc5\xfe\xe3\x75\x30\x60\x88\xfd\x80\x54\x05\x0e\xd9\x59\xa6\x81\x03\xa2\x20\xa4\x1e\x02\xcd\x81\x5c\xd7\x6c\x4d\x7f\x0d\x31\x86\x43\xcd\x1d\x2f\x3f\xe7\x35\x3e\xc4\x45\x35\x5a\x2a\xc7\x63\x0d\x30\x3d\x6d\x60\x3f\xb5\x88\x9c\x75\x46\x61\x62\x67\x41\xab\xd0\xd1\xcd\x23\x64\xdd\xc7\x1c\xba\x74\xe4\x8d\xa1\x7a\x5d\x47\x60\x86\x94\x9f\x3a\xd7\x28\xae\x7c\xcb\x05\xb3\x66\x11\x68\xd7\x32\xa1\xaf\x2a\xd1\xab\xb0\xe0\xbf\x62\xad\xea\x22\x68\x03\x0c\x59\x93\xff\xdc\xf9\x00\x97\x38\xbc\x9c\x30\x2b\x22\x61\x5b\x91\x31\xf4\x71\xb3\x4f\xc5\x48\x56\xa3\x0f\x2d\xd5\xf5\x40\xfc\x90\xd1\x36\xf7\x87\xbf\xef\x4c\x43\x8f\x0b\x6a\xc7\x57\x5e\x73\x45\xec\x54\x52\x9f\x37\x51\x99\x15\x87\x3c\xaa\x3e\x5d\x25\x92\xd3\xe9\xc2\x37\xb6\x8e\xc8\xd4\xbb\x35\x46\xf9\x75\xc4\x6f\x28\x11\x4c\x09\xf4\x3a\x3c\x51\x9b\x7b\x47\x2e\xf4\x29\x62\xca\x7d\xea\x25\x73\xbd\x6f\x73\x9a\xbb\x2b\x55\xfb\xcb\xf1\x03\x73\x0d\xcd\xd6\xc8\xf5\xc9\xa6\xac\xce\x78\x11\x19\x00\x78\x81\x68\xe7\xbb\x8c\x5f\xac\x53\xcd\x80\x85\x5d\x5c\x61\x29\xb4\x29\x7f\xe2\xa1\x11\xba\x48\x80\x4b\xc5\x02\x29\xf7\xf5\xa9\xc3\xb2\x7f\x00\xb6\x5a\x85\xdb\xfb\x69\xb8\x4f\x6c\xdb\xbc\xa2\x8f\xcb\xaf\xf1\x23\xe2\xa2\x16\x14\x50\x39\x67\x88\xba\x7e\x81\x83\x19\xf6\x70\xd8\x83\x9b\xc9\xe9\x9b\x3b\x46\x7a\x7f\x79\xd4\x62\xc8\x82\xe3\x3b\x4d\xd3\xba\xab\x44\xc4\x0d\x4b\x9c\x78\x37\xf6\x80\x3a\x6a\x75\x1a\xd0\x26\xe4\xa9\x69\x2b\x35\xf9\x7e\xca\x18\x0e\x1a\x54\x62\xc6\x0a\xdd\xcf\x9a\xf0\x66\xa1\x75\x2d\xaf\x57\xd7\xe6\xd4\x76\x8d\x01\xab\xbb\x1c\xbf\xfe\xa4\xbe\x41\x20\x3e\xc7\xe2\xdd\x34\xd9\x94\x2f\xe5\x5e\xdc\xf2\xaa\x7c\x6c\x8b\xc6\x06\x71\x10\x49\xf2\x34\x7c\xfb\xc5\xf7\x18\x98\xc1\x94\x3a\xdb\x23\x2a\x99\x23\xbe\xfa\xa7\x2d\x12\xfa\x62\x07\xdf\x57\x58\xb8\x50\x3b\x71\x6a\xf1\xf1\xee\xcd\x6d\x98\xed\x06\xb6\xc2\xd4\x67\x2a\xb7\xea\xe5\x21\xda\x60\x72\x01\xac\x6a\x0e\x88\x4a\x85\x21\x22\x00\x20\x7f\x5a\x2b\x04\xf9\xac\x95\x38\xe5\xf3\x17\xa6\x4e\x35\x17\xb3\x5e\x03\xa7\x3a\x85\x7d\xf9\x49\x67\x3a\x74\x38\x1a\x85\x59\xee\x5b\x86\x99\x56\x2e\x49\x81\x0b\xb3\xe1\xdf\x9c\xd5\x26\x93\xaa\x1e\x8f\xaf\xb8\x45\x70\xb8\xa8\xcf\x41\xdf\xf1\xbb\xa7\x9b\x83\x78\xad\x34\xeb\xcb\xef\xbf\xfd\x3c\xd1\xdb\x51\x4f\xf8\x7b\x17\x37\xf4\x13\x68\x17\x10\xee\x4c\x02\xcb\xe7\x0c\x25\x43\x10\x23\xe0\x01\xfb\xdb\x27\xfe\x15\x67\x32\xf9\xed\xc3\x66\x28\x59\x27\x7d\x34\x96\xdb\x2c\xdc\x3e\x50\x8d\x81\xcf\x49\xee\x9d\x6f\x66\x47\x96\xbd\x0e\x82\x4f\xa9\x97\xeb\xe8\x29\x63\xf4\x14\x86\x08\xd8\x85\x90\x37\xa3\xeb\x8d\xb3\xd4\xc4\xba\x90\x4e\xe1\xe5\xe3\x7c\x79\xb8\x2c\x72\x81\xef\x66\xbd\x3e\x5c\x5f\x86\xaf\x58\xb1\x7a\x5a\xb9\x54\x8e\x07\xdb\x42\xea\xc0\x61\x38\x70\xf8\xa6\xab\xf0\xf4\x09\x15\x61\x2e\xc9\xec\xfd\xb7\x6e\xd0\x0a\x66\x1a\x09\x21\x9c\xde\x91\xc6\x92\xde\x8d\x2a\x29\xf0\x76\x68\x5e\x1d\xc0\x26\xc1\x2d\x01\x57\xf8\x94\x01\x22\xab\x31\x85\x8a\x8e\x2f\xee\xd2\x94\x3d\x22\x86\x51\x54\x2a\xc7\x97\xbe\x92\x12\x1a\xc2\x16\x6a\x6b\xec\x17\x8d\x4c\xfd\x3e\x1b\xd4\x17\x23\x94\x41\xd3\xd5\xb5\xe8\xc1\x0e\x0e\xea\x04\xf6\x76\x07\xb7\xf1\xad\xfe\x5a\x46\x7c\x62\xa3\xb4\xae\xbe\x7f\x83\xe9\xa5\xed\xba\xb4\x25\x16\xc1\xf9\x7d\x86\xb9\x51\x23\x02\x4d\x43\x51\xec\x5e\x79\x48\xdb\x79\x34\x88\x8d\x3d\x92\xb4\x3f\x39\x6f\xcc\xc5\xfa\x40\x53\xe0\xef\xcc\x9a\xe6\xe4\xf1\x14\xaf\x06\x06\x34\x22\x6c\x7e\xa3\xd3\x9c\x5b\x11\xbf\xce\x4f\xc0\x7e\x6d\xb8\x0e\x83\x07\x8e\x67\xcb\x7d\xe6\x05\x73\xad\xc1\x7f\x62\x0a\x9b\x7c\xc7\x42\x13\x75\x34\x7b\x3e\xbf\x68\xff\x7c\x82\x2b\x1a\xb9\x97\x5c\xe6\x7a\x28\x33\x96\x5c\x3f\xd1\x40\xaf\xb9\x98\xa5\x45\xdc\x86\xc9\x69\xfa\xf3\xad\x54\x04\x73\xf0\xb3\x86\x93\x23\x65\xb0\xd3\x11\x83\x88\xdd\x7b\x85\xd4\x11\x09\x30\x93\x40\xd6\x35\x86\xc9\x5c\xe8\x08\x9b\xc2\xb7\x3d\x6a\x8c\x36\xad\x90\x8a\x16\x64\xcf\x0a\x93\x4d\x14\xf8\x04\x41\xa9\x2d\x02\xd2\x88\xd7\x75\x6c\x63\x15\x33\x2c\x10\x03\x83\x16\x65\x4f\x2e\x22\xca\x1f\x3b\x87\x8b\x86\x37\xa6\x63\x0a\xf7\xe6\x66\xec\x95\x73\xe4\x10\x2c\x10\xf8\xf2\x6b\x7c\xb6\xe3\x08\x50\xea\xe3\x91\x2d\x3a\xbc\xad\x69\x63\x1c\x46\x1a\xd0\xfe\xc4\x22\x85\x31\x80\xb5\xa9\xe5\x24\x87\x89\x13\x57\x4f\x3c\x22\x70\x14\xc4\xb7\x40\x5c\xc6\xbe\x5b\xe3\xd6\x32\xe2\xd7\x03\x0f\xf9\x81\x03\x73\xdc\xe2\xfc\x37\x8c\x16\x8b\x32\x8f\x9b\xf8\x72\x54\xf6\xf3\x1a\x49\xa6\xe5\x24\xe5\x77\x7c\xd1\x89\xf4\x9e\xd5\x7b\xda\xfa\xd5\xc2\xbf\xcf\xcd\x3e\x6d\x25\x6f\x2f\x71\xf3\x53\xb7\x0a\x2d\x7c\xee\x0b\x97\x7c\xc6\xaf\x9a\xb0\xcf\x88\x31\xd0\xef\x12\x1f\xe3\x63\x06\xf5\xc9\x43\x3d\x15\xe9\x19\x90\x3b\x63\x5c\x4a\x21\x1f\xc4\xcf\x45\xa9\xa1\x72\x03\x62\xa8\x52\x12\xf8\xa9\x7f\x3e\x3f\x58\x97\x96\x2e\xf7\x15\x0e\x85\xe7\x89\x77\xd5\x9d\x9a\xbe\xfd\xb4\x4b\x55\xc6\x2d\xe4\xeb\xc6\x9c\x1f\x1a\x67\xb2\xb1\x90\x2b\xc6\xa5\xf1\xa9\x95\xfc\x9e\x2c\xc1\xcc\xcf\x0e\xf5\x8a\x0b\x67\xab\x3a\xa7\x49\xdd\xc8\xe3\x75\x76\xcf\x1b\xfa\x26\xcc\xaf\x89\xc9\x65\xfe\x4f\xa7\x06\x2b\x10\x0c\xe4\xfa\xb1\x53\x07\x89\x6b\xc1\xe5\x9c\x9b\xdb\xce\xd3\x92\x1f\xff\x3b\xe5\x55\x46\x0d\x67\x59\x88\x18\xcc\x9b\xdc\x35\x37\x67\xaf\x52\x8d\xca\xdc\xfe\xc5\x87\x35\xbf\x97\x24\xe3\xf5\x7f\x44\xdd\x0f\x1a\xb1\x20\xe9\x06\x21\x61\x5e\x92\xcf\xd2\xc9\x45\x67\xc4\xc7\x0c\x5a\x73\xb4\x43\x2f\x32\x40\xf6\xa6\x54\x8e\x07\xdc\x99\x1d\x52\xb4\x88\x6f\x07\xf4\x9c\x63\xd9\xc2\xed\x23\x8c\x8d\xb5\x43\x5c\x11\x75\x6f\x30\x56\x30\xb4\x5a\x4d\x3a\x98\x26\x67\xf6\xe4\xdf\x10\xd0\x26\x3e\xb1\x16\x64\xfa\x0f\xbf\xa1\x25\x1d\xcc\x6c\xee\xa2\x60\xdf\x63\xcc\x9d\x93\x74\x2c\x66\x5c\x70\xe3\xe7\xef\x6e\xdb\xbd\xf8\xb5\xf4\x1c\x3e\x7a\x46\xd5\xa0\x55\x17\x85\x25\x27\xa5\x92\xe4\x07\xe5\x95\xe0\x1b\x97\xe9\x6b\x6b\x3c\xe7\x0c\xd4\xd4\x3c\x1c\x0c\xa6\x20\xf9\xe1\x4b\xb5\xe3\x1b\x04\x28\x08\xb8\x5c\xfb\x77\x0f\x75\xb4\xe4\x50\x14\xb7\x48\x15\x3a\xa2\xb3\xa6\x35\x6e\xc4\x7c\xad\xba\xf9\x94\xa3\x91\x1b\x5c\x0a\xfe\xb5\xa5\x72\xfc\x8b\x4d\xda\xd6\xac\x27\x08\xb1\x57\x2a\xc7\xe4\x36\x35\xf1\x09\x49\x3d\xa9\xa0\x34\xd9\xad\xfb\xc6\xa9\x7f\x82\x19\x15\x53\xa9\xf7\x8e\x1c\xa1\xad\xdf\xdc\xa6\xf4\x16\x7a\xf6\x06\x83\xf9\xcf\x30\x0a\x1d\x31\x1e\x99\x76\xbb\x01\x2e\x40\xde\x39\xbd\x00\x72\xdf\x37\xdc\xd6\x48\xc8\x7d\xea\xf8\x7a\xfb\xb2\x31\xda\xc3\x73\x01\xd4\xd6\x97\xdf\x35\xda\x68\xda\x82\x3a\x18\x5e\x94\xca\xf1\xc0\x0d\xd9\xf3\xa4\xaa\xcf\xc2\x5f\x35\x74\x6b\x52\x99\x52\x86\x18\xe1\xf3\x83\x89\x06\xdc\x2e\xa4\x1e\x65\x8c\x72\xa6\x58\x61\xf9\x6e\xe5\x00\x12\x79\x26\x0a\xe0\xee\xa3\x46\x2a\xa9\x86\x98\xf1\xa3\x13\x5f\x64\x34\xc8\x70\xf0\x6c\x01\x02\xde\x72\x29\x8f\x4b\x21\xa3\x0d\x11\xe4\xf3\xbf\x19\xa6\xa2\x08\x09\x5c\xc4\x4b\x89\xfc\x50\xa3\x68\xaa\x02\xcb\x5b\x8e\xd3\x26\x1e\xcd\x6a\x67\xba\xb8\x89\xb8\xc4\x76\xbf\xe2\xf9\xc6\xbf\x23\x2e\xdf\x78\x7c\x61\x8c\x31\x58\xee\x69\xc0\x6c\x80\xe7\xf5\xa7\x7b\xb5\x42\x9d\x08\x35\x42\xb4\x90\x2f\x10\x3e\x70\xc5\xfb\x2e\x5b\x7b\xc5\xea\xab\x56\x2d\xb9\x76\xf5\x95\x20\xa9\x70\x4c\xca\xe4\x31\x49\x36\xfc\xab\xe6\xca\x57\x25\xbc\x46\x1f\x69\xf8\xdf\x36\x30\xb3\xa4\x7d\x6b\x5f\xae\x34\x9f\x4f\x16\x2e\x5b\x72\x35\x08\x0a\xbd\xa4\x15\x9c\x18\xf1\x70\xf5\xc3\x27\x47\x6a\x8c\x4f\xa0\x34\x0b\x48\x63\xe1\xfa\x03\xd9\x6f\xea\xd0\x86\x58\x71\xfe\x3d\x34\xf4\x5a\xb9\x75\x96\x44\x03\xe5\x5f\x3f\x2b\x0c\xad\x6b\x18\xe9\x74\x3f\x66\xd2\xb9\x58\xa8\x4b\x01\x3d\x7a\x8c\xd7\xd9\x5d\xb3\x4a\xa0\xd1\xf2\x3f\xa7\x55\x73\x5c\x4d\xaa\xfd\x2a\x37\x55\x2b\x95\xe3\x43\x03\xda\x3c\x24\x92\x82\x1e\xaa\x98\xf8\xaf\x53\xd4\x93\x42\x5e\x83\xcf\x02\x6f\x98\xae\xa9\x16\x91\x40\xa8\x95\x00\x16\x70\xb3\x4a\xfa\x3e\xf5\x4b\x18\xfc\x9f\x7c\x68\x7e\x0b\x8d\xcd\x19\x71\x42\x48\x19\x95\x27\x35\x5a\x37\x69\x66\xac\xf1\xf2\xde\x29\x03\xc7\x1f\x05\x41\x72\xf7\xe0\x10\xd8\xc3\x0c\x75\x55\xcc\x42\xc0\x90\x4a\x27\xc4\x31\xee\x30\x59\x4c\x6b\x3b\xf6\xfc\x5b\x6f\x33\xb4\x7b\x30\x11\xff\x22\xb7\x6f\x8c\x06\x90\xc3\x7e\xc8\x00\x8b\xfe\xbb\xe7\xd4\x77\xaa\xbb\x18\x5b\x75\xed\x3d\xb4\xb6\x8f\xd6\x20\x2b\x8c\x74\x6b\x53\xd1\xc2\xbd\x83\xc6\x99\x47\xca\x03\xf9\x30\x99\xf1\x76\x37\x4d\x5c\x72\xda\xbe\x17\xfa\xad\x34\x2c\xf6\xe7\x0a\x66\x72\x6e\x17\x3f\xcf\x6b\x90\x1b\x8a\x50\xf7\xda\x99\xec\xf1\xa2\xf2\x86\x3f\x73\xfa\xa2\xb6\x5a\xb7\x49\x2c\x87\x28\x2d\x95\x4f\x2c\x54\xda\x62\x15\x00\xe8\xbc\xc1\x9b\x90\x24\x71\x49\x90\x65\xf2\xd6\x7f\xd5\x7f\x84\xee\xb3\xa0\xa6\x32\x73\x1f\x51\x59\xad\x17\x23\x97\x8b\x93\x17\x2b\xaf\x65\x2b\xb2\x3a\x0e\x18\xc9\xc8\x96\x7c\x65\xf7\x48\x3d\x33\x04\xd8\x86\x6d\x79\xf2\x25\x17\xec\x31\x79\x27\x1e\xef\xee\xc5\x43\xf0\x1e\xec\xd0\x68\x85\x0c\x48\x90\xf9\xaf\xac\xbc\x40\x1f\x54\xf8\xb5\x8c\x79\x69\xf1\x84\x34\x1f\x51\x78\xb0\xfd\xed\x13\x42\xe9\xda\xf2\xe7\x5d\xe7\x1b\x85\x56\x85\x9b\xf5\x1c\x2f\xaa\x4f\x4d\x2b\x2e\xa9\x29\x07\xc2\xab\xb6\x9b\x04\xd9\x90\x34\xf9\x8c\x2b\xf9\xe3\xd9\x7e\xf6\x8f\x5b\xc8\x75\x71\x98\xf6\xc6\x2f\xdd\xac\x23\xe8\x59\x03\xc6\xb8\x7d\xf9\x9d\x13\xb5\x2b\xc8\x08\x98\x07\xe6\xfa\x9e\x56\x57\xb0\xc2\x87\xe2\xd4\x83\xef\xf4\xbb\x1d\x9a\xf3\xb3\x37\xab\x73\xde\x0c\x20\x45\x6f\xbc\x0c\xbe\x75\xda\x69\x2f\x92\x92\x5e\x13\xe0\xbf\x4f\x40\xe1\x84\x19\x9b\xe6\x57\x6c\x3c\xc3\x9e\x7d\xe9\x34\x85\xca\xd2\x57\x07\xef\x31\xa0\x0d\x81\x43\x5b\x22\x24\xff\xd2\x55\xbf\xd5\xc6\x7e\x2f\x80\x24\xf2\xdf\xbc\x66\xb8\xf6\x5f\x2d\x17\x31\x5e\x76\xfe\xee\xb8\x61\x4c\x48\xa9\x1d\x64\xeb\xc4\xe2\x85\x77\x1b\x6b\x68\xc2\xdc\x2a\x23\xd8\x17\xf0\xe7\xcf\xaf\xed\xd0\xc8\x0c\x7c\x27\x9e\x5b\x3c\x57\x3d\xc2\x24\xc0\x21\x1f\xf6\x1a\x9f\x9e\x64\xea\x4b\x46\x8c\xcb\x24\x4a\x64\xc6\x14\xc3\x5b\xa1\x4a\xd9\x39\x60\x51\x85\x65\xb7\x66\x6f\xb4\xf2\xb2\x10\xa5\xda\xff\x1d\x32\x85\x68\x42\x62\x91\x06\x12\x83\x39\xb8\x48\xbb\x0f\x0f\x55\x09\x3b\x94\x6d\xe9\x84\xf9\x46\x44\x4f\xed\x6c\xf8\xf7\x7d\x68\xf4\xf8\x0c\xae\x18\xdd\xd8\x06\xda\xfa\x46\x97\x49\x73\xa4\xa9\xc6\x54\xe1\x69\xb1\x42\x09\x52\x76\x7b\xee\x4b\x5a\x40\x0e\x1d\x50\xc9\xaf\x9f\x52\x6f\x8c\xf8\x21\x76\x03\xd8\x7d\xe4\x5f\x3a\x2b\x27\xbe\xc8\x2d\x71\x73\xa2\xc2\x98\x33\x17\x19\x77\x94\x23\x3f\x44\x53\x09\x8b\xe7\xe5\xfd\x86\x8b\xd8\xe8\x56\x21\xa6\x46\x3c\x5b\x63\x63\xaf\xeb\x92\x3a\xb6\x3b\x43\x87\x30\xe1\x09\xd0\xd3\x48\x1f\x92\xc7\x4d\x4a\x92\x1f\x37\x76\x39\x8f\xe9\x2b\x90\x87\x88\x85\xe4\xb3\xfb\xde\x62\xb5\xad\xa1\x1e\x1f\xe1\x76\x1b\x0f\x23\xf2\x7d\xe4\x49\xc7\x81\xab\xdf\xd4\x6a\xd2\xe4\x29\x89\xa1\xea\xcc\x61\x0a\x9c\x19\x60\xbf\xdd\xfb\xe7\xce\x31\xbc\x0d\xba\xcc\x75\x11\x14\x7b\x17\xef\xe6\x0f\x66\x35\xe6\xaa\x75\x80\x0d\x7a\x7a\xa8\x36\xf5\xc4\x2e\x48\x06\xe6\xf7\x6d\x48\x03\x6d\x04\x78\xf0\xc1\xd3\xb3\x50\x64\x60\xbd\xf9\xc8\x3d\x67\x1d\xfa\x8b\x30\x35\xa1\x06\x6e\x5d\x3a\xfb\x9a\x39\x5b\x27\x47\x20\x0b\x0b\x10\x43\x5f\x7e\xda\xeb\x69\xc7\xec\xe2\x36\x6b\xcf\xc2\xa1\x3d\x62\x4c\x29\xc7\xaf\xf1\x87\xf6\x66\x5f\x68\xd5\x45\x35\xb0\x17\xee\x51\x43\xd2\x45\xd7\x8f\x6e\xfb\xd0\x12\x99\x5a\x58\xbc\x4b\xb1\x3c\x61\x0a\x90\x8b\x9e\xc8\x86\xbc\x26\x76\x88\xe5\x0a\xb1\xb7\x78\xd0\x21\xf3\xcc\xf7\x80\x19\x80\xf8\x63\xeb\xa4\x92\x69\x07\xb5\x9e\x24\x5f\x9d\xff\x66\xb6\x72\x47\x91\x7d\x6e\xb3\xcb\x56\x3f\x4d\xe9\x0c\x78\x21\xa5\x72\x3c\xd1\xc0\x8b\x0b\x0f\x71\x91\x2e\x2f\x3c\x6c\x02\x30\x88\xa7\xf9\x74\xfc\xd2\x36\x01\x42\x88\x71\x39\x58\x8e\xe6\x7a\xee\xc8\x30\x6d\x39\x15\x86\x2e\xc7\x69\xfd\x60\x71\x16\x06\xe1\x44\x41\x80\x45\x5f\xac\xd2\x53\xef\xbe\x61\xe2\xd6\xd9\xb8\x81\x7d\x9b\x77\x8c\x57\xad\x37\xc0\xd4\x9d\xb3\x45\x06\xbc\x74\x89\x62\xc9\x58\x5e\x72\xec\xd8\x88\x31\xc6\x89\xaf\x00\xee\x55\xbc\xb9\xf3\x8f\xaa\x06\x23\xf2\x89\xef\xa0\x0a\x11\xf3\x86\xdf\x4e\xd4\x54\xde\x85\x66\xfa\x70\xa3\x1e\x66\x24\xa8\x2b\x95\x86\xee\x89\x1d\xa2\x26\xac\x90\xd4\x8e\x64\x9e\xc6\xd3\xf9\x70\xc6\xce\xaa\xdf\x4b\x19\x82\x7b\x43\xa4\xb1\x7c\xc1\x19\xaf\x25\x08\xb0\x53\x64\x28\x23\xc3\x56\xec\x67\xd2\x4b\xa2\x46\xc3\xc5\x52\x84\x77\x52\xa9\x1c\xff\xca\x58\xf5\x56\x29\x31\x84\x1d\xf3\x4f\x69\xe3\x98\x12\xb5\xac\xa8\x21\x7c\xb8\x68\xaf\x3a\x62\x28\x94\x61\x06\xef\xe3\x10\x10\x87\x72\xbd\xdb\xf8\x83\x8f\x8f\xd0\x26\x09\x28\x0a\x89\x20\x18\x9e\x78\x78\xa8\xf8\xf0\x55\xec\xdb\x88\x5b\x21\x57\x1e\x10\x12\xa0\x34\x72\x5d\x1c\x04\x3e\xe6\x99\x7c\x9c\x21\xd2\x83\xbc\x4a\x14\x08\x30\xf9\xe5\x9b\x35\xed\xa0\x10\x37\x1a\xfa\x36\xbb\xf8\xc9\xbd\x29\x98\xd4\x76\xb3\xd2\x72\xb7\xf7\xf2\x73\xb3\x1c\x33\xdf\xa6\x69\xa4\xdc\x58\x15\xe0\x40\x52\x73\x4a\xae\xe0\xad\x15\x96\xbe\x60\x3c\xcc\x24\xc9\xe8\xf2\x04\xf1\x99\x17\x55\xb5\x8b\x6c\xe4\x21\x3f\x04\x43\x43\xf8\xa1\xcb\x4e\xa5\x67\xae\x17\xa4\xd2\x0a\x93\x0d\x77\x96\x16\x72\x45\xeb\xd0\x97\xfb\xca\xdd\x22\xe3\x38\x34\x12\x07\xed\xb9\x6e\x05\x07\x9f\x39\xa7\x94\x3c\x94\x1f\x72\xa5\x5c\x80\x99\x05\x0a\x0e\x50\x2a\xc7\x7f\x5a\xc1\x1f\xe3\x32\x9a\x84\x2f\x05\x36\xf8\x41\x97\x72\x74\x4f\x62\x7d\xdc\xda\x9f\xbd\x60\x3e\x4e\x0a\x22\x17\xf9\x76\x90\x5a\x54\xc5\xff\x38\x20\x98\x29\x94\xd5\x04\x10\x28\xf9\xf5\xcf\xbc\xa8\x55\x57\x0d\xd1\xe0\xbc\xe3\xae\x2c\x70\x0f\x39\x8c\xfa\x34\x6c\x37\x48\x88\xdf\x98\x21\x9a\x4b\x17\x85\xd4\xe7\x93\xf5\x01\xa1\xae\x61\xa4\x6b\xa5\xef\xd3\x6c\x52\xa8\x07\x9a\x5e\x9d\x79\x65\x04\x87\x59\xfb\xfe\xa0\x7f\x6f\x5a\x75\x53\xc0\xe7\xcb\x1f\x36\xf1\x8c\x36\xa2\xb1\x40\x19\x19\x8e\xea\x3f\xba\xf9\xcd\xa4\x51\xe8\xa2\x40\x3c\xf7\xc1\x27\x0d\xa9\x73\xb9\x1f\x4d\xa5\x3f\xbd\xb9\x1a\x83\x16\xfc\x62\x79\xf0\xfa\xf9\x7c\x41\xc6\xc2\x1a\xa1\x2b\x37\x7b\xb4\x76\x1f\x10\x67\xeb\x40\x26\xfe\xda\x6b\x06\x66\x1d\x26\x3b\x29\xdb\xee\xfe\x9b\x0d\xb7\x0c\xd2\x14\x29\xb9\xf8\x96\xae\x36\xed\x33\x8c\x5c\x31\xca\xef\xcb\x6f\x1a\x6f\x28\x2d\x33\xae\x6d\x94\xdf\x78\x26\xfb\x23\x93\xf7\xc4\xe5\xd4\x0a\xeb\xd7\xa9\x3c\x5c\x03\x7f\x3f\xa8\x2c\x4e\xf2\x57\x76\x0d\x72\x53\xfb\xb2\xcd\xd7\xa8\xc8\x1d\x26\x3d\x0f\x27\x72\x6c\xbe\x7f\xac\x56\x91\xd7\x6a\x38\xd0\x41\x26\xf1\x77\xb6\x6a\x9a\x17\x8c\x8f\xd9\x73\x57\x9e\xd1\x2c\xe5\xa9\x40\xd7\x36\x76\x8e\x50\xc6\x07\xba\x2a\x6d\x69\x97\xe9\x3d\xc4\x9a\xa4\x49\x25\x92\xf3\xd3\x87\x0c\x90\x18\x0a\x24\xe4\x7d\xe2\x5d\xef\xd0\xea\x5f\x30\x4c\x08\xb9\xf8\x56\xe6\x80\xde\xb5\x42\xb9\xe3\x05\x6d\x0a\x02\xc5\xc5\x8b\x8c\x16\x15\xfc\xdc\x49\xb5\x2a\x21\xd5\x93\xa6\xa7\x90\x70\x1a\x54\x32\x92\xe5\xcf\x3e\x3b\xba\x6d\x48\x28\xef\xee\xb2\xa7\xb3\xa1\xae\x6b\xce\xf4\x59\x5d\x33\x78\xea\x2a\x7e\x44\x13\xc7\x0b\x08\xa3\x21\x50\x49\xe2\x4b\xef\xcc\xe6\xba\xd9\xb3\x45\xe2\x2d\xbe\x73\xa0\x9a\x5e\x04\x16\x8b\x42\xe2\x93\x5e\x51\xb2\x1d\x6f\x0e\x16\x6d\x1d\x57\xc7\xed\x2b\xac\xdc\x99\x35\x67\xb2\x38\xea\xbb\x2f\xb7\x7b\x97\xbe\xf3\xb3\x31\x85\x25\x7e\xb1\x3a\x45\x53\x6c\x08\x91\x9f\x89\x36\x85\x59\xc7\x39\x77\x71\x8d\x13\xb9\x9e\x2e\x1b\x5e\x7c\xdb\x92\x73\x72\xe8\x01\xf1\x94\xbf\xdd\x36\x1b\xd8\x1b\x23\x80\xf4\x0b\x0e\xca\x0b\x37\x8c\xd1\xa6\x96\x4d\x02\x54\xd3\xb4\xa8\x5b\x7e\xbb\xfa\x0a\xa9\x3b\x11\x24\xcc\x89\x83\xc5\xa5\x63\x0c\x43\xc7\x71\x4f\xaf\x01\xfe\xc4\x6e\x55\xc2\xdd\xf8\xaf\xfa\xdd\x6b\xc6\x3c\xd2\x23\x36\xef\x57\xe2\xe7\x37\x18\x13\xfb\x1e\x87\x35\xb9\xea\x98\xc6\xde\x74\x39\x48\x65\x05\x75\xfc\x80\xb6\xb3\xe4\xc6\x2d\xd2\xc6\x26\x88\x55\x84\xde\xf1\xb2\xae\x8e\x0c\xdc\x35\xc9\x8c\xdf\xbe\xa3\x0d\xef\xdf\x40\xbe\xa0\xeb\xc5\xa3\x4e\xe9\x4d\xa4\xb0\xca\x2c\x5c\x7e\x4a\xbd\x35\xec\x51\xf9\x32\x7f\x7d\xcd\x50\xa5\x28\x92\x3a\x30\xd2\xc7\x4c\x38\x39\x23\x8d\x86\xcc\x48\xc3\x6f\xd5\xd2\xcf\x5c\x70\xd4\x1a\x7c\xbb\x5e\x25\x46\xdc\x89\x2a\x7f\x74\x92\x01\x2d\x44\xb2\x46\xec\xcb\x5d\xdf\x9b\x2a\x73\xd7\x22\x50\xf9\x7a\xe5\x88\x51\x2a\x21\xf8\x95\x7c\x82\x57\xc4\x3e\x1f\x4c\xbe\x2f\xb2\x1c\x4f\xe7\xbe\x7e\xfb\x21\x85\xf0\x07\x19\xee\xb6\x76\xf3\x2f\x6f\xaa\x07\x52\x61\x49\x81\x01\xc8\xcd\xa7\x04\x80\x47\x29\x7e\x3c\xa7\x1e\x35\x20\x9e\x4b\xe5\xf8\x8f\xcb\xb2\x75\x72\x33\x0c\x08\xe5\x1a\x9f\x99\x00\x71\xe4\x1a\xa5\xa4\xa4\x7b\xbe\x14\x87\x4e\xcf\x5e\xc7\xba\x4f\x5b\x9c\xc7\xf7\x99\x21\x63\xb5\x89\x44\x1b\x47\xba\x38\x76\xbe\x19\x54\x70\x85\x04\x16\x09\xa5\x9d\xd2\xb1\x53\x9a\xb2\x8e\x83\x59\xba\x9b\xfd\xfe\xfa\xec\x61\x9e\x35\x4b\x09\xe1\xf1\xa9\xde\xb4\x49\x9a\x36\x24\x82\xc7\xff\xd3\x97\x0c\x0e\x28\xf1\x91\x6f\xc9\x41\x76\x7e\x4d\x38\x54\x0b\x94\x81\xf0\x39\x3e\x7e\xcd\x38\x2d\x17\xbb\x76\x5b\x64\xec\xb8\x23\xfb\xfc\x2a\xd8\x75\x85\xdb\x61\xb6\xeb\x7e\x73\xa1\xc0\xbe\x61\x61\xd2\xdd\x97\x5b\xbd\xcf\x94\x24\x43\x6e\x3a\x10\xcf\x9d\x3a\x34\x9e\xf7\x90\x1e\xea\xa5\x7e\xa7\x45\xcd\xa1\x7d\x5f\x6e\x43\x78\xbe\xf6\x99\x9b\x38\x04\x06\x69\xf2\x8f\x77\x16\x0d\x6b\x14\x62\x39\xe2\xfa\xfc\x6c\xa7\xfa\xa2\xc2\x3e\xad\xdc\x97\x2b\xde\x92\x6d\xea\x3c\x1a\x60\x03\x82\x5d\x64\x27\xff\xcd\x88\x21\x7e\x80\xfd\xe4\xc4\xf9\x70\x75\x54\x34\xdc\xb9\x45\xc5\xfc\xd9\x0b\x40\xa4\x3f\x1d\x0f\x3d\xf8\x92\x8a\x03\xa0\x46\x01\x82\x38\xb9\xbf\x34\x8d\x00\x15\x05\x50\xad\x54\x5c\x81\x77\xce\xbf\x3e\xe0\x62\x6d\x0e\x98\xd4\xaa\xc8\x6f\x7b\x21\x85\x23\x27\xb2\xe7\xb1\x3b\xe2\x1a\xdd\xf1\xfd\x43\xce\x13\x4d\x8d\x4b\xea\x00\x57\x8d\x7f\xbb\x5b\xcb\x30\xd0\x52\xd4\x92\xff\x7c\x64\xbb\x41\x23\x43\x7e\xcd\xc5\x76\x3a\x81\xfb\x7f\x4b\xd3\xca\xd2\x06\x51\xcc\xc2\x92\xbb\x55\x59\x14\x52\x16\x46\x62\xb8\xb9\x60\x40\x36\xf6\x43\x3c\x96\xb5\xca\xb4\x6b\xda\xf1\xe2\x3e\x66\xdc\x75\x74\xf7\x9e\x51\x66\xc6\xb5\xe4\xda\xfb\xa7\xb6\x9a\xc5\x82\xe1\xcb\x8c\xc9\x6d\x9b\x3f\x56\x4b\x7f\xcf\x65\x63\xa6\x18\xc7\x0c\xa0\x66\x21\xcc\xe4\xcc\x28\x7d\xd0\x58\x04\x71\x7f\x02\x8e\x9d\xcb\xcd\xf7\x55\xd1\x32\x6b\xfa\x9c\x19\x33\x60\x8f\x35\xce\x94\x1f\x88\xac\x28\x10\xea\x62\x85\x2f\x8e\x37\x15\xdc\xaa\x38\xec\x91\x4f\x72\x37\x57\xfe\x2a\x2d\x89\xec\x1a\x69\xa3\x7b\x17\xdf\xbf\xca\x54\xf3\xec\x01\x9d\x2a\x8e\x1a\x9b\xca\x47\xdf\xa5\x25\x28\x70\x88\xae\xfa\xd6\x6f\x92\xa9\xa1\x6e\xfb\x98\xab\x23\x17\xaf\xee\x36\x56\x2c\x24\x14\x7c\xc4\x7f\xbc\x24\x58\x64\x98\xf4\xc2\x1d\xfa\xe1\x16\x5d\x14\x57\x1a\x44\xee\x1c\xc0\xef\xb1\x4f\x4b\x3e\x82\x59\x6a\xf1\x83\x4f\x8e\xd0\xb1\x2c\xbc\xed\x4c\x7e\xc2\xcb\x67\x78\x91\x5d\x71\xb1\x07\x8e\x39\xc9\xdf\xbe\xf6\x25\xe5\x16\xd4\x54\x45\x5e\xfc\x8e\xf1\x6d\x16\xb4\x42\xb8\x3a\xfe\xce\x2a\x63\x75\xca\xa8\xbf\x89\x53\x48\x93\x6c\x76\xbd\xe0\x9f\x5b\x51\x48\xab\x55\xa0\x74\x2f\xe3\x3d\xd1\x52\x92\x64\x36\x2b\xed\x58\x6f\x7b\x3d\x7b\xb2\x7d\x80\x68\x2b\x22\xfc\x88\x55\xd9\x28\x60\x47\x4d\x64\x90\xb9\x0b\xff\x79\xd4\xe0\xaf\xb8\x6e\x52\x0f\xa5\x1a\xb3\xa3\xa7\x08\xe0\x2f\x46\x0d\xea\xc3\x1c\xaf\x38\xbc\x39\xc9\x48\xe8\x41\xa7\xe8\xbd\xb3\x11\x6d\xc4\xc1\x0b\xdb\x0e\x13\x0a\x08\xf2\x05\xef\x32\xfe\xea\xc3\xa6\x79\x8b\x18\xf8\x43\xca\xf9\xdb\x51\x33\xa2\x06\x0d\x22\xe0\x22\xf1\xc7\x7a\xc5\x0b\xf6\x39\x3d\xb2\xf0\xa7\xca\x10\x4d\x56\x28\xf9\xe9\xdf\x7e\x40\xc1\x7d\xe7\x80\xbb\xf8\x88\x57\x84\xae\x4c\xe4\xd6\xc0\xfd\x2a\xb7\x12\xe4\x71\x84\x31\x8b\x7a\x7d\xff\xdf\x33\x4a\x43\x00\x6d\x2a\x95\xe3\x1f\xdc\x30\xdc\xc8\x0c\xbc\xba\x18\xb1\x52\x0d\x58\x92\xc6\xc6\x25\x0e\xa5\x7c\xf6\x77\xf6\x41\x9d\xab\x1c\x04\x98\x95\x2a\x49\x40\x1a\xac\x41\xda\xf0\xa6\x86\x8b\xd2\x02\xda\x3f\x32\x42\x6b\x23\x54\xcf\xb1\xe5\x00\x5f\xec\xad\x41\xe0\x23\x9d\xfb\x73\x28\x46\x15\x18\x31\x2e\x9f\xf1\xd6\x47\xc6\x99\x6b\xc8\x9e\x4c\xdd\x5e\xd2\x2c\xa6\xc1\x26\x86\x71\x06\x47\x72\x8e\xae\x7d\x33\x7b\x20\xeb\xd8\xef\x41\xea\x40\xfa\x77\x8e\xc8\xea\x32\x55\x11\x57\x89\xde\x3c\xde\x18\x2c\x34\x90\x85\x4b\x08\x76\x7f\x22\x73\x7f\xe2\x6e\x55\xf1\x62\x3f\x04\xa1\x66\x1f\x47\x4c\x88\xc5\x7e\x5d\xd3\x16\x6f\x47\x42\xe7\x3f\xba\x4d\xeb\xb5\x04\x84\x60\xe1\x4e\x4d\x5b\x92\x5a\x4e\xc8\xad\xfe\xd7\xac\xb8\xc8\xcc\xdc\x35\x86\x6c\x49\xac\x00\xe8\x55\xa3\xd7\x88\x16\xa8\x57\xbc\xc5\x45\xf7\x6a\xa6\xb2\x0e\x61\xf5\xe4\x47\x8e\x98\x3e\xd6\x8c\xc3\xae\x8b\xfd\x1a\x16\x25\x36\x7e\x70\xa8\xac\x09\xc3\x88\x55\xf8\xc7\x7b\x60\x98\x00\xa6\x92\xa4\xd9\x00\x19\xb0\xfc\xd7\x1f\x34\xfa\x3d\xd0\xa1\x47\xb2\x34\x78\x75\x9f\x2e\xd1\x11\x35\x78\x13\x9e\xfb\xe1\xa6\xf3\xb4\x52\x1a\x64\x3b\xbe\xd4\xc5\x17\xd2\xf3\xe6\x40\xac\xfe\x2f\x43\x87\x2d\xc0\xbd\xb5\xb6\x11\xe3\xc3\xf1\x18\xc5\x44\x69\xd7\xe0\x18\x72\xca\x24\x05\x24\xa7\x98\x71\xdd\xc5\x78\x7f\x7f\xc3\x1d\x93\x52\x81\xdc\x2b\xfc\xe8\x15\x1e\x0d\x1b\xe0\xe1\x66\x71\x8c\xce\x9f\x35\xa4\xee\xbc\x99\xd0\xb2\xde\xb2\x4e\xcd\x07\x35\x03\x9f\x72\x5f\x61\x74\x5e\x9d\xf6\x26\x6c\x09\x44\x77\xf7\x95\x23\xda\x4e\xac\x4e\x5c\x31\x95\xe8\x5d\xa8\x81\x25\x8c\xfd\x6e\xef\x78\x33\x8e\x54\xab\xc4\xaa\x2b\x44\x4a\x71\xe8\xd6\xe1\x22\x7a\x53\x6a\x0b\xbd\x02\xc0\x23\x18\xc6\x24\xa0\x50\x9c\xb2\x86\x26\x4e\x56\x93\x31\x06\x42\x04\x1a\x97\x64\xb1\xd1\xbb\x3a\x29\x86\x6c\xc0\x6e\x93\x2f\x10\x44\x0c\xf9\x56\x0a\xaf\x7e\x75\x47\xf6\x2f\xd4\x91\xd7\x40\xae\x76\xe9\x66\xdc\x6c\x4c\xc9\xd3\x29\x3f\xcf\xc4\x57\x3c\x91\x7d\x33\x35\xc2\x84\xb0\x5e\xb1\x72\x27\xcf\xa4\xab\x28\x6b\xe1\x1a\x41\xe9\x78\x70\x48\x87\x98\x5b\x89\x89\x7b\xa9\x1c\x57\x06\x8c\xd0\x98\x9b\x16\x65\x60\xa3\x5e\xee\x2b\xbc\xf4\x92\xe6\x93\x1e\x04\x52\xd9\x48\xfc\xa4\xcb\xb6\x29\xad\x1a\x9b\xc8\x42\x7e\xd9\xc3\x86\x05\x0d\xa5\x75\xd1\xfd\x4f\x17\x84\xe4\xaa\xcb\xfb\xf5\xe2\xda\xa7\xd2\x11\x57\x1d\xe9\x0f\x75\xeb\x63\x42\x36\x08\xf5\x22\x16\xe9\xe4\xb9\x07\x1b\xfc\x7b\xad\xc6\xa8\xa6\xf7\xe4\xb9\x4f\x1d\x1b\xa1\xef\x3c\xd4\x1f\x14\xc7\xb5\x21\x56\x25\x65\xb5\x6b\xbe\xe6\x4a\xec\x72\x0e\xa3\xf6\xbb\xec\xb3\x6d\x38\x3f\x86\x6a\xd2\x22\xf0\x2b\x3b\xd4\x4c\xaf\x6b\x16\x34\xe9\x85\x8d\x86\x6f\x5e\x12\x24\xc5\x10\x7e\xf4\xc1\xf4\x69\x35\xc3\xd4\x6f\xe1\x9f\xbb\x8c\x55\x39\x0a\x1c\x8f\x30\xe5\xaf\x9f\xbf\x74\x99\xba\x4d\x88\x24\xfd\xdd\x1f\x56\x68\x23\x02\x6a\x11\x2c\x88\x18\xc5\xae\xfe\x13\xdb\x3e\x6f\x28\xd5\x27\x7a\x25\x12\xc9\xd2\x24\xac\x43\x12\x82\x57\xca\xa7\x5f\xd3\x40\x82\xc4\x75\x39\x69\x60\xf0\x0a\xd3\x47\xdd\x41\x92\x2a\xd4\x57\xb8\xba\xc3\xc0\xf0\x10\xe9\x73\xf6\xe5\x5d\xfa\x44\x1b\xb1\xba\xab\x61\xe4\x4f\x3d\xcf\xa7\xb1\xef\xc3\x4c\xb9\x8f\xc6\x1b\x96\x1b\xd2\xdd\xd4\xf3\x49\x9d\x36\x75\x53\x88\xf7\xfb\xea\x49\x50\x1b\xb6\x08\xf3\x34\x6d\xe8\x16\x08\x93\xa4\xf3\x80\x71\xc2\x8d\xcb\xc6\x42\x3c\x54\x68\x36\xfc\xd7\x69\x93\xe3\x97\xf4\x8c\xd2\x48\x36\xde\x61\x3c\x43\x1f\xb7\xb8\x50\x6a\xa6\x75\xfe\xe9\x23\xe9\x61\xab\xe9\xe3\xd1\x42\x74\x52\x4c\xbe\xb9\x39\x6d\x52\xa2\xc4\x2a\x8e\x81\xab\x03\x8f\x63\xbf\xae\xf0\x8f\xf7\x81\x88\x11\xed\xe9\x3c\xdc\x3d\x2c\x6d\xfd\x82\x30\xf5\xc7\x3e\xb5\xc1\xf0\x7f\x98\xb7\x60\x7e\xe7\xbc\x99\x3c\x0a\x0c\xde\x60\xe2\x2a\x43\xae\xad\x73\xa5\xa1\x73\x5f\x61\x08\x3c\x25\x20\x3c\x15\xaf\xd7\xd0\x05\x3e\x05\xe7\xec\x38\xd4\x6c\xe4\x3c\x54\x87\xff\x76\xfa\x88\x86\x14\x0d\x29\xb1\x40\x97\x3f\x7e\xfa\x36\x6d\x7c\x82\x89\xcd\xb5\x00\xc7\x54\x46\x28\x4b\x15\x4f\xbb\xd1\xb7\x35\x47\x6a\x94\x2a\x41\x58\xe1\x53\xb8\x2b\x2a\x02\x60\x8a\x43\x06\x37\xeb\xdf\x5f\xbe\xd8\xb8\x45\x15\x86\x6b\x28\xc8\x48\x8b\x15\x7e\xbd\xc9\x64\x48\x31\x24\x32\xd6\xe9\x2d\x5a\xba\x41\x84\xb3\x2b\x93\xae\x6a\x8a\x6f\xa4\xb2\xc8\x12\x5b\x98\x95\xdd\x0a\x4b\xd7\xdd\xc6\xb1\x2d\xbe\xbb\x7b\xb2\x51\xc4\xb2\x90\x70\xc0\x91\x99\x4c\xef\xbe\x5b\x8d\x2c\x01\x23\xa5\x09\x37\xac\xda\xa1\x8e\xf0\xec\xa4\xd7\x8a\x07\x8d\xb8\x40\xa7\xf9\x05\x81\xbe\x95\xce\x4f\x79\x59\x9b\x80\xf9\x2e\x02\xb8\x4b\xbc\xd7\x40\x8e\x35\x08\x4d\xea\x5f\x09\x7e\x3f\xfa\x32\x0f\x91\x2b\xf1\x1a\x87\xea\x02\x08\xfe\x10\x45\x23\xd7\x18\xc9\xf1\x5f\x5f\x32\x64\x85\x28\xb6\x4b\x2e\x62\x01\xf6\x33\xe3\xc0\x31\x8f\xe9\x96\x8c\x55\x2c\x18\x49\xf1\x6b\xf3\x0d\x4b\x3c\x19\x5f\x47\xbd\x9c\x96\x1d\xac\xd6\xb6\x87\xce\xbf\x75\x92\x81\x89\xc4\x48\x14\x16\xf9\xc3\xab\x4c\x87\x56\xbf\x9a\x94\x52\x16\x9e\x3e\xed\x92\x4b\x40\x24\x8a\x41\xc4\x28\x5d\xab\x1b\x99\x98\xa3\x9c\x77\x6a\x5c\x58\x69\xe9\xce\x9f\xec\x7f\xdf\x76\x9e\x06\xdf\xaa\x42\xc2\x7e\xe8\xd2\xec\x89\xaa\x32\xea\x09\x3d\x8a\xfc\x87\xef\xd4\x6c\x17\x7b\x2c\x0a\xa5\x7a\x63\xa4\xc0\x06\x5e\xbd\x04\x74\x89\xa6\x8e\xd6\x58\x22\x6e\xd2\x31\xaa\x99\xf1\x92\x37\x78\xf9\x5e\x43\x9c\xc6\xfb\x89\xd7\x8c\xbe\x86\xb6\x7c\xd0\xd9\xea\x2c\x95\xe3\xb3\x47\x26\xea\x2b\x1e\x20\xdb\x9d\x43\x89\x80\xec\xd5\xec\xa7\x81\x19\x52\x2a\xc7\x7d\x37\x19\x94\x23\xe2\x47\x21\x0e\xa6\xb1\x0a\xe4\xf4\xde\x85\x46\xaf\x97\x62\x8e\x79\x5a\x1b\xf3\x82\x86\xe9\x42\x96\x03\xf4\xcb\x78\x63\x9e\x7f\x7a\xdc\x84\xcc\x9d\xa3\x0f\xb6\x61\x56\x90\xdb\xd3\x2b\x4b\x9b\xfc\x8e\x93\x0a\xce\x5b\x85\x9a\x3f\xd0\xb3\xf8\xf9\x2b\xcd\xd1\x94\xcf\x28\xce\x68\x07\x17\x9c\xfd\xa9\x9e\xc9\xec\xd9\xa5\x72\x7c\xc2\x31\x95\x87\x68\x04\x62\x9e\x49\x4d\x6c\x18\xa4\x74\xd3\x4a\xf2\x85\x21\x2b\x8e\xdb\x6b\x3c\x0f\xec\x51\x26\x49\xfc\xf1\x17\xd5\x7e\xa6\x96\xd1\x7b\x7f\x74\xb6\x9e\x65\xa3\xd0\xc1\x7c\xe6\xb8\xf5\x61\xcd\xb3\x97\xd9\x18\xb6\xa4\xe5\xbe\xc2\x3d\x37\x8d\xd0\x27\x48\xea\x7b\x1c\xd8\x67\x42\xc3\x2c\xd0\x95\xe0\x97\xb5\xb5\x4e\xd5\xb3\xc8\xee\x8e\xb4\xa0\xff\x8b\x19\xd9\x6b\xc5\x42\x21\x3c\x90\x5f\x7f\x56\xab\xcb\xfc\x90\x48\xcd\x2a\x0e\x42\x29\xaf\x54\x87\xc7\x72\x70\x80\x1a\x18\xd5\xdb\x1d\xe3\xbf\xb9\x6d\xa4\x4e\xea\xd0\x2a\xe9\xe2\xf4\x11\x6d\xdc\x16\x71\x7c\xf2\xdb\x98\x31\xfe\x8a\xec\x1a\x96\x35\xce\x75\x9d\xda\xcc\x8c\x30\xec\xf2\x55\x6b\xf1\x73\xeb\xd5\xc4\xbe\x29\xac\xa2\xe3\x83\xc7\xd4\xdd\xac\x52\xe6\x29\x31\x81\x91\x4b\xb2\xf1\x1f\xd5\x51\x0f\x0e\x22\x63\x68\xf1\xd1\xb3\xea\xa0\x46\x0d\xe8\xf3\x00\x24\xf9\xb0\x61\x85\x49\x85\xdd\x19\x87\x6a\xf4\x15\xbe\xf5\xa4\x21\x3f\xc0\x90\x47\x1b\x0e\xf5\xb1\x9a\x06\x56\x84\x8a\x22\x0a\x1d\xc4\x02\xc2\x15\x46\xf6\xdc\x69\xea\x2c\x10\x41\x5d\x81\x56\xb0\x50\x7f\xd4\xe4\x8c\x80\x8f\x3d\x68\x90\x7c\x7b\x95\xb0\x19\xee\xc5\xa0\xe3\x0b\xa5\xdd\xc0\x83\x6d\x1e\xb3\x14\x38\x4c\x02\xb8\xb5\xfd\x80\x60\xd6\x38\x08\xf0\xf6\xc5\xad\xc6\x50\x90\x83\x5b\xb8\xcd\x61\xfc\xf5\xc3\xc6\x71\x89\x7c\x21\x4c\x39\x7a\x4b\xca\x93\xac\x86\x82\xee\xf6\xc4\xa5\x9a\x84\x1d\x62\x1e\xf5\x89\x85\x40\x63\x6e\xe4\x85\x5a\xab\x16\x41\xee\x0c\x74\xdc\x41\xe1\x35\x03\xeb\x28\xf4\x95\xb8\x3e\x6d\x5f\xfe\x2f\x7b\x8d\x00\xe3\x61\xdf\x86\x00\xc3\xb1\xb6\x43\x8d\x45\x71\x8d\xd1\x56\xe8\xa4\xcf\x7e\xd3\x0b\x1a\x60\x44\x08\xb9\x97\xca\xf1\xd4\x33\x06\xdc\x00\xe3\xba\xd8\xb3\xe4\x96\xdd\x94\x1e\xaf\x06\x8c\xd4\xa1\xd1\xef\x1d\xdf\xa6\xfb\x4e\x7a\xb1\xcf\x05\x84\x72\xd7\x9f\xca\x26\x18\x1c\x04\x7c\x8d\xea\xf6\xf0\xfa\xa8\xf0\x0e\x21\x3f\x5c\x45\x1e\x1f\x13\xfe\xb4\xa2\x0a\xa6\x1b\x23\xb0\x79\xe9\x2b\xf6\xaf\x0a\x06\x27\x0e\x88\xdc\xb9\x0f\xec\xd0\x4a\xbe\xa8\x42\x7c\xda\x2c\x95\xe3\x63\xeb\xd4\x88\x77\x13\xcc\x5e\xbf\xb0\xc9\x00\x1d\x71\xcf\xb7\x4e\xbe\xbe\xc8\xdd\x3f\x49\x53\x94\x70\x10\xbc\xca\x77\x2f\x31\xe5\xb6\x18\xb6\xa4\xe0\x48\xee\x2f\x23\xfe\x85\x8c\x0c\xdf\x87\x7c\xef\xa4\x70\x96\x89\x3c\xc4\x74\x66\xd1\x0c\xcd\xa8\x2d\x72\x91\xcf\xb5\x11\xff\xf9\xe8\xf9\x5a\xe5\x2a\x1d\x09\x92\x2f\xfd\x2e\xb1\x48\x97\x0e\x71\xa5\x72\x3c\xd6\x56\xa9\xa8\x1b\x11\xe8\xd6\x63\x7f\x4f\xf6\x48\xba\x44\x0e\xfe\xcb\xe3\x74\x48\x92\x8d\x9b\xd8\xa5\x0d\x6e\x21\xf6\x80\x21\xa1\x08\x6a\x6f\x42\x81\x7d\xd4\xe8\xe1\xfa\xfc\xb6\x22\x9b\xa4\x69\xcb\x74\x96\x37\xf2\x04\x1d\xb8\xaf\xf0\xa5\x55\x93\xcc\x3c\x15\xf6\xb4\xa3\x39\xfa\xf2\xef\x72\xb5\xc5\x54\x86\xaf\x7c\x5c\x2b\x93\x11\x5f\x41\x16\x57\xac\x35\x20\xc2\x08\x7e\x68\x39\xee\x6b\x66\xdb\x07\xe4\x56\x90\x4f\x4c\x47\xc2\x02\x9d\xaf\x7e\x68\x49\xca\x2b\xbc\x22\xb4\x72\x97\x23\xd7\xcd\x60\xcd\xf3\xff\xe1\xab\x6d\xa0\xc5\x22\x0e\xa1\x2a\x4c\x3f\x6d\xda\xca\x86\xc4\x75\x71\x8a\x5a\x2b\x1c\x5f\x34\x5c\x1b\x86\x92\x80\xf2\x22\xf8\x96\x07\x35\xe9\x75\x86\x53\xeb\xc2\x62\xcf\x40\xad\x26\x02\x50\x71\x9c\x7b\x98\x57\x38\x65\xd1\x6f\x69\xad\x67\x12\x32\x42\xe1\x6d\x55\x7c\xdb\x10\x13\xae\xe0\x87\xc2\xbb\xee\x5d\x0f\xa6\x55\xa7\x6f\xeb\xc2\x7a\xbf\x9e\x9e\xfd\xfc\x94\x91\x5a\x72\x9a\x5c\x51\xc5\xff\xad\x9a\x9d\xb6\xce\x9f\xc7\xe7\xfd\x9f\xd1\xbc\x3e\x67\x2e\x80\x65\x6e\x7e\xe3\x33\x2a\x23\x7a\x91\x1b\x0a\x3c\x82\xb0\x10\xfa\x4b\xbf\x34\x37\xfb\x51\x45\x3b\xf9\xae\x26\xf1\xd6\x74\x91\xed\x81\x9e\x53\x71\xd4\x96\xec\xb7\xb9\xa4\x25\x0b\x9b\xdc\x99\xe7\x86\x8a\x06\x4d\x2a\x19\x24\xff\xf5\xef\x13\xb3\x82\x16\xac\x49\x30\x17\x0a\xc8\x2f\x7f\x73\xec\xb9\xeb\x3c\xbe\xba\x3b\x3b\x26\x9b\x8d\x70\x13\xb3\x1e\x18\x73\x8a\x88\x18\xcf\xd0\x36\x82\xc9\xb7\x48\xfd\xd9\xf2\xeb\x8c\x45\xe5\x26\x92\xc4\xda\x73\x38\xd0\x9e\x70\xd2\xd9\x03\x07\x32\x40\x80\xdc\x75\xca\x64\xff\x37\x5c\x6a\x63\x5b\x26\xca\x3f\xdd\xc3\xc3\xc5\xca\x88\x65\xf4\x8b\x0a\x2b\x78\x60\xa4\x2d\x71\xcb\xf2\x0f\x6e\xd6\x6a\x25\x2b\x72\x1b\x5c\xf7\xb8\xaf\x70\xd7\x63\x23\xb3\x38\x4e\x45\xd1\xfb\xdd\x36\x7d\xfd\x1e\x40\x15\x15\xdf\xd6\x6d\x5a\xd8\x86\x98\x79\x49\x12\xe5\x51\xfb\x03\xbb\xd4\x89\xa6\x4d\xcc\x5c\xd4\x80\xd4\x8c\xb6\x5d\x68\xd6\x58\xa0\x9d\x1a\x38\xd8\xe6\x96\x38\xe3\xcf\x66\x07\x0c\x4d\xe2\xdb\xc4\x02\x4a\x46\xc9\xa7\x3e\x2e\x25\x3f\xe6\xdd\xa6\x33\x69\xd4\xdb\xdb\xc3\xd7\x10\x3f\xe9\xd5\x6d\xd7\xa3\x9a\x03\x3f\xf5\x93\x9a\xfa\xa4\x0d\xd9\x3b\x9d\x33\xac\x5b\x32\x48\xd5\x89\xc9\x4d\x5a\x91\x0d\x19\x3e\x0e\x85\x1c\xd5\x95\x3b\x34\xa9\x04\xb9\x13\x4f\x02\xc2\xeb\x47\xf5\x59\x27\xb2\x39\x4d\x3b\xa9\x9d\x3e\x33\x37\x5b\x3f\xfb\xa8\x42\x5c\x23\xc6\x5c\x78\x56\x0d\xfb\x2d\x17\x31\x9d\xbc\xb2\x68\x9b\x9a\x68\x4a\xf3\x3e\xf9\xb3\x2f\x1f\x31\x56\xaf\xcb\x4c\xd4\xc0\x17\x84\x6f\x95\x87\x98\x25\x14\x79\x72\x27\x0e\x0e\x16\x41\x46\x36\xae\x7d\x8b\x0c\xc2\x00\xea\x11\x78\xf4\x78\x13\x57\xa7\x29\xad\x09\x29\xab\xa1\x10\x65\x84\x60\x5b\xeb\xc6\x68\x69\xa4\x07\xf9\xa1\xa3\x91\x9f\xf2\x85\x17\xa0\x8c\x72\xb1\x5f\x9a\xd9\x25\x27\x3d\x6f\xdb\xaf\x9a\xea\x80\xd7\xfc\x83\x8d\x12\x25\xe9\xc3\x93\xf6\x31\xe4\xd4\xab\xbd\x1d\x23\xe4\x9f\x2c\xd4\x45\x75\xf2\xce\x2d\x6d\xba\xca\x0d\x9c\x64\x0c\x00\xf0\xc7\x8f\x9c\x36\x8d\xa4\x93\x67\x20\xe0\x06\xb9\x67\x0f\x09\x88\x7a\x79\xf9\x2a\x6d\xc5\xfe\xa1\x8a\x82\x9e\x58\x18\x7a\xac\x0f\x75\x0c\x4f\xbf\xc6\x2c\xd5\x87\x37\x4f\x8d\xd2\xf6\x24\xa9\x17\x33\x7c\xe4\xe6\x29\x5d\x11\xc4\xaf\x12\xe6\x29\xf6\xc9\x8f\x2b\xbc\x3b\x9b\x35\x6f\x76\xa9\x54\x8e\x07\x1a\xb5\x8d\x43\xa3\x20\xa4\x3e\xdf\x0d\xc3\xd5\xff\x75\x07\x1f\x11\x5c\x8d\x7c\x07\x85\xa1\x54\xca\x88\x8b\x87\xb4\x6e\x24\x74\x5c\x1c\x8a\x71\x4f\x5f\x7e\xc1\xb3\xa6\xb7\x51\xc9\xa1\x2c\xd3\xb2\xe5\x87\x4d\x36\xd2\x22\xad\x09\x21\xd0\xbb\x6e\x56\x09\x6f\x26\x5f\x33\xc7\x4f\x3f\x70\xbe\xa6\x1b\xc3\x18\xf6\x2d\xa1\x28\xf3\xc7\xbb\xb2\xaf\x8f\xf8\x4d\xea\x36\x53\x67\xb7\xfd\x6b\x95\x28\x6f\x8b\x96\xca\xf1\xa0\xdd\xda\x72\xca\x8d\x70\xc9\xe2\x6c\xf3\xc2\xa0\xc3\x63\x74\x92\x96\x8b\x7b\x4a\x36\x6a\x12\x3b\xe0\x77\xf4\x99\x5e\xa9\xea\x12\x00\x72\xe6\x07\x2b\x14\x78\x80\x89\x04\x92\x1c\xa7\xed\xfd\x26\x18\xc7\x22\x49\xa6\x86\x52\xed\xf6\xbc\x36\x57\x8d\x3c\xde\x33\xbc\xff\x71\xd3\x2f\x9e\xfb\xaa\x97\xfb\x72\x3b\x3a\x47\x69\xe5\x95\x0d\xf2\xc9\x58\x58\x45\xae\xdf\x67\x60\x1e\xf9\x46\x3b\x1e\x76\xd7\xf0\xf4\x9b\x6b\x1e\xcd\xc5\xc2\x36\xd5\x6e\x3b\xd8\x25\x16\x6d\x84\x69\xb4\xe8\xcb\xef\xbf\xc9\x20\xc4\x62\xe4\x86\x12\xaf\x76\xfa\xb0\x5e\x0e\xd0\x2a\x0e\x02\x98\xfe\xe7\xbe\xaf\xf1\x0b\x92\x60\x1b\x38\xc8\xa6\x2d\xd8\xd8\xed\xd4\x8c\x1f\x1d\xc2\x7a\x4a\x3d\x11\x48\x3c\xaf\xd6\xd4\x06\x2d\x58\x9a\x43\x1a\xf8\xd5\xcb\xda\x9c\x3d\xe9\x57\x75\x6e\x74\x5f\xee\x91\x2e\xf5\xe3\x6a\xc0\x20\x95\x5a\x67\xbb\x6f\x33\x48\x04\x24\x00\x4d\x7d\x5e\x6c\xfd\xe0\x70\x36\x77\xd2\x96\x8f\x59\xd6\x7f\x60\xed\x73\xc2\x24\x1d\xd7\x22\x50\x8d\x1f\x69\x6e\x93\x61\xd3\x25\x4a\xfe\x09\x6b\x4d\xfb\x20\x04\x7a\x1a\xfc\x4f\xf1\x43\xe2\x67\x21\xdf\xe6\x6e\xd1\xb7\xb7\xd9\xd9\x73\x95\x75\x28\x53\x96\x09\x77\x4a\x9b\xa1\x56\xa9\x1c\xbf\xfa\x90\x16\x8e\x4d\xef\x8e\xb6\xb8\x92\x1c\x05\x29\x4b\x7c\xdf\x41\x8d\x6a\x4c\x6a\xd0\x0e\xad\x5c\x62\xce\xc7\xc0\x84\xf4\xc6\x08\xcb\xee\xe1\xe1\x49\x13\xce\xb5\x0c\xce\x56\xbd\x13\x37\xbf\xad\x21\x8c\x1e\xcb\xf1\xf0\x17\xb4\xf1\x1e\x0a\x93\x4f\x07\xec\xfe\xc2\x7d\x86\xef\x5a\xd7\x82\xe9\xb3\x67\xcf\x91\xee\xc3\x33\xb2\x27\xbc\x1b\x79\x42\x80\x24\x77\xcf\x59\x43\xf8\x23\xf5\x08\x15\xad\x60\x53\xd3\x30\x0b\x22\x96\x5c\x2b\xe2\xd7\x38\xf5\xf9\xd5\xbb\x0d\x65\x76\xe4\x0a\xf5\x9d\x9f\x09\x8f\x83\x95\x58\x57\x50\xde\x67\x88\x49\xfa\x91\x57\xc1\x4c\xa4\xd8\x3f\x1d\x6c\x93\x24\x6b\xa0\x10\xf2\x97\xe8\x8d\x76\x3d\x36\x52\x89\x84\xea\x95\x4a\x7c\x70\xa9\xe1\x3e\x0e\xfd\x2a\x0f\x6b\xef\x5e\x9e\x2d\xf7\x09\x39\x97\xae\x46\xe1\xdf\x98\xba\x16\x6e\xd4\xeb\xd4\xa1\x21\xdc\x39\x66\x64\x5b\xe9\x27\x1e\xcc\x80\x87\x35\x5f\x1e\x4a\x99\x07\x88\xcf\xc2\x0f\x76\xa4\x80\x04\x90\xdc\x8f\x0b\xa3\x47\x28\x12\x83\xb2\x45\x8a\xbf\xbb\x79\x6a\xf6\xe1\x79\x24\x74\xea\xc9\x0b\x3d\xa7\xd8\xc1\xfb\xef\x30\x39\xc5\x8d\x48\x28\x74\x41\x3a\x9d\xa0\x29\xae\x06\x51\xc8\x6d\xc5\x0a\x5f\x9b\xae\x81\x36\xa9\xef\xf3\xd0\x35\x60\xb7\x98\x14\xda\x40\xcd\xcc\xed\xef\x1c\xd7\x76\xe3\x6a\x8e\xa2\xc2\x16\x0e\x86\x0a\xb5\x90\xca\x1d\x6b\x34\xa7\xab\x4f\x8f\x50\x8a\x14\x6a\xa5\x10\x5f\x99\x97\x45\x07\x05\xb5\xbd\xf8\x67\x03\xf9\x8c\x65\x19\x71\x71\x0d\x85\xfc\xec\x7e\xe7\x8c\xd6\x3a\x21\x1f\x73\xf5\xae\x55\x0f\x0c\x4e\xff\xeb\xfc\x2e\x58\xa2\x3c\xcf\x61\x4b\x57\x05\xe7\x82\xa0\xe5\x7e\x76\x6b\x7a\x3c\x92\xc6\x5f\x2b\x59\xf2\x1b\x4e\xf3\x5f\xdb\xa4\x6e\xe4\x87\x58\x60\xef\xfa\xf3\x0f\x77\x25\xf2\xc4\xaf\x6c\x3d\x63\xe0\x24\x42\x6a\xd5\x1d\x0a\x92\xac\x42\xe6\xf5\xa1\x6d\x02\x5b\x84\x6d\x46\x29\xcf\x20\xf9\x09\x3b\x85\xff\x30\xb6\x84\x67\x70\xfd\x1c\x50\x5a\x17\x11\x5f\xec\x75\xe6\x0f\xe4\x05\x1a\xaa\x50\x26\x20\xb3\xf9\x5e\x4d\xdf\x3e\xf2\xe1\xf5\x02\x62\x22\x1f\x1b\xe3\xbc\x00\x79\x0d\x57\x1a\x19\xff\xf2\x75\xcd\xb0\x98\xc2\xa8\x7f\xda\x5e\x5e\xe3\x38\x80\x42\xa2\xc2\x87\xbe\xe8\x9e\x35\xdd\xeb\x19\xa1\x02\xac\x56\xe8\x3e\x65\x90\x5f\x2a\x49\x0e\xe4\xc1\xad\xf0\x07\x69\x30\x44\x61\xba\x7a\xd5\x29\x93\x92\x9e\x14\x21\x72\x6a\xb0\xe8\x58\x36\x2d\x86\x14\xfe\x20\x3e\x6a\x78\xa0\xaa\x24\x22\x70\x0a\x1d\x73\xf9\x93\x5d\x89\x42\x45\x29\xcc\xaf\x1c\xaa\xad\xbd\x39\xba\xa2\x2f\x7f\x61\x87\x66\x22\x4f\xbd\x0c\xe5\x26\x77\xff\x76\x43\x24\x0a\xfb\x24\x4c\xc3\xd9\x40\x21\x44\x70\x1d\x06\xb5\x4f\x35\x31\xfb\xc6\x48\x89\x07\x41\x41\x83\xb2\xa4\x1d\x08\x76\xaa\xa0\x2e\xf6\xfd\xf1\xba\xc7\x06\x8b\xda\x8f\x11\x20\xd1\xe5\xbf\xcf\xa9\xb0\xa5\x2b\x39\xdb\xb4\x0d\x2d\x4a\xf6\x68\x5f\x81\xba\xf0\x52\xe3\x43\x2f\x18\x91\x90\x56\x70\xea\x4c\xf6\x3b\x61\x13\x85\xac\xba\x4f\x5b\x2e\xb6\x6b\x22\x0b\x17\xc6\x3d\x6e\x6a\x09\x33\xec\xd7\x42\x07\x4b\x1f\xbe\x7c\x38\xd9\x84\x89\x00\xb1\x57\xec\x95\x57\xbb\x6d\xc3\x27\x6e\x22\xc9\x17\x28\xf1\x3d\x1a\x23\x98\x80\x19\x05\xc4\x8b\x6f\xf7\x6a\x80\x4d\x2f\x15\x84\xcb\x7d\xf6\xd1\xb6\x12\x1e\x00\x93\xd0\xcf\xc5\x3f\x3b\xc3\x1f\xf5\xd2\x94\x3a\x26\x44\xdb\x9f\x6b\x6a\xe3\x79\xb7\x22\xbc\x90\xe3\x92\xe1\xd6\xe6\x22\xee\x1c\x0a\xe5\xc9\x1f\x06\x96\xb2\x55\x06\x0d\x42\x5a\x0f\x19\xf2\x83\xaa\x4b\xc3\x36\xe3\x91\x78\xea\xae\xec\x5d\x6e\x20\xc6\xc1\x32\xaa\xc3\xfa\xb8\x31\x21\xaa\x45\x62\xaa\xb1\xd0\x30\x81\xf1\x22\xe0\x3e\x49\xab\xff\xc2\xb3\x9d\xe9\xb8\x04\xbb\x9a\x38\xf1\xad\x5d\x6f\x13\xe5\x5d\xa9\x1c\x0f\xd9\xae\x0c\x5e\x51\x0a\xe1\xfa\xc0\x38\x53\x32\x39\xed\x21\xe0\xa1\xcd\x7a\x22\x9b\xc9\x3a\x67\x2c\x98\x23\xe5\x96\x7f\x39\xa0\xcd\x13\x1d\xb9\xa9\x1d\xd0\xdb\x0d\x36\x8a\x8f\x9a\x02\xdc\x95\xbb\xe8\x79\x03\x7f\x48\x59\x0b\xf5\x4c\x4b\x11\x0e\xad\xc5\x26\x28\x81\xfb\x5f\x5a\x51\xa8\xb9\x14\x17\xdf\x75\x68\x88\x28\x0f\x89\x27\xa6\x36\xd7\x3c\x74\xbe\xae\x10\x37\x7d\x1a\xcc\x2d\x4a\xe5\x78\x9c\x86\xdc\x77\x58\x05\x85\x50\x30\x0c\xbe\xab\xad\x24\xe2\x9c\x16\xa9\xfc\x56\x5c\xf0\xa2\x6e\xd7\x10\xf1\x2a\xae\xf0\x1f\x87\x64\x43\x5b\xc7\x42\xf5\xab\xb0\xaf\xbd\x0f\xac\xb8\xd8\x93\xce\xe3\xb9\xe2\x69\x23\xde\x45\x81\x23\x6d\x65\xef\x11\x3f\x8f\x46\x21\x43\x35\xae\x8f\xf4\x99\x95\x9a\xd7\xb0\x90\x5c\x4b\x0a\xd8\xd9\x6a\x05\x23\x4d\x42\xb8\x8d\xdf\xa8\x5b\x75\x58\x14\x23\x55\xc2\x5b\xed\xe2\x95\xb3\x35\xfb\x6a\x97\x06\x3c\x27\x14\xaf\xb8\x83\xcf\xe9\x9c\x08\x0e\xd1\x6b\x0f\xa5\xe7\xe3\xc6\x28\xc5\xd8\xbb\x8a\xa4\x1b\x50\xf8\x5c\x6f\x31\xda\x13\x1f\x5b\x75\xfe\x2d\x3e\x1d\x66\xcf\x83\x83\x98\xed\xa6\x7c\xd8\xdd\xbb\xe0\x4f\x4b\x1f\x40\x0e\x6d\x53\xe4\xca\x7f\x63\xb3\x26\x3e\xea\xa7\x3e\xd4\xc2\x9c\x94\x61\x97\x80\xe9\x1b\x7f\x6d\x0e\x37\x42\x2f\xbd\x4f\xb0\xd3\xd5\x9c\xa9\xf3\x4e\x25\xa0\x97\x24\x01\xe8\x56\x96\x1a\x42\x85\x0e\x46\x61\x29\x64\xa9\xac\x22\x3c\x8c\x0e\xf5\x58\xeb\x3d\x91\x3e\x49\x3d\x7b\xc4\x70\xcb\x8e\x02\xa0\xdc\xda\x82\x5c\x95\xdf\xb7\x83\x7f\xca\x94\x7b\xc3\xb3\x70\xbf\xb9\x43\x34\x58\x3e\x3c\xbb\x8e\xc9\xaa\xdf\x53\x42\x14\xcb\xcc\xa8\x25\xec\x4a\xb8\x9c\xdd\x0a\x35\x87\x44\xfa\x3c\xe6\xe3\xda\x2e\xcc\x45\x2d\x6d\x8a\x73\xd5\x71\x35\x13\x08\x03\xd2\xd0\x28\x64\x85\xd3\xd7\x6b\xab\x1a\x8c\xc3\xb6\xfd\x77\xfe\xbe\xa9\x86\xad\x30\x81\xc5\x49\xaa\x06\xec\x30\xf5\x7b\x43\x1c\x84\xa4\xda\xc3\x57\xfa\xb7\xdc\x9e\x85\x04\x20\x2f\xb0\x38\x28\x29\xfb\x0b\xee\xac\xc8\xf5\x07\xb2\x7b\xa4\x94\x67\x3f\x9d\x8d\x20\xf7\xa3\xdf\xea\x32\xb6\x67\x2d\xe2\xdb\x2e\x0e\x78\xbf\x12\xff\xe7\x5e\x63\x80\xec\xa0\x50\xee\x0a\x36\x6a\x5d\x42\x52\x05\x25\x27\x87\xcf\x2b\xae\x18\x24\x15\x6d\x41\x2c\xb4\x54\x8e\x7f\xfe\xd0\x39\xc4\x68\x61\x59\x7f\xe6\x90\xe6\x6c\xf4\xae\xf9\x1c\x3a\xb3\x6f\x88\x78\xa5\xdd\x11\x17\x03\x9a\x7d\xda\x28\xae\xb0\x1f\xb2\xc8\x93\x3a\xd9\xab\x8c\x29\x5e\x0d\xf3\x4f\x19\xff\xf1\x64\x16\x91\xdf\x44\xbe\x8d\x59\x85\xb8\xed\xe9\xa3\x2f\x77\x66\x8f\x31\xb9\xf7\xeb\x88\xa1\x69\xdd\xdd\x72\x3e\x73\xdd\xbd\x86\x61\x1b\x50\x40\x0a\xff\xde\xab\x92\x1b\xa3\x01\x67\x4b\x94\xfb\x8a\xef\x3f\x34\x42\x09\x0c\xe8\xd8\xb7\x23\x9d\xa6\x05\xba\xd7\x00\x41\x41\x68\xfd\x0b\xeb\x2a\x8a\xb5\x5f\x81\xae\xf1\x53\x27\x8d\x14\x82\xc0\x81\x98\xdb\x76\x26\x31\xe4\x67\xf9\xec\x5f\x50\x2c\x63\x01\x0b\x5b\x7a\x5a\x39\xb1\x74\xce\x86\x59\xe0\x1d\x23\xb3\xb6\x97\xd3\x96\x88\x40\xfe\x96\x71\xea\x00\x57\x49\xd8\x2b\x0d\x4b\xd3\xa4\xf7\xb7\x95\xb0\x09\x2e\xad\xa6\x15\xe2\x07\xd4\x0f\x4a\x57\xa3\x76\x3d\x83\xfa\x0d\x06\x96\x1e\x83\x57\x34\x27\x89\xf4\x15\x3e\x71\xa9\xba\xa8\x95\x1e\xde\x7b\x9d\x37\x55\x37\xf5\xf1\x93\xb3\x2f\x28\xdc\x9f\xef\xc7\xbb\xfc\x25\x2c\xf2\x49\xa9\x1c\xbb\xec\x62\xad\x4a\x94\x8a\xbe\xe6\x45\xdb\x76\x29\xef\x49\x71\x83\x04\x21\x75\xb9\x66\x75\x71\x83\x21\xdf\x86\x7a\x31\x23\x52\xe3\xe0\xd9\x63\x53\xcc\x50\xe1\x21\xdf\xa6\x0d\x1a\xb9\x94\xab\x40\xa9\x21\xe2\x1c\x3f\x1b\xf6\x22\xdf\x23\x41\x88\xea\x49\xc2\x92\x49\x89\x3d\xc5\x6b\xa2\x15\x98\x45\x01\x72\xa1\x57\x82\xdc\x3a\x65\xa3\x41\xd8\x00\x3d\x38\xc9\xcc\x45\xab\xf8\x98\xff\x0a\xd6\xd4\x2b\x98\xdc\x6d\x06\x6d\x04\xae\xb2\x00\xff\x15\xb7\xbe\x96\xe5\x0d\x21\x1b\xbb\x0d\x87\x9c\xc3\xa3\x6d\xce\x4e\x25\x7e\x81\xe1\xa9\x4c\x34\x24\xe3\x69\x14\x06\x0d\x5a\x97\x72\x05\x39\x7c\xbd\xd6\x6d\x86\x11\xb3\x21\x4f\xfc\xfd\x21\xf5\xc6\x66\x76\xcd\x9d\x3e\x6b\xde\xac\xe9\xf3\xe6\xcd\x82\x85\xd0\x2d\xd9\xd8\xd1\xd9\x35\x63\xbe\x68\xfc\x7f\x79\xc3\x78\xfd\xec\xad\x6b\x37\x5c\x1d\xf9\x8a\x86\xa1\xc1\x8c\x71\xda\xee\x88\xe7\x4d\xe8\x63\xa8\x00\x56\xad\x2d\x66\x03\xe6\xba\xa8\x11\x88\xd2\x74\x63\xbf\xec\x7b\xc5\x37\x46\x24\x14\xef\xa9\x2d\x7e\xae\x39\x28\xfd\x55\x39\xe6\xe3\x36\xcd\x59\x3c\xb0\x9c\x16\xb7\xb4\x78\x72\x47\x9b\xd1\x84\x1d\x59\x52\x06\xa1\x2f\xb7\xcf\xb0\x1d\x6c\x31\x52\xab\xb9\x58\xe8\xb9\xad\x39\xad\x2a\x4a\x0d\x92\x14\xdb\x86\x4c\x9e\xcd\x60\x14\xc6\x43\xc3\x5e\xd7\x38\x33\x11\x48\x3c\x0b\x62\xcd\x34\x55\x49\xcc\x9c\x33\xab\x54\x8e\x3f\x3a\x40\x45\x26\x27\xf2\x6d\x86\x93\xe2\x2a\xee\x18\xa2\x66\xdf\xb3\xe6\xce\x4f\x9e\xec\xbd\xfd\xd5\xd4\xd7\xcf\x20\x78\xef\x7c\x68\x9c\x28\x2a\x3c\x44\x2c\xa7\x0d\x84\x97\x3b\xfd\xb0\x4a\xc2\x15\x98\xe0\x16\xbe\x5a\xd4\x9c\x51\xf4\x1f\x76\xc1\xd1\x0e\x6d\xf7\x29\x34\xc7\xbe\x34\x62\x8c\x7e\x1a\xae\x29\xaf\x99\x26\xaf\x58\xa9\x1c\x8f\xd8\xae\x8b\x0c\x36\x45\x1f\x32\xe6\x88\xe1\x53\x4c\x82\x0a\xf5\x35\x46\x41\xfe\x87\x79\x01\x6b\xc6\x08\xd4\x5d\x4a\xb7\x19\xaa\x14\x4c\x0c\x3b\x54\x69\x73\x9b\xd6\x59\xcb\xf9\xe0\xa3\x17\x98\x85\x0d\x4b\xc1\x9a\xb9\xde\x21\x26\x7b\x00\x1c\x4f\x7a\x04\xad\xf2\x8d\x3b\xce\xc1\xca\x07\xb3\x09\x03\x38\x1a\x3a\xc9\x9f\xf2\x94\xf5\x87\x87\x45\x7d\xc5\xc7\x72\xe0\xad\x97\x5f\xd0\xa5\x32\x4f\x0b\x49\x9d\xf8\x5c\xbf\x63\xd9\xd6\x61\xe6\xbc\x50\xb8\xdb\xc4\xaf\xe5\x15\x4c\xc1\xa1\x00\x27\xfe\xca\x49\x55\xa4\x92\x24\xe3\x70\x62\xc0\xc5\xae\xe9\x7c\x51\xe1\x1b\x04\xf3\x56\xfc\xec\x66\x53\x11\xe0\xc6\x88\x28\x96\x5d\xeb\x0e\x63\xea\xe6\x43\xf4\x2e\x79\x38\x08\x50\x4d\xfa\x47\x17\x3f\x3c\x40\xd3\x3c\x4f\xde\x0d\x4c\x4f\xca\xeb\xb3\x91\xd4\x62\x34\xa8\x18\xcd\xdb\x3c\x5b\xf3\x5e\xa0\xae\x8b\x51\x2d\x52\x72\x0e\xf1\x89\xeb\x55\x28\x6a\xe0\x20\x20\x49\x2c\x26\x49\x15\xf3\xcb\xe3\xea\xd4\x2d\x98\x3f\xa7\x94\x9c\xf8\xe2\xc2\x58\x13\x8f\xc6\x01\x81\x55\x7a\xf1\xb3\x37\xf3\xb0\xcb\xdd\xbb\xab\xa9\xd9\x4b\xd5\xc0\x27\x27\xf9\xa6\x0e\x46\x23\x50\x97\xaf\xbb\x26\x1b\xeb\x6e\x8c\x70\xc4\xf9\x2b\x05\x5b\x5b\x8e\x3a\xd4\xc3\x1e\x47\x44\xe5\x6e\x7c\x4d\x63\x52\xa0\x90\x04\x55\x90\xba\xf8\xdf\x67\x78\xa5\x1b\x3a\x0c\xe3\x52\x77\x24\xe6\x75\x43\x0f\x19\x9b\x3b\xcc\x2a\xd2\x1c\xf4\x5d\x37\x1b\x80\x62\xe4\x02\x20\x9c\xcf\x79\xbe\xb6\xc5\x34\xfb\x17\x3e\x08\x12\x43\x39\xe9\xde\xec\x54\xb2\x9a\xf4\x60\x28\x55\xae\x37\x30\xd6\x3b\x0d\x86\x5c\x48\x6b\xa0\xee\x21\x40\x4d\x77\xe5\x47\x19\x92\x3b\x35\x26\x2c\xf7\xf3\x53\xb6\xbe\x5d\x94\xd2\xb0\xcf\xcf\x6d\x7f\x58\xd0\xc4\x68\x85\xbb\xe8\xad\x32\x8d\x0a\x31\xc0\x15\x38\x8a\x5e\x69\x0f\x21\x26\x69\x0d\xf9\x01\xdb\x54\x07\x27\x8d\xaf\x4a\xe5\x78\x8d\xab\x6a\xd3\x24\xf7\x5b\xb4\x01\x2a\xa1\xc9\x6f\xfd\xc9\x68\xcd\x35\x24\x0a\xe1\xc5\xeb\xbb\xce\x7b\x97\x8f\x34\xef\x34\xe6\xf0\xcf\x5f\x8d\x1f\xa9\x43\x88\x43\x46\x2a\x5c\x47\x25\x7e\x63\x20\x3f\x35\x97\x23\xaf\x42\x6d\x92\xea\x60\xcd\xd0\xbc\x80\x19\xe1\xee\x45\xb9\x47\xe6\xaa\x3d\x59\x04\x0f\x62\xcb\xca\x2c\xb2\x8e\x51\xab\xee\x12\x13\x9d\xb2\xff\x26\x5e\xcc\x50\xcb\x42\x81\x5c\x82\xe5\x6f\x58\x62\x2c\xc7\x89\x8f\x03\x00\xb7\x7d\x61\x45\x1b\x8e\x0d\xfb\x40\x15\xe1\x9b\x90\x6b\xef\xd5\x46\x6a\x61\x84\x98\x96\x84\xbe\xe9\x18\x48\x50\x94\x84\xa8\xcc\x75\xcc\x55\x57\x0c\xcd\x54\xc3\x20\xfd\x72\xe1\x81\xec\x69\xd3\x95\xdd\x60\x63\xff\x89\x58\xdb\xa6\x32\x5f\xa7\x0a\x15\xd7\x3f\x9a\x02\x93\xb1\xd5\x2e\x29\x3d\xe8\x2e\x15\x39\xa8\xc4\x4b\xe4\x9e\x79\x56\xcb\x0f\x16\x6e\x82\xda\x58\xf1\xf2\x7e\xc2\x6c\x01\xf4\x3b\x30\xdc\xc4\x21\x3b\x46\x6a\x89\x8a\x1b\xa3\x88\xca\xfe\xb7\x37\x88\x64\x21\x70\x53\x5f\xdc\x6b\x8a\x52\x22\x5b\x7c\x81\xcb\x4f\x1a\xb1\x3b\x62\x7e\x3a\x81\xf0\x8e\x66\x93\x8c\xe5\xa0\x00\x67\xa3\xd8\x77\xe6\x6a\x9f\x77\x53\x28\x78\x68\x03\xf2\x13\x74\xc0\x39\xc7\x6f\x99\xe3\xee\x9f\x6c\xd2\x3c\x01\x23\xd6\xa0\x3c\x76\xfe\xe6\x99\x8b\x8c\x67\xce\x6c\x09\x6f\x92\x17\xe5\x3b\x87\x35\x9a\xbe\xc3\x65\x62\x07\x1d\x32\x7c\x59\x5b\xb4\x54\x25\xd5\xd0\x11\x81\xa5\x18\x1a\xc3\x3e\xa1\xc4\x22\xff\x78\xeb\xe9\xec\xfe\xb5\xe6\xd2\x0a\x72\xa5\x7d\x90\x50\x9b\x9d\xbc\xcc\xb0\x37\x82\xf3\xc9\xf3\xa3\xf7\x8c\xd1\x07\x33\x12\x22\xe2\xa7\x53\xaa\xc2\xc6\x55\x2a\x81\xd6\x29\xc3\xe2\x62\xc5\x2f\x19\x6e\x52\x3c\xc6\xf0\x96\xf5\xff\xf5\xe7\x6f\xbe\xdc\xc4\x2c\xc0\xa0\x8a\x94\xbb\xac\x3a\xda\xac\xd4\x9a\xb8\x47\x8c\xf6\x7e\xd2\xb6\x2f\x84\x6c\x20\x66\xd4\x03\xf6\x19\x82\x5f\xb3\x67\x71\x60\x69\xf1\xc2\x9d\x29\x37\x21\xb0\xda\xca\xa2\xc2\xce\xf9\x46\xfb\xe3\x22\xab\xee\x21\xe2\x02\x47\xfe\xd4\x42\x1e\x31\x5c\xea\xd7\x92\x34\x29\xfd\x4f\xfe\xdd\xa0\xbc\x85\x9c\x11\x2f\x90\xbc\xef\x7f\x46\xc1\xa2\x91\x8e\xc0\x18\x31\x95\x4f\x7e\xca\x35\xea\x93\xb6\x36\xe8\xfb\x47\x8d\xf1\x4a\x88\x42\x2c\xed\xe8\x92\xe7\xfc\x1f\xf9\xb4\x5e\x43\x6e\x5d\xab\x88\x3e\x3f\x09\x68\xba\xc9\x3f\xba\x6e\xf5\x92\x52\x39\x7e\xfb\xfc\xec\x59\xbb\x91\xf4\x44\x38\x4b\x6b\x2c\x8e\x3a\xaa\xca\xcb\xae\x19\xa0\xea\xb1\x72\xbc\xe6\xdf\x42\x60\xc5\x07\x9d\xfe\x91\x93\xe7\x1b\x9d\x30\x01\xf9\xa1\x78\xe6\x52\x33\x78\x59\x98\x9b\x15\xf1\xe9\xc3\xd6\xf1\xaa\xbc\x09\xac\x08\xee\xd0\x77\x0d\x98\x12\x6f\xa8\x52\xaf\x92\xe2\xa7\xae\x91\x16\x6a\x16\xc3\x88\x0b\x9e\xdd\xd9\x9d\xbd\xe8\x8d\xc8\x75\x79\x3b\xf1\xf3\x86\x06\x2d\x42\x2e\x17\xb4\xcc\x0f\x9c\xca\xd3\xf3\x75\xc9\x73\x52\xb1\x70\xfb\x13\xea\x2b\x87\x20\x14\xb7\xe6\xc8\x05\xba\xa4\x46\x92\x22\x35\xce\xc7\x5b\x46\x5f\xa8\x0d\xae\x42\xcc\x2c\xdc\xc8\xf8\x65\x15\x3f\xf0\x84\xc2\xe7\x85\x9a\x8f\xe6\xb3\x3b\xd3\x1a\x1f\x4a\x96\x78\xd4\xe9\xa1\xba\xda\x4b\x03\x04\xc3\x0b\x77\xf5\x33\xd4\x78\x29\x0b\x1d\x18\xbb\x8b\x56\xf1\xb3\x63\xc6\x69\x70\xbd\x05\x73\xda\xce\xef\x53\x1b\xf9\xda\xa3\xc6\x90\x10\x61\x41\xfb\x14\xd8\x25\x00\x63\x41\x55\x7c\x9d\x5e\x6a\x4c\x28\x36\x25\xd7\x28\x50\x3e\x62\x9f\x59\x76\x9e\x36\x24\xa9\xc0\xc3\x7f\xcf\x24\xa3\xa8\x22\x61\x0f\x74\xd8\xf2\x58\x6e\x14\x76\xf7\x8c\x60\x60\xdb\x3f\x30\xde\x9c\x13\x42\xfb\xa3\x0a\xf2\x71\x97\x8e\x6d\xeb\xf2\x1a\x30\x69\x87\x32\xed\x1f\xc6\x46\x1f\x70\x1f\x29\xc6\xf9\xb9\x91\x86\x41\x44\x64\xa3\x06\x0e\x42\x69\x21\x1d\xff\xdf\x93\xbc\x15\x5a\x79\xc9\x15\xc9\xcf\x6d\x97\x51\xb8\xea\x94\xe9\x4e\x6e\xa7\xc7\xaf\x70\xe7\xc9\xa1\xfa\xb4\x59\xe4\xcb\xbd\xe6\x80\xdf\xc7\x2d\x24\xe8\xa2\xf9\x57\xbb\xd4\xb1\x42\xa0\x4d\x7f\xc1\xa0\x77\x66\xfe\x7e\x9d\x7a\x01\xf5\xa8\xcb\x95\x23\x8c\x5a\xed\x77\xb7\x64\x2b\x72\x86\x02\x2f\x0a\x02\x6c\x24\xf2\x63\x07\xd3\x40\x66\x45\x26\xb2\xac\xaf\xd8\x08\xd5\x38\x28\x24\x5e\xbb\x57\x5a\xb1\xff\xde\xb1\xd8\x87\x65\x4d\x92\xe8\x4b\x6b\x59\x64\x94\x54\x2b\x35\x20\x62\xd4\x80\xce\x03\xda\x9a\x1f\x6d\xd0\x6c\xc5\x28\x70\x05\xf9\x12\xfb\x2d\xae\x61\xe9\x17\x79\x0d\xb9\x35\xbc\x7b\x9d\x02\x95\xd6\x90\x5f\x6b\xc1\x06\x4e\xde\xac\xff\x6f\xe9\xb8\xf6\x66\x52\xee\xfc\x40\x21\xa1\xc1\xfb\xab\xec\xc2\xd5\x37\xc5\x0e\x48\x45\xfa\xf5\xf4\xe5\xdf\x36\xd5\x08\xe5\x49\xed\xcf\x68\x43\x7c\xa0\x17\x1f\x38\x4f\xa3\x6c\xf8\x28\xf9\x27\x6f\x9d\xa0\xae\xbf\x8f\x49\xcd\xa9\xd0\x88\xa5\xfd\xdf\xcb\x2f\x1a\x22\xe3\xa9\x67\x19\x57\x37\x7f\x65\x55\x4a\x5f\xb7\xa8\x57\x05\xa3\xf6\xbe\xfc\x57\xb7\x6a\x3b\x39\x11\xdb\x20\xae\x19\x84\xd0\x59\x73\xa6\xcf\x98\x31\x43\xf4\x81\x7b\x1f\x1a\xa3\xa8\x7f\x7e\x1b\x15\xeb\xf6\x7e\x46\x07\xb9\x60\xc1\x3c\x59\xcc\x5c\xba\x56\xa3\x69\x45\x95\x26\x66\x92\xa6\xf5\xf7\xc7\x47\x6a\xe0\x00\x1f\x6f\x22\x41\x28\x50\x43\xaf\x1b\x20\xb1\x96\x83\x42\x05\xa1\xc8\xdb\x77\x6b\x1e\x6e\xc8\xaa\x43\xb4\x2a\x76\x08\xae\xe1\x95\x94\xd5\x7b\x4a\xe5\xf8\xdb\x13\x86\xea\xd3\x88\x90\xe3\xcf\xbe\x37\x25\x0d\x7d\x75\xe8\xeb\x3e\x74\xa7\x51\xfb\xe2\x88\x33\xd5\xe2\x2f\x33\xa1\xf1\xe4\xe2\xa0\xae\xa3\x9b\x7f\x69\x9b\x34\xac\x20\xe0\xd4\x0e\x18\xd9\x5c\x7d\xd6\xac\x7b\x7b\x05\xff\x49\xc9\x35\xbc\x7d\xa7\xb1\x38\x67\xb5\x48\x96\x34\x79\x34\xc5\xbc\xcf\x1e\x06\xc4\x0b\x4c\x3a\xfa\x6f\x1e\x63\x46\x65\x0f\x33\xc1\x6d\x88\x9d\xe7\xf8\xd8\x1b\xf6\x26\x42\xd2\x37\x36\x30\x3e\x33\xc4\xab\x4d\xfe\xf0\xb2\x3b\x78\x3e\x73\x90\x6f\x4b\xa3\x90\x77\x29\xcf\x8e\x99\x33\x41\x89\xe0\x7e\x3f\xc5\x48\x78\xc0\x3b\x54\x18\x09\x7c\xc4\x58\x98\x3a\x34\xa4\x35\x86\x1a\x50\xe4\x01\x94\xe6\x03\x77\x67\xf4\x87\x49\x15\x81\xe6\x55\xfe\xd6\x17\xd2\xdf\x03\x1b\xa3\xb8\xf0\xe4\x10\x0d\x95\x00\x8b\xbd\x0f\xf7\x9a\x78\x41\x58\x66\xf8\x1c\x69\x57\x7c\xaf\x51\x77\x59\x2e\x46\xc9\xb3\xe0\xf8\xf4\xcf\x0e\x68\xaf\xc0\x81\x3f\xdb\x97\x1f\xb0\x68\xa4\x06\x9b\xa8\x44\xcc\xc6\x02\xf2\x5c\xbc\xf6\x80\x42\xdc\x55\x68\xc4\xa9\x11\x2a\x38\x2c\x31\xb4\x6a\x89\x6f\x75\x8a\x84\x93\xad\x98\x3e\xb2\xca\x58\x05\x78\x15\x14\x04\xc8\xa6\x4c\xdc\xf9\x09\x1b\x34\xeb\x69\x8c\x9a\x02\x52\x77\x6b\x77\x7b\x1c\x89\x7c\xe4\x72\x0e\xce\xc7\x3a\x74\x3d\x5a\xbf\xce\x97\x3a\xdf\x78\xac\x4d\x53\x48\x4d\x55\x8a\x33\x5e\xd6\xb1\x04\xbd\xf0\x7b\xe2\xfe\x86\xf4\x52\x80\x91\xc0\xd0\x76\x6d\x55\xcf\x66\xe6\xdc\x0c\x41\xc8\xf3\xb3\x5d\x66\x4f\x54\xa3\x81\x8b\x9a\xe0\x81\x94\x1a\x15\x74\xde\x39\x4e\x8f\xe5\xcb\x90\x1b\xe8\xc1\x3c\x1e\x3a\xd5\x98\x40\x92\x9a\xaf\x4c\x33\xc6\xae\x90\xf2\xab\x00\x27\xe2\xa2\xac\x85\xaf\xad\xbf\xc4\x48\xbb\x41\x03\x00\x1a\xa4\x3d\x20\x4d\x31\x3c\x97\x03\x07\xb1\x46\xaa\xe7\x9d\xdf\x68\x84\x17\x29\x8d\x29\x68\x92\x8b\x94\xdc\x00\xd6\x55\x54\x4f\x6e\xd7\x30\xdb\xdc\x2b\x54\xa2\x7b\x9f\xcb\xd2\x19\xe6\x72\x3a\x43\xfe\x87\x9b\xd4\x08\xb3\x47\xa3\xbb\xdb\x33\x74\x25\x30\x00\xab\x73\x8c\x43\xf1\xf6\x85\x86\xac\x10\x71\xeb\x62\x1d\x9f\x9f\xf7\x24\xa7\xc5\x5e\xe5\x87\xc4\x23\x7c\xba\xd2\x86\x47\x1b\x78\xb7\x3a\xbc\x6d\x08\xef\xbe\xdc\x7d\x86\x34\x65\x83\xb6\x30\xab\x46\x52\x5a\x22\xaf\xed\xf7\xb0\x4b\x2c\xde\x07\xdf\x62\x9b\xc6\x4e\x11\x4b\xca\x1e\x1e\x8f\xe3\xe7\xdf\xd0\xac\x04\x11\x43\xa5\x0a\x0e\x01\xe2\x32\xfb\x9e\x36\xa6\x2f\x4c\xf3\xdc\x1e\x09\x4d\x38\xb3\xce\x58\x0d\x52\x26\xe4\x7f\xfe\xba\x50\x7d\x0f\x21\x5c\xa1\xab\xae\xae\xb9\x61\x94\xd6\xd4\x61\xa6\xd3\x71\x2f\x78\xe5\x22\xe3\x82\x26\x21\x92\xfb\x46\x4a\xbc\xcb\xfe\xbd\x19\xe6\x05\x10\xc4\x38\xad\xc8\xd9\x65\x1a\xcc\xf1\x88\x02\x2f\xb4\xba\x23\x25\x3d\x34\xa1\xd2\x4e\xa1\x6c\x3d\x7b\xb2\x47\xba\x89\x83\x00\xcb\x45\x4c\x6e\xfc\xa9\x09\xff\xea\xda\x10\x3f\x85\x53\x4c\x35\xbc\x5d\x19\xc6\xbd\x52\x5d\xef\xc8\x2a\x03\x7f\x4d\x84\x56\x6a\x6e\xf7\x8c\x76\x4a\x3d\xb1\xb0\x31\x96\x1e\xb2\x5a\x43\x64\xbb\x34\x80\x4e\x82\xcb\xf3\x1d\x18\xaa\x9b\xea\x0b\x55\xe0\xbc\x61\x6a\x33\x73\x36\x4c\x85\x4b\xe5\xf8\x35\x43\xbb\x19\x79\x98\x11\x0b\xf9\x62\xc7\x99\x94\x26\xa7\x6f\x37\x3e\x6c\x24\x35\x75\xfe\xbc\x57\xad\x10\x67\x76\x95\xca\xf1\xc0\xe3\x46\x8f\x11\x01\x4c\xd0\x4b\x0e\x02\x7c\xbd\x2b\xe6\x8f\xd6\x0e\x82\x84\x04\x89\x97\xd5\xa1\x6d\x1c\xaa\x38\x0c\x23\xcb\xe2\x58\xaf\xdc\x8d\x6f\x68\x98\xa4\x48\x0a\x8d\xf7\xe5\x07\x75\x2a\x9d\x61\x9a\xe4\xff\x31\x5c\x1f\xbd\x74\xb9\x02\xaf\xb4\xd5\xa6\xe4\x59\x63\x38\x2a\x06\xf8\xfc\xd2\x2c\xd6\xec\xa1\x67\x76\x75\x02\x69\xa9\xb0\x4e\xfa\x52\x48\x3a\x61\xee\xee\x97\x79\xcd\xb8\x14\x0b\x4f\xa9\xe4\xdf\x9e\xff\x58\x36\x99\xb4\xba\xdd\x73\x5a\x16\xe5\xff\x6b\xb1\xc1\xa8\x52\x26\x15\xfc\x68\x5e\x75\x7b\x9b\x78\x1d\x76\x7b\xf8\x44\x35\x77\xe9\x40\xcd\xae\xc7\x0f\x22\x56\x13\xfa\x30\xe1\x2b\xaa\xec\x0c\x7c\x20\x99\xbf\xa6\x71\x03\xfd\x1a\xb5\x4a\xa1\x43\x00\xa3\x5a\x7c\xdb\xf3\xe3\x8d\x5f\xe1\xd7\xa1\x61\x50\x28\xba\x43\x15\x4d\xb8\x9e\xe1\x20\xf2\x50\x85\x83\x7e\x3f\x6c\xae\xd7\x91\x5f\xe3\x05\xcd\x32\x5f\x63\xf8\x79\x15\xc4\x18\xf7\x3a\xfe\x6e\xac\x1a\x17\xcf\x22\xc9\x5f\x9d\xb4\xc4\x4c\xf7\x34\x74\x70\x20\x2a\xde\x7e\x93\x8d\xc1\x19\xf2\xed\x24\x4e\x62\xd5\x3f\x2d\x9f\x74\xbe\x3e\x7e\x05\x25\x6c\xde\x94\x17\xb7\xaa\xce\xca\xa3\x3e\x06\xa7\xe6\xcf\xdd\x62\xd2\x38\xb9\x7f\x10\xcc\xa5\xe2\x5f\x8f\x33\x88\xa6\x7e\x08\x22\x40\x2d\x24\x44\xef\x0a\x27\x05\x90\x95\x04\x41\xc4\xeb\xcf\x1f\x1d\x34\x03\x30\xf4\x0f\x72\xb1\xd1\x5d\xcd\x2e\xaf\x11\x57\x98\x00\x3f\xdf\xcd\xba\xbd\x41\xe4\x55\x5c\xee\xbb\x71\x72\x87\xb6\x57\x0c\x05\x38\x36\xff\xfa\x7e\x81\x2d\x8d\x3c\x8f\x53\x57\xdd\x2e\x3e\x2d\x5a\x85\x38\x29\x44\x6a\x8f\xf9\xba\x21\xb2\xc7\xcd\x80\x73\x03\xed\x6c\xd7\xe7\x4d\x14\xa3\x9e\xec\xc5\xd8\x64\x1a\xd7\x51\x3f\x92\x9c\xd4\xc2\x47\xa7\x9a\x2d\xc5\x7c\x28\x3c\x79\x97\xfd\x7a\xb5\x0d\x95\x96\xfc\xbf\x7c\x81\xfe\x19\xcd\xa1\x88\xa1\x1a\xcc\xc7\xff\xd2\x6d\x7a\x4d\x7a\x1e\x66\x20\xef\xc2\x97\xa1\xfd\x8b\xca\x19\xb2\x86\x25\x13\xfb\x69\x66\x9a\x49\x5a\xd4\xa1\x32\xe1\xb9\xa7\xce\x37\x7f\xa8\xf0\x7a\xdb\x7a\xac\xad\xf0\x64\xc8\x4f\x5a\x64\x08\x4b\x3f\xea\x3c\x97\xc1\x92\xf0\xec\xfb\xda\x20\x29\x5f\x1c\x44\x6e\xf2\x1f\xae\x79\x2d\xfb\x6b\x66\x49\x15\xe4\x42\xb8\x6e\x52\xd6\x2b\x75\xda\x55\xe7\xb2\x69\xe9\x2b\x5e\xbd\x45\x93\x4b\x76\x70\x13\x31\xdb\x47\x36\xd7\x3e\x5c\xb6\x63\x62\x7b\x14\x59\xd8\x16\x43\x7e\x3a\x66\xa0\x28\x5e\x00\xb6\x73\xa6\xdf\x28\x2d\xb2\x06\x16\x23\x0d\xe9\xa5\xf5\x3f\x7b\xf9\x59\xb9\x1a\xd9\x1a\xf6\xbc\x2f\xf7\xe5\xd1\xd9\x3c\x06\x76\xf2\x8c\x58\xbc\x8e\x10\x4b\xfe\x77\x76\xa6\x14\xac\x4e\xbd\xea\x5b\x71\x56\x95\x95\x60\x0a\x52\x42\xbe\x5d\x9a\x99\xbc\x86\x0f\x4d\x30\xb1\xca\xd5\x24\x78\x71\xae\xc1\xef\x37\x8f\xc9\xae\x83\x32\xf5\x78\x61\xdf\x38\xbe\x11\x0a\x30\x5f\x66\xdc\xf7\x24\xbc\x19\x60\x60\xcd\x6b\x2b\x80\x16\x17\x35\x9b\x2b\x88\xc4\xd8\xe3\x3b\x9d\x5f\x36\x8d\xd5\x3f\x23\x21\xb1\xa4\x92\xe1\xac\xd3\xc6\x5a\x29\x44\xbe\x64\x87\x7d\xf6\x56\x63\x22\xc4\x3d\xe7\xc5\xc4\x70\xf4\x6a\x8d\xd8\xcc\xb5\x83\xe0\xcd\xff\x6c\x9c\x79\x01\x02\xcc\x9a\x58\x88\x84\x5f\x79\x9b\xba\x01\x0e\xe7\x4f\xf7\xe5\xde\x31\xda\x6c\xf9\x03\xea\x62\xdf\x12\x45\x42\x71\xe2\x3a\x43\x4a\xd3\xa7\x2d\xa1\x9b\x5e\xfc\xc4\x54\x2d\x32\x53\x97\x48\xef\xd4\xf8\xc3\x07\x79\xaa\xea\x91\xcd\x44\x5f\xfe\xb9\xd3\xea\x4d\x75\xcd\x4f\xd5\x7a\x01\x1a\x67\x70\x5e\x6b\x8c\xb6\xfc\x52\xd4\x90\x01\xb6\xb6\xd5\x68\x7a\xa2\x90\x4a\xa9\x5c\xd8\x18\xbd\x7d\x80\xb8\x1b\xc4\x16\x14\xc3\xd8\x68\xf1\xaa\xe0\xb7\x9a\xaa\x8e\xfe\xf3\x69\x53\xfd\x39\x89\x71\xb2\x90\x7b\x7d\xdf\x18\x2d\x49\x58\xd4\x75\x23\x4d\x9b\xa8\xf0\xd0\x10\x41\xec\xa1\x3e\x17\xd2\x5a\x7a\x5c\x19\xac\x3b\x88\x35\xb9\xa3\x66\xf6\x8c\x7c\x68\x40\x3a\xee\x08\x91\x39\xa9\x8a\xbf\xbd\x7f\x90\x78\x88\x12\x7a\x30\x44\x1f\x34\x30\x06\x44\xaa\xfc\x5b\x96\x6b\xe1\x3a\x0a\x51\x4b\x68\x3b\xde\x71\xbf\x36\xc5\x8e\xc2\x94\xc8\xd5\xfb\xa6\x91\xbf\x59\x72\xc0\x04\x36\x6d\xdb\x73\x6a\xcd\xd6\x24\xf5\x90\x6a\xfa\x5a\x97\xaf\xd6\xba\x48\xd4\x8b\x18\x67\x30\xbd\x7f\xdb\x64\x23\xd1\xb8\x24\x70\xce\x69\x43\xf3\xc4\x6a\x7e\x83\x2a\xa0\x7c\xdd\x97\x3f\x5b\xd4\x80\x02\x94\x31\x41\xdd\xfb\xc8\x69\xd3\x70\x89\xd9\xc8\x17\x68\xa6\xe4\x24\xc5\xc7\xcf\xd7\xba\x87\x24\x32\x48\xf7\x84\xfd\x06\x80\xb7\x81\xc2\x90\x03\x89\xe5\x8b\xfa\xf1\x9d\x9a\x5b\x09\x7f\x54\x85\x87\xb7\xab\x94\x7c\x63\x44\x42\x3e\xef\x6b\x5c\x7f\x6e\xc2\x8f\x92\x61\xdf\x7c\x7a\xbc\xd9\x77\x70\xe7\xb7\x50\xfa\x80\xf5\x0c\x33\x84\x2c\x52\xd3\x17\x28\x71\x87\x3d\xa2\xbd\x23\xda\xc4\x2c\x84\x6a\xe0\xa9\xbb\xb3\x07\x55\xf8\x60\xcb\x22\x7f\x5b\x53\x03\x37\xd1\x2a\xa7\xd2\xe4\xf7\xdd\x94\x2d\xa4\x6d\xec\x86\x88\xa7\x98\xef\xad\x57\xdf\xb9\x45\xc0\x67\x32\xf7\x4d\x66\x02\x90\xfc\xe4\xf7\x4b\x2e\xd3\xf1\x67\xf9\xe1\x8b\x82\x88\xd3\xd3\xeb\xd5\x54\x4a\x67\xe6\x9c\x52\x39\xae\x54\xd4\x47\x47\xd5\x2a\xf1\x05\x16\x77\xe5\x72\xf5\xe1\x10\xb3\x10\x67\x44\x6c\x31\x14\x83\x5a\x24\x74\x82\x90\x4a\x7e\x47\xee\xd5\x27\xf8\xc9\x08\x11\x2c\xd0\x0b\x7f\x9b\x28\xd8\xa8\x9d\xb3\x66\xc2\x5c\x48\x13\xeb\x0c\x22\xcb\xe2\xa2\x30\xb9\xfd\xcf\xea\xf2\x12\x01\x09\x92\x7a\x1d\xee\xca\xdb\x37\x68\x8b\x06\x01\x41\x89\xe7\x4c\x36\xb6\xa1\x18\x29\x3c\xf6\xf7\x3a\xb2\xb9\xad\x8e\x98\x8d\xa4\x37\xb2\x2a\x3c\x7f\xbb\x57\x03\x87\x82\x11\x86\xc0\x5b\xf7\xe5\x87\x2c\x35\x81\x32\xc4\xaf\x0b\x8b\xb3\xcf\x6d\xca\x82\xdd\x3c\x1c\x0a\xaf\x26\xb3\xb1\x7e\x75\xcf\x44\xad\x84\x4e\x15\x02\xcc\xbb\xf4\xf4\x7a\x83\x13\x45\xed\x8c\xf0\x7e\xe1\xc0\x81\x0c\x5e\xbc\x42\x78\x60\xca\xef\xda\xa7\x26\xd2\x25\x9b\x4a\x65\x31\x11\x1d\x6e\xee\xa7\x4f\x0c\xa0\x9f\xe5\x86\x50\x85\x8b\xee\x4a\x55\x0b\x48\x93\xd8\xe2\x58\x3c\xbc\xfc\x5f\x49\xe1\xf1\xda\xec\x9f\x2f\xaa\x17\x57\x43\xae\x2b\xd8\xc6\x25\xbf\x4d\x40\xc7\xb7\x1b\x88\x25\xdd\xc2\x25\x7c\x38\x34\x76\x8b\x6e\x2d\xcb\x71\x28\xf9\xef\x4c\x34\xbc\x0a\x7d\x31\x39\xee\x7f\x44\x5b\xb7\x57\x65\x73\x39\xd2\x30\xa8\x40\x15\x08\x4e\x6a\x05\xf3\x8d\xc3\x90\xc8\x4a\xeb\x96\xcf\x6c\xdb\x29\x75\x3f\x36\x44\x44\x89\x10\xbb\x80\x6c\xca\xfd\xe2\x89\x8c\x49\xa7\x4b\x94\x65\xce\xf8\x27\x0d\x29\x39\xee\xeb\x06\xc2\xac\xcf\xdc\xab\xa1\x99\x15\x9b\xeb\x84\xe6\x3b\xe6\xe2\xe4\x80\x5e\xb6\x38\x0b\x99\xae\xb8\x51\x12\x2c\x1c\x3e\x7d\x52\xa3\xc1\x7b\x5f\xca\xfe\xb2\xa8\xc1\x28\xe2\x63\xdb\x42\xbf\xc5\x3a\x8e\x2b\x74\x18\xa5\x1e\xfc\xbe\xf7\x3f\x62\x98\x6f\x85\x01\x76\xab\x9d\x1c\x28\x30\xa0\x53\x88\x0b\x39\xc4\x97\x8b\xeb\x77\xed\x39\x3f\x5b\xf0\x4b\x26\x79\xee\xdf\x36\x9c\x83\x8e\x25\x1d\x23\x7e\x3f\x71\xbc\x51\x3c\x80\xbf\x88\xa5\xba\xa3\xe2\xfb\x27\x0e\xd3\xdb\xc4\x90\x5b\xba\xe6\xf6\x3f\x6d\xe0\xe4\x70\x8d\x04\x2e\xcc\xac\x84\x78\xc3\x9a\x66\x87\x26\xb1\x22\x98\xce\xff\xfd\xe2\x24\xf3\x6e\x31\x7a\x2e\x59\xbd\xe5\xdb\xf9\xdb\x5e\x1f\x59\x0e\x6d\x11\xab\x57\xab\x38\xe3\x71\xd9\x78\xd8\x8d\x58\x4d\x9b\xe3\x94\xf7\xf2\xc3\x70\x59\xb5\x8a\x08\x1f\xa1\xf9\x07\x0c\x51\xae\x46\x03\x23\xb7\x53\x3a\x3d\x7c\x6d\x48\xbb\x27\x93\x9a\x1d\xdd\xf2\x86\x18\x9f\x13\xab\x8e\xe1\xa1\x16\x5b\xa7\x4c\x3f\xcf\xa8\xe6\x88\x49\xe9\x5b\x1a\xc6\xae\x0e\xd8\x02\xc2\x8f\x6e\xd2\x5a\x43\x9d\x94\x21\xe2\xf3\xf1\x73\xf1\xfa\xc3\x69\x8d\xcc\xbd\xe3\x45\x32\x1f\x36\x89\xdf\x66\x29\xc9\x0a\x4b\xd3\xc2\x82\x63\xa3\xf4\xa2\x85\x8b\x7f\x4a\x53\xd8\xc3\xea\xcf\x2a\xe0\x57\xa3\x92\xea\x96\x11\x23\xfc\xec\xb6\x90\x43\x8d\x3e\x7e\x87\xea\x25\x1a\xa4\x81\x27\x6a\x4f\xa0\xe3\x16\xc3\xf7\x17\xdb\x98\x49\x09\xcd\x35\xcf\xa9\x89\xbd\x55\x4f\xee\xb7\x66\x41\xee\x91\x24\x5a\x80\xcf\x58\xae\x9a\x62\x0c\xea\x91\xa5\xdb\x63\x98\x12\xb2\x44\x72\x6b\xd6\x3f\xa2\x59\x5c\x92\x40\x78\x3f\x7e\x77\x84\xf0\x61\xa0\xb6\xd8\xf7\xe5\xae\xdf\x96\xfe\x6c\x5a\xd1\xbf\xed\x97\xf6\x09\x05\x60\x64\xd5\x4b\x21\xe5\xff\x9b\x94\x03\xeb\x34\xaf\x88\x0a\x12\x72\x96\xff\x6c\xaa\x42\x50\xe8\xf0\xb5\x4d\xf0\xaf\xd6\x6b\x35\x46\x1b\x0d\x31\x76\xaa\x6e\xd7\x65\x6a\xba\x66\xc2\xdc\x70\xb3\x31\x30\x5b\x30\x6f\x86\x10\xe2\x9f\x75\xbb\x99\xc2\x42\xc7\xc5\xd8\xc0\x66\xe5\x8a\xc3\x0c\x79\x24\xdc\x70\x89\x14\x39\x89\x0e\x68\xbf\xb2\x73\x26\xe0\x6d\xbf\xb4\xc3\x04\xf2\x02\xe3\x45\x8c\xd1\xff\x78\x22\x7b\x6b\xa5\xd1\xae\x2f\x62\x63\x7c\xdd\x6c\x4d\x5a\x01\x05\xc4\x12\x29\x25\x7f\xfa\xf5\xb4\xfe\xf5\xc0\xaa\xdb\x40\x82\xec\x53\x33\x8a\x1a\x66\x1e\xf2\x7b\x64\xb4\x1d\x68\x98\x24\xd4\x22\xdf\xc3\xbe\xd0\xc5\x1f\xb9\x31\x7b\x1f\x30\x20\x09\x38\x14\xc3\xd9\x93\xfd\xb0\x2d\x87\x8a\x81\x83\x3c\x97\x43\xcc\x06\xcc\x25\x9e\xe4\x2c\x9d\x7f\x07\x2f\x4b\x66\x0b\x58\xe6\xa2\x01\x86\x7a\x00\x6c\xf8\x23\x1f\x4a\x02\x7e\x39\x9f\x12\x1e\x5f\x15\x14\xe0\x0a\x72\x61\xc5\x70\x64\x1b\x5f\xf8\x81\x8e\x81\x47\x7c\x60\xfc\x83\x08\xc7\x2d\x06\x7e\x67\xc1\x9c\xf9\x10\x9f\x8b\x63\x0d\x93\xde\x4b\x02\xd1\x6f\xe5\xde\x7d\xab\x01\x85\x07\x28\x11\x96\x75\x4d\xe1\x27\x27\x84\x58\x33\xc3\x49\x82\x4d\xae\xe5\xaf\x77\x1a\xe8\x62\xd4\x83\xed\x00\x90\x03\xf2\x8c\x5c\xf7\xa6\x31\x7c\x0d\x82\xc8\xe3\x6d\xbb\xa4\xdd\xbe\xb9\x23\xfb\xa0\xac\xa4\x38\x16\x79\x75\x45\x51\x0d\x53\x1b\x98\xb9\x9a\x11\x7b\x5f\x61\xf7\x9e\x74\x34\xea\x90\x24\x79\x9f\x57\xec\x90\x7f\xb3\x8a\x2d\x2e\xe3\x73\x7a\x63\x9b\x8e\x42\x43\xe5\xed\xa7\x56\x1b\x68\x75\xc4\x7c\xe8\x84\xa1\x2c\xfc\xf8\x00\xe1\x62\x56\x09\x42\x64\x89\xf1\xd5\x3d\x5b\x8d\x28\x89\x19\xa3\xbc\x57\xcc\xbf\xae\x5b\xcd\x32\x1c\xd8\x3e\xdf\xec\x7f\x7a\x3e\xd7\x99\xd1\x58\x90\x00\x0f\x84\x44\x3b\x7a\xaa\xe9\x06\xc9\x38\x82\x8e\x6b\x62\x3c\xe2\xf2\x0f\xb1\x1a\x07\x34\x62\x5c\xd7\xbc\xf8\x1e\x43\x45\xa3\x0a\x4a\xf0\xe2\x22\x8d\x3b\x38\x5a\x9b\x90\x25\x27\x49\x4b\xf9\xf5\xeb\x35\xa3\x7a\x8c\xaa\xd2\x76\xf3\x9d\x8f\x99\x0e\x4e\x5c\xa2\x34\x75\xa7\xcd\x5d\xa9\x4d\xa8\x5b\x18\xd5\xe5\xf6\x75\xc4\x35\x4a\x4c\xce\xe6\x38\xa5\x65\x06\x26\x09\x37\x31\x0c\x77\xf9\xbd\xba\x72\x3a\x3f\xfd\xab\xcb\xd7\xad\x49\x3e\x6f\xdf\x48\xad\x14\xa6\x7e\xc8\xa8\x2b\xef\xe7\x5b\x8f\x67\x9f\x8d\x8f\xc2\x88\xa9\x66\x7a\xc1\xbf\x30\x7a\x13\x7f\x3c\xc5\x70\xdc\x6d\x30\xe2\x5b\x04\x48\xe5\xe2\x50\xff\xf6\x0c\x4f\x5f\x4d\xc2\xc2\x88\x06\xe2\xfa\xcc\x7b\x74\xbc\x3e\xba\xc2\x8d\xc0\xc1\xc8\xd6\x85\x00\xde\x33\xc5\xd8\xa8\x23\x56\xc7\x21\x96\x8b\xd2\xcf\x1a\xfc\x63\x0b\x35\x04\x37\x1b\x8e\xd0\x7f\xdf\x90\x1e\x5c\x6e\xb0\x39\xec\xde\x6c\x55\x5f\x61\xb4\xce\xb7\xd1\xe6\x00\xb3\x6b\x63\x8a\x08\xc6\x1e\x91\x33\xc3\x1f\x8d\xce\xd6\xa7\x3e\xf1\x71\x09\x52\x84\x58\xc5\x1d\xbb\x74\x94\x76\x24\xaa\x8c\xd4\x30\xb7\xb8\x2c\xc7\x53\x0d\x80\x3b\x6a\x22\xe2\x02\x47\x04\xe2\x4e\x61\xaa\x5a\x71\xcf\x04\xad\x9c\x4f\x1e\xe1\xaf\xcf\xa1\x34\xf9\xf7\x2f\xdc\x36\xc1\x68\x00\x51\x10\x72\xdb\x62\x25\x66\xf4\xa5\xc3\x9a\x19\x6d\x72\xbf\xe1\xe4\xf7\x6c\x50\xa5\x80\xf2\x6e\x83\x4f\xb5\x7c\xa3\xb6\x28\x89\x5c\x97\xa3\x96\x40\x8f\xe6\x0d\x83\x0e\xc8\xbc\x20\x69\xdc\x6b\x59\x4d\xce\xfc\xff\xed\x35\x15\xd3\x9b\x98\x49\xcc\x43\xfe\x99\x19\xa6\x76\x68\x4f\x1a\x15\x0a\x9b\xa6\x9f\xaf\xed\xda\x6d\xcc\x5a\x8c\xc0\x4c\x3b\x7f\xf8\x64\x06\x68\x73\xdd\xea\x25\xfa\xf8\xb3\xdc\x57\x58\xd3\xa1\xfc\xc9\x2d\x65\x64\x15\xff\x7e\xa4\xe6\x09\x6d\x37\x09\x57\xf4\xcb\x7d\x3a\x9c\x96\x0d\xba\xac\x86\x7c\xd2\x8b\xc2\x80\x08\xc7\x8b\xcc\x28\xe7\xb1\xdd\x86\xa9\x04\xc3\xa8\x9e\x94\xe6\x51\xcd\x91\x1c\x2a\xff\x0e\x4e\x62\x5d\x46\xb0\xed\x62\x4d\x5b\x31\xbf\xb4\xcd\x9a\xb5\x0a\x5e\x06\xe2\xd0\xae\xbb\x5d\x2b\xb2\xb0\xcd\xa8\x56\xd5\x86\x4c\x5f\x36\x54\x08\x50\x2b\xb6\x2d\xd4\x80\xde\x18\xd9\x49\xb8\x75\xbb\x14\xac\xaa\x9d\x36\x93\xff\x4c\x1b\xf2\x8b\xbf\x16\x2e\x3a\x71\xf4\xf9\x49\x6d\xec\xbc\x14\xc5\xa4\xdd\xbe\x4f\x8e\xb9\xd0\xe8\x0c\x42\x5c\x63\xc2\xd3\x1e\x12\xec\xd8\xbd\x9a\x7f\x06\xde\xc4\xe7\x41\xdb\x8e\x2b\x17\x4b\x12\xe8\xc6\xac\xbe\x7a\x39\x0d\x04\xc4\x8d\x52\x39\xee\x5d\x71\xa1\xf6\xca\x6c\x6c\xce\xdd\xe2\xaf\x1a\xca\x67\xa8\xd1\xa0\xc4\x0f\xa5\x79\x30\xd4\xcd\x37\x4f\x4e\x8b\xbf\x26\xd2\x36\xf0\xc3\x5e\x3b\x5f\x6b\x40\x92\x0e\x5f\x86\xbc\xcb\x99\xe1\xfa\x46\x3d\x29\xa4\x53\xbc\xfd\xe5\x6c\x87\x92\x1a\xe3\x98\x61\xe2\xaa\x47\x4c\xa3\x01\x1a\x60\xb1\x5b\xfb\xea\xd4\x8b\xb4\x61\x47\x13\xfb\x51\x1b\xa6\x2f\xf7\x8b\x46\x9b\x25\x10\xb2\x95\xfa\xc2\x2f\x56\x76\xa4\xa1\x26\xad\xce\x26\x68\x04\x72\xb7\x64\x47\xad\x24\x8e\x38\x50\xde\x9c\x14\xae\xa7\xa4\x89\x4b\x1c\x1a\x94\x7c\x90\xa7\xf7\xf2\xc9\x6a\x2f\x15\x48\x96\x5c\xc7\xb6\x31\x66\xb5\x80\x99\xe2\x96\xdd\x77\x5a\xf8\x0e\x62\x31\x9e\xc9\x7f\xe1\x39\x5e\x01\x5d\x89\x19\xf2\x2a\x1a\x92\x74\xe1\xcd\x6f\x97\xe7\xd2\x2d\x95\xe3\xaf\x1e\xe6\xfe\xae\x6b\x92\x76\xa7\x07\xeb\x55\x04\x7d\x7d\xa2\x59\x76\x62\x3b\xa8\x13\xc3\x09\x7e\xfa\xc3\x42\x14\x80\x59\x8e\xd8\x85\x2e\x3f\xa2\x07\xb5\x9a\x48\x87\x3f\xbc\x54\x95\x2c\x2e\x46\x76\x06\x02\xfb\x89\x81\xba\x02\xbf\x47\x84\x7a\xd3\x5f\x1f\xd3\x7a\x09\x05\x10\xbb\x21\x3d\xaf\x44\xbf\x8d\xf9\xa2\x26\x15\x19\x78\x48\x58\x3f\xe5\xb7\x8d\xef\xd0\x16\x6e\x18\x81\x56\xda\xc6\x89\xca\xa1\x13\xdb\x91\x25\xa5\xc4\x4c\x98\xfd\x9c\x63\xe3\xb4\x79\x66\x95\x72\xa1\x7a\xbd\x5b\x39\x71\x89\x71\xe9\x3c\xc4\x02\x14\x9e\x8b\x4a\xf8\x3f\xf9\x6c\x4e\x70\x51\xc4\x88\xb1\xe1\x2f\x38\x67\xf8\x13\xa5\x4d\x29\x54\x58\x58\x3f\x23\x85\x2b\xb4\x80\xcc\xaf\xd6\x49\x93\x0c\xdb\x62\x08\xc9\x22\xdf\x16\x3f\x59\x31\x90\x93\x0c\x07\xb2\x6c\xb9\xe3\xb5\x31\x1a\x72\x02\x94\x47\x59\x89\x56\x93\x52\x2f\x79\x3e\x1f\xf2\x8d\xc9\xaa\xef\xd3\xc8\xb7\xb0\x50\x9e\x2c\x4e\xe8\xd5\x5a\x52\xcc\x42\x22\x1c\x21\x73\x6f\x0a\x2b\xfb\xcb\x59\x64\x09\xe9\x4d\x12\xaa\x6e\x13\xc0\xbe\xb9\xb7\x34\x26\x6a\x43\x94\xa0\x8e\x43\xa8\xdd\xcd\x81\xc2\x1d\xfd\xa7\x99\xe7\x9e\x5a\x84\x53\x0a\x1a\xed\x48\xad\xc2\x1d\x03\x8c\x91\x32\x6e\x30\x2c\xff\x01\xac\xfb\x4e\xbd\x32\x4c\xef\x04\x43\x0c\x40\xda\x25\x13\x79\xb9\x03\x16\xf9\xc9\xb1\x81\x4b\xe4\x2c\x17\x12\xba\xc8\xc3\x0c\x71\xb1\xb8\xb7\x1f\xd0\x10\x58\x84\xbb\x39\xf6\xe5\x57\x3e\xd9\xd6\xf1\x21\xb9\xf7\x28\xce\x79\xce\x54\xbd\x62\xdc\xe4\x0f\x74\x4d\x34\x5b\xc0\xc8\x15\x9a\x32\xc5\x35\x86\x1e\x39\xae\x56\xb9\x51\x2a\x2f\xa7\xff\x7a\x54\x05\xc9\x90\x6a\x7b\xbd\xfc\xe0\x49\x69\x9a\x21\x7e\xfb\x42\x64\x97\x81\xe7\x08\x51\x43\xac\xdc\x97\x1a\x76\xa9\x55\x10\x80\x12\x23\xaf\x53\x8e\x7a\xd7\x80\x19\x0a\x09\x58\xb0\xe5\xdf\xfd\x8a\x31\x27\xab\x49\xd9\x82\xbe\xdc\x92\xcd\x7c\xc2\xbd\xc6\x43\x80\x58\xcd\x1d\x18\xc4\xdb\x7a\x2e\xda\x82\x99\x54\x91\xb9\xc8\x57\x01\x52\x67\x98\x97\xe3\xbf\x55\x34\xc5\x58\xe4\x52\x1f\xf7\x68\x2d\xd4\x9a\xcc\xa2\x3f\x35\x07\x1d\x37\xbc\x1d\xf2\x5b\x8e\x7b\x8f\xe9\xee\x29\x2c\x14\xe3\xd5\xeb\x8e\x68\x4f\x12\x59\x75\x37\x75\xce\x99\x70\xf3\x50\x6d\xb4\x82\x7c\x5e\x0b\xbc\xbb\x43\xcb\x9f\x16\x43\x50\x2c\xdf\x6d\xb8\xee\x27\x65\xbd\x1f\x3a\x7c\xb2\x74\xf9\x4b\xe9\xd9\xaf\x75\xcd\x00\x83\xdd\x29\x66\x96\x6e\xe2\x20\xa4\x2c\x1d\xdf\xe5\x1f\x1a\x30\x58\x79\x32\x24\x29\xf7\x2a\x83\x8e\x9d\x06\x2c\xb1\xb8\xfc\xc7\x5a\x9e\x00\xec\x54\x9a\xe7\xd0\x42\x93\xc7\x42\xab\x24\x14\xaa\x6f\x85\xc9\xe3\x4d\xb1\x44\xca\x6f\x37\xf7\xcb\xe7\x54\xc0\x3d\xcf\xab\xf9\x69\x45\x98\xb9\xfc\xfd\x69\xf5\xdf\xea\x24\xe9\xb6\xe3\x8e\x27\x79\x0a\x59\x89\x2b\xb4\x45\x42\x7d\xe6\xf7\xe3\xd7\x79\x16\xba\x1c\x31\x9c\xd9\x81\xaf\xd2\x04\x9b\xa7\x88\x69\xe8\xe2\xa2\xa6\x6b\xc9\x2a\x24\x64\x52\x15\xa2\xf7\xa6\x36\xa5\x97\x26\xb1\x53\x9c\x61\x6e\xf3\x6c\x65\x72\x44\x53\xfd\xcc\xeb\x26\x0a\x1a\x9e\x13\x65\xd6\xcc\xef\x3d\xa1\x5e\x2c\xc2\x35\xcc\x97\xc6\xcf\xbc\x36\x54\x6f\xff\xb8\x98\x5b\xee\x26\x91\x46\xaf\xa3\xd4\x06\x31\x30\x79\x3a\x6e\xbe\x4b\x1b\xb0\xf2\x39\x2f\x4c\x79\xb5\xdd\x6c\x05\xb4\x22\x4b\x60\x0d\x18\x3f\x3d\x39\x7b\x51\x68\x67\x3d\x85\xb2\x3c\x71\x27\x7f\x79\x6b\x69\x0f\x0d\x61\xea\x76\xef\xa3\xa6\xd5\x15\x70\x90\x44\x0d\x77\xc9\x3e\x03\xd8\x06\xae\xbe\x52\x57\x65\xa2\x3e\x18\x08\x19\xb5\x1c\xec\x11\x0b\x4e\x7b\xe1\xc4\x1e\x75\x63\xb0\xed\x13\xfe\xdb\x1e\x78\x70\x50\x4a\x14\x9f\x59\x2a\xc7\xcb\x8e\x1b\x47\x87\x2f\xce\xf8\x46\xed\xa9\x13\xd9\x5f\xee\x44\x1e\x92\xf4\xae\x42\x7c\xab\x66\xa1\xce\xd1\x2e\xf9\xa7\x86\x70\x79\xac\xd5\xd4\xaa\xe3\x2a\x76\x5d\xc8\xfb\xea\x28\x74\x3c\xa8\x59\xbc\xb7\x10\x00\x15\x73\xe5\xbd\xd9\x9d\x67\xe0\xf7\xd8\x98\x9d\x53\x17\xef\x9d\x7b\x84\x94\x5a\xb5\x4a\x99\x2d\x4c\x89\x1f\xd7\xf8\xeb\x69\xcb\x07\xfd\xde\x62\x55\xbb\xf6\xd0\x08\x2c\x52\xb3\x3f\x6f\xe9\x1d\x83\x44\x90\x78\x57\x0d\x0a\x85\x2b\x47\x1a\x3d\xab\x8b\x40\x48\x48\xbc\x3d\xda\xab\x89\xfd\x50\x9f\x09\x9b\xeb\xf7\x2e\xce\x60\x32\x42\x16\x41\xfc\x86\x11\x60\xf0\x30\x3f\x55\x55\x17\xd5\x92\xb7\xc7\xa4\x2a\xcb\x22\x63\xed\x5f\x25\x8c\xb7\x8c\xe5\xf8\x0b\x6b\x4d\xc0\x14\x22\x5e\x20\x5d\x08\x2e\x7b\x62\x88\x08\x9f\x81\x23\x7e\xd6\xaf\x26\x89\xff\xc4\x71\x78\xa5\x72\xfc\xb5\xf1\xd9\x6b\x34\x67\xe6\xdc\x52\x03\xa8\x72\xbc\x17\x5e\x78\xca\x90\xb9\xd6\x6c\x00\x05\x36\xed\x9b\x13\xc6\x99\x37\x31\xc4\x41\x88\xe5\xfe\x20\xff\xde\x81\x26\xba\x02\xa7\xaa\x23\x7b\x57\x0f\xd3\x72\xbe\x6b\x51\x1f\xa4\x26\xac\xd0\x18\x65\x00\xb9\x0b\x31\x8e\xd4\xcc\x7d\xe5\x2e\x45\x71\xf2\xad\x52\x39\x7e\x6b\x87\xa9\x6e\xe2\xba\x99\xd1\xda\xe8\xd1\xa6\xf2\x17\xf1\xc1\x9c\x8e\x05\xb2\x5f\x98\xfa\xa0\x31\x5a\x2b\xcd\x9f\x31\x53\x6c\xd4\xa6\x9f\xc8\x3e\xa6\x90\xa1\x26\xa8\x80\x8a\xf5\xcb\x3b\x57\x1a\x63\x29\x97\x86\x8a\x74\x94\x1f\x7a\x66\x82\x71\x77\x6d\xea\xe3\x80\x70\x17\x41\x01\xd5\xec\x3d\x2a\x64\xe4\x89\x5b\xc9\x60\x5e\x0b\x43\x56\xf0\xe3\xb7\x9c\xfa\x5c\xe1\x75\xc0\x78\xae\x29\x76\x55\x52\xa7\x0c\x1c\x92\x15\xd7\x9b\x2e\x40\x2d\xe3\x0c\x01\x47\x65\x04\x27\xa0\x37\x0b\x16\xeb\xe0\xb0\x30\x62\xc9\x5d\xfe\xd9\x66\xd3\x0c\xc3\x47\x35\x2c\x88\x90\xe8\xe0\xf9\x69\x0e\xea\xcc\x88\xe8\xe2\x67\xc5\xc4\x35\x4a\xd7\xc1\x85\x6f\xdc\xa6\xd7\xef\x41\xe4\x72\x76\xf3\x3f\x96\x99\x48\x58\x54\x23\x7c\x82\x12\x4f\x7a\x41\xd9\x50\x61\x47\xab\x61\xde\x31\x5f\x63\xf3\x51\x48\xb1\xf9\x1f\x19\x76\x4a\xd8\x6b\xb8\xb4\x07\x63\x91\xd0\xf2\x1f\xbd\xde\x1c\x78\xf9\x36\xa3\x9e\x94\xd7\x98\xba\x6f\xb8\x56\x62\xd4\x7a\xb0\x4b\x93\xb4\xba\x63\x84\x2a\x0a\x16\x74\xcd\x9a\x0e\x76\x4f\x7d\xc5\x45\x93\x2e\x52\xad\x41\x37\xb6\xc2\xb6\x16\xb7\xaf\xf0\xbe\xbb\x3b\xd2\x22\xc0\x13\x3a\x79\xb9\xbd\x2f\x66\x3f\x45\xd7\x1c\xc9\xd0\x80\x5b\x6a\x3d\xc2\x61\x5b\x01\xe8\xc3\x0d\x38\xca\x2f\x68\x83\xe2\x90\xc1\xfa\xb3\xf0\x5f\x6d\xca\xb7\x16\xb1\x25\xdf\xb3\x78\xf3\xd9\x11\x3a\xcf\x06\x6c\xa0\xe1\x9f\xed\xba\x23\x0b\x1c\xf6\x92\xda\xca\x33\x18\xda\xf9\x39\x47\xd4\x97\xc5\xfe\x8d\x4d\x6e\xb5\x5d\x2c\xed\x37\x17\xcc\x76\x0d\x87\x0a\x14\x1b\x75\xf0\x2f\x0a\x38\x10\xca\x78\xd9\xd4\xb0\x35\xf2\x11\x6a\xa2\x1a\x18\x3b\xf7\x15\x73\x37\x0f\x16\x45\xa9\xb0\x66\xc8\x4d\x0e\xb3\xdb\x94\x1e\x1a\x49\xed\xfa\x6b\x5f\x4c\xab\x1c\x1b\x46\xd2\x43\xd7\x66\x3f\x4a\x25\x0a\x88\x9f\x34\x2c\x92\x79\x75\xa7\xb1\x02\xb6\x18\x4e\xd9\xc9\x6b\xb5\x6d\xb6\x54\xc4\x38\x70\x52\xcd\xe8\x42\x0c\xf6\xec\x3d\xc7\xf8\x3b\xc0\x0c\x72\xdf\x27\x1c\x4d\x3e\x93\x54\x93\x3b\xf6\xab\x85\x19\x52\x12\x6f\x61\xf2\xbf\x57\x92\x49\x16\x85\x38\xf1\xf4\x4e\xde\xbc\x2b\x9d\x64\x80\x96\x3c\x9f\xfd\xbe\x5c\xef\x78\x61\xf2\x23\x1e\xd7\x16\xc7\xc4\x0f\x25\x76\x38\x2e\x6c\x55\xc8\xa7\x1a\xf1\x83\x4a\xc4\x6a\xda\x7b\xdb\x3d\x52\x3d\x6b\x8f\xd8\xbe\x50\x4b\x7c\xdf\xfa\x36\x65\x82\x06\x4c\xc6\xe3\x17\x86\x0d\xd5\x4a\xdd\x40\x34\x2e\xf7\x6d\xd3\xe8\x26\x00\x57\xa8\x95\xca\xf1\x27\xf6\x64\x7f\x4a\x93\x12\xa1\x08\x90\xff\xb2\x41\x8e\xb2\x1c\xbe\x37\xe3\xbe\x75\xe3\xae\xd7\xbb\xf9\x26\xb2\x95\x77\x7e\x7c\x64\xa9\xb1\x1b\x8c\x18\x5f\x97\xc6\xfb\x9f\xd5\x1e\x41\x40\x53\xc7\xbf\xdc\xd7\x9f\x4e\x83\x41\x64\x6b\x5c\xe6\xc2\xff\x84\x63\xb4\xc0\x52\xe3\x4c\x89\x74\xe0\x15\xce\x55\x1a\xb1\xb0\xbd\xcb\x6d\xb8\x49\xd3\x9f\x41\xc9\xa9\xea\xaf\x8a\xe9\x19\x0b\x80\x7f\xfc\xcb\xfe\xd9\xfb\xd2\xc0\x49\x06\x4b\x1e\xbb\xa2\x41\xc7\xf7\xbc\x62\x6e\x1f\x7c\x3b\x29\xa0\xf9\x56\x28\xff\x61\xc3\xcd\xca\xc7\x96\xd0\x6c\xe9\x2b\xae\x7b\x63\xa2\x96\xfb\x25\x22\xc9\x9c\x92\xcd\x78\x3e\x3b\x25\xeb\xc1\x35\xca\x32\x6e\x8a\x7d\xc5\xfe\x7b\x0c\xaf\x85\x54\x23\x9f\xa7\xec\x6b\x37\x6b\xad\x13\x8e\x6c\x58\x9e\x00\x52\xab\x30\xd4\xd8\xb7\x7b\x11\x03\x19\x5b\x9e\x30\xbe\xf1\x82\x91\x44\x23\x3b\xa0\xba\x44\xc0\x40\x7f\xa4\x36\x28\xb4\x18\x0e\x11\x23\x88\x2b\x70\x2f\x35\xa9\x2d\x3e\x0e\xc4\x0c\x6d\xa6\x10\x1d\x5c\x89\x1a\xdd\xc8\x64\xa0\x7e\xa1\xc1\xb3\xde\x7a\x6c\x13\xd7\xd5\x88\x78\xf9\xc9\x37\x9b\x30\xae\x86\x40\xe6\xf3\xef\xf9\xc5\xa2\x36\x51\x4a\x52\x39\x40\xa1\x8a\xeb\x0c\x0e\x13\x76\xc3\x80\xf8\x59\x59\xae\xdc\xb7\x45\x0d\xbf\x92\x46\xc4\x43\xda\xe4\x6a\xa5\xb0\x5c\x02\x1f\x64\x2e\xe9\xb8\x60\xf9\x85\xfa\xf4\x31\x09\x3e\x72\x4a\xc0\x5b\x91\x1f\xde\xaf\x8d\x0f\xa2\x74\x77\xbf\x63\xbe\xae\x05\xe7\x52\xaf\x42\x4b\xe5\xf8\x31\x66\xaa\xa3\xb8\xb0\x5d\x10\x64\xae\xa5\x1b\x05\x44\x81\x22\xe1\x4a\x54\xc0\xab\x95\x8e\x32\xd5\x45\xe2\x7e\x71\x97\x11\xfa\x92\x4a\x59\x4c\xe5\x8f\x0e\xcc\x1e\xa4\x26\xc1\x8c\xa1\x2c\xab\xf7\xd1\xc3\xa6\xc1\x1a\x4c\x73\x25\x51\xf1\xe2\x6d\x52\x36\x3d\xe0\xde\x71\xec\x7e\x4d\x5c\x02\x85\x8c\xc3\x8a\x72\xc3\xef\x6a\x9b\x27\xb5\x64\x5b\xd2\x65\x8f\xc8\xe0\x89\x68\x4b\xf6\xf7\x2f\x4f\x36\xce\x4b\xcd\x11\x5e\xf4\xe6\x7c\x6c\x6a\x75\xb0\xf2\x22\x81\x96\xe2\xef\x63\x34\x1b\x35\xdb\x23\x3e\xd1\x95\x64\xdf\x3f\xe3\x42\x2d\x7c\x37\x1a\xb4\xad\x9c\x5f\x6d\x34\x5e\x2d\xd4\x93\xee\x3a\x2e\x9c\x21\x0c\xdc\x29\x85\x85\x79\xfc\xd9\x67\x8d\x17\x86\x36\x35\x50\x8f\x98\xa6\xc5\x5f\x37\x6a\x0c\x07\xa3\x66\x4f\x20\x8d\xd5\x0a\xaf\xda\xd9\xa8\x17\xf9\x72\xe8\x54\xec\x7a\x81\x8f\x97\xaa\x94\x86\x15\x46\xb8\x8a\x4f\x81\xb8\x6d\x9e\xff\xd4\x95\x64\xef\xc1\x6f\x1a\x97\x0c\xe3\x50\xd0\xde\x72\x7f\xdb\x2e\x0c\x4c\xa3\x06\xc3\x30\x88\xc9\xdd\xfd\x20\xff\x2a\x88\x8f\xad\xcb\x7d\x85\xb7\xac\x6d\xf3\xc1\xa8\x63\x39\x00\xc8\xfd\xe3\x7a\xe1\x0f\x13\x85\x55\xa0\x9e\x7f\xe1\x68\x3a\x38\xaa\x9e\x83\xf6\x6d\xdd\x9b\xad\xa9\x19\x75\x6c\xcc\x65\xa1\xa4\xf6\xed\xe8\x34\xcc\xca\x26\xee\x80\x81\x87\xf2\xbd\xe4\xf0\xc3\xf6\xb6\x58\x7e\x80\xdf\xca\x25\xb4\xc6\x90\x6e\x83\xfd\xab\x11\x17\x1a\x5f\x7c\x13\xb1\xa8\x94\xa1\x4d\x1a\xfb\xef\x4d\xfc\x57\x1a\x46\xfc\xf9\x14\x3e\x7c\xc8\xe4\x5d\x46\x41\x98\xb6\xdb\xef\x39\x90\x7d\x4f\xb3\x3a\x67\xcd\x14\x7a\x45\xf7\x1b\xc7\x9b\x56\xab\x52\x6c\x2d\xff\xe0\x5c\x51\xb2\x63\xdf\x66\x44\x97\xc5\x18\xfc\x0a\xbf\x3c\xca\x6f\xcc\xb9\xd8\x28\x56\x05\x17\x06\x8a\x04\xf9\x39\xbe\x69\x5c\xc9\x99\x33\x66\x94\x1a\x5c\x1a\x0b\x36\xd9\x9a\xe9\xe0\x25\x81\x0e\xbf\x6f\xae\x32\x7c\x4e\xa9\xeb\xe2\x9a\x60\x26\x67\x5f\xdb\xd4\xa9\xa3\x8c\x7e\x2d\x29\xa7\xf8\xc4\xef\x65\x4d\x85\x39\x74\x30\x95\xe8\xe0\x0f\x08\x65\xa1\xa5\xba\xf0\x5b\xfe\xf6\x63\xd9\x20\xc3\x90\x47\xaa\xc4\x12\xc4\x25\x3e\x85\xda\x54\x49\xa7\xd4\x38\xca\xa0\x3a\x8b\x97\xcf\x4e\x25\x75\x78\xcd\x7a\xd1\x6e\xae\xe5\xbe\x26\x02\xed\x03\x23\x37\x56\x16\x0e\xd6\xb2\x67\xf2\xf7\x7f\xf3\x8c\x01\x57\xa7\xd4\xae\xf4\xa4\x1b\xef\xdc\xdb\x4f\x0c\xcb\xf0\x00\x45\xf9\x79\x73\x33\x0d\x28\xdd\x38\x29\xb6\x06\x19\xe4\x00\xc0\xdf\x4a\x1e\x63\xfc\x41\x43\x31\xa2\x49\x6c\x4c\x43\xd4\x90\x7d\x84\x25\xfa\x6c\x50\xb9\xe6\x28\xa6\x2f\x0c\xe1\x10\x86\x99\x0b\x42\xc7\xfc\x1a\x2b\xc7\x9f\xdf\x76\x07\x39\x92\xe8\x23\x4f\x18\x90\x3a\x58\x70\x9e\xc3\x16\x6a\xf0\x81\x61\xba\x9c\x40\x48\x22\x0f\x48\x58\x43\x4c\x42\x34\xe3\xcc\xbc\xf8\xe0\x4b\xaa\x10\x9e\xd9\xd5\x09\x15\x4f\xee\x43\x2f\x0f\xcb\x90\x06\x45\x64\x7e\x58\x28\x62\x26\x05\x1a\x92\xca\x5c\x85\xc9\x37\x67\xac\xa1\xab\xd5\x0c\xe1\x7d\xc0\xb1\x21\xa2\x52\xf5\x3c\x98\xd2\xf6\x15\xbb\x8f\xf1\x44\xea\xa2\xc8\xb7\x1c\x8e\xec\x78\xdd\x18\x72\x06\x0d\x6c\x85\x1c\x69\x28\x86\x9c\xb3\x9e\x11\x83\x16\x6a\xd7\xa1\x34\xef\x7b\xee\xa2\x96\xb9\xc4\x63\xd3\x74\x54\x5d\x5f\x7e\xd5\xb3\xba\xd1\x71\x24\x3a\xaf\xf8\x51\xd3\x45\x99\x46\x37\x46\x58\x78\x5d\x17\xbe\xf5\xba\xe1\x82\x8d\x7c\x01\xe8\x2a\x9f\xd4\x70\x29\xb4\xe5\xbb\x14\x2c\xfc\x72\x1f\x5c\xa5\xbc\xa3\x75\x8e\xd5\x73\x53\x86\x69\x6d\x34\xac\x68\x4b\xe5\xf8\xde\x4d\xe6\x06\x28\xc4\xac\x41\xdd\x76\x31\xde\xf8\xe1\x01\xe7\x80\xcd\x81\xd2\xdf\x75\x8e\x88\xe0\x15\x8a\x58\xf2\x9d\xde\x7c\x5c\xd3\xc9\x68\x30\xd4\xe2\xb8\x92\x78\x98\xf1\xea\xab\x94\x59\x60\x60\xd9\x97\x5b\xb0\xa3\x6d\x7e\x24\xbb\xc7\xdc\xf1\x67\xb3\x27\xae\x1b\x8b\x65\xac\x19\xea\xd7\x4f\x4c\x6b\x90\x9e\x8c\xe1\xfb\x3f\xb6\x68\x18\x71\xe4\xd1\x26\x28\xd9\xbf\x67\xb3\x00\x3a\x5a\x37\x46\x24\x0c\x91\x9b\x74\x41\x7f\xd0\x38\x4e\x62\x39\x64\x21\x2e\xdc\x50\x78\x7e\x8a\xa1\x62\x30\x6f\xfa\x82\xb9\x73\x84\xfd\xfc\x4d\xa7\x65\x6a\xf3\x3c\xc1\x2a\x19\x3b\x44\x0d\x08\xeb\x11\x0b\xea\xa5\x72\xdc\x3b\xdb\xb0\xf0\xf3\xd0\x34\x70\x1a\xcc\x96\x13\x3f\xdf\xa6\x76\x77\x16\x57\x24\xce\x7e\xd7\x0f\xac\x1a\xde\x86\xc6\x4e\x3e\xe3\xdb\x56\xa8\xba\x02\x05\x01\x6e\x47\x14\x6e\xb2\x53\x55\x63\x97\x42\xbe\x2b\x7c\xe6\x0d\x05\x2f\x72\x11\x23\x81\xea\x63\xe2\x3d\xfd\xc4\x34\x2e\x29\xf5\xc0\x45\xe1\xd5\xfb\xd3\xc7\x4c\x90\x8e\x3d\x1e\x3a\x6c\xb8\xde\x59\x09\x03\x9a\xb8\xfe\x50\x9b\xa3\x44\x05\xa5\xd9\xa4\xf8\xd6\xd9\xfa\xaa\xde\xaa\x23\xae\x14\xb8\x61\xc4\x00\x1e\x09\x4a\xe5\xf8\x63\x5d\xea\xaf\xb4\x90\xe0\x49\xc7\xef\x5c\xaa\xe2\x45\x12\x07\x60\x42\x99\xdb\xa0\x9c\x56\x60\x27\xaa\xe4\x5b\x16\x1b\xd0\x64\x1b\x23\x16\x3a\xe2\xa6\xfd\x78\x80\xb6\x80\x25\x5e\x43\x78\x38\x75\x8d\x4f\xaf\x93\x83\x75\x7d\x96\x4f\xdd\xae\x91\x99\x51\x12\x8a\x25\xd6\xdf\x3d\xa6\xaa\x49\x5d\x2e\x39\xdf\x71\xd0\xd0\x86\x44\x61\xd2\x38\x71\xd0\x23\x38\x0d\xf7\xe5\x06\x3c\x61\x22\xe7\x24\x21\xb1\xaf\xf0\xc3\xd9\x17\x68\x0f\x8a\x6f\x9a\x54\x2e\xff\x85\x21\x5b\x19\x84\xc8\x26\x91\xc7\x6f\xb2\x1a\x5a\x5f\xb7\xf0\x5f\x8d\xa3\x84\x53\xcd\x6c\x13\xfb\xc3\x5a\xa6\x84\x5f\xf1\x03\x8f\x6a\x4c\x19\x2e\x98\x92\x9f\x2c\xb6\xe9\x36\x76\x51\x0f\x84\xb6\xaf\x0e\xd2\x7d\x99\xcc\x78\xb2\xe1\x45\xe3\x69\x50\xe2\x5b\xd0\x21\xc2\xe3\x80\xea\x73\xfd\xae\x09\x46\x55\xeb\x21\x86\x8c\xa5\xf3\xdf\xd7\xaa\x79\x75\x83\x51\x87\x54\x88\xb4\x2e\x2b\xdc\xb7\x4c\xbd\x55\x07\xf9\xb6\x10\x72\xb8\x74\x42\xfa\x56\x99\xad\xbd\xa2\xc2\x92\xe7\x79\x4a\x5c\xda\x4d\x5a\xc8\xb7\xa9\xaf\xef\xe8\xb7\x9c\x1c\xaf\x1a\x7a\x04\x78\x1f\x33\xe7\xfd\xfa\x81\x0e\x59\x9c\x06\x21\x23\x0d\x38\x10\xa7\x6e\xd7\x8f\x96\x8d\xfc\x3a\xf4\xda\x83\xfb\x2b\xbd\x7c\x2f\x89\xa3\xeb\x42\x18\xcb\xb8\xd8\x2f\xcd\x52\xf7\xef\x92\x11\x13\x8c\x53\xeb\x22\x9f\x66\x9f\x41\xfe\x01\x23\xaa\x78\x16\x39\xc7\x12\x3f\xf7\x6f\x06\x63\xd4\xc7\x88\xe1\x40\xb6\xe4\x4b\x0c\x9b\x15\x86\x1a\x24\x95\xb9\x1e\x72\xe9\x39\x32\x05\xe1\x3a\x22\xe6\x84\x71\x7d\xc3\x10\xf2\xc3\x2d\xce\xfb\x52\xe9\xe8\x11\x83\x70\x87\xdc\xd0\x01\xc8\x13\x50\x62\xfe\x63\x9b\x30\x00\x38\xf7\x9e\x63\x87\x26\x9c\x20\x05\x52\x93\x1e\xf8\x48\x5e\x73\x20\x48\x9e\xe8\xe7\x5f\xe6\x8b\xb4\x15\x91\x4d\x34\x91\xaf\xcf\x3d\x25\xf9\x2a\xd2\x4b\xb3\x54\x8e\x2f\xbb\x33\xed\x02\xba\x66\x41\xa1\xf7\x94\x70\x08\x58\x49\x2a\x3d\xa9\x14\xe6\xcb\xb6\x8e\xbb\x5e\x30\x37\x49\x19\x1b\xcc\xcd\x01\x95\x5c\xc4\x7c\xbf\xdd\x0a\x49\xe9\x82\xa4\x67\x35\x7b\xff\x1c\x4a\x5d\x52\x43\x29\x0e\xe7\x9d\xdb\x35\x43\xd8\x28\xe4\xcc\xa9\xef\x86\x6a\x58\x82\x11\xf3\x71\xc0\x1b\xfc\x72\x5f\x11\x1d\x34\x08\xf1\x98\x74\xf3\xe9\x43\xda\x75\xbc\xeb\x8c\x96\x4b\xa2\x4a\x9b\xee\x55\xe1\xe8\x41\xd3\xbe\x24\xe9\xea\x05\xd8\xe2\xa5\xd7\xff\xd5\x52\x81\x57\xfb\x63\xbb\x8c\xa8\x8a\x7c\x8b\x08\x5e\x7d\x71\xd1\x7e\x63\x58\x03\x80\x6b\xec\xa7\x08\xb5\xeb\x1f\x33\xad\x7d\x90\x85\xa5\x48\xca\x82\x95\xd9\x7f\xcd\x70\x23\xc9\x4d\xae\x5c\x86\xe4\x6f\xd6\xa4\x1c\xe6\xc2\x31\x9d\xbc\x72\xb0\x92\x9b\x4b\x1a\xe3\x31\x9a\x01\x4c\xc8\x88\x4f\x6c\x5e\x27\xdd\xbf\x3e\x0d\x01\x75\xdd\x7f\xb4\x70\xdd\x83\x17\x1a\x31\x87\x89\xa9\xb2\x68\xbe\x0b\xd3\x2e\xcd\x76\x31\x1c\xfc\xc7\xda\x85\xcb\xfa\x72\xff\xd8\x95\x66\x23\x5a\xd3\x7d\xae\xe3\xff\x61\x46\xc9\x48\x18\x31\x6e\x75\xe1\xe7\x4f\xb4\xd1\x48\x18\x6d\x4a\x36\x4d\x61\xdd\xf3\x25\xe3\xf1\x34\xa9\x1b\x01\x18\x88\x9d\x73\x48\x91\x9b\x2c\x6a\x14\x0f\xb1\x1a\xe1\x73\x91\x25\x97\x9a\x52\x72\x3e\x65\x69\x6e\xf6\x56\x1b\x0b\x5b\x07\x31\x89\x1e\x2e\xda\xf7\xab\xf8\x1e\xb4\x88\x5f\xf3\xf4\x6a\xa0\x88\x0d\x6a\x00\xc2\x8c\x06\x54\x9a\xcc\x4f\x7f\x22\x7b\xac\x92\xfa\x1b\xf9\xb5\xf4\xd8\xbd\x3e\xd9\x40\xe2\x59\x75\xcc\x35\x50\x54\xb4\x9e\xdb\x30\x5f\x15\x71\x29\xd3\x5e\x55\xfe\x64\x43\x9b\xec\x70\x67\x30\xae\x84\x81\xb6\x18\xbc\x05\x0c\xd2\x95\x62\x13\xf6\xb9\xa7\xd5\x88\xd8\xc7\x6e\x40\xf5\xef\x75\x6b\xa7\x41\xb8\xa9\x56\x29\x93\x31\x74\xe0\x30\x55\x3e\x7a\xc8\x27\x8d\xc8\x4d\x95\x42\xca\x4a\x9d\x32\xc2\xea\xc8\xc5\xd7\x0e\x30\x5d\x3d\x18\x6c\x6e\xc4\xb0\x6d\xea\x42\x63\xb4\x43\x42\xe4\x13\x4b\xbe\xa2\xd6\x43\x0a\xa1\xb4\x09\x7c\x66\x3f\xfb\x5c\xfa\x7b\x02\x47\x1b\x1b\x16\xfe\x77\xb3\x9a\x45\x72\xc9\xae\x52\x39\x3e\x6f\x87\x1a\xdc\xf5\xe8\xcb\xac\x3f\x3a\x9a\x03\x09\x71\xeb\x1c\x47\x7d\xe0\x3c\x71\x95\x50\x13\x07\x3c\x3a\x4d\x9b\xad\x39\xfb\x71\x0f\x03\x4e\x5b\xea\x7f\xbd\xba\x9e\xf3\x66\x27\x7f\xb5\x7a\x43\x8a\x75\xf6\x89\xd8\x29\xc6\x5f\x72\x06\x2b\xae\x33\xc0\xf0\x3e\xa9\x51\x7a\x90\xdd\x1d\xf1\xf0\x7e\x91\xb1\xc2\xad\x47\x72\x94\x28\x67\x99\x73\x0d\x4c\x0f\xcc\xb1\x84\xe4\xe8\x66\x59\x9e\x54\xb1\x6f\xc1\x6f\x19\x79\xc0\x84\x13\x03\x15\x92\x0b\x77\xbe\xda\x7f\x90\x28\x2c\x3d\xd8\x66\x16\xdf\x7b\xab\xa1\xb0\x89\x58\x5d\x10\x39\x7e\xb5\x37\x8b\x5f\xae\x62\xe2\x9f\x63\xa6\x91\xef\x98\xa1\x5b\xda\x51\xc6\x65\xef\x7a\x87\x69\xee\x2c\xa4\x92\xf4\x1c\xbc\x41\x2f\x16\xe7\xf3\xf4\xb5\x0e\x59\x38\x33\xb6\xe9\xe2\x13\xa8\x6b\x50\x1d\x76\xa5\x52\x46\xba\xb0\xfd\x06\xdd\x88\x0d\xf9\x84\x7b\xcb\xf7\xe5\xbe\xba\x2a\xcd\x78\x0c\x88\xc6\xf0\x32\xb7\xed\x54\x65\xbf\x34\x08\x42\x4c\xe8\x4b\x0f\xd3\xfd\x53\xa9\x5f\x8d\x02\x42\x79\x89\x7d\xc3\x20\x0e\xc4\xbc\xb6\x73\x4d\xd2\x31\xdd\xb4\x5a\x57\x68\x8f\x92\x33\xf5\xcd\x29\xc2\x6a\xce\xa5\xad\x90\x32\xee\x36\x76\xcd\x53\x13\x7c\x4d\x86\xaf\x41\xb1\x6f\xce\xd9\xfb\xf2\x47\xee\xd7\x6d\x4b\x2d\x86\x35\x9f\xd4\xf7\x18\xf5\x89\x87\x6d\xe4\xca\x39\xf0\xa2\x97\x4d\xcd\xed\x26\x16\x18\xa3\xc2\x1f\xe3\x89\x46\x8f\xed\xb7\x88\xf4\x87\x52\xdb\xe1\x6b\x4e\x6a\x86\xe6\x88\x85\x3e\xb4\x71\xf1\xb8\x45\xa6\xe0\x3e\x75\x09\x17\x9d\x91\x21\x61\xf9\x09\xdd\x69\xb2\x12\xe0\x1b\x23\xe9\x4c\x93\x9b\x91\xbf\x48\x5b\xe0\xfa\x28\x39\x7c\xe6\xb7\xfe\x73\xb5\x43\xbc\x50\xee\x85\x9d\xdc\x8a\x25\x8b\xd4\x2a\x06\x02\x3f\xb2\x9c\xf6\x6d\x6e\x71\x8b\x11\x47\x51\x18\x62\x5f\xc3\x57\xad\x7d\xd3\x24\x4e\xe2\xec\x96\x21\xff\x8a\xa9\xdb\x86\x2a\x98\xf9\x98\xd3\x0b\x0b\x4f\x6d\x31\x88\x1f\x0e\x65\x38\x48\x1d\x5b\xf2\xa7\x46\x2a\xa1\x3e\xf0\xcb\xc8\xff\x74\x46\x56\x89\x8c\x08\xbf\xbf\xdf\x6f\x13\x22\x0f\x34\xf2\x6b\x1c\x2e\xbc\xe7\x56\xe5\x10\x43\x92\x83\x33\x77\x86\xd1\xfe\xa4\x74\xa9\x78\xfc\x20\x63\x42\x80\x82\x50\x1a\x88\x1d\x58\xaa\x9d\x55\x87\x91\x20\x24\x88\xa7\xb7\xc6\x31\x3e\x9b\x68\x51\xe6\x72\x43\x2e\x6c\xc0\x05\x3d\xea\x87\x8e\x28\x28\x0a\x13\x56\x1a\xa3\x67\x12\x04\xd2\xd0\x26\xfe\x64\x7f\x53\xe0\x0e\x4b\x5d\xd5\x72\x5f\xee\xb2\x13\x23\x8c\xf7\x2c\x46\x55\xd5\x67\xa4\x96\x9c\x87\x98\xc5\xc9\x10\x7d\xb9\xff\xdd\xa0\x89\x52\xe2\x50\xb7\x1a\x5d\x3c\xca\x48\xeb\x01\xa9\xf1\x71\x7c\xa1\xff\x9b\x3a\x70\x50\xae\x20\x6f\xc9\x0f\x17\x4d\x16\x90\xc6\x82\x00\xc0\xfc\x7d\xc5\xe1\x8f\x67\x14\xc6\x9a\xc9\xc1\xe0\xda\x3a\xde\x64\x31\xd6\x47\x21\x72\x53\x96\xba\xfb\xa4\xba\xc9\x49\x12\x02\xd4\xe9\x52\x73\x22\x4d\xa3\x8a\x2b\x25\xc1\x3e\xd6\x1c\xa3\x26\x2e\xe6\x10\xb1\x2f\xff\x8d\x2d\x17\xe8\x09\x07\x64\x31\xd4\x7d\xbb\x41\x69\x2f\x06\x60\x52\x91\x3f\x3a\xd6\xac\x36\xbc\x06\xaa\xf9\x52\x5b\xc4\xbd\x59\x83\x3c\x12\x0d\x3c\x5a\xd8\x79\xc4\x38\x37\x2e\x8d\xc4\x0c\x2d\xb7\xf0\x40\xf6\x3c\xce\x99\x05\xe7\xe9\xbe\x47\xcc\xa2\x37\x29\x41\x04\x52\xe6\xf8\x42\xcd\x82\x98\x30\x2b\x72\xc5\x7b\x2b\xf6\x1f\x66\x16\x0e\x16\x8c\x06\x39\x98\xe3\x67\x73\xf5\xdd\x23\x23\x34\x0a\x44\xa1\x5e\x78\x9b\xa2\x0d\xe8\x68\xf5\x78\xf2\xad\xe9\x53\x98\xd7\x95\x5c\xa0\xdc\x8b\xc3\xda\x54\xc1\x5b\xa1\x23\x08\x15\x7f\xda\xab\xdb\x4a\x36\x09\xa4\xb2\xdc\x07\x47\x6b\x72\x19\xc4\xc7\x02\x95\xb1\xed\x44\x1b\xde\x8e\x11\xa1\x82\x92\x7f\x73\xe5\x70\x6d\xad\x0e\x2b\x56\xb8\xa7\xad\x85\xea\x14\x78\x88\xd5\x61\xe8\xfb\xb8\x72\x82\xa5\xba\x0e\x69\x73\x71\x87\xf6\x86\xad\x24\xdb\xc4\x5f\xde\xac\x6b\x6d\x5a\x84\xb9\x04\x48\xb0\x0f\x1f\x36\x03\x4d\x80\x83\xb4\xaa\x7e\x6c\xab\x36\xe8\x45\xac\x42\x3d\x80\x5a\x9c\x5d\xd2\x2e\xb9\x04\xe6\x57\x12\x5a\x71\xf3\x68\x0e\x66\xf0\xa9\x5f\x0a\x69\x05\x59\x16\xbc\x89\xaf\x6f\x54\x6f\x22\xf2\x1d\x70\x70\x13\xd2\x10\xdf\x3c\x3a\x52\x64\xb5\x28\x69\x00\x85\xcd\x04\xdc\xca\xbf\xbf\x98\xed\x72\x03\x8b\x00\x3d\x3d\x29\x22\xcc\x36\xf4\x5a\x43\xe2\x1c\x78\x9c\x29\xd1\x70\xe6\x0c\x25\x9c\xcb\x17\x67\x9a\x2d\xc1\xc7\x1f\x33\x70\x5e\x14\x82\x36\x0c\x3e\xc4\x56\x20\x7a\xc1\x64\xae\x7b\x94\x91\x54\x18\x42\x4d\xb5\xc7\x6d\x51\xdd\x5d\x8b\xb4\x4f\xf2\x91\xc1\xb7\x93\xdc\x7e\x51\x3e\xde\x70\x57\x16\x97\xd5\xe2\x28\xaa\x78\xef\xed\x12\x4c\x18\x80\xf6\x7c\xfe\x27\xf3\xd3\x58\x1d\xf9\xc9\x6d\x7d\x76\xad\xe0\x45\xe3\x5a\x0d\x71\xde\x7b\xa1\x43\xb3\x4e\x8c\x6a\x0e\x0f\x2b\x7d\x86\xa9\x97\xae\x12\x0c\x88\x84\xaf\xdf\x2f\x6c\x5f\x93\xcc\x63\xa3\x40\x0c\xe2\x3f\xd3\x5f\x37\x76\x40\x2e\x6c\x50\x65\xad\xf7\xc2\x7e\x3d\x12\xba\x5c\x72\xaf\xf0\xc5\x43\x83\x45\xbd\x6a\xb7\x10\xa4\xdf\x1b\x1f\x37\xee\x6b\x83\xf8\xb4\x5a\x15\xb1\xe1\xb4\x33\x54\x1b\x64\x25\x25\x2d\x00\x10\x5f\xba\x40\xdf\x2f\xf9\x25\x3d\x6c\x15\x8a\xdb\x86\x6b\x25\x7e\xb7\x60\xe8\xc6\xf1\x6a\x5d\x00\x22\x08\x92\xff\x6b\x34\x08\x14\x2e\xc7\xd4\xbf\xa0\xd5\x2a\xb1\x78\x61\xd1\x5f\x3b\xf1\x0d\xca\x42\x06\x9f\x38\xff\xf9\x87\x46\x1a\x09\x8a\x21\x97\xa7\xd0\x8b\x1f\x15\x18\x05\xe2\x91\xb6\xc1\x6e\xd1\xd6\xaa\xbf\xc0\x8a\xdc\x46\xc8\xed\x1b\xf3\x48\x8c\xe6\x38\xa9\x0e\xd6\x07\xaf\x4d\xc8\x06\xc5\xce\x69\x97\x5c\x92\xfc\xf7\x83\x0f\x67\x8f\xc3\xac\xb9\xa2\xcd\x7f\xef\x38\x13\x3b\x88\x7a\x68\xb5\x9a\x82\x98\x06\x9d\xaf\x35\x0b\xb0\xea\xe6\xb8\x84\x79\x7b\x74\x7b\x1a\x87\xf8\x49\x26\xbd\xfc\x48\xb6\x60\x6e\x92\xa4\x1f\x25\x88\x17\xcd\x6a\xf7\x76\xe9\x53\x17\xfb\x4a\xba\xa3\x4a\x2c\x82\xdc\xce\xb6\x12\x68\xd8\x59\x0d\xed\x8d\x38\x86\x34\x38\xaa\xc6\x34\x35\x86\x41\x0e\x29\xba\x27\x6d\xc6\x1b\xd0\xa9\x2a\x32\xe3\xbc\xd7\x8d\xd0\x24\x84\xb7\x38\x34\xf4\xc3\x07\x87\x68\x22\x1d\xc9\xb7\xea\x2e\x66\xf3\xcd\xbc\x99\x33\x3b\xe7\x0a\x20\xc9\x6f\xd6\x19\xfd\xa1\x4b\x42\xe9\xa2\x96\x5f\x7c\x72\xac\xb6\x89\x30\xc7\xfa\xf1\x42\x4d\xb1\xa9\x46\x69\xaa\xbd\x72\xbb\xe1\xb4\x57\x27\x2e\x8c\x60\x38\xde\xbd\x70\x66\xf6\x79\xf2\x96\xa4\x0e\x0c\x83\xb6\xb7\xc1\x6e\x83\x40\x8e\x79\x8b\xe1\x4b\xea\x6e\x55\x19\xc1\xbe\xce\xb3\x7c\x60\xad\x81\xc9\x4c\x2e\x41\x90\xca\x84\xc6\x65\xcd\x93\x69\xe6\x82\xf9\x73\x4b\xe5\xf8\xf3\xee\x60\x19\xea\x2a\x30\xfc\x45\x33\xe4\x99\xc3\xc8\x05\x2d\xd6\xc2\x2f\xc6\x5d\xa0\xbd\x27\xc6\x70\xa8\xc3\x47\xe7\x2c\x49\xb1\xdc\x18\x80\x1c\x57\x2d\xe9\x68\xc9\xc5\x43\xa9\xca\x99\xa9\x47\x9f\x4c\xfb\x47\xd6\x42\x12\xd2\x3e\xfb\x1e\xb9\x8f\x6b\xf1\x30\xfe\xd4\x0c\x35\xdc\xd1\x97\x60\x1f\xd1\x96\x60\xa8\x12\x09\x05\xcc\xfc\x45\xc6\x58\x14\x87\x0e\x57\x5d\x83\x1f\xf6\xa9\xc3\xea\x5a\x75\x47\xdc\xd1\x18\x32\xfa\xc5\xcf\x09\x10\x86\x43\x85\x83\xc9\xf7\x37\x64\xe3\x7a\xe8\x20\xe2\x0a\x91\x36\x31\x3f\xec\xba\x49\x0d\x83\x43\x54\xc7\x81\x93\x84\x88\xc2\xc7\x9f\x1c\xa5\xad\x73\x82\x90\x45\x9c\x51\x9e\xfc\xd4\xf7\x3d\x68\xfa\xb3\x79\x0c\xd9\x98\x9b\xf8\x95\xfb\x0a\xff\xfb\x82\x56\xac\x60\x14\xe0\x2a\x61\x7c\x21\x7e\xf6\x88\x39\xdc\x71\x89\x8d\x7a\xc4\x0a\xf1\x9e\xfb\x75\x46\x08\xf2\x92\x83\xfd\xc3\x5b\xcf\x61\x94\x09\xf0\xf9\xbf\x3c\x2e\x65\x9f\xf8\xf6\xe5\xdf\xee\xe1\xe8\xde\xf9\xe0\xc2\xe8\xee\x17\xa0\x52\xe4\xa6\xdc\xaf\xe2\x3a\x4d\xbb\x02\xc1\xa6\x9f\x03\xfa\x16\x1d\x37\xed\xc6\x18\xb1\x42\x29\xb6\x57\xdc\xf8\x88\x14\x2e\xad\x88\xc5\x6e\xee\xf4\xf4\xec\xc7\x42\xb6\x2d\xc9\x60\xa7\x9e\x56\x27\xb9\xe1\x62\xa8\xd3\xaa\x8c\x72\xd7\xe9\x1f\x1f\xd0\x3d\x79\x2d\x8b\xb7\x1d\x13\x56\x18\x2e\xaf\xc8\xaf\x1b\x54\xb6\xfc\xd6\x9b\x8c\xd9\x9b\x90\x98\x15\x2d\xff\xb5\xd5\xa1\x6a\x96\x93\x82\xa3\xf7\xcc\x55\x18\x7d\x30\x9b\x6f\xeb\xf4\xd6\xae\x4b\x0b\x66\x1b\xb5\x1b\x2f\xf4\x6e\xd2\xa6\x95\x28\x0c\x29\xe5\x4f\x6c\xde\x94\x91\x66\x5f\x24\x0c\x9f\x87\x2f\x53\x8a\x09\x88\x94\xca\xb1\xfd\xa0\x3a\x0d\x55\x16\x05\xa1\x64\x85\xbf\x3a\x41\xcf\x5b\x35\xd4\x0b\x39\x33\xde\xce\x74\x3b\x87\xa8\x01\x3c\xe0\x57\x0c\x89\x05\x3e\x2d\x92\x8b\xa8\x05\x9b\xdb\xdf\x5f\x5d\x4e\xcf\x62\x9f\x7b\x9c\x96\x2e\x47\xcc\xc7\xed\x5e\x96\x7f\x8c\x0d\x47\x67\xc4\x2c\x0a\xc1\x16\xbe\x4f\x70\x84\xf7\x32\x36\xa5\xac\x14\x52\xfe\xbf\xc9\x03\x6f\x1a\x90\x23\x8f\xd2\x50\x6a\x4a\xfc\x60\x8c\x3a\xc9\xdd\x91\x4b\x00\x20\x7b\xc7\x4a\x7e\x60\x91\x0d\x02\x98\x7d\xb9\x83\x8b\x8d\x6a\x38\x72\x93\x0c\xc9\xab\xe1\x3f\xce\x36\x60\x6a\xc0\x8f\x05\xbf\xac\xef\xad\x12\x0b\x53\x9f\x46\x35\xa0\xb9\xe7\x57\x3d\x6d\x1a\xd8\x22\xd1\x55\x67\xbf\xec\xd3\xc3\xb2\x27\xad\x81\x1a\xa9\xbb\x9f\x3c\x69\xeb\x36\x19\x24\xbb\xce\x6e\xe9\x1c\x14\x5b\x0f\x8e\x33\x0b\x78\x97\x8a\x12\x10\x42\xdf\xc2\x5d\x02\x8c\x14\xb1\x8c\x43\x61\xe1\x83\x55\x63\x5d\x4f\xf9\x56\xbf\xdc\x97\x7b\x69\x8f\x41\x84\xa1\x7e\xd2\xc1\x70\x67\xc6\xff\xdc\xa5\xd5\x55\x51\x80\x39\x68\xc3\xb9\xd7\x6c\xbe\xdd\x40\x20\x4b\x72\x7f\xbc\xd4\xd8\xea\x33\x2c\xdb\xc3\x0f\xcd\x57\xef\xc5\x46\x7c\xec\x96\x1b\x36\x81\xc3\x91\x56\x73\x31\x18\x17\xd5\x22\xce\xce\xfe\xfd\xe3\x26\x15\xd1\x4d\x9a\x7f\x0e\xb9\xbe\x77\xcb\x48\x8d\xe5\x04\x42\x16\x42\x7a\xab\x30\x65\xa4\x8a\xf6\x91\x8e\xfc\x79\x65\x50\xda\xb5\x38\xd8\xd5\x1e\x4e\x6d\x43\x6a\xd0\x45\xbd\x76\x4a\xfb\xbf\x0f\x33\x79\x1d\x60\x7c\xc1\x44\xdc\x9c\x32\x52\xa5\xbf\xaa\xd0\xcc\xdb\xf9\xa8\xa0\xe8\x73\x4b\x5b\x6d\x58\xf7\xd7\x5b\x34\xaf\x6d\xa2\x01\x87\xe7\x6e\x37\xf0\xd6\xbe\x54\x11\x2e\x3c\xf1\x90\xaa\x5e\x84\x6b\x46\xd1\xba\x73\x94\xa6\xb1\xe8\x56\xa5\x10\x30\xa0\xf4\x6e\x13\x42\x2e\xd8\x47\x6e\xc8\x05\xc9\xee\x9f\xa8\xf0\x43\xc0\xd9\xce\xf5\x33\x30\xfa\x5c\x5a\x43\x12\x71\x8e\x8e\xe3\xa7\x7c\xe6\x3c\x40\xfe\x83\xa2\xc2\x32\x23\x19\x24\xdf\x8d\x4f\x3b\x7e\xbb\xd1\xa0\x79\xfa\x94\x79\x34\x12\xdc\xd0\xdc\xf3\xf3\x0d\x06\x36\x05\x06\x74\x83\xd1\x06\x76\x53\x1f\xa8\xc2\x5f\xe6\x8b\x21\x6b\xf2\x83\x41\x6b\x61\xa4\x14\x56\xb3\xa4\x10\xe8\xf8\x27\xb3\x57\xc0\xa5\xbe\xcd\xdd\x78\x44\xf6\x5f\x70\xc8\xc0\xeb\x84\x3d\x8c\x20\xdd\xfd\x7d\xe1\x26\x4d\xf1\x8f\xa1\x5a\x0d\xea\xec\xcb\x35\x1a\x30\x00\x45\x5d\xc1\x85\x68\xac\xea\xd0\x2a\x79\xe1\xe3\xfe\x9d\x11\x3a\x7c\x07\x33\x4a\x38\xcf\xfb\xff\x9e\x33\xe0\x4c\x62\xb0\x58\xee\xcb\x3d\x31\xc6\x00\x70\x62\x86\xa7\x35\xf8\x86\x61\xfe\x5d\xa3\xcd\x14\x64\xbb\x82\xce\x5f\x9c\xb4\x6c\xa8\x48\x80\x49\xff\x2d\xac\x1b\x73\xbb\x1f\xd3\xd2\x75\x88\x93\x22\x29\xfe\xd5\xe8\x4b\x8c\x7b\xe9\x11\x57\xe8\x59\x99\x5b\xbe\x81\xca\xd5\x3f\x29\x0f\x44\x00\x59\x6a\x78\x8f\xcc\x9a\xd9\x39\x47\x0c\x41\x0a\xd7\x98\x6c\xcf\x2a\x43\x16\x87\xcd\xf1\x60\xf1\xe7\x95\xe6\xdf\x00\xb0\x14\x91\xda\x7b\x7d\xf9\xcb\xb6\x9d\xc3\x05\x56\xa2\x1d\xd7\xdf\xd4\xa1\x8d\xcc\xb0\x9b\x64\xa9\x68\xbe\x36\x17\x43\x95\x0a\x0a\x05\x05\xb0\xf8\xa9\xbd\xd9\xc4\xd1\x1b\x31\x62\x39\x69\xa8\xfc\xf2\x0d\x19\x3f\xff\xab\x56\x4d\x5b\x45\x93\x04\x97\xcf\x1e\xd4\x9a\x4b\x9b\x4a\x6e\x2e\xbf\xfa\x31\x35\xb9\x0d\xb1\xd7\xc0\x0c\xe4\x68\xe0\xb3\xbf\xd7\xf0\x51\x8a\xea\x0c\x11\x1f\x2b\xa8\x79\xee\xc1\x07\xd2\x9a\xd5\x85\x9c\x73\xd5\x06\xce\xd1\x58\x0a\x02\xac\xb9\xff\x36\x24\xac\x5b\x49\xd9\x8e\x3c\xc3\x7e\x39\xf7\xf8\x9d\x6d\x65\x9a\x9d\x4e\x1d\xbb\x9f\x4c\x63\x95\x1b\x99\x40\xa1\xf8\xde\xe9\x1a\x9d\xc5\x51\x14\xd2\x8f\x5f\x3f\x5c\x93\x6e\xe0\xb8\xe5\xe4\x13\x95\x74\x03\x33\x94\x4a\xb8\x15\x1a\xbb\xc6\x69\xd3\x97\x30\x29\x14\xad\x8c\xf7\xd1\xef\x04\x29\x8f\xdb\x94\xc0\xd1\xff\xf9\x51\x9e\xaa\x89\xc7\x49\xf8\x9e\x40\x82\x6c\x5f\x3d\x54\x87\x53\x3b\xa8\x5e\x2a\xc7\x6f\x1c\xcf\xc2\x18\x2a\x42\x23\x11\x81\xb4\xaf\x88\x07\xa7\x35\x5c\x49\x80\x80\xe7\x52\xdc\x68\xac\x20\x61\x92\x2b\x89\x38\xce\xb0\xec\xe9\xad\x44\x52\x18\xfd\xbe\x29\x6f\x97\x2d\x51\xd2\x9d\xaf\xe2\xce\x79\xa5\x2b\x5d\xec\x0b\x9b\x15\x35\xc4\x1a\x79\xb3\x7a\x28\xb4\xd1\x48\x41\x86\xcf\x5f\x93\x26\x96\x16\xd2\x31\xed\xa3\xf7\x1b\x0e\x5b\x88\xb1\xac\x3b\xe2\x43\xe3\xd3\xe8\x3b\x7b\x3e\x60\x59\x7a\xd6\x0f\xcb\xfc\x9b\x89\x3c\x99\x0c\xd8\x68\x64\x4f\xc4\xc4\xf5\x28\x8e\x12\xc8\xd3\x14\x48\xf2\x9b\x01\x86\xb0\x27\xb6\x48\xa0\xe9\x6e\xe5\x7e\x33\x44\x21\x99\xfd\xa4\xaf\xc8\x0f\xda\x72\x81\x36\x13\x70\xa2\x3a\xd3\x2d\xfe\xff\xda\xa1\x71\x88\x30\xae\x03\x93\x6b\x72\xf6\x30\xba\xa4\xaa\x71\x04\x8b\x46\x21\x10\x10\xdf\x12\xf0\xcd\x0d\x43\xc6\x6b\x53\x93\xa4\x54\x6a\x0b\x41\x2b\x6f\xd3\x3e\x4d\x54\x01\x75\x41\x22\x13\x62\xfe\xeb\xe3\x8d\x9c\xe2\x06\xb8\x05\xf0\xd0\xe9\xa5\x72\xfc\xdb\xbc\x1a\xfe\x32\x8d\x61\x10\xff\xcd\x10\xfc\xa2\x51\xd8\x88\x42\x29\xcc\xb4\xf4\xb0\x8a\xf2\x5d\x0b\x4a\x7e\x2a\x4c\x71\xfa\x45\x0d\x95\xe3\x44\x01\xd7\xca\x2d\xbc\x7b\x45\xf6\xb8\xcd\x9b\xcd\x89\x70\xf0\x0e\xe7\xbc\xa8\xa1\x39\x92\xf8\x3b\x78\x80\x29\xf3\xeb\x35\x70\x48\x52\xd3\xd9\x72\x5f\xee\xbd\x86\x2e\x29\x0a\x24\x18\xbe\xfa\x54\x5a\x9e\x84\x4c\x43\xdc\xed\xba\x89\xf7\x52\xa8\x41\x5d\x5a\x23\x5c\x5f\xfd\x6d\x4d\x13\xc5\x1c\xd6\x4d\x14\xd0\xc7\x9e\xd1\x54\x06\x03\x86\x20\x45\xec\x5b\xc8\x2f\xc2\x75\xf0\x89\xfb\x72\x6f\xe1\x44\xcc\xd2\x65\xac\x8e\x6c\x25\x4a\x10\x3f\x51\x54\xff\x38\x69\xe3\xb8\x2a\xd9\x42\x03\x72\xbe\x60\x46\xe7\x3c\x9e\xa5\x0a\x53\x87\x0d\x17\x75\x5c\x25\x43\xd8\xe8\xde\x6d\x54\x9e\x0e\xd0\xac\xa1\x24\x17\xee\xf7\x01\xa7\x58\xc7\x4b\x0d\x71\x98\x80\x5a\x04\x87\xd2\x9a\x25\x77\xc7\xd2\x6c\x95\x6d\xb9\x51\xe5\x5c\x93\xd8\x8f\xf7\x33\x59\xf6\xb8\x49\x78\x31\x02\xf7\x66\xf9\x6a\x83\x91\x80\x42\x39\x08\x29\x6c\x7f\xc0\xd8\x6f\x85\xc4\x83\x69\xbf\x08\x49\xc3\xf7\xe8\x7a\xa4\x20\xa0\x97\x3c\x97\xcf\x19\x33\xfa\x0a\x0d\x43\xea\x89\xea\xe7\xef\xc7\x35\x37\x89\x20\xc0\x9b\xa4\xc7\xeb\x47\x6f\x81\xb8\x51\xba\x42\x7a\xf9\xb6\xcd\xf0\x3e\xb5\xd8\x54\x53\x4a\x5a\x2f\x99\xad\xfe\xfa\x26\x1f\x94\x2e\x45\x2e\xd1\xe2\x57\xed\x6c\x36\x1c\x81\x6f\x5a\xc9\x03\xf5\x32\x3e\xbd\x5b\x3c\xda\x34\x7b\xf5\x7d\xc9\x6e\xce\xad\x7b\x51\x2f\x8f\x68\x50\x01\x51\xdf\x79\x8e\x96\x41\x2a\x94\xc9\x5b\x7a\xd0\x35\x05\xe0\x43\xcc\x70\x90\x0a\x34\x7c\x77\xd5\x25\x46\x7f\x17\x46\xec\xdc\x82\xc6\xb9\x1d\x43\x64\xb9\xd7\xea\x01\x27\xcd\xf8\x0f\x8f\xf1\x13\x42\x6c\x61\x79\x7a\x85\x90\x26\xeb\xea\x9c\x09\x0c\xb8\x4b\x26\x8e\xca\xce\x14\x38\x8e\x1f\x16\xd3\xcb\x77\x1a\xe2\x70\x34\xcc\x2a\x38\xe6\x66\xdd\x90\x5e\xe0\x59\x9d\x5d\x50\xec\xed\x57\x23\x21\x1f\x4b\x11\x8a\xfc\xe6\x03\xda\x4c\x85\x4b\xbd\xf1\x8b\x58\xb8\x3a\x3e\x17\x52\x99\x4b\xaa\x6e\xb8\xf4\x02\x5d\x65\x8e\xd4\x33\xec\xe3\x3b\x42\x4d\xff\xda\xaf\xf3\xfc\x96\x9f\x76\xcb\xd8\xf4\xbf\x62\x97\xf4\x22\xb0\x2e\x52\xc5\x41\x49\x0c\xe2\x5d\x5a\x49\x5e\x4c\xfc\xe3\x03\x06\x80\xb3\x49\x6c\xac\xd4\x6d\x72\x9f\x5d\xa7\x74\x4f\x69\x55\xfb\x41\x4f\xec\xb8\x20\xc3\x33\x00\xac\xa5\xb4\xf2\x2b\x8e\xda\x2d\xb5\x20\x69\xc5\xc5\x30\x0b\xaa\x6e\x1b\x95\xd5\xee\xba\x66\xda\x12\xf9\xd7\x2f\x7b\x54\x91\x1b\x51\x14\x52\xae\x20\x26\x77\xd7\x87\x0d\x4f\xa5\x1a\x22\x3e\x4f\x12\x37\xbf\xc1\x75\x76\x97\x20\x56\xa7\xcd\xa0\xae\x05\xa0\x67\x0f\x8e\xc9\x20\xd4\x3d\x0f\x0b\xff\x6e\x08\xe4\x1f\xbc\x6b\xa8\x92\x21\x43\x72\xfd\x7c\x78\xaf\x42\xea\x20\x10\xe0\x55\x3f\xb0\xf3\x36\x0d\x2f\xab\xcb\x84\xc0\xc1\xda\xba\x88\x4f\xef\xb0\x4d\x2c\x3e\xcf\xbb\xfc\x8c\x22\x12\xb5\xdb\xc6\xe7\xde\xc1\x0c\xf2\x0e\xb5\x41\x39\x28\x05\x1b\x9d\x19\x98\x3e\xf9\xa0\xa5\xe1\x6e\xf2\x5f\xd5\x06\x6d\x4e\x14\x72\x48\xc6\xbb\x36\xab\x13\xc6\xd3\xa5\xb0\x19\x2b\xa2\xed\xc6\x28\xc2\x86\x6a\x10\xe6\x4e\xf1\xf5\x86\x0d\x31\xe0\xc1\x78\x28\x5b\xfd\x8a\x9e\xcd\xc1\xbf\x66\x9e\x93\xcd\x4f\x36\x09\x38\x41\x51\xda\x67\xc7\x6f\xdd\x34\x52\x6b\x2b\x33\x06\x57\xdf\x5e\xa4\xb9\xe9\x6a\x44\xa7\x5c\xc7\xcb\x69\x71\xc3\x1c\x98\xa0\x2e\xbe\x9d\x9f\x1e\xda\xc4\xcc\x41\x1c\x64\x3b\x61\xd8\x28\xa3\x36\x73\x5d\xe9\xa6\xcc\x1a\xed\xd5\x20\xb0\xc4\x74\x7d\xae\xcd\x7b\x0d\x13\x43\xea\x87\x84\x51\x1d\x02\x96\x2f\x1a\xeb\x69\x4c\xc0\xc4\x5d\xfc\x9a\x7b\x0f\xeb\x0b\x70\xa9\x14\x09\x4b\xce\x4d\xa6\x7f\x22\xa7\x27\x8b\x47\xd9\x3b\x3f\x9b\xb4\x19\x91\xb8\xb4\xd5\x0f\x2a\x67\xb6\xa6\x96\xb4\xaf\xd2\xd6\xff\x3d\x20\x2c\x61\x43\xe1\xf9\xc1\xf8\x02\xfd\x12\xad\x2d\x4f\x93\xff\xa4\x54\x8e\xaf\x59\x67\x82\x56\x5c\x09\x68\x29\x3c\xe5\x66\xef\xd0\x9c\x79\x82\x8d\xff\xff\x53\xf6\xee\x61\x52\x54\x77\xde\xb8\x7d\xd1\x18\x44\xe4\x2e\x8e\x88\x48\x58\x54\xa0\x27\xc3\x70\x1b\x14\x11\x11\x11\x15\x69\x82\x04\x91\x10\xe5\x74\xd5\xe9\xae\x33\x5d\x55\xa7\x39\x55\xd5\x3d\x33\xb2\x86\x18\xc2\x12\x96\xb0\x84\x18\x63\x0c\x61\x79\x59\x97\xb0\x2e\x31\x2c\x31\x2c\x21\xac\x21\x2c\x31\xc6\x18\x62\x88\x51\x62\x0c\xeb\xba\xc6\x28\x4b\x08\x41\x62\x8c\x61\x2a\xbf\xa7\xce\xf7\x54\x9d\x53\xa7\xe7\x7d\x9f\xe7\xf7\xcf\xfb\x6e\x46\x66\xba\xba\xea\xd4\xf7\xfa\xb9\x84\x3f\x7f\x6f\xb4\x82\x7f\x65\x5e\x80\xcc\xa6\x49\x62\xf6\xc7\x5d\xda\xdd\xc7\x88\x79\xa2\x88\xbb\x6c\x5b\x3a\x4e\x4a\x27\xf6\x38\x63\xae\x98\x2b\x2b\x62\xec\x56\x88\x8b\x41\x2d\x6a\xed\x9b\x49\x33\x62\x91\x26\x80\x53\x6e\xfc\x0d\xc3\xb5\xda\x31\xa1\xd7\x5e\x9d\x17\xc3\x72\x86\x41\x5e\x25\x73\x7d\xe7\x15\xca\x60\xa4\x6a\x31\x45\x09\x36\xdc\x33\xff\x72\xf5\xbd\x26\x36\x89\x23\x41\xf8\xca\x81\x24\x86\x53\x3e\x89\xbe\xee\xad\x16\xbd\x00\xe4\x86\x3d\x22\xbd\x4d\x7c\x4b\x6e\x82\xa7\x4d\x9c\x32\x6d\x3a\x64\x46\x6e\x7d\xfd\x3c\xc4\x56\x5a\xf6\xb1\x5b\x28\x86\xff\xde\xaa\x30\xcd\xb1\x4d\x30\x67\xb9\x5f\xbc\x53\x97\xde\xed\x98\x02\xc5\xfb\xb5\x1b\x05\xdc\x5b\xdc\x40\xf0\x82\xde\x91\xce\xb5\x80\x42\x83\x59\x7d\xe6\x15\xcd\xa7\xb4\x82\x9c\x58\x1d\x27\xb7\x65\x97\xec\xc1\xe2\x75\x6f\x7a\xd5\xab\xf9\x6b\x71\x17\xdb\x78\x91\xdb\xbe\x47\x86\xcf\xb2\x4d\x19\x06\xa0\x51\xfc\x32\xbf\x66\xea\x33\x5b\xc2\x47\x2c\xa2\x40\x98\xb7\x28\xed\xc7\x2b\x54\x2b\x85\x85\x4c\x93\x51\xee\x5e\xf8\xde\x0d\x8b\xda\xd8\xa3\x40\xe4\xbc\xfc\x11\x31\x6f\x15\xe8\x9e\xec\xef\x5e\xd5\x3f\x12\xb1\x2a\x67\x3a\x44\x7d\xed\x9b\x9a\x87\xb1\x83\xb1\xd2\x67\x7c\x73\x6d\x0a\xd0\x60\x7a\x30\x05\xde\x38\x53\x19\x56\x5b\xb1\x36\xf9\xd4\x33\x42\xed\x4c\x00\x72\x38\x1c\xe7\x25\xf9\xea\xd3\x9a\xcf\x31\xe2\xdc\x6c\x75\x87\x0b\xe3\xe9\x85\x77\xdc\x73\xcf\x2d\x0b\x9b\xbe\xda\x6a\x0d\x98\xee\x61\x56\x07\x2b\xbb\xe8\xec\xb9\x9b\xe4\x59\x22\x8c\x09\x70\x1a\x3f\x0b\x8b\xf6\xc9\x46\xc3\xe9\x8e\x3a\x68\xca\xe7\x4c\xf9\xc5\x9a\xa2\x2d\x48\x63\x24\x59\xe3\xbb\xcf\xab\xf2\x4d\x26\xe0\x96\xf2\x5d\xbb\x35\x19\x7d\x97\xf2\xc0\x06\x4a\xa7\xad\xfa\xe4\x50\xd8\xef\x84\x77\xed\x15\x96\x5b\xb6\x58\x85\xe5\xfe\xcf\x8e\x01\x0a\x5e\x84\xeb\xdf\xdd\x3f\x54\xe1\xcd\x44\xaf\x23\x07\xa7\xae\x16\xef\x27\x82\x31\x58\x38\x91\xe9\xd2\x60\x06\x75\x4d\x41\x37\x2d\xce\x93\xea\x05\x53\xa7\x47\x5f\x7f\xd8\x99\x51\x0a\xde\x01\xb9\x66\x93\xc4\x5d\xbe\xf6\xb4\xa6\xfb\x50\xc3\x42\x5a\x3c\xb3\xf4\x8c\x6e\xef\x48\xed\x1a\xa3\xb4\x0c\xbb\xa7\x03\xa3\x74\xde\x3e\x13\x40\xe1\x70\xf3\x1e\x1d\xa1\x1c\x30\xc3\x12\xa0\xcf\xf6\x27\xa0\x78\x9c\x57\x98\x34\x8d\x23\xa6\xcf\x08\xe3\x1f\x44\x5c\xb8\x3d\xdb\xa7\xc8\x40\x97\xbc\x35\xc5\xde\xdc\x6b\x9a\x30\xda\xa4\x19\x33\xa6\xb4\xc6\x0e\x69\xfd\xce\x02\x80\xe4\x4e\x0e\xfd\x35\x55\xdd\xd1\x3f\xe4\xb5\xee\x99\x02\xbb\x07\x62\xfa\xef\xc6\xf5\x29\x34\xcd\x35\x36\xd6\x3c\xa1\x87\x0d\x2f\x60\x31\xf2\xe9\xf2\xf7\x3f\x22\xcf\x3d\x87\xa9\x42\x1f\xab\x37\xd8\x63\x4f\x24\x45\xd2\xaa\x20\x16\x84\xcb\x9d\x72\x75\xe2\x91\xe7\x33\x0a\xcb\xf6\x44\x79\xfb\x61\x1d\x16\x57\x8f\x95\x54\xc2\x2b\x0e\x43\xdb\x51\x42\x6e\x15\x64\x41\xe0\x36\x6c\x68\xf2\xd6\x34\xc1\x0b\x4a\x10\x03\xd7\x4f\x91\x05\x84\xab\x04\xa3\xcc\x57\xfb\x25\x97\xe9\xf0\xde\x11\xba\xa3\xa5\xca\x6a\x14\x9b\x04\xb0\xab\xb9\xd1\x5b\xd2\xe1\xb7\x9b\x06\x62\x91\xf1\xf9\xce\x41\x71\x71\x57\x71\xa9\x47\xa0\x0b\x58\x38\x54\x59\x08\x2a\x7c\x20\xbe\xb8\xb9\xa3\x6b\x78\xba\x7d\x90\xfe\x26\xb7\xcc\x1e\xa3\x97\x04\xa6\x8d\x75\x97\x97\xfc\xc6\xd5\x23\x94\xe9\x70\x25\x50\x17\x0b\x99\xec\x05\x70\x32\xe6\x07\x4e\x09\x33\x5f\x45\x4a\x7d\xdb\xd2\xb7\x1b\x1c\xc5\x04\x0b\xfc\xb1\xf3\xf4\x18\xe1\x44\xaf\x90\x68\x84\xb3\xe6\x4e\x6d\x19\x69\x82\x8f\x02\xd4\xd4\x6f\xda\x92\x97\xe4\xa0\x5a\xcd\xc6\xbe\x45\x59\x4d\x29\xe5\xb2\x0f\x2c\xd4\x0b\x0d\x56\x17\xd3\xe6\xdc\xdf\x6a\x94\x33\x0b\x33\x4a\x0c\xf0\xfe\xf8\xe6\xcb\x5a\x99\x44\x99\xb0\x1b\xe2\xee\x25\x0b\xa4\x29\x77\x9d\x34\x3b\xbd\x9e\x5e\xad\x69\x2e\xd0\x1e\xec\x0a\x0e\xf7\xbb\x75\xf9\xe2\x31\x6c\x63\x04\x8a\x40\xd9\xbb\xf6\xc8\x07\xe4\x50\xa6\x7e\x89\x70\x93\x6c\x60\x3e\xda\x74\xf4\x47\x6a\xe8\x70\x40\xd1\x43\x86\x8b\x42\xf7\xba\x47\x46\x28\x81\x10\xc8\x4b\xc9\x30\xa8\x7e\x4a\x4f\x55\xd8\xb6\x85\x10\x6f\xb1\x37\xe7\xbf\x07\x5d\xcb\xdd\x62\x6d\xaa\x48\x30\xe7\xfe\xad\x4b\x73\x60\xf4\x0c\xb0\xf2\x4f\x66\xcc\x37\xee\x6a\x49\xbb\x9b\xa6\xef\xd2\x84\xa7\x63\xc6\xb8\xed\x23\x7e\x0f\x0e\x48\x45\xf0\xba\xdf\x1a\x0f\x9b\xff\xfa\xa8\xfe\x05\xeb\x98\x9b\x68\xc6\xf5\xc3\x38\xc5\x93\xbc\x44\xa9\xb0\xaf\xf8\xd6\x19\x65\x42\x2c\xb7\x1c\xb9\xdf\x8f\xd1\xac\x10\x5c\x33\xa6\x1c\xe4\xe6\xbe\x27\xe6\x34\x0e\x20\x49\x33\x37\xea\xd0\x57\xee\x65\x25\x16\x8a\xd9\x2f\x3c\xd1\xa4\x72\x58\x61\xd2\x3f\x29\x3f\x64\x80\x16\x14\x79\xbb\x1f\x03\xf8\x76\xec\x6b\x36\x80\x32\x19\x4a\xd4\x39\x32\x87\x15\x97\x0c\xa1\xb3\xad\x17\x9e\x47\xb6\x5d\xd1\xd4\x6b\x10\x4f\x70\x3b\x33\xef\x4c\xd1\x30\xac\x01\x73\xe5\x0a\xe0\xf2\xdd\x3a\x79\x9b\xa1\x84\xa5\x04\xcb\xb1\xfc\xdf\x9d\xd0\xd5\xe3\xb0\xe7\xa9\xb2\xf5\x5f\x7b\x5e\x45\xde\x97\x69\xe0\x82\xa0\x5f\xf6\xa5\x17\xb5\xf1\x5f\x21\xbe\x2b\x5d\x3d\x30\x3f\x63\xa4\x5c\x76\xf8\xd6\x10\xe2\xd7\x92\xbd\xc9\x71\x21\xb6\xbe\x3f\x0f\x3f\x50\x4c\xc3\x1d\xa4\xf0\x4b\xc3\xf5\x2f\x28\x85\x84\x81\x41\xad\x20\x93\x51\xbc\x6b\x2b\x0c\xe3\x6a\xc1\xe8\xae\x31\x42\xf9\x73\xbe\x77\x94\x40\xed\x04\x51\xfb\x55\x28\x86\x4f\x0c\x4c\x74\x10\x9c\x14\x44\x2a\xfc\xe4\x6a\xf9\x14\x84\xf2\x40\x53\xed\xb4\x48\xd3\x4c\xbb\xd6\xb7\x90\x1f\xa3\x54\x3e\x7e\x46\x9d\xed\x03\x5f\xff\xa0\xa2\x49\x53\x62\x18\x99\x00\x14\xda\x95\x1d\xae\x27\x16\xf1\x12\x7f\x6b\x9c\xe2\x5c\xc5\x88\x43\x38\x35\x20\xbc\x72\xb9\x50\x6a\x84\x95\xb2\xbe\x24\xb9\xc9\x97\xa3\x2c\x93\x11\xcf\xa0\x7c\x78\xfb\xe1\x9d\x43\x94\x7e\xb9\x92\x4c\x78\x1e\xd0\xa6\x92\x02\xb5\x1f\x53\xd6\xfe\x73\x83\xc6\xc9\x8f\xcd\xd4\x33\x63\x37\x27\x03\x00\x64\x97\xe4\x93\x99\xf8\x9e\x84\xb9\xf3\x8e\xe2\x67\x3d\xf0\x7e\x5d\x7b\x2f\x01\xdb\x8f\x67\x35\xb5\x24\x03\xb9\x04\xc4\x09\x81\xe8\xf6\xd7\x96\x91\x7d\xbe\x23\xc9\xf9\xbb\xc0\x86\x14\x4d\xdc\x3a\xb5\xeb\x18\x56\x31\xe1\xea\x10\xd2\xd1\xc7\xef\x6a\x7a\x56\xb3\xdb\x74\x3f\x03\xd7\x48\x44\x96\x7a\x73\x4f\xcf\x53\x31\x75\xfc\x22\xb3\xbb\x2f\x52\xd4\xb9\x68\x37\xf0\xb4\xf3\xfe\xcb\xb2\x24\x07\x1c\x6b\xa1\x18\xfa\x47\xb5\xc9\x2d\xed\xe2\x4f\x50\x0f\xda\xff\x34\x4b\xdb\xdd\x06\xdc\x26\x05\x27\x0c\xb4\xec\xf5\x02\x47\x86\x5c\x9f\xac\xe2\xfa\x30\xd9\x77\xe7\x68\x4a\xe6\xb8\x3b\xaa\x4c\xe3\x82\xfa\x43\x07\xe0\x50\xdb\xc4\x21\x30\xea\xd9\x3a\x30\xfd\x29\x16\xa9\xd5\x38\x4b\x89\xb3\xa8\xb8\xa6\xcb\x6a\x2d\x7e\x20\x5f\xda\x67\xe6\x5e\x5a\x09\xfd\xc5\x1d\xb6\xcd\x59\x30\x3c\x25\x77\xf4\x25\xb8\x02\xf1\x70\x17\x8b\x01\x4c\x5e\xf4\x30\x0a\xc5\xf0\xc6\x3b\xa5\x3a\x10\x77\x38\x7e\xe0\x80\xca\x16\xb0\x1d\x07\x55\xa1\x69\x5a\x71\xbf\x06\x96\xf5\x91\xdd\xad\xb0\x39\x33\xe7\x34\x75\x2f\x14\x98\xa4\x64\xc7\x00\xc3\xcc\xf2\x33\x9a\x99\x75\x14\x8a\x40\x70\x17\x0e\xe9\xcf\x4f\xea\xee\xbf\x2c\x0a\x78\xb1\xe2\xc4\xd7\x95\xf1\x61\x43\x91\x33\xcb\xf4\xda\x70\x66\x27\xcf\x68\x9d\xce\x27\xb1\xd9\x79\x8a\xef\x92\x51\x62\xc4\x8c\xbe\xe9\x79\x0d\x0d\xe2\x61\xec\x88\x72\xad\x6b\x8b\xd6\x51\x18\x16\xa5\x36\xe0\x3b\xf2\x2b\x17\x0e\x97\x38\x26\x96\x32\xfc\xff\x67\xed\xa8\x96\x50\xa5\x82\x2a\x58\xe4\x8f\xfc\x7d\xe7\x65\x4c\x58\x15\x10\xa3\x2a\x1c\xd9\xa6\x4f\x93\xc1\x65\x72\xc7\x24\x01\x6a\xc8\xbc\x6f\x0d\xd7\xea\x30\x1b\x75\xc1\x70\xed\xdb\x2f\xe8\x06\xea\xcc\x24\x86\x98\x09\xe5\x3f\x24\xdf\x62\x07\x77\x45\xcf\xea\x6f\x3a\x07\x8a\x8a\x3c\xca\x86\x80\xb9\xcf\x2e\x6f\xd7\x54\x80\x90\x8d\xba\x3d\x82\x26\x24\x89\x7c\xe6\x01\x89\x12\xe3\x2d\xbc\x1e\xe3\x3b\xe7\x6b\x4b\x00\xe4\xd4\x90\x0b\x4f\x28\xdc\xf3\x7c\xca\x6b\x19\x68\x9c\xb9\x7f\x79\x5e\xa7\xca\x72\x89\x8f\xa4\xc1\xcf\x1d\x7f\x58\x88\x21\xba\x02\xf6\x1e\xdd\x8b\x7e\x1b\xaf\x6b\x34\xcd\xf2\x5d\xd1\xd5\xc2\xa6\x45\x8e\xaf\x8f\x2f\xd7\x8c\x77\x6b\xb5\x58\x9c\x40\x56\x43\x37\x5f\x20\x47\x9d\x98\x21\x80\x45\x7e\x6b\xae\x1c\x8c\x62\x49\xdb\x08\x8b\x6b\x60\x15\x55\xac\x50\x97\xe3\x24\xe3\x52\x7c\xbf\x06\xc8\xf4\xa8\x83\x2d\xda\x10\x03\x9d\xef\xac\x80\xb2\x7f\x11\x75\x68\xec\x48\xd7\x9b\xeb\x19\xa9\xc8\x07\x53\x57\x08\x77\xc0\x38\x3f\x7f\xef\x9c\xa4\xa2\x32\x83\xc4\x88\x7d\x67\x4b\x1a\xec\x3c\x75\x92\x78\x09\x2e\x38\xa4\x58\x60\x07\x36\x37\x42\x14\x3b\xe1\x37\x25\x69\x85\x9b\xb7\xf7\x66\x97\x9d\x4b\xe7\x83\x9a\x8d\x84\x55\xff\x25\x07\x35\x38\x28\x41\x6e\x67\x22\xa6\xc0\xaf\xfa\xd6\xc5\x03\x45\xcd\xc0\x9f\x17\x94\x6c\x5d\x8a\xd6\x60\xa2\xeb\x5e\x28\x86\x9d\xaf\x2b\x18\x94\x2a\xae\xf9\xc4\xe0\x8d\x58\x75\xa2\x36\x99\x0e\x3c\xee\xed\x17\x2f\xc0\x32\xde\xd8\x74\x6b\x63\x21\xc6\x37\xf6\x9a\xfb\xd7\x22\x33\xc6\x9d\x44\xf5\x8d\xb0\x67\xff\x17\xa6\xcc\xa9\x1b\xd8\xf5\xbb\x0b\x7e\x83\xbf\xcf\x9f\x3a\x23\x1c\x18\x6c\x5a\xa2\x66\x4a\x09\xe4\xf0\x06\x59\xa5\xd4\x5b\x6b\x0a\x57\x2e\xbb\x6d\xd9\xdf\x34\xfa\xda\xf9\x35\x0b\x08\x8d\x9f\x3d\x54\x19\x4d\x33\x87\xba\xc4\xe0\x90\x80\xcf\x8e\x1c\xa4\x04\x4f\xe1\x76\x54\xb7\x54\xc2\x87\xe0\x3e\x02\x05\xef\x47\x7b\x95\xd5\x31\xf6\xb0\x53\x12\xca\x24\xfb\xce\x8b\x12\x0c\xaf\x0a\x08\x93\xbb\x81\xb1\x6f\x29\xb8\x35\x5c\xe3\x55\x49\xf6\x64\x8b\xf2\x54\x6c\x44\xa2\x23\x56\x8e\xfe\xc3\xd8\xeb\x54\x07\x52\x56\x07\x6d\xcc\xef\xad\x4b\xc2\x85\x49\xca\x85\x62\xd8\xf2\x98\xbe\x32\x8c\x7a\x44\x41\x8e\x1b\xa2\xc8\xf0\xf9\x94\x01\x72\x3f\xbc\x72\x89\xbe\x6b\xea\x8a\xc7\x9a\xd9\xbf\xd3\x6c\xb8\xe4\x4a\x27\xc9\x9d\x0f\xbe\xa0\x88\x66\xbb\x31\x8e\xe8\x7b\x7b\x74\xba\x71\xcd\xa6\x0e\x8a\xc5\xe0\x46\xb7\x09\xbd\x2b\x86\xf9\xa1\x23\x73\xb5\x7c\x41\x0c\x8e\x90\x11\xe3\x97\x3b\x47\x28\xb8\xe5\xb4\xd6\x48\x76\xda\x19\x6d\x88\xc5\x57\x0f\xc0\x34\xc8\xde\x71\x4a\xf7\x82\x34\x71\x8d\x83\x33\x7c\x51\x84\x64\x0f\xcc\x95\x77\xdc\x25\x15\xcc\x04\xab\x2f\xbb\x4f\x91\x8c\x99\x34\x69\x7a\x61\xd2\x24\x6e\x05\x7b\xbb\x32\x83\x2f\x31\x8e\xb5\x01\x18\xf0\x81\x91\xca\x5e\x4e\x94\xf7\x85\x32\x02\xd2\x4f\x7e\xc9\x88\x24\x3c\xd9\x29\x0c\xe5\x93\xab\x9b\x98\x18\xb1\x2a\xf1\x3e\x4d\xcb\xa5\x82\x4a\xd8\xb6\x89\xaa\xe6\x9c\xdd\xbd\x40\x0e\xb8\x89\x53\xa3\x9e\x47\x4a\xc4\x26\x80\xcf\xcb\x7d\xaf\xb5\x69\xbe\xe6\xd3\x58\xb2\xcd\x2a\x25\xf1\xaa\x8a\x13\xa4\xdb\x15\x4c\xa5\x45\x3b\x84\x01\x64\xc1\xd4\x04\xc6\xc0\xee\x56\x3a\xe7\xdc\x32\x50\xab\x67\x31\x36\x4b\xc8\xa8\x8a\x60\xf7\xe0\x56\xc5\xe5\xa5\x56\x63\xb4\xc6\x08\xac\xe7\x3f\x38\x9a\x5c\x45\x14\x9c\xc5\x98\x66\x67\x67\x5a\x23\xae\xc2\x90\x81\x75\x5a\x52\xe6\x16\xcd\xaf\xce\xa6\x3e\x67\x53\x84\xfb\x37\x6b\xab\x15\x8a\x4c\x18\x36\x5c\xbf\x5d\xa7\xea\x50\xe6\xc7\x33\x90\xcc\x50\x6d\x2b\xe6\xd5\xa2\x93\xc2\x11\xc7\x2b\x9e\xd4\x5e\x13\x4a\x13\xeb\xf3\x31\xdb\x65\x21\x8b\x0d\x8b\x16\x8a\xa1\x33\x46\xbb\xf3\x5c\xb1\x09\xee\x7c\x66\xfb\x6c\xa5\x57\xe0\xf8\x1a\x70\x86\x59\xd4\xa1\xc5\x58\xae\x38\xcd\x4d\x07\xe0\x44\xb4\xbc\x34\x48\x34\x59\x51\xc5\xd5\xa0\x9c\x38\x97\xdd\x21\x78\x11\xe0\xcd\x5f\x28\x86\xad\xaf\x6b\x8a\xc7\xa4\x6a\x21\x62\xa7\xd4\x53\x43\x36\x52\x1e\x64\xc0\x8c\x82\xaf\x47\xee\x2e\xc5\x70\x42\x18\xb9\xc7\xc9\x6c\xdd\x69\x65\xbe\xd1\x40\xdd\xea\xc0\x2d\x7f\xdf\xa3\x02\x0d\x85\xa0\x48\x79\xad\x89\xc5\x68\xdb\x1c\x2c\xc0\xf3\xc9\xdf\xce\x4d\x0b\x5c\x50\xd7\x06\xdc\x5b\xd3\x06\x3f\xfb\xcf\xd2\x1f\x05\x5a\x9b\xec\x49\x0d\x4f\x11\xbd\x6b\xc4\xad\x88\x78\x31\x43\x11\xbb\x33\x30\x2b\x71\x88\x5e\x6f\x66\xd5\x56\xa8\xb0\x1b\x88\x31\xe4\x02\x54\xcd\xd0\xc0\x85\x65\xe2\x56\x30\xab\x31\x12\x6b\xc8\x66\xbe\xdf\xa3\x68\x75\xd9\xc8\xf3\x0a\xc8\x88\x61\x0a\x1f\xf3\xe1\xc6\x2f\xa5\x71\xe6\xae\x9d\xd5\x4b\xa4\x18\x5d\x29\x28\xe4\xdf\x1d\x25\xaf\x6d\x72\xc7\xd4\x18\x05\xdb\x58\xa8\xa3\xae\x78\xf7\x9f\x50\xac\x73\xff\x7d\x03\x64\x11\x9e\xc0\x3d\x9f\x38\xb0\xe0\xca\xad\xdf\x07\x3d\xd9\x52\xe2\x4b\x19\xa1\xb0\x45\x43\x85\x96\x6c\xe4\x56\x61\xcc\xfd\x8d\x37\x14\xa1\x16\xa8\xd2\xa4\xa6\x47\xf4\x17\x6f\x7b\xbd\xbf\x08\x86\x42\x8b\xf0\xe0\x1b\x9a\xd9\x21\xc6\x55\x19\xff\x5b\x14\xed\xbc\x52\x74\xf7\x60\x06\xfa\xf2\xcc\x2b\x55\x20\x80\x41\x3c\x6c\x2b\xee\x24\xb9\x8b\x2f\x18\xa9\xbd\x1f\x26\x4a\x15\x2d\xde\xc2\x98\x86\x56\xab\xe9\x3a\x71\xbd\xb9\xc5\xa3\x25\xcf\x1f\x8c\x6f\x9b\x07\x36\x99\xe9\xfb\x2f\x57\xbe\x2a\x65\x26\x49\x90\x59\x99\x6f\xb6\xea\x0f\xca\xb3\x48\x2d\xb1\x46\xef\xcd\xfd\xaa\x7e\xb9\xd2\xcf\x23\x22\xe0\x7c\xb7\x2f\xba\x2d\xfc\xcd\x32\xf9\x82\xc4\xb2\x78\xe2\xf9\x7f\x92\x29\xa8\x1c\x1b\x60\xaa\x51\x81\xd3\x3e\x56\x5e\x0a\x2d\x79\x98\x01\x81\x85\xdf\xaa\x15\xdb\xd2\x0f\xab\xda\x5a\x69\x2d\xb5\x02\x18\x2c\xaf\xad\x33\x0c\x64\xdb\x90\xcd\x73\x4f\x1d\x1d\xaa\x35\x9c\x9c\x24\x1e\x1e\xd6\x9a\x33\xaf\x61\xe2\xc4\xbd\x3e\x8a\xf0\x85\xdd\x0a\x58\x1c\xbb\xb8\x27\xc0\x1c\x58\x9a\xbd\xf1\x40\x2c\x4f\xce\xdd\x82\x8b\xe1\x91\x15\x02\x0a\x84\xeb\xd8\xa6\x35\x81\xbd\xcc\x0f\xe9\xaf\xe9\xe9\x50\x1f\xf9\x54\xdc\xb7\x1f\x8c\x1f\xd5\x94\x28\x2a\x70\xdf\x63\x1f\x8c\xc7\xdf\x93\x47\xe6\xa3\x3c\x9d\x83\x69\xc8\xd3\x02\x92\xc6\x7c\x8b\x53\xe3\xa2\x7f\x3b\xc7\xd7\xc4\x42\x63\xab\x1f\x17\x7b\xc9\x21\xcc\x58\xa7\x87\x2a\x49\xab\x8e\x99\x4f\xc0\xf5\xaf\xf3\x58\xca\x23\xb2\x12\xbd\x54\x60\x5e\x92\xff\xfc\x62\x6d\x8f\x8c\xcb\xbe\x00\x25\x5f\x7c\x67\x9a\x17\x5b\x0a\x18\x46\x41\xb3\xf4\x4e\xfe\xef\x2f\x80\x90\x52\x8e\x5e\xc9\x3a\x30\xa9\x3e\xf5\xfa\x15\x49\xa6\xd7\x57\xe6\xe1\xf0\x97\xf5\x05\x8c\x61\x47\xe5\x0a\x48\x8a\x9f\xd4\x4a\x19\xc6\xa2\x3f\x0a\x60\xf8\x7f\x51\xac\x18\xa1\x8b\x91\xcc\xc2\x21\xe5\x2b\x5d\x4d\x1c\xc5\x50\xa0\xa4\xf9\x9a\x26\xfe\x12\x45\xb0\x3a\xb7\xe8\xe4\x2d\x69\xc7\x19\xd5\x9d\xa0\x1c\x70\x71\xd0\xb0\x3a\x76\x98\xb8\x6d\x9e\x2f\x6f\x7b\x74\x9d\x7f\xd9\x9d\xbe\x73\x2e\x6e\x88\xad\x7f\xe6\x89\xed\xd7\xe8\x05\x97\x70\x90\x17\x7b\x5e\x1e\xfb\xe7\x9e\x53\x44\xce\x62\x14\x4e\x94\x7d\x64\x7c\xf8\x44\x97\x94\x18\xa4\x0c\x74\xcd\x53\x77\xf2\x7c\x49\x29\xc5\x3d\xd5\xdc\x3a\xfb\xc5\x27\xe4\xf7\xe9\x24\xbe\x8f\x59\x77\x54\x68\x6c\x55\xc5\x29\x91\x01\xc4\xe1\x1c\xde\x7b\xa9\x52\x14\x17\x8a\x61\x66\x9a\xbe\x3f\xf3\xfc\x78\x44\xfb\xd9\xf9\xf2\x43\xa7\x74\xa8\x10\xaa\xdc\x17\xbb\x64\x39\xdf\x40\xc2\xca\xe4\xc2\xb3\x4a\x5f\x83\x54\x01\x86\x59\x5b\x53\x1b\x59\x21\xe6\x78\x78\xa2\x2a\xd8\xe0\x10\xe4\xba\xe0\xc4\x94\xfd\xe3\x5a\x39\x1a\x05\x7b\xb8\xa6\xdd\x67\xe6\x57\x8a\x34\x3f\xaf\x6b\x78\x78\x99\xb2\x64\x98\x16\x42\x18\x86\x7e\xe0\xc7\xb6\x4c\x05\x35\x44\x9a\x5d\x1c\x16\xac\xd1\x74\x24\x5d\x9f\x28\x82\xfe\x71\xe7\xb7\x17\x56\xc5\x85\xc5\x4d\xb4\xd9\xec\x76\x0d\x91\x0d\xb6\x3a\x5a\x4b\xb8\x4b\xf3\x90\x2d\xd3\xae\xb4\xae\x69\x6e\xc6\x5e\x6d\xb9\x68\x05\xba\x71\x67\x6e\xf6\x00\x1d\xe0\xee\x81\x7b\x2a\x7f\x12\x37\x58\x0a\x4a\x87\xaa\xeb\xb4\xc9\x8b\x04\xab\xb0\x41\x5c\xd3\xe6\xe9\x2b\xfc\xee\xbe\x61\x5a\x00\x88\x29\x42\xf3\xd7\xa6\xa3\x2e\x65\x7e\x54\x58\x86\x35\x05\x32\x68\x13\xdf\xb7\x71\xa1\xea\xd2\x06\x0f\x89\x9b\x60\x31\x56\xb8\xe7\xd6\x3b\x9a\x46\xa4\x63\x15\x26\x5d\x54\x6c\xc5\x22\x10\xa1\xfb\xb2\x56\x8a\x06\xc4\x8f\xf1\xa4\xef\x2d\xbb\x5a\xc5\xfb\xcc\x5d\x32\xa1\xa8\x07\x9a\xce\xf1\x9a\x6c\x15\xc6\x6e\x01\x55\x60\xfa\xca\x3b\x92\x07\x94\xd1\x5a\x3c\x6c\x2f\x86\x37\x1e\x92\xf2\x76\x35\xab\x50\x0c\x5f\x19\x33\x48\x59\xe4\x23\x30\x12\xce\x7c\x71\x9e\x36\x53\x75\xa8\x8d\x5d\xaf\xca\x7b\x93\x28\x47\x2e\xda\xdb\xe1\x59\xa8\x86\x93\x8b\x9c\x59\x0e\x5c\x9e\x0e\x47\xf3\x9f\x8f\x46\xfe\xe8\xb6\xae\x8e\x92\x89\xdb\xcc\x29\xb3\xf8\xf5\x27\x6b\x80\x0b\x5f\x53\x94\x1f\x81\xf5\x9f\xed\x5c\x28\xdb\xcc\x52\xc0\xb8\x99\x5e\xb8\x7e\x47\x72\xb1\xdd\x94\x15\x8a\x21\xbd\x13\x86\xa2\x53\x0a\x77\x53\x37\xea\xa8\xc7\x8d\xd6\x93\x11\xb7\x1a\x0a\x98\x5c\x30\x66\x4b\xfd\x07\xab\x54\x82\x1a\x61\x1c\x63\x5a\x6c\x57\xe6\x33\x62\x9d\x11\x7b\x67\x3d\x37\x48\x19\xae\xf9\xc2\xe1\xb9\xf3\x24\x1c\x24\x33\xf0\x49\x39\x00\x8f\xf1\xfc\xe7\x9e\x95\xe7\xc2\xa5\x60\x95\x12\x9f\xbc\xff\x3a\xa5\xc3\xf2\x0d\x31\x7f\x3b\xd3\x4f\x42\x48\x0b\x1c\x42\xfa\x97\xb9\xc9\x57\xed\x98\xca\x4b\xc6\x9b\x9f\x96\x69\xdc\x0e\x4c\x62\x30\xb1\xcb\x7e\xf2\xf8\xe5\x0a\xfd\xdb\x46\x56\x01\x9b\x26\x68\x17\x64\x97\x1f\x94\xbf\xd4\x1d\x85\x17\x54\x25\xfc\x97\xee\x7d\x42\x91\x55\x45\x0d\x7e\xda\xa2\x5f\xf8\xc7\xb7\x35\x23\x6e\x1b\x77\x69\x0a\x72\x6b\x5f\xd6\xb1\xd8\xb8\x5b\x24\xd2\x7b\x17\x6a\xf2\x6c\x25\x61\xd8\xc2\x4b\xc7\x3b\x4e\x08\xb3\x4d\xee\x9e\x16\xbe\xf3\x9a\x72\xc3\xa9\xc3\xbd\x97\x84\xaa\xd9\x6f\x0f\x24\x3b\xe0\x4a\xb3\xed\x68\xf6\x5f\x0e\x36\x91\x88\xec\x00\xc4\x2e\xc4\x85\x9c\xdd\x0c\xe5\xf3\x12\x2b\xca\x66\xf2\xe5\x0f\xf7\x0c\x52\xe0\x50\x36\x86\xfd\xf0\x7f\x0d\xd4\xf6\x69\xb1\xb5\xfb\x84\xc1\x42\xe0\x9a\xd4\x29\x10\xa7\xf3\x9f\xd0\x78\x7c\x35\x4e\x5f\x32\x84\xff\x7a\xf6\x1d\xc5\x50\x71\x72\x9b\x60\xbd\x85\xff\x7e\x4e\x0c\x4a\xbb\xb0\x11\xc4\xf3\xc3\x8b\x84\x5e\x4e\x14\xf8\x5d\x24\xf4\xc6\xb3\xbf\x6e\x93\x7f\xc0\xa1\xae\xc9\x9b\xab\xf0\xff\x3c\x9f\xdc\x90\x71\xc8\x69\xca\x04\xb3\x47\x0c\x53\x4f\x9d\xf2\xb0\xd8\xe3\x12\x53\xcb\x11\xf2\x5e\xaa\x92\x98\xf0\xba\xf4\x8a\x33\xc4\xd8\x33\x9c\x35\x5f\x1b\xb7\x53\x22\x74\xf8\x33\xef\x5a\x83\xa4\x14\x62\xa2\x5f\xd9\x38\x2a\xac\x23\xea\x98\xa1\x8a\xb0\x1e\x3f\x2e\x24\x7e\x29\xab\x40\x42\x9e\xd9\x95\x4c\xe3\xcb\x3c\x7f\xcb\xc6\xfe\xe6\x67\x35\x6a\x9f\xd7\x97\xd4\x68\xf6\xa4\xad\x4b\xb7\x92\x86\x90\x09\x97\x93\xfd\xc2\xec\x18\xff\x1d\x1f\xa7\xec\xdc\x57\xe5\x49\xc3\x5d\x3e\x43\x35\xde\xfe\xf2\x0d\x62\x9c\x0d\x02\x3e\xf7\xe6\x61\xe6\x63\xfb\xb4\x6e\x0a\x19\xd5\xb8\xf2\xbc\xe8\xa5\xb4\xc6\xc5\x75\x02\x7a\x70\xc9\x34\x5d\x52\x86\xe3\xfa\x13\xad\xb8\xcc\x5b\x6b\x35\x22\x4a\x97\x61\x07\x66\xc2\xce\xfc\xf2\x51\x31\x21\x43\x84\x17\xdd\x99\x60\xbe\x34\xff\x76\x4a\x85\x62\x38\x6a\xac\x86\xf2\xa3\xd4\x14\x21\x2d\xbf\xf9\x21\xdd\xde\x90\x0b\x33\x89\x6b\xeb\x1c\x3d\x58\x65\x7e\x82\x03\x6d\xb8\x7c\xcf\x55\xe9\x93\xd1\x04\xb5\x78\xf7\x98\x5c\xdc\x12\xb5\x02\x0d\x6f\xda\xd4\x24\xa9\xd5\x1d\x57\x07\x83\xba\x74\x91\x7d\x62\x08\x5a\x6f\xf6\xa7\x8a\x58\x5d\x19\xdb\x60\x79\x96\x9b\xbc\xa0\x2f\xa5\xf3\x34\x0d\xe5\x45\x6d\x7f\x1a\xf8\xc4\x26\x5e\xa2\xec\xf8\xdb\xb1\x29\x45\x4e\xc7\x81\xef\xf8\x83\x13\x72\xf0\x62\x51\xc3\x8a\x1a\xe9\xe8\x13\x2f\x5b\x24\x5e\x3d\xd2\x25\xd9\x3b\xd9\xc3\xfb\x54\x36\x50\x49\xa9\x30\x0f\x9c\x00\x0a\xde\xe4\x02\x9f\x09\x0e\xdd\xa0\xc5\x00\xe4\x09\x35\x1f\x3e\x35\x99\x93\xca\x01\xcc\xb7\x80\xbf\xcb\x2f\x74\xd1\x78\xc5\x3b\x34\xaa\xaf\xbb\x31\x37\x98\xcd\x4c\x6b\x97\x89\x18\x05\x85\x62\xf8\xe2\x51\xcd\x96\x07\x11\xcf\xc6\xdd\x62\x62\x12\xbf\xdf\x68\xa9\x62\xe6\x8b\x20\x95\x65\xb7\x8c\xff\x88\xf6\xab\x76\xd4\xb0\xb8\x04\xb9\x31\x4d\x90\x5f\xe8\x67\x57\x8c\xc6\x2e\xd7\xfb\xb4\x89\xe7\x17\xe6\x21\xdb\xd3\x75\xe4\xc2\x0f\x9f\x1e\xa6\x8c\x8d\x84\xfe\x3f\x7f\xd0\xdf\xef\x18\xa6\xd0\x01\x7d\x5a\xc1\xbe\x10\xd9\x19\x14\x0e\x55\xe6\x5d\x65\x0e\x4a\xe2\xc1\x8d\xcd\x19\x91\x4c\x76\x9a\x82\xd8\xc4\xad\x5a\xf2\x00\x5c\x86\xa0\x80\xd4\xb6\xfe\xbf\x6b\x53\x91\xdc\xff\xfa\xb0\x3c\xd5\x75\x62\x58\x4d\x80\x82\xec\xbd\xed\x1a\x2c\xc7\xa2\x0d\x03\x79\x62\x60\x93\xbb\x72\x93\xc4\x97\x31\x85\x49\xb0\xb2\xff\x95\x49\xff\xe3\xd6\xf4\xad\x73\x78\xed\xa3\xba\xfa\x92\xe7\xd7\xa8\x0b\xc3\x3c\x9e\xe3\xcf\x8d\x57\xe7\x6f\x1e\x89\xab\x8b\xcc\x6d\xed\x23\x94\x9e\xd5\xe1\x3a\x3f\xb1\xd5\x75\xd6\xba\x58\xf9\x2d\xec\x42\x25\x13\x5d\xe7\x57\x5f\xd6\x03\x8e\x6d\x63\x54\x09\x70\xcc\xa3\x9d\xb4\x38\x2d\xcc\xc9\x15\x18\xf3\xd3\xc0\x56\x14\xbe\x86\x97\x96\x32\x5f\x28\xaf\x23\x3a\xb1\x6a\xa2\xc8\x1c\x13\xe1\xdc\xb3\xa8\x21\x40\x40\xc7\x46\xc0\x4b\x31\xa9\x83\x83\x35\xab\x7b\xd3\x77\xa0\x8a\xea\x81\x83\x52\xfe\x4d\x8b\x4a\xc3\x54\x41\x92\xc0\x46\xa0\x73\xd4\x9b\x45\xc0\x25\x2a\xdc\xdd\x27\x44\x79\x8d\x2c\x70\xb8\xd0\x9f\xf2\x66\xbe\xa5\x28\x75\x78\xc4\xad\xd8\x18\xf8\xca\xfc\xaf\xfe\xd6\x97\x3a\x16\xd4\x88\xd2\xe8\xd3\xda\x22\x3b\xb0\x6d\x2e\x28\x19\x23\xc8\x9e\x39\xad\x0d\x53\x6a\x8c\xcf\x19\x27\xc6\xd4\xe6\x75\xad\x23\x95\x56\x36\x99\xa3\x25\xc7\xe4\xc6\x9a\xbc\xeb\x16\xf5\x41\x9f\xf9\xfb\x5b\x20\xc9\xdc\x8a\x6c\x52\x8e\x5f\xbe\x37\x47\x4a\x21\x53\x8e\x24\xcd\x1e\xd7\xb6\xe8\xf0\xbc\xe3\x9d\x74\xf6\x9e\x23\x1a\x5e\xc8\xea\xf6\x88\x82\x04\xcd\x5c\x04\x5a\x07\x85\x45\xd8\xf5\x51\x85\x5f\x95\x7c\xba\xff\xad\xd8\xa0\x21\xd1\xda\x87\xde\x96\xe4\x1a\xa8\xcb\xd9\xc5\x93\x47\x27\xd6\x47\x3c\x17\x16\x35\x69\xf7\x12\x0d\x6c\x5c\x47\x2c\x0e\xbc\x4f\xe4\xe5\xb7\x98\xc2\xcf\xc1\xcf\x56\xc3\x1c\xe1\x6e\xe4\x5b\xb8\xa1\xe2\x58\x7f\xb8\x5f\x5d\xa5\x60\x54\x35\x45\xc3\xf4\xf8\x63\x72\x95\x02\x53\x66\x55\x5d\xbe\x32\x4b\x05\xd0\x97\x29\x83\xa2\xad\xb2\x42\xa3\x68\x46\xc5\x87\x0d\xfc\xb3\x70\x4a\x3d\x7d\xaf\xe2\x11\x6a\x02\xbf\xb8\x76\x64\x5c\x8b\x72\x6d\x92\x9b\xe7\xeb\x40\xca\x12\x16\xac\x89\xb0\xeb\xf1\x41\x0a\x0b\xc3\xb6\x39\x0d\x3b\xb7\xfa\xfc\x40\x71\x08\x3c\x83\xc4\xc0\xac\x07\x97\xc0\xdd\x33\x18\xae\xf1\x25\xd1\xb3\x2f\x36\x6d\xab\x6c\x02\x6a\xb0\xbd\xd9\x3f\xee\x96\x8e\x7f\x41\x74\x15\xcb\x43\x81\xda\x23\x75\x50\xf3\xba\x70\xe7\x65\x4a\x46\x82\x2b\x5d\x7c\xb5\x56\x7d\x33\x8c\x0b\x25\x6c\x32\x1a\x73\x05\xf3\x95\x31\xda\xbc\x9c\xda\x26\x81\x56\x30\xfa\x42\x73\xd7\x34\x69\xeb\x1a\x7c\x3a\x7e\xc3\x4b\x32\x8b\x46\x45\x4f\x83\x5b\x6f\xf4\x66\x56\xf6\x00\x14\x6a\x0e\xb5\x49\x1d\x35\x61\x32\x73\x2f\x5c\x30\x40\x16\xbd\xad\x1d\x85\x62\xf8\x57\xc5\x3f\x98\xd1\x52\x00\xf8\xf9\x3f\xee\x49\x76\x3f\x84\xc5\xd5\xe6\x9f\xb4\x91\xbc\x29\x70\x3a\xb2\x86\x5d\x3f\x52\xe7\x2f\x82\x72\x29\xdc\xc5\xe7\x0e\x36\x9b\x8d\x13\xe6\x81\x05\xc8\xa8\xcd\xf0\x40\x1a\x34\xe0\x4a\x00\xa3\x8e\xa4\x17\xc5\x75\xea\xff\x5f\x8c\x74\xbf\x7f\x6e\x80\x92\xc4\x1b\x85\x62\xf8\xa1\x85\x4d\xd0\x64\x2f\xb0\xfd\x58\x18\xbd\xd8\x9b\xbb\xff\xb8\x06\x03\x49\x24\xd8\x73\x8b\xbb\x06\xab\x72\x11\x4e\x0d\xd6\x84\xab\xf7\xe9\x32\x76\xa6\x40\x18\x88\xfd\xc1\xfb\xc7\x65\x6f\xcc\xff\x9f\x62\xb8\x7d\xa7\x14\x95\xef\xe0\x5a\x70\x5d\xc7\x64\xd0\xf1\xa8\x8d\x1d\x30\xb0\x1d\x2b\x4a\x5b\xee\x57\x07\xb3\xbc\xdc\xde\x31\xfa\x3e\x8c\x61\x64\x0a\xd1\xbc\xdc\x86\x3d\x1a\x5c\x19\xb1\x0a\xb2\x13\x59\xdb\xf8\x45\xae\xce\x4e\x5f\x75\x89\xd1\x2a\xaf\xfc\xe3\xed\x60\xe3\x45\xdd\x78\x3e\xb1\xfc\x15\x9b\xe6\x05\xdb\xa4\x0f\x38\xe6\x35\xd9\x3b\xda\x32\xcc\x23\x7e\x00\x63\x64\x41\x42\x1c\x39\x57\x05\x85\x99\x60\xfd\x93\xfb\xc4\x50\x39\x5b\xe4\xb8\x86\x26\x06\x51\xe6\x33\x2f\xcb\xf2\x9f\x06\xbe\xcb\x71\xd4\x90\xc3\x6e\x39\xa4\x60\xff\x28\xe3\x2a\xe7\xd1\x1d\x9d\xf5\x88\x72\x47\x7d\x5c\xab\xf1\x6e\xfa\xb6\x65\xfa\x96\xdb\xe0\x2d\x95\x78\x56\x57\x6a\x34\x8f\xc0\xf5\x19\x91\x21\xe7\x1f\x4e\x36\xe9\x1f\x95\x71\x6c\x5b\x97\x7d\x77\xbc\xa6\xf0\x56\xa7\xd5\x04\x3b\xfb\xc7\x69\xfd\x45\xcb\x6a\x72\x6c\xe2\x29\x4d\x75\x45\x60\xfe\xc5\xdd\xff\x60\xb7\x4e\x20\x8f\x2e\xa4\x14\x70\x4d\x51\xae\x3e\x97\x9b\x3d\x53\x96\xa8\x55\x52\xc2\x4a\xcb\x98\x1d\xb1\x4f\x15\x8a\x29\xf1\x31\xd8\xf2\xa3\x72\x9d\xad\xfe\xe3\xcc\x67\xce\x26\x3d\x82\x67\xa9\x71\x3b\x9c\x36\xa6\xc9\xac\xd1\x41\xdd\xd2\xc4\xf0\x97\xe3\x34\x91\xe1\x3a\xa9\xc7\x2a\x44\x5c\x78\x7b\x8b\x62\xf4\x49\x2d\xe4\x38\x10\x63\x07\xef\xd3\x1c\x85\x3d\x07\x11\x5b\x3b\xa1\x7b\x14\xf5\x85\x3a\xc1\x8d\x38\xe9\x1e\x7e\x51\x73\x36\x60\x24\x6a\xfb\x14\x33\xe2\xdc\xf5\xbe\x64\xd0\x37\x54\x61\x83\x2f\xf7\x93\x61\x13\x08\xb2\xa0\xc6\x9c\x1d\xf5\xcc\x20\x71\x80\x5c\xbe\x8a\x80\xca\xed\xf8\x36\xf1\xcc\x90\x6d\xf3\x91\xcb\x3d\x1b\x65\x33\xe2\x72\x6f\x9d\x28\xea\x86\x2f\x8e\x97\x83\xe4\x0a\x23\xb8\x1c\x9d\xcb\x5d\x23\x12\x16\x82\x81\xcd\x00\x52\x5e\xe6\x27\xa3\x15\x1a\xae\x9c\x69\x86\xef\xec\x8f\x01\x3f\x65\x50\xf9\x28\x14\xc3\x0f\xf6\x34\x09\x91\x3b\x42\x35\xae\xd8\x9b\xbd\x6b\xb0\x6e\xa9\xee\x63\xd7\x13\x2f\x67\xe6\x87\xeb\xd3\x71\xcc\x0c\xfc\x6e\x01\xec\xbf\x61\x1e\xc0\xab\xee\xc4\x76\x5d\x1d\xc2\x67\x7e\x71\x58\x81\xdd\x2a\x59\x7a\x91\x16\x12\xa9\x1d\x8f\x4a\x3e\x62\x6a\xa1\xc8\xb0\xb0\x83\x63\x1a\xc0\x35\x2b\x84\x12\x00\x72\x54\xa5\xfc\xdc\x77\x06\x2a\xce\xb6\x82\x42\x98\xfb\x8d\xa5\x6e\x34\xa4\xc2\xdb\xf8\x64\x5a\x91\xf0\x88\x7b\x33\x4b\x59\x7a\xda\x33\x75\xca\x54\x51\xfb\x9f\xd4\xac\xde\xb9\x89\x13\x8b\x59\xfb\x77\x03\x49\xba\x70\xaf\x85\x9c\x1a\x6d\xea\x5f\x72\x8f\xaf\x50\x90\x31\x5d\x60\x1f\xd2\x9b\xeb\x3f\x58\xaa\xd3\xf3\x8d\x00\x3f\x64\x1f\x19\x90\xce\xe2\x2e\xf1\x2c\x62\xa6\xaa\xe5\xdc\xea\x35\x4d\x74\xa1\xc9\x09\x5d\xe8\xd2\xbc\x7c\x49\x1b\x16\xe1\x2f\xf5\x37\xce\xcb\x29\x50\x67\x60\x12\x83\xc4\xf8\xc1\x43\xa7\x74\x6f\x45\xce\x04\x81\xb0\xf5\xc3\xd1\x52\x10\x33\x05\xd6\x4b\x23\xf5\xe6\xa5\xc3\xb3\x4b\xdd\x1a\xa3\x65\x12\x6f\x05\xf2\x77\xed\xd5\xf8\x54\x81\x61\x89\xd0\x9d\xff\xf0\xc8\x74\x2f\x6b\x58\x88\xd9\x82\x66\x28\x63\xc9\xb6\xe1\x12\x6d\x47\x5d\x03\xc3\x65\x42\x0d\x92\xfb\xd1\xe9\xff\x5f\x03\x66\x39\x11\x2a\x14\xc3\x8b\x34\x1b\xf6\x6b\x3d\x2b\x41\x7a\x1a\xa3\xa1\x68\xbe\xc5\x61\x4d\x76\x99\x99\x6b\xde\x4f\x63\x19\x91\x6f\x47\x7d\xa7\xd1\x67\xc5\xd0\xf2\xbc\x92\x9f\x08\x74\x49\xe1\x3e\x5f\x06\x8d\x4a\x80\x19\x23\xb6\x8d\x0a\xc5\x30\xe8\x0f\xfd\xd4\xad\xd1\x17\x05\x4f\xbf\x69\xaf\xc3\x8f\x3a\x91\x51\xc5\x1c\x26\x77\xf6\x38\x94\xd2\xb7\xb8\x3e\x75\x89\xea\x10\x9b\xef\x18\xdc\x88\x07\x37\x9c\x84\x08\x46\x5d\x1f\x6f\xd1\xc0\x45\x18\xb9\x22\xbf\xfc\xab\xe6\xe6\x63\x10\xcf\xc5\x8c\x7a\x02\x42\x9d\x28\x66\x3e\xae\x33\x38\xea\x14\x34\x14\xc3\x27\x37\xca\x40\x25\xc5\xb5\x86\x4a\x3f\xfa\x0a\x57\x5a\x1c\xfa\x92\xaa\x18\x6b\x61\x33\x00\xee\xdf\xd7\xf2\xc2\xca\xfd\xb6\xc5\xb7\xf1\x68\x76\xe5\xca\x74\x2c\xae\x30\xe4\x79\x54\xd5\xc0\xcf\x0e\x18\xa5\x20\xc6\xa1\x88\xcc\x9e\xcb\xca\xc2\x6c\x2a\x9f\xc7\xe4\x27\x2e\x56\x55\xa7\x5d\x13\xd7\x41\x1c\xba\xa5\x4d\x0e\x03\x02\x3e\x84\x10\xd6\xbd\xdd\x71\x2c\xa8\x1c\xd2\x57\xb0\x0e\x32\x91\x78\x31\x6e\x39\xac\x40\x23\x6d\x54\xea\xe6\x26\x4b\xe1\x2d\x4b\x2e\x11\x79\x05\xb4\xe7\x1e\xd1\xc0\x6c\xe5\xc0\x97\x2c\x8e\xf0\xe7\x1b\x20\x92\x63\x9b\xcf\x02\xa0\xbe\xc8\xbc\x76\x48\xd9\x1e\x12\x1b\xd8\x9e\x5f\x7e\x24\xb9\x97\x3d\x5c\xdf\x68\x46\x38\x4c\xab\xf5\x09\xe8\xd6\xd7\x2c\xad\xc0\xaf\x21\xe6\x61\x4e\x83\x05\xb7\xcc\x93\xa9\xed\x97\x1d\xf8\x31\xad\x75\xc4\x39\x65\x43\xc9\xba\x13\x90\x43\x6f\xb6\xe7\x29\x7d\xb0\x4d\x4b\xa8\x94\x98\x88\xfd\xef\xd8\x4b\x45\x60\x71\x09\xe7\xcd\x66\xa9\xa2\xc4\x79\x8d\x12\xb7\xbe\x31\x4b\x9f\xce\x9b\xa4\x4e\xcc\x00\xd9\x31\xf3\xe0\xc1\x83\x72\xc6\xe2\xa8\x90\xa2\xda\x6c\x19\xdc\x11\x83\x9d\x7e\xa6\xf7\xa5\xc1\x2a\x3b\xa5\x14\x40\x89\x66\xf5\x17\xfa\xb4\xd8\xf7\x6d\xe1\x3e\xf9\x8e\x26\x66\x54\x06\x4d\x02\x23\x06\x01\x67\xb6\xad\x4f\x6f\xfa\x2b\x28\xd9\x2b\xa6\x5f\xe6\xbf\x1e\x81\x1d\xe7\xbc\xa8\x82\x73\x54\xef\xcf\xcc\xdf\x9c\xd3\x48\xf4\x6d\x7e\xcc\x0d\x9d\xb7\x5c\xc7\xdf\x71\x93\x69\xd8\x95\x1f\x1e\x2f\x4d\x51\x14\xab\xd8\xde\xcc\xa2\xd5\xf2\x94\x57\x69\x99\x70\x9d\xb7\x0d\xb2\x66\x75\x71\xc3\xab\xa1\x9a\xe0\xf2\xe4\x6e\x7b\x21\x2d\x86\xc2\x02\xd7\x2c\x07\x80\xf7\xd1\x73\xd2\x63\x13\xe5\xcb\xd8\xd1\x56\x70\x70\x54\xfa\x46\xfd\xd9\x36\xf9\x91\x88\xab\x5a\x87\x9f\xfd\x60\x98\x92\x43\x5d\x9a\x48\xae\xe6\x5e\x50\xa0\xb1\x35\xc4\x38\xa9\x20\xbc\xb2\x45\xab\x57\x51\x25\x26\x0c\x84\x37\x9c\xd3\xfa\x03\x64\x54\x01\xc2\x26\x12\xed\xd9\xa7\x46\x6b\x8f\xa1\xce\x74\xbc\xda\xdf\x3f\x09\x05\xc0\x22\x54\x57\x4c\xf2\xc2\x8f\x9c\x19\xad\x0c\x50\x2b\x96\x1f\x75\xca\xfa\xe4\x9a\xee\x97\xe7\xbf\x81\x89\x5b\x41\x8c\x93\xf1\x7b\xb3\x2f\x9d\x4d\x88\x50\xa8\xac\xc7\xf0\x70\x8e\x06\xa7\x35\x18\x6d\xc4\x79\x32\x77\x46\x2b\x58\xb1\xcb\x51\x32\xa2\x48\x0f\xcf\x8e\x51\xe7\x7b\x2e\xee\x46\x0c\x54\xfe\x36\x6a\x44\x63\xce\x21\x89\x3b\xf5\x9d\x43\x15\xe2\xa7\x87\x59\x0c\xa8\xbd\x67\xae\x76\x25\x94\xb1\xa0\xe6\x03\xa8\xf1\xcf\x79\x1d\xe6\x5a\xc7\x9e\x4f\x2a\x7c\xc0\x01\xc4\x82\xf5\xcf\x0f\x53\x11\xfd\x3e\x88\xf3\x45\xa5\xc7\x9e\xb7\x55\x4b\x78\x3e\x2f\xde\x08\x3a\xa5\x85\x79\x94\x31\x4e\x11\x52\x5e\xc9\xdb\x76\x5d\xa9\xee\x9e\x6f\xbd\x75\xc2\x1c\x35\xb5\xea\x24\x36\xcf\x0f\x5c\xc5\xd8\x2a\xfc\x8d\xa0\xb9\x18\xb4\x50\x23\x36\x67\x88\xe5\x67\x7c\xa0\xef\xff\x13\x3a\x89\x98\xe2\xfe\x5a\xe1\xbd\x97\x14\x18\x59\xf6\x16\x5b\x75\x28\x35\x02\xc1\x49\x5a\xa8\x21\x54\x2a\xd8\x17\x0b\xfc\xcc\x23\x8f\xc6\xf8\x73\x83\x56\x5c\xd2\x03\xb3\xeb\xc2\x6a\x99\x44\xa6\xb7\x73\xea\x89\x3d\x4a\x9f\x0d\x32\x5e\x95\x25\xf2\x01\xa3\xc7\xc8\x55\x9a\x8d\x1a\x05\xec\x72\xaf\x51\x71\x09\x37\x68\x92\x72\x35\xe8\x75\x20\x93\xfc\xe5\xd9\x26\xb5\x7a\x86\x91\x97\xfc\xed\xdc\x6f\x1f\xef\x27\x82\x19\xf0\x3d\x36\x83\xa6\xd3\xdd\xd4\xa7\xcc\xc2\xa8\xd9\xa2\x65\xb1\xc2\x18\xae\x30\xe4\x9a\x35\xc4\xb0\xeb\x7b\x1c\x06\x7d\xe5\x86\xd8\x99\x07\xd0\x38\x5c\x34\x7d\xe2\x06\x9d\xea\x19\x95\x57\x46\xc2\x47\xcc\x1e\x58\x2e\x63\x42\x8f\xc0\x50\x66\x77\x29\xae\xab\x88\x19\x48\xf8\xe9\xe7\x51\x0d\x8a\x15\x41\x8e\x29\x14\xc3\xb9\x5a\xc3\x61\x12\x64\xd3\x4a\x00\xd8\x93\xdc\x7d\xeb\x35\xc5\x3d\x8c\xab\xad\x42\xb5\x61\xc7\x08\x8d\x88\x46\xed\x72\x4a\x90\xe5\x95\xb3\xf2\x2d\xa9\xd8\xb4\x81\xe3\x21\xf8\xf1\x83\x97\x88\xa3\xc0\xe1\x00\x2b\x36\x40\x8e\x82\x0c\x5c\x28\x86\x3f\x5c\xaf\x9c\x23\xdc\x53\x63\xd8\xe4\x3a\xe0\xb9\xbf\x3c\x1c\x2b\x87\x04\x2e\x38\x09\x3d\x79\x50\x03\x39\xd1\x46\xdc\x8a\x5c\x39\x2a\xbd\xf3\x03\xf9\xfa\xf0\xd7\x4f\xc8\xbc\xb4\x2a\x40\xbe\xcf\x97\x2f\xf9\xc6\xb2\xf4\xb7\x89\x0d\xa3\xe2\xc6\x36\xf3\x9b\x27\xd5\x15\x90\x6a\xea\x72\x74\x98\x76\x07\x45\xff\x9f\x79\x67\xb6\xae\xfa\x89\xab\x62\xce\x9f\x3d\x78\x20\x69\x15\x7d\x86\x0c\x40\x93\xbc\xf9\xb0\x6e\xd2\x61\xdb\x89\x2b\x46\xb7\x22\x91\x69\x51\x9b\xa3\x80\x33\x0f\xec\xd7\x62\x76\x60\xdb\x0a\xf2\x3c\xdc\x77\x20\xf6\xc1\xb6\x6d\x94\x60\x0b\x57\x3d\x27\xef\x41\x15\x27\x84\x96\xd6\x99\x69\xd4\xcc\x03\x42\x40\xf1\xdd\x1b\xe4\x27\x47\xe9\x3d\xba\x8d\xf5\x79\xf1\x20\x15\xd9\x24\x3e\x5e\x15\x65\xe4\xaf\xb4\x23\xfc\x33\xa7\xbf\x79\x85\x32\xb3\x71\x1c\xe2\xf3\x57\x50\x5c\xd1\xa6\x37\x95\xfd\x79\xe0\x59\x3e\x5a\xc5\x25\xd9\x66\x69\x37\xc4\xc6\xac\x1a\x4f\x43\xfc\x33\x92\x27\x46\x83\xd4\x52\x24\xf7\x81\xb2\x3a\x76\x4a\x88\x55\x68\x3c\x28\x28\x6c\x91\xff\xc9\xc6\x75\x55\x3c\xed\xc0\xee\x74\xdf\xe0\x50\xe6\x13\x07\xb3\x6b\xbd\x09\x4d\x98\xa9\xcc\xa6\xe1\x4a\xa8\x46\xca\xca\x69\xd9\x0d\x3a\xa6\xdc\x35\x51\xb7\xf0\x6c\x19\xf2\x86\x5e\xa8\x73\xab\x4b\x1e\x3e\x76\x6d\x1e\xae\x40\xdf\xcc\x06\xa5\x66\x62\xad\x34\xb4\x69\x36\x54\x26\x9e\xa1\x92\xf9\xc6\x0f\xbd\x4c\x54\xd2\x8c\x09\xc5\x8f\xec\x2f\x0e\xc9\x1e\x31\x76\xf5\x6a\x5e\xad\xfd\x61\x8b\x14\x9b\xe9\xc4\xe5\x66\x27\xae\x53\xf5\xa6\xdd\x30\x15\x04\xc7\xcc\x47\xcf\xa7\xbc\xc1\xbc\x1a\x81\xb1\x74\x78\x9f\x62\x72\x6d\x22\x1f\xdb\xc2\x72\xe5\x2b\xcf\xca\x18\xde\x3e\xa9\x10\x5d\xe6\x1f\x9e\x97\x3f\x9a\x34\x83\x2f\x55\x6e\x7c\x4b\x9f\xf8\x88\xc5\x43\x82\x26\xcd\xfd\x54\x23\xaf\x48\xbb\xab\xa8\xd6\xfe\xd5\x33\xd2\xd7\x15\xa9\xfe\x40\x9b\x57\x2b\x84\x1e\x4a\xb9\xd4\xdc\x5d\x9b\x14\x78\x57\x60\x18\xd8\xf3\xf8\x7f\xe8\xcd\x0d\xfc\x20\xfd\x30\xcb\x84\x25\x64\xf6\xec\xbe\x95\xd0\x84\xce\x43\x7e\x93\x91\x57\x7e\xf1\x23\x23\xf4\xc0\xed\x61\xd7\x17\x43\x94\x47\x15\xc5\x49\xb0\x21\xe1\x93\x0f\x53\x68\xb6\x58\xc4\x05\x6a\xc8\x17\x76\x40\xa8\x6c\x6b\x85\x74\xf7\x95\x43\xf0\x2f\x16\x15\xef\x58\xb8\xe4\x1e\xee\xda\x72\x58\x22\x23\x1b\x51\xa3\x73\x75\x09\x7e\x65\x72\xeb\xd4\x29\xfc\x57\x34\x19\x4b\xec\x19\x51\x43\xce\x83\x61\xfd\x11\x68\x55\xb1\xe7\x23\x4e\x2e\x4b\x1c\x0d\x7e\xb4\x23\xf1\x6d\xa3\x26\x90\xce\x7a\xb3\x13\x6c\x69\x50\x34\x89\xff\xb3\x35\x8b\x95\x18\x4f\xcd\x32\x82\x65\x72\x38\x5a\x36\x45\xa8\xc2\x83\xcb\xdc\x99\x3a\x5c\x00\x33\x5b\xb1\x27\xe5\x71\x69\x7c\x8b\xd2\x33\x70\x81\x2e\xf5\xad\xfe\xdd\x4a\x45\x57\x07\x31\xd2\x19\x20\x97\x6b\xed\x7e\xf0\x41\xb3\x23\x09\x4e\x4c\xda\x33\x57\x3e\xaa\x61\x30\xb0\xcb\xc4\x38\x2b\x7f\xe7\xf6\x4b\x45\x99\x2d\x40\x3f\xff\xb8\x8f\x97\xcd\xd1\xbf\x53\x81\x0c\x8a\xc7\x33\x62\x8c\x56\xa2\x1c\xcc\x9f\xd0\x77\x96\xc2\x2d\xbc\x95\x06\xcc\x4f\x2d\x40\xf1\xf3\xe9\xc4\xd0\xde\x36\xa1\xb3\x93\xdf\xb5\xe7\x66\x69\x5a\x1a\x98\x19\xd8\x14\x5a\x29\xbd\x99\xa5\xaf\xc3\x13\x2c\x09\x61\xe9\x1f\x2b\xf4\x55\x13\xf3\x01\x4a\xf4\x34\x4e\x1f\x51\xfb\xe7\xc0\x8e\xe1\xa9\xaf\x9d\x84\x26\x68\x41\x33\xae\xf9\x25\x39\x89\xe4\x0e\x5c\xf1\x4b\xf1\xc9\x67\xd3\xaf\x5b\x0f\xe9\x46\xdc\xb8\x55\x66\xf3\x8d\x8b\xb5\xd7\xcd\xf3\xb0\xe7\xc5\xb3\xee\x4c\xf5\x49\x6d\xaf\x57\xab\xd1\x18\x06\x10\x86\x73\xe1\x26\xdf\x83\x05\x5e\x2a\xf7\x93\x79\x4d\x7e\xa6\x18\x25\x4a\x3e\x5f\xd0\x24\x77\x5c\xdc\x88\xbd\x89\xc3\x23\x9a\xdc\xa6\x30\x0b\xe6\x34\xdc\x9c\xff\x86\xe6\x28\x80\x2b\xd4\x27\xc8\x8f\x61\x02\xb4\xff\x10\x65\x9f\x13\x70\xaf\xd6\xe8\xea\x77\x3c\x07\x69\x72\x81\x6a\x25\x96\x3d\xc7\xa4\xb4\x91\x17\x7d\x8f\xeb\x15\x21\x4c\xcf\x40\xcc\xc0\x7c\x94\x9c\xbb\x68\x76\xfa\x6c\x63\xd6\xed\x5b\x8c\xd6\x28\xc1\x3e\x01\xbf\xb6\xcc\xf9\x50\x06\x39\xc7\xe3\x72\xf9\xcf\x3c\x74\xa9\xa8\x01\x88\xd0\x1a\xc2\x4f\x0c\x97\x82\x0f\x76\x8a\xfa\x7c\xd3\x1b\x92\x39\x4b\xd4\xc1\xff\x57\x1f\x53\x62\x09\x66\x25\x6e\xda\x18\x7e\xa9\x4d\xa1\x38\xb8\x06\x61\x86\xc0\x3f\xfe\x7e\x97\xae\x03\xe8\xba\x98\x71\x05\xe8\x6e\x31\x48\xfe\xe2\x4b\xda\x10\xba\xdb\x90\x2e\xbf\xd9\xce\x63\x49\x2f\x16\x95\x02\x7a\xb2\x18\x36\x4b\xeb\xb7\x78\xd8\x23\x28\xc6\xa2\xed\xd9\xa1\x70\x27\x31\xc3\xae\x4b\x00\xa2\xf7\xb7\x33\x35\xd9\x21\xc2\xe5\xe1\xa1\x14\x6f\x3f\x29\x33\x59\xcc\x52\x6c\xd6\x10\xb8\xe6\x6d\xad\x9a\x07\x05\x4b\x48\xaf\x79\x6d\xb9\x5c\x27\x15\xca\x38\x31\x54\x80\xb9\xde\xe9\xaf\xec\xda\xdd\x6e\xe1\x1a\xf5\xb5\x65\xf2\xb9\xb5\xb5\x72\xeb\xd2\x0f\xca\xfa\x90\x3e\x70\x0d\x62\x0b\xd8\xef\x39\x4d\xbd\xc9\x67\xa8\x12\xab\x0b\xe4\xda\x36\x5e\x22\xc2\x17\xa8\x3d\x74\xcf\xd1\xd4\xae\x10\x2b\x30\xae\x3e\x08\xff\xfe\xa9\x03\x9a\x03\x20\x77\xdc\x83\x0f\x2a\x3f\x26\xab\x38\x93\x78\x51\xd0\x2b\x14\xc3\x93\x5b\x15\xa7\x15\x07\x04\x8f\xa2\xaf\xff\xc0\xfb\x8a\xe3\x28\x66\x88\xd8\x85\x62\xb8\x3e\xaf\x6d\x73\xdc\xee\x12\x35\xbb\x93\x1c\x7b\x9b\xa6\x30\x20\x2c\xab\x12\xc3\xb5\xd3\xe9\xb3\xe4\x11\x13\xa7\x71\x7d\x99\x2d\xa3\xae\xd2\xd3\x60\x42\x47\x87\x77\xb2\x6b\xa6\x80\x1c\x72\x00\x48\x94\x8e\xcf\x80\x23\x15\xd8\x1e\xd9\x94\x0a\xfd\xff\xdc\xc3\x1b\x53\x20\x67\xc1\x77\xf7\xb7\x5e\xa5\x45\x77\xe6\x20\xb7\x5b\x7a\x14\x7d\x6e\x93\x06\x8c\x0c\x62\x55\xb0\xcc\x47\x36\xca\x85\x1a\xee\xaa\x61\xd7\x24\xb1\xe6\x7b\x7e\x92\xa0\x40\x27\x34\x79\xfe\x69\x37\xbc\xac\x7f\x1f\x97\xa4\xe4\xb3\xb2\x47\xfa\x37\x79\xfb\x73\x91\xad\x9a\x95\x68\xc4\xe4\x7e\xf5\xe6\x60\xf1\xe6\x63\x87\xab\xcc\x03\x0c\xb9\xe3\x3a\x09\xcb\x68\x8d\xf2\x7d\xe6\xd3\x07\x34\x49\x21\xa7\x26\x1a\xa9\x38\xb9\xdd\xa3\x09\x47\x72\xc5\x35\x71\xa2\x1f\x30\x35\xcc\x2f\x23\x35\x91\x63\xbe\x75\x42\x6e\x22\x62\x79\xad\x79\x07\x2e\x57\x68\x51\xa6\x4a\x80\xcd\x2f\x38\x9a\x1e\x44\xd7\x2c\x62\x23\x13\xdb\x35\x0b\xbc\xba\x44\x06\x5f\x30\x5a\xd3\xcc\x9e\xd6\x3a\x7d\x72\xac\x4a\xd4\xff\x44\x3a\x21\x5a\x41\x85\xf7\x99\xe1\x8f\xf3\xd2\xb8\xd8\x8f\x7e\xb0\x60\x7c\xff\xa4\x70\x8c\xfe\xf7\xb9\x69\xc9\x3a\xa6\x91\x48\xcb\x8e\xda\x35\x4e\x6b\xaf\x3c\x3f\xa1\xd4\xa7\x03\xc3\x75\xd9\x81\xca\x94\x0c\x45\xbd\x63\xb8\x7f\xcc\x25\x71\x85\x03\xe4\xfd\x33\xe9\x9b\x35\x69\x46\xc7\x74\x31\x96\x21\xb1\xe2\x3d\x23\x5e\x15\xc3\x58\xb0\x47\x05\xcb\xa1\x28\x3e\xc2\x9c\xef\xe4\x4c\x65\x90\x5e\xff\xa8\x67\xd8\x1f\xf5\x38\xe3\x68\xfc\x58\xcd\x4a\x0b\x28\x37\x80\xc5\x8f\xee\xdd\xc4\x2d\x4a\xd7\x4e\x6d\x62\x10\x30\x9a\xcc\xdd\x7c\x44\xb2\xf4\x3a\xa9\xe5\x22\xdf\x52\x47\x9b\xd9\x96\xfb\xc5\x5a\x81\xab\x68\x54\x08\xe3\x9b\xcb\xfc\xa2\xed\x72\x31\xd3\x13\x54\x91\x2a\x74\x9f\x1f\xf6\x3a\x94\x2d\x4b\x09\xf6\x5d\xe4\x60\x0f\xc7\x0d\x52\xfb\x53\x0a\x4b\xcb\xf5\xe2\xb6\x3d\x7c\x4a\xb3\x86\x67\x7c\x87\x2e\xa0\xac\xed\xa7\x92\x5e\xac\xce\x3d\x4f\x64\xd5\x76\x81\x2f\xe4\x84\x6d\x6a\x0a\x68\x6f\x7e\xad\xa2\x4f\xe5\x20\x51\x5e\xe6\x9e\x7d\x43\x94\xbf\x55\x3e\xf9\x2a\xf6\xe6\x7e\xad\x88\x07\x00\xbc\x86\xeb\xec\x46\x7f\xa2\x7f\x5d\xc6\x65\x44\x79\x06\x79\x40\xcc\x96\xb9\x9a\x9b\x88\x19\x2b\x34\x51\x40\x81\x9c\xe0\x65\x46\xf5\x02\x2d\x52\xa3\xc4\xba\xa8\x37\x73\xc9\x11\x09\xb2\x32\x79\xb4\x7b\xee\x4d\x1d\x9d\x04\xb4\xdb\x04\xc9\x35\x77\x7e\x33\x46\x91\xe3\x7b\xc0\x1d\xe7\xa8\x25\xdb\xe8\xc9\x93\x27\xf3\x5c\x92\x9b\xb0\x4b\x97\x63\x73\x3d\xc1\x2c\xcf\xcd\xb8\xe1\x2a\x3d\x9d\xd5\x89\x6b\xc4\xd6\x8f\xc5\xde\x9c\xf1\x9a\xc2\x07\x20\x65\xf1\x0c\xc3\xab\xc7\x24\x29\xda\xec\x43\x1a\x70\xe7\xeb\xaa\xe0\x5a\xe0\x12\xb8\xdb\xf9\x29\x67\x06\x2a\x67\xda\xf6\x39\xdd\xf0\xdb\xd7\x49\x92\x43\x7b\x5b\xf4\xcf\x1e\x54\x5c\x41\x6d\x0c\x44\xcd\xfe\xdb\x14\xc8\x2e\x72\xa3\xbb\xcf\x0b\xab\xaf\x0f\x50\x44\x15\xb9\x73\x14\x9f\x3a\x59\xc7\xb5\x3b\x4f\x1b\x88\x89\x89\xec\x89\x2d\x02\xfc\x83\x71\xd5\x2b\x14\xc3\x0d\x0a\xdb\xaa\x16\x15\x55\xb1\xa0\x56\xee\x95\x33\x9a\xf7\x02\xe1\x2a\xf9\x46\x72\x7f\xb2\xcf\x74\x0e\x54\xb0\x6b\x1c\xb7\x16\xae\x53\x24\x35\x84\xbd\x06\xbc\xb9\xbf\x3d\xae\x19\x1e\x16\xda\xa1\x74\xfb\xcb\x3c\x5d\xbc\xc3\xa1\x0c\x7b\x8a\xfd\x47\xf6\x57\x1f\x28\xfb\xed\xaa\x20\x05\xdc\x3a\x6b\xb4\x32\xf2\x70\xcd\xc0\xf0\x9b\xe8\x60\xb9\xa5\x8f\x68\x5f\x02\xdb\x15\x86\x78\x1e\x15\x7f\xfb\xc8\x5b\x9a\xb3\x05\x32\xaa\xa0\x32\x9e\xed\x5e\x21\x6b\x3f\xc3\x42\xb8\xc4\x5f\x84\xec\xbb\x4b\x94\x48\x12\x94\x3a\xb1\x21\xac\x86\xdf\x38\xa7\x3e\x79\x29\xc0\xfb\x6f\xa5\x2b\x94\xce\xca\xb0\x31\x55\x19\x30\x43\x76\x0e\x53\xde\xd6\x0a\x01\x23\xb1\xe8\x83\xaa\xab\x21\x53\xdf\x13\x3d\x73\x0b\x25\xee\xe3\x73\x46\xa8\x90\xd1\x3a\xf4\xe5\xfc\x8c\xb5\x0a\x07\xad\x12\xd8\x16\x46\x1f\xfe\x7b\xcd\x80\xbf\x46\x6a\x98\xb3\xcc\x39\x16\xec\xa6\xb7\x55\xaf\x1b\x0a\x7c\xd3\x15\x96\xa0\xbc\x52\x87\xf4\x90\x44\x02\xbc\xf3\xb0\x22\xab\x6e\x17\x18\xe2\x86\x7a\xde\x46\xbd\x2a\x24\xae\x2f\xd0\x7c\x99\x4f\x6b\xf5\x09\x71\x1c\x52\x01\x35\x40\x51\xef\x8e\x79\x04\xda\xa9\x5b\x84\xed\x9b\x32\x4b\x58\xbc\x65\xb8\xfe\x82\xc6\x6f\xe6\xe1\x0d\x43\x54\x66\xb5\xe7\x13\x6e\x6c\x75\xb4\xa6\x85\x23\x1a\x30\x23\x66\x9d\xa3\xc3\x50\x71\xdc\x7b\xcb\x3d\xf3\xef\x58\x78\xfb\x92\xe2\xc2\xe8\x2f\xed\x19\xa0\x0e\xce\x78\xa5\x09\x9b\x2d\x7e\xa7\xf7\xb1\x66\x09\x32\x2e\xae\x70\x70\xb9\x6e\xae\x06\xd2\x97\x71\xdd\xf0\x6f\xc7\x06\xab\xaf\x95\x8f\xe1\x1a\x26\xee\x94\x9f\xd6\x3e\x23\xb6\x0f\x80\xfd\x53\x6f\xf6\x05\xad\x46\x47\x25\xca\x6d\x56\xf8\xaf\x5e\xbf\x5b\x11\xea\xe5\x56\x8f\x5c\xf5\x5a\x03\x6e\x97\x48\xa5\x02\xcd\x1c\x7f\x47\xde\x1d\xab\x2f\x45\x7c\x9c\xb6\x16\xca\x5a\xb3\x47\x28\x87\xd3\x4e\xd9\x38\xde\x59\x12\x92\xf8\x01\xb7\x96\x0f\xdf\x7c\x3a\x75\xc0\x49\xac\xd1\xf5\xb7\x2b\xd3\x6c\xea\x78\x63\x93\xbd\x4b\xd9\xff\x38\x70\x4e\x61\xef\x7d\x20\xbd\xeb\xea\x0c\x4c\xc2\x17\x86\x2a\xc4\xf1\x6f\xb4\xc3\xd3\x40\x3e\x2f\x7f\x65\xf2\x9b\xb4\xe7\x8a\x78\x9a\x30\x77\x89\xde\x8e\x7f\x58\x53\x0e\xf1\x29\xb7\xe0\xe6\xbe\xfb\xf1\xfd\x39\xa1\x41\x5c\x39\x11\x26\x26\x6d\xfc\xc3\x89\x74\x05\x54\xc6\x51\x65\x6f\xf7\xb1\x52\xcc\x7e\xab\x9e\xa4\xb3\x49\x1d\x33\xa2\x73\xf5\xda\x46\xed\xb5\xb3\x91\xb2\x56\x38\xfd\x52\x1a\xfb\xe1\xf9\xd4\xc5\x85\xa8\xab\x6d\x24\x42\x9a\xbd\xd9\x59\x63\x14\x52\x1e\x17\x82\xe4\x34\xce\x07\x1f\x49\xef\x3a\x91\x1d\xdd\x1a\xc4\xe1\xda\xfa\x4a\x64\xe6\xdb\x1a\xe0\x0c\x7b\x06\x23\xa5\x44\xc5\xec\xc3\x7b\x20\xa9\x3b\x34\xfa\x6e\x5c\x8c\xe4\xcb\x73\x93\xd9\x5e\xa5\x14\x28\x85\xd0\xb7\xf7\xca\xb2\x22\xa8\x45\xc1\x9d\xb7\x6b\x6f\x8c\xd4\xaa\x60\x8c\x7c\xc1\x3e\xe0\x07\x6c\xf3\xc5\x3a\x28\x1f\x30\x80\xde\x84\x06\x1f\xbd\xe7\x6f\xb7\x21\xcc\xdd\x52\xc7\xa9\xa7\x9b\x59\xab\x8e\xf1\x10\x03\xf0\x88\xf5\x7e\x93\x9c\x8d\xd8\xe7\x24\x72\x0c\x8d\x7d\x82\x6b\x8a\x18\x2d\xdc\x4b\x54\x75\xb5\xec\xb7\x35\x4e\x52\x8d\x60\x03\x3b\x58\x2a\xb2\x7f\x73\x4d\xfa\x8e\xd9\xc4\x2b\x51\x57\x8a\x8a\x5d\xbd\x42\x6b\xa4\x51\xb7\x85\xa1\x08\x09\xaf\x9c\xa7\xa3\x61\x59\x4d\x88\x9f\x0a\x7c\xd7\xff\x8c\x51\xb1\x95\xa0\xf1\xcb\x49\x40\xc7\x13\xde\x7f\xd4\x98\x73\x6e\x58\x77\xfb\x90\x74\x6a\xf6\x80\x5c\xff\xad\x1b\x92\x59\x45\x05\x2b\x2f\x4c\xfe\x33\x9a\x2c\x24\xd7\x44\x16\x82\x8e\x78\x60\xfa\x3c\x56\x02\xd7\x4d\x74\x87\x47\xee\x4a\xc9\xf7\x53\x16\x3b\xd5\xe7\xce\x8d\x55\x54\x5d\xea\x7c\xf8\x58\x9b\x95\x86\x0b\x94\x91\x8f\xac\xbe\x98\x69\x9f\x59\x93\xbe\xd5\xd5\x98\x97\x96\x28\xdd\xb1\x81\x71\xe2\xa9\xd5\x04\x47\x2e\xfb\xf1\x71\x29\x6d\x21\x5c\x26\xe0\xa4\x9c\xfd\xcb\xa1\xcb\x95\x21\x85\xb0\x57\x10\x15\xef\x87\x77\xe8\xfc\x6e\xa7\x06\x82\xd7\xdb\x76\x7c\xa4\xa9\x8d\xc1\xcc\xd5\x65\x74\xf2\x95\x65\xb2\x3b\x8b\xdd\x3c\x85\x6e\xc5\xb7\x85\xe4\x23\xb6\x89\xa3\xa8\x67\x9c\x9d\xa9\xf9\xe5\xe1\x7a\x77\xea\xeb\xfd\x68\x84\x2c\x50\x1c\x6c\x12\x83\xb8\x4d\x83\xec\xdc\xeb\x5b\xc4\x0a\x49\xd9\xe7\xf7\x66\x9f\x7a\x6c\xb4\x56\x57\x53\xe6\x03\xbf\x2b\x21\x95\xe5\xae\x6c\xd7\x82\x57\x94\x5b\x85\x3e\xf9\xb7\x2f\x50\x2a\x26\xcc\xc1\x96\xe1\xcf\x5e\x90\xa5\x9e\x34\xa7\x28\x14\xc3\xa5\xa7\x92\x22\xb4\x75\xea\x24\x5e\xf9\xae\xd5\xa2\x17\x94\x85\xf0\xb7\x57\xac\x1d\xdd\x54\xe2\x35\x3d\xfc\x5d\x5d\x3a\xe0\xa5\xc2\xb0\x49\xb0\x2b\x08\xdc\xe1\x0f\x5e\x1b\xa6\x96\x6f\x89\x60\x6e\xf8\x0b\x2b\xbd\x59\x9c\xcc\x51\x96\xe1\xc3\xaf\x27\x61\x89\xb0\x14\xec\x6b\xa5\x26\xd2\x6e\x25\x4b\xbd\x7f\x1d\xd3\x3f\x41\x85\xf3\xd0\x49\xcb\x9a\x80\x2e\x62\xd4\xb0\xa0\xe4\xe7\xcc\xf6\x63\x4d\x70\x76\xc9\x58\xe4\x49\xe1\x2d\x71\x66\x17\xab\x1b\xf8\x81\xfb\xaf\x56\xd2\x5c\x17\xe9\x43\x7d\x38\xf7\x9d\x69\x03\x95\xef\x6b\xf3\xdd\xec\xef\xe7\xa7\x8f\x10\xe5\xb6\x78\x94\x25\x7a\xd4\x53\x66\x8e\x50\xe0\xb1\x7e\xda\x4d\xed\xe5\x8b\x9a\x84\xc9\x4c\x22\x72\xbb\xf0\xab\xfe\x52\xbb\x7c\x7d\x19\xf1\xf9\xe6\xf6\xde\x81\x9a\x23\x22\xb6\x6b\x31\xa3\x2c\xdf\x62\x0f\x8a\xeb\x5a\x8f\x78\x62\x75\x99\xbb\xfc\x8d\x51\x5a\x26\x4e\x36\x0b\xc9\x00\xfb\x98\x6e\xec\x1d\x10\x2f\x71\x5c\x98\x78\x46\xbe\xbb\x0c\x11\x37\x6a\x80\x50\x37\xf4\x19\x6b\x4a\x0a\x13\x93\x24\xb6\xda\x37\x4e\xd4\xdb\x47\xc6\x11\x0c\x3c\x8c\x7e\x4a\x71\x13\xa4\xd1\x13\xb2\x90\x19\x0b\xf1\xff\xc7\xc6\x26\x93\xaa\x32\xe6\x7a\xf3\x00\x14\x59\x79\xf4\x1a\x79\x4f\x63\x14\x51\xd3\x2c\xff\x35\x3d\x4d\xf8\x86\xa5\x68\x4d\xe7\x7e\x76\x28\xdd\xce\x54\x30\x2c\x9f\x32\xb7\xbc\xd1\xd2\xe8\x03\xd6\x80\x05\x99\xea\x88\xb6\x2f\xb2\x49\x09\x33\xbf\x1b\xaa\xf1\x41\xf3\x46\xa8\x6f\x6d\x99\x3b\xb3\x8a\x97\xf4\x87\x1d\x0a\x35\xb5\x46\xab\xd8\x83\x3a\x55\xe6\xcb\x37\x1e\x69\xd1\x02\x92\xaf\x08\xbc\xe6\x9e\x5a\x2a\x6b\xe6\x06\xe1\xba\x1d\x51\x37\xbb\x50\x11\xe7\xf5\xa3\xda\x2d\x6a\x74\x8b\xbd\xd9\xe1\xbb\x35\x09\x10\x64\x57\x3d\xc0\xbd\xe5\xee\x9b\x29\x86\x77\x06\x75\xa9\x23\x50\xbd\x99\xb7\x35\x5b\x39\x90\xfb\x4a\xb2\xf2\x3f\x2a\xe3\x7d\xa7\xdb\x62\x75\x28\x20\xb2\xff\xe3\x4a\xec\xcd\xb5\x33\x3a\x78\x85\x93\x95\xca\xcc\x7d\x0c\xa2\x7f\xd9\xa6\x51\xd3\x0d\x5f\xe8\x01\x4d\x1b\x93\x7e\x2a\xed\x6d\xc2\x15\xe5\xc7\x3a\x0b\x85\x33\xd8\x5a\x0b\xc5\x70\x51\x87\xf4\x99\x51\x3d\xfb\x32\x27\x47\x41\x69\x84\xbb\x7c\x2c\x7a\xe2\xcc\xf7\x1e\x97\x22\x33\x0e\x75\x71\x77\xc1\x46\x1c\x44\x09\x43\x9c\x11\x6b\x9b\x98\x4d\x88\x61\x10\xaf\xc9\x55\x0e\xc8\xdf\x75\xa9\x0b\xb1\xc5\x15\x6b\xfc\x62\xf8\x27\x17\x46\x46\xc5\x2a\xea\x41\x55\xf5\x42\xf6\x2f\xd7\x07\x15\x18\x3b\xc4\xc5\x6e\xd2\xda\xfc\xf7\x46\x0d\x87\x8c\x03\x9f\x09\xb9\x19\xfe\xd9\x3f\x51\x74\x16\x6d\x54\xe2\x78\x8f\xbc\xb9\x50\x7b\x5e\x51\x8d\x25\x37\x11\xc7\xce\x40\x2f\x69\x52\x07\x11\xae\xd2\x94\x39\x74\x91\x36\xd0\xe6\xda\xdc\x66\x8c\x87\xcc\x1e\x59\xa0\xa4\x68\x5c\x43\xcc\x97\xe6\xea\xdf\x2f\x25\x6c\x7d\xd7\xb2\x9b\x9e\xe9\x96\x16\x59\xec\xa1\x3a\x66\xd0\x52\x67\xb3\x21\xd4\x86\x45\xc6\x88\xaa\x7b\x79\x68\x5d\xfa\x4e\xd7\xa9\x1d\x38\xf1\x1e\x6a\xc7\x16\xc0\xe3\xdf\x0d\xae\x01\xb2\xd5\xce\x9c\xd6\xd1\xf5\x0c\x23\x07\x6e\x52\x78\xda\x4f\x0d\xfc\x8d\x80\x1b\x3b\x7d\x57\x5b\x26\x1a\xd8\xf6\x91\x9c\x1e\x0c\x7b\x7a\x8c\x76\xe6\x6d\xdc\xed\x20\x4d\xf0\x33\x3f\xa7\x53\x3e\xfb\x12\x8b\xbe\x9f\x93\x92\xf1\xfc\xe7\x17\xd2\x39\xaf\x1d\xb6\x71\xa7\xd7\x09\xdd\x5b\x0b\x39\x35\x54\xe1\xf0\xa3\x7c\x55\xb3\xbd\xa9\xd8\xc0\xb4\xe6\xef\x20\xeb\x94\x59\x55\x28\x40\x80\x5a\x49\x76\xf4\xc3\xba\x8e\xb2\x8f\x5d\x31\xae\x7e\x7a\xa5\x36\x7e\x56\xb9\xd1\x7e\x0c\xee\xc8\xb6\x1c\xbf\x42\x69\xff\x84\x74\x29\x12\xb4\xc9\xdb\xb7\xcb\x89\xe1\x0c\x3e\x5e\xcf\xaf\xb2\x13\xaa\x41\x05\x25\x05\x74\x30\x4d\xb1\x96\x41\x25\x38\x5a\xf9\xee\xf3\x72\x39\x6d\x58\x88\xa4\x6f\x50\x66\x91\x92\x24\xf8\x0c\x9e\x97\x0a\x37\xee\x1a\x2c\xce\x5a\x1d\x71\xd4\x37\xa4\x8e\xeb\x97\xc9\xf0\x81\x9b\x4b\x93\x7f\x3d\xf8\xff\xf8\xb6\xd2\xee\xf8\xf3\x3b\x64\x99\x8d\x4a\xb2\x29\x7e\xbf\x73\x84\x2a\x95\xe2\x10\x85\x74\x72\x8f\x56\x37\x99\x54\xa8\x7e\xf1\xd4\x50\xd6\x10\x6f\x9e\x11\xd8\x35\x91\xee\x79\xea\xda\x7a\x50\x2b\x29\x03\xd7\xb0\x7c\xe2\x24\xed\xda\xc0\x59\xda\x3c\xd3\xc7\x48\x10\x1c\x73\x2d\x73\x14\xc8\x0c\x18\x77\x0b\xd6\xcd\x6f\xb5\x8c\x58\xb6\x51\xc5\xb3\x48\x2d\x1e\x2f\xf7\x3c\x91\xd4\x7f\x8c\x3f\xcb\x65\x73\x87\x2b\x0f\xda\xf3\x89\x9f\x28\xe3\xdd\x3f\x3e\x1d\x7b\x49\xec\x03\x3b\xfa\x05\x45\x58\x35\xea\x01\x39\xc4\x22\x3f\xac\x24\xea\x25\x51\x14\xf1\x23\x50\x7c\x4c\x10\xa7\xfd\xb8\x82\xcf\xfc\xb5\x0d\x1e\xa5\xc1\x55\xcf\x48\x8f\xf8\xf1\xd6\x73\x32\x2c\xd0\x12\xf6\x80\x1a\x9d\xfb\xd8\xea\xd4\x64\xae\x2c\xea\x94\x57\xb5\xd5\x2a\x23\xe5\x72\xb2\x0a\xcb\xdf\x33\x4f\xd2\xb2\xb8\x9c\xa3\x24\x72\x14\xb6\x0e\x11\x85\x99\x53\xb3\x89\x91\xa0\x7c\xf7\xe5\x35\x09\xce\xa8\x8c\x25\x86\x35\x41\x0d\x46\xf9\xcf\xcd\x85\x6b\x0f\xb8\x2b\xb3\x98\xa1\x87\x8f\x1f\xd7\xd6\x77\xc8\x27\x5e\x19\x86\x2f\x50\x48\x3f\xa5\x2c\x0d\x6d\xec\x79\x30\x4c\xd9\xd4\x4f\xc5\xe7\xa9\x66\xb8\xc7\x5b\xd4\xfa\x9d\x61\x83\x20\x3f\xb6\x55\x09\xff\x3c\x4f\xa1\xfb\x50\x1a\x4f\x49\xe7\xce\xd5\x18\x28\x5c\x3e\x85\x67\xbe\x8e\xf6\xd8\x89\x50\x0e\xd0\x2c\x80\x5c\x5e\xcb\xdd\xe6\xf2\x86\x90\x7a\x11\xb2\xd0\x85\x62\x78\xf5\x4e\xad\xcc\xb3\xb0\x51\x8d\xeb\xed\xfc\xfd\x53\x84\xed\x0f\x25\x60\x7e\x91\x7d\x7d\x39\x84\xe2\x6e\x1a\xf8\x16\x97\x00\x17\x5b\x97\x2f\x2e\x04\xe2\xd0\x2d\x84\x35\x50\x77\xd3\xe0\x36\xfb\xca\x93\x02\xb6\x88\x6d\x98\x6d\x66\xac\x8d\x72\x49\xdd\xc0\xa6\x8b\x3d\x13\xe9\xae\x0d\xbd\xd9\x61\xd3\x74\x9b\x51\x46\x6a\xb5\xe8\x10\x00\xeb\xe6\x9e\x87\xfa\x90\xb5\xe1\xb9\xfd\xfe\x0d\xf2\xfd\x09\x1c\x05\xa9\x90\x71\x3b\xb5\xd7\x12\x45\xef\x25\xaf\x06\x61\x57\xbc\xf6\x22\x6d\x8f\xe8\xfa\x98\x71\xe9\x14\x26\x80\x30\x65\x8d\xd3\x2a\x44\x6f\xea\x89\x32\xc1\x27\xd7\xa5\xbb\x6a\xb3\xd5\x68\xed\x6b\xd9\x96\xfd\xd9\x21\x5d\xb3\xdc\xad\x4a\x50\xed\x1b\x4f\x6b\x73\xc9\x56\xa7\x55\xc5\x00\xb5\xdc\x10\x1f\x55\x86\x2b\xb1\xce\x56\x6f\xfe\x01\x4b\x51\x96\xe2\x66\x27\x85\x62\x68\x08\x65\x4f\x27\xfa\x01\xbf\x48\xf4\x98\x62\xea\x63\x18\x81\x97\xf4\xc8\xe3\xe7\xc0\xbf\xad\x08\x96\x76\x6f\x66\xf3\x44\xed\x9e\x74\xd5\x30\x23\x1c\x01\x25\xd2\x74\x16\x04\xc6\x0a\x0b\x70\x37\xef\x4d\xe4\xe4\xf7\xc5\xdd\x50\x5f\x2e\xc1\x16\x43\x89\x09\xf8\xb7\x27\x26\x6b\xca\x9a\x9d\xc8\x91\xdf\x3d\x5b\x61\xa5\x12\x5b\x58\x63\x2f\x15\x3a\xa7\x73\xa9\x83\x05\x7e\x32\x73\x52\xd3\x98\xac\x53\x3f\x66\x3c\x65\xc6\x37\x79\x87\x95\xbb\xe5\x1a\x38\xfb\x85\x13\x7d\xe8\x94\x53\x9e\xa2\x0f\xa7\x23\x84\xc9\x82\x4a\xc1\x67\xa8\x5c\x26\x46\x55\x3c\xfe\xf0\xf0\x5b\xb2\xf4\xed\x46\xcc\x09\xec\x2a\x7f\xbf\x36\x4d\x53\x3d\x6f\x8d\xe8\x5a\x0b\xc5\xf0\xf9\x23\x32\x92\x4e\xea\x88\xfe\x03\x37\xeb\x18\xdb\x3f\x99\x31\x4e\x9d\xcc\x0f\xd5\x83\xcf\x5c\xa9\x97\x33\xc8\x37\xac\x64\x40\xf0\x89\xb1\x8a\xef\x06\x3f\xb3\xfc\xef\x5f\xf8\xe8\x80\x38\xd8\x95\x10\xd7\xc7\xcb\x7f\xa8\x3d\xfd\x60\x1d\x79\x34\x2e\xb1\x87\x28\xb8\xc9\x1a\x16\xd2\x6c\x43\x34\x5c\x2e\xb6\x3d\x40\x35\x67\x2e\x2a\x09\x5d\x98\xd6\xc9\xd1\xad\x7b\x73\x62\x52\xf7\x81\x0d\x7a\xba\xee\x7b\x4e\x93\x00\xe2\x7a\x15\xf2\x3c\xff\xe6\x0d\x6d\x3b\x43\x12\x5e\xf6\x75\x53\xb4\xf5\x3b\x66\x0e\x30\xdc\x73\xb7\xbd\x36\x46\x2f\xda\xec\xc0\x30\x48\xda\x0e\x3e\xf7\xc4\xc9\x26\xdc\x67\x92\xeb\xc4\x6e\xfa\xc2\xc1\x49\x77\x60\x05\x48\xdd\xf0\x1e\x92\xe8\x25\xfe\xb6\x04\x1b\xb4\x71\x33\x43\xae\x17\x8f\xda\x85\xce\xf6\xd1\x99\x9a\x1b\x27\x2a\x95\x88\xef\xc3\xf0\x2c\xae\x05\x2f\xd4\xa8\x42\x2e\x26\x15\xab\x44\x03\xe6\x4d\x04\x45\xef\xcc\xdb\x0f\x0d\x51\x95\x3e\x89\xc7\x2d\x7d\x7b\xb3\x1f\x1c\x56\xbd\xfc\x6c\x5b\xb8\x72\xfc\x6e\xe3\x50\xa9\x10\xd7\x50\xbe\xc3\xa4\xa1\x9a\x33\x20\x2a\x93\x6e\x24\x66\x0f\xb9\xde\x87\x5b\xd4\x52\x92\x32\x27\xb6\x42\xe3\xef\x5d\xc7\x51\x4d\xfd\x0e\x58\xdf\x8d\xda\xd8\x78\x5f\xb4\x72\x8f\xe6\x77\x45\x2a\x96\x20\xc3\x74\x29\xba\xe2\x8d\xb2\xdf\x5d\xf0\xeb\xd1\x17\xf8\xf9\xa9\xcb\x54\x04\x58\x74\x5b\x2f\x2c\x0d\x55\x46\x93\xb4\x13\x1b\x3e\xd0\x9a\x3e\x66\x0b\x27\x54\x57\xea\x05\xfd\xe7\x51\x00\x1d\xcc\xe1\x12\xd0\xbd\x59\xe7\x45\xd1\xc2\x30\x54\x81\x10\x96\xbd\x4d\xf3\x4a\x14\x2f\x58\xfc\xa5\xc7\xf6\x53\x7c\x07\x39\xff\x37\x5e\x89\x67\x9f\xda\xa7\xd8\x9d\x21\xc2\x30\x2f\xff\x80\x33\x9f\xbb\xf6\xa8\x1e\xdf\xb9\x76\x71\x32\xf1\xcf\x7d\xfc\x35\xad\x01\x0d\x62\xab\x9d\xa7\xdf\x6a\xb2\x35\x70\xe1\x4d\xfa\xd1\xd9\xc1\xe9\x9a\x18\x3e\xab\xdf\x28\x55\x23\xce\x55\x9c\xbb\xf2\x37\x9f\xd2\xd2\xb3\x8d\x88\x93\x78\xcd\x6c\xdc\xa9\x08\x90\x9b\x0e\x15\x54\x0e\xee\xcb\xf2\x9c\x06\x9f\x70\x7d\xe2\xb3\x20\xd9\x24\x65\xc6\x8e\xea\xf3\x71\x27\x10\xfe\xb0\xad\x27\xfd\xd1\x20\xf2\xc4\xa0\xf4\xcd\x5d\x30\x34\xbd\x4b\xf1\xdc\x6e\x53\xd8\xc7\xea\x11\xe1\xfa\xb7\x87\x88\xa2\xc3\x80\x8d\xb3\x18\x2f\x7c\x49\xd9\xc6\x57\x68\x49\x58\x0b\xf4\x66\xf7\xee\x91\x09\xc0\x41\xcc\xef\xe6\x47\x61\x49\x8f\xec\x55\x2c\xd0\xa1\x47\x9e\x15\xf3\xe4\x1e\x7a\x42\x9e\x2a\x9b\x78\x2e\x31\xac\xa0\x5a\x28\x86\xbf\xd8\x92\x74\x0e\xd8\x44\x4d\xdb\x94\x51\xdb\x46\x28\x75\x71\x6c\x24\x21\x8e\x7b\xbf\xe7\xe5\x99\x6e\x9f\x31\x71\xca\x94\xa9\x05\x5e\x5c\x6b\x05\x73\x19\x11\x21\x75\xbb\xfb\x11\xdd\xad\x8b\x55\xb0\xc0\xcb\x85\xb7\xef\x4f\x87\xb0\x0a\xb5\x4d\xbe\x25\x4a\xc3\xa1\x3e\xbd\x46\x57\x4b\x27\x2e\xf7\x2a\x89\x9f\xf9\xb2\x2e\x85\x3d\x68\x09\xb9\x80\x7b\x5f\x96\x07\x01\x37\xb0\x8a\x76\xc9\xce\x12\x68\x17\x5a\xf6\x61\xce\xc4\x73\xf5\xb0\x75\x49\x1c\x6c\x60\xc5\xfa\x79\x81\xe6\xe7\x86\xdd\x0a\xaa\x24\xe1\x3b\xf3\xc4\x82\xfe\x49\xb6\x2d\x45\x6f\xf3\x02\x0d\xb6\x8d\x19\xa9\x8b\xb6\x3d\xf3\xe3\x39\xc3\xa5\xca\x54\xca\xd1\x3b\x73\x99\xa9\x59\x3a\xd8\xc8\xc1\x82\x43\x98\xeb\x7a\x52\xa1\x7d\x23\xc6\x5b\xad\x39\x75\xcd\x67\x08\xbb\x18\xf9\x96\x40\x9f\x2c\x8f\xeb\x5a\x9f\x94\x01\xb8\x99\xf9\xf1\x89\x26\x28\xba\x97\xec\x5e\xfb\xcd\x93\x47\xac\x12\xb8\x5c\x36\x2a\xfc\xfc\x0b\x1a\x39\x84\x7a\x2e\x41\x51\x99\x29\x22\x64\xed\xf1\x24\xee\x32\x54\x56\xd0\x5e\x13\x94\xf7\x30\x70\x85\x7f\x0a\x2c\x15\x7e\xf9\xb6\x7c\xe5\x63\x6a\x45\xb1\x37\xf3\xc6\x82\xb4\x44\x0b\x38\x70\x7b\x4d\x5e\x1e\x21\x9a\x28\x27\x30\xe5\xc0\xe5\xd3\x56\x4f\xbc\x28\x17\xde\x0f\x11\xb3\x28\x6c\x7b\x39\xbe\xed\x9c\x2e\x01\x5e\xb6\x39\x9e\x21\x66\xb0\xcf\x72\xd3\xef\x3d\xf2\x50\x35\x45\xc9\xcf\x7a\x89\xd2\x83\x53\x63\xd8\xc2\x5c\x66\x20\x7b\xf2\xce\xe1\x4a\xb4\x74\x7d\xcb\x71\x69\x0d\x9c\xe6\xff\x73\x9f\xe2\x79\xec\xd4\x2c\xe4\x71\xf9\xcd\xec\x57\x56\x0c\x54\x5e\xca\x32\xaf\x4c\x32\x6f\xf7\x4b\xca\x07\xb3\xc9\x70\xac\x37\x33\xa8\x1f\xcf\xa8\x85\x5b\x41\x77\x06\x86\x11\xfa\xe8\xfd\xb2\xfd\xfd\xe3\x0f\x8b\xda\xc7\xf0\xa7\x6b\x07\x29\xa0\x7e\x07\xc3\x70\x6b\x8b\x2b\x21\xc0\x48\x21\xae\x64\xfd\x57\x93\xc2\xcb\xe5\x63\xfb\x4b\x96\xf4\x8d\x50\xe5\x95\x7c\xfe\xf6\x37\xf4\x40\xe8\x13\x23\x11\xac\x5a\xdc\x9e\xae\x39\xc4\x08\x15\x24\xab\x00\x57\x88\xf6\x68\x53\x36\xc6\x00\xf3\x23\x1a\xfd\x1b\xfd\x94\x01\x4b\x1d\x11\x1b\xf6\xed\xe1\x96\xb1\x32\x04\x25\xfa\x7a\xe1\xe0\x83\x32\x91\x57\xad\xe8\xaf\xf5\x10\x75\x36\xb5\x48\xd1\xc9\x8c\x11\xdd\xfc\x5a\x8f\x8f\x53\x04\x4e\xea\x72\xca\xf1\xe2\x7c\x0d\x90\xed\x31\xdc\xad\x2d\xef\x73\x1a\xeb\x97\x96\xfc\xd8\x9b\xbe\x37\xbb\xe1\xf4\x68\x95\x3f\x79\xef\xdc\x25\x13\xd2\xcf\xac\x50\x0c\x3b\x4b\x83\xa4\xff\xb7\x18\x41\x85\xef\x3d\xa4\x14\xfb\xdc\xc7\x23\xea\x63\xb5\xa1\x88\xcf\x90\x51\x15\xf5\xdb\xec\x39\x70\xe6\x17\x41\x44\xe1\x7d\xc4\xf7\xfb\xa5\x87\xc4\xc2\x28\x30\x5c\xf2\xf6\xc8\x3e\xee\x3b\xa8\xd5\xf1\x13\xb2\xf9\x82\x24\x40\x79\x9a\x92\xd8\x88\x0e\x79\x61\x0d\x61\x23\xd4\x9b\xf9\xfa\x73\x43\x52\xf4\xd7\x0a\x43\xfc\x88\xdc\xad\xd1\x2a\x79\x03\xa7\xd0\x01\x72\x27\x34\xed\xca\x32\xe6\xd4\x0f\x81\xab\xbd\x6c\xb0\x52\xd0\xa9\x2c\x6c\xb3\x25\x49\x5f\x3e\x6d\x9a\xb1\x66\xd6\x1f\x4b\xe6\x3c\x6d\xe0\x50\xd0\x38\xad\xf4\x7d\x8c\xba\x3d\xd1\x29\x3a\xb5\x6d\xa4\x2a\xb0\x65\x37\xbd\x4f\x17\x1e\xd6\x36\x2c\xc4\x33\x88\x41\x62\x8d\x80\xdc\xb0\x63\x10\x5e\x17\x11\xdf\x00\x43\xa5\xff\x5d\xa0\x2e\xbf\x40\x76\xea\xb3\xf9\xab\xf5\x46\x96\xcb\x57\xa9\x02\x1b\xb5\x11\xc2\xb8\xea\xda\x85\x58\x99\xb3\xf5\x66\x7f\xc6\x86\x4a\x17\xb3\x4e\x65\x50\x48\x43\x65\xba\x18\x5d\xbf\x13\xdd\xb1\x15\x5b\x06\xab\xcc\xdf\x72\x19\xb6\xee\x7f\xb0\xa5\xc6\xda\x44\x7d\x05\x74\xc9\xee\x4b\xc4\xe3\x84\x51\xd4\x4f\x97\xcb\xf8\xa0\xce\xe7\xb3\xab\x34\xa2\xad\x4d\xdd\x8a\x50\x86\x39\xf8\xaa\x50\x30\x05\xf5\x95\xf0\x9a\xf7\x20\x56\xde\x45\x19\x46\xc9\xa4\xb1\x67\x6b\x7a\x47\x0d\x2e\xe9\x0e\xf1\x6c\xcc\x4d\x15\xe2\x1a\x6c\xc3\xfb\x9a\xee\x1c\xb2\x81\xac\x2a\xa6\x83\x9b\x4e\x0d\x53\x10\xc6\xea\x25\x5e\xa4\xd9\x3e\x1b\x81\xed\x07\x4c\x22\xf9\xcc\xa7\x14\xe5\x6e\xea\x56\xc0\x8d\x1b\x86\x6a\xa5\xd5\xaa\x66\xbc\x21\x94\x7b\xb2\x8b\x96\xc1\x57\x89\x21\xe7\xfc\x39\xdf\x65\x6b\x36\x19\x94\x55\xb1\x29\x8a\xeb\xfc\xdf\x2d\x55\x56\xfb\x36\x32\xaa\x16\x6a\x44\x75\x7a\xae\xf0\xb4\x76\xdc\x19\x75\x7d\x82\x19\x2c\x75\x1e\x7e\x62\xb8\x74\x7b\x44\x29\xa9\xde\x39\x0a\xce\xda\xc1\x50\x27\x6e\xd2\x78\x96\x25\x90\xe9\x09\x6f\x59\x2a\xd5\xf4\xa7\x4d\x82\x9e\x81\xda\xaa\x7a\xfa\x8e\xb6\xf4\x5d\x5a\x15\x60\xec\x7a\x12\xfa\xb1\x6a\xf9\x58\xad\x48\x76\x51\x9f\xb6\xed\xd7\xcd\x91\x87\xb0\x4e\x09\x70\x99\x32\x77\x0e\x95\x8b\x47\xe4\x44\xd1\xd9\xec\x43\xb6\x78\xf4\x5a\x09\x25\x9a\xc6\xb7\x61\xfd\xcb\x23\xc4\xc1\x05\x43\xa5\x32\x65\x0d\xc4\x4c\xd0\x59\xfa\x64\xbf\x2b\xf5\xc6\x03\x33\xc2\x77\x43\x13\x0b\xc5\xf0\xe6\x71\xba\xc5\x26\x73\x5c\xec\xc5\x32\x37\x7b\x66\x6b\x74\x15\x5c\xf2\x0b\x8c\x98\x26\x8e\x45\xda\xb2\xdb\x5f\xba\x5a\xfb\xd2\x0d\xc4\x34\xd9\xf9\xcd\x7b\xd4\x19\x01\xf7\xfd\xe2\x3b\xc4\xb7\x07\x68\xd4\x46\x6a\x13\x03\x3c\xdb\x32\x86\x26\xa8\xdc\x19\xd8\xdd\x62\x09\xbd\x79\xbc\x8e\x55\x41\xcc\xc4\x31\xec\xfe\xe4\x7b\x1a\x9e\x08\xd5\x10\xd8\x3d\x09\x57\xc8\xc2\x7a\x98\x45\x2d\xbe\x65\xe1\xed\xb7\x2d\xe6\x35\xf8\xf1\x4b\x95\x63\x12\x7d\xfa\x85\x8b\x92\x7a\xb6\x2b\x50\x91\xf8\x57\x1f\x1e\xab\xf7\x39\x51\xef\x1b\xdb\xf3\x2b\x74\x39\x17\x3e\xc5\x22\x42\x5c\xea\xd6\x83\x32\xc6\xd5\x10\x2b\x4c\xe6\xcb\x68\x6d\x1c\xc9\x85\x4c\x6d\x1c\x2f\xe8\xb3\xff\x56\xd7\xd2\xa4\x6b\x48\x1e\x43\xf1\x90\xb2\xbd\x47\x8c\x5f\xf8\x97\xf3\x52\x30\x83\x06\x4a\x95\xf2\xc5\x67\x94\x7f\x4c\xa3\x3c\x13\x4e\x1b\x78\x85\xa2\x6a\xe0\x94\x90\xaa\x12\x9a\x1b\xbc\x3e\xfd\x9e\x4c\x9a\xd4\x06\x54\x9e\x9d\x3a\x8a\x32\xea\x02\xe2\x41\x59\xe3\x88\xa6\xfd\x5f\x86\x59\xf6\x9f\xc7\x5d\xae\x22\x32\x13\xe3\x97\xe8\x77\x9e\xf7\xaf\xd0\x9a\x04\x33\x60\x31\xb7\x2d\x3b\x57\x9b\x24\xd9\x28\x8e\x67\x77\x98\x1f\x86\x6e\x0a\xb0\x1b\x25\x15\xff\x63\xf8\x1c\x28\x01\x2a\x4f\xd9\xdf\x1c\xd1\x60\x90\xd4\xf6\x62\x11\xc3\x62\x6f\xee\x97\x4f\x2a\xf0\x03\xec\xf9\x28\x60\xc8\xc7\x41\x54\x3c\xfc\x60\x2d\xec\x27\xf8\xb8\xa6\x4c\x19\x4f\x17\xff\xb1\x59\x0a\xf8\x70\x02\x7b\xe6\xc6\x5d\xe9\xaf\x50\xc5\xb8\x96\x54\x64\xf9\x71\xcb\xb5\xcd\x3b\xb1\x6d\x0c\x71\x23\x8a\xef\x73\x07\xea\x28\xd2\x00\x42\x5b\x86\xee\x1b\x21\xca\x38\x75\xf6\x84\xb8\xf4\x4d\x6e\xe9\xcb\xca\xe4\xac\x49\x5c\xb7\xb2\x59\x61\xcb\xf9\x8c\x18\x42\x78\xcd\xd3\x58\x5a\xc8\x76\xa8\xe7\x0b\xe1\x87\x2f\x3c\xd9\x84\xd2\x88\x6a\x15\x78\x84\xb7\x49\x4c\x3e\x6a\xf0\xf9\x64\x77\x6d\xb8\x02\x34\x36\xa9\x8b\xbd\xd8\x19\xee\x57\x33\x87\x28\x78\x29\x8c\x7d\x90\x2d\xcd\x74\xac\xec\x03\x71\x5a\x63\x58\x3e\x8d\xcc\xa4\x15\xf2\x45\xb9\x3e\xde\x2d\x2e\xd7\x66\x99\x06\x0d\x98\x6f\xd1\xc0\xc3\x30\x40\x98\x72\x48\x9e\xfb\x94\x13\xfc\x0d\xc3\x75\x0f\x63\x26\xf4\x3e\x32\xbf\x2c\x49\xbf\x10\x83\x30\x23\x20\x4d\xf3\xc7\xec\x47\xb7\x89\x11\x11\x18\xc1\x17\x8a\xe1\xff\x1c\x50\x00\xb1\xd8\xb4\x11\x53\x22\xdd\xe4\xc7\x64\x85\x75\x6d\x33\x32\xa1\x7b\xa7\x46\xad\x94\xd8\xbf\x90\x9d\xd6\x48\x99\x36\xdf\x72\xc7\xb6\x2a\xf7\xb7\xf7\x13\x87\x7d\x4a\x74\x7f\x7b\x37\xa7\x07\x26\x86\x85\x83\x04\x74\x93\xfe\xd0\xaf\x1c\x15\xba\x0d\xb4\x56\x03\xe9\xb7\xec\x41\x99\xb2\x41\xd9\x31\xfa\x62\xd7\x0c\x97\xe9\xd7\x08\xec\x5a\xd4\x34\xf0\x53\xb8\x71\x8a\xde\xcf\x30\xbe\xb9\x80\x1c\x51\x39\x25\xf7\x51\xd3\xda\x0b\xdd\x51\x2c\x66\x9c\x1b\xbd\x47\x6d\xf1\x92\x1d\x6a\x54\xee\xcd\xd5\x06\xd3\xd8\xf5\x31\xaf\x54\x38\x61\x75\xe6\xc6\x21\xa9\xf2\x7f\xf1\x9c\x09\xc5\xa8\xad\xd2\xd4\x1e\x0d\xd8\xa1\xc0\xf3\x6f\x7b\x42\x37\x07\x13\x1a\xad\x71\x63\xf5\x9b\x17\x86\x28\x6d\x0c\x7f\x68\x60\xe3\x3b\x1e\xca\xb8\x49\x33\xa6\x4f\x2b\x14\xc3\x7f\x2a\x0b\x27\x6e\xc4\x04\x66\xbe\xdf\xc3\xba\xc0\x1d\x47\xa8\x8a\x5a\xfb\x9d\x17\x5a\xf4\x06\x99\xb2\x78\xa4\x16\x1e\x7a\x6c\xac\xf6\xe2\x47\x55\x93\xe7\x53\x37\x6d\xd7\x9a\x7f\xf8\x45\xc5\x41\x8d\xda\x36\x18\x09\xc1\x1b\x7b\x7e\xbd\x0e\x5e\x84\x43\x1f\x4e\xdb\xa1\x73\xa6\xa6\xcf\x10\x29\xf2\xba\x45\x5a\x56\x76\x4a\xc8\xf3\x90\xc9\x85\xa2\x63\x83\xc9\x8b\x93\x72\x7f\x0a\xb7\xcb\xc8\x6c\xbf\x48\x3e\x31\xdf\xc2\x94\xe1\x44\x25\xed\x47\x9a\x15\x6e\x2d\xf0\xb9\x64\x0d\xa0\x96\xde\x9c\x93\x9e\x3f\x74\xa2\x1a\x8a\xbf\x62\xfa\x7d\x0a\x1e\x4e\xd7\xb2\x25\x46\x03\xaf\x0f\xd7\xa8\x55\xfb\x92\x5e\xca\xc5\x0d\x95\xd4\x98\x9f\xd5\x21\xd1\x74\xe0\x6b\xd6\x6c\xf3\x33\x68\x9b\xa6\x02\x46\x6d\x30\xb9\xc9\x9d\x6b\x51\x59\xee\x20\xd5\xaa\x54\xc2\xd5\xe6\x7d\x28\x16\x5a\x6e\x3f\x7b\x38\x9d\xda\xe2\xd8\x93\x1f\x77\x51\x12\x7b\x54\x87\xb9\xde\xec\xf4\xa1\xaa\xb0\x75\xac\x0c\x3c\xa1\x9f\x86\xd7\xa1\x9e\x1f\x55\xc2\x76\xa2\x7a\xfa\xa9\x97\x25\xe4\x89\x79\x84\xcf\x4b\x5c\x2d\x6c\x57\xf8\xa6\x0c\xa8\x4a\x37\xbc\x2e\x23\x66\x15\x71\xe4\x7f\x6f\xe6\xf4\xfb\xca\x9e\x38\x05\x94\xd5\x58\xad\x26\xed\xc1\x82\x6e\x91\xdb\xb1\x27\xfd\x20\x2b\x8c\x06\x35\xbe\x16\xd1\x9b\xbc\x57\x5f\x93\x03\x54\x97\xd6\x49\x95\xd6\xe5\xd8\x6f\xd1\xa6\xe1\x6a\xf2\xa1\x6e\xc5\xa2\x36\xa7\xd3\x67\xff\x73\x8f\xd4\x31\xab\x2a\x1b\x93\x6c\x77\x87\xc2\x7c\xf3\x3c\x44\x6c\x6e\x1a\x1a\x6e\xd7\x4a\x20\x93\x61\xe4\x88\xe0\x93\xc7\x23\xfa\x8b\xb7\x77\xf2\x14\x5e\x05\xfc\xfd\x46\xbd\xa0\x05\xb9\x2b\xa1\xa2\xf6\x1f\xab\xd3\xff\xd9\x0d\x7c\x46\x12\x04\x46\xae\xb8\x1d\xfa\xc9\x45\x22\x5c\x25\xb4\xbc\x69\x0b\xd2\x2f\x72\x95\x0a\x0d\x34\xfd\xb6\x7c\xe5\x98\xd6\xfb\x62\x17\x73\xc2\x8e\x18\x62\x56\xfb\xa5\x2f\xa0\x82\xcc\x0a\xf6\x59\x77\xbc\x29\xde\x22\xfc\x21\xc5\xdc\x7d\xf1\x62\xf8\x7e\x48\x1c\x9e\x6c\x69\xe9\x70\x57\x45\x39\x33\x07\x09\xcb\xb9\xec\x17\x1e\x93\xf3\xb1\x3a\xb5\xeb\xfc\x68\x9c\x53\x30\x04\x06\x2d\x41\xe1\x9d\x1f\xf7\x44\x7a\x2b\xe9\x77\x07\xac\xd4\x9d\xf6\x9c\x0a\x9f\xec\x91\x4a\xf0\x01\xc7\xf5\xed\x9f\xaf\x0f\x41\xa5\x42\x4e\xf6\x7b\xcf\xc1\x5c\x7e\xa1\x18\xec\xc7\x01\x76\xaf\xe2\x93\x0d\x6c\x24\x4e\x2b\xd9\x9b\x8e\x5d\x0d\x8c\xaa\xc2\x3e\xea\xf1\x27\x55\xb4\x39\x95\x7a\x20\xf9\x31\x3b\x75\x89\xe4\x3a\xb2\x03\xa9\xc3\x12\x3e\x3b\x3c\x59\x01\xd7\x49\xcc\xc7\xbb\xe5\xa9\x74\x2c\xa4\x5e\x15\x69\x56\x19\xb9\x2f\xbf\x3e\x42\x05\x77\xad\x0a\x90\x4d\xf8\x86\x97\x8b\x07\x1c\x57\xfa\x52\x10\x0d\x87\xf1\xc8\xe8\xad\x43\xf5\xc2\x15\xea\xb6\x9e\x17\x55\xb0\x05\x72\xc4\x84\xf5\x43\x7b\x75\xbd\x2b\x56\x8d\x27\xf1\xf9\xa5\x9a\x45\x90\x67\xd1\x86\x30\x25\x9e\x3f\x7a\x64\x0a\xad\xad\xd7\x7a\xd7\x2b\x66\x8b\xc8\xad\xf0\x66\x5b\xd4\x96\xb7\x6a\xf1\xcc\x60\xc4\xc3\x02\x0d\x39\x70\x91\x2c\x20\x2d\xa7\xa9\xf4\xf9\xd2\x6a\x6d\x3f\x87\x24\xef\xf9\xcb\xc3\x21\x4d\xba\x48\x20\x39\x32\xbf\xdb\x2a\xab\x43\xee\xbd\xd2\x51\xd3\xb3\xd3\x8c\xc9\xe2\x94\xdf\x3c\x2d\xbd\xbc\x28\x61\xb7\x33\xba\x49\xe9\xf3\xf7\xe7\x5d\x03\x64\x8c\xe7\xb2\x86\xf9\xd1\xcb\xd2\x61\xdd\x23\x5d\xe2\xd0\xac\x14\x5b\xa1\x2a\x71\x4d\xcc\x62\xed\xba\xf0\x9d\x8b\xa1\x7c\x2f\x53\x6a\xd7\x18\xa5\xe5\x42\x31\x3c\xd0\xa2\x17\xb9\xc4\x27\x46\x5c\xce\xbc\x7f\x46\x07\x80\x98\x1c\xbd\x18\xf6\xec\xbd\x4a\xff\x35\x87\xb8\x7c\x2e\x2b\x5a\xe1\x0b\x5b\x55\x70\x1d\xa8\x01\x82\x82\x78\xb1\x65\x84\x1a\x8b\x4b\x8a\x0a\x70\x88\x5a\x15\xdc\x2b\xe1\x0c\x24\xee\xfc\xd3\x2a\x49\xd7\x28\x71\xd5\xfa\xde\x8a\x74\x78\x21\x0c\xa9\x42\xcc\x99\x6f\x31\x95\xae\x06\x32\xa9\x32\xc4\x7e\xa3\x3f\xdc\x8d\xdb\x19\xc6\x09\x79\xf2\xd4\x4c\x80\x59\xdc\x49\x2d\xd7\x53\xc6\x85\xe1\x7b\x5b\x62\x4d\xa3\x6e\x83\xfa\x60\x94\x37\x6b\xb1\x8c\x31\x65\x0a\x46\x70\xc7\x3b\x34\xf8\x18\x9f\xd4\x91\x44\x19\xf9\xf2\x97\x15\x91\x22\x14\x18\x48\x34\x09\xe1\xd7\xf6\x8e\x6a\xd6\xdb\x4b\x1d\xec\x9b\x35\x67\x2d\xe2\x23\x9b\xa8\x1e\xa8\xe1\x3b\xf9\x4b\x45\x87\xc4\xdd\xf9\x8a\xbd\x99\xeb\xf3\x71\xc5\x6e\x93\x3a\xd8\xeb\xa3\x27\x15\x9f\x72\x54\xa7\x80\x40\x79\x22\x54\xca\x7f\x0b\x71\x96\x9d\x5e\x3b\x5f\x71\x5a\x91\x5c\xe7\xd0\xb2\x4f\x0f\x94\xaf\x76\x05\x31\x86\x7d\xbe\x64\xf2\x6b\x52\x52\xdd\xe2\xf4\xbb\x66\x7d\x8c\x59\xe2\x7e\x06\x9e\x1f\xb3\x2f\xff\xcf\x50\x49\x2e\x8f\x3a\x24\xfd\x1d\xdc\x3d\x51\xf7\xc2\xb4\x31\xf8\xe6\x14\x7b\x33\x8b\xd7\x5c\x2a\x6b\xa4\xe8\xcc\x2c\x58\xae\x8c\x18\x2c\x17\x66\x9b\x93\xcf\x8e\xd6\x2a\x1a\x3e\x2a\x4e\x4f\x68\x7e\xad\x99\x3a\xb7\x4f\x9c\xd6\xd6\x26\x06\x2a\xef\xbb\xf2\x99\x3b\xb4\x8c\x38\x4b\xe0\x87\xf7\x27\x9f\x5d\xe8\xea\x8a\x7e\x52\xb9\xae\x89\x4a\x46\x2a\x6e\x22\x57\x91\xfb\xfb\xe7\x64\xe6\xaa\x51\x9b\xf8\xb0\xd4\x28\x14\xc3\xc1\xf7\x0f\x55\xc6\x43\x96\xbb\x2a\x20\x20\x5b\xfb\x91\x59\xe9\xc7\x1f\x54\x19\x22\x2e\x56\xec\x78\x32\xbb\xdf\x56\x47\x69\x06\x02\xf2\xfd\xe2\xa7\x75\x61\x36\x8f\xb8\xd8\x8b\x22\x1f\x28\x81\xfd\x6e\x9c\xea\xd0\xc3\x2a\x24\x31\x22\xfa\xec\xa3\xc3\x74\x40\x81\x18\x74\x0e\x2d\xa9\xe2\xea\x0c\x53\xe0\x3b\xfd\x57\x5b\x52\xa9\xfa\x38\x05\x1b\xcc\x9d\x63\xba\x21\xb8\x1f\xc5\x4b\xe6\xb5\x02\x0e\xa5\x71\x58\x98\x42\x62\xcf\x08\xd2\xe4\xb6\x51\x07\xb4\x54\x61\x31\x14\xbf\x51\xf9\x4f\x29\x0a\x83\x1c\xfb\x1b\xdb\xe4\x4e\x5e\x0a\x4d\xe2\xbd\x28\xba\xb2\xf9\x2f\x08\xb6\x2f\xb6\x09\xe6\xc0\xcd\x8b\xb7\xa9\xde\x99\x7c\x3f\x22\x02\xcb\x32\x57\xbb\x54\x64\x50\xd7\xc7\x01\x13\x85\xd3\x8a\xeb\x34\x2b\xa1\x32\xa7\xe3\x02\xd9\x51\xd6\xe6\xe3\x5e\xbb\x5c\x59\x5d\x3a\xc4\xf3\x51\x35\x96\xe7\x64\x2f\x8e\x4f\x7f\x25\x46\x7d\xec\xf9\xc8\xf5\xfb\x6a\x5b\x33\xbf\x3a\x2f\xe3\x62\x74\xab\x19\x31\x79\x2c\x1d\xf8\x5e\x92\xb5\xbc\x66\x03\xae\xdc\x80\x7d\x70\x0b\xa6\x7e\xb4\x23\xfa\xd7\x97\xee\x4a\x6a\xf3\x92\xad\xce\xc3\x76\xec\x80\xe1\xd1\xa4\x8e\x42\x31\xfc\xdd\xbc\xcb\xe2\xd4\x1f\xab\x34\x67\xff\xb4\x53\x5b\xf7\x98\x9d\x81\xe7\x27\xde\x44\xbd\xb9\xc6\xeb\x7d\xfb\x50\xd0\x18\x36\x7d\xfa\xa8\x44\x0b\xf8\x7e\x53\x8f\x32\xbc\x4d\x42\x84\x90\x53\x28\x86\xb5\x25\xba\x23\x3b\x2d\x43\xa6\xfe\xe1\xdb\x9a\x98\x55\x3c\x03\xcc\x53\x2b\x39\x7d\xb6\x36\xfc\xbe\x75\xa5\x26\x80\xc8\x5b\x0c\x68\xd8\xae\x59\x08\x6b\xfc\xbb\x90\x53\x83\xa1\x39\xaf\x16\xda\x5e\x54\x50\x11\xd4\x29\x21\x43\xb5\x6f\xfd\xdc\x16\xb1\x16\x27\x4e\xcd\x86\x49\x02\x92\xd6\x37\xc4\x28\x14\xc3\x1f\x1e\x86\xbf\xbb\x00\xa5\x5e\x84\xaf\x3d\xa6\xf0\x0b\x84\x63\xdc\x7f\x9e\xba\x4e\x8b\x17\x35\xca\x7c\x52\xa7\x00\x9e\x4d\xc7\xc1\xe1\xcb\x47\x28\x3b\xa7\x12\x66\xb2\x67\x0b\x2f\x7b\x58\xd1\x53\xe4\x2b\xa5\x28\xf3\xff\xdd\x50\x7d\xc6\x60\x30\xec\xdb\xf1\x3c\x20\x7f\xf1\x93\x0a\x7b\xd4\x41\x0c\xc6\x63\x79\x73\x8d\x36\x92\xb6\x51\xe2\xc4\x76\xeb\xb1\x58\x16\x95\x43\x23\x29\xc8\x52\x8f\xd1\xf9\x65\xe5\x72\x0c\xea\x39\xfc\x9c\x36\xd2\xe1\x2a\x80\x09\xf6\x62\xe7\xab\xc9\xf9\xa8\x90\xa6\x93\x9c\xff\x98\x66\xbe\x5c\xb3\x31\x12\x23\xec\xd3\x4b\x54\x4d\xb2\x1a\x76\x41\xaa\xec\xad\x03\x97\xab\x83\x93\x85\x0b\x17\x71\xd3\xd0\xdb\xef\x59\x14\x2e\xdd\x35\x4c\xed\x1b\xb8\xbb\x09\xe0\x89\x7f\xb2\x4e\xdf\xfd\x30\xc6\x6d\x1a\xc4\x51\xf9\x2d\xd3\x60\x28\xdc\x59\x57\xc8\x90\xfe\xe5\xc0\x30\x51\xb8\x18\x8c\x26\xc5\x3a\xc7\xf5\xad\x91\x33\xd5\x12\x4d\xc1\x90\x72\x3e\xd3\x54\x73\x02\xe6\x09\xc7\xaf\xaf\x0b\xe9\x59\x4e\x88\x8c\x61\x0f\xf9\x85\xa3\xe4\xf9\x29\x21\x83\x2b\x53\xdc\xf7\x94\x56\x2f\x23\x62\xc2\x26\x67\xae\xe6\x9f\x60\x71\xff\x84\xa8\x54\x79\xa2\x05\xfa\xbb\xb9\x0c\x5b\x29\xc5\xde\xeb\x67\x5d\xad\x08\x76\x55\x6c\xe2\x59\x4d\xef\xeb\x9a\x9a\x66\x20\xc2\xb0\x6b\x26\x8c\xfe\xc7\x14\x54\x66\x89\x9a\x44\xa8\x6b\x2f\xdb\x22\xef\x3b\x65\xa4\x02\x15\x63\xa1\x18\xfe\x61\x65\xba\x2b\x49\xdf\x41\x40\x00\xbd\xb9\xf6\x4a\xbd\x4e\xc6\xe0\x1e\x50\xe3\x00\xce\x8f\xaf\xd5\xaf\x88\x20\x3b\x61\x0b\x7c\xea\x24\x94\xc4\x77\x61\xd2\xa3\x12\x22\x6f\x7a\xef\x32\x71\x8c\xed\x84\x02\xb0\xb0\xa6\xc8\x55\xdb\xd8\xac\xf0\x88\xfd\xab\xb9\x23\x5d\x0d\xe2\x67\xa7\x1c\xea\xaf\x7e\x24\x39\xc1\x4e\x1f\xe8\x0b\x7c\x5a\x41\x72\x70\x44\x33\x00\x07\x00\xa9\x5b\x4f\x1e\x34\xb7\x59\xcb\x7e\x6b\xbe\xa2\x4d\x66\x23\x17\x0b\xe1\xf7\xdc\xfa\x99\xb1\xf0\x2c\x72\xb9\xfb\x61\xe6\x3f\x0e\x2b\x03\x8f\x6e\x6a\xf2\x70\x7b\x5e\x99\xb6\x30\x62\x00\xce\x38\xff\x91\x0b\x14\xc3\x67\x9f\x0a\x0f\x9b\xeb\x16\xa4\x39\xf2\x31\x44\xa3\xb9\xa5\x0f\x3f\x77\x4e\x6e\x49\xdc\x0a\x35\x0a\xbe\x45\x70\xb2\x9b\xfd\xf0\x59\x69\xcf\x54\x8f\xed\x99\x2e\x39\x9f\x62\x66\x47\x35\x04\x0f\xe3\x8f\xbe\xa5\x0f\x52\x4d\x93\x83\x59\xa3\x06\x3a\x73\xa5\x62\x84\x1d\xb8\xc4\x46\x3e\x66\xc0\x8d\x7a\xe5\x8c\x44\x57\x11\x05\xa1\x9a\x5d\xa2\x35\x94\x0e\x35\xb1\x13\xaf\x83\x3b\x17\xc9\xda\xd2\x09\x0c\x2b\x21\x55\x8a\x94\xff\xe5\xf2\x30\x55\xa4\x8e\x06\x09\xea\xe7\xbe\xbc\x42\xb9\x13\x50\xff\x11\x3a\xb0\x9f\x17\xcc\x22\x15\x7e\xef\x29\xe1\xf9\x8a\x99\x01\xd2\xce\xd7\x2a\x56\x50\x71\x2a\xde\xa9\x4a\xc9\x60\x8f\x98\xd8\x05\x0f\xad\x35\x53\x2e\x6f\xfa\xe3\x35\x01\xc8\xff\xf8\xd3\x4a\x95\x4e\x9d\x1a\x72\x75\x50\x7f\x78\xed\x7c\xc5\x64\x81\x52\xbe\x1d\xc9\x5e\x75\x1c\x32\xd1\xc7\x53\xa4\x8b\xaf\x3d\xa9\xeb\xef\x79\xf0\xc5\x25\x26\xad\x7d\xb8\x86\x25\xc3\xb6\x9f\x84\xec\xfd\x4f\x69\x57\x0a\xee\x69\xb5\xa8\x0e\x54\x26\x2d\x51\x8c\xe2\x9f\xf7\xee\xda\x16\x25\x50\x37\x4d\x8b\xbe\x3e\x40\x2f\x21\xea\xc4\x57\xe6\x19\xdf\xbe\x41\x91\xb3\x42\x7e\xc0\x84\xb5\xed\xaf\x4e\x69\xf4\x53\x46\x5c\x83\xd4\xa2\x97\x1f\x54\x3b\xfe\x95\x69\x93\x1a\x2e\x24\x0f\x56\x66\x77\xec\x1c\x2a\xdd\x55\x94\xc0\x90\x5b\x33\x50\x10\xd9\x05\x34\x08\x0e\x33\x3b\xae\x60\xbf\x4b\xc8\x35\x63\x8c\x6f\xf8\xbd\x65\x8a\xc5\x33\x0d\x0c\x8b\x1f\xf2\xaf\x0e\xd5\xab\x18\x5b\x20\xbf\x87\x9d\xef\x63\xba\xc6\xd5\x89\x5f\x54\xb5\x77\xc1\x91\x0a\x01\xef\x6b\xad\x62\xa0\xe1\xa2\x3a\xbc\x0f\xdf\xd8\x70\x99\x02\x5c\x37\xaa\x85\x62\xb8\x6a\xa5\x62\xa5\x83\x2a\x15\xc4\x23\x58\xfe\xbe\xf7\xb5\x1a\x28\xaa\x39\x21\x4b\xec\x56\xbc\xbd\x27\x4d\x8f\x61\xf4\xf9\xc6\xb1\xf4\x6f\x70\x11\x16\xd1\x09\x3d\xbd\x5a\xe3\x07\xfa\xa8\x82\x13\xf4\x76\xe7\xf8\x14\x45\xcd\x37\x2c\xa4\x62\x2c\x6e\x9f\x78\x95\x72\x90\x83\x66\xac\x7b\x66\xd0\x1a\xd5\x2c\x09\xb3\x0a\x6f\xd3\x8b\xbd\xb9\x8b\x15\x51\xb0\x98\x00\xc5\x6b\xe1\x41\x43\x85\x52\x1b\xed\xe1\x45\xcf\x2f\xfa\x09\x7f\x87\x80\xf8\xa2\xec\xce\x7f\xe4\x3d\x79\x67\xae\xe5\xfa\x2f\xbc\x72\x1b\xc0\x14\xec\x11\x72\x05\x26\x29\x5c\x3d\x60\x94\x22\x23\xc3\x5c\x9e\x25\xd3\xb5\xd8\xfd\x8a\x86\x70\x29\x88\x52\xf1\xbf\x2e\x92\xd5\xd9\xa4\xc9\x93\x0b\x55\x62\x53\x07\xfb\x00\xa2\x21\x7e\x7a\x48\xe6\x37\x28\x1c\x87\x7e\x96\xb6\x58\xb1\x11\x73\xe2\x35\x7e\xf6\x64\x36\x35\xc9\x28\x93\x4a\x90\x48\x2e\xf4\x66\xaa\xc3\x5b\xd4\x6b\xe0\xcd\x9d\xa2\xcb\x33\x7b\xeb\x40\xb5\xbd\x03\x81\xbd\x0d\x1d\x1a\x55\x93\xd4\x01\x16\x00\x43\xa9\xff\x7a\xb9\x09\xa2\x6d\x23\xa2\x68\xf6\x9c\xca\x6b\x54\x04\xec\x46\x45\x20\xef\x46\x8b\xbd\xb9\x75\x77\xa6\x43\x8b\x8b\x6c\x5c\x4b\x43\x21\x17\xbf\xaa\x21\xd1\x2c\xa1\x63\x55\x0c\xaf\x7e\x5e\xb3\x9f\x2d\x79\x7d\x7a\x6c\x7c\xe8\x85\xcb\x14\xa9\x2f\xde\xd4\x7d\xb8\x4d\x9f\x11\x98\x58\xf8\x9a\x85\x27\x3b\x14\xfd\x26\xe4\xa0\x2a\x87\x56\x9c\x50\xf1\xa5\x26\x0d\x4a\x3e\x06\xb8\x48\xc6\xd0\x00\x3a\x0e\xf6\x59\x7c\xc2\xc3\xaf\x32\xdd\xa9\x03\x3b\xb1\x32\x40\xa6\xb1\x4d\x7e\x92\x83\xbd\x80\x4f\x45\xee\x1d\xdf\x44\x4d\x8e\x15\x17\x81\x12\x9c\xef\x18\xdf\x34\x25\x6c\x87\x75\xcb\xa1\x17\x9a\x36\x31\xbe\x05\xda\x10\x47\xb3\xe9\x91\x06\xaa\xd5\x18\xed\xe2\x66\x95\x76\x77\x6c\x7d\xf7\xe1\x13\xc9\x84\x22\xe0\xe8\xc7\x6f\xae\x1e\xad\xb0\x07\x08\x30\x5f\xf5\x88\xbc\xe2\x49\x8d\x7f\x1f\x74\x05\x4c\x60\xae\x77\x3e\xd2\x97\xfe\x52\x8d\xeb\xa6\xad\x9b\xa7\xc9\x97\x4d\x12\x1b\x95\x6b\xd9\x75\x5a\xce\x77\x2b\x0c\x7b\x5e\x5f\xd8\xf6\xec\x8f\x4e\xa4\x18\x39\x1e\x72\xc1\x52\xa0\xf7\x48\xfa\x74\x30\xe4\x22\x46\x4c\xd3\x4a\x33\x56\x32\x53\xa6\x28\xba\x07\x0d\x9c\x72\x29\xba\xfa\x86\xf4\x15\xb2\x98\xfc\xfd\x79\x39\x34\x27\x34\x76\x7d\xcb\x7d\xf1\xac\x3a\xed\x28\x79\x20\xc1\x19\x8e\x7a\xe3\x2a\xad\x6c\x05\xcd\xa4\x24\x0c\x66\x5e\xd7\x1c\xfd\x2a\x01\x31\xc1\x51\x86\x37\x51\xa3\x0f\x49\xc6\x0c\x55\x55\x90\xa7\xcf\x6b\x76\x03\xe6\xdc\x78\x09\x49\xd9\xd3\xa6\x93\x81\x6c\xe8\x54\x60\x19\x94\x1b\x9b\x3e\x4b\x81\x17\x43\x22\xb3\x67\xee\x14\x81\x92\xab\x4b\x14\xc3\x5f\xf5\x97\xd8\x6b\x22\x45\x8c\xc2\xde\x6c\x8b\x32\x29\x74\xa2\x1c\xc5\xc1\x13\x00\x73\xcf\xbe\xf5\xba\x36\xe3\x62\xa8\x4e\x4c\x98\x48\x46\xff\x7d\xeb\xee\xf4\x05\xf2\x96\xbb\x41\x4c\x61\xe8\xb0\xf5\x71\x21\x3c\xe4\x37\x2b\xda\x7f\x65\xbe\xb0\x24\x88\x17\x46\xbc\x86\x3f\xff\xa4\xa6\x36\x44\xdd\x8a\x20\xfc\xf2\x38\x78\xed\xd3\xf0\x5b\x1a\x30\xf7\xba\xd4\x0b\x8e\x19\x37\x05\x8b\x0a\x87\x6f\xef\x18\x2a\x5f\x0a\xa5\x87\x3e\x05\x73\x72\x1b\xbb\x85\x49\x1d\xf1\x64\xb8\x75\x51\x7a\xe9\xe5\x93\xa8\x33\xa4\x05\x64\x32\x82\x7c\x62\xc4\x72\x6b\x59\x62\x25\x7f\xd5\xc1\xf2\xcc\x85\xf7\x29\x5a\x3d\x16\x65\x8c\x94\x89\xc1\xb3\xfa\x85\x03\x65\x51\xe7\xf9\x81\x19\xd5\x8c\xfa\x9b\xd8\xf8\x40\x02\x96\x3c\xe2\xf2\xbe\xf7\x77\x8f\xeb\xd8\x2e\x1f\x57\x28\x3f\x7d\x30\xd7\x2b\x1f\xd7\xf6\xbe\xc8\xae\xf2\xce\xef\xea\xce\x41\xca\x0e\xc7\xc2\x5c\x5b\x22\xf7\x85\x75\x32\x4f\x90\x1e\x9f\x72\xb4\xe1\xff\xb4\x28\x3a\x76\x4e\xe0\xc1\x3d\xbd\x54\xd7\xb1\xa2\x01\x73\x91\x1c\x07\x65\x2f\x59\x9b\xc0\x10\x4b\x9c\x0f\x2e\x61\xaa\x9b\x9f\xd6\xf5\xf4\x29\x32\xb9\x2f\x48\xa2\xa6\xf0\x83\xd3\x50\x1b\xdd\x66\xe0\xba\xba\x90\xce\xcf\x79\x4f\x77\x4e\x6a\x8b\x13\xd2\xd9\x5d\x30\xc2\x9a\x3a\xb9\x50\x0c\xff\x69\x77\xca\x0a\x40\xc8\xd2\xf0\xa9\x80\xaf\x70\xa4\x99\x29\xa0\x98\x07\xf7\xeb\x42\xc9\x04\x8b\x0a\xb1\x37\x53\xd2\xe8\x3e\x26\xea\x2e\xf8\x34\xfa\xff\x44\x54\xbb\x75\x0a\x3f\xe8\x85\xf9\xb8\xc4\xb8\x53\x64\xfa\xd9\xbd\xb3\x4e\xc3\x8e\x4d\x11\x15\xd4\x47\xb3\x12\xe3\xe8\xd1\xc0\xb7\x1a\xd8\x6b\x7a\xf4\xd9\xe3\x9d\xe9\x70\x17\x65\x2e\x80\xff\xa6\xa6\xd6\x99\xc6\x3a\xd8\x96\xa2\x80\x67\x8c\x7f\x7b\x3c\xfd\xf0\x1d\x04\x59\x26\xbc\xa2\x07\xf6\x1e\xf7\xa9\x43\x88\x5b\x35\xd9\x8c\xc0\xf5\x2d\xe2\xf2\x69\xa5\xd8\x29\x9d\x5c\x2f\x1b\x96\x32\xb2\x3d\x6c\x51\x0a\x4b\xec\x3b\xdb\x15\x8f\xe1\xc0\xe1\x2f\xc1\xe1\x13\xca\x99\xc6\x8c\x3b\x9d\x69\x8d\xca\xb8\xc3\x2d\x5a\xfe\x67\x20\xb3\x0d\x29\xf4\x3f\x34\x9a\x70\xa2\xa1\x90\x78\x9a\xde\x74\x40\xd1\x91\x6b\x2b\x14\x43\x7c\x36\x3d\x96\xa5\x75\xcc\x6a\xd8\xa8\x6a\xe3\xfd\xff\x5e\x04\x27\x65\xda\x74\xbe\x04\x67\xb1\x2d\x89\xf2\x6f\xb2\xec\x2d\xed\xd3\x91\x49\x0c\x21\x12\x02\xa1\x7b\xff\xd0\x66\x55\x73\xde\x2f\xce\x3b\x38\x54\x25\xac\x38\x35\x2c\xbc\x9d\x9f\x19\x23\xfa\x42\x6a\x0b\x94\x6b\xf6\xaf\x6d\x1a\x0f\x12\xc7\x3e\xa4\xf1\xe4\x32\x3c\x3c\x6f\xa8\x02\x43\x09\x98\x27\xba\x9e\x77\x15\x81\x39\x93\x05\x20\x1c\x9a\xb7\x5e\xd6\xcb\x48\x9b\x36\x12\xf7\x81\x3f\x2c\x69\x12\x25\xaf\x30\xe4\xf0\xf9\x7b\xf6\xd8\x11\x49\x60\x50\x29\x1d\xb9\x87\x86\x2b\x95\xb8\x4b\x2a\x0e\x02\x8e\x70\xae\xed\x22\x98\x77\xdd\x85\x6c\xe2\x12\x55\x8d\xf2\x8d\x56\x8d\xe9\x24\x88\x1b\x40\xf0\xce\xcd\xed\x97\x54\x23\x38\xaa\x8d\xc2\x0f\x6b\x7a\x1b\x2e\xd7\x1d\x07\x60\xda\xe3\x6d\xcd\x5d\xa6\x40\x30\xe4\xbe\x3f\x7c\xb4\x32\x53\x31\x2c\xe4\x56\x9a\xfa\xca\xcc\xe8\x87\x86\xa6\x9a\x66\x1b\xfb\x70\xf7\x7f\xff\xe8\xdf\x68\x0f\x19\x04\x26\x9a\x00\x38\xb9\x2d\x8a\x67\x68\x19\x75\x41\x3a\x5a\xdf\x24\x86\x6a\x0b\xe1\xf5\xbc\xb5\x5a\xee\x2b\x49\xb2\x5c\xdc\xbb\x50\xc1\x10\x54\xa2\x3a\xe9\x39\x15\x96\x48\xca\x62\x11\x96\x5b\xfb\xb4\x4c\xbc\xa8\x39\x19\xe4\xde\xd0\x3b\x2f\xea\x20\xc3\x12\xf7\xe4\x63\x9d\x1a\xc6\x2f\x88\xad\xac\xf2\xb7\x81\x6f\x56\xe1\x0e\x1f\xb1\xc2\x12\xe4\x35\x61\xf2\xf2\x97\x1d\xd7\x10\x5c\xb4\x61\xf2\x7e\x82\xe7\xec\xbc\x3b\x52\xdf\x16\xd3\x46\x32\xf5\xcb\xd6\x35\x43\x75\xcf\x06\x85\x46\x80\xae\xbe\x77\x5c\x1e\x58\xae\xe5\xc7\x6f\xe2\x92\x1b\x34\x5a\xb1\x85\x3c\x9c\x52\x8c\xc8\x7d\xb3\x96\x7e\x17\xab\xd4\xa1\x3e\x71\x49\x2c\x2c\x13\x2e\x54\x54\x80\x2b\x08\x30\xcb\x23\x84\x4e\x36\xc8\xc4\x03\x72\xef\xb0\x3c\x07\xc4\xe1\x92\x10\xb0\x48\x7f\xb0\xa6\x0b\xaf\xd6\x30\x32\xb8\x01\x89\x88\xf0\x5f\x9a\x72\x8d\x8a\x48\xa3\x0e\xb7\x36\xd0\x0b\xd6\x3f\x69\x8a\x3f\x25\x10\xe8\x4a\xd6\x13\x83\x8f\xc9\x26\xbb\x46\x7d\xe4\x42\xa5\xd6\xff\x88\x6c\x16\xa2\x2e\x86\x27\x1d\x6b\xcd\xd0\x14\x4a\x9c\xd5\x29\xe1\x1d\xe4\x8f\xdf\x4b\xa8\x3e\x35\x5b\xaa\xcd\x68\x43\xe4\xe8\x0b\x08\x75\xbb\x70\xfe\xb5\xda\x69\x01\x4f\x54\xe0\x46\xa6\x4f\xd6\x8f\x0e\x48\x71\x13\x0f\x45\xdf\xbc\x75\x5e\xb2\x52\x09\x58\x6a\x2b\x97\xed\x38\x02\x93\xc8\x05\xbc\x2b\x88\xbe\xc9\xbd\x7b\xfb\xd0\xe8\x8f\xfd\x16\xc2\x8e\x85\x49\x61\xe4\x2b\x0f\x38\x5c\xbc\xf2\x4a\x05\xeb\xe4\x33\xea\xa2\x40\x2e\xea\xc3\xbf\x9c\x49\xbe\xb0\x6b\xc4\x4a\x06\xd9\xe1\xfa\x82\x55\x68\x17\x88\x56\xef\xc5\x43\x83\x24\x02\x96\x25\xbf\xf4\x98\xb6\x9c\x27\x0c\x73\x11\x7b\x51\xb5\x3c\xb2\x40\xe1\x84\xa3\x58\xd1\x2d\x7b\xf5\xf1\xb4\x98\xa2\x80\x19\xf1\x37\xe2\xf2\x7d\x1a\x10\x82\x2f\x0c\x0c\x68\x01\x78\x3e\xf8\xcd\xb2\xab\xb5\xe3\x5b\xeb\xd6\x9c\x0a\x27\xac\x18\xa3\x75\xcb\x0c\x75\x23\x17\x2a\x69\x99\x94\xb6\x9e\x90\x53\x80\x55\x01\x71\xfd\xc4\xd0\x82\x7b\xb8\x0b\x70\xee\x3d\xa4\x84\x19\xe1\x0f\xef\x4f\xef\x29\x76\xfc\x76\xc0\x62\xd7\xb3\xf3\x4b\x9b\x27\xa5\x0c\xf8\x66\xe1\xdb\xfb\xa1\x98\x99\x17\xf0\x92\x49\x3f\x21\xac\x1d\x3e\x45\x48\x43\x16\x8a\xe1\xb4\xdd\x9a\x18\x7b\x50\x8a\xaa\x06\xfe\xc8\xd7\x0e\xd6\x64\x5d\xc0\x14\x44\x58\xc6\xf2\x67\x32\xe1\xba\x64\x83\x59\x75\x49\x53\xf0\xfe\xae\x99\x3c\xfd\x52\xac\xae\x1c\xae\xde\x22\xdb\x26\xb4\x4a\x75\x54\x9a\xd6\x12\x7f\x54\x73\x47\x19\x5e\xf1\x38\xf4\x3d\x3e\x0b\xc0\x78\xf5\xf6\xb3\x4a\x87\x49\x1c\xe4\x79\xd4\x2e\x14\xc3\x07\xf3\xea\x42\xc9\x25\x98\x1b\x9c\x65\xdb\x36\xc2\x44\x10\xd8\xe0\xc9\xf4\x65\xe3\x38\xf8\x31\xd7\xa4\xa8\x61\x1f\x30\x5d\xb9\x46\x0a\xe8\xc1\x70\x39\xb0\x6d\xf0\x52\xfe\xc3\x05\x8a\x56\x40\x13\x54\xfd\x63\x03\x65\xc1\x4d\x5c\x0f\x96\xff\xb9\xe3\x2f\x2b\xea\xe1\x01\x6c\x24\xb2\xcb\x36\xeb\x55\x2b\xdf\xc1\xac\x5c\xc9\x07\x34\xf7\x37\x2d\x64\x41\xe5\x5f\x20\x5e\x33\x7f\x1a\x9b\x28\xda\x98\x88\x93\x03\x7b\x73\x9f\xd2\x1c\x6d\x88\x89\x91\x27\x84\x5b\xf2\x9f\x7d\x5f\xaf\xc8\x88\x8f\x41\x38\x49\xd8\xa0\xdd\xa7\x79\xff\xda\xfc\x7f\x40\xf0\x6b\x1d\xa1\xc9\x22\x82\xb7\x88\x3a\x11\x6a\x57\x86\x73\x15\x86\x11\x6c\x21\x33\xa7\x8e\x29\x90\x8b\xc0\xf6\x49\x14\x4b\x1e\x4f\xde\x6f\x03\x25\x82\x2d\x23\xee\x1f\xa8\x8c\x06\x69\x99\x9b\x45\x16\xde\xbe\x5e\xab\x9f\xdd\x28\x02\x8a\xa9\x90\x5e\x6d\x0f\x7f\x1e\xaa\xe3\x49\x13\x27\x75\x4c\x9f\xd8\xd1\xc6\x65\xe6\x6f\x7c\x48\x9e\x51\xd4\x74\x46\x73\x5f\x39\x2f\x67\x80\x2e\xe6\x52\xf5\x0f\xec\xd6\xc2\x82\x45\x0c\x54\xa1\xa0\x3a\xcc\xb1\x1a\x23\x5f\x54\x58\x76\x35\x6c\x8b\xea\x71\xc8\x82\xf4\xd5\xd6\xa9\x1d\xb8\x3e\x16\x84\x00\xfd\x93\xef\xd2\x2a\x81\x3a\xf1\x48\xfc\xf2\xf5\xe6\xae\xd1\x14\x9e\x84\x12\xb6\x98\x29\xe2\x1d\x50\xf8\xde\xd3\xcd\x88\xd4\x8d\xa9\x75\x8d\x91\x85\x7b\x50\xf2\xa2\x86\x9e\x35\x1b\xb5\x9d\x32\x35\xde\x58\xac\x08\xfc\x93\xd7\x74\x0f\x10\x1c\xc5\x57\xbe\xc1\x0b\x8e\x09\x33\x15\x86\x5c\x13\x90\x37\x3c\x31\xff\xc3\xc9\x21\xca\x67\xb2\x3a\xa9\x43\xc2\x9e\xb3\x7d\x90\x32\xff\x10\xc9\x7e\xd0\xc5\x3a\xf7\xc1\xad\x13\x0e\x97\x87\x18\x7e\x11\x98\xaa\x41\x57\x2a\x7e\xe7\xaa\x3d\x2d\x4a\xf7\x8c\x2b\x36\x4d\xad\xf2\x3b\x34\x95\x64\x2b\xa8\x58\xd8\x4b\x0d\x5b\x46\xbc\xa1\x4c\x1a\x31\xe2\xc4\xf8\x6f\x3e\x9b\xbe\xbd\x53\xa7\x4e\xe7\xe3\x71\xb8\x8e\x97\x44\xb5\x6f\xd8\xa4\x56\x83\x5a\xe7\xa2\xa1\x9a\x82\x29\xab\x20\x97\xf4\x24\xec\x81\xdc\x7c\xb5\x93\xa2\xd4\x29\x14\xc3\xed\x2b\x06\xc9\x88\x16\xef\x1a\x46\x6a\x34\x33\xa1\x9f\xcf\xd9\x30\x31\x17\xfd\xa6\x0f\x84\x60\x50\xd0\x63\xa5\xe0\xc8\x5f\xee\x3f\x28\xd5\x01\x43\xf6\x18\x77\x71\xba\x6a\x44\x0c\x95\xc4\x18\x61\xed\x4a\xe5\x17\x5c\x82\x5c\x2e\x65\xff\xfb\x69\x29\x5e\xbe\x2f\x8d\xa0\x33\xaf\xb6\x25\x8b\x50\xb7\xb9\x4c\xca\xed\xda\x9c\xee\x4c\x83\x64\x5a\xf6\xad\x51\xb2\x12\x30\x71\x8d\x18\x9a\x88\xeb\x20\x05\xa8\x54\xc5\xaa\xa8\xec\x17\x97\x0c\x53\x06\x74\x2e\x8d\x7a\x2c\xd0\xf4\xfa\x79\x47\xfa\xd3\x26\x4f\x8d\x81\xe5\x3f\x19\xa7\x98\x96\x31\xe2\x8b\x7d\x6a\xfe\xd6\x6d\x57\x29\x10\x2f\x13\x37\x73\x7a\x1f\x98\x29\xfc\x5a\x90\x5b\x2d\x14\xc3\xcc\x1c\x69\xf0\x17\xa8\x13\xc8\xdd\xbe\x04\x00\x55\x11\xa3\x0a\x15\x27\x5f\x50\xc6\x41\x06\xb6\x71\x29\x36\x32\x78\x75\xa2\x22\xd7\xc6\x62\x09\xa1\x4f\xaf\x57\xad\x22\x94\xa0\x79\xf6\xa5\x89\xe9\x56\xcb\x0c\x0c\x79\x14\x6a\xcd\x6c\x80\xa9\xc7\xd2\x31\x7e\x55\x80\x3c\x2b\xee\x10\x97\x2c\x96\xcf\xda\x25\x9e\xc7\x19\x2a\x2f\xd5\x9a\x18\x2a\xa9\x97\xa3\xfd\xc9\xcb\x44\xba\x2a\x23\x87\x1b\xf8\x84\xaf\xf8\x3a\xd8\x0b\x88\x64\xc0\x0e\x0f\x8f\x0c\x4f\xea\xcc\xa9\x53\xf9\x34\xf0\x52\x4d\x01\x8b\xd1\x92\x26\x9a\x7b\xe0\x55\xb1\xf8\xb6\xa9\x07\x48\xc6\x7f\x5e\x23\x64\xd1\xc6\xdd\x72\xf7\xa2\x1b\xef\x6e\x1e\x9a\x0d\x97\xf6\x60\x7d\x9c\xc3\xa3\xcf\x69\x6b\x41\x8c\xfd\x64\xbf\xb1\xb5\x47\x93\x70\x09\x4a\x1e\x5e\x15\x40\x4b\xc0\x5f\x30\xaf\x7c\x99\xd2\x56\xb2\xe8\x21\xf5\x8c\x50\xb4\x86\x18\xf1\x7c\x81\xd2\x1a\x33\xa5\x69\xd5\x11\x3b\x15\x67\x16\x1f\x50\x4f\x21\x35\x2c\x6e\x3c\xdb\x9b\xfb\x7b\x79\x8b\x8c\x2a\x47\xaf\xf7\xac\x57\x66\x80\x18\x73\x3c\xe3\x50\x45\x1f\x12\x08\xa3\x85\x62\xf8\xf1\xf7\x64\xa1\xed\x29\x30\xaf\xdc\xa7\x0f\xe8\x86\x75\x8c\x36\x62\x7f\xff\xad\xeb\x74\x84\x73\x1d\xc7\xd2\xca\xe6\x41\x11\xcc\x00\x0e\x53\x28\x86\x63\x35\x3d\x6d\x21\xdc\x00\x1d\xcd\xe5\x03\x24\x25\xd0\x41\x85\x62\xf8\xdb\x4e\x79\x7a\x19\x35\xaa\x88\xcb\xd8\x15\x7b\x33\xcf\x3f\xad\x60\x59\x02\x62\x47\x7f\x7a\xd7\x38\xc5\x0e\x02\x33\x51\x02\x65\x6f\x7a\x58\x17\xd7\xf0\xa8\x41\x94\xfd\xf0\xf4\x9a\xea\x78\x8e\x54\x2d\xd3\x4f\xea\xfa\xbc\x16\x16\xd8\xa7\x70\x8c\x34\x55\xf7\xb8\xb4\x9e\x08\x93\xaf\x8e\x52\x17\xf4\xc4\xa3\x6e\x6c\x9f\xfe\x3f\x87\x13\x0b\xa6\x12\x00\x5b\xf2\x17\x8c\x52\xb9\x7f\x3e\x8b\xba\x38\xe1\x64\xb5\x61\xd6\x10\x95\x62\xc3\x62\x1c\xfd\x17\x9f\x96\x18\xd9\x12\x62\x2e\x6e\x4e\xb2\xdb\x0f\xf4\x5d\x44\x80\xc7\x55\x14\x69\xaf\x2a\xa5\x33\x17\x2f\x8f\xca\xc8\xc0\x20\x4a\x12\x7d\xfe\x64\x5b\xd1\x04\xa9\x34\xbd\x04\x67\xf6\x43\x4e\xbe\x9b\x52\xb3\x5b\x7e\xfb\x19\xb6\x42\xd6\x49\x56\xd3\x2d\xed\xba\x68\x32\x50\xee\x01\xe1\x95\x79\xf6\x55\x75\x24\x45\x78\x27\x1b\xfe\xe1\xfd\xbe\x75\x50\x61\x1c\xfb\xf9\x47\xb5\x79\x43\xe0\x5b\x1c\xd4\x0b\xf2\x20\xd9\x69\xba\x78\x82\x51\x0d\x6a\xc9\x16\x32\xff\xe0\xd0\x41\xda\x2e\x98\x0b\xc0\xe4\x01\x49\xba\x34\xaa\x0b\x5c\x15\xee\x93\x59\xb5\x71\xb8\x0a\x68\x75\xa8\x1f\xb3\x5a\x32\xbf\x7c\x79\xa8\x96\x01\x41\xc9\x22\x6b\x8d\x16\x85\x32\xf2\x3c\xfe\x7f\x14\x7b\xf3\xa5\x11\x8a\x52\x90\x59\x27\x9c\x16\xb6\xb0\x5d\x5b\xd2\x61\x56\x89\x79\xf9\x1f\x7b\x41\xa3\xf5\x06\x4a\x13\x94\x71\xca\xea\x70\xd5\x21\x76\x77\x81\x05\xbc\x8c\x78\x57\x5b\xc1\x01\x04\x4f\xdc\xf0\x8b\x8f\x2a\xb0\xbd\x6e\xcf\xc7\x4e\x14\x7b\xdf\x16\x1a\x33\x8a\x9f\x56\x31\xfc\xcc\x6c\x25\x15\xb9\xb4\xa1\x02\x67\x06\x69\x20\x05\x23\x88\x2b\xc8\xf6\x3b\x01\x3f\x3a\xad\xb5\x9d\xfb\xd0\x69\xec\x23\x07\xbb\x41\xd2\xe7\x3e\xba\x5c\xce\xe2\x4c\x26\x3c\x75\xf4\xe3\xf6\xbf\x67\x61\xb2\xbf\x98\x3a\x98\x29\x69\x2c\x77\xec\x9c\xb6\x8f\xee\x36\x6c\xea\x62\x31\xe8\xcb\x38\x8b\xd2\x70\x59\x61\x7b\xfd\x7f\xc9\x71\xf9\xda\x9b\x43\x12\x20\xa8\x32\xe6\xce\x9e\x58\xa6\x2f\x71\x1c\xca\xfa\xf2\x28\xf9\xee\xd0\xb4\xc6\x30\x82\xe6\xf8\x43\xc7\x85\xad\x97\x17\x45\x25\x9e\x98\x17\x6a\xb4\xfd\xb2\x7c\x3e\xd9\xf3\x2f\xca\x53\xd2\x43\x5d\x5a\xe7\xcd\xb7\x0f\x5d\xa8\x25\x9c\xc5\x32\x5f\xf1\x25\x72\x1d\x36\x42\x1f\xdb\xa9\x80\xb7\x70\x85\x81\xcf\xdb\xc6\xfb\xb5\x46\x9b\x94\xcb\x31\x37\x3e\x7f\xcf\x53\xe9\x37\xa5\x8b\x20\x87\xa7\x69\xb1\xc1\x7c\x65\x7e\x13\x3a\xae\x12\x1d\x4e\xf8\xed\xe1\x6b\xb4\x53\x46\x49\xec\x98\xda\x9b\x73\x41\x75\xb0\x30\x07\xa2\x94\x7e\xab\xb6\x1f\x81\x70\xb8\x84\x96\x90\x61\xf0\xcd\xd4\xb6\x13\x13\xb4\xec\x1f\xc3\x58\xbc\x09\x50\xc5\xa6\x4f\xc5\xe1\x69\xb2\x80\xaa\x4e\x54\x12\xd6\x4d\xc3\x35\xa2\x25\xf2\x19\x8d\x4b\xdc\xdc\x77\x4e\xc0\xe9\xb4\x49\x74\xc2\xbf\xff\x02\xd4\x07\x3e\xb7\x66\xe6\xa2\x7c\xb3\x74\x1a\xac\x50\x97\x8f\x25\x58\xff\x61\x8b\xa6\x0e\x4d\xa9\x59\xea\x16\x6e\x4f\xfd\x07\xea\xda\xf4\x26\x91\x62\xd6\x99\x87\x77\x5f\xae\xa4\x7f\x3b\x70\x4a\x24\x91\xd9\xec\x38\xc0\x3f\xb8\xd0\x68\x34\x5a\x4d\x44\xec\xee\x84\x72\x68\x00\x0d\xa1\xf4\x94\xdc\x11\xaa\xa8\xa3\xec\xa6\xc5\x31\x3d\xd9\x13\xdd\x6f\xcb\x49\x65\x01\xe7\x11\x93\xb7\x46\xf9\xcf\x1e\xd0\x4d\x06\x7c\x8f\xa6\xab\xb2\x97\x2e\x50\x16\x07\xd4\x29\x81\x6d\x4e\xb1\x37\xbf\x49\x93\x32\xaf\x31\xec\x90\xc0\x89\xd7\x5d\x6f\x7e\xa0\x8d\x5b\x89\xe9\x22\xae\x0a\x2b\xda\x94\x8c\x7f\x08\xde\x82\x7b\x68\x00\xe4\xb6\x62\x6f\xe6\x69\xcd\x88\xb4\xbd\x8d\xbb\x18\x03\x9e\xe3\xcf\x1b\xe1\x5b\xd5\xa9\x2f\x90\xa0\xf7\x3c\xa7\x43\x0e\x05\x10\x80\xf7\x6c\xe9\x03\xf6\xe3\x1e\x09\xbc\xf4\x90\xc1\x17\xa7\x58\x59\xd6\xe4\x37\x1e\x56\xf1\xd0\xb4\x4a\xd4\x57\xfe\xd6\x13\x49\x7e\x6f\x50\x35\xe2\x7c\xf7\x64\x3a\xde\x73\x71\x66\x8e\x95\xd8\xdb\xa2\xf4\x12\x9e\xc1\x61\x00\xd2\xfd\xf6\x7f\xe5\x44\x94\xa5\x95\x91\x33\xb3\xef\x14\xfe\xa1\xd4\x08\x3c\x68\x3f\x4e\xbd\x29\x1f\x5f\xfb\x54\x61\xec\xfc\xe7\x8b\x92\x37\xde\xb7\xb8\x6d\xf4\xea\xe7\x35\x06\x20\x71\xb1\x58\x73\x6d\x3c\x35\x52\x59\x00\x35\x8f\x1f\x32\xc6\xab\xfa\xa4\xc7\x08\x6c\x03\xf9\xf1\x5e\x3c\x3b\x5a\x73\x0b\x34\x2c\xe2\x62\x2f\xb1\x75\x0b\x0b\x79\xa1\x4e\x83\xcb\x0c\x05\x42\xa1\xc3\x7d\x4a\xa0\xa7\x90\x0d\xee\x09\xc5\xde\xdc\x9f\xb7\xb6\xe8\x4f\x2d\x3a\x91\x31\xae\x20\xaf\x69\xc6\x5a\x38\xca\xa1\x30\x6d\x9a\x7f\x32\xa9\xc5\x4b\xb4\x09\x46\x95\xf9\xe3\xc9\x2b\xf4\x88\x41\x99\x2f\x06\x07\xb9\x9b\x4e\xcb\x38\xca\x87\x07\x85\x62\xf8\xdd\xf7\x2f\x89\xb3\x72\x54\x34\x8e\xb9\x3f\xbd\xcb\x19\x87\x9c\xda\x8d\x7d\x4d\x78\x32\xb3\x47\x29\x3e\x80\xc4\x4d\xf4\xa7\x2e\x78\x46\x71\xe3\x27\x8e\x80\x1e\xf2\x40\xf3\xee\x9c\xbf\x51\x4b\x7d\x86\xbd\x1a\x75\xf9\x9e\x5e\x1b\xde\xfd\x72\xb1\x82\x1c\x8e\x61\xf4\x99\x99\xaf\x0b\xaa\x40\xc0\x9d\xa8\xa3\x1f\x7d\x68\x84\x86\x9e\xe1\xee\x96\x22\xeb\xb6\x1d\x18\xa2\xce\x9b\x3d\x6a\x73\xe2\x5c\xe6\x8f\x4a\x7b\x91\x68\x93\x15\x7b\xf3\x73\xee\x1f\x24\x69\x0f\xd1\x17\xe6\xc5\xda\xc0\x23\xb2\xe6\x46\x36\x58\x63\xf0\xe3\xf0\xdf\xa7\x14\x62\x3b\x23\xa5\x00\x20\x2b\xd1\x27\x8f\x08\x93\x97\x05\xf9\x0a\x1f\x39\xf3\xca\xc3\x72\x63\x57\xe6\x5d\xf2\x05\x87\xd2\x33\x6b\x9b\x1a\xd1\x35\xf9\xe9\x65\x6b\xfe\xf3\x25\x55\x34\x2b\x00\xdf\xa2\xfc\x9d\xb3\xd3\x27\x05\xd5\x29\x89\x25\x4e\x6e\xda\x71\x69\xdc\x0c\x09\x89\x2d\xcd\xaf\x08\xbb\x66\x8c\x13\xb8\x40\x9c\x51\x8b\xf2\x00\x55\x28\x86\x3f\x59\xa9\x97\x28\x51\xd4\x06\xd5\xf5\xce\xf7\x85\xd8\x6e\xa1\x2d\xfa\xed\x21\x6f\xcb\x2d\x5b\xbc\xa9\x50\x02\xc7\x37\x15\x60\x98\x17\x78\x06\xae\xf9\x44\x48\xf5\xbc\xdf\x2f\xb9\xe1\x28\x89\xfa\xd9\xce\x67\xa0\x94\xbe\x8d\x8b\x60\x49\xd1\x8d\xef\x4a\xad\x3c\x3b\x28\x29\xad\xfb\x05\xab\x07\x8a\x38\xda\x49\x63\x20\x72\x86\x2e\xbd\x46\x99\xff\x0a\xbb\xae\xa6\x98\xf8\xcb\xd5\xf2\xa0\xcd\x10\x7e\xf1\xbd\xb9\x7f\x9f\xad\xe0\x3e\x83\x84\x27\xf9\xe5\x87\x93\x77\xcf\xc2\x4d\xd4\xd6\x5c\xcb\x0a\xf9\x88\x14\xab\xb2\xd7\x34\xee\x78\x60\x97\x89\x6d\x83\x8e\x64\x58\x18\x9c\xa2\x57\xd7\x78\x62\x59\xf0\x8c\x56\xa0\xe0\x3a\x76\x03\x2c\xcc\xbc\xfa\x6b\x27\x9e\x71\xbd\x12\x40\x42\x7c\xe3\x99\x51\x4a\x6b\x6b\x97\x0b\x15\x5a\xc7\xcc\x75\xe0\x15\xe3\xc7\x79\x93\xab\xcf\xfd\x18\x0b\x6a\xbc\xfb\x6b\x2d\x14\xc3\xf2\x59\x75\xc9\xeb\x96\xb9\x9e\x6c\xa1\x18\xfe\xcb\xe9\xa4\x15\x9d\x52\x70\x0a\xc5\xeb\x94\xcd\x6a\xd3\x60\x27\xfb\xc8\x33\x97\x2b\xed\x74\x43\x61\x45\x84\x0b\x2e\x92\xff\xc9\xb3\x70\x1d\x31\xd3\x45\x66\x0f\xec\x11\x9e\xd7\x85\x45\x5d\x24\xb4\xf0\x60\x18\xf8\x83\xfb\xd3\xe5\x6b\x0a\xf3\xa2\xeb\x52\xf6\xe6\x3e\xe2\x6b\x6a\xcd\xa8\x06\x9d\x78\x68\x5e\x2c\xef\xbb\x1f\x33\x5d\x50\x4f\x3a\x99\x56\x91\xd7\xd3\x6d\x54\x49\x5f\x3e\x63\x4b\x6c\xd1\xbc\xc6\x0a\xd7\xbd\x99\xa5\x63\xe5\x3d\x71\x89\x61\x51\x1b\x79\xca\xf1\x3d\x1a\x02\x4e\xeb\x56\x0b\xbb\xb4\x81\x7d\x4b\xf9\x6f\x9f\x93\xde\x33\x76\x77\x33\xe5\xe1\x27\x27\xf5\x29\x50\xd4\x01\x93\x78\x56\x9b\x5f\x57\x1f\xa2\x12\xcd\xa3\xda\x8c\x87\xa1\x85\x87\x65\xcf\xd8\x40\xb6\x41\x7d\x85\xb8\x9b\xd9\xd5\xa5\x4c\xce\x2d\x0a\xe0\xf2\xde\xcc\xb1\x91\x2d\x2a\x2f\xbc\x5c\xc0\x5d\x9c\x8e\x1d\xdb\xa2\xbe\x0f\x55\xec\x7d\xd4\xf5\x30\x69\xba\x2f\xef\x32\xd8\xe2\x44\xe7\xae\x94\x78\xa5\xe5\xfe\x7d\x7d\x1a\xb0\xc8\x47\x0e\x36\xf1\xfc\xbe\xee\xed\x89\x3a\x7c\xc4\x22\x0b\xdb\xcd\x4d\x49\x6e\x53\xbe\xa9\xee\xf2\x12\x5f\x9a\x70\xe4\xf9\xcb\x95\x93\x99\x32\xdc\xcf\x4e\x80\x04\x5e\xf8\xb8\x4b\xa8\x4b\xbc\x66\x61\x9e\xcb\x44\x8b\xca\x68\xa9\x24\xc6\x14\x99\x0b\x4e\xc7\xe2\x2d\x60\x14\x1d\xfe\xb4\x27\xad\x73\x80\x4c\x27\x4a\x7f\x7e\x62\x31\xca\xb3\xc3\xba\x45\x03\xd5\x73\x0e\x93\xb6\x9b\xf3\x05\x9d\x4b\xa5\x69\x50\xea\x57\xf4\xbf\x9a\x78\x2d\x18\x19\x82\x97\xc2\x37\x1e\x51\xf6\x6b\x00\xb8\xe5\xad\xee\x0b\xaa\xd7\x89\x61\x41\xd7\xd3\x18\x2a\xdd\x60\x6c\x54\xc5\xdd\xd8\xad\xca\x8a\x39\xbc\xe6\x45\x09\x24\x07\x83\xc0\xa6\x09\x87\x79\x85\xc2\xd2\x66\x81\x93\xa2\x96\xce\x16\x30\xfc\x5b\xa3\x22\x58\x85\xb0\x7c\x4d\x8c\xbc\x3c\x3b\x70\x6a\xa0\xd7\xb7\xa6\x69\xf3\xe0\x93\x28\xbe\x89\x21\xd9\xbd\xda\xa2\xb7\x1c\x55\x26\x86\xb0\x20\x16\x81\x6e\x40\x3e\x29\x1e\xdb\x39\x2b\x5a\xd2\x02\x4f\x1d\x6e\x32\xc1\x94\x78\xeb\xdc\xa8\xa7\x64\x4d\x60\xa1\xc0\x8d\x77\xd3\x9f\x38\x0f\x39\xed\x6e\xbe\x4a\xc9\x7d\xdf\x92\xef\x46\xfb\x94\x82\x45\xb9\x6e\x57\xbf\xc7\x35\x76\x18\x4e\x46\x08\xbb\x9f\x1f\x90\x3c\x07\xb1\x82\xfa\x94\x20\xc6\x3b\x18\x71\xc7\x22\xfe\x87\xb7\x2f\xef\x5b\x8d\xdd\x51\x51\x53\x17\x2d\x56\xec\xb1\x84\x3f\x67\xf4\x17\x7f\xbd\x69\xb4\x32\x03\xf3\x7c\xa1\x04\x9d\x7e\x4e\x9f\x81\x7e\xab\x70\x2b\x37\x84\x68\x2a\xdb\x1e\xb9\x5f\x83\xb5\x20\x26\x14\x92\xbe\x79\x44\xd1\x39\x45\x36\x4c\x46\x73\x9b\xd7\xc8\x6b\x31\x6c\x8c\xe0\x8b\x84\xdf\xd1\xee\x32\x47\x4b\xd7\x11\xd8\x4e\x65\x7e\xb4\x47\xc8\x69\xd7\x30\x62\x16\x4c\xb7\xa2\x9f\x3f\xb3\x72\x88\xca\x66\xe0\x1c\xe3\xe8\xe7\x97\x4e\x14\x2c\x76\x9b\xf4\xf4\x08\x51\x92\xdb\xb6\x25\xa5\xd2\xf4\xb6\xf6\xe8\x5f\xfd\x6c\x1b\xdc\x50\xae\xac\x2e\x84\x67\x32\x07\x5e\x4e\xd5\xb4\x1c\xbc\xee\xde\xa0\x8c\x49\xb1\x47\x59\xcc\xb6\x3e\xd9\xaa\xca\x86\x78\x30\x22\xce\xfe\x74\x59\xec\xe8\x93\x08\x11\x72\x11\xc2\x63\xf0\xe3\xc4\xaf\x0d\xba\xe1\xdb\x5e\xbc\x52\x6b\x31\x7c\xcb\x64\xa8\x81\x6c\xc0\x7f\xad\xdb\x38\x54\xad\x3a\x2b\x81\x27\x60\xb7\xab\x99\x3e\x35\xc6\x0e\x8e\x15\x22\x66\xb4\x8c\x56\xd6\x18\xae\xcf\xfa\x0a\x4f\xb3\x2f\xd2\x1b\xf1\xb8\xd1\x80\x6a\xc2\x55\x54\xc9\xbb\x91\xc7\xc7\xfb\xe1\xc9\xa7\xd3\xe1\xd2\xa1\x01\x73\x63\xfd\xce\xf0\x95\x17\x92\xbc\x5e\xe6\x60\x87\xcc\x7d\x7b\x15\xc9\x73\x9b\x38\x35\x91\x4c\x76\x1c\x4e\x9e\x47\x9d\x76\x17\x8a\x61\xb0\x4e\x16\x76\x0b\x53\x5c\xcc\xec\xb6\xed\x89\xb5\x8d\x43\x5d\x3e\x6b\x03\x0a\xfd\x69\x0d\x63\xef\x91\x18\x9c\x91\x44\xe9\xcc\x37\x5f\x4a\x3e\xc8\x04\x36\xec\x05\x13\x93\xca\x8f\x56\x94\x72\x3a\x77\xcd\x00\x59\x67\xdb\xaa\x7c\x72\xab\xad\x72\xd2\x5d\x94\x8c\x27\xb3\xcf\xe7\x75\xfa\x63\x85\x80\x2b\x29\x94\xcd\xeb\xee\x57\xd6\x11\x08\x46\xe6\x63\x3b\x95\xd9\x33\x65\x7c\x8a\xcd\x83\xc9\x02\xb9\xb0\xf6\x51\x57\xf4\x04\x66\x25\x78\xdd\xb2\x66\x9a\x7f\xcb\x80\xcb\xe2\x97\xc8\x11\x1c\xb5\xec\x32\x51\x78\x4f\x6a\x2b\xc4\xd4\x96\xcc\xd5\x6b\x64\xff\x94\xb8\x7f\x42\x90\x5a\x9e\x85\xdb\x5a\x63\xb4\x4c\x7c\x8c\x13\x1c\xca\xdc\x26\xf7\xc1\x1a\x4f\xbd\x82\xda\x3f\xfc\x59\xb9\xc8\x50\x5d\xa5\xee\xd9\x9c\x7e\x89\xad\xc0\x34\xed\xb8\xaa\xc8\x7d\x7f\x9d\xae\x42\x16\xb5\x6b\xb1\xd0\x4b\x7e\xe4\x79\x45\x8e\x06\xaf\x0a\x08\x68\x45\x0e\xba\x5f\x1b\xf7\x30\xb4\x4a\xda\x79\x65\x7e\xfe\x92\x94\xb5\x32\xaa\xca\x13\xeb\xa7\x79\xe4\x22\xc3\x22\xb8\x0e\xc5\x1f\x6f\x5e\xaf\x3a\xaa\xf0\x1f\x91\x4f\x04\x72\x28\xf7\xaa\xe2\x53\x1f\xb8\x4e\x94\xa5\xa3\x2c\x73\x40\xb3\x08\xf7\x89\x51\xc5\x31\xcb\x7e\xcb\xd9\x2b\xc4\x03\x8e\xca\x63\x1a\x78\xa9\x5c\xb6\x63\xb1\xe0\x9b\xe3\x0a\xf1\x6c\x4e\x2d\x89\xbe\xd9\xd1\x39\xa2\xcd\xc0\x46\xc0\x08\x58\x4d\xe5\xbe\xf4\x38\xf4\xfc\xc8\xc4\xab\x02\x4e\x15\x29\x14\xc3\xe3\xf3\xd5\x0c\x6c\x3b\xfc\x87\x3b\xc7\x2b\x96\x01\xd8\xe7\xa2\x12\xe1\x86\x39\xba\xfc\xb3\x61\x11\x1f\x1b\x7e\x8c\xcc\x7c\x76\xab\x6a\xb0\xc5\x15\xed\xa0\x41\xfb\xd4\x70\x65\x66\x6d\x21\xd7\x85\x48\x1a\xbe\x3d\x44\x89\x70\x9d\x81\x30\x09\x9c\x7a\x43\x72\x02\xaa\x2a\x66\x6c\xd6\x2e\x09\x54\x23\xbc\x4e\x38\xb1\x30\xa5\x44\x48\x7c\xcc\x18\x72\x31\x0c\x2e\x96\xdd\xa0\xe9\xd8\x04\x0c\x41\x5b\x72\xe9\x2e\x8d\xa4\x80\x98\xab\xa8\x08\xcf\xec\xaf\x18\xaf\x22\xd7\x24\x66\x3c\xb5\x75\xce\x6a\xee\x65\x84\x71\x0d\x09\x48\x24\xc3\xb7\xa4\x6b\x81\x8a\x8d\x5d\x57\xc3\x21\xaf\xdb\x7f\x59\xdc\x73\x61\x41\xe6\xcb\x6e\x54\xa8\xc7\xdc\x06\x8a\xd7\x64\xdb\xe7\xaa\x64\x5e\x90\xc3\x0a\x77\xbd\x39\x5a\xc5\x24\xc2\x00\x52\xc3\x58\x6f\xf9\xe0\xca\x54\x43\xd8\x84\xf7\xdb\xa2\x5b\x60\x50\xdf\x8a\x87\xee\xd9\x9f\x9f\x50\x1d\x1c\x1a\x29\x85\xb2\xcc\x0c\x5f\xd9\x75\xda\x7e\xf2\x4e\xdf\x5c\x82\x82\x62\x29\x32\x88\x0d\xcf\xf6\x8e\xf9\xfd\xc5\x01\x64\x25\xfe\x7d\x26\x6c\x17\x27\xd2\x8f\x02\x9c\x98\x57\x4c\x5d\xa0\x93\x6a\x29\x31\x12\x6e\xc7\x0f\x35\x01\x8a\x20\x2a\x85\x79\x5f\x0f\x90\xb0\x8f\xb7\xc2\xc7\x3a\xc4\x4d\x88\xc2\xc3\xd5\x17\xbd\x82\x18\xc0\xd5\x1f\x1c\x0b\x1f\x3e\x27\x25\xaa\xac\x12\x06\x80\x54\xe8\xf1\x65\x8a\xb5\x47\x51\x91\x21\x36\xd0\x69\xff\xa0\x2d\x3f\xcb\x41\xf4\xae\x09\x5c\x8d\x79\x66\x48\x1a\xd8\x23\xd4\xcb\xa6\x1f\xd4\x66\xec\x01\xab\x51\xe1\x03\x94\xf7\x37\xcb\xe0\x69\x11\x8f\xcb\x29\xc0\x70\x6e\xdf\x34\x85\xb2\x6d\x08\x0b\x95\xcc\x65\x87\x24\x33\xb1\x13\xb9\xf8\xda\xe6\x76\x63\xfa\xb6\x74\xce\xa2\x36\xa9\x63\xc2\x90\xaa\x9d\x9e\x19\x55\x6e\x36\x24\x8f\xca\x8b\x44\x7f\x74\x02\xd3\x5d\xe2\x4c\x69\xf5\x94\x2b\x9f\x03\x47\x81\xdb\x5c\xcc\x2a\x94\xb8\x75\xdc\x9c\xfd\x33\xd7\x3d\x27\x9f\xc3\xa4\x19\x33\xda\x0b\x33\xb8\xe1\xe1\xed\xab\x13\xbb\x0b\x4e\x41\xcd\xcc\x4c\xaf\x5c\xae\x87\x95\xcb\x06\xc0\x94\x16\x16\x93\x8a\xe5\x37\xe3\xb5\xbe\xfd\xa2\xb0\xaf\x44\x6e\xa0\x4a\x9d\xe6\xf6\x2d\x53\x40\x45\x36\xea\xe6\xc6\xcb\xc5\x70\x88\x06\x62\x03\x01\x07\xcf\x22\xb5\x18\xe6\xb6\x61\xb4\x02\x02\x05\x29\xf9\x42\x31\x7c\xaf\x53\xd8\x22\xb8\x26\x6d\xf0\xad\xa0\xe6\xbc\xfc\x09\xf1\xf8\xdf\x1e\x09\xb9\x4e\xb5\x34\x8a\x6e\xe4\x3f\x1e\x55\x7a\x5d\xcc\x62\xa9\xb0\xac\x73\x43\xfa\x09\x70\x2f\x8d\x12\x65\x71\x43\x96\x7b\xfd\x03\xad\xed\x40\xae\x4f\x95\xcd\xce\xe7\x35\x15\x3f\x20\xe9\x25\x8d\x43\x23\xab\x9e\x1f\xca\xf8\xfe\x20\x77\x74\x8d\xf2\x6e\x04\xc2\xd9\x26\x7c\x79\xa6\x3a\xf9\x76\x71\x77\xc1\x33\x58\x50\x02\x49\xd4\xde\xdc\x5b\x6d\xf2\x4f\xb1\xa8\x34\xe2\x2f\xc3\xcd\x65\xc9\x8f\x9f\xc2\x27\x6b\xf9\xea\x19\x0d\x04\x66\x07\xe2\x45\x0e\xd7\x75\x69\xce\x9a\x51\xcf\x26\xe2\xcd\x29\x65\xd5\xc1\xd9\xc4\xfc\x06\x6d\x50\xe4\xf0\xbd\x00\x44\x5b\x33\xcf\x74\x0e\x53\xe0\xd1\xc8\xe6\x1e\xec\xfc\x72\xc6\xae\xd0\x4c\x3a\x1a\xc8\x35\x15\xa7\x91\xcc\x47\x47\xa5\xa7\x25\x0c\x99\x84\x46\xb5\xfe\x04\x5d\xd5\xbe\x37\x37\x7d\xb9\x86\x9d\x0e\xdc\x12\xb6\xfd\xbe\xc8\xa8\xd9\x5f\x9c\x8b\x05\x51\x6a\x8c\x78\xc8\xe6\x72\x60\x57\x6f\x4a\x27\x1e\x0b\x77\x4f\xc0\x5d\x5c\xc2\xb6\x5f\x93\xfc\x1d\x17\xb1\xe4\x8f\xa7\xfd\x11\xc8\xe4\x77\x30\x6c\x23\x37\x76\xcd\xc9\xec\x3d\xaa\x04\x23\xea\x41\x1d\xf1\xd8\x2c\x7d\x74\x1e\xf5\xce\x42\xa6\xb8\x20\x14\x44\xa2\x3a\xa7\x8e\xc0\xf0\x2d\xfc\x7c\x4f\x53\x23\x6b\x04\x25\xe2\x62\xe1\xbf\xb7\x68\xb7\x00\xba\xfa\x96\x8d\x21\x14\xf2\x52\x5f\x9a\x8a\xbb\x15\x65\x0a\x94\xdd\xa6\x91\x87\x3a\x59\x2b\xe7\x9d\x4a\xb0\xd3\xa7\xc1\x5c\x2d\xfa\x8f\xf7\x2e\x52\x5e\xd2\x9b\xda\x84\xee\x50\x7b\xa1\x18\x3e\xd2\x39\x58\xad\x56\x69\x0f\xad\x17\x8a\xe1\x6b\x4f\x69\x72\xf7\x01\x13\x92\x5d\xd1\x39\xf8\x9e\x20\x33\xdd\x8a\xc0\xe7\x9c\x97\xca\x5b\xc6\x24\x17\xda\x8d\x14\xa0\x5f\xf6\x43\x75\x79\x80\x2b\xb4\x07\xac\x69\xd6\x2b\x36\x19\xb5\xc0\xed\x44\x1c\xf4\x76\xef\x26\x45\x6c\xc0\xe7\x9a\xe9\x7c\xd6\x97\x3d\xf6\xa4\x94\xf6\x33\xa3\xb8\x55\x98\x99\xfe\xf6\x93\xa7\x25\x72\xf9\x10\xc1\xb6\x8f\xd3\x6c\x06\x05\x3c\xcb\x13\xa8\xd9\x5b\x94\xc8\x80\x5d\x9f\xf8\x60\xed\x5e\x7e\x52\x14\xcd\x51\x17\x52\xa8\x72\x87\xbc\xe8\xe9\x7c\x72\x45\x52\xfa\xcc\x98\x34\xbd\x50\x0c\x6f\x5c\xaf\x6b\x33\x99\xc2\x4e\x4b\x0c\x26\x4a\x2b\x34\x3f\x29\x1a\x6f\xce\x9b\x62\xf5\x2f\x56\x8f\x52\xc6\xa8\x81\xeb\x37\xed\x7b\x73\x2b\x5e\x15\xe8\x0a\x1b\x99\xa4\x4e\x3d\x9f\x56\xc5\x8c\x36\xf7\x7e\xbf\x61\x5a\x31\xd5\xcd\x31\x84\xe1\x83\xbb\x65\x25\x11\x8f\xda\xbd\x58\x64\xec\x8a\x43\x0a\xec\x17\xbb\x98\x97\x42\xe1\xeb\x07\x75\x70\x33\xea\x8e\xb1\x06\xd9\x4b\x57\xab\x7c\x5c\x9b\x63\xd1\xa3\x9f\x1f\xb2\x35\x45\x40\x42\x52\x3b\xd1\x05\xb5\x58\x3c\x85\x38\x98\x8f\x8d\x25\x52\xc9\x0c\x38\x10\xf2\x5e\xcd\xaf\x06\x31\x86\xbd\xb8\xac\xcd\xee\xcf\x2b\xfd\x99\x45\xb0\x9d\x68\x4b\x0e\x3f\xa6\xd4\xb5\x7e\x60\x02\xe9\x2b\xff\x21\x85\x6a\x89\x5c\x37\xe0\xdf\xed\xcc\x3a\x55\x6c\xa4\x22\x66\xc5\x9c\xb2\xa9\x78\xbd\x59\x14\x75\x41\x50\xcb\xf5\x9c\x97\xcd\x5d\x99\xd2\xe8\x78\x74\xcd\x57\xa8\x1a\xbc\xdb\xfc\xd4\x62\x39\x41\xe4\x8e\x11\x05\x07\x31\x3e\xfa\xeb\xcd\xfd\x71\x8d\x12\x44\x09\x98\xa4\xcf\xdd\x90\x0e\xc5\xb8\x8e\x63\x7f\xcf\xdc\xbf\x2f\xd4\xb4\x06\x21\x10\x49\x0b\xb3\xde\xcc\xf1\x56\xcd\xa0\x57\xe8\x56\x7b\xf1\x22\x79\xe7\x07\x43\x53\xcb\x30\xe2\x81\x1c\x7a\x7e\xc3\x1a\x45\x1d\x08\x19\x55\x31\x64\x39\x3a\x58\xf1\x3d\xb1\x40\xe4\x32\x7b\xc9\x34\xd9\x54\xd3\x28\x47\xdd\xd2\x2f\x86\x01\x22\x8f\x87\xd8\x1f\xb4\xc8\x47\x82\x6c\x1b\x4c\x8c\xf9\xc1\xfa\x81\x66\x9a\x12\x18\x16\xae\x94\x82\x09\x0a\xc2\x20\xbb\x7f\xff\x65\xca\x45\xda\xbc\x70\x9c\x59\xd3\xb5\x0d\x3c\x8f\x2b\x93\x43\x6b\xd3\xf1\xb2\xbc\x4e\xe2\x9a\x3c\x9c\x67\x1e\x7c\x5c\x9e\x48\x9b\x76\xf3\x19\x71\xf4\xf3\xb6\x67\xb5\x13\xc9\x25\xde\x6d\x14\xd3\xb4\x37\xbe\x2e\xed\x97\x69\xd3\x3e\xf1\x03\x8d\xc4\x6d\x32\xdc\x10\xad\xe0\x57\x5d\x95\x94\x52\xb3\xa9\x83\x92\x5d\x89\xbb\x55\x33\x52\xa0\xcc\x8f\x4e\x59\x0c\x5d\x6c\x1f\x9e\x92\x6d\x44\x15\xfe\x2e\xfc\x93\x62\xbc\x59\xa3\x9e\x47\x4a\x20\xb9\x3d\x6d\x7b\x13\x78\x8e\x09\x02\x7b\x66\xd8\x00\x89\x95\xc5\x75\xcc\xb8\x16\x20\xf0\x49\x00\xce\x9a\x3b\xcc\x52\xba\x28\x30\x53\xca\x9c\x3b\x3a\x3c\x3d\xac\x27\x0e\x82\xdd\x60\x6e\xd4\x33\xba\x68\x31\xe8\x8a\x42\x30\xcb\x7c\x77\x9c\xa2\xc0\x12\x75\x9d\x35\x6c\x23\x6e\xfc\x95\x5b\x32\x20\xb9\x97\xad\x66\x13\xa9\x3c\xf7\x31\x8d\x08\xd5\x20\xae\xe9\xd1\xbe\x7d\xf5\x36\x2e\x84\x72\xcf\x46\x35\xe0\x88\x2d\x9d\x93\x0e\x47\x0d\x8b\x08\x06\x6e\x31\x9c\xb6\xbf\x0f\xa9\x3a\xde\x5d\x7e\xb7\xae\x21\xbe\xcb\x65\xec\x7a\xdc\xc9\x96\xa7\x67\xff\xed\x34\x1e\xa9\x81\x85\x89\xa0\x1e\x97\xaf\x78\x43\x36\x7b\xa8\x44\x99\xdf\x17\x37\xe7\x8e\x4e\xf5\x56\x13\x9b\x4f\xfd\x7f\xa4\xfe\xd0\xc2\x5c\xa7\x2d\x3c\x51\xd7\x5c\xb3\x08\xe3\x22\x53\xf1\x11\xa7\xcf\x35\x39\xf0\x3a\x35\x50\xe7\xe7\xd7\xfd\xe8\x92\x54\xa5\xe6\x07\xfc\x5d\xfd\xb5\xa5\xd8\x5a\x60\xc6\x25\xb2\x5c\xc1\x74\x9d\x72\x4c\x46\xb0\x06\x81\x15\xe3\x2b\x0a\xc8\xd0\xab\x91\xb8\x91\xbf\x53\x26\x58\xdf\x8a\x7e\xd2\x35\x45\x73\x28\x2d\x19\x80\x81\xd4\x48\x9a\xdb\xa0\x98\x28\xce\xe3\x6c\x9d\xe7\x15\x76\xf0\x54\xae\x4a\xba\x43\x36\xc3\x0c\x79\x4e\xe0\x79\xaa\x9b\x5f\xe6\xa5\x3d\x2a\xed\x07\xd4\xa1\x8a\xe1\xd7\xb4\x3a\xcd\xb0\xb0\x04\xec\x2f\xd7\x48\xca\x35\x0b\xbb\xd4\xc1\x12\x86\x9f\xf9\x7d\x39\x1d\x83\x4c\xda\x70\x81\xf9\x52\x70\xa9\x8b\x0b\x3c\xd8\x2a\x28\x46\x93\xb8\x2e\x94\xb8\x9b\x94\x06\xa6\x8c\xf9\x34\x87\xf7\xaf\x5f\xdf\x06\xa8\xe7\xbb\xea\x88\x8f\x5b\xad\x3a\x51\x46\x88\xe1\x6f\x67\x5d\x12\x7d\xce\xd2\x38\x27\x9f\xd5\x20\x6f\x86\xc5\xba\x3d\x1b\x33\xdd\xa3\x25\xf7\x83\x39\x3a\x90\xcd\x17\xcc\xbd\xde\xec\xb0\x4d\x57\xf4\x71\x8e\xb1\x00\x88\x8d\xd9\x34\x24\x0d\x28\x70\x61\x98\xf1\xd0\x43\x32\x01\x10\x93\x97\x36\xe0\x73\x5e\x3a\xa0\x60\x9a\xa2\x4c\xc9\x27\xe2\x33\xda\x07\x2b\x21\x94\x71\xe4\x66\xb1\x37\xf3\xec\x02\xa1\x0b\x1a\x78\x1e\x9f\x70\x24\xd4\xe8\x8e\x87\x34\x14\x81\x47\x4c\xb1\x4d\xfb\x63\xf6\x6a\xb8\x49\x0c\x39\x98\x95\x28\xad\x36\x5b\xdb\xff\xf4\x70\x3a\xb8\xb6\x73\x6a\x00\xbf\xc7\xb9\x0d\x9a\xf2\x0b\xe1\x19\x40\xdc\x8d\xdb\xb2\x1a\x5f\x94\xab\x6a\xf9\x52\xcc\x30\x3b\xb1\xb5\xd9\x3d\x39\x9e\x98\x7f\xb4\x4b\x03\x9d\x61\x3e\xb1\xe0\x26\x06\xbd\x07\xd2\x9f\x3b\x69\xc6\xf4\xa9\x85\x19\x6d\x02\x43\x53\x3b\xad\x7d\xdf\x06\x62\xf1\xd0\xf3\xe7\x59\x99\x0e\xdc\xa0\x84\x55\x1f\x0e\x7b\xd6\x40\x91\xac\x56\x05\x44\x40\x3d\xb2\x1f\xda\xa5\x9a\x27\xd6\x7c\x22\x50\x30\x4b\x65\x69\xd2\x3e\xc9\xf3\x0b\x65\x9b\x72\xe3\xb8\x4f\xb6\xc8\xe3\x68\x04\x7e\x82\xe0\xde\xb2\x4d\xfe\x1d\x1b\x53\x17\xb6\x20\xf9\xce\x11\xea\x92\x16\xdb\x75\xd8\x25\x5c\xa6\x88\xc1\x95\x00\x23\xca\x83\xfe\x78\x31\x21\x5e\x84\x6a\xea\x16\x2e\x3f\xff\x2d\x79\x26\x56\x11\xb7\x62\x05\x9c\xd8\x38\xb7\x47\x4b\x49\xa8\x1a\x2b\xc7\xe5\x6e\x9c\xa3\x9b\xaa\xd4\xb1\xe7\x53\x26\x5f\xb8\xcc\x29\x5b\xfe\xd5\xb2\x8d\x31\x74\xbf\xb3\xf7\x2b\x9a\x05\x86\x45\x69\xb3\x95\x42\x9e\x28\xdb\xc8\x6e\x0c\xb6\x54\x92\x87\x12\x7e\xfa\xb5\xc1\xca\x10\xd2\x42\x8c\xef\x01\xb2\x3f\x5a\x92\xde\xbc\xd2\x6b\x5d\x4c\x6c\x5b\xb3\xbd\x70\xf6\x6b\x5d\x33\xe2\xd2\x05\x9c\x25\xb0\x6f\x65\xfa\x2d\x0e\x5c\xe2\x73\xc9\x9a\xff\x8f\xae\xb7\x8f\xb3\xaa\xaa\xf7\xc7\xdd\xe7\x9c\x08\x11\x61\x80\xe1\x41\x44\x44\x54\x44\xe0\x8c\xc3\x30\x0c\x03\x97\x54\x10\x91\x08\x39\x13\x12\x2a\x71\x89\x75\xf6\x59\xe7\xec\x35\x67\xef\xb5\x36\x6b\xef\x7d\xce\xcc\xa4\x64\x44\x46\xa4\xc4\x25\x23\xaf\x99\x71\xbd\x66\xc4\x35\x33\x33\x32\x9f\xae\x15\x79\x89\xcc\x1f\x99\x97\x8c\x6b\x64\x44\x66\x46\x46\x48\x48\xc8\x6c\x7f\xaf\xbd\xd6\xda\x7b\xad\xbd\xce\x7c\xff\xf2\xe5\x0c\x73\xce\x7e\x58\xeb\xb3\x3e\x0f\xef\x87\x06\x7e\xa6\x62\xbe\xed\x13\x95\x3d\x93\xf9\xc2\xab\xbc\x55\xf2\x31\x26\x1c\x9c\x70\xbe\xc2\x31\x9d\xe9\xf2\xa0\x04\x3c\x54\x44\x03\xba\xa7\x8c\xdf\xa9\x26\xb9\x71\x70\x37\xa6\x6b\x8e\xa3\xa6\x8d\x12\xec\x43\x6e\xf0\xb2\x24\x10\x57\x08\xab\xad\x1e\x7f\x22\xfd\xcf\xab\x18\x95\x85\x67\x52\xf8\xa0\x26\x51\xe0\x44\x67\xbc\x28\x4c\xb3\x4b\x26\x4c\xc0\x0d\x58\x72\x05\xc9\x9c\xdb\x34\x26\x7d\x12\xd7\xa0\x2f\x10\xae\x9d\x96\x3a\x9a\x44\x09\xf2\xda\xdf\xab\x09\xdc\x01\x5c\x15\x80\xb6\x70\xce\xea\x06\xb8\x9b\x09\x29\x16\x90\x5b\xe3\xb1\x1d\xb2\x5b\xe2\x7b\xbd\x15\x80\x55\x9a\xd5\x9f\x56\xa5\x8f\x58\x46\x68\xe4\xc7\x3b\x6b\xac\x05\x93\x93\xc4\xb6\x65\x6e\xb4\x2a\x33\xff\x98\x18\x4b\x51\x3a\x84\x37\xe4\xfb\x8d\x7b\xfa\x34\xd4\x4c\xd9\x4f\xe4\xac\x56\xb6\x08\xe8\x3e\x50\x95\xca\xfb\x73\x4b\x5f\x56\x34\x1a\x09\x66\x3d\x93\x1a\xf2\x84\x42\xeb\xa9\xdb\xf4\xe2\xdf\x61\xd2\x5e\x1c\xa8\x17\xae\x7d\x32\xfd\x6b\x12\xf8\x4c\xa3\x36\x6e\x27\x6d\x5f\xaa\x6b\x62\x31\xc7\x1c\x31\xde\x1e\xd5\x9e\xce\x1b\x2c\x60\x97\x5d\xe4\x26\x2e\x5d\x99\xd9\x0f\xf0\x6b\x16\x24\xe5\x78\x09\x8e\x1c\x37\xb6\x61\x79\xc7\x4b\x1f\xbc\x3d\x2a\xb1\x31\x90\xad\xcb\xf0\xf0\x6e\xb9\xd0\x29\xf2\x54\x63\xe7\x3b\xfa\xb4\xca\xc4\x8c\x96\x23\x2a\x23\x53\xa4\x37\x9b\xfd\xf1\x4a\x95\xdb\x70\x30\xfc\xbe\x3b\x8d\x0c\x9d\x3b\x97\x3b\x14\x66\x80\x76\x2c\x78\x2c\x74\xc4\x1e\xeb\xbf\x1f\xac\x68\x6c\x31\x8e\xdc\xd6\xc7\x2e\xd2\xf7\x05\xf6\x49\xb4\x75\x45\xed\x9f\x19\xb6\x5b\xd3\x2e\x4c\x04\x8f\x04\xfa\xf3\xec\x23\xca\x68\x94\xd4\x21\x65\x88\xbf\x99\xc3\x46\x2a\xcd\x44\x36\x4c\x65\x9c\xc3\xdb\x54\xfc\x57\x2f\x09\x98\xc9\x5f\x66\x77\xe6\x42\x25\xd9\x36\x29\xd7\x12\x4d\x56\xea\xe7\xda\x87\x8b\x33\xd7\xac\x92\x80\xd3\xda\x69\xfb\x45\xda\xb6\xf0\x7d\x1b\xe6\xeb\xbc\x2f\xc9\xa4\x28\x4f\x5d\xde\x50\xd8\xd8\x03\xea\x78\x1d\xd9\x20\xd1\x72\x38\x36\x16\xcd\x1c\x5b\xd2\xa4\x14\x5e\x16\xf7\xfa\x74\xdb\xd2\x3d\x6b\x17\x50\x9b\x01\xd9\xa3\x2b\x8e\x53\xaa\x83\x0a\x42\xc5\x41\x36\x9b\xf0\x18\x2f\xcc\xd0\x05\x6c\x84\x23\x92\xdf\x2b\x54\x20\xf7\xcc\xbf\x54\xab\x2b\xfc\x3e\x17\x30\x3d\x2b\x95\x8b\xff\xf7\xb5\x12\x46\x54\x6a\x54\x02\xd9\x77\xaf\xa6\x54\x02\x6a\x09\xa3\xfa\xdb\x77\x29\x9d\x24\x4a\x8a\xbc\x9e\x19\x74\x50\x56\x98\xa4\xc2\xe8\xc1\xd9\x5f\xde\xa6\x19\x9c\x93\x38\x71\xf9\xf3\x61\x0d\xab\x0b\x81\x07\xcb\x88\xc6\xe9\x83\x71\xf2\x50\x3a\x5a\xf7\x12\x07\x05\x74\x40\xac\xd7\x25\x13\xf9\xb9\xef\x06\x94\xd5\xd3\xec\x31\xe4\x27\x4c\xd4\x8e\xce\x72\x19\xa6\x78\xd8\xd9\x9e\x3b\xf5\xb1\x2c\x30\x99\x40\xbd\xb8\xcf\xfd\x8b\x62\x97\xa8\xb9\xed\xf9\x42\x38\x7a\x8c\xa2\x5f\x01\x01\x83\x59\xfc\xf9\x6d\xdd\xd9\xa5\xcf\xa5\xc4\xe1\xf2\x80\xa1\xbb\x42\xeb\x58\xf9\x36\xc0\xbe\x00\xd7\x47\x05\xec\xb6\x89\x23\x55\xbc\xd1\x8a\x2e\xe6\x79\x95\xed\xd3\x9d\x2f\x11\x4e\x8a\xda\x4c\xd7\xbd\x8a\x92\x67\x9f\x7c\xa1\x53\x1e\x50\x0d\x8c\x03\x2e\xfd\xb5\x53\x51\x49\x45\x20\xdf\xc1\x6c\xc4\x8e\x6c\xe4\xad\x05\x45\x4e\xe7\x65\xd5\x30\x86\xf2\x5a\x30\xdb\x7a\x46\x93\x56\x82\x1e\x3f\xa0\x8c\x9b\xfa\x46\xab\x3c\xb0\xa8\xd6\x8b\xe7\xad\x39\x2d\xbb\x26\xd4\x8c\x35\xe7\xc2\xc5\x3a\x3c\x02\x46\x71\x20\x11\x56\xc9\xfe\xef\x66\x45\x55\xdf\x53\x41\x07\xb9\xeb\x3a\x54\x4d\x08\x40\x7d\x48\x65\x4b\x25\x7b\xbb\x54\x37\x05\x45\xa0\xb4\x6c\xf7\x4c\xd4\xb4\x6b\x20\x10\xe7\xb5\x71\x66\x31\x9f\xa4\x09\x0c\x45\xf4\xa3\xa5\x9a\x49\x13\x97\xee\x46\x7d\x09\x93\x22\x4b\xde\x96\x4d\x18\x5b\x05\xe7\x67\xd6\x67\x24\xd6\xbd\x97\x3d\xa4\x3f\x5e\xad\x18\xaa\x0b\xa0\x80\x90\x58\x00\xaf\x8c\x56\x09\xc0\x80\xfa\xbc\x31\x16\xb6\x9e\x6e\x40\x0a\x30\xc9\xdc\x58\x24\xe8\x89\x73\x34\xe5\xc4\xd9\xf9\xf8\xc8\x79\xf6\x80\x0e\x64\xc5\x6c\x2a\x23\x3a\x7a\xcb\x27\x28\xaf\xd8\x82\x66\x95\xbd\xae\xfd\xaf\xf1\x73\x6a\x05\x02\x25\x55\xe3\x79\xc5\x0c\xb9\x99\x41\x1f\xea\xcb\x17\xc2\xf7\x9a\x34\xa9\x3e\xe9\xee\x16\xef\xd9\xdf\xfa\xf2\xe9\x74\xe4\xdb\x94\x9a\xd3\x38\xd3\x5c\x44\xc0\xcb\xaf\xa4\x29\xcb\x83\xf0\x43\x43\x94\x5e\x1e\x29\x16\x7b\x95\xed\xf9\xd4\x41\xbd\xe1\xcf\xe0\xe8\x42\x37\xeb\x3b\xdb\xd2\x02\x02\x14\x99\x96\x43\x70\x69\xc6\x80\x02\x02\x5f\x99\xac\x68\xd1\x43\xc8\x9a\x03\xbf\x5b\x7c\x9e\x38\x6e\x18\x78\xec\x37\x0b\x35\xe0\x89\xc0\x3a\xc5\xae\x9c\xd7\xef\x1c\x21\x3b\x74\x4e\xdc\x1d\xfc\xda\x8b\xca\x14\x14\x46\xef\x98\x03\xd4\x9a\x14\x80\x0b\xec\x71\x6d\xc2\xba\x21\xd1\x85\xff\x66\x1a\x1f\x55\x30\x8d\xbe\x58\x17\x3f\x94\x02\x89\x00\x2b\x4a\x70\xc6\x33\x4d\x92\x63\x0e\x1b\x67\x8e\x7d\x8f\x68\x0c\xf9\xa0\x88\x34\x9b\xb9\xec\xc5\xe3\x94\x5e\xae\x4f\x41\xbd\x08\x79\xbe\x9e\xbb\xc6\x57\xaa\x94\xe8\x18\x61\x87\x4c\xf8\xde\x91\x64\x29\x47\x6f\xb1\xd0\x6f\x64\x86\x0d\x15\xd7\x8c\xb8\x9f\xee\xc9\xa1\x23\x14\x4c\xb9\x98\x4d\xf7\xbf\x79\xa1\x96\x15\x71\xfc\x5e\x1c\xb9\xd6\xe4\x52\x34\x71\xb5\x00\xca\x2c\xe9\xe1\xe3\xcf\x9b\x7c\x0a\x50\xe3\x00\xff\x37\x38\x9d\xaa\xcc\x69\x15\xcb\x9a\x6a\x4a\x4d\x76\x9c\x7c\x46\xf1\x77\xf6\x2b\xe9\x25\x0b\x68\x15\x60\x0f\x78\x92\x59\x9a\x5d\xd1\x1c\x13\x91\x1c\x64\x72\x43\x65\xc5\xed\xc6\x89\x65\x8a\xbe\x34\x5f\x1d\x93\x44\x89\x4b\x85\xc7\xbb\xdc\xca\xf3\xc5\x39\x88\x20\xef\x84\xae\x7c\xb4\x59\x3c\x50\x0c\xd9\x04\x20\x26\x1d\x18\xbb\x55\xee\x3e\x9b\xb7\x8a\x06\xee\xe4\xa7\x74\x52\x91\xe0\x14\xb1\x0b\x2a\x6b\x38\x9f\x12\x45\xb8\x9a\x48\x57\xe7\x36\x2f\x4b\x0d\x3e\x7d\x86\x15\xfc\xdb\x21\xbe\xb6\xcb\x88\xeb\x01\x2f\x79\x2e\x61\xc7\x62\x08\x1a\x4e\xd0\x4f\x3c\x96\xd4\x2e\xc5\xc0\xcc\x17\xc2\x9e\x52\x0a\x66\x6e\xda\x41\x89\xdf\xc4\x37\xf6\xc8\x09\x87\x17\x78\x2e\xc4\x25\x18\xcf\xed\x32\xcf\x6c\x97\x4d\x5e\xa7\xb1\x11\x71\xcd\xc1\xa6\xf8\x03\xbd\xc0\xe1\xd2\xa2\x2f\x68\x5a\x5a\xbd\x84\xf2\x34\x85\xe9\x3f\x6c\xd1\xa9\x69\xb5\xd8\xfb\x9a\xd1\x0e\xa7\x5e\x3a\x50\x1f\xae\xd1\x56\x50\xe1\x4d\x95\x09\xf1\x13\x80\x62\xf4\x21\x3f\x52\xe8\x63\xb0\x54\x91\x40\xea\xee\xa5\xa3\xb1\x86\xb4\x17\xe6\x09\xbf\x6d\xd2\x10\xac\xc4\x07\x3e\x89\x9b\xce\x97\x66\x64\xe8\x6c\x9f\xed\x5b\xd1\xee\xd6\x04\x3d\x31\x44\x15\xab\x48\x62\x3f\x85\xc3\xcd\x9a\x72\x52\xb4\x37\x34\x55\x80\x25\x74\x14\xd6\xd0\x5c\x6c\x71\xdc\xfa\x06\x7f\xa6\x1f\x56\x4a\x86\x29\x77\x4d\xd2\xad\x34\x17\x6a\x4e\xfa\xfd\xd9\xd9\x3d\x3c\x1b\xb6\x50\xc5\xca\x43\xcc\x72\xa6\x3f\x8c\x14\xd4\xc2\x80\x72\x6a\x61\x66\xec\xee\x49\xca\x41\xcf\x58\x1a\x8d\x93\xb2\xc2\x0e\xb9\x02\x31\xf4\x39\x5f\xf4\x4b\xcf\xcb\x15\xe7\xd7\x1a\x8c\x6a\x17\x0d\x4d\x86\x7b\x1d\xf9\x42\xb8\x65\x77\x12\xff\xa0\x9a\xb3\x5f\xbb\x58\x41\xd4\x12\x9f\x50\x62\xeb\xe0\x9f\xfe\xcc\xbd\xfe\xa5\x5a\x12\x46\x84\x44\x6e\x3a\x58\x76\x3f\x22\xe1\x80\xc0\x67\xc4\xea\xe9\xcf\x6b\xed\x6e\x08\x5c\xc2\x53\xff\xf0\xdd\x63\x72\xf2\x04\x58\x4f\xfe\x9b\xe3\x15\xe5\xd0\x12\xa9\xb2\xe2\xe7\x8e\x85\xd2\x84\xd6\x54\xf8\x30\xb9\x4f\xec\x91\x67\x0e\xa0\x95\x20\xfa\xcc\x9e\x97\x94\x63\xa1\x5c\x26\xd4\xb7\xa1\xc7\x96\xcd\x94\x35\xb2\xce\x23\xe5\x14\x32\xf1\xe6\xfb\xcf\x17\x3f\x2e\x73\x84\x82\xf1\xaf\x3d\xbc\x57\x78\xc5\x4a\x40\xfb\x00\xbe\x42\x89\xf6\xc7\x6d\xad\x65\x44\x82\x8a\x25\x12\xda\x03\x52\x49\xb2\xc6\xee\x28\x77\xf1\x2a\x55\xf0\xcd\x71\xa2\x00\xdf\xf0\x82\x73\xeb\x27\x6b\xcd\x03\xe2\x14\x21\xf7\xdd\xe8\x37\x5e\x7d\x2e\x9d\x92\x38\xc0\x16\xed\xd4\x6c\xef\x22\x5d\xb1\x1e\x96\x90\xc9\x39\xfb\xec\xa6\x27\x0d\x52\x95\xe2\xa4\x5c\x64\xbb\xda\x6b\xab\x00\x93\xc7\xda\x7f\x2a\x7e\x7d\xdd\x84\x96\x80\x8a\x63\xff\x40\x07\xdf\x08\x2b\x60\x29\x88\x4d\xa6\x73\xa3\xc7\xe8\xc6\x8c\xd4\x41\xd1\x02\x15\x20\x96\x1e\x8d\x52\x98\x40\x89\xc5\x6c\x2f\xfb\xee\x3a\xd5\x83\x44\x78\x69\xd6\xee\x55\x9c\x19\x54\xe1\xb2\xdb\x4e\x49\x21\x8e\x86\x7a\x3b\x5c\xb8\x42\xd7\xe1\x70\xa2\x14\x8a\x67\xd4\xbd\x2f\x34\xa9\x65\x3e\x33\x3b\xb9\xec\x45\xad\x4a\x44\x24\xca\x17\xa6\xab\x07\xa7\x71\xfe\x01\x9e\xc6\x2e\xa2\x82\x0a\xd4\x9f\x99\xf7\x8c\x26\x4f\x57\xec\xe6\xd6\xb2\x3c\x0d\xdf\xd5\xa5\x75\xb1\xa2\x6c\xda\xe6\x5e\x29\xab\x0f\x70\x12\x4c\xdb\x9c\xd6\xfc\xcc\xd9\x0b\xd2\xc0\xfd\x33\x89\x16\x15\xa7\x9e\xb2\xbe\xfb\x5f\x35\xa3\xc5\x00\x03\xa7\x88\x2a\x01\x09\x3c\xbb\x97\x17\xf7\xc6\x1f\xee\xd0\xcd\x47\x93\xd8\x77\x9f\x96\xb5\x9a\x16\x74\x58\x09\xc6\x34\xbf\x4f\x9f\xd1\x50\x8b\x0c\xcb\x1d\xcf\x06\x33\x96\xf6\x6b\x58\x63\xf6\x12\xa2\xc4\x1c\xff\x9a\xa2\xe7\x13\x8b\x30\x65\xdb\x7b\x44\x37\x89\xc9\x95\xcb\x8c\xf7\xe6\x96\xf4\x52\xa9\x8a\xae\xad\x90\x41\xdf\x7a\x8a\x3f\xe6\xc5\x14\xc2\x12\x23\x37\x67\x3b\x5e\xd3\xca\x23\x84\x79\xa1\x63\xec\xb9\x45\x9b\xe9\x43\x60\x5a\xb1\x3f\x50\xef\xab\x29\xd9\x8f\x32\x34\x59\x03\x64\xf2\x72\xb9\x00\x98\xa7\x19\x13\xb7\x6e\x6d\x68\x38\x62\x64\x8a\xdd\x75\xba\x3d\xfd\xfd\x28\xef\x88\x9e\x05\x58\xd1\x1c\x97\x66\xc8\x41\x25\x86\xc3\x60\x2b\xd7\x6c\x92\xd3\x29\x97\xd0\x2a\x93\x01\xda\x29\x9b\x8d\x02\x84\x93\x0e\xef\x5d\xad\xe3\x92\x38\xd8\x70\xa6\x7f\x7d\x9e\xe2\xf6\xe2\xa0\x0a\xe5\xf6\x80\x4f\xcc\x48\x91\x94\x60\xb4\xe9\x95\x8d\xf2\xb7\x66\x99\x45\x58\x81\xe7\x13\x75\x17\x0d\xd3\x54\x02\x29\x1b\x88\x68\xae\x63\xe1\x67\xa7\x0c\x8d\x7e\xf9\xe1\xe5\x31\xae\x72\xcc\xca\x8b\xd5\xe9\xcc\x80\x81\x6c\x9d\xd8\x2c\xa0\x02\x10\x66\x7c\xda\x91\x57\x0b\xfa\x8b\x09\xb1\xe0\x6c\x8f\x7d\xfb\xbc\xf8\x7e\x3f\x19\xfd\xff\xda\x16\x0d\x54\x4b\xb9\x56\x70\x38\x41\xf3\xcf\x8b\x42\x95\x58\xb8\x6f\x2a\x66\xdb\x51\xf1\x8e\xd9\xe4\x30\xfb\xad\xcc\xc8\x74\x6e\xc8\x71\x96\xc7\xdf\x94\xaf\x20\x8a\xc0\x0d\x27\xd7\xe8\x16\x55\x40\x95\x49\x67\xb3\xba\x7d\xf3\xf8\x06\x70\x95\x1f\x9b\x5d\x19\xe5\xfb\x25\x97\x15\x94\xa3\xef\xe9\x3d\x3e\x2c\x8e\x64\x55\x9e\x7e\xfd\xc7\x7c\x8d\x81\x47\xea\xb1\x91\x59\xe1\x75\x4d\x8f\x36\xf0\x49\x59\xcc\x7b\xff\x71\x4c\xa3\x71\x13\x07\x30\x37\xdd\xf0\x93\x67\x46\x28\x90\x8f\xe8\xec\xc9\x17\xc2\xcf\x5a\x23\xa4\x4d\x28\x14\xc9\xdd\x35\xf7\xcb\x47\xd4\x1d\xe0\x0a\xf7\x1d\xcf\xbe\x77\x40\x13\x4a\xb5\x81\xe7\xe5\x39\xc0\x50\xe4\x7d\x1f\x55\x72\x21\xc8\xac\x7e\x39\x21\xa4\x4b\x9b\x57\x01\xdf\x87\x98\xad\xfd\xb8\xc1\x50\x7b\x29\xae\xbd\x60\x8f\xcb\x17\x65\xa1\xdf\x38\xf7\xc4\x68\xad\x86\xa8\x0b\x6b\xfc\x5b\x8f\xca\x34\xd8\x5b\x1f\x40\xd8\x27\x30\x1c\x3f\x78\x35\xfd\x70\x10\x45\x9e\x38\x65\xb3\x1d\xb7\xe8\x84\x8e\x22\xb7\x9c\x60\x1c\x90\xa7\x57\x25\x87\x47\x09\xf6\x29\x40\xe3\x25\x6f\xa4\x81\x96\x84\x4e\x9f\x97\x2f\x84\x9f\x6f\xe2\xef\xac\x86\x4c\x6e\x3e\x16\x62\x3e\x74\xcb\x2f\x04\xbd\x1e\x2a\xc1\x14\x69\xff\x1b\x5d\x9a\x10\x65\x60\x9a\xd0\xf3\x98\x28\x23\x87\x92\x65\x2e\xea\xe3\x1f\x78\x43\x80\xcb\x9c\x13\x90\xfd\xdb\x29\x4d\x12\x66\x3a\x2d\x46\x25\xf1\xac\xc7\x35\x8c\x21\xe4\x7a\x24\x30\x6e\xee\xff\x7c\xcd\x70\x15\x4a\xc1\xa6\xe3\x57\xae\x96\x3f\xab\xf8\xdc\xc8\xfa\x36\xf1\x9d\x1e\xf0\x01\x66\x9e\x71\xf7\x9d\x94\x2b\xba\x4c\x01\xee\xe3\xf2\x2d\x1f\x1f\x23\x33\xac\xf6\x19\xb3\x38\xdd\x77\xcb\x2e\x3e\x09\x5e\x18\x50\x3c\xa0\xa7\x9e\x60\x27\xc5\x69\x75\xbe\x10\xfe\xf6\xd1\xf4\xd1\xe9\x45\x51\x06\x52\x4e\x74\x88\x43\xfe\xfc\x76\xd9\x35\xa2\x8e\x52\x8c\xbe\xd7\xa2\xea\xc6\x83\x80\xe9\x49\x64\xb7\x2e\x94\xd5\xcd\x00\xd0\x05\xe7\xb6\xe4\xd3\x7c\xa4\x7c\x5a\xf6\x8f\x9b\x35\x06\x39\xac\xf5\x0e\x30\xd1\xda\x77\xbf\x60\x4f\x41\x3f\xca\x52\xa2\xef\x0c\x6f\x94\x18\x81\x4e\x86\x26\xce\x0e\x3d\x31\x5c\xb9\x34\xae\x49\xf1\xb5\xa3\x9a\x8d\x08\x30\xd9\x10\x80\x03\x2c\xe4\xe2\xb8\x4a\x41\x10\x55\x6c\x52\x64\x34\x70\x56\x05\x37\xef\x94\xdd\x35\xc8\xf8\xed\x2a\x80\xdf\x9d\xca\xb3\xcd\x1b\x28\x2c\x62\x58\x93\xfd\xb5\xb0\x52\xd3\xe2\x00\x73\xda\x61\x34\xab\x2f\x68\xce\x13\xff\x12\xcf\x39\x06\x8d\x4c\xb2\x59\xc4\xf0\x59\xc3\x97\xa6\xdf\x55\x95\xd8\xbe\x47\x6a\x29\x71\xe4\x9c\x71\xea\x02\x25\xba\x07\x8e\x9b\x92\xe8\xed\xea\x94\x11\xc1\xb7\x08\x15\x71\x67\xc1\x5b\x9a\x99\x5e\x60\xdb\xd3\xb9\x64\x4d\xcb\xb1\x61\xe2\xf4\x71\x38\x1f\x30\xfc\xd9\xfd\x42\xf3\xc6\xf6\x51\x14\x62\xa3\x6b\x7d\x5d\xb3\x9b\x9b\xd9\xd2\x36\x9b\xa7\xbd\xd9\xcf\xbf\x95\xce\x7b\xba\x11\x60\xee\xe0\xca\x96\xce\x8d\x3d\xa1\xe7\xbf\x24\x7a\xb1\xb1\xb6\x5a\xf8\x96\x26\x56\x83\x81\xef\xa3\xd8\xd9\xc2\x78\xf0\x88\x9e\x35\xd9\x71\x46\x95\x6b\xd9\xc1\x1f\x62\x17\x88\x1b\x51\xef\x8c\x93\xbd\x53\x2b\x25\x60\x9c\xbd\x80\x4f\x91\xf3\x37\x10\x5a\x04\xa6\x05\x6b\xca\xbb\x5d\x38\x59\x3b\x00\x82\x64\xf2\x71\xce\x38\x99\x2c\x94\x48\x89\xdd\xf5\xf3\x6f\xa5\x43\xe5\xcc\x59\x73\x45\x1b\x62\xe2\xbc\xf4\x5b\x34\x09\xe0\xf6\x7e\x8a\x53\x68\xe6\xd5\x75\xbc\x2d\xb1\xb8\xa5\x8d\x65\xaa\x4b\xb7\x4f\xd0\xf9\xb6\x72\xc1\x32\xe9\x3b\xd1\x4c\x29\x21\x0f\xb8\x2e\x41\x58\x74\x50\x73\x5f\x7c\x4d\xd8\x56\xf5\x30\xc1\x02\x22\xa4\x70\xea\xbe\x66\xbe\x88\x7d\x8b\x82\x9e\x18\x63\xde\x47\x75\x9b\x2f\x93\x38\x50\xc0\x57\x9f\x6b\x12\x87\xa3\x6d\x13\x22\x64\xbb\x5b\xe6\xf1\x0b\x9e\xdd\x32\x97\x35\xc2\xde\xdd\x7e\xa5\x7e\xe0\x8a\xc1\xcd\x40\x83\x89\xaf\x86\xe9\x35\x12\xe5\x1c\xc8\x0f\x38\xc0\x48\xb4\x15\xc1\x60\x19\x08\xa3\x7d\x57\x07\x9c\xcd\x54\xbd\x27\xfd\xa4\xbb\x99\x50\x60\xf4\x9b\x09\x43\xf8\x33\xb9\xa1\xde\x8b\x53\x59\xd5\x4c\x8d\xf3\xd9\x0b\x01\x8d\x99\xb5\x61\xe7\x7e\x99\x76\xd6\xa2\x52\x81\xa7\x1e\x33\xb6\x26\x47\x73\x77\xdc\x90\x0a\xdf\xbd\x8c\xdf\x75\x37\x60\x3c\x96\xdc\xa7\x0f\x34\xab\x80\x78\xee\x11\xcb\x3a\x7a\x9a\xd5\x4f\x1c\x81\x2d\x42\x78\x2a\x9c\x99\x5a\xd6\x26\x9e\x5e\x42\x12\xce\xe4\x4b\x4a\x36\x8a\x98\xa3\xd7\xa0\x69\xaa\x79\x88\xdd\x5b\x46\xdc\xb4\x23\xb7\x71\x17\x7b\x1c\xcc\xab\x64\x66\x9a\xb7\xa7\xd8\x8c\x56\x28\xe1\x63\xb2\xaf\xde\x93\x0e\x89\xbe\x89\x06\xc4\xbf\x65\xb7\xf2\xc6\xa6\x47\x02\x97\x2d\xa0\x9f\x96\x15\xe1\x81\x80\x56\x59\xe3\x72\xc6\x90\x14\xb5\xcd\x87\x34\x4a\xa7\xc3\xa7\x9f\x93\x20\x89\x12\xf4\x4c\xee\xf1\x2d\xdf\x87\x3d\x4d\x66\x38\x16\xa4\x14\x52\x36\x14\xdb\x38\xee\xbc\xf8\x49\x46\xe1\xef\x84\x3b\x00\x3c\x95\x9f\xbf\xff\x73\x4e\xfa\x2e\xaa\x14\x3a\x36\x8a\xbd\xbf\x93\x26\x7a\x55\xf7\x8b\x81\x82\xdc\xc5\x4d\x91\xb2\x8f\x8c\xe7\xb1\x6e\x56\x2b\x47\x6c\x47\xeb\x58\x23\x53\xf8\xa4\x0e\x68\xc9\x13\x23\x5e\xe3\x1b\x1b\x9a\x44\xa4\x05\x35\x28\x88\x3d\x99\x41\x53\x34\x9b\x15\x0b\xf6\xf2\x8a\x32\x7b\x9f\xe2\xc5\x47\x03\xd6\xf3\x5a\xd0\x23\x8f\x14\x26\x92\x97\x0a\x49\xbb\x1e\x1f\xa7\x62\xc1\x19\xc8\x01\xc3\x80\x75\x37\x32\xdf\x9a\x2c\xd7\x85\x10\x73\x32\x40\x4b\xd2\x4e\x72\x48\x63\x0a\xf0\x92\x2f\x1f\xb5\x09\x28\x14\x7d\x92\x79\x27\x95\x8e\x01\xa8\x21\x55\xe8\x62\x55\xd3\x45\x0a\x52\x02\xe2\x7c\xc3\xf6\xfd\x9b\x82\xfe\x33\x19\xf3\x22\x5f\x08\xbf\xff\x46\x3a\x84\xc4\xe2\x3f\x2c\xbe\xcc\x7c\x64\xbc\x32\xf2\x81\x9a\xae\x6b\xe6\xe7\xe7\xf0\x9d\x7b\x2b\x70\x00\x86\x4a\xc2\x11\x3c\xc9\xf3\xd2\xeb\x28\x72\x60\x6c\x28\x79\x43\x99\x2b\xdb\x9a\x04\x57\x6c\xe2\x30\xa4\x29\xef\xca\xbd\x73\x07\x7f\x3d\xcb\x52\x9a\x6f\x2b\x93\x74\x9f\x38\xd1\x8e\x7f\xe3\x84\x0e\xc9\x15\xb0\x28\xe1\x27\xbb\x5b\x9b\x5d\x06\xb8\x8a\xa3\xf4\x5f\xe4\xca\x5b\x6f\x51\xec\x36\x41\x95\xeb\x37\x2d\x56\x80\x3f\xae\x0d\x81\xc7\x93\xf6\x6f\xbd\x72\x7e\x5c\x77\x99\x55\x66\xdf\xb9\x2e\xbc\x44\xad\x72\xa3\xfb\x6d\x90\x11\xea\xcf\xdd\xb0\x74\x54\xbc\x7b\x7c\xca\xdb\x36\xac\x04\x7b\x75\xb3\x02\x0f\x07\xb4\xe4\x13\xd6\xad\xeb\xdd\xa1\x21\xd9\xe6\x44\xe7\x31\x8b\x33\x0f\x6f\x52\xc8\x57\x33\x63\xa5\x18\xc3\x69\x57\xb4\x6f\x6a\x90\xe6\x41\x85\xe9\x6f\x71\x8b\xfe\xcc\xdf\x77\xc9\x6c\x6a\x66\x6b\x0b\xcb\xb0\x8c\x1e\x9d\x39\xc5\x59\xa6\x24\x46\x43\x1a\x3f\xdf\xae\x08\x94\x5a\xa4\x9e\x2f\x84\x97\xb7\xa5\xfa\xe5\x5e\x60\x0b\xb1\x87\x7f\x9b\x24\xc9\x24\xdd\x2a\x03\x7a\xfe\xe1\x49\xda\x3a\xc2\x58\x88\x75\x2a\x75\xf2\x03\x5a\x31\x44\x70\x99\x23\x0c\xe3\x21\x75\xe6\x83\x5a\x99\x86\x83\x6a\x82\x7f\x1e\xa5\xd8\xe9\x79\x75\xc8\x9c\xfe\xe5\x87\x2f\xac\xf1\x97\xa6\x98\xe3\x6b\x92\x68\x52\x9d\x26\xa6\x58\xfc\xb9\x4b\x66\xc6\x6d\x6d\x33\xda\xdb\x18\x0f\xea\xb6\xed\xaa\x60\x13\x71\x20\x62\xda\xc9\x06\x96\x9a\x64\x0e\x52\xd7\xfb\xad\x6e\x3a\x94\x30\x40\x23\xe3\xe4\xdc\x75\x6f\x92\xf1\xba\x94\xe4\x0b\xe1\x07\xe7\x6b\x3c\x05\xd3\x47\xb5\xa8\x9a\x62\x91\xe7\xec\x39\xb2\xe8\x9f\x39\x87\x87\x37\x7d\x1b\xf7\xcf\x90\xd1\xbb\x86\x7c\xe0\x20\xbe\x59\x97\xc7\xfe\xdf\xa4\x8e\x5d\x1b\x30\xd4\xd0\x3b\x0f\xf0\x3d\xb7\x84\x94\xcb\x8e\xda\x5f\x34\xfe\xdd\x52\xde\x70\xec\x96\x9c\x2f\x84\x1f\xdb\x31\x91\x17\x27\x88\xd3\x88\x60\x83\xd2\xfd\x7f\x3e\xa5\x80\xe5\x88\x59\x85\x1c\xa0\xf4\xa9\x97\x52\xf2\x2e\x5c\x44\x2b\x24\x8a\xf6\x55\x37\x64\xc4\x77\x16\x13\xff\xe7\xa1\xf1\x4a\xff\xbf\xe1\x1e\x7f\x31\x45\x18\x89\x51\xe2\x92\x00\x73\x52\x46\xf6\xd7\x27\x34\x80\xbf\xd0\xfa\x12\xc3\xe4\xa7\x47\xca\x98\x8a\x1a\xfb\x3e\x17\x4b\x40\x1b\x45\xb5\x7c\x21\x6c\x6b\xd1\xd2\x69\x8a\x4c\xa1\x7a\xf4\x15\x05\xe9\x5a\x24\xbe\xcf\x34\xbd\xff\x70\x34\x59\xfb\x7d\x29\xcd\x91\x47\x1f\xe6\x62\x1e\x31\x60\x59\x41\xdb\xd9\x20\x88\x4e\x82\xe8\xc7\x9f\x6c\x4b\x67\xcf\x35\x44\x6c\x88\xcd\x18\x64\x15\x9a\x83\xe4\x1b\x71\x20\x26\x2e\x08\x38\x86\x7d\xda\x73\xe9\x2d\x51\x81\x18\x7a\xa2\x38\x5f\xbe\x7b\xa4\xaa\x70\x01\x8b\x84\x41\x78\xdf\x59\x1d\x9b\x1b\xf8\x90\x9a\x24\xa0\x1c\x10\xf0\xa5\x6e\xbe\x1c\x56\x08\xc3\x1d\x99\xc9\x2e\x3c\x2a\x54\x67\x60\x85\x2f\xa7\xcc\xb4\x5d\x5a\xdb\x8a\x78\x9c\x4b\xd2\x92\x02\x32\x7c\xf4\x85\xd1\x5a\xce\xef\x08\x21\xc6\xfb\x32\xbc\xcc\x02\xa5\x5a\x54\x63\xcb\x11\x6e\xf8\x9b\x63\xda\x24\x3c\xb0\x25\x39\xd5\xf8\xfb\x99\x06\x62\x9c\x47\x70\xac\xcd\x79\xc6\x6e\xa8\x41\x3c\x68\x06\x3e\xe1\x2a\x6c\xe1\xeb\x27\x94\x50\x0b\x6d\x07\xfa\xd1\x29\x77\xe2\x75\x99\x87\x81\x1a\x40\x76\xec\xe7\xff\xaf\x1d\x0a\x3c\xd6\x4a\x24\x0e\x72\x97\x1c\x4c\x4e\x1f\x3b\x88\xd2\x9a\x65\x7e\xb2\x7a\x7c\xd8\x93\x2f\x84\x3f\xe9\x12\x67\x44\xaf\x2b\xfe\x66\xed\x21\xad\xf7\x6b\x03\xcf\x63\x75\x2b\x37\x98\x6b\x4d\x8b\x49\xf9\xd0\x86\x35\xe4\xf1\x3e\x50\xc3\x88\x3f\xb3\xab\x5b\xe3\x55\x07\x9e\x4f\x9c\x18\x8d\x7c\x47\x03\xc6\x91\x1b\x24\xc5\xb8\x8a\x63\x1a\x6c\x85\x92\x04\x73\x31\x62\x9e\x4c\x09\xf3\x0e\x88\x2a\xc3\x70\x6b\xf7\x28\x35\xde\xd7\x38\xd5\xa8\xdf\xa8\x9f\x49\x67\x07\x35\x48\x51\x59\x14\x6d\x19\xbc\x59\x13\xce\x81\x96\x83\xd2\x73\xbe\x2c\x51\x68\xac\x25\x82\x39\xb2\x2d\x7b\xfb\x0c\xb5\xab\x26\x94\x0b\x6f\x5f\xa6\x8a\xf0\x95\xf8\x40\x30\xfb\xd2\xeb\x52\x93\x9a\x41\x4a\xb2\xf7\x6b\x6e\xb8\x51\x55\x20\xca\xc8\x2d\xa7\xd3\x57\x64\x81\x22\x2a\x22\xc8\x96\x6c\x1c\xab\xff\xef\x81\xf4\xbf\x01\x0e\xa4\x5c\xe2\xd4\x49\x48\x61\x73\xe7\xf3\x50\x0a\x9d\x22\x15\x5a\x22\x99\x5f\x3d\xd5\xac\x8c\xee\xb8\x52\x04\xfb\xc5\x94\x1e\x65\x60\xed\x52\xc8\xff\xf9\xaf\x27\x6b\x47\x02\xf4\x45\x23\xf2\xd5\x87\x47\xa9\x38\x9a\x8a\x50\xa7\xcb\x7e\xa2\xeb\x42\x2d\x7f\x41\x65\xc2\xcc\x64\xf9\xc9\xf8\xa7\xd7\x26\x6b\xc5\x1e\xf5\x83\xbe\x3e\xa4\xf9\xc9\xbd\xbc\x58\x2b\xb3\xa3\x64\x55\xc8\x1b\xdc\x30\x55\xa2\xcd\x21\xf6\xad\xc0\x43\xc0\xe3\xea\xcb\x99\xed\xf7\xa5\xbf\xde\xaf\x13\xe6\x35\xde\x1b\x7f\xfd\xda\x2b\xb5\x8d\xae\xaa\xd5\xeb\x85\xc8\xf7\xc6\x8c\x54\xbb\xd7\x6e\xac\x51\x34\x4e\xc6\x38\x1f\x52\x4a\x98\xee\x4c\x21\xdc\xb4\xb1\x49\x3c\x3f\x68\x06\xb6\xa0\x20\x7d\x75\x86\x50\xa8\xb5\x28\x04\x7c\xe1\x9c\xbb\x61\x8a\x5e\x1a\x54\x98\x92\x53\x5f\x43\xb8\x7f\xa9\x3c\x5e\x5b\x0b\xd4\xb3\xa0\x27\x76\x41\x6e\x50\x4d\x1f\x52\x7b\x2e\xea\xf5\x62\xd3\xb9\x28\x61\xfd\xcc\x29\xf9\xb4\x28\xb2\x55\xe3\x82\xdc\xec\x0d\x52\x41\x0d\x34\x50\x7a\x8c\x4b\x76\x49\x6b\x4e\xa0\x72\x6e\x47\x76\xa6\x53\x92\x28\x23\x11\x70\x54\x11\xfe\x8e\xef\xe5\x6b\xef\xc3\x98\xbf\xfd\xe8\xb6\xff\xb4\xa5\x31\x6f\xe2\xf3\xfb\x38\x6f\xca\xee\x6e\x52\x71\x99\xb6\xc3\x4a\x33\xeb\x8c\xa2\xed\xe2\x79\xaa\x94\xcd\xdd\xcf\x68\x90\xdf\x16\x11\x85\xe2\x2b\xfd\xfc\x93\x32\x90\x06\x9e\xd0\xb3\x09\xff\x3c\x4f\x4b\xc2\x4b\x1c\xa2\x0b\x4b\x9c\x01\xdd\x74\x64\x9c\x52\x43\x3a\x04\x33\x74\x89\xc8\xc7\x46\x3e\x36\x09\xe2\x7c\xf4\x3b\x46\xb3\x5b\x0c\x6c\x4f\x3f\xfa\xc3\x73\x5f\x92\x1f\x50\x01\x76\x35\x65\x29\xf6\x87\x7b\xe5\xaa\x02\xa6\xc9\x6d\x2d\xc3\x2b\xa7\x36\x4b\xc9\x7d\xe9\x56\x1d\xb6\xbe\xaa\xdd\x22\x21\x36\xaa\x70\x31\x63\x96\xcc\x5e\xb9\x67\xb8\x32\x2d\x76\xa3\x83\xe2\x68\x59\x97\xf0\xb3\xab\x62\xdf\x9e\xa7\x51\x02\x45\x2f\x5a\x1c\x3c\xfd\xc6\xbe\x0d\x2a\x08\xce\x73\x09\x8a\x7d\xe1\x46\xd7\xc6\x2a\x80\x8d\x00\xcb\xed\x1a\xf6\x95\xb4\x05\x8d\x8a\x8c\x55\xc2\x78\xef\xe9\x35\x75\x70\xa7\x86\x9b\x61\xca\x25\x49\x7b\x6d\xed\x49\xf9\xbe\x98\x05\xbb\x50\xa9\x3e\x98\xf4\xd1\x4c\x52\x57\xcf\xfc\xec\x5f\x34\xca\xac\x0f\x81\xe3\x00\x5f\x48\x5b\x74\x3f\xa7\x8b\x65\x50\x44\x02\x41\x74\xbf\xf8\xf5\x8b\xf4\x05\x59\x83\x98\xdb\x11\xf3\x4c\xf6\x77\x4f\x48\xb4\x60\x8d\xd8\xc0\x67\x33\x03\xf6\xc7\x37\x1d\x4d\x7f\xf2\xac\xa8\xba\x69\xe1\xe3\x84\x1f\xbc\x2d\x31\xcf\x65\x58\x62\x9a\x20\xaa\x56\xce\x35\x07\xb5\x51\x64\xe0\x7b\x28\x2e\x64\xae\xd2\x81\x2c\x51\x42\x17\xe3\x8f\x73\xb5\x0d\xfc\xc0\x76\x7a\x19\x73\x31\x3a\xc0\x7a\x34\x3c\x8e\x67\x03\x27\x39\xb0\xb3\x7f\x3e\xa4\xdb\x6d\xf1\x8a\x26\x3a\xac\x96\xad\x51\x90\xdc\x14\x95\x39\x48\xe4\x57\x8b\xe4\x31\xda\x36\x93\x87\xcf\xe8\x93\x56\x1c\x50\x8e\x57\xae\x12\xc8\xce\x99\xce\xc9\x2a\x1f\xba\x16\x8b\x46\x65\x6f\x3e\x9e\x0e\x4e\x26\x70\x19\x95\xdd\xe7\xfe\x64\x7d\xd1\x67\xee\x58\xd1\xa8\x06\x00\x99\xd2\x16\xcb\x83\xae\xb1\x12\x78\x1f\x85\x89\xd6\xe9\xe5\x8a\x38\xaa\xcd\x84\x32\x6d\x58\x83\x2c\x65\xbc\xed\x85\xf4\x77\xba\x00\x51\xc8\xb4\x7e\x68\x62\x4a\x70\xc5\x8b\x3a\xbf\x8a\x73\xa0\xf8\x6f\x5f\x58\x35\x4c\x09\x41\x55\xd6\x12\x7b\xa4\x49\xa4\xf8\x1e\xaa\x60\x91\x27\xdd\xcd\x63\x60\xfe\xfa\xf5\x01\x72\x9d\x01\x6c\x73\x33\xaf\x9f\x49\x16\x2d\xa1\x7e\x6a\x01\xfc\x74\xa5\x9e\x1d\x46\x61\x52\x3c\x94\xcc\xaf\x9e\x50\xca\xe6\xb6\x19\x9d\xb3\x5b\xf3\xd1\x37\xf6\x69\x47\xa7\x2f\x34\xcf\x29\xb4\x81\x84\x6f\x64\x76\xae\x91\x39\x1e\x62\xad\xa6\xd9\x6f\xe9\x6a\x41\x1e\x23\x01\xf3\x23\xf1\x39\x57\x75\x04\xb3\xa1\x9f\x9a\x4f\x18\x07\xb5\xe6\xf2\x15\x9e\xe8\x93\x4f\xb3\x35\x22\x0d\x33\x58\x89\xfb\x14\xf7\x68\x73\x4a\x1a\x08\x90\x79\xbf\x71\xb1\xaf\xb9\x11\x00\xea\x5b\x76\x7c\x39\x6b\x14\x8f\xdc\x22\x34\x79\xf9\x10\xb6\x9c\x98\xa4\xb4\x38\x00\x2b\xc1\x1a\x8e\xeb\x45\x4f\x5c\xaa\xf4\x9b\x8a\x71\x62\xda\x70\xa8\x1a\x3b\x9a\x25\xa9\x43\xc5\x73\x3d\xd0\xa5\x63\xc8\x3c\xbf\x0e\xa8\xe8\x8c\xd6\x37\x68\x7c\x68\x54\x8a\x63\xf0\x0a\xad\xc3\x5d\xef\x85\x22\x85\x64\x3b\x64\x0e\xd6\x34\x10\x18\x0f\x62\x20\x92\x53\xe6\x3f\x17\xf2\xe2\x66\x55\xaf\x67\x11\xd5\x80\x2f\x57\xd1\x40\x19\xc0\xb6\x09\x13\xda\x66\x57\x97\x1b\xb5\x42\xd9\x85\x90\x9a\x90\x61\x03\xc3\x2f\x0f\x51\xf0\x16\x25\x76\x7c\x16\xc2\xc7\xa6\x6a\x10\x0d\xcc\x25\x94\xc4\x16\xf8\xe2\xd5\xca\x01\x85\x89\x10\xa1\x19\xd3\xa7\x20\xa7\xdc\x3c\x62\xe5\xc0\xd0\x92\x8e\xcf\x05\x66\xd5\x01\xc8\x16\xb9\xec\x30\x6d\x92\xe1\x90\xa2\x78\x66\xb9\xa6\x76\x05\x1a\x00\x8a\x36\x41\xba\xac\x49\x78\xe5\x44\xde\x9a\x5b\x89\x3c\x82\x15\x04\x79\xf6\xcf\xe3\x85\xf6\x32\x33\xec\x62\xc3\xc5\x07\x1e\xd3\xf5\x7f\x2b\x09\x41\x31\xb3\xe9\x89\xd1\x2a\x52\x34\x30\xfd\x80\xeb\x34\x65\xbe\x98\xd1\xcf\x00\x27\xe6\x5b\x8a\xdd\x78\xcb\x8b\xd2\x4e\xb5\x37\x71\x23\x99\xd3\xcd\xaf\x60\x76\x5b\x6b\x7e\x76\x7b\x7b\x6b\xbe\x10\x0e\xf9\x71\x23\x2e\x86\x04\xf1\x58\xe9\xa1\x7d\xf2\xf8\x94\x7e\x3e\x9c\x68\xd5\x3a\xf8\x22\x45\x93\x00\x30\x95\xdb\xf4\xb1\x79\x62\x90\x22\x30\xc6\xa6\xa6\xca\xca\x98\xb1\x50\xeb\xc0\xb5\xfb\xf1\xd8\xfb\xe9\x1f\x6b\xec\x65\x80\x41\x09\x88\x24\x49\x76\x7e\xff\x4d\xeb\x49\xd4\x90\x6d\x83\x0a\x14\xbd\xea\x4c\x66\xa2\xe6\x77\x89\x44\xc9\x27\xfc\x1f\xca\x62\xf0\x15\xe0\x3a\x77\x35\xcd\xae\xc4\xda\xb9\x6b\x83\x7a\x52\x03\x5c\x8a\xd3\xba\xb6\x51\x8a\x65\x52\xe0\xb3\xe2\x45\xbf\xf3\x83\x9a\xd9\x80\x22\x2c\x19\x07\x9b\xeb\x5f\x56\xea\x62\xec\xa3\x7c\xfc\x92\x26\x6a\x67\x74\x09\x62\x94\xd0\x8a\xbf\xb3\x78\x84\x54\x1d\x4c\xd0\xb2\x9f\x92\x30\xb2\x2a\x55\x8d\x88\xff\x36\x64\x20\xd4\x13\x10\xa8\x27\xe3\xfd\x07\x2f\x52\x88\x36\xa4\xd1\x4c\x32\xf3\x83\xc3\x49\x5c\x9e\x3d\x77\x66\xbe\x10\xce\xb2\xf9\x98\x83\xd5\x7e\x6c\x95\xde\x2b\x57\x69\x9d\x12\x5c\x29\x11\x81\x6c\xf8\xfa\x03\x52\x19\x05\x83\xaa\x85\x1c\x52\x43\x7e\xca\x47\xee\xe4\x21\x4d\xec\x07\x39\x02\x2f\xf1\x01\x8d\x08\x56\x02\xa5\xf4\x48\x34\x43\x8f\x09\xae\x0e\xa1\x3e\xe5\xd4\xf3\xfe\xec\x87\x5e\xe4\x85\xcb\x15\x0b\x99\x59\x47\xf4\xa3\x61\xd2\x2c\xa4\x0a\x2c\x66\xe7\x30\x35\x8d\x8f\x68\x61\x02\x43\xe1\x86\x35\x9a\xcb\x9a\x2b\xda\x43\xff\x76\x88\xdf\xf3\x42\x1b\x70\x47\xd9\x4d\x13\xf8\x57\x57\x88\xe7\x21\x97\xe3\x5f\xb6\xfd\xb8\x01\xa1\x58\x43\x1c\xba\xc6\x5f\xdd\x8d\x47\x87\x26\x18\x01\xd6\x0d\x58\xd3\x2d\x9f\x4f\x1d\x60\x8e\x6b\x4a\x07\xfd\x83\x9a\x25\xa5\x07\x70\x9f\x4a\x3c\x32\x5e\x58\x93\x4c\x9d\xd8\x14\x2e\xbb\x7b\x5a\x3a\x97\xf0\x7c\x0a\xa1\xaf\x02\xfd\xc2\x77\x3a\xb5\xf4\xa5\x17\x33\xc5\xa2\x38\x76\x7c\xeb\x6d\x19\x7d\xcb\x01\x14\xaa\x5b\x47\xa6\x24\xe7\x8f\xa9\xda\xb2\x19\x63\xfb\x92\xc5\x57\x04\x2a\x5b\xe0\x87\x97\xe9\x01\xbb\x44\xa8\x97\xe8\xd3\x3d\xa6\x39\x5e\x0b\x6f\x79\x31\xb0\x7a\xf6\xf5\xe4\xad\xb9\x2c\x77\x35\x7e\xf9\x4c\xd2\x63\x44\xb4\x01\x78\x6e\xfc\x74\x82\x8e\x8c\xae\x03\x06\x00\x17\xb4\xd5\xdb\xb1\x90\x6f\xb4\x6d\x52\x8f\x79\xb8\xb9\x45\x77\x28\xfe\x97\xa2\xad\x60\xfc\xeb\x21\x4d\xa3\x40\x36\xba\x5c\xc6\xc6\xfa\xfd\x56\xa5\xd3\x15\xe0\x12\xb7\xc4\xbf\xbb\xa4\x94\xf8\x35\x80\x15\x9a\x6d\xf6\x72\x11\xfb\x2b\x14\xf8\xb0\xcc\x74\x73\x32\x8f\x3e\xa4\xf4\x81\x81\x53\x24\x25\xc4\x47\x8e\xad\xe5\x64\xd3\x05\x1c\x48\xb6\xa8\x55\x12\x02\xdd\xc4\x34\x65\xeb\xb8\xf4\xea\x28\x92\x52\x6f\x25\x60\xd3\x37\x1e\x02\x7f\x37\x52\x8e\x17\x98\x8e\x5c\x21\xbc\x4a\x99\x88\x59\x5c\x43\xf7\xdc\xf1\xe9\x48\x5c\xc5\xa4\xce\x07\xd9\x37\x0e\x9a\x58\x1f\x68\x80\x11\x50\x18\xcb\xde\x0c\xbf\x57\x8b\x99\x84\xc6\x6e\x3e\xe1\x5d\x21\x7f\xe4\x3e\x85\xc0\x8f\x9b\x36\xd9\xe5\x7b\x24\x76\xba\x6d\x0e\x9b\xad\xac\x1a\x14\x03\x56\x6c\x58\x89\xe5\x22\xa7\x3d\xa4\x00\xdf\x3c\x2f\x10\x98\xba\xbb\x35\x01\x46\xc4\x29\x05\x02\x2f\xf9\xde\xd1\x8b\x1b\xab\x23\xea\xa9\xcd\xea\xcc\x83\x27\xd3\x69\xde\xcc\xb9\x73\x5b\xf9\x8b\xed\xcf\xfe\x69\x91\xb0\x6d\x93\x36\x82\x5b\x78\x3f\x77\x29\x51\x19\xb3\xc6\xf2\x17\x15\xcf\x41\x66\x65\x1f\x2d\x8c\xaf\x2b\x3d\x37\xd3\x86\xb4\xc2\x4e\xca\xcf\xbe\xac\xe5\xee\x8c\xa1\x2d\x8e\x79\x63\xf8\xce\xf4\x13\x84\x3d\x7e\x4c\x05\x0f\xbf\xb7\x43\xd3\x2f\x08\x2a\x81\xc7\x54\x52\xc3\x26\x8d\x72\x58\x26\xc4\xf7\x7c\xe8\x0a\xbd\x91\xfe\x8d\xb1\xc3\x60\x0d\x62\x31\x41\xfa\xf4\xa4\xf4\xb9\x0a\x1c\x4a\x1a\xad\xdb\x8d\xc9\xe7\xc8\x07\x3f\xb3\x2d\x1f\x7d\x28\x9b\xfd\xbe\xad\x7b\xa2\x00\xdb\x86\xb8\x22\x4c\x38\xc2\xfe\xa5\xf2\x89\xd4\x2d\x28\x12\xb0\x73\xe7\x2b\x7a\x9a\x80\xe6\xa3\x33\x5a\x1d\x1d\x9d\x5e\xa1\x57\x7a\x95\xc0\x8e\xcd\xca\xce\xd3\x84\x6d\x2a\x10\x13\x13\x95\xa0\x00\xce\x7c\xea\xac\x6a\x28\xc4\x20\xe7\xa6\xe8\x2e\x67\x3f\xb9\x30\x76\x69\xf3\xa0\xca\x77\xa7\xaf\x0f\x57\x25\xd3\xa2\xf5\x3f\xb6\x75\x8c\x72\x89\x36\x23\x7e\x88\xa0\xf1\x64\x4e\x9f\x53\x10\xcc\xe6\x14\xe1\x73\x4a\xdb\xb6\x44\x81\x70\xf8\x0f\xf7\x77\x8c\x55\x28\x3f\xae\x6b\x43\xdf\x22\x94\x99\x3d\x64\x3e\xb1\x7a\x58\xbc\x13\x3b\xf3\x73\xe7\x46\x37\xd8\xfa\xa4\x2e\x70\x4f\x54\xc6\xfb\xf0\xee\xf3\xe2\x2f\x28\xe6\x0b\xe1\xd6\x83\xc9\xe1\xef\xf9\x2d\xa2\x2d\xf4\xa5\xe3\x23\xea\xc9\xbc\xa1\x0c\xb9\xda\x65\x86\xbc\x2a\x37\x19\x2a\xb1\x81\xeb\x7a\xbe\xce\xf2\x0b\x01\xae\x36\x64\xf0\x81\x2b\xe3\xa0\xc7\xcc\x35\x0a\xfd\x06\x59\xa7\xba\x0b\x83\x9a\x98\x19\x3b\x4f\x08\xba\x23\xa0\x45\xc0\x7c\x95\x0d\xef\x41\x4d\x1d\x27\x28\xb1\x8e\x44\x0c\x20\x5d\x36\x32\x0d\xe1\xaa\x00\x21\x9c\x37\xf4\x15\xed\x0f\x31\xb0\x7b\x3d\x3f\xb1\x48\xfb\x50\x57\x93\x52\xec\x03\xd6\x5b\x33\xfe\x6b\xa7\x44\x9f\xf9\x14\x05\x8e\x6b\x01\x2e\x06\x36\x66\xb0\x7e\x5e\x06\xa5\xb8\x2f\x1e\x3d\xac\x4f\x3e\xc0\xd5\x80\xbb\x10\xc1\x7e\x95\xd4\xbc\xaa\x4a\x13\xfc\x6a\x46\x63\xcb\xa2\x8a\xc5\x58\x67\x2c\xf0\xcc\x9b\xa8\x88\x73\x41\x0c\x6c\x5f\xe8\x82\xfc\x63\xb7\x02\xfe\x53\xdd\x4a\x3e\x7d\xad\xd6\x88\x16\xe2\x6e\xfd\xc6\x23\x67\x1a\xca\x22\xe6\x36\xc3\x89\xd7\xd9\x51\xab\x15\xa7\x43\x12\x54\xac\x46\x81\xf0\xbf\x74\xaa\xe2\x98\x9c\xfd\x1a\x5d\xcc\xe7\x5a\x62\x85\xf3\x98\x0b\xca\x82\xe9\x97\x4f\x24\x4d\xd3\xe8\xf4\xd1\xa7\xe7\x2b\xb6\x35\x1c\x9e\x9e\x45\x82\x58\xd3\x34\x9b\xdb\x23\xa6\x57\x10\xd0\x92\x22\x9d\x10\x7e\x03\x6b\x37\x92\xc8\x22\xb1\x56\xd4\x6b\xf7\x88\x1c\x2d\xaa\xed\x10\x57\x34\xc9\x6c\x0c\x9b\xc5\x96\x8d\x62\x08\xa2\x0c\xf2\x9b\x2f\x84\xbb\x5f\xd6\xbb\xec\x03\x42\xa1\xbe\xf5\x60\x92\x07\x04\x76\x23\x78\xf2\xd0\x12\x1e\xf8\x56\xd2\xa8\xe2\xe0\x62\xe4\xb3\x17\x36\x34\x6c\xbc\xc0\x91\xb5\xe3\xef\x9e\x19\xa6\x1c\x8a\xdd\x6c\xed\x9f\x96\x1b\x99\xcb\xcb\x22\x13\xd8\xac\xf2\xc9\x7e\xf4\x9c\xf4\x21\xd3\x0b\x4a\x0d\xda\x40\x13\xdf\xe0\x89\xd9\x02\xdb\x65\x78\x87\xcc\xd1\xbe\xd1\x58\x05\x22\xd8\xbd\x09\xd7\x6d\xa7\x86\xff\x83\x34\xf0\x80\x0d\x1d\x21\xa6\x1d\x15\x05\x77\xb4\x8e\x52\xd9\x35\x2e\x57\xb5\x0d\xdb\xb6\xca\x28\x54\x27\xb8\xc4\xb7\x7f\xf8\xc5\x6d\x5a\xab\xbb\x28\x52\xd1\xc4\x06\xf2\xe6\x07\xe5\xe7\x61\xd4\xed\xc0\x0a\x03\x3e\xe7\xda\xe7\xa9\xcb\x8a\x49\x16\x71\x5a\xf7\x7d\x32\x14\x30\xf9\x6b\xe6\x7e\x6e\x04\xc7\x64\x36\xd1\x0d\xb9\xba\x66\xcb\xa3\x53\xb5\xea\xcd\xb7\x88\x8d\xcc\x01\x95\x0e\x7e\x3b\x68\x84\xb4\x75\x8b\xb5\x2d\xc6\xae\x65\xaf\xd0\x86\x38\x3f\x2b\x06\x25\xde\xbe\x4c\x76\xb8\x66\xcf\xec\x60\xe7\x78\x87\xae\x5a\x5e\x62\xbd\x2e\x31\x23\xbb\x7c\xb9\xa2\x99\x67\x4b\xd3\x93\x23\xcd\x4a\x76\x4b\x31\x12\xa2\xdf\xb9\xf1\x45\x59\x44\x01\xaa\x6c\xe3\x2d\xcf\x6b\x48\xe8\x3a\xf0\xac\x62\x60\x56\x6d\x48\x85\x28\xc5\xc7\x8b\x23\xd4\x06\x34\xaa\x44\xeb\xf9\x37\x9b\x93\x34\xce\x01\xd1\x6b\xc9\x4c\xd3\xa4\x83\x2d\xc8\x7a\x68\x30\x06\xb4\x56\x7f\xac\xdb\x06\xb3\xc6\x6f\xa2\x05\xf2\xa9\x89\xc9\x2e\x26\x66\xb5\xe1\xe0\x9e\x74\xe7\x05\x58\x1d\x25\x26\x89\x0f\x97\x90\x0a\x79\xd8\x26\x81\x6f\x12\x87\x9d\x48\xdb\x9b\x14\xc1\x2c\x4a\xb0\x8f\xb8\x90\xd6\xfb\xcf\x5f\xa4\x5d\x28\x4b\x87\xb0\x04\xdc\xfd\xe8\x45\x4d\x92\x29\x60\x92\x8f\x2c\x11\xf8\xd1\x53\x57\x6a\x19\x9a\x0f\xa9\x4b\xc9\x40\x5a\x17\xe1\x6d\x57\xa7\x3f\xc8\x26\xc4\x4b\x6c\xbd\x7e\x73\x28\x9d\xfe\xe4\xed\xa4\x63\x68\x74\x2e\x69\x4e\x1d\xfe\xcc\xa0\x3e\x5f\x08\xaf\xeb\x56\xb8\xf2\xcc\x39\x23\x5e\x56\x70\x11\x0f\x62\xac\xda\x8e\x9d\xc4\xa3\xf7\xe2\x2d\xd1\xc6\x7f\x7e\xdc\xf0\xe5\x03\xab\x9a\x54\x47\xad\xa8\x3d\x0c\xe3\xfe\x37\x86\xa9\x5a\x7e\x6c\xc4\xb8\x58\x9e\x12\x73\x67\x74\xce\x9c\xd3\x32\x87\xdb\x35\xff\xbb\xe4\x29\x82\xf6\xe8\x53\xeb\x43\x34\xa5\xbb\x1a\xa4\xcc\x02\x24\xde\xa3\x44\x33\x91\x16\xe4\xef\x28\x91\x65\xc1\xf5\xd4\x04\xa9\xc4\x89\x98\x49\x62\x7e\xc5\x78\xfd\xbd\x31\xce\x9e\xa0\xa0\x6d\xf9\xb1\xc2\x91\xa3\xa4\x9b\xf3\x85\x8c\xef\x34\x2b\x7b\x9e\x38\x90\x8f\x25\xc3\x75\x1b\xb5\xdc\x07\xc4\xe7\x53\xe6\x82\xc5\x5a\xee\x89\x6a\x90\x21\x66\x84\xa8\xcd\xb2\x2d\xfc\x49\xb3\x6e\x7f\x82\xb6\x65\x87\xe8\x7e\xd9\x71\xa0\x10\x13\x2e\x65\xa0\x5a\xab\xee\x7f\x58\x43\x35\x20\x2c\xd8\x66\xcf\xf4\xa4\x00\x17\x4e\x91\x2f\xd6\x69\xaf\xcb\xc0\x3a\x55\x8d\xc1\xb9\xcb\x4f\x26\x27\x05\x5c\x1f\x34\xb6\xba\xcf\x8e\xd5\x8e\x67\x94\x08\xc0\xbe\xdb\xac\xc8\x36\x91\x80\x9a\xfc\xe8\xba\x71\x48\xca\x0c\x57\x54\x85\x2d\xf9\x42\xf8\x7f\x2f\x5f\xa2\xdc\x58\x74\xb6\xf8\x8d\x4d\xdc\xdc\x5d\x19\xf9\xb1\xbe\x05\x91\x30\x1a\x69\x6e\x91\xac\x1d\x1f\x52\x50\x03\x08\x43\x75\xfa\xf6\xe9\xd3\x4a\x1a\x44\xea\x0c\x33\x7a\x40\x6b\x65\x13\x8a\x2a\x08\x8b\x04\xe3\x67\x9a\x73\x12\x5b\x07\xb6\x18\xc8\x84\xef\x1f\x4b\xab\x6b\xf9\x5e\x0d\xfa\x40\x23\x0a\x67\x8f\x9c\x69\x56\xd3\x3f\x5c\x82\x01\x23\xbe\xe5\x36\xbd\x3a\x4e\x09\x1b\x00\x9b\x88\x73\x14\xd9\x49\x75\xa3\xe2\xde\xec\x52\xc2\x30\x72\xd1\x15\x75\xec\x95\xf7\xe8\x22\xdc\xc0\xad\xce\x76\x69\x0a\x70\xc4\x85\xb1\xa2\xb7\x51\x3b\xa9\xc1\x9f\x1d\x97\x79\x6b\xf8\xca\xf4\xf6\xb9\xe7\x87\x8a\x58\x1f\x30\xb4\xc2\x1f\x96\xc8\xc6\x54\x31\xa0\x10\x04\x26\x05\xec\x64\xa8\xdf\xaf\x3b\xde\xf9\x89\xfc\x60\x66\xc5\xa3\x3a\x53\xdc\xa7\x00\xc3\x18\xc2\xf1\xec\x19\x85\x50\x9a\xc8\x86\x64\x26\xbe\x78\xb9\x76\xe8\x51\x54\x2c\x42\x80\x75\xea\x84\xf1\x8d\x5b\x26\x6a\x7b\x47\xf8\xf2\x26\x82\x9d\x99\xaf\x1f\xd2\xc9\x32\xc0\x23\x18\x14\xed\x58\x98\x67\xf9\xce\x86\xa1\xb4\x07\x69\x0d\x30\x66\x26\x07\xd1\x7f\xf1\xa4\x6a\x8c\x13\xa5\x2e\x62\x04\xf4\x85\x61\x0a\xee\x92\xc4\x3f\x36\xc8\xab\x63\x55\xc5\x23\x82\x4b\xd1\x9a\x61\x64\x6e\xe3\xaf\x4b\xc6\x29\x4d\x74\x97\x12\x97\x22\x10\xeb\x6d\xb5\x6c\x8b\xbd\xbd\x49\x2c\x4b\xfb\xa6\x76\x7c\x54\x6d\x88\xb0\x2a\xa2\x9f\xbb\x62\x97\xde\x69\x65\x02\x8f\xbc\x20\xfe\xd3\xf1\x01\xf6\x25\x83\x13\x87\xef\x8d\x1c\x15\x17\x3b\x94\x48\x76\x6e\xe6\x42\xcd\xad\x9c\x8d\xce\x44\x1e\x30\x35\x77\xa1\x9a\x23\x35\xe4\xbe\x1f\x5b\xa7\xb8\x42\x08\xce\x68\xc3\xe2\x34\x27\x5f\xa4\x20\x4d\x48\x15\x7a\x3c\x6b\x95\x67\xc1\xf4\x17\x84\x26\x14\x34\xa3\x8c\x82\x4d\x0b\xb6\xde\xa5\xa8\xe6\x01\xca\x4b\xe2\x7e\xe3\xbe\x6d\x8a\x8a\xa7\x1d\x78\x56\x6f\xbe\x10\x9e\xda\xcb\xeb\x38\x13\x52\xe8\x10\x8c\xb8\x23\x43\xed\x3e\xde\xa4\x5e\xd0\x07\x29\x8a\xb6\xee\x77\x6b\xc3\x45\xf4\x00\x75\x61\x8c\x94\x7d\xb9\x6b\xac\x92\x5a\x22\x9a\xa7\x40\x58\x5e\xf4\x67\x3e\x7e\x94\x3f\xb1\x59\x33\x3d\x3f\x6f\x03\x5a\xe1\xda\x12\x99\xc7\x35\x3c\x68\x6f\x8d\x01\xdb\x94\xfd\x6f\xfc\xfe\x61\x8d\x32\x4a\x91\x03\x85\xcf\x78\xe6\x23\x9a\xf6\xa5\x45\x62\x87\xa3\xf0\xd3\x1b\x1a\xa4\x2f\x91\x09\xa9\xf8\xc3\x7d\x4f\xa9\x74\x2d\x04\x4b\xdc\x29\xd5\x98\x72\x8e\xfc\x39\x25\x89\xdf\x79\xf6\x17\x2f\xa9\x7a\x19\xc4\x75\x85\xea\x6d\xe6\x63\x33\xf8\xa3\xe9\x06\xb4\xc2\xff\xe9\xdd\x4b\xd3\x51\xa2\x0f\xd0\x5e\xc0\x10\x48\x32\x2f\xff\xca\x86\x86\xf1\x39\x0b\x51\x0e\x10\xf2\x36\xd9\x0f\x0d\x4d\x7f\x4a\x31\xf0\x10\x86\x1e\x7f\xe1\xfc\x0e\x1f\x28\x2a\xd7\x0a\xd7\x47\xb9\x0f\x2b\x11\x7f\x54\x93\xd3\xa6\x32\x12\xe7\xd3\xe6\xa3\x8a\xed\x87\xe7\x41\x47\x58\x62\xe6\xd7\xc9\x1d\x5a\x84\xc0\xb4\x44\xaa\x9b\x7d\xf6\x19\x69\x5f\x0b\x4a\xd1\x56\x43\x66\x0a\x31\x58\x1d\xa2\x49\x11\x51\x50\xe7\x76\x5c\xd9\xbf\xcf\x1f\xa7\x80\x7f\x60\x8d\x28\x89\xac\x71\xf3\x9b\x32\x76\x61\x52\x8f\xb2\xcf\xe8\x42\x9e\x6e\x57\x0b\x5b\xa5\x50\xfb\x4c\x46\x1f\xea\x83\x5e\xe9\x73\x71\x67\xb3\xde\x1c\xac\x23\xa1\x87\x12\x9f\xe5\xbb\xb9\x15\x7b\x7e\x05\x01\x8d\xa0\xd0\x87\x97\xa5\xbb\xf0\x33\x67\x31\xde\xf8\x47\xef\x6c\x56\x2a\x7e\x08\xab\x0e\xe0\x64\x95\x61\x83\xb4\xe4\xd8\xa7\xc0\x75\x13\x9d\x3d\xe3\x3b\xc7\x95\x81\x8a\xef\x53\x14\x3b\xe6\xbf\xaf\x40\xe9\x85\xe0\x13\xeb\xf5\x06\x42\xde\x6f\x99\x2e\x94\x44\x4c\x08\x4b\xac\x13\x1d\x3d\xd2\xdb\x34\xea\x97\x49\x41\x1f\xc7\x0c\x1b\x77\xde\x96\xbe\x85\x4f\x88\xd3\x77\xde\x1e\x5e\xe1\xde\x1c\x1d\x8c\xd8\x43\x38\x06\x01\x0c\x99\x30\x59\xcb\xa9\xd2\xca\x47\x3c\x51\x7d\xeb\x31\xe1\x4a\x04\x3c\x3f\xef\x20\x1c\x30\x50\x96\xf1\x6b\xe9\x96\x35\x97\xcd\x62\xe6\x3f\x24\xdb\x04\xa0\x42\x61\xe3\x00\x21\xf3\xcd\x1d\x43\xc5\x8e\x22\xbc\xfb\x3a\xf6\x2c\xdf\x35\xc8\x71\x21\x67\xa6\x1d\x6b\x4e\xda\x17\x1e\x0c\x94\xba\xe7\xa4\xcd\x8a\x9a\xe8\x3a\x97\x2e\xbd\x49\x5c\xdb\xc4\x5c\x73\x8a\x1e\xc1\xf8\xa0\xac\x2f\xdb\xa6\x3b\x57\x56\x02\x9b\xfb\x24\xb2\x95\xb9\x78\x15\x8f\x6f\x0e\xc1\x01\x93\xa7\x63\xf1\x6d\xe7\x5b\x32\x83\xee\xe6\xb4\xfa\x0f\x68\x30\x6d\x0f\xf3\xd7\xcc\xcf\xb5\x55\x52\xdd\xdc\x67\xb6\x22\x46\xf0\x92\x06\xce\xe1\x65\xab\x48\x75\xfe\x7a\x38\x29\x30\x89\x1b\x13\x86\x37\x74\x28\x38\x6a\x40\x7d\x1e\x6c\x33\xdb\x3a\xd2\xb1\xc1\x0b\x8a\x51\x4e\x1e\xe5\x18\x02\x02\xfb\xee\x73\xc2\x5a\x05\x56\x90\xd3\x28\x0f\xd3\x75\x3c\x8d\xc4\x77\x88\xe5\x41\x2d\xad\x32\xbe\x77\x9f\xb2\x4e\x5d\x8b\x50\xee\x9b\xd3\x9f\x79\x64\x5f\x03\xc4\x03\x31\xaa\x29\xeb\xba\x55\x77\x2b\x0d\x67\x3b\x0a\x24\xec\x8f\xac\x56\xcd\x6e\x13\x61\x12\x9d\x62\x03\x19\x6e\x64\xc7\xaf\x6d\xd2\x14\x6a\x0a\xfd\xc6\xbb\x6e\x03\x9e\x95\x8d\xe2\xc5\x69\x6c\xee\xd0\x3a\x74\x76\x10\x2d\x49\x27\x26\xaa\x9c\xb9\x27\x9d\xac\x74\x07\x98\x1d\x80\x2d\xb1\x5f\xe2\x5d\x5d\xe7\x2b\x40\xff\x7c\x21\xbc\x69\xbf\x72\xfc\x71\xc7\xb6\x42\xbf\xd1\xf5\xb6\x82\xf2\xb5\xf3\x85\xb0\xd9\x4a\x7e\xd0\xda\x32\x33\xba\xd7\x5f\x1c\x6c\x18\x7b\x33\x21\xce\x44\xc1\x28\xb3\x28\xa3\xbf\x41\xd3\x44\x98\x41\xb5\x78\x0d\x94\x31\xe9\x78\x69\x83\xd5\x38\xb8\xfd\xe9\x59\x25\xd5\xc1\x98\x04\x02\x3e\xcd\xb8\x6c\xb7\x09\x25\x24\x1b\xd6\xf3\x85\xb0\x47\xf1\x39\x2a\x06\xa5\x12\xdb\x05\xff\xa6\x0b\x2c\x57\x00\x12\x0d\x09\x63\xc2\x1b\x0a\x4c\x1f\x39\x5c\xb6\xa8\x3f\xf3\xc3\x15\xe9\xf8\xd2\xd2\xd6\x31\x4b\xd4\xbf\x07\xf7\x68\x0d\x49\x58\x6c\x99\x9b\xc8\xb4\xfd\x63\x52\xec\x5a\x68\x42\xcf\x03\x14\x31\xd8\xff\xbf\x9c\x33\xba\xa1\xac\x64\xf4\x6f\xfb\xed\x29\xda\xa9\xc1\x40\x12\x5e\xe3\x04\x20\x7b\xf7\x4e\x79\x34\x05\xb6\x8f\x1c\xe0\x07\x51\x81\x99\x5b\xa0\x11\x49\x99\xfc\x1b\xd7\x29\xf8\xe1\x1e\x45\xec\x8a\x20\x4e\x50\x5b\x7a\xaf\x62\x9b\x07\x59\x63\xfe\xe9\x45\x13\xb5\x55\x5e\x85\xda\x0e\x39\x30\x55\x91\xab\x04\x88\x9b\x50\x9d\xbf\x51\x5e\x53\x2f\x09\x70\x45\x38\x58\xe4\x96\x96\x85\xb6\x62\xcb\x4c\xc6\x01\xe8\xda\xa9\x0b\x29\xb2\x3e\x8b\x00\x67\xb5\x28\x2a\x13\x6e\x50\xb4\x91\xc0\x79\x4e\x3f\x28\xd1\x6f\xb3\x07\xc0\x32\x5c\x66\x29\x60\x0c\x07\xd8\x36\x13\x38\x60\xad\xb4\x55\x0a\x29\xc4\x06\x25\xe4\xa0\x28\x55\xbd\xf1\x51\xa5\x64\x03\xbd\x4c\xcb\xe2\xb3\x2b\x75\xcf\xfa\x12\x14\x54\xcc\x69\xa2\x3b\xd3\x31\x7b\xc6\x9c\xb9\xb3\x19\x74\xea\xf6\xfb\xa6\x6a\x87\x05\xb6\x00\x2e\xd9\x0c\x52\xac\x87\x9e\xcb\x8a\xba\xfa\x09\xf7\xdc\x64\xbd\x82\xf0\xdb\x45\x45\x21\x01\x98\x55\x97\xb0\x24\x70\xfd\x84\x46\x65\xdb\xc0\x87\x34\x1e\xee\xbd\xf6\x40\x52\x40\xd3\x7a\x83\x5a\x52\x76\xc3\x26\xb9\x91\xf9\xb8\x35\xba\x93\xdb\xb7\x4f\x52\xf1\x79\xbc\xc2\xd0\xff\xf4\xd8\x60\x9e\x96\x2e\x27\xb5\x0a\xa1\x24\xc1\xfd\x16\x35\xe4\x07\xc6\x03\xb5\x80\x7f\xf6\x60\xfa\x66\x8b\x44\xbc\x62\xae\xae\x1e\x0e\xd1\xe7\x6d\x36\xa0\x08\x88\xfc\xae\x75\xa9\xe0\x6b\xa3\x12\x24\x01\x53\x4c\x71\xd6\x29\x9d\x85\x5e\x33\xa6\x29\x76\xbf\xa2\xd3\xda\xca\x01\x95\xae\x89\x1d\x67\x14\xa6\x0a\x14\xc9\x78\xe6\x4b\xaf\x8d\x56\x0a\x2f\x3b\x30\x99\xe8\x33\x8b\x0d\x5b\x27\x35\x52\x94\x6f\xe8\xba\x3e\xc5\x41\x9d\xf8\x90\x26\xf4\x29\xdc\x56\x93\x89\xc8\xcf\x8e\xc8\x26\x5f\xa2\xe9\xd8\x12\x27\x18\x9f\x99\xa2\x49\x37\x02\xe4\x5b\xe5\x20\xa6\x78\xad\xda\x37\x5a\x19\x4f\xd1\x2a\xf4\x05\xbf\x31\xfb\xde\x8a\xe4\x55\x77\x74\x34\xb8\x6a\xfc\xee\x51\x0d\xa7\x44\x00\x8d\xbb\x92\x46\x1f\xd6\x07\x83\x30\x5a\x61\x28\xf1\xf2\xbe\xee\x19\xde\x0e\xba\x09\x78\xa0\x1a\x28\xd8\x81\xcc\x0d\xca\x4e\xef\x26\x82\xfe\xf2\xf8\xc3\xc2\x52\xb6\xd7\x29\x12\x3b\x69\xbb\x67\xe6\x9d\xbd\x44\x4f\xdd\x13\x12\xb4\xb4\x0f\x38\x79\x96\x7f\xd9\xa2\x86\x55\xb3\x5f\x01\x9b\x91\x2b\x4c\x82\x31\xc3\x60\xfd\xe6\x16\x05\xbf\xa0\x64\xaf\xb9\x5b\x5f\x18\xa3\x50\xfa\x38\x11\x50\xcc\x05\x1f\xb8\x36\xfd\x3c\xda\x66\xcd\x68\x6d\xed\xe0\x11\xe6\x1b\x67\x74\x32\x81\x47\xec\x9a\x6c\x5c\xde\x7e\x60\x84\x38\x33\x78\x5d\xc1\x06\xc7\x7f\x1c\xac\xb5\x41\x51\x15\xc6\xe5\x7e\x76\xfd\xb2\xf4\x03\xae\x83\x5e\x0c\x63\x63\x99\x9b\xba\xfa\x73\x95\xf6\xb4\x4f\x07\x74\x5d\x40\x4b\x9c\x1e\xa0\xef\xbc\xf9\x3d\xb2\x6b\x68\x47\xf7\xbf\x63\x53\x3a\x28\xd9\xc4\x83\x42\xda\xa0\x79\xbf\x7c\x62\x80\x7a\x16\xc2\xa4\x16\x5d\xd0\x3b\xab\xf4\x94\xcb\x07\x42\xf2\x3a\xfa\xb3\x67\x07\x29\x43\x50\xe2\x13\xca\xf6\x14\xd7\x34\x5c\xd5\x30\x0b\x2f\xa3\x5e\x20\xc6\xef\x39\xe3\xc4\xc0\x34\x65\x97\x69\xb0\x25\x34\xe5\x5a\x97\x76\x0c\xa1\x1a\xe2\x4b\x3c\x7c\xf6\x16\xb9\xfd\x48\xe0\xdb\x30\xf6\xf4\xcf\x1c\x18\xa2\x77\x7d\x28\xf2\x85\x0c\x77\x66\xc6\x3a\x39\xc3\xc3\x12\x65\x14\x7e\xed\x5a\xc5\xf5\x0d\x61\x21\xf5\x67\xd4\xc6\xc8\x9a\xae\x0e\x4d\xcb\xb3\x79\xad\x77\x84\x9e\x1f\x67\xc6\x2e\xb7\x11\xfa\xea\x59\xe9\xb6\x4d\x81\xc3\x2a\x65\xea\x03\x95\x15\x73\x56\xe5\x06\x53\x93\x57\x87\x2f\xef\xd0\x9f\x93\xef\x27\x2e\x1a\x99\x37\x1e\xe4\x38\xde\xeb\x08\x33\x72\x6b\xec\x34\x66\xf6\xdd\x35\x41\xdf\x2c\x3e\x05\xa6\x94\xc9\xde\x22\xec\x1f\x3d\x26\x93\xc9\x56\xe6\xd1\x65\x92\x64\x19\xa8\xda\xb7\x46\x79\x9c\x96\xe3\x95\x2a\x92\xfc\xab\x3d\x57\x8b\x04\x5e\x92\xae\xb7\x77\x29\x9e\x82\x01\xf2\xc5\x78\x3e\x77\xe9\xc9\x61\x4a\x0e\xc8\x02\xe7\xea\xad\x9a\x6c\x16\xa1\x10\x44\xdf\x11\xab\x32\x49\x58\x35\xae\x24\xed\xc6\x99\x9d\x9a\xef\x8a\xe7\xf6\xaa\x08\xa9\xcc\xa0\xc7\x14\xa9\xbe\xb2\x9b\x2f\x84\xb3\xb7\x68\xf4\x3a\xc8\xd6\x97\xfe\x04\x7f\xa1\x09\xa2\xba\x94\xd8\xa8\x0c\x85\xf7\x3b\x9f\x0c\x8c\xda\xaf\x83\x51\x3c\xe4\xf9\x31\xc2\xb0\x73\xa2\x9c\x8e\x31\xdb\xe4\x42\x38\xe4\xb4\x92\xfb\x9a\xf5\xab\x3c\x56\xc2\x6c\x9c\xda\x94\x2c\x58\x14\x63\xb5\xb7\x5c\x3b\x7e\xc0\xbd\xc0\xeb\x1a\x32\x43\x13\xe7\x83\xc0\x89\x17\xf3\xd4\xb7\x24\xa0\xc1\x04\x2e\xf2\x81\x8d\x3c\x87\x15\x57\x23\x71\x02\xef\x86\x4c\xa6\x57\x76\x46\x36\x8d\x94\x24\x4d\x5e\x59\xf5\x75\x25\xeb\xc1\x06\x8a\x0e\x8d\xf1\x99\x26\x2e\x03\xb2\x78\xc1\x82\x46\x69\xc4\x97\x95\x28\xcb\x3b\x3f\xd1\xf5\x0e\xda\xa8\x4e\xe3\x02\x41\x79\xfd\xc5\xa2\x06\x9d\x25\x42\x31\xec\x95\x23\xaf\x1b\x95\xbf\xa3\xb1\xc5\x4c\xbf\xf1\xea\x18\xdd\x84\xc0\xac\xc6\x02\x6b\xb7\x3e\x7e\x41\x43\x11\x00\x61\x49\x20\x0e\x36\x96\x54\xbe\x9d\x4d\x30\x9f\xe2\x1b\xdf\x78\x32\x1d\x06\x67\x77\xb6\xc7\xf4\x85\x0f\xb7\xf0\x9e\xdb\x4d\x1f\xbe\x61\x49\xde\x61\x18\xc2\xec\x7f\xbc\x34\x42\x1d\x64\x00\x86\xb1\xc8\xdd\xf8\xb2\xde\x76\x77\xe0\xf4\x75\xeb\xe2\xc5\x7a\xed\xfe\xd1\x0a\x1b\x85\x16\x51\x49\xd8\xa5\x67\x9f\x3c\x87\xef\x46\x0c\x3c\x93\x1b\x9b\xe5\x06\x77\x48\x57\x1f\xc6\x5f\xbe\x2e\x54\x0e\x6f\x68\x5a\x00\x8b\xca\x31\x77\xfd\x2d\xe9\x6b\xb7\x80\xd0\x5f\x08\xc7\x5f\xd6\x98\xe1\x31\x72\x8c\x68\x8e\xbe\xab\xf1\x36\x84\x6a\x25\x57\xd4\x7b\xe4\xac\xa6\x66\x85\x38\xf6\xa8\x3f\xd3\x7e\x42\x82\x01\xa9\x42\xc7\xce\x7e\xed\x39\x65\xbf\xa3\x1e\x61\xa7\xdf\x9f\xf9\x89\x62\x54\x59\x07\x36\xc7\x14\x66\xcf\x9b\xaa\x38\x53\x71\xae\xaa\x50\xaf\x7e\xed\x9c\x71\xfa\xe6\xab\x09\xad\xc5\xf0\x83\x0b\xc5\xb3\x22\x82\x33\xdf\x6f\x3c\xad\x74\xe5\x8b\x41\x6f\xb4\x1a\xa2\x6f\xfd\xb6\x06\x9f\x72\x60\x29\x4e\x03\x33\xe6\x20\xbd\x87\xce\x35\x2b\x11\xf4\x84\xaf\x69\x66\xcf\x59\xa5\x24\x0d\x18\x3d\x7d\x0d\x3f\xbb\x97\x00\x6a\x43\x27\x3e\x59\xda\x72\x5a\xa3\xb4\x4f\x66\x47\xd9\x45\x13\xb5\x5c\x55\x1c\x23\x62\x54\xb6\x40\x33\x97\x48\x8a\x7e\xe1\x8b\x73\x8d\x2b\x1f\x51\x89\xd4\xb1\x85\x6c\x5b\x48\x52\x84\x65\x99\x9f\x44\xd1\xa5\x08\x4b\x94\x30\xba\xf4\x23\xcf\x6b\x4c\x7e\x52\xb4\x45\xa1\x91\x79\x50\x33\x0d\x16\xda\xe7\xa2\xda\x7f\x49\x68\x84\x5d\x47\x02\xca\xb1\x3d\xd9\xef\xbc\xd4\x2c\x7d\xe3\x55\xea\xfd\xa2\x31\x1a\x1f\x84\x4f\x13\x78\xee\x90\x2d\x9c\x90\xaf\xa4\xc6\x64\xa8\xb8\xce\xdc\x3d\xca\xd8\x96\x99\x9e\xc0\xe8\x44\x08\x5f\xde\xae\x77\x21\xdc\x5e\xee\xfa\xc4\xba\x47\xdf\x12\xe2\xca\xdc\xa3\x21\xba\x8f\x5d\x4a\x1f\xd9\x43\x8c\xce\x1d\x2d\xf8\xff\x7d\x4c\x13\x20\x33\x7d\xde\x3f\xb1\x74\xa0\x3b\xa0\x14\x60\x3f\xe6\x70\x99\xcb\x95\xb0\xc0\x05\xff\x6e\xb8\xa9\x2b\xbc\x35\xd7\xa0\x1c\x1e\x25\x73\xa2\xd0\x20\x8f\x72\xff\xac\xce\xd6\x7c\x21\x3c\x7a\x46\x67\x7f\x42\x4f\x00\x31\x8d\x6d\x1a\xd8\xbd\x04\x39\xd1\xac\xd0\x9f\x79\xef\x0e\xed\x7d\x70\xa8\x82\x50\x4e\xba\xee\xcc\xff\x43\x94\x3a\x0a\x74\xf9\xe7\xd5\x21\x65\x0d\x71\xc2\xf5\x73\xab\x47\xa4\x70\x4a\x3c\x63\x59\xa0\xc8\xe1\x78\x2e\x82\x76\x11\x52\x16\x79\x16\xd0\xf4\xa5\x95\x91\x2d\x26\x27\xb9\x8d\x0b\xa5\x3d\x07\xc3\x7b\x64\xdf\x59\x3e\x44\xdc\xf0\xcc\xe8\x1f\x5c\xb0\x4c\x8e\x56\x2a\xa0\xe1\x08\x35\x7e\xf1\xb6\x46\xf8\xad\x50\x82\xd3\x30\x6e\xe3\x11\xa5\x0d\x1e\x5d\xa1\x40\x2b\x86\x4f\x69\x7d\x82\x78\xdc\x2a\x55\xc0\xb3\x6f\xde\xdb\xa4\x8c\x0c\x2c\xd6\x5f\x30\xbe\xd9\x33\x22\x8e\xed\x36\xc3\xfb\xb3\xbd\xd2\x3d\xf5\x12\x2d\x94\xe1\x3a\x21\x25\x4d\x1a\x79\xd1\x48\x39\xe5\xa9\x13\x5a\x6d\x74\x33\xfa\xc2\xe4\x61\xf1\x95\x3a\x0c\x2c\x11\xbe\xb3\x3a\x09\x12\xc4\x67\x2b\x73\x46\x73\x3a\x89\x35\x7b\x8b\x90\xe6\x5d\x00\x4b\xc4\xb5\x90\x9d\x98\x85\x4f\xe2\x9d\x9a\xfc\x47\x10\xf5\xfc\xd4\xb8\xb7\x73\xb7\x36\x0a\xe5\x50\xba\x28\xbf\x7d\xf9\x11\x6d\x72\x86\xa8\x93\xc4\x9a\xb5\xaf\x69\xe6\xbb\xc0\xf1\x02\xa6\x25\xd6\xd8\x19\x3e\x39\x41\x77\x66\x31\x29\x34\x7b\x79\x33\x67\xfd\x6e\xc9\xc1\x67\xa6\xde\xdf\xde\x2a\x0b\x35\x4c\x04\x6f\xed\xc0\xd5\xbc\xcd\x7d\x93\x0b\x4c\xa8\x38\xfc\xe7\x96\xec\x16\x4c\x17\x2b\xf0\x7d\x71\xc2\xb5\xb9\xe9\x75\x56\x81\x7e\xdc\x55\xfd\xe2\x5d\x49\xed\xc9\xad\x51\xd3\x15\xcb\x37\xdb\xf5\xd3\x4d\xd4\x52\xe1\xbd\xfb\x86\xab\x4b\x9d\x59\xdf\xb5\x0f\x56\x20\xb8\xdc\x8f\xb5\xd0\x6f\xcc\x3e\x2d\x57\x19\x6b\x10\x97\x04\x62\xf0\x83\x42\x1a\x67\xb5\x85\x7c\x8c\xaa\xca\x8c\x72\xc4\xf8\xf4\x4b\xa0\x41\xf2\xea\x8c\xf7\x8e\x29\x0d\x64\xe4\xf9\xa0\x1a\xc5\xb0\xaf\xe6\x94\xaf\xa6\x01\x36\x2d\x96\x1f\x3f\xaf\xd9\x55\x83\x22\x45\xa6\x62\x58\xf3\xc1\x56\x2d\xd5\x27\x54\x22\x6d\xb2\xef\x6e\x57\x9a\x61\x84\x2b\xff\x67\x66\x4f\x91\x66\xe6\x55\x08\xcb\xb0\xb1\x21\xb4\xfe\xb4\x06\x2f\x71\x45\xea\x2a\xf2\xf6\xec\xa5\xb7\x8c\x4e\xb7\x23\xa6\x8b\x1c\xf5\x9a\x30\xee\x73\x72\xdf\x6e\xff\xc4\xf4\xf4\x13\x85\x94\x59\xd7\xd8\xa8\x02\x07\x12\x49\xcf\x3d\x32\x42\xaa\x7d\x98\x31\x80\xeb\x23\x3d\x3c\xc7\xbd\x7e\xf9\xa2\xc2\xcd\x37\x5e\xbf\x7c\x25\x53\x55\xbe\x53\x36\x98\x60\xe3\x88\x68\xda\x92\xd8\x86\xcd\x43\x25\xc8\xc1\x12\x99\x6f\xbf\x79\xbe\xea\xd0\x51\x08\x9f\x3c\x7d\x81\x72\x7d\xbc\x27\x00\xb1\x29\xd0\x99\x70\x6b\x53\x3c\xc5\x58\xbe\x5c\xb4\x99\x86\x3d\xa5\xb8\x1a\x03\x7e\xd0\x85\x9f\x5f\x9d\x7e\x60\x15\x0a\x4a\x01\x73\x25\x15\x28\xc1\x57\x8f\xab\x0c\x33\x86\x53\x8d\xd6\xc2\x93\x78\x64\x9c\x05\x26\x70\x96\x42\x7f\x66\xff\x83\x49\xa3\xb9\x44\x1b\x1c\x93\xb2\xe3\xb7\x88\x26\x87\x02\x26\x63\xf3\xda\x75\xf2\xbc\x67\xc0\xa9\x1a\x82\x75\x9e\xf3\x3e\xde\xd3\x38\xf5\x0f\x6c\x3e\x29\x15\xa7\xd8\x7a\xac\xac\x40\x10\xf0\xde\xc2\xfd\xa7\x46\xab\x9d\x48\x25\xce\x2c\xb8\x5f\xf3\x7c\x80\x16\x27\xbb\xb2\xd5\xc9\xbb\x5c\xd7\xdf\xa1\x58\xf4\x10\xc4\x85\xa1\xb3\x78\x83\x36\x8c\x73\x82\x4a\x25\x41\x67\x85\x5d\x13\x24\x2f\x9c\xe5\x49\xf1\x37\xde\x32\x48\x5a\x9b\x31\xf0\xf5\x35\xe3\x25\x47\x32\x4a\xcf\x4c\x84\x1b\x34\x69\xb2\x4f\xec\x1e\xf8\x2c\xe0\xfe\x81\xd1\x69\xb1\x67\xaa\xa6\x26\x38\xb7\xa3\x83\xa7\xaa\x1f\x3f\xac\x6b\x54\xdb\x76\x7c\xbc\x1a\xbe\x32\xfa\xb4\xa3\x0d\xeb\x23\x86\x8c\x33\x9a\xb4\xf1\x76\x15\x43\x28\xe0\x19\xb9\x35\x1a\x2a\xad\x17\x02\x3a\x63\xfa\x15\x57\x30\xec\xc2\x56\xb5\x31\xe0\xf9\x62\x74\x30\xf1\x89\xa1\x22\xb3\xa8\x21\x3b\x5f\x08\x9f\x5d\x29\x4c\xc6\x6b\xc0\x0e\xe2\x51\xb7\x31\xf7\x81\xe1\x4a\xdf\x9b\xf7\xe5\x3e\xb7\x57\x25\x89\xd0\x44\x26\x25\xfb\xfd\x3b\x79\xf0\x5d\x18\xd8\x5c\x0f\x2b\x8e\x5b\x0b\x4f\xa4\xcb\x5b\x69\xd4\xa1\xd6\xc5\xb9\xea\x3d\x72\x52\x2c\xb7\x33\xe7\xf6\x65\x7b\x5f\xd7\x1d\x01\x4d\x0a\xf9\xd4\xce\xe6\xb3\xcf\xcc\x3f\x37\xa4\x10\xa9\x14\x08\x5b\x87\xd6\x49\x8a\xa1\x4f\x94\xe7\xa0\x58\xe6\xa2\xe3\xae\x09\x4a\x0c\xb6\x49\x50\xa3\x28\xe5\xba\xf8\x53\x0d\x85\xec\x11\x07\xfa\x0c\x73\xc0\x27\xb1\xfd\x8a\x78\x9e\x69\x03\xe4\x70\xf5\x92\xc2\xa6\x64\x4d\x5d\x51\x67\x04\xaf\x8f\x6b\x7a\x64\x26\x45\x66\x15\x26\xda\x6a\xdb\x72\xc3\x94\xc6\x5e\x94\xc9\x18\xfb\xb7\x9d\x2f\xce\x36\x9f\x49\x89\xf6\x67\x56\x0c\x4b\xbf\xe5\xd9\xed\x2d\x33\xdb\x84\xab\xd9\xd9\x41\x8a\xab\xbc\xb0\x40\xc9\xce\xb9\x43\xee\xbd\xb2\x0d\x79\x32\x36\xa5\x7c\xa9\x96\x6d\x63\x36\x2f\xd1\x9b\x0d\x9b\x7b\xb4\x2c\x0c\x24\x94\x96\x07\x37\x0a\x17\x10\x8a\x8a\x30\x1f\x1d\x35\x3c\x10\xe6\x8c\x37\xb5\x13\xdc\x85\xcc\xa5\x9c\xb7\x65\x4c\x21\xa4\xe6\x55\x91\x6d\x47\x97\x72\xa0\x4f\x4c\x7e\x71\x8d\x54\x59\x66\xbf\x66\xe4\xf9\x4a\x40\xcb\x17\xc2\xec\xce\x74\x39\x2e\xbd\x86\x62\xc9\xf1\x99\x2b\x79\x44\x0e\x70\x39\x11\x87\xca\xbc\xf2\xa2\x76\x52\x32\xc1\x4e\x1e\x34\xf7\x29\xdd\x2d\x5f\xbc\xb1\x7e\xe3\x0b\xb9\xcb\xb4\xe4\x03\x73\xf5\x83\x86\x4e\xff\x66\xc5\x10\xb5\xac\xa4\x8d\x63\x8e\x0b\xd9\xd2\x96\x1b\x5a\x16\xb0\xd6\xc6\xb3\x3c\x7e\xe7\xaf\xfb\x7f\x62\x78\x26\x28\xcb\x87\xa3\x6c\xd8\xc0\xec\xc5\x11\x0a\xa5\xd7\xae\x72\x48\xde\xb9\x0a\x6a\xa3\x1c\xd5\x64\x96\x70\xfb\x7c\x41\xc6\xe7\x72\x40\x7d\x54\x83\x98\x23\xdc\xb2\xff\x7c\x86\x5f\x52\x8d\xd8\x01\x8f\x22\xeb\xc6\xc9\x0a\x8d\x82\xa0\xac\x14\xca\xb7\xb6\xa7\xeb\x94\xc0\x13\x3d\xd7\x9d\xbb\x92\xd5\x3c\xb7\xa5\x3d\xfa\x94\x89\xd2\xb7\x1c\x30\x5e\xd5\x1f\x52\x0a\x2f\x40\x88\xf8\x3c\x7f\x8b\xf0\x8f\x01\x94\x2b\x0b\x1d\x3b\x36\x56\x01\x25\x53\xa8\x24\x37\xc6\xed\xaf\xf3\x33\x7e\x05\x62\x93\x20\xe3\xff\xb6\x6b\xf1\x0e\xe2\x5e\xae\xc3\xdd\x9f\x19\x57\x56\x44\x14\x2d\xb6\x50\xc6\x4e\x4e\x5f\x7d\x5d\x10\xba\x8d\x3b\x1e\xe0\x05\x82\x07\xa2\x2a\xfe\xbb\x43\x35\x9b\x2e\xe4\xf1\x79\x45\x8c\xac\x9d\x78\x58\xd5\xeb\xea\x03\x34\x60\xd9\xfa\x23\x58\xfe\xb8\x2d\x91\x9a\xcc\x3e\x71\x48\x5e\x48\xdb\x6c\xa6\xb1\x97\xb9\xa0\x7d\xb4\xb2\x15\x55\x1f\xa0\xc3\xda\x06\xb6\x03\x0a\x63\xe3\xc1\x5d\x53\x92\xf3\xc9\x4a\xa1\xb8\x2e\xb1\xc6\xa8\x51\xad\x88\x70\x1c\x9d\x33\x37\x4e\xe2\x4b\xdf\xea\x75\x89\x49\x91\x17\xad\x9d\xca\xf1\x18\xe0\x62\x37\x90\x2a\xb2\x1f\xd8\x93\xe4\x41\x26\x70\xe3\x66\x41\xe7\x9d\x5a\xc3\x72\x7d\x80\x6a\xc0\x4e\x28\x5f\x77\x6f\x68\xe0\x2a\xb0\xc6\x6d\x2c\x3e\x71\x62\xa9\x32\x45\x86\xdc\x64\xb0\xd0\x6f\x5c\xb0\x5d\x6a\x36\xd6\xa3\xed\x9e\x3f\x75\x51\xfc\x11\xc2\xc6\x55\xbf\xbe\xbb\xef\xe0\x59\x3a\xab\x38\xc5\xc6\xbc\xf5\x6c\xb3\xfa\xe9\xd4\xb4\xf8\xe2\xfa\xce\x51\x45\x90\x07\x22\x53\x11\xd6\xc9\x5e\xa4\x19\x5c\x5a\xa8\x62\xd5\x41\xaf\x88\x43\x7f\xba\x57\xd6\x88\xe6\x9c\xd6\x06\xf8\xdd\xed\xc7\x84\x76\x1e\x32\xfd\x38\x77\xba\xb0\x27\x79\x3d\x0e\x52\xa1\xf8\xd5\x92\x32\x72\x43\xc2\xa0\x2f\x77\xc7\x42\x9e\x81\xcd\xe9\xe0\x4b\x85\x30\xa1\xd7\xcc\xaf\xc6\x24\x9f\x42\x7d\x45\x9c\xe6\xaf\x57\xa7\xb1\x9a\x15\x04\xa2\x15\x39\xc0\x9c\x11\x97\x15\x6b\x58\x4a\x82\xa2\x0d\x3d\x0e\x9d\xcf\x5d\x37\x41\x0b\xd8\x94\x38\x9c\x0c\x60\xe4\x9f\x91\x17\x59\x42\x1e\x1b\x13\x87\xad\x0f\x08\x98\xa4\xd2\x9d\xda\xae\x7b\xa1\x04\x15\xcb\x17\x61\xe0\xa5\x9d\xb1\xb3\x1e\x04\xac\x75\x9b\x59\x73\x50\xaa\x82\xf7\x2a\xdd\xf9\xdc\xe4\x2d\x49\x12\x5d\x6e\xd1\xc5\x6b\xc2\x79\x8b\xd3\x6f\x87\xe5\x93\x54\x14\x01\xc6\xe7\x8e\x4b\x71\xcd\x04\x89\xda\x70\x3a\xed\xb8\x53\x46\x20\xa6\x63\x6b\x2c\x99\xa2\x96\x3a\x00\x63\x56\x65\x3d\xfb\x02\xdf\xfd\x6d\x6d\x5c\x6d\xdd\x92\x60\x8a\x00\xf3\x3a\x09\x14\x85\x3a\xff\x0f\x94\x12\xca\xa4\xc8\xf1\x78\x0e\x74\x2c\x94\x8e\x28\x25\x75\x06\xf1\xd5\xd7\x44\xeb\x8d\x38\xdc\xa4\x97\x55\x15\x27\x5b\x1b\x59\xd7\x09\x2c\x98\x75\x2c\x76\x2b\xda\xa3\x58\x6c\x8d\xe3\xe9\x77\xe7\x59\x40\x28\x55\x1b\x27\xf5\xf2\xda\xee\x4d\x9a\x63\xd9\x7b\x2c\x4d\xda\x0d\xc2\x98\xaa\x98\xf9\xdd\x42\xa5\x4f\x0d\x6c\x66\x44\x51\xe8\xcf\x3c\xf6\x68\xfa\x4f\x5c\x40\x3d\xd1\x5e\xc9\x0e\x56\xc6\x03\x84\xb2\x92\x3a\xfb\xcb\xf9\x4a\x66\x41\x30\x57\xe3\x7a\xf6\xb1\x11\x2a\xa5\x41\x24\x80\x57\x5e\xab\x6b\x47\x98\xc8\x15\xa8\x9d\xcc\xb4\xf6\x74\xde\x01\xec\x22\xe0\x28\xb3\x7a\x49\x49\x16\x33\x3f\xd9\xce\x97\xd9\xf5\xbe\xc5\x4d\xcb\xb2\xff\xf2\x98\xbc\x91\xba\x85\xa8\x20\x14\x8e\x78\x55\x9a\xc3\xb7\xb6\x45\xc7\xcd\x5e\x09\xa4\xf1\x1b\x55\xc8\xfe\x30\x45\x4f\xc1\x60\x09\xc9\x2e\xe4\x0d\xcf\x28\x4e\x72\x08\x57\xec\x44\xa3\xa2\xed\x15\x61\xac\x61\x52\x82\x7b\x9d\xe8\x1f\xb7\x0c\xd2\x9a\xc1\x90\x7a\x04\xb3\xdd\x16\xbe\x62\x25\x4b\x73\x4e\x0b\x13\xd6\x3e\xa3\xab\x27\x32\xd3\x0f\xd1\x75\x92\xea\x89\xe7\x5e\xad\xcb\x2c\x94\x83\xf8\xd5\x64\xfa\x2c\xb9\x38\x81\x0d\x84\x18\x98\x31\x67\xdb\x18\x95\xe6\xc3\x85\x66\x39\xef\xa3\x5f\x6b\xe3\xf9\x14\xb9\xc9\x14\x23\xb7\x66\x86\x0c\x09\xb0\x87\x88\x84\x78\xcd\xd9\x61\x4a\x15\x1f\x9d\x27\x8f\x1d\x6d\x90\x71\x8f\x8a\x3b\x36\x1d\x0d\xc9\xdb\x82\xeb\x6f\x11\x06\x37\xcd\xac\x9f\xa7\x12\x75\xa5\xe4\xce\x1b\x0d\x34\x23\xc7\x83\x76\x2d\xc6\xe7\x62\x3f\x7d\x78\xcf\x6e\x15\x8b\x66\xf7\xba\x74\x39\xe8\x00\xcf\x02\x1a\x29\xe0\x1d\x45\x4f\xd7\x86\x7e\x89\x83\x60\x32\x77\x3e\x9e\xae\xbf\x2a\x00\x57\x18\xf2\x64\xdd\x5b\x72\xed\xce\x9c\x19\x8b\xe9\x96\x15\x99\x57\x80\xbd\xba\xa0\xad\x66\x8f\x4f\x6e\x80\xc0\x05\x3e\xf4\x44\xda\x3d\xb6\xaf\x61\xa6\x59\x42\xbc\xa5\xc1\x6e\xec\xe4\x3e\x1e\x22\x16\x81\x28\x5f\x8b\x17\xd4\xf8\xc1\x97\x68\x5b\xc1\x45\x6c\x7c\x9e\x82\xe5\xff\x6e\x91\xac\x43\x41\x50\x42\x4c\x38\x4d\xcf\x20\x7f\xb2\x5d\x83\x50\x31\x5a\xc1\x80\x1a\x78\xab\x34\x5e\x3c\x28\x4a\x55\x95\xbf\x2a\x12\xa7\x0e\xa0\x08\x33\x56\xeb\x82\x19\x5a\x54\xea\xc5\xb1\xfb\xf2\xea\xc9\x4a\x26\x87\x3c\x9f\xa2\x62\xc0\xd3\x92\xf0\xf4\x9d\x9a\xed\x98\x10\xec\x66\xa5\xc3\x54\x97\xf7\xa7\x19\x9e\xc8\x98\xbf\x5f\x9e\xed\x75\xc0\x6d\xc0\xd9\x13\xba\xce\x95\x33\x6a\xe6\xbb\xd0\x70\x00\x7c\xee\x1c\x0d\xed\x0d\x11\x15\x3a\xa8\xc6\xd7\x6d\x45\xbb\x9c\x09\xa3\xe5\x8b\x94\x80\x92\x09\x38\xd2\xbc\x7f\x18\xaf\x5f\x96\x13\xea\x5b\x2e\xa1\x7e\xfc\xb5\xeb\x34\x4f\x03\x2f\x70\xa3\x5f\xc7\x88\xde\xd0\x9d\xa6\xe8\xea\x21\xc8\x24\xce\xff\x74\x2c\xfd\x37\x09\x11\x24\x6e\x81\xae\xd4\x9a\xaf\xa0\x88\x07\x92\x2c\x32\x2e\x39\xa5\x69\x3c\x10\xcf\x43\xc2\x5d\x85\x9f\x1c\xd9\x9a\x32\xfd\x31\xf3\x85\xf0\xec\x1d\xcd\x6a\xda\x8d\x3d\xe1\xa1\x96\x19\xd5\xaa\x59\x3f\x53\xe4\x03\x24\x90\x4b\xec\x56\xf3\x0f\x4c\xd7\x82\x4d\x0d\xda\xc4\x4d\x2e\x5c\x8f\x9e\xc5\xbd\xc9\x77\xcf\xea\xe8\x64\x63\x9b\x21\x9a\x5d\x80\x0d\x30\x14\x1e\xcf\x8d\x7f\xbf\x79\xa1\x2c\xc2\x7d\x12\x50\x0c\xf8\x5c\xad\xdf\xf8\xf4\x81\x8b\x15\xd5\x1e\x5c\xa9\x92\x46\x1e\xe1\x4f\x1e\x90\x73\x5f\x62\x2b\xd9\xf1\xa8\xa2\x5a\xf3\x53\x82\x01\x77\xff\xbc\xfa\x3e\x0d\xf1\x6f\x21\x32\x7d\x5e\x2c\x53\xb1\xf2\xc5\x89\xda\xcd\xc7\xe2\x84\x02\x1c\x1c\x4e\xd7\xa6\x7d\x51\xc9\x1a\x03\xf6\xce\x3f\x32\x4a\x65\x80\x97\x7d\x31\xfd\xda\xbb\x50\x37\x2c\x72\x21\x8d\xcb\xd4\x4f\x34\xc9\xe3\xa5\x1b\x02\xcc\xb6\x19\x2b\xeb\x0f\x67\xf8\xe8\xfa\xa6\x00\x7a\x9e\x13\xf8\x8a\x1a\x8d\x51\xde\xc5\xe3\xc7\x4a\x52\x04\x15\x12\x37\x2e\x1f\xa6\x8a\xad\x63\x8f\x6b\x13\xc4\x07\x14\xf4\xa5\xf4\x39\x53\xc2\xe6\x00\x39\x64\xf6\x9a\xe3\xba\x55\x71\xac\x1b\xe4\x72\xc9\x89\xbd\xca\xbb\xaa\x03\xcf\x12\xd4\xb1\x42\xf8\x74\x4f\x72\xc2\x9a\xa0\x51\xf0\xe4\xaf\x4d\x8a\xc2\x24\xae\x30\xc3\x2d\xf1\xc4\xaf\x7c\xaa\xc1\xf1\x41\x98\xc3\x5d\x30\x64\x84\x4a\x8a\x42\xec\x4e\x36\xef\xe2\x68\x92\x02\x35\xad\xe8\x54\x6b\xf4\x45\xec\x5c\x2d\xf7\xb8\x87\x49\xbd\x48\x00\x2d\x21\x99\x86\xf5\x4f\xe6\xb5\x51\x17\x45\xb5\x98\x19\x94\xbd\xf2\xec\x08\x75\x3e\xd9\xc3\x38\x8a\xb9\xa1\x2d\x3c\x47\xbc\x8a\x25\xa0\xb9\x0d\x0f\x0b\x59\x16\x93\xab\xec\xb2\x0b\x7a\x69\xb0\x36\x37\xc2\x75\x40\xd3\x22\x99\xc6\x5b\x33\xb4\x6e\xa8\x85\x30\xf4\xa0\x24\xfb\xf7\x67\xee\x7e\x46\x53\xd6\x60\x2e\x52\x7c\x88\xfc\xb7\xdd\xf2\xe2\x6a\x44\xd8\x05\x1a\x4b\xc7\x2b\x98\x5e\x2a\xb6\xcc\x30\x6d\x75\xfb\x01\xf4\x4a\x42\x89\x2e\xfc\xea\xb0\xd1\x69\x81\x02\x1f\x79\x1c\x69\xff\x2d\x21\x25\xe2\x05\x2e\xa4\xf9\x1b\xf2\x85\xf0\x9d\x09\x02\x8c\x1f\x8b\x54\x84\x0f\xc7\xea\x3d\x0e\x4f\x8a\xdf\x3c\xa8\xb8\xcf\x50\x64\x12\x9b\xcd\xdd\x32\x87\xdf\xbe\x58\x49\xca\xa0\x70\x7c\x4d\xbf\xa3\xff\x5a\x2e\x1a\x3e\x2e\xa2\x88\x5d\xf8\x61\x85\x33\xed\x70\x70\xfd\x8f\xe8\xa8\x84\xca\xaa\x48\xf3\x1a\x9f\xdb\x21\x77\x99\x4d\xea\xcc\xba\x84\x4d\x59\x4f\x6b\xad\x1d\xc0\xfd\xc3\xa3\xdf\x7d\x53\xe9\xbb\x95\x98\xc9\x3e\x98\x2c\x23\x76\x85\x0a\xcb\x8f\xcc\x54\x45\x29\xa3\xc5\x4c\xa0\x8a\xf7\x6a\x32\x44\x0e\xc0\x36\xb3\x81\x10\xbf\xbf\x6e\x28\xd7\x6a\xb8\x35\x88\xc2\x32\xc4\x48\x45\x80\x3d\x9a\x53\x20\x2e\x04\xf3\xc9\x20\xcf\xc4\xd6\x2b\xef\xf0\xb2\x78\x47\xec\x18\x93\x5c\x2b\x8c\x0a\xb8\xf0\xea\xab\x9b\xc4\x8e\x06\x4e\x0c\xb9\xc9\x7e\x45\x9a\x24\x79\x6c\x90\x3e\x78\x7f\xfa\xf6\x8b\x36\x10\x32\xb6\xe1\x66\xee\x4a\x94\x77\xa1\x4f\x49\xc2\x1b\x2b\xf4\x67\x0f\x3d\xca\xaf\xdb\x84\x51\xe1\x6e\xe7\x6f\x48\xa4\xef\xa3\xdf\xbe\xff\xb0\x2e\x65\xea\xb9\xd0\x64\x82\x17\xac\x00\xaf\x08\xb9\x99\xe8\xa6\x5c\x64\x06\x84\x75\x44\xb2\x3f\xb8\x3f\x9e\x6a\x32\x70\x3e\x23\x2c\x84\xb3\xef\x97\x98\x65\x1b\x92\x46\x37\xab\x16\x29\x92\x58\x47\xb6\x8d\x80\xe3\xa9\x8c\xb5\x2d\xc2\xb7\x95\xd8\xa8\x04\x7a\x59\x54\xdd\xf9\x90\xac\x49\xea\xac\x05\x1d\x16\xd6\xaa\x21\x83\x08\xa1\xad\xd5\x27\x26\x2b\x63\x29\x81\xf1\x6b\x54\x93\x3f\x48\xa7\x69\xd1\x2f\x96\xa5\x10\xd6\xd2\xe9\x7f\x7e\xee\x6d\x7c\x43\x5c\x47\x00\x1b\x9e\x19\x63\x8b\x32\xbd\x6f\x9b\xcb\x78\xd4\x9b\x14\xd1\x17\xc6\x76\x93\x95\xf0\xd4\x3e\xa5\xf2\x86\xbe\xc0\x9e\x4c\x9e\x37\x10\x1f\x4d\xa4\x2f\x99\x1e\xb5\x2b\x68\x33\x95\x3a\xfe\xc4\xb5\x95\xdf\x4d\xac\xd8\xd0\x22\x37\x7a\x86\xc4\xe0\x02\xcf\x8f\x0e\xc2\x80\xa7\x53\x5d\xd7\x87\x67\x5f\x19\xa6\x4c\xda\x19\x72\x75\xc1\x8a\xf4\x51\x51\x06\x75\x68\x21\xec\xa0\x94\x33\x55\xe6\x7d\x45\x41\xc7\x22\xf5\x58\xc3\xb6\xaa\x84\xaa\x32\x32\xab\x3c\x76\x58\x6b\x95\x6d\x05\x79\xe2\x94\x2f\x84\x4b\x7a\x92\xa6\x13\xf2\xec\x18\x3b\xb7\xe5\xa1\x0b\x14\xb4\x92\x4b\xa1\x07\x71\x42\xb1\x33\xee\x7e\x28\x7d\xab\x35\x54\x82\x44\xc0\xa5\xca\x63\x14\x63\x6f\x82\x01\x0a\x98\x2b\xf4\xf1\x7d\x9a\x84\x22\xb3\x21\xf4\xbd\xc4\xce\xed\x51\x25\x90\x11\x3b\xc1\x77\x9f\xe4\x4b\x4e\x5c\x01\x5b\x72\xbb\x57\x5e\xa0\xd4\x02\x26\x4a\x4f\x33\xb6\x3e\xc4\xe7\x64\x4e\xb4\xcd\x5c\x62\x23\x9f\xd1\x05\xb3\xc6\x21\xfe\xf3\xeb\x2c\x8a\xe4\xa2\x0e\x8f\x6f\x97\x5b\x82\xe1\xde\x40\xda\x36\x0a\x69\x59\xc3\x9c\xd9\xcc\x1f\x9b\x65\x1a\x5f\xce\xa8\x6a\x08\x10\x54\xb9\x41\x54\xb6\xef\xa1\xb4\x63\xb7\xeb\x0a\xe7\xa8\x3b\x0f\x73\x99\xfd\x55\xc0\xb6\x61\xaf\xfa\x3d\xb9\x85\x53\xd2\x29\x61\x2f\x09\x34\xac\xc1\x15\x2d\x5a\xf7\xc7\x26\x9e\x47\x1c\xde\x72\x9d\x37\x4e\x0d\x6f\x44\x99\xad\x1b\xdf\xb8\x67\xbc\xd2\x35\xd0\x76\x50\xf8\x95\xfd\x3c\x7c\xac\x40\x0c\xd1\x18\xff\x51\x76\xaf\xd2\x34\xf4\x83\x12\x6f\xdc\xe7\x3e\xa8\x29\x0c\x94\x29\x84\xf9\x32\xb0\x13\x65\xeb\x41\x72\x41\x76\x07\x8e\x50\xdb\xcf\x4c\xe9\x8e\x49\x65\xdc\xa2\xde\xe8\xb3\x93\x5d\xda\xd6\x16\xd5\x1a\x99\xdb\x8f\x35\xa5\x9e\x19\x43\x69\x7d\xea\x9c\xa4\xb7\x83\x6c\x75\xd4\xbe\x64\xad\x8a\x8a\x24\x5c\xaa\x3e\xf3\xdb\x8e\x34\x9a\xc1\x65\xfc\x53\x1f\x50\x76\x46\xa4\xb3\xac\x4b\x3b\x04\x3e\x88\x00\x7e\xfc\xe6\x56\x6b\xc0\x50\x46\x90\x63\x7a\x38\xa2\x9b\x93\xdd\x31\x3a\x55\x54\x31\x60\x55\x54\x84\xff\xe9\x8c\x1c\x30\x33\x2b\x29\xf0\x84\xe8\xac\x13\x1b\x99\xcc\xa9\xe3\x8c\x92\x12\x62\x5f\x62\xa5\x16\x6c\x1b\x11\xdf\x72\xc0\x59\x50\xd1\xa5\xf4\x3c\xa5\x49\x5d\xb6\x74\xc4\x93\xa4\xf7\x8e\xe9\x94\x26\x06\x3c\x81\xf1\x60\xb3\x3f\x7b\xfb\x30\x15\x41\xeb\xba\x84\x37\x3d\x8d\x0b\xf7\xeb\x7f\x49\x29\x29\x12\x0a\xfc\xb8\x07\x74\x60\xcd\x45\xea\x19\xc9\xab\x46\xc5\x0c\xa2\x3f\xf3\x8d\x41\x69\xbe\x1a\xc2\x35\xe8\xf9\xa8\x02\xfc\xd8\x1a\xa1\xd0\x6f\x7c\xa1\x23\x4d\x72\x6c\x17\x8d\xdd\x8f\x65\xd2\x49\xe6\x9c\x99\x9d\xec\xa6\xc2\x21\x4f\x8c\xd6\xa2\x5d\x8f\x18\x4f\x7f\x6f\x9f\x6a\xc6\x13\x08\x51\x88\xec\x4f\x9a\xb4\xf1\x6e\x50\x2e\xa7\x77\x4b\xae\x7c\x5a\x31\x2b\x44\xdc\x63\xfc\x9f\xcb\x35\x1a\x2c\x29\x41\x01\xaa\x7a\xf7\xc0\x08\xe5\x64\xac\x31\x74\x66\x78\x60\x79\x7a\xc7\x45\x59\x97\x45\xea\x3c\x31\xbe\xa6\x45\x31\x9e\x42\x0e\x62\x17\xf6\xb9\x27\x45\x92\x50\x83\x34\x5a\x3e\x6c\xdd\x0c\x7e\x4c\x29\x82\x98\x8b\x2e\x3f\xf7\x27\xac\x96\xd6\xa4\xb6\x1f\x57\x0f\xde\xe9\x8b\x94\xe0\x5d\x84\xfa\x8e\xed\xcf\xf4\x6f\xd6\x3c\x46\x00\xb3\x0a\x66\x0f\x6c\x53\x4d\xd1\xc0\xab\x60\x24\x84\xdc\x86\xac\x4a\x0a\xb4\xf6\x4e\x5f\x69\xc5\x7f\xe9\x0e\x39\xd4\xf5\x40\x19\x32\x35\xc0\x38\xa1\xca\x2a\x68\x4b\x57\xd0\xe7\x6b\x3c\xef\x9c\x41\x65\x7e\x59\x43\x1e\x1a\x40\x8b\xd2\xe8\xdc\xcb\xf3\xd9\x05\x35\x88\x83\xe8\xcf\xc2\xb7\x1f\x1d\x21\x8e\x1f\x21\xdb\xc7\xba\x52\x2f\xde\xa9\xb4\xf6\xb8\x50\xbb\x98\xa0\xbc\xd8\x22\xf1\xe5\x57\xa8\x10\xf8\x67\x87\xc9\x21\x37\x0e\x28\x74\x62\x70\xda\xa7\x0e\x25\x11\x83\x60\x45\xaa\xcb\xd8\xb5\x4b\x61\x5a\x43\x68\xb3\x93\xe4\x27\xf3\xe4\x5d\xc4\xbe\xbc\xfa\x5d\xbc\xfd\xb0\xa6\x3a\x89\x61\xf4\xbe\xe3\x9c\xf6\x40\x7b\xb2\xf7\xdb\x7d\x96\x81\xa0\x75\x8d\x06\x00\x36\x32\x55\xe5\x09\x6b\x68\xf2\xe6\x5d\x90\x28\x8c\x4f\x5f\x95\x04\x45\x8f\xa5\x6b\x0f\x1f\x50\xfa\xbd\x2d\x55\xf6\xe0\xf7\x6e\x4f\x73\xbc\x28\xf2\xfb\xf2\x26\xa0\xb6\x4f\x70\x83\xa6\xd4\xe5\x8f\x6b\x8a\xb6\x20\xa8\x58\x8c\x15\xc0\x06\x0f\xd9\xdf\x1e\xd4\xed\x41\xeb\x08\x7b\xd5\x5e\x91\x6a\xc5\x8b\x64\x6e\x31\xbd\xe0\xda\xda\x67\xcc\x9d\x3b\x8b\x15\xe2\xed\xcf\x28\xc0\x98\x20\x4a\x5a\xf3\x85\x70\x4c\x29\x79\x09\x51\x55\x20\x5f\xc2\xe4\xcd\xc2\xea\xc6\x71\x50\x85\x02\xec\xf3\x05\xb0\x62\xa9\x10\x9a\x63\xf8\x4d\xa2\xf6\xd9\xc2\x0f\xad\xd5\xd8\xa4\x45\x80\x4b\xdc\x62\xe6\xb2\x7c\x21\xfc\xef\x75\x72\xfd\x5a\xa8\x62\xa5\xd4\x76\x36\x6d\xd7\x88\xd8\x38\x71\x18\x3b\xba\x4a\x83\x88\x41\x2a\xb4\x6a\x8c\xbf\xdc\xd2\x20\x30\x94\xc0\x2b\x33\x6b\xf6\x37\x29\xd4\x70\xc4\x28\x1b\x86\xbb\x24\xb9\x5f\x0f\xaa\xf7\xfb\xf3\xd3\xb2\x3c\xe0\xc6\x42\x7f\x2c\x29\xa4\x47\xd0\xcd\xa2\x86\x71\xdb\xdb\x8a\xdb\x25\xcf\xd4\xbf\xdd\xa6\xc3\x48\x4b\x81\x19\x7b\xc7\x1b\x7f\x19\x26\x84\x01\xdb\x67\xcc\x99\x2b\x7a\xb8\x5b\xe2\xc8\xc3\x7d\xc8\xd9\x83\x5d\x7e\x42\x0c\x98\x81\xc7\x71\x1a\xb9\xb5\xa7\xcf\x97\x01\x35\x88\xae\xa8\xd8\x26\x77\x8c\xad\xba\x92\xf7\xbf\x9c\x78\x51\x4f\x63\xe7\xe3\x12\x2d\x1a\x42\x5a\x83\x31\x67\xb7\x65\xab\x2e\xa3\x29\xd4\x15\x25\xd6\x28\x33\x71\x39\xcf\xc0\x6e\xb0\x21\x56\x14\xe1\xfa\x39\x90\x37\x7f\x13\xa2\x81\x9d\xff\x88\x05\x7c\xa4\x02\x80\xbc\x23\x3a\xce\x17\xfb\xf2\x50\xce\x2d\x11\x42\x73\x4b\x90\x6d\x03\xaa\x62\x95\x06\x5f\x3b\x56\x09\x2b\x65\xae\x74\x28\xda\x0f\x47\x33\xe9\x73\xac\x8c\x6c\x47\xdf\x3d\x99\x35\x6f\xab\xee\xe4\x41\xc5\x42\xb8\x62\x2b\xdf\x90\xf9\x53\x28\x17\xbf\x25\xe4\x3f\xfb\x0d\x57\xa3\x47\x7b\x75\x08\xdd\x64\xbe\x64\x7c\x7b\x88\xa2\x27\x89\x28\xeb\x69\x5c\x38\x54\x1b\x2d\x10\x5f\x52\x94\xb7\x1d\xd1\x25\x3d\x7d\x22\xfa\xc2\xdf\x7d\x20\xdd\xbb\xc4\xd0\x07\xb8\x17\x58\x41\xca\x67\x26\x7c\xaf\x4d\xc7\x43\xda\xbe\xa0\x18\x5f\x6c\xa5\x83\x15\xe8\x43\x7d\xa9\xdd\x1f\xbe\x37\x4c\xe5\x61\x00\x5c\xe2\xdc\xba\xcf\xac\x1e\xa3\x2c\x64\x84\x7d\x10\x17\xc5\xc6\x84\xd7\x87\x8b\xba\x81\xf3\xd8\xf2\x85\x70\xe5\x8b\x7c\x75\x5e\xa7\xba\xfb\xbc\x37\x21\x9d\x70\x71\x7e\xa1\x12\x26\x9b\x37\x4d\xd5\xf3\x39\x42\x79\xbf\xb5\xa1\x83\x99\xab\xec\x10\x36\x64\xc4\x15\x32\x02\x51\x71\x13\x8e\x51\xf9\x13\x0e\x2a\x25\xe3\xc4\xc5\x0f\xa6\x5e\x1e\x27\x18\xe4\x6e\x3c\x24\x77\x2c\xe0\xf2\x6f\x33\xb4\xae\x03\x04\x5e\x40\xa1\x08\x40\xfd\xb9\x55\xaf\x28\x56\xe7\x7e\xbe\x10\x5e\xae\xd1\xb3\x81\xed\x11\xde\x42\xba\x41\x41\x9a\xd6\x81\x10\xcd\x30\x6e\x3d\x25\x07\x98\x2a\xd8\xce\xb8\x60\x4c\xfa\xed\x22\x0a\x06\x34\x12\x5d\xda\xc3\xa3\x41\x9d\x50\xd1\x9f\xbb\xea\xad\x26\xa5\x42\xaa\x73\xdf\xcd\xb7\x7a\x2e\xd1\x43\x9e\x67\x21\x4f\x90\x83\xe3\x5d\xf3\xcb\xa5\xcd\xa2\x10\x65\xd8\x20\x4e\x13\x62\x13\xa9\x3b\xc5\x98\xad\xc4\x6c\x70\x18\x99\x69\x17\xc7\x84\xdc\xca\xec\xfc\x43\xb2\x44\x79\xa2\xc4\x2e\x71\xb6\xf5\x95\xad\xb2\xfc\x08\xb0\x05\x5c\xb7\x57\xed\x23\xfd\xf2\x09\xcd\x24\xc4\x82\x89\x14\xc3\x65\x93\x78\xeb\xf5\x3a\xe0\x22\x9f\xf5\x95\xa5\x21\xca\x07\xf6\xc9\x17\x15\x55\xed\xe1\xcc\x72\x3a\xeb\xbc\x52\x0c\x4d\x1f\xae\x49\x36\x82\xad\x5a\x70\xbf\xb6\x56\x71\xbe\xb7\x7d\x0a\x12\x9b\x24\xce\x3c\xcc\x9d\xfb\x88\xae\x66\x02\x81\x53\xb4\xb9\xb8\x98\x31\x43\x18\x6a\x16\xae\x58\x02\x52\x8c\x96\x55\xe3\xd5\xac\x09\xba\x80\x26\x88\x90\x57\xee\x1b\x15\x57\x0f\xaa\xc8\x59\x66\x90\x22\xa0\xcb\xfc\x82\xf8\x98\xe0\xab\xb5\xf4\x1b\x2b\x82\x62\x11\xf9\xbe\x76\x3a\xaf\x1e\x32\x49\xcf\x08\x62\x46\xb6\x4c\xdc\xaf\xdd\x79\xb1\x8c\xfb\x10\xd0\x81\x28\xd6\xa3\x1f\xe4\x8d\xd6\xd9\x1d\x6c\x5c\xab\xf8\xa0\x44\xd7\x4b\x29\x88\x2a\x19\xff\x8c\xda\xd1\xc7\x35\x48\x79\xed\xf5\xea\x61\x8d\x17\xc4\x9b\x8e\xe2\xd8\x6c\x1d\x7f\x39\x96\x20\xd5\xb8\x66\x18\x68\x62\x76\xcd\x33\xe9\x83\xc4\x07\xb8\xc2\x4d\x27\x13\x49\x86\xec\x35\xdb\xe4\x74\x8b\x99\xf0\xe7\x25\xe8\xe6\xdf\xae\x55\xfb\x51\xac\xad\x99\xf9\x6c\xbb\xc2\xc9\x84\xc0\x46\x1c\xe2\xfd\xb5\xf9\x5a\xa0\x06\x7e\x40\x4b\x09\x0e\xc5\x38\xa8\x5a\x6d\xf2\x58\x7c\xf2\x79\xd9\x2d\x00\x36\xec\x01\xb8\x44\x55\x64\xc5\x88\x53\x63\xf4\x60\x81\x3d\x6e\xb1\xe7\x8d\x53\x74\xc0\x02\xa6\xe7\x1c\xfd\xb8\xd0\x3d\xca\xd5\xb4\x66\xd8\xf3\x5c\x30\x8e\xaf\xfd\x2e\xd2\x18\xea\xae\xea\x4e\xd6\xbe\x69\xa1\x7c\x21\x6c\x19\xa7\x98\x56\x60\xe4\xb3\xf1\x60\xdf\x65\x0a\x90\x2e\xa0\x4c\xee\x35\x6c\x6a\xe1\x9d\xfb\x85\x90\x56\x3d\x0b\x0d\x60\xe7\xf8\xe2\x71\x9e\xa3\x31\x29\x3e\xe4\x08\xf1\xa4\xec\xc4\x27\x15\xee\x50\x0d\x52\xe6\xd7\xc3\xbb\x1a\x1b\x96\xc5\xc6\x31\x2e\xa1\x1c\xbd\x1f\x7e\xf4\x1c\xfd\xc8\x89\x85\xc6\x8c\xff\x3e\x96\x74\x94\xaf\x50\x75\xfc\xa6\x0c\x93\x1e\xf7\xa0\x51\x8a\xe4\xe7\xb7\x69\x74\x80\x00\x7a\x9c\xa9\x63\xfc\x78\x90\x1c\xc5\x9a\xa0\x08\x29\x86\x0d\x79\x7c\x76\x7f\x8f\x86\xc5\x60\x5c\x21\xce\x7f\x7c\x40\xd3\x6f\x2f\x12\x5a\x82\x20\xe8\xe1\xbd\xe5\x28\x37\x5f\x3a\x46\x6b\x6b\x73\x52\x0d\x7b\x34\x9d\xfb\x79\x24\xe8\x02\x3e\x50\x3c\xad\xfa\x8d\x9f\xad\xd2\x29\xb9\x38\x7a\x9c\x02\x32\xf0\x3f\x43\xe4\xfa\xaa\x30\x04\x52\xd8\xf9\x8a\xd6\xf6\x33\x4d\xee\x74\x97\xbe\x95\xcb\x8e\xe8\x8a\x73\x35\xc2\xa6\xf5\xec\x94\xd9\x93\xd1\xf0\xcb\x76\x50\x14\x4c\xc7\x7e\x63\xd4\x2b\x63\x94\x0e\xaf\x6f\x45\x71\x5a\x34\x69\xbe\x36\x4d\x30\x55\x90\x2f\x16\x67\xf6\x57\x9a\xb2\x55\xd9\x06\xc8\xd1\x7c\x62\xe7\xb7\x37\xc9\x73\xc1\x17\xc6\x18\xdd\x8a\xc1\x68\x89\x38\xa8\x0f\x31\x49\xdb\xee\xfd\x0d\xca\x49\x2e\xc1\x2c\x9b\x63\xbd\xc3\xc5\xe7\xa4\x51\x9e\x02\x68\xd5\x88\xf2\x5c\xff\xb0\xc2\x33\xf7\x6d\xe8\x23\x93\xed\xd9\xd1\x67\xf5\x79\x7b\xa9\x22\x2c\x68\xf4\x2a\xfa\xeb\x5b\x35\x10\x1a\xe1\xfe\xe0\x3c\x4b\xfb\xe7\x13\x8a\xed\x38\xe1\x76\xac\x2c\x73\xdc\x64\xa7\xff\xac\x0f\x11\x8c\x3c\x47\x64\xa3\x9f\x5a\xa6\x6a\x39\x54\x92\x44\xa4\xdf\xb8\x74\xb0\xa6\xcc\x02\x6c\x9b\x04\xb1\xe0\xc1\xc6\x87\x54\x8e\xa9\xe3\x06\x45\xd2\xc3\xdc\xcf\x9f\x92\xaf\xcb\x73\x03\x05\xad\x98\x9b\xa7\xa8\x15\x06\xd8\x46\xd5\x44\x83\xfc\xf7\x87\x26\xea\x09\xa3\x15\xe5\x4d\x92\xa8\x68\x7c\x74\x82\x46\x6d\x07\x92\xd2\x97\x59\xbe\x49\x23\x13\xd9\xa8\x26\xca\xdd\xdc\xa5\x8f\x26\xd9\xce\x55\x9d\x2c\x8f\x3a\x5f\x53\x24\x67\xe2\x66\x51\xd2\xcf\x89\x6c\xe7\x3e\xca\x4b\x10\x2e\xaa\x12\x7d\xfc\xb2\x3b\x53\x7c\x1b\x76\x7e\x84\x6d\x43\xd3\xbb\x7b\xd6\xec\x96\xd9\xa2\xe3\xf5\xfb\x0d\x1a\x60\x81\x50\x3b\xd1\x46\xf8\xae\xa2\x50\x8a\xaf\x88\xa9\xfb\xd9\x0e\xad\x62\x2d\x22\x3f\x2e\x55\x32\x4d\x9b\xd2\xdd\xa6\x12\x04\xcc\x10\x2f\x7c\xbe\x24\x6b\xa3\x76\x76\x6f\xbf\xd4\x1e\x53\x09\x60\x33\xd6\x9a\x35\x9a\xdb\x35\xc3\x11\x52\xc7\x36\x61\xe0\x5a\x91\x5c\x7f\xe2\x79\x0d\x1e\x43\x2a\xc8\xc6\x69\x54\x7d\xd3\x21\xd9\x73\x83\x0c\x1f\xad\xef\xf6\x65\x35\x19\xc7\xb9\x91\x1e\x6b\x58\x3d\xde\xac\x9e\xc3\x3e\xc2\x62\xf8\xd8\xba\x30\xa6\xe9\x03\x2e\x54\x1c\x5e\x35\x78\xb4\x7a\x92\xfb\x71\x90\xee\x37\x5e\x74\x25\x6a\xa0\x93\xf5\x91\x17\x1c\x4b\x43\x7d\xbc\xaa\x40\xef\xcf\x79\xf9\x42\xed\x7c\x47\xa6\x35\x5d\x00\x45\x0b\xfd\x99\xcc\x7e\x05\xf9\x68\x51\x08\xf3\x0e\xc1\xac\x21\x92\xf9\xdd\xda\x91\x7a\x7f\x27\xfa\xf2\xe7\x0e\x68\x80\x48\x9b\x00\x9f\x9d\x95\x99\x97\x84\x0a\x78\x25\xca\xb7\xb8\x4e\x4a\xf8\xc7\x0e\x8d\x9a\xcb\x01\x13\x2c\xaa\xfd\x5f\x2e\x7d\xd5\xa4\x2c\x70\x30\xef\x1f\x1b\x80\x5e\x9d\xa8\xab\x19\xab\x72\x23\xa4\xe0\x32\x8a\x63\xfd\x95\x3b\x53\x0f\x5c\x5c\xee\xdc\xd5\x12\xd2\xc8\xf0\x95\xc6\xd0\x19\xe3\xb4\x30\x8c\x59\xc2\xc3\x0e\x85\x4b\x4e\x4b\x28\xa3\x47\x6c\xec\x7b\xb0\xe6\x55\x41\x2f\xc8\x17\xc2\xdf\x2b\x25\x15\xa0\x0e\xe1\x1a\xdc\xbf\x69\xd6\x71\x97\xdc\x2f\x9a\xf3\x59\x97\x77\x29\x9a\x7b\x29\x03\x9b\x03\xba\xf6\x67\x54\xe9\xe2\x12\x13\xdc\x62\x89\xaa\x18\x91\xdd\xc4\xa0\x34\x85\xfe\xdc\xe4\x1e\x79\x94\x7b\x16\x71\xab\x10\xba\x62\x86\x75\xfa\x94\x06\x11\x0c\xa8\x14\x3a\xfd\x41\x67\xb2\x5a\x8a\x24\xca\x05\x8f\x2f\xd5\x01\x85\x51\x9e\xc1\x6d\x07\x33\xbf\x3a\x9a\x7e\xbd\x0c\x52\xc0\x89\x64\xbb\xba\xc7\xe8\xe7\xa2\x40\xac\x7d\x72\x9b\x4c\x64\xda\x66\xcc\x69\x9f\xcb\x10\x28\x25\x0e\x4a\x9a\xd9\x1a\xd5\x50\x7d\xa3\x94\xb0\x87\x99\xee\x5e\xf4\x99\xa6\xd6\xd0\x99\x39\xb3\x65\x56\xdc\x32\x1f\xaa\xe0\x1e\x7a\x4c\xe8\xf2\x2c\x9f\x71\xbd\x94\x3e\xa2\x05\xec\x72\x4c\x3f\xcf\xad\xbd\x57\xf7\x96\xac\xc6\x26\x12\xdf\x7d\x60\x8c\x02\x95\xb1\xd5\xb3\xb0\xf5\xbe\xa6\xe4\xc8\xc3\xc2\x0e\xe4\x1f\xf3\xe4\x2d\x75\x74\xb4\xcc\x61\x92\x53\xf7\x75\xca\xd5\xc1\xc8\x0f\x51\x22\x67\x56\x79\xbf\xf8\x85\x69\x93\xd4\xeb\xb5\x98\x01\xb4\x1e\x15\x7e\x33\x2d\xb6\xbd\x07\xc2\x53\xdc\xd7\x2e\xb9\x65\x56\x67\x2c\x0b\xf6\x4a\x8f\x1e\xc7\xa4\x0f\x9a\xb1\x6f\xbe\xda\x63\xaf\x54\x00\x65\x89\xe9\x0f\x5f\x1b\x78\x02\xc8\x1c\x60\x6e\x78\x44\x99\x70\x01\x1f\x79\x65\x5e\x78\x5e\x73\xb5\x96\xf1\x40\xcf\x03\x15\xc1\x7e\x36\xf6\x2a\xb5\x83\x15\x78\x3e\x9f\x57\x86\xdf\x9e\xa8\x0b\x01\x0a\x0e\x10\xff\xb3\x5c\x45\xd3\x95\x66\xb6\xd5\x6c\x00\x57\xe8\x53\xc7\x2a\x82\x6a\x18\x7d\xd3\x90\xed\x22\x7b\xb6\x90\x0d\x4a\xd0\x76\x2d\x24\x4c\x70\xc2\xef\x9f\x98\xa4\xe5\x7a\xb6\x0d\xbd\x74\x52\x93\xfb\x9c\x70\x85\x2a\x41\x53\x98\x04\x1b\xa5\xd5\x71\xb1\xcb\x56\x88\x31\x78\x82\x8c\x12\x82\x51\x59\xe8\xcf\xad\x7f\x53\x73\x4c\xf1\x2c\x93\x92\xb2\xaf\x25\x4d\xfb\x9e\x4b\x6a\x7e\xe8\xc8\x9a\x3f\x7c\xe9\x0c\xff\x92\x22\x71\x8a\xf9\x42\x38\x5a\x2a\xda\x81\xfc\x4c\xa6\xec\x33\x59\x03\xba\x94\x85\x21\xb2\x10\xf7\x89\xa2\xda\x30\xc5\xa2\x28\x3a\xba\xa3\x8d\x75\xb3\xaf\x88\x8b\x41\x60\xfb\xf9\x42\xb8\xfe\x2d\xb9\x32\x2b\x14\x78\x6c\x52\xdd\xbb\x53\x01\x5a\xf2\x7e\x04\x9b\x05\xdc\xa3\x39\x04\x58\x10\x94\xe2\x7a\x85\x17\xc4\x1f\x9b\x2f\x3a\x90\xd8\xb3\x28\x12\xee\x12\x1f\x69\xe1\x1c\x9b\x65\x81\x69\x46\x95\xbd\x0e\x36\xdf\xb3\x4e\xe8\xdf\x10\x3b\x70\xd8\x72\xfc\xe1\x41\xc1\x11\x46\x94\x30\x2d\x97\xf8\x9d\x8c\x5f\x16\x33\x89\xea\xd0\x16\x82\xf4\xd9\x99\xc5\x74\x8f\xc4\x71\xbc\x01\x3c\x20\xc2\xd9\x27\x26\xea\xc1\xc8\x86\x9e\x87\xa1\x17\xe3\x28\x32\x2f\xbf\x91\x5e\x17\xd1\x12\xec\x85\x35\x9e\x7f\x8b\xd7\xf3\xeb\x63\x17\x28\xa0\x17\x5c\x89\xbb\xd1\xfc\x5e\x1f\x7a\x46\x18\x23\x3b\x84\xf8\x96\xcd\x4c\xa8\x32\xb9\xe5\x3a\x12\xd3\x8c\x39\x7e\xfd\xaf\x6a\x54\x7d\x54\x83\xa5\x04\x01\x7c\xa7\x62\xfd\xdd\x39\xa3\x83\xc1\x60\x33\x9f\xef\x1a\xa7\xe4\x89\x92\x98\x1c\xbd\x62\x70\x2c\xa5\x51\x19\x0f\xa3\x1f\xbd\x7a\xbc\xfe\xe2\xa2\xcd\x1f\xfb\xb0\xee\x1f\xaa\x44\x40\x48\x91\x0f\x2a\xbc\x3f\xd6\xd9\xa9\xd9\x69\x52\x50\x87\x54\x24\x90\xb9\x09\x4b\x86\x8a\xa3\x9e\xa3\x63\x5e\x3e\x95\x3e\x9d\x61\x8d\xb5\x20\xd8\x4c\x66\xae\xaf\x29\xcf\x20\x98\x0c\x2b\x6f\xed\xd3\x49\xe5\xdc\x95\x90\x07\x8c\xff\x3d\x27\xfd\xdb\x99\xf9\x00\x97\x20\xe5\x81\x38\x77\xd1\x5d\x7c\x9a\x7e\x93\x4d\x7c\x8c\x4c\x39\x1f\x0e\x37\x96\x34\xdc\x6f\x54\x99\x30\xe3\x63\x21\xea\xf8\x8f\xb7\x74\x94\x12\xf2\x60\x69\xfa\x65\x0c\xa5\x34\x43\x61\x90\xe1\xee\xc0\xe3\x04\xbf\xf0\xed\x26\xc5\x0b\xbc\x87\x0f\x97\xd9\xc8\x69\x8b\xf2\x4e\x2c\x68\x56\xf3\x75\x8a\x62\x50\xc8\x82\xc7\x93\x1d\x5c\x63\x35\x90\xf1\x7a\x93\xa8\x97\x18\x72\x44\xb4\x22\xde\xba\x56\xf1\x98\x88\x42\xac\xe7\xf3\xa6\xdd\x87\x56\xa8\xa0\x0d\x1b\xf4\x8a\x62\xed\xfa\x87\x47\x28\x07\x88\x03\x30\xc9\x17\xc2\x8f\x1d\xe4\xd1\xa3\x26\x24\x9b\xff\xeb\x5e\xdd\xda\x0d\x50\x2a\xa4\x8b\xe2\x48\xb4\x7c\xaf\x42\x87\xa2\xa8\x86\x6c\xc8\x17\x40\xe6\x3f\xb5\xa4\x6a\x66\xbb\x38\x30\x56\xbe\x26\xe3\x06\x6b\x6e\x47\x37\xfa\xdf\x77\xc9\xcf\x99\xd5\xea\x5b\x89\x18\x78\x66\xd4\xab\x92\x7a\xee\x98\x26\x40\x8d\x16\xdc\x5d\x43\xd3\xaf\x83\xb9\x77\x89\xd3\xfb\x8f\xf3\x62\x01\x05\x64\xb2\x81\x61\xf8\xd3\x13\xda\xac\xc1\x82\x38\x5f\x0e\x52\x6d\xcc\xdf\x5c\xa6\x67\x45\x31\x8f\xac\xce\xda\xb6\xd9\xc7\xf7\xf1\x66\x57\xec\xc2\xa0\xd1\x77\x39\x81\x9c\x07\x36\x63\x70\x8c\x93\xbb\x0a\x3a\x4c\x84\xf6\xb5\x45\x1a\x53\x8c\x24\x2e\x75\xd9\x2f\x6b\x5d\x25\x8b\xa4\xd4\xa5\x4e\xbc\x71\xa9\x96\x58\x70\xcd\x0f\xfd\x7c\x3f\xd2\xa9\x10\xce\x54\x05\xbc\x07\xb7\x48\x63\x1e\xd4\xc0\x0b\xcd\xee\x7f\x46\xdb\x50\xc8\x97\xe4\x16\xe3\x85\x6b\xf5\x96\x26\xa9\x21\x6c\x72\x1b\xe9\xcc\x74\x45\xd2\xa4\x04\x70\xc5\x16\x21\xe4\xb7\x9d\xda\x01\x4c\x48\x35\x56\xb7\x7f\x46\x57\xa3\x01\x31\x48\x29\xca\xa5\xb3\x6f\xac\x54\xda\x85\xc0\x87\x15\xe6\xb2\x1c\xfe\x4b\xa7\x24\x9f\x95\x18\xff\x9b\xf3\x03\xf3\xab\x88\x5d\x25\x35\x19\x71\x8b\x9a\x5e\x56\x54\xbc\x04\x94\x27\x14\xe1\x85\x2b\xb4\x6d\x4e\x19\xfb\x34\x96\x3e\x0c\x9f\x7c\x4e\x49\x0f\x6c\x68\xfa\x84\xdb\xa1\x1a\xae\xa5\x28\x69\x5b\x57\x79\xd5\xab\xaa\x2c\x35\x36\x26\x4d\x50\x68\x1c\x88\xc6\x15\xc1\xac\x09\xbc\x6b\xb6\x40\x54\xd2\xbd\x0d\x2b\x78\x45\x57\x03\xb5\x16\xfb\xf1\x8c\x20\x9b\xb3\x1a\x34\xc4\x7d\x4a\x6c\x69\x4e\x92\xfd\xaa\x66\xd2\x0d\x3c\x8f\x98\x08\xf8\x49\xa4\xcc\x7c\xec\x05\xad\x2a\xaf\x63\x2f\xce\xcc\x7f\x8a\x59\x49\x6b\x43\x9c\x9f\x39\x47\x9d\x9e\x06\xcf\x24\xcd\xef\x12\xa8\x29\xad\xa9\x3b\xf6\x68\x56\x21\xb8\x12\xd8\xe5\x04\x49\xff\x50\x07\x8f\x24\x6d\x2d\x73\x67\xb3\x4a\xf6\x88\xe6\x56\xc0\x60\x0c\xd3\x1b\xb7\x72\x6e\xda\xca\xe4\x1b\x2b\xaa\xeb\x63\xe6\xd3\x1b\x2e\xd7\x92\xfe\x6e\x42\x07\xea\xcc\x18\x4f\x0c\xd3\x5a\x25\x36\xf0\x2c\x58\xe2\x3c\xb7\x5c\x45\x93\xb8\x75\x21\xb5\x80\x1b\x83\xf3\x2e\x3f\x91\x50\xdb\x2c\xd0\x00\x79\x35\x6e\x51\x52\x9e\xa0\x25\x68\x61\xa1\x6b\xdd\xb4\x06\x4f\x5d\xe4\x88\x9c\x35\x73\xf3\xd5\x1a\xc9\xc2\x46\x02\x67\xbe\x7f\x9b\xd6\x50\x94\x6e\xf5\xc6\x47\xa6\xc8\x68\x88\x9c\x28\x79\xf6\x38\xd8\x34\x6b\x08\xff\x4d\x33\x10\xc3\xef\x93\x3b\x2f\x54\x55\x35\xae\x5b\x34\x5d\xbe\xbf\xe8\x0f\x6e\xb6\xb4\x71\x34\x68\x91\x6d\x49\x78\x80\x8f\xda\xae\x63\xe8\x6a\x0e\x2b\xf9\xf0\x2b\x4a\xf9\x8a\x91\xc3\x97\xfc\x47\x9f\x90\x7b\x1b\xc3\xe8\xbf\x1c\x4f\x50\x19\xa6\xda\x9a\xfb\x84\x12\x9b\xb5\xea\xee\x2d\x8f\x55\x36\x2e\x36\xa1\x9d\xf4\xb2\x72\xb3\x4f\x8c\xd3\x53\x0a\xdb\xb7\x84\x48\x0d\x1a\xaf\x81\x27\x8b\x42\xea\x91\x95\xb1\xff\xb9\x52\xf5\x6f\x76\x08\x15\x62\x6a\x4f\x3e\x26\xa7\xa2\xdd\x5c\xc9\xc0\xa0\x54\x01\x79\x59\x57\xd5\x38\x66\xe3\x0a\x4d\xf5\xcf\x21\x9e\xc9\x30\x39\x22\xe2\x1c\x99\xaa\x6a\xd9\x15\x6d\x98\x77\x2d\xc2\x87\xef\x59\x4d\x20\x8f\xa1\x03\x61\xe2\xca\xbf\x6d\x95\x46\x83\x82\x36\x64\x7f\x1b\x33\x69\x7f\xd4\x2c\xed\x61\x1a\xc4\x8b\xc2\x2b\xae\xe5\x41\x82\xe1\x7b\x6d\x18\x38\x0d\x31\xdd\x5c\xa3\x5b\x6b\xc7\x4a\x05\x99\x11\x57\x4b\x0c\x68\x7b\x0b\x23\x70\xfc\x91\x47\xdd\x7c\x1d\xf2\xd6\x99\x6b\x83\x4a\xc0\xaa\xac\x13\xa7\xe2\x4c\xbb\x04\x41\x8d\xf0\x4c\x63\xf9\x9b\x22\xfb\xf4\x89\x59\x75\x11\x57\x4d\x1c\x79\x6c\x82\x02\x26\xaa\x35\x76\xfb\x6f\x5b\x2d\x60\xc2\xb1\x37\x23\x8b\x35\x77\x8d\x91\xcf\x30\xc0\x25\x12\x14\x7d\xc8\xe7\xbe\x86\x59\x6e\x92\xf1\x14\x11\xa6\xd1\x95\xf9\xda\x0e\xe5\x4c\xd2\x89\x07\xe1\xeb\xca\xe4\x23\x2a\x6c\x44\x41\xd5\xe3\x8a\x44\xdf\x87\xc0\x29\x12\x10\x37\xef\x8c\xf0\xec\xa5\x22\x5d\xc6\x98\xe9\x20\x51\xbf\x37\x8f\x70\x1e\xb0\xae\x3b\x08\x28\x57\xe2\x31\xee\x7d\x52\xe8\x38\xcf\xed\x64\x41\x6a\xf9\x7c\x3e\x5d\x5b\x04\xfc\x40\x05\x40\xde\xb6\x58\x26\x68\x0c\x91\x07\x1d\x98\xb4\x80\x5e\x53\x70\xec\x4e\xe0\x21\x13\x30\x5b\x5c\xe3\x9b\x7b\x65\x33\x70\x76\x47\xf4\x93\xd1\x6b\x1b\xb8\xe9\x66\xe0\x45\x69\x63\x5d\x78\xf4\x1d\x53\x05\xad\xf9\xe0\x7b\xc4\xd1\x71\x4a\xfe\xe6\xf9\x4c\x2d\xa5\x4f\x24\x71\x5b\x7c\x79\x0c\x91\x1a\xa4\x51\x6a\x1e\xfd\x91\xc9\xf9\x78\xf9\x0f\x47\xe5\x2c\x25\x0d\x5c\xc9\xdc\xd0\x97\x74\x99\x6f\xc0\x95\xb9\x59\xbe\xf2\xc3\x19\xc2\x04\x92\x54\xd8\x83\xfe\xe8\x52\xcd\x72\x0f\xfb\x68\x7d\x10\x27\x2c\x99\x77\x16\x69\x4d\xfe\x80\xf6\x56\xd3\x9a\x5b\xd9\x67\x86\x48\x89\x66\xd6\x7f\x35\x89\xd3\x88\x4b\x5b\x35\x5e\x49\x9c\xb9\xc9\xaa\x52\xf3\x1e\x7e\x6e\xac\xf2\xeb\x32\x61\x1c\x49\xd1\xaf\x6d\x3d\x22\xb7\xff\x7a\x54\x0e\x18\xb3\xd6\x55\x7a\x24\x51\x08\x51\xd3\xd6\xaf\x6b\x6c\xb9\x5a\x60\x57\x80\x98\x36\x1a\xcb\x0e\x29\x5d\x73\x13\xd0\x22\x61\x6e\x46\xd1\x86\xf8\xfc\xd9\x66\x2d\x77\xe4\x66\x8d\xb9\x79\xaf\x35\xe8\x07\x56\xa2\xea\x70\x5e\xf4\xcb\x39\xfb\x86\xa9\x98\x8d\xe8\xa9\x2d\x12\x43\x9f\x05\xd4\x4f\x57\xf0\xa7\xe4\x54\x19\x3a\xae\x05\x3c\xe6\x19\x26\x33\xd3\x89\x8b\x05\x7f\x05\xfb\x88\x3b\xa4\x44\x1f\xf7\xe4\x49\x4d\x17\xd4\x71\x58\x47\x97\x37\x5f\x3b\x34\xb7\x4c\x93\x22\x9f\x3b\x30\xf3\xc8\x35\x6f\x67\x52\x65\xd8\x88\x39\xf4\x6e\xd0\x8c\x24\xa1\x10\x0b\xe8\x11\x6e\x30\x15\x1b\x39\x2e\x03\x86\x86\xd3\xb5\xfe\xba\x6b\xf3\x83\x8c\x0f\x3c\x0f\xf3\xdc\x37\x5f\xe4\xdc\xf9\x70\xc1\x1e\xf5\x74\x89\xca\xbf\x28\xf8\x7c\x69\x82\x34\xb3\x02\x9e\x17\x6d\xd1\x46\x9d\xa7\xcc\x4d\xbb\x94\xce\x19\x72\x20\x13\x77\xe5\xea\x19\xd9\xa9\x8a\x23\x0d\xeb\x51\xf7\x26\xbc\x8f\xbb\x9f\x52\x04\xac\x61\x54\x59\x15\x03\x2a\x98\x44\xe1\xce\x37\x13\x7d\x52\x37\x05\xdd\x0e\xaf\x3a\x9c\x04\x25\x1b\x35\x04\x63\xe3\xca\xdb\x62\x73\xd5\x8e\x8e\xfc\x1c\xe6\x0f\x78\x77\x93\x26\x52\x61\xf5\xf2\xd9\xed\xee\x41\x8a\x2c\x47\x12\x83\xa2\xbc\x75\xef\x61\x6d\x6f\x95\x6a\xac\x92\x14\x30\xb3\xbd\x3b\x25\x5b\xde\x03\x98\x45\xcc\x46\x07\xca\x5f\xcd\x1f\xd7\x58\xfe\xc4\xa2\x6f\x17\x76\x69\xf8\x27\x1b\xd2\xaa\x74\x85\xaf\xbf\x24\x77\x09\xb7\xa8\x13\x16\x7e\xf9\x42\x78\xff\x78\xd5\x36\x88\x54\x38\x10\xfe\xd0\xf6\x24\x6c\x76\xe6\x0b\xa1\xd5\x2c\xd6\xa3\x4b\x6c\x52\xe1\x06\x77\xfd\x99\x69\xca\xc7\x3a\x00\x07\x50\x61\xf5\x65\xf7\xac\x54\xd2\x67\x12\xc5\x2c\xc1\x1a\x98\xbd\x54\xf9\x42\x24\xf4\xf6\x8d\xfa\x5d\xe9\xc5\x38\x8f\xeb\x4c\x17\xfa\x8d\x73\x77\x9d\xe7\x0a\xa9\xad\x79\xf9\x42\x98\xdb\xcc\xcf\x96\x05\x1f\x5e\x71\xfd\x4d\x71\x37\xcb\x78\x4a\x6f\x49\x57\x8a\xbd\x71\x93\xe4\x92\x9d\xc2\x59\x96\x82\x1a\xb4\xf9\x46\xbe\x45\xbe\xab\x8a\xdd\xab\x8c\xcc\xb2\x43\x36\xa5\x93\x6c\x1b\x39\x51\x9e\x6d\xc7\x14\xa2\xf0\x93\x1a\x6b\x35\xf0\x02\x60\x8b\x19\xf1\x7f\xdc\x27\xe7\x6d\x2e\xa4\x18\x99\x88\x53\x6d\x32\x1f\x39\x3b\x54\x46\x87\xe8\x09\x1f\x3e\xa5\x28\x59\x22\x62\x73\x85\xd2\x0b\xc6\x35\x34\x25\x98\xa2\x4c\xa2\x5c\x3b\xb7\x3d\x29\x8a\x7a\x38\x5f\xfb\xf4\x51\x4d\xfa\xa3\x87\xd1\x96\x12\xfe\xf2\x73\x5d\x1a\x24\xcf\xa4\x10\xc6\xb6\x44\x3f\x5c\x36\x5c\x85\xe8\x82\x7c\x21\x04\x8a\xfb\x27\x06\x94\x12\x2e\x14\x96\x39\xf0\xb8\x72\x10\xd9\x51\x0e\xd1\x2b\x44\xa5\x35\xcb\x75\xe8\x14\x01\xad\x90\x18\x88\x91\xbf\x57\x19\x64\xd8\x14\x82\x52\x54\xdc\x4d\xd4\x7a\x3a\xc9\x44\x90\x9d\x4e\x1f\x5c\xab\x7a\x0a\x49\x41\xd6\x50\xb1\x59\xa0\xb0\x06\x10\x4b\xf7\xb2\xe8\xb0\x6e\x78\x0c\x94\x0d\x66\xec\xd9\xa5\x08\xfa\x05\xb8\x1a\xad\x80\x8f\xce\x6b\x56\xf2\x46\x58\x2e\x23\xc8\xf4\x3d\xb2\xa5\x69\xda\x98\x1f\xda\x65\x10\xf7\x0b\xd9\x39\xf4\x11\xad\x2c\xaa\x91\x28\xeb\x65\x1c\x5f\x96\xbe\xde\xb4\xef\x12\xfd\x28\x25\x18\x11\x8d\xa9\x91\x53\x3a\xea\xc5\xa0\x5c\x06\x36\xeb\x66\x95\xa4\x13\x4d\xc0\xcc\x3f\x32\x4b\xc6\xa7\xdf\x2f\x06\x95\xde\x34\x1a\x6b\x15\x47\xc6\xb2\x66\xa3\x5e\xea\x6f\x7c\x9d\x27\x88\x8b\xaf\x6b\x48\xeb\x46\xf9\xb2\xe7\x02\x8a\xa5\xc0\xce\x53\x60\xf1\x29\x76\x82\xab\xbc\x53\x3e\xb9\x96\xd6\xce\x59\xd1\xed\xfd\x7f\xf3\x39\xf6\xa3\x6d\x8e\xa2\x8b\x12\xfe\xdf\x1a\x65\xd8\xde\x53\x27\xd4\xb7\x18\x96\xf4\x86\xbd\x31\xee\x83\xbd\x61\x8e\x67\x79\xe7\xae\x31\x49\xcb\xda\x75\x53\x02\x0a\x1f\xba\x36\xb9\x7f\x2e\xe5\xb6\xe1\x4d\xc5\x23\x0d\x71\x17\xed\x74\x64\x7c\xf5\x8d\xf4\xdb\x67\x57\x05\x71\x49\xf4\x86\x7e\xe1\xcb\x72\xce\x06\x5c\x56\xcb\xd8\x74\xb5\x36\x4e\x20\x01\x2e\x05\xae\x27\x44\xb6\x33\xab\x70\x52\xa1\xc2\xba\x0a\xd7\x78\xda\xd5\x45\x34\x13\xff\xc3\x2f\xad\x93\xe4\x35\x85\xb4\xa9\x27\xf8\xdf\x9a\xd7\xa0\xb0\x11\xfd\x2f\x3f\xa4\x4b\x0a\xf0\xd3\xe7\x8a\x2e\xb9\x2f\x1e\x4c\x9e\x56\x37\x2c\xaa\x4f\x2b\x93\x59\xad\x77\x46\x6b\x90\x02\x9b\x33\x26\x76\xbe\xa6\x69\x04\x07\x88\xe1\x38\xc4\xec\x2d\xab\xdd\x09\x57\x61\xe3\xd3\xfd\x05\x65\xad\xaf\x0b\xcb\x14\x04\x42\x5a\x32\xf3\x4a\x9f\xb4\x8c\x9a\x13\x95\x21\xc6\xfb\xda\x48\xb0\x1b\xd6\xa1\x1d\xcb\xca\x1f\x2d\x49\x58\x99\x8d\xdc\x2a\xc2\x79\xcf\x02\x16\x90\xe9\x77\x78\x66\xb3\x46\xda\xaf\xc3\x12\xc4\xbc\xe5\xc5\xa9\xee\x5a\x81\x5b\x86\x80\x26\x72\xf0\x8b\x7b\x14\x64\x13\xad\x40\x36\x3f\x7c\x68\xff\x78\xad\x04\x2c\x41\x5b\x4a\x12\x3f\x7d\x44\xcc\x14\x2c\x04\xcb\xd1\xdb\x5b\xd3\xaa\x45\x31\x5c\x41\x18\x26\x9d\xf6\x0b\xc6\xc7\x07\xe2\xdc\xd6\x7c\x21\x1c\x37\x4f\x01\xe8\x02\x56\xe0\x64\x0f\x3f\x22\x53\x7b\xe4\xd9\x80\xa9\x8c\x4c\x1e\x32\x1e\x37\x30\xdd\x24\xb1\x4c\xf1\xec\xab\x45\xb7\x4c\xf2\x85\xb0\xf7\xe1\x66\x29\x99\xae\xee\xc6\x85\x83\x94\xb4\xca\x75\x6d\x5e\x22\xad\x78\x2c\x3d\xb6\xa8\x21\x5a\xe1\x53\x6f\x2f\x4e\x8e\x3e\x7b\x8f\xb0\xad\x07\xb6\x4d\xa8\x09\xe2\x9f\x37\x6f\xd4\x74\x6e\x88\xe7\x41\xcf\x4b\x3a\x4e\x99\xd5\x4b\xd3\xdb\x04\x95\x00\x3b\x07\xe3\xdd\xb0\x7e\x97\xa0\x1a\xfb\x90\x77\x10\xd0\xeb\xda\x48\x94\xd4\xb1\xe8\xc4\xb7\x2f\x4a\x9f\xf0\x79\x61\x39\x14\xae\x7a\x2b\xcd\xe6\x8c\xdb\x5a\x02\x14\xde\x30\xd4\x5c\x9a\x0e\xaf\x9e\x05\x30\x26\xba\x1f\x56\xf8\xb6\x98\xb2\xc2\x12\x97\x45\x65\x10\xca\x6e\xad\xed\xe0\x42\xec\x25\x20\xdd\x65\x57\xf3\x3c\x61\x11\x0c\x7c\xd3\x62\x1d\xdf\x37\xb6\x89\x71\x52\xec\xdd\xcb\x8c\x7b\x27\xa5\x01\x48\x65\x76\xda\x0d\x20\xbf\xb7\x63\x62\x92\x71\x07\x0e\xd3\x1a\x9c\x2a\x3a\x98\x37\x40\xb3\x9a\x62\x21\x0c\x7e\x75\x00\xc3\xe2\xb8\xef\x17\x36\x4b\xdd\x5c\x7e\x4a\xd0\x96\x04\x93\xd0\x07\x9c\x78\x93\xe0\x17\xc6\x2a\x35\xac\xab\xb6\x48\xcf\x2a\x3d\x2d\xcf\x16\xae\x6d\x97\x6a\x4c\x76\x5e\xf7\x0a\x2c\xc1\x83\x13\x74\x37\x0e\x0f\x55\x70\x2c\x2f\x6b\x58\x5a\xcf\x15\x06\xc2\x4e\x83\x2d\xac\x5b\xd7\xf2\x75\x11\x85\xe2\x68\x73\x8d\x5d\xc8\x01\xf8\x8b\xa1\x5d\x4a\x9d\x30\x99\x9d\x8f\xe9\x84\x45\xe0\x88\x2f\x09\x7b\x43\xc5\xd3\xac\x1c\x25\x8a\x3e\xe8\x89\xae\xcd\x3e\x99\xce\xc1\x27\xc7\x4e\x1f\x93\x9e\xd0\xfb\xea\x3e\xb4\x65\x1e\x3c\x65\xeb\xf9\x62\xc7\x7a\x9c\xef\x96\x79\xee\x9c\x11\xca\xe9\x52\xb1\x38\x4e\xf5\x48\x59\x33\xfe\x44\x3e\x8c\x4f\x86\x6f\xde\xcf\x57\x89\x0f\x4b\x22\xb7\xcb\x4e\xba\x57\x31\xa7\xe5\x4e\x69\x0c\x43\x31\xd7\xbf\x0c\x2b\x78\xda\x64\x14\xda\xd0\xcc\x6c\x3b\x74\x9e\x2c\x33\x0a\xfd\x99\x8f\x1f\x52\x06\x37\xfc\xce\x0b\xfd\xb9\xe9\x61\x7c\x94\x72\xc8\x3c\x6b\x41\x7c\x7b\x02\xbf\x25\x76\x80\xb1\x9f\x7c\x7f\x8d\xd2\x94\x23\x36\xa1\xa0\x94\xa8\x4e\xf4\x87\xe9\x1b\xeb\x23\x24\x89\x70\x9f\xc3\x3c\xc7\xbf\x11\x95\x4a\x76\x82\x13\xdb\x77\x42\xa3\xf5\xcc\x98\xd3\x3e\x57\xc4\xd0\x4f\x63\x85\x3c\x01\x81\xda\x53\x9e\x73\x74\x8c\x5a\xeb\x89\x36\x75\x4b\xbe\x10\xde\x38\x3f\xbd\x7d\xab\x10\x63\x58\xd2\xd8\x44\x99\x4b\x8f\xa7\xf0\xd1\x90\x15\xba\x5c\x42\xf3\xf7\x9b\x15\x93\x0f\x06\xe0\x9f\xf0\xbc\x2e\x38\x9b\xa7\x50\x10\xce\xe2\xbb\xfb\xe8\x56\x4d\x84\x92\xdb\x87\x23\x2f\x96\xc0\x3e\xd4\x23\x2d\xfd\x64\x9b\xe9\x7d\xc5\x3f\x34\x21\xbb\x17\xfa\x8d\xe9\xf7\x68\xc5\x76\x94\x58\x48\x11\xf1\xcc\xdc\xa5\x89\x2f\xf7\x5c\x96\x35\x75\xed\xd3\x67\x14\x41\x25\x81\x3e\xe7\xda\x9f\xd0\x80\x53\xc8\xb6\xe3\x7e\x65\xb4\x9f\x16\x4d\x54\x89\xaf\x9c\x55\x9f\xbd\x67\x83\x0e\x76\xc2\xc9\x4a\x3f\xbc\x5b\x3e\xbf\x22\xc0\x58\xa8\x6a\xdc\xd4\xd5\x9f\xfd\xd3\x29\xbd\x57\x5c\xef\x85\x54\xa0\x6e\xbe\xd3\x80\x0b\x25\x89\xed\x4a\xe6\x2b\xb5\xe1\xca\x59\xc6\x47\xd7\xa7\x56\x6a\xa6\x39\x4c\x7d\x9f\x87\x90\x6b\x6e\xd1\xd4\x30\x58\xf2\xd7\x73\xa6\x61\x0a\x02\x4d\x2b\x76\x37\xf9\xfc\xdb\x32\x2f\x47\x92\x03\x10\x4e\xd9\xa0\xe3\x3f\xb8\xe7\x69\x2c\x77\x7d\x64\x5c\x72\x68\xf6\xb2\x16\x66\xe2\x37\xfb\xa0\xf6\x94\x02\xd3\x12\x36\x16\xeb\xfb\x34\xc9\xaa\x59\xa2\x9c\x1e\x77\x19\x9f\xfb\x2d\x81\x9c\x0f\x35\x58\x6e\xc7\x32\x70\xd8\xae\x0f\xff\x67\xad\x7e\xe3\x41\x31\x16\x5f\xa1\xcd\x1a\xbb\x23\xa8\xb4\xf0\x9c\x6c\x5f\x17\x0f\x8c\x95\x00\xd9\xec\xba\xdf\xd2\xa8\xe3\xd1\x81\x19\x9b\x1c\x66\xdf\xd5\x58\x3d\x45\x28\x7c\x1f\x0b\xe1\xda\x75\x89\x19\xa8\x47\xea\x4a\x92\xf0\xfa\x7d\x72\xaa\xe0\x90\x3e\xe0\x14\xd1\xfa\x80\x1d\x66\xf6\x36\x5e\x0a\x7c\x84\x22\xcf\x47\x18\xa8\xd2\xf0\x67\xf8\x65\x95\x02\xe1\x39\x3b\xe3\x16\x9e\x31\x24\xdb\x44\xa8\x06\x9c\x9d\x98\xce\x18\x84\xd8\x4f\xb2\x52\x8d\x9f\x60\xfe\x87\xd7\x33\x4a\xbd\x2c\x77\xce\xe9\x4a\x3c\x2e\x8a\x8c\x60\xce\x51\x74\xf7\xa8\xce\xe5\x08\x72\x1c\xca\x2d\x3b\x63\xcd\x51\x0e\x39\x0b\xaf\x7c\x4d\x82\x9d\x28\x14\x56\xb2\xfa\x69\xdb\xda\x3a\x5c\xc1\x5d\x10\x96\x7d\xfd\xea\xb1\x94\xb6\xaf\xe7\x21\x93\xa5\x6a\x28\x27\xc9\x78\x96\x5c\x2d\xe1\x3f\x3b\x34\x6f\x12\x18\xa3\xbf\xff\x7b\x11\xbf\x26\xd8\xe3\x42\x3e\x06\x6c\xdd\x3c\x5a\xed\xf7\x30\x59\x4b\x0e\x5e\xfd\xfe\x73\xe9\x4f\x99\x35\x47\x54\x08\x87\xd7\x69\x6b\xb1\xa5\xd6\xe2\xb6\xb0\xf6\x51\xf6\x95\xb3\x8a\xf3\x04\xff\x30\x16\x49\x32\xfb\x04\xa5\x06\xf7\x88\xf3\xc6\xf8\xf2\xe0\x24\x1f\x60\x1e\x4b\xe1\xc4\x09\xe7\x89\xec\x9a\x01\xaf\x1e\xec\x93\x6d\x69\xd6\xdd\xcd\x7d\xf2\x0d\xd9\x9a\x15\x26\x03\x0d\x9d\x37\xe3\xcb\x9a\x87\x78\x29\xc0\x38\x0d\x49\x32\xde\x1f\xa9\xfb\x22\xf9\xa0\x68\x23\xcf\x8a\x71\xb3\x8f\x0b\x0e\x17\x33\x41\xe4\xea\xb6\xe1\x95\x27\x75\x1c\x71\x09\x38\x71\x6d\xfe\xef\xd7\x0e\x98\x66\x08\xfc\x6c\xb6\xf2\x84\xb8\x7b\x44\x6d\xc4\x06\x34\xc6\x95\x1d\x5a\xba\x08\xb9\x52\x06\x32\xbd\x01\x92\xb0\xec\x46\x6d\xf8\x6c\x07\x8e\x1b\x70\x3a\x13\x1f\xdb\x52\xbe\xf4\x67\xb7\xb6\xcc\x66\xfa\x92\xff\x7e\x78\x20\xa5\x3f\x1c\xad\x03\xa5\x71\xf8\x99\x27\x75\x15\xa0\x0a\x7b\x0e\xd1\x11\x77\xc7\x2d\x93\xf4\x0c\x95\x42\x4e\x76\x92\x16\x44\xdf\x7a\xf3\x02\x25\x98\x52\x52\x23\x48\xae\xc3\x3f\xd7\x14\x53\x1e\xe2\xa3\x9a\x54\xd5\x18\x7f\x91\x16\x07\xd9\xa3\x36\x41\xec\x6a\x9f\xfb\xfc\x8c\x74\x7c\x35\x83\x22\x48\xf6\x67\xf6\x21\x45\x78\xbd\x48\x2a\x90\x1f\x25\x77\xec\xe7\x2d\x84\xe5\x0b\x6e\xd2\xbd\x97\xc2\xfe\xb2\x26\xca\x11\x50\xec\xe7\x13\x58\x7a\x6e\xf8\xcb\xa3\x44\xae\x21\xc4\x00\x44\xa8\xf8\x9e\xa5\x93\xb6\x88\x17\x4f\xc9\x8c\xa7\xb6\x4a\x19\x34\x52\xc9\x17\x42\x67\x4d\x7a\xf1\x25\xec\x8a\xa4\xef\x92\x59\x75\xd7\x50\x51\xe2\x41\xa6\x6d\x97\xf9\xd9\x11\x65\x10\x8f\x7b\x10\xe4\x38\x99\x77\x8b\xca\x70\xcf\x8a\x0a\xc2\xe8\x78\x66\xcd\x9d\xbb\x33\x5a\x3d\x13\x85\x37\xe8\xc5\x44\x51\x63\xef\x5a\xbd\x97\xe6\x42\x8a\xa2\xcc\x43\xfc\x83\x70\x8a\xf6\x70\x81\x8d\xe4\x58\xf1\x8d\xb2\xec\xeb\xb3\xb6\x99\xde\x72\xf9\xd8\x11\x85\x20\xe3\xb2\x91\x2f\x11\x06\x04\xcf\xee\x53\x14\x19\x2c\x42\x7c\xe6\x48\x13\x3e\xfc\x44\x7a\x2d\xf9\x01\x2d\x33\x19\x1f\xd6\x59\x14\x6e\x0e\xdf\xeb\xd0\xa5\x47\x83\x58\xf1\xf5\x87\xf7\x69\x40\x76\xd0\x2b\xd0\x59\x33\x1f\x91\x51\x82\x01\x4e\x8d\xdf\x2f\x8e\xb5\xa5\x8a\x3e\x37\x0e\xc8\x7d\x60\xb7\xd6\x3c\x0c\x68\x0d\xd5\x38\xe6\x25\x63\x87\xfc\x0c\x52\x04\x1e\x18\x56\x73\xb4\x56\xa1\x99\x36\xc2\x3e\xa7\x63\x2b\x67\xce\x07\x36\x0d\x8f\xd3\x93\x58\x07\x3b\x7b\xdd\xc4\x74\x80\x9c\x39\x77\x6e\xa7\x40\xfd\xbe\x3b\x41\xc9\xd4\x5d\xc0\xc9\xcb\xd9\xcd\x8f\x6b\xdd\x5a\x08\x4a\x8c\xb2\xe8\x0a\x32\x4b\x76\xe6\x24\x4d\x68\x62\x0e\x6f\x31\x8e\xd9\x22\x0b\x73\x26\xb6\x53\xb1\x15\x29\x80\xec\xd4\x4d\xe9\x95\x60\x05\x8c\x37\x29\xf9\x65\xff\xd5\xc4\x2e\xdf\x86\x38\xdf\x2e\x3a\xc3\x17\x6c\xd5\xbb\x31\xc0\x23\x58\xf4\xe8\xb3\x07\x2e\xd3\xf9\x43\x1e\x46\x40\xa9\x9a\x8c\xa9\x13\x2f\x52\x30\x99\x0e\xf2\x1b\x80\x13\x70\xa9\xcc\xc0\x5c\xd1\x31\xbc\x73\x39\x0f\xfe\x75\xc0\x32\x32\xe3\xbc\xb7\xa4\xa2\x6f\xa0\xaa\x73\x4f\x55\xa4\xe4\xd7\x07\xc4\x07\xd1\x63\x7d\xfc\x4e\xe9\xd3\x8d\x54\x28\xc6\xf3\x2f\xca\xf3\x68\xaa\x72\x04\xdc\xa9\xc1\xed\xca\xd1\xfe\x28\xc5\x62\xfa\xe1\xc8\x74\x2a\x2e\xa5\xe7\xb8\x72\x5f\x14\x71\x87\x9f\x50\x70\x0f\xd8\x04\x54\xa0\xa0\xfb\xb3\x5f\x6b\xd7\xc1\xf2\x7e\x52\x9f\x18\xf6\x9a\xf3\xe3\xd5\x19\xf0\x79\xf8\xb6\x1d\x3c\xa1\xb9\x11\xd8\x4c\x91\x40\x59\x5c\xc7\xb6\xf3\xa5\xbc\xbc\x65\xa9\x78\x39\xe6\xc3\x09\xe1\xd8\x0c\x78\x5a\xb1\x49\x33\x33\x41\x18\xf9\x88\xa1\x97\x45\x0d\xdc\xfc\xa0\x2c\x70\x7c\x1a\x38\x6a\xff\x76\x18\x56\x51\xe1\xec\x8d\x31\x9f\x93\xb0\x55\x96\x27\x33\xf3\xac\x9c\x3b\x6f\x98\x0c\x48\xd5\x7a\x4a\x19\xbc\xbf\xc8\xaf\x93\xe9\x0b\xb3\xfa\xe8\x94\x02\x68\xa0\x81\xc3\x07\xf7\xc6\xe7\xdb\xe5\x81\x00\x5c\x17\x02\x3e\x3c\x2b\x84\xab\x4e\xf0\xb7\xbf\x30\x3f\xbb\x8d\x61\x7f\x47\x0a\x40\x40\x74\x35\x49\xe5\xc5\x83\x1f\x6d\x52\xe4\xde\x88\x17\xfd\xf9\xc7\xee\xe3\x99\x6e\xd7\xf5\x2b\xa2\xaf\xf9\xd3\xa3\x13\xf9\xa7\x01\xaf\x0a\xfd\x22\x17\x66\x48\x67\x09\x4f\xb5\x29\xed\x54\x58\x63\x61\x22\xfb\xbc\xe6\x6a\x33\x7b\x56\xcb\xec\x0e\xd1\x7f\x7d\x78\x97\x16\x32\x6d\xde\xbb\xe3\x7d\x04\x1b\x6b\xb3\x31\x73\x7d\x80\x68\xd2\xfa\x98\xea\x2b\x09\x22\x29\x02\xd3\x24\xf9\x42\xb8\xc3\xd5\xd8\xac\xc4\x47\xa6\x95\x1e\x47\x67\xc6\x4e\x99\x2c\xeb\xe0\x18\xb9\xd0\x28\x70\x37\x6a\xa7\xde\xe2\x82\x58\xe0\x40\xd9\x1a\x38\x42\x55\x1f\x18\xd0\xc3\x2b\xa9\xf8\x4b\xfa\x34\xf6\x9e\x4b\x3c\xa6\x1d\xcb\x5b\xac\xe7\x2c\x95\x31\x86\x13\xd7\xf3\x84\x22\x18\x2b\xd4\x2c\xec\x13\x1e\x0c\xd1\x73\xf6\x7c\x8a\x84\x5e\x7a\xf6\xa9\xb5\x5a\xd0\xa7\x00\x7b\x80\x0f\x06\x93\x04\xa2\x37\x41\x1c\x42\x2e\x9f\x9d\xf9\xd7\xcb\x46\x2a\x4d\x49\xcf\xe4\x28\x9d\xec\x27\xaf\x4d\xef\xc9\xaa\x0d\x02\x4f\x9b\x46\xec\xd5\xec\xad\xa3\xa2\xac\x24\x21\x81\xab\x37\xca\x97\x5e\x8a\xbb\x69\x9f\xd3\x14\x0c\xdd\xe8\x60\xf6\x63\xfe\xc6\x37\x44\x21\xc0\xba\x15\x7c\x1e\xc5\x46\x6f\x9f\x7a\x2a\xc1\xc7\x14\x83\xc6\x2c\xfe\xeb\x5b\x46\x6b\x7b\x32\x4e\x19\x06\x2b\xa6\xa9\x26\xc4\x7e\xc0\x40\x82\x7f\xd1\x1c\x2b\x67\x76\xb6\xb5\xb4\xb6\xb2\xc7\x9f\xbd\x6f\x19\xdf\xf2\x5d\x04\x61\x91\x95\x64\x9a\xde\x52\x75\xc1\x7c\x94\xa7\xb0\x9b\x83\x54\xa2\x8b\x2b\xac\xd0\x67\x2d\x9c\x06\x12\x83\x05\x6f\x3b\xa9\x97\xdc\xd1\x4b\x65\x22\x27\x2f\xbf\xaa\xa2\xae\x71\x09\x3a\x58\x42\x17\x6e\x7e\x5b\xe5\xda\x63\xd8\xc3\x12\xd9\x53\x4d\xca\x02\xe5\x60\x1c\x23\xfb\x90\xcc\xd4\x3d\x12\xf8\x16\x04\x9e\x0f\x69\x5a\x56\xf8\x0a\xe1\x19\xff\x11\x7e\xde\x86\x93\x14\xa2\x05\x72\x90\x0d\x28\xf3\xc1\xbc\xf4\x49\xb5\x6b\x80\xd8\x34\xc1\xb8\x5b\x83\x85\xcc\xec\x60\x5a\x65\xbc\x40\xf1\x5d\xcd\x29\xdb\x42\x76\x94\x81\xda\x90\x29\xd8\xc5\xf6\x81\x93\x34\xf1\x63\xd7\x02\xd4\x01\x26\x8c\x92\xf0\xe8\x61\xf1\x03\xef\x46\x4d\x10\x7d\xe6\xdc\xce\x56\xb1\x9e\x3e\x77\x48\x64\x1a\x75\x50\xa9\x30\xc3\xb3\x3d\x9b\x25\xd9\x01\xc9\xce\x68\xf8\xe3\x47\x35\xff\xa4\x20\x0a\x7d\x3e\x8c\x65\x4e\xb2\xff\x5a\x92\x0f\xcc\x81\x25\x68\x22\xdc\xd8\x60\x73\xee\x6c\x56\x01\xf6\x0e\xf2\x3c\xde\xaf\x7e\x7e\x97\xde\x56\x30\x49\x2d\xf1\x75\xef\xcf\x0c\x79\x29\xcd\x15\x8d\xed\x52\x4d\xb3\x21\x90\x7c\xa7\x4d\x3f\x18\x09\xf6\x11\xb7\xc9\xef\xcf\xdd\xb6\x71\xb8\x4a\xe7\x8a\x1e\xb6\x2b\xd5\x09\x80\xcd\x0e\xb4\xe9\x9a\xb9\x04\xc0\xbd\x75\xd0\xcb\xf9\xcb\x5f\x5b\x35\x52\x94\x03\x18\xf6\x72\x2a\x66\x74\xfb\xfb\xa7\x8d\x56\xd7\x4b\xc5\x4a\xe8\x8d\xf7\x6a\x4d\xcc\xf5\x01\xef\x1e\x44\x57\x53\x7c\x48\xd1\x95\x47\x4c\x9f\x35\xfa\xfe\xbf\xbf\xa6\x57\x6a\xd8\x0a\x44\x37\xc7\x68\x5f\xa2\x55\x35\x81\x05\x28\x53\x19\x51\xce\xdd\x11\x5a\x9b\x0d\xc3\x0a\x61\x67\x2a\xae\x08\xac\xe4\x4f\x3b\x64\x7b\x72\x66\x6b\xab\xea\xad\x90\x3d\xac\x6d\x7e\xaf\x0e\x5c\x56\x51\xd9\x39\xad\xed\x00\xcb\x84\x42\x0b\xe0\xf8\x3d\x5d\xaf\x98\xf6\xb5\xcf\x68\x63\xf9\x6c\x6e\xf6\x3c\xbe\xff\x41\xb1\x14\x98\x9c\x68\x75\x6e\x6e\x30\xfb\x51\x2d\x5f\x08\xe7\x9e\xd0\xd2\x35\x62\x46\x25\x04\x9f\x9a\xdf\xb2\x95\xaf\x50\x13\xb8\x5e\xc0\xe7\xdc\xd7\xaf\xd0\x90\xf2\x16\xa1\x70\x7a\x8b\xaa\xd0\x97\x9d\x1f\x4e\xd4\xf2\xd1\x22\xc0\x89\x3b\x21\x2b\x63\xce\x79\xe1\x32\xdd\xb0\xfd\xc3\xc2\xb0\x3d\x55\x77\x7d\x68\x97\x22\xd0\x08\x1c\xc4\xb6\xf4\x0d\x57\xcb\x40\x1c\x1d\xbe\xd1\xcf\x6e\x3e\xab\x8b\xdf\x00\x66\xb0\x21\x4e\xd8\xa7\x9f\x1f\x1e\x27\xb9\x10\x72\x3c\x69\x76\xcf\x0e\x85\x7a\x4d\x21\xe0\x4a\xf4\xd9\xcf\x28\x3a\x03\x9e\x0b\x68\xec\x0a\x35\x62\x9f\x4c\x4c\xdb\x94\x57\xa6\x8c\x5b\x1e\xd1\xa5\x88\xf8\x2e\xe2\xcd\x93\x39\x19\xe5\x73\xeb\x10\xc4\xfa\x05\xff\xb2\x75\xb8\xc8\x02\x7d\x48\x11\xf3\x4d\x9f\xb3\xb3\x61\xf2\xc8\x80\xa1\xfc\x35\x5f\x74\x99\xd2\x71\x26\x76\x09\x45\x1f\x24\xd2\xca\x89\x7b\xe5\x97\x60\x18\x50\xe2\x71\x51\x82\x13\x4d\xda\xa6\x32\x03\x5f\x30\x95\xb3\x2b\x27\x68\x46\x0a\x36\x04\x1e\x07\xba\x1b\x1f\x2c\xca\x85\x5a\xa4\x48\x9d\x5a\x18\xe3\x0e\x09\x6b\xe5\xb2\xf4\x22\xbe\xf6\x8e\xf4\xe6\xa9\x00\x47\x8e\x0f\xa9\x56\x94\x5b\x90\x73\x80\x79\x55\x39\xa9\x59\x09\xd4\x0e\xa0\x51\xe1\x77\xcd\x48\x19\x30\x66\xcd\x69\xcf\xe7\x0b\xe1\x90\xe3\x0d\xa8\xe6\xe8\x20\x14\x94\xc3\x29\x58\xfb\xad\x0d\x7a\xa5\x25\xc7\xf7\xb7\x08\x0c\x27\xa0\xb0\x1c\xd8\x82\x78\x74\xfc\xac\x72\x2e\x95\x4a\x6c\x71\x18\x7f\xd9\x9b\x0c\x97\xac\x20\x01\xe9\xff\x6d\xc9\xc5\xfa\x69\x5f\x9d\xce\x24\x9a\x12\x31\xa4\xdc\xc7\xb7\x8d\x48\xcb\xa8\xb0\xb2\xa6\xf0\x46\xa3\x22\xbb\x2d\x9b\xe5\xe1\x5d\xb7\x29\xb2\x7a\xcc\xa6\x34\xba\x34\x7f\x91\x1e\x4e\x95\xfe\x7a\xf6\xef\xcb\x65\x96\xed\x03\x06\x63\xfd\xec\x0c\x9d\xbf\x88\xe2\xd1\x7c\xbf\xb1\x71\xdb\x04\xfd\x60\xc3\x80\xfd\x52\x5c\xe4\x0f\x14\x47\xb4\x3a\xb0\x6d\xd6\x7b\x64\x49\x55\x2b\x8f\xbb\x37\x13\x5b\x71\x5a\xca\xfc\xfa\x6d\x99\x8d\x10\x26\x76\xc3\xd0\xc3\x0f\x9d\x90\xa3\xf1\xb9\x1d\xf9\x42\xf8\xfb\xd5\xca\xd9\x5c\x47\xb8\xc4\x7d\x76\xc3\x8d\x9b\x78\xee\xb7\x04\x62\x0c\x95\xc2\x33\xf3\xb7\x09\x0a\x87\x17\x38\xae\x65\x43\x3e\xad\xfb\xe4\x66\xa9\x73\x07\x14\x8d\x9a\xcc\xd6\xae\x34\x68\xde\x42\x15\xcb\x06\xb8\x14\x1f\xd8\x8a\x90\x9f\x66\x85\x16\xed\x12\x17\xca\xe6\xed\xff\x9e\x91\x4c\x00\xa2\x8c\x27\x73\x77\x96\xe5\xbe\x2b\x23\x9a\x82\x6c\xde\xf6\xa0\x6a\x1d\x14\xe3\x56\xb3\xef\x6d\x1b\xe7\x59\xc0\x85\x79\x07\xf5\xc0\x92\x09\x3c\x29\x7f\x13\xae\x7d\x3d\x7d\x94\x38\x01\x2d\x11\xd3\xe2\x54\x81\xf8\x3b\xcf\xfb\x71\xda\xf4\xb9\x0e\x21\x83\x43\x7c\xf0\x96\xe4\xd8\xc4\x04\x45\x2f\xf7\xf2\xbd\x97\xaa\xa9\x57\x19\x79\x7c\xe2\xab\x03\x45\xa6\x5e\x3d\x5c\x94\x2d\xa0\x2c\x9e\x6a\x26\x3c\x31\x42\x1a\x8e\x58\xa2\x56\xbc\x66\xc7\xd0\x18\x72\xb6\x62\x61\xbe\x10\x66\x95\x69\x54\x05\xd8\x35\x80\x93\xdb\xdc\xdc\xa5\x0d\xbc\xeb\xc8\x64\xed\x91\xf0\x23\xbb\x14\x75\x73\x26\x2d\xc6\xf5\x74\xe2\xe7\x76\xde\xf3\x72\x09\x97\x18\x20\xf3\x8f\x0f\xa6\x0f\x4f\x2f\xaa\x14\xb0\x89\x84\xd7\x6a\xa1\x3f\xfb\xa9\x3e\xbd\xdc\xb0\x91\x29\x2c\x04\xc3\x2f\xce\x57\x31\x09\xdd\x6c\x2f\xff\xcf\xd2\x8b\xea\x7a\x45\x6d\x43\x26\x15\x2e\xc8\x10\x1f\x9e\x22\x5f\x1f\x74\x8a\xc0\x63\x16\x54\x4f\x63\xc9\xbd\x31\xb9\xce\xd0\x0a\x25\x71\xd6\xcf\xaa\xa1\xdd\xea\xe4\xd9\x46\x2c\x0f\x14\x31\x66\xe3\x63\xba\x09\x1d\xb2\x39\x04\xc5\x58\xd1\xda\x08\xa6\xaf\x31\x7b\x5d\x71\x70\xe0\x89\x49\x40\xf1\xcc\x24\xa0\x1c\x5f\x9d\xce\x52\xab\x04\x57\xbc\x0a\x00\xb4\x94\x62\x51\xcd\x1e\x96\xbc\x5a\xc0\x72\x42\x76\x4c\x94\x4e\x8b\xa2\x00\xd8\xd2\xee\x7f\xaf\x02\x07\x84\x18\x8a\xcb\x67\x49\xec\x61\x4e\x12\x5e\x42\xec\x22\x25\xa4\xaa\x8c\x96\xb2\x78\x2f\x0f\x0d\x5d\x34\xaa\xcd\xc4\x9f\x84\x2f\xb7\x8f\x91\xea\x92\xbe\x2a\x16\x67\x9c\xd3\x23\x97\x04\x8d\x22\x9d\xcf\xd4\x4d\x60\xec\x5c\xfe\x97\xf6\x66\x15\x8d\x2a\x6f\xe5\x64\x8f\x74\x46\xb7\x54\xeb\xaa\xd9\x27\x65\x3e\x90\x17\xab\xb7\x65\x95\x3a\xa6\xe3\x6f\xf9\xc7\x0f\xa5\xf3\x12\x58\xe9\x75\x7d\x04\xb0\x6c\xaf\x1a\xb7\xbc\xae\x9d\x93\x15\x88\x19\xdc\x23\x4a\x0c\x37\xa7\xdf\x61\xf4\x3f\xfc\x1d\x66\x1f\x59\x34\x46\x89\xde\x75\x48\xb9\x5e\x07\x03\x5e\xe2\x86\xde\xbe\x49\x51\x51\xd8\xe1\x18\x1f\xa0\xb1\x08\x05\xa4\x82\x8a\xb0\x72\x1a\x2f\x6c\x66\xcf\xf5\xad\x7c\x21\x7c\xfb\x3e\x9d\x8b\x01\x7d\x9a\x60\x21\xb3\x3f\x1d\x37\x42\xd9\xf7\x44\xb4\x2c\xed\x1f\x2b\x6b\x26\x26\x74\x6f\xb8\x76\x8c\x32\x00\xe1\xaf\x8b\xcb\xe5\x67\x96\x6e\xe0\x2d\x10\x0b\x45\x71\x79\x78\x46\xdb\x83\x2e\xa9\x42\x4f\x78\x03\xb1\x86\x40\xe7\xd4\xe4\x5d\x74\x07\x6a\x2f\x67\xc9\x0b\x72\x27\xb5\xb5\xe5\xe3\x7c\xef\xf6\xe3\xb2\xdd\x05\x6c\x93\x58\xc4\x46\x1e\x83\x80\xbe\x33\x29\x3d\x7f\xbc\x22\xae\x9d\x7f\xed\xaa\x3a\x0e\x9e\x87\xb8\x1e\x5d\xf8\x73\xc5\xef\xde\xe3\xf6\xc8\x85\xfe\xdc\x92\x5d\xfa\x63\xf6\xa1\x19\x1b\x01\x87\xde\x8f\x47\x2b\x0f\xc9\x66\x8c\x0c\xc6\x32\xca\xac\x5c\x9d\xaa\x58\x85\xeb\x2b\xd7\x6e\xcd\x91\x26\xad\x15\x57\xc1\x24\x4a\xe8\xd8\xbe\xfd\xed\x93\xe9\x13\x27\x60\x1a\xb2\x03\x14\x45\x59\x4f\x43\x91\x98\x16\x34\x2d\x18\x43\x53\xbf\x2b\xc5\x4c\x89\x17\x3d\xfd\x49\x23\xf5\xfe\x7c\x49\x35\x35\x36\x0e\x3e\x26\x1f\x40\x25\x16\x35\xc8\x5d\xba\x42\x8a\x42\x35\x88\x3a\x85\xbb\xb9\x25\x7f\x1e\xc3\xba\x27\x26\x8a\xfa\x55\x3e\xf8\x90\xf4\x16\xe6\x12\x1f\xd1\x8b\x5b\xb8\x4a\x93\xd0\x0d\xec\x72\xdc\x8c\xdc\xfb\x4c\x73\xfc\xe3\x19\x4a\x0a\x14\x2e\xdd\xc7\x67\x14\x8b\x6d\x50\x67\xd7\x76\xab\x86\x16\x66\x80\x28\xa1\xca\xff\x6a\x47\xfa\x6e\x63\xa7\xdf\x38\x6d\xfe\x59\x5f\x8c\x61\x72\x00\x16\x7e\x8c\xd7\x97\x15\xfb\xbf\xe4\x52\xb7\x5f\xa6\xcc\x8b\xa0\x43\x28\xc0\xa5\x80\x4d\x40\xff\xe3\x55\xc5\xcd\xbc\xa5\xd8\x82\xd8\xac\x51\xc8\xf4\x79\x26\x21\x2e\xd7\x34\x74\x4e\xcb\xd3\xb6\x86\x4c\x9f\x50\xc6\x44\xce\x76\x3e\x2e\xe9\x4c\xbe\xd5\xd0\x90\xbe\xb1\x47\x39\xfc\x59\x44\x63\x87\xc5\xe5\x4f\x68\x59\x3c\xc1\xd2\xfc\xd7\x28\xaf\xd4\x54\xba\x50\x0d\xf2\x8e\x59\xf6\x8f\x7b\x44\x3f\xb4\xc7\x45\xc2\xbd\xe9\xbb\x9b\x35\x4f\x1d\x0e\xfc\x4d\x58\xf0\xe1\x5f\x5f\xd4\xdd\xec\x7b\x49\xb9\x1c\xa3\x0f\xff\xd2\xae\x60\x86\xa1\xeb\x72\x53\xa8\xf0\x60\x9f\xdc\x16\xbe\xc5\xa8\x1f\x7c\xe0\x52\x78\x53\x45\x04\x39\x4c\xac\xb6\xdf\x78\x1f\x6b\x7a\xbd\x4c\xa0\x3f\x05\xc3\xfd\xcf\xe5\x82\xed\x0e\xaa\x4c\xed\x26\x7b\xb4\x35\xbd\x4b\x30\xe8\x2b\x51\xe0\x43\x5c\x25\x69\xe9\xcd\x2b\x5e\x90\x0a\xe6\xa6\xa2\x66\x90\x7d\x71\xea\x85\x7a\xce\xed\x2b\xba\xc2\xd9\x9e\x9c\xaa\x2d\x4f\x62\x20\x58\xf6\xb4\xe2\x29\x54\x43\x0c\x9e\xcc\xb3\x95\x9f\x88\x59\xdd\x0d\xb4\x08\x4c\x25\xd7\xba\xf5\x8e\x64\x07\x45\xe7\xbf\xde\x3e\x99\x35\xf4\x02\xa5\x8f\x89\x70\x54\x4a\x72\xd8\x59\x74\x70\xb8\x35\xdd\x33\x87\xd7\x05\xec\x97\xef\x4c\x52\x94\x2f\x9d\x7c\x21\x7c\xec\x6c\x7a\x7c\xfb\xff\xd3\xf5\xf6\xf1\x52\x55\xf5\xfe\xb8\xf3\x10\xd7\x14\x90\x27\x11\x11\x11\x09\x11\x81\x39\x1e\x0e\x0f\x02\x15\x01\x22\xe1\x13\x83\x88\x8a\x44\xc4\x9a\x3d\x6b\x66\xd6\x99\xbd\xf7\x1a\xd7\xde\x7b\xce\x99\x13\x17\x89\x94\xc8\xd0\xcc\xd4\xcb\x35\x2e\x3f\xbf\xa4\x46\x56\x5c\x23\x33\xae\x99\x51\x97\xfc\x9a\x91\x91\xd7\x88\x8c\xcc\xc8\xc8\x4c\x8d\x6b\x5e\xe2\x4b\x9c\xdd\xef\xb5\x3f\x9f\xb5\xf7\x5a\x7b\x0d\xf7\x1f\x5f\x2f\x39\xe7\xcc\xec\x87\xb5\x3e\xeb\xf3\xf0\x7e\xa0\xe8\xb4\x14\x7b\x0e\x99\x5f\x3d\xeb\x5d\x95\xd4\x44\xab\x3a\x5a\xab\x5b\xce\x3c\x57\x6b\xc9\x3a\xf2\xcf\x21\x30\xbd\x24\xed\x8b\x99\x6d\x53\x4d\xc2\x3a\xbf\xa9\xdb\x90\xdc\xb0\x4b\xa0\x23\x6c\x48\x6e\x7c\x41\x63\x91\x00\x30\x29\xe5\xe4\x33\xd1\xa0\x60\x78\x3e\x51\x90\xf5\xab\x1f\x31\x6d\xc4\x00\x16\xa1\x6a\xc6\x47\xb7\xe1\x8c\x75\x05\x71\xda\x6d\x77\xbe\x23\x8d\x43\xba\x83\x72\xd5\x91\x1e\x06\xb9\x8b\x25\x2c\xec\x16\xbc\xbb\xdc\xa1\xc5\xfa\xbc\x93\xd4\x28\x78\xdf\x64\x27\x37\xd4\x1e\xac\x70\x41\x59\x35\x8a\xad\x97\xb8\x5a\x16\x80\x08\xd5\xec\x8f\x4f\x6a\xd8\x10\xe6\x7b\x41\x89\x79\xa0\x0d\x38\x70\xb5\x5a\x30\x55\x41\x60\xb6\x08\xfb\xf1\x60\xa7\xa1\xac\x6c\xf9\x81\xa6\xb2\x98\x9d\x6a\xf8\x40\x56\x98\x70\xd4\x8c\x6c\xf6\xea\x64\x37\xdb\x5c\xc0\xa1\x53\x39\x99\x96\xdf\xaf\x72\x5e\x76\xc8\x69\xdd\xb4\xf2\xd7\x7c\x3d\x1d\x3b\x2f\xb5\xa3\x67\x8a\xdb\xfa\xa8\xd6\xf3\xac\x74\x68\x19\xd1\xfb\x0d\x67\xa4\x02\x2d\x07\x78\x84\xc8\xd0\xfd\xfc\x4e\x63\xd2\x1c\x58\x35\x22\x50\x27\x50\xae\xe8\x9b\x56\x8c\x56\x4e\xa1\xed\x53\xb8\xf2\x1a\x43\x5a\xcf\x69\x08\xde\xa4\x71\x5a\x62\xf9\x32\x10\x08\x04\x6a\x65\x07\xf5\xb5\x35\x19\xd1\x2e\x1c\x39\x81\xb9\x7f\x7b\xeb\x3c\x2c\x95\x82\x06\xd4\x49\x1a\x8e\xee\x7d\x07\x0d\x98\x65\x2f\x0c\x8d\x65\xee\xfe\xf9\x5e\x53\x50\xd9\xb6\x99\x8b\x5a\x78\xf1\xb2\xbb\x70\xbe\xa9\x34\xee\xe0\x09\x11\x3d\x12\x30\x3b\x7c\xf3\xbd\xf4\xe5\xa1\x32\x57\xec\x45\xd4\x9f\x3d\xff\x41\x43\xa1\x8c\x56\x49\xc1\xa1\xa2\x4a\x45\xd2\xdf\x38\x5b\x53\x84\xb1\x59\x9d\xf6\xa0\xc6\x5f\x66\xcb\x62\x55\x18\x4c\xa2\x65\x6f\xae\x8a\x7a\x9f\xe9\x1d\xaa\x2f\xd0\x3a\xb4\x81\xaf\xb8\xee\x34\xc7\x25\x42\xc3\x32\x87\x5f\x49\xef\xe1\x06\x75\x5d\xaf\x05\xd5\x18\x51\x7a\x5d\xb9\x8f\xf8\x4a\x7e\xb3\xb7\x1d\xe6\x92\x1b\x33\x19\xb3\xf6\x46\x8d\xfb\xbc\x2a\x48\x03\x88\x0a\xd9\x35\x76\xba\xf7\xd8\x43\x64\x03\x2d\xdf\x5b\xc6\x3f\x00\x47\xdb\x52\x20\x19\x4b\x59\xba\x48\x6d\x26\x1e\xf8\x82\x54\xa9\xc4\x83\x36\x77\xc4\x73\x07\x11\x77\x63\xb3\xdf\xde\xab\x42\x75\x8d\x0b\xc1\x2a\xe8\xd6\x78\x3b\x5a\x7a\x14\xae\x76\xeb\xdc\x89\x1e\x43\xdb\x2e\x18\xf4\xb0\x76\x80\x11\x51\x29\x94\x91\xb1\x79\x64\x99\x49\x7a\xa1\x4d\x85\x09\xc8\xd0\x0e\x73\xec\x16\x74\xab\x4a\xff\xa6\xbb\x8c\x78\x18\xf8\x1c\x5a\x99\xe9\x9e\xf6\x2e\xdd\x16\x87\xf9\xac\x8f\xba\x49\xbf\x6d\xba\xdc\xdc\xcc\xad\x50\x0b\x8f\xfd\x6a\x79\xb8\x3c\x67\xa3\x74\x99\xd8\x31\x51\xec\xd1\x3e\x8d\xa5\x19\x8b\x6c\xc4\x9f\xd3\x39\x57\xfd\xb0\x12\x95\x0e\xb5\x82\x17\x2b\x76\x65\x06\xad\x48\xaf\xde\x5a\x2c\x63\xa4\x7a\x13\x83\x25\xd6\x38\x16\x13\xce\x5d\x61\x40\x8a\x7b\x58\x99\xda\x2d\x7c\x2c\xf9\xcb\x76\x19\x8b\x9d\x07\x82\x79\x7e\xa2\xa0\x30\x5d\xba\xfe\x4e\x9b\x95\xba\x8e\x77\x3e\x34\xde\x08\x5b\x81\xe7\xa1\x0c\xbe\x2e\xd4\x37\xea\x39\xd3\xfe\xb3\x11\xc8\x8e\x72\x7f\xee\xd8\x83\x6d\x52\xb2\xd4\xb6\x99\x8f\x68\x8a\xfc\xf9\xeb\x35\xac\x1a\xf1\x61\x64\x09\x72\x6b\x7b\xd5\x10\xb1\x12\xf8\x81\xa0\x51\x04\xb1\xe3\xa9\xee\xbf\x1a\x41\xb2\x12\xad\x52\x99\x2e\xff\xd9\xd8\x4d\x25\xee\x94\x24\xdc\xf5\x5c\xac\xcd\x0a\x57\x72\x11\xb8\xed\xd6\x6c\x23\x5d\x43\x6a\xc2\x06\x33\x86\x84\x55\xd6\x9f\xd9\x6c\x10\xe1\x89\x5d\xa5\x82\x29\xa4\x51\xf6\xb7\x1f\x92\x50\x47\xc1\x81\x53\x98\xf9\xd2\x83\xb8\x2d\x2c\x00\x15\xe2\xf9\xf2\x3f\x0b\x4f\x83\x37\x8d\xc5\x13\xdf\x31\x70\x54\x0e\x11\x16\x33\xac\x43\xf3\x97\x35\xce\xd3\xb4\xde\x04\x40\x2e\x64\x69\x97\xd9\xaf\x54\xb3\x9b\x7a\x3f\x2b\x73\xcb\x6b\x13\xd3\x3d\xf8\x29\xf1\xcf\xda\x6a\x83\xce\xc7\xd2\xd1\xaf\x4a\x84\x5f\x93\x9d\xc3\xf8\xcc\x71\x27\xeb\xd5\x25\x8b\x75\x34\xa3\x1b\xac\xec\x52\x25\x7d\x43\x53\x80\xce\x5f\xf7\xf4\x30\x9d\x2a\x68\x21\xff\xef\xd2\x93\xe9\x35\xd2\x03\x42\xcd\xc9\x0c\xf4\x6b\xeb\xc6\x19\x4b\x1b\x20\xc9\x29\xc3\xa7\xbc\xe9\x4c\x45\xca\xe5\xe4\xcc\x08\x0f\x2d\x53\xf6\x6a\x0d\x40\x51\x3d\xff\x72\x7a\x47\x24\x29\x88\x5c\xb6\x17\x1f\x46\xec\xfe\x8d\xc4\xf5\xb9\x2e\x62\x9d\xff\xd4\x64\x95\x2d\xd9\x2d\x2f\x4a\x6c\xb5\xee\xc8\x9f\xf3\xc9\x37\x5d\x81\xfe\xac\x1b\x0d\xa6\x22\x71\x7d\x52\xd5\x94\x51\xb3\x85\x53\xb8\x42\x96\x5f\x75\xe5\x55\x57\xdf\x7c\xd5\xa2\xe8\xdf\x3a\x27\xa5\xab\x54\x56\x46\x04\x3d\xc4\xfa\xe1\xaf\x5d\x60\xa6\x1f\xb4\xac\x09\x4e\xfe\xf3\x04\x5c\xe5\xd7\x52\xd7\x93\x0e\x88\xda\xe1\xfa\x9b\xf7\x92\xda\x86\x35\x98\x59\x37\x2e\x9b\x3f\x42\x7f\x41\x1e\x77\x5d\x74\x53\xbe\x78\xcb\x28\xad\x3a\x07\xb0\x80\x15\x67\xd8\xf9\x5b\xae\x49\x6f\xb9\x32\x64\x06\x70\xce\xe7\xaf\x3c\x7e\x7e\xaa\x67\x9c\x12\x43\x9e\x7e\x72\xb0\x4c\x72\x99\xb4\xe8\xca\x9f\x7f\x66\xd2\x69\x20\x81\x86\x3a\xc8\xcf\xa9\x0c\x55\x7c\xe6\x84\x02\xfd\xdc\x33\x69\x25\x7c\x9b\x7a\x0d\xe6\x12\xcf\xa3\xa7\xb1\x36\xfa\xd1\x0e\x1d\x50\x12\xb7\xec\xa2\xb7\x74\xa7\x39\xe7\x6b\x32\xc1\xca\xbc\xa9\x05\xba\xf0\x03\xe3\x94\x64\xc4\xb4\x39\x73\x66\xb5\x7d\xfc\xfc\xc7\x35\x15\x3f\xde\xa0\xb6\x14\xc8\xdc\xad\xa1\x66\x2c\xd6\x04\xd6\x24\xec\x93\x9e\x25\xe7\x9b\x17\xef\xd1\x44\x11\xa4\xa2\x49\x6a\xab\x8e\x99\x5a\x6b\x1f\xea\x32\x42\x2b\x75\x41\x39\x3c\x86\x28\x9e\x4c\x8a\x90\xe9\x1d\x20\x17\x79\xf2\x19\x8d\xac\x1f\x40\x20\x0d\xfd\x34\x50\x6c\x1a\x9a\x97\xfc\xe6\xf1\xf4\xa2\xe5\x9e\x47\x7d\x88\x73\x28\xd0\x76\xd5\x59\xda\x3e\xb6\x83\xaa\x54\xc7\xb8\xe4\x31\x53\xc5\x58\x56\xad\xb2\x74\xbb\xf0\xa8\x56\x38\x37\x6a\x54\x00\xf2\xf9\x97\x26\xbc\x90\xbb\x3e\xed\x8d\x7d\x18\xbe\xe9\x5e\x62\xe4\x91\x55\x74\x54\x6a\xcb\x71\xbe\x32\x51\xc2\x66\x9b\x9c\xe1\x09\x96\x9d\xf3\x84\x81\x57\xaf\x91\x58\x52\x39\x37\xd3\x10\x16\xa8\x04\x2e\xd0\x08\xa1\x49\x33\xeb\x98\x66\xf8\x44\x6c\xbb\xad\x7d\x92\x7d\xdb\xb0\x4c\x42\x57\x62\xa8\x38\xc6\x4e\x4d\x3f\xbd\xc0\xad\x45\x9f\x5c\x8e\x9f\x43\xfe\xd6\x45\x6a\xa1\x34\x89\x95\xe0\x5c\x1f\xe9\xd6\x41\x62\x31\x2e\x2b\xfa\xc8\x9f\x3c\x74\x8e\xfc\xed\x18\x37\x18\xae\x1b\x60\xf0\x75\x1c\x62\xdb\x68\xa8\xf8\xad\x8a\x46\xb3\x8d\x76\x71\xa5\x12\x7d\xc8\xba\x87\x0d\x9d\x0e\xee\x30\xb7\xca\xe3\xb7\xda\x9f\xa9\xce\x1b\x96\x1a\x4a\x41\x73\xa0\x3f\xef\x6d\x1b\x98\x18\x96\x4f\x2f\x14\xc3\xeb\x5f\x32\xc4\xb8\x05\xa3\x50\xcf\xa0\x7b\x73\x7c\xde\x5c\x72\xd2\x7c\xf8\xac\x11\x73\xf7\x8f\xf8\x46\x6f\xb5\xc6\x13\x70\xf4\x42\x4d\x27\x49\x6f\x35\x56\xef\x37\xc5\xbd\xad\x40\x24\xa0\xaa\xdc\x0a\x0d\x14\x50\x22\x30\x51\x8b\x93\x36\x05\xf7\x4b\x13\xd0\xa6\xee\xd1\xc5\xb8\x41\xcb\x05\x74\x3f\x5e\x52\xe5\x7b\x10\x95\xef\x3f\x9f\xa4\xca\xca\x6e\x0a\xc6\xf7\xe3\x8c\x49\x1d\x61\x22\x0a\x6b\x52\xb4\xe6\xd0\x6a\x23\x9c\x30\xb7\x4a\x1a\x5c\xe8\x9e\xaa\x99\x0b\x5f\x8d\xd9\x98\xd4\xaa\x47\x9f\xf9\xe4\xf2\x74\x5e\xd0\xe2\xd5\x40\x48\x79\x8a\x03\xaf\xa4\x1f\x98\xcd\xdc\x18\xb0\xf7\x8f\x01\x67\xcb\xac\xc6\x46\x5f\x8e\xad\x86\x07\x18\x11\xbe\x2b\xf1\xa1\x72\x92\x38\xd1\xd0\x29\x42\xb5\x69\x99\x81\x7c\xe0\x43\x03\x15\xd2\xbe\x50\x0c\xcf\x1a\x66\x7c\x9e\xe0\x15\x86\x7a\x2d\x3e\xe2\x34\xb2\x7f\x18\x90\x3c\x31\x3c\x2f\x32\x43\x0f\x40\x06\x51\x58\x50\x6e\x12\x17\x74\x65\xda\x4b\xca\xdb\xef\x33\xe6\x34\x9e\x20\xd4\x86\x02\x51\x3e\xa2\x1f\x9f\x65\xe6\xf3\x5c\x51\xdc\xf3\xff\xfc\x8c\xb1\x05\x05\x25\x68\x55\x94\x3b\xf5\xb4\x59\x00\x7a\x7e\xc1\x0a\x34\xc5\xb7\xfc\xe2\xb7\x4e\x8b\x3b\x81\xb4\xd4\x3e\x35\x26\x9d\x2a\xdd\x38\x45\xf5\x3b\xa3\xdb\xfb\xf4\x4e\x03\x09\xdf\x6b\x05\x5e\xac\xe6\xba\x7e\x07\xa6\xd3\xbc\x24\x7d\xed\xd1\x80\x61\xda\xea\x54\x9f\x46\x1b\x34\xde\x9f\xbe\x0f\xc1\x2a\x15\xa9\xfb\xbe\x7c\xae\x7a\xb0\x88\xff\x7e\xf3\x80\xc2\x0c\x51\x6d\x2a\x92\x2b\x1b\x3c\x8b\x1a\x0f\x12\x19\xe8\x69\x06\x2c\x66\x5a\xc7\xcc\xce\x78\x2d\x3c\xb4\xe8\x62\x23\xe1\xbc\xcd\xe3\xbc\x6c\x60\xe5\x6e\xe9\x93\xb0\x53\xee\xd5\x9b\x44\xf7\x8f\xdd\xde\x6d\xe8\xf6\xf5\xf0\xd3\x34\xb5\xc2\x93\xc7\x62\xdc\xaa\x5b\x11\xb4\xac\x4d\x7f\xf3\x1b\x1e\x56\xed\xae\x1e\x62\x03\x62\x8b\xbf\xa4\x19\x90\x49\x1e\x84\x59\x24\x4e\x94\x30\xd0\x32\x75\xa1\x9a\x3d\x73\x8f\x9a\xe4\xea\x39\x5b\x66\x50\x98\x7e\x5b\x5d\xb3\xa6\xce\xb9\xa2\xb3\x00\xaa\x96\xf9\x5e\x69\x34\x58\xa5\x10\xff\x71\x80\x97\x1f\x63\xa8\x2b\x94\x04\x2b\xd1\x04\x87\x98\x3f\x63\x9c\x29\xa3\x6e\xdb\x32\x5f\xcd\xfe\x7f\x42\x37\x0b\xb4\x79\x1b\xfc\x32\x77\xc1\x93\x9a\xf3\x3f\xf0\x92\xa0\x35\x3e\xce\xd6\x59\x4c\x48\x80\xc0\xa4\xc8\xd9\x2a\xc3\x3f\xf5\xa9\xc0\xbe\x56\xe6\x07\xcf\x62\xdd\x79\x63\xc3\x58\x07\xab\x2f\x34\x4e\x9f\x8a\xcd\x5c\x04\xc7\xe0\x31\x3c\x62\x5b\xec\x56\xeb\x50\x9f\xf7\xc0\xe2\xcc\xec\x37\xdb\x35\x0e\x6f\xaa\x89\x69\x86\x9c\x4c\x5a\xf0\x2d\xa4\x32\x2d\xbb\x2a\xcc\x77\xe9\x08\xc9\x26\xc7\x36\xb8\xd6\x99\xb3\x88\x10\x0c\x3b\x07\xbf\x32\xbe\x40\x5a\xa4\xd0\xb2\xcc\x13\x3f\x3e\x43\xeb\x8c\x50\x90\x9c\x2e\xf6\x67\xce\x19\x6b\x9c\x13\x44\xc4\x45\xeb\xc6\x9d\x18\x3e\x57\x44\x77\x06\x79\xd6\x42\x0d\xbd\x8d\x13\x5f\x1f\x06\x6c\x8b\x4a\x1a\x80\x06\x90\x26\x6a\xef\xd5\x66\x6b\x12\x5c\xd4\xe2\x8e\xe4\x97\xef\xd5\xd8\xad\x51\x1e\xcd\x25\x04\xe3\x35\xd3\x28\xb1\x25\x8f\xb4\x7c\xa9\x17\x77\xfd\xad\x81\xd0\x48\x2d\xe3\x37\x8e\x35\xd7\x91\x55\x20\x85\x92\x20\x56\xdc\x09\x3b\xfc\x04\xbe\xc8\x5b\x98\xef\x33\x2d\xbf\xfb\xac\xb1\x6a\x91\x85\x27\xdf\xc7\xc5\x86\xc0\x49\x89\xfa\x3e\x15\x48\xab\xca\x3b\x87\x07\xc9\x8d\x61\x09\x84\x68\x9c\xf3\x92\xd1\x52\x73\x2b\x5c\x58\xf8\x72\xc3\xc5\x67\x26\x5a\x0b\x1e\x08\x0b\x2b\xa7\xaf\xc1\x03\x34\xb8\xa6\x1d\x80\x0d\x75\xe6\x9c\x8d\xe3\x8c\xe0\xd7\x20\xf0\x88\x98\xe7\x24\x73\xca\x5b\xde\x34\x8e\x18\x82\xa7\x1f\x0c\x88\x3e\xdc\x97\xec\xd4\x1e\xed\x69\xf5\xe7\xef\x98\xa8\x4e\xda\x0a\x11\xd1\xe1\x7b\xd7\xa6\xf4\x13\xac\x0a\xe2\x96\x3d\x1f\x87\x43\xd8\x86\xbe\x7b\x97\x46\x58\xe5\x41\x3c\x36\xda\x3e\xcb\xa8\x2b\x89\xe7\x53\x9b\xb8\xe5\xe8\x29\x85\x3d\x06\x6d\xda\xf3\x81\xa8\x1c\x5f\xff\x81\xe7\x26\x9a\x07\x7c\x0f\x69\x01\xe4\xdf\xec\x1b\x1c\x9a\x60\x08\xef\x05\xa2\x0c\x40\x30\x89\xc3\xf9\xe7\x87\xa5\xc1\xee\x82\xa5\x0b\xaf\x5a\xbe\x7c\x41\x7c\xba\x4d\x9e\x18\x5b\x9c\x12\x9b\x3a\x31\xc2\xf8\xce\xd1\x43\x75\x4e\x9c\x03\x7d\x84\xfc\x65\x46\x4f\x14\x4c\x5e\x12\x55\xc5\xcf\xb7\xdf\x8b\xd4\xd0\x04\xe8\xea\x9d\xa7\x14\x94\x03\xc4\xee\x1c\xf0\x85\x84\x6e\xc1\x53\xe6\x82\xb6\x71\x12\x17\xfe\x64\xdb\x38\x6d\x1f\xbb\xa4\xcc\x48\x9b\x2e\x41\xe6\xef\x4b\x4d\xf2\x42\x99\xf6\xc6\x57\xf5\xc9\x87\x55\x3c\x2b\xf1\x72\x0b\x2c\x34\xa3\x44\x67\x51\x77\xfa\xaf\xc0\x50\x36\x36\x12\x7c\x60\x89\x86\x0b\xeb\x81\x35\xd0\x9f\xb9\x7d\x51\x5b\xf4\xf0\x99\x1b\x24\x02\x84\xbf\x7e\xc9\x34\x96\x17\x51\x1d\x25\x29\xa5\xdb\x0c\x8e\x4a\xd7\xcc\x4e\x89\xff\x05\x37\xab\xb3\x30\x1c\xfa\x6a\x9f\x67\xe7\x97\x25\x69\x9e\x0a\x9b\x43\x7a\x79\xd7\x1b\xd8\x11\xb8\x9e\x46\x41\x53\x29\x86\x86\x8b\x77\xaa\x60\x5e\x0e\x68\x6c\x35\x7d\x68\x94\xaa\x7b\x3f\xd6\xb6\x64\xbe\x56\x36\x3d\x56\x40\xa5\x44\xb6\x31\x77\x61\x33\xa3\x70\x3d\xb3\x49\xbb\x26\xf0\xc5\x3b\x0c\xd8\x61\x80\x9c\x60\x2c\xfb\x6e\x91\x5e\xef\x30\x36\x6b\x08\x38\x44\xbc\x44\xa0\x72\xf0\x19\x9a\xe3\x05\xb7\x7c\x38\x9c\xa0\x90\x7e\xe1\x0d\x55\xa4\x3a\xcc\x05\x31\x57\x38\x67\x2e\xdf\x61\x0c\xec\x63\x47\xd5\x2b\xcf\x68\xf7\x1f\x14\xc4\xf2\x65\x8a\x7f\x53\xf7\xd9\xf2\x08\x84\x21\x48\xe6\x27\x9b\xe0\x15\x16\x96\xa0\x9d\x4c\x5b\x41\x35\xe0\xc9\xe4\x84\x29\x77\x58\xb2\x24\xc9\x6e\x5d\x88\xcd\x8c\x85\x81\xa0\x24\x30\x93\x8a\x39\xeb\xd4\xa1\x41\x7b\xd1\xc6\x21\x7c\x70\x75\xba\x3c\x01\xbf\x26\x41\x41\x59\xcf\x52\x0f\xf9\xc4\xbd\xf8\xda\x61\x00\x8d\xca\x8b\xd9\x1f\x3c\x87\xaf\x9d\x09\xee\x42\xab\x3a\xb3\xe8\x40\xfa\xee\x89\x6c\x29\x5d\xfd\xa6\xdc\xbb\xe0\xb2\x1d\x37\xb6\x17\xdf\x3b\x56\xad\x78\x41\x9a\xb4\x7d\xec\xfe\x53\x44\x4c\x17\x16\xda\xc4\x6a\xeb\x7b\x67\x77\xae\x94\xfc\x30\x41\x25\xda\x39\x7c\xed\x08\x96\xb5\x60\xaa\x89\x52\x93\xaf\x4e\xbc\xd8\x0c\x6c\x31\xe1\x08\x47\x7b\xf0\xe8\xde\x3f\x11\x51\x3c\xe8\x32\xeb\xe9\x71\x3d\xf7\x96\x82\x61\x4f\xeb\x8c\x2a\xfe\xab\xa6\x26\x6d\x21\x5b\xb4\x8d\xea\xf2\xcb\xae\x19\x6b\xa4\x07\x2e\x37\xc6\x88\xef\x1b\x90\xc4\x74\xc6\x34\xf5\xa0\xdc\x75\xc6\x6e\x77\x02\x8f\x06\x8e\xc4\xcb\x8f\x3d\x38\x5a\x51\xb1\xda\x16\x45\x6e\x71\xaf\x6c\xae\x0b\x5a\xa6\x16\x32\x07\x41\x8c\x7f\xbd\x0a\x92\xd1\xf3\x07\x12\x64\xee\xd6\x65\xe9\x28\xe1\x05\x25\x8f\x81\x96\x28\xc2\xb0\x57\x56\xd2\x07\x17\xf7\x4a\x5c\xb8\x53\xa6\xa6\x1e\xcd\xe1\xd7\x0c\x0d\x9d\xc0\xf6\x59\x23\x49\x84\x7e\xeb\x0e\xd3\x5a\xaf\x3d\x0c\x05\x28\xf2\x9b\xbb\xc7\x68\x07\x57\xbb\x94\x5d\x7e\x65\xa7\x4a\x42\x10\x82\x48\xe4\xf4\x26\x14\x07\x2f\x48\x8d\x76\x01\xc6\xa8\x25\x02\xfc\x28\x2e\x99\x45\x1d\x37\x75\x2c\x6b\x7b\x44\x6b\x47\x9e\xa3\x6d\x5c\x20\xd8\x67\x2e\x39\x6a\xe8\x4d\x70\xdb\xf7\x78\xd3\xd0\xae\x3c\x6e\xc0\x34\xca\x0a\xa6\x91\x1b\xb2\xd8\xa4\xdc\x7a\x2c\x3a\x74\xad\x98\xa5\x94\x99\xf1\xd8\x28\xbd\xc9\x50\x4d\x55\xd6\xdb\x34\xa3\xfd\x06\x82\xbe\x8a\xfd\xd9\x5f\x6e\x37\xb4\xf0\x7b\x7d\x41\xe2\x84\x66\x6c\x7a\x14\x65\x15\xe2\x5c\x7b\xfd\xb2\x36\x40\x00\xf1\x05\xe7\x0d\xdc\x89\x87\x37\xaa\x18\xe0\x04\x9e\xa4\xa3\x2f\x7c\xca\xe4\x61\xcc\x99\x83\x98\xe1\xcc\x82\xdd\x2a\x60\x37\x88\xb4\x1a\x0c\x3f\x35\x57\x5d\x31\x9c\x47\x10\x10\xc6\x9f\x88\xf9\x46\x82\x92\xe8\xd7\xba\xc3\x24\x57\xf2\x6b\x42\x6f\xac\xbe\x0d\x96\x41\xb2\xa9\x03\x4f\x68\xe2\x99\x78\x64\x80\x46\x19\xc0\x2a\x24\xb6\x3c\xfb\x83\xd1\x46\x35\x2f\xc5\xd6\x8a\xe1\x30\x05\xf4\x6c\x04\xd0\xbb\x5e\x25\x85\xfc\x48\x8f\xa4\x3f\x64\x86\x18\x7e\xf7\xb4\x52\xa1\x96\x64\x26\x67\xfe\x70\x28\x09\xa3\x14\xa0\x97\xd0\x33\xbe\xec\x59\xcd\x5a\x8a\x38\x0d\xd4\xe7\xfb\xee\x3c\xcd\x2a\x32\xca\xb5\x56\x18\xec\x15\x9f\x95\x28\x36\xb5\x72\x33\xdf\xd2\xf4\x89\x09\x73\x6d\xc4\x25\x64\x2e\x1a\x9d\x7e\x3b\xb5\xc0\x2d\x0b\x5a\x8e\xc9\x43\x57\xed\x32\x9b\x7b\x9e\x1f\x38\x14\x13\xd5\xcc\xd7\x9e\xc1\xe8\xbe\xb4\x63\x71\xc7\x75\x6d\x66\x66\xf9\x55\x2b\xcd\xa8\x23\x73\x1a\x35\xf9\xfe\xf3\x01\xc3\x09\xd5\x46\xe1\x8f\xd3\xe1\x2a\x72\x8b\xf6\x68\xf2\x8c\x2d\xc8\x21\x71\x7a\xf6\xce\x98\xf4\x17\x01\xf7\x0c\xa8\x5d\x56\xac\x0e\x76\xc9\xcb\x6d\x48\x73\xfc\x22\x38\x24\x9f\xf7\x75\x38\x77\x53\xe6\x00\x33\x0e\x0d\x89\x7f\xbd\x99\xf4\x34\xf6\x9c\xd4\x16\x5a\x1f\x15\x80\xc0\xfb\xe6\xba\x61\x5a\xeb\x58\x38\xa8\xcb\x9c\x39\x75\x22\xc6\x12\x58\x54\x34\xd0\x3a\xeb\x2d\x5c\x54\x57\x37\x89\x5b\xd7\xf3\x90\xb9\x06\xb0\xaa\xc1\x1a\x14\xbb\x44\x88\xaf\xb3\x34\x67\xb8\x28\x29\xb0\xa4\x82\xd7\xa4\xc7\xcd\x5e\x50\x53\x65\xc1\x5f\xde\x31\x5c\x2b\x8f\x44\x9d\xda\xa0\x0e\x92\x6b\x3d\x6b\xf8\x67\xb3\x4a\x85\x59\x81\x2d\x57\xb1\xf7\xb8\x86\xd1\xb1\x49\x13\x8d\x9c\xfa\x33\x62\x93\x8a\x55\x2e\xed\x81\x1b\xda\x3c\x58\xf7\x1f\xaf\x39\x00\xd6\x72\x11\x99\x05\xd7\xa3\x53\x2e\x06\x75\xa8\x4d\x36\x63\x4e\xa1\x18\xfe\x60\x44\x9b\x0a\xa2\xe5\x33\x8b\x4e\x01\xba\x59\xbe\x3c\xb5\xed\xf8\x6e\x42\xd1\xf5\xd4\x5c\x63\x2c\x53\xad\x4a\x2d\x72\x89\x43\xdb\x91\x95\x38\x57\x12\x28\x85\xcf\xf0\xd1\x4a\x3a\x4a\x75\x75\x74\xc9\xa8\x62\xbf\x9a\x7e\x22\x55\x8a\xcd\x26\x29\xb4\x95\x79\xf4\x9d\xa1\x1a\x50\xd9\x66\x25\x90\xf2\xbd\xb3\x89\x1b\x60\x01\x76\x89\xcc\x34\xb1\xe3\x65\x03\x5f\x43\xdc\x26\xf1\x3c\xe5\x48\xf7\x85\xfb\x13\xcb\x48\xae\x01\x42\xf2\xe7\xbf\x93\xde\xc8\x97\xce\x99\x2d\xd3\xb6\xfc\x27\xcf\x90\xe2\x49\xb4\x82\x3e\x14\x19\x6b\xbe\xd1\xa8\x85\x41\x18\x2a\x3f\x3d\x34\x31\x7d\xc3\x57\x74\xcc\x91\x79\x7a\xb0\xd3\x6c\xc7\x7a\x0d\x8d\xc4\xba\xa9\xa2\x71\xb4\xec\xc0\xab\xa1\x1e\x6a\xb1\x3f\x13\xce\x4d\x7f\x64\x8d\x01\xa3\xa8\x18\x3e\xb5\x4a\x55\x1c\x31\x09\xd1\xcc\xf8\xfe\xc5\x18\x7e\xd5\x78\x0f\x6d\x2a\x4c\x46\x66\xf6\x1d\x1a\x54\xb0\x1a\xef\x39\xaf\xdb\xa4\xa9\xb8\x55\xaf\x43\x36\x8e\xfb\xef\x31\x3d\xa6\x35\xf0\xf9\xbe\x7b\x4d\xe6\x60\x81\xb9\x56\x0d\x97\xf9\x27\x1e\x51\x6a\x02\x76\xf4\x3e\xf3\x17\x3d\x61\xba\xa7\xdb\x0d\x6c\xe0\x3e\xfd\x46\xca\x35\x96\x12\xc9\xd4\x59\xfa\x74\x7a\xd4\x0a\x42\xa2\x82\x78\x9e\x43\x5d\x19\xd3\x73\xc5\x57\x4d\xbb\x4c\xcf\x4b\x80\x3b\xd9\xdf\x1d\x55\xdc\x00\x56\x07\x01\x91\xe5\x46\x28\x48\x9c\x9f\xa1\xf2\x7d\xe1\x87\xe9\x1f\xd7\x5d\xde\x63\xd3\x72\x35\x4e\x71\xbe\xf7\xa0\x6e\x4d\x61\x13\x47\xa6\x57\xcf\x0d\x3c\x57\x27\x14\xea\x76\x79\x4d\x39\x2e\xad\xe1\xb0\x54\xe3\x86\x9d\x48\xbf\x6c\x9f\x37\x50\x14\xe8\xe3\x6f\x22\xf8\xeb\x46\xca\x61\x83\xc1\xad\xfc\xe1\x25\x4d\x9f\xc0\xaa\x71\x6e\x03\x19\x53\x50\x84\x72\x7d\xd0\x74\xeb\xa2\xc4\xaf\xc5\xaf\xf1\xf6\xc7\x4d\x36\x16\x48\x4c\xca\xa6\xdc\xa8\x19\x9a\x7b\x93\xef\x13\xab\x0e\xc4\xf3\x65\x5b\x46\xea\x7c\xe9\x94\x6c\xc6\x40\xe9\x47\x50\x03\xf7\xea\xfe\xfc\x90\xd9\xc3\xb5\x69\x81\x43\x5d\x6a\xd5\xa2\x9b\x9f\xa9\x61\x55\x24\x62\x18\xce\x84\xff\x3a\x39\x30\x49\xd0\x1b\x85\x62\x38\xe8\x0e\xc3\x72\x8f\xfa\x38\xf6\x44\xb8\xf9\x81\xd7\x35\x9c\xb3\x4f\x6c\x58\x35\x57\x69\x78\x21\xab\x83\x77\x44\x9f\x1c\x7e\x6f\x83\xd1\xb9\x16\x4e\x2b\x1e\x96\xbf\xbb\x43\x73\x3f\xd4\xb5\x1d\x7e\x6e\xb4\xd2\xa7\xcf\x9e\x06\x35\x30\x66\x0d\x27\x5c\x0d\xca\x44\x02\x57\xaa\xfa\xe4\x4e\x4c\x8d\xd1\xb8\x00\xc1\xc2\x28\x5e\x1d\xa6\xbb\x06\x47\x4f\x19\xb2\x89\x1b\x0d\x75\x98\x3a\xb3\xed\x38\xfc\x65\xcf\xe9\x33\x35\x44\x04\x4d\x3c\x01\x33\x3f\x7f\xc4\x90\x07\x65\x8d\x46\x8c\xe5\xfe\xd2\x6b\x26\x39\xae\x49\x6d\x99\xfc\xf5\x67\x2b\xfb\x4d\xae\x87\xc5\x5d\xcb\x0e\x20\x92\xc3\xa2\x39\xf3\x09\xfd\x68\x2d\x95\xa4\xa0\xe1\x9d\x23\x24\x32\x51\xd0\xde\xb6\x9c\x7a\xcc\x10\xdd\x42\x94\xf9\x54\x0a\x39\x87\x2b\xd7\x18\x73\x05\xc1\x1c\x9a\x20\xf9\xa2\x64\x7e\xf1\x46\x6d\x34\x4a\x98\x5b\x09\x60\x1e\x72\xf7\xb2\x84\xb8\x8e\xcb\x23\xcb\x07\x68\xce\x46\x5c\x38\xd1\x0e\x85\x59\xdf\x6b\x7b\xdb\x44\x3c\x91\x9a\x8f\xbb\x73\xef\x33\x1a\x09\xab\x52\x89\x11\x60\xb7\x1a\xe3\xc0\x1e\x26\x68\x0c\x07\x3e\x75\x30\xdd\xcb\x6a\x11\xb7\x4e\xf1\xa7\xe6\x9d\x1f\x34\x42\x8d\x25\x02\x8b\xc9\xa9\x68\x7f\xfe\xaa\x6b\x54\x23\xa9\x3b\x48\x31\x7b\xfe\x60\x10\xe3\xa7\x77\x2a\x8a\x75\x7f\xe6\xd2\xfd\x43\x74\xac\x65\x19\xfa\xb2\x4d\x63\x02\xe3\xd7\xa8\xa0\x30\xc0\x09\x8f\x75\x19\xf0\x5a\xc9\xfa\x8b\x4a\xd5\x03\x67\x26\x00\x4b\xe2\x22\xe2\xee\x91\x89\x09\x76\x91\x0a\xf3\x18\x0d\x2f\x5d\x34\xda\x2c\x0b\xbb\xa9\xe5\xcb\xc6\x6d\xe6\xe3\x47\x14\x41\xa5\x87\xda\x76\xa2\x67\x20\x5f\xd4\xff\x87\x4b\x17\x3c\x64\x3a\xdb\x48\x40\x86\xe0\x8f\x47\x69\x5d\x2e\xfa\xf0\xb3\x0f\x0f\x55\x7a\x3f\xf5\xf8\x2c\xfa\xf6\x11\x2c\xf1\x63\x87\x21\xa8\xa5\xec\x44\x37\x00\x24\xd4\x7d\x0a\xce\xed\x3f\xda\xa2\xcb\xb5\x48\x38\xbc\x26\x98\xff\x60\x4a\x19\xba\xea\xa2\xfd\x43\xee\x77\x5b\x07\xc9\x37\x54\x96\x8e\x55\x1d\x9a\xab\x62\x09\x59\x69\xaa\xc7\x7b\x5f\xdf\xf9\x06\xfb\x5e\xb8\x89\xd0\x75\xbe\xdc\xab\xf2\x96\x16\x17\x41\x09\x10\xf2\x67\x0c\x31\xf2\x3f\xea\xf2\xc0\xb5\xe4\x22\x0d\x2b\x28\x06\x56\xb8\x96\x3a\x0d\x37\x55\x18\x3e\xf4\xba\xc9\x8b\xac\x56\x41\x22\x39\xee\x55\x9e\xb1\x39\xfd\xb2\x5c\x2e\x1c\x00\xdf\xc2\x60\x2f\xff\x89\x7d\x78\x6f\x37\x32\xb7\x0a\x17\x98\xfb\xc4\x93\x86\xc8\x21\xa2\x45\x15\x6a\x2b\xfb\xc5\x65\xba\xb2\xa4\x74\x16\xcb\x05\x0b\x8d\x66\x01\xeb\x45\x67\x56\xb9\xcf\x36\x74\x99\x4c\xe9\x8a\xdf\x43\x84\x94\x01\x7a\xec\x48\xba\xee\x88\x59\xf8\xa7\xc3\xf4\x66\x9c\xf5\x09\x74\xa5\xce\x6b\xf1\x61\xf7\x51\xa1\xc6\x5e\xbc\x8c\x31\xf4\xf9\x37\x8c\x76\x2c\x71\xeb\x30\x0a\x0c\x7f\x3c\x32\xfd\x5c\xb8\x65\x05\x0d\x16\x6f\xf1\x8c\x7b\xe2\x12\x63\x8b\xd7\x78\xdc\xa1\x49\xe7\x94\x8f\x9e\x32\xcd\xf5\xea\xd4\x6e\xc5\xf9\xce\x39\x53\xcf\x4d\xba\x70\xa9\x65\x92\xc9\x0d\x1c\xa2\x83\xd2\xab\xb4\x50\x0c\xbf\xf1\xa6\x5a\x1c\xa5\x96\xa4\x7f\xe4\xbe\x39\x6f\x94\xc6\x2c\xe3\xa2\xaa\xba\x41\xe1\x77\x37\xa7\x13\x72\xf7\x52\x59\x5f\x3e\xfd\x4e\x92\xc5\xcc\xe9\x02\x2b\xd0\x29\x27\x35\x75\xed\x72\x93\x79\xe8\x90\x55\x5a\x2e\x49\xea\xdc\x69\xd8\x51\x96\x1f\xee\xdc\x68\x9a\x48\xc9\x1e\x4a\x62\xee\xfd\x8a\xad\x2d\xf1\x40\x54\x88\x45\x0b\x3e\x07\x23\xab\x62\x7f\xee\xf2\x46\xfa\xa1\x77\xcd\x88\xa5\x21\x06\x4e\x30\x73\x5c\x7a\x5b\xc0\x62\x70\x63\xe6\x81\xe7\x35\x0f\xbb\x7a\xa1\x18\xde\x61\x64\x56\x5e\xcb\x69\xd4\xb8\xcb\x2c\xd9\x13\x9d\x33\x20\xd6\xe3\x71\x88\xc0\x0c\xa4\xb1\x3e\x2d\xac\xeb\xd5\xb9\xe0\x56\xad\xce\xdc\x54\xb7\x26\xfc\xfd\x21\x75\xb0\x07\xa2\xaa\xd0\x0d\x63\xd7\x9b\xed\xb5\x72\x39\xb6\x01\xc8\xbe\x6e\xa4\x5f\x16\x71\x70\x01\xe7\x96\x6c\x9a\x60\x3c\x34\xd1\xe8\x40\xbd\x37\xc3\x9b\xc7\xf0\xa4\x85\x08\x87\xcd\xbb\xf7\x5d\x67\x6c\x3d\x9b\x5a\xbe\x60\x56\xf4\x84\x00\x88\xb2\x7f\x30\xf6\x80\xab\x1c\xc6\x79\xd9\x77\x36\xa9\x9d\xa8\x95\xc9\x2f\x69\x09\x94\xe3\x44\x07\x6e\xf4\xa2\x5f\x3f\x43\x53\xc5\x54\x40\x90\x70\xf2\xe0\x36\xc5\x29\x01\x42\x38\x70\x44\x0d\x30\x01\xa7\x41\x03\x80\x19\xa0\x7e\xd9\x9f\x9f\x26\x30\x32\x15\x2f\xbd\x9e\x12\xa1\xcb\x41\x3e\x33\x59\xad\xef\x12\xf7\x6b\x90\xc3\x7d\xf1\x41\x23\xf9\x60\xd5\xaa\xaa\xbe\xf6\xad\xc2\x0f\xbb\xaa\xec\x70\xb7\xac\xb9\xb0\xe4\xbb\xee\xd5\x48\x5e\x51\x16\x73\xde\x76\x5d\x82\xce\x46\x19\xeb\xfc\x26\xa3\x5c\xb0\xb8\xe7\xcb\x5e\xe5\x7e\x03\xdc\x30\x6d\xf6\xb4\x58\xec\xee\xea\x4d\xc6\x5f\x11\xdb\x46\x3f\x96\xec\x91\xfb\x0c\x88\x0f\x71\x29\xee\x82\x98\xed\x3c\xf6\x1c\xbd\xd7\x48\x0a\xc5\xf0\xed\x55\xda\xac\x13\xdc\x6c\x41\x64\x69\x8c\xee\x3b\x10\xd8\x76\x09\x95\xd9\xb3\x27\x6a\x46\x04\xb7\x88\xef\x6b\xe3\xae\xec\xf7\x96\x69\x3b\x19\xe6\x73\xff\x6f\xc7\x48\xad\xb0\x4b\x08\x41\x85\x62\x38\xf1\x71\xcd\x88\xae\x57\xe6\x6d\xd1\x9a\xb8\xee\x5e\xdc\xe5\x30\x07\x07\x98\xd8\x23\x86\xc0\x1a\x18\x12\x13\xb7\x5c\x20\x60\x50\x2c\x67\xdb\xe7\xbe\x83\xc4\xc6\x69\x97\xcf\x80\xf2\x75\x84\xea\x17\x4c\xef\x2c\x14\xc3\xcb\x95\x71\x2c\xbf\x34\x5a\xa2\xbf\x2a\x29\x84\x85\x0f\x57\xfb\xe7\x3d\x78\x18\x5f\xc3\x5d\xa2\x01\x5e\xf3\x05\x8d\x62\x0a\x8a\x56\x51\x16\xd9\x39\x42\x4b\x85\xe5\xc8\x1c\xe6\xe5\xc7\x74\x72\x09\xa5\xae\x7c\x7c\x99\xd7\x6d\xa9\x4c\x01\x62\x11\xa8\x6f\x31\xb9\x4d\x00\x6e\x7a\xfc\x30\xff\xdf\x8c\x34\x40\xef\x13\x53\xd6\xae\x8d\x3e\xe6\x87\x3b\x8c\xd6\x18\x89\x21\x99\x28\x20\x5e\xec\xcf\x7c\x63\x8f\xca\x6b\x6c\x4a\x0b\xf5\x56\xa0\xc9\x38\x85\x6f\xf5\x69\x05\xa9\x08\x1c\x47\x62\x0d\x6e\x7c\x1a\x3d\x96\x16\xf8\x35\x9b\xfa\xac\x5d\xf3\x65\xf8\xe3\x86\xe9\x61\x50\x8f\x4d\xf0\x87\xbd\x69\x98\x08\x71\x1b\x2a\xfb\x43\x0f\x9f\xd7\x5e\xb8\x61\x5d\x3c\x6c\xab\xc6\x69\xa1\xc4\x0f\x62\xfd\x8d\xf2\x44\x8d\x0a\xef\xab\xea\xe3\x9b\x0f\x29\x33\x25\x62\x13\xaf\x4e\xf4\x82\x33\xbb\xf0\x0d\x73\xc7\xa2\xb5\x2c\x5c\xc7\xc1\xae\x91\x1a\x6b\x28\x10\x85\x0a\xab\xf8\x35\x38\xb4\xfe\x3a\x56\xed\x58\x1f\x5a\x1f\xf3\xf6\x62\xf0\xba\x46\xba\x9a\x5f\xdd\x4c\x7f\x72\x09\x06\xd1\x92\xa8\x91\x7b\xc1\x90\x71\x73\x89\x93\xc8\x91\xe4\x86\x18\xa2\x6b\xc4\x29\x05\xb6\x6c\xa6\x43\x9c\xfe\xc6\x19\xc9\xb2\xb4\xca\x85\xe8\xdb\x56\x6f\x33\x38\xb9\x9a\x9e\x26\x16\x36\xff\x67\x8f\x39\xd3\xb7\xa3\x02\x16\xab\xa6\x3d\x7d\x6d\x9d\xa3\x32\x2b\x13\x9f\xc6\xae\xbe\xaf\xf6\xca\x75\x88\xf1\x11\x3e\xb1\x66\xd4\xd7\x4d\x0e\x02\x48\x3d\xd0\x0a\xfc\xc1\x38\x13\x73\x9f\x90\x92\xf3\xef\x5b\x69\x38\xa2\x76\xc9\x08\xf9\x8f\x93\x29\xd6\x5a\x25\x69\x19\xe4\xfe\xb6\xe8\x02\xad\xed\x27\xdc\xe8\xc0\xee\xd3\xd1\x7e\x07\xd3\xb0\xa2\x12\xf5\xe5\x81\x98\x5e\x8d\xdf\xd8\xae\x79\xe8\x13\x47\x1a\x04\x64\x7f\x66\xe8\xdc\x38\x81\x67\x33\x47\xde\x4b\x76\xc3\xfa\xf4\xee\xa9\x10\xcf\x2f\x54\x05\xef\x89\x5e\x19\x1e\xd5\xeb\xee\xc0\x01\x5f\x25\xb0\xed\x28\xd6\x40\xa1\x91\x5b\x75\xdc\xd0\xca\x74\xcb\x51\x2a\xa4\xb4\x93\x1e\x36\x84\x43\x1d\xea\x62\x29\x81\xab\xfd\xdf\xf6\x9c\xd7\x16\xf0\x3d\xa9\x19\x37\x60\xa1\x92\x07\x65\xd5\x42\x31\xbc\x6d\xb7\x0a\xcc\x82\x36\x04\x27\xd8\x70\xf8\xec\xb6\x8b\x8d\x0c\xce\x73\x99\x55\x0b\x74\xea\x5d\xf8\x8b\x7b\x93\x92\xc8\x67\x6d\x8f\x2d\x73\xf5\x51\xed\xb1\x51\x3f\x8e\x4e\xef\xed\x93\x8a\x29\xb2\x88\x46\xe4\xda\xe3\x2f\x69\x47\xa3\x4d\x65\xe3\x7f\xae\xec\x8f\xd8\x34\x8a\x85\xe1\x8f\xb1\xff\x5c\x58\xcc\x85\xc3\xbd\xb6\x11\x62\xee\x95\x7d\x26\x57\xb0\x17\xbd\x2e\xe2\xf8\xfa\xb1\x0d\x8a\xc3\xce\x03\x59\x4e\x4f\x79\x0d\x1b\x10\x57\xdf\x86\x56\x55\x70\x88\xb9\xf7\x29\x15\x89\xae\x02\xc0\xec\xb3\x13\x8d\x4c\x4d\x10\xf0\x4a\x96\x7f\xf1\xad\x97\xda\x8c\x19\xfd\x04\x96\xbc\xc4\xd7\xd8\xfc\x70\x98\x15\x4a\x5c\xc0\x8f\x5e\x33\x64\x5c\x1a\xc4\xf3\x40\x52\x2f\x6e\x73\x9e\xff\x88\x29\x4f\x03\x43\x1e\xa9\x0c\xb9\xe7\xb5\x74\xf4\x9e\x8b\xd1\x3b\x7b\x7d\x87\x66\xdc\x25\xf5\x7c\x54\x41\x36\xea\x88\x5e\xaf\xc4\x22\x6e\x8f\xad\xd4\x8e\xca\xd8\x3f\x0d\xb0\xc1\x5b\x55\x12\xde\xc3\x6c\xec\xd0\x67\xf2\xe3\xd5\xa4\x3f\x70\x01\x8a\x2e\xeb\x8e\x05\x2f\xa4\x2f\xea\xe3\xb2\xe3\xfd\x95\x83\xe7\xc8\x73\x38\x11\x67\xc8\x1c\x7a\x2b\x41\x1b\x56\x75\xa1\x92\xec\x13\xa7\x4c\xf3\x6c\xbb\xa1\xd4\x6d\x7e\x7e\xd6\x58\xb3\x3c\xac\x1a\xe3\xe2\xbb\x1f\x56\x03\x53\xbf\xd6\x0e\x2d\xc9\xbe\x3d\xdf\xdc\x49\xbd\x68\xe8\x2e\x35\x4e\xbf\x33\xce\x20\x54\x73\x3f\x86\x86\x35\xba\x75\x75\x16\xdf\x97\xa6\x21\x0f\x4c\x50\x07\x38\xb5\x41\x0a\x72\xd4\x3e\x89\xea\x40\xd0\xa3\x0e\x78\x6c\x9a\x08\xcf\x06\x15\x12\x3b\x9e\x2d\x76\x9a\xd3\x51\x82\x56\x19\x89\x50\xe1\x84\x55\xc9\x83\x13\x4c\xa5\x99\x61\x76\x93\x02\x07\xf2\x2a\x77\x59\x5b\xcf\xff\x3b\x86\x56\x9d\x43\x3d\x8f\x54\x25\xd8\x37\x63\x8d\x4d\xb7\x72\xa4\x72\x08\x1a\x09\x18\x33\xfb\xbb\x34\x5f\x2e\x22\x88\x6d\x53\x78\xab\xe1\x77\x0f\x1a\xe8\xfe\xc0\x8f\xce\xc8\x86\x97\x54\x0d\x06\x5e\xc6\x17\xc4\x8a\x65\x9d\xc2\xb3\x96\x6a\x2d\xc9\x1a\xa3\x15\x98\x7f\xe7\xf7\x6a\x50\x6a\x0a\x1d\x94\x42\x31\xcc\x9a\x53\x64\x1e\x25\xb8\xba\x5e\xc9\xd9\x5b\x0d\x1c\x35\xfa\xc6\x4b\x9d\xbb\xbf\x0f\x50\xd9\x6a\x89\x41\x89\x9c\xf9\xc9\xdc\x36\x39\x42\x54\xd1\x29\xf6\x67\xae\x1c\x66\x02\x8b\x60\x82\x87\x41\xff\xd8\xab\xc6\xec\xa6\xb3\x73\x26\xa2\x6c\xe7\xef\x48\xe3\x02\x4a\xa4\x05\xcd\x96\x14\xd5\xfd\xad\x71\xe9\x35\x1d\xb8\x9a\x6a\x26\x74\x3d\xbe\x61\x0c\x5d\x9a\xcc\x23\xe8\xc7\x4c\x34\x27\xf4\x86\xd7\xb2\x6a\xe0\x28\x07\xdc\x93\xf0\x40\x67\xba\x10\x6b\x70\x2f\x68\x12\xbb\x15\xd4\xd3\x78\xfa\xdc\x65\x1a\xb8\xc4\xa3\x16\x77\xdb\x6b\xfb\xd1\x4b\x8c\xfb\xb7\x01\xb3\x86\x0f\x67\x81\x42\x0e\xdb\x54\x17\x5a\xc9\x98\x70\x2c\xdb\xe6\x3d\x31\x0b\x65\xc7\xb3\xa3\xcd\xb5\xe0\x7a\x15\x2a\x64\x66\xc3\xf7\xaa\x73\x04\xf0\x5d\x18\x37\x1a\xab\x62\xdc\x86\x6c\x72\xc5\xcc\xf8\x25\x43\xf4\xc5\x23\xe5\x1f\xb7\x62\xc6\x79\xe3\xff\x22\xfd\x98\xbf\x77\x98\xa6\x27\x55\xe3\xdc\x97\x88\xcf\xec\xb0\x9d\xa9\x3e\xad\x4d\x7c\x2a\x8d\xac\x7f\x79\x3c\xee\x12\x80\x1f\x34\x80\xe4\x46\xab\x5c\xbd\xcc\x68\x35\x51\xc2\x59\x39\xbf\x0d\x0d\xef\x7a\xd4\xc6\x0d\xf7\xb9\x3b\xd2\x0b\xb4\x87\xf3\xb2\x08\x2a\x15\x5c\x39\x23\x7a\x93\x33\x7b\x7a\x01\x8a\xb3\xde\x3b\x8c\x51\x93\x20\x4d\x39\x14\x0b\xdd\xd9\x6d\x5c\xfa\x6a\xa2\x0e\xfe\xbd\x0d\x06\x0e\x9b\xbb\xb4\x05\xcd\xf8\x32\x1e\x29\x53\x0b\xc5\xf0\x5f\xf7\x9d\xce\x0f\x1e\x5b\xe1\xef\xdf\x85\x07\xf2\xd5\x2e\xaa\x89\x65\xe6\x1b\xee\x4e\x81\x2b\x61\x71\x90\x8a\xec\x5a\x6c\x0e\x53\xb0\xaf\x0e\x75\xe4\x77\x36\xa9\x13\xbf\x62\x13\xb4\xe2\xbc\x62\xf2\x79\x9a\x3a\xdb\x6c\x1d\x04\x6e\x19\xb3\x8d\x32\xf3\x70\x8e\x0c\x5b\x2f\x9f\x79\x55\x45\x07\x0e\x6e\x5d\xd1\xca\x9f\xa1\x55\x20\x3e\x87\x91\x07\x4c\x93\x2e\x53\x14\xb0\x6a\xa0\x69\x0f\xe5\xaf\xcb\x9a\x24\x57\xd7\x8d\xbf\x23\x77\xdf\x41\x83\xe4\x4a\x9d\x06\x17\x44\xc4\x03\xfc\x25\xcf\x6a\xf2\x8f\xdc\x21\x2e\x68\x7d\x64\x6e\x7c\xf7\x12\xf3\xca\x5d\x0a\xdd\x46\x73\x73\xfd\xe8\x88\x41\x09\xe7\xd5\x2a\xe3\x29\xfd\xae\x4c\x4e\xad\x07\x5e\x89\x22\xe0\x77\x3a\x0d\x44\x85\x08\x3c\xe9\x5d\x7a\x78\xb4\x89\x9f\x73\x1c\xe6\xfb\x54\x36\x68\x1e\xdc\xa2\x69\x54\x29\xa5\x64\xf5\x05\x85\x32\x34\x0a\xd6\x6b\x73\x84\x18\x98\x01\x1d\xb5\x57\xde\xd3\xd0\x0e\x36\xe7\x65\x29\x38\x9e\x9d\xd2\x8d\xa3\xed\x0a\x13\x9e\x5f\x68\xd8\x04\x9a\xd0\xb9\xef\x35\xd2\xd7\x63\x73\x52\x46\x0c\x25\x0c\xb0\x7f\xf4\x20\x66\x62\xcc\xf5\xa9\xe7\xa3\x2f\x41\xfe\x23\x77\x99\xd6\x18\xbe\x6f\x4b\xf8\x05\x0a\xf3\xc7\x81\x00\x84\xf9\x50\xa6\x31\xfa\xb2\xdb\x42\xf3\x55\xfa\x2e\xf5\x24\xa3\xe5\xf8\x06\x95\x90\x4d\x9f\x9e\x52\xcb\x9c\x32\x11\x85\x6d\x6e\x72\x59\x93\x0a\x8f\xf9\xad\xb6\xf7\xf4\xdd\x33\xcc\xc3\xb9\x1a\xd8\xc8\x8c\xc3\xd4\x21\xff\xf9\xaf\xe3\x87\x2c\x57\xae\xc9\x66\xb6\xba\xff\x2d\x0d\xd5\xc9\xaa\xcc\xc7\xb0\xb2\xea\xe5\x36\x5d\x16\x2f\x70\x48\xc9\x4e\x06\x70\x9f\x50\xdd\x8f\xd9\x9d\x85\x42\x31\xfc\xc7\x56\x25\x74\xe2\x29\x65\x8d\x70\xdb\x9b\x43\x74\xd0\x32\x18\x0a\x8e\x3d\xa0\x9c\x59\xdb\xe1\x00\xb9\xcf\x8f\x36\xdc\x05\x48\x23\xb1\xc1\xcf\xfc\x60\x97\x31\x00\xa2\xf1\x30\x3e\xfc\xf4\x30\x95\xf8\xcc\xe9\x04\x5e\x6a\x6e\xe0\x09\x65\xdc\xc7\x1b\x54\x48\x6f\x54\x33\x89\x98\xd5\xa9\x5d\x25\x65\x48\x68\xfc\x82\x26\xb3\xe1\x10\x86\xa2\xb2\x5b\x34\xe9\xc6\xae\xd9\x0c\x62\xe1\xc1\xd1\xe6\x96\xa4\x82\xf9\x2d\xd9\xe2\x2a\x2d\x53\x59\xb0\x67\x73\xdf\x65\x9a\x3b\xde\xaa\x51\x08\x7a\x5b\xaa\xf5\x8b\x94\x78\x8c\x61\x7e\xe4\x05\x1e\x31\xcc\xd0\xb2\x8f\xe6\x95\xc3\x6c\x93\xdb\x81\xeb\xd3\x76\x25\xec\xdc\xb5\x2f\xa5\x8f\xfe\x8a\x20\x6e\xbd\x12\x08\x5f\x63\x6a\xe5\xee\x3a\xeb\x3c\xa3\x2e\x66\x56\x1c\x75\xf7\x3e\xad\x25\xeb\x20\xb3\x5e\x28\x86\x47\xd6\x28\xb0\x5f\x99\xba\x81\x2b\xad\xdd\xa2\x07\xbf\xf8\x2c\x95\xae\x33\xa9\x34\x19\xde\xb2\x3e\x1d\xfc\x99\xeb\xf9\xd1\xb2\x94\xc9\x9f\x6c\xaf\x10\xa9\xed\xbc\xc0\x6d\xf9\x35\xd9\xae\x19\xf0\x9c\x66\xe6\xdb\xd6\xac\xc9\x8c\xd8\x89\xe7\xa0\x94\xf2\x8f\x8e\x90\x57\x0c\xdb\x25\x5a\x76\xa9\x97\x58\x24\x64\xfe\xaa\xc9\x5e\x3b\xa4\x81\x43\x96\xfb\x26\xa9\x58\xd2\x20\x76\x12\x00\xb2\x1b\xfd\x61\x72\x2b\xb9\x9a\x88\x4f\x36\x7f\x58\x7d\x48\x4f\x8d\x60\x7b\x61\xc6\xb3\x12\xec\x52\xa5\xa7\xb1\xb4\xcc\xfd\xe5\xb0\xd6\xef\x75\x1a\x41\x59\x9a\x5f\xe5\xfe\xb0\x4c\xfd\x60\xc6\xcc\x38\xf7\x29\xf6\xe7\x9d\x95\x63\xcc\xf3\xd4\xa7\x5e\x14\xbb\xa5\xee\xdd\xc8\x5e\x2d\x71\x20\x36\x77\xa2\x6a\xaa\x50\x0c\xe7\xdf\x9c\x94\x9a\x55\x9a\xa8\x7d\xfe\xfe\x88\xae\xf8\xe3\x79\x34\xf0\xa8\xd7\x11\x8b\xa9\x7d\xc8\x1c\x56\x26\xf2\xbe\x99\x1b\x0f\xe8\x24\x92\xb2\xe0\x50\x4c\xe7\x7e\xbb\xdf\x98\xd3\x07\x7e\xe0\xa0\x72\x4e\xf6\xa9\x2e\x0d\x21\x45\x5c\xe2\x33\x0b\x65\x34\x46\xa8\xb8\x53\x97\xd3\xb3\x62\x7f\xe6\xa1\x23\x26\x8d\x84\x54\x8d\xfc\xf4\xed\xb1\x43\xb5\x6e\x81\xcd\x68\xa5\x50\x0c\xdf\x3e\xae\xbd\x07\xe2\x43\xec\xcd\xce\x3c\xa2\xf1\xa4\x34\xd9\x94\xdc\x66\xcd\x8f\x9e\xb9\x82\x13\x1c\x4a\xbd\xf6\xec\x40\x55\x05\x15\x8a\xe1\x3f\xf5\x9d\x93\xbc\x58\x14\xc3\x0f\x9f\xdc\x7c\x7e\x2c\x1e\x79\xb5\x29\x27\x10\x0e\x1f\x36\x54\x8d\x49\xa4\x48\x52\xf8\xc5\x13\xda\x58\x9e\x08\x09\x27\xcc\x5d\x3c\x77\xb4\xc2\xef\xb4\x1b\x42\x6f\xdd\x6a\xc8\x93\xb1\x26\x45\x94\x7f\xf8\xc6\xbc\x61\x5a\xc1\x0b\x06\xc5\x51\x76\x6d\x0c\x2a\xa3\x13\xd2\x27\x2c\x99\x0d\xde\x7c\x6c\x64\x8a\x35\xea\xd9\xac\x2c\x0b\xee\x7d\x7b\x93\xcb\x26\xcd\x58\x75\x2c\xf3\xdb\x71\xea\x0f\x1c\xee\x46\xc5\x07\x38\x9e\x16\xfb\x33\x53\xcb\x5a\x85\x2e\x21\xbe\xf0\x52\x3f\xad\x8d\xcd\x7b\x6a\x54\xb7\x88\xe2\xf3\x55\x65\xd0\x22\x9e\x2f\xfa\x6a\xd4\x29\x79\xf5\x56\xa1\x18\x36\x0f\x4b\x8c\xb9\x13\xe5\x4b\x92\xa9\x95\xbf\x65\x69\xfa\x8e\x12\x7f\x7c\x4c\xeb\x2c\xa3\x05\x5b\xaf\xe2\x68\x20\xf3\xab\x09\xa6\x8f\x3b\xf3\x38\x5a\x22\x87\x1f\xdc\x6e\x60\x67\x78\x89\xca\x10\x58\x0c\x47\x1b\xe6\x75\x16\xb1\x59\x85\x0b\x37\x51\xa5\x80\x18\x79\x4f\xed\x62\xa3\xf8\xb1\x3d\x62\x99\x35\xcc\xfd\x0f\x27\x87\xa1\xcb\x55\x73\x3d\xbc\x5b\x5b\x0d\x92\x9d\x51\x28\x86\xb3\xee\xd3\x06\x43\x7d\xe0\xb7\x42\x0a\xc5\xf0\xb2\x23\x9a\x68\x48\x60\x37\x64\xcf\x3d\x77\x2a\x3f\x5c\x1b\x26\x34\x6c\x66\x31\x68\xe4\x8e\x5b\xa5\x5a\x8d\x9c\x7a\x3e\xa8\x66\x6a\xc3\x9a\xc1\x6b\xd3\x85\xe1\xb4\x39\xd3\xa7\x63\x7a\x7f\xd7\x61\xdd\x07\x41\x08\xea\x35\xb8\x8b\x42\x2e\xc5\x70\x39\x0a\x3c\x47\x7f\x71\xcd\x35\xaa\xf1\xf6\xab\x53\x67\x27\x62\x13\x51\xb9\xbc\x65\xb8\x5e\xf1\x34\x1a\xb4\x07\x78\x9c\xef\x7b\x4e\xab\x84\x38\x7a\x3a\x67\xff\xf8\x58\xfa\x21\x96\x49\x50\xad\x81\x70\x34\x73\x0b\x36\xe9\xc1\xf4\xe8\xaf\xeb\xd4\x7d\x56\x04\x75\xfb\x18\xaa\xa2\x04\x23\x4c\x91\x27\x8f\x45\x49\x15\x52\xb3\xab\x85\x62\xf8\xbb\xb2\xa9\x92\xd1\x1d\x78\xd2\xbd\x20\xbc\x68\xec\x79\x5a\xac\x48\xb7\xa4\x16\x6b\x5d\xd6\x0a\x83\x6b\x82\x32\x6f\xaa\x3a\xfc\x7c\xda\x4b\x2c\x38\xd7\x9f\x5a\xa3\x44\x7b\x03\x9d\x9a\x38\xfe\xa0\xca\x11\x10\x7c\x18\x3e\x70\x9f\x66\x49\xcd\x2b\x3e\x75\xe5\xee\xbb\xaf\x63\x84\x5a\xa9\x29\xd7\x06\x43\x75\xbb\xd1\x51\xed\x20\x09\xed\xec\x7b\x6b\x55\x91\xdc\x24\x76\x70\x1a\xcf\xb4\x9f\xbe\x6b\x8c\x8b\x89\xeb\x07\xba\x7c\x54\xee\xdb\x46\xb7\x10\xa7\xf0\xd2\x0b\x73\xf7\x2e\x3d\xdf\x16\x75\x0a\x79\x45\xb1\x3f\x7f\x86\x31\x18\xa3\x0e\x93\x30\x04\x51\x82\x5f\xb8\xea\x94\x29\x8f\xc0\x9a\xcc\xa6\xf1\xf1\x9e\xdd\xb1\xd5\xd4\xf4\xf3\x70\x86\x0d\x79\xc3\x98\x33\x4d\xdd\x2b\xb7\xc2\x84\x83\x13\x1f\xd9\xb8\x39\xf6\xf5\xf4\x4a\xee\x0e\x04\x1a\xf5\x67\xaf\x9d\xdc\x66\xf2\x64\x73\x68\x1d\xc9\xf9\xc5\x7b\x9b\x65\x3b\x97\x78\x20\xbb\xf9\x4f\x4a\x51\xb4\x44\x9b\x71\xef\xf0\x17\x1a\x13\xde\x17\x20\xc5\x99\xd9\xf3\xa2\x56\x58\xd1\x12\x97\xa8\xd2\x37\x3a\x93\x81\x4a\x0d\x4a\x97\x1d\x5f\xd7\xcd\xbf\xc0\x38\x49\x05\x80\xa7\xef\xbb\x80\xba\x20\xb1\x6a\x33\xcf\x2f\xac\x10\x81\x8e\x3e\x08\x89\xc0\x23\x67\xd1\xd5\xd7\x5d\x1d\x5f\xcb\xd3\x47\x0d\x01\x04\x9b\x59\x52\x29\x2d\x33\x76\xbe\x86\x1d\x90\xfe\xbe\xd1\xbf\xd7\x1f\x33\x93\x64\x52\x8f\xa1\xa3\x8b\x4e\x0e\xd3\xe1\x8d\x1e\x8a\xd3\x7c\x7d\xd4\x79\x46\x1a\x49\x04\x93\x2a\xbf\x6f\xef\x55\x01\x3f\x11\x10\x8b\x7e\x90\x7b\x08\xc1\x65\x8b\x82\x36\xd9\xbb\x70\xfb\x01\x0d\x03\xcd\x90\xd4\xfd\x29\x13\x25\x6f\x13\x18\x56\xc0\x28\xc7\x3f\x26\xed\xe5\x04\x6f\x70\x8f\xa0\xfb\xfb\xee\xc5\x09\x0f\xa1\x42\x9c\x14\x81\xe5\x0b\x4f\x9a\xfa\xee\xc4\xa2\x30\x33\x0a\xff\x74\x86\x59\xf3\x7b\x4c\x20\x6d\x3d\x7c\xf0\x8d\x0f\xb4\x9d\x2b\xb4\x17\xac\x2a\x88\x9f\x08\x4f\xf6\xe7\x0e\xf8\x5a\x73\xd5\xef\x88\x8f\xf3\x93\x9a\x70\x3c\x71\xeb\x22\x68\xf8\x16\x42\xed\xb2\x47\xbb\x35\xc4\x7b\x22\x81\x35\x62\x43\x7a\x1b\x76\xf3\x40\xb8\x24\x7a\xfb\x58\x4a\x85\x0b\xb4\xf9\xbf\x4f\xad\x9a\x2b\x3d\x1d\xf3\x2b\xba\xda\x1c\x1b\x48\x95\x0a\x0c\x8e\x8f\xda\x6a\x36\x30\xab\xd0\x05\xb3\x81\xed\xa3\x35\xe8\x75\xbb\x23\xcd\x06\xd5\x29\x6f\x70\xe1\x0b\xd2\x92\x33\xaa\x7f\x98\x74\x08\x1e\x0b\x58\x64\xbe\x3c\x56\x72\xcf\x79\x15\xfa\x9f\xbd\xb6\x0e\x70\x83\xa3\x3a\xfc\xfd\x73\x06\xc9\x8f\x88\xb2\x42\xda\xfc\xcd\x00\xec\x59\x0c\xf0\xe2\x70\x56\x8f\x7b\x10\xa9\x5b\x8b\xa8\xc3\x2d\x41\x74\x20\x67\xbe\x31\x78\xa4\xd6\xee\xb7\x6a\xcc\x27\x71\x77\x6d\xfc\x76\xb3\x0b\x23\xa8\xe5\xc7\x32\x60\xd9\xeb\x9f\x1b\xac\x21\x1c\x7a\xa3\x7f\xfa\xd0\xba\x8b\xcd\xa0\x82\x26\x6b\xd1\xb9\x91\xbc\xf2\xbf\x3d\x8e\x5d\xf2\x15\x5e\x93\xa6\x1c\x2e\x73\x47\x8e\xa7\x6f\xa2\x9b\x24\x0c\xe0\xcc\xd5\x7d\x6d\xf6\x3a\xae\xd2\xff\xcf\x8f\x43\xec\x03\xe0\x78\xa8\xcf\x7c\xd6\xa4\x2e\x08\xe6\x84\xff\xf2\xb0\x79\x4a\x81\xd6\xbc\x2c\x82\x86\x3f\x3e\xd6\xc8\xaa\x3d\x5f\x28\x55\xe7\x28\x91\x7f\xe7\x15\x54\x5a\x28\xda\xac\x99\x42\x9f\x7d\x66\x37\x66\x54\xa4\xc4\xd1\xa9\x11\x1a\x25\x64\x47\x0a\x68\x44\x5c\x34\x6d\xcd\x9e\xbb\x48\x93\x51\xb1\x69\x0f\xc3\xb9\xf0\xed\x73\xf5\x46\x52\xa9\x84\x9f\x92\xdf\xb0\x4b\xda\x66\xbb\x0e\x91\xb5\x56\x7f\x76\xfc\x0e\xcd\x1e\xdd\x6d\x80\x9e\x4a\xa6\x63\x52\x9b\x44\x74\x9c\x49\x45\x1b\xa3\xb1\xd7\xec\x46\x97\x4a\xcc\xf7\x53\x8d\xa6\xec\x80\xd5\xa3\xb5\xb2\x53\xba\x83\xaa\x43\xf2\xe0\x61\x9d\x44\x6c\x97\xc1\x19\x34\xf7\xe5\x3b\x0c\x17\xf1\x06\x17\x75\xe6\x4a\x3b\xb6\xf8\x9d\xce\x98\xad\x22\x5e\x94\x96\x4b\x6e\x2a\x6c\xe5\xff\x3e\x96\x0e\x12\x0e\xf5\x3d\x9c\xe2\xa5\x6b\xb9\x97\xee\x37\x4e\x50\x6c\x3c\x22\x55\xe2\x55\x49\xea\x0b\x5c\xd2\x24\xcc\x26\x28\xf4\xdc\x9f\xf9\xc4\xe6\x44\x67\xa6\x6b\x4e\xa1\x18\x5e\xb3\xe5\x22\xb3\x7e\xaa\x71\xc1\xa2\x00\x4c\x5c\xb9\x0f\x87\x3d\x22\xb9\xd5\xd4\x23\x3a\x67\x6e\xdb\xc3\x31\x05\xde\xc5\xb2\x77\xd2\x1a\xcd\x59\x84\x0b\x07\xca\x96\x73\xb6\x25\xe9\x68\xcd\xd1\xc0\x40\x99\x6f\xec\xc6\xb2\xb6\x29\xc5\x98\x65\xed\xbe\x6a\x58\xba\x59\xe8\x11\xb7\x4e\x19\xae\xbc\x74\xdf\xe4\xa2\xc1\xe3\xb5\xf4\x2e\xc6\xa3\xb5\xd5\x33\xaf\xd4\xa4\x6a\xe2\x82\x1b\x6f\x8c\x29\xaf\x0b\x57\xa7\xf7\x14\x34\x80\xa5\xdf\xc5\x1f\x26\x8e\xd4\x1a\xde\x65\x2a\xaa\x42\x9e\xb7\x59\xbb\x5b\x25\x94\xd3\xe6\xcc\x9e\x0e\x4b\x7b\xd4\x1d\x8a\x68\x4f\x75\x80\xd2\xcc\x7b\xce\xd7\x86\x43\xbe\x60\x96\xee\x9a\x77\xf1\x5e\x43\x01\x35\x11\xcb\xc2\xa6\xf8\x9d\x8b\x0c\x98\x11\x6d\x10\xe1\x07\x22\xe1\x63\xdf\xb4\xab\xad\x32\x77\xcb\x0d\xce\x62\x4a\x43\xfe\xda\x87\x2f\x32\x0a\x5a\xea\xfa\x86\x9d\xfd\x60\x23\x1b\xe6\x36\xab\x46\xf5\x56\x6b\xca\x5c\xad\x29\x7c\xd6\xe3\x52\x61\x0f\x75\xbe\x61\x99\x56\x26\x4a\x72\x41\x2c\x53\x03\x81\x63\xcc\x68\xa5\x51\x7f\x59\x5b\x73\xed\x6f\xeb\x25\x5f\x99\xd4\x61\x2a\xf1\xe0\x09\x4c\x88\x6c\xd8\x5a\xc5\xf0\xf2\xd1\xc9\xa3\xa4\x9e\xbe\xd4\x72\x2b\x15\x0b\x04\x39\x49\x67\x62\xf4\x46\x96\xbd\x57\x63\x0d\x00\xdd\xc2\x0b\xdc\xbd\x7c\xa8\xde\x94\x75\x01\x09\x9d\xab\xdf\x9b\xa6\x2c\xdb\x2d\xcf\x67\x2d\xda\x34\x76\xe6\x9f\xd7\xe1\xa2\xbe\xe5\xea\x15\x4b\xae\x5e\x0a\xaa\x19\x2f\x63\xa4\x8b\x76\xb2\x1f\x25\xfa\xf0\x6d\xc5\xfe\xec\x07\x0d\xd3\xda\x26\x13\x7e\xc0\xbd\x04\xbb\x98\xbd\xe2\x29\xfc\xcb\xc5\xa4\x45\xcb\x9e\x2e\x13\xa8\xa9\xeb\xf7\x08\x8e\x2d\xf9\x8f\x2c\x92\x5e\xc9\x82\x54\x20\x86\xed\xdf\xa9\x31\xaf\x85\x43\xc1\x96\x31\x3f\x63\x9e\x96\x1e\xa2\xf4\xf1\xdf\xd6\x27\x4f\xdd\xb5\xda\x55\x96\x2f\x9d\x8d\x47\x0b\x07\x14\x4a\xe0\x26\x22\x82\xd9\x89\xab\x74\x68\x95\x4d\x62\x1c\xd8\x86\x83\xf8\x10\x30\x1a\x14\x8a\xe1\xc7\xee\xc5\xbd\x7a\x65\x2d\xaa\x76\xa4\x89\x7b\x58\xc8\x1a\xd6\x2d\x54\x94\x03\x8a\x7d\xfd\xf8\x79\x9e\x7b\xaf\xd1\x46\xe4\x81\x5f\x03\xdd\x38\x35\x7b\x9a\x77\xb3\xd6\x86\x27\x1e\xa3\x02\x36\x56\xd6\x30\x0e\xa8\xbb\xbc\xc7\x95\xed\xa0\x2d\x4f\xe1\x3c\xeb\x7a\x52\x25\x7d\xcc\x6d\x57\x63\xfd\xf0\x73\x8a\xb1\x13\x44\x6b\xeb\x0b\x1f\x42\xd4\xda\xad\x38\xa8\xce\x9f\x54\xb3\xf1\xba\x20\x4d\xab\x96\x6e\x7f\x3e\x51\x33\x66\x52\x02\x73\x07\xcc\xe4\xdf\x70\x71\x43\x5c\xed\x26\xbe\xdd\xbf\xbc\x6b\x94\xb9\xdb\x48\x3d\x46\x4c\x2e\x09\x75\x0d\x4e\xe1\xd2\x2a\x83\x34\xeb\xdc\x75\xe7\xeb\x9d\x4d\xd5\x29\x8f\x1e\xef\x97\x35\x1b\x5a\xa8\x8c\x2d\x58\x16\x03\x46\xe0\x01\xbb\x8c\xd4\x81\x2e\xcc\xe0\x7e\xbe\xb9\xe2\x1c\xed\x97\xbd\xa8\x86\xbf\x50\xf9\x54\x38\x34\x91\xb1\x75\x96\x0d\xd7\xc2\x9b\x4d\x7a\x90\x3d\x91\x9d\xb6\xf5\x82\xf8\xd2\x61\xb0\x60\x00\xfc\xe9\xc1\x44\xb1\xca\x81\xd4\xa3\xbc\xce\xf4\x50\xb0\x59\x94\x8d\x4a\x75\xa8\x1d\xf7\xb4\xf9\xaa\xf3\x40\x58\x31\x98\x3a\xf7\xad\x35\xea\xd4\xe6\xa2\x8a\x3a\x08\x2b\x0e\xa4\xf3\x8e\x7a\x2b\xa8\x1b\x64\xd4\xf7\x5e\x34\xd4\x6a\x94\x48\xd7\x96\x9b\x53\x0c\x05\xf3\x1c\x98\x89\x75\x49\xe1\x4a\xe2\xd7\xa8\x40\xb1\xa3\x78\x95\xfe\x9b\x61\x42\xd4\x4d\xbd\xc0\x33\xd0\x14\xbf\x31\x66\xdb\x82\x49\x59\xb4\x7c\xee\x90\xe6\x8f\x48\xa9\x14\x5e\x9c\xb4\x25\x7d\xa5\x2d\x1e\xc4\x03\x8c\x6b\xef\xc7\xfd\x35\x6b\x0e\x76\x61\xfa\x33\xdb\x35\xb7\x8b\x32\xb1\x35\x65\xa5\xdc\x41\xd7\xf0\x2e\xf0\x62\x13\x1e\x1c\xca\xfd\x72\xa7\x5a\x5b\x82\xf7\x24\xb3\xa9\x1f\x54\x74\x91\x20\xbb\x8a\x62\xdf\xd9\xe9\x3f\xc4\xef\xae\x33\xb7\x0c\x52\x07\xf9\x2d\x1a\x88\x51\x04\xe8\xe9\xaf\x93\x17\xd6\xbc\xa7\xaa\xcc\x28\xf2\x85\xdd\x9b\x87\xea\x35\x19\x66\xe2\xbf\xe9\x1c\x24\x2b\x13\x21\x50\x9f\x6c\xe1\xd3\x26\x5b\xac\x1c\x44\x0b\x00\x6b\xfc\xbd\x06\xcb\xf0\xb6\x80\xf5\xf5\xa9\x59\x58\x7e\xe3\x31\xb5\x40\xc0\xf6\x13\x00\x3a\x06\x01\x0d\xca\x7f\x29\xba\x14\x0e\x58\xac\x0c\x34\xb8\xa5\x1d\x5f\x6b\x8f\x18\x4e\x31\x01\xb5\x65\x6e\x33\xf7\xae\xb4\x6c\x78\x83\x09\xce\xfb\x98\xd4\x61\x4d\x2f\xa0\x6f\x6b\xbe\x7a\x40\x23\xca\x7c\x7e\x80\xa6\xdf\x42\x6d\x3b\xb0\x89\x68\x8b\x44\xd7\x1d\x44\x25\xe6\x5b\x88\x55\xa7\x6e\x2d\x68\x33\x92\x78\x74\xb3\x96\x67\x12\x47\x70\x00\x63\x12\x56\xad\x41\xac\xf9\xeb\xbe\x34\x1c\xc5\x22\x25\xe6\x52\xff\x34\x19\x51\xa6\x6f\x17\x86\xe9\x25\x34\xfa\xe3\xc4\x9a\xe6\xb6\xa9\xc9\x83\x19\xdf\xad\xfb\x00\x6c\x18\x65\x60\xf4\xec\x56\xa1\xd4\x2a\xb8\xa0\x60\x8f\xc0\xad\xa7\xae\xc3\xd7\x7a\xab\xe2\xa5\x0c\x4c\x1f\xa4\xcc\xb5\x3a\x4e\x23\xf1\xbc\xf3\x0d\x0d\x1a\x63\x13\xd7\x4f\x04\x52\xee\x7e\x66\x4c\xfb\xba\xd0\x24\x80\xf3\x57\x65\x4d\x43\x3c\x0d\x97\x29\x05\xe2\x77\x75\xaa\x8f\x77\x29\x26\x4f\x28\x07\x7c\x9b\xe1\x29\x23\x62\xe2\x4b\xf8\x8d\x6b\x54\x2f\xa1\x04\xad\x77\x06\xb9\x41\xf6\x73\xcf\xab\x0f\xf3\x05\xa9\x54\x18\xba\x85\x85\x9f\x32\xec\x4b\x6d\x56\x6a\x21\x3e\x0a\xbe\xea\xd8\x24\x4d\x82\xc1\x0e\x3c\x00\xb4\xe7\xd7\x77\x68\x35\x4d\xf4\x35\x60\xf5\x90\xfd\xa9\x21\x02\xd7\x6c\x79\x35\xee\x1a\x23\xb5\x7c\xf5\xa0\x2a\xa4\x51\xd2\x32\xd5\x78\xe8\xbd\xbf\x4d\x73\x41\x6a\xec\x64\xf3\x3b\xd5\x61\x7e\x5b\x40\x3d\x1c\x36\x16\xc3\xc5\x65\x2d\x0e\x50\xd7\x17\x60\xe0\x91\x5b\xba\xf4\x22\x23\x05\x26\x96\x45\x1b\xbe\x14\x24\x83\xd0\x72\xeb\x0e\xc5\x32\x29\x05\x5e\x4b\x87\x23\x7c\x69\x77\xd2\x1d\x21\x5e\x5a\xf9\x64\xe7\x53\x6d\x50\x64\x1b\xb5\x46\xc3\xdb\x8e\x62\xd6\x08\xb2\x92\xae\xd5\x82\x54\xf7\x4f\x63\x30\xf3\xa9\x04\x82\x03\x5b\xe4\x7d\x83\x0d\xc9\x23\x07\xf8\x05\x18\x38\x36\x6b\xf5\xde\xb4\x39\x5d\x9d\xd0\xab\x39\x4f\x18\x62\x71\xb4\xc6\x5c\xe9\x2a\xb3\xef\x55\x0d\x03\x41\xdc\x2a\x93\x06\x3d\x9b\x36\x26\x47\xda\x1c\x50\xf5\x7d\x74\x14\x5e\x5c\x4c\xfc\x81\x4a\x8a\xfb\xe9\x3d\xa2\x7a\x28\x72\x19\x84\xcb\xde\x34\xed\x56\x9a\x90\x95\xc6\x50\xb9\x9d\xc7\x92\xed\x27\xb8\x3e\xc1\x3b\xfb\x41\xd5\xa9\xa7\x7a\x7e\x98\xbf\xcb\x4c\x3e\x62\xfe\x16\xcc\x8a\x9a\x06\x31\x4c\x90\x1e\x17\x8c\xf3\x71\xcb\xae\xd9\x3d\x46\x4b\x2a\xd0\xc6\x5f\x57\xd1\xb8\xfa\x59\x6d\xee\x4e\x4b\xbe\xb4\x82\xbe\x74\x37\xa6\x89\x8b\xe8\x8d\xd4\xf5\xb8\x2e\x29\xfd\x82\x29\xe3\x0a\x75\x88\x04\x26\xfb\x1a\x59\xb2\x21\x78\xb4\x97\xa3\x8f\x7b\x53\xda\x52\x2c\x26\xc2\xf5\x7a\xb8\x00\x93\x97\x38\xf0\xac\x78\x5c\x25\xc0\xca\x56\x53\x75\x33\x41\x17\x29\x6c\x3e\xd3\x6e\xf2\x53\x8f\x5b\x26\xe1\xb3\xda\x24\xad\x4a\xdd\x40\x4e\x4b\x2b\xf3\x0c\x19\xab\x28\x1f\x77\x63\x9f\xae\xf0\xd6\x51\xa7\xc7\x07\x41\x0a\xfe\xd5\x87\xb5\xe9\x24\x7a\xc7\x69\x49\xc2\xf8\xfd\x0a\x65\x50\xd5\x0a\xbd\xcc\x03\x0b\x07\xc7\xe9\x32\x6f\x78\xc0\x7c\x9b\x76\x7f\x92\x8b\x94\x4f\x33\x12\xbf\x6c\xe7\xc5\x46\xf1\xd7\xe0\x36\x77\x41\x0c\x39\x49\x41\x7f\xb0\x59\xbd\xc7\x06\x69\x32\x9b\x81\x56\xab\xa2\x8b\xbd\xbd\x7c\x88\x76\xf2\x73\x84\xd0\xbf\x34\xd6\x20\xb1\x05\x7e\x14\xe6\x62\xb2\x03\x35\xd4\x1a\xa4\x1e\x67\xb8\x69\xa9\xd4\xc3\x82\x71\xb4\x79\xbd\xf7\xad\x19\xa7\x46\x08\x12\x1d\xd6\x6e\x22\x7f\xb3\x0a\xaf\xbc\xe1\x33\x87\x79\x70\x49\xb9\x8b\x35\x94\x8c\x5f\x0b\x84\x57\x06\x4b\xf9\xf0\xaf\x5f\x57\xb3\x8a\x2a\xc8\x71\x84\xeb\x1a\xc6\x3c\xd7\xf6\xb8\x94\x39\x99\x34\x56\x8e\xea\x02\xcb\xa2\x9e\x07\x69\x6b\x78\x79\x88\x75\xc0\xf2\xc0\xf3\xea\xbc\x65\xd6\x01\xe1\x6f\xf7\x9b\x7d\x20\x1b\x5a\x8f\x32\x96\x5c\xf5\x75\x7d\xa0\x6b\x41\x43\x2b\x24\xbb\x52\xde\x43\x8c\x02\x55\x6a\xe5\xbd\xaa\x65\x53\x15\x3c\xd0\x83\xf6\xa5\x4f\xaa\x1b\x9c\x36\x53\x0a\x2b\x80\x1a\xd2\x1b\x6a\x6f\x38\x5c\x78\x14\x67\x50\x83\x2a\x52\x6b\x92\x59\x3e\x73\x50\xd0\xfd\xc2\x6e\x0c\x82\xd7\x0a\x49\x31\xbd\xc7\xb0\xbc\xad\x51\x52\x6e\xd4\x78\x4c\x36\x2a\xf6\x67\xc8\x11\x63\x2d\xd7\x78\x23\x31\x1c\x98\xd7\x3b\xc6\x8c\xa1\x30\x8d\x44\x3f\xad\x62\x7f\xee\x76\xcd\xc5\xb9\x4e\x29\x60\x89\x32\xe3\x6f\x3e\x57\x2f\x48\x30\x65\x87\x5a\xb1\xdc\xa9\x1d\x23\xe8\x07\x12\xfd\xc1\x79\x77\xa8\xe0\x0a\xdd\x92\x1e\x6c\xcf\x7f\x6a\xf5\x10\xb9\x5a\x44\x00\x7c\xae\xe8\x2b\x3f\xf9\x9a\x49\x95\xb3\x6d\x90\x4b\x78\xf3\x84\x21\x23\x48\x69\xdd\xe6\x71\x62\x37\xe9\x0d\x63\x22\x1d\xa5\x9c\x00\xff\x0e\x7f\xbf\x4f\x43\x79\xd7\x58\x94\x67\xd4\x04\x6f\x30\x20\x84\xfd\xb1\x39\x2c\x4e\x3f\x5a\xd8\xc4\x81\x4b\xbe\xa1\x4f\xd3\xb0\xa4\xc4\xaa\x61\xbd\x99\xbd\xad\x23\x99\x8b\xbb\xa4\xd9\xd6\x6e\xfa\xcc\x01\xf5\x92\x79\x09\x2c\x31\x80\x5a\xb4\x2b\x54\xa9\x3b\xaf\xa4\xf8\x9c\xb7\xec\x56\xcb\xab\x49\x64\xc3\x32\x7f\xc3\x93\xe7\x68\xfb\x1a\x8b\xff\xbf\x2a\x72\x8a\xcf\xa3\x8d\x50\xef\x4a\x82\x8d\x4f\x74\x67\xbe\x9f\x1c\xd4\xda\x8e\xa4\x49\xaa\xd0\xdd\x98\x3e\x5b\xb7\xf0\xa9\x0a\x86\x2a\x66\xe5\x17\xce\x96\x7b\xc6\x05\x62\xd9\x9d\xeb\x24\xef\x8a\x11\x9d\xe6\x9c\x1f\x2b\x94\x4a\x91\xcb\x0b\xc5\xf0\xbd\x01\x92\x76\x67\xd5\x6b\xa9\x49\x6e\xae\x31\x79\x90\x32\xb6\x84\xca\x71\xd5\xbb\x2a\x4e\xf5\x90\x72\x7b\x2d\x7e\xf7\x6a\xb3\x16\x8c\x8e\xf3\x28\x99\xc3\x24\xfc\xf7\x67\xea\x8e\x9c\xd5\x5a\xc1\x21\x00\x60\xfb\x3f\x9a\xd8\x28\xa4\x6b\x38\x12\xcd\xf7\x98\xf4\x5a\xce\xeb\x09\x21\x20\xf3\xd2\xda\xd3\x92\x95\xa9\x97\xc0\xec\xb6\xef\x4f\xc3\x81\x1d\x52\x65\x16\x32\x19\xd2\xf9\xf4\x05\xe3\x12\x6e\x65\x14\x18\x66\x1f\x36\x7a\xbb\x81\xe3\x60\x4a\xaa\x3d\xa0\xec\xe7\x3a\xd2\xf9\x7a\x99\x11\xc7\x2d\x03\x03\xc5\x8c\x98\x1f\xec\x33\x75\x81\x6d\x8b\xdb\x8e\x91\x12\x4e\xcf\x63\xe0\xbb\x9e\x96\x19\x29\x5c\x5f\xbc\x71\x45\xa1\x18\xda\x6b\x0d\x43\xe8\x80\x19\x06\x26\x99\xeb\x07\x6b\x32\x6a\xbe\x4f\x05\xae\x89\x2d\x67\x99\x8d\x45\x68\xe1\x27\x41\x31\x3f\xf6\x91\x74\x8e\xd9\xb0\x89\x8f\xea\x31\x0f\xd9\xe9\x5b\x8b\xd6\x0c\xb5\x92\x64\x40\x2f\x1a\x67\x1b\x8e\x25\x9e\x15\x1d\x44\x92\xf8\xf3\x9b\x79\x0a\xac\x41\xbc\x28\xc6\x12\x1f\xc2\x4c\x78\xbd\xa1\x27\x6a\x09\xd9\x13\x05\xe0\xc5\xcd\x4b\xd4\x42\xe9\x61\xb6\xd4\x34\x09\xff\xd6\x85\xa1\x73\xda\xd4\x99\x80\x69\xd8\xaf\x49\x23\xd5\x28\x69\xb6\x3c\xd0\x46\xcb\xfd\xcf\xda\x21\x5a\xd7\xbd\x85\x8b\x69\xc2\x09\x53\xca\x50\x54\x69\x8b\x36\xd3\xd5\x7f\x8e\x9f\x1c\xae\xb3\xac\x1a\xc4\x85\x23\xec\xab\x46\x91\xef\x92\xa6\x84\xde\x65\xbe\xb1\x79\x6c\xf2\x17\x05\xde\xe3\xb6\x19\xc7\x86\x8f\x6e\x49\x92\x84\xd3\x0d\x31\x5f\x36\xb9\x70\x8c\x56\xec\xb8\xb7\x78\xd6\x54\xcc\x39\xa2\x48\x89\x13\xd1\xcc\x03\x86\xd6\x9c\xd7\x43\x6d\x1b\x2f\x26\x3f\x63\x4b\x3a\xf2\x92\x28\x25\x80\x73\xe7\x83\xcb\x52\x1c\xc0\xa0\x8a\x9c\xff\xcc\x59\x4f\x62\xa8\xf0\x68\x93\xba\x89\x9a\x69\xd8\xdf\xa9\x9e\x43\x5d\xbd\x82\x27\x36\x8f\xd4\x8e\x01\xcf\xaa\xd1\x72\x80\xfc\x96\xec\xf7\x8e\xa4\xef\x43\x42\xfa\xa5\x0c\x78\xa6\x6b\xa2\xca\x0d\x40\x12\x8c\x0b\x59\x2a\x9a\x61\xe4\x31\x29\x94\x82\x60\x53\x34\x7a\xc9\x76\xed\x96\xe0\x3b\x62\xfb\x72\xd6\x74\xf9\x51\xec\xf4\x5d\x59\x63\xd1\x6f\x0c\xfe\xa1\xc1\x65\xb6\x00\x05\x2d\x65\xe4\xdf\x5d\x8b\x6b\xa7\x44\x09\x78\xd5\x67\xbe\x3a\x40\x6b\x46\xa2\x87\x5c\xf4\xcf\x5b\xcd\x85\x49\x85\x4f\x98\x2b\xd5\xd9\xf3\xdd\x63\xd4\xd2\xaa\x13\xc1\xa3\xc0\x98\x2f\x8c\x54\xc0\x23\x70\xdd\x49\x6d\x90\xe7\xb5\xe4\x87\x78\xd0\x51\x3e\x69\x9a\x3a\x12\xaf\x1e\xf7\x8c\xbe\xbb\x2d\x89\xbb\x85\x12\xbc\xa1\x33\x16\x61\x8c\xfe\x28\xe5\xa2\xaa\xd7\x0f\xd9\x95\x0f\xfe\x6f\x06\x90\x38\xe2\xf8\x66\xd7\x28\x3d\x65\x57\x52\xf3\xc0\x79\x9c\x75\x7e\xd2\xc3\xaf\x98\xf9\xd4\x07\x56\x98\x5a\x1c\x8a\xe4\x95\xb9\xff\xb1\xf4\x56\x2a\x91\xc0\xf6\xcb\x2c\x5d\xe2\x86\xc1\x78\x7d\xb8\xea\x83\x3d\xa2\x84\x1b\x8c\x78\x09\xdf\x70\x8d\x7b\x3e\x84\xec\xe8\x53\xbf\xb4\x51\x35\x59\x62\xd9\x90\x76\x2c\xf1\x42\x75\x38\xdb\x10\x92\x24\xd0\xfd\x2b\x86\x55\x51\xb4\x66\x63\xde\xc5\x7f\xbb\xe9\x9f\xb9\xb4\xc7\x93\x70\xde\xe5\x8f\xc8\x2b\xa1\xa2\xc4\x2c\x6c\x13\xe4\x6e\xd0\xfc\x01\x1d\x5e\xc6\x26\x23\x74\x58\x3a\x0e\x6a\x28\x05\x22\xaa\x34\xa6\x60\x4e\x99\x6f\x30\xfb\x49\x85\xca\x20\xf8\x97\x03\xe6\x39\x01\xa8\xf8\xd3\x88\xea\x65\x7f\xd4\x69\x66\xb1\x16\x72\x92\x30\xd2\x9c\x3c\x9a\xc4\x11\xc2\x4c\x39\xaf\xfe\x5c\xcf\x76\x85\x1b\xe8\xab\xa5\x0e\xfe\x1c\x51\x84\x95\x12\x55\xa7\x58\x38\xf4\x8e\x76\xf1\x5c\x75\x80\x6e\x5d\x3b\x54\x3b\xf1\x3d\x1c\xf2\xe7\xed\xc7\xcc\xb6\x0d\xb5\x7d\x9e\x46\x50\x76\x74\x9b\xf2\xa1\x0d\x2a\x40\x77\x02\x5f\xc9\x91\x19\xe9\x3b\x6d\xf1\xd8\x0d\x1e\x9e\xf3\xe8\x33\x2e\x54\x6b\xa7\xc6\xac\x36\xe3\xd0\xdc\xc6\xa3\xe9\xe9\x69\x8c\xa4\x65\x71\xdb\x46\x2e\xb5\x8d\x5b\xdb\xea\x40\xd7\x92\x0e\xc2\xf9\xf3\xde\x49\x3a\x03\xc0\x49\xcd\x4e\x3d\x32\x56\xbb\x61\xd1\x1e\xcb\xfb\x73\xe7\x87\x6a\x71\x70\xbf\x46\x45\x0f\xf3\x50\x19\xe6\xfa\xe3\xe7\xaa\x03\xb3\x31\x41\xa7\x63\x96\x92\xb4\x4b\xba\xb0\x1e\x1d\xab\x25\x8c\x76\xd0\x2e\x6e\x9b\x7d\x72\x70\xfa\xe0\xf7\x34\x46\x0f\xa6\xcb\x97\x6b\x78\xaf\x1a\x69\x34\x62\xbc\x57\xee\x6f\xaf\x9f\xa7\xcb\x8b\xe8\x06\x01\x99\x61\x5a\xb2\x50\x27\x4e\x83\xd8\x24\x7a\x12\x9d\x1b\x34\x0e\x6b\x2d\x20\x15\xd0\xe9\xca\x0e\xd3\x72\x61\xb4\x05\x06\x4d\x81\xf0\x9f\x0e\x62\xaa\xb2\x5c\xb6\x1d\xb0\x23\xf7\x53\xad\xce\xeb\xe8\x9c\x03\xca\x23\x3f\x1b\x68\xc8\x51\x39\xd3\x3b\x3a\x3b\xe5\x82\xfe\xd3\x33\xe9\x22\x75\x66\xa7\x84\x57\xdc\xbe\x74\xb4\x46\x81\xab\xd0\xb4\x8a\x6b\xe6\x47\xaf\x0c\xd7\x27\xae\xd4\x45\x31\xdf\xdc\x3f\x0d\xd1\x86\x23\xa8\x7c\x31\xfe\xa5\xf4\xde\xe7\xa2\x2c\xfd\xc1\xc2\xc5\x03\xcf\x6f\xff\x51\x6c\x9e\x9b\xfb\xfe\xa2\x84\xbe\xdb\x44\xe2\x71\x74\xc5\x93\x57\x8d\xd6\x40\x08\x96\x1d\x94\x53\x01\xf9\xab\x8b\x06\x26\x3f\x06\xc4\xe2\x83\x83\x65\x3c\x6b\x52\x01\xd7\xf3\xc2\x21\xa3\x34\xaa\x31\x0b\x39\xe8\x83\x1e\x52\x18\x59\xbb\x14\x47\x9c\x05\x52\x17\x03\xc6\x2e\xad\x82\x43\xea\xd2\xfa\x2c\x3f\x6f\x3c\x76\x6c\x97\x5f\x3f\xbd\x63\x26\x0c\x17\xfe\xf4\xc3\x74\x46\x1c\x7d\x69\x89\x12\x91\x08\x35\xe7\xbe\x73\x97\xf1\x1b\xa2\x4a\x5c\xd6\x17\x25\xb7\x0d\xb4\x1c\x98\xb9\x49\xad\x1d\xaf\xc1\xea\xba\xf7\xc3\x33\xcf\x99\x3a\xf4\x0d\xe6\x13\xac\xec\xfe\x73\xfb\xa0\x24\xaf\xc7\x86\xda\xe7\x7d\x4d\x49\x9e\x34\x63\xc1\xd6\xfc\xdd\x1a\xe9\xb1\x11\x78\x35\x98\x44\x3e\x6c\xb0\x10\x88\x88\x96\x20\xf6\xbe\xe3\x98\x72\xe1\x43\xea\xec\x75\x89\x03\x8d\xdb\xc9\x1b\x8c\xe4\x89\x09\xbf\x56\x96\xde\x23\xd9\x3f\x0e\x4b\x47\x99\x58\x48\x52\xd2\x3c\x96\x3f\xa6\xf0\x4d\xae\xdf\x2c\x14\xc3\xea\xbc\xd1\xc6\x65\xc8\x8e\x1c\x40\x7b\x7f\xf0\xb2\x4a\x7e\xe2\xec\x46\xde\xd4\xbc\x61\x6a\x5b\xb9\xdc\x27\x25\x28\x19\xd7\xd7\x30\xb7\x5a\x44\x1c\xdd\x7e\x27\xdf\x3d\x4f\xaf\xbe\xab\xcc\xa1\x31\x24\xfa\xbd\x3d\x66\xe5\xec\xca\x43\xf7\xad\x09\xda\x8b\x31\x36\xf5\x36\xa3\x11\x2b\xa2\x6a\x57\x62\x7c\xae\xba\x1f\x7b\x10\x51\x6d\x2e\x4b\x83\xdc\x58\xa5\xa6\x45\x98\x88\x83\xee\x22\xb9\x58\x59\x54\x27\x61\x93\xed\x82\x77\x71\xb2\x7d\x23\xe9\x69\xa5\x9c\x31\x56\xec\x1b\xae\xb5\xe5\x03\x5f\x10\x1b\x16\x71\x71\xf3\x04\x33\xb3\xf1\x4e\x27\x9d\x94\x3b\x32\xbf\x0d\x82\xe9\x53\xa7\x81\x56\xc3\xd2\xaf\xea\x2b\xaf\xa9\xd3\x96\x39\x4e\x54\x16\xf9\x51\xf4\x59\xf0\x16\x5e\x68\x39\x56\xb2\x08\x57\x1f\xc1\xd5\x47\xdd\x6e\xde\x8a\xd6\xd3\xeb\x59\xa3\xbf\xd4\x68\x50\x89\xb8\xc8\x7e\xd9\x58\x33\x9e\x2f\xa8\x5b\xf5\x6b\xb8\x0d\x5f\x5d\x68\x2c\x01\xdb\x66\x70\x64\x5c\x7a\x29\x10\x01\xb5\xb1\x7c\x89\x21\x58\x7d\xcd\x00\x03\x46\x5e\xb2\x59\x15\xf2\x25\x94\x8b\x3d\xba\xff\xa2\xe4\x6f\xd0\x1b\xbb\x8d\x69\x95\xfb\xd0\x04\x43\x12\x82\x09\x4f\x5a\x20\xe5\x9e\x78\x6b\x64\x52\x8a\xc3\x89\x94\xb4\x78\xb7\xaf\x8f\x67\x9d\x4e\x99\x7a\x5e\xa0\xc7\xa2\xcd\x59\x93\x65\x41\x58\xbc\xcb\x3f\x7a\x4a\x5b\x80\xcc\x8a\x4a\x7f\x0f\x3b\x59\xc3\x47\x9d\x9b\x6a\x2a\x0b\xab\x46\xf0\x6c\xfc\xe5\x33\x6a\xb7\x4c\xbb\x7c\x76\x74\x61\x83\x4c\x72\x73\x20\x4a\xcc\x8d\xdd\xa5\x47\x2f\x3e\x57\x6b\xba\x39\x44\xd4\x71\x5b\xf4\xe7\x47\x8e\x31\xb2\x25\x9f\x36\xb0\xcf\xf3\xb1\xa5\x23\xf5\x8c\xb5\xc6\x4a\x2c\x16\xc6\x1c\x72\x5f\xfa\x7e\x5a\x94\x08\x29\x58\x99\xf9\xc3\x16\x75\x7c\x75\x4d\x9b\x3a\xb3\xab\xb3\x00\xfa\xac\x1d\x9a\x9e\x35\x97\x67\xd7\xcc\xd5\xaa\xc1\x47\xaa\x44\xb7\x3e\xcc\x5d\x25\x95\x3c\xca\xb4\xc1\x2c\x14\xb3\xfe\xa9\x06\xc9\xb5\x6a\xd4\xf6\x28\x4c\xc7\xde\x32\x96\x09\x2a\xa7\x27\x30\xbf\x67\x8d\x27\xd3\x10\xbc\x2a\x88\x23\x5b\x17\xff\x3e\x75\x98\xa6\xbb\x02\xbe\x97\xd1\x13\xfe\xed\xbc\x11\x1a\xb8\x52\xa7\x1f\x9e\x52\xbd\x18\x66\x17\x8a\xe1\x90\x49\x69\x5c\x5b\x3d\xda\x08\xb6\xd1\x17\xd8\x3f\x4a\x4f\x56\x4b\x48\xdc\x83\x41\xf0\x40\x43\xe8\x99\x08\x9b\x11\x10\x49\x6d\x9b\xef\xe5\xb6\xee\x53\x0b\x9e\x20\x75\x2f\xbb\x6d\xcf\x48\xad\x21\x6d\xd5\xa9\x1f\x2b\xa8\xe6\xfe\x65\x93\xe1\x82\xd7\x09\x30\xcc\xdc\x3f\xe7\x8d\x2e\x27\x69\xc1\x3c\x5f\xf5\xa6\x36\x1e\x32\xbc\x18\x05\x71\xad\x1a\xf3\x64\x1e\x9d\xaf\x18\xef\xdf\xa3\x96\x88\x15\xb5\xbf\x38\x23\xfd\x3c\x48\x99\x38\x1e\xe6\xcd\x2a\x66\xfd\xd6\xe4\x8f\xd6\x88\x8f\xb3\xf5\xcc\xd7\x7a\x31\xa2\x70\x97\x16\xd0\xe1\x2d\xf3\xe7\x27\x86\x6b\x4d\x04\xcf\x8f\x0f\xe4\x01\x87\x0c\x48\x99\x47\x93\x7c\xf9\x97\x0b\x75\x95\x91\x26\x93\xaa\x5c\x99\x97\x1e\xc4\x30\x7a\x3d\xf1\x88\x08\xb4\x3d\xea\x37\xd5\x91\xd6\x4d\x7b\xd0\xa6\xfb\xc2\x27\xc6\xa5\x1d\xb3\x96\x4d\x81\x87\xab\x6f\xfc\xa9\x8b\xcf\x55\xe4\xd8\x74\x2f\x52\x1b\x0f\x7a\x01\x00\x45\xf1\x3c\xfe\xcf\xe7\x8d\x4d\x67\x73\x29\x90\x95\xfb\xc0\xab\x67\xcb\x64\xd1\x03\x55\x14\x7f\x8f\x49\x45\xb5\xea\x85\x1e\x24\xcf\xc1\x18\xee\xb3\xc3\xa4\x61\x50\xe0\x7b\x88\x4b\xb9\x7c\x60\x2c\x06\xb6\x94\x32\x28\x81\xe3\xf7\xea\x3c\x75\xbe\x51\xa4\xc2\xe9\x2d\x8f\xa7\x8f\x3d\xaf\x8f\x56\x09\xc0\x45\x43\xb6\x52\xab\x99\x71\xd7\xce\x53\x8a\x26\xd5\x20\x66\x10\x65\xdf\xd9\x31\x50\x6e\x6e\xa4\x07\x65\xce\xdf\xa6\xd9\xcb\xc5\x62\x43\x86\x26\xdd\xb4\x69\x7e\x0d\x0f\xf4\x77\x4a\xa9\x41\x71\x9d\x0a\x68\xb3\x86\x97\x6e\x19\x9e\x38\x34\x29\x29\xe8\xf0\xc3\x6f\xe0\x71\xbe\x30\x10\xd5\x20\x3a\x81\x63\xbe\xce\x22\xd3\x84\x96\x12\xd7\x46\xb6\x40\x6e\xd2\x35\xf8\x6c\xaf\x43\x2c\x41\xee\x9a\x2d\xe9\x8d\xe0\x0b\x52\x66\x28\xd0\x8c\x66\x31\xbf\xb8\x46\x9b\x55\x28\x89\xc5\x25\xe9\x72\xc0\xe1\xa5\xd8\xc5\x57\x96\xb2\x7e\xc9\x38\xb8\x7c\x9f\x0b\xac\x34\xa3\x3d\x7b\xf9\x61\x15\x8d\xa7\xcf\x06\x3c\x4a\x2c\x62\x72\xcc\xf4\xe7\x8a\x36\x1e\x2d\x4f\x01\xc7\x97\xfc\xe8\xe7\x70\x6f\xdc\xd2\x8a\xb3\x94\xdc\xfd\x33\xd4\x81\x26\xbd\xbe\xda\x7a\xaa\x1b\xf6\x1a\x73\x09\x81\x7e\x41\x1d\x31\xc2\xfa\x5b\xb3\x8d\x63\x18\xe4\x5c\x63\xfa\x05\x3f\xd3\x94\x3d\xb1\x59\xb5\xe6\x57\x02\x3b\x89\xb1\xbf\xd9\xad\x45\x77\xe2\xc7\xd5\xe9\x06\x7c\x49\x24\xf0\xb9\xc3\x4b\xcc\xc6\x86\xe3\x8b\x6e\x72\x86\xfa\x82\xa6\x41\xfe\x27\x34\x42\x26\x17\x7e\x85\xdb\x0c\xb6\xc5\xe0\xb3\x0c\x31\xc3\xae\x99\xf1\xe5\x2d\x58\xa7\x0e\x43\x8b\x34\x0a\xc5\xf0\x1e\xa9\xb2\x26\x68\x25\xf0\x80\x2f\xf7\xd8\x8b\x9a\x67\x0f\xf1\xea\xd4\x2f\x21\x59\xff\x67\x1b\x53\x6b\xbe\x05\x6b\xbe\x79\xc7\xb9\x72\x9d\xf4\x11\x11\xe8\x63\xc7\xaf\x8e\x4d\x3f\x49\x3b\x30\x1a\xc7\x17\x3d\x8d\xbb\xd1\x0d\x84\x54\xc2\xfe\xdd\xfd\x0a\x92\xda\x4d\x2b\x15\x41\x55\xba\x18\x7e\xc5\x50\x98\x9a\x39\x4b\xe2\x31\x3e\xb5\xcb\x14\x7f\x14\x2e\x15\xd1\xe6\x8f\x67\xc0\xab\x0e\x63\xbe\xb1\x90\xda\x2c\xaa\x5c\xea\x7a\x91\x3b\xd9\xf4\x96\x88\x4a\xd5\x58\xbf\xb0\x3f\x3b\xfe\xad\x34\xe0\xd7\x95\x76\xd0\x73\xdb\x8e\x9c\x71\xd9\xa1\x5a\xf5\x47\x00\xbe\x14\x3e\x50\x36\x3a\x9b\xae\x94\x0a\x79\x9f\xc1\x63\xf4\x7c\x52\x91\x12\x76\xd9\x47\x4e\xa6\xff\xa8\xc9\x9a\x04\xd3\xbc\xef\xae\x30\xbd\xa1\xdd\x1a\xf1\x7d\x92\xd8\xbe\x44\xb1\xfe\x23\xcb\x35\xb2\x21\xb5\x75\xf5\xfc\xfb\x06\x18\xea\xe4\x09\x6b\xf0\xdb\x8f\xa4\x5f\x57\x35\x60\xe5\x28\x81\x8c\xc7\x79\xd9\x63\xe3\x35\x39\xf7\x40\x34\x04\xf3\xe4\x39\x51\x1d\x98\x7e\x33\xe3\x63\x9d\x18\xa3\x88\x86\x40\x19\xcb\x71\x3f\x79\x42\x67\x4d\xdb\x12\x2d\xff\x81\x25\xe9\xb7\x61\x13\xb7\x1a\xa8\x11\x78\xfe\xa3\x43\x46\x28\xd2\x8b\x6e\x31\x73\xac\x69\x7a\x7e\x43\xc5\x0c\x00\x8e\x6f\xae\xd5\x4d\x55\x15\x9a\x3b\x7c\x72\xf5\x08\x7d\xbe\x4a\x1a\x7e\x00\x4e\x45\xb9\xdd\x4f\x69\x40\xe1\x36\xb0\xe1\xa7\x0f\xb5\x59\x51\x55\x11\xd0\x82\x99\xfa\x57\x26\xe9\x19\xa4\x25\x68\xac\xe0\x94\x2b\x6f\xd2\xc0\x08\xcc\xb6\x09\x62\x1b\xae\xd5\xe4\x9e\x6c\x76\x5b\x80\x30\x93\xbf\x5e\x93\xec\xfd\x12\x69\x69\x12\x77\xe1\xfb\xc2\xe4\x54\x71\x58\x2c\x9d\x9e\x79\xae\x53\x13\x51\xe9\xa1\x6d\x22\x2a\xb9\xfd\xcb\xd5\x48\x15\xcc\xc8\x0b\xc5\x90\x98\x30\x7d\x30\xde\x93\x1c\xaa\x73\xc6\xab\x03\x8d\x75\x93\x9e\xe8\xe6\xfe\x63\xaa\x39\x2d\xb3\x99\x04\xe5\x40\x8e\xbe\xea\x88\x59\x21\x39\x0d\x02\x2c\x38\xe2\xc7\x29\xf6\xd7\xfa\xd4\x0b\xb1\xb8\x0b\x73\x66\x5c\x4a\x1f\x78\x6e\x64\x9c\x86\x70\xbb\x49\x45\x54\x82\xcb\x67\xf7\xed\x19\x26\x2e\x8b\x25\x16\x76\x10\x58\x1f\x38\xf3\x3c\x2d\x6d\x0e\x90\xe4\x8b\xbd\xd1\xcc\xd3\xaf\x8e\xd4\x86\xe6\x15\xbf\xe0\x35\x78\x1d\x80\x4f\xb9\x93\x6f\x9e\x2d\x4b\x1c\x80\xa5\x92\x4d\x26\xb5\x88\x08\xd6\x94\x1b\x33\x33\x4e\x69\x3a\x11\x4d\xb9\x2c\x6b\xaf\xd5\xaa\x8c\xce\xe9\xd1\xef\x76\xcb\xd6\x82\x13\x54\x2a\x88\xfc\xfe\xd9\x21\xd5\x08\x75\xdb\x1d\x96\xac\xcd\x1a\xa0\x96\x44\x77\x0f\xcd\xac\x6f\x1d\xbc\xc8\xb8\x6f\x52\x25\x6e\x5a\x74\xe4\x33\xc6\xef\xd8\xcc\xf3\x5b\xb4\x39\x45\xcb\x02\x66\x28\xd9\xcb\x4b\xe7\x44\x65\x50\xbe\xef\x94\xf2\xd9\x16\xfa\xa7\x65\x25\x7c\x38\x56\xde\x2f\x14\xc3\x8f\xde\x67\x9a\xb8\xd8\xdc\x6d\xc5\x84\xc8\x57\xde\x53\x63\x6e\x2a\x95\x50\x55\x84\xed\xba\xc7\x50\x34\x6e\x75\xc4\x05\xdd\xd5\x47\x55\x5f\x4a\x04\x9e\xc7\x48\xca\x60\x7e\xf1\x1b\x12\x79\x25\x80\x60\x19\x7e\xe7\x71\xdd\x85\x17\xba\x77\xd9\x5f\xdc\x2c\x27\xf9\x81\xe3\x10\x39\x58\xce\x5d\xb9\x3f\xbd\x56\xd0\xc5\x46\x39\x63\xe5\x66\xcb\xca\xbb\xc1\xac\x7a\x00\xab\xe7\x82\xf1\x23\xf4\x12\x0e\x34\x8b\xe0\x1a\x7f\xa3\x79\x93\x36\x10\x19\xf2\xfd\x3d\xd8\x64\xe3\x81\x5f\x61\xd4\x46\x0b\x99\xfc\x47\x56\x0e\xd7\xf9\x25\x16\x45\xe8\x72\x6e\xd7\x40\x5c\x60\xb3\xa7\x77\xcc\x8c\x3e\xf0\x1b\xbd\x78\x64\x2e\x21\xad\x9e\xd4\xf0\x3a\x33\x72\xad\x7a\x8e\xa6\x17\x4e\xb8\x54\x2b\x71\x41\x45\xd1\x0f\xca\xc8\x9a\xd9\x36\x52\x2b\xc0\x24\xe3\x14\x4e\x8b\xc5\xda\x20\x53\x3e\x5e\x39\x10\xfb\xf5\x42\xb5\xd6\x6a\xdc\x45\x77\x96\xf0\x83\x93\xce\xd3\xf6\x65\x8d\xea\x74\xa3\x7f\xaf\x25\x46\x34\x81\x64\x32\xdc\xa3\xc9\x57\x37\x38\x32\xb0\xdb\x3b\x41\xf1\x21\x3c\xe5\x59\x83\xd3\xe5\x32\x87\xc4\x96\xa9\x99\x1b\xf6\xa6\x87\x33\x65\xe6\x79\xc4\x67\x1e\x68\x6b\x29\x67\xfb\x7d\x5b\x06\xe9\xa4\xc7\x62\x38\xf7\x90\xf9\xa9\xc4\x6e\x79\xd2\x81\x2e\xf7\x25\x83\x31\x5b\x0e\x2a\x95\x96\x01\x9c\x5e\x3e\x5e\xba\xa8\x52\xbb\xcf\xaf\x41\x4a\x08\xa7\xe8\x5c\x3b\xfd\xc9\xb7\x05\x04\x07\x83\x50\xba\xfd\x69\x7f\x72\x21\x25\x94\x7d\xba\xa1\x72\x96\xcc\xe9\xa0\x6e\x29\x8e\x8a\x37\x11\x71\x5d\x04\xd6\x64\xbe\x7f\x8d\xf6\xd4\x89\x90\x6e\x4e\xf9\x0e\xd4\xb9\x2b\x2c\x80\x6e\x4f\x9b\x02\x4b\x66\xe8\x7d\x86\x28\x27\x75\x61\xa8\x0d\x17\x32\xfe\xa8\x12\x39\x99\x36\x75\xda\xec\x2b\xa6\xce\xee\xec\x6c\x1f\xe5\x1b\x00\xc4\x1a\x53\x50\xe6\x1b\xc6\x98\x50\x79\x2e\x28\xb8\x51\xc1\x45\x7f\x6b\xa9\xbc\x11\x9b\x39\x25\x49\xcd\xfe\xcc\xac\xf4\x73\xad\x93\x7a\x8d\x18\x75\xfc\x62\xc3\x81\x4c\x50\x94\x16\xf6\x91\xc7\x81\x8d\x13\x7b\x08\xc6\xfb\xa5\xd4\xaf\x51\x90\x80\x48\xd8\xa1\xd3\x8f\x0e\x95\xa9\x94\x23\xa9\x7a\xd1\x37\x77\x8c\x37\xe8\x8a\x36\xab\xf8\xdc\x80\xa9\xe6\x1e\xb9\x0f\xaf\xf9\xca\x1a\xb5\x6a\x6e\x2b\x8a\xeb\xce\xb3\xc9\x69\xca\x45\x5d\x17\x8c\xcd\xcf\x5b\xa4\xf9\x4d\x12\xc2\x20\x21\xff\xe8\xbb\x5a\x9a\xce\x3c\x0a\x45\x6e\xe6\x86\x7b\x87\xea\x50\x5c\x0b\x88\xd2\x67\x2d\x53\x7f\xef\x04\xa2\x0e\x73\xca\x3f\xbd\x65\xe0\x18\x58\x93\x8a\x6a\x22\x90\xd8\x9f\xfb\xd5\x0f\xcd\x46\x97\xa0\x3d\xb2\x31\xf4\x9f\x7a\x3b\x3b\x10\xcd\xa8\x36\x25\x28\xca\xbc\x26\xaf\x29\x22\x80\x43\x7c\xb4\xb6\xc2\xff\x9e\xa0\x81\xd8\xc0\x00\x89\xe1\x74\xe3\xff\x9e\xd2\x44\x7e\x7b\x98\x5b\xc6\xb9\x77\xae\x73\x4d\xfa\xfa\xea\xcc\xaa\x83\xfc\x45\xec\xff\xf6\xc7\x07\xf5\x6e\x0f\xed\x91\xbd\xd5\x3f\x3f\xa4\x92\x9b\xee\xa0\x1c\x7d\x8f\x40\x2e\xf4\xde\x77\x55\x80\x8a\x11\xbe\x10\x56\x7a\x16\xe3\x4b\xbe\x99\xb4\xe5\xcc\xff\x32\xc1\x74\x16\xa7\x1e\xf6\xa8\x89\x2d\x3b\xc8\x9f\x69\x2a\x81\x35\xe8\x8f\x65\xac\x19\x26\x80\xb7\x24\xb1\x1b\xe1\x2f\xf7\x8c\x6c\xcb\x62\x41\x4d\x2b\xbc\xf7\x8e\xb6\x89\x9a\xc2\xac\xfe\xfa\x7e\x0d\x49\xcc\x6b\x65\xa2\x45\xbe\x7c\x61\x5d\xfa\x33\x67\x77\xc6\x96\x4f\xd9\x7f\x3d\x61\x4e\x3e\xa5\x49\x0a\x26\x82\x9b\xef\x3b\xd7\xc8\x25\xea\x14\xc9\xf8\x1f\x78\x68\xa8\xcc\x73\x4a\x01\xb3\xa5\xde\x48\xfe\x72\xe5\xe3\x13\x08\x70\xc1\xfa\xd6\xe3\xa6\x7c\x62\xc9\x10\x7d\xf9\xda\x2b\x52\x11\x28\xe8\x26\x71\x69\x9c\x1d\xa1\x21\x4c\x78\xbd\x4e\x18\x08\x85\xe5\x2f\x3a\xa4\x16\x49\xe0\x46\x91\xa9\x8a\x4d\x96\x13\xe3\x54\xfa\xd2\xc3\xe1\x77\x4b\xeb\x0c\x02\x60\x50\x66\xd4\xb5\xe2\x4c\x3c\xf7\xf8\x51\x23\xb9\xe7\x3d\x54\x24\x36\x8b\x2f\x9a\x6a\x22\x56\x9d\xc6\xe2\x9c\xf9\x51\x2f\x0d\xd1\xc2\xa0\x8f\x73\xf4\x7f\x15\x46\x86\x01\x68\xda\x58\xea\xf3\xf9\x75\xea\x64\x4a\x70\x18\x32\x18\xcd\x19\x73\xbe\x3e\xc4\x48\x97\xc9\x99\x95\x0d\x19\xde\x2d\xee\xfb\xda\x79\xf6\xfb\xb7\x8c\x86\x46\x20\xea\x72\xbe\x2d\xf3\xe9\x89\x8d\x38\x00\x41\x37\xca\xb5\x60\x5f\xf7\x3c\x9f\xc0\xf0\x7c\xe2\xb4\xf5\x0f\xbe\x33\x7f\xb8\xdc\x9a\x5e\x74\x42\x4b\x94\x7b\x7f\xe6\x8d\x83\x86\x0b\x52\xb4\x14\xa2\x75\x79\xf2\xc0\x04\x6d\x3f\x83\xc2\x49\x95\xf8\xed\x96\xe1\xf9\xc1\xf3\x87\xe9\xda\x26\x48\x74\x0c\x7f\xb2\x5b\xab\x35\x08\xf3\x68\x92\xe2\xec\x58\x8c\x0b\x63\xa1\xcd\x2d\x79\xd2\xe4\x26\x68\x0a\x78\xa5\x40\xc4\x4a\x1b\x9f\xe9\x3e\xad\x30\x0c\xd4\xa9\xbf\xdb\x31\x56\x43\xc1\xda\x65\xda\x86\x7c\xc9\x8b\x07\x0d\x49\x34\x5a\xa6\xc8\xc8\x8e\x9d\xe7\xfa\x9f\xd7\x09\xd3\x44\x0a\x8d\x67\xff\x69\x8f\x59\x7c\x10\x9f\x22\x6c\x20\x1c\xb6\x65\x94\x36\xd1\x13\xa4\xc7\x46\xcb\xd8\x28\x7b\x19\x36\x46\xd9\x65\x52\x8b\xbb\xdc\x61\x9e\x66\xe9\x9d\x1b\xfa\x4c\x5b\x81\x56\xb1\x99\xe5\x23\xfb\x2b\xbc\x69\xa5\x6c\x03\x82\xa3\x3b\xb0\x7a\xcb\x9a\x03\x1d\xeb\xc5\xa3\xe6\x33\x06\x11\x84\x36\x21\x32\x01\x7f\x1f\xa2\xc6\xd4\x93\x09\x83\x8d\xba\x52\x5c\x37\xcc\xbc\x61\x0c\xef\xc0\xf2\x38\x69\x10\xdd\xfe\x96\xe6\xf1\x04\x00\xbd\x42\x31\xfc\xd6\x53\x1a\x1b\x30\xca\x6a\xb2\x5f\x37\x35\x51\xc1\x31\x57\xb6\x24\xd6\x8f\xd3\x1a\x31\x81\xd3\x80\x20\x7b\xf7\x3b\x06\x8e\x29\x2a\xf0\xa2\x63\x1c\x62\xf3\x4d\x8a\x24\xd5\x31\x63\x4e\xb4\x20\xff\x36\x57\x93\xa7\x0f\x88\x20\x2e\xb6\xd9\x73\x2b\xb7\x0d\xd5\xfb\xb8\x73\xa7\x14\x0b\xc5\x30\xdf\x37\xc8\x3c\x09\xef\x57\x8f\xac\x15\x55\x9c\x85\x62\xb8\xe3\x29\xb3\x97\xe2\x79\x54\x44\x19\x3f\xe0\xf3\x06\x8d\x51\x5f\x29\x99\xdc\x20\xc1\xbb\xe0\x75\x95\x4b\x39\x3d\x30\xf0\x3d\x53\x9d\xa8\x65\x11\x80\xc0\x42\xe6\xef\x7b\x4c\xd9\x57\x66\xc7\x70\xe2\x8b\x56\xa8\x3f\xa8\x31\x1b\xd3\xad\x9e\x79\x58\x1a\x94\xc0\x68\xd7\x07\x4e\x63\xe6\xde\xbe\x8b\x8c\x63\x97\x43\xcf\x5d\x8b\xa9\x99\x8d\x4f\x27\x65\x5e\x60\xe9\x64\xb7\xcd\x13\xce\xd3\x36\xab\xcf\x1c\x56\x4e\xd4\x99\xbf\xed\xb6\x69\x3d\x28\xd8\x67\xbe\x63\x91\xe1\xf7\x19\x25\x70\x88\xf1\x7a\x69\x95\xde\x10\x14\x78\xce\x66\x5e\x7d\x52\x8e\x35\x81\xf1\x06\xab\xf4\x67\xeb\x25\x3b\x25\x2a\x6e\x41\xcf\xb9\xd8\x9f\xf5\x4e\xa5\x57\xa9\x4b\x7b\xbc\x06\x69\x00\xbf\x03\x1a\x2d\xf5\xfb\x87\xc6\xd7\x4b\x85\x2f\x8f\xf1\xcc\xd7\x96\xa6\xaf\xa7\xcc\xb9\x90\x44\xc5\x6f\xea\xf2\x36\xb1\x78\x79\xa1\x18\xfe\xdb\x93\x86\x90\x16\xa7\x3a\x1f\xe0\xf8\x2c\x95\xdc\xf6\x16\x84\x34\x33\xcf\x0c\xd9\x9a\x46\xbc\x34\x89\x1d\x7d\xa6\x4b\xd3\xb8\xd4\xcc\x4d\x46\xdf\xa0\x22\x68\x50\x86\x3a\x51\x9d\xc4\x97\xde\x95\xee\x7e\xb5\xa8\xed\x7b\xcc\xd5\x45\xc4\xc3\xd7\x95\xb4\x59\x45\x68\x1d\xa2\xcc\x25\xc7\x87\x6a\x87\x1f\xf5\xac\x28\xca\x2c\xbc\x4e\x89\xa8\x70\x91\x42\xc0\xad\x7e\xd7\x34\xb8\xf4\x1a\x81\x4f\x13\xc5\x7b\xcf\x80\xb7\xf3\x4a\x85\x0a\x69\x32\x92\xbd\xee\x11\xd5\x6f\xa8\x91\x52\x8b\x08\xe6\x10\x50\x7a\xc9\x5c\x7e\xb3\xae\x28\xe5\x96\xa9\xa3\x8f\xf2\x9c\xf9\xc3\xe2\x9f\x54\x18\xe8\xdf\x41\x0b\xeb\x2d\x37\xd9\xbf\xb4\x0a\xe7\xf3\xa7\xf7\x29\x90\x5c\x85\x34\xb9\xd0\x4b\xee\x2b\x56\x6a\xe6\xc8\x40\x41\x87\xc1\xf4\x9b\xe9\x38\x8d\xf2\x01\x44\x38\xd2\x57\xab\x3f\xf7\xb5\x67\x4c\x71\x4b\x8e\xf2\xd2\x71\x97\xff\xca\xc9\x1a\x98\x81\x0b\x07\x06\x80\x5f\x7e\xc5\xf0\xe7\xa7\xc2\x21\x6e\x4b\x8a\xf5\x43\x32\x3f\x67\x9b\xe4\xa0\x58\xa4\x4c\x9d\x56\xa1\x18\x4e\xde\x9f\x7e\xbc\x9a\xf8\x4b\x14\x2b\x6a\xdb\xc6\x6a\xed\xc1\x4a\xe0\xb5\xe3\xb6\xaf\xee\x35\x27\x34\x92\xd8\x14\xfd\xfd\x12\xe9\xf2\xe2\x30\x1b\xe4\x22\xfa\x12\xd2\xc3\x9e\xd7\x35\xf5\x45\x41\x6e\x83\x41\x50\x76\xc1\xe0\x38\x21\xb3\x78\xd5\x65\x7d\x98\x24\xaf\x1c\x97\x7e\x1e\xc4\xf3\x48\x59\x17\x8a\xca\x2f\x7c\x4c\xab\x1d\x2c\x0a\x2c\x91\x41\xab\xa5\xeb\x2f\x71\xa1\x54\x2f\x34\x28\x0a\xac\x66\x4f\x0c\x3e\xdf\xec\x77\xa8\x0e\xcd\xb6\x27\x8c\x8c\xcb\xaa\x31\xda\x4c\x5c\x55\xf2\xc3\x64\x43\xc9\xe2\x81\x80\xb8\x69\xdf\x81\xff\x50\x01\x83\xac\xe8\x0d\xdf\x77\x8f\xaa\x1b\x2c\xc1\xbd\xb8\x0f\x1a\xfd\x6c\xce\x0a\xb5\x84\x80\x05\x94\xf9\xd9\x10\xcc\x55\x96\x72\x4f\xb7\x91\xdd\xbc\x56\x65\x8f\xd4\x2d\x73\x21\x95\x93\x66\x4b\x53\x31\x8f\x0b\xdc\xdb\xd9\xfc\x64\x7c\xab\x15\x1a\x9b\xde\x67\xce\x2c\x4b\x90\x03\x77\x08\x72\x30\x72\xdf\x5c\x95\x7c\x31\x81\x05\x93\xf9\xda\x43\xe9\xe0\x53\xa7\xb4\x21\x29\x2f\x8b\x9f\x4f\x7e\xb9\xb3\x63\x0e\xb4\x4b\x76\x6b\xdd\x6c\x2e\xea\x28\xa2\x01\x79\xee\xcd\x23\x8d\x6e\x36\xb7\xa5\x65\xe0\xbf\x19\x7d\x6e\xc0\x1a\x03\xf5\x3b\x33\x75\xef\x79\xe9\x24\xd8\xb6\x29\xe6\xc1\xe1\xb4\xd7\x14\x8f\x48\x7a\x20\xb6\x8b\x87\x7d\xe7\x15\xa3\xf6\x15\xa4\xe2\xa7\x7d\xb5\xf3\x97\xef\x69\xd3\xaf\x61\x16\xed\x90\xda\xff\xc5\x3e\x39\xeb\xf1\x7d\xc1\x4a\x2a\x47\xbc\xeb\x64\x1b\x29\x1d\x43\x00\x76\xe8\xfb\x34\x59\x86\x06\xc7\x91\x49\x76\xe2\x7c\x15\x75\x6d\xee\x56\x25\x59\x64\xc0\x92\x8b\x54\xfc\x91\x76\xfb\x66\x5b\x61\xf9\x8a\x73\xb4\x22\x53\x32\x30\x36\x5c\xa0\x0d\xdf\x7d\x2f\xa8\xb1\xba\xce\x09\xf4\x9e\x19\x22\x5f\x44\x14\x3b\xa4\xb3\xe1\xd7\x3a\x2f\x4b\x3f\x11\x0e\xc4\x03\xe2\x42\x1b\xc6\x68\x63\xfd\xfa\x75\xc3\x36\x80\xd8\x15\x70\xf2\x41\xc0\xf5\x9a\x6d\x2a\x47\xa8\x69\x7e\xb6\xd9\xcf\x3e\x03\xb1\xbf\x70\xa5\xcd\x5c\x9f\xbb\x85\x8f\x72\xd1\x4e\x04\x9b\xbf\x4c\x0b\x8a\x81\x6d\x03\xff\x5b\x9e\x44\xb9\x01\xcf\x49\xdb\x3d\x9b\xf8\xd1\x96\x29\x14\x43\x6b\xaa\x1e\x65\x34\x81\x03\xad\x69\xae\x49\xd4\x96\x88\x5b\xed\x23\x5c\x7b\xd1\xc3\x67\x6b\x9e\x5c\xd0\x71\x96\xf3\xbc\xcd\xaf\xa8\x2b\x01\x93\x73\x2e\xca\xcc\x95\x24\xf7\x8f\xed\xd2\x90\x8e\xa0\x28\xe8\x31\x29\x81\x93\xbb\xf6\x05\x0d\x1e\xc9\x1b\x34\xba\x0d\xe8\x69\xde\x79\xd8\xc4\xa6\x5a\x68\x87\x2f\x89\xf6\x37\xf7\x9a\x9e\x50\xb1\x87\x73\xe6\xe3\x13\xb5\xec\x88\x03\xea\x30\xb4\x47\xa7\x21\x4f\x75\xe2\x06\xae\xcb\xea\xdc\xa4\x16\xfc\xb7\xd6\xe5\x23\x0c\x96\x57\xe6\x1f\x8b\xd4\x2e\x9d\x09\xec\xc8\xbe\xd9\x4a\x47\xa7\xa5\xf7\x0d\x6f\x7a\x39\x5d\xf8\xf4\x10\x0f\x0b\x8b\xba\xb1\x45\x1b\x84\x49\xdf\xa2\xec\x7f\x87\x7a\x06\xe2\x79\x44\x32\xb4\xb2\x0f\xed\x1b\x96\xfa\x9b\xa9\x53\xc0\x5a\x74\x6b\xde\x30\xd7\x71\x7d\xc1\x1c\x09\xcc\x8d\x6a\x21\xd2\xa9\xcc\x75\x78\x54\x36\xfd\xc8\x10\x10\x8b\xaa\x15\xd9\x8b\x0c\x5f\x6b\x18\xca\x35\xa4\x42\x31\x8b\x97\xe2\x11\x13\x9e\x50\xc4\x58\x4d\xb0\xb8\x3f\x33\x68\x8b\x5a\x0d\x4d\xe6\x15\x08\xfc\x37\xaa\xfe\xd6\x62\xe8\xec\x21\xd2\x56\x23\x77\xf6\x54\x3c\x23\x6e\x46\x91\x4c\xed\x79\xdf\xbf\xd3\xf4\x49\x0d\x40\xf9\x0a\x18\x70\xb9\x07\x66\x99\x7e\x74\x4d\x84\xb7\xe2\xa8\xeb\x91\x6d\x71\xcd\x2a\x38\x94\x91\x10\xe8\x1f\x1a\x75\x9e\x96\x8d\xd8\x95\x82\xc7\x5c\x8b\xc2\xa8\x2b\xbb\xef\xb8\xb6\xbe\xa9\xf0\xd0\x50\x34\x7e\x7b\x9f\x34\xba\x00\x81\x1b\x85\x60\x98\xf7\x40\x9c\xf9\xaf\xcd\x1a\xcc\x46\x90\x52\xa1\x18\xfe\xfd\xae\x91\xa9\xfc\x86\xdb\x14\x5b\xe9\xe1\x66\xc3\x9f\x1c\x34\x48\xca\xbc\xc7\x95\x9e\x1a\x8b\x47\xa6\x7b\x7b\x25\x62\x97\x03\xcb\x62\x51\x48\x57\x97\xc4\xbe\x3e\xd6\x58\x50\xa2\x06\x26\x53\x2a\x4d\xaf\x1d\xd0\x07\x7e\xa0\x56\x29\x17\xd0\xb6\x91\x7a\x67\xc4\x4d\xec\xa1\xff\x3a\x55\xf3\x67\x0c\xe2\x7f\x5d\xb7\xc1\x68\x1f\x13\xd1\x4a\xc3\x95\xc2\xdd\xa3\x93\x95\x35\xad\x13\xd0\x65\x6b\x2a\x43\xd2\x20\xe9\x42\x31\xbc\xae\x37\xd1\xb5\xba\x14\x0e\xa1\xf7\x77\xe0\xeb\x9f\xb4\x90\xd9\x76\xeb\x32\x2d\xc7\xbd\xa3\x39\x42\xe3\x1f\x78\x56\x14\x1b\x90\x52\x33\x4e\x1b\x50\x04\xa2\x21\x4f\xe1\x70\xcd\x31\x8d\xfa\xd3\xb2\x6c\xee\x62\x43\xc5\x59\x91\xce\x5d\x12\x85\xa6\x04\x89\xb0\xe2\x35\x6d\x60\x81\x47\x38\x9c\x29\xdf\x7d\x0e\x6e\xbb\xb0\xa0\x2a\xc0\xd1\x3d\x68\x8f\xb4\xd9\x01\x0f\xab\x25\x85\x06\x5b\xd1\x41\x06\x28\xf1\xaf\x69\x34\xa8\x28\x57\xf1\xe3\x74\xc3\xd8\xf0\x15\x6a\xa3\x16\x54\xf8\xc2\x75\x5a\x7b\xc0\x99\xde\x31\x7b\xf6\x4c\x00\x06\x1f\x3f\x13\xfe\x69\x61\x74\x51\x9d\xef\xc4\xfc\xda\x12\x82\xe1\xa3\x2c\xef\x17\x8d\x94\xb9\x94\x23\x0d\x52\x8b\xfd\x99\xd7\x36\x1b\x58\x20\x5e\x6e\xc9\x4d\x0c\x8d\xc2\x5f\x0d\x54\xe7\xa6\x5f\x13\x14\x05\xaa\x73\x7d\x4a\x0e\x8c\xa6\x26\x6c\xfb\xde\x35\xb4\xfa\x80\xe4\x89\x81\x6c\x8d\x79\x5f\x9e\x27\x41\x28\x37\xbb\xa3\xcd\xb5\x6a\xc3\xff\x63\x5c\x7e\x6f\x91\x92\x3a\x66\xed\x8a\x1e\xbb\xb6\x6b\xa6\x4b\xd4\x45\xeb\xa7\xe7\xde\x4c\x16\xdc\xcc\xd9\x85\x42\x31\x7c\xec\x2d\x43\x31\x96\x17\x98\x1f\x95\xe4\xc2\xa3\x60\x8a\x87\xd3\x89\xf9\xa7\x15\xca\x16\xa5\x18\x46\xbb\xf8\x9e\x74\x9c\x9e\xd5\x29\x87\x74\xf9\x75\x65\xed\x21\xc7\x26\x62\xb8\xc4\x4e\xa6\xef\x9c\x12\x4f\xe6\x2a\x37\x4c\xb8\xc0\x2c\x8e\x98\xa5\xec\x38\xb3\x87\x37\x68\x1e\xc9\x82\x59\x52\x41\x6f\xfd\x21\x95\xeb\x95\xa9\x4d\xab\x24\x4e\x8e\xb2\x1f\x74\x0d\x72\x1f\xf1\x05\xe3\x3e\x82\xf1\xd2\xfd\xa8\xcb\xe7\xab\xed\xef\x33\x87\x16\x62\x45\xd2\x7c\xe7\x2b\xc9\xc3\xb3\x39\xd8\xef\xf7\x8d\x35\x6b\x22\xe2\x32\x07\xc8\xb3\x92\x9b\x36\x7e\x8d\xae\x97\xc1\x7c\xe6\xd5\x0a\xc5\xf0\x92\x97\x95\xb9\x96\xd5\x8e\x8b\x5d\xb7\x7d\x4c\xdc\x40\x81\xe7\x6b\x66\x41\xb7\xce\x6e\x2b\xb4\x7c\x98\xd8\x27\x62\xfe\xaf\xac\x33\x14\xe7\x01\xb3\x8e\x2d\xf1\x67\x57\x5d\xa4\xb7\x68\xae\x5c\x34\x25\xfd\xf1\xd1\xf3\x1a\x51\x19\xad\x6e\xb5\xfd\x02\xaf\x3d\x98\x9e\xb7\x91\x92\x75\x1a\xc9\x96\xec\x8f\xca\x6a\x64\x4d\x2a\x6d\x3d\xc9\xf9\xf7\x19\xc9\x1c\xf7\x00\x5b\x8f\xfe\x74\x39\x6b\xa7\x54\x8d\x14\xcc\x29\xe9\xaa\x41\xd9\x73\x26\x19\xcd\x12\x56\xad\xd9\x89\x67\xe9\xf5\x87\x2f\x48\xdd\xdf\x95\x53\xd4\xb8\x26\x4a\xd3\xe7\xcb\xd6\x48\x55\x0e\x2e\xfb\x33\xbf\x79\x6a\x88\x36\x97\x09\x30\x95\x1a\x70\xd2\xb0\xc7\x63\x7e\x8d\xca\xa4\x28\x3c\x34\xe2\x5c\xe3\x0a\x9a\x52\xfb\xe9\x2e\x13\xe3\x6d\xd3\x26\x82\xc0\x58\xc2\xa8\xfa\xd8\x92\x76\x46\x38\x75\xcb\x72\xcb\xe4\x66\xbd\x7c\x9e\x56\x42\xf9\x14\xd0\x32\xc8\x54\xcf\x1d\xdd\x81\x60\xa4\xa5\xb4\xa7\x6d\xc7\x0f\x33\x7c\xaa\x2b\xcc\x85\xc9\x97\x24\xfe\xd4\x5f\x1b\x28\xcf\xf0\x26\x60\x17\x32\x35\xcd\x6a\x5c\x39\x81\x67\xb2\xaf\x5f\x62\x16\x12\x32\xb5\x45\xd8\x80\x32\x6d\x69\x0c\x94\xe5\x84\x80\x6e\xf2\xd4\x71\xf8\x64\x3d\xe6\xcb\x60\xbe\xfd\x43\xba\xab\x53\x89\x58\x76\x74\x9e\xbd\xf8\xae\xc6\x51\xf7\x5a\x55\xe2\xf2\x66\xa1\x18\xfe\x71\x0d\xc6\xe8\x3a\xb3\x01\x37\xec\x44\xbf\xfb\xa5\x7d\xba\x5a\x72\x94\x98\x71\x17\xb2\xe0\xed\x6b\x51\x82\xe3\x7a\xee\xf9\x6d\x7b\xf8\xec\x8d\x6a\x22\x11\x2b\x95\xfa\x0a\x7c\x51\x65\xea\x08\xfe\xee\x06\xa3\xb5\x4e\x89\x83\x20\xc6\x9f\xef\x6e\xc7\x5e\xe3\x2b\x0a\x7f\xbe\x06\x8b\x01\xc0\xda\x49\x1b\xb5\xf2\x24\x7c\x1a\x1e\x41\xbd\xbf\x3b\x16\xea\xa2\xfe\xd1\x13\x01\xc6\x66\xf7\xe0\x34\xdc\xa9\x43\xaa\x3b\x67\x27\x99\xb8\x72\x62\xd7\x93\xae\x6d\x3e\x40\x69\x8b\x42\x29\xf0\x7d\xe8\xa8\x95\x51\xce\x3d\x77\xd7\xeb\xd8\xf2\x59\xb0\xf4\xda\x05\xcb\x17\x4c\x4d\x28\x34\x5f\xbf\x40\x43\x70\x13\x41\x2c\x9f\x8a\x82\xe7\x07\x65\x54\x23\x7b\x3c\x3f\x5e\x51\xa2\x92\x8a\xab\xed\x41\x0e\xd2\xbc\xe1\xa8\xeb\x05\x18\xb9\xb7\x8e\x55\x2d\x57\x0e\xe0\xee\x7b\xf6\x4a\x35\x02\x41\x35\x7d\x99\xfc\x67\x27\x9a\xa8\x9b\xe8\x5a\xaa\x8a\xed\x50\x32\xad\x93\x6c\x4a\x5c\x14\xe4\xef\xcf\x1e\x7f\x5a\xf3\x5b\xf3\x3c\x80\xa0\x7f\xde\x30\x9f\x93\xd8\x9a\xdc\x3f\x86\x19\xf5\x00\x25\x96\x9c\x96\x9d\xdc\x96\x5e\xcf\x4e\xe0\x07\x48\xba\x36\x8b\xf3\x07\x77\x0e\xd1\x20\x09\x3d\xd0\x5d\xff\x40\xaf\x29\x4a\x74\x85\x84\x0e\x66\xfa\x6e\x4e\x2f\x10\xda\x8c\x5b\x78\xe1\xef\x77\x99\x93\x49\x5e\x41\x53\x71\x12\xab\x73\x6d\x31\xd4\x40\x5c\x0e\xe6\x9a\xd1\xf9\xf7\xd0\x0b\x18\xf9\x48\xd9\x89\xb6\xb0\x2f\x48\xac\x63\x73\x43\x57\x3b\x7e\xaa\xca\x78\xe0\xc9\x51\xe4\x6f\x5e\x54\x6f\x06\x38\x21\xbf\xca\x9f\xab\x07\xc3\x0e\x89\xaa\x2e\x86\xe7\x3d\x6f\xa8\x8d\x71\xb7\x4c\x62\x17\x9a\xdc\x39\xaf\x19\x6a\x00\x44\xf0\x42\x0f\xeb\x21\x5a\xcf\xb6\x3f\xbb\xe7\xd0\x28\xad\x7e\x55\x76\x66\x10\xa9\x7e\xa7\xe1\xfd\x5d\x4a\xe3\x29\xe5\xd2\xe3\xa3\x4f\x7f\xb6\xc3\xc9\x3f\x30\xd4\x78\xe5\x28\x7a\x69\x9c\x7d\xbf\x1b\x61\x1a\x32\x88\x3a\x30\x52\x25\x68\x63\xf2\x5d\x52\x87\x3c\x10\xe0\x04\x9c\x9f\x6b\x90\x4c\xca\xb6\xf2\xf5\xbe\x78\x94\x84\x08\x71\xe1\x44\x4f\xeb\x99\x8d\x06\x98\x41\xb0\x26\x02\xcf\xa2\x9f\xfe\x41\x63\x4f\xbb\xc4\x0f\xc0\x2a\x2c\x64\x27\x35\x16\xa1\x2f\xb5\x9f\xc3\x8f\x7d\x68\xa4\x51\x54\x96\xf1\x4b\x43\xe7\x87\x49\xf5\xcb\x40\x92\xe5\x33\xef\xaa\x3c\x0e\x24\x94\x0c\x69\xbf\xe7\xce\xd1\x89\x8d\x20\x99\xfe\xc2\x7b\xba\x32\x08\x11\x0e\xb1\x68\xe0\x4b\x43\xb8\xaf\xf6\x1a\x1a\x66\xdc\xc2\xb3\x27\xfd\xb9\x7f\xd7\x8c\x67\xaa\x82\x39\x50\xd7\x3f\xef\xa6\xf7\xa3\xcd\x55\x0b\x31\xf7\xed\xe3\xe9\x47\x5f\x67\x65\x97\x34\x1a\x31\x53\x6c\xf3\x91\x71\xc6\x88\xf1\x34\x4c\xd2\x4b\xef\x19\x1e\xdf\x7d\xb7\xd6\x09\xcd\x6e\xdb\x86\x6f\x62\x46\x2c\x1a\xf8\xf1\x0d\xa3\xcc\xd0\x41\x6c\x5b\x86\x8d\xb3\x26\x28\x25\xea\x72\x00\xc3\xc9\xa1\xef\x62\x04\xba\xe2\x8a\x94\xdf\xd3\xa7\x5f\x48\x87\xdb\x19\x33\x64\x97\x60\x94\xc2\x02\xcd\x98\x3a\x1d\x22\xe9\x23\xe9\x6f\xac\x08\xee\xfa\xb1\xa4\xe3\xef\x85\xf1\x60\xd0\xf5\x1e\x86\x8d\x1f\x99\x31\x38\x8e\xb3\x6e\x15\x23\xe4\x95\x07\xd2\xfb\xa7\x15\x54\xb9\x67\x93\x66\xda\xf3\xc2\xed\x1d\xa3\x6e\x83\x34\x19\xf0\x91\xf4\xf1\xf3\xd5\x67\x61\x2d\x75\x25\x8f\x2a\xb6\xd3\x29\x07\x84\xa5\x6b\x54\xbd\x34\x89\x06\x97\xc5\x48\xf3\x3f\xec\xd4\xf1\xc4\x0e\xce\xca\x9e\x7c\x0e\x1f\xd2\x8c\xd9\x29\xc5\xaa\x2f\xae\x57\x81\x76\xda\x9c\xd9\x33\x0a\xc5\x70\x77\xd6\x6c\x71\x04\x56\x5d\x4a\x5c\xe4\x2e\x98\x6c\xa0\x21\x08\x8b\x41\xec\xe1\xf9\x59\x43\xa1\x44\x5a\x8d\x2a\x5d\xa2\xfb\x34\xcb\x3f\x00\x77\xc2\x3e\xcd\x5e\x67\x58\x63\x95\x02\xaf\x96\xc2\x29\xe6\xcf\x9b\x6f\xa0\xa1\x63\x7d\xa7\xbd\x4b\x4d\xd5\x0f\x29\x7b\x1e\xe3\xc3\xee\xaa\x68\xf4\x4b\xa9\x95\x13\xde\xf8\x8c\x66\x44\x69\xe3\x98\xaa\x3f\xdf\x61\x3a\xc4\x08\x1e\xc8\xf6\x72\xfe\xee\x15\xf8\xf8\xba\xe6\x68\x6b\x2c\x7c\xe5\x55\xf5\xa4\xbb\xae\x98\x3a\x67\x16\xb4\xb4\xd6\xbd\x39\x39\x9d\x21\x06\x0e\x41\x75\xda\xd3\xb2\xe0\xad\x77\xcd\xd3\x5f\x54\xa9\x74\xd6\xe8\xcf\xdf\x7e\x34\x3d\xba\xaa\x92\xbe\x78\x21\x25\xb0\xde\x37\x9b\xba\x10\x15\x73\xa3\xe4\x01\xba\x2c\x6b\x4f\x61\xca\x78\xad\xcb\x4b\x36\x09\x74\xd9\xaf\xfc\xcd\xa5\xf4\x93\xab\x91\xdb\x50\x2b\x26\x5e\x1a\x5f\x98\xaa\x0c\x5c\x03\x9d\x17\x3b\x27\x7f\x1a\x89\x54\xea\x50\x89\x62\x3e\xbe\xc8\x94\x1f\xa0\x65\x69\x22\xb2\xcb\x98\xdb\x93\x9e\x7a\x0f\x11\x65\x4c\xba\x56\x8f\x32\xc6\x32\x12\x30\x8f\xdd\xf7\x6f\x3e\xa2\xcd\x80\x65\x03\x13\xda\x9b\x7f\x19\xf3\x01\x23\x34\xb9\x55\xaf\x9d\xd8\x95\x1f\x3a\x51\x93\x03\xad\xb5\xfc\x9a\x03\x16\xf0\x25\x1b\x33\x9b\x7c\x77\x39\x99\xff\xf5\x71\x6d\xed\xe5\x4e\x35\x54\xc7\xa2\x4e\x59\x9f\xde\xd6\x9e\x77\x86\x31\xeb\x93\xae\x2b\xf1\xac\xef\xd2\x7b\x8d\x7e\xbe\x05\x33\x58\x3c\xf1\xfe\xfd\x29\x03\x04\xc4\x7b\xdc\x1a\xb3\x6d\x44\xb8\xbd\xbb\xca\xc4\x1d\x09\x59\x4a\x44\x89\x4d\x53\x33\x55\xe1\x42\xe2\x22\x72\x97\x6e\x57\x55\x57\x5b\xef\x25\xfc\xde\x68\xad\xbc\xad\x71\x87\x24\xf3\x90\x3b\x37\x8e\xd2\xda\xd9\x65\xda\xb0\x79\xcb\x41\xaf\x9a\xfe\xec\x26\x43\xb6\x92\x38\x54\x30\x24\xea\xc6\x98\xbb\xdc\x5f\x07\x28\x48\xb0\xc7\xb4\x45\xb4\xdc\xa0\xff\x04\x1e\xb5\xa9\x07\x1e\x01\xb2\x26\xfd\xc4\x58\xc3\x9c\x9f\x94\x58\x89\xd1\xb4\x7e\x75\xf6\xd7\x12\x98\x17\xa3\x89\x00\xfd\x3e\x10\xab\x86\xe9\x51\x48\xab\xd8\x1c\x61\x08\xe3\xe6\xe2\x90\xc4\x8a\xaa\x03\x2b\x90\xf5\x48\x7f\x7e\xf1\x9b\x06\x00\x10\xa4\x48\xa3\xc7\xad\xe5\x35\x99\x11\x47\xf5\xc6\x50\xe0\xfa\x02\x45\xa5\xc3\xcb\x9e\x35\xfb\x42\x1e\xc2\x07\xe3\xb4\xbb\xf3\xcc\x11\xf2\xa0\x76\x12\x3b\x7d\x38\x10\x7a\xd7\x26\xcc\x7a\x2f\xb0\x7d\x94\x41\xcb\x7c\x7a\xe9\x30\x8d\x2e\x6e\xd7\x0b\x28\x22\xca\x0c\x91\xa2\x2a\xa0\x9f\xe0\x9d\x37\x56\x4c\x50\x3b\x20\xe9\xb0\x11\x53\x18\x23\xbc\x62\x80\x7a\x99\x5e\x8d\xf7\x14\x3c\x9f\x37\x1a\x38\xdf\xc9\xaf\x1f\x3b\x44\x3b\xfa\x29\x60\xb4\x85\xf4\x86\x73\xb9\x5b\x91\x94\xc7\xdc\xef\xd6\xab\x63\x76\xfa\x15\x70\x2c\x7f\xa9\x53\x2d\x1f\xea\x94\x00\xd2\x83\x3d\xe9\x11\x27\x2f\x32\x53\x46\x9f\xa5\xa6\x01\xe1\x3b\x1b\x2f\x69\x4b\xaf\x62\xd0\x54\x3a\x39\x79\xec\x49\x54\xec\x5b\x42\x9c\x76\x17\xaf\xec\xb0\x33\x0c\x1e\x6a\x83\x45\x47\x9c\x25\xcf\xea\x13\x86\x0c\x62\x85\xf6\x00\xa0\x01\x5a\x7b\xab\x4d\x6d\x06\xea\xb1\xaa\xf4\x0b\xce\x7e\xf2\x49\x6d\x97\x13\xdb\x69\xd5\x5b\xd2\x1c\x23\xac\xad\x19\xa7\x4b\xe7\x58\xa7\x55\xf1\xf9\xc8\x23\xea\x81\xb5\x50\x19\xd5\xbb\x0f\x81\xbd\xd3\x3b\xa6\x41\x0f\xa9\x3c\xd1\xc8\x0b\x7d\x56\x20\x4c\x58\x30\x07\x74\xb5\x81\xee\x2b\x9a\x68\x05\x81\x26\x3d\x44\xf3\xe3\x4d\x4c\x94\x88\xd3\x80\xc9\x4e\x76\x75\x97\xa6\xc0\xa9\x53\xa8\x06\xd5\xf4\x9d\x4e\xf5\x26\xf8\x23\xe9\xfd\x08\xe0\x0e\x18\x9f\x4b\x91\x90\xec\xc5\x1b\xb4\x8e\x08\x87\xe5\x10\xae\x3b\xa2\x76\x45\x93\xd6\x40\x3d\x08\x2f\xe1\x9f\x17\x5f\xa4\x45\x0e\x8f\x46\x99\xb7\xf9\x46\x8f\x3f\xa3\xcd\x06\x7b\xda\xe4\xc8\xb2\x43\x8f\x18\x5c\x70\x6e\xd7\xa5\x0a\x74\xe6\xcc\x13\xe7\x6b\x3d\x61\xe1\xea\x3e\x98\xfd\xd9\xa7\x0f\x25\x09\x75\x1d\x48\x0f\x99\x71\xe3\x0d\x89\x51\x0a\x02\x0d\x92\x88\xfc\xd4\xf2\xa1\x32\x47\xa5\x56\x3c\x3e\x0d\x9f\x5d\x6a\xf4\xbb\x59\x54\x97\x04\xb6\x9f\xf4\xbb\xc9\x1b\x9a\x36\x3d\x07\x4e\x1b\x7d\x58\x33\x7f\x63\xb6\x1d\x95\x77\x0c\x07\x23\x3f\x1d\x62\xca\x7b\xea\x74\xa8\xdc\x1b\x86\x90\xe7\x15\x53\xa7\xcd\xea\x2c\xb4\xa2\x63\x10\xa0\x14\x1b\x0e\xa9\x1d\x4a\x6d\x06\x0a\x00\x5f\x1d\xa0\x32\xbd\x12\x83\x5e\x35\xec\xe6\x61\x2f\xaa\x02\x61\xda\x1c\x6c\x7e\x2f\x5d\x98\x4e\x95\x82\xc6\x94\x1e\xbc\xfb\xf3\xe7\xea\x7c\xeb\x6a\x99\xd8\x14\x3d\x84\x8e\x2f\xd4\xba\x9b\xb0\x55\xbe\xbf\x59\x6b\xac\x33\x8f\xfb\x08\xc7\xdb\xff\xa4\xd4\xdd\x73\x79\x4f\xa1\x18\x1e\x7f\x02\x17\x64\x0f\x43\xa8\x40\x76\xb2\xcc\xc4\xa3\x63\xce\x69\x10\x57\x92\xb3\x32\x61\xf2\x9a\xaa\x88\x22\xba\xfb\x4d\x1c\x07\x2f\x27\xcc\x8d\x79\xa5\xd9\x85\x7b\x95\x50\x61\x3b\x8e\x31\xdb\x78\x77\x9c\x91\xea\x95\xda\xce\x89\xfc\x9a\xb5\x67\xcb\xa7\x31\xed\x8a\x42\x31\xfc\xe0\x1d\x98\x9f\x97\x82\x18\xca\x98\xe5\x26\xfd\x93\xd4\xa2\xd2\x3d\x4e\xcc\xbd\x17\xda\x83\x44\x59\x72\xb2\x73\x7f\x7a\x52\x3d\x6f\x3f\x80\xa1\x47\xde\x55\xb6\xba\x24\x80\x54\xe5\xda\xc1\x43\x35\xe4\x23\x47\x9d\xe4\xdc\xcf\xb7\xe3\xb9\x74\x2d\xf8\x20\x68\x23\xff\x95\xc3\x52\x8c\x60\x79\x99\x1f\x5e\x95\x5e\xc8\xa0\x18\x14\x5b\x26\xed\x7e\x36\x9d\xf3\x54\x02\xb7\x8c\xe4\xef\x74\x50\x9a\x75\x0c\xbb\x09\xdd\x81\x60\x5e\x99\x59\xc8\xbb\x8d\x3e\xfe\xcc\x01\x2a\xdc\xd9\xb4\xca\x3c\x1b\x0e\x2c\x88\x33\xc7\xb2\x6a\xb5\xc5\xd8\x98\x42\x31\x5c\x62\x9b\x14\x40\x3f\xee\xbb\xba\x07\x86\xc4\xef\xdd\x26\xcc\xc1\xb7\x5e\x9a\x3b\x54\xfb\x0a\xe1\x00\xac\x3c\x77\xe1\xf8\x36\xf1\x5b\x27\xaa\x5e\xa5\x49\x7d\x2f\xda\x59\x15\x26\x2e\xb8\x7e\xd9\x07\xdb\x0a\xe2\xf9\x23\x13\x01\x23\x0a\xf9\xd5\x0d\x02\x0f\xdd\x46\x8d\xfb\xbc\x2a\x48\xa3\x06\x90\xa5\xf0\xe3\x3b\x46\x6b\x61\xc3\xf5\x05\xb7\x53\xba\x35\xda\xa5\x11\xb7\x15\x1d\x92\xc5\xfe\xcc\xda\x61\xe9\x00\x1d\x45\x33\x86\x20\x0a\xf3\xc1\xce\x5c\x6f\x36\x81\xa5\xbf\x7f\xee\xe0\x0f\x2f\x31\x96\x97\xed\x33\x87\x4b\x29\x41\xdd\x18\xef\xd0\xa2\xd1\x4a\xe5\xa0\xdd\x33\x7a\xc4\x31\xc3\xe6\x84\x71\xb0\xb2\xe2\x36\xaf\x4a\x92\x73\xee\xfa\x7d\xe6\x60\x94\x47\xf9\x67\xcc\xd0\xc8\xba\x4f\xc4\xde\x1b\x1c\xa6\xc0\xd9\xcf\xae\xc6\xed\x61\xf3\xe8\x6d\x84\xb7\xde\xf5\x01\xe3\xef\x59\x95\x94\x19\x15\x31\xcd\x59\xb6\xbb\x9e\xdf\x63\x4e\x73\xcb\x54\x00\x12\x19\x8b\xf2\x9b\x5c\xc9\x8a\xaa\x11\x84\x97\xe4\xef\x39\x9e\xee\x82\xcd\x2a\x54\x38\xf7\x0b\xd3\x0b\xcc\xb5\x6a\x88\xd8\xa0\x59\x55\xb5\xd0\x5e\xb5\x70\x72\x74\xf5\x50\x65\x65\x9c\xd0\x3a\x46\xed\xd6\x3c\x5e\x5d\x97\x5b\x01\x18\x54\xf4\x67\x6e\x1c\xa8\x0e\x3b\xf8\x3b\x8b\xa1\xb8\x5d\x76\xdf\x58\xdc\xfd\x8b\xb9\x00\xc2\x54\xb1\x3f\x77\xd5\x75\x86\xaf\x30\xab\xd6\x12\x64\x6e\xf8\x8b\x79\xca\xde\x94\x07\xda\x81\xfa\xbb\xc7\x65\x1c\x61\xe5\x78\x50\x78\xcb\xfd\x86\x47\x95\x4f\xa1\x21\x22\x33\xff\x3b\x9f\x31\x15\x31\xa8\xc3\x02\x47\xe6\xef\x4f\x8e\x35\x70\xee\x20\x6c\x1f\x53\x21\xd7\x6f\xd2\x80\x54\x4d\xea\xfa\xd2\xcb\xe2\xe3\xc3\xb0\x9c\x5b\xc6\xdb\x26\x00\xf9\xb5\xe3\x75\x94\x77\xac\x22\x92\x1f\xbc\xe7\xf4\x88\xe6\xf8\x68\x73\xf0\xb0\x2a\x14\x05\xad\x9e\x46\x7f\xee\xd9\xc5\x86\x73\x05\x29\x95\x48\x2d\x85\x79\x9d\x8d\x7d\xdc\xc2\x0a\x22\xaa\xc4\x21\xe5\x3e\xbd\x54\x5c\xfc\xc6\x39\xf2\x85\x59\x36\x93\xd9\xe2\xff\x3d\xa2\x7b\x42\x34\xf5\x5f\x5f\x7d\x54\x03\xc5\xd9\xbc\x81\xc0\xdb\x21\x6a\xb6\x37\x6d\x06\x5a\x4b\xf8\x28\x4f\x35\xf6\x25\xdd\x3f\xd0\x62\x31\x60\xa7\xa6\x55\x23\x4a\x9b\x21\xfc\xe1\x76\x53\x37\xa8\x44\x6d\xf0\x38\x0d\x9b\xa6\x00\x60\x4d\x30\xb7\x2e\x81\xb6\x9f\xd3\x80\xb6\x4d\xea\xc2\x94\x28\xdc\x39\xda\x10\xd8\xb4\x6a\x04\x90\x9c\x29\x78\x6a\x7e\xe5\x5b\xaa\xec\x6c\xd0\xf6\x27\xfc\x9d\x7d\x1a\x26\x9b\x08\x29\xcb\x38\x69\x5f\xfa\x72\x62\xb3\xda\x09\x85\x62\xf8\xfd\x77\x0d\x33\x79\xd2\xcd\xca\x69\x3b\x91\xcc\xba\xf2\x18\xf3\xb5\x7b\x0d\x06\x7d\x11\xe8\x5b\xdd\xfa\x8a\x9e\xd1\x20\x22\x6c\xff\x19\x5a\x7a\xd0\xd2\x6a\xa2\x87\x0e\xe3\xe2\x2f\x42\xbf\x16\x66\x08\x9f\xdb\xa7\xb2\xdd\x2b\xb0\x6b\xb7\xf1\xcd\xf1\xc6\x65\x09\x46\x5c\x97\x1a\xec\xae\x5f\xec\x6d\xbb\x32\x9f\xb9\x81\xf2\xa0\x79\xff\xae\x24\x2c\x76\x54\xda\xcb\xf8\x8d\x86\xb8\xa1\x57\xe3\x81\x8d\xa9\x53\xe6\xef\xf7\x49\xd1\x4c\xee\x53\x1b\x86\x66\x99\xab\x0c\xe4\x6f\x85\xda\x65\xc7\x60\xc1\x66\x1f\x7e\x52\x93\xb3\x26\x3e\xa0\xf7\x8a\x61\xee\xb0\x01\x05\xe4\xc2\x46\xe9\xfd\xec\x65\x7e\x8c\x96\xb1\x68\x23\x3e\x37\x33\xdb\x7e\x78\xa1\xab\x00\x82\x65\x2a\xc0\xba\x4a\x3f\x77\xfa\x4e\x18\x9d\xf7\x58\x50\x1f\x22\xca\x6f\x43\x93\x45\xa9\x1e\xdb\x03\x77\x69\xf2\xc8\x4a\x73\xcc\x10\xc3\x06\xe1\x5a\x21\x92\xbe\x6d\xf6\xd0\xbe\xf4\x17\x16\x4a\x01\xb3\x93\xcd\x5f\x78\x3c\x1d\x67\x24\x13\xe1\xef\xe3\x64\x1f\xbd\x46\x60\x2a\x99\xf9\xf7\xc3\x23\xe4\x45\x41\x52\xc7\x63\xab\xa8\xdc\x6f\x0f\x1b\x30\x57\x1b\xaa\x09\x80\x15\x61\xc6\xf4\xf7\x15\x66\x73\xab\x17\x58\xb9\xf8\x1c\x5f\xd4\x40\x88\x0d\x90\x11\x83\x0c\xfa\x3f\xf6\x5d\xa8\xed\x37\xaf\xcd\xa8\x3f\xac\x6e\x49\x87\xa5\x98\x02\xac\x0d\x5a\xdf\xb7\x59\x2f\x4c\x2c\x2e\xca\x6d\xc5\x64\xbe\x7a\x1f\xf2\xcb\x96\xd5\xa2\x0c\xbe\xa1\x55\x50\xb9\xff\x5a\x6b\x88\xe7\x50\xe2\x48\x16\x45\xbe\x33\xbd\x37\xbb\x69\x0f\x68\x11\x45\x79\xc7\x53\x23\x63\x01\x3c\x09\xe8\x0b\x6f\xbb\x63\x8c\x06\xcb\xf1\x6b\xe6\xad\x54\x26\xe9\x52\x02\x36\x25\x52\x1c\x21\x7b\x4d\x87\x01\x1c\xe1\x81\xeb\x77\x60\xab\xec\x37\x27\x30\xaf\x5b\x28\xad\x05\xd5\x0a\xbb\x7d\x9e\x29\x64\x4a\xa3\xad\x85\xc5\x94\x2d\x19\x99\x60\xe7\x2d\x8f\xb1\x33\xc6\xaa\xd2\xae\x4a\xdc\x2a\x60\x09\xa2\xf8\xf6\x41\xa9\x20\x7b\xb5\x00\xe0\x42\x7f\x6e\x96\xf1\x2a\x89\x4d\x85\x4f\xcb\x71\xe5\x2d\x3d\x0c\xeb\x2e\xb7\xea\x3c\xc0\xd6\xd1\x47\xef\x55\xfc\x14\x52\x2f\x14\xc3\x3f\x0f\x30\x3e\xc3\xf3\xc0\x71\x02\xd3\x8c\x9f\xdf\x3f\x44\x6b\xbe\x80\x70\x6d\x38\x6d\xe1\x10\x79\xbc\xf8\xe0\xd2\x17\x2d\xd0\xc5\xd2\x70\x76\xda\x9c\x39\x5d\xb0\xf3\xfe\xf0\x96\xd1\x1e\x2e\xc7\xda\xad\xdf\x7b\xe7\x7f\x39\x68\x61\xfd\x76\x6e\x8b\x45\x48\x04\xf3\x3c\xe5\xe2\x17\xd6\xc6\xa5\x17\x18\x75\xab\x30\xc8\x6f\x40\x99\x0d\x85\xc2\x65\x7b\x15\x94\xf1\x0a\x00\x70\xdd\xbe\xdb\x00\xe0\xc1\x04\x3f\xa6\x32\xfd\xf5\x88\x96\x71\x33\xdf\xb7\x29\x3a\x7f\x01\x21\x7a\x05\xbe\x98\x92\x08\x3c\xf9\x62\xb2\xde\x63\x83\xe3\x45\xe3\x4a\xca\xc6\xd5\x0f\x1b\x1e\xac\xac\x89\x5e\xdb\xd1\x49\x3f\xad\x24\x79\xd6\x76\x19\x75\xef\xc2\x87\x36\x6b\x16\xf6\xcc\x6e\x52\x41\x90\xce\xd7\xda\x6b\xb2\x0f\x9d\x28\x50\xc5\xe8\xa2\xf5\xbd\xc6\x01\x63\x95\x04\xb2\x21\x93\xe7\xd3\x3f\x22\xc1\xa5\x81\x91\xda\x99\xc7\x8d\xbe\x0b\xe8\x2b\x48\x44\x4a\xa7\x50\x99\x5b\x85\x08\x7c\x07\xd1\x0f\xa8\xe6\x04\x26\x28\xb1\x99\xe7\x44\xb7\xb9\xe5\x1e\x73\xc6\xe0\x34\xec\x38\xd5\x5c\x7b\x4f\xfa\xda\x1d\x1e\x08\x37\x1e\x22\xf6\xe7\xde\x36\x24\x10\x2d\x22\x44\x62\x8c\x10\xfe\xe9\x91\xc4\x0f\x17\x51\x33\xd0\x40\xde\x60\x5a\x9f\x36\x71\x61\x63\x63\xe8\xe0\xf6\xa1\xf1\xdf\x60\xd7\x19\x5e\xc5\xeb\x86\xce\x2a\xf6\x51\x64\xbe\x70\xa0\x6b\xb0\x3c\x04\x4a\x36\x1a\xfa\x67\xef\x94\x0a\x52\xb7\x30\xbf\x86\x29\xa0\x77\xa6\xa1\x9b\xc2\x0b\x25\xea\xf7\x50\x2a\x15\x10\x73\xfd\xa1\x3a\x63\xbb\x3a\x41\x5d\xf4\xba\x49\x3a\x01\x12\x30\xb5\xe1\x5f\x96\xe1\x66\xa8\xda\x04\x2c\x50\xbf\x64\x88\x24\x7b\xd4\xe2\xae\x22\x92\xe5\x83\xb7\xcc\x02\x17\xe5\x55\x20\x27\xff\x74\xb7\x91\xb5\x12\xe1\xc3\xd3\x9d\x5a\x28\x86\xbf\x3c\xa1\x8c\x29\xcb\xd4\xe1\x6e\x3c\x9e\xee\xd0\x81\xcf\xd9\xb7\x37\x1b\x10\x9d\xc0\x29\xd9\xf1\xa4\xf0\xc7\xdb\xd3\x27\x46\x55\x50\x5a\x4f\xf1\x52\xdf\x9e\xad\x29\x0e\xa2\x39\x60\xf6\xd7\x9a\x45\x6e\x21\xee\x39\xbf\xfb\x5e\x92\xe5\xd5\x59\x49\x3b\xce\x47\x3d\x3d\xb6\x3d\x72\x52\x51\xa1\xcc\x97\x73\x88\xdd\x87\x4d\x0e\x2a\x73\xe3\x89\x4b\xe6\x81\xbd\x06\xe5\x1d\x34\x82\x61\x31\x64\xf6\xec\x52\x2f\xc0\x0f\x7c\x0f\xb8\xb6\xeb\x1f\xd1\xce\x66\x4e\xd0\x62\xe9\x3f\xce\x34\xf7\xaa\xe7\x10\x54\x39\x0f\x8f\x49\x03\xc5\x76\xa4\xb9\xa6\x0e\x66\x11\xb7\x0c\xc7\x61\xfe\x9e\x09\x86\x80\x51\x1c\xbe\x98\xdf\xae\xec\x48\x25\xff\x3e\x7c\xe7\x05\xd5\x39\xf3\x88\x4d\x3d\xdd\xb9\x38\xbb\xdb\xf0\x27\x16\x80\xea\x83\x60\xba\xe0\x45\x83\xbe\x58\x4e\xa7\x70\xd9\x4f\xde\x91\x70\x9f\x6a\xa0\x53\xab\xf9\x38\x19\xe6\x1e\x0e\xed\x65\x16\x8f\x09\x3d\xcb\xae\xea\xcf\x3c\xb9\x30\x5d\x1f\x5b\x35\xe2\xc2\xf1\xd9\x96\x19\x57\xbb\xd3\x0d\xfb\x69\xb3\xa6\x79\xbe\x59\x45\xe7\x6f\x19\x6d\x04\x8b\x06\x0f\xbc\xd8\x3a\xef\xdd\x53\xe7\xa7\xa5\xe5\xa6\xc4\xab\xa4\x50\x0c\x87\x6e\x36\x3d\xd3\x4b\x5c\x24\x22\x96\x85\x25\xb8\x61\x8b\x55\x8e\x56\x84\xd9\xa7\x0e\x19\xdf\xe4\x10\x3b\x3e\xf7\xbf\xb5\xd0\xd0\x51\xe1\x31\x71\x44\x33\xbc\xdb\x6c\x8e\x2a\x3d\x4b\xb0\x12\x7a\xc3\x45\x0f\x7e\xf8\x66\x43\xbb\xb7\xe4\x13\x86\x43\xb5\x5c\x66\x80\x21\x2f\xe6\x36\x19\xea\xc9\xcb\x39\xe1\x92\x6b\x92\xe6\x19\x75\xdb\x7b\xb0\x93\x3a\x92\x93\xb8\x46\xe0\xe0\xff\x8f\xd7\x14\xa5\xc8\xe6\x6e\xb5\xe0\x31\xc7\x89\x55\x6b\xb3\x3f\x18\xab\x08\x0e\xb7\x05\xdc\x6f\xe7\xb3\xe4\xa6\xed\x54\xf1\x89\x31\xd8\x09\xd7\x89\xa4\x3f\x03\xe6\x91\xf6\x81\x41\xf2\x7c\xf5\x19\xe6\xc8\xde\x30\x29\x59\x51\x13\xdc\xe5\x26\xea\x28\x3c\x39\x49\x2d\xda\x16\xad\x72\xc1\x9b\x5a\xab\x6c\x00\x0e\x47\x90\xaf\xe2\xf9\x89\xab\x5f\xb1\x3f\x7b\x7c\xc0\xc8\x74\xd4\x50\xe1\xe0\xd7\x86\x54\xba\x45\x1c\xda\x21\x8f\x8b\x25\xdb\x46\x28\x38\x93\x4e\x5e\xf8\xec\x83\x66\x10\x70\x68\x0c\xf0\x91\xe2\x89\x52\x0e\xb8\x50\x0c\x07\x2e\xd2\x0c\xef\x45\x9c\x81\x9e\x35\xc1\xc0\xe4\x21\x12\x26\x86\x38\x0d\x5a\x69\x1c\x99\x04\xc6\x78\xf8\xba\xa9\xb4\xa7\x23\x51\x7c\x04\x4c\xcd\x97\x4b\x2a\xf2\x10\x8f\xd4\xa1\x71\xdb\xea\x32\x55\xe3\xb4\xa8\x8c\x29\xf6\x3b\x46\xbb\x39\xc1\x33\x4b\x4e\xc2\x7f\x64\x87\x69\x2f\x9a\xb8\x3e\xd8\xa8\x65\xfe\xdc\x68\xd3\x43\xb0\x25\xd7\xef\x4d\x03\x6b\x08\x99\x1a\x84\x70\xe8\xe2\xf6\x1b\xde\xfa\x3d\x35\xea\x4a\xab\xa3\xaf\x6e\x4d\x07\xb2\xae\x19\x32\x4b\xfb\x70\xb7\x66\xa3\x2d\x04\x6b\xa2\x36\xc5\x77\x5f\xd6\x5a\xa3\x5e\xcb\xaa\x61\xa1\x5a\x1d\x70\xa1\x06\x21\xa7\xd5\xf6\xbe\xe7\x8b\x87\x35\x5a\x36\x8a\x6d\xf4\x67\xef\x7e\x3e\x29\x2c\x7b\x83\xf6\x62\xe0\x93\xdb\x35\x71\xc4\xe8\x22\x2c\x82\xf2\xf8\x7f\xd9\x23\xdf\x37\x77\x5d\xe9\x55\xfa\xe2\x0b\x98\x13\x34\xb9\x4d\xfc\xd8\x61\x20\x73\xf4\x71\xc5\x02\x93\xa6\x44\x6d\x5d\xec\xcc\xaf\x35\x99\xe8\x69\xd3\x3a\xe7\x74\xcc\x9c\x09\xef\x77\x50\xd7\x50\xad\x39\x8f\xb9\x49\xf8\x93\x8a\x3a\x0b\xbb\xe6\x14\x60\x8c\xf4\xa9\x2e\x89\x67\x6f\xa1\x22\x19\x30\x24\x3e\x66\xb8\x63\x95\xb8\xed\xe1\x18\x1a\x9e\xd8\xf3\xe3\x55\x65\x89\xf9\x40\x01\xb0\xa9\x20\x59\xb6\x65\x8c\x19\x40\xeb\xd4\xeb\xe1\x51\x95\x0c\xf3\xfc\x27\x26\xa7\xe3\x70\xa5\xc4\xa6\xb4\x89\x0c\xdd\x3a\xcf\x10\x42\x2e\x55\x91\x7a\x62\xb6\x35\xdf\xdc\xa4\x49\x80\x12\x0b\x31\x84\xdf\x95\xe0\x14\xd4\x25\x91\x76\xbd\xfd\x99\x67\x35\x1b\x2b\x64\xc2\x45\xff\xfa\x91\xd5\x0a\xc8\x3e\x0d\xde\xec\x57\x06\xe0\x79\xba\x84\x3a\x54\xe8\x86\xf7\xf3\xd7\xa6\xeb\x82\x99\x85\x69\x78\x90\xe7\xa7\xae\x4e\x2f\xc5\xaa\xe3\x43\x69\x95\x9f\xd2\x2b\x8b\x5f\x1e\x00\xc4\xe3\x4e\x8d\x51\xde\xe4\x92\x9b\x3c\xb9\xdb\x88\x0e\xd4\x6e\xc4\x4a\x73\xcb\x07\x9a\x65\x52\x0f\x69\xc5\x9e\x7a\xe1\x2a\xe3\x6c\xb5\xa9\xe5\x0b\xee\x32\x0b\x53\xac\xff\x9c\x15\x7b\x81\xb0\xaa\x2b\xdb\x59\x99\xcb\xb5\xc7\x00\xc9\x69\xf4\xc6\xdf\xf7\x44\x12\x6a\x7b\x78\xa1\x18\x5e\xb4\x6a\xb4\x51\xe8\x34\x1a\x36\xf5\x3a\x24\x88\x74\xd8\x32\x0c\x9d\xcb\x29\xb3\x6a\x54\x68\x82\x16\xb9\xad\xdb\x0c\xe1\x01\x30\x92\x8d\x0f\xc2\xbc\x65\x1c\x7b\xa8\xc9\x2f\x41\x87\x5d\xaf\xa7\x1f\x63\xa1\x80\x4a\x09\x8d\xd9\xff\x8b\xb3\x03\xee\xf7\xef\xdb\xe6\x30\xdd\xf7\xb9\x63\x27\xa0\x80\xdc\x4b\x12\x57\x75\x25\xb1\x63\x82\xe8\x94\x77\xa4\x11\x6b\xcb\x26\x3d\xc8\x0f\x9d\xad\x0e\x20\x8f\xd2\x42\x31\x9c\x2e\x8d\x36\x5c\xee\xf9\xc4\xae\x82\xcc\x70\xee\xd3\xcf\x2a\xcb\x29\xaa\x29\xb5\xe6\x9e\xe8\x48\x27\x2b\x36\x6d\xb2\x54\x63\x28\xf7\xf4\xee\xe1\x32\xdb\xb5\x59\x89\x8a\xc4\xcc\xfd\x9d\xfd\xe6\x14\xb5\x49\x04\x23\x25\xbb\x15\x4b\x95\xdc\x30\x79\xb8\x16\x4d\xec\xb2\x60\x60\x68\x95\xf9\xe2\xa4\x91\x72\xa5\x37\x29\x08\x27\x24\xcd\xc9\x5f\x3d\x9f\x56\x29\xf6\x6a\xa4\x5e\xf3\x5b\x5c\x9c\x2e\x37\x7a\xfb\x2d\x03\x7f\xea\x46\xa9\x1f\xac\xe0\xcc\x6d\x86\x86\x99\xf4\xa4\x64\x34\x4e\x62\xff\xdf\x49\x8d\x18\x4b\x80\xcb\x14\xdf\xf0\xaf\xb6\xe8\xd6\x7b\xd5\x00\x02\xe0\xb0\xd7\x70\x8e\x7d\x29\x4c\x3e\xbf\x2a\x35\x68\x05\x2d\x05\x10\x0c\xcb\x35\x0d\x4c\x25\x18\x08\xe4\x86\xfb\xf6\x9c\x2d\xef\x1d\x4a\xd7\xfc\x8d\xdb\x0d\xff\x0a\x11\xbd\xec\xa9\x6d\x51\xf8\xfd\x73\x75\x49\xe1\x2a\x11\xa0\xe6\x1b\x3a\x9b\x0d\x31\x4d\x2e\x50\xaa\xd0\x84\x42\xed\x5d\x03\x27\x62\xe1\x86\x80\xb9\x2e\x6b\x30\x62\xf2\x48\xfb\xf3\x9d\xd2\x62\x08\x00\x35\xa0\x7f\xfb\x7f\x27\x68\x4c\x0d\x1c\xb3\x44\xf7\x5d\x7c\xcf\xa8\x12\xa8\xa8\x70\xe1\xe0\x29\x38\xbe\x66\xca\x70\x72\x2e\x7b\x21\x99\xb3\x37\xa5\xce\x54\x9b\x55\xe0\x7c\xb8\xbb\xa4\xfe\xb9\x9b\xda\xcc\x63\xa8\xca\xa1\xa1\x31\x3d\x5f\x70\xf0\x90\xcf\xfd\x68\xa3\x21\x89\xc1\x85\xaf\xc9\x25\xe6\x67\xac\xc0\xed\x30\x7d\xda\xd4\x98\x49\x39\x4b\x92\x26\x82\x72\xb7\x43\xf4\xe6\xe1\x65\x07\xa5\xa7\x7d\x4f\x99\x26\x0d\xb2\xc2\x63\x86\xff\x32\x98\x91\x12\x17\xfb\x09\xe1\x27\xd6\x18\x44\x9c\x26\x15\x75\x66\xdb\x71\x19\xb9\x7c\x93\x4a\x1f\x3d\x3f\xaa\x72\x75\x0d\x84\xc1\xc3\xf0\xf5\x4f\xef\xf4\xe1\x51\x3e\x3a\xd1\xf0\x2d\x20\x1e\x2d\x11\x1b\x15\xea\x73\x07\xee\xd5\x7d\xb3\x1a\xb5\x56\x2f\x8b\x55\x20\xd6\x9f\x79\x81\xd6\x13\x75\x1a\x36\xed\x4d\x0d\xd1\x72\x06\xad\xd1\x0f\x84\x1b\x5d\x2a\x16\x5a\x77\xcf\x95\xab\x10\x5c\x18\xfb\x73\x17\x1c\x35\x7d\x6f\x2b\xbe\xe6\xcd\x9c\xb9\x57\x89\x9d\x34\xe0\x54\x7e\x79\x8f\x56\xda\x05\x25\x34\x01\xcc\x3d\x36\x1e\x9f\xf4\xf5\xbc\x69\x93\xb2\xc6\x28\xb8\x71\x69\x0a\x28\x10\xad\xdc\x29\x4f\x27\xc3\xac\x72\xa2\xa2\x17\x8e\x32\xb6\xa8\x60\x0e\x73\x49\xac\xf5\x1b\x7e\x6c\x87\xce\x43\x6c\xb2\x2a\x17\xd2\x9a\xf9\xc4\xcb\x46\x11\xc2\x7c\x9a\x78\x23\xce\xdf\xad\x80\xad\x33\xa1\x9e\xef\xdd\xaa\xc9\x57\xfa\x2d\x1b\xe1\x13\x50\x88\x7d\x79\xb2\x5a\x8d\x1c\xc2\x17\xb4\x91\x2e\x7b\x2c\x79\x06\x97\xce\x99\x15\x7d\xe5\x66\x83\x9d\xe0\x05\x8d\x86\xcd\xe2\x6a\xf1\xd8\xab\x38\x93\x5a\x84\xc0\x4b\x5f\xf7\x7b\xfd\xec\xfe\xa9\x46\xf9\x65\xd0\x8d\x8c\xec\x7f\xed\x01\x09\x98\x99\xde\x19\xdd\xce\xbf\xbc\x6b\x9a\x0c\xd9\x54\x1e\x93\x06\x77\xc0\x0b\x44\x35\x6e\x37\x65\x2f\x79\x4a\x87\x70\xb9\x3e\xb8\xa9\x40\x1a\xf4\x91\x30\x96\x7c\xb4\x2c\x4a\x31\xb2\x6c\x6d\x0c\x91\x21\xbe\x22\x91\x3d\xc5\xfe\xcc\xf4\x27\x12\xc8\x16\xa0\xeb\x30\xbf\xfb\xf2\x21\x4d\x5c\x86\xb8\x28\x62\xff\xf4\xa6\xf4\xd0\xb8\x14\x08\x4a\x02\x39\x04\x4a\x07\x9e\x2d\xe3\xd3\x21\x63\xda\xf4\xce\x4e\xf9\xc2\x17\x75\x69\x66\xe7\xd2\xcb\x13\x1c\x7b\xb6\xaa\xd6\x99\x1a\xce\x16\xc3\xfe\xdd\xb2\x91\x25\x8d\xa3\xa2\x90\xdb\x9a\xaf\x5d\x1e\x47\x2c\xfa\xc1\x17\x64\xee\xca\x7c\xd6\x07\x60\xaf\x2f\xec\x4b\x9f\xd8\xbc\x02\x92\x64\xe1\x9c\x57\xd5\x92\x53\x3a\x4c\xd1\x6a\xff\xf1\x09\x93\x39\x2c\x87\x1e\x38\x74\x39\x7a\x52\xc1\xd2\x94\xb4\xcd\x69\x10\x52\x67\x3d\x66\x26\x4d\x82\x53\x0f\xb3\xae\x1b\xc3\xf4\x55\x4d\x9f\x2e\xbb\x6f\xdb\xde\x49\x0a\xb4\xa8\x0c\x57\x47\xf3\xba\xf5\xc3\x35\x6a\x7a\x0f\x6d\x22\xc0\x2d\x33\x7b\xd3\x08\x8d\xfd\x82\x3a\xa4\xb0\x95\x7f\x7b\x2f\xfa\x95\x2f\x22\xc2\x77\x40\x77\xc8\x4c\xcd\xdf\x69\x18\x21\x17\xbc\x7e\x98\x2f\xbb\x36\x47\x4f\xe9\x96\xa0\x81\x17\xa0\x07\x48\xae\xb5\x65\x78\x9a\x24\x8d\x51\x22\xf3\x5c\xaf\x0e\xad\x06\xcb\x9a\xdc\x2f\x2b\xe9\x71\x94\x88\x9e\x73\x20\x7d\xbd\x62\x34\xc5\x7b\x1b\x93\x6d\x5c\xb0\x40\x21\xb4\x63\xf2\x45\x3d\xed\xdd\x46\x22\x65\xd4\x21\x5e\x8f\xea\xd5\x45\x60\x85\x60\x98\x42\x9f\xbf\x44\x89\x77\x08\xbf\x50\x0c\x47\xcf\x4d\x3e\xfc\x8a\x42\x17\xd8\xb9\x0d\x4c\x7e\x65\xce\x9c\x39\x85\x62\x78\x8e\xa6\xf6\x26\xa8\xe5\x13\x17\xbd\xf3\x72\x23\xcf\x92\x55\x69\x59\xb0\x0a\x0c\xeb\x4e\xbc\xa0\xc3\x04\x41\x76\xe3\x97\x07\x0c\xf9\x6e\xe2\x90\x54\x83\x6f\xd6\xe2\x24\x1f\x6b\xb9\x3a\xb7\x8f\x4f\x4c\x13\x7c\xe6\x4e\xa1\xbd\xc0\x79\x5e\x61\x1c\x45\x81\x8f\x2a\xbc\x72\xc6\x34\x34\x71\xd0\x2d\x35\x69\xa2\xee\xf6\x37\xc3\x65\xd9\xe3\x0e\x8d\x8a\x5f\xec\x43\x1e\xfb\x21\x4e\xad\x17\xd8\x76\x49\x30\xdf\xd7\xfd\x6a\xb2\x3f\x3a\xa0\x85\xf1\x1a\x6d\x15\x8a\xe1\x05\x13\x74\x9f\x10\x69\xee\x01\x11\xf9\x11\x69\x28\x78\x1d\x73\xcb\x44\x0b\x7e\x67\x6c\x9f\x78\x9a\xd5\x74\x5a\xc8\xe3\x4f\x5f\x32\x9c\x99\x4a\xdd\xd4\x4a\xf8\x07\xdb\x7b\xcf\xd3\xc9\x15\x36\x71\x13\x6c\x69\xee\xe4\x2b\x17\xea\xd1\xb7\x9d\x50\x9a\xbd\x67\xb6\x42\xc2\x78\x81\x6d\xb3\xa6\x9e\x1a\xe4\x3e\xbc\xcb\xd0\x8e\x69\x44\xdb\x83\xa2\x02\x47\x31\x7c\xe8\x69\x09\xbb\x95\xae\x30\xd1\x0d\xcf\x78\xf8\x9c\xb8\x90\x14\x14\x61\x80\x99\xfb\xf7\xe1\x43\x88\xfe\x9a\x79\x24\x1e\x10\xe6\x3f\x7d\xca\x14\xb3\x6c\xd8\xdc\x21\xbe\x27\xbb\x20\xb9\xf1\x4b\xda\xed\x7c\x41\x85\x92\xd8\x78\xbe\xac\x9a\xa7\x29\xcf\x53\xb0\x78\xbf\x45\x9b\x93\xf6\x10\xe6\x03\x8e\x1b\x0a\x80\xfe\x6c\x6b\xd2\xc5\x66\x66\x2e\x95\xf1\x00\x4b\x2e\x59\xc4\x7f\x33\x3a\xaa\x1e\x25\x18\xcc\x2e\xda\x69\xb2\x80\x48\xd5\x21\xbe\xf4\xac\xca\xfc\x57\x47\xd2\xe8\x29\x33\x1a\x33\xa0\x57\x2e\x1e\xa5\x95\xa9\xc8\xdb\x8a\x1b\x69\xb9\x27\xa4\x65\xcd\x35\xbc\x46\x5c\xcf\xd3\xd7\x59\x66\xb0\xc6\xf8\x2f\x94\xb8\x40\xdd\xcd\x11\x88\xc8\x58\xcc\x45\xa9\xdd\x27\x2d\x7f\xb6\x41\x20\xb5\x6c\x68\xea\xa2\xae\x42\xf8\xd2\x56\x43\xd0\x42\x02\xf1\x5a\x31\x91\xe7\xae\xbc\x81\xc0\x17\x4e\xe2\xa8\x70\xd5\x8b\xa3\xcd\x3f\x0e\x3c\xc0\xee\xc3\xb9\x7a\x7b\x07\x26\xfe\x60\x44\x53\x28\x86\x5d\x73\x4d\x1f\x05\x4e\xca\xaa\x02\xe2\xe3\x34\xf7\x28\xb7\xc2\x6c\x5f\x4a\x7b\x85\x8d\x50\x2a\x2b\xd6\xa2\x17\xa7\x40\x0b\xb7\xf8\xe6\x34\x9b\xbb\x3c\x70\xad\x78\x14\x93\xc9\x74\xa8\xc0\x94\x96\xc9\x58\xa9\x99\x97\x89\xd8\x96\x79\xf0\x6c\x95\x58\xa3\x63\x4c\xf4\xbb\xfb\x87\x68\x21\xab\x63\x36\xcc\x40\xcf\x30\x49\xb9\xa4\x81\xab\x05\x84\xd0\x16\xbc\x72\x81\x86\x7e\x15\x0e\x07\xb6\xa4\xa2\xea\x9c\xb1\x51\xa1\x50\x83\xe8\x34\xff\xd6\x1d\xca\xf5\x18\xc6\x9e\x43\xdf\xd0\x0f\x25\xea\xf2\x1e\x0a\x79\x71\xe6\xb3\x67\xe9\x9e\xcd\x36\x18\x08\x47\x5f\xf9\xf7\xf5\x46\x75\xc1\xad\x7a\xac\x91\x39\x44\x0a\x2a\xe3\x78\x31\x7a\x13\x5f\x3e\x68\x4a\xf8\x55\xa2\x3c\x5e\x12\xfa\x7e\x57\xba\xa0\xad\xf4\x02\x79\x20\x64\xd0\xdc\xb4\x57\x03\x0e\x39\xac\x2a\xa0\xa1\xf4\xe4\x53\x1a\xe2\x94\x58\xf5\x16\xe0\xa7\xc2\xcd\x8f\x9b\x1a\x1a\xd2\x5e\x4c\x85\xf7\x5f\x19\x03\x3a\xd4\x59\x6c\xc9\xc9\x4b\xe3\x54\x5b\xd9\xd4\x88\xbb\x54\x3f\x1f\x67\xe8\x21\x10\x5b\xc2\x02\xf3\x9f\x9f\x9a\x3e\x00\x5d\xd2\x47\x04\xe3\xba\x78\x47\x66\xe7\xb3\x69\xda\x4d\x9d\xd8\xc4\xab\xa1\x32\x4d\x5b\x09\x1d\x3e\x26\xb9\xe0\x57\xf5\xc6\xb0\xa1\xbc\xf5\x78\xfa\xca\xc1\x53\x33\x21\xd6\xe7\xcf\xd9\xaf\x32\x45\x57\x52\x97\x32\x7f\x18\x9b\x7e\x20\xbc\x11\xbd\xc2\x40\xd2\x7d\x20\x68\xfc\x65\x77\x3c\x40\x04\x2c\x97\xfc\x43\x67\x5c\xb2\x46\x84\x33\x1d\x54\x2b\x56\x29\xa1\x75\xd0\x98\xbb\xe0\x0e\x73\xd4\xe9\x52\x9f\x08\x09\xfe\xcb\xfc\x71\x86\x81\x11\x12\xdc\x4b\x20\x64\xff\xb3\xcb\x60\xf7\x70\x9b\x5b\x24\xf0\x62\x2d\xd5\xdc\x45\x53\x93\xfe\x51\x39\x88\xfe\x21\xdc\x11\x7b\x41\x39\x94\xb8\xc0\xa5\xc8\x3c\x6c\xc0\x47\xd0\xb1\x26\x2e\x01\x2b\x7b\x8d\xfe\x09\xf1\x7d\x2a\x20\x90\xc9\x36\xce\x6b\xaf\x1b\x7f\x4f\xa3\x64\x3a\x66\x7e\xd4\x26\x6a\xe8\xe5\xd9\x5d\x51\xb1\x91\x9d\x26\x25\x36\x4b\xb4\x46\x91\xc6\xf7\x85\x8d\xda\x16\x01\x6a\x14\x04\x91\x07\x76\x98\x63\xcc\x6a\xd2\x5f\xca\xcf\x33\x34\x61\x4b\x14\xc5\x70\x30\x8c\x5c\x96\x35\xba\xe6\xcc\x8b\x8d\x01\xa5\xc7\xc6\x77\x26\x69\x81\x06\x45\xb3\x51\x18\xfd\xa0\x51\x15\xd3\xdb\x02\xd6\x80\xe3\x12\xf7\xe6\xff\xdc\xac\x61\x1a\x9b\x28\xc2\x05\x7f\xb8\xf4\x58\xd2\x7c\x66\xb4\xa7\x0d\xd8\xfa\xf1\x71\x1a\x23\x13\x7c\x6f\xa3\x0b\x1d\x33\x56\xd9\x35\x24\xb5\x63\xfe\x85\x64\x39\x49\x44\x6f\xf4\xab\x9f\x1c\xa7\x75\xd0\x5d\x30\xea\x84\xe4\xf4\xf8\x1a\x03\x45\x4a\xea\x41\x8b\x36\xb5\x84\x2c\x0c\x26\x4b\x79\xb6\x40\x34\x29\x80\xfa\x97\x68\xfd\x10\x52\xe6\x0d\x59\x8b\x17\x4e\x9d\xa3\xd5\x3f\x0e\xb4\x21\xae\xec\x90\x1e\x41\x22\x15\xcb\x73\xbf\x30\xc4\x45\x5c\x16\xc5\x36\xd4\x0b\x54\xbf\xf5\x13\x7b\x90\x4c\xa7\xe3\x6c\xea\xd1\x91\xe9\xac\xc9\x89\x72\xcd\xf2\xe9\x78\x73\x99\xe7\x8c\x97\x5c\x21\x16\xb4\xe2\xb1\xa7\x70\x41\x9f\xca\xe1\xca\x01\x7a\x20\x17\xb2\xc3\xb5\x6a\x18\xc6\xd2\x70\x13\x7d\xcf\xab\x84\xe2\x36\xd2\xd2\x09\x4c\xd9\x5d\x12\xa9\xde\x60\xd4\x8a\x76\x06\x00\x31\xff\x7d\x7d\x12\xf1\x67\x77\xcc\x2c\x14\xc3\xd5\x67\x99\x4e\x26\xd8\xef\x2d\x57\xce\x35\xab\x2d\xb0\x3e\x08\x5f\x31\x24\xdb\x88\xe7\x11\xb0\xf9\x47\xf2\xd7\xc3\xbe\x31\xc2\x26\x81\x8f\xce\xfc\x09\x29\xe1\x73\x06\x61\xd9\x26\xa8\xec\x2f\x57\xe2\xfb\x96\x9f\x77\x7a\x57\xad\x62\x38\x72\xb0\x26\xfc\x43\xca\xcc\xb6\x09\xf4\x88\x7b\xff\x7f\xba\xbe\x3e\x4e\x8a\xe2\xce\xdb\xe9\x9e\x18\x62\x78\x77\x59\x5e\x44\x44\x24\x80\xc8\x6c\x96\x65\x59\x16\x42\x8c\x0a\x22\x22\x32\x04\x89\x22\x1a\x42\x4d\x77\xcd\x74\xed\x74\x77\x35\xd5\xdd\x33\x3b\x7b\x1e\x1a\x42\x8c\x7a\x9e\x41\x1f\x63\x3c\x8e\x18\xa2\x9c\x31\xc6\x23\x84\x10\x62\x88\x51\x8f\x23\x9e\x67\x8c\x21\xc4\x10\x8f\x10\xe2\x19\x43\x38\x8f\x18\xcf\x23\x1c\x7a\x4c\xfb\x7c\xba\xaa\xba\xab\xba\x66\xef\xaf\xcb\x09\xec\xce\x74\x57\xfd\x5e\xbf\x2f\xef\x26\xd8\xf9\xb9\xf1\x5d\xd4\x5d\xc5\x33\xa6\x0f\x13\xda\xf6\xa6\xcc\xaf\x95\x57\x37\xb5\xe7\x56\xca\x7d\x87\x17\x00\xda\x2b\xed\x55\x34\xfb\xa9\x43\x63\x9a\xc7\x7b\x9f\x90\xff\x8d\x03\x09\xa0\x31\xab\xe7\x9c\x11\xf2\xf6\x9b\x7e\x8d\xff\x39\x47\x51\xfa\xc5\x80\xa4\xe8\x36\xf8\x78\x9b\x3c\x1c\x72\xc2\xb8\xf2\x2a\x14\xa3\x4f\xd8\x62\xea\xe1\xe0\x00\x13\xa3\x61\xb0\x57\xad\x7f\x73\xb3\x4a\x10\x72\x4d\x48\xb8\xf1\xe0\xd3\x16\x27\x94\x75\x06\x56\x81\x70\xed\x17\xed\xfc\x23\xea\x18\x22\xa1\x64\xe5\x73\x53\x54\x19\x13\x87\x0a\x7e\xb0\x29\xc5\x9e\x77\x59\x25\x77\x43\x40\x70\xab\x8c\x9e\x7e\xef\x2c\x6e\x68\x5a\x07\x71\xe7\x50\x6c\xea\xb7\x2f\x51\x36\x95\x8d\x52\x32\x69\xcf\x77\x74\x89\x41\xd8\x40\x68\x58\xb8\x8e\x0c\x49\x39\x30\x17\x4d\x50\x7d\x6c\x2a\x90\x9b\xaa\xeb\xfb\xce\xb0\xa1\xf3\x75\x88\x84\xbe\x05\x25\xc9\xc6\x39\x13\x2e\x16\x4a\x4e\x29\x34\x47\xed\x4f\xe0\x49\xf6\x5c\x1c\x28\xef\x0d\x3e\x79\xb9\x78\x8b\xd0\x85\x0e\xed\x38\xa3\x51\x12\x9e\x75\x7e\x57\x42\xe9\x7e\xef\x71\x05\xb0\xd7\xd1\xe2\xac\x0f\x8f\xb1\x84\xbc\x7a\xe9\xd5\xc9\x88\xea\xcf\x8a\x60\x40\x85\x00\x57\xf2\xcb\x9c\xfa\xc8\xe8\xa4\xef\xf3\x30\x74\x01\x2f\xfb\x16\xb4\x68\xab\xc7\x87\x32\xd1\x42\xd1\xde\xde\x36\x2c\xfd\xd8\xbd\xf4\x9c\xef\x39\x2d\xea\x77\xa6\x48\xcc\x9d\xc6\xe2\x3f\xfc\x7f\xab\xa5\x09\x4c\x68\xdb\x30\x60\xea\x94\xb9\x3b\x7b\xa4\xa1\x25\x33\x8f\x48\x46\xab\xd3\x25\xe7\xd6\x52\x48\xe8\x99\xfc\xe6\x96\x56\x39\x3b\x0a\xc5\xfd\xf9\x0a\xd6\x20\x2c\x05\xa4\x70\x83\x05\xcb\x72\xf0\xa9\x3e\x2a\xd2\x42\x19\xda\x6c\x01\x96\xbf\xdd\x12\x2d\x9d\x3d\x1d\xd8\x0e\xc8\x94\xa3\x6b\x27\x89\x82\xae\x42\x4f\x31\x2d\x43\xe6\x3f\x29\x3a\xd8\x1a\xb6\x43\x07\xb9\x0c\x40\xaf\xed\x98\xc6\xd1\xac\xc8\x77\x90\xef\xd3\xdd\x6b\x53\xfb\xab\x5b\x47\xc9\x12\x59\x1e\xad\x9e\xb5\x5f\x3c\x7e\xbe\xd4\x8c\x02\x07\x31\xd1\x30\xbd\x7e\xb9\x50\x32\xe8\x28\xb5\x74\x2d\x70\xb4\xb2\x1e\x84\x84\x60\x32\x88\xfd\xe2\x79\x3b\xa5\x95\x2f\xf6\x83\x3a\xa0\xc4\xa2\xf9\x25\x25\x65\x03\x07\xd2\x7f\x2d\xe9\xb5\x07\xea\x4e\xc6\xf7\xd8\x44\x8f\x53\x88\xb5\xef\x1e\x6f\x69\x8e\xa0\x17\x88\xc1\x4b\xbe\xf8\x90\xb2\x43\x83\x35\x6c\x27\x48\xb0\xe8\xea\x35\xd9\x1b\x36\x7f\x56\x4f\x67\x27\xc7\xf3\xdf\x3d\x79\x74\x06\x4c\x01\x69\xc2\xd1\x47\x6c\xcf\x18\xdf\x02\x62\x32\xf5\xe5\xe8\xb5\x73\xb3\xa3\x8e\x4f\xf1\x79\xf5\x33\xd9\x5f\x61\x23\x27\x21\x96\xe4\x6b\x0b\x27\x8a\xb7\x1e\x98\x2d\x8f\x4e\xeb\xb7\x24\x27\x44\x54\x71\x51\x99\xcd\x80\xf4\x5d\x07\x15\x3c\x1f\x34\x6d\x40\xb2\x66\xc3\xdd\x92\xa1\x2f\xf6\x7d\x18\x20\x50\x28\x46\x57\xed\x55\x51\x27\x89\xa6\x3d\xc3\x02\x68\xdf\x52\x84\x13\x80\x41\x91\x07\x74\x76\xf0\xc7\x71\x2d\x7d\x07\xa0\xb0\x53\xfe\xcc\x9e\x7e\x49\x74\xbf\xd5\x44\x42\xee\xbf\x17\x4e\x56\x1a\x1f\x6e\x03\x2e\x8b\x27\x8c\x3a\x34\x46\xd2\x17\x29\x07\xb0\x82\x89\x1f\xf7\x59\x5f\xec\x54\xa1\x09\x8e\x07\x83\xc4\xe8\x29\x3f\x50\xca\x1e\x11\xdf\x20\xc8\xa1\xee\xbf\xfc\x33\xe5\xd1\x7e\x19\x82\xed\xd0\x39\x77\xea\x1b\x78\x4a\x72\xeb\xe0\x5a\xef\xb9\xe5\x0f\x49\x08\x66\x82\x03\x48\x2b\xb7\xfc\x17\xb6\x5f\x24\x2b\x00\xd5\x61\x0b\xf2\x3f\xea\x23\x82\xa4\x10\x00\xa9\x8f\xf9\xf5\xaa\xe1\xd2\x7b\xec\x2f\x14\xa3\x2f\x48\xeb\x7b\x2b\xcc\x6c\xec\x72\x23\x97\x27\x68\x14\x93\x17\xa9\x7a\xe9\x2e\xd9\xae\x8b\x8d\xb9\xdf\x3e\x9a\x56\x2c\x85\x9e\x79\xf1\xdf\x7a\xf8\xd6\x29\x4a\x70\x85\x25\x17\xd6\x40\x86\x50\x17\x55\x5e\x66\xab\x8e\x0c\xab\x99\x56\xb4\xa5\x71\xd9\x87\x59\x03\x8a\x99\x4a\xee\xc7\x33\x58\xe9\x84\x5d\xc8\x10\x76\xf1\x93\xe9\x22\xc3\x84\x05\x59\x7c\xe6\xe7\xed\x56\xf0\x8a\x01\x9f\xd5\xf0\x69\xe8\x4f\x14\xb5\x9a\x38\x5b\x0a\xbc\xe7\xd3\xd1\x05\xd2\x80\x3c\x74\x03\xaa\x9d\x2c\xce\xf5\xc5\x53\x38\x63\xd1\xc3\x71\x14\x6e\x57\x6e\xb8\x8b\x5c\x58\x30\x41\x62\x1a\xf9\x27\x59\x5d\xae\x11\x7f\x67\xda\xf9\x0d\x79\x85\x13\x6f\xcb\x0c\x96\xa1\x5f\xd1\x96\x04\x4c\x0a\xd0\x49\xa8\xf2\xb9\x43\x4f\x8f\x92\x0a\xe7\x3a\x84\x55\xaa\x4b\xa3\x80\x2a\x99\x3f\x51\x83\xf3\x1d\xce\x9d\x98\xbd\xf3\x1e\x20\x41\xd2\xe2\xc1\xb5\x12\x40\x36\x8e\xe4\xac\x51\xfd\xd8\xee\x29\x4a\x11\x43\xdc\xf8\xa9\x0c\x64\x0c\x60\x73\x95\x37\x17\xfa\x16\xf0\x60\x5a\x04\x2e\x2c\x87\x2e\x8d\x88\x93\xe9\x7f\x9f\x0c\x82\xc9\x9d\xfd\xbd\x25\x13\x76\x9a\xdd\x97\x5f\x76\x15\xd7\x9b\x13\xfe\x36\x1f\x6e\x57\x87\x83\x1c\xd7\xce\x6b\xcc\xa3\x9b\xc6\xa4\x31\xc5\x94\x9d\x71\xb4\x2f\xce\xe2\x3e\x3a\x0d\x8f\x8a\xed\xc5\x5f\x74\x4d\x87\x4a\xbc\x24\x15\x80\xdc\xc4\x2e\x68\xed\x0b\x6a\xac\xf1\x03\xaa\x7a\x9a\x14\xbc\x3f\x8d\x58\xba\x0f\x2c\x44\x53\xae\xc9\xf0\x30\x9f\x9d\x30\x41\x8a\xb1\xbe\x11\x42\x79\x41\x98\x9b\xf4\xb8\x48\xd3\x0e\x34\x2c\xe0\x22\x9f\xc9\x14\x69\x17\x58\xc9\x8e\x9a\x99\x0c\x07\xd9\x98\x0c\xf8\x78\x59\x3f\xc0\x4d\x20\x01\xa9\x58\x38\x0c\x24\x6d\x78\xed\x0b\xaf\xa4\x9a\x36\x19\xbd\x92\x19\x0f\xb4\xe0\x1f\x28\xff\x89\xa5\x7c\xe3\xb0\x88\x5f\x65\xea\x53\x1e\x20\x2f\x4e\x0b\x3f\x9c\x28\xe1\x74\x3c\x08\x4d\xbf\xca\x6d\x02\xa2\x93\xb3\x12\xd1\xb3\xc0\xaf\x52\xed\x31\x71\x49\x5f\x3e\xc3\xf5\xbc\x69\xf8\x2d\x14\xa3\x9a\xa7\xac\x6c\x68\x6d\x9c\x2c\x32\xde\x1c\xde\x1a\x25\x6d\xc8\x4d\xf6\xa2\xca\xdb\xe7\xbb\x32\x8a\x29\x40\x94\x24\xac\xbb\xc7\x54\x7f\xbb\xd0\xb4\x91\xcb\xf6\x37\xab\x6f\x1b\xa3\xbe\x5b\x5e\xb7\x5a\xfb\xa4\xa2\x7e\x20\xce\xe6\xd1\xdf\xaa\xee\x1d\x36\xc6\xa9\x58\xf9\x8a\x13\x5c\xf0\x9d\xb6\x93\xb4\x0c\x7c\xdc\x52\xb1\x78\x01\x4c\xa4\xb4\x3e\x31\x4e\x49\xd9\xc0\xa6\xbb\x49\x3e\xb3\x59\xf4\x52\x16\x37\x60\xc3\xfe\xd0\x1f\x6c\x06\x9f\xff\xab\xed\x82\x73\xe2\x53\xfd\x5b\xb5\x34\xf9\xa4\xa4\x47\x47\xed\xca\xf9\xc4\x56\x7f\xfd\xb4\x94\x78\x13\xd4\x06\x05\xa3\x1f\x1f\x2a\x30\x99\x85\x62\x14\x2a\x96\xce\x1e\xb6\xed\x84\xfb\xe0\x49\xd0\xdf\x38\xec\xf4\xd2\x7d\xd1\xff\xce\x18\xc6\xeb\x38\xc0\x5c\xe5\x72\x5b\x17\xa6\x69\xc3\x0a\x25\x8b\xfa\xdc\x67\x9f\xe7\x7c\x01\x98\xd2\x83\x6e\x3f\xdb\x2e\x83\x29\xe4\xb1\xf4\x77\x27\x8a\x3a\xce\x24\xa8\x06\xf9\xd2\x6a\xe4\x68\x99\xae\x06\x0c\x58\x85\xd0\x4b\x0d\x54\x9a\xda\x1d\x33\x2f\x6d\x39\x3b\x21\x17\x3c\x69\x19\x56\xeb\xb7\x3e\x35\x52\x9a\x8c\x43\x8f\x06\xbc\xa2\xa5\x8e\xfc\x1d\x44\x2b\x7b\x5e\x10\x7f\xf7\xa8\xd2\x3b\x3a\x73\x3a\xe6\x75\xcd\xe1\xcf\xe9\xad\x36\x15\xf3\x4c\xb7\xda\xbc\xb3\x7c\x6c\x5a\x02\x24\x2b\xdb\x21\x73\x83\x2a\x14\xa3\x6d\x57\x28\x71\xac\xcc\xfe\x34\x75\xd6\x3d\x2f\x7b\x7a\xa7\x27\x70\xad\x4e\x45\x83\x05\x7b\x30\xbe\xc4\x74\x61\xba\x9f\xa8\xc5\x62\x25\xb4\x53\xe9\x6c\xfd\x55\x6e\xda\xef\x24\x36\x0a\xd1\xd8\x5d\xe9\x34\xc7\xaf\xa7\x9e\xab\x85\x27\x54\x97\x46\xc6\xc4\xf6\x2d\xe4\x71\x11\x04\xfd\xd9\x87\xd5\x4a\x0a\xd3\xda\x96\x9f\x1d\x6d\xfc\xd6\x61\x62\x44\x56\x2b\x14\xa3\x2d\x9b\x54\x92\x9d\xe3\xa0\x20\x80\x49\x25\xa4\x55\x26\x4e\xab\xb7\x2c\x14\x3d\xaa\x86\xac\xba\x07\x4e\x52\x09\xb3\x0e\x26\x90\xcb\xb5\x36\xb5\x67\xfa\x47\x49\x3a\x70\x1e\xf3\x40\xcb\x5d\x7a\x9e\x34\x8d\x2a\x97\x31\x43\xf1\x34\xf5\x45\x4f\xab\x8a\x7a\xdd\xf3\x78\x94\x5d\xbc\x2d\xc5\x49\xb8\x01\x4c\xbd\xf4\x24\x33\x1f\x16\xf7\xcb\xc0\x0f\x58\x75\xad\x8d\x7d\x50\x78\x70\xd8\x40\x46\x01\xbd\x3a\x44\x6d\xd9\x91\xc9\x97\x89\xaf\x3c\xc0\x82\x7e\x00\xa9\x0d\xe0\xae\x33\xa9\x53\x24\xf3\x02\xdf\xde\x27\xd4\x53\xaa\x18\xba\x48\x2e\xb6\x86\xbf\x9a\xad\x4e\xad\xf8\xaa\x91\x82\x47\xf7\xf5\xc9\x8a\x25\x88\xb2\x78\x1e\x9b\x36\x4e\xc3\x4e\x67\xcf\x98\x8f\x02\x2e\xbd\x5d\x92\x1a\x33\xdf\xb0\xa0\x19\xda\x5c\xd5\x96\x2c\x50\x99\x9e\x36\xaa\xd2\x01\x92\xa4\xd2\xb4\x56\x72\xbd\x27\x20\x0c\x1c\xc0\x66\xaf\x5f\x93\xcc\x7c\x99\x50\x71\x5a\xc9\x3e\xb0\x4c\xe1\x26\xe0\xba\x9b\x0e\x67\x86\x1e\x19\xa3\xfc\x21\xf7\x26\xc9\xed\x7d\x5e\x7c\xd0\x3a\xc6\x66\x89\x20\x93\x96\xbb\xfa\xd2\x48\x82\x2f\x20\x03\x27\x0d\xfc\x75\x7d\xd2\x9c\x6c\x3e\x8d\x95\x5c\xe9\xb3\x1f\xba\xd8\xb3\x70\x89\x82\x28\xf2\xb7\x9f\x91\x76\x10\xf1\x79\xa1\xa2\xa2\x1f\x56\xb8\x6c\x94\x5d\x9e\x58\x87\xd6\xa7\x64\x27\x6e\x28\x51\x0c\xf9\xd6\x6e\xd5\xd5\x99\x12\x4c\x81\x4d\x57\x53\xf1\x67\xb0\x6a\xd9\x9f\x6b\x41\x60\x07\x16\x2f\xb9\x9c\x19\xaa\x99\x86\x41\xd5\x0d\x13\x32\xd3\xcd\xe7\x8a\xb9\x39\x7d\x2a\x73\x97\x8d\x48\x5e\x35\x88\x53\x79\xa1\x18\x6d\xed\x9a\x5c\xff\x3f\x97\x90\x1c\x0b\xbd\x62\x31\x2f\x8e\x4b\x76\xfc\x07\xec\x7e\x1c\x7f\x49\x86\x18\xa0\x44\x9b\xf0\xe8\xd1\x76\x59\xd1\x93\xf9\x4e\xb0\x2a\xfc\xcf\x7b\x04\x60\xde\x89\x6b\x40\x5b\xda\x41\xe7\x2f\xe6\x7b\xb1\x00\x02\xd2\x28\xc0\x06\x4b\x0b\x3f\xdf\xad\x5c\x69\x08\x1c\x07\x04\xfc\x4a\xe7\x9a\x93\xb2\x97\x87\x8a\x9f\xd2\xc2\x61\xe1\x33\xed\x52\x77\x44\x81\xe6\x88\x55\xbe\xfa\x81\xe1\x2d\xa6\x36\x28\xf1\x9f\x18\xb1\x3c\x7b\xa2\x08\xc6\x0c\x44\x97\xfb\xc5\x19\xf1\xc5\x38\x27\x0b\xf0\x52\xfa\x37\x4f\x64\x07\xc8\xa0\x0a\x1a\xd0\x57\xac\xc0\xf5\x8d\x33\xb8\x77\x26\x55\xde\xd0\x23\x3b\x8b\xfb\x8e\x1f\xf4\xed\x13\x24\x11\x45\x4a\xaf\x8e\xb6\xcd\xcc\x4e\x13\x00\x81\x2e\x60\x96\x13\xc9\x0f\x26\x03\xb2\x16\xb9\x5b\x21\x8c\x82\x97\x5b\xa9\x28\x2e\x40\xc7\xb3\x71\x83\xb3\xbe\x8b\xcd\xfc\xc4\x81\x36\xe5\xf8\x30\x5c\xb1\xfe\x9d\x23\x9c\x19\x4a\x12\x70\x8f\x56\xed\x1e\x2f\xf7\x8e\x3e\x34\x42\x86\x08\xa5\x77\x67\xe3\xca\x8b\xb3\x30\x26\x7f\x30\x51\xc5\x07\x37\x27\xb6\x3f\x94\x05\x17\x30\xa0\x5b\x6e\xca\x89\x71\xd2\x3c\xc2\x88\x0f\x3f\xd7\xd4\x2c\x36\x73\x7f\x8c\xda\x64\x40\x41\xaa\x7d\xae\x5d\xdc\x21\xd3\xe9\x43\x97\x1b\xdf\xac\x3b\x67\xb8\x34\x24\xa4\x39\x7c\x05\x19\x25\x61\x5e\x6a\x90\xcd\x63\x7f\xf9\xb0\x30\x59\xa5\x05\xcf\xb3\xdd\x8c\xed\xb1\xc8\x02\x54\x44\x44\x2d\xa9\xc6\x73\x7d\x92\xab\x5a\xfc\x03\x6e\xdb\xa1\x76\x7d\x35\x31\xa8\xc9\xfd\x66\x27\x3b\xd7\x20\x0c\x28\xe8\x8c\x01\x29\x8f\xce\xca\x5e\xbb\x12\x41\x25\x48\x0d\xf3\x88\xa0\xbf\xe5\xde\x92\x39\x87\xf1\x93\xa1\xe7\xf7\x9a\xc5\xe3\xd5\xd2\x0c\x05\x1c\x95\xdd\xcc\x3d\xf6\xe6\x30\x59\xdd\xbd\xd8\xd4\x66\x3d\xc9\x9e\x7b\x39\x24\x01\xaa\x41\xce\xd0\xd4\xdf\xdb\x2f\xbf\x52\x0a\x29\x63\x22\xf8\xcc\x76\xe6\x2e\x45\xa9\x96\x12\xef\x3a\x0a\xc5\xe8\x42\xbb\xc5\x48\xcf\x80\x89\xe6\xe2\x7b\x2b\x54\xcd\x6b\xd3\x84\x6e\xf2\x85\x36\xbf\x94\x3d\x91\x75\x0b\xdb\xf4\xf3\xf0\xeb\xfc\xe4\x20\x86\x5d\xac\xd0\x3a\xb6\x38\x7b\x0d\x6a\x08\x06\x2e\x70\xf8\x00\x80\x4e\x5a\xba\xde\x57\xc8\x1c\x80\xf8\x3c\x02\xeb\xef\xae\x50\x79\x35\x84\xf0\xa6\x36\xf7\xd5\x40\x59\x5d\x52\xa9\x56\x5e\x56\x35\x73\x9b\x6e\x55\x3d\x1b\x39\x09\x8c\x96\x3b\xe5\x57\x64\x97\x6f\xdb\x06\x1e\xe3\x44\x47\x3f\x39\x9b\x2e\xd1\x9c\x56\x68\x44\xee\xbe\x1d\xac\x2d\xbf\xd2\x89\x0b\x5d\x93\x9a\x2c\x5e\xb3\xf2\xea\xe8\x99\x93\x2d\x13\x06\x7a\xe4\x13\x89\xc8\xa7\x87\xb3\x1d\xd6\x52\xec\xbb\xf2\xf4\xf5\x01\x45\x70\x78\x3e\xaf\x79\xfe\xf9\xce\x51\x69\x91\x99\x62\x06\xf5\xd7\x84\x55\x03\xab\xc1\x06\xd4\x69\x23\x75\x65\xa2\xcb\x42\x9a\xdd\xef\x1b\x10\x6d\xc3\x9c\x8e\xb9\x05\x0a\x75\xa0\x9d\xf0\x19\x51\x35\xcf\x9e\x35\xb7\x97\xda\xee\xb9\x0a\x1d\x1c\xd8\x36\xae\xf3\x35\xab\xbf\x4f\x16\x2f\xa6\x27\x3a\xfa\xf9\x53\xd9\x13\x35\xa7\xab\x63\xf6\xec\x64\x71\x32\x76\x13\x5f\x65\x23\x1f\x78\x1e\xa4\x5d\xd9\x85\x6f\x5c\xa2\x14\xa2\x0e\x0e\x60\xa2\x9e\x63\x27\x96\xa7\xfa\x9f\x24\x6f\x68\x30\x80\xc4\x0e\x22\x7a\xff\xac\xaa\x50\x4c\x9f\x4f\xaa\xbe\xf5\xde\x0a\x1e\x0d\x42\xe4\x23\xb7\xc5\x97\x2b\x3f\x75\xb7\xa4\x38\x4d\x1c\xc6\xfd\xcc\xcf\x79\x53\x12\x7e\x0c\x02\xc0\x85\x9c\xa2\x99\xe7\x4d\x52\xdf\x2a\x21\x99\x20\xae\xfd\x7c\xfb\x70\x89\xdb\x4e\xfb\x9b\xfb\x0f\x08\x09\x5e\xb7\x51\x28\x46\x37\xde\xca\x5e\xfe\xb2\xd0\x46\x92\xfa\x65\xee\x9a\x55\x2a\x01\xca\x0f\x30\xbd\xab\xc7\x8f\xca\x5d\x95\x0b\x2b\x38\x40\x0c\x9d\xab\xbd\x35\x5c\x69\x4e\x2c\x40\x52\xf2\xf1\xc0\x62\xae\x12\x6e\x30\x09\x40\x6d\xc8\x72\x11\xa4\x3d\x8b\x6e\xff\x2c\x82\x3d\x1a\xcc\xf4\x6f\xae\x9c\x20\x76\xbf\x2d\x0b\xe3\xfc\x4c\x01\x1f\xe8\x29\xf4\xc6\x3f\x6d\xc2\xd0\xec\x50\xc8\x32\x07\xed\x73\x37\xec\x1a\x27\x95\x18\x06\x24\xd4\x7b\x88\xa3\x05\xff\xa0\xa5\xbf\xd4\x6f\xb4\xf8\x49\x6b\xb7\xb5\x8b\x0f\xdc\x2a\x73\x28\xf4\x33\x83\x50\x36\xb7\x99\xf1\xa4\x6c\xd9\x80\x99\x15\x74\xf4\xf7\x6d\x92\xd4\x8b\xc5\xe0\x84\xb9\xa7\xb5\x04\xc9\x47\x61\x14\xac\x6f\xfa\xd3\x1b\xb4\x55\x8d\xbf\xd3\xa2\x45\xe2\xb4\x69\x9b\xce\xcf\xce\xc6\x42\x26\x71\x74\x63\xab\x27\x69\x1c\x4a\x69\x25\xf2\x4b\x26\xcd\x5c\x58\x8a\x6c\x86\xf8\x13\x3c\xd2\x4a\xaf\xa4\xc3\x42\x40\x83\x79\x9f\xdd\x39\x4e\xf2\x4e\x41\xee\x80\x05\x5d\xfa\x83\x8e\xb8\x23\x25\x7d\x34\x93\xcd\xd9\xff\x69\xc1\x68\x89\xc2\x85\x12\xe2\xca\xf3\x8a\xa1\xb3\x8f\x1d\x18\x20\x07\x26\xf8\xa2\xdc\x83\x7b\x2f\x94\x9a\x1c\xe8\xb7\xb0\x37\xf3\x95\x5d\x0a\x2c\x8d\xbe\xb3\x54\x56\xf7\xd7\x03\xc3\x79\x1a\xb5\x2b\x0c\xb4\xab\x0d\x9d\x98\xfd\xa5\x94\x6a\x5c\xc2\x26\xe2\x16\xc3\xfa\xdf\xf6\x28\x2a\xbf\x21\x71\x30\xb2\xb9\xff\xf0\x8d\x12\x7b\x25\x24\xae\x8f\x28\x15\x4e\xeb\xde\xa9\xa8\x38\x22\x82\xf1\x40\x2b\x1d\xac\x99\xfb\xfe\xee\xd1\xc9\x3d\x93\xea\xb5\xbc\x39\x55\x6c\xe5\xed\x90\x91\x18\xef\xb8\x4f\x56\xc0\xf0\x43\x42\x18\xcb\x4e\xdb\xf1\xb4\xb2\xd1\x09\x70\x16\x6b\xa4\xcd\x1b\xa7\x68\x2d\x63\x12\x96\x00\x83\xf9\x89\x30\xf0\xc1\xe3\x8a\x3a\x84\x93\xe4\xce\xf6\xc7\x45\x31\x80\xa8\x3a\x27\x2d\xaa\xef\x54\xf6\xb0\x3e\xb0\x01\x61\xfe\xed\xb9\x89\xfb\xa4\x81\x33\x24\xae\x1f\x64\xfc\x5e\xf4\x99\x67\x95\x1d\x43\x1d\x38\x0d\x19\xf4\xa0\x7d\xad\x24\xfa\x43\xb6\x52\x2f\x14\xa3\x68\x24\x87\xd6\xba\x7e\x9d\x1d\xbd\x21\x02\x96\xdb\xd1\x11\xc7\x9d\x9b\xcf\xc8\x37\x17\x38\x25\x54\x09\x29\x24\x20\xfe\xdb\xbf\x97\xe0\x0e\x30\x24\x94\xc8\xfe\x87\x7d\x62\xe6\xcf\x9a\xdb\xd7\x24\x98\x89\xc9\x0d\x60\x9b\xf9\xee\xc7\x25\x13\x6b\x48\x4d\xd2\xd2\x05\xf1\xa6\xce\x09\x32\x8c\xe0\xda\x15\x1c\x45\xc0\x74\xe8\x9a\x2f\x67\x63\x70\xd9\xc6\x04\x99\x40\xc2\x07\xe8\x8f\x75\x29\xe2\x8e\x88\x38\x09\x92\x2d\xe0\x7a\x56\x1e\xc1\xd2\x6a\x89\x39\x1e\x5e\xb6\x8b\x4b\x8a\x85\x2e\x33\x4e\x79\x6d\x8d\xa2\x6d\xee\x3b\xc8\x35\x11\xc1\x19\x30\xcb\xdf\x71\x2d\xd3\x1b\xc2\x52\x48\x4a\xcc\xc9\x7c\xc4\xd9\x16\x1d\xff\xb9\x5c\xcb\xa5\xf4\x16\x07\xef\x42\x60\xc8\xb2\xd8\x5f\x59\x3f\x5e\x7a\x24\x76\x9c\xb8\xa5\x03\xf5\x37\x77\x2a\xba\xf2\x04\xd5\x20\x73\xee\xd1\x16\x28\xa4\x21\x1b\xd4\x90\xcf\x9a\xcb\xe8\xcb\x67\x94\xc9\x57\x0d\xb8\xb8\x86\x29\x0d\x2a\x7e\x9c\x43\x79\xf8\x5b\x7d\xf5\xd2\x55\x57\xae\x48\x9a\xe8\xef\x59\x13\xa4\xb0\x42\x90\x9b\x5d\xf7\x5e\xb9\x90\xe5\xf2\x45\x1c\x00\xe1\x14\x8a\xd1\xbe\x2e\x75\x36\xe5\xe0\x54\x40\xaa\x99\x3b\xaf\xc4\x66\x20\x9d\x3d\x6c\x3b\x3f\x7d\xa9\xc2\x84\xc7\x46\xe8\x73\x67\xf4\x66\x6e\xbf\xc4\xa7\xe0\xee\xbb\x01\x33\x6e\xff\xcd\xab\xd2\x9f\x24\x8b\x10\x7a\x4b\xfe\xeb\xa9\x09\x82\x57\xdd\xc2\xcf\xd5\x76\xf6\x0d\x26\xf5\x9c\xc4\xc3\x9f\x9e\x38\x5f\x62\x14\x18\x98\xab\x1b\xe7\x37\x3f\x38\x5e\x79\xec\xa0\x52\x49\xe6\x16\xf9\x79\x9b\x65\xfe\x6e\x10\xc0\x04\x02\x7f\xcb\x11\xd9\x89\xa4\x0f\x54\xd8\xfd\x1a\x7e\x28\x5b\xef\x74\xb8\xe1\x60\x09\x53\xdf\xad\xb8\x84\x4c\x03\x8e\xc7\xdc\x25\xae\x5f\xa3\x7c\x1e\x68\x00\x13\x72\xc6\xa5\xfe\xc2\x15\x2d\x52\x1a\x26\x4e\x0c\x2e\x72\x43\x27\xb7\x98\xb5\xd1\x47\xc0\xfe\xed\xec\x25\x8a\xb6\x58\x1d\x05\x03\x90\x50\x09\x1a\xc9\x68\xfc\x6b\xc7\xb9\x8d\x26\xdd\x21\xc4\xb9\x72\x62\x49\x95\x7b\x63\x32\x9c\x3c\xff\x7d\xbc\xe5\xe0\xa6\xde\x79\xba\x36\x63\x8c\x52\x30\x26\x9b\x99\xdd\xeb\x44\x12\x74\x51\xc5\x0a\x1c\x40\x60\xa1\x18\xbd\x7b\x32\x53\x4a\x60\xd7\x44\xa9\xc0\x64\xce\xe8\x94\xec\xce\x5b\x87\xe9\xd5\x65\xe7\xab\xbf\x8d\x1e\x9c\xdb\x5f\x1a\x25\xc9\x25\xb9\x6c\xdf\xf6\xd8\x70\x45\x5a\x0c\xd9\xd8\x87\x35\xc4\xcd\x0d\x92\x6b\x79\x60\xb3\x58\x9c\xce\xed\xe8\xa2\xe7\xf0\xa5\x74\xe6\x0a\x41\x2a\x25\x78\xde\x6a\x11\x06\x6d\xe0\xb3\x69\xb9\xfe\x5e\xaf\x38\x76\x7d\x74\x0a\x65\xd2\x82\xe2\xbf\x86\x26\x36\x2b\xd7\x5c\xbd\xfc\xea\x1b\x12\xfd\x9f\x81\x73\x5a\x94\xf5\xfc\xd0\x49\xa5\xbf\xf5\x1a\x77\xbc\x74\x30\x09\x00\xa7\x88\xe7\x2f\xdf\x39\x4c\x3a\xda\x85\x62\xf4\xa1\x7c\x0b\xc2\xb2\x01\xb9\xd7\x4c\x33\x07\x5e\x56\xad\x1b\x4b\x3e\x32\x93\xd7\xd9\xd4\xd6\x1c\x95\x6d\xd9\xcd\x38\x38\x50\xd9\xa5\x73\xb2\x68\x0b\x27\xf4\x6d\xe4\xb4\xb2\x2d\xb5\x23\xdb\xd4\x49\x98\xed\x89\x72\x7d\xaf\x00\x1c\x58\xa8\x62\x15\x02\xe8\x07\x38\x6e\xad\xf8\x90\x61\xd5\x79\xd2\xe0\x32\xee\xa9\xa8\x61\x79\xfc\x01\xa6\x8f\x56\xf8\xbd\xd0\x46\x03\x90\x15\xe7\x6c\xa5\xb3\x46\x51\x25\x80\x56\xdc\x6e\x58\x9c\x0e\xd5\x77\x6e\x7a\x78\x2a\xa0\x45\x30\x38\xd7\xd7\x37\x5e\x02\x22\x12\x6e\xf0\x9e\xd4\x18\xb3\x16\x8b\x23\x54\x43\xb6\x0b\x10\x85\xd5\x2b\x8a\x7a\x1e\x68\xe0\x72\x99\x01\xb5\xde\xec\x91\x77\x3f\x20\xa0\x71\x2c\xb3\x45\xfc\xce\x4c\x65\x5e\xde\x51\xea\x70\x3a\x78\x9e\x53\x58\x5e\x6d\xd9\xc3\xca\xb4\xc9\x38\xdc\x29\x9d\x50\x5f\x31\x79\x5c\xeb\x7b\x4f\x9e\xfc\xba\x77\x24\xcf\x02\x9b\xd5\xa2\xd1\x37\xfa\xc6\xc8\x43\x40\xd7\x80\xb6\x4d\xd7\x4c\xf9\xb9\xa3\x67\xb4\x9c\xc4\x00\x05\x2c\xa0\x28\x7a\x29\xfa\xd2\x95\x13\xb2\x9a\x0a\x98\xa3\x97\x28\x92\x3e\x7f\xe9\x6a\x76\x6a\xa9\xec\x49\x32\xb7\xf8\xfe\x3b\x1f\x61\x4f\x93\x1e\xca\x8f\x9d\x95\xf8\xbe\xb8\x5e\xc2\x14\x33\xea\x2e\x91\x20\xb3\x20\xed\x0b\xa2\x9f\xdd\x38\x5a\x02\x57\x39\x28\x24\xd4\x0b\xe9\xe2\xc9\xf2\x90\x3c\x71\xfc\xfd\xd6\x7e\x45\x75\x0d\x54\xf9\x56\xf2\x7b\xfd\xca\x54\xd7\x82\x86\xe5\x36\x98\x29\x0d\x95\x03\xfa\xc3\x69\x49\x84\x03\x30\x6e\x46\x74\xd3\x3d\x4a\x95\x6b\x11\x54\xe6\x8a\x59\xda\x43\x57\x0c\x4d\x5f\x52\xa9\x50\x8c\xf4\x97\x58\x5a\xbc\xba\x86\x6c\x4a\x71\x2d\x67\x9f\x2b\x40\xf1\x51\xe3\x96\x9a\x6a\x4a\xfb\x37\x57\x71\xd3\x83\x6e\xc5\xe6\x66\xea\x22\x44\xdd\x3a\x21\xe3\x71\x59\x46\xbe\xc1\x49\x11\xfe\x91\x74\x99\xe1\x53\x84\x5e\xea\xb5\xf5\xdb\x13\x53\x95\xd7\x5b\x2e\x43\xd8\x6a\x5f\xa7\x37\x76\x8b\x8e\xc8\x89\xeb\x60\x8b\xa9\x32\xdf\x74\x20\x1b\xd9\x6d\x04\x08\x13\x07\xb1\x97\xb4\x5c\x8a\xb8\xab\x60\xd4\xbb\x5f\x3f\xa4\x56\xc1\x65\xee\x52\xd4\xd4\x8f\xef\x54\xc5\x4f\x41\x00\xc5\x90\xed\xf2\x32\x9b\xc4\xf4\x76\x52\x9a\x5d\xfa\x55\x96\x71\xe1\xa3\x25\x04\xb8\x06\xf2\x0d\x9c\x88\x86\xdc\xb2\x43\x09\x74\x56\x1c\x35\x2b\x49\xde\xfa\xd7\x7b\x15\x3c\xb7\x0d\xfc\x74\xae\xa0\x9f\xbe\x55\xd2\x01\xb0\xe2\xa6\xfe\x8f\xf7\xaa\x60\x3b\xc2\xbf\xd4\x5f\xbf\xcf\xd1\xd3\x61\xc9\x46\xa9\xd6\xda\xc1\xb7\x26\x88\xe5\x53\xad\x45\x6d\x70\x49\x76\xe7\xe9\xc0\x00\xd8\x36\x32\xc0\xa0\xf7\xff\x86\xf6\x11\xd2\xb4\xd4\xae\x52\xa9\xdb\x27\xc5\x5c\xba\x0e\xec\x2a\xcd\x2b\xa3\xf6\xa8\xcf\xd7\xb4\x13\xc4\xe6\xb7\xb6\x28\x4a\xa5\x18\x27\x55\x73\xbe\xa4\x08\x4c\x18\x24\x34\x50\x6a\xf1\x37\xf3\x1d\x65\xd8\x1e\x26\x96\xab\x3f\x68\x53\xcb\x27\xec\x89\x68\xff\xbe\xd4\x85\x79\x5c\xc9\x9d\xa6\xc5\xae\xe7\xf9\x13\xc3\x24\x48\x67\xd7\xfa\x07\xef\x72\x29\x5a\x0b\xd9\xc0\x84\xb6\x67\x21\x90\xa4\xd7\xe5\x13\x25\xe3\x36\xec\x02\x62\x58\xb4\x5e\xd4\xcd\x65\x52\xe4\x80\x4c\x2a\x38\x7a\x4d\xc1\xbc\x99\x10\x98\x1d\xdc\x75\xe5\x9c\x81\xb4\x83\xb1\x11\x6d\x19\xee\xea\x1e\x2e\xc9\xa7\x74\xc7\x3f\xf5\x8e\xad\x5c\x90\x00\xf9\xf1\x83\x8d\xa6\x1e\x9c\xac\x86\xc3\x00\xb9\x61\x16\x3d\x7d\xdb\x16\xc9\xba\xc9\x02\x1e\x5b\xa7\xe4\x27\x10\x65\x71\x68\x40\x17\x32\xa3\x19\x45\xae\xcd\x83\x84\xe1\x0b\xb9\x83\xae\x36\x7f\x9b\x3a\x65\x44\xe5\xb2\x98\xc3\x6a\x1f\x7d\x49\x54\x27\x89\x15\xff\xb3\xe2\x99\xe3\x30\x30\xe3\x50\x40\x3f\xc6\x4d\xf7\x4d\x54\x9b\x26\x08\x88\x93\x5c\xb0\xe8\xd5\xf7\x15\xef\x34\x2a\xbb\xc0\x61\x8e\x9b\x4f\x65\x0b\x5b\x60\xdb\x83\x15\xb6\xda\xe5\x8a\x1a\x6e\x9c\x69\x7c\x3e\xbf\x5d\xde\x9d\x7d\x0e\x7d\xb0\x9e\xcc\x93\x5f\x7c\x53\x7a\x72\x1b\x42\x08\x07\xe2\x5a\xf0\xbf\xbd\xc1\xab\x21\x9f\xe1\xd9\xff\xf5\x8a\x49\x4a\xc1\x3f\x80\x7c\xb9\x7a\x8b\x96\x3e\x2d\x61\xc2\xf9\xba\x20\x3e\xce\x47\xc6\x29\xbd\xdb\xfc\xf9\x1d\x49\x11\xfd\x87\x03\x8a\x9a\x4a\xbf\xc7\x98\x39\xc9\x9e\x60\x95\x6c\x21\x98\xdc\x5a\x2a\xcf\xd1\xdf\x91\x7d\x46\xc2\x6e\x2d\x69\x44\xd4\x3e\xe0\xbb\x26\xeb\x2c\x57\x16\x57\xad\x4e\x12\xe3\x9e\x83\x2c\x9e\x2d\x07\x55\x98\xc1\x3f\x2d\x32\x25\xdd\x00\xe8\x20\x26\x28\xb1\x5b\x18\x11\x9a\x12\x11\x30\x7a\xe2\xc8\x34\x91\x15\xa8\x14\x00\xb6\x71\x85\x7a\x7a\xa9\x31\xfe\xdd\x3b\xc5\x37\x62\xd3\x50\x56\xf8\x2f\xda\x25\xa9\xbd\x41\x42\x80\x2b\x0d\x33\xb5\xcf\xdd\xaa\xaa\x22\x32\x24\x08\xcb\xad\x53\x56\x4c\x92\xa8\xd4\x46\x15\xb6\xe8\xad\x3e\x3a\x53\x61\x06\xc6\x15\xc3\x40\xaa\xfd\xf9\xed\x2d\x12\x46\x9a\x76\xcb\x3c\x4a\x5c\x78\x9e\xc0\x33\x95\x09\x0a\xe4\x54\xf8\xc2\x12\xc5\x19\xa6\x12\x57\x90\x49\x7b\x43\x1d\x55\x14\xc1\x34\xe0\x40\xd7\xa4\x58\x3b\x76\xd2\xf3\x3d\x67\x65\x78\x34\x60\x96\x9e\xf9\x25\x35\xb6\x13\xf4\x10\xed\x1a\x17\xf7\x71\x7f\xc2\xd0\x35\x82\x30\xa9\xc4\xf5\xc7\xa5\x78\x67\x03\xb7\x12\x02\xee\xdf\x15\x6e\x99\x20\xbd\x3a\x17\xe1\xac\xc2\xdd\x87\x7b\x14\x9c\x3d\x13\x6c\x8c\xdf\xc1\x37\x6b\xca\x71\xac\x41\xd2\xa8\x5b\x90\x40\x76\x09\x4e\xac\x11\x33\x9a\x0a\x28\xa1\x42\x31\x3a\x53\x52\x75\x31\x8c\xaa\x8d\x13\x84\xec\x73\xaf\xa9\x84\x48\x4a\x8d\x15\x46\xcc\x0b\xf2\xac\x62\x21\x18\xd3\x6b\xfb\x89\xad\x7c\x68\x62\x87\x2e\xa3\x10\xbd\x77\x6a\xb0\x5d\x37\xe7\xc8\x58\xe3\x92\xb9\xa1\xcf\x66\x98\x91\x73\x5e\x5a\x44\xd9\x28\x48\x8e\xf9\x0b\x27\x15\xf1\x16\x60\x43\x3f\x40\x2e\x95\xdc\x65\xb3\x36\xfa\xc2\x2e\x5b\x33\x45\x0e\xfc\xd8\xc3\x1c\x3f\x9b\x2d\xdf\xa7\xbe\x22\xb6\x69\x0e\x8d\xea\x2b\xa4\x17\x59\xa9\x37\x98\x50\xb8\x36\xfb\x59\x75\x89\x84\xa8\x53\x3e\x4f\xe5\x07\xce\xaa\x0e\xbc\x54\x1b\x09\x05\x8d\x24\x7d\xcc\x5d\x27\x3a\x3a\x8f\x8e\x04\xdc\x8e\x42\x31\xfa\xd1\x0b\x92\xc2\x24\x62\x93\xfb\x91\xc2\xc5\x01\xb9\xd4\xe0\xf7\xda\xfd\x63\x5b\x12\xa9\xc9\xd5\x94\x2e\x3f\x32\x51\xa9\x53\x03\xc0\x60\xcf\x6c\x90\x73\x6d\x59\x66\x28\x93\x8c\x3c\xe6\xc0\x6e\xf6\x8e\x66\x77\xce\xea\xea\x65\xee\x73\xc2\x08\xa0\x02\x5a\xd8\x17\xfa\xbf\x9c\xc9\xc6\x4e\x1b\x96\x80\x8b\x33\x24\x9c\x73\x36\x27\x22\x1c\x54\x2e\x09\x4a\xb8\x30\xed\x3f\x15\x72\x79\x00\x41\x9a\x48\x9a\xfa\x21\xc5\x68\x1a\x7b\x1e\xf6\x93\xc8\xd0\xd4\xf6\xaf\x56\x35\xb0\x71\xf2\x0c\xae\x3e\x92\xfd\x58\x15\xe8\x42\xca\xdb\x4e\xd4\xf4\x9b\xfa\xf5\x0a\x94\xa4\x6c\x37\xd8\xbb\xd3\x7f\xfe\x3a\x3b\x79\x8c\xb5\x47\x6b\xff\xf6\x27\x86\xf1\xc3\x68\x00\x87\x82\xa8\x3f\xfa\x72\x8b\x58\x70\xe8\x24\x3c\x0e\x7d\xc6\x3e\xc5\x09\x19\xfb\x3e\x2a\x31\x06\x18\x2d\x1a\xaf\x38\x34\x71\xb0\x46\x2c\xb1\xfa\x88\x0e\xbc\x28\x39\x30\x21\xae\x33\x15\x9d\x38\x29\x26\xfb\xf1\xd5\x8d\x0f\xcc\xec\x43\x02\xc6\xd2\xd9\x5d\x28\x46\xff\x70\x54\xe8\x1a\x63\x5a\x25\xfd\x45\x13\xb3\x90\xf8\x7f\xc8\x23\x3a\x7d\xe2\x3d\x4a\x60\x08\x0d\x60\x37\xbc\x20\x4c\x72\xea\xac\x55\xcc\xf5\xe2\x46\x6c\xd7\x5a\xda\xdd\xfc\xc6\x09\x17\xb4\x04\x09\x6a\x9b\xc6\xe7\x65\xeb\x37\xb2\x28\x50\x75\x99\x9a\xda\x7a\xc5\x5c\x20\xa4\x54\x00\xbe\xbf\xd3\xee\xdf\x33\x3a\xdb\x82\x10\xa7\x50\x8c\x7e\xa3\x38\x72\x53\x47\x11\x8e\x88\x11\x96\xaf\x01\x0e\xe3\x3e\x89\x48\x52\x21\xa0\x8a\xe2\xde\x9f\xf1\xb0\xbf\xbb\x2a\xfb\x9b\xa9\xd0\x20\x07\xcc\x35\xb5\x4f\x3d\xa1\xb2\x41\x5d\x60\x07\x09\x0e\xfa\x76\xc5\xd9\x99\x8e\xae\x8c\x80\xff\xe9\xd7\x4e\xb1\x41\x2d\x72\xb9\x55\x74\xa2\xbe\xb0\x51\xcd\x6c\x6e\xc0\xa8\xdb\x71\x53\xf5\xd7\x27\xb2\xdf\x6a\xba\x89\x79\xed\x90\x07\x3b\x39\x6c\xc7\xa0\x7e\x62\xb4\x22\xff\xb3\x44\x48\x9d\xdb\x31\x87\xc2\xe4\xb5\xee\x51\x52\x4c\xf3\xa9\xde\x41\xb4\x79\x9d\xc0\x1c\x4f\x57\x7b\xc1\xe8\xd2\x5b\x15\x65\x5f\x6a\x7e\xc2\x1c\x9e\xe8\xe8\xe8\xe1\xe3\x1c\x74\xc6\xec\x08\x9b\x39\x6b\x6b\x5a\x18\x94\x71\xbf\x98\x66\x4f\x1f\xa7\xb6\xaf\xd8\x87\x9c\x49\xfd\x45\x4d\xc8\xdf\xe2\x01\xf1\x6f\xfc\x2b\x24\xaf\x26\xb6\xd1\x87\xd4\x01\xf2\x0b\x4b\xc6\x4a\x50\x3d\x13\x12\xdf\xc0\x89\xdc\x67\xa4\x42\xd4\x21\xa1\x78\x0b\x8a\x74\xfc\x55\xff\x05\x4a\x04\x49\x6d\x48\xe2\xdb\x71\x76\x93\x1a\x60\xa8\x5c\x33\x43\x09\xe4\x66\x1f\x50\x54\x30\x01\x81\x54\x1b\x95\x95\x0e\xff\xd8\xde\x26\xe2\xae\x04\xdc\xd7\x3a\x57\x30\xbc\xf3\x55\x04\xe3\xaa\xdd\xc8\x2e\xeb\x2e\xb0\xf8\xcb\xc3\x36\x32\xf9\x68\x6d\x6a\x47\x16\x79\x63\xa1\xe0\xb2\xa9\xf1\xaf\x18\xff\x96\x38\xae\x26\xf2\x8d\x38\x0c\xd0\xab\x6e\x44\x4a\x04\xa1\x0a\x1d\x9c\x7d\x40\x61\xcd\x3d\x13\x5b\x80\x97\x0e\xf2\x53\x2f\x27\xed\xde\xcd\xf2\xa4\x3a\x80\xb6\x4f\xe1\x31\xda\xc9\xb3\x22\xc3\x18\x80\x29\x9f\xbe\x7d\x98\xc5\xe8\x25\x6c\x47\x22\x97\x8b\xfa\x3b\x4b\x45\x6f\x00\x4c\x2a\x3b\xa8\x68\x18\xcb\x0e\x3e\x3c\x68\x1c\x7b\x7c\x7a\xf6\x9d\x85\x6e\x09\xf2\xdd\x96\x5a\xeb\xff\x74\xb2\xda\xfb\x31\xc8\x2f\x83\xb7\x8c\x1c\xc9\x4a\x24\xd8\x80\x14\xe2\xca\xe7\xed\x23\x35\x86\xce\xb9\x19\xda\x81\x2f\x2d\xb9\xa2\x79\x0f\x4a\x06\x41\x80\x10\x5c\x67\x66\x60\x43\xd6\x29\xf8\x16\x14\xf0\x86\x42\x27\x07\x15\xf3\x20\x54\xb1\x78\xe7\x79\xcb\x03\xd2\x28\x88\xca\x94\x17\x8a\xd1\x49\x57\x71\x38\x02\x75\x68\x21\xd7\x41\xca\x06\xf0\x83\x91\xed\xc9\xcd\xc1\x34\x74\xa6\xb3\x86\x51\x1d\x0a\x41\x3c\xae\x95\x19\x99\x2a\xf2\x3b\xc4\x91\x58\x90\xa1\x3c\x7c\x52\xb9\xbb\x7e\x48\x6a\xa8\x86\x49\xd2\x79\xfd\xec\x5d\xd1\xc9\x57\x5d\xc8\x4a\xc6\x83\x67\xd2\xfc\xe0\x85\xf4\xdd\x44\x9b\x55\xca\x87\x84\x10\xd5\xd6\xd4\xc4\x64\x35\x40\x84\x40\x17\x53\x4d\x1d\x10\x20\x83\xd6\x43\x56\xa4\xba\x98\x31\x1c\x01\x83\x03\xcf\xe6\x44\x08\x8b\x4b\x9f\x10\xfa\x3b\xb5\x4f\x8d\x4c\xa0\x60\x74\x11\xb4\x81\x99\xd9\xe7\x76\x4d\xc9\x60\xec\x7c\xee\x7c\x56\x28\x46\xb7\x3c\xa5\xd2\x2b\x71\x5d\x7c\xca\xdc\x27\xf6\x73\x53\xa7\x1a\xb0\x81\x6b\x58\x34\x27\xe7\x15\xd5\x5a\xe8\xfa\x21\x49\x90\x83\x37\x0f\x6d\xe3\x77\xb6\x01\x5c\x09\xa4\x9a\x7b\x66\xf2\x58\xb5\x8b\xeb\xe6\x12\xbc\xda\x9f\xcb\xe9\xc3\x9b\xdd\x49\x75\xf4\xd7\x59\x92\xf6\x44\xe8\x07\xc9\x22\xfd\x1b\x8a\xd1\xb7\x8d\x6a\x89\xc6\xc2\x8f\x85\x91\xb2\x4f\x55\x78\xb2\xc7\xbf\xe3\x98\xc2\x2a\x0b\x2d\x40\x02\x9c\x45\x8b\xdc\xdd\x97\xd4\x24\x01\x81\xf4\x1e\xe7\xde\x3d\x24\xbc\xbd\x6a\x74\x8c\x8c\x22\xc5\x83\x3a\xae\x79\x42\x1b\x87\xec\x83\xe4\x3f\x7d\x54\x1a\xdd\x86\x01\xc7\x75\xee\xdb\x98\x7e\x3c\x60\xb6\x78\xf7\xe8\x33\x5d\x29\x42\x51\x53\x42\x0e\x08\xd5\xfe\xb2\x2b\x1b\xd4\x7a\xe6\xf1\xd5\xe9\x73\x11\x43\x32\x5c\x8f\xdd\xc0\x8b\xab\x3e\x48\x92\xd9\xfa\xf7\x47\x5f\x24\xb5\x82\xae\xcf\xa6\xe3\x0a\x6c\x70\x68\xfa\xc5\x70\x48\x89\x51\x07\x24\xaf\x00\x6a\xa0\x84\x18\xc8\xfa\xf7\xfd\xe3\x25\xb0\x60\x00\x89\x83\xdc\xd4\x2a\x4c\xbf\xfd\x5d\xae\x0f\x44\xd7\xd6\xec\xcb\xbe\xc3\xe5\x98\x18\x20\x3e\x11\x28\xb8\xe4\x3c\x65\x0f\x4c\xa0\x3b\xc0\xe2\x8f\xf6\x93\x33\x59\xbf\x70\x9b\xfd\xa0\xfd\xbc\x73\x4b\x22\x26\xff\x7e\xfb\x5f\x49\x53\x86\x0f\xca\x12\x03\xe2\x7b\xdb\x59\x5a\x0d\x42\x52\xa2\xf3\x95\xba\xa5\x7a\x30\x61\x26\xac\x44\x7f\xeb\x0f\x9e\x12\xc1\xbb\x0a\x5d\x17\xda\x34\x8a\xe9\xcf\xdd\xc3\xf5\x10\xa8\xf1\x71\xa1\x18\x1d\xd8\xcf\x1a\xca\xee\x42\x67\xfc\x53\xab\x27\xd2\x67\x57\x41\x0e\xb5\x8e\x55\xf4\x57\xba\xba\xe6\xce\xea\xec\xec\x64\x65\x4f\x7e\xd2\x1a\xe5\xf0\x6d\x08\x01\x61\xf3\xdb\x74\x1d\x70\x58\x41\xa4\x22\xd7\x00\xc4\x80\x54\x31\x87\x35\x8f\x23\xb7\x8a\x89\x42\xb5\xa3\xd2\x51\x8a\x53\xef\xc7\x5e\x92\xe4\xe8\x49\xe8\xc6\x9f\xf6\x57\xa3\x47\x4a\xfd\x2e\x7d\x27\xd1\xbf\x2f\xbc\x48\xa9\xad\x5c\xaa\x94\x55\xb2\xd3\x5c\x96\xbf\x4d\x59\x02\x73\x57\x43\xde\x6a\x77\x6e\x57\x45\xe0\x02\x48\xa0\x9f\xe8\x5e\x2c\x5e\x3d\x34\xfd\x74\xb3\x0a\x45\x77\x08\xfd\x5f\x97\xd1\x97\xa0\xf8\x0d\x20\xdf\x0f\xd3\x25\xe9\x3f\x72\x5b\xd7\xd0\xf5\xd3\x92\xae\xf7\x78\xda\x0e\x41\x58\x6d\xe9\x1e\x57\xcf\x4c\x6b\x25\x03\x97\xa4\xfb\xbb\x43\xb8\x3e\xf9\x1b\x64\xf3\xae\x1c\xf7\x2f\x92\x19\x7d\x2f\x5e\xac\x96\x68\x16\x13\x16\x90\xd1\xc5\x77\x9d\x51\x88\x4a\xb0\x82\x5c\xae\xf3\xab\x7d\x27\x52\xd1\x6e\x06\x44\x35\x2a\x97\x14\x07\xd7\xf3\xf7\x67\x97\x07\x26\x4c\x95\xb5\x5a\x26\xf7\x39\x74\x30\xbb\x33\x4a\x8e\x63\xd6\xdc\x50\xff\xa7\xf5\x42\xad\x9c\x08\xa6\x5f\xf4\x94\xa5\x7c\x4e\x6a\xd8\xcd\x75\xc6\x3d\xc5\xce\x1b\x53\x41\x7b\xee\x54\xb1\x4f\x31\x8b\x48\x26\x21\x89\xf4\xd1\x45\x9d\xca\xa2\x3e\xa4\x6c\x16\x8e\x9e\x78\x72\x7f\x8b\xfd\x90\xcf\xc0\xf2\x2c\x59\xce\xdb\x2c\x61\xbc\x70\xa5\x42\x8b\x84\x4d\x25\x15\x17\xb9\x21\x44\xb2\xfc\xdd\xef\x67\xb5\x2b\x87\xd5\x4c\xd8\x26\x9f\x7c\x46\xa0\xf7\x82\x38\x1e\xe7\xff\xea\x2a\xa5\x86\x83\xc4\xc7\x2e\x6f\x42\xa9\xfc\xd1\x39\xca\x98\xbd\x04\xdc\x2a\x2f\x4e\xf3\x43\x56\xb7\x8b\xf9\xb2\x91\x91\x23\x38\xb2\x34\xe5\xa3\x80\x0d\x7c\x13\x16\xfd\x8f\x35\x45\xe9\xac\xe4\x5d\x5b\x32\x83\xd7\x2e\x39\x2b\x9b\x96\x86\x9e\x0d\x65\x4a\x2a\x24\xca\x03\x48\x90\x13\x49\xc9\xfc\xce\xc1\x51\x52\xfe\x73\xab\xcc\xa6\xe4\xf4\xcb\x62\x75\xdc\x1d\xb7\x26\xb9\xf6\x7b\x13\x61\xf2\xd0\x0d\x48\xdc\x97\x8c\x7f\x51\xf5\x8c\x06\xbe\x95\x30\x17\xfa\x0f\x4b\x54\x65\x94\xb8\x5c\xfd\xa7\xa2\x27\x16\xd4\x71\xc1\xc2\x61\x22\xf0\x3c\xaf\x53\x15\xa2\x8a\x1b\x43\x1a\x91\x3e\xbb\x24\x15\xdd\xe2\x0e\x5e\x71\x65\x35\x59\xa4\xb2\xd0\x0e\x90\x03\x02\xc8\x10\x4a\xc7\x1f\x51\x13\x00\x76\x12\x3c\xf0\x4f\x5d\x31\x73\x03\x4e\x0b\xd8\xb1\xb6\x85\xdb\xb6\xda\xa1\x81\x4c\x26\x79\xde\xcc\xfd\xc7\x0c\x89\x6c\xeb\x79\x54\x9a\x25\xba\x7d\xa3\x32\x68\x86\xa8\x62\x95\xb0\x74\xbe\x72\xaf\x88\x96\xa3\x0a\x65\xd7\xdc\x9f\x9e\x4e\x57\x70\x1e\xbd\x5e\x69\x78\x7e\xf8\x2d\x65\xde\x6e\x61\x9c\x50\xa0\x72\x3f\x58\x2f\xc3\xe9\x03\x82\x6b\x90\x89\x78\xdd\xb2\x4d\x59\xc5\x70\x37\x87\xe8\xdd\x17\x44\x49\x36\xaf\x4b\x36\x94\xff\x85\x24\x7f\x50\x41\x04\x10\x93\x9e\x72\xdb\x54\x4d\xcf\x00\xb7\x09\x6f\xea\xcf\x1e\x52\x2c\xc8\x53\x5b\x09\x36\x26\x9b\xfd\xa4\x42\xd1\x0f\x4d\x84\x93\xd1\xc1\xba\xe3\xa2\xd4\xf2\x41\x2d\xe9\x07\xf5\xa7\xb8\x99\xd0\xb5\x3e\x01\xd0\xa6\x1b\xdb\xf7\x97\x65\x2c\x35\x0d\xaa\x9f\x2a\x59\xf1\xee\x94\xc7\x0a\x21\x43\x6e\x34\x73\x17\x48\x21\xc0\x86\x90\x9e\xd2\xdf\xad\x96\xe4\x31\x38\xd2\x52\x1b\x33\x43\x32\xa8\x08\xe3\xff\x72\xab\x96\xbd\x27\x2e\x0e\x60\x1d\x93\xc0\xe2\x4b\x32\xed\x67\xbb\x25\x42\x3e\x98\x0e\xa8\x71\xc1\x87\xb7\xa7\x56\xa4\xd8\x06\x1c\x99\xf9\x35\x97\x4d\x48\xae\x2f\xae\xba\x3a\xfe\x4b\x5f\x63\x5b\x85\xc2\x22\x8b\x34\x7c\x5b\xf1\x30\xf9\xc9\xc2\x6c\xcc\x83\x26\x0a\x70\x0a\xeb\x78\xec\x19\xa5\x00\xde\x10\xa2\x84\xaf\xad\x8f\x58\x35\x56\xda\x44\x82\xba\x04\x0c\xcc\x8d\x77\x25\x1d\x2b\x12\xfa\x6c\xd7\x13\x7d\xfb\x80\xf8\xcf\x5c\x64\x9c\x0e\x24\x2b\xc3\x5b\x8b\x5d\x86\x23\x7e\xf4\x36\x61\x93\x6b\xb4\xd4\xba\xb9\x3f\x0d\x67\x5d\xdb\x52\x50\xa7\x48\x69\x41\x4a\xee\x90\x50\x9d\x36\x04\x65\x1b\x32\x97\xae\xe8\xb4\xcc\xe1\xb3\x39\xd3\x65\xd5\xa6\x16\xb2\x82\xcb\x2b\xa7\x9f\x4c\x14\x2f\xd0\x83\x80\xad\x33\x17\xdd\x96\x5e\xab\x0a\x91\xfd\x37\x76\x2d\x53\xe1\x77\xbd\xbd\x7c\x0c\xb8\xf6\xb8\x04\x0d\x86\xc4\xe7\xe0\xd5\x42\x7f\x9b\x34\x3e\x75\x81\x03\x58\x0c\xd4\xc6\x8e\x96\x2c\x53\x5b\x95\xbd\x97\xed\x93\xc4\x4e\xa9\x30\x9e\x32\x40\xaf\x42\x42\x64\xb4\xe0\xba\x95\x0c\xd8\xd0\x33\xbb\x50\x8c\xbe\xae\x24\x26\x02\xdc\x0a\xa6\x2a\xb7\xbc\xf0\x3c\xf5\x72\xcb\x28\xc3\x91\xf4\xe1\x16\x6d\x14\xc8\x50\xdf\x20\x10\xba\x75\x82\x82\xa4\x2e\x8f\x9e\xea\x52\x94\x87\x6c\x50\x49\xc6\xb0\xda\xa6\x71\x12\xe9\x1a\x10\x60\xdb\x4c\xac\xf0\xf9\xe5\x12\x76\x0d\xd5\x12\xa4\xf1\x6a\x49\xf5\x80\x6f\xb2\x33\x29\xe6\xea\x97\x12\x2d\x37\x60\xda\x88\xa1\x75\x5e\x5a\x32\x42\xc2\x0a\xd9\xb4\xf5\x1e\x2b\x59\xa7\xc6\x1d\x79\xd9\x4e\xf6\xbb\x53\x8e\xa9\x92\xa4\x74\x23\x4c\xd8\xc0\xe0\x3f\xfa\x59\x45\xdc\x35\xaf\x10\xff\xe5\x4f\xbf\x9b\x0d\x74\x81\x05\x5d\xd6\x97\xfd\xb7\x97\x4d\xcf\xb3\x7b\xd2\x68\xc7\xf9\xe1\xd7\x3f\xaf\xba\x0f\x30\x0f\x3a\x7e\xa3\x4e\xf7\xab\xbe\x9c\xb8\x9e\x52\x15\xdf\x3b\xa4\x30\x50\xe2\xae\x8e\x6f\x30\xbf\x7b\x6f\x7a\x1c\x1b\x38\x94\x02\xd5\xf4\x99\xe2\x51\x07\x56\x48\x7c\x13\xc4\x41\x69\x84\x22\x3e\x58\x07\x28\xe0\x45\xd2\x17\x7b\x55\x79\x45\x3f\x80\x80\x2d\xbf\xa2\x9f\x28\x0c\x19\xe0\x79\x76\x83\x7b\x08\x3d\xbb\xfe\xff\x92\x58\xa7\x82\x32\x44\x51\xa8\x2d\xd3\xf5\x0e\x9f\xef\x44\xdf\x7f\x41\x00\x42\x50\x46\x5d\x21\x77\x9f\xcd\x86\xa1\x8b\xb0\x0d\xe5\xfa\xf0\x59\xc5\x03\x82\x8e\x72\xfc\xd0\x06\x74\x4e\x77\xcd\x8b\xd9\x5e\x72\x76\x2f\xcf\x20\x9f\x3b\xc5\x22\xc6\x4a\x48\x20\x22\x92\x14\x89\x76\xe4\x80\x50\xad\x33\x5a\x37\x13\xb9\xe7\x15\x05\x36\x68\x52\xd3\x60\x2a\xff\x32\x61\xa7\x98\x88\x13\x14\x17\x4a\xd2\x40\x40\xbb\x83\x1d\x50\xbe\x75\x8d\x5f\x40\x39\x50\xf4\x05\x60\x90\xca\x7c\xe4\x1a\x65\x91\x1d\xa8\xf5\x78\xdb\x31\x19\x80\x6f\x18\xa8\x50\x8c\x8e\xed\xcb\xbe\x8a\x1a\xd5\xfc\xe4\xc2\xae\xa7\x24\x66\xa0\x8d\xa9\x81\x84\x36\xf5\xa9\x16\x79\x1b\x04\x5c\x40\xe1\xec\xf4\xc6\x3f\xf3\x88\xf8\x57\x6e\x83\x84\xb4\x7e\x78\xf5\xad\x54\x2e\x89\xce\x12\x59\x7f\xfb\xe0\x3d\x59\x94\x4e\x1d\x05\x01\x2c\x11\x8c\x4d\x05\x02\xb4\x94\x4b\xea\x1a\x16\x70\xb9\x52\x69\x6e\xd1\xde\x94\x3b\x34\xbf\xa7\x50\x8c\xee\x79\x42\xcc\x70\x67\xc8\xc4\xe6\x2b\xda\x44\x01\x8c\x29\x3a\x77\xe0\x2a\xf1\x98\x31\x31\x2c\xc8\x96\xd8\x6c\xac\xfb\x79\x09\x73\xe0\x63\x6a\xf7\xe2\xbc\x92\xbd\x91\x03\xd8\xcd\x20\xa8\x9b\xfa\x59\x89\xdb\x47\x90\xc9\xac\xdd\xf5\x1d\x57\xb1\xf1\xe5\x75\x24\xf4\x2d\xc3\x82\x35\x69\x75\xbf\x40\x85\x3e\x25\x2e\x44\x28\x1d\xc5\x37\x73\xbf\xad\x65\xdf\x8e\x03\x4c\x98\x38\x9f\xfe\xec\x72\xf1\x2b\xb1\x61\x84\x1e\xed\x14\x7e\xb8\x5e\x45\x31\x97\xc2\x20\x48\x4d\xa9\x61\x49\x96\x8a\xb2\x91\x41\x41\x26\xb9\x95\x6f\x8c\x91\xc4\xdf\xdc\x30\xae\xac\x19\x24\x75\xfb\x3b\x02\x21\x06\xb8\xeb\x7c\xf4\xa7\x89\xa9\x65\x3d\xb4\x21\x97\xa8\x6d\xe6\x97\xf4\x49\x98\xd7\xc4\x6c\xa2\x50\x8c\x9e\x5f\x2b\xed\xdf\x13\x30\x74\xa1\x18\x99\x0f\xb6\xe0\x1f\xa8\xe9\x78\x32\x29\xfe\xc3\x49\xf1\xa9\xa8\x50\xae\x01\x7c\xc6\x9c\xfd\xd2\x43\xca\xe6\x25\x49\xf4\x4d\x1d\x75\xaa\xa8\x09\xd6\x66\xa0\x14\x9c\xad\x5f\x2a\xe6\x9f\x30\x3b\xff\xec\x99\xd9\xa6\x94\x4f\xdc\x3c\xf4\x43\x6f\xb4\xcb\x90\xfe\x45\x8b\x2e\xbb\x96\x0b\x03\x5e\x26\x31\x0c\xfc\x90\x54\x25\xf3\xad\xa8\x6f\x52\x76\x20\x0b\x6d\x34\x00\x4a\x90\x43\x36\x45\x99\x53\xd8\x96\xde\xd4\x52\x48\x69\x08\x7f\x64\x6b\xf1\xc2\x22\x14\xa0\xb8\xf9\x6a\x99\xce\xd5\xde\x16\x8c\xb2\x44\xa1\x86\x5f\x8c\x9e\xa7\x5a\x8c\x56\x12\xdb\x33\x3e\xa5\xdc\xb3\x39\xbd\x3a\x73\xba\xe9\xde\x76\x93\x6a\x30\x47\x90\x1f\x60\xcf\xe2\xd0\x5c\x71\xd0\x9f\xdf\x9b\x8d\x38\xf3\x3b\xe9\xd4\x86\x95\x26\x3f\xb8\x5c\xa9\x02\x6b\x14\x78\xc0\x9b\xca\xad\x67\x05\x0c\x69\xee\xbc\xce\x42\x31\xfa\xe5\xfb\xca\x22\x0a\x11\x23\x44\x01\xe1\x23\xf6\x7f\xbb\x91\x95\xa5\xc8\xb5\x40\x89\x09\xce\x46\x5f\x3f\x24\xe1\xf5\x90\xef\x73\xdb\xa3\xfc\x7a\x8e\xe8\xf7\x80\xef\x43\x52\x28\xc5\xe7\x6b\xd8\x51\x69\x95\x8d\x8c\x6a\xe8\x31\xc0\xd2\x5f\xb5\xb3\x54\x70\x13\x0a\x64\x61\x1a\xfd\xee\xd7\x94\xf2\x11\x02\x0e\x2e\xd7\xea\x47\x5b\x28\xcc\xb8\x9e\x1a\xfe\x44\x9f\xe0\x34\x35\x0b\x63\xd3\x2f\x14\xa3\xdf\x4b\x62\x76\x0c\x07\x1c\x87\xd3\x3b\x85\xd5\x95\x01\x3c\x36\x67\x52\xdf\xeb\x1b\x92\x42\x5e\x15\x99\x2e\xf0\x3c\x26\xf3\x15\x2d\x9b\x90\x7d\xad\x41\x48\xaa\xb0\x21\x11\x4f\x73\xd3\x15\xfe\x52\xc9\x46\x15\x4b\xf2\xea\xd0\x9b\xc1\x48\xe9\x42\x01\x26\xdf\x75\xcb\x80\xaa\x6c\x43\x3b\x63\x8e\xcf\xf8\x43\xbb\xf0\xb4\x03\x06\xc1\x7e\x0b\x8a\x53\xff\x37\x49\xcd\x92\x4e\x81\x69\x4c\xc9\x8f\xb9\x95\x7b\xab\x82\x0a\xf3\x56\x6d\xe6\x1a\xe3\x04\x3f\x0f\xaa\x3e\x76\x4d\xfd\x2f\x4f\xc8\xf9\xa9\xc2\x64\x31\x1a\xa3\x25\x2d\x22\xec\xc2\x86\x03\xaa\xbc\xde\x7a\x69\x9a\x38\x0b\x15\x6c\x52\xf1\x9f\xf8\x65\x0d\x48\xc6\x10\x7e\x89\x0e\x0b\xe8\x68\x73\xd8\x6d\xac\xa3\xa9\x63\x0a\xc5\xff\x73\xef\x05\x4a\x26\x26\xd8\x40\x38\xe4\x61\x22\xff\xe9\xc3\x6c\xa6\x79\x83\xc5\x6c\xad\x9a\xfa\x7d\x27\x27\x4a\x1a\x44\xa4\x85\x8d\xa9\xdf\xb6\x44\x84\xd7\xaa\x4b\x37\x03\xf1\x77\x98\x70\x62\x94\xac\x37\x81\xec\xb8\xb4\x38\xd7\x95\x2c\xdd\xa1\x47\xa0\x91\x1a\xb8\x9c\x1c\x99\x11\xf5\xa4\x07\xdc\x3e\x38\x51\xfa\x6f\x81\x85\x5b\x86\x2f\xab\x04\x22\x89\x69\xae\xb4\xd4\x1e\x2f\x3f\x2a\x1e\x0c\x72\x2b\xa1\x6f\x51\xc5\xba\xc5\x6f\x8b\xa1\x80\x15\x56\xd8\xec\x41\xbb\xeb\xc1\x34\x6d\xd2\xc1\x75\x34\x93\x33\x60\xea\x0c\x99\x98\x5f\x27\x09\x6d\x99\x18\x13\x87\x31\x87\xee\x7f\x37\xfd\x77\x61\xb9\x1c\xff\xa4\x6f\xec\x1f\x99\x5d\xa2\x16\x8a\xd1\xea\x76\x69\xb0\x02\x53\x89\x9d\xa7\x8f\x4c\x48\x8b\x01\x6f\x6a\x0b\x60\x78\xed\x04\xc9\x74\x88\xa0\x80\xc1\xa5\xdf\xe0\x86\x1d\x0e\xb0\x01\x61\xfe\x55\x9d\x4b\xd5\x41\x23\xc3\x8a\x27\x6c\x9e\xd7\xda\x54\x1c\xa9\x97\xfc\x99\xf6\x07\x4d\xa9\x4e\xa9\xe2\x16\x93\xc1\x28\x1f\x12\xc5\x3f\x4d\xba\xc9\xac\x5e\x3b\x72\x4e\x5a\x3b\x1b\x99\x02\x73\xdb\xa3\x1f\x93\x41\xa2\x26\x76\x90\x0b\xdc\xc0\x6e\xb1\x1d\xc8\xb9\x0b\x55\x21\x7d\xec\xc5\x57\x87\xfe\xee\xe8\x8c\x22\x5d\xdd\x35\xaf\xa7\x63\x6e\xa2\xa5\xf8\x4a\x9e\x7b\x1a\x10\x50\x43\x71\x41\xd6\xf2\xe8\xb6\x11\xd9\x2d\xa5\x06\xb9\x6b\x7e\xde\xb5\x58\xe0\x5c\x2e\xd5\xb0\xfa\x81\xbd\x93\x24\xdc\x3c\x33\x04\xa1\x3b\x7b\x81\xee\xdf\x77\x56\x4c\x70\xaa\x00\x39\xb8\x8e\x02\x3a\xfe\xfc\xbb\x27\x14\x31\x10\x1b\xf8\x55\x51\x1f\x6a\x8b\x46\x2a\xd8\x55\x6c\xdb\x80\x30\x76\xd0\x2f\x37\x2a\x6b\xf1\x10\xc6\xad\x06\x5f\x7a\xee\xdd\x2e\x49\x2d\x60\xe6\xcf\x5a\x6c\xea\x73\x9f\x11\x61\x7e\x7e\x4f\x4f\x61\x4e\x37\x4d\x6a\xf9\xa9\xdb\xd8\xb1\xe8\xea\xea\xee\x98\xdd\x35\x97\x3e\xa6\xf3\xa4\xb5\xa9\x85\x5c\x06\xb1\xbd\x7f\xfb\x18\x09\xd4\x92\x94\xa0\xf1\xdf\x5f\x7a\x9b\xb8\xa3\xc8\x84\x29\xc2\xb0\xd8\xd4\xfe\xe9\x04\x17\xe4\x87\xa8\x4f\x26\xc0\xf7\x2e\x10\xe5\x23\xa5\x8a\x45\xcf\x4b\x86\xed\x25\x68\x12\xe6\x6e\xac\xff\x6e\xbf\x82\x53\xc0\x26\x48\x50\x58\xda\x77\xb6\xaa\x34\x29\x1f\x55\x12\xb2\x57\x7e\xa0\x2c\x13\x01\x30\x93\x13\xd5\x2e\x7f\x67\x9c\x9c\x1a\x1d\xe0\x82\x0a\x63\x65\x14\x9b\x39\x73\x87\x04\x37\xb4\x40\x5c\x67\x36\x28\x93\xf4\x8a\xe1\xe2\x5c\x58\xa0\x06\x39\x4b\xf1\x7b\x9c\x5b\xc9\x74\x13\x0a\xc5\xe8\x37\x6d\xa3\xe4\x28\xef\x9a\x34\x48\xd4\x76\xaa\xd6\x4a\xae\x91\x80\x2d\x9e\xba\x51\xd1\x37\xc3\x21\x53\xc0\xcc\x6f\x5a\xca\xca\xf9\x15\x1d\x37\x77\x24\x38\xb8\x9b\xa7\x28\x73\x71\x10\xda\x92\x7b\x76\x33\x77\xb3\x28\x92\x66\xd3\x82\xff\xb1\x55\xd9\x4a\xaf\x04\xed\x0a\x0a\x65\x29\x06\xed\xa3\x77\x8a\x7f\x33\x8b\x2a\xdf\x7d\xe2\x0e\x75\x69\x14\x40\xdb\x46\x15\xe8\x26\xca\x2b\x47\x07\x24\x4e\x9c\x0d\x1d\xc4\xb9\x4e\xf9\xcf\xbc\x23\x8b\xbb\xa6\x1c\x8e\x95\xe9\x6a\x05\xda\xb2\xc8\xd0\x7b\xed\x92\xf4\x59\x61\x76\x4f\xca\xee\xbc\xa9\x4f\xd4\x41\x2e\x6d\xcc\x3e\xbc\x76\x64\x12\xeb\x4d\x64\x02\x83\xfe\xe0\x97\x27\xa4\x71\xd4\xa1\xe6\xf2\xaf\x9e\x19\xcd\x93\x05\xf3\x57\xe2\x54\xbd\x6f\x6c\x91\x3d\x23\x02\x48\x5c\x68\xb0\xf1\x45\xfe\xbc\x3e\x56\x45\xde\x90\xe0\x75\xd4\x7c\xf5\x99\x19\x83\x5a\x8d\x18\x8d\x84\x4c\xf5\xc6\x48\x71\xa6\xcc\xb8\xeb\x44\xa5\x90\xb9\x57\x17\x9b\xfa\x97\x9f\x69\x09\xb2\x10\xf8\xa9\x37\xaf\xf6\xc1\x8a\x56\x55\xa1\x54\x16\xc1\x2b\x14\xa3\x5f\xb9\xe9\xeb\x81\xfd\xb4\xee\xfd\xf8\x33\xb2\xcc\x36\xf5\x8a\x8d\x23\xfc\x8d\xdd\x52\xaa\x21\xd4\x80\x2c\x2e\x1f\x2f\x4f\x43\xae\x2d\xc3\xf7\xf4\x0b\x25\xa1\xb6\xd9\xf3\xe7\x77\x26\x4f\x7e\xc9\x8c\x6c\xe8\x99\x9e\xae\x49\xa2\x0b\xee\x92\x52\x2e\xf6\xe2\xfa\xe0\x67\x42\x99\xc5\x67\xcd\xd5\x95\xcb\x45\x4a\xe4\xa6\x96\xaf\x8e\x51\x1a\x06\xb6\xdd\x8b\x0a\x9d\xd9\x5a\x12\x10\x87\x4b\x29\xe5\x7e\x3b\x59\x81\x0f\x12\x93\x56\x92\x7c\x58\x7a\xff\x8c\xd1\x12\x96\xd6\x20\x30\x3e\x0e\xd1\x86\x9d\xd9\x80\xd0\xdd\x59\xf0\xec\xa4\x54\xd1\xfb\x4c\x71\x06\xba\xba\xa5\xe1\x78\x53\xcf\x3f\xa8\x20\xd6\x2d\xec\x26\x7a\xe7\x03\xaf\x0d\x4f\xcf\x1d\x0b\xa6\xb9\xfa\x52\xd1\x8a\xb0\xd4\x72\xb8\x37\x39\x9c\xdc\x3d\x29\xfe\xa9\xb0\x7d\x70\x33\xb6\x14\xac\x78\xf6\x5c\x55\x72\x2e\xe9\x40\x0a\xc5\xc8\x90\x8c\x1e\x99\x96\x06\x7d\x9f\xf7\xaf\x65\x31\x87\x00\x03\xb1\x20\xfb\xbb\xd7\x25\xf1\xf9\xb0\x14\xd8\x90\x01\x91\xbf\xbe\xeb\x12\xf1\x03\x7c\x1f\xc7\xa5\x53\xab\x7d\x56\x74\xc9\x2a\x65\x96\xe4\xfa\xc8\x0f\xd2\x03\x9a\x1f\x72\x68\x94\x44\x7f\xad\xd2\x49\x7b\x53\x7f\x71\x6f\xc6\x78\x04\x92\x64\xba\xbb\x63\x64\x76\x3d\x99\x98\x8f\x0c\x06\x7d\xd7\xce\x2e\x6d\x61\x54\x94\x51\x25\x4c\x1a\x7c\xba\x21\xce\x55\x27\x4c\x91\x6a\x40\x87\xea\xe7\xb4\xba\x80\x69\xab\x3b\x15\x30\x19\x72\x30\x61\x46\xd9\x34\xcc\x3d\xf3\x2c\x9b\xae\x5c\xe9\xca\xc3\xf3\xff\x7d\x54\x75\xf9\x26\x61\xaa\x03\x7e\xe1\x99\x36\x7e\xd6\x29\x85\x3f\xa5\x9e\x7d\xb0\x52\xf6\x92\xb4\x13\xc2\xc9\x1b\x7b\xd2\x63\xe1\x85\x71\xfd\xb6\xee\xf4\x20\x5c\x3c\xc2\xa5\x7f\xbe\xaf\x68\x36\xfa\x76\x42\x99\x8d\xa6\x6e\xca\x98\xc1\x33\xcb\x8c\x7f\xde\x98\x7d\x56\xa1\xcb\x8d\x1a\xb8\x79\x23\xbd\x17\x1d\x33\x95\x7d\x12\xb5\x72\xe1\x73\x8d\xde\x1b\x25\x76\x6a\x68\xd6\x29\x8c\x5d\xbf\x6a\x8f\xac\x3a\x62\x60\xc7\xe1\xd2\xbe\xcd\xdc\xe3\x27\x95\x4a\x03\x87\x41\x62\xea\xd3\xcc\x9d\x7a\x75\x52\x5d\x5d\xd2\x06\xa8\x42\x9b\x03\x4e\xd7\xfa\xd2\x72\x55\xbc\x2b\x80\xee\x65\xa4\x44\x07\x3f\xc1\x29\xe9\x0e\x07\x90\x20\x66\x4a\xbf\xba\x43\x6d\xb5\x68\x40\x4c\x7e\xe4\x87\x0f\x0b\x01\x64\xea\x1e\xd5\x5a\xc2\xe7\x5e\x5b\x93\x1a\xaa\xa4\x38\x91\xfc\xec\x13\x2a\x54\xc1\xc6\x4e\x09\x81\x04\x67\x1e\x37\x87\xc1\x1e\x51\xe4\xa4\xe3\x6f\xca\x71\xb2\x96\x0b\xe0\x9d\x67\x51\x1a\x5f\x6e\xe2\x80\x6a\x04\x16\x56\xac\x20\x6d\x24\x37\xbe\xc8\x06\x5b\x98\x04\x16\x2e\x98\x08\x54\x5c\xec\x33\x45\x29\x7d\xe2\x72\x45\xcc\x21\x2c\xb1\xe5\x1a\xe1\x64\x2c\x7d\xea\x39\xca\xb3\xb7\x42\xa7\x94\x8c\xf5\x73\xb7\x74\xb6\x5c\x9c\x1a\x24\x7e\xc6\x8c\x2a\x5f\x7a\x33\x8b\xe3\x43\xbe\xcd\x25\x8e\x5b\x34\xbe\xf3\xa3\x86\x72\x0d\x19\x8f\x30\x2b\xca\xea\xd1\x74\xfc\x61\xc4\xfd\xcf\x77\xbc\x04\xc4\xe4\x01\x44\x5d\x0f\x73\x93\xee\x53\xbd\x18\x7c\x1c\x12\x83\xd1\x96\xf4\x5d\x9b\x5b\x20\x8e\x06\xf4\x53\xa6\xd1\x5d\xed\x2d\x84\x72\xaa\x24\xc9\x25\x80\x73\x3f\x39\x57\xcd\x9b\x0c\x01\x90\x40\x04\xbe\x5f\x52\x50\xf4\x71\x1b\xcf\xaf\xd6\x37\xd7\xa6\x29\xa8\x86\x82\xf8\x22\x3e\x7b\xa1\xf2\xc3\x02\x82\xcb\xec\xd7\xb1\x85\xfd\xea\x49\x52\xe9\x87\x09\x49\xda\xd2\x7c\xb0\x2c\x3b\xf5\xa9\xba\xc8\xa8\x72\x44\xbe\x22\x45\xdf\xcb\x8a\xdd\x20\x3e\x06\x05\x07\x25\xa2\xca\x77\xaf\x96\xe6\xd5\xd0\xf3\x80\xec\x64\xf9\xca\x4e\xc5\x80\xcf\xf1\x6c\x5a\x8f\xb2\x4c\x40\xe7\x6a\x93\x77\x28\x40\x03\x6a\x99\xce\x92\xda\xf4\x4d\x72\xbd\x45\x5c\xb6\xce\xfa\xe3\x9b\x1c\x07\x0c\x0c\x26\x7a\x77\xcf\x5b\xc3\x79\x69\x1d\xf0\x11\x6e\xee\xf4\x49\x81\xe6\xa2\x0d\x67\x1d\x13\x3b\x6e\x52\x29\x0e\x8b\xe6\x9a\xe7\xb7\x73\xc0\x15\x2e\x95\xa8\xea\x01\xad\x68\xde\x7a\x9a\x7d\x4f\x27\xb4\x03\xaa\x45\x13\xb2\x29\x68\x18\x0c\x8f\x3f\xdd\x8a\x15\x2b\x6f\x48\xa8\xb3\xef\x95\x95\xf2\x9d\x80\x04\xb5\x1d\xbd\x79\x40\x6a\x1b\x98\xe3\x38\x47\xec\x6b\xb3\x56\x28\x12\x8c\x2e\x3f\x14\xdf\x5d\x39\x24\xfe\xff\x17\x2d\x2e\x14\xa3\x1c\x33\xda\x2e\xc0\xf8\xc5\x5b\x05\x9f\xfb\x6e\x36\x73\x43\x8f\x29\x30\x08\xba\xc2\x97\x26\x3c\xb7\x77\x66\x4f\x43\x3f\x02\x0e\x74\x65\x75\xb2\x23\x4b\x5b\x75\x11\xf9\x63\x1b\xed\x66\x2c\xfc\xe2\x70\x3d\xf2\x2e\x51\x78\xd9\x28\x08\x6c\x66\xac\x7f\x69\x49\x66\xb1\x23\x2f\x4c\xac\x1f\x72\x2f\xec\x53\xa2\x34\xb5\x5a\xe3\x2c\xbb\x83\x65\xa9\xba\xa3\x2b\x7f\x36\x6a\x78\x7f\x8a\xc0\x7e\x40\x40\xec\x86\x8c\x23\x68\xec\x11\x44\x82\x39\xf4\xb7\x8f\xbb\x4b\x01\xe0\x60\xb7\x02\x6b\x28\xe0\x36\x85\xcf\x2d\x9d\xae\x86\x76\x82\x52\x31\xfc\x6c\x38\xfd\xc2\xd4\x16\xa5\x95\xc4\x2d\x38\xd7\xb3\x35\x2b\xb7\xf0\x31\xfe\xa6\xde\x3c\x57\x2c\x12\xe5\xe9\x72\x12\x69\x5f\xcd\x27\x58\x38\x40\xd8\xb8\xfa\xaa\x75\x5c\x6b\x9a\x60\x66\x28\x7a\x5b\xc0\x4e\x5f\xaa\x3f\x42\xa7\xf0\xdf\x28\xa9\x8a\x45\x01\x41\x38\x48\x10\xb0\xdf\x5d\x98\x9d\x26\xfb\xd0\x18\x8c\x4c\xab\x3d\x35\x45\x40\x32\x80\xbc\xa6\x8f\x4a\x8a\x05\xbb\x6f\x60\xec\x71\x0d\x16\xe7\x01\xe9\xdd\xd8\x14\x83\x42\x7f\xeb\xaf\x26\x5e\x22\x4a\x6f\x58\x83\x36\xf6\x38\xd3\x3f\xdb\x4a\x8c\x9e\x20\xfa\xde\x32\x55\x21\xd3\x8f\xda\x6a\xf9\x65\x86\x71\x0b\xc1\x0d\x69\x67\xdd\xc7\xba\xc0\xeb\x39\xdd\x95\xb2\x5d\xcf\xb9\x50\xed\xe9\xca\xc0\x0f\x84\x0a\x82\xfe\x91\x47\xd3\xe0\x6d\xc5\x55\xfa\xf0\x07\x44\x13\x80\xa4\xcd\xbd\xfe\xe0\x5e\x45\x67\x07\xba\x0d\x0c\xe5\x4d\xf6\x7d\xf9\x6c\xfc\x2b\x01\x3b\x40\x55\x30\x98\xc3\xf6\xbd\x2c\xeb\x76\xcd\xeb\x2c\x78\x89\xc7\x0d\xd9\x74\x91\xf2\x3e\x1c\x54\x46\xec\x30\x24\x3b\xea\xb6\xe1\xf2\xc0\x0a\x57\x2d\x5a\x04\xfd\x63\x9e\x85\xac\x1b\x41\x3a\x15\x79\x41\x72\x2d\xa9\x03\x9b\xed\xee\x73\x5b\xf3\x23\x24\xc2\x9d\x43\xdb\x87\xfb\xf2\xe9\x17\xc6\xd3\x0d\x69\xf1\xf8\x91\xab\x24\x17\xe2\xf9\x71\x78\xfe\x6b\x85\x91\x5a\x02\xb6\xc3\x07\x46\x23\x89\x44\x1d\xb5\x21\xa9\xb2\x00\x58\x7f\x51\x5c\x6c\xe0\x94\x80\xef\x03\x93\xaa\xa3\xef\x94\xe4\x23\xa0\x43\x9d\xc8\xa5\xa1\xc7\xc2\x87\x54\xeb\x25\xa7\x84\x4d\x04\xe2\x1b\xc3\xdf\xdb\xec\xb6\xc4\x56\xba\x4e\x85\x02\xa6\x4e\xe5\xb4\x3b\x8b\x00\x9f\x59\xb4\x30\xc9\x29\x1b\xba\x85\xae\xae\x0c\xba\xe4\x91\x13\x62\x80\x38\xdd\xc6\xb8\x1a\x7f\x83\xe3\x53\x24\x5c\x43\x8b\x53\xc4\xdd\x43\xd9\x0d\xbb\x96\xca\xc8\xf2\x29\x88\x16\x9e\x91\xa7\x8e\x04\x61\x46\x25\xd9\xbe\x44\x79\x4e\x61\x83\xe9\xf7\x46\x67\xf6\x4a\xc4\x5d\x98\xec\x08\x73\x5f\x16\xf8\x6b\x97\x52\x79\x4f\xee\x18\x9a\x76\x9b\x71\xbd\xfc\xe0\x1a\x55\x4c\xda\x35\x20\x71\x85\xfc\x58\xe7\x62\xf6\xf9\x6a\xd8\x0e\xdd\x00\x72\xb3\x65\x67\x07\x7b\x28\xab\xad\x90\xf5\xd8\xb9\xbf\x3a\x95\x15\xd1\x48\xe6\xd9\x83\x1c\xd2\x61\x8a\xf5\x1d\xdd\xef\xc5\x09\x97\xc2\x0a\xf4\xbd\x4b\xd4\xe9\x22\x34\xa0\xc7\xf5\xb0\xa3\x7f\x79\x59\x25\xa4\xb8\xbe\xd0\xd6\x59\xf3\xae\x22\x26\x13\x1f\x0c\xc3\x0a\x7d\x18\x04\x7e\x0a\xf6\xd0\x5e\x1d\xa9\x00\x20\xc2\xc0\xc0\x4e\x02\x44\x7c\x60\x34\x27\x95\x02\x12\xb8\x29\xf4\x5a\x7f\xe8\xa1\x11\xc9\x6b\xef\xe6\xc3\xa7\x7c\x77\xd6\x95\xb0\x84\x40\x60\xd9\x30\x80\x83\xc9\xd0\x47\x8f\xed\x17\x91\x2b\x71\x5c\xa7\x52\x14\x77\xa9\x1c\xc0\x3a\xa2\x76\xfe\xe2\xca\x3c\xb1\x70\x92\xd2\x58\x95\x60\x90\xf1\xea\xd2\x7b\xda\xd9\xb9\x5d\xc2\x5c\x26\xf3\xc6\x03\xd2\xe2\x8d\x3a\x9a\x50\xb1\xbc\xf8\x29\xfd\x74\xb8\xe8\x6d\x3e\x95\x1a\x9d\xba\x12\x74\x82\xe3\x04\x29\x48\x70\x56\xf6\x91\x7a\x71\x61\xe4\x56\xa0\x8d\xe5\xc5\x72\x2e\xb7\x66\x8c\x04\x66\xf1\x0d\xe4\x25\xd8\x94\x68\xfb\xa4\x96\xd7\x1d\x20\x83\xf3\x4b\xe9\x13\x7f\x74\x9a\x8a\xf5\x80\x71\x81\x47\x6b\xd8\x2b\x77\x08\x65\xf5\xc4\x27\xaf\x99\xab\x74\x4d\xc8\x90\x73\x48\x21\xab\x9b\xb5\x4a\x52\x9b\x4c\xfd\xe7\x9e\x7b\x9a\x61\x21\x96\x20\xe2\x07\x19\xe9\x8a\xd7\xe5\x7c\x4f\x08\x32\x59\xbf\xf7\xec\x1d\x63\xa5\x0c\x5a\x83\x96\x14\x4a\x72\xdb\xc4\x9f\x51\x76\xbd\x04\xc6\xba\x41\x32\x59\x46\xae\x1f\x20\x97\xd5\x80\xfa\x12\x45\x56\xd5\xc6\xf1\x53\x60\xd5\xf4\x7f\x28\xbe\xb5\xdd\x73\x38\x4c\xe6\x5d\x05\x3c\x61\x43\x50\x83\x7c\x00\xab\x7b\x8f\xc8\xe3\x72\xdf\xc3\x2e\x0d\x52\xb9\x73\x2d\x51\xf1\x26\x43\x0f\x7e\x56\xa2\x0b\xb7\x0a\x49\x9c\x3e\xec\x43\xd4\xba\xb5\xed\x11\x27\xc4\x08\x09\x9b\x5f\x17\x1f\x56\xd3\x64\x12\xb2\x18\x1e\xe8\xb9\x19\xb2\x85\x3a\x77\x6f\xd5\x96\x71\xc8\x1e\x73\xd1\x62\xc1\xe2\xa4\x82\x02\xf6\x51\x7f\x60\xb1\xbe\x61\x18\x0f\x50\x8b\x31\xb3\xa9\xcc\xcf\xee\x10\x83\x9e\xc2\xdc\xf8\x73\x6c\x68\xbb\x58\x8d\x59\x15\x1b\x3b\x74\xbf\x9f\x92\x5f\xb5\xff\xde\xc4\x91\x1c\xac\x98\x66\x08\xd6\x53\x1c\xfa\x68\xa5\x83\x24\x7d\xb2\x37\x51\xad\x8f\x5d\xe6\xbb\xce\x51\xb2\xd1\x3e\x89\x24\x08\xaa\x90\x02\x45\xb4\x67\xbb\xc5\xe6\xc1\x2b\xa3\x81\x41\x04\x90\x57\x5a\xa2\xd2\xe8\xa6\x16\xe1\xb9\xaf\x47\xec\xdb\x2d\x42\x4c\x86\x46\xbb\x69\x75\xfa\xed\x6a\x20\x2e\x0a\x3f\xa4\x38\x0f\xf8\x74\xa9\xc7\xe7\x07\xd1\x75\xfb\xc5\xce\xaa\x4a\xd1\xa3\x17\x1e\x93\xf0\x96\xb8\xc1\x9e\xef\xa1\x85\x2d\x0e\x25\xc0\x4c\x8d\x33\xb4\x40\xd1\xa5\x32\x71\x58\x0a\x12\xe9\xdf\xfc\x87\x97\x8b\x54\x52\xb5\x40\x10\x80\x52\xa1\x18\xdd\x70\x57\xbb\x44\x9d\xa5\xfb\x5a\xbe\xc7\xd7\x2f\x55\x68\x43\xb6\x24\x47\xa7\x77\x1f\x93\xce\xa1\x2c\xd6\x41\x85\x3a\xee\x55\xc5\xca\x1d\x0f\x13\xc0\xf7\xea\x5a\xef\x19\xf1\xe4\x11\xc1\x2e\xed\xdb\x73\x8b\x5f\x1e\x21\xca\x56\xf6\x5a\xbf\xb7\x3d\x3b\xdd\x9c\xd7\xc9\xe7\xc2\xf9\x55\x6f\xb5\x49\x55\x61\x20\x14\x7d\xf7\x2c\x50\xe1\x54\xc4\x80\x14\xbc\x45\x6f\xfe\xe9\x07\x2f\x56\x5e\x43\x48\x81\x6b\x5e\x06\xb3\xff\x89\x15\x22\x0a\xc5\x3d\x29\xb4\x29\x67\xcb\x44\x0e\x8b\xb3\x3b\x85\xca\x77\xa9\xe1\x01\x7f\x30\xba\x4e\xfe\xdc\x5e\x45\x93\x1f\x02\x8a\x6b\x8a\x7e\xd4\xae\x28\xf7\x81\x7a\x83\xe2\x1c\xd8\x36\x69\x79\x4b\xcd\xc4\x21\xea\xf9\x35\xef\xaa\x48\x71\x46\x1d\xa4\x4f\xa4\xe3\x24\xeb\xd9\x56\x41\xe4\x94\x42\xe2\x27\x9b\x17\xed\x65\xc5\xdb\x17\x87\xf1\xff\x49\x7c\x28\x72\x78\xa5\x74\xe0\x21\x0c\x5a\xa8\xb1\x4d\xbd\xb1\x53\x2a\xca\x98\x9d\x10\x3f\x22\x17\xdb\x63\x44\x3a\xa7\xfb\xd2\x14\x30\xbf\x39\x3d\xd1\x01\x5d\x54\xe8\x6f\x2b\x9c\x06\x2f\xf4\x2d\xc8\xa9\x86\x79\x6b\x23\xbb\xc0\x01\xe2\x52\xc1\xcd\xfc\xd5\x4a\x7e\x61\x7e\x08\xd4\xcb\x83\x1f\xc2\xfc\x97\x27\x29\xe7\x63\xce\x3c\x1e\x5b\xc7\x2b\xff\x98\x36\x99\x90\x8e\xb9\x93\x13\xfc\x82\x12\xb3\x61\x0d\xa6\x6a\x86\x8f\xed\x4d\x0d\x03\x38\x40\x65\x33\x9f\xe1\x58\xa0\xda\x28\x14\xa3\x9f\x3f\xc3\x11\x48\xc4\xb0\x90\x07\x6d\x40\xc5\x61\x72\x93\x14\x60\x61\x57\x67\x67\x67\x32\x57\xba\xec\x58\xfa\x44\x98\xe3\xc0\x25\x77\x8c\x90\xb2\x90\x0f\x0a\xc5\xa8\x69\x4a\xe8\x12\x1c\xa0\x1a\x9f\x0b\xfc\xe7\x8b\xca\x59\x02\x0d\xd6\xc3\x1c\x3a\x67\x92\x8c\x0b\x9a\x75\x59\xf6\xdd\xc5\xbf\xc5\x52\x34\x91\x81\x03\xf9\x43\xda\x7f\x80\x37\x8a\x74\x32\x52\x28\x46\x3b\xfa\xb2\x4f\xcd\x82\x36\x32\xb0\x17\x30\xc0\xac\x57\x28\x46\xfd\x3b\xdb\x94\xb4\xc4\xac\xca\xf6\x3c\xfd\x7f\x40\xa9\x78\xef\xf8\xad\xcb\x15\x2a\x29\x20\xbc\x13\xc8\xbd\xf7\x8e\xca\xf5\x20\xf1\x6b\x62\x7d\x7e\x77\xda\x6b\xf4\xcb\xb2\x81\xf9\x31\xcf\x4a\xc1\x8c\xbb\xdd\x14\x9b\xb9\x55\x77\xa9\x1c\x4c\x5b\x2a\x00\x2f\x15\x8a\x51\x76\x58\x6a\x99\x72\xcf\x78\x56\x46\xc3\x3b\x25\xc0\x72\xbb\x3f\x20\x21\xb0\x41\xdd\x0f\x11\x43\x60\x7f\xfd\x6d\x45\xb9\x1e\xb8\x55\xba\x79\x94\x35\x65\xce\x1c\x96\x68\x21\xa8\xc2\x5e\xfc\x86\x7e\x65\x37\x83\x08\x9f\x2b\xe6\xfa\x46\x8a\xdc\xd2\xd5\x13\x1f\x3d\xed\xb5\xd3\x7c\xed\x46\x9d\x2a\x12\xf1\x58\xcd\x3c\xd2\x22\xb4\x42\x90\xc1\xf7\xdc\x71\xe1\x37\x44\x72\x43\x70\x40\x05\x0c\xd0\xba\x2d\xda\x62\x2b\x6f\x02\x96\xf9\xc0\x2b\xbf\x6a\xd9\xe0\x8c\x4b\x47\xe6\x0c\xfc\xcd\x5d\xd9\x0e\xb9\x12\x22\x13\xc6\x35\x21\x27\x2f\x45\xb7\x8f\x3b\x3f\xc9\x0a\xe9\xdc\x34\xfe\x6a\x77\xbc\x2e\x4b\x4a\xc3\x1a\x60\x93\xde\xef\xf5\xb4\x96\x4e\xc9\xa9\xf9\xb5\x22\x74\x61\x01\xcf\x43\xa9\x5a\x63\x6e\xd9\x56\xf1\xb0\x82\x5a\x0f\x95\x9f\x98\x35\x4a\x86\xcb\xfb\x4c\x1b\x78\x86\x92\x14\x08\x76\x80\x6b\xf0\x41\x4b\xf4\x8b\x57\x38\xd1\x00\x42\x1a\x30\xbf\x3e\x4d\x9a\x39\xc1\x32\x27\x55\xe6\xa6\xed\x90\x5a\x31\x6c\x33\xb9\x9c\xa8\x6b\xbb\x28\xc7\xeb\xd0\xb6\xb9\xdd\x36\xdd\x6c\xbf\x23\xa9\x73\x61\xdf\x87\x3e\xf3\x72\xd0\xd6\x4a\x1a\xe2\xc2\x02\x97\xbf\xb6\xa5\x77\x49\x3b\x21\x9b\x7f\x03\xfd\x4f\x2f\xb0\xf8\x63\x00\xc2\x22\xcd\x45\x57\x65\x87\x31\xa5\x3e\x6f\x50\x12\xf9\xdf\xf7\x89\x3a\xc2\x04\xa4\x61\x17\x8a\xd1\xee\xe1\x17\x29\x8f\xd5\xad\x42\x5a\x44\x88\xd7\x7c\xcf\x02\x05\xf9\x0e\x50\x2a\x27\x9f\x5b\xe0\x8a\x57\x19\xda\x36\x61\x52\x49\x9a\xc5\x85\x79\xaf\x03\x0e\xb0\xa5\xcb\x7a\xd5\x2a\x71\x09\x42\x2f\xc0\x75\x9a\xcd\xee\x94\x50\x39\xb3\xe7\xf7\xce\xa5\x98\x9e\xcf\x4d\x69\x57\xa4\x8b\x69\x1b\x13\x3f\x82\x93\xa7\x14\x1f\x1f\x08\xcc\x0d\x21\xa0\x8a\xe3\xa9\x34\xca\x86\xfb\x14\x1e\x9a\x0d\xf8\xce\xef\x5e\x05\x91\x93\x5c\x89\x04\xce\xfa\x55\x49\x1d\x1c\x97\x01\x6d\xe1\xf4\x8b\x1f\x11\x90\x39\xbf\x8e\xdc\x8a\xd3\x8a\x6c\xc9\x43\x45\xa0\x35\x8e\x10\x49\x49\xf6\x19\x5b\xd2\x22\x27\xd8\x4d\xfc\x02\xf4\xa7\xba\x25\xa4\x56\x58\x02\x3e\xae\x15\x8a\xd1\xd9\x13\xb2\x89\x77\x0d\x71\x23\xf2\x62\x4d\xb0\x57\x41\x9d\xb2\xff\x3b\xc5\xaa\x86\x84\xae\x3b\x18\x5f\x38\xdf\x25\x98\x87\x48\xbc\x8f\xe8\xf4\xbd\xf2\x8a\x4d\x6a\x2d\x5c\x0e\x29\xc7\xa1\xcd\x28\x10\xc9\x0b\x44\xa6\x22\x48\x84\x82\x20\x59\xb6\xe9\xaf\xec\xc8\xbe\x97\x3a\x26\x34\x85\x1b\x36\x48\xad\xed\x73\x8f\x29\x2e\x9e\x72\x66\x61\x69\xe0\xee\x65\x63\x25\xdd\x9f\xd0\x96\xdd\x35\xf3\x2b\xd2\xe9\x46\x2f\xbd\x0e\x87\x15\x15\x5f\x07\xb9\x61\x90\x28\xac\xe6\xd6\xdf\x29\xb9\xe6\x22\x17\x57\x08\x30\xe3\xc7\xdb\xd4\x96\x4c\xcb\x54\xad\x71\x65\x98\x00\xaf\xa3\x15\x5b\x84\xc7\x70\x5c\xd5\x47\xfe\x51\x59\x5d\x0f\xd7\x10\xf7\x85\xcf\x7d\xef\x3c\xc1\x9a\x09\x25\xdf\x4d\x74\xf9\x45\xd2\x4f\x67\xfc\x3e\xb5\x2a\x5c\xf8\xc4\x85\x4a\x26\xb7\x61\x46\x6a\x5c\xdf\xbd\x35\x3b\x71\x31\xac\x90\x18\x16\x7d\x90\xea\xc9\x9b\x37\x63\xf0\xc7\xc0\xc4\x95\xc7\x77\x2b\x55\xb8\x85\xc3\x8a\x95\x42\xd0\x7e\xb4\x75\x6c\xf6\x59\x90\xa0\x82\xd9\x1c\x48\xef\x79\x41\x32\x5c\x09\x5d\x97\xe9\x95\xbd\x7b\x67\x8b\x07\x7f\x0a\xc8\x60\x13\x76\xfd\xcb\xf7\x65\x0b\x15\x07\xf2\xbd\xeb\xb0\x8d\xe2\xc9\x67\x4e\x48\xfc\x51\xd6\x3c\xdf\x26\xe3\x1a\x25\x97\x3e\x45\x2e\xaa\x01\xb0\x42\xf7\xfd\x4d\x07\x3b\xb4\xe5\xd0\x35\x01\x83\x8d\x33\x39\xed\x0f\x36\xa9\xb2\xa4\x6e\x95\x6f\xbd\x2f\x7a\x40\x7d\x6c\x26\x95\x48\x66\x9d\xea\x57\x16\x88\x0f\xe3\x40\xe0\x87\x84\xed\x29\xf5\xed\xeb\x94\xe2\x6e\x76\x3a\x67\xcd\xed\xdd\xa2\x30\x51\x84\x65\xee\xcc\xb5\xe3\xd3\xfd\xc1\xbc\x96\x57\x18\xbc\x9e\xd6\x24\xb8\xd5\x44\x20\xd7\x23\x91\xad\x00\x22\x75\xa6\x4d\xa9\xf5\xac\x57\xce\x08\x76\x1c\xe0\x52\x95\x27\x95\xa6\xfc\x22\xc9\x06\xfb\x0c\xdf\x80\x0f\x03\x3f\xff\x0a\xe3\x7e\x7f\xb6\x50\x8c\x5e\xdf\xc2\x0c\xd0\x17\xd1\x63\xd7\xf2\x81\x6e\x9e\xac\x4e\xf1\x90\x8f\xdd\x34\x18\xcc\x7b\x9d\xbd\x8e\x55\x1d\x8b\x3b\x96\x74\xac\x14\x77\xe3\xbf\x94\xc5\x90\x47\xe2\x6b\xe9\x38\xa9\x6c\x55\xee\xba\xf7\xd5\xee\x06\x71\x11\xc4\xe2\x07\xdb\x44\x6c\x6e\x40\xc0\x9c\xf9\x98\x1f\x5a\xe1\xa6\x1b\xae\xfb\x74\xcb\xa7\x5c\xb1\x4c\x41\xfe\x00\x3f\x04\x76\x20\x4c\x26\x35\xfb\xd0\x58\xa9\x3a\x22\x48\x72\xe0\xca\x1d\x3b\xa1\x78\x0f\xa0\x24\xf1\xfd\x59\xa1\x46\x81\x80\x60\x03\x49\x3f\x37\x7f\xd1\x14\x01\x31\xae\xb5\xac\xcf\xf3\x1f\x7e\x5e\xd4\xfc\xb3\x0b\x73\xba\x28\x24\xec\x1c\x8e\xe4\x0b\x80\x53\x8e\xff\x07\x9f\x66\xfe\x4c\x2a\x98\xe6\x72\xc6\x69\x9c\x93\xc4\x68\xc1\x42\x71\xed\xbd\xe8\xd9\xf3\x25\x4a\x65\x10\xbf\x5e\x7a\x5e\xb7\x3c\x22\xd9\x43\x7b\xa1\xcd\x01\x97\xfa\x6a\x2e\x40\x4e\x8d\x47\xe9\xdf\x7c\xe5\x46\x21\x99\x41\x95\x25\x86\x3d\xaf\x5c\x9e\x3a\x4e\x28\xf4\xe5\x55\xbc\x12\x89\x6b\x43\xba\x38\xbc\x47\xcc\xa2\x2b\x1d\x85\x62\x34\x4b\x21\x47\xf8\x01\x4a\x60\x12\x4f\x59\xed\x32\x77\xd0\x01\x2e\x74\xf9\x0e\xee\xee\xc3\x92\x81\x50\xfa\xba\xe8\xab\x7a\x25\x45\xb8\x11\xb9\x4d\xcf\xc1\xde\x96\x25\xb9\x11\xa6\x3a\x92\x27\x4e\x8c\x95\x06\x9f\xa8\x22\xc9\x4d\xeb\x5f\x3d\x47\x16\x73\xa9\x58\xf1\x67\x10\x7e\x5d\xc5\xa6\x76\xec\xae\x09\xd2\x58\xa4\x6e\xc3\x20\x28\x78\xc0\xa8\x02\x42\xff\xf8\x89\x19\x93\x95\x48\x08\x03\xee\x27\x26\xe9\x06\xf7\xa5\x34\x8f\x80\x4e\x38\xd3\x95\xe2\x67\x37\x67\xa7\x10\x78\xba\x03\x01\x01\xd9\x7f\xaf\x3f\xd3\x21\xca\x26\x6a\x96\x42\x63\xe5\xd1\xad\x7c\xf0\x46\xa5\x09\xa8\x2b\x4d\xb4\xf2\x71\x69\x07\x25\x43\x70\x0e\xb6\xa7\x8f\x0e\x84\x8e\xf4\xd9\xde\x39\x22\x8c\xac\xfb\xeb\x52\xaa\xbf\xe6\xc5\x11\x72\x56\xa0\x51\xf8\xb9\xf5\x4a\x81\x43\xcd\x4a\x59\xb4\xfc\x72\x8d\x75\x27\xab\x98\x83\x60\xba\x90\x59\x2f\xde\x26\xf4\x0d\x4c\x27\x3a\xb4\x96\xf9\xc4\x8e\xec\xd2\xcb\x37\x2c\x8c\xed\xcb\x5a\x36\x28\x4d\xfd\xf5\x3d\xd9\x8a\x4d\xe0\x9d\xd9\x5c\xd2\x79\x87\x1d\x64\xe4\x26\xcb\xc2\xdc\xe3\x6f\x67\x3f\x69\xe8\xe1\xc4\x73\x2b\xb7\x4b\x19\x08\x5a\xd8\x81\x36\x70\xcd\x04\x35\x71\xe1\xfb\xd9\x75\xeb\x6c\x6e\xa5\xa0\xbd\xa2\x8c\x6b\x20\xa8\x88\x53\xf6\xc2\xbd\x0c\x89\xb2\x9a\x20\xd7\xb0\x20\x91\x1e\x82\xfe\xf5\xa9\xec\x62\x5f\x8f\x06\x42\x47\xca\xf0\xef\x8b\x49\x00\x0e\xe9\x57\x99\xb0\x42\x12\x5d\x80\x38\xa4\x33\xc4\x3f\x1c\x49\x43\x89\x19\xb6\x30\x70\xf4\xcd\xef\xa8\xc0\x0b\x61\x42\xca\xde\xcd\x0f\x2d\xd1\x9b\x78\x61\x20\x2f\xcc\xd6\x29\x36\x8d\x15\x82\xfd\x04\x5a\x94\x7b\x6b\x6b\xf6\x02\x53\x1f\x0a\x96\x29\xbe\x78\x58\x0c\x2a\x99\xf1\xeb\xb6\x74\x8c\x6f\x35\x12\xb9\x17\x6d\x77\x4f\xfa\xd7\xac\x90\xe9\x3d\xef\x12\xe7\x0a\x05\xd4\xbc\xea\x0a\x73\x24\xaf\x41\x2b\x54\xc5\x95\x46\xb7\xef\x1e\x9d\x24\x9d\x3f\x3b\x74\x5a\xea\xed\xdc\x0f\x0f\xa9\x02\xfb\xbe\xc7\xb7\x45\x34\x07\x5d\x37\x90\x4d\x8e\x90\xee\x11\x1b\x83\x1c\x31\xed\x7f\x7a\x14\xac\x50\x00\xa9\x32\xbd\x58\x29\xbd\xf5\x84\x68\xc7\x2a\x04\x0f\x50\xff\xa9\x55\x6f\xf3\x71\x33\x04\x35\xc4\xa8\x76\xaf\xbe\x78\x7e\x1a\x0c\x02\xb1\xe2\x35\x67\x66\x0f\x1d\xb5\x58\x44\x80\x72\xcc\xe2\xa2\xf3\xdb\xbb\x18\x29\x77\x0e\x8d\x2b\xb9\x77\xf6\x88\xdf\x36\x9b\x32\x9b\xe2\xff\x3a\x67\x3b\x57\x9f\x9c\x3d\xaf\xa3\x77\x5e\xfc\x1a\x1e\x3f\x57\x56\x6b\x96\xbc\x0a\x3e\xe9\x29\xae\xb8\xf3\x3b\x99\xc8\x91\x16\x28\x58\x44\x8b\xc9\x53\xf9\x49\x5c\x7f\x6c\x8f\x68\x14\xa7\x63\x0f\xd2\x9b\xaf\x6f\x53\x2a\xa5\x38\xbd\x84\x1e\x8f\xe6\x7f\x5a\x9e\xda\xb2\xb2\x11\xe4\x9b\x19\x8f\x42\xc2\x1b\xde\x68\xe7\x69\xa5\x6e\xa4\x6a\x07\x1e\x03\x54\xd1\xea\xf0\x4f\xcf\xb6\x00\xd3\xca\x74\xa4\xc0\x04\xe7\x7e\xba\x9a\x6f\xea\x21\x0c\x18\x1b\xa9\xa9\xfd\xe6\xd0\x18\xa5\x27\xb1\xb9\x11\xd2\x6f\xfb\x15\x51\xc2\xd0\x0f\xb0\xe3\xf3\xa1\xd7\xcd\xfb\x15\xe9\x05\x44\xf9\xac\x56\xa2\x4a\x55\xb8\x51\x84\xcc\x0c\x9c\x71\xb8\xa4\x16\x99\x28\xe9\xa4\x98\x8b\x03\x6b\x38\x74\x14\x3a\x80\xda\x2e\xe5\xfb\x77\x5d\x24\x77\xb2\x37\x5e\x96\x5c\x3e\x71\x38\xbe\x71\xa7\x72\xcf\x80\x09\xb9\xec\xe2\x97\x0f\xa8\xc4\x5a\x13\x01\x3e\xaf\xf8\xf4\xfb\x6c\xd2\x7b\x3d\x76\x09\x86\x52\x5c\xb1\x9e\x66\x1f\xa2\xbb\x6b\xd6\x9c\x79\x54\xf6\xa8\xbe\x75\xac\x5a\xad\x19\xfc\x2a\xe7\xb5\x2b\x32\xe2\xe1\x1e\x60\x1c\x98\x68\x17\x77\xa7\xbc\x06\xd7\x20\x71\x13\x77\x18\xfd\x07\x3d\x63\xa4\x82\x29\x08\x49\x02\x00\xd7\xfe\x43\x6a\x65\x7b\xba\x93\x3a\x25\xff\x37\x36\xfb\x34\x25\x60\x57\x59\x52\xfd\xe7\x40\x7d\xf4\xe5\x32\xe5\x81\x30\x6a\xf5\x8f\x8e\x4d\x96\x9b\x0e\xb3\x1c\xb6\xf2\x0e\xf5\x87\x27\x28\x8a\x47\xcc\xe8\x87\xb3\xbe\xa7\xf5\xb6\xd0\x01\x2a\x36\xe4\x90\xe0\xdc\x90\xd4\x02\x10\x13\x07\x70\xe5\xa8\x8b\x1e\x16\x9e\x27\x54\x36\x38\xfb\xfb\xee\x7f\x59\x5a\x7e\x41\xc8\x72\xf0\x17\xb7\x2a\x32\x75\xa1\x2d\xe4\x57\xf5\xe7\x5b\xc0\x79\x01\x73\xd4\x63\xb7\xa6\xaf\x87\x67\x05\x80\x24\xd0\x78\xf4\x97\x8c\xee\x2d\x01\x26\xa2\x5d\xb9\x7e\xfc\xd4\x58\x4f\x96\xfe\xa4\x74\x6d\x9a\xee\x22\xe3\xa0\x44\xa7\x83\x80\xae\x65\xf5\x5f\x1e\x14\x90\x0d\xaf\xc3\x89\x0b\xb2\xc5\x33\xb2\x34\xe7\xbe\x0e\xaf\x63\xd0\x61\xd1\xe3\x4b\xc6\xa8\xa9\xae\xcc\x88\x31\x8d\x77\x33\x04\xdd\x44\x25\xb8\xd8\xcc\x4d\x3d\x7c\x91\xfa\x75\xcb\x90\x32\xac\x41\xe2\x93\xae\x55\xde\x64\x5f\x79\x89\x0d\x90\x94\x08\xb5\x85\x79\xf9\xbb\x01\x43\xda\xc3\xe6\xc6\xba\x19\x20\x30\x02\x7c\x70\xf2\xd0\x0a\x95\x40\x21\xfb\xf4\xc6\x5f\xf7\xe1\x27\xc6\x4a\xf5\xb0\xeb\xdb\x20\xac\x58\x5c\xda\xe4\x77\x35\xc5\x5b\x1e\x39\x88\xe1\xa7\xd5\xc6\xcc\x7c\x90\x93\x3f\x6d\x1b\x56\x10\xdf\x34\x7f\xb4\x57\xfc\x68\x1b\xc7\x69\x8b\x89\xe7\xc6\x1f\xec\xc3\x53\x14\xf6\x26\x68\xf8\x0c\xdb\xa4\xef\x52\x4c\x90\x98\xd1\x2e\xe1\x70\xd4\x05\x1c\x52\x4b\x2d\xf2\x11\xeb\xc0\x73\x9f\x58\x9e\x96\xe4\x5d\x73\x7b\x0b\xc5\xe8\xd5\x1e\x55\x39\xd9\xc7\x36\x32\x50\x90\x8a\xc6\x5c\xa4\x98\x86\x32\xd4\x33\x1d\xab\x7d\xe4\x91\x0b\x04\x01\x10\x54\x80\x5b\x05\x19\x25\xb3\x19\xc3\x93\x2a\xd3\xe7\x9b\x9d\x5b\x8e\x66\x23\x72\x0d\xc5\xdd\x42\x23\x69\x73\x6c\x45\x34\x96\x60\xa3\x0a\x13\xa4\x98\xde\xd4\x54\x53\x57\xec\xa3\x30\xa3\x1d\xdf\xd4\x7f\xf5\x94\x98\x96\x94\x99\x88\x42\xcb\x81\xfc\x42\x7f\xb6\x50\xae\x82\xb0\xec\x00\x37\x5b\x28\xe7\xef\x39\x35\x96\xdf\xa8\x06\xb7\x95\x11\x88\x01\x8d\x8b\xdd\xdd\xd4\xc0\x29\xd6\xe9\xf9\xd5\x12\xfc\x3f\x0c\xb0\x8b\x1d\x4a\x0f\x9d\x3e\x81\xfd\xdd\x00\x3b\x20\xc0\xec\x78\x93\xab\xda\x94\x64\xe2\xb1\x3c\xf1\xfd\x73\x59\xe6\x5e\x05\x69\xcd\x74\xc3\x1d\x69\xc5\x33\xbf\x83\x2a\x22\x7e\xf6\x3c\x89\x3b\x50\x47\x0e\x77\xc4\xca\xf5\x3f\xcf\x7e\x0b\x74\x03\x44\xb8\xce\xd2\x63\xb7\x09\x9d\x9e\x06\x70\xab\x7e\x01\x50\x65\x0c\x87\xda\x23\xe6\x3f\x73\x0f\x4b\xb4\x4b\x31\x53\xaa\x9c\xbd\x3e\xfd\x65\xf3\x28\xb1\x4c\xb7\xa7\xb6\xd8\xc9\x50\xfb\x63\xbe\xd8\xcc\x3e\xd5\x47\x86\xb2\xeb\xb8\xda\x82\x99\x67\xf5\xa9\x3d\x82\xe2\x09\x5c\x6a\x59\x96\xbd\x13\x33\x96\x5c\xcc\x02\xe1\xf4\x2b\x1d\x98\xb2\xbb\xd4\x75\xe1\xe3\x0a\xab\x1a\xd8\x76\x48\xad\x5b\x19\xe9\xe3\xf6\xa5\x97\x28\x59\xcf\xa5\xdb\x68\x26\xda\x22\x7a\xa4\x3b\xb3\x71\xa5\x0e\x13\x18\x9e\x10\xfe\xd4\x96\x8a\x72\x29\xd5\x92\xd7\xbf\xf2\x8c\xec\x73\x3c\x80\xd8\xf5\x9c\xfa\xb6\x78\x1d\x75\x0b\x3b\xc9\x61\x58\x6b\x8b\x8b\xd6\x1d\xbf\xb8\xfc\xad\x51\x36\xc2\x4c\xa9\x00\x3f\xcb\x42\xcf\x8f\xf4\xa4\x1f\x46\x05\x63\x28\x43\xea\xa7\xc7\x14\xf4\x60\x08\x5d\xec\x4b\x68\x9e\x5c\x6e\x6f\x12\xfc\xe5\x91\x43\xa4\xdd\xa6\x08\x14\x01\x1f\x25\xd6\xe7\xb9\x1b\x7a\xd8\xed\x64\x6c\x6a\x0a\xde\xd9\x34\x74\x9c\xf4\xa6\x4c\x82\x24\x94\x8a\xfe\xa8\x04\xad\x73\x70\xc9\x67\x7e\x5c\xcf\x6f\x94\x27\xd1\xc8\x01\x84\x3d\x18\xed\xab\x4b\xa6\x0d\xd6\x90\xb1\x2f\x9c\xad\xbc\xe7\x4e\x16\x7d\x66\x28\x91\x0e\x73\xd7\x0f\x95\xd7\x82\x01\x01\x06\x87\xe3\x7e\x49\xd9\x75\x97\x41\x0d\x93\x74\x8f\xf0\xf1\x87\x45\x4d\x51\x0a\x49\x05\x26\x1a\x02\x7a\x9f\x62\x25\x6d\xd8\xc8\x45\x06\xdb\x16\x47\xcf\xdc\x97\x3d\x1a\x2e\xae\x55\x30\xc1\x26\x77\xd9\xa7\x6b\x94\x8f\x48\x9b\xd4\xc4\x3b\x98\x22\x98\xef\x61\xaa\xdd\x2b\x71\x10\xb4\x1a\x02\xfd\xf5\xc3\xe9\x17\x2c\x63\x01\xe6\x8c\xde\x5b\x28\xed\x7e\x28\xc5\x8d\x76\x1a\xc3\x77\x5d\x4b\x7d\x48\xd2\x2a\x6f\x61\x22\x85\x30\x99\xfe\xf7\xc9\x20\x98\xdc\xd9\xdf\x5b\x32\x61\xa7\xd9\x7d\xf9\x65\xd9\x7b\xa8\x92\x85\x3e\xf2\x4e\x42\x86\x2a\x01\x02\xe3\xef\xb9\xb1\xbd\x2d\x0b\x86\xf2\x08\xdb\x50\x5d\x6c\x4a\x62\xf8\x8c\x9f\x9d\x5b\xb5\x46\x34\x62\xd8\xe6\x88\xa0\x07\x16\x5c\xa2\x24\x4b\xa3\x63\x90\x21\xa1\xf6\x2d\x85\x0b\x6a\xe1\x90\xf8\x09\x66\x62\xdb\xdb\xe9\x88\xb2\xde\xba\xfe\xd0\xff\xad\x8f\x39\x04\x5f\xcd\x2a\xfe\x96\x9f\xfd\x4a\x6d\x4c\x86\x04\xe3\x52\xe7\xed\xf8\x6b\xbc\x68\x4f\x6d\xad\x94\xa8\x9b\xbc\x32\xe4\xbd\x2e\xcf\x45\x45\x01\x22\x65\xd0\x9f\x5c\xa6\xb9\xc7\x25\xe2\x3f\x8d\x65\xf4\xd5\x8f\x3b\x27\xd1\xb8\xa3\x8a\x66\x80\x1a\x93\xe6\x3f\x74\x72\xa2\x54\xbf\x36\xea\x10\x04\x56\x66\xc9\xf1\xf9\x76\x56\xaf\x1a\xd0\xf5\x19\x4c\x6c\xc4\xe1\x89\xd2\x10\x23\x00\x94\xb4\xc2\xc1\xc7\xf4\x37\xe9\x7b\xd3\xd8\x11\x7a\xf1\x25\xbb\xfc\x65\xf1\x62\x7c\x4c\x11\x45\xfa\x7a\xed\x22\xf9\x65\x19\x98\xb4\x16\x5e\xbb\x37\x2b\x4b\x59\x6c\x9b\x4c\xce\x3a\x77\x78\xff\x24\x35\xb2\x53\x05\x6d\x10\x24\x40\x71\xed\xab\xc7\xc5\x35\xb2\x41\x09\x13\x10\xa7\x6a\xca\x85\x59\xa9\x78\xad\x32\x55\x68\xbe\xa6\x4e\x6e\xef\x4f\x94\x74\xed\x40\xdf\xaa\xe2\xda\x65\x75\x39\xe4\x0d\x7f\xe3\x22\xa5\x78\xe7\x36\xd4\x20\x65\xae\xe6\xef\x55\xa0\x2b\xb0\x92\x50\x31\xbf\xfe\xe2\x98\xec\x6a\xa4\x91\x5a\xf2\x4d\x53\x26\xe7\x10\x72\x88\xa0\x76\xfd\x5e\xd1\x92\x5a\x21\xa7\xf7\x9b\xd2\x86\xd7\x84\x25\xa6\xbc\x96\x9b\x37\x43\x69\x20\x2d\x24\x6b\x02\xed\xb9\x47\xac\xc2\x24\x15\x9c\x66\x7e\xcd\x1b\x22\x70\x51\x02\x74\x42\x69\xfb\xf1\x31\x7e\x88\x38\x45\x81\x55\x03\xf7\x3f\x2c\xc1\x0e\x40\x60\x91\x06\xed\x29\x87\x6f\x13\x52\xc1\x83\x8c\xe0\xd1\xee\xcc\x22\x38\xf0\x30\x35\xcb\x88\xde\xdd\x78\x81\x84\xad\x24\x30\xae\xb0\xa8\x25\x03\xa1\xac\x8f\xfc\x94\x40\x5d\x59\x06\xf1\xf7\x4a\x44\x11\xf5\x9f\x97\x58\xe1\xe8\xa3\x20\xe4\x6b\xf6\xc8\x7f\x4a\xcc\x96\x48\xb5\x50\x8c\xda\x02\x4e\xa4\x0e\x09\x93\xe8\xcd\xfd\xb3\x02\x23\x62\x62\x0d\x9c\x5c\xd0\xd8\x27\x81\x52\x0c\x00\x68\x9f\x3f\x44\x31\x94\x8f\x33\x1e\x6f\xaa\xae\xdc\x3e\x82\x9f\x3b\x09\x19\xf1\x56\x2a\xc3\x69\xa7\x55\x57\x2e\x3a\x4f\x55\xa3\xa5\x68\x7c\x4e\xae\xd7\xbe\xb1\x4f\x01\x45\x78\x24\x71\x36\x3e\x68\xc9\x66\xa0\x1e\x66\x6b\x74\xfd\x96\x97\x33\xcb\x52\x48\x18\x8c\xfb\xfc\x1d\xd2\xf6\x0f\x12\x54\x46\x1c\x27\x9a\x1f\x2d\x71\xd0\x91\x43\x5b\xea\xf8\xf4\x44\x57\xbe\xa1\x8a\xdd\xcd\x9f\xc7\x87\x7f\x67\xfb\xa5\x57\x97\x28\x73\x15\x8a\xd1\x35\x8a\x81\x3f\xe4\xf7\x8e\x3b\xdf\x4d\x1c\x29\x62\x1e\x9e\xee\x87\xb6\x8d\x6a\x4c\x26\x6f\x7c\x99\xab\xb0\x75\xc5\x05\xc3\xa9\x63\x3c\xe6\x80\x1a\xa2\x33\xb1\x5e\xc5\xfc\xa0\x8c\x09\xe7\xf4\xe5\xee\x78\x98\x0d\xde\xeb\x28\xa0\xb3\x9e\xdc\xd6\xdb\x2e\x94\x27\x0c\x2b\x56\xac\xbc\x6c\x05\x76\x65\xcf\xdb\x47\xa4\xfc\x4a\xe8\xd2\x07\xf1\x6e\x7e\xd9\xbe\x34\x5b\x10\x94\xc8\x2a\xed\x34\x45\x55\x53\x43\x3e\x0a\x30\xdd\xb4\x3c\x3d\x41\x01\x6e\x21\xdb\x06\x09\xd5\xb2\xf6\x84\x0a\x12\xac\x0b\x2f\x91\x1f\x2a\x7b\x63\xbf\xe1\x07\x30\xc1\xfd\x54\x56\xab\x9b\x24\x6a\x94\xc3\x40\x72\xcd\x7c\xad\x26\x41\x55\x09\xa0\x76\xc2\x57\xbc\xf6\x7f\x4d\xd3\xb8\xb9\xd4\x59\x3b\xdb\xc0\x56\x5d\x5c\x67\xe5\xfa\xb9\xb3\x58\x76\x05\x88\x78\x14\x49\x1d\xf5\x74\x28\xb3\x3f\x4c\x08\x74\x03\x2c\x66\x7f\xd6\x8b\x2a\x88\xde\xa1\x60\xbf\x44\xed\xed\xcf\x6f\xaa\x2a\x9e\x65\x48\xc5\x9f\xf9\x48\xad\x6d\x95\xa8\xea\x1d\xc3\x0d\xed\xa0\x21\x04\x05\x22\x53\x21\x83\xd7\x25\xb9\xd3\x9f\xdf\x3a\x56\x7e\xb5\xab\xae\x5a\xc5\x2d\x9c\x8b\x4d\xed\xb9\xe7\x55\x91\x62\x07\x1b\x04\x04\x3e\x23\x3b\x64\x93\xf3\x57\x16\x5c\xa8\x46\xed\x00\x13\x31\x79\x6b\x6a\xd3\x1e\x11\x46\xe6\x3e\xaa\x84\xad\x78\xd7\x25\x1b\xc5\x18\x19\x97\xfa\x18\xd6\x92\xd6\xbb\xa7\x14\xbc\xbd\x1f\x1a\x46\xdc\x74\x4c\x9f\x4e\x35\xb4\xcf\xb2\xb6\x6c\x39\x84\x85\x6a\x23\x94\x64\x2d\xa3\x93\x92\x07\x83\x03\x1d\x4c\x28\xdf\x3a\xfa\xca\xc3\x02\xc0\x6c\x50\x28\xad\x1a\x4a\x47\x2f\x67\x97\x00\xbb\x0c\x6a\xaa\x5d\xb8\xae\xc5\x35\x19\x20\x37\x35\x4e\xf9\x60\x40\x89\x75\x61\x60\x27\x86\x02\x0f\x8c\x53\x5a\x5c\x48\x7c\xfa\x60\x68\x40\xca\xaf\x9e\x2a\x0e\xa0\x1f\x32\x97\xd6\x5c\xb7\x37\x34\x09\x2c\xd4\xab\x49\xfb\xd3\x92\xec\xd6\x60\x1e\x1f\x94\x6f\x95\x64\x2d\xe2\x48\x03\x6b\xf4\x1b\x7e\xfb\x35\xe5\xf3\x94\x6a\x28\xd1\xa1\xcf\x5d\x38\x4b\x5e\xe4\xb9\xb0\x46\x71\x35\xd1\x37\x7a\xb2\x49\x9c\x83\x5e\x28\x01\x39\x24\x9c\xf0\x9e\x3b\xbd\x2c\x7b\x18\x2b\x21\x24\x24\xbe\xa9\x5c\xbc\x04\x3f\xa8\x1a\xb9\x30\x60\x2c\xa3\x63\x17\x2e\x4f\x39\x5b\x00\x91\x0c\xe6\xfe\x27\x2b\xd5\x79\x56\xb2\xf1\x65\x4a\x84\x43\xcf\x55\xdc\xde\x66\x0b\x1d\xf5\x5c\x79\xcb\x48\x19\x6b\xc2\x18\x93\x85\x53\x13\x5a\x5a\x3b\x48\xd2\x45\xcd\x92\x1d\x6c\xbe\x79\x1d\x28\x95\x80\x3c\x12\xea\xbd\x47\x61\x1c\x00\x52\x85\x19\x6d\xd0\xa7\x2f\x57\xca\x00\x02\x41\xc0\xbc\xe5\x28\x9c\xf0\x48\xbb\x3c\xc3\x84\xf1\xb1\x43\x03\x74\xac\xa4\xdd\x27\x81\xbe\x40\x50\x63\xaa\xa6\xfa\x76\x86\x40\x2e\x5c\x1f\x56\x2d\x5c\x93\x25\x6a\xfe\xfb\x1e\x89\xc0\x84\x5d\x9f\x6e\x57\xa3\xfb\x3b\x25\x98\x03\x20\xae\x5c\x61\xea\x6d\x4f\x0e\xe3\x4d\x99\x09\x49\x1c\x40\x4e\xec\x15\x64\x5a\xdc\x4f\x53\xdd\xaa\xc1\xfd\x1e\x69\xbc\x71\x5f\x60\x31\x6c\x35\x0a\x00\x03\x4d\xe7\xeb\x8a\x1d\x04\x95\xa9\xb3\x1b\x09\xa3\xdb\xe5\x9a\xb9\xd7\x73\x4d\xbd\x8c\x21\xcb\x9a\x2d\x0a\xc4\x0b\xd1\x2e\x89\x11\x63\xc7\x0f\xe5\xd3\x5b\x8c\x03\x8b\xbe\x35\x7c\x4c\x04\x8a\xae\x5e\xa1\xf1\x90\x06\xb4\xbf\x5b\x22\xc9\x06\x03\xb7\x42\x6b\x87\xd5\x4f\x30\xcf\x83\x6b\xdd\x00\x55\x2d\x20\x69\xbf\xeb\x5b\xce\x4e\x51\xa3\x79\x81\x99\x58\x82\xd4\x05\xb7\xd8\xd4\x3a\x15\x36\xb2\x11\xf7\x26\x8c\x08\x9d\xfb\x7f\xca\xde\x80\xf5\xae\xa9\x7c\x61\xcf\x52\x35\xc4\x92\xd4\xff\xee\x8f\x27\x54\x97\x2c\x52\x65\xe3\xba\xdc\x85\xeb\xa5\x51\x2c\x41\x7e\x80\x5c\x2a\xea\xe4\xbe\x99\x1d\x1e\x12\x60\x70\x98\x87\x5a\xcf\xb7\xef\x6f\x13\xc2\xc8\x92\x09\xcb\x2d\x9b\xcf\x97\x02\x5c\x80\x06\x20\x13\x39\xeb\x57\x17\xd9\x54\xf8\x80\x27\xca\xf3\xb6\x8f\xc9\xfc\x23\x98\x78\x62\xeb\x67\x57\x8d\xcc\xc8\x7d\xc5\x87\xe4\xa2\x17\x15\x09\x60\x50\xe1\xc7\x3f\xf7\xee\x70\x41\x4a\xc0\xa8\x50\x8c\x1e\x7c\x40\xfc\xe4\x80\x60\xec\xa5\x3f\xf9\x9d\xd3\x93\xa4\x50\x54\x1d\x04\x5e\x96\xbb\x6e\x0f\x6b\xca\x96\x02\x99\x75\x9d\x2f\x2c\x93\x81\x3e\x0e\x74\x3b\xa4\x57\x7e\xfb\x3a\xd5\xbb\x96\x52\xb1\x68\x38\xfe\xa6\xe2\x6b\x0b\xca\x6c\xa5\x5e\x29\x14\xa3\x91\xbb\xe5\x41\xb1\xe3\x25\x96\x3f\x94\x57\x36\x44\x19\x37\xd5\x01\x4a\xb1\x2d\xd1\x96\x91\x93\xe4\x7f\x39\x18\x50\xff\x6f\x15\xbd\x2d\x02\x8c\xb4\xb5\x42\xaf\xf1\xfb\x8f\x0c\x0b\xda\x52\x6d\x95\x3b\xbb\x38\x5b\x6a\x50\x35\x94\x38\x29\xba\x93\xa4\xf1\x0b\x32\x21\x60\x9e\x1c\x13\x5e\x50\x6d\xb6\xe2\x70\x98\xe0\x7e\xef\xdf\x23\xe1\x7e\xe7\x52\x81\xde\x75\x6f\x4b\xf4\xf3\x38\x6d\xd1\x3d\xe3\xad\x57\x64\x18\x84\x5c\x7d\x39\xf7\xca\x6b\x09\x2a\x80\x21\xd5\xe8\xac\xe3\xf0\xeb\xe3\xf9\x87\x07\x4e\x0b\x17\x48\x27\x33\xd5\x9d\x9b\x8d\x7d\x3f\xe4\xe8\x31\xfd\xb5\x67\x15\xdc\xb8\x1d\x42\xc6\xdf\xc8\x4f\x39\x3d\x46\x9a\x4b\x94\xed\x10\x26\xc8\xb8\x0b\x87\xb0\x08\xb5\x1c\xa4\x30\x64\xf8\x72\x6b\xb7\xc1\x36\xac\x71\xf5\xf8\x92\x2a\xe6\xca\xf7\x6a\x89\x66\xe3\xee\x05\x92\x6a\x04\x34\xe3\x1a\x96\x47\xe6\xd3\x0b\xdb\x54\x8e\x3b\x6d\xaa\x82\x17\xc7\x65\xee\x84\x0d\xcd\x0a\xe4\x1d\x80\x7e\xef\x3e\x4e\x01\x8c\x1f\x92\xcf\x7d\xef\xa3\x45\x33\xe4\xcd\x5e\x0d\xfa\xb4\xf0\x65\x35\xf1\x65\x11\x1b\xbd\x72\xcb\xb5\xe9\xf7\xb0\x76\xc7\x82\x04\x05\x80\x95\x00\xe0\x24\xc7\xef\xd4\x60\x66\xcd\x7f\xb8\x2f\x6d\x83\x10\x49\xa7\x13\x78\x6d\xba\x5f\x74\xab\x02\x2d\x10\x4d\xe9\x51\x21\x25\x7e\xfc\x34\x2a\x1c\xa8\xc5\x42\xc1\xc4\x91\xa3\xa4\xba\x89\x1a\xac\x14\x9b\x5a\xbb\x04\xf4\x61\x66\xd9\xb4\x34\x7a\xe8\x51\xce\x08\x41\xc0\x6c\xc8\xf4\x96\x55\x7b\xf8\x3a\x95\xb9\x85\xd0\x91\xfd\x1f\x8f\x29\xa5\x3a\x84\x4e\xba\xb2\x6a\xe7\xde\x67\xdd\xf3\x3b\xd8\xb8\x79\xe5\xa1\xec\xe1\x40\x41\xb2\x47\xce\x7d\x7e\x79\xb6\x5c\xe8\x03\x1e\x70\xa1\x9f\xca\xa8\x7c\xde\x53\x0b\xb6\xb2\x4d\xfd\x5d\xe8\x75\x3d\xba\x98\xb3\x74\x21\x05\xe0\xe6\x7e\x74\x07\x4b\x60\x2b\x09\xa6\xce\xbd\xf2\x84\xf8\xd8\x39\xd2\x88\x8f\x4f\x65\x56\x5e\x1d\x75\x6e\x1a\x9b\x81\x6d\x62\x49\xfd\xa0\xf1\x84\xea\xf7\x0b\x02\xe8\x5f\xb6\x20\x19\x46\x3c\x39\x45\x36\xf5\xa1\x75\x35\x53\xa8\xd5\xcc\x89\x2d\x7a\x33\x7e\x80\x0c\x76\x21\x3e\x76\x79\x96\xf1\x9f\x62\x8b\x51\x2b\x5a\xf8\xa3\x2b\x15\x66\x4a\xbf\x07\x5d\x13\x05\x21\x49\xd6\xdd\xf9\xd9\x7d\xd9\x47\xd4\x87\x91\xc4\x7a\xd1\x5f\x7d\x28\x3b\x89\x29\xc5\xa9\x82\x94\x32\x62\x8c\x0f\xdc\x27\xfc\x58\x2a\x2d\x3a\x91\xda\xbf\x9a\x2a\xd3\x9f\x04\xd4\xec\x8a\x11\x01\xbe\x24\xb1\xab\x68\x18\xae\x33\xdc\x93\x3e\xe3\xdd\x04\xfc\x85\xe9\x66\x42\xff\x17\x05\x88\x5b\x21\xc0\xf3\xec\x24\x73\xfd\x5e\xb1\x8f\xe8\x0b\xfd\x64\x47\x94\xfb\xfb\x2b\xb8\x0b\x11\x21\xc0\xad\xb0\xc9\xc4\xf5\x8f\xa8\x96\x0d\xa1\x5b\x4d\x1a\x95\x33\x3b\x24\x5d\x67\x1c\x74\xd0\x80\xf3\x21\xa6\x8f\x4d\xbd\x1f\xd2\x17\x46\xd9\x7d\x0a\x13\xc7\x0f\xb0\x9b\x18\x75\x7f\xfd\xa4\x14\xa1\xc3\x12\x20\x80\x82\x2a\xff\xdf\x6d\xca\x96\x8e\x50\x41\x17\x46\x9f\xd3\x6e\x5a\xce\x22\x6c\x89\x20\x58\x4e\xc0\x4c\xff\xab\x28\x90\x95\x20\x08\x03\x54\x0e\x39\x63\x4b\xbf\x5f\x51\x8a\x08\xdd\x00\x87\x86\x95\x5e\xac\x4d\xeb\x05\x46\x4d\xd2\x91\xa2\x0f\x68\x13\x53\x71\x29\x2c\x43\x01\xc1\xa8\x75\xae\xfa\x2b\x5b\xee\x30\x02\xe0\x59\x74\x6a\xa9\x3d\xa2\xb0\x4b\x4c\x68\x83\x06\x5b\x03\x2e\x36\x55\xf0\xb1\x8b\x80\x0c\x3e\xd6\xf6\x6d\x4e\xa3\x53\x0d\x4a\xe8\x87\xfc\x79\xdb\xc4\x5a\xd9\x85\xf5\xb8\x6a\x19\x7e\xba\x5d\x5a\x3f\x53\x11\xbb\x44\xd4\xf1\x0b\x91\x72\xbe\x42\xe2\x87\x42\x62\xec\x17\xc7\x27\x88\x31\x7b\xbf\x3a\x08\x7f\xe0\x0d\x71\x81\x4d\x1c\xc6\xa1\x3b\x8e\xe1\xf4\x00\xd6\x9f\x96\x64\xd2\x1c\x93\x0e\x46\x26\xdd\x9a\x50\xed\x2b\xa1\x6f\xf1\x28\x70\xf5\x12\x29\x52\x22\x9f\x49\x6b\xe5\x3e\xfd\xb0\x40\xdb\xb6\x0a\x60\x6a\xe7\x6b\x5c\x6a\x8c\x73\x85\xe9\xf2\xed\xa6\x07\xe4\xc5\x7c\x83\x7a\x19\x17\x8a\x51\x69\xa4\xc8\x33\x25\x82\x4a\xb0\x10\x80\x2a\xdb\x03\x35\xf3\xb9\x93\x02\x5e\xd7\x90\x6d\x8d\x76\x1d\x95\x54\x3a\x25\x40\x9e\xbe\x26\x2f\xae\x5c\xe8\x22\xec\x22\x2e\x35\xbd\x7e\xa5\x2a\x67\xe4\xd1\x09\x58\x32\x65\x89\x7e\xf3\x90\x34\x45\x84\x65\xc8\x56\x1d\xe2\x27\x3f\xc8\x01\x9b\x75\x10\x30\x9a\xc6\xdc\x37\x39\xd1\xd2\x03\xc4\x67\x0b\xc8\xfc\x27\x4f\xf0\x51\xa2\x11\xda\x1e\x9b\xfb\x34\xf5\x6d\xfb\x58\x30\xee\xea\xec\x98\x1f\xff\xc3\x7f\xdc\x39\x5e\x9e\x9f\xa1\x0a\x01\x6e\x02\x81\x89\x26\x3d\x3c\x5e\x52\x15\xb4\x81\x6b\xca\xa2\xf4\xbf\x7c\x71\x72\x6b\xe0\x65\xee\x9a\x62\x9d\x77\xf9\x6a\x49\x49\xd0\xf1\x20\x29\x43\x83\xa1\x43\xf3\x9f\xb9\x23\x9d\x57\x05\x30\x61\x8b\x6b\xed\x8f\x2a\xe5\xbf\x07\xe3\x77\x90\x90\x44\xef\x99\xc5\x8a\xb7\xc5\x90\x38\x38\x90\x50\x59\xff\xb5\xa2\x05\xa2\x51\x66\xf6\xa4\x0c\xed\xf0\x86\x25\x02\x44\x19\x42\xbe\x3b\xd2\x86\xad\x92\x8d\x1d\x6c\xe8\x38\xb4\xc5\x69\x0c\xe1\x5e\xf6\x54\x9c\xa8\xd8\xd4\x16\x1f\x56\xc5\x33\x81\x69\x63\xa3\xca\xa6\x99\x13\x0e\x89\x23\x3c\xdd\x64\xd6\x56\x60\xda\xc5\x4a\x48\x2f\x01\xb7\x82\xcc\xec\xe5\xfc\x40\xd1\x3c\xdb\x10\x22\xa3\x6a\x73\xb1\xea\x8f\xf5\xb5\x49\xc3\x3b\x2c\x4c\xdc\x7a\x1e\x9a\x20\x00\x4d\xad\x67\x7e\xf7\x1d\xaa\x12\x2d\xe2\xfa\x74\x51\xef\x5a\xb9\xa1\xab\xd0\x87\xaa\x35\xdf\x57\xa8\x88\xc8\x64\x1a\xe5\x79\xe7\x05\x69\x1b\x9b\x2a\xcd\x0c\xb0\x83\x45\xd5\x76\x2c\x82\x29\x7b\xa5\xf7\x35\x76\x63\xcb\x71\x6d\xec\x71\xbe\x54\x6e\xf9\x5b\x4a\x31\x18\x00\xbb\x21\x2f\x4f\x7f\xb7\x5c\xcc\xd3\x7c\xdc\x32\xa7\x5a\x76\x97\x62\xdd\x13\x32\xd7\xe9\xa8\xff\x41\x96\x24\x56\x03\x54\xa7\xb5\x48\x52\x8b\x5d\x14\xc8\x56\x1a\xb2\x78\xe6\x33\x5b\xc4\x69\x06\xc4\xc5\xb6\x29\xb9\xa3\xe8\x7b\x0f\xab\x83\x79\x6e\x72\xcd\xe3\xdb\xf5\x0a\x47\xce\xb7\x00\x81\x16\xb6\xcd\x04\x27\xaf\x4d\x5f\x25\x89\x7c\x42\x52\xf5\xad\xb8\x44\x2c\x36\xb5\x9f\xf1\x99\x7e\x29\xb4\x6d\x18\x20\x96\x0a\xee\x5c\xa8\xf4\x1a\xf1\x3b\xa2\x81\xe6\xcb\x8a\x4b\xb1\x09\x6d\xc8\xa1\x30\x74\x9e\x9f\xbf\x7b\x8a\x24\xff\x40\x58\xc1\x47\xe1\x80\xa5\xf3\x79\x10\xc0\x04\x98\x02\xc5\x72\x8e\x2b\x4e\x67\x15\xb3\x3e\x62\x0c\x9b\x8f\x17\xae\xb4\x4b\xe1\x86\x10\x92\x0d\x61\xfa\x04\x37\x3c\x28\x82\x23\x0c\x2c\x84\x3d\xaa\x7f\x9c\xeb\xd8\x3f\x4c\x60\x57\x9d\xf8\x07\x5f\x3b\x41\xa0\xa1\xa9\x0d\x8c\x18\x44\x4c\x7b\x38\x83\x44\x33\x51\xb2\x3d\xfe\xe4\xe5\x2d\xbc\x3d\x78\xd9\xfa\xf5\xc9\x79\x38\xb6\x55\xc4\x23\x50\xc2\x35\x48\xb7\x80\x65\xa6\xb2\x96\xbb\x5b\x59\xc6\x53\x01\x00\x6e\x94\xcd\xd1\xe8\x53\xc6\xca\x31\xd7\x84\x6e\x40\x4d\x97\x0b\xc5\xa8\x7d\xf9\x28\x29\x9a\x11\x87\xf6\x09\x5f\xbd\xaa\x4d\x0c\xcd\x85\x0b\x65\xf4\xbb\xd1\x32\x38\x2a\xb0\x20\x89\xc3\x1f\x55\x20\x5a\xc0\x9e\xf2\x62\x60\xc3\x86\x74\x80\x2e\x58\xd1\x96\xc5\x0f\xd0\xe1\x47\xb1\xa9\xfd\xe7\x7e\x15\xd4\xeb\xd1\x91\x72\x3a\x53\xd7\x2e\x7c\x55\xa4\x16\x57\x82\x10\x0c\x97\x04\xad\x2b\xd0\x8f\xeb\xc9\xf8\xaf\x9f\x9a\x32\x42\x62\xd9\x51\xb5\x02\xfd\xd7\x6e\x36\x8e\x30\x05\x64\xba\x6f\x8c\xb0\xab\xea\x67\xc5\x81\x8b\xeb\xfe\x5e\xbd\x4d\x62\xc8\xda\x80\x0b\xd3\xe6\xfe\x41\xa8\xd1\xcc\xed\x8d\x33\x45\xce\x95\x34\x44\x09\x04\x3e\xd3\x76\xfc\xda\xfb\xd2\x3f\x27\xc8\x47\x74\x88\xfc\xc2\xf3\xa2\xfb\x8a\x33\x8a\xe9\x81\xb8\x8c\xf0\xa7\xc7\x1f\xff\x82\x4d\xc2\x68\xb4\xb7\xb3\x50\x8c\xe0\x29\x79\x84\xe7\xc2\xb0\x96\x6a\x77\xaf\x7b\x5a\xe0\xe5\xab\xb8\x34\x40\xf7\x61\xdb\x4e\x0d\xc6\x2a\x61\x53\x85\x21\x57\x64\x93\x52\x05\x06\x05\xca\x65\xa4\x81\x95\x93\xee\x75\xd2\xb2\x04\x60\x84\xcd\x04\x9c\x7a\x69\x5b\x1a\x5f\x8d\x96\x89\x75\x74\xf7\xbb\x92\x12\x23\x48\xdc\xa4\x73\xbe\x78\x8b\x65\x5b\xf2\x00\xc8\x1d\x8b\xc4\x20\xa0\xc2\x0e\xf2\xfd\xfb\x46\x48\xb3\x18\x4a\xf9\xb8\xce\x1d\x2b\x35\xbf\x06\x26\x1e\x26\x09\x06\xfe\x39\x4d\x61\xda\x08\xe3\x7f\xe6\x45\xab\x6d\x3e\x2c\x69\x4b\xc4\x61\x39\xfe\x8f\xe7\xf3\xe1\xa2\x09\x1a\x36\xbb\xf7\xf9\x8f\x1f\x64\x61\xda\x0f\x89\x17\xbf\x2e\x16\x0d\x2a\x43\x14\xc0\x1f\x04\xc4\xa7\xd0\x3b\x91\xa9\x5e\xbd\x55\xad\x41\x4b\x89\x31\xcf\x7f\x2c\x91\x34\x59\x2c\x08\x09\x03\x50\xe7\xf6\x9f\x19\xab\x24\x37\xc8\xb9\x63\x4d\x1d\xda\xe3\x79\x85\x17\x40\xbb\xd5\xb2\x20\x2f\x8d\xcd\x91\x6d\x13\x4c\x17\x81\xda\xd8\xf3\x54\x81\x6b\xc6\xf2\xa2\x8d\xc3\x8f\x9e\x90\xde\x0b\x45\x89\xd2\x0b\xfb\x2a\x47\xc2\x01\xd7\x85\xfd\x0c\xb5\xfa\xa3\xb7\x54\x41\x06\x7e\x36\xa2\xef\xad\xc8\xe6\xf9\x3e\x58\x87\x36\xe1\x2a\x70\xdf\xdc\xcd\xaa\xac\x1b\x24\xd9\xd8\xa7\x37\xf2\xed\x45\xb9\x4c\x31\x39\xbf\xbf\x22\x9b\xf6\x6d\x40\x90\xef\x83\x0c\xfa\x21\xb2\xa6\x09\x7e\x8d\x01\x0b\xc5\x48\xb7\x66\x28\xd9\x87\x10\x84\x83\x60\x30\xc8\x8e\xfe\xb1\x05\x12\xe1\x68\xfe\xfc\x39\x85\x62\xb4\x6e\xe4\x78\xe9\x3c\x11\x64\x37\x5c\x19\x44\xbc\x4f\x9a\x29\x92\xd0\xa3\x09\xed\x6e\x2f\x6d\xcb\x69\x7d\xff\xc5\x19\xd9\x49\xa8\x85\xa9\xa8\x80\xd7\xaa\x1d\x71\xfd\x5e\x61\xf0\x19\x48\x60\xe5\xdc\xb2\x93\x2c\xd1\xd5\x91\x6b\xfa\x75\xe8\xd1\x9f\xdb\x9d\x57\x11\xd1\x71\x39\x47\x37\x96\x33\xad\xc9\xd9\x95\xd8\x65\xd7\xaa\x80\xea\xa6\xfe\xc9\x99\x23\x78\x61\x41\x1c\x1e\x83\xf3\xc1\xe3\x97\x66\xcb\x8a\x54\xaa\x93\xa1\x08\xb3\x53\xcd\x9f\x2f\xcb\x1e\x43\x17\x02\x52\x62\x9e\xe9\x87\x9f\x14\xa9\x94\x55\x58\xec\xc2\x8d\x3a\xa9\x28\x87\xe3\x3a\x24\xe5\xd0\x4e\x25\x6b\xfe\xf6\x70\x36\x8d\x31\x31\x8a\x94\x32\x76\xe5\x54\x75\x8d\xe8\xd6\xe8\xb7\xe6\x55\xee\xc9\xd7\x95\xc1\x28\x81\x20\xfd\xd9\x7f\x79\x46\x50\xb7\x48\x1c\xd4\x9e\xeb\xca\xd6\x0a\xb0\x1f\xf1\x23\xff\xd1\x7e\xb5\x6a\x71\x51\x99\x99\x7a\xd1\xca\xce\x5a\x23\x5a\x90\x3e\x6e\x44\x4b\xff\xe1\xbd\xcb\x15\x5f\x0f\x58\x41\x94\x72\x9c\xe0\x3d\x3d\x61\xb9\x60\x80\xf8\x66\x7c\x48\xb2\x66\x00\x74\x70\x43\xdb\xe5\x75\x9d\xe9\xdf\xb3\xe9\x1a\x3d\x54\xdc\xa1\x61\xfc\xc5\x59\x9c\x98\xfa\xc2\x28\x5e\x10\x20\xd7\x40\x1e\xd5\xe1\x6e\x6a\xdf\xf6\xd4\xc0\xe2\x71\x85\x21\xbd\x38\xba\x4d\x06\x4a\xfb\xd0\xf5\x43\xfa\xe9\xbe\xfb\xac\x4a\x3d\x84\x26\x8a\x2b\x81\x64\xca\xab\x7f\xef\x01\x91\xc0\x0d\xe0\x81\x12\xe2\x7c\x0a\x6d\x92\x9d\x05\x50\x99\xa1\x03\x06\xd9\xb3\xe6\xc7\x70\xcc\xd1\xaa\xd0\xf7\x29\xb0\xef\x9a\x1b\x56\x46\x37\xd7\x94\xd4\x01\xca\x90\x2e\x9d\x2e\xab\xb3\x15\xe3\x25\x67\x15\x7b\x25\x5c\x4a\x15\x66\xb5\x8d\xd9\x3f\xab\x10\x08\xcd\x06\x5b\xce\x9c\x39\x2b\x41\x4b\x03\x50\x71\x01\x13\xd9\xdf\xe9\x5d\xac\x54\xc0\x25\xe4\xe2\x5a\x06\x2e\x1b\xbd\x7a\xeb\x64\x09\x1e\x19\x58\xa0\x4e\x51\x2f\xd9\x98\xfa\x33\x25\x89\x50\xd8\x05\x53\x4f\xe2\xbb\x95\xbc\xa4\x8e\x5a\xc6\x84\x0f\x80\xe7\xbf\xad\x0c\xe3\x2b\xd0\x35\xd3\xd3\xaa\xaf\x7d\x5a\x9c\x0b\x68\x84\x4c\xdb\xaf\xa9\xfd\x7a\x79\x9a\x42\xdd\x56\xbc\x6a\x6e\xb2\x24\x67\x4a\x99\x29\xa9\x00\xac\xbe\x58\x68\x0e\xce\xeb\x98\x43\x4f\xc8\xd9\xec\x09\x19\x80\x04\xf3\x91\xf6\x37\xf7\xa9\x63\x3a\x12\x57\xd8\x83\xc5\xcd\xfc\x97\x2e\x67\x86\x16\xd7\x26\xd1\xa2\x55\xd6\xf7\x3c\x16\xcc\x57\x5b\x10\xc5\xc1\xfc\xf8\x48\x45\x8e\x31\xfe\xf1\x59\x20\x5b\xde\x1a\x10\xd1\xb8\x0e\x28\xc7\x39\x37\xfa\xce\xec\x1a\x0c\x94\xcc\xd0\xb6\x81\x95\xcd\x02\x3b\x37\x4b\xf9\xca\x49\x96\x72\xf9\xbf\x5e\xaf\x08\x9e\x50\x30\x6a\x32\x8b\x7d\x60\xc2\x24\x56\xb8\xf3\xd1\xd2\x20\x7a\xce\x9d\xef\x72\x9f\x65\xc6\xa0\x2a\x14\xa3\x5f\xbc\x35\x4a\x5e\xfd\x04\xb4\x7c\xd7\x9e\xeb\x95\xbc\xb0\xa0\x81\x1d\x98\x08\xd4\x95\xce\x93\x0d\x83\x43\xc6\x28\x0d\xaf\x50\xf8\x65\x80\x51\x8d\xe2\xe2\xe5\x9f\xee\x53\xb8\x2d\x20\x88\x3f\x33\xf3\xc9\xef\xdf\xa5\x0a\xc5\x24\x16\x9a\x1f\x61\xc0\x2f\x8f\xe9\xe0\xf2\xa9\xc3\x84\xb5\x63\xa4\xd1\xbd\x01\x5d\x13\x01\x3a\xea\xc9\x6f\x5e\x2e\xa2\x35\x20\x95\x30\x91\x43\x42\x07\xd9\x62\x33\x00\x3e\x8f\xdf\x0f\x95\x47\x24\x2f\xa4\x10\x70\xe2\xf9\xe7\x56\xb3\x84\xe7\x84\x74\x05\xbf\xbc\x3c\x4e\x9a\xb1\x10\x20\xc9\x29\x34\xb5\x7f\x7d\x85\x9b\xc3\xa1\x5a\x12\x37\xf4\xdf\xbd\x9a\x9e\xcb\x69\x1b\xe8\x4c\x75\xe2\xb4\x24\x9e\x51\x3f\x73\x5e\xb3\xb6\xad\x53\xe2\x19\xc1\x1e\xa7\x05\x0c\xb3\x26\x2b\xcd\x4f\xa9\x84\x60\xf6\x40\xe5\x86\x1f\x91\xd4\xea\x08\x76\x90\x0f\x93\x81\xcc\xff\x76\x33\xf3\x85\xa5\xd8\xa7\x3e\x06\xad\x68\x6e\xae\x13\xeb\x95\x2b\x85\xfe\x7e\x5a\xda\x4d\x55\x8e\x70\x40\x40\x9d\xbe\x35\x91\xb7\x37\x46\xaa\x7f\x74\x02\x07\x60\x81\x41\xff\xc8\x5b\x12\x36\xd9\xf3\x08\xee\x47\x4e\xaa\x14\x5e\x92\x14\xf9\xe8\x40\xca\x61\x44\xb3\x1f\x2a\xc0\x9d\x52\x98\x18\xc6\x3e\xd5\xa9\xfe\x3e\x6c\x86\x86\xd0\x71\xcb\x6d\x79\x45\x19\xe6\x40\x52\xc6\x24\x5d\x5e\x68\xf3\x6a\xa2\x4b\xb4\x81\x87\x4c\x24\xef\x42\x4e\x2d\x1b\xc3\x0f\x8f\x44\x23\x89\xb3\xfd\xa7\x97\x0f\x52\xc2\xd2\xb2\xef\xc4\xa9\xf3\xa5\x00\x6a\x97\x3d\xe4\x31\x41\xc4\xdb\x24\x57\x94\x90\xd4\x20\xcd\x20\x4b\xa7\x64\x7a\x26\xc7\x63\x81\xeb\x9a\x76\x65\x74\x05\x5c\xfe\x6a\x69\x5f\x7d\xfd\x62\x89\xa2\xe0\xfb\x28\x51\xd8\xfb\x45\x6d\x18\x6f\x94\x10\xd5\x01\x8a\xbe\xf2\x92\xdc\x69\x39\xb8\xc6\x5a\xb2\xdc\x23\x0a\x77\x96\x23\xa5\xf8\x15\xf4\x85\xae\x92\x03\xaa\x52\xe1\xfe\x5c\xa7\x84\xae\xc4\xae\xcb\x3e\xec\x90\x27\x59\x1b\x8b\x1c\x0f\xc7\xfd\x16\x6b\xfc\xa2\x6f\x1f\x92\x80\x41\x15\x28\x51\xe8\xf5\x5f\x78\xea\xe0\xbb\x8e\x6c\x5b\xb4\xde\x4f\xee\x92\x36\x0c\xb6\x81\x99\x9d\x54\xb1\x99\xbf\x73\x8d\x62\x35\x00\x6d\xc8\x2c\x23\x98\x73\xc3\x59\xa6\x4e\x70\x75\x48\xb0\xd7\xea\x7f\xb5\xbd\x4f\x91\x65\xa7\xe6\x90\x83\xb2\x20\xf4\x83\x67\xa4\x1e\xca\xf1\x20\xa0\x87\x91\x0d\x5d\xbf\x33\x4d\x52\x16\x62\x60\xae\xb7\x6e\x93\x6c\x19\x4b\x14\x1c\x78\xc9\xd9\xb4\xf6\x9a\x33\x8f\xfa\xfb\x7c\xea\x2e\x36\x69\xba\xd2\x35\x09\x14\x00\xf9\x68\xd5\x04\x15\xc4\xeb\x38\xd8\xa5\x52\x41\x49\x21\x77\xdd\xe6\x6c\x1a\x20\x70\x43\x08\x51\x1f\x56\xfc\xef\x7e\x28\x6d\x97\x6b\x42\xbe\xf7\xa4\x32\xd1\x84\xfd\x9e\x8d\x4d\xf1\xbc\xbf\x31\x43\x70\xeb\xca\x18\x07\x25\x60\xb7\x34\x52\xb9\x3b\x4c\x09\x0c\x0b\x1d\x2f\xe9\xac\xb5\xa9\xc7\xb3\xe2\x1d\xb2\x6f\x6d\xfe\x4b\xab\x2f\x50\x0b\x15\x10\xb8\xd0\x4f\xb6\x59\x9b\x7b\xd5\x69\xa8\x61\x03\x02\x4d\x56\xca\x7c\xfc\xfd\x74\x49\x5a\x11\xbe\x39\xcd\xd3\x12\x09\x53\x32\xe2\xcc\xbd\xb0\x43\xa6\xe3\x82\x1a\xed\x1d\xf3\xde\x44\xa6\x5f\xb1\xa0\x50\x8c\xc6\x97\xd2\xa3\x5d\x27\x52\x67\xad\x75\x29\xfa\x41\x06\xf0\x2d\x07\xb8\x0a\x29\xe9\x51\xe5\xde\x78\x50\x52\xca\x88\x76\xbf\x29\xd9\x05\x3b\xd8\x86\xae\x5f\x6d\x48\xcf\x62\xd8\xda\x74\x4c\x1d\x92\x30\x99\x53\x5d\x33\xfc\x22\x69\x53\x43\xcd\xf8\x5b\x9e\xfd\xc6\xb2\x24\x8b\xce\x80\xeb\x65\x48\x05\xf6\x57\x8e\x16\xf6\xa1\x06\xd3\xe4\xed\x91\x78\x7f\x98\x20\xbf\x50\x8c\xb0\xe4\x4b\x78\xb1\xf4\xc0\x8a\xae\x28\xb9\xa9\x65\xeb\x37\x77\x89\x7f\x1c\x40\x2e\x7d\x5c\x1d\xa2\x3a\xe5\x60\x62\x22\x17\x04\x38\x51\x6e\xd8\x72\x50\xb8\x9d\xce\xa1\x2b\xe0\x17\xb2\xb9\x22\xf0\x91\x87\x14\xdc\xfe\x89\xd5\xe2\x77\xd5\x31\x61\x3b\x98\xbd\x9d\x2d\x78\xb2\xb8\xc0\xb7\xb9\x29\x4c\xee\xab\x03\x2d\x2a\x33\x54\xab\x9d\x89\x6c\xd0\xc1\x44\xc7\x7d\xd9\x8f\x5b\x0e\xfb\x90\x88\x9f\x54\x65\x7e\x9f\x32\xfc\xb3\x10\x2c\x17\x90\x5b\xb0\x41\x9d\x1d\xbc\x0f\xc6\x8d\xca\xac\x89\x69\x1e\xd2\xfe\x6b\xad\xb2\xd0\x43\x89\xe7\x16\x9b\xb2\xbf\x71\x95\xe2\xcd\x56\x83\x24\xe0\xfc\xbb\xe3\xb7\xb5\x5a\xce\x70\xc5\xe0\x62\xb4\xbe\x47\xde\x22\xf9\x3e\x03\xa1\x36\xf5\x3f\x2a\x12\x67\x3e\x57\x53\xa3\xf2\x0a\xd1\xff\x1e\x11\x9a\x44\xb3\x7b\x0a\xc5\x28\xf7\xbe\x24\x5b\x12\xda\x01\x2a\x03\x03\xb2\x69\xa9\x3e\xc7\x52\xfa\x44\xb7\x42\x12\x24\x98\x76\xf9\x1b\x0a\x65\x15\xfa\xa1\x1d\x30\x8e\x81\xde\xaf\xf2\x59\x61\x80\x48\xb2\xc4\x9d\x78\xb2\x25\x76\x95\x10\xd3\x9d\xe7\x73\x41\xed\x7a\x45\x87\x71\x76\x47\x0f\x5f\x80\xfe\x9d\x22\x23\x46\x61\xd2\x09\x3a\xcd\x57\xdc\x04\xa0\xe3\x59\xc0\x47\x03\xe9\x7a\x74\xfe\xb4\x84\x63\x57\x8b\x7f\x18\x50\x44\x0b\xba\x7b\x66\xcd\xed\x9a\xcb\x90\x86\xf9\xc6\x39\x9c\x15\x6d\x03\x13\xc9\xb2\xe4\xb7\xbf\xa6\x50\xe2\x53\xb4\xf0\x88\x83\x2a\x63\x93\x54\x18\xb0\x4c\xfb\xe3\x49\x49\x63\x3f\x6c\x05\x78\x1d\x5d\xcc\x6a\xbe\x9e\xd9\x85\xd9\xb3\x3f\x1e\xbf\x9a\xa6\xb6\x47\xd1\xdc\x86\x34\x47\x49\x12\xe4\x6b\xde\x96\x74\xdf\xa8\xc3\x29\x4a\x95\x8f\xb5\xa3\x12\x05\x90\x32\x41\xb3\x76\x77\x57\x48\xbb\x27\x1b\xba\x95\xc0\x8a\x2f\xf3\xa3\xa7\x47\x49\x43\x5f\x83\xab\xb6\x0f\x39\x3c\x56\x1e\x5e\x07\x16\x24\xe9\xe0\x71\xf7\x21\x11\x67\xfc\xb0\xe4\x07\x28\x08\x79\x1d\xfc\xc2\x9b\xac\x15\x58\x02\x68\xa6\x8e\x5b\x81\xc5\x63\x95\x5b\x04\x11\x61\x3b\x95\x0b\xd6\x4b\x6a\x59\xdd\x85\x62\xb4\xb0\x37\x0d\xd9\xc8\x96\xd5\xc6\xee\x1b\x25\x6d\x52\x2a\x21\xab\x4f\xa6\xee\x1e\x37\x48\x9f\xc8\x2b\xb6\x67\x76\xab\x54\x57\x60\x18\xd0\x63\x0b\x3a\xba\xf6\xe8\x55\xae\x5a\x89\x84\x01\xb0\x13\x29\xd4\x0f\xdd\x2b\x2a\x3e\x01\x58\x4e\xa2\xf1\x3b\x43\x55\xcc\x11\x77\xb2\xe9\x60\x83\xbb\x97\x17\x2b\xb8\x28\x6e\x03\xc6\xe5\x9c\xef\xea\x13\x45\x8f\x81\xd3\xfc\x10\xff\xd1\x77\xce\x8a\xcb\x69\x53\x63\xd8\xf4\x29\xdc\xe4\x4e\x52\x8a\x79\xec\xc3\x1a\xb4\x03\xe1\x54\xdf\xbd\x8f\xf9\xda\x17\x69\x4b\xfc\xd4\xbd\xc2\xa4\x6d\x5e\x17\x1d\xdb\x3b\xe7\x64\xa9\xa8\x3d\x73\xf8\x78\x74\xdf\x14\x69\x1c\x00\x1a\x49\x03\x30\x7e\x8f\x24\x64\x15\x77\x3b\xa4\x4c\x85\x45\xf2\x65\xd2\x12\xa8\x4a\xa5\xc4\x4a\xf6\xb1\x83\xd9\x4f\xba\x21\x8c\xeb\x62\xec\xba\x20\x0e\x09\x14\xee\x82\xd6\x8f\x12\xab\x1c\x37\x29\x59\xb5\x95\x92\x27\x07\x74\x90\x0b\x08\x17\x08\xf8\x6d\x47\xcb\xe0\x09\x54\x20\x49\xa7\x02\x8b\x06\xc6\x4b\xff\x32\x08\x98\x4b\x4b\x72\x6b\x6e\x9e\x34\x34\xfd\x1a\xf1\x41\xfb\x75\x79\xac\x34\x43\xa0\xe4\xdd\x94\x63\xf2\xde\xdb\x8a\xc8\x05\xf6\x03\x50\x49\x47\x6d\xb9\x25\xfb\x15\xe8\x0c\xae\xdb\x0c\xa4\x23\xc4\xfe\x37\xbc\xa8\x68\x26\xd8\x20\xc5\x84\x0f\xdf\x32\x22\x69\x35\xed\x90\xfa\xfa\x47\xce\xa4\xec\xc3\xb4\xa0\xed\x09\x0a\xc0\x9d\x33\x45\x21\x13\x48\x24\x4d\x6d\xfa\x03\xad\x18\x68\x1e\x2a\xe2\x87\x39\x46\x91\x28\x8b\x4b\xc5\xb4\x9a\xd3\x0f\x48\xd6\x7e\xb2\xa9\xcc\x5f\x7a\x15\x1f\x26\x0b\x10\x1b\xfa\x59\x1b\xc3\xe5\xd9\x3a\xd3\x0d\x6a\x71\xac\x56\x34\xed\x2b\x4b\xe5\x70\x53\x83\x36\x6d\x3f\xb4\x7d\x4f\x5d\x20\x6d\x84\xeb\x2d\x63\xa3\xa5\xa7\xb2\x1f\xbb\x06\x8c\x30\x74\xf8\xc3\xd0\x47\xad\x68\x59\xd7\x1b\xa8\x8c\x0c\xde\xc8\xdd\xf3\x86\x08\x8f\x2c\x3f\x86\x41\xda\x50\x5f\xd0\x7d\x91\x34\xaf\x77\x3c\x1b\xaa\xb8\x91\x66\xfe\x63\x8f\x64\x99\xac\x56\x58\xb1\xe0\xe0\x14\xe8\xb3\x51\xfa\x5e\xaa\x12\x7c\x35\x3a\x3b\xa9\x9d\x1f\x43\xbb\x4c\x6d\x95\x6c\x80\x1c\x96\x5e\xd7\x2c\x95\x66\x57\x80\x38\x80\x54\xe9\x78\xf9\x0e\xf1\x2e\xe6\x74\xf1\xfa\x2e\xfe\x83\x95\x6a\x76\x73\x2b\x9c\x31\xcd\xc3\x5c\xb9\x2b\x5b\x90\x32\x7f\x1b\xa5\x84\xaa\x3c\x28\x83\xdc\xfa\x43\xbe\xa7\xd5\x26\x2f\x93\xe4\x38\xb0\x1b\x54\xb0\xc3\x30\x2e\xda\xf7\xf6\x2a\x24\x19\x17\x16\xe2\x8a\x22\x55\x5a\x3c\xbb\x4d\xac\x7f\x3c\xc4\x40\x21\xfa\x2b\x4f\xf2\x5d\x4f\x7c\xa5\x4c\x8b\xce\xce\xa3\x9f\xf5\x9d\x2f\x25\x12\x46\xb2\x2d\x14\xa3\x2f\xf4\x29\xbf\x21\x0c\x12\x8a\x2d\x1b\xc5\xae\x53\x02\x8c\x89\x6a\xc8\x84\x26\x77\x7a\xa9\xdf\x91\x4e\xfb\x4a\x4e\xbd\xa5\x2f\xbb\x7b\x95\xa2\x27\x89\x7c\x1f\xd7\x15\x6d\xac\x7f\x9f\xd2\x62\xed\xc8\xe9\x4d\x5c\x51\x5a\x3f\x30\x5a\x41\xf5\xc2\x24\x41\x44\x5f\x3b\x25\x89\x7b\xa1\x0a\xf0\x2d\x54\x40\x14\x06\x86\xe2\x7f\x79\xc7\xb9\xd9\x63\x4a\xf5\x61\x02\xc8\x13\xdf\x92\x5b\x95\x9b\x49\xb0\xe3\x05\x36\x43\x58\xe5\xce\xbb\x8a\xf5\xe7\xcb\x41\xc0\x7c\x16\xf4\xbf\x59\xaa\x6e\x74\x6b\xd8\x0e\x79\xf5\x44\xaf\xc5\x0a\xc5\x8e\x8b\x2e\xaa\xcb\x38\x15\x48\xfe\xf1\x03\x0c\x03\x79\x95\x4d\x87\x58\x16\x1d\xe5\x24\x71\xe4\xd1\xcd\x0a\xc1\xda\xc6\xf5\xf8\x55\xb3\xf2\x6b\xf1\xfb\x92\xfc\x30\xe0\xed\x7c\xee\xb7\x4f\xb4\x4b\xe1\x83\xee\x7e\x79\xca\x08\xda\xc5\x9f\x10\x2e\x24\xce\xd7\x7e\xff\xbe\x50\x2a\x1c\x40\x19\x56\x42\x40\x4c\x16\x15\xce\x59\xa0\xd8\xae\xbb\xd0\x41\x1c\xcd\x18\x8d\x3a\x3c\xb1\xfe\x7f\x6c\xb4\xe9\x9f\x9f\x7f\xab\x24\x35\x09\xfd\x90\xdd\xb6\xdc\x2f\xb4\xb4\xb7\x2e\x83\x6a\xa1\x18\x41\x6e\xce\x58\x46\x36\xad\x7d\x9a\x79\x7d\x06\x1b\xdd\x2c\xb2\x51\x39\xc0\xf2\x0e\xeb\xb1\x17\x04\x2f\x97\xb1\x5f\xc0\xb4\x6c\x11\x18\xd4\x92\x7c\xfe\xe6\x89\x31\x72\xe3\x45\x02\xe8\xb3\xb4\xa5\x4f\xda\xc8\xe7\x63\xc8\xa0\x02\x36\xd1\xde\xda\x05\x2a\xe1\x8e\x86\x6b\x66\xb5\x11\xdd\xb8\x7f\x84\x04\xc3\xa5\x7b\x90\xb1\x0b\x45\xbc\x64\x62\xa3\x76\x46\x1e\x7a\xb1\x12\x2f\xb9\x5e\x0d\x87\x48\x6e\x9d\x3c\x51\x1e\xee\xb5\x00\x60\x1f\x3e\xca\x56\x68\xdd\x9d\x9d\x05\xaa\xca\x4e\x9b\xc3\x67\x44\x60\x90\xcd\x33\xa2\x27\xd8\x88\xad\x70\x93\x85\x82\xac\xee\x83\xfe\x96\x64\x5e\x08\x02\xee\xbf\x3d\xfe\xc9\x71\x4a\x2b\x64\x26\x7e\x05\x4d\xed\xe6\x49\xe3\xd4\xfb\x57\x83\x0d\x7e\xea\xac\x63\x8a\xf3\x11\xc1\x6e\xc0\x75\x44\xf9\x70\xf3\x2b\x6d\xa3\x25\x20\xb3\xef\x33\x28\x75\xee\xc0\x59\xf1\x32\x7c\xe8\x51\x9b\x60\x06\x9f\xff\xf1\x54\x3e\x64\x05\x36\x2a\x41\x36\x64\x3e\xd4\xae\x90\x25\x91\xcb\xb5\x50\x72\xf5\xb7\xb3\xd4\xf2\x52\x69\x5a\x30\x68\x22\xd8\x2d\x89\x25\x70\xf7\x15\x2a\x80\x3a\x54\xd1\x1f\xc0\xb6\x0d\x0d\x1e\xb9\xf3\x5f\xbe\x93\x9d\x0c\x90\xec\x8d\xf3\x77\xef\x55\x85\xb2\x0c\x0b\x25\x43\xab\xfb\x02\xc9\xc4\x96\x60\x06\x40\x4a\xf2\x71\xf9\x68\x36\x67\x3b\x30\x20\x54\x5e\x27\x00\x29\x9e\xe8\x71\x4b\x29\x16\x98\xca\x63\x42\xb3\x7c\x44\x19\x5a\xd0\x27\x04\x02\x98\x90\xaf\x2b\x43\x95\x81\x7b\x47\x8d\x29\x00\xd1\x8d\xf7\x3e\x99\x3c\x6e\x54\xed\xd0\xe7\x22\x13\xff\xf0\xac\xf2\x0c\x80\x8f\x5c\x9c\x34\x94\x43\x0e\xb4\xc4\xc1\x00\xfa\x01\xe7\xdd\x3d\x2d\x8d\x92\x2a\x04\x98\x21\xf7\x67\xd3\xff\x21\x38\x3f\xb9\x9a\x48\x20\x06\xa2\x69\xf7\x71\x57\x0f\x9a\x29\x5c\x16\x58\xf4\x69\x53\x54\x50\x3a\xa9\xa5\xb7\x63\x7d\x97\xba\xa2\xb2\xb3\xb9\x53\xdb\x29\xc9\x86\x1a\x24\xa4\x14\xd2\x7f\x7e\x3d\xfb\xb1\x81\x1d\x07\x4c\x6e\x55\x98\x3b\xff\xdc\x6c\x89\x9d\xd2\x47\x3f\xda\x2e\x47\xa9\x00\x20\xba\x8e\xd4\x5f\xba\x77\x84\x54\xf1\xc7\x27\x35\xba\x74\xbb\xa2\xc2\x93\xc0\x18\xa2\x1b\x5d\x99\xd1\x8a\x1c\xfa\x18\x7f\x78\x48\x6c\xe3\x80\xc9\x52\x0d\xf3\x68\x15\x45\xc9\xa2\xa5\x8c\xb5\xb0\x9a\x00\x13\x05\x9c\xb5\xd0\xd4\x87\x2b\x89\x92\xc0\x3a\xa8\x02\x65\x5c\x3f\x5f\x31\xc8\x76\x81\x23\xea\xc8\x51\xab\x14\x2d\xc6\x20\x34\x99\x3b\x9a\x5a\xd8\x15\x56\x08\x3b\x07\x44\xaf\xea\x96\xdb\x14\x9b\xf5\x04\x27\xce\x6f\xf8\x8c\x33\x63\xa4\xfd\x60\x48\x0a\x75\x0b\x42\xda\x7e\xd4\xba\x44\xb8\x01\x41\x8a\x88\x39\xd5\x42\xa6\x05\xa1\x9d\xca\x66\xe9\xe5\x47\x14\xa6\x1b\x26\x26\x04\x61\x3f\xff\xe3\x2f\x9f\x33\x3a\x2d\xb4\xa5\xaf\x3f\xab\x5b\x11\x6c\x0d\x03\x0b\x13\x3a\x62\xe0\x6c\xc3\xcf\x77\x8f\xca\xce\xc3\xe8\x31\x7d\xea\xa0\x84\x41\x1e\xb0\x50\xd5\x02\x7e\x15\x10\x44\x9b\x88\xc3\xaa\x5f\x4e\x40\x90\xeb\x23\x83\x0b\xdc\x7c\x6c\xb2\xa8\x9a\x42\x02\x6c\x87\x92\x97\x9b\xfa\x1f\x86\xab\xa9\x9a\xf9\x6a\xb2\xb1\xd7\xa6\x3b\x15\x07\x05\x8b\x34\x7c\x3b\x15\xbb\xd7\x9f\x56\x0c\x9d\xa9\xcc\x23\x13\x88\x99\xa4\x18\x6f\x95\x81\x83\x43\xe1\x98\xd3\xb5\x58\x1a\xeb\x5a\xc8\xa8\xba\xcc\x4f\x38\x7f\x49\x79\x30\xd7\x22\xf6\x25\xbe\x7a\x85\x90\x45\xa3\x63\xd4\xec\x79\xd8\xd8\x9f\xd6\xcf\xb8\x2e\x0d\x50\xb5\x57\x3b\xb9\x3d\x26\xe2\xee\x42\xa7\xa7\xa8\xdf\x8b\x61\x7e\x92\xe7\xbf\xff\xf4\x38\x29\xc9\xa1\x1a\x08\xd0\x40\xb2\x2e\xd2\x7e\xa2\x58\x02\x95\x21\xed\x63\x95\x25\xd8\x9f\xf7\x88\x10\x86\xcb\x65\x26\xea\x45\x3b\x4f\xed\x50\x36\x13\x0d\x20\xaf\x8a\xdc\x8c\xc1\xd5\xdf\xef\x1d\x44\x40\x9a\x82\x51\x16\xd6\x2e\x54\xea\x40\x3f\xae\x8d\x43\x23\x51\x77\xcf\xdd\xbb\xeb\x12\xa5\xdd\xf1\x91\x8d\x60\xcd\x57\x8a\xf8\x47\xbb\x95\xec\x80\xfd\x80\x22\xfa\xe8\xf4\xec\x96\x01\x71\x1f\xa8\x3f\x30\x8d\x38\x13\x1f\x90\x84\x18\x2c\x18\xf7\x1a\xb9\xce\x9d\xa2\x19\x30\x91\xef\x85\x01\xdd\xba\xe7\xfd\xa3\xac\x6b\x29\xda\xa8\x06\x11\x91\x2f\xc0\xa4\xf5\x59\xb0\x90\x1f\xba\x01\x09\x07\x77\xa3\xcc\x7f\x39\x50\xb8\x83\x28\xa5\x72\x6c\x38\x2e\x31\x15\x48\x90\x21\x9b\x98\xb6\xe2\x29\xca\xc9\x3c\xe3\x87\x8c\x48\x3e\xaa\x03\x1a\xac\xae\xfb\xbd\x82\x99\x02\x66\x0d\xf9\xbc\x2c\x88\xae\x19\xa9\x58\x81\x60\x1c\x58\xfc\x82\x7f\x6e\x8a\x78\x1e\x3d\x8c\x86\x94\x9f\x1d\xb1\xb9\xff\xcc\xf8\xff\x59\xbb\x58\xd2\x5e\xb1\x19\xd0\xf8\xaa\x23\x69\xab\x51\x85\xad\x1b\xd0\x61\x53\xd8\xcc\xf0\x26\xc6\xd4\x15\x05\x64\xdb\x53\x6c\xf0\x68\x51\x98\x56\x4e\x11\x35\xef\x2e\x74\x72\x70\x60\xf5\xed\x76\x09\x11\xee\x73\x1b\x5d\x5a\x14\xff\xe9\xb0\x5c\x57\x16\x6c\x08\x4c\x26\xed\x96\x5f\xbb\x5a\x82\xdf\xd9\x94\x1e\x18\x5d\xf2\x48\x8b\x5f\x5f\x0d\x92\x4a\x1c\xaa\x19\xcb\x7a\xf8\x02\xd5\xb3\xd7\x68\x18\x62\xa1\xa6\x1f\xaf\x29\x28\x35\x6c\xf2\x72\x2c\x37\xe4\x20\xe3\xe1\xdf\x10\x24\x26\xe5\xa2\xf4\xfb\xe1\x2e\x09\xbf\xeb\x06\xc8\xe0\xd5\xfe\x43\xdb\x55\x55\x16\xc2\x8b\x99\x09\x47\x64\x0a\x9a\xcb\x1c\xb4\xf3\x73\xf3\x69\xb8\xb0\x1b\x2d\xfe\xbd\xda\xe3\xf7\x0e\xe3\xdd\x06\x67\xbc\x9e\x7b\x48\xe9\xce\x70\x03\x30\xd2\x4c\xf4\x9d\x2e\x91\x6a\x51\x89\x00\x0b\x51\x00\xc2\x07\x6f\xca\x5a\x5f\xc9\xc8\x6d\xd8\x72\x76\xc4\x16\x61\x27\xbe\x0d\xb4\x6e\xb9\xe0\x5e\x65\xd1\xc3\xa7\x20\x44\x26\x1f\x9b\x81\xf4\x7a\x2c\x40\x4c\xec\xba\xcc\x9d\xf9\x6f\xce\xc9\x66\xcc\xba\x85\x9d\x34\x96\xfe\x60\x6f\x82\xf5\x6f\x50\x48\xf0\x77\x3a\xc4\xa1\x83\x75\xb6\x43\xd0\x3a\x58\xba\xbe\x01\x82\xb8\xa1\x4f\x66\x53\xe3\xef\x61\x6d\xdc\x62\x04\x4b\xd0\xad\x62\x22\x75\x2c\xda\xfa\x6e\x05\xab\x08\x6c\x6a\xc8\x4c\x87\xd1\x26\x77\x54\xb9\x92\x54\x81\xeb\x83\xd4\x1a\x70\xd5\x70\x56\xff\x2f\xbe\xf2\xc6\xe2\x0d\xc9\x1c\x79\xea\x5d\x6c\x43\x7a\x5d\xc7\x35\x1d\x57\x75\xa8\x73\x9d\x8f\x3d\x93\x7d\x36\x6c\x05\x49\x87\x78\xe2\x50\xac\x9d\x38\x53\x2d\xed\x7c\x0f\x12\x14\x34\x06\x8d\x1a\x1b\x8e\x49\xf4\x43\x0c\xb8\x84\xb6\x0e\xd7\xb4\x58\x02\xc5\xb1\x33\x1d\xee\x7f\x6d\x07\x7b\x4c\x12\x01\x2e\xfe\xcf\xff\xb9\x4a\xe2\x5e\x60\xce\x3c\x8b\xd6\xce\xe4\x42\x29\x4c\x95\xbe\xd8\xcc\x1d\x51\xb0\x53\x26\x22\x30\xc1\x29\x93\x5b\x25\x23\x61\x66\xe5\xa1\xdd\x32\x9c\xfd\x04\x1b\x63\xd6\xcd\x3d\xfc\xac\xcc\xf2\x66\x06\xda\x85\x62\x74\xd7\x38\x05\x80\x82\x9c\x84\x8c\x0a\xcf\x1b\x26\x6a\x35\xa7\x50\x8c\xbc\x92\xba\x37\xa9\xc4\x7d\x3d\x03\xb0\xdd\x75\x5f\x2a\xa9\x10\xba\x28\xe3\x27\xfa\xd5\x6d\xec\x46\x5a\xc0\x6c\x59\x61\x6f\x3a\x9b\x35\x5c\x4c\x07\x50\xf9\xeb\xdb\xa5\xdd\x0f\x8a\x1b\x04\x92\x28\xb7\xdc\xd0\x3b\xa8\x5b\x0b\x0d\xaa\x6d\x1c\x68\x59\x02\x46\xb5\x60\x62\x7a\x5f\xf5\x65\x9b\xd2\x2d\xe9\x94\x3e\x89\xa0\xa4\x7f\x7e\xe3\x28\x39\x1d\x63\x56\xf2\x54\xaf\x50\xf4\xe0\x2d\x90\xc0\x2f\x1e\x90\x00\xd9\x36\xaa\x42\xb3\x23\xb0\x10\x63\x0b\x36\x6c\x35\x66\x05\x88\x40\xa1\xc1\xff\x99\xed\x4a\x09\x69\x6c\x08\x11\x11\xa5\xd9\x98\x7b\xda\xe5\xa3\x10\x34\x98\x21\x35\x1d\x8f\xf7\x66\x73\x33\xec\x0f\x18\xf1\x29\xb5\xb7\xf8\xf1\x6e\x59\xef\x0f\x42\x93\x75\x6a\x5a\x57\x70\xbe\xdc\x99\x78\x16\x32\x68\x9d\x72\x59\x9f\x34\x2a\xc1\x4e\x89\x61\xaf\x37\x3d\xd8\x96\xc9\xcd\xa0\xc6\xb9\x51\x2b\x8e\x5f\x24\xf5\x16\xd0\x0f\x40\x8b\x70\x4a\x7e\xcb\x34\x29\xb8\x9a\xa1\x91\xf4\x40\x5d\xdb\x95\xb2\x9b\xca\xe2\x0c\x56\x76\x9f\xbc\x8d\xdd\x91\xc5\xd0\xa5\xf3\x46\x1e\x4a\x6e\x7f\x5c\x30\x8b\x6d\x94\xdc\xfc\x7d\x6f\x31\xcc\x12\x61\xce\x4a\x9a\xbd\x5d\xc6\xf9\xd2\x7e\x34\xe1\xf2\x17\x9b\xfa\x07\x2e\x17\x81\xc4\x84\x48\xfd\xa8\x7e\xf8\x21\x16\x3f\xae\xac\x40\xd7\x68\x01\x06\xe6\x7e\x32\x53\xdd\xce\x9a\x21\x65\x36\x89\x58\xf6\x99\x8d\x6a\x2a\xaa\xdb\x9c\x58\x3a\x75\x86\xd0\x90\x08\x10\x70\x81\xeb\xc0\xec\xf4\xbd\x67\x97\x78\x0d\x66\xe8\x61\x06\xda\xfa\xf9\xa3\xb2\x15\xbb\x8d\x5d\x3a\xa1\x38\xc2\x74\xa5\x0b\xab\xa1\x0d\x19\x9d\x5b\x45\xdf\xbf\x2f\xa1\xef\x4b\x80\x10\x3e\x66\xf8\x25\xf7\x3f\x2e\x51\x3b\x1e\x9a\x94\x07\x76\x4b\xd2\x33\x04\xb7\xea\xd8\xe9\x33\x17\x2b\x86\x5b\x6e\x05\xda\xbc\x59\x8a\xef\xe0\xba\x7b\xa4\x91\x46\xe8\xc3\xd0\xa1\x25\xe8\xe7\xde\x6c\x21\x0e\xbb\x09\xc8\x53\xbb\xb4\x27\x63\x31\x63\xa1\x12\x2b\x5c\x73\xd6\xc2\x74\x82\x35\xaf\x97\xca\x01\x98\x47\x59\xa6\x9b\xdd\x45\xe7\xbd\x14\xb3\xff\xb8\x39\x56\x4d\x55\x3e\x4f\xd3\x9f\x79\x50\x09\x8f\x94\x05\x4a\xcb\xb2\xff\x91\xfa\x01\x26\xb1\xce\x0a\x5e\x7d\xef\xb1\x11\x12\x38\x8b\x38\x94\xa1\x6f\x8b\xf2\x9c\xce\xdd\x25\xb8\x83\x3e\xc9\x6c\x93\xc0\x47\xf1\xe5\xe5\x69\x79\xf5\xa6\x96\xa2\xdf\xa8\xd2\x11\x15\xcb\x68\x57\xbd\xc4\xbe\x0c\x36\x0c\xe0\x73\x9e\xda\x10\xc5\xa7\x30\xb9\x15\x5c\x21\xa1\xba\x50\x16\x1d\x08\x20\xa9\x21\x58\x8f\x03\xf6\x89\xde\x56\xb5\x7a\xce\x8e\xba\xf1\xf5\xf1\x29\x61\x47\x4d\x85\x4d\x6d\xfb\x11\x85\xc8\xe0\x37\x0c\x2b\x5d\xf7\xd3\xa7\x78\xb0\x5b\x92\x1f\xc0\x7e\xe0\x01\xc2\xf0\x90\xfa\xbf\xf7\x4a\xea\x40\x36\x32\x68\x7d\x3e\x69\x81\x68\x44\x66\xcf\x2e\x00\x37\x75\xdb\xfd\xcc\xf0\x29\xe9\x0f\x92\x56\x36\x2d\x26\xe6\x13\x45\x70\x6a\xe0\xd0\xad\xb0\x49\x97\xf6\xbb\x2b\x94\x17\x0d\x48\x62\x92\x96\x1b\x7d\xaf\x78\x6b\x3d\x1d\x5d\xd4\x78\x7b\x32\x7f\xbe\x26\xa4\x4a\x19\xf4\xd0\xff\x5a\xfa\xc4\xd4\xfa\x23\xfe\x8f\xdf\x7e\x5e\x41\x19\x87\xd0\xe7\x53\xae\xdc\xdf\xdf\xc7\x8d\xe7\xa0\x1f\x90\xd0\x08\x50\x8d\xfe\x9c\xe6\x80\x6c\x82\x1b\x77\x4d\x9c\xad\x75\xed\xb3\x42\x1d\x14\x0c\x48\x3d\xc8\xb7\x26\x67\x87\x71\x2e\x18\x40\x83\xba\xe1\x7f\x9d\x51\x2d\x0a\x8b\xa0\x6d\x87\x86\x21\x29\x8c\xea\x3b\x8e\x2b\x28\x23\xe0\x63\x9b\x4d\xd8\x28\x96\x20\x50\x94\x82\x1d\x64\x63\x1f\xd6\x90\x71\xd9\x02\xa9\x3b\x3d\x70\x28\x2d\x53\x3d\xd8\x2a\xf6\x3d\xe6\xcc\x24\x69\xbd\x65\x61\xd2\xca\x9c\xbf\xe9\x71\x7e\x72\x6b\x90\x04\xa0\x4a\x55\x25\xf6\x8c\xfe\x28\x4f\x7f\x54\xf9\x5c\xb3\x17\x0b\xf0\x40\x1f\x72\x2b\xbe\x05\x65\x46\xae\x76\xef\x1b\xd9\x7e\xc2\x00\x0e\x73\x6c\xc8\x77\xaf\x10\x19\xa3\x12\xba\xbe\x85\x29\xd7\xf8\x9b\x33\xc4\x2b\x26\xa0\xcc\xf4\x2c\x5f\x92\x10\x82\xb6\x0d\x2b\xdc\xf5\x65\xe1\xeb\xea\x1b\x6d\xa4\xeb\xcf\x7d\x9b\xb8\x4a\x88\x8d\xdd\x4a\xdc\xac\xc4\xff\x31\x58\x90\xd6\x29\xbe\x07\x32\xfa\xba\xe1\xb9\x2d\x82\x4b\x36\xa2\x4d\x72\x62\x9a\xf1\xc1\xf6\xe1\x3c\x34\xb8\x15\x66\xbc\x9b\x2f\x28\xaa\xf6\x26\x4e\x72\xb2\xb6\x7e\xdc\x38\x29\x5e\x78\xdc\xcf\x9c\xaf\x3c\xdb\xb6\x8b\x5e\x8a\xc1\x4b\xb8\x95\x53\x53\x3b\xfa\x7e\x7a\xb2\x6a\xb2\xbf\x89\x76\xf5\xac\x09\x52\x5e\xe0\x2c\x28\x3a\x1d\xa5\xf7\x9f\x4c\x4a\xa3\x28\xa1\x2e\xbc\xfe\xac\x36\xa9\x82\x2b\xa1\x4a\x88\x19\x47\xe0\x6a\x2e\xf3\xb1\x02\x50\x8b\xd7\xfc\x82\x57\x58\x03\x78\x7d\x5c\x06\x44\xf9\xa3\x8a\xe6\x78\x05\x67\x67\x10\xd1\xa7\x25\xf8\x96\x67\xe1\x00\xd3\xd2\x82\xde\xcf\xf3\xbb\xdb\xe4\x82\x2e\xf8\xff\x74\xbd\x7f\xbc\x55\x55\x9d\x37\xee\xd9\xe7\x64\x86\xc8\xcf\xcb\x15\x11\x11\x91\x90\xd0\x73\x05\xe4\xb7\x3c\x8a\x88\x88\x88\x1c\x02\x24\x22\x1e\x63\x9d\xbd\xd7\x39\x7b\xdd\xb3\xf7\x5e\xc7\xb5\xf7\x3e\xf7\x9e\x9b\x11\x19\x19\x19\x21\x31\x64\xc4\x43\xe4\x97\xc8\xc8\x88\x18\xc6\x8c\x41\x32\x22\x87\x8c\xcc\x8c\x1c\x62\x88\xc8\x71\xc8\x1c\xc7\x61\xc8\x88\x31\xc7\xbb\xe7\xfb\xda\x9f\xb5\xf6\x5e\x6b\xaf\x43\xff\x3c\xf3\x24\x70\xef\x39\x7b\xaf\xf5\xf9\xf9\xfe\xc1\x08\x37\x8d\xce\x4d\xd6\xda\x66\x0f\x03\x51\x23\xfa\xe5\xe3\x57\x29\xf0\x2e\xdf\x23\x48\x25\xe2\xdf\x2d\xbd\xe0\x26\x4c\x87\x43\xd3\xb3\x59\x5a\x0e\xb5\x36\xb9\x79\xf7\x24\x7f\x45\xea\xce\xf2\xe1\xf4\x67\x90\x62\xfc\x84\x0b\xab\x36\x5e\xa9\x17\x90\x81\x2d\x28\xa4\xfe\xe6\x74\xd6\x63\x62\x25\xfc\x1b\xb3\x8e\x8f\x51\x22\x01\xa8\x39\x12\x98\x9e\xb4\x82\xe5\xaf\x78\x41\x07\x01\x96\xc1\x35\x8c\x47\x9a\xb1\x91\xe6\xe5\x80\x11\x44\xf0\x68\x54\xc7\x80\x54\xc6\xc2\x49\xda\x9e\xff\xab\x89\x8f\x78\x37\x24\x03\x99\xfc\xdc\x59\x32\x07\x13\xdf\x0f\xb1\x0f\xa8\xad\xbb\x56\x28\x65\x00\xa3\x89\x9a\xc5\x4e\xa1\xb0\xb0\x8c\x20\x93\xba\xb3\x5b\x1a\x9b\x5b\xcf\xa6\x43\xcf\x29\xc0\x80\xcf\xdf\x78\x58\x50\xe7\x5d\xe4\xdb\xa2\x55\xfe\xfd\x14\x19\xb3\x43\xcf\xc3\x58\x50\x13\xcc\x85\xd9\x12\x15\x92\x16\x0b\xeb\x69\x07\x54\xf8\xc0\x7b\xaa\x8c\x2f\x54\xda\x85\x7b\x0e\x66\x93\x12\xb6\xe2\x4f\xeb\x67\x1c\xe2\xfe\x41\xe1\xef\xd9\x34\xf4\x71\xb1\x14\x91\x65\x4a\x37\x23\x08\x48\xc5\x52\x34\xe5\x29\xd9\x4d\x95\x43\x56\x75\x40\x65\xf2\xf4\xa1\xec\x2f\xe9\x0c\x19\xf1\x2d\x62\x66\x64\xb7\x5e\x52\xec\xb1\x43\xc7\x23\xdd\xe0\x3e\x3f\x56\x4d\x88\x89\xe1\x7b\xb1\x14\x7d\x5b\x88\x0a\x54\x28\xc3\x26\x9f\x69\x9c\xdf\x27\x62\x43\xc0\x10\x37\x2f\x2a\x5c\x5f\xbe\x28\x44\x8e\xd3\x61\xf2\x8f\x1d\xc9\x1e\x42\x90\xb4\x12\xdc\x8d\x0f\xf1\x71\x4a\x1d\xd0\xff\xea\x12\x6c\xd0\x71\x85\x18\x11\xd7\x20\x3c\x2b\x0e\x56\xf0\x52\x60\xd2\x0b\xc9\xab\x30\x4f\xe2\xf2\x6f\xe9\x98\x16\x07\xb0\xf7\x54\x81\x21\x46\xea\xb6\x50\x5f\x35\xf0\x65\x1a\x4e\x11\x28\x51\xc8\x11\xb2\xc8\xf9\x27\xd7\x68\x54\x17\xcb\x85\xfa\x47\xec\x55\xd6\xee\xba\x52\x8f\x9d\xb5\xe4\x98\xfe\x6e\x27\x9f\x39\x7e\x38\xc4\x84\x51\x05\xdf\x9a\x67\xab\x05\xd5\x1a\xd0\x61\x96\xea\xee\x31\xea\xa6\xe1\xea\x18\xb7\x15\xd0\xbc\xb7\x5d\xf0\x18\x30\xae\x59\xa8\xc9\xc5\x2b\xde\xc9\x3e\xf0\x00\x23\xd8\x1c\xf1\xa1\xd1\xbb\xe7\x25\x39\x8f\xaa\xc2\xa1\xeb\x4e\xc9\xdf\xd5\x04\x75\x3e\x0b\x35\x55\x21\xaf\x5b\x9f\x94\xbd\x68\x83\x98\xb8\x58\x67\xd8\x05\x26\x67\xf4\xb9\x4d\x5a\xc1\x8b\x91\x89\x13\x13\xf2\xf5\x87\x06\x88\x5e\xca\xa4\x61\x52\x8e\xdf\x25\x3e\xf8\xbc\xd0\x0f\x04\xf2\xec\xbb\xed\x9a\x5f\x24\xa5\x0e\xa9\x22\x8f\xf8\xae\x50\x66\x5d\xf3\x8e\x7e\xbd\x84\x06\x54\x9a\x6d\x72\x0b\x65\x4c\x8e\x8f\x92\xf2\xf1\xbf\x7b\x58\x1b\x11\x11\xdf\xc3\x8c\x66\x90\x32\xf9\x49\x1b\x15\x85\x3f\x1b\x11\x21\x2f\xdf\x67\xe8\x08\xad\x16\xf3\x41\x66\x91\x03\x14\xa0\x13\xbb\xf3\xa5\xe1\xda\x31\x67\x58\x48\xf7\x42\x4b\xfe\xaf\x63\x14\x79\x58\xc7\xf2\x5d\x5a\x26\x5c\xa2\xf6\xa1\x57\x34\xe1\x94\xb8\x66\x4e\x46\xf9\x51\xa3\x53\x66\x86\xd0\xc3\x6e\xdd\xa1\x4d\x9c\xfc\xd6\xbc\x35\x71\xa8\x5e\x08\x13\x2c\xd6\xdc\x85\xca\x98\x61\x2d\xdd\x8b\x6c\xb5\xf3\x73\x2f\xd1\x2c\xef\xaa\x94\x2f\xad\x0e\x07\x0a\x84\x17\xe3\x5a\x5c\x8e\x3c\x3a\x51\x37\x30\x87\xcd\x1f\x27\x55\xe3\x37\x06\x29\x98\x91\xb8\xd0\x8d\xe3\xd0\xe2\x33\x2a\x4d\x01\xf6\x78\xf1\x4b\xbc\xf0\xbc\x62\x3e\x1e\x96\x1d\xd2\x2a\x9e\xfc\xf1\x97\xd4\x6e\x85\xe3\xae\x38\x01\x6d\x97\xba\xb5\x2e\x63\xbe\x91\x5b\xdf\xd0\xe0\x58\xa8\x5e\xc7\x02\xbf\x15\x1d\x7f\x8f\x8f\xe0\xee\x65\xa8\x61\xda\x38\xa3\xbf\xb5\x77\xa7\x6e\x2c\x63\x22\x17\xf3\xcb\x1e\xbd\x78\x96\x5f\xd8\x3a\x0a\x08\xf6\x02\x00\x40\x70\x82\xe0\xcf\x15\x5d\x9c\xf8\xf9\x14\x4b\xd1\x75\x9b\xaf\x6e\x69\x48\x80\x59\xc0\x5f\x45\xde\x2f\x67\x0f\x50\x27\xb5\xbd\x6c\x35\xf1\x81\xc7\x07\x8a\xaf\x95\xd9\xc7\x1e\x92\x90\x08\x1c\x16\x4b\xd1\x57\x3d\x8e\x18\xbc\xa7\x52\x2c\x45\x23\x57\x68\x3c\x19\xe2\xc5\xf9\xb8\x9e\x48\xa1\xe6\x1f\xd5\x5c\x98\x00\x28\xc2\x1d\x81\x92\xbf\xd2\xbe\x45\x97\xc7\x0a\xdd\x72\x6a\x6d\x13\xcd\x9d\xf1\x37\xd0\x0a\x70\x84\x3e\xfe\x8c\x3c\x29\x18\x55\x39\x14\xf5\x07\x6d\x2a\x28\x50\x5d\xe8\xdf\xb6\x51\xe2\x5d\x03\x86\x88\x93\x55\xad\x99\x34\x40\x17\xe5\xf3\xaa\x42\x66\xfc\xbb\x6f\x28\x1c\x00\xd2\x10\x86\x29\x1b\xc7\xcb\x88\xe4\xe1\x2a\x0d\x52\x29\xa5\xa8\xd3\x92\x28\x8c\x2e\x58\xe2\xf8\x2a\xe8\xdf\x18\xbf\x88\xaf\x01\xee\x0c\x19\x23\xea\x6e\xfe\xb5\x97\x24\x08\xd3\x35\xa1\x50\x62\xc3\xc4\x24\x9b\x78\xc2\x2b\xf5\x88\x95\x96\x47\x1d\xea\x4a\xdb\x5a\xa4\xb5\x97\x28\x74\x90\xb6\xb9\x2a\xcc\xd3\xe0\xd1\xb8\x9a\xc2\x58\x73\xbd\x2f\x0c\x93\x46\x8f\xd5\xd6\x4e\x64\xe7\x75\xda\x0b\x0f\x4c\xbb\x68\x86\x6e\xb1\x02\x40\x59\x6e\xc8\x5a\x6d\xcb\x16\x4b\x60\x9f\x09\xb5\x55\xc9\x1e\x20\x72\x09\x0d\x7d\x9e\xa0\xa3\xbb\x4e\x8b\x14\xc2\x70\xe2\xc3\x9f\x5f\xb5\x4b\x41\x48\x50\x56\xc7\x16\x2c\x08\x1f\x9d\x2d\xf4\x02\xb0\x49\xb8\x07\xfc\x49\xee\xc8\x55\xc4\x1e\x77\xaa\x48\xbd\xa3\x72\xdf\xde\x95\x8d\x2e\x84\x63\x31\x4a\x51\x9f\x36\x79\x87\x83\x90\xd5\x70\x5c\x6d\x7f\x52\xf9\x85\x26\x62\xd4\x01\x91\xf5\xdc\x92\x47\x74\x3c\x9d\x48\x21\xc9\xbd\x3a\xd9\x77\xb4\x76\x64\x2c\x42\x5b\x25\xd8\xa2\x77\x1e\xe7\x33\xfc\xc9\x37\x4d\x01\x7f\xb5\xc2\xfb\xf6\x6b\xc0\xda\xe2\x04\xbe\xf5\xbf\x62\xf1\xd8\xd6\x12\x8e\x50\x76\x51\x3e\xd1\x8a\x29\x63\xb4\xea\x05\xd4\x06\x2e\xd2\xe7\xe6\x77\x4e\x53\x90\x8e\x71\x75\x04\x30\x12\x91\x3c\x0a\xda\xc6\x9e\xbf\x31\x31\x05\xb9\x7d\x96\x64\x21\x4d\xe6\xb0\xf3\x1d\x1d\x5a\x93\x46\x90\x97\xdd\x71\xe6\x6f\xed\x27\x5c\x59\xe3\xdb\xa2\x1a\xff\xec\xda\x32\x58\x24\x13\x97\xf8\x01\xaa\x09\x9d\xc4\x1c\xd3\xca\x75\x17\xb3\x6a\x0a\x20\xcc\xdf\x70\x24\x35\x2c\x65\xca\xd6\x2c\xf7\xe8\x06\x7e\x7a\xee\xf1\xac\x54\xfe\xd1\xb4\x79\x8d\xbd\x94\x91\xd9\xf8\x4e\xd4\xf2\x28\x7e\xbe\x49\x07\xda\xb8\x75\xe4\x35\x85\x8a\xf2\x93\x4b\x55\x45\x64\x07\x35\x7d\x2e\x2f\x73\xeb\x31\x79\x31\x19\x48\x28\xe5\x16\x6b\x8f\xcd\x64\x14\x25\x1a\x1d\xc6\xea\xdd\x4a\x16\x13\x9b\x69\xe3\xbd\x13\x52\x89\x31\x50\x67\xe0\xdf\x0f\x14\x6a\x08\xa5\x0c\x88\x76\x3f\x1b\x20\x07\x84\xa4\x07\x07\x65\x5c\xa5\x0d\x45\x05\xa6\xd7\xe8\xb0\xf9\x8d\x58\x72\xc7\xc2\x24\x25\xff\x7a\xbd\xea\x8b\x52\x09\xab\x18\xba\xf4\xa8\x5b\x8b\xa4\xc4\x6b\x10\xe9\xe7\xf0\x85\x3e\x83\x95\x7f\xe5\x9b\x21\xac\x84\xa3\xaf\x77\xab\x56\x64\x40\x88\x8f\x86\x6a\x5e\xab\x15\xe4\x07\x1d\x5c\x30\xe1\x03\x9a\x57\xad\x8b\x20\x23\x60\xe4\x26\xf3\xf5\xba\x42\xe1\x86\x53\x16\xff\x96\x69\x2f\x49\xa6\x58\x9d\x80\x08\x80\x7e\xd6\xa3\x4d\x1a\x25\x04\xf0\xb8\xf1\x6d\x97\x96\xc2\x97\x74\xc0\x59\x70\xb0\x57\x9c\x2c\x06\xa4\xf7\x8f\xd5\xb2\x8b\xcd\x88\x57\x93\xc6\x69\x7f\x3e\x93\xfd\x2e\x2c\xee\x02\xb9\x1d\xde\x5a\x35\x4e\x60\xe4\xf2\x51\xc7\x31\x4b\x9b\xfc\x61\x9c\xe0\x8f\xee\x9f\x2d\xc7\x96\x8c\x84\xae\x12\xef\xa3\xf7\x22\x1e\xf8\xee\x98\x33\xe7\x9e\x64\x6d\x96\xeb\xd8\xa9\xc3\x99\x70\x80\xbd\x44\x67\x78\xb7\xe6\x3a\x57\x21\xdc\x3b\x91\x43\x08\x3f\x79\x6c\xb0\x9e\xe4\xe2\x96\x6c\xc9\x6b\xd2\xa8\x17\xf5\xc4\x3f\x66\x66\x8f\x86\x85\xec\x42\x9e\x85\xb8\xab\x11\x17\x07\x7d\x3c\x1b\xd3\x1b\x98\x85\x35\xc4\xf7\x73\xe9\x58\x26\x7f\x54\xb7\xb2\xc7\xf1\x8d\xaf\x56\x42\xe1\x97\xf0\xfa\xec\x11\x4a\x17\x0c\x3a\x18\x7a\x55\xf5\xb3\x0d\xd7\x64\x30\x2a\xad\xe3\xee\x77\x95\xc6\xc8\x46\xaa\xaf\xed\xd7\x0a\x83\x53\x73\x4f\x55\xf4\xe5\xf3\xcf\xa4\x83\xa4\x80\x64\x06\x49\xc6\x7a\x4d\xa3\xd7\x0b\x5d\xcc\x68\xa2\x35\x6b\xdc\xb7\x5f\x52\xdc\xe2\xca\xa6\xd7\xb8\x46\xf9\x7c\x01\x0b\xdd\x16\x82\xbe\xb1\xe4\x91\xb6\x6c\xc3\xeb\x70\x54\x4b\xee\xd5\x2d\x7c\x74\x83\xa0\xe5\xcc\x0f\xe5\x3c\xde\xe2\xdd\xc4\xf3\xe3\x0e\x58\xf9\x22\x3b\xdf\xd6\x98\x4d\xc8\x43\x8d\xb8\xfd\xe3\x33\x7d\xf0\x92\xe9\x96\xce\xfb\x36\x54\xe8\x55\x47\xd9\x76\x86\xcc\xa3\x21\x2f\x67\x02\x05\x09\x80\x5d\xea\x90\x64\x40\x60\x2c\x3a\xa1\xa3\x3f\x3c\x92\x12\xeb\x0a\x9f\x7a\x73\xa8\x72\xb4\xc1\x55\x8b\xa5\x3c\xc8\x4f\xbf\xd5\x02\x35\x82\x43\x09\x52\x2b\xa5\xde\x5c\x97\x33\x42\x45\xa4\xce\xd0\x2d\x86\x4a\xd1\xe7\x47\x5c\xad\x4c\x27\x2c\xcc\xba\x38\xb5\x22\x19\x27\x39\x53\x52\x77\x72\xaf\x35\x3a\xff\xb7\x22\x84\x17\x60\xc6\x10\x78\xf0\xe5\x76\xcc\x1c\x9a\x91\xda\x20\xe0\x49\xc8\xe5\x03\xde\x65\xda\x2d\x26\x15\x07\x6e\x51\xf4\xe4\x02\x45\x5c\x95\xf8\x66\xe8\x27\xa3\xff\xcd\xeb\xb2\xa5\x92\x50\xb8\xaf\x10\xe9\x21\x58\xb8\x71\xaf\x22\xfe\x16\xff\x85\x2c\x86\x75\xe8\x44\x2d\x0b\xc2\x30\x1f\x79\xc8\x69\xfa\x7c\xe9\x50\xf8\x90\x9d\xad\x0f\xaa\x0e\x2d\x0b\x0d\xc2\xec\xd1\xea\x7f\x09\x0f\x10\x61\xdd\xc6\xa8\x81\x1c\x18\xc1\x3f\x33\x7b\xb0\xda\x0d\xb2\x64\xde\x7a\x7b\x1f\xd5\x54\xa4\x8e\x58\x00\x5e\x06\xbd\xb9\xcf\x9f\x55\x3d\xa3\x10\xb3\x28\x14\x90\x8b\xa3\xec\x77\xad\x84\x1e\xac\xec\x7c\xa9\xa7\x62\xbc\xaf\x32\x58\xc1\x3a\x20\x3f\xb1\x1f\xfc\xd1\xa8\x56\x5b\xee\xce\x4e\x38\xe6\xaf\x1e\x97\xe9\xa9\x4c\x69\xad\x15\xe9\xba\xe7\x01\x9e\xb5\x17\xa3\x0a\x79\x50\xb9\x05\x1f\x39\xab\x89\xd5\x99\x30\xc2\x61\x56\x32\x97\x29\x7c\x7a\xb1\x70\xa6\x62\xa1\x29\xbe\xdc\xb8\xb3\x2d\x2a\xb6\x08\x04\x24\x48\x0a\x01\x9d\xce\xe4\x21\xa9\x83\x9e\xb9\x52\xf8\x0e\x3b\x71\x11\xad\x55\x47\x48\x27\x9d\x7f\x22\xdb\x9d\x23\xdf\x47\xbe\x2f\x39\x87\x90\xef\x6f\x5e\xa9\xa0\x29\x91\x0b\x40\xa8\xfc\xbc\xc7\xe5\x65\xaa\xd9\xc8\x21\x8a\xee\xc9\x9e\x1d\x83\x44\xfe\x0f\x6c\x8b\xa1\x2e\x51\xde\xba\x13\x35\x05\xbd\xc4\xd7\x48\x50\x30\xf7\x3c\xd0\x62\xff\xec\xa7\x4a\xb9\x46\xef\x1e\xae\x4c\xb5\x10\xf5\x5c\x64\x22\xb3\xee\x88\xc2\x72\xf7\xfd\x90\x61\x8b\x63\xab\x9f\xd7\x84\xe9\x1d\x50\xed\xe0\xd5\xd5\x4f\x77\x4b\x81\xb7\x72\xa8\xbc\xa8\x48\x1b\xac\xc4\xff\x37\x05\xa6\xbc\xf3\xba\x0e\xc8\x76\x81\x6a\x02\x67\xf7\xc8\x6c\xdd\x85\xcd\x25\x42\x5a\xb1\x14\xdd\xbd\x56\x37\x86\xa0\x75\x07\x27\xef\xfe\x7d\x2f\x66\x2f\x4d\x17\xbe\x38\x76\x2c\x37\x7c\x92\xea\xd7\xe9\x03\x74\xb3\x58\x8a\x1e\x8f\xb2\x9f\x0b\x8a\xee\x94\xa8\x77\x40\x38\x40\xd3\x3a\xb6\x12\x09\xbc\x29\xe3\x32\x80\x7c\xcf\xc7\x8e\xd8\xb9\x07\xb3\xb2\x6d\xc4\x0c\x31\xea\x89\xfe\x6d\x59\x0a\xf3\xaa\xa3\x16\xb2\x66\xee\xdc\xcc\x91\x6a\x3d\x85\x11\x33\xed\x96\x7c\xf7\xad\xdb\x54\x69\x16\x8e\xe1\xea\xb3\x43\xdd\x39\x36\x10\x23\xa8\xcc\x0d\x1b\xbf\xb4\x57\x17\x59\x63\x08\x14\xf4\x01\x9c\x18\xff\x8d\x17\x06\x0c\xce\xe6\x09\xe0\xaa\x47\x5f\x9c\xd9\x5f\xd9\x06\x80\x8a\x70\xfe\xb6\x8d\x1a\xf4\x95\x73\x32\x92\xa9\xcf\x80\x11\x92\x22\xcf\x12\x32\xa9\x71\x58\x53\xda\x91\x36\x30\xf0\xd1\x7f\x5c\xe8\xaf\x4c\xf0\x78\x1b\xb6\x4f\x30\x00\xe6\x30\xd2\xc0\x99\xad\xfb\xae\xe7\x54\x73\xc0\xf8\x11\xf9\x5c\xaf\x83\x28\xde\xbe\xdc\x24\x38\xae\x6c\xde\x99\x39\x42\x2f\x96\x2c\x6c\x62\xdf\xa7\x89\xf6\xaa\xd1\x73\xb4\x85\x3a\x5a\x49\x88\x4f\x7f\xd6\x96\x8e\xb8\x9b\x38\x58\xcc\xa9\xfa\x3f\x20\x6b\x52\x87\x78\x16\x40\xaa\x72\x2f\x0f\x97\x97\x7d\xc2\xf4\xa9\xe3\x21\xf9\xdd\xb2\x36\xfb\x29\xca\x94\x7a\xe0\x9f\x2c\xa7\x08\x8d\xd9\x42\xaf\x3a\x69\x6c\x4e\x9f\xd6\x67\x64\x16\xa9\x88\x6e\xa3\xd0\xa6\x49\xf4\x37\x31\x97\xac\x00\x14\x7d\xe1\xb2\x8a\x62\xc7\x0f\xdf\x36\xfe\x81\x1f\x18\x9e\x98\xcd\x01\x41\x40\xec\x04\xba\x38\x1a\xaf\xb8\x0c\x33\xdf\x2e\x67\x46\x8f\x83\x0f\x2a\xe8\x67\x22\x4c\x41\x8d\x67\xc6\xea\x0e\x10\x0d\xec\x85\x89\xeb\xfa\x4f\xa7\xb4\xda\x43\x26\xf1\x22\xf7\x81\x03\xfa\x93\x4e\xc3\x53\x2e\x58\xa7\x71\x59\xf9\x34\x29\x69\xe4\xf6\x1b\xda\xca\xdd\xa6\xf5\x7a\xfc\xc7\xbc\xa1\x6e\x1c\x52\xa4\xfa\x90\x67\x62\x61\x20\xf6\xd8\xc1\x51\xda\x43\x64\x20\x02\x93\x85\x9e\xe7\x47\xcc\xe7\xb7\xfb\x9e\x00\x01\x6a\x00\x0a\xaa\x3b\x2e\xe5\x51\xf8\x0e\xbe\x2d\x4a\x4e\xf3\xe5\x97\xe9\xfc\x09\x28\x84\x40\x14\x28\xfa\xc5\x33\x1a\xad\x91\x7a\x01\x88\x96\x06\x89\x15\x53\x6f\xee\x70\xdf\x6c\xb6\xad\xf1\x40\xbb\x72\xbd\x62\x97\x80\x80\x6d\x58\x2c\x45\x8f\x1e\xd0\x6d\x28\xcc\x1a\x12\xd4\xef\xdc\x03\x43\x85\x3f\x6b\x77\x1d\x73\x21\xd2\x68\xed\x2b\x7a\xb6\xc2\x1d\x9c\xb8\x1b\x7f\xa5\xe5\x87\xfb\x25\xab\x89\x44\x7a\xe7\x69\x85\x96\x1d\x72\xbb\xfb\xde\xc2\xe2\xb1\x4a\x36\x20\x2c\xb5\xf1\x28\xcc\x79\xb4\x95\x71\x1a\xf0\xf9\x4d\x6e\xd1\x9c\xec\x08\xc2\x43\xdc\xb6\xe0\xa2\xfe\x9c\x6f\x9e\xd6\xca\x45\xdf\x0f\x15\x4c\x94\xf1\xe8\x56\x4d\x37\x01\x35\x21\xcb\xc9\xbc\xbc\xfc\x44\xf6\x51\x23\x86\x2a\x28\xb8\x31\xb3\x74\x1d\x76\x58\x2c\x14\x4d\xe1\x9c\x1b\xd5\x2f\x5c\xad\xff\xab\xb2\xf8\x80\xf0\x76\x7f\xd4\x96\x6a\xbf\xfa\xa1\xaf\x6e\x6f\xee\x9a\xa9\x8d\xa5\x61\xc5\x92\x5a\x9f\x7e\xa7\x5d\xe3\x20\x21\xcf\x4a\x68\x2f\x85\x0f\x8f\xcf\x8a\xf5\x3b\x42\x97\xa6\xd7\xe8\x18\xa9\x7d\x0b\x17\x33\x62\x0a\x3e\x8d\x90\xfa\x67\xaf\x8d\xd4\x2f\x3b\x58\x23\x9a\x8a\x76\x40\xee\xd8\xb9\x6c\x88\xa1\xbe\x8f\x03\x2e\x35\x91\xe8\x8c\xf7\xd3\x24\x93\x88\x57\xb5\x01\x30\x28\xaf\xfc\x0f\x97\xca\xa1\xcd\x94\x69\x53\x8b\xa5\xe8\x21\x6d\x49\x1f\xd0\x90\x89\x8c\x6b\xd0\x0d\x8a\xae\x3b\x65\x09\x7e\xd4\xf8\xd1\x01\x25\x70\xf8\x01\x83\x38\x9b\x7f\xf9\x26\x4d\xcb\x15\x9b\x0c\x0b\xd0\x76\xa1\xd0\x39\x4c\xd9\x33\x34\xdd\x3a\xd7\x1b\x48\x5e\xe4\x4c\xfd\xfa\xd7\x48\xbd\x9e\xb6\xf0\xb9\x03\xb7\xe9\x4d\x6f\x35\x35\x29\x88\x1e\x78\x88\x5f\xee\x05\xca\x8a\xca\x38\x3d\xa0\x5d\xcd\x16\xe2\x86\x42\x9c\xec\xd1\x66\x6c\x37\x08\x6f\x6c\x63\x77\xdb\x60\x2d\xa9\xf3\xad\x73\xdb\x05\x6d\x00\x0c\xd3\x34\xf8\xdd\xbf\x7c\x41\xe5\x6c\x99\x35\xcc\xf7\xe9\xab\xd7\xaa\x08\x3e\xaf\x8b\x40\xec\x5c\x74\x5c\xe3\x4d\xd4\xb1\x67\xf1\x3e\xf9\xbf\x0e\x0d\xcb\xf4\x6c\x5e\x42\xbd\xe1\x5a\x4b\xbf\x7b\x5d\x17\x10\xc6\x38\x33\x57\x2b\xac\x1b\x23\x50\xa9\x54\x4c\xa1\x8d\xaf\x1a\x2d\xa2\xc3\x9c\xb2\x93\x4e\xf0\x0e\x6b\xa3\x84\x2e\x8c\x9c\xc0\x4e\xa8\x73\x3b\x2c\xc5\x07\x66\x3c\xa8\xae\x3f\x70\x3c\x6d\x41\x69\x9d\xc4\x5f\x7f\x87\xb6\xff\xa6\x5d\xc9\x7a\xed\xe3\x33\x79\xec\x12\x02\xc0\xf0\x91\x86\x69\x40\x59\x14\x5a\x84\x8a\x22\x65\xe5\xf3\x0a\x43\x0a\xf1\x4d\x72\x75\x62\x76\x06\x51\x45\x20\xee\x9f\x3d\xd3\xc6\x77\x5e\xd1\x1e\x2b\xb1\xc4\x78\xbe\xb2\x77\x94\x52\x08\x56\x43\x87\xbb\x91\xb6\x4c\x20\x5e\x52\xa9\xa6\xf0\xd7\x12\x97\x8e\x73\xc3\xb2\x9f\x98\x76\x79\x29\x43\xeb\x1f\x0f\x5c\xa9\x0c\x06\xc0\x1d\x20\x99\x9c\xe6\xfe\xa1\x90\x3d\x63\xd3\x44\x85\xfb\xa9\x9d\x3a\xd8\x9c\xba\x22\xc7\xe5\xfe\x4f\x45\x42\x44\x02\xd8\xfb\xae\x38\x97\xbd\x15\x36\xf2\xac\x6a\x98\xb0\x75\x0b\xb9\x97\x14\x07\x02\xae\x66\x91\xff\x4e\x20\x4f\xde\x84\xc9\x37\x8d\x1f\x3f\xbe\x58\x8a\x76\x6f\x1c\xa1\x27\x57\x86\x6d\x98\xbe\x25\x1f\xf8\xe7\x47\x86\x68\xf1\x38\xe0\x02\x17\xb9\x09\xeb\xb2\x8f\xb7\x81\x83\xa4\xd2\x3f\x77\xa1\x4d\x19\xcc\xb8\x2e\x66\x9c\x31\x62\xb0\x7e\xda\x5e\x89\x78\x01\xa2\x99\x41\x70\x79\x8e\xaa\xed\xc7\x84\x2b\xce\xd4\x82\x9e\x16\xc0\x66\x57\x7e\x50\xe3\x13\x1b\x55\xea\x5a\xc8\x81\x43\xd7\x6c\x4b\xe7\xa7\x38\x50\x66\x0a\xb9\xf7\xef\xd5\x29\xbf\x9c\x15\x9f\x4a\xb2\xfd\xfe\x90\xb6\x95\xb6\x69\x98\xde\xee\xef\xbd\x37\x30\xbd\x1b\x8a\x9f\xb3\x26\xcc\x23\x54\x39\x88\xef\x42\x97\x76\xe6\xa0\xbe\x0d\x4e\xaa\xf5\xd4\x61\x69\x4f\x1f\x51\x05\xc0\x19\xbb\x65\xb4\x02\x1b\x08\xb8\x6f\x7c\xa9\xb7\xd0\xbd\x20\xfb\xc9\x42\x1f\xa7\x85\x78\x6f\xde\x76\xd2\x3c\x46\x7c\x94\x35\x5c\x69\x5c\xaf\x20\x4d\x1d\x07\x37\x5d\xea\xe1\x96\x63\x9f\xff\xf8\x44\xf9\x24\x2b\xd8\x05\xb4\x51\xbe\x3a\x37\x41\xee\x82\x19\x9d\xb1\xf4\x92\x16\x67\x36\x39\x08\x41\x27\x06\xa9\x98\x27\xb1\x86\x32\xaa\x67\x55\x01\x29\xaf\x42\xac\xc4\x95\xc9\xf8\xf5\x4a\x95\x05\xee\xdb\x04\xf0\x0b\x97\x8c\xd4\x54\x69\x45\xbd\x23\x2e\xda\xa0\x61\xd9\xb3\x09\xbe\x00\x71\xb3\xb5\xef\xf0\x50\xe5\xfc\x11\x47\x15\x03\x33\x3e\xd5\x9e\xfd\x57\x13\x8b\xc9\xb1\xdd\x23\xcc\xef\x4c\xe2\x61\xf0\x4d\xc8\x6f\x3b\xaa\x6c\x76\x91\x83\x3d\x0b\x81\xdf\xe8\x97\x76\xb4\xa9\xaa\x51\x35\xe0\x28\xc4\x3f\xe2\xfa\x23\x3c\xe7\x2c\xbb\x67\xce\x5d\xa5\xa5\x77\x80\x1d\x66\xfe\xcc\x2c\x19\x47\xca\xd8\xc3\x5c\xe7\x0e\xbe\xf7\xb9\xd7\xfb\x89\x76\xce\xa9\x15\x45\x3f\xb3\x3d\xbd\xee\x65\x04\xa5\xba\xbf\x4b\xd2\xa2\xdd\x0c\xd2\x2a\x58\x75\x8d\x82\x20\x27\xa6\xdd\xd2\xdf\x7f\x68\x7c\x36\xb0\x8c\xef\x98\x30\x7e\xb2\x38\xe3\xbf\x38\x21\x90\x1c\x77\xb7\x22\x89\x75\x66\x04\x83\x24\x86\xf9\x62\xae\x37\xbf\x71\xb7\xe6\x78\x87\x2a\x09\x80\xc2\x18\xb4\x97\x3f\x83\x3a\xad\x87\x0e\x62\x5c\xb4\xff\xd4\x6c\x8d\x43\x4c\x2b\xa8\x27\xab\x98\x90\xfb\xe9\x6b\x0a\xfc\x93\x11\xa0\x62\x1a\x73\x76\xaa\x43\x14\x06\x40\xd1\xfc\xcf\x67\x0c\x56\x3a\x61\xe6\x11\xaf\x0a\xf9\xf5\xd7\xc6\x10\xb5\x35\xab\x86\xc4\x0f\x40\xb4\x2f\x3f\x6d\x96\x22\x01\x8a\xb9\xa3\x62\xee\x87\xeb\xfb\x24\x3f\xa2\x58\x8a\xec\xe7\x12\x25\x7c\x8f\xa8\xc6\x20\x07\x1e\x56\xc8\x50\xd4\x87\x19\x59\x7e\xfb\x1e\x8d\xb6\x87\x2d\x0a\xda\x12\xf2\xdf\x6d\x58\x31\x42\xde\xa3\xd0\xe7\x7c\x59\xcd\xe0\x6c\x6c\x1a\x9f\x18\x95\x22\x87\x51\x63\x4c\x0b\xb0\x87\x08\x93\x48\xb8\x49\x87\x1f\x56\xce\x08\x8c\x24\x16\xbf\xa1\x08\x0a\xdd\xe0\x60\x4e\xbc\x48\x3e\xca\xfb\xc7\xa9\xde\xd6\xc9\x2a\x04\x34\xab\x8f\xe9\x40\x89\x6a\x15\xb1\xc4\xfd\xfe\x99\x17\x05\xc6\x70\xc9\x9d\xf1\xff\x7c\xee\x61\x79\x4b\x2b\x0c\x09\xd5\x91\x25\x4b\x35\x8a\x89\x7b\x4b\xc7\xc4\xf1\x82\x33\xfa\x1f\x2f\x2a\x73\x42\xe2\xa5\xae\x0c\x5d\x3d\xf2\x4e\x54\x51\x43\x85\xf7\xef\x76\x32\xbb\xa5\x3a\x15\xc8\xac\x9a\x66\xe5\x4a\xc0\xea\x56\x6c\x91\x8d\xaf\xbd\x94\x11\xdf\xfe\xc8\xa2\x1b\x67\x5f\x44\x7c\x7b\x98\xa2\x37\x44\x7c\xb8\xb6\xf0\x1d\x46\x3f\x35\x5c\x2e\x1b\xfc\x56\xd8\xb3\xf1\xda\x76\xa5\xe9\xc7\xbe\xcf\x9b\xfe\x2f\xce\xd5\xcd\x1d\x11\x33\xb1\x23\xba\xf5\xfc\xa5\xb7\xe9\x9e\xe9\xbe\x20\x4c\xe5\xbe\xf4\x64\x4b\xb1\x09\xda\x1d\x6d\x2b\x46\x29\x41\xda\x33\xc1\x97\xa3\x15\xac\xf8\xe0\xeb\x59\x5a\x27\xf8\xf1\xb4\xb0\x33\xa2\x6f\x1c\x19\xaa\xfd\xb5\x38\x71\x8a\xc1\xe0\xfc\xf3\x1c\x53\x30\x8f\xa3\x0d\x65\x4b\x31\xee\x21\xd5\x93\x99\x78\x7e\xc8\x44\x04\xff\xe5\x7c\xe5\x86\x7a\x02\x54\x7d\xa0\xed\xe2\xfe\x05\x71\x5f\xbc\x67\x9f\x9e\x67\x7d\xec\x05\xdc\x7d\x0a\x7e\xe2\xb1\x77\x78\x6c\x9b\x8f\x4c\x5a\xce\x8c\xcb\x9f\x3d\xca\xcf\xde\x84\x29\xd3\xe2\xb7\xdf\xd7\xba\x52\x01\x48\x36\xd5\x30\x98\xfb\xe5\xa3\xc2\x01\x8f\xc5\x97\x33\xca\xad\x1e\xa6\xe7\x26\x4b\xd9\x85\xdd\xff\xae\x26\x44\xc9\x41\x4a\x2c\xa1\x39\x5f\x58\x9c\xfd\xcc\x3d\xc8\x2d\x13\xb1\xe1\xe2\x2b\xb0\xb1\x10\xe0\x1c\xec\x15\x27\x4c\x10\x4d\x56\xff\xe5\x12\xa7\xa6\xc8\x6a\xf6\x1a\xd3\x66\x2a\xeb\xf0\xa9\x71\xd5\xf5\xeb\xb7\x74\xd9\x97\x2a\x7f\x79\xa5\xa8\xbf\x25\x1a\x7b\x3f\x20\x2e\x5f\xd1\xcd\xb0\xfa\x8a\x68\xea\x07\xc5\xf8\xe3\x7d\x6f\xae\x6e\xb1\x43\x03\x2c\x24\x65\x0a\xf7\x09\x3e\x2b\xc3\xe5\x30\x10\x5c\x9e\x4b\x59\xaa\x67\xe0\x64\x5a\xa1\x41\x32\x1d\x57\x18\xc6\x71\xb9\x55\xc3\x90\x59\xc7\x4c\xb9\xaa\xb5\x23\xf1\x6f\x64\x65\x68\xe8\xfe\xdf\x51\xc5\xc7\x83\x11\x47\xcc\x5c\x96\x6d\xe5\x73\xa6\xce\xd0\x8a\x13\x1c\xe3\xae\x74\x87\x94\xa4\x4f\x5c\x54\x15\x33\xf2\xf8\x8f\xcc\x69\x03\x15\xc1\x24\x0f\xf0\x38\xd1\x36\xcd\x60\xcd\xb7\xc3\x20\x19\xa2\xfe\x6c\xb8\xbe\x4a\x76\x1c\xb1\x9f\xdb\xd7\x57\xfe\xac\x1a\xb1\x3c\x50\xb6\x2d\xdc\xe7\x64\xa3\xb4\x6b\x56\x19\xea\x52\x7d\x20\x0a\x1f\x3f\xd0\xc2\x01\xf4\x03\xe4\x25\x26\x70\xf9\x95\x1d\x9c\x08\xb7\x48\x7a\x54\x24\x52\x34\x6f\x6a\x49\xb0\x8c\xe3\x22\x9c\xe7\xd6\x57\x96\xea\xf0\x04\xe4\x05\xc4\x15\x03\x9c\xe6\x5b\xd9\x13\x1a\xa0\x1a\x8e\x1b\x34\x31\x29\x9a\x32\xa7\x55\x5f\xd2\xe1\xb6\x30\x89\xc3\xde\x2d\x6b\x34\x15\x48\x64\xd6\xaa\x8c\x86\x1e\xe7\x95\x18\xb4\x3d\x15\xc3\x1c\x3f\x21\x7e\x14\xed\xdb\x34\xca\x93\x43\xbb\x38\xd4\xef\xc8\xf0\xbf\x21\xc4\x0b\x73\xd2\xc8\xd1\xd4\xc3\x7c\xea\x58\x44\xb8\x04\x45\x23\xb7\x0f\x94\xc7\x3e\x1d\xfc\xfe\xe1\x15\x7e\x12\x30\xfc\x24\x01\xb1\xc9\xf7\x7b\x54\x59\x87\x22\x16\x14\xe3\xe7\x01\xda\x8e\x97\x5e\xa7\x15\x13\x2e\xc0\x15\xb3\x0c\x75\xac\x50\x7f\x6c\xcc\xe0\xaa\x3e\x35\x5a\xb7\x89\x31\x03\x2a\x74\xba\x8d\xa3\x6f\xf5\x57\x92\x5e\x08\x25\xf6\xc4\xa7\xb2\x0f\xbe\x89\x33\x78\xca\xbb\x17\xa4\x5b\xde\x10\x59\xc5\x52\x74\xd9\x6a\x9d\xf4\x8c\x1c\x22\x30\xc8\x10\xbf\xb6\x6b\x5e\x06\x4d\x1a\x8a\x97\x58\x38\x2a\x3f\x2f\xf5\xb8\x7e\xe1\xc6\x60\xb8\x16\x8f\x6d\x54\xaf\x13\x90\xa2\x9d\x01\x30\xa4\x13\xfd\x93\xce\x07\x05\x36\xbf\x26\xcb\x96\xa7\xe2\xdf\x16\xa3\x65\xa8\x5c\xb6\x4e\xca\xc8\xeb\x5b\x84\x53\xb9\x72\x9f\x3a\x28\xcb\x9c\x06\xf1\x79\x23\xf1\x93\xdb\xb2\xb0\x1f\x17\x21\x46\x1a\x17\xf1\x96\x88\xfe\x67\x81\x0c\xb2\xd5\xf8\x40\x02\x40\x8a\xcf\x1a\x8e\xcf\xca\xa6\x9c\x8a\x83\x82\x72\xe8\xdb\xbc\x07\x4b\xc7\x65\xaf\x68\x4a\x2e\x0d\xd2\x40\x89\x9e\x58\xfe\x6b\x97\x5e\xaf\x55\x1b\x15\x0a\xb6\x54\x90\xc5\xe5\x7b\xd8\xb2\x53\x3b\xac\x61\xb2\x0a\x7a\x7a\x6e\xba\xd9\xa7\x15\x59\x30\xfd\xcb\x29\x85\x6a\x62\x9a\x94\x09\x84\xfb\x35\x8f\x0f\x10\xa5\x07\xc3\xb0\x82\x2f\x96\xa2\x3f\x6e\x96\x11\x09\x05\xb6\x83\x03\x62\x0a\x16\xc7\x74\x01\x11\x0f\x6c\x2a\xac\xd2\xa2\x3b\xce\xca\x5e\xc6\x0e\xcb\x26\xe2\xae\x92\xfb\x35\xed\x6d\x87\x08\x52\x52\xf4\xa1\x5d\xbc\x8b\xf0\x9b\x6e\x99\x42\x09\xfb\xa7\xad\x0a\x18\x1e\x39\xfc\x36\x5c\x98\xa7\xd4\x52\x71\x37\x06\x87\xe6\x1d\x6e\x8d\x5c\xbc\x8f\x04\xa6\x8d\x15\x91\xca\xde\xfc\xd3\xcf\x0f\xd7\xe2\x3e\x57\x3d\x4c\x5a\xbf\xdc\xfb\x0f\x8b\x61\xf6\xd2\x3b\x16\x17\x97\xde\xb1\x64\x49\xb1\x14\x5d\xf1\xf6\x95\x4a\x41\xec\x92\x40\x19\x1e\x99\x3b\xb2\x3f\xd0\xa3\xac\x0b\x35\x95\x3c\xd7\x6f\xa4\x3c\x4c\x1e\xc1\xd0\xe1\x14\x26\xec\xd4\xe6\xf5\x36\x51\x66\x96\xb9\x4f\x2e\xd6\x10\x34\xd4\xc5\x7c\xdc\xcf\x13\x94\xab\x11\x6a\x7d\x0c\x12\xbe\x29\xe1\x76\x7c\x8f\xac\xe0\xe3\x88\xc9\x0d\x9a\x61\x5d\xb4\x5a\x21\xdd\x07\x29\xc3\xfc\xc4\x56\x5e\xc5\x2c\x23\x66\x4d\x45\x46\x16\xee\x3b\xa3\xf9\xf9\x11\x5c\x75\xa8\x69\x67\xa6\x0d\xd3\x0b\x2d\x7a\x7f\xd8\x22\xc9\x86\xcc\xf8\xf1\x1c\xe5\xe5\x13\xc7\x09\x28\x3c\xe9\x09\x97\xaa\xb2\x95\x35\x9f\xb8\xb4\x11\xf7\x8b\x85\x81\x2f\x0d\xd1\xce\x77\x97\x98\x21\x7e\xe8\x9d\x41\x6a\x81\x99\x4e\x4c\xe7\x69\x2b\x32\xc2\x59\xa2\x62\xd6\xf6\x8b\x45\x52\x87\x8e\xb4\x6a\x16\xf8\xab\xe4\x0f\xad\x62\xca\xaa\x1c\x7a\x36\x77\xde\xe5\xe2\x22\xf0\xa9\xe3\x8f\x67\x67\x9f\x84\x8d\xca\x84\xeb\xf4\x2b\xd5\xc0\x6f\x6d\x11\x65\x28\xab\xd1\x90\x6b\x93\xb0\x4d\xd7\x6a\xc1\x8d\xd5\x5a\x1c\x11\xe7\x2a\x9c\x28\x4c\xaa\x76\x99\x72\x8a\x65\xd4\xd4\x46\xee\xae\xf0\xf2\x15\xe3\x8e\xfc\x1f\xfb\xf5\x93\x5d\x1d\x40\xc5\x56\x28\x84\x0e\x0b\x3b\x21\x37\x2f\xbe\xe7\x3c\xdf\xc7\x00\xb4\xd1\xc3\x71\x77\x1e\x3f\xeb\x3e\x9a\x1e\xbf\x1b\x47\x11\xe0\x54\x5d\xb2\x53\x51\xb9\x87\xca\x05\xaa\x96\xe7\xb5\x15\x06\x06\x4f\x28\x50\x03\x5c\x39\x51\x03\xc2\xda\xc4\x41\x5e\x60\x33\x5a\x8f\xef\x75\x47\x1c\x35\x1e\x4a\x0b\xbc\x32\xed\x52\x8a\xcf\x97\xf7\xc9\x97\x50\x09\x9d\x0a\xe1\xb6\xc0\x7f\x7a\x33\xd1\xe1\xb4\x04\xbf\x31\xfa\xc0\x6d\xfd\xc4\x75\x37\x61\xde\x58\x8a\x7e\xf4\xbc\x84\xbe\x10\xcf\x44\xcc\x43\x81\xda\x0a\x5d\xb3\x42\x13\xab\x24\xd4\xc1\x9e\x09\xdf\x33\xfa\xe8\x52\xcd\x4c\x10\x89\x3f\xf8\xcb\xc2\xfe\xf1\xff\x5e\x3c\x5b\xe9\xad\x3f\x7b\x52\xde\x65\x9b\xa2\x6e\x88\x41\x9f\x50\x84\xed\x2c\xe4\x22\xe1\x71\xfb\xd2\xc2\x16\x3e\x70\x33\x31\xbd\xc9\xff\x7a\x84\xec\x6a\x85\x85\x80\xde\xd5\xfe\xf4\x9c\x5c\x66\xfb\x4d\xb7\x6e\xd3\x8b\x98\x3a\x4e\x5b\xd8\x5f\xf9\xdd\x5d\x70\xdc\xcf\x6f\xe2\xb5\xd6\xe2\x25\xf7\xb4\xfc\xfd\x37\x2b\xfd\x95\xc6\x08\x28\xf6\x39\xac\xa5\x7f\xe2\xd6\x29\x13\xe0\x8e\xdc\x9f\x6c\x05\xd8\x48\xbb\x2c\x92\x68\x0a\x79\xed\x32\x26\x76\x22\x17\x4b\xcd\xd3\xe8\xa3\x37\x29\xe4\x46\x5c\xb7\x11\xe3\x51\xeb\x33\x7d\xae\x55\xc6\x53\xe0\x66\xd6\x02\xc9\xd9\x37\x4a\x60\x2b\x69\xc8\x80\xb1\x1d\xd5\x9e\x50\x75\x78\x85\xfa\x23\xcf\x4b\xef\x7b\xbd\x2d\x29\xf4\x51\xd9\x21\xbe\x2d\xfa\xf1\x5c\x6e\xee\x80\xa4\x62\x28\x26\x2a\x05\xc6\x1f\x16\x4a\xcc\x88\xf0\x59\x97\x21\x6c\xe5\x34\xd9\x2e\xd7\x69\x80\x02\x0a\xbf\xfc\xe8\xb0\xb4\x94\xe9\x70\xe3\x53\x31\x67\x94\x84\xdf\xb8\xa1\xdf\xca\x63\x28\x54\x96\xeb\xfa\x56\xa6\x43\xbc\x84\x12\xd2\x5b\xf8\xc0\x53\x0a\x7e\x22\xf4\xac\x4a\xe8\xd5\xe2\x2f\xb3\xa5\x43\x41\x7d\x86\x0d\x2e\xfd\xf5\xec\x1e\x79\x2d\x70\xdd\x27\x0e\x9f\x6e\x7d\x6e\x57\xf6\xa6\x59\x40\x7e\xcd\x3e\xc9\xa3\xcb\x95\xe9\x4e\x5c\xd2\x72\x70\xe9\x94\x20\x05\x9b\x7b\xd8\x6d\xb1\xe4\x55\x2e\x3d\x48\x9f\xc0\xa5\xc7\x1d\x6a\xcd\x19\x04\x70\xe7\xe3\xe7\xbc\xf0\x79\xad\xcd\x40\x0d\x09\xf3\x6c\x96\x35\x0d\x5e\x46\xbb\x3c\x4d\xb9\xed\x95\x23\xba\xb6\x5b\x03\x01\x57\x4c\x58\x93\xf6\xe6\x7f\xdf\x90\x9d\x5f\xbd\x0a\xf3\xc4\x67\xd7\x0d\x49\xf3\xa6\x99\x15\xcf\x2e\x27\x06\xa0\x71\xe9\xa7\x84\x80\xff\x5e\xa4\x99\xdc\x53\xa7\x22\xe4\x3b\xce\xae\x6b\x59\x8e\x05\x01\xf1\x13\x39\xa2\x31\x9b\x07\x8a\xc0\xd2\xc0\x7e\xc0\x0f\x58\x74\xf3\x1a\xa5\x50\xaa\x80\x31\x3e\x9c\xbb\x1d\x4f\x64\x83\x09\x70\x72\x61\x05\x75\xd7\x21\xf8\x64\x71\x81\x32\x55\x15\x6b\x7c\x65\x81\x82\xbb\x40\x4d\x46\xb9\x88\xc9\x7f\x0c\xd2\x65\xed\xe3\xd6\xb2\x89\x11\x4b\x20\x35\x53\x57\x69\x34\x90\x90\xd5\xa9\x8f\xe5\x0c\x7b\xe7\x56\x79\x73\x1d\x1a\x12\x9f\x20\x0f\x1e\xdf\x9e\xa7\x24\x4b\xc2\xb7\xe3\x72\x2e\xc3\xc8\x28\xd4\x34\xc8\x96\x43\xe0\xa5\x0a\x13\xb3\x75\xf3\xc4\x78\x37\x8e\x06\xd0\x24\x35\x96\x49\xe8\x24\x8c\xd1\x72\xff\x3b\x4f\x42\xf8\x00\x11\x86\x32\x50\xc4\x15\x07\xf8\xb4\xe2\xfe\x3a\xe7\x66\xa7\x69\x30\xb7\x61\xa5\xd2\xcb\x76\x09\x29\xa9\xfc\xc7\x4e\x68\x48\x43\x1a\xf2\xf5\x49\xd4\x78\x3c\xb1\xf9\xc7\x71\x7e\x48\xc6\x71\x1f\x3b\x3f\x48\xb3\x90\x9b\x0d\x7b\xe4\xa1\xda\x0e\x9a\x37\x4f\x42\x43\xb5\xe0\xbd\xa1\xed\xa0\x39\x31\x08\x80\xc9\xf9\x6d\x4f\x0f\x48\xdd\x26\xa4\x19\x87\x36\xe3\x08\x38\x1d\x22\x15\x6b\x32\xce\xae\x91\xb1\x8b\x67\x4a\x52\x11\x5a\xd9\xc3\x35\x47\x71\x2b\x19\xa4\xf1\xfa\xf7\x7f\x0f\x6a\x6e\xbd\xdc\xa8\x12\xfe\x69\x77\xbf\x11\xca\x64\xa9\x4a\xc0\xa2\x29\xbb\x74\xdb\x7e\xa0\xa5\xdd\xe4\x52\xb4\x00\x90\xbc\xb3\x4d\x13\xd5\x45\x9e\x45\x2c\x64\x36\xd3\xc3\xf3\x93\x67\xd2\x77\x3a\x69\x12\xc8\x52\xfc\xf9\x60\x06\x20\x24\x48\xe5\xf9\xcb\x9e\xe3\xc9\xe6\xbe\x3b\x5b\x92\x4d\x6e\xf4\x5c\x5d\x3e\x98\xf9\xd8\x69\x24\x56\x09\xbd\xc6\x7f\x1e\x96\x29\x8e\x0b\xfe\xb4\x0e\xe9\xf2\xf7\x1c\x69\x11\xbd\x23\x0e\x41\x89\xc0\xa8\xa1\x70\x64\x1d\xda\xc5\xd1\x20\xed\xc3\x2f\x4f\x90\x1a\xa3\xe3\xeb\xaa\x99\x2f\x55\x41\x34\x13\x6a\x96\xfd\xcb\x94\x4d\x36\xf6\x7d\xe2\x8a\x61\x77\xf4\xcb\x57\xe5\xd2\x18\x93\x4a\x05\x18\xd7\x12\x49\x45\xf6\xa4\xe2\x4f\xaa\xaf\xc8\x54\x47\x51\xaf\x72\x90\xcf\x15\x6c\x8d\xb7\x15\x8c\x18\x0a\x02\x4a\x39\xa6\x74\xea\x78\xa5\x32\xe6\x33\x63\xd8\x7d\x9e\x51\xfa\x52\xcc\x1a\x44\xcc\x57\xbf\x33\x54\x25\x2a\x02\x84\x27\xfe\xb6\x03\x8e\x6a\x9a\x52\x62\xcb\x06\x96\x0f\x4f\x8d\x4e\x47\x18\x93\x6e\x81\x6e\x5f\x97\xf8\x61\x88\x38\x7c\xdc\x71\xe7\xbb\x03\x95\xf2\x46\xe8\x3b\x19\xcf\xcd\x57\x7e\x2b\x6d\x24\x2e\x14\xdb\x8e\x49\x65\xc0\x8c\xb0\xcc\x3d\x2b\xd2\x9c\x09\x34\xf4\xe8\x85\x07\xd2\x94\xe3\xa3\x96\x84\x69\xdc\xb0\x73\xb8\x56\x9e\x79\x26\x47\x34\x72\x3a\xc1\xdf\x45\xc3\x94\x37\xec\x55\xb1\xcf\x35\x66\x05\xa2\xea\x82\x91\xfe\x3a\xc6\xd5\xf3\xf6\x9f\xc8\x5e\xad\x2e\x1b\x05\x60\x38\x08\xa3\x98\xde\xdc\x83\x15\xa5\xd6\x84\x2a\x12\xfe\xf3\xeb\xc7\x34\xab\x02\x6e\xc7\x24\xa4\xf0\xd7\xc9\xec\x4c\x02\xcc\xe7\x04\xc7\xfa\x66\x27\x4c\x35\xec\xfb\xd8\xc9\xa8\x0e\xfe\xfc\x5d\x41\xbe\x22\x2e\x0e\x04\x38\xcd\xf8\xed\x23\xf2\x02\x5b\xd4\x45\xa4\x75\xa7\xb1\xaf\xfb\xca\xac\x98\x00\x4a\x21\x16\xf9\xf7\x77\xb7\x29\x0b\x04\xda\x93\x3a\xb4\x7d\xb4\x9f\xfc\x90\x13\xa7\x76\x4c\x06\xab\xa2\xce\x39\x3a\xec\x93\x11\x6a\x25\xdb\xd2\x27\x2f\x68\xb7\x8b\x32\x53\x52\x6b\xf3\xf7\xbf\xa6\x2e\xbc\xc5\xc4\x6e\xff\xd2\x6c\x6c\xb2\xc3\x20\x4c\xc6\xbe\x37\xbf\x70\x75\x4b\xe2\x42\x01\xf6\x84\x52\x4b\xbe\x7d\xa6\xe8\xeb\xb1\xc5\xe5\x4a\xf2\xbf\x1b\xae\xac\x39\x11\x63\x94\x77\x4d\x3f\x31\xb2\xda\x49\xc4\x67\x08\x84\x5f\xf5\x69\xcb\x5f\xb7\xca\x20\x92\x88\x85\xb4\x84\xa2\x53\x37\x69\xc3\x9b\x10\x18\xde\xf1\xff\x57\x3f\x8e\x5f\x3e\x21\x75\x17\x6e\x81\xa1\xf9\x35\xe7\x75\x8f\xbb\xc0\x4e\x51\xbc\x3f\x38\x2f\x8d\x8b\x27\x4f\x8c\xff\xfa\x98\xf5\xaa\x84\x6c\xdd\xc1\xf0\x3d\x0b\xcb\x36\x2b\x0c\x49\xd2\x5d\x4c\xb1\x97\xb9\x23\xba\xab\xca\xf4\x29\xd3\x60\x2e\xf8\x8d\x65\xc2\xb3\x0f\x85\x3e\xdf\xfd\x17\xf2\x91\xfc\xe1\x9d\xd4\xc4\x9c\x33\x57\x58\x75\x4a\xf6\x01\x2e\x81\xb1\x5e\x61\x98\x66\xb4\xdb\x19\x32\x61\x2e\x1d\xad\x79\xb2\x05\x88\x96\x18\xc8\xe4\xf2\x5b\xb3\x38\x9d\x8f\x0b\x00\xc5\x67\xd6\x27\x43\x71\x13\x13\x70\x1f\x8b\x06\x6b\x86\x9b\xc8\x72\xa9\xc7\xf9\x10\x62\x50\x51\x3a\xa2\x88\x86\x71\x65\x44\x9b\xd4\x21\xd8\x90\x3d\xd9\x29\x16\xf2\xc0\x10\xb7\x45\x9c\xe1\x8e\xbe\x9a\x86\x01\x65\x16\xd2\xe0\x5b\x07\x2e\x19\xa6\x05\x78\xda\xc5\x0b\x51\xf8\x4a\xf7\xbe\xac\xfd\x71\xe8\xb9\x28\x1d\xf9\xe4\xff\x72\x21\x0b\x7d\x76\x71\x70\x51\xcf\xd8\xfc\xaf\x17\xa9\x28\x1a\xee\xc0\x56\xc8\x2d\x52\x07\xa4\x08\xfc\xf5\x36\x8f\x4e\xcf\x90\x17\x82\x12\xc7\xa0\x37\x78\xba\xa8\x90\x4a\x60\x83\x52\x32\x1c\x8a\xe0\x75\xa5\x2b\x6f\x10\xdc\xc5\xf1\xc8\xf7\x18\xca\xa6\x91\x54\x11\xc3\x01\x78\xb7\x44\x5b\x2e\x4b\xa3\x79\x17\x34\xc3\x23\x86\xa8\x59\xb9\xc1\xa9\x59\x30\x2a\x39\xa6\x57\x00\xd0\x02\x08\x95\x85\x4a\x43\x59\xa6\x23\xb3\xa6\x3a\x6f\x1d\x51\xfc\x5d\x94\x3f\x28\xcc\x73\x34\x0f\x57\x64\xda\x7c\xdd\xf6\xe3\xbd\xe9\x1d\xa8\xc2\x84\xd8\xf8\xda\x0c\x55\x4e\x0d\x82\x0a\xac\xfc\x99\xb6\xcb\x8b\x9f\xa2\x68\x17\x7e\xf8\xc8\x08\xa5\xa1\xf4\x50\x80\x5a\xae\xe6\xac\x9b\xd2\xa7\x45\x1d\xcc\x12\xac\xef\xfa\xcb\x34\x88\x92\x8b\x1c\x60\x48\x45\xd7\x0d\xd7\x7a\x70\x18\x08\x32\x9e\xfa\x8f\xed\x54\x88\x1e\x4d\xd3\x21\x26\xa7\x3c\xdc\xda\x39\xca\x53\xe1\x86\x26\x43\x41\x6b\x9f\x67\x74\xbc\xa4\x2d\x6c\xc3\xb2\x93\x80\xe6\x9e\x6d\xd3\xae\x9e\x3c\x6d\x46\x9f\x87\x33\xc2\x7b\x26\xdf\xb1\x34\xba\xdb\xd2\x0e\x37\xc3\xb2\x51\xea\x09\x4e\x11\x2c\x96\xa2\xd7\x2a\x1a\xb8\x99\xcf\x84\x20\xe1\x17\x1e\xdb\xac\x08\x56\x3d\x28\x06\xf0\x9e\x12\x1e\x30\x74\x51\xb9\x7b\x84\xc0\x91\x50\x0b\x85\xa0\xfb\xd3\x95\xf2\xb5\xdd\xa0\xb8\x65\xb4\xad\xd3\x36\x40\xa8\x07\x43\x9a\x93\xf5\xd0\xe5\x07\xaf\x54\xdb\xf4\x0a\x77\xd9\xe7\x0a\x1b\xef\x3f\x39\x50\xed\xa2\xc5\x60\x74\xd8\x34\x61\xc1\x6d\xd1\xba\x58\x82\x16\x23\x45\x59\x9f\x82\xb2\x85\xf1\xe7\x45\x83\x95\x6c\x87\x71\x40\x61\xcc\x91\x9b\xb6\x5c\xd7\x0c\x37\x69\x2a\x0b\x3f\xff\x48\x9b\xec\x72\x95\x39\x53\x61\xc9\x66\x8d\x4c\xcd\x88\x8b\x6a\xb4\x91\x41\xbe\xe6\xf1\x7b\xe9\x81\x9e\x0e\x8b\x9f\x5c\xd1\x92\x4f\xb5\x46\xcc\x1a\x24\xb3\x9e\xfd\x4a\x22\x8e\x6b\x7f\xe2\x55\xe3\xb6\x24\xd8\xaf\xd5\xd7\x84\x99\x02\xf7\xc6\xcf\xc7\xdf\x3d\xaa\x78\xb3\xd9\x88\xc0\x17\xfd\xe0\x4a\xcd\x7d\x99\xcb\xb8\xa4\x06\x0b\xbf\x37\xf8\x0e\x13\x39\x04\xe4\xa8\x8c\x75\x6b\x15\x91\xa3\x7a\x1d\x07\xa4\x07\x0a\xc2\xfc\x0b\x43\x75\x90\x35\xab\xe1\x20\x51\x89\x1f\x73\x4c\x75\xe7\xa7\xa6\x8d\xe3\x96\xf6\x55\x45\x17\xcf\x77\xb1\x17\xb6\x72\xc4\xca\xc9\x16\xa0\xc1\x5b\x51\x58\xb2\x4d\x49\x57\x57\x28\xb1\xf2\x89\xda\x2f\xd3\x25\xbc\xc1\x0b\x2f\x51\x45\x79\x70\x98\xf6\xe6\x4c\x02\xe3\x38\xb8\x95\x78\xbe\x3e\xfa\x16\x8b\x32\xbe\x0a\xbf\x6b\xa2\x72\x1f\x90\xe3\xf0\xf5\x68\x6d\x93\xa4\x09\x4f\x03\x50\xde\xe3\x1b\x35\x7c\x17\xec\x88\x04\xfa\xd2\xd8\xfd\x30\x9f\xed\xde\x47\x3c\xd0\xd7\xeb\xa7\x91\x18\x7c\x93\xa1\xba\x98\x1e\x6f\x7f\x20\x9b\x9d\xbb\xc4\x5c\x39\xfa\xc6\x3c\xc9\xdf\x71\xe5\xb0\x21\xfa\x86\xb6\x23\xac\x92\x8a\x98\xa6\xe5\xc3\x73\x0a\x16\x92\x9a\x35\x5c\xc1\x8e\xc3\x8b\x78\x73\xef\x95\x5a\x15\xcc\x42\x5f\x70\xfb\x1f\xdd\x23\x43\x86\xe0\x79\x96\xa2\x87\x3a\xb2\xbf\x06\x39\x3e\x15\x9a\xde\x23\xea\xfd\x94\xb6\x22\x8e\xbb\xfd\x66\x2b\x3c\x6a\xd4\x05\xa7\xe7\xa9\x81\x92\xb5\x2a\x14\x27\xa3\xb7\xe7\xc9\x23\x45\xc3\xc0\xaf\xd3\x1a\x8e\xbf\xeb\x6f\x9d\xa4\xd1\xa6\x0d\x6a\x22\x21\x11\x67\xac\xd6\x7a\x33\x93\x85\x3e\x4a\xcd\x23\x72\x4b\xfb\x6a\x85\x22\x75\x71\x42\xeb\x3a\xf2\xe2\x60\x65\x68\x6b\x23\x21\x88\x98\x3f\xaa\x9d\x1d\x8b\xc5\x45\xb5\x18\x7b\x44\xa7\xdf\xe2\x9f\x23\xf4\x3c\x60\x66\x70\x0f\x60\xe3\xb9\x43\xca\xc7\xae\x54\x40\x3a\x12\x8e\xe7\x82\x5d\x5c\xe4\xf2\x4e\x4a\x6b\x37\xb4\x02\x40\xc6\x68\x3c\x5d\x5a\x6e\x10\x1a\xfa\x29\x98\xd0\x98\x7f\x89\x02\xb0\x91\xab\xbc\xf8\x8f\xfe\xee\x70\x16\xb0\x6f\xda\xd8\xb4\xb1\x57\x24\x5e\x35\xf4\x6d\x1c\xa8\x60\x87\xfc\x3b\xeb\xf4\xfa\xd3\x77\x88\x7b\x31\x7e\x95\xd1\xf1\x82\xba\x2d\x81\x61\x1b\x2c\x31\x14\x99\x7d\x06\x7a\x1c\xf1\x83\x2e\x96\xa2\x8f\x1b\xb2\x59\xac\x61\xe6\x95\x31\x03\x84\xe3\xd8\xd3\xba\x69\x86\x9f\xd8\x00\x46\xf3\x64\x3a\x60\x88\x80\x57\xf3\x09\x8d\x79\xe2\x05\x0c\x0b\xae\x4e\xfe\x85\x61\x1a\x6e\x94\xa1\xf8\xbe\x72\xa0\x30\x2c\xac\xfe\x55\xb3\x61\xf4\xe2\x7e\x2b\xb0\xb1\x83\x7d\xbe\xe2\xbe\x6f\x84\x8c\x9f\xc2\x09\x2d\xca\x1d\x90\x5a\xd2\xa4\xd5\xa5\xf4\xa8\x26\x0d\xe4\x07\x84\x15\x2b\x8c\x60\x61\x64\x1f\x3d\xaf\x49\x8c\x27\x69\x10\xb8\x85\x65\x39\xc1\x70\xf9\x02\xf1\x50\x5d\xc2\xbd\x48\xb5\x58\x8a\xc6\x0c\xd2\xea\xfa\x10\x31\x4b\xec\xeb\x4f\xbd\xac\xf8\x20\xc4\x3f\xef\x8a\xc3\x5a\xa3\xe4\x20\xaf\x26\x25\x6c\xaf\x54\x3c\x61\x4c\x86\xbb\x8a\xa5\xa8\x77\x86\x16\x05\xb1\x43\xb0\x44\x9f\x05\x3b\x5b\x35\x85\x5d\x01\xe8\x37\x36\xed\xd1\x9b\x36\xc4\x52\x21\xf9\xdc\xdc\x31\xfd\x15\xe9\x1d\xd0\xef\xcc\xbf\xad\x49\x7d\xd5\x19\x2e\xfa\xa6\x8d\xad\xd0\x49\x64\x5f\x72\xbf\xec\xc3\xc3\xde\x84\xf1\x1d\x13\xe3\x2a\xa5\x8f\xb2\xf8\x8a\xbf\x3b\x4f\xc2\xf5\x55\x23\x94\xf6\xd8\x25\x4e\xab\x6b\xfc\x0b\xdb\x34\x89\x0e\x07\x9b\x01\x4b\xe5\x34\x7b\xf3\x73\x02\xbd\xa5\x99\x3a\x85\x03\x9e\x5f\x58\xcc\xb3\xd8\x84\xe9\xd3\x6f\x81\xff\xb0\x70\xd9\x58\x2d\xed\xf9\x7c\x95\x7f\x31\x09\xea\x2b\xe6\xeb\xea\x46\x01\xb1\x00\xb9\x13\xe7\xdd\x77\xb4\x99\x68\x8d\xfa\xb4\x41\xc5\x35\x8c\x1b\xe4\xfa\x32\xb9\x29\x42\x9e\x07\xaa\xb0\x2a\x66\xeb\xcd\x0e\x9d\x8b\x60\xda\x49\x28\x58\x1c\xf1\xce\x75\x31\x74\x7f\x30\xbe\xd2\x66\x74\xdc\xb7\x90\xfb\x10\x7d\x29\x92\x1a\x3e\x00\xa7\xea\xf7\x94\x54\xda\x72\x50\xad\xa5\x45\xcd\x1f\x18\xcd\x27\x69\x77\xda\xd8\xf1\xc1\x63\x59\x82\x8e\x87\x9e\x49\x37\x98\x56\xb5\xe5\x9f\x16\x3a\x94\xe2\x04\xac\xa7\x8b\xa5\xe8\xc1\x13\x3a\xba\x9f\x59\xd8\xe3\xc2\x57\xb2\x6a\xdb\xb4\x29\xdb\x84\x99\xbe\x79\x51\xcd\x93\x95\x17\x74\x6f\x50\x07\x1c\x3e\xf9\xd6\x19\xd0\x38\xbb\xca\xf2\x34\x51\x54\xe3\x59\xaa\x37\xff\xeb\x13\x0a\xe3\xd0\xa6\x1e\x2e\xfa\x38\xee\x91\x8c\x97\x67\xca\x77\x11\xd8\x18\x05\x30\x0b\x96\xb3\xfc\x5d\x9a\xdc\xc9\xd4\x69\xbc\xe8\xa0\x4e\x2a\x66\x65\x9d\xd6\xf2\x4b\xdc\x4d\x88\x3b\xb2\x7a\xa5\x4e\xc6\x8f\x93\x96\x28\xa5\x76\x2e\xc8\x48\xdd\x30\x61\x19\xff\xe1\x3d\xba\x23\xa4\x5b\x47\xa4\x9a\x28\x60\x1f\x3d\xa4\x69\x76\x39\x18\xf9\x21\x13\x7e\xb6\x85\x31\x85\x01\xca\x0a\xd3\xe5\x58\x95\x77\xb9\x25\x62\x71\x5e\xb3\x4a\xb0\xd7\x6a\x64\xfd\xea\x7e\x81\x95\x08\x99\x4b\x09\xc0\x99\xf3\x03\x5e\xd6\x2a\x0e\x22\xa4\xc6\x73\xc7\x0f\x6a\xa8\xeb\x49\xc2\xe7\xfb\xeb\xdb\xe5\xc3\x2c\x3a\xc8\xab\x86\xa8\xaa\xea\xbc\xfd\xe4\x94\x52\x44\x3b\x38\x91\xd5\xcf\x5f\xa7\xad\x46\xbb\x90\xa3\x08\x75\xdc\xda\xd0\x55\xfc\x18\x38\x92\xf2\x17\xfe\x7a\x8b\xdf\x73\x05\x7b\xe2\xdd\x44\xff\xa3\x4d\x19\xcb\xd8\x17\xf6\xb9\xf9\x03\xdb\xb3\x8b\x74\xe2\x71\x73\x52\x80\x54\x24\x5d\xd2\x0d\xfb\x15\x91\x29\x88\x41\xa5\xde\xc2\x3d\x7d\x54\xee\x1f\x66\x42\x4b\x6d\xe9\x18\x45\xa2\x3b\x24\x71\xf8\x68\xc9\xf4\xa3\x0f\xea\xf4\xa9\x32\x0a\x44\x7e\xcb\x4d\x1d\x23\x87\x6d\xa1\x87\x1a\x5c\xa4\x8a\xff\xce\xf5\xbb\xe4\x38\xa8\x03\xec\x39\x8d\x99\xa9\xfc\x45\x99\xd1\xcc\x1a\xff\x7e\x55\x89\x2e\x04\xf7\x8c\xa4\xa5\x68\x5e\xa6\x15\xbd\xa1\x67\x21\x61\x8d\xb6\xf8\xf1\x51\xda\x13\x09\x30\x8b\x9b\x28\xcc\xa0\x30\x16\x2b\x9f\x60\x9a\xbe\x59\x74\x11\xe3\x52\x78\xf0\x42\xfe\xbc\x6a\x98\x88\x50\x56\x17\xf2\x48\x13\xd9\x99\x20\x92\x9f\xa6\x9d\xee\x30\x3e\xf8\x66\x53\x28\x20\xbf\x71\x85\xac\x66\xe1\x18\x7e\xec\x4d\x0d\x98\xe7\x50\xd8\x41\x14\x4b\xd1\x13\x12\x39\x4d\x3b\x60\x7b\xf9\xfc\xe3\xf2\x80\x79\xb8\xee\xf7\xa0\x06\x2a\x96\xa2\xcd\xab\x55\x21\xd8\x64\x39\x2f\xd4\x20\x3e\x3b\x52\xed\x6d\x2d\x71\x24\x4b\x47\xb5\x93\x13\x37\xf3\x7c\x6b\xfe\xec\xa0\x16\xb9\xbd\x10\x84\x6b\xc4\xd2\xe4\xdf\xc7\xb4\xb8\x5b\xa7\xb6\xde\x3c\xaf\xee\xd5\x98\x70\x75\xc4\x48\x9c\x3b\xc4\x42\xa7\xa9\x6d\x9a\xa6\xdc\x32\x29\x49\xd7\x0f\x2e\x53\xac\x38\x11\x0b\x5c\x1a\x82\x36\x77\xee\xac\x23\x60\x7a\x71\x26\x86\xe2\x31\xfe\xa8\x4b\xcf\x6a\x1d\x45\x40\x85\xb1\x46\x6f\xce\x5f\x9d\xd1\xc7\x60\x61\x3d\x91\x5c\xbe\x6a\xb5\xd0\xda\x22\x9e\xa0\x7b\xe4\xbe\x32\x43\x50\xe7\xb1\x03\x65\x77\x5c\x9c\xac\x39\x31\x4c\x2b\x1d\x80\x44\x2c\x82\xdb\xe6\x31\xfa\x9f\x3a\x70\x46\x84\x80\xf2\x9a\xbe\xed\xad\x41\x13\xc6\x38\xb7\x1d\x4a\x6b\x9e\x1e\x98\xef\x0d\x78\x35\x7b\x66\x8b\x65\xca\x84\x6e\x68\xf4\x2d\xcd\x8b\x0c\x95\x61\xc7\x94\x1e\xd6\xf7\xb5\x0d\x94\xce\xee\x28\xe9\xf9\x1f\x7e\xaf\x9f\xa8\xf8\x7d\x62\x71\x4f\x1b\xb7\x6f\x7a\x96\x8a\x7c\x00\xf3\xf5\xd1\x8a\xfb\x0d\xf7\xe0\x82\x2e\xef\xb7\xdd\xaa\x85\x56\x83\xf8\x17\xa3\x9b\x4d\x58\x78\x93\xde\x3f\x7a\x81\x8f\x1b\x7e\x0d\x35\x2f\x32\x5f\x8c\xfe\xb5\x5d\xb7\x6d\xf4\xa5\x6d\x23\x0c\xf8\x2e\x6d\xcb\x9e\x3a\x17\x77\x13\x53\xa9\x2a\x72\x4f\xaf\xe4\x95\x01\xad\x63\x0f\x24\xa4\x1e\xdb\xa6\x8e\x5b\x1c\xd8\xa2\x9c\x39\xc1\xeb\x1e\x07\x34\x3b\x4a\xbd\xb9\x4b\x34\x86\x3a\xad\x54\x30\xeb\x10\x44\xf0\xa7\x76\xf0\xbf\x3d\x37\xf4\xb8\x04\xfe\x40\x8d\x1a\xdd\x45\x1c\x07\x37\xe3\x7b\x21\xab\x97\xc2\x88\x7e\xa2\x24\x0c\x08\x67\x04\xe5\x0f\xda\x72\x96\x15\x7a\xa0\xa1\x47\x82\x16\x18\x49\xee\x07\x33\xaf\xd5\xea\x9e\x06\x4c\xc9\xd4\xd8\xb6\x61\xae\x3c\xb5\x41\xe8\x9b\xc8\xa1\xd4\x47\xa0\x3a\x71\x2c\x5b\x44\x78\xe5\x8b\x16\x11\xc6\xbd\x3b\xb3\x19\x3d\x60\xd8\xc5\x9e\xa5\x5a\x58\x5d\xbb\x47\x05\x1d\x11\xa1\xf5\x68\x6f\xd4\xaa\x3e\x16\x40\x33\xc3\xca\x50\x87\xe1\xa1\x1a\xf2\x95\xdb\xea\x97\x91\x13\xb7\x29\x89\x0d\xc9\x7f\xbf\xa5\xe9\x3e\x22\xaf\x26\x7f\x71\x38\x5c\x57\x59\xf0\x7c\xec\x34\x13\x0a\xf2\xa4\xc7\xb3\x89\xd7\x22\x62\xd2\x64\xfc\xe3\x8e\x44\x17\xc0\x75\xe3\x6e\x8d\x6b\x63\x4f\x79\x4b\x71\xe6\x56\x7a\xa1\xb8\x13\x1a\x29\xbf\xe2\xc4\xf1\x9c\x43\xd8\x9b\xab\xac\x51\x01\xde\x75\xca\x82\x64\x02\xb8\x7f\xde\x55\x7a\xad\xed\xa6\x96\x31\xb9\x05\x5b\x64\xe7\xeb\xd7\xe3\xc6\x50\x28\x13\xcc\xec\xa3\xb5\x17\xd2\xa3\xbe\x37\x77\xdb\x7b\x57\x48\x9d\x6d\x88\xba\x73\xfb\xf1\xdc\x31\x9b\x76\xc7\x3f\x40\x83\x85\x7c\xfe\x8c\x54\x9e\x46\x15\xfd\x0a\xbd\xda\x7e\xb9\xe8\x56\x41\x34\xe2\x19\x81\xb4\xf5\x29\x62\x7c\x20\xd6\x9b\xbb\xe3\x82\xa6\x7f\x48\x3c\x9c\x42\x2e\x6f\x1f\xa1\xf1\x5c\x91\xcb\x05\x11\xa2\xc9\x8b\x24\x1f\x20\x90\x70\x9d\xe8\xab\xfd\xf8\x6f\x2c\x63\x98\x4e\xf4\xbb\xed\x3a\xfd\xa7\x9b\xd4\xf1\x7c\x9b\x3b\x59\x8b\xe0\xbe\xf5\x71\xfe\xb9\x6c\xea\x38\x98\x6b\xbc\x16\xdc\x97\x15\xd3\x72\xbf\x26\x08\x96\x17\xde\x54\x02\x10\x4d\xf9\xfb\xf9\xd7\x37\xe9\x00\x82\x00\x99\x35\x31\x54\x8f\xb6\xef\xbc\x21\xfb\xc4\x43\xdf\x27\x29\x17\x3d\x5b\xf6\x5d\x78\x4d\x21\x52\x11\x6e\x30\xbd\x62\xbd\x96\x9b\x18\xf1\x4c\x52\x47\x5c\xec\xab\x10\x32\xf9\xa1\xb0\x5b\x0f\x9a\x22\x5f\x4e\x5c\xc9\x9f\xc5\x0d\x53\x40\x2d\xc3\xb8\x42\x73\xe2\xaf\x32\x8c\x85\x20\x71\xf4\xbd\xc3\xda\xbc\x23\x6e\x65\xba\x88\x8f\x13\xd2\xab\x39\x7b\xb8\xfe\x19\x1a\xc4\xc1\x55\x2c\x2e\x82\xb1\xe3\x4c\x32\x80\xb1\x30\x03\x05\x21\xe8\x19\xf7\x09\x5b\xc7\x05\xaa\x04\x46\xee\xb6\x4d\xd7\xe9\xd9\xd6\xe7\xd0\x45\x95\x4a\xf8\xd5\x4d\xb2\x7b\x69\x60\x9f\x03\x7b\x0f\xbf\xab\xfb\x24\x99\x35\x27\x91\xc9\xb8\x4e\x83\x62\xa2\xd0\x0f\x18\x72\x48\x02\x76\x87\xa8\x3c\x6e\x92\x32\x63\xe5\x30\xe4\xde\xdc\x5d\xda\x8f\x6d\x52\x56\x4b\xc7\x55\xcf\x2e\xd0\x0c\xa1\x28\x83\x62\x18\x3e\xd0\xf7\x8f\xf3\xc7\x7c\x87\xe3\xd3\x62\x29\x22\x83\xae\x54\x38\x50\x0e\xf2\x8a\x01\x2d\xfa\xe0\x29\x6a\x90\xb1\x09\x03\x15\xa6\xb1\x07\xa6\x71\x46\xdc\x3c\x12\x17\x01\x71\x93\xcc\x4b\x84\x45\xef\x25\x57\x0e\x73\x00\x4e\x36\x5a\xfe\xcb\x13\xd7\x68\xef\x11\x79\x96\x0b\x6f\x8c\x8f\x05\x0b\xcd\xbe\x6a\x44\x06\x51\xcd\x44\x7c\xe3\x29\xfe\x09\x26\xf1\x12\x85\x3c\x30\x28\x03\xfa\xe7\x38\xed\xfc\x67\x66\x68\x46\x27\x71\x34\x56\x04\x6c\x0b\x53\x2f\x95\xf5\x76\x17\x76\xcb\x0e\xdf\x55\xcc\xaa\xab\x33\xd8\x3a\xe1\xc8\xd0\xbf\x3b\xab\x7b\x97\x02\xa3\x30\x31\xbf\x7b\xb7\x9f\x86\xf4\xa2\x26\xb8\x1c\x23\xd6\x14\xb5\xd9\xc7\xa6\x69\xfc\x75\x40\xa0\xf3\x89\xd5\xe5\x97\xa6\xd5\x84\x03\x18\x91\xbb\x17\xdd\x15\x0d\x73\xe4\x18\xe4\x96\xf1\xf0\x55\xf3\xdf\x1c\x77\x5d\x4b\xcb\x82\x83\xac\xf5\x7b\xf4\xbb\x73\xc2\xf0\x97\x09\x88\x91\x51\x3b\x28\x87\x68\x0e\xed\x2a\x9a\x94\x8b\xd7\xfe\xe6\x8c\x16\x59\x68\x15\x25\x18\x36\xd9\x45\xdf\xd6\xcd\x5b\xf7\x3b\x2a\x8c\xd4\x90\x07\x8d\x6c\xb2\x70\xb8\x6e\x97\x7c\x49\x75\x12\x04\xa0\x4d\x07\x1f\x75\xc6\x7a\x7e\x95\x66\x63\x87\xaa\x10\xe2\x65\x1a\x59\x02\x31\x5c\x09\x1d\xa7\x29\x98\xa1\xb9\x2f\xef\x69\xcb\x94\x8f\x58\xc0\x46\x8c\xf9\x2f\xa4\x84\x6a\xcf\x13\x41\x2b\xfa\xc8\x8b\x72\xee\xd0\x20\xac\x4a\xbc\xac\x64\x5f\xe1\xb6\x17\xd2\x18\x4b\x15\x14\x67\x6f\xa1\x9f\x30\x0e\x9a\x8f\x3c\xaa\xec\x82\xbe\x78\x5e\x91\x6d\x02\xb5\xaf\x0a\xc4\xfd\x5e\xa3\xff\x5a\x05\x58\x56\x6b\xf1\x92\xcc\xfd\x4f\xf0\xb7\x50\xed\x7c\xcc\x78\xcd\x73\xad\x58\x04\x29\x96\x96\x9f\x68\x4b\xff\x0a\x93\x64\x96\x4f\xc5\xf3\x59\x44\x54\x8b\x41\x50\x6f\xfe\x5b\x9a\x91\x31\x26\x70\x93\x38\x06\xf0\xaf\xfb\xb4\x51\x23\xb4\x46\x96\x10\xce\x06\x12\xf5\x42\x7d\x2c\x2d\x24\x34\x78\xa7\xfc\xf0\x24\x85\xec\x17\xd6\x09\xb4\x5e\x90\x75\x3e\x37\xbe\x9f\xb8\x28\x6e\x1d\x01\x78\xf0\xb1\x4e\x25\xbb\x30\x44\x38\x90\x25\xfa\xc3\x62\x55\x6b\x4f\x11\xda\x04\x7d\x14\xe1\x8a\x7c\x1f\x2d\x0b\xa7\xfc\xe8\xd9\xa5\x52\xe1\x1e\x56\x1e\x73\xc6\xeb\xb4\x18\x8b\x5b\x97\x78\x82\xe9\xbd\x7e\xa8\x3a\x29\x6e\x96\x29\x3f\x37\x05\x53\xdb\x9f\x4e\x98\x3e\x7d\xba\xf8\xda\x95\x82\xe0\xcd\x21\xc0\x1a\x45\x43\x2f\x48\x34\xa6\x67\x03\x44\x75\x93\x46\x5c\x8c\x7b\x11\x11\x35\xa3\xb9\xd2\xcf\xa3\xce\xa8\x92\x19\x5e\x7c\x62\xa8\x7e\xd7\x43\x5f\xf4\xb1\x85\x3e\x73\x32\x6d\x3e\x72\xf8\xd5\xfe\xc5\x50\x3d\x37\x61\xee\xc3\xc8\x43\x4c\xb4\x63\xa2\xc2\x6d\x04\x97\x2e\xd9\xfb\xba\x5a\x70\x12\x58\x04\x71\xa5\xf2\xf3\xe7\xc9\x66\xa5\x4a\x93\x28\x3a\x7f\xb3\xe6\xdb\x4f\x3d\x4b\xb4\x05\x12\xed\xf4\x9d\x45\xd9\xa8\xe5\x12\xdf\x17\x9b\xb6\xdc\x3c\xc5\x94\x61\xc2\x2d\x42\x2f\xa2\xd7\x38\x7e\x5a\x15\xbb\xf5\x48\x40\xcb\xc0\x7b\x18\xb6\x4e\x99\x39\x57\xe2\xcf\xf5\xf5\xe7\x15\x75\x53\x98\x37\x2b\xbf\x79\xf6\x53\x1a\xe7\x2e\x4e\xd5\xbc\xe0\x80\x06\x63\xda\x39\x8d\x5c\x93\x9a\xb9\x9c\xd8\x92\x96\x7f\x26\x0d\x8b\xa5\xe8\xaa\xa3\x0a\x88\xae\x59\xe6\x04\x88\x73\x9a\x5e\x5c\xd9\x09\xbd\xc0\x69\x8a\xba\xb7\x67\x90\xe2\xbb\x40\x58\x5c\xb1\x16\x4b\xd1\x94\x29\x3c\xb2\x06\xc8\xa9\xf1\xc8\xda\x67\x8c\x50\xc8\x22\x8e\x43\xe2\x9e\x56\x06\x98\x51\xb7\x65\xfa\xe0\xf8\xc9\x71\xc0\xb1\xf1\x89\xe5\x59\x5e\xef\x24\xe1\xc3\x99\x3b\x73\x99\xee\x37\x45\xcc\x1a\x96\x50\x8e\xa1\x0f\x68\x82\x40\x88\x51\x4d\x73\x7d\x9f\x60\x16\xc5\x55\x26\xd7\x78\xfb\xda\x5a\x6d\xaa\xd6\x31\x55\x40\x42\xfd\x31\xba\xb4\x37\x2f\x60\x54\x82\xfa\x96\x77\x75\x12\x3f\x4b\x16\x14\xdf\xdb\x21\x65\xfc\x3b\xc3\x06\xf6\x54\x47\xff\xdc\xcd\x8b\x6f\xd0\x7a\x8a\x2a\x09\x90\x73\x31\xe4\x89\xf1\x6f\xcb\x34\xb3\x1f\x44\xbc\xc4\xfb\x9f\x3c\x24\x4d\x5e\xa0\xc3\x98\xf0\x84\x9a\xcc\xca\x65\x51\x29\xe6\x7e\xba\x41\x82\x3a\xa7\xc1\x49\xbc\xbc\x47\xae\x05\xcb\x18\x86\x69\xe5\xdd\xf2\x6c\x90\xf8\x95\x0e\x9e\xa3\x1d\x70\x14\x98\x02\x1c\x9d\xfb\xf4\xc2\x44\x08\x3a\x2e\xdc\xb8\xe3\xa0\x31\x5a\x97\x29\x63\x98\x4f\xc5\xa3\x49\xa7\x05\x2c\xbf\x81\x59\x27\x15\x46\xb1\x8f\x5d\x50\x40\x35\xa4\x01\x42\x03\xb9\x9f\x6f\x97\x4d\x12\xad\x88\x7d\x51\x69\x3c\x2f\x32\x13\x5e\x19\x7f\x7b\x5f\x78\x4b\xff\x7c\x15\xd2\x44\xbc\x6c\xf8\xcb\xcb\x7a\x49\x4d\x5d\x0a\xe3\x20\xd8\x35\xff\xe8\x29\x11\xdd\x42\xb7\x1e\x3f\xb8\x5f\x68\x5b\xac\x38\x2a\xb9\x61\x32\x3d\x89\x9f\xce\xe5\x75\xfe\x0d\x96\xa0\xd0\x12\x7e\x7c\x51\xcf\xab\x32\x9e\x4f\x9c\x36\xb5\x38\xfe\x96\x09\x13\x8a\xa5\xe8\xf7\x91\xbc\x53\x4d\x64\x53\xd8\xcc\x7e\x73\xed\x10\x25\x1b\x5b\x98\x06\xa8\xce\x07\xc5\x3f\x56\x0c\x46\x2d\x5c\x8e\x9f\xfc\xc6\x7d\x3a\xad\x09\x57\x69\x02\x8b\xec\xcd\xff\x7a\x38\x87\x8c\x2c\x42\xac\xa6\x6a\x7d\x9f\xd6\xb7\xef\x18\x14\x7f\x78\x50\x8a\x1a\x8f\x0e\x10\x81\xc7\x41\xa6\x4d\x38\x06\xef\xcc\xd3\xe9\x7a\x17\x7c\x28\x05\x86\xe8\xd9\x27\xb3\x0d\xbb\xd4\xe7\x4c\x26\x6e\xf3\x2c\x4d\x20\x90\x9a\x35\x1c\x14\x7d\x61\xbc\x1d\x7f\xb1\x15\x12\x4b\x11\xc0\x2e\x7a\xdf\xc3\x6d\xda\x0b\x6b\x42\xb2\xd8\x6b\x89\xaa\xcc\x41\x1e\x10\xa8\x8d\x6b\x9e\x4e\xd3\x47\x95\x2a\x2c\x3e\xe3\xd3\x5b\xb3\x3b\xa3\x64\x1a\x74\x51\xb1\xb4\x09\xf3\xb2\xf7\x0c\x77\x9b\x36\x98\x0c\xc0\xf0\x24\x5b\x25\xfc\xfb\x65\x0a\xa4\x42\x95\xd0\xba\xf9\xa0\xac\x7a\xdc\xd0\x09\x48\x1d\x31\x6e\x0c\xf1\x58\x7b\x56\xed\x96\xba\x15\x88\x85\xbd\xc6\xd7\xd6\x09\xa8\x3c\xf2\x4c\xbe\x31\xfa\xaf\x49\xfc\xc0\xcd\xc7\x5d\xb0\xb8\xce\x5f\xb3\x4f\x97\x45\x13\xce\x98\x3c\x2f\x2d\x1a\x24\x91\xb3\x01\x6d\xdd\x86\xd9\x12\x69\xeb\xc4\xad\xf7\xca\xe7\x14\x7e\x5c\xdd\x0f\x10\xff\x20\x47\x5f\x57\xac\xcf\x49\xe0\xf0\xd9\xd0\x2b\xda\x7e\x92\x86\x01\x43\xd5\x74\x5e\xf2\x21\xdd\x58\x90\x7a\x38\x21\x65\x7c\x51\x51\x6e\x41\x65\xca\x52\x00\xd1\x0b\xfb\xb5\xcb\x4f\xac\x64\x27\x98\xdb\xbf\x55\xdb\x69\x52\x87\x98\xcd\x64\xbe\xba\x66\x86\x34\x42\x9c\x08\x94\x89\xe3\xe7\x25\x6d\xaf\x45\x9a\xbc\xb7\x70\xf9\x7c\x45\xb4\xd0\xc6\x66\x2d\x04\x4e\xa9\x31\x57\x88\xfa\xa2\xb8\xf1\x4d\x08\x41\xd3\x84\x26\x6c\xc0\x90\xe7\x57\x30\x83\xb6\x35\xea\x7c\x71\x94\x16\xaa\xa8\x5b\xf7\x5b\x52\xfc\xf3\x47\x32\xa2\x18\x0b\x17\x2e\xba\x11\x2a\x04\xb5\x07\x28\xb0\xc3\xba\x02\x63\x7c\xe9\xfc\xa4\xb1\x9e\x56\x10\x89\x91\x91\x3a\x4c\x33\x0b\x2b\xc7\x8d\xbc\x58\xa7\xd2\xa1\x36\x2a\xff\xef\xa0\x2c\xf5\xbb\x18\x4e\x5c\x73\x7a\xf3\x4b\x0b\x83\xd4\x43\x07\x65\x78\xa9\x37\x5f\x5a\xad\xc7\x5e\x24\xe4\xa4\xa2\xb1\x0d\xdd\x1f\xbc\xce\x2d\x0e\x2e\xb6\x66\x5d\xf0\xe6\x00\x55\x63\xa8\x0a\xfb\xad\x09\x33\xb5\x39\x28\xf5\x4d\xce\x7e\x17\x71\xf0\xb9\xbe\xe2\x2b\x02\xa3\x29\xfa\xe7\x36\x1d\x36\xeb\x55\x93\x8a\xab\x90\x3b\x21\x8f\xae\x17\xdf\xfe\x6f\x71\xb8\x7d\xfc\x17\x17\x2d\x5e\xd4\xb2\x71\xfe\xcd\xee\xc4\x31\xd0\x0b\x58\x56\xd3\xf4\x4b\xe7\xa5\xfc\x4b\xd9\x57\x5a\xaf\xbb\x87\x72\x9e\xc9\x12\x87\xd6\x33\xff\x24\xb7\x51\xab\x78\xdd\xd0\xb4\x45\x91\x7c\x5b\x45\xf2\xa3\x50\x8b\x20\x7e\xaf\xad\xaa\x7f\x3b\xb8\x2a\xb1\x73\xb7\x06\x9a\x9c\x18\x66\x24\x40\xd5\x64\xa3\xff\x6f\x6b\xb5\x79\x79\x00\x98\xee\xb4\xc1\xf8\x50\x5d\xbe\xd1\xc9\xe3\xd3\xb9\x60\x47\xa4\x62\xbd\xb1\x69\xe3\x80\x87\xec\x91\x13\x15\xd8\x29\x62\xf1\x23\xfc\xfb\x36\x09\xc1\xab\x84\x1e\x52\xda\xd0\xdc\xfd\x1b\x95\xe5\x64\x6a\xd9\x3f\x56\x22\x98\x98\xf2\xe4\xf2\x7f\x5e\xa1\x58\xd9\x61\x13\x44\xbd\xc0\x82\xb3\x4d\x03\xbc\x23\x17\x69\x97\x65\xf5\xe2\x41\x49\x1b\xa6\x48\xbd\xe5\xd6\x8c\xd6\x94\x35\x2b\x15\xa9\x13\x96\x6f\x17\x78\xac\x79\x04\xd8\xe2\xdd\x13\xaf\xf7\x24\x36\x88\x80\xc3\x4b\xa3\x35\x04\xe4\x87\x18\x2d\x65\x22\x17\x27\x99\x67\xe9\xad\x02\xad\x87\x8e\x9f\x80\x43\x7a\x0b\x4b\x1e\x51\x44\xc6\x49\x1c\xd0\x91\x87\x61\x79\x03\x77\xf3\x81\xa7\x35\xb3\x0a\xd0\x01\x4f\x1a\xd1\x2f\x18\x32\xe1\x97\x19\xf2\xc4\xe6\xca\xd8\xda\x23\x19\x23\x0d\xea\x07\xb4\xc6\xc3\x8d\x43\xe3\x6c\x3e\x6e\xab\xd4\x16\x32\x29\xf1\x4c\xe8\x5d\xc4\x30\xa8\xb0\x42\x8b\xb6\x2e\x05\xa3\x25\x88\xb6\xef\xd4\x15\x7b\xe1\xee\x3a\x4e\xa4\x42\x4e\x9c\x53\x3e\x07\x72\x9c\xba\x70\xfd\xf3\xe6\xca\x77\xcd\x28\x8f\xf6\xb9\x05\xb3\x15\x4e\x49\x9d\x24\xf4\x89\xfc\x0d\xb3\x25\xdc\x57\x15\x77\x33\xde\x37\x4c\x8c\xad\x50\x03\x2b\x65\x6b\x61\xde\xd0\xf4\x1f\x04\xa1\xab\x14\xc2\x3f\x9a\x24\x8f\x5f\xca\xc8\x14\x8f\xe6\x57\x2b\x95\xe3\x87\x3d\x2e\xf3\xf5\x47\x85\x6c\x08\xca\x8a\x90\xac\xee\x19\xab\xc2\xe7\x93\x1c\x56\x08\x0c\x05\x3a\x87\x2c\x62\x22\x87\xf4\xf0\x16\xe3\xfb\x8f\xe8\x89\x85\x78\xa9\xbe\x59\xfe\xfb\x87\xf5\x77\x89\xe3\x66\xb6\x83\x57\x88\x57\x6a\x7d\x3d\xf1\xa9\xac\xf7\xa2\x5f\xec\x50\x9e\x24\xf1\xc1\x14\x6b\xf4\x89\x64\x21\x47\x38\xb0\x39\xfe\x08\x2b\xba\xe5\x77\x0f\xbd\x3a\xa3\x56\xea\xa3\x6a\x2c\x7f\x68\x48\xa6\xdd\xab\x43\x45\x09\x03\x9b\x85\x57\xa4\xd3\x32\x90\x66\xb9\x7f\x1d\xbf\x07\x8b\x89\x5f\x03\x48\x68\xe1\x2a\x65\x43\x5a\xe7\xba\x3f\xa9\x9c\x6c\xbf\x43\x0a\x99\x5a\xc2\x58\xa2\xbd\x5b\x84\xfe\x8d\x17\x10\xc6\xed\xab\x0a\x6d\x6f\xa5\xc9\xd4\x75\x5a\x6f\xd2\x83\x8a\xd7\xab\x43\xca\x98\x09\xaf\x57\xe3\x87\xfb\xd3\x70\x58\x21\xfa\xe4\xbf\x37\xb7\x66\x9d\xb4\xbe\x80\x9a\x2d\xff\xdc\x7b\x19\xb7\xf5\x06\x37\x61\xef\xcd\x9d\xcc\xc8\x40\x72\x77\x4c\xa1\x60\xf3\xa1\xe7\xf4\xc1\x85\x8b\x98\xc4\x79\xf5\xe6\x9f\x93\x11\xbe\x89\x55\x58\xc3\xd7\x2e\xd5\x17\xbe\x9e\x89\xc1\x6d\x20\x19\x61\xfa\x1b\x5a\x46\xf6\x18\x70\xf0\x02\x74\xae\xd9\xaa\x58\x24\xf9\xa5\xb9\xbf\x9e\x52\xeb\x0b\x04\xfa\x80\xf1\x3f\xf9\xee\x65\xed\x2a\xea\x16\x7c\x77\xc5\x42\xfb\xb9\xe5\xc3\xa4\xbd\x45\x2b\x93\xe1\x03\x6f\xf0\xfe\xa5\x8e\x99\x19\x5f\xfd\x6a\x5c\xb2\x4d\xdc\xc7\xe3\xe5\x5d\x66\x88\x2c\xca\x92\x77\x3b\x70\x35\xcf\x5d\x94\x55\x91\x47\x7a\xa4\xe0\x44\xfe\x2f\xc7\x75\x4c\xbb\x59\xf3\x85\x3b\x80\xf1\xed\xd9\xc3\x94\xbe\xa9\x22\x2c\xd8\x52\xad\xa0\xf1\x0f\xf0\x2a\x64\xd2\xe4\x9b\x6e\xe1\x96\x48\xdd\x8f\xb7\x2b\xa1\x96\x33\x59\x01\xb5\x1d\x6d\x9b\x39\x58\x8d\x22\x0e\xd7\x35\xef\x35\xfe\x3d\xd0\x20\xfc\x0c\x77\x89\x31\x5a\xdb\xc4\xfe\x49\x91\xe3\xf2\x1e\x22\xfa\xa7\xd7\xe4\x54\xab\x0b\x39\x81\x42\xba\x8e\xde\x7f\x41\xf8\x46\xc2\xa8\x0d\x3e\xff\xb5\x23\x06\x2b\xe7\xd0\x0f\x84\x24\x9d\xf1\x2d\xcd\x58\xca\xa7\x62\xf9\x97\x5b\x3b\x46\x07\xcb\x04\x36\x5c\x6d\xe3\xe3\x89\x32\x82\x8d\xea\xdc\x59\x2d\x3f\x7e\xad\x32\x7a\x23\x66\x90\x18\xb5\xb7\xbd\xac\x23\x92\x91\x67\x89\xc5\x8b\xd1\x67\xf9\xc0\x4c\xe4\xe1\x46\xb2\x37\x2f\x1f\xae\x28\x69\x51\x5a\x73\x9a\x19\x83\xf3\xc2\xd5\x9e\x66\x85\x82\xe3\x1f\x91\x90\x38\x73\xb5\xb7\x14\xa7\x73\xc4\x43\x7a\x74\x53\x43\xfb\x1c\xa0\xe7\x24\xc6\xa3\xbf\x9b\xa7\x12\xa5\xca\x65\x7e\x7e\x9e\x39\xa5\x4b\x81\x60\x17\xc0\x2b\x7c\x29\xf5\xd3\x7e\xf2\xd7\x4c\x9c\x22\xaa\x8a\xfc\x98\x45\x0a\x60\x0c\x3b\x01\xac\x71\x87\x3c\x25\x43\x04\x09\xf4\xca\xa7\xac\x0c\x6b\xea\xa1\xa7\x90\xed\x4f\xbc\xcd\xdd\xe9\xa6\x4d\x8e\xff\x57\xcf\x11\x45\x60\xc4\x22\x54\x28\x07\xbe\xdd\xae\xcc\xbc\x4c\x33\x74\xf8\x2e\x21\xf7\xdf\x2f\xe8\x83\x0d\x58\x19\x40\xde\xfb\xb7\xdd\xa9\x4a\x8d\xa3\x8a\x81\x9d\x7d\xa6\xaf\xe8\x70\xf8\x50\xf2\x95\x36\x7e\xaf\x6c\x8c\x2c\x80\x98\xc1\x03\x5e\xa9\x59\x2f\x75\x51\xe6\x58\xc9\x04\xec\xf6\x15\x32\xb0\xd7\x1d\x8c\x20\xd6\x3d\xa6\x99\x99\x37\x08\x13\x22\xd5\xbc\x4a\xb9\xfc\x80\xfe\xa8\x83\x80\x4f\x69\xf9\x38\xe1\xf3\xc7\x06\x2b\x9c\xbd\x2a\x71\x08\x67\xf6\x3b\xbb\xb2\xce\x86\x82\x3e\xd5\x9b\x1f\xfe\x84\x86\xfb\x61\xe8\xc6\xd6\x36\x2f\x7f\xef\x88\x81\xa2\x12\x4b\xc9\x28\xa5\xe8\x0f\x62\x7b\x70\xcf\xec\xfb\x97\xdc\x7f\xef\x3d\x49\xdc\xb8\xe6\xb6\x54\xb9\x94\xd3\x7a\xd2\xb1\xc0\xde\x11\xb2\x60\xf4\x51\x05\x12\xd0\xc8\x6e\x7d\x54\x00\xcb\x48\xd1\xb4\x18\x9f\x18\x96\x0d\xcc\xc4\xab\x10\x27\x00\xf2\x2c\x2f\x96\x0f\x5d\x22\x4f\x17\x57\x50\x03\xbd\xb0\x3e\xda\x73\x4a\x61\xa8\x30\x33\x38\x3f\xf1\xca\xd6\x17\xc3\x41\xbb\xaf\xf7\x6d\x91\x11\xab\x10\xe6\x26\x1b\xd6\xcf\x6c\x14\xf1\x05\xf9\x7e\xa2\x51\xff\x8d\xbe\x83\x44\x66\x35\x6d\xe2\xe1\x62\x35\x04\x24\xd0\x56\xdd\x5e\x33\x2e\x2f\x9a\x1c\x5e\x11\x1d\xdd\x2d\x6f\x74\x27\xae\x73\x19\xc2\xfc\xe1\xd5\xd9\xcb\x67\xd3\x00\x3b\x89\x65\xed\xf9\xb9\xfd\x15\x9e\x30\xf0\x4c\xf3\x37\x69\x0b\x5b\x93\x7a\x16\x76\x53\x63\xdd\x1f\xed\xcb\x36\x78\x35\x8c\x3d\xe4\x09\xce\x61\x52\x97\xff\x6a\x8f\xce\xac\xe1\xe6\x67\xf1\x17\x16\xa0\xd5\x6d\x63\xd2\xe1\x34\xf5\x52\x21\xfd\xcb\x36\xa6\x99\xb7\x06\x08\xee\xf9\x23\x14\xa1\x5b\x87\xd4\xeb\x10\x51\x66\xee\x4b\xd0\x49\x89\x89\x5e\xfc\xc9\xaf\x55\x38\x97\xc4\xeb\x0c\x79\x3b\x3c\x49\x1b\x18\xdb\x98\x25\x6e\x0d\x85\xcd\xd9\x41\xa8\x47\x90\xe3\x68\x5a\x0e\xfd\xdf\xd0\x96\x28\xb4\x41\x30\x57\x80\x13\xfb\xf3\x3f\xdf\x94\x3d\x4f\x45\x0c\x7e\x73\x29\x06\xed\xce\x99\x57\x29\xb4\x18\x82\xe3\x9a\x9f\x78\x45\x07\x75\x15\x4b\xd1\xf4\x9b\xa4\x7a\x08\xaa\xd7\x11\xc3\x2d\x90\xf1\x7c\xf5\x19\xbd\x8a\x6e\x90\x84\x5f\xf6\xb5\x11\xe9\xfa\xa8\x49\x59\x56\x7d\x67\x56\xb6\x37\x76\x9a\xd4\xf3\x10\xf1\xe1\xb3\xeb\x9d\xe8\xf2\x85\x32\x87\x34\xe2\x62\x11\x50\x88\xd1\x0f\x86\x5e\xad\x8c\x44\x5a\xf6\x4f\xb9\xeb\xde\xd3\x97\x2c\x53\x27\x0b\x9b\xcb\xf1\x4a\x65\x4e\x4d\x92\xec\x87\x4f\x5e\xaa\x72\xe8\x1a\xd8\xa1\xfc\x95\xbe\x3d\x5c\xd6\x9a\x7e\x1d\xa3\x9a\x24\x55\x16\x3e\xab\xec\x06\xe3\x52\xc7\xe5\xcc\xaa\x68\xf5\x61\x85\x14\x86\x31\x97\x02\xfd\xe0\x21\xb9\xcc\xb1\x81\x27\x36\x78\x8f\xc2\x3a\x4e\x85\xd2\x79\x25\xb8\x5c\x49\x83\x2e\xb5\x85\x76\xe7\x3f\x6c\x1a\x98\x9d\x50\xdd\xbd\xe8\xae\xe8\xaf\xed\xfc\xd0\x55\xac\xc6\xcd\xa8\xda\xb8\xb9\xec\x16\x4b\x11\xd1\x0c\x00\x2d\xc2\x01\x4f\x70\xf1\xa3\xce\x2b\x44\x6b\x2a\x04\x0c\x6f\xd6\xfa\x21\x6e\xe6\xc2\x21\xe4\x13\x2f\x5c\x21\xdd\x8c\x41\x70\x62\xe5\xc1\xec\x55\xab\x50\x97\x98\x36\x6e\x64\x34\x0a\x07\x9c\x97\xc3\x34\xa2\x2b\x9f\xf4\x1a\xdf\x51\x84\xa2\x1b\xc8\x14\x52\x2b\xb9\x7b\x96\x0e\x48\x6a\x59\x2b\x34\xa1\x0d\xee\x2d\x8c\x3b\xaa\xc3\x08\x03\x2c\x77\x23\xf9\xf7\x6b\x61\x0c\xe8\xa6\x9e\x84\xe0\x0d\x7d\x42\x1b\x5f\x06\x0e\xf2\x02\x62\x5e\x14\x2a\x92\xb3\x35\x8d\x68\x64\xa6\xd0\x19\xe3\x8b\x2f\x0e\x55\x53\x4b\x85\x51\x2f\x05\x0e\xfd\x5b\xa7\xf6\x08\xa9\x57\x4d\x8c\xd8\x77\xf7\x55\xc6\x0a\x0e\x0a\xc5\xa2\x31\xfa\xce\xab\x32\xcc\xa5\xc8\xb5\x33\x9a\x65\x09\x00\x2a\x13\xc7\xc5\x9f\x1e\x92\xf9\xde\xc6\x8c\x09\x7d\xed\xf2\xb2\xab\x94\x79\x43\x25\xb0\x33\xf3\x97\xc7\x56\x5c\x93\x29\xa9\xa8\x0e\x38\xfa\xfa\x14\x5d\x83\x24\x70\x43\x3f\x99\x15\xfe\xf8\x6d\x3e\x0c\x6a\x84\x8e\x87\x19\x82\x95\x28\x97\xd5\xc8\x75\x3e\xa7\x93\x46\x04\x44\x34\xa5\xb4\x2f\x79\x45\xb5\x22\x35\xc5\x9a\x6a\xf6\x4b\xd9\x57\x26\x58\xc6\x02\x19\x1a\xfd\xef\x81\x8b\x69\xd9\x64\x94\xf2\x0b\x2b\xd7\x48\x0c\x76\xcd\xa3\x65\x07\x85\x20\x25\x9d\xfc\xf9\x32\x0d\x97\x49\xc4\xd2\x44\x84\xd8\xb9\x73\x14\x18\x0c\xc1\x5d\xf0\x4d\xaf\x2f\x48\x54\x6e\x25\xbe\x17\xd7\x3e\xa2\xfc\x2d\x91\x70\x8d\xd1\x97\x6a\x47\x84\xb2\xd0\x4d\x88\x56\xdf\xdc\xa8\x83\xb8\x9b\x8e\x3c\x40\x0f\xbe\x2c\x2f\x45\xb9\x45\x1b\x2d\x37\x5a\x21\x17\x35\x92\x0d\x5e\xa9\xb7\x30\x6a\xb6\xb6\x4f\x05\x9f\x34\x21\xf7\x19\x6d\xb4\x15\x1d\x72\x46\x6b\xdc\x22\x78\xf0\xf3\xfc\x8e\xdf\x47\x05\x81\x22\x7f\xea\xf1\xbe\xe9\x84\xd7\x05\x82\xca\x24\x1d\xe0\x8b\x02\x5e\x60\x71\xde\xfa\x87\x2f\x55\x74\x77\xb8\xd9\x3b\x7c\x9c\x2f\x1c\xe3\xab\x90\x3b\x98\x47\x1d\x55\x0c\xdb\xd8\x2f\x83\x35\x62\x65\x12\x30\x7e\xab\xe7\x73\xe3\xee\xe2\x3c\xea\x80\xa8\x6d\x4b\x34\xd8\xb5\x86\x7f\xd8\xa5\x8c\x52\x6e\xc1\xf7\xbb\x05\xc3\x95\x5e\x1c\x36\x79\xd9\x67\xf5\x4f\xef\xca\xf7\xcf\xd5\x4c\x48\x46\x7a\xf0\xb4\xa5\x9b\xd1\x54\xe5\x7b\x58\x78\x62\x80\x1a\xd4\x81\xe1\xf7\xab\xb5\x9a\xe5\x88\x0d\xa6\x3e\x19\xad\xcd\xdb\x3b\xe5\x2f\xad\xe3\xd0\x69\x20\x3f\x28\x96\xe3\xac\xca\xa9\xb7\xa7\x4f\xb6\x6c\xc0\x1a\x24\x65\xe8\xe5\x2f\xd9\xac\xda\xe6\x84\x3e\x8f\x02\x6b\x6e\x52\x9d\x07\x18\xec\x7c\xe0\x56\xa3\x48\xd6\x90\x28\x04\xae\xeb\x0b\xf3\x86\x28\xc3\x29\x1b\x85\x7e\x02\x66\xfe\xe1\xab\x8a\x2f\x9c\xa2\xfb\x0a\x5d\xf4\xda\xc5\x7c\xd2\xd1\xc5\x05\x95\x72\x1a\x81\xdf\x16\x0e\xf1\x22\x43\x0e\x1b\xa1\x84\x66\x8f\x04\xad\x8c\xa4\x2b\x0a\x8a\x35\x67\xe8\xe0\xa6\x0b\x58\xac\xc2\x6c\xa1\x05\x6c\x81\x15\x56\x19\x36\x36\x83\xb6\xeb\x2a\xea\x1e\xa0\xb9\x13\xf4\x58\x5c\x47\x2f\x78\x5b\x9b\xa4\xb3\xd0\xac\x89\x90\x77\x50\x72\xc3\x26\x40\xd3\x93\x0f\x34\x39\x47\x01\xfd\x4b\xbc\x27\x76\xac\x4f\xff\x41\x17\x47\xb4\x76\x1a\x5a\xab\x01\x70\xd5\x14\x6f\x6a\xfc\x7e\x44\xfa\x2f\x9c\xf8\x69\x46\xba\x4b\x8a\x5f\xa7\x02\xf7\xd0\x9b\x27\xcb\x14\x10\xa3\xc5\xa7\x91\xd1\x17\xc6\x6b\x3e\x71\x0e\x22\xae\x2f\x6c\xe9\x57\xf1\xc3\x6d\x87\x5e\x95\xef\xa1\xbe\xa1\x6b\x9f\x94\x69\x18\x70\x4f\xf4\xde\xdc\x05\x2d\xf8\x75\xe2\x00\x33\x91\xab\x92\xe0\xe6\x8d\xcc\x8e\x62\x6f\x99\x2c\xc2\xda\xff\x79\xa2\x5d\xa5\x3a\xcb\x09\x63\x74\x7b\x43\xce\x2a\xaa\x8c\xfa\xbe\x9b\xd9\xb8\xed\x9d\xab\xf1\x5b\xc1\x79\x04\x0e\x4f\xc7\x9b\xda\x5e\x32\xf4\x4d\xbb\x8b\x04\x3d\x12\xc9\xff\x91\xc4\xca\x10\x76\x6f\xf0\xcc\x9f\x9e\x28\x65\xfe\x2b\x0c\x87\x2d\x66\xa9\x85\xb1\x0b\x44\xae\x27\x4e\x95\x11\x57\xcc\x7b\x54\x7d\x87\x1e\xd0\xb8\xff\xe2\x2e\x9d\xf8\xe5\xd4\x7c\x41\xd1\xf9\xcd\x9b\x8a\xfa\x4d\x7c\x8b\xaf\xee\xa7\x09\x38\x22\xc0\xf6\xa7\x90\x85\xd3\x8b\x5b\xb5\xe3\x53\xc2\x42\x61\xc8\x53\x8a\xec\x92\x83\xaa\x60\x44\x12\x5d\xf0\x12\x0c\x43\x9c\xda\xe2\x5f\xfb\xbe\x75\x43\xb3\xfb\x49\x33\x74\x82\x90\xf1\x20\xb0\xea\x32\x39\xe3\xcd\x68\x94\x1f\xd4\x74\x77\x6d\xe2\x83\xde\x55\x34\xf0\x71\x05\x78\xab\xf4\xde\xb9\xe8\xa8\xe6\xa2\xc8\x97\x20\x38\xd1\xa3\x2c\xac\xe9\xe6\xb9\x79\x09\xf5\x50\x19\x7b\xea\x6f\xdb\x3e\x54\xce\xc7\x49\x0b\x3c\x2c\xff\xc1\x6e\x0d\xbb\xe1\x79\x04\x67\xb1\x1b\x6f\x5d\xa2\x3b\x23\x22\x96\xc8\x5a\x3f\x39\x46\xf5\x26\xe8\xe6\xe5\xc0\x86\x57\x75\x95\xad\x4a\x05\x1e\x8d\x18\x0e\x7f\xf6\xed\x0c\xa8\xd6\xa1\x4d\x1c\xdf\xb6\xef\x8c\x50\xd3\x46\x1c\x3a\x38\x30\xb8\x7a\x58\xce\xf0\x21\x37\x65\x56\x80\x0b\xc5\xbe\xb7\x0b\x54\xf0\xe2\x5f\xff\xdb\xdd\xaa\x73\x55\x80\x61\xe4\x09\x15\xe4\x1d\x83\xb4\xed\x1f\xf2\x02\xca\x68\xfc\xf4\xe5\x03\xeb\xa7\x58\x5f\x82\x52\x59\xb1\x14\xd1\xb9\xca\x47\x93\xb3\xb4\x47\x87\x0f\x10\xdf\xdc\xf3\x49\x12\x81\xc9\x39\x05\xd6\x83\xea\x3e\xd7\xa1\x99\x39\xe4\x22\x2b\xac\x62\x29\xfa\x2b\x53\x0a\xfc\xb8\x7c\x86\xb3\xf3\xb9\x47\xb2\x1f\x34\x6e\xa4\xcb\x21\x81\xb4\x99\x22\xb8\x6f\xe3\x33\xc1\xe2\x9c\xb0\x42\x43\x66\xaa\xae\xa3\xdf\x3b\xdf\x62\xd7\x2d\xb8\x9d\xa5\xe8\x0f\xcf\xa4\xa7\xac\x33\x54\x77\x0c\x77\x79\x03\x94\x5e\x83\x9f\xe2\xdc\x3a\xc5\xd8\xc2\x05\x0f\xfc\x52\xaf\x71\xe7\x3a\xe5\x2b\x92\x86\x47\xe2\xb7\xfa\xc6\xb6\x11\x5a\xb7\x5a\xc5\x2c\x8b\x0e\x9e\xb1\x2f\xab\xf9\xd2\x20\x1e\xad\x32\x64\xd1\x86\xa0\x2e\x24\x9f\x7f\x6e\x3d\x7b\xd7\x49\x03\x79\xb4\xc1\x81\x6a\x6d\xaf\x66\x76\x70\xf0\xcc\xdd\xd1\x43\x95\xa8\x86\x6c\xe4\xaa\xfa\xa1\xc7\x15\xc7\x13\xe2\xe1\xa2\xe9\x84\x30\x5e\x58\xff\xa2\xec\xe9\xc0\xa1\x5b\xb5\x5b\x58\xae\x81\x90\xc0\xb7\xf3\x06\x3f\x11\x0c\x8e\xd3\x55\xfb\x0c\x3e\x05\x59\x4c\x32\x5a\x2e\x2f\xef\xd6\x06\x38\xae\x4b\xaa\x0c\x79\x81\x2f\xd4\xbd\x17\x6f\x56\xa4\xb0\x30\x63\x88\x11\x58\x8f\xbd\xc8\xa7\xcf\x77\x52\xd7\x0d\x3d\x31\xe1\x86\x0b\x65\xad\x15\x33\x5b\x9b\x0a\x63\xd5\xdc\xd1\x97\x64\x2f\x51\x46\x65\x44\x7d\x9b\xe3\xa0\x37\xee\xc9\x5e\x3e\x81\x9f\x4b\xe8\xdf\xc5\xdd\x1c\xa4\x5c\x75\x61\xc1\x73\x63\x20\x88\x14\xd8\xc1\x65\x60\x2b\x80\x6b\x72\x41\xaa\x7b\x15\xe3\xbc\xf6\xe7\x11\x43\x15\x84\x86\xc5\x54\xc8\xaa\xf1\x71\xfb\x6a\x85\xba\xcc\x5a\x60\x54\x5f\x7b\x5b\xcb\x52\xb7\x88\xed\xeb\xa1\x97\x87\x24\xdb\xe7\xf9\xf3\x55\x30\xcd\x30\x89\x5e\x99\x70\xcb\x54\x50\x83\xd2\x50\xaa\x2e\x62\xac\x29\xcd\xd4\xfe\x6e\x9f\xac\xa8\x6e\x99\x3e\xbd\x63\xf2\x84\x89\xf1\x7f\xfe\xc4\x53\xfa\x16\x8a\x12\x96\x56\x7f\x27\x37\x28\x49\x03\x96\xed\xcd\xdd\xfc\x85\x62\xaf\x41\x18\xf5\x84\xee\xe4\x2d\x1a\xc9\x9b\x6f\x07\x7c\xfe\x7a\x84\x02\xd7\x8f\x36\xa8\xb6\x41\x5e\x80\xbb\xe1\x73\xfd\x7d\x7d\xa4\x16\xb8\x65\x7b\x9f\xfa\x06\x7e\xfa\xc2\x40\xe9\x88\xc2\x92\x5c\x3a\xf8\x95\x51\x7a\x4f\x85\xba\xca\x98\xb1\xa6\x5a\x8a\x16\x6e\xef\xd1\x0c\x8f\x29\x0d\x8a\x16\x53\xd3\x99\x71\x28\x92\x80\x33\xc4\x83\x54\x6e\xfd\x95\xa2\x38\x68\x61\x6d\xe6\x06\x3e\x99\xd5\xa2\xba\x55\x88\xfe\xdd\x1c\x8c\xfe\x5b\x9f\x28\xb3\x8d\x2e\xdc\xfe\x4a\xda\x3f\xdd\x32\x19\x20\x6f\xf5\x87\x35\xd0\x3b\xdf\xc3\x93\x86\xa0\xf1\xe6\xc7\x4e\x91\x2f\xd0\x45\x9e\x1d\xf2\x29\xf7\x24\x45\xc4\x5a\xf5\xa2\xdb\x90\x3d\xe3\x13\xc7\x17\x5d\xe2\x71\x1e\x5c\xfc\xeb\xbe\xb7\xa9\xc5\x5b\xcf\x0e\x52\x65\xec\x95\x87\x87\x2b\x5a\x0f\x55\xbb\x18\xc4\x1d\x61\x5c\xe4\x53\x90\x67\xce\x2d\x1e\x94\x8d\x64\x60\x8e\x57\x4c\xb4\xad\xa0\xac\xf9\xee\xc3\x32\x21\x04\x71\x1b\xc6\x27\x3e\x5f\xde\x36\x48\x85\xc7\x08\xc2\x8b\xf1\xf0\x76\xde\xf8\xdc\xe3\xb9\x88\xf9\x48\x1f\xf3\xf7\x1a\x6f\x45\x3a\x52\xb6\x01\x0b\x67\x5e\x89\x7f\x56\xeb\xcb\x03\xe4\xd5\x30\x4b\x5a\xcd\x87\x34\x22\x0f\x43\x5d\x49\xcb\xbe\x6e\xd7\xe0\xcc\x64\xc9\x64\x08\x1e\x6b\xf1\x35\x5d\x5f\xbc\xea\x91\x0a\x31\x11\x8c\x53\x04\xfb\x2a\xd0\x4c\x53\xbd\xd0\x2d\xc3\x6f\xed\x29\x96\xa2\x6f\xad\x81\x0a\xdf\xc1\x5e\x71\x7a\xea\xe6\xde\xd9\xae\x6e\xcc\x1d\x9a\xe8\x29\xf5\xe6\x3f\xf3\x80\xee\x67\x27\xd4\x03\x7a\x73\x8d\x73\x7c\xe3\x6d\xd3\xa0\x18\x60\xb7\x2e\x9e\x59\x7e\xc0\x43\x03\x95\x41\x5c\x22\xc8\x31\x6b\xb4\xd6\x45\x34\x81\x92\x9c\xc8\x87\xc4\x4f\x6b\xcf\x8a\xec\x59\xab\x86\x98\x31\xe2\x38\x48\x40\x37\x73\xee\x4b\xb2\x9e\xe8\x0c\x19\x6a\xe2\x86\x72\x78\xfb\xef\xbd\x4a\x79\x85\xc4\xc3\xaa\xb3\x76\x61\x84\xa3\x59\x4b\xa3\xae\x54\x14\xfc\xb1\x93\x8a\x02\x73\x7c\xc5\x2b\x21\x24\xf3\x3d\xbb\xe4\x7c\xaf\xe2\x40\x62\xad\x33\xc2\x45\x53\x4f\x1d\xcf\x4e\x4e\x42\x8f\x38\x28\x00\x97\x7c\xb1\xb2\xfa\xcd\x79\x75\xd8\x04\x99\x01\xb8\x84\x71\x30\xbf\x7b\xef\x10\xb5\x45\xb3\xc0\xb1\x0d\x9e\x6a\xe7\x39\x9e\x4b\x18\xb6\xf9\xa4\x26\x7d\x15\xd6\x0b\x02\x0e\x2a\xac\x32\xe2\xf2\x66\xd8\x31\x1e\xf7\x4a\xcc\x41\x9e\x95\x78\x61\xe4\x86\xee\xd0\x8e\x49\x1d\x99\x98\x53\x30\xe5\x18\x37\xec\x93\x46\x51\x0c\xbb\xb1\x33\xdb\xb5\x73\xd3\xe1\x2a\x76\xae\x0f\x6e\xd3\x87\xc5\x16\x76\xc4\x7c\xac\xf8\xae\x24\x14\xe0\xee\x80\xa1\x06\xaa\x22\xaf\x47\x95\x14\x7e\xe4\x12\x1e\xb7\x66\x63\xa7\x12\x37\xdd\xaa\x8e\xed\x6f\xd7\xf3\x6f\x66\xb2\x30\x30\x6d\x6e\x20\x9f\x5b\xb8\x2f\x9d\xe3\x5b\x38\xb5\x07\xb8\xf1\x6d\x45\x73\x33\xf4\x03\xbe\xa8\xed\xe7\x64\x3f\x39\x32\x03\x86\xfd\xc4\xaf\x37\x7c\x4b\x8a\x2e\x95\x51\x62\x1a\xd0\xb1\x67\x5c\xb6\x4e\x00\x84\x22\x8c\x04\xb9\x5a\x5e\x36\xb6\xde\x50\xc8\xd6\xfe\xe5\x44\x06\x34\x57\x3d\x38\x54\xd9\x63\xf9\xa8\x0e\x80\x0a\x91\xed\x8f\x2d\xd3\x7a\x2f\xd3\xa4\x6e\x1d\x79\x24\x1d\x6f\xe6\x37\x9f\xd6\x86\x65\x0e\x32\x6b\xf0\xd9\xe5\xd3\x3b\x3c\x4a\x29\x63\xe3\xf0\xcb\x49\x0d\xf9\xa7\x95\xb9\x24\x0d\x59\xd1\x84\xff\xde\x9b\x7f\xb2\x8f\x6e\x7b\x4e\x93\xc5\x5c\xf4\xc5\x57\x15\x35\x07\xec\x60\x13\xcc\xc5\x72\xa3\xdf\xd2\xdc\x84\xb1\x8f\x98\x66\x87\xb2\x8d\x27\x98\x62\x85\x30\x5f\x65\xeb\xff\x9f\x9b\xa4\x34\x0d\x6e\xd9\xc8\xe5\xda\x47\xeb\x5b\xcb\x30\x01\x7a\xe5\xef\x2f\xb7\x18\xc1\xc4\x35\x79\x43\x28\x83\xe4\xbf\xf1\x50\xf6\x9e\xd9\xc8\xa9\x14\x2d\xda\x83\x13\xe0\x7e\x7e\xd5\x4e\x15\x7d\x17\xd6\xa1\x6c\xef\x12\x1e\x1c\xd8\x0a\x4d\x94\x88\xfc\xed\x1c\xa9\x1f\x13\x4e\xa3\x80\x2d\x97\xfd\xfc\xb5\x2a\x6c\xf1\xbe\x39\x37\x66\x8f\x00\xd0\x4e\xcf\x6b\x22\x41\x71\x43\x05\xff\x9a\xcd\x93\xca\xe7\x93\xa7\x14\x4b\xd1\x5b\xf3\x34\x46\x1e\xb5\x50\x12\xa1\xf3\xcf\x2d\xd6\xac\x78\x40\xf6\x33\xed\x71\x7b\xb8\x2e\x76\x71\x19\xa9\xd9\x8c\xca\x18\x17\xed\x7d\x6e\xb0\xc2\xd9\xf0\x6a\x2c\xac\x03\x08\xe8\x89\x60\x80\x12\xc0\xc0\x76\x26\x9a\x30\x32\xed\x62\x5d\xa4\x10\x92\x16\x18\xda\x43\xe0\x0d\x9b\x98\x3f\x5c\xbb\xa5\x9f\xb2\xea\x82\xa7\xf6\xdf\x6b\x5b\x9c\x59\x59\x5a\xc0\xe5\x0f\x9f\x19\xa6\xa3\x3d\x4b\xe9\x2f\xfb\xdf\x83\x8a\x40\x35\x66\x30\x74\x8e\x06\xbf\xab\xa8\x4f\x81\x88\x71\xc0\x60\xa3\x3e\xad\xac\x71\xde\x88\x2f\xb6\x70\x62\xc3\x9a\xbb\xab\x8f\x22\x06\x08\x4b\x84\xf8\xdf\x3d\xb9\x67\xa0\xf2\x99\x1b\x98\x73\xd1\xba\x8f\xcb\xe0\xed\x23\x86\x6c\xa5\xf0\xed\x2b\x25\x76\xeb\xad\x12\xbb\xb9\x83\x3d\xda\x99\xa3\x2e\x06\x91\xcc\x94\x2c\x72\xdd\x32\x9d\xe9\xd0\x70\xa8\x76\x59\xce\x2a\x0a\xa6\x75\x46\x3b\x53\x1b\xf4\x7c\x9b\x2e\x23\x42\x99\x25\xb9\xd5\xfd\x87\x66\xc5\xaf\x88\xe3\x10\x8f\x12\xbf\xc5\x69\xad\xd7\xa8\x47\x3c\xa8\x2e\x21\x4e\xfc\xb5\x33\x12\xfd\x87\x82\x81\xd9\xca\x1f\x15\x4b\xd1\x55\x0b\xdb\x94\xa6\x10\x2c\x7f\x78\x63\x78\x3b\xbb\x52\x2b\xbc\x98\x2b\x04\x80\xf3\xce\x01\x7e\xeb\x17\xa3\x72\xc6\xf0\xba\x36\x40\x9b\xd0\x97\x43\x3f\xac\x91\x64\x6d\x73\xcd\xab\x5a\xe9\x80\x03\x51\x74\x1b\x57\x73\xb1\xad\xe2\xdd\xd4\xeb\x41\x0e\x56\xd6\x02\xb9\xaa\x46\x1a\x0e\x68\x68\xda\x69\x45\x9c\xbb\x5c\x59\xdb\x86\x7c\x19\x0a\xd0\x80\xd7\xb5\xdf\x45\xd3\x66\xfb\x7d\xbc\x01\x29\x2e\x09\xe8\x45\x4c\xed\xf2\xdd\xcb\xb2\xf1\x87\xeb\x6d\x74\x11\x8b\x0b\xec\x19\xef\xad\x68\x97\x6e\x89\x5d\x2a\xda\xb8\xfc\x90\x6e\xd3\xe4\x05\x0c\x1c\x8f\x9b\x1c\x2c\xf7\x81\x9e\xb4\x9a\x0e\xba\x68\xb1\x14\xf5\xdd\x91\x7d\xef\xf1\x91\x0a\xec\x44\x82\xe7\xcc\x1e\x4d\xd9\x89\xc1\xe4\xdf\xbf\xd8\x9a\xcb\xf8\x8e\xc3\xe3\x5b\x83\xf8\x45\x04\xff\x6f\xa9\x37\xf7\x86\xe0\x36\x7f\x54\xa4\xd0\xcb\xe6\xf7\x4f\x7a\x67\x8b\x72\xad\xd4\xfc\x3b\x4f\x66\xcf\x36\xf6\xeb\x98\x2f\x51\x93\xf2\x71\xf9\x6e\xa5\xc9\x65\x84\x5b\x99\x44\x6b\xce\x68\x23\xcf\xaa\x64\xbe\x1a\xf7\xad\x52\xe4\xbc\x60\xff\xdc\x5b\x58\x7a\x52\x7e\x7b\x5a\x2e\x96\xa2\xc7\x1b\xda\xb6\x02\x05\xd8\x71\xa0\x9e\xe4\xdd\x4e\x65\x8d\x56\xa2\x61\xd4\x48\xd2\xc4\x27\x0d\x7d\x1b\x64\x3a\xa1\x95\x60\x4c\x73\xeb\x8f\x5c\x6c\xc4\xe8\xc6\x95\xbd\xb3\x4b\x51\xda\x64\xd4\xe7\xed\x0f\x98\x60\xe7\x4f\x4a\xd9\x29\x0f\x9b\xc5\x52\x74\xab\x71\xbd\x16\xeb\xe2\x5b\x95\x50\xa2\xd2\x36\xf7\x33\x7d\xdb\x24\x87\x48\xc1\x0d\xe7\xff\xf8\x72\x3f\xb5\x1b\x2a\x96\xa2\x11\x67\xb5\x35\x06\x66\x2e\x11\x02\x87\xc6\x07\x76\x6b\x2b\x8b\xb0\xec\xe3\x07\x43\x2c\xaa\x79\x18\x57\x2f\x5a\xdb\xa2\x4c\xcb\x4c\x2c\xb4\x0e\x73\x5f\xd4\xa0\xd9\x15\x07\x09\xdf\x2b\xe3\x97\x9d\x99\xc8\x3c\xe3\x46\xf9\x05\xe2\x3f\x3e\x7c\x58\x29\x6e\xc1\x22\x44\x4e\x71\x7e\x7f\x41\xe6\x73\xd4\xa5\x6f\x1b\x97\x1f\x68\x53\x12\xae\xe3\x80\x79\x10\x70\x09\x9e\xe6\x81\xa2\x1e\x96\x1d\x65\x0a\x62\x9c\x1b\xdb\x5f\x19\xcc\x41\x12\xf8\xc8\xca\x96\x77\x6d\x71\xa5\xd9\x68\xde\x22\x19\xe4\xbb\x6c\xc2\x01\xb9\xc6\xfa\x1d\x5a\x6b\x27\xe4\x02\x52\x55\xbd\xe8\xc8\x11\xdd\xf8\xd2\x49\x54\x27\xba\x57\xcb\xb0\x67\xa3\x72\x19\xe4\x7e\xe2\xc7\xf7\x4f\xb3\x85\x1e\x3f\xb2\xb0\x83\xb9\x14\xb6\xc8\x93\x37\x9d\xcc\x0e\x3f\x6e\x4f\xce\xda\xa6\x5d\x52\xc9\xdd\x97\x59\x25\xba\x7e\x8b\x06\x60\x71\xb0\x5f\xa3\xd9\xf9\x58\xfe\x97\x8e\xee\xc3\x88\xdc\x64\xcb\xfc\xc1\x13\xda\xec\xcc\x0b\xa8\x58\x2a\x18\x3f\x5d\x7b\x8d\x56\x7e\xda\x0c\x11\xa0\xaa\x8a\xb1\xc3\x97\x2f\x93\x0f\x19\xcc\x4d\x4b\xd1\x77\xd6\x71\xe4\x97\xdf\x85\xe3\x3a\x21\x7a\xe1\x70\x46\x74\x36\x20\x5e\x98\x28\xf0\xe4\x6e\x3d\x23\x4f\x2e\x8c\x98\xa2\x39\xe3\xd2\xef\x59\x55\xdc\x25\xa3\x51\x87\xf5\x9d\x31\x62\x0c\x56\x09\xe9\xdc\xee\xe1\x21\xfa\xc9\xbb\x7b\xc9\xa2\xf8\x30\xff\x51\x99\xf0\x26\xd8\x1d\xfe\x54\x1f\xba\x44\xb3\x7d\x0a\x6d\xc4\x50\x46\xb7\x3a\xff\x69\xee\x9f\x52\x5c\x42\x2c\xec\x70\xe8\x83\xcc\x46\x77\xbe\xaa\xf1\x73\x1a\x98\x99\x54\x48\x63\xf4\xe6\xaf\x1d\xaf\x28\x81\xa3\x1a\x62\x80\xe2\xcb\x7d\xe2\x91\x6b\xf4\xa0\xdb\xe5\xa9\x73\x1a\xe3\x95\x77\xd2\xca\x8e\xcb\x78\xbf\x7f\x96\x7c\xd0\x13\x3a\x26\xc0\x46\x6b\xd1\xf6\x41\x99\x1f\x33\x9d\x3b\xeb\x7d\x79\xec\x00\x59\x67\x24\x00\xa5\x19\x0d\x45\x5e\x80\x3a\x44\xd4\x2b\x13\x0e\xea\xc4\xbc\x1a\x16\xa8\xcd\xfc\x3f\xf6\xe8\xbb\x50\xcb\x4a\xd8\x00\x85\x31\xe3\xf8\x8c\x71\xee\xe2\xfb\xef\xbb\xf7\x9e\x85\xc5\x52\x34\x52\x71\x14\xe2\xee\x84\x9c\x43\x73\xbb\x22\x4f\x5f\x71\x42\x02\x0e\x37\x3f\x10\xdb\xad\x8a\xc3\xad\xea\x7a\x8d\x19\x23\x06\x65\xe6\xe8\x34\x84\x0f\xf8\xc8\xe6\x14\xf0\x18\xd0\x96\x61\x61\x61\xd1\x4d\x23\x5a\x62\x99\xc9\x48\x9d\x0f\xdb\x00\xf1\xf7\x85\x4e\x2d\xf7\x74\x83\x0a\x62\x9c\x01\x04\x05\x78\xdb\x94\x8b\x93\x3c\x39\x2a\x2a\x9b\x02\xff\x30\x6c\x80\x28\x84\xcd\x5a\xb1\x0b\xe0\x9d\xbd\xf9\xcf\x0f\xe0\x0f\x63\x69\xd1\xb7\x09\x70\x6c\x57\xbe\xab\xef\x49\x02\xc2\x15\x18\x53\xcb\x33\xe3\xb6\x71\x57\xa4\x3f\x8a\x7b\x36\xfe\xae\x9f\x86\x3f\x9a\xdc\x31\x65\x3c\x97\xb6\xd8\xfa\x90\x2e\x70\x64\xda\xc8\x23\xbe\x2b\x62\x72\x61\xee\x0a\x8d\x0a\x86\x00\xc7\x0a\xa5\xfd\x7e\x85\xe3\x5a\x41\x0d\x10\x04\x91\x43\x8a\x9b\x22\x78\x40\xc5\x7b\xc0\x75\x0c\x02\x28\xca\xf8\x68\x18\x27\x16\x8f\x53\xaf\x96\xde\xa3\xe8\x95\xec\xac\x41\xd7\x29\xf5\x9e\x43\x02\xc4\x01\xf1\xd9\x27\x39\x50\x13\x06\x84\x49\x85\x58\xc6\x9e\xbc\x4c\xe9\xae\x18\x02\x88\x66\x6e\xc1\x81\x4c\x69\x5b\xe1\x20\xf2\x62\x29\xc2\xfb\x74\x31\x2d\x0e\xd6\x15\x2d\x56\xdf\xd4\x1c\x08\x39\x61\xa2\x47\xfe\x5c\x9b\xe0\x7a\x01\xae\x19\x68\xc9\xcb\xf9\x7f\xb1\x58\xa2\xda\x12\xcd\x14\x91\x8c\x58\x62\x30\xb7\x51\xdd\xb9\x7b\x56\xd1\xe6\xf0\x9b\x7c\xaf\x82\xb1\xf4\x91\x6d\x73\xa7\xea\xbf\x1f\xa5\x34\x03\x34\x8c\xeb\xaa\x74\xa4\xd0\xff\x79\x41\xf1\x0c\xfd\x00\x99\x36\xe7\x7f\x5c\xb9\x53\x47\x50\xa3\x3a\x2f\x08\x7f\xa4\x98\x48\xd7\x1d\x6c\x55\x71\x6a\x0b\xb8\xdc\xe2\x87\xef\x23\x5c\x09\x25\x3e\x0b\x8f\x3e\xad\xf9\xfe\x76\x23\xb7\xee\xe0\x44\xdc\x39\xb7\xbe\x4d\x3e\xc9\x2e\xb0\x80\xaf\x89\x81\xd9\x63\xda\x1e\x43\xd4\x2e\xe2\xdc\xf2\xab\x6f\x1c\xd3\x60\x38\xdc\x05\x37\x35\x3a\xfe\xf0\x73\x8a\x7f\x59\xe8\x37\x8b\xa5\x68\xc8\x39\x6d\x32\x80\x58\x95\x26\xa9\xed\x7b\x1c\x73\xc3\x57\xa2\x42\x1f\xb6\x68\x51\xc7\x81\x3d\x6e\xdb\x7e\x19\xf8\xba\xb8\x38\x43\x71\xa4\x62\xb8\x85\xa0\x56\x2a\x96\xa2\xeb\xd6\xea\x1e\xb5\x0e\xed\x12\x94\xe0\x39\x93\xe4\x0c\x0f\xae\x62\x19\x39\x4e\xe2\x98\x5e\x18\xfc\x9a\x90\x3b\x9d\x78\x0b\x17\x5b\xe8\xfb\x8c\x58\xad\x10\xd7\xca\xee\x79\xfe\xbf\x67\x34\xbb\x72\xea\x10\x13\xbb\x58\x08\xda\x5e\x7e\x99\xc6\x69\xc2\x59\xa7\xf4\xfc\x9c\x79\xfc\x57\xc5\x07\x34\xae\x48\xde\xbf\x43\xd9\x6d\x72\x51\x06\xb8\xee\xe7\x5e\xe1\x45\xcd\x52\x90\xbd\x94\x79\xe1\x70\x9b\x86\xa4\xc7\x65\x3e\x5f\x39\x33\x26\xed\x18\x30\x4c\x49\xd2\x41\x57\xfe\x9b\xc3\xb4\xed\x20\xeb\xc2\x8e\xa3\x61\x5c\x1f\xd8\xd2\xae\x2a\x5b\xb8\xd4\x4b\x9d\xfe\xef\x7d\x24\x83\x5f\xab\x32\x7e\xf1\x80\x80\xd0\x2b\x74\xa4\x2c\x14\xa0\xb2\x20\x38\x8e\x3b\xaa\xcb\x14\x77\xd2\x26\x9f\xa6\x46\x67\x2e\xd3\x05\x75\x83\x90\x25\xda\x17\xd3\x15\xff\x16\x17\x07\xb0\x64\xc9\xcf\xd3\x86\xf3\xd8\x2d\x33\x31\x57\x2c\xf5\xe6\xfa\xec\x4c\x6b\xe9\xc9\xe3\xc1\x34\xfa\xd4\x30\x5d\x53\xcb\xf3\xa9\x2b\xfe\x7a\x50\x50\xb9\x05\x7e\x3d\xe4\x8e\x0d\x6d\xdb\x2e\xa6\x3c\x91\xf6\xc6\x7f\x5a\xc9\x91\x4b\x8b\xb1\x69\xda\x44\xc9\xfe\xe3\xb6\xca\xb3\x59\xc7\x3e\x74\x99\x8f\x8e\xd4\xd2\x0d\xc8\xee\x52\x8f\x98\x89\x16\x80\x39\xbe\x5d\x9b\x1c\x24\x7a\xd5\xb9\x33\x65\x39\xd0\xe1\xf2\xf5\xcf\x6f\xe1\xbb\x80\x45\x62\xa1\xd8\x32\xe6\xaa\x74\x68\xed\x1d\x77\x02\x13\xa9\x6d\xd8\xb8\x96\xfb\x8c\x02\x92\xca\xe3\xc0\x4c\xf2\x43\x5b\x79\xe0\x0b\xc1\xfe\x3c\x3e\xff\x57\x72\x25\xb0\xe2\x7c\x6a\xb7\x80\x64\x8d\xdf\xcc\xd4\x98\x5c\x28\xfe\x7a\xc9\xd8\xf3\x13\xd2\x3c\x92\x11\x59\x46\x45\xa7\x35\x7b\x74\xdc\xc0\xac\xc9\x85\x65\xa0\x61\xfa\xca\x98\x76\x35\xb8\x73\x01\x73\x8e\x03\x43\x6b\xd2\xbe\x80\x78\x8d\x96\x07\x70\xdb\x91\xfe\xc9\x5a\x70\x86\x28\xca\xaf\x7e\xea\x0a\x39\xc5\x8d\xef\xe5\xe4\x87\x07\x26\x7f\x67\xe1\xc2\x45\x7c\x03\x11\x2d\x7b\xb1\x6f\x12\x10\x84\xbd\xfb\x50\x1e\x93\xef\x44\x65\x46\xa8\x03\x5c\xa9\xc2\x27\x8f\xfd\xad\x9d\x5c\x1c\x11\x39\x53\xd6\x78\x76\xb8\xbc\x22\x16\x65\x5e\xc6\x6e\xea\x81\x23\xaa\xec\x66\x97\xdf\x05\xd0\xf4\xc8\xb5\xe4\xf8\xda\xb4\x09\xae\xb4\xa6\xc8\xbd\x7b\xd3\x62\xd8\x47\x6a\xca\x9e\xbd\x93\x5f\xbb\x3a\x32\x6b\xc2\xcb\x32\x9f\x5b\x94\x20\x1b\x08\xdf\x2e\x6d\x68\x93\x71\x78\x7a\xc7\xf4\xc9\x00\x27\x6e\x57\xc4\x4a\xe4\xb0\x9f\xff\x84\xbb\x1e\x52\xac\xbe\x18\x71\x49\x7c\xc7\x75\xf8\xf6\xea\xc6\x30\xbd\x76\xe5\x03\x03\x9e\x1c\xae\x79\x5d\x9f\x01\xc7\xd9\x8d\x8b\xc6\xe4\xbf\x33\xa9\x4d\x6a\x9a\x74\x2b\xdf\xe7\x63\xce\x60\x85\xa3\x40\xcc\x1a\xe7\x78\xe6\xa6\xce\x94\x91\xbe\x93\x04\x8c\x72\x17\x86\x7f\x0e\x44\xd4\xc1\x15\x82\x04\x51\xf1\x7b\xfb\xb9\x88\xef\xa2\xd2\xe2\x25\x77\xce\xbb\xab\xa5\x52\xfc\xe4\x06\x85\xa6\x8d\x02\xcc\xba\x10\xf7\xae\xf8\xc7\x73\xd7\xaa\x93\x74\x98\x6e\xea\x2f\xe2\x93\x37\x7d\x50\x3b\xf3\x26\xa9\x10\x13\xa0\xcb\xd9\xc7\x73\xf4\x39\x4d\x20\xab\x12\xa4\xda\x65\xef\x3b\xad\x8a\x42\x35\x88\x95\x18\xb6\x96\xde\xcc\x3e\xb4\x89\x37\x4d\x1e\x3f\x3e\x89\x3e\xcb\xa7\x64\xe5\xad\x2c\x16\xd7\xe8\xba\xbc\xd5\x07\x77\xca\x6f\x21\xbc\x1a\x5a\x3e\xdb\xe3\x33\x45\xcd\x91\xd8\xd8\xc5\xbf\x7b\xf4\x93\xd9\x9a\xb3\x91\x8a\x7d\xe5\x1f\x5b\xa4\x69\xad\xc5\x1d\x50\xa2\x04\xb6\xc0\x53\x4c\xd4\xe2\xaa\x0a\xae\xd0\x84\x83\xca\xca\x80\x7b\x73\xc1\x8b\xfc\x95\xa7\xa6\x17\xa0\xd7\xa0\x32\xef\x01\xcb\xba\xcf\x51\xc8\xe2\x42\x10\xca\x9e\x57\x97\x0a\x32\x09\x06\xe6\x08\x54\x65\xf7\x1f\xe0\xf5\xce\x22\x8a\x03\x62\x42\xd8\xfc\xf6\x33\x02\x48\xc6\xad\xe3\xe3\xff\xb4\x77\x06\x8f\xd9\x4b\x70\x4f\x35\x33\x3f\xdc\xab\x81\xf4\xea\x8c\xd2\x8a\x48\x40\x3f\xe8\x3b\x5c\x49\x40\x16\xc1\x0d\xb8\x00\x12\x13\xfd\x91\xed\x1a\x56\x83\xa1\x07\x49\xc2\x9e\x58\x74\x57\xf4\x3f\x53\x34\x09\xca\x30\xa1\x96\x37\x8f\x2b\xfd\xdb\xf4\x29\xd3\x8a\xa5\xe8\x1b\x0b\x85\x73\x14\xf5\x83\x2e\x90\xa1\x33\xa6\x3f\xa0\xeb\xd4\xf8\x38\x01\xad\x7d\xab\x2d\x95\x65\xad\x0b\x31\xaf\x63\xb6\x04\xf6\x37\x84\xc3\x58\x74\x72\xee\x90\x34\x78\xfb\x54\x45\xeb\x79\xcb\x33\x4a\x15\x7a\xd9\x3e\xf2\x61\xcd\x10\x87\x92\x84\x27\x93\xfb\xee\x49\x1e\x2b\xab\x0c\xa3\xb8\x04\xbb\x7d\xa8\x9c\xd8\x5b\x1e\x44\xfe\xdb\xdf\xd6\x5c\x8a\x71\x20\xaa\xf9\xbb\x34\xfe\xae\x47\x59\x60\x77\x61\x9f\x53\xb2\x8c\x0b\xb6\xa6\x81\x04\xa2\xcf\x70\x9c\x6e\x79\x44\xf6\x8e\x61\x92\xb0\xf2\x3b\xe6\x28\xd1\x16\x35\x08\x56\x66\x1d\xb9\x35\xfb\x46\x29\x24\x36\x2b\xae\x53\xac\x56\x57\x89\xfc\xb8\xe1\xda\xec\xb6\x0b\x63\x5e\x6b\x17\x3e\x32\x2d\x7b\xd9\xcb\x21\xc3\x28\xbc\xb1\xd5\x00\x2e\xf7\x97\x57\x15\x98\x16\x61\x58\xda\xbf\x2d\xad\x08\x1f\x16\xa7\xd9\x85\x01\x0f\x50\xea\x35\xee\x16\xf7\x2f\x7e\x7f\x24\x08\x39\xee\x6f\xc6\x2c\x09\x8e\x9a\x34\x45\xac\x71\x34\x07\x26\x0b\x35\xf9\x29\x88\xce\x6b\x42\x46\x88\x58\x69\x99\x72\x61\xf7\x40\x85\xed\x28\x08\x24\x46\x7d\xb4\x3c\xd3\xd5\x0e\xab\x35\x62\x7d\x78\xd1\x0d\x5a\xc4\x76\xeb\xc8\x6b\x5e\x54\x1d\x76\xdf\xc3\x12\xbb\x23\xb6\x5c\x6a\x2b\x99\x7b\x41\xfa\x95\x30\x9c\x0a\x0a\xaf\x5a\x23\xbf\x62\x99\x21\xdf\x2e\x96\xa2\xc7\xda\x35\x05\x69\x07\xf9\xc2\x5d\xe6\xb3\xef\x28\xfc\x06\x4e\xcf\x2b\x34\xa7\x28\x44\x5f\x87\xef\x82\x20\xde\x3c\xae\x38\xcf\x52\x98\xb9\x4c\x38\xa7\xe1\x25\xc3\xb2\x88\x67\x17\xf6\xb5\x2b\x8d\x89\xe3\xe0\x00\x2e\x3f\x48\x5d\x3c\xa1\x13\x5f\xfc\xc4\x08\xb7\xd4\x9b\xfb\xfc\x9b\xd9\x9a\xee\xc1\x10\x31\x10\xaf\x35\x6b\x82\x55\xfb\xe0\xdb\xd2\x5f\x95\x42\xc4\xfb\xfb\x87\xf9\x8d\xb1\x29\xe3\x6d\x51\x5d\x67\x26\x9a\xa8\x8e\xab\x34\x9d\x9c\xae\xef\x1c\xa0\x9c\x75\x1f\x0c\x7f\x2e\x2c\x57\xd5\xb7\x3d\xce\x9a\x2c\xdc\xf9\x78\x5a\x16\x74\x53\x25\xb6\xe5\x3e\x73\x58\x17\xc8\x35\xa9\x64\x02\xe6\x97\xac\xd2\x4a\x69\xaf\x8a\xaa\x89\x5e\x8c\xd1\xdc\xaf\x6d\x16\x48\x40\x7a\xb0\xe7\xdb\x04\xee\x45\xb4\x7e\x86\xce\x82\x23\x5e\x00\x36\xcf\x29\x6d\x63\xf5\x8b\x9a\x6d\x25\x65\x58\xa8\xa7\xef\xd5\x59\x8a\x7e\x1d\xc3\x8c\x48\x7c\xfb\xbc\x40\x96\x25\xb4\x7c\x68\xec\x7f\xe5\xe8\x80\x2c\x00\x58\x88\x52\xf3\xce\x0d\xe9\xae\x9e\x54\xd3\x41\xd7\xd7\x5f\x52\x28\xd1\xd8\x21\x55\x31\x26\x1e\xa9\xd8\xfa\x24\x43\x0e\x02\x43\xb0\xdc\x6f\x1f\xd0\x55\x74\x12\xd1\xc0\xe8\xf8\x0b\x9a\xdc\x21\x43\x80\xcd\x13\xd8\x10\x76\xaa\x4d\x62\xc2\x94\xdd\x74\x6e\xed\xb2\x81\xca\xec\x97\x59\x20\x39\x3d\x74\x47\x7a\x48\xa6\x4d\x80\xc4\xb5\xf0\xdd\x76\x39\xdd\xf2\xb2\x09\x7d\xaf\x7c\xf5\xd8\xab\x72\x2b\x78\xe3\x5b\x23\x12\xdd\xde\x30\xee\x16\x61\x70\xb1\x76\xac\x66\x8e\x1c\x20\x8b\xa4\xdc\x12\x63\xaa\xe8\x6e\x2b\x0c\xb9\x30\xfa\xe8\x33\x56\x21\x16\xc7\x8d\x78\xfc\x1f\xaf\x9d\xd5\x9e\x86\x67\x20\xd4\xa5\x6b\x87\x71\xa3\x15\x8d\xd6\xb0\xcc\xc9\x89\x37\x6b\xb8\x8c\x06\xb5\x6a\x48\xbc\x97\xde\x33\xfa\x29\xac\x10\x93\x04\x82\xa5\x69\xbc\xa1\xcc\x03\xcb\x21\xe3\x60\x8a\xfc\xc7\x26\xca\x98\xee\xa0\x2e\x31\x91\x10\xef\x14\x47\x57\xf1\x94\xcf\xa8\x8f\xcd\x30\xa0\xac\x78\x37\xf6\x30\x60\x4e\xa3\xfe\xb7\x69\x87\x84\xdb\x9f\x0a\x9a\xd7\xb6\xe3\x57\x6b\x0d\x27\x97\x35\x48\xed\x6d\xed\x91\xca\x8b\x72\x2a\xc5\x2e\xd4\xaa\x57\x7e\x44\x11\xf7\xa0\x0c\x7b\xe5\x90\xdb\xf7\xf4\xaf\x5f\x2e\x92\x10\xc7\x95\xde\x3b\x4e\x59\x22\xc4\x1d\x3e\xb4\x70\x97\x9f\x57\x48\x9f\x01\xe1\xc4\x91\x5e\x63\xe3\x8b\x1a\x4c\xcb\xc6\x95\x54\xfd\x6f\xe7\x1b\x8a\x9b\x37\xc3\x0d\x44\x78\x81\x95\xbf\xe6\x0d\x4d\x2b\xa1\x0b\x3c\x61\x92\xd9\x4b\xf9\xc5\x3e\xe2\xc1\xc6\x07\xee\x8b\x05\x1d\xc6\xc0\x90\xef\x0b\xae\x0e\x37\x46\x5c\xac\x3f\x3c\x2f\x88\xff\x98\x6f\x4c\xb7\x8f\xb8\x5a\x9d\xfb\xcd\x9f\x0f\x5b\x76\x39\x17\x3c\x39\x49\x88\x67\x01\x50\x12\x40\x92\xeb\x35\x7f\x34\x4c\x3a\xb9\xd0\xa4\x58\x18\xfc\xe7\xd3\x5a\xf9\x45\xbb\xb0\x70\x27\x29\xbc\xaf\x5d\xf7\x03\x23\xd4\x23\xbe\x30\xc9\x5d\xb5\x40\xee\x11\x50\x95\x4f\x21\x1a\x5c\x1d\xd0\x78\xfd\xb8\x56\x37\x51\x5f\xac\x09\xa3\x63\x1b\x78\xd2\xbd\x4b\x5d\x35\x7d\x62\xb5\x1a\x24\xca\x61\xa5\x22\xc8\xde\x5b\x07\x29\xff\x9d\x78\x14\x7a\xfa\xdc\x7d\x1b\x65\x53\x8b\xca\xca\xcf\xa9\x79\x12\xcd\x64\xc5\x4f\xfc\x2b\x85\x81\x4a\x94\xa9\x22\x8f\x16\x4b\xd1\x9f\x2f\x93\x02\xef\x45\x97\x7a\x24\x10\x13\xd8\xec\x29\xfb\x93\x82\x24\xb7\x30\x57\x43\x30\x5e\xdf\xa5\x49\x12\x99\x5c\x93\x46\x88\xd0\x17\x16\x6c\x57\x26\x8f\x75\x4a\x60\xaa\x74\x66\xc3\xd5\x9e\x4a\x1a\xd5\x64\x02\xb6\xbf\xa4\xa3\x44\xc2\xaa\x9d\xcc\x8a\xef\x7f\x7d\x40\x52\x41\xa0\x1a\x80\xa6\x4a\xbd\xc6\x1f\xc7\xe8\x4c\x1b\x82\x84\xe1\x83\xb1\xb8\x7d\x90\x92\xdd\x43\xdf\xe6\x9d\xc0\x47\x0f\x0f\x53\x66\x8c\x8e\x43\x90\x0b\xf4\x46\xea\x82\x8e\xe6\x07\xc7\x0c\x10\x5f\xb4\x41\x52\xa8\xcc\xaf\xa2\xc1\x69\x16\x55\x58\xa1\xc6\xa1\x8d\xad\x65\x71\x72\xe2\x5f\x11\x5a\x46\xdc\x7d\xdd\xa5\x1e\x08\x91\x1a\xbf\x5f\x95\xfd\x8e\xd3\xc7\xc7\x55\x94\x98\xc0\xfc\x64\x68\x76\xcb\xf6\xa1\x64\x1b\x7e\xfb\x3a\xdd\x4e\x03\xf5\x24\xcb\xe0\x07\xce\xb4\x98\x10\x04\x28\x14\xc9\x00\x82\xe2\x91\x05\x8a\x33\x22\x02\x99\xc7\x59\x3d\x1a\x50\x65\xc9\x8d\xc9\xd7\x02\x8a\xe7\x8c\x7e\x69\x8a\xe0\x1b\x99\x5c\x8f\xb6\x8f\x0b\x68\x1d\x48\xa7\x00\xfa\x7a\x2f\xcd\x78\x2e\x4d\xaf\xd4\x0b\x9a\x76\x1e\x0a\xc6\x20\xb7\x7e\x6b\xc0\xc1\x5c\x1a\x57\x70\xd6\xb5\x5a\x1e\xb6\xa8\x87\x7d\x82\x6e\x74\xad\xe4\xe7\x7d\xbe\xa7\x85\xe0\xef\x87\x6e\x7c\x4b\x39\xf8\x36\xdf\x4f\x0b\x5c\x0c\x35\xb0\xe3\x27\x5e\xbb\x2f\xf1\x98\xb0\xc4\xa4\x21\x37\x61\xfb\xdd\x4c\x19\xda\x27\x4e\x09\x32\x86\x27\xf9\xb7\x34\x56\x96\x8b\x5d\x0a\x87\x8b\xe7\x92\x6b\x47\x29\x90\x45\x52\xa5\x2c\x35\xef\xf8\xf7\x7e\x4a\x54\x45\x09\xc4\xf1\xd6\x11\x3a\x97\xc4\x25\x1e\xf1\x93\x09\x84\xb1\x6a\xbb\x1a\x57\xa9\x89\x2d\x3e\xf2\x32\xee\x8b\xda\xf5\x24\xda\xbc\x91\x0b\xe9\xdd\x7f\x3c\x5b\x50\x4e\xbb\x65\xb2\x30\x9c\x1f\xf3\x96\x9c\xa3\x97\x29\xad\xf9\xa9\x53\xe0\x93\xda\xfe\xc7\x0a\x1b\xe9\x42\x29\x99\x0b\x3d\x7b\x41\xb1\xab\xf4\xc0\x31\x33\xba\xf6\xb9\x6c\xb3\x5f\x46\x4e\xdc\xe4\xc2\x6e\x50\x4e\x74\xdf\x9d\xa8\x86\xa9\x3a\x65\xf1\x83\x8e\x74\x34\x4d\x59\x31\x34\xfd\x59\x94\x16\x2a\xa1\xba\x56\x9d\xfd\x7a\x46\xf6\x82\xeb\xee\x14\x4b\xd1\xc3\x9d\x6a\xf5\x11\x20\x12\x67\xda\xaf\x3c\x7d\x45\xfa\x97\x85\x90\xc8\xf3\x5a\xaa\x0f\x19\x52\x4c\x37\x4e\x29\xc2\x32\x2e\xf2\x11\x0b\x95\x4b\x1d\x68\x20\xef\x80\x86\xcc\x43\x90\x9c\xf8\x69\xff\xaf\x8d\x83\x55\x56\x5a\xea\xd3\xf7\xa7\xad\x8a\x24\x15\x43\x50\x14\x47\x8f\x6c\xd4\x47\x28\xe3\xd3\x11\x4a\xee\x24\xd3\x60\x24\xe0\x09\x20\x6c\x48\xa7\x19\x7a\xdb\x5b\x4b\x6a\xe2\xdc\xbd\xb3\xda\x55\xb8\x42\x15\xb3\x04\x8a\x9b\xfb\xf1\x43\xbc\xac\xba\xd7\xa3\x40\x03\xce\x7d\x75\x4e\x8b\xb9\x5b\x2a\x24\x92\x18\xae\x5c\xd6\x4f\xe5\x1a\xc5\x95\x80\xd0\xd9\xca\x7f\x59\xb1\x0e\x94\x28\xe5\xf8\xe7\xde\xad\x88\x93\x83\xbe\xbb\xcb\xd5\x45\x7a\x8d\x8f\xbf\x7e\xb5\x76\x99\x3b\x43\xb0\x22\x15\x6e\x68\xf5\x8a\xce\x5a\x2b\x63\x27\x39\x12\x05\xcb\xd6\xeb\x79\x16\x10\x4f\xdd\x56\x14\xfe\x6f\x87\x80\xc8\x52\xb7\xee\x24\x5b\xb1\xfa\xa8\x74\x8a\x60\xa2\xa0\xa5\x56\x5a\xaa\x14\x72\x65\xd6\x44\xea\xfa\x22\x77\xd0\xc8\xc6\xd0\x00\x75\x17\x71\x37\x76\xeb\x49\x0c\xcd\xfd\x7c\x81\xc2\xb1\x0d\x04\xae\x7f\xe9\x49\x9d\x5e\x4f\x58\x22\x9e\xe3\x6b\x16\x7d\x93\x6f\x9a\x32\x29\x7d\xf1\xb7\xcd\xd2\x9c\xce\x91\x59\x73\x94\xf1\xf8\xee\xb7\xaf\xd1\x9e\x60\x80\x19\x18\x34\x03\x07\x26\xfe\xb6\xc6\x30\xa5\x19\xad\x5a\xc8\x21\x48\xa9\xf3\xef\x7b\x53\x16\x25\x65\x07\x11\x55\xce\xaf\xdd\x51\x60\x07\x9c\x4f\x2d\x1a\xe2\x49\x9a\x35\x9f\x8b\x68\x9c\x4c\x65\x68\x98\x73\xb6\xc5\xfb\xdb\x4b\xd8\x0a\xaf\xac\x52\x76\x18\x9d\xa4\x4c\xc3\x80\xc4\xdf\xc5\xe1\x96\xa6\xc5\xd9\x60\xd3\x59\x6b\xca\xd9\xfb\xe2\x51\xfd\x95\x53\x0c\xde\x0d\x85\x47\x17\x5c\xab\xf5\x82\x01\x66\x71\x3b\x27\x2f\xa0\x51\x59\xab\xfc\x3b\x8c\xe3\x10\xf0\x8b\x89\xf2\xee\x21\xaf\x5a\xe3\x0e\x9e\x13\xb6\xa9\x1b\x8d\x20\xbe\x25\xa2\x7e\xc9\x4d\x28\x2b\x43\x89\x54\x70\xfa\x27\xdd\x69\x41\x65\x53\xe5\x99\x19\x83\xca\x7a\x13\xca\x5d\x79\x53\xdc\xc1\xa5\x43\x35\xc4\x06\xae\x52\x0d\x30\x5c\xc8\x0b\xfe\xd3\x12\x37\xb4\xaa\x7c\xf4\xba\x4d\xab\x73\x19\xf6\xeb\xd4\x13\x13\x87\x5c\xe7\x13\x97\x27\x49\x1b\x36\xcd\x93\x14\xc6\xa1\x6b\x9a\xd4\x71\x42\x30\x63\xd8\xa3\xf0\xfa\x2a\xa1\x97\x88\xa3\xe5\xb6\x76\xf2\x91\x9b\x17\x67\xca\x3a\x66\xc2\xf6\xa8\xd4\x9b\xbb\xd0\xdd\x5f\xb9\xbc\xd0\x7f\xe5\xbf\xbd\x65\xb0\x58\x44\x2c\xc9\x68\x64\xbe\x75\x54\x9e\x17\x14\x06\xa9\x8c\x50\xaf\x71\x6a\x9c\xee\x0a\xe6\x07\xd4\x4d\xea\x66\xe3\x97\x2f\x2b\x61\x96\x93\x02\x65\x98\xfd\xdc\x26\xd9\xf7\x8a\x96\x3e\x09\xa4\x7f\x99\x3f\x46\x4f\x18\x26\x65\x75\x6e\xc4\x90\x1d\xfc\x3c\xbd\x55\x8b\xa0\xa0\x3f\x2c\xda\x84\x67\x84\xe5\xb7\x00\x5f\x94\xc5\x2e\xf9\xfa\x48\x72\x79\x71\x58\xb7\x39\x5f\x4c\xd5\x74\xb9\x73\x86\x96\xb1\x42\xe2\x58\x9c\xe8\x91\x3f\x35\x76\xa0\xe4\x1d\x26\x34\xa7\xfc\xff\xb7\x59\x98\x6f\x31\xc2\xf9\x9b\x51\xaf\xd0\x99\xb8\xe3\xbe\x96\x91\x7f\x63\xad\xa2\x67\x45\x7c\xdb\x85\xd1\x53\x6f\x7e\xeb\x41\x39\x07\xb5\x5b\x9c\x1a\x8d\x67\xce\x64\xf3\x7d\x80\x13\xda\xd1\xb3\xf3\x64\x2b\xdc\x45\x99\x8f\xe3\xfe\x62\x11\xef\xc8\x89\x85\xa9\x43\xab\x71\x13\x70\x5b\xa7\xe2\x2c\xcf\x89\x5d\xdd\x4a\x8d\x8c\x9c\x1a\x87\x1f\x19\x37\xbe\xac\x40\x66\x12\x5a\x66\xa9\xd7\xd8\xac\xd9\x2a\x9a\x21\x63\x04\x67\x14\xcd\x17\xbc\x73\x95\x0c\x5a\x3a\x56\x6e\xe8\xb0\x61\x52\x8d\xa8\x75\x8a\xb7\xeb\x35\xa5\x67\xb0\x6f\x6e\x00\xdd\x3d\x77\xc3\x16\x6d\xd4\x81\x2d\x41\x2c\x81\x50\xb9\xfe\x21\xbd\x53\xe4\x63\x42\xa8\x84\x8c\x2d\x8a\x44\x9d\x8b\x91\x07\xe6\xb7\x3e\xd7\x89\x1f\xaf\xb1\xe2\x6d\x9a\x48\x45\x4c\x1d\xce\x6b\x45\xdc\x6d\x62\x28\x3b\x0e\x9d\x49\x84\xa2\x58\x0d\x07\xc9\x06\x3a\xff\xd7\x80\x6f\xc3\x67\xd3\x72\xb9\xa9\x84\xc9\x03\x9a\x20\x48\x17\xb6\x3c\xec\xc7\x75\x3e\x1f\x99\x8f\x1a\x2e\xef\x6b\xdd\x8e\x9b\x10\x4e\xc7\x1a\xf6\x8a\x7c\x00\x75\x22\x80\x06\x3f\x7d\x47\x5f\x4d\x9b\x5c\x3f\x09\x10\xc0\xb3\xb2\x6f\x24\x4e\xb4\xbe\xc5\xe5\x11\x05\xa7\xef\x55\x4f\x03\x45\xc6\xff\x9a\xff\x51\xf1\x12\x45\x98\x4a\x90\xc1\xc7\x6e\x91\x9f\xa1\x86\x1c\xb7\x59\x2b\x96\xa2\xa7\x56\x66\x91\xa0\x0d\xea\x34\xe8\x8d\x33\x5a\x4e\xf6\x6a\xcd\x33\xdf\x26\x56\x6a\xd1\x91\x9b\x34\xeb\x1a\xdf\x46\x75\x5c\xb4\x68\x97\x17\xb7\x4a\x7a\xff\xf7\x19\x81\x68\xbb\x2b\x64\xb4\x8e\x91\xa7\x4e\x7b\x86\xec\xd7\x00\x0e\x98\x61\xcf\x23\x89\x40\x74\xe1\x93\x4a\x45\xe4\xe3\xba\x22\x2f\x90\x5b\xa3\x78\x96\x57\xc1\x80\x15\x1e\xf6\xfd\x73\xa4\x3c\x4a\x5c\xd1\x44\x7f\x99\x28\x95\x22\xe2\x88\x74\x11\x5f\x9d\xbb\x82\xeb\x64\xd6\x70\x50\xe8\x07\xb8\x35\x28\x15\x3e\xa5\xf1\xfa\x52\x35\x69\x01\xc0\xbc\xb0\x56\x29\x14\x1d\xcc\xaa\x10\x92\x3f\xfb\x82\xa2\x8b\xed\x96\x89\x98\xd9\x47\xd3\x02\x0d\xf2\x8a\xb9\x29\x21\x6f\x19\xff\x73\xb6\x92\xc7\xc2\x40\x94\xf9\x9b\x1f\x55\x64\x07\x69\x19\xd4\x51\xa3\xfe\x72\x2b\x13\x84\x69\x2d\xfc\xe9\xa5\x2d\x83\x28\x15\x53\x9b\x1f\xfc\x52\x7f\x51\xcf\x5b\xa1\xc9\x43\xdb\xf9\x45\xba\x77\xb2\x47\x61\x37\x06\xa3\x96\x5f\x0f\x6a\x21\x49\x22\xb3\x96\x5a\xb8\x47\x8d\x75\xd9\x33\x32\x15\xf4\x8a\x45\xd1\x7b\xad\x1e\xcf\xfd\xa6\x13\x0a\x94\x44\x61\xd2\xde\xec\x1f\x4e\x98\x3e\x7d\x52\x8a\x6c\x5f\x68\xab\x88\x95\x54\x20\x34\xb7\xf8\xa8\xd6\xb9\x60\xcf\xc3\x41\x90\x85\x99\x18\xbb\x07\x64\xc8\xf6\xd4\x4b\x7a\xff\xdc\xbf\x2c\xd7\x11\xc7\xa6\x89\x99\x60\x03\xe4\xae\xd3\x46\x16\xf5\x10\x00\x5e\xb0\x13\x79\xe4\x12\xb9\x8b\x9a\xd8\x31\x29\x7e\x36\xbd\x5b\x34\x92\x23\x31\x13\xe3\x92\xeb\x37\x68\xc8\x3c\xdb\x45\x56\x56\x28\x23\xf7\x50\x5d\x1e\x91\x4a\xe8\x54\x88\x50\xf3\x35\x7e\xf8\x0c\xbf\x39\x77\xf8\x7e\x7c\xd0\x88\xfa\xdd\x0a\x6b\xde\x6b\x53\xbf\x1b\x22\x1e\x37\x9a\x33\xd6\xec\xd5\x26\xff\x01\xad\xd7\x39\xc1\x04\x86\x70\xfe\x9b\xb2\xe6\xad\x53\x1f\x22\xe1\xaa\xb3\xba\x35\x70\x99\x11\xac\xc9\xb9\xe5\xbd\x79\x12\xd7\x04\x66\x38\x8e\xca\xd0\x67\x3d\xd7\x6b\xd5\xad\x19\xbf\xc6\x96\x0d\xd0\x25\xab\xc5\x5e\x2a\x64\x0d\x2c\xca\x7c\xa3\x30\x54\x97\x29\xc7\x5e\x42\x5d\x1c\xbc\x49\x80\x3f\x29\x0b\x42\x8f\x83\x7e\x1e\xd1\x54\x31\xc1\xe7\x4e\x74\xf1\xcb\xb6\xe9\x13\x61\xbf\x4e\x12\x1b\xca\x88\x9c\x96\xe8\xc4\x6a\xe8\x05\x1a\xe2\xea\xac\xea\xd8\xcb\x17\xe6\x39\xfb\x09\x45\xfb\x9a\x32\x97\x04\xbc\xde\x32\x36\x6e\x92\x7f\x1b\xfc\xeb\x60\xaa\xa3\xe0\xc5\x9a\xd8\x09\x7c\x58\x49\x4c\xdd\x7e\x85\x7a\x4d\x4b\xbd\xb9\x39\x7d\x5a\x04\x4c\xc5\xa1\x6f\x9b\x25\x2a\x9c\x3a\x36\x85\x62\x76\xb1\x14\x3d\x56\xd6\x05\xb0\x6a\x36\xb5\x30\xec\xae\xa3\x2d\x1a\xec\xb4\x87\xb8\x65\x54\xee\xc2\x92\xdb\x48\x4f\x69\x19\xd5\xc1\x88\x75\x88\xd6\xa4\x30\xbf\x47\x93\x70\x8d\x2f\x3e\x0f\x15\xfb\x0e\xeb\xbc\x83\x1a\xe6\x59\x28\x9a\x3d\x52\xd1\x9d\x43\x0e\xb2\x8b\xd8\xb2\xc4\xee\x60\xc5\x33\x9a\x43\x7c\x9c\x5d\x7d\xd0\xc1\x10\x05\x7f\x73\x6d\x2a\x7e\xeb\x13\x5f\x30\x9d\x72\xeb\x47\xb5\xd8\xbc\x89\x99\x44\xa9\xd7\x98\xef\x65\xcf\xb6\x1d\x7a\x16\xc3\x56\xea\xfb\x38\xd1\xd6\xe6\xd5\xc0\x9e\x49\xc6\xdc\x3f\x9e\xa4\xc6\xcf\xe4\x96\xb9\x23\xf5\xbe\xd6\x4c\x3c\x84\x60\xb4\xf8\xbb\x4e\x79\xd1\x6a\x1d\x0a\x78\xfe\x84\x22\xd2\x17\xc2\x82\x09\x22\xe5\x7d\xaf\xb5\x29\xb7\xa4\xca\x70\x20\xe4\xf2\x6a\x23\xf9\x75\xbe\xbb\xe3\xbe\x8e\x56\xc0\x88\xa1\x37\x9d\x0c\xdc\xa8\x00\x63\xbd\x75\x73\xf6\x59\x76\x52\xdb\xe3\x83\x8f\xe4\xdc\x2e\x5e\xc8\x9f\xe5\x9c\x50\xa9\x58\x0a\x7d\x84\x12\xe6\x92\x2e\x6c\x11\x5f\x18\x50\x45\xdf\xb8\xa0\x4f\xad\xfc\x2a\x80\xdc\xf8\xca\x24\xd7\x9c\xa7\xd1\x15\x99\x85\x99\xe0\x97\x83\x24\xc0\xc6\x2b\x15\x12\x32\x23\xf2\xfe\x44\xe7\xb6\xc9\x08\xe1\x08\xff\x6e\x39\x48\x5a\xfe\xba\xea\xe2\x14\x17\x5d\xb0\x51\xba\x7c\xb6\xbc\x30\x5d\x36\xc5\x42\x55\x78\xd9\xcb\xba\xf7\x9e\x8b\xbd\x0e\x51\x75\x6c\x72\x74\xeb\xce\x20\xc0\xac\x29\x90\x15\xe5\xb3\x8a\x86\x15\x46\x3e\xe2\x7c\xe6\xb9\x87\x78\xd2\x33\xa9\x43\x3d\xc2\x17\xe2\xcf\x2a\x9e\x2c\x88\x59\x1c\xf1\xb3\x65\xb5\xc0\x8b\xd3\x38\x65\x16\x4b\xd1\x5d\xed\x5a\x55\x69\x22\x47\xec\x1a\xa9\x91\xba\xf1\x82\xec\x0d\xbc\xea\xc9\xfb\x94\x93\x46\x84\x94\x71\x2e\xaa\xcb\xa7\xe3\x51\xe6\x22\x47\xc8\x38\xc3\xb9\xb9\xe4\x39\xf9\xa1\x51\x60\x3b\x18\x14\xc1\x73\xef\xbe\xa9\xf3\xeb\x7d\xa5\x50\xf8\xb9\x06\x01\xb5\x88\x6f\x86\x42\xee\x1a\xa2\xd1\x93\xeb\xe5\xf7\xc3\xd5\x26\xe7\x52\x7e\x69\x69\xd2\xd7\x60\xdf\xe7\x5b\x5e\xe3\x82\x62\x57\x86\x89\xe7\x27\x38\xad\xdc\xf3\x13\xf5\x64\xe8\x99\x36\x16\x4b\x94\x4f\xef\xe7\xe7\x6e\x09\xc1\x8c\x25\x5b\xd1\xdc\xd4\x6d\x5a\x29\x81\x3c\xb0\x11\xe1\xf7\xfe\xe7\x9d\x0a\xbf\xcd\x23\x09\x63\x70\x9d\xe6\xb5\x08\xa2\xf0\xc9\xc2\xb6\xbf\x62\x63\x52\x47\x71\xa5\x0e\x4f\xf4\x6d\x3b\xed\xec\xb1\xd7\xa3\xce\xf0\x67\x69\x3e\xf0\xb4\x8e\x93\x9d\xc3\x1c\x2e\x71\x24\x54\xcd\x93\x77\x10\xff\xb8\x67\x5e\xcb\x8a\x4b\xcc\xb8\xf1\x86\x1b\xe2\x6f\x59\x5b\xa8\x31\x79\x28\xf5\x13\xeb\xe6\x3d\x0f\xeb\xf3\xeb\xf8\x70\x49\xf4\xf3\x37\x1f\x10\xd2\xeb\x0e\x6e\x20\x6e\x88\x64\x7c\x75\x14\xd7\x47\x9e\x3e\xa5\x58\x8a\x1e\x7d\xb2\xe5\x3a\xb2\xb0\x2e\x67\x10\x77\x4d\xd1\x35\x58\x09\x13\x95\xfe\x47\xdb\x07\x8b\x03\xed\x89\xda\x88\xef\x00\xe7\x8d\x6b\xd9\xd1\xb2\x20\xe9\xa0\xa3\x7f\x10\x4e\xc2\xbe\x87\x6a\x10\xaa\xff\xaf\x72\x5d\x6a\xc8\x8d\x9f\x6f\xfc\x8b\xc7\xbf\x24\xdc\x3b\x6c\x0c\xbd\xe7\xb0\x47\x55\x61\xf0\x80\x3a\x98\x09\x38\x5c\x61\x8d\xd2\xfa\xf8\x28\x08\x99\x85\xe2\xd6\xf4\xf2\xd3\x57\x2a\x37\x1b\x33\x55\xa8\xdd\x18\xc9\xa7\x20\xc8\x24\x90\x66\xbe\xbe\xa6\x5d\xba\x0e\x64\x54\x94\x72\xf9\x73\x8a\xa3\x6d\x58\x06\x53\xdd\xb8\x6a\x39\xb8\x87\xa3\xae\x66\x63\xdf\x57\x91\x09\xf9\xea\x24\xfe\x5c\xe6\x22\x35\x00\x45\xe3\xda\x87\x29\x9d\x28\x62\x18\x74\x11\x13\x6f\x25\xe7\x12\x1d\xd7\xff\x60\x88\xfd\x44\x52\x2d\xf7\xea\x5c\x39\x32\xad\x61\x15\xe3\xb5\xf0\x30\x8f\x16\xbe\x89\x05\x64\xa2\xcf\x5e\xfe\x5f\x90\xef\x63\x6e\x5e\x3a\x57\xe1\x74\x7a\x18\xb1\x32\x47\x1c\x0e\x78\x28\xfb\x6e\x6b\xc4\x13\xb2\x1a\xe3\x87\x0f\x56\x74\x19\x38\x0c\x00\x80\x70\x6f\x0d\xc9\x6a\xb9\x78\x89\x76\xc2\xdf\x8b\xd7\xe5\x62\x06\xcc\x3f\xe3\xbb\xf3\xf8\xc9\x73\xe0\xc2\xf2\x13\xfe\x8f\x81\xea\x3c\x90\x21\x27\x5d\xaa\xe2\xe8\xb9\x06\xdc\x97\x8f\xe8\x9a\x74\xd5\x8c\x64\x52\xe9\x58\xf6\x5e\x60\x64\xda\xc9\x68\xf5\xb7\xf3\xb2\x48\x56\x6c\xb9\xa1\x67\x69\x15\xe5\xf7\x9e\x19\xd1\xa5\x4f\x44\xab\x2c\xe9\x84\xa0\x32\xb9\xe1\xd8\xdf\xc4\x72\xf0\x70\x52\x3c\xae\x49\x08\x5b\xd4\x15\x86\x54\xfc\x2f\xac\xbe\x4c\x81\x00\x34\xeb\xb0\x2a\xeb\xcd\xaf\x7b\x99\xd3\xe2\xee\x4d\x75\x39\x65\x29\xbb\x6c\x9c\x4e\x7b\x75\xeb\xd4\x4b\xc9\xa0\xd1\xeb\x8a\x70\x76\xcd\xc3\x5d\xc5\x52\x74\xd9\xcb\x1a\xcd\xb1\x4e\x6a\x38\x2b\x07\x9a\x3b\x78\xbc\x7f\x52\xd7\x39\xc2\xb6\xa7\x30\x75\x7f\xf6\xd4\x81\xa7\x2b\x0e\xc5\x0d\x2f\x2c\xf5\x24\x6c\x17\x44\x31\x5a\xda\xeb\x5d\x7b\x14\x7c\x05\xf1\x80\xea\x9c\xb7\xb6\x0d\x14\x97\xcb\x0c\xfd\xa4\x80\x1c\x7b\x50\xcb\x99\xa1\x55\x4d\xf9\xca\xf9\xaf\x2c\x4e\x0b\xd4\xba\x13\x16\x4b\x91\x37\x4c\x1b\x0b\x61\xe4\x83\x63\xb5\xe4\x6d\x9e\xd8\xac\xeb\x59\xfb\xbe\xc3\x01\xa8\xf2\x7a\xfc\x97\x46\x79\x77\x91\x46\x18\x34\x36\x38\x43\x94\xc9\xaf\xe3\x80\x63\x30\x37\x87\x7f\xf7\x1a\xed\x17\x78\x9a\xc4\xf4\xc2\x43\x32\xf2\x50\xcf\xc4\xc9\x5a\xf1\x0b\xf5\x16\x95\xcb\xb2\x83\x5d\xce\x35\x8c\xce\xbc\xcd\x93\xb6\x8d\x9c\x4a\x9d\xd4\x39\xfd\x72\xf2\xd6\xec\x65\xec\xc2\xb8\xe6\x73\xe3\x80\x9f\x3d\xa9\x00\xc2\xc0\x54\x91\x6b\x50\xfc\x5e\x00\x15\x1d\x0c\xab\xeb\x68\x94\xb2\x57\x09\x30\xf6\xe2\x02\x14\xa0\x0a\xf9\x6f\xda\xfa\x91\x62\x75\x8e\x96\x12\xf7\xe5\x9d\x7d\xba\x80\x30\x0b\x3c\x9c\x9e\xf2\x1f\xac\xbe\x4e\xab\x0e\x88\xd9\x82\x33\x2c\xdc\xbc\x89\x07\xd5\x3a\xe1\x26\x09\xa7\x56\x89\x51\x73\xb3\xce\xc1\x38\xc7\x46\x69\x69\x31\x7e\xda\xa8\x99\xed\x48\x8d\x6f\xbc\xa9\x96\xb0\x28\x05\x1a\x1a\xd7\x2c\x92\x99\x02\xfc\x59\x80\x49\x66\xec\x38\xa6\xe0\x8f\x68\xe8\x73\x37\xb1\xd3\x03\x2e\x17\xa1\x96\x17\x12\xff\x32\xe3\x7a\xad\xae\x24\x60\x77\xc3\x2d\xf8\xd3\x28\xfd\xfc\x0c\xf1\x99\x19\x68\xaa\xe7\xf6\xbf\x22\xc2\x6b\x0d\x89\x29\x7f\xef\x03\xf2\xc8\x13\x0b\x23\x08\xa5\x87\x3b\x84\x54\x0f\xc1\x0c\x84\x60\x4d\xc0\xeb\xfc\xe0\x12\x9e\x23\xee\x0e\x99\x87\x9b\x4a\x8e\xe8\xde\x9e\x15\x8c\x02\xf8\xc7\x45\x0c\xe0\x72\x95\x69\x9a\xd0\x4c\x68\x23\x06\xac\x55\xe5\x18\x7e\x6e\xb8\x8e\x45\xa3\x35\x4e\x08\x9b\x59\xd0\x06\x75\x34\x14\xd3\xad\xfc\x84\xa7\x14\xb9\x4b\x5c\xb7\x11\xb3\x94\xf5\x55\xe1\x33\xed\xfc\x70\x75\x51\x56\xeb\x28\x96\xa2\xe3\xf3\x35\x89\x11\x2a\xed\xdb\x9f\xea\x23\x66\x9b\x80\xf3\x2b\x96\xa2\x39\xa7\xe4\x62\x2c\xfe\xc1\x30\xd5\xe5\x52\x02\xd1\x28\xe5\x34\xd7\x11\x58\x0d\x43\x38\x7f\x64\x99\xb6\x1d\x27\x56\x80\x99\x9b\x00\x0e\xbe\x3c\x96\x5f\x9a\x05\x60\x07\x2a\x52\xc0\xb9\x47\xb4\xb8\x67\xd2\x20\xc8\xde\xd1\xdc\x97\xa6\x49\xdc\x99\x9d\x4d\xed\xb7\x3f\x97\x0e\xc7\x91\xa7\xcb\x6f\x46\x43\xfb\xa4\x31\x89\x51\x38\x69\x53\x6e\x1a\x2c\x4e\x65\x02\x87\x88\x2b\x9e\xe8\xd7\x56\x7f\x65\x3d\xcf\x47\x0a\x27\xd7\xc8\x27\x90\x8e\x6a\x93\x8f\x3d\xaa\x5f\xf6\x3a\x3a\x58\x8b\x2b\xa7\x57\x64\x61\xb9\x00\x72\xb8\xa8\x99\xe0\x86\x75\x43\x54\x08\x20\xea\x4e\xe2\xed\x3f\x5c\xaa\xe9\x4d\x38\x38\x0e\xb7\xf1\xe7\x1d\x23\x8c\x0d\xa1\x58\x84\x51\xc2\x49\x4d\x87\xae\x4a\x79\xb1\xf6\xf4\x85\xec\x94\x60\xc2\xf4\x69\x53\xa1\xb2\x2f\xac\xd3\x1a\x83\x04\x9b\xc5\x91\x3a\x4c\xd9\x46\x10\xaf\x41\x1d\x4e\xec\xdd\x7a\x2e\xfb\x99\xe2\xff\x2b\xba\xe3\xf3\xef\xc8\xd3\x88\xc2\xc0\xa6\x8c\x4b\x68\x0b\x6f\xc9\x9e\xb3\x19\x7f\xb9\xba\x03\x15\xde\x9b\x9b\x75\xe6\x69\x55\x1f\x1b\x15\xd6\x6c\x1b\xa5\x45\x36\xa9\xfc\xcb\x51\x23\x10\xeb\xa7\x6e\x94\x41\xc4\xef\xc2\x0c\xb4\xe0\xf2\xdf\x9f\xa9\x3d\xc4\xb8\x25\x83\xb2\x3c\xfa\xdc\x3b\x03\x95\x5a\x26\x39\xc4\x7f\x56\x4a\xd1\x2e\x8c\x6a\xd8\x83\x2f\x7e\xe4\xb8\xee\x45\xee\xd4\x5c\xc1\xad\x2f\xf5\xe6\x3e\xf6\xa8\xa2\x24\xa3\xfa\x4a\x0e\x1a\x9e\x62\xae\x26\x4e\x9d\x1e\x3f\xd9\x7b\x36\xea\x8e\x67\x8c\x34\x51\x66\x5d\x32\x6e\x41\xf6\x97\x35\x88\x4f\x24\xfa\x34\x7f\xf2\xd1\xeb\xb5\x3b\x03\x8e\x61\xa8\x91\xa1\x4a\x45\xab\x67\x4b\xc4\x29\x4e\x53\x62\x5d\x53\x90\xb0\x71\x25\x48\x90\x46\x8d\x07\x86\x77\xe9\x53\xdf\xf8\xc5\xa7\xe3\xd4\xef\x8e\x68\xd3\xc8\x60\x94\x81\x83\xd5\x86\x6c\x90\xaa\x63\x64\x72\x65\xdd\xfc\xfc\x33\xf2\x20\xc5\x19\x11\x7b\x20\x7c\x9a\xff\x65\xa4\x58\xcd\x83\x84\x9d\xf0\x0f\x33\xce\x3e\xc4\xa7\x0e\x95\xd0\xb3\x00\x61\xc1\x3b\xed\xe1\x91\xea\x20\x27\x34\x62\xe3\x0f\x35\xee\xa9\xf6\x8b\x55\x91\xc5\x52\xf4\xcf\x0f\xb5\xec\x51\xc1\x8c\x84\x37\x46\x77\x5a\x0a\x44\x2f\xae\x7a\x4d\x94\xce\xbf\x83\x27\x86\x28\x64\x58\x75\x52\x32\xf3\x75\x45\x14\x36\xae\x34\xe3\x2f\xf3\xa5\xed\x7a\x76\xf6\xdd\x38\xc3\xa6\x88\x96\xbf\x0c\x4a\x23\xd1\x84\xe9\x53\x8b\xa5\xa8\x70\x41\xf3\x0b\xa4\x65\x71\x8f\xde\x38\x25\x49\x82\x93\xe2\x13\x93\xc3\xef\x69\x0b\x55\x54\x0f\x42\x96\x80\x46\x73\xd3\x16\x28\x7b\x23\x86\x1b\x82\x9e\x57\x98\x3a\xab\x6f\x5a\x48\x40\xf6\x5d\xbb\x51\x9b\x33\x53\xea\x72\xea\x4a\xa1\x79\x41\xb5\x69\xf0\x42\xcf\x24\xa9\xa8\xda\x5c\x0d\x7f\x46\x2b\x37\xae\x5a\x15\xff\xbc\x7b\xb6\xa6\x8b\xbb\xce\x56\x7f\x74\xa3\x7d\xc3\x40\xd1\x72\x99\x66\xc2\x7e\xee\x35\x5e\x9c\x24\x84\xd5\x43\x3f\x60\x80\x4f\x48\x64\xcb\x36\x0d\x51\xb2\x0a\x73\x08\x12\x12\x95\x73\xcf\xf2\x84\x5e\xaa\xc3\x52\xff\x4f\xaf\xf2\xe6\xb7\x33\xfe\xb3\xb7\x67\xc8\x4a\xda\xeb\x30\xa1\x0e\xdb\xb7\x58\xec\x58\xbd\x0a\x66\x9e\xea\xee\x95\x1b\xba\x17\xa2\x72\xf1\x4e\xea\xc4\xc7\xa7\xb8\x08\x39\x2e\x75\x48\xa3\x75\xad\xfa\xed\x7d\xe9\xbd\xe5\xe2\x2e\x97\x0e\xd7\xc2\xa5\x87\x9c\xa6\x2f\xe0\xf0\xb9\xfd\x8e\x02\x7d\x47\x5c\x8d\x3e\x7a\x73\xb1\x52\x5a\x53\x9f\x43\x19\xc6\xdf\xd6\x5f\x19\x06\x5b\xd0\xbb\x1e\x3a\xac\xad\x86\x2c\xde\xa3\x26\xe6\xa8\xbd\x6f\x69\x23\xf9\x26\x23\x48\x09\x7d\xb3\x0f\x8a\xc1\x54\xaa\xd0\x1c\x9d\x52\x7a\x5e\xd3\x46\x84\xb9\x60\x8a\xd9\x9b\x9b\xf5\xa4\x3a\xbe\x67\xf0\xa1\x72\x5f\xb9\xf4\x2a\xad\x49\xaa\x86\xbe\x2d\x56\x33\x77\xbd\x71\x79\x7a\x20\xe3\xca\xa0\x20\xe3\xbc\x87\xab\x34\x20\x08\xa2\x80\x28\x9c\x3f\x3b\x4b\x1d\x04\x35\x48\x00\xae\x7a\xf1\x7b\xf9\xec\x13\x2d\x5b\xd7\x4a\xe8\x70\x20\xee\xc9\x81\xea\x64\xcf\x02\xbb\x70\xe3\x43\x91\x8a\xae\xa1\x66\xad\x58\x8a\x26\x9f\x4f\xdf\x8b\x90\xe0\x98\x21\x04\x55\xe2\x90\x53\xc3\xb8\x2e\x36\x34\xd3\x0e\x2a\x64\x3c\x29\x66\xd1\xb3\x29\xfd\xf7\xd3\xa6\x82\x7c\xe7\xbc\xf9\x5a\x05\x82\x02\xe2\x57\x50\xdc\x22\x36\x93\x26\x72\x9a\x16\x90\x91\xd7\x84\x79\x84\xd8\xdc\x1e\xde\x30\x50\xb9\x3d\x15\xcc\x85\x28\x6f\x72\xf8\xf9\x5f\x1a\x22\x75\xef\x72\x4a\x9b\x4f\xdb\x0c\x27\x9a\x96\xb9\x52\x8f\x84\xc2\x56\x29\x6b\x22\xd3\x56\xf4\x1b\xa3\x27\x4f\x6b\x93\xd5\x3a\x16\xcd\x2e\xd7\x18\x3a\x31\x5c\x15\x2f\x49\x84\x76\x39\x58\xf8\x27\x5b\x14\xbc\x46\x66\x92\x32\x74\x1f\xaf\xcb\xee\xb0\x2c\x92\xbc\xc6\xdc\xf8\x71\xba\xd4\x86\xe9\x27\xc9\x6e\x47\x77\x9b\x82\x92\xf1\xac\x2e\x54\xe5\x91\xe2\xb3\x2f\x0f\x56\xde\x7d\x05\x33\xbe\x52\x2a\xac\xd9\xa7\x2f\xab\xad\xd0\xc4\x02\xf3\xfe\xe5\x0b\x82\x64\x8e\xb9\x6e\x41\xfe\xdd\x01\x0a\xea\x91\x80\xd5\x06\xd7\xe6\xb0\xa6\x64\xa3\x6c\x03\x5b\x0c\x25\x9a\xc5\x71\x8d\xf1\xc3\x23\x72\x40\xea\x22\x06\x63\x08\x59\x47\xd8\x97\x0c\x55\x10\x7a\x44\x18\xe0\x8b\xe3\x62\x1c\xd1\x9d\xf9\x81\x76\xde\x28\x57\x95\xd8\xff\x9b\x91\x23\xb5\x63\x10\xd8\xd4\x6b\x66\x14\x58\x72\xbb\x9e\xd2\x12\xac\x4c\x39\xc6\x03\xb3\x53\x7b\x0a\xc0\x5a\xe7\x07\x5c\xa5\x50\xb2\xc0\xc0\xd4\xe3\x5e\xd7\x80\x3a\x5e\xa4\x2c\xfe\x6d\xea\xf1\xc7\xf3\xc9\x39\xaa\xd5\x14\x43\xdc\x52\xe5\xc8\x9c\x01\x99\xca\x2b\x2e\xae\xac\x2d\x7c\x50\x79\xaf\x8d\x82\x40\x41\x82\x47\x4b\xd6\x0f\x54\xb5\xa8\x7c\x1f\x0c\x1d\x7b\x0a\x8a\x94\x34\x86\x20\x06\xa5\xcf\x3f\x3d\xa3\x94\xfb\x94\x05\x0e\x02\x4a\x40\x61\xf9\x41\x5d\x71\x85\x05\x49\x6b\x6f\x9c\x9d\x28\x37\xef\xa0\x43\xeb\x22\xc6\x75\x43\xf2\x3f\xab\x28\x95\x20\x62\x5d\x04\x70\x2e\x39\xaa\xf1\x5a\x6c\x24\x5b\x87\xd1\xcf\xcb\x8f\x86\xbb\x03\x86\x13\xa3\xfd\xa6\x86\x95\x0c\xeb\x36\x16\xd6\x5f\xbd\xc6\xe8\x35\x1a\x9e\x0e\xa0\xbf\x4e\xdc\x14\x43\xd4\xbb\x35\xd2\x6e\x3e\x65\xb4\x96\xd1\xd3\x89\x4e\xed\x17\x23\x42\xe4\x65\x1c\xd1\xff\x43\x5b\x57\xfb\x0e\xed\x4a\xc4\x23\x5f\x59\x2b\x37\xbc\x93\xa7\x4d\x82\x9a\x6f\xbc\xb6\x2e\xe6\xfb\x1e\xae\x8c\xdf\xae\xe8\x3b\x9b\x88\x39\x42\xb0\xf3\x89\x45\x4a\xa1\x41\x38\xf5\xff\xa5\xd3\xd9\xca\xaf\x89\xa1\xa9\x25\xc0\xf1\xe0\xcb\x74\x78\xc4\x17\xde\xd1\x66\x26\xc4\x87\xb5\x9b\x54\x30\xbb\x6a\x80\xa6\xd5\x49\x04\x3e\x2a\xdf\x6f\xa3\x46\x99\x0e\x7d\xe2\x61\x3f\x51\x6e\x61\x4f\xca\x17\x0b\x97\x47\xb6\xc4\x03\x75\x83\x08\xea\xf9\xc2\xca\x2e\xfa\xd2\x24\x45\xf5\x0b\xb4\xce\x56\xbc\xd1\x82\x60\x89\xff\x27\xa7\x52\x5e\x77\x54\xaf\x44\x4d\x26\x10\x0e\x9c\x1d\x66\xad\x4d\x00\x08\x3e\xc0\x4c\x81\xab\xd3\x67\xa8\x3a\x07\x22\x40\x2a\x4e\x6e\xff\xa7\x82\x16\x21\x80\x00\x33\x21\xbb\x93\x5b\x75\x40\xf1\x12\xa5\xbe\x3a\x5d\x7a\xe4\x7c\x0b\xc0\x9c\xcb\xb0\x88\x6a\xfc\xff\x69\xcb\x0a\x4e\xd7\x4a\xb6\xe5\x85\x11\x43\xf4\x90\xec\x03\xfe\xf9\x4b\xdd\xb2\xe2\x0a\x03\x1b\x29\x4a\x0d\xb9\xe7\xfb\x65\x5f\xb3\x4d\x79\xa1\xa1\xb3\xdb\xc7\x6c\x69\xd9\x1d\x38\xa8\xee\x13\x90\xf1\x28\x45\x47\x0c\x9e\x80\x96\x11\xec\x79\x49\x9d\x95\xff\xe3\x3b\xfa\x18\xc0\xa9\x24\xab\x8d\x35\xab\x95\x33\x67\x63\xcc\x95\x63\x37\x0e\x56\x67\x88\xd8\x83\x95\x4f\xb4\xf3\x98\x96\x13\x2d\x58\x07\x25\x57\x76\xc5\xee\x8b\xa1\x00\x85\x8a\x51\xf4\xfd\xff\x9f\xae\xb7\x8f\x97\xa2\xb8\xd2\xc7\x99\x97\x18\x42\x00\x2f\x70\x79\x11\x10\x11\x11\x08\x30\x57\xb8\xc0\xe5\x65\x09\x51\x40\x44\x45\x06\x91\x10\x62\x58\xa5\xa6\xa7\x66\xba\xee\x54\x77\x8d\xd5\xdd\x73\x5f\x82\x86\x35\x84\x10\x62\x8c\x71\x5d\x96\xb8\x86\x35\x84\x18\xe3\xa2\x21\x86\x35\x86\x18\x62\x88\x31\x2e\x61\x59\x34\x7c\x8d\x3f\xe2\xba\xc4\xb8\xae\x21\xae\x4b\x08\x21\xae\xe1\xb6\xbf\x4f\x9f\xaa\xee\xaa\xae\xb9\xfb\x57\x3e\x91\x3b\x33\xfd\x52\x75\xea\x9c\xe7\x3c\xe7\x79\x1e\x54\x08\x11\xf1\x28\x72\x50\x09\x1c\x13\x33\xfb\x0f\xfd\x5f\x94\x7f\x92\xa8\xd1\x7c\x66\x94\xa8\x7e\xa1\xb1\x08\xe7\xe6\x8a\x96\x78\xf2\x9a\x73\x52\x11\x34\xc4\x33\xdd\x86\x90\x08\xc0\x9f\x29\x37\xf4\xbe\xcc\x07\xa6\x6b\x4a\xf3\xb8\x9a\xd0\xb6\xf3\x63\x8c\xc2\xd4\x62\x5c\xb0\x30\xa1\xb5\x2b\xde\xfc\x9e\xb7\xa4\x2a\x0f\x0b\xa4\xae\xf3\xd2\xa1\xa6\xa2\x8a\x55\x4b\x29\xaa\xec\x7b\x20\x8d\x1a\x95\x09\xa2\xfd\xf8\xa5\x87\x8f\x1b\xce\xe8\x2c\xf0\x29\xf2\xa2\x94\x50\xec\xdf\xcc\x90\x37\xd3\xad\xa6\xf9\xed\xa2\xc3\xfd\xbc\xd1\x07\x76\x98\x8b\x63\x47\xfc\xdc\x90\x92\x39\xc4\xc5\x99\x2b\x89\x1d\x61\x78\x28\x9d\xe6\x4f\x12\x72\x11\xe1\x17\xf2\x6a\x05\x57\x50\x94\xce\x49\x67\xac\x2c\x7d\x26\xc9\xa5\xe6\xcf\x82\xf7\x30\x67\x47\x3a\xee\x34\x48\x94\x46\x11\x14\x2b\xf4\xf7\xe5\x16\x3c\xa5\xd9\xc9\xc1\xc8\xbd\x50\xc9\xf9\x9b\x17\x94\x71\x03\xd2\xf6\x6d\xf6\x8f\x5a\x5f\xa1\x7d\xd6\xac\xd9\xd1\x0f\x7b\xe7\x15\xaa\x5d\x13\x74\x17\xb3\xf8\xf8\x50\x6f\x4a\x06\xc6\x4f\x29\xcc\x2d\x79\x40\x0a\x52\x50\x16\x54\x05\xba\x98\xfb\x9f\x9d\xb2\x2e\x29\x11\x46\x35\x55\xe6\x6c\xb8\x46\xe4\x27\x5c\x7a\x9f\x64\x4e\x9e\x1f\x6f\x4e\xc9\xe8\x83\x66\xe1\xe2\x53\xad\xc6\xb1\x22\x98\x3f\xab\xca\x57\x28\x2a\x57\x5c\xfd\x34\xdb\x01\x66\x66\x1a\x46\x75\xc2\x8e\x57\xd4\xac\x9d\x9b\x86\xe9\x67\x85\x27\xba\x32\x9f\xdd\xac\xb5\xcf\x2c\x9b\x51\x24\xbc\x6f\xbf\xbc\x53\x30\x06\x56\x70\xdc\xa4\xaf\x90\x7d\x71\x95\x42\x84\x7d\x54\x0a\x28\x74\x17\x4d\x44\xf8\x8b\x17\xa4\xec\x88\x73\x95\x98\xc7\x5c\x7f\x83\x11\x47\xa9\xe6\x1e\x97\xc9\xe4\xb5\x16\x3d\x90\x6a\xe0\xa4\x7d\x6f\xa5\xf1\xa1\xc0\x57\x4d\xe8\xbc\xbd\xd7\x2c\xd3\xdd\x58\xd0\xac\x18\xde\x3f\x5c\x33\x47\x24\x09\x40\x9f\x5b\x66\x5c\x47\xc2\x7f\x83\x8c\x73\xdc\xdc\xf4\x33\xec\x58\xd0\xde\x16\xcf\xc1\x5c\xb1\xc7\xd0\xb3\xc3\x42\xc2\x53\xc9\x4d\xaf\x1d\xa4\x19\x9b\x0a\x09\x81\x13\x53\xb4\xb2\x89\xa3\x2e\x08\x00\x47\x4d\xbb\x4e\x9b\x79\x38\x19\x63\xc9\xb5\x4c\x69\x7a\x54\x3d\xd1\x21\x2d\x54\x9b\xb7\x6c\x32\x69\x12\xc8\xad\x82\x38\x93\x68\x0c\x9f\x7c\xbb\xbf\xec\x45\x0d\x36\xfd\x7a\xa8\xba\xc8\x36\xe1\xbd\x9c\x3b\xf1\xf2\x58\x2d\x01\xee\x14\x89\xa0\x5a\xca\x2f\x5d\xd0\x8c\xea\x88\x53\x82\x2a\xf5\xc5\x16\x55\x28\xcd\x9f\x3f\x4f\x1a\xfa\x66\x6f\x09\x8d\xa7\xc4\x4a\x86\x3b\xdd\x17\x1e\x1d\xef\x2a\xd4\x9e\xf6\x34\x1d\x4f\x5f\x99\x20\x72\x52\xca\xba\xc4\xe4\x24\x04\xa8\x0b\x06\x9a\x67\x13\xb0\x16\x35\x30\xdf\x9c\xdb\x44\x40\xc4\x2e\x48\x0f\x09\x58\xe9\x1f\xcf\x28\x85\x49\x2d\xcb\x0f\x17\x0e\x30\x90\x18\x4e\x7c\x62\x11\xcf\x89\x57\xe8\xd3\xbb\xb5\x40\xa3\xeb\x92\xbe\x68\xf7\xa3\x05\x13\x7f\x6a\x74\xc5\xf8\x5a\x44\x63\xa6\xbf\x60\x6f\xde\x30\xf4\x52\x4d\x8c\x03\x37\x2b\xc8\xe5\xd6\x6f\x14\x41\x27\xe6\x45\x46\x95\xf5\x6a\xe3\xfc\x96\x18\x7b\x9c\x3c\xb4\x9f\x14\x07\xf8\xf5\xab\x97\xdd\x7a\xed\x4d\xeb\x6e\xb9\x76\x7d\x74\xeb\x6f\x1c\xb9\x44\xe6\xe8\x94\x46\x4b\x8e\x63\x56\xe5\xa8\x2e\xe2\x58\xf6\xe8\xac\x34\xf0\x0c\x44\x8c\x7e\x8e\x98\xbe\x0c\x31\x14\x13\x2d\x1b\x68\x09\x42\x23\xe8\x5f\x0f\xa7\x19\x7d\xb1\x53\x5c\x6a\x09\xe4\xfe\x6a\xab\xa1\x93\xe4\x46\xa7\x61\xf4\x3f\x72\x11\x1f\x32\xbc\x7a\xa4\x16\x81\xe0\x84\x1e\x38\xaa\xa5\x40\xc9\x2c\x82\x68\xf6\x90\x63\x1a\x22\xcf\x84\x0a\xde\x48\x9e\x0e\xac\xd3\xe2\xc1\x98\x1f\xd1\xf4\x5a\x45\x94\x4a\x45\xa6\x98\x45\xf1\x99\x81\xaa\xe2\xa9\x72\x8c\x01\x0b\xc9\xfd\x70\x6d\xfa\x26\x63\x12\xf9\xcc\x54\x8e\x70\xf5\x33\xc6\xb7\xbb\x06\x03\x33\xf7\xd1\xf5\xd2\x5a\x05\x34\xfb\xe2\x6e\x57\xfe\x53\x83\x8c\xa7\xe3\x94\x10\xe7\xc8\x8b\xa5\x1c\xf3\x6b\x4f\x69\x03\xf9\x81\xb6\x51\xfd\x5e\x15\x6d\x66\x2f\x5c\xb8\xb0\xad\x50\x0c\xe7\xee\xd2\x52\xa6\x28\x0b\x11\x1d\xaa\xbe\xec\x29\x03\xbc\x01\x6a\x1a\x8f\xcf\xfc\x7f\xdf\x6e\x16\xf2\x51\x1d\x26\xc6\x85\x8e\x48\xec\x64\x3d\x2a\x13\x65\x2a\x14\x0e\x3f\xa7\x92\x61\x1b\x35\xf4\xd3\x78\xe8\x76\x83\x1b\x29\x26\x1b\xe2\xb0\xdb\x73\xba\x45\x9e\x27\x9e\x8f\x25\xa5\x3e\xb3\x75\x5a\x52\xf4\x2e\x9c\x55\x28\x86\x77\x4c\x31\x11\xe8\xd8\x71\xab\x2f\x7f\x53\xfd\x23\xe6\xd5\x72\x22\x3b\x42\xcd\xb2\x28\x53\x9e\x17\xfb\x63\x6d\xd2\xcd\x01\x4e\xd3\xde\xe4\xf7\x18\x74\x00\x97\x68\x23\xed\x20\x87\x05\x91\x28\x7f\xc5\xf1\xcb\x8d\x3d\x0d\xb5\x57\xda\xef\x25\xbb\x67\x89\xc2\x54\xca\x44\x8c\xe3\xc7\xa6\x20\xdb\xf7\x0c\x53\x59\x71\x59\xda\xf9\xe7\xce\x69\x01\xb5\x42\x2a\xb1\x8f\xe8\xe1\x86\x09\x20\xf6\xf8\xc4\x89\x21\xa4\x5d\xab\x35\x81\x22\x26\x2f\x31\xdb\x71\x50\x61\xa2\xc8\xe7\xcc\x8a\x73\xaf\x5c\xfb\x0b\xf2\xa7\x2d\x2b\xa8\x27\x04\x24\xe7\x1d\x0d\x47\x73\x90\x55\x83\xbf\x5d\xdc\xa2\x3b\xa5\x80\xbc\x01\xec\xbf\xb7\x0c\x9d\x43\xe2\xd4\x91\x15\xfb\x98\x5d\x2f\x35\xc1\x6f\x42\xd5\x9e\x26\xdf\xa3\xf0\xfe\x9d\xe9\xf7\xa4\x8c\xc4\x45\x5f\x33\x9d\x6a\x0c\x9c\x9c\x06\x9e\x59\x43\x56\x4f\xe1\xf4\x8d\xfd\x18\x44\x8b\xf3\x71\xd4\x5e\x71\x87\x37\x80\x6f\xaa\xa0\x99\x84\xef\xb7\x5c\x6e\xe4\x46\x4a\xfd\x5b\x4d\xfa\x8f\x39\x6f\x30\x15\x58\x15\xf7\xc4\x84\xa8\xdc\x8f\x96\xa7\x53\xe7\x39\xb3\x45\x38\xfa\xf9\x0d\xe9\xc8\x29\x7c\x2e\xfa\x53\x16\x7f\xed\x41\xcd\x34\xd4\xb2\xb0\xb4\x44\x0e\x37\x89\xd5\xbf\x0e\x77\xa3\xd8\xa1\x3a\xbf\xb5\x25\xfd\x90\x29\x63\x35\xc9\x05\xef\xcb\xcd\x6d\x48\xef\xab\x80\x58\xa4\x8c\x0b\xc5\xb0\xd7\x50\x1c\xf0\x94\xf8\x77\xe6\xec\x2a\x21\x97\x70\x5d\x7b\x74\x42\xe7\x3f\x3d\xc9\xb4\x61\x15\x3a\xa2\x22\xf2\x3e\xde\x6d\xf0\x5e\x20\x64\x54\x08\x2e\xb7\x09\x4e\xc2\xfe\x59\xaa\x22\x9f\xdd\x3e\x1f\xc4\xc5\xb6\x18\x45\x85\x68\xa3\x4c\x3d\xab\xf1\xa7\xac\xa0\x52\x89\xc9\x27\x13\xee\x4f\xb7\xb2\xba\x88\x6f\x97\x39\xea\x42\x34\xa6\xf5\x7f\xe7\x51\x53\xaf\x19\xf4\x86\x41\x22\x21\x9c\x7b\x85\xaa\xbd\x84\x2e\x9b\xcd\x58\x93\xd2\x40\xfe\xd2\xd6\x19\x5a\x2a\x1f\xb8\x00\x78\x80\x2e\x7a\x15\xbb\x4d\x84\x96\xbe\x7c\x5e\xca\xcd\x15\x3c\x0b\x71\x51\x98\xe5\xd7\x1b\x5d\x74\x8e\xa9\x1c\xbb\xc9\x5f\x77\xd8\xf4\x6e\x00\x0c\x59\x2e\x96\xc7\x87\xea\x05\x22\x9c\xf8\x62\xa2\xfb\xb3\x0b\x4c\xba\x97\x83\xc1\x43\x48\x50\x48\xbf\xb2\xd9\xac\x63\x3d\x9f\xf8\x81\x50\x72\x89\x27\x16\x6f\x4b\x3a\x3d\x0d\x26\x94\x59\x4f\x29\xf9\xa3\x4e\xd6\x8f\x86\xd3\xe3\xaf\x9a\x76\xb6\x1c\x63\xdf\x42\x3c\xae\x0b\xd7\xe5\x9b\xfe\x20\xa8\x56\x95\x3d\x6f\x66\xd0\x11\x29\x0f\xc9\xdc\x6a\xa7\x06\x3a\xe4\x96\xe6\xc5\xea\x9a\xd3\xb1\x00\x38\x19\x03\x4d\xd5\xe7\xc0\xf3\x30\xf5\x92\x52\x2e\x43\x35\x1c\xaf\x14\x58\x35\xa0\xaa\x85\xdd\x9b\xc4\xf7\xd7\xbd\x1e\xcb\x86\x97\x8a\xea\x00\x2f\x7e\xfc\xb9\x51\x1a\x71\x1e\x45\xd1\x1a\x0b\x13\xc4\xdc\x1f\xde\x4e\x0a\xc9\x6e\x28\xde\x73\x23\x9f\x32\x94\xaa\x4b\x9e\x15\xf0\x84\xec\x52\x5b\x30\x4c\xd7\x0f\x95\xc8\xc6\xff\x68\x53\x2f\x3e\x46\x22\x1c\x67\x6e\x5a\x2e\x50\xd0\xa5\xb8\x81\x39\xd5\x01\xe1\x0d\x9a\xcb\x0b\x65\x2c\xd6\x75\xf8\xfc\x6d\x3a\xbf\x14\x78\xee\x85\x62\xb8\xfb\xcc\x58\xad\xe6\x04\xe5\x08\x0d\x99\x9f\x33\xc6\x54\x19\x60\xac\xee\xc5\x82\x8b\x77\x3d\x14\x4f\x8e\x05\x12\xe3\xee\x7b\x5a\xf4\xb4\xa8\x34\xfe\xff\xd9\x44\x75\x29\x3c\xa8\x13\x64\x43\x48\xda\x71\xd7\x50\xad\xdc\x8b\xf6\xe2\x98\x87\xb4\x72\x08\xda\x3d\xe2\x74\xd9\xb0\x55\x3c\xf6\x95\xbc\x84\x7c\x8d\xa7\x92\x19\xa2\xcd\xa5\x57\x18\xc8\xfe\x40\xfd\xb4\xd7\x16\xc1\xca\x25\x2e\x06\x83\xc0\xe8\xf7\x3e\xa6\xaa\x70\x54\x55\x45\x70\xf8\xe4\x51\xf1\xed\xab\xb0\xeb\xa6\x98\x92\xf3\x7d\x51\x61\xae\x27\xbc\x4a\x5c\x18\x36\xd6\x4c\xf0\x9f\x9e\xd2\x65\xc2\x53\xb8\x8a\x67\x74\x35\x47\xd4\x7f\xa9\x18\xb3\x71\x9c\xf8\x98\x55\x2a\x71\xcb\x9b\xbe\xac\xa9\x6a\x56\x9a\x0e\x98\x47\xba\x63\x12\xb5\xec\x8d\xc2\xe0\xc1\x93\x46\x74\x62\xb4\x62\x1c\xee\xaf\x0c\x1a\xad\x55\x75\xa0\xe5\x14\x8b\xe3\x7d\x69\xd0\x24\xe3\x70\xac\x08\xd5\x89\xf4\x2f\x7f\xb1\x43\x9a\xe8\x74\xd7\x29\x22\x82\x3f\x9b\x79\x3b\xab\x20\x93\x1a\x47\x0d\xcb\xc6\x6e\x8d\x15\x8a\xe1\xfe\x87\x93\x75\x4b\x7d\x3b\xde\x48\x05\xae\x62\x4c\xe0\x56\x84\x81\x74\xa1\x18\xbe\xb7\x4f\xb3\x50\xd0\x48\x05\xf9\x8f\x0e\xd6\xea\xfd\x3a\x76\xcb\x72\xe5\xde\x33\x71\x84\xfc\x12\x56\x12\x36\xe5\x22\x99\xde\xfb\x9a\x96\xfd\x62\x57\x2c\x99\xfc\x0d\x7b\x9a\xf4\x76\xfc\x4a\xf4\x1f\x92\x99\x8f\xb6\x0b\xa2\x93\xba\x42\x9a\xdf\xeb\xd6\xf7\x67\x5a\x53\x6d\xfd\x02\x65\xa2\x91\xf2\xf3\x69\xe9\x88\xcf\x14\xe8\x9c\x59\xbe\x51\x80\x09\xab\x59\x49\x58\x81\xfe\xfa\xb4\xf8\x0f\x75\x8c\x04\xf1\xf0\x1f\x2b\x92\xe2\xd8\xe3\x96\x39\x03\xc4\x21\xbb\x7e\xbf\x16\x82\x39\x72\x63\xfb\xab\xec\xf7\xb6\x69\x6d\x0c\x1b\x43\xb6\x13\x1e\x58\x6f\x3a\xe4\x48\xe9\xca\xa4\x2c\x9f\x32\x79\x88\x22\x31\x78\x85\xe2\xfb\xbb\x86\xc5\x67\x0b\xf7\x81\x7e\x06\x47\xf3\x21\x83\x64\x81\x38\x2b\x74\x91\x2e\x64\x90\x0f\xff\xf9\xb4\x11\x70\x31\x2f\x25\xcd\xd9\x35\xd7\xf6\x65\x0f\xbf\x99\x2c\x5d\x07\x99\xc3\x83\xe1\xfd\xbb\x14\x4e\x15\xbd\x34\x1c\x25\x98\x92\x53\x9b\xfb\xcd\xbe\x26\x06\x50\x97\x64\x20\x76\x1f\x50\x9f\x53\x3d\x1f\xb1\x74\xff\x6c\x68\xa3\xdd\x11\x20\xd7\x87\xcc\x51\x24\x5d\x3f\x68\x97\x59\x47\x62\xec\x6f\x4d\xd1\x66\x8f\x19\xc5\x71\xfe\xf9\xac\x3f\xc5\x38\x4d\x30\x71\x4b\x1c\x5b\xb6\xb4\xe8\x53\x91\xe0\x0e\xd7\xa4\x40\x00\x16\x1d\x1f\x3c\xe1\xe9\x0d\xba\x7e\x48\x54\xba\x16\xc3\xe7\x8e\x8d\xd2\x9b\xec\x5a\x7f\xe5\x0f\x0f\x8b\xec\xf3\xba\xa0\x5a\xc5\xae\x8d\x89\x93\x4a\xf0\xf0\xeb\x22\xa6\x5f\xc3\x49\xb9\x93\xe8\xd0\xde\xf7\x5f\x31\xbc\x71\xba\x18\x08\xf4\x4b\xae\xc4\x71\x7d\xc9\x80\x96\x38\xc8\x6e\x19\xf3\x7a\xf3\x66\x89\xe9\x43\xa0\x46\x64\xec\x74\xa7\xa4\x8e\x84\x14\x64\xf8\xe5\xd6\xe1\x5a\x5a\xed\x11\xb1\xad\xb2\x97\x3f\x9c\x1c\x66\x5e\x2d\xaa\xf2\xf1\xae\x69\xe6\x0a\x69\x10\x0b\xf7\x6f\x5a\xb3\x79\xb5\xea\x08\xa2\x12\xa9\x22\xa2\xcd\xc8\xe5\xbe\xfd\xb6\x38\x48\x1c\x22\xe7\x2e\x72\x3f\x1e\x9c\x94\x90\x3d\x65\xdd\xe9\xf7\x13\x77\x6b\xee\x92\x01\xaf\x89\x2e\x5b\x76\xff\x46\xcd\xf2\x48\x1a\x63\x84\x93\x06\x7f\xc4\x48\x56\x34\x6d\x7d\x33\xbb\xce\x2d\xd9\xac\xf6\xcf\xec\x05\x85\x62\xf8\xdf\xda\x35\xd7\x83\xde\x5e\x9a\x52\x59\x5c\xb2\xd3\x98\xc3\xb1\x89\x65\xcb\x36\xc0\xd0\x7b\xd5\xfc\x85\xa7\xd9\xda\x66\xef\x37\x66\x8c\x2a\x88\x7a\x38\xca\x0e\xe3\x41\xae\x0e\xc9\x0d\x45\xc2\x46\x79\xde\x84\xb8\x12\xac\x0a\x20\x13\x22\xdc\x97\x1f\x33\xb9\x93\x3c\xa6\x1e\xff\xef\x6d\x1a\xf9\x87\x52\x90\x3a\x8e\x77\xec\xf3\x9d\x8a\xe7\xef\xa2\xa6\xaa\xf3\xcf\x86\x72\x4d\xb4\xe3\x63\x9a\xed\x8c\xbd\xe2\xa0\xbc\x01\x57\x2a\x98\x7b\xcc\x8d\xb7\xf2\x77\xee\x15\xd9\xd5\xb2\x6b\x40\x4a\x69\x9c\x31\x3f\x5a\xc6\x15\x70\x7c\x15\x60\xd2\xed\x5c\x2c\xef\x5b\x7c\x5c\xb7\x91\xae\x99\xb8\xfe\x90\x24\xe9\xb3\x06\x90\x64\xf3\xe3\xce\xcb\xbe\xaf\xe7\x21\x42\x05\x96\xfe\x30\x57\x0a\x5e\x40\xe1\x82\xb4\xb3\x09\x67\xfe\xda\x64\x23\x72\x29\x1a\x99\x58\xf9\xe3\x6e\x95\x7e\x84\xa8\x84\xdc\x2a\x29\xeb\x5e\x85\x03\x56\x8e\x36\x98\x60\xa4\x2a\xc6\x53\xc2\x39\x73\xb5\xd3\xe9\x8e\x00\x95\xa4\x89\xc1\x9f\x06\x18\x52\x97\x89\x2a\xd6\x3f\xd4\xa5\x04\xc6\x35\xab\xe3\xa3\xe7\xa6\xab\x4d\xfc\x8f\x22\xb0\x54\x95\xef\x6f\xf1\xeb\xb2\x31\x4b\x6c\xc4\x75\x95\xf3\x87\x9e\x33\x46\x22\x02\x2e\x17\x4d\xfe\xea\xf7\x4c\x28\x04\x20\x2d\x58\x50\xeb\x5f\x4a\xf6\x11\xa6\x3a\x65\xe8\xc2\x8a\x21\x32\x41\x0c\x84\xf5\x42\xa6\xd7\x60\x02\xd5\x39\xf1\x98\xb4\x3d\x0b\xf7\xbc\x6b\x62\xd9\xe0\x5b\x19\xab\x66\x2a\xf6\x09\x76\x83\xe8\xcb\xee\x58\x92\x64\x04\x0d\xd4\x96\x68\x90\x1a\x16\xd1\x25\x92\x38\xdf\xe5\xdd\x2d\x06\x73\x0c\xf1\x9a\xac\xd9\x27\x5c\x10\xeb\xe6\x3a\x54\x8a\xca\x23\x6d\x3f\xfd\xd3\x31\x6d\x44\x47\xb0\xec\xa1\x47\x76\xdb\x30\x3d\xee\x8b\xd1\xcb\xdc\xdf\x1d\x37\xc6\xaf\x70\x99\x20\x3f\x0e\xa1\x3f\x2e\xa5\x51\xb8\x85\xf1\x94\xf6\xcb\xab\x4d\x51\xaa\x28\x05\x06\xa0\x69\xc1\x51\xd5\x57\x44\xb4\x81\x81\x22\xf0\xa3\xba\x09\xb8\x06\x3c\xc6\x1f\x73\x3f\x5c\xaf\xc1\x2e\x41\xa5\xa2\xc3\xd8\x37\x9f\x49\xff\xd0\xac\xb6\x05\xf3\x24\x83\x71\xf0\x69\xb5\x2c\xeb\x98\x63\x7d\xa6\xab\xf7\xc1\x09\x22\xfb\xa8\x32\xab\xb0\xce\x26\xb8\xa9\xbc\xca\x7f\xe8\x0d\x4d\x18\x35\x4a\xd8\x2e\x5b\x3c\xc5\x78\xd8\x65\x4e\xca\x12\x05\x4d\x47\xee\xd6\xb3\xe9\x84\x11\x39\x9e\x05\xa9\x54\xfa\xcf\xbe\x3a\x3d\x59\x02\x71\x47\xc5\x10\x1c\xee\x62\xbc\xa6\x7a\xf9\xd9\x9b\x17\x6b\x4f\x02\x5b\xc2\x49\x4a\xae\x93\xd1\x46\xed\xea\xd5\x44\x17\x44\xe0\x05\x2f\xb6\xa8\x4f\x3a\xcc\xf5\xeb\x88\xbb\xc8\x13\xe9\xcd\xee\x73\x9a\x52\x10\xf3\x6a\x0d\xa4\xfb\xb6\xed\xe6\xe3\xcc\x03\xb1\x50\x67\x81\x2b\xd1\xee\xfc\x27\x36\x29\x73\x40\x9b\x34\xdd\xe3\xc3\x9b\x47\x1b\x77\xe4\x20\x17\xfc\xc1\xc3\xef\x9c\xed\x0f\x65\x17\x60\xc1\x9e\xe7\xcc\xa1\x4c\x42\x59\x10\x2b\xce\x6e\x6f\x53\xd8\x56\x35\xf6\x41\xc9\xf4\x3c\x60\x18\xe2\x72\xe4\x07\x2a\xd7\xe9\xcb\x2d\xde\x97\xc6\x34\x3c\x26\x36\xfc\x4c\x4d\xb7\xb7\x46\x80\xe2\xf7\xe3\x5d\xe9\xef\x0a\xdc\xa8\x0c\xf1\x71\xcc\xf2\xcd\x8e\x1b\xae\xf8\x45\xc0\x37\x4b\x95\x3b\xf7\xdc\xa5\xb5\x88\x10\x15\xa9\x45\xe7\x5a\x0d\xd7\x8b\xc5\x66\xf2\x6d\x4f\x8b\xa0\xb2\xce\x46\x2e\x60\x74\x99\xc5\x0f\x2b\xad\x62\x9b\x55\x40\xb3\x53\x3b\x74\xf3\xd7\x6d\x32\xcc\x76\x16\xb6\x2f\x14\xe8\xcc\x0b\x3b\x14\xdd\x64\x6e\xa1\x23\xfa\xb2\xa1\xad\x97\x18\x91\x96\xd6\x93\xd6\x71\x76\x8d\x81\x1b\x89\x21\x67\xd9\xed\xfd\xfc\x23\x9a\x58\x1b\x2b\x95\x30\x8f\x52\x98\xc5\xe5\x34\x9a\xe1\xf3\xc0\xa9\xa7\x05\xe2\xb2\x37\xdf\x9d\xfe\xda\x82\xe7\xf7\xd0\x78\x68\x32\xfb\xf9\x03\x23\x74\x3e\xa2\x6f\xd9\x88\x44\xff\xfd\x3a\x41\x39\x86\x03\x0d\xf8\x9e\x66\x42\xf4\xa3\x05\xe2\x51\xad\x41\x1c\x01\x42\x76\x66\xc7\xe0\x78\xed\x41\xee\x9a\x39\x67\x2a\x61\xf8\x25\x70\x87\x85\x98\x7f\xc3\xdd\xb1\x4f\x0e\x72\x10\x9c\xc4\x9f\xdf\x95\x8e\x5f\xbe\x23\xb5\x16\x46\x0d\xd2\xd4\x1e\xd2\xfa\xd8\x9b\x4c\xd6\x3b\x8a\xf1\xf5\xec\x8a\x47\xa4\x2f\x12\x0d\x2a\x15\xf8\xeb\x5f\xad\xd6\xd4\xc6\x59\x54\xc8\xdd\xb8\x21\x4d\x9b\x4e\x66\xee\x5e\x3b\x90\x3e\x12\x5d\xbf\x21\x5e\x2a\xab\x68\xd4\x47\x0b\x71\x81\xa0\x5c\xad\x76\x40\x2f\xaa\x81\xa1\x77\x78\xfb\xb1\x91\xda\x64\x60\x4c\xc7\x8c\xfe\xbc\x22\x8b\xe2\x65\xcc\xf5\xa0\x57\x55\x28\x86\xb3\x36\x37\x0d\x8b\x3a\xc8\xf5\x29\x2e\x0b\x0c\xb4\x7a\x4c\xd7\xcb\x80\x6e\x06\xd4\x60\xdf\x1e\x2e\x8e\xdb\x8f\x73\xcb\x0e\x6a\x0a\x18\xd8\xfa\x4e\xb3\x0a\xbb\x27\xfb\xac\xbb\x42\x45\xc7\xe1\x41\x1d\xeb\x92\xc3\xb9\x49\xaf\x18\xa9\x19\xa1\x8e\xb8\xf5\x7d\x57\xab\x4b\xa8\x06\x3d\x08\x4c\xaa\x8b\x7d\x99\x6f\x6d\x9c\x68\x1c\xbb\x2c\x86\x9d\xad\x98\xe1\x90\x0d\x2f\x8c\x55\x76\xf3\xb5\xa6\xd4\xed\x85\xfd\xaa\x65\x39\x7b\xe1\x82\x59\x66\x35\x76\x61\x8d\xe9\x91\x49\x25\x9e\x9a\xbb\x67\x65\x2c\xf6\x23\x84\xa4\x65\xc9\xfd\x3f\x27\xd4\xa2\x21\xae\x0f\x18\x02\x80\xc1\xcb\x1f\xd4\x3d\x04\x02\xd7\xe7\x3d\x1e\x40\xbc\x7d\xd9\x2f\x0d\x32\xe8\xbc\x01\xf1\x85\x76\xbe\x68\xf2\x2f\x78\xad\xd5\x5c\xd1\xe2\x18\x3d\x75\x42\x5c\xc3\x32\x9b\x50\xac\xb8\x2a\x0b\xd7\x1b\xdc\xc5\xc0\xa9\x07\x7c\xc6\xa2\x54\x17\xeb\x63\x6f\xa8\x2a\xda\x0d\x7c\x98\x9d\x82\x47\xf6\xd7\xeb\xb4\x81\x07\x0e\xe3\xd4\x10\xa3\xa6\x1e\x32\xda\x5e\x6a\xa6\x43\x94\x91\xd7\x6f\x49\xfa\x2c\x53\x01\x66\xf8\x90\xe6\x1f\x57\x92\xce\x48\xc5\xf0\x4b\x66\x5f\x95\x22\xe2\x78\x72\xcc\xa4\x65\xb0\xb4\xab\x63\xcd\x44\x88\xec\x2d\x27\x35\x21\x5b\x5b\x0b\x35\x23\xd6\xea\x0f\x3d\xf6\xa4\x29\x14\xc3\xab\xee\xd2\x60\x34\xc2\xa4\xb1\x7a\xf6\xf3\xeb\x54\xfa\x31\x7b\x61\x07\x70\x55\xb2\xe5\xf7\x34\x1e\x33\x73\xab\xac\x81\xb9\x9b\x8c\x1b\xe4\xf6\xdb\x0a\x7a\x6b\x5f\x00\x90\xe8\xa3\xfb\xf4\x1e\x0d\x07\x27\x93\xf0\xe4\x13\x17\xcb\xe0\x2e\x94\x3b\xa3\x07\x31\xe0\x59\xa9\xa6\xf0\xf1\xa5\xab\xae\x5f\x1d\x33\x16\x6e\x68\x1d\xa3\x8f\xde\x96\xb1\xe3\xaa\x5e\xe1\x16\x37\x91\x01\x08\x2c\xc1\x89\xe9\xcb\xdc\xb7\xe0\x52\xed\x00\x2f\xe3\x66\x7f\x93\xdb\xa7\x99\x4a\xf0\x88\xb2\x6a\x20\x94\xe2\xf2\x57\x3d\xa1\xf1\x18\xe2\x4a\xc9\x70\x1c\xf2\x02\x5e\x41\x96\xfc\xc0\x4c\x5f\x49\x71\xf1\x66\xb5\xc4\xbe\x03\xc6\xab\xe4\x51\x65\x2d\xd4\xb1\xee\x3c\xd8\xa4\xc0\xe2\x88\x14\x26\xbc\x6c\x8b\x41\x14\x25\xae\x9b\x8c\xa7\x6f\x91\xa2\x0a\x55\x56\x40\x36\x06\x12\x58\xf6\xda\x03\x9a\xa8\x82\x07\x2a\x7c\xe1\xa0\xb5\xea\x7d\xcc\x9b\xb3\x10\x84\x1f\x5a\x92\x9c\xbd\x53\xf3\xb0\x09\x67\x1d\xd3\xd8\xa2\x0e\xf3\x63\xfb\xa7\xcf\x9c\x94\xa0\x2b\x83\x79\xf4\x43\x0d\x53\xc0\x19\xb0\x5e\x99\x6e\x7c\x7a\x92\x29\x83\x83\xb8\xaf\x46\x61\xb2\xf7\xae\x30\x29\x2d\xbc\xce\xa2\x3d\x0c\xcd\x15\xeb\x95\xa1\xda\x56\x80\x97\xf9\x83\x25\x62\xa9\xdf\xc8\x28\xf6\x5c\x52\xd3\x4d\xab\x4f\x0f\x50\x91\xdd\xe9\xe1\x04\x1e\x43\xee\x17\x75\xf5\x5f\x17\x2e\x9c\xd9\x31\x17\x4c\x71\x1a\x7b\x8c\x41\x4f\xc6\x7d\x54\xa2\x52\x4f\x20\x77\xa7\x04\x77\xca\xb8\x82\x02\x0a\x9b\x6c\xe2\x00\x69\xdd\xa1\xe4\x1a\x26\xbf\xa3\xce\xa8\x0e\xd0\x20\xce\xcf\xd6\x94\xce\x1d\x16\x88\x3c\x31\xf3\xd0\x86\xa1\xf2\x99\x59\x88\x0a\xf9\xea\x27\x9f\x55\x24\xf5\x12\xe2\x55\x92\x86\xc2\x5f\x1f\xaa\xb1\x96\x99\x20\x0b\x87\xdf\x9c\xa2\x1a\x1b\x41\x9b\xdb\xe4\xeb\x90\xf9\x9a\xf4\xbd\xf3\x51\x77\x1d\x58\x32\xb0\x58\xff\xf8\xbc\xc1\x31\xe4\x40\x92\x89\xdb\x67\x6d\xe7\x94\x34\x5e\xbd\x99\xe1\x54\x78\x55\x4c\x8a\xcc\x9e\x57\x28\x86\xa5\xdb\x44\xec\x2c\x52\xac\x28\xdd\xe1\x35\xcb\x9b\xb4\x56\xb1\x5b\x96\x4a\x81\x55\x8d\xce\x0e\xde\x79\x12\x1f\x98\x39\x4b\xc3\x0e\x48\x7a\x98\xff\xd9\x81\x9a\x8b\x5e\x3d\x4a\x11\x51\xe2\xc0\xfc\xd9\x3d\x86\xd8\x06\x8a\x42\x86\x68\x98\x42\x20\x1f\x3b\x54\x25\x49\x05\x81\xa2\x08\x3d\x0c\x85\x7e\x97\x00\x0f\x4a\xdf\xe7\x88\x03\x72\xc2\x35\x28\x97\x81\xb2\x99\xf9\xf2\xf3\x9a\xb6\x33\xc7\x90\xf1\x0f\x9d\x22\xde\x64\x03\x43\x1f\x07\x46\xdf\x67\x4d\xd4\x5f\x39\x9c\x6b\x4d\x2d\x27\xf7\xf5\x74\x8e\x52\x41\x5c\xf0\xd9\xce\x8f\xd7\x34\xe1\x58\x03\x81\xbb\x4d\xf6\x2f\xeb\x87\xeb\x0a\x01\xcc\xc5\x40\xd4\xbe\xe5\x41\x73\x52\x3f\x99\x60\x96\x67\x41\xe6\xc7\x03\x46\x19\x45\x47\x61\x9e\xc0\xe0\xb2\x5f\xdd\x66\x0e\xc0\x38\x25\x46\x41\x69\x1a\x52\xae\x57\x3a\x74\x89\x61\x24\xc7\xab\x33\x5f\x5b\xaa\x90\xaa\x05\x85\xe8\x8b\xfe\x73\xa7\x2e\xa5\x6e\x81\x8b\x70\xa1\x18\x8e\x78\x56\x4a\xf6\x21\x42\x29\x0e\x68\xfc\x42\x96\xed\xd3\x66\xce\x44\x4a\x08\xc8\xfc\x36\x43\x7d\xb0\xab\xad\x81\xda\x66\x2c\x8a\x17\xc8\x91\x92\x58\xcc\x4b\x99\xe7\xaa\x51\xd7\x69\xe3\xa5\xa1\x11\x50\xb6\x11\x68\x9f\xbf\x39\x79\x82\x91\x58\x23\xd7\x73\x08\x4c\x4b\x49\xa9\x9a\x5f\x8c\x4d\x3f\x7f\xdc\xc0\x42\xed\x35\xf3\xe8\x6b\x49\x29\x89\x2c\xd0\x72\x3b\xa3\xee\x8e\x62\x20\xf0\xc3\x72\xf8\xcb\x13\x02\xc7\xbf\x89\x79\x16\x18\x74\x2b\x4d\x9d\xdf\xaf\x36\x9c\x6a\xeb\x94\x08\x6e\x5e\x6c\x93\x71\x78\x7a\x6c\x44\x4e\xcb\x1c\xe9\x3a\x07\xb9\x2e\x7d\x16\xce\x67\x1c\x30\x85\xf2\x2a\x23\x87\xb2\x59\x5d\x24\x0c\xdf\x7b\xa3\x45\x1e\xc1\xf3\x44\x35\x19\x85\x1d\x6c\x28\xd0\x28\x55\x44\x69\x68\xdf\x7a\xef\xd4\xa6\x40\x6c\x31\xa7\x5f\x4a\xd3\xa8\x81\x43\x52\xd9\x71\x5f\xee\x7d\xa3\x14\x22\x5e\x14\x91\xe2\x8e\xfa\xaf\x36\xaa\x7c\xa1\x0b\x55\xab\xe2\xed\xde\x77\x2a\x2d\x33\x0d\xb6\x21\xd0\x53\x1f\xac\x31\xf5\x69\x20\x51\xf2\x5c\xe6\xa5\x0f\xc7\xef\xe1\xf2\xe8\xcf\x2e\x3e\x92\x5e\x1d\x36\x89\xaa\xd5\xc4\xe4\x01\xbd\x76\x99\x16\x56\x84\x39\x8c\x09\x44\xb4\xec\x4c\xa7\x74\x25\x44\x29\xee\x11\x64\xde\x84\x4b\x7b\xdb\x69\xb1\x6a\x6f\x59\x7b\xfd\xea\x6b\xae\xbb\x66\x6d\xbc\xfc\x96\xb4\x88\xff\xbe\x3c\x2a\x79\xac\x20\xa1\x22\x5c\x73\x26\x39\xdd\xfb\x21\xa8\x65\xee\x5d\x30\x2a\xbd\x89\x12\x61\x9b\xec\xd1\xd7\x4d\x6d\xe6\xae\x28\x69\x95\x47\xe5\xcd\x8d\x51\xda\x2e\xf1\x2c\x16\x70\x54\x15\xe7\xcc\xfc\x25\x1a\x81\xc5\xa3\xa8\x66\x23\x97\x35\xa2\xa7\xf0\x97\xbb\xd2\x91\xd7\x45\x4e\xd2\xa4\xce\xde\x6e\x58\x0a\x75\x71\x06\xb6\x0c\xd1\xa2\x7f\x4e\xa3\xb8\xf4\x94\x65\x78\x19\xa9\x59\x33\x73\x1f\x68\xba\x13\x5f\x50\xe9\x56\x0f\xf3\x3c\x52\x51\x63\x1d\xf7\x0c\x55\xfe\x63\x56\x74\x84\xd1\xa6\xa8\x9a\x1b\xbb\x45\x33\x6c\x67\x0c\x92\xc2\x29\x2d\x9a\xc2\x36\xf2\x2c\xe2\x26\x53\x92\x57\xbe\x97\x5e\xa6\x36\xe2\x0d\xc4\xfb\x85\x8a\x32\xef\xa8\x36\x6b\x5d\x27\xfe\x67\x87\x8d\x57\xcc\xab\x4a\x40\xf5\x41\xe2\xc7\x16\xab\xd1\x21\xa8\x22\xe6\x4c\x54\x0f\x62\x7e\x81\x70\x71\x19\xcf\x9c\x49\x59\x0f\x39\xf2\xec\xc9\x6e\xc8\x2b\xca\x34\x76\xc0\x92\xcb\xa8\x7d\x6a\x34\x4d\x7f\xb1\x30\xc5\x25\xe8\x2a\x55\x51\x57\x8d\xb8\xd5\xa4\x81\xd6\x91\x37\x5e\x1d\x71\x93\x57\x97\x7b\xe6\x0d\xb1\xf8\xae\xf1\x3c\xa4\xf5\x23\xf2\x4b\xef\x1d\xab\x1d\x49\x8c\xd4\x52\x80\x93\x45\x15\xfc\x8a\x55\x9d\x18\xfe\xb1\x23\x09\x71\x53\xb1\x13\xad\x28\xa7\x57\xce\xfb\x31\xcf\x2f\x38\x8c\xfb\xd8\x81\x23\xe0\x27\xf7\xc4\xfa\x0d\x51\x24\x22\x71\xb6\x92\x5f\xd2\x99\xce\x4b\x05\x5f\x5c\x90\x48\x9d\x46\x6a\x6a\x53\xb6\x15\x3f\xff\x8a\x48\xd4\x96\xa1\xc0\x42\x5e\x90\xea\x4b\xf9\x0b\x04\xfe\x0e\xa3\x0e\xd1\x2a\x1b\xf8\xb0\x88\x8e\xd7\x7b\x35\x81\x49\x25\xa9\xc5\x8a\x87\x13\x2c\xd1\x06\x10\xe5\xbb\x33\x55\xda\x80\xbb\xc4\xae\x8f\x51\xe6\x1f\x52\x8d\xb8\x3b\xa9\x29\x1c\x74\x0f\x6f\x55\x98\x87\x8e\x4e\x7f\xf5\xcd\xcb\xb5\xdd\xe0\x96\x61\xde\xaf\xe9\xe3\xd9\xc3\x23\xf4\x22\x95\xc9\xb6\xcf\xe9\xc7\xc6\x9a\xbb\x1a\x9c\x6c\xa4\x0e\xe2\x3b\x93\x52\xce\x3b\x60\x97\xbe\x41\x2b\xce\x2d\x14\x58\x81\x6c\x43\xfd\xdd\x58\x0d\x6a\xc4\x14\x34\x21\xe2\x6b\x5c\x34\x50\x9b\xe7\x43\x9e\x87\xc1\x95\xbc\x18\x76\x18\x90\x56\x17\xe3\x35\x29\x4c\xf5\xdd\x47\xcc\xc1\x16\xc7\x41\x30\x73\x03\x20\x62\xb0\x48\xc5\x61\xec\xde\x11\x10\x78\xbe\x6b\x36\x1a\x4c\x2b\xc4\xab\xc0\x83\x2c\x14\xc3\xf6\xfd\x66\x77\xd2\xad\xd0\x00\xbb\x89\x35\xeb\xbb\xd2\x07\x7e\x29\x27\x18\x3c\xb6\xda\x7c\x43\x70\x9e\x94\xcb\x14\x8b\x71\x39\xf9\x80\xda\xf7\x18\x30\x27\xc6\xf1\xc9\x92\xbb\xd9\xd0\x1d\x28\x63\xea\x23\x19\x2f\xbf\x3f\x5c\x53\x6a\xeb\xaa\x75\x21\xf0\xf1\xcd\x7e\xed\x3d\xd3\x07\x19\x4a\xe5\x84\xb7\x86\x25\xbd\xec\x26\xe4\x79\x89\x9d\xc6\x1f\x96\x1a\xd6\x0d\xc8\xc2\x3d\x06\xcb\xe1\xea\x57\x54\x47\x12\x78\x1e\xb9\x87\xce\xa7\x3f\x25\x2c\xdd\xd3\x9f\x3a\xd1\x6e\x8e\x60\x55\x25\xe3\x59\x4e\x25\xff\xb4\x53\x45\x31\xac\x4f\x4c\x9c\xe8\x34\x4d\x70\xa3\x78\x13\x83\xa8\x3f\x3b\x71\x89\x96\xa4\xb0\x3a\xa3\x5a\x98\xc8\x5e\xbb\xc4\xe8\x16\x82\xdf\xa9\x90\x42\x29\xbd\xaa\x79\x3b\x71\x52\x87\xa3\xa2\xd8\xa2\x33\x7b\x11\x11\xe5\xf4\x15\x71\xeb\xea\xa6\x4f\x34\xd5\xcc\x5f\x58\x3d\xd1\xb8\xb1\xba\x60\x97\x0b\xc6\xb0\xe0\x63\x7e\xdb\x38\xf1\x50\xa5\x82\x13\x1f\xa6\x7c\x71\xaf\xd4\xdf\xc0\xd1\x41\x19\x5d\xc6\x7f\xcd\x94\x5c\x77\xe2\x60\x2a\x2d\xf4\x72\xb7\x0c\x30\xda\x38\x8c\xd5\x62\x2e\xc4\x6f\xc6\x8a\x74\x7c\x99\x70\x09\x2b\x14\xc3\x1d\x27\x0d\xdf\x18\x1b\x11\x57\x8c\x08\xfe\xf2\x22\x83\x6c\x06\xc8\x2c\x11\x2a\x7a\xe1\x53\x63\xe2\xba\x16\x4e\x86\x7c\xe9\x81\x34\x7e\x54\x02\xca\x4d\xb1\x2f\xbb\xed\xd4\x28\x85\x9e\xd5\x75\x6d\xc5\xcc\xb7\xae\x56\x27\x4f\xe0\x0a\xcd\x57\xd1\xb7\xcb\xdf\x2c\x1c\x92\x0b\xcb\x15\xfb\x35\x89\x87\x9b\x56\xa4\xd7\xac\x30\xaa\x23\x6e\x9c\x60\x6d\xbb\x5a\xe5\x3a\xa0\xaa\x53\xc7\x14\x55\x59\xea\xa7\x27\x9c\x31\xb8\x53\xd8\x0d\x58\xe0\xc9\x56\xc3\x07\x26\x18\x46\x15\xa8\x2e\x39\xba\x6a\xd1\xac\x5f\x6c\x00\x0c\x36\x73\x13\xb9\xbe\x4c\x68\xd2\x24\xa3\x64\x42\xf4\xfd\xc2\xe3\x57\xab\xad\xe8\x20\x6e\x61\xca\xa2\x37\xd1\xd2\x64\x9e\x83\xa3\xab\x57\xc6\xb1\x1f\x5d\xa9\x1e\xd7\xfc\x05\x82\x3f\xc5\x84\xbb\x7a\xf9\x04\xf4\x81\x0a\xeb\xa2\x54\x1e\x8a\xf3\xfe\xba\xaf\xb9\x47\xda\x34\xf3\xc1\x7a\xcc\x28\x1e\x75\xb5\xca\x63\x28\x07\x19\xbd\x35\xcb\xcd\xfc\x9f\x50\xa1\xe0\xb2\xd6\x56\x17\x6f\x07\x6e\x15\x60\xe2\x70\xa8\x61\x91\x0a\xf5\x02\xe4\xdf\x77\xdc\xa7\x29\x2c\x70\xd0\x45\x15\x09\xef\xaa\x43\x26\x35\x99\x38\x88\xc6\x61\x6e\xf5\x7e\x45\x0a\x73\xb5\xb3\xf9\xa4\xc1\x10\xac\xdb\x3d\x9e\xe0\xae\x48\x1d\xe4\xec\x91\xb3\x86\xee\x21\xa9\x60\xf9\x6f\xb9\xff\x78\x56\xed\x5b\x50\xa7\x87\x13\xf9\x07\xb7\x29\xb9\x94\xb9\xb3\x0a\xc5\x70\xf0\x24\x8d\xbb\x4c\xea\x94\x39\x62\xb8\xfe\x39\xd3\x64\x83\x50\x45\xda\xfc\xe9\x09\x15\x28\xea\x54\x08\x1f\x64\xbf\x7e\x7c\x8c\x3e\xb6\xd5\xa6\x59\x1b\x85\xd9\xfb\x35\x23\x58\xee\x13\x8b\xc2\x88\xe3\x47\xce\x1a\xcf\xa5\xc4\x10\x2f\x4b\x0d\xd1\x5c\xf7\xd3\x4d\x66\x57\x51\x0d\x9d\x0c\xe1\xbe\xf9\xa6\x5a\x23\xbe\x8d\x35\x11\x91\xfc\xf0\x7b\xe0\xae\xa2\x4f\xad\x5d\xa3\x45\xce\x9f\x3c\xdb\x34\x6b\xda\x20\xd1\x21\x25\xc9\x9b\x5d\xa1\x72\x33\x69\x6b\x16\xad\xf8\xea\x93\xea\xc4\x8e\x9e\x75\x5b\xa1\x18\xee\xd9\xa2\x4b\x2b\x10\xab\x06\xe9\xe0\xc5\x87\x45\xf4\x59\x4b\xdc\x6a\x55\xe0\x53\xcb\x2f\xa8\xb8\x2c\x6c\xc0\x89\x95\x8c\xed\x64\x3e\x32\x6b\x88\x72\x63\x25\x85\xe2\xfb\x0f\xa4\x1f\x4d\x85\xf1\xe8\x1c\x93\xdd\xdb\x5d\x87\xa4\xbb\x07\x73\xbb\x88\x9f\x72\x61\x5b\xf3\xaa\xf8\x65\x37\xb1\xc5\xcc\x6e\x7b\xc6\x90\x9b\x04\x05\x86\x58\x7c\x21\x77\xe3\x69\xdd\xff\x3f\x66\x18\x47\x17\xf5\x7e\x18\x5b\x94\x62\xcb\x97\xec\x83\xc7\xcf\xb4\xe8\x8b\x1c\x0c\x39\x73\x9f\x7e\xdb\x1c\x2b\x70\x61\x26\xde\xed\x8f\x83\x93\x1b\xfa\x8e\x12\x6b\x81\x81\xc3\xcc\x91\x6d\x46\x67\x12\x5b\x28\xf0\xf0\x0c\xdc\x0d\xbd\xbb\xb7\x75\x3a\x1e\xe3\xb1\x48\xf8\xb5\x0f\xa7\x53\x88\x2a\xc5\xae\x2b\x98\x61\x71\x05\xfd\xb9\x5d\xfa\x96\x64\x95\xa8\x2a\x16\xfc\xe2\x4b\x1f\x1b\xd3\xb4\x8d\xfd\x99\x42\x50\x34\xf3\xfb\x83\x86\xd2\x16\xe3\x6e\xb4\xfc\x45\xc9\x9c\xbb\xf3\x51\xd1\xad\x59\x87\x6a\xa8\xaa\xd7\x17\xfe\x5d\x46\xa8\x0d\xc4\xe7\x04\x65\x7c\xc6\x6e\xd1\x20\x5f\x45\x1c\xe6\x5a\x90\xc5\x99\x67\xe7\xcf\x4b\x82\x61\xb0\x86\x33\xaf\x8e\xb9\x86\x05\x7c\x66\x90\xd6\x79\xb7\x09\x45\x65\x4c\xeb\x36\x41\x85\x62\xf8\xcf\xef\xa6\xaf\x56\x4a\x30\xc6\x1a\xe7\x97\xec\x4c\x73\xfa\x7b\x50\x8d\x35\xb0\x5b\x63\xda\xe4\x6c\x58\x7d\x2a\x59\xf9\x2e\x6e\x1a\x97\x7d\x60\xab\x3e\xe1\xe0\x79\x98\x0b\x87\xfa\x9d\xdb\x0d\x11\x49\xe4\xc5\x1a\xef\xc9\x11\x36\x73\xbd\xf1\x96\x10\xad\xa5\x9d\x85\x72\xbf\x7d\x48\x53\x18\x46\x9e\xf4\x76\xce\x8e\x3b\xa9\x2b\xf6\x13\x57\x50\x97\xdf\x6d\x4b\x56\x0f\x8b\x22\x78\xb8\xcd\x48\x87\xea\x8c\x12\x2b\xe6\x44\x66\x27\xaf\x1e\x22\x2b\xee\x38\x0f\xac\xbc\x9a\x3e\xbe\xa7\xca\xd1\xfb\xcc\xeb\xad\x9a\x22\x19\xa2\x35\xbd\xda\xf8\xb3\x31\x68\xd5\xab\x15\x6c\x19\xfe\x92\x78\x6b\x45\x4b\x74\x8d\x92\xb2\xeb\xc4\x12\x55\x76\xd8\x2c\xe0\x20\xa2\x86\x84\xb5\x64\xb1\x2f\x37\xf2\xf4\xa8\x7e\xce\x55\x78\x69\xc8\x55\xd1\xc2\x8a\xb2\xc7\xf4\xc8\xd4\xa9\xd4\xf4\xad\xe0\xa2\x4a\xa1\xe2\xfc\xe0\xed\xe9\xf7\x8d\x68\x54\x0d\x61\x83\x57\xf9\xf6\x53\xc6\x04\x74\xbd\xce\x3c\xb0\x3f\x10\x87\xd9\xfb\x6d\x93\xba\x4c\xf6\x88\x2f\x66\x9d\x75\x1d\xb6\x13\x8f\x19\x0d\x12\x8e\xba\x12\x15\x81\xec\xaf\xee\x57\x6f\x90\x32\xe9\xcf\x98\xf9\xf3\xab\x3a\xb7\xc9\x65\x16\x76\x63\xa6\xdc\xff\x37\xc0\xec\x04\x37\xb0\xd0\xda\x0c\x17\x1b\x14\xf0\x2a\xc7\xb8\x16\xb3\x1f\x8b\x3b\xd5\x0a\x9a\xdd\x31\x73\xde\xc2\x79\x05\xf0\xa7\x90\x98\x2c\x0b\x7c\x8a\x41\x16\xe0\xfe\x56\x53\x90\x59\xaa\x82\x88\x53\x27\x1c\xfb\x50\x3f\xce\x6f\x02\xf9\xbf\xe1\xb0\xe8\xa4\xb8\x88\x73\x19\xb6\x73\xcf\x6d\x1a\xa2\x1a\x3a\x51\x92\x39\x7a\x9a\xc1\xe8\x74\x7b\xca\x72\x58\xcc\xdc\xeb\x1f\x39\xde\x64\xb9\x65\x19\x53\x9a\x43\xca\x29\xcb\x7f\xad\xda\x7f\xa0\xa9\xde\x6a\x60\xee\x25\xfe\x23\xb9\x29\xaf\xa5\xef\xc3\x65\xb1\x8e\xdc\x2a\x83\x3c\xe2\xf9\x1c\xa3\x9a\x68\x4f\x8f\x7c\x45\x80\xf8\xd7\x02\x73\xcb\x8d\x35\xdb\x5e\x78\x6f\xa2\xf1\xd0\x3c\x8b\x13\x47\xa2\x33\x32\x29\xb8\xfd\x3e\x55\x86\x36\x90\x47\x28\xc1\x0d\xc8\x44\xf6\x0c\x17\x2f\x81\x23\x57\x02\x80\xef\x37\x8c\xcc\x26\x71\x72\x95\x4c\x95\xed\x1b\x15\x98\x81\xdd\x06\xe1\x4c\x76\x0e\x45\x87\xe4\xa3\xa5\x11\xfa\x20\x82\x13\x17\x6b\x23\xf7\x37\x35\xbd\xa9\x04\xbf\x97\x76\x24\x51\xa3\x47\xc8\x2e\x78\xf7\x98\x42\x41\x2c\x51\xb5\xcd\xfd\xd3\xde\x61\x29\xfa\x35\xa0\xd8\x8e\x21\x33\xed\x05\x8e\x23\x67\x2d\x33\xbf\xde\x98\x7c\x7f\x09\x47\x51\x69\xf8\x76\xa3\xfa\x46\xf1\x81\x9b\xd9\x77\xb5\xba\xfc\xd5\x02\x6f\x88\xd6\xfe\x3c\x83\xaf\x45\x5c\x07\xf9\xb2\x7e\xce\xaf\xde\xaa\x01\x7d\x42\x09\x42\x0c\x77\x64\xdf\x7d\x28\x56\x59\xe6\x2e\xc1\xba\x9a\x8e\x14\x6d\x88\x12\xd1\xd8\x1a\x35\x6c\x18\xe2\x14\x51\x09\x04\x8c\xe7\xbe\xdc\xe4\xe9\x1f\x92\xa7\x0b\x4c\xc1\x3e\xa4\xa9\xd2\x70\xec\x05\x0e\xb4\x09\x6f\xcd\x8f\x88\x33\x3c\x40\x3d\x45\x62\x1d\xae\x3f\x6e\x0c\x53\x63\x8a\xab\xd8\x8d\xbd\x2a\x73\x9f\x5b\x64\xd6\x20\x48\xa4\xfb\xd0\x77\xdf\xba\x55\x23\x4b\x49\xcb\x47\x6d\xb1\x4f\xdb\xa6\xee\xbd\x00\x4e\x5d\x4c\xea\x41\xb4\xd8\xa6\x65\x54\x8f\xfc\xd2\xf0\xc5\x7c\x5a\x09\x02\x42\x60\x3f\x98\x76\xee\x8b\x5a\x4f\x7b\xf6\xec\x85\x85\xd9\xb3\x41\x03\xe1\xba\xb7\x15\x3c\xc9\x1c\x48\xe1\x72\x9d\x8b\x46\xe8\xcd\x27\x97\x88\x3e\x4f\xe6\xa1\x95\x6a\x38\x99\x92\x5a\xd0\x24\x97\x90\x7b\xab\x73\x8c\xb9\xe2\x1b\x09\x1f\x81\x50\x85\x96\x7a\x88\x32\xa7\x1f\xb1\xb7\x7f\x32\x0e\xb9\xe8\xe1\xfa\x51\x0d\x01\xab\xef\x43\x2f\xa9\x14\xce\x0b\x38\x8f\xd2\x1c\x78\x5d\xf7\x0d\x50\xeb\xb8\xc1\xba\xa4\x94\xfb\x00\xd1\xee\x29\xdc\x84\xbb\xa5\x28\x5f\xfa\x6a\x7f\x30\x33\x7d\x82\xf8\xa8\x86\x3d\x9b\x18\xe2\xd0\x7f\x73\x5c\xc5\xdc\x39\xb3\x0b\xf1\x26\xf4\xd6\x0d\x93\x5f\xce\x2d\x5c\xc6\x12\xc0\xfa\xfe\x00\xc3\xc5\xc1\x89\x8e\x9b\xc4\x7b\x2f\xbb\xf2\xa2\xf4\x76\xa9\x46\x27\xa1\xd8\xba\xf7\xef\x30\xea\x00\xa0\xe2\x26\x6a\x02\x99\x27\x3a\x12\x95\x75\x8b\x50\xa0\xe7\xc0\x5a\xff\xf5\x2e\x55\x1f\x74\x06\x3a\x1c\x98\xfd\xa3\xa1\x85\x04\x4a\x27\x92\x56\x73\xcf\xe9\x8b\xd3\x4d\xc2\x28\x3b\xdf\x91\xc6\x6e\x6b\xb6\x83\x79\xbf\x1d\x92\x59\x0f\x89\x8b\x59\x85\xdc\x94\x08\xd8\xfb\x8b\x4c\x9d\xd0\x85\x0b\x61\x9d\xce\x29\x69\xc3\x7f\x3e\xb4\x5f\x85\xcb\xee\x6d\x0b\xd2\xc7\x43\x05\x51\x8f\x54\x88\x9c\xbb\x8e\x3e\xba\xa5\x31\x51\xcb\x02\x1c\xd1\xf2\x31\x05\x26\xf0\x7e\xd5\xc3\x45\x4d\x25\x4d\xee\xe1\x8b\xd2\xf4\xbd\x8f\x48\x7c\x66\xc5\x2b\x49\x2f\xa3\x17\x9b\x4c\x85\xf0\xfe\x47\x35\x03\x07\xad\xeb\xfd\xb6\x61\x42\x44\xa9\x54\xad\x92\x7d\xc4\x41\xad\x43\xb4\x28\x56\x28\x86\x0f\x4c\x1e\x1c\x57\x91\xbd\xa0\x1f\xf7\x0d\x53\x3d\x87\xb3\xa0\x2e\xfb\xc5\xcf\x4d\xbb\xcc\x4c\x97\x7c\x39\x9a\xcf\x65\x31\x9d\x59\x7f\x24\x89\xc3\xf3\xe7\xcc\x8f\x7e\xf3\x12\xc3\x6e\xc6\x62\x9c\x93\x32\x8b\x6d\xa6\x3f\x61\x08\xd1\xd4\x49\x1d\x4f\x4a\xcf\x9f\xe7\x5b\x36\x4b\x8f\x80\xee\x3a\x25\x96\x50\x6f\x9f\xb8\x6e\x4c\x73\x3a\x12\x2f\xc9\x5f\x1d\xd3\xa5\xf8\x53\x68\xcc\xaf\x4c\x2c\xa0\x1c\xd0\xa4\xa6\xcd\x8f\x5f\xaf\x71\xdb\x08\x6c\xd6\xc5\xa6\xe9\x3c\x45\x55\xb0\xe1\x17\xe3\x95\x83\x07\x24\x2f\x8a\x33\xb3\xcb\x12\xfe\xf9\x31\x99\x99\x56\x49\x17\xe2\x9a\x4e\x5e\x76\xf1\xeb\x06\xe4\x45\xea\x75\xaa\x6a\x95\xb7\xf6\x6a\x4c\x95\x66\x0d\x95\x63\x0d\xa9\x7d\xc9\xb1\x00\x16\xfe\xf9\xfe\x51\x1a\x2b\xa1\x2e\x6d\x71\xe0\x9f\xbe\xb5\x53\x61\x2e\x51\x0e\x5c\x0c\xa9\x61\x65\x85\x2c\x3f\x88\x05\x49\xfa\xf2\x5f\x7e\x45\x35\x96\x4a\xcc\x8d\x0e\x35\xf5\x2a\xb6\xe7\x8d\x60\x40\x1d\x52\xb5\xfd\xe4\x6c\x2d\x8c\x35\xd3\x56\x30\xa6\x9b\x69\x20\x5a\xeb\xde\xd5\x86\xfd\x5d\x9f\x05\x1c\xdc\xff\xc3\x7f\x58\xac\x73\x14\xa5\x5b\x30\xc4\xf8\xc2\x4a\x83\xae\xc5\x49\x2f\x73\x91\x10\xc7\x86\xc0\x37\xf0\x7e\xd3\xa8\xc6\x0b\xc0\x81\x41\xc2\xd2\xc7\x0c\x7b\x51\x64\x59\x98\x62\xae\x94\xf0\xf3\x2b\xa8\x9c\xed\x44\xbc\x96\x1a\x09\x39\x93\x55\x27\xe0\xed\xa9\xe5\xb4\xef\x64\xb2\xde\x31\x8a\x12\xd8\x9f\x3c\x61\x7a\x7b\xf8\xbe\xda\x1e\x1d\x63\x95\x66\xad\x15\x1b\xce\xdc\x79\xfc\x4a\xe3\x23\x56\xcf\x54\xaf\x1f\xc3\xe8\x5c\xf7\x82\x61\xaa\x4a\x8c\x47\x1d\x33\x9f\xd1\xcc\xeb\x5c\x8c\xcb\x62\x4c\x7f\xfa\xfd\xfd\x0c\xf6\x8b\x1f\xfc\xfe\x43\xda\xac\x12\x26\x82\x1f\x63\x77\x8c\xd3\xe8\x8c\x9e\x47\xd2\x56\x74\x93\xf7\x98\x56\x0c\x94\xca\xcc\xf3\x7f\x87\x6a\x0c\x3b\xe2\x96\x59\x97\xb8\x82\x77\xf7\x6a\xbd\x3a\x1e\x78\x48\x72\x9a\xd7\xb5\x28\x9a\x71\x94\xe6\xf6\xa0\x9a\x86\x1d\x0d\x78\x44\x37\x14\x66\x5d\xc2\x63\xea\xe0\x5a\x49\xa4\xb3\x9b\xcf\xcb\xcc\x1f\x4f\xa4\x83\xfb\x54\x1e\xdb\x84\x7f\xf9\x65\x8d\xd2\x86\xdd\x1e\x16\xd5\x08\xf7\x5e\x24\x7b\x5a\xae\x8f\x79\x21\x55\xd8\x5d\xb3\xdc\xb8\x4b\x8c\xeb\xd2\x54\xf1\xed\xc1\x86\xde\x3f\xe2\x01\x90\xad\x55\xb9\xb0\x6b\xa5\x96\xca\x2c\x9c\xb7\xa0\xd0\x01\x11\x70\xd7\x86\x74\xc1\x3b\xaf\x23\x9e\x28\x38\xa4\x0e\x10\x8e\x7b\x5c\x46\xcb\xcd\x2c\xc1\x87\x5f\x4f\xe0\xc9\x2e\xa4\x89\x68\xe4\xbe\xb2\xc6\x34\xeb\x76\x59\x1d\x60\x1b\x28\x43\xa7\x1f\x56\xa1\x8c\x58\xd1\x7d\x7f\xfd\xa9\xd1\x72\xc3\x69\x05\x04\x24\xa6\xe1\xe0\xd3\x06\x48\xc0\x38\x4e\x9b\xc5\xe5\x9e\x3b\xab\xde\x66\xad\x13\xd3\x32\x42\xc2\xb5\xe7\x8d\x56\x3d\x29\xe3\xc4\xad\x8a\x5c\xf7\x0e\xae\x15\xc9\xc8\x49\x4b\x18\x0c\x7f\xb5\x49\x5c\x11\xbb\x7e\x2c\x6c\x38\x59\xd7\xd7\x97\x60\x4a\xa1\x18\x86\x5b\x92\x4c\x23\x61\x17\x46\xb7\x3a\x7a\xbd\x39\x82\x85\x79\xec\xe7\x96\x19\xb8\xdc\x50\xd5\x24\x2c\x69\xf3\x4c\x8e\x7e\xed\x17\x8b\x9b\xfa\x74\x14\xa0\x9b\x70\xd1\x36\xf3\xe8\x72\x7d\x64\xf9\x72\xec\x39\x33\x78\xb9\xe8\x4b\xb8\x8c\x83\x21\xed\x59\x03\xe7\xc3\x6e\x99\x26\x8a\x71\xe1\xcf\x87\x6b\x66\x68\x18\xd9\xf0\x8c\x7e\xb2\xdb\xe0\x67\x35\x18\x29\xcb\x82\x20\xdf\xde\xab\x1e\x03\x0d\x40\x7e\x02\x9a\x94\xab\x1f\x33\xb5\xdb\xdc\x6a\x94\x04\xa8\x31\x84\xbe\xcc\x17\xc6\x27\xe6\xfd\x6e\x9b\xb6\x68\xce\xad\x1e\xa3\x29\xe0\xb1\x2e\x7d\x94\x2d\x37\xe0\xa2\x71\x46\x20\xaa\xa2\x5e\x92\xb4\x1a\xb2\x8d\xb9\x4d\xcf\xc3\xc2\x88\xc6\x0d\xb3\x85\xcf\x19\xeb\x5c\x4e\xad\x64\x96\xb5\x4d\x55\xa1\x68\x2a\xa1\xb8\x50\xc6\x85\x8a\x70\xc7\x31\x33\xf5\x6f\x19\xfe\x66\x1e\xc6\x4e\x4c\x88\xcb\x7a\xe3\x4d\xa4\xcd\xa2\x41\x19\xc7\xb8\xe0\xa3\x8b\xd4\xb1\xcf\xea\x90\x18\xc5\x87\xe0\xfc\xb7\x2f\x37\x6e\xcd\x2d\x63\x8a\xd2\x3d\xc1\xfc\xe5\x47\xd2\xdb\xa0\x84\x7d\x1b\x7b\x65\xed\x94\xc9\xcd\x38\x21\x4e\x5e\x50\xfe\x05\x09\xa0\x45\x09\x04\x61\x61\xe0\x2d\x2d\xef\x4e\x52\xbe\x7e\x38\xad\xd9\x57\xb8\x4a\x70\x6d\x0c\x4a\x5b\xd9\x45\x6b\xd3\x3f\x6c\xc3\x98\xbb\x0e\xd2\x65\x86\xec\x52\xc1\xa2\xc4\x83\x1e\xec\xf7\xd3\x09\xbf\xe3\xb4\x51\x54\xb3\x32\xea\x91\xc6\x65\xd9\x6f\x4c\x6b\xd1\xb6\x15\x2a\x47\x1b\x9f\x4e\x4f\xff\xb0\x26\xf1\x13\xe7\x44\x9f\x1a\x9c\xdc\x20\x50\x29\xc3\xef\x1a\xc2\xa8\x36\x46\x65\xe9\xb4\x10\x9e\x3f\xad\xcd\x5f\x52\x0a\x6a\x2e\x61\xfb\xc6\x09\x3a\xd5\xa4\x36\xb5\xd9\x99\x63\xca\xdd\x46\xde\x19\xc4\x17\x10\xbe\xf1\xc4\x38\x0d\xc4\x73\x71\x8f\x15\xf8\x3a\xd5\xfe\xaf\x97\x98\x40\x42\xb4\xfb\xa5\x74\x92\x39\xbe\x2c\x25\x85\xa1\xc5\xe6\x46\x7b\x69\xb0\x42\x08\x3d\x4c\x2b\x71\x1b\x58\x12\x83\x2e\x7d\x4b\xc1\x0a\x2c\x4a\x50\x6e\xed\xd5\x28\x15\xce\x9c\xb6\x0e\x70\xde\x3f\x5d\xd2\x7c\x58\x2d\x9b\x31\x5a\x25\x1c\x6a\xd3\xfc\x1a\x0d\xc9\x10\xdf\x1c\x7d\xe0\xc0\xe2\xe4\x7b\x2d\x4a\x0a\xc5\x70\xca\x45\xea\xd4\x2b\xe3\x8a\x34\x09\xbc\x54\xb3\xe6\xe9\x64\x35\x41\xe0\xc8\xac\xd2\x3c\x5d\x10\xf5\x6d\x16\x54\xa3\xd7\xf2\x95\xa7\x05\xce\x23\xf0\x06\xc0\x26\xce\x73\xc3\x3d\x27\x10\x1e\x08\x92\x7a\x56\xbf\x4d\xe4\x3b\x37\x12\xb7\x96\xb2\xa9\x7e\x6e\x8f\x36\xfa\x1b\x50\x2a\x90\xdb\xfc\x27\x6e\x35\x24\x4d\x11\x18\xa0\x8a\x2a\x7a\xf1\x23\x46\x33\x0c\x75\xf5\xc8\x2e\xe4\xad\xad\xe9\xf3\xb9\xbd\x6d\x81\x2c\xf6\x5e\x7f\x3e\xfd\x2f\x73\x17\x88\x36\x7a\x78\x61\xa0\x00\x43\x48\xa5\x50\x0c\x07\x99\x42\x73\x9c\x39\xc4\x93\x42\x3a\xd9\x2f\x84\x52\x7d\x02\x71\xc1\x63\xcb\xee\x34\xcc\x0c\xa0\xdd\xa3\x3c\xdf\xfe\x64\x37\x4d\x18\x5a\x36\xf8\x4e\xb4\x6e\x51\xf3\x8b\x20\x47\x31\xd1\x36\x7d\x96\x83\x3a\x8d\x7b\x7c\x99\xf5\xaf\x69\x1e\xa3\x28\xa8\xda\x31\x21\xbf\x5d\x53\xd3\xf3\x1c\x18\x06\xef\xcb\xcc\x5c\x2a\x85\x3a\x90\x53\x42\x7a\x39\x9c\x1b\xbe\x45\x0c\x09\xdd\x08\xce\xc3\x3d\xe6\x48\x6e\x68\x2f\x6e\x92\x70\xa9\x25\x34\xde\xdc\x87\x4e\x9a\x66\x9f\xc2\x34\x3e\xda\x79\x27\x5e\xd3\x1c\xe2\xcb\xa0\x2f\x58\xec\xcb\x7c\xcc\xa8\x9d\x10\xf0\x3e\x25\xe9\xf8\x86\x0d\xfa\x58\x8b\xeb\x62\xdd\x11\x7e\xcc\x7a\x4d\x2c\x33\xa0\x54\x38\xfd\x45\xb7\xfc\xde\xbd\xad\x7a\xa7\xa7\xce\x3c\x60\x80\xf6\xe5\x9e\x5c\x95\x96\x57\x0e\xaa\x22\x6e\x5e\x6a\x7a\x94\x0a\x50\x41\xf4\xd5\xef\x6c\x6f\x26\xc8\x60\x37\x31\x7d\xcb\xce\xda\x2f\x40\x8e\x0d\xd7\x5f\x73\xd3\xb5\xc9\x04\xc2\xaf\x96\x6b\x28\xf4\xc2\xf9\xf3\x40\x8f\xab\x2f\x53\x3f\x33\x3c\x35\x98\x10\x88\x86\xa0\xe5\x27\x61\x3a\x68\xf6\xb5\xc9\xcd\x7d\x34\x25\xf5\x88\xba\xc4\xed\x7c\x7d\xa0\x80\x68\x97\x13\x57\xef\x3c\x3d\x77\x91\x66\x1c\x16\x78\x16\x6b\x10\x69\xdf\xb0\xa7\xc3\x3c\x34\xad\x9a\x8f\x48\x9c\x3c\x1f\x7d\xd0\x20\xd9\x20\x2f\x1e\x45\xcd\x5f\xdb\x7a\x89\xb6\xd1\x29\x49\x39\x35\x64\xbf\x37\xbe\xc9\xc7\x15\xf3\x06\x96\xa3\xda\x79\xff\xc8\xa8\xb4\x75\x8c\xd6\xbe\xe8\x35\x26\xa3\xbb\x88\xe7\x49\x26\x1f\x54\x14\xbb\x0d\xaf\xc1\x39\x42\x2f\x40\x60\x89\x1f\x13\x59\x42\xe1\x96\xa0\xce\xb1\xd3\x7c\x82\x5f\xf7\x96\x36\xdd\x50\x65\x1c\x8c\xba\xd6\x48\x30\x34\xca\x39\x38\x63\x51\xbe\x94\x39\x56\x49\xc3\xda\xd2\x0d\x56\x98\x0c\xc5\x7b\x63\xda\x36\xb5\xe2\x30\x10\x4f\x7c\x2c\xd2\xad\xbf\x53\x10\x89\x57\x33\xd5\x19\xc3\x5f\xfb\x9a\xad\x3a\x00\xc5\x85\x62\xf8\xbd\x67\x94\x89\x5e\xba\xbc\xf9\xac\xd1\x8e\xa9\x73\x66\x93\x12\x49\x04\x10\x33\xff\x2e\xe7\x38\x4a\x01\xa1\x7e\x41\x84\xbc\x71\x87\x87\x24\xd7\x26\xcc\x4f\xfe\x6a\x73\x93\x59\x2a\xc7\xc8\x4b\x92\xd1\xf3\x4f\x25\x71\xbf\x20\x80\xb9\xea\x05\xd3\xc6\x53\x4c\xc7\x02\x2f\xfc\xec\x01\x03\x75\x64\x65\xaf\x8e\x65\x63\x31\xdb\x6b\xe8\xc5\x13\x4e\x3c\x5b\xf7\x9f\x7b\xf2\xb5\x16\x99\xab\x44\x29\xaf\x04\x1f\x7f\x7a\x2c\x79\x6c\xc2\x31\x39\x5d\x4b\xdd\xf7\xfa\x90\xb8\x75\xbf\x66\xed\x9a\x42\x31\xcc\xbe\x95\x5e\x66\xd3\x70\xf0\x91\x19\x4e\x39\x2e\x3e\xff\xf3\x80\x58\x0d\x2b\x88\x8b\xfa\x51\xab\xca\xfe\xee\x36\xad\x3c\xb0\x51\xcd\xf6\x7b\x60\x7c\x2f\xf7\xdf\xef\x18\x9d\x20\xec\x73\x46\x7c\xa5\xbf\x74\x69\x45\x71\x6b\x28\x2b\x57\x85\x18\x77\x7a\xad\x4d\x7d\xdd\x14\xd9\x46\x94\xf6\xc0\x2b\x0b\xf1\xfd\xcd\x68\x18\xd8\x2c\xc4\xc3\x74\xc7\x16\x34\x99\xe8\x3b\xf1\xa0\x7b\x5f\xe6\x85\x57\x5b\xf5\xa8\x61\x61\x71\xba\x84\x1f\xeb\x14\x0f\xb5\x82\x3c\x9b\xc4\xa2\xf5\x57\x4d\x31\xf5\xb7\x12\xeb\x8c\x3d\x63\x55\x7e\x88\x9c\x42\x31\xfc\xd2\x52\x51\x36\x7c\x12\x23\x10\x86\x1f\x6b\xb7\x68\xe5\xb0\x05\xca\x48\x99\xff\x38\x98\x16\xd5\xc0\xd2\x1d\xbe\x3f\x31\xe5\x8f\x1f\x4d\x1f\xa2\x3d\x2c\x90\x70\xc3\xc0\x01\x52\xf3\x6a\x01\x24\xc1\xbf\x78\x59\xe3\xb3\x33\x47\x20\x47\x6f\x9d\x94\xb4\x7d\xe2\x12\xcf\x17\x76\x6c\xd9\x01\xb7\x6a\xbb\xc7\xe6\x04\x4e\xb0\x7c\xed\x2e\x71\x28\x2f\x07\xe2\x4e\xf9\x88\x94\x87\x0e\x1c\x31\x88\x93\xf9\xd3\x09\x4d\x49\x5b\xba\xe2\x16\x8a\xe1\xc5\xaf\x8d\xd5\xd0\x4a\x56\xe0\xb8\x1e\x94\x28\xb1\xa4\xb3\xe2\x0c\x43\x68\xdb\xc6\xd4\xc1\x7e\xac\xb0\x76\xf6\x8d\xa4\xfc\xad\x30\x8d\x30\x9c\xf9\x01\x74\x68\x85\xd6\x50\xb3\x67\xfd\xb9\xb3\x46\xd5\x07\x3b\x80\x26\xe9\x4a\xe6\xcd\x7d\x66\x2e\xe3\xd4\x91\x10\x73\xef\xcb\x5e\x36\xc6\x10\x0c\xf1\x11\x2f\xf8\xc8\xf3\x64\xbd\x90\x7a\xfc\x97\x3f\xad\xb2\x80\x3a\xf2\xfc\x42\x55\x0c\x95\x66\x3e\x7f\x97\x1a\x4f\x43\x44\xd0\x78\xb7\x9b\x2a\x89\x25\xc6\x21\x1d\x85\xc7\x7e\x58\x51\x0e\x2d\xa6\x9d\xbb\xf9\x4f\x3e\x69\xce\xb5\x0a\x42\x48\x4c\xd8\xeb\xd8\xab\x28\x1d\x85\x76\x48\xc7\x56\x26\x48\x93\x2f\x5c\xaa\x6e\x59\x13\x6e\xd8\xd4\x64\xdc\x28\x87\x31\x84\xef\xd6\x97\xe4\x70\x15\xc7\x89\x5b\xc5\x87\x76\xa8\x95\x30\x67\xbe\x54\xcf\xcd\x4c\xdd\x31\x2c\xdd\x18\xbd\x6e\xcd\xb5\x61\xe3\x44\x7f\x4e\xd8\x22\x49\x7b\x7f\xa6\x28\x9b\x66\xcf\x6e\x5b\x30\x27\xfa\xde\x21\x13\xc6\xe9\x9c\x83\xa6\x17\x38\xfb\x6d\xd3\x33\x46\x36\xdd\xe4\xfb\xeb\xd8\xdb\xa2\x95\x43\x48\xb8\x61\x7d\xeb\x41\x55\x00\x8a\x35\x16\x13\x49\x33\xbf\x1d\xa4\x66\x0d\x7d\x9b\x63\x24\x0d\x99\x34\x8f\xba\x7c\xf2\xf0\x7b\x75\x55\x9a\xfc\xca\x5b\xd5\x0b\xae\x44\x25\xb8\x4f\x84\x72\xd3\x25\xae\xa4\x49\x22\xce\xc1\xb0\x34\xfb\xbf\x06\x58\x8c\x3c\x90\xef\x8f\x5b\xd8\xc3\x0d\x41\x41\xa5\x5e\x92\xf8\xe1\x9e\xb9\x3b\xb9\x0a\x87\xe9\x39\xf9\xbc\xac\x06\xa7\x80\xc7\xa2\x32\x47\xce\xdf\x6b\x3e\x7a\x9b\xb8\x55\xa9\xfd\xff\xb7\x83\x26\x1b\x89\x96\x65\x7b\xc2\x05\x22\xfd\xc8\xbf\x75\xef\x60\x79\x8f\x54\x48\xfd\xec\x9d\x65\x9a\x44\xe2\x3a\x4a\x6a\xab\x3c\x36\xf4\x46\xe6\xb4\xcd\x9b\x1b\x77\x1a\xbe\x6a\xcc\xdd\xf8\xc4\x31\xda\x57\x3b\x8f\xaa\x60\x91\x72\x70\x7d\xd3\x34\x07\xe3\x1a\x3a\x9d\x9d\x78\x8f\x81\xaf\x8a\x41\x5c\x11\xf2\xef\xda\xa5\xcd\xbb\xd8\x44\xaa\x23\x66\x87\x1d\x4d\xef\xf5\x12\x65\xac\x2c\xde\x49\xf8\xfa\x39\xcd\xd7\x95\x06\xb8\x50\x0c\xb7\x6d\x51\x19\x2b\xe6\xac\x1c\xab\x7c\xbf\xf9\xce\x58\x0d\xd0\xf2\x3c\xa8\xc0\x85\xe8\x75\xf4\xcf\x68\x97\x1c\x25\x14\x5a\xa9\x20\xd7\xd1\x9b\x9c\xb5\x55\xd6\x8c\x5b\xb6\x3e\x98\xbc\x6b\x61\xfc\x27\xc9\x2e\x5f\x3c\xac\xcd\xb5\x4a\x00\x63\x4c\xb9\x55\x4b\x30\xa3\xe0\xca\x02\x08\x9f\x57\xd9\x86\xfc\x92\x45\x84\x33\x74\xbd\xf9\x74\xcf\x6d\x3c\x74\xb9\x3e\xd1\x44\x89\x65\xbb\x3d\x4d\xc5\xf8\x90\xba\xc8\xae\x3f\x61\x13\x1f\x77\x49\x5b\xc9\xdc\x77\xde\x12\xe7\x96\x8d\x2b\x30\x76\xb9\x56\xeb\xba\x76\x21\xb7\x79\xe2\x26\xbb\x21\xd4\xfa\xb5\xa8\xc1\x24\x21\x2e\xb7\xcf\x96\xe6\x16\xcc\x89\x72\x06\x78\xaf\x0d\x43\x92\x83\x46\x91\x51\xc8\x84\xc0\xd6\xd9\x31\x34\xbd\x75\xea\x8c\xbb\xa2\xf9\x94\x4c\x52\x3d\xfb\xfc\xb0\x54\x2b\x4f\x94\x0a\x1f\x7e\x47\xcb\xcc\x09\x47\x56\x40\xc5\x93\xcb\x0e\x7e\x35\x76\x19\x0c\x80\x4f\x15\x56\x34\xad\x01\xdf\x26\xdc\xef\x29\x78\xa4\xbb\x50\x0c\xef\x1c\x9f\xe4\xd2\x2e\xc4\x2a\x95\x4b\xbf\xb8\xa0\x45\x13\x53\x02\x80\xae\x2f\x7f\xc3\x6d\x46\x66\x61\x8b\xb1\x4e\x21\xa2\x94\x7f\x43\x8e\xda\x33\x9f\x34\x54\x9f\x66\xf1\xd8\x4b\x35\x5a\x4e\x19\xd7\x31\x98\x31\x44\x07\xb3\x88\xc5\xd9\x5f\x2a\x60\x09\x77\x37\x8d\x2f\xe7\x87\x3d\x65\xce\xdd\x57\xab\xd8\x4b\xe8\xe5\xdf\xb9\x27\xb9\x09\x0b\x05\xa9\xa9\x8f\x45\xe9\x63\x01\x0c\x31\xa9\x06\xfc\x5d\x75\xeb\xa5\x5d\x66\x0f\x2f\xa8\x6b\x02\xd4\xb9\x0b\xcf\x0d\x97\xfb\xc2\x2d\x93\x72\x3c\x6b\x92\x5b\x39\xc9\x74\xe6\x37\x08\x4c\xb9\xae\xf3\x5a\x33\x20\xa0\xb8\x47\x9f\xb5\xfd\xc6\x2e\x55\xbe\x36\x38\x76\x80\x6e\xf7\xe0\x43\xba\x75\xa3\x47\xaa\x2e\xd8\x69\xe5\xbe\x2c\x4c\x68\x0a\x9f\x60\x9c\x36\x1d\xd2\x5f\x38\x39\x5c\xeb\x7c\x36\x88\x07\xf5\xc0\x75\xc3\xb5\x5a\x17\xdb\xa8\x14\x65\x08\xb1\xa3\xd4\xb5\x77\x27\xe4\x9f\x5e\xa6\xf9\xc0\x64\x3f\x75\x91\xd6\xf3\x29\x44\x2b\xef\xd4\x71\xb1\xf5\xa3\x83\x81\x05\x10\xc6\xb6\xed\x54\xe5\x57\x39\xe5\xf3\x9f\xad\xe9\x26\x02\x3e\x73\xe5\x5c\xce\x67\xcf\x89\xb6\xc4\xd4\x0d\xc8\x45\x2e\x9a\xaa\xfd\xe2\x0f\xef\xbb\xdc\x2c\x12\x68\xec\x15\x9d\x90\xdd\x1e\xdd\x20\x12\xb9\xb5\x38\xca\x35\xe4\xb1\xb7\x66\x8d\x92\xe0\xb6\x6a\x5a\x5d\xf5\xc0\xee\x74\xd8\x00\x52\x7f\xec\x2b\x6d\x16\x05\xff\x72\x9f\xa9\x6a\xc3\x54\xad\xfe\xd2\x16\x53\xdb\x92\xb9\xd5\x32\x93\x2e\x2d\x7d\xd9\x3b\x57\xea\xb7\x8b\x1d\x47\xf4\xf4\xff\x6a\x5f\xab\xb2\x6f\xd4\x1d\x08\x27\xaf\x81\xe8\x40\xb1\x5b\x58\x20\x48\x2e\xe1\xfa\xfb\x74\x95\x19\x39\x5f\x73\xd5\x83\x17\xcb\x35\xd0\x40\xd2\x7d\x2f\xf3\xba\xb0\xf5\x2a\xac\x65\x25\xcc\xfd\x94\xeb\x79\x66\xdb\xf3\x89\xb0\xca\x82\xd9\xd1\x0b\x7e\xe2\xed\x74\xef\xbd\x7d\x8e\xb8\xe0\xdc\x40\x83\x83\x86\xca\x54\xfa\x08\x7a\xfe\x4c\xe3\x41\xb8\x5e\x40\x7d\x21\xdd\xd5\x1f\xd7\xf6\xe2\x83\xa6\x8c\x6e\x03\x23\xf5\xec\xb6\x6f\x35\xc0\x01\xc2\xad\x80\xf8\xb1\x9f\xd6\xb8\x43\x1a\xaf\x24\x26\x01\x43\xd4\xef\x39\x3b\x32\x35\x74\x44\x98\x2b\xa5\x4c\xee\xae\xa7\xab\x81\xb6\xb6\x36\x49\xe4\xd8\x2f\x03\x78\x89\xb1\x5a\xa1\x18\x3e\x3e\x54\x3c\xab\x6b\x7a\x90\xcf\x28\xd5\x15\x28\x32\xee\xf1\xa1\x5a\xb3\x22\xca\xc3\xdf\x79\x36\x9d\x45\x94\x90\x5b\x93\x4d\xdd\xf4\x1d\x3f\xa8\xe9\x18\x79\x18\x39\x08\x4a\xe5\xe9\x3b\x92\xed\x50\xe2\x2c\xc5\x98\xf6\x86\x8f\x55\x2e\xb6\x41\xd3\xda\x9b\xb5\xa7\x45\x3f\xd3\x2b\x95\xe8\x26\x87\xec\x53\xcd\xcd\xd8\xc0\xc9\x01\xd5\xfb\xf0\xa5\x57\x53\xbf\xef\x8b\xcd\x35\x67\xb9\x19\xc1\x02\xee\x63\x8f\xe0\x58\xc4\x36\x37\x61\x73\xec\xd3\x46\xc1\xb4\x2f\x5f\x7c\x5a\x14\x4f\xb8\x0a\x08\xc6\x67\x0f\x9b\xea\x49\x65\x16\x94\x40\x2f\x59\xb0\xa8\xdc\x13\x4a\xec\xaf\xaa\x43\x18\x8b\x35\xf5\x83\x3b\x02\xe6\xa3\xe8\xac\x79\x52\xfe\x5c\x05\x23\x51\x72\x6d\x79\x49\x6b\x0b\x30\x07\x18\x17\xe3\xf7\x4a\x48\x37\xba\x47\x38\x5a\xb2\x97\x19\xde\xeb\xb1\xc9\x4c\xdc\xe6\xce\xb5\x87\xfd\x4e\x18\x09\xe5\xbd\x77\xdf\xd6\x14\x37\xb0\x8f\x9a\x15\x37\xfe\xb4\x37\xbd\xf8\x3b\x63\xa8\x2a\x3c\x64\x90\xc4\x2b\x58\xf3\xa1\xcf\x0e\x59\x69\x54\x28\xd2\xc2\x54\xfa\xf5\x6f\x9c\xa6\xc2\xbc\x8d\x89\xeb\xf7\xea\x54\xb9\x45\x93\x54\x2e\xd8\x19\x94\xa4\xd0\x5f\x5f\xee\xc4\x0e\x03\xbf\x46\x6e\x95\x22\xe9\xbe\x10\x7e\x77\xc5\xd0\x64\x01\x08\xd2\x4e\xee\x81\x1b\x8c\xaa\xa1\x04\x09\x36\x8e\xdf\x51\xf9\xfc\x18\xb3\x54\x56\xb7\x40\x56\x4b\xba\x3d\x00\x5b\x08\x06\x4b\xf3\x03\xf6\x9b\x22\xbf\x4e\x1d\xdd\x21\xc9\xbc\xe9\x74\xe7\x37\xdb\x86\xe8\x45\x51\x14\x1a\xdb\x0c\x92\x3b\xb8\xb0\xc8\xf4\xf9\x4b\x8d\xb4\x02\xab\xc0\x27\x10\xf7\xd2\x4d\xa9\xcc\xe8\x99\x97\x99\x45\x43\x9d\xb9\x1e\x29\x89\x72\x16\x52\xd3\x63\xdb\x87\xeb\x8f\xb7\x6a\x03\x3f\x3c\xf7\xb9\x8d\x82\xf1\x7e\xbd\x5b\x0e\x3c\x5f\xd2\xfa\xd2\xdb\xeb\x68\x59\xb1\x43\x3a\x89\x53\x28\x86\x0b\xd7\x19\xb6\x0e\x54\x76\x8a\xe3\xfc\x65\xc7\x50\xd5\xed\x80\x21\xc4\x18\x05\x0e\x37\xef\x35\xe1\x2f\x31\xb1\x19\x77\xa0\x9e\x79\xc6\xb0\x01\x47\xb4\x26\x40\xf9\xec\x77\xa7\xe8\x94\x9d\x06\xa2\x90\x45\x44\x91\xa7\xbd\x55\x03\x62\xc0\x65\x0b\xb2\xeb\xf0\x99\x0d\xc9\x31\xdc\x29\x28\xa5\x3f\xdf\xad\x35\x51\xa2\xf2\x0f\x36\xc4\x8d\xbe\xba\xc3\x5e\x3b\x88\xfe\xd3\x35\x86\xa6\x16\xee\xae\x8b\xe9\x37\xc8\x0b\x7f\xdf\xde\xda\x14\x41\x21\xfa\xcf\x3e\x70\xa9\xc6\x8c\x01\xed\x03\x1b\xf3\x5e\x5c\x65\x0d\xe2\x82\xa5\x67\xdb\xba\x09\x46\xbe\xe3\x62\x98\xf4\x52\xd1\x20\x7f\xca\xb4\x87\x80\xa3\x3c\xba\xa3\x5f\x2e\x4a\x07\x29\x56\x07\xc0\xdc\x55\xa8\xc5\x8c\xc9\x3a\x2b\x94\x39\x4c\x80\xcc\xd9\x7f\x3f\xaa\xd2\x9b\x3a\x76\xc5\x71\x18\xbe\xf8\x8e\xa9\x4e\xef\x33\xd9\xa7\x63\xd3\x55\x54\x8d\xe2\x67\xb5\x50\x0c\xaf\xdc\x6d\x98\x55\x4b\xd3\x60\xb8\x3a\x39\xc0\x95\xdd\x64\x8e\xfc\xb9\x09\x8f\x72\xf9\x49\x35\xdc\x34\xaf\x3d\xba\xac\x87\x56\xb4\xc8\x0c\xdb\x71\x58\x59\x98\xc2\xfc\xee\x6e\xd1\x06\x59\xc7\xa8\xe7\x33\x5d\xaf\xfc\x83\xbd\xca\x6f\x0b\x2c\x00\x72\xf4\x82\xd2\xb3\x42\x0e\x6f\x9a\xd7\xc8\x5c\xfe\xb6\x5a\x8a\xc2\xda\xc7\xc1\xd2\xfe\xe2\xea\xf1\xa3\x35\x92\x32\x25\x9e\x6e\x52\x6a\x38\x23\xe2\x6e\x8b\x07\x60\x09\xac\xbc\x3e\xee\x7d\x21\x7d\x8e\xb2\x4a\x45\x84\xb2\x81\x9a\xf3\x6a\xfb\xec\x99\xf3\xe7\x08\xae\xfb\xe6\x37\x9a\x5d\xe3\xa3\x27\x36\xdb\x10\xdf\x9d\x3d\x73\xee\xdc\x05\x31\xc8\x78\xd9\x20\x03\x0e\xf2\x7d\xec\xd4\x63\x1e\xc4\xc5\x8f\x49\xcf\x2e\xb7\xcc\xb1\x3e\x3c\x70\xfb\x6d\xe2\xf0\x58\x67\x07\x0e\x34\x6d\xbe\xb6\x55\x33\x3b\xe8\x00\x83\xa3\x5d\x53\x54\x48\x20\x4e\xb4\x90\xe0\x17\xbf\xfb\x82\xc1\x9b\x0b\x5c\x07\x09\x4f\xa6\xf0\xf0\xa4\xf4\xf6\x2c\x93\x84\xe4\x39\x50\x93\x5a\x42\x41\x27\x2c\xf6\xec\x70\x51\x26\xa2\x7a\x9d\x33\x64\x49\xa2\xd6\x13\x2d\x86\xb2\x29\x2a\x0b\xaf\x65\xd9\x97\xf8\xd8\x4b\x02\x44\x2c\x41\x0f\xe0\xdf\x66\x89\xd6\xd7\x75\x3c\x5a\x6d\x56\xb3\xc9\xd2\xbf\xec\xd0\x4c\x0f\x09\x4d\xeb\x24\x6f\x34\xf6\xb1\xcf\x60\x48\x4b\x5e\xf3\xf7\x2f\x52\xd3\x64\x60\x0f\x9a\x5e\x3b\xbd\x8f\x8a\x92\x65\xde\x7c\x6d\xbe\x31\xfc\xcc\x41\x43\xe0\x34\x70\x1c\x54\x8d\x0f\xd7\xdd\xab\x4d\xc5\x6a\x54\x95\x25\x50\xf6\xee\x09\xe2\x38\x72\x02\x0f\x07\x80\xf6\x65\x6f\x3f\x95\x84\xa8\x32\xd8\x6c\x75\x1b\xb6\x4f\x34\x70\x2d\x1b\x33\x37\xbe\xe4\x1f\x34\xb4\x84\x0f\x37\xb0\x1b\x4b\xd7\xe7\xfe\xba\x64\x4c\xcf\x52\xcc\xab\xe2\x54\xcb\xec\x58\xa1\xe2\x5e\x25\x90\x06\x9b\x99\xc0\xe8\x9a\x8a\x45\x10\xaf\xbc\xdf\x1b\x42\x95\x0d\x46\x29\x8e\xc3\xcc\xab\x86\x35\xbf\x1d\x54\x93\x19\xbd\x8f\xd5\x0d\xef\xcd\xa4\x8a\x8d\x6d\x9d\x46\xee\x8e\x65\xda\x45\x5c\x15\x96\x12\xa1\x7b\x28\xd9\xde\xf5\x46\x14\xee\x7e\xff\x9a\x69\x2f\x26\x7c\x9c\x25\x78\x3d\x72\x7a\x7a\x35\x96\x9c\xae\x78\xb8\xf2\xfb\x9a\x50\x89\x47\x4a\xae\x44\x24\x3e\x3c\xc6\xe8\x6b\x52\x87\x79\xbe\x6c\xe0\x7c\xa3\x23\xfd\xe8\x5d\x6c\x61\xcf\x43\xbc\x47\xce\xe4\x1f\x7d\xf6\x52\x23\x58\xc6\x12\xf3\xf1\x50\xc2\xc2\x87\x44\xfe\x8c\xbb\x45\x03\xf1\xc3\x34\xf6\xe8\x44\x56\xdc\x5d\x59\xdf\xda\x22\x8f\x30\x1f\x53\x8a\x2d\xb8\xae\xcf\x1e\x54\xea\x50\x25\xde\xd3\xc4\x2e\xcf\x4f\xd7\xa6\x40\x6b\xd8\xc1\x9c\x35\x58\xa1\x18\x7e\xe3\x01\x25\x74\x5c\x42\x5e\x0d\xfb\x25\xd4\xac\xe4\x91\x39\x38\x33\x7d\xdb\xe5\x80\xc7\x23\x40\xe1\x8d\x67\xcc\xee\x23\x48\xf5\xc5\xd3\x59\x3f\xbb\x41\xdc\x42\x99\x25\x6c\xaa\x4c\x45\x53\x20\x29\x71\x8c\x44\x66\xb5\xfb\x11\x91\x4a\xdc\x82\xad\x40\xa8\xe4\x99\x5d\xea\xa9\x7b\xa5\x2f\x39\x2d\xdc\x8c\x7a\x3c\x5d\x9e\xf7\x93\xef\x19\xb0\xa8\x65\x05\x5e\x32\x6d\x9c\xfb\xce\xeb\x0a\x43\x11\x2e\x95\xc5\x70\xf0\xab\xa6\xb6\x35\xf3\x85\x3a\xc2\x90\x7b\x75\x55\x9e\x40\x48\xc9\xad\x7b\x5d\x05\xe5\x5e\xec\xd6\x58\x27\xc8\x6f\x2e\x5a\xa4\xe5\x0e\x00\x9a\x0a\x9f\x9d\x0f\x8f\x37\xd0\x24\xdd\xcd\x43\x1c\xf6\x1f\x7f\x7e\x7a\xea\x4f\x6a\xa4\xec\xa2\x7a\x3d\x4e\x79\x4d\xe6\xcd\xb0\x07\xd2\xd9\x5c\x9d\x30\xd7\xaf\xb1\x86\x57\x4b\xd1\x78\x72\xff\x90\xff\x3f\xb3\x2b\x78\x61\x07\x17\xa5\x97\x69\x3d\x4d\xc3\xcb\x57\xf7\x18\x6b\xbc\xe2\x63\x1e\xd7\x30\x9f\x1f\x95\xce\x5c\x48\x7c\x92\xec\x1b\x63\xf6\x0f\x1a\x8c\x5b\xb8\x1c\xc3\xb5\x7f\xa4\xca\xb8\x01\xc5\x5c\xa7\xcc\xf3\xed\xba\xdf\xb5\xcf\x91\x90\x7e\x3c\x75\x41\x04\xba\x2e\xc6\x6b\x12\xed\x18\x73\x52\xa3\xfd\xc8\xcf\x87\xeb\x4e\xa9\x94\x0e\xf1\xc0\x15\x64\x28\xe0\xea\x7e\xef\xb9\xf4\x82\x80\x28\xa7\x6c\xd5\x26\xb5\x2b\xc4\xdd\x86\x71\x2f\x39\x92\xf8\xd7\x4f\x28\x01\x63\xc2\x0b\xc5\x6e\x01\xf9\xdc\x84\xaa\xa4\x89\x2d\x9b\x19\xf3\x82\x21\x80\xe7\x05\x49\x77\xb0\x2f\x7b\x6c\xa2\xd1\xdf\x43\x62\xd8\x20\xf7\xf4\xf1\xf1\xe6\x62\x15\x24\xe6\x38\x0e\xfc\xfb\x7a\x81\x1b\xd6\x69\xe0\x41\xb7\x2e\x7f\xd7\xf4\x66\xd3\x73\x24\x1a\x80\xe1\x77\xcf\x37\x9b\x43\x89\x9c\x37\xf7\xc6\x22\xf5\x7c\x1d\xe6\x60\xd7\x0f\xe0\x50\xfc\xd7\x03\xe3\xcd\xc8\x2d\x48\xfe\x71\xe9\xb0\xf9\xcc\xc5\xf1\xbf\x4d\x8e\xc9\x0f\x3b\x5b\xc7\x6b\x43\x30\x2e\x2e\x21\x4b\x9f\xa0\xec\xcb\xdf\x6a\x98\xb7\x56\x18\xa5\xf0\x60\x25\xd1\x2b\x93\x7b\x59\x55\xa0\xe2\xd8\x09\x87\x9e\x54\x2f\xa2\xca\x09\x6e\x40\x8f\xb7\xd8\x97\xbb\xf4\xe4\x24\xe3\xcb\x38\x26\x55\x57\x59\xfc\x41\x42\xf1\xad\xc1\xc9\xeb\xba\x0a\xa2\x6c\xfe\xae\x47\x13\xd4\x87\xbb\x7a\x95\x53\x39\xa5\xd1\x95\x11\xc5\x5a\x62\x98\x1b\xb7\xca\x90\x67\xc2\xa8\x91\x0c\x39\x66\xfe\x7c\xb5\x58\x04\x4b\x11\xf5\x3d\xcb\x0e\xaa\x3a\x28\xf6\x93\x37\x47\x6b\xe0\x13\xf2\x89\xe7\xc3\x0c\x7f\xf4\xc1\x4f\x4f\x97\x07\x36\x72\x6d\x19\x46\xe6\xae\x30\xa2\x0e\xa2\x92\x4f\x9b\x1b\xb8\xc9\xe0\x06\x22\xea\x13\x87\x71\x9c\x74\xac\xb3\xff\x5f\xb7\xa6\x56\x53\x67\x35\xec\x39\xfd\xb0\x95\xaf\x9c\xd9\xa2\x71\x92\x7d\x30\x06\xc9\xfe\x6c\x9b\x4a\xe0\xea\xe2\xf2\xce\xcc\xbd\x4c\x8b\xfe\x20\x15\xdd\xf4\x5d\xbf\x1b\x2a\xf5\x7a\x30\x05\xff\xff\xec\x3f\x4f\x9a\x66\x96\xab\xb1\xdc\x5a\xb3\x28\xe1\xa4\xd7\x15\x88\x54\xe1\x58\x68\xf9\xc1\x7e\x76\xdf\x31\x45\x25\x98\x55\x4b\x94\x5a\x1a\xf7\x89\xa4\xed\x26\xe6\x33\x2e\xdc\x64\xd3\x95\xf0\xae\xce\xf1\xe6\xc9\x4e\x29\x76\xab\x09\x2d\xef\x3b\xfb\x12\x38\xa8\xc6\xd2\x03\xf4\x1b\x5a\x52\xfb\xd2\x07\x04\x1b\x9a\xa3\x03\xf5\xea\x4e\x18\xc5\x85\x7f\xbf\x55\x80\x34\x73\x67\x01\x11\x2f\xe3\x9a\xa2\x2e\x0d\x2c\xd8\x7c\x32\xa9\xf8\x76\x29\x1d\x78\x3a\x61\xf2\x20\x11\x23\xff\x9b\x7b\x8c\x69\x14\x8e\x3d\xe1\x2c\x86\x68\x2c\xcd\xff\x97\x97\x34\x2f\x6d\xdc\x90\x0d\x3c\x28\x62\xef\xab\x4c\x30\xc2\xac\xe7\xe1\x38\xbc\x0b\x48\x6f\xf5\xfd\xa6\x33\x42\x83\x45\xff\x0a\x33\xb6\x6d\xbe\x31\x82\xe8\x79\x41\x82\x15\x3e\xbe\x57\x75\x06\x83\x8a\x76\xa4\xfc\xf7\x43\x46\xf4\x89\x0a\x40\x2a\x07\x99\x6f\x79\x54\x24\x2d\xd7\x58\xc2\x14\xef\xc8\x03\x5a\xdb\x8d\x05\xbc\xd0\x85\x00\xe7\xf8\x64\xbb\xe9\xf8\xae\xe6\x69\xf2\x63\x2f\x98\x56\x0a\x3c\xf0\x89\xdb\x93\x08\x9a\xfd\xa1\xd7\xe0\xa2\x4b\x32\x81\x18\xea\xdd\x3e\x79\x84\xbe\xb8\x89\x55\x93\x3a\xb2\x6f\xb4\xe8\xda\x36\x80\x5f\xe6\x9e\xde\x60\x54\xa1\xae\x8b\xea\x8c\x12\x4f\x3a\x64\x47\xb1\x6e\x64\x62\x69\x83\x7c\x1f\x11\x2a\x9a\x0d\x3f\x19\x6a\x98\x4f\x07\xb5\xfe\x47\x0e\xb7\x9e\x13\xc8\xe7\x2d\x96\xcd\x19\xd6\x55\xad\xfa\x72\x5f\xd8\xd1\x94\x67\x4b\xcd\xd4\x70\xb6\x24\x9d\xad\x0b\x78\x0d\xc7\x66\x34\x77\xee\x53\xab\xa1\xc4\x58\xcd\xf3\x19\x97\x80\xfe\xf1\xdd\xa3\x14\xf6\x6e\xeb\x0d\x97\x8f\x52\x99\x4c\x39\xc4\xb7\x6f\x04\x5f\x02\xf3\x1a\x6f\xbe\xcf\x34\x5a\x88\xb2\x77\xa1\xec\x15\x5e\xbd\x39\x7d\xce\xdb\xa8\x3c\x03\xb8\xec\xbf\xd9\xa8\xe2\x35\x73\x71\xa1\xce\x08\x6c\xe8\x7c\xbb\x3b\x4c\x4b\xb1\xa4\x06\x72\xf6\xd2\xb1\x2a\xef\xec\xe2\x18\xd5\xe4\x31\x3b\xf9\x84\x3a\x09\x38\x89\x22\x54\xf8\x2f\x06\x4f\x0d\x84\x20\x24\x76\xb3\xd8\x6e\x4e\x32\x3d\x4c\xe3\x8a\x61\x87\x31\x8a\x1b\xb4\x81\x87\x70\xf4\xc9\x8c\xb2\xd8\xae\x03\x23\x3e\xf3\xd8\x74\xc3\xdf\x28\x70\x6b\x84\xd7\xa4\xe1\x50\x54\x50\x2f\xbf\xc8\x44\x1a\x2d\x8a\x78\x92\xcb\x64\x7b\x34\xb9\x3e\x88\x20\x60\x18\x0a\x95\xc9\x97\x1e\x56\xa8\x07\x43\xbe\x30\x21\x5b\x1c\xa6\x69\x68\x0d\x82\x7d\x17\x39\xd8\xc3\x92\xf6\x1d\xfd\xe8\x87\xce\x9b\xaa\xb4\x1e\x2a\x43\x62\x07\xcc\x87\x97\x45\xd6\x6f\x33\x07\x53\xe4\x96\xa3\x77\x74\xa9\xa1\x41\x55\xc3\xc4\x47\xc6\xf4\xfe\xc2\x7b\xb4\xfe\x16\xe6\x25\xa1\xb5\x74\xfd\xfe\xa6\xd9\x08\x3f\xd6\x42\x7a\xbf\x6c\xf4\xd5\x31\xc5\x0d\xf0\x4c\x90\x18\xd2\xe4\xcd\xa2\xf8\x2a\x13\xcf\x22\x75\x4a\x5c\x21\xae\x9e\xfb\xe3\x2b\x83\xd3\xb7\xfd\x51\xd3\x49\xd8\x16\xf3\xe1\xc9\x5c\xc4\x3b\x1a\xfb\x70\xa6\x99\xec\x5f\x71\x6b\xfa\xfc\xe7\x1e\x89\x8e\x63\xf3\x20\xf8\xfd\x13\x72\xa7\xd5\x9a\xba\xcc\xb9\x2b\x3a\xd5\xd1\x5c\x45\x8e\x87\x6a\x76\xc0\xcb\xd0\xcb\xcb\x5c\xb7\x5f\x45\x06\x50\x6e\x85\x61\x89\x25\x26\xe1\xb1\x12\xa5\x8c\xf1\xf5\x0e\x58\xa5\x7a\x16\xc8\x87\x7c\x38\xf3\xb6\x61\x93\xdd\xd6\x3e\x2f\x8e\x69\xed\x59\x91\xc5\x21\x8b\x33\x2f\x7a\x72\xb7\x3f\x91\xac\x45\x1f\xa2\xf1\x99\x01\x86\x78\x69\x50\xc2\xdc\x0a\x28\xf3\x88\x9c\xe7\xca\x0f\xca\x4a\x17\x51\x6b\x59\x7f\xda\xb2\xc5\xf0\xca\x2e\x13\x80\x83\x03\xc7\xec\xdd\xfd\xc3\x0a\xdd\x5b\x81\x03\x50\xf6\xd8\x9b\xa6\xf6\xb5\xc7\x83\xba\xf0\x2f\x0d\xb7\x3e\x3c\x52\x9b\xd0\x17\x7e\x11\x22\x7d\x2d\xec\xd0\xd4\xa1\xbb\xeb\xb8\x4c\xe4\xf9\xf9\x8d\xbb\x86\xca\xf2\x08\xc9\x0e\x78\xbe\xf4\x5e\xf3\x90\xbc\x3c\xe5\x56\x3f\x62\x18\xed\xa3\x32\x8e\x1f\x75\x66\xee\xaa\x74\xfc\x99\x29\xfd\x8e\xc6\x5d\x9d\xbe\x64\x20\x81\x49\xdc\x38\xec\x7b\x6f\xa4\x56\xb7\x21\x1f\xc7\xfa\x06\xd9\x0b\xad\xc3\x35\x30\x32\x10\x32\x03\xe1\x5f\x3d\x35\x46\x43\x84\x65\x39\x1d\x20\x68\xce\xe4\x76\x1f\xd7\xfd\x93\x25\x45\xa2\x53\x21\x7e\xa8\x0a\x23\x31\xf1\xe0\x7d\x66\xf9\xd5\x57\x6a\xcf\xcb\xc7\xdc\x47\xc4\xed\xd7\x90\xe1\x51\x5b\x41\x30\x14\x45\x55\x4b\x4c\x63\x7b\x77\xa2\xd6\x77\x06\x07\xa9\xa6\x79\x4f\x34\x4d\x95\xa1\x36\xe2\xd2\xb8\x2e\x77\xd4\x10\x1a\x89\x12\x58\x91\x56\x66\x3e\x70\xd1\x18\x99\x49\x68\xa8\x3e\x91\x4c\xff\x2f\x6d\x56\xaa\x96\x3d\xcc\xad\x5a\x36\x22\x3d\x41\x59\xef\xd4\x95\x87\x1a\x1e\xcf\x81\x5b\x46\x42\xac\x01\x12\x1b\x01\xba\x7d\x74\xbc\x91\xd7\x62\x4c\x25\x2e\x52\x5c\x9b\xe4\xe8\x14\x43\x8e\xf4\xa5\xba\x7a\x02\xa8\xdc\x00\xab\x69\xa1\xf8\xd3\x36\x54\x3d\xf5\xc0\x07\xfa\x62\xf6\xd9\xc7\x92\xcf\xd7\x19\x2d\x14\xc3\xdc\xd3\x4d\x24\x33\x98\xd5\x97\x54\x8e\xf0\x8e\x99\xea\xeb\x41\x6e\x10\x5c\x5b\xa3\xaf\xba\x7a\xff\x30\xed\x8d\x5b\xc2\x1f\x2f\xf3\xdd\xb7\x34\x06\x29\xf6\x7d\x1a\xab\x67\x3f\x5e\x31\x67\x51\x83\x28\xef\x08\xa4\xd1\xc2\x57\xf7\x19\x96\x22\x1d\xbe\x2d\xd2\xac\xef\x1e\x4a\x47\xfc\x49\x33\xac\x26\xe7\xc3\xdc\xcf\x0f\x9a\xb3\x40\x94\x19\x12\x82\xbf\xe6\x0a\x9b\x44\xdc\xc7\x8e\x32\xa6\x0c\xff\x6d\xc0\x87\x93\xdd\x1c\xe5\x0e\x83\x05\xd0\x12\x55\x7f\x7e\xc0\xe1\xf0\xfb\xd0\x2a\x25\x5e\x52\x02\x18\xf7\xd6\x23\x46\xb3\x09\xa4\x75\xbb\xfb\x31\x66\xcc\x8d\x7b\xc2\x18\xdc\xa9\x54\x18\xf7\x29\xf6\x3c\xf0\x23\x8c\xbe\x1f\x0d\x15\x80\xcc\xaa\x00\x80\x0d\x5d\xa0\xeb\xd2\x69\xe3\xe3\x0c\xa8\x0b\xf1\x5e\xec\xe2\x6a\x35\x55\x2c\x4e\x5e\x24\xa2\xa3\x1d\x38\xd2\xe1\x6b\xeb\x41\x01\x97\xc2\x8e\xe0\x09\x9d\xf8\xf8\x16\xf5\x0c\x3a\x81\xc2\xaf\x0f\x94\x95\xcc\x61\xd8\x0a\xe9\x41\x71\x88\xb9\x70\xde\x18\xc8\xf5\x29\x72\x7d\x7d\xd8\x6a\xc1\xc3\xda\x31\x00\xb2\x90\x51\xae\xb9\x42\x93\x20\x0f\xdc\x82\x17\xa5\xe7\x2e\x18\x2e\xe6\xf6\xde\x6a\x08\x22\x75\xfb\x1c\xb1\x68\x1f\x22\x1e\x4f\xc1\xe7\x2f\x1a\x7a\x71\x7c\xb0\x70\xb7\x12\xc0\x34\xc2\x4f\xf3\xda\xf4\x2b\x46\x9e\x17\x70\xfd\x4e\xf2\x97\xdd\x2d\x3e\xd3\x20\x96\xcf\x04\xd9\x2f\x77\x78\x80\x9a\xa6\x6f\x9f\x13\x7d\xcb\xd9\x69\x9a\xf9\xbe\x3e\x1e\xb0\xe4\x65\xcd\xc4\x66\x61\x54\xaa\x64\x8f\xde\x3d\x4a\xe3\x25\x79\x3e\x0f\x3c\x1f\x2e\x26\xfc\xc5\xd6\x64\x5d\x80\xe1\x66\x58\x78\x4e\x43\x85\x7d\x1e\xd5\x8c\x22\x24\xfd\x46\x1a\x62\xb2\x4a\xa5\xb0\x94\x33\x54\x96\xc9\xfc\x8d\x27\x0c\x83\x1c\xc4\x9d\x4a\x20\x47\x0e\xf2\x23\x86\x8f\x37\xce\xb5\x28\x9f\x9d\xc1\x4b\xf1\x63\xff\xa4\x61\x9c\x1d\x1d\x23\x5c\xf2\x99\x73\x9b\x17\x0f\xd5\xda\x1f\x73\x61\xd2\xd3\x56\x84\x98\x06\x2a\x14\xc3\x83\x2f\xa8\xd0\x1d\x50\x2e\x46\x9d\xe3\x47\x79\xcb\x93\x92\x2c\x83\x3d\x29\x37\xfe\x5f\xcf\xa4\xd7\xf2\xdc\x05\xbe\x2d\x9b\x4e\xf1\x4a\xfa\xdb\x6d\xba\x4f\x71\x99\x33\xe6\x88\xd5\x30\xf1\x01\xd3\x48\xad\x4e\x91\x95\x74\x59\x33\x2f\x1e\x33\x09\x18\x75\xac\x7a\x99\x99\xb9\xb2\x1b\xb5\xcc\x46\x9c\x62\xcf\x67\xc9\x38\xf9\xf3\xcf\x19\x53\x6e\x8c\xe2\x98\xa5\x99\x9f\xb2\x5a\x51\x01\x51\x85\x13\x0b\xe9\x0c\x9f\xdc\xef\x84\xb0\x5e\x61\x1d\x76\x5d\xec\x79\x38\x6d\xa4\xb4\xe4\xd8\x68\x6d\x55\x57\x89\xa5\x91\x54\x9e\x59\xaa\xb5\x3b\xda\x4a\x6d\xa4\x4d\x85\x94\xf2\xad\x4d\x33\x0a\x0e\xf1\x70\xe2\xfc\x99\xbd\x47\x72\x0a\x9c\xa0\x5c\x86\xf1\xd2\x37\xce\x25\x68\x0b\x0b\x74\x39\x8c\xee\xe7\x87\x28\x42\x1b\xc8\x96\xfe\xc7\x53\x6a\x31\xcf\x9b\x5d\x28\x86\x5f\xba\x67\x98\xea\x9e\xc4\x47\x75\xee\xb3\x5b\x2f\x33\x4e\x32\x40\xec\x61\xed\xc4\xef\x6a\x82\xe1\xee\x56\x89\x2a\x28\x39\x23\x7a\xf2\x1d\x73\x22\xcd\x85\x1a\x45\x54\x58\xb7\x8f\x35\x9b\xed\x62\xb2\x75\x46\x5b\x53\xfc\x5b\xdf\x32\xda\x78\xaf\x5e\x40\x7d\x70\xa7\xc8\x7f\xd9\xd0\x56\x48\xa4\x9e\xa1\x78\xfa\xaf\xbc\x09\xf4\xfb\x98\x0b\x93\x73\x59\x69\x6f\xbe\x47\x48\x5c\x2e\xa5\x8c\x39\xc4\xad\x96\x11\xc5\x53\x9b\xfa\xfd\xf9\x71\x07\x07\x77\xa5\x41\xe8\xd7\x92\xed\x6f\xeb\xe1\x36\xbb\x63\x81\xc9\x8c\x2e\x51\x2c\x11\x09\xfe\x72\xf2\x2a\x10\x81\x48\xfb\xa9\xac\x41\xb5\x29\x4d\xf1\xfb\xab\x63\xb3\x4f\x2e\xd7\x42\x08\x73\x59\x54\x26\xf7\x8a\x4a\xe7\xf6\x5d\xe6\x2c\xb2\x8d\x5c\x4b\x82\xcc\x7d\xf9\x4f\xe7\x5b\xb5\x70\x57\x61\xdc\x91\x27\xfc\xbc\xac\xe9\x8d\x47\x95\xe3\x5a\xee\xa5\x5b\x4d\xf5\x2e\xcf\xa2\x2c\x8a\x95\x31\xba\xb1\x5a\x1f\xf6\xf2\xfc\x80\x0b\x1b\xc7\x85\xb3\x26\xe8\xe2\x94\x6b\x8a\xb7\xcc\x80\x6d\xa6\x3d\xa3\x29\xc6\x2f\xd7\x31\x77\x88\x1f\xeb\xd3\xfc\xe5\x51\xd9\xa8\xc0\x1e\xe6\x32\xa1\x5d\x72\x97\x66\xe6\xd4\x6d\xc5\x32\x28\xd9\xc9\x67\xc6\x6a\xb0\x16\x72\x6b\x94\xe8\x16\x16\xff\xb8\x7b\x94\x32\xac\xe5\x29\x32\xe7\x84\xc7\x34\x96\xa0\xdb\x53\x62\xb0\x8d\x32\xdf\x5a\xa7\x43\x52\x9c\xe3\xd8\x78\xb8\xf3\xa0\x51\xac\x62\xcf\xe7\xac\x47\x1b\x2e\xbf\x66\xb2\x81\xe8\x58\xb8\x84\x39\x30\xe3\xc2\x3b\x16\x1b\x32\x5c\xd8\x45\x94\xf4\x6a\xa4\x9a\x7f\xd1\x58\x5e\x55\x2c\xe8\xae\xa0\xc2\x97\xfd\x53\xe9\x72\x23\x3b\x21\x9d\x82\x71\xa7\x33\x0d\xef\xdb\xa7\x19\xf9\x97\x6d\x1c\x2b\x52\x7e\xdc\xd6\x48\xcf\x41\x6f\x2f\x8c\x73\xdc\xaf\xa2\x92\x65\x13\x5c\x51\x34\xcc\xf9\x2d\x93\x8d\xa2\xb3\x1b\x01\x1c\x63\xf6\xb1\x4a\x4a\xce\xdc\x26\x20\x83\xbf\x63\x4a\x4b\x9c\xf0\x0b\xbe\x4a\xa1\x18\xfe\xfc\x82\x09\x16\x09\x80\x52\xd0\x78\xb3\x4f\x3c\x21\xb6\x55\x95\x06\xa2\xa2\xf9\xe0\x41\x71\xca\xad\x47\x16\xd6\x28\x8c\x99\xc1\xe7\x54\xe6\x19\x40\x4d\xf7\xe9\xf5\x8a\x2f\x90\x58\xe9\x7b\x01\x8f\x2d\x4a\xb2\xe7\xbb\xc5\x57\xdd\xc4\x5c\x87\x05\xc2\xa2\x3a\x2a\xef\x57\x9d\x51\x56\xd4\x2e\xd3\x03\xe5\x73\x26\x9e\x8a\x28\x89\xf1\x44\xb3\x74\x78\xe1\xde\x61\xf2\x38\x77\x89\x03\x2f\x12\x14\xdd\x67\x8a\x5c\x6b\x29\xa1\x14\x80\x17\xf3\x63\x3b\xd7\x19\xc2\xd8\x9e\x4f\x40\x7a\x4c\xe6\x2b\xf7\x95\xd5\xd9\xd7\xc5\xb8\x6f\x53\x21\xce\x9e\x5b\xf1\xa8\xe6\x50\x82\x38\xe9\x01\x08\x78\xfa\xea\x11\xb2\xb0\x95\xfa\x26\xf2\xa5\xaf\x3e\xd5\x6a\x0e\x76\x8a\xa7\x36\x61\xe6\x28\xed\xa9\xc9\x09\x69\x50\x1a\xd8\xb1\xb5\xd5\x38\x98\xa5\x18\xc6\x63\xaf\xab\xd3\xa2\x14\xbd\xd3\x7c\xab\x71\x0c\xb3\x00\x92\xb2\xb8\xdb\xf2\x83\x0d\xa3\xf5\xc0\xe0\x91\x12\x8d\x75\xd7\xfe\x5c\x51\x18\x10\x86\x38\x7a\xb3\x36\x1a\x50\xe7\xd1\xb2\x77\xe0\xac\x2f\xf4\x5e\x1c\xff\xb7\x68\xb7\x47\xc1\x7c\x7b\x6b\x8b\x8e\xa0\x54\x81\x23\xf7\xdf\xcb\xd5\xb6\x29\x11\x88\x6d\x36\x82\xce\xca\x77\x1a\xe9\x9a\x80\x28\xdb\xec\x5b\x66\x5d\xac\x01\xa3\xbc\x06\x03\x7e\x13\x8d\x44\x88\x44\x99\xb4\x14\x81\x7d\x7a\xa6\x66\x04\x14\xf8\x82\x68\x98\x7b\xe6\x5e\xcd\xb8\x9a\x16\xfc\xa0\x52\x41\x89\x13\xba\x7b\x9f\xfa\xc7\x28\x3c\x62\x6d\xa0\x29\xb7\xdf\x60\xf6\x55\x02\x83\x2a\xdd\xb6\x3e\xfd\x36\xda\x67\xc9\xee\xde\xe7\x0e\xa8\x87\x5b\x61\x1c\x7b\x3e\xc8\x21\x41\xc8\xfe\xc9\x31\xa3\x95\x8f\xdc\x32\x15\xb5\x67\xf6\xdf\xee\x19\xaf\xf5\x5c\xfc\x66\x1c\xff\x37\xc7\xd5\xca\x8b\xc5\x20\xbc\x42\x31\x7c\xc0\x4e\x61\x0c\x89\x02\x55\x66\xf7\x31\x6d\x3c\x9e\x34\x84\x09\x4c\xbb\x31\x01\xeb\xd9\x8c\xf9\xc9\x7c\x4a\x76\xf8\x23\xc9\xde\xeb\xd1\xcc\x80\xc3\xb7\x4b\x53\xcc\xa2\xb9\x1a\xe0\xfe\xc6\x1a\x32\xc7\xd7\x4e\xd4\x8f\x97\xd5\xab\xd7\xcc\x00\xf6\x8d\x1e\xdc\xf3\xd5\x8e\xf4\x93\x68\x9f\x39\x7f\x7e\x87\x3c\xd8\x4e\x19\xe4\x00\x90\xbd\x12\x25\x2b\x04\xe2\xa1\x7b\x44\x9b\x61\xea\x42\x30\xa0\xdc\xae\x63\x2c\x4e\x9d\xb2\x1e\x41\x49\x3b\xe2\x4b\x27\x2a\x42\x29\x12\x44\xdd\x1b\xdf\x50\xd8\x46\x05\x59\x42\x1c\x2d\xfc\xf1\x33\x06\x51\xae\xd7\x67\x35\x05\x37\xe6\x7e\x3b\x46\x6d\x49\x31\x09\x90\xb8\x9c\x4c\x7c\xb3\x55\x49\x12\x28\x85\xda\xf0\xb3\x6b\x44\xd8\x8c\x0e\xad\x68\x67\x9c\x18\x3b\xca\xc8\x5f\x1d\x71\x4a\x87\x99\x47\x8d\x7f\x21\xde\x8c\xce\x4e\xb8\xda\x17\x37\x68\xfe\x41\xc0\x08\x17\x62\x68\x7f\x56\x44\x96\x3b\x02\x52\x28\x86\xcb\x9f\x4c\x2f\x56\x4a\x1c\x22\x05\xe6\x41\xcc\x35\x7b\xe4\x41\x0d\xda\x04\x6e\x09\x10\x4b\x06\x8c\xd1\x61\xab\x80\x56\xc4\x0c\x96\xb8\x69\xc3\x60\xb7\x84\x71\x65\x86\x38\xfe\x5f\x98\x30\x4a\x3b\x98\x7d\xe2\x61\x87\xf8\xe2\x24\x3c\x65\xf4\x5e\x65\x85\x26\x44\x70\x66\xe6\x13\x57\x91\xa8\x54\x09\x17\xef\xd4\xc4\x85\x90\x07\x30\x4b\xf8\xf4\x61\x83\x94\xc3\xdc\x32\xf4\xcb\xe4\xae\x3d\xac\x71\x9f\x3a\x16\xce\x9e\x53\x28\x86\x83\x5e\x1f\x08\xff\x77\x72\xa1\x18\x5e\x25\x69\xa3\x0d\x5c\xc5\xbe\x14\x95\xcf\x3d\x54\xd7\x56\x88\x5b\x61\xdc\x12\x2b\x84\x4b\xce\xaa\x6f\x63\x22\x60\x8c\x5c\x6b\x47\x93\x15\xb4\xb0\xc8\x93\xd9\xe8\x7d\x8b\x04\x0b\x6c\x19\x73\xab\x51\x0d\x82\xe3\x32\x6d\xe2\x06\xb5\x7d\xbd\x1a\xe3\xcc\xb2\x6b\x44\xf3\x89\xfb\xad\xe0\x31\x16\xae\xed\xe5\xc8\xd6\xab\xd1\xff\xbd\x27\x9d\x78\xb4\x2b\x06\x94\x80\x4e\x7e\xbd\x49\xcb\x1b\xea\x20\x96\x08\xf9\xce\xfc\xf1\x46\xd6\xe1\x74\x35\x5b\x00\xe7\xbe\xb0\xce\xf4\x47\x20\x51\x16\x2f\x94\x69\xf2\x1f\x34\x68\xc4\x5d\xc4\xb7\x49\x32\x75\xdb\x9e\x4d\x6f\xd2\xd9\x0b\x17\x2e\x48\xf8\xb9\x1d\x52\x9c\x99\xf8\xbe\x57\x0a\x78\x35\x39\xbe\xa7\x0f\x32\xd4\xd2\x03\x4a\x25\xc7\x25\xfc\xf3\x46\xa5\x9b\x52\xa7\xc8\x75\xfb\x99\x23\xce\x4f\x5f\x33\x32\xfa\xdc\xea\xd5\x26\xa0\xb7\x49\x65\xe7\x1e\x02\x54\x65\xd8\x34\x01\xf9\x5e\xef\x71\x84\x9b\xc8\x38\xf9\x2d\x8b\x4c\xf0\x3e\x69\x9c\x86\x5b\x5e\x4a\x83\xe6\x35\x1b\x71\x8e\x7a\x49\x5a\x1c\x2d\xbf\x74\xa3\x31\x3d\x84\xea\xc4\x47\x54\xca\x3d\x14\xf7\x6b\x6a\xdc\xa4\x17\xc7\x36\x06\x83\x9e\x15\x35\xe7\x2d\x94\x35\x98\x79\x1b\xff\xf1\xb2\x66\xf5\x16\x9d\x00\x32\x27\xb8\xea\x89\x11\x1a\x08\x61\x71\x56\x12\x43\xc1\x97\x0c\x52\x51\x6b\xfe\xdc\x59\x72\xec\x33\xf7\xf0\x9b\xe9\x1b\x70\x90\x8b\x83\x06\xe6\x32\xb7\x93\x82\x2d\xe7\xce\x5d\x61\x54\x09\xb8\x84\xdd\x1a\xe3\x32\x69\x8a\x97\xe1\xa6\x45\xa6\xac\x05\xaa\x33\x57\x40\xeb\xe1\x89\xb7\xd5\xd8\x34\x4c\xe5\xbd\x5e\x12\x69\xcd\x0a\x4e\x7c\xdd\xf6\xfa\xf9\x55\x97\x68\xb7\x20\x5c\x39\xcb\x2c\x8a\xbf\xd0\xd6\x3c\xad\xfb\x3e\x54\x50\x83\x71\xf1\xc0\xc2\x2d\x4f\x98\x2a\x20\x35\x0c\xd1\x26\x7c\xff\x0d\xad\x3e\xc7\x3e\x87\xba\xca\x87\xa6\x7c\x2e\xf3\x9a\x3a\xe0\x2c\x1a\x94\x04\x4e\xdb\x3a\x50\xc4\x5e\x4a\x64\x67\xf3\xa6\x86\xc9\x3b\x92\x75\x59\x7e\xdb\xf8\x7e\xaa\x1c\x3f\xe9\x5e\x65\xfe\xb0\x65\xa8\x7c\xb5\x52\xad\xb7\x2f\xbf\xf6\x0d\x95\xe3\xd8\x81\x2b\x2e\x64\xf9\x2a\x4d\x7b\x84\x20\xda\xe3\x11\xb8\x96\xfc\x6a\x77\xac\x52\xda\x6d\x9a\x83\x7a\x6f\xd2\x30\x59\x4d\xb8\x52\x08\x27\x3a\x8d\xee\x31\x87\x23\x9c\x52\x2c\x2e\x2c\xa2\xf9\x93\xc7\x8d\xd6\x8b\xe4\x8b\x89\xb1\xe1\x7f\x1a\x6b\x74\xdd\x41\xa7\xc1\x4e\x88\xfa\xf7\x6c\xbb\x24\x69\x84\x36\x4d\xaf\x7f\xdb\xe0\xc7\x12\x4a\x71\x15\x51\xa8\xe4\x73\x17\x96\x88\x07\x3b\x6f\x7e\xdb\x6c\xf0\x28\x7d\x70\xa6\xaa\x5c\x3a\x03\x38\x4b\xcb\xc6\xcc\x2d\x4c\xa6\x14\x5c\xe6\x62\xb0\xc4\xdb\xb9\x5c\x17\x13\x93\x8a\xf0\x85\x62\xb8\x62\xbc\xe9\xab\x0c\x42\x53\xd2\xbe\xe4\xcb\xe7\xb4\x7d\x0f\x04\xcc\xd7\x0c\xe1\x48\x9f\x38\x82\x90\x03\x75\xde\xab\x92\xfc\x59\xe5\x28\x6e\x39\xec\x37\x44\x4b\x61\x62\xb4\xbf\x21\xa1\x6c\xf7\x6d\x9a\xa6\x3f\xe2\xe0\x98\x9d\x7b\xf1\xa0\xe1\x07\x8c\xa8\xf0\x31\xd5\x85\x09\xf1\xcc\x34\x72\xe6\x05\xf5\x3a\xb8\x62\x25\x60\x46\xae\x3a\x7e\x74\x2a\xe7\xac\x33\x17\x4b\x3b\xd9\x73\x93\x55\x2a\xd1\xa3\xcb\xbc\x1c\x39\x68\xc8\x09\x73\xe4\x7a\x15\x1c\x9b\x42\x67\x36\x6e\x56\x63\x24\x1c\x59\xb8\x59\x5c\xfb\x81\xbb\x87\x6b\xfd\x66\xbf\x0b\xb2\xd1\xf0\x63\x3b\x46\xa4\xea\xb3\xd8\xa8\xf1\x83\x03\x35\x4a\x0c\x65\x3d\xb0\x55\x56\xb5\x88\x80\x76\x0d\xb7\x70\xe1\x3a\xc4\x2d\xa2\xe9\x67\xe6\xe6\x3d\xa6\x34\xa5\x38\x72\xcb\xcc\x31\x63\xde\xe3\x8d\x58\x79\xde\x17\xa3\xa0\x99\xe5\x63\x46\x9b\xaf\x5c\x32\x6f\xc3\xff\x5a\xac\x59\xdf\x31\x1a\x38\x02\xf4\x3e\xbb\xd1\xd4\x97\x00\x94\x09\x36\x45\xee\xd9\x3d\xa6\xa8\x30\xb1\xe2\xa2\x2d\xf3\xe7\xb3\xc3\xe4\xaf\x5b\x24\xaa\x57\x84\xe8\xcd\xa9\x8a\xd1\x55\x03\xae\xb0\xfc\xbe\x4b\x0f\x1a\xb4\x2f\xd7\x02\xee\x49\x8c\x3a\xe6\x1a\x8f\x8d\xd3\x26\x21\xa8\x1f\x70\x9c\xa2\x43\x2f\x78\x49\x45\xf3\x06\xb6\x89\x45\x45\x34\xdf\xa6\xe5\xa0\x30\xe7\x27\x16\xe8\xb8\x13\x8a\x73\x84\x10\xcc\x50\xbe\xfc\x96\x06\x80\x58\x16\xae\x0b\xd2\xf8\x43\x83\xc5\x36\xb4\x41\xa1\xb0\x18\x7e\x7c\xaf\x34\x29\xc3\xbc\xc2\x38\x0c\xf1\x42\x41\x31\xf7\x98\xe8\x11\x08\xd3\x62\x22\x84\x10\xc2\x2b\x8f\xca\x4d\x3c\xb7\x6d\x36\x8c\x05\x5c\xc8\xa6\xd3\x08\x66\x29\x65\x0b\xa5\xdd\xbf\xc2\x30\x36\x73\x71\x97\x9c\x23\xc9\x67\x56\xc6\x8e\x40\x5d\xf0\xbb\xfb\x96\xa6\x01\x8a\x0a\x26\x6e\xbf\x85\xc2\x49\xe9\x92\x5a\xc2\x2e\x16\xd9\x38\x54\xd8\x5f\x10\x02\x92\x85\x5b\x50\x89\x13\x57\xf3\x7a\xca\xed\xdb\x31\xd2\xc8\x73\x2b\x58\x84\xa6\x1b\x0c\x13\x9d\x12\xa6\x94\x54\x41\xcb\x5e\x36\xdd\x3e\xab\x35\x3c\x39\xd0\x90\x44\x68\x08\xbf\xff\x8a\x31\x8f\x8e\xb8\x2f\x9d\xbc\xfa\xb2\x3f\xae\xeb\xa4\x18\x52\x87\x0b\x9c\xb0\x4d\xa5\xa0\xd8\x15\xc2\xe3\x1d\x47\x5a\xe5\x81\x88\x5c\x4b\xc3\x2c\x32\x99\xe3\x97\x69\xe5\x60\xc0\x7d\xbb\xe0\x30\xcf\x17\xba\xb0\x72\xf6\x79\xfb\x16\x39\x0b\x18\xd0\xa8\xd2\xcd\xce\xdb\xab\x4f\x1a\x82\xc4\xb7\x6c\xf0\x84\x9a\x5b\x64\x1d\x73\x0b\x13\x91\x0c\x66\xef\xd6\x0c\x55\x18\xa7\xd1\x1e\xd4\xf6\xe7\x2f\x67\xf5\x63\xd3\x23\xb4\x8d\xc7\xed\x55\x37\xc3\x49\x15\x16\xde\xc3\xe7\x92\x49\x79\xab\xd6\xec\xdd\x78\xfc\x81\xf4\xb7\x35\x90\x1b\x4b\xaa\xfe\xfb\xf8\x89\x46\x52\xc5\x28\x2b\xb3\x86\xee\xae\xf1\x6b\x39\x1a\x9b\xcc\x22\xc0\xbc\xfe\x71\xf3\xd4\xb3\xb1\xc8\xfa\xe3\x7b\xb8\x6a\xe9\x78\xf3\x1e\x38\x80\x82\xb1\x00\xd8\x0f\x97\x08\xf1\x9b\x65\x98\xfa\xc4\x6a\x56\xb5\xc3\xdb\xd5\xc9\x3d\x7b\xe1\xfc\x05\xd1\x61\xf9\xf8\x66\x23\xbb\xa3\xc8\x8b\x51\x88\xf0\x67\x13\xcc\x79\x50\xc1\x59\x96\xd6\x9a\x03\x6e\x35\x2a\xe9\xc0\xab\x63\xd7\x8b\x45\xea\x83\x93\x86\xf9\x01\x6b\x10\xdc\x1f\x74\x1c\x3e\x36\x70\xb8\xd6\x53\x8d\xf7\x41\xe6\xad\x07\xe3\x1e\x1f\x71\x6d\x54\x92\xcc\x81\xcc\xaf\xa6\x68\x9e\xb7\xc0\x92\x86\x35\x74\xc5\x5d\x17\xeb\xa3\x19\xb4\x50\x0c\xef\x3b\x7e\x99\x91\x54\x71\xc2\x0c\x53\x85\xec\x36\x05\xcf\x82\xda\xa0\x80\x82\x92\xf1\x5f\x03\xb0\x40\x6e\x8f\xcd\xba\x44\xb3\x7c\x53\x4b\x3c\xc1\x2a\x04\x67\x76\x6a\x63\xa0\x94\x55\x53\x2d\xce\x5b\x1f\x91\xf5\x30\xc7\x62\xbd\x5e\x18\x6f\x0e\xf4\xc8\x87\x9e\x3f\x6c\xea\x00\x01\x67\x48\xce\x05\xdc\x3c\x26\x7d\x4b\x81\x6b\x31\xa7\x4e\x61\xae\x2d\x36\xcf\xff\xc7\x67\x60\x7d\x51\xec\x16\x66\xcf\x89\xcb\xd9\xff\x1c\xd3\xdc\x07\x0f\x7c\x21\x69\x00\xad\xa9\xce\x73\x0a\x2d\x8d\xca\xe3\x70\xdc\x74\x2d\xb5\xf7\x51\xb5\x2a\x1e\x74\xe6\xdb\xc3\x55\xcb\x0d\x23\x98\x60\xab\xbd\xa4\x0a\xd9\x1e\x16\xf8\x36\xbc\x91\x87\x35\xbf\x13\x91\x2f\xa4\xa8\x95\x7f\xbb\x4d\xd2\x94\x02\x07\x84\xda\xa1\x52\xfd\xc1\xf9\x26\x35\x51\x9f\x03\x49\x99\x20\xd9\x31\xcc\x9e\xdf\x16\x1f\x66\xf1\xb0\x69\x74\x59\x83\x5e\x35\x16\x2b\xc7\x62\x82\x4a\xf0\x72\x1f\xbe\x2f\xfd\xcf\x2e\xc6\x65\xcd\x60\xfc\xc1\x8d\x1f\x69\xfa\x5d\x44\xdc\xfe\x75\xdd\x73\x7e\xab\x71\xd6\x62\x56\xa7\xd2\xf7\x2d\x73\x4b\x7b\xd2\xaa\x6a\x00\x27\x03\xca\xe3\x7b\x27\x1a\xd3\x4c\x0c\x7b\xc2\xd9\x79\xe2\x09\x93\xa6\x52\x45\x2e\xf1\x7c\x41\xf4\x7d\x6d\xbd\xd1\xbe\x22\x0d\x3c\x83\x97\xc0\xfc\xf7\x6f\x2a\xea\xb1\xfb\xb6\x54\xfe\xc8\xcd\x3e\x65\x4a\x59\x39\xcc\xe2\xc8\x8a\x19\xe3\xd9\x2f\x19\x63\xa7\x16\xe1\x16\x95\xfa\xfa\xb9\xcf\x85\x97\x1b\xe0\xd5\x2d\x33\xd2\xb7\x0f\xe4\x27\xa3\x28\x04\x7e\x71\x92\x7e\x5e\x3c\xdc\x74\x91\xb3\x51\xd9\x28\x2b\xeb\xb3\x9a\x55\xff\x12\x5e\xec\x96\x55\x6a\x6e\x25\x4a\xcb\x20\x41\xe0\xdb\xa7\x77\x99\x9d\x32\x38\xe4\x5c\x99\x88\xa6\xdf\x51\x83\xaa\x78\x30\x7b\xe1\xc2\xf9\x85\x62\x58\x1c\xaa\x0e\x0f\x0f\x39\x28\x3a\xaa\x40\xf4\x2a\xb8\x4d\xea\xc1\xd5\x70\x97\x64\x2e\x65\x87\x4c\x37\x81\x10\x2b\x5a\x87\x71\xd3\x2a\xbb\xdd\x18\x81\x42\xd4\x8f\xc1\xd8\xec\xa1\xf6\x18\x1a\xc6\x0d\x02\x67\x5c\xd8\x7e\xbf\x6e\x6e\x8d\xaa\x2e\xf3\x44\x0d\xf6\xb1\x46\x4b\x9c\x9a\x51\x39\x57\x1d\xae\x3a\x61\xf4\xcb\xba\x85\x66\x87\x0c\xbc\xaf\xcc\x35\x0d\xb2\x6c\xe2\xca\xc1\xa0\xf0\xd3\x6f\x29\xa2\x1c\xc5\x08\xc4\x5f\x54\x2e\xfd\x95\x31\xba\xdb\x32\xa5\xc9\x24\xf7\x5b\x4f\xab\x8f\x59\x36\xe2\xc8\xf2\x31\x07\x7e\x7a\xa1\x18\x2e\xd9\xae\x00\x2f\xe2\xa0\x2a\x94\x63\xe2\x73\xd5\x77\x95\x86\x5c\x09\x82\x41\xe1\xd1\xf1\x1a\x12\xed\xfa\x84\x52\xa4\x77\x9c\xb3\xcb\x2a\xea\xdb\x2c\xc4\x75\x59\xa1\x33\xcf\xa8\x82\x16\x06\xda\x21\x90\xac\x30\x8c\xda\x4a\x98\x12\xdc\x88\xbb\xea\xe1\x9f\x96\x8b\x27\x78\x23\x2a\x29\x33\xf1\xbb\x8c\x02\x49\x30\x78\xc4\x8c\x4f\x78\x44\xf9\x02\xcc\x01\xa9\xbc\xec\xaf\x8e\x68\xda\xa6\xb8\x8b\x78\x76\xa1\x18\x3e\x74\x4a\xb2\x95\x1d\x02\x27\xcf\xd4\x47\xc4\x81\x74\x1d\xb4\x99\x63\xce\xed\x17\x76\x68\xf3\x42\x01\x17\x86\x62\x73\x8d\xf1\x06\x8a\xfc\x06\x41\x1a\xab\xe1\x61\x3f\x7d\xde\xcf\x9f\xa5\x50\x2f\x41\x85\xea\x78\x55\x73\xb0\x55\x42\xb8\x90\x6d\x7d\xfb\xac\x9a\xee\xd7\xdf\x6f\xee\x83\x2b\x87\x6a\xab\xbe\x23\xfa\xdb\xbf\x6a\x1a\xba\x72\x2b\x84\x3b\xb1\x6e\xdf\xff\x74\xaa\x28\x9d\x88\xd4\x17\x2a\x1c\x05\xe5\x42\x31\xfc\xe1\xe9\xf4\x87\x7d\xe6\x56\x03\x40\xa2\xc1\xbb\xfb\x0d\xad\x35\x82\x91\x85\x25\x7f\x65\xc1\x63\x06\x97\xc6\xf5\x89\x45\xea\xc8\x8f\x29\xf7\xb9\x5f\x65\xd5\x76\x28\x09\x2b\x48\x31\xb3\x3c\x62\xbb\x46\xf6\x65\x60\xd5\x39\xf7\xfe\xb4\x32\xc6\x6c\x51\xc7\x7f\x66\x81\x5a\xca\xc8\xc5\x56\x99\x09\x0d\xe4\xfc\xed\x5b\x05\x89\x6d\x9d\x0d\xac\x97\x74\xee\x66\x1d\xd3\x4e\x35\x4c\x7b\x7d\x5b\x7c\x68\x51\xa7\xe1\x93\x15\xf8\xcc\x41\xbe\xb0\x36\x4e\xda\x32\xcf\xb6\x99\xb9\xb2\x5b\x8b\xb5\xe1\xe6\xed\xb9\x44\x43\xc9\x7d\x0c\xc2\xb7\x52\xfa\x24\x1c\x74\x57\x3a\x2f\x4c\x6f\x31\xb1\x2a\x97\xdc\x3b\xc2\x2c\xa8\xe0\xc0\xdd\x77\xc0\xe8\xc8\x51\xc8\x91\x40\x85\x0a\x14\x45\x8d\x32\xae\xc4\x7c\x9f\x39\xe2\x3b\x7f\x6b\xbc\xbf\x52\xc0\x7b\x12\xa3\x95\xf0\x0b\x9b\x55\x46\xd8\x83\x38\x64\xf2\x99\x57\x67\x19\x26\xb7\xd8\x0d\x5c\x8b\x48\x84\x05\xbe\x75\xda\x7b\xda\x80\x3f\x8a\xef\xf1\x5a\x43\x81\xab\x84\x3c\x5c\x96\xae\x7d\x23\x07\x1b\xec\xb8\x7a\x9d\xa2\xa0\x9c\x44\xd3\xbf\x3b\x63\x38\xa2\x5c\xd5\x2e\x7d\x3e\xfe\xfe\xd1\x31\x46\xa2\x54\x89\x0a\xdb\xa8\x48\x0d\x37\xad\x1d\xaf\x05\x55\x4f\x06\x68\x85\x39\xdf\xc8\x35\x33\x43\x44\xfc\xb8\x35\x14\xde\x32\x48\xed\xad\x3b\x82\xa8\x3a\x64\xae\x84\x2e\xb3\xf3\xb6\x9b\x85\x34\x76\x88\xd0\x0e\xee\xcb\x2d\x1f\xa5\xd6\x2d\xc8\x35\x48\x5b\xfa\xfc\x0d\x54\x03\xa9\x1b\x98\xa3\xaa\x08\xef\x64\x6b\x1c\xde\x1d\x44\x5c\xc9\x6b\x98\x73\x3a\xfd\x34\xe2\x4b\x90\x04\xc9\xec\x17\xe7\x9a\xcb\x4c\xcd\xbb\x64\x9c\x0b\xfa\x49\x22\x12\x20\x38\xb1\x0e\x6e\xd4\x04\x0f\x5d\x1c\x0f\xeb\x66\x7e\x7a\xa4\x3f\x4f\xd6\x58\x84\x62\xc2\x7b\x3a\x0a\xe2\x82\x6a\x2b\xe8\x8b\xcd\x14\x67\x58\x17\xf1\x6d\x5b\xb8\xad\x66\x3f\xfe\xaa\x91\x44\x62\xe4\xe1\x42\x85\x70\x2c\x41\x03\xaf\x53\x51\x44\x4b\xe2\x78\x6d\xb2\x13\x9a\xde\xcc\x33\x48\x23\xb1\x1f\x9c\x60\x92\xa4\xa2\x4d\x18\x4b\xa3\x64\xd7\xac\x4f\x06\x19\xc4\xe0\x83\xf2\xbf\x98\xaa\xd5\x00\xb3\xe7\xb4\x81\x75\xd3\xd8\x37\x55\x5f\x42\x8e\x6c\xa7\x2f\xa8\x64\x90\xe9\x3d\xcc\x02\xaa\xc6\xa8\xfe\xf0\x82\x00\x6e\x1c\x24\x5e\x75\xf8\x8b\x4d\x46\x1b\x36\x48\x38\x82\xe1\xc7\x9f\x19\xa3\x45\x17\x87\xc0\xa0\x45\x1c\x9b\x9f\xb4\x4d\x3d\x8a\x06\xf6\xa2\x62\x47\xaa\x12\x3e\xb6\xd1\xd4\x20\xe6\x28\x9e\xc5\xce\xbd\xf6\xec\x30\x0d\x38\x74\x5d\xe1\xb1\xb3\xec\x9e\x91\x3a\x84\x25\x45\x64\xe0\xb5\x76\x6b\xb9\x21\x47\x56\x0d\xb2\xc9\x41\xaf\x6a\x2d\x5f\xce\xc0\xee\x34\xe9\x2c\x7d\x2f\x9b\xde\xf8\xd1\x1a\x02\x7e\x65\xa1\x8e\x62\x3f\xa4\x2d\x37\x98\xef\xa6\xaa\xa9\xb3\xe7\xbe\x65\x48\x8d\xd5\x29\xb2\x10\x2f\x4b\x77\x9d\x09\x6f\x4a\x58\x12\xf1\x32\x86\xf9\x80\x23\xb3\xd2\x21\x03\xdf\x11\xc4\x69\x7e\xfe\xd3\xe7\x95\x4b\xbd\xae\x80\x98\x7d\xd1\x6f\x92\x29\x40\x56\xe2\xb6\xb3\xd2\x90\x6a\xac\x63\x5e\xc1\x96\x9f\x84\xf0\xc7\xf3\x4d\xdb\xdb\x23\x65\x39\x56\xf7\x78\x43\xc9\xd1\x36\xc9\xc7\x86\x1f\x3d\xa0\x6d\x95\x1e\x4a\x5c\x61\x21\x92\xbf\x62\x94\x99\x0d\x63\x6c\xd9\x71\xba\x7d\xfc\x4c\xf3\x99\x11\x7b\xab\x7f\x72\xdf\x68\x23\x53\x8e\x16\x84\x78\x5a\xc5\x01\x5a\x9a\xc4\x71\x99\xc4\x94\x95\xbe\xcc\xb6\x97\xd3\xfb\xb0\x8b\x45\x97\x52\x09\x62\x5d\xc2\xcc\x3f\xb5\x9b\x2a\x2d\x42\xb3\xba\x8c\x12\x79\xcf\x7c\xf1\xbe\x96\x24\x0d\x44\x75\xb0\x04\x0e\x4f\xaf\x6f\xea\xcf\x57\x63\x41\x8d\xd6\x27\x74\xe5\x2c\x14\x88\xdc\x39\x3f\x8f\x6b\xc5\xbb\xcd\x60\xcc\xb3\xd8\x97\xaf\x9e\xd6\x64\x2a\x53\xe2\xb4\xda\xf8\x95\x13\x78\xd1\x01\x0b\x4b\xf9\xc6\xa5\x49\x4a\x43\xb5\x4e\x72\x5f\x76\xfd\x29\x01\xef\xad\xe1\xd8\x67\x9c\xa0\x38\xc3\x9b\x34\x45\x4f\x65\x25\xab\xbb\x50\x0c\xaf\x1c\xa4\xbe\x28\xd0\xf9\xbf\x4b\x0f\x1a\xc2\xef\xb3\xa4\xb7\x45\xe6\xf1\x3d\x86\xc0\x37\xaa\xc7\x4d\x24\xc8\x91\x26\x18\x13\x84\x8a\x52\x23\x19\x6c\x4e\x9b\xc8\x14\x8b\xb2\x18\x5d\x76\x46\x03\x23\x28\x10\x74\xf3\x1f\xb8\x75\x54\x8a\xb1\x2f\x6a\x17\x28\xba\x96\x71\x95\xf6\x32\x0b\x51\xa1\x52\xb5\xec\x36\x23\x71\x93\x39\x81\x2c\x92\xf6\xed\x6f\x35\xd6\x8e\x3c\xa3\x0e\x2e\x4a\x16\x31\xf5\x6a\x4d\x44\xc1\x21\x63\x86\x6b\x40\x49\x55\x64\x19\xe1\xa5\x4b\xfa\x35\xa0\x4f\x1c\x1d\x33\x57\x0c\x36\x70\x09\xec\xfa\x51\x0e\x02\x52\x97\xbf\x7e\xd5\x94\x64\x03\x65\x7a\x48\x16\xce\x96\x34\x7f\x1f\xc4\x81\x1a\x9d\xfd\x64\xc9\xa0\x97\x08\x6f\x24\x31\x57\x15\x05\xa3\xaf\xed\x50\xf3\xa6\x5d\xc4\x95\x5c\xd8\xf4\x9d\x8c\x7d\xfa\x52\xed\x6f\x7c\x17\x7b\x40\x43\xf5\x85\xbe\x7e\xa1\x18\xfe\x48\xb3\x92\xe5\xc8\xad\x32\x81\xb5\x9d\xdb\x16\xaf\x7c\x7d\xa0\x33\xaf\xf5\xd2\x40\x0d\x12\x7a\x0b\x7b\xd3\x6d\x13\xcf\x21\xbe\xdd\x2f\xfd\xf1\xe1\xc3\xa3\x74\x31\x1c\x31\x06\x15\xe5\x96\xe1\xb2\x59\xc9\x38\xbb\xeb\xf7\xc4\x52\xd5\xf3\xce\x26\xff\x15\xb9\x71\x0a\xb5\x68\x9f\x69\xc7\xc9\x12\xd7\xc4\x8d\xae\xd6\xc4\xa0\x2c\x16\x06\x44\xdd\x82\x0c\xb2\xb0\x6d\x01\x28\x73\x18\x62\x19\x3e\x73\x4a\xf1\x90\x51\xdb\x40\xb1\x93\x96\x22\x9e\x42\xea\x9d\x53\x3a\x1d\xaa\x0b\x73\xd1\xb9\x81\x50\x73\xf4\x80\xa1\xc0\x15\x94\xab\x62\x98\x33\x73\x51\x38\xda\x48\x14\x51\xac\x1d\xb4\xcb\x90\xfd\x62\xbc\x9a\x24\xd1\x99\x75\x47\x4d\x9e\x62\x1d\x71\xdf\x11\x50\x35\xfc\xc5\xee\xe7\x55\x8a\x63\x63\xa7\xee\xf9\x18\x24\xac\xf2\x9f\x9c\xa8\x8d\xcc\x51\xa9\x6f\x79\xc5\xa3\x09\x72\x25\xc9\x26\x13\x64\xdd\xc6\x45\x93\x7c\xeb\x6d\xe9\x8d\xdf\x65\xf7\xc8\x89\xa9\x8d\x13\x62\xf6\xb7\x53\x17\x32\xb3\xb9\xf6\xee\xa1\x71\x55\xc2\x89\x40\x54\x7e\xbe\x52\x47\xc2\x30\xae\x4b\x7d\xaf\x21\x86\x22\x2d\xe0\xf8\xc4\xf7\x64\x6f\xfc\xc0\xcb\x93\x8c\xc0\x1f\xf8\x51\xbe\x66\x58\x19\xfd\xdb\x4b\x4d\x8c\x0b\xa1\xe0\x27\xfb\x2c\x1f\x93\x8e\xa9\x42\x1b\x07\x8e\xa9\x3f\x9d\x33\x2a\x82\x6e\x6c\x05\xf0\x19\x80\xa0\xb2\x3f\xdb\x63\xf6\x6e\x62\xc5\x2d\xe9\xa6\xfe\xa7\x25\x49\x5b\xb6\xc1\x4c\xd9\xb5\xf0\x65\xb7\xb5\x2b\xdd\x38\x11\xb0\xc4\x7f\x4d\x51\x7c\x99\xa0\xcd\x6b\x4b\x35\xff\xc6\xf7\xa6\x2b\x1c\x07\xb9\xb8\x41\x2c\x5b\x47\xbe\xbf\x3e\x77\xb4\x99\x1e\xb8\x12\x2e\xce\x5c\xb5\x21\xdd\xa7\xb7\x31\x77\x91\x5b\xc6\xbd\x86\x00\xd9\x4a\x81\x6f\xc0\x93\x32\x65\x74\xc2\x9b\x9f\x55\xf9\x4d\x09\x57\x98\xee\xba\x98\x69\x7f\xd0\x1c\x62\x05\x18\x41\x02\x5f\x23\xde\x4b\x2f\x59\x8a\x3c\x1b\x97\x05\xe3\x27\xf7\xbf\x8b\x75\x00\xc4\x21\xa0\x0f\x2c\x4a\xf1\xb5\x6b\x92\x47\x69\xe3\x26\x5d\x9f\xdc\xef\xb6\x6b\xcd\x44\xce\x60\xe1\x64\x36\xbe\xa2\xf7\xf7\x80\x19\x0a\xad\x88\xbb\xc4\x73\xbf\x0e\x51\xbd\xef\x13\xce\x35\xcc\x1f\x29\xee\x22\xb0\xc8\x14\xae\xf3\xd8\xd3\xc9\xa1\xc7\x91\xa3\x9d\x9e\xaf\x0e\x68\x89\x0b\xca\x7a\x54\xe1\x40\x89\x77\xcf\xac\xf4\x93\x70\x71\x74\x2d\x35\x49\xe0\xfb\xe6\xe4\x74\xbd\x7d\xa5\x7c\x43\x8b\x5f\x1e\xa9\x8d\x93\xe9\x32\x20\x43\xdf\x35\x66\x13\x89\x6b\xe0\xec\x79\x7a\xef\x34\xe3\x08\xa5\x88\xe3\x3a\xea\x17\x5f\xed\x78\x5b\x3c\x88\xe5\x2c\x5a\x03\xda\x5e\xb9\xed\x05\x4d\xc4\x03\x3a\x82\xf1\x3d\xe5\xdd\x57\xcc\x2a\x07\xd7\xeb\xc9\xa0\x7b\x9d\x1a\x12\x2b\x88\xc2\xc0\x07\x49\x5a\x37\xd9\xf7\xc6\xaa\xb5\x53\x26\x5e\x94\x89\x92\x4a\x8f\xac\xd8\x2e\xbc\xa4\x25\x1b\xc8\x6d\x20\x0f\xe0\xbb\xf0\xa2\xed\xf1\x51\x22\xbd\x12\xa2\xd5\xf2\x01\x5b\x17\xb1\x87\xf9\x9c\x70\xc1\x3a\xe5\xce\x30\x6f\x4e\xa1\x18\x7e\xe3\x31\x73\x35\x22\x8f\xb9\xa2\xc8\x09\xdf\x1a\x3b\x4e\x46\x6a\xd7\x62\xbc\xb9\x47\xff\xe4\xf4\xb8\x45\xe8\x96\xa9\xee\x0c\x9f\x9f\xda\x91\xce\x0a\x26\xcd\xe0\x25\xc8\xaf\xbe\xb8\x5f\x9c\x13\x36\x60\x59\xd9\x97\x87\x9b\x2e\x36\xd8\x22\xae\x25\x24\xe7\x73\xdf\x6c\xb9\x54\x8b\x78\x62\x1b\x19\x10\x78\x4b\xab\x7c\x52\x52\x07\xd4\x96\xcd\xc1\xf9\x93\x34\x37\x50\xd4\xc3\x2a\x95\xe8\x40\x78\xc3\x58\x71\x15\x29\xf6\x21\x08\xbc\xfe\xeb\xa6\x52\x81\xfa\x52\xf9\x76\xde\x3a\x61\xaa\x7f\xb3\x4e\x6c\xf9\xb1\x20\xf3\xe2\x43\x4d\x92\x32\x98\x7b\x89\x54\x5d\xf6\xa5\xfb\x95\x78\x51\x83\x54\x19\x67\x81\x47\x9b\xa7\x80\x7f\x97\x97\x6d\x1a\x24\x70\x02\xfe\x88\x3a\x6f\x1c\xe6\x83\x57\x44\xfe\x92\x0d\xe9\x28\x36\xb5\x0b\x54\x9f\xe1\x80\xfa\xd4\x99\x58\x03\xa6\x13\x24\xf3\xd3\x5f\x7f\xc7\xea\x74\x4b\x2c\xa6\xad\x34\x1b\xbe\x64\x7f\x78\x76\x54\x1a\x87\x9f\x21\x1c\x96\x8b\xe1\x27\x3a\x44\xfb\x03\xbb\xe5\x82\xcf\xe0\x7f\x8a\x7d\x99\x43\x67\x5a\xe4\x95\x53\xe4\x5a\x72\xd5\xfe\xfd\x79\xe3\xe0\x4b\x0a\x9d\xc9\xe3\x87\x69\x37\xe6\x51\x1c\x65\x3b\xf9\x8b\x97\x1b\x72\x03\x1c\x77\xc9\xed\x91\xfb\x5c\xbb\x29\x81\x0f\xf2\x2b\x09\xe8\x6f\x9d\x54\x0d\xd8\x32\x47\xb5\x14\x19\x20\x77\xe5\x23\xda\x14\x67\xa9\x1c\x50\x0f\x51\x20\x41\x67\xc3\x16\xbd\xa3\x5b\x26\xc8\xe7\x40\xa5\xcc\xdf\x74\xd6\xd8\xd0\x96\xcd\x28\x8a\xcd\x48\x9e\x1e\x23\xe0\x89\x65\xd7\xac\x5d\x7d\xed\x75\xd7\x5f\x0b\x52\x5f\x5b\x44\xa9\xbe\x0e\xf9\x3e\x63\x85\x62\xb8\xe8\x94\x72\x50\x12\x81\xbc\xf7\x49\xf1\x82\xd7\x20\x57\x10\x36\x9f\x39\x32\x4c\xa6\x6c\x52\x5b\x03\xea\xa7\xee\xd6\xf4\x82\x44\xe2\xf8\x94\x42\x9b\x50\x7e\x2c\xca\x1a\xfa\xd6\xf1\x4c\x81\x5c\xb0\xf7\x9e\x34\xf8\x64\x9c\xf8\x3e\x96\xba\x73\xb9\xb5\xd3\x86\x6a\xac\x2e\x90\x98\x7a\x4a\x5c\xc8\x75\xd8\xf5\xa1\xdc\x85\x5f\x99\x3a\x3c\xfd\x06\xe7\xcd\x9a\x25\x39\xec\x1f\xdf\xa5\x02\x0a\x05\xfa\xdc\xb9\x77\xa4\x0d\x6b\xc0\x21\x09\xdb\x9b\x35\x86\x32\x39\x49\x5b\xca\x87\xdf\xbf\xd7\x94\xd9\x60\x5d\x34\xce\x8d\x96\xbd\x3b\x42\xcb\x37\x49\xd5\x96\x09\x67\x5f\xc3\x50\x24\x52\xe0\x2e\x64\x1f\xb9\xe0\xb0\x3a\x27\x82\x12\xb9\x23\x20\xbe\x54\x87\xff\xba\x6f\xba\x56\xba\x16\xa6\x7a\x99\x91\x9f\x77\xc6\x98\x93\x9d\x53\x88\x0b\xe9\x83\x9a\x38\xb7\x4b\x3c\x9b\x94\x75\x6e\xc4\xe6\x6e\xe3\x5e\x84\x1f\xbb\x20\x3f\x4c\x7b\x76\xb4\x46\x7e\x48\x6c\x0e\xe0\xe0\xf8\xcc\x21\xcd\x15\x1b\xcb\xf6\x4f\x7e\xd1\xc4\xe1\x4d\x7c\x82\x62\x5f\x66\xcc\x3e\x55\x5c\x6a\x22\x88\xe1\x6d\x47\x8c\x3a\xc1\xc6\x94\xf6\xab\xcb\xfa\x83\xdd\xff\x37\xdd\x55\x00\xff\xc7\xef\x36\x68\x3e\xac\x07\x25\xf2\x15\x1b\xe4\xbc\x62\x19\x97\x90\x05\xd4\xc1\x63\x6f\x6b\x05\x35\xa9\x96\x11\x15\xaa\x05\x37\x9d\x6c\xa2\x4d\x35\x30\x4d\xc6\xa7\x32\x2b\x76\x8d\xd6\x0a\x71\x17\xde\x61\x0c\x30\x78\x07\xcd\xfc\x1d\xda\x4f\x02\x9d\xec\xe8\x4c\x67\x7a\x2c\xf0\x0b\xac\x52\xf0\x59\x97\x9b\xa8\xa8\xe5\x37\xdc\x63\xe8\xc9\x96\x2c\xa8\x0d\xcc\xc7\xf1\x33\xe3\x2a\x1d\xe6\x59\xd0\x60\x17\x05\xd1\xed\x93\xc7\xa5\xc6\x6b\xcd\x80\xfd\xd5\x73\xda\x4c\x80\x94\x10\x86\x8d\x73\xf3\x0d\x69\x04\xc4\x43\x51\x96\x35\x43\x9f\xbd\xca\xfd\xfd\xf9\x26\x9f\x7a\xaa\x69\x4e\x64\x6e\xb8\x0f\xbe\xa3\xb0\x0a\x57\x89\x47\x11\x30\x9c\xcc\x90\x7e\xf8\x11\xf1\x3e\x24\x46\x1b\x7d\xec\x97\x47\x15\xa3\xc4\x47\x04\xda\x0b\xdd\xeb\x5b\xb5\xf3\x47\x37\x40\x3a\x3a\x4c\x0b\x04\x65\x01\x86\x64\x17\x9f\x35\xba\xbe\x8c\xfb\xb6\x7c\x6f\x5f\x6c\x68\xfc\x3c\xd2\x0b\x4e\xd9\xb9\x3b\xa7\xc8\x42\x06\xbc\x44\xa2\xcc\x64\x5d\x43\x9c\xf7\x1c\x41\xed\x67\x9d\x56\x0a\xf0\xb4\x9e\x42\x4d\xff\x63\xa9\x2e\x5f\xcd\x5d\xad\x9f\x94\x39\x76\x46\x33\x7a\x40\x35\x9c\x84\xbf\x91\x2b\x4d\xf3\x4b\x1f\x57\xe3\xa9\xc6\xbe\xfc\xa8\xfb\x55\xa2\x66\x63\x44\x7d\xbb\x60\x21\x0e\x2d\xfe\x71\x5b\xcd\xe6\xb9\x87\x7d\xe4\x01\x8f\x29\xf3\xfc\x53\xda\x1e\x67\xae\x17\xd4\x31\x6f\x10\x4f\x98\xb8\x67\xce\x37\xb4\x2c\x4c\x6a\x7b\x41\x29\xfa\xbb\xb1\xa6\x3a\x45\x83\x94\xb1\x27\x53\xfb\x75\x17\x92\x14\xbd\x64\x37\xcf\x95\x5c\x3d\xfe\x0a\xa3\x72\x29\x13\x8f\x99\x14\xb0\xbe\xcc\x98\x45\xc6\xe9\x68\x63\x4b\x08\x06\x87\x07\xd6\xb5\xc8\x48\x41\xaa\xc4\x95\x88\xd6\x5d\xf7\xc7\xd0\x7f\x9d\x22\x2b\x96\x64\x5c\x63\x90\x96\x2d\x0b\x71\xdf\xc5\x3d\x02\xfb\x88\x97\xe6\xed\x2b\x55\xe2\x61\x71\x04\x8a\x92\xd9\xdd\xef\x18\x00\x56\xbb\x2c\xb7\x6f\x79\x4e\xa5\xae\x94\xb9\xd5\xe8\x30\x72\xa5\xdc\x43\xf6\xa7\xeb\x27\xea\x94\x64\xe2\x23\xb7\x59\x1a\x65\x78\xaf\xc1\x3f\xc6\x52\x40\x33\xbc\x7d\x92\xca\x14\xe6\xb6\x4b\xee\x75\xfe\xce\x93\x0a\x9e\x11\x33\x27\xcd\x5b\xfb\xf7\xa3\x4c\x30\x83\x58\x35\xf9\x4a\x76\x1e\x52\xef\x99\xb8\x1e\xf1\x7c\x2c\xfc\xba\x00\x73\x7f\x32\xd5\xa8\x87\x6d\x09\xdc\x3d\x77\x90\xc9\x0e\xa1\x81\x53\x22\x48\xf2\x58\xa3\x80\xd1\x77\x5a\x45\xfa\x12\x0f\x2c\xcd\x2e\x3c\x33\xaa\x37\xe9\x1c\xf0\xc0\x49\xbd\xdb\xab\xcf\x4e\x32\xcb\x13\xe6\x45\xf5\xab\x50\x3b\x48\x8c\xf5\x64\x63\xbf\x42\x51\x35\x26\x44\xb7\x4f\x1a\xa9\x67\x6a\xeb\xe5\x2c\x69\x31\x1c\x64\xc4\xf1\xf6\x79\xc2\xb8\x6e\x66\xa1\x18\xfe\x6a\xed\x14\x63\xcd\xd5\x10\x67\x0d\xd1\x49\x48\x95\xb4\x0f\x4e\x4a\xdf\x73\xa9\xa7\xc6\x1a\x20\x5a\x90\x94\xd5\x43\xdb\x44\x2e\x5e\x65\x2c\x2a\x7b\x6d\xd4\x20\xc2\xd5\xec\xf4\xc6\x84\x8a\xe2\x81\xa0\x02\xc8\x03\xbd\x60\xa8\x6f\x50\x54\x93\x6e\x8b\xa5\x36\xf5\xdc\xc5\x9c\x88\x5c\xb5\x7f\x39\x9b\x5e\x79\x16\x45\xa2\x7d\x9c\x2f\x9c\xd7\xba\x51\x0c\xfa\x92\x82\xc9\x33\xa6\xbb\x45\xc3\x70\x10\x30\x35\xbf\x78\x51\x9a\x19\x89\xbb\x2d\xe2\xe3\xe6\xa1\x8d\xfc\xed\x17\x9a\xb2\xfd\x0a\xa1\x92\xce\x1a\xee\xd9\x95\x3e\x42\xc1\x75\xa3\x42\x2c\x14\x93\x1d\x33\xdf\x37\x24\xc2\xa4\x5c\x26\xe6\x71\x9e\x3e\xec\x94\x29\x28\xd3\xc9\x24\xa1\x38\x9c\x39\xc1\xa0\xa6\x44\xe5\x42\x3c\xfe\xb8\x66\x94\x98\xb5\x99\x59\x28\xae\x1b\xa2\xdb\xf7\x15\xc3\x09\x6f\x69\x02\x76\x9e\x1f\xe5\x8c\x75\x30\x07\xcc\x2f\x5e\x62\x42\x3c\xe0\x9f\x10\x23\x62\xf9\x2f\x0f\xd6\x01\x26\x46\x2c\xe2\x39\x85\x62\x78\x74\xb3\x81\xaa\x02\x09\x44\x1a\x29\x2d\x3b\x21\xfd\x62\x28\x0a\x3c\x78\xe2\x87\x9e\x48\x72\x93\x06\x51\x9e\xb4\xe1\x58\x2d\xd7\xaf\x72\xd6\x05\xb6\xb9\x0b\x0f\x28\xf3\x41\x80\x56\x55\xae\xbe\x72\xb5\x39\x3d\x59\x2a\x61\x1e\xe3\x77\xe1\x5e\xae\x7a\x24\x8d\x26\x89\xe4\xcc\x23\x4f\x4e\x34\x3e\xed\x56\x3b\x8d\xa1\x92\xdc\xd2\xc1\x63\xb4\xde\x06\x71\x88\xcb\x28\xab\x8a\xf1\xae\xdc\xef\xb6\xaa\xf3\xb3\x07\x95\x80\x16\x10\x1e\x9f\x6a\xbc\x2f\xcb\x26\x2e\x2e\x54\x03\xb7\xd0\x45\x30\x2d\x2b\xad\xec\xdc\xf9\x75\x6a\x1c\x14\x11\x70\x93\x3f\xda\xe4\xad\x57\x22\x6e\x4c\xa7\x59\x3d\x5c\x3c\xc9\xeb\xdd\x32\x90\xf3\x42\xba\xbb\xd5\xc8\x41\x05\xe3\xe0\xeb\xab\x35\x23\xd5\x5a\x00\x1c\xc3\xc7\x16\xa4\x89\x63\x0d\x46\x6b\x5e\x17\xaa\x62\x77\x46\xb3\x04\x53\x6e\xfa\x24\x43\x7a\xb6\x0b\x11\x29\xf3\x5d\x28\x86\x3f\xea\xd6\x7a\xc8\x9e\x87\x3c\x4f\x14\xaf\xb5\x09\x8a\x1a\x8d\x7b\x50\xb4\x32\x36\x26\x04\x16\x78\xf9\xe1\x07\x34\xb3\x51\x16\xf8\x14\x75\xc1\x6a\xfd\xe0\x20\x43\xe2\xde\x26\xbc\x2c\xc6\x2d\xbf\xb9\x49\xe9\x51\x07\x4d\x3c\x89\xfc\x64\xad\xd7\x45\x59\x57\x01\xb4\x7e\x8b\x7d\xd9\x47\xcf\x9a\x3e\x01\x1e\xab\x22\x8e\x7a\x64\xb2\x1b\xe3\x10\x2b\x9e\x32\x31\x57\x26\x7a\xc4\x99\x4b\x5e\x19\xa2\x46\x42\xa2\x9b\x19\xfa\x92\x4c\x69\xa1\x66\x87\xfe\xc9\x8f\x8e\x6b\xb6\x19\x36\xf2\x19\x29\x14\xc3\xee\xf7\xc4\xe8\xf2\x32\xe6\x7a\x3e\xf1\x21\x85\x4f\x2f\xdc\x15\x86\x48\x4e\xc0\x31\x0a\x04\xf7\x4d\x6a\xd2\xa2\xde\xe4\xc7\xfd\xae\xe8\x4b\x6f\x7c\xc4\xc8\x1c\x38\x02\x60\x02\xa4\x79\x3a\x77\xea\xe6\x3e\x3e\x47\xae\x18\x09\xfe\x51\x68\xaa\xe6\x73\xdc\x16\x03\x15\x47\x87\xc9\x92\x09\x59\x35\x07\x11\x1a\xe5\x07\x6f\xbd\x66\x86\x9b\x0a\x41\xf2\x80\x1d\xf9\x52\x72\x49\xbd\x76\x74\x49\xc7\x56\x68\xd2\x54\x2e\xeb\x8a\x1e\xbd\x28\xbd\xfe\x9f\x3e\x10\x19\x5b\xf4\x17\xfb\xb2\x9f\x3e\xa5\x38\x3c\x95\x1e\x56\x66\x9c\x69\xbe\x45\x93\xb6\x68\xb5\xbe\xc8\x62\x8b\xe1\xa6\xba\x9a\x58\xa8\xb9\x30\x22\x63\xe6\xd6\x7b\x97\x24\x1d\x0a\x4e\x7b\xe2\xb3\xf9\xff\x69\x5a\xfd\x3e\x0f\x04\xa7\xff\xa2\x77\x46\xba\xba\x3a\x96\xe7\x13\xe8\x7d\xf4\xe5\x6e\xa6\x63\x92\x36\x47\x53\x98\x9f\xe2\x1b\x98\x42\x4c\xba\x91\x61\xdc\x7e\x05\x9e\x44\xf4\x4f\x37\xdc\x90\x36\x8d\xed\x1c\x2a\x83\x07\x2e\x13\xc1\x12\xfb\xe9\x0a\x45\x06\xf1\x2c\xe4\x96\x11\x8d\x6a\x1e\x52\xf7\xe4\x21\xf6\x4f\x2b\x93\x86\x72\x15\xe9\x0d\xe5\x8b\xce\x5e\x6e\x84\xac\xe8\xec\xc7\xd4\x4f\x69\x25\xbf\xb6\x49\xdd\x78\x59\xa6\x64\x99\xa3\x8f\x28\x0b\xb3\x32\xa6\xc4\x02\xba\x9f\xb9\x99\xea\x86\x6d\x47\x0f\x72\x6b\x18\x7b\xfd\x29\x29\xfd\x6a\xda\x47\x8c\x44\xc4\xe2\xcc\x63\x15\xbf\xdf\x62\xf2\xb7\x75\x75\x60\xfb\x18\x29\xa7\xa5\x03\xcb\x45\xf6\x7f\xed\xb2\x8f\x47\x71\xe0\x72\x23\x71\x62\x54\xeb\xca\x4a\x48\xe2\xce\xc5\x9a\xa2\x29\x6c\xc5\x28\xae\x3c\x38\xce\x2c\x44\x1c\x24\xc6\x19\x41\xa8\x65\xd2\x59\x75\xfc\x77\x12\xb7\xea\xd9\x58\x64\x9d\xf7\xbc\x7b\x71\xfc\x26\x68\x5d\x1a\xd0\xdd\x7f\x48\x53\x08\x41\x3e\xe6\x04\x51\xd2\x0b\x67\x57\xf6\x01\xf5\x4f\x30\xdf\x53\xa7\xc8\xf5\x45\x9f\x7a\x8f\xda\x0e\x94\x94\x38\x6e\x10\x2a\x86\x0c\xa7\xbc\x60\x36\x92\x84\xcb\x8b\xd2\xa0\x39\xba\x5d\xdf\xc0\x16\x25\xb2\x09\xfd\xf3\x37\xd3\xcf\x43\x88\xdb\x44\x0f\x42\xe9\xdb\xac\x35\xc5\xf1\x4b\x5c\xa4\x18\x62\x92\x29\x3c\x23\x56\xe0\x0d\xcc\x76\x3d\xd1\x57\xec\xd9\x20\xf8\x81\x15\x70\x9f\x25\x42\x39\xae\x2f\xf3\x9d\xb7\x46\x9b\xb9\xb5\xcf\xb8\xa8\x93\x3e\x77\x44\x99\x78\xcc\x5f\xa0\xa4\xff\x55\x25\x50\x7e\x33\x49\x33\x66\x8b\xee\xc1\xea\x0b\xba\xe4\x38\x73\x81\x70\xf8\x8f\xef\xa8\x03\x40\x1f\xe7\x5d\x6c\x2a\x73\xf0\x6a\x0d\x39\xf5\x14\xe3\x26\x73\xb9\xe1\xa8\x05\xf1\x40\x06\xb4\xcc\x03\x7b\xb5\x29\x1c\xe9\xfb\x5c\xec\xcb\x7e\x6f\xd2\x28\x2d\x57\x14\x9a\x7f\x72\xa3\x2d\x7a\x2b\xb9\x64\x0a\xe0\x73\xf6\xca\x07\xd3\x97\xd1\x08\xa8\x1b\x0f\x6a\x92\xd8\xb2\x23\xd3\xf9\x6c\x13\x84\xcf\x31\x8b\xf1\x79\xef\xae\xa6\xc9\xba\x72\x17\xaa\x32\x57\x40\xd6\x9f\x3b\x76\xa9\xb1\x52\x03\x5e\xa8\x90\x8a\x6f\xc7\xc2\xee\x7f\x1c\xaf\x90\x69\xec\xf9\x1c\x95\xc1\x39\xb6\xe3\x60\x7a\x73\x62\xa7\x84\x3c\x0f\xa4\x22\xcc\xed\x36\x76\xad\xa1\x6d\x0b\x53\x77\x42\x29\x24\xf7\xff\x66\x2a\xb9\x2d\xac\x75\x6f\x4e\x3d\x9c\x3e\x09\x6d\xdf\xaf\x47\xc5\x6e\xf8\x6f\x13\x15\x3a\x29\x26\x96\x5e\x78\x6e\xac\x5e\x4a\xac\x5d\xba\x76\x46\xfc\x35\x90\x04\xed\x34\x0a\x2a\x8a\x71\x5d\x42\xe8\x17\x3f\x99\xce\x59\x50\xc9\x11\x09\xfa\x88\x77\x0d\xe4\x9d\x63\x9c\x80\x40\xd9\x43\xef\x8d\xd3\x46\xac\x50\x59\xa8\xc6\xa9\x23\xb5\x60\xc8\x3e\x72\xb1\x32\x24\x97\xe6\xba\x6e\x95\xc6\xb5\x77\xf8\x76\xea\xa3\x6f\xef\x57\x7b\xcf\x66\x01\x87\xc2\xb4\xd8\x97\xfb\xf6\x5c\xa3\x79\x59\x26\xc0\xeb\x88\x25\x00\xcf\xd2\xe4\xb1\x08\x24\x38\x73\xd9\xee\xb8\x90\xa6\x04\xe8\x46\xc0\xc9\xd0\xa6\xf7\x40\xc7\x0e\xd5\x20\x92\x1c\x68\x11\x7f\x7c\x13\x12\x42\xb6\xc0\xb6\x1d\xa4\xa9\x5c\xb7\x49\x1b\xb7\x4f\x8d\xd7\x0c\x1a\x6b\xd2\x57\x32\xbb\xb8\x65\xb8\x76\xbc\x91\x12\xb6\x00\x5f\xf9\xc5\x7d\x23\xe4\x8d\x78\x30\xfe\x4c\x44\xfb\x67\x6b\x56\x1c\xf6\x37\x31\xcd\x30\xf3\xbc\x41\xa0\x8c\x0e\x43\x6c\x8c\x9d\x84\x32\x4b\x88\xae\x9c\x93\x58\x99\x71\x84\x26\x3d\x59\x23\x56\x8d\x55\x2a\x85\x62\xf8\xc7\xd5\x66\x37\x37\xda\x17\x9a\x4e\xb4\x3d\x5d\x3d\x69\x10\x20\xae\x8b\x97\xbb\xa3\x9c\x7e\xd2\x36\x63\x65\x1a\x38\xc9\x04\x5f\x68\xc0\xfd\x3e\xe1\xb8\x2c\x77\xfd\x57\xa6\x6b\xaa\x25\xd8\x73\x08\xb7\x6c\x41\x94\xb8\x71\xad\xa1\xf1\x48\x19\x07\x0e\x3e\x28\xae\xc6\x61\xeb\xd5\x2d\x1a\xeb\x83\x62\x01\x0a\x4e\x7d\xd9\x60\x79\xb6\xcd\x93\xcb\xf7\x8d\x69\xe9\x2f\xc5\xae\xcf\x71\x9d\x63\x17\x07\xb0\x34\x44\x3e\xf0\xf5\xb9\x72\xb2\x19\xf4\xf0\x8a\x21\x9e\x69\xd6\x55\x55\x62\x91\x32\x8e\x35\xfd\xfa\xe8\x24\xa3\x8c\x24\x0e\x12\xe5\xb3\x3e\x8b\x70\x79\x7b\xfa\x01\x57\x39\x72\xcb\x38\xe0\x49\x7d\xb6\x55\x9b\xb3\xc6\xdd\xf1\x20\xd2\x87\x8d\x11\x86\x32\x76\x49\x22\xe5\xf6\xb7\x37\xa8\x57\x59\x62\x9c\x78\xac\x51\x28\x86\x2f\xaf\xd1\x7c\x7f\x59\x57\x33\x1e\x9a\x79\xe5\x88\xa1\x07\x06\x3e\x29\x71\xa7\x25\xba\x98\xd1\xba\x8c\x12\xa5\x58\xe2\x10\xb9\x8d\x07\xd4\x2f\x3a\x3d\xc8\x71\xc4\xcc\xf9\x68\xd7\x98\x68\x86\x2a\x47\xd2\x6e\xab\x8d\xd8\x34\x24\xf6\xf5\x0c\xd7\xae\x4b\xea\x02\x97\x34\xb1\x87\x32\xdf\x78\x48\xb5\x79\x4a\xcc\xab\xd9\xcc\x29\xf7\xda\xa4\x07\x47\xb7\xf7\xd8\xb6\x51\xc6\x83\xc4\x5d\x32\xd0\x04\x0f\x19\xb4\xcf\xc0\x27\x42\x05\x3e\x7e\x0b\xa3\x1f\x48\xea\x4a\xdc\x68\x6e\xcd\xbd\xf0\xe0\x24\xa3\xf0\x28\xdc\x81\x7a\x3c\x62\xd0\x03\xbe\x36\x77\xa2\x96\xec\xba\xa8\x2a\x24\x3d\xd2\x71\xfc\xf3\x5b\x34\x07\x47\x8a\xbb\x05\xe4\x7f\xcb\xdc\x61\x29\xc4\x02\x1e\xc7\x1a\x83\x6a\x67\x99\x96\xa1\x2f\x5e\x64\x52\x9f\x9c\xa4\x7e\xd8\x72\x5e\xea\xc1\xc3\xb8\x78\x6e\x87\xb1\x91\xd5\x68\xa3\x44\xc5\x42\x5d\x82\x9c\x34\xa0\x2f\x34\xb0\x89\x15\xea\x23\x57\x8e\xfc\xe5\xd7\x3e\xac\x79\x62\x04\xb1\x88\x51\x5f\xe6\xe1\x75\xe6\x84\x88\xef\x27\x03\xd3\xb9\x03\x0b\xc4\x5b\xff\x24\xe3\x35\xe9\xc5\xbd\xfe\x79\x43\x5b\xa9\x43\x6e\xcc\x7f\xe5\x09\x84\xe4\x13\x27\xd6\xc8\xfd\xa1\x01\x9f\xa0\x32\x03\xc5\x3a\x68\xcd\x7d\x71\xa9\xd8\xa5\xb7\x2c\x2b\xae\xb9\x36\xfa\x0f\xb3\x9e\xd7\x04\xbe\x10\xd4\xab\xb7\xd1\xf4\xa1\x5b\xc3\xb8\x82\x67\xf6\xeb\x65\x72\xc7\xd9\x31\xfa\x3c\x3a\x25\x42\x50\x16\xa6\xed\x17\xe4\x9b\xb5\xbe\x2d\x42\x63\xfb\xea\x05\x3b\x93\x25\xc5\x9d\x66\xc9\xbc\x91\x67\x35\x9d\x63\xe9\xd4\x95\xb9\xb2\xd5\xcc\x78\xbb\x75\x0a\xcb\xd4\xb1\xe9\xe0\xde\x85\x82\xaa\x9d\x5e\x83\xb9\xaf\xac\xd3\x24\xac\xc0\x23\x2e\xce\xcb\x73\xbb\xf7\x1a\x63\x7f\x65\x2c\x79\xee\xf3\x57\x4f\x34\xde\x33\xc5\xd8\xb4\xa9\xbe\x6f\x87\xf9\xeb\x9e\x4d\xdc\xaa\xaf\x04\x62\xc2\xbe\xc3\x4d\x0d\xb4\xd9\xed\x02\x32\xfa\x8b\x21\xfc\xe7\x75\x45\xf9\x83\x48\x8e\x7e\x6c\x9a\xaa\x52\xe6\xc5\xed\xb3\xcc\x13\xbb\x92\x23\x79\xde\x82\xb9\xd1\xc2\xbb\x7e\xa6\xe6\xff\xcd\xb8\xd0\x0b\x2e\x8b\x41\xfe\xb1\x2b\x55\x31\x28\x62\x62\x7c\xf7\x1f\x79\x48\x55\x0b\x5d\xc4\x2d\x7b\x5d\xb8\x0e\xfc\xc9\xb9\x83\x34\xcf\x28\xf0\x82\x29\x14\xc3\x55\x57\xa7\x77\xbc\x77\x47\x80\x38\x96\xd0\xa7\xca\x33\xba\x77\x26\xfc\x28\xcf\x66\xd1\x05\xec\xe8\xd5\xd4\x7e\x7c\x8f\x30\x27\xca\xb6\xde\xd4\xc6\x45\x2a\x3e\x90\x26\xe0\xa2\xee\x34\x8a\x50\x8b\x22\xe2\x28\x38\x29\xf3\xfe\x7e\xf3\x74\x10\x5e\x04\x49\xad\x75\x6c\x87\x14\xd7\xc5\x22\x85\xa8\xce\x4d\x43\x24\x14\x95\x30\x6d\x16\x8d\xcc\x57\x9f\x98\x68\x24\xb4\x96\xed\xd9\x88\xe8\xcb\xed\x70\x45\x3d\x4b\x29\x34\xc6\xc0\xa1\x33\x3f\x69\xb7\x76\xc0\x60\x5a\x25\x41\x74\x97\xa3\x9f\x49\x6a\xdc\x32\xd6\x08\x42\xb9\x5f\x2e\x69\x6d\x3a\x79\xa0\x91\x73\xf1\x5b\xb1\x7b\x81\x53\xc7\x6e\x19\xbe\xa6\x2f\xf7\xc8\x6e\xd5\x9f\xee\xb2\xa3\x58\x36\x64\x6f\x3a\x42\xf8\x0c\x22\x44\x38\x67\x93\xe6\x69\x82\xb0\xae\x53\x9b\xfd\xee\xd0\x26\xb9\x53\x8a\x7a\x62\x52\x4e\xfe\x7a\x0d\xe5\xe9\x22\x65\x31\x8e\xee\x74\xab\x4a\xd0\x43\x3d\x5a\x8f\xf5\x37\xf7\xa9\x7f\x69\x5f\xa8\xdb\xa4\x9d\x7c\x43\xdc\x83\xe0\x53\xc8\xba\x2b\xfb\xbd\x05\x1a\xd1\x95\x46\x25\x77\xf4\xb7\x57\x3d\x1a\x1b\x87\xc3\x47\x87\x0d\x48\x34\x99\xe6\x42\xc5\xf4\xe2\x24\x51\xc4\xad\x4f\x80\x3c\xf0\x38\xd8\xfb\x11\xe3\x14\x15\x10\x14\xee\xc7\x75\x36\xbc\x46\x73\xd2\x29\xe3\x3a\x97\x33\xea\x99\xee\x69\xc6\x30\x15\x67\xac\x9e\x14\xab\x99\xb9\x9a\xaf\x70\x89\xa3\x86\xe0\x35\x35\xc6\x4a\x09\x16\x07\x08\x69\x40\x2d\x98\x68\xe4\x75\x18\x71\x50\x30\x93\xf9\xe0\x1f\xc6\x2a\x6a\xa9\x83\x62\xe0\xe6\x07\xfb\xd2\x9f\x9a\x3d\x73\x4e\x47\xc7\xcc\x85\xb3\x66\x89\x48\x9f\xff\xab\x5b\x5b\x35\x0c\xc7\xab\xc7\xba\x92\xd9\xab\x5f\x30\x7d\xed\x62\xd5\xf8\xe8\xaa\x67\x1f\x97\x22\x06\x0a\x6c\x2b\x14\xc3\xb7\xf6\xa5\x42\x2b\x28\x2d\xbe\xd9\x9b\xfe\x9e\x4e\x16\x70\x17\x4b\xc7\xb3\xdc\xaf\x1f\xb9\xcc\x88\x5b\x73\x0a\x35\x42\x19\x58\x28\xca\xce\x33\xa9\x9b\xf9\x1e\xe8\x8a\xc7\x78\x51\xde\x6f\xea\x38\x21\x89\xf8\x87\x8f\x3f\xa6\x17\xcd\x08\x28\xd9\x99\xc9\x8f\x1a\xcd\xe7\xc0\xf3\x91\x65\xc7\x58\x5e\x66\xb4\xc1\xd1\xea\xb2\x89\x65\xcb\xf6\x70\x88\x43\x8d\x35\x1b\x70\x68\x40\xc8\x69\xfe\xec\xa2\xa7\xcd\x43\xbb\x82\x3d\x69\x7f\x95\x79\x63\x83\x94\x94\x8c\xde\x71\xa1\x18\xba\x1d\x29\xe5\xd0\x28\xbd\x84\xab\x3b\xfe\xb2\x26\x5f\x87\xab\x44\x08\x90\xef\x3e\x9c\xe4\x67\x75\xdc\x04\xda\x65\xee\x1c\x6a\x76\x4e\x24\xaf\x4b\x84\xf9\x6f\xce\x34\x7b\x98\x28\x71\x1a\x9d\xb0\x61\xa4\x51\xeb\x31\x41\x07\xcb\xbe\x33\x45\x3f\xc0\x05\x10\xbc\x6f\x70\x72\x26\x38\xac\x54\x28\x86\x9f\x58\x32\x42\x9f\x4b\xaa\x07\x32\x4d\xfe\xd7\x35\xfd\xdb\xb0\xc6\x55\xff\xd1\x57\xf5\x10\x87\x2d\x14\xc4\x9a\x08\xcf\x6d\x36\xa4\x39\x11\x68\xe8\xc7\xd7\xfb\xe6\x5d\x86\xb2\x97\xcb\xc4\x59\x0c\xb9\xff\x77\x0c\xf3\x9c\xae\xe8\x05\x40\xfb\x5f\x29\x23\x7f\x73\xd3\x70\x6d\x5e\x28\x11\x96\x5a\xf2\xc6\x50\x59\xec\x71\x87\xb9\xf0\xd4\x2f\x18\x64\xa4\x2e\x04\x08\x99\x7c\xaa\xdf\xb8\x35\xc5\x79\x13\x82\x36\x7d\x99\x5f\xf0\x2b\x9a\xb2\x93\x94\x08\xa8\x5c\xd6\xe7\x37\x9b\x52\xca\xd8\xc3\xbc\x11\xf7\x05\xfa\xf2\xfe\x5e\xa9\x5b\x4a\x49\xbd\x8e\x85\xe0\x77\x26\x5c\xaf\x8d\x7a\xb6\x47\x41\xea\xb5\x7a\x13\x3c\xa1\xe8\x1e\x5f\x1c\x98\x24\x72\x25\x54\x95\xc9\xc2\x5f\x0c\x39\x01\xad\x93\x96\x14\xf9\xbf\x5b\x93\x66\x6e\x0a\x98\x20\xa1\x12\xa5\xb3\xf4\x03\xfb\xa5\x1b\x19\xf2\x39\x83\x59\xd0\x3f\x1a\xdc\xd0\x44\xe0\x58\x71\x7e\x3e\xf9\x68\xe2\x85\x3e\x15\xfa\x35\x1b\x5b\x9b\x66\xc4\xb0\xcf\x51\xd2\x29\xe9\xcb\x8d\x59\xfa\x7f\x31\xa0\xa1\x93\xd2\xba\x32\xb9\x59\xe4\x26\x11\x70\x7a\xe3\x32\x2d\x2e\x47\x85\x62\x93\x61\x78\xfe\x2e\x83\x79\x51\x0a\x08\xf5\x05\x0b\x38\xff\xe1\x53\x86\xdd\x09\xc7\x0e\x76\xcb\x2c\xf0\xe2\x25\xf9\xca\x70\x83\x37\xd6\x20\x42\xfa\x23\x31\xdb\x39\xbc\x46\xe3\x7b\xa0\x32\x17\x93\xc5\x3f\x3b\x3e\x4a\x99\xf8\x7b\xfa\xdf\x4f\xde\x9f\x6a\xec\x54\x04\xd8\x9d\xf9\xc6\xce\x24\x0a\x54\x59\x93\xee\x5b\x6e\xcb\xb9\x69\xc6\xe3\x91\x03\xe4\xf5\x7e\x64\x68\x3e\xbd\x4b\xb3\x34\xd0\x2a\xb2\xec\x07\x1e\x10\xa1\x1d\x11\x5e\xf0\x39\xaa\x54\x04\x65\xee\xf4\xc9\x8b\x93\x4d\x4e\xa3\x13\xba\xd8\x97\xdb\x7d\x91\x46\xa2\x62\xb1\x43\x03\xd3\x20\x96\x2a\xe1\x94\x44\xe1\xee\x2b\x7b\xa5\x51\x6b\xd9\x21\x7e\xf4\x97\xc2\xd0\xec\x22\xe9\x1d\xc6\x03\xb7\x16\x7d\xf6\x13\x4b\xd3\xd1\x68\x6e\xfb\x3c\x59\x4a\x66\x0e\xc1\x6b\x28\xac\x25\x96\x5d\x21\xd1\x31\x6e\xde\xfe\x58\x63\xc2\xa0\x63\xe6\xdc\x8e\xf9\xc2\x8c\x57\x1e\x76\x97\xbe\x64\xfa\xa7\x83\xd6\x40\x39\xae\xdf\xf3\x9f\x7b\x45\xaa\x53\x90\xaa\x0d\xe4\xb7\xe8\x22\xc7\x4e\xb8\x58\x9b\xf1\x20\xdd\xd1\x7f\x3b\x72\x34\xbd\x12\x59\x09\x46\x28\xe3\xd8\x90\x59\xb1\x69\x70\xb2\xe8\x66\x44\xdf\xdc\xf5\x56\x7a\x8d\x08\xeb\x4f\xe2\x6b\x0a\x1e\xff\xb0\xdc\x60\x80\x11\x0f\xc7\xed\xd7\x6f\xde\xa6\xc1\x6a\x88\x73\x52\x15\x12\x6c\x6f\x4c\x6f\xd1\x40\x20\x1f\x0c\xf3\x56\x3c\xa8\xab\xd1\x59\x9c\x15\xb0\xc5\x5c\xe6\x08\x82\xe5\xec\x4d\x1a\xb7\x87\x78\x3e\xaa\x49\xab\x28\xbe\x28\x59\x5c\x14\x35\x71\xae\xb2\x23\x06\x9a\x59\x1d\x95\x3c\x56\xd0\x3b\x9f\xfa\x9a\xea\x2c\xf9\xd1\x09\xcf\x9b\x36\x99\x97\xd5\x06\xe9\x40\x0a\x5c\x50\xf1\x3e\x75\x52\x5b\x89\x88\x36\xe2\xf3\x34\xbf\x7e\xdf\x95\xc6\x49\x10\xed\x9c\x7e\x44\x9f\xb3\x23\xf6\xa4\x23\x5a\x27\xb2\x58\x29\x5d\x9f\xe5\xd1\x73\xa3\x8c\xb8\x4c\x63\xd8\xe6\xbb\x7c\xac\x7e\x88\xb9\x38\x0d\x87\x6e\x5d\xa1\x11\xf7\x11\xe7\x4c\xb4\x9e\x0e\xbf\x97\x7e\xa5\x3c\xf0\x3c\x92\x88\x48\x09\x39\xd1\xe3\x46\x46\x00\x4a\x39\xb2\x8b\x72\xc5\x2e\xa3\xe6\xe4\x04\xbb\x65\x9a\x78\x44\xcc\x6b\x4d\xea\xd8\x12\x6d\x6a\xb9\xe7\x3f\x63\xf8\xa9\x40\xbb\xe8\xff\xe7\xeb\xef\xe3\xae\xa8\xea\xbd\x71\xdc\xfd\x10\x21\x22\xf2\x0c\x22\xa2\x22\x2a\x01\xfb\xea\xe2\xf9\x21\x0e\xa1\xa2\x22\x21\x9b\x10\x09\x8d\x8c\xb5\x67\xd6\xde\xb3\xae\x3d\x33\x6b\x5c\x33\xb3\x37\xfb\xd2\x38\x48\x44\x88\xc4\x4d\x1e\x6e\x23\xe2\x10\xc7\x43\x66\xc4\x31\x23\x23\xf3\x10\x71\x8c\x9b\xc8\x4c\x39\x44\x66\x66\x46\x1e\x8f\x19\x79\x38\xa4\x66\x66\x5e\xd3\xef\x35\x9f\xb5\x66\xd6\x9a\xb5\xaf\xdf\xf7\x9f\x5e\xaf\x04\xae\x6b\xef\x99\xb5\x3e\x8f\xef\x07\xbe\xdb\xfe\xcd\x31\x7e\x85\x6f\x6e\x10\x05\x5e\x94\x7b\xfc\xcd\xe1\xaa\xe2\x0e\x75\xb9\x10\x23\x64\xba\x0d\xbd\x21\x19\x7b\x63\x3c\x3d\x79\x9d\xb6\x0a\x36\x19\x49\x96\x77\xaa\xee\x77\xbd\x8f\x26\x0b\xc7\xfd\xda\x14\xfe\x5c\xe1\x05\xa6\xe8\x14\x1b\xdc\xa0\x3b\x7d\xf9\xd3\x46\x65\xfb\x24\x9b\xd8\x36\xb6\x10\xc0\x3b\x13\x9a\x6e\x2e\x78\x51\xa9\xb9\xe3\x9a\xd0\x05\xb7\xdb\xc2\x92\xb3\x3a\xf0\x1c\x05\x76\x2b\xe1\xab\xf6\x5d\x99\xe6\x09\x27\x31\x74\x8b\x7e\xf1\xb2\x0a\x16\x15\x12\x53\xa2\x83\xdd\x1b\x28\xc8\x24\x4e\x82\xe4\x4b\x1e\xe3\x1d\x59\xf0\x4a\xf7\xb8\xa5\xd2\xc4\x09\xc3\x1c\xb9\x75\x82\x07\xbf\xdb\x5c\x98\x22\xf2\x5f\x78\xc9\x49\xad\xce\xc1\x0e\x1f\x88\xf3\xea\x62\x8c\x16\xcc\x13\xb6\x86\xeb\x7a\xed\x52\x77\xdf\x3e\x2f\xdd\x26\x3b\xd0\xf7\x5e\x1b\xe8\x1a\xfa\x71\xf9\x95\x4c\x54\xff\xd6\x21\xd5\xb9\xa0\x1e\x6f\x37\xe5\x2f\x9c\xde\x3e\xaa\xad\xaa\x86\x54\xcc\x21\xd5\x4f\x1d\x91\x81\xc7\xb0\x69\x08\xa7\x68\xc1\x91\x74\x19\xe2\xd2\x50\xd9\xa2\x76\x9e\xd0\x4b\x6e\x3b\x20\x9e\x9d\x2a\xd5\xad\x9e\x91\x88\xfb\x80\x90\xb3\xa8\xa7\x0f\x3e\x93\x59\xc4\x13\x07\x71\x05\xf5\xd7\x8f\x5d\x20\x9a\x57\x0f\xfe\xff\xdd\x0f\xf3\xf2\xe3\x16\xec\x54\x38\x0f\x15\xbd\xa6\x80\x72\x28\x35\xfd\x20\xe4\x8c\x84\x5d\x9b\x15\xbe\x9e\x45\x03\xae\x67\x0f\x3f\xe5\x4e\x4f\x02\x50\x6a\x50\x00\x46\xf7\x54\x15\x87\x7a\xd7\xe0\xb2\xba\x0b\xaa\xba\xd2\x0e\xa3\x35\x04\x7a\xbf\x3c\xf6\xef\x1c\x25\x1b\x5c\x54\xf1\x29\x47\x59\x39\x62\x35\x8a\x02\x9e\x71\x4a\xe5\xe8\xea\x39\x83\xd5\x36\xbf\x4a\xb8\x3d\xe2\xab\x0b\xb3\x37\x8c\x38\x55\x11\xca\xb2\x37\xf1\x3e\x6d\x9a\x06\x68\x5d\xd6\x1b\xde\x36\xf7\x76\x3f\x5e\xdb\x32\x64\xd4\x71\x1c\xbd\x22\x7f\x82\x6e\xbb\xd5\x10\xcc\xcd\x9b\x1f\x1f\xad\x6c\x70\x1c\xdc\x16\x6c\xff\xef\x03\x1a\x67\x8a\x8f\x19\x61\xf6\x39\x73\xad\x8a\x13\x10\xac\xf4\x5b\x9f\x96\x4f\xd6\xb3\x41\x18\xc7\x1d\x2a\x11\x19\x50\x1f\x7c\xc2\xd4\x88\x94\x66\x8a\x0b\xfc\xf3\x2c\x89\x1a\xb4\x10\x33\x31\x2b\xf9\x1c\xb3\x1b\xff\x70\x32\x32\xbd\x6d\x42\xef\xa7\xaf\xc2\x58\xc6\x8c\x71\x63\xa7\xe2\x68\xd9\xb9\x34\xb1\x5d\x2a\x47\x75\x53\x1b\x99\x71\x99\xdf\x52\x39\x1a\xc4\x91\x40\xa5\x45\x98\x61\x47\x31\x81\x2d\x4e\xb9\x51\x90\x30\xd6\x78\xb6\xd4\x75\xd8\x35\x29\x1d\x26\x70\x6d\xeb\x03\xe9\x6f\x9a\x35\x0b\xca\x9c\xfe\xe3\x06\xab\x60\x4c\x9b\xf3\x54\x3f\x6c\x4b\x2c\x3f\x67\xf8\xbd\xfc\xae\xfc\x7b\xd8\xad\xd9\x5c\x90\x66\xdd\x1d\x43\x95\xd1\x7f\x22\xe7\x5e\xee\xc9\xb9\x5a\x23\x8b\x02\x0b\xbb\xbe\x8c\x8e\xcf\x2e\xca\x7e\x43\xc4\x30\x12\x44\x8a\x2f\xcf\xd3\x9d\xf7\x88\x8b\x20\x3e\x8a\x7f\xfb\x3d\x0d\x43\x64\x20\xe1\xf0\x1c\xed\x5c\xa9\x77\x76\x2e\x6d\xc4\xe7\x5f\xd4\xf5\x1f\x5a\xdf\xb6\xcb\xc8\xca\x81\xe6\xfe\x74\x44\xbe\xb2\x0e\x10\xe2\xf9\xbf\x5d\x5a\x83\x8a\x20\x4d\xc6\x95\xcf\x4b\x55\xc1\x0a\x6b\xa2\x96\xab\x10\xfb\x8a\xb7\x6f\x93\x0f\xab\xc9\x52\x46\xef\xe9\x35\xfa\x6b\x9d\x35\x5b\x74\x5c\xc6\xc8\x4b\xd4\x45\xeb\xcd\x4b\x26\xca\x92\xbb\x54\x8e\x16\xee\x1c\xaa\xf5\x8e\x15\x2e\xf9\xf6\xc9\x15\xda\x82\xc3\x46\xc9\x2a\xe5\xed\x51\xd7\x68\xdd\x68\xcd\x46\x42\x95\xa9\x2d\xa2\x6e\xe1\xc5\xee\x75\x36\x32\x40\xf0\xb0\xff\x39\x75\x98\xe7\x13\x13\xd8\x47\x4e\x1f\x1d\x63\xdd\x15\xfa\x01\x31\x80\xc3\x13\x9d\x1d\x90\x7d\xba\x42\x22\x97\x57\xf8\x90\xac\xae\xd4\x44\x21\x19\xf6\x69\xc8\x0c\x05\x1f\x61\x4e\x13\x28\x8d\x26\x46\x01\x86\xc1\x62\x6e\xc8\x8a\xf4\x9d\x74\x77\xc3\x61\xfc\xe7\x67\x07\xaa\x14\x7f\x7e\x95\x83\xd5\xa3\xb4\xb0\xc1\x18\x72\x03\xb1\x0d\x2f\xce\x3e\xa9\x55\x6c\xc4\xc5\x7e\x6f\x65\x44\x6e\xf2\x5c\xfe\x5a\x3f\xc1\x04\x0a\x29\x69\x3f\xa6\xbc\x29\x2b\xe7\xf1\xa5\x72\xd4\x6f\xb7\x04\x1e\x52\xbd\xa8\x8c\xe6\x8d\x96\xed\xf0\x35\x4d\x68\xda\xcf\xbe\x72\xa1\xc8\x18\x0d\xc0\x0f\xf7\xe4\xef\xef\x3b\xba\xb7\xb6\x31\x1d\xf6\x16\xfb\x8c\x97\x78\x0c\xd0\xae\x6a\xfb\xb8\x3f\x9f\xc7\x7d\xcc\x6e\x35\xac\xd0\xae\x66\xb8\x77\x8b\x5e\xe1\xaf\x15\xb9\x35\x8e\x57\x3f\x3a\x3e\x7b\x98\xb9\xb9\x2e\xd7\x9d\x9c\x50\x4d\x54\x9a\xb9\x96\x47\xae\x6b\xd9\xc0\xa4\x7a\x01\x21\x1b\xf8\x09\x2f\x28\x33\xcf\xf8\x01\x93\x9a\x2b\xa6\x0b\x85\xa9\xc7\x65\x4e\x94\x65\x7d\x34\xe4\xa1\x74\x02\x6c\x58\x8a\x46\x6d\xfe\xe0\xd8\x01\x4a\xd1\x0d\x2f\x69\xce\x29\xad\xb2\xa2\x21\x71\x90\x56\x2d\x2f\xde\x3c\x2c\x2d\xa6\xbb\x32\xd5\x70\xdf\xd3\x5a\x2e\x07\x74\x39\x4b\x04\x29\xf3\x2f\x3d\x26\x1c\xa0\x90\x0b\x94\x94\x42\xff\x2e\x31\xc7\x08\x99\x27\x18\x94\x3d\xf9\xa6\x90\xab\xbe\xb6\x26\x84\x71\x47\xbf\xc3\x93\x7a\x9d\xc4\x97\x23\xfa\x9f\x3d\x5a\xf9\x41\x6a\x2e\xb2\xfd\x64\x6a\xfa\xf7\x3d\xba\x72\xb2\x11\x47\x20\x3e\xf5\x3b\x36\x47\x71\xe1\xac\xc0\xf4\xed\xf3\x6f\x0c\x95\xc7\x9b\x28\x35\xf1\x73\x27\x74\x0a\xa1\xcf\x70\x0d\xb1\x84\x42\xba\xe8\xa4\xd6\x94\x21\xe2\x63\x5f\xb0\xb1\xde\xdf\xa6\xcf\x23\x90\x03\xf2\x81\xf0\x28\xa2\x8f\x0d\x97\xda\xc6\x4c\xc9\x23\xb9\x43\x63\xfb\xa7\x1f\x70\x46\xa9\x1c\x05\xfb\x65\x19\x9b\x4c\xb3\x4b\xe5\xe8\x43\xc7\x55\x53\x14\xd7\xe0\x95\x11\x3c\xe4\xed\xda\xbe\xaa\x0b\x83\xa8\x7c\xf2\x7c\xf2\x3f\x7e\x88\x3f\xf3\xc5\x34\x24\x22\x32\x44\x3f\x50\x8c\x6e\x09\x9c\x84\xeb\xd7\x68\x93\x53\x64\xa7\xdd\xc9\x1b\x8f\x66\xa4\x64\xb8\xe8\x49\xee\xf7\x0b\x74\xe2\x4e\x03\x62\xbb\xd8\xbd\xe5\xa3\x7e\xd2\x4f\x50\x14\x67\x8f\xe8\xf0\x1e\x54\xa9\x24\x6a\xf4\xff\xb2\x33\x9d\x59\xd7\xc0\x1c\x0c\x96\x13\x37\xbd\xa7\x9c\xf1\x16\x6e\x62\x04\x31\xaa\x70\xbf\x66\x75\xe4\x23\x86\x26\x12\x55\x70\xd3\x58\xda\x86\x20\xaf\xa0\x8a\xdd\xe2\x86\xa5\xd5\x7b\x74\xb0\x10\x0b\x48\x10\x9a\x38\x1d\xc6\xef\x1a\x95\x6d\x5a\x6a\x88\x98\x20\xb0\x21\xaf\x7b\x61\xe7\x30\xad\xd5\x24\x36\x44\xe6\x4b\x17\x29\x6d\xac\x45\x3c\x8f\x0f\x39\xa2\x49\x3b\x87\xaa\x18\x2d\xc6\x09\xea\xe5\x9e\x5c\xfd\x28\xa7\xf3\xde\x4e\x59\x58\x41\xaa\x5e\xdf\xdf\x1f\xc8\xfe\x8e\x80\x8a\xa1\x61\xe1\xac\x66\x1c\xe6\x31\x6a\x91\x0a\x01\x93\x4d\x60\xe2\xe6\xac\x39\xe9\x50\xa9\x6a\x87\x4a\x4b\x16\x7d\xe0\x69\xed\x6d\xd3\xd0\x4d\x14\xba\xbf\x39\x9f\x5f\xc7\xc9\x53\x84\x3e\xf2\xd7\x8f\x5c\xaa\x40\x84\x12\xa5\x15\x75\xdf\xb9\xfd\xb4\xaa\xf4\xcc\x2a\x09\xf0\xed\x02\x61\x02\x82\x1b\xc8\x84\xf0\xbb\xe6\x09\x9d\x69\xd3\x8a\x13\x8f\xc5\x07\xfc\xf2\xe5\xdd\xbb\x21\xad\x09\x67\xcf\x9a\x0e\x91\xea\x9d\xa1\xa2\x20\xc4\xbe\xc1\x08\x4c\x0f\xf9\xd0\x7a\x28\x2f\xc4\x6e\xce\x58\x9c\x0d\x52\xf8\xcb\x06\xa3\xa8\x9d\xf0\xf2\xe1\xf9\x52\xa9\xca\xb7\x10\x6b\x57\x0d\xcf\x7f\x69\x87\x32\x98\xc6\xcc\x15\xe0\xce\x72\x4f\xfe\x63\xef\x28\xc6\xaa\x14\xad\xe1\xe3\x8b\xc2\xdd\xf9\x6c\x75\xc0\xa8\x89\x29\xaf\xb2\xbc\x65\x32\xc1\x37\xb1\x29\x00\x3f\xb9\x07\xae\x13\x16\x2d\x28\x10\x33\xb3\xe2\xe6\xfe\x2a\x9d\x4f\xd0\x75\xca\x3d\xb9\x5f\x3f\x9f\x0e\x49\x69\xb5\x54\x8e\xf2\x07\x35\x38\x1c\x37\x74\x4a\x76\xfc\xf3\x96\x09\x80\x6c\xc8\x10\xe7\x2d\xe7\xcd\x65\x1a\xf8\xbc\x1a\x60\xd6\x8c\x03\x1c\x00\xc5\xce\xab\x66\x9b\x88\x20\x04\x75\x86\x5e\x9a\x88\xe2\xe7\x8f\x68\x9e\x8d\x18\xbb\x25\x54\xc3\xcc\xe7\x18\xef\xe2\x6a\xcd\x45\x04\x1b\xd4\x6f\xf9\x01\x76\x44\x2c\xad\x3e\xda\x1e\x6e\x12\xf1\xb3\x70\xb1\x68\x8f\x7c\x8f\x24\x16\x61\x1b\xd6\x6b\x30\x34\x70\x8c\xe2\x26\x1e\xd1\x9b\x9b\xb5\xb1\x37\xc3\x89\xbd\x6b\x4f\x7e\xce\x4a\xdd\x01\xc3\x97\x3a\xf9\x9f\x65\x1a\xf0\x97\x18\x71\x5b\x91\x25\xc9\xfe\x76\x3b\x3f\xc5\xd7\xd3\x10\x54\xd0\x72\xfd\xec\x74\x3c\xd6\x64\x46\xdb\xb1\xf9\xf1\x1b\xbc\x40\x58\x4a\x03\xe4\xd1\x86\x2a\x13\xff\xe6\x33\x3c\xb3\x4d\xe9\xec\x9c\x52\x2a\x47\x7f\x19\xa0\x30\x6c\x41\xc9\x98\xa3\x53\xa3\xfe\x63\xf4\x92\xdc\xe6\x9a\xe4\xe9\xd6\x76\xf6\xe3\x1a\xc0\x03\xf6\x85\x09\x5e\xa9\x31\x52\xc3\xae\x82\x79\x8e\x5b\x4b\xf6\x5a\xc3\x4f\xcb\x9d\x2d\x31\x69\x5d\x49\x83\x85\x75\x13\x86\xe9\xbd\x24\x8f\x99\xeb\x17\x66\xff\xe0\xae\x34\x56\x16\x1f\x1c\x28\xa2\x43\x40\x1a\x42\x97\x26\x37\x5b\x53\x4c\xf7\x1d\x64\xdb\x1d\x00\x7c\x3c\xbc\x43\xde\xce\x0a\x8b\xef\x54\x1b\xe6\xe3\x91\xc4\xcc\x10\x71\xef\xab\xd9\xe3\xb2\x67\xb7\x2e\xec\xcb\x78\xf2\xb8\x32\x2f\x9b\xfc\x80\xc6\x47\x3a\x79\x4e\xeb\xb4\x7f\x87\x6c\x21\x3c\xc0\xcf\x5a\xb3\x63\x94\x9e\xf3\x3d\xcc\x7c\xa1\x09\x92\xff\xa8\x36\xe9\x4c\xfc\x72\xc5\x1f\x9f\xbf\x44\xdb\xe7\xe2\x30\xa0\x6e\xba\x8d\xbc\xe7\x4e\xdd\xa6\x22\xac\xd8\xd2\xb6\x7a\x7d\xdb\x90\xb7\x81\x12\x01\xaf\xfc\x07\xde\xd1\xf4\x22\xc1\x26\x7a\x62\x46\x72\x25\x37\xe6\x84\x0c\x15\xc4\x35\x18\xe6\xd8\x1a\xf6\xf6\x10\x75\xb8\x27\x42\x65\x74\xdf\x14\xed\x9a\x34\xe3\x4e\x42\x88\xea\x3d\x12\x65\x23\x73\xd8\xe1\xf6\x4a\xd7\x3d\xcc\xfd\x8d\x4a\xd7\xfa\x3e\x76\x2a\x76\x76\x3a\xfa\x88\xa6\x15\x64\x62\xec\xf1\x3e\xfa\x5b\xf3\x86\x4b\xb1\xa3\x40\xf9\x47\x91\xe1\xca\xc0\xc8\x30\xd8\xf8\x97\xca\xd1\x47\x6d\x2d\x7e\xc4\xf5\x30\x75\x53\x13\x3a\x57\x9f\x98\x11\x13\x30\xcb\x62\xaa\x75\x62\x86\xd6\xee\xda\xf1\xbf\x8d\x53\x70\xe7\x53\x4a\x2d\x83\xc2\x6e\xde\xa8\xde\xd7\x47\x1c\x60\x93\x81\xeb\x21\x24\xc2\xcf\x9d\x51\x38\x4a\xa1\xdd\x50\x4b\xfd\xc2\x37\xd6\xa7\x05\x5d\x1d\x2b\x99\x27\x77\xe5\x7e\x1e\x77\x5b\xe9\x5c\xa2\xd8\xd7\x54\x26\xf3\x42\x61\xa0\x38\xf5\xed\xf6\xde\x4c\xb0\xd2\x05\xde\xb9\xf8\x84\x56\x2e\x59\x71\x00\x12\x5b\x00\x6f\xee\x05\xa2\x0b\x81\x79\x5b\xfe\xdb\xae\xa6\x89\x67\xc4\x35\x62\xf2\xb8\xae\x7f\x7f\x84\x5e\xa8\x27\xde\x22\xc5\x11\x6f\x68\xf2\x74\x84\x99\x44\x50\xbd\x0b\x87\x34\xc0\x66\x40\xdc\x16\x4c\xf9\xf3\x23\xc6\x67\xff\x59\x33\x8e\x5e\x42\x6b\xa4\xf0\xd7\x6e\xb9\x27\x21\x0d\x30\xdb\xca\xaf\x5e\xa9\x2f\x39\x21\x56\x24\xce\x48\x3d\xf9\x33\xdb\xe4\x69\x0e\x68\x33\x71\x1f\x2b\x9e\xff\xc4\x85\x22\x6d\xe2\x3a\x47\x88\x28\xf6\xf4\x35\xd0\x58\x2d\xf7\xe4\xd8\xe3\x52\xd1\x08\xb5\x7b\xdf\x3f\xf7\x1e\xff\x21\x93\xa7\x4d\x9a\x3e\xbd\x33\xfe\x07\x77\xdf\xa3\xfb\x42\x01\x8b\x55\x0c\xa4\x8d\x86\xfc\x1d\x33\x3b\xa6\x77\x42\x7e\x3f\xf6\x9a\x6e\xd2\x43\x5c\xb1\x6f\xac\x24\x52\xf5\x06\x37\x73\x07\xc0\xc3\xcf\xd7\x69\x1d\x05\xad\xd5\xb0\x09\xdf\x18\xb2\xff\xed\xdb\x07\x49\xdf\x5b\x27\xf9\xbe\xf4\xa9\xcc\x8e\x81\x6b\xea\x46\x27\x8b\xfc\x85\x37\x2d\x40\x05\x5e\x20\xc1\xe6\xa8\xae\x1e\xcc\x6d\x8a\xee\xa3\x13\x5f\x09\x78\xf8\x13\x56\xf1\x9c\x74\x2d\x77\x07\x56\x77\xe0\x7f\x78\x3b\xd5\xaa\x2e\x99\xa8\x09\xf7\xe7\xd9\x3b\xd2\x3e\xad\x41\x1a\x00\x38\x8a\x7e\x76\x56\x01\x55\x91\x06\xaf\x4a\x0a\xbb\xde\x97\xff\xb5\x92\x28\x22\x2f\xec\xc8\xa6\xd5\x2e\x4e\x91\x80\x7e\x42\xd6\x68\xf4\x98\xae\xc8\xce\x85\xa6\x44\xf4\xdc\xf8\xe8\xe0\x6c\x11\xcd\xbb\xc5\x57\x96\x65\x47\x33\xb5\x90\x33\xce\x0b\xff\x39\x41\xf0\x21\x2d\xdc\x84\x99\xea\x3b\xe3\xb2\x6f\x6b\x46\xc7\xac\xd9\x42\xc5\xf2\xcb\x77\xf6\xa2\x20\x69\x89\xdd\xf1\x8c\xdd\x6d\x06\x81\x4c\x82\x27\xf3\x23\x8e\xcb\xaa\x30\xf1\x2d\xe2\xc5\xdc\xd3\x63\x45\xe1\x62\x07\x16\x0d\x6b\x56\xa9\x1c\x7d\x67\x4b\x5a\xc8\x4e\x9b\x32\x1d\xda\xd5\xd7\xf9\x7b\x4c\x24\xc9\xfb\xa4\x5d\x52\x25\xae\xd2\xa2\xdf\x3c\xa6\x40\xc0\x19\x76\x20\x18\x45\xcb\xce\x0d\x52\xe6\xa6\x08\x62\x48\x34\x48\xbb\xd5\xb0\x50\xe5\x68\x9a\xe2\x8a\x51\xf0\x67\xa5\x85\x04\x76\xf5\x96\x9a\xe1\xef\x7d\x40\x99\x4a\xdb\x15\x0c\x96\xf0\xff\x31\xff\x32\xe5\xd4\xb9\x61\x6f\xbe\x17\xcf\x29\x3b\x0e\xd4\xe4\x74\xfe\xdc\xfd\x52\x8e\xb5\x86\x55\x3e\x5e\x64\x6c\x14\x4a\x6a\x36\x76\x60\x7e\xd9\x53\xf8\x41\x87\xae\xe4\xdd\xed\x31\x6c\xe2\x44\xf3\xb3\x70\x56\xcb\x51\xf0\x20\x45\xd1\xf8\x92\xe6\xf7\x66\x20\x9b\x54\x29\x73\x81\xff\x9d\x22\x2c\xef\xd4\xec\x9f\x0c\x52\x43\x0c\x07\x80\xd4\x82\x70\xdc\x6f\x52\x02\x78\x73\xdd\x54\x29\x70\xc9\x33\xe9\x7d\xaa\x61\x95\x1a\x53\xec\xe6\xad\xd9\x32\x8c\x98\x49\x15\x3f\xbb\x47\x9e\xcf\x06\x70\x2e\xca\x35\x49\x39\xe0\xdf\x58\xab\x39\x27\x03\x42\xaa\x5d\xaa\xbe\x78\xff\x1d\xe9\x23\xc4\xb6\x9a\x1d\x7b\x8a\x13\xac\x21\x22\x8f\x83\x46\x70\x5c\x21\xc6\x97\x91\xd8\x32\x56\x22\xb7\x05\x26\xe3\x20\xc9\x77\x87\x50\x28\x47\x19\x82\xdb\xd0\xf1\xe9\xcc\xc3\x57\xad\x74\x77\x59\xfc\x51\x10\x16\x97\x2d\x49\xdb\xf6\x91\x87\x87\x29\xb3\xe7\x80\xb0\x14\x56\xfc\xfa\x8d\xaa\x54\x8a\x1b\x72\x11\xda\x4b\xaa\x83\x44\xf0\x33\x31\x73\x04\xc5\x2a\xf7\xa5\xe3\xca\xd0\xd0\xe0\x2a\x14\x85\xdd\xab\xb3\xf9\x64\x46\xa2\x60\xf0\xc8\xbb\x8a\xab\x18\xa9\x59\x70\xa5\xb7\x0b\xd2\x85\x13\x1a\x56\xc9\xc4\x00\x1d\x8c\xff\xfb\x97\x56\xab\x56\x36\xc4\x4d\x10\xa3\x3d\xf9\x7d\xa3\xe4\x82\x00\x57\xab\x5c\x83\xdb\xe5\xee\xac\x3d\x39\x4b\xf2\x92\x3c\x00\x8a\x0e\xdf\x99\x2c\x43\x3c\xc1\x51\x2b\xe2\x17\xd2\xbf\x83\xea\x71\x10\x7f\xee\xb0\x46\x97\x8f\x43\x14\x88\x5e\x7e\x7a\x7c\x3a\x8f\x6c\xf9\x6d\xca\x20\xb9\xdf\x3f\x39\x50\x05\x0b\x00\xcf\x2d\x77\x85\x66\xb6\xc3\x8d\x13\xb8\x9a\xfa\x6d\x96\xf2\x52\x4d\x87\xba\xfc\xd2\xe4\x4f\xf6\x55\x50\x14\x8c\x38\x90\x04\x8f\x37\x46\xea\x97\xc1\x4e\xa8\x48\xf9\x3f\x4e\x4a\xc3\x8e\xd1\x41\x4b\xe5\xe8\x07\x1b\xb5\x15\x2c\x57\x43\x51\x4e\x6b\x61\xc7\x3e\xad\x52\xae\x98\xa1\x21\x27\xf5\x93\x97\x6b\x5c\x11\x0b\x05\xc2\xa7\xb3\x70\x4f\x7f\x5d\x3a\xaf\x25\xb1\x51\x37\xec\x95\xfa\xcb\x1e\xa3\xbe\x87\xeb\x41\x86\xb5\xfb\xee\x1c\x45\x87\x06\xd9\xc0\x39\x48\xb3\xd9\x86\x76\x40\x5f\x52\xe4\xfd\xfb\x06\x1e\xf0\x17\x23\x21\xd2\x96\x47\x1a\x86\x39\xae\x18\x12\xd8\xc4\x5b\x9a\x05\xb9\x2f\xac\xa7\xc4\x9e\xbc\x36\x4e\xb7\xac\xe0\xfa\x70\x98\xd3\xc0\x20\x31\xcf\xd4\x44\x05\x80\xa7\x68\xc3\xbe\x83\xa3\xfd\xe7\xaa\x76\x1c\xb8\x1a\xc4\x37\x75\xef\x69\x6d\x8e\x04\x29\x43\xa5\xbd\xe5\xaf\x5c\xa5\xd5\xfa\xd4\xad\x32\xea\x06\x8a\xe2\x7a\x4f\xee\xc5\x27\x14\xfc\x2e\xc3\xae\x61\x41\x06\x8e\x7e\x7a\x42\xd3\x71\xa3\xb0\xd7\xe3\x7d\xd1\x1f\xb4\x0e\xa4\x46\x41\x82\x2a\xe9\x40\x16\x77\xa5\xc7\x64\x26\xdf\xbe\x84\x7b\xe5\xb8\x79\x6c\x2d\xa3\xf1\x37\x70\xcd\xff\xc7\xa7\x4c\x00\xf7\x2f\x3d\x29\x27\x5c\x53\x3b\xa6\x97\x68\x28\x04\x71\x3f\xd9\x8f\xe7\xa3\xa5\x71\x3c\xaf\x63\xec\xf9\x24\x8d\x2a\x3f\x5a\xc5\x43\xec\xb5\x2c\xb0\xc2\x8c\x5b\x85\x71\x46\x32\xe4\x60\x0e\xea\x9e\xcd\xbe\x26\x54\x03\x47\x7e\xb0\xb2\x4a\x3e\xc3\x82\x79\x9a\x3b\x13\x0d\x12\x79\xf2\xd5\x47\x85\xdf\x60\x88\x58\x7c\x03\x78\xe9\x38\xc6\xd5\x09\x69\xa1\xa1\x2a\xdf\xce\xac\xf2\x83\x76\x83\x9d\xe4\x98\x4f\x3d\xab\xd5\x0f\x1e\x62\x29\x60\x2e\xb7\xe7\x90\x7c\x55\x15\xc0\x1d\x8b\x96\x78\x6e\x43\xf1\xb7\x4c\xb8\x29\xe5\xe8\xfe\xb5\x3c\x0a\x4d\xee\x14\x08\xc4\xe8\x9f\xe6\xeb\x8b\x65\x61\x27\x20\x0e\x73\xbf\xf3\x06\x27\x29\xcc\x0f\xed\x80\xd7\x03\x3d\x85\xa3\x79\x8d\x95\x51\xa1\xa1\x58\xc8\x44\xff\x7b\xb9\x9c\xe2\x19\xd8\xc6\x15\x46\x82\x56\xa9\x86\x9a\xf5\x04\x81\x35\xa3\x6f\x36\x36\x3b\x38\x10\xde\x39\x9f\x3b\xa3\x30\x8e\x94\xdc\x38\x69\xee\x30\x75\xee\xe7\x23\x62\x73\x11\xd5\xfc\xcb\x55\x59\xd9\x02\x15\x9d\x57\xf2\xba\x72\x7a\x03\xbb\xe9\x53\x5b\xb8\x5d\x7e\xc0\x1a\x26\x86\xee\x1a\xda\x93\x7f\x76\x1f\x7f\x0f\x40\x4e\x86\xea\xb3\x22\x2a\xae\x65\xa4\x86\x52\x63\x8d\x77\xc4\xe0\x0b\x05\x86\xc5\x57\x55\x4f\x3d\xaa\x2a\x45\xbb\x0d\xc2\x91\xcd\xd1\xdc\x05\xe3\xe4\x18\x8f\xd4\x2c\x2e\x7e\xdb\x66\x53\xd9\x93\x3f\x7f\x5a\x76\x99\x05\xd3\x16\xa1\xc0\x99\xdd\xec\x3d\xd7\x2d\x83\x3e\xf6\x7d\x04\xd5\xf7\x85\x03\x65\x00\xef\xc2\x4d\x61\x33\xf8\xaa\xa5\x00\xef\x93\x66\x31\x7f\x7e\x7f\xf9\x59\x6d\xc5\xfe\x2b\x7f\xa4\xd8\x4b\xf4\xe1\xe6\xef\xdc\x1a\xea\x5b\xcb\xb3\x4f\xb7\xc6\x60\xaa\xcb\x31\x07\x23\xe7\x64\xab\x15\x5c\xad\x12\x83\x60\x05\xe6\x39\x60\x8b\x56\x4d\x56\xab\x54\x8c\x06\x73\x6b\xb6\x68\x35\x55\x68\x8b\x49\x0f\x1f\x0d\xfd\xde\xcc\xee\x3e\xb3\xf8\xa7\xac\x86\x7a\xb7\x26\xcf\xce\x70\x5c\x7a\xa7\x70\xb9\xcf\xbb\xfd\x44\x05\x03\xb4\xe6\xc3\xe3\x79\xb9\x2c\x10\x11\xc5\xcd\x9a\xec\xd4\x94\xc9\xa0\x4f\x99\x0c\xc5\x97\xe9\xc6\x39\x6e\x17\x6d\xa5\x3e\x9a\xf9\xb9\xbb\x87\x69\xe1\x03\x8b\x89\xd8\x7b\xdd\xfc\x6c\xd5\x10\x43\x35\x5c\x2a\x47\xf7\xad\x68\xb3\xfe\x9d\x2c\x6e\xdf\xab\x8d\x4b\x95\x8c\x86\x7d\xbd\x50\x8e\xae\x1d\x95\xfd\x35\x0d\x82\x9b\xbc\x6b\xde\x7c\x82\x1f\x4e\x1b\x35\xab\xa1\x0d\xd7\xee\x47\xf3\x35\xfa\x89\x85\x5c\x17\xdb\xd2\xee\xc1\x55\x96\x09\xa1\x0f\xae\x54\xf1\xe1\xfd\xf8\x21\x7e\x7c\xae\xb5\x0d\x6a\x51\x1b\x14\x63\x7a\x0a\x6f\x4d\xc9\xce\x71\xaa\x8a\x8a\xae\xd2\x7c\xe5\xac\xd5\x8a\x61\x2b\xe6\xa3\x23\x88\x51\xef\x71\x5f\x32\x08\x2d\x30\xef\x4e\xaa\xa7\xc2\x5f\x14\x7f\x7f\x30\xfe\xe7\xb8\xa7\x75\xd7\x68\x57\x83\xd4\x90\x89\x7b\x59\x7b\x47\x5b\x02\x19\x46\x3c\x1a\xa0\x00\x36\xc9\xd1\xd3\x97\xcb\xbd\xe4\xe4\x59\x93\x81\x18\xb2\x96\x17\x7e\xc4\xc5\x6b\x8c\xd0\x4f\x35\x5e\x57\xdc\x21\xd7\x60\x3e\xf6\x50\xdc\x7b\xf9\x1c\x10\x7b\xd3\xbb\x69\x89\xeb\x12\xc5\xfa\x2f\x17\xbc\x3d\x42\x81\x0e\x71\xfb\x72\xd0\x9a\x2a\x47\xaf\xbc\x9f\xfe\x1b\x62\x4b\x4b\xea\xe8\x9f\x6d\x79\x89\x5d\xca\x63\x85\xa1\x28\x00\xeb\xfc\xfe\xb3\x6d\xf8\xa8\x4a\x25\x15\x75\x39\xb0\x53\xc1\xce\x87\x1c\x2d\xbb\xd5\x54\xca\x54\xe6\x62\x3f\x50\x3e\x71\xfe\xea\xc1\xfa\xda\x9f\x04\x04\x05\x89\x5c\xcd\x82\xf1\x0a\x08\xc4\xf3\x10\xc3\x42\x28\x61\x53\x74\x91\xda\x95\xf2\x7a\xb3\xdf\x28\x89\x40\xd3\x05\x49\xa3\xbf\x6c\x54\x94\x81\x10\xb3\x39\xdd\x9a\xed\xd4\xfc\xeb\xdb\x1d\xc0\xa2\x55\xf7\xc8\xe1\x98\x15\xd6\x32\xce\x6e\x85\xf3\x77\x5c\x28\x8e\x6b\x0d\x68\x7a\x3d\x85\xaf\xee\xd2\x97\xb4\x6e\x8a\x68\xed\x29\xdc\xb9\x51\xd3\x06\x36\x4c\xea\x22\xdb\xec\x45\xf2\x22\x3a\x79\x44\xd7\x23\x77\x03\xc4\xc1\x19\xb3\x5e\x96\xf7\xd2\xa6\xcc\x6c\xd7\xe1\x98\x7d\x4a\x8c\xe6\x41\x64\x94\x28\xf2\x91\xb9\xb5\x0b\xb2\x04\x9f\x3a\x75\x9c\x38\xa5\x71\xbd\x07\x7d\x3e\x7d\xf9\x72\x8d\x92\xed\x0b\xac\x47\xa2\xee\x3e\xed\x85\x41\xca\x35\xe2\xe7\xad\xa7\x30\x75\xac\x86\x3a\xae\x21\xd7\x44\x42\xf5\x3e\xce\x90\x9d\xaf\x24\xc3\x18\xea\x10\x2e\x41\x8b\x35\x1f\x7a\x86\x13\xc8\x49\xee\xa3\xd7\x5d\xaa\x92\xb4\xda\x7b\x90\xc2\x4f\xbb\x65\x4b\xd1\x24\x40\xd0\x07\x20\xd5\x4d\x0d\x5d\x88\xd3\x43\x06\xd4\xa4\x1d\x89\x43\xd3\xb4\xd7\xd2\x81\x1a\xb2\xda\xd0\x16\xef\x4d\xd0\xd5\x36\x5d\x46\x7c\x21\x0c\xff\xe4\x43\x22\x05\x5b\xa4\x5a\xe5\x54\x8e\x07\x8f\x4b\x07\xe3\x3a\xc8\x53\xfe\x67\x7f\x45\xe2\xc7\x4b\xa4\x23\x3e\xda\x21\x6f\x4b\x8b\xaf\xd5\x72\x7d\x97\xa4\xff\xb6\x0a\xe6\xdb\x4f\x9e\xd2\x92\x99\x4d\x1c\xb0\x24\x4b\xe7\xfa\x6b\xb6\xea\xd2\xf4\x2e\x41\x36\x17\x3e\xfa\xf6\x53\xea\x38\xd6\x34\xe3\x6e\x6a\xe3\xab\xbd\xa9\xdc\x73\x7d\xef\x71\x10\x10\xc1\x4d\x71\xba\x3a\xde\xf8\xfa\x71\x1d\x06\xcd\x39\x90\x26\x77\x64\xed\x53\xd4\x24\x1c\xe3\x43\x20\x30\x57\x87\x77\xab\xa0\x44\x86\x49\xcd\xe5\x72\x2b\x93\xe6\x64\x47\x1c\x35\x64\xdb\xa8\x66\x89\xc9\xbf\x08\x4f\xa7\x9e\x90\x81\xd8\x23\xd8\x80\x63\xb2\x41\x0a\x1b\x31\x04\x6b\xfb\xe5\xf9\xf4\xbf\x4c\x9e\x09\x5f\xe5\x9b\x8a\xd5\x4f\x17\x22\xa2\x9c\x8d\x0e\x8b\x46\x0a\x35\x11\xe3\x7a\x42\xe8\xc5\xe1\x4a\xb3\x81\x40\x9f\x8f\x9b\x72\x16\x3e\xbc\x27\x3b\xd4\x30\xa9\x53\x61\xb4\xe9\xd7\x89\x46\x55\x3d\xd1\x6f\x90\x82\x5c\xa1\x42\xa3\xec\xdf\x8e\x94\xb4\xd8\x16\xc4\x19\x8a\x03\x1d\x7a\xab\x17\xae\x1d\x2b\x3c\x0b\x42\xbb\x86\x84\xfb\xc7\xd2\x1b\xa2\xaf\x9d\xa7\x72\xa6\x60\x6d\x00\x47\xef\x8f\xef\x68\x93\x7f\xbf\x9e\x6c\x44\xab\xa7\x86\x66\x48\x4c\x09\x4b\x21\xff\xd1\x25\xaa\xea\x9d\x89\x51\x83\x86\x20\x9f\xf7\xa5\xad\xca\x08\x83\x86\xa0\x9b\xb6\xec\x05\xd9\xad\xf2\x85\x4e\x09\x9b\xdc\xeb\xa9\xd0\x7c\x54\xe7\xf7\x21\x13\xa7\x2a\x02\xb9\xdf\x0f\x18\xc3\xab\x55\xec\x85\x15\x9b\x18\xed\x63\xea\xfc\xf9\x7b\xe4\x51\x07\x6d\xac\x31\xd5\xec\x81\x68\x36\x9b\x1d\x28\x34\x49\x9c\x11\x0d\x61\xf2\xd5\x93\xfb\xd4\x7c\x4d\x4d\x30\x0c\x42\xf1\x38\xdb\x20\x9b\x73\xb3\x6d\x1c\x62\x35\xec\x06\xc4\x4d\x84\xd8\x21\x7a\xe5\x9e\xce\xb6\x59\x36\x6e\x60\xbb\xe3\x1a\x8b\x36\x71\x43\x38\x61\xe5\xfe\xd8\x21\xe7\xa0\x0c\xe4\x54\x44\x61\x72\x76\xae\x6e\x7d\x17\xd6\x2c\x58\x3e\x8a\xed\x64\xbd\x32\x48\xc1\x58\xf9\x06\x38\x6d\xe4\x3b\x86\x2a\x72\x1c\xa1\x5d\xe5\xaf\xe0\xbd\xc7\xc4\x24\xba\x49\x40\xe9\x3c\x3e\xea\xeb\xd7\x66\x79\xc1\x26\xc3\xb8\xee\x20\xd7\xcd\xa8\xbb\xe6\x06\x14\x15\x73\x3a\x46\x28\x34\x3c\xe5\xa8\xef\x8a\xb1\xca\xe7\x06\x93\x13\xca\xda\xe4\x06\x72\x3f\x39\xac\x2c\x00\x26\x4f\xee\x98\x11\x7f\xe7\x5f\x2c\xcd\x9e\x2e\x0b\xa7\xe8\xa0\xab\x0e\x8f\x50\xbf\x54\x08\xfc\x49\x11\xd4\x0e\x4e\xc9\x3e\xf3\xd9\xd3\xe1\x3a\x67\x5f\xcc\x6d\x9b\x95\x79\x37\x75\x12\x15\x5f\x7b\xad\x2c\x9a\x9a\xd8\x0f\x92\xa5\xd2\x74\x0d\x7a\x3b\x75\xd2\xcc\xd9\x9d\x09\x88\xfa\xde\x85\x4a\x88\x23\x0e\x3f\x9d\x67\x76\xca\xa2\xc3\x31\xb0\xcd\xa8\x02\x44\xca\xdf\xa5\x58\xa4\x23\xcc\xa8\x0f\xec\xad\xfc\xa4\x63\x32\x12\x84\x6e\xca\xb7\x8c\x3f\xc1\xb6\x95\x8a\x95\x3d\x32\x09\xb5\xb8\x49\x47\x61\xe6\x32\x75\x81\xe1\x80\xff\x63\xb9\xa7\x80\x45\x4a\xbc\x0d\x92\x5e\x9a\xf1\xd6\xeb\x18\x32\x97\xf8\x81\xec\x07\x3e\x3c\x6e\x98\x5a\x34\xc6\x67\x55\xc8\xab\x0e\x51\x54\x05\xaa\x88\xb0\xb8\xc9\x7d\x57\xdb\xb8\x0a\xf2\xad\x78\x47\x15\x6d\x66\xe6\x60\x56\x4b\x9d\xe9\xd1\xce\x5e\xf1\x14\x89\xfc\xf9\x84\x3e\x92\x4a\x03\x16\xb7\x25\xca\x08\x40\x59\x61\x7c\xd4\x5f\x65\x75\x19\xad\x6b\x20\x8c\xf6\xdf\xa1\x4d\xb3\xa9\x6d\xa7\x45\xcf\x9b\x9e\xe6\x91\x58\x63\x18\x00\x54\x29\x38\x73\xef\xcb\x5a\x33\xd3\xc0\xee\xc4\x92\x4b\x5d\x5c\x82\xf5\x72\x91\x87\xed\x6a\x42\x4f\xca\xfd\xfe\xac\x58\x40\xb8\x2e\x15\x33\xb1\x42\xf8\x8e\xf2\x32\x18\x71\x30\x48\x55\xde\xf8\x4a\x1a\x67\x88\xe3\xc4\x71\x66\x57\x9a\xed\xeb\xa8\xcd\x10\xe4\xe1\xb9\x1a\xc6\x2c\x44\xae\x20\x3e\x43\xbc\xf0\x95\xa0\x88\x6c\x3b\x8e\xc8\x71\x81\x07\x67\xf1\x3b\xa7\xb8\x6a\xdf\xad\x01\x72\xab\x10\xc9\xb5\x9b\x76\x76\x5c\x36\x51\xba\x94\x25\x13\xaa\x62\x6e\x7e\x3a\x00\x72\xb9\xd0\xf1\xc6\x3e\x82\x60\x08\x12\xfe\x20\x42\xb4\x35\x1b\xac\x6a\x98\x43\xf9\x05\xcb\x01\x42\xef\x0b\x45\xa5\x89\x8a\x43\x55\xcd\x82\x9a\xb9\xf0\xef\xa3\x75\x04\x7b\x0d\xb9\xdd\x88\x33\x99\xba\x37\x8c\x52\xfa\x00\x17\x07\x16\xb6\x79\xbb\x07\x45\xd4\xa1\xdd\xda\x56\x35\xf4\x6d\xe2\xf0\x5a\xf4\xf6\xf9\x57\x68\x41\xb0\xd9\x76\xe7\xa3\x95\x47\x06\xaa\x11\x0a\x30\x52\xb9\x83\x27\xb2\x1d\x9c\x5b\xe9\x95\x69\x59\xf4\xe7\x6b\x36\x8d\x88\x35\x89\xaf\xda\xad\xf4\xe4\xe8\x34\x8d\x18\x64\x20\x5b\x18\x00\x3c\xbc\x5d\x11\x69\xc8\x60\xa7\xb6\x3c\x33\x56\xab\x0d\x99\x49\x90\xc1\x69\x5e\xd8\x4c\x76\xca\xf3\x1e\xc9\x16\xed\x1e\x72\x2d\xee\x46\xd1\x1e\xdc\x8a\x57\x8d\x14\x0b\xf6\x20\x00\xdb\xcb\x38\x4f\xfc\xfa\xc0\x20\x39\xb4\x4c\x90\x89\x7f\x5b\xc7\x4b\x47\xc1\x71\x29\x95\xa3\xa1\x6e\xda\xa4\x59\x48\xb5\x3c\xd9\xb2\x70\xa4\x42\x16\x33\x4d\xd5\xf6\x24\x77\xf4\x9c\x6e\xff\x1a\xd7\x19\x98\x9b\x2a\xe7\xc7\xcc\xbf\x58\x29\x84\x3c\x94\xe1\x2b\x15\xc7\xbc\xa1\x92\xa3\x54\xa4\x5b\xae\xff\x71\x19\x73\x7c\x9b\xc0\xd9\x1a\xb1\x94\x57\x28\x1e\x62\x89\x10\x3e\x74\xd2\xf4\x70\x7f\x71\x52\x43\xee\x32\xbc\x6a\x41\xf6\x33\xb5\x28\xab\x4f\x9c\x93\x28\xfd\x2f\xbe\x7a\x88\x88\xb2\x71\x5f\x6b\xdb\x98\x6b\x3e\xe6\x2f\x3a\xa5\x4c\x13\xe9\x9a\x54\xc6\x77\xd3\x7c\x2d\xb8\x60\x96\x2a\x3b\xe5\x86\x1d\x1a\x90\x26\x66\x04\xb3\xb2\x62\x50\xd4\x07\x2f\xb4\x22\xa7\x9c\xd1\xcf\x35\x44\x65\x05\x93\x2e\x30\xe8\x48\x1c\xb9\x0a\xb3\x16\x8e\x52\x4f\xab\x4f\x5d\xcc\x4a\xb4\x5a\x6a\x82\xce\x50\xfe\x53\x96\xba\xaf\xc5\x76\x00\x85\x7f\xa1\xc3\x56\x74\xe9\x18\xf5\x08\xd7\xd3\xfa\x59\x7f\x49\x04\x71\x08\x28\x77\xe5\x4e\x5c\x9e\xbd\x4f\x36\xe8\xde\xf3\xf9\xcc\xe9\x8a\xda\xf9\xf3\x69\x19\x7f\x0e\xdf\xcd\xab\xd5\x04\x31\x70\x15\xa6\x26\x8f\x65\x4f\xa7\x41\x61\xe6\x4e\x7b\x53\x65\xcd\xdf\x7b\x54\xee\x7c\x5c\x28\x6e\xbe\xd2\x75\x49\xfa\xeb\xea\x88\x79\xb4\x81\x03\x39\x3e\x89\x5e\xd8\xab\xcd\x6c\x38\xb1\x3b\xd9\xbf\xe4\x7e\x7f\x6c\xa0\x92\x1a\x03\x3e\xbc\xb8\xbf\xf3\x2a\xb9\xb5\x82\x90\x6d\x63\xe4\xf6\x22\x4f\x94\xdb\xd4\x21\xbf\x2c\x94\x34\x69\xcf\x31\xf7\x5d\xb9\x4c\x69\xe2\x76\x39\xfa\xdc\xd9\x0d\x19\xf2\x8c\x11\x02\x45\x19\x0e\xc0\xe4\x7e\xf2\x91\x77\x76\xc0\x36\xba\xf0\xe5\xc3\x32\x2e\xd6\xa9\xc3\x0d\x9f\x4a\xe5\xe8\x17\x8a\x1d\x72\x25\xa4\x62\xef\x76\xc7\x1b\x8a\x7b\x24\x0a\x7d\xac\x8a\x68\xd9\xdb\x2e\xeb\x85\xb6\x93\x6d\x47\x97\x88\x49\xba\x8d\x3c\x3e\x04\x2d\xdc\xa1\x28\x6b\xb9\x94\x31\x02\xb1\xa5\x4b\xdb\xcf\x37\x61\xf5\x29\xb0\x16\x33\x1e\xe3\xab\x84\xf2\xb2\xe5\x7a\x9e\xaa\x2f\xe0\x28\xd1\x8c\xbc\x25\x68\x5b\x6a\x7d\x95\x61\x31\x70\xe2\xca\xb6\x2c\x1b\xd7\xc8\x61\x49\xa5\x5d\x35\xea\xcc\x06\xcd\x2e\x00\x19\xf1\x85\x47\x89\x6b\xf9\xf1\xf3\x14\x4d\x1c\x3b\xac\x64\x04\xc6\xf3\xe7\xb2\x7d\x93\x4f\xdd\x56\xaf\x04\xad\x6d\x2f\xca\x82\xcf\x46\xae\x59\x12\x9d\xd3\x23\x8b\x94\x66\x04\x7b\xb0\x5c\x5a\xb4\x95\x0f\xeb\xae\x63\xb4\x6e\x29\xc5\x6f\xb4\xbf\xaa\xf4\x7e\xf0\xa6\x9d\x07\x14\x9a\x95\x57\x2a\x47\x5f\x3e\x3b\x40\x74\x4f\x06\x17\x34\x8b\xd6\x8d\xbe\x44\x7b\xea\xa6\x8b\x7d\x13\x71\x36\x5b\x34\x4d\x6b\xad\x6c\x44\x12\xee\xcb\x44\xe1\xc8\xdf\x24\x2e\x76\x50\x5d\xc8\x7d\xfe\x1f\x85\xad\x94\x15\xc6\x7f\x30\x9b\xba\x42\x97\x83\x6f\x14\x0b\xb8\xe2\xfd\x53\xd4\x0d\x77\x8d\x11\x70\x51\x8c\x5e\x5f\x9c\xee\xe9\x0d\xe2\xab\x1a\xae\xc7\x24\xd2\x7f\x66\x69\x16\x08\x9a\x4c\x13\x49\xa7\x1a\x60\xd6\x71\xcd\x42\x08\x32\x7f\xd0\xea\x66\x50\xb4\x4f\xb0\x1d\xb3\x9e\x57\x10\xbf\x36\x72\x71\x9a\xeb\x7f\x78\xa3\x7c\x7c\x00\xc0\x99\xfa\x92\x22\xd2\x1b\xd6\x6a\xdc\xc0\x37\xfe\x0d\xaf\x3c\xad\x3b\x29\x82\x61\x33\xa1\x89\xf7\xcb\xfc\x47\x2f\x94\x0a\x1e\x50\xa4\x0d\x7a\x44\xe6\xa3\x64\xa4\x97\x28\xee\x46\x5b\x76\xea\x3b\x2f\x96\xd2\x7c\x92\xbc\xf4\x8d\x6a\x46\x59\x55\x61\xd1\x14\x0e\x8f\xe1\xbb\xa2\x25\x24\xa3\x85\x7f\xf1\xd5\x6d\xf6\xf6\xf0\x4b\x13\x0d\x99\x27\x0e\xa7\x0f\xba\x89\x5a\xca\x83\xa6\xda\xa6\x34\x2e\x36\x43\xd7\x80\x30\x93\x58\x53\x9e\xb9\x87\xa7\x3e\x3e\x94\x2a\x47\xb7\x6d\xd3\xbc\xe1\x28\xd0\x77\xcd\x4c\xb1\xe2\xba\x09\xd4\x21\x6b\x17\x5f\xef\x2b\x60\x24\x61\x5c\x5d\xc0\x75\x1e\xb7\x55\xf3\xe3\xe4\x72\x77\x9c\xef\x16\x27\xd3\x11\x0d\x45\x4a\x07\x23\xfe\xca\x06\x6f\x1b\xa1\x67\xc0\xc4\xfd\x2d\xbf\xf5\xe9\x6c\xbe\xf0\xb1\x11\x82\x9b\x45\x2f\x73\xec\xab\x9f\xd1\xd4\x9f\x69\x28\xda\x95\x68\xcd\x33\x3a\xbd\xf7\xd6\xa5\xd1\xca\x25\xfa\xa0\x88\x38\x0a\x37\x6f\xe9\x0a\x6d\xe6\xc3\x48\x8d\x6f\x34\xd4\xd8\xf4\xf7\xf5\x23\x94\xd8\xdb\x2a\x79\x98\xc1\x5e\x21\x7e\x1c\xb9\x91\xf2\xdb\x4e\x49\x54\x4c\x72\xd5\x4d\x4a\x7f\x86\x41\x69\x97\xeb\xca\x3c\xf7\xb0\x0e\xae\x24\x30\x11\x4f\x36\x85\x8f\x5e\x21\xc7\xa8\xa4\x82\x59\x40\x70\xbb\x68\xc4\xe0\x25\xca\x64\x91\xb2\x3a\x0d\x39\x15\x9e\x6d\x13\x23\xd6\x2a\x26\xd5\x0c\x3d\x2a\xff\xbb\x59\x29\xc5\xc3\x86\x81\x37\xef\x1d\xde\xd7\x26\x89\x0e\x17\xfa\x87\xda\xea\x23\xfd\x86\xa8\xdc\x62\x5f\x10\x29\xde\x7e\x2c\x9b\x1f\x6a\xc8\xa9\xa4\x1b\x93\xe2\x05\xe7\xe4\x47\xab\x30\xe4\x9a\x02\x7c\x74\xf0\xf1\x11\x5a\x4d\x68\x50\x47\x4c\xf9\x9e\xdd\xa5\x99\x1a\xd5\xb0\x6b\x10\xc9\x94\x2b\x6c\x30\x79\x6a\xb9\xee\x86\x65\x4b\x6e\xbe\x41\x79\x31\xbf\x9c\xa0\x08\x74\xa4\xbc\x84\xdc\xf7\x36\x72\x23\xb0\x6b\x7d\xbf\x5d\xa5\x27\xbf\x66\xa5\x60\x2d\x64\x06\xff\x33\x07\xab\xba\x51\x00\x3f\x80\x6a\xee\x85\x7b\xa0\xaf\xb3\xb1\x5b\x9a\x9a\x94\x8b\x2b\x87\xca\xb7\x4b\x0d\x23\xf4\x92\x86\x6f\x87\xd0\x25\x5e\x81\x3a\x92\xdb\xb0\xda\xe6\x82\x19\xd7\x3a\x98\x91\x00\xb7\x9b\x72\xe7\xae\x7c\x51\xc3\x87\xb8\xb4\x59\xa1\x71\xe1\x9f\x8c\x54\x73\x3d\x57\x0f\xd7\x9e\x5e\x22\x84\x34\xac\xfb\x62\xa5\x30\xe4\x2c\x14\x9c\x22\xb0\xa7\x1e\x51\xae\x22\x62\xdc\xff\x35\x77\xdd\x11\x6d\x15\x6c\x83\x19\x3c\x27\x53\x6d\x98\x2b\x22\x01\x01\x97\x40\x98\x4b\xc7\x5f\xed\xeb\xc7\xe5\xa3\x36\xa9\x99\x08\x5f\x5e\xf7\x50\xf6\x34\xd8\xe1\x9a\x90\x09\x58\x69\xf4\xcd\x37\xda\xe6\x0b\x30\x09\x12\x50\xf8\x62\xee\x9c\xfc\xf0\x75\x62\xd4\x79\x3d\x26\xd2\xe8\xd9\xd3\xd9\xef\xec\x61\x5c\x17\xe3\x82\x49\x9b\x95\x8e\x9f\x32\xc4\x19\xe1\x7d\x34\x5e\x03\xa8\xe8\xf1\x1d\xe9\x87\xee\xd1\xe6\xf8\xc8\x48\x96\x8f\xdf\x92\x8a\xf8\x0c\x93\x52\x39\xfa\xbc\xad\x1b\x3f\x60\x5f\x64\xc6\x68\xcf\x7c\x65\x19\x6f\x04\xa4\xc1\xc7\x5a\x85\x93\x19\x06\xb9\x81\xf9\xd1\x19\xd2\x4f\xc7\xb5\xc8\xd0\x91\x0c\x46\x73\xa3\xd3\x50\x4f\x33\x04\xcc\xc6\x04\x0d\xf2\x61\x13\x37\x48\x4a\xe8\x24\x6c\x5f\x30\x5e\xdb\x0d\x23\x58\x03\xc8\x04\x54\x08\xb2\x7f\xa1\x05\x8a\x53\x4a\xe0\xff\xe8\x4e\x41\x13\x32\x6b\xa0\x6c\x94\xaf\x78\x2a\x26\xbc\x4a\x99\x13\x5f\xfa\x1f\x0f\x4f\x54\x80\x2b\x34\xe4\xbc\xf9\x9e\xdc\x19\x31\x0e\xa8\x84\xcc\xc4\x70\x4e\xf7\x2f\xcc\x16\x5a\x55\x44\x98\x20\xb2\x78\x19\xf4\xfc\xb5\xe7\x0d\x8a\xff\x7c\xc9\x92\xa5\xb7\x2a\x5f\xe7\x13\xef\x6a\x63\x19\x06\x64\x7a\x51\x9a\x80\xd3\xff\x8e\xb1\x5a\x38\xef\x75\xd0\xfa\xb3\x0e\x85\xba\xc6\xa7\xca\x30\xd1\xfc\xfc\x22\x5d\x1a\xcc\xc6\xa9\x72\x5b\x38\x25\xfb\xe1\xdd\x8e\x4a\x07\xea\xe8\x4d\x3b\x70\x13\xbf\xe5\xb7\x10\xdf\x27\x5c\x0d\x7d\xf0\x75\x9a\xd7\x43\x93\x4e\x64\x15\xe8\xcd\xb6\x8c\xd7\x22\xbe\xcb\xed\x89\x13\xb4\x73\xee\x3c\xfe\x14\x39\x97\x09\x20\x5d\x8b\xe5\x38\xd3\x27\x6b\xb8\xd8\x9e\xa8\x85\xd6\xbf\xa3\x9b\x2d\x09\x89\x36\xf8\x0a\x9f\x1c\xa7\x4f\x3e\x18\xea\x46\x15\xd8\xbe\x28\x88\xc4\xa7\xb2\x2b\x72\x52\x15\xc7\xfb\xa0\x2e\xc9\x86\x6a\xa8\x9b\xa4\xc8\xff\x42\xd7\x6b\xb2\x8b\xa9\x54\xae\x86\xe4\x7d\x60\x6e\x5a\xb7\x1b\xed\x06\x3a\xa3\xfa\x4b\x3b\x90\xe9\xb3\x4b\xe5\xe8\x0b\x3b\xb5\xde\x10\xb9\xc8\x4c\xe0\x0a\xfa\xe4\xa2\xef\x03\x29\x89\xce\xc1\xdd\x99\xfd\xcf\x31\xcd\xde\x17\xdb\x55\xc4\x45\xde\x94\x69\x42\x61\xd1\x19\x45\xe4\x10\x31\x27\x80\x59\xc0\x9e\x49\xaa\x0e\x80\x61\x21\x1e\x16\x0f\x4d\x90\x72\xdc\x95\xa0\xd6\x76\xa8\xee\x5e\xac\x95\x30\x98\x19\x02\x1e\x5b\xf8\x4e\x5f\x7e\x3f\x3c\x12\x18\x56\x02\xea\xf9\xcf\xc3\xf2\xf7\x18\xa8\x42\x84\x81\xc5\xc4\x55\x97\x69\x4f\x99\x05\x24\x3b\x3f\x2f\x4e\x7a\x32\x25\x9c\xb1\x52\xfc\x98\x8f\x2c\xd1\x5c\x3a\x71\x03\xdb\xd4\x13\x57\x03\xb2\xff\xf7\xf6\xe9\x9c\x05\xcc\x61\x89\x71\x7f\x71\xea\x15\xf9\xea\x26\xcf\x9e\x3a\x15\xf0\x1c\xcf\x6b\x13\x2a\x1c\x24\x87\xb2\x67\xc1\xe0\xcc\x50\x91\x86\xf0\xb2\xef\x7a\x2a\x51\x18\x4b\x60\x7f\x57\xcd\x92\x5c\x0c\xd5\xf7\xe6\xcf\xcf\xf2\x07\xc2\x9d\x5c\xb9\xf8\x43\xee\x52\x8d\x05\x33\x79\x4a\xc7\xf4\xc9\x1d\x62\xa1\xfa\xce\xe6\x11\xca\x5e\xce\xb6\x69\x33\x55\x7e\xc9\xbd\x72\xb5\x74\x7a\x70\x70\xc0\xa8\x11\x7f\x28\x9d\xd9\xbf\x78\xf4\x08\x65\xeb\x65\x58\x71\xba\xe5\x8e\x1b\x3d\xb9\x03\x8f\x2a\x8b\x7b\x27\xee\x68\x4d\xe4\x94\xca\xd1\x21\x81\xc0\xaf\x84\xac\x66\x23\x58\x71\xbc\xfc\x34\xff\x92\xb0\x41\x82\x27\xdb\xbc\x4e\x2f\x22\x83\x38\x83\x08\x00\xce\xef\xfa\x4a\xa5\x0e\x70\xb1\xe4\xdf\x37\x4d\x64\x9f\x56\xb8\xe2\xc4\x71\x42\x97\x27\x8d\x57\x07\x4b\x5a\xb2\x8a\x7a\x2e\x5e\x34\x2a\xfb\xdb\xa6\x72\x68\x9a\x00\xeb\x7e\xef\xbd\xfe\x52\x5d\x2d\xce\x3d\x5b\xe5\x11\xc7\x88\xf1\xaa\x25\xff\xe0\xa9\xec\x19\x73\xb1\x51\xe7\x81\x3f\xe5\xa1\xfe\xcf\xda\x21\x2a\xd2\x60\xd1\xa2\x5b\x27\x96\x4b\xe5\x68\xc8\x2b\xda\x1e\x2d\x24\xa2\x7d\xe2\x6a\x48\x7b\x15\x55\x0d\x00\xd5\xff\xe1\x4d\x79\xb2\x9a\x16\xb7\xdb\xbf\x73\xa5\xce\x71\x45\x75\x2c\xbc\x6f\xd6\x5f\x9e\xe1\x80\xcb\x54\xf4\x9c\xab\x0f\x76\x1c\xcf\xc6\x41\xa2\x8a\x5e\x78\x90\x0d\x49\xe7\xe6\xea\x5d\x19\xbf\x55\x23\xdc\xb5\x2a\x04\x71\x7c\x18\x1c\x9e\x73\x9b\xd3\x0c\x3f\x65\xe6\x0c\x28\x38\xf3\xda\x8a\x8d\xb8\xa6\x36\x8f\xc8\x9d\xb7\x17\x32\xd4\xf5\x0b\xd4\x11\xd0\xfe\x57\x54\xab\x15\x13\x1b\x24\x11\xc9\xd9\x35\x50\xc3\x9b\xdb\x61\x7c\x37\x2d\x64\x67\x19\xfd\xf9\x7f\x1d\xdb\xe6\xb3\x80\x9c\x74\xed\xf0\xd9\xbd\xaa\xc9\x8c\x9b\x40\x38\x0b\xfd\xee\x50\x50\x31\xd8\xa9\x00\xa3\xf7\xfb\x3b\xb2\xf7\x97\xda\x26\x66\x7c\x01\x3e\xf3\x40\xf6\xe3\xd8\xf1\x8d\x99\x68\xb4\xa9\xb5\xe5\x97\xcf\x93\xad\x34\x18\xad\x22\x1b\x0c\xb5\x7a\x72\x85\x27\xb2\x59\xa2\x4a\x5c\xbe\x5d\xcf\xdd\xa7\xa1\xd5\x26\x97\xa6\x4c\x5c\xc2\xb5\x1a\x8b\x73\x2d\x9d\x8b\x1f\x30\xec\x48\xc5\xd2\xda\x79\xd9\x47\xcf\x68\x85\xb8\x59\xce\xe7\x6b\x4f\xe8\xf3\x22\xd4\x40\x36\x09\x32\x34\xe5\x9c\xa9\x29\x13\x20\xc2\xc0\xab\x4f\x04\xe4\x4f\xec\x12\x30\x18\x8c\x45\xb5\x72\xe1\x6e\xc5\xa7\x87\xc1\x57\x15\x26\x46\x30\x61\xbd\xf8\x95\x91\xea\x08\xad\x4a\x82\x52\x80\xea\xa2\xca\xfd\xf2\x0e\x8e\x84\x03\xed\xde\x72\x74\xcd\x1a\x45\xba\x72\xf6\x8c\x19\x25\x7e\xac\xbe\x30\x5c\x7f\xb5\xd4\xa8\xa7\xaf\x76\xdf\xac\xc1\x22\x7e\xc5\x25\xab\x6b\x86\x0e\xc7\x8d\x3e\x33\x46\x6f\x8c\x95\x91\x1b\xfc\xcb\x07\x1e\x6f\xe3\xee\x57\xab\x09\xd3\xbc\xf0\x91\xc1\x5a\x14\x47\x84\xd7\xf2\xd1\xcc\xf7\x75\xf5\x29\xa7\x92\x2c\xf7\xa2\x11\x8f\xcb\x29\xab\x8d\x9a\x2d\xcc\x7c\xb5\x42\xcb\xff\xeb\x1c\xc5\x48\x93\xdb\x4b\xe7\x1b\x6b\x64\x10\xc5\x6b\x8c\x90\x89\xd3\x5f\xf8\xa9\x58\x87\x5d\x87\x82\x00\x7c\x51\x9f\x98\x70\xb1\xf2\xd3\x43\x86\x5d\xc5\x9f\xa0\x48\x99\x56\x80\x24\x56\xd2\xf9\x7f\x3a\xc3\x1f\xf4\x35\xbe\x05\xc7\xc9\x18\x9d\x86\x1b\x1f\x14\xb5\xfe\x6b\xfc\x50\x51\xf6\x9b\x98\xb9\xa4\x3b\x11\x2a\x2b\x74\x8c\xd6\x16\x76\xa0\xca\x21\xbc\x72\xa2\xff\x5e\x2a\x8e\x83\x85\x40\x0f\x38\xfa\xc7\xaa\x56\x6a\xa6\x46\xba\x09\x32\xfc\xcb\x76\x5a\xd8\x78\xbd\x08\xf1\x85\xeb\x46\x66\x76\xc3\x99\x87\x77\xa7\x42\x19\x62\x38\x08\x59\xfc\xc4\x7f\xa2\x49\xa6\xa2\x30\xe0\x1f\x11\x60\x29\xbf\x7e\x52\x26\x2f\x0b\x75\x63\x95\x42\xf2\xc1\x59\x9a\xdd\x06\x4f\x6a\x85\xd1\x3b\x94\x77\x14\xd6\x38\x3b\x93\x5d\xac\x0e\x75\x01\x76\x94\xc6\xfc\x60\x6e\xb6\xfa\x0a\xdd\xd4\xaa\xbb\x8d\x19\x93\x7f\xeb\x9e\x0b\x55\x4f\x95\x72\x4f\xee\x81\xb3\x23\x95\xbe\x0b\x5e\x80\x9f\x2a\xc5\x8d\xe8\x37\x29\x1b\x01\x19\x45\xa6\x81\x7c\x40\x06\xb5\x0b\x35\xf7\x14\xae\xd4\x4c\xe3\x2b\x61\xb5\x8a\x6c\x2a\x24\xd9\x3f\xf5\xe0\x25\xca\xc4\x3e\xe8\x2e\x19\x88\xc1\x5e\x43\xdc\xd7\xab\x9e\x54\xc4\xe0\x0c\x0b\x9b\x21\xc7\x29\xe6\xf3\x0b\x25\xa4\xb1\xd6\x02\x0b\x40\xb3\xbf\x42\x89\x74\x0d\x18\xc4\xac\x9a\x90\xfd\xed\xd4\x23\x6e\x9c\xe7\x00\xb2\x9b\xdf\xf7\xb0\x64\x64\xb9\x21\x5c\x9b\xb6\xcf\xff\xd8\x1d\x3a\xf0\x03\x56\x90\x1c\xeb\xa9\x09\x1e\x8c\xd3\x96\xdf\x71\xd3\x9a\x6c\xd9\x3f\x77\xe0\x22\xa5\x4c\x74\xe2\x42\x7c\xf9\x0e\x3e\xa2\x68\xe0\x1a\x06\x97\xfd\x38\xea\x1c\x5d\xaa\xb8\xa3\x20\xdb\x86\x6d\x41\x4f\x71\xe3\x1b\x23\xf4\x77\x9a\x5c\xa7\xdc\x70\x41\xe7\xaf\x10\x70\x24\x85\xdc\x3c\xf8\x84\xb2\xd3\x62\x18\xd5\x51\x13\xc5\xf5\xc8\x32\xad\x85\xa9\x22\x9b\x0b\xd5\x45\x7b\x2b\x72\x28\x95\x6a\xbd\xb6\x0d\xa5\x26\x3d\x32\x56\xfb\xf7\x0c\x59\xc8\xd5\x3d\x22\xbe\xf3\x5e\x9b\x64\x0c\x8b\xeb\x4e\xfe\xd6\xb7\xf5\x51\xac\x57\x11\xa8\xd8\x46\xff\x38\xf7\x32\x25\x27\x22\x90\x6f\xd0\x3b\x05\x74\x52\x93\xab\x27\x8c\x06\x75\xe2\x66\x7e\x79\x34\x6f\x5f\x1a\x4d\x40\xcd\x3b\x2a\x34\xb4\x92\xde\x8a\x1b\x68\x9e\x41\x1e\x1b\xa3\x21\x41\x79\x69\xd7\x12\x46\xdb\x8f\x1d\xbf\x24\x5b\x3e\x4d\x94\x01\x00\xd4\x0d\x5f\xd3\x35\x50\xf8\xd6\x4e\xfc\xf4\x59\xfd\x65\x25\x61\x30\x12\x07\x9f\x6e\xf8\x48\xfb\xde\x48\x6f\xdd\xd4\x49\x53\xe2\xbf\xba\x59\x53\x43\xf1\x50\x9d\xf8\x01\x82\xa3\x2a\x4a\x9c\x6f\x6d\xd2\xa8\xc2\x16\x76\x38\xe8\xd9\x9b\xa5\xbb\xfb\xfb\x46\xc8\x05\x6c\x12\x3b\xce\x1b\xe6\x5d\xaa\xb5\x64\x81\x85\x98\x4f\xe4\xfc\x6d\xdf\xae\xc1\x9a\x1f\x7e\x5c\x29\xe6\xe6\x0d\x15\x51\xc6\x2d\x61\x80\x73\xb8\x20\x0c\x58\xf0\x36\x5d\xaa\x28\x74\x04\xd8\x06\x24\x66\xc0\x42\x23\x09\xd6\xee\x78\x19\x1f\x0d\x0b\x11\xae\xaa\x3f\xba\xa8\x94\xb2\x6b\x42\x53\x58\x9e\x1f\xd4\xbc\x19\x6c\x1a\xb8\xc4\xa8\xab\x4a\xfd\xeb\x2d\x39\xa0\xb5\x40\xc3\x45\x8e\x1a\x7e\x37\x50\x77\xf0\xe1\x02\x95\x49\xdf\x5f\xb8\x51\x81\xcc\xa0\x6a\x15\x11\xe8\x02\x6e\x7e\x4f\xd3\x22\x06\xe3\x26\x50\xdd\x7f\xbf\x0f\x4f\x52\xf1\x27\x89\x7f\xc0\x95\xeb\x35\x97\x58\xd6\x42\xae\x56\x4e\x3e\xb7\xf1\x7c\xf8\x37\xb0\x10\xca\xfd\x6e\xa1\x6a\x36\x69\x19\x8c\x72\x93\xe1\xe3\xf3\xd3\x97\x0f\x13\x95\x68\xfc\x6a\x89\x82\x68\x21\x3f\xb4\x10\x53\x05\x1d\xef\xdd\xaf\xb0\x49\x1d\xec\x02\x82\x30\xf7\xd5\x6d\x7a\x09\xcf\x37\x49\xe2\x6d\x5e\xf4\x60\xf6\x06\x36\x88\x4f\x2a\xb6\x98\x87\x15\xae\x58\xa8\x9d\x36\x8b\xd8\xc8\x0d\x2c\x46\x3d\xa1\x16\x5f\xec\x1c\x20\x2f\x69\xd5\xa6\x40\x9d\xdd\x38\xa5\x6d\x6a\xd6\xc4\x26\xa8\x54\x46\xef\x5c\x3d\x4c\x25\xf3\xa7\x3a\x15\xd1\x76\x4d\x3e\xca\xc3\x8c\x50\x33\x89\x8b\x7b\x96\x2a\x08\x0d\x1b\x30\xd5\xd1\x4e\x73\x52\xef\x09\x8c\x08\x81\x33\x3d\x30\x7c\x68\x8c\x2c\x9c\x51\x95\x86\x00\xac\x5a\xb2\x4a\xd1\x9f\x81\xda\xa7\x2d\x62\xff\xcb\xcb\x5a\x9d\x1a\xf7\xef\x59\x9b\xcd\x7c\xfd\x99\xe1\x4a\x96\x37\x6c\xe4\xa4\xc9\xf0\x93\x9c\x19\x56\xba\x39\xa0\x35\xd2\x36\x40\xea\x9f\xa0\x87\x68\x08\xe8\xa1\xe8\x95\xd7\x75\xce\x51\x15\xbb\x62\xfe\x0b\xef\x6c\xfb\xd2\x31\xda\xf7\x36\x31\x13\x24\x13\xd1\xfe\xff\x7a\x9c\xe2\x3e\xa1\x8e\xf8\x4e\x8c\xd4\xc6\xbd\xc0\x4c\x17\x60\xdd\x5f\x4f\xb8\x44\xfb\xc1\x0e\x62\xf5\x14\x69\x92\xff\xcc\xfb\x09\x65\x7a\xe6\xe4\xf8\xa5\x9c\xdb\x2d\x44\xeb\x3c\x6c\x10\x04\x2c\x8a\xdc\xe2\xe1\xba\xc7\x5e\x80\x6c\xe1\x2c\xb0\xbb\xa2\x49\x02\x63\x16\xfa\xc8\xe6\x62\x34\x62\xa6\xf5\xde\x51\x59\x99\xfb\x94\x61\xd7\x57\x55\x1d\xf2\x5d\xb6\x2a\x66\x09\xa2\x7d\xd1\xdd\x1b\x04\x97\x83\xd6\x88\x01\x66\x97\xb9\x1f\x6e\x54\x5c\xcf\x49\xcd\x8a\xb3\x9a\xa8\x15\x3e\xb2\x20\x23\x26\xc4\x1d\xaf\x61\xe8\xb0\x65\x8c\xb0\x6e\x8f\x9f\x09\xcc\x30\x0b\x67\xfa\x48\xec\xb5\xd1\xbe\x3d\xe8\x78\x3e\xfb\x65\x5b\x18\x31\xbe\x7a\x8b\x46\x2c\x14\x5b\x5d\xd7\x0f\x39\xbb\xec\xe1\x83\x17\x29\xda\x28\x34\xfe\xe4\x73\xfb\x2a\xab\x64\x64\xd4\xa1\x68\xbb\x63\x9a\xe4\x8c\xb2\xb0\x54\x8e\x6e\x78\x4a\xd9\xf0\x60\x54\x77\xb1\x0f\x57\xfb\x0f\x27\xf5\x60\x06\x6e\xeb\x61\x6a\xe0\xf6\xda\xe3\x1a\x1f\xc2\xe1\x2e\x35\xe2\x4e\xfd\x76\x56\xf6\x8f\xa7\x77\x96\x9a\x28\x48\x47\x48\x57\x3d\xa0\xed\x17\xeb\xa8\x85\xfd\x30\xc3\x55\x5d\xab\x10\xba\x38\x4f\x95\xb3\xb8\xef\x17\xa2\xdd\x06\x75\x9c\x04\x9b\x97\xef\x7c\x54\x2b\xb3\x1d\xcf\xce\x6a\x7d\x45\x87\xd3\xc7\xed\xb7\xc3\x43\x72\x9f\xd1\x90\xdc\x3e\xc6\x8e\x98\xac\xe6\xf6\xac\x4c\x27\x28\x4c\xe5\x13\x14\x96\x75\xa4\x57\xc1\xf1\x15\x1e\x57\xee\x9b\x0b\xd2\xe7\x5c\x01\xcb\x96\xbd\x0f\x65\xef\xc6\x8c\xd9\x30\x6a\x01\xa5\x82\xdc\xee\x85\x42\x1c\xcf\x2d\xcd\x84\xad\xde\xb7\x46\xf3\xb2\xcc\x24\x9e\x4d\x1d\x14\x70\x88\xfc\xd1\x63\x72\xff\x1b\x7a\x59\x53\xdc\xc5\x4a\xe5\x94\x30\x1b\xdb\xc2\xc1\x87\x37\x68\xc4\xec\xf4\xe1\xfc\x65\x89\x02\xe0\x81\x96\xe0\xa6\xa5\x37\x44\x4f\x69\x47\x10\x31\x47\xa8\x8d\x44\xde\x31\x1d\x27\xc0\xa9\xc6\xe5\xe8\xc2\x19\xba\x0d\x33\xe8\xa4\x8b\x21\xf5\x97\x8b\x83\x32\x00\x12\x08\xcf\x1f\x54\x2a\xe9\xaa\x5f\x29\x95\x23\xeb\xd9\x64\xcc\x69\xdb\x54\x48\xba\x16\x46\x6a\x80\x9c\x26\x23\x01\x2e\xd1\x6a\x55\x6c\x94\xfe\xa8\xad\x9b\x9a\x24\xb0\x52\x9d\xb4\x87\x36\x8f\xd6\xab\xac\x8c\xad\x48\x7e\xc6\x66\xa5\xce\x0f\x0d\x6e\xc2\x53\x2a\x47\x57\x3d\x22\x6f\x48\x83\x50\x3b\x41\x7e\x5d\x79\xe0\xff\x1f\xa1\x94\x0f\x20\xde\x6b\x48\xe7\x70\x3e\xa6\x9d\xb7\x85\x5f\xdb\xdb\x3a\x6e\x4d\xea\xa9\x97\xd7\x8d\xec\xa5\x78\x13\xe9\xaf\x3c\x47\xf7\xbd\x72\x8d\xb8\x5b\x17\x12\x07\x23\x16\x28\x7a\x48\x16\x72\xeb\xd5\x90\x73\x95\x8a\x5f\xe8\x52\xd1\x52\x66\xc8\x19\x4c\x3f\x53\xd0\xf4\x19\xe3\xe9\xe1\x32\x76\x30\xea\xc1\xc4\x87\x59\xe9\xf9\x45\x7e\x1c\x4d\xfa\xdd\xa1\x1d\x05\x8f\x11\xa1\xe7\x90\x3f\xf1\xe0\x70\xad\xbf\x22\x36\xc7\xe0\x15\x1e\xe9\x4c\xef\xaa\x67\x63\xbe\x76\xc8\x1f\xae\xe8\xab\x05\xe4\x7b\x94\x01\xc1\x27\xf2\x77\x5d\xa2\x15\xd8\x35\x17\xec\x8c\x85\x23\x7a\x73\x5d\xf6\x0c\xdb\xb4\xc1\x09\x29\x85\xbe\x9b\x47\xa5\x95\x46\xa5\x2d\x41\xe7\xc8\x66\xa1\x36\xe5\xf1\x0c\xff\xd4\xdb\x32\x8c\xbb\x38\x84\x81\x54\x37\x3f\x68\x3f\x3b\xad\x1d\x61\x06\xae\x3c\xe2\x98\xe5\x86\x2a\x46\x8c\xa4\x6e\x51\x17\x5c\xff\xfe\xf5\x6a\xed\x55\x12\x9b\x42\xed\x07\x43\x83\x9d\xb2\x10\x00\x31\xec\x44\x16\xd8\xa4\xb6\x0d\x2a\xfe\x43\x0f\x68\x0e\x7e\x26\x4d\x61\xc4\xf9\xdf\x88\x36\xed\x5a\x17\xfc\x35\xc5\xe1\x99\x22\x78\x44\xb7\x75\xdc\x9a\xf8\x82\x5d\xac\xa9\xa4\xb9\x0a\xc5\x39\x7f\xe9\x31\xad\x09\x89\x2b\x50\xd1\x0f\xcd\x59\x23\x7b\x1f\x8c\x60\x2a\xa4\x23\x22\xae\x59\x22\x05\x2c\xc0\x24\x4e\x8e\x21\xf0\xeb\xfc\x64\xa3\x30\xb0\x04\x85\xe4\xe1\x17\xb2\x01\xb9\xc6\x10\x4c\x78\x71\x6a\x4c\x39\xf7\x69\xa1\x59\x89\x82\x34\x45\xe7\x82\x87\x14\xaf\x3b\xe4\x54\x38\x12\x3e\x9a\xa4\x18\x12\x3a\x88\x8b\x3c\xcb\x31\xcf\xe7\xa3\xe1\x22\x69\x87\x7e\x00\xb6\x46\x89\xa6\x5c\x6e\xc3\xcb\x6a\x2f\x5b\xb1\x31\x0a\xe3\x1b\xb2\xe5\xe4\x60\x91\x41\x0d\x1a\x32\xc1\xd1\xee\xc9\x1b\xe3\x25\xf2\xce\xa6\xbd\x50\x37\x7e\xd9\x35\x4c\x7b\x84\xac\xce\xc7\x2a\xff\x60\x5d\xd9\x5e\xfd\x73\xfb\x72\x7e\xb0\x44\x98\x79\xeb\x49\x81\x9a\x41\x36\xa4\xe4\xc2\xd2\x8d\x12\xd3\x34\xbd\x13\xe6\x7b\xdf\xd1\xdc\x5c\x85\xd1\xb5\xe0\xb7\xff\xdf\xc3\x7a\x54\x86\xea\x0c\x6e\xc7\x29\x4b\xa9\xf7\x59\x2d\x44\x15\xee\x92\xb5\xbd\xaa\x15\xc0\x36\xac\x15\x44\xf7\x7e\xe3\xdb\x63\x14\x98\x53\x10\xb4\x9b\x39\x14\xbe\xda\x8f\x6f\xeb\x17\x86\x08\xba\xe2\x24\xd1\x0d\x5c\xa1\x34\x58\x94\xd6\x09\xcc\x8b\x7e\xdc\x99\x8e\xb4\x90\xd7\xee\x08\x3e\x67\xaf\x2a\xed\x61\x62\xc7\x4b\x2d\x20\x0e\xc8\x20\x0c\xf6\xe9\xe2\x5c\x8f\x78\x42\x41\x7b\x20\xb7\x2e\x40\x37\xb7\x07\x83\x14\xe4\x48\xa2\x1b\x3a\xb5\x23\xcb\x56\x35\xb0\x1b\xdf\xee\x5e\xed\x0d\xbe\x30\x47\x64\x5a\xec\x50\x8e\x1d\x8d\x1f\xd7\xc7\xc7\x0f\x95\xfa\xfa\xca\xb2\xe9\xca\xe3\xd9\x89\x31\xa0\xc5\x99\x8d\x5c\xde\x4b\x88\x32\x73\xe1\x82\xb6\x49\x6b\xc0\xb1\x61\xe9\x85\x1e\x1f\x08\x4d\x16\x2e\xa6\x2d\xba\xd5\xfa\x61\x31\x3c\x0c\x90\x09\xc4\x90\xfc\x84\xf3\x94\xc3\x31\xad\xb3\x54\x8e\xd6\x3e\xa8\x41\xba\x68\x33\xfe\xfd\x69\x0b\xfd\x1f\x81\xb6\x79\x26\x01\x4e\x64\x62\x8b\x53\x0f\x5c\xa1\x3c\x5e\x13\xdb\x98\xdb\xe7\x66\x9f\xc9\x17\x07\xe8\x40\x2e\xdf\xa0\xcd\x8c\xc3\x4d\x4f\xe1\x8f\xca\x8b\xe7\x36\x0d\xa5\x72\xf4\xf1\x6e\x75\x6e\x1b\x50\xc6\xc9\x31\xd1\x37\xf3\x8a\x01\x71\xfb\x54\x25\xff\xe6\xbe\x4b\xf5\x4c\xd7\xc0\xae\xd0\x9c\xe8\x06\xa1\x99\xa3\x72\xbf\x3b\x6d\x7a\xa9\x1c\x5d\x71\x8e\xf7\x0b\x9f\xe0\xd3\xa9\xdc\xcd\x83\x95\x5f\xd1\x42\x41\x1c\x57\x2d\x15\x78\xf6\x82\xc6\xfc\xc0\xc8\xe0\x38\x7a\xa8\xdc\x7f\xf0\xf4\x30\x65\xef\x11\x90\xbb\x42\x1c\x70\x35\xe9\x31\x1a\x90\x8a\xf8\x0c\x09\xa7\xbf\xf8\x64\x46\xaf\x0e\xcd\x8e\x2a\x51\xc0\x97\xeb\x8f\xee\x54\x90\xd4\x89\x4a\xa4\x2c\x1d\xdf\x3c\x2a\x2b\xae\x0a\xc3\xc8\x84\x95\x71\xe1\x91\x7e\x59\x11\x02\x81\x0d\x68\xf7\x90\x2f\xd6\x3b\x7a\xe3\xd4\x30\xa1\x90\x11\x55\x1b\x9a\xa1\x21\x97\x24\x49\x4d\xdd\x73\x57\x2f\x93\xf9\xaf\xdb\x22\xb5\xd0\x26\x89\x8d\xc9\x7f\x1f\xd5\x86\x5c\xf1\x79\x0c\x9d\x89\x19\x98\x72\x4f\x71\xfe\x7a\xd9\x2f\x55\x88\xcd\x99\xee\x1f\x51\x7c\x86\x18\x0e\x10\xe1\x7c\xae\x9e\x7c\x6b\x54\x22\xec\xe0\x3b\xd0\x48\xe5\x87\x75\xf7\xc2\xa4\x93\xc3\xa0\x93\x52\x35\xcb\x43\x71\xf3\xfa\xa9\x6d\xb2\x50\x99\x3c\x13\x88\x7a\xef\x14\x87\x4a\x50\xb7\x42\xee\xfe\xe1\x48\x65\x43\x5b\x63\x58\x11\x92\xcf\x7d\xef\x8c\x96\x06\x81\xa5\xce\xe5\x51\xaf\x3c\x9e\x4a\x5a\xf8\x76\xba\xd8\xbb\x70\x2d\x9c\x35\x1b\xbb\xa5\x29\xa5\xf2\xdf\x37\x29\xe2\x6b\xb4\xc1\x4f\xf8\xc5\xca\x94\xd8\x63\xd8\xc0\xa6\x68\xfc\x7e\xfb\xa6\x86\x9c\x89\x2b\x21\xb0\x46\x13\x6b\xca\xbf\x8c\x97\x3d\x23\x48\x8c\x38\x9c\xea\x1d\xdd\xef\x29\xa1\xd5\x26\x46\x1d\x9e\x6f\x6e\x46\x76\x18\xec\xbb\x2d\x53\x28\x50\xeb\x40\xec\x89\x1a\xd4\xd7\xc4\x01\x97\x6e\x12\xb3\xe7\x77\x76\x8e\x4c\xa3\x9c\x8e\xa7\x18\xf1\xae\xf2\xac\x67\x4f\x03\xc7\xb4\x3d\x27\xf5\x2b\x64\x13\xdc\xc0\x62\x95\x9f\x5f\x78\xa8\x4d\x8c\xd9\xa1\x41\x8a\xf2\xfb\xd5\x29\x65\x26\x1a\x07\x8b\xdc\x8e\xac\xc8\xdb\xe4\xd9\x02\xda\x77\xef\x31\xad\x3e\x04\xd4\x6a\x12\x3a\x3f\x34\x29\x1b\xe0\x1a\xc8\x26\xc9\x14\x21\x57\x7f\x2f\xfb\xb4\x61\xee\x2c\x76\xd2\x70\x0a\x3f\xb9\x58\xe3\x2d\x62\x64\x62\xe6\x5b\xc4\x13\x82\x8c\x6b\x5f\xce\x86\x78\xe4\x9a\xf1\xb1\xcc\x4c\x64\xa2\xff\x3d\x9a\xfd\xaa\x55\xa2\x0e\x51\x8a\x1f\x3b\xa2\x2c\xe2\x6b\x2e\xe5\xc5\x48\xb4\xff\x72\x7d\xef\xec\xfa\x04\x5e\x1e\x90\xb1\xf3\x7f\xd0\xf4\x30\x89\xe3\xd9\x94\x49\x32\xce\x96\x7d\x5a\xcf\x45\xd2\x67\x3f\x44\x69\x5e\xaa\xd4\x0f\x12\x97\xfe\xfc\xc9\x63\x32\x71\x4e\x9f\xd2\x59\x9a\x3e\x0d\xb2\x48\xbf\x83\xba\xab\x75\x15\x23\xb1\xd2\xcc\x0f\xdb\x92\x8d\xc6\xa0\x9a\x02\xec\xd0\xe4\x93\xdc\x78\x52\xee\x83\x88\xc3\x39\x8c\xbf\x3c\xd4\x8b\x72\xba\x29\xb4\xf8\x7e\x73\x4a\x3f\x3a\x2e\xae\x92\x20\x99\xc0\x7d\xeb\x31\x4d\x4b\x03\x33\xb1\xad\xea\xf6\x86\x89\x06\x27\xbe\xc4\x77\x85\x88\x05\x02\x78\xfe\x73\xad\x99\xa5\x21\xb7\x43\x8a\x7e\xd9\xf7\xe2\xf6\xf4\x8f\x45\x58\xfc\xcd\x0a\x75\xa8\x40\x6d\x92\xd8\x6d\x16\x8f\x29\xcc\x54\x8c\xb8\x48\x6f\xfe\x93\x47\x87\xcb\x3e\x88\xa8\x90\x9f\xdc\xb7\x4e\x8c\x73\x75\x40\x24\xe0\x42\xf5\x74\xfa\xc3\x2d\xe9\xe0\x21\x30\xda\x66\x74\xf9\x6f\x58\xb2\x42\xb5\x51\x2d\x29\x45\x7f\x6c\xeb\x4a\x9a\x34\xc0\x2a\x67\xf2\xd7\x03\x26\x68\xa7\x89\xc5\x4d\x54\x52\xef\xb7\x2d\x91\x6e\xd4\x96\x82\x35\x14\x97\xa8\xa2\x59\x5d\x3e\x58\x11\x2d\xc2\xc8\x0d\x84\x0f\x65\xeb\xac\x12\x9c\x6c\x9b\x36\x91\x6b\x70\xa2\xcb\x82\xb5\xc2\xff\xd9\xe3\xaa\x74\xf9\x1b\xb6\xea\x45\x2b\x28\x22\x24\x65\xaf\x9b\xde\xfe\x8e\xce\xe9\xf1\x7f\x79\x5c\x0d\xd1\x89\x98\xa2\x08\xb8\x6f\x3d\xa9\x35\x81\x98\x86\x36\x5f\xcb\x43\x85\xf5\xe6\x3d\x6d\xba\x2d\x9d\x09\xbc\xe7\x4f\x8b\x65\x62\x6d\x10\x64\x50\xa7\x02\x3c\x81\xf7\xb3\x87\x7a\xda\xac\x12\xe2\x9a\xe0\xe9\xde\x7c\xb7\x2c\xfe\x4d\x12\xb7\x89\x60\x86\x2f\xe7\x83\x7f\xe8\x33\x58\x49\x6d\x55\xca\x1c\xbf\x54\x8e\x8e\xec\x14\x6a\x7c\x94\xa9\xd0\xfb\xcd\xfd\x2e\xd1\xd9\xff\xf1\x3b\x34\x43\x6e\x7b\x7c\xec\x0d\x5e\x4f\x5f\x4b\xea\xea\x0c\x35\x7f\x64\xb0\xb6\x84\x08\x03\x0b\xf4\x75\xd5\x19\xbf\xf9\x40\x8a\xb1\x76\xfd\x7a\x6a\x3e\xb6\x41\x57\xfe\x66\xc4\x40\x69\x3a\x1d\xb2\x48\xee\x7b\x66\x74\x42\xcb\xb2\x23\x11\xc6\x0b\x02\xc0\xdc\x47\x57\xdd\x39\x50\xe9\xe3\x08\xc0\xfa\xaf\x7d\x89\x7f\xd2\x65\xf0\x2c\xd2\x0d\xef\xee\x35\x32\x53\x5a\x69\xa6\xfc\xa9\x25\x3f\x19\x75\x92\xff\x3a\xf5\x3d\xdd\x16\x0d\xdc\x1b\xb8\x68\xd1\x77\x07\xf0\x1b\x7e\x0b\x62\xc4\x6e\x29\xf3\xd8\x82\xf5\xb8\x54\x6e\x31\x94\x79\x78\xa1\x9f\xd0\xc5\xad\xf0\x5b\x9a\xfb\xf8\xd2\x84\x12\x8b\x02\x0b\x3b\xc0\x3d\x5b\x78\x48\x3a\xdc\xf7\xe2\xa0\xfa\xfd\xcd\xd9\x30\x2f\xdc\xfb\xb3\x61\xfe\xf9\x15\x8a\x4a\x3b\x65\xae\xd8\x6c\xe6\x6e\xe1\xbd\x7a\xc9\x42\x0d\x2c\x0c\x49\x4b\x55\x64\x70\x7d\xae\x8b\xc7\x28\xc2\xcc\x15\xca\x4c\xea\x92\x52\x39\xfa\xdf\xad\x17\x2b\x63\x24\x5f\x80\xa7\x93\x37\xda\xdc\xa0\x98\xdb\x10\x97\x5b\x0d\x45\xf5\xe1\xd9\x33\xdb\x45\x99\x09\xeb\xb8\x14\xa5\xf9\xc3\xc3\x72\xae\xc0\x9a\x40\xb9\xd6\x2f\xfe\xda\xb5\x8a\xeb\xb6\x8d\x1c\x58\xf1\xbe\x39\x5c\xf6\x15\x33\x4a\x30\x73\xcc\xef\xe1\x2d\xc9\x0a\xc2\x6a\xb2\x97\xf9\x9c\x82\xfa\x32\x10\xf3\x3b\xe2\x87\x5b\x5c\xf3\x12\x3f\x27\xd7\xa3\xc0\xa2\x76\xfc\x72\xe2\x80\x74\x74\x62\xf6\x2d\x53\xd7\x0d\x50\xcd\xaf\xc4\xb5\x4b\x3b\xba\xb5\x60\xaf\x10\x06\xac\xc8\xad\x71\xd2\x42\xfe\x89\x95\x6a\x37\x19\x08\x76\xe1\xd2\xb9\x5a\x3f\x87\x58\x40\x7a\x77\xbe\x2a\xec\xda\x94\x9e\xf2\x9a\x03\xb8\xeb\x8b\xde\xd6\xab\x09\xb7\x95\xce\xa9\xf3\xd3\x56\x0f\x4c\x83\x9e\x29\xa4\xd9\xf3\x1f\xef\x16\xe3\x0c\xcf\xb3\x05\xa2\x70\xf3\xd0\x5e\x6b\x1f\x9e\xba\xa3\x57\x0f\x2b\xda\x5f\xc4\x0d\x10\xac\x24\x2a\x37\xb6\xa9\x3f\x07\x28\x04\xff\x1c\x71\x27\xff\x5f\xb7\xd6\x69\x19\x46\x68\xdb\xb8\x95\xa1\xcc\xfc\xe5\xd8\x35\x7a\x05\x69\x20\x81\x14\xd7\x93\xc9\xfb\x56\x36\x6b\x50\x50\x00\x43\x92\x90\xfe\xc1\x47\x14\x75\xd7\x8a\x60\x23\x5f\x39\x29\x9b\x4a\x2d\x6c\x7b\xa0\xe1\xfe\xdb\x57\x15\xdc\x87\x85\x9d\x52\x39\x1a\x3d\x9f\xcf\x5a\x6e\x09\x7d\xdc\xc0\x4a\xcd\xdd\x53\x9c\x3c\x52\x23\xf4\x41\x72\x15\xd5\x4d\xee\xeb\xcf\x64\x07\x24\x75\x2b\x64\xbe\x85\xb1\xa9\x05\xb7\xcf\xf6\x4f\x67\x07\xd4\x6d\x3b\xce\xf9\x21\x42\xc7\xe4\x5a\xe6\xc4\x15\x7f\xb9\x27\xdf\x7f\xa3\xbc\x70\x35\x16\xf7\xe2\xbc\x89\xff\xc1\xee\x81\x8a\x26\x93\x5d\xe3\x66\x7d\x47\xb5\xb1\x14\x8e\x7f\x4e\x4b\xae\xb8\x0b\x3b\x2a\xaa\x10\x27\x0d\x3d\xb8\xf2\x9e\x00\x66\x35\xa9\x5d\x8d\x7f\x0e\x79\x36\xfb\xc8\x4c\xd4\xe2\xce\x98\xf9\xee\x3c\x4f\x8c\x0b\x43\x87\xe3\xdb\xbe\x3e\x4b\xb6\x96\x26\xf1\x59\x98\x4c\x3b\xf2\x67\x1f\xd0\x87\xaa\x25\xe2\x89\x84\xd9\xdf\xd6\x1f\x26\x03\x5e\x3a\x87\xdd\xe5\x8f\xeb\x2c\xa7\xf8\x8f\x78\x59\xbf\xb9\x4b\x45\xe0\xce\x9a\x52\x2a\x47\x73\x17\x29\x23\x5e\x04\x44\x99\x5c\xa0\x9c\x59\x1a\x06\x36\x02\x96\xd1\x7f\xe9\x7a\xe4\x00\x00\x31\x13\x53\x6b\x8d\x92\x83\x5c\xbf\x89\x93\x19\x62\xe1\x03\xaf\x2a\x60\x78\xdf\xa0\x8c\x2f\x5f\x3f\xf5\x28\x4f\x90\x1e\x62\x36\x41\x49\x77\xf3\x77\x81\x9b\x5b\xce\x95\xfc\xcb\x3d\xb9\xaf\xbd\xde\x06\xcb\x74\x42\x57\x22\xfa\xa6\xae\xcb\x9e\xed\xae\xd0\xf1\xfc\x90\x04\xc2\x05\x22\xda\xb8\x5e\xa1\xff\x13\xb7\x86\x3c\x61\xbc\x72\xe9\xab\x3c\x83\x2d\x09\x2b\xb0\x80\x4d\xd2\x88\xfd\x94\x26\xf4\x81\xfc\xc4\x57\xfa\xd9\x91\x6d\xa5\xba\x90\x11\x86\x1d\xc7\x91\xaa\x3a\xa6\x0a\x70\x92\xff\xf2\x5f\x5f\xa6\x91\x29\x18\x76\x34\x70\x48\x4f\xe1\x9f\xcf\xb4\x59\xad\x1b\x56\x7a\x43\xbf\x32\x52\x9b\xfa\x5b\xd8\xf6\x31\x12\x9f\xac\x38\x79\xa3\x7c\x6d\xd8\x6e\x52\x0a\x11\xeb\xd4\x21\xb1\xe8\x05\xd1\xd0\xf8\x4b\x2f\xdd\xac\xf1\xac\x71\x0d\xf3\x29\x61\xd4\xa9\x11\x05\xa8\x87\x45\xdd\xc8\x5b\xa0\xcf\x74\xb6\x19\xc7\x30\x03\x73\xb5\x04\xd6\x8f\xa7\x5a\xe0\x8c\x71\xa6\x67\xe1\x86\x91\xda\x31\x8e\x0b\x45\x51\xf8\xbb\xfb\xdb\x4c\x6e\xeb\x7e\xd2\xf0\xf4\xd7\x2c\x30\x90\xeb\x22\x8d\x78\xf2\xbb\x53\x17\x88\x63\x02\xb6\x1c\x79\x77\x1d\x67\x39\xdd\x8a\x02\x6c\xdb\x24\x68\xb7\x2b\xdc\xb1\x82\x03\x20\xf8\x94\x48\xdb\x77\xd3\xa6\x2b\xba\x3d\xde\x0e\x74\x6d\xe6\x49\xcf\x0f\x21\xd4\x33\x3f\x3e\x9a\x3f\xd7\x6a\x30\x91\x76\xf9\xd6\x3f\x79\x89\x1f\xe8\x54\x74\x60\x89\x51\xe7\x90\xfb\x7f\x54\xd8\xb0\x71\xb9\x9e\x22\xd2\xbb\x34\xbd\xf1\xc0\x62\xb4\x29\x8b\xf9\xdf\x2c\x1b\x92\xc4\x87\x80\x11\x23\x48\x6a\xba\x73\x4f\x67\x8f\xe8\x94\xc9\xc9\x75\xc8\xcf\xbe\x9a\xbf\xf2\x06\x76\x31\x98\x35\x15\x96\x77\xa6\xb9\xef\x9a\x16\x9c\xfc\xe7\x99\x2a\xdf\xa3\x9e\xc1\xda\x96\x76\x0c\x74\x98\x76\x17\xd1\xe3\x8b\xda\x0a\xec\x19\x49\x23\x7f\xe1\x28\x7e\x9f\x2b\xe0\x6c\x64\x21\xd7\xe4\x70\x2f\x4b\xcf\x76\xd8\xcc\x70\x0d\x0a\x27\xb7\x29\x47\xd7\xf3\xf8\xb5\x2f\x7c\x64\xac\x0c\x57\xbe\x17\xc2\xe3\x88\xd6\x64\x34\x54\x4d\xc1\xae\xcf\x1b\x5d\x02\x14\xe0\x84\xb5\x1a\x2f\x59\x97\x8e\x6a\xef\xf6\xc2\x44\x2a\x32\x57\x7a\x81\x0b\x4d\x7a\xfc\xf5\x7c\x5c\xb3\x44\x32\x29\x65\x13\x9b\xdc\xaa\xad\xbf\x2b\x76\x2c\x5c\x3d\x5f\x10\xdb\xdc\xdd\xba\x06\x1c\x4c\xff\xb8\x5e\xf0\xd2\x1b\xa2\xbf\xad\xd0\xe5\x5b\x04\xcd\x12\xc4\x82\xcf\x9f\xa1\x49\xf3\xf2\x21\x5c\xe2\xb9\x75\x77\x1f\xfe\xd6\x57\x50\xdb\x53\x7a\x87\xe2\xe2\x83\x52\x2f\x1e\x81\x0c\xe4\x19\x0d\x59\xe1\xa2\x8a\x2d\x58\xad\xb9\x1f\x1e\x54\x0c\x66\x42\x9f\xf0\x15\x7e\x74\xa5\xdc\x77\x1b\x16\x69\xbb\x26\x8f\x1d\x52\x44\x2e\x02\x02\x7b\xee\xfd\x5d\xca\xef\x85\xe7\x37\xf0\x3c\x45\x98\xc7\xc6\xc8\x0f\x99\xb0\x41\xfa\x2d\xb7\x3a\x2e\x2d\x58\x74\xf3\xb5\x6d\xb3\xc9\x8f\x58\x8a\x86\x00\x57\xf4\x96\xdf\xae\x6b\x9d\x3c\x06\xd3\x66\x4d\x9a\x3d\x13\x78\xdc\xad\x3b\x75\x3d\x44\x13\x14\x5c\xc5\x69\x5f\xfb\xc0\x20\x09\x58\x4a\x0d\x72\xbc\x43\xba\x92\x5a\x25\x8e\x0a\x1a\x7c\x66\xff\xa8\x21\xd9\xc3\x3c\x0b\xc2\xe0\xff\x2c\xd6\xf0\xcc\x01\xf6\xb8\xdb\x6d\xbe\x63\x4f\x36\x30\x89\xb9\x43\x95\xb8\x89\xa7\x6e\x7e\xf8\x70\x5d\xe4\xde\xc2\x0e\x0d\x2c\xe1\xb5\x52\xbc\xed\x6a\x7d\xff\x45\x43\x8f\xb8\x35\x39\xdf\x5c\xcd\x06\x66\x34\x00\xe2\x97\xf6\xf8\xb8\x61\x4a\xc1\x45\x59\xdc\x5a\xf0\xed\xed\xfd\x67\x06\x49\xed\x7a\x37\x21\x88\x5e\x33\x54\xa7\xe2\x20\x86\x25\x12\xbc\x4b\x1f\x18\x25\xc6\x0b\xb9\x7f\x9f\x2b\x5b\x9b\x6a\x68\x57\x89\x1d\xc7\xf2\xa8\x24\x5d\x53\x29\x88\xb9\xe7\x7f\xb8\x26\x6d\xc2\xb0\x67\xc9\xde\x28\x6f\xcb\xb1\x05\x78\xe5\xc2\x16\x73\xf7\x99\x31\x7a\xde\xe4\xdb\x97\xd4\x12\x31\xff\xdf\x2f\xa5\x3f\x90\x55\x54\xed\xe9\x9b\xd6\x64\x0f\xb9\xf8\xa9\xb0\x15\xde\x7d\x76\xa0\x3a\x73\xe5\x23\x88\x4b\xb4\xca\xde\x40\x5e\x80\x88\xc8\x62\x85\xaf\xf5\xd5\xa7\x9f\x0e\x35\x18\x32\x12\xdb\xde\x89\x0b\xe4\x8f\xb4\x89\x5b\x8f\xbf\xfe\x92\x5d\x09\xfb\x90\xb8\xf1\x51\x07\xc8\xc2\xcf\xa6\xe9\xb3\x32\x2f\xb0\x92\x42\xe1\x67\x27\x78\x44\x5a\x44\x7d\x9c\xec\x12\xee\x7a\x59\x13\x05\xa4\x34\x1d\x50\x3a\x0b\xa5\x65\x32\x88\x47\xa4\xc5\xc8\xd1\xc4\x12\xd9\xc0\x5e\x80\xb8\xf9\x70\xf1\xca\x09\x0a\x7a\xd3\x8a\x4b\x31\xb7\x06\xc3\xd3\x9e\x79\xf2\xf0\x34\x2d\x30\xbe\x8c\x36\xbd\xa4\x7b\x1b\x32\x51\xb3\xf0\x6f\x3c\x63\x8c\x88\x9e\xd4\x20\x38\x00\x02\x4d\xe1\xa1\x97\x32\xb6\x35\xc0\x5e\x2c\x2e\xd3\x26\xb9\x01\xb2\xeb\xd2\x75\x2c\xff\xb1\xd7\xb3\x95\xbc\x4d\x7b\xf5\xfc\x2c\xac\x7a\xa1\xad\x88\x0a\x88\x1b\xa6\x57\xe8\xef\x2f\x28\x18\x5c\x2b\xe4\x11\x07\x7b\x1a\x97\x00\xc5\xed\xa8\xc8\x93\xc5\x8f\x3e\x34\x54\x74\x1f\xc8\xc6\x8a\x14\x50\x3e\x67\x66\x87\xc9\x71\x31\x13\x47\xce\xe5\x9a\x51\x84\x4f\xab\x04\x89\xf8\xc0\xa7\x26\x8a\xee\xbe\x6f\x61\xc6\xa5\x4c\x7f\xbb\xb8\x5d\xca\x14\xb0\x8b\x90\x86\xbc\x17\xe4\xd9\x37\x71\x83\x08\x8f\xcb\xf1\xdd\x0a\x88\x86\x7a\x9e\xd0\xf6\xf9\x9f\x37\xf4\x06\xd4\x07\x87\x1d\x3e\xfe\x18\xb2\x26\xfb\x90\xa6\x96\x3c\x4a\xb8\xce\x0c\x70\x60\xfe\x67\x5f\xbb\x88\x67\x85\x08\x69\x79\x7e\xd2\xcb\x5a\x6f\xea\x50\x3f\xb4\x53\xe9\x81\x7c\x61\xad\x06\x54\xf1\x7d\x2e\xb0\x26\x42\xc1\x86\x7d\x72\x52\xe5\x06\x0d\x7d\xed\x5f\x5f\x9e\x8d\xb1\x01\xc3\xae\xa2\x1c\x9c\xa0\x67\x16\x5c\x9c\x11\xa3\xf3\xd5\x65\x61\x71\xe5\x0b\x4a\x67\x00\x2a\x20\x1c\x68\x31\xfb\x1e\x05\xb2\xd1\x2e\x91\x73\x62\xa5\x62\xd1\x8d\xb9\x04\xf0\xf6\x6d\x1a\x72\xcc\xb7\x35\x0c\x6c\xf4\xca\x62\x1d\x0a\x48\xe3\x62\x03\x96\xf0\x89\xe6\xd8\x96\x67\xb5\x4b\x4d\x9b\x29\xd5\x9d\xf6\x11\x32\xf6\xd8\x75\xfd\x96\xdd\x00\x63\x53\x9e\xee\xef\x9b\xa7\x60\xda\x89\x74\x13\xcf\xed\xbb\x5a\xc6\x53\x3b\x74\x0d\x0b\x73\x9d\x90\xef\x33\x45\x82\x99\x34\x30\x4b\xf8\xec\xbf\x3a\x9c\x4d\x4a\x25\x3e\xbc\xee\x58\xa5\x6b\x5b\x9b\x94\xf9\xa9\xad\x49\x75\xa4\x54\xbf\xf5\x03\x3e\x71\xcc\x5e\xba\xfb\x67\x64\x8b\x57\x46\x91\x59\xaa\xd8\xd4\x50\x6e\x70\xee\xd7\xcb\x24\xe0\x8a\xdf\xf9\xdc\xed\xcf\xeb\x1e\x6a\x0c\x23\x53\xea\xed\x2f\xd5\x95\x44\x5c\x17\xfb\x52\x8b\xe3\xfa\x07\xe4\x4f\x0c\xbb\xa1\x2f\xcf\x29\xa2\x86\x0e\x75\xc3\x44\xa2\xe8\xb2\xfd\xda\x79\xe4\x07\x22\xd9\x65\x14\x0e\x0b\x9f\x2e\x13\x63\x0f\xbb\x7c\x32\x54\xf8\x05\xf7\x88\x28\x2d\x6f\xea\x92\xf1\xd1\x7b\xaf\x6b\x7a\x80\x4c\x98\x24\xf2\x6e\xe6\xfb\x91\xda\xfb\x72\x54\xc8\xbf\xaf\x4d\x73\x90\xad\xd6\x26\x05\xbc\x4e\x75\x77\x40\x3c\x2b\xfc\x6e\x5f\x36\x9e\xd7\xc2\xc4\x2f\x36\xfa\x86\xa6\x79\x42\x1b\x98\x79\x38\x83\x19\xef\x29\xfc\x6e\xe8\xc0\x24\xcb\xd4\x12\x6f\x97\x9f\x4f\xbb\x5a\xef\x99\x08\x72\xbb\x27\xb6\x31\x9b\x7b\x0a\xf7\x4d\x52\x84\xa2\x4c\x4c\x25\x14\x35\xff\x1f\xa7\xb5\xd3\x12\xa8\x82\x78\xf9\x9b\x99\xce\x91\x03\x1f\xf3\xd4\x1a\x62\xdc\x0e\x1d\xe4\x19\x88\x09\xb5\x50\x9b\xbf\xad\xef\xa5\xbd\x65\x14\xb7\x96\xfc\x88\xc2\x3d\xe7\xe9\x63\x0a\xd7\xa4\x4d\x5f\x00\x1b\x3f\xf9\x6a\x36\x78\xb9\x52\x82\x34\x09\xdc\xf7\x1e\x1c\xa1\x95\x5a\x04\x8b\x16\xa7\xd0\xe7\x0e\x4d\x02\xd8\x0d\xac\xd0\x27\xc8\x77\x92\x25\xf6\x7f\xbd\x22\x70\x3c\x0d\x64\x84\x28\xd1\xe5\x28\x78\x9a\xb5\xc2\x94\xd9\x09\x12\x4a\xd4\x5e\xaf\x6b\x16\x13\x2c\x1d\x43\xc9\x01\xf7\xba\x74\x94\x5d\x6f\xd1\xe4\x9c\x8f\x59\xad\xf5\xee\xd0\xe4\xb5\x04\x34\x67\xce\x2b\x69\xf9\x14\x56\x50\xa9\x1c\x7d\x60\x8f\xb0\xfe\x64\x58\x38\x21\xe7\xd6\xb2\x01\xca\xec\x20\xbe\xf3\xff\x70\x5c\x31\xdc\x21\x98\x31\xd8\xa7\x3d\x7e\x42\xae\x23\x7c\x0c\xf3\x29\x8d\xeb\xb3\x4a\x11\x84\x01\x7d\x9a\xf8\x9f\x7d\x7a\xbf\x0e\xbf\xb4\xe3\xd6\x5f\x08\x61\x4c\xd7\xb8\x26\xc0\x9d\x6a\xa2\x96\xf8\xe3\x8f\x29\x5e\x83\x81\xdf\xaa\x21\x0e\x6d\xfb\xfd\x5e\x6d\x27\xea\x70\x8a\x6f\x36\x5a\x9f\x5b\xa4\xf1\x38\x6d\x2c\x50\x49\x39\xa5\xd8\x44\x86\x41\xf8\x6e\x3c\x7a\xe5\xa0\x2e\x0a\xc3\x99\x40\x70\x76\x0f\x6c\x1d\xa5\xf6\x22\x7a\x98\x9b\xb6\x4f\x33\xb4\xc3\x20\xf3\x02\xc7\x2e\xff\xbb\x0e\x59\xd4\xd4\x42\x97\xa3\x67\xdf\x1e\xab\xb9\xba\xa7\x45\x59\x7e\xd0\x9a\xd4\xd1\x7f\xca\xcc\x52\x39\xfa\x2a\x93\x2c\x0f\xdf\x21\x81\x52\xf6\x7e\xf5\x35\x81\x83\x42\x4c\xb5\x78\xce\xdf\x16\xe8\xcc\x6d\x64\xdb\xad\xc4\x97\xa6\x73\x4a\xfa\x65\xdc\x76\x0f\xda\xdc\xe4\x39\x8a\x8a\xb2\x60\xb7\x44\xfd\x1f\x6c\x93\xf2\xeb\xc2\x92\x4d\x92\xfb\x87\x37\x35\x36\x32\x75\x6b\xa0\x0f\xc8\xb9\x54\xaf\xcd\x10\xe4\x72\x1a\x0a\xc0\xea\xdb\x27\x15\x35\x65\x7e\x5f\x60\x24\x7a\xcf\x0b\x9a\x96\x06\xa9\xa2\x5e\x3d\xdc\xd7\x3d\x95\xd6\xae\xbe\x5a\xbb\xe6\xff\x59\x63\x61\x03\x0e\x4f\x0c\xd8\x3b\x57\x5d\x28\xdf\x3d\x70\x31\x46\x29\xa4\x0e\x44\x78\xbd\x55\x95\x17\x27\xa0\xf1\x13\x1b\xf9\x1a\xbc\xc2\xf8\xa7\x5d\x7f\x7d\x02\x02\x6b\x08\x04\x09\xf6\x09\x8b\x0b\xde\x07\x5f\xd3\xab\xb4\x46\x1c\x5f\x45\x5f\xfc\xf2\xb3\x5a\x73\x48\xc2\x38\xc6\x12\x95\xde\x1b\x9d\xb3\xb4\x3d\x10\xa8\x47\xea\x57\xed\x9b\x4f\x28\x95\x6a\x9c\x4b\xe3\x6f\x66\x9f\x91\x66\x04\xdd\x8a\x66\x65\xee\xae\x6d\xd9\xd8\x6e\x23\x16\x17\xed\x71\x3e\x01\xd1\x54\x68\x6b\x39\x96\xf4\xeb\xf3\x06\x8b\xaa\x3f\x40\x36\xe1\x22\xc5\xe5\x9e\xe2\xf0\x17\x75\xdb\xfd\x96\xcb\xf5\x56\x20\x08\x19\x55\x05\x7b\x45\x78\x87\x18\xad\x98\xa3\x01\x7e\x90\x5b\xf3\x85\x5e\x61\x7c\x20\x56\x6a\x13\x28\xe4\x83\xa5\x5a\xb2\xa3\x7b\xe7\x79\x65\x6d\x85\x42\x1f\xd5\x60\x51\x74\xe2\x94\xe0\x3f\xe0\x20\xc0\x1c\x5e\xf7\xe8\x72\xa5\xd4\xc1\x35\x64\x83\xcc\x40\x4f\xe1\x47\xab\x32\x6a\xdd\x36\xe5\xfd\x53\x31\xdc\x2f\x65\x0b\x6a\xa8\x9b\x50\xdf\x41\xae\x87\x7c\x94\x88\x43\x5d\x73\x67\xe2\xbe\x46\x5c\xea\xab\xb6\x0e\xb7\x6c\xe4\xb7\x6d\x41\x58\xad\xaa\xf2\x64\x1f\x7f\x6f\x80\xa2\x68\x08\xc3\xe7\x5f\x6d\xe2\x93\x1e\x03\xfa\xd0\x2b\x5f\x52\x5c\x28\xb0\x69\x0a\x18\xe9\xd2\xfc\x08\x05\xe5\xd5\xcc\x28\xc5\x3c\xf9\x84\x62\x88\x26\x58\x27\xf0\x60\xff\x25\x2f\x84\xee\xa9\x1b\x70\xe1\xc4\x2f\x8e\xce\xb2\x5b\x81\xfe\x9a\xf0\xa8\xf5\xb3\xe3\xbd\xad\x0d\x0a\x42\x3f\x50\x84\xb2\x0b\x5f\xdb\x78\x91\xf8\xe0\xd0\xbd\xc6\x0f\x7d\xc2\x6b\xd9\xb4\x49\xbb\x51\x9d\xc4\x21\x5a\xd6\x14\xeb\xb8\x60\x7d\xa9\x1d\x5c\x79\xb5\xa7\x88\x81\xd8\xc4\xe1\xb7\x3c\x6f\x4c\xd0\xf4\xcc\x00\xb4\xc8\xf3\xec\x93\xa7\xb5\x81\x27\x7c\xc4\x6c\xa2\x2e\x2e\xd6\x84\xb5\x0c\x30\x2a\x6d\x54\x4a\xe5\xe8\x73\xfd\x46\x6b\x79\xba\x16\xda\x55\x85\x55\xf4\x5f\x0b\x15\xd9\x50\x82\x1d\xcc\xd3\xf4\x7d\xe6\x65\xe2\xc5\x27\x5a\xe9\xed\xe8\x89\xff\x50\xd2\xa5\x8d\xa1\x2a\x19\x3e\xa6\x17\xef\x27\x6e\x9b\xf1\x6f\x0f\xea\x53\x24\x40\xd8\x24\x54\xeb\x6f\x9c\x56\x44\x08\xfc\x80\x51\x17\x81\xa2\x59\xf4\xfe\x4b\x97\xea\x95\x10\x66\xd8\x57\xcc\x06\x56\x0d\x50\x64\xa9\x48\x8d\x6b\x6b\xf4\xe4\x0b\x9d\x4a\xaa\x41\xd5\x2a\x8c\x5d\xff\xbe\x24\xcd\x27\x33\x4b\x71\x95\x78\xf9\x28\x69\x41\xd2\xce\x4f\x3e\xbd\xee\x52\xbd\x16\x04\x97\x4c\xe9\x12\x3b\x59\x23\x57\x72\x09\x4f\x52\x43\x89\x75\x5b\xb4\xe4\x54\x1b\x91\xc0\x35\x12\x86\xe9\xe7\xb6\xca\x71\x1c\x72\x03\x92\xea\x63\x41\x0d\x79\x8f\x56\x43\xae\x41\x46\x90\xc2\x04\x8b\xb7\xdf\x91\xc9\xdd\x34\xe4\x3e\x24\xf9\x5b\x66\xe8\x26\x8e\x8c\x26\x94\xf6\x42\x65\x70\xb6\x14\x98\x3c\x7b\xe6\x14\x2e\x99\xfc\xc4\x6b\xf2\xc7\xf9\xc4\xc6\xae\x01\xe3\x8c\x5f\x08\xd7\x27\x86\x7d\x03\xdc\x1f\x5e\xd1\xea\xac\x26\x0a\x0c\xcb\xc1\x2e\xa7\x15\x7c\x7f\x87\x74\x1a\x76\x70\xe6\x1a\xaf\x64\x8a\x4a\x08\x46\x75\x68\x5e\xde\xd6\x96\x75\x84\x1f\xdc\x9e\xfc\x3b\x8f\xe9\x4e\x7d\xc4\xb6\x93\xa7\xfe\xbd\x77\xf4\xc3\x64\xd8\xa1\x89\x7d\xc1\x80\x2a\xec\xbb\x48\x49\x64\xbc\xb1\xba\xf9\x69\xdd\x47\x70\x4d\xf2\x12\x7e\x3a\x49\x01\x46\x12\x70\xd0\x77\xeb\xa5\x72\xf4\xd4\xc8\x61\x4a\x4b\xc7\x30\x72\x6c\x02\x12\x17\x85\xc5\xa7\xe5\x6b\x63\xb8\x82\x6d\x15\x03\x41\x9f\x4c\xbd\xf2\x53\x5a\x3a\xa4\xf9\xe7\xfa\x66\xef\x69\x93\x61\xa3\xce\xc9\x13\x85\x5d\x96\x0e\x46\x74\xab\x98\xc1\xbc\x9a\xdf\x1f\xb6\x5a\xc6\x4d\x2e\xab\xc7\x67\x18\xef\x3f\x94\x16\xc3\x46\x3d\xa5\xbb\x75\xbf\xac\x43\xbe\x4c\x68\x3f\x00\x4a\x39\x78\x8f\x6c\x5b\x4c\x9a\xd1\x5e\x9e\xf7\xa6\x16\x4a\xe2\xba\x8f\xcf\x4d\x73\xf7\xed\xd3\x87\x67\x4c\x38\x6a\x44\xfe\x52\x6d\xb9\x86\x1c\xaf\x82\x6d\x7b\xe2\x1c\x25\xf9\xf6\x79\x4f\x92\xa4\x4c\xec\x1b\x8c\xc8\x75\xeb\xe0\xcb\xb4\x10\x68\xdb\x3c\xaa\x4a\x26\xc3\xac\x53\xfa\x16\x83\x87\x26\x99\x7c\x4b\xeb\xb5\xc5\x1a\x0a\x04\xf5\xa9\xa7\xd8\xb8\x5a\xe6\x17\xb0\xd4\xa8\x62\x86\x2a\x5c\x35\xee\xd3\x47\xd4\xd8\xa3\xfa\x1f\x2e\x5b\xa1\x0c\x37\x51\xc0\xe7\x60\x3f\xd6\xe8\x45\x2e\xae\x51\x6e\x10\x04\x73\xa3\xa2\xbf\x6d\x88\x82\x2f\x0a\x01\x7f\x58\x2a\x47\x7f\x54\xe6\x10\x3e\x23\x2e\xaa\x71\xe1\xe6\x79\x8b\x06\x29\xd8\xa5\x4a\x08\x62\xcc\x05\x67\x94\xc0\xfb\x10\xe6\x07\x8c\x2b\x34\x17\xa8\xe6\x7b\x47\x18\x72\x13\xb8\x73\x4f\x61\xd2\xd3\x3c\x25\x63\xa7\x82\x18\x03\x12\x11\xb4\xd4\xb3\xd6\xc8\x40\x48\xeb\x36\x82\x20\xe1\xf6\x1b\xd9\x4b\x38\x16\x63\xab\x3e\xfd\x47\x6b\xdf\xb0\x89\x58\x5d\x29\x49\x3e\xa3\x29\xeb\x33\x5a\xa9\x24\x5a\x48\xf7\x36\x34\xb0\x29\x6a\x71\x6d\x52\x88\x86\x95\x01\x12\x6c\x23\xec\xfe\x95\xe7\xed\x9d\xd4\xc5\xcb\xea\xb8\x85\xdd\x3a\x55\x99\xde\x57\x48\xf1\xfc\xe9\x1f\x9e\x0c\x80\x35\xcd\xa3\xa7\x85\x98\x09\x43\xba\xe8\x2b\x0a\x84\xaf\x49\x19\x97\xc6\x8d\x36\x6a\x46\x78\x00\xb8\x4b\xe6\x29\x7f\xdd\xa9\x4b\xd2\x83\x70\x11\x4f\x53\x1f\xdb\xae\x0f\x81\x28\x73\x68\x98\x04\x9e\xbf\x6a\x6d\xb1\x43\xe3\xea\xe3\xc3\x2d\x1a\x32\xfe\x37\x8a\x6b\xd7\x6b\x36\x72\x16\x01\xe2\x84\x9f\x58\x7e\x3f\xbf\x4d\xb0\x6d\x67\x76\x4c\x8d\x7f\xe3\x37\x35\xc6\x49\xe8\xd6\x5d\xda\x14\x44\xb4\xc2\xf5\x5b\x32\x5c\x5c\xc8\xdd\x3f\xd1\xb8\xb8\x76\x6a\xc1\x10\x7d\x58\x97\x18\x46\x0c\x5b\x34\xf4\x05\x85\xab\x70\xe6\x5d\x5e\xaa\x2d\x05\xf7\x89\xc2\xe4\x37\x15\x51\x43\x9c\x00\x20\x0b\x83\xf6\x0e\x12\x01\x0e\x80\x8f\x89\x8d\xcb\x79\xa3\xe4\x1e\xa8\x5d\x99\x6b\xd8\xc3\x3c\x8f\x2c\xc4\xc8\xe6\x80\xfa\xcd\x2b\xb5\xde\x15\x2c\x6d\x27\x82\x24\xa7\xcc\x1a\xdb\x8a\x1a\xa8\x98\x36\xe3\xd4\xcf\x47\xb4\x8d\x97\xd2\x6c\x13\x3a\x28\xc3\xbb\xac\xba\xfc\xf7\x51\xe6\x8a\x3a\xeb\xd6\xe1\x32\xfe\x4c\x9e\x11\x58\x8a\x30\xd0\xd9\xf9\x32\x22\xd2\x8a\x4d\x6a\xe9\xc0\x22\x7f\xf3\x46\x09\xce\x9b\x1e\xc7\xba\x27\xf6\x27\xc2\x1c\x16\xc8\x12\x72\x1a\xcf\x67\xae\xcb\x7e\x4c\x1a\xc6\x15\xbe\x98\x8d\xcf\xd8\x2d\xbb\x02\xea\x26\xa8\x8a\xa9\xa3\xc5\x04\x02\xb5\x18\xb5\x61\x6a\xf4\xc7\x01\x72\x22\xe6\x85\x1c\x0d\xd2\x6f\xb4\x8a\x9a\xc4\x81\x0b\xa2\x65\x7b\xdf\x4d\xc3\x7e\xfc\xf5\xc4\x0c\x64\xdd\x92\xb4\x59\x83\x7e\xb9\x27\xe7\x2f\x18\xa2\x29\x93\xf1\xda\xe2\x32\x6d\x98\xcf\x91\x04\xe2\x92\xde\xaa\x59\xc8\x84\xae\x8b\x0d\xec\xfb\x28\xc1\xfe\x1e\xe6\xf2\x81\xa5\xe5\x28\xec\x26\x48\xd5\xac\xec\xaf\x3d\x07\x87\xf8\x98\x25\x8b\x9d\x8f\x3f\xa8\xb2\x8b\xc0\xae\x49\x1c\x9e\xd3\x07\xb4\x16\x88\xc5\x35\x9e\x2f\x52\x4f\x7e\x85\xe2\x8e\x1d\x67\x62\x1c\xb4\xb7\xea\xbf\x7e\x56\xca\x68\x06\x92\xcf\x11\xfd\xf3\xea\xe1\xca\x3e\x06\x33\x0c\xb6\x9c\x71\x18\xb8\x7b\xa7\xbe\x12\xb3\x39\xd2\x42\x16\xf3\xff\xa9\x88\xf8\x5a\x94\xc6\x27\x83\x97\x13\x6b\x77\xa8\xb6\x76\x06\x62\x06\xf0\x4b\xe2\x36\x7a\xe0\x9e\xa1\x2a\xea\x29\x45\x1a\xe4\xff\x69\xb1\x5c\xe2\x72\xfb\x8b\xc5\xe7\x14\xb7\x71\xe4\x85\x7e\x80\x4a\xe5\xe8\xe0\xb1\xb6\x44\x8b\xfd\x80\xe7\xb1\x0f\x2c\xcc\x38\x4f\x3b\x94\xf1\xfd\xfb\xe5\x1a\x03\x17\x1c\x70\x5c\x9f\x50\x51\x97\x2d\xda\xac\xf8\x26\xb1\xb0\x96\xd8\x49\xc4\xdf\xe5\x61\x95\xc2\x47\x02\x3f\x54\x05\x26\xf2\xc1\xe1\xec\x49\x99\x5a\xf2\x31\x23\x98\x2f\x41\x8a\x6b\x44\x8f\xb4\x94\xfa\x3e\x11\x94\x36\xff\x98\x2e\x38\x52\xad\x12\x50\x7d\x48\x95\x95\x76\x77\xa4\x2f\xcb\x53\xdd\x2f\x72\xc7\xe6\xca\x07\x1e\xba\x3e\x16\xf8\xd7\x9e\xdc\xfe\xf7\xaf\xd1\x62\xbc\x5b\xc7\x98\xb7\xd0\xfa\x5c\xf6\xf9\xf9\x59\xaa\x0e\x22\xac\x89\x5a\x7e\x2f\xae\x3f\xbf\x92\x3e\xfe\x15\x5b\xf5\x56\x1d\xbe\x66\x94\x9e\x05\xa0\x5b\xe1\x90\x84\xfc\xc6\xcd\xba\xbb\x98\x1d\xf7\x04\xdc\xe6\x7a\xab\x06\x09\xe0\xa4\x4d\x7e\x73\xae\x98\xa3\xb0\x28\x89\xe7\xd9\x7c\x69\x5f\x1c\xbc\x58\xcb\xc7\xbe\x1f\xe2\x44\x12\xab\x51\xe9\x2b\xc6\x2d\xe5\x28\xaf\xa8\x59\x24\x4c\xc5\xfc\xa0\x23\xea\x53\x33\x71\xfc\x75\xe1\xb5\x0f\x38\x29\xe5\x33\xc3\x8c\x28\x4a\xde\xac\x5c\xa6\x2c\x01\x42\xa0\xeb\xb7\xa9\x6f\xee\x6a\x43\x68\x92\x94\xb3\x56\x98\x3f\x54\x97\x9c\x41\xee\xc4\x71\xa5\x72\xf4\x83\x57\xf4\x24\x87\x1d\x1f\xdb\xc2\xb3\xb5\xdc\x53\xf8\xce\x59\x6e\x4a\x73\x73\xdc\xcc\x55\xd1\x1a\x9d\xe3\x32\x7d\xb8\x26\x9b\x0b\x06\xeb\x75\x62\xd4\x53\xa1\xd3\xe2\xa7\xee\x54\x84\x52\x8c\x52\x39\x9a\xbe\x4e\xb9\x1a\x60\x3e\x0e\xd7\xf1\x33\x6f\xe8\xa5\x70\x2d\x75\x1d\xca\xfd\xfb\x4a\x55\xe2\xcc\x8d\x6f\xdf\xfe\x5d\xd9\x6f\x15\x97\x0d\x7c\x58\x3a\x68\x31\x8f\xfc\x4b\x97\x5d\x7b\xd3\x6d\x37\x24\x31\xf7\xa6\x77\xb4\x62\x82\x20\x37\x28\x89\xde\x74\x9a\x22\x53\x3c\x65\xba\xb0\x17\xfe\xeb\x00\xbd\xf6\x82\x09\x29\xbf\x19\xdb\x4e\xa8\xbd\x0b\x67\xd0\xad\xde\xae\xa8\x95\x0a\xf0\x7b\x39\x2a\x68\x7e\xd8\x55\x86\x5c\xc3\x22\x7e\xa2\xd5\x9a\xbb\xa4\x53\xed\x5f\x00\xa9\x23\x16\x8f\xef\x1e\xcc\xee\x64\x4b\x25\xbe\x93\x7d\xfa\xf0\xa5\x5a\xd3\x85\x8d\x00\x05\x94\xf9\xb0\x98\x2d\xf7\xe4\xa2\xa5\x83\x33\xbc\x4e\x17\xdc\x11\xf2\x1f\x5b\xa5\xa8\xac\x62\x5c\x87\x43\x9d\x1f\x75\x46\x93\xc4\x65\xc2\x05\x30\xfa\x81\xe2\xd3\x8b\x1c\x80\x63\x46\xd1\xe0\x8b\xd4\xb8\x09\xf7\xec\xfd\x69\x8a\x4c\x8b\x45\xb1\xdf\x36\x01\xcc\xfd\xeb\xc3\x83\x93\x96\x02\xd0\x72\x98\xa3\x32\x7e\x7e\x63\xaf\x9e\x6c\xbd\xa8\x90\xe5\xbf\x14\x48\x01\x53\xa4\xc0\x10\x73\x1b\xcf\x48\xfd\x37\xbb\x1d\xcf\xf6\xbd\xd3\xba\x67\x0b\xb3\x01\x52\xe8\x25\x67\x63\xfe\x53\x57\x68\x6f\xba\x41\xb8\x63\x77\x89\xba\xb6\x80\x42\x15\xf3\x1a\xf6\xc9\xc2\x76\x6a\x99\xdb\xf3\x86\x22\x25\x80\x11\x6b\x95\x70\x4b\x74\x93\x07\x39\xdc\xf7\x3a\xcc\x82\xb0\xbb\x9b\xa8\x4a\x43\xcf\x2a\xcb\x8e\xb8\x26\xdf\xb1\x4d\x61\x4f\x93\x6a\xfb\x6e\x72\xe1\xe3\x1a\x20\x00\x31\x0c\x4c\x25\xd1\x22\x7f\x77\x4b\x26\x4e\xca\x5f\x35\xfc\xf0\x40\x45\xa2\x80\x7b\x65\x14\x6f\x1b\x2a\xff\xa3\xc1\x40\xf4\xa4\xa7\x38\x68\x86\xde\xbf\xd5\x18\x0e\x80\xf9\x2d\x8e\xfe\x57\x0f\x29\x83\x1c\x2e\x6e\x5b\x2a\x47\x3f\x5c\xc0\xbf\xe7\x42\xe4\x10\x50\x7f\x93\x41\xba\xf6\x8c\xd6\x34\xb7\x3c\xc6\xf7\xde\x7c\x2c\x7d\xf7\x13\x0a\x93\xd3\x26\x41\x37\x47\xe3\xdd\x1d\xf1\xc2\x6b\x6a\x67\xc9\xb3\xb9\x89\x55\x57\x97\xee\x2d\x42\x89\x0f\x3c\x54\xfe\xd1\x06\xed\x6e\xe3\xfc\x78\x5c\x05\x5b\x54\xa2\xbf\xd4\x66\x89\x2e\xf2\x7d\x14\xa6\xcd\x59\xee\xd9\x51\x4a\xf7\xd7\x72\x3c\x04\xfe\xbd\xd1\x39\x45\xb1\xc0\x42\xad\x1a\x62\x5c\x9f\x78\xc0\xe3\xda\x12\x85\xba\xa6\x18\x17\xf7\x14\x83\xad\x62\xec\x89\x59\x40\xaa\x90\x72\x8b\xf7\x28\x3d\x27\x72\x51\xc0\x91\xff\x85\xc6\xe5\x72\x2b\xdd\x4d\x6d\x1a\xb4\x42\x70\x2a\x91\xc3\xc3\xe2\xa6\x6b\xf4\x82\xcd\x4f\x1c\x00\xf4\x01\xe6\xd2\x33\x19\x2a\xa5\x9f\x68\xbc\xe4\xbe\xf9\xe0\xd0\xf8\xdf\xae\x68\xbb\x22\xbf\x7c\x54\x16\x5f\xa0\x00\x46\x82\x50\xb0\x70\xd7\x2e\xd4\x62\x4d\x80\x18\x53\x65\x66\xf2\xcf\xbd\x91\x56\xf7\xb5\x50\xf5\x88\x8a\xd6\x3c\xaf\xd8\x11\x05\x98\x61\x1a\xb4\x3c\x2e\x61\x31\x56\x6b\xc1\x68\x03\x33\x9b\x52\xd8\xb1\x43\x7f\xfa\x95\xcb\x55\x6f\xa1\x36\xf8\x5d\xe1\xcb\x0a\xb1\x0a\x96\x70\xd8\x15\x7d\xcf\xd5\xe7\x69\x68\x5a\x83\x51\x5f\x58\x8a\xfe\xe6\x91\x6c\xcd\x53\x41\x35\xcb\x44\x66\x12\x0c\xe2\xa0\x5b\xea\x3f\x52\xa1\x5a\xeb\xb3\xbe\x0d\x17\xa7\xce\x93\x46\xdb\xa8\x75\x48\x43\x11\xf9\x62\x0e\x72\xe3\x60\xfd\xc8\x14\x7d\x3c\x28\x74\xf9\x78\xc5\x77\xd3\x53\x17\x6b\xf7\xcd\xc7\x88\x19\x16\xff\xd3\x25\xe3\xc4\x58\x2f\x2e\xa3\xa0\x3a\xbd\x60\x71\x36\xef\x4d\x9d\x35\x9d\x27\x85\xb5\x8f\xf1\xb9\xc2\x52\xe2\xe1\xb1\x0a\x2a\x6c\xa0\xe2\x27\x8d\xd7\xc4\xfd\x01\x7f\x03\xe3\xde\x95\xff\xbd\x8e\xfc\xee\x96\x51\x07\xd4\xc1\x72\x77\x54\x5b\x72\xe1\x58\x97\xb8\x18\x5f\x77\x9e\xca\x93\x64\x71\x93\xc4\x3f\xd7\x65\xcb\xe4\xac\xcd\xc5\x88\xa9\xdd\x61\xe1\x7c\xa1\x45\x85\x4c\x93\x25\x46\xd9\x45\x4d\xc4\x44\x8c\xda\xc5\x4d\x3e\x74\x7a\x80\x28\x93\x50\xdc\xfd\x96\xca\xd1\x2f\x0f\xe8\x81\x09\xf9\x94\xc3\x38\x85\xe8\xf9\x8f\xf2\x1a\xcc\x00\x07\x71\xc7\x0f\x3b\x14\xe7\xf9\x8b\xf5\x62\xdd\xc0\xe9\x12\xfe\x68\x67\x76\x83\x57\x47\x6e\xe8\xba\xa4\x4e\x1b\xf0\xb3\x65\xa3\xf1\xa7\xbe\xf2\x44\xa3\x30\xa0\x0e\xad\x10\x61\xe6\xef\xec\x1c\xa9\xde\xa1\x80\x81\x6c\x0f\x41\x76\xa9\x1c\x79\x83\xb5\x61\x05\xa9\xa7\xbf\x3c\x77\xfe\x2a\x21\x5e\xe4\x73\x23\xfe\xdc\x9d\x4b\x07\x29\x30\x28\x62\xe3\xf8\x3e\xfc\x44\x66\x3f\x7a\x8d\xa3\x0c\x63\x0e\x4d\x92\x17\xc5\x42\xae\x89\x6d\x47\x2d\xd5\x8b\xe7\x4f\xe2\x93\x0a\x07\x73\x30\xff\xe6\x53\x8a\x69\x15\x35\xc1\x34\x22\xba\xe2\xa8\xd8\x52\x11\x17\x97\x42\x58\x8f\xce\xdf\xaf\xf8\x55\x10\x6a\x73\xa1\x83\x24\xa6\x5f\x78\x24\x1b\x48\x6b\xc8\xb6\x79\xbf\xc1\x47\xbf\xb8\x23\x21\xbd\x11\xc3\x52\x3e\xed\xa5\x41\x92\x26\x02\xcb\xc6\x8a\x7a\x58\x74\xf7\x99\x0b\x55\x80\x6a\xb9\xaf\x36\xdc\x42\xae\x50\x7c\x15\xa1\xfa\xbb\x9a\x35\x4f\xb2\x71\x10\x2c\x8e\xe2\xf8\xd7\x34\xad\xb3\xb8\x07\x13\x6b\xfa\x2d\xab\xf5\x75\x00\xc7\x6d\x48\x8f\xfc\xfc\xde\x4d\x32\x24\x9b\x88\xd8\xba\xf7\x69\xf4\xc0\x1e\xb9\x95\xf3\x3a\xfc\x76\x37\xbf\xd0\xd4\x00\xac\xf1\x81\x70\xf9\x90\x8d\xd7\xd7\x43\x5e\x1d\xa1\x48\x18\x90\x9a\xc5\xf3\x66\x9c\x13\x57\xed\xe1\x23\x9e\x44\xd0\xe4\x5c\xb6\x44\x9b\x3a\x65\x46\x42\x25\xbe\x79\xac\x86\x57\xc2\x0d\x6a\x73\xd9\x14\xd6\x4a\xae\xc6\x94\x29\xd9\x87\x55\x0d\x19\xa1\x61\x0a\xa5\xcd\x4f\x3b\x98\xfd\xf9\xb0\x6f\x00\x48\x46\x71\xe8\xeb\xd9\x22\xb4\x89\xf8\xcc\x6e\xcd\xf2\x11\xea\x94\x80\x4f\xd0\xf9\x0c\xf5\xad\x47\xb4\xab\x9d\xc8\xd6\xc2\x8b\x5b\x36\x5a\x96\xce\x0c\x11\x98\xa8\xd8\xbb\xb5\x28\xa8\x66\xed\xe2\x55\x07\x15\x56\x1b\x4b\x2c\x5c\x2e\x7b\x6a\xb8\x9b\x95\x3a\xf1\x83\x16\x68\x1a\x6f\x3d\x3b\x44\xe9\xb3\x60\x10\x07\x21\x67\xcb\x7e\x79\xb1\x66\x96\x08\xe3\xec\xb8\x43\xef\xca\xee\xbe\x82\x8c\xba\x4d\x61\xd6\xf1\xc3\x93\x8a\xf3\x36\x66\x0d\xb8\x27\xd7\x8c\xe9\x27\x2e\x5a\x1c\x72\x07\xdd\xa8\x08\x19\x61\xc6\x08\x9f\x54\xe7\x97\xee\xd7\x48\x13\x1e\xc0\x57\x52\x82\x48\xf1\xd6\xcb\x95\x71\x8f\x6b\x82\x9a\x41\xa9\x1c\x9d\xaf\x99\x5e\x20\x18\xf6\x72\xe1\xaf\x22\xdb\xd7\x26\x66\xe5\x7b\x84\x89\x80\x99\x7b\x70\x81\x06\x45\x72\x3c\x1b\x2b\xa6\x03\xc5\x79\xfd\xb5\x06\x0b\x08\xb8\x02\xc2\xf8\xe7\xeb\xf8\x75\xbd\x05\xb9\x24\xa0\x95\x14\xbd\x3f\x4a\xf1\xbb\x35\x11\x4b\x6c\x75\x97\xad\xc9\x1e\x17\x93\x85\x1c\x2d\x16\x8d\xd4\x06\xa7\x76\xe8\x78\x21\x30\x55\xc5\xdb\xff\x87\xa3\xf2\x69\x73\xac\x3f\x8c\x8e\xbe\x7d\xe0\x72\x2d\x76\x53\x56\xc3\x01\x6d\xba\x0a\x6b\xf9\xc4\x80\x0f\x69\x8f\x40\x88\xf4\xf7\x2a\x28\x79\xd7\xe5\x6d\xf3\x19\xc7\x4f\x70\x3a\x5b\xb2\x87\x3a\x19\x0d\x17\x3e\x73\x60\x98\xd6\x8f\x80\xc8\x49\xb9\xa7\x70\xc5\x09\x45\x21\x10\x34\xbd\x7a\x72\xd3\xde\x13\xbe\xcb\x61\xb5\x9a\x28\x06\xe4\x4e\x9c\x53\x00\xb1\x01\x65\x70\x70\x7e\x76\x8f\x22\xdb\x46\x89\x0b\x93\xad\x75\x13\xb2\x7d\x87\x0f\x4d\x23\x13\xc2\xc4\x49\x7d\x75\xfc\x99\xf6\x39\xd3\x9a\x84\x4f\x36\x52\x51\x44\x6d\x62\x9f\x02\xeb\xbc\xd8\xea\x92\x67\x37\xf4\x4c\x81\x53\xb9\x7f\x6f\x36\x20\x25\xe2\xe5\x9c\x8b\x11\xbf\xee\xc2\x23\x8a\x41\x1a\x36\x2c\xe4\x12\x5f\x30\x4b\x2f\x71\xb5\xc9\x69\xb5\x4a\x8c\x44\xc4\xfe\x6b\x9e\x2e\xd3\x5f\xc5\x09\x7f\x3d\xd9\x91\x97\x57\x09\xf0\x09\x75\x85\xdd\x60\xdf\x87\xf5\xb1\x05\xf6\x60\x6f\x0a\x8f\x71\xca\x60\x99\x0f\x60\xa3\x79\xc7\xfb\x0a\x68\x23\x64\x26\xdc\xb5\xdc\x4f\xa4\x10\xeb\xd4\xd9\x70\xcb\xf3\x0b\x47\x49\xed\xa1\xf6\x36\x12\x1f\xe5\x8d\x28\xaa\xc5\x47\x2f\xa0\x25\x90\xe8\x2f\xfc\x52\xbb\x1e\x33\x27\x75\x4e\x9e\x2e\x8a\x9e\xbd\x87\xb5\xb6\x22\x25\xe2\x89\x6c\xf7\x51\x77\xb8\x14\x3f\xcf\x58\x51\xa2\x60\x98\xdb\x2e\x92\x16\xff\x9b\xcf\xf5\x55\x47\x93\x01\x66\x06\x4e\x55\x9c\x6e\xdf\xc7\x3f\xe3\x32\x60\x24\xbb\xc9\xeb\x99\xa6\x21\x50\x58\xe8\x05\x21\x4b\xb7\x1e\x8e\x06\xda\xab\x87\xc8\x4e\x0d\xcb\xc1\x64\xca\xd2\xa1\x6d\xa1\x67\x63\x5f\x60\xef\x7e\x38\x72\x50\x52\xbc\x54\xed\x10\x73\x3f\x83\xdc\xbb\x1b\x15\xa9\xdf\x64\x2e\x5d\x78\x6c\x8e\xcc\x8e\x94\x99\xed\xb2\xac\xb9\x17\x1f\x80\xcf\x5a\xfa\x98\x4b\x8c\x7a\xdb\x18\xb8\x88\x67\x64\x23\xc8\xcc\xc9\xe9\xbc\x6a\xdd\xf2\x8b\x44\xeb\x42\x6b\x0c\x39\x70\xfa\x4a\xf7\xf0\xc3\xe3\x10\x13\xde\x7b\xf4\xff\x06\xf3\x82\xc5\x37\x2c\x4a\xb9\xb8\xe9\x2d\xcf\x0c\x53\xe6\xa3\xf0\xf7\xf8\xc6\xb1\xf0\x87\x37\x74\x04\x09\xb1\x4d\x2e\x76\x0e\x2b\xfa\xf3\x77\x0a\x50\x3c\x62\x3e\x26\xb6\x8d\x93\x1a\xe3\xde\x55\x62\x6f\x13\xa6\x44\xe6\xfc\x87\x9f\xcf\x1e\x14\x18\x03\x08\xe0\xf3\x5b\x6f\x28\x7e\x40\x06\xb5\x55\x86\xfa\x7d\x87\xf4\x42\xdf\xc0\x66\x42\xcf\x29\x9c\xbf\x45\x22\xe8\x3a\x4b\xe5\x68\xc4\x3c\x7d\x75\x4e\x02\xc0\xd3\xf0\x60\x34\xf5\x00\x7f\x1e\xb7\xc2\x3e\x00\xd2\x83\x56\x2f\x21\xb3\x11\xf7\x9d\x7e\xa2\xce\x50\xe8\xd2\x1c\x93\x1d\x62\x8a\xf0\x9a\x41\x6d\xfe\xc3\x76\x1e\xd2\x6e\x44\xb6\xed\x27\x41\x7b\xec\x4e\xc9\x61\x71\x55\x11\x26\xd6\x4f\x66\x5a\x38\xc4\x04\x24\x1f\xa7\xce\x50\x2c\xda\xa8\x03\x95\x74\xa9\x1c\x7d\x7c\x93\x5a\x22\x3b\x1e\x82\x9c\x28\xa2\xd3\x37\xa5\x88\xbd\x07\x96\x02\xb9\xff\x35\xd3\xff\xe2\xa0\x6b\xe2\xff\xf2\xc1\x9d\xa9\xd4\x81\x81\x6d\x09\x19\x8b\x36\x0f\xd7\x20\xcc\xa8\x05\x7e\xdf\x7c\x51\xb2\x63\x9f\x0c\xbe\x36\x76\x5d\x9e\xf7\x67\xae\x1d\xa1\xd5\x1c\x28\x99\x5a\xe6\xba\xd7\xb4\x0d\x12\x0c\x8c\x4d\x70\x3a\x87\xc3\xf6\x85\x95\x72\x50\x9f\xc8\xd0\x08\xad\xb8\xdc\xab\x6b\xf8\xcb\x41\x30\x37\x8e\xff\xcb\xb2\x03\x4a\x2d\x01\x99\x39\x8e\x2a\x55\x05\x13\x17\xb2\x06\xbc\xc6\x39\x63\x87\x65\x54\xad\xea\x26\x77\xb2\xe8\xc9\xdf\x28\xcc\xa1\x85\x2e\x38\xcc\x16\xc7\x3f\xa2\xc0\x82\x42\x62\x00\x1d\x3d\xea\x7e\x52\x31\x7f\x42\xb6\x13\xff\xeb\x81\xf6\x80\xe4\x5f\x7b\x36\xa8\xc8\x9f\xd9\x31\x5c\x59\x58\x35\xd4\xa9\xfa\x90\x71\x72\xe6\x6c\x84\x4c\x78\x42\x64\xef\xf7\xf1\x75\x1a\x8e\xd7\x62\x80\xfc\xe0\xab\xb4\xdb\xce\xe3\x3d\xcd\xec\x49\x33\xc0\x66\x31\x7f\xdf\xe8\x31\xda\xe9\xbf\x2b\x24\x0c\xcb\x95\x73\x4f\x6e\xdc\xeb\xf2\x79\x74\x85\x0c\x8c\x4c\xef\x98\x2f\xc3\x67\x5c\x3e\x5b\x58\x6c\x43\x0a\xd7\x3d\xa0\x2d\x93\x71\x20\x28\xa9\x17\x5f\x9d\xcd\xed\x53\xa7\x0b\x54\xeb\x1f\x1e\xd3\x00\xa1\x98\x41\x09\x94\x74\x81\x5f\xd1\xdc\x52\xe2\xc2\x31\xc1\x49\x7f\xf0\x6d\x39\xab\x03\x08\xdb\xc0\x0d\xda\x06\x0d\x11\xd7\x6e\x89\xf5\xf1\x80\x63\xaa\xa9\x24\x71\x2a\x21\xe3\x03\xd8\x5f\xae\xd2\x2a\xc3\x0a\x94\x96\x2c\x05\xa5\xde\xf4\xfa\xe0\xcc\x5c\x99\xe3\xe5\xfe\xfc\xd0\x90\xe4\xa4\xa5\x6c\xb0\x52\x39\x6a\x0d\xe4\xe1\x09\xe0\xa2\x1c\x16\xff\xcd\xc3\xe9\xe7\xc4\x4e\xfc\x9a\x27\x3c\x3b\x56\xfb\x9c\x6e\x95\x61\x53\x33\xce\x2c\xde\x3b\x4f\xe7\x8e\x71\xed\x38\x6e\xaa\xa2\x90\x18\x91\x61\x84\xe9\xf8\xb6\xf0\xe9\xe7\xd3\x5f\x37\x7b\xca\xec\x52\x39\x3a\xae\xe9\xdb\x4b\x7a\xe8\xc7\xcf\xa6\x0d\x2c\xb7\x84\x4a\xea\x9b\x2f\x0d\x54\x4d\xae\x6d\x28\xac\x46\xec\x1c\xac\x4e\x77\x84\xf8\xf6\xe0\x8e\x8b\x15\xaa\x11\x62\x5e\xa9\x8a\x41\xda\x14\x7c\x42\x0e\xa7\x53\x60\x1b\xb5\x7b\x37\x3a\xc7\xf5\x8d\xa7\x4d\x70\x28\xc4\x3b\x2f\xdd\xc6\x1f\x64\x8d\xd1\xa6\x2b\xfa\xdf\x7d\x77\x2a\x41\x03\x19\x30\x7e\x89\x7e\xba\x8a\xb3\xa7\xaf\x07\xd3\x47\x64\xb7\x79\x4d\xe4\xe9\x52\xdd\xd7\xb6\x16\xda\x48\x36\x96\xb9\xb1\x15\xc5\x8e\x84\xba\xa6\xca\xa8\xcf\xdd\x57\xe5\xd7\x14\xf6\x4a\x3e\xac\x33\x6e\x58\xae\x2e\x96\x4d\x4c\xf9\x26\xaa\xda\x21\x2e\x34\x00\xe3\xe3\xa0\xfb\xb2\xc6\x8a\xa7\xbe\x81\x58\x8a\x92\xdc\xa5\x18\xac\xf9\x2d\xa7\x02\xd0\x81\xfc\x9f\x76\x28\xfe\xbc\x28\x20\x7e\x55\x74\x57\xc5\xcd\x9e\x0e\xe1\x96\x23\x25\x7a\x63\x5a\x61\x51\xa3\x3d\x34\x0c\xdd\x31\x40\x91\x1a\x04\x6d\x94\x3d\xfd\x24\x67\xd1\x54\xa0\xbe\x85\xf5\xfd\x45\x05\xed\x25\x86\x11\xe5\xe8\xe2\x75\x62\x64\xce\x90\xeb\x07\x48\xa5\x97\x6c\x7f\x5a\x7e\x2a\xd4\xc0\x19\xfb\x80\x5c\x43\x6a\x33\x36\x70\x80\xe3\x7f\x7d\x8d\xbe\xb2\x7a\xb0\xb3\x8d\x4b\xe6\x11\x81\x7e\x1c\x23\xdd\xa0\xa7\xf2\xc5\xc8\x69\x05\x90\x2b\xcc\x00\xe3\x67\x43\x3b\x74\xea\xaa\x4d\x70\x23\x19\x5d\xf6\x14\x26\x2f\x19\xaa\x4a\x17\x31\x12\xd7\xd9\x60\xe0\xb0\x5f\xe8\xa2\x98\x0e\xe1\xe0\xde\x82\x79\x42\xa7\x98\x18\x3c\x2c\x8a\xa8\xf8\xa3\x6d\x43\xb3\x65\x22\xb7\xb3\x8d\xe6\x4d\xcb\x96\xdc\x4d\x6a\x57\xb1\xd8\x9b\x24\x37\xeb\xc2\xf1\xc3\xb3\xff\x16\x9c\x30\x21\xdb\xe6\x35\xd6\x9c\x47\x59\x20\xac\x26\xe0\xf4\x7f\x7a\xbd\xdc\x0d\x00\x8f\x34\xfe\x47\x0b\x6c\x5e\x96\xde\xcc\x90\x4b\x50\x3a\x89\x71\xf3\x8a\x5e\xc6\x64\x8e\x87\xf9\x5b\x1f\x0d\x0f\x0a\xb4\x6f\xe2\x4f\x4c\xed\x56\x67\x2f\xd4\xa8\xe4\x8c\x7a\x49\xfa\x08\x06\x2a\x58\x6a\x12\x84\x49\xd0\xff\xf0\x0c\x59\xec\xf3\xdf\xf3\xb0\xc6\xc0\xf1\x9b\xc4\x35\xed\xd4\x64\x3e\x5a\xbf\x3e\x1b\xfe\xb0\x51\xf7\x03\xdc\x66\x10\xd0\xaf\x83\x17\x16\x37\x61\xa6\x61\x9d\x36\xbd\xad\x41\xed\x2c\x62\x8b\xa2\x2d\x77\x64\x83\xae\x43\xd1\xa2\xc2\x2e\xbd\xdc\x93\x7b\xe8\xc9\x8c\x3f\x67\x58\xc3\x71\x72\x5e\xbe\x31\x4b\x5b\xfb\x10\x9f\xde\xf6\x3b\xa2\x16\x52\x28\x91\x6a\xff\xe9\x26\xb9\xf3\x52\x8d\x86\x8a\x5d\x1b\xae\xd4\xc2\x8c\x4f\x59\xe0\xb7\xd9\x77\xce\xdf\x9a\x3e\xb1\x12\xc8\xcf\x5c\x3f\x2b\xfb\x62\x12\x58\x1c\x4d\x30\xbe\xc5\x05\x9b\x94\xf1\x23\xe2\xa1\xb7\x27\x37\x27\x1a\x24\x8b\xb1\x66\x02\x66\x73\x36\x0e\x4c\x7b\x06\xcc\x30\xaf\x76\x6e\xdd\xa3\x7a\xfd\x7a\x94\xd7\x2a\xd1\x8d\x57\xca\xab\xeb\x54\x90\xef\x23\x93\xb2\x76\x01\x22\xba\x5d\xaa\xbd\x85\x76\x5b\xe3\xf0\xd9\xf5\x7c\x9c\x79\x2b\x16\x86\x5f\xe3\xd2\xbf\x6e\x91\xb6\x36\xa4\xb0\x56\x13\x53\xe7\x54\x82\x64\xec\xf5\xdc\x3a\x4d\x0b\x12\x39\x7e\xc8\xb7\x69\xfa\x6c\xff\xed\xe5\x0a\x06\x84\xa4\xa8\xbd\x3e\x9d\x23\x65\x39\xcb\xa5\x27\xa5\x0c\xf6\xd1\x45\x09\x1b\xda\xa1\x0d\x01\x63\xcc\xa1\x77\x24\xa6\x82\xda\xb2\x84\xbd\x5e\x11\x8a\xb2\xb0\xed\x80\x8f\x63\x71\xa1\x58\x66\x07\x0c\x99\x24\xb5\x4d\x7e\x6a\xa4\x46\x55\x80\xd1\x62\xfc\x0a\x45\xb4\xaf\xce\x18\xa6\xea\x3f\xe0\xb0\x91\x48\x33\x45\x07\x86\x78\xd2\xcf\x35\xed\x53\x17\x45\x42\x4e\xcd\x72\x32\xba\x5a\xb3\xa4\x57\x85\x8b\x14\xbe\x4e\xee\xcb\xa6\x06\xf8\xc2\x7e\x90\x26\x9b\xa7\xa2\x11\xbe\x85\x3c\x5c\x0a\x3d\x03\x01\xaf\x3b\xed\x2f\x3e\xf0\x4e\x5b\x65\xed\x7b\x98\xa5\x44\xd8\xdc\x63\x51\xf6\x8d\x59\xa1\x6b\xb2\x94\xef\x31\x71\xc3\x70\x19\xce\x38\x25\x8d\xb3\x0c\x7a\xf2\x5b\x9e\x50\x4a\x27\x00\xbd\x42\xa5\x3e\x6d\x79\x5a\xa2\x30\x1a\x47\xce\x3f\x8f\xe6\xdd\xde\xad\x2d\xbb\x91\x31\x23\x98\xbe\x47\x4e\xbc\x01\x7c\x1a\x07\xc5\x44\x5b\x38\xb7\x73\x89\xbe\xc7\x17\xce\x74\x6e\x8d\xef\x6a\xf2\xd5\xa1\x92\x82\xa3\x4c\xe8\xf3\x17\x8e\x92\xdc\x1c\x04\xb3\xc5\x96\x9b\xad\x92\x0c\xea\x73\xbd\xf7\xfc\x7b\xbb\xdb\xa6\x7c\x01\x71\x43\x41\x04\xcb\x1b\xe7\xb4\x70\x07\xc1\x31\x2e\xd5\xb8\x22\x4c\xe1\x21\x4d\x30\xc3\x27\x76\x03\x33\x64\x52\x8e\x03\x6a\x1d\x96\x22\x08\xa4\x92\x50\xb8\x5f\x1b\xad\x54\x5b\xb8\x56\x03\x77\xcd\x9e\x62\x41\x03\x9f\x5a\x48\xe6\xb8\x5c\xf1\xb5\xc1\x4a\x4d\x28\x4e\x66\x14\x6c\x56\x29\xab\x01\x65\xd4\x06\x19\xe6\x1d\x2f\x0b\x5b\xbe\x6a\x15\x9e\xd5\x03\x9b\xa4\x32\x9d\xad\x18\xce\xe5\xae\x3a\xab\x00\x17\x42\xcc\xb5\xdd\x7b\xf2\xdd\x7b\x35\xbd\x50\x1a\xb2\xf8\x60\x8b\x33\xf3\xf2\xa3\x7c\x2c\xbb\x7c\xe1\x0d\xf1\xdf\x9e\xba\xb2\x8d\xf9\xe5\x61\x16\xb4\x12\xd9\x9c\x97\x4c\x5d\x9f\x99\x32\x21\xab\x2e\x2b\xe2\x95\x1d\xba\xff\x3b\x67\x7c\x25\x26\x97\xdd\xc7\x13\xc5\x20\x14\x82\xf4\xc4\xc1\xd1\xd9\x8c\x5c\xc7\xfc\x70\xa8\x52\x64\x1d\x73\xb2\xbf\xd9\x43\x36\x40\x33\x09\x72\x01\x84\x0d\x82\xc8\xaf\x69\xae\x8a\xc4\x77\x31\xa3\x3e\x97\xd8\x4a\x0e\xeb\xd4\xed\x3c\xf0\x5c\xbb\xe4\xd6\x36\xf9\x90\xdc\xe9\x43\xd9\xe6\x48\xf8\x4e\xc4\x8f\xea\x5b\xcf\x6b\x4a\xd1\xa1\xed\x10\x45\xe5\x3e\x3a\x7b\x2c\xfb\x35\x7c\x0b\x7b\x88\x99\xea\xd7\x28\xae\x3e\xa6\xc9\xb2\x20\x1f\x16\x44\x22\x83\xe4\x2e\xd7\xf2\x62\x1c\x74\x83\x44\xd8\xe3\xc6\xd3\xc2\x9a\x16\x33\x10\x1a\x8b\x4e\x69\xda\xea\x80\x8b\x4e\x20\xf7\xc5\xf2\x0b\xfa\x9e\x27\x6e\xda\x50\x52\x20\x15\x17\xae\xd7\xe7\x2a\x55\xe2\x26\x6f\xa9\xd8\xbd\x62\x74\x5b\xd9\x1f\x20\x37\x48\xdc\x76\x5b\xeb\x86\x29\x1b\x79\xdf\x22\x54\xac\x91\x8b\x37\x6c\x90\xf2\xd3\x81\x15\x32\xdf\x44\x0a\x83\xaa\xb8\x50\x91\xef\x36\x31\xe3\x65\x55\xee\xa7\xda\xd8\x26\x31\x1e\x15\x73\xc2\x3e\x7d\x12\x95\x22\xd7\xc5\xac\x14\x67\x0c\x98\x18\x7c\x71\x77\x92\x28\xe2\xb0\x29\xc0\x96\xa3\xbb\xb2\x95\x07\x06\xb0\x14\xc7\x38\xfd\xdb\x72\x5d\x2a\x18\xd6\xfc\x09\x1f\xf3\xfe\xb9\x23\xb4\x24\x8f\x85\x59\x53\xf4\xd7\x0a\xef\xcc\x3b\x3b\x26\x73\x19\xd1\x9f\x9d\xd2\xc0\x2f\xc2\x18\x57\x78\x71\xc0\xfe\x34\x1a\xdd\x18\xa4\xf0\xbe\x6c\x2e\x10\x57\x5c\x3f\x43\x78\xf2\x58\x98\xe1\x0a\x04\xe1\xea\x9b\xfc\xc7\x1b\x0c\x70\xb1\xd1\x8f\x5e\x52\x2c\x81\x90\xe3\x81\xfa\xe1\xca\x3e\x72\x75\x16\x58\x2c\xee\xe9\xdd\x8c\x1b\xf4\xa4\xf7\xb4\xeb\x8e\x41\x11\x2b\xb1\x22\xb9\x6f\xad\x22\x54\x66\xc5\x41\x9a\x73\xed\x7e\xb2\x55\xef\xc9\xeb\xd2\x99\xff\x63\x8f\xa6\x79\xb7\xca\x54\x8e\xdc\xaa\x93\x1a\x1a\x9c\x98\x98\xcb\x03\x26\x7b\x87\x51\xcf\xe8\xc7\x9d\xa1\x5a\xa2\x12\x13\xfd\xeb\x59\x99\x36\xaa\x21\x10\xd9\x94\xe0\x5f\x7a\x56\x35\xa2\xad\xda\x38\xb5\x56\x7b\x21\x18\xac\xd2\xfb\x03\xce\x42\x7c\x66\xe7\x70\x69\x36\x8c\xb2\x56\xec\xc3\x65\xf3\x03\x68\x71\x59\x3c\xac\x3b\xa7\x39\xb7\x58\x34\x05\x98\xe5\x3b\x86\x0f\x55\x07\x4d\x0c\xbb\x06\xc0\x0e\x73\x7f\x78\x58\x35\x40\x49\x10\xee\x00\x6f\x7f\x40\xe7\x9d\xd7\x30\xe3\xe6\xdf\xc9\x43\xf9\xee\x32\x6d\xe1\xc4\x88\x6f\x09\x49\x49\x68\x0b\xbe\x33\xa9\x57\x39\xba\x40\x70\xa5\xf3\xaf\x3f\x98\x56\x6e\x8c\xb6\x83\x29\x8c\xc7\x47\x29\x0f\xae\x81\xdd\x80\xca\xe7\x1a\xfd\x4a\xce\x39\xc4\x39\x2e\x1c\x18\xa5\x60\x74\xc2\x00\x97\x32\x47\xea\x99\xe5\x8a\x21\x4b\x50\x2a\x47\x7f\x92\xfb\xe6\xc9\x53\x66\xc4\x5f\xfa\x1f\x1f\xbb\x4c\x35\xcf\x5b\x5e\x9e\x98\xfd\x4c\xa5\x72\x74\xd5\x31\xd5\x2e\xb4\x41\x38\x90\x6a\xe8\x12\xfd\xd6\x27\xa6\x60\xb0\x1d\x39\x78\x58\x31\xc6\x89\x0b\x39\x53\x40\x06\xfe\x4b\xd3\x89\x86\x59\x5f\x00\xa6\x22\xc2\xe9\xfe\xf7\xaf\x8f\xd3\x4e\xb4\x6b\xa1\x20\xe0\x2f\x42\xa9\xaa\xfe\xe1\xa1\x8b\x92\xdb\x44\xc3\x9a\x05\x6f\xf7\x6c\x55\xbe\x5d\xca\x02\x8b\x7a\xd8\x24\xf0\xe4\x9f\xb1\x14\x2c\x81\x6a\xe0\xf5\x9f\x0f\x66\xd4\x31\x8c\x7a\x5b\x66\xb9\x3c\x50\xec\x40\x9a\xb4\x04\x8e\x94\x3d\x85\xc2\xc0\xf4\x75\xf0\x45\x69\x9f\x7b\x24\x6b\x79\xe6\x14\x10\x38\x79\x49\x63\xc5\xb8\x66\x68\xd7\x12\xbc\xc7\xe5\x0b\xc5\xa4\xbd\x89\x98\x23\x22\xf0\x26\x3e\x4b\x2a\x35\xb1\x6d\x27\x02\x82\x1c\xc8\x54\xd3\x0c\x3d\xfd\x00\x37\x30\x27\xfb\xe9\x5b\x40\x6f\x77\xb6\xd4\x9a\x39\x45\x98\x46\x15\xec\x48\x2e\x98\x9a\xa4\x54\x8e\x8e\x55\xb2\xc9\x39\x75\x59\x56\x4f\x75\xe9\xac\x26\xaf\xc3\x65\x6d\x85\x36\x93\x7b\x50\xe1\xa8\x89\xea\x14\x06\x7f\x5f\x54\xd9\xc1\x1e\x4e\x36\xa9\x85\x0f\x6e\xe7\xb2\x1c\xb7\x22\x97\xd4\x89\xd9\xad\xa8\x98\x15\xce\x46\xc3\xe2\xdf\xb0\x60\x79\x9b\x52\xc0\xa0\x7d\xbd\xb0\x2d\x0d\xd0\x81\x15\x63\x83\xfe\x2b\xb4\x55\x32\x60\xa4\xc4\xb8\x6b\xac\x3a\x8e\x86\xc1\x4b\xa9\x1c\x75\xbd\x97\x6d\x4c\xa7\x4e\xe1\xa9\x66\xa0\x35\x5c\x19\x9e\xd7\x88\x6f\x27\x25\x71\x7e\xb7\xe6\x88\x6c\x84\x81\x0d\x4c\x2e\xf9\x1d\x56\x09\x7e\x76\x95\x30\x3f\xe0\x6b\x7d\xa0\xc9\xcd\xbf\x52\x2b\x2d\x39\x94\x52\x47\x79\x7d\xb6\xa8\x09\x1c\xca\xa5\x5d\xd2\x6b\xfc\x72\xc0\x08\x35\x8c\xe2\x56\xc9\x47\x0d\xf1\x74\xb7\xec\x55\x86\x58\x86\x45\xc1\x37\x5e\xc4\xaf\xef\x9d\xa7\x53\xc4\x03\xc3\x4a\xd3\x45\xd1\xd4\xb0\xcd\x15\xd4\x12\xd3\x15\x19\x53\x2e\x3e\x4f\x49\x6e\x2d\x0f\xce\x66\x11\x9d\xd1\x2a\x70\x18\xd7\xd6\x84\x5c\x51\xfe\x8b\x0f\xcb\x6c\x91\xee\x68\x60\x0c\x0e\x10\xa6\x19\xed\xe5\x3f\x32\x82\x84\xf4\x74\xc1\x40\xad\x79\x47\x0d\xe4\x67\x0a\xcc\x9b\x56\x6b\x52\x46\x21\x03\x40\xbc\x78\x58\x6f\x0d\xe4\xaf\x63\x29\x0e\x14\x34\x4f\x71\x52\xff\xec\xc8\xfc\xa3\x89\xc0\xde\x56\x45\x77\x08\xc4\x01\x04\x0e\x6e\xcd\xd5\x3a\xa0\xc9\x21\x41\xa2\x56\xd1\x7c\x4c\x23\x50\xc6\xe9\x59\x1c\xbd\x65\x6b\xf5\xbd\x56\x57\xc8\x52\xbf\xce\xdf\xbd\xa7\x48\x1b\x30\xc2\xc7\x09\x4b\x37\x29\x8b\x52\xc6\x30\xc0\xaa\x04\xd2\xe2\xd2\x47\x65\x38\x72\x31\x81\xdc\x5b\xee\xc9\xdd\x7e\x42\x43\x34\xa3\x3a\x16\x1f\xe0\xb0\x66\xfd\xed\x11\xea\x62\xcc\x44\xb9\x38\xe1\xbc\x2b\x94\xaa\x0e\x4c\x67\xda\x0c\x74\xa3\xf3\x5f\x54\x56\xa2\xe2\x77\x46\x7d\x35\x78\x06\x72\x91\xdd\xf2\x83\x64\xfb\x3d\xf1\xb8\x4c\xf6\x5c\xc5\x1c\xba\xa8\x33\x8f\xc8\x24\x67\x58\x21\x33\xac\x0c\x99\xf2\xc5\x95\x17\xeb\xed\x02\x32\x52\x92\xf0\x87\x3a\x78\x0b\x70\x0b\x75\x5b\x6d\x73\x92\xbb\x04\xaa\xac\x4a\x18\xac\x50\x0b\x77\xbe\x78\x69\x16\xd7\xd8\x4e\xcd\xd1\xc6\x59\x16\x75\x85\x7b\x42\xa9\x1c\x7d\xa4\x43\x6f\x06\x1d\x47\x30\xa7\xa2\x8f\xaf\x93\xde\x32\x93\x27\x97\xca\xd1\x8d\x2f\x2b\xd6\x89\x71\x75\x16\xb7\x86\xaf\x5e\xa1\x8c\x24\x98\x6f\x21\xfb\x9a\x76\xab\xe6\x7b\x9e\x57\x99\x3c\x2e\x4d\xd8\x9f\xc5\x60\xa7\xf2\x23\xe1\x7f\xcb\x3d\x85\xe6\xe1\xf6\x38\xe8\x26\x73\x4c\x90\x97\x1b\xe2\x6a\xe0\x6f\x64\xd4\xb9\x1b\x67\xb2\x76\x3a\x7e\x5a\xeb\x10\x50\x10\x97\x3a\x76\x2a\xb2\xba\x69\xbf\xba\xea\x13\xe6\x23\x89\x08\xd5\x59\xae\x95\x0a\x62\x95\xb9\x91\x0a\x61\x17\x1b\xc8\xc4\xe0\xf4\x1f\xff\xbd\xbf\x15\x2f\x8c\x7f\xb6\xac\x5f\xfe\x34\x4d\x93\xa9\xa7\x9e\x05\x66\x7a\x8a\x8e\x6c\xa1\x76\x52\x3a\x7e\xb8\x70\x7a\x47\x6f\xd3\xe3\x83\x4d\x3b\x92\xce\xb1\x27\x17\xf5\xcf\x9e\x7b\x6c\xfb\x18\xb6\xfb\xd1\xeb\xe3\xdb\xe0\x41\xdc\xe6\x58\x50\x0e\xef\xdb\xa8\x35\x14\x36\x6a\x49\xbd\xab\xe2\xb6\x59\x17\x89\x9c\x26\x1d\xc5\x94\x29\x1f\x09\xd2\xb0\x3a\x6a\x8b\x6e\x90\x2a\x3c\x53\x92\x4d\xf7\x4b\x1b\xf4\x6e\xaf\xc2\x3d\xcd\xe0\x7d\xfd\xae\xbf\xc2\x65\x8c\xcb\x6c\x3e\x7c\xd9\xb8\x4b\x81\xaa\x5b\x18\x9c\x45\x2f\x58\xa1\x40\x6a\x90\xd8\x88\x7e\xe6\x3a\x4d\xaa\x52\xa0\xd8\x7c\x8d\x1e\x65\x73\x1b\x51\xe1\xfe\x31\xbd\xa1\x3d\x37\xe4\xb7\xc4\xd2\xf0\xe2\x81\x6d\xf8\x5c\x8f\xba\x66\x07\xd7\xaa\x3e\xfa\xc2\x50\x75\xa3\xad\xd8\x69\x1e\xe0\x0f\x6c\x31\x96\xa5\xc3\xbd\x5b\x15\x35\x7c\x64\x13\x1f\x37\x00\x06\x48\x4d\x39\x11\xcc\x98\x06\x7f\x78\xc0\x45\xa2\x9c\x75\x6b\xa5\x10\x7a\x9f\xfc\xd0\xfd\xbc\x85\xac\xda\xad\x52\xa5\x15\x17\xe6\x30\x9f\x2d\x1c\x5c\x24\x06\x85\xc8\xaf\xf3\xf1\x17\xf0\xdf\xc6\xc8\x39\x8b\xb2\xb8\x8f\xa6\xcd\xd3\xc5\x07\x88\x5b\x9f\xd8\xd5\xc5\x8d\x86\xc6\xf1\x24\x61\x20\x3f\x44\x5c\x28\x2f\xfe\x0d\x7f\x1c\xa8\xca\x96\x54\x90\x8b\xa1\xfa\xcd\xb9\xef\x6b\x6a\xc7\x75\xe2\x25\xf9\x66\x76\xa7\x36\x4c\x48\x64\xa5\xb9\x21\x13\xcc\x90\x4b\xcf\xf2\x9d\xda\xc2\x30\x4e\xc0\x7e\xbb\xed\x66\x61\xa7\xf2\xa6\x0d\x8b\x30\x64\x94\xca\xd1\x6d\xc3\x75\xa3\x5d\xc2\xd5\x4e\x3d\x21\x4d\x18\xad\x5c\xae\x68\x3f\x52\x57\x9a\xc9\x16\x83\x07\x04\x56\x1a\xd5\x33\xf1\xb6\xf4\xd0\x20\x79\xcd\xb1\x58\xa9\xbe\x35\x4f\x25\xc4\xd7\x18\x32\xd3\x99\xe0\x6d\x9a\xfb\x24\x06\xfe\x0e\x47\xc2\x7d\x5b\x6b\xa1\xe2\xe2\x02\x83\x10\x5d\x77\x72\x20\xee\x99\xc2\x8b\xbf\x25\xd7\x5d\xdf\xd6\xfe\x7c\x6c\xb7\x2e\x09\x62\xd2\x26\xec\x85\x3c\xa0\xf8\xe4\x2b\xaf\x6a\x7f\x61\x8d\x87\x12\x13\x1d\x78\x5f\xd1\x75\xe9\x42\xd4\x69\xb4\xdb\x5f\x7d\xf0\x29\x21\x0d\x83\x4c\x53\x1d\x6c\x54\xdf\x53\x9c\xe2\x28\xad\x3b\x88\xc1\x4a\x76\xb5\x26\xac\x37\x7d\x1a\x77\x60\x15\x2c\x26\x1c\x65\xff\xb8\x2b\x34\x6b\xf0\x71\xe1\xfe\xe5\x7f\xcb\x34\x79\x0d\x2e\x0a\xc0\x51\x6c\x77\x2c\x55\xe1\x22\xb5\x1a\x36\x39\x90\xe2\xf6\x6d\xc3\xb5\x7f\xe4\x0b\xa6\x47\xee\xc5\x55\xfa\x5c\xc7\x2c\x4d\x9e\xdd\xd9\x99\x7a\xa5\x5f\xc3\xda\x1c\xab\x1d\x92\x0e\x48\xbe\x7d\x4a\xa6\x19\x17\x31\x83\x72\x26\x46\xe4\xf7\x19\xa5\x1d\x2a\xcf\x0e\x81\x88\x06\x2d\x15\x7a\x3d\x0d\xc8\xb3\x3a\xe3\xbf\xbf\xed\xed\xf4\x7e\xd1\xcc\x50\x61\xc0\x1d\xfc\x24\xdd\xe0\x78\xb4\x99\x42\x03\x6f\x5d\xa6\x7b\xcf\x55\x2a\x98\xa5\x30\xdc\xdc\x79\xe7\x14\x01\x6a\x88\x0d\x47\x96\x4a\x15\x2f\xd2\xb6\x0d\xc9\x1f\x5c\xa7\xe4\xa6\xac\x25\x46\x61\x48\x1f\xc5\x66\x0b\x31\xa1\xa2\x30\x23\xea\x4d\xbb\x1c\x27\x40\xf9\x82\x3b\xad\xad\x7c\xa5\x20\x60\xcf\x6b\x8e\xff\xbd\x5a\xb3\x2a\xb5\x91\xc3\x95\xcd\x0b\x7f\x7a\x5c\xa7\x23\x9b\x98\x35\x29\xb3\x45\x8a\xf9\x8e\x95\xed\x65\x0d\x17\x07\xbd\xd9\x6e\xe5\xbf\x76\x87\x96\xe4\x90\xe7\x87\x36\x4e\x48\x9d\x37\x2c\x97\x40\xcc\x19\x1d\xb3\x66\xc3\x16\x68\x75\xdb\xdc\x0d\x3b\x95\xa4\x3e\xe9\x39\xcb\xe7\x54\x15\x64\x1b\x71\xad\x54\xee\x29\x1a\xd2\x5c\x96\x86\x41\xa9\x1c\x7d\xf0\xa0\xa2\xe3\x4a\x4d\x80\xc8\x0c\x99\x01\xa3\x31\xce\x7f\x2c\x5d\x0f\xa3\x78\x58\xf0\x64\x57\x6c\xcb\x47\xba\x19\xfe\x9e\xba\x58\x7c\xe0\x20\xb7\x17\xbf\x21\xf4\x2c\x26\xfe\x4c\xea\x78\x5c\x3f\x45\x07\xe4\x39\x1e\x4e\x14\x2a\xf2\x0f\x36\x78\x1c\x5e\x88\xaa\xca\x88\x3c\xff\xa8\xb6\xd2\xc2\xbe\x81\x3c\xb1\x20\x89\x96\x70\x6f\xb6\xd4\x82\x54\x41\x76\x0d\x7b\x48\x1b\x0a\x86\x41\x62\x2e\x9e\xfb\x76\x37\xdf\x89\x80\xfd\x03\xac\x38\x19\xf7\xd8\xfe\xcd\x8b\x97\x2b\x83\xbf\x00\x7e\x55\x1b\xe6\xe1\xe1\xe7\x87\xaa\xba\xad\xdc\xea\x2a\xfe\xb1\x5f\x7b\x27\xcb\x5a\x4a\x3d\x18\xda\xd5\xef\x0a\x8b\xb7\xcb\xf5\x09\x51\x94\x69\x0b\x17\x2d\xce\xac\x65\x60\x28\x21\x43\xf6\xc8\xe1\x3c\x8c\x55\xec\xf8\x4f\xc0\x12\x1d\xf2\xe1\x9f\xbb\x15\xe1\x6d\xb8\xfb\x62\xbc\xbe\xda\x56\x5d\x0e\x6a\x6e\xca\xfb\xfe\xe9\xf0\xc4\xcd\xc7\x23\x10\x80\xa2\xb5\x7d\xf9\xd6\x82\x93\x24\x7a\xf2\x83\x84\xd7\x65\x5c\x3c\x61\xdf\x17\xab\xf4\xdc\x9d\xfd\x44\x51\x1d\xff\x1b\xe3\xa5\x2c\xa9\x19\xb4\x85\x7b\x55\x83\xdb\xae\x19\x54\x78\xb0\x9e\x37\xb8\x19\x6f\x7e\xcf\x58\xad\x9f\xe0\xf6\xdd\x89\xe3\xe8\x27\x8e\x88\x0f\x1b\xe7\x7f\xbe\xe8\x1a\xf6\xb8\xa8\xd1\x68\x20\xea\xd3\xe8\xb6\x03\x72\x7b\xa7\xd2\x30\x72\x61\x85\x7f\xe6\x4a\x18\x47\xb1\x6f\x2e\x1b\x24\x1d\x43\x48\x3a\xe0\xd3\xb8\x72\xbe\x87\x8d\xd0\x4e\x29\x3a\x85\xaf\x74\xe8\xea\xd1\x7e\x1d\xa7\xad\x6a\x59\xd3\x75\xa7\x61\xc0\x50\x2d\x25\xe2\x0d\xdd\xda\xdb\xa0\x3c\x51\xd7\x2e\x2e\x9d\xa1\x1b\xd5\xa7\x03\xff\x3c\xda\x75\x79\x5b\x4d\x61\xe3\x52\x15\x39\xc4\x4e\x08\x0f\xf9\xdf\xb3\x2b\xda\xdb\x95\x20\x80\xec\x2b\x73\xdd\xad\x2f\xf3\xc7\x30\x65\x72\x09\xd0\x30\xcf\x64\x8b\xc7\x1a\x37\x35\xcc\x1f\x3a\xa2\xcd\x90\x3a\xa6\x89\x19\x52\xfe\xdd\x21\x69\xed\x17\x17\x20\x84\x2f\x1d\xf3\x07\xb5\x01\x36\x65\x15\x22\xb5\xb0\x0a\x0f\x0e\x10\xfe\xf3\x77\x85\x88\x13\xe7\x0b\x4f\x3e\x2c\x3b\xc1\x26\x09\x2c\x93\xa1\xa6\x72\x09\x6e\xbf\x53\x31\x54\x35\x94\x28\x7f\xeb\x8d\x7c\x48\x56\xf6\x1d\x10\x9b\x4c\xf5\x57\x16\xae\xd0\x96\x60\x12\xb4\x3c\xa9\x54\x8e\x76\x4f\x52\x90\xe3\x26\xb6\x3d\x8b\xc4\x0f\x7e\xda\xa9\xe1\x7a\x61\xe8\x43\xad\x1b\x9d\x5c\xa7\x0c\xb2\x1d\x07\x9b\x44\x98\x0a\xe4\xfa\x29\x96\x70\x35\x06\x9e\x3f\xbc\x3b\x7a\x77\x20\xbf\x3f\x3e\x22\x71\x6d\x7e\xbe\x3a\x3b\x64\x88\x04\x20\x9c\x9b\xaf\x4f\x50\x1d\x86\x03\x82\x5c\x58\x12\x0c\x3a\x22\x50\x94\x24\x51\x9f\x38\xb5\x3d\xa1\x10\x1b\x36\x62\xe9\x14\x6a\xe2\x39\x7d\x22\x07\xec\x3a\xbe\xdf\xf9\xac\xad\xcc\x5e\x2d\x46\xdc\xba\xf8\x61\x6f\x9d\x16\xab\x18\x8c\x1d\xcf\x42\xbe\xd8\xd9\xe7\xbf\xb0\x60\xb4\x5a\xa4\xa3\x96\x4f\xb2\x53\xf8\xf9\x1b\x06\x2b\x73\x69\x40\xe5\xc6\x0f\xe1\xf7\x8a\x01\x5c\x46\xf1\x61\xbf\x22\x6d\x83\x98\xcd\x3b\xd7\xdc\xdb\x73\x74\xb9\x4b\xb0\x79\x17\xf1\xb8\xb0\xf3\xa1\xec\x1f\x4f\xe3\x1b\x02\x5e\x27\xcc\x4a\x4b\x02\x6c\xb6\x35\xfe\xb9\xed\x77\x64\xd3\xac\x8d\x51\xd5\xef\x05\xd1\x50\xf8\xa7\xc3\xc9\x68\xae\x82\x59\x89\x7a\x01\x1f\x0e\xbf\xaf\x01\xd8\xe2\x8f\x15\x84\xcc\x4d\x57\xf0\x0b\x76\x8c\xcc\x94\xd5\x89\x4b\x33\x4c\x19\x06\x77\xaa\x67\x01\xb7\xac\x64\xe2\xb7\xf1\xe9\xf6\x1b\x9d\x78\xda\xff\xf9\x79\x05\x01\x88\x20\x65\x0f\x5d\x29\xa5\x32\x0d\x05\x7b\x96\xbf\xfb\x5c\xb6\xac\x6e\x10\x03\x97\x3c\x86\x1d\x92\x64\xfb\xcf\x3f\xa8\xb9\x2f\xa2\x1a\x76\x33\x43\xc9\xf0\x55\x25\xde\x05\x49\xbc\x7b\x6e\x9f\x84\xad\xb5\x68\x58\x2a\x47\x97\xbd\xc6\xd7\x72\xb4\xd2\x25\xd7\x36\x07\x56\xa7\xff\x38\x64\x35\x41\xd7\xda\xa3\xf1\xb3\x1c\xe2\x26\xa8\x7c\x53\x41\x74\x02\xab\x85\xbb\x3d\xde\x38\x57\x0e\x0b\x2c\x64\xdb\xa4\x12\x32\x6e\xd7\x95\xff\xc6\xd1\xa1\x4d\x65\x20\x64\x93\x84\xfb\xf9\xeb\xa1\x9a\x63\x2d\xb5\x81\xc2\x91\x54\x46\x47\x98\x5e\x4e\xb8\x7e\x68\x07\x62\x63\xff\x68\x5e\x1b\x85\xa4\xac\xd9\xa4\xcb\x5f\x37\x72\x64\x5b\xed\x97\xca\x40\xbf\xb5\x4c\xf8\x6e\x53\x06\x8c\x90\xdc\x75\x9b\xb4\x71\x79\x60\x61\x97\x03\xbc\xa4\xc9\xe3\xb3\x1b\x94\xa9\x0f\xf5\xeb\xb4\xe1\xd7\xdb\xc9\xbc\x7f\x6c\x9b\x18\xc2\x79\x83\x0b\xd4\x1d\x08\xf1\x67\xd4\x04\xb3\x22\xf8\x8f\x0f\x71\x47\x8a\xd2\x22\x64\x50\x55\x48\x75\x6f\x55\x0e\x25\x38\x85\x08\x5a\xa1\xe3\x4f\x49\xe0\x28\x32\x1b\xc4\xcf\xac\xe8\x72\x9b\x86\x28\x4c\xb6\x06\x66\x5c\x68\xb8\x70\xc1\x5e\xb8\x20\x36\x76\x4b\xd3\x15\xdf\x86\x75\xda\x67\x85\x5d\x2e\x4f\x14\x17\x6b\x0e\x0c\x80\xd7\x65\x42\xdb\xe5\x0b\x27\xd3\xe2\x9e\xe1\x4a\xa9\x1c\x4d\x1a\xa0\x3b\xf1\x0b\xbc\xfa\x65\xdd\x43\x14\xf0\x5d\x95\xd8\x22\x47\x2c\xdf\xc9\x5f\x81\x45\x18\xff\x5e\xc1\x21\x19\x93\x71\xc8\xa8\x27\x98\x0b\xd1\xda\x0e\xd9\x31\x5b\xc4\xe5\x8f\x21\xf7\xc6\x8b\x0a\x42\x06\x3b\x48\xa0\xd3\x5b\x4f\xc9\xa9\xab\x4b\x81\x7c\xd9\x53\xfc\xe8\x98\xf4\x02\x76\x51\xa6\x74\x36\xa3\x99\xfc\xdb\x3e\xe5\xf8\x8c\xc2\xe7\x35\x27\x09\xea\xf1\x29\x1c\xd7\xdb\xfa\xde\x86\x6c\x32\x9e\x0e\x2b\x18\xbd\x8a\x3c\xd5\x47\x83\x66\x12\x8e\xb8\xe4\x93\x96\xdf\x1d\xe1\x85\xf4\x72\xbc\x06\xb5\x83\xc6\x9a\x03\x25\xbe\x14\x7a\xfa\xb4\xfe\xd6\xb4\x79\xef\x22\xae\x61\x61\x21\xac\xa9\xd6\x91\xff\xe7\xfd\xc1\xae\xba\xa4\x0b\xb8\xe2\xc0\x13\x33\xf4\x29\x83\x83\x5c\x54\xc3\x82\x77\x0c\x2f\x81\x8b\x12\x94\x6e\x41\x2c\x20\x6e\xdb\x48\xb3\xf8\xf9\xb9\x29\x9f\x25\xc0\x3e\x17\xe1\xff\xf5\x72\x8d\x8f\x89\x1a\x94\xf1\x42\x11\xfe\x7c\x75\x55\xe9\x46\x08\x07\x38\xff\xed\x94\x3e\x61\x76\x69\xe8\x1a\x62\xea\x5e\xf8\xc4\xe0\xf4\x11\x58\x48\x85\x1f\xfd\xe3\x79\x89\x84\x36\x31\x38\x99\xab\xb8\xf6\x94\x86\xc6\x27\xc8\x6c\x65\xf1\x25\xcb\x3a\x87\xa9\x8a\xa3\x8c\xa5\x6a\xb3\x33\x1f\x4e\x26\xcb\x55\xb0\x90\xde\x38\x2d\x0b\xb1\x9c\x3c\x7b\x56\x27\x84\xdb\xcc\xd0\xfc\x7d\x4d\x27\x98\x13\x17\xf5\x33\xf0\xdc\x40\xad\xb6\xc3\x66\x85\x6a\x42\xaa\x85\xdf\x6f\x1c\xa6\x0c\xdd\x6c\x1b\x4e\x09\x3c\xb6\xae\x0e\x8d\xd2\x11\x56\x6c\x21\x81\x54\xa8\x0e\x94\x3c\x69\x1f\xb5\xe5\xcd\xc2\xb8\x3d\xaa\x7e\xaf\x4b\x02\x04\x52\xc2\xb9\x19\xf7\xa4\x6b\x6a\x12\xd0\xb6\x31\x4a\xff\x3e\xca\x64\xb2\x5b\x18\xe8\x2f\xb8\x5c\x31\xc9\x0d\xc4\x4c\xba\x54\x8e\x7e\x7d\xf0\x6a\x2d\x3e\xb0\xd0\x45\xa2\x28\xcd\x3e\x89\xe1\x4c\x15\x10\xe2\xeb\xa1\xdc\x07\x17\xa6\x2c\xa1\xa9\x53\x60\x39\x57\x6d\x8b\xd8\xc4\x4c\x76\x80\xdf\x5e\xd8\x5f\x34\x04\xb5\x10\x3a\x95\xc1\xaf\xa4\x47\xc4\xec\x56\xd9\xdc\x37\x9d\xd0\x81\x13\x4c\x8a\xe9\xed\x1a\xa0\xa0\xff\x39\x81\x5f\xd4\x77\xfd\x9e\xd1\xc2\x9d\x8d\x59\x3d\xd1\x8e\xf2\xb7\xf7\x36\x71\x15\xda\xd2\xf9\x99\x63\xb4\x05\x52\xdc\xaf\x72\xb3\xe3\x28\x7c\xbf\x97\xe1\x64\x12\x62\xed\x19\x8a\x58\x08\x0a\x92\x41\xfc\x73\x72\x01\x0d\x5f\x36\x1a\x37\x57\x53\xf7\xc6\x06\xe7\xca\xf1\xa9\x7e\x71\xeb\x56\x4d\x1a\xdf\x37\x90\x8d\x02\xc5\xe3\xe1\xee\xd3\x72\xee\xd7\x15\x22\x55\xd1\x24\x78\x53\x59\xa0\xda\xc8\xa6\x4e\xa9\x1c\xbd\x75\x8e\xa7\xed\x85\x37\xdc\xb2\xf4\xd6\xe5\x37\x5c\xbb\x20\x41\x3a\xdf\x3e\x52\x15\x4c\xa9\x12\x83\x40\x3e\xfe\xeb\x48\x1d\xd8\xe4\x52\x23\x05\xf1\x44\xff\xbd\x47\xab\xc3\x18\xa9\x11\x57\x71\xa2\xbc\x6e\x99\xd2\x75\xa3\x4a\x98\x08\x85\x15\xef\x57\xe4\xca\x50\x85\xd4\x38\xc7\xba\xf0\x0d\xc5\x5d\xb0\x69\xa1\xc4\x22\xad\x38\x4c\x28\x54\x83\x4e\x10\xa7\x75\x8c\x5f\x38\x30\xe9\x4f\x48\x90\x00\x57\x7f\x21\x09\x1c\x55\xaa\xd8\x56\xe6\x9f\x56\x3a\x6a\x33\x14\xe6\xec\xf1\x8f\xa9\x28\xdb\x70\x54\x65\xa4\x8e\x5c\x8e\x83\xbf\xe2\x31\x79\x3f\x1a\xb8\x86\x93\xdf\x51\xd8\x65\x5f\x94\x44\xe0\x54\xef\xff\xdb\xbb\xf4\x33\x1e\x9a\x2d\x31\x05\x2d\x7c\xfd\x30\xef\xe0\x96\x00\xb4\xf3\x83\xcb\x7a\xd3\x2a\xe4\x35\x49\x0a\x75\xfd\x58\x51\x13\x6b\x46\xb5\x9a\x20\xdd\x2a\xd0\xf9\x13\x43\x44\x85\x6f\xd8\x02\x1e\x07\x69\x71\x93\xc0\x37\x49\xa9\xe2\x1b\x07\x49\xda\x5a\x0a\x89\x9f\xfa\xae\xe6\x8e\xc2\x8b\x04\x3e\x6c\xf9\x27\x4d\x7d\x20\x15\xad\x95\x0d\x22\x7a\x53\xd6\xd8\x81\x05\xd2\x7d\x52\x4d\xa3\xcf\x82\x51\x4a\xeb\xd6\x40\x71\x0e\x90\x7d\xdf\xaf\x94\x63\x1b\xd0\x90\xb9\x28\xd9\x2e\xe7\xbe\xfb\xb2\x22\xd3\x44\x58\x68\x97\xea\x16\x0a\x88\xaa\x26\xe1\xaf\x95\xbf\x38\x64\x7e\xa8\xaa\x08\x15\x3f\x34\x25\x5b\xb0\x54\xb0\xf0\x8c\x2e\xde\xae\xf0\x00\x3d\x46\x1b\xc4\x14\x50\xf0\x31\xbd\x01\xd1\x38\x49\x6a\xeb\xce\xf4\x3c\x05\x54\xc5\x1c\x3f\x57\x51\xce\x13\xf1\x79\x63\x14\xff\xb4\x17\xb6\x5f\xae\x02\x74\x96\x2e\x5b\xda\x86\xd0\xe9\x29\x2c\x15\x0b\x92\x9b\x30\x0b\x94\x37\x5a\xf8\xfe\x5e\x7d\xaa\x18\x20\x9b\xd6\x12\x0f\xa0\x2f\xec\xca\x22\x12\xd2\xf3\x2a\xc0\x1f\xc9\x33\xb8\x62\x7f\xf6\x88\x79\x16\xb1\x45\xff\x8c\x24\xb9\x81\x05\x89\xdb\x29\xd8\x4b\x16\x6f\x50\xf6\xe8\xdd\xb0\xd6\xea\x06\x5c\xec\xf0\xb5\x52\x1f\x92\xa4\x3c\xdf\x49\x63\x75\x63\x35\xc4\x04\xf0\xef\x64\x45\xf5\x26\x9d\x3e\x39\xfe\x6f\xbf\xdd\x26\x3c\x18\x5d\xda\xac\xa0\xa4\x58\xfc\xc5\x72\x4d\xde\x0f\xb7\x91\x03\x0a\x43\x75\xaf\x6c\x56\xa7\x8d\x0c\x89\x24\xea\xd2\x06\xbe\x86\x4d\x7d\x18\x51\x45\x57\xf5\xd1\x00\xb2\xd2\x5c\x04\x0a\x92\xed\x6f\x4b\xd1\x6e\xa4\x8f\xae\xa3\x7f\x9b\x23\xaa\x12\x6a\x8b\x85\xe2\x73\x6f\xca\x33\xc4\xeb\x47\xde\x59\x5f\x72\xa7\x04\x25\x05\xc4\xa1\xbe\x85\xdd\x3a\x6d\x28\x87\xf6\xbf\x37\x48\x84\x80\x67\xa3\x40\x19\xc4\xe7\xf7\xde\xa9\x96\xab\x6e\x0d\x8e\xe5\xbe\xd3\x19\x5b\x47\xec\xa4\xcc\xeb\x15\xfb\x34\x1a\xad\xc1\x57\xbe\xc9\xe2\xa1\x60\x79\x1a\xf4\x5e\xf8\xdf\xa6\xa2\x6d\xcf\x0d\x56\xe8\xff\x4d\x6c\xc2\x1c\x35\x37\x60\x1a\x3f\x10\x01\xc3\x10\xe8\xbe\xd8\x90\x11\x10\x3b\x98\xd5\x38\xdf\x3a\x9a\x37\x47\x09\x99\x9e\xc7\x28\x32\x00\xcd\x55\x28\x3c\xaa\xad\x4d\x19\x09\x52\x7d\xf3\x82\x73\xe8\x22\x25\xa0\xc6\xb7\x25\xba\xf7\x75\xcd\x9c\x15\x37\x85\x8f\x59\x7e\xce\x92\x31\x5a\xba\xf7\xf9\xce\x59\x11\xab\x5f\x24\xf8\xd5\xa4\x26\x00\xb1\xb9\x47\x8f\x48\x64\x22\x2c\xe9\x64\xf1\xbc\xf4\xe5\x76\x33\x4c\xe4\xa6\xee\x1d\xdf\xd8\x9c\x76\x3e\xb3\x3a\xa6\x00\x1c\xe2\x51\x39\x65\xf1\xa8\x1f\x36\x90\xdd\x0a\xeb\xea\x90\xfb\x5d\x61\x57\xb4\xe4\xba\xb6\x09\xc7\x99\xb3\x9a\x2b\x1f\x6a\x26\xbb\xfa\xbe\x7b\x14\xff\x15\x5a\xc3\x02\x9c\xe1\xac\x10\xcb\x51\xcc\x18\x11\x14\xb7\x68\xde\x72\x3e\xff\x48\x16\xfe\x9c\x97\x5f\xc8\x6f\xe3\x11\xfe\x76\x1a\xf2\x49\x11\x59\x3c\x38\xf3\xeb\xa6\xf2\x9b\xf8\xdc\xe8\x01\x4a\x9c\x8d\xdf\x5d\x7d\x96\x2e\xa9\xcc\x02\xe2\xa3\x04\xfc\xfb\x1f\x2f\x8b\x06\x9a\x70\x88\xdc\xa1\xa2\x7c\x06\xb0\x2b\xf1\x03\xe4\xaa\x0b\x9c\xcb\xce\xd3\x80\xe0\x30\x0f\xd0\x94\x77\x0b\xbb\xcf\x0d\x56\x70\x8f\x9e\x47\xf8\xee\x6c\xc7\xf8\x0b\x92\x67\x3e\xa9\x54\x5e\x91\x3d\x3c\x35\x86\xdc\xb4\x16\xcb\x5d\xa5\x2c\x76\xa7\x74\x76\x4e\xea\xec\xec\x84\x26\xfb\xf4\x60\x0d\x80\x8c\x98\xdd\xe2\xbe\x9c\xff\x3f\xba\xbe\x3e\xde\xaa\xaa\xcc\xdf\xf3\x12\x91\xe1\x05\x79\xb9\x20\x20\xa2\x22\x22\x70\xae\xf7\x5e\xde\x2e\x84\x84\x08\x88\x88\x1c\x02\x24\x24\x22\xd6\xd9\x7b\x9d\xb3\xd7\x3d\xfb\xec\x75\x5c\x7b\xef\x73\x5f\xf4\x47\x68\x0c\x12\x29\xc3\x98\xe3\x38\x44\x66\xa4\xc4\x10\x11\x31\xa4\x64\x44\x0c\x99\x99\x43\x4e\x11\x19\x63\x44\x44\x66\x46\x66\xe4\x10\x31\x0e\x77\xcf\xef\xb3\xd7\xb3\xf6\x5e\x6b\xaf\x73\xe7\x4f\x2e\xf7\x9e\xb3\x5f\xd6\x7a\xd6\xf3\xf2\x7d\xf9\xcd\xc9\x88\x88\xed\x87\x55\x85\xf2\xe2\x56\x34\xc5\x11\x0d\x33\x21\xaa\x15\x34\x6a\x4c\x02\x87\x4b\xfa\x8a\x56\xf0\x93\xab\x87\x29\xe9\x11\xf0\x5b\x05\x85\x26\xb8\x7f\x31\x3c\xb3\x16\xa1\xc9\x78\xfd\x58\xcd\x7e\x07\xd9\x36\xa3\xb4\x22\x32\xde\xc6\xd7\x64\xe6\x63\x20\x33\xb2\xda\x2c\x6c\x18\xa1\xa7\xb7\xc4\x23\x15\x51\x6d\x05\xb7\x6c\xd0\xc1\xd4\xb4\x42\xbd\x08\x13\x94\xbe\x7f\x0c\xa4\x18\x53\x9b\x38\xce\xf4\xc9\x33\x5a\xe6\x4a\x9d\x12\x66\x02\x0f\xd0\x67\x91\x4a\xfc\xad\x61\x14\xb5\x42\x67\xec\xd2\x75\xf2\xb1\x63\x46\x99\xdc\xab\x3b\x12\xda\xb7\x02\x41\xcc\x13\x89\x5b\x96\x6a\x73\x53\x8b\x21\x37\x92\x30\xff\xf4\x91\xba\x0b\xf7\xc0\x1c\x85\x07\xe0\xcb\xdb\x22\x5b\x10\x01\x0f\x47\x11\xfb\x6f\xef\x76\xc1\x43\x74\xba\xc2\xe7\xc0\x51\x2e\x03\x62\xa2\x91\xe3\x92\x68\xc0\xfd\x8d\xa5\xaa\x51\x8a\x00\x37\x64\xb6\x3d\x0d\x47\xec\xb2\xdc\xa4\xe6\x66\x25\xf3\xb8\x04\x2f\xeb\x63\x3e\x86\xa0\x77\x9f\x90\x4f\xf0\x70\xa5\x0a\xfc\xa3\xe0\x67\x9a\xec\xb8\x5f\x65\xc4\x95\x6e\xf2\x0f\x5f\x92\x81\x99\x73\x3c\x3a\x2c\xcc\x47\x49\xd9\xda\x38\xb9\x4a\x62\x32\x94\x30\x18\xf9\xaf\x45\x5a\x27\x0a\x55\xa8\xe9\x25\xcf\xb1\xbf\x6e\xd3\xa5\x13\xab\xc4\x43\x76\x34\x2f\xce\x34\x1f\xd2\x79\xbb\x39\x2c\xc0\xda\xd0\xbe\xf9\xc1\x00\x6d\x62\x41\xdc\xaa\x2f\x2b\xf6\xaf\xcf\xd2\xff\xde\x14\x13\x1b\x21\x84\x3a\x44\xb3\xa5\x36\x81\xa9\x28\x30\x99\x99\xe6\xc2\x55\xd1\x91\x01\x52\x00\x99\x6f\xcd\x92\xcf\xde\x41\x44\x08\xec\xfe\x69\x5b\xbf\x18\xb6\x1c\xee\x88\x3b\x1f\xd4\x8a\x25\x8c\x2a\x11\x9a\x26\xfd\x8d\xc3\x75\xca\x9e\x51\x39\xfc\x1f\xcd\xaa\x80\x29\xa8\x30\x3d\xd0\x20\x21\xd1\xd3\xa6\xf3\x9c\x7f\xa7\xcc\x4f\x5c\x2f\xea\x00\xfc\xec\xa8\xd2\x47\x62\x04\x83\x81\x71\x6a\xd8\x1a\x71\x0b\x16\xaa\x82\xc1\xa8\xb5\x3f\xfe\xc0\xd6\xe9\xb9\x5c\x3e\x78\xe3\x8c\x6e\xbb\x4e\xba\x23\x08\xf0\x0f\xc7\xdd\xa8\x5d\xac\x5f\xa9\x72\x6c\x53\xb2\x32\x5e\x76\x44\x23\x8e\x62\x64\x8b\xea\x30\x75\x2e\xd0\xb2\x15\x0b\xbc\xe4\xf2\x3d\x99\xef\x76\x4a\x90\x5a\x2b\xcf\x9b\xd6\x6c\x94\x91\x13\x33\xbf\x0a\xa4\xfa\x0f\x6b\x3d\x3c\xdc\x69\xe0\x28\x56\xa5\x3e\x9d\x4d\xbe\xc4\xfb\x7d\xec\x42\xa7\x8b\x7f\x47\xf1\x80\x22\x1f\x69\x31\xdf\x29\xc3\x14\xd5\x1e\xcf\xb1\xe9\x55\x20\xde\xe9\xad\x91\xfe\xfb\xe2\xa7\x44\x1c\x8e\xb5\x98\xdd\xaa\x38\xf2\x5b\xc8\x41\x84\x7b\x1a\xa4\xbb\x8e\x27\xbb\x59\x25\xd4\x8d\x3d\x54\x2f\x98\x9c\xfd\xf0\x1c\xed\xc5\x53\x0f\xd9\xf0\xe2\xaf\xd9\x32\x20\x3a\x76\xdd\xa8\xc6\x4a\xaf\x5a\xa0\xf2\xb6\x58\x24\x80\x92\x6e\x1a\x29\x84\xfb\xc0\xb8\x24\x8c\x96\x5f\x9e\x0f\xc7\xa6\x43\x9d\x30\x52\xd9\xdc\x2c\xb9\x27\xbd\xc8\x12\x82\x65\x93\x78\x94\x3c\xb0\x21\x59\x2a\x4c\x9e\x1e\xc1\x52\x66\xbf\x2b\x24\x0d\xa9\x89\x01\xc9\x42\xf7\x2a\x60\x0c\xe2\xe0\x5c\x17\x06\xd6\xd7\x47\x5f\x1a\xa6\x27\x63\xd8\x8d\x70\x7b\xbf\x79\x59\x18\x9b\x5b\x24\xbc\xac\x51\xe7\x47\xa8\x84\x65\x65\x2e\x01\x59\xe4\x8d\xe9\xe4\xea\x2a\x52\x86\x49\xc9\x89\x09\x11\xd1\xe0\xb0\x73\x6f\xbd\x4c\x0b\xa9\x09\x63\xb4\xd4\x43\xb3\xe1\xe2\x0d\x98\xe5\x87\x15\xab\x27\x16\x7d\x18\xd0\xf9\x4f\xbe\xf0\x4a\x32\x5f\xf8\x24\x97\xd2\x3d\xf3\x64\xa3\xca\x09\xaf\xf8\x31\x8c\x3a\x33\xee\x7c\x9c\x28\xf7\x26\xb2\x3c\xec\x2a\xc9\x5b\x09\xd3\x8c\x0f\x6f\x50\xe8\xb5\xcc\x14\x81\xf5\x90\x18\x97\x09\xfb\xf3\x7c\x4f\x6a\xbe\x06\xea\x25\x2e\x78\xb6\xa4\xd6\x9f\x1c\x5a\x97\x0d\x08\x94\xe7\x77\x2e\xde\xa4\x05\x39\x5c\xa2\xbd\xa9\x6b\x65\x5e\x7b\x5d\x22\x4f\xaa\xbe\xa7\x88\x95\x06\x4b\x16\xea\x20\xc5\x0a\xe8\x7c\xc0\xfc\x28\x35\x5e\x56\xa1\x0e\xae\x74\x63\x5d\x41\x20\x78\xfc\x89\xe4\x55\xd8\xb8\xd6\x35\xb1\xb7\xab\x48\x7f\x4d\x28\x60\xdc\x25\xb5\x67\xdc\x36\x6d\xd1\x38\x9d\x04\x7b\x5d\x10\xc4\xef\xdd\x27\x93\xf3\x02\x75\x7c\x98\x26\x54\x9f\x18\x9a\x94\x3f\x65\x7e\x4c\x94\x3f\x79\x59\x2e\xce\x08\xd3\xc4\x5f\xf3\xf5\x27\x75\xc3\x20\x5a\xa9\x7a\x22\x4e\xfc\xb5\x38\x41\x7b\x04\x31\x76\xa4\x57\xc9\x56\xe3\x84\xd8\x54\x7c\x51\x74\x10\x13\x26\xab\xb7\x6d\x49\xee\xf7\x76\xec\x45\x34\xc5\xe4\xdf\xaf\x7e\x42\x33\x90\xb3\x30\x13\x88\xe7\x4c\xdf\x53\x9a\xf2\x35\x95\xc6\x52\x59\xe7\x86\xe1\x6a\x49\xbd\x62\x82\x1c\xde\xe4\xf2\xc1\xef\x97\xf7\x8b\xe2\xd6\xcd\x37\xe7\xf2\xc1\x88\xa7\x65\x31\x75\x73\x54\xad\xf6\xbd\x02\x56\xde\x22\x2e\x78\x19\x5e\xf6\x8a\xd9\x5a\xa7\x3a\x2c\x64\x6a\xb1\x9a\xf7\xb4\xe1\x8d\xfa\xfa\x10\xf6\x39\xd9\xd1\x9d\xb7\x26\xd3\x24\x5c\xa2\xa6\xd3\x85\x5c\xcb\xe9\x42\x5d\xbd\xb9\xea\x05\x83\x86\x29\x95\x94\xc3\x67\xbc\x10\xd3\xee\x9e\x38\x48\xa1\x92\xda\x9e\xcf\x27\xb2\xc1\x47\xb5\xb2\x95\x16\x8b\x00\x5f\x07\x65\x9f\x74\x57\xa7\xb6\x3b\x00\x95\xc0\xf1\x59\xf9\x99\x43\xd4\xa7\x35\x71\x02\x7f\x04\xe1\x43\x3e\x3b\x5e\xb3\x4f\x86\x82\x3d\xa0\xef\xeb\x16\x8d\xe1\x41\x2e\xd0\xe6\x15\xb1\x67\xef\xb4\x69\x81\x47\xa9\xec\xa0\xc1\xb0\x0e\x68\x51\x65\xf7\xdc\x7a\x54\x93\xee\x23\x4e\xac\x8d\x9e\x9e\xf6\x96\x9c\x6d\x99\xdd\x58\x8c\x20\xa2\x1a\xe2\xcb\x1a\x0a\xc0\xb0\x49\xb8\x80\xe3\x26\xe2\xac\xc9\x71\xdf\x94\x94\xb8\x52\xd0\x7f\x57\x01\x55\x7e\x07\xb4\x9d\x92\xeb\x6c\xad\x06\xba\x8c\xec\xf2\x2b\x38\x16\x8b\x99\x79\x60\x48\xa2\xf7\x1d\xd6\xd6\xbc\xde\x7a\x44\x13\x42\xe7\xde\x07\x3c\x5b\x15\x29\xd8\xef\xde\x52\x47\x30\xb8\x03\x31\x70\x95\xe8\x3b\xb1\x2e\x9c\xf8\x8e\x40\x4a\xbb\x75\x93\x86\x9e\xd4\x4d\xcd\x83\x45\xc2\x5a\xb2\x38\xcb\x32\x52\x8c\xf4\x2e\x8f\x90\xd5\x16\x47\xa6\xe5\x4c\xca\xd9\xaf\x3c\x84\x1e\x79\x56\x21\x31\x71\x9a\xc3\x82\xb1\xc9\xdb\xb5\x88\x6d\xf3\x2f\x94\x10\xae\xb1\xfb\x35\x20\xa2\x30\xea\x45\xb6\x18\x7e\x3d\xf3\x8e\x9e\xf2\x50\x5a\x14\x6a\x83\x2f\xa7\x93\x1b\xa5\xec\x33\x33\x62\xd1\xe5\x7b\x52\x37\x3b\x4a\xf6\x4d\x1d\x0a\xbb\xcb\x3f\xae\x6b\x65\xf2\x19\xb0\xc0\x3d\xae\x78\x7c\x60\x14\xc7\x6a\x71\x5b\xa1\x27\xf5\xdd\x55\x1a\x1a\x95\x51\x37\xdc\x5e\x60\xf4\xcb\x93\x97\xf1\x17\x87\xa9\x6d\x37\x54\xad\x62\x14\xae\x34\x70\x28\x58\xa3\xa1\x49\x2c\xea\x56\x2d\xe4\x45\x43\xb0\xe1\x16\x94\x0f\xd4\xf5\x18\x32\x22\x30\xc5\xf7\x56\x6a\x90\x3f\x4e\xe8\x9e\x30\xa6\xde\x74\x79\x55\xa3\xda\x3f\x2c\xd8\xb8\x12\xc1\x83\x9d\x93\xba\x61\x2c\x5c\x33\xb4\x63\x76\x2b\x02\x88\xae\xcf\x4a\xe0\x1a\x9d\x3e\xda\x26\x3b\x0e\x6d\x7c\x5b\xef\x6c\x55\x4a\x43\x5a\x61\x88\x4b\x65\x7d\xe2\x49\x45\xeb\x22\x8c\x99\x3c\x8b\x9c\xf5\xb0\xf2\xbb\x0c\xbb\x1e\x4f\x47\xb2\x5b\x47\x27\xdf\x96\x43\x3d\x0b\x54\xe4\xc2\xe5\xfd\xfc\x05\x91\x57\x31\xec\xba\xbe\x40\x7f\x7c\xf1\x95\x11\x5a\xbe\x88\x6c\x0e\x38\x13\x6c\x94\x3f\x6f\x8a\x07\x3a\x56\x78\x3d\x0d\x4f\x2a\x62\xcd\x0e\x87\x71\xf3\xbc\xe3\x2b\x6f\x48\x81\x41\x6e\x1f\x16\xc7\x06\xff\xb0\x78\xf0\x71\x18\x0b\x3f\x37\xad\x20\xf2\x0a\xd8\xc1\x45\x31\x38\xcf\xce\x9f\x33\x3e\x99\xdd\x3a\x98\x85\x07\x42\x0d\xbb\xbd\xf8\x76\xa6\xc6\xbd\x2a\x73\x8d\xfb\x7d\x86\x1c\xc0\x88\x5c\xff\xe8\xd5\x52\xea\x40\xb4\x2d\x83\x8f\xaf\xd7\xc4\xd9\x69\xb9\x8b\x4e\x30\x23\x7c\x45\xea\xdb\xc3\xe0\xac\x6e\x99\x0c\x0a\x98\xe1\xeb\xfb\xd0\x4f\xe4\x7b\xb7\x71\xb1\xa8\x74\x81\xbf\xa0\x9d\xaf\x50\x68\x40\x90\xce\xae\xed\x84\x87\x0d\x8e\x72\x10\x5f\x3e\xd8\x10\x3f\xa3\x2a\x2f\xa0\x25\x0a\x61\xcb\xda\xeb\xf4\x3d\x68\x92\xa4\x58\x4e\xea\xc2\xc5\xd1\x7a\x7d\x17\x06\x2e\x9f\xb8\x16\x8e\x8c\x6e\x33\xd7\x77\x4a\x3c\xbd\x02\x4b\x09\x6e\x7c\x55\x20\x9d\x1c\x2e\xf0\x90\xbd\x33\x0b\xd7\x57\xe1\xfe\x42\x22\xfc\x9c\x9a\x28\x4f\x2a\x60\xb4\x8a\x04\xf0\xf4\xde\xeb\xf4\xaf\x46\x55\x70\xb1\x8f\x7b\x04\x2f\x8d\x97\x53\xb8\x9c\x4b\x6d\x02\x70\xdf\x30\x84\x5f\xd2\x6c\x3c\x78\x05\xef\x72\x45\x17\xbe\x77\x6f\xdd\xa9\x0d\x9b\xc3\xc2\x3a\xcc\xb1\x85\xd4\xf1\xad\x9a\x13\x55\xcb\xf4\xe9\x93\x22\x85\x94\xbf\x3d\xa5\x4b\x4e\xba\x2e\x41\x4e\x64\x35\xfe\x3f\xcf\xd6\xf9\xe1\x79\x8c\x14\xc2\xba\x18\x16\xf8\x35\xa7\x14\xa1\xc8\x62\xb1\x5e\x28\x32\xbd\x7b\x60\x32\x31\xaf\x16\xdc\xde\x50\xc1\x99\xec\xde\x04\x83\x12\x0b\x54\x58\x6a\xd5\x86\xab\x55\x51\x30\x93\x76\x84\x3f\xad\xbd\xa2\x4a\x00\x5b\x88\x55\x60\x23\xdd\x79\x5a\xcb\x4d\x6d\x44\x2a\xbc\xbc\xe3\x38\x86\x0b\x27\xb5\xd1\x0c\xc1\x25\x6c\x27\x18\x76\x03\x67\xc9\x49\x23\xe1\x9f\xd9\x25\xcb\xe6\x2a\x1f\x43\xdd\x58\x95\x2f\xda\x43\x9d\x55\xd4\x05\x89\x51\x66\xca\xa6\x86\x28\xcd\xf3\x19\x57\x06\x27\xef\x6a\xb4\x2a\xea\x84\x3b\x11\xba\xba\x2f\xbc\xa9\x59\xd4\x09\x03\xd9\xae\xf3\xf0\x31\xd4\xe1\xb9\x5c\xf8\x9c\xbf\x36\x47\x22\x3d\xb1\x3a\xda\x1d\x76\x60\xa8\xda\x19\x2e\xf0\x96\x89\xd8\x91\x07\xb6\x26\x88\xc9\x58\x58\x96\xf4\xa4\x07\x4f\x56\xea\x58\x8f\x14\xa3\x2e\xd6\x86\xbd\x09\x50\x6d\x31\x46\x45\x65\x3b\x16\x69\x0b\x01\xca\xaa\xd8\x4a\x28\xf5\xdb\xd7\x34\xae\x33\xb6\x49\x0d\xbc\x2b\x04\xfa\x68\x49\x20\xb3\x70\xda\xe1\x60\x05\x74\x92\x5e\x7e\x46\x72\x75\x39\x44\xe6\xb6\x99\x10\xf6\xee\x62\x34\x4c\x05\x40\x02\x26\x73\x64\x86\xcc\x4f\x0b\xa8\x00\xa8\xdd\x7e\xdb\x21\xcb\x2a\xf8\x14\x3c\x39\x32\xab\xde\xed\xaf\x9c\x05\x55\x7e\xd4\x3f\xf0\xac\x4c\x5b\x84\xe2\xbf\xe0\xbd\xdc\xdb\xae\x4b\xc7\xfb\x2c\x82\xe2\xf5\x64\xfe\xba\x40\x9b\x89\xf9\x9e\xb0\xc6\x3c\x6e\xca\x09\x3e\x60\xec\xf2\x3d\xa9\x4d\xef\xd5\x8d\x76\x3c\x18\xa7\xac\x5d\xa2\x9c\x64\xd8\x60\x98\x9b\x58\xdf\xbf\x03\xca\xea\x49\xd3\xb8\x8e\xda\x17\xc6\xc1\xe9\xbe\x9c\x9a\x4a\xec\xca\x7a\xab\xe4\x7d\x63\x54\xe2\xf2\x92\x33\xce\x69\xa6\xa8\x0e\x67\x9a\x12\x2f\xa2\x5d\xa4\xcf\x8c\x4d\xe4\xfe\x1f\x5f\x3a\x67\x42\xb4\x6e\x78\x59\x3e\xbf\x31\x4a\xfe\x17\x2e\x5c\xa6\xe6\xa3\x0f\x0c\x83\xab\x98\x73\xfb\x9d\x0b\xe6\xc2\x9c\x3b\x5c\x4e\xdb\x1f\xd7\x24\xdb\x9b\x44\xcd\x26\x82\xe4\x77\x67\x25\x08\x09\x06\x07\xc2\x65\x6f\xb1\xe5\x02\xad\x74\xf1\x70\x49\x7d\x97\xf7\xf5\xf6\xae\x90\x4f\xb0\xe0\x77\x77\xf3\xc5\xff\xc5\x13\x8a\xc9\x18\x29\xf5\x26\xc2\x97\xe9\xb7\x46\x42\x24\x59\xdd\x7f\xa7\x5e\xbc\x12\x44\x84\x96\x60\x83\x32\x64\xab\xdb\x65\xca\x16\xf9\x95\x53\x26\x37\xb5\x70\xea\xfa\x65\xcd\x11\xb4\x84\xc2\x5c\x01\xf0\x08\x8b\x36\x69\xd5\x95\x4f\x6c\x0f\x9c\xd4\x82\x1d\x1a\xb5\x10\x4e\x44\x08\x6e\xfc\x89\xbd\xd0\xa6\x10\x5f\x70\x8d\x46\xbb\xe9\xef\xe7\xaa\x56\xca\x1e\xa9\xc4\x8c\xa3\x3e\xe9\x48\xff\x48\xef\x22\xad\xdc\x0b\xff\xb3\x08\xdd\x61\x11\xdf\x55\xf4\x3c\xb3\x77\x0f\xd3\xa2\x5a\xb8\x39\x91\xcd\xf9\x86\x22\x7f\x2b\x9d\x1d\xa1\x28\x89\xb2\x1a\xe1\x14\x6a\x39\x0f\xea\xbf\x3a\xb9\x9a\x84\x76\x26\x72\x84\xb7\x68\x4f\x7a\xc8\xc3\xa3\xf5\xf5\x66\x51\xa7\x2b\x31\x56\x4a\x7d\x6d\x66\xf2\xa4\x43\x65\x5c\xa0\x0e\x4d\xf8\x89\xcc\x78\x5c\x85\xe3\xf1\x0e\x1b\xdf\xc7\xcf\x9e\x97\x67\xaf\x6a\x17\x9e\xbe\xed\x92\x2e\x90\x4d\x23\x10\xc5\xc1\xc5\x4a\xa7\xd2\x26\x55\xe0\x68\xa7\x82\x4d\xa3\xb4\x2c\xc8\xc3\xac\xca\x88\x8b\x85\xf2\x42\xf0\xb2\x06\x57\xf5\xfc\x0a\x8d\x48\xc2\x1f\xdd\xa0\x6a\xe3\x41\xc6\x95\xba\xa0\xb7\x87\xb1\x87\x88\x83\xa3\xa7\xb3\xfe\x40\x7c\xf1\x2e\x23\xea\x90\x67\xaf\x46\xd8\xe6\x0c\x86\x48\x54\x2a\x35\xf8\xf1\x46\x05\xc8\x57\xb2\x04\x8a\x26\x97\x0f\x7e\x7c\x40\xee\xf9\x12\x65\xe5\x70\xc3\x7c\x5d\x31\x21\xe4\x4a\x37\xe1\x16\x0b\x1c\x5b\x01\xec\x22\x17\x18\x76\xd1\xf7\xff\x4b\x67\xb2\x70\x6d\x6b\x16\x99\xf5\x63\x9a\x3d\x3e\x9f\x4e\xf1\xa4\x04\xee\x68\xdb\x52\xb9\x0f\x2d\xe4\x98\xe0\xfd\x92\x58\x92\xdb\xa4\xf0\x15\xe2\x51\x36\xfb\xd1\xc3\x9a\xfe\x91\x45\xc2\xb7\x12\xd6\x90\xc0\x62\x5d\xb6\xa4\x27\x3b\x75\xe3\x35\xea\x49\x8f\xca\x0a\x5a\x33\xb8\x73\x14\xe0\x00\x97\xf9\x05\x86\x2a\xc8\x21\x09\xac\xdb\x17\x57\xa8\x94\xbf\x4a\x91\xb2\x08\x20\xf4\x37\xcd\xdd\x9d\x38\xe1\x0d\x81\x4f\x33\xbf\xdf\x1b\x0e\x26\x81\xda\x60\xe6\x9a\x9d\x33\x67\xb8\x5a\x60\xd4\xb8\xaf\x93\xdc\x17\x85\x95\x10\x9f\x5b\x72\x61\xa4\xc8\xce\x9c\x2f\x43\x5c\x98\x08\xc1\x09\xf4\x81\x0b\x5a\x13\x80\x5b\x4b\x8b\x94\xf2\xd5\x59\xf2\x7b\x27\x4d\x6d\x86\x41\x57\x4f\xfa\xb6\x27\x54\xf9\x51\xee\x7f\x9f\x0f\x5a\x0f\x5c\x25\xd5\xd8\x78\xee\xb6\x6a\x9f\x24\x43\x51\x8b\x70\x7b\x6f\xbb\x59\x0a\xa0\x1b\x75\xc2\x2a\xa9\x25\x57\x28\x88\x35\x5a\xe3\x1f\x3c\xcc\xec\xaf\xa8\x79\xf1\xb4\x26\xf3\xa5\x8d\x6a\xba\xea\xe1\x52\x44\xfe\xef\xb3\x46\xa3\x88\x59\x60\x1a\x07\x88\xfb\x1f\x35\xf5\x93\x39\x02\x57\x52\xe8\xa3\xce\x64\x2b\xc4\xb5\x51\x2d\xbc\xcc\x03\xdb\xaf\x53\x16\x70\xe4\x8d\x91\xa8\xc8\xc7\x1d\x93\x97\xd0\xda\xac\xac\xda\x9a\xe2\x3f\xe8\x62\xc3\x0f\x2f\x8d\x77\x59\xd7\x2a\xfa\xa0\x76\xd5\x42\x61\x31\xce\x78\xd1\x92\x5a\xab\xf9\x80\x19\x94\x31\xbf\x2a\x46\x34\xfc\x3d\x6d\x9d\xa8\x54\x83\xbe\xe7\x12\xbe\xb3\x6f\xd5\x50\xd7\xdc\xb9\xc4\xc3\x4d\x11\x92\xcc\x3a\xa5\x9c\xf3\x3e\x4c\xa4\xbe\x76\x64\xb0\xcc\x57\x54\x69\xe5\xbb\x75\x06\x20\xae\x52\x06\x3d\x10\x20\x33\xbc\x0c\xc9\xca\x3c\x53\xd0\x23\x32\x5f\x79\x51\xbe\x9a\x32\xb1\x29\x97\x68\x6c\x56\xb4\xa9\x14\x8c\x4f\x64\x8d\x72\x52\x5e\xd1\xd4\x49\x4d\x93\xa7\x70\x0c\xf4\xc2\x3a\xc6\x8d\xcd\x69\xd9\x30\x4b\xbc\x6d\x7f\x32\x0d\xe7\xa2\x2b\x55\x0a\xa3\x40\x6c\xc6\x4e\x21\x5f\x5a\x77\x9d\xf2\x84\x19\x46\xf5\x14\x84\xf4\x6f\xde\x1e\x28\x8e\x22\xa6\x72\xe1\xda\x97\x2a\x80\x1f\xd5\x4d\x72\x9d\x94\x66\x72\x2d\xe9\xeb\x19\xfc\xbe\x55\x41\x73\xdb\xb4\x26\xc8\x35\x4b\x0f\x0a\x00\x2a\xa3\xa0\x0e\x7f\xec\x69\x81\x60\xa3\x8e\x87\x39\xdd\x20\x3d\x74\x3f\x14\x60\xad\xd3\x45\x4f\x35\x7c\x04\x6f\x2b\x2e\x6d\xe1\xee\x2f\xd3\x0e\x97\x9b\x1e\x65\x47\x2d\x8a\x14\xe0\xcb\x9e\xaf\x90\xcf\xd2\xdf\x6b\x12\xe0\x5d\xc4\x22\xaf\x9c\xff\x30\x75\xd4\x23\x22\x95\x68\x31\x2c\x52\x38\xde\xaa\xab\xd2\xb2\x97\x15\xa1\x87\x30\x81\xcc\xc5\x15\x1e\x2f\x0c\x74\x5e\x3f\x13\xe2\x71\xd0\x43\xda\x23\x0d\x63\xc1\x84\xaf\xc1\x81\xc3\xfe\x0e\x46\x8d\x32\xf6\x54\x7a\xe0\x1f\xb5\x84\xa4\x0a\x58\x4e\xde\xde\x3f\xb1\x5d\x9e\x04\xb8\x13\x88\xf9\x31\x8f\xe6\xd7\x3b\xe5\xa5\x17\x31\x4f\x71\xf8\xfa\xff\xf6\xe8\x81\x75\xd3\xe9\x7c\xf0\xa1\xc5\x5a\x9b\xbd\xc4\x70\x44\x11\xc9\xfc\xd3\x4a\x21\x4e\xe7\x38\xbe\xd3\x4d\x90\xa7\x6c\x81\x74\xcf\x48\x5d\xb4\xc1\x24\xc8\x51\x79\xd1\xfb\x1a\x92\x59\x42\x37\x36\x89\x6d\x27\xb3\x84\xb1\x42\x07\x14\x55\x38\xb7\x28\xa7\x58\x6f\x39\x51\x1e\x95\xfe\xc3\x02\xc9\x9a\x62\x4d\xf2\x10\xb9\xd9\x52\x84\x7d\x5d\x83\xef\xc0\x5c\x3e\xf8\xe4\x2e\x98\x6b\x2f\x27\x25\x95\x20\x90\xf9\xce\x59\x2d\x7e\x63\xd2\x1d\xd3\x61\xbe\xdd\xa9\x48\x42\x71\xab\xd0\xf0\xa1\x5d\x3c\xa6\x34\x9f\x91\xe3\xa0\x02\x04\x93\xcb\xbb\xd4\xe4\x06\xd9\x10\xb7\x7a\xd2\x0f\x9f\x6d\x90\xa7\xc0\xe4\xe6\x5c\x3e\x58\xb8\x23\x79\x30\x9b\x44\xe8\x4c\xce\x7c\x59\x49\x0e\x3b\xab\x36\x22\x11\x42\x67\x7b\x73\xb2\x16\xf1\xa3\xe9\x76\x7a\xc8\x92\xf8\x41\x18\x8a\x36\x65\xf0\x11\x4f\x53\x17\xc6\x2e\x58\xde\xfe\xec\x2d\x0d\x32\x21\x74\xf3\xa2\x30\x30\xb0\xf3\xda\xe8\x90\xad\xf8\x0e\x71\xeb\x54\xa0\x33\x73\x37\x8f\x52\xa5\x11\xdc\xfa\x6e\x72\xfa\xdc\x2a\x5d\xa6\xd0\x8b\x26\xd7\x56\x9b\xcc\x7b\xca\xc8\x46\xae\x15\x99\x08\xec\x9c\xab\x51\x0d\x38\x61\x03\x41\x9e\x95\xba\xdd\xd2\x48\x2e\xbe\x5d\x42\x8c\x20\xbe\x76\xee\x5c\x32\x2f\x78\x4e\x33\xaa\xae\x62\x07\xd9\x30\x1e\x0a\x3e\x7b\x74\xb4\x16\x03\x0d\xcb\xd5\x14\x8d\x52\x67\xab\x3a\x92\x83\x3a\x2e\x15\xf3\xe7\xeb\xdf\x12\xda\xa2\x22\x6d\x89\xed\x45\xbe\xfe\x46\xdd\xcc\xad\x86\x19\x34\xb3\xaa\xc3\x45\xf8\xf2\x5d\x8f\x9a\xe1\xf1\x71\xe8\x4d\xcd\xf6\xd9\xe7\x62\x2b\x55\x30\xf7\x5c\xb7\x55\xcb\xb4\x8d\xb2\x43\x3b\x6c\x2c\x08\xf7\x90\xbe\x8d\x3c\x24\xd8\xa0\xd8\xc4\x58\x34\x3f\x76\x17\xfb\x45\xc5\x17\x37\xa4\x4d\x15\xaf\xd0\xa6\xb4\xd3\xa2\x49\xc7\x4f\xab\x8d\x09\x0c\x26\xa9\xda\x62\xae\x92\x62\x17\x35\xcf\x5d\xe4\x3b\x86\x25\xc0\xdb\x3d\x99\xf4\x7e\x45\xc1\x33\x8c\x74\xd0\x78\x6c\xab\xd5\x4d\xa8\x84\x68\x69\xf0\x42\xa7\xe2\x57\x80\xf9\x10\x35\x7d\x87\x34\x71\x21\x76\xa1\x6e\xe5\xbc\xb7\x4b\x03\xb7\x71\xa5\x7e\x7e\xe5\x23\xce\xa9\xde\x4a\x61\x91\x02\x97\xdd\x72\x51\x81\x11\x5a\x98\xd5\xd3\x98\xd7\x79\x32\xa3\xf6\x5d\x9f\x07\xf4\x14\xde\xaf\xd8\xf2\x3b\x2e\x27\x17\xa7\x1f\x59\xaa\x58\xb6\xfa\xaa\x82\xda\x05\xe5\xc8\x6a\x6d\x0d\x0b\x48\x3e\x0e\x7f\x6d\x00\x44\x96\x7c\x01\x73\xce\x58\x14\x59\xfe\x69\x87\xd2\xa7\xa5\xd4\x8d\x9b\xa5\x2f\x28\x56\x55\x06\xa5\x65\xc2\x57\xd1\x0f\xa7\xea\x96\xb4\xf7\xfb\x24\x72\xfb\xce\xbe\xae\xe5\x29\xbe\x67\x71\xe3\x42\xd1\x4d\x42\x41\x92\x7c\xc0\x1d\x70\x7b\xed\xb5\xa5\xef\x3f\x20\xfd\x88\x79\xba\x2b\x35\xaf\x56\xce\x92\x0f\xa9\x65\xe2\x24\x9e\xac\xa6\xfe\x53\xc1\x3c\x32\xe4\x94\xa0\xd7\xf1\xa0\x8e\x78\xe1\x99\x1d\x8f\x21\xe1\xf5\xfc\x74\x9c\xfc\x24\xe6\xdb\xd0\x30\x3f\xf8\x84\x4c\xec\x2a\xb4\xc6\x95\xb1\xf8\x7f\x4c\xdb\xa6\xe0\xfe\x7d\x5b\xd0\x38\x33\xf7\x28\xe4\xfb\x8a\x51\x62\x5c\x9a\x3a\x4a\xce\x3f\xb5\x67\x98\x9e\xf2\x20\x33\x9a\x58\xfc\x7e\x8b\x8c\x4f\x55\x6a\x13\xd7\xaa\xeb\x13\xbc\xb4\x3c\xb9\x3d\x4a\x94\x0a\x89\xab\xfc\x72\xd8\xe7\x4b\xa4\x7e\x2b\xe4\x26\x1b\x16\xcb\x04\xb4\xdd\x67\xc4\x35\x49\xd4\x23\x4b\x9d\x56\x5e\x36\xb8\x17\x8a\x9b\xf8\x5e\x83\x5c\x4e\x55\xec\x61\xe6\x16\x7c\xc6\x23\xfa\x55\x0d\x7a\x84\xc4\x08\x7a\x0b\x7d\x04\xb8\x6b\x21\xaa\xa2\x84\x14\xe0\xad\x1a\x83\xb7\x03\x95\x01\x61\x13\x7c\xb1\x5b\x02\x0e\x3b\x2c\x5c\xcf\x08\x9d\xe2\xc9\x43\xa8\x85\xa3\xdd\x52\x6f\x2d\x90\xe4\xfb\x30\x0e\x30\xa2\xa4\x0c\x99\x4f\x81\x98\x79\xee\x0e\x1b\x31\x05\xbd\x99\x7a\xa1\x2a\xf7\x60\xcb\xf4\xe9\x53\x22\x38\xc9\xc4\x9a\xd6\x63\x47\x8c\x75\xd9\x9a\xf0\x6e\x65\xf2\xc8\x44\x9b\xdc\xf5\x48\x89\xeb\x93\x47\x7b\xe3\xc8\xeb\x32\x97\x6a\x9b\x56\x37\xa3\xf4\x4e\xca\xe6\x0f\xaa\x3b\x97\xd2\x4f\x3e\x0c\x19\xf6\xc7\x63\xc4\xee\x3b\x4b\xea\x26\xc2\xc4\x00\x09\xf9\x30\x2b\xe8\x23\x6e\x72\x2e\x5e\xa4\x2a\x60\x67\xf6\x1e\x57\xde\x5a\x58\x4e\x32\x02\xed\x85\xcc\x66\x4d\x23\xd0\xb0\xc2\x02\x4e\x08\xb0\x36\xac\x1b\xa4\x28\x81\x11\x47\x4c\x47\x5b\x97\x40\xbc\x36\x70\x25\x5c\x01\xe1\x29\xf0\x8f\x6b\xe3\x81\x06\x75\x13\x5e\x07\x99\xfb\x0f\x69\x5d\xa7\x30\x5f\x8c\xce\xe6\xb7\x5f\xed\x45\xfd\x0c\x12\xc9\xdf\xbe\x2a\x43\x6d\x3b\x2d\xf0\x25\x7b\xbe\xa6\x98\x7e\xd1\x82\xb4\x9c\x0f\x3c\xf3\x1a\x95\xb8\x82\x1d\x57\x45\x7a\x7e\xa3\xa8\x74\x4c\x85\x59\x58\x85\x77\x72\xe7\x2d\x55\xf2\x6c\xbf\x20\xec\x64\x39\x1b\xfa\xf9\xc6\x24\x9e\x2c\x5e\xb6\x63\x5e\x54\xac\xa6\x7d\x13\x2a\xd9\x4f\xcc\x8f\xdb\xbe\xb8\xc4\xfb\xdc\xbf\x9f\x3a\x40\x89\x0f\x45\xc4\xcd\x59\x7e\xf8\xba\x46\xa4\xc4\xde\x04\xc0\x03\x7f\x46\x01\x2c\x14\xa8\x07\xc2\x98\x9f\xdf\xda\x5f\xc9\x15\x71\x39\x97\x0f\x3e\x6f\x42\x36\xb9\x74\xde\x5d\xcb\xc3\x37\x38\x76\xb0\xf6\x08\x49\x64\x93\x95\x7a\xe1\xe5\x31\x5a\x50\x41\x4e\xaf\x08\x99\xfe\xa3\xb5\x3a\x81\x91\x0a\x06\x10\x4c\x30\x6b\xb3\x72\x1b\xc8\x65\x61\x8d\x90\xb9\x6e\xb7\x96\x9a\xd8\xbe\x1b\x99\xd3\xa4\x33\xaf\x43\xc3\x7b\x2e\xb2\x6d\x24\xb6\x42\xf0\xdd\x7d\x49\x7d\x0d\x97\xfa\x9e\x15\x19\xd9\x3b\x09\x4d\xdd\xec\xd6\x46\xd9\x15\xc0\x75\xfe\x28\xe9\x1f\xad\x84\xcf\x5f\x4a\xbb\x14\x95\xb2\x39\xca\x4b\x21\xfc\x20\x0d\x7e\xa0\xcd\xac\xab\x98\x59\xa8\xea\x46\x5c\xee\xa7\x67\x43\x64\xbc\x9b\x16\xba\x95\x22\x2f\xd8\x7e\xe9\x06\xb9\x5b\x62\x29\x82\xba\xcb\xf8\x75\xa7\x74\x89\x61\xb2\xac\x09\x5e\xbb\x04\xdb\xa3\x68\x53\x5f\xb4\x74\xd2\xc7\x95\xe6\x5e\x81\x52\x21\x1b\x9a\xf9\xc5\x0a\xdd\x51\xc3\x83\x36\x10\xd4\x40\x5f\xbb\x42\x17\x07\x87\x79\xad\x48\x46\xec\x57\x15\xf3\x64\x8a\x65\x51\x3d\xb1\x4f\x32\x81\xa9\x21\x9b\x88\x9c\x27\x3b\xfd\x19\xd5\x87\xa9\x8a\x59\x8e\xdb\x60\xde\x20\x81\x4e\x1d\xc4\xf3\xf8\x44\x43\x5b\x23\x8d\xaa\xd9\xb0\xc9\xb0\x52\x28\x65\x5e\xde\x9a\x30\x5f\xec\x08\x8f\xa8\x7c\x4f\x8a\x6a\x1a\x91\x05\x51\x2a\x42\xb4\x3a\xbf\x4a\x83\x2f\xfa\xd0\x81\xe5\xb3\xf4\xfb\x86\x69\x79\x25\x66\x35\x62\x60\x31\xcc\xf3\x36\xa8\x23\x72\xd4\x29\x1e\x73\xf7\x12\x65\xf0\x46\x8b\x1e\xf8\xf1\xf6\xa4\x56\x1f\x95\xa7\x05\x61\x9c\xd4\x7e\x72\x81\x60\x39\xf8\x2c\x7c\xd4\x87\x4f\x4a\xc8\x25\x9f\x8b\x66\xc6\x17\xae\x55\x45\x00\xeb\x8d\xe1\x32\x8b\x26\x26\x77\x5e\x91\x38\x58\xc8\x44\x7d\xff\x65\xbd\x48\x46\x45\x2f\x56\xa4\x4f\xe7\x5f\x86\x34\x7a\x19\x58\x6d\x72\x53\xb4\xe7\x15\x79\x48\xea\xd7\x30\xf2\x39\x36\xfe\x55\x1d\x9f\xc4\x88\x41\xa3\xf8\x99\xf9\x92\x17\x43\x6c\x11\xff\x41\xf9\xc2\x35\xca\x42\x63\xc4\x55\xd8\x27\xc1\xeb\x7d\xb4\x54\xd4\x2f\x41\x8a\x11\x6c\x3c\xa6\x09\xbc\xd8\x18\x45\xb0\xf7\xe0\xbe\x37\xaf\x96\x6e\xf6\x11\x6f\x2c\xf3\x8d\xdd\xc2\x0e\x87\x56\x70\x87\x25\x1c\x7b\x3f\xaa\x39\x48\xbb\xd4\x36\x09\x47\x7c\xf0\x43\xf8\xfc\xc8\x64\xf4\x6b\x99\x36\x49\x68\xd7\xfd\x50\xe8\x8b\x2d\x41\x8e\x87\x6c\x9c\x34\x65\xd7\x60\x4e\x2e\x3f\x25\xf8\x16\xf8\x45\x9f\x24\x78\xcd\xc3\x86\xe5\x50\x9b\x96\xba\x40\x5d\x4d\xcf\x9b\x1f\x5c\x14\x0d\xd8\x18\x7f\xc0\xc1\xac\xb7\xe5\x24\x4f\x69\x32\xf0\xc4\xfe\xc1\x93\x71\x23\x1c\x55\xd4\xd5\x3e\x75\xae\x4e\x70\x41\x61\x59\x21\x50\x59\x4f\xb5\x46\x0d\x9a\x76\x6a\xab\xe4\xc3\x0f\xef\xd5\x2c\xd8\x19\x31\x39\xc8\x2e\x7c\x72\x7f\xaf\x11\x5d\x90\x71\xbf\x4f\xa0\xa5\x25\xac\x80\xd3\x07\x0e\xdd\xa4\x9f\xa4\xb8\xdc\xab\x5e\xcf\x72\xa5\x3b\xe8\x3b\xcc\x07\xd7\x89\xad\x81\x22\x23\x1d\x16\x91\xa7\xdb\xe5\xae\x2d\x53\x86\x11\xdc\xf7\x4d\x45\x85\x4d\x8a\xba\x90\x1d\xd6\xfe\x16\x27\x81\x6d\xdf\x09\x2f\xdd\xc2\x88\x79\xe1\x6e\x0e\x97\xee\xd4\xd7\x45\x51\x68\x45\x53\x8b\xec\xb5\x5e\xf2\x45\x5b\xa4\x02\xa7\xc9\xc0\x25\xf2\x2b\x6d\x52\xc0\x5c\x55\x3e\x28\xce\x95\x67\x8c\x45\x51\x27\xaf\xeb\x1f\x90\x3d\xb8\xc4\x1c\x20\xf5\xf4\x78\x09\xd5\x9e\xd8\x1c\x56\x65\xa7\xe3\x1a\xa0\xc8\xed\xbc\xe5\x51\xfd\x8c\xa6\x80\x40\x59\x59\x88\xfb\xa7\xd7\x5e\x92\x9d\x15\x86\xbb\x1c\x6a\x43\x3d\xf7\xe5\x0d\xd2\x3f\x0d\xdc\x12\x46\x25\x7b\x3c\x06\x62\xb6\x47\x13\x3a\x1d\xe9\x67\x86\xf5\x57\xd2\xc8\x29\x6d\xe1\x43\x18\x71\x5e\x46\x90\x62\xb8\x44\x88\x6b\x24\x08\x31\xd9\x7b\x76\x44\x62\xfa\x35\x54\x11\x62\xfa\x99\x8d\xef\x68\x68\x12\x52\xf2\x19\x0c\x67\x82\x0e\xc5\x6f\x1b\x55\xa9\xcd\x7b\xac\x99\xbf\xeb\x2b\xc7\x4d\xa6\xc2\x82\x4c\xdd\xbf\xb3\x8e\x2c\xed\x75\x31\x31\xe6\x5e\xbe\x5e\xb2\x82\x28\x44\x9b\xe6\x51\x4a\x7f\x98\x1a\x5c\x71\xe9\x9f\xb7\x68\x79\xbd\x47\xab\x82\x4a\x39\xec\xe9\x64\x8e\xec\xb3\x18\x33\x2a\xab\xb0\x37\x2f\xea\xb8\x0b\xa1\xe3\x16\xf9\xd5\xcd\x7b\x70\x90\xda\xea\x64\x9e\xb0\x71\xdd\xb2\x20\x69\xa1\x8b\x4c\x51\xa0\x08\x34\x4c\x32\x18\x4f\x53\xe8\x54\x15\xea\x33\x28\x58\x82\x73\x3f\xb9\x41\x2f\xec\x0a\x8c\xf7\x52\x13\x32\x2b\xaf\x69\x78\x29\x8b\xda\xe0\xa0\x08\xc0\xc5\x1f\x17\xb5\x7e\xbc\x15\xc6\x99\x2e\x85\x45\x39\xe4\xa9\xff\x73\xfb\x46\xb1\xfa\x1e\xaf\x5e\xfc\x27\x36\xae\x4b\xad\xef\x13\x2f\xea\x08\x97\xbe\xf1\xa6\x5e\x8a\x0b\x42\xeb\xc6\xa9\xd3\x37\xe8\x1e\x5f\x1c\x45\x15\x91\xa6\x32\xdf\xdf\x93\xfc\xff\x0e\x0b\x79\xb8\x26\xe8\xa2\xf9\x9e\xcc\x81\xb9\x5a\x9a\xe1\x77\x77\xdb\x70\x4c\xf3\x85\xb2\x56\xab\x4d\x3d\x14\x6e\x73\x01\xd9\x7d\xee\x06\xb9\xa1\x8b\x31\xd4\x25\x7d\xd5\x2a\x8d\x9c\xc8\x67\x1b\xb2\xb7\xf5\xd0\xc5\xe4\x9e\x22\x0e\x47\xde\x56\x19\x89\x55\xbb\x52\x9b\x0f\xca\xf8\x5b\x52\xe3\xef\x6b\xef\xe8\xce\x68\x45\xec\x44\x74\xf9\xf4\xd8\x93\xaa\x2e\x6f\x85\x5b\x4d\xf2\xfb\xfc\xf5\xdb\x30\x00\x1b\x7b\xef\x52\xae\x60\xd8\x57\x63\x47\xf9\x9d\x7e\xac\x6a\x74\x73\x4d\xbb\x67\x6e\x6e\x0f\x87\xe5\x8f\x58\x1d\x44\x2b\x4c\x2d\xb9\x11\x64\xf4\xb2\xf7\xbe\x02\x39\xea\xfc\x70\xdf\x63\xc1\x46\x49\xff\x7a\x83\x86\x2b\xc5\xc8\xf3\x6c\x1c\x3d\x95\x9e\x4c\xe7\xae\x38\xf3\x2d\xba\x05\x7d\x48\x69\x1d\x17\x90\x7e\xe4\x98\x7c\xf0\x95\xbe\xeb\x55\xd5\x2e\xd4\xb5\xa0\x97\x4c\x87\x6b\xe7\x93\x0f\x2a\xc1\xd0\x6e\xfb\xd3\x46\xb9\x53\x4a\xd8\xf5\x7c\x50\x68\x49\x0f\x7f\x7f\x98\x22\x22\xe0\x4a\x63\x8d\xf0\x61\x7d\x69\xd8\x60\x35\x96\x19\x91\x95\xe1\x6e\x6d\x56\xe9\x61\xec\xe4\x50\x29\x2c\x49\x61\x58\x53\xb8\x52\xf1\xf0\x27\x95\x0a\xb0\xea\x1f\x78\x58\x93\x58\x42\x4e\xec\xa6\xdc\xf2\xa0\xaa\x09\x00\xed\x8e\x7c\x4f\xca\x5a\x0a\xd3\xd4\x3c\x23\x75\xba\xab\xc1\xe5\xa5\xc9\xed\x67\x13\x07\x17\x90\x51\x96\x7a\xe2\xd9\x55\x2f\x8f\xd3\xa3\x38\xf8\x22\xf6\x26\xee\x41\x57\x08\xb5\x35\xce\x01\x4d\xd9\x27\xe1\x9f\x0b\x29\x87\xcc\xff\x4d\x6b\xe9\x75\x58\xb4\x22\xb6\x43\xcb\x69\xad\xcc\x41\x36\x76\x63\x37\x8a\xe4\x97\xbc\xf1\x93\xa1\xfa\x15\x61\xc0\x6a\x04\x97\xb3\x1a\x21\xc2\x99\x80\x3b\x39\x0c\x77\xbd\xb4\x95\x9b\xca\xdb\x1e\x5f\xd0\x72\xec\x0a\xe6\x33\xf9\x08\xcc\xf4\x9f\x7b\xc6\x6b\xe1\x37\x7c\x07\x2e\x72\xbc\x5e\xd0\xf9\xc1\xd1\x51\x89\x8e\x68\xf8\x96\x39\xe4\xa2\x2a\xd4\x5f\x69\x8d\x96\xfd\x6e\x07\x7b\x6e\x39\x8a\x7c\x1f\x3a\xa4\x09\xb4\xa0\x02\x71\x26\x10\xb5\xd3\x58\xde\x9c\x0c\x9f\x25\xda\x61\xa2\xc4\xf1\xf9\x85\xd3\x9a\x17\x67\x15\x03\x97\x2d\x75\x55\xa3\xea\x32\x1a\x19\x2e\xa4\x0f\xb2\x18\x8d\x3a\x39\x17\x5e\xe2\xed\xe7\x93\x9b\x32\x32\xdc\x22\x9e\xdc\x94\x67\xed\x5e\x70\x02\x88\x45\xfa\xda\xe9\xc5\xfd\x64\xe4\xa0\xc5\x22\x76\x40\x37\x31\x38\x9b\x95\x49\x75\x4b\x1d\xa1\xa1\xfa\xba\x46\xa7\x03\x61\x44\x99\xbf\xfe\xb2\x0a\x5d\x99\x8f\xa1\x2e\x97\xa8\x5d\x89\xbe\x71\x87\x01\xf3\x76\x6a\x9c\xb6\xb4\x34\xf7\x5a\x17\x52\x30\x91\x0a\x56\x9e\xe2\xf7\x9a\xbb\x8b\x9f\x0a\x30\x4f\xd5\x57\xb0\x3f\xf6\x9a\xde\x1a\x75\xc2\x46\xeb\x37\xc7\x46\x2b\x4c\x5c\x56\xc5\xec\xe6\xfa\xfa\xa6\x7c\xa5\xcc\x69\x2c\x70\x5e\xf8\xd0\x5e\xbd\x7d\x11\x31\x25\xae\x3f\x1b\x5b\x72\x97\x18\x2e\x81\xac\x46\xea\xd9\x39\x37\x2a\x39\x16\x28\xe9\x22\xa7\xbe\x8b\xfb\x6f\x2b\x07\x2b\x9d\x26\x6e\x37\xcd\x51\xb7\xa9\x5f\x5f\xd2\xa5\x89\xc3\x44\x89\x3a\xae\xc5\x95\x9b\xc3\xb7\x7a\xff\x6a\xfd\x34\x40\x31\xea\x3a\xf8\xbe\x66\xa2\x09\x0a\x8c\x91\xc0\xf7\x09\xf0\xdf\xcd\xcd\x45\x4c\xb3\x8c\x2b\x8c\x50\xf6\x41\x1d\xd8\x38\x7b\xff\xc6\x11\xf5\x75\x07\x31\x90\x2d\x70\x37\x8d\xaf\xe8\x82\x99\x1c\x28\x0e\xd7\x74\xdb\x51\xad\x0c\x43\x44\x54\x01\xe9\x87\x4e\x68\x2b\xd4\xa2\xcc\xc3\xb1\x22\x79\xfa\xfc\x8a\x3a\x6b\x7b\x17\x7b\x02\xc0\xfa\xe5\xa5\x8a\xed\x3f\x75\xc0\xc2\x6f\xf2\x35\xbd\xe5\x06\xa2\x54\x59\xb2\x5d\xb6\x27\x0b\x7e\xb1\x88\x13\xab\xf0\x25\x45\x20\x8f\xc3\x53\x22\xf9\xd1\x01\x9a\x1f\x26\xe5\x03\x58\x68\xed\xf7\x7b\x5b\xfb\x42\xce\xfb\x12\x18\xa7\x2f\x9d\x52\x34\xc8\x11\xc3\x25\x52\x03\x6b\xd1\xdf\x80\xcb\x5c\x6e\x2e\x6e\x0f\x0f\x0f\x55\x9d\xf8\x95\x24\xb3\xbc\x84\xbd\x70\x87\x59\xb9\xfb\x7d\x62\x94\xc5\xe7\x3e\xdf\x57\x1e\x83\xb4\x60\x93\x12\x8f\x5a\x5b\x2e\xc9\x04\x77\x2a\x0f\xe4\xd9\x96\x07\x21\xe1\xae\x11\xc3\xa3\xc2\xb5\x21\xf3\x5d\x25\x01\xad\xda\xd4\x14\x39\x4c\x76\xc3\x0e\x59\x67\x88\x73\xe0\x0d\xf8\x73\xe4\xba\x38\x82\xeb\xa4\xff\xb2\x45\x12\x4f\xfd\xce\x28\x2c\x2e\x1c\x0c\xbf\x5a\x0c\x53\x51\x11\x47\xb3\xc3\x8b\x71\xa1\x82\x3b\x8d\x84\x9e\x77\xc3\x00\x58\x8a\x2b\x89\x63\xf9\xaa\x92\xc9\x90\x43\xa0\xdb\xdf\x36\x29\xbc\xd6\x73\xa7\x93\x49\xb1\xe5\x57\x10\x88\x79\xf6\x76\x8c\x19\x8f\xc3\x14\xcd\x43\xa2\xdd\xfb\x81\xb5\x03\x44\xa9\x6b\xe3\xaa\xc5\xd7\x48\x60\x5c\xaa\xc3\x79\x96\x85\xb2\xeb\x57\xab\x43\xf4\xe5\xc6\x73\xca\x20\xb3\x29\xae\x91\x26\x81\x4a\xe4\xf9\x83\x0a\x9d\xdc\xb7\x71\xa4\x99\x9e\xbe\xf7\x88\x2e\x66\x52\xa9\x22\x52\x72\x84\x72\x70\x53\x41\x35\x27\x73\x1c\x98\x3d\x5f\xbf\xee\x9a\xd8\x63\xbe\xa5\x2e\xd7\x7f\x6c\xaf\xee\xcc\x01\xb3\x25\x31\x90\xfd\xe0\x2c\x05\xad\x83\x1d\xcc\xb8\x0a\x72\xf2\x23\x98\x02\xd1\x0e\x13\x85\x2e\x14\xde\x46\xb0\x69\x9f\x6c\x14\x7b\xb4\x80\x4a\x34\x22\x12\xef\x2c\x6a\x9d\x0d\xec\x78\xd8\x31\xc4\xbc\xe2\xcc\xab\x8a\x74\x87\x85\x6d\xce\x51\x7e\xfe\xb4\x58\x2d\x86\x81\x23\x66\xd1\x7f\x17\x15\x6b\x51\xcc\xa8\x83\x7c\xae\xe7\xad\x5f\xdf\xc3\xcf\x2b\x47\x91\xef\x95\x7c\x87\x8f\x34\x83\x93\xc3\x64\xa3\x0e\x24\x83\xea\xfe\xb4\xcc\x14\xd4\x29\x2a\x14\x90\x57\xd7\x42\xcd\x2e\x5b\x28\xbc\xcf\x2c\x0a\xca\xf8\x2f\x14\xe5\x6b\x40\x36\x75\x80\xd4\xb7\x67\xac\x92\x2a\x52\x6a\x76\x10\xb8\xb3\x53\xfb\xb5\x55\x48\x3d\x6c\xbb\x13\x38\xd1\x36\x57\x37\x9b\x9a\x3d\x40\xaf\x4f\x90\x61\x81\xae\x72\x58\x0a\xac\x7e\x56\xab\x8b\xb0\xed\x99\xb4\xc3\x01\xaa\xcf\x9d\x55\xad\x85\xc8\x7c\xd7\x8a\xb0\x8f\x3d\x99\x6d\xc7\xb5\xde\x10\xae\x61\x47\xb4\x3a\x57\xe9\xe3\x6f\x8f\x91\x68\xc0\x34\x45\x4b\xe1\x5c\x6a\x8b\x8a\x26\xf5\xd0\x3b\xf2\x5d\x9a\xb4\x04\x8a\xc5\x4b\x15\x6d\x96\x2a\x66\x1e\x4f\x49\x3b\x5f\x52\x1e\x8f\xf0\x15\x0c\xa3\xd1\xdc\xf8\x5c\x37\x50\x42\x7d\x24\x53\x75\x06\xa9\xe7\xae\x59\x40\xf0\x40\xff\xa5\xb9\x9e\x87\x0a\x06\x64\x61\x36\xf8\xab\xa5\xb2\x71\xd3\xc2\xa7\x98\x95\x36\x99\x15\x4d\x69\xce\x75\x20\x8f\xb7\x34\x6e\xda\xac\x48\xee\x4c\xe3\x92\x77\x7f\x7d\x3f\x99\x7b\x71\xe5\x1d\x8a\x78\x50\x86\x5e\xe5\xfb\x27\x15\xbf\x17\xdf\x31\x05\x2f\xe7\x53\x5b\xae\xd1\xc3\x82\xe7\x47\xd9\x74\x6a\xe9\xe0\xfe\x62\xcb\x72\x68\x16\x3f\x4d\xbe\x3c\x5b\x9a\x43\x58\x5d\xaa\x18\xd3\x59\xc5\xd5\x0d\xb9\xd8\x8d\x82\x64\x5b\x3b\x60\x83\x96\x2d\xbf\xfd\xde\x39\xb7\xdf\xb1\x40\x01\x02\x7f\xf2\xc8\x48\xe5\x2d\x60\x7d\x87\x04\xcf\x1d\xb9\xbe\xee\xf2\x70\xce\xa3\x02\xa6\x2e\x80\xfa\x43\xb6\x2a\x0a\xb8\x95\xaa\x0d\x07\x58\xb6\xbd\xaf\x6c\xdd\x77\xcb\x16\x5d\xf0\x3f\x7d\xaf\xd3\x2a\x5d\xc6\x48\x52\x6e\x26\x85\x9f\x55\xa6\xbb\xd8\x85\xe2\x32\xa8\x0c\x8e\x5f\x51\x07\xe5\xcb\xa8\xf6\x4c\x1c\x22\x73\x2d\xbc\x1f\xf4\x29\x45\x59\x09\x57\x48\x09\x34\x3f\x82\x03\x93\xe5\x04\x9b\x9a\x89\x43\xc1\xac\x0e\x51\x82\xa3\xf0\x67\xe7\xd3\x29\xf7\x0d\x15\x73\xe9\x0a\xd2\xc6\xc8\x2b\x95\xf3\x35\xcc\x94\x50\x09\xd2\x80\xc7\xde\x95\x0d\xf0\xb6\x26\xae\x43\x7f\x66\x95\x0a\xef\x01\xd9\xdc\x5c\x3e\x98\xf7\xb4\x38\x89\x6f\xbe\xbd\x92\x90\x27\x4a\xfd\x5d\x83\xfc\x70\xea\x7b\x05\x9f\x01\xda\x39\xbb\x41\xab\xf5\x5d\xe4\x74\x73\xa2\x7f\x94\xe8\x0e\x59\xae\xd8\x71\x90\x92\xe5\xd9\x1c\x49\x94\x2d\x8f\x92\xb7\xd7\x81\x24\x17\x34\xe8\xdf\xad\x55\xd8\xd4\xb7\xbd\x24\xb8\x25\x4b\x16\x26\x22\xa4\x72\x39\x75\x16\x77\xb8\x8a\x9d\x98\x84\xfa\xc8\x44\xd9\xdd\x44\x15\xa2\x52\x37\x0e\x4b\xd1\x41\x87\x29\x0b\x38\xdd\x47\x62\x24\x31\xf1\x94\xbf\xb8\x62\xb6\x96\xaf\x09\xe7\xae\xc8\x14\xef\x85\xac\xd0\x3e\x8f\x16\x4a\x4f\xf6\x8e\x82\x0e\x98\xe1\x54\x40\x91\xe0\x1d\x9d\x25\xdf\x6b\x09\x73\xcb\xfd\x7c\x4f\xaa\xeb\x19\x5d\xb4\xc8\xf1\xc2\x22\x5c\x58\x55\x65\x6e\xd5\x9c\xbf\x73\x85\xd8\x0c\xe9\x7b\x2c\x16\x86\xe7\x9b\xb4\xfc\x92\xcc\x6c\x11\xab\x03\x3a\x65\x3e\xa3\x18\xec\xb6\x4c\x9f\xde\x9c\x9b\xde\x12\x7e\xc3\x2d\x8d\x9a\xf3\x24\xf7\x2c\x10\x59\x38\x5f\x7b\xf7\x5d\xa1\xbf\xb3\x0e\xcc\x44\x56\x12\x2d\xa1\xff\xdd\xd8\xcb\xa6\xd5\xf4\x4d\x83\xa7\x9f\x54\xec\x7a\x3d\x1b\x39\x1e\x1f\xd8\x74\x9c\x80\xd3\x74\x19\x66\x85\xd8\xc2\xe7\xfb\x1a\xbe\xb7\xe4\x13\x13\x85\xa7\x32\x3c\x97\x41\xc7\xd4\x6e\x73\x0d\x18\xa2\xc1\x8f\x5f\x55\xbd\xe6\x63\xf1\x85\xf0\x4b\xfe\xf9\x3d\x3d\x6f\xc7\x26\x31\x22\x83\xfb\xdf\x3f\x98\xe0\x75\x19\x1e\xf3\x2b\xb9\x7c\xf0\xc4\xbe\x08\xdf\x60\x94\xdd\xc4\xe4\x62\xe4\xa6\xba\x46\x81\x00\xed\x7f\x64\x66\x5d\x8b\x06\x23\x5f\xc0\xa6\xb2\x9f\xdb\x2e\x9c\x02\x18\x45\xa6\x81\x5c\x91\x6a\xa6\x7e\xf5\x8a\x9c\x56\x93\x4a\x95\xba\x91\xbb\x58\x6a\xeb\xbb\x91\x80\x8e\x59\xa1\x8e\x22\x26\xd3\x39\x5a\xfe\x49\x27\x76\x68\xd5\xa2\x05\x60\xb3\xac\xbf\x42\xd1\x14\x09\x5f\x26\xe5\xbc\x6e\x77\x96\x3e\x34\x75\xb8\x68\xa9\x80\xe6\xfc\xe5\x74\xf2\xc2\x5b\xa6\x4c\x6f\x6a\x99\x16\x2d\x82\x7f\x9e\xaa\x30\xaa\xcd\x0a\x71\x88\xeb\x41\x86\xff\xc0\x7e\xcd\x72\x98\x76\xa3\x72\x52\xb0\x2e\xbd\x64\xa9\x4c\x6e\xaa\x36\x02\xad\xc0\x64\xe2\x52\x3c\xa4\x39\x4a\x14\x8b\xdc\x4c\x1e\x5e\xd0\xde\x27\x65\xff\x7a\x5a\x73\x6e\x1a\x6f\x90\xdc\x36\x4e\x7e\x2a\x38\xef\xd4\x95\x9f\xfb\xfa\xc0\x26\xa9\x51\x28\x5b\xc7\xbf\x37\x58\x89\xbb\x26\x57\x89\xe4\x95\x4f\x9f\xa2\x26\x84\xc9\x1d\x68\xbd\x28\xf5\xcc\x3c\xb3\xa7\x57\xef\x18\xbe\x13\xab\xad\x83\xa2\xf4\x81\x2f\x1e\xd0\xd6\xea\x49\x8f\xda\x2d\xe7\x0d\x9c\x34\x97\xfe\x8a\x72\x8c\x77\x60\x6e\x01\x3a\xea\x99\x18\x29\x42\xcd\xba\xfa\x39\xb5\xf2\x9d\x64\xbf\xa8\x60\x33\x2e\xa1\x92\x7a\xe7\x29\x59\x03\x4d\xe2\xf4\xe2\xcc\xbf\x9f\x8a\x2b\x75\x37\xac\xea\x7c\xce\xa5\xff\xca\x0e\x25\x83\xc5\x26\x87\xec\x67\x1f\x58\x98\x44\x5a\x3b\x18\x09\xf0\x6b\xf2\xf9\x7d\xea\x80\x90\x6f\xc5\x88\xc3\x2a\x52\x37\xbd\xae\xa9\xdb\x72\xec\x38\x4f\x66\x5a\xb6\xf4\x8b\x12\x01\x8e\x71\x48\x5f\x18\x20\xbf\xd9\x60\x94\x7b\x47\x65\x3e\x36\xf2\x1a\x25\x87\xa7\x39\xc4\x0c\x8b\x78\xd8\x80\xdc\x64\xcc\x53\xba\xdc\x18\x18\x16\x25\xc4\x77\xd3\x3f\x13\x4e\xa3\x2e\xaa\xc4\x3a\xff\xf7\xb6\xf5\xee\x89\x09\xeb\x67\x81\x07\x45\xd8\xed\x36\xee\xc4\xb2\x55\x13\x1c\xb9\x1c\xbf\x22\xd3\x07\xa4\xfd\xe1\xfe\x51\xfc\xf0\x19\x3f\x7d\x83\x43\xfb\x46\x6a\x99\x2a\xf1\x88\x6b\xc5\x96\x67\xe9\xe7\x95\xcc\xc1\x25\x15\xe2\x21\x08\x9c\x27\xeb\x01\x82\x22\xcb\x1a\x27\xa9\x38\xd4\x51\xf2\x94\x3f\x6f\x16\xb0\x72\x54\xe3\x42\x22\x77\x39\xc9\xe7\x51\x40\x85\x02\xf1\x3c\x4d\x8c\xf8\x13\x47\xe4\x01\xde\x32\x49\x79\x50\xdf\x9c\xa8\x3b\x29\x44\x76\x63\x29\xdd\x9f\x9c\x13\x72\x5d\x2f\x22\xe4\x66\x1f\x38\xae\x99\x98\x4d\x03\x75\xb1\x7b\x56\x6b\xa6\x16\xd8\x2b\x12\x0c\xfe\x3a\x32\x31\x5c\xf6\x68\x72\x99\xa0\x02\xad\xc1\x88\x3f\x30\x94\x9c\xe1\x66\xf9\x26\x1e\xdd\xab\x30\x42\x7c\x90\x9f\xca\xce\x18\x27\x17\x4b\x3b\xb5\x1c\x75\x5c\x18\x5c\xdc\x94\xf4\x3d\xe3\x69\x75\x2e\x1f\x8c\xd8\xa9\x71\x25\x89\x53\x92\x33\x91\x2f\x3e\x3e\x5c\x2a\x08\xd6\x4b\x29\x5b\xef\x2a\x76\x9a\xbe\x40\x9b\xce\xbd\x42\x36\xd0\x0d\xe6\x13\x17\xb3\x0e\x0c\xa6\x67\xc1\xe6\x2b\xa0\x7b\xbd\x84\xfb\x68\xeb\x9d\xb6\xe7\x1f\x94\x7d\x98\x92\x85\x1c\x52\x41\x6a\x96\x31\x70\xb2\xea\x34\xc7\xc1\xcf\xbc\x9b\xb0\x43\x69\x94\xdb\xa8\x80\x2a\x7c\x46\xfb\xc3\xb4\x8c\x77\x15\x62\xdb\xf5\x58\x8e\xf4\x97\xdf\x52\xf1\xf3\x26\x66\xc4\xa0\xb9\x7c\x30\x67\x45\x2f\xa3\x3e\x98\xcf\x33\x0d\xab\xd1\xee\x9b\x25\xa1\x35\x12\x7c\x7a\xf6\x87\xc5\xee\x07\x9b\xf3\xcd\xcd\xfa\x5b\xf5\xdd\x88\x5c\xf6\xcb\x01\x5a\xb7\x18\x3b\x82\x44\x13\x95\x16\xe9\x57\x9f\x55\xe4\xd3\x2c\x92\xb0\x21\x4a\x95\x84\xfd\xf8\xbc\x52\x57\x35\xb6\x43\xf8\x87\x15\x8a\xad\x11\x07\xbc\x2b\x0f\x2f\x7f\x36\xd1\xd2\x8e\x78\xc3\xdd\x42\x44\x6e\x09\x48\x9d\x0b\x02\xc1\x2f\xfb\xe9\xf2\x25\x35\x64\x47\x6a\x40\x4f\x3e\x98\x5c\x31\xc8\x71\x3b\xe4\xa0\xe3\xd1\xfd\xfa\x48\xa3\xab\x10\xb9\xcc\xa3\xa7\x94\x42\x91\xa1\x9a\x80\xd2\x67\xf6\xec\xd7\x1b\xd2\xbe\x89\xc1\xf1\x9d\x67\x83\x7f\xaf\xa8\x97\x85\x67\x86\xb0\x19\xdd\xfa\xb4\x2e\x3f\xef\x7a\x61\x78\x85\xcb\x5c\xf9\x26\x74\x87\xef\xc1\x1e\xa3\xb9\xc5\x94\xd5\xd7\xff\x99\x9d\x33\x93\x8d\x1d\x13\x75\x09\x68\x4a\xf3\x26\x11\xca\x63\x98\xeb\x93\x8a\xd1\xa9\x8d\x38\xc4\x35\xf5\xd5\xcb\x72\xc7\x71\x5d\x73\xf5\x1c\x4f\x0d\xb5\x54\x5c\xb3\x85\x0a\x50\x52\x66\x5e\x1d\x20\x21\x75\x15\x57\x2d\x8c\x53\xa9\xf5\xba\x04\x37\x1f\x8c\xc1\x02\xdb\xaa\x40\xd0\x5c\x64\x23\xde\xca\x7a\xf9\x25\x89\xdc\x60\xa4\x58\xac\x70\x2c\x19\x20\xb8\x97\x3f\x0f\xd1\xd9\xaf\x14\x18\xb6\x6d\xc4\xa5\xab\x46\x0b\x36\x9e\x47\xeb\x01\xd5\x19\xaf\x51\xa9\xea\x88\x69\x8a\x82\x6a\xc9\xd6\xab\x15\xc2\x94\x07\x1b\x2f\xf5\xf9\xf7\x80\x33\xb2\x1c\x79\x88\x81\xc2\x6b\x1c\x9a\xef\x39\x78\xb5\x02\x44\xe4\x0e\x5c\xf9\x9e\xcc\x61\x0d\x87\x40\x1c\x8f\x46\xf3\xae\x79\x73\xf4\x21\xbd\x1b\xb3\x60\x9c\x82\x8a\xad\xae\x54\xd1\xfd\xe1\x2b\x79\x4e\xba\x30\x1a\x4c\xa5\x6c\x0d\x3e\x21\x9d\x10\xd4\x26\x62\xca\x3b\x27\xfb\xfd\x15\x9f\x55\x90\xe3\x96\xeb\x9e\xc1\x6f\x9f\x94\x69\x87\x4b\x3a\xf9\x58\xe5\xb1\x37\xea\xcc\x5f\x70\x98\xb8\x88\xd1\xf2\xcf\xc6\x68\xa5\x9f\x47\x8d\x72\x95\xd8\x31\x97\x9e\x99\x0a\x4e\xb7\x39\x2c\x83\x33\x6b\x0a\x1a\x9c\x02\xbb\x88\x25\x81\xb5\x99\x2f\xf6\x4b\x6e\x8c\x88\x35\x10\xe1\xab\x16\xf5\x55\x8a\xbf\x2a\x66\x28\xea\x28\x2c\x5a\xac\x62\xaf\xcd\x12\x86\x95\x37\xf8\xc1\x18\xc2\x04\x22\xd2\x3c\x6e\xbc\x71\x2e\xfe\x69\x91\x53\xab\xf9\x47\xcc\xf5\x64\xdb\x57\x98\x2d\xbd\x26\xf5\xf8\x6b\xd4\xb6\x71\x01\x61\x55\x01\x76\xf8\x64\xb9\x3e\x6b\xc4\xb0\x38\x7f\x74\x61\x93\xec\xc6\x97\x7c\xbb\x18\x5e\xf6\x4b\x87\x15\xf8\x06\x61\xdc\xd2\xaa\x27\xfd\x9f\xbb\x1b\x95\xae\x78\x98\xd0\x8b\xd6\x6c\x4f\x26\x33\x5f\xab\x47\x7c\x56\xa5\x6e\x34\x20\xff\xf9\x09\x21\xa4\x86\x59\x8d\x17\xef\x0f\xad\x55\x28\xb8\xc8\x31\x3b\x18\x89\x4a\x87\x7f\x5b\x7d\x75\xbc\x5b\x71\x24\x19\x96\x5e\xbe\x66\x8c\xca\xab\x5f\xb8\x70\x82\xdc\x94\x49\x2b\x21\x05\x59\xc7\x5b\xfa\xc8\xef\xe4\x8a\x47\xa3\xb4\xf9\x0c\xe7\x27\x83\xd7\x97\x40\x36\xfd\xb5\x39\x99\x9b\x22\x77\x42\x07\x08\x76\x68\x5c\xef\xc8\x25\xa2\x82\x23\xe0\x7d\x96\xad\x4a\xee\x1b\x1b\xa3\xb2\x58\x7b\xa9\xcf\x1d\x92\x87\x66\x3c\xed\xeb\x16\x13\xeb\x60\x62\xa7\x1e\xac\xc3\xd3\x3d\x82\xa8\xfe\xe9\x94\x3e\xb6\x66\x8c\x78\x94\x45\x62\xed\xe9\x43\x59\x65\xe3\xd9\x14\x4e\xf8\x6c\xd3\xb3\x10\x57\xe6\xfa\xb0\xe2\x96\xcc\xeb\x49\x9d\x3a\x39\x5c\x3d\x5f\xc2\xdb\x2f\xe2\xd8\xc2\xcd\x1b\x96\xbc\xf9\x96\xa6\x69\xc0\xa4\x71\x5b\x75\x49\xfd\x1a\x06\x21\x14\xae\x5a\x3b\xb1\xaf\xba\x7a\xf8\x90\xc3\xaf\x26\xd1\x36\x05\xec\x10\x8f\x26\x73\xbc\xd4\xc2\x39\x62\x52\x7b\xc7\xd2\xba\xa0\x9f\x7e\xb7\x51\xd7\x24\x5f\x0c\xeb\x2c\xeb\xbd\xa6\x35\x25\xca\x84\x49\x00\xc9\xb8\xb7\xc6\xc4\x4f\x3a\x51\x92\xea\x75\xc0\xcf\x9f\x92\xcd\x05\x5a\xe5\x86\x3d\x39\x03\x33\x5c\x01\x2b\xc3\x74\xdb\x69\x5d\xb1\xb0\xa6\x48\x96\x9d\x18\xa6\x5a\x31\x83\xec\x4e\x7a\x7e\xa7\xc2\x5f\x49\xaa\x86\x4b\x2b\x38\x87\xc4\x01\xa0\xf9\x9c\x4a\x9c\x64\xbe\x21\xc4\xd4\x7a\xb2\x9d\x60\x8d\x96\xbb\xdd\x31\x19\xee\x50\x95\xc7\xee\x56\x93\x4a\xe6\x9b\xbc\x06\xbc\x76\x37\x6c\xae\x49\xad\x11\xcf\xf9\xbe\x3d\xc9\x6a\xc8\x6f\xe2\xb2\x11\xfa\x0c\xbd\xe3\x55\x9d\x82\x87\x0a\x11\x05\x2f\xf5\x8b\xc1\xaa\x74\x06\x72\xc1\x8b\x2a\x35\xf2\x78\x9c\xe8\xdb\x48\x6d\x49\x75\x3f\xa3\x0d\xfc\x0a\xb7\x96\xba\x44\xb3\x28\x3b\xfe\x7c\xb2\x0d\x1f\xde\x04\x48\xf5\xf4\x36\x0c\xfa\x91\xe6\x1c\x5c\x0d\x53\x51\x18\xb2\x9f\x6c\xd7\x04\x38\x8a\x1c\xac\x03\x50\x71\xfe\x58\xaf\x5f\x98\xc4\x35\x18\xc4\x23\x05\xe4\x94\x27\xd4\xb3\xb6\xd3\x9d\x1b\xe0\xc9\x61\xc4\x3c\x1e\x0b\x53\x6c\xdd\x10\x05\x65\x19\x41\x34\x73\xf9\xe0\xb2\xa2\x4f\x50\x05\xc9\xa6\xe0\x95\x97\x74\xb8\x27\xb5\x01\x0d\x10\xfc\xe3\xf0\xf8\x7c\x2b\xa9\x16\x30\xd9\xfb\x8e\x2a\x62\x89\x8c\x3a\xdd\x38\x97\x0f\xde\x51\x08\x8c\x05\x6c\xa1\x1a\x01\x17\xb7\x4f\xad\x13\x00\x4d\x6a\x13\x47\xc5\x15\x3d\xf8\x52\x83\xd2\x7c\x0b\xcb\xe2\xcc\x1f\x66\x2a\x89\x3e\x46\x9c\xc4\x9b\x7a\xf7\x9d\xfa\x76\x1c\x76\xcc\xc8\xa0\xfa\xe1\xaa\x02\x4e\x96\x44\xb9\xb3\x32\x07\xec\x20\x3c\x27\x0b\x03\x04\x9e\x7d\xa3\xb6\xab\x7b\x77\x1a\xdd\xb5\x33\x6e\x00\xa0\xa6\x3a\x77\xd5\xcc\xf1\xf1\x8a\xa8\x8e\x3a\x3f\xdd\xb6\x4f\x21\x41\xb5\x36\x4d\xe7\x2d\x91\x4f\xbe\x9d\xfc\xd2\x32\x05\x89\x01\xad\xd7\x9d\xf9\xdf\xce\x41\x89\xf3\x84\xfa\x70\x9c\x4e\x1f\x1c\x1f\x9c\xc8\x8c\x26\x7d\xa9\x26\x79\x89\x55\xdc\x51\xd7\xa3\x78\x44\xd3\x1c\xe7\x10\xe3\x18\x9f\x93\x7a\x6f\x64\x5d\x4a\x0a\x53\xea\x94\x51\x18\xaa\x48\x45\x98\xa6\x8d\x73\x86\x8d\xdc\x30\x26\x1e\x7b\x54\xd9\x4e\x96\x6f\x57\xa0\x6f\xf1\x21\x4f\x9f\x5d\x50\x1b\x47\x30\x90\x6c\x57\x5b\x24\x7f\x46\x2b\x11\xff\x36\xf5\x0f\x3a\x1a\x0c\x3c\xbc\x80\xc7\xfa\x49\x91\x4f\x02\x28\x84\x87\x93\xcc\x95\xc7\x81\x39\xbe\x34\x21\x2a\x9e\xa5\x57\x68\x4a\xe4\x24\x16\x60\xc9\x1c\x9a\xa1\x48\x01\xf8\xd5\x6a\x44\xe6\xad\x8e\x15\xb2\xdd\xcd\x9c\xfe\xbe\x68\xa9\x1c\x7d\xb4\x63\x5c\x27\x23\xd9\xaf\xa0\xb8\x73\x15\x73\xf9\x60\x7c\x67\xfc\x03\xd0\x6b\x7f\x59\xca\xf4\xb6\x84\x6f\x3c\x58\x30\x5f\x83\x25\x19\x04\x83\xb0\x43\x1d\x78\x38\xf3\xe4\x8c\x64\x7e\x56\x0c\x33\x06\xcf\x4b\xe0\x25\x17\xec\xd1\x40\x47\x94\x71\xa8\x8d\x38\xf2\x1f\xe9\x4e\xbe\xcb\xa9\xb1\xf7\x72\x66\x5c\x32\xd2\x00\x25\x16\x2b\x5e\xd0\x68\x77\xa4\x0a\x48\x39\x40\x0b\xb4\x05\x52\xd3\x2f\x6a\xaf\x94\x7b\xd9\x44\x35\xe3\x64\x8d\x67\x6a\x60\xdb\xf6\x0d\x83\xa8\x63\x88\xcc\xb3\xa7\x14\xfa\x33\xa5\x15\x98\xec\xcd\x6a\x1b\xac\x8e\xbf\x62\x64\xdb\x6f\xe6\x40\x55\x3b\x87\x32\x8e\x15\x79\x7a\x98\xee\xac\xd9\x2a\xee\xf6\xfd\xdd\x91\xd0\x8d\xe9\xbb\x1e\x53\x1c\xaa\x33\xb7\x6d\x93\x67\x94\xd3\x15\x9d\x51\x77\x6c\xd3\x89\x03\x35\xa1\x93\x9e\xda\xbe\xf1\x2a\xd5\x06\x35\x1f\x7c\x6a\x47\x12\xf4\x4d\x1d\x5b\xd0\x0c\xf4\xd6\xe8\xa7\xd2\xba\x8b\xa6\xeb\x56\x79\x73\x14\x3a\xb7\x7f\xd8\x93\x7c\x82\x16\xa5\x55\x1b\x45\x8f\xfd\xd7\x9a\x67\x76\x98\x3a\x7a\x38\xd6\x9b\xd8\xfe\xa6\x42\x9b\x24\x6e\x19\x28\x84\x03\x1a\xa5\x6a\x0a\x0c\x9a\xae\x0b\x92\x28\x3b\x45\x7c\x27\x87\x1d\x0b\x39\x46\xf8\xaa\xc1\x04\x30\x75\xf9\xf4\x50\x27\x39\xa8\xe7\xd8\x7b\x7e\x5a\x7b\x2f\x6a\x85\x07\x32\x41\x3c\x0b\xfa\x08\x8f\xec\xd1\xe9\xa5\x26\xa5\x31\x06\xa5\x71\x50\x62\x9f\x31\x21\xfc\x7c\x3a\x72\xb6\xb0\x60\x14\xf4\x1f\x93\xa5\x15\x1b\xb5\x65\xcb\xe8\xd3\x0b\x35\xd9\x6e\x40\x2b\xf3\x14\x70\x81\xac\xbd\x3c\x4b\xad\xbd\xcc\x27\xc7\xd6\x2d\x41\xc4\x7a\x33\xcc\xca\x7c\x6e\x0b\x4c\x85\xc2\xa2\x9d\x23\x43\x82\x11\x8b\xb4\xe6\x01\x38\xec\xf0\x40\x63\xcc\xe9\x27\x9d\xbc\x73\xf9\xe0\xcd\x40\x1b\x52\xaa\x12\xf3\xc2\xa8\xe0\x0b\x0f\x4a\x06\x31\xdc\xbe\x3e\x94\xff\x67\x05\x49\xee\x90\x32\xe1\x43\x96\x4c\x69\x45\x32\x5d\xf5\x45\x77\x23\xf5\x61\x2f\xb9\xb8\x40\x97\x54\x26\xea\xb6\xa6\x96\x54\x40\x5d\x75\x1e\x2e\xb7\xef\x96\xa7\x86\x1b\x8d\x70\x32\x43\x4f\x40\x31\xbd\xc8\x33\xeb\xc4\xc1\xd3\x9d\x8e\x4a\xfa\x37\x7c\x5b\xf8\x35\xa5\x47\xbf\xa5\x6d\x21\xea\x3b\x9c\xf0\x1a\x7c\x26\x18\xa8\x92\x16\x6b\xfc\x0f\x82\xb6\xf9\x49\x1c\x78\x78\x9a\x61\xdb\xad\x20\x15\xc6\x1f\x7c\x62\x73\xbc\x5d\x6b\xdc\x07\x26\x3c\xa1\xcf\x1c\x19\xa4\xa6\xcd\x4b\xe7\x2c\x9d\x90\xcf\xe5\x83\xa6\x73\xd0\x4f\x88\x7c\x1d\x93\x9b\xf1\xd3\xeb\x14\x25\x0a\xee\xa8\xc4\x37\xcc\x87\x27\xea\xfc\x98\x0a\xa6\x0e\x8e\x2c\xa2\xfe\x62\x8f\x56\x68\x54\x25\x1c\x1e\xca\x75\xab\xe7\xfc\xe1\xf8\x31\x5a\xc4\x8e\xa0\xc5\x3f\xd7\x20\x83\x06\x66\x1e\x22\x0e\x17\x0d\xca\xe5\x83\x7f\xa9\xd3\x0a\xaf\x20\x12\x41\xd3\x53\x7f\x7c\x5d\xea\x51\x72\x4f\x42\x39\x82\xce\xed\x52\x0d\x4f\x39\x5a\x21\xd3\x35\x6b\x44\x6f\x67\xa5\x1b\x11\x55\x76\x8c\x1c\x09\xa1\x93\x01\x32\xac\x5e\x0b\xbb\xa8\x74\x2e\x79\x31\xca\x9f\xce\xc5\xea\x18\xed\xe9\x10\xd6\x0b\xd8\x3f\x68\x3c\x9f\x7c\x8a\x45\x9b\xfa\x2c\xf6\xbd\x49\x1d\x7e\xb3\x51\x69\x17\xa9\x83\xdc\xd4\xa4\x83\x03\xc5\x5a\xf2\x70\x89\x01\x55\x37\xdf\x93\x69\xbc\x20\xbc\x3b\x26\xe5\x5a\xa7\x85\x1f\xe1\xce\xae\xcb\xf0\x8a\x36\x31\xc4\xa0\x29\x38\x32\x66\xb8\x34\x30\xec\x45\x7a\x78\xb8\x1e\x3f\xba\x5c\xd1\xed\x49\x3f\x7e\x46\x89\x4d\x55\x12\x39\x0a\x6d\x7c\x47\xe1\x8f\x34\xb5\x71\x7a\x45\x87\x56\x1f\x9b\xa8\xa6\x8d\x38\x52\xab\xcf\x42\x24\x31\xa9\x23\x54\xde\x53\xc5\x6e\xad\x64\xee\x8a\xc1\x90\x68\x07\x4c\xa0\x2c\xbf\x42\x6c\x82\x22\x27\xdc\x74\xf7\x4f\x20\x2e\x4e\x83\xf4\x30\xf3\xc3\x51\xc9\xea\x58\xa2\xa9\xa1\x72\xcf\xde\xf7\xb4\xee\x20\x51\x21\x3c\xff\x15\xf5\x75\xe6\x83\x45\xa5\x63\x17\x49\x84\xdf\xfe\x56\xaf\xd6\x7d\xa0\xc3\x82\x96\xe8\x40\x45\x03\x55\x30\x34\x42\x83\xd7\xfa\xe8\x16\xd9\x2c\xe7\x5a\xb8\x98\x20\x71\xa4\xcb\x82\xd2\x17\xee\xed\x5c\x3e\xb0\xa7\xc6\xd1\x1d\x3b\x09\x0d\x9f\x2b\x20\xff\x5b\xa8\x52\x84\x2f\xac\xd5\x06\x43\xdc\x3b\x53\xf8\xf4\x7e\x05\xe0\xc9\x7c\x19\x90\x92\xcf\x62\x8e\x58\xaa\x3c\x4c\xb3\xbe\xe3\xdc\x16\x1a\x23\x00\x32\x7f\xbf\x7e\x78\x52\x87\xfb\x2e\x55\xb5\xbc\xa9\x49\x6f\xaf\xd9\x5c\x02\x1a\xe6\xd7\xd9\xa1\xdb\x55\x56\x51\x2e\xac\x42\xb3\x0f\xed\xd6\xe6\xb3\x62\x0a\x2c\xd0\x4b\x0f\x6a\x0a\x73\x55\x4a\xed\x28\x03\xb0\x76\x27\xb3\xc0\x6e\x8b\x94\x7c\x9b\xf0\x4b\xd5\xb3\xc0\xdf\xbd\xa2\xdb\xa4\xfa\xb6\x0c\xf7\x99\x25\xc2\xdf\x9a\x14\x8b\x98\x61\xc7\xe3\x0c\xb3\x2c\xda\x34\x5c\xe1\x5f\x56\x2d\x2e\xdb\x17\xaf\xb3\xd4\x53\x9a\xb2\x08\xf2\x6c\x24\x1a\x85\xd9\xdb\xb4\xc9\x2a\x35\xb8\x2e\xa7\x10\x95\x0d\x3e\xe3\xc8\x0a\xd2\x77\x71\xd1\xb7\x1d\x38\xd4\x53\xdb\xeb\x7c\x76\x3c\x0f\xdc\xa9\xf9\x7f\x17\x7a\x95\x40\x12\xce\xef\x4f\x0f\xb8\x46\x3d\x26\x23\x50\x9f\x98\x15\xae\x3b\xab\xb5\x90\x38\x8e\x6f\x42\x7b\x3b\xaf\x22\xef\x3b\xd7\xa8\xf6\xe6\xd5\xee\xe5\xbc\xc7\xaf\x92\xe1\x2d\xc7\x7b\x0f\xed\x5a\xed\x6d\x53\x40\xed\x06\x5f\x19\x9f\x3c\x98\x18\x75\xb1\x8d\xf8\x59\xa6\x52\xa2\x97\xf7\x53\xa4\x63\x51\x4d\x40\x4f\xbb\x4c\x5d\xa7\x3c\x62\xb0\x0b\xb0\xcb\xe8\x03\xc9\x5f\xc0\x8e\x41\x7d\x86\xa2\xd1\x4d\x4f\xda\x5b\x19\x1f\x26\x36\x8e\x3d\x01\x1f\xda\x3a\x40\xa1\x95\x94\xb8\xfc\xeb\xfd\xcb\xfb\x45\xdf\x5e\xe3\xcd\x9c\xe7\xf6\xa8\x16\x7d\x15\xdf\xf6\x90\x83\xb9\x1e\x66\x93\x38\x94\x32\x37\x1e\x50\x69\xba\x8e\x17\x66\x59\xf9\x60\xf5\x2c\xc8\x97\xef\xf1\xbd\x32\x05\x8f\xe5\xe8\xc9\x8d\x53\xb2\x92\x0a\xf2\xc0\x50\x2c\xb5\x6d\x41\x9c\x66\x46\xa1\x71\xb0\xa2\x6b\xc8\x90\x1d\x16\x3d\xff\xb9\x5d\x53\x21\xa2\x62\x76\xf5\xb6\x23\x7b\xd0\xd8\xe6\x1a\x57\x7d\x4e\x2b\xa3\x58\xec\x79\x36\x34\xf6\x7f\x95\xee\xa5\x2d\x58\x94\x01\x74\xd6\x0a\x15\xb0\xd4\xe5\xe0\x48\xfd\x22\x33\xa3\x5d\xb1\x51\xad\xf9\x61\xaa\x02\x76\xc3\x7b\x2e\xa8\xaa\xdf\x4e\x01\x23\x3e\x6e\xff\xf7\x91\x71\xa6\x51\x96\xcd\xab\x5c\x6b\x64\x14\x02\x53\xe6\xcd\xc3\x75\xc5\x76\xd7\xa0\x1d\x92\x25\x9d\x7a\xb6\xbb\x17\xe2\xbe\xd8\x32\x03\xde\xe9\x27\xb2\x3b\x18\x41\xae\xde\x17\x3f\xc5\x29\xb7\xf2\x4e\xfc\x55\x5a\x12\x0d\x50\x6d\x01\x65\x08\xb6\x0e\x56\x1e\x91\xe3\x91\x8a\x80\xe4\xe7\x96\x2b\x00\xaa\x58\xcf\x87\x67\x65\x6b\xcf\xc8\xfd\x44\x62\x72\x42\x44\x3a\x78\x0b\x44\x56\x72\x1f\xb7\x88\x87\x3b\x90\xa7\x29\x5f\x6f\xee\x94\x80\xb9\x69\x53\xc3\x8f\x7b\x6c\xa0\x90\x90\xf5\x59\x99\xb8\x56\xf4\x94\x6e\x7f\x59\x25\x78\x85\x6f\x88\x18\xbc\x66\xf8\xc0\x95\x7a\x0e\x64\xe3\x82\x94\x95\xc9\xd6\xde\xd4\xcc\xe4\xf8\x74\x54\xd5\xea\xca\x9a\x97\xa5\x22\x07\x37\x94\x4c\x26\x2e\x83\x0b\xba\xb3\x52\xd5\xa6\x15\x24\x00\x42\xe9\x39\x9a\x3c\xb5\x85\xbc\x08\xba\x9f\xbd\x7e\xbb\x5c\x08\x96\xef\xba\x7c\x58\x1a\x04\xa3\x54\x44\x4f\x05\x9b\x04\x79\x70\x5a\x5e\xb9\x5a\x31\x6e\xf5\x84\xcc\xc5\x97\x36\x27\xbb\xf8\xbc\xd5\xfd\xda\x59\x89\x0d\x29\xd4\x6b\x05\x35\x04\x43\xb1\xc3\xbd\xd0\x6d\xe2\x7a\xb9\xf9\xc8\x76\x31\xb4\xf5\x82\x15\x27\xf5\xb2\xc3\x36\x45\x85\x95\xad\x09\x97\x1c\x1b\x71\xe2\xd1\xfc\x73\x37\xc8\xb7\x5e\xe8\x72\x5d\xae\x24\x53\xf7\x65\x2d\x9a\xbb\x76\x5b\x1b\x6f\x9f\x0a\xc1\xa5\xf5\x4c\x8e\x76\x6b\x98\x39\x2a\x58\x2a\xf3\x81\x89\xa2\xa1\x82\x6b\xd4\x8e\x6d\xfa\xd3\x5b\x2d\x09\x8f\x01\xa8\xca\xb5\x17\xe3\xd9\xbc\xdb\x41\xea\x69\x2b\x01\x34\x6b\x6a\x60\xa4\xc1\x37\xd2\xca\x8d\x90\x27\xdd\x89\x22\x29\x95\x94\xdf\x3a\x52\xd2\xdd\x30\x72\x72\x36\xf5\x89\x82\x41\x3c\xb3\x47\x78\xe0\x85\xab\x35\xfc\x8c\xfe\xe7\x92\x31\xbc\xe0\x77\x77\x8b\xc3\xcb\xdc\xaa\x53\x76\x9d\xb8\xdd\x94\xb9\x6e\x67\x1c\x62\x3b\x50\x0c\x7d\xed\x7f\x5e\xeb\x72\xfa\x8e\x89\x00\xee\xfb\x9b\x0b\xca\xec\xc1\x62\xe1\x4b\xcb\xf7\x64\xf3\x42\xc9\x78\x1e\x68\x66\x88\xe2\x24\x7f\x6c\x98\x32\xb7\x74\x2d\x5a\x55\x12\xa2\x5f\x2e\xd1\x44\xc2\x90\x5d\xe6\x10\x07\x25\x85\xcc\xde\xf9\x84\x7c\x9a\x5c\xd3\x21\xf9\x34\x3f\xb6\xf8\x3a\x2d\x04\x39\x5e\x89\x56\x30\x97\x72\x12\x73\xb4\x7f\x3d\x3c\x48\x0d\x15\x11\x28\x2d\x5d\x7d\x03\xd2\xa6\xbb\x51\x77\x45\xed\xb4\x06\x3f\x7d\x4a\x9f\x7b\x33\x62\x80\xc0\x29\x8f\x3d\x6f\x6c\x14\xc8\xf9\x82\x70\x26\xcb\xe5\x83\xcf\xbd\xa1\xab\x72\x11\xa7\x2c\x46\xde\x85\xad\xf1\x3d\xd8\xb4\x4e\xb7\x3d\x53\x9e\x2d\xb3\x51\xd2\xed\xd1\x72\xf8\x1d\xbf\xbd\x52\x82\x06\xb8\xad\x90\x89\xfc\x92\x05\x13\xde\xf4\xd6\xb7\x35\x05\x0d\x72\x6b\xa9\x22\x20\x9a\x77\x0e\x4f\x36\x82\xca\x18\xda\x5e\xc1\xbe\x33\x10\xdf\x96\x12\xee\x2e\xa3\xc7\x8e\x83\xeb\x94\xa6\xdc\x24\x0e\xba\xd7\x14\x36\x2b\xd8\xe6\xca\x8d\x51\x59\x76\x54\xf1\x4b\x29\x31\x52\xa2\x89\xde\xd2\xff\x6e\x90\x09\x48\x98\x69\x31\x42\x1d\x62\x70\xfc\xa0\xfd\x9e\x3a\xb3\xa7\x9c\xa6\x9f\x1a\xad\x21\xc1\x09\x83\x44\x23\x02\xe2\xf7\xa4\x1b\x26\xea\x0e\x30\xbe\x59\x22\x82\x88\xb7\x7d\xb9\xfc\x4c\x64\xdb\x88\x37\xf6\x0f\xbe\x2b\xb4\xcd\x9d\x1a\xf6\x38\xab\x3b\xfc\xe9\x3f\x06\x9a\x4e\x3e\xaa\x11\x3b\x9e\x4a\xc8\x86\xc0\x9f\x64\x23\x73\xfa\x54\xde\xeb\xb8\x67\xbd\x12\x24\x11\xab\x14\x7d\xee\x88\xf5\x98\xf0\xf6\xea\xa0\xac\x2c\x66\xfc\x19\xe3\xc0\x70\x6d\x3d\xd0\xf0\xfd\x09\x6d\x94\xbb\x35\xf1\x7c\x64\x87\x79\x51\xec\x37\xfe\x9b\x56\x18\x51\xd8\xc4\xab\xc0\x10\xf6\xdf\xde\xd5\x96\x17\xf3\x45\xed\xdc\x93\xee\xf7\xbc\x2e\xc8\xeb\x61\x56\x93\x98\xe2\xd4\x8c\x99\xda\xb5\x90\x0a\x65\x00\x48\xe3\x74\x89\x61\xb1\x87\x61\x81\x0f\x03\x7a\x52\x5f\x5d\x2c\xc4\x3a\x05\xd7\x9a\xf3\xac\x77\x5d\xaf\x20\xb2\x5d\xea\x33\xa3\x0e\xf7\xde\x93\xfe\xd1\x46\xad\x92\xf7\xab\x04\x59\x11\x99\xfe\x81\x45\x9a\x9e\x13\x75\xc3\x7d\x05\xd4\xe8\xd4\xf0\x77\x64\x31\x6f\x53\x3e\x02\x4e\x2d\x58\x95\xfc\x0b\x8e\xec\x89\x35\x54\x9b\x66\x5c\x25\xb2\x1d\xa1\x00\x96\xf5\xdf\xe4\x69\x56\x98\x2d\xb6\x26\xb8\x0d\x5f\xdc\x9e\x8c\x14\x16\x47\xa5\x88\xa6\x1d\x00\x5a\xb2\xb3\xec\xab\xb5\x34\x3e\xbc\x84\x65\x4d\x3a\xc1\xbc\x60\x63\xd1\x4c\xc8\x2c\x5c\x21\x6d\x7f\x78\x20\xe8\xab\x28\xfe\x9b\xa4\xe4\x44\xba\x94\xbf\xdc\xa9\x43\x8b\x3c\x46\xa1\xbb\x10\x15\x03\x3f\x56\xfe\xd4\x63\x91\x1a\x65\x70\x61\xae\xdc\x49\x30\xfa\x8a\x33\xe1\x69\xa0\x20\x98\xfb\x18\x72\x3c\x54\x8f\xbb\x7c\xb8\x4d\x76\x03\x99\x02\xd0\x7b\xae\xed\x6a\x29\x62\x69\x0b\xd7\x91\x55\x47\xe5\x0e\xca\x59\xd4\xe7\x29\xe7\x9a\x71\x5a\x8a\x17\xa6\x00\x61\xa2\x07\xce\x0a\x81\xad\xc1\xd4\x84\x90\x2d\xac\xcc\xcc\xe7\x34\x9c\x04\x16\x66\x1b\x51\x57\xf7\xc7\xbb\xe3\xeb\xbb\x9f\x53\x85\xa2\xe0\x71\xff\x36\x19\xfd\x3a\x88\xe3\x7a\xd4\xe1\x5c\x65\x7e\xc0\xee\x5f\xf8\x7f\x92\xba\x21\x91\x32\xaa\x1f\x16\x35\x69\x5b\x4b\x2e\x1f\xec\x7f\x3c\x69\x7b\x84\x4a\x8c\x80\x8d\x55\xaf\x1e\x62\xc1\xd4\x40\xb5\x00\x06\x84\xcc\x0f\x35\xfd\x13\xc3\x46\xac\x0c\x6d\xee\xe8\x9a\xe9\x3b\xf2\x35\x95\x89\xa2\x24\x1b\xfc\xf5\xb0\x06\xdb\xa2\x46\x39\xda\x9c\x99\xe7\x66\x28\xb3\x41\x2c\x24\x81\xd2\xa3\x8b\xb0\xb0\xcd\xc8\xac\x28\x5d\x74\xfe\x0f\xb1\x48\xde\xf3\xc8\x34\x8e\xbc\x4e\x06\xe3\xff\x43\x03\xfa\x0d\x3d\x0d\x60\x15\xd1\xf8\x09\xbe\xaf\xc0\x41\xaa\x94\x85\x09\xf9\x94\x3e\x71\x0d\x40\x8d\xc8\xc7\x30\x35\x6e\xf5\x40\x25\x0a\x18\xcc\xe7\x16\xfc\x99\x03\xdd\x03\x54\xea\x24\x17\x26\x79\x55\xb3\xb8\x72\xab\x18\x1b\x96\x8d\x5d\x69\x9a\x35\x79\xe1\xd8\x0e\xbd\xb1\xec\x7a\xfc\xf0\xd6\x9a\x6a\x47\x4e\x29\x67\x06\xb5\xb9\xab\x54\xea\xdb\xed\xa3\xb5\xc8\xa7\xca\x34\x88\xd9\xc0\xa7\x76\x41\x66\xd2\x3a\x19\xec\x10\xa9\xcd\x93\xbd\xec\x93\xc9\x88\xda\x45\x99\x5f\x40\x30\x09\xbb\xa2\x41\xd3\x05\x15\x58\x71\xe8\xac\x08\x28\xda\xc6\xb3\xda\xd6\x40\xac\x44\xa0\xcb\x0d\xc7\xfe\x83\x8f\x5e\x15\x97\x1a\x80\x16\xb0\xf6\x0e\x97\xda\x2d\x75\xa9\x61\xb6\x16\x68\xe8\xf1\x9a\x40\xdb\xf1\x0b\xae\x2e\x81\xac\xe3\x0e\x39\x34\x0a\xd6\xcc\x1a\xa1\xf2\x31\xea\xa2\xf1\x8f\x67\xeb\x43\xcd\x92\x88\x77\x60\xec\xb6\x49\x17\xf2\xf6\x1d\x83\xd8\x60\x8c\xcc\xf3\xc0\x69\x5a\xa6\x51\xa0\xae\x38\xff\x83\x4f\xf4\x4d\x90\x97\x90\x0b\x54\xbd\x1f\xf4\x93\xd9\x96\xc7\x38\x62\x86\x5f\xfe\xf7\xd6\x69\x72\x02\x16\x8e\x0a\x93\xec\x80\x19\x9a\xf4\x10\x62\x0c\xdb\xa2\xb7\x3f\xe7\xb0\x36\xf0\xf3\x59\x57\x39\xe1\x87\xd1\x93\xf9\xce\x7a\x78\xd4\x45\xbf\x02\xc9\x5d\xf6\x93\xdd\x72\x2a\xeb\x1a\x0c\x63\xa7\x83\x11\x9e\x3e\x05\x7b\x66\xe8\xfc\xcc\x30\x63\xc5\x9e\x90\xa5\x33\x4c\x35\x5d\xe4\xb2\x5e\x9c\x42\xb5\x4f\xde\x6e\x85\x3a\x88\xf1\xf9\x57\xb0\x49\x9f\x5a\xd5\x30\x8b\xf7\xb6\xff\x9a\x86\xb7\x27\x46\x39\x3e\xbb\xd6\x9d\x94\xb0\x2d\x2e\x1e\xef\x59\x38\x82\xe8\x70\x8c\xf9\x6b\x72\x1e\xc1\x5d\x1a\xf8\xfe\xbb\xf6\xa8\x32\x25\xc4\x06\xa9\xf2\x70\x31\xbe\x59\xe9\x64\x58\xc4\xc1\xa6\x1f\xfe\xf8\x5b\x3b\xb4\x8a\x93\x3f\x02\x91\xea\x84\xa5\xca\x5b\x90\x1f\xd5\x10\x23\x71\xd3\x30\xf3\x4d\x55\x4a\x15\xdb\x36\xd7\xc2\x0b\x9f\xcc\x8d\x41\xdd\x18\x93\x38\x5a\xcf\x37\x5b\x3c\x03\x5d\xdc\xfb\xfc\x12\xe5\x02\xf5\x50\x09\x6c\x59\x9e\x7c\xfd\x37\x57\x50\x39\x12\x10\xfd\xae\x60\xa2\xba\x55\xc4\xca\x11\x14\xfe\x50\xeb\x68\x2d\xca\x3b\xa5\x9c\xe5\x27\x85\x71\x4e\xbe\x2d\x21\x11\x53\x72\x2d\xe1\x8b\x9f\xb8\x56\x06\x28\x0f\x79\x1e\x85\xd9\x45\xcf\x2e\xcd\xda\x02\x91\xa8\x5d\x98\xf2\x17\x5e\xab\x25\x57\xc8\x71\x6d\xd0\x82\x83\x07\xf5\xe5\xda\x00\xe5\x43\x6d\xa0\x4a\xad\x78\x56\x4b\xe2\xcc\x1a\x35\x90\x11\xa9\xc4\x7e\xf3\xe2\x70\x75\x6f\x62\x16\xe3\xbf\xf8\x61\xbf\xef\xa2\x42\xe2\xe0\x29\x39\x29\xf2\x2e\xe5\x2c\x6f\x80\xc8\x69\x18\x98\x8b\x73\xdc\xeb\x68\x09\xf8\x46\xf5\xee\x9d\x2d\xef\x29\xa2\xdd\xd8\x83\x78\xff\xf9\x03\xba\x7f\x67\x17\x75\x30\x9c\x17\xa9\x62\x2d\x69\x59\xb3\x64\xcc\x84\xbb\x14\xcb\x9a\x21\x8e\xae\x6f\x07\xd6\x00\xbc\x02\xfc\x97\x27\xe3\xc4\xd8\x25\xfc\xa0\xff\x9b\x10\x15\x2c\xf0\x89\x0a\x6c\xf8\xa0\xef\x80\xb8\x0f\x21\x0c\x8f\x83\x77\x1e\x57\x84\xf8\xb0\x6b\x08\x8d\xf9\x79\x1b\x34\xec\x58\xd4\xcc\x55\x17\xd6\x9c\x0b\x5a\xb0\x42\x0e\x32\x91\x40\x66\xf2\x60\x75\xe7\x69\x79\x70\x73\xaa\x6f\xbe\x27\xf3\xcb\x23\xd2\x44\x81\x4f\x7f\x5a\xfa\xc0\xa5\x2e\xf4\x51\x54\x59\xa4\xdc\x9f\xc4\x71\x99\x79\x7a\x81\x16\xfc\x6a\xf8\x35\xea\xa3\xba\x63\xae\xfa\xa4\x52\xe9\x3e\x6a\x93\xd6\xc7\x96\x8a\x6f\xc9\xdc\x7a\x65\x9d\xfa\xb7\xcd\x35\xd3\x20\x86\x3e\xf9\xb8\xd2\x37\x76\xac\x70\x8d\x98\x80\xe5\xbb\x6f\xfe\x35\xca\x3e\x07\x6a\xa8\x1c\x07\x7c\xfe\x0d\x2d\xb1\x32\x2c\x6c\xcb\x8f\x9d\xde\x96\x0c\x99\xed\xa8\x8a\x04\x03\x25\xae\xf0\x47\x9d\x87\x7d\xca\x87\x06\xae\x94\xd2\xb9\xa5\xa0\x1e\xf0\xe1\x69\xd1\x94\xcb\x07\xcd\x53\x85\x3b\xc7\xe4\x49\x5c\x40\x6d\xcb\x70\x09\x08\xab\xd4\xd5\x92\x13\x35\xb7\x47\x3b\x02\x6b\xc9\x76\xda\xca\x25\xa3\xb4\x64\xc4\x41\x8e\x41\xd4\xd3\xe9\x17\x17\x93\x95\xac\x6b\xd3\x0e\x70\x5e\x7e\x63\x9b\x76\x50\x1a\xd4\xa1\x15\xd8\x78\xc1\x8f\x4e\x6b\x92\x0c\x84\x21\x66\x92\xe4\x89\x91\xb5\x0b\x3a\xc8\x81\x09\xb7\xf7\xd4\xf0\x1d\x71\xe2\xd3\x85\x62\x14\xff\xfb\x2b\x55\x62\xad\x83\x11\xc4\xc4\x55\x83\x55\x89\xa3\x12\x5f\xd0\x41\xf3\x44\x19\xda\x19\xa5\x2e\xae\x61\x5b\x61\x4c\x64\x3f\x37\x7e\xa8\xd2\x22\xb4\x4d\x15\xed\xf7\xe2\x91\x11\xfa\x83\x01\xe3\x3c\x31\xa1\x9b\x33\x2b\xe2\x6c\x22\x21\xc9\x96\x7a\x75\x89\xcc\x3c\x71\x27\xb6\x95\x61\xd2\x77\x6f\x90\x0b\x8c\x3a\x06\xce\xd9\xb4\x0b\x0c\x52\x37\xeb\xd4\x19\x2e\x05\x35\x21\x6e\x40\x7d\x7a\xbe\xd6\x01\xa2\x7e\x35\x6a\x80\xfc\xe0\xb2\xdc\x68\x55\x0c\x41\xf4\xdb\x1a\x86\x7c\x0a\x6f\xac\xf1\x21\xc2\x2f\xa4\x66\x7e\x19\xd7\x94\x65\xfc\xb1\x0b\x71\xf1\xe4\xf2\x63\x3b\xf3\x89\x2c\xf4\x64\x1c\xea\xe5\x5c\xca\xa9\x03\x08\xfa\xba\x9d\xfd\xe4\x33\xad\x96\xea\x7a\x9f\x99\x87\xc6\x26\xd7\x7c\x09\xd9\x04\x69\x94\xab\xff\x6e\x90\x9b\xaa\x82\x5d\xab\xac\xc8\x4f\xf6\x64\x1b\x4e\x6b\xb2\xdf\x61\x71\x06\xa8\xa1\x30\x01\xf8\xd6\xe5\x84\xad\x4d\xb4\x2e\xfe\xdf\x25\xa5\x68\xc5\xe0\x25\xd3\x71\x52\x17\x92\x6c\x6a\x01\x5c\xed\xe8\xe3\x2a\x57\x00\x43\xa4\xdc\x3a\x50\xb3\xc3\xc4\x1e\x57\x02\x84\xb1\x7b\xfa\xb9\x03\x9a\x63\x14\xa3\x25\x86\x2a\x95\x58\xb0\x33\x33\x66\xa3\x54\xf7\x65\x7c\xce\x36\xae\x8f\x62\xf8\xe1\x13\x57\x18\x7e\xfc\x8c\xa9\x16\x7f\xe1\xd9\x9e\xcb\x07\x27\xde\x54\x73\x7f\xae\xcb\x9e\xbd\xfb\x7d\xdd\x0a\xd1\x77\xc3\x8b\xf2\x2c\xe8\xbf\x66\x3a\x99\xda\xff\x65\x50\xad\x67\xbe\xb9\x6f\x98\xda\x15\x2e\xa9\x54\x97\xd4\xe4\xc6\x24\xf8\xa6\x1b\xb9\x96\x47\xbc\x5e\x39\x7b\x99\xdf\x76\x26\x5f\xa7\xa0\x80\x26\x38\xd6\xee\x4c\x45\x06\x3c\xde\x66\xf9\x9e\xd4\xe4\xc3\x1a\xd8\x85\x46\x26\x91\x1a\x9b\xb7\x27\xcb\x8e\xe9\x01\xda\x75\x39\x41\x40\x04\xa1\x6f\xae\x48\x48\xb9\x46\xfc\x1c\xaa\x45\x58\xda\x8d\xca\x24\xc9\x17\xcd\xac\x3f\xac\x9d\xa1\xd5\x68\x64\xc8\xc1\x49\x37\x28\xaf\xc2\xa6\x1d\xdc\xed\xe6\xc4\x46\x25\x79\x06\xf8\x0d\xff\xba\x43\x8a\x77\xb6\x4d\x89\x63\xd8\x94\x87\x9f\xf4\x8c\x23\x43\x94\xa2\xd3\xa6\x5c\xf2\x3a\x7c\xa9\x4b\x9e\x1f\x28\x5e\xa8\x17\xde\xb9\xf0\xf5\x4b\xf9\x6f\x2a\xaa\xf0\xc8\x46\x86\x68\x1f\x67\xde\xdc\x9f\x74\x30\xc4\x9e\xc1\x27\x44\xa9\xe5\x57\x28\xb6\x4d\x3c\xbb\x25\x25\xc7\x8b\x9c\x0f\xd3\xa7\xb4\x9a\x65\x52\xf3\x14\xd9\x51\x4f\x15\x1b\x06\xa9\x79\xa9\x6d\x82\x5a\x5a\x76\xfa\x95\xaa\xa6\x0d\x8a\x7d\x14\x33\x4f\x03\xf6\xf5\x4e\x1c\xc6\x6c\x25\x8e\xfd\xd2\x52\xb2\x6f\x3e\xfb\x0e\xe3\xec\xdc\x63\x70\x93\xdc\x86\xcd\x11\x06\xee\x3d\xa9\x0b\x6c\x14\x54\x03\xd8\x14\xa0\xad\x3a\x7c\xd1\xff\x30\x6d\x85\x90\x1a\x57\x39\xea\x45\x94\xf5\xa7\x23\x13\xb8\x3c\x30\x10\x48\xdf\x71\x22\xb9\x00\x5c\x54\x44\xda\x19\x93\xfa\xd7\x9d\x8d\x52\x75\x81\xa9\x24\xf2\x5d\xcb\xe3\xc0\x17\xc6\xb2\xf0\x44\x5d\x3c\x4c\x69\xa6\xea\xfd\xde\x8b\xf1\x71\xeb\x7a\xf5\xad\xdb\x33\xeb\x14\xbc\x0a\x28\xf0\x72\xf5\xdd\x76\x29\xe6\x22\x2c\x70\x7b\x53\x8a\xce\x0e\xd8\x28\x64\x78\x2c\xc2\x15\x1f\x8e\xaf\x8b\x01\xa8\x55\xea\x8a\x74\xbc\xf0\xac\x70\xca\xf4\x3d\x9b\xf2\x16\x75\xea\xed\x01\xf2\xe5\x16\x70\xb7\xef\x52\x83\xdf\xca\x40\xad\x03\xdd\x32\x7d\x7a\x2b\xc7\x47\x3f\x17\xd4\x29\x9e\x50\x5b\xb8\x3b\x67\x2e\x36\xf7\x92\x84\x57\x11\xc3\x8e\x01\x21\x27\xb5\xff\x68\x9d\xfa\x54\xb5\x2a\x1d\xd8\xd3\xaf\x4f\xee\x1f\x15\xa3\x34\x32\xcb\x78\x74\x11\xfc\x6c\x99\x45\x69\x64\x60\xf6\x62\x43\x82\x68\xb0\x74\xc9\x04\xbe\xfa\x38\xd9\xf5\x4a\x39\x8b\x65\xbc\x87\x9c\xfe\x5b\xbb\x3c\x41\x9b\x54\xfd\xa9\xdf\x2b\x9c\x93\x22\xaa\x10\x1b\x4c\x8d\x66\x08\x30\x46\x95\x51\x9b\x14\xc5\xfa\xe3\xd7\x32\xe8\xf5\x46\x3d\x31\xb1\x05\x24\xf0\x1f\xb2\x4a\xd1\x82\xc3\x28\xc3\x8b\x96\xf7\x2f\x0a\x22\x2d\xe5\x54\xfe\x9e\xd4\x73\x5b\xa0\xce\x2d\x51\xdb\xc4\xfc\xd8\x5d\xe8\x5d\x19\xad\xf5\xf0\x9f\x9f\x1d\xaf\x75\x19\x09\x75\xb5\x55\x99\xd1\x34\x9b\x6b\xc4\xf0\x48\x05\xec\x2b\xf2\xc1\xe6\xcb\x1a\xeb\xa5\x5a\x65\x10\xf6\x62\xf4\x4c\x90\x56\x84\xbc\x08\x27\x44\xa7\x6b\x0f\xeb\xe3\x0f\xe4\x45\xaa\xff\x8a\x60\x8d\x87\x3a\xf9\xc6\xbd\xa9\x51\x6c\xdc\x2e\x87\x3a\x5d\x15\xea\xc3\xf1\x54\x38\x9c\xd4\x4b\x06\x4f\xe5\x2a\x0e\xd7\x49\x2f\x50\xfe\xd4\xb8\x43\x9a\x80\x01\x65\x2e\x78\x80\x1e\xd7\x4c\x95\x8a\x36\x2a\x14\xa2\xca\xec\x4b\x4f\xca\x1d\x5d\xc2\x94\x95\x48\x2e\x1f\x7c\xa7\xa6\x90\x20\x7d\xe2\x94\x50\x85\x83\x89\x16\x0e\xd7\xfa\xc6\xd8\x71\x70\xd7\x84\x8a\x9a\x8e\xff\x59\x08\x59\xb5\xe3\x0e\x6c\xe7\xf2\x41\x79\x6d\x72\x2d\x97\x19\xf2\xdd\x44\xe1\xfa\xfc\x1b\x10\xe8\x16\xce\x5b\x7a\xef\xb2\xdb\x17\xcd\xbb\x27\x9a\x42\xff\xee\x64\xa3\x72\xde\x38\x0e\x8c\x51\xc3\x37\xb3\x58\x37\x86\x8d\xa9\x52\xe2\x44\x59\xae\x79\x33\x23\xe2\x51\x6d\x9c\x96\x1e\xfc\x62\x92\x10\xdd\x36\x15\xf2\x92\xe1\xb3\x1a\x14\x10\x3b\x6f\x56\x7d\xb9\xef\x68\xb5\x40\x25\x6e\x6f\x71\x74\x48\x36\x19\xfe\x4b\xd8\xa1\x06\x31\x41\xa0\x2b\xd5\x7c\x83\x66\x55\x4b\xdc\x30\xda\x4b\x13\xb4\x6c\xbb\xec\x88\xe1\xae\x3a\x03\xfa\x4c\xff\x81\xda\xb2\xe2\x0d\x31\x40\x1f\x4d\x1e\x0f\x5d\x5e\x03\x01\x7c\xe7\xdd\x33\xc3\x55\x6b\x2f\x3d\x8c\x7f\x49\xeb\xe9\x81\xc2\x3f\x73\x72\xae\xd7\x65\x8b\x47\x98\x35\x3d\xa5\x1e\xeb\x56\xd5\xb1\x53\x5b\xf5\x56\x99\xed\x57\x0a\xfc\xad\x0a\xa4\xe8\xc6\x93\x8a\x8b\x05\x23\x8e\x41\xaa\x1c\xf9\xd1\x93\xfe\x9a\x93\x7c\x31\x20\x85\x3a\x41\x45\x7d\xa5\xa9\x3a\x7f\xef\xf2\x1d\x13\x71\x24\xc8\x85\xb3\x52\xc9\x0c\x4a\xaf\xae\x9f\x8c\xd1\x2b\x4a\xd4\x1b\xa1\x26\x7b\x97\x36\xc2\xb5\x69\x2d\x6a\x4c\x65\xaf\xdf\xd1\xa8\xf4\xb8\x6a\x5c\x83\x4c\x1c\xc1\x53\x0a\xaa\x63\x71\xe4\x41\x13\x6c\x6b\xd2\xda\x77\xb4\x52\xb5\x81\x9f\x93\x7d\x4c\x33\x18\x67\xd8\x95\x0a\x6a\x0f\xd4\x92\xa7\x81\x81\x5c\x8b\x9f\x06\x5f\x7d\x5e\x8b\x34\x26\xaa\x24\x05\x59\xd2\xfd\x1e\x1e\xa5\x1c\x8a\x18\x79\x70\x34\xf2\x4c\x82\xf1\xf8\x97\xf9\xd5\x5b\x3a\xc2\x2d\xb2\xda\x13\x60\xc0\x3e\x0b\xe1\xe0\x5a\x99\x63\x42\x26\x23\x35\xe0\x69\x4d\xce\xaa\xcb\x26\x4e\xac\x38\x95\xbd\x51\xb3\x55\x03\x9c\x06\xf2\x24\x45\xa3\x32\x47\xba\xc8\x39\xdc\x71\xe2\xf1\xcb\xfc\x6c\xca\xdd\xce\x5c\xec\xa0\x3a\x02\x4c\xea\x7a\x80\x3d\xe6\x96\x22\x07\x31\x62\x9a\x96\x12\x90\x9b\xdf\x94\x15\x04\xaa\xb8\xbc\x4b\xf1\xd4\x99\x46\xa5\x6e\x53\x53\x87\x99\xef\xca\xff\x29\x20\xa7\xcc\x9d\x17\xf9\x9c\xa8\xfc\x0e\x1c\x05\xcb\x17\x2f\xcf\xe5\x83\x65\xc7\x95\xd3\x19\xd9\x36\xa3\x94\x1f\x21\x8d\xaf\x26\xdf\x47\x07\xf1\x2c\x1e\x32\xef\x31\x6f\xd0\x32\x9a\x0a\xe2\xca\xf1\x49\x81\xa9\xae\xf3\x70\xbe\x21\xc7\x23\x36\xe2\x40\x6b\x71\xae\xbe\xcd\xe2\x2a\xa4\x54\xf1\xc2\xf4\x6c\xaa\x76\x60\x77\x60\x13\x3b\xf1\x8e\x49\x35\xb4\x26\xdf\x5d\xd9\xa1\x46\x99\xfa\x5e\xfc\x9c\xbb\xed\xe4\x12\x71\xa8\xc3\xd7\x1d\xe1\xa5\x2a\x3f\x39\x2f\x6d\x94\x27\x27\x27\xd8\x70\x85\xbe\xcc\x97\x37\x8b\x5c\xc0\x75\x7d\x8e\xee\xcf\xf7\x64\x46\xac\x84\x95\x70\x0f\x32\x89\xcb\x67\x75\xef\xee\x56\x6d\x2a\x99\x03\x8d\xd7\xec\xf8\x64\x8c\x74\x31\x88\x46\x4c\x7c\xb3\xbf\xc8\x93\x18\x11\x2c\xbf\xd4\x77\xb5\xf8\xe7\x81\xb4\xb7\x30\x4d\xf9\x95\x90\x74\x6e\xe3\x5a\xb8\xe9\x85\x9b\x14\xa3\x59\x52\xc3\x7c\x5c\x38\x87\x7f\x99\x8d\x9d\x5c\xcb\x64\xd9\xd8\xdf\xbd\x3e\xf9\x68\x4c\x54\x41\x8e\x29\x93\x9d\xd4\x6b\x02\x2c\xeb\xfa\xd5\xaa\xcd\xf3\x3a\xa8\x25\x4b\xc3\x95\xd2\x1c\x00\xd1\xa9\x99\x26\x2c\xbe\x65\xd1\x1b\x55\x16\x9f\xf7\xbe\xf6\x8e\xb0\xc1\xb0\x87\x98\x30\x5e\x9e\x78\x4c\x56\xdd\xc8\xb6\x71\x09\x9b\xb6\x62\x6b\x92\xbf\x41\x13\x15\x21\xd4\xa6\xa5\x58\x69\x34\xf8\xdb\x19\x50\x87\x9c\xce\x89\xca\xcf\x81\x17\x4c\xee\x6e\x8b\x56\x30\x51\x14\x43\x7a\x52\xce\xeb\x83\x94\xf1\x55\xc1\xf6\x0b\xb8\x96\xcb\x07\xa5\xd5\xa3\x15\xba\x24\x3c\x81\xba\x43\xa2\xb0\x46\x37\xa7\xc2\x55\x01\x8d\xed\x49\x1f\x7a\x47\x6e\x97\x49\x53\x95\x09\x50\xf0\xcc\x38\x3d\x1b\xa5\x2c\x86\xba\x3f\x76\x85\x36\x91\xa0\x9d\x02\x9a\x92\x0f\x36\x69\xfc\x8b\xd6\xe6\x5c\x4b\x54\xf0\xfc\x69\xc6\x75\x0a\x11\xd9\xed\x15\x84\x74\xeb\x82\x81\xc9\xbf\x07\x44\xd3\xbc\xd9\x90\x13\xcd\x25\x2a\xee\x28\x5b\x94\xf0\x29\x70\x7f\x4c\x7e\xd8\xec\x71\x8a\x0f\x11\xb0\x5c\xd2\x7f\x6e\x50\xb1\x9f\xd4\x11\xc8\x47\x2e\x1d\x74\xb8\x21\x4a\x58\xa3\xa4\xab\x55\xb1\xa6\x29\x30\x02\x2e\x7b\x5b\x15\x29\x54\xcb\x77\xb8\xf3\x5f\xb8\x1e\xb6\x34\x68\x7a\x7d\x82\xbf\x22\x67\x0a\x8f\x29\xe0\x4c\x2e\x44\x1a\x7e\xed\x96\x27\x60\x23\xcc\x21\x61\xa0\xfa\xfa\x5c\x85\x49\x4b\x05\x90\xea\xe2\x31\x48\x6d\xef\x58\x74\xf7\xa4\x56\x0e\x25\x7e\x50\x03\x2f\x77\x51\xdf\x29\x71\x15\x05\xa1\x28\x3b\x5a\xb4\xc2\x6c\xea\x94\xb8\x0e\x51\x4f\xa6\xff\x76\x5d\x07\x93\xfb\xbf\x47\x03\xe7\xdf\xbf\x32\x4c\x2b\x4d\x26\x35\xbb\x11\xdf\xe7\x85\x15\x4a\x73\x9a\x0f\xdf\x39\x92\xe3\x07\xeb\xe5\x13\xb6\x10\x84\xfb\xeb\x1e\xd4\x46\x48\x22\xcc\x88\xb9\xcf\x88\x55\x32\xf6\xfa\xac\x14\x01\x90\x53\xf6\x5b\x32\xf1\x2c\xfb\x86\xc5\x15\x51\x52\x5f\xdf\xdd\x20\x1e\x3e\xee\x00\x61\x87\xec\x87\x1e\x56\x60\x99\xc8\x13\xd4\xd3\x6d\x9a\x1b\x96\x43\x99\x49\x8c\xa8\x53\x31\xf3\x52\xdc\x65\xb3\x91\xe4\xff\x07\x37\x4c\x6e\x10\x47\x4f\x55\x34\x0c\xb3\xa5\xb5\xd7\x2b\xa9\x0a\x32\x3c\x62\xe0\x7a\x15\x61\xe3\x69\xc5\x62\xc6\x30\x50\x47\xdd\xce\x5b\xf4\x93\xfe\x4a\x69\x6c\xf0\xaa\xf0\x23\x9e\x4e\xe5\xe0\x1b\x0b\x7a\xab\xe9\xcf\xed\x95\x98\x21\xab\x0b\x79\x9e\x8a\xb8\xc9\xdc\xf4\xba\xca\x93\xf5\x4b\x30\x67\x59\xb8\x48\xe7\xa0\xda\x76\x2f\x82\xe5\xa9\x1b\x9e\x1f\x14\xed\x94\xa2\xaf\xf4\x61\x9a\x96\x0b\x78\x0e\xc6\x65\x51\xa4\x3d\xb1\x08\x4a\xdc\x7b\x1d\xd8\x6c\x77\x2e\x99\x17\xdc\x3b\x46\x75\xf9\xa8\xe0\x30\x47\x19\xd3\xaf\x8e\x14\x5a\xf2\xe3\x3c\x20\x75\x68\xc5\xd5\x89\x51\x21\xa8\x1c\x98\x8d\x4a\x73\x34\xbc\x7d\x46\x49\x99\xf3\x97\xfe\x67\xe2\x30\x05\x17\x5c\x4a\x18\xc3\xa7\x4e\xcf\x1a\xa2\xbd\xdd\x0e\x30\xb8\xf9\xd9\x30\xe9\x5e\x46\x4d\xb5\x7b\x95\x1e\xb7\x0d\x62\xc6\x5d\x00\x96\x8a\x0e\xd6\x37\x26\x6a\x28\x7b\x8c\x0c\x61\xa5\xb3\x61\xbf\x86\xc0\xb1\x31\x72\x5c\x61\x5c\x94\xbe\x7b\x95\xce\x5b\xa2\x26\x44\xf2\xe3\x6b\x64\x76\x4b\xab\x1e\xa9\x70\xf0\x7c\x2e\x1f\xec\xd0\x94\x67\x71\x27\x47\x78\x88\x62\x31\xf5\xe1\xa6\x31\xfa\x9a\x05\x63\x2d\xc8\x2a\x24\x84\x7c\xe4\x31\xb9\x96\x9a\x9a\x81\xe9\xf1\x5a\xa0\xed\x66\x03\x3b\x38\x46\x0f\xa4\x86\x9e\xd7\xf4\xfa\x90\xc3\x63\x78\xd2\x05\xef\xe1\x89\x7a\xe2\xef\xa0\x02\x16\x10\xf6\xd8\xb4\xa5\x29\x21\x18\x1a\xbe\x47\xe3\xc4\x40\xa5\xb1\x6b\x08\x91\xe4\xd4\x63\x76\x9c\xfb\xb5\x4d\xe5\x38\xe5\x6f\xcc\x17\x6c\x03\x6c\xe3\x92\x2c\xf7\xe7\xed\x13\x82\x6a\x0c\xe7\x70\x0c\x87\xed\x49\xbd\x5a\x27\x19\x4b\x70\x31\x62\x12\xf4\x64\x17\x48\x1c\x74\x07\xaf\xfb\x6e\xd6\x74\x7d\x8c\x2e\x90\xf2\xe6\x86\x35\x2f\xbf\x9f\xfc\x4f\x3e\xcb\x26\x80\x05\x0c\x1e\x91\x0a\xd1\x1c\x24\xdf\x93\x1a\xff\x56\x32\x7c\x5b\xc4\xb6\x27\xd4\x0a\xca\x41\x3c\xec\x94\x82\x14\x77\x5d\x44\x04\x03\x68\xfc\xd3\x8a\x91\x06\x62\x0c\xc8\xea\xd9\x4f\x1c\xbd\x4a\x7a\xdb\xf0\x13\x70\xc7\x7a\x79\x72\x60\xc8\x4c\x00\x42\x63\x5e\xa9\x80\xda\xbb\x2a\x05\xca\x8b\xa3\xd4\xd1\x97\x64\xc9\x55\xc1\xaa\xff\xf2\xf6\x53\xf2\x05\x70\x07\x48\x50\x57\x7b\x68\x93\xce\xad\xe4\x1a\x67\xd0\x96\xee\xb7\x33\x9e\x93\x9a\xb4\x5e\x59\x6a\xf0\xa8\x46\x05\x9c\x10\x13\x13\x73\xf9\xe0\xe7\x8b\x92\x66\xab\x08\x20\xe3\xc5\x05\x8d\x5a\xd9\xe3\x33\x0f\xb4\xeb\x3e\x38\x38\xb9\xfa\xc2\xa7\xe5\xba\x91\x43\x93\x10\x52\x3c\x72\x41\x68\xa0\xf8\x15\x5e\x56\x07\xcb\xdf\xd5\x3f\x10\x09\xa0\x43\x76\xd6\xc9\xe1\xfa\x07\xfa\x95\xd8\xba\x3a\x7d\xef\x6a\x88\x59\x25\x3f\x4c\xe2\x84\xa7\xf9\xca\xa7\x34\x23\x13\x13\xdf\xef\x23\x0f\x0b\x10\x4a\x70\x72\xd1\xb0\x68\x35\x8d\xad\x7b\x1a\xff\x6f\x8f\x76\x98\x7b\xc8\xc6\x15\x24\x01\x5a\xe9\xbf\x1b\xd9\x5f\x69\x0b\x00\x87\xb6\x79\x83\xd6\xd6\x36\x28\x8b\x14\x8f\x83\x73\x67\xd5\x93\x85\xcb\x8a\x3a\x3a\x03\x2d\xb8\xf7\x35\xfd\x88\x30\x28\x33\x05\x97\x33\xfd\x53\x5d\x13\x1f\x7b\x05\x64\x94\x05\x96\xf1\xc2\x2b\xf0\x40\x97\x79\xa8\x58\xe4\x67\xba\xf7\xf6\x20\xe5\x7c\x66\x26\x86\xed\xbb\x7f\xe5\x18\xbd\xce\xf1\x70\x81\x85\x01\x2d\x11\x1f\xd2\x0b\x34\x95\x2b\x46\x78\xa7\x30\xc6\x69\xfc\x6c\xa7\x0e\x17\x09\x17\x63\x64\x42\xf9\x8f\xef\xcb\x8e\x61\x17\x54\x58\xaf\x34\xca\xf4\xa6\x83\xb2\x72\x78\x90\xbc\xbe\x14\x62\x44\xa4\xe4\x02\xc7\xd0\x8d\x7d\x15\x6f\xeb\x2e\xc3\x8e\x96\x78\xfb\xfe\xc8\x97\x5d\x48\x6a\x2d\xd9\xd2\xa8\x0c\x65\xa5\x51\x41\xbe\x27\xf5\xd9\xcd\x32\x43\xaf\xf8\x2e\x2a\xa0\xae\xc4\x8c\x6d\xfe\xd9\x61\xd1\x95\xd7\x81\xaa\x6e\x5c\x99\x5c\x8c\x2d\xb7\x4e\x8e\xde\xfc\xb6\xe1\x90\xab\xcf\xf7\x1d\x13\xc1\x26\x16\x57\x97\xbd\x6d\x38\xbc\x82\x7c\xe1\xd6\x3b\xbb\x40\xe9\xe3\x9c\x9e\x81\x33\x44\x6c\x50\xca\xdb\xa4\xb8\x56\xa0\x22\x23\x65\x04\x65\x56\xf6\xfa\x67\x35\x45\x56\xc4\xca\x80\x3c\x92\x10\xdc\xfe\xc5\xc4\x7c\x9c\xc4\x3d\xfe\xf4\x37\xf5\x1a\x1e\x55\xf9\xb4\x44\x64\xa1\x97\x04\x5a\xff\x2e\x97\x21\x6c\x13\x01\x42\x39\x3a\x5e\x66\x1f\xcc\x77\x5d\x6c\xdb\x4a\xa6\x3d\x75\x81\x98\x71\xe7\x38\xbd\xe3\xc3\x03\xb4\x0e\x7f\x15\x63\x5d\x08\xca\xdc\xd7\x2b\x26\xa1\x4a\x63\xfe\xf0\xf5\xe0\x92\x9d\xbb\x9b\xda\xd8\x05\xe7\xed\xb8\xc8\xfb\xc3\xf3\xf0\x8c\x17\xe1\x0e\xe2\xb8\x65\x05\x3d\x9d\x7a\xf4\x9c\x26\xcc\x33\x05\xf6\xf3\xc5\x85\xc9\x27\xdd\x81\x5c\x4f\x18\xe1\xf5\x64\x6d\x8d\x45\xeb\x02\x59\x4f\xac\xe3\xbd\xc7\x34\xf9\xbc\xa6\x4a\x93\xe8\xbd\x7f\x70\x75\xf2\x36\xb0\xeb\x46\x43\x23\x00\x45\xa5\x1f\x39\x36\xbc\x3e\x6d\x08\x3f\x1c\x04\xaf\xae\xd0\x45\x65\x00\xec\x0c\x49\x45\x5f\xd0\x13\xc8\xdd\x89\xab\xe1\xfe\x54\x42\x7c\xf6\x33\x73\x55\xb0\x41\x0d\x43\xc3\x2c\x43\x0e\xc5\x83\x93\x76\x64\x24\x94\xd8\xdc\x85\x1a\xbf\x90\x51\xb7\x8a\x45\x7e\x19\xbc\x7c\x7c\x84\x92\xc2\x33\x6c\x78\x52\x11\x28\xbc\x94\x1e\x65\x5a\x5f\x63\xb8\x42\x50\x98\x56\xef\x8e\xcf\x0c\x8a\xfc\xba\xb4\xb2\x19\x34\x92\x72\x8b\x68\x47\xb8\x5e\xe4\xcb\x7f\x5d\x31\x1e\xf4\xc5\x3c\x38\xe8\x6e\x8b\x92\x81\x0a\x2d\x31\x54\xb5\xa0\xa7\xb0\x62\x6c\x32\x09\xe1\x63\x46\xd7\x25\xd5\x2a\x81\x7e\xc8\xb2\x25\x3d\xd9\xdb\x8e\xcb\x68\x6b\xfb\x3c\x65\x4c\xaf\x7f\x4a\x51\xe5\xee\x34\x7c\x31\xc9\xcd\x7c\xef\x74\xf2\x89\x97\x89\x6d\x47\x2c\xde\xcc\xc7\x26\x6a\xec\x48\xee\xc3\x2b\x22\x96\xb3\x18\xae\x70\x19\xf7\x69\x72\x50\x0d\xf4\x76\x47\x28\x1e\x27\x6e\x78\x82\xd8\x7c\x32\x18\x38\x03\x07\x28\x43\x56\xc4\xcd\xcf\x32\x7f\x3e\xa1\xe2\x78\x0a\xc8\x85\x6e\xc8\xdf\xed\xb8\x5e\x4b\xf6\x6a\xe1\x8a\x17\x03\x5e\xb1\xea\x7f\xb0\x47\xa9\x4e\x49\xc9\xe1\x46\x4e\x30\xe3\xdf\x7c\x48\x85\x31\x61\x0e\x85\x09\x3a\x02\xf9\xfb\x61\xf8\xa4\x8c\x74\x0b\x82\xe1\xba\x1b\xa0\xeb\x36\x17\x97\x7c\xd7\xad\xc7\x04\x7c\x96\x29\xe8\x07\x56\x42\x0e\xe9\x86\xe9\xe8\x7f\x69\x53\xdf\x2a\x66\xae\x50\x28\xe0\xb5\xf8\x4d\x23\x35\xe0\x1e\xa8\x45\xc3\xf8\x60\x7f\x5a\x43\x46\x58\x08\xb2\xa8\x7c\x4f\xba\xf9\x44\xcc\xea\xed\x52\x11\xcd\xd9\xa1\x3f\x91\x77\x21\x44\x07\x91\xe3\x71\xd7\x91\x03\xd7\x28\x45\x84\x5d\x04\x75\x32\x51\xb0\x67\x3f\x7b\xb1\x7f\x47\x5c\x4a\x8b\xfe\xe5\x48\xa9\xf7\x3a\xbd\x89\xc7\xaa\xdf\x5c\xa9\xc1\x34\xed\x30\xc3\xe6\x49\xe0\x17\xd7\x29\xf5\x78\x39\x37\x99\x13\xc8\xad\xd7\xe3\x4f\x30\xf8\xd0\x2e\xb5\xe3\x09\xbe\xf6\xc2\x3f\x5e\x21\x96\xf2\xd5\x6b\xa1\x6d\x74\xd7\x3d\xf3\xeb\x36\x05\x5e\xac\xeb\xd1\xb8\xb1\x8d\xca\xb7\x95\x54\x0a\x95\x89\x45\xa0\x5a\x9f\xf9\xa8\x7e\xea\x17\xc3\xac\x58\x74\xde\x3f\xdd\xa6\xcc\x64\xa8\xe7\xc1\x74\x6b\x91\xf0\xd9\xe7\xb0\xc8\x5c\x3e\x78\xd7\x8a\x6b\x5c\xa6\x38\xe2\x04\x6b\xa6\xf6\x8f\x8b\x30\x22\x00\xa7\x5f\x1b\x28\xcb\xd7\xd8\x56\x20\x21\x1e\x30\xe9\x9d\x7a\xc9\x29\xd8\x23\x2d\x03\x06\x2b\xeb\xbb\x68\x47\xe8\xa8\x6c\xcb\x3b\x57\x8b\x2f\xaa\x22\xc6\xf3\x2c\xce\xe2\x75\xe2\xc7\xd9\x2a\x44\x72\xc6\x40\xe3\x6b\x52\x73\x2e\x1f\xdc\xba\x6a\x94\xd2\xb2\x65\x4e\x2f\xb4\x89\x9f\x8c\x4e\x76\x3a\xa9\xef\x71\x1b\xec\xaa\x74\x65\x1d\x07\x5e\x43\xb9\x3b\x90\x4d\x8a\x94\x81\xa8\x58\x72\xbd\x6f\x6a\x1d\xa6\x88\x4b\xe0\xc8\x26\x1e\x2e\xf2\xe4\x4b\x49\x7a\x35\x35\x3c\x54\xa2\x4e\x6f\x72\x4e\xa9\x21\x03\x93\x07\x42\x58\x04\xf8\xbc\xe2\x73\xc5\xfb\x2a\x8c\xd7\xf2\x58\xdb\x2f\x08\x41\xa4\xfe\xeb\x15\x3e\x93\x6b\x03\xa3\xf4\x86\xb4\x36\x90\x63\xc8\x29\x47\x72\x29\xd7\x6d\xd0\x65\x7c\xa9\x57\x40\xb6\x1d\xd5\x44\xb7\x6a\x76\x77\x55\x46\x6b\x58\x34\x9c\x32\xe3\x98\x00\x9c\x92\x12\xb2\x55\x5b\xaf\xe5\xda\xa1\xe6\x08\x70\x6d\x24\x1c\x97\x7e\x7c\xa9\xe6\xfd\x6d\xfb\x15\x5b\x34\x3e\x7f\xb0\x4d\xe3\x4a\x52\xdf\x05\x12\x7b\xf0\xd3\x53\x9a\x97\x17\x31\xc4\x90\x35\x5e\x8f\x0f\xbc\xaa\x80\x02\x29\x71\x3c\x15\xbd\x97\x1d\x72\x49\x17\xb3\x41\x4e\xc9\x8e\x3d\x8a\x9c\xc3\x5a\x4e\xef\x71\x35\x7d\x52\x8b\xec\x85\x3b\xde\xd5\xe9\xda\xbe\x78\x2d\xe9\x7b\x15\x20\x28\xb7\x41\xee\xc8\xe5\x83\xb1\x81\x92\x82\x39\x1e\xe1\x60\x9e\xf0\x4d\x8d\x19\x36\x24\x2e\x51\x35\x72\xf9\x9b\x57\x8b\x8c\xad\x48\x99\x89\x84\x8c\xfb\x25\x60\x21\xe5\x16\x50\x9f\x53\x32\xd4\xcd\xb4\xe6\x5d\x55\x5e\x98\xba\x80\x26\xf7\x58\xb8\xf6\x32\x6d\xc2\x51\xd8\xa5\x48\x4c\x0b\xd2\xd3\xda\x92\xed\x8e\x29\xcd\xcd\x22\xc5\x6f\x7d\x5d\x63\x82\x39\x5c\xa3\x87\xcf\x74\xa0\x44\x58\xac\x8c\xde\x0d\xea\x78\xc4\xf1\xc3\xa3\xca\xde\x2f\xac\xad\x31\xc0\xf5\xc3\xa5\x73\xcb\x4b\x91\x9e\xb7\x20\x25\x28\xc7\x99\x45\x45\x17\x7f\xfe\xab\xc3\x14\x21\x83\xb6\xe9\x09\xe2\xd0\xd4\x5d\x4a\x41\xdb\x49\x5c\xee\xab\x93\xcb\x07\x37\x35\x41\x5a\xb3\x82\xda\xd4\xb5\x94\xb9\x55\x50\x18\x2d\x0b\x57\x8f\x11\x50\x74\xee\xc9\xae\xd5\x06\xef\x61\x06\x4a\x90\x23\x5e\x5d\xea\xf8\x06\xf9\x3d\x5e\x37\xce\x19\x96\x0f\xef\xe2\x21\x5b\x25\xd7\x77\x41\x3d\xde\xff\x86\x5e\x4c\x26\x5d\x21\x40\x9a\xf9\x79\x7a\xa8\xae\xa5\x98\x17\x51\xfd\xd1\xa6\x18\xdd\xc8\xf8\x24\x80\xa7\xa9\x6b\x16\x0a\x60\x01\x81\x53\xa9\x27\x7d\x79\x8d\xa6\x86\xe0\x7a\x56\x05\xc1\x0e\xbf\x6b\xdb\x30\x45\xf7\x86\x23\x35\x48\x09\x1e\x4b\x4f\xfa\xda\x23\xc9\xd5\xd9\x45\x7d\xd1\x38\x7f\x7b\x86\x92\x62\x70\x50\x39\xb0\x0c\x32\x7f\x1c\x3f\x52\x39\x1c\x8d\xba\x56\x64\x6a\xf5\xe0\xc1\x2a\xf7\xac\x4a\x1d\xc8\x0d\x0e\x1c\x56\x3a\xc9\x55\x8c\xca\xb9\x7c\xf0\x6b\xd1\xef\xe4\x3d\x17\x20\xbe\x2c\x1f\xa6\x4c\x11\x30\x23\x52\x88\xb3\x27\xa3\x33\x1c\x2c\x52\x0e\x63\x2e\xdf\x89\x03\x9e\x82\xd4\xcf\xed\x72\x3d\x5c\x91\x2f\xf8\x8d\x91\xbd\x6b\xc5\x41\x0d\x3c\x5a\xf3\x37\xf7\xa8\x1f\xe7\x0e\x8f\x77\x0b\x95\x47\x71\x2e\xca\x70\x35\x73\xc3\x10\x65\x72\xe0\x79\xb4\x62\x83\x84\x44\xe6\xf8\x54\x90\xf2\x99\x4f\x99\x51\xcf\x9f\xde\x27\x20\x53\xf7\x10\xc3\x52\xa1\x9f\xe9\x47\x36\xc7\x67\x25\xbd\x59\x69\xf1\x64\xc6\xcc\xd4\x7b\xf8\x05\xd7\x60\xa4\x10\xde\x01\xcf\xf6\x33\x8f\xbe\x0d\xad\x86\x3b\x2d\xe4\xc4\x4a\xa2\xdf\x9a\x3c\x5c\x26\xe5\xf5\x53\x8d\xd9\x63\xe2\x4e\xd0\x64\x5e\x40\xa5\x1a\x1a\x94\x6e\x2e\x11\x39\x62\x76\xfd\x02\xf8\x6c\xc3\x46\x95\x02\x54\x73\xc1\xc6\x0d\x9a\x4e\x00\x89\xdd\xc8\x83\xdd\xbb\xe5\xcb\x2b\x62\xe4\x59\x52\xb6\xbc\x27\xfb\xd0\x13\x0a\xde\x90\x7b\xe7\xe5\x40\xea\x85\x3b\xad\x9c\x81\xe7\x36\x6d\x6a\x2f\x7c\xd7\x2c\x3b\x07\x69\x30\x37\x07\x47\x05\xd0\x0e\x0c\x1e\x78\xe2\x6a\x75\x74\xe2\x73\x4e\x4b\xc6\x53\xfd\xf1\x41\xbc\x3e\x5c\x1e\x1f\x18\xc8\xe3\x8d\x8d\x9d\x5c\x9b\x68\x22\x5b\xab\x14\x2d\x74\x46\x1c\x03\xd4\xf8\xcc\xfd\xfa\xac\x89\x77\x59\xf8\x49\xf3\xa5\x2d\x75\xf2\xf6\x15\x91\x4d\x7a\x93\x35\xe6\xa1\xc5\xb0\xe0\x35\x05\x7d\x06\xeb\x95\xa0\x27\x9d\xcc\x7f\xb8\x43\x13\x31\xa6\x4e\x98\x1a\x21\xee\xea\x10\x95\xc8\x83\x75\x3c\x49\xa5\x6a\x63\xde\x3a\x02\x95\xae\x6f\xbe\xdf\x1b\x95\x33\x92\x4e\x7e\x40\xc1\x89\x7b\x0c\x99\xa2\x2e\x39\xde\x57\xcb\x1c\x90\x53\x0a\x4f\x0b\xe2\x08\x8d\xf5\xcc\x0f\xd6\xf6\x56\xc1\x45\x2e\x26\xe9\x0f\x16\x34\xd6\x82\x89\xaa\x5e\xd4\x95\xb8\xb9\x8f\x46\x37\x2c\x54\x9a\x3c\x2b\x42\x6f\x0c\x9e\x0f\xf1\x7f\x39\x2d\x61\x0f\x0a\xaf\x94\x75\x5e\x64\x86\x84\xab\x16\xf3\x62\xf6\xf5\x31\xba\x1d\x6b\x15\x7b\x6e\x39\xa2\x12\x2c\x99\x17\x7c\xf9\x65\x4d\xc4\xcc\xb7\x71\x17\xae\x29\x7a\x7d\xc1\x57\x76\x26\x5f\x5b\x05\xb5\x53\xd1\x84\x5c\xd2\xa0\x5b\x2d\x88\x12\x34\xf2\xf6\x7e\xec\xe9\xc8\x58\xdb\x26\x9c\x4c\xca\xc5\x94\xd7\x68\x1a\x65\x94\x75\x69\x69\xc5\xbe\xc5\xd2\x85\xb9\x85\x17\x2a\x0f\x2a\x56\xea\x45\x04\x37\x1d\x8c\x3c\xaa\xa9\x95\x53\x23\x5e\x6e\x3d\xa9\x25\x0b\xb5\xd7\x4a\x0b\x05\xc9\x9d\x4c\xbd\xa9\x18\xe2\xc6\x92\x80\x93\x16\xc5\x43\xc8\x29\xf5\x7a\xed\xa9\x31\x6b\x35\xbf\x49\x46\xfd\x82\x02\xa2\x7d\xba\x4d\x05\x97\xfa\x9e\x57\x42\x8c\x3f\x88\xa1\x45\x0d\xc8\x1f\xd9\x95\xf0\x55\xbc\x0f\x64\xe0\x73\x77\x58\xd8\x76\xb1\xea\x3a\xd8\x72\x30\xbe\x1e\x62\xd7\xa1\x2d\xd2\xb5\xa3\xc3\xb4\x98\x6e\xc6\x9e\x6c\xe9\x5b\xc6\x0a\x6e\x33\xa3\xa6\xcf\x6b\x85\xe0\x67\xa3\x6f\xd6\xf6\x12\x6f\x70\xf3\x70\xa8\xc3\x6a\xd8\x36\x59\xa4\x77\x40\x97\x38\x75\xf1\x40\x6f\xc8\x71\xd7\x8b\x5a\x9a\xa7\x1a\x34\x33\x07\xfe\xa6\x44\xb5\x9e\xdd\xb8\x47\x6d\x82\x14\xc3\x12\x9f\xbf\x89\xe6\xe1\xd1\xef\xb7\xb7\xd7\xb7\xb2\xff\xf1\xd2\x10\xa5\x44\x81\x21\x2c\xd0\x01\x9e\x39\x53\xb7\xf9\x8b\x8c\x3a\x1e\x8a\xa4\x77\xf3\xc1\x6f\x3d\x25\x6e\x5a\xa8\xa6\xe0\xb4\x83\x4f\xaf\x4a\x20\xd0\x84\x62\x0f\x3f\x89\xd6\xcd\xd6\x09\x60\x61\x3e\x3d\x61\x86\x92\x08\x06\xbb\xba\xb5\x67\x51\x43\xc4\x0e\x17\xb9\x58\x60\xa3\x27\xca\xbb\xe5\xed\x5a\x48\x45\xbb\x4f\x0d\x51\x52\xba\x4a\x15\x39\x44\x60\xd6\x4f\x2c\x91\x2b\xb2\x6a\x23\x02\x91\x60\xee\x59\xcd\x3a\x9f\x98\xb1\x6a\xd0\xce\x63\x0a\x28\x1a\x73\x39\x79\x0b\x71\xdc\xf1\xa4\xd9\x8d\x22\x1b\x74\x5d\xec\x79\x98\x83\x8f\x21\x50\xa0\xed\x8a\x85\x34\xa9\xe1\xf0\x10\xe2\xb9\xeb\xd4\x67\x64\x2e\x0f\x40\x4c\x55\x16\xe6\xb9\x47\x07\x89\x35\x8a\x5c\x45\xb0\x2b\xf3\x0d\x5b\x8f\xae\x8e\x07\x8c\x6e\x91\xc4\xff\xf6\xb4\x6e\x31\x6e\x52\x87\x9b\x31\xc7\x03\xae\xf4\xa9\x93\xb2\x35\x00\x3a\xcf\x2a\x83\xf5\xf4\x2e\x2d\x8c\xe1\x12\x71\xa1\x54\x8d\xc8\x22\x7f\x6a\x95\xa5\x18\x43\x65\xde\x74\xfe\xa7\xf3\xd0\xe6\x9c\x34\x6d\x3a\x67\xd9\xbc\xa2\x79\xe1\xa0\x6a\x15\x83\x3d\x4f\xd6\x3c\xad\x12\xd2\x7d\xd7\xc3\xb0\x34\xa7\xcc\xd6\x28\x36\x0c\x79\x86\x85\x6b\x2a\x21\x3a\x98\xf3\x13\xad\x68\xb3\x51\x78\x06\xf0\x12\xea\x5a\x50\xcb\xc8\xb5\x36\x4f\xad\x1b\x2a\xff\xfb\x9b\xfa\x66\xa9\x81\x60\x19\xdf\x2c\xd3\x56\x2b\xec\x4c\x1b\x39\xc2\x0a\x21\x3d\xea\xfd\x41\x2a\xce\x83\x17\x5d\xe1\xef\xb7\x1e\xae\x97\xca\xe3\x43\x09\x11\x0d\x6f\xaa\xaa\x26\x89\x8c\x09\x64\xd0\xc2\xa9\xd0\xb6\x5d\xb0\x6c\xce\x1d\x75\xe1\xe5\x8f\xa7\x12\xa6\xa0\xc2\xa7\x75\x66\x9f\x3a\x17\x7e\x9e\x47\xca\xc4\x6b\xde\x78\xd5\xb7\x89\x0f\x0b\x79\xf8\x59\x3d\x46\x69\x98\x38\x7c\xb4\x1a\x7e\xa0\x1b\xe8\x83\x07\x37\x5c\xe4\x30\x59\x0d\xbe\x3a\x7a\xa8\xba\x61\x2a\xbe\x43\x0c\x51\xa7\x65\x1e\x58\x78\x8b\x76\xc0\x15\x30\xf3\x22\xe9\x0e\x1d\xc3\x39\x70\x8d\x6e\xa9\x65\x9a\x36\x34\x8e\x39\xb3\x7c\x4e\x72\x99\x59\x98\x75\xd3\x12\xdf\xf4\x51\xaa\xb9\xc6\x92\xa7\x50\x07\x71\x5d\xda\x11\xfe\xe1\x99\x1d\xfd\xa2\x3c\x8a\x47\xfb\xd4\x57\xd2\x71\x5b\xd7\xe0\xa5\xba\xa4\x61\x2c\x7e\x14\x4e\xc4\x02\x23\xb6\x4d\xa0\x1d\x98\x79\xb1\x11\x56\x6a\x89\xf2\xaa\xe3\x9b\xeb\x21\xb1\x0f\x8b\xbb\x0a\xcc\x33\xbb\x4e\x68\x42\xbf\x40\xaf\x8b\xf2\xd8\xdf\x43\x90\xc8\xcd\x25\xb8\xae\x57\xf2\x94\xc6\xa7\xaf\x20\x46\xda\x7d\xe4\x88\x12\xe7\xfd\x20\xf9\x36\x8b\xb4\x53\x74\x4a\xc4\xf2\x1e\x6f\x69\xde\x07\x88\x95\x63\xc2\x68\x66\xd7\x1c\xdd\x76\xdc\x28\x63\x0f\x73\xac\x9c\x28\x05\xce\xaf\x6b\x54\x9a\x35\xd4\x22\x85\xd8\x0d\x61\xc0\x0e\x85\x8f\xd8\xa5\x4f\x6d\x8a\xb3\x75\xc3\x52\xc2\x7c\x4f\xc2\xea\xaa\x8a\xc4\x68\x8d\x44\x98\x92\xd4\x23\xef\xe9\x7e\xee\x26\x8b\x00\x2b\x37\x3f\x35\x28\x2a\xe6\x38\x62\x41\x60\x5f\x52\x4f\xac\x1b\xa4\xa4\xb3\xb4\x42\xe1\x20\x48\xff\xea\x25\x78\x15\xc0\xa9\x0e\xa3\xca\xef\x1b\x20\x9d\xfe\x38\x32\xd5\x30\xb8\xa0\x41\x19\xa2\x93\x98\xd0\xf0\xf0\x95\x03\xd4\x9a\x1a\xf4\x78\x0e\x3a\xfd\xa3\x42\x0e\x9b\x04\x7e\xf1\xdf\xe6\x5c\x1d\xb7\x59\x1c\x57\xe8\x42\xdd\xd7\x47\x4b\x11\x0b\xbe\x1b\x66\x30\xfc\xb8\xf8\xeb\x42\xdd\x52\x9b\x03\x55\x85\xde\xe1\xe5\x63\xb0\xce\x38\x6e\x31\x9a\x68\x7e\x7b\x0d\xac\xb3\x9b\xdb\x5a\xb9\x6a\xc5\x6c\x79\x12\xd8\xd4\x29\xe5\x3c\xcc\x2a\xb9\x7c\xf0\x56\x5b\x12\x34\xeb\x70\xb5\x21\x7e\xae\xf4\xd5\x3c\xb3\x6d\xea\x0a\xbf\x9b\xd4\xcf\xec\x6b\x94\xdc\x87\x1a\x49\xfd\xd2\x86\x2b\x94\x02\xd6\xaf\xc2\x51\x74\xb8\x5b\xf5\xd5\x74\xab\x94\x44\xa4\xe8\x21\xd5\xe4\xaa\xf4\x4b\xc8\xe1\x1c\xd8\x6a\x94\xa9\xd1\xa7\x92\x6d\x95\x5c\x2e\x12\x37\xf1\x6f\x90\xde\xfc\xdc\x63\x33\xf5\xfe\x8b\x0a\x1c\xc5\x29\x52\xe6\xf9\x8e\xe8\x69\x06\xef\x6d\xe8\x2f\x12\x12\xae\xf1\xc0\x57\xd0\x8c\xb7\xf4\xa3\xc2\x20\x6e\x05\x30\xc0\x9f\xd6\x85\xc5\x6b\xd8\x11\xc0\xaa\x74\x76\x79\xfd\xac\x22\xe6\x41\x5d\x6c\x1a\x10\xe5\x02\x8c\x76\x88\xe6\xd0\x27\xf7\xc1\x0f\xcd\x0e\xe2\x98\x36\x36\x9b\x72\xf9\xe0\xe5\xb5\x57\xab\x4a\x2b\x02\xb4\x33\x31\xc6\xc6\x94\xb8\xa9\xab\x9c\x14\xfd\x52\x93\x2e\x29\x74\x71\x04\x21\xd4\xe9\xb9\x7c\xf0\xbb\x9d\x43\x94\xfd\x47\x6a\xc4\xc6\x25\x10\x7a\xfd\xca\x80\xab\xa2\xd3\xbe\x02\xe2\x44\x05\x05\x8f\x85\x58\x85\x42\xd9\xfa\x9f\x5a\x9e\x3f\xad\x6d\x5a\xae\xb5\xb9\xb9\xb9\x49\x08\xda\x64\xc7\x5e\xa1\x8c\x9b\xb0\xeb\x62\x1e\xb4\x46\xbd\x55\xc7\x63\xe1\x13\x67\xa1\x0d\x34\x72\x8e\x52\x42\xd2\x30\x6c\x84\xfb\xeb\x0f\x2b\x94\xee\x90\x45\x7d\x17\x39\xbc\x9f\x35\x4f\xcb\x83\x78\x95\x23\x1e\xed\x37\x9e\x4c\x6e\x85\xa9\x40\xcd\x12\x58\x38\x67\x66\xdd\x04\x95\x78\xc8\x16\x3c\x90\x97\x9b\x93\xa0\x2b\x0b\x55\xaa\x5e\x3d\x7f\x2e\x83\x5f\x16\xf9\x0f\xad\x54\xa8\xd3\x81\x91\x0d\xbc\xd8\x59\x63\x95\x94\xdf\x82\x46\x76\xf8\x16\x27\x3e\x7e\x8d\x96\xb7\x85\x77\x03\x9b\x25\xa8\x9e\x90\xcf\x8b\xb8\xae\x0f\xaf\xa3\xe1\x80\xea\xc2\xc0\xb8\xc5\x53\xb6\xdf\xf9\x86\xba\xd2\x33\x3b\x54\x4d\x6a\x1d\x95\x3f\xf6\xf1\x76\x58\xce\x77\x80\x73\x0c\x8f\x93\x3f\x6a\x6b\x54\xaa\xfa\x04\x92\xfa\xac\xa6\x5c\x12\xd5\x2c\x52\x54\x6c\xa8\xe6\x69\x57\x21\x86\x85\xb0\x9d\xac\xd7\x16\xda\x43\x94\xe8\x57\x23\x4e\x89\xb7\x4d\xf3\x3d\xd9\xcf\x34\xc9\x11\xce\x94\xc9\xb9\x7c\xb0\x60\x41\xbc\x3b\x4d\x3f\x2c\xe2\x16\x1c\x92\x78\xa8\x12\x43\xc5\x5c\x3e\xf8\xa3\xe8\x65\x2e\xa1\x3e\xe7\xcd\xa7\x7e\x7b\x52\x69\xa8\x55\x28\xf5\x2c\xb0\xae\x4d\x67\x97\xca\x07\xd9\x45\x7d\x8f\x0b\x55\x66\xa6\xaf\xb9\x4a\xec\x69\x21\xf1\xd2\xf2\xe8\x48\x3d\x8f\x73\x5d\x46\xa9\x17\xb5\x93\xaf\x38\x01\x6f\x97\x5b\x49\xa9\x54\xd9\xa7\x55\x0b\x2d\x8f\x14\x91\xc9\xa7\x95\x0f\x47\x10\x74\x0b\xe7\xf2\x41\x66\x9f\x6e\x1b\xdd\x51\xa0\x52\x6b\xb8\x3a\x4b\xd7\x0e\xea\x00\x25\x62\x2e\x15\x75\xff\x81\xfe\x22\x02\x17\x0a\xa2\x14\xc8\x7c\x5b\x31\x1c\xe6\x71\x9d\x88\x24\x3d\x3d\xfd\xb0\xe8\x2a\x01\x29\x86\x6f\xcf\x5f\x4e\x96\x45\x8e\x81\x1c\xa4\xd2\x1c\x32\x9f\xd1\x1c\xbd\x2a\xbe\x54\x97\x0c\x96\xbc\xa5\xe1\xce\x90\x47\xdc\x62\x84\x22\x4d\xff\x97\x52\xab\xe0\x1a\x66\x25\x1b\x81\x7b\x6e\xba\xcf\x64\x15\x33\x86\x20\x39\x0d\xae\x0b\x04\x02\xf3\xde\x65\xcb\xee\xba\x7d\x31\x6f\x55\x9c\x1d\xaa\x14\x59\xd0\x27\x0f\x4b\x98\xf0\xff\x16\x6d\x8d\xd3\xa4\xc9\x53\x5b\x12\xbb\x6d\xd7\x76\xd9\x28\x2d\x53\xa7\xe4\x96\x10\x0c\xb5\xa2\x4c\x6c\x72\x90\xd8\x76\x25\xec\x50\x46\xb8\x14\xda\xe2\x78\x30\x49\x5c\x85\x6f\x9e\xfa\x07\x4b\x17\x69\xe5\xdd\x98\x08\x03\x14\xb4\xbe\xa3\x74\x9f\x3d\xca\x2a\xbc\x97\xed\x9c\x97\x0a\xee\x5c\x5d\xa0\xae\x3e\xf5\x6b\x83\xd5\xd4\xa1\x46\xe2\x4c\xfd\x71\xc5\xab\x1c\xd5\x6c\x6e\x85\xfb\xee\xa3\x43\x94\x1a\x58\xda\x56\xf6\xa4\xff\x63\x79\x5d\xbb\x28\x67\x93\x62\xa4\x1d\x72\x97\x66\x54\x84\x3b\xb9\x23\x6c\x0d\x0b\x68\xc3\x9f\x1e\x57\x1e\xb4\x20\x72\x44\xda\x8d\x6f\xec\xba\x5a\xac\x60\x61\x6e\xc4\x7f\xba\xb7\x4f\x12\x38\x54\x40\x0c\xd5\x7c\xcf\x24\x4e\x72\x73\xb7\x0d\xae\x43\x4f\x39\xc2\x9d\x5e\x74\xf4\x3f\xb9\x60\xb8\x82\x9e\x82\xfa\x1c\x26\xcd\xe1\x83\xed\xfb\x20\xec\xc6\xdb\x8d\x88\x98\xb8\xee\x4c\x32\x8b\x20\xc5\x28\xd9\x6f\x2b\x6a\x44\x37\xc4\x2a\x02\x7a\x51\x6b\xd7\x7a\x2f\xa4\x80\x3d\xf0\xb1\xe4\x0b\x7d\xda\xa9\xbe\x90\xdc\xe4\xf2\xc1\x95\x9b\xe5\xf2\x34\x19\x2a\x0a\xce\xc0\xdb\x9a\x4c\xab\x4d\x3b\xb0\x1b\x89\xa3\x9c\xb9\x9c\xfc\x4f\x18\x35\x89\x59\xc2\x54\x4d\x54\x85\xf7\x3c\xa0\x8f\xf7\x9d\x62\xaf\xa9\xb9\x18\x05\x38\x07\x15\x4f\x90\xb0\xe0\x7a\x54\x39\x8d\x8b\x0c\xbb\x16\x8e\x14\xdd\xba\x2f\x26\x17\xa8\x45\x39\xb3\x5c\x8a\x48\x55\xd8\x30\x25\x8e\x13\x1b\xab\xe6\xee\xed\x33\xb5\xee\x6a\x47\xe4\x71\xfc\xd9\x83\x49\x18\x7e\x13\xe4\x8f\x0f\xf5\xd2\x16\xa5\x8e\xe4\x9d\x65\xfe\xe9\xc0\x10\xfd\x5d\x38\x30\x2e\x78\xa1\x8f\x9e\x7a\x82\xab\x17\xa7\x14\xa4\xf6\x5c\xa1\x49\x88\x51\x87\x53\x2f\x01\x2c\xc8\xdb\x50\x47\xe3\x43\x81\xf9\xe1\x43\xb9\xe7\x61\x79\x4a\x4c\x0f\x4f\xcf\xc9\xdb\xe1\x04\x68\x9d\xd6\x34\x85\x53\x4a\xda\x35\x63\x03\xb7\x8c\x6d\x9c\xc0\x5b\xf4\x64\x76\xac\x4f\x50\xf5\x89\xc1\x53\x9a\xf9\x7d\x7b\x11\x05\xe4\xe5\x2a\xf0\xba\xaf\x94\xe5\x65\x77\x8d\x20\x95\xc8\x7f\xe7\x93\x3a\x02\x90\x61\xec\x44\x16\x14\x6b\x4c\x7d\x38\xe2\xb8\x72\x3d\xa6\x1e\x7a\x5c\x8b\xad\x91\xb8\x26\xa0\x1c\xdd\xb7\x80\xd5\xd7\x41\x6c\x3b\x0c\x9d\xcf\xcb\x65\x51\x43\x86\x85\x4a\x1c\xde\x96\x0f\xce\xce\x51\xbc\xea\xa2\xac\x20\xf5\xcc\x61\xdd\xe7\xc1\x69\xa7\x1a\xde\xef\x7f\x57\x88\xdc\x92\xb8\x25\xdf\x15\x5b\xe0\x41\x6f\x94\x32\xbd\xc4\x26\xa9\x93\xcd\x4f\xaf\xd4\x54\x82\x38\x1a\x08\x7c\xa0\xc5\x69\x39\xfb\x82\x46\x15\x45\x1d\x62\x96\x24\x71\x20\x4d\xab\x34\x73\x80\xf0\x2c\x97\xe8\xdf\x7e\x5b\xaf\x4d\x1e\xdc\x75\xed\x91\xb9\xdb\x64\x5c\x65\x18\xd9\x3c\x18\xf2\x40\xb0\x5b\x12\xf5\x23\x0c\xa3\x6a\x37\xfc\x8c\x62\x34\x6b\x23\x52\x11\x83\xbe\xcc\x67\x5f\xd2\x64\x56\xc4\x06\xe9\x49\xdd\x3d\x4a\x2e\x1c\x2e\xdd\x8c\x72\xf9\xe0\xce\xc2\x00\x11\x34\xb9\xf1\x34\xd8\xdf\x5c\x3a\xaa\x93\xca\x1c\x31\xcc\xbe\x73\xd3\x60\xe9\xc1\xa2\xf8\xde\xfe\x75\x95\xd4\x4d\xe4\x74\x9c\xac\xa5\xc5\x0b\xcc\x0c\x6c\xc6\x30\xcb\x01\xc9\x48\x53\x0a\x23\xbc\xb0\x21\x5d\x65\xe9\xd6\xee\xae\x87\xed\x04\xbd\x32\xf3\xcd\xdd\x6a\x8f\xd5\xa4\x7e\x81\x77\x18\x9a\x6b\x03\x94\xd0\x61\x70\xa8\xe6\xc1\xed\x70\x83\x73\x09\x2e\xc5\x3a\x68\x2b\xe7\x6a\x64\x45\xce\xea\x20\x0e\x92\x65\x77\x66\xb5\x34\x49\xf3\xba\x14\x8d\xb6\xb3\x7a\x9c\x99\x91\xcb\x07\x1f\x6a\x88\xef\xff\x66\x93\xf3\x59\xd1\x9e\x1b\x94\xaa\xaf\x42\x8d\xf0\xa4\xaa\xe7\x3c\xff\xbc\x37\x2c\x84\x29\xac\x2d\x6e\x3c\x20\x6f\xd3\xa1\x40\xeb\xc8\xf7\x64\x0e\xd9\x0a\xec\x99\x9a\xea\x5e\xfe\x0f\x3b\xbe\x6a\x9f\xd7\xa6\xd1\x7a\x99\xb4\x57\x4b\x70\x11\x2b\x63\x2f\x47\x19\xe1\x5c\x33\x71\xfc\xce\x59\x37\x50\x3c\x53\xd8\xc7\x30\x54\x4d\xdf\x72\x64\x80\xda\x43\x2e\xf1\x1b\x6c\x69\x56\x72\x93\xaa\x4d\xbc\xe8\xdc\x3b\x3a\x56\xef\xd1\x55\x0a\xc4\x91\x28\xe4\x2f\x9e\xd3\x80\xd1\xbe\x67\xd1\x48\x8d\xaa\x27\xfd\xad\x67\x94\x8e\x3c\xdf\x0c\xc1\xf5\x5e\x32\x88\x57\xc3\x95\xe4\x31\x82\x84\x37\x5d\xe6\xe2\x0c\x0d\x0c\x69\xbb\x14\xd8\x16\x6f\x55\x05\xcb\x0f\xd9\x65\xd1\x06\xc9\xa2\x95\x43\xb4\x4d\x4b\x85\x56\xd0\x8c\x4d\xe0\x25\x72\x07\xf1\x88\x41\x59\xbd\x51\x41\xbf\xe5\x4a\xf0\xc5\xb6\xc9\x21\xc2\x99\xaf\xac\x4b\xc2\x3b\x8b\x36\x85\xd1\xd1\x29\x06\x0d\xea\x05\xa8\x2b\xac\x37\x54\xa6\x5e\xc3\x6e\x45\x8b\xdb\x71\xa9\x5d\xc3\x8e\xc1\x93\xdf\xb7\xcd\x6b\xf4\x25\xd1\x8e\x0d\xa1\x67\x97\x79\x64\x97\x46\x51\xa4\x05\x64\x18\x54\x1c\xd3\x7f\x79\x12\x56\x3b\x2d\x78\x91\xe0\x68\x4f\x66\xe9\x8b\x0a\x85\x85\xe1\x0a\xc1\x91\xdc\x4d\x6a\x67\x93\xec\x19\xb4\xb6\xb8\x49\xfe\xce\xaf\xfa\xc8\x9b\xa5\xbe\x57\xe4\x88\xf7\xcf\x1f\x4b\xde\x6b\x4e\x24\x96\x73\x9e\x91\xcb\xa1\xcb\x2f\x10\x9b\x60\x87\xe4\xf2\xc1\xd7\x03\x0d\x5e\x87\xcd\x88\xcd\x97\x3a\xda\x06\x8f\xe7\x76\x5e\xc7\x27\x78\x72\x78\x6d\xbc\x90\x4d\x2c\x61\xbd\xc1\x0b\x4f\x2a\x54\x2a\x2f\x82\x9f\xa4\xfe\x77\x62\x32\x68\xf8\x4e\x95\xe1\x30\xe0\xc8\xc5\x9d\x3e\x78\x16\xaa\x1f\xdf\xe1\x43\x0c\xe2\x94\xc0\x47\xe2\xd1\x1d\x1a\x40\xc7\x75\x29\xe3\x5a\xf2\xe2\x32\x49\x43\x72\x75\x4d\x6f\x9d\x12\x55\xdd\x13\x82\x78\x2a\xef\x74\xa9\x4e\x78\x27\x0e\xc8\xf0\x5d\x89\xac\x07\x64\x00\x1b\xb7\x58\x86\xef\x2e\x55\x2a\xf5\x8e\xa2\x36\x70\xf5\x0d\xcd\x58\xbd\xd4\xda\x5f\x04\x04\x27\x67\x50\xd0\x17\xfd\xe3\x2b\xd2\x58\x81\xfa\x51\xae\xb8\x77\xbf\xd4\x80\x9e\x34\x29\xfc\x3d\xe2\xe8\x35\x1a\x62\x95\x78\x94\x38\xed\x09\x59\x8f\xf1\x4a\x2c\x46\x82\xce\x39\x23\x11\x71\xfc\x93\xb2\x37\xad\x97\x66\x5c\x5c\x57\x37\x33\x7a\x30\x24\xc0\x35\xcc\x0a\xbc\x9d\x9b\xbe\xeb\xa0\xf4\x44\x71\x7d\xe5\x26\xff\xdf\x19\xdd\x8e\xd4\xb0\x7d\x93\xf7\xb3\xf9\x53\xdd\xbf\x07\xd6\xc5\x9c\xdb\x17\x2d\x9a\x77\xdf\x3d\xf9\xc5\xf3\xee\x8b\xee\x69\xcd\xdb\xd7\xe8\x7b\x17\xb0\x65\x3c\xdb\xab\x82\xaf\x4b\x6e\x01\xb5\xa9\x81\x7c\x6d\x3d\x8f\xac\xc5\xd7\x8c\xc3\xad\x16\xdc\xbf\x2b\xf9\x62\x4d\x1a\xfb\x60\x9d\xef\x9b\x5c\xb6\x94\x15\x88\x07\xac\xd0\xec\x35\x0b\x47\x69\x8b\x0d\x39\xa4\xc2\xcd\x28\x22\xaf\x8f\xbf\x54\x47\x69\x77\x18\xd6\x24\x84\x8f\x08\x22\x47\xd9\xf7\xb4\x79\x80\x49\x3c\xc4\xa8\x29\x4e\xda\xb9\x9b\x34\xc1\x44\x6a\x63\x93\x0a\x83\xa2\x98\xee\x5b\x13\xaa\x6f\x56\x78\xea\x42\xd1\x1b\xfe\xf1\x82\x27\x92\x37\x36\x2d\xd7\x16\xa5\x24\x1f\x69\x86\x10\xbf\xca\x2f\x99\xc4\x24\x51\x20\x98\xbf\x47\xb1\x5c\xc3\x1d\x88\xc3\x95\x53\xd3\x07\xcb\xb4\x31\x02\xd5\x72\xc7\xf3\x7c\x4f\xfa\xb9\x75\xd7\xaa\x4c\x1f\x64\xd7\xe5\x36\x7f\xdd\xa3\xbb\xe2\x72\x3d\x41\x48\x01\x1a\x3b\x65\x98\x37\x40\x26\x37\x55\x69\x92\xe7\xcc\x94\x29\x4d\x2d\xad\xe1\xf7\xec\x5e\x3f\x4a\x05\x3f\x8d\x99\x90\xfc\x1a\xde\xe2\x5d\xad\x92\xe3\x19\x23\x50\xa8\xbf\x38\x33\xa1\x62\x0b\xed\xa7\x7f\x7f\x14\x40\xc6\x77\x60\xc7\x63\x75\x17\x1d\x7c\x6e\x4b\xbc\x67\xba\x40\xfd\xeb\xb4\xe2\x66\x4d\x7d\xcf\x46\x1d\x1c\xfd\x97\xbc\xd5\x0f\x1d\x13\xc3\x11\xdf\x71\xc2\x95\x75\x41\x41\x32\x75\x10\x07\x46\x4a\x8f\xae\x94\x86\xa2\x58\x55\xaf\xfb\x4c\x56\x27\xf8\xd1\xaa\x0d\xca\x27\x4b\x77\xc5\x7e\x6c\x93\x38\xeb\xfa\x57\x97\xe3\x0b\xac\x70\x2c\x66\xb6\x76\x50\xe6\x1e\x16\x7f\x8e\x7f\x78\x02\xae\x66\x59\x95\x42\x7f\x6a\xc4\xf8\x11\xff\xc7\x91\x0b\x5c\xd9\xa5\xa2\x57\x8f\x3b\x73\xf7\xa0\x22\x20\xc8\x07\xc8\x06\x73\x3b\x57\x11\x4b\x9d\x3e\x92\x8c\x4d\xe1\xff\x3a\xc2\x64\x0f\xce\xe1\xb1\x6f\x28\x49\x2b\x00\x82\x55\x31\xbc\x53\x1a\x14\xd2\xf0\xed\x2a\xa8\x6f\x0b\xc9\xf0\x47\x5b\x47\x27\x80\x6e\xf9\x65\x42\xcc\x47\x11\xea\xd9\xac\x89\x8e\x17\x09\xab\xc8\x8d\xf7\xd7\xaa\xec\xb3\x95\x2d\x1f\x48\x46\xb3\xe5\xdc\xb5\x82\x98\x81\x6d\x2a\x0f\x94\xcd\xa3\x35\x0e\x1d\x62\x5e\x31\xfc\x41\x53\xd4\x83\x27\x6f\x0b\xed\x2d\x46\x8b\xc8\x89\x95\x15\x97\x7b\xc2\xa6\xb3\x86\x19\xf3\x61\xe6\xf1\x95\xdd\x1a\xe1\x32\xd7\x32\x55\x3c\x9a\x8f\x6b\x87\x48\xcb\xf4\xb6\x69\x30\x3d\x7d\xf1\x88\xde\x87\x27\x2e\x06\xc9\x81\xcc\x5d\xe3\x35\xc9\x15\xe6\x97\x72\x26\x46\xb6\x00\xb5\x05\x9f\x98\x3a\x51\x7d\x62\x77\x2d\xd6\xb7\x87\xce\x11\x9a\xaf\xc8\xd0\x46\x32\xd0\xe9\x8f\x1c\x88\xdf\x75\x81\x84\xd7\xf4\xb7\xd3\x6a\x59\x02\xaf\x99\x2f\xad\x7f\x5f\x01\x11\xe7\xe3\xc8\x2f\x59\xca\xa9\xf4\x0f\x8b\x75\x1f\x62\x8e\x06\x87\xe1\xf8\x63\x03\x87\xa8\x17\xd9\x34\x81\xa7\xe1\xb9\x7c\xf0\x71\x4d\x1d\xd1\xa5\x15\x6c\xd1\x8e\xa8\x4f\x72\xdd\x6e\xb9\xaf\x51\x95\xab\x47\x85\x29\xc8\x98\xd9\xda\xc0\x88\x71\x3f\x3e\x8e\x8f\xff\xaf\x83\xda\xd1\x62\x62\x6e\xff\x0b\x58\x9d\x60\x96\xe2\xce\xd3\xda\x34\x8d\x7b\x63\x6b\x0b\x40\xca\x6d\x47\xf8\x9e\xe1\x1b\x54\x21\x7b\x5a\xce\xe5\x83\xb1\xe7\x34\xa1\x60\xe4\x98\x36\x16\x00\x91\xec\x83\x4f\x4b\xda\x00\x65\xca\x0c\xbd\x5d\xe1\x9e\xd3\x6a\x98\xda\xb6\x2c\x57\x94\xd0\x88\x09\xb3\xa9\x9e\xf4\x17\x1a\xb4\x35\xc1\x8d\x2c\xf9\x2d\x3c\xb4\x55\x73\xab\xa7\x2e\xad\x51\x49\x3b\xb9\xf3\x35\x95\xfa\xc8\x4c\x50\x84\x4b\x5f\xf5\x62\xf2\x44\x6a\xc7\xc5\xa2\xa6\x26\x74\xc7\xde\xe4\x91\xc3\x3d\x4a\x34\x41\xe0\xf4\x43\x33\x93\xe0\x1a\x87\xd6\xa8\xeb\x11\x51\x95\x27\xd6\xda\x2d\xa3\xf5\xb3\x9a\xab\xcd\x89\x49\xda\x1f\x07\x8e\xd2\x0a\x70\xd7\x9b\x90\x90\xe4\x22\x0d\xc3\x14\xfa\x8f\xe1\x71\xab\x33\x0b\x24\xaa\xb2\xd3\x34\x27\x2e\x2e\x27\x10\x89\x3a\xf4\xa4\x76\x6f\x54\xa4\xea\x08\x37\x31\x01\x0d\xae\xfd\xc9\x41\x88\x83\xba\x4d\x86\x3c\xec\x94\xa9\xea\xcd\x38\x76\x57\xbc\x21\x0c\xbf\x18\xfe\x21\x6e\x50\x4a\x4e\x62\x88\xd1\x67\xea\x4b\xfd\xd4\x91\x2a\x70\xef\xc3\xc7\x3d\x62\xb8\xee\xe2\xe0\x7a\x28\xcc\x8a\x85\x0b\x76\x7a\xcb\x19\x65\xc8\xce\xa8\x98\xd0\xee\x1e\x00\xf9\xbb\x83\x0d\xec\x72\x3b\xc1\x7c\x4f\xaa\x6f\xa0\xd1\x5b\xec\xf0\x56\xa5\xea\xd2\xe8\x31\xfd\x95\xf1\x2b\x3f\x14\x52\x3f\x7c\x37\xa9\x88\x57\xf6\x3d\xbf\x9b\xd6\xdc\x72\x57\xdd\xcc\xe7\xd2\x9c\x11\x5a\x16\xd4\xe1\x78\xb4\x23\xea\xed\x8d\xd7\x24\x45\x10\x2b\xf9\xca\xee\xc8\xa4\xb5\xce\x53\x19\x6c\x06\xc1\x38\x3f\xf8\xfe\x8e\x64\xad\x65\xc7\x1e\x7c\xbf\x1e\xac\x35\x41\x31\x62\x22\x56\x1e\x7c\x3c\x6a\xff\x13\xc7\x20\x80\x0d\x9e\x7a\x96\x7f\x10\x57\x56\x69\x55\x57\xc9\x97\xd7\x28\x6d\x0d\x9b\x72\xc3\xe4\xa0\x7d\x9b\xa4\x51\x76\xd4\x59\x29\x04\xdf\x99\xad\xab\x18\x39\x30\x45\xbc\x49\x24\xb1\x6e\x18\x51\xf8\x82\xf9\xd7\x97\x46\x28\x63\x62\xa1\xa6\xa2\xda\xb9\x2f\x52\x04\x3d\xea\x70\xa9\x99\x27\xa0\xd3\x91\x9b\x3f\xe7\x2e\xfd\x22\xae\x11\xb0\xc1\x8f\x47\x7c\x01\xce\x16\x38\x14\x35\xb1\x5d\xdf\x46\x4c\xcc\x43\xd0\xe0\x78\x39\xda\xa4\x96\xcb\x07\x43\x07\x8a\xd9\x8f\x74\xc7\x1d\xa0\xdb\xbb\xb8\x2e\x2a\x61\x37\x7a\x4d\xdf\xdf\xa5\x59\xeb\x20\xd6\xc5\x1d\x59\xaa\x92\xdd\x38\xd4\xd2\x44\xfb\x7c\x06\x7e\x33\xf1\x3c\xfa\xf6\xa3\xda\x78\x41\xe8\x6e\xc7\xbf\xf0\xa1\x27\x01\x69\xb3\xcc\x63\xa8\xa3\x80\x99\x6a\x88\x99\xfd\x68\x67\x43\x74\x73\x1e\x06\x7e\xf9\xf5\x73\x65\xfc\x03\x75\x2a\xbe\xbb\xcb\xef\x69\xc7\x89\x15\x7e\x94\x40\xb2\xfe\x7a\xe1\x95\x22\xd5\xe3\x88\xae\x46\x4d\x1e\xa1\x00\xa8\x0c\x9e\xa4\xee\xf0\x14\x2c\x4e\x09\x3b\x26\xe2\xd9\xfd\xaa\x17\x25\xe0\xb0\x17\x4f\xf9\xd7\x65\x46\x45\xc2\x2d\x18\x2c\x31\x23\xe5\x3e\xca\x57\x45\xfa\xcf\x6f\x68\xd6\x5c\xd8\x20\x66\x9c\x07\x65\xc7\x6f\xbf\x46\x89\x5c\x6e\x64\x00\xca\x27\xdf\x3d\xe9\xef\x65\xe3\x3c\xb0\x46\x14\x27\xe0\x7f\xee\x23\xaa\x17\xc4\x01\xd1\xb7\xbb\x56\xc1\x67\x31\x68\x73\x9d\x54\x12\x88\x3c\xf1\xf6\xca\xb1\x1d\x0a\xeb\x13\x01\x0d\xe9\x39\xa3\x18\xea\x21\x07\x98\x87\xd9\xac\xa6\x9b\x40\x4c\x27\x7e\xb7\x51\x70\xdf\xf1\xb0\x34\xf7\xaa\xd4\xfb\xcc\x7e\x44\xf1\x8a\x2a\xda\x5d\xa2\xbd\xf0\x44\xbb\x0e\xbd\x21\x0e\x96\xe9\xd3\x2d\x3b\xa2\x9e\x52\x95\x61\x57\x28\x1b\x05\xe3\xae\x50\x08\x62\x88\x38\x2e\xef\xbf\xbc\xf9\xb0\xd6\x3a\xb2\x30\x66\x36\x76\x23\x52\xc5\xb3\x3a\xf2\x92\xb7\xe4\x05\x0a\x6d\xa4\xa9\xa1\x7c\x49\x05\x73\xc8\x23\xd0\xee\x79\x55\xf5\x81\x17\x35\x51\x3d\x46\xcc\x76\x92\x14\xf3\x7b\xe1\xd0\x60\x25\x5d\x24\x4e\x91\xa1\x0a\xcf\x7d\xda\xfb\xc5\x90\x05\x2c\x15\xd6\xba\x57\xeb\x66\xbf\x15\x62\x7b\xd4\xd1\x4a\xb5\xd2\x6b\xba\x61\x8c\xa9\x35\x93\x33\x79\xcd\x05\xb3\x02\x76\x3a\x82\x05\x7a\x7a\xe2\x10\x65\x72\xc7\x48\x39\xce\xde\x6e\x3f\xa6\x48\xfe\xf8\x2e\xef\x9d\x67\x7e\x37\x3b\x1e\x3b\x7a\x24\x01\x72\xcc\xae\x3c\xae\x19\x9c\x52\xbb\xab\x48\xb0\x6d\xaa\x28\xb0\xec\xc3\xcf\x36\x6a\x29\x88\x81\x19\xa0\x43\x6e\xec\x1e\xa9\x97\x13\xd4\xa1\x61\x05\x2c\x5a\x2d\x23\x15\xd3\x3c\x54\xa2\x4e\x44\xf1\xcc\x1c\xb9\x74\xb5\x5a\x34\x72\xc3\xb4\xe0\x0b\x9e\xe4\x1a\x34\x73\x99\xf7\xf6\x82\x32\xcb\xf7\x19\x46\xbe\xc1\x10\x2f\xd9\xdf\x7e\xf6\x6a\x05\x27\xeb\x10\x58\x4c\x9a\x9d\x27\x0c\x28\x63\xf8\x56\x6a\xff\xf9\x3a\x0a\x16\x32\xca\x31\x99\x3a\x18\xdf\xb7\x51\x02\xb4\xdc\x04\x65\x7d\xb6\x70\xfd\xf0\x18\x11\x5d\x8d\x6f\xcd\x55\x46\x90\xe1\x5b\x84\x53\x9d\x2f\xaf\xfc\x66\xa5\x63\xe6\x79\xa8\x83\xeb\xc4\xdc\xb0\x55\x81\x6d\x62\x61\x71\xf7\xad\x57\xe2\x1c\xb1\x86\x95\x61\x7c\xea\x91\x03\x6a\x77\xd7\x2f\x59\xd0\xad\x0b\xb7\xd2\x64\x39\x66\x33\x50\x78\xe1\xfd\xe6\xd7\xe9\x23\xf9\x4c\x0a\xda\x94\x17\x0f\x88\x58\xa0\xf7\xcc\x8d\x24\x29\xdf\x5b\xa1\xff\x8d\x03\x1e\xb2\x5c\x60\x2f\xfd\xea\x38\xc5\x83\xa1\xb9\x39\x97\x0f\x0e\x9d\x8a\x03\x8f\x6d\xf3\x1a\xb4\xdf\x78\x55\x54\x90\x56\xab\x10\xd8\xb2\xb7\x6b\x87\x7d\x07\x66\x42\x3a\xf2\xd1\x03\x3a\x76\x00\x68\x5e\x2e\xef\x9e\x3f\x71\x52\x66\xe5\x45\x9b\x3f\xb3\xcf\x6c\xd6\xd4\xa2\x10\x9f\xac\x48\xc4\x86\xfd\xb8\x4c\x0e\x51\xa5\x80\x5c\x17\x99\x94\x11\x10\x27\x19\x7d\xa5\x26\x7e\x97\x74\x0c\x8d\x46\x8d\x37\x1e\xd4\x64\xc1\x70\x98\xa2\x4e\xc0\x9d\x9c\x12\xb9\x4f\xd1\xcc\xa2\x15\x9c\xf3\xc0\x4d\x33\xf5\xd3\x77\x75\x40\xb6\x6d\xa3\x02\x65\x12\x90\xdd\x93\x1a\x7b\x42\x16\xc2\x05\x6c\x7b\x39\x8f\xa3\xe5\x44\x47\x36\x75\x6e\xa3\xc6\x90\x41\xac\x86\x4d\x51\xf3\xcd\x9c\x33\x52\x59\x2e\x15\xea\xe1\xc8\xce\x14\xf8\x6d\x99\x3f\xcd\xd0\x32\x32\xe8\xab\xc4\xb7\x75\xb1\x10\x21\x35\xb9\x22\x79\x70\x41\x93\x58\x71\x0d\x8b\x52\x1b\xea\xa5\x77\x8e\x2a\xfd\xd4\x2a\x36\xf8\x03\x0c\x1e\x1b\x29\xf7\x2f\x76\x3d\x52\x11\xd0\xd6\x09\x5a\x59\xe2\xf9\xcc\x11\x83\xd4\xd4\x92\xdd\xb7\x68\x19\x6f\x98\x74\x23\x90\x64\xa9\x4b\x3a\x1f\x99\xaa\xb1\x02\x5d\x61\x0f\x57\x8d\xf0\x3c\xf7\xaf\x88\x17\x7b\x15\x85\x39\xcf\xbb\xef\xc9\x66\x14\xbf\x61\xe5\xe0\xea\xa3\x6c\x31\x9b\x14\xb8\x6c\xeb\x7a\x0d\xd2\xe9\xda\x7e\xa9\x44\x5c\x4b\x38\x4e\x1e\x95\xb5\x58\x5b\x73\x33\x3f\x98\x87\x5e\x56\x61\x0b\x88\x4b\x0b\xf1\x1e\x71\x7a\xf1\x0e\xad\xb0\xb7\xbb\x22\x3d\xf7\x35\x05\x81\x63\xa5\x8e\x67\x71\xb0\xdd\xb1\x27\x06\x29\x88\xc3\x0a\x2a\x13\x87\xaf\xe9\xbf\xad\x11\x20\x27\xc5\xc7\x64\x87\x0c\x67\x55\x5b\xb8\x6a\x67\x6f\x5a\x30\x48\x43\xcf\x43\x78\x59\xfe\x7e\xf2\x0c\x9f\x3c\xdd\xb3\x34\xe3\xfb\x60\xcf\xb9\x6b\x13\x19\x8f\x97\xf3\x68\xae\xa0\x82\x38\x7f\x31\x10\x66\xb2\x4d\xad\xcd\x93\x38\xbb\x70\xb5\xbe\x3c\x68\x35\x06\xdf\x37\xbf\x22\x17\x32\xd7\x9c\x76\xd5\xa3\x24\x73\xab\xe6\x41\x5a\xb5\x51\x04\xd7\xcd\x36\x4c\x85\xd0\x39\x3d\x47\x18\x90\xf3\x0e\x49\xf7\xc7\xee\x7a\x7f\xb3\xcc\x6f\x57\xcb\xd0\xd3\xda\xc4\xed\x5f\xaa\x97\x23\x7b\x84\x82\x5f\xe6\x4b\x30\x68\x95\x99\xbd\x61\xa1\xb0\xe4\xc2\x2c\xe7\x7a\xbe\xc9\xb1\x52\xa9\x7f\xb9\xac\x50\x66\xbb\x31\x23\xe1\x09\xf3\xcd\x6a\xc2\x1e\x65\xe1\xc2\xb8\xad\xc4\xf3\xde\xeb\xb6\x6a\xda\x3f\x5e\x2f\xf2\xc4\x19\x5b\x71\x85\x46\x9e\x87\x2b\x11\xbe\x6c\x53\x1f\xbd\xd9\x5b\xf2\x5d\x8b\xa0\x78\x4c\x1e\xcc\xbb\x22\xf9\x05\x55\x8b\xd8\xc8\xc4\x76\x35\xfc\x2d\xe1\xd1\x10\x7c\x4b\xb8\xbf\x2d\xb3\x18\x71\xea\x98\x81\x99\xbb\xce\x47\x5a\x7f\x11\x7e\x34\xfd\xb9\x63\x83\x13\xeb\x84\x03\x1b\xb8\x6e\x52\x33\x3c\xfa\xfb\xb9\x51\x3e\xef\x8c\xaf\x11\xac\x43\xc2\x5c\x5d\x33\x3c\x78\xd1\xd4\xf5\x3e\xc2\xfa\x4d\x1c\x22\x5f\x8b\x7c\x35\xb1\xe3\x60\x53\x29\x7d\xd2\x37\x2a\x36\xf2\x05\xe4\xfa\xe1\x0b\x5b\x3c\xe7\x26\x47\x1d\x15\x0a\x35\xc1\x7a\x0d\xd5\xcc\xf2\x83\x82\xde\xcb\x6f\x07\xae\xf2\xeb\x8e\x06\x53\xa4\x0e\xee\x32\x7c\xcf\x4b\x80\xb5\x7b\x32\x6b\xfa\xc6\x87\xa7\xa5\xc8\xe3\x04\x93\x36\x27\xb7\x69\x8d\x60\x56\x80\x51\xdc\x9b\x55\xe9\x3c\x4a\xeb\xd5\xe6\xb6\xbe\x9e\x08\xd8\x04\xd7\x12\x1c\xef\x87\xc7\x25\xcf\xaf\xd6\xc9\xdc\x53\x2f\x2a\xae\x7e\xb9\x55\xc9\xcd\x68\x8d\xe0\xc8\x86\x38\x9b\xd1\x3a\x5c\xad\xd3\x9a\x73\xd5\xb8\x5d\xd5\x93\x66\x9a\x57\x8e\x45\x18\x2d\x53\x2d\x2d\xaf\x8d\x1d\xa4\x64\xa4\x36\x2a\x5b\xb4\xc6\x5b\xb4\x41\x7c\x4f\x06\x37\x04\x4c\x96\x31\x0b\xde\x92\xc5\x8f\x1d\xd6\x5b\x30\x23\xfc\xe1\x13\x50\x77\x96\x89\x51\x2e\x20\xa3\x0c\x52\x8a\x4f\x48\x2e\xda\x24\xfe\x2e\x76\xee\x04\xcd\x83\xb6\x70\x23\x66\xf6\x9e\x93\xcf\x27\xe9\x9f\xc6\xb3\xcd\xd1\xfb\x87\x2b\x45\x38\x66\xc4\xc4\xea\xfb\xba\x4f\xd1\x62\x24\x8e\x5b\x25\x30\xb6\x3a\x6e\xc7\x85\x50\xc1\x97\x9c\xd6\x60\xe7\x28\x58\xea\x06\xef\xe5\x87\xbb\xbe\xf1\x90\x06\x8b\x42\xa4\x03\x39\xb2\xe9\x75\x9d\x09\x6d\xc9\x25\x8c\x16\xe3\x15\x17\xc6\xed\x36\xc5\xe9\x09\x0c\x32\x7a\xd2\x8b\xde\x14\x45\x7e\x95\x96\x41\x98\x62\xd8\xfa\x5e\xc8\x93\x48\x0c\xad\xc3\xfb\x7b\x69\xfe\x48\x2d\x7b\x2f\x85\xe5\x79\x8c\x44\xcf\x8e\xbc\xa4\xb3\x77\x6a\x61\x15\xa4\xa6\xf7\xff\xaa\x79\x69\x0a\x61\x7b\x41\x2a\xdb\xa4\x19\xd8\x75\x20\x12\x81\xaf\xb2\xed\x67\x65\x60\x14\xf2\x1b\xd3\x46\x26\x53\x2d\xaf\x83\x0a\x19\x84\x3b\xdf\x86\xfd\xca\x4d\xc8\x00\x1b\x0a\x61\x6a\xd2\x65\xd9\xc9\x30\xe2\xe9\x87\x04\xaf\x3b\x73\x93\x86\x1e\x26\x01\x10\x40\x2f\xa6\x8a\x3d\x99\x94\xde\x08\xe8\x02\x00\x09\x76\x45\x7b\xe7\xd2\x41\x99\x9f\xb5\x53\x17\x57\xe5\xf0\x3b\x38\xb1\x4f\x9e\xbd\x2d\xd3\x41\x4d\x77\xad\x30\x7f\xc0\x95\xaa\x4d\xbb\x2a\xd8\xe1\x65\x4c\xfa\xb3\xef\xc4\x35\x97\x49\xa3\x70\x9a\xdb\x1d\x6f\xff\x12\x52\x98\xfa\xbf\xda\x94\x4c\x41\x3c\x6c\x58\x0e\xb4\x7f\xb9\x12\x95\x26\x88\xb9\x25\xf9\x3e\x22\x2f\x7f\xc8\xe0\x3e\xfe\x68\x5d\x4d\xe1\x81\xea\x1f\x4f\x59\x77\x9e\x4c\x46\x74\xdc\x65\x21\x26\xdc\xfd\x64\x84\x9c\x37\x27\xf9\x94\x38\xff\x80\xb7\x39\xc4\xf6\xcf\x6e\x49\x48\x1f\x18\xb8\xca\xe1\xe1\xbf\xdb\xa0\xd8\x45\xd1\x0e\x3b\x81\x7e\xce\xde\xba\x2b\xf9\xa9\x1d\x4d\x09\x4f\x80\x60\xed\xf0\x38\x61\xa7\x2c\x4c\xf2\xbe\xfa\x8c\x7c\xf3\xc8\xc6\x65\x17\x39\xa6\xd2\x96\xbe\xed\x9c\xd8\x6e\x36\x2d\x95\x60\xb8\x77\xdb\x96\x64\xbc\x2b\x61\x0e\xef\x88\x75\xde\x8f\x69\x43\x7d\x12\xc9\x56\x05\x5f\xd0\xb2\x09\xd1\x87\x82\xf2\xfb\x81\x1d\xf2\xbe\x4c\x46\xab\xc0\x49\x8d\x9e\x56\xc3\xe2\x3a\x25\x9e\x0a\x16\xe2\xb0\xb7\xcc\x85\x3d\x3b\xcf\x35\x00\xec\xfc\x97\x57\xff\x3f\x5d\x6f\x1f\x27\x45\x71\xe7\x8f\x3b\x3d\x13\x45\x44\xe4\xc9\x15\x57\x44\x04\x04\x05\x66\x0f\x96\x05\xd1\x70\x46\x11\x11\x11\x99\x15\x09\x21\xc4\x18\x6a\xba\x6b\xa6\x6b\xa7\xbb\x6b\xa8\xee\x9e\x65\x37\x84\xf0\x35\xc6\x70\xc4\xf0\xf5\x3c\x42\x08\x31\x7c\x39\x8f\x78\x84\x23\x1e\xe1\x0c\xe1\x8c\x47\x88\x31\x1c\xe1\x67\x8c\x31\x68\x90\x28\x21\xc6\x43\x62\x08\x21\x84\xa8\xf1\xd8\xce\xef\xd5\x9f\xaa\xee\xaa\xae\x21\xff\xf8\x7a\xc9\xee\xce\x43\x77\xf5\xe7\xf1\xfd\x20\xb7\x5e\x82\xe8\xa1\x81\x7a\xb8\x20\x83\x42\xf2\xed\x2b\x5c\x36\x39\xdb\x17\x88\x9a\x59\x9f\xff\x6c\x39\x76\x89\x48\x4d\x2b\x80\x80\x75\xf0\xe0\x30\x95\xd6\x51\x77\x88\x98\xd6\x6d\xdc\x9c\xd8\x96\x77\x17\x4b\x51\xeb\xbe\x34\x86\x4e\xe7\x44\x92\x29\x47\x85\x01\x0a\x43\xbe\x4f\x95\x83\x31\xb0\x55\x5e\x08\xcc\x7a\x02\x9b\xd1\x3a\x25\x38\xe0\x67\xef\xdc\xbb\x23\xb5\x27\xd1\xac\x69\x29\xe1\xef\x8f\xa4\xa1\x13\x5b\x0a\x34\x2a\xb7\xed\x69\xcd\x96\x82\xd1\xb0\xce\x15\xaf\x9f\xdb\x9f\xfd\xd1\x8c\xa9\x6d\xd3\xc4\x9c\xec\x5b\x2b\x95\x51\x92\xc5\x85\x14\xe3\xce\x61\x96\x4a\xe3\x64\x2c\xac\x27\x33\xac\x0f\xf1\xfa\xbd\xb8\x10\x3b\xc2\x04\x4f\xaf\x57\x5e\x5b\xa8\x95\xdf\x01\x62\x8d\xf8\x0c\xc1\x67\x79\xe8\x65\x81\xcb\x61\xc8\x4a\x70\x39\x77\x9c\x55\x24\x25\xb9\x1b\x74\x7c\x35\x1e\x5f\xac\xf9\xc6\x73\x6c\xf7\xa4\x62\x29\xba\xb2\xc9\xe3\x29\xae\x78\x52\x2e\xfe\xc9\x33\xc2\x97\x02\xbb\x04\x2c\xc9\x78\xfc\xef\x7f\xb4\x45\xaf\x32\x28\x9f\x6c\xe4\xfa\x8d\x12\xc2\xa1\xc4\xaf\x53\x9f\x37\x93\x67\x2f\xd4\xd0\x3d\x48\x00\x44\x6f\x78\xf7\x92\xa4\xf4\xc2\xc5\x52\xb4\x68\xa6\xac\x4c\x7d\xe4\x91\x1a\xb1\x7a\xd5\xba\xfb\xd4\xb9\xac\x10\xf9\x0d\xbc\x03\xeb\x3c\xa0\x10\xc7\x68\x9d\x36\xfc\x9a\x4d\x6a\x76\xb1\x14\xbd\xbe\x42\x93\x0a\x65\x24\x00\xad\x50\x28\x68\x7e\xf2\xb2\xee\xcb\xd2\xc1\xa5\xa7\x73\x9b\x97\x69\x7b\x77\x97\x86\x9e\x48\x26\xd1\x86\x7d\x5a\xeb\xe9\x50\x5f\xa4\xb9\xe8\x1b\x13\x12\xda\x1e\x45\x56\x19\x01\x2b\x21\x9f\x5f\x2d\x53\x7b\x10\xb2\x1a\xf1\xed\xa2\xd9\x53\x67\x84\xdb\xd2\x2c\x71\x86\x65\xe6\x05\x60\x59\x14\x5f\xfb\xeb\x6f\xd0\xee\x9a\x47\xc0\x43\xe1\x7c\xa4\xc5\xfc\xbf\xce\xc9\xa2\xea\xc6\x43\x90\x7d\x7c\x50\x42\xac\x37\x49\x9d\x88\xda\xf6\x3f\xb4\x19\xa0\x43\x82\x40\x80\x64\x4b\x7d\xb9\xe7\x16\xa4\xf9\x22\x08\x92\xc1\xb6\x71\x68\xa0\xee\x5c\x81\x04\xd6\x2f\x79\x6c\x16\x2f\xd3\xb5\x19\xb0\x8f\x05\x90\x77\xcc\x10\x5e\x5c\x58\xd8\x0b\x3d\x93\xa4\x5a\x23\x73\x86\xe8\x2b\xdd\x69\x93\x05\x6d\xed\xaa\x03\x0a\x4d\x0c\xe4\x46\x50\xc0\xcd\xa9\xe3\x9f\xae\x6e\x28\xac\xfc\xd0\xac\x71\x90\xcd\xc9\xc5\x3a\x83\xa7\x4c\x3c\x1c\x24\x9b\xed\x57\xe7\xc9\x4e\xbd\x12\x72\xed\xf4\x52\x9f\x61\x1e\xc8\x7e\x35\x8f\x36\xaa\x94\x51\x2b\x6d\x2b\x3e\x67\x4b\xa4\x0e\x87\x3c\x97\xea\x57\xa4\x15\x02\x5e\x81\xaa\x55\x9c\xce\xa6\xf3\x2f\x31\xc5\x3d\x8c\x6b\x52\xe6\xff\xb8\x58\x4c\x70\x61\x2c\x8d\xbc\x1a\x5f\x76\x5f\xf2\x16\x87\xa2\x4f\x2f\x96\xa2\xe0\x89\xd6\xa6\xda\x01\x79\x89\xd0\x43\xfe\xa1\x83\x3c\x7a\x73\x74\x63\xb1\x14\x5d\x74\x33\x2f\x52\x80\x89\x42\x14\x20\x69\x49\xe6\xae\x10\xf2\xc9\xaf\x9f\x93\x1f\xc8\xe6\x2c\x60\xe3\xf9\x39\x3c\xec\x2e\x80\x23\x98\xbb\x6a\x98\xa6\x0d\x8a\x1d\xa7\x68\xda\x94\x61\xa1\xd9\x97\x14\xdb\x2f\xb4\x4b\x40\xd4\xb4\x0e\xb0\x93\x78\xb1\xd9\x6c\x9d\x4f\xea\x45\x60\x7c\xe3\xe9\xcb\x14\x2d\xa1\x69\x20\xb7\xf6\x91\x53\x72\x20\x66\x43\xc3\xde\x3b\xb6\x55\x3a\x5f\x37\x3b\x01\x4f\x6e\x1b\xe9\x29\x7b\x6c\x6e\x78\xa0\x36\xd2\xd1\x8b\x62\x4d\x34\x1f\x55\x31\xab\x60\x47\x29\x22\xf2\xd5\xed\x9a\x1f\x07\x22\x56\x12\xe1\xbc\x25\x42\xd8\xc9\x0c\x48\x23\x3d\x98\x74\xcb\x50\xb5\x09\xb3\x42\x93\xe3\xa9\xbf\xf8\xf8\x60\x71\x90\x41\x5d\xc8\x05\x80\x4b\xee\xa7\xbd\xca\xa0\x0b\x23\x4b\x28\x26\xf7\x19\xf3\x77\x67\x23\x8c\x8d\x99\x98\xf5\x5c\xbc\x76\x48\x13\x15\xa2\xf4\xd7\x5d\xf2\xcc\x07\xd8\xc1\x26\xf5\x2a\x98\x09\x1d\xa1\xdc\xf7\x2e\xd0\x05\x88\x6a\x89\xd2\x65\x7e\xcc\x5c\x89\x2a\x76\x54\x98\x5c\xf5\xdd\xec\xe1\x2e\x63\xa4\x15\xd5\x3f\x7f\x51\x12\x61\x90\x4a\x11\xbb\x73\x1d\x3f\x61\x0b\xb9\x2c\x93\x3c\x61\x8f\x6f\xd5\xc5\x02\x03\x22\x48\xf6\xe0\x86\xb8\x74\x2d\x8f\xea\x53\xdb\xa7\x92\xf8\xde\xae\xd0\xd4\x27\xea\xa8\x2e\x84\x43\x4b\xd1\xe6\x61\xba\xd3\x69\xe0\x08\x8a\x80\x4c\xd5\xeb\x5f\x6a\x0a\xd4\x37\x71\x90\xd9\xe1\x75\xd9\x8c\x30\x05\x0e\x5d\xf4\x4f\xeb\x94\xe9\xb9\x5b\x26\xd5\x50\x48\x4e\x19\x13\x24\x78\x03\x1c\x28\xa1\xf7\x99\xf2\x82\x56\x64\x92\x1a\x76\x88\x4d\x69\x82\xeb\xfb\x4b\xbf\x2b\xf5\xba\xca\xa2\xdd\x89\x2c\xc7\xfe\xc2\x20\x65\xa2\x5e\x0e\xb9\xb5\xf5\x21\xed\xcc\x85\x2e\x65\x89\x56\xcc\x3f\xdc\xd2\xa4\x48\xd1\xc0\xcc\x17\x4a\xc9\x9c\x82\x5c\x78\x27\x7b\xe7\x40\xb3\x92\x48\x77\xfe\xe8\x97\x93\x14\xeb\xc4\x00\x55\x2a\xc5\x52\xd4\x98\xa4\x6f\xd5\x2a\xd8\xb3\xe2\x38\x02\xf9\xf6\xa2\xae\xc1\x22\x1d\x2c\x0f\x39\xab\x39\x8e\x0f\xc2\xde\xec\x1e\x62\xda\xe9\xce\x69\xf9\x0c\x8d\xc9\x42\x43\xc6\x7d\x51\xfa\x8c\x01\x0b\x92\x57\xf1\x69\xc8\x4c\x21\x4b\x61\xb5\x2b\x50\x13\x40\x47\xf1\xa0\x7c\xe0\x80\x66\x48\xd3\xc0\xcc\xc6\x48\x81\x4c\x6f\xd0\x7d\xc3\x50\x9c\xfe\xbe\xbf\x55\xd7\x50\x41\xf1\x15\x48\x77\xf6\x4b\x26\x0c\x51\xd7\xca\xd4\xb3\x60\xf1\xf1\x2f\x27\xd2\xb2\x0e\x59\x8a\xb6\xec\x6b\xa7\x64\xc6\x70\xa0\x4f\x01\x35\x1c\xf9\xdc\x94\x69\x59\x39\x72\xe3\xd7\xe8\x45\x20\x12\x8c\x8c\x7c\x9f\x26\xd4\x46\xbc\x89\x5d\x5d\x71\xcf\x71\xb5\x22\xcc\xe9\xf3\x2b\x2c\xf4\x9c\xfe\xef\x71\x6d\x13\xd4\x56\x6e\x23\xfc\x04\x1f\x7a\x48\xb5\x0c\xe8\x86\x28\xf3\xec\x91\x31\x5a\xef\xc0\x90\x63\x35\x5b\x4b\x7f\xf6\x25\xde\x76\x54\x6d\x1c\x04\xa0\x09\x50\xa8\x76\x71\xe0\xe7\x82\x66\x31\xc4\xf7\x2c\x4d\xd7\x59\x7c\xc4\xe4\x90\xff\x69\x5d\xc6\x49\xbb\x87\x4b\x27\x6c\xb6\xb4\xa8\x03\x70\x57\xce\xd8\xdf\x3d\x2a\x7b\xc6\xdb\xdb\x27\x75\xb4\x0b\xe7\x8f\xc2\xca\x47\xd3\x4b\xcb\x88\x22\x4d\xb9\xd3\x11\x8b\x77\xe4\x09\xf0\xf7\x47\x45\x32\x2a\x01\x11\xa7\x30\x77\x85\xe2\x20\x4b\x38\x27\x2b\x7a\x78\xab\x0c\x70\xa1\xab\xf4\x01\xa7\xf7\xf2\x06\x61\x21\xf5\x90\x93\x09\x5f\x37\xcb\xbb\x61\x81\x01\x13\x12\xf8\x7a\xe3\xcf\x07\x9b\x74\x2e\x85\x9c\x76\xfe\xeb\xdb\x2e\x55\xca\x8e\x62\x29\x1a\x35\x92\x3f\x1d\xbc\xab\xe6\xb0\xc8\x83\x75\x25\xbc\x38\x8e\xa0\xb1\x97\xfa\x8c\x17\xdb\x14\xa2\x3a\xc3\xc8\xf5\x4d\xc4\x0d\xc9\xef\x5f\x95\x66\xbc\xc0\x1f\x0f\x05\xce\xc3\x72\x65\x33\x05\x54\x4b\x73\xce\xb9\x44\x75\xc0\x0f\x58\x98\x18\x9d\xf5\x19\x77\x9f\x4a\xb3\x6e\xfb\x64\x98\xea\xb6\x9c\x4e\x5f\x6e\xca\x0c\x48\xa9\xb5\xdd\x1a\x18\xd6\xad\x33\x1a\xc7\x59\x4e\x23\xba\x70\xf4\x15\x0a\x6f\xc8\xc1\x9e\x49\xb0\xe7\x09\x3f\x09\x0d\xbe\x42\xc3\x00\x32\x98\xa0\xab\x17\x2e\x7a\x30\x5d\xee\x11\x6d\xb9\xf7\x3d\xcd\xc2\xef\xef\x02\x9a\x3c\x9f\xab\x9e\x92\xa6\xd8\x36\x3c\x6c\xff\x33\xf0\x0a\x65\x86\xc5\x01\xcb\x49\x7d\xb9\xda\xc8\x46\xd8\x1a\xc6\x75\x3f\x75\xd8\xb3\x5a\x64\xd9\x31\x65\x1a\x88\x65\x0f\xd7\x35\x11\x2d\xd2\x20\x56\x88\x9c\x44\xeb\xe2\x9c\xa1\x68\xf2\xb9\x75\x64\x2a\x3a\xcb\xf9\x97\x04\xfd\xd9\x45\xbe\x8f\x4c\x98\xa5\xe5\xa7\x73\x1e\x5b\x11\x1c\x16\x8b\xa6\x8d\xbc\xaa\x38\x2f\xdd\xe5\xeb\xba\x75\x54\x87\x52\xc4\xa7\xfc\xbf\xbe\xfc\x12\x26\x0f\x40\xe8\x25\x21\x1b\xf6\xb6\x9b\x74\xc6\x62\x95\x0b\x80\x45\x07\x1f\xd2\xf9\x7c\x56\x15\xd7\xe3\xff\x88\xa2\xeb\xb5\x8d\x62\x1b\x85\x2a\x1c\x81\xfb\xdb\xd5\xad\xa2\xf6\x23\xdd\xa8\x69\x12\x9b\x7f\x7d\x88\xe8\xa9\x09\x2c\x20\xee\x5a\xad\x59\xdc\xf1\x31\x57\xc1\xeb\xaf\x37\x71\x8e\xa8\x89\xea\x23\x34\x86\x04\x48\xdd\x08\xe3\x8b\x7e\x67\x86\x2a\x22\x09\xa4\x92\x80\x18\x86\x9c\x6e\x12\x96\x09\x18\x4a\xf9\x8f\x85\xfb\xca\x32\xbc\xd8\xa8\x81\xf9\xd1\xfe\xf9\x63\xba\x08\x2e\x74\xb3\x02\xf6\xf8\xcd\x35\xc3\xd2\x41\xb4\x32\x16\xfa\xeb\x11\xf9\x52\x01\x72\x38\x7e\x27\x7f\xb1\xe6\x73\xed\x53\x87\x36\x7a\x68\x46\x84\xa7\xcf\xb8\x63\xac\xe2\xdb\x31\xde\x0f\x1d\x87\x34\x38\x4c\xf9\x4a\x6d\x86\x0f\xaf\x2c\xe6\xd3\xb9\xd7\x1e\xe6\x15\x7c\xa2\x29\x04\xe6\x17\xd1\x6f\xf7\x65\x3f\x7d\x62\x1d\x09\x17\x6a\xda\xc2\xa1\xc9\xee\x78\xf6\x22\x99\x88\xac\xf9\x1a\x3b\x2b\x64\x75\xea\xe3\x4a\x18\x67\x76\xb1\x33\x72\x2b\x8a\xc9\x6e\x5c\xea\xc2\xb0\x24\xff\xf4\x64\x7e\x6a\xdb\x27\x4f\x9e\x34\x59\x6c\xdc\x8e\x0d\xe3\x87\xa3\x9b\xba\xc0\x1b\xbd\x6f\x80\x18\x98\x50\x6a\x61\x85\x0f\x92\xff\xd9\x86\x21\x22\x33\x04\x6a\x4f\x3d\xe5\xd9\xec\xa4\x84\x17\x06\xb0\xb7\x4b\xce\xdf\xb4\x47\x54\x2c\x0e\x18\x6f\xd1\x3a\x0d\x1d\x58\xc0\x15\x3a\x5e\xd2\x2a\x05\x8c\x9d\x84\xf3\xfa\xba\xb2\x9c\xc3\x2b\x02\x3e\x77\x1a\x7f\xaa\xc9\xc4\xac\x58\xc1\x8c\x71\xf0\x43\x1c\x5f\xbf\x38\x5f\xaf\xd7\x03\x52\xe9\x11\xc7\x76\xe2\x2a\xa5\xbf\xe2\x9e\xa4\x05\x67\x72\x93\x32\x50\x80\x91\x95\xb4\xb4\x47\x3a\x32\x80\x4e\x8f\x9b\xee\x1a\xcf\xbc\x99\x16\x83\xc4\x77\x92\xad\xe9\xd5\x2f\x48\x74\x42\x57\xe8\x10\x55\x66\xed\x0e\x45\xd7\x27\x40\xa4\x8e\xc1\xfc\xe8\xc8\x2c\x4d\xec\x04\x07\x09\x1c\x7b\x40\xc7\x60\xf1\xae\x21\x0b\x18\xa5\x2e\x9c\xd4\xa9\xcf\xaa\xe7\xd7\xab\xf1\x5a\xe4\xea\x6d\x02\xb3\x67\x23\x3f\x20\x5c\xf4\x2c\xb7\xa6\xae\x1a\x1d\x54\x21\x34\x89\x58\x73\xdd\x31\x65\xa7\x81\x71\xa2\x51\x63\xac\x7c\x76\x58\x12\xf4\x40\xbd\x49\x4c\x82\xa3\xa2\x36\x91\x0c\xf0\x0a\xe4\x4f\xbc\x39\xa9\xf8\x1e\x1a\x36\x28\xc9\x95\x01\xa3\x3d\xbc\x81\x29\x68\x96\xcd\xc9\xe9\xe0\xb5\xcb\xc5\x27\x78\xbe\xba\xcf\xcc\x9a\xfc\x1f\x7c\x8a\xbf\xd4\x1d\x61\x9c\x82\x44\x0f\xfc\xed\x91\x43\x45\x83\x46\x02\x65\x66\x99\x5f\x35\x4c\x26\x53\xe2\x79\xd4\x4c\x06\xd7\x1f\x3b\xc2\xaf\xdd\x7d\xe9\x3a\xa8\xf3\x8e\xe8\xfa\x93\x72\x32\xeb\xc6\xf9\xb9\xfe\x01\xff\x2d\x97\xb2\xa0\x0a\x34\xe8\xf8\x6f\xbf\xd2\xc9\xdf\x6c\x01\x6e\x60\x16\xd8\x58\x48\x87\xe6\x6e\x2f\x9f\x67\x76\x23\x7a\xb2\xfc\x76\x6f\x98\x34\xcc\xac\x29\xa5\x84\x79\x9c\xbf\xda\x5d\xf1\x73\xaa\xf4\x41\x5a\x69\x64\x3a\x18\x71\xcf\xc4\xe8\xec\x1e\xfe\x54\x56\x19\xed\x86\x38\xb7\xee\x79\x6d\x12\x45\xfd\x20\x65\x6c\x17\x66\xdf\x3c\x3c\xc5\x9f\xa7\xd9\x35\xbd\xcf\x47\x65\x85\xd8\xe0\xd8\xdd\x3c\xee\x68\x51\xd9\x11\xaa\x6d\xd2\x4f\x2d\xde\x7d\xf5\x72\xe7\xf3\xfc\x9d\x33\x35\x70\x1f\xf2\x6a\x49\x1f\x72\x42\x6b\xac\x2a\xe2\xf3\xf7\x19\xd7\x9d\xd3\xf8\xa5\x8c\x76\x0b\xdc\x71\xfe\xb6\x0b\x65\x08\xc5\x70\x8b\x13\x64\xcc\x07\xb3\x52\xf4\x5b\x9b\xdf\xac\x5a\x3b\xf8\xe1\xcb\x44\xda\x68\x60\xc2\xa1\x18\xc6\x1b\x2b\xaf\xd2\x41\x59\xbe\x4d\x59\xc0\x5d\x4b\xfa\xf2\x3f\xb1\x05\xc3\xcd\xa9\x13\x0f\x67\xa4\xe6\x7e\x75\xab\x32\xfa\x67\xd4\xab\x71\xa0\x76\x21\x6c\x1d\xa8\x90\x3e\x43\xe0\xb5\x72\x03\x7a\x90\x25\xcd\x4e\xaa\xf7\x2f\x93\x8f\xbb\x4b\xfd\xa0\xd8\x0d\xd2\x6d\x71\xcd\x49\x4f\x2b\x2a\xa7\x8c\xd6\x04\xf4\xe4\xc4\xb3\xea\xce\xd8\x09\x5d\x21\xad\x6c\x5c\x76\xa1\x8c\x4c\xd7\xe3\xf0\x06\xa8\x79\x76\xf3\x6a\xd7\x74\x84\xd8\x66\xa1\x6d\xb3\x06\x11\x45\x5e\x2f\xf2\x88\x42\x9c\x75\xd6\x69\x53\xfc\x00\x25\xb5\x40\xee\xdf\x2a\xaa\x01\x4d\x0d\x0a\x97\x4f\xcc\xd5\xee\x55\xdc\xb8\xf2\x00\x94\xef\x78\x87\xd7\x02\x42\xe1\xe1\x1e\x5b\x55\xdd\xaf\x00\xdc\x9a\x17\x99\xf9\xdf\xce\xcd\x9e\x85\x06\x4d\xc0\xc4\x7f\x1d\xa8\x8f\x78\x04\xd3\x39\x71\x9e\x7d\x64\x86\x86\x0e\x13\x1e\xc9\x29\x9e\x26\xbf\x43\x98\x33\x0a\x8f\x59\xb8\xd0\xa5\xe8\x77\xeb\x15\x65\x1f\xcc\x5c\xc2\x1f\xfc\x7e\x0a\xb0\xa4\x8b\xc6\xdf\x31\x7a\x71\x9f\xe6\x7e\x0f\x86\x59\xaa\xf7\x57\xb4\xe3\xb0\xec\x3f\x2b\x0c\x7b\xbd\x84\x1f\xa0\x50\x9b\x76\xfa\x61\xb9\x2b\x55\x57\xcd\x75\x2d\x95\x11\x9d\xd6\x85\x55\xce\x00\x4d\xd7\x69\xca\xa4\x76\x90\x09\x2a\x96\xa2\x7f\x8c\x64\xd3\xdd\x05\xe0\xdc\x52\x5f\xee\x61\xc9\xdd\x2e\x03\x1e\xef\xad\x49\x62\x99\x8a\x1c\x68\xb3\x09\xc4\xc0\xe8\x9d\x93\x1c\x42\x30\x0b\xb1\x1e\xdf\xd6\xcc\x4f\x7e\x60\x68\x4c\x8e\x80\x85\xd5\xaa\x83\x93\x0d\xf9\xe1\xb6\xb4\xb1\xed\x09\x15\x79\x4a\x7b\x82\x90\x1e\x03\xa9\x21\xb8\x80\x7f\x9a\x7c\x1e\x8d\xbf\x94\xa6\x18\xd1\x73\x3a\xdc\x94\x9b\x08\x72\x76\x44\x51\xe3\xe6\x29\x0e\x3d\x89\xa2\xc1\x05\xf3\x14\xdb\x18\x5c\x0e\x89\x63\xf1\x18\x04\x89\xe4\xef\x34\x57\x3e\x47\x94\x74\xfc\x40\x0e\xee\x14\x3e\x3a\xd8\xb1\xca\x5a\x2b\xf7\x8c\xbc\x83\x89\x3b\x45\xfc\x75\x9c\x07\xb3\x41\xdb\x0b\x79\xa4\x85\x61\xc4\xb7\xb7\x6a\xa3\x7a\xdf\x0f\x5d\xec\x8b\x55\xee\xa7\x66\x28\xfe\x27\x2c\xac\x26\x53\x84\x1a\x6f\xe4\x9e\x3b\xa1\xc1\xd7\x42\xcb\x4a\x8a\xb0\xc2\xa7\x0e\x36\xd5\xc7\x5c\x1e\x2e\xfa\xda\x71\x19\x01\xba\x29\x0b\xec\x44\x99\x7a\xce\xd3\x42\x4a\xb2\x3d\xee\xe7\x0a\x77\x8d\x50\x26\x34\x98\x95\x21\x13\x4c\xdc\x2c\x65\xc7\x26\xc3\x87\x1c\xfa\xfa\xf0\xee\x74\x94\x8b\xbd\xf8\x54\xa4\x39\x66\xc1\xfd\x4a\x17\x4b\x2a\x30\x0e\xe4\xfe\x05\x05\xf4\xb0\xfa\x2c\x73\x59\x52\xc1\xac\xfa\xea\xc9\x6b\xb5\x66\x83\xf8\x2e\xf2\xb2\x82\x7d\x5b\x1e\xd3\x16\xe0\xc4\xc5\x60\x44\xfc\xa3\xcd\x3a\xb9\xb4\xe2\x84\xd8\x33\x13\x53\xbc\x7e\x1d\x3a\xe9\x13\x73\x09\xb1\xbe\xdc\xa1\x07\xa4\x0c\x8e\x1d\xba\xe7\x69\x4e\x46\xd9\x02\x7a\x1e\xc6\x4f\xda\xb2\xcd\x8a\xfd\x21\xf6\x2c\x46\x6a\x2a\xc3\x5b\x91\x0b\x73\x89\x85\x08\xd4\x49\x5d\x13\x04\x10\x87\x21\xcf\x24\xbe\x99\x71\x48\x2a\xdc\xb3\x31\xbb\x6b\x1a\x2d\x6a\xca\x89\x33\xa4\x39\x0d\x4d\xd8\xdb\xc6\x75\xaf\x8f\xd6\xae\x41\xcd\xa6\x9e\x70\x68\x91\xd2\xc6\x63\x95\x72\x3c\x11\xf1\x8f\xae\xdc\xaf\x6a\x89\x12\x0e\xe3\xf8\x3f\x8a\xd7\x55\xc7\xf4\xb6\x69\xd3\x8b\xa5\xe8\xe4\x02\x1d\xab\x08\x72\x6f\xdc\x4f\x36\xe0\x85\x42\xd9\x41\x5c\xec\x68\xb4\x56\x28\x00\xa4\xb0\x42\x4c\x5e\x71\x7d\x48\x36\xd5\x2e\x05\xb9\x9b\xcf\xbe\x2c\xbf\x17\xf1\x92\x22\xf6\xeb\x07\xe5\x67\xc3\xcc\x23\xf0\xd2\x4b\xb7\x28\x32\xfc\x52\x7b\xf0\x8a\x3d\x7a\x0b\xb6\x3c\x24\x89\x12\x62\x61\xce\xb3\x1a\xbb\x0f\x33\x1c\xd0\x0a\xb7\x15\x84\xc3\xf6\xe5\x57\xf5\x32\x88\xfa\x58\x0c\xff\x37\x6a\x9e\xb2\x20\x34\x91\x74\x07\x73\xf6\x5e\xa3\x8d\xbb\xdd\xa6\xb5\xd6\x26\x76\x85\x12\x6a\x52\x4d\x05\x18\xb7\x69\x50\x25\x64\x26\xaf\x9c\x7f\x67\x9f\xac\x50\x26\xa9\x5b\x82\x4f\xae\x50\x8c\x48\x3d\x90\x70\x80\x21\x25\x9a\xa1\x03\xd0\x02\xcc\x1a\xd8\x0b\xb8\x42\x0f\x70\xbb\x5f\xd7\x91\xf5\x88\x59\xd4\xf3\x10\xa7\x23\xe5\xd7\x46\x63\xd3\x4f\x9a\x78\x73\x9f\xdf\xa1\x5b\xc0\xd0\x6c\x94\xae\xa0\xa2\xeb\x15\xc5\x1e\xda\xed\x60\x95\xf3\x79\xd1\x02\x85\x42\x0c\xfa\x50\xf2\x67\xa7\x36\xf2\xa7\x69\x1e\x27\xb2\x32\xcd\x7e\x2b\x00\x4d\x47\xd5\xc0\xee\x33\x8b\x94\xa9\xa9\x4d\xb9\x16\x66\xf4\xb5\x75\xd9\xfd\x8f\x6f\x9f\xdf\x52\xd4\xf8\xae\x46\x70\xf3\x6d\x64\xa3\x5a\x46\x50\x26\xfa\xe0\x55\x05\x3f\xc8\xaa\x21\x57\x02\x1b\xb1\x43\x8e\x70\x66\x70\xa8\xda\x73\x89\xa2\xa2\x1b\x97\x5c\x30\xbe\x7c\x50\x13\xf3\x40\xbe\x8f\x42\x27\x80\xb0\x74\xef\x5e\xa9\x77\xc8\xb3\x4d\xe7\x1d\x51\xee\xe5\xec\xe3\x1e\xd6\x39\x95\x61\xe2\x38\xde\x04\x75\x12\xcc\x98\xd2\xef\x1a\x37\x3e\x38\x21\xf3\x07\x5c\xc5\x13\xe6\xee\xe7\x5b\xab\x4e\x3c\x7e\x1e\x60\x7c\x1c\x0a\xeb\x1c\x7e\x3a\xef\xb0\x0c\xc2\x50\xf6\xd4\x19\x41\xe0\x13\xf5\xc1\x7e\x19\xda\x68\x03\x33\x1f\x2b\x1f\xa3\x30\x6d\xf1\x40\x85\x17\x0e\x23\x86\x7b\x5f\xd2\xbd\x78\x6f\x6a\x6f\x4b\xb2\xff\x2d\xe7\x86\xd5\x85\x15\x51\xf6\x03\x2e\x5e\xaa\xdb\x8d\xc6\x6d\x76\x7c\x6c\x61\xbd\xff\x16\x6f\xfa\x6d\xea\x07\xc4\x21\x01\x97\xe6\x35\x6e\xe9\xc7\x55\x3a\x66\xb1\xb0\x07\x64\x9f\x75\x64\xcf\xf2\xb3\x3c\x2c\x05\x0c\x11\xa7\x58\x8a\x3e\x5d\xc9\xd6\x5f\x16\xf6\xb1\xe7\xd3\x8c\x92\xcf\xfc\x97\xb5\x34\x8d\x5c\x9c\x60\x20\x0b\xcb\x1a\xda\x18\xb9\x4a\x45\x75\x18\xdd\x38\x47\xb0\xb8\x88\x5b\x76\xb0\xc5\x33\xd8\xa5\x23\x75\x0d\xde\xc4\xed\x1b\xfa\xb8\xd7\xb6\xf3\xae\x0f\xaf\x00\x59\x01\xae\x8f\x6b\xfc\xfd\x6c\xfe\x64\x4d\x6b\xe7\xba\xd0\xa5\xbe\xfc\xb5\x0b\x04\x52\x8d\x38\x0d\xbe\x55\xaf\xb7\xe8\x8f\x71\x20\x94\xb8\x3f\x75\x76\x44\x53\x05\x06\x36\xa7\x49\xc0\x1a\x71\x5a\x9f\xa0\x9b\x90\x8d\x93\xc5\xd7\xe9\x93\xd9\xab\x04\xf4\xcf\xac\x48\xda\xf1\xf9\x3a\xa3\x1f\x39\x3d\x3e\x11\x56\x00\x4f\xee\x1f\xa2\xcc\x36\xb0\x2f\x94\xcf\xc7\x9e\xd1\x1d\x20\xc1\x9a\x86\x43\x82\xf2\x9f\x1d\xa7\x00\xd0\xc3\xb8\x44\x80\x4b\xe4\xde\xda\xf4\x61\x11\xf0\x0a\x79\x17\x57\xf8\xa2\x62\xfc\xe2\x07\xb8\x01\xad\xc4\x5b\xda\xe4\xc5\x64\xa1\x67\xda\x22\xef\x6f\xdf\xab\x90\x16\x42\x3f\xbe\x25\xf0\xf1\x0a\x6d\xd7\xea\x71\x9c\xab\x2f\xf3\x48\x2d\x7a\xc3\xe3\x73\x86\x49\x67\x54\x55\x8a\xe8\xf5\x0b\xb4\xb9\x84\x9d\xec\x39\x20\x95\x7d\x76\xbd\x64\x9a\xb9\xcd\x5b\x8d\x2d\xfd\xe5\xba\xbb\x1a\x3f\x77\x0f\x1f\x94\xe1\x07\x8c\x31\xe0\x6a\x7c\x02\x48\xff\xfc\xdb\xde\x04\x3a\xdf\x57\xe8\xaa\xc1\x88\x55\x11\xf1\x52\xdd\xdc\xfd\xe3\x12\x33\xed\x72\x99\xb7\x12\x85\xcf\x3e\x20\x59\x6d\x5e\x2d\xae\x95\x4f\xa6\xf4\x90\xbb\x16\xf0\x2f\x1a\x7d\x6c\x25\x0f\x6b\x26\x62\x4c\x78\xd3\xfc\xf6\x09\x1d\x70\xd1\x90\x67\xd9\xb8\x7a\xd8\x40\x65\xa8\x14\x3f\x11\xd6\x80\x44\x72\x07\x60\xee\x90\x5e\x6e\x9c\x70\x99\x92\xd1\xc1\x69\xf8\xbb\x0f\x09\x9f\x6c\xe4\x24\xe4\xf2\x3d\xfd\x14\x6f\xb8\x38\x51\xa4\x99\xef\x77\x0f\xf3\x27\xa6\x8c\x7d\x97\x30\xde\xe1\xf6\x19\x77\xcf\xd7\xc9\xbc\x3e\x3a\x4f\xdc\xcf\x3f\xf4\xe6\x95\xaa\x84\x83\x4f\x54\x51\x63\xe3\xed\x23\x3a\xbd\x16\xf5\x60\x26\x7d\x89\xaf\xea\xd4\xf7\x2d\x89\x33\x78\xee\xcf\xbb\x5a\x55\x11\x5b\x0d\x56\x7d\x2e\x91\x26\x53\xc5\xc1\xc7\xc9\xbd\x52\x03\xab\x00\x94\x67\xd2\x0c\x33\xde\x2f\xc6\xf7\xeb\xd3\xc7\x46\xea\xd9\x84\x54\x61\x1e\x96\xb6\x32\x5f\xdc\xa6\x6d\x59\x19\xae\x0a\xe6\x99\x18\xbf\xfc\xd7\x19\x7d\x7b\xed\xfb\x09\x05\xd7\xf8\xc3\x99\xd1\x5a\xdd\xa0\xa8\x94\x14\x3d\xea\xe1\x62\xb1\x14\xfd\xdb\xe3\x97\x8a\x28\xcc\xb8\x2e\x66\x3e\x6c\x15\x50\x74\x46\xb0\x07\xb8\x91\xdc\xf0\x65\x1a\x77\x1c\xfb\xb6\xd8\xa9\xcb\x2b\x4d\x87\xab\xe5\x90\x13\x47\x1f\xec\xfb\x1c\x13\xf3\xa9\xbd\xba\x92\x2c\x98\x11\x88\x53\x36\xb3\xa2\x48\x85\x2a\x66\x6d\xd1\x22\xae\xe5\x54\x9c\x4f\x3c\xcb\xc7\x2a\x3a\xfd\xe2\x7a\x36\xb7\xa2\x0e\x11\x3a\xba\xdb\xe4\xe0\xa5\x8a\xfd\x38\x44\xc2\x19\xbd\x66\xd5\x08\x3d\x59\xfa\x75\x0c\x2a\x19\x7c\x61\x78\xf8\x09\xb9\xf3\x72\x42\xf8\xa7\xaa\xe6\x9b\xd6\x4b\xbd\xa4\xf4\xbc\x73\xdd\x20\x11\x9d\x44\x1c\x8e\xcf\xbc\x26\x75\x5d\x21\x1e\xf1\x6d\x31\x98\xfa\xf2\xd9\x21\xa2\x1b\x8a\xef\x42\x8a\x80\x3d\xb1\x5a\x93\x73\xc4\x81\x8d\x1c\x31\xdc\xe8\xd5\xc4\xde\x61\xef\x93\xb6\xba\xf9\x51\x5a\x52\x0e\x18\x29\xe3\xc4\xc6\xe3\x3f\x77\x25\x1f\x10\x42\x1d\x2f\x25\xf7\xdc\x92\x7d\xc1\xd0\x23\xbc\xfe\xaa\xc7\x95\xd6\xb2\x09\xf2\x06\x3a\xa1\x89\x54\xe5\x51\xa3\x2e\x4f\x36\x76\x95\x62\xe1\xd2\x37\x15\xcd\x2c\xe4\xf1\xba\x3d\xbf\xf1\x49\x8d\xad\x49\x1d\x3f\xa0\x3d\x2a\x28\xab\x70\xd1\x2a\xb9\x84\x23\x6e\xb1\x14\x8d\xd9\x99\x46\x61\x1b\x07\x4a\xf6\x5e\xa8\x53\x27\x11\x63\x04\x55\x79\x47\xb8\xea\xb0\x6e\x31\x6d\x91\x44\x9b\x22\xf7\xab\x84\x2c\x65\x62\x2f\xbe\x45\x97\x2e\x92\x1c\xbb\x1b\x27\xc7\x37\xf2\x33\xef\x0e\x56\x64\x64\xea\x24\x00\x3e\xed\x3b\xb7\xf2\xa7\x82\x76\x7b\xbc\x0a\x2d\x4f\x96\x44\xf0\x4a\xa5\xd9\xd8\xe9\x80\x54\x04\x06\x21\xad\x97\xd6\x68\xcc\x00\xb1\x16\x11\xb3\x2f\xe3\x58\x8b\x36\xc9\x90\x06\xd7\x49\xc6\x1e\xb8\x48\xd0\x92\x11\xe3\x01\xb4\x6f\x92\xa2\xad\x4c\x29\x8b\xbf\xfd\x41\x6b\xb4\x16\x24\x03\xae\x16\x91\x89\x55\x93\x9e\xd3\x88\x3c\x40\x80\x07\x14\xde\x7d\x2f\xa4\x9f\x9c\x86\x30\x43\xfc\xc7\x17\x39\x5a\xa9\xf3\x0e\x5d\x5f\xa4\x2f\xff\xdd\xfd\xd7\x6a\xc7\x95\xbb\xe1\x4e\x64\x0a\x40\x21\x7f\x93\x26\xd3\x01\x76\x3b\xf1\x93\xc6\x0b\x53\x63\x8c\xa1\x6e\x07\x38\x93\x3d\x7e\x67\x73\x94\xcc\x36\x3e\x8a\x03\xc0\xf0\x4e\xad\x34\x4b\x21\x26\x7d\xf9\xf9\xc6\x70\xa5\x5f\xaa\x33\x0c\x2a\x12\xc2\xfd\xee\xe7\x8b\x87\xeb\x19\xb4\x9c\x22\xc5\xde\xde\x95\x55\xb9\xa8\x21\xbf\xb7\xc7\xac\x91\xf3\xf0\x82\x8c\xfb\x5e\xba\x41\x8f\x1b\x01\xe6\xf0\xb7\xae\xae\xa6\x29\xf2\x91\x1d\xb2\xb7\x75\xb1\x0b\xb8\x07\xa3\x74\xe0\x92\xe4\x12\x5f\x5f\x2c\x45\xfd\xb7\x2a\x4f\x0c\xf0\x89\xe3\xdb\xe0\x65\x43\x8d\x1f\x92\x40\x58\x34\xae\x53\xbc\xed\xbb\x89\x27\x46\xbd\x05\x63\x8b\x90\x17\x05\xaf\x91\x52\xf4\xdd\xd7\x33\x2c\xa8\x9b\x27\xca\xf9\x63\x7c\xb5\x26\x6d\x94\x40\x4f\xa7\xc9\xc3\xd8\xf8\xd0\x5a\x0d\x94\x8c\xeb\x0c\x0b\x34\xa4\x68\x32\x4f\x2c\xd5\x3d\x33\x88\x87\x41\x41\x44\xf4\x3b\xa3\x8f\x2b\xea\xc3\x36\xc1\xe0\x7c\x62\x3c\xa3\xda\x12\xc4\x4d\x5d\x25\x8c\xbf\xf0\x74\x85\xea\x5b\xa3\x0c\x23\x2f\xee\x8c\xce\x29\xa3\x01\xab\xca\xf5\xb1\xcb\x8e\x86\x39\x27\x95\x8a\x48\x72\xd1\xfa\xe3\xaa\x2e\x3c\x35\x31\x16\x6d\x6b\xee\x27\x8a\x75\x0d\xb6\x5c\x2a\xea\xc1\x76\x55\x61\x8e\x73\x63\xe3\xdf\xfe\xfc\x04\x8d\x7a\xce\x30\xb6\xa8\x2b\x00\x71\xad\x6d\x5a\xc1\x4f\x44\xe9\xcd\xf7\x11\xd7\xec\xe7\x1d\x4b\xa7\x83\xc0\x75\xb3\xe9\xa9\x39\x72\x40\x78\x47\x53\xb3\x66\x23\xa6\x84\x36\xe3\xf3\xaf\x6b\x0a\x1a\x44\x6c\xde\x57\x57\xd4\xf9\x33\x02\x01\xbd\x52\x9f\x71\xc8\x52\x95\xbc\xfc\xd0\x89\x83\x4d\xe7\x39\xc5\x77\xd8\x2d\x33\xc4\x5d\x55\x8d\x2f\x9d\xcd\x3e\xad\x2b\x08\xa2\x75\x41\x9c\x96\x1f\xe1\x4b\xd7\x0f\x48\xff\x3a\x0e\x29\xc6\x56\x39\xc6\xaf\x52\x5e\x00\x14\x15\xd7\x13\x93\x11\xb3\x06\x6d\x61\xfe\xd1\x0b\xe5\xfd\xea\x66\x08\x60\xf1\x06\x7a\x3e\xfb\xcc\x7a\xd4\x4a\xb2\x52\xe1\x23\x1b\x12\x41\xd2\x06\x75\x1a\xbc\x02\xfd\xc6\x42\xad\x19\x48\x90\xfd\xa2\x38\x7f\x73\x84\x36\x7c\x06\x81\x6f\x92\x4c\xa9\x3e\x32\xf3\xb2\xe4\x27\x93\x92\xc6\x7b\xb7\x36\x09\x40\x65\x14\x10\xcc\xd4\x96\xd0\x58\x1c\x29\xa0\xab\xb0\xec\xc0\x8b\x3d\xd3\xdb\xbc\x67\x4f\x1d\x7e\x0a\x8b\x5b\xf4\x7c\xcb\xad\xac\xfb\x0a\x33\x3c\x5d\x20\xc9\x8c\x4f\x1c\x1f\x03\x5f\xf1\xb0\x4e\x8f\xe6\xe6\x6d\xfc\x6f\x8d\xd7\x3a\x86\xaa\x13\xdb\xf8\xf9\x86\x3a\xec\x5a\x65\x68\xe3\xe1\x5e\xd4\x20\x3e\x71\x51\x0f\x6a\x6a\x88\x2f\xb9\x55\xb2\x05\x7c\x75\xd7\x99\x9f\xac\x07\xc1\x32\x4e\x15\xdd\x07\x28\x0f\xa0\x6b\xda\x61\x15\xac\x00\x0e\x37\xb2\x0f\x42\x95\xd1\xee\xc0\x4e\xd4\x5b\xff\xf7\xb9\x8c\x66\x24\x10\x23\xfa\xf2\xbf\xd9\x95\x2d\xad\x1a\xb8\x8a\x03\xb1\xa3\x87\x6f\xf2\x38\xd3\x64\xa9\xbd\x6e\x22\x0c\x5a\xfb\xf2\x8b\xea\x4a\x56\xc3\x08\x08\x6b\xc6\xed\x6b\x35\xc3\xd1\x62\xb2\xae\xb9\xfe\x41\x4d\x39\x2f\xae\x05\xb2\x6a\xdf\x7d\x39\xfc\x68\x16\x56\xf2\x49\x41\xc3\xda\xf3\x64\xf6\xdb\xb5\x4f\x57\x4d\x16\xc6\x2d\xd0\x76\x0f\xd4\x83\xed\x83\x18\xa2\xcd\x50\x2e\x58\x9d\x12\x2e\x9e\x98\xf7\x1e\x56\xf1\xb5\xcc\xb7\x89\xcf\x4b\xa0\x9f\xcd\xd7\x47\x97\x7e\xe8\x4a\xf9\xe1\xf5\xd9\x4f\xd8\xde\x21\x1a\xe6\x67\x65\xb4\x84\xbf\x10\x53\xb8\x5c\x67\x3a\x60\x72\xa0\xfe\x82\x47\xe3\x7f\x8e\xf2\xa2\x12\x59\x00\xd1\x64\x62\x84\xf2\x79\x6d\x2e\x3a\x65\x4a\xea\x45\x25\x24\x4c\xa6\x6f\xb8\x2a\x33\x00\x8a\x1b\xdb\xa2\xb0\xdc\x8d\x3f\xc6\xbd\x87\x65\x6e\xed\x46\x8c\xdb\x41\x89\xa7\x6b\xc5\x56\x0d\x59\x37\x65\xd2\x8d\x53\xa7\x15\x27\x8e\x05\x64\xdd\x31\xad\x06\xc6\xe9\x3c\xb9\xcf\xb8\xf9\x81\x8c\x15\x29\x66\x8c\x56\x53\xc5\xb5\x2b\x86\x0f\x90\xd5\x62\xb1\xf4\xd7\x0f\x86\x29\xb2\x17\x56\x95\x2b\xf3\x94\xfa\x72\xd3\x87\x8f\x3a\x4f\xb8\xf0\x1c\x54\x0d\x93\x55\x64\xf4\xab\x67\x15\x26\x12\x76\xa9\x07\x74\x46\x21\x1a\x9f\x7b\x63\x8e\x16\x50\xe2\x78\xe6\x11\xaf\xda\xc6\x9d\xb4\xe6\x97\xf9\x96\xfa\xc6\x19\x6d\x40\x5e\xfb\xf5\x32\xd5\x7b\x42\x15\xde\xcd\x7f\x4e\x71\x81\x37\x9d\xb0\x5c\x2c\x45\x4f\x08\x20\x4c\xb7\x0d\xd4\x05\x08\xc4\xef\x75\x9e\x8f\x60\xc8\x27\x7b\x10\x03\x4e\x8f\x48\xcb\x6b\xbf\xa6\x38\x8d\xe6\x7f\xda\xa5\x4f\x4a\x84\x8a\xb4\x48\xca\x8d\x9d\x0a\xbf\x04\x31\x87\x20\x68\x21\xe3\x1f\x7d\x6b\xe6\x95\xca\x15\x24\x8e\xba\x91\xec\x33\x3a\xdb\x34\xce\x3b\x25\x42\x34\xe0\x3f\x47\xeb\x96\x45\x41\x37\xc6\x5e\x02\x78\x33\xee\xd6\x74\x35\x6d\x8c\x04\x3b\xec\x39\x4f\x93\xd5\xac\x63\x2f\x09\x9e\xfd\x4f\x64\xff\x6a\x7a\xdb\x4d\xd3\x44\x9f\xfd\xc0\xf6\xa4\x35\x5a\x1e\x12\x9f\x24\x38\xf7\x6f\xce\x57\x3b\x0b\xa7\x27\x8c\x53\xdd\xb9\xbd\x57\x29\xf3\x1c\x3f\x20\x71\x22\x50\x4b\x4f\xcd\x29\xaa\x8e\x02\x1b\x07\xc4\x14\xc3\xf7\x1d\xb7\xea\xf2\x18\xb8\x26\xc7\x1d\xf9\x7f\x4e\xac\x8f\x51\x83\x47\xe1\xe8\xc7\x17\x68\x34\x42\x07\xb9\xa9\xf4\x88\xf1\x58\xff\x6c\xd5\x54\xc5\x66\x0d\xfc\xd8\x64\x28\xea\x77\x54\xd7\x9f\xe5\xc2\xc6\x62\x86\x14\xed\x7d\xea\x2a\xad\x00\x70\xe3\x9e\x2c\x4d\x3a\x95\x5d\xd9\x40\x71\x33\x47\x91\xcf\x1e\xa4\x5b\x7a\x23\x71\x96\xf2\x51\xd4\xec\xe9\x2b\xcc\x6e\xcb\x52\x76\x97\x49\x5d\xda\xe8\xcf\x8f\x48\x9c\x81\x43\x43\x0b\xdc\x79\x05\x09\xee\x7b\xb3\xe4\xe1\xaf\x00\xbd\xbc\xca\xc4\x3a\x28\x38\xa5\x8d\x77\x2b\x15\x9a\xb0\x24\x4b\xd1\x45\xd3\x35\xcf\x4d\x9a\xd8\x14\x18\x6f\x6a\xf0\x69\x42\x32\x38\xb8\x7c\xdf\xfd\x4d\x6e\x0d\x01\x4e\x46\x23\x70\x55\x2e\x7e\x7d\x78\xe6\x01\xe7\x02\x32\x62\x2a\x37\xf1\x96\x8c\xdb\xa2\x20\x9c\xc6\x7f\x76\xc1\x88\xec\x48\xc9\x44\xae\x85\x7d\x3f\xf4\x35\xd9\xf9\x35\x17\x2a\x9a\x3b\x08\xf4\x0d\xa2\xaf\xee\x96\x05\x34\xf1\x7c\xe2\x67\x7c\xc2\x8d\xde\xd9\x4d\x8e\x01\x01\x76\xeb\x94\x21\x26\xc0\xd9\x85\xbb\x35\x51\x7a\x3b\x04\x40\x79\x90\x2a\x4b\x19\x97\xaf\xd1\x46\xd9\xc4\x47\x55\x86\xc5\x77\xe7\x4f\xcb\xcb\xcf\x5c\xa7\x25\x53\x12\x07\xff\xb8\xbd\x02\xaa\x8d\xb2\x6e\x5c\xdd\xaa\x3d\xc8\x9c\xf9\xce\xeb\xa6\x2b\x3a\x65\x81\xd9\x85\x5c\x44\x4c\x10\x85\xfd\xce\x4c\x45\xab\x9f\xb9\x3c\xa3\xe4\xc8\x85\xc3\x95\xb4\xe4\xa2\x4c\x01\x79\xa7\x6e\xa5\x60\x87\x40\xda\xe2\x73\x95\x35\xab\x2f\xcb\x50\x85\xe3\x7f\x5b\x7e\x5c\x59\x3e\xdb\xa4\x02\xbd\xfa\x77\x3f\xd0\x76\x66\xdd\x48\xcc\x66\x72\x97\x54\x34\xf8\x24\x72\x11\x43\x9e\x69\x67\x2a\xba\xe9\x3b\xb2\xbf\x55\xc3\x9e\x87\xe3\x86\x51\xf5\x6e\xce\xff\x60\xae\xe6\x17\x44\xaa\x1e\xa9\x10\x13\xbc\xf7\xa1\xf4\xfe\x83\x18\x80\x05\x36\xf2\xc4\x0e\xee\x12\x61\x59\xe3\x9b\x0c\x81\x3d\x12\xcc\x07\x6f\x6e\x55\x18\xf8\xba\x16\x67\xcb\xc9\x4c\x26\x27\x55\x31\x83\x99\x76\x58\x2a\x3d\xf0\xb9\xd1\x34\xa9\x57\x86\x71\xb3\x97\xc1\xfc\x41\xd9\x16\x1f\x7b\x81\x1d\xfa\x04\x7a\x0d\xd1\x0f\xc7\x67\xe7\xc7\x1a\xce\x30\xa0\x01\x4a\x61\x9b\xd1\xe9\xc3\x57\x28\x45\xbd\x8d\x54\x35\xeb\x9d\x47\xb5\xc1\xba\x8d\x88\x97\x98\x60\x9f\x0c\x06\x29\xaa\x60\xb0\x71\xe9\x2b\x2c\x7a\x59\xff\x0b\x6c\xa6\xc0\xad\x83\xab\xf8\x34\x77\x09\xe4\xa2\x64\x54\x79\x44\x40\xf8\x68\x18\x54\x43\x8f\x63\x59\x0e\xb7\xea\xda\x84\x5e\x86\x66\xf2\x91\x57\x25\xfc\x2e\x00\x47\x4c\xe1\x80\x3e\x6c\xdc\x08\xed\x19\xb0\x30\xeb\xa6\xcc\xb1\xf8\x86\xed\x9d\x07\xb2\xfa\x88\x28\x70\x90\x17\x67\x81\x9b\x9b\x7a\x33\x63\x6b\x93\xa3\x73\x0f\xa0\xb4\xa3\x29\x0f\x28\x3e\x62\x0e\xc3\xc8\xea\x29\x96\xa2\x91\xe5\x26\x1a\x33\x4b\xfc\x6d\x9c\x67\x95\x39\x26\x05\xc3\x23\xde\xe2\x3c\x3b\x4f\x47\x89\xb8\xe5\x44\x2a\xd9\xd8\x39\x4a\xdc\x95\x44\x99\xb4\x59\x4e\x23\xd7\xd5\xab\x2a\xe0\x38\x30\xe3\x28\xcc\xd6\xec\x9b\xdd\x1e\x30\x4c\x4f\xb1\xaa\x7d\xb9\x3b\xb5\x7a\xd7\x84\x2d\x5b\x32\x60\xfa\xce\x91\xcb\x44\x84\x73\x1c\x2a\xe0\xfc\x37\xdd\x9c\xbd\xb2\x58\xc8\x06\x39\x02\xe2\x9a\xdb\x72\x7d\x2a\x59\x3c\x7d\x72\xb1\x14\xfd\x54\x1b\x42\x96\x19\xc1\x95\xa4\x58\x9f\xad\x08\x82\x39\x18\xd5\xe1\xae\x9f\xd2\x10\x40\x28\x08\x40\xe7\x45\xf0\xc5\x72\x1f\x3e\x39\x5e\xcb\x88\x65\xcc\x82\x9e\xf3\x72\xb9\xb7\x1d\xd0\x3c\x44\x30\x13\x3a\x43\x32\x03\x57\xde\xcc\xfe\x4e\xc5\x21\x66\x76\x2d\xdc\x97\x3b\x76\x3d\x9f\xf7\x95\x53\x8e\xfc\xbd\xdb\x04\x7e\x94\xb8\x34\xc3\xc0\x5e\x2c\xd3\x40\x8a\xd0\x96\xa9\xab\xe3\x8c\xee\x27\xef\x58\xc9\xbc\x76\x61\x67\x13\xba\x2e\x24\xea\x48\xd4\x18\xbe\x4a\xa2\x0e\x4c\x86\x41\x31\x48\x5f\x77\xdc\xa0\xf9\x5d\x81\xf7\x9a\x95\x56\x67\xdf\xde\xa7\x58\x7d\xd3\x44\xb9\x31\xff\xfb\x72\xf6\x89\xa8\xb4\x95\xdb\x48\x9b\x00\xdd\x64\xe2\xd6\x27\x67\x26\xa0\xd5\xc0\xc6\xcc\x11\x3c\xe1\xd7\xa7\xf3\x1a\x6d\xd6\x5d\xf3\xe7\x2b\x33\xdc\x4f\x76\x69\xd5\x4d\x4a\xd1\x16\x27\xe0\x37\xa7\x84\x87\xbe\x13\xdf\x44\x05\xaf\x6c\x98\x9b\x74\x23\x04\xdc\x40\xc4\x11\x41\xe4\x3f\x3a\xb2\xd7\xaa\x21\x8a\x26\x19\xb5\x9e\x3d\xab\x90\x93\xc0\xdb\x39\x7a\xe7\xf0\x00\xf1\xd1\xf9\xd8\xc2\x98\xb6\x92\xab\x9c\x08\x71\xed\xf7\x33\x24\x22\x04\x38\xbf\x3f\xbd\xac\x5b\x1f\x81\xc0\x48\x02\xcf\x7e\x7e\xbb\x0c\x41\x80\x76\x17\xea\x3c\x85\x8b\x86\x0f\x4e\xfb\x18\x2f\x01\x2a\xe6\x6e\x38\xaa\x4c\x93\x43\x3f\x00\x12\x91\xb1\xb9\x31\x50\xe4\x53\x1a\x0a\xcd\xfd\xfe\x81\xde\x6b\xc6\x57\x3b\xad\x6f\xc6\xac\xd4\x14\x82\x69\x58\xb5\x45\x91\x30\xfb\xb0\xbc\xc3\x60\x7e\x0d\x21\xe6\xdb\x1a\x9d\xbc\x4e\x43\xcf\xc4\x6d\x22\x8a\x93\x23\xc2\xf9\x0f\x79\xc8\xe2\x84\x49\x2e\x27\xbc\x4d\x6b\x85\x70\xdd\x46\xcc\x22\xa6\x68\x2f\x7e\x3c\x30\xad\x18\x6b\x44\xc9\xa2\xc6\xcc\x67\xb2\xf7\x27\xd1\x1c\xe7\xbe\xb5\xf1\xc7\xfc\xaf\x42\xb2\x46\xc2\x58\x24\xcc\x1f\x2e\x54\xdd\xa1\xb1\x17\xc4\x01\xb5\x35\xd0\xf1\xf1\x56\xe8\x07\x4c\xa4\x7e\xe3\xff\x1d\xcd\x4e\x02\xaa\x54\x08\xf5\xe7\x97\xed\x53\x54\x0d\x4c\xc0\x05\xc5\xe1\x65\xbd\xa7\xec\x8e\x89\x53\x03\x3c\xda\x68\x0d\x35\x69\xe1\x72\x20\xb4\x4c\x8c\xdf\xee\x56\x10\x54\x0c\xb9\x75\xbe\x50\x5d\xb9\x53\x81\x8a\x38\x0e\x14\x42\x51\xfb\x62\x05\x0c\x13\x32\x46\x8b\x65\xb8\xce\xd0\x34\xef\x59\x3a\x46\xce\xe6\xa8\x59\xc3\xd0\xfc\x36\xbb\x81\x9b\xcf\xf0\x9b\x31\x2b\x2e\xb2\x95\x13\xfd\xf9\xb1\xb2\x6b\x4d\xcd\xbc\x13\xb1\x9b\xdc\x84\x4e\xa5\x66\xa2\x5d\x14\x8e\x11\x5d\x38\x52\xa9\xdc\x3d\xab\x59\xfb\xa8\xb0\xfc\x25\x41\xfb\x27\x8e\x53\xa6\x88\xc1\xb5\xfb\x85\x90\xae\xe8\x64\xc4\x33\xd5\x75\xe9\xf7\x67\x2a\x92\xaa\x2e\x0a\x70\xc8\x00\x2d\x78\x6b\xa2\x99\xc1\x7d\x88\xae\xbf\x55\x87\xdd\x9a\x71\x4a\xf3\x12\x3e\x7b\x7e\x9f\x66\x16\x8f\x08\x73\x88\x97\x40\xaf\x7e\xf1\xbe\xc2\x30\xe6\x8f\x4f\xfc\xcf\xc6\x3e\x95\xa1\x64\x93\x38\xab\xf3\x68\xfc\xed\x8d\x57\xa6\xd8\xb2\xd1\x4d\x03\xb0\x15\xc3\xb3\x47\x28\xbe\x76\x7c\x16\x00\xf8\x8e\x45\x7c\x9b\x5e\xfc\xd8\xdc\xf9\xf3\x8b\x8b\x9a\x60\x2a\xc6\x2b\xbb\x64\x6d\x14\x30\xe2\x11\x0b\x1c\xb4\xb8\x85\x8a\x27\x0f\x07\x5e\x81\xb8\x0b\x6d\xf4\x97\x07\x53\x5c\x6b\x8d\x93\x85\x0a\x06\xa7\xe1\x16\x3b\x31\x32\x9b\x30\x2b\xc6\xeb\xc7\xf5\x36\x3e\x51\x18\xe2\xdb\xc1\x87\x36\xaa\x96\x47\x2e\x6d\xf0\x7b\x3e\x79\xad\x20\xd0\x10\x2e\x6e\x94\x3f\xac\x61\xd6\xda\x27\x75\x4c\x4b\xe6\x57\xc6\xf4\xc3\x9a\xf9\xb3\x04\xd6\x24\x96\xba\x4b\x66\x64\xbb\xc9\x72\x0f\x8c\x6d\x8c\xaf\x9c\xd2\x61\x80\x7c\x7c\x07\xc1\x68\x7f\xa0\x78\xe9\x22\x27\x2e\x09\xc4\x38\x3a\xdf\x73\x7f\xab\xfe\xbd\xb8\xb0\x12\xc0\x75\x5f\x7c\x46\xbb\x2f\x15\x60\xa6\x27\x41\xa9\xbf\x46\x43\xf6\x51\x05\x43\x9e\x07\xc4\x91\xa6\x34\x43\x2c\x8c\x9c\x44\xb3\xfd\xa6\xfe\xca\x70\x9c\xe7\x0d\x48\x1a\x93\x55\x2b\x00\xc7\xa4\x8e\x02\xe1\x2d\x4c\xbd\x50\x6a\x72\x66\x76\x9b\x77\x3e\xa0\x1b\x91\x81\x8b\x80\x87\xe2\x3a\x50\x80\x31\x87\xbd\x38\x48\x69\x38\x41\x6a\x24\x1a\xbe\x46\x89\x34\xcb\x43\x70\x9f\xcd\xf7\x6d\x4a\xf7\x69\x8c\xdf\xc4\xcb\x16\x9c\x8f\xe4\xc0\x85\x6f\x56\x6c\x95\x2e\x72\xe5\x38\x1a\x7e\x6e\xe9\xe5\x4a\x97\xd9\x90\xa9\xa5\xd0\x36\x57\xd1\x2a\x98\xd2\x06\x8e\x2f\xff\x3b\x50\x8f\x9d\x01\x66\x1e\x16\xa0\xa1\x5c\xad\xf7\x72\x11\xf5\x5d\xe2\x38\x4a\xf2\xcd\x63\xc5\x15\x33\xbb\x71\x7f\x40\xce\x57\x5c\xd4\xd3\x54\x7d\xe4\x2b\xa3\xe4\xcf\xe3\xc3\xc5\xf5\xb2\xb3\xd5\xea\x9c\x25\x2d\x8a\x16\x55\x7c\x9e\x3d\xe1\x0a\x6a\x7c\xb8\xa2\xe1\x98\xa4\x78\x0b\x87\xb6\x5c\x12\x08\x47\x2f\x45\xd9\xc7\xf8\x7f\x4d\xb5\x02\xb5\x42\x81\xd3\x88\x7e\x74\x68\x90\x12\x4c\x00\x6e\x15\x2d\x67\x5a\x95\x8e\x88\x25\x8e\x5d\xae\x34\x2a\xbd\x43\x01\x43\xc5\x52\x74\xe1\x32\xb5\xd0\x77\x30\xdf\x46\xe6\xa7\xcd\xd3\xda\x49\x1b\x39\xa4\x82\x34\x11\xa8\x2f\x8f\xd2\xc5\xc5\x12\x31\xcf\xc4\xbd\x4a\xf0\x0b\x96\x22\xaf\x97\x94\x51\x6a\xce\xe4\x68\xdd\xaa\x69\x63\x8f\x76\xe3\x20\xd3\xd3\xe6\xfe\xa1\x9f\x5c\xce\x40\x24\x3c\x78\xbf\xcc\x40\x36\xee\x26\x81\x42\x1d\x2d\x4c\x78\x5f\xdc\x70\xea\x55\x18\xf5\x02\x94\x16\x26\x47\x76\x0b\xbf\x6e\xd5\x86\x5f\x5b\x0f\x21\xa7\x0c\x22\x20\xf1\x07\x97\x5f\xf0\x39\x8e\x50\x28\x3a\xa4\x81\x8b\x71\x35\xe8\xe0\x80\xff\x4f\xa9\x2f\xb7\x30\xd0\x36\xbd\x5c\x3a\x4e\x6c\x7a\xa3\x6f\xdc\xa2\x37\x4b\x34\x51\xaa\xd9\xd4\xd2\xac\x19\xcb\x40\xb7\x34\xfe\xc3\xb5\x67\xa4\x76\x1c\xce\x40\x24\x67\x25\xa4\x35\x17\x5a\x25\x3e\x13\x7e\xe3\x85\xa1\x8a\x10\x1c\xf6\x8a\x50\x0f\xf6\x19\xd3\x47\x29\x77\xd6\x0b\xa8\x47\xe0\xa9\x2b\x74\x64\x63\x8b\x8d\x9d\x7a\xa2\x92\xf3\xe0\xf3\x59\xc0\x18\x78\x34\x37\xf5\x63\xa3\x77\x28\xfb\x7e\x28\x14\x1f\x7a\x56\x98\x16\x13\xf0\x93\xbb\xb3\xf3\x8e\xa8\xb0\x40\x37\x71\xf7\x6d\xe1\x1b\xfd\x8d\x4d\x9a\x30\x20\xf7\xe9\x57\x91\xdd\x7d\xc6\x27\xfa\x65\xa9\x0c\xb5\x8c\x68\xe1\xe8\xce\xec\x33\xc1\x71\x9c\x48\x3c\x46\xc1\x13\x57\xe8\x9d\x5f\x4f\x82\x3d\x58\xdd\xa2\xb8\xbd\x22\xb3\x86\x04\x97\x38\x5f\xdb\xad\x61\x92\x3c\x0f\x79\x16\x72\xa4\x30\x6f\xfe\xce\x43\x2a\x1a\xb8\xca\x54\x55\x0e\xe3\x67\x43\x44\x0e\x24\xae\x69\x23\x62\xda\xaa\xe9\x57\xee\xf9\xfe\xbc\x18\xef\xbc\x1d\x66\x80\xb7\xc8\x4a\x79\x6a\x31\x09\xb3\x47\xb5\x71\xab\x69\x23\xcf\xc3\x8e\xa0\xdc\x2e\x64\xd7\x69\x07\xb6\x68\x85\xdd\x88\x38\xc8\xce\x3e\x95\x85\x99\xc7\xb2\x3d\xa4\x0a\x74\xd1\xfa\x9d\x8f\x1c\x12\x50\x5f\x24\x86\xc9\xa5\xbe\xdc\xb7\x1c\xad\x8b\x03\x86\x09\xdf\x57\xdd\xf7\xa2\x86\xca\x32\xcd\xb0\x8e\x3c\xb3\xa7\x2d\x31\x0f\x9d\x75\x40\xd6\x13\x65\x6c\x52\x37\x85\x04\xf7\xe5\xef\xd8\xa8\xc4\x57\x6c\x11\x33\x2b\xd3\x57\xb8\x67\x83\xc6\xd7\x04\x32\x11\x54\xc2\x6f\xce\xcb\x3e\x31\xdd\x24\xf0\x00\x86\x09\x30\x98\xdf\x3f\xaf\x8b\x62\x30\x57\x88\x49\x19\xa5\x85\x82\xe8\x45\x98\xc9\xd5\x7d\x5e\xde\x24\xc1\x4e\x53\x67\x4c\x2b\x96\xa2\x55\x4f\x6a\xd1\x0e\x39\xc4\x23\x9a\xce\x79\xfe\x77\x47\xe4\xd1\xb1\xa9\x8b\x1d\xe1\x6c\xfe\xf4\x29\x05\xd1\x41\xaa\x2c\xf1\xab\xbc\x73\x67\x76\x76\x55\xee\xaa\x9f\x0f\xba\xfd\xf5\x1d\xb2\x97\xa3\x1c\x0b\x3b\x68\x72\x2a\xba\x83\x6a\x15\xfd\xa6\x7d\xf1\x61\x3d\xf1\x25\x80\x78\x18\x81\x1f\xdd\x25\x75\x63\xb0\xc2\x47\xfa\x74\xc7\x95\xcd\xcd\x9e\x57\xe5\xbc\xc8\xf9\xcb\x26\x6a\x79\xda\x71\x70\x8f\x4b\xa5\x90\x7e\x36\x15\x7e\x6a\x12\x6f\x89\x6f\xb7\xb1\x32\x20\x30\x1e\x1d\x99\x0d\x89\x15\x87\x86\x81\x02\xa9\x7c\xb9\x53\xa6\x7c\x60\x45\xdf\xb9\x41\x35\x6d\x46\x95\x0a\x5c\xb9\xe0\xa4\x80\x78\x62\x54\xe5\xde\xea\xb9\x67\x17\x89\xdb\xc8\x30\xe6\x46\x05\x23\x35\x45\xfd\x0a\xe6\x01\x38\xa9\x7c\x27\x68\xf6\xc8\x6e\xe8\x3b\xc4\x85\xfd\x44\xf6\x06\xfc\xb2\x63\x94\xd6\x65\x39\x56\x19\xb3\xac\x82\xfd\x2d\x65\xa5\x17\xb6\x91\x5b\x47\x55\x0f\x06\x51\xb5\x2d\x22\xb9\x60\xe4\x0a\xba\x51\xe1\xa3\x8b\x2f\x49\x5e\x2c\x3e\x9e\xf9\xb9\x89\x1e\x2c\x98\x0d\x41\x2a\xbb\x4f\x51\xa3\xf2\x45\x5b\xbd\x70\xb1\xe6\x91\x0b\x8c\x47\xa6\xea\xfc\x19\x3f\x56\x8c\xbb\x2d\xdc\xc0\x0e\x8d\x43\xea\xf7\x6f\x56\xe5\x9d\x2b\xc4\xc3\x62\x1d\x5a\xb8\xd8\x6b\xb2\x73\xc0\x30\x7f\xe3\x0f\xf4\x92\x73\x32\xe2\x23\xcb\x12\xc6\x98\xfa\xdd\xbe\xf1\x31\xde\x31\xd1\x4a\x80\x3d\x51\x5a\xc3\xa3\xf4\x87\x77\x32\xca\xfd\x28\xc0\x55\xce\xb9\xcc\x1d\xe8\xaf\x38\xe4\xbb\xe5\x90\x2f\x8c\xc9\x30\x85\xa2\xc9\x90\x59\xb3\x68\x77\x7c\x0c\x16\x2f\x54\x18\xa3\x5c\xbc\x01\x0e\xc2\x92\x0e\x39\x47\xf6\xa8\x57\x41\x01\x17\x6d\xf8\xf5\xca\xec\x59\xb6\x42\xc6\x01\xd4\x40\x9c\xf9\xe5\xeb\x9a\xc4\x23\xc3\x1e\x4a\x70\x18\xd1\x1b\xe3\x5a\x14\x68\x01\xa9\xda\x65\x1a\x32\x6e\xd2\x70\x62\x75\xfa\xdc\x35\x9a\x1c\x4f\xa2\x9f\x9e\xd4\x70\x9c\xf1\x17\x48\xf6\xbb\xf9\xd3\x67\x34\x7f\xef\xe5\x21\xa9\x83\x9b\x0c\xc8\x5e\x18\x9b\x16\xcb\xe2\x36\x31\xf1\xe7\xae\x98\xff\xbc\x62\xa8\x7a\x11\x13\x74\x79\xfe\xcb\xeb\x15\x89\x42\xa0\x26\x25\x48\xe6\xed\x9a\x6c\x20\xc8\xe6\xf0\x70\xd7\xbf\x2e\x57\x56\xdd\xd8\x8f\x0f\x90\x2f\xf6\xda\x6f\xf4\x93\xe1\x17\xd5\xeb\x94\x78\xd9\x2d\xce\x37\x15\x1f\xa0\x19\x37\x4d\x9b\xde\x36\x6d\x72\xfc\x67\x03\xde\xbd\x30\x7e\x93\x62\x29\xba\x62\x80\x56\x89\x86\x5c\x3a\x93\xe3\x0b\xde\x6b\x19\xab\xa7\x9d\x64\x37\xd3\x96\xd1\x26\xf9\xfd\x0a\x5e\x14\xde\xe6\x62\x46\xcc\x74\x1e\x93\x3f\xf1\x90\x3c\xda\x0d\x04\xb3\xdc\x62\x29\x2a\x2d\xd4\x1e\x0a\xe2\x55\x6d\xc8\x36\xf2\xe1\x7c\x66\x80\xae\x2f\x57\xc7\x2e\x4a\xd6\xaf\xb9\x6d\xf7\x8b\x47\xb4\x9e\x4c\x8c\xfa\xf2\x83\x9f\x57\x56\x3d\x0d\x82\x3c\x00\x3b\xfd\x6a\xac\xd4\x3f\x43\x00\xe8\xb9\xf6\xc9\xec\xb5\x6e\xd0\x20\xc9\x86\xc6\xd8\xfe\x72\x4a\x72\x93\x80\xa2\xf5\xe5\xfe\xb2\x79\xbc\x56\xe5\xb3\x06\x31\xf1\x79\xc3\x68\xc3\xce\x16\x63\xdd\xb0\x7b\x15\x83\x82\x8f\x9f\x92\x21\xa7\x82\x98\x6b\xd3\x90\x6f\x90\x5a\x86\x28\x5c\xa1\x6e\xec\x09\x78\xd4\xac\x07\xa5\x0e\xb4\xdd\x24\xd5\x96\xf3\xfa\x67\xbf\x89\x43\x2a\x49\x37\x9a\x6b\x1f\x2d\xa5\xd5\xc1\xe8\xb9\x99\xce\x72\x21\x1f\x82\x38\x94\x8f\xf5\x7e\xbe\x23\x7d\x33\x0b\xd7\x9a\x7e\xbd\x73\xa4\xfc\xec\x2e\x0d\x28\xb3\xb9\x2b\x4e\x61\x61\xef\x00\x71\xa0\x4d\x9b\x93\x48\x7b\x15\x9b\x1c\xdc\x48\x86\x1e\xd3\x23\xcd\x7e\x1a\x99\x01\x65\x3d\xa2\x44\xfe\xed\x7c\x99\xc2\x7d\x0c\x15\xc2\x8e\x11\xf2\x9f\x6a\xd5\x72\xb1\x14\xd9\xc7\x06\x89\xb8\xd6\xa0\x26\x17\xa0\x8f\xba\x67\x71\x5e\x56\x7b\x07\x4c\x45\x9f\x5b\xa1\xfb\xfe\xf9\x01\x0a\xe3\x0c\xce\x67\xa0\xd1\xbf\xbc\x25\x51\x99\x09\x79\x74\xac\x32\xe6\xc4\x5e\x00\x6b\xac\x8d\x4f\xeb\x4a\xf3\xe0\x34\xce\x01\x27\xe5\x61\x2d\x99\xd9\x16\x18\x36\xf0\x00\xf7\xc3\x28\xdb\x41\x95\x69\x95\x06\x88\x2f\xed\xa0\x28\x7c\x6f\x86\x32\x36\x24\x0e\x8f\x8b\xb9\x5f\x8f\xd0\x90\xd3\xa8\x47\x32\x79\xcd\xa7\x34\x78\x2d\x0a\x7b\x89\x97\xa1\x04\x3d\x24\x66\x38\xb3\x18\x09\x10\xb4\x24\x7f\x1c\x29\xd5\x25\x93\x5d\x53\x74\x95\x26\x75\xc6\x88\x69\xbb\xd4\x4b\x15\x18\xfb\x8c\xff\xe0\xd3\xa7\xe2\xed\x6d\xb3\xda\x6e\x6b\x12\x16\x28\xe0\x41\x9a\x3a\x25\x4e\x05\x94\x04\x8a\x60\x69\x7f\xad\xe8\x0d\x59\x59\xea\xcc\x0c\x3f\x21\x65\xc0\x7a\x64\x0f\x1f\x6d\x5f\x21\x8f\x57\x5a\x0a\xc6\xdd\xec\x13\x97\xfb\x36\xaa\xe3\x62\x58\x37\x91\x2f\x7b\xa7\xbf\xbe\xa8\xde\x81\xa2\x45\x18\x36\x01\xfd\x18\x3d\x79\x42\x36\xd0\x8c\xc0\xe8\x29\xfa\xca\xfd\x1c\x04\x7c\x5f\x9d\x60\x27\xae\x04\x94\x50\x73\x9b\xa3\xe3\xce\x61\x5f\xc8\x73\xc0\xb6\x0b\x2e\x57\x6f\x74\x80\x13\x22\x61\xfe\xee\x95\x43\x45\xc2\x51\x75\x2f\xa2\x7b\x46\x68\x0a\x01\x40\xcd\xe2\x13\xa2\x9f\x69\xb5\x76\x40\xca\x38\xe0\xbe\xd0\xa2\x9e\x9e\x3e\x4f\x20\x36\x4c\x16\x56\x2a\xd0\x0c\x6e\x6d\xb9\x56\xab\xe3\x18\xc3\x42\x64\x5e\x7e\x89\x69\x73\x24\x5f\x06\x68\xfc\xa3\x1a\x2a\xbc\xab\x1b\x33\xe8\xa3\xde\x3b\x38\x51\xbb\x7b\x2e\x97\x9d\x24\xa6\xcf\xfb\x64\x2d\x46\xf4\x1f\xa7\xb5\xb5\xae\x8f\x82\xf3\xf8\xe7\xf5\x19\xbf\xbb\x59\xde\xc0\x5a\xdc\x24\x34\x30\x6c\x24\x5e\x79\x8e\xd7\x95\x25\xdf\xc7\x01\x48\xbc\x80\xc9\xc0\xd9\x6c\x30\x48\x36\xa5\x42\x3f\xf4\xdf\x57\x66\x1f\xa2\x84\x19\x9f\x18\x0c\x19\xbb\x0a\x59\xfd\x6f\xbc\x82\xb3\x09\xce\xc7\x2c\xcc\xbd\xbd\x8b\x67\x0b\xa1\x84\x05\x32\xa9\xc3\x34\x53\xb5\x30\xe0\xa0\x9f\x17\x1f\xba\x5c\x99\x08\xf9\x82\x51\x0f\x20\xfa\xeb\x47\x69\x45\xba\x32\xd2\x4e\x56\x94\xeb\x17\xa4\xc7\x9b\xaa\x22\xca\xb9\x7b\x1e\x49\x47\x00\x71\x81\x24\xcb\xbf\x45\x47\x46\x6b\x99\x2e\x34\x91\x1f\x72\x9b\xa7\x94\x53\xd4\x98\x01\x87\x14\x1c\xe5\xf4\x2a\xe6\x8a\x0f\xe4\x81\x1f\xef\x22\xae\x54\xf1\x5f\xc7\x06\x4b\xeb\xd5\xa4\x5f\x33\xde\x9d\xd9\xd2\x34\x41\x10\x47\xaf\x63\xbd\x36\xe2\x06\x05\x9c\x24\xe1\x8e\x3f\x3a\x4a\x3b\x08\x89\x70\x5a\x03\x73\x48\x42\xa9\xcf\xe8\xd9\x2b\xb3\xd8\xb4\x69\x37\x8a\xf4\x69\x1c\x1a\xcb\x9f\x94\xb9\xa8\x27\xc3\xb6\x7d\xe5\x4d\x5d\x45\xbe\x27\xe1\x6e\x1c\x58\xd1\xa2\xe8\x20\x31\x89\x51\x8b\xfe\xf3\xe1\xcb\x14\xc9\x3a\x60\x1e\x1a\xce\x5c\x05\x0c\x4e\x6a\x36\xb5\xb0\x2a\xcc\xf9\xbb\x87\xf8\xed\x9f\xdd\x76\x7b\x9b\x18\x84\x1b\x1b\x6f\x55\x6b\x37\x16\x57\x2d\x9c\x2f\x94\x1b\x72\x5c\x1a\x2f\xaf\x88\x0f\xf0\x52\xe1\xd3\x3c\x1f\x23\xd3\x6e\x7a\x42\x06\x1e\x10\x9e\x4b\x94\x38\x38\xfe\xf5\x1f\x6b\xd0\x77\x3b\xac\x26\xa7\xfa\xc2\xfe\xf2\x4d\x1d\x14\x7a\xa6\x2d\x84\x84\xf2\x0f\x19\x97\xc9\x4a\x9f\x6f\xc0\x1e\x5f\xa9\x94\x33\xb0\x8e\x2a\x96\xa2\x4f\xac\x17\x7d\x07\x78\xbb\x9a\x90\x70\x1a\xad\xd2\x0d\x61\x1a\x3c\xe5\xdb\x1f\xe2\x99\x3d\x08\x41\x07\xa1\xe0\xbc\x9a\x9e\xbd\x3a\x56\xbc\xad\x8d\xa3\xfb\xb5\x0a\xd7\xe1\xaa\xf1\x62\xe9\x95\xff\xe7\xed\xad\x72\xfa\xdb\x4c\x26\x68\xd9\x97\xe0\xcb\xea\x44\x88\x8c\x8d\xd8\xa2\xbc\x95\x22\xdb\x7e\xb2\x20\x57\xc1\x40\x81\xf4\x9a\x56\xc1\x85\xfa\x26\x4d\x8b\x0a\x57\xe3\xac\x02\x56\x4f\xf9\x73\x4f\x6b\xb5\x0e\x6d\x24\x71\x35\xb7\x40\xeb\x83\xbb\x29\x0c\x05\x13\xe5\x9d\x85\xc3\x95\xb7\xa6\xcc\x54\x9c\xed\x0b\x37\x30\xad\xed\x10\x5a\xc0\x3c\x60\x0f\x5b\x3b\x28\x29\xa0\x18\x78\x68\x14\x4b\xd1\xb1\xf7\x95\xc6\xc6\xa6\x2c\xe4\xb5\xbd\x31\xa3\x65\x48\xa6\x88\x80\x88\x1b\xfd\xcb\xeb\x1a\x80\x94\x86\x55\x3b\x10\xd6\xab\xc5\x2d\x1a\x4b\x02\x39\xdc\x64\xaa\x2f\x1f\x76\xe8\xa8\xf3\x20\xae\x38\xe1\xf6\x2e\x1c\xc4\x9f\x27\x4a\x9c\x62\x85\x32\x30\xfa\x8b\xbf\xe8\xe9\x83\xca\x89\xa9\x72\xdc\x64\x34\xf1\xd6\x64\x89\x1c\xd7\x80\xa5\xe8\x79\x2b\x5b\xd3\xdb\xc4\x71\xc4\xa0\x2e\x1b\x34\xd7\x1c\x53\x36\xef\xa4\x6a\x83\x14\x46\xf4\xca\xad\xe2\x00\x3a\x5c\x06\x0b\x90\xdd\xf7\x0b\x99\x49\x5c\x25\xdc\x7c\x6e\xf3\x5e\x7d\x47\xe0\x93\xe4\x76\xf4\x5b\x2c\x3f\x65\x99\xa1\x5e\xe0\x8b\x7c\xe6\x31\xa5\x28\x2b\x4e\x89\xbf\xe5\x30\xe1\x0b\x1d\xd8\x94\xbf\xcd\xbf\x09\x6f\x3e\x01\xe1\x10\xd6\xde\x85\x09\x87\xe4\xe7\xa4\x1e\x2e\xd2\x4a\x25\x7e\x9b\xdf\x29\x6b\xd0\x72\x48\x7b\x38\x6f\x39\xf7\x76\x5d\x5b\x8e\x38\x30\x74\xce\x00\xaf\x3e\xdb\x2f\x7d\xa0\x10\xec\x0b\x8d\x4b\x35\x54\x8d\x97\xee\xfe\x0a\x83\x86\xf3\x23\x22\xfc\x02\x81\x1f\x98\xfb\xed\x3c\xc5\x2f\x4d\x31\x4d\x1c\x73\x56\xa0\x30\xec\x90\x29\xb5\xcf\x1b\x9e\x22\x52\xc6\x50\xe8\x02\x69\x6b\xf5\xf3\xaa\x30\x72\x5c\x64\x70\xf2\xe1\x07\x23\x84\x8e\x05\x80\x60\x4b\xd1\x1b\x9b\x24\xde\xca\x69\xc6\xda\x8c\x7e\x5a\xd1\xef\xa6\xd4\xe5\xc5\xf8\x77\x35\x2f\x24\x54\x67\xc4\x11\x13\x84\xa1\x3b\x95\xa1\x1e\xa9\xd9\x88\x38\xaa\x4e\x0a\x6b\xe1\x05\xb7\x05\x74\xa0\xdc\xc6\x63\x12\x05\x6d\x23\x00\x0a\x30\xae\xeb\x58\x8a\x46\xef\x54\x45\xe9\x12\x1d\xaa\x75\x8f\xea\xcc\x67\x22\x6b\xa4\x63\x83\xe4\x94\x18\x37\x60\xba\xaf\xfa\xfc\x3d\x31\x54\x99\x8a\xc0\x21\x80\x18\xf8\x2d\xcd\x4e\x51\x68\xda\x88\xa2\x02\xe6\x61\x1b\x8e\x69\x58\x59\x51\x61\x0b\x71\xe4\x13\x12\x33\x0a\x8f\xa1\x8b\x3c\xdf\x06\x55\xc7\xfc\x17\x14\x05\x74\x07\x77\x5b\x70\x1b\xf2\xdb\xa3\xc1\xea\x76\x8e\xc2\xec\xc8\xf8\x66\x23\x5b\xe2\xd5\x1d\xe4\x79\x0a\x41\xb5\x2f\xf7\x46\xa4\x3d\x1b\xb8\x1b\x31\xf1\x64\x8f\xd2\xbe\x46\x95\x32\xa4\x91\x01\x8c\x55\xed\x0a\x33\x1a\xd2\xee\x87\x0e\xf1\x04\xb5\x08\xbb\x98\x05\xbd\xc4\x22\x8a\xf4\x4c\x69\x97\x2a\xc8\xe7\x99\x18\xc0\xae\xb9\x43\x33\x35\xe8\xa8\x8d\x1d\x1f\x23\xdd\xfa\xcc\x18\xfe\x4e\xf6\xd3\xd6\x3c\xd2\xc0\x02\x99\xfb\xc7\x25\xba\xd0\x1a\x27\x82\xf0\x9f\x1a\xa3\xe4\x6a\x2d\xb5\x4d\xd2\x33\xc8\xb7\x34\x3c\x78\x99\x86\x01\x59\x1e\xa6\x91\xfd\x9f\x0b\x43\x94\x8c\xc9\xaa\xbc\xa4\xfc\xd8\xfe\x56\xd9\xd9\x34\x6d\xa7\x73\x5d\x8f\x2a\xb4\x0e\x87\x34\xb8\xe6\xdf\x17\xc4\xe2\xaa\x2b\x64\xc4\x4f\xc6\x62\xa5\xbe\xdc\xd1\xad\x3c\x7a\x8d\x5f\x0c\xf2\x0c\xa5\xbe\x42\xcf\xc3\xd9\xe2\xd3\x8d\x7b\x11\xf0\x6b\xe6\x28\x9a\xc2\xa7\xe6\xc9\x7a\xa3\xde\xdc\x22\xd5\x35\x0b\xe4\x10\xd6\xd6\x3d\xae\xb0\x62\xc8\xbf\xda\xda\x84\xf2\x8a\x5f\xdc\x55\x11\x5c\x5f\xbf\x59\xed\xa1\xe1\xa0\x17\x4b\xd1\xf7\xb7\x09\xeb\x7b\xaf\x41\x7c\xfe\xf9\x0b\x74\xf2\xd5\xfa\x5d\x10\xab\x24\x41\x73\x29\x0c\x1f\xa9\xdf\x43\x6e\x98\x0c\x6a\x6d\x13\xa4\x0d\xc8\xa4\x19\xf1\xbf\x4c\xdc\x20\x5c\x25\xe2\x1a\x5e\x44\xcd\xdd\xef\x0e\x4d\xab\xcf\x29\x8a\xf1\xf4\x16\x7e\xe9\x66\x39\xc2\x99\xa9\x70\xed\x46\x85\x6c\xe5\x70\xd7\xdc\x67\x1d\x59\x73\x62\xc4\x3c\xec\x43\x77\x07\xba\x4a\xbb\x79\x28\x63\x22\x39\xdd\xf9\x81\xbc\x73\x2e\x62\x81\x0d\x56\x74\x8b\xb6\xa8\xa6\xc9\xc8\xf7\x41\x39\x49\x83\x91\x22\xdf\x36\x19\xad\x04\x59\x58\x95\x71\x40\xa3\x08\x63\xb0\x64\x49\xec\x0b\x0b\xfd\x1e\x90\x93\xfa\x0a\x86\xfa\xed\x54\x3b\x6f\x15\x11\x61\x75\x0a\xe4\x36\x39\xe7\xfa\x91\xb6\x02\xeb\xb6\x89\x90\x6c\x88\xee\x9d\xa0\x24\xdf\x32\x32\xe1\xa3\x1b\xbb\xc7\x35\x89\x79\x70\x67\xed\x5e\x89\x92\x5e\xf7\x82\x4e\x6b\x72\x1c\x1a\x88\x58\xbc\xec\x99\x6c\xdd\x5d\x47\x01\xaa\x11\x0d\x3b\xf6\xe3\x25\x03\x52\x9d\x2b\x0e\x0d\xfb\x20\x95\x11\xf6\x7d\x94\x41\x51\x0f\x5a\xa2\x71\xec\x19\xea\x49\x19\x2d\xb5\xbd\x9c\xfa\x77\xbb\x30\x43\x6b\xaa\x76\x67\x2d\xd1\xa4\x75\x6d\x24\xa6\xa1\xb9\x3b\x04\x06\xe7\x76\x86\x5d\xa2\x8a\x4e\x7c\xfd\x78\xfa\x61\x3c\xa8\xbd\x64\x74\x71\x4f\xcb\xa8\x5b\xf7\x7b\x4c\x9b\xa0\x80\xf1\x71\x73\xfe\xd8\x56\x61\x55\x88\x03\x1b\x41\x70\xcd\xb7\x6a\xe2\x1c\x75\x8c\xcc\xd4\x40\xd4\xf8\xd1\x40\x9d\xa6\xcb\x6a\xd8\x92\x4a\xaf\x2d\x6f\x36\x39\xd6\x9a\xb4\x5b\x8c\x9f\x3c\x65\xeb\xee\xdb\xe0\x9b\xdf\x57\x58\x97\xd9\xa4\x97\x91\x47\x50\x5c\xab\x3c\xae\xa1\x5f\x71\x23\xb5\x72\xcf\xcf\xdd\x28\x13\x94\x30\x17\x8f\x4f\xeb\x16\x4f\x3d\x1d\xfc\xb4\xf7\x19\x4f\x8d\x93\xfd\x00\xa3\xe5\x32\x8c\xf8\xa1\x1f\x78\x67\x77\xf6\xb3\x4e\x99\x3a\x0d\xa8\x5d\xfc\x36\xbd\xfa\x96\x36\x2b\xa2\xe5\x72\xda\xa9\xdd\xfb\xb2\x7c\x2b\x9b\x32\xa1\x6b\xf2\x89\xcd\x2a\xbb\xb8\x42\x59\x10\x7a\x09\x48\xe2\xcc\xca\xd4\x7d\xd7\x26\xd5\x8c\xf3\x25\xd6\x74\x5a\x90\xd7\xd3\x6d\x63\x86\x13\xe2\x77\xee\xab\x1b\xb4\x5b\x82\x98\x9c\xcb\x9f\x3c\xd5\xec\xca\x2b\x4a\xdf\xb1\x1d\x49\x4f\x58\xc1\x8a\xea\x42\x61\xd6\x9a\x41\x4a\x29\xc4\x0d\x3e\x97\x2e\xd6\x8c\x15\x10\x63\x3d\x99\x55\xce\x17\x9f\x57\xf0\xc4\x61\x5c\xe1\x97\xa2\xb7\x44\xd3\x4f\xc3\xc0\xaf\x03\x61\x22\x3a\x3c\x21\x6d\x67\xb0\xd7\x68\x3a\xdc\xad\x5b\xa5\xf6\xf7\x74\xb8\x0d\x13\xf7\x5d\x9a\xd6\x35\xb0\xc6\x7b\xe1\xb4\x1c\x72\x08\x1b\x01\x0e\x5e\xbe\xff\xa8\x02\x2a\x0a\x4d\x13\xfb\x7e\x25\x74\xe2\x5b\x7f\xdc\x51\x11\x0e\x60\x96\x21\x9f\xc6\x8f\x6a\x44\x4b\x17\xf5\x50\x71\x96\xa2\x0d\x03\xe5\x7b\x25\x3b\x9e\xf8\x05\x4f\x0c\xd4\x21\x9e\x5e\x18\xa4\x44\xc8\x3c\xba\xf0\x1a\xad\x73\x60\xdd\xb8\x4a\x94\x31\x53\xf4\x97\xf5\xd9\xa0\xd2\x1d\x1f\x54\xe4\x66\x9c\xa5\x73\x7f\x38\xd0\xb4\x72\x41\x01\x4e\x48\x2f\xb9\x6b\x5f\xce\xde\x78\x1b\x34\x11\x13\xf5\x09\x7b\xd9\x75\xda\x33\x12\x7f\x8f\x1a\xbc\x81\x06\x79\xae\xeb\x0a\x89\x01\x8e\xef\x3b\x5f\x03\x1f\x1f\x37\x5c\x2f\xa7\x7a\x92\xe0\x9d\xbb\xee\x96\xcb\x32\x89\x05\x90\xa6\x7b\xc6\x37\xd5\x24\xc8\xeb\x11\x7b\xdf\xec\xfd\xfe\xf3\x96\x91\x4a\xcd\xd7\x40\xd5\x26\x60\x44\x61\xd1\xa3\x63\xb5\x97\x0b\x59\xc0\xd9\x3d\xd9\x5f\x9c\x7e\x22\x91\xb0\xa9\x0a\xf8\x41\xe1\x93\x87\x47\x69\xdf\xcc\xa9\xa1\xec\x06\x3a\x9a\xd7\x18\xaa\x68\x62\xd6\xa9\xcf\x75\x55\x73\x1d\xb6\x2e\xf4\x16\xe7\x0b\x20\x03\xec\xd7\xf8\x6a\x15\xde\xc0\xc5\x57\xfd\x4c\x67\xf6\x1d\xb1\xd5\x8d\x58\x16\x3f\x1e\xbd\xf7\xae\x8a\x21\x21\x2e\x72\xa0\x8a\x5f\xb8\x3e\x2b\xce\x09\x81\xe1\xff\x8a\x8e\xcb\x22\x7e\x9d\x2f\x2e\xb9\x91\xd8\xd3\xb2\xa4\xf4\x50\x2f\x62\x00\x43\xc9\x6d\xdb\x27\x37\x81\x1e\xf5\xb1\x45\x1a\xbc\x43\x1b\xb5\x4f\x25\xa9\x3b\x8e\x78\x99\x17\x87\x29\x1e\x41\x94\x61\x1f\x06\xe1\xc6\xcd\x65\x05\x32\x06\xae\x83\x89\xe2\xce\x77\x16\x28\x46\xf8\xcd\x93\x98\x07\x8f\x48\x41\xc4\x2a\x61\x4e\xf3\x80\xa1\x5a\x50\xa1\x55\xb0\x78\x8c\x86\x2a\x32\xf2\x75\xcc\xe2\xce\x9d\xa3\xaf\xdb\x77\xfc\x4d\xb7\x1d\x5e\x3a\xb5\xde\xa2\xf3\x84\xe2\xcf\x5a\xc5\xbc\x81\xff\xd3\xb2\xb1\xda\x63\xe8\x07\x0c\x35\x3d\x00\xd1\xcd\xcf\x09\x30\xb5\x17\x60\xcf\xe3\x6a\x1d\x2f\x6a\x68\x00\x0b\x7b\xa0\xca\xcd\xa3\xff\x43\xf7\x37\xa1\xc7\x5c\x1a\x60\x0e\xbd\xcc\xed\xda\xc8\x43\x96\xc5\x48\x03\xf6\xf1\x7f\x3c\xa3\xdb\xd0\x33\x8c\x98\xcb\x69\xf9\x33\x59\x4a\x7f\xe8\x9d\x0a\x06\x32\x1d\x97\x4a\xb3\xd2\xb8\x91\xce\xff\xe8\x71\xe9\xf0\x5c\x61\xe7\xd1\x0d\xec\x78\x4a\xe2\x43\x90\xe6\xa5\x39\x6d\x6b\x56\x1d\x30\x95\x90\xfd\xda\x8a\x41\x32\x3a\x73\x67\xcb\xe8\x97\x15\xc1\x4a\xe2\x82\x57\x1c\xbb\xf2\xe0\x0a\xad\x6d\x23\x55\x0f\x49\x0e\x6e\xdb\x1e\x0e\xa0\xf2\x4d\x1b\x5b\xa1\x23\xbc\xbd\xd9\x4c\xcd\xd0\x24\x1d\x1f\xf3\xbf\xfa\x5e\xab\x3c\x2a\xa0\x9d\xd6\xf4\xa5\x76\x8a\x41\x7c\x37\x62\x81\x18\x6a\xdc\xf0\x4c\x7a\x69\x6e\x9a\x31\x0d\xe6\x4e\xb7\x68\x89\x89\x91\x00\x79\x5e\x4f\x4a\xf6\x2f\xdc\xfe\xb8\xd6\x4a\x10\x1f\x98\x3f\x69\xd1\xc2\x66\xe8\x45\x09\x18\x33\x73\xf0\xd6\xcf\x4e\x0c\xce\xda\xc0\xc2\xa0\xf6\x91\x59\xbc\xdd\x9b\x87\xea\xa8\x69\x62\x6f\x84\x2b\xb3\x75\x71\x35\xf4\xb9\xa4\x49\x46\x38\x90\xdc\x9a\x66\x42\x07\x95\x9b\x3a\xa8\x3f\x6b\x62\xad\x01\x10\xf6\x04\x0a\xa3\xa3\x6d\x90\x42\xa9\x23\x18\xbc\x4b\x67\xef\x10\xc4\x08\xb3\x86\x99\xa3\x48\x71\xe4\xa7\x77\x69\x98\x5a\xe4\x96\x9d\xa4\xfa\x8d\x26\x25\x55\x1e\xf8\xe4\x41\x28\x7a\x78\xbd\xa2\xc2\xc0\xb5\x54\xa2\x83\x9a\x90\x81\x1f\xb2\x1a\xb7\x1b\x28\x45\xce\x7e\xed\x84\xc4\xc7\x27\x15\xa8\xcc\x7d\xe6\x49\x25\xe0\x91\x14\x01\xfb\xe7\x8e\x51\x0a\x32\x5c\xac\xad\xf5\xeb\xb0\xfe\x02\x45\x82\x38\x2c\x23\xa0\x14\xd6\x47\x8e\xd1\x4a\x1e\xa9\x3c\xac\xa8\x59\x19\xef\xaf\x68\x22\x06\x61\xb7\x9e\xc4\x8f\x68\x95\x62\x56\x9d\x7a\x43\x13\x5f\x4c\x75\x8d\x11\xc2\x4c\xda\xc4\x9e\x1f\x72\xd7\x8c\xa7\x6c\x65\x92\x43\x90\x07\x0c\x47\xe3\x52\x85\x62\x8f\x1c\x9f\x26\x47\x6f\xc6\xea\x91\xb2\x12\x45\x5e\x19\xf5\x20\xdf\x26\x99\xf2\x7b\xaa\x10\x95\xb7\x88\x9f\x78\xdc\x43\x5d\xfa\xbb\x5d\xd9\x95\x53\x17\xae\x54\x58\x0a\x1b\x12\x47\xe8\x5f\x17\x2a\x23\x7a\x00\x51\x8b\x7a\xb2\x2f\xf7\xf3\x79\x7f\x0b\x38\xc1\xab\x83\xab\x36\x0a\xfa\x86\x1d\x9a\xaa\xf8\x7b\xeb\xb6\xc4\x2a\x84\x78\x9c\xa9\x13\xfd\x71\xbb\x42\x7d\x47\x9e\x99\x11\x60\xcf\x0f\xd6\x7d\x4f\x31\xab\x60\x33\x70\x7a\xf8\x2e\xe7\x44\x59\xa1\x54\x78\x7e\x37\xe6\x8c\xf9\xc2\x88\x1d\xd7\xe8\x7f\x46\xa8\x95\xd2\x0f\x01\xd7\xf2\x7c\x7f\x7d\x08\xc0\x4c\x6c\xc5\x4f\x6e\x9d\xab\xfe\xd4\xe7\xa8\x86\xc5\xbe\x2f\x18\x67\xe3\xde\x91\x89\x34\x6e\xd2\x79\x52\xbb\x72\xaf\xfc\xd7\x9e\x30\xbe\xdb\xa0\x60\x7b\x40\x3e\x49\x5d\x58\x60\x3a\x0e\x7d\x30\x5e\x6f\x63\x18\xa1\x41\x70\x1e\x57\xd8\xfc\xb8\x37\x9b\x54\xc0\x12\x35\x1f\x5e\xa5\x1d\xb9\x35\x7b\x27\x29\x0b\x26\xea\x03\x8b\xa8\x36\x4f\x9e\xf2\xa9\x93\xdb\x3a\xc0\x68\xfd\xd2\x79\x23\x54\x51\xa3\x26\x99\x8e\xfc\x81\xa3\x69\xea\xe0\x23\xa5\xbb\x16\x0f\x53\x5a\x0c\xdf\x44\x01\x57\xbe\xcb\xdd\xee\xa4\x16\xc6\x04\x90\xe6\x6f\xad\x95\xb0\x06\xd4\x54\x87\x1b\x5f\x7e\x74\x98\xa2\xab\x00\x36\x05\x50\x00\xe4\x57\x1d\x1a\xa6\x14\x12\x1c\xe6\x0d\xef\xf0\xe7\x40\x87\x44\x01\x41\x35\x51\x55\x27\xcf\x6b\x23\x12\xe4\x59\xc4\x42\x81\xec\x1d\x8f\x6e\x56\xe6\x00\xd4\xe1\xa4\x92\xe7\xe4\x60\xb3\x82\xb2\x1e\xfe\x85\x87\x07\xc9\x1b\x6a\xc5\xfd\x08\x10\x49\x1d\x39\x39\xb6\x01\xc5\x35\x65\xc9\x15\x19\x61\x0a\xee\x66\xc6\x3f\xf4\xbf\x9f\x53\xc0\x20\x14\x78\x23\xb0\xf8\xb1\x4f\x29\x52\x11\x9c\xcb\xc8\xa1\x56\x6d\x3a\xfc\x18\xaf\x48\x75\xff\xfe\xa9\x57\x0e\x5e\x90\x83\xb8\xac\xa2\xa2\x9d\x9d\x06\x9f\x38\xf2\x1c\x94\x44\xdf\xb8\x31\xc8\x1a\x0d\x19\x6c\xeb\x20\x65\x72\xce\x07\x3b\x06\x8d\x64\x14\x9d\x32\x2d\xd1\xfc\xcc\xfd\x60\x97\xb2\x85\x47\x9e\x4a\xa9\x7a\xf7\x4c\xab\x32\x97\x6f\x92\xf0\x52\x56\x85\x1e\x6d\x80\x3e\x7b\x29\xea\xdc\x98\x3d\xcf\xe3\x7d\x6d\xf8\x39\x4e\x9a\x6c\xe2\x7a\xc2\xb3\x29\x2b\xaa\x15\x01\xe3\xf2\xbc\xfd\x79\x05\x50\xbc\xdd\x46\x71\xdf\xd4\x34\x15\xff\x55\x41\x9b\x7f\x97\x43\x5f\x00\xf0\x77\xd5\xb5\x95\x8d\x03\x28\x72\xbe\xe2\xbc\xe3\x5d\xc5\x37\xd0\xa6\xae\x9f\x61\x53\x3e\xf8\xb4\x8e\xc4\x66\x34\x9d\x6c\x5f\x72\xbf\xf6\xb0\x22\x16\x70\x45\x36\x81\x35\xb8\xa5\x8b\xaf\xed\x6a\xc4\x01\xad\xff\xd9\x13\xb2\xa2\x80\xb4\x52\x01\x8d\xb3\x07\x4f\xcb\x43\xe5\xd3\x0c\xe0\x36\xef\x59\x4d\xbc\x7d\xbe\xa5\x4e\xf5\x61\xf3\xff\xdb\x95\x99\x08\x7b\x18\xbc\xc0\x72\x2f\xbe\xa8\x29\xaa\x62\xe6\x22\x8f\x6b\x88\x25\xf1\xf6\x6a\x8d\x27\x65\x62\x16\xc4\xb1\x3a\xc1\x62\xe7\xfb\x59\x23\xb4\xa6\x11\x35\x48\x00\x45\x33\x9f\x67\x7d\x5d\xb3\xa2\xee\x26\x9e\x1f\x50\x6d\xc6\x9d\x3f\xaa\x7c\x44\x54\xc6\x01\x7f\xcc\x8d\x29\x4f\x8e\x10\x07\x9c\xbb\x52\x36\xc5\x24\x47\xa3\x63\xe0\x6a\x4f\x3d\xb1\xe3\x87\x9c\xbc\xfe\x49\x05\x1b\x82\x89\x0b\x1b\xdf\xce\x25\x69\x99\xd5\x20\x66\xf2\xab\x1f\x9b\xae\x8b\x9c\xc4\x69\x89\x6f\x0c\xe0\xd8\x39\x67\x78\xb6\x42\xa6\x49\x7d\xf1\x09\x8f\x6e\x93\x29\xda\x0b\xc5\xf0\x25\xff\xeb\x47\x9b\x48\xd6\x35\x5e\x8a\x46\x3f\xdd\xa7\x70\xc2\xbb\xb1\x17\xf4\x08\xc7\x9c\xc6\x82\xf4\x43\x99\x34\x55\x68\x3d\xb4\x89\x87\xd2\xf9\xa8\x37\x74\xc0\x11\x67\xdd\xf6\x41\x4a\xd4\xb5\x4d\x56\x2c\x45\x2b\x7a\x75\xe5\xc6\xb8\xde\x17\x9c\xa9\xdf\x74\x69\xfd\x00\x62\xae\x1c\x46\xee\xe1\xaa\xd0\xc5\xf9\x71\xfa\xd5\x03\xf3\xd0\x0b\x5b\x24\x1c\x2d\xcc\xec\x09\x86\xbc\xaa\x43\x91\x2d\x44\x12\x45\xcc\x5c\xd7\x38\x61\xa9\x2a\xe1\x4e\x23\x13\xf0\x2f\xf2\x41\x8f\x3a\xf7\xb1\x76\xcd\xbc\x10\x2a\x0a\x42\x3d\x81\x68\x2b\xdc\x69\x0d\x10\x4d\x21\x6f\xd0\xde\xb6\x65\x6f\x31\xde\x57\x10\xb5\xb9\x79\x27\xf4\x5b\xe7\xd7\x29\x30\xb5\x44\xb4\xfc\xcd\x48\x6d\x73\xe1\x50\x1f\x3b\x89\x3c\x43\x51\x01\x12\xfa\x98\x35\xa0\x02\x1d\x3f\x4e\xbb\x87\x75\x9a\xaa\xab\xdf\xb2\x36\xbd\x57\xb6\x24\xa3\x4e\x7a\x52\x2e\x6a\xe2\x56\x2a\x9a\x3a\x41\xae\x2d\xc2\xa0\x09\x60\xf7\xe4\x59\x45\x7c\x07\x55\xe2\xaf\xb8\x50\x2c\xd8\x59\x08\x7a\xcd\xf1\x55\xf8\x58\x7f\x5d\x1f\x72\x79\x48\x84\xa6\x93\x71\xd1\x71\x65\xe9\x49\x81\x65\x1b\xdf\xf2\xad\x4f\x4b\x27\x9f\x10\xd2\xd2\x08\xde\x35\x2d\xe4\xc6\x74\x49\xb3\xb2\x4e\x3e\x1c\x26\x09\x7a\xda\x8a\xa5\xa8\xa1\x39\x30\xdb\xa1\x57\x4d\xda\xa8\xfc\xbf\x1c\xba\x46\x3f\xd7\x75\xc2\xb2\x52\xd5\x9f\x3c\xa9\x2d\xfb\xf8\x7a\x82\x9b\x3f\x8f\xda\x29\x6b\x57\x8b\x3a\x0e\x82\x02\x2d\x1a\x34\x6c\xe4\xdf\xae\xb0\x39\x34\xf5\xc1\xe7\x64\xe2\x61\x38\x05\x2e\xc4\x2f\xda\xa6\xeb\x3e\x5b\x0d\xe2\x27\xe2\x5d\xc6\xaf\x9f\x1a\xa3\x95\x57\x16\x76\xb0\x6e\xf8\x18\x4d\x7a\x53\x08\xfe\x32\x8a\x2c\x2e\xde\xff\xa1\xa5\xda\x4c\x86\x85\xbe\xd0\x6b\xce\xd3\x56\x65\x6c\xc9\x85\x01\xfa\xf2\x1f\xba\x5f\x01\x98\xb7\xc9\xd7\x7e\xa0\x9d\x8f\x55\x14\x1d\x2b\x10\xb1\x12\x0b\x6f\x5a\x17\x58\x8a\xfb\x8f\x5d\xae\x26\x57\xa5\xa7\xfa\x9e\x62\x4d\x6f\x23\x66\x05\x35\xd5\x67\xec\xe5\x57\xb3\xa0\x2d\xb8\x38\x8c\x7a\xc4\x14\xf2\x94\xf2\x71\xdf\xd8\x9b\x9e\x5c\x07\xd3\x84\x25\x7a\xa3\x1c\x84\xda\xa1\x5b\x2c\x45\xff\x3d\x53\x47\x66\x40\xa9\xcc\x91\x19\x5b\xb7\x48\x98\x66\x40\xe3\x63\x5b\x9b\x24\x05\xe8\x27\x4d\x2b\x96\xa2\x17\x76\xe8\x6b\x90\x44\xc4\x2a\xa5\xd6\x1b\x4b\xb4\x29\x2f\x2c\xd4\x59\x43\x1a\xf9\xe7\xbf\xbc\x21\xfb\x2a\x3d\xc8\x27\x4c\xf3\xe9\x5c\x67\xeb\xda\xaa\x60\x31\xc4\xfb\x81\xfc\x59\xe1\xa6\x1a\x27\x74\x70\x81\x8b\x5f\xb6\xf8\xea\x60\x55\x73\x0a\xd4\x80\xa2\x93\xa7\x15\x72\x3d\xf5\x49\x0d\x15\x4b\xd1\x0f\x96\x0d\x4a\x5e\x37\x15\x1c\xbe\x42\xf0\xc2\xf1\x0a\x50\x11\x8f\xbf\xc9\xe7\x3a\xc5\x53\x8b\xbb\x11\x03\x66\x43\xbe\xbc\x42\x5d\x6c\xf9\x9c\x35\x6f\xfc\xd7\x39\xb9\xfe\x10\x6a\x65\x71\x51\x00\x01\xf2\x9f\x0e\x2b\x9e\x95\x37\x4e\x8b\x5f\xc4\x5d\xa7\x29\x21\x61\xc4\x38\x5c\xc4\x78\x62\x86\x6a\xe4\xc9\x65\x5e\xa2\x61\x9b\x35\xcb\x3c\x0a\xde\x33\xbc\x7f\xc9\xbd\x72\x58\xce\x75\x7c\x13\x88\x51\x59\xc3\xc9\xcf\x49\x1f\xd0\x20\x40\x4a\x78\x1d\xb0\x33\x0d\x27\xd3\x66\x4c\x2e\x96\xa2\x43\x0a\xa2\xd5\x44\x0e\xa9\xc4\x0f\xf1\x7f\x9c\x4d\xfc\x9b\x4d\xd8\x55\x72\xc2\xe4\xf8\x65\xba\xd4\x0a\x71\xac\xe4\x23\x7d\x62\x64\xf6\x87\x55\x10\x5d\x16\x12\xc5\xe3\x3a\xc4\xa4\x80\x5a\xa1\xc3\x15\xe7\x37\x38\x83\x55\xe8\x01\xe2\x97\xff\x7b\xd7\x2b\x9e\x59\x5e\x15\x55\x71\xa2\x97\x54\x51\x3c\x43\xcb\xd8\x44\x2e\x4e\x92\xfd\x0b\xf3\x65\xfd\x1f\x30\x0c\xdd\xc6\x3f\x06\x5a\x92\xc0\x42\xe4\x39\x8e\xa0\xe1\x3b\xba\x5b\x5b\xfc\xbd\x05\x10\x2e\xf7\x9d\x25\x7a\x90\xe6\x26\x79\x70\x09\x3e\xad\x49\x1b\xf8\x01\xc3\x60\xec\x00\x2a\x26\x3f\x79\x40\x53\x2e\x15\x4e\x34\x66\xc2\x7a\x8e\x7e\xb8\x43\x06\xcd\x29\xed\x45\x20\xec\xc7\x7f\xb9\xff\x8c\x20\xb5\x53\x16\x97\xc0\xb9\x8b\xf6\x68\xaf\x44\xc3\xaa\xa6\x25\x72\x05\xd3\x50\xf6\xa4\x41\x1c\x92\x48\x6f\xe5\xfe\x8e\x29\x92\x65\x01\xaa\x71\xde\xce\xe0\x45\x92\xb3\x18\x7a\x3c\x4f\xf4\x19\xaf\x3f\xa9\xd1\xb9\x10\x8b\x8b\xa5\x64\x0a\xf3\xf3\x7e\x3c\xdf\x77\x93\xc4\x41\xfe\xdc\x05\x83\x95\x71\xad\x40\x4f\x1b\xde\xfd\x8a\x54\x95\x83\x11\x78\xbd\xfe\xe2\xc1\x26\x52\x6a\x05\x86\xa2\xc9\x16\xaa\x7d\x5f\x76\xe8\x55\x63\xd8\x75\x88\x97\x55\x90\x8a\xc8\xe1\x11\x0a\x72\x0b\x39\x0e\x2c\xf5\x95\xee\xe2\xce\x2d\x4a\xe2\xaf\x53\x78\x12\xa3\xa7\x86\x69\x8a\xf2\x94\x06\x09\xc9\xaa\xcf\xf8\x82\x66\x4c\x17\xe2\x0a\x4a\xaa\x8c\x51\xa7\xf5\x55\x2b\xad\x10\xe1\x86\x65\x1c\x7e\x4b\xf7\x72\xf4\x4c\x2e\xa1\x19\xed\x9d\xce\x6b\xb0\x64\x0b\xcb\x35\x13\x84\x81\xf6\x9a\xad\x52\x1d\xd3\x51\xa3\xfe\x99\x03\x03\xd2\x8a\x0a\x9e\xa6\xbb\x25\x31\x78\x5a\xdb\x4d\xf1\xbf\xbc\xb7\x5e\xae\xa2\xa4\xba\x1e\x90\x4e\xa3\x1b\x3f\x48\x33\x01\x46\x89\x32\x51\xee\xc0\x39\xfd\xca\x03\xc4\x43\xc2\xb9\x37\x5c\x98\xfe\x99\xc7\x85\x1c\xe3\xc7\xe9\x3f\x1f\x93\x8f\x93\xc7\x8f\x63\xfe\xcc\x33\x4d\x26\x00\x8c\x48\x2f\xac\x67\x66\x69\xf5\x15\xb1\x12\xe7\x0f\xe3\x72\x6d\x0b\x23\xea\x39\x52\x16\x72\x00\xa9\xf9\xd9\xb5\xbb\xb8\x32\xed\xdd\xb4\x8e\x1d\x37\x93\x32\xed\xd1\x1a\xa0\x6e\x7c\x90\x96\x83\x17\x72\x67\xd4\xe2\x7d\xf6\x79\x00\x54\xc6\x6e\x6d\xc8\xc2\xe5\x7d\x39\x5a\x1a\x6e\x49\xe7\x07\x0a\xca\x89\x31\x50\xb2\xee\xcb\xaf\x1c\xa6\x15\xe1\xc8\x4c\x1d\x21\xf2\xef\xef\xfe\x5b\x1c\x7d\xe2\xa5\x1c\x7d\x4d\xcc\x24\xf4\x08\xf5\xf8\xee\xe9\xce\xce\x3b\xa2\x67\x15\x23\x1b\x07\xa3\x4a\x66\x6f\xfb\xd8\x04\x3d\x61\x3b\x04\x57\xc4\xd1\x9b\xe7\xe8\xa4\x34\x16\x90\x6c\xf9\x73\x7a\xa4\xe2\x28\x1c\xa7\xbe\xeb\xde\xbf\x5c\x9d\x25\x08\x37\xbb\xf8\xe2\x4d\x39\x3c\x46\x7b\x35\xe2\xf9\xe5\x90\x65\x27\xce\x7d\x85\xb6\x91\x42\x48\x12\xa3\x9a\x50\x9d\x31\x86\x2d\xd2\x44\xbe\x10\xab\xe2\x74\xd2\x6c\xac\x7a\x81\x87\xfc\xa9\x37\xdd\xd4\x36\x6d\x4a\x7b\xfc\x6e\x9f\xde\x91\xcd\x81\x30\x62\xe3\xc2\xd2\x77\x68\x26\x62\x0c\x99\x09\x52\x69\xfd\x9a\x04\xa4\x47\x40\xb9\x1b\xa6\x80\x73\x1e\x50\xc8\x58\x14\x39\xa0\xd4\x08\xb1\x6c\xf3\x08\x39\x9a\x75\x89\x07\x7f\xa2\x60\x4a\x7e\xae\xc9\x24\x76\x61\x16\xfa\xc8\xc1\x2e\xe7\x15\xc7\x47\xe2\x11\x5b\x00\x47\x89\x87\x1c\xc2\x37\x5b\xb9\xcf\x6a\xb2\xe5\x8c\x54\x89\x58\x26\xe5\x7a\x06\xc9\xdd\x96\xdf\xbc\x63\xf9\x5c\x87\x3a\xf9\x72\x2a\x45\x16\x72\xcf\x70\xba\x66\x98\x82\x5b\x60\xa9\x9e\xb6\xf1\xa7\xe3\x62\xe8\x16\xe0\x3a\xf7\xc5\xbe\x63\xe9\x50\x65\xac\x26\x3c\xa1\x4b\x91\x3b\x4e\xda\x70\x2f\x87\x0b\x59\x58\xa7\xb0\xd7\x6c\x54\xb3\x19\x22\xc5\x52\x34\x67\x81\x0c\x9f\x01\x72\x9b\x26\x82\xb9\xef\xce\xd5\x06\xf1\x75\x0e\x80\x10\xa3\x93\x89\x2f\x2a\x8e\xae\xd8\xad\xf3\xaa\xfa\xf5\x71\x32\xe0\x4f\x9b\x5c\x04\x82\x9a\xf1\xd5\xb5\x83\xc5\x73\xac\x3a\x30\xbd\x26\xa8\xfb\x73\x30\x69\x1e\xd5\x1f\x7e\xa0\x49\x79\x9a\x77\xd8\x6f\x14\x64\x1b\x16\xf7\xfb\xd1\x55\x8a\xb7\x4a\x05\x11\x2f\xc0\x9c\xdf\xd8\x6f\xbd\xe2\x49\xaa\xbc\xaf\xf1\xbd\xcd\xda\xba\x1c\x93\x5e\x17\x79\x19\xd9\xe9\xc2\xba\x41\xaa\x35\x8c\x57\xc6\x0e\x94\x1c\xaf\x1c\x48\xa7\xa4\xb0\xbd\xcd\x8d\xd5\x60\xcc\xf1\x89\xe7\xe2\xdf\xab\x4f\x28\x73\x19\x87\x78\x01\xe8\x34\x1e\x68\x4d\x5f\x40\xf8\x91\x6f\x96\x45\xa3\x4d\xaa\x36\x4f\x2b\xf1\x69\x88\x3a\x2e\x14\x72\xd4\x6e\xdd\xa1\x82\x16\x97\x7b\xec\x69\x2d\x31\x63\x5c\xc3\x9e\x25\xb4\x47\x0a\xc1\xb0\x8c\xf6\x88\x45\xf8\x34\x68\xf6\x6a\x8d\xd1\x4f\x1d\xa7\xa7\x9b\x52\x0b\x8a\x10\x11\xa1\x2e\x7d\x54\x1b\x50\x31\x68\x09\xa2\x6b\x5e\x52\x76\xaa\x61\xd9\x21\xbe\xcd\x17\x73\x86\x3d\x67\xa8\xb2\x34\xe0\x08\x4c\x38\x9b\x4f\x69\xc5\x3f\x48\xb2\xa8\xf3\xf8\x8f\xbc\xaf\x71\xd8\x6d\xea\x8b\x0b\x37\x6a\x3b\x5f\x27\x00\x79\x33\xc0\x58\x48\x48\xad\x59\x93\xfd\x0b\x1b\x09\x2d\xb5\x52\xf4\xc3\x7d\x72\x95\x77\xd3\x8c\x62\x29\x1a\xfc\xb8\x2c\x46\x42\x1f\x55\x31\xd4\x3f\xc7\x23\xd9\xb0\xb3\xe6\x69\xd3\x93\xef\x5c\xf5\x37\x4a\x35\x48\xe3\xbf\xdb\x2b\x9f\x59\xe8\x38\x92\xcb\xf6\x97\x3d\x0a\x09\x83\xaf\x9e\x04\x30\xe3\x23\x8f\xf2\x01\xd7\x6d\xb6\x8b\x3c\xbf\x99\xb6\x6b\x7c\xb9\x57\x61\x96\xdb\x7c\xef\xee\x8c\x55\x0a\xa9\x90\x70\x1a\x43\x81\x2c\x3c\x8f\x73\x20\xd7\xbc\x5b\x3b\x52\x00\xa9\xa5\x54\x24\xfc\xf3\x3e\x05\xe6\x8a\x6c\x0a\x4b\x27\xe3\x63\x0f\x4b\x7e\x37\x2f\xe5\xc2\xf5\x20\xb6\x1c\xa0\x6a\x71\xc1\xf9\xc4\x24\x6e\x5c\xad\xf5\xc9\x34\xf4\x89\xb0\x31\xfe\xfd\x03\x32\x5c\x85\x9e\x8d\x9d\x3a\xc8\xe7\xf7\x19\x7f\xb9\xa0\x55\x1d\x4a\x36\xc0\x1e\x54\x16\xaa\x1f\xd3\xcc\x84\xf9\xc6\x46\x0c\x56\x67\x9f\x4b\x4b\xa2\x1a\x72\x94\xbf\xb2\xf7\x5f\x99\x94\x20\xe0\x85\x2a\x30\x8d\x62\x56\xf7\xd7\xa3\x63\x64\x37\x10\x7f\x44\xec\xfb\x2e\xd6\x23\x4b\x34\x66\x6e\x62\xda\xe2\x07\x3d\x58\xc1\x41\x0f\x5b\xab\x69\x8b\x63\xc1\x9d\x85\xdc\x35\x62\x89\xa6\xdc\xcb\x91\x2b\x42\xd7\xae\x70\xef\x92\xa1\xfa\x90\x9f\x0b\x16\xde\x22\xfd\x4d\x5d\x90\x23\xff\x6e\xff\xec\x43\xd6\x2e\xce\xf0\xa1\x07\x34\x80\x01\xf2\xd1\xf9\x88\x59\xf9\xcf\x9d\x96\xc3\x02\xdf\xc6\x4e\xa0\x8e\xac\xf3\x6d\xda\xc8\xd4\x44\x8e\x09\x62\xce\x5e\x95\xd3\x8f\x2f\xab\x64\x2f\x7d\x03\x63\x96\xe2\x27\x6f\xd6\xa0\xa5\x71\x70\x49\xaa\xaa\x15\xa7\xaf\x56\xc6\xd4\x61\xd0\x8c\xd8\x18\xbb\x42\xa1\xaa\xbb\x7e\x80\x99\x85\xdc\xa6\xf3\x34\x6a\x81\xce\xa8\x6b\x24\x5a\x4e\xb9\x33\x6d\x37\xe8\x35\x52\xc2\x50\xee\xea\x6a\x02\xe9\x74\x1c\x93\xa1\x33\x4e\xa0\xea\x09\x1b\xb3\xed\x0a\x05\x36\x97\x2a\x4d\x41\xd4\xfa\x60\x92\xb4\xc3\xab\xa4\xbb\xfd\x89\x63\x15\x0d\x25\xe2\x71\x94\x31\xd3\x1c\xd7\x5d\x4a\x19\x54\x21\xb2\x10\xfa\xd8\x71\x25\x3a\xda\xd8\xa3\x2e\xf6\xf8\x22\xe3\x9a\x13\xe7\x93\xdd\xe7\xeb\xe2\x3b\xdf\xd7\x44\x84\x13\xdb\x80\x74\x87\xb5\xf6\x4d\x1e\xfd\x17\xe1\x15\x28\x19\x78\xe7\x46\x0f\xd2\x8e\x21\xb7\xc0\x4f\xda\xb2\xef\x6f\x1d\x94\x99\x1b\xc4\xf9\x71\xc1\x13\xbc\x8f\x74\x39\x1e\x76\x57\x9b\xba\x44\x45\x65\xea\x10\x98\x92\xfe\xaf\xe6\x44\x65\x63\xcf\xb4\x5d\xec\x09\xec\x5f\xf9\x7d\x25\xfa\x61\x93\x85\x84\x2f\x9f\x3e\xfc\x98\x8c\x00\x75\x86\x7d\x92\xf0\x29\x7f\xff\x96\x1c\x78\x98\x3e\x89\xdf\xe2\xf2\x35\x9a\x1e\xb5\x83\xbd\x6c\xda\xcd\x39\xa3\x75\xba\x35\xcc\x38\xf8\x90\xf0\x58\x59\x12\x39\x00\xe5\xf9\xd4\xb3\x2d\x4a\xcd\x5c\x25\xbe\x93\xe8\xb5\x1b\x9b\xf7\x4d\xd0\x2b\x66\x94\x7a\x15\x36\xe3\x43\x5e\x5b\xac\xc8\x57\xb5\x4d\x81\xaa\x65\xcb\x05\x57\x8b\xbe\x0d\x1a\x63\x5f\x1f\xf1\x46\x9f\x3a\xa3\x80\xba\x95\x91\x6e\xbf\x26\x85\xeb\xe4\xe1\xfb\xce\x32\x9d\x06\x1f\x06\x42\x11\x35\xfe\xf1\x23\x8f\xeb\x36\x2b\x0c\x8b\xa9\xdc\xf2\x77\x06\xa6\xed\x17\x72\x20\x9d\xcd\xd2\x8e\x10\xae\x13\xdf\xa4\x75\x14\x77\xfc\xdc\xf7\xe1\x0b\xd7\x67\xb7\x33\xd8\xac\xf9\x01\x26\x5e\x9c\x38\x64\x9b\xdc\x3f\xe0\x5d\xd6\x3d\x21\x2a\x23\xa6\xda\xb7\x17\x66\xbe\x9c\x66\xcc\xf8\x37\xf4\x47\xf9\xd4\xf5\xf2\xaa\x4d\x9d\x26\xe4\xe8\x57\x5f\xa6\x14\x4e\x00\xdd\xbc\x61\x9f\x7a\x9b\x56\x10\x53\x82\x5f\xbe\xbb\x50\x1f\xed\xd7\x01\xcf\x9d\xe8\x06\x17\xea\x73\xa4\x56\x0a\x52\xe4\x87\x72\x77\x2f\x96\x1a\x4c\x48\xa1\x07\x16\xba\x0e\x64\x87\x07\x3d\xc8\xab\x61\xac\x33\x21\x0a\x1f\x75\x74\x3c\x18\x09\x08\x0a\x80\x0e\x01\x33\xb8\x9d\x15\x81\xd8\xb0\x91\x67\x72\x97\xae\x2f\x14\x14\x09\x44\x54\x26\x1e\x56\xaf\xe3\x85\xeb\xae\xd1\x62\x05\xa3\xbd\xb4\xa1\x8c\xcf\xa3\xd7\x77\x64\x63\x1f\x6e\xe0\x74\xb7\xdf\xb2\x3d\xfb\xb9\x5d\x14\x04\x36\xee\xd6\xc4\xbf\x73\x3f\xd0\xc5\x7f\x6c\xc2\x44\xe6\xcc\xfd\x6e\x9d\xe6\x19\xcb\x90\x8b\x12\xb6\xe2\xbf\x3d\x2e\x6f\x16\x0b\x61\x2b\x95\xff\xf2\xd2\x4b\xe5\x45\x8c\x1f\xe7\x7b\x4f\x5c\xae\x3d\x7f\xbe\x0d\xa9\xbe\x70\x5d\xe5\xfc\x36\x21\x22\xf2\xdc\xb3\xf3\x4a\xa5\x12\x6c\xd0\x8c\x70\x45\x01\xdb\x43\x44\x9f\x60\xda\x1e\x31\xb9\xa9\x77\x9f\xf1\xed\x23\xe9\x3d\xf4\xc8\x0a\xe5\x4b\xee\xd9\x2b\x5f\xad\xbd\x29\xee\x5f\xb7\x4d\xf3\x5c\x0d\x42\xab\x67\x62\x73\x13\x61\xcc\x3d\xa6\x74\xb9\x56\xe2\x60\x55\x2c\x45\x1f\x0c\xd1\x49\x16\x8c\x85\xb0\x80\x9e\xd8\x0d\xa3\xe5\xcb\x97\xe9\x71\xc8\x4b\x97\x9e\xb9\x8a\x82\x2e\xe8\x09\x59\xdc\x4c\x8d\x5e\xa5\x29\x95\xd6\x11\x11\xcb\x56\x48\x2e\x0f\x6f\x69\x32\x82\xa7\x1e\xf6\xd3\xd9\x9c\xf1\x86\x46\x9e\xad\xb7\xb9\xe9\x3c\x23\x30\xb2\x37\xa5\x42\x19\x87\x4a\xfd\x75\x38\x6f\x0a\x3d\x11\xf6\x22\x7a\x52\x62\x1c\x68\xa5\x02\xbe\x19\x65\x4a\x6b\xdc\xa6\xde\xbb\x4c\x84\x69\x00\x18\xc2\xa1\x98\x5d\x49\xef\x80\x6b\x62\xa5\x49\x5a\x2e\x5a\xb6\x79\x94\x59\x28\x01\x1a\x47\xc3\x94\xd2\x94\x61\x04\x26\x71\xf9\x17\x35\x3f\x2d\xa1\xa9\x27\xb8\xdd\x51\xa4\x78\x1a\x21\xbf\x96\xa0\x3f\xbf\xaa\xdb\xb2\xb4\x65\x58\x10\xd1\xd1\xa7\xd2\x24\x8d\xaa\xe9\x2a\xe3\x49\x6d\x15\x4a\x1d\x0b\xfb\xc9\x0c\xee\xde\x63\xd7\xea\xc1\x84\xb3\xf8\x12\x9f\x28\x88\xa4\x9f\x52\x96\x54\x34\x0c\x5c\xca\x91\x89\xc6\x98\x4e\x7d\x3e\xd3\x15\xfa\x41\x6a\xe8\x95\x7b\x6d\x37\xcf\xc7\xd3\xdb\x8b\x3d\x02\x3f\xde\x57\xb8\x7f\x97\x66\xa3\x02\xc0\x92\xe4\xc6\xfd\xcf\x06\x55\x37\x06\xb9\x15\x0a\xfa\xa6\xc6\x4f\x8e\xa7\xdf\x2d\xb4\x88\xb8\xb8\xbd\x6f\x65\x83\x7f\x95\x06\x02\x03\x5e\xb8\xbf\x57\x80\x4a\x2b\xf1\x2b\xc0\xa3\xf3\xff\xde\x1c\xd9\xf4\x5d\xa9\xa5\x0a\x37\xe4\xbf\xfe\x88\x02\xe4\x74\x69\x06\x69\x75\xf5\xcb\x83\x32\xd3\x26\x2e\x4d\xd0\xa1\x6c\x4e\x1c\x8c\x40\xcb\x24\xf7\x21\x4f\xcf\x59\x10\xf8\x00\xb2\x5f\xea\x2b\x5c\xf5\x56\x36\x6c\xa5\x9e\x6b\x59\xa4\xc7\x45\x87\x74\x6b\x8b\x44\xc8\x18\xce\xe1\xd2\x79\x9c\x6d\x32\x0b\x08\x45\xaa\x70\xcc\x73\x7c\x0c\x7a\xe7\xc2\xdb\x16\xcc\x06\x47\xbc\x56\x15\x1f\xe7\x84\x09\x9d\xff\xb3\xb3\x95\xed\x1c\x75\x9c\x84\x50\x65\xcc\x79\x8a\x1f\xfb\xdb\x16\xdf\xb5\x38\x19\xf1\x4d\x6c\x97\x60\x3a\x37\xf4\x71\xd8\x34\xa2\xc9\xad\xef\xd7\x64\x5f\x1c\xf0\xa5\x24\x9f\x41\x6d\x58\x7a\xb9\xf6\x85\xb8\xab\x5f\xf4\x7f\x27\x27\x9e\xf4\x4d\x84\x9b\xe8\xd6\xba\x78\x04\x1d\x64\x8a\x5d\x92\x11\x69\xab\x87\x00\x39\xd2\x4f\x21\x1f\xbd\x2a\x3c\x51\xe3\x22\x84\x43\xca\x72\xff\x79\x42\xd7\xec\x10\x16\x13\x69\xed\xf8\x3f\xef\x4b\xd2\x3b\xc4\xf5\x8b\x97\xb6\x28\xa3\x62\xa2\x40\xd6\x7f\xd3\xa1\xb3\x37\x31\x0a\x84\x3b\x82\x61\x8e\xd4\xf1\xfa\xd8\xaa\x8a\x90\x6f\xbc\x5c\x50\xb7\xbd\xdd\x5e\x9d\x13\xaa\xcf\x6c\x1f\xaa\x0c\x34\xfc\x3a\xf2\x78\x81\x39\x7f\xa4\xea\xc7\xef\x07\xc4\x4b\x66\x8e\xc6\x98\x5b\x07\x8a\x76\xd7\xb7\xc5\xed\x74\xe7\xc8\xdf\x76\x91\xa5\x84\xa6\xdc\x9e\x83\x0a\x9a\x04\x96\xc1\x70\x84\xfe\xa1\x57\x76\x1f\x5d\xa1\x15\x67\x19\xd6\xa4\x10\x6a\xec\x6b\xc8\x4f\x97\xe8\x91\x16\x4b\xd1\x8b\x9b\xd2\x38\x38\xba\xaa\x2c\xc7\x0a\x83\xbc\x34\x43\x3a\x30\x5a\xf8\xc7\x9d\x4a\x7d\xe3\x10\x58\xcd\xfc\xea\x58\x36\xf3\xe3\xc0\x26\xb4\x4e\x90\x6a\xc6\xdb\xb6\x2f\x1b\xef\x2a\xc8\x4c\xd4\x6f\x79\x06\xad\x3d\xab\xc1\xc4\xab\x1e\x0c\x7d\xf8\xa9\xda\x31\x92\xc7\xe3\xfb\x88\x49\x1c\xe1\x25\x12\xed\x51\x20\x7a\x33\x26\x17\x5d\xe0\x94\xc4\x79\xe1\x31\x8d\x93\x4a\x58\x20\xf4\xb9\xf3\xbf\x56\x04\x17\xfc\x6e\x30\xcd\x75\x2e\x6c\x96\xc9\x65\x96\x90\xc9\xed\x33\xde\xdb\xa0\x3c\x71\x98\xd1\x8a\x43\x61\xd4\x74\xc9\x20\x59\xfa\x67\x24\x5e\xf6\x48\xa7\x7d\xc8\xb6\x67\x2e\x68\x49\xf3\x68\x7d\xac\x22\x83\xd1\x97\xfb\xc5\x86\xe1\x0a\x80\x27\x7e\x5b\x45\x8d\xf0\xe3\xa3\x34\x9a\x76\x5c\x0d\xf1\x56\xe0\xbf\x9b\xcd\xc5\xcb\x8a\x1b\x60\x7e\xa5\xe6\xe7\x83\x1c\x9f\x8a\x1f\x4d\x7c\x99\x0f\x00\xee\xa1\x20\x1e\xa9\xe4\xbc\x9f\x9d\x10\xd2\x43\x20\xbb\x90\xff\xe6\xab\x5a\x42\xa8\xdb\x18\x35\x90\x93\x3c\x9a\x97\x9d\xc9\x46\x00\xe4\xf5\x08\x5d\xa8\x9f\xae\x55\xec\x9e\x5d\x94\x1c\xea\xdc\xaf\x3a\xe4\xa1\x1e\x5d\x45\x0a\xb2\xbe\x30\xc8\xd6\x45\xb4\x5c\xea\x09\xa8\x53\x72\xf0\xb7\x6f\xce\x8e\xe6\x1d\x54\x2b\xdb\x28\xa1\x48\x4a\xf0\xce\x92\x51\x03\x93\x94\x53\x77\xe0\x96\xfc\xf8\x7e\x5d\x3e\x31\xb0\x59\x8f\x0e\xd3\x1a\xf8\x84\x14\x75\xb0\xb0\x49\x2c\xdc\x3c\x7d\xb8\xff\xb9\x6c\xed\x55\x21\x8c\xeb\xae\x96\x19\x71\xfd\x80\x7a\x89\xf5\xd3\x17\xac\x34\x04\xdd\x18\x5f\xcf\xe8\x3b\x47\xe4\x93\x44\xe2\x1a\xab\x63\x02\x2f\x0a\x3b\x19\x76\x88\x4b\x3c\xae\x96\x6a\xfc\xfd\xf5\x69\xcf\x61\xd6\x9a\x44\xb2\x8c\xfb\x5e\x14\x48\x7e\x3e\x8c\x2e\x96\xa2\x13\x27\xfe\xa6\x07\x66\xb3\x98\x63\xee\xc8\x08\x49\x1a\xb3\xc2\xa6\xb0\x3f\x4d\xbc\xbc\x8f\xb1\xf0\x18\x2a\x4c\xfd\x40\x87\x9b\x32\x8b\x54\x2a\x8a\xcc\xcf\xc7\x15\x87\xa2\x0a\x43\x9e\x6c\xa1\xa2\xc7\x9f\xe0\xaf\x57\x23\x81\x69\x03\x2d\xe2\x0b\x03\x14\x28\x02\x09\x42\x78\x44\x36\x9d\xc9\xde\x7e\x9b\x54\x6d\xec\x07\x45\x0e\xa9\xe0\x01\x62\xde\x41\x95\x4b\x17\x9a\xb0\x4b\xfd\xea\xad\xe3\xb5\xfb\x01\x0a\x86\x42\x4e\x28\xfb\xdd\x6e\x59\xa8\xbb\xba\x86\x81\x5d\x09\x9d\xf8\xc9\x15\x31\xfd\xe2\x97\x34\xe4\x2d\xe8\x67\x24\x34\xbf\xdc\x98\x8c\x61\x7a\x95\xf3\xb7\xfb\x8c\x11\x73\x14\x71\x43\x1a\x7a\x56\x6a\x74\xba\xfa\xac\x6a\x7c\x5e\xf6\x89\x28\xb6\x7e\xb8\x51\x61\x93\x33\xea\x05\x45\xca\xab\x55\x46\x83\xa4\x87\xcf\xff\xec\x25\x19\xaa\x28\xe1\x58\xf4\x87\xb7\x5e\xa6\x44\x79\x17\xca\xac\x65\x9d\x1a\xe7\x0c\x23\x00\xf6\x89\x6d\xf2\xd4\x16\xb9\x11\x99\xde\x5e\x2c\x45\xdb\x4e\x0d\x49\x7e\x55\xc2\xcc\x22\x63\xed\x35\x5a\x4f\xc0\x75\xc0\xa4\xe5\x4b\xf4\xd7\x85\x0a\x2c\x83\x22\x41\x69\xf9\xd1\x26\x01\x19\x71\xcb\xc8\xf7\x7b\x8a\xa5\xa8\x4f\x71\xb9\x28\x63\x24\x46\xf7\xc6\x87\xd7\x37\xc1\x9a\x03\x90\x23\xe7\xf7\xf7\xf0\x6a\x45\xd8\x84\xc4\x45\x80\x52\x07\x7d\xeb\x4d\xb9\xc1\x43\x95\x62\x29\x9a\xd5\xa6\x63\x12\x2a\x29\x4e\x3c\x7f\x6c\xf1\x18\xad\x49\x44\xc4\x41\x9e\xc5\xd7\x91\x32\xfc\x9e\x79\x3e\x4d\x7b\xbd\x48\x51\xe5\xb9\x49\x6a\xd0\x54\x18\xec\x39\x56\x6b\x64\x5c\xda\x00\x18\x46\x02\xc3\x8a\x14\x4e\x18\xb7\x5e\x84\x47\xe7\xa2\xc2\x78\x75\xa6\xe6\x61\x06\x30\xd9\x9e\x22\xf1\x8a\x48\xd1\x72\x03\xe1\x89\xdd\xc2\x77\xe0\xa3\xb3\x6f\xeb\xbc\xe3\xbe\x45\x49\xeb\xd4\xf9\x82\xe6\x71\x46\xc1\xb8\x4e\x7c\xd3\xfd\x2b\xf5\xdc\x05\xd2\xdb\x7c\x2e\x1b\xa1\x79\xf2\x59\x6b\x10\x71\x28\x8d\x95\xcb\x74\x73\x39\x81\x6c\x8c\xe6\xd8\x19\xff\x55\x5e\x5b\x46\xbb\x16\x0b\xb0\x43\x5c\x7c\xc3\x04\xf1\xb2\x16\x1d\x18\x1c\x1f\x06\xf1\x0c\x85\x6b\x04\x90\xb4\x5e\x77\x10\x17\x04\xcc\x4d\x38\xa8\x81\x44\x30\xe9\x95\x58\xa9\xd2\x71\x0d\xe2\x16\x5a\x04\xf6\x0e\xd0\x79\xdf\xbd\x39\xe1\x2e\xa5\xd5\xd1\x55\xaf\xaa\x3a\x0a\xdd\x3d\xdc\x05\xfa\xe3\xeb\xd3\xb6\xc2\x54\x94\xbc\x5f\x52\x0e\xad\xdc\x03\x70\x54\x74\xf1\x9e\xd0\x6f\xa6\x49\x2e\x7f\x48\xfe\xc9\x94\xc9\x93\xda\x67\x00\x85\x60\xed\x3c\x6d\x05\xc1\x50\xb7\xd8\x7f\xbf\xbe\x58\x77\x93\x0c\x42\x96\x9a\xeb\xbd\x3f\x8e\x7b\x08\xcd\x0d\x5d\xe4\x91\x00\x31\x72\x1e\xa2\x53\x62\xf7\x13\xd8\x8c\x76\x8b\x7c\xf9\xc6\xda\x04\xb5\x47\x70\x05\x28\x8c\xde\xe6\xcb\xd5\x22\x92\x4f\xe1\xe1\x2a\x75\x6d\xd7\x71\x1d\x0d\x05\x1d\xb5\x78\x56\xab\x2a\x6b\xab\x7f\x61\xd2\x2f\xad\x09\x02\xc2\x54\xd8\x7b\xe1\x81\x84\x42\xef\x84\x6e\x19\xf4\xce\x32\x15\xfd\x63\xa7\x14\x29\x70\x95\xf9\x3c\x64\x54\x46\x52\x90\xab\xae\x33\x0e\x9f\x1d\xa2\x10\x1f\x9b\x2d\x74\x5e\xd9\x96\x8e\xbc\x90\xa7\x8e\xbc\xf6\x2f\xe5\x93\xdc\xf9\xa4\x02\xcb\xe2\x3b\xdf\xba\x5e\x3b\xc7\xa1\x67\xf1\x2a\xa8\xad\x19\xec\xab\x4d\x8e\x6b\x04\x54\xe0\x93\x05\x46\xae\x8b\x37\x60\xb3\x43\xd8\x04\xa7\x20\x9b\xcd\x1b\x65\x91\x97\xac\x5b\x60\x9a\xf0\x13\x05\x55\x1b\x30\x62\x82\x93\x49\x1e\x19\x3c\xa7\x87\x7c\x13\x95\x80\x0a\x5e\x7b\x33\xd5\x0c\xe0\x8a\xfc\x12\xda\x50\x3c\xc5\x1f\xfb\x52\x15\xa9\x06\x3c\xf9\x6b\x07\x28\x80\xb9\xa9\x37\xc5\x9f\x71\x64\x87\x56\xd4\x59\x0d\xc2\x35\xa4\xf3\x0b\xda\xa4\xaf\x01\x85\x76\xe3\xc3\x2b\xd2\xa2\x33\xee\xa2\x95\xa8\x97\x1f\xfe\x8c\x62\xb5\xa0\xf8\x65\x16\xfa\x9d\x95\x79\xac\x87\xaa\xca\x5a\xe3\xdb\xe5\x03\xe7\x85\xa6\x03\x7c\x89\xe8\x40\x87\xe2\xb6\x84\x89\x57\xc1\x8e\x3a\xf5\xaa\x3c\xdf\x92\x24\x3e\x2e\x39\xc5\xa9\xdd\x40\x20\x5a\x35\x54\x64\x11\xaf\x5a\x14\xb8\x48\x00\x16\xae\x96\x83\x2f\x50\x50\xa0\xc8\x43\x4e\x8f\x4f\x20\x9c\x8e\xef\x92\x6a\x74\x35\xa4\x8c\x15\x77\xf3\xe3\x7b\x37\x8e\x4b\x5a\x47\x39\x32\xa3\x1f\x1c\xa4\x74\xcb\x98\x41\xa4\x0d\x56\x5d\xae\x88\x1a\xb8\xaa\x57\xde\x22\x65\x0c\x7e\xd3\x8c\x8e\x38\xf8\xf5\x4f\x49\xc3\xa8\x5e\xc7\x88\xdb\xd8\xdc\xb1\x93\xab\x6a\x2c\x98\x75\x5b\x53\x85\x75\x65\xa4\xbb\x75\xd4\x49\xc0\xc5\xbe\xa3\x01\xf3\x15\x88\x24\x83\xaa\xcf\x11\xcd\xcc\xbf\xae\x93\x9a\x51\x01\xf0\xfb\xef\x3b\xa2\x6c\x30\x49\x43\x3c\xe8\x0f\x4f\xe7\x41\xa1\x0e\xab\x18\x90\x68\x3b\x2b\xce\x2e\x2e\x97\x09\x56\xfd\x9f\x14\xcb\xef\xf1\x89\x41\xec\xe8\x63\x92\xe8\x36\x65\x7a\x06\xb2\x7b\xcf\x73\x02\xc5\x4e\xdd\x3a\x2f\x37\xc6\x1e\x1d\xa7\xe5\x3d\x56\x4d\xbd\x9e\xb4\xa0\x39\x2c\x9b\x22\xa9\xd3\xe3\xd6\x89\x99\x9a\x26\x75\xdc\xaa\xda\xcb\x5a\xa4\x41\xac\x10\x39\x24\x80\xf7\xf9\x97\xd3\x89\x60\x5c\x83\x34\xc0\xbf\xa3\xaf\x70\xf7\x36\x19\x41\x02\xec\x60\xae\x11\x03\xe5\xfc\xdc\x64\x92\x47\x12\x96\x51\xfb\xbc\x26\x14\x22\x22\x81\x58\x11\x17\x98\x86\xa6\xb0\x31\x97\x28\x8a\xee\x1d\x98\xbd\x57\x1c\x60\x29\x1a\xbf\xe3\x6f\x69\x2b\xc9\x1e\xff\xbc\x22\xb9\xb9\xb7\x9f\xcd\x3e\x98\x75\x94\xaa\x74\x9c\xdd\x9c\x6d\x45\xbb\x10\xab\x52\xb1\x3d\xfe\xd2\xfc\x61\xca\xe1\x04\x3d\x0e\x5e\x4d\x4c\xec\x9f\x7d\xbd\xb6\xb6\xb6\x44\x28\xf2\x9e\x8e\x14\x3f\x31\x0d\xf4\x97\x66\xbe\xa8\x36\xf4\x2e\x62\x3e\x38\x9d\x18\x27\x3f\xe0\x83\xa3\xd9\xd4\x02\xb7\x85\xfc\x9e\x19\xda\x57\x45\xcc\x21\xa0\xdd\x5d\x8a\x36\xec\x1a\xac\xe6\xfd\x80\xfb\x36\x8c\xdb\x94\xbd\x6a\xbd\x94\xba\x3c\x25\xdf\x77\xa6\x55\xaf\x20\xb0\x8f\xb1\x27\x36\xf2\xb7\xcf\x54\xb5\x75\x2d\xcc\x3c\x2e\x82\x52\x68\xf5\xb4\x59\x8f\x8d\xb9\x4f\x3f\x00\x09\xfa\xef\xd5\x1c\x31\x09\x54\x20\xa2\xc6\x2a\xcc\x8e\x54\xdb\x60\xe6\x52\xc5\x5c\x23\xfa\xe3\xad\x92\x02\x4d\x5c\x10\xb9\x17\x42\xe1\x49\x40\x3d\x31\x61\x48\xa6\x78\xe5\xe7\xe6\x95\x0b\x87\x28\xa7\x12\xb8\x07\xc5\x52\xf4\x75\xcd\xd6\x8a\x21\x57\x64\xfa\x3d\x4c\x0e\x15\x4d\x46\xfd\xe4\xa4\xc5\x3f\xfb\x65\x7f\xdd\x82\x1f\xb9\x75\x42\x3d\x59\xe8\xfc\x71\x6e\xb3\x1d\x89\x60\xe1\xf0\x72\xee\x83\x75\x1a\x8f\xab\x8a\x88\x27\x9a\x8f\xdf\x3e\x72\xa5\x82\x29\xf0\x83\x22\xae\x54\x30\x28\x56\xc6\x2f\xfd\xbf\x3b\x75\x89\x05\xcc\x6a\x02\x51\xd0\x33\xf7\x9a\x3a\xf5\x27\x26\x30\x87\x45\xa5\x89\xd9\x87\xb7\x58\x8a\xde\x7b\x4a\x37\xb2\x85\x35\xed\x89\x33\x3a\x06\x8a\x7b\xcf\x0a\x10\xf3\x95\xbb\xb9\x69\x44\xfb\xe4\x62\x29\xba\x42\xe3\x7e\x5b\xb8\x1e\x06\xc2\x30\xbf\x2f\x77\x6c\x82\x68\x2c\xbd\x38\x8c\x42\xb8\x59\xdc\x9e\xd6\x0e\x2c\x54\x7d\x0c\x56\x4e\x96\x73\x63\x9b\xf8\x01\x65\x1c\x94\xfb\xc9\xd1\xe3\xe5\xec\x06\x21\xe6\xa0\xb8\x46\xf5\x4d\xbb\xd9\xc6\x2b\xbf\xf1\xfa\xec\x33\x04\x6e\xc7\xfc\x78\xae\x9a\x31\x54\xd9\xd9\x82\x57\x4d\x1c\xd3\x7f\x3e\x36\xdb\x4a\x56\x1d\x5a\x06\x25\xd4\xf3\xec\x4b\x27\x0e\x92\x2f\x51\x21\xd8\x11\xa6\x2d\xf9\x9f\x44\xca\x14\x36\x61\x93\x15\x4b\xd1\x37\xb7\x28\x53\x33\x02\xad\x6b\xee\x6b\xf3\x53\xac\x69\x77\xca\xd3\xca\x8d\x5e\x9f\xf9\x70\x75\xcc\xc0\x87\x8d\x68\xba\x22\xa6\x8d\x08\xe3\x0a\xe2\x00\xc2\xee\x1c\xae\xe4\x95\x44\xb6\x5e\x3c\x57\xcf\x9f\x54\x70\xc0\xb5\x1e\x87\x4f\x51\x87\xbc\xa0\xef\x80\x24\x62\x9f\x17\x15\xdb\x46\xe8\x14\x06\x6a\x93\x32\x58\x75\x08\x7e\xdc\xdb\x2d\x57\xaa\x73\x64\x3b\x40\xcb\x95\xdb\xf8\xe8\x7c\x95\xc4\x89\x57\xc4\x7f\xb1\x25\x12\xb2\x4a\x88\x39\x99\xe1\xce\x35\x07\xaf\xd1\xbf\xa0\xa7\xe3\xbb\xcf\x96\x75\x36\x20\xab\x53\xfe\xa0\x0b\xbc\xb9\xf1\xc2\xee\x11\x0a\xee\xc1\x69\x72\x3f\x32\x86\xf6\x6f\x95\x57\xbd\xe9\xc6\x16\x5a\x1f\x97\xe1\xd4\xc5\x16\x41\x20\xc2\xdc\x57\xf0\x37\x27\x75\x30\x63\xc4\xa2\x4d\x0c\x4c\xe3\x95\x4d\x8a\xbc\x21\x09\x48\x19\x79\x30\xa0\x68\x68\x9a\xfc\x16\xa3\xf1\xf9\xe7\x0b\xac\xca\xb1\xf4\xc3\xd4\x7a\x68\x53\x5e\x39\x27\xc4\x18\xa9\xb0\x3d\x84\x23\x76\xe2\x05\x9e\xa4\x6f\x03\x06\x38\x20\xe3\x57\x09\x38\xa8\x00\x43\x40\x72\xd9\xba\xb1\x55\x2b\x16\xf1\xf2\x10\x38\xc2\xb0\xdd\xdd\x2e\xb5\x18\x1a\xa9\x0d\xac\xf1\xe1\x7d\xa3\xd4\x40\x31\x6f\xde\xc4\xe4\x6e\xca\x62\xeb\x35\xa9\x78\x8d\x2c\xa5\x62\x2d\x4c\xdf\x77\xad\x22\x96\x46\x59\x62\xfe\x9d\xbd\xc0\xbd\x73\x87\xa8\x6f\x31\x7e\xfc\xc4\x52\xb1\x14\x5d\xa5\x19\xab\x40\xfb\xc4\x7d\x99\x17\x29\xc0\xe0\x6e\xe2\xd4\x33\x0c\xd5\x75\x23\xf5\x13\x01\x58\x85\xc4\x20\x2d\xbe\x10\x9f\x9e\xab\xfb\x98\x55\xab\x89\xcb\xf2\xef\x4f\xca\xf2\xd0\xa6\x02\xd7\x3a\xf7\xb0\x26\xbf\x0a\xaa\x68\x42\xc9\xf7\x7b\x5b\x78\xe1\x37\x17\x79\x96\x86\xc9\x2e\x5c\xdc\x26\xeb\xca\xb8\x12\xf5\xaa\x89\x56\xfc\x16\xa5\xaf\x66\xee\xd4\xb6\x1b\xdb\xe3\x8e\x32\xf7\xce\xc0\x81\xe2\x61\xa8\x0b\x91\xf3\x5f\x0d\xd0\xa8\x62\x0c\x30\x33\x44\x9a\xd1\x17\xa6\x3e\x29\x51\x20\x4e\x5c\xfe\xfd\xe3\xb3\xb2\xa6\x04\x71\x0f\x9b\x7a\x54\xbc\xf1\xff\x89\x86\x49\x61\x0c\x55\x25\xbc\xba\x23\xa5\x30\x02\xfb\x24\xfa\xef\x33\xb2\xdf\xb0\x81\x74\x6c\xbc\xad\xd1\xa4\xe2\x52\x51\xac\x58\xa2\xf6\x5b\xb2\x85\x61\xdd\x26\x0e\xa9\x9f\xd7\x05\x76\xcb\xea\xcc\xc2\xb1\x4a\x45\x13\xff\x35\xcd\xd3\xa6\x8b\xda\x9e\x2f\x56\x62\xb2\x01\xa5\xcf\x6b\xb7\x2f\x40\x16\x09\x5d\x9e\x54\x7a\x2b\xd9\x0a\x2d\x55\x7e\xd2\xd0\x0e\xb9\xdc\x83\xfa\xab\x30\xec\x0b\xd8\x49\xe1\x96\x53\xbc\xc4\x2f\x23\xb3\x56\x85\xf9\x1d\x9c\x83\x03\x47\x75\x49\x28\xe2\xc7\x11\x97\x1f\xcb\x4f\x6a\x28\x5a\x1b\x39\x0e\xb1\x50\x46\xc8\x2b\xf7\xa3\x5d\x4a\x13\xd7\x06\x3a\xb0\x1f\x9f\xad\x8c\x58\xec\x38\x75\xc0\x9b\xfd\x72\xbd\xbc\x48\xe5\xb0\x52\xc1\x02\xd5\x77\x87\xb2\x07\xea\xa1\x4e\x8d\x14\xeb\x28\xfe\x6f\x29\x7a\xfe\x75\x45\x78\x96\x04\xb0\x1b\x8b\x06\xbf\xdc\xa4\x5f\xc6\x55\xaa\x20\xb7\xfc\x60\x08\x0f\xbe\x15\x0c\x6b\xda\x6e\x0c\x30\xce\x52\x5f\xe1\xff\x3c\xca\x8b\xc5\x45\x36\x58\x80\x47\xb8\x45\x71\xb3\x14\x02\x42\xc1\xeb\xba\x6b\x44\xdc\x0b\x9f\xcf\xb4\xa9\xcf\xf8\xc1\xd2\xb4\xdf\x8d\x13\xa3\x3a\x9c\x1f\x7e\x96\x5f\xec\xbb\xbd\x50\x05\x8f\xb4\x4e\xd7\xad\x4e\xcd\x50\x18\x96\x42\x38\x1b\xdf\xa9\x76\x66\xd3\x60\x20\xb3\x6a\x0f\x7f\x7c\x3e\x4e\x99\x98\x55\xe7\xe6\xb5\xf1\x50\x78\x1f\xf2\xa0\x9b\x86\x09\x5a\xeb\x08\x59\xdd\xda\xd8\xe2\x12\x2c\xb7\x3f\x77\x7e\x88\xae\x70\x6a\x2f\xf5\xe5\x9f\x58\xa0\x61\xcd\x90\xef\xa3\x6a\xaa\xe5\xb9\xac\x4b\x3e\x76\x55\x4c\x59\x15\x8f\x4f\x79\xd9\xff\xf1\xa4\x90\xf1\x09\xeb\x71\x44\x06\x89\xd5\xe8\x97\xeb\x85\x41\x05\x46\x90\xb3\xbb\x8f\x68\xec\x6e\xaf\x41\x18\xf5\x52\x3a\xa9\x71\xf5\xcc\x4b\x44\x21\xe1\x38\xc5\x52\xf4\xeb\xad\x3a\x6e\xdb\x0f\x1c\x8e\x6b\x94\x31\x68\x9a\x26\x46\xeb\x60\x64\x25\x9c\x94\x0b\xdf\x14\x12\xc4\xd4\xe3\x1a\xcf\x7f\x39\x9e\xcd\xb9\xe0\xc2\xed\x10\x17\x99\x41\xe2\x31\x9b\x9f\x2c\x24\xba\x4d\x14\x20\x87\x56\x21\x05\x7d\x69\xd3\xf0\x74\x5b\xd8\x34\xbe\xf9\xef\xa7\x15\x21\x59\x9a\x4c\x40\x56\xf7\x6b\x55\x48\xc8\x4e\x25\x2e\x26\x4c\x07\x11\xae\xdf\x9b\x5f\xb2\x20\x1b\x0b\x82\x1e\xe4\xf6\x22\xdf\xc6\xaa\xb5\x50\x61\xf4\xa3\x23\xd4\xdc\xf1\xb1\xce\xb1\x13\xe5\x32\x2d\x7e\x97\x5f\x6c\xd6\x6e\x19\x75\x9c\x94\x71\x19\xfd\xf4\xdd\xa6\x20\x10\x9a\x35\x21\x34\xf5\xe9\x45\x0a\xf1\xdc\xe7\x0e\x75\xb9\xef\x9f\xd5\x2b\x20\xd2\x20\x60\x41\x28\x60\x81\x5f\x69\xd1\x07\x7f\x0d\xec\x85\xc9\x86\xf8\xab\xc7\xd2\x1d\x50\x2f\x1f\xbd\x4e\x5d\x2f\x9b\x6f\x97\x38\xca\x84\x3b\x77\xdd\xfb\xc2\x0c\xa4\x11\x7a\x66\x42\x09\xdc\xf1\xae\xbc\x98\x35\x46\x05\x2a\xf3\x95\xb2\x6e\xd3\x98\x0a\x9d\xf3\x51\xfa\xfd\x67\xf8\x6b\x05\x2c\xf4\x6a\x95\x10\xfa\xe9\xdc\x0a\xe9\x7d\x49\xbd\xb8\xfa\xb8\x7b\xe7\x55\x4d\x3d\x33\xf7\x47\xe2\x0c\x94\x03\xfd\xb2\x3d\x01\xf5\xb8\x1d\xe9\xb7\x9e\x6c\xf2\x86\xae\xa7\x36\xeb\x85\x8b\x2e\x90\x73\x8c\x04\xf8\xb8\x81\x7f\x9c\x12\xe7\xc0\xf3\xe1\xe6\x6d\xa7\x9a\x30\x48\x69\x31\xc7\xdb\x96\xeb\x07\x6a\x18\x51\x1a\x3a\x0e\xf6\x7d\xd8\xd7\x40\x15\x33\xe2\x61\xfd\x42\x80\x8a\x0a\x49\x64\xfd\x8c\x1f\xee\x6d\x66\xe1\x12\x0b\x9c\x00\x04\xac\xe5\xcf\xfd\xd3\xa1\x31\x43\xcb\xc5\x8c\xe4\xbd\x05\xd9\x2b\x13\x37\xa2\x66\x00\x4f\x26\x44\xa3\x5b\x37\x01\x66\x3c\xfe\xd1\x82\x05\x9d\xf7\x35\x3d\x03\xdf\xdf\x72\x43\xf7\x79\x11\x0a\xe7\x4d\x90\xeb\x66\x0e\x10\xe9\x80\x42\x8d\x31\xfa\xa9\xec\xf5\xc5\x2e\x66\xf1\x91\xe3\x36\x4d\xbf\x99\xcf\x03\xe8\x9d\xd8\xc3\x8d\x74\x7a\x74\x6c\x6f\x76\xe3\x51\xf1\xcb\xe7\x79\xaf\xe8\x6b\xfb\x06\xa4\xe9\xb6\xab\x58\xba\x40\xa8\x23\xe0\x46\x53\xa1\x9c\x3f\xb0\xe1\x6a\xe5\xa8\x22\x97\x34\xfd\x06\x9b\x7e\x69\xfa\x1b\x37\x81\xd8\xee\xa1\x77\x9a\xd6\x67\x2c\xac\x27\x86\x67\xc6\x67\x26\xa8\x94\x1b\xbf\xd6\x54\x9c\xef\x79\xf4\x2a\x29\xa3\x82\xbb\x9b\xae\xd4\xd7\x5a\x34\x18\x99\xcb\x5b\x24\xa1\x30\xd6\x67\xf4\x6b\x4f\x8b\xd3\x30\xe3\x57\xf1\x95\x43\x5a\xa1\x88\xea\x28\xe1\xdb\x25\x3a\xe1\xda\x3e\xdb\x46\xa2\x40\xc8\x5d\xa1\x50\x7d\xaa\x4e\x88\x39\xe1\x6a\xcc\xda\x11\x2a\xc6\x5f\x71\xcf\xe0\x43\x2d\x63\x6c\xa0\x2b\x26\xb2\x86\xbe\x74\xce\xfd\xe0\x05\xb9\xd8\x82\x29\x67\xae\xfb\x51\x1e\xf6\xe3\x87\xb1\x58\x8a\x3a\x56\xc9\xe7\x09\x55\x69\xb1\x14\x8d\xb8\x40\xb1\xf3\x43\x9e\x85\x12\x26\xc3\x26\xe9\x46\xba\x2c\xfe\x87\xeb\x2a\x19\x9a\x36\x62\x61\xfc\xb1\x02\xc6\x0f\x10\xcf\xfe\xd0\x5d\xc7\x5f\xff\xef\x46\x2a\xab\xca\x80\xd6\xeb\x3c\x06\x16\xfc\xe3\xda\x70\xcb\x41\x1e\x4f\xca\xb9\xad\x8e\x4a\x30\x75\xb8\x38\x54\x61\x69\xeb\x15\xca\xbb\x56\x3d\xd5\x20\xb4\xb5\x45\xd1\xa5\xed\x86\xbc\xd6\x97\xdb\xb4\x26\xed\x82\x2a\xa8\xd9\x90\x7b\xc3\xf0\x16\xad\x33\x4c\xa8\x7f\xf9\x1f\x6d\xd6\xc3\x2f\x28\xcb\x8b\x3e\x7f\x72\x43\x8f\x30\x9e\xc9\x61\x57\x89\xc7\xb1\xb7\x57\x13\xd6\xb3\x69\xe8\x23\xcf\x12\xfb\xce\x3b\x8e\xb5\x48\x4d\x28\x2f\x2b\x24\xde\xca\x27\x1f\xdd\xf1\x0d\xb9\x66\xb1\x48\xf7\xd8\x25\xc8\xf3\x60\xa5\xdd\x67\xfc\x79\x8d\x00\xd0\x3a\x44\x98\x17\x8c\x2b\xe8\x0f\x76\xdd\xa1\x3d\xc2\xe9\xbc\x50\xb9\x40\x5e\x9b\x29\x53\xda\xda\xa7\xc5\xff\xb8\x5c\x8e\xbc\xb1\x1f\x2a\xe3\xac\xcf\x9c\x91\xe2\x25\x40\x67\x4f\xe7\xfb\x85\x5b\x16\x34\x79\x46\x61\xc4\x40\xef\x52\xc8\xd5\xfe\xfd\x0e\x5d\xea\xdc\xf3\x43\x57\x38\xb4\xe5\xff\xf2\xaa\x3e\xc8\x29\xc7\x95\x1e\x87\xaa\x15\xee\xd9\xaf\x41\x64\xb1\x70\xb5\xcb\xbf\x3e\x33\x23\xb8\xc1\x07\xe5\xa3\xb3\xbf\xdd\xd1\x9e\x88\xa8\x7c\x75\xad\x56\x4f\x52\x93\x24\xe3\x16\xbd\x11\x7e\xf5\x69\x69\x0a\x0c\x51\xb0\x30\x74\x8d\xb2\x62\x46\x5e\xb5\x17\x81\xc6\xd0\xd0\x5b\xc5\x22\x0b\xf9\x26\x75\x14\x20\x53\xfe\xd3\x8a\x02\x79\xe8\x39\xa1\x58\xd8\xbc\x32\x7b\xac\x9e\x63\x80\x5b\x23\x9e\xd2\xd4\xb0\xa6\xf5\xac\x02\xd5\x55\xba\x5e\xe3\xb2\xe3\x97\x29\x53\x49\x1c\xd7\x19\x4f\x28\x32\x7b\x26\x02\x6f\xf0\xe8\xa2\x0d\xfc\x83\x59\xc4\xc7\x9e\x69\x23\x2f\x10\x2c\xfe\xfc\xd7\x6c\x7e\x78\xea\xf1\xd1\x74\x39\xb9\x32\xfa\x69\xa4\xc1\x1b\x7b\x50\x99\x36\xd4\x62\x28\xff\xe6\x00\x8e\xd6\x99\xc1\xb7\x93\x5f\xed\xe2\x2f\x43\x2b\x15\x12\x5f\x48\x5e\x72\x4e\xd0\x85\x61\x88\x5b\x4e\x9a\xdf\xa3\x8b\x25\xdc\x05\x55\x2a\x88\xb0\xe6\x0b\xdf\xb5\x42\x13\xf3\x66\x40\x82\xe7\xd6\xfc\x7b\x4f\x6b\x00\xa1\xde\x32\xd0\x65\x44\x4a\xfa\xf7\x53\xbc\x55\xbe\x9b\xb3\xd7\x55\xea\xfa\xc2\xb3\xaa\x1a\x5b\xb5\x99\x7b\x79\xd7\x6e\xfe\x6d\xe6\x52\x95\xd0\x3e\x64\x99\x48\x94\x88\x6b\xb1\xe7\xf7\xef\xe7\x6b\x24\x64\x0a\x61\x5c\x51\x5b\xdc\xbf\x3e\x9d\x6e\x04\xa1\x93\x54\xe5\xbe\xc2\x2c\xa3\xa9\xae\xcd\x87\x1e\xe2\x93\x9d\x4e\x41\xa6\x6d\x96\x59\x85\x89\x1c\xaf\x9b\xd4\x6a\xf4\xca\x93\xea\xa8\x88\xc1\x4d\x8d\xdf\xfc\x84\x62\x30\x8b\xca\x5e\xc6\xf0\x61\x7e\xc0\x63\x7b\x1d\x01\x2f\x31\xbf\xa4\x45\x87\x85\x7a\x28\xa0\xa9\xfc\x76\x7f\xed\xe9\xe9\xb6\x93\xe6\xe4\xe9\x85\x3a\x1d\xbb\x11\xf7\xfc\xbc\x71\xb8\x33\x6b\x92\xc0\xb8\x01\x7b\xfe\x23\x9a\x8e\x21\x62\xd5\x10\x95\x41\x5d\x10\xda\x81\xf5\x96\x7c\x44\x82\x90\xd5\x84\x74\xd3\xce\xc5\x97\x37\xeb\xd7\x71\x84\xd8\x6e\x65\xf7\x20\x52\x71\x7c\x05\xbe\x78\x54\xf7\xc2\xb5\x70\x11\xf7\x88\x8f\x97\xff\x66\xa4\xad\xfb\x3d\x0a\xa8\x61\x9e\x86\x1b\x1c\x0a\x54\xbc\x9d\xa6\x92\x49\x4d\x95\xc7\x35\x4b\x34\x30\x61\x5c\x94\x2b\x02\x78\xf9\x7f\x3f\xcd\x2b\xce\x3b\x1a\x98\xf5\x94\xa9\x05\xfb\x8c\xaf\x2f\xcd\xee\x8b\xeb\x24\x08\x5c\xe4\x4d\x82\x88\xa4\x67\x9d\xcf\xac\x6f\x52\x1e\x0b\x68\x86\xf9\x94\xff\x88\xa6\xa0\xe3\x60\xe4\x07\x13\xf1\x8a\x62\x29\xfa\xf9\x52\xd5\xae\xc5\xaa\x62\x6e\xa6\x37\xac\x21\xb7\xe5\x19\x2e\x70\xa0\xe8\xdd\x59\x3d\x10\x39\x2d\xef\x3c\xc2\xc8\xf0\xe0\x3e\xfa\xa2\x56\xf5\xda\xc8\x05\xbf\x36\x87\x63\x92\x73\x2f\x68\x40\x9b\xd0\x73\x50\x77\x25\x74\xf8\xec\x2f\xf7\x93\x61\x69\x4e\x71\x1c\x15\x84\xf7\x89\xd9\x3a\xea\x1f\x86\xbd\x3c\x67\xe4\x47\xcb\x43\xd5\xcd\x48\xc0\x31\x17\x6f\x0f\xcb\xc6\xcf\x32\x05\xfd\xb3\xe6\xfd\xfb\x37\xce\xa4\x4b\x7f\x2f\x28\x37\x55\x76\xad\x06\x7f\xe0\x3b\x17\x96\x66\x7f\xf4\x76\xd1\xcf\x19\x0f\x2c\xc8\x56\x50\x0e\x0d\x89\x4f\x90\x97\x22\x4b\xe3\x07\xf8\xc1\xa8\x49\x97\xa2\x9c\x16\x75\x0f\x1d\x90\x47\xd4\x09\x3d\xd3\x2e\x53\x98\x43\x5b\xf6\x35\xe9\xb7\x81\xc1\xcf\x79\xb0\x7e\xb3\x1f\xd5\xf1\x4a\xc8\x72\x88\x97\x50\x3e\x0e\xce\xd3\x65\x37\x91\x89\x6b\x18\xd7\xb9\xa8\x1a\x8c\xa3\x57\x4f\xd2\xe6\x9a\x88\x25\xaa\xa1\xdb\x4e\x49\x28\x07\xf2\x21\xfb\x09\x52\xc2\xe4\xd3\xba\xda\x41\x40\xe2\x67\xbb\xad\x58\x8a\xfa\xce\x69\x3d\x9b\xcd\xa5\x48\x45\x66\xcf\x7f\xa0\x61\x59\x51\x68\x91\x80\xa6\xe6\x51\xb5\x17\xb2\x47\xd6\x42\x3d\x3e\xa7\x7c\xf4\xe5\x7e\x6e\x37\xa9\x6f\xba\xc4\x97\x0b\xb8\xfc\xbd\x4b\x64\x25\x9a\x68\xf8\x6c\x6c\x7a\x4a\x40\xe3\xc3\x45\x9e\x80\x9e\x14\x3e\xbf\x4a\xa5\xdf\x93\x7a\x5d\xac\x4a\x7e\xa9\x39\x8b\x56\x19\x0d\xeb\x89\x38\xda\xa7\x3a\x05\xf5\xdb\x0b\x18\xf1\x7c\x40\x50\x1b\xd7\x8d\x94\xf1\xbb\x82\x4c\x50\xd3\xef\xcb\x7d\xb8\x63\x88\x08\x74\x6e\x1d\x31\xe2\x73\xd1\x83\xdc\x9e\x07\xe5\x13\x55\x8b\x7b\x89\x52\xd4\xef\x84\xa2\x3a\x10\xc6\x9f\x32\x0c\x6c\x20\xb4\x3c\xc9\xf3\x4a\x05\x0b\x86\xe4\xc2\x47\x14\x92\x20\xab\x86\x89\xe2\x0e\x79\x35\x7b\x3b\xcb\xc8\x12\xc8\xa9\xa7\x3b\xb5\x47\x87\x72\xee\x20\x20\xf0\x56\x2d\xfd\x5b\x76\xbf\x10\xcb\xdf\x9c\xad\xe8\x78\xa3\x3a\xff\x08\x7b\x9f\x94\x0e\xdb\x55\x7d\xdd\x10\x4d\xff\x40\xc1\x35\xc4\x1d\x6d\xb1\x14\x9d\x3d\xa7\x6b\x40\xd2\x50\x50\x43\x72\x83\xdf\x19\xa2\xd4\xe4\x2b\x88\x0b\x3a\x58\x9f\x1d\x9d\x6d\x53\x53\xd2\xea\x79\x1d\xb4\x46\x95\x15\x53\xd7\x20\xb4\xb8\x09\xc1\xc9\x83\x89\x2e\x92\x1f\x30\x9a\x10\xe0\x3f\xaa\xa9\x0d\x5a\xc0\x6b\x4b\xb0\x39\xa5\xbe\xc2\xc5\x03\x14\xda\x3f\x52\x5d\xa5\xfa\x0a\x73\x87\x28\x0e\xc1\xf1\x77\x2b\x53\x8b\x5b\xbf\x1b\xaf\xed\x68\x91\x10\xaf\xac\x37\xfb\x47\xe6\x49\x61\x84\x06\x48\x09\x7f\x4f\xcb\x91\xa6\x43\x43\x2b\x41\x7a\x2e\xdc\x32\x5c\x2f\xfc\x98\x29\xa6\x8d\xc6\x52\x8d\x8b\x52\x61\x58\x08\x92\xe7\x7f\xd1\x4f\x66\xc3\x32\x2d\xab\x18\x99\x47\xe5\x89\xf3\x44\xca\x3d\x34\xe7\x5a\x2d\x12\x13\xc7\x09\x01\x46\xa4\x3c\x58\x17\x9d\xbd\x3c\xc3\x16\x27\x66\x32\x24\x19\x73\x48\x73\xdf\xa3\x2e\x16\x73\x80\xab\x5e\x50\xb4\xf6\x01\x72\xc8\x2f\xd1\xd0\x56\xb9\xe0\xea\x6a\x96\x7f\xf9\xd1\xcc\x34\x05\x59\x48\x11\xc3\x34\x6e\xd5\x18\x2a\xd8\xad\x13\x26\x25\x65\x27\x8d\x50\x07\xb0\x1d\x33\x8a\xa5\xe8\xaf\x07\x34\x19\x34\xe2\xdb\xd8\xab\x66\xaa\xd4\xdb\xed\x6c\xbc\xf2\xc2\x80\x11\xc9\xef\x30\x3e\xb9\xe4\xbc\x86\x72\x30\xaf\x7c\xf3\x1d\x5e\xe1\x7a\xe3\xe3\xff\xbb\xe6\x01\xa5\x7a\x43\x35\x07\x43\x4e\xff\xde\x76\xbe\xc7\x90\xda\x0b\x4f\x68\x0c\x70\x8b\xd4\x1d\xea\xa2\x54\x1e\x27\x3f\xf4\x91\x2c\x35\x36\x6e\xa1\x43\x13\x05\xc4\x3f\x2f\xb8\xc3\x1f\x38\x24\xf3\xeb\xe3\xf9\x01\x1e\x19\x5d\xab\xac\x3e\x3d\x62\x92\x3a\x1c\xc8\x6c\x0a\xf9\x4c\x45\xdb\x21\x20\xaf\x1a\xd6\x45\x2b\x65\x7c\x7d\x66\x13\xe4\x56\x18\xe5\xa7\x0e\x9c\xf9\xbf\x53\x6e\x33\xe8\xd5\x0b\x2f\xea\xdf\xef\xe4\xb3\xfc\xfb\xbc\x1e\x4b\x55\x7d\xca\x4f\xd4\x66\x62\x0d\xcc\x5c\x0a\x23\x65\x81\xd6\xfe\xfe\x4c\xc5\x9e\x0d\xb9\x42\xbc\xf9\xbd\xf9\x2d\x72\x6a\x9a\x55\x4e\xfb\x8b\xe2\xea\xa0\xb6\x3e\xdf\x1a\xd4\x6c\xd5\x14\x7a\x64\x79\x98\xf4\x8a\xb9\x9d\x9a\x5a\x22\x62\x18\x89\x69\x74\x5f\xfe\x92\x23\xf2\x31\xa7\xdd\x9e\xaf\xbe\xf2\xb6\x41\x22\x32\x70\x22\x77\x1c\xde\xa2\xe9\x69\x01\xe1\xbb\xcd\xea\x15\xff\xda\x22\x6d\xe3\xaa\x3a\x4c\xb1\x2f\x77\xd7\x53\xc3\x95\x5d\x34\xf5\xaa\x10\x34\xc5\xce\x7d\xff\x5c\xcd\x54\x8c\xc5\x07\xee\x5b\xbb\xe5\xa2\x33\x50\x31\x91\x5b\x45\xbb\x1f\xc4\x45\x97\x49\xeb\x71\x76\x8a\x5e\x39\x99\x86\x9f\xa9\x5c\xdb\xe7\x0f\x5b\x79\x21\xbb\x00\xc7\xd5\xad\x83\x3c\xab\x79\x51\x32\xf7\x25\x7e\x17\x17\xa2\x4a\x90\x11\x64\x9e\x74\x01\xbf\x02\x77\xa2\x72\xca\x16\xce\xdd\xd4\x22\x66\xf1\x36\x62\xc2\x96\x23\x3f\x73\xbd\x42\x51\xd6\x27\x6a\x51\x57\x67\xda\x08\x51\x86\x93\x8a\xe9\x32\xe7\x2a\xad\xb4\x6c\xe0\xb8\x14\x48\xce\xdc\x2f\x35\x68\x40\x99\xba\x65\x4e\x4d\x49\x98\x7d\x37\xdb\x12\x6e\xc3\x71\x6c\xd4\xa1\x55\x62\xf2\x79\x64\x7c\x3e\xcf\xac\x96\x76\xcd\x4e\x7a\xa5\xaf\x5c\xa7\x48\x16\x50\xea\xab\x2b\xa0\x4b\xf6\x6a\x2c\x22\xdf\x15\xe4\x0e\xf9\x3b\x8f\xbd\x2f\xa5\x0b\x7a\xd3\x57\x7d\x72\xb1\x2e\x66\xca\x12\xbd\x87\xfc\x62\x41\x1c\xe7\x7a\x9c\x10\xdd\xbf\x30\x9b\xe3\x12\x3b\x91\x83\x80\xf4\x29\xc7\x3a\xff\xb4\x8e\x17\x13\xb3\x88\x47\x94\xd0\xfe\xc0\x8e\x16\x15\x94\xe1\x63\x33\x14\xb8\xb3\x67\x4e\x37\x69\xc6\x00\x81\xf6\xe8\xab\xaa\x32\x4c\xdd\xa1\xbc\xa8\x9f\xbd\x86\x8f\x01\x66\xa1\x5a\xd8\x83\x1b\x72\xab\x1e\x8e\xd5\xd8\x4f\x01\x72\x14\xe3\x85\xbb\x0e\xe8\x50\x2c\x8f\xa3\xa3\x73\xc6\x2e\x29\x4e\x39\x15\xaa\xff\xbf\x7f\x21\xfb\x91\xa6\x4c\x06\x5a\x4e\xe4\xed\x4e\x6d\xb5\x26\x4f\x8e\x3f\x4b\xcb\x95\x92\x61\xda\xf4\x3c\x4d\xd0\x20\x73\x55\xf1\x8e\xd1\x0b\x4b\x15\x79\x12\x65\x22\x55\x58\x7b\x46\x81\xb3\x29\x96\x7d\x13\x3b\x06\x8b\x5a\xce\x27\x7e\x20\xc4\xcf\x73\xdf\x70\xb8\x2f\xf7\x02\xda\x40\x3d\x4d\xb0\xe2\x7b\x37\xf1\xbf\xf1\xe2\x67\x5f\x90\x3d\xa2\x70\xe5\xd5\x4d\x15\xa3\x67\xc1\x18\x51\x74\xc5\xc5\x55\x9a\x80\x40\x9c\x2e\x01\xc8\x74\xcd\xb9\x6b\xb5\x58\xe5\x38\xc4\xe3\x2e\x43\x72\x18\x7b\xf5\x28\x59\x26\x11\xaf\x2b\xe4\xb8\xa3\xfc\xb1\x05\x43\x95\xc5\x7e\x15\x89\x67\x2f\xb7\x75\x81\x32\xae\x36\x9b\x31\x48\xc6\xbb\x32\x47\x4c\x6d\x4f\xf8\x69\xfa\x7c\xa1\xf3\xb8\x9a\xfd\x5d\x97\x04\x81\x80\x7a\x16\x16\x0e\x11\x1f\xa5\x42\x99\x9b\x90\x9c\xfb\x3b\xd9\x9c\xe2\x51\xcf\xc7\x9e\xcf\x8d\x5a\x0a\x73\x9f\x1c\xa6\x30\xca\xb8\x3c\x2d\x24\x9b\x2f\xce\xd3\xe4\x12\x56\xc0\x29\x6e\x24\xbb\xac\x3e\xe3\xd3\x42\x08\x81\x21\x97\x51\x8b\x03\xdb\xf8\x82\x38\xff\xa7\xfd\xc2\x7d\xaa\x52\xf1\x39\x84\x3e\x62\x8f\x2b\xa4\x97\xb8\xf8\x23\x26\xef\x5f\xf2\x6f\x2f\x50\xc6\xc2\x04\xf4\x80\x4a\x7d\xb9\xcf\x2f\x6b\x9a\xc6\xfa\xa1\xa3\x96\x41\xb7\xec\x91\x57\x5f\x19\x9a\x5e\x20\x3b\xb8\x80\x91\x0a\xf5\x40\x5b\xfd\x1b\x7b\x94\x3a\x46\x95\x33\x1b\x73\x54\x20\xfb\x17\xdd\xbe\xb0\xe9\x5a\xdf\x6b\x68\x46\xdc\x0c\x79\x7e\xdd\x41\x9e\x28\x94\x0b\xf7\x08\xf1\xa5\x4e\x54\xa7\xaa\xad\xf5\xe2\xe9\x32\x02\x04\x36\x70\x44\x3d\x71\x0a\x8e\x2c\xe5\x77\x69\x01\xaa\xaa\x46\x21\x3f\xeb\xcc\x9e\x45\x47\x52\x1d\xbf\xa6\x49\x71\x06\x98\x01\x12\x98\x4f\x6f\x46\x05\xd9\xe7\xb7\x2c\x84\x9c\x0b\x4b\xda\x95\x02\xb3\x87\x13\x2b\xde\xde\x3b\x40\x44\x25\xb0\x54\xec\xcb\x5d\x7b\x48\x6c\xc0\x7b\x58\xe2\x4e\xde\x67\xe4\x26\x67\x67\xad\x65\xec\x54\xc1\xd8\xac\x59\x34\xa0\x70\xd7\x33\xfc\x05\x2c\x86\xba\xbd\xb8\xb2\x8c\x6f\xcd\x03\x3b\x07\x25\xd9\x31\xf1\xd5\x88\x2a\xba\x2c\x35\x22\x5e\x8f\x42\xf9\x34\x66\x2d\x95\x1d\xae\x4f\x9c\x06\x66\xdd\x08\xd8\x17\x85\xd6\xa5\xbc\x6a\x43\xdd\x48\x38\x4a\x2c\xb3\x65\x7e\x6e\x10\xb3\x46\x14\x62\x62\xe1\x9e\x13\xd7\x2a\x13\x28\x3f\x64\xe7\x53\x4b\x37\x0e\xad\x93\x9c\x2a\xb0\x3e\x8a\xb3\x9a\xde\xd3\x7f\x39\xd0\x54\x26\x88\x43\x7d\xdc\x20\x66\x1c\x23\x65\x11\x55\xdf\xa9\xb1\x9b\x49\x20\x3c\x4d\x6f\xbb\x45\x98\x7a\x84\xac\x46\x38\xff\x2b\xff\x77\x3b\xc6\x34\x57\xe9\x8d\x26\x1f\x9a\xfc\x82\xeb\x13\x49\x64\x12\x02\x71\xf6\xac\x56\x00\xf6\xe0\x1a\xf8\x85\x79\xe5\x90\x25\x90\xd0\xbf\x36\x74\xf3\x61\xc7\x15\x86\x3a\x2f\x4f\x18\xa6\x84\x2b\x99\x4c\x6e\xce\xb4\xdc\x38\x21\x0a\x06\xbb\xaf\xf1\xb2\x18\x93\xa0\xe9\x22\x1e\x7e\x2c\x7b\xf8\xa6\x4f\x16\xa2\x0f\xe5\xb9\x83\xa5\xf8\x4c\x55\x88\x36\xb6\x56\x54\x61\x4c\x70\x19\xcc\xfd\xd7\x1e\x6d\xfb\xa0\xc8\x98\x01\x06\xfe\xd7\x23\x47\x69\x5f\xda\x09\x7c\x92\x95\xe6\xcf\x7d\x6b\x9b\xde\x69\x7b\x82\x5f\x94\xdf\xb4\x55\x91\xe7\x65\xa8\xc2\x0f\xd0\xa7\x5e\xe2\x93\x55\x3b\x08\x60\xd7\xdf\xaa\xcd\xc8\x38\x5b\x0f\x5b\x09\x90\xfa\xd9\x49\x4d\xe4\x5a\x01\x13\xa0\xb3\x87\x28\xed\xb8\x83\x08\x7f\xd2\xac\x93\xad\x7a\x37\x09\x22\xeb\x62\x8f\xdc\xbe\x51\x59\x7e\xd8\x5c\x3b\xc0\xb8\x64\xb6\x82\x2f\x43\x8c\x8b\x8e\x7c\xad\xff\x15\x6a\xe3\x16\x47\xce\x7a\x5d\x34\x2f\xd7\x7f\xa0\x37\x2f\x3e\x60\xff\x52\x81\xd2\x8b\xc4\x9c\x2c\xf4\x6c\xe2\x59\x09\xbe\xec\xdb\x9b\x14\x15\x22\xa1\x2e\x0e\xa0\xef\xe9\x9d\xfa\xe4\x81\xe0\x46\x22\xb8\x13\x7d\xf1\x44\x76\x78\x87\x7c\x1f\xbb\x65\x61\x31\xa9\x92\x54\xb6\x3d\x9b\xc8\xdd\x7a\x16\xed\x2e\x96\xa2\x2d\x5b\x14\x18\x74\x2f\x36\x6d\xe5\xd6\x0d\x38\x23\x0f\x45\x2f\x66\x30\x86\x6b\x1f\x25\xc7\x6d\x26\xf6\x02\xd6\xd4\x2b\x45\x5f\x7c\x9c\xbf\xc7\x6c\x5c\x0f\x01\xf2\x3a\xeb\x55\x4d\x2e\x09\x53\x06\xc6\x7f\x1c\x31\x1e\x17\x99\xa7\x0e\x28\xb0\x5a\xca\xa5\xd7\x1e\x9a\xa4\xd8\x0a\x61\xe6\x11\xb8\x10\xbf\xe8\xaf\x61\x16\xb8\x7e\x99\xa0\xef\x3d\x71\xfd\x48\xed\x71\x8f\xb3\x96\x3a\xec\xcd\x7d\xfe\x81\x6c\xcd\xcc\xb0\x89\x80\x41\x24\x34\x2a\xfe\x41\x53\x8e\xf1\xc6\x73\x5b\xf4\xa8\xa8\x29\x9b\x94\xb9\xff\x06\x14\x6f\xb3\x85\xa9\x23\x0a\x02\x3e\x82\x2c\x45\xf7\x06\x9a\x8a\x4e\xe8\x3b\xc4\xe5\x5b\x15\xf1\x78\xff\x75\xb5\xea\xc9\x83\xaa\xbc\x81\xcb\x69\xe3\xc8\x32\x88\xf4\xa5\x5e\x14\xf1\xe3\x7a\xff\x46\x1d\xef\xe3\x89\x39\x9d\x5c\x94\x3f\xff\xc4\x60\x55\x26\xc7\x07\x8f\xd0\x41\x4b\x15\x96\x97\x32\xaa\x31\x7e\x59\x97\x37\xa0\xde\xe6\xc6\xf5\xe1\xec\x21\xaa\x02\x23\x31\x09\xf7\x01\xfa\xe3\x7e\x4d\x20\x98\x78\xb8\x4d\x24\xdd\x05\xcf\x2b\x82\xfe\x70\x13\x17\x2c\x11\x0c\x0f\x14\x24\x75\xc0\xb3\x0d\x59\x6c\xc5\x19\x5f\x6f\xa5\xfa\x36\x41\xe4\x72\xb0\x57\xec\x50\x37\x77\x53\x26\x64\xbd\x1b\x7b\x6d\xc2\x88\x47\x1b\x7e\xad\x27\xfb\xd5\x0b\x17\x2b\xc8\x25\x84\x8a\xb5\x2e\x3e\x8d\x5d\xa0\x11\xeb\x48\x10\x38\x69\x87\xbb\x74\x89\x44\xf8\x75\x4c\x01\x10\xc4\xda\xf9\x3a\x0d\x20\x64\xa6\x0d\xb0\x47\xf1\x7d\x47\xbc\xa3\xa8\x9c\xd6\x91\x89\x85\x35\xb7\xf1\xf7\xcf\x6b\x2a\x38\x60\x31\xca\x41\x08\xef\xed\x53\x40\xf1\xa1\x5f\x46\x02\xa6\xf8\x4f\x4f\x08\xf2\x53\xe8\x05\x54\xe5\xee\xe5\x3e\x3d\x40\x12\x26\xe2\x3c\x4e\x2b\xc5\x00\x0c\x5a\x60\x2e\xbb\x64\x0d\x2f\x5b\x28\x71\x80\xc0\x5e\x45\xf0\xcf\x17\xbc\x9e\x3d\xc7\x37\xb5\xcd\xe0\xac\xfe\xfc\x27\x95\x91\x1d\x2d\x63\xa6\xea\xa9\x7c\x65\x8b\x62\xa2\xe6\x15\x6f\x9c\x1c\x7f\xb2\x7f\x1f\x3b\x58\x34\x03\x26\xc0\x61\x03\xae\x53\xbb\x5d\x23\x2a\xd8\x18\xd5\x79\x3c\xfa\xd1\xfd\xb2\xab\xe4\x26\xa7\x7a\x06\x5d\x38\x6b\x88\x1a\x50\x85\xf1\x72\x6e\xef\xe8\xab\x7c\x1b\xd5\x71\xd1\x0b\xcf\x53\x62\x47\x17\x2b\x0e\x41\x16\x31\x03\x00\x75\x2b\xc0\xe5\xed\x1a\xc2\x21\x4c\x95\xb8\x2f\x19\x9b\x7d\xea\xbb\x51\x83\x27\x32\x61\x1e\xf7\xa5\x79\xc2\xe3\x0f\x7b\xd0\xd9\xc4\x4f\xf0\xcc\xb5\xf2\x18\x85\x76\xd1\x0e\x61\xc6\xfc\xa1\x99\x2d\x5a\x57\x36\x39\x09\x1d\x9f\x1d\x2e\x8f\x03\x5e\x11\x60\x4f\x48\xb7\xe4\xd6\x8f\xd4\x04\x7d\xe0\x79\xe4\x45\x9b\xa4\xf3\xfd\x66\xbb\x66\xed\x85\x1c\xd4\xc3\xa5\x95\x78\xb9\xb9\xb2\xa0\x02\x32\x58\x0d\x07\x60\x5d\x0e\x35\xda\x8a\xc3\x19\xc4\xf7\x82\x05\x9d\x13\x67\x35\x4d\x7e\xcd\x83\x8a\x66\x86\x70\x69\xff\xfd\x13\xd9\x42\x61\x6a\x12\x4b\xaf\x68\x48\x1b\x52\x93\x86\xcc\x6f\x9e\xd5\xac\x3e\x97\xad\x00\xb8\xc1\xb4\x06\xfc\x8d\x36\x37\xa1\xcc\x7c\x3f\xe1\x6b\x1a\x1f\x1c\x1a\xa2\xa2\x0c\x6d\x6e\xb6\x97\x3f\x76\x3a\xa5\x47\x09\xf1\xdf\xf5\xd9\xd3\x36\x65\x7a\x31\xa0\x45\x8e\x63\xfb\x57\xad\x9f\x44\xe6\xf2\x90\xf8\x80\xb5\x16\x1a\xbf\x4f\x1f\x50\x6c\x44\x59\x92\x75\x7e\xfb\x8c\x26\x56\xa0\xf0\x7a\x13\x74\x83\xa3\x49\xd1\x13\xaf\x81\x7c\xa9\xcf\xd1\xbe\x4b\x0e\xab\x81\xaf\x95\xfb\xf8\xd3\xda\xf4\x1e\xc8\x86\xbc\x23\xb8\x4b\x9b\x02\x3b\xd4\x0f\x84\x2e\xe7\xba\xb2\xb2\xdf\x22\x65\xcc\x41\x43\x7d\x46\xb5\x5f\xb6\xce\x35\x91\x6b\x61\xdf\x0f\xfd\x4c\x99\x65\x7c\x71\xd4\xd0\x34\x27\x63\x26\x74\x5d\x4b\x7d\xb9\x3f\xb7\xc9\xee\xaa\x47\x5d\x11\xb6\x3d\x78\x45\xd3\x24\x84\x72\x1f\xba\xdc\x23\x9a\xae\x3d\xa3\x65\x12\xc4\x47\x36\x51\x64\x5a\x70\x8b\xa4\xd5\x53\x56\x2c\x45\xc6\x6c\xa9\xe9\xde\x01\xe5\xf5\xb9\x82\x58\x27\x88\xc2\x07\xc8\x4d\xf9\xe1\x2f\x6b\x93\x7c\xec\xc5\x5f\x85\xbf\xea\xa2\x77\xb3\x97\xda\x13\x92\x05\xa2\xd0\xbb\xfe\xb8\x8c\x9b\x66\x5c\xe1\x70\x5b\xfc\xdc\x27\x56\x64\x03\xdd\x94\x9b\xa6\x75\xc0\x80\x63\xee\x3c\x5e\x88\xdc\x8e\x5c\x04\xd5\x4b\xa1\x47\x0b\x59\xc8\xc6\x48\x80\x28\x3e\xb1\x58\x52\x60\x93\x92\x40\xb9\xbe\x5f\x7a\x2a\x9b\x7c\x10\xf3\xa8\x63\x71\x6f\x7c\x8d\x51\xf4\x08\xaf\x5f\x7d\x13\xb9\xc5\x52\xf4\xa5\x5b\xd3\x03\x52\x9c\x06\xe3\xc4\x09\xbb\x94\x62\xdf\x77\x90\x27\x38\x47\xb9\x9f\xde\x9a\xfd\xfe\x80\x00\xc1\x8c\x6f\x40\xa3\x65\xef\x2a\x83\x28\x6a\x06\x09\x33\xe0\xd5\x01\xca\xf4\x35\x13\x50\x8c\xd9\x67\x84\x8f\x22\x6e\x60\x87\xf2\xf5\x62\xfc\x46\xc3\xd6\x68\x12\x99\x88\x35\x10\x4b\x15\x3b\x73\x7f\xe8\x15\x54\x59\xec\x08\x47\x12\x78\x26\xdf\xd8\x99\x2e\x24\xea\x44\xb7\x1a\x8e\x1e\x7b\x5f\xab\xf2\x18\xf2\x2c\x0b\x85\x55\x3b\xe0\xe4\xc4\x3e\xe3\xd1\xb3\x72\xc4\xd9\xdb\xa4\x88\x92\xfb\xce\x4e\xd9\xf7\xd5\xe2\xe6\xa8\xd6\x3c\x4f\xb2\x3b\x54\x6a\x46\x60\x87\x3e\x41\x7e\x7c\x9d\x7f\xae\x3d\xa7\xf1\x47\x27\xe5\xd4\xa5\xe3\xc1\x56\x7d\xbf\x49\x6b\x9a\x20\xe1\x37\x14\x67\x93\x4a\x08\x01\x77\xe3\x8c\x6c\x80\xa8\x30\x14\x5a\xa1\x83\xbd\x20\x11\x80\x8e\xd0\xaa\xab\x94\x76\x01\x8c\x32\x3d\xa5\xe5\xcd\xcf\x7d\x57\x61\x64\x9a\x94\x71\xc0\xc5\x8b\xbd\x29\xf0\xfa\x3c\xb2\x80\x8f\xcb\xf5\xac\xeb\x03\x46\x7d\xaf\x02\x51\xa4\x5e\xd0\xc4\x30\xca\x7f\xde\xe6\xd3\xd1\x39\xc4\xe3\x90\xa1\xbe\xdc\x97\x96\xca\x9e\x65\xbc\x80\xe8\xe5\xf7\x73\xd5\xed\xe2\x2c\x86\x82\x46\xd3\xd5\xfd\x07\x0d\x05\x8d\x98\x0b\x60\x14\x48\xea\xaf\x0d\xb9\x4c\x79\x3d\x1b\x1e\x28\xa4\x08\x67\x06\x7c\x9c\xb4\x70\x97\x06\xdd\x16\xc1\x05\xf3\x31\xee\xdb\xbb\x86\xab\x79\xaa\x73\x61\xe7\xd8\x89\x90\xc2\xe2\x1f\x1e\xde\x2c\x5f\xce\xee\x01\xfb\xc6\xfc\xb7\xb6\xeb\x01\xd8\x22\x26\x60\x6b\xe0\xf5\xf6\x5f\x90\x3e\x5f\x16\xe1\x83\xf4\xe7\x15\xa3\x66\x0f\xb0\xe1\x62\x9e\x75\x4e\x73\xbd\xa5\x0d\xcc\x18\x08\xbd\x8a\x9d\xe0\xe1\x2d\x5a\x42\xc0\xc8\x5a\x1e\x22\x16\x80\xb4\x30\xc4\x89\x95\x07\x55\x37\x2c\x30\x3e\xff\x76\x6b\x62\xfe\x27\x64\xfa\xa0\x93\x3b\x7b\xad\xd6\x92\xd9\x26\xa3\x95\x20\x1b\xb6\x0f\xac\x51\x40\x67\xa1\x1b\x97\xe8\x9b\x05\x2d\x2c\xb0\x19\xe1\xf7\xec\x0b\x9e\xba\xaf\x25\x15\x90\x42\xea\xcb\xfd\x7f\x6f\x6a\x9b\x6a\x70\x3a\xe7\x9f\x72\x47\x61\x88\x38\xc7\xcc\x23\xa0\xb6\x01\x35\x61\xeb\x10\x6d\xbe\x1e\xa4\x58\x94\x91\x43\xd2\x08\x3e\xa3\x03\xf8\x49\x9f\x51\xda\xf3\xb0\xee\xe3\xb8\xea\x8b\xda\x1e\x57\x08\x50\xc8\xab\x52\x5e\xe0\x9c\x5d\x39\x46\xa9\x15\x04\xde\xa7\xd1\x54\x30\xe4\xa6\xed\xd3\x10\x89\xb4\xdb\x8b\x4b\x59\x8e\xc6\xfe\xe7\x51\xd9\x5b\x0d\xfb\xd3\x44\x3e\x32\xfa\xfa\x62\xa5\x31\xa7\x21\xac\x76\xa6\xb6\x64\xaf\xb2\x4f\x5d\xd3\x46\x44\x83\xe6\xfe\x70\xbb\xac\x64\x6a\x1e\x31\x6b\xcd\xf8\xb8\xef\x2d\xcb\x56\x32\xed\x37\x4d\x9b\x34\x79\x72\x22\x45\x26\x40\xc9\x2f\xcc\xd2\x50\xcb\x3e\x43\xd8\xe1\x03\xa7\xb8\x2d\x7b\xff\x1d\xd5\x24\x86\x76\xc7\xd7\x75\x8c\x6e\x40\x07\x6d\xa0\xe0\x9e\x18\xab\x5a\x93\x35\x02\x83\x45\xa8\x6c\xdf\x9e\xb1\xb3\xdf\xcc\xa3\xdd\xe7\x01\xe3\xfc\x65\xb2\xce\x96\xa7\x66\x2d\x99\x03\xe7\xde\xbb\x50\x56\x3d\x84\x09\xbb\xce\xff\x9f\xae\xb7\x8f\xb7\xaa\xaa\xf3\xc7\x3d\x0f\x19\x19\x2a\x0f\x57\xbc\x22\x02\x12\x21\x09\xe7\x76\xb9\x02\x82\xa1\x29\xa0\x22\x22\x87\x90\x90\x90\xc8\x75\xf6\x5e\xe7\x9c\x75\xcf\xde\x7b\x1d\xd7\xde\xfb\x9c\x7b\x6e\x66\x44\x64\x8a\x0c\x2a\x43\x8c\x63\x64\x0c\x11\x91\x12\x5f\x33\x32\x72\xcc\x18\xe2\x4b\xe4\xf8\xe5\xeb\x98\x92\x11\x39\x44\x64\xc6\x18\x39\x66\x8c\x3f\x87\xbb\xe7\xf7\xda\xeb\xb3\xd6\x5e\x6b\xaf\xc3\xf7\x1f\x5f\x2f\x2f\xf7\x9e\xb3\x1f\xd6\xfa\xac\xcf\xc3\xfb\x21\xf3\x46\xa7\xa1\x5b\x4d\x98\x23\x9a\x1f\xf9\x50\xb3\xbf\xac\x60\x3f\x00\x87\xdf\xec\xbb\x13\x35\x1b\x22\xc4\xc5\x17\x72\x3b\xde\x4c\x36\x5e\x4f\xd7\x74\xae\x17\xb3\xc1\xd0\x9d\x97\xc1\x5f\x00\x4e\xad\x09\x10\x7b\x5c\xe2\x2b\x63\xe1\xfe\x44\x5b\xe3\xf7\xb3\x55\x67\xd6\xa7\xae\x8e\x36\xa6\xa3\x0d\xe3\x5e\x8f\x32\x17\xba\x1f\x3c\x79\x1a\xd2\x46\x30\x70\x71\x10\xaf\xfa\xe4\x48\x7b\xe9\x65\x05\xbf\x6d\x10\x5d\x97\xf1\xa9\x31\x46\xae\x13\x10\xab\x9a\x12\x73\xce\x8e\x78\xdf\x68\x09\xd0\x06\x4c\x62\xbe\x6c\xb2\xd1\x30\x76\x7d\x89\xa2\xfd\x85\xb0\xfa\xbc\x21\xf4\x03\xd6\x26\xb8\x32\x90\xbf\xe6\x4a\x65\x74\xe5\xd0\xb3\x28\xc9\xbc\xfa\x72\x82\x0c\x66\x3c\x19\x49\x4a\xe1\xc7\xfb\x35\x37\x74\x9e\xb2\x5d\xbc\xc3\xb4\x39\x6a\x79\x38\x19\x15\x67\x56\xf4\x40\x50\xa9\xa0\xb0\x02\xb1\x30\x34\xba\xda\xa8\x89\x5a\x60\x5b\x70\xdf\x4a\xb5\xc5\x71\x9f\x15\x82\x2c\x61\x6e\x7d\x7d\x88\xbe\xf3\xad\xb8\x18\xca\x37\x0e\x1b\x5e\x06\x71\xba\x22\xaa\x21\x6b\x3a\x24\x42\x5d\x57\x75\x4f\xe5\x08\xdd\xf5\xea\xa2\x45\x29\x35\xa3\x43\xf9\xb9\xe9\x55\xe8\xc5\x07\x54\x32\xac\x19\xd4\x4d\x3c\x4f\xd3\x52\xa4\x25\x1f\x26\xad\x7c\xae\xf6\xc1\x25\x1a\x89\x8e\x21\x02\x25\xcc\x89\x3d\xc3\xf5\xa4\x8e\x32\xa1\x74\xf5\x6f\x25\x75\x8b\x36\xf5\x70\xe0\xd7\xb8\xd4\xf7\xdc\x0e\x4d\x59\xa0\x54\x6a\x11\x1f\x4a\xdd\x07\xc0\x50\xbd\x70\x7b\x95\xd4\x5b\x5c\xef\xd2\x3c\xb3\xef\x5b\xab\xf7\x1a\x5b\x65\x44\xf8\x1a\x78\x76\x91\x49\x3d\xe3\x6d\x10\x39\x28\x99\x74\x93\x6a\xe4\xf2\xd1\x8f\x57\x62\x98\xab\x4b\xa9\x67\xb1\x69\x8d\x19\xb3\x11\x93\x6a\x40\x9d\xeb\x0c\x86\x2b\xf2\x03\xa5\x41\xd0\xff\xbe\xa8\x69\x81\x0e\x04\x23\xb0\xfc\x22\x95\xaf\xf4\x5c\xdd\x5d\x98\x32\x0d\xa5\x1c\x7a\xfe\x9c\xd7\x62\x18\x0d\xf9\xc8\x29\x57\x70\x4c\x14\x50\x03\xf9\x60\x9f\xca\xe9\xcf\xcd\xad\x06\xcc\x06\x3b\x40\xdc\x89\xfe\x72\x4c\x8e\x61\x1c\x57\x57\xc5\xe9\x5d\xa2\x09\x3f\x91\xb8\x0c\x88\x73\x87\xc7\x96\x6b\x8a\x8b\x71\x7c\xcf\x9d\x4a\x7e\x00\x62\x86\xd9\x4b\x66\x68\x2e\xec\x18\x24\x31\x32\xb8\xaa\x19\xe3\x20\xaf\xcc\xb0\xdd\xd2\x6a\x9d\x55\x1b\x55\xd2\xe8\xb7\xfc\x00\xbb\x28\x00\x24\xda\xbf\xef\x32\xf1\xf3\xae\x9b\x28\x59\xe7\xae\xdd\xad\xc9\xe2\x04\x28\x8c\xab\x5b\x5d\x95\xe5\x39\x53\xc3\x9e\x5b\x8a\xc8\x97\xbb\xa6\x6e\xa2\x0e\x1b\xc4\x52\x5e\x9f\x2b\xd6\x69\x3c\x73\x14\x67\x18\x50\x05\x6c\xba\x69\xac\x71\x49\x4e\xe8\x96\xc2\xb4\x56\x7f\xb8\xd5\xd0\x12\xc3\x16\x0a\x7d\xd0\x3b\x89\xae\x3b\xa1\x49\xcb\x01\x60\x35\xbb\x61\xc5\x05\xe2\x59\x7b\x71\x58\xe4\x3d\xcb\x03\xc3\xf4\x26\x0d\xaa\x71\xe2\xe9\xcd\x1d\xc3\xb4\x9e\xa4\x67\x01\x38\x6c\xe3\x39\xa3\xb4\x19\xa1\x4b\x03\xac\xb4\xa0\xf8\x0a\xf9\xf3\xf5\xda\xc8\x4f\x6a\x76\x45\xdb\x1f\x85\xe3\x6d\x0e\x45\x7e\xa0\x95\x26\xd1\x94\x19\x9a\x96\x32\x23\xfd\xd4\xe3\x40\xaf\x41\x6b\x85\x74\x1a\x76\xa8\x36\x53\xff\x53\x07\x34\x11\x1b\xd4\x41\x01\x58\xca\xfc\x68\xa4\x19\x79\x19\xd7\x9f\xe7\x65\x36\x31\xd0\x2a\x2c\xf4\xab\x52\xf4\x3a\xeb\xae\x4d\x3f\x5f\xdc\x57\x47\x71\x7c\x0e\x84\xd2\xde\x78\x9e\xa5\x8e\x32\x21\x94\x9c\x4a\x29\xbd\xee\x06\xf2\x0f\xaf\x56\x72\xee\x58\xa7\x73\x4c\x59\xd3\x99\x22\x13\x61\xd6\x00\x31\xf6\xf8\x91\x1f\x5e\xaf\x02\x58\x6f\x18\xe7\x72\x52\xcb\x2d\xf3\x8d\xa7\x2f\xf5\x74\x99\x2d\x64\xa5\x94\xc7\x73\x37\x2c\xbb\xfc\x2c\x05\x28\x35\x94\x2f\x9f\x79\x19\x9e\xd4\x22\x86\x2d\xe2\x01\x34\xfd\xdb\x17\x18\xb2\xd6\x55\xe2\xa1\x49\x8d\x92\x3c\x1b\xf6\x44\x63\xcc\xa7\x05\x4d\x27\xe1\xa8\x13\x87\xd7\xfc\x71\x38\xba\x6f\xe3\xaa\xf7\x6d\x27\xd5\xa9\x63\xc3\xf5\x99\x89\x27\xe7\xea\x73\x9e\x53\xa7\x2e\x77\x61\x4b\x14\x25\xee\xbf\x48\x9b\x73\x30\x54\x61\xa8\x5e\xe5\x0b\xf5\xd6\xbd\x6a\xc7\xf7\x4c\x2e\x14\xa3\x23\xef\x98\xe3\x1a\x4e\x36\x95\x8d\xbd\x9d\x8f\xa5\xc3\xa3\x4b\xe3\xa7\xcd\xe7\x53\x5b\x76\xa9\x04\xd6\x66\xe0\x22\x31\x90\x79\x6c\xc9\xa5\x67\xdb\xb5\xc2\xed\x3a\x7a\xd8\x9e\xdc\x16\x11\xa8\x27\x72\xeb\xb3\xc8\x25\xe5\xfe\xa1\x33\x65\x7b\x28\x69\x58\xf9\x4e\x43\x7d\xc0\x0f\x59\x03\x4b\xdb\xa0\xec\xf3\x81\x0a\xb3\x1c\xf2\x5f\x28\x46\xb7\xf4\x25\xb7\x6e\xe3\xb8\xa6\x9d\xd0\xa5\xf5\x0e\x66\x72\x09\xdb\x33\xa6\x6b\x6d\xc8\x7c\x00\x12\x46\xa7\xc7\x1a\x7d\x36\x62\xc5\xf9\x1b\xdc\xd6\x97\x16\xe9\x0a\x5f\xac\x82\x75\xcb\x98\x81\xcc\x2f\x87\xa4\x6c\x6e\xc0\xc5\x90\x24\x04\xb8\xf9\xaf\x03\xba\x89\xd7\xf4\x75\xc4\xb0\x17\xf8\x57\x70\xec\xe2\x9a\xe1\x5a\xae\x50\x47\x1e\x3f\x60\x23\x16\x9d\x15\x2e\x06\x92\xb7\xa7\x15\x13\xca\xa5\xaa\x54\x8e\xfe\xf6\x26\xd4\x2c\x73\x90\xaf\x17\xd0\x39\x6f\xa8\xde\x29\x16\x70\xc1\x79\xa6\x87\x61\xfc\x16\x2d\xb8\xd7\x0f\xaa\x3e\x05\x61\x6d\x6c\xc7\xec\x85\x67\xa4\xe9\x1a\xad\x30\xe4\xba\x71\x38\x29\x3f\xae\x36\x66\xc3\x41\x36\x69\x50\x3f\xa0\xb5\x42\x31\x1a\x67\x10\x3b\xa4\x2e\xa9\x88\xe2\xf8\x7e\x20\x9d\xcc\x43\xac\x8e\xd9\x15\xed\x22\x78\xb5\xec\x85\xfa\x19\xd2\x2a\x14\xa3\x85\x76\xba\xe3\x7a\x8d\x04\x6e\x2f\xda\x6e\x98\xb4\x10\xc7\xc1\x9e\x47\xc2\x44\x42\x3f\x77\xcb\x35\x49\x5f\x74\x46\x4f\xfc\x83\xf3\xdf\x48\x9e\x66\x0d\x6b\x8a\x1a\xd9\x85\xcf\xab\x5b\xea\xb9\x5a\x93\x07\x8b\x7e\x63\xa0\x98\xf9\xfa\x23\xd2\x01\x21\xbb\xf3\x05\x63\xe2\x5a\xc7\xe0\xbc\x43\x3d\x6e\xf3\xfe\x35\xc3\xa4\x5a\x64\x62\xc0\xe4\xcd\xe7\x35\x69\x7d\x2b\x0c\x68\xb9\x1c\xdf\xd9\xe7\xe6\xaa\xce\x35\x71\x53\x86\xfc\xb9\x2f\x19\x0d\x68\x52\x16\xc4\xfc\x9e\xf7\xb4\x2c\x0d\x79\x96\x00\xca\xd9\x6b\x93\xd7\x6b\xf9\xed\x5d\xa4\x8b\xd6\x43\x08\x24\x5e\x83\x3a\xe0\x91\xfd\xcc\x39\xa6\xf2\x3b\x63\x44\x0d\x0d\xd7\xe4\x0d\x12\x0a\x4f\x6f\x89\x8f\x05\xf8\x3f\x33\xf2\x68\xfa\x17\xa0\x31\xd9\x24\x36\xc8\xc9\x46\xdf\x3e\x39\x54\x07\xfe\x60\x60\xa9\xac\xd1\x46\x1c\x36\x69\xc4\x9b\x8e\xef\xfc\x41\xea\xe4\xa8\x55\xd5\xf2\xbf\xbe\x2b\xdd\x61\x0c\x68\x53\x4c\xa7\xcc\xc2\x61\xe4\x31\xa3\x1c\x41\x2e\x04\xbc\xa3\x86\xee\x96\x1b\xfa\xc4\x42\x8e\xbc\x8d\xef\x8e\x54\x53\x99\xb2\x43\xdb\xb5\x6f\xf2\x6b\x56\x28\x73\xf7\x2a\x91\x6a\x13\x5f\x98\xaf\x01\x77\xaa\x8c\x36\x81\x31\xf2\x1f\x2b\x55\x55\xed\x53\xaf\xc2\x67\x11\x06\x4a\xe7\xb4\xa0\xc2\x7b\xad\x66\x15\x43\xef\x2b\xf3\x8f\x1b\x75\xa1\xb3\xf8\xc7\xc0\x9f\x9b\x96\x15\x2a\x09\x14\xf5\xf1\xa1\xc9\x84\x4b\xb5\x90\xd5\x36\x42\xca\x7c\xf3\x19\x53\x31\xb5\xee\x10\x25\x69\x84\x9f\xb8\x40\x6e\x73\x9e\xaf\x14\x07\x32\x37\x6e\x4a\xf3\x86\xb8\x6e\x7a\x9d\xc2\x03\x32\x5a\x61\x9f\xef\xbb\x48\x1b\x35\xf1\x1e\x36\xc8\xd9\x65\x3f\x7f\xd7\xc8\x34\x14\x33\xbd\xe1\x9f\x9f\x77\xb9\x91\xf2\x87\x8e\xef\x53\xc3\x1f\x28\x1a\xa1\xe6\x06\x3e\x2a\x14\x23\x74\x7f\x1a\xcc\xcc\xf5\xf9\x44\x75\x3c\xe9\x9a\xb6\x53\x67\x78\xd7\x65\xc6\xad\x24\xb4\x65\x91\x04\xfd\x49\xf8\x5a\x06\x2c\xf4\x03\x0c\xe6\x6b\xd3\x0e\x43\x7e\x75\x83\x83\x88\x2e\xa9\x56\x7f\x25\x9d\x13\x55\x28\xab\xe0\xf4\x78\x2a\x6a\x6d\x33\x46\xeb\x88\x21\xc3\xe4\xfa\xae\x65\x6a\x97\xdb\x98\xe1\x4a\xa8\x7c\x8c\xfe\xf7\x1b\xe9\x45\xdb\x33\x53\x0c\x8d\xb3\x9b\x4e\xa9\xf7\xcc\xf5\xda\xbd\x14\x6a\x39\xb7\xa1\x47\x93\xc9\xf7\xfa\xe2\x34\x2f\x7e\x99\x5f\x03\x38\x77\xc1\xa3\x5e\x83\x50\x47\xc0\x11\x73\xb7\x4e\xd6\xb1\x67\x52\xe6\xf1\x82\x59\x97\x19\x9b\x2b\x64\x1e\x77\x99\x95\x04\x9f\x2b\xb7\x1b\x32\x63\x9e\xd4\xde\xfd\xc4\x3e\xd5\x4f\x9c\xac\x3f\x91\xae\x2b\x61\xc4\x31\x87\x30\x8b\xeb\xaf\xf3\x41\xdc\xff\x7d\x4a\x93\x39\x42\x4e\x0a\x0d\x9c\xbb\x6c\xae\x5a\x55\x65\xca\x5c\x59\xc0\x46\x77\x9c\xd0\xa0\xd9\x4d\x21\x1f\x5f\x1c\xc8\xe2\x46\xca\x7f\xd3\xdc\x60\xd9\x91\x1d\x5a\x71\x5b\xa8\x52\x47\xf8\x79\x5c\x3f\x7a\x82\x9e\x4e\x6a\x9c\xf6\xb6\x7d\x34\x79\x93\x01\x2d\x09\x89\xaf\xbc\x6b\xb3\xbf\xf4\xb4\x4a\x0d\x23\x5f\x5c\xd8\xc0\x13\xea\xad\x80\xc7\x06\x30\x09\x8f\x19\x44\x6c\x52\x02\x3f\x09\x81\x59\x9f\xde\x6d\xf2\x24\x59\x5c\x15\x49\x48\xd0\x93\x02\x18\x6d\x33\xa9\x8a\x3e\x90\xfd\xf1\x99\x94\x51\x46\x22\xaa\xfb\xcd\xa5\x49\xba\x64\x71\xc3\x86\xf1\x53\x13\x4e\xc9\x4c\xee\xea\x96\xd0\x54\x77\xbe\xd9\x26\xd7\x07\x52\x4c\xb2\x35\x75\xe1\x7a\x93\x7f\x5e\x21\xae\xc4\x06\xe4\x7a\xb6\x69\x6f\x8d\x04\xfd\x15\xcc\x90\xf0\xc6\xef\xd4\xd6\x2e\x35\x8d\xb5\x06\xf2\x8b\x05\xfe\x1d\xfc\xb1\x44\x03\xee\x77\xcf\xeb\xea\xdb\x1e\xe6\xed\xfa\xec\x3e\x6d\x2c\xe4\xa0\xa6\x1f\x92\x00\x08\x44\x5b\x3b\x93\xa0\x5c\xa5\x35\x99\x91\x8f\x39\x6a\xa0\x40\x43\x46\xeb\x58\x37\x6a\x38\x3c\x4a\xad\xdb\x2a\xd7\x08\xc0\x70\x01\xd9\x7f\x5d\x60\x06\x0f\x1b\xd7\xb1\xc7\x9d\xab\x61\xd2\x5c\x58\xf1\x31\xe3\x24\x11\xc4\x88\xb3\x31\x2b\x72\x5f\x28\x69\xc2\x55\xd5\x14\x18\x3c\x13\xed\x48\x5e\x4a\x19\x05\x29\xea\xfd\xb0\xd7\x34\x93\x37\x61\xee\x93\x39\xe7\xb8\x00\xa8\x86\x81\x43\xf8\xf5\x46\x27\x4e\x0a\x70\x8d\xee\xf2\xf6\x4a\xba\x68\x99\xc1\xc5\x73\xd2\x89\xde\x81\xaa\xe1\x30\xd5\x4a\x6c\x10\x73\xf7\x94\x4d\x11\x24\x46\x64\x43\xd1\xbc\xbd\x33\xfd\xea\xf6\xea\x88\x05\x1e\x48\x21\xf1\xdd\xfe\xd3\x73\x35\x8a\xb8\x6c\x4a\x5f\xd0\x66\x6f\x80\x5b\xd8\xab\xd1\xd4\xc0\x29\x1a\x37\x63\x84\x99\xaf\xd7\x84\x34\x18\x5e\xac\x86\xb3\x20\x24\x2f\xcd\x24\xa2\x4f\x3f\xab\xed\x3b\xec\xe3\x80\xa3\x3d\x32\x07\xf6\xa8\x25\x1a\x17\x8e\x2a\x7f\xce\x4f\x30\x38\x02\x94\x05\x3a\xeb\xd2\x5a\x91\x5e\x0c\x55\xe2\x38\x3a\x4a\x69\x20\xfb\x6a\xde\xe8\x40\x15\xae\xea\xee\x16\x13\x93\x65\x47\x21\x00\x2d\x41\x1e\xaa\xe9\x22\x72\x97\xed\x50\x72\x2c\x18\x09\x98\xe1\x5b\x8f\xa6\x4c\x5d\x7d\xe1\x78\x72\x6f\x5d\xd5\x39\x53\x78\xc3\xed\xb3\xb3\x2e\x52\xa5\x50\xca\x68\x63\xd9\x35\x1a\x2a\x8c\x11\x5c\xe6\x67\xf2\xb6\x73\x47\x68\x1a\x5a\x9a\x72\x70\x74\x7a\x93\x6e\x9d\x05\xd2\x79\x9c\x52\xff\xda\x42\x75\x2d\x77\x2b\x01\xdb\xab\x97\x41\x16\xb2\x24\x64\x71\xfa\x7f\xfc\x75\x8d\x9c\xe5\x61\x2e\xa8\x11\xdf\xf7\x39\x1b\x34\xd2\x67\x39\xc0\xcc\xa3\xc0\x57\xcc\xfd\x56\xe8\x2c\x95\xc2\x80\x37\xe3\xe3\x0f\x1d\xf4\xac\xa6\x0d\xd2\x5f\x28\x46\x63\x4f\x68\x29\x15\x0a\x02\x4a\x41\x49\x13\xf7\x6b\xb2\x1a\x55\xca\xfd\x49\xb2\x0f\x1d\x4e\x27\xc8\xd3\x0a\x00\xe4\xc9\xcc\x7a\x49\x5d\x5c\x03\x07\x98\x81\x9b\xe0\xa6\x97\x8d\x37\x8e\x1c\x9f\x94\x5b\xb2\xb9\x91\xd9\x79\xae\x86\xbd\xe1\xa1\x8c\x5f\xe4\x8f\xde\x4e\xbf\xe6\xbb\x43\x1a\x88\x8e\xd2\x37\xb7\x6b\x70\x7a\xb7\x8e\x11\xef\xfe\xe6\xbe\xf7\xe8\x25\xc6\x5f\x10\xab\xe6\xb4\x60\x5e\x3d\x77\x0f\xe4\x1a\x73\x5b\xbe\xae\xf4\x97\xef\x5a\x95\x4e\x04\x4a\x2d\xc1\x23\xca\xbe\x37\xfe\x02\xad\x8b\x17\xbf\xa3\xfc\x61\x61\x57\x8d\x58\xa1\xec\x84\x1c\xfc\xfa\xe2\x39\xc2\xa5\x80\x85\x75\x90\xa6\xf8\xb0\xa7\x39\xe8\xe9\xa2\xd1\x7f\x3f\x56\xc3\xe3\x78\xd5\xa4\x84\xc8\x3e\x7d\x02\x0c\x58\x6f\xf1\x6c\xd2\xa6\x59\x90\xdd\xec\x8c\xd5\xf7\x34\x07\x54\xd8\xd8\x8d\x4f\x51\x96\x78\x3a\xdc\xa2\x81\x83\x1c\x8c\xa0\xc1\x93\xfd\xb7\x77\x3b\xcd\xda\x49\xd6\x19\xd1\xbb\x6b\xd5\xca\xc5\x9e\xcb\xd7\x5b\x74\xf2\xbc\xf4\x43\xe7\xdd\x65\x91\x18\xdd\xbd\x5c\xc6\x3d\xab\x2a\xa6\xfd\x99\x7b\xc6\x26\xdb\xca\x27\x09\x6f\xe6\x67\x77\x9d\xb5\x13\x09\x54\xe3\x81\xfc\x8c\xc1\x5a\x75\xcf\xb5\x6e\x05\xc3\x8b\x2f\xf9\xdc\x5d\x75\xa3\x01\x84\x2d\x5a\x89\x73\x4f\xd0\x5e\xe4\x75\x6e\x74\x17\x6c\x8b\x06\xe2\x4a\xd5\xf4\x58\xb2\xa0\x9b\x2c\x4e\x5f\x8f\x1a\xa2\xc4\xc0\xd2\x11\x73\xb3\x07\xba\x35\x63\xe1\x38\x23\xf2\x90\x54\xbb\xfd\xba\x21\x4d\x08\xb8\x2f\xe8\x1d\x3f\x66\x10\x8b\x19\xf1\x93\xd9\x56\x3e\x3b\x43\x9f\x06\x8a\x3e\x7d\xf7\x4d\x97\x68\xa9\x22\x72\x5a\x29\x5e\xd2\xd3\xca\x8f\xd7\x26\x1a\x69\x3f\x5f\x3e\x91\x4e\x7f\x41\x22\x9c\xc6\xe5\x41\x02\x8a\xc8\x3f\xf4\xba\xd1\x46\xa3\xae\x50\xf3\x84\xe1\xe5\x8d\x4e\xfa\x6a\x41\x93\x4c\x94\x98\xff\x38\xd7\x68\x06\x51\x17\x53\x4f\x78\x62\x66\x1e\x30\xc4\x82\x85\xf9\x1a\x4f\xe3\xc7\x1c\x13\x42\x13\x80\xaf\xcf\xb1\x43\x83\x65\x86\xc4\x9f\x60\xe6\x1a\x66\xe2\x59\x91\x03\x6c\x6f\x58\x45\x63\x0e\xe9\x27\x94\xcb\x8f\xcf\xdc\xce\x23\x23\x95\x34\x7f\xfb\x34\x74\xb2\x91\x0e\xf9\x55\xd0\x3a\x85\x4f\x7c\x75\x96\x64\xaf\x11\xc7\x06\x6d\x89\xfc\xcc\x0b\xda\x1b\x53\x81\x80\x48\xb0\x73\x3b\xb4\xb3\x89\xeb\x7f\xf3\x7d\x5b\x5f\x65\xba\x84\x56\x04\x50\x2a\x3f\x78\x6b\xfa\xe3\xae\xee\x99\xdc\xdd\xdd\x2d\x96\xd3\xe1\xd3\x1a\xfa\x88\x27\x68\x43\x0d\x90\x94\xd6\xc2\x11\x67\x6e\x7c\xfa\xac\x7d\x6d\xa8\x7c\x0a\x75\x07\x0b\x66\x6e\x6e\x53\x5e\x13\xb7\xb5\x21\x14\x7e\xf7\x34\x3c\x64\x87\xd4\xc0\x24\x60\xdc\x9a\x36\x0c\x9b\x4d\xac\x40\xe8\x8b\x87\x86\x1f\x4d\x89\x3a\x41\x1a\x5c\x92\x8b\x34\x89\xf0\x38\x8c\x78\x15\xde\x38\x8f\xc6\x67\xd5\x71\x5e\x76\x44\x69\x3d\x90\x29\xae\xd6\x38\xb2\x5c\x7a\x30\xfe\xe9\xd4\x27\x0c\x8d\x06\x87\x13\xda\xab\xa2\xc4\x57\x03\xcb\xad\xeb\x94\x4d\x01\x1f\x76\x2b\x90\xe1\x2f\xda\x85\x25\x39\x8b\x17\xb8\xc8\x6f\x74\xa6\x17\x13\xc7\xff\x38\x89\x1f\x5b\xbe\x36\xae\x43\x3e\x42\xb1\xf8\x45\x44\xad\xe6\x2f\x35\x0b\x2c\xab\x6a\xd3\xa6\x90\x80\xcb\xb2\x6c\xa7\x56\x1a\x7a\xa1\x67\x11\x40\x77\x15\x8a\xd1\xc4\x77\x95\x95\x77\x5c\x45\x44\x53\x0c\x5d\x0c\xab\x8a\x1c\x07\x7b\x89\x74\x5a\xee\xe9\x1d\xd0\x75\xbb\xbd\x4e\x99\xc8\x8d\xd2\x21\x7c\xc4\x2a\x73\x39\x72\x07\x44\x68\x40\x3e\x70\xae\xd1\x66\x43\x3e\x10\x77\xa4\x55\x58\x34\xea\x5c\x5d\xaa\x36\x55\x4b\x0c\x64\x2f\x18\x6c\x6a\xc2\x25\xe8\xaa\xf6\x24\x34\x77\xec\xfe\xb3\xa4\x57\x29\x0c\xc8\x2b\x9e\xb9\x81\x13\xeb\xd8\xc9\x85\x62\xf4\x9d\xc9\x2a\x81\x71\xaf\xd0\x94\x90\xb2\x3f\x19\x69\x7a\xb1\x40\x38\x82\x14\x7e\xfb\xfd\x06\x6e\xc6\x75\x89\x17\x5f\x23\x1f\x83\xe4\xfd\xbd\xc2\xb4\x0a\x7b\xba\x9c\xec\x5c\xcd\x01\x09\xf7\x59\xb8\x2e\x2a\xb7\x68\xe9\x0c\xc3\x51\xbb\x8a\x02\x40\x0d\x44\x8f\x6a\xba\xb5\x3c\x37\xd4\x34\x86\x0d\x4f\x40\x17\x95\x09\x92\x80\x8e\x1f\x75\x18\x3d\x5c\xce\x02\x94\x7c\xf2\x40\x9d\x59\x01\x43\x89\xe7\xa9\x80\xbb\x5e\x3b\xda\x00\x83\xa3\x4a\xc2\x31\x35\x64\x2c\xdf\x6f\xf3\x99\xf5\x2a\xbc\x59\x19\x8d\x7d\xc6\xf4\x9e\xac\x10\x79\xc6\x8b\x11\xe0\xf7\x17\xa9\xe8\xe9\x86\x4e\x40\x0a\xc5\x68\x86\x61\xb0\x54\x0b\xad\xaa\x8b\xe2\xc5\xa5\xca\x9e\x5d\x65\x93\xc0\x28\x0d\xa8\x9f\xca\x9a\x92\x84\x01\x48\x97\x0b\x62\xc8\xd8\xb1\x1d\xc6\x23\x83\x03\x26\x3b\x6e\x57\x3a\xc8\x55\x11\xb3\xf9\xd4\x1e\xba\x57\xf2\x9b\x47\xae\xbb\x40\xab\xd7\xe3\x6f\x3c\xb5\x67\xb8\xc6\xf8\x2f\xb8\xd4\xe3\x6a\x19\xb9\xeb\xc7\x29\xd9\x76\xaa\x9c\x87\xa3\x75\x4f\xab\xfc\xc7\xa5\x1e\x0e\xda\xfd\x07\xa3\x9f\xbf\x76\xb1\x59\x55\x08\x80\x7b\x74\xe6\x61\xcd\x7d\x93\x26\xfd\x82\xeb\xb5\x1c\x20\xd0\x8b\x73\xcb\xd6\x3a\xe4\x08\x7e\xfb\x48\xa0\xf7\x7c\x7c\xd1\x71\xdc\xf5\xb2\x11\x67\x71\x50\xc5\xbe\x8d\x34\xeb\x81\x93\x7d\xe9\x75\xe1\x75\x91\xae\x6a\x17\x6c\xb8\xf4\xba\xf8\xc1\xeb\xe3\xf5\x73\x51\x84\xb3\x76\x5a\x67\xf6\x2f\x0b\x47\xff\x3f\xf7\xbb\x98\x06\x8e\x30\x5a\xe2\xbd\xc8\x0b\x11\x6b\x09\xf9\xba\x29\x47\xdb\x33\x07\xe4\x29\x83\xf4\x55\x9a\x5d\x69\x50\x25\xa0\x13\xbf\xe6\x1a\x60\x3f\xce\xe9\xba\xb1\xad\xaf\x9a\xfd\x47\xa9\x19\x10\x20\x47\x6b\xe4\x45\x37\xde\x33\x56\x6b\x39\x83\x5c\x42\xdb\x1f\xb7\x5e\xbf\x38\x45\x53\xa5\x5e\xdd\x41\x16\x34\x08\x17\xbf\x23\x68\xec\xa4\x81\x98\x56\x45\x66\xa7\x2d\x30\xf5\xc3\xe2\x22\x40\xdc\xe0\xc9\x65\xe9\xfc\xa9\xd6\x8b\x1d\x1b\x21\x3f\x25\xa1\x1c\x1d\xbf\x54\xaf\xb7\x18\x34\xc6\x94\xd8\xdd\xfd\x0b\xcd\x76\x2e\xef\x2a\x09\xd5\xa2\xdc\xe7\x9f\xd2\xc2\x20\x5f\xc1\xdc\x72\xa6\x38\x90\x9d\xa8\xd7\x52\x82\x80\xc9\xe9\x97\x9e\x36\x62\x63\x24\xe0\x6d\xbe\x03\x82\x89\x2b\x25\xf0\x05\xf6\xe8\xc1\xa7\x35\x1c\x1e\xf1\x48\xfc\xab\xfb\xfb\x0c\xbe\x08\xf8\x53\x89\x03\xed\x5b\xb3\x04\xb6\x96\x94\xcb\x98\x61\xcf\x12\x8a\x33\x5f\x38\xae\x9b\x89\x86\xa5\xa0\xcc\x89\x30\x99\x8f\xcd\x33\x68\x03\x5d\x57\x5d\x2d\x5c\x16\xb7\x9f\x94\xca\x2b\x12\x55\x51\x28\x46\xcd\x2d\xaa\xc0\xbc\xaa\x00\xc9\x28\xe4\x06\x7f\xde\x2a\x1b\xbb\x88\x88\x1e\x59\x66\xf4\x04\x53\x82\x38\x4e\xc0\x50\x05\xcb\x04\x14\xf7\x6b\x8e\xdf\xc9\x71\x2a\xeb\x87\x6f\x08\xff\xe5\x3a\xf2\x85\x4c\xfe\xc2\x48\xf5\x1d\xdb\xe1\x72\xb9\x81\x92\x69\xa2\x0d\xba\x83\x42\x76\x65\xf4\x63\x5a\xff\x42\xa2\x22\x45\x20\x58\x5a\x95\x2d\x31\x61\xbf\xcb\xcd\x77\x8f\xc3\x05\x2c\x61\xb4\x5e\xe5\x3f\x99\xb4\x4f\xbd\x11\xc4\x78\x7a\x9f\x29\xed\xd5\xcc\x7e\x49\xa9\xc5\xe9\xc8\x6f\x97\x14\x5a\xb6\xe4\x36\xe3\xb5\xf2\xc0\xb2\x4b\x8d\xed\xc8\x7a\x69\x38\x49\x72\x25\x32\x77\x67\xd5\x81\xd5\x4b\xab\x5e\xc1\x41\xe5\x32\xf0\xcb\x32\x17\x3c\x97\x7e\xeb\x0d\x2c\x84\x99\xf9\x5f\x4e\xdd\x6c\xe0\x9d\x48\x02\x8f\xdd\xae\x91\x64\x05\x80\x5f\xbc\x9c\x9f\xdd\x64\x68\xd7\x52\xe0\x26\x24\x39\x7a\xee\xee\xa9\x30\x5e\x9f\x83\x1c\x52\xa6\xcc\x23\xba\x0e\x64\x34\xf2\x34\xa0\x28\x26\xb4\x6b\x9b\x6d\x33\x67\xcc\x9e\x8d\x24\x32\xf9\xf6\xeb\x0c\x8a\x34\xee\x43\xbe\x4a\x87\x07\xb2\x2f\x2e\x84\xd2\x82\x36\xf9\x94\xac\xd6\x97\xb8\x6d\xc6\x7b\x88\xb3\x07\xf6\xa4\x43\x1f\x72\x31\x23\x16\x92\x86\xe0\x8b\x6e\x8c\xbe\x34\xc3\xa0\x5e\x54\x90\x47\xf4\x7d\x9f\xa3\x83\x12\xb5\x82\x5e\x5e\x28\xad\xbf\xcf\x50\x5b\xa3\x96\xa4\x00\x64\xb6\x0e\x33\xfc\xe8\x88\xeb\x63\xa7\x0c\x22\xc1\x9f\x1b\x7d\xb9\x96\x43\x3a\xc4\xe2\xa3\x00\x13\x89\x55\xdf\x6a\x30\x7d\x18\xf5\x2a\x36\x27\x6d\xf1\x45\xf4\xcd\xcd\xc9\xca\x76\x59\x1b\x94\x21\x73\x79\xa4\x52\xbf\xa0\x15\x32\x3d\xbc\xfe\x53\x03\x9e\x50\xbc\x17\x3d\x91\x92\xaf\x99\x68\x3c\x64\x87\xa7\x6f\xc2\xf1\x34\xfd\xba\xfe\xfb\x71\x63\xd0\xe8\xd0\x90\xc5\x75\xba\x90\x29\xfd\xc3\x5e\x39\x01\x67\x3a\x37\xef\xed\xdd\x6a\x65\x85\x5e\x99\x78\xbc\xb4\xe7\xba\x05\xa7\x86\x24\x99\x9a\xe3\x08\xe4\xf1\xd3\x87\xdb\xac\x14\xea\x38\x20\x1c\x16\x21\x48\x2d\xff\x3a\x55\x23\x74\x63\x97\x14\x1c\x5c\x81\xa0\x59\xec\x51\x41\xb3\xa7\xbb\xbb\x87\x97\xd5\x6c\x5d\x4a\xd6\x08\x76\x3a\x7f\x97\x8d\x2d\x86\xd7\xb7\x2b\x34\x82\xa3\xb9\xb3\x0c\xfd\x32\xc6\x80\xb6\xcb\x27\xa6\x4f\xdd\x63\x3a\x3f\xfb\xa4\x22\xb4\x94\x20\xbe\xfe\xed\x90\xa9\xc9\xe7\xca\xa4\x2c\xb3\xe9\x80\x06\x37\xa1\x8e\x83\xea\x20\x76\xbf\xcf\x28\xa3\x89\x2f\x0b\xf0\xdc\xb1\xd7\xd2\x17\xca\x42\x0f\x3c\xa5\xa2\x3b\x46\xa5\xff\xe5\x8a\x46\xc2\x09\x9c\xb3\x53\x1d\xcc\xbd\x88\x04\xd0\xa8\xbf\x4e\xe8\x12\xdc\x8e\x59\xbb\xfc\xdd\xc7\x17\x0d\xd3\x6b\x5d\x19\x9f\xe7\x1b\xd0\x58\xd9\xd4\x15\x0f\xeb\xd3\xcf\x74\xa4\xe0\x55\x0d\x89\x0a\x42\x67\x8c\x59\x3c\x09\x42\xcd\x26\x25\xfa\xf6\x7c\x95\x25\x93\xf6\x05\xf7\xbb\x35\x10\x56\x59\xe8\x03\xe0\x2d\xd3\xd4\x68\x46\x25\x30\x78\x8d\xb7\xf1\xea\x97\x14\x26\xc3\x55\xd0\xb9\xe8\x94\x80\xb6\x87\x5c\xea\x14\xa0\xa3\x99\xf7\xc6\xab\x30\x5c\xa6\x8c\xfb\xc1\x64\x7e\xbf\xcb\x78\xf8\x14\xd9\x5d\x82\x70\xf8\x97\x97\xdb\x3c\xde\x31\xe2\x15\x4e\x82\x86\x7b\xd0\x24\x13\xf2\xfe\x01\x6f\x24\x1e\x3b\x60\x2a\xb2\xb1\x5a\x82\xc3\xba\x75\xb3\x29\x71\x6b\x21\x5b\x4a\xfb\xe7\x86\x95\xdb\x64\x53\x3d\x62\xc9\xb1\xce\x7b\x8b\x8d\xd2\x0c\x95\x83\x74\xe7\x7b\xd7\x2c\xd1\x27\x8c\x77\x69\x3b\x90\xe4\xfd\xf4\x12\x6f\x61\xc4\x3c\x5e\x5c\xf0\xbd\x71\xff\xba\x74\x99\x00\x68\x71\x92\xc2\x55\xad\x5a\xa2\x61\x9e\xeb\x21\x03\x9c\x6f\xfc\x46\x26\x1e\x34\xab\x42\x47\xd0\xa1\xe0\xd6\xae\x7c\x3c\xbd\x6c\x7b\x71\x53\xa6\x26\xef\x77\xeb\xbb\x3b\x08\x1c\x2c\x64\xef\x32\xf3\xcc\xe9\x5b\xc8\xca\xc8\x92\x39\x56\xf6\xf1\x59\x5a\x53\xdb\xf3\x68\x98\x60\x2e\x86\x4d\xd0\x68\xa1\x36\x72\x79\x14\xf9\xb5\x54\xdb\x73\x28\x77\x49\xcd\x8e\x7f\x2a\x3d\xfa\xc6\xbe\x15\x6f\x7b\x96\x1a\x7d\xe7\xbc\x45\x62\x6c\x4a\xfb\xb4\x1e\xdc\xf2\x17\x2f\xd6\xa4\x21\x02\xcc\x1a\x04\xc3\xa4\x2f\x9a\xb4\x56\x61\x97\x88\xe7\x13\x1b\x33\x28\x09\xe1\xda\xde\xb8\xce\x24\x9c\xe0\xf8\x6f\xe3\xe7\x1c\x5f\xe5\x8e\x97\x53\xd8\x34\x56\x11\xbe\x3a\x9f\x1c\x22\xe4\x31\xc0\x7d\x13\x7e\xf8\xf1\xd5\x8a\xc0\xdc\x8c\xd3\xf0\x37\x5e\x52\x3d\xc3\x50\x53\xf9\xcf\xce\x5b\x0f\x5b\xab\x8a\x5c\x97\x03\x27\x3f\x75\xcf\xe5\x46\xdd\xc6\x2c\xec\xa4\x01\x7a\xd1\xda\x91\xa2\x05\x85\x3c\x9b\xd8\xc2\x82\x32\xe3\xdd\x04\xfa\x68\xc8\xaf\x15\x8a\xd1\x7f\x5d\x73\x89\x46\xf4\x72\x28\xc3\xbe\x6e\xa9\x75\x00\x32\xf4\x3b\x60\xb4\xac\xfe\xe1\xb2\x05\x23\x52\xf5\x8c\x48\xeb\x39\xa6\xee\x5e\xe3\x09\x55\xa9\xa7\xc9\xb5\xfc\x8b\xb9\x2a\xa8\x45\x70\x20\xa1\x6a\xb9\x77\x86\x99\x80\x54\x3f\x40\xbe\x01\x3c\xfc\xcc\x21\xb5\x40\x18\xe1\xc3\xe0\xe8\xdb\x25\xcd\x01\x2b\x64\x52\x4c\x21\xb3\x3a\xab\xe9\xea\x2a\xaa\x26\xcf\x1c\x77\x3f\x6f\x70\x60\x89\x43\x02\xe4\x05\x09\x0b\xf0\x93\x47\x3a\x8d\x5f\x00\x55\x85\xf8\x0b\xbf\x79\x9f\xe8\x8d\x0a\x01\xce\xec\x57\x35\x13\xa8\x80\x30\xae\xad\xca\x7b\xb9\x4b\x2e\x6c\x5f\x0f\x83\x53\xf8\x76\x6e\x95\xf2\x3d\x73\xc8\xea\xd9\x71\x46\x50\x71\x5a\x93\x7a\x7b\xc1\x27\x2c\x30\x44\x01\x30\x62\x42\x6d\x3e\xfb\x97\xfd\xe9\xe7\x5a\xa5\x3e\x18\x48\x42\x6b\x61\xfe\x66\xf5\xc2\xca\x24\xe0\x23\x50\x58\xf0\x67\x2e\x48\x26\xbe\x5e\x28\xfd\x6f\x73\x5f\x3c\x96\xee\xfe\x85\x1e\x91\xa8\x92\x54\x69\x8e\x5f\xd1\x26\x5e\xfd\x98\x95\x10\xe9\x05\xa3\x92\x4f\x3c\x97\x8e\x48\x41\x15\x53\x86\x03\x62\x21\x87\xf3\xd9\xe2\xdf\xa9\x0f\x12\x48\x4f\x6e\xf7\xd7\x16\xf3\xf0\x3e\x33\x94\x23\x9f\xf7\x9d\xbc\x8a\x40\xb1\xe5\xfa\x4f\x1b\x16\x20\x5c\x9a\x27\x51\x8d\x14\x05\xc9\xb5\xab\x74\xf8\xb3\x83\x5c\x31\x8c\x38\x70\xee\xc5\x6d\x41\xd5\x07\xbd\xdb\xdc\xa1\xf5\x86\xcc\x65\x50\x75\xe2\xcb\xf7\xcf\x06\x93\xca\xbd\x6a\x92\x3d\xeb\xf5\xc4\x5e\xe0\x23\x5b\x74\xe5\x7d\x5e\x46\xc1\x56\x18\x2d\x00\x4b\xb2\xfd\x5f\x28\x46\x13\xaf\x57\x2c\x05\xa4\x51\x47\xf2\x0d\x43\xa2\xb5\x81\x19\x6f\x0a\x43\x57\xcc\xde\xd1\xa1\x91\x6f\xe0\xfc\xe0\x35\xc4\xd3\xc7\x8c\x91\x07\xf1\x04\xb4\xb4\x38\x90\xbd\xda\x49\x3a\xb7\x20\x61\x9d\xb4\x49\x4a\x1a\xc3\xa0\x19\xa7\x52\x2c\xfe\x96\xae\x7d\xaa\x7b\x5d\x09\x5b\x71\x1e\x7f\x62\xa7\xe9\x9d\xe2\xfb\x9c\x09\xc9\xd9\x1d\xb7\x0d\x83\x58\x73\xe3\xc2\xb9\xf1\x5e\xbc\x74\x79\x7a\xbf\x21\xdb\x8d\xf3\xcb\x00\x33\x31\xe0\xfd\xfc\x33\x46\x06\xd2\x02\xfe\x5d\x02\x8e\x78\xef\x51\x63\xf2\xc3\xa1\x04\x22\x9f\x7f\xf3\xba\xd1\x5a\xea\xca\x37\xb9\x99\xa3\x2c\x7b\xe2\x3c\x19\x12\x0b\xc5\xa8\x73\x5b\xda\x8e\xaa\xc4\x48\x40\xfc\x2a\x74\x78\xd2\x89\xfe\xc4\xf3\x34\xb6\x86\x26\x55\x99\xdd\x3b\x62\x64\x9a\x0a\x3f\x89\x9f\xb6\xf2\xcc\xcd\xed\x69\xd7\x22\x76\x91\x48\xd8\x13\x7d\xef\xc7\x74\x9d\xd5\xc0\xaa\x42\xa4\xfe\xd2\xde\xe1\x5a\xea\x13\x7a\xe0\xf6\x35\x90\xb9\x70\x9b\xd1\xb1\x8e\x8f\x72\xcf\x22\x89\xc9\xd0\x5b\xc7\x4c\x92\xf2\xd5\xdd\x40\x60\xbc\x31\x30\x35\xef\x30\x12\x5e\x36\xd9\xa5\x8f\x1a\xff\x16\x5a\x82\x5e\x10\x7d\xaa\xeb\x12\x19\xc2\x48\x9b\x0f\x74\x2e\x18\x67\x14\x6e\x65\xa8\xdb\x3c\x2f\xa9\xf9\x43\x21\x1b\x31\x9f\x6a\x42\x20\xd1\x27\x77\x5c\xe4\xa5\xf0\x0c\x55\x0a\xce\xdf\xb9\xa9\xcf\x0d\xd3\x72\x54\x24\x8d\x12\xb7\x5d\x79\xbe\x88\x60\x25\xa1\x47\xd1\xf5\xb4\x4e\x57\x64\x98\x13\x07\x07\x72\xa7\xeb\xc9\x36\xc2\x0d\x5d\xd0\xff\xa3\xe3\x0c\x12\x0b\x3f\xfe\x45\x66\xfc\xad\x73\x3b\xb4\x76\x4a\xd3\x93\xc4\xf6\xdc\x8f\x2e\x48\xbf\xc5\x32\x62\xb5\xa4\xbc\x15\x37\x73\x66\xec\x45\x3a\xc7\x3d\x60\x00\xaa\x2f\x46\x27\xee\x4b\x1b\xe2\x8c\x07\x3a\xd7\xc7\x97\xa6\x5f\xd2\xd5\xd3\x24\xec\x76\x82\xc1\x5b\x0f\xaa\xd4\xc7\x93\x9a\x60\x39\x7d\x5d\xdd\x4c\xd5\x5c\xda\x50\x93\xc3\xcc\x48\x83\x9a\x4c\x5d\x54\x45\x09\x37\x2b\xfb\xeb\xce\xa1\xe2\x09\x7a\x15\xcc\x02\xc2\xad\x63\x7e\x3c\xc2\xd0\x1e\x21\x01\xe9\xc7\x9e\x5f\x25\x75\xd1\x20\x1f\xf7\x84\x2a\x54\xe9\x15\x55\xc4\x34\xc2\x5c\x6e\xe9\x08\x78\x2b\x6e\xbc\x46\x79\xbc\x7d\x79\x6c\xfa\x22\x6b\x94\x61\x14\x57\x40\x02\x99\xf1\x98\x26\xca\x82\xcb\xbc\xbc\xd5\x41\x78\x5d\x6f\x74\x6a\xe3\x6e\xea\x11\xd5\x1c\x8c\xce\x9c\xd6\xf1\x4c\x56\xc8\xb5\xb4\x32\xee\x4a\xad\x59\x13\x5a\x00\x53\xc9\xae\x50\x71\xd7\x09\x6b\xb8\x89\x18\xd7\xcf\x7a\xf5\xca\x04\x53\xd9\x77\x16\x4c\xe5\xa8\xd1\x5a\x9a\x1c\xd6\xe3\xe4\x50\xf6\x95\x3f\xbd\x54\x33\xa5\xf3\x7d\x1c\x10\x1e\x47\xe6\x0c\xbb\x50\x66\x77\x56\xbc\x04\xe3\x97\xf8\x63\x0d\xf7\x50\x41\xa5\xb8\x3a\x8b\x3f\xe1\x49\x4d\xe6\xbf\x8e\x99\x8f\x1b\x18\x74\xc9\xe2\x44\x61\xb1\x7a\xc8\x08\xb9\xd4\x0e\x34\xbc\xfa\x7d\x17\x69\x8f\xa4\x42\x02\xe2\x0a\xcd\x86\xad\xe3\x34\x6b\xca\x76\x1f\x94\xb7\x02\xb5\xa6\x1b\x98\x91\xb2\x54\xbc\xbd\x61\x54\x87\xc6\xbd\xb2\x5b\x95\x10\xb1\x78\x5d\xde\x1c\xa8\x5e\x18\x83\x5c\x3b\x37\x30\xac\x53\x63\x6a\x72\x3c\x9a\xda\x52\x2d\x65\xed\x48\x74\xc5\xd3\xcc\x7c\x75\x96\xd9\x4c\xb7\xd5\x29\xbf\xa1\xcd\x27\x3d\x5a\x2a\x61\x90\x4c\xcc\x2c\x7b\x49\x76\x85\x28\xd8\xbd\x46\x83\x97\x68\xbd\x79\x2e\x6e\xc1\x5f\xad\x35\x28\x41\x26\xf4\x12\xa9\x74\x9a\x9b\x63\xd0\x0c\x7d\x22\x14\x83\xa3\xef\x6a\xea\xb5\x36\x76\x02\xc4\xf3\xbf\x67\x57\x9a\x03\x23\xe2\x24\x8c\xb6\xcc\x5e\xb0\x25\x2a\xdc\xce\x5b\xb1\x6d\x0f\xf6\x9f\xde\x34\x07\x62\x88\xc9\x80\x39\x90\xcf\xcf\x57\x5f\x78\x45\x50\x25\xfc\xd1\x7e\xf5\x84\x59\x3f\x82\x9e\x94\x40\xa4\x18\x74\x65\xe4\x38\xb8\x22\x1b\x7e\x0f\x3e\x0b\x07\x57\x77\xd7\xd4\xf8\xda\xde\xaf\x1a\xee\x36\x4a\x1e\x98\xcc\xe8\x48\x3f\x31\xa1\xe3\xf6\xef\x6f\x25\x79\x1e\xf1\x1a\xf2\x7c\x9a\xa4\x79\xf6\x79\xa8\x04\xfa\xd3\x97\x9d\x4c\xc3\x5a\xa1\xfd\x94\xbd\x55\x5b\xfd\x56\x15\x5b\xb5\xb0\xce\x77\xfb\x8d\xef\x6b\x6a\x22\xd4\xaa\xd1\x10\x00\x12\xac\x47\xa7\x69\x95\x10\x8b\x77\x46\x74\x6f\x07\xe4\xcd\x77\x87\x84\xef\x94\x4c\x7d\x2e\x28\xde\xde\xe8\x60\x2b\x60\xd4\x23\x56\xbb\xaf\xc2\x19\x4d\xd8\xc0\x42\x6e\x9d\xa3\x72\xb3\xff\x3c\x3d\x29\xa0\xbc\x06\x07\x54\xfd\x72\x4d\x3b\x9d\x80\x20\x87\xf8\x01\xa0\x1f\xb2\x7f\xe1\x58\x2f\xee\xc1\xb5\x68\xf1\xa2\xf1\xda\x32\xc6\x9b\x0d\xa7\x6b\x01\xda\xe4\xe7\xe6\xa3\xab\xa1\x10\xaa\x53\x2f\x10\x1e\xfd\x7c\x17\xe5\xef\x98\x2b\x6d\x97\xc0\x9e\xf7\xef\xde\x6d\x13\x24\x28\x39\x58\x52\xb0\x33\x3b\xdf\xd0\xe4\x02\xb8\x1c\x87\x7c\x11\x6b\x1f\x4b\x63\x04\x85\x4c\xc6\xd9\x92\xcd\xcc\xa9\xc7\xd3\x07\xae\x87\x9d\x06\xf1\x27\x75\x69\xcd\x84\x05\x1a\x72\x0d\xce\xc5\x42\x31\xba\xe8\x44\xfa\xc8\x21\x1e\x14\x3a\xd1\xae\xf9\xaa\x47\xdd\xe4\x6e\x8e\x2a\xc1\xb9\xa8\x37\x3d\x09\x2c\x53\x06\x91\x3c\x7d\x4d\x43\xb7\x0c\x13\xa9\xbc\x17\xef\x03\x22\x6c\x51\x27\x83\x7e\x67\x61\x36\xf5\x3d\x82\x0a\xf3\x30\xeb\xc7\x15\xda\x20\x5e\xa2\x32\xd9\xa5\xc9\xa4\x22\xa7\x80\x6a\x55\x90\xfe\xf2\xb7\x68\xc3\x50\x0a\x2b\x33\xfb\x4c\x5f\x87\xda\xf7\x5a\x10\xca\xdc\x53\x82\xaf\x5f\x8e\x6a\xba\x2e\xd9\x8e\xe3\x46\x4f\x46\x90\x31\x80\x9d\xb7\xe1\xad\x04\xdb\xd1\x68\x11\x9e\x60\xcc\x83\x44\xe7\x36\xe2\xe1\x76\xa4\xca\x94\xe9\xea\x92\x82\x2a\x18\x32\xe7\xb6\x6f\x52\x62\xc9\xbe\x14\x32\xce\xcf\x58\xaf\x93\x81\x43\x8f\x88\x22\x71\xe8\x2a\x51\x93\x33\xd4\x1f\x7f\x07\x2f\x07\xf3\x77\x6d\x36\xe4\xdb\x90\xcf\x88\x01\xea\x18\x03\xe2\x92\x9c\xa7\x43\xa8\x27\x40\x4f\xf1\x5f\x7f\xe6\x0d\xb3\x4a\xb5\x9b\x48\x58\xbe\x64\xee\x7e\xce\x98\x48\x13\x37\x99\xd3\xb4\xde\x33\x6a\x71\x97\x4f\xca\x64\xa9\x7e\xf0\xcd\x74\x6d\x35\x73\xda\x59\x94\x3f\xb3\x4b\xe6\x6b\xae\x9f\x55\xee\x65\x34\x90\xef\x6a\xbb\x21\x87\x82\x05\x86\xba\xa1\x4c\xb7\xf6\x87\x75\xd0\x76\xc8\x5f\x3a\xc1\x18\xd3\x97\x2b\x85\xbe\x3e\x11\x91\x2b\x57\xaa\xbf\x98\x39\x79\x4a\xcf\x0c\x8e\xe7\x7c\x65\x78\xba\x97\x03\x13\xb9\xcc\xc7\x4f\x99\x2e\x7f\x7c\x5d\x26\x2a\x5c\xd9\xc2\x89\xa4\x37\x5f\x69\x53\x98\x19\xc8\x16\x66\xa7\xaf\x04\xb6\xab\xc0\x84\x2c\xdb\x67\xce\xd5\x2d\x27\xb4\xb9\xae\x1f\xcf\x97\x1c\x83\xaa\xae\xe9\xb8\x65\x46\xda\xda\x31\x6f\xd5\x3c\xda\x74\xb0\x2d\x48\x8c\xd9\x71\xc7\x34\x99\xf5\x6a\x13\xe4\x0f\xb2\x83\x5e\x4f\x7f\x9c\x47\x19\xaf\xe2\x78\x04\xda\xa9\xc9\xe0\xc5\xd9\xdc\xc5\x3b\x65\x51\xcd\x2a\x67\x21\xfa\x6f\x9f\x97\x0e\x1e\xd8\x21\x86\xb3\x40\xfe\x81\x0d\xc2\x73\x14\x81\x1e\xe4\x0f\xe7\x8e\xc2\x5e\x21\xfe\x51\x1c\x49\x0b\x37\x21\x27\x95\xb0\x45\xd7\x0e\x1e\x99\x16\xfa\x4b\x6f\x9b\x71\x4f\xa9\xe8\x82\x1a\x88\x38\xe0\xa1\xc7\x27\x6f\xd7\x1d\x33\x7a\xfa\xa8\x21\x60\xa0\x4f\xae\x57\xa8\x3f\x3e\x32\x9a\xbe\x0b\x5a\xe1\x4b\x18\x6a\xf7\x00\xdc\xd5\x67\xaa\x72\xc9\x07\x2b\x99\x66\xf5\x43\x26\x63\xd1\x0f\x38\x1b\x87\xb3\xd4\xc6\x99\x0e\x27\x71\x7a\x0c\xa0\xb8\x0b\x1b\x5a\x26\x87\x3d\x0f\xd9\xad\x42\x31\xfa\xd9\x12\xcd\xb3\x1d\x35\x90\x43\xc4\xc4\xf4\xd4\x6a\xd3\x1f\x93\x9b\x5e\xc8\x26\x72\x6e\xde\x61\xad\x79\x15\x32\x58\xac\x47\x22\x43\x04\x0b\x73\xa9\x55\x3b\xe1\x08\x8f\xda\x34\x56\x8b\xe7\xdc\xbe\xaf\xbd\x09\xf1\x0b\x61\x6b\xe0\x61\xc4\x4a\xf1\x45\x7e\x79\x99\x56\x41\x22\xe6\xf2\x03\xa7\x38\x90\x0f\xb6\x9a\x96\x72\x25\xe4\xfb\x10\x32\xa2\x7f\xee\x55\x29\xd7\x94\x29\x33\x0b\x53\xa6\x70\x0b\xe2\x9b\x4f\x5f\x62\x2c\x79\xbb\x6b\xd2\x35\x32\xf5\xba\xb3\x9e\x2c\x81\x80\x85\x6d\x75\xf7\xed\xf7\x9c\x85\x89\xc1\x95\x70\x78\xac\x0f\xb7\x68\x1e\x2d\xa1\x67\x43\x93\xec\x8d\x23\xe9\x27\x59\xe2\x54\x39\x9c\x74\xe7\xbe\xb6\xad\xc3\x28\x23\x04\x4a\xf1\x0f\xe3\x34\x71\x25\x2e\x94\x96\x5b\xd8\x9b\xc8\x5b\x04\x88\xa4\x40\x6a\xaf\xad\x54\x6f\xb2\xcc\x30\x2e\x94\x11\x48\xe1\x3c\x71\x8e\x0e\x4f\xaa\x3b\xd4\x97\xd4\xea\x5f\x4f\xbf\xdc\x38\xac\x5b\x4d\x75\x58\xcb\xc3\x67\xc4\xe3\x9a\xa7\x2d\xba\x02\xb9\x3c\xc7\x1d\xdc\x63\xf8\x69\x85\x41\x95\x32\xd2\x2f\x20\x39\xd9\x85\xab\x0c\x36\x38\xf5\x83\x3a\xf5\x78\x22\x18\x17\xa9\x7f\x3d\x3e\x5a\x6f\x38\x2c\x9d\x54\x6c\x5b\x07\x4b\x97\x6a\xba\x39\x40\x54\xe3\x67\xcf\xbe\x31\x46\xda\x50\x0e\x70\x85\x32\xbf\x26\xeb\xc3\xe8\x2b\x5d\xb0\x82\x6e\x8c\x2b\x5f\x3e\x80\xfa\xcd\x44\xad\xbf\x9f\x28\x9d\x70\x95\x93\x43\xea\xf1\x57\x90\x53\x62\x88\x80\x31\xce\x84\x4e\xc8\xe2\x6f\x00\x87\xae\x42\x31\x9a\xb7\x50\x08\x02\xc8\x52\x3e\x1a\x9b\x57\x83\xf4\x7a\x57\x5c\x96\xe5\xbe\xf0\x68\x92\xd3\x53\x57\xa6\x07\x99\x07\x16\x1b\x5e\x48\x94\x0a\xdd\xf6\xcc\xf3\xa3\x06\xd7\x13\x3f\xd5\x42\x31\xca\x68\x43\x71\x86\xeb\x00\x74\xe2\x77\x7e\xf9\xe0\x61\x5a\x25\x58\x2a\x51\x38\xba\xa7\x4d\x34\x70\x26\x70\xb4\x82\x1d\xd6\x81\xe9\x9a\x1e\xb9\x8b\x00\x5c\x9f\x9b\x35\xa2\xcd\x29\xb9\x12\x62\x91\xdd\x8d\x3d\x9a\x84\x62\x1c\x97\x74\xd1\x1f\xdf\x4c\x2a\x20\x10\x28\x92\x49\xd5\x5d\x8b\x65\x1a\x40\x02\x62\x91\x7e\x5e\xeb\x3c\xf1\xb6\xae\x4e\xe8\x23\x0f\xcc\xa8\x16\x6d\x06\xf0\xc7\xa7\x3d\x70\x7e\x94\xf3\x95\x57\x0d\xe7\x9e\x38\xc9\x90\xe8\xf6\x7b\x36\xe8\x46\x02\xe5\x50\x16\xb0\xfb\xb6\x18\xd9\x00\xea\xc3\xbe\xc0\x82\x3d\xb4\xae\x43\xef\xa0\xd7\xa9\x2f\x9a\xd5\xdb\x0c\x25\x2b\x14\xfa\x01\x66\x24\x90\xce\x0f\x99\x93\xb3\xdb\xdc\xd6\x59\x20\x7c\xdb\xf2\xd6\x82\x0e\xbd\x2f\x12\xbf\x13\xbe\x02\x5e\x3a\xd0\x66\x63\x22\x4d\xa0\x12\x04\xe8\x03\x8f\xb7\x19\xdd\xd9\x42\x39\x21\xbe\xb0\xaf\x5c\xd0\x91\xf4\x71\x6c\x1d\x7c\xfd\x88\x39\x45\x70\x88\x17\x50\x6f\x52\xea\x97\x5e\xd2\x52\xe4\x7a\x88\x19\x28\x56\xdf\x5a\x35\x68\xad\x58\xf7\xef\xce\x5b\xd7\xa7\x15\x17\xb8\xe0\x97\x98\x27\xe4\x07\x9b\xd0\x6a\x4e\x94\x03\xd9\xc8\x4d\x47\x85\xc7\x24\xf6\x7d\xa2\xcf\x52\x32\xff\x76\xc0\x70\xeb\x21\x95\xaa\x58\xe1\xff\x73\x8d\xc6\x29\x70\xeb\xb4\x09\xd2\xcd\xd1\x27\xe6\xa9\x9f\x37\x51\x10\x5f\x7b\x93\xb7\xf9\x7f\x5a\x52\x6d\xfe\x2b\x0c\x3f\x96\x3e\x23\xae\x00\x63\x3f\xe1\xde\xe5\xed\xa9\x46\xae\xdc\x72\xb8\x58\x34\x50\xad\x3f\xba\x12\x2a\x20\x6c\x88\x6b\xcc\xdb\xa8\x36\x9d\xc4\x39\xc1\xe4\xf6\xb7\xcf\xe9\x54\x3a\xde\x19\xe0\xa9\xf1\x94\x7d\x5a\x19\xc9\x67\x47\x20\x21\x57\x33\x70\x6d\x4d\x46\x82\x00\x7b\x02\xf6\xf5\x8f\xe3\xb4\xf3\x96\x7a\xf1\x92\xe6\xbe\x06\xdf\x33\x74\x1c\x1d\xec\x11\xee\xd4\x0c\xa7\xfe\xde\xb2\x96\x64\x36\x31\x57\x79\xcb\xdc\x6c\xa7\xbf\x29\x3e\x1a\x13\xe5\xa8\xdc\xe7\x46\xc2\x7e\xbb\x3d\xc0\x58\x23\x78\x64\x97\x3c\xa3\x0d\x2c\x21\x68\x07\xbc\x6d\x91\xfd\xcd\x0b\xd0\xc8\xbf\x85\xa1\xbb\x89\xbc\xcd\xab\xd6\x1b\x03\x19\xc2\x34\x8d\xa8\x5c\xf3\x7e\x13\xe2\x4a\xac\xaa\x18\x8b\xfc\xe9\xb4\xbc\x02\x14\xe8\xea\x04\xb7\x2e\x4c\xe2\xcb\xcc\xa9\xd3\xe2\xdf\xfc\xc3\x04\x85\x9c\x6a\x17\xc7\x7e\x96\x9d\x97\x3a\x03\x0d\x03\x17\xb0\x5e\x0c\x5a\xe2\x60\x21\xbd\x43\x64\xde\x18\x48\x86\x52\xfe\x5a\xa6\x1d\x25\xb4\x85\x1c\x38\x15\xde\x19\x25\x78\x47\x8c\x5a\x55\xd0\xed\xca\x3d\x38\x4c\xc9\xb2\x09\xcc\x5d\x29\xae\x8a\xcd\x5c\xe0\x6e\xe5\x79\x43\x40\x59\xe8\x96\xae\xa1\xda\x5f\x52\x18\x54\xe6\x6f\x33\x50\xde\x36\xf1\xeb\x61\x20\xcf\xc1\x81\xcc\xe1\x37\x4d\xad\xbe\x38\x31\x0a\x04\x92\xf9\xf0\xa6\xe1\x1a\xa4\x97\xd4\x1d\xd0\xa6\xc9\x2f\x39\x79\x89\xf2\x33\x6f\x4b\x23\xad\x7b\xd3\x2b\xa3\x12\x12\x3b\xf9\xc6\x6c\xb3\xdf\x48\x9d\xfb\xea\x98\x11\x0e\xc7\x93\xae\x6c\x4d\x43\x0d\xa6\x4a\x99\x2d\x1d\x1c\x72\xe1\x28\x78\xc2\x77\x20\x47\xc1\xe1\x96\x7a\xa9\x88\x12\x30\x52\x0a\x05\x58\x7d\x20\xd3\x6d\x68\x42\x5e\xc5\x75\xe2\x10\x80\x12\xc5\x68\x6f\xd6\x62\x75\xa7\xa1\x17\x84\x0c\x88\x8c\xbb\xe6\x99\x2c\x53\xe4\x4b\xaf\xf7\xe8\x1b\xef\x9d\x2f\xf2\x3b\xfe\x81\xc5\x81\x4c\x79\x9d\xa9\x13\x21\x88\xfc\x1f\x5c\x97\x6e\x5f\x23\xd8\x90\xf9\xab\xf7\xa6\xc3\x56\xe8\x63\x26\xd8\xe0\xa3\x1f\xd6\xb0\xbe\xba\xd4\xd6\x55\xef\x29\xdb\x99\x1e\x7e\x50\xdd\x38\x68\x10\xbf\x90\xa5\xdc\x1b\xfb\x4d\xe8\x04\x8d\x5b\x8e\xfc\x6a\x40\x02\x34\x79\x5c\x5b\x6e\xf3\xfb\x1e\xd3\xe6\xd0\x41\x7d\x70\xd6\x44\x97\x6d\x48\xba\x03\x25\xa2\x75\xa8\x33\x17\xbc\xa6\x7a\x9a\x0e\x90\x8a\x86\xdd\x94\xfe\x9c\x06\x0d\x70\x97\x3c\x58\xb6\x48\x31\x2b\xea\xd8\x44\xc8\xe5\x67\xa2\x8d\x17\x88\x54\xce\x43\x15\xf0\xe5\x79\x59\x45\x04\xec\x5b\xc8\x49\x50\x78\x9f\x3f\x72\x91\x39\x3f\x83\xf2\x20\xfb\xd1\x79\x9a\x90\x41\xc0\xe7\xed\xe6\x2d\xf6\x2d\x52\xdb\xa1\x12\x5f\x01\x7f\xcd\x9b\xba\xd2\xcd\x1b\x6e\x1b\xda\x55\x28\x46\xad\x7e\x49\x93\xe0\xec\x31\x94\xd8\xc0\xcd\x59\x02\x3d\x91\x79\xa1\x57\x01\x54\x75\x9c\xe2\x5d\xa0\xc1\x7f\xc0\x84\x09\x39\xf1\xc7\xdc\xb9\x4d\xd2\xdf\x7c\x8b\xf8\x40\x07\xce\xe7\xcf\x85\x1f\x2e\x62\xb4\x8c\x7d\x9f\xc3\x35\x73\x27\x07\xc3\x0f\x4b\xc8\xc7\xc2\x67\x6b\x20\x5f\x37\x7a\xa9\x52\xd2\x0c\xe0\x29\x9f\x30\x8c\xe6\xfd\x5a\xeb\xac\xfa\x36\x1f\xa9\xeb\xed\xc8\x5a\x09\x15\x8a\xd1\xc9\xf7\x3f\x2c\x0e\x3a\xb0\x1c\x1f\xbe\xd8\xf0\x41\x09\xb1\x6f\x8b\x7e\x47\xf4\xd3\x17\x47\xb5\x1d\xa6\x65\xa7\xa5\x74\xca\xc6\x1d\xbf\x58\xdb\x2d\xc4\x89\x4f\x4f\x21\x62\x9a\xf3\x97\x6b\x95\x40\xea\x31\xe4\xd5\x65\xd5\x09\xe5\xad\xfc\xfc\x9d\x5a\xff\xa2\x37\xf4\x02\x0e\x62\x9c\x31\xd8\xe8\x5f\x70\xb7\x28\xf1\xdd\xd8\x16\x4e\xc4\x5c\x11\xa1\x18\x8d\x5f\x95\xec\x13\x54\xd3\xa7\x54\x5f\x38\x6a\x34\xb2\x51\x59\xda\x6c\xdf\xf7\x66\xfa\x0b\x44\xa4\x85\x8d\x77\x62\xbc\x66\xba\xeb\xf2\x31\xb8\x30\x4e\xfa\xe1\x52\xcd\xf0\xab\x5d\x5b\x3b\x18\x09\x57\x16\xff\x87\x07\x9e\x3b\x97\xab\xec\xf7\xee\x10\xe3\x38\x1c\xdd\xa3\x8d\xda\x5c\x2c\xc5\xb8\x3e\xbe\xc1\x04\x25\x38\xb4\x29\x6a\x99\x83\x5d\x63\xcc\x43\x8e\xcb\x8c\xe8\x24\x90\x6b\xef\xd5\x36\x11\x0f\xa8\xd2\xe3\xfa\xbb\x93\x93\x9a\xcd\xe1\x5c\x14\x95\xcc\x2c\x1f\x7f\x7e\xf2\x47\x53\x66\x14\x8a\xd1\x9f\x67\x9b\x2c\x1e\xe2\xa4\x08\xea\x39\x83\xe4\xe5\x22\xab\x4a\x3c\xd0\x89\xcd\x7c\x6e\xb6\x51\x93\x59\x77\x87\xdc\x50\x09\x5a\x11\x6c\x70\xfa\x75\xd8\x18\x09\x2d\xba\x0f\xad\x30\x91\x7e\x95\x52\x0b\x78\x90\x97\xaf\x15\x90\x9f\x38\x09\x44\x80\x74\xce\xbd\xf5\x26\xc4\x90\x39\xd4\x2d\x53\xde\xdb\xc9\x4f\x18\x92\x54\x31\x73\xe6\x14\x8a\x51\x76\xf2\xf9\xc9\x63\x9e\x3e\xa5\x50\x8c\xbe\xd9\x6b\x2e\x86\x96\x44\xb0\x7e\xe4\xa6\x64\x01\x39\xa8\xa9\x05\xbc\xe3\xb6\x9a\x61\x61\xee\xed\xcd\x65\x84\xe3\x4b\xb8\x78\xf9\x45\xda\x06\xb0\x31\x6b\x52\xc6\x95\x7a\x66\x1e\x54\x5e\x2d\x81\xe4\xbe\x64\x9a\x1a\x54\x0a\x97\xe3\x8b\x06\xcf\xe0\xf8\xf5\xa2\x21\xe9\x5d\x5d\x42\x5e\xed\x2c\x18\x91\x67\xfb\xb4\x06\x0a\x43\x9e\xed\x22\xae\x8f\x3d\x52\x90\x82\xba\xe6\x6b\x9d\xeb\xdc\x8c\x11\xda\x70\x08\xda\xf7\x90\x73\x1c\x7a\xe5\x62\x1d\xe3\xe0\xa9\x0d\x13\x55\xfa\x0d\xbd\x32\x09\x1d\xe6\x93\x7c\x99\xc0\x7d\x7c\xaf\x36\x19\xf1\x7d\x52\x11\x7c\xb2\xdc\xdc\x83\x86\x82\x54\x13\x25\x04\xe6\xdc\x03\x3b\x54\xbf\x06\x3b\x24\x88\xeb\xba\xef\x5e\x00\xc7\x27\xe1\xd2\x69\xbc\x49\x74\x9f\x82\xbc\x7b\x38\x2c\x63\x47\xeb\x04\xe4\x6f\xeb\x81\xb5\xe0\x62\x9b\x24\x12\xa4\xbf\x7a\xcd\x74\x7c\xc0\x56\xd5\x6b\x21\x09\x1d\x8f\x6e\x9f\xae\x3c\xd3\x30\xd1\x6e\x64\xe6\x5a\xa3\xd9\xe5\x55\xb0\x83\x39\x12\x08\x06\xac\x97\x3e\xad\xe9\x16\x92\x20\xe0\xbd\xed\x07\xce\xc0\xf3\x66\x38\x60\xb4\xcc\x97\x37\x4f\x88\x46\x69\xc0\x29\xec\x05\xa8\x02\x97\xf7\xbb\xce\x4e\x33\xd9\x41\x9e\x98\x55\xe5\x6f\x5d\xaf\x71\xb4\x4b\xa1\x1f\xd6\x78\x48\xbc\xec\xb0\x66\x7e\xa8\xb3\xc7\x06\x46\x1b\x4f\xd8\x52\x7a\xf9\x99\x4f\x07\xe9\x7f\x84\x0a\x48\xd4\x96\x63\xd6\x81\xbd\xd8\x42\x62\x55\xa9\xa3\x39\xc4\x0d\x64\x0e\x19\x62\x6d\x8c\x96\x68\x40\x2c\x99\x61\x7f\x75\x77\xd2\x92\xea\x25\xed\x9e\x45\xaf\x7a\xc6\xa4\x26\x4e\x0c\xf8\x5f\xf3\xef\x3d\x7a\x9e\xc9\xa3\xe1\xc6\x63\xc8\x13\x26\x2c\x5f\xd6\xb0\xb7\x94\xc5\x45\x0f\x2b\x14\xa3\x81\x79\x0a\x22\x0b\xc2\x4d\xc8\x49\x54\x67\xa3\xc9\x06\x51\x50\xa8\xb4\x01\x4a\x68\x5e\x6f\xf2\xb6\xcb\xa1\x8e\xb5\xfb\xe7\x7b\xf4\xb1\x1b\x72\x6a\x62\xd5\xfe\xe7\xda\x14\x80\x12\x15\x5c\xc4\x38\xad\x20\xfb\xdf\x62\x28\x55\xc0\x9c\x2e\xfd\x8b\x25\x13\x8d\xd0\xc7\x18\xa1\x41\x70\x36\x07\xf3\xdc\x15\x8b\x2f\x90\xa9\x81\x4f\xe2\xd3\x2f\x3a\xf0\xac\x0e\xb1\x40\xb6\x70\xa1\xea\xaf\x0e\xf6\x14\x67\xa4\x18\x4d\x5c\xaf\x59\xc0\xc8\x44\x28\xbb\x7d\x65\x3b\x9e\x36\x61\x6e\x7c\xaa\xfa\x61\x51\x53\x5a\xd5\x42\x31\xfa\x97\x9d\xc3\x52\xb3\x71\xc2\x67\xfb\xd9\x6b\xd7\x6a\x96\x71\x80\x2d\x96\xb1\xa9\x7c\xbe\xbc\x2a\x38\xe6\xb2\x53\xeb\x97\x25\xbf\x3b\x6d\x9a\xd2\x21\x4b\x50\x1a\x9f\x3d\xa6\x20\x4c\x2d\xca\x95\x5c\x7e\x3d\xcf\x6c\x44\x70\x9c\x0b\x6b\x52\x17\x01\xbf\x31\x7a\xe2\x15\x55\x78\xf5\x70\x0b\xeb\x49\x67\xc6\x19\x47\x82\x46\xd9\x4f\x6a\xea\xcc\x6f\x4f\x40\x9d\xe4\x50\xaf\x12\x10\xae\xfe\xd6\xf5\x54\xdb\xba\x6b\x81\x90\x2d\xcf\x32\x7f\xf8\x82\x60\x03\xc7\x1f\xc8\xf1\xe7\xfb\x0c\x65\x4f\x86\xb8\xa2\xa8\xc0\xdf\xbe\x33\xd5\x50\x23\x0e\xb1\x21\x48\xfd\xd9\x8d\x67\x6f\xf6\x02\xb4\xf7\x2f\x3b\x55\x23\x6e\x66\x17\xb7\xa2\xf9\xec\x05\xc6\x1f\xf4\x21\x2b\x2e\xab\x38\x6c\x65\xd3\x4e\x60\xc3\xce\x41\x41\x95\xeb\xa3\x98\x83\xc0\x25\x1a\xff\x9e\x77\x1e\x55\xdc\xfa\x40\x87\xd1\x1a\x47\x1c\xb5\x1e\x08\x73\xe2\xdc\x47\x9e\x10\x42\xe2\xa4\x1c\x54\x85\x6a\x58\x31\xfa\xed\xfe\xf4\x1d\xba\xd8\xa1\xb6\x80\x11\x42\xdf\xed\x89\xed\x82\x5b\xe2\xf1\xb9\x70\x7e\xe6\xf5\x66\xe5\x88\x9c\x96\x4f\xa4\x82\x73\xbe\x38\xc3\x9c\xc3\x73\x92\x9d\xc0\x41\x4d\xbe\x4e\x83\x34\xd6\xb9\x43\x69\x3f\xb4\x11\xaf\x7c\x59\x72\xba\x3d\x0b\xd7\x83\x90\xf7\xee\xf3\x9f\x82\xa9\x6a\xe1\x66\x81\xf2\x50\x51\xef\xc9\x1d\x86\x84\xb7\x2b\x74\x48\x64\x9d\xf1\xfa\x2c\x63\xe4\xef\xb5\xa8\x97\x28\xc1\x7d\xa9\x43\x83\x47\x85\x4e\x40\x1a\x82\xae\xb5\xf1\x51\x15\xde\x89\x8d\x01\xed\x72\xe3\xa1\xf4\x4d\xd3\x06\x66\xbc\xc1\x23\x72\x85\x1f\x69\xe4\x6f\x37\xf4\x71\xc8\xdb\xd1\xb9\x31\x67\xd4\xec\x26\x6c\x97\x7f\xfb\x94\x46\x49\xad\x53\xca\x45\xc9\x72\xd5\x2d\x49\xa8\xea\x45\x4a\xd9\x31\x5a\x3a\x68\xa4\x99\x84\xe1\xb2\x34\x3b\x8b\xbe\xf9\x92\x8e\xdc\x69\x88\x71\xc9\xd2\xb9\xe9\xb2\xe6\x8a\x99\x33\xc5\x60\xeb\x0b\xd3\x21\x12\x05\x71\x78\x00\x66\xfc\xfb\xef\xa8\x5a\xb9\x8c\x1d\x87\xea\x39\xcf\x03\x6b\x4c\x4d\x04\xae\x71\x03\x77\xbf\xe9\xca\xa4\xf2\xac\x92\x38\xa7\x1b\xbe\x58\xef\x91\xc7\x8b\x29\x8e\x75\xdd\x57\xa6\x2b\x7c\xe2\xa9\x1a\x5f\xf4\x33\xe7\x97\x74\x81\x3a\x24\x29\xcb\xd7\x4d\x37\x69\x60\x75\x88\x1e\x22\x56\x3d\xb3\x52\xda\xff\x32\x46\x99\x1c\x8f\x93\x0e\x59\xbb\xc1\x04\xc3\x46\x60\x5b\x85\xde\x36\x74\x4b\x10\x01\x9f\xc7\xfc\xb9\xab\xb5\x14\x9f\x0b\x67\x96\x79\x7b\x3f\xba\xf8\x54\xf2\x22\x7d\xd4\x6c\x87\xab\x9c\x34\xe0\xf2\xe1\xd9\x78\xaa\x5b\xaf\x33\x45\xf1\x71\xe0\x21\x57\x1e\xa9\x57\x3f\xdb\xe6\xf3\xc7\xd1\x29\xff\xf7\xe5\x21\x22\xf3\x09\x38\x61\x82\xaf\xac\x1d\x43\x3a\x8c\xe4\x9f\x42\x95\xf2\x2b\xe3\x68\x9d\x32\x33\xa5\x7c\x9f\xfb\xfe\x4d\x2a\x82\x94\xa8\x5b\x2a\xb8\x48\x9e\x79\x27\xdf\x4a\x33\x6e\x5d\xcb\x8e\x8f\x58\xfb\x0a\x1f\xf2\x4e\x55\x21\x6c\x2d\x19\x2a\x73\x0e\x2d\x25\x67\xb1\x0c\xb6\xdf\x3f\xa6\x4d\x26\x39\xd3\x40\x2d\xa7\x5f\x6f\xd4\x45\xb6\x6d\x61\x1a\x95\x5d\xbf\x57\xf0\x10\x18\x06\x11\xb2\x27\xef\x4b\x69\xf7\x31\x1c\x27\xad\xbc\x7e\xf9\xaf\x23\x1a\x9c\x90\xab\x7c\xc4\xc7\x51\x31\xba\xec\xa8\x2a\x5e\x66\x72\xa5\xd5\x8b\x35\x52\xae\x8d\x2b\x0c\xf3\xc3\xec\x9f\x56\xc8\x84\xad\x41\x1d\xd9\x13\x8a\x7e\xde\x0b\x0b\xe9\xf6\xaa\xae\x80\x74\xd1\x71\x95\xa5\x56\x91\xcb\x43\x42\x76\xd8\xe0\x24\x1d\x73\x90\x12\x93\x8e\x76\xad\x36\xf6\x69\xe8\x07\xd4\x95\xcf\x3f\xf3\xaf\xe3\x75\xd3\xf6\x19\x71\x0d\xf2\xf4\xa3\x3a\x42\x95\xc8\x45\xfd\xce\xfa\x36\xb4\x4b\x99\x24\xf0\xf9\xcc\x49\x83\xb3\xe2\x07\x71\xe6\x91\x10\x11\xf7\x0e\xba\x30\xe9\x36\xc5\x89\xeb\xed\x8b\x06\xf2\x0b\xc6\x41\xcb\xb2\xe7\xea\xf8\xc1\xe4\x6f\x59\x97\xfe\x84\x02\x90\x3c\x6c\x11\x22\x96\x0e\xd2\x01\xa4\x9e\x87\x45\xef\x23\x7a\xfb\x1d\xf5\xf2\x7a\x71\x13\x3b\xac\x55\x28\x46\xdf\xd9\x6d\xb4\x64\x51\xc0\x14\x74\x32\xfb\xef\x27\x85\xbf\x68\x9d\x60\xa8\x9a\x5f\x58\x67\xd8\xcc\x50\x86\xd3\xd8\xdd\xdc\xd7\xd6\x68\xfd\x9c\x2a\x61\x41\x5b\x4a\x95\x59\xbf\x56\xad\xb2\xd0\x83\xf6\x91\xe0\x5c\xe5\x82\xb2\x29\x87\x23\xc4\x65\xe3\x15\x2a\x30\xdc\xaf\xf5\x1b\xb9\x46\x2f\x69\x22\xcf\xa6\x1e\xd5\xb9\x8f\xd9\xfb\x4f\x26\x6a\xad\x60\xc0\xf1\xf9\x1d\x9a\xc1\x89\x30\xb8\x1c\x2f\xf4\x4a\xdd\xba\x43\x2c\xc2\x73\xf9\xb5\x86\xe8\x6c\x09\x3b\x04\x73\x5e\x5a\xbc\xb5\xf7\x3c\x37\x3c\xbd\x80\x05\xf0\xe9\x43\xdb\xd2\x11\x6a\xc6\xf4\x69\xe2\xfc\x9c\xaf\x06\xf7\x2d\xcc\xe7\x6c\x27\x0e\x9b\x7e\x92\xa8\xa1\x99\x60\x3e\xb5\x4e\xad\xdd\x3a\x12\xb6\x41\x83\x76\x8a\x92\x89\x53\x03\x88\xef\x72\x74\x88\xe6\x79\x56\xa7\x0e\x6c\x8a\xf8\x1b\x3a\x37\x8e\x30\x72\x04\x9b\x20\xa8\xed\x0f\xad\x33\x60\xcd\x1e\x16\xf2\xcb\x03\xb9\x3f\x94\x55\xf2\x33\x85\xdb\xcf\x65\x73\x86\x03\x4c\xe8\xf9\x16\x0a\xa4\xba\x51\x66\x0e\x4b\xe7\xd2\x75\xc4\x1c\x82\x84\x1c\x87\xd9\xe9\xfe\x7a\xa7\x61\x13\xd4\x07\xde\x34\xa2\xc4\xd8\xfe\x8a\xd1\x92\xa0\x36\xf6\x85\x94\xfd\x0b\x13\x75\xdd\x52\x4b\xa8\xd3\x0d\xe4\x7e\x7e\xcc\x40\x1d\x36\xa9\xe3\x60\x69\x95\x65\x2d\x48\xcc\x61\x70\xd2\x8b\x9c\xff\x74\xfa\x6b\x42\x3f\x64\xf5\x44\x52\x78\x8f\x20\xa7\xb4\x2c\x87\x7a\x30\xdd\x76\x75\x27\xe6\x80\x51\x70\xd3\xfa\xbe\x41\xcf\x4d\x1c\xcd\x25\x3f\x70\x20\xdb\x3d\x0a\xd6\x4a\x7c\x06\xb8\x88\xe3\x87\x79\x2b\xa4\xff\x89\xa1\xda\xbb\xe4\x3e\x8c\xf1\x3b\xcb\x8f\xd5\xc2\x3c\x63\xb4\x89\xdb\xf2\x8f\xec\xab\xcf\x69\xf4\x3f\xc2\xdc\x38\x02\xb2\xc7\x2e\xd5\x0a\x9f\x76\x3d\x96\x77\x74\x05\xfe\x80\xf1\x53\x12\x46\x4c\xbf\x3c\x6d\x14\x60\x0e\xb1\xb1\x2f\x48\xff\x7f\x7d\xa9\x43\xaf\x73\x24\x46\x25\x3a\x78\x4e\xb2\x9e\xb1\x13\xc6\x1f\xf3\x99\xed\x49\x39\xd0\xc7\xcb\xbe\xfb\xe7\xe9\xe2\xdf\x2d\x1b\xf3\xb7\xf1\xc8\xc3\x49\xcf\xcd\xe2\xdd\x99\xf4\x59\xbb\xc0\x20\xdd\xf9\xa1\x5f\x27\x96\x2a\x8b\xd7\x1e\x3d\x5f\x04\x36\x5a\x03\x3b\xd2\x9f\xf7\x0c\xd7\xba\xca\xa8\x4e\x3d\x20\xb4\x0f\xef\x6f\x77\x6d\x00\x71\xc5\xe8\x67\xab\xb5\x8a\x5c\x3f\xde\x1e\x78\x59\xa3\xd9\xa2\xa0\x8a\x18\x94\x7b\x03\xb9\x27\x8c\xa1\xab\x83\xc2\x4a\xbc\xfe\x9b\x60\x4c\xba\x3b\xe1\x8c\x78\xb8\x95\x92\x58\xc4\xef\x0f\x8e\x7f\x7f\xfe\x7c\xd1\x85\xa8\xae\x48\xd2\x44\x3f\x50\xed\xf8\xe8\xce\x7b\x3a\xf4\x01\x90\x3a\xc4\xbe\x74\x57\x62\xc6\x79\xb5\xee\x40\x32\xec\x15\x38\x08\xf9\xc9\x8a\xac\x10\x70\x6f\xd9\x39\xbd\x9a\xb3\x75\x97\xc5\x4b\xca\xa7\x8d\x36\xb4\xe8\xf2\x08\x21\xc6\xeb\x46\x1b\xa5\x1e\xf6\x11\xe3\xc9\xb8\x0a\xe8\x8f\x1f\x1a\x9e\xf2\x8c\x2a\xde\x3e\xa9\x58\x28\x46\xe7\x0a\xfe\x7a\x1d\x8a\x92\xff\x7d\x8f\x49\x65\x69\x60\x4f\x4b\xb7\xb3\x77\x6a\x53\x99\xba\x13\x7a\x15\xe1\xce\x3e\x76\x62\xb2\x76\xa6\x17\xae\x8e\x7f\x52\xd8\x7b\xf9\xd9\x8f\x80\x40\x97\x0d\xbb\x30\x9f\xfe\xad\x12\xa3\x35\x59\x36\xaa\x8b\xff\xc7\xf5\x86\x77\x4d\x5f\x1d\x60\x31\xe2\xaa\x06\x9e\x4f\xd7\x52\xe5\x76\xd3\xde\xa7\x46\x68\xe3\x7a\xec\x87\x6e\x5d\xc8\xa7\xe5\x57\xbf\x70\xd9\x59\xef\x99\x26\x8c\xfa\x0d\xfb\x45\x92\x5b\x65\x18\xd9\x25\xee\xdb\x1d\xbd\xb0\xc9\x14\x35\xe7\x0e\xb8\xa2\xbf\x96\x5f\x76\x7a\x70\xf2\x85\x77\x16\x8a\xd1\xb1\xfb\xd3\x69\x63\x25\xe4\x92\x34\xd1\xf6\x15\x43\xb4\xd6\x4a\x03\x70\x53\x3b\x8f\x27\x7b\xb3\x82\xc0\x5a\xf5\x84\xd1\x70\x20\x76\x82\x68\xcc\xdf\xf1\xb0\x79\xda\x12\x8f\xfa\xa9\x63\x34\x73\xdb\x7a\x53\x7d\x8b\x96\x89\xb4\x76\xcb\xb2\xf5\x02\x20\x8a\xbc\x2a\x0a\x02\x94\x52\x2d\xbe\xd6\x60\xd0\x54\x69\x5d\x16\x73\xb9\xdd\xa7\x8c\x99\x33\xa9\x84\x4c\xfe\x6b\x76\xc5\x10\x4d\x96\x26\xe4\x51\xee\x07\xd7\xb7\x35\xfa\x13\xbb\x8f\xec\x0f\xaf\x17\xb2\xf2\x0e\x6a\x25\xa4\x99\xef\xce\x1e\xa6\x71\x39\xad\x80\x72\x9c\xc5\xd6\x52\xfa\x9e\x7d\xdc\xc0\x9e\x78\xed\x72\x71\x9d\xf7\xf8\x70\x8d\x6e\x13\x70\x45\xa8\xf8\x6b\x1e\x5c\x65\xf8\x9e\x53\x66\x63\xee\x79\x95\xb2\xdd\x3e\xf8\x9a\xca\x0e\xc5\x36\x28\x14\xa3\x33\x73\x3b\xd2\xd2\xd5\x72\x91\xfe\xdb\x6c\x28\xec\x10\x40\x27\xe2\xb7\x76\x07\x08\x61\x14\x6e\x66\x18\xb7\x13\x8c\x06\xef\x4c\x02\x46\x93\x68\xf0\xde\xec\x8e\x6b\xd2\x0f\xb5\x1a\x7a\x36\x4b\xf4\x7d\xbb\xcb\x2a\xef\x6a\x10\x9f\x68\xe0\x8f\xdc\x35\xd7\x6b\x25\x34\x03\x5d\xb9\xcc\xd3\xaf\x0d\xd1\x4e\x24\x0a\xc2\x45\x9f\x1b\xa5\xe4\x34\x03\x54\x28\x46\xa3\xbb\xb4\x06\x7d\xbc\x83\xb3\x3f\xe9\x37\x4e\x58\xcf\xc1\xbe\x80\xd5\x64\xc7\x1d\x1e\xaa\x15\x9a\x01\x02\x88\xfd\x92\xeb\xdb\x56\x59\x83\xd8\x18\x38\xec\xf9\xb9\x8b\x0d\x36\xa1\x65\xc5\x1f\xc8\xab\x27\x74\x46\x47\xd5\xfb\xf2\x94\x7f\xc0\x80\xf4\x81\xee\x47\x43\x0c\x38\x5a\xbd\x1a\x71\x05\x8c\xe8\xf8\x92\x19\xa2\x41\x8e\x7c\x0b\x79\x36\x6c\xab\x35\x07\xcd\x85\xcc\x7c\x0c\x4d\xbb\xfc\x9d\x9b\x93\x60\x8c\xad\xaa\x23\x20\xcc\xb9\xa9\xf3\xf4\x62\x87\xe1\xe4\xd5\xf6\x8c\xef\x48\xd7\xa5\xf2\x15\x2c\x39\xa0\x9e\x36\x8a\xf3\x22\xfe\x5c\x46\x68\x5d\x44\x2e\xde\x17\x7f\x67\xc7\x12\xb5\xf7\x5d\x02\xdf\x98\xdd\x37\x59\x7a\xd7\x61\x70\x73\xcf\x7f\x70\x7b\x3a\x74\xd4\x5c\xf0\x09\xc8\xe4\xba\x35\xf6\x9e\x8e\xc3\x7a\x7d\x94\x86\xa8\x98\xc9\x67\x01\x86\xa2\x47\x15\x23\x3b\xce\xbe\x24\x82\xff\xcc\x46\x15\x1f\xab\x94\x3a\xa4\x82\x44\x76\x9a\x59\xf5\x7e\x7a\x1c\x12\x3a\x01\x43\x05\x64\x55\xe3\x74\xda\x4d\xf4\x8e\xf3\x9f\x3e\x62\xf2\xbb\x14\x2a\x39\x37\xae\x2f\x9d\x60\x22\x56\x22\x01\xa3\x92\x4d\x97\xae\x2c\xe6\x1f\x49\xb3\x74\x7b\x71\x70\x56\x55\xe1\xfc\xf2\x87\xa1\x6a\x75\x43\x56\xe3\xc3\x94\x3f\xbd\x61\x46\x42\xaf\x49\xac\x9a\x1e\x09\xf3\x5f\x3e\x96\xbe\x1f\x0b\xd5\x49\x40\x1d\xf3\xc8\xc8\x5c\x7f\x50\x63\x12\x21\x56\x20\x8e\x03\x14\xe0\xf7\x96\x8d\xd6\x68\x43\x94\x55\xda\x07\x8f\x37\x19\xbe\x45\x01\x71\x71\xc0\xb5\x40\x01\x59\x73\xbf\x26\xef\x85\x6d\x1b\xf2\xa0\x0d\xcb\x4c\xad\x4e\x2e\x18\x19\x9f\xf1\xd1\xea\xb7\x20\x07\xbd\x95\x02\xf8\x59\xe4\x1c\xbf\x5d\xad\x23\x61\x89\x13\x9f\xd4\xbc\xb9\xbc\xdd\x80\xe1\x60\x5c\x13\x99\xce\xf8\xf2\x85\x62\x19\xde\x1d\x12\x81\x01\xf8\xc5\x09\x51\x9e\x76\x77\x17\x8a\xd1\xa2\xbd\xed\x66\xc3\xf1\x6b\x86\x19\xc9\x82\xe9\x6a\xa3\x96\x42\x9f\x60\xde\xce\xce\x6d\x9c\xd7\xa9\x95\xd2\xcc\xaf\x22\xe7\x0a\x09\x06\xc9\xdd\x73\x48\x29\xae\x22\x4f\x42\x89\x6e\x9b\x3d\xde\xc8\xef\x28\x57\xfb\x6c\xab\x34\xc7\x0a\x9a\xe5\x5c\xe2\x5b\x21\x97\x18\xe3\x37\xf9\xe4\x2c\xe5\xfc\x25\x5a\x34\x6d\xfd\xa1\x1d\x65\xf5\x80\x66\x4c\x9e\x32\x63\x66\x17\xdf\x0f\x99\xff\x9a\xaa\x98\x94\xbe\xa5\x2b\x2b\x2c\x48\xfe\x21\x48\x49\x2e\x34\x7a\x34\x30\x2f\x43\x5e\x2f\xcf\x66\x3f\xb6\x59\x8d\x2a\x49\x4d\xbd\x98\xab\x3b\x8c\x73\xd1\x41\x0d\x6e\x03\xca\xe3\x16\x7b\x58\xb3\x85\x76\xa8\x7f\x96\x0a\xe1\xbf\xdf\x1e\xae\xf1\xd8\xc2\x72\x19\xf1\xe9\x71\x3e\x7b\x42\x43\x7e\x85\x42\xd0\x74\xcf\xc6\xe1\x75\x5d\x71\x90\xd5\xa1\xda\xcc\x19\x7a\xab\x7e\x1d\xb1\x9a\xe2\x82\xe5\x9e\x9b\x7a\x16\x05\x3a\x31\xc5\xf8\xbb\x15\x46\xcf\x10\x8b\xdd\xac\x0e\xc8\xab\xf6\xca\xb2\x1b\x64\x11\xe3\x3f\x9b\xfe\xb8\x31\x73\xe6\xca\x73\xc9\x57\x66\xff\xd7\x6c\xd5\xdb\xa8\xc4\x31\xdb\x93\x43\x8e\x8f\xbe\x90\xa6\x2d\xfb\xa8\x81\x2a\x58\xd8\xd2\xa7\xf7\xfd\x92\xc7\xcd\x5f\xc5\xc4\x45\x67\x95\x2e\xfc\xa7\x83\x43\xe4\x2b\x73\x31\x5f\x22\xc5\x81\xcc\xae\xd1\xc6\xf6\x20\x1e\x66\x2d\x40\x22\xac\x9f\x6c\x00\x8c\x10\x71\x9a\x48\x8c\xb3\xf2\xb9\x2e\xc3\x94\xde\x09\x93\xbe\xd0\xca\x43\xe9\x5c\xd6\xc6\x2e\xb5\x18\xb2\x5a\x93\x34\x66\x75\xbe\x3e\xcc\xf0\x79\x63\x18\x0b\x6e\xfe\x93\xf7\xa7\x03\xc0\x94\x29\x5d\x33\xa4\x95\x78\xee\xfc\x71\x82\x44\x48\x2a\x1e\xb8\x68\x64\x3e\xa9\x09\xa2\xd6\x11\x43\x36\xed\x83\x86\xf2\x87\xe7\x8e\x53\x0d\x65\x2e\x84\xcb\x21\xf2\x66\x94\xfa\xa7\x63\x29\x0c\xab\x4b\xe5\xe1\xf6\xc8\x60\x53\xfe\x08\xdc\x0f\x38\x02\x11\xe0\xbb\x5f\x59\xa0\x39\x8b\x04\xb8\x8e\xfc\xaa\xbe\x5d\xf2\xf9\x67\xc6\x1a\xa7\x01\xc3\x58\xc2\x3a\x84\xba\x43\xee\x97\xf7\x19\x49\x5c\x15\x79\x95\x38\x0f\x83\x66\x14\x8f\x1d\x37\x6a\x65\xb1\x5f\x45\x6e\x29\xae\xdb\xb4\x94\xe7\xa6\xbb\xb4\x1c\x80\x11\xec\x05\xf1\x61\x1f\xed\xef\x4a\xe3\xbb\xa6\x4e\xe3\x58\xaa\xcb\x4f\x5d\xa8\x25\x4f\x0d\x0e\x6e\x19\xde\x91\xa4\x42\x61\xe0\x16\x8a\xd1\x93\xdb\x0c\xdd\xa5\x12\x45\x2c\x49\xed\xb3\x8f\xdc\x6b\x62\x33\x41\xb3\x06\xde\x62\xe6\xb9\xbb\xd2\x2d\x24\x56\x90\x9d\xb8\xbd\x8b\x27\xa8\x42\xb7\xd9\xec\x12\xc6\x0d\xc4\xe3\xf3\xa2\x0a\xf6\x2c\xdc\x65\x51\x8e\x1a\x6f\xac\x33\x03\x38\xc3\x30\x5e\x89\x56\x1b\x5e\xdd\x53\xbb\xe5\xe7\xef\x79\x5c\x97\x2f\xf1\x02\xbe\x29\x61\x9a\x63\xbd\xa4\x2c\x7e\xf9\xf3\x79\xcb\x68\xe2\x94\xb1\x8d\x99\xf4\xb9\x89\x9e\xde\xab\xb1\xd7\x6c\xee\xec\xc6\x71\xc2\x37\x2c\x55\x7e\x9b\x88\xe1\x36\x43\xce\xcc\x6f\x34\x9d\xe2\x32\x65\x4d\x24\xec\x22\xb3\x63\x96\x6b\x2e\xc7\xd2\xfe\xf4\x6d\x8d\x92\x5c\xa5\x2c\x28\x04\x82\x70\x98\x9d\x35\x57\x4d\x3c\xed\x30\xb0\xda\x95\x83\x56\x9d\x92\x22\xce\x18\x4a\xa4\x8d\xa7\xd2\x1b\x6b\xda\xcc\x29\xa2\xd9\x77\x55\xbd\xd3\x2c\x52\xaa\x81\xd8\xb5\xb9\xe3\xb3\x05\xa0\xa5\x49\x3c\x5b\x68\x4d\xe5\xb6\x6e\x3a\x5f\x2c\x11\xdc\x84\x23\xf2\x92\x3e\xa9\xe2\x64\x63\x56\xa2\xa0\x81\x32\x64\xb6\xba\xca\xa9\x57\x9d\x65\x2e\xfb\xd0\x9e\x74\x3d\x5d\xc2\x28\x0c\x48\x39\x74\x64\xc5\x73\x64\xb7\x21\x32\x00\xa2\x19\xdc\x66\x5c\x34\x1e\xbf\xfe\xec\xf0\x34\x36\x1b\x4e\x82\xdc\x8a\x6e\xd3\x77\x31\xce\x7f\x29\x00\x9b\xb3\x5f\x8c\x04\x71\x11\xf7\x11\x0b\x25\xf3\x9a\xdd\xfd\xa6\xbc\x50\xbc\xf6\x0c\x13\x9a\x5c\x65\xd5\x58\x23\xeb\x76\xeb\xd4\x2d\x34\x51\x43\xa3\x53\x7d\x7c\x9c\x26\xbb\x8c\x1c\x87\x86\xfc\x00\x58\xbd\x7d\x84\x06\xc4\x61\xd8\x25\x81\x9c\x9a\xdf\xf7\x54\xfa\x0d\x79\x54\xbc\x85\x68\xc1\x33\x9a\x8f\x22\x97\xce\xe0\x71\xec\xaf\x1b\x55\x23\xb3\xc5\xb9\x9e\x97\x4c\x56\xa7\xb0\x1b\xba\x6e\x8b\xc7\x6c\x5c\x37\xe1\x69\xac\x96\x00\xc0\x97\x0e\x33\x18\x73\xb4\x41\x70\x50\xc0\xdc\x7a\x27\xfe\xeb\x3f\x2e\x33\x24\x51\x19\x45\xb6\xa8\x41\xe0\x1d\x64\x7e\x2b\xc6\xd7\xf1\xbf\x80\xdc\xd0\xbd\x2a\x8e\x5c\xd5\x35\x83\xd7\x4b\xdb\x27\xa4\x6f\x8f\x78\x01\x85\x76\xd5\x7f\x1e\xd1\x85\xd6\x19\xe7\x5c\xe4\xbd\x0e\x63\xc4\x8d\xef\x0e\x39\xa6\x52\xda\x64\x3f\x74\x72\x9c\x36\xaa\xf1\x50\x05\x34\xa8\xcc\x8d\xd0\xd7\x3b\x46\xfb\x70\xce\xae\x6e\x8b\xf4\xef\x47\xa2\x1f\x4a\x1a\xc4\xe1\xec\xfe\x81\xcc\x8c\x53\x06\xc2\x2d\xf4\x93\xa9\xea\xfe\x60\x54\x5a\xfe\x63\x11\xe7\xe3\x24\x2d\x81\x0f\xec\x37\xa5\x4c\x49\x20\x5c\x93\xa2\xe3\x87\xd2\xe5\x4a\x0b\x03\xf5\x24\xeb\x6f\x05\x06\xdf\xad\x1e\x17\xa0\x30\x4f\xea\x6d\x53\xc5\x35\xa2\x3a\xb2\x84\x93\xc4\x97\x36\x6b\x65\x09\x46\x8d\x56\x13\x0b\xf1\x8a\xfc\x97\xce\xd3\xb4\x86\x28\x77\x11\x1f\xc8\xf4\xf7\xaa\x13\xb1\x1f\xa3\xf8\xd4\xe3\x9d\xcc\xe3\x2f\xab\xcf\xe9\x45\xba\xb9\x7c\xf6\x2f\x23\xd5\xf6\xf2\x5b\x1e\xf5\x5a\xa0\xcc\xf5\x9d\xf7\x93\x8e\x20\x66\x29\xff\x8c\xdc\xd6\xc3\x06\x5b\x86\x94\x13\x90\x6d\xe6\xbb\x8a\x32\x86\x82\x76\xa7\xa0\x8f\xbc\xf5\x61\xf9\xcf\x9f\x2c\x14\xa3\xbf\x7b\xc6\x80\x23\x09\x14\x03\x4f\x13\xf7\x3f\xa5\x76\x98\x55\x4d\x6c\x83\x06\xef\x34\xb4\x30\xab\x34\xa0\xe0\xfe\x28\x5e\xdf\xf0\x9e\xcb\xcc\x32\x08\x57\x68\x40\x90\xa4\xaf\xe4\x86\x19\x96\x8f\x3e\x09\x92\x01\xfd\x67\x1b\x2a\x95\xc7\x4e\x93\x52\x5d\xc4\xf6\x95\x9d\xc6\x6e\x0a\x6d\xe4\x09\xf9\x64\x7e\x5e\xfb\x6f\x8d\x50\x93\x77\x2b\xe5\x8b\x8b\xc7\x5f\x64\xe4\x86\x42\xca\xf0\xb2\xfd\xe7\x6b\x03\x70\xee\xb2\xde\x3d\xc2\x08\x9c\xf1\xaf\x82\xf9\xe4\x6b\x8a\x06\x87\xb9\xc3\xed\xcf\xde\x37\x1b\x15\x65\x44\x18\x3f\x8e\xa3\xb7\x5f\x4f\xb5\xbf\x09\x03\x17\xff\x68\xcb\xbd\xe9\xd6\x41\x1d\x03\x79\xea\x77\xf3\xa1\xd0\xea\xc5\xb4\x8e\x98\x4d\xfa\xc5\x43\xff\x97\xa7\x20\xfe\x2f\xc6\x3e\xef\xbc\xf3\xf8\xb4\xfb\x60\x87\x92\x3a\xd3\xdd\xae\xcf\x7d\xd9\x18\xb7\xd4\x18\x22\x1e\x41\xb0\x13\xf2\x43\x9f\x57\x49\xb0\x20\x3c\x8b\xf8\xfc\xf9\xb2\xba\xb9\x06\xed\x8b\xbf\xf9\xa5\xf9\x26\x37\xcb\x0b\x92\x36\xe3\xaa\x11\x0a\x3a\x80\x58\x0d\xd9\xca\xff\x3c\xda\x6f\x0c\xa4\x11\x0b\x88\xe3\xc4\x89\x2e\x4c\x06\x7e\xc5\x46\x9b\xff\x6e\x8c\x9b\xb3\xf6\xbd\x6d\x96\x04\x4e\xc2\x1b\xb8\xf7\x95\xf4\xe7\x7b\xa1\x8b\x99\x72\x14\xcf\xdd\x75\xc0\x68\xf7\x78\x15\x26\xf9\xdb\xfb\x27\x0f\xd3\xe1\xda\x3e\xa4\x29\x99\xbf\x7b\xf3\x42\x99\x51\x32\x4a\x20\xd4\xfe\xb7\x66\x71\xd4\x22\x98\x9b\x46\x65\xfe\xb0\x54\x73\x7a\x22\xbe\x47\xac\x6a\x58\x2b\x14\xa3\x57\x9f\xd3\xc8\x8d\x20\xda\x07\xf8\xea\xcc\xd1\xfd\x22\x7f\x0e\x4b\x4d\xd4\xe2\xaf\xef\xdb\xdb\xcf\x57\x80\x8f\x38\xe2\xde\xfc\x26\xd4\xc1\xc5\xc5\x4b\x0a\xc5\x88\x42\x22\x57\xb8\x1d\xb9\x75\x86\xb4\x06\x5d\x7e\xf2\xb0\x74\x88\xf3\xc4\x51\x92\x79\xe7\x5d\x6d\x62\x42\xec\x10\x92\x99\x4f\xeb\x14\xb4\x54\x6b\x73\x5e\x32\xdb\x9c\x19\x1f\x21\xb9\xef\xbc\x7f\xb1\xc6\xe8\xb3\x88\x0e\x36\x3c\x72\x40\x98\xb5\xc5\x21\xb0\x44\x43\xe6\xf3\x20\xf1\x66\xbf\x21\x8a\x3c\x73\xc6\x54\x40\xf1\x0e\x2c\x84\xa5\x7c\x1b\x4a\xbb\xc7\xdc\xea\x24\x11\xca\x6d\xf7\xdb\xca\x3e\xea\xe8\x24\x3b\x0e\x21\x02\x88\x80\x76\x6f\x65\xca\x2a\xdc\x58\x27\xf7\x92\x61\x05\xdb\x5f\x0d\x75\xc5\x86\xdc\x9c\x2e\x75\xef\xb4\xac\x32\xa3\x8e\x6e\xad\x45\x47\x5c\xc2\x87\x1f\xd1\xc6\x85\x1f\x55\xbf\x1d\xd7\x85\x36\x75\x89\x17\x27\x3c\x6d\x43\xc8\x55\x9a\x19\xbd\x1e\xcf\xbf\xfe\x72\x52\x91\xf7\x87\x96\x2e\x9e\x3d\xda\x18\x08\x93\x8a\x94\x0d\x28\x14\xa3\x37\xb6\xa6\x13\x23\xab\x8a\x98\x43\x4c\xd0\xd9\x23\xe7\x74\xea\x2a\x24\x8c\xf6\x71\xc1\x1a\x18\xc3\x7d\xe8\x18\xac\xb0\x5b\x69\x55\xaa\x40\xdc\xac\x19\xbf\xc5\x49\x0d\xd8\x26\x3d\xbc\xc9\x70\x9e\xa6\xf1\x5d\xca\xa2\xfc\x57\xcb\xcd\xa2\x88\x36\x79\xa7\xc5\xc3\x3e\xb4\xeb\x22\xec\x69\x53\x2e\xc2\xac\xd0\x6d\x08\x70\xf9\x1f\x27\xaa\x7d\x11\x5f\x20\x22\x3e\x88\xd2\xee\x7c\x4c\x17\x2d\x75\xec\xd0\xb2\xb8\x72\x0f\xd9\x3a\xc6\x88\x9d\x36\x66\x0d\xe4\x84\x9a\xf8\xd2\x9f\x16\x6b\x78\x84\x2a\x72\xeb\xd2\x86\x2d\xfb\x80\x21\x02\x15\xd6\x81\x16\xb8\xdb\x33\xb5\xb3\xca\x71\xde\x01\xe2\x9b\x3c\xb9\xf9\xd5\xf3\xea\x90\x29\xe1\x2a\x6a\x10\xca\xa4\xb8\x74\xf6\x29\x67\xa4\xd6\x18\xb5\xaa\xd8\xd1\xdb\x9b\x99\x01\x4f\xdd\x24\xee\x0b\x80\x3d\x19\x5f\xe8\x4f\x76\x99\xe0\x5e\xe4\xd6\x1d\x0c\x75\xd9\xba\xd7\x0d\xe5\x03\xaf\xcc\x45\x11\xf9\x79\xf8\xbb\x1d\x97\xe8\xed\x2b\x82\x0b\x16\x62\x54\xb0\x40\xb2\xaf\x3f\xac\xe1\x44\x42\xbf\x2a\x48\x2f\x73\x4e\x81\x0a\xc8\x0d\xb6\x4d\xa0\x31\x6c\xe6\x5d\x57\x3f\x66\x92\x3a\x98\x4b\x89\x23\x80\x81\xce\xc9\x21\x89\x50\x47\xc2\x0c\x9e\x76\x26\x1d\x5b\x2c\xc4\xf8\xa0\xe8\x95\x37\x34\xc4\x7a\x5f\xc0\x50\x03\x55\x90\xd7\x8f\x38\x7b\xe2\x3c\xd5\x09\x9b\x39\xf5\xea\xc9\x57\x75\x77\xb7\xf5\x4a\x3f\xf1\x96\x5a\x00\x2e\x14\x05\xc0\xdc\xb1\x8d\xf1\x17\x1f\xbc\xeb\x08\x8c\x7f\xe8\xd0\x87\xf6\x77\x87\x84\xf1\xac\x3b\x7b\xdb\xfd\x49\x1c\xc1\x7d\xed\x9d\x97\x4b\x4b\x22\x96\xd7\x89\x27\x21\xe9\x57\x5c\x67\xb4\xc5\x28\xd3\xec\xdc\x67\xbe\x35\xa2\xce\x59\xcf\x8b\x4c\xac\xfd\x87\x4e\xc0\x04\x0e\xa0\x61\x01\xe1\xca\x09\x63\x9e\x86\x68\x7d\x35\xc7\x77\x66\x7e\x61\x1b\xad\x19\xcc\xa4\x7a\x50\xae\x7f\xb7\xa1\x1a\x1d\x32\x8f\x70\x67\x67\x10\x5c\xcc\x5f\xfa\x4e\x3a\x35\xa9\x0a\xf1\xbe\xe8\x9e\x71\x17\x6b\xfb\xa6\xa6\x3b\x51\x66\xbe\x32\x4e\xb4\xea\x19\x11\xbe\xa6\x5f\x5a\x38\x58\xc4\xe8\x26\xdf\xe9\x3f\x7e\x18\x9e\xc1\x94\x99\x85\x80\x16\xa6\xf0\x18\xbf\x6f\x81\x69\x6e\xea\xe0\xb8\xd6\xe0\x7e\xe1\x72\x0b\xe4\x46\x69\xb0\x42\xee\xd8\xc8\x3f\xff\xa5\x17\x4d\x4d\x14\x8f\x32\x29\x1c\x90\x1f\xd1\xa1\x13\xfb\x31\x0b\x60\xce\x90\xfb\x41\xa0\xaa\x76\x10\x03\x65\xad\xd4\x74\xb4\x70\x22\x45\xb0\xe1\xba\xeb\xe0\x2d\x75\xe9\x95\x06\xb3\x9a\x21\x5b\xd8\x61\xaf\x9d\x6f\xca\x4c\x31\x96\x88\x11\xe7\x7e\x3a\xd6\x60\x0c\x62\x64\x4b\x80\x53\x6e\xf3\x10\x93\xa9\xea\x12\xa7\x25\x7a\x0f\x6f\x0f\x93\x1e\xb6\x5c\x5d\xaa\x7f\xa4\xd6\x51\x20\x0c\x37\x91\x03\xdd\xaf\x9f\xbe\x04\xaf\x7f\x7a\x5c\x7d\x45\xf7\x9c\x48\x2f\x63\x87\x06\x41\xbc\xcd\x14\x4c\xf7\x85\xec\x18\x3d\x9b\x0e\x30\x0a\xdb\xf6\xeb\x43\xc6\x85\x09\x2b\x2d\xa0\x9f\xe7\xbe\xb3\xc7\x94\x12\x4c\x1c\x9f\xf3\x95\x2b\x35\x77\x66\x0f\x85\x95\x30\xf1\x39\xcb\x1e\x11\x26\xa7\x8d\x38\x4a\xb8\x55\x0a\x86\x4b\xa3\xf7\x76\x28\x85\xb3\x94\x2c\x6e\x63\xac\x91\x37\x05\x84\x8b\x44\x93\x8a\x97\xa0\xd9\xca\x8f\x9e\xaf\xcb\x93\x15\xa3\x91\x73\x15\xee\x04\x68\x20\xd8\xec\xf8\x45\x9f\x34\x4a\x3e\x9f\x86\x95\x6a\x00\x11\xf0\x5b\x82\xbb\x1f\x1f\xed\x58\x96\xec\xb9\x7f\x1f\x3d\x4a\x2d\xc3\x5e\xd4\xd7\xde\x9b\x5f\xa9\x01\xad\x01\x44\x3e\xd9\xb0\x8a\x96\x7a\xd2\x02\x17\xf5\xa3\x7b\xb4\xa9\x17\x82\x24\x2f\x7b\xfe\x7a\x41\xbe\xe3\x88\x19\x01\xc6\x0a\x16\xa4\x6c\xcb\xa1\x94\x7b\xf1\x2d\x93\x91\xc7\xe9\xe3\x82\xed\xbf\x65\x0d\x6c\xb8\x1b\x42\x3f\xde\x95\xfc\xd5\xcc\x1b\x0b\x9b\xb2\x97\x82\x13\x55\x66\x9e\x67\x12\xfb\x59\x7c\xb4\xc2\x78\xb5\xf7\x9e\xf4\x81\x58\x77\x50\x90\x56\x20\x1e\xc8\x6e\x5b\xa6\xd4\x94\xc1\x34\x34\x25\xbd\xe1\x4c\x35\x5a\xbc\xc4\x13\x2b\x3f\xfb\xed\xa5\x1a\xaf\x3c\xf4\x88\x5f\x05\xc8\x5c\xf4\x3b\x03\xce\x6e\x33\xec\x11\x4b\xb6\x28\xe8\x4a\xc9\x4d\x0c\x02\xcc\x08\xdc\xc6\x9d\x87\x4d\x25\xea\x92\x1d\x26\xb4\xde\x7c\xc1\x19\xa3\x81\x05\x91\x57\x28\x61\x16\x30\xe8\x03\xcb\xec\x6c\x5c\xb7\x51\x5b\x50\x5a\x4b\xf0\xe4\x9f\x34\xca\x2a\x1c\x54\x89\x25\x07\x86\x5f\x79\xc2\x5c\xa4\x36\xc3\x24\xad\xd4\xbc\x78\x74\x5a\xfc\xab\x84\xea\x01\xf1\x83\xb3\xb5\xf4\xb3\x3d\x07\x21\x79\x5a\x4e\xa8\x84\xc5\x7d\x71\x5e\xfa\xfe\x9a\x94\xb1\x96\x12\x1c\x1a\x75\xae\xd9\xbf\x70\x4a\xb2\x15\x7f\xf1\x79\xe9\x19\x1f\x22\xec\xac\x03\xc4\x09\xa7\x47\x68\xcd\x63\xae\x09\x27\xa7\x53\xf6\x3b\x9a\xe7\x5b\x3f\xe6\x6e\x8d\x99\xc1\x47\x0d\x41\x1d\x92\x20\x88\x6e\x7f\x62\x82\x59\x2a\x79\x16\x71\xe2\x53\xc4\xbc\xd7\xd9\x0b\x3a\x52\xd3\x60\x21\xd2\x3d\x90\xfb\xd9\x19\x1d\xa2\x1a\x1f\x17\xd1\x27\xd6\xa9\x46\xd3\x15\x2d\x78\xf1\x87\x3d\x53\x27\x9e\xba\x12\x72\xf1\xc7\x93\xe9\x8c\xec\x13\x90\x31\x1e\xdd\x7c\x99\xb6\xe9\x7a\x69\x9b\xf0\x5f\x66\xb7\x81\x97\xf4\x90\x1d\x4e\x6a\xd6\xa5\x49\xeb\x37\x1e\x36\xe4\x1c\xa8\x63\x0b\xae\xc5\x15\x4b\x0c\xa4\x4f\xe8\xfb\xd8\x71\x0c\x63\xeb\xe9\x37\x8d\x37\xf2\x1a\x60\x5a\x98\x73\xd7\xec\x91\xf9\x7a\xfd\x51\x67\xa4\x01\x1d\xd8\xbe\xee\x0e\x2d\x09\x13\x5e\xba\x85\x62\x74\xcb\x1a\xd1\x08\x96\xbf\x78\x78\xbb\x7a\x64\x35\x3e\x21\x8b\xde\x33\xe4\x56\x5c\x2e\x6a\x38\xb9\x50\x8c\x96\x1a\x26\x58\x3e\x2a\x95\x50\x50\x6d\x77\x21\xcb\xdf\x2e\x02\xe4\x52\xea\xd4\xfc\x26\xaa\x70\x34\x5c\xfe\x1c\x61\x2c\x72\x83\x67\xc7\x47\xa3\x5a\xfc\x7f\x36\x08\xa4\x65\xe4\x24\x2e\xf2\xd7\x4e\x57\xcb\x8e\x11\x4b\xcb\x6d\xf3\xde\x9e\x36\x04\x45\x85\x21\x57\x80\xe7\x2e\x5f\x02\xc0\xfa\x1b\xeb\x75\x50\x4a\x92\x1b\xf9\x13\x4b\xd2\x51\xab\x85\x60\xb8\xae\x47\xad\xff\x6f\x6d\xa2\x00\xc1\x74\x1f\xf5\xf9\x27\x47\x19\x8b\x1a\x55\xa8\xc7\x89\x28\x70\xb6\x65\x76\xab\x04\x30\x2e\xa8\xbd\x0a\x0f\x59\x27\x16\x0a\xd9\x5a\xe9\x03\x98\x3d\xff\x26\xe3\x31\xd3\x92\x90\xda\x5d\x7e\x52\x03\xc7\x69\x34\xb0\xfc\x9d\x06\x74\x8b\xbb\xfc\xfb\x1c\xfd\x2f\xbe\x7d\xb0\xc1\xa3\x13\x5c\x4b\xe8\xa4\xb4\xc6\x0a\x09\x79\xea\xf1\x41\x74\xf4\xab\xc3\xa6\x33\x0a\xad\xc9\x86\x45\xd1\xb0\x4d\x0d\xe2\x57\xc2\x53\xd9\xdf\x1a\xd2\x83\xc8\xee\x0d\x7d\xd1\x85\x17\xc7\xd6\xff\xb9\xe6\x52\xb3\x40\xf4\x2a\x0a\xf0\x95\x99\x73\x7c\x84\x56\x94\xa0\x4a\x25\xce\xa2\x00\xdd\x3a\xe2\xa4\x21\x5e\x5b\x2e\x63\x0d\x30\xee\xec\xd1\xc8\x28\x88\x41\xce\x36\x68\xa4\xaa\x8f\x58\xd2\x73\x82\xcd\x98\xdb\xbd\x5a\xad\xf0\x32\xaf\x51\xa2\x7f\xb8\xd2\x98\x71\xd0\x38\x69\x84\x4c\x6d\xa0\x5f\x1f\xd9\x83\x3b\x7c\x71\x20\xf3\xaf\x87\x34\x51\xb6\xb0\x55\xa3\x8d\x42\x31\x3a\xb2\xc5\x90\x2b\xc1\x84\xc3\x24\x21\xe6\x7e\x31\xd2\xfc\xa0\xba\x4a\x5d\xa4\x50\x8c\x56\x75\xa4\x9f\x5d\x8d\x56\xa4\xbb\x8d\xd8\x0a\xaf\xbf\xac\xd6\x4f\xdd\x09\xdd\x92\x28\xd7\x56\xec\x34\x89\x83\xa5\xc0\x91\xaa\x43\x6c\xdf\x38\x4f\x53\x60\x09\x30\x4c\x05\xcc\x81\xd3\x91\xa0\xd3\x33\x85\x5a\x38\x57\x2d\x7e\xad\xb7\x78\x1a\xe4\x17\xf7\x57\x00\xec\xf6\xfd\x73\x4c\x22\x58\xdd\xa1\x4c\xb0\xd9\xb3\xe5\x33\x86\x06\x69\xbc\x48\x60\x12\xb3\x73\x83\x99\xd8\x40\x9a\x25\x66\xc3\x23\x0d\x17\xe8\x90\xb3\x6c\xac\x40\xba\xd7\x0e\x64\xde\xdc\xa9\x40\x43\xa1\xaa\x24\xa2\xde\xa3\xea\x40\x08\x59\x25\x31\xb0\xd8\x35\x1d\x8e\x7d\x87\x94\xb1\x1f\xb4\xc0\xcf\xe4\xde\x25\x9d\x5a\x78\xf3\x6a\x58\xf7\xb9\xd9\xbf\x69\xbc\x51\x5c\xb0\xa0\x15\xe7\xc1\xe6\x19\xf4\xd0\xc8\x11\xaa\xf6\x4c\x49\xea\xe4\x46\x9f\x94\x60\xc0\xba\xd3\x3e\x4a\x78\xe4\xe5\x34\x92\x87\x08\x63\xfc\xb3\x4e\xdf\xb7\x9f\x36\x1d\x6c\xe2\x04\x40\x66\x18\xd9\xea\x79\xe9\x67\x5d\x93\x5d\x90\xe8\xe4\x84\x36\x43\x47\x80\x7e\x8b\x40\x38\x7f\xb7\x81\x6c\xc0\x5e\x80\x3d\x2b\x51\x54\xbf\x97\x69\x0b\x35\xce\x3e\x79\xe5\xf5\x9c\xd9\xb7\xaf\xe1\x44\xce\xfe\xb1\xd3\x06\x6f\x99\xba\x2e\x09\x84\x43\x1d\x7f\xbf\xdd\x87\x87\x8b\xf3\x53\x79\x5d\x16\x8a\xd1\x28\x8d\x81\x26\xc4\x6d\x0b\xc5\x68\xc8\xeb\x86\xc1\x21\x75\x02\x9f\x36\x52\xb6\x4e\x7f\x3b\x06\xd1\xfc\xe6\xd0\x77\x91\x86\x8a\xcd\xfe\xf3\x63\x43\xe4\x82\xe6\x60\xf4\x78\x83\xdf\xb5\x34\xbd\xcd\xca\x2c\x4c\x7c\x16\x45\x7d\xf2\xe9\xd7\x55\x20\xa9\x38\x21\x27\xf2\x64\x3f\xbb\xc2\x74\x88\x24\xc9\x6c\x31\x73\x6a\xcb\x58\xe3\x31\xc7\xb7\x8d\xe3\x3b\xe3\x95\x1c\x7f\x6c\x77\xde\x7b\xb1\x11\xd5\xbd\xa0\xca\x51\x22\xd1\x7f\xdc\x74\x85\xf1\xe1\x5e\x40\x90\x75\xd6\x5c\xeb\x0b\x9d\x6d\xc2\x5e\x54\x5a\x9b\x2e\x69\x47\xa7\x5a\x32\x25\x8f\xd6\xec\x31\xf9\x36\xd4\x45\x96\x90\xfb\x8f\x46\xac\x51\xfc\x7e\x56\x93\xe5\xf3\xe2\x21\xa2\x0e\xf0\x3c\xe9\xf0\x9c\xfd\xc1\x01\x78\xaa\x15\x86\x51\x20\x88\x4f\xf9\x35\xd3\x07\xab\xb2\x27\xfe\xc1\xc4\x93\xaa\x97\xe2\x52\x8f\x04\xed\xb9\x52\xfe\x8b\x6f\xa6\x7b\x34\xd2\x8d\x33\xb7\x1c\x52\x84\x45\xd4\x21\xbe\x6c\x02\x66\xf6\xbf\x08\x5f\x91\xd0\xec\x07\xc1\xff\xcf\x76\x30\xd7\x2d\xcc\x8c\x99\x3a\xde\x48\x15\x04\x9b\xa2\x0d\xf7\xb2\xb3\x43\x2f\x61\xb9\x16\x3b\xe3\x5c\xf3\x09\x6d\x1a\x48\xa0\xcf\x2b\x86\x52\xf9\x93\xe6\xe2\xa6\x50\xe5\x27\x7e\x50\x3b\x37\x18\x84\x45\x19\x10\x73\x0f\xbd\x0c\x47\x6c\x89\x71\x91\xac\xe2\x40\xee\xf1\x1d\xf0\x93\xde\xd0\xad\x43\xca\xb5\xb9\xae\x23\x6d\xcb\x98\x61\x10\x3b\x5a\xb5\xc7\xa0\xac\x62\x17\x81\xd6\x19\x6c\xba\x1f\xef\x1b\xae\x41\xe9\x3c\x3e\x3e\x88\x7f\x6e\x6f\x4e\x3a\xf3\x05\x2e\x31\x91\xe9\x7a\xdb\x70\xd5\x45\xd5\x38\x66\x27\x2d\xc3\x3b\x1e\x33\x48\x29\xd2\x47\x08\x0e\x2e\x50\xce\x17\x9b\xd4\x4a\x38\xa7\x03\x99\x99\xf3\xa1\xdb\x50\x6a\xf1\xed\x92\x29\xce\x53\xb4\x08\x9b\x9f\x52\xcf\x77\x6b\x48\x2c\x1c\x04\x42\x38\x27\x7f\x8b\x21\x92\x11\x54\xb1\x0f\xb8\xd4\xec\xda\x37\x4c\x7d\x5e\x17\xc6\xcd\xfc\xe6\xa6\xce\x30\x74\x8e\xa9\x87\x83\x2a\x37\x56\x91\xdd\x13\x7b\xa4\xd1\xcb\x42\xbc\xf0\xe1\xca\x0d\x57\x2d\xd5\xd9\x61\x28\x08\x10\x71\x00\xac\xfa\x2f\xe7\x0d\x93\x7f\x70\x8d\x1a\x03\x75\xdf\x04\x61\x8b\xb8\x75\x46\x01\xb1\xc9\xb7\x75\xf6\x7e\xd3\x5a\xc5\xa1\x16\x0a\x7d\xe8\x07\x64\xb6\x4c\x30\xca\x2b\x1a\x54\x41\xec\x33\x7a\x62\x23\x6c\xa4\x2a\x72\xca\x85\x2a\xa7\x9b\x0f\xe4\x57\x3e\x96\xd0\x42\x6a\xed\x0e\xa0\xf9\xaa\xf1\xfe\xe2\xfc\x99\x7b\x3b\x08\x69\xd9\xd2\x71\x2d\x19\xf1\x43\x46\xca\x9c\xea\xb7\x0a\xae\xfd\x46\x12\x20\x7d\xbe\x76\xce\x75\xe6\x5c\xca\xad\xcb\x74\x35\x33\xfe\xd8\x45\x3a\x9d\x8a\x70\x73\x16\xfe\x80\xfe\x97\xad\x12\x21\x0f\x05\x20\x53\x1a\x11\xe3\x6d\x95\x30\xe8\x71\x42\x1e\xb2\x6d\xac\x31\xc5\xf2\x6b\xc9\xf4\xed\xe6\x9b\x4c\xc8\x6b\xbc\x04\x40\x11\x35\x73\xe3\x8b\xa6\xbf\x63\xe8\x13\x4f\x0a\xa6\x66\xf6\x2d\x4e\xba\xa7\x15\x46\xda\x8e\xd9\x83\x47\xb5\xbe\x23\x06\x7f\x66\x99\xb0\x5f\xd6\xa9\xfa\x79\xd8\xaa\x52\xd3\x58\xf6\x9b\x93\x0d\x65\x04\xcc\x2c\x6c\xe3\xb3\x62\x68\x73\xa7\x40\x10\xa3\xb0\x90\xd4\xda\x4c\x03\x32\xdf\x52\x2f\xb5\xe4\xb4\xda\x2e\xf2\xc2\xbd\x86\xd3\x08\x8d\xaf\xf4\xac\x4e\x32\x97\x80\xae\x56\xe1\x36\x14\x04\x55\xdc\xd4\xd5\xac\xf7\xee\xd4\x88\x4d\x92\x3b\xcf\x77\x4a\x79\xb5\x34\xc6\xb0\x6a\x40\x2c\xac\x2e\xbf\x44\x13\xf0\x41\x8e\x50\x2d\x17\x88\xd0\x5f\x1c\x30\x95\x0a\x91\x23\x73\x8d\xa1\x77\xa9\x5c\xb0\x3f\xac\x81\x49\x6e\xfe\xa2\x53\xf0\x0d\x37\x2c\x9c\xbb\xf8\xc6\x1b\x0a\xc5\xe8\x92\x9b\x2e\x35\x77\x9e\xab\xe9\xdc\x66\x5f\x14\xc8\xa0\x2a\x66\x54\x80\xed\x96\xa7\x17\x41\x2f\xb2\x6a\x58\xce\x15\x6e\xe9\x68\xa3\x92\x36\x68\x0d\xdb\xe2\xfc\x3d\xf2\xa2\x76\xeb\x21\x87\xc3\x73\xaf\xd3\xa8\x3b\x6f\x18\x64\x83\x3c\x02\xe4\x4e\x6d\xef\xe1\xbb\xd7\x0f\xd3\x0a\xb4\x8a\xd0\xf1\xba\xd4\x90\xd6\xba\x7a\xaa\xec\xec\x5c\xb6\x52\x3d\x8b\x29\xd3\x41\x2b\x2d\x0a\x02\x05\x4a\x4d\xba\xc4\xc4\xb3\xa1\x93\xc6\xe1\xfd\xa7\x9f\xb9\x48\x83\x51\xb4\xb4\x77\xf8\xf5\x41\xc6\xa0\x23\x3e\x63\x5b\xb2\xde\xfd\xde\xd2\xcb\xd4\x47\xf3\xac\xd2\x5c\x1e\x8f\x1c\x34\xda\x49\x2c\x3e\x28\xd2\xed\xa4\x1d\xb3\x8d\x10\xdf\xa0\x35\x05\x31\xcf\x87\x8f\x1b\x62\x2c\x8e\x43\x12\xde\xd2\x23\xeb\x74\xa9\x34\x7e\x0c\x77\x19\xea\x48\x01\x71\x29\x9b\xc4\x4a\xb2\xe3\xf1\xdc\x56\x35\x8a\x9f\xf2\xf1\x9e\xf8\x3e\xb2\x2f\x19\xfd\x53\x44\x84\x36\x76\xf4\xf5\x89\xaa\x0f\x2a\x19\x50\x07\x46\xe8\x14\x6a\xde\x64\x14\x9d\xcd\x1b\x34\xc3\x7c\x1f\x63\x8e\xb3\xef\xb8\x2e\x35\xdf\x05\x46\x6a\xd4\x7a\x47\xc5\x45\xf0\x60\xe5\xf0\xa3\xd5\x49\xd2\xe3\x5a\x52\xd4\x28\x77\xe5\x64\xb3\x3e\x29\xe3\xc4\x90\x7d\x20\x63\x9f\x2b\x54\x3b\x50\xe8\x81\xf4\x40\xf4\x01\x03\x66\xd8\x20\xb8\x29\x73\x86\xc2\x0b\x46\x8c\x75\xa8\x8f\xe5\x6e\xfa\x43\xc9\x08\x31\xc4\xaa\x92\x0a\xf2\xce\x9a\xf9\xdd\x3d\x52\x93\xd5\x89\x53\x06\x18\x1e\x7e\x49\xf1\x0d\x31\xae\x15\x8a\xd1\xe5\xeb\xd3\xdf\x48\x43\x3f\x48\x3a\xbb\x3d\xcf\x24\x07\x73\x8d\xf2\x17\xde\xb1\x29\x7d\xf1\xb4\x4e\x3c\xd1\x8e\xcf\xfc\xe9\x69\x0d\x1a\xcb\xb0\x45\x7c\x41\xa9\x7d\xf6\x3e\x71\x1a\x72\x91\x53\x57\x02\x24\x33\xb7\xee\x48\x9f\xe6\xb4\x81\x99\x30\x57\xd8\x7d\x62\x84\x78\x51\x0d\xcc\x4d\x93\xb9\xe1\x19\x07\xbb\x7d\xcd\xd0\x90\x15\x12\x29\xea\xa0\xfa\xc0\x06\xa9\xf6\xe0\x60\x80\x76\x66\xc6\x9f\xd2\xbd\x96\x91\x55\xc5\x1c\xbb\x94\xbd\x7b\x82\x52\xdc\x67\x8e\x64\x49\x8f\xef\x37\xcd\x3f\x6c\xa8\x90\xa3\x5b\x9f\x4d\xff\x0b\xf6\xb0\x0b\xc0\xa1\xec\x97\xf3\x9a\xaa\x28\x43\xa4\x52\x25\x5c\xfb\x39\xd3\x61\xf8\x66\x95\x5a\x75\xe4\x4b\x34\xee\xd7\x17\x1a\xc2\xd4\xd8\x66\x94\xba\xc9\x48\xc7\x36\xbc\x41\xcb\xc4\x49\xd6\xd6\x47\xa7\x5e\x64\x6e\x3e\x71\x7e\x0e\x2d\x27\x9d\x9f\xba\x3e\x3d\xcb\xfd\xdf\xd9\xa6\x0d\x1a\x68\xd9\x03\xfd\x8f\x3f\xf9\x13\x2b\xb4\xce\x08\x0e\x18\x2f\xfd\xee\x51\x26\x29\x1e\x6e\x8a\x4a\x39\x3f\x21\x1d\x3f\xfc\xb0\x8a\x58\x40\x27\xe9\xce\x2d\xb9\x21\xf9\xa1\x1a\x39\x94\x09\x3d\xee\x6b\x23\x0d\x52\x88\x11\xb4\x0e\x72\x9f\xdd\xa9\x59\x5a\xb8\x25\xe4\x20\xcf\x82\x0c\xf1\xa1\x95\xa6\xd2\xb5\x1d\x17\x09\x24\x74\x41\x14\x70\xf9\x2c\x33\x37\xe1\x72\x5a\x40\xb4\xfe\x87\xb1\x90\x3a\x2d\xd1\x21\xe1\xb9\xfb\x95\x22\x1c\x17\x96\x54\xb5\xf8\x75\xc1\x50\x2d\x6e\x71\xc7\x96\x62\x74\xe1\x39\x1f\x35\x23\xd7\xd9\x0f\xf7\xfc\xf4\x85\xba\xdb\x33\x8c\x3f\x72\xe3\x56\x19\xc5\x56\x95\x06\x34\x11\x72\x7f\x7b\xc3\x18\x2f\x25\x5c\xd7\x4e\xfd\xcf\x16\x4e\x19\xa1\x96\xa8\xf9\x4e\xee\x03\x1d\x1a\xdd\x8c\x59\x35\xee\x49\xb1\x6a\xb5\x0a\xa6\x35\xdc\x2a\x14\xa3\xa7\x5e\x33\x9d\x66\x2b\xd5\x40\xb8\x79\x9f\x3b\xb8\x0d\x61\x6d\x27\xc8\xd3\xe8\xe7\xaf\xa8\x59\x7d\x85\x30\xc4\x6c\x4d\x45\x2c\xef\x2c\x37\x75\x75\x5c\xca\x90\x67\x87\xae\x9c\xf0\xec\x3f\xa4\x36\xa0\x58\x72\x3c\x7b\xc8\xee\xeb\xd4\xca\x67\x4d\x57\x83\x6b\x6a\x18\x9d\xff\x0a\x23\xae\xd0\x64\x3d\x18\xa4\xd7\x5e\x2f\x6e\x12\xc1\x69\x4c\xce\xae\xcd\x6f\xa9\x22\xa2\xec\x84\x7e\x15\xa2\x7b\xe6\x88\xee\xa7\xd1\xc0\x5e\xc8\xc3\x72\xc7\x3e\x61\x4f\xde\xc4\x1e\x0c\xbb\x07\xb2\x8d\xac\x51\xc7\x63\x5a\x77\x30\xe0\xe7\xba\x67\x28\x3a\x34\xd3\xc4\x7d\x33\xa3\x26\xc3\x72\xa3\x21\xf3\xb1\x03\x32\xef\xd9\x2b\x06\x19\x3e\x6a\xdd\xc2\x89\x31\x7f\xcd\xbe\x4e\x4d\x93\xaa\x54\xc2\x8c\x57\x18\x10\xae\xbf\x6c\x50\x3d\x69\xb9\x4c\xac\xc4\x74\x63\xfe\x49\xd5\x70\xb1\x51\xc0\xcd\x2b\xdf\x9d\x35\x42\xef\xcd\x59\xd8\xe6\xca\xcc\x5c\x7a\xf2\x6d\x75\x24\xd8\xd8\xb7\xa0\x12\xce\xde\x78\xef\x50\x8d\x73\xe5\xd4\x80\x70\x35\xe9\xe4\x04\x73\x39\x54\x84\x1e\x54\xdb\x14\x63\xa4\xf2\xe0\x22\x81\xd9\x2e\x8c\x6a\xe0\x41\x56\x98\x13\x17\xe8\x38\x74\x53\x84\xaf\x7f\xbb\xee\xac\xf3\x2e\xe8\x42\x17\x37\x1a\x3d\x5c\x46\x2a\xc4\x13\x46\x94\xd1\xf5\xaf\xa7\x17\x5d\x10\xb2\x1a\x6e\x49\x1a\xc3\xed\x8b\x06\xf2\xb3\xaf\x37\x21\x99\x40\x87\x56\xa2\x5a\xbb\xd6\xa6\x1c\xa2\xcb\x8c\x7a\xa2\x7f\xfc\x9d\xc3\xba\x6d\x9c\x1f\x3a\xc0\xee\xf9\xff\x16\x68\xa0\xe9\xaa\xb0\x96\x1a\xc8\xbe\x3a\x43\xd8\x25\x20\x57\x28\x9d\xaf\x5f\x3e\xce\x78\x7e\x4d\xe2\xf9\xb5\x96\x80\x6d\xca\xb3\xea\x56\x2d\xe4\xd9\xa8\xa5\xfd\xcb\x47\x94\x83\x2b\x62\x9a\x40\xe1\xc9\x7d\xd0\xc0\x9a\x17\x1f\x2f\xfa\x04\xf4\xda\xd7\x53\xb3\x76\xcf\xc3\x6d\x2a\xce\xef\xbf\x95\x94\x16\xfd\xb4\xd2\x16\x62\x56\x1e\x4c\xca\x23\x1b\xbb\x6d\xef\xf9\x55\xcd\xfa\xb2\x41\x58\x85\x78\x84\x73\x39\x4e\xf5\x41\x6f\x65\x8e\x83\x40\xd8\xa6\x1b\xe6\x61\x85\x0a\xa3\xa1\x07\xe2\xae\xfc\x29\x9d\x3c\xa0\x77\x2c\x2a\x5c\xd2\xae\x50\x8c\x3e\xba\xce\x38\x6e\xa9\x43\x04\x64\xf6\x27\x27\x52\x40\x04\x3f\xa8\x0a\xdb\x89\x8f\xef\xef\xd4\x40\xca\x8e\xab\x7b\xdc\xe6\xe7\xad\xd0\x2c\x2c\x3d\x8b\x61\xb8\x80\x68\xd4\xfb\xc2\xaf\x16\xcc\xdb\x3e\xb9\x4e\xa3\x17\x48\xd8\xd1\x23\xcc\x20\x81\x50\xa7\x2c\xc3\x74\xed\x69\x45\xe8\x00\xb3\xb8\x07\x47\x42\xaa\x31\x97\xb3\x71\xf9\xcd\x7f\x55\xeb\x7f\x23\xcb\xc2\x75\xfe\x8b\x83\xb4\xf2\xb1\x82\xdc\xf6\x64\x7c\xc3\x08\xe3\x84\xf3\x7d\xc2\x69\x07\xb0\xd8\x9f\xf7\x46\xa6\x21\x7d\xa9\xf7\x3a\xbc\x43\x13\x1f\x99\x7a\x15\x2f\x37\x1e\x1d\xa9\xc3\x64\x4d\x28\xdf\x2e\xa1\x1f\x8b\xfb\x08\x2f\xf2\xb2\x7b\x7a\x55\xe2\xec\x52\x2f\xa8\xc7\x25\x21\x34\xba\x7e\x38\xaa\x53\xcb\x6c\x88\x4b\x3c\xae\x64\x06\x7d\xa9\x3f\x69\x52\xae\x55\x0e\x14\xe7\xe7\xdd\x57\x4a\x6d\x9a\x87\x65\xcc\x78\xb7\x98\x77\x3a\x9e\xba\x5e\xd5\x06\x41\x35\xe4\x93\xac\x7b\xb5\xf8\x84\xe3\x42\x13\x76\xe2\xb3\xdb\x0c\xbb\x6b\x45\x95\x15\x85\xc6\xc7\x56\xab\xf7\xdd\x70\x90\x4d\x7c\x07\x35\x0a\xc5\x88\xce\xd2\x84\x15\xc3\x00\x74\xbb\xa3\x0d\xa3\xb4\x86\x04\x65\x65\xea\x70\xc0\xe8\xee\xcd\x42\x0c\x29\xa1\x2a\x70\x6c\xdf\x52\xed\x6d\x56\x18\xe6\xeb\xe8\xbd\x63\x3c\x8b\x2a\xdc\x46\xbd\xa0\x42\x5d\xcc\xda\xaa\xf4\xec\x7f\xdb\x17\xc8\x3c\xb8\x0e\xda\x05\xef\x4d\xd7\xdc\xf3\xa8\x13\x0a\x90\x6c\xf4\xe4\x79\x43\x45\x44\x76\xb8\x3f\x29\x48\xab\xde\x37\x37\x59\x6a\x21\xd7\x38\xcd\xae\x32\x34\x3e\x94\x02\x1c\x2f\x6b\xf3\x99\xf7\xd4\xe6\xba\x42\x6b\x5c\xcc\xbe\x47\x26\xdf\xe0\x70\x8a\x39\xf5\x2f\x3a\x7e\x5a\xe3\x7e\x6b\x38\xf7\x2d\x06\x88\xba\xcb\xef\x9a\xc4\xfd\xe2\x79\x7d\xb6\x61\x56\x4a\xcf\xe9\xea\x42\x31\x7a\x76\x7f\x92\x48\x59\x28\x1d\xdc\x73\x9d\x97\x36\x65\xdd\x4e\xfc\xb6\x80\x92\xfb\x72\x77\xba\xe0\x96\x63\x8d\xb3\x1d\x33\xd1\x22\xcd\xc0\x20\x11\x0f\x88\x9f\xeb\x84\x8b\x75\xf5\x11\xe4\x07\x8c\xd6\xab\x9c\x3a\x95\x3d\x64\x1c\x9f\xc2\x37\x19\xb4\xf1\x73\x1f\x5a\x62\xe0\xac\x68\x53\xca\x79\xe5\xfe\xab\x47\x1d\xad\x7e\x93\x8b\x6d\x0d\xe4\x1e\xe9\x80\xbe\xa5\x0f\x8d\x8c\xec\x91\x3e\x75\xd6\xca\xb5\x2f\x8e\x9e\xbb\xc7\x5f\xac\x9d\x13\xa0\x44\x20\x23\xfb\x05\xab\xd3\x47\x43\x03\xf5\xd6\x51\x0b\xe3\xb4\x00\x47\xf6\x1b\x83\x4c\x4d\x9f\x46\x32\x8b\xc9\xce\xbe\x5f\x9f\x5f\x56\x20\xc9\x28\xce\x53\xd0\x78\xa6\x43\x4e\x8a\xd7\x99\x55\x44\x90\x50\x75\x4c\x48\x19\xf7\x9d\xb4\xaa\x82\x72\x78\x7a\xae\xc1\xd3\xc1\x41\xd5\xc1\x55\xec\x82\xcf\x4b\x7c\xab\xeb\x77\x6a\xf4\x3e\x50\x44\xa7\x47\x4c\x09\x65\x44\x98\xe6\xc6\x91\xb9\x7e\x1b\x2c\xca\x25\x55\x44\xa4\x75\x5d\x5c\x79\xf5\xf4\x2b\x52\x02\xd8\xb4\xfd\xf1\x5c\xc3\x6b\x02\x31\xe2\xeb\x6a\xcc\x4b\x97\xaa\x73\xb2\x5f\xc3\x02\xfc\x76\xbe\x49\x8a\x45\x4e\x4b\xcd\xc1\x72\x8b\x84\x06\x7b\x19\xc5\x25\x15\x3f\xb3\xef\xd6\xb4\xb9\x4b\x21\xe1\x52\xc6\xbf\x7d\x54\xcf\x16\x2d\x04\x5a\xd5\x51\x75\x50\x42\x29\xe1\x8a\xa5\x8f\xa9\xe3\x48\xf6\x12\xaa\x94\x02\x98\x7e\xc8\x71\x15\x43\x80\x7e\xcb\x2b\xbf\x1d\x86\x03\x80\x1f\xa0\x92\x43\xfc\xaa\x50\x80\x2a\x0e\x64\x32\x06\x18\xc7\x46\x61\xa5\x1a\x48\xc9\xa9\xcc\x7d\x0b\x20\xe9\x68\x22\xc7\xe1\xd5\x79\xb6\xef\x94\xd1\x48\x93\x16\xca\xa2\xbd\x70\xee\x5b\x9a\x98\x2f\x37\xe7\x2b\x46\x9f\x5e\x6b\x60\x50\x28\x88\x08\x48\x5d\xc9\xa9\x42\x18\x15\x8b\x86\x54\x66\x45\x00\x94\xa2\xc5\xc8\xf5\x71\x7b\xe4\xdb\x64\xaa\xb7\xf3\xf6\xbd\x30\xc7\xaa\x4c\xd4\xb6\x15\x72\x61\x5a\xb6\xc0\xa0\xb7\x58\xf1\xf1\xc2\xf5\xb4\xc5\x0a\x9b\xb9\xd0\x1c\x0f\xfb\x02\x41\xfe\xd0\xd4\x61\x32\xd3\xb5\x95\x7b\x4a\xf6\x99\x73\x93\xbe\x45\x3d\x8c\x17\xe4\x65\x2f\x9a\x65\x76\xd0\xc4\x58\xad\xc7\xcf\x2d\x37\x2f\x1a\xd9\xfc\xa2\x01\x6f\x32\x1d\x4a\x03\xec\x71\xec\x2c\x9f\x61\x7c\xeb\x95\x0e\x73\x4b\x41\x29\xba\x5e\x4b\xca\x2d\xe4\x40\x4f\xfd\xc4\x38\xc3\xf9\xd0\xa1\xfc\x30\x6c\x10\xc7\xc1\x89\xa5\x6e\xa6\xf8\x26\x9c\x05\x38\xb4\x90\xd3\xaa\x07\x21\x18\x1f\x2e\x1c\x2a\xc3\x0e\xbf\x45\x18\x85\x9c\x6b\x7a\x2c\x53\x37\x51\x88\xf9\xf8\x3d\xba\x5c\x09\x72\x34\x79\xbf\xac\x9b\x35\x46\x28\x89\x44\x42\x66\xf3\xc3\x42\x98\x88\x91\xbe\xf8\x63\x5e\xd8\xaf\x53\x01\xf9\xb5\x7c\xe0\x9c\x36\x18\x1f\xf5\x2a\x80\xad\xce\x7f\x65\xfd\x2c\xbf\x8a\xea\x38\xe1\xb0\xcd\x2a\x87\x70\xc9\x63\xf9\xcf\xc7\xa2\x60\x6c\x77\xdf\x8c\x92\x8d\xbb\xed\xa9\xd7\x4d\x52\xc9\xab\xbc\xff\xa3\xf7\x19\x1c\xf3\x26\xf1\x7d\x8b\xba\xed\x82\x68\x39\x67\xf7\x70\xbd\xd1\x17\xa7\x78\xbc\xc8\xf9\xe4\x2e\x4d\x74\x88\x2f\x7f\x29\xbe\x75\xfd\x2b\xc6\x5c\x5c\x3a\x9a\x42\xaa\x79\xff\xe3\xe9\xe7\x72\x85\xac\x12\xa2\x49\x86\x1e\x8a\x5f\xa5\x56\x0d\x0b\x24\x56\xe6\xf7\xf3\x4d\x45\xba\x44\x94\x28\xfe\xd8\x0f\xee\x4a\x7f\x2c\x2a\x85\x72\x62\x35\xaf\x43\x80\xb5\x9d\xf8\x52\x20\x04\x8d\xbe\x06\xde\xf5\x6c\xa4\x35\x51\xb2\x0f\x1e\x31\x40\x34\x18\x89\xba\xba\xf5\xf2\x50\xfd\x31\x08\xbb\xef\x7d\x8e\x51\x1a\x31\xe4\xf9\x65\xca\xdc\xa4\xb3\x77\x7a\xbd\x46\xd1\xba\x3b\x24\xcc\x15\x5d\xd2\x8f\x77\x8a\x99\x01\xa9\xd8\xc8\x21\xda\xca\xc9\xdc\x76\x4c\xb9\x1c\x86\x6d\xd3\xa6\xdc\x4d\xfd\xa6\x14\x6e\x19\x85\x4e\x20\x80\x1a\x63\xb3\x86\xa8\x29\x97\x5f\xc6\x09\x2c\xe1\x23\x87\xb4\xc2\x2a\x10\x61\x76\x20\xf3\x3d\x66\xce\x89\x40\x51\x90\x0f\xa9\x07\x6d\x1b\x6f\xbe\x51\xe4\x20\xab\x4a\xc0\xa5\x3a\x29\x8d\xf2\xd7\xce\x85\x9a\xe9\x33\xc8\xf7\xb5\x7e\x58\x74\x72\x4f\x2a\x09\x62\x82\x01\xf9\x70\x9f\xd1\x18\x0f\x90\x85\x3c\x87\xa4\xc4\x9d\x7e\xb5\x4c\xed\x73\xd4\xa0\x84\x5f\x6e\x49\xb3\x9f\x01\x1c\x73\xa1\x18\x65\x1f\xbf\xd8\x08\x5f\xac\x42\xc5\xfb\xfb\xcd\x4a\x63\x98\x8f\x2c\x52\xe6\x9a\x8d\xfd\x6d\xe9\xd2\xbf\x0e\x4e\x72\x42\x54\x2e\x17\x8a\x51\xa3\x3b\xf9\x41\x05\xc5\x2b\xf5\x2b\x75\x43\x25\xd8\xb3\x09\xef\x0f\xcb\x0d\xf6\xe5\x59\x9a\x08\x0a\x87\xc2\x16\x8a\xd1\x6b\x2b\x0d\x01\x32\xc2\xf8\x7b\xf1\xa5\x92\xe6\x8d\xb3\xda\xc5\x49\x7c\x69\xf6\x95\x1f\xaf\x09\xff\x58\xa1\x5f\x15\xcd\x9b\xff\x78\x3b\x69\xad\xd6\x5a\x89\x63\xd3\x8d\x7b\x0d\x72\x36\x75\x4b\x60\xb8\x21\xae\x70\xb5\xa9\x51\x2d\xc5\x22\x61\xcf\xdc\x35\x2c\x7d\x6a\xb6\xc2\x0a\x8d\xb3\x7d\x90\xe7\xe7\x1d\x79\x3a\x36\x79\x2a\x5d\x84\x6f\xaa\x57\x7b\x8d\xed\x43\x5c\xce\x4f\x89\x22\x2f\x95\xce\xce\x2c\x14\xa3\x47\xde\x32\x5c\x24\x49\x03\x83\xe4\x5b\xe6\xd8\x96\xb3\x94\x86\x42\x29\x82\xbc\x3c\xd6\xb8\x2f\xc7\x49\xfa\x83\xb2\x2e\xbd\x6f\x37\xec\xad\xf9\xc8\xa2\x25\x1f\xeb\x7a\x75\x77\xbc\xa0\xb5\x1b\xe2\xaa\x19\x82\xfc\x47\xf7\xc0\xe9\xeb\xa0\x12\x06\xc1\xe4\x75\xfd\x83\xe5\x1e\x71\xc1\x49\xe8\x71\x28\x6a\x7b\xc1\x02\xf9\xf5\xe7\xb5\x91\x1b\xa9\xd7\x20\x55\xf8\xfa\x1e\xad\xed\x1f\xaf\xc9\x2d\x59\x03\x84\x42\x9b\xd2\x93\x54\xa5\x8d\x3f\xad\x6b\x4c\x2a\xd4\x27\x85\x46\xaf\x58\x96\xbc\x59\xaf\x4b\x3c\xf6\xc8\xd2\xbc\x0d\x84\x13\x50\x74\x79\xd7\x30\x6d\x70\x48\xfa\x41\xfb\x3a\xbf\xfa\x1d\x0d\xda\xc8\x7d\x20\x00\x39\xf6\xee\x2a\xf5\xeb\x4d\xe2\x07\x7c\x2a\x37\x90\x8b\x26\x27\x61\xa7\xfe\x89\xf6\x22\xa2\x39\x4a\x2b\x40\xe3\xec\x0a\xaa\xc6\xf0\xa5\xcb\xb5\x95\xce\x13\xab\x76\x7f\x9c\xfc\xf4\xc5\x86\xfc\x0f\x0d\x03\x69\xe5\x91\x9b\x3a\x59\xf5\x3c\xcb\x98\x31\xc4\xb4\x98\x9c\xff\xe2\x0b\x43\x15\x57\x39\x41\x09\xfe\x7c\x0d\x40\x53\x91\xef\xc7\x15\xbc\x27\xe7\xa4\xd1\x77\x0c\x61\x45\x0f\x37\x92\x44\xee\xc9\xa5\x9d\x89\x97\x51\x1b\xfe\xa4\x7e\x54\x1d\x74\x0d\xcc\xfc\x6a\x89\x36\xe3\xab\x1b\xbe\xc5\xf4\x7c\xe0\x2c\xa2\x8a\xc2\x38\x36\xb7\x6b\xad\x40\xee\x5f\x2a\x2d\xa2\x73\xbf\xdf\x65\xa6\x5c\xa1\xe7\x63\x87\x32\x31\x81\xcf\x05\xb3\xf8\xe5\x16\x96\x22\x9f\xc4\x11\x57\xd7\xa9\xdd\xda\xa5\x50\x82\xc4\xe3\x4a\x8a\xb4\x1d\x25\x98\x2d\xac\x86\x95\x6a\x81\x8b\x5b\x74\xe3\xa8\x8b\xcd\x63\xb4\x29\xd5\x93\xe7\xef\x33\xaf\xc7\x2b\x73\xf8\xa5\x84\x59\x3d\xf4\x8a\xa6\xdb\xa6\xa3\x12\xee\x39\x0e\x4d\x9c\x69\xdd\xdd\x85\x3a\x6f\x37\x15\x07\xf2\x77\x08\x85\xec\x39\xc8\x2d\xd1\x38\x04\xf2\x53\xf1\xaa\xbe\xe4\x8d\x55\x70\xa2\x88\x34\x55\x24\x77\x73\xc2\x92\xe4\x83\xe5\xb6\x3e\xa3\xf4\x4f\x5c\x14\x34\x08\xf6\x6a\xfa\xbb\x1f\x7b\xaa\x0d\x29\x07\x3a\x8b\x22\x9d\x9c\xf4\x98\x5a\x93\xba\x63\xff\x53\xc6\x2b\x8b\xb3\x16\x4e\xb0\x91\x89\xdb\xad\xcf\x1b\xfd\xde\xa0\x8a\x59\x32\x0c\x7a\x65\x33\x5c\x6a\x99\x86\x4c\x48\x9f\x66\x76\x19\x64\x76\x9f\x00\x22\x8f\x7f\xdc\xef\xf7\x9a\x75\x1f\x4b\xc6\xe0\x9d\x86\x4e\x51\x19\xfb\x01\xe5\xe6\xa0\xfc\x6c\xdd\xbf\xda\x2c\x9d\x31\xaa\x27\x2b\xf6\xc6\x2b\x87\xea\xb4\x27\xde\x94\x8b\x0e\x0c\xd1\x44\x33\xaa\xd8\x02\xa5\xed\xe8\x36\x25\x53\xc9\xcb\xf2\xe8\xff\x68\x9e\xf0\x8c\x54\x88\x0d\x16\x30\x5f\x7d\x76\x84\x9a\xc5\xe9\xbe\xaa\xd1\xfe\xa9\x69\x7c\xfd\x38\x3e\x24\x8c\xfe\x63\xb7\x91\x97\xb9\xc8\xaf\x26\x1e\xf8\xeb\xc7\x25\x51\x8a\x21\x57\x1e\x2f\xbf\xd5\xda\x1e\x7e\x8d\x08\x75\xc2\xdc\xc4\xe3\x49\x8c\x41\x5e\x3b\x30\xe4\xe7\x47\xce\x17\xbb\x08\xba\xec\x03\x19\x7f\x90\xea\x3a\x34\x11\x2b\x04\x94\xc9\x23\x2c\xf7\xb9\x65\x1a\x38\xd1\xe2\x8a\x5f\xfc\x3b\x1a\x97\x68\x23\x10\xa7\x2c\x6a\x41\x81\xcb\xdd\x3e\xc8\x14\x94\x66\xb6\x95\x20\x64\x33\x57\xbd\x22\xa6\x13\x34\x10\x2e\xfc\x03\x99\x8f\x5d\xa0\x13\x5d\x95\xb2\xbd\xd6\x46\x2b\x21\x27\x20\x35\xee\x91\xf3\xa1\xfb\x8c\x11\x19\x23\xae\x80\x6e\x46\xe3\x97\x28\x76\xb2\xdb\xd6\xc0\x9f\x76\xea\x42\xb1\x13\xaa\xb4\x82\x3c\xde\x9f\x3a\x7a\x70\x84\x56\xe5\xd4\x49\x7c\x55\x3e\xd8\x00\x0c\xeb\x57\xb7\x8f\x3d\x64\x89\x51\x46\x78\x8e\xd6\x2c\x69\xd9\xba\x8a\xe3\xf7\xb6\x48\xa6\x4d\x9c\x91\x08\x5e\xc6\xb0\x23\xe9\x93\xbe\x4a\x2a\xd5\x82\xf0\xad\x14\xd8\xe0\x0f\x75\x1b\x93\xe0\x00\x05\xd8\x87\x33\x2c\x3e\x93\x1e\x78\x14\xaa\x43\xde\x34\xae\x93\x38\x69\x8f\xff\x6c\xc7\x16\x4d\x3f\x4c\x57\x72\xac\x3c\x6c\xd8\x00\xba\xa8\x12\x9f\x06\x90\xca\xe7\x3d\x43\xfc\x05\xdb\xa1\xa5\xd4\x1d\x7a\x0c\xad\x5b\x37\x4e\x27\x13\xaa\xf3\x95\x07\xcd\xdc\xc1\x15\x52\xcb\x11\x9e\x75\xa1\x0c\xd1\x08\x48\xb5\xd1\xb3\xcf\x0c\x55\x5e\x8c\x9e\x3c\x5b\x86\x1e\x35\x0e\x2b\xc4\x40\xfa\x3a\xbe\xa9\x5f\x8d\x37\x00\x9b\x16\x62\x0e\x0e\x64\xe8\xd8\xb5\x38\x0d\x8d\x85\xb5\x07\xa3\x78\x99\xc3\xa0\x67\x3f\x6a\x16\xc1\x65\x18\x51\xb6\x35\xab\xb7\x8e\x6a\x4b\xbc\x19\x97\x46\x06\x02\xe7\x6d\x79\x23\x8c\x85\x81\x13\x3f\x48\xd8\x99\xbf\x5e\xd1\x99\xde\x08\xdc\x6b\x5d\x4c\xf7\xd1\x48\x95\x47\x54\x18\xd7\xfc\x89\xc6\x8e\xd4\x90\x1b\xb4\xca\x1b\x53\x2f\x18\xc2\x7d\x1c\xc2\x2d\x31\xdf\x41\xbf\x06\x7e\x47\x2c\x00\xc7\xbc\x68\xd4\x54\xcd\xdf\xdd\x71\x84\xef\xe7\x40\x66\xcb\x63\xba\xa6\x57\x9d\xfb\x58\xf1\x9e\x70\x9f\x98\x10\x24\x06\xa7\xdc\xdc\xb4\x47\x7d\x78\x95\xba\xc4\x12\x02\x98\xc7\xae\xd7\xd8\xde\x34\x74\x6c\x61\x4b\x71\xd4\x90\x91\xb5\x90\x67\x4b\x11\xd8\xfc\xfa\xb1\xd0\x08\xbb\x19\xb3\x40\x9b\x0b\xe5\x7e\xfc\x8a\xda\xc4\x4d\x62\x55\x09\x78\xc2\x8d\x5b\xaf\x19\xc5\x21\x0f\x52\xbe\xc9\xc3\xd4\x23\x0b\xaa\x14\xb6\xcf\x93\xdb\x47\xb6\x6d\x77\xe2\x21\x07\xf4\x62\x7e\x64\xca\xf6\x0b\x33\x20\x21\x6e\xfc\x9f\xeb\x61\xe3\xf0\xba\x11\x5e\x2d\x1f\x62\x8e\xd5\xda\x47\x48\x30\x7f\x8a\xf7\xa7\x93\xeb\x99\x33\x66\x88\x92\xaf\x9b\xc1\x29\xcc\x0f\xb1\x26\x81\x02\x3d\x7b\xdb\x3b\x17\x6a\x89\x19\x4c\xd5\xd6\xdc\xa5\x51\xc2\x9c\x96\x5b\xd7\x8c\x79\x0e\x6a\x16\x2a\x01\x58\x5a\xf2\x74\xa2\x73\x9f\x09\xd7\xf4\xb0\x23\x90\xea\xc3\xb4\x16\xbf\xe5\x60\x24\x14\xcf\x3b\xc5\x88\xd7\xa2\xe0\xb1\x1f\xff\x6a\x6d\xb2\x0a\x64\x0e\xd5\xf9\x3d\xf9\xae\x51\xe6\x09\x69\x4b\xfc\x2e\x6f\xcf\xfd\x60\xcf\x45\xed\x09\x4d\x57\xa1\x18\x9d\x99\xa0\x88\x5f\xf1\x59\x1d\x54\x0b\x3e\xd6\xed\x6b\xf2\x93\x5f\x54\x2b\x6e\xca\xe4\xee\x99\xd3\x26\x4f\xe3\xde\x99\xf9\x4f\x6c\x33\x8a\x68\xae\x54\x22\x40\xd9\xd3\x37\x1a\x75\x0c\x03\x65\xb8\xe8\xe0\x36\xe8\x65\x36\xb1\x63\x51\x97\xcf\x73\x2e\x5a\xa1\xe8\x92\x89\x7d\x94\x2f\x2d\x46\x76\x8d\x3a\x5f\xa6\xa9\x1c\x93\x1d\xf5\xad\x4b\x0e\x69\x2b\xce\x2f\x23\x77\xa2\xd1\x2d\xb1\xac\x90\xa1\x40\x30\x45\xb2\xb7\xcc\x32\x84\x94\x78\xe6\x4d\x2a\x5e\x20\x9d\x74\xbe\xb7\xc2\x10\xd4\xe5\x55\xa5\xb4\x42\x0b\x9e\x97\xf2\xf2\x05\x41\x9b\x2d\x0e\x64\x46\xed\x32\xc1\x66\x98\x2b\x6e\x03\x5f\x3c\x73\xce\x2c\x81\xe3\xa8\x86\xcc\xb7\x11\x77\x59\xf9\xeb\xae\x8b\x3c\x5d\x43\xa0\x37\x44\x1e\xe2\x27\xf4\x99\x03\x5a\xa9\xcb\x68\x1d\xf3\x76\xf2\xef\x37\x9b\x94\xba\xa6\x0c\x1a\x2f\x83\xab\x71\xc1\x45\x15\xd4\x4f\xbc\x36\x16\x46\xe6\x6b\x4b\x92\x73\xa3\x9e\x6a\xcf\x90\xa8\xd3\xac\x59\x13\x77\xaf\xfc\xba\x48\x6a\xcb\x32\x8c\x0b\x9c\x89\xe6\xc0\x4f\x6e\x43\x2d\xca\x61\x48\xf9\x3b\x34\x9d\x00\x0b\xb9\xf5\x12\x06\xe8\xd0\xb9\xa7\x44\x3f\xd0\xb3\x68\xc8\x00\x62\x38\x90\xf9\xcc\x39\xb2\x1f\x68\x31\x52\x26\x16\x34\xff\x3f\x73\xa2\x5d\xe8\xc7\x8d\x37\xca\x3f\xcc\x4f\x04\x4f\xb8\x1a\xf4\xea\xf3\x52\xde\x75\xd8\x2d\x89\x41\xdb\x07\x82\x11\x7a\xe8\x0d\x3d\xdb\x07\xe1\x9e\x81\x5c\x61\x55\xdb\x24\x1d\x04\x4a\x65\xba\x38\x31\x3b\xca\x8c\xf8\x7e\x9d\xd6\xb0\x27\x95\xcb\xee\xdc\x9e\x64\x77\x7e\x55\xa7\xee\x46\xd7\x0a\x3a\x19\xf6\x1a\x94\x6b\xc4\x64\xff\xfe\x6d\x45\x5c\x2b\x87\x5a\xcf\xe5\xdd\x5e\x73\xcf\x57\x12\x07\xb0\xc7\x5e\x57\xfe\xc5\x9e\x39\xdb\x8e\xae\x58\xa4\x46\x23\x9e\xe6\x19\x99\x7d\xf0\x4d\xb3\x1d\x5a\x83\x7a\x3f\x1a\xfa\x56\x1b\x3f\x22\xc0\x96\xec\x67\xdd\x7c\xc4\x50\x36\x09\x89\xc3\xf1\x32\x1c\x27\xf6\xd8\x75\x97\xc8\xaf\x2b\xb7\x0b\xf6\xad\xda\x39\x44\x1f\x2a\x22\xb7\x50\x8c\xd6\x33\x93\x27\xc7\xbd\xf4\x8b\x03\xd9\xb7\xaf\x31\x3b\x67\x25\xe2\xc0\x60\x18\xaa\x82\xf5\x9a\xfe\x0d\x0e\xc0\x31\x26\x3b\x61\x43\xfa\x85\x84\x9e\x8d\x2d\x07\x25\x86\x27\x99\xd9\x55\xed\xd4\x40\x5e\xc8\x2b\x94\xce\x86\xfa\xa1\x83\x9a\xfc\xc0\xcb\x54\x3b\x34\xd9\x98\xb8\x6c\xe5\x53\xfb\x61\x59\xd3\xb6\xcc\xa1\x61\x83\x11\x6e\x20\xaa\x7a\x08\xff\x5b\x8c\x59\x1a\x88\x11\x21\xa7\xda\x37\x41\x37\xd2\xa6\x7c\x1c\x92\xed\xce\x1b\x73\x1e\xcc\x2c\x6e\x21\x28\x7a\x7d\x3d\xcf\x18\x76\x3d\xa8\x9e\xb8\x72\x1a\xc9\x89\x61\xc9\x8d\x49\x7c\xfe\xc8\x7e\xec\x7f\xd6\x75\x1e\xb0\x85\x49\x03\x52\xae\x7f\x3c\xa9\xe0\xb2\x35\xc2\x88\xe3\xd0\x06\xb1\x34\xa7\x9b\x6b\xc6\x1b\xd5\x46\x5c\xd5\xc9\x79\x5c\x6e\xd2\xfc\xf4\xeb\x23\x82\x20\x14\x4d\xdc\x66\xea\x5f\x7b\x54\x56\x51\xd5\x9d\xe7\x2b\x51\xa0\x78\xab\x3e\xf4\x7a\x7a\xa8\x80\xa0\xc7\x16\x75\x2e\x31\x82\xb1\x13\xa7\xca\xa0\x5d\x51\x1c\xc8\x4e\xbe\x52\x51\xdc\xb0\x2e\x9d\xb3\xea\x05\x75\xae\x86\x1e\x67\x79\x0a\x83\xda\x3c\x5d\x6b\xf4\x4e\xe3\x48\x80\x3d\x42\x01\x53\xa6\x39\x29\x94\xd4\x2c\xc1\xa3\xf1\x59\xa6\x3e\xff\xab\x4f\x89\x82\x94\x61\x6c\x53\xae\xe1\x96\xfd\xc3\x73\x5a\x44\xa6\x5e\x80\x3d\x5c\xe1\x20\xc2\xec\xbe\x37\x35\x06\x2e\x76\x48\xe2\x8b\x31\x90\xa9\x1e\x4f\xb7\xa3\xd2\x30\x73\x71\xe6\xfc\x62\x3f\x04\x8a\x8a\x83\xa0\x64\xcc\x0d\xd1\x0c\x93\x2a\x0c\x63\x4f\xaa\x3c\xe5\x6f\x3c\x34\xc6\xcc\xc6\x7d\xe0\x47\x2a\xc0\xcc\x57\x0f\x41\x83\xe2\xf6\x45\x5c\x7b\x6a\x20\xdf\x18\x9d\x7e\xfc\x60\xf3\x5f\x8c\x46\x6c\x50\x05\x43\x58\xd2\x02\xff\x39\x4f\x40\x97\x64\x3e\x46\x5e\x61\x11\x0a\x35\x56\x60\xee\x0b\x87\x8d\xf0\xe1\x20\x2b\x11\x37\xcc\xfe\xe1\x5d\x03\x08\x5d\xa5\x8c\x86\x15\x49\xb0\xfa\xd4\x7c\xd8\x35\xd8\xb7\x28\x83\x1c\xe9\xb1\x67\x45\xe3\xaf\x4e\x03\x5e\x67\xcd\x31\xcc\xec\xfc\x80\xa1\xa6\x2e\x7b\x9b\xfd\x98\x26\x4e\xe2\x53\x17\x73\xcc\x62\xa1\x18\xdd\xf1\xb8\x32\x6a\x73\x4c\x26\xc3\x40\xf6\x3b\xc6\x44\x43\x48\x45\x09\x24\xe0\xc6\xf9\x66\x9b\xdf\xe2\xc6\xe6\xfc\x8c\xce\x7e\x30\x6b\xb8\x7e\x61\x66\x13\x2b\x90\x32\x23\xf9\xb6\x1a\x89\x11\xa5\x9e\xf0\xd5\xf7\x2e\x91\x93\x23\xf9\x1c\x93\xbb\xf9\x9f\x93\x23\x44\x84\x13\xb8\xe2\xc4\xc9\x2b\x73\xf1\x6b\x46\xcb\x16\x49\x46\xe3\x1f\xb7\xa4\x77\x65\xa1\x20\x0a\xde\x5f\xbc\xa9\x21\xbc\x69\x03\x44\x2b\x72\x5f\x3d\x3c\x4c\x24\xe3\x9e\x6e\x0d\xf0\xbb\x83\x1a\x06\x24\xac\x84\x7c\xc4\x3d\x64\x2d\xbc\xa1\x79\xe0\x13\x10\xff\xf9\xdc\x57\x8c\x37\x8e\x58\xe1\xea\x1e\x19\xa6\x57\xbd\xa1\xbd\x0c\xe9\xcf\x12\x07\x9e\x7d\xea\x52\xa6\x77\x8b\xce\xe9\x23\x2f\x19\x4a\xba\x00\xd2\xcc\xac\xd4\x42\x27\x43\x60\xeb\x98\xfb\xb1\xf2\xe6\xc2\x4c\xd5\xb3\xd1\x85\x9a\xa6\xa0\x8d\x3d\x9f\x04\xf1\x1a\x10\x32\x9f\x97\x9e\x30\xad\x2a\xbd\x32\xf1\x2d\xe0\x7b\x8a\x82\xf0\xcd\x8d\x1a\xa1\x93\x70\x4b\x9f\xe8\xef\x17\x48\x55\x4e\x5a\xe6\x68\xf6\x95\x0a\x06\x19\x6a\xc5\x74\x3e\xdc\x91\xfe\x02\x1b\x05\x61\xcd\x90\xf6\xba\x67\x01\x00\x69\x6e\xf1\x1a\x18\xa8\xdf\xe6\xb9\xbd\x7a\xa5\x39\x6f\xa4\x8c\x60\x20\x7a\x64\x3e\xfb\xa2\x31\xb5\x0d\x99\x55\x95\x4b\x31\x53\xac\x0e\x16\x35\x5a\x10\xe7\x7e\x51\xd7\x5c\xcd\x1d\xda\x09\x2d\x62\x23\xa0\xbc\x64\xfe\x34\xbe\xc3\x48\xba\x85\x18\xa8\xa1\xc4\x57\x0f\x19\x78\x62\xc6\x0f\xe7\x92\x2b\x35\xdc\x26\x69\x21\xbb\xaa\x25\x2a\x9b\x0f\xab\xa0\x69\x51\xb7\x8e\xbc\x16\xb7\x0f\x89\xb7\xc8\xe7\x37\x26\xbb\xaf\x89\x9c\xb6\xdd\x77\xdb\x56\x59\xa4\xb0\x06\x0e\xb8\x95\x41\x66\xcc\xf1\xe4\x21\xfb\x58\x43\xba\x65\xce\x77\x8c\xda\xb2\x1a\xbf\x26\x31\x5f\xfc\xe5\xba\xb3\x08\x3f\xf9\x42\x3a\xe3\x4b\xe7\x25\xe9\x52\xa3\x3a\xa5\xed\x10\xed\x7d\xd6\x10\x1a\x0a\x19\x98\x9f\xc4\xd1\x69\x91\xa6\xf8\xc9\x31\x3b\x15\xce\xee\x18\xc8\x0f\x7f\x11\x36\xd0\x02\x5c\x2e\x6b\xaf\x79\x73\x55\x7f\x1a\x0e\xf5\x14\xc6\x37\x77\xff\x0a\x5d\x4d\xbf\x41\x19\xf0\x35\x47\xaf\x56\x25\x54\xe8\x93\xb3\x58\x33\xfd\x1f\x43\x18\xc8\xc6\x4e\x80\x84\xe9\x45\xe7\x56\x0d\x13\xc4\xc9\xb5\x01\x12\x0a\x2e\xf9\x8b\x7b\x45\xe9\x03\xe0\xc4\x62\x34\xe7\x8c\x66\x1e\x41\x7c\x98\x71\x2c\x8f\x60\x14\x3e\xa5\x6b\xda\x94\xf8\xff\xad\x55\x66\xc7\x37\x4e\x1d\x64\xc7\x21\xda\x1d\x19\xe6\xdd\xc4\xc7\x42\xf1\xf1\x9d\xeb\x34\x82\x70\x48\x1c\xde\xce\x3e\x79\x5d\xfa\xf7\x9d\xb8\xb2\xe2\xad\x93\xae\x45\x49\x21\x46\x61\x2c\xd2\xf3\xbc\x41\xd8\xc6\x75\x61\xff\x90\xdb\xfd\x9c\x8a\x1d\xd4\x93\xb0\xfc\x03\x67\x7d\x75\x10\xf8\x3a\x36\xa8\x16\x48\xe8\xb9\x88\x41\x4f\x2c\x83\xae\x37\x3a\xc5\xa1\xe3\xb4\x80\x8b\x91\xf9\xa6\xe1\x9c\xe7\x89\x8c\x4a\x40\xa5\xbe\x78\x28\xc9\x62\xa6\xf7\xf0\x84\xf1\xda\x0b\x4c\xeb\x4b\x29\xb6\x1d\x38\x42\xf1\xbd\xf5\x7a\xd2\xe1\x6a\xf8\x82\x41\x1c\x1d\x99\x67\xf0\x4d\x89\x9b\x12\x45\x7b\xb7\xdf\x40\x71\x20\xab\xc6\xd5\xab\x05\x0e\xb0\xf5\xb8\x51\xf2\x71\xf8\xe2\x87\x95\xe2\x64\xe8\xf1\x9f\xcc\x5c\xa9\x5a\x10\xbd\xb4\xca\x1f\x65\x7e\x1e\x14\x55\x25\xc4\x2a\x88\x78\x42\x6d\xee\xc0\x78\x43\x12\x15\x79\x35\x38\xc1\x73\x7f\x38\x01\x07\x40\x29\x2c\x97\x91\xc3\xdb\x0e\xf6\x8c\xcb\xcc\xfa\x95\xb5\x00\x4d\x23\x1a\xf2\x1f\x5b\x08\x83\xe8\xc5\xd4\x85\x04\x2e\x41\x31\x8d\x10\xa0\x71\x56\x41\x1e\x98\xc4\x46\x43\x8e\x24\x5b\x14\xd7\xdb\xaa\x88\xdc\xf4\x93\x70\xc5\xb7\x81\x64\x9e\x68\x3e\x7f\xed\x05\x0d\x78\x86\x90\x0e\xd3\xcf\x3e\x7f\x24\x7d\xaa\x7c\x0c\xba\x07\xf4\x7e\xc3\xc0\x83\x78\x16\xf5\xe2\xad\xa4\x02\x4d\x76\x83\xc1\xfd\xe7\xd8\x67\x96\x10\x10\x42\x0f\xa2\x96\x4d\x7c\x9f\x3a\x5c\xc7\x2c\xf3\x37\xad\x95\x47\x9b\xbc\xc6\x8f\x1e\xd7\xb6\xbb\xef\x84\x95\x0a\xf8\xe5\xe4\x1b\xcf\xc1\xcd\xa0\x20\xc0\x6e\x5d\x58\x2f\xde\x7f\x4e\xbb\xf5\xbc\xd5\xe2\x9b\x62\xe6\x2b\x1f\x16\x91\x97\xff\xe6\xa8\x4e\xf5\x46\x5d\xcc\xfb\xed\x99\xb5\x47\x54\xd9\x12\xc4\xc7\x1f\x34\xfb\x1e\xed\xd4\xf6\x4c\x59\x52\x7e\xfe\x3a\xde\xcc\x17\x2b\xc4\x32\x4e\xab\xe7\x0c\xac\x7a\xbc\x69\x05\x46\x28\x2a\x6e\x56\x11\x87\xcb\x32\x29\xc0\xf6\xdf\x36\x69\x35\x15\x28\x29\x47\x6c\x85\x3a\x8b\xca\x0e\x72\x4b\xb4\xc5\x8b\xa3\xe8\x6b\x5d\xc3\xcd\xe2\x9c\x67\xba\x17\xee\x37\xab\x0f\x14\x24\x30\xf6\xec\xf4\x19\xe9\xab\x97\xf8\x52\xe2\x24\xe2\x70\xd9\x3f\x1f\xd0\xd0\xff\x44\x2a\x9a\x67\xbe\x7c\x97\xd2\x34\xe3\x6a\xdf\x63\xe7\x0b\xaf\x38\x16\x0a\x29\xbb\xc9\xa7\xd4\xc3\xed\xb9\xaa\x30\x2d\xfe\xb3\x3f\x8b\xce\xc4\x82\x5b\x6e\x9f\xad\xf0\x3b\x97\x31\x63\xbb\x30\x8c\x6a\x80\x2d\xfa\xd0\x66\x58\xe0\x0b\x89\x55\xf3\x90\xcb\x17\x43\x71\x88\x01\xd1\xb3\x82\x30\x2e\x13\x1d\x51\x63\x3f\xa8\x69\x91\x71\xa0\x32\x6f\xdf\xaf\x5f\x3b\x42\x6b\xf9\x78\xa8\x82\x13\x25\xdf\xd5\x91\xcc\x91\x11\x07\xb9\x9e\xd9\x34\x46\x9b\x0d\xf3\xfa\xbc\x0d\xaf\xf6\x16\x90\x0c\x0a\x73\xaa\x71\xf6\xd0\xee\x41\x2d\x9a\x4e\x71\xcd\x1d\x40\xe9\x3b\x90\xf9\xde\x41\xcd\x91\x8d\x38\x15\x46\xa0\xf6\xf9\xde\x0a\xa5\xc3\x4c\x9b\x29\x81\x8f\xbb\x4d\x5c\x03\x67\xe5\x4b\xaf\xee\x7c\x26\x0b\xeb\xf9\xd3\x1e\x77\xd2\xcc\x7d\x58\xe3\x53\x97\x29\x0b\x42\x12\x00\x4d\x3f\x37\x6e\x1b\x84\x10\xec\x35\x08\xa3\x9e\x62\xd3\x8d\xd9\xab\x38\x5a\x89\x95\x43\x26\xb3\x5b\x1b\x8f\x23\xc6\x04\x26\x71\xd9\xdb\xba\x44\x33\x43\x01\xae\xf0\xd9\xdc\xe4\x75\xba\x4b\x0a\x0a\xed\x36\xa4\x7a\xf6\xd5\x65\xe6\x51\xe8\xd7\xa9\xe7\x4b\x19\x90\xec\xfe\x51\x3a\xa7\xc2\xad\x3b\x58\x80\x9a\xb3\xcb\xd6\x74\x6a\x53\x43\x0b\xd7\xa1\x2d\x09\x4a\xae\xa7\xc7\x0d\xd5\xd4\x43\xac\x80\x7b\xe3\x35\x1a\x86\x2e\x2b\xa9\x78\xbc\x2e\xe4\x27\x09\x34\x1a\xdf\xb2\x2f\x35\x6a\x47\x8c\x3d\x7f\xd2\x35\xf2\x09\xf8\x4b\x4c\x89\x18\x1b\x33\xe8\x6f\x89\x54\x6e\x16\x38\x43\xf2\xb9\x8c\x10\xdf\x8a\x76\x3f\x3c\xd6\xc8\x8f\xe3\x3b\x11\xda\xc6\x92\x80\xf3\xe8\x01\x83\xda\x47\x2b\xa1\x2f\x3b\x5e\x83\x6e\x32\xa0\x4b\x24\x0e\x9a\x52\x33\xec\xe8\x75\xc9\xa9\x34\x65\xe6\xcc\x42\x31\xba\xf0\xb0\x74\x1b\x72\x69\x40\x3c\x61\x8c\x1b\x2d\x9c\x3a\x44\x03\x86\xd4\x85\xc4\xc3\x8b\x26\x76\xb4\x8e\x2d\xc2\xd5\xa3\x24\x4d\xfe\x16\x65\x35\x59\x8e\x4f\xa7\xe8\x2b\xef\x8c\x10\xaf\x24\x64\x81\xf4\x3c\x80\xc2\x65\xda\x06\x58\x7c\x37\xc1\xd8\x23\x7f\xe9\x38\x23\xd8\x4b\xcf\x60\x01\x3e\x9e\xfe\x5c\xba\x77\x60\xf7\x92\xb3\x1a\xc1\xe4\x3f\x51\x97\x9e\xd4\x1e\x57\xda\xf7\x2c\x98\xa1\x64\xff\xfe\x25\x75\x57\xd3\x7b\xba\xa6\xf4\xc4\x3f\x7c\xcd\x00\xe8\x4d\xe9\xe1\x42\x07\xf2\x61\x2f\xd2\x34\x92\x39\x8a\x8e\x01\xd3\xa6\x7b\x2b\xf0\x8b\x66\xb3\x56\x1b\xcf\x21\x7f\xe5\x08\x5d\x22\x12\xc6\x4c\xc4\xab\xf0\x90\xb4\x51\xe1\x01\x18\x96\x08\x8e\x4c\x66\xff\x10\x2d\xbc\x58\x88\xb7\x77\x7e\xa3\x09\xd6\x0b\x4d\x07\xbe\x19\x3f\xf3\x14\x04\x9c\x3a\xf2\xf8\xf6\x39\xf8\x9c\xda\x6d\x1e\x0d\x08\x07\x8b\x46\x2f\x0c\x86\x54\x61\x11\x4a\xa4\x33\x0e\xec\x31\x56\x0e\xa4\x1d\x5c\x35\x37\xbf\x76\x54\x1b\x79\x02\x7c\x45\x04\x38\x63\xf8\x0c\x85\xcb\x2c\x85\xf1\x37\xdc\xb5\x5d\xd0\x8c\x85\x04\x47\xfc\xbc\x58\x97\x01\xe5\xf7\x43\xbe\x42\x44\xbb\xfb\xc9\x73\x35\x9a\x22\x46\x70\x0c\xb7\x6c\x35\xa3\x0e\xb8\xd9\x58\x9c\xbd\x15\x1c\xd4\x2c\x14\xa3\x99\x13\x54\xda\x7f\x75\xcf\xcc\xc2\xd4\xe9\xdd\x90\xef\xf9\x4b\x8d\x59\x5c\x97\x12\x55\xcd\xbc\xbe\x26\x29\x77\xac\x6a\xbb\xac\x4b\xd1\x30\xf2\x27\x5e\x83\x3a\x1c\xe8\xce\x5b\x2f\x3f\x19\xa4\x4e\x2d\xc0\xe0\x90\xf8\x3a\x6f\xdf\x0f\x2b\xd6\x13\x1e\x78\xaf\xcc\x56\x47\x54\x39\x04\x2b\x53\x6b\xc7\x30\x0d\x38\xe3\xd9\xe0\x61\xf8\x93\x48\x05\xb8\x12\xed\x6b\xaf\x2c\xa2\x07\x5e\xd3\x68\x83\xa8\x26\x32\xab\xe8\x5e\x6d\xac\xcd\x79\x93\xd0\x1c\xbd\xe8\xd9\x0e\xad\xa9\xe5\x12\xaf\x12\x50\x38\xbc\xde\x81\x73\x65\x3e\xf2\xc0\xdd\xd4\x20\x88\xac\xf8\x88\xf6\x77\xc9\x0e\x6b\xeb\x15\x1f\x1f\x6d\xa8\xb9\x10\x5f\x08\x93\x41\xef\xef\x87\x2b\x55\x26\x31\x4e\x6f\x6f\x65\xf7\x3d\xa7\xca\xff\x06\xf2\x6b\x44\x75\xf5\xa2\x27\x6e\xd2\x5b\xba\x56\xc8\x00\xd5\x50\x5b\xa4\x31\x70\x1c\x1c\x27\xd7\xf1\xad\x7c\x6a\xa3\xc2\x52\x95\x18\xe5\x0a\x00\x6d\x04\xd5\xdc\xec\x77\xf4\xb9\x3f\x66\x15\x9e\xa9\xe5\xc6\x1d\x50\x58\x9a\xa0\x49\xdb\xce\xdf\xe1\x1a\xd9\x7e\xea\x34\x2e\xa3\x5c\x1c\xc8\xf7\x6d\x00\x99\xe7\x39\x0e\x6e\x60\xc1\x10\x48\x7f\xdd\x4b\x2f\x6b\x48\x0e\xea\x25\x89\x9c\xb0\xfa\x9f\x83\xea\xf1\x09\x1b\xdf\xd5\x77\xee\x97\x62\x3a\xa8\x01\x20\xe1\x86\xd6\x18\xf3\x42\x16\x84\xd2\x8a\xfa\x8a\x17\xc7\x68\xc7\x22\x6e\xe0\xb3\x08\x02\xd5\xb7\x88\xd2\x70\xe6\xd4\x19\x85\x62\xf4\x3f\x7b\xd3\xb1\x38\x8e\xde\x0d\x5e\xde\x26\xb8\x9d\x59\xa3\x0c\xa1\x86\xf8\x40\x67\x62\x04\x9c\xbb\xfa\x75\x63\x98\xee\x11\x97\x3b\x2e\x8a\x36\x47\xee\xae\x4d\x1d\x5a\xa7\xbe\x86\x69\x43\x54\x27\xdf\xbb\x29\xc9\xdd\xa6\xce\xe4\x96\xd3\x9f\x31\xf4\x65\x90\xdd\x20\x3e\x65\x12\x97\xb4\x79\x87\xc1\xde\x77\xec\xc4\x2a\x7f\x9e\x33\xda\x38\x26\xb1\x5b\x77\x68\x4b\xb9\x0d\x66\xde\x0f\xce\x17\x81\xd4\x06\x22\xd4\x83\x43\xf4\x54\x4c\x57\x62\xdc\xb0\x10\x5e\x43\x05\x79\x15\xee\x75\x39\x90\xb7\x1b\x90\x49\x21\xbb\x0a\x4c\x30\xae\x27\x30\x4b\x3d\x70\x39\xf9\x35\x53\xb0\xb0\xae\x95\x75\x34\x00\xf9\xa5\xfc\xc2\xf3\x2e\x94\xeb\xd4\x0a\x18\xe7\xfb\x64\x5e\x38\x2e\x0d\x23\x1c\x25\x50\xf2\xe4\x9a\x31\xc6\x33\x41\xae\x4f\xe3\x50\xab\xa6\x14\x47\xcb\xc6\x58\x90\xb8\x5d\xa2\xeb\xbc\x72\x88\xd1\x62\x89\xcf\x61\xc1\x3c\xcb\xac\xf4\x3a\x74\xf8\xb5\xf0\x95\x8b\xc3\x02\x64\x06\x85\xdb\x03\xe4\x95\xf9\xe9\xa4\xf1\xa2\xfe\xdc\xab\x00\x74\x01\x46\xae\x8b\x82\xf8\x5c\x34\xcf\xae\x9a\xf1\xb6\xae\x9a\x36\xb3\xab\x47\xb0\xb5\x77\xef\x34\xb4\xb3\xe3\x83\x92\xaf\x96\x79\xfb\xd5\x25\xf5\xe2\x72\x19\x33\x1f\x3a\x2d\xff\xab\xb7\x6d\xc2\xe2\x22\x7e\xaa\x88\x13\xe1\x1b\x8e\x36\x35\xc7\xf1\x61\xd9\x55\x28\x46\xdf\x7a\x39\x49\x24\xa6\x75\xf3\xb6\xdb\x9e\xe9\x06\x53\x3c\x8e\x86\x9e\x04\xd2\x67\xa2\xf9\xd0\x04\x72\x69\x5c\x83\x10\x8f\xe7\xad\xd1\xdc\xbd\xa6\xea\x99\x98\x20\x72\xd9\x6b\xe8\xb7\xdd\xfc\xc4\x65\x66\x3a\x45\x03\x24\x68\x51\xfc\xd8\xfc\xdb\x64\x8d\x3f\x12\x72\xf5\xb0\x68\xd9\x64\xc1\xca\x22\x95\xf8\x43\x66\x3e\x91\x5c\x2f\xa3\xf1\x37\x4f\x5d\xab\x4a\xce\x29\xd3\x7b\x80\x7e\x59\x1c\xc8\x1d\x9a\x6c\xb8\x03\x53\x81\xf3\xdd\xc0\x34\xbe\x0e\x62\x0e\xac\x2d\xb6\xcd\xe8\xd8\x63\xb7\x4e\x19\x24\x83\x1c\xef\x7c\x9d\x26\x1e\x89\xb8\xbe\x68\xf2\xc6\xf3\x77\xae\x4b\x3f\x7b\xb9\x8d\x13\x02\xca\x0b\xb6\xa6\x24\xed\x62\xc6\xfd\xa3\xcc\x08\xfb\x91\x57\xb4\xe2\x99\x94\x30\x88\x2d\x47\xc3\x86\x18\x9e\x8e\xd5\xb3\x6b\x82\x64\xfe\xaa\x99\xd2\x5a\x0e\x02\x5f\xbe\x1f\x39\x4a\x7b\xe0\xff\x59\x23\xad\x11\x21\xaf\xbb\x6b\x7a\xbc\xf7\xfc\x41\xea\x83\xb8\x04\x46\xa1\x18\x11\x23\xdd\xa8\x82\xc1\xbf\x50\xbd\xcb\xed\x5f\xdd\x06\x4d\x0f\xfd\x40\x89\x97\x67\xe6\x9e\xd4\x24\xbf\x98\x64\xeb\x0f\x64\xfd\x27\x60\x39\x21\xbf\x5e\x6d\xf5\x11\xa9\x21\x76\xef\x79\x57\x36\xcf\x0e\x68\x3a\xdb\xad\x67\xef\x31\x84\x2f\x64\xd4\x20\x41\x92\x10\xfd\xe2\xb1\x74\x0c\xe0\xff\x03\x09\xef\xc3\x3d\xe6\xc5\x07\x98\xd5\x19\x0e\xc4\x54\x31\x7b\x79\xa9\x53\x8f\x03\x7e\x9c\x08\x24\x52\xe4\xb7\x4c\x37\xf8\xcd\xdc\xbe\x87\x1f\x44\x8b\x56\x1b\xca\xa9\xa8\x44\xa5\xda\xf8\x61\x43\x17\xbd\xc4\x87\x25\x0c\x7c\x68\xb3\x1f\x11\x90\x8f\x3a\x46\xbe\x30\x27\xbb\x69\x3f\x20\xc1\x7d\xf0\x65\xbd\xfa\x90\xe6\x02\xc2\x05\x5e\xc1\xc5\x29\x37\xf6\x29\x63\x40\xea\x96\xe2\x05\x2b\x12\x8a\x5f\x3e\x27\x06\xb6\x5c\x38\x3d\xde\x40\x97\x3e\xdb\x6e\x7a\x86\x2d\x79\x28\x7c\xf8\xb1\xcb\xb5\x44\xa6\xce\x0d\x9f\xcd\x58\x16\x1d\x3d\xa8\x6c\xb5\x90\x4d\x1d\xae\x3e\xd0\x66\xab\x95\xbf\x72\xbe\x29\xdf\xe5\x08\xdd\x01\x1e\xda\xf2\x86\x7a\x10\x76\xeb\x24\xde\x29\xb2\x5f\x30\xf1\x39\xc5\x44\x8c\x6b\xe3\xf8\x6f\xfe\x79\x74\x72\x46\xba\xa4\xaf\x50\x8c\x66\x6c\x6b\xe3\xc6\xd8\x20\x5f\x2a\x0b\x8d\xcb\x27\xa8\x42\xfa\xae\x04\x13\xec\xce\xed\xd0\xa5\x02\x82\x78\xeb\xf3\x07\xb6\x7c\x7a\x47\xaa\xd9\x1c\x4a\x1d\xf7\xef\xa8\xb1\xa1\x9d\xc2\x2c\xef\x1f\x94\x8e\x3c\x93\x85\x23\xdb\x07\xcf\xbb\x5c\x6f\xd1\x08\xbe\xb1\xb9\x19\x5f\x18\x9d\x5e\xca\x8a\xe5\x94\x64\x0c\x0f\x9e\xd6\x21\x01\x28\xa8\xc6\xaf\xf1\x22\x53\xbb\x1b\x57\x90\x27\xc0\xc0\xef\xcd\x6b\x03\x93\x7b\x36\x76\x08\x4e\x52\x87\x11\x47\x84\xab\x42\x4f\x81\x86\x70\x78\xe7\x0e\xbc\x7b\x91\xa8\xbc\xa8\xd7\xa7\xbb\x75\xe5\x3f\xbd\x20\x0d\x0e\xa0\x57\x58\xd4\x03\xdb\x04\x9d\xe2\xfa\xa1\xe5\x26\xe0\xd2\xc5\x9e\x2f\xf5\x2d\x72\x0f\xbe\x63\x34\xbd\x02\x86\x71\x20\x3a\xd9\xdf\xaf\x1a\xff\x18\x96\x7a\xe3\x55\xc9\xa9\x68\xd9\x41\x6f\x8f\xd4\x5e\x4a\xa9\xe4\xa4\xdc\xc4\xf2\x13\x9e\xea\x34\xf7\xba\x63\x73\xe9\x88\xe2\x40\xa6\xba\xe7\x12\x0d\x12\xd6\xe4\xed\xa5\x04\xad\xf2\xd9\xd5\x86\x9f\x1e\xc6\xb6\xd8\x39\x3f\x7d\xd1\x74\x58\xf0\x02\xe4\x4b\x41\x67\x6a\x9c\x9a\xcd\x16\xd6\x68\xac\xb9\x8d\xd7\x18\x0e\x15\x5c\xa3\x3a\x51\x54\x14\x6f\xe1\x8f\x5b\x93\xc3\xad\x41\x78\x6e\x89\xaf\x31\xf8\x65\x15\x0a\x99\x4b\x74\x68\xe2\x08\x65\x68\xdf\xaf\xdf\xc3\x49\x66\xa6\x7a\x75\x86\x2d\x6c\x03\x9e\x87\x07\xa6\xf9\xa7\xaf\x34\x76\x62\xe8\x05\x0c\x86\x58\xed\x6c\xbc\xfc\x82\x2d\x23\x15\xa4\xb6\x64\x0e\xf1\xca\xb3\x2e\xd5\xb2\x6a\x14\x60\xd8\x40\x54\x70\x69\x89\x29\x53\x68\x05\x50\xa9\xc2\xae\x78\x7f\x97\x02\x19\x48\x67\xb0\x4f\x8e\xbb\x54\x3f\xb4\x78\x51\xa2\x23\x8a\x3f\xf3\x9e\xc6\x49\x12\xfe\x7c\xc5\x81\xcc\x6d\x8f\x1a\x93\x6d\xcc\x08\x4d\x3a\x36\xd9\x79\x86\x82\x7d\x9d\xd6\x43\x48\x24\x41\xc3\x42\xae\xcb\x1f\x9c\x1e\x2e\x6a\x0c\xdf\xd7\x24\x64\xf3\x43\xee\x55\xb1\x26\xe4\xe7\x42\xef\xd1\xa1\x7a\x60\x84\x8e\x45\x66\x99\x68\xe1\x4d\x99\xc2\xd1\x14\xaa\x49\xf8\xd6\xd3\x46\x21\x2d\x30\x0b\x71\xfd\x79\x71\xdd\x54\xe6\x0f\x1d\xbb\x50\x92\xe3\xc8\xe6\xbd\xe9\x87\x48\x9b\x1e\x66\x7e\x95\xd4\x85\xea\xe7\xc1\x6e\x08\xeb\xd4\x95\x19\xd9\xcc\x6d\xa6\x94\x17\x87\x36\xf2\xa5\x6c\xad\x54\xcf\xaf\x44\xa8\x8d\x78\x0a\x9f\x1d\x6b\x00\xf1\x7b\x66\xfc\xff\x74\xbd\x7d\xbc\x15\x55\xbd\x3f\xee\x9e\xbd\x53\x44\xe4\xf9\x59\x44\x44\x02\x12\xf6\xe9\xf0\x74\x78\x88\x08\x91\x10\x11\xd9\x88\x68\xca\x25\x64\xed\x99\xb5\xf7\x5e\x67\xcf\xcc\xda\xae\x99\xd9\xfb\x9c\x93\x11\xd7\x48\xd1\xd0\x48\xbd\x46\x66\xa6\xe4\x35\x22\xbf\xe4\xe5\x1a\x91\x19\x19\x3f\x34\xae\x97\xbc\x64\x64\x64\x5c\xf3\x9a\x97\xcc\x4b\x64\x44\x5c\x2f\x79\xe6\xfe\x5e\xf3\x59\x6b\x66\xad\x59\xc3\xfd\xab\x57\x1c\xcf\xd9\xb3\x67\xd6\x7c\x1e\xdf\x0f\xfc\xb4\x10\x4d\xe4\xb7\x85\x60\x37\xc6\x77\xd6\xb7\x9e\xce\x70\x3b\x78\xf0\x8c\x27\xd3\x6b\x66\xca\x7a\xab\x8e\x98\x85\xa0\x2e\xf9\xd5\x73\x19\x70\x37\xc7\x8b\xc4\x02\x77\xa7\xcf\x8a\x06\xa0\x8b\x27\x1d\x50\x82\xb0\xa5\xcc\x46\xec\x9a\x14\xdd\x84\x64\x1c\xfa\x3d\x2e\xe0\x55\x5c\x15\x78\xd8\xf2\xea\xaa\x88\xd1\xd4\x1a\x4f\x9f\x15\xea\x14\x4b\x61\xff\x1d\xb2\xb5\x99\x31\x53\xda\x8c\x96\x7a\x73\x74\x4e\xac\x7f\x6e\xdb\xc0\xc5\x31\xfe\xda\x87\x3f\xe6\xab\x12\x09\xf3\x62\x29\xfc\xe1\x72\x2d\x5b\x75\xf1\x54\x23\x9e\x58\xe1\xea\xd5\xba\x75\x65\x85\x8a\x87\x35\x76\xbe\xa6\x60\x08\xa4\xf7\x79\x31\x65\x65\xda\x46\x75\x7f\x55\x8e\x1e\x26\xee\xd4\xf5\xe4\x3d\x87\x78\x5e\x5c\x5a\xf7\xe6\x47\xbe\x26\x29\xd1\x04\xde\x21\xda\x75\x99\xf6\xf9\x4d\xcc\x77\xb9\x44\xd8\x4a\xf6\xe6\x0f\xac\xd4\x14\xda\x5c\x9f\x0a\x06\x69\x69\xaf\xce\x35\x17\xaa\x9f\x62\xef\xb9\xac\x4d\xc5\x60\x9b\x75\x54\xe5\x33\x86\x77\x8e\xeb\x82\xd0\x5e\xa2\xf4\x58\xb8\xed\x14\x7f\xa6\xab\xb9\xb5\x1f\x7c\xdb\x49\xef\x69\x2a\x50\x48\x78\xa7\x96\x7a\xf3\x0f\x2a\x45\x77\x0b\xd9\x75\xac\xca\xdc\x5f\x53\x19\x1c\xa7\x52\x9f\x21\x33\xd9\x38\xbb\x72\x55\x53\x0d\x52\x92\xfe\xb9\x3f\xee\x97\x3f\x73\x50\x4a\xff\x34\xf7\xd3\x7d\xe9\x08\x5d\xaf\x51\x9b\x5a\xb4\xc9\x0d\x1b\x44\xdf\x3b\x6c\xc1\x18\xad\xcd\x01\xf6\x0f\x75\xe3\xb9\xef\x8f\x6e\xd6\x36\xbf\xd4\x8b\x71\xf1\x5b\x1b\xfc\x5c\x5d\xbb\xe2\xc6\x6b\x17\x7f\x32\xba\xd4\x5f\x8d\xd7\x0c\x83\x19\xaa\x32\x14\x8b\xa8\xe4\xc9\x4b\x3a\x7b\x8d\x3a\x62\xbf\xdf\x9b\x9f\x28\xb5\x4e\x91\x9b\x19\x8c\xe6\xe7\x77\x2a\x53\x7a\x90\xd5\x8f\x7b\xac\xbb\x9f\x52\xcc\x39\xb1\x8b\x80\xdc\x55\xea\xcd\xfd\x6c\xeb\x20\xa9\x98\x96\xd0\xa7\xc6\x3d\xa4\xf0\xad\x19\xb6\x88\x89\x1c\xe1\x8b\xf6\x77\x67\x65\x10\xe9\x98\xd9\x31\x75\x0e\x1f\xed\xcc\xaf\x68\x9b\x90\x6e\x17\x39\x52\xcc\x05\xcd\xbb\x58\x84\x4c\x4e\x79\x0c\x6f\xb4\x54\xc9\x25\x52\x11\x43\xeb\x21\x87\xe3\x85\xad\x59\xaf\xc6\xbb\xfc\xeb\x35\xf9\x4d\x13\x73\xb7\x81\xf0\x3f\x76\xe8\x38\x12\xc4\xe2\x64\x97\xa7\xfb\x14\xfc\x3f\xf5\xfc\x28\x65\xc0\x67\x0c\xfe\xe0\x5c\xab\x0e\x2b\x91\xe6\xb7\x8e\x68\x0f\x80\x54\xec\x44\x8b\x96\x2c\x1a\xa4\x8c\x9e\xbd\x00\xb6\x92\xc6\xbf\x2d\x4f\x1f\x10\x87\x5a\x98\xb9\xc4\x8b\xe1\x9c\x85\xd1\x0a\x04\x73\xce\xd4\x8e\x39\xed\xb0\x51\xdf\xcc\x81\x66\xb4\xe2\x63\xb7\xe8\x10\x2f\xe1\x8a\xf4\xe6\xee\x3d\xa3\xc8\xf3\x50\x17\xd4\x93\x12\x09\xb5\x3f\x3c\x96\x21\xdd\x35\x04\x9a\x7c\xfc\xb3\x8a\x32\x1f\xf5\x7c\xbe\x86\x19\x7d\x52\x95\x2f\x00\xcc\x7e\x78\x81\xb6\x6e\xe8\x21\x76\x3d\x5d\xc9\x15\x96\xba\xba\xa8\xa5\x47\x44\x87\x60\xfc\xe8\xa4\xf4\xfd\x6f\x2a\x84\xf2\xc2\x9d\x8f\xa4\xf3\xad\x67\xd3\x26\xcd\xb8\x80\x84\xbf\x7d\x43\xd6\x63\x42\x7f\x54\xc5\x19\x3d\xce\x47\xf0\x4d\x64\x73\x0e\x76\xfd\xfd\x81\xca\x70\xaf\x0c\xb8\xef\xc2\xfa\x93\x3a\xcc\xd7\xad\x73\x8c\xd8\xb2\xf9\x97\x69\x3f\x09\x7a\x88\x3b\x45\x2d\xd8\xf3\xbb\x76\x68\x1d\x10\xc3\xc0\x34\xe2\xef\xed\xc3\xe2\xbd\xc5\x5d\x26\x47\x1f\xe6\xfa\x9c\x4c\x97\xbf\x65\xbf\xca\x13\x79\xba\x92\xff\xcc\x01\x1d\x2c\xe7\x02\xcd\x44\xd4\xb0\x17\x6e\xd3\xfb\x2e\xa8\xc1\xf8\x4f\x73\xb5\x0d\xfc\x7b\x5f\xe5\xfa\x04\x60\xe5\x47\xc6\xca\xad\x80\x57\x8d\x32\xd0\x0f\x9a\xb1\x99\xa6\x6f\xd6\xd4\xd0\x68\xec\x9f\x3e\x5c\xab\x36\x69\x9c\x56\xff\x74\x42\x8c\xe9\x9c\x32\xa9\x06\x62\xe9\xf8\xc9\xb3\xe3\x94\x33\x16\x44\xed\x2f\x58\xed\xbb\xb0\x3b\xe4\x01\xc2\x78\x63\x57\x02\x34\xef\x80\x50\xff\xdf\xcb\xe5\x3a\x14\xa9\x62\x65\xe1\x9f\x85\xf5\x14\x90\xba\x7c\x6e\xf4\x93\xbf\xe4\x81\xe1\xfa\x59\x6d\xf1\x2d\xc0\x87\xe7\x25\x85\x55\x37\x80\x8f\xff\x5e\x13\xca\x6e\x33\xa9\x13\xe7\x84\x67\x0e\x49\xb4\x26\x32\x55\x0f\x4e\x85\xb8\xe3\xa0\xee\xa8\xaf\x84\x6f\xbc\xb3\x5d\x91\xd1\x63\x94\x83\x17\x56\xbc\x3d\x44\xe9\xc5\x9a\x44\xbc\x6d\xf9\x3f\xd6\xd2\xc3\x16\x6e\x45\x95\xb5\xae\xc9\xff\x4e\xeb\x9a\x51\x60\x81\x14\x0b\x2f\xd7\x5e\x7c\x79\xa4\x32\xa5\x63\xd8\x51\x84\x7d\x0b\xd3\x57\xa4\x8f\x8f\x98\xf5\x70\x96\x7c\x72\x0f\x07\x1f\x53\x7c\x4b\x71\x55\x55\x4e\xcc\x7f\x60\xc9\x01\x4d\xc5\xc6\x7c\xb9\xb3\x58\xc3\xc4\x46\xa5\x38\xf1\x7c\x62\x02\x92\x98\x17\x25\x5b\xc6\xa4\xc7\x74\x2d\x62\xdb\x04\x39\x9e\x8a\x2b\xcd\xff\x6a\xe4\x08\x25\xb5\x4b\x27\xbd\x62\x29\x7c\x77\x87\x0c\x46\x71\x68\x8b\xaf\xaa\x30\xa2\x20\xd5\x7d\x9a\x30\x6f\xef\x3f\x3d\x63\xf0\xc2\xaa\x38\x01\x36\xe4\x3f\xd1\x7f\x88\x3a\x8f\x6f\x34\x44\xcc\xfb\xfe\x93\xe7\x50\xdd\x85\x6a\x07\x1c\x6a\x86\x1d\x93\xdd\x5f\x27\x6a\x12\x3f\x65\xb6\x91\xfb\xe1\xeb\x32\x32\x33\x67\x66\x1b\xe4\xa5\xdc\x1f\x36\xa4\x23\x73\x15\x7a\x3f\x05\xbc\x73\x54\xab\x78\x92\xc3\x2b\x46\x5c\x97\x3c\xd4\xd6\xd2\x26\x0b\xae\x17\xd5\xa6\xb1\xe6\x7f\x76\x2c\x75\xc1\x48\xc9\xd2\x31\x11\x03\x39\x18\xa5\x8d\xb9\x70\x0e\x2f\xda\x1d\x02\x35\x44\xb1\x14\x7e\xb4\x32\x5c\xc5\x05\x38\xd0\x9f\x08\x23\xab\xd3\x52\xac\x97\xab\x7d\xbe\xa1\xdb\xf2\x34\x63\x2d\xe1\xdc\x4d\x67\xe4\xf1\x16\x27\x13\x5e\xd9\xf5\x07\x74\x53\x03\x18\xd2\x26\x0d\xe8\xce\x9b\x93\x0f\x89\x4a\xb4\x52\x38\xa9\x27\x81\x26\x56\xcb\x81\xd2\xdb\xef\xdd\xc3\x4b\x39\xc4\xca\x44\x48\x9d\xdd\x70\x44\x59\x17\x50\x9f\x32\xb3\xdb\xb4\xf9\x22\xf5\x5b\x77\x68\xd5\x3e\xf2\x93\xd1\x4e\x74\xae\x9c\x77\x54\x58\x53\xb7\x27\x8f\x63\xf8\xeb\xb1\x99\xd4\xde\x9d\x18\x19\x55\x97\xaa\x07\x88\x51\xb7\x0a\xf2\x07\x87\x17\xe9\x70\x7d\x31\xee\xcf\x0d\x9c\x20\xcd\xf7\x4c\x8e\xf6\xd6\xcc\xf7\x56\x2b\x53\x72\x86\x44\x39\x92\xbb\x6f\xf2\x58\xa5\x9e\x3a\x27\x94\xe4\xd6\x2b\x13\x3c\x97\x6b\x65\x03\xc6\x57\xc6\x0d\x52\xde\x2a\x56\x87\x0b\xbd\xa4\x8f\xbc\x65\xb1\x1f\x2d\xec\xd0\xc3\xc7\x5f\x49\x93\xf1\x60\x29\x72\xcf\xa6\x0c\xc9\xd7\x23\xb1\x1f\x43\xcf\x19\xa9\xc8\xa1\xd8\xe5\x6a\x7d\xa5\xa8\xe3\xe3\x5f\xfa\x7e\x87\xbc\x2a\xc4\xaa\x01\xff\xb6\x13\x9e\xe6\x07\xf3\xfa\xe8\x3a\x7d\xae\x70\xaa\x2b\x60\xa0\x32\xf1\xbd\x7a\xb7\x82\xe0\x0b\x2b\x52\x9a\x63\xf6\xec\x22\x2c\x9c\x57\x2a\x8b\xdb\xb6\xe9\x90\xf7\x96\x3d\x3e\x3c\x05\x20\xc1\x3e\x11\xd6\x98\xb9\x09\x2a\x56\xd3\xf3\x10\x60\x67\x16\x69\x22\xe4\x16\xf6\x69\xc0\x44\x72\x1e\xbf\x80\x27\xe7\x1b\x4d\xca\x00\xc0\x7c\xbe\xc6\x21\xaa\x30\xea\xc4\xfa\x58\x17\x8d\xbe\x48\x1c\xce\xe8\xe3\xc2\xef\x2e\xd7\xf8\x68\x5d\x0d\x25\xca\xe4\xbb\x6b\xe9\x43\x34\xab\x5d\x1c\x56\xef\xb8\x82\x8f\x75\x1a\x98\x09\xe8\x52\xfe\xf1\x5d\x1a\x05\x5c\x85\x61\xe4\xe6\xbd\xa4\x94\xa1\xd8\x67\xd4\xc6\x41\xd4\x8a\xfe\x7c\x7c\xf2\xce\xd5\x28\xa8\x12\xf6\xdc\xa1\x35\x11\x18\x89\x8b\xca\x7d\xa8\x6f\x52\x3e\x07\x75\x98\xd2\x39\x43\xd5\x8a\x8e\x55\x01\xaa\x78\xd9\x52\x81\x32\xee\x76\x89\xc9\xbd\xff\x72\x77\xed\x91\x57\x87\xc1\x89\x59\x29\x19\x72\x23\x9a\xda\x04\xdd\x47\x69\xb3\xb3\xb0\xb0\x53\xa0\xaf\x4c\x1a\x40\x03\xf0\xcb\x33\x7a\x33\x54\x8d\xe2\x15\x65\x42\x81\xaf\xf0\xa5\xda\x58\x2d\x42\x55\x21\x21\xc1\xf4\x87\x07\xd5\x0b\xc6\xc9\x2a\x35\xb0\x3d\xe1\xbd\xf2\x9b\x3d\xfc\xa3\x88\x8f\x1d\x4e\xde\x3b\x5f\x93\x8a\x05\x9a\x52\x62\x44\x40\xf8\xc8\xbb\xb8\x88\x22\x96\x99\xa8\xe6\x66\xed\x49\x27\x46\x01\xc2\x14\x8d\x30\x27\xd1\x75\xa4\xff\x93\x32\x65\xb4\x49\x55\x45\xa0\xf0\x0f\x77\x48\x0a\x25\xaa\x44\xd7\xce\x8e\xaa\xd0\x5f\x0f\xc0\x96\xc7\x5f\xe3\x95\xcf\xd5\xd8\xf6\xe3\xd9\xb2\x31\x4c\xf1\xa8\xaa\x29\x13\xa5\xfc\x53\x93\xd3\x2f\x55\x0d\x31\x46\x3c\x6d\x8a\xfa\x84\x14\x58\xc0\x2d\xa8\xb8\xe7\x2d\xbf\x5c\x05\xc2\x02\xa0\x28\xb3\xd5\xc9\x7f\xfe\xca\x0c\xcc\xa4\x89\xdd\x84\x8e\x91\xfb\xd4\x7a\x95\x7a\x5b\xb3\x71\x14\x16\x20\xbf\x2e\x5c\x98\x19\x6d\x50\x96\x8c\x0d\xc2\x67\xbb\x34\xa1\xfa\xe8\x87\x0e\x66\x93\xbc\xec\xe8\x30\xf7\xb5\xd7\x34\x33\x3a\xea\x10\x17\x9c\x92\xe3\x8a\xb4\x7a\x2a\x63\xea\xc1\xc5\x4a\xf8\xac\xea\xc2\x2e\x6d\x7f\x1e\xf8\xd4\xa1\x65\x62\x63\xbe\xbd\x29\x9c\x17\x2a\x2a\x3f\x6d\x33\x00\xcf\x3d\x55\x84\x05\x1a\xf8\x0d\x7e\x58\x17\x1f\xe2\xef\x7e\x8b\x7b\xda\xad\x7c\x79\x90\x94\xb5\x4c\x66\x11\x23\x6b\x19\x34\x86\x69\xd3\xa8\xb7\xe3\x6f\xdf\x17\xdf\xb9\x54\xaf\xab\x7d\x6c\xc2\x86\x93\x87\x86\xf7\xcf\xfc\x9f\xb3\xce\xe8\x98\x1d\xdd\x28\xd3\xdc\xed\x01\x72\x7d\x52\x21\x42\x76\xc7\xa8\x28\x66\xd4\x3e\x0b\x3a\x89\x6d\xd3\x18\xf5\xe0\x9d\x1d\xdd\xa0\x5e\xa2\xbb\x36\x55\xd5\x56\x2b\x85\x9f\xde\x3c\x52\x99\x6a\x30\x33\x50\xd9\x2d\xa3\xd6\x2b\x6a\x1c\x81\x70\x8d\x0e\x57\x4e\x8c\x0b\x74\x60\x5c\x70\x7e\xcc\xa6\xb7\x75\xea\x8f\x4b\xb0\x25\xc6\xb4\x93\xcb\x12\x88\xd2\x89\x94\x2a\xc6\x38\x75\x56\x69\x34\x03\x9f\x56\xa2\x97\x23\x77\xdb\x72\x3e\x44\x45\xb6\xcd\x65\x1d\x84\xdc\x4f\x79\xc5\xc0\x56\xbc\x00\xf1\x04\x5b\xc5\x58\xb2\x43\x11\xff\x24\x51\xbb\x2c\x04\xfc\xcf\x5b\xa7\x6b\xb3\x21\x16\xbb\xd2\x84\xd3\x7b\xe4\x83\x67\xc8\x84\xb1\xe2\x7d\x67\x05\xdc\x33\x60\x4d\x9c\x01\x77\xe4\x06\x0d\x1c\xab\x17\x13\x65\x12\x57\xd6\xfc\xbc\x95\x0b\xba\xa8\x4a\x5c\x56\x85\x73\xdf\xd6\x54\x1e\x10\xf3\x05\x7b\xad\x70\xf3\x38\x3e\x8d\x5a\x8a\x99\x6b\xd1\x44\x2c\xe4\x9f\xfa\xcb\x49\x76\xc3\xce\x80\x1f\xf2\x37\x3c\x94\x99\x9e\x7a\xd1\xd7\x8f\x41\x19\x05\x5f\x41\x87\x34\x50\x1d\x90\xbd\x24\xba\x91\x5b\xcb\xe9\xee\xba\x85\x51\x83\xba\x1e\xa8\x61\xd8\x0a\xcb\xe7\x07\x9a\xf6\x8e\x85\xc1\xbc\x21\x51\xb6\xc8\x9d\xe8\x2f\x4b\x3c\x55\xb4\xca\xb8\x65\x9b\xac\x0d\x3c\x8a\x80\x4a\x10\xee\x0d\x15\xf7\x62\xd7\x45\xc2\xda\x5d\x1e\xb8\xbf\xad\x4c\xab\xbe\x46\x15\x34\x28\x0a\x03\xa0\x53\xff\xfe\x9b\x65\xeb\x37\xad\x63\x26\xcc\xd4\xb7\xf1\x39\xed\x8c\x99\x73\x8b\xa5\xf0\xe9\x03\x4a\x67\x1a\xd8\xdc\x5f\x48\xdf\x3e\x1e\x4f\x12\xa8\x67\xb6\xa2\xaf\x74\xe7\x54\x19\x99\x2d\x1a\x5d\x65\xa9\xd7\xf8\xc6\x50\xc5\xfd\x10\xb9\x70\x9f\xce\xe1\xaa\x34\x61\xb5\x4c\xc7\x51\x01\x12\x0e\x5a\x2a\xe7\x5c\x56\xc0\x62\x99\xac\x1b\x9b\xda\xf0\x8e\xd8\xb6\xb4\x4e\x31\xa6\x9e\x1e\x7b\xce\x50\x41\x13\xbb\x22\xa3\xb5\x4f\xf9\xc3\x93\x90\x43\x4c\x00\x23\x1e\x9a\xca\x59\x53\x8b\xa3\x5c\x69\xdb\x5c\x7d\x2a\x7d\x8d\x77\x2d\x94\x64\xe8\x2c\x75\x20\x77\xe8\xde\x51\x2d\x7d\xae\x85\x4d\x5f\x2c\x03\xbb\xce\x1f\xa0\x8e\xf4\xa2\xca\xfd\xf7\x6f\x8a\x49\x42\x03\xc1\x60\x24\x69\x42\xb1\x21\x4d\x51\x90\x1f\xdb\xb8\x7c\xeb\x66\xdd\x58\x99\xf4\xf4\xc4\x9a\x17\xc6\x8c\x87\xfb\xc7\xa5\x11\xef\xb6\xc3\xaf\x6c\x93\x31\xa8\x8a\x62\x42\x7a\xe1\xa2\x13\x7c\xea\x75\xf5\x39\xbc\x8b\xf7\xec\x97\xc5\x12\x32\x4d\xe1\xd5\x19\x45\x76\x4d\x87\xc5\xb4\x11\x71\x20\x4a\x45\xcf\xca\xbd\x43\xb3\x48\x47\x30\xce\x03\xea\xcd\xf6\x93\x23\xd5\x0d\xaf\x17\xd8\x1c\x9c\x02\x2b\x0e\x3a\x92\xef\x6c\x2c\xcc\x7d\x08\x93\xed\xfe\x9a\xa1\x43\x14\xf5\x0d\xe2\xc6\xac\xc4\x8b\x0c\xf9\xef\x75\xfe\xe8\xa3\x04\x70\xd1\x51\xcd\xc6\x01\x54\x28\x79\xbc\xfa\xdc\xbd\x17\x4b\x51\x59\x48\xc1\x7f\xdc\x21\x19\xc2\x5c\x20\x72\xc7\x11\x7e\xf3\xa2\xc6\x54\x7c\x52\x73\xb4\xe6\x2d\x30\x5b\x24\x9b\xd5\x13\x74\xeb\x9c\xee\x04\xa5\xd3\x47\xb3\x28\xe4\x42\x6c\x62\xf2\xf4\x7d\xa1\x49\xcd\x41\xcf\x5d\x9c\xa4\x9b\xbf\x7b\xe5\x48\xb5\x90\x74\xb0\x3a\x1d\x5f\xba\x29\x5d\x92\xce\x98\xd5\x36\x7b\x16\xe7\xa1\x3d\xab\x48\x8b\x83\xaf\x3a\xef\x4a\x40\x15\xf2\x49\x6d\x80\x8a\x1b\x88\x30\xbe\x7c\x28\xdc\x64\xe9\xd3\xd5\x26\xb2\x63\x0c\x72\xef\x0b\x17\xcb\x29\x0f\xf0\xfd\x5e\xeb\xaf\x41\xa2\x84\x0c\x56\x38\xf0\xac\x02\xde\x75\x1d\xc4\x3c\x04\xad\xc1\x1f\xcf\x1f\x28\x9e\x1a\x66\xb8\x42\x39\x6b\xa4\xfe\x82\x74\xde\xe3\xfe\xd3\x1b\x47\xab\xed\x88\xeb\x46\x2f\xa9\x09\x35\x43\x6e\xd9\xc4\xe1\x92\xb0\x7a\xcd\xca\x4f\xca\x5a\x78\xd7\x1d\x8a\x3e\x14\xb1\x70\x91\x21\xf1\xbc\xc2\xaf\x3e\x9c\xbc\x9b\x6d\x66\x06\xf5\x65\xfc\x7c\xdf\x58\x05\x67\xda\x3c\xc7\xdb\x6d\xec\xe5\x5d\x1e\xa7\x1d\xdf\x88\x59\x55\xcd\xb6\x37\xbf\xae\x8d\xf6\x6c\xd4\x2d\x56\x32\x5b\xf7\xca\x14\xed\xd7\x18\xa9\xf8\x71\x01\xfa\xf0\x9e\x4b\xb5\x7e\x98\xf8\x04\x0e\x7f\xdc\x07\xee\xd3\x74\x4c\x2b\xc8\xf3\x05\xd1\x72\xbd\x36\xa7\xa4\x65\x0f\xb3\x66\xbc\x49\x1e\xda\x47\x03\x93\x37\x30\x52\x2c\xa4\x72\x1b\xdf\x95\xaa\x96\x75\x48\xb0\xdf\xac\x0c\x77\x53\x98\x6d\xee\xdc\x0b\x75\xff\x73\xb2\x3e\xb2\xb0\x47\x98\xe4\x90\x1b\xdf\xdd\xa9\xb5\x00\x8d\x06\xf5\x92\x75\x5b\xee\x86\x89\xea\xe9\x0d\x4c\xe4\x45\x55\x8d\xd0\xc3\x7b\xef\x71\x7e\xe0\xc1\x96\xa5\xca\x50\x03\x06\x66\xe6\x41\x6d\x43\xd6\x44\x6e\x3d\xe5\x27\x1a\xce\x9b\xaf\x49\x85\x82\x41\xa8\x4d\x90\xea\x43\x31\xe5\x61\x9e\xfa\x21\x48\x81\xcd\x32\x7c\xcf\x67\xda\xb4\x5a\x30\x61\xf5\xf3\x2d\xe0\x94\x47\x05\xd5\x16\x23\x6e\xd8\x5f\xd2\xfc\xea\x2b\x8c\x60\xd7\x12\x12\x79\xc6\xe5\x7d\x79\x64\xf0\x6c\x8c\x79\xd0\x32\x36\x3d\xa5\x24\xe8\x3a\xe1\x2a\x48\xa7\x2c\x45\x7d\x22\xe6\x3b\xfe\x5d\x5f\x1e\x6a\xaf\xb9\xaa\x94\xc9\x16\x9d\x35\x85\x86\x25\x71\x53\xc5\x52\x78\x68\x30\x6f\xab\x2a\x84\xe1\x22\x72\xa3\xb7\x86\x38\x9e\x4f\xc1\x4a\x21\x77\x77\x59\x26\x21\xea\xe8\x49\xf9\xdf\x4e\xaa\x12\x72\xc4\xe3\xd1\xbb\xdf\x48\x9d\x35\x5c\xc5\x51\x45\x23\x41\x80\xe1\xb5\xdb\x79\xe1\xf8\x29\xd0\xd7\x96\xbd\xd2\x0f\xdf\xc9\x58\xa6\x62\xa1\x47\xb5\xe6\xfd\xf4\x8f\xa6\xcd\xed\x68\x8f\x47\x8c\xb7\x3c\x2e\x02\x2a\x76\x10\xab\x47\x37\x88\xde\xd2\x37\xee\x9c\x60\x20\xfe\x8e\x62\xfc\x6c\x47\xa1\x23\xfc\xf6\xa2\xf4\x80\xb6\x4e\x6d\xec\xb9\x84\x9f\x0d\xa9\x2e\x3b\x5a\xe8\x73\x47\x99\x1d\x82\xf7\x9e\xb7\x79\x8f\xd1\x89\x71\x54\x2e\xf6\xf3\xc5\x0a\x0b\xbb\x66\x4d\x7c\x7a\x6f\x61\xc9\xc1\x8c\x78\x3a\xec\xb1\xe3\x99\x96\x71\xcf\xbd\x57\xe8\x55\xe6\xb9\x7c\x59\x8c\x0d\x9d\x12\x09\x89\x21\x94\xfd\x70\xa4\x64\xd5\x72\x31\x00\xbd\x70\x98\x25\xd4\x6a\x66\x4e\xe7\x4c\xf4\xde\xc2\x67\xdf\xb8\x44\x6d\x2d\xae\x5f\x3c\xe5\x5a\xa5\xb7\xe8\x35\xbe\x30\x7d\x82\x76\x35\x16\x3e\xa7\x7c\xed\x7d\x9b\x25\x23\x85\xa1\x62\x29\x1c\x75\x66\x90\x68\x66\x90\xeb\x55\x99\x30\x87\x1d\x73\x40\x33\x5a\xc2\x5d\xe8\xdc\x2e\x8a\xad\xa1\xfa\x78\xa1\x81\xa3\xaa\x55\x30\x83\xc2\x9d\xed\xfc\x4c\xaf\x5c\x7e\x75\xe6\x77\x2f\x39\x93\x4e\x16\xd5\xc0\x15\x89\xe5\xe9\xe7\xfa\xc5\x97\x39\x3b\xaa\x37\x0b\xa3\xa6\x8e\xd4\x0e\xcf\xdc\x99\xc5\xb9\x1d\xd0\xe9\xfe\x8e\x0b\x1a\x14\x17\xe3\x26\xb1\xb3\xe0\xfd\x9f\x4f\x55\x6c\x43\x63\xef\x58\x38\xe7\xbf\x7a\x34\xad\x74\x6d\x12\x66\x06\x7c\x63\x96\x69\x49\xf6\xeb\x5f\xd3\x86\x9e\xb0\x2d\x96\x34\xc9\xaf\x57\x55\x30\x90\x15\x70\xa5\xa7\x52\x6f\xfe\xe8\xa9\xf4\xb3\x29\xb3\xee\x73\xbb\xc5\x5d\xa9\x08\x66\x55\x19\x6a\x62\xf0\xee\x2c\xcc\xbb\x79\xb4\x9e\x4b\xa0\x41\x14\x98\x82\xcf\x37\x65\xef\xc2\x90\xe7\x04\x9e\xa7\x1a\x1d\xe4\x8e\x9c\x48\x67\x15\xe4\xd6\x11\x53\xf1\xbc\xf9\x5b\x05\x26\xfc\xea\x1a\xf2\x70\x5c\x3d\xbe\xb2\x47\xbc\x25\x5c\x69\x61\xe5\x1d\x43\x12\x3f\x4c\x65\xec\xfb\x39\xad\xc6\xa4\x6e\x95\x26\x97\x66\x7c\x67\x89\xf6\x8e\x78\xf5\xdb\xf9\xfe\x24\x7d\x73\x57\xac\x54\xa9\xe9\xdc\x7f\x02\xbb\x26\xd4\x3b\x5f\x58\xaa\x4f\x39\xcc\x80\x79\x51\x1f\xc8\xbf\xfe\xbf\x1a\xf2\xa6\x35\x48\xd5\xe3\x5a\xbb\x06\xf5\x15\xec\x0c\x62\x2e\x62\x30\xdd\xeb\xff\xa8\xb2\xc6\x36\x19\xc6\x20\x55\x5f\x58\xa7\xc1\xc2\x18\x6e\x12\x4f\xce\x60\xde\x7d\x48\xd6\x11\x65\x9b\x52\x87\xb8\x55\x0b\xf1\x98\x5d\x9f\x2f\x9f\xbb\x4b\x5c\x5c\xf4\x59\x10\x35\xb9\x61\xb0\x49\x11\xd8\x8b\xde\xae\x6a\x0c\x63\x2a\xf5\x1a\x8b\x77\x69\x33\xb7\x6e\xd7\xac\x95\x03\x56\x4d\x64\xe8\x8d\x97\x1e\xd5\x14\x87\x50\x03\xb9\x42\xa3\x39\xca\x67\x8b\x4f\x66\x90\x84\xe2\xf5\x09\x0f\x2b\xdf\x92\xd5\xba\xfd\x1a\x1f\xcf\xed\x14\xa6\x45\x2b\x91\x5b\x57\xcb\xc6\xc2\xf2\xa7\xe4\x7f\xdf\x24\xcc\x0f\xf8\x3a\xe0\xcf\xc3\x65\x0b\x12\xb4\x45\x77\x2a\x6c\x6d\x90\x61\xd8\xe4\xca\x77\xc6\x3f\x6a\xb6\x6f\x35\x6c\x37\x92\xdd\xd1\xaa\x43\x62\x90\x80\x1b\x4c\xa8\xfc\xf4\x16\xe6\x6e\x95\xb5\x85\x94\x45\x73\x80\x91\x77\x5a\xe4\x4f\x1f\x84\xd2\x8b\xa5\xf0\xa9\xbb\x14\x6d\x02\x6a\x72\x1d\x82\x52\xf8\xa7\x2b\x87\x27\xbc\x31\xdb\x4a\xb1\x3c\x37\x2d\x1d\x95\x7a\xe1\x6d\xb5\x5f\xce\x5b\xfd\xf4\xb6\xab\x11\xd5\xdc\x7c\x7e\xb2\x7b\x09\xbf\x45\xd7\x23\xe6\x93\x94\x5d\xc8\xa6\x74\x40\x64\x34\xa8\x9e\x33\xc2\xe6\xda\x35\xc2\x80\xe7\x23\x3f\x10\x48\x1e\xf4\xc1\x60\x91\xe6\x38\x7d\x48\xb8\x8b\x9e\xf7\x5a\xfa\x0e\xba\xb8\x05\xc3\x28\x38\x2a\x93\xe6\x2b\x34\x19\xca\x2c\xcf\x67\x60\xa7\x98\xaf\xaf\x49\x47\x4f\x8b\xc6\x13\xf4\x0b\xc6\xab\x1a\x3f\x7e\x54\x09\xf9\x94\xf3\xb1\x86\x6b\xe6\x73\xd3\xe7\xb6\xcd\x98\x23\x5e\xa5\x83\x13\x75\x98\x02\xa9\xc4\x00\xe3\xbd\xe7\x49\x86\x32\x38\xe9\x5c\xf4\x90\xb6\xa3\x0a\x5c\x90\x67\xe4\xca\xaf\xe1\x7f\x2c\x18\xae\xd4\x88\x5c\x9c\x54\x4c\xd8\xbd\x7b\xd3\xbf\xd9\x84\x56\x2e\x71\x5d\x2f\x6c\x7e\x40\x21\x65\xc2\x52\xb0\x58\x96\x15\x54\x13\x8b\x39\x7e\xce\x65\x09\x42\xd8\xac\x75\x27\x76\xd8\x73\x92\x5e\x18\x57\xe3\x7f\xcd\xdd\xf2\x86\x8e\x39\x6c\x20\x16\xcb\x3d\xf4\x1a\xbb\x34\xc5\xdf\x44\xd4\x13\x86\x3b\x05\x77\x98\x16\xe4\xec\xee\x29\x13\x8a\xa5\xf0\xe7\x1f\x48\x39\x35\x8c\xd4\xb5\xf0\x47\x35\xe7\xf6\x6a\x80\x58\xc0\x84\x92\x54\x6f\x7e\xef\xbd\x83\x14\x3e\x70\x13\xc1\xe8\x23\xbf\xfd\x94\xbc\xc7\x76\x54\xd9\x75\x48\xd6\x47\xa3\x02\xe3\xa4\x61\x8a\x79\x97\x13\xf8\x75\xea\xd5\xe1\xdf\x27\xdf\x3c\x58\xa1\xde\x61\x21\x4e\x6b\xdc\x73\x8b\x6a\x9b\x4e\x1a\x0d\xdc\x42\x50\xc4\xf6\x3d\x5f\x84\x02\xea\xf9\x58\x15\x4c\x7a\xe6\x5e\x8d\x12\xc9\x90\x6b\xd6\xc4\x01\xf9\xcf\xdd\x7a\x12\x9e\x33\x37\x4e\x80\xc6\xfd\x4f\xa7\x91\xee\x35\x0c\x31\x37\x34\x4f\x28\x6c\x11\x3f\xb0\xa0\x4d\x58\xaa\x89\x3c\x4d\x9b\x26\xca\xed\x6f\x29\x16\x5b\x80\xd5\xa3\xcc\x22\x2e\x90\xe8\x41\x6b\x6a\x61\x32\xa3\xaf\xa4\xde\xf9\x1d\x6a\x91\x6d\x52\x1f\xe2\xe0\x9f\x3e\x48\x6a\xdf\xb9\x73\xda\x75\x44\xcb\x07\x15\xde\xc0\x2d\xa5\x76\x66\x1b\x51\xf8\xd8\xe2\x51\x2a\x32\x0b\x62\x88\xec\xb3\x1f\x1b\x93\x31\x04\x15\x26\x8b\xe1\xff\xdb\xaa\x30\x14\x03\x31\x70\xe8\xcd\xfd\xcc\xd5\x94\xea\xf8\x32\x59\xfc\xd2\x7d\x2b\xd3\xd1\xa5\x81\x98\xa0\x44\xe8\xe5\xe4\x96\x31\x1a\xd2\xd8\xab\xc7\x59\xea\x0d\x0d\x65\xd4\x22\x0d\x6c\x09\x36\xcd\x7f\x36\x74\x73\x67\x00\xb1\x35\x6a\x82\xc9\x74\xfd\x95\x99\x8d\x73\x13\x2c\x79\xc4\x93\xff\xf1\x12\xad\x9f\x25\xf1\xe4\xb2\x70\x75\x4f\xfa\x51\x36\x4c\x81\xc4\x7e\x6b\xb8\xb2\x26\x64\x0c\x45\x27\xfa\x9d\x4d\xe7\x70\x92\xa8\xc4\xda\x62\x63\x0b\x32\x68\x54\x02\x26\x74\x88\xe1\x53\x46\x0f\xd4\x0d\x3e\x10\xe0\xa4\x45\x9a\x99\xaa\xd8\x27\x7a\xd8\xf5\xc0\x3a\xbf\x30\x92\x4b\x42\x16\x57\x93\x73\x78\xbd\x15\x24\x37\x9b\x56\xe0\xfd\xbb\xfc\x91\xd1\xca\x7c\x9b\xa1\x6a\x8a\x3e\x94\xbb\x6a\xc9\x68\x91\x3e\x2d\x96\x2d\xda\xf3\xaf\x68\x02\x58\x16\x2e\xfb\x42\x09\xf5\xbb\x96\xd6\x14\x49\xf7\xe4\xeb\x3a\x2f\xe3\x7f\x94\x51\x28\xbe\x49\x33\x23\x79\x69\x3c\x7a\x87\xa6\x25\x13\xbb\x9a\x43\x3b\xf3\xf6\x7e\x41\x59\xc7\x0e\x66\xb4\x19\x9b\x3c\xe4\xff\x5b\x31\xde\x44\x66\x92\x37\x5b\xb7\xc8\x17\x65\xda\xdc\xb9\xd3\x8b\x33\xa2\x2b\x5c\x3a\x58\xcc\x9a\x60\x6e\x5a\x17\xfa\x07\x3f\x79\x55\x3b\xb4\x8c\x0b\x5c\x8b\xf2\x6e\xe3\xfa\x49\x5a\x11\x43\x5d\x17\xf1\x4d\xb7\xfe\x1d\x6e\x15\x0e\x46\x2d\xca\xfc\x1a\x60\xdc\xcc\x3b\xb4\xc9\x2c\x65\x2d\xc4\x92\x9a\xeb\xf0\x58\x5d\xb0\xd7\xac\xe1\x38\x1b\x6d\xdf\x1c\x9b\x2e\x55\x39\xbf\x30\x7f\x56\x11\xa1\x23\x6e\x93\x54\x29\xe3\x72\x48\xb9\xf7\x8f\x89\xbe\xdf\xf5\x71\x95\xc5\x40\x8d\xc2\xa4\xc3\xb2\x3c\x03\xe4\xba\x3a\x53\x77\x27\x28\x9a\x5b\x0c\x07\x30\x08\x9d\xb4\x45\xd9\x92\x53\x90\x0a\xec\x5a\x91\xe9\x4a\x66\xb5\x4d\x61\x00\x06\x7e\xe1\xbd\x8c\x3c\xb3\x98\xe8\x8b\xa5\x78\xbf\xbd\xb1\xfa\x2a\x71\xca\x01\x03\xd0\x9a\xf1\xab\x75\x99\x59\x1c\x65\xc2\x53\xdd\xc8\x2d\xd3\x12\x74\x0b\x37\xc4\xfc\x27\xff\xff\xf5\x93\x65\x52\x0b\xe3\xba\x0d\x4a\x4b\xe1\x43\x4b\xa4\xfd\x6c\x9b\x1b\x44\xff\xe5\xee\x66\xba\x34\xc6\x3e\x08\x42\x7e\xfc\x5e\x89\x82\xa9\x91\x6a\x0d\x7b\x7e\x91\x21\x31\x49\x0d\xe7\x49\x33\xa7\x16\x8e\x0e\x6e\xce\x38\xe7\xe8\x92\xb7\x6f\x7d\x8e\xc9\xb9\x70\x2d\x4a\x31\x9e\xc7\x45\xbe\xbe\xb6\x61\xa0\xf2\x8a\x21\x87\x14\x4b\xe1\xba\xcd\x70\x50\xa3\x3f\xb2\x78\xb5\x6c\xdc\xdb\xee\x52\xa4\x31\x81\x00\x52\xea\x35\x56\x2e\x50\x6c\xce\x68\x2b\xfa\x86\xff\xf9\x8e\x2c\xce\x39\x0e\x2c\x16\xeb\x0e\x6f\xba\x52\x21\x58\x07\x65\xdf\xe6\xf8\x8c\x0f\xed\xd2\xf6\x83\xd1\x7b\xe7\x08\x04\x74\x4f\x54\x3f\x9f\xa7\x97\x88\x95\x20\xf1\xf8\x33\x9e\x3c\x9e\xd9\x2f\xc5\xf4\xb5\xfc\xd1\xa5\xca\x58\x27\x8a\xe2\xc5\x52\xf8\xa5\x79\x1a\x4c\x8a\x9a\x81\xa0\xc8\x15\x4b\xe1\x8a\xbd\x97\xaa\xbd\x0f\xc7\x48\xa7\xc4\x51\x57\xbf\x25\x1b\x3c\x8b\x30\x30\x7a\x28\x56\xb1\x2b\x74\x50\x0a\xe3\x35\xce\xb0\xea\x33\x24\x5e\xa6\x27\x9e\x94\xb7\xad\xc6\xd3\xf2\xf7\x46\x72\xec\xc1\x55\xac\x8c\xe2\x9e\xef\xec\xda\x4b\x54\x02\x5d\x83\xd1\x06\xdf\x28\x8b\x57\xa9\xa3\xa2\x39\x43\xf9\x98\xb8\x65\x86\xcd\x58\x88\x4a\xd6\x11\xb7\x6f\xd2\xc1\xf3\x36\xb0\xdb\xc4\x98\xac\xdb\xd7\x54\xfa\x38\xd5\x50\x78\x6a\xff\x77\xdf\x89\x5a\xc0\xb3\x88\x49\x5c\x0c\xf8\xb7\x74\xd4\x7d\xf3\xe1\x41\x4a\x77\x60\x59\xf0\x84\xf3\x83\x0a\x8a\x2f\x15\xf6\x4c\x46\xca\xf0\x05\x3e\xd4\x4c\xa7\xb9\xe9\xed\xed\x45\x50\xe3\x13\xd5\xc7\x88\xc7\x2f\x53\x6a\xed\xa2\x4b\xdd\x28\x99\xe0\x14\x6f\xf8\x0b\xab\x04\xb6\x03\x99\x75\x68\x80\x0a\x03\x35\x5f\x6c\x0b\x3b\xd4\x64\xc8\xec\x16\x6f\xc3\x3b\x42\xa0\x13\x55\x2a\x98\x0b\xf1\x87\x9f\x7d\x4f\x1b\xd4\xcf\x6e\x8f\x19\x90\x5f\xe3\x03\xc9\xe2\x8d\x3e\x46\x2c\x5b\x01\xe4\x07\xac\xd7\xe2\x26\xc8\xb4\x74\x0b\xde\x54\xfe\x7f\x5f\x4d\x8a\x48\x97\x44\xef\xc7\x3f\x2d\x4c\xc7\xa1\x1a\x6d\x60\x2e\x2c\x26\x26\x17\x5f\xd0\xac\xd1\xa3\xd6\xc7\xe3\x21\x27\xfc\x67\x85\xea\xdb\x20\x36\x0c\x24\x8c\x3f\xcf\xd3\x21\x0b\x81\xeb\x73\x88\x1e\x00\x6c\x6e\x7b\x24\x5d\x2f\x63\x57\x90\xb3\xf2\x3f\x7c\x4c\x5e\x1c\x80\x9a\xe7\x19\x3c\x06\xce\x89\x1f\x44\x74\x07\xc6\xb6\x25\x65\x75\xab\x46\x52\x37\x3f\xaf\x24\xb5\xaa\x8d\x04\x0c\xab\x37\xbf\x77\xe7\xc0\x38\x86\xac\x58\xc1\x33\x60\x78\x6b\x97\x2e\xae\xe8\x34\xa0\xdc\x45\xb2\xc9\x1e\x76\x1e\x5f\xa9\x5d\x83\x29\xab\x62\x9f\x9b\xb4\xc2\x4f\x0e\x4b\x9f\xa7\x8f\x7a\x20\xed\x73\xe5\x38\x4d\x63\x3d\x46\x1a\xdd\x3e\x59\xb7\xce\x75\x04\x97\xfa\x0b\xe7\xa9\xd6\x56\xc4\x44\x1c\xf7\x33\x7c\x81\xd0\x19\x83\x19\x3d\x0f\xb0\x0f\x8e\x19\x2e\xbf\xc1\x4a\x75\xbb\xf7\xa1\x93\xfa\x5a\xc0\x12\x9a\xac\x71\xbf\x37\x47\x73\x25\xc5\x36\xc8\xcc\xc7\x99\x26\xf7\xd4\x98\x51\x4a\x3f\x08\xb1\x4c\x19\x10\x7d\xe5\xb1\x81\xa2\x38\xa7\x66\x3d\xae\x57\x07\x14\x34\x15\xb8\xa0\x2b\x88\x69\x5a\x70\xcc\x3a\x92\x36\xcb\x0b\x92\x49\x92\xa7\x61\xb5\xdc\xc0\xb4\x31\x8a\x15\x0b\x0f\x2e\xd0\x1f\x08\xf2\x7c\x78\xa7\xa5\x5e\xc6\xaf\x8e\xcb\xe1\x28\xf7\xac\xd1\xeb\xb6\xfe\xef\x27\x6d\x9f\x57\x4f\xc0\x3b\x8b\x6c\x5d\xdd\x41\x14\x13\xd0\xee\xbc\xba\x48\x3f\xb1\x0e\xd8\xd4\x88\x7e\x2c\xb7\xf3\x98\xe4\x7c\x22\xcf\x0b\x80\xde\x91\xa9\x61\x6e\x7c\x60\x84\x52\x63\x98\xb6\x34\x16\xea\x2d\x6c\x7e\x5f\x37\xba\x74\x81\xa1\x29\x94\xb9\x3f\xbc\x2d\xe1\x81\xd4\x82\xac\x8a\xdc\x68\x45\xf2\xa3\x55\xa3\xb4\x81\x21\x5c\x6d\x5e\x33\x5e\x79\x6e\x9e\x8f\xa2\x0b\xcb\x10\x76\xf3\x2f\xee\x4b\xbf\xc0\x3e\xf6\xfc\xc4\x61\xe6\xec\x19\xbe\xbf\x28\x53\x8f\x8f\x0d\x1e\x7b\xa6\xbf\x38\x8f\x8c\xba\x9c\x55\x7f\xed\xfd\x9c\x8f\x75\x55\x56\x08\xf3\xa1\x67\x86\x29\xa3\x21\xd3\x27\x4e\x0d\x4a\x9f\xde\xfc\x58\x85\xe7\xeb\xd5\x81\x07\x99\x5b\x6f\x2b\x32\xc5\xb8\x89\x99\x5f\xc3\x36\xd7\xb6\xbf\x7e\x74\x86\x1b\x05\x87\xdf\x14\x00\xa1\xdc\x96\xad\xf2\x93\x50\x15\x16\xc9\x22\x2d\xfd\xfe\xf9\xff\x1b\x19\x26\xc2\x5e\x61\xe3\x44\xb1\x31\xa4\x2d\x9e\xe5\xf3\x5b\x17\xa6\x97\x42\x09\xd6\x55\xa1\x3a\xe5\xbf\xf5\x98\x32\x79\x24\xcc\x0c\x1c\xd8\xc1\x43\x98\x9b\xf9\x2e\xbf\x73\x9d\x88\x44\x71\x2f\xdc\x77\xaf\xde\xbb\xd4\x88\x1b\x6b\x4f\x5e\xfd\xb2\x76\xfe\x84\x95\x03\xff\x6e\xcf\x6d\x1d\x27\x9b\xc2\xd8\x73\x5b\xbf\xd5\x1f\xcc\x51\xa4\x5b\xba\x6b\x88\x4b\x0e\x1b\x9f\x5c\x2c\x5b\x5e\x65\xb0\x1b\x7e\xe9\x7c\x1e\xba\x96\x62\xc6\xd2\x64\x8c\xf2\x1a\x61\x1b\x75\xfd\xb5\x99\x0f\x99\xb0\x28\xfd\x86\xf2\xa9\x62\x42\x6a\x1b\x3e\x58\x9b\x93\xb4\x88\xe3\xc4\x82\xea\xbd\xf9\x2f\xec\xd6\xf4\xaa\x6b\x0c\x39\x51\x44\xd0\x5f\x95\x87\xf6\x4f\xd0\x8b\xfb\x73\x4a\x02\x14\x6a\xcb\x06\xaa\xe8\x20\x8e\x7f\x3e\x7b\xe7\x44\xad\xfe\x82\xf3\x10\x9d\xe8\xcc\xaa\x64\x95\xcc\xff\x20\xfc\x01\x19\xe4\x1f\xef\xe8\x97\xfc\xeb\xa4\x62\x29\xec\x2b\x0c\xc1\x96\xa3\x06\xb1\x88\xba\xaf\x3a\xbd\x5a\xc7\xdd\x38\x00\xbd\xa5\xae\xe8\x49\x6f\xb8\x52\x99\xfd\x12\xdb\x56\x28\x02\xb9\x2f\xbc\xa5\x0b\xf2\x7b\xa4\xca\x83\x82\xe8\x9b\xff\xaa\x71\x08\xf9\xd8\x70\x6a\x8c\x64\xc3\x07\x65\xc3\xeb\x93\x94\x17\xdd\xfd\xdb\x35\xd9\x5b\x9b\xc6\x76\xc1\xa1\x35\x46\x07\x18\x53\x1a\x8f\x01\x0a\x83\x66\x8e\xd4\x6e\x7d\xe0\x0a\x23\xcc\x70\xed\xb1\x0b\xe1\xb3\x56\x80\x8f\xc9\xa9\x13\xe9\xf1\xbc\x69\x07\xe5\x73\xa1\x7f\x7e\xfa\x72\xb2\x8c\x31\x61\x01\xfc\xd3\xbe\x3a\x16\xd0\x71\xa4\xd2\x4e\xee\xaf\x5b\x94\x98\x41\x6d\xe4\x27\x0a\xe3\xc7\x77\xa8\x3e\xe5\x76\x03\xd0\x66\xe1\x6f\x2b\x5a\x01\xe2\x76\x53\x17\x0b\x4b\x9d\xd6\xcd\xaa\x92\xb9\xef\xd5\x69\x99\xd8\x51\xdb\x70\xe8\x8c\x52\x6a\x97\xb9\xac\x6f\xee\x8a\xe9\xf2\x03\xa6\xcf\x9d\x3a\x73\xe6\x2c\x00\x38\xf7\xcc\x94\xdd\xe1\xec\xa9\xd3\x3a\xda\x8b\xdd\x7c\x21\x90\xdf\x78\x4c\x61\x51\x60\x64\xe2\x3a\xc6\x31\xbf\x61\xce\x73\x9a\xa4\x87\x8f\x2a\x95\x73\xdc\x20\xe3\x99\x97\x45\x3e\x77\xc5\x52\x01\xfa\xdb\x7e\xc3\xf5\x36\x21\xc6\x52\x4e\xed\xe2\xbb\x15\x93\x73\xf4\x72\x6f\x3f\x9f\x4e\x1e\xd5\x00\xc1\x78\x43\x60\x75\x72\x83\x3e\xe0\x21\xbb\xa3\x03\xcc\x16\xa2\xeb\x9e\xb9\x6a\xa8\xd2\x36\x38\x0d\xea\x0a\xbe\x5f\xbf\x2b\x15\xa1\x55\x5c\x2c\x85\xee\x0b\x02\x60\x11\xc5\x09\x3e\x06\x0e\xef\xd0\x34\x5e\x62\x5f\x11\x3b\xe6\xf5\xe6\x6f\x3b\x92\xb2\x11\x8b\xdb\xe6\x5c\xd7\x5d\xc9\x9f\x9f\x5e\x84\xe1\xac\x71\xa5\x5c\x4c\x07\x2e\x80\x6f\x62\xf0\xd5\xb0\xa1\xca\x20\x1e\x35\xb0\x6d\x2b\x86\x1d\xb9\x97\xfa\xe8\x65\x33\x37\x03\x12\xe3\x85\xc2\xa6\xd7\xf4\x2d\xb4\x83\x3c\x33\xf0\x60\x54\x2f\xe2\xd5\xd5\xb6\x6c\x6f\xa7\xcd\x98\x03\x9e\xfb\x1a\x53\xd5\x62\x41\x95\x0f\x98\xc2\xc6\x0b\x32\xcd\xda\x88\x11\xcf\x43\xc5\x52\x58\x1b\xad\x29\x71\x80\x05\x46\xdc\xa9\x3c\x78\x2a\xfd\xe7\x58\x50\x2d\x8b\xc2\xbe\x70\xf9\x21\xf9\xd5\x5d\x4c\x6c\x65\xa5\x12\x3c\x1f\x1b\xbe\xfb\xc4\x01\x2a\x20\x9f\xc8\x7e\x8f\x29\x54\x08\xca\xa2\xee\x02\x3a\x8f\xce\x3b\xd2\xa4\xee\x4f\x88\xde\xe1\x32\xa6\xbd\xea\xc4\x67\x49\x11\xf6\x8d\xe5\xf2\xf3\x5b\x8c\xba\x55\x8b\x0a\x59\x3d\xe3\xc8\xb1\x74\x5c\xc3\x0e\x11\xc3\x0f\xbe\x22\x7a\x7a\x8d\x32\xe1\x40\x36\x98\x50\xcf\x7f\x79\xa8\x2c\x52\x1c\xa5\x99\xfb\x9e\xb2\xc3\x46\xf5\x62\x29\xfc\xca\x69\x85\xf1\x8b\x6d\x1b\x68\xd3\x7c\x5f\xd3\x6b\x6c\x78\x53\xf9\xd3\x18\x01\xdc\xa1\x78\xef\x70\xb5\x74\x02\x3e\x81\x38\xb0\xad\xd7\x93\x42\x9b\xd5\xa3\x3c\xfb\xda\x72\xe1\xc8\x6b\xd6\xb0\x15\x44\x27\x29\xfc\xcb\x1d\x03\xc5\x43\x73\xab\x81\x30\x5a\xcf\x05\xda\x1e\xc1\x8f\xca\x49\xee\xf9\x0b\xee\x36\x58\x13\xc4\x83\x3e\x29\x06\xfe\x7d\x7b\x95\x02\x47\x9e\x31\x6d\x36\x50\x1e\x76\x88\xca\x88\xba\x3e\xee\x82\x37\xf3\x9f\xec\xf4\x60\xb6\x1c\x30\xdf\x33\x6b\x81\x8d\xac\x1e\x9c\xb2\xd8\xf8\x93\x96\x39\xab\xd8\x17\x3d\x11\xbc\xc2\xeb\x17\xa4\x9b\x87\x49\x4c\x48\x53\xe7\x46\x8f\x91\x27\xa2\x07\x79\x35\x9f\xbb\x4c\xe5\x7f\x57\xd6\x5f\x8f\x0a\x76\xad\xa4\x49\x36\x7e\xfc\x8e\xc4\x53\xb6\xa2\x80\x78\xe7\x46\x99\x0a\x1d\x54\x75\x81\x34\x58\x98\xa2\xcd\xf0\x7c\xe4\x56\x25\x05\xce\xb8\xeb\x2e\x85\x69\x43\x99\x8b\x59\x19\x99\x75\x25\x0f\xad\x79\x4b\xd9\xaf\x62\x17\xd9\x80\x39\xb9\x67\x9f\xbe\x0e\x77\x71\x4b\x18\x96\x47\x37\xdf\xf8\xfa\xfb\xe9\xd8\x69\xd6\x88\x6d\x15\x83\x46\x59\x40\xe6\x12\xdd\x81\x71\x0a\x0d\xcc\x0f\x98\xcb\xa5\x29\x47\x3c\x25\xa3\x3e\x2f\xf7\x3c\xf1\x02\x5d\x7e\x34\x7d\x23\x99\x00\xd3\x85\x78\x82\xee\x5b\x84\xec\x40\x4e\xdb\xbe\x3d\x5c\x46\x0a\x0c\x34\xe5\x9b\xe6\x25\x1b\x44\x1b\x44\x2b\xa5\x52\xd4\x25\x9d\xff\xb7\x5a\x29\x9f\x7d\x7e\xe9\x98\x54\x30\xe4\xea\x38\x99\xad\xf6\xc9\xbe\x3c\x04\x34\x18\xee\x0c\x2c\x62\x12\xc4\xdb\xe7\x65\x67\x35\x06\x1b\xaa\x07\xe5\xa4\x27\x0d\x4f\x69\xdc\xe4\x46\xad\xdb\x13\x64\x0c\xc8\x88\xb9\xbe\xba\x3e\x45\x43\xb4\x3a\x90\x4a\xde\x1a\x9e\xe9\x05\xc4\x25\x5f\xb5\x5b\xdf\xa4\x47\xa5\xae\x74\x4f\xf9\xd1\xab\x83\x53\x12\x3a\xdc\xc6\x3d\xf7\xd7\xfb\x95\x1a\x85\x0f\x80\x99\x20\xa4\x3e\xf7\xc1\x50\x75\x4c\x4a\xc0\x17\x1f\xa8\x09\xaf\x5f\xa6\xc2\x55\xae\x5d\x31\x25\x7d\x73\x8a\xa5\x10\x1d\x93\xed\x43\x83\xd2\xa8\x0e\xf8\xea\xe9\x34\xb7\x1f\x59\x1c\x65\xce\x90\x9f\xa0\xbb\x7b\x8d\xdf\x1c\xba\x44\x21\x22\x63\x56\xf4\x68\xd1\x03\xf5\x33\xee\xa9\x72\xc7\x6a\xcd\xf2\x8a\xef\x31\xc4\x6f\x7f\x6e\xa8\xac\xa6\x51\xb7\x92\x8d\x3e\x75\x26\xdd\x2e\xd4\xb1\xe7\x61\x3b\x3d\xd5\xca\xfd\x6c\xb4\xc6\x72\x0b\x4c\x13\x7b\x5c\x0c\x2a\xf7\x62\x4f\x66\x6a\x88\x19\x16\x63\xfa\xc2\xc6\x3d\x8a\xbb\x14\x27\xef\x42\x14\xfb\xfd\x0b\x7c\x47\xb1\x02\xb7\x32\xd0\x95\xfc\xf8\x53\x72\xf4\x87\x6c\xdc\xc5\x45\xad\xe5\x9c\xfa\x87\x9b\x32\x40\xda\x6a\xdc\x72\xf6\x0c\xe5\x73\xef\x4f\x46\x59\x4e\xc6\xa9\xfb\xf6\xa7\x81\xdf\x65\xc4\x4c\x6c\x53\x37\xc6\xca\xa5\x2b\x9b\xa1\x67\xd3\x87\xd1\xc5\x55\xea\xc3\x36\x59\x00\xea\x2b\xbe\xb6\x1b\xe5\x15\x52\x29\x3c\xf5\x6e\x82\x57\xef\x44\x2a\x51\x66\xf3\x1b\xca\xa1\x21\x89\xd7\x64\x78\x42\x9f\x53\x91\x6a\x8d\x4b\xf8\x8b\xd9\x6a\xef\x64\x7d\x23\xe0\x60\x86\xc4\x68\xdc\xeb\x4a\xb2\xc8\xf4\x76\x58\x69\xdc\xb4\xa4\xbf\xc8\x6e\x0e\x71\x39\xf2\xeb\x93\x37\x6b\x38\xc1\x06\x74\x3e\xa9\xad\xe0\xb7\x0f\x67\x6c\x28\x78\x26\xfe\xf4\x0b\x42\x7e\xad\x38\x0d\xe4\xd7\x3e\x76\x54\x3e\xd0\x6e\xe4\x20\x62\xd6\x08\x48\x6b\xec\x4a\x9f\xe2\x69\xd3\xfd\x1a\xdf\x6d\xa7\x44\x66\x0e\xc8\x69\x7b\x14\xa8\x70\xd4\x22\x71\xb4\x5c\xf4\x47\x16\x4f\x90\xbb\x33\x5a\xb7\xc1\x4c\xcd\x70\xcf\x53\xa4\x5f\xe7\xcc\x2e\x4e\x6f\x6f\x6f\x87\xb3\xf5\xe1\xb3\x1a\x85\x3d\x8a\x7c\xe5\x04\xea\xbd\x63\xb0\xde\xa6\x88\x85\x43\x12\xad\x7f\xb5\x9e\xdf\x2b\xbf\x16\xc3\x1c\xf3\x07\x64\xce\x87\x12\x25\x6c\xeb\x9f\x3e\xde\x6e\xf4\xca\xb5\x25\xb6\x9c\x6d\x9a\xf5\x98\xc0\x7d\x26\x71\x7e\xe2\x82\x8b\x95\x84\x5b\x2c\x85\xd7\x1f\x55\x60\x59\x9c\x4f\x21\x56\x33\xb7\x3f\xa6\xbd\xc1\x81\x0b\x0e\x63\xbc\x2c\xfc\xfc\x4a\x19\x8f\x3c\xb3\x46\x6d\x04\x0a\x3b\xa0\x80\x33\xf1\x72\x37\x25\x3c\x83\xaa\x6e\x36\x2e\xdf\x77\x6c\xb8\xd2\x8c\x23\xbb\x88\xb9\x1c\x52\x29\xbc\xae\x5d\xd2\x18\x60\x59\xe3\x9a\xbe\x7e\x3e\x2e\x7c\x4e\x26\x4c\x00\xa1\x65\x34\x3d\x26\x0e\x53\xae\x8f\x32\x6c\x22\x06\xb7\xb4\xf0\xf7\x2b\x06\xa8\xb3\xad\x28\x8f\x16\x2c\x4d\xf7\xa0\x86\x05\x8a\x50\x1e\x95\x51\x77\x08\x0b\x67\x0a\xfc\xd2\x70\xe4\x1a\xd5\x6b\x9b\x89\x11\xa8\xd1\x98\x3c\x44\xe9\xad\xb8\xec\x5f\x74\x94\x36\x9d\x10\xe7\x76\xce\x6c\x50\x27\x5d\xba\x54\x7b\x63\x49\x6c\xd8\xf8\xde\xb1\x8b\x55\x8a\x49\x29\xec\x7f\x87\x60\x3e\x63\x14\x2b\x67\xfc\x74\xa5\x4c\xa3\x2d\x58\xe9\xae\xa9\xc9\xef\x9b\x54\xbb\xf0\xdf\x2e\x5b\x7e\x4e\xeb\x13\xd1\x25\xfe\xf6\xb1\x31\x4a\x0d\xe9\xea\x37\xba\x37\x7f\xc1\xe1\x49\x5a\xb0\x65\x4d\xd2\xe4\x30\x7d\xbd\x03\xfb\xbe\xc2\xe4\x8f\x5e\xb8\xd4\x0d\x3c\x71\x48\x3b\x9b\xe0\xe0\x8d\x2c\x21\x6c\xd0\x9b\x7b\xe2\x11\x01\x80\xa3\x8e\x13\xb8\x02\xb6\xd7\xa6\x21\x0e\xcb\x18\xbb\xe2\x85\x09\xb7\x6c\x94\x6f\x6f\xac\xaa\xa6\x6c\x6c\xae\x78\x3d\xcb\xdf\xf6\x14\xb2\xcf\x87\x34\xff\x43\x6c\x7b\x02\x89\x92\xdf\x72\xec\x52\x2d\xa2\x77\x63\x4f\xc1\xb3\xf6\x16\x3e\x3f\x41\x35\x6e\xc5\x4e\x6a\x96\xdb\xb5\x42\x3e\x9e\x6a\x71\x0e\x2c\x9f\x43\xc5\x08\xd9\x8b\x9e\x23\x5c\xc3\x7d\x53\x35\x80\x6b\xb2\xf9\x15\xcd\xc5\x4f\x8e\xe8\xf4\x11\xd4\x22\xb1\xa7\xd3\x5f\x5e\xd1\x46\x8e\x5c\xbb\x90\x9f\xa3\x07\x17\xab\x0c\x73\xd7\x8f\x1a\x3f\xc2\x07\x33\xdf\xeb\x7f\xb9\x5a\x18\xac\x58\xb1\x72\xca\xb5\xba\xc9\x54\x38\xf1\x11\xdd\x85\xd9\xf6\xb1\x95\x40\xca\x3e\xfa\x4e\x76\x98\x8b\x5c\x22\x94\x40\x42\xb6\x2b\x43\xab\x81\x0d\x2a\xbf\xb6\x87\x94\xd7\xb7\xcc\x48\x15\x59\xd1\x95\xc9\x6d\x5a\xee\xe0\x73\x83\x53\xc0\x8f\x2a\x77\x01\xd9\x27\xab\xe0\x1a\xb2\xed\x16\xf7\xfd\xfe\xd0\x2d\x8a\x98\x45\xe0\x99\x81\x8d\xa0\xfe\xb9\x69\x87\x22\xe1\xec\xfa\x51\x15\x10\xfd\xe7\xb7\xbf\x9a\xbe\x34\x2e\xe1\x1b\x8b\x12\x4d\xac\xf0\x1d\x3c\xb1\x30\x60\x47\x61\x36\x6b\x74\x6c\x96\x40\x94\x62\x26\x96\xbd\x36\x47\xc8\xb2\x21\xaf\x46\x78\xc1\x66\x4c\xea\x52\x5e\x48\x87\x0b\x13\x42\x3f\x9e\xdb\x7a\x5c\x5f\x2e\x97\x45\x89\x53\xea\x2d\xac\x94\xe6\xa3\x84\x57\x7e\x03\xc7\x27\x93\xf6\xb6\x4e\x21\x25\x1e\x7e\xab\x21\x47\x29\x9d\x81\xe7\x93\x4a\x77\x5b\x1b\xfc\xe7\x9f\xeb\x1c\xab\x55\x16\x66\x1d\xbc\x27\x60\x7e\x08\xad\xe1\xca\xb2\xa6\xa9\x41\x5d\x54\xc6\xae\x25\x6a\x8f\x04\x5e\xb3\x25\x29\xd2\x90\x2d\xad\xde\xc2\x9f\x2c\x91\xdf\xac\x45\x5c\xcc\xba\x63\x57\xe6\xfb\xc7\x40\x50\xb3\xb1\x5b\x9c\x36\x33\x25\xfa\x7a\xfd\x56\xa5\x7f\x41\xae\x59\xe3\x2c\xca\xd9\x8a\x36\x1d\x72\xbb\x1d\x4e\x3c\xc9\xaf\x59\x1b\x83\x05\xbc\x06\x61\x89\x66\xc6\x97\xd6\x6b\x22\x30\x01\x63\xd8\x35\xbb\xc1\x68\xf6\xb3\x07\xd5\xbe\xcb\xe5\x36\xaa\xc6\x92\x97\x87\x29\xb9\x84\x9a\x3c\x02\x44\x9f\x31\x62\x8e\x02\x55\x02\x7d\x85\xe8\xee\x7d\xe1\x16\x4d\x86\xe7\xdc\xf2\xb1\xf9\x57\x5e\x4e\xd7\x30\x0d\xc4\x6c\x82\x84\xb9\x12\xe2\xa6\xb8\xf9\x6d\x7d\xd2\xd3\x84\x36\xb8\xff\x61\xbf\x47\x75\xbf\x3b\xee\xe1\x1a\x87\xe4\xb7\x76\xe9\x9b\xea\xb8\x53\x83\x90\xd1\xa5\x61\xe2\x85\x4d\x4c\xe2\xbf\xf4\x8f\x6f\x5d\xa2\x92\xb0\x78\x7c\xb2\x70\xbc\x1d\xca\xf5\x5f\x3c\x42\x4f\x76\x49\x17\x7c\xfe\x23\x43\xd3\xb4\x2f\x47\xdc\xad\xdf\xee\xe3\xa3\xdb\x95\x88\x79\x34\xe5\x08\xb7\xed\x8c\x4c\x57\xf0\xda\xe5\x96\x2b\xa2\xf1\x0e\x11\xf8\x96\x52\xb8\xf4\x1d\x85\x7a\xd4\x03\xfa\x6a\xa8\x58\x0a\x3f\xc2\x89\xf1\xc5\x45\x42\xd1\x21\x83\xe4\xfc\xf4\x50\xe5\x9a\x90\x6b\xc6\xb0\xba\xc2\x05\x63\xb5\x8d\x5c\x13\xa5\x5d\x6a\x8c\x8b\x9e\x1e\xaf\x35\x71\xc4\x46\x16\xb6\x1b\x35\x82\x12\x35\xc1\xde\xfc\x88\x66\xfa\x8e\x20\x87\xba\x55\x71\x47\xb6\x8d\x57\xf1\x0f\x5d\x10\x0d\xf2\xc3\xf6\x25\x6a\x6a\x66\xe0\x79\x62\xfb\x94\x9b\xdc\xa9\x21\x84\x10\xf7\x20\xe3\xad\x47\xf3\x4e\x65\xb1\xc0\x70\xec\x05\x3f\xcf\x4f\xfa\x5f\x8b\xa0\x94\x6a\xfd\xc2\xa6\xae\xc2\xeb\x60\xe1\xb7\xfc\xa0\xee\x2a\x6e\xfa\xb4\x8c\x19\x3f\x60\xc3\x86\x6a\x26\x80\x0c\x55\x84\x00\xe1\x8b\x2f\xf1\x1c\xbb\x98\xa1\x26\xb1\x38\x97\xd9\x78\x74\xa7\xa6\x14\x86\x98\x10\xa1\x5e\x24\x60\xc0\xe0\x70\x04\x97\xfb\xcb\x79\xbc\x8e\xb9\x86\xef\x9f\x8c\xc9\xf6\x68\x69\x96\x7c\x0e\x6a\xa2\xa6\xa1\x52\xa1\x01\x03\xd5\x69\xa1\xb1\xf3\xa9\x99\x3a\xe4\x1b\xf0\xd9\x31\x22\x74\x82\x26\x55\x06\xf6\xd9\x02\xa7\x96\x47\x8f\x29\xe6\xbd\xbe\x8f\xcc\x3a\x27\xf5\x5c\xbd\x57\x71\xd0\x4e\xcb\x04\xbd\xa2\x69\x98\x45\x0f\x0f\xc5\xfe\x0c\xe1\xa2\x39\x0a\x51\xad\x96\x72\x3c\xfd\x4e\xf9\xc3\x92\xdd\x96\xea\xa1\x35\x38\xe3\x85\xc7\x65\x09\xd4\xc0\xcc\x21\xbe\x2f\x5f\xbd\x3f\x0b\x1d\x18\x9b\x94\x19\xf6\xf9\xf4\xf2\xba\x13\x83\xd2\x38\x20\xde\xd3\xbf\xa4\x8d\x9d\x28\x5f\x25\x0b\x5c\xef\x5f\xe7\xa7\x9f\x58\x7b\xdb\x4c\x31\x79\x38\xeb\xea\x7a\xa6\x26\x75\x2a\x94\xf9\xd0\x89\x00\x97\xb0\xf9\x12\x5f\xd2\x4d\x9f\x11\xf3\x5a\x46\x75\x0e\x57\xa3\x64\x13\x5c\x25\x41\x5c\xea\xea\x09\xda\x18\xc4\x06\x41\x99\xa2\x4b\x5d\x30\x70\xce\x5b\x15\x99\x24\xea\x48\xf5\xfc\x7c\x6f\x8c\xaa\x36\x83\xa2\x3e\x45\x80\xcb\xb8\x03\xce\xa7\xfb\x67\xa6\xdf\x31\x82\x41\xec\x50\xb6\xae\xd4\xfd\x30\x7c\xcc\x9a\x04\xb7\xf8\xe9\x5c\x30\x5d\x15\x89\x11\xd8\x26\x63\xeb\x91\xe4\x82\x48\x13\x29\xec\x34\xcd\x17\xaa\x12\xb8\x16\x0f\xd8\xb6\xe0\xc8\xf7\xe6\x2e\xd9\xc1\xb1\x85\xb7\x40\x28\xcf\x04\xfd\x63\xa3\xe5\x56\xbc\xbd\x6d\xee\xcc\x19\x59\x27\x8b\x23\x62\x85\xeb\xfa\xd4\x25\x81\x0a\x66\x3b\xa6\xed\x2d\x3d\x2a\x5c\x6a\x20\x55\xbc\x5e\x50\x1c\x7f\x88\xcd\xc1\x79\x85\xfc\x54\xbe\x42\x2c\x13\xdb\x2e\x0b\xb9\x8e\xf8\xfe\x7e\xfc\xe1\x11\xad\xec\x1a\x9f\xcf\x90\x36\xad\x4d\xba\x7e\x87\xca\x60\x1d\x3e\xb0\x45\x93\xd0\xa0\x09\xd6\x4f\xa6\xfd\x29\x03\x65\xf1\x6a\x96\xe1\x9e\x7e\x63\xb5\x6c\x79\xa3\x96\x92\xf9\x01\xa7\xb5\xfd\x68\x25\x0f\x84\xd0\x65\x12\x2a\xec\x56\xf2\xb7\x4f\xd7\x0c\x9c\x49\x43\xb4\x8d\x57\x8d\x91\xaf\x58\xe0\x05\x4c\xfd\x60\xfc\x9c\x36\x29\xb6\x50\xc3\x17\x12\x8e\xc6\xe4\xf3\x74\xa1\x6e\x52\x65\x02\x03\x19\xee\xdd\x9d\x94\x48\xc8\xae\xc7\x6f\xdb\xaf\x97\x68\xc7\xc7\x01\x01\x2a\x37\xc6\x83\x7e\x78\x87\xf0\x59\x73\xb0\x6b\x39\x31\x67\xfa\x71\xdd\xf8\xb6\x52\xe1\xb3\x8d\xef\xcc\xe3\x0f\xe3\xba\x6b\x16\xe9\xdd\x68\xed\x6d\xb9\xbe\xaa\x05\x0e\x72\x85\x2b\x0a\x28\xd9\x3c\xa9\xd4\x19\x41\xd9\x0a\xa0\xc2\xd9\xd3\x5f\xaa\x92\xe0\x06\xf1\x4c\xda\x40\x76\x66\xad\x7a\x77\x6c\xc4\x87\xc1\xe9\x01\xd4\x22\xc2\x43\x93\x07\xab\xa8\x2a\xcc\xf8\x9e\xfc\x9f\x56\xc7\x36\xf6\x0d\x6e\x7b\x5d\xf8\x50\xc8\x1f\xce\x4a\xc1\x73\xe0\x76\x71\xf9\x03\xef\xcb\xae\x89\x30\x1e\x70\x19\x08\x66\x43\x9a\xda\x7c\x48\xb7\xe0\x88\x8e\x32\x97\x22\x84\x6c\x39\xf3\xd1\xc1\x8a\x82\x86\x5f\xc3\x2d\x38\x23\x3f\x7d\x3e\x7d\x1e\x5d\x5e\x53\x43\xaf\xf0\xbd\xd3\x23\x94\x58\x80\xaa\x2e\x72\x63\xba\x6d\x7e\xfb\x32\xfe\x1d\x05\x58\x5d\x28\x5a\x2e\x7a\x48\x7e\x48\x23\x70\xab\x62\x4b\xd1\x27\x8c\x79\x2c\x42\x1f\x20\xfa\xc7\x67\xe7\xcb\xda\x12\xc1\x60\x8e\x33\x4d\x95\xdd\x42\x85\x00\xcd\x39\x77\xeb\xf3\x0a\x22\x0d\x75\xc7\x16\x74\x1d\x2b\xa4\x01\x28\xca\xa8\x1c\xe4\x0f\x69\x6a\xe1\x0e\x76\x68\x9b\xa8\xa5\x4b\x87\x35\xb5\x70\xea\xf2\xb2\x34\xb1\x77\xdc\xb0\x66\x84\x5e\x6d\x57\xe3\x14\xf6\xba\x2f\xa1\x25\x32\xc6\x67\x2e\x60\xf0\x70\x75\x6a\xe9\x30\x64\xf1\x2c\xd1\x3e\xfa\x0a\xed\x7d\x0e\x3c\x5f\xc8\xab\x29\xd5\xb7\xb1\xee\x94\xd6\xe9\x22\x53\x40\xce\xf3\x7b\x8f\xca\xb7\x7d\xfa\x34\x10\x95\xb8\x7d\xad\x86\x64\xac\x21\x62\x23\x3e\x73\x17\xaf\xd6\xa9\xb7\x06\xab\xfb\xb3\x78\xad\xf6\xf5\xd7\x15\x10\xa8\xd3\xa8\x21\xa1\x5f\x14\x7d\x50\xe1\x48\xfa\x5c\x81\x09\xba\x2f\x17\x8d\xf9\x7f\x12\x2a\xfe\xc2\x08\x39\x7a\x5c\xab\x4f\x0e\x8c\xfb\x00\x9f\xf8\x01\x4c\x87\xae\xda\xae\x1c\x3f\xea\x5a\x28\x3a\xd5\xe1\x13\x87\x63\x0b\x00\x56\x09\xb8\xa7\x45\x7d\xbb\x36\xc9\x84\xc9\xb8\x27\xd7\xfe\xb7\xcf\xd4\x06\x5c\x98\x79\xd8\xae\xf0\xc2\xaf\xb0\xee\xbd\x61\xca\x99\x25\xa0\x2e\xc7\xcf\xe6\xf8\x7d\x3a\x8a\xdf\x76\x14\xf9\x72\xe3\x97\x0f\x68\x1d\x98\x8d\xcc\x7a\x11\xfc\x45\xe3\xae\xfe\x7f\xee\x1a\x28\x92\x2d\x86\x1a\x11\xee\xde\x5e\xc5\x49\xcf\x33\x59\xe0\x13\xb7\xbb\x58\x0a\xdf\x5d\x24\x2b\x8a\x39\xed\xa9\xa1\x4a\xb8\xec\xd5\xe1\xda\xc9\x44\x02\xf3\x90\xeb\xbb\x3a\xf6\x9f\x2d\x23\x37\x31\x44\xfd\xec\x43\xe9\x6b\xeb\x98\x96\xc8\x39\xc7\x8d\xfd\xf6\xa9\xe9\x43\xe5\x98\x26\x62\xbe\x8b\xbb\x35\x6c\x29\x2a\xe8\x0f\xd4\x0e\xd4\x07\x6a\xbc\xf8\x88\xc2\x23\x80\x09\x5c\x3c\x5b\xcc\x1b\x2b\xf4\x55\x7b\xb7\xaa\xaa\x98\x1b\xd5\xa1\x68\x36\x12\xde\xcb\xe5\xaa\xbb\x07\xa9\x8d\x00\x8f\x57\xb9\x15\xbb\x14\x8b\x2a\x50\xa1\x86\x51\xc1\xf9\x2f\xc9\xc5\x46\x19\x11\x10\x35\xe9\xdc\xc3\x0f\x49\x8d\x38\xa0\x38\x56\xea\xcd\x5d\xb9\x45\xce\x2a\xb9\xc7\x0f\xce\x92\x0a\x8c\x5b\x16\xa7\x87\xc9\x0c\xb9\x88\x11\xcb\xaa\xa5\x2e\x7a\xe6\x54\xb9\x94\x6f\x03\x65\xa5\x49\x13\x94\xf7\x81\xfb\x64\x90\x18\x2b\x79\xfc\x69\x7d\xbc\xe2\x5a\x95\x20\x99\x03\x8c\xb9\x43\x41\xd4\xb2\x6e\x71\xdf\xfe\xbc\x84\x07\xcb\xc0\x35\x81\x5e\xc1\xb5\x41\x46\x6e\x51\xec\xcb\x02\x06\x72\x12\xb9\xfc\x12\xa9\x9d\xd0\xc9\x7d\xb7\xf4\xaf\xf5\xb7\x0a\x37\x96\x5a\x84\x6d\xfb\x46\x1a\x80\x00\x7b\xba\xf7\xba\xe2\xcc\x80\xb8\x28\xf4\xa9\x49\x81\x26\x77\xe9\x66\xdd\xe8\xcf\xaf\x25\xa0\x93\x07\x1f\xe2\x05\x50\x69\xd2\xd5\xfa\x38\xee\xc2\x85\xfc\x6f\xf9\x8c\x82\x61\x1d\x30\x08\x04\xed\x19\xd9\x36\xae\x26\x42\xbd\x5f\x7c\x5d\xf1\x76\x69\x45\x39\x81\x2b\x1f\x7d\xec\x4e\x05\x6d\xd1\x83\xcd\x44\xb7\xaf\xef\xf3\x32\xd4\xb7\x3a\x6d\x78\xd8\x2f\x2e\xca\x18\xd0\xba\x89\xbe\x14\xe0\x3f\xbe\xbd\x38\xfd\x45\x9c\xa0\x5a\x4d\xa8\x36\x3f\x7d\xec\x8a\x56\x66\x6a\x9a\x95\x36\x35\xf6\x3e\x20\x40\x27\xa6\x19\x34\x10\xd4\x10\xe1\x2c\x0d\xdd\x85\x9d\x32\x98\x0b\xf3\x62\xe5\xef\x25\x1d\x0a\xb5\xb2\x26\x70\x57\x4e\x50\xd2\x7b\xd4\xee\xf2\x3b\x35\x60\xa5\x26\x79\x8f\x51\x1d\xbb\x5e\x3c\xf8\x37\xfa\xca\x30\x6e\x23\x78\x14\x03\x66\xca\xa2\x24\xdd\xcd\xf4\xe6\xbf\x7c\x8b\x1c\x8b\x30\xec\xf9\x8c\x88\x76\x34\xff\x7b\x45\xc0\x07\x77\x71\xec\x67\x29\xdc\x38\x2e\xf6\x98\x6b\xc2\xc4\xed\xd2\xad\xba\xbd\x03\x73\x20\x45\x40\x83\xe1\xef\x50\x75\xb0\xa9\x15\x98\xb1\x74\x4c\x7e\x6a\x97\xcc\xd5\xb3\xf9\x42\x17\xd0\x22\xbb\xe4\x78\x2d\xe5\xe1\x01\x25\x49\xfd\x96\x51\xca\x40\xa1\x1e\xa5\x23\x59\xd3\x3e\x31\x7d\xa8\x12\x2a\x98\x23\xe4\xed\x43\x56\x53\x11\x4b\x16\xe6\xc0\x1a\xd0\x0c\x92\x98\xe2\x3a\xec\x54\x66\xef\xd3\xe0\x76\xa2\x44\x11\x3d\xea\xfc\x3b\x35\x0c\x18\x01\x8a\x25\xef\xea\xdb\x4e\x2b\x56\xb2\x54\xb4\xa0\xbd\xf9\x9f\xec\x55\x75\x74\x31\x88\x33\xe6\x1e\x3a\xa5\xcd\xfc\x5b\xd8\x9b\x02\x9b\x9f\x1b\x36\xa5\x03\x4c\x93\xda\x36\x2e\x23\x5c\x4f\x79\x3e\x8f\x5e\xcc\x57\xd9\xab\x59\xe0\x34\x94\x7f\xef\xef\xcb\xe3\x4f\x03\x28\x07\x73\x97\x2e\xd3\x2d\xc1\x91\x1d\x83\x69\x9e\xdc\x27\x4f\x06\xaa\x33\xa4\x82\x4c\xb6\xda\xfa\xdc\xd6\x0a\xf8\xba\x00\x84\xca\x1a\xca\x2c\x06\x14\x9a\xb9\x93\x78\x7e\xc4\x7b\x52\x70\x95\x2f\x3c\x7e\x3d\x4e\x83\xbe\xb8\x26\x0d\x18\xaa\xe2\x78\x47\x7e\xab\x46\x5d\x71\x28\x93\xc6\x59\xcd\x86\x2a\xa7\x65\x37\xe1\x14\x4e\xd0\x98\xb1\xad\x1a\xf1\xb1\xa8\xa4\xee\x1b\x29\x63\xa0\x67\x63\x0c\xe6\x9d\xa3\xcf\x5c\x2c\x1e\x4c\x5c\xa1\x6c\x7d\x43\xa6\x05\x9b\x7b\xfa\x1a\xdf\x7a\x5d\x75\x88\x71\x85\xd3\xef\x0b\x1b\x94\x9e\x18\x31\xc5\x69\xbe\x30\x60\x78\x96\x5b\x2c\xa0\xe6\x8b\xb7\x8e\x10\x8f\x08\xd5\x6b\x84\xd1\xa6\x3c\xa8\xdb\x7a\x04\xa0\xa6\xdb\x29\x53\x9b\x27\xaf\x55\xc3\xf9\x58\xed\x66\x1b\x59\x0e\x61\xca\x7e\x61\xc4\x96\xcc\xca\xd7\x26\x1c\x32\xc2\xc9\xab\xdf\x7a\x56\x39\x78\x38\xf0\xcd\x1a\x74\x64\xc7\xb7\x08\x57\x6d\x44\x5c\x95\x2c\x69\x7c\xe3\x49\xb9\xc4\xae\x52\xe6\xd5\xb0\xab\xba\x20\x5e\x21\x85\xc9\x11\x53\xfa\x78\xc3\x5e\xab\x58\x36\x23\x21\xde\xf1\xb7\xb5\x23\x62\x98\x7c\x66\x5e\xb7\x70\xa2\x62\x51\x87\x02\x1b\x40\x0a\xc6\x45\x85\x18\xd5\x03\x86\x49\x30\x6c\x1c\xde\x2f\xae\xd9\x51\x14\x36\x5b\x27\xe4\x73\xb0\x31\x73\x39\x80\xf8\x5d\x5b\xe7\xb5\xa3\x84\x10\x59\xb8\xfe\x68\x72\xd5\x3d\x8a\xbe\x75\xb8\xbe\xaf\xbc\xe8\x32\x45\xd0\x89\x15\xae\x9a\xa9\x11\x04\x62\xe1\xb8\xf0\x13\x3d\xf2\x93\xcb\x8c\x08\xd7\xca\xa9\x0f\x0d\x56\x8b\x10\x97\xdb\x73\xe7\x82\x9d\xfa\x78\xd6\xb6\x11\x4b\x84\xca\x6e\x6d\x13\x33\x33\xea\x60\x10\x7f\x09\xfb\x1c\x94\x2b\x36\x87\xb0\x1e\xf0\xb7\x96\xa3\x81\xf0\xd8\x5d\x9a\xde\x2f\x4c\x06\xa6\x74\x76\xc6\x2d\xd2\xb6\x57\x86\x69\x45\x9b\x18\xf5\x7e\xa3\xc6\x3f\x8b\xb3\xbe\xa0\x0d\x1c\x79\x70\x90\x42\x1e\x6a\x62\x06\x87\xa5\x3c\x59\x31\x64\x0b\xca\x65\xcc\x8a\x26\x15\xf5\xac\xf1\xf9\x77\x44\xed\x6c\x63\x8b\x83\xba\xf2\xb7\x54\xb4\x89\x68\xc5\xc7\x5c\x45\x36\xcc\x2f\x91\x1f\x40\x27\xd5\x10\x9f\xd8\xdf\x3c\x5e\xff\x85\x0a\x22\xe0\xc2\x17\x7e\x7d\x5f\xdc\xb3\x71\x06\x50\xf4\x26\xff\xdd\x1b\xca\xdb\x1a\xb8\x20\xd2\x67\xe4\x0f\xf4\x17\xcf\x1e\x55\x03\xfe\xf0\x5f\xbb\x43\xd0\xa3\x6e\x5a\x7c\xd5\xd5\xd7\xae\xbe\x15\x38\x86\x2f\x68\xd3\x4d\xea\xc6\x30\xaa\xfb\x0f\xa7\xe5\xff\xd3\x3e\xbb\x87\x26\x6b\x07\xa9\xa7\x1c\x3d\xba\xda\x39\xe4\xe8\x73\x0d\xa6\xb3\xfa\xab\xe2\x33\xfa\x0e\xd7\xce\x23\xa9\xd6\x04\x73\x29\xfc\xdd\x6e\x6d\x41\x51\x43\x2c\xba\x71\x82\x8e\xe7\xf2\x1b\xb1\x1a\x51\xe2\x09\x45\x2d\x63\xd0\x23\xba\xd8\xb3\xc9\x48\x85\x98\x31\xbd\xb3\x70\xff\x21\x59\x0c\x61\x9b\x88\x8c\xdc\x9b\xff\xd9\x53\xe9\xdb\xd0\x4d\x03\x26\xc8\x06\x5f\x59\x95\x8c\x7f\x02\xa6\xea\x50\xfb\x7b\x64\xeb\xef\xa1\x32\xf2\x09\x66\xaa\x5c\xd6\xfb\xe9\x92\xc9\x45\x9e\x87\x02\xa5\xb5\xc9\xbd\xfc\x8c\x0e\xaf\x73\x01\x86\x24\x50\xda\xd6\x23\xa3\xd5\x3e\x35\x56\x2b\x76\x39\xf7\xe0\x2b\x8f\x6a\x79\x14\xb3\xce\x80\x41\x97\x1c\x6e\xdc\xd0\x5f\x01\x42\x76\x15\x4b\xe1\x0f\xac\xf4\xac\xca\xa6\xae\x45\xa3\x7a\x01\x7e\x43\xbc\x19\xcb\x4e\xa9\x6b\x42\xec\x09\x6a\xe1\x47\x4e\xc8\xe3\xd5\xb0\x51\x77\xf4\xe9\x4f\x1c\x49\xa9\x9b\x00\x75\x37\x1e\x15\xd0\x47\xd3\xe9\xd7\xb4\x89\xcb\xfb\x68\x95\x6e\xbe\x67\xa0\xcc\x1d\x8e\x6f\xc2\x27\xdd\x20\xe9\xcb\xdd\xb4\x5a\x2c\x85\x87\x8f\x2a\xaf\x07\xf8\x0e\x15\x4b\x61\xb9\x83\x3f\xf9\xeb\x81\x6b\x29\x98\xc1\xc7\x57\x68\x0e\x4b\xb1\x1c\x45\xbc\x07\x15\xbd\xe2\x97\x0f\x28\x0a\xed\xd8\x41\x10\xb1\x66\xf6\x93\x77\xda\x41\x2e\x0e\x9a\x58\xea\x7f\x85\xa7\x4f\x2a\x56\x9c\xb8\x82\x02\x5b\x1c\x9a\xca\xe3\xba\xe4\x2a\xb2\xb0\x43\xe2\x39\xda\x47\xb6\xc8\x6f\x38\xbd\xad\x03\x9c\xa8\xff\x76\x9c\x17\x1d\x8b\x50\x77\x9a\x87\xbd\x3d\xfd\x3a\xc5\x0e\xfd\xd0\xc0\xe8\xd8\xf5\x8f\x5c\xa9\xbc\xef\x42\x12\xb9\xf0\x77\x1d\xf2\x89\x30\xe4\x94\x03\xd7\xf4\x09\xc7\xb4\x19\x65\x2d\x00\x79\x0e\xb1\x63\x47\xb7\xa3\xf3\xd2\x13\x3a\x97\x5b\x05\x85\xf9\xc1\x19\xf1\xdb\x1a\x65\x89\x15\x5c\xf8\xaf\x7b\xb5\x9f\x83\x08\x3a\x0a\xe2\xad\x74\x7e\xd3\xf6\xf4\x88\xb8\x16\x78\x1e\x26\xae\x5a\x83\xe5\x0e\x9c\x9e\x20\xa7\x67\xae\x85\x1b\xd8\xb5\xc0\xc0\x55\x1f\x05\xff\x48\x03\x2e\xb4\x88\x59\x4f\x6a\x9f\x0f\xce\x1f\xa2\x54\xd9\x0d\x9b\x8a\x81\xce\x9f\xe7\xf1\xa6\xbd\x42\x99\xc3\x7b\x69\x28\x13\x8e\x2a\x2a\x94\x36\x81\x35\x60\xee\xfc\x5b\x92\x99\x27\xd7\x8e\xe0\x43\xaf\x36\x95\x88\x81\x3c\x0f\xe6\xc8\xdd\xef\xcb\xee\xc0\x6f\xc2\x0d\x7e\x5b\x78\xd8\x09\x9b\xcb\xe8\x94\xba\xef\x27\x75\x71\x6c\xa3\x31\x6e\x9c\x96\x31\xed\x8a\x70\x97\x24\xc9\x86\xec\xa9\x7e\xb1\x74\x20\x72\xeb\x9c\x66\xd4\x9b\xbf\xe9\x4c\xfa\x56\xf6\xd4\x88\xef\x92\x54\x39\x5b\x18\x34\x26\xfd\x3c\x2a\x36\x65\xc4\x42\xd2\x2e\x7b\xff\xab\x03\xc5\x01\x67\x75\xcc\x2b\xb8\xf0\x8a\xe3\x57\x6a\x75\x2d\xb0\x3c\x7d\x62\x9e\x4b\xf7\x2b\xf7\xcb\x4d\x43\xd4\xd2\xd8\x16\x8d\xb4\xf1\xd5\xf9\xe9\xf3\x55\xa3\x8d\x44\x53\xac\xcf\xe0\x73\xac\x1d\x5c\x9c\x78\xc3\xee\x3b\xa0\xe2\x2d\x91\x6b\x12\x0f\xc4\x48\x8d\xbf\xd3\x8c\x68\x67\xb7\x4d\x17\xdd\xe4\x9b\xc2\x16\xc5\xc3\x36\x0f\x51\xc6\x2b\x13\x86\xa7\x48\xbe\xb6\x04\xf7\x1c\x78\x7b\x50\x7a\x09\x6b\x47\xaf\xe6\x22\x8d\xd9\xc4\xc0\xf4\x46\x18\xa0\x1c\x7f\x5b\x99\xc7\xb9\x88\x09\xd1\xd0\xab\xdf\xbd\x5c\x69\x9c\x4c\x46\x3d\x5a\xc9\x10\xd7\x8c\xb7\xce\xe3\x25\xe3\xcd\xa4\xee\x53\x99\x0f\xc2\xab\x17\x0f\x51\x7a\xca\xc0\x05\xdf\x94\x52\x6f\xfe\x7d\x0d\xe2\xdb\x00\x5b\xdd\xa9\x31\x07\xec\xf3\xe3\x34\x57\x40\xda\xe2\xb5\x51\xb8\xf7\xb9\xf4\x4d\x9f\xd4\x22\x7e\x4d\x10\xe7\xaf\x59\x37\x5a\x0a\xb4\xa1\x4c\x00\xf9\xf0\x4a\xe9\xcc\x5a\x15\xca\xcc\x19\xf7\xec\x67\xf8\x26\xf9\x2a\x1f\xe4\xb9\x69\xe6\x95\x1c\x16\xca\x12\xb8\x93\xd6\x90\xeb\x79\x54\xd5\xe8\xea\xaf\xe8\x0d\x74\xa3\x1a\x85\x87\xfa\x8f\xa1\xa2\xca\xc4\x35\x72\x60\x4c\xbe\x45\x1d\x0f\x22\xd7\x42\xcc\xe2\x75\xc6\xa4\x91\x2a\xd4\x81\xf1\xbd\x42\x68\x2c\x4f\xe7\xd6\x2a\xc3\xd8\x2d\x23\xb3\xde\x16\x8f\x23\xfe\xc0\xd2\xb7\xb5\xce\xb0\x63\x13\x61\x96\x15\xd2\x7b\x33\x36\x68\x10\xd8\x04\x7b\x18\xf5\x1b\x2d\x71\x82\xfa\x50\x21\x9c\x78\x58\xa5\x67\x0b\xe1\x78\xa3\x63\xb7\x18\xc8\xb4\x28\x78\x26\x47\xff\x36\xbb\x4d\xd3\x13\x08\x92\x3a\x34\xbc\xe9\x94\xb6\x0b\x64\xa4\x49\x6c\x5c\x8d\xa1\xa1\xc6\x37\x27\xa4\xd7\xed\x76\x77\x60\x39\xc4\x4e\x6f\xe5\xc3\x9f\x3f\x2c\x59\x78\x75\xe4\xf5\x74\x9b\x75\x92\x25\x79\x1e\x49\x88\x1b\x62\x89\x0a\x3e\x72\x9f\x3e\xab\x89\x17\x4e\x9d\xd5\xde\xce\x4f\x90\x31\x62\xdb\x50\x65\xde\x81\x99\xd0\x50\x0b\xef\x59\x17\x7b\x94\x77\xcc\x2e\x96\xc2\xff\x7d\x85\x7f\xeb\xc0\x15\xb0\x88\x52\x6f\xee\xe2\x77\x75\x4c\x6b\x83\xf8\xc8\x06\x5c\xc9\x37\xfa\xa6\x21\xf4\xd5\xc0\x34\xc9\x39\xe4\xd3\x8c\x5f\xae\xd2\x18\x5f\x8c\x0a\x03\xde\x52\x78\x9d\xa6\x5c\x2d\xe0\x40\xdd\x09\xf4\x73\xf3\x4a\xde\x0b\x55\x19\x0f\xef\x85\xb1\x77\xa6\xd3\x6b\x85\xc3\xba\xbd\x73\xa6\xd7\x8b\xb6\x6a\x72\xaf\x51\xed\x0d\x87\xb1\x43\xd4\x9c\xfc\xa9\x8b\xe0\xf7\xea\x41\xdd\x30\xdb\x17\x5d\xf4\x4b\x67\x63\x45\x5d\x13\x94\x27\x4a\xbd\xc6\x9f\x8f\x2a\xce\xad\x8a\x85\x90\xf1\xf1\xa3\x9a\x98\x69\x50\x6e\x50\xec\x22\xae\xe1\xd5\x6b\x1c\xde\xa9\x0a\x5c\xd8\x88\x1b\xa5\xe6\xf6\xf6\xd3\x44\x7b\x62\x4e\x62\xa9\xb7\x60\x3e\xc4\xd3\xdf\xea\xd2\xaa\xd2\x8a\xd5\xa5\xb8\xca\xfb\xf2\x5a\xf9\xae\xcd\x55\xed\x07\x8d\xad\xa7\xc4\xfe\x91\x11\x2a\x77\x58\xf9\xca\x4e\x45\xf6\x8a\xd8\xa8\x01\x60\x48\x08\x89\x0b\x0f\x25\xb5\x31\x56\xd4\xd7\xc2\xcf\x28\xee\x79\x15\xe4\xf9\xdc\x08\x4e\x8c\x5d\xfb\x9f\xa7\xe1\xec\x5a\xb4\x68\x8a\x5c\x5e\xb8\x61\x6f\x6c\x4c\xe3\xf9\xa8\x1e\x35\x7c\x5f\x3b\x3f\x96\x2f\x8b\x72\xa2\x52\x3c\x54\x96\x6a\x7a\x0b\x24\x6a\xdb\xe3\x91\xe3\x2f\xfa\x0f\x88\xd3\x81\x2f\x14\x20\xf3\x3b\x59\x76\x4a\x4c\xa3\x8a\x85\xff\xca\xdc\xc1\x2a\xc2\x8d\x06\xd5\x1a\x3c\xf5\x15\x82\x09\x77\xfd\xb5\xcb\x97\xdf\x18\xaf\x3b\x66\x2b\x23\x15\x10\xc5\x80\xd2\xe2\xf1\xbd\xd2\x1a\x2f\xc8\xaa\x36\x4e\xd1\x44\x89\x1b\x8c\x56\xb1\x2b\x36\x5b\xbf\xdd\xae\xad\x95\xba\x88\xe7\x43\xa9\xf5\x95\xb1\xaa\x53\x0a\xaa\x70\x91\xe1\xcf\xf7\x53\xd5\x83\x59\x83\xc6\xd0\xae\xb0\xbc\x72\x9c\x0a\x48\x5c\x59\xba\x71\xca\xb5\x3a\x55\xe1\x23\xeb\x25\x74\x79\x12\xbc\xb6\x17\xce\x54\xe9\x4c\x69\x71\xdc\x17\xd2\xa7\xac\x61\x4b\x2d\xd9\x5f\x3d\x97\xae\x4d\x3a\xb1\xe7\x61\x6d\x09\x7e\xd7\xc4\x51\x9a\xd2\x67\xfc\xb3\x62\x29\xbc\x55\x31\x27\xc1\x66\x80\x2c\xca\x00\x48\x53\x18\x54\xd3\xd1\x2c\x26\x4e\xfc\x0e\x7a\x0b\xee\x1c\xf9\x7b\x8c\x58\xb1\xcd\x60\xf8\xc7\x91\xe9\xf7\x11\x31\x3e\xe4\x09\xe7\xae\x1c\xa6\x05\x01\xdb\xe1\xb7\xde\x52\xf0\x7f\x20\x52\x0f\x28\xa4\xe8\x27\x6f\x28\x36\x51\x0c\x27\x96\x48\xc6\x8a\xa1\xa3\xf4\x27\x69\x62\x2c\x5c\xbd\x0b\xe5\x9e\x74\x94\x03\x45\xd4\x73\xb1\x50\xbf\x39\x4f\x9e\xb8\x72\x60\x0b\x85\xef\xfc\xf5\xda\x42\x27\xa6\x88\xc5\x23\xc7\xd2\xbc\xe4\x98\x39\x38\xcb\xb0\x38\x78\x44\xf1\x0c\x4f\xbc\xd4\xf8\xd9\x98\xa8\xb0\x46\x19\xb6\x03\xd3\x8f\x43\xc9\x97\x1f\xd1\x4d\x9d\x68\x7d\x4a\x67\x27\x14\x29\x2b\xce\xa4\x09\x16\x8c\x7a\x18\x5c\xf8\xcf\x09\xe7\x7b\xd9\x4a\x4a\xdf\xdb\x61\x41\x9f\x1b\xd2\x13\x6f\x3e\x88\x47\x5d\xe1\xb4\xd2\x25\x0b\x3f\xd0\x6f\xb1\x09\x0c\x78\xc2\xf9\x42\xc6\x0d\x33\x2b\x50\xe4\xfd\xf3\xc3\x3a\x92\xee\x70\x26\xd0\x34\x0b\xf5\x77\x65\x87\xd5\xe2\x39\xad\xcf\xae\x44\x67\xc3\xac\xb1\x14\x3d\xe1\xc5\x05\x4a\x7b\x4b\x98\xc9\xcb\x3a\xe3\xdf\xef\x95\x26\x27\x60\x42\x92\xfb\xe4\xcd\xb2\x54\x2b\x53\xa7\x2c\x2a\xfa\x9e\xf3\x74\x2b\x6b\x10\xbf\x88\x0e\x97\xd8\x9c\xfc\xeb\x52\xae\xef\xbb\x6a\xf5\xf2\xe8\x2f\xaf\x39\x29\x75\x69\xb9\x92\xf8\xb4\xbd\x4a\x56\x85\x9d\x03\xaf\xc3\x0f\xef\x98\xed\xd5\x50\x03\x27\xaf\xc8\xfc\x0a\xef\xdf\xdc\x71\xf0\xef\xe3\x90\x3f\xae\xbd\x6b\x4e\xd9\xc2\xed\xd6\xcc\x05\x53\x62\x49\x70\xf8\xd0\x29\xca\x8e\x41\x14\xfd\xd1\x47\xed\x3f\xa2\xc7\x1a\x92\xa0\x99\xf3\x87\xd6\xc4\x63\xb5\xc0\x15\x59\xfb\xd5\xa5\x23\x44\xe0\xb5\x84\x64\x48\x02\xf4\xfa\xf8\x96\xfe\x22\xef\xb0\x2a\xe2\xfb\xd0\x35\x07\xd2\x5d\x63\xe0\xb5\x71\xc2\xd0\xe1\x37\xd2\x47\xb7\x9b\xb2\xba\xc8\xb2\x1c\x1d\xd8\xa3\xe5\x75\xe4\xd7\x30\x27\xde\x84\x63\xf6\x8d\x54\xce\xa6\xe7\xb3\xc0\xf4\x83\x38\xcd\x96\xfb\xeb\x92\x2f\x81\x87\x5b\xa4\x92\x70\xa8\x4e\xb7\x4b\xa5\x33\x64\x35\xa3\x63\x6d\x29\x5e\x5e\xe1\xa0\xa4\x77\x4c\x1e\x58\x6e\xf1\x6a\xa5\x15\xc4\x4d\x90\x1d\x7c\xee\x59\x19\x07\x3b\xa6\xce\xec\x98\x9d\x88\xb8\x14\x2e\x3d\xa2\xf3\x66\x49\xac\x76\xb7\x69\x45\xea\x4d\xb6\xc5\x78\xf3\x0f\xed\xda\x02\x80\x22\x27\x69\xf6\x8c\x0b\xf6\x48\xff\x4a\x95\xa0\x68\xf4\xed\x2b\x9b\x16\x1f\x7b\x3e\xdf\xdc\x6c\x78\x9b\xaf\x03\x3f\x85\x09\x66\x8e\x9a\x0b\x8d\x43\x6b\xd3\xb7\xbd\xc5\x08\x98\x42\x8b\x8a\xe9\x5f\x8f\xe9\x82\xe0\xbc\x10\x4d\x48\xff\xca\xe7\x95\xb1\x49\x9d\xe8\x45\x5c\x7e\x48\xbe\x5d\x1d\x1d\x7e\xad\x58\x0a\x7f\xbb\x53\xeb\x9b\x40\xcb\x2e\xf6\x25\x15\xd2\x74\xb2\x86\xa9\xa1\x66\x8c\xb1\xfb\x5c\xa7\x44\x62\xc3\x9f\xea\xb3\x5f\xbe\x64\xb4\xe1\x13\x87\x6f\x0a\x72\x3f\x9e\xaf\x0d\x24\x91\x17\x3b\xdc\x2c\x1b\xa5\x1c\x0f\xe0\xa1\x29\x23\xfe\x8d\x67\x64\x60\xeb\x28\xce\x56\x7e\x52\x3d\x92\xb5\xf4\x03\xf0\x1f\x6f\x50\xbf\xfe\xc0\x45\xe2\x4d\x07\xba\xbd\xf1\xdf\x1a\x0d\xc0\xc3\xc8\x8b\x6d\x8b\x73\x87\xdf\x95\x85\x4d\x4c\xe5\x8b\xd3\x64\xfe\x99\xa6\x6a\x6f\x41\x40\x99\xe4\xdf\xe7\x0f\x10\x77\xb5\x89\x99\xe0\xb9\x4f\x7c\x52\xf1\xcd\xb2\x11\xab\x17\x4b\xe1\x05\xa1\xee\xc6\xe2\x70\xb4\xa3\x58\x61\x1b\x9f\xd3\xb0\x83\xb4\xc2\xf3\x73\x5c\xf4\x16\x56\xec\xd1\x4d\x3d\x5d\x0b\x3b\xae\x58\x70\x5c\x78\x4c\x46\x89\x28\x21\xf0\x4b\xc9\xed\xd8\x9c\xbe\xdb\x65\x14\xfb\x09\xe7\x6e\x1c\xc7\xe3\xf0\x32\xca\x2c\x50\x8f\x8f\x03\xce\x77\x0f\xa9\x85\x42\x1a\x53\x6e\x29\x0c\x7b\xc4\xa8\x4d\x40\x05\xb4\x70\xc9\xa3\x69\xca\x31\xe9\xc1\x7e\x19\x57\x69\x53\x0c\x1a\xe4\xc9\xff\xe8\xfc\xa4\xa2\x6c\x50\x65\x4d\x94\x9b\xb1\x4a\x43\xe8\x31\x48\xaa\x51\x53\x31\xfb\xc0\x50\xa5\x40\x8d\xee\x0b\xcf\x05\x7f\xbf\x58\x8c\xe2\xbd\xee\xa8\x00\x8f\xee\x62\x95\xaf\xc9\x8a\x6b\x30\xc9\x6a\xce\x6c\x6b\x2a\x72\xd7\xd8\x57\xf6\x78\x1f\xef\xa3\x6d\xe9\x09\xb3\x88\xa0\xa2\x15\x2e\xed\x49\xc2\xbc\x5f\x8c\x0e\xea\xda\x0f\xd2\x89\x82\x96\x3b\xb9\x55\x53\x42\x1c\xbb\xab\x67\x8c\x7a\x0b\x21\xd2\xa9\x9c\x97\xfc\xdc\xc7\x32\xe6\xfb\x42\xcd\xb7\xd4\xa5\x33\x45\x18\x23\x56\x42\x02\xcf\xed\xd3\x24\x08\x69\x19\x7b\xc4\x4f\xc4\xdc\x6e\xb8\x53\xd6\x92\x81\x2b\xb0\xd6\xc6\xd1\xe9\x0a\x4b\x5e\x59\xa6\xbc\xb5\x45\xa3\xd7\x9a\xd4\xa5\x51\x69\x3e\xa5\x05\x1f\x36\x71\xd9\x48\xbd\xaf\x0a\x58\xbc\x44\xbc\xf9\x05\x7e\xfb\x6f\x4c\x8e\x4e\xce\x3b\x28\x73\x6d\x37\x8c\x7f\xbe\x58\xe6\xef\x07\x4c\xa5\x04\x96\x75\xf8\x9b\x02\xc7\x60\x82\x4d\x88\x08\xa5\x7d\x9f\xd6\x16\x4e\x7e\x60\x75\x73\x09\xae\xa7\x3a\xd2\xac\x2a\x81\x4a\x3f\x17\xfb\xb3\x30\x4b\xa0\x40\x97\x2c\xcd\x08\xc9\xe4\x3e\xb1\x41\xce\x50\x7d\xda\x88\x1b\x21\x58\xd2\xd7\xa5\x06\x19\xed\x81\xd7\xf8\xd6\xc1\xca\x9e\x2b\x88\x8e\x5d\x74\xf1\xe7\xbd\x25\xbd\x09\xb2\xe0\xb3\xc2\x98\xc1\x17\x89\x3a\x1e\x3c\x85\x8d\x1f\x6f\x93\x77\xa4\x11\x1d\xda\xeb\x16\x29\xc3\xdd\x1a\xb2\xed\xe8\xbf\x6a\x3f\xac\xab\x21\xb9\xd1\x7d\xe6\xe7\xef\x8b\xe7\x6b\xa4\x26\xd2\xc4\x89\xeb\xb3\x71\x42\x01\xe9\x55\xa9\xdb\x83\xb8\x2f\x66\x61\xf9\x31\xe9\xbd\x44\x5b\xca\x20\xf1\xae\xe1\x29\x9e\xf3\xaa\x45\x59\x9e\xf3\x0d\x2f\x69\x32\xdd\x8c\xe0\x8a\xe0\xa4\x77\xbf\x2e\x23\xa4\xdf\x22\x26\x06\xba\x54\x0d\xb4\x7f\x6f\xe0\x9d\x75\x71\x09\xc3\x6e\x1d\x2b\xd2\x12\xf9\x7b\x9e\xe1\x3f\xb9\x9e\xd4\x6b\x04\xa9\xe2\xbd\x6f\xdf\xab\xeb\xe9\x77\xf3\xc3\x67\xb0\x95\x8a\x02\x18\x6d\xd9\xc8\x55\x11\xbd\x3f\xb6\x2f\x53\x80\x95\xcc\x27\x59\xd9\xb9\xc2\xdd\x8b\x07\x88\x80\x88\xc5\xcc\x26\xdc\xf5\xa6\x22\xa7\x81\xcb\xd8\xc2\xcd\x62\x29\xfc\xb7\xd5\xe9\x97\xca\xc1\x6e\xe2\xbc\x5a\xea\x35\xae\xd2\x3c\xf2\x13\x0c\x6c\xfc\x52\x0e\xb8\x52\xc9\xaf\x02\x27\xd9\x9b\x5b\xfc\xac\x9c\x7e\x9b\xd4\xad\x10\x31\xa6\xce\x0c\x43\x0e\xae\xe2\x77\x67\x11\xa3\x1e\x51\x3d\xd6\xf2\xbf\xd8\x9b\x51\x92\xc7\xb6\x1d\x0b\x31\xf6\x1a\xbb\x8f\xa6\xb4\x95\x7d\x0c\x20\xa7\xf0\xd3\xd3\x75\xc5\xdd\x44\xa9\xfa\x9e\x75\xea\xa9\xb6\xaa\x20\x07\x98\x9b\xdd\x4f\x71\xdf\x45\x75\x3f\x70\x94\xe2\xe3\xc7\xca\x8e\xda\xc6\x08\x26\x77\xe1\x1b\x9b\xc6\x2a\x8c\x4e\xb3\x9e\x45\x4c\xe5\x0e\x2f\x49\x1f\x5c\x8e\x40\x88\x2f\xe4\xe3\x4f\x0d\x53\x07\xb7\x51\x2e\xe3\xc5\xf2\xdd\xcf\xcb\xfc\x93\x38\xe1\xf2\x79\xc4\xbc\xca\xa5\x5a\x7d\x12\x53\x4f\x45\x40\xb3\x16\xcb\x4d\x8f\x4d\xdc\x3a\xbc\xa1\x0a\x47\xa4\xa1\xd8\x68\x9a\xb5\xa8\x16\x56\x72\xd3\x93\x5a\x7d\x33\x63\x5a\xdb\xec\x59\xf1\x80\xe6\xd9\xc9\x8a\xef\x6d\xa3\xc1\x68\x13\x20\xff\xff\xba\x70\xb4\xde\x28\x36\x89\x15\xef\x23\xf3\xfb\xf6\x2b\xac\x0b\x46\x3c\x9f\xfa\x9c\xd6\xf6\xed\x87\x2f\x16\x9d\x91\x10\x98\xcf\x15\xde\xe6\xcd\xc5\xa4\xb9\x20\x09\xd3\x73\x56\x9c\x09\xc4\x18\x6d\xa9\x9b\xb5\xaf\x9e\x97\xbc\xd9\x4d\x55\x17\xaa\xe0\x4c\x54\x84\x65\x80\x65\x9d\xf7\x77\x29\xaa\xfa\x34\x76\xc5\x2b\x78\xa7\x74\xad\x08\xf0\x0b\x8a\xf2\x88\xd0\x43\xdc\xf7\x96\x32\x93\x70\xab\x14\x60\x62\x05\xba\x7b\xb0\x6c\xa2\xb9\xd3\x5b\x74\xe9\x27\xfa\xc9\x0f\xe6\xe6\xbe\x77\x6e\xbd\x58\x56\xbe\x90\x98\xee\x7c\x5a\x43\xf4\xfb\x18\xd9\x7e\x4d\x34\x2c\x3f\x1b\xcb\xfd\x60\x6e\x62\x65\x94\x61\xca\xe6\x67\x3e\x35\x48\x21\xbe\x55\xc5\xbc\xfe\x9e\xe7\x54\x12\xaf\x4b\x9b\x89\x89\x75\x7d\xef\x10\x15\x74\x1d\x63\x46\x73\xdb\x27\x27\x77\xce\xc3\x4d\x15\xa3\x22\x99\xf8\x76\xf4\x42\x84\x4f\x8a\x30\x5e\xe1\x3d\xeb\x57\xda\x32\x76\x16\xdd\x5c\x28\x05\xe6\xc9\xaf\x68\xeb\x06\x52\x75\x89\x2c\x40\xfb\xae\xd6\x34\x81\xd4\x96\x9d\x2f\xdb\xfe\xb6\x87\x27\xad\xab\xda\x96\x67\xba\xed\x57\x27\x68\xe4\x16\x16\x70\x79\x33\x81\x7d\x5c\x7d\x8b\x4c\x28\xb8\x15\x13\x8d\x1e\x48\xbe\xa9\x16\x50\x9e\x1b\x2d\xdd\x29\xcb\x99\x3b\x9d\xd3\x98\x34\x1e\xf1\x39\x4c\x55\x94\x99\xad\x9d\xfc\x00\xb4\x88\x5f\xb3\x18\x6a\x21\x3b\x2a\x88\xbe\xfb\xa4\xe2\xf3\xe3\x94\x11\x63\xc8\xf3\xf8\xd1\x98\xab\xad\x11\x1d\x64\x13\x53\x68\x32\x42\x81\x60\x2f\x8c\x59\x53\xd8\x6e\x02\x83\xfb\x5f\xa6\xca\xe2\x89\x11\x93\x66\xe2\x8a\xbf\x46\xf3\x35\x10\x6c\xd9\x8c\xd2\x6a\x6e\xe1\x95\x7c\xb4\x37\xa3\xbd\xe8\x45\xb5\x0d\x1c\xed\x4e\xed\x69\x55\x03\xd7\xc1\xae\xb0\x79\xeb\xd8\xa8\x62\xde\xdd\xaa\xa0\xcf\xe5\x07\x69\xf8\x68\x41\x86\xf2\xa9\x98\x4a\x1d\xee\xaf\x88\x79\xd7\x89\x0d\xf7\xe5\xf0\x46\x31\xa3\xc4\x15\x22\xd8\x1e\x46\x45\x61\x87\x00\xa2\xcf\x21\x9c\x1d\xf2\x83\x35\xf1\x1c\x14\xb1\x94\x19\xca\x35\x6c\x40\x1c\x75\x90\x2d\xce\xfe\x17\x04\x90\xf2\xba\x80\x79\x82\xc2\x11\xf6\x74\x64\x61\x86\x09\xff\xcb\xf8\xfe\x7c\x69\x11\x37\x7d\x46\xf4\x37\xba\x0e\xa4\xf7\xf8\xb4\x89\x59\xab\x86\xed\xe8\x70\x49\x2b\x87\xf0\xd9\x81\xc9\xe8\x2f\xde\x6d\x4c\x58\xc7\x83\xd7\x0a\x54\x45\x2e\x2d\x96\xc2\xbf\xf4\x4d\xdf\x9d\x32\x76\x71\x85\xf8\x89\x1d\x7b\x61\xc9\x42\x5d\x6a\x01\x3a\x42\x9f\x98\x62\xae\xf0\x99\x39\xba\x99\xb4\xe7\xc7\xf6\x44\xa5\x5e\x63\xee\x7a\x39\x78\x75\x32\x2a\x97\xb9\x2f\x2d\x4a\x47\xee\x6e\x8c\xa2\xe6\x98\xd7\xa9\x7d\x1e\x4f\xbe\x79\x4c\x12\x1e\x97\xe2\xc2\x51\xe6\xc6\xd5\x6a\x25\xbd\x93\x71\x4c\x93\xda\x76\xe0\x68\x60\xee\x5d\x8a\x86\x55\x85\x54\xfc\x1a\xb8\xe7\x60\x40\x73\xbe\x9b\x8e\xac\x5e\x03\xb9\xc4\xab\x45\xe9\x9a\xdf\xbb\x3f\xef\x48\x63\xca\x19\x69\x22\x66\xa9\xd0\x68\x63\x96\x36\xc8\x44\xae\x05\x25\x51\xf8\x5d\xcd\x7b\xc8\xa6\xc2\xb5\xa6\x70\x5b\xd7\x25\x0a\xc5\x20\xc3\x8d\xc9\x3b\xc7\x84\x23\x18\xe5\xcc\xc4\xfc\x1d\xef\x25\x1d\x01\x23\xea\xd4\xdd\xd0\x5a\x82\x06\xf5\x3c\x3e\x2f\x85\x5e\x6c\xc5\xc2\x73\x98\xb2\xc5\x9b\x96\x52\x6f\x7e\xf6\xcb\x13\x74\xb2\xbc\x56\x5e\x8a\x56\xe1\x1b\x27\xd2\x35\xe6\x9c\xb9\xc5\x59\x62\x01\x9c\xbb\xf2\xd9\x51\x4a\xc3\x87\x1c\xe4\x5a\xb4\x41\x03\x9b\xaf\x4c\x67\x6a\xea\x66\xc0\x54\x10\xbf\xf9\xd9\xd3\xaa\x61\xad\x5b\xad\x07\x5e\x50\x66\x94\x53\x98\x3e\x33\x26\x83\xf2\x04\x99\x93\x62\x29\xc4\xdb\x65\x6b\xef\x52\x0e\xac\xf6\xfb\x5f\xa1\x1d\xaa\x3a\x82\x61\x00\x78\xde\xf8\x89\x68\xfd\x19\x61\xcc\x2c\x9a\x27\x4e\x9b\xff\xd8\x81\x14\xc1\x1a\xda\xf1\x70\x6d\x07\xcf\x2a\x1e\x20\x2e\xc3\x7b\x84\x88\xad\x19\x45\x4b\xdf\xe7\xa0\x86\x27\x0c\x75\x83\x5a\x23\x26\x88\x89\xf5\x7b\x5e\x59\xb8\x40\x9d\xa7\x3c\xb2\x07\xdf\x51\x06\x9f\x7c\x19\x17\xfd\xca\x4a\x1d\x28\xd7\x24\xd8\x17\x44\xde\xe8\xba\xdf\x5a\x25\x34\x74\x1b\xd4\x4f\x6a\xd6\xb6\xc5\x29\xf9\x56\x6a\x07\xe7\xac\x58\xcf\x6b\x4f\x9f\x62\x8a\xea\x36\xee\x4e\x61\x3f\x7e\xf8\x40\xa2\xb6\xdb\x89\xe3\xd3\xff\x5f\xc2\xb6\xe9\x5a\x86\x6e\x27\xe2\xdf\xfe\xdb\x52\x99\x0a\x5e\x00\x9a\x06\xc6\xba\x65\xda\x28\x0a\x03\x1f\x42\x44\xb3\xa9\x07\xd3\x2f\xaa\x59\x8b\xd2\x3c\x22\xda\xb4\xe1\x9a\x09\x4a\x21\x60\x5a\xd4\x45\x76\x14\xe4\x5f\xdd\xaf\xcd\xdf\xb1\x18\x44\x0a\x10\xd1\x4d\x2f\xa4\xc3\x49\x95\x52\xcb\x13\x01\x31\x7f\xb6\x21\xd7\x65\xe0\xf6\x61\x11\x31\x7b\xbf\x67\xfb\x30\xf1\x78\xed\x0a\x37\xdb\x72\x41\x1c\x34\xfc\xe9\x9e\xb4\x36\x28\xaa\x02\x11\xff\x5c\x10\x8c\x17\xa7\x2a\x54\x2e\xc4\xea\x5c\xaf\xe4\xc8\x6a\x6d\x28\x40\x9a\xc4\x06\xc3\x3f\x1e\xe2\xee\xda\x9f\xae\xf7\xa7\xcd\x9d\x3b\x4b\xe0\xe8\xd0\xe6\x74\xf5\xd1\xc0\x40\x4a\x57\xe5\x39\x8c\xd7\x0e\x2b\x5f\xc9\xf5\x41\x49\x98\xab\x45\xe4\xff\x43\x9b\x5b\x01\xa7\xb8\x45\x3c\x1c\xdf\x8e\x9f\x3c\x24\xbc\xd8\x62\xa9\xc6\xe8\x0b\x8f\x9a\xa3\x40\xdb\x90\xd3\x28\x63\x5b\xf6\x7c\xe1\x9d\x13\xf8\x7d\xba\xd6\x47\x76\xb7\x5a\x9f\xe7\x7e\xab\x20\x2f\x13\xc0\x91\x38\x26\x7f\x7b\x43\x5d\xd5\x70\xa3\xc8\xe8\xc4\xde\x39\x58\x31\x1b\xb7\x4d\x5a\xa3\xc2\x97\x29\xff\x97\x89\xb2\x32\x2a\xdb\x84\x67\xff\xa1\x07\xd3\x27\xb7\x86\x91\x55\xf4\x29\xfc\xaf\xd8\x51\x4e\x2d\x17\x5b\x19\x48\x0b\x28\xec\x11\x17\x28\xb0\x3a\x65\x2c\xb7\xf0\x9d\x61\x22\x1d\x23\x1b\xa5\x7e\xf2\x09\x4d\xca\xce\xac\x11\x13\xa8\x08\xbc\x3f\x18\xfe\xf2\x70\x65\x15\x11\x35\x07\x55\x61\xf6\xb9\x67\xc9\x40\x65\x56\xd1\xe2\x73\x9c\xbb\xd7\x26\x69\xd0\x35\xb3\xd4\x3b\xe3\x3d\x2e\xc3\xfe\x49\x1b\xd7\x7d\x96\x91\x6c\x2e\xdc\xf0\xb0\x02\x7c\xf1\xbb\x1d\x4e\x1c\xcb\xff\xdb\xe3\x09\xa9\x1e\x79\xbe\xca\x98\xfa\xf7\xb7\x44\xc0\xaa\xd1\x56\xb1\x14\x7e\x78\x4e\xba\x62\xf0\x82\x32\xe7\xa8\x3b\xc4\x0d\x62\xbf\x4c\x63\xd4\xc6\x78\x04\x02\x87\xff\x1d\x5b\x3e\xd3\x1a\xea\x41\xcc\xa2\x41\x2c\x93\x9c\xef\x99\xac\x49\xd9\x06\xd1\x83\x4a\xca\xaa\xde\xfc\x75\x5d\xd2\x26\x98\x92\x04\xc9\xf8\x80\x62\x15\x5d\xc5\x99\x82\x20\xdf\xff\xa5\xb4\x98\xc4\x2c\xce\xf5\x2f\x3f\xcb\x8b\xcd\xe9\xb3\xf8\x62\xbc\x14\xee\xef\x1a\xa5\x22\x8b\x30\x88\x6d\xf8\x8e\x60\x50\x7e\xcd\x16\x0a\xcd\x81\xc7\xcd\x7c\x0a\x73\xb4\xe3\x53\xe5\x46\x0a\xea\x36\x74\xd4\xcb\x49\x33\x31\x63\x36\xc4\xf4\x51\x87\xb4\x09\x35\x69\xd8\xd4\x41\xc2\x06\xc3\xd8\xa0\x79\xbf\x77\x68\x2c\xb3\xb0\xf0\xc8\x10\xa5\xd3\xf1\xa2\xf6\x02\xe4\x16\xbf\x74\xa5\xfc\xf7\xb9\x1d\x1d\xc5\x19\x33\x67\x80\xf1\xe0\x84\x07\xd2\x48\x34\x93\xba\x55\x9b\x3a\xc0\xea\x88\x33\xb5\x71\xfa\xac\xbe\x2c\x07\x25\xf5\x78\x3c\x5c\x6f\x8e\xd4\x5b\xc4\x0a\x65\x7c\xa1\x5a\x70\x57\x0c\x8f\x9b\x53\x17\x45\x19\x4a\xa1\x57\x88\x36\xf6\x1a\x68\x44\x72\x53\x0f\xa5\x43\x5f\x99\xa1\x26\xf6\xce\x35\xb9\xcb\xff\x6c\x97\xec\x22\x67\xb4\x4f\x8f\x7e\xfb\xe7\x9a\xf5\x0e\x68\x53\x25\xb5\xc6\xe9\x0d\xb2\x94\x9e\xa4\x10\xb7\x2f\x68\xe8\xd5\x28\xe9\x8c\xbe\xd9\xbc\x78\xc2\x3d\x47\x41\xb0\x83\x40\x2e\xe0\x00\xae\x1b\x7a\xb1\x96\xae\xe7\x29\x10\x7b\x6a\x72\xbd\xad\x5d\xcb\x79\x07\x64\x52\x17\x30\x2b\xa2\xac\xb7\x76\x64\x84\x0a\x11\x57\xbe\x04\x1f\xd1\xdb\x3a\x55\x74\x18\xdf\xf6\x16\x4b\xe1\xf7\x1e\x48\xaa\x30\xaf\xae\xee\x42\xb7\x37\xe4\x9b\x3a\x6d\x5a\xbb\x90\x1e\xc8\x39\x9a\x34\x33\xad\x54\x88\x19\xd7\xf8\xe1\x26\x57\x4b\x5b\x01\x62\x96\xf8\xd9\x37\xde\x54\xf3\xba\x49\x5d\x00\x1a\x67\x27\x51\x8a\xc5\x6b\x13\x7b\x80\x8f\xad\x6e\x97\x91\xc8\xa5\x5c\x96\xc7\xd8\xbe\x34\x39\xe4\x95\x36\xb0\xf4\xf8\xf4\x1e\x59\x14\x47\x3f\xa2\x76\x5d\xbc\xe5\xb9\x97\x1f\x57\x8c\x50\x69\x19\x20\x6c\x6b\xf6\x0f\x52\xc1\xc8\x82\xb8\xd5\x23\xcc\xb2\x01\xb0\x85\xec\x62\x99\x30\x1f\x90\xdf\xfb\xd7\x8b\x6d\x05\x6e\x78\xaa\x0f\x60\x7e\xff\xda\x21\xe2\x79\xd8\x36\x2a\x83\x83\x0e\xe7\x9d\x0e\x96\x62\x97\x26\xd0\x09\x33\xb9\xf6\x98\x9b\xe9\x4d\x71\x93\xca\xe9\x5a\xee\x9e\x25\x1a\xfa\x06\xca\x24\x68\x58\xf2\x77\x2d\x97\xd3\x87\x0e\x78\x3e\x65\xc4\x4b\xa8\xff\xef\x39\x71\xa9\x81\x97\xf2\xe3\x2b\x2c\xdf\x2d\x25\x69\x01\xa6\xb8\xf0\xa0\x92\xec\x31\xf2\x10\x8f\x3a\x4b\x0e\x0e\x52\x6b\xe8\x9b\xa3\x0a\x3a\x64\x1f\xa8\x6a\x4e\x8e\x23\x1c\x70\x56\xef\xe5\xaf\xdb\xf4\x0e\x38\x20\x6f\x9e\x10\x08\x26\xc2\x3c\xbf\x4c\x19\xc7\x53\xbe\xaf\xcc\x3c\x69\x60\x71\xac\x52\xee\xc5\x76\x1e\xa7\xbb\x31\x82\x01\xfc\xe8\xc1\x3c\x89\x35\x18\xe5\x3e\x00\x31\xcb\x3f\x77\xef\x02\xad\x67\x11\x24\x38\x98\x5f\xc0\xf1\x7a\xf6\xa0\x1a\xa1\x4c\x12\xbf\x16\xbf\x7d\x2d\xfd\x5a\xdc\x8e\x18\x62\x52\x37\xf4\xdd\x9a\x8e\xd3\x8b\x9a\x8d\x04\xe7\xb5\xf5\xa8\xdc\xbc\xb4\x70\xb1\xf4\xbf\x9a\x4c\x61\x37\xb6\x7d\x8f\x70\x3d\x7d\x39\xcc\xe9\xfb\xee\x00\x71\x7e\xc1\x73\x13\xe6\x60\x3d\xfb\x33\xa4\x35\x98\x6a\x08\x19\xab\x25\x0b\xe3\xde\x1b\x24\x68\xe5\x23\x9b\xf2\xba\x3c\xa5\xc4\xc2\x88\x83\x16\xcd\xb7\x15\xae\x2e\x62\xd2\xa2\xbb\x37\x7f\xf9\x4e\xc5\xac\xd3\x8f\xa2\x15\x7c\xfe\xff\x6c\x50\x4d\xe7\x7d\xd2\x14\xb6\xc5\xc6\xb1\x7e\x31\x47\xb5\x89\x19\x38\x3c\x47\xff\xf9\xaa\x27\x33\xfc\xc5\x06\x75\xe3\x45\xe9\x2f\xf6\x8d\x48\x8f\xb7\x94\xe4\xf3\x93\xcd\xda\x17\xb5\x69\x0b\xb3\xa4\x0f\x47\x8f\x4b\x8c\xab\x10\x78\x65\x59\xaa\xeb\x0b\x1b\x86\x24\xb5\x20\x6e\x30\xec\x62\x98\x9d\x7f\xb5\x5d\x0d\x62\x2d\x86\x05\xb2\xe4\xad\x75\x8a\x63\x08\x00\x2f\xa0\xcb\x1e\xea\xc6\x1e\x1d\xd1\xfd\x11\x00\xb9\x75\xd3\xe5\x7f\x5b\x77\x69\x4b\x4c\xe6\x46\xbf\x39\x56\x59\x88\x33\x46\x19\xe9\x49\xcf\x6e\xf3\xbf\xdb\x21\x41\xad\xa8\x8a\x88\xeb\x65\xe5\xf7\xfa\x6e\x11\x1d\x55\x8d\xd8\x96\x30\x7d\xc8\xfd\x94\x25\xa7\x68\x12\xd8\x40\x5e\xf6\x88\xc0\x3b\x50\xdf\xe7\xdb\x92\x3c\x59\xa0\x08\x17\xb1\x00\x36\xd8\x57\xdd\x39\x42\x19\x16\x13\xcf\xa3\xac\x86\x5c\xae\x34\x49\xd6\x2a\x73\xd5\x36\xab\xad\xd2\x16\xe5\xe9\x3f\x4f\x54\x9e\x72\x60\x11\xa0\xd3\x44\xdf\x1a\x6f\x18\xa2\x44\xdf\xce\xd8\x51\xe7\xd5\x9d\x8a\x33\x29\xaa\x44\xd7\xb6\x4a\xdb\xf2\x5a\xd8\x84\x71\x32\xef\x60\x7f\xbb\x46\x53\xca\xad\x61\x0e\xe1\x09\x2f\x2e\xf3\x73\xe4\x21\x1f\xdb\x36\xe1\xcd\xa4\x51\xd9\xa0\xf5\x0d\x81\xe7\x47\x75\x40\x5c\x03\xfc\x7c\xa7\xd2\x1f\x59\x1f\x6d\x92\x8f\x56\xa3\xca\x39\xb7\x54\xa3\x03\x37\xa8\x43\xdd\x94\xff\x6e\xcf\x38\x41\xa6\xb2\x03\xf0\x7f\x2b\xf5\xe6\x6e\x7d\x52\x15\xc7\x74\xa2\xae\x9d\x13\x3a\xba\xef\xd5\x8c\xf8\xda\x9c\x36\x51\x2b\xfe\x74\xc7\x38\x2d\xb2\x74\xbb\xd4\xb6\xbc\x14\x93\xf3\x33\x6f\x24\x59\x92\xd6\x15\x5d\xd8\xdc\xde\xb5\xe9\x79\x48\x0b\x79\x53\x70\x17\xe0\xfd\x77\x2b\x96\xd1\x41\xb1\x14\x8e\x6b\xd3\x16\xe1\x34\x6e\xfd\x7b\x24\xa2\x28\x68\x34\x52\xed\xc8\xfd\xeb\x92\x1f\x31\x9a\xae\xeb\x7f\xd3\x96\x4e\x0d\xb3\xdb\x8b\xb3\x67\x89\xb4\xf1\xf1\x89\x8a\xad\x19\x65\x1e\x06\x4a\x7e\xf8\xf3\xd5\xc9\xd7\xe8\x0c\x9a\xca\x3b\xfb\xd1\xa5\xbc\xa4\x88\x85\x6a\x79\x03\x70\xad\xcf\xff\xf5\x53\xc8\x97\x7b\xf2\xf0\xe4\x58\x31\x0c\x74\xbb\x1b\x36\xe2\xef\x5f\x9f\x57\x35\x64\x17\x46\x5e\x6c\x5e\x7f\x65\x3f\xfe\x2a\xaf\xa1\xae\x42\xaf\xec\xcd\x7f\xe0\x4a\xf3\x7c\x93\xb3\xcb\x9b\x3a\x1c\x8f\x13\x6c\x38\xfe\xe5\x8b\x13\xd4\x13\x6c\xb2\x80\x08\xc1\x16\xe5\xc5\xf5\x7c\x86\x71\x16\x31\xbf\x7c\x78\xba\x16\x9f\xc6\x89\x57\x05\x34\x58\x78\x95\x04\x2e\xa8\x87\xe7\xe6\xf4\x57\xfa\x35\xec\xf2\x29\xcc\x7b\xa1\x9c\xd5\xb5\xa2\xc4\x13\x4f\x64\x57\x2b\xe6\x71\xa6\x4d\x5c\x62\x72\x63\xda\x31\xcb\x14\xdc\x20\xe6\xea\x91\x30\x33\xbd\xec\x8e\xe1\xe9\xc9\x6b\x62\xac\x97\x3f\xbc\x41\x75\x51\x74\xf9\x52\x58\xce\xfb\x36\xf4\xd5\xa8\xc8\x81\x2f\x04\x4d\x16\x3f\x36\x45\xbb\x69\x8d\xa8\x83\x31\xa3\xd6\x9c\xbf\x2d\xe9\x0e\x6c\xf3\x4b\x72\xd1\x10\x00\x8d\x64\x4c\x06\x68\x98\xc8\x5f\x87\xb3\x76\x0b\xb0\x2c\x74\xdd\x90\x48\xde\x3c\x21\x9e\x7f\x99\xbb\x9c\x41\x6d\x54\xeb\x27\xba\x34\x3e\x84\x34\xbe\x3b\x76\x80\x3a\x8c\xe6\x36\x37\x4d\x6d\x62\x42\x59\x23\x3b\x31\x37\xf6\x6c\x1e\xa1\x04\x62\xa7\x11\xf5\x0c\x42\x7e\xd3\xf8\xc4\x18\x2d\xb7\xc0\x72\x20\x41\xe4\x7e\x74\xe6\xb9\x42\x97\xc0\x07\xfd\x69\x9b\xa6\xad\x8e\x6d\x1b\xb1\xac\x44\x40\xfe\x8b\x13\x46\x28\x95\x84\x1f\xb5\xf9\x6e\x2c\x75\x30\x71\xad\x6c\x54\xa1\x5c\x96\x9b\x3d\xe3\x4e\xd5\x14\x87\x4f\x47\xe2\x51\xe3\x9b\xf7\x0b\x25\x0b\xc4\x1c\xea\x02\x04\xe1\xd7\x67\xe4\x51\x83\x07\x5e\x2c\x85\x9f\x58\xa8\x72\x77\x83\x2a\x14\x45\xd7\x8d\x8c\x4d\x67\x5b\x51\x30\x93\xb1\xe7\x7f\x37\xa5\xcf\xc4\x9c\x76\x21\xbe\x94\x3f\xf6\xa8\x26\x68\xc0\xa8\x05\x9a\x84\xeb\xd7\x03\xfb\xe4\x84\xa2\xa8\x8b\x20\x74\x1a\x3f\xda\x2c\xf1\x19\x48\xe1\x13\x17\x8a\xcb\x63\xd4\x1e\x87\xac\x9a\x8c\xf8\xe2\xa0\xe7\x7e\x6c\x09\x47\x8e\xa0\x01\x47\xe3\xf9\xc7\xb5\x81\x5f\xd0\xc0\x8c\xd0\x78\x36\x1b\x1e\x53\xac\xda\xcb\xc8\xb6\x29\x97\x70\xba\xed\x84\xd6\x63\xd5\x68\x4b\x9a\x94\x9e\xa7\xb8\xd2\x09\xab\x79\x38\x0b\x97\xbc\xa0\x99\xe1\xce\x12\x1b\xa2\x2d\xef\xa5\x6b\x45\x95\x57\x16\xfd\xff\x52\xf8\xee\x3c\x45\x0c\x39\xba\xc6\x26\xf1\x28\x03\xa0\x6e\xf7\x06\x45\x26\x38\x2e\xaa\xc2\x1e\xcd\xdf\xb7\x81\xcc\x3a\xaa\x62\x5e\x87\x7f\xf9\x6d\x4d\xe2\x99\x32\x07\xd9\x42\xe6\xf2\xf0\xe4\x04\xac\x81\x99\x2e\x46\xd7\x6b\x7c\x6b\xb9\x02\x04\xc5\x7e\x4b\x58\xab\xe7\x6e\x5b\xa5\x04\xbb\xc0\xc3\x16\x77\x2c\x2e\x4c\xad\x28\x44\x69\x16\x40\xf4\xcd\xaf\x5d\xa6\xa5\x30\xd2\xe4\x0c\x57\xf5\x78\x7e\x6f\x5c\x86\xeb\xca\xc5\xdb\x60\xf9\x31\x60\x77\x72\x99\x55\x3f\x2b\xfe\x7c\xc5\xb6\x01\x4a\xbd\x07\xa0\xf9\x31\xbe\xee\xb4\x83\x12\x12\xac\x31\x72\x8d\x26\xb7\x49\x99\x1f\x54\x03\xcc\x93\x82\x78\x29\x2e\xbd\x5f\x93\x08\x8b\x7a\x6b\xee\x57\x54\xea\xcd\x3d\xf2\x7c\x7f\xd1\x6e\xb5\xb0\x0d\xf6\x2b\x47\x9e\x1f\x1e\xfd\x67\xcb\x96\xdd\x98\x09\x6a\x17\xbd\x9e\x9c\x5e\x33\x50\x61\x55\x6b\x57\x5e\xaa\x35\x58\xd1\x1b\xed\x22\xd7\x8c\x5d\x62\xbe\xde\x1c\xa2\x42\xea\xa2\x7a\x09\xd2\xca\xcd\x76\x7a\x6a\xe9\x04\x65\xc4\x50\x3d\x35\xb5\x7c\xe8\x49\x9e\xda\x6e\x74\xd2\x82\x03\xb5\x05\x7c\x0a\x76\x2b\xf2\x7c\xd6\x53\xc3\x4e\xd9\xab\x4b\x07\xa4\xf0\xc6\x89\xd2\xbc\xd2\x73\x02\xaf\x56\xc7\xcd\x94\x7a\xe1\xf3\x63\x2f\x8e\xcb\x77\xae\xc1\x9e\xfb\x5a\x97\x8e\x0b\x2d\x97\x31\xe3\xa3\x90\x89\x6d\x12\x0f\x94\xf1\x5f\x0b\x27\xbe\xa6\x15\xf2\x94\xd5\x25\x23\xc1\x60\x0f\x29\x7e\xb7\x6e\xb7\x2f\x64\xe5\x47\x6a\xca\x8b\xb8\x89\x19\xff\x21\x6c\x8b\xcf\x2e\xcb\xe4\x8c\x06\x66\xb1\x82\xd6\xc1\x93\x83\xd5\xd9\x98\x20\x7f\xe4\xb6\x8e\x95\xb1\xd3\x4f\xc5\xce\xc2\x02\x8d\x8b\x63\x61\x2f\xea\x98\x39\x27\x66\x4a\x41\x60\x68\x02\x3f\x6a\xfa\x20\x97\x7c\x6e\x8c\x46\xc6\x45\x36\x4c\xe7\x61\x22\xcd\x47\x3b\x40\xa2\xb8\xef\x01\xcd\x8b\x17\xd9\x26\x75\xbb\x05\xa4\xa2\x60\x76\x69\x68\x0e\x86\x2a\x15\xc2\xa7\x50\x90\xff\x36\xac\x18\xa7\xdc\x1e\xe4\x53\x9b\x64\xc8\x6e\xb9\x49\x6d\x90\xd8\x8a\xab\x63\xa8\xc8\xb9\x31\x36\x17\x0c\x4d\x46\xa7\x76\x77\x66\xa7\x6c\xdc\xb2\x74\x98\x3a\x02\xe7\xf9\x1f\x2a\xdd\x5b\x97\xa5\x1f\x46\xb2\xb4\x15\x25\xec\xe6\xc3\x4a\xc7\xd7\xc2\x16\xc0\xd9\xc2\x6f\x9e\x96\x4f\xa1\x49\x6c\x0f\x99\xf5\xe8\xe1\x3c\xb4\x5d\x63\xea\xe2\x44\xd0\x3e\xf7\xae\x22\xef\x8b\xa3\xd8\x07\x87\xaf\x30\x6a\x8c\xac\x67\xe0\xeb\x59\x00\xb1\xe8\xcd\xbd\xbe\x31\x9d\xd1\xcb\xdc\x6a\x58\xff\xe2\x4f\x2b\xd2\xeb\x51\x6b\x25\x8a\xc6\xed\x8b\xf4\xc1\x34\x05\x00\xb9\x80\x34\xac\x7f\x2b\x3d\xb7\xab\xa2\x9e\x06\xa3\x4e\xf6\x03\xc2\xce\x9e\x04\x6a\xe0\x9a\x75\x35\x43\x36\xd3\xc7\x14\xb1\xa8\x7c\x13\x47\x3f\xb7\x41\xc9\x02\xd3\xa7\x2b\x3c\xa5\xf0\x8b\x43\x87\xa8\xd3\x39\xe6\xf3\x9d\x77\xfe\xa6\xed\x72\xd0\x9f\x00\x15\x21\x5a\xbc\x33\x3e\x9d\x8b\xa7\xcd\x89\xb7\xd7\xdf\xda\xa8\xad\x2b\x81\x9c\x9a\xa0\xe7\x72\x9b\x5f\x92\x6f\x05\xf1\x53\xfd\x66\x71\xba\x8a\xe2\x15\x3c\xe2\x75\x27\x47\xe8\xc1\x1e\xd9\xc2\xce\xe1\x7e\x43\x3e\x28\x2f\xaa\x9a\x84\xda\xda\x6f\x8e\x6b\xb2\x63\x09\x39\xdb\x18\x35\x34\x09\x1e\x7e\x4b\x3f\x94\xe1\xd9\x93\xca\xc9\x4a\x4c\x37\x5f\x6c\x64\xb8\xad\xae\x57\xc1\x0c\x52\x49\x61\xce\x04\x5d\x7d\x2f\x51\xb2\xc9\xbf\xac\x0c\x33\x14\x39\x53\x57\x03\x84\xc1\xcd\x7e\x69\xa6\xfc\x32\x3e\x76\x7d\xb0\x33\x89\xfe\xf3\x8f\xbe\x26\x6f\x4b\x9d\x21\x6e\xaa\xb2\xe7\x58\x0c\x74\x88\xb1\x5a\xe1\xd2\x9e\xc9\x5a\xec\x67\x8c\x50\xff\xdc\x8c\x92\x89\x9b\x2e\x51\xf2\x7e\x96\xb2\xf7\xf9\xbe\xda\x2d\x44\x5e\xbc\x41\xb9\xf6\x6d\x79\xa1\x65\x3b\x7a\x35\x38\x61\x3e\x77\xff\x9e\xe4\x5c\x96\x51\x4d\x39\x97\x73\x16\x48\x2c\x81\x9b\x59\x92\xe4\x26\x4d\x90\x02\x24\x20\xc7\x97\xd1\x2f\x7f\x54\x9e\xcf\xe8\xaa\x39\x0b\x3f\x9c\xae\x78\x41\x9a\x0c\x99\xf5\xe8\x3d\x85\x10\x7a\x5f\x97\x86\x6c\xad\x05\x5e\x8d\x23\x5b\xc9\x7b\x9a\xb4\x1b\x43\xae\xe5\x51\x37\x1e\x71\x0f\x1f\xaf\xff\x2a\x69\x70\x16\x73\xfe\x37\xb6\x16\x5c\x71\x0d\x47\x8d\x82\x48\x2d\xff\xd0\xd0\xa1\x72\x8c\x06\xd5\x5a\xd4\xba\xf0\xa5\x42\xe9\x94\x32\xb2\x73\x1a\xc8\x74\x7c\x88\xca\x1f\x7b\x28\x3d\x64\xb3\x10\x6b\x11\xaf\xa6\xb9\xca\x50\x8b\x6f\x00\x96\x52\x1f\xdb\x5e\x7a\x19\x56\x1b\x2a\xc1\x54\x5d\x4a\x39\xb0\xe9\x48\x46\x09\xc8\x8d\x2d\x3f\x7f\xab\xb9\x17\x51\xd7\xc4\x45\x9b\x76\x8b\x65\x5b\xa9\xb7\x70\xef\x6a\xfd\x56\x88\xde\xa2\x37\x3f\x71\xbf\xde\xba\x56\x6c\x6c\x26\xbc\xbf\x63\x07\xa4\x2d\x08\x05\xbf\x93\x6d\x15\x5e\x3a\x97\x1a\xdc\xf7\x2e\xbf\x47\x9b\x50\x50\x2c\xfc\xcb\x73\x53\xfb\xa9\x30\x45\xa7\x61\xe3\x18\x65\xd6\xe7\x65\xad\xce\x07\x6f\x22\x2f\xe6\x54\x0d\x68\x2a\x92\xbe\x34\x88\x3a\x38\x37\x35\x5d\x98\xbc\x4a\x51\x74\x80\x85\x66\x62\xcd\x9a\xfb\xfd\x72\x65\xd9\x19\xf8\x35\x61\x48\x7a\xcb\xa3\xbc\x2c\xb3\x28\x65\x7c\x33\x7c\xff\x0e\x2d\x20\x61\x52\x8d\x8d\x1c\xdb\x07\x6b\x9a\x51\x51\x13\x21\x74\x8d\x73\xbb\x42\xf9\xbd\x92\x94\x06\x95\xc2\x57\x0e\x29\x66\x20\x0e\xb2\x6d\xe0\xb7\x15\x4b\xe1\x9e\xfe\xbc\x30\xaa\x62\x97\xa3\x18\x0b\x13\xa7\x8f\x52\x70\xee\x15\x86\x62\x52\x0f\xa4\x98\xef\x1f\x91\x99\x01\xc9\xca\x2d\xdc\xf9\xd2\xe0\xd4\x75\xb5\xf1\x2b\xca\xdd\x2f\x23\x0b\x6d\x08\x54\xd4\x1f\x9e\x15\x5a\x6a\x20\x9c\x1a\xf6\x3f\x21\x97\x0c\xc8\x34\x29\xb3\x00\xac\x14\x7d\xdb\x1f\x4f\x4e\x9f\x20\x1b\x57\x89\x67\x2b\xe0\x35\xe3\x1b\xe7\x69\x0f\xcc\xb5\x30\x6a\x52\x26\x5e\xa8\xbb\x97\xea\x8a\x18\x16\xf1\x29\x23\x81\x23\x40\x36\x63\x1f\xd2\x21\x09\x5d\x6d\x52\x5d\x65\x56\x9b\x32\x05\x45\x3e\xb2\x29\x8c\x16\xee\x7b\x99\x0f\xe8\x6f\xe4\x9e\x79\xed\x0b\xfa\xc5\xf7\x64\x0e\xa8\x1e\xee\x3a\x19\x3b\xa5\x10\x18\xee\xee\xd6\x22\x02\xf0\xa0\x6a\xd4\x8e\x45\x9c\xd6\xbd\xa9\x80\x3c\xe7\xcc\x86\x55\xdd\x33\x9a\x78\x98\x15\x98\xdc\x36\x8f\xf3\xdd\x8d\x27\xc7\x6b\xe3\xbc\x98\x8b\x9e\x10\x16\xbe\xd9\x5f\xd5\x32\x99\x3b\x0b\xba\xa0\x37\xb5\xc6\x30\xea\xc5\x59\x4c\x5f\xff\xdd\x2b\x1a\xa6\x81\xb0\x72\xe0\x9d\x2b\xba\x1b\xbf\xde\x94\x51\x7d\xad\x80\xc4\x2e\x8e\x97\x8d\xef\x3f\x36\x4c\x8d\xb9\xd4\x4c\xd4\x0d\x37\x1c\x52\x10\xbb\x28\xe0\xe9\xbb\x68\x93\x3a\xf4\x5e\xdf\xd8\xae\xf9\x8a\x33\x82\x5d\xcb\xee\x16\x41\xa5\xb9\x40\xb7\x43\xe9\xa6\xae\xd8\xf2\x1b\xce\x6e\xa5\x42\xc3\xac\x8a\x18\x0c\xa1\xae\x3b\x23\xf3\x89\x90\xf6\x66\x30\x32\xa8\x3c\x9c\x32\x95\xf3\x49\x00\xa3\xd2\x75\x1f\x28\xd0\x6f\x46\x69\x1d\xee\x8e\x3b\x2f\x03\x54\x76\x3c\x00\x38\xc6\x64\xaa\xaf\x3e\x9a\x12\xe3\x71\x8b\x95\x20\xfa\x46\xbf\x9e\x38\x44\x34\xc6\x65\x8f\x58\x04\xc5\x92\x71\xe6\x41\x4d\x2d\x9f\x5a\x98\xb9\x31\x88\x72\xff\x70\x2e\xe6\x70\x6d\xec\x14\xa0\xd5\x68\x1f\x79\xe7\xc3\x5a\x29\x66\xe2\x62\x15\x31\x93\x20\x78\x04\x32\x46\xcf\x7a\x25\xe9\xe5\xea\x29\x79\x8b\x47\xb4\x62\x8e\xeb\x8f\x73\xf8\xea\x0f\x1e\x53\xf4\xfb\x08\xe3\x84\x8a\x21\xc7\xc7\xe8\xe1\x31\xb6\x94\xe1\x0e\x36\x53\xa6\x6a\xf0\x70\xe2\xba\x38\x41\xfc\xd5\x8e\x69\x28\x4d\x06\xcb\x82\x29\x5c\xc1\xb1\x7c\x28\x1d\xb0\xf9\x62\x2e\xba\x96\xd7\xa4\x34\x46\x23\x2b\x8d\x61\x1c\x7b\x87\xc7\xb0\xd5\xad\xe8\x69\xc0\xfc\xe3\x2d\xdd\x16\xb0\xc1\x35\x7a\xe3\x93\xfe\xd5\xf7\x54\x7d\x20\x93\xba\x3e\xe3\xda\x9e\x4b\xd6\x69\xf9\x0c\x26\xf5\x02\x28\x1b\xf2\xc1\xcd\xf5\xa8\xbb\x02\x2b\x18\x25\x77\x7e\x75\x60\xba\x7d\x6a\x61\xa7\x6c\xe3\x18\x46\x20\x6d\x40\x16\xde\x31\x56\x81\xd5\x12\x61\x9d\x00\x1a\x83\x31\x21\x6b\xc9\x70\x8d\x9d\x8d\x1a\xc8\xc5\xc2\x7f\x8c\xef\xd8\xa6\x16\x92\x28\x6c\x79\xf3\x64\x1f\x7c\xf7\xc6\xf4\x11\x2d\x53\xdf\xa7\x8e\x4d\xdc\xe4\xad\xbc\xba\x36\x50\xa4\x07\x22\x9d\x32\x2f\xde\x34\x42\xad\x7e\xa2\x0b\x73\xc5\x22\x28\xbf\x7b\xaf\xd2\x63\xfa\x29\x72\xee\x87\x0f\x69\x10\x69\xcf\x0b\x92\xa3\x90\x67\x83\x35\x28\x2a\xb3\x91\x6b\xd1\x34\xb0\x22\xff\x8b\x36\x9e\x0b\x1a\x84\x63\xe8\x6f\x7f\x5b\xa8\xe4\x61\x12\xbb\x5c\x0c\xde\x2f\x34\x11\x28\x48\x9e\xc4\xa3\x82\x2f\x72\x87\xc1\xe2\x35\x81\x47\xdc\xd4\x34\x80\x4c\xd4\x17\x83\x60\xde\x20\xc8\x58\x1b\xb5\x29\x3f\x68\x50\x8a\xd6\x61\xf2\xcc\x74\xfb\xd5\x45\x50\x94\xb5\xaa\x82\x0d\x1b\x5f\xf4\x27\xef\x1d\x9c\x16\x2f\xe2\xb2\x35\x15\xa1\xcd\x1d\x2b\xc9\x02\x22\xef\xbf\x34\xab\x3e\x1b\x23\xcf\x8f\x0d\xf3\xd1\x33\x12\x47\x43\x27\x59\xb4\xa5\x1a\xd4\x0d\x78\x4b\x73\x8e\x20\x30\x65\x49\xcc\xe4\x6f\x5b\x32\x32\xc5\x96\xa9\xa9\xf6\x7a\xab\x9f\xd6\x20\x9f\x60\x99\x49\x12\x12\xc3\x71\x4d\xf0\x83\xe3\x11\xc4\x0f\x17\xec\x91\x8b\x04\xcf\x29\x96\xc2\x5f\xb8\xda\x74\x22\x00\xb7\x3c\xa1\x7f\x34\x5d\x93\xef\x33\x6b\x8c\x78\xbe\x83\xe2\xdb\x9a\xff\x72\x0f\xcf\x97\xd7\x82\x10\x8c\xb3\x4d\x1f\x75\x70\xc6\x16\x4c\xf7\xf6\xdd\xc2\xa3\xde\x8d\x81\x1b\x7d\x84\x3e\x38\x0b\xb7\x94\x35\x3c\x84\xb0\x37\x85\xb9\x61\x97\x24\x66\x55\x61\xd8\xf0\xf5\x47\x74\x2f\x08\x0b\x33\xcf\xa4\x2c\x1e\x47\xf4\x1a\x61\x4d\x81\xa7\xb9\x3e\x29\x62\x3b\x11\x56\x37\x16\x28\xec\x0b\x86\x9b\xa0\x33\x33\x7f\xa0\xf8\xbf\x55\x86\x7d\x21\x20\x58\x1f\x2f\x00\x73\x35\xac\xf0\x56\xe6\x5c\xaa\x25\x32\xec\x9a\x35\xf9\x16\xf7\x1a\x1f\x39\x2e\x33\xf4\xb4\xb6\xf6\x8e\xe8\xef\x1b\x73\xfa\x89\x1b\xd0\xe0\x9c\xfb\x7d\x6c\x70\x5c\x4e\x36\xa8\x2b\x3c\x94\xc2\x25\xca\x7e\x16\x3b\x98\x71\xd9\x42\xe3\x77\x4b\x53\xf0\x96\x3a\xe7\x40\xbb\x0b\x75\x0b\x57\x93\x78\xc9\xa2\xbf\xd7\xb8\xe1\x05\x39\x39\x07\x5c\x64\xb1\x14\xae\x1c\xa9\x76\x44\xb4\x49\xeb\x3c\x69\xfd\x65\xbb\xbe\x98\xaa\xc4\xdd\xc7\xba\xa9\xe9\x8f\x69\x12\x6a\x2b\x26\xe4\xb9\x8e\x87\x34\xbb\x1a\xb3\x8e\xd3\x5b\xc1\x0b\x3b\x95\xfa\x9a\x64\xfd\xdc\x73\x47\xcb\xc3\x94\xd9\x22\x35\xb1\x15\x70\xbf\xac\xc2\xe2\x3d\x99\xe9\x69\xc2\xe5\xca\xff\xe4\x99\x78\x9b\x22\xe6\x2c\xc5\xa9\xf2\xf6\x4d\x6f\x2f\xfa\x18\x45\x89\xdf\x18\xaa\x9d\x97\x58\xc2\x8f\x26\xea\x96\x79\x63\xfc\x58\x85\x4c\xe0\x91\x72\x46\xba\x27\x3f\xfa\x29\xd9\x6d\xc2\x69\x62\xd4\xc1\x66\x0d\xc5\xeb\x2c\xe3\xc4\xf0\x64\x44\xe0\x65\xa5\x7f\x72\x7f\xeb\x14\x57\x2b\x8e\x40\xe1\xef\xb7\xe8\x34\xe1\x62\x8d\xc6\x7e\xaa\xb9\x15\xeb\xc6\x6a\x39\xd7\x03\x1f\x43\x37\xd1\x11\x33\xfa\x8e\x55\x68\x35\x16\xcc\xc2\xa0\x06\x09\x2f\x7b\x5a\x9d\x7e\xf3\xcd\x45\xfe\x5b\x4f\x69\x75\x81\x1d\x38\x2e\x89\x6f\xc0\x83\xed\xe9\xd9\x15\x43\x62\x6d\xe8\xee\x4e\xaf\x0f\xc6\x0b\xe1\xa6\xe5\xa7\x2e\x16\x05\x16\x73\x88\x5f\x2c\x85\xeb\x6b\x7a\x04\x76\x93\x0e\xeb\xfe\xf5\xda\xfb\x0d\x24\x26\xf1\x4d\xb7\xb6\xa9\x96\x9d\x5e\x0d\x33\x87\x57\xe0\xdf\x5f\xa2\xf9\x04\xe1\x72\xfc\xe8\x9b\x07\x46\x28\x10\x53\x98\xa9\x27\x4e\x17\xbf\xe8\x7b\x99\x76\x5f\x6d\xe2\xa6\x13\x54\x61\xb0\xa6\x83\x59\xa1\x62\xd0\x53\x18\xb7\x4e\xd3\x4c\xc2\xc8\x13\x5b\xfd\xf0\xe8\x7e\x1e\x25\xaa\xdd\x8e\x8b\x3c\x5e\x56\x16\xcc\x0d\xe9\x07\x65\x47\x09\xcd\x22\x1e\xc8\x79\xf0\x41\x6f\xae\xef\x64\xed\x4d\x0d\x7c\xcf\xac\xc5\xb9\x3f\x7d\xce\xee\x59\xcc\xcd\x5a\x6e\x86\x97\x39\xc3\x94\x5c\x79\x97\xb8\xef\x7c\xcd\x55\xea\xcd\x0d\x5d\xac\xda\xde\xb3\x32\xd7\x46\xcd\xad\xfd\x40\x63\xcf\x13\xb7\x8a\x99\xe8\x4d\xe6\x1f\x4c\x8a\xc7\x16\x55\x48\x9e\xc6\xd1\x3e\x3c\xa8\xa3\x36\x00\xe6\x7e\xf6\xae\xa4\x46\x3b\x07\x4c\xd5\xb8\x60\xf8\x70\xe9\xea\xe6\xa9\xa3\xea\xfc\x99\x6d\x32\x0a\x76\x06\x88\xe3\xf4\x15\x05\x38\x86\x88\x10\xc9\x6e\x1b\xa8\xb0\x47\xc1\x01\x58\x65\x70\x2c\x38\x94\x2e\x38\xea\xd8\xf3\x6c\xcc\xd2\x9e\x6e\xc6\x9f\xd9\x50\x25\x6b\x76\x42\x3d\x1c\x95\x54\x37\x4f\x15\x70\x21\x73\x69\x50\x55\x47\x4b\x47\x5d\x8d\xb9\x51\x8e\x7b\xc7\x91\x03\xd3\xa7\x0e\xb4\x3c\x39\xfc\xf3\xc8\x69\x45\xde\x50\x18\x40\x47\xff\xfe\xed\x91\x9a\xe3\x02\xe5\x08\x78\x5e\x3d\xff\x70\xcf\x20\x95\xe9\xc0\x5b\xee\xfc\xb0\x37\xd3\xab\x1f\xe2\x5a\xd4\xc5\x1e\x89\x9d\x72\x61\xf5\xd3\xf3\xb0\xf6\x1f\x35\x91\x5b\xa7\x4d\x2e\x60\x23\x12\x12\x7a\x97\x7f\xc5\x6b\x30\x24\x06\xf9\x15\x0b\x5d\xf2\x6a\xeb\xc4\xb6\x31\xe3\x08\xa7\xbe\xe5\x61\x5a\x21\x85\xf8\x86\x24\xf7\x92\xa2\x2d\xde\xa0\x8d\xc0\x8e\xb5\x6a\xbe\xf7\x5c\x02\xa5\xf4\x02\xa7\x11\x27\xd2\x27\xda\x55\xb3\x48\xe4\x20\x15\x43\xf7\x91\xc3\x49\x35\xeb\xfb\x54\x5e\xef\x9f\x5e\xd3\x44\x49\x6b\x01\x33\x6b\xc4\xb6\x53\x86\xe7\x6f\x34\xf8\x9c\x32\x5e\x12\x16\x4b\xe1\x61\xae\xbb\x50\xbc\x1e\xb3\x58\xe5\x34\x55\x44\x3c\xb6\x38\x89\xbf\x2c\xcb\xf7\xce\x39\x9a\x22\xad\xb4\xb6\x13\xe6\x98\xbf\x7b\x8d\xa7\xfb\x06\x82\xfa\x5d\x3c\xdb\x3b\xed\x2c\xaf\xd7\xf3\x48\x53\x58\x79\x15\xee\x3e\x30\x24\x13\x38\x21\xdc\xae\x52\x5c\x2f\x7c\xcc\x44\xdd\x9b\xfb\xdd\x9b\xc9\xad\x14\xb0\x37\xa0\xca\x8c\xd8\xc0\x2b\x64\xae\x50\xc0\x17\xb7\x8f\xcb\xac\x5f\x47\x65\x22\x88\x9d\x3b\xe5\x49\x2f\x93\x4e\x6c\x77\x72\x65\x07\x63\xc3\x50\xc5\x2d\x01\x43\xd0\x0f\x8d\xd7\x85\x86\xa5\x98\x3c\xc3\xdf\x1d\x32\x55\x99\xcc\xb8\xc4\x01\x8f\x23\x5e\x06\xac\xdf\x26\xff\x06\xb2\x2c\xee\xb8\xd0\x3e\x79\x40\x23\xf1\x08\x13\xa2\x5b\x23\x79\xe9\x58\x2c\x31\xeb\x1c\x70\xcd\xd7\xb5\xbd\xba\x49\x69\x5d\x31\x28\x7d\x6b\xfd\x78\x05\x7f\xca\xd5\xd5\xb2\x0f\xcc\x38\x5c\xd0\x5e\x51\x62\xf1\xf9\x8f\xf1\x57\x85\x4b\x5d\x43\x8d\x86\x80\xed\xec\xef\xa7\x01\xa1\x3d\x4e\x77\x82\xb3\xfa\xc8\xd2\x74\x99\x62\x11\xcf\x24\x8d\xa8\x89\x8a\xc5\x4b\x59\x2c\xba\x86\xa2\xbe\xb8\x4a\x45\xa3\x72\xf7\x4b\x02\x24\x6f\x73\xb7\x8d\xcb\x4f\xc6\x5a\x72\x4d\x04\x0b\xd7\xde\xdc\xab\x8f\xeb\xef\xbf\x8f\xed\x18\xfc\x9c\x9b\x6f\x28\x6b\x1d\x3e\xdb\x2d\x96\xc2\xf3\x5f\x51\x0d\xf8\xf8\xfc\x39\xf7\x5c\x97\xf6\x95\x6d\x9b\x83\x32\x2e\x98\x9c\xbe\xa3\xd3\x67\xf3\xca\x5e\xdc\x51\x3a\x9d\x47\x6d\x0f\xde\xd6\x31\x07\xe4\x03\x76\x30\x72\x89\x5b\x15\xfa\xa5\xc6\x67\xe6\x25\x71\xbf\xcc\x02\x25\x58\x84\xaf\xf2\x55\xec\xd5\xc8\x0d\xcc\x7a\x56\x30\xed\xf0\x56\x79\xb9\x02\xce\x14\x5e\xea\xaa\x74\x20\xdb\x01\x65\x81\xa7\xa6\x6b\xba\x82\xd4\x8e\xae\xc2\x42\x36\x8c\x0d\x12\xea\x4e\xee\x6f\x63\xd2\xdf\xb5\x4e\x6c\xca\x37\x23\x8b\xdb\xd2\x3f\x99\x3b\x6d\x9a\x60\xcf\xf4\x2c\xd6\xe9\xfd\x65\xe4\x79\xc8\x8a\x0d\xc3\x73\x07\x5e\x1d\x20\xf2\x08\x77\x47\x07\x6f\xf4\x67\xb5\xe9\x58\x00\xef\x98\xf8\x93\x8f\x3c\xaa\xc0\x1c\x71\x74\x92\x20\x48\xee\x5c\xd4\x2f\x2e\x47\x29\x38\xaa\x4c\xd7\x54\x5d\x5b\xc4\xb6\x8a\xb8\x3b\x69\xdc\xf2\x4d\x45\xa9\x9f\x51\xea\x70\x85\xda\x53\x12\xcc\x5d\x23\x9e\x4f\x19\x41\x59\xf9\x83\xdc\x37\x76\x49\x8b\x95\xe2\xec\xe8\x17\x8b\x2f\x6b\x36\x1f\x5d\xd8\x69\xd8\xa4\x42\x92\xb9\x45\xad\x43\x71\x38\x9a\x05\x9a\xc6\x8f\x2e\xd0\x8c\x04\x50\x77\x7c\x0a\x0b\x37\xbd\x29\x02\x4c\xe0\x7b\xc4\x8a\x1e\xdf\x6c\x01\x0c\xf4\x29\xe3\x32\x2d\xbd\xc6\x0d\xcf\x68\xb7\x4a\xb0\xa7\xb9\x36\xf3\x3a\x3e\xf0\xfa\x14\xb6\x6d\x95\xa8\xfc\x05\xcd\xca\xb7\x11\xc5\xe7\xd8\x8d\xcc\xf8\xc1\x1b\x2a\xd6\x10\xcc\xe9\x3d\x0c\xf5\xf2\xe1\x3b\xe5\x9d\xa7\xa6\x29\xc0\x5f\xb9\x77\x5c\x8d\xcc\x47\x59\x7d\x4a\xb6\x69\xc8\xff\xe1\xb1\x8c\xe0\xa2\x29\x04\x4f\x8c\x2f\xdb\xda\x8d\xa0\x0e\x72\x85\x22\xeb\xce\x17\xc6\xe8\x89\x97\x34\x89\x15\x24\xdb\xc1\xf2\x04\x1e\x07\x96\xa5\x27\x13\xc7\xdf\xe7\x79\xf6\x46\xec\x74\x2b\xf2\xaa\xe1\x77\xda\xb4\x86\x90\x34\x71\x8a\x66\x93\xbb\x70\x9c\xf0\xca\x77\xe1\x1a\x05\x65\x25\x37\xa8\x47\xb1\x54\xf4\xba\xcd\x1a\xb5\x69\x35\x5e\x94\xfe\xc3\x3b\xba\xe7\xa6\x6f\x4a\x3b\x9a\x7f\x3e\x9e\xae\x0b\x9a\xd4\xa6\x51\x63\xad\xa4\xd0\xb0\xac\x98\xbc\x5b\x8c\x72\xe4\xe7\x8a\x63\x1c\x39\x7e\x63\x0b\xbb\x1e\x55\x75\xab\x16\xf5\xf4\x4f\x72\x95\xcb\xd5\x5f\x4e\xae\x9f\xa6\xdd\xa9\x2c\xbb\x2a\x1b\x29\x16\xf6\x91\x63\x27\x0b\x7b\xa4\xea\x42\x86\x80\xb4\x31\x2a\x14\x98\x38\xab\x49\xbc\xd8\xba\x42\x63\x04\x23\xd7\x6b\xc5\xda\xf2\xf9\xdf\x2d\x92\x67\xc4\x31\xfd\x16\x77\xcf\x36\x66\x75\x28\xc6\x6b\xc4\xae\x2b\xcb\xec\x42\xf5\x6d\xad\xdb\x03\x9b\xe5\xa2\xc9\x1d\x01\xb9\x3b\x75\x1f\x09\xd3\x29\xa3\x4e\x98\x26\x97\xde\xd0\x99\x3f\x60\x20\x2b\xcc\x6d\x0e\xdf\x9b\xbe\xe1\x3c\x1f\xa7\x27\xb2\x05\x2a\xdf\x62\x64\x05\x30\xed\xd5\x1d\x73\xc4\x14\x42\xec\x31\x1e\x9d\x2f\x1f\x11\xb7\xb2\x29\x85\xfd\x37\xea\x1b\x00\x64\x0a\xbb\x31\x8e\x82\x7d\xb5\x43\x2d\x75\x19\x89\x8a\x6b\xf8\x06\x7f\xd3\x54\xf1\x90\x4d\x49\xaa\x11\xcf\x3f\x71\x8b\xa6\x81\x06\x35\x78\xbc\xb6\x6b\xeb\xcf\xdf\xef\x6b\x6c\xec\xaa\xac\xf6\xcf\x7e\x90\x7e\x61\x12\x22\x25\x57\x92\xed\x2d\x94\x57\x29\xe4\x88\x58\xc7\x2e\x5c\x7b\x97\x32\x7e\x20\xcc\x86\x63\xfd\x55\xe5\x50\x62\xd7\x07\xbc\xd2\xf2\x25\xba\x6a\x8e\x07\x6e\x86\xdc\x2a\xf5\x60\x5f\xe1\xec\xaa\x48\x8c\xe5\xe6\x4d\x18\xa5\xb4\x3c\x1c\x54\x24\x6d\xe1\x5e\xaf\x28\x7b\x72\x8c\x7c\x30\xc3\x19\x7c\x67\x4a\x8a\x73\xd9\xb2\x55\x19\x29\xce\x5e\xe3\x1f\x14\x25\xe5\x66\x37\x58\x9d\x60\x05\xff\x5b\xb8\xf8\xd8\x88\x14\x86\x16\x39\x76\x2c\x17\x90\x47\xa7\x25\x32\x15\x86\xb0\x29\xcd\xc3\x5c\xfe\xa4\x1c\x1f\x24\x06\xfa\xea\x7f\xb0\xe9\x6d\x85\xea\xd4\xa0\x04\x74\x09\xde\xde\xac\x5b\x2e\x09\x2f\x2f\x1e\xaa\xfe\xf9\x44\x7a\xb5\x53\x69\x2b\xb7\x91\xb6\x73\xbc\x96\xe1\xda\x1e\x5e\xc5\xb4\x80\xb9\x12\x16\x27\xa4\x5f\xba\xe8\x75\x4c\xb0\x4e\xa3\x9e\x4f\xbf\x41\x8d\xc0\x87\x06\x5a\xb9\x11\x23\xcf\x97\x13\x9b\x16\xf2\x31\x03\x86\x15\x4c\x19\xcf\xd7\xfc\x0d\x30\xae\x37\x10\x51\x5b\x96\xde\x1c\xde\xa8\xed\xe7\x50\x03\x4b\x09\x82\x96\xb0\x93\x75\x03\x07\x5c\x18\x8a\xa5\xf0\xc9\xd5\x4a\x95\x5d\xa3\x51\xf3\x0c\xfd\xe9\x68\x37\x25\x57\x5d\xad\x26\x12\x70\xe6\x9d\xe9\x2f\x41\x9c\x46\xd4\x5b\x0a\x2d\x20\x28\x86\x7e\xf2\x1a\x3f\xf0\x16\x6d\xb9\x36\x45\x16\x12\x46\xe6\xe5\x0d\x69\x93\x76\xa1\x3b\xb5\xf5\x2e\xa5\xdc\x61\x81\xf0\xd3\x99\x7a\x4a\x1e\x99\x32\x62\xb0\xb7\x27\x4a\x67\xfa\xf9\x97\x2e\x51\x91\x88\xae\xaf\xa9\x23\x5d\xae\x84\xb2\xcc\x85\x68\xf6\x49\x2e\x8e\x62\x52\xf4\x07\x3c\xa1\x75\x19\x05\xd5\x99\xf7\xa6\x2b\x2e\x0b\xdb\x3e\x3a\x87\xf9\x47\x7e\xe5\xd4\x81\x09\xd4\x1e\xc7\x21\x79\xf4\x44\xd5\x2f\xdc\x72\x31\x84\xfe\xed\x3d\xe9\x07\x34\xa3\xbd\xd8\xb0\x63\x3f\x8c\x7c\xa7\x86\xf9\x4b\xfa\x10\x49\x07\x35\x36\x0c\x1e\xa7\xa5\x45\xe6\x09\x4e\xbb\xb4\xf9\x7b\x57\x86\xb2\xc4\x20\x04\x26\x7b\xa2\xfa\x42\x16\x17\x1f\xcf\xfd\x97\x06\x62\xb5\x62\x4c\xd7\x6f\xd6\xa5\xbb\x75\xc0\x73\xf0\xb0\xf4\x61\x5f\x3e\x46\x9b\x98\xd8\x8d\x1e\x58\xf8\x88\x26\x4c\xc4\x71\xba\xc4\x73\xbc\x58\xd3\xf5\x2f\xca\x8c\x14\x71\xad\x40\x28\x09\x0f\xbe\xc7\xfb\xc3\xeb\x02\x35\x6f\x9e\xea\x33\x54\xa5\xa5\x3a\x28\x96\xe2\xff\xf5\x64\x99\x07\x71\xc0\x68\x03\x73\x9c\x73\x74\xd3\x07\x3d\x26\xd8\xaa\x40\xf4\x8c\xfe\xf8\xf7\x34\x9b\xd1\x32\xed\x12\xc6\xe9\xe1\x2b\xab\x75\xd0\x9f\x69\x23\xe1\xd3\x95\x7b\xf2\xdd\x54\x5d\x0e\x2f\xf7\x80\x17\x06\x88\x72\xcb\x11\x43\xb1\xb0\x7d\x87\xfc\x4e\xb5\xc0\x29\x63\xc6\xf3\xeb\xf7\xac\x94\xbe\x06\x06\x22\x24\xd4\x1f\x9a\x43\xb5\x49\x1d\x6c\x09\x3f\xe1\xfc\xff\x5b\xad\x95\x89\x0e\xb6\xed\xb8\x8f\xca\x7f\xf4\x7e\x0d\xfe\xe1\x06\x65\x91\xf0\x6e\x3d\xa1\x5e\x2d\xe5\xf8\xb6\xc9\xeb\xe1\x61\x83\xbb\x7e\x7b\xb1\x14\x16\xb6\xe9\x63\x3f\x54\x17\xc9\xe0\xfe\x3b\x14\x7e\x1c\x2a\x63\x81\x37\x5b\x1c\x8e\x48\x4d\xfb\x4d\xd2\x88\xd7\xd2\xc6\xc7\x5d\x49\x70\x67\xc4\xc5\xb5\x14\x04\xd5\xf8\xca\x91\x24\x67\x77\x14\xa3\x6c\x54\x78\x58\x99\x45\xd7\xb0\x4b\x1d\xc1\x6f\x30\x2e\x3b\xa3\xe9\x61\x92\x4a\x6c\x4c\xfc\x70\x8f\x44\xaa\x56\x6c\x54\xcd\x56\x45\xbf\x11\x7a\x4c\xd7\x7a\xf0\xfa\xc6\x7c\xcb\x4b\x5f\xd6\x90\xe0\xb1\x8a\x8f\xa8\xf2\x8d\x4b\x99\x52\x4d\x21\x1f\x71\x78\x19\xdc\x38\x63\xdb\xe3\xc2\x18\xc0\xab\x95\xbb\x8b\x16\x2e\xda\xa8\xb8\x86\x06\xb1\x7f\x60\xf8\x67\x5b\x17\x28\x74\x7d\xec\xf9\xf1\x83\x32\xf6\x9f\xaf\x7d\x38\x66\x84\x06\x9e\x2d\x60\x9f\xe1\x7f\xbc\xaf\x9d\x49\x8c\xa3\x22\x9a\x15\x4b\xa1\xb3\x5b\x41\xd0\x05\xac\x11\xab\x08\x19\xad\xf3\xd5\xd8\x49\x6d\xcc\x77\xf5\xce\xf0\xc4\xd5\xc3\x04\x97\x3b\x2e\xdd\x7d\x5c\x58\x87\xf9\xd1\xcf\x00\x33\x77\xd7\xc9\x74\x30\xab\x04\xae\x05\x2f\xa6\xbe\x1e\x7e\x55\xa1\xee\x20\xab\x19\x93\x7e\xaf\x5d\x21\x18\x3a\xdc\x74\x36\x46\xe9\xb4\x8d\xbe\x54\x2f\x65\xc1\xc0\x0f\x5b\xb1\xd3\x40\xef\x21\x25\x8e\x0b\xcf\x7e\x07\xb9\xb1\x87\xfa\xb7\x8e\x8a\x5c\xc1\x90\xa3\xd8\xbf\xe6\x56\x1e\xe6\x05\xf5\xad\x41\x95\x7a\x36\x6a\xc2\x46\x1f\x1e\x6d\x6b\xe2\x78\x05\x24\x13\x3b\x49\x67\x82\xf2\x9e\x0d\x1a\x7e\x9a\x30\x01\xe0\x92\x05\xcd\x12\x85\x95\x6b\x06\xfc\xcc\x7f\xc7\x55\x58\xb3\xe0\xcc\x6b\x12\x9c\x1a\xc1\x1a\xf7\xcc\xd1\x5d\x54\xb1\x2f\x66\x92\xff\xfc\xa6\xbe\xf2\xf7\x19\x76\x30\x3c\x7a\xb8\x1d\x9f\x3a\xa5\xdf\x30\xd9\x25\xf1\xb1\xfd\x96\xe7\x95\x94\x0c\x82\xef\xdc\x22\xf0\x95\x07\x24\x14\x38\x6a\xfe\x1d\xe4\x66\xb8\x23\x85\xdb\x37\xa8\x78\x7e\x0e\x87\x2b\x96\x42\x72\x3a\x23\x69\x43\x04\xfb\x13\x42\xcb\xfa\xa5\x9a\x4f\x13\x13\xe0\x7c\xfe\x1a\xee\x3b\xa0\x63\x3e\xbd\xba\xc8\x59\xb9\xb7\x9b\xfa\xcb\xc0\x43\x7b\xec\x43\xf1\x78\xfa\x57\x6f\x0f\x88\x8f\xc5\xd8\xf7\xda\x50\x02\x60\x51\x23\xd6\x53\x83\x73\xf5\x5f\x6f\x64\xf0\x6c\x50\x10\x8a\x1e\xfd\x1f\x76\x28\x0b\x29\xa9\x64\xd0\x54\x04\x11\xa9\x4b\xb8\x3b\x89\x36\xe6\xef\xaf\x89\x2d\xd2\xb8\x20\x3e\x75\x48\x83\xca\xd8\xd4\xac\x7b\xc2\xdd\x37\x5f\xe0\x89\x85\x21\x9f\x54\x60\x02\x31\xac\x90\x2e\x11\x1b\x35\x6c\x37\x3c\x41\xc4\x4d\x1f\xc5\x2f\x4d\xce\x50\x6f\x99\x59\x8b\x05\x4b\x0b\xe3\x8f\x0c\x56\x6a\x3e\x8f\xd8\xdc\x90\xf4\x6a\xc5\x9c\x0c\x34\xf5\x40\x4a\x45\x24\xba\x79\x4d\x5d\x2b\x9a\xda\xa4\xca\x39\x57\x90\x67\x3e\xa7\xcd\xe1\x5d\x1a\x13\xb6\x66\x1c\xd1\x90\x30\x66\xe0\x51\x51\x86\xa6\xaf\xfb\x92\xe7\x34\x6e\x72\xc0\xcc\x1a\xf2\x84\xa3\xa0\xf1\x99\x9a\xe2\xcd\xee\xa6\x6c\x41\x73\x73\x2d\x7e\xbf\x7c\x86\x88\xdd\x56\x2c\x85\xe7\xaf\xd3\x9a\x11\x86\x5a\x72\xad\xec\xf7\x91\xcf\x93\xdb\xe7\x40\x65\xf0\x9d\xd1\x31\x29\x99\x99\xea\x5a\xa2\x30\x7b\x70\x06\xda\x09\xfd\x48\x1c\x76\xc2\xf2\x07\x19\xc4\x71\x8c\xb3\xdc\xa6\x19\x4a\x14\x3d\xbf\xdb\x86\xac\x1f\x8e\x6e\x8f\xc1\x85\x41\x99\x2b\x52\xe7\x7f\xf9\xec\x48\xa5\xdb\xc7\x35\x75\x13\x50\xf8\xc8\x4c\x95\x91\xee\xd5\x31\xd7\x32\x75\x4e\xa7\x1f\x4e\x9d\x32\x8c\x5c\x3e\x6b\x81\x1a\xee\x0f\xf3\x33\xc5\x95\x57\x03\xec\xce\xc1\xad\x9a\x2c\x61\x8f\x2e\xe8\x93\xdb\x22\xef\xba\x1d\x30\x75\xa7\x53\xa8\xcc\xb9\x42\xa6\xcb\xc0\x85\x65\x50\xd6\xde\xa5\x37\xbf\x6a\x5e\x0a\xf8\x4a\x99\x90\xdf\xde\xb2\xac\xbf\x12\x62\x00\x84\xf4\xe3\x33\xda\x78\x17\x5c\xf9\x1a\x72\x4f\x6d\x9c\x1c\xa8\xb7\xb1\x44\xb4\x0b\xe2\x9c\xfc\x4f\x45\x9b\xe2\x82\xe0\xa3\xa0\x64\xbd\xf2\xac\xa6\xdb\xd3\x9e\xe0\x77\x17\x6f\xe4\x00\xa2\xd2\x55\x37\x65\xd2\x7e\xfb\x70\x79\x17\x5c\xe4\x2b\x4a\xe1\xe1\xe6\xae\xc1\xe2\x1c\x61\xcf\x44\x0d\x51\xf3\xe7\xbf\x7d\xbe\x70\xaf\x41\x5d\x0d\xd4\x8d\xa3\x78\xf1\xc4\xcd\x32\xd4\x43\x8d\xc7\x8b\x1b\x95\x18\x72\xdf\x2e\x85\x47\x88\x51\x54\x05\x1e\x69\x4b\x37\x0f\xc8\x2e\xb3\x58\x7f\x4b\x3e\xa6\x07\x7b\x54\x01\x46\xb7\xc2\xb0\x05\x61\x63\xe3\x53\x3c\xdf\xc5\x26\xfb\xa0\xf1\x50\xea\xcd\xdd\xed\x0b\x92\x89\x2a\x14\xbe\x40\xa6\x27\x8a\x00\x56\x97\xff\x97\x43\xf2\x11\x9b\x28\xf0\x79\x61\xd1\x96\x79\x77\xbf\xa8\x31\x4b\xe4\x90\x34\xce\x44\xbf\x2d\xa7\x03\xb7\x0f\x2b\xc2\x84\x28\x9f\xbf\xeb\x2e\x85\x5d\x8a\x5c\x64\x11\x14\xf5\xfb\x4f\x0d\x16\xf3\x2c\x13\x89\xd5\x8b\x71\x6a\x5d\xb2\xad\xec\x48\xf9\x8d\xf7\xe6\x4f\x3c\x9d\x0e\xaa\x70\x20\xe3\x3a\x69\xb3\xd6\x32\x78\x14\xfc\x0a\x93\x8d\x46\xf8\xfc\x4a\xa5\xd4\x77\x9b\x84\x51\x37\x2a\xbc\x01\x52\xde\x3c\x3a\x28\x2e\xc6\x05\xe8\x20\xfa\xd7\x45\x67\x06\x2a\xaa\x21\x6d\x73\x66\x44\xdf\xe4\x62\x05\xcf\xde\x22\x70\x85\x9a\xc0\xe4\x81\x64\x1b\xdb\x42\xd9\xb5\xcb\xde\xa6\xd2\x4e\xe1\x86\x8f\xa3\x3a\xbf\x58\x0a\xbb\x5f\x15\xe1\x89\xb6\x6c\xa4\xc8\xc5\xe6\x2f\x7c\x5e\xfe\x02\xf1\x6c\x14\xd3\x34\x0a\x1f\x1f\x2c\xc0\x59\x9c\x80\x14\x1f\x96\x7f\x39\x72\x21\x3f\x84\x15\x80\x9f\xaf\x18\xae\x9e\x6d\x18\x08\xc1\x7c\x2e\xdc\x35\x51\xc3\x38\x51\xea\x97\x91\x6d\xc7\x8d\xf7\x47\xd6\x6b\x6c\x33\x5a\x41\x3d\x2a\x63\x2c\xf7\x2f\x7d\xd2\x7f\x21\xd1\x58\x17\x32\x10\x7f\x19\xab\x83\x2c\xdd\x28\x57\x89\xd2\xa4\xb8\xe9\x0a\x79\x65\xb2\x67\xce\xd4\x90\x4b\x8f\xea\x02\xf3\xac\x29\x9e\x7a\xf8\xca\x46\xb1\xe6\xe1\x5e\x27\x80\x70\xdd\xa8\x5a\xd3\x56\x44\x43\xf9\xc7\x1d\xa3\xf5\x0c\x06\xea\x10\x3c\xaa\x14\x6e\x7b\x53\x81\xc5\xd6\x02\x30\xa9\x92\xdb\xed\x8f\x4d\x55\x3c\x7a\x69\x8b\xe3\xba\x8d\xa1\x3d\x9a\x49\x40\xac\x7c\x28\x22\x4e\x69\x9c\x2e\x51\xef\x7a\x81\x0d\x43\x33\xde\xa0\xcd\xbf\x59\x70\xfe\x9d\x06\x66\x70\xe2\x72\xcd\xdd\x1a\x0e\x93\xd2\xba\x28\x8d\x46\xaf\x97\xf5\x8d\x49\xdd\x4e\x61\x78\x01\xb0\xdd\xd3\xf2\x48\xca\x85\x29\x62\xdd\x31\x10\xee\x6f\x1b\xa5\x41\x57\x23\xeb\x16\xb8\x66\x23\x3f\x31\x8b\xe1\x1a\x66\x2d\xd1\xe1\xc5\x4e\x0c\x96\x14\xdf\xac\xb5\x20\xfd\x5c\xcb\x0c\x49\xf3\x72\xe3\xb5\x4d\xba\x83\x9d\x45\x4c\xe4\x53\x81\x6a\xc8\xbd\x7f\x40\xdf\x3b\x82\xb6\x41\x1c\x29\xfe\x67\xad\x2a\xe2\xc0\x8b\x1a\xfb\xa0\x5c\x1a\x93\xa6\x3e\x35\xfb\xdb\x32\x5e\x1e\x5c\xd7\x76\x4d\xdb\x22\x48\x3d\x85\x5d\xe9\x41\x04\x46\x3e\x1f\xc5\x5d\xc2\xb4\xb3\x64\xb2\xa8\x5d\xe2\x98\x82\x5b\xde\x4f\xf9\x92\x63\xa7\x6c\x0b\xed\xb0\x53\xda\x93\xb6\x2c\x86\xa3\x5e\x4a\x14\x90\x43\x07\x0e\x89\x43\x73\x50\x41\x80\xd7\x8f\xb2\xd1\xee\x23\x3a\x26\x8b\xdf\x09\xcc\x9d\xca\x8d\xf3\x37\xf7\x17\x65\x1a\x13\x00\xec\xc2\xa2\xc5\xda\x7c\x1b\x35\xa9\x97\x60\xe2\x8d\x09\xf7\x4b\x57\x08\xd8\x4f\xf6\x59\x37\x2a\x95\xb9\x6c\xa2\x44\x82\xdc\x9f\x5e\x12\xee\x99\x94\xba\xaa\x1a\x92\xdf\xa5\x95\x90\xd4\xc1\x65\x6a\x09\x00\x45\xfe\xea\x45\xc9\x69\xc1\x24\xc3\xf2\xcd\x3d\xb3\x5b\x5a\xc6\x20\xa6\x1a\x9f\x3c\xf8\x66\x66\xa5\x59\x09\x6c\x08\xb0\xaf\xbf\xa9\x2e\x83\x6d\x9b\x58\xa0\x87\x97\x7b\xf1\x59\xc5\x2c\x95\x60\xd8\x58\xfe\xfe\x6d\xf9\x67\x6c\x8c\x40\xf5\x22\xae\x54\xf7\xa8\x9c\xbe\x26\xe1\x7b\x40\xa3\xba\x5d\xa8\x75\x24\x8d\x39\x74\xe5\x8d\xcc\x32\x99\xe1\x2a\x62\x31\x89\xbe\x37\x77\xe6\x98\xee\x22\xe6\x35\x40\x4c\x84\xef\x73\x7b\x5e\x4f\xc4\xd2\x2c\x94\xb8\x5c\xde\xfe\xf2\xe5\xca\x62\xdc\x03\x0f\xce\xcc\x5e\x3c\xbf\x6c\x32\x0f\xce\xc2\xcc\x80\x9b\x69\x86\xa7\x07\x6b\x82\x53\xbc\xe5\x14\x45\x70\x6e\x66\x45\x05\x25\xce\x9e\x05\xab\xcf\x76\x45\x64\xae\x41\x03\x8f\x83\x00\x4e\x85\xf2\x26\x51\x1b\xa9\xea\xcb\xfd\x1b\xea\xce\x11\x0a\xcf\x6f\xbf\xaa\x25\xc7\xc0\x34\xb1\xe7\x55\x02\x7b\xea\x94\x49\x93\xa2\x9b\x75\x7c\xde\xc5\x32\x6b\x91\x62\x29\xbc\x51\xb3\x6c\xaa\x61\xdb\xc1\x7e\x0c\x5b\x5c\xa5\x71\x24\x9a\xe0\x1a\x5b\xb6\x63\xbb\xa9\x7c\x6d\x3e\x7f\x29\x6f\xa6\x42\x24\x3b\xbf\x7e\xdf\x15\xda\x7b\xcf\x1a\x6d\x59\xc5\x82\xdc\x15\xeb\xb4\xd3\xd9\x40\xac\x1e\xbd\x89\x9c\xe2\xf5\xd2\x6e\x05\xb2\xd1\x40\xcc\xe3\xc6\xfa\x85\x8f\x9f\x18\x27\xfb\x3f\x81\xa6\xd7\x23\xc5\x13\x8b\xf4\x7d\x6d\x43\xbc\xc8\x31\x69\x74\xce\x5b\xc9\x23\xf7\x71\x32\x09\xfc\xc8\x16\x5d\x6c\x3b\x70\xfd\xa4\xb6\xd9\xa9\x61\xea\xaa\x24\x59\x8c\xe4\xff\xb7\xa6\xa8\x29\x06\xbe\x70\x0b\x05\xa5\xa2\x76\x0d\x9c\x8c\xca\xd8\x16\x1d\x62\xfe\xbe\x33\x32\xe3\xe0\x46\x03\x31\x98\x26\x7c\x6c\x95\xa8\x52\x30\xf2\x70\x85\x70\x19\x89\xdc\xe9\xd7\xd2\x7a\x20\xb7\xf1\xd6\x2c\xb7\x74\x31\x87\x1b\xf8\x94\x16\x4b\xe1\xa7\x97\x69\x9a\x53\x20\xb8\xcc\x7b\x76\x3e\x3c\x19\x73\x54\xf7\xcc\x67\xd4\xb6\x9d\x58\xb2\xa4\xb7\x30\x6b\xa2\x8a\x3e\xf4\x90\x10\xaf\x09\x9b\x07\xb4\xb2\x0c\x23\x9b\xf4\x08\x5e\xd4\xc9\x57\x2f\x39\xf7\x89\x17\x4b\xd2\x07\x99\xc4\xb8\x21\x55\x98\x65\x9c\x42\xff\x61\x81\xc7\x0d\x49\x0a\x57\x28\x06\xe0\x26\x76\x7d\xc6\xe5\xce\x0b\x62\x19\x1c\xa8\xe0\xa6\x9c\xff\x8e\xa2\x36\xe5\x20\x81\xd3\x1d\xd3\xd4\x97\xb6\x8c\x25\x5e\x88\xb9\x5b\xe7\x0c\xd3\x63\xbd\x07\x80\x07\x63\xe0\x07\xe9\x9f\xcc\x68\x9b\x2e\x66\xa9\x07\xcb\xf2\x69\x75\x06\x6e\x95\x4b\xba\x8d\xd3\xa0\x4c\x16\x6e\x30\xd2\x54\xce\x5a\xd7\xd4\xe4\x95\xb3\xc0\xbe\xf9\xba\x55\xe9\x93\x4f\x18\xba\x7d\x8a\x13\x6b\x04\x19\x0f\x0e\x17\x8e\xb4\xc4\x26\x51\x76\x87\xd0\xf7\xcc\xf1\xc1\x6a\xdb\xd1\xcd\x25\x82\xd8\x0b\xca\xb2\xaf\x86\x5c\x9f\x02\xc6\xf6\xb2\x1e\xd9\x92\x39\x7e\x13\x70\x6f\x1d\xf2\x9f\xa6\xb7\x47\x15\x6e\xee\xa6\x65\x52\x57\x0d\x45\x89\x6c\xa5\x30\x90\x6d\xd8\xd8\x05\x09\xbb\xd1\x4d\x6d\x78\x8c\x6c\x81\xb4\x32\xfe\xeb\x71\x75\x53\x51\xad\x71\x94\xd4\x5b\xeb\xa5\xbb\x6f\x37\x54\x19\xab\x95\xd9\x92\x4d\xcb\xe5\xd8\x3d\xf1\x07\xae\xde\xc2\xcd\x89\x43\xca\x6d\xe5\x91\xe9\xbe\x9e\xd1\x6a\x54\x57\xc0\x27\xd4\x9f\x19\xa7\xa5\x7c\x87\xba\x1a\xa0\xd4\x18\xb9\x50\x2b\x6d\x90\x53\xa6\x16\xf4\x31\x5c\x6c\x24\x37\xa3\x47\x11\xa2\x52\x7c\x28\x5f\x4b\x8f\x39\x4c\xc2\x6e\x0f\x70\xf4\xa2\xe9\xd5\xff\xbf\xf4\xa4\x1b\x3a\xe1\xd1\xab\x5d\xc8\xf6\xdd\x89\x96\x17\x76\xab\x7e\x0d\xce\xf6\x17\xde\x55\x38\xc2\xa8\x8e\x69\x53\x60\xc1\xfe\xdf\x02\x4e\xb7\xb8\x1e\x33\x46\xd2\x46\x56\xb3\x5e\x4e\x07\x55\x8b\x3a\xc4\x25\xd1\xb5\xa5\x3f\xf0\xa2\xfb\x65\x6d\xf3\xb1\x14\xbd\xf4\xa2\x3b\x92\xa7\x3d\x7b\x56\x7b\xf4\x71\x2f\xde\xab\xaa\x28\xb8\x81\x98\xa2\xe6\x47\x3c\xad\x04\xa5\x80\xd1\x06\x88\x66\xde\xfd\xe6\x20\xb5\x3d\xc1\x1c\x19\xf1\xda\x59\xa5\x1b\xc6\xb4\x61\x67\x34\x45\x8d\xef\x1f\x1e\x7d\xae\xe4\xcb\x67\xea\xe1\xe5\x7d\x65\xb9\xcb\x81\x71\x31\x65\x26\xf7\xc4\xe3\xc2\xd3\x9f\x78\x26\x64\xf3\xe8\x32\xbe\x3e\x51\xd2\x72\x90\xda\x0e\xfd\xe7\xe3\x97\xa9\x75\x33\x90\x8d\xf4\x02\xf8\x93\xee\x50\x4d\x65\xfb\xc6\x29\xa5\x62\x29\x5c\x3f\x55\xf5\x8c\x74\x7d\xd8\xf2\xf3\x36\xf5\x86\xf1\x23\x15\xe6\x64\xdd\xa5\x2d\x1b\x5b\x42\xb5\xce\x18\xff\xae\xaa\xa5\x84\x11\x83\x3a\x25\xfc\xc1\x73\x5a\xa0\x24\x56\x82\xdb\x39\xa2\xfa\xaf\x60\x66\x06\xe7\xd0\x91\xeb\x5a\x93\x9d\x07\xa3\x26\xaa\x46\xe9\x06\x20\xcc\x95\x93\x8a\xb3\x13\x6e\x62\x5b\xc8\x93\xe7\x7e\x7a\x5a\xd8\x06\x45\x69\x91\x9b\xb8\x9f\xda\x16\x3b\xd3\xce\x9d\x55\x2c\x85\x33\x57\x2b\x42\xfd\xc4\xc6\x8e\x83\x38\xbe\x71\xed\x10\x05\x01\x67\x5b\x71\x4a\xbc\xf6\x75\xb9\x92\x69\x9f\x5a\x2c\x85\x5f\x3e\x22\xbf\xb3\x43\x18\xa3\x1c\x29\x94\xef\x78\x3e\xa9\xdd\xf9\xaf\xa7\xdf\x97\x7e\x4c\xd5\x27\x6a\xa2\xa8\x32\x8c\xef\xf1\xf8\x95\xf2\xd0\xc6\x72\xd3\x93\xe0\x78\x7d\x73\xa9\x22\xa3\x43\x6d\xca\x90\x05\x89\xa0\xe7\x75\x7d\x42\xd0\x68\x08\x99\x8f\xde\x42\xb5\xac\xa7\x22\x81\x8f\x10\xa9\xe8\x92\x8a\xac\x9b\x50\x19\x60\xe3\x43\xde\xe5\x39\x74\xc6\xf4\xe8\x1e\x51\x26\xbf\xa2\x4b\x9b\x55\xca\x68\x14\x1e\x3f\xbf\x5e\x63\x8e\x13\xdb\x26\x31\xe7\x3c\x7c\x7e\x60\x32\xcf\x98\xa9\xcd\x33\x76\xae\x56\xb0\x55\x93\x1c\xcc\x29\x93\xf9\xe7\x27\xcb\xaf\x5d\xa6\xb4\xce\x75\x0f\x41\x5f\xce\x52\x68\xa5\xed\xed\x73\xc1\x53\x76\x17\x07\x79\xae\x66\x81\x97\xf5\xe8\x9a\x5c\xb9\x42\x6b\xc6\xcc\xb6\x29\x24\x4b\xee\x58\x3b\x51\x0e\x19\xb0\xe7\x13\x87\xeb\x7e\x86\x53\x46\x4b\xad\xb8\x1e\x85\xe4\x64\xcc\x59\x9c\x74\x01\x9e\xcf\x54\x91\xe3\x65\xaf\xa8\x8d\xea\xff\x4f\xd7\xdb\xc7\x5b\x51\xd5\xfb\xe3\xec\x87\xeb\x55\x42\xe4\xe1\x70\x38\x02\x22\x22\x02\x0a\xfb\x74\x38\xc0\x01\x8c\x08\x11\x11\x11\xd9\x84\x88\x0f\x19\xb1\xf6\xcc\xda\x7b\xd6\xd9\x33\xb3\x36\x6b\x66\xf6\x3e\xe7\x5c\x23\xe3\x1a\x11\xa9\x11\x11\xfa\x35\x32\x33\xf3\x9a\x99\x97\xc8\x1f\x79\x89\x4b\x46\xe4\x35\x32\x23\xf3\x9a\x11\x91\x71\x89\xc8\xbc\x46\x5c\xae\x99\x71\xc6\xdf\x6b\x3e\x6b\xcd\xac\x35\x6b\x9f\xfb\x4f\xaf\x5e\x08\xe7\xec\x3d\xb3\xd6\xe7\xf1\xfd\xe0\x38\xc4\x8f\x41\xff\xd9\x9d\xc7\xc7\xaa\x24\x4d\xdb\xc3\x29\x15\xb8\x6c\xdb\x99\xe1\x6a\x23\x6b\x72\xce\xea\x10\x55\xb1\x83\x51\x87\xc6\x64\xd6\xcf\xe7\xdb\x44\x5c\xac\x34\xeb\x0e\xdc\xf0\xa4\x40\x31\xd5\x49\xc2\x7e\x25\xe7\x46\x28\x97\xcc\x29\xf1\x64\x39\x7a\x0f\xdf\x63\xfb\x16\xc3\x8d\x42\x31\xfc\x66\x1f\x6f\x9b\x40\x8a\x12\xa3\xd8\xee\x24\x5b\x6a\x91\xcb\x27\x23\x68\xe6\xe5\x8e\xdc\x37\x59\xab\x12\x31\x71\x4b\x0c\x1b\x96\x80\xef\xc8\x89\xc2\xfa\xb3\x69\x4f\x38\xd1\x22\xc0\x08\xe0\xcd\xe4\x89\xdb\x54\xb5\xd3\xf9\xb1\x00\x5c\xc0\xd4\x9c\xa3\xc4\xb3\xdf\x52\xd4\xed\x91\x0f\xf1\x09\xf4\x11\x1f\x84\x3c\x57\xb8\x96\x3a\x35\xe4\x0e\x44\x50\x98\x7c\xb7\xa0\x49\x23\x87\xef\xcd\x97\x3e\xa4\xa3\x12\xed\x2a\xe6\x3e\xce\x99\x87\x94\x81\xba\x4d\xca\xf1\xf5\xcc\xef\x4c\x42\x40\x09\xa4\xa9\x5f\xd6\xf8\x76\x9e\x8d\x71\x2d\x36\xfc\x19\xeb\xbf\x2f\x2e\x47\xe1\x87\x1e\xde\xaf\x2e\x27\x45\xdf\x55\x28\x86\xa3\x36\x69\xb5\x05\x46\xb6\x98\x2c\x7c\xed\x85\xf4\x67\x04\x99\x05\x1e\xfa\x32\x7f\x1e\x16\x6b\x6c\x1a\x34\x60\x28\x8a\xc4\xf0\x84\xfa\x26\x5f\x18\xbf\x4c\x87\x3b\xc8\xb7\xee\x1b\x29\x8a\x45\x2f\x28\x2b\xef\x64\x44\x96\x53\x3a\x6e\xc6\x06\xc3\x4d\x5a\x98\xd9\xaf\x2d\x90\x9d\xea\x8c\x19\xed\xdc\x55\xe8\x8a\xd7\x34\x0b\x04\x9a\xb8\xa2\x67\x87\x6f\x97\x4c\x23\x83\x34\xed\x8e\x26\x3d\xad\xcc\x01\x0d\x14\x7b\x4d\xf5\x67\x8e\xb6\xb6\x48\x84\xbc\x2a\xff\xf4\xf3\xee\x74\xe1\xca\x7b\xe3\x69\x0d\xa8\x26\x73\x1d\xc3\x92\x12\x6b\xf6\x8c\x2e\x80\x87\x74\xf2\xf9\xc2\xcc\xd9\x73\x63\xc1\xe3\xff\x7d\x57\x67\xd4\x50\xd0\x25\x0a\x0f\x6c\x94\x01\xb5\x84\x99\x1f\xf4\xf5\x81\xb2\xc3\xcf\x98\x86\xdf\x64\x09\x8f\x31\xb3\x72\x6b\xab\x42\xe4\x8d\x37\x6e\xf0\x72\x7f\xbf\x4e\x7e\x39\x1f\x39\x7c\x99\x1c\xd5\xb0\x3b\xd7\x2a\x92\x9e\x29\x03\xa7\x7b\x24\xb8\xb6\xb3\x50\x28\x86\x9f\x6d\x93\xc3\xf2\xa8\xa8\x8e\xbe\xd1\xef\x9f\x6a\x53\x41\xda\xb0\xa5\x49\x18\x7d\xa7\x9e\x92\x71\x87\x0b\x39\xc7\xff\x29\xf7\xb5\xb5\xe9\xaf\x5d\xa2\x0d\x01\x7c\xfd\xf2\x01\xcd\x78\xa1\x8e\x19\x58\xbf\x9a\x09\xd0\x69\xc3\x12\xf9\x68\x40\x20\x81\x13\xd8\x33\xb7\xed\x6b\x5a\xdc\x03\xbe\x4a\x80\x02\x32\x5b\x27\xa7\xc3\x81\x43\x81\xcb\x36\x80\x4b\x41\x6e\x6c\xeb\x45\x22\x14\x08\x4c\x5a\x31\xfc\xf7\x1d\xc2\x91\xa6\x97\x26\xd6\x18\xf9\xeb\xf6\x2b\x7b\x00\x6c\xc6\x93\xdc\xb7\x97\xe8\x0d\x58\x9d\xe0\x06\xaf\x2b\xbe\xf8\x9c\x22\x6e\x4b\x6c\xac\x62\x82\x2f\x19\xaf\xd8\x0a\x30\x6a\x54\xb1\xaf\x06\x9c\x3f\x75\x2b\xca\x57\x6e\x05\x83\xb6\x6b\x38\x86\x35\x7d\x6d\x8f\x98\x00\xc2\x84\x2c\x5b\x7c\x32\xfd\x61\x5c\xea\x27\x24\xdf\xec\xd0\x63\xf2\x5c\x54\x60\x64\x20\x36\xf4\x93\xd7\x24\xd0\x03\xe4\x90\x78\x6e\x79\x72\x95\xbe\xb8\x5d\x1f\x90\x18\xee\xd9\x9f\xf9\xcf\x67\x94\x10\x62\x51\xe6\x63\x31\x9a\x3d\xbd\x52\x11\xc8\x46\x0e\x8c\xd6\x6e\x60\x1a\xe2\x14\x31\x5b\x2b\x92\x4f\x0b\x33\x75\x93\x78\xb1\x22\xc2\xd3\xed\xe9\xc2\x1f\x08\x5d\x03\x3a\x4d\xfc\x64\xe8\x18\x39\x2c\xd2\x89\x85\xe1\xbb\x5d\xda\xa4\xc9\xa2\xbc\x32\x11\xc3\xf6\x5f\xb6\xc5\x84\x13\x0a\x1a\x91\x22\xc4\xee\x1a\x94\x8c\x23\x7a\xb1\x13\x1f\x67\x67\x85\xfe\xbe\x01\x2a\xcf\x17\x64\x4f\x0e\xd3\x9e\x3f\x00\x89\x78\x0f\x9b\xbf\x63\xc1\x70\x71\x12\x0c\x46\x1b\xa8\xce\x67\x49\x93\xd6\xc5\x4b\x2e\x98\x4f\xc6\xf3\xb3\xe9\xcb\xb4\xba\x26\xf0\x7d\xea\x26\x8c\x89\x75\xcb\x35\xec\x9e\x1b\xdd\x46\x52\xee\x95\x9b\xd8\xcf\x30\xc5\x68\x2c\x26\x95\x67\x8a\x7b\x79\x3b\x73\x8d\xed\xd1\x0a\xd7\x4b\x8e\x47\x57\xd7\x31\xe9\x37\x6a\x03\x15\x4e\x29\x39\xd6\xfa\x9a\x0e\xbd\x00\x80\x60\x4f\x30\x4e\x7e\x36\x51\x45\xb1\x33\x16\x08\x0e\x54\x38\x6a\x45\x4a\x74\x26\xaa\xaf\x61\x53\x16\xce\x56\x30\x1b\x2e\xe6\x82\xa7\x0f\xcc\x4a\x0a\x36\x6e\xec\xac\x48\xf1\xbc\x36\x3a\x15\x7f\x70\x54\xfb\x50\x7e\x52\xf6\x2e\x4d\x0a\xa2\x6e\x54\x53\xf6\x7e\xe1\xfb\x5f\x55\x66\x40\x65\x1f\xb3\x06\x62\xc0\xf3\x3d\xd3\x95\x44\x7a\x18\xd3\x26\xdf\xb4\x67\x41\xd3\x88\x82\x70\x24\x77\xf4\x9b\xfe\x72\xb7\xac\x43\xba\x9b\x33\x55\xe6\xd8\x1e\x8d\x7f\xc1\x40\x30\x1a\x26\x39\x90\x2b\x9f\x15\x7a\xd4\xcb\x11\x33\x95\xa7\x9f\x5b\x74\x4c\xd3\x9a\xac\x30\x62\x04\xb6\x1f\xb0\xe4\x77\x17\xdf\x1e\x2e\xcd\x9f\x8c\x38\xf4\xee\x7a\x59\xf9\x86\x25\x85\xb1\x92\x1b\x9f\x4f\xb7\xe5\x15\x1a\x55\x75\x69\x4e\x7f\xe6\xf1\x65\x97\xa8\x61\x6d\x00\x51\xba\x56\x71\x3d\x4c\xe2\xd5\xa4\x01\x5d\x76\xd3\x49\x4d\x91\x87\xba\x58\x38\x6d\x85\x3b\x0e\x4a\x3e\xf3\x9c\x79\x85\x5e\xa1\x87\x26\xd3\xe9\x57\x57\x0c\x44\x50\xf7\x01\xb7\xc9\x41\x86\x99\xc2\x49\x79\x7e\xcb\x41\x37\xec\x2c\xfb\x73\x47\xf6\xeb\x2e\xae\x6e\x42\x30\xc9\x54\xf6\x08\x15\x45\xe2\x56\x14\x21\xf1\xec\xc3\x9b\x15\xf5\xeb\x44\xa5\x93\xcf\x3c\xde\xdb\x1c\x8b\x10\x4b\x61\xda\xb7\xd7\x0d\x1c\x66\x45\x39\x95\xab\x0d\x51\x86\x05\x51\xd2\x70\x85\xe9\x76\xc6\xe6\x3f\xcc\xa2\xb6\x49\x03\x4e\xb6\x9d\xf1\x72\xb3\x03\x16\x64\x87\x09\x3b\xd4\x91\x03\xb1\x69\x6c\x1f\x7e\xdc\x4e\xd2\x71\x85\x0b\xeb\xee\x90\x87\x8e\xb2\x0a\x72\x49\x5f\x2c\x0c\x08\xa9\xe9\xfd\x7d\x63\xb5\xaa\xdf\x57\xfd\xa6\xb3\xdf\x6c\xd7\xc5\x93\x78\x93\x14\x15\x1f\xa5\xe7\x5b\x94\x1e\xd0\xf3\x85\x2d\x5b\xf8\x93\x0e\x4d\x8e\x86\x23\xb2\xe3\xc4\x3c\x73\x8c\xa2\x3c\x59\x43\x46\xd3\x62\x2b\xb7\x71\x81\xb2\xfc\xc4\x06\xf6\x3c\xc4\xc0\x78\x24\xfc\xc0\x79\xda\xbe\x9a\x21\xd7\xb3\x61\x4b\x05\x72\x06\x27\x8e\xea\x5e\x06\x7e\x20\x54\x57\x79\x68\xfb\xe3\x5c\x69\xd8\x10\x40\x5d\xf9\xb7\xa7\x15\xbf\x6d\x52\x87\xd0\xa5\xec\xfe\x75\xbb\x69\x0e\x59\x16\xe4\x93\xef\x35\x11\x49\xaa\x12\x6a\x9d\xfb\xfe\x1a\x7d\x23\x27\x92\x44\x9d\x03\x6c\xc3\x2d\x5b\x34\x0b\x2f\x17\x3b\x1c\x06\x1a\x92\xce\x66\x52\x77\x6c\x16\x98\xb5\x5c\x51\x34\xf7\x18\x2c\x30\x62\xa9\xec\xfe\xfc\xfd\xcf\xeb\x1a\x2e\xdc\xc1\x20\x31\xcf\x9e\xf3\x16\xaf\x4e\x56\x01\xbd\x8e\xf3\xd9\x9f\x6b\x49\x1f\x32\x2b\x60\x5c\x42\xe6\x4f\xbb\x9a\x9c\xb6\x7d\x1c\x2b\x95\xe5\x4e\xcf\xe5\xe7\xb5\x0c\x1c\x52\x5e\x0d\xfc\xc7\x43\xfc\xcf\x38\x13\x83\x9f\xc8\x43\xe7\x64\xa8\xf6\x0c\x40\x0f\xfc\xc3\x0a\x85\x93\x8e\x98\x03\xda\x4e\x50\xe2\xb7\xe9\xbf\xd1\xb6\x51\xcd\xe3\x68\xdc\xec\xdf\xba\x75\xa1\x47\x1b\xfc\xe6\x80\xb3\x2f\xbb\xf3\xb3\x5b\x75\x0a\x12\xee\xa1\xf1\x8e\x23\x7a\x08\xcc\x6c\x6e\x99\xe2\x01\xfe\x4a\xb1\xdb\x5b\x9d\x50\x09\xb7\xaf\xd6\x3d\x08\x48\xc5\x4a\x96\x08\x99\x8b\x6f\x93\xa7\x87\x1a\x18\x86\x7c\x49\x4b\xfd\xca\x8a\xe1\x4a\xef\x31\xa7\x1d\x74\xaa\xb2\x8f\xe7\xb5\xfd\x22\x76\xfd\x80\x25\x22\x54\xb9\xcf\x9d\x96\xe5\x5d\x19\xb3\x4a\xe0\x51\x15\x54\xf2\xd3\xc7\xb4\x9d\x10\xf6\x7d\x9b\x67\x09\x11\xfe\x7e\xf5\xb2\xec\x44\x6c\x35\x51\x74\xb9\x7a\x01\xe2\x05\xb6\x10\xd9\x5e\xf9\x6e\x7a\xf7\x8a\x1c\x01\x95\x6a\x9c\xfa\x3f\xa1\x3d\x3c\xb7\xdc\xf6\xec\x65\xca\xf4\xca\xc6\x15\xc0\xef\xe9\xb5\xf2\xa8\x87\xd5\xa1\x7e\x8d\x77\xbc\x99\xfb\x34\x47\x2f\xe4\x60\x46\x0c\x94\x3c\x8b\x0b\x14\x2a\x44\x95\xa1\xba\x61\x61\xb7\x4a\x0b\xc5\x70\x57\x0f\x87\x5d\xdc\x8e\xeb\x96\x6a\x13\x99\x7b\x4b\xc3\xd9\x59\xc4\xf1\xb0\x5d\x8e\xdf\xd7\xbf\xdc\x9f\x7e\x04\x05\x07\x99\x62\xa9\x11\xde\x6f\x6a\x62\x03\x08\x44\x80\x54\x42\xc1\x03\x0b\x62\x65\x11\xe2\xcb\x7a\x2f\x37\x75\xbb\x64\x7e\xaa\xcd\x69\xf6\xa7\x2b\xd3\x00\x54\x9f\x38\x94\xa5\x84\x89\xfa\xb3\xbf\x56\xcc\x71\x4b\xbd\x40\x90\xe6\x57\xe7\x6b\x6b\xf9\x61\x0c\xdc\xd8\x48\x24\x73\x64\x6a\x53\xe6\xf4\xad\xf8\xbd\xbf\xdd\x22\x0f\x8e\x87\x8d\x20\x2d\xdf\x9e\x79\xbf\xab\xe1\xe5\xb0\x53\xa3\x0c\x22\xab\xa0\x1e\xec\xbc\x3a\x36\x31\xb3\x31\x17\xfd\x2a\x14\xc3\x96\xb2\x36\x1d\xf0\x89\x51\x8d\xc3\xe9\x81\x77\x64\x7a\xa4\x2e\x86\x3e\xac\x50\x43\x10\x58\xf7\xcd\x4f\xdf\xb3\x19\xf3\xe6\x75\xb6\x8b\x26\xeb\xf7\xa7\x2f\x54\xfd\x57\x8b\xe1\x06\x21\x30\x7e\x07\xe9\x45\x29\x66\xe0\xbd\xcb\x79\x7b\xbf\x8a\x02\x7d\x42\x4f\x15\xf7\x4e\x4a\x1f\x5b\x27\x3e\x39\xa7\xb7\x6b\xe0\x3f\x5a\xe7\x6a\xcb\xe1\xff\xec\x50\x1a\xce\x1a\x6c\x12\x45\x46\xcf\xfe\xfb\x81\x4b\xb5\x12\x2c\xaa\x66\x7d\xea\x4e\x6b\xd4\xe2\x8c\x59\x9a\xcf\x8f\x40\x95\x98\x2e\x1f\x53\x42\xe2\xdf\xd3\x96\x9e\xd8\x31\xe4\x00\x24\x93\xf9\x28\xa5\xd7\x72\x34\xaf\x01\xf0\x69\xec\x70\x9e\xfb\x87\x27\xa5\xcf\x0b\x8d\x1a\xc4\xbb\x8e\xca\x93\x11\x8f\xaa\x71\xa1\x18\x3e\xb6\x55\x87\xa8\x48\xcd\x15\xf8\x1e\xfd\xbb\x35\xa0\x65\x14\x48\x19\x57\xb5\x0e\x37\x6c\x54\x85\x16\xb0\xeb\x97\x03\x40\x2c\x7e\x74\x5c\xfa\x45\xe3\x1e\x03\x63\x53\x6c\x25\x4f\x2e\x9b\x90\xee\xd2\xa3\x42\x5c\x6b\x96\x3a\xde\x90\x83\x25\x04\x6b\x99\x15\xd2\x73\x74\xde\xf4\x19\x00\xf3\x79\x4d\x0e\x26\x4b\x81\x02\x5b\xbc\x54\x78\x69\xdd\x7c\x4d\x53\xe8\x98\x76\x4a\xd1\x1b\x8a\xd5\x0e\xe3\xd7\x71\x6d\xb7\xae\xd0\xeb\x78\xa8\x6a\x05\xcc\x24\x48\xdc\xb2\xc4\x41\x76\x5f\x7a\x11\x65\xdb\x04\x34\x1c\x61\x4b\xd2\x7b\x24\x71\x94\x68\x58\x18\x0c\x52\x7e\xb9\x54\x93\xe3\x02\x05\x45\x7d\xba\x6f\x6c\xd4\xe4\xcf\x82\x5a\x4d\x88\x50\x67\xa7\x9e\xe3\x87\xf7\x1a\xe6\x0e\x34\x44\xbf\x72\xb7\x26\x0c\x04\x49\x9e\x83\x53\xb6\xbd\x26\xba\xad\x72\xc5\x42\x2e\xb0\xf6\xe2\xf6\xfa\xbd\xd5\x62\xd0\x09\x9d\x56\x8d\x11\xe1\x4f\x34\x7a\x91\xa6\x3d\x41\x85\xf7\x6b\xfe\xbe\x59\x0a\x18\xa1\x4a\x6a\x5c\x24\x27\xbb\x7e\xb7\x3e\x59\x8f\x62\x5a\x74\x8a\xb8\xcf\xca\x75\xa7\xf5\xc9\x55\x1d\xdb\x89\xd1\xc1\x05\x43\x9b\xd0\xbc\x65\x1f\x9b\x42\xe1\xea\x67\x2b\x93\x57\xef\xf2\xc9\xe1\x90\x41\xcd\xa7\x96\x51\x87\x78\x58\x20\xcc\xbd\xc9\x9a\x68\x6f\xc0\xaa\xa2\xd2\xca\xfe\x51\x08\xd6\x71\xad\x8d\x42\x31\x5c\xf1\xae\x78\x5f\xcc\x27\x06\x1f\x71\x5c\x79\x4e\xff\x40\xa4\x2e\x29\xf1\xe1\x62\x1e\xdc\x8a\x92\x2e\x50\x0c\xdf\x1b\xa7\xd1\x4e\x18\x2a\xf1\x3b\x94\xcf\x4e\xe6\xa3\xd6\x25\x0c\x07\x40\xf2\x9e\x7a\x87\xac\x64\x2a\x42\xc0\x62\xda\x56\x7d\xd2\x01\x80\xb6\x78\xd2\x31\xff\x94\x06\x31\xa0\xc8\x8e\x39\x11\xdf\xb9\x8b\x7f\x23\xb0\xf9\xe1\xe0\xfe\x7c\x4c\x5c\x42\x06\x47\x88\xfd\xa8\xa6\x8d\x1f\x28\x33\x30\x13\x02\x2d\xc5\xfe\xec\x38\x0d\xc9\xc7\xb5\xa5\x63\xdb\x82\xf0\xc9\xc5\xb2\xef\xb5\x48\x0a\x26\x9c\x1d\x3c\x44\xfc\xfa\x9e\x1a\x65\x51\xb0\xd9\xb1\x4e\x9b\x7b\x21\x97\x0b\x68\x7a\x82\x89\x2b\xfb\x69\x6f\xfe\x70\xa5\x9f\xc6\x84\xaf\x3b\x3f\xf7\x9c\xba\x49\x72\xe3\xfd\x77\x66\xcf\x6a\x79\xf8\x66\x77\x24\x26\x6e\xef\x3f\x5f\x2b\xf6\xb0\xeb\x05\x71\x2c\xcc\xdf\x37\x29\xfd\x62\x4c\xd4\x2b\x0e\x73\xe6\x0b\x87\xdb\x9a\x5e\x33\xe6\x1a\x05\x61\xd7\x9a\xf4\x7f\x23\x4e\x8d\x7a\xf1\x88\xcb\x3b\x17\xa3\x45\x5d\x8f\x78\x3e\x67\x8a\xe7\xfd\xed\xb2\x48\xab\x23\x1b\x03\x6d\x76\x61\x57\x3a\x57\x32\xd2\x8b\x4c\x4b\xaa\xc7\x84\x4f\x5b\x2a\xbb\x98\x3a\x10\x76\xbf\x2b\xd6\xc3\x51\x59\x1a\xc4\x2c\x86\x77\x77\x29\x7e\x1a\xc4\x36\xe0\x66\x1d\x1a\x9f\x16\xbd\x45\xcc\xb0\x62\x33\xc8\xc7\xb5\xd2\x1f\xd9\x20\x35\xc0\xab\x31\x34\xfe\xaa\x86\x3e\xbd\x61\xdc\x6c\x65\x00\xf4\x7e\x66\x54\x67\xfa\xce\xb9\x38\xfa\x9d\x55\xd9\xa3\x3c\x31\x62\xb8\x5a\x9e\x8b\x59\xf6\x45\x7b\x75\x9e\x69\x03\x04\x03\xa1\xd4\x8e\x4f\xd0\xe1\x76\x45\x88\xbc\x87\xd8\x38\x71\x45\xea\x6a\x51\x51\xc3\x81\x81\x3c\xe8\x45\xd7\xac\x51\x31\x0f\x81\xcb\x35\xb6\xb3\x9f\xbe\xba\x25\xc5\xe5\x71\x05\xad\xee\xd3\xcb\x87\xa9\x22\x2f\xb5\xe8\xcf\x16\x8d\x1f\x2a\x9e\x30\x11\x1e\xe0\x99\x35\x3b\x9b\x40\x3e\x26\x89\x81\xa6\xcb\x15\xe3\x7f\x21\x4c\x1c\x35\xa8\x4f\x8e\x53\xee\x45\xa5\x09\x0b\x9c\xbd\xf5\x69\x45\xaa\x25\x30\x41\x74\x26\xff\xa9\x07\x5b\xe2\xe3\x53\x61\xdc\x0b\x1a\x86\x51\xfd\x77\x2a\x26\x2a\xb4\x02\xc9\x34\xff\xbe\x3d\xb2\x2f\x00\x17\x3f\x23\xb0\x01\x75\x77\xfd\xcd\x2b\xc3\x8f\xf8\xf1\xd4\xd0\x71\xa8\x1b\x1b\x18\x65\x6f\xdc\x28\x45\x47\x55\x33\xea\xec\xb5\xcf\xc8\x99\x7a\xc3\x02\xc6\xf5\xfb\x94\x87\x56\xc2\x16\xaa\x13\xca\x38\xb0\x44\x9b\xfc\x23\x8f\x98\x82\x6b\x93\xff\x9c\x80\xdd\x5a\xd4\xb7\xb9\xb0\x70\xee\xcc\x2b\x32\x44\xd4\x70\xda\x50\xf9\x8a\x49\xe9\x7c\x62\x20\x9b\x1b\x5f\x66\xdf\xbb\x6b\x8c\x56\x5c\x05\xae\x1f\x87\xda\x30\x94\x82\xc7\x01\x24\xea\xb8\x7a\xfe\xd0\x51\xcd\xb7\x0b\xf7\xc4\xa0\xda\x8b\x0e\x29\x02\x3b\x20\x14\x5a\x0c\x3f\xea\x5e\xa4\x7e\x36\xb8\x4d\x1f\x5e\xa8\x31\x5f\x19\x72\x0d\x4d\x21\x33\x93\x79\x55\xe8\xad\x70\x88\x6a\xd3\x58\xea\x05\xad\x0f\x82\xe9\x5e\x2c\xf7\xf9\xb5\x97\x5a\x14\x18\x23\x2e\x54\x7b\x61\x8b\x11\xbe\x79\xbf\x0a\x00\x37\x18\x06\xa4\x6e\x31\x9c\x7e\xb8\xb9\x4d\x26\x6e\x00\x38\xaa\xf0\xb5\xe7\x93\xe9\xb2\xc1\x9a\xe6\x63\xf9\xcb\x8f\xc9\xd0\xd8\x87\x18\xea\xf5\xaa\x85\x62\x78\x6a\xb0\xfc\xde\xed\x94\x41\x87\xb1\xeb\x79\x6d\x87\x66\x24\xe3\xda\x9c\xa9\x8d\x1d\x67\xcc\x9a\x3e\x7b\x76\x2c\x5f\x93\xf9\xa7\xbb\x87\x29\xe3\x16\x1b\xe4\xe4\xbe\xbb\x54\x30\x99\x70\xac\x5b\x74\xe3\x0b\xfc\x4f\x66\xcc\x9a\x3e\xb7\x63\x56\xa1\x18\x7e\xfd\x55\xa5\x64\x40\x35\x82\xf9\xe8\x61\xdc\x13\x53\xb5\x57\x68\x83\x50\xec\x80\x8a\xc7\xfd\x6d\x1a\xb8\xc7\x5d\x5f\x27\x9e\xcf\xf1\x37\x89\xb7\xcf\xb3\x43\xa2\x5f\x54\x03\x57\x95\x42\x71\x49\x9b\x32\x8f\x0a\xa2\xe8\x96\x80\x37\x32\xd7\xaa\x11\x01\x11\x00\x67\x5c\x9c\xd7\x21\x92\x35\xcc\x1c\xc4\xaa\x89\x74\xf9\x23\xe7\xd4\xc5\x76\x00\x3c\x17\x51\x3c\xce\xad\xc9\xe8\x67\xa1\x3e\x6e\x6e\x9b\x9b\x74\x72\x64\x9c\xda\x52\x7b\xff\x8b\xeb\xba\x96\x02\x28\xf5\x0a\xbf\xa3\x6b\x36\xf3\xec\xb2\x12\x33\x2f\x8a\x0c\x1c\xde\x78\xc5\x18\x59\x34\xac\x0f\xb8\x7a\xd5\x43\xaf\xa6\x8f\x1f\x35\x8c\xa0\x26\x7a\xb0\xec\xbf\x69\x1c\x29\xec\x5b\xc4\x88\xe7\xb8\x99\xe3\x47\xf9\x0d\x46\x75\xec\x06\x1c\x5c\xf0\x85\x17\x86\x89\xb3\x5a\xc1\xae\xc9\xcf\xe4\x7a\x2e\xdf\x52\xb8\x01\x68\x54\xd8\x2f\x30\x6c\x0b\x47\xd0\xec\xd7\x77\x88\xcd\x6a\x62\x5e\xf6\x48\x4d\x5b\x16\x82\x1a\x38\xff\x38\xcb\xd6\xf2\x2a\xa8\x8c\x5c\xd0\x09\x3b\xb9\x6d\x94\xf6\x0c\x6a\x62\x0c\x70\x66\xae\x0a\xe0\x8f\x62\x1e\xf4\x45\xb5\x75\x62\x4e\x84\xa5\x83\xd6\xbf\x3c\x92\x4c\xa3\x51\xe0\xc7\x84\xd5\xb9\xb3\xf4\xb9\x8c\x6f\x58\x02\xe8\x6f\x6c\x1d\xa5\x2c\xde\x91\x61\x04\x82\xdb\x9d\xbd\x61\x89\xae\x7d\x8d\x5c\xc3\x8a\x8a\x4a\x18\x08\x0e\xed\x94\x6f\x78\x4a\x8c\x47\xce\xfd\xee\x20\xc7\x87\x2c\xa5\x8d\xe8\x01\x0c\x1e\xac\x43\xdf\xcb\x76\x00\xc2\xdc\xbc\x2f\xfe\xfd\x0a\xb9\xbf\xec\xa5\xac\x9a\x02\x62\xed\x3d\x90\x14\xba\x33\xa7\xcf\x06\xea\xf0\x04\xfe\x95\x6b\x8c\x36\x62\x7a\xcc\x84\xa1\x1c\xab\x3f\x63\x46\xa1\x18\x2e\xd1\xec\x70\x12\xd6\x0d\xaf\xd6\xb7\x1c\x4a\x87\xc9\xb2\x2d\xaa\xea\xf0\xdf\x5e\xbd\x48\x15\x4f\x80\xb2\x94\x1e\x16\x0f\x98\x21\x60\x6c\x82\xda\xd6\x11\x89\x0e\x34\x02\x18\x7c\x64\x57\x2a\x81\x9e\x61\x13\xc6\xaa\xbc\xf0\xcc\xf7\x6e\x1c\x9f\x42\x67\x36\xb1\xc5\xc2\xbf\x6e\x4d\xbe\x64\x81\x07\x9d\x9b\x15\xb6\x38\x5f\xd2\xc3\xab\xfd\x6e\x57\x3a\x3e\x94\x18\x45\x66\x03\xf5\x0e\x14\x1f\xf2\x93\x34\x1f\x47\xea\x0a\x1c\x72\x78\xcf\xfc\xb1\x5a\x5d\x5d\x00\xb1\x9b\x18\x01\x3e\x6e\xb7\x9c\x39\x35\xa8\x6d\x63\x21\x67\x9c\xee\xaf\x7e\x74\x52\xbe\xfc\x3e\xec\x62\x03\x70\x3a\x2b\xbb\x25\x72\x6e\xd6\x9c\xe8\x4f\x2e\x7e\x4a\x2e\xa0\x1a\xc8\xb6\x4b\x94\x6f\x7a\xfa\x73\xd3\x4a\x12\x0c\xd0\xdb\xec\x13\xfc\xe6\x64\xad\x41\x42\x8d\x5e\xcc\xc4\x30\x31\x33\x69\x7b\xfa\x40\xcf\xee\x02\xb3\x45\x78\x1d\x37\x8c\x19\xab\x3d\x27\xe4\x9a\xc4\xb3\x62\xd0\xe4\x9e\xbd\xa3\x14\x5c\x57\xb9\x8c\x85\xcd\x68\xf8\xa7\x03\x9a\x09\x5f\x59\x2c\x4e\x96\x2f\x1e\xaf\xff\x07\xdd\x9f\xfd\xd6\xa7\x74\x89\x1a\xb7\x2a\x3d\xce\x16\xed\x92\x87\x6b\xde\x9c\xf6\x79\xf0\x31\xf7\x69\xa8\x0e\x92\x08\x2f\xad\x1b\xa2\x1b\x02\xa5\x43\xd5\x7f\x6d\x91\x07\xa4\x6b\x96\xa0\xe7\xf6\xe7\x3f\x5b\x52\xe4\x04\x2c\x27\xd5\x93\xdc\xfa\xbc\x58\x68\x02\x27\xae\x2c\xc4\x1e\xf2\x0b\x5a\xb4\x10\xdf\x2b\x08\x19\x31\xd1\x35\xf7\xde\x18\x05\x55\x5f\xc7\xcc\xe6\x9a\x78\x85\x62\xf8\xa5\x89\x2d\x12\xac\xab\x14\x37\xb9\xb5\x9a\x38\x40\xdd\x46\x26\xf1\x6c\x54\x17\xbd\x13\xbd\xba\x4d\x41\x49\x78\x06\x23\xa5\xa4\xc0\xcd\x9e\xd4\x18\x9a\x25\x64\x31\x44\x5c\xae\xc0\x01\x7f\xe3\xf3\x25\xbd\x42\x62\xae\xdc\x81\x64\x6e\xf0\x2f\xd5\xce\xb7\x34\xbe\x88\x4d\x4f\xb6\x69\xca\xf1\xb1\x78\x2f\x8e\xb5\x34\x0e\xdc\xa9\xa8\x63\x34\x88\x6b\xc6\x9e\x90\x8f\x8a\x39\xbc\x67\x05\xbe\xcf\x6d\x68\x73\x1b\x37\x48\xaa\x54\x99\xda\x36\x6d\xa8\x12\x9f\x2f\x1f\xd1\x24\x98\x68\x0d\xdb\x0e\x72\x53\x0a\x47\xd6\x64\x9d\xd2\xea\xd1\x3a\xe5\x94\x47\x88\xe0\xd7\x9f\x1d\xab\xc6\x18\xce\x6d\x54\x52\xfd\xf8\x7a\x8c\x6f\x02\x34\x23\x6e\xb6\xee\xf7\x47\x68\x33\x02\xec\xa4\xc4\x6d\xf2\x8b\x4a\xa2\x4e\x99\x39\x7d\x46\x17\x4c\x94\x3e\xa8\x45\x4b\x13\x97\x84\xfc\x5c\xe6\x27\x47\xd2\x3f\x0d\xd4\xc3\x40\x91\x53\xd4\x46\x1f\x5c\xa3\x5b\x85\x83\x35\x13\xff\xd7\xdb\x76\x89\x65\x49\xac\x84\x1f\x3d\xc6\x93\xc7\x9b\xf4\xd8\xbc\xc4\x40\x39\xf7\x89\x1e\xed\x82\xd1\xc0\x27\x6e\x8c\xb1\xbe\xee\x9d\x26\xc3\xb2\x3a\x36\x63\x19\xdf\xc7\x85\xc9\xbe\x4f\x6b\x04\xac\x48\x73\x4f\x3d\xae\x57\x96\xa0\xdf\x2a\x00\x03\xeb\xf7\xa6\xec\xb1\xaf\x06\x7b\xec\x6f\x3c\x3f\x44\xc2\xc2\xa3\x7e\xe9\x5e\x5e\x2f\xdc\x4c\xeb\x04\x2a\xe8\x70\xff\x9d\x02\x1a\xc9\x19\x26\xbf\x9f\x3a\x49\x6b\x17\x3c\xec\x60\x97\x50\x2f\x3d\xf9\xce\x7f\x72\x90\x22\x6c\xd9\x47\xfa\x94\x3e\x61\xea\xc6\xc4\xcc\x03\x70\xe7\xdb\x27\x28\xa0\x44\x18\x22\x8a\xfa\xed\x0f\x2f\x25\x68\x11\x97\xc6\xfc\x85\x8f\x3f\x98\xbe\x29\xc8\xb7\x6c\xec\x63\xa1\x4a\x90\x79\x57\xb1\x1d\x88\x27\xd6\xb0\x6c\xfa\xd3\x42\xdd\xe7\x11\xac\x22\x70\x22\x35\xf3\x8b\xc5\xba\x5f\x22\x50\x46\xf8\x68\xcb\x32\x15\x93\x55\xd6\xcb\x25\x74\x7f\xd6\x93\x1e\xf8\x79\xc8\x25\x55\x62\xf6\x61\x70\x08\x8d\xaf\xc1\x9f\x07\x29\x3a\x55\x34\xf0\xad\x06\x06\x5d\xb7\xe8\x71\xbe\x78\x5b\xab\x56\xf1\xd6\x85\xae\x4b\xe6\x17\x9b\x46\xa7\xc7\xae\x01\xe7\x26\x45\xd1\xe2\x9d\x67\x47\xaa\xd3\x55\x10\xd6\x2a\x14\xc3\x6b\xee\x9f\xa2\x1d\x6d\xe0\x45\x0e\x88\x45\x7a\x5f\x1f\x1f\x35\x2e\xa3\x1e\xae\x59\x4d\x17\xeb\xbe\x73\xaa\x5e\x4f\x09\x83\x04\x78\x38\xab\x53\x2f\x9e\xa2\xe6\x05\x0b\x2b\x98\xcc\x7b\x07\x75\x11\x74\x5f\x18\xe4\xf0\x36\xd0\x59\x2b\xe7\x40\x33\xe6\x4d\x9f\x09\xe6\xeb\xf9\xbe\x07\x79\xc9\x58\xa2\x15\xd0\x3b\xca\x7d\x52\x31\xb4\xf5\x31\xb0\x60\xc3\x7d\x0a\x24\x2a\x2a\x0d\x85\xc0\x45\xe6\xdf\xb4\x7d\xb3\x4d\xa3\x8c\x22\x14\x2a\xfe\xa8\xa8\xb0\x96\x51\x60\x43\x35\x7d\xe7\xbd\xf2\xc8\x17\x0a\xc5\x30\xbf\x25\x25\xe1\x56\xc5\x3e\xe6\x1b\xf6\x41\xae\x02\xde\xd4\x32\x4c\x9b\xce\xac\x0b\x7c\x0b\x5c\x07\x60\x72\x39\x65\x7c\xd3\xc5\x2d\x93\x58\xe9\x2a\xb3\x48\xab\x55\x4a\x01\xb3\xb1\xc7\xb1\xfc\xd1\x7f\x1f\x79\x57\x2c\xb2\x16\x15\xc5\x5c\xa1\x38\xbf\x29\xaf\xf0\x64\xc0\x73\x8e\xef\x38\x5f\xd2\xa0\x1c\x36\xec\xd3\x20\x2d\x88\x63\x3d\x63\xba\x26\x1c\x83\x48\x22\x1b\xf2\x93\xe7\x2e\x96\x30\x0f\xbd\x86\xbb\xad\x69\x9f\x0b\x50\x1b\x11\x9c\x26\xdc\x3d\x42\x44\x0a\x5b\x51\xd8\xca\x6c\x7b\x29\x7d\xa0\x11\x13\x37\x33\x9c\xa4\xed\x4a\x4c\xec\x50\xd7\xf3\x19\x10\x25\x79\x4f\x94\xfd\xd2\x5b\x57\x68\x59\xd0\x33\x68\x63\x00\xc1\xc9\xfc\x45\x8f\xa4\x7f\x5a\x50\x8d\x12\x2a\x41\x42\x93\x02\xd2\xcb\x88\x61\xf2\x99\xf9\xbd\x06\x05\xbc\x53\xf8\xe3\x17\xf9\x58\x66\xd1\xf2\x6b\xae\xbd\x71\xd1\x2d\xab\x56\xc4\x97\x6a\x6a\x4f\xb2\xea\xa7\x01\x3c\x9e\x19\xe6\x14\x7e\x32\x03\x86\x51\x60\x30\xe4\x7b\x05\x3f\x60\x2e\x4e\x7b\xbc\x43\xf0\xfd\x5f\x2e\x0c\x55\x58\x32\x00\xa2\x3f\x6f\xdd\x26\x5b\x4a\x18\x20\x71\xec\x61\xf4\x95\xff\x73\x61\x22\x41\x9c\xe2\xfa\xbe\x9d\x2e\xdb\xa2\xbf\xcf\xa7\x92\x57\xd8\x2d\x0d\x3a\x20\x35\x66\xb7\xec\x76\x2b\x8c\x60\x50\x4a\x7d\x62\xb2\xa6\x0e\x86\x7d\x0b\x7b\x66\xca\x94\xfc\xca\x5d\xe9\xd3\x1c\xb4\xc3\xbc\x4f\xc4\xdb\xbf\x9e\x6e\x55\x14\x3b\xca\x81\x5d\x8e\x47\x69\xb9\xec\x23\x8a\xb7\x86\x1d\xdd\x31\xcf\x22\x94\x83\xf3\x72\x1f\x9f\xcb\x7b\xca\x6b\x19\x71\xb8\xda\x96\xf4\xf0\xfa\xd6\xd6\x09\x5a\x43\xe3\x02\xc2\x0b\x83\xce\x40\xec\x95\xfe\x86\xd6\xf5\x20\x62\x4b\xbc\x66\xee\xad\x15\x97\xa4\x87\xca\xcd\x8e\x73\x0f\x2b\x51\x32\xea\x99\xb9\xb0\x72\x76\x50\x0b\x7f\xe4\xd7\x63\xca\x2a\x52\x23\x68\xc9\x42\x9e\xfb\xca\x36\x12\x34\xb4\xcc\xba\x47\x2f\x56\x70\x8c\x14\x2c\x20\xe4\x98\xed\xb6\x47\xd2\xef\xc8\xa7\x54\xf4\xb6\x0f\x5f\xad\x03\x2b\x2a\x42\xbf\x5b\xb4\xc9\x57\xbc\x3c\x4a\x39\x10\xdd\x08\xdc\x3b\xe1\x1c\xbd\xdd\x92\x7e\x34\x86\x45\xdc\xc4\x82\x36\xfe\xcd\x9b\x5f\x94\xd1\x79\xde\xac\x39\xd3\x67\x72\x4f\xc2\xf9\x83\x64\x7c\x6d\x10\xdb\x26\xd0\xf1\x76\x3e\x9c\x5c\x72\xa4\xf7\x54\xe1\x37\x5e\x54\x66\xac\x30\x16\x86\xb8\xf2\xb4\xc6\x0a\x2d\xc3\x16\x3a\x16\x71\x79\x7f\xbb\xe6\x5e\x60\x3a\xc4\x4f\xac\x48\xfe\xfe\x9c\x36\x2d\x83\x15\x9c\xd8\xd9\x8c\x79\x52\xb6\x58\xcc\x99\xd9\xde\x09\xb3\xfd\x3f\x89\x42\x7e\x31\xc3\x0d\x65\xfe\xf7\x13\x8d\x71\x11\x3b\x5c\x89\xad\xa5\x2e\xcb\x6b\x50\xc7\x09\x5c\xe2\x39\x09\xda\xe2\xab\xa6\x56\xa6\xda\x01\xa9\x63\xe6\xab\xf9\x39\x73\xd9\xc1\xf4\xb7\xa9\x46\x4f\xce\xad\x40\x4e\x0b\x3f\x77\xd7\xfb\xe2\xa0\x30\xa5\x50\x0c\x07\x6b\xf6\xbf\xa5\x28\xe0\x26\x1a\x86\x73\x4f\x69\x88\x31\x1a\xc4\x84\xf7\xf0\xb2\x77\x15\xce\x0e\xf1\x90\x27\xf8\xb2\xd9\x25\x8f\x29\x54\x34\x5c\xc7\x08\xc4\x39\xb3\xdf\x3c\xa8\x0c\x38\x05\xd3\x1c\x4f\x6e\x55\x31\x11\x94\xf9\x28\x5e\x47\x4e\xbe\x53\x55\xe0\xea\x0e\xea\xbc\xb3\xcf\x7f\x68\xb7\x56\xd2\x32\xc0\xa3\x24\x00\xb3\xfc\xc2\xd7\x14\x5b\x69\x1f\x03\x66\xd1\xe2\x7e\xb5\xbd\x8f\x27\x8d\xaf\x05\x03\xd6\xcc\xd6\xb4\xaa\x32\xdc\x91\xf9\x2d\xfa\x5b\x60\x8c\x96\x28\x4b\x08\xf0\xb9\x6b\x16\x69\xca\x35\x08\x9c\x44\xa3\x6f\x39\xc9\x1e\x11\xff\xa9\x5c\x15\x84\x53\xcf\xbf\x50\x26\x3b\xa8\x04\xff\xe3\xbc\xb6\x01\xdf\xd1\xf4\xa8\x91\x3d\x20\xb4\x80\x03\x56\x55\xcc\xfa\xc3\xee\x89\xba\x55\x2b\x76\x92\x7e\x33\xfc\xeb\x29\x65\xfb\x14\xf8\x31\xfb\x2d\x7b\x72\x9b\xb2\x5d\x88\x82\x06\x1f\x64\xf5\x67\xe6\x2f\xd6\x5a\x5b\x1f\x23\x87\xe7\xfb\xb1\x07\xe4\xcf\xaa\x63\x97\xd8\x88\x53\x43\x8f\xd8\xf2\x9a\xc2\x59\x80\xa7\xb8\x77\xdd\x84\x81\x92\x5c\x7b\x2a\x42\x3e\x76\xbe\xbe\x5c\x27\x89\x09\x6c\x6e\x48\xab\x04\x6e\xcc\x9d\xd3\x34\x26\x09\xee\x1c\xaa\x4e\x9e\xa3\x4f\xf2\xd4\xa4\xa4\x92\x66\x8a\xf2\xa1\xab\xc9\x9d\x61\xdb\xa6\x1a\x68\xf3\x6a\xad\x7c\xa8\x20\x07\xc7\x1d\xe7\x2b\x9b\xe5\x65\x76\x88\xc7\x51\x59\xf9\x4f\x4c\x8f\x85\xe4\x18\x31\xf8\xf1\xcc\x7a\x27\x34\x6c\x47\x61\x66\x67\x8c\xef\xfb\xc0\x60\xc5\x43\xb8\x87\xba\x20\xc3\x08\xb9\xf1\xbc\xd5\x52\xb0\x5b\x28\x04\x44\x47\x53\xaf\x55\x6f\x19\x24\x6f\x50\x85\xa1\x5a\x8d\x53\x0d\xfe\x6b\xbb\x92\x0f\xed\x80\x17\x4c\x1f\x2d\x29\x8c\x59\x46\x1b\x5c\x8a\x3d\x3f\x7d\x65\x32\x61\x64\xb8\xc6\x37\x6b\xa1\x75\x5b\xb3\x82\x99\xa8\xaa\xf2\x33\x56\x8d\x8e\x2b\x73\x56\xf0\x68\xc1\x03\x2b\x35\x3e\xc3\xbd\x6b\xe5\x25\xca\x22\x8a\x0d\xf0\x89\xbf\xcd\x81\x9a\x85\x5b\xa3\x63\x8c\x1c\xa5\x7e\x1a\xa9\x88\x94\x95\x29\x73\xa8\x07\x33\xa8\x23\xcf\xa5\x3f\x4a\x50\xf3\x70\x6c\x4e\xf3\xf8\xdd\xc9\xfa\xc4\x21\xd2\x3e\x24\xbc\xf9\xae\x58\x52\x3c\xa8\x58\xdc\xe8\xe8\xda\xc5\x5a\x49\x87\x98\x24\x7a\xe4\x3f\xda\xa5\x35\xd3\xc8\xa9\x21\x3e\x45\xe3\xe8\x1d\x64\xa9\xe4\x45\x0b\xb1\x01\xc8\x8b\x3f\xd6\x00\xad\x09\xcb\x4c\x2c\x24\x97\xad\xd3\x27\x75\x06\xaa\x45\x55\xae\xc0\x31\xec\x7e\x46\x01\x09\x07\xa6\xd9\x04\xe1\xc9\x9e\x78\x37\x7d\x35\x1a\x8c\xfa\x38\x66\xe3\x14\x8f\x8c\x89\xff\x7c\x20\xe1\xdd\xba\xb4\x34\x05\xf5\x83\x0b\xea\x8a\xc0\x64\x94\x3b\x2c\x2e\xfd\x14\xfe\xee\xa1\xf4\x2f\x59\x1f\xd0\x44\xab\x31\x7f\xd1\x51\x95\x21\x6f\x13\x9f\xbb\x0e\x85\x9d\x9a\x61\xa4\x41\x7c\xd2\x87\x5d\x70\x9f\xe5\x6d\xe4\xd7\x4f\x70\x76\xd4\xe2\x80\xfb\x74\x7e\x74\x50\x52\x73\xb2\x12\x05\xbd\x5d\x5b\xb6\x7d\xdd\xc8\xa0\x25\xa5\xe0\x78\x8c\xc9\xdf\xdb\xd9\xd1\x51\x70\x30\x07\x03\x67\x47\xef\xe4\xb3\x80\x9b\x90\x57\x85\x4c\x71\xf4\xb5\xa4\xc5\x06\x19\xcf\xeb\x37\x68\x9c\x35\x40\x81\x88\xfd\x74\xfa\x6c\xe6\x76\x29\x60\x68\x86\xb8\x47\x5d\xe6\xc2\x13\xda\xa4\x82\x67\x2a\xf1\xd2\xc8\x5e\x71\xe5\xa3\x96\x85\x6b\x3f\xde\x7c\x62\x98\x42\x48\xe1\xf9\x6b\xeb\x33\xda\x60\xce\x17\x43\xb9\x3e\x71\xe3\xe6\x1d\x4e\x1f\x73\xdf\x42\xb1\xa7\x6f\xb6\x7d\x3c\x1f\x44\xcc\x68\xef\x8c\x3e\x50\xed\xc9\x74\x38\x66\xd4\xe3\xe3\xf7\xf0\x90\xad\x4b\xb4\x3a\x89\x61\x6e\xfe\xda\x2d\xe9\x16\xb9\x17\xb9\x55\x8c\x39\x2f\x5c\x7f\x12\xbf\xd8\xa9\xa9\x7f\x63\xe6\x45\xf7\x3d\xf1\x12\xca\x7f\x6e\xe5\x30\x51\x8b\xbb\xd4\x88\xed\xfc\x36\x1c\x96\xef\x94\x44\x1d\x07\x3d\x74\x89\xd2\xcf\xda\x58\xd4\x29\x92\x82\x91\x99\xa8\x00\x98\x0d\xe2\xae\x0f\xb0\x81\x5d\x38\x31\xf9\xab\xc7\x09\x5b\x7d\x8b\x06\xe0\xf3\x5d\xbb\x3a\xb9\xee\x98\xa8\xd3\xd0\x57\x4e\xc8\xc5\xc2\x4c\xc8\x4b\x73\x84\x7c\xd9\x4d\xc8\x45\x31\x67\xf9\xd3\x1b\xe5\xaf\x5a\x1f\xa8\x6b\xe3\xfc\xa7\xee\xd4\x51\x60\x86\x04\xf7\x64\x7f\xb2\x4b\x41\xb6\xe3\x3a\x76\x0b\x1e\x46\x1e\xef\x56\x7e\xba\x54\x1e\x4c\x07\x55\x3d\xe2\xd0\x3a\x18\xa4\x0c\x0f\x15\xa5\x93\x39\xed\x33\xc0\xd4\xe9\xc5\x74\xcf\xea\x39\xc4\xb7\xd2\x53\xbb\x3b\x4e\x25\x53\x58\xdc\x8b\x64\x48\x7b\xb1\xd4\x3c\x11\x4b\xd6\xd5\x19\xfb\x94\x4c\x8b\x25\x64\x58\x9e\x85\x64\x6b\x1a\x1e\x58\xd3\x96\x1e\xc3\x44\xfd\x7a\x8c\xa1\x18\x7e\x44\x56\x36\x1d\xed\xf3\x66\xcd\x8c\xbe\xf1\xdf\x5f\x54\x24\xe4\xa3\x33\xfd\xda\xb2\x16\x35\x9f\xb3\x78\x48\x9d\x7d\x7f\x5b\x3a\xa8\x35\x28\xb3\x4d\xa1\x0a\x1d\xb5\x96\x95\xfd\xe9\x44\xeb\x21\x86\x2c\x8d\x95\x34\xe4\x36\xf9\xa8\xaa\x2e\x85\x6f\xb4\xae\x55\x11\x70\x0d\x3c\x1f\x4a\xae\xf0\x8b\x77\xa5\x31\x8c\x93\xd7\x1b\x9c\xf6\x33\x6e\xaa\x32\x24\xb1\x91\x85\xc1\x53\x34\xfc\xed\x23\x0a\xff\xcb\x22\xb6\x59\x70\xa8\x8d\x93\x02\x74\x42\x56\xce\xf1\x31\x82\x2d\x5c\xc6\x9b\x20\xff\xcc\x6d\x07\xb4\x4a\x7e\x8c\x86\xcf\x0c\x5c\xa9\x52\xfe\xc3\x21\xda\xe6\x16\xc4\x4c\xd2\xe6\xd7\xb9\x0f\x1c\xbe\x58\xcd\xbd\x15\xa6\x66\xbe\xdc\x43\xda\x80\x9d\x96\xea\x89\x00\x2e\x2c\xae\x72\x63\x2e\x56\xca\x1a\x17\xf9\x54\x15\xef\x1a\x3c\xa9\x49\xa4\x0c\x40\x87\x1e\x2f\xf7\xbe\x7d\x28\x59\xcc\xf4\x36\x8b\x1b\x66\xbf\xfa\xd6\x48\x15\x31\xc1\x20\xad\x17\xfb\x73\x9f\xd3\xa4\x59\x1d\xe2\x12\x78\x70\xb1\x93\x8d\xd3\x13\xef\xee\xb0\x21\x1c\xcd\x7f\xa5\xf1\x72\x00\x6a\x09\x6d\xb1\x58\x46\x4d\x5a\x93\x7e\x90\x75\xcc\x7a\xe3\xf1\xe5\x05\xa7\x2f\x14\xed\x1b\xb6\x61\xa5\x94\xdd\xb7\x4e\x31\xf9\xe5\x82\x37\x62\x3c\xfa\xce\xaa\x8b\x95\x96\xa2\x66\x53\x07\x89\x5d\x75\x74\xe6\x16\x2d\x95\x34\xf7\x52\x37\x24\xc7\x2f\x95\xc6\x29\xb5\x3e\x62\xd4\x0c\x4a\x54\x91\xd4\xcf\x6d\xb9\x53\x18\x7e\xe2\x9a\x85\x98\xa9\xce\xe2\xff\x39\xab\x07\x87\x9a\xb2\x9f\xe8\xb9\x4b\x1f\x64\x83\xf0\xb7\x60\x83\x3e\xff\x0e\x7f\x48\x8b\xae\x4b\xa6\x2d\x99\x2f\x1f\xd3\xf6\x52\xae\x00\x41\xe6\x7e\xb5\x35\xb9\xfc\x15\x5b\x31\x7b\xec\xdf\x2e\x7c\x4b\x2d\x44\xb9\xb8\x4e\xe6\x5f\x17\xe9\x23\xaa\xe8\xe9\x60\xd1\x1f\x7e\xe7\xb8\x50\x6f\x64\x28\x3a\x0c\x70\x88\x6f\x53\xae\x88\xc1\x48\x54\x2b\x42\x76\x39\x79\x87\x96\x20\x03\xb7\x84\x6d\x7f\x00\x8c\x54\xf6\x97\x9a\xe0\x3a\x23\x86\x91\x16\xdc\x0c\x7f\xbb\x36\x4d\x3d\xa8\x45\x25\x58\x15\xe3\x9a\x47\xb0\xd8\x7f\x44\xcf\xe0\x87\x25\xad\x13\x08\x6c\x97\xf4\xa4\x6f\x4d\xde\xe8\xe0\x38\x81\x2e\x00\xc2\x95\x90\x05\x67\xe8\x87\xfb\x04\x1c\xcf\xe4\x2a\x86\x61\x65\x5d\xfa\x53\x55\xbb\xb1\xad\x13\x1f\xc7\x28\x37\xa8\xc2\x30\xf2\xd3\x70\x85\xee\xf4\x0d\xb2\x51\xe0\x02\x05\x4b\x54\x3d\x6d\xc7\x9b\xf1\x98\x81\x7a\x17\x8e\x9f\x55\xb9\x4a\xb6\x1d\x35\x9b\xd0\x07\x5d\xf9\xa0\xa6\x5f\x6e\x53\x2f\xde\xdc\x1e\xd0\x9c\x4d\x31\x62\xbe\xb5\x3e\x40\x55\xbe\x05\x09\x3f\xb5\x20\xa5\x37\x81\x0c\xbe\x9f\xca\xf6\x9d\x1e\xae\x54\xf7\xc8\xe4\x6d\xf0\x30\x4d\xc1\xc9\x22\x15\x0b\x27\x36\x8e\x87\xde\x68\xf2\x2c\x66\xd8\xc3\xae\xef\x71\xd4\x72\xee\xe6\x27\x9b\x4d\x58\x93\x85\x67\x66\xb1\x42\x6a\xa6\x86\x81\x84\x5f\x58\xb8\x7a\x9c\x72\x0f\x19\x18\xe1\xaa\x1a\x30\xdb\xb5\xdc\xc0\xb0\xa1\x1a\x70\xad\x7b\x52\x6b\xc2\x02\x66\x52\xc3\x9a\x76\xb5\x72\x2f\x2f\xef\x94\xc5\x94\x4b\xeb\xc2\xb2\x47\x45\xb7\x60\x04\xdd\x78\x6e\x6c\x8b\x2e\x1b\x4c\xca\x65\x17\x7b\xc2\xa3\x62\x5c\x8f\x52\x68\x60\x1b\x97\x58\xec\x2a\x77\x7a\xb1\x0e\xdb\x47\x95\xb8\xaa\xce\x2f\x9f\x2e\x5f\x02\x50\xf8\x59\xe0\x14\x8a\xe1\xf6\x27\x78\x35\x4b\x5d\x4e\x07\xff\xc2\xb3\x1a\xbc\xd4\xa6\x6e\x05\xf0\x64\x3c\xf0\xf9\xf3\x15\x7b\x7e\x0c\xa2\xcf\xd0\x1d\x6e\xb9\x93\x1f\xf1\x1b\x80\x02\x1d\x3f\xb8\x0f\x9e\x9f\xbe\x44\x2e\xf6\x91\xdb\x8b\xac\x20\x2d\x9a\xba\x69\xfe\x25\x7a\x88\xa6\x82\xc2\x25\xd6\x00\xb7\x08\x11\x84\x5a\xd4\x43\x02\xf2\x74\x83\x66\x60\x40\xc5\x07\x3c\xff\x0d\x8d\x9f\x85\x7d\x8b\x9a\xa2\x02\xca\xad\xd0\x14\xad\x51\x89\xd6\xb1\xc0\xbb\xff\x61\xfb\x04\xa5\xf6\x70\x41\xf4\xac\x59\x68\x7b\x99\x08\xaf\x88\x99\x38\x45\x39\xcd\xb6\xb5\x69\x54\x1b\x6a\x26\x34\xac\x2c\x7d\x58\xd5\x7b\x01\x09\x55\xce\x28\x7c\xa3\x6b\x8c\x02\x73\x01\x13\x73\x40\x1a\x8b\xf8\xf2\x95\x03\xe9\x27\x88\x98\x3f\x80\x28\x48\xee\x9f\xdb\xe4\x08\x08\x86\x14\xd0\x80\xc3\x2f\x38\xbc\x6c\x84\xc2\xac\x6b\x78\xbc\x31\xcf\xdf\xbc\x53\xef\x8c\xeb\x09\x75\xf4\xa6\xc9\xe9\xa0\xd6\xc0\x9e\x74\xe9\x8e\x0f\x34\x3d\x35\x56\x7b\xb7\x9c\xb5\x17\x2f\xbf\x2e\x18\x74\xa5\x52\x6c\xc6\xe0\x39\x41\x25\x6f\x1a\xf4\x1e\xbc\x67\x9c\x32\x0a\x06\x9f\xe6\x14\x2b\x2f\x9b\xbd\xbb\x55\x39\x78\x36\xa9\xf0\xca\x22\xfa\x4d\xbf\x7e\x23\x7d\x16\x66\xce\x84\x37\x1a\x1e\x7a\x76\x8c\x5e\xfc\x13\x9b\x06\x02\x57\x9b\x3b\x6f\x93\x86\xc9\xaa\x61\x86\xc4\x26\x38\xbf\x7c\x89\x3e\x07\x64\x46\xa2\x84\xf6\xea\x08\xcd\xd0\x05\x55\x01\xad\x2f\x15\xc0\x32\xbb\x34\xfd\x73\x98\x9f\xf2\x31\x62\xdf\xb8\x11\x6a\x11\xc4\x37\xa5\xe1\xee\x75\x4d\xac\x43\x92\x88\xf2\xe6\xc7\x9d\x3f\x46\xaf\x9a\xb9\xda\x3e\x8f\xeb\x97\xef\x97\x4d\x31\x4c\x8c\x73\xce\x5d\x4a\x1d\xc9\x07\xfe\x51\x9c\x2b\xb4\x28\x8b\xcc\xa0\xe4\xf9\xc4\x0f\x78\x2d\x12\xfe\xe8\x45\x39\x09\x9a\xd7\x51\xe0\xaa\x8f\xb9\x0d\x5b\x79\xcb\x36\x67\x26\x87\xcd\x3c\x24\xd3\x4f\x93\x4e\x54\xae\xfb\x05\x65\x10\x89\x7a\x55\xb4\xc1\x53\x8a\x31\x86\x07\xca\xd3\x0e\x10\x03\xff\xd0\xa3\xcc\x23\x49\x05\x06\xe8\xd9\xe7\x07\x5f\xa1\x89\x3c\x4d\x93\x17\x4d\x65\xdb\xcd\xe7\x2a\xd5\x85\xc5\x7c\x5f\x5f\xa7\x4d\x99\xbe\x75\x95\x32\x48\x0b\xe0\xd1\x5c\xde\x9e\xb0\xc6\x9d\xf4\x15\xce\x75\x3d\xa9\x2d\xa6\x3d\x82\x14\x84\xc7\xfd\x2f\x5d\xa1\x55\x18\x26\x72\x07\x82\x39\xe5\xbc\xa7\x26\x6b\x97\x23\x88\xba\x5b\x6f\x5a\x53\x44\xc9\x9d\x19\xaa\x48\xb6\x50\xa3\xca\x05\xa8\x8e\x2d\x4b\x9f\x3f\x8b\xda\x89\x1c\x5d\xf6\x9b\xdb\xd4\x13\x24\xfc\x2b\xc2\xc9\x47\x34\xb2\x24\x2a\x21\xb7\x42\x4c\x34\x0d\x1a\xe3\xf8\xde\x0e\x5a\x26\x71\x54\x33\xa6\x77\xcc\xea\x98\x3e\xaf\xa3\xa3\x69\x00\xf9\x81\xe7\x93\xe9\x03\xe8\xa7\xe4\x5e\x39\x29\x55\x3f\x66\x4f\x2f\x14\xc3\xbf\x0d\x4e\x6a\x3c\xd6\xab\x9a\xaa\x1f\x1f\x2c\x9b\x67\x27\x6a\x5e\x46\xad\x49\x3f\xd5\x3a\x31\x7c\xe2\x24\x35\x87\x7d\x94\xd7\x41\x36\x0a\x2a\x16\x24\xa1\x1b\x77\xca\xa3\x58\x26\x3d\xfc\x7c\x76\xbd\x98\x86\x2d\xcc\xe8\xea\x28\xf4\x02\x68\xab\x86\x59\xc1\x46\xb5\x58\xb9\x62\xf4\x11\xed\x25\x02\x70\x52\x5c\xa5\xf0\xad\xdd\xb1\xa3\x61\x29\x28\x97\xf9\x9e\x6b\xdc\x76\x59\x88\x98\xa8\xce\x77\x4c\x99\xbb\xf7\x8d\x52\x46\xc2\xcc\x43\xc4\xb6\xf9\xf6\xe9\x98\x66\x92\x13\xbd\x1b\xa1\x4a\x37\xe3\x5c\xd2\xda\xbb\x1e\x55\x8a\xef\xe5\x1a\x66\x98\x70\x92\xb8\x48\xea\x4f\x75\xeb\x92\xd8\x75\x82\x7d\xc1\xc2\xb8\x7e\xe5\x75\xe1\xb3\xcf\xa4\xeb\x9e\x6e\x1a\x30\xae\x0f\x0d\x95\x72\xb8\x48\x11\x61\x6b\x60\x54\xa3\x92\x6c\x38\x7d\x21\x7f\xbe\xab\xa8\xb0\x32\xce\x53\x81\x76\xb5\x11\x0c\xf9\x29\x13\x5b\xb5\x3f\xdd\xad\xcd\x6e\x30\x72\x62\x8c\x74\xee\x09\xd9\xdb\xda\x04\x04\xe5\x32\x2f\x6e\x94\xef\x49\x21\x85\xec\x4d\xb7\x05\x53\x98\x60\xfb\x64\xdf\xd5\x82\x2a\xb7\x64\x17\x13\xf1\x35\xe6\xc5\x7a\x15\xe9\x26\x75\x5f\x7e\x50\xe7\x25\x22\x45\x7a\x01\x9f\x68\xe9\xf7\xe8\x33\xed\x53\xb4\x88\x6b\x53\xa7\x44\x07\xb8\x9e\xe1\x1e\xa1\x92\x08\x2c\xe4\x28\x53\xdc\xb3\x6e\x8c\x22\x1c\xd3\x94\x9c\xbe\xf6\x94\xac\x9d\x18\x76\x84\x0e\x78\x7f\xe6\x3c\x8d\x07\x86\x4d\x62\xf0\xf7\xd1\x9f\xbb\xf6\xb4\x58\x69\xf8\x0c\x63\x45\x2d\xf3\x7f\x3a\x53\xe9\x38\xce\x17\x1f\xef\x91\xf1\xd1\x0a\x5c\x8f\x08\x57\xfa\xdc\xe1\xf1\x32\x3c\x34\x90\x30\xba\x09\x3f\x72\x5a\x87\x40\x57\x2a\x51\xe9\x40\xdd\x98\x19\xfa\x5f\xd3\xd3\xc0\x16\x93\x78\x3e\x23\xa5\xc0\xc7\xe6\xb4\x82\x4b\x5d\x5c\x88\xde\xc8\xc7\x5f\x68\xd5\x62\x86\x51\x9d\xd6\x80\x94\x73\xfb\x5e\x29\x9e\x8b\x5d\x93\x36\x1c\x8e\xec\x4a\xc7\xd7\x8f\x4d\xd5\xf4\x7a\x92\x99\xf6\x07\x62\xdc\x32\xec\x0e\xe1\x64\xfc\x55\xd8\x34\x95\x03\x9f\xc0\x88\xf6\x1f\x17\xcb\xaa\x88\x1b\xff\x43\x56\xe8\xcf\xea\x3e\xf5\x40\x43\x8b\x21\x0f\xf3\x0f\x8c\x52\x6b\x50\x52\x63\x94\x5b\xc6\x67\x5e\xef\x96\xaa\xcb\x0e\x40\xb4\x37\x3e\xac\x1b\x42\xb8\xa6\x70\x26\xdf\x7c\x34\xfd\x3b\x7c\x8b\x01\x50\x01\x3e\xea\x85\x9a\x11\x89\x23\xe6\x6f\x62\x5a\x7a\xcb\x61\x0d\xf4\x63\xc7\xf6\x18\xb9\x19\x59\xdd\x1d\xdf\xe5\xf6\x7e\x92\x3e\x7d\xd7\x33\xba\x29\x0f\xeb\x1d\x68\x90\x9b\x37\xb4\x0e\xdb\x42\xae\xc9\xf7\x55\x17\xbc\x96\x06\xdd\x3a\xd4\xf5\x19\x16\x0a\x79\xfa\xd5\xf8\xc2\xee\x84\x92\x60\xa3\xa6\x21\x69\xe6\xeb\x07\x74\x29\x73\x26\x94\x54\x73\x7f\xec\xb8\x4a\xfb\x32\x42\xcf\x80\xaf\xc1\xf5\x5f\x74\xea\x8c\x0c\xa4\x9e\x85\x84\xa4\xe1\x47\xc6\x35\x79\x71\xe1\xd8\x60\xe5\xd6\x3d\xfa\x58\xcd\x41\x55\x8d\xdb\x61\x9c\x12\xe1\x8a\xba\x95\x02\x0b\x5c\xe1\x10\x98\x9d\xbe\x41\x86\x1f\x83\x3a\x25\x00\x50\xf5\x3c\x2b\xef\x17\x9d\xe2\x62\x02\xde\x1c\x79\x67\xaf\xb2\x8b\x45\x15\xce\xa5\xeb\x3f\xad\x29\xed\x62\xe2\x1a\x88\x71\xf1\x7d\xfe\x9c\x3f\x35\x5e\xfe\xbb\x2a\x2f\xa2\xfa\x73\x1f\xbe\x4a\x6b\xb4\x02\x56\xc7\xbd\xc2\x67\x65\xff\x5a\x45\x38\x29\xa0\x6e\xa5\xcf\xa2\x60\x5e\x79\xd7\x6e\xcd\x68\x06\x57\x84\x8f\x7e\xb1\x3f\xf7\x31\x31\xfe\xf7\x89\x30\x19\xf8\x79\xcb\x70\x71\xc0\x3d\x1f\x05\x1c\xe5\x1d\x4e\x5c\xa8\x38\xe7\x98\x75\x12\x45\x2f\x01\xa5\xff\xc7\x43\x7a\x63\xec\x91\x8a\xf8\x26\x30\x93\x59\xbd\x9f\x0f\xba\xd7\x20\x03\x71\x6f\xa3\x62\x7f\xf6\xd0\x56\xa9\x1b\x00\x52\x48\x22\x4a\x2d\x3a\xd3\xc4\xc5\x8b\x49\x0f\x99\xbc\xc6\x47\x17\xc4\x0b\x88\x7a\x86\x26\x5f\x62\x11\x67\x1a\xf4\x9f\x99\xcf\x9f\x13\x20\x19\xe4\x23\xcf\x67\xb4\x66\x01\xb4\xb9\x25\xfd\x06\xe6\x74\xf1\x81\x6c\x94\x51\x45\x3a\xff\xc5\x98\xa4\x5c\x2b\x05\xb6\xba\x61\xcd\x4e\x1b\xa7\xc8\x9a\xd1\x40\xe1\x90\x67\x46\xdf\x75\xa9\x96\x6e\xe3\xd6\x2a\xbe\xc4\x61\xdf\x63\xaa\x8b\x0b\xab\x73\xe9\xe6\xcc\x0b\x0f\x0a\xad\xff\x3a\x12\x74\xf8\x13\x0b\x74\x31\x4f\x14\x9b\x61\x71\xde\xe8\xc2\x33\x1c\x88\x77\x13\x2d\x91\x01\xe4\x53\x1f\x5c\x31\x5c\x92\xa4\x13\x71\xf2\xdb\x06\xe9\xc6\xa4\xb4\xcc\x29\x66\x31\xd5\xf3\x27\x65\xfe\x49\x3e\x1c\xbd\x7e\x2e\x45\x7d\xd9\x26\x05\x6e\x0b\x38\xd4\x82\x4f\xe3\xff\x57\xec\xcf\x8e\x5f\xce\xab\x1b\x93\x78\x18\x09\xfd\xf1\x15\xfb\x85\x92\x14\xf5\x49\x3d\x11\x58\xbc\xaf\x45\xde\x13\x2b\x21\x2d\xe4\xaa\xbb\x86\x8b\x1e\xb5\x86\x98\xcf\xad\x75\xc3\xbb\xcf\xd7\xea\x9d\x6a\xbb\xf0\xdb\xf9\xd4\x46\xad\x4c\xc5\x76\x2d\xd9\x35\x6e\xef\x51\xec\xef\x19\x24\x47\xf1\x5b\xc2\xba\x10\x09\xa2\x46\x10\x1b\x20\x14\xfb\xb3\x1f\xe9\x92\xe9\xc0\xa2\x0e\xb6\x91\x0b\xc5\xf0\x25\x67\x92\x07\x58\x4e\x10\x94\xb9\xb5\x0b\x04\x77\x96\x12\x2e\x42\x73\x95\xa6\xdb\x41\x3c\x2f\x90\xda\x2c\x99\xfb\xee\xbd\x48\x6d\xc1\xa3\x7f\x71\xc1\xaa\x36\xa5\x6d\x26\x36\xf2\xa3\xe6\x94\x9b\xe2\xe6\xdb\x96\x89\x61\x25\x75\x4d\xec\xc0\x43\xeb\x7a\x51\x57\x02\xf7\x13\xbf\xd7\xec\x90\xb9\x3a\x8a\x82\xab\x9d\x26\xa6\x00\xb9\xbe\x57\x27\x68\xb7\xca\x25\x38\x0e\xd9\x71\xa1\x78\xd3\xba\xe4\xcb\xd6\x18\x8d\x8d\xed\xfe\x67\x99\xbe\xbc\x83\x5d\xba\xa8\x9d\x1e\x9b\xaa\x12\x5a\x0d\x1b\xd5\xa3\x2f\xb0\x74\x98\x54\x48\x47\x62\x91\x11\x2e\xd9\x92\xa4\x48\xaf\x4a\x0a\xc5\xf0\xed\x23\xb2\xb8\x69\x10\xdf\x32\x19\xe2\x0c\x99\xf6\x66\xa6\x7a\x8c\x7f\x3c\xaa\x0d\x0f\x40\xd2\x2d\x96\x7a\xdb\x25\xfd\xca\x7a\x91\x83\x88\x61\xe9\x1a\x6b\xfd\x99\x53\xcf\x6a\x18\xc3\xc0\x8f\x81\x57\x0b\x9e\x48\x8b\xa4\xcf\x12\x3a\x2d\x1f\xd7\x00\xf8\x5c\x16\x5d\x6c\xfd\xa2\x6f\xf6\xd1\xd3\xb2\xb7\xad\x20\x06\x0a\xae\x71\xfb\xe9\xce\xd2\x80\x68\x8c\xc0\xeb\x11\x18\x96\x63\x6f\xeb\xa2\x3e\x3d\xc4\x09\x1c\x1e\xd1\xf3\x73\xd6\xea\xde\x6d\x75\x6a\xd7\x71\xa2\xb7\x1e\x7e\x7c\x90\x5c\x78\xd7\x2c\x62\x53\x2f\x0a\x6f\xca\x6a\x23\xf3\x0d\x0d\x74\x54\xc7\x7e\x42\x9e\xec\xcf\xfe\xef\x86\x11\x71\x99\x85\xdc\xc4\x72\x35\xf3\xdb\x1e\x9d\x30\x42\x2a\xc8\x24\x98\x7f\xea\xb0\x7f\x8f\x7c\xe9\x0d\xca\x91\x29\xfd\x99\x4d\xaf\xc9\x53\xee\x20\x37\xea\xbf\x5a\x42\x0d\xf2\x8b\x1c\x62\x13\xc4\x5d\x3e\xc2\xef\x3f\xaa\xa8\xf4\xab\xec\x81\x8d\xe9\x8f\xbc\x3e\x40\x2c\x3a\xed\xfc\x2d\xff\x69\xab\x9a\xe9\x29\xe3\xff\xa6\xf5\x15\x85\x48\x19\x94\x18\x31\x38\x86\x29\x17\x9e\xd1\xc6\x21\x0c\xd6\xc6\x50\x63\xec\x14\xc6\x4d\x8b\xa2\x54\x9d\xcc\xdf\xdf\xd6\x84\x92\x6c\x69\x3c\x92\x79\xf4\x80\x14\x8a\x56\xbc\x05\x55\x83\x8b\xf6\x3d\xf2\x66\x57\x51\x05\x39\x8a\xc2\x55\xbe\x76\x75\xd3\x65\x32\xac\x44\xec\xfd\x99\x92\x26\xca\x56\x47\xc4\x56\x0d\x13\xde\xd0\x10\xbb\x65\xe2\x17\x04\xfd\x44\x34\x99\xe7\x5a\x9b\x04\xe5\x39\x0e\x38\x9e\xe7\x6c\x3a\x3f\x3d\xb2\xea\xc5\x42\xf0\xad\x55\xd9\xb9\x23\x83\xbb\x1b\x65\xbe\xf9\xbc\xcc\x54\x5e\xc0\xca\x82\x3c\x7c\xd5\xdb\xda\x04\x0e\x31\x83\xfa\xc4\x88\x6d\x65\xff\x58\xd6\xe6\x62\xef\x9f\xcb\x4b\x81\x0b\x37\x6b\x20\x6f\x52\x2e\x83\x7c\x9c\x78\xb9\xd7\xbd\xc5\x93\x40\x9d\x98\x98\x82\x97\x70\xf4\xa7\x3f\xe8\xe4\x7c\xb6\xe5\x00\x67\xa9\x2c\x4d\xff\xf0\x2b\xe3\xf5\xd7\xbf\x33\x5d\x2c\xbc\x56\xb3\x7b\xe3\x28\x9c\xfd\xf3\x09\x25\x0a\xd3\x0a\x67\xf8\x6a\x5e\x2a\x35\xd4\x6b\x58\xd8\xa8\x8a\x25\xd0\xed\x6f\x5f\x99\xce\xbf\x86\x45\x05\xa5\xa3\xd6\x0c\x7e\xb8\xfc\xb0\x2e\x6a\xc0\x08\x2e\x18\x36\x0a\x4c\x5d\x6a\xfd\xf6\x57\xd2\x62\x83\xdc\x3b\xa7\x50\x0c\x6f\x79\x2d\xc6\x6f\xfb\xd8\xf0\x85\x5d\x51\x66\xb9\x36\x57\x20\xcc\x26\x6e\xf2\x4a\x27\xbf\xa5\x35\x83\xa8\x12\xdf\x96\xec\xc7\xb4\xd8\x15\x6f\x36\x93\xcd\x68\xb6\x67\x8c\xae\x2a\x51\x63\x04\xc7\xfa\x35\xee\x89\x36\xa5\xd1\x26\x9e\x5a\x05\xe5\x2f\xb8\xab\x35\xfa\x17\x2b\x57\xad\x6c\xde\x73\x3d\xa6\xbb\x01\x36\xf8\x4a\xe6\xe7\xef\xca\x39\x1e\xf2\x3c\xe4\x63\x54\x09\x70\xbc\x4a\x1f\x7d\x44\x55\x79\x43\x25\x62\x83\x65\x73\x78\x74\xe9\x24\xad\x2b\x43\x65\x6f\x20\x67\xe4\x6d\x79\x2d\xdc\x11\x4f\x4a\xd5\xe4\xdd\xab\xe5\x66\x7a\x46\x7b\x27\x78\xa7\x4c\xef\x92\xb5\x42\x25\x40\x51\xbd\x8b\xf9\x5a\xef\x49\x2d\x10\x94\x6d\x6a\x54\xc5\x54\x60\xe3\x1b\x1c\x84\xb5\xb2\xb8\xfa\x9a\x15\x37\xac\x50\xb2\xe8\x90\xe7\x14\x91\x74\x1c\xf8\x9e\x61\xc1\xf0\xef\x33\x4b\xb4\xd1\x2d\x18\x31\x70\x9e\x8d\xb8\x36\x6c\x50\x3a\x37\xb9\x18\xc5\xf6\xf9\xee\x76\xde\xd4\x2f\x8e\xda\xf3\x5e\xd5\xc9\x6b\xb1\x44\x56\x70\x31\xac\x24\x90\xed\x1e\xa1\x21\x6d\xd5\xeb\x90\x3b\xf8\xa4\x5c\xec\x63\xb7\x42\x5c\xcc\xc3\xbf\x28\x12\x1b\x3d\x2a\x03\x1d\x3b\xc4\xad\x80\x28\xde\xf3\x3b\x35\x1f\xf3\x04\xa2\x05\x03\x42\x5f\x9a\x38\x94\x30\x8c\x03\x3e\x70\x64\xb4\x56\x98\x4b\x57\x94\x4f\x6f\x94\xa5\xa0\x1f\x08\x9d\x94\xfe\xfc\xec\xc7\x35\x18\x58\xa5\xb7\xe6\x2b\x26\x17\xdb\xed\x61\x0a\x54\xd9\xf7\x09\x3c\xdf\xa3\x3a\x7f\xc4\x01\x27\x95\xb8\x52\xb9\xa3\x9e\xfe\x1c\xdd\x81\xcb\xcd\xb5\x8b\xfd\x99\xb9\x23\x26\x28\xd8\x34\x93\x18\xc4\x6d\x1e\xf3\x3c\xf3\xec\x18\xe5\xc3\xda\xc8\x4d\x11\xb6\xf3\x9b\x5e\xe1\x8b\xa2\x6b\x18\xe1\x2b\xb6\xc5\x8f\xeb\x4a\xfe\xb5\x9a\x2d\x66\x4e\xd9\x63\x0b\x15\x49\x05\x06\x92\x8e\x1c\xff\x77\xed\x50\x05\xe3\x8c\x3d\x2e\x97\xb2\xf7\xac\x62\xb2\x8a\x6c\xe4\x72\xfc\x7f\xe6\xfe\xe3\x9a\x5e\x5c\xac\x65\x0f\x77\xf7\xe8\xd5\xda\xe6\x94\xd4\x49\xec\xdc\x96\x39\xb8\x5c\x56\xb6\x84\xc5\x6f\x7d\xf3\xce\x11\x6a\x59\x9a\x28\x81\x4d\xe2\x51\x89\xd1\x86\x09\x39\x0f\x2e\x93\x16\x38\x3c\xa1\x50\x25\xd6\x61\xbf\xd5\x1a\x2c\x37\x9e\x11\xc8\x81\xf0\x03\xf3\x55\xf4\xb2\xc1\x04\x65\xfd\x19\xbf\xc9\x12\xce\xb7\x92\x62\xfa\xed\x3b\x63\x4f\x6c\xd7\x17\x9a\xf1\xf9\xa5\xcf\x8c\x51\xc7\xf6\xed\xd3\x64\x94\x2a\x14\x43\x32\x4c\x17\xed\x90\x40\xf0\xb0\xb3\xac\x08\x18\x1b\x56\x14\xf9\x60\x1d\xad\x99\xac\xcd\x98\x37\x6f\x1e\x47\x88\xf9\xe5\xa9\x5a\x05\x4a\x6a\x09\x9a\x41\x63\xc1\x4c\x59\xa5\xc8\x3d\xa2\x9a\x85\xb0\x2d\x3b\xdd\x3f\xbf\x32\x66\x80\x46\x91\xc6\x83\xd9\x2b\x0e\x24\xdd\xa7\x1d\x94\x52\xd4\xda\x5c\x76\x8c\x6a\xf1\xd5\x24\x28\xf2\x84\x92\xc9\x5d\x9f\x14\xa2\x47\xd4\xf2\xa2\xaa\x26\x6f\x06\x9e\xcf\x84\x9d\x4a\xe6\x5f\x87\x5c\xae\xf5\x83\xd8\x6b\xde\x17\x84\xdf\x5a\xa8\xcb\xc1\xf9\x34\x26\x37\xe6\x2f\x5e\xab\xa2\x95\x99\xc1\x27\xe7\xbf\x19\x34\x5a\x4b\xaf\x5e\x2c\x90\x93\x7b\x64\x5b\x13\x1c\xab\xc2\x90\x23\x4e\xcf\x5f\x1e\xd5\xb7\x10\x2e\x17\xc6\x86\xf8\xf0\xbc\x30\x45\x63\xc8\xa8\xf2\x41\xfa\xe9\xd3\xbc\x44\x98\xdb\x09\x65\xc6\x71\x05\x81\x04\xda\xce\xe1\xa5\xe7\x69\x5c\x16\x16\x18\x5a\x56\xce\xb4\x6a\x07\xcf\xc3\x00\x70\xed\xee\xe6\x8a\x49\x0b\x86\x89\x83\xe7\xd5\xa8\xeb\xf1\x02\xe9\x57\x3d\x5a\xc9\xc6\x35\x05\x81\xca\x1a\xb5\x06\x1f\x7a\x54\xae\xf7\x19\x8c\xc1\x3d\x15\x77\xd4\xa7\xb4\xc2\x18\xd9\xbe\x05\x6b\xc5\x77\xf6\xf1\xd5\xd7\xed\xe0\xc8\x93\x79\x41\x50\xfc\x1b\x16\x35\xa3\x4b\x59\x28\x86\xdb\x5f\x68\x0e\x76\x36\x49\x46\x2e\xd9\x55\xc7\x35\xa9\x29\xea\xc6\x1e\xc8\x57\x70\x79\xf7\xc2\x52\x54\x22\x25\xd5\x0a\x2e\xbb\xaf\x35\x05\x73\xd2\x53\xfa\x28\x8d\xbf\x67\x09\xa5\x55\x31\x9d\x19\xf5\xa4\x62\x12\xd4\x3e\x07\x34\x90\xa6\xb6\xa4\xaa\x1c\x6a\xf2\x6c\xfe\xc7\x4d\x97\x6a\xd0\xf6\x26\xb9\xb2\xfc\x90\x6d\x72\xeb\xd3\x01\x89\x7a\xf9\x44\x45\x28\xda\x67\x24\x00\xbb\xa2\x9b\x17\xca\x4a\x2a\xed\xff\xf1\xa8\x29\xb4\x0a\x90\x6d\x17\x68\x10\x3d\xb6\xdf\x1d\x1b\xaa\x84\x70\x08\x6d\x6d\x83\x2f\x53\x46\x05\xc4\xa3\x2e\xb7\x92\xd3\x08\x8f\x0f\xc6\x52\x8c\x06\xad\xb8\x71\xa2\xca\xb4\xdf\x95\xee\x18\xbb\x44\xae\x59\xcf\x19\xce\xa0\x09\x43\xdd\x06\xbc\xd9\xa6\xe1\xe7\xd3\x4c\x62\xac\xb0\x11\x44\x0f\xec\xb2\xf3\x93\x2f\x8d\xb9\xe2\x44\xcb\x42\xa9\xe9\xd2\xec\x39\x9e\x59\x79\x48\x97\xde\xa7\x2e\xa7\x47\x84\xaf\x4c\x1d\x92\x84\x71\x38\x55\x47\xce\x4b\x9f\x6e\x5a\xc3\xc9\x64\x38\xfc\x8d\xc2\x9a\x98\xd7\x51\x28\x86\xeb\x27\x70\x78\xc6\xed\xc5\x55\x37\x02\x6d\x60\x96\x2c\x6b\xe6\x72\xac\x14\x94\x54\x1b\x27\xf2\x27\x83\x1a\xd5\x06\x62\x66\x9c\x1c\x90\x06\x16\xf7\x6a\x18\x55\x63\x97\x95\x5c\xef\x16\x05\x97\x83\x6c\x9b\x32\x50\x4b\xc8\xb6\xdc\xa5\x00\xec\x03\xa7\x56\xe5\x8f\xf3\x45\x6e\x24\x57\x58\x2c\x52\x7a\x53\xc4\x1b\xb3\x41\x21\xeb\x51\x22\x0c\x86\xf2\xb3\x56\x29\x86\x05\x8c\x13\x3f\xa3\x5f\x33\xaa\xac\x48\x95\x21\x68\x62\x99\xa0\xf0\xdf\x36\x5e\x91\x07\x47\x3e\xae\x24\x2b\x2a\x74\xfc\x62\xec\x46\x7f\xd3\x84\x31\xcd\x6a\x16\x28\xf0\x32\x73\xe1\xb0\x24\xcd\xc7\x53\x81\xa5\x1b\x39\x60\x63\x11\xb2\x6d\xdc\x0b\xb2\xd3\xf1\x38\x06\x4d\x6e\x55\x12\x9f\x8a\xf8\xc9\x7c\x46\x75\x45\xc0\x3d\x3e\x98\xbb\xc0\x04\xa8\xa6\x0a\x6e\xda\xdc\x0a\x43\x76\x14\x7f\x1e\xa2\x4d\x86\x91\x6b\x22\x9b\xe7\x92\x5c\x67\x3e\xa9\xca\x1a\x16\x2d\x14\xc3\x0b\x77\x36\x6d\x20\x30\x12\xeb\x89\xdc\x41\x5b\x33\x20\x0c\x7c\x60\x22\x08\xa4\xec\x27\xc6\x8f\x8c\xab\x93\x44\x46\x00\x50\x2c\x2b\xd2\x25\x3f\x76\x85\x90\xc8\xef\x5e\x4d\xaf\x87\x3d\xc3\x0a\xec\xb2\xee\x77\x92\xbf\x71\xbf\xa2\x0e\x8d\x9a\x90\x26\xd9\xf3\xdf\xd5\x36\x46\x36\xa5\x3c\x97\x64\x8e\xad\x56\xa6\xd3\x76\xc1\x0c\x1a\x51\xe3\x6c\x01\xad\xed\x4d\x0d\x2f\x29\xa5\xe7\x73\x8f\x2d\x93\x8f\xd4\x06\x77\x59\xac\x40\x9a\x33\x7f\x7f\xe4\x42\x91\x41\x44\x23\x96\xfd\xc0\xd4\x01\x29\xfc\xbc\x44\xbf\x66\x03\x67\x75\x2c\xb6\x90\x8b\x6a\xc8\x56\x9d\x70\x72\xc7\xf5\x29\x0c\x83\x79\x2b\x1f\x3c\x75\xcf\xe2\xf9\x6c\x39\xf6\x4a\x42\x3f\x7c\xff\xa4\x26\xa1\xa7\x32\x61\x3c\x3b\x86\xbf\x7e\x47\x83\x4a\x79\x1e\x66\xd2\x20\x3b\xf3\xe5\xbc\x82\xfc\xa5\x01\xe3\xe3\xd8\xcc\x8e\xed\x12\xfc\xdd\xad\x7a\x7d\xce\xdd\xa4\xd6\x61\x0e\x62\x55\xe8\x7e\x07\x6f\xd3\x7a\xc7\x0a\x02\x7d\x51\x99\xbf\x2e\x6b\x19\xc0\x8a\x96\x13\x91\xff\xdf\x33\xe9\x89\x63\x09\x33\x97\x68\x09\x37\xf7\xcb\x16\x19\xd2\x4b\x18\x73\x9b\x8f\xfc\x06\x65\x8f\xe1\xd3\x0a\x8e\xf5\xce\x33\x7b\xef\x4d\xbe\x00\xf2\x95\x26\x28\x73\xe1\x8e\x56\xad\xeb\xc3\xac\xc4\x67\x3c\xbf\x5f\xaa\x80\xc8\xe7\xcd\x98\x53\x28\x86\x1f\xb8\xbb\x4d\xef\xc4\x8c\x44\xe9\xe0\x9b\x2b\xd3\x5f\xba\x81\x6d\x1b\xf4\x50\xe3\x85\x49\x3e\x73\x9e\xf2\xa1\x05\x9d\x35\xdc\x37\x2e\x5d\x5e\x08\x9a\x39\x17\x70\x16\x65\xcb\x27\xb7\x49\xd7\x1e\x22\xb9\xa0\x61\xcb\xdc\x56\x91\x2d\x58\x0d\xa8\x6f\x20\x46\x04\xd1\x95\xb5\x25\x86\x01\x26\x43\x29\xc4\xc8\x15\xe2\x74\x2e\x89\xdd\x40\x1e\x0d\xd3\x05\x37\x90\x8d\x99\x2a\xaa\x91\xaf\x6c\xd5\x36\xdd\xdc\xdb\x52\x54\x06\xff\xbc\x4a\xd3\x44\xa2\x75\xec\x8a\x25\x0a\x1b\xa2\xf1\xe1\x50\xcd\x47\xf1\x12\x29\xfc\xed\xd0\x24\x6f\xd1\x0a\x2c\xdc\xf7\x1c\x49\xf9\x31\xc5\x02\xbf\xfd\x99\x61\x07\x84\xa9\x10\x23\xf0\xe0\xfe\xfb\x9c\x2c\xd5\x50\x9d\xd4\x0b\xc5\xf0\xc0\x2a\x7d\x86\x05\x79\x43\xc6\xba\xfb\x14\x8b\x17\x78\x3f\x51\xa3\x64\xd7\x79\x25\xf8\x54\xbb\x76\x39\x12\x37\x05\x20\xfc\x9d\x99\xa5\x4f\x7c\x7c\xc2\x41\x9c\xb0\xe6\xf8\xc9\xb3\x3c\x9d\xad\x0f\xf8\x52\x5b\xac\x0d\xbe\x13\xfb\x2a\xa1\xc0\x88\xdd\x55\xbf\x38\x6e\x8c\x7e\x8c\x7a\xa5\x9b\x79\x9e\xbc\x22\xc2\x01\xb8\xed\xa5\xc8\x85\x56\x8f\xbe\xfd\xf3\x91\x4d\x90\x4f\x59\x6f\x5c\x4f\xb7\x1e\x8d\x4d\xab\xbd\x1a\x81\x52\x20\xb3\xf8\xf5\xb1\xea\xad\x76\x7d\xcc\x68\xb9\x8c\x5d\x8f\x07\xa7\xdc\x9d\xa1\x0c\xf2\x60\xfd\x9e\xfd\xe4\x29\x1d\x55\xe1\xc6\xfb\xb2\xec\x6f\x34\xb9\x12\x83\x51\xe4\x13\x14\xaf\x0c\xc2\x8f\x6f\xbc\xa0\x06\x2a\x69\xab\xa2\x74\x61\xb7\x29\xcd\x83\x4f\x1c\x30\x60\xa3\x2e\xfc\x24\xa3\x55\xd1\xa3\x56\x88\x18\xd9\xec\xfc\x71\x5a\x74\x70\x4d\xaa\xe8\xd6\x64\x46\xb5\xc8\xbb\xd9\x3e\x93\x5b\xa7\xbf\x22\xe4\xe6\x97\xa0\x8a\x6a\x62\x98\xfb\xcc\x59\x4d\x05\xc7\x46\x24\x75\xb8\x33\xad\x1b\x64\x3d\xe5\x80\x0a\x6c\xf6\x85\x45\xfa\x12\x39\x1e\xb5\x81\x23\x92\x9e\x61\xee\x18\xaf\xa0\x9b\x02\x56\x16\xdb\xde\x4b\xf7\x5e\x28\x25\x06\x49\xa1\x18\xda\x9a\xf2\x8a\x4d\xeb\xd8\xee\x8d\x1b\xd4\xbf\xbe\x9e\xfc\x75\x14\x44\x47\xfc\xe2\x77\x74\x04\x4d\x6a\xf1\x12\x6e\x3e\x2c\x14\x04\x19\xf1\xfc\x01\x10\x8a\xf7\x1d\x1b\x21\x2a\x76\xb7\xaa\xfa\x83\x95\x75\xc9\xeb\x39\x1d\xf1\x00\xf6\x43\x6c\x8a\xd6\x5b\x9a\x04\xb9\x68\x40\x61\x2c\x63\x4b\xfa\xdb\x74\x07\x9e\x4f\x8c\x18\x39\x73\xd5\x30\x6d\xe1\xe2\x90\x78\x88\x91\xb9\xee\x0c\x6f\x25\xee\x40\x86\xc5\x9d\xc4\xc5\x37\x5a\x77\xbe\x14\x65\x34\x55\x84\xd6\x5d\x9d\xfc\xf6\x37\x28\x03\xcb\xf5\x97\x97\x4f\xd1\xa2\x2d\xa8\x9b\x0c\xf4\x39\x33\xb3\x9f\x90\x95\x7a\x42\xd0\x68\x22\xe9\x1d\x92\xc1\xb9\xea\x12\x83\xd7\x4e\xdf\xeb\xe6\xb1\xd2\xc4\x75\x4a\x20\x4a\xfc\x75\x16\xff\xe8\x37\x62\xe6\x20\xd7\xb3\x90\x15\x8f\x40\x66\x2e\x4a\x8e\xb3\xab\x12\xca\x33\x9b\x5b\xae\x6a\xba\xb5\xe0\x57\xc3\xa7\xc1\xfa\xb8\xa8\x31\x95\x17\xd0\x16\x05\xc0\xc9\x97\x24\xc1\xca\x44\xd0\xd6\x75\x0b\xf1\x06\x4e\x14\x4e\xae\xd3\xbf\x2f\x55\x1d\x95\xe2\x92\x31\x7b\x7b\xa8\x49\x79\x13\x5b\x60\x30\x73\x7f\xdf\x91\x4c\x0a\x3c\x8c\xd2\xc8\xe0\x53\xe9\x7f\xd5\x4b\x83\x78\x5a\x7e\xde\xd3\xd2\x9c\x02\xf5\x14\x8a\xe1\xbf\xad\xbd\x54\x8b\x8c\x35\xe2\x6a\x7c\x82\x1b\x5a\x12\x2a\x70\x09\x25\xe2\x07\xb5\xc9\xda\x4c\xd0\xf5\x39\xcf\x0d\xc6\x50\x1f\xbe\x27\xee\xc3\x5c\x1f\x79\xe0\x48\x9b\xeb\xbe\xaa\x45\xfa\x9e\x29\x16\x28\xb9\x07\xb5\xf4\xeb\x07\xac\x0a\x76\x2d\x7d\xf1\x2f\x7b\x6d\xa8\xec\x1d\xca\x36\xaa\xc7\x06\x29\x5f\x71\xc7\xa7\x56\x61\xa4\x09\x8d\x92\x7d\x64\xb3\xaa\x1a\x58\x17\x3a\x28\x99\x3b\x37\x2b\x16\x51\xb5\xa8\x10\xe6\xbd\xc0\xc5\x77\xf1\x65\xc4\x0a\xaa\xba\xd5\x74\x28\x92\x9d\x15\xea\x79\xa4\xc6\x1d\x02\xb7\x6a\x82\x02\x36\xae\x10\x4f\xe8\x36\xf0\x99\xdf\x23\x13\x74\x7d\xdc\x86\x57\x43\xb5\x78\x8f\x1b\x8e\x9c\xcf\x07\x0c\xb8\xa7\x86\xdc\x38\x5f\x7e\x4b\xd9\x2d\x5a\x98\xd5\x55\xef\xf6\x35\xcf\xc5\xa2\x51\xe5\xa0\x82\x61\x9a\x13\xf6\x2c\xe0\x37\xcc\xb3\x10\x78\x0e\x65\x2f\xea\xe4\x7f\xa9\x86\x99\x83\x05\x39\x3a\xf3\x98\xaf\x2d\x16\x9d\x1a\xa3\x35\xcc\x60\x2d\x00\x7d\xf1\x96\x47\x5a\x14\xe5\x0e\x9b\x38\x44\xf0\xaa\x77\xb7\x6a\xd5\xbc\x8f\x59\x7c\x0b\x94\x17\xf9\xb3\xfb\x87\x8a\xf6\xce\x17\x5c\xb1\x4c\x57\xab\xe6\xb5\x8e\x91\xcd\x59\xd9\x31\x27\xfc\x43\x13\x74\xbb\x28\x93\xba\xd8\x23\x08\x08\x0d\x70\x0f\x36\x2f\x97\xcf\x03\x90\xca\x4a\x79\x33\x75\xab\x30\x3f\xc6\xae\x2f\xa4\x44\xc2\x2f\x6b\x9e\x2a\x35\x5a\x0b\x6c\xb1\x81\xec\xcf\x8f\x3d\xa4\x0d\x50\xf9\x34\x42\xbc\x90\x25\xaf\x2b\x1b\x4d\x5a\x8a\x1e\xef\x9e\xfb\x95\xed\x63\xe0\x38\x30\x8d\x59\x7d\x56\x1b\x58\x12\x17\x96\xb8\xbc\x12\xfe\x5d\xc7\xc8\x74\xde\x16\x28\xcf\x97\x26\xa7\xbf\x2c\xf4\x74\x8c\xba\xc4\xf0\x04\xf4\x31\xeb\xd5\x2e\x72\x55\xcd\x84\x42\x31\x7c\x64\x8d\xf0\x0e\x82\x9b\x2e\xfd\xa3\xf6\x88\xb3\x23\xf2\x1b\x14\x11\xd7\x9d\xc7\x4b\x90\x6b\x58\x53\xcb\x9c\x1f\xbb\xa0\x69\xd6\x05\xfa\xe5\xb0\xa4\xf9\x91\xaf\xf3\x39\x68\x62\xc3\x90\x1b\xa2\x30\xf1\x80\xb8\x0e\x45\x52\x19\x01\x76\x21\x97\x9b\xd0\xde\xd0\xd7\x49\x40\x93\x81\x26\xca\x1b\x48\x8e\xe7\xbe\x89\x0a\x30\x91\x56\x6c\x52\x85\x81\xfe\x9b\x1a\xab\xc1\xa7\x26\x12\x5b\xab\xf0\xdb\xea\x25\x44\x36\x62\x0c\x55\x60\x39\xf8\xd2\xe9\x24\xaa\x75\x76\x44\xd7\xf2\x9f\xc7\xa5\xec\x50\x67\xc0\x63\x15\xce\x34\x65\xca\x70\x83\x72\x38\xf8\x5b\xcb\x15\xfe\x67\x93\x4b\x50\xe6\xef\x3b\xa4\x39\x35\x82\x14\xfb\xe1\xdd\xca\x70\x8b\x21\x52\xb1\x38\xe0\x2b\xd3\x72\x64\xac\xde\xa7\x1a\x55\x64\xc6\x4c\xf9\xdc\x9f\x5f\xb8\x50\xfa\xb5\x45\xc7\xe7\xe2\x09\x12\xcf\xac\x52\xb6\x33\x9b\x5e\x90\xc2\x02\xc4\x14\x13\xc5\xff\x9e\x24\x19\x6e\x54\xc1\xf9\xe6\x7e\xfe\xa0\xa2\x2f\x1b\x08\xc4\x6d\xe6\x77\x3d\x2a\x95\xda\x84\x97\x94\xf9\xec\x78\x7d\x0d\x2d\x94\xe4\x21\x03\x7d\x5e\x83\x66\xf6\x62\x3f\x2e\x6a\x3f\xb3\x51\x33\x89\x12\x36\x41\xe1\xdd\x5b\x64\x07\x5e\x46\xac\x50\xc6\xbe\x61\xf1\x82\xfc\x73\x6f\xeb\x52\x1a\x88\xbb\xcd\xf1\xc7\xd1\xf9\x8e\x1c\xe0\xf9\x2c\xf0\xad\x72\x20\xd4\x34\xbe\x36\x41\xe0\x38\x99\x4f\xb8\x90\xd7\x77\xa6\x6a\x74\x1d\xae\x7e\x21\x74\x7f\x6e\x5e\xd9\x9f\x3b\xfb\xaa\xdc\xe4\x70\xb4\xc1\x00\xf6\x30\x83\x1f\xd4\xa4\xa1\xad\xa0\x22\xca\xe2\x2b\x77\x29\xac\x00\x54\xe2\x81\xbb\xda\xad\x63\x08\x02\x53\xe8\xec\xe5\x7e\xf4\xae\x3c\x5f\xd8\x87\xa3\x94\xdf\x06\x99\xdf\xc6\x6e\x61\x5e\xa1\x18\xe6\x1e\x1e\xa5\xd5\x38\x25\x81\xbe\xf8\xfa\xdd\xad\x69\xb6\xc1\x34\x78\xc5\x85\x62\x38\xf6\x19\xad\x45\xa5\xc4\xf5\xe3\x28\xd9\x7d\xe7\x30\xd1\x7c\x16\x1a\x18\x57\x61\x2d\x67\xb9\x0a\x9f\x8b\x98\x3c\xb1\x5d\xf3\xa6\xc0\x5f\x21\x46\xba\x03\xe4\x22\xf8\xd3\x73\x2f\x8c\x51\x86\xe3\xd4\x11\x30\x99\xf8\x18\xdd\x3d\xe6\x22\x95\x07\x5c\x8d\x7e\x63\xa9\x63\x64\xf2\xc8\x65\x39\x10\xde\xfe\x9c\xd2\x09\x07\xe5\x32\x9c\xe6\x83\x4b\x79\x02\x72\x03\x9f\xcf\x1d\xbf\x5d\x6f\x4d\x32\x1e\xa4\x88\x24\x68\xfd\xc3\x01\xf9\xb0\xbb\x29\xab\x40\x9b\xe3\x1d\x95\x33\xd0\x1e\x54\x28\x86\x13\xda\x64\xd6\xe6\x40\x94\xa8\x9e\xda\x7c\x6e\xa2\x68\x9a\x5d\xc1\x25\x01\x85\x74\xbd\xb8\x9d\x78\xc7\x28\x25\xe5\x97\x89\x4b\x7c\x0c\x0f\xec\xdd\x92\x5e\xed\xb0\x2a\xe7\x37\xc9\x16\xfb\xf4\x79\xf2\xa1\x96\x50\xc0\x61\xd1\xd7\xcc\x55\x59\x13\x15\x41\x8d\xcf\x7f\xf4\x55\xa1\x62\x10\x35\xa4\x9c\x49\xf1\x7c\xbd\x69\x7f\xdc\x10\x76\xb9\xd9\xab\x27\xc8\xcb\x4a\xdc\xb2\x00\xab\xfc\xf6\xe4\xc5\xca\x08\x8c\xd9\x3e\x55\x95\xd9\x1f\x19\x2c\x1f\x37\x68\xe0\x43\x90\x9f\xb7\x57\x56\x2f\x2e\x2d\x05\x0e\xf1\xbd\x00\x94\xf0\x54\x2d\x86\x00\x0b\xae\xea\xf1\xe9\x1a\x81\x9e\x94\x30\x93\xd2\x67\x2b\xaf\x0b\x47\x28\xb8\x6f\xe4\x56\x18\xe1\x43\xd3\x33\x67\xe5\x41\x9f\xdd\xd9\x0e\x23\xf9\x9b\x6e\x93\xdf\xa2\x4a\xf8\x2e\x26\xfc\xe8\x76\x09\xdf\x66\xc4\xb0\x1c\xea\x9a\xd3\x9b\xee\xe0\x03\x53\xd3\x26\xfa\x80\x81\x0c\x7f\x7b\x7f\xab\x76\xee\x1b\x30\xc2\x28\xf6\x67\x2e\xde\xcf\x1f\xf0\xdc\xd9\x9d\x85\xae\xae\x59\xa0\x06\x30\x79\x0f\xdf\x8a\x2f\x0d\xbc\xf4\xa3\x1a\x6a\x2a\xac\x75\xc5\x5f\x3a\x96\xe2\xd6\x10\x46\xe0\x5a\x19\xa3\x3e\x32\xe7\xef\x53\xa7\xb3\x50\x5a\xc5\x83\xdb\xa7\x14\x3c\x7e\x6c\x18\x56\x28\x86\x78\x6f\x8b\x76\xc5\x05\x99\x8b\x9d\xe5\x6b\xa9\xd5\x6b\xa2\x0a\xb1\x27\x76\x37\x86\x90\xe9\x9d\x1a\x23\x11\xb0\x3a\x36\x3a\xfc\xfb\x36\x8d\x06\x86\x6c\x2f\xf6\x8e\x9a\xff\xbc\x7c\x15\x75\xec\xf1\xb9\x95\x50\xda\xb6\x90\xcd\x3d\x92\x77\x4c\x4d\xc3\xf0\x0d\x8f\x40\x73\xaf\x79\x36\x48\x03\x62\x86\x9b\xf6\x1e\x99\xa3\x6b\xf4\xca\xc6\xf3\x51\x15\x8b\x15\xe5\xe7\x9e\xd7\x36\xc0\x56\xc0\xc1\x65\x22\xb2\x33\x65\x27\x48\x5c\xae\x06\x12\x0e\xdf\xae\x91\xdf\x02\xdf\xc6\x42\x44\x35\xf7\xde\xeb\x6d\x0a\x47\x01\xb1\x82\x43\x5d\x5a\xa3\x9c\x9f\x3b\x48\xd3\x6e\x31\xa8\x23\x1d\x57\xe6\x2b\xa2\x03\x55\x97\xc2\x33\xf9\xe4\x09\xcd\x59\x82\x54\x2d\x6a\x62\x92\x12\x9a\xfd\x93\x22\xe1\xe8\xd1\xa8\xa9\xe4\x28\xcc\xec\x85\xef\x68\xfe\x4c\x81\x6f\x09\x72\x68\x4c\xe9\xf9\x84\xe2\x48\xe5\x52\x4f\xa1\xc3\x87\x9b\xd7\x0e\x53\x01\xe9\xa2\x16\xef\xd2\xa6\xba\x76\x50\x92\x30\xd1\x96\xf3\xe4\xb9\xe3\x65\x6a\xdc\x14\xe6\xfe\x65\x4b\x9a\xff\xc5\x90\x49\x62\xb1\xa5\xd4\xb1\xf9\x9b\xe2\x7c\x66\x60\xdb\xe6\xee\x58\x9f\x9d\x9c\x6e\xb3\x85\x53\xef\x80\x90\xfd\x3b\x8f\x4b\xc1\x91\xc0\x25\x4d\x4b\xa7\x10\xbf\xa4\x29\xd7\x61\x57\xd8\x08\xbf\xa5\x13\x8d\xb8\x20\x3c\xbf\xbf\x8f\xed\x4b\x36\x59\x15\xe4\x34\xfd\x5a\x6f\xa8\x96\x25\x89\xc9\x75\x52\xb2\xa3\x35\x0f\xba\x72\x74\xc2\x19\x71\x2b\xc9\x83\x3b\x39\x44\xa1\x1c\x92\x4a\xc0\xf8\x62\x3b\x7f\xe3\xdd\x83\xe3\x3f\x8b\x7e\x50\xef\xc9\x11\x22\x94\xbb\x55\xf0\x7d\x85\x2e\xaf\x7a\x4a\x37\x3f\xe4\x9e\xbf\xb0\xf4\xf9\x8d\xa6\x3e\x36\xa5\x37\x71\xb6\x7e\x55\xab\x91\x4b\xe0\x54\x27\x5a\xf2\x1b\x87\x28\x49\x02\x25\xde\xf6\x4f\x6b\x9c\x15\x87\x96\xf8\xa3\xbb\x75\xa1\x30\xe8\x27\xc8\x45\x2e\x27\x07\x4a\xb4\xf9\xbd\xca\xc4\xd9\x89\xaa\x21\xe8\x5d\xa6\x6b\xde\xd2\x51\x7f\x67\x0b\xcc\x2f\x0c\x32\x8e\xa7\x7f\xd9\x9c\xf6\x2e\xc1\x54\x1f\x72\x50\x07\xca\x95\xc0\x1c\x58\x98\x05\xbd\xfe\x92\x8e\x1b\xf1\xf9\x1a\x1c\x48\xf2\x3d\x0a\xf5\xc1\xa6\x1e\x80\x7c\x72\xfe\x55\x3c\xfa\xa0\x28\x97\x40\x15\xfc\xde\x78\xb1\xb4\xc6\x25\x8f\x70\x77\x9a\xec\xf8\x57\x74\xe9\x7b\x1f\x57\xc0\xe1\x92\x0f\x5f\xcf\x33\x35\x95\x5d\x9f\x05\x06\x80\x17\x85\x3f\xfc\xcd\x1d\x1a\xf9\xc5\xb0\x38\x78\x37\x74\x3a\x78\xd5\x31\x73\x4e\x3b\x6c\x8b\xb3\xcf\xb4\x68\x8a\x20\x89\xa4\x07\xef\xad\xf2\xa3\x35\xb7\x3c\x5e\xc0\xf8\x29\xff\xb4\x9f\x4e\x68\x53\x1a\x40\x56\x41\xaa\xf9\xdf\xa6\xb3\x23\x15\x45\x12\xe2\xa0\x2a\xad\x17\x8a\xe1\x4f\xae\xe2\xaf\xb2\xc8\x7c\xd2\xd7\x14\x50\x6f\x38\x21\x6f\x97\xba\xa9\x92\x23\x96\xf9\x87\xe5\x8f\xad\x22\x86\xcc\x3e\x0e\xc0\xff\xc4\x21\x45\xa8\x0c\xf6\x4e\x90\xac\x76\x88\xdd\x51\x03\xe3\x9a\x18\x56\x7f\x4b\x9b\xd5\xd3\x72\x19\x80\xb2\xa2\xea\xfc\xb7\xfd\x3c\x69\xde\x14\x78\x36\x91\x22\x2a\x61\xef\xd1\x74\x8c\xb1\xa8\x8f\x6d\x6f\x20\xb2\xcd\x94\xd7\x2f\x52\x10\xfc\x34\x2a\x11\xb3\x7f\xbc\xad\xd9\x3e\x16\xb8\xd0\xef\x53\xae\x02\x71\xbb\x85\x1a\xe1\xac\xd7\x47\x28\x23\x7c\x33\x16\x6d\xde\xb6\x6c\x98\x22\x27\x53\xe8\x82\x85\xe3\xeb\x8a\xa3\xb2\x49\x83\x92\x8d\xa1\xc4\x85\x41\xc6\xf0\xc9\x5a\xa7\x0a\x9a\xc5\x9c\x89\x96\x73\x1f\xd3\xd2\x3c\xf5\x62\x95\xd7\x62\x7f\xfe\xfa\x4d\xe9\xef\x6b\x12\x86\x0d\xbf\xde\x9c\x24\x73\x93\xd6\xf0\x3a\x1a\xd5\x6a\x18\x09\x55\xab\x70\xcd\x5b\xe9\x03\xd6\xa7\x69\x0b\xe4\x16\x3d\xce\xff\xd5\x52\x5c\x62\xb1\x00\x75\x7f\x76\xc4\xfd\x0a\xa2\xb6\x86\x0d\x21\xc2\x95\x3d\xfb\x7f\xe9\x15\xc0\xb8\x3c\xd1\x2b\x08\x95\xcd\x1e\x0a\x84\x79\x63\xe6\x13\xfe\x08\xa5\x50\xad\x06\xbd\x38\x3a\x89\xc1\x74\xc5\x09\xbe\xd7\xf3\x31\xe3\xc3\xb7\xc5\x2d\x52\xeb\x69\x6e\x21\xfa\x93\xeb\x0f\x71\xbc\xc2\x22\x9b\x42\x4e\x35\x91\xdd\x6c\x94\x5b\x9d\x2b\x6b\x1f\xec\xfa\x84\x61\x4e\x82\xff\x5a\x1f\xaf\x71\x4c\xa8\x3a\xc3\x87\xdb\x52\xe0\x23\xc3\x26\x0e\x32\xb8\xe4\x4a\xae\x63\x87\x8e\xc4\xc2\x8c\x12\x53\xd4\x5d\x7f\xd7\x68\x71\xa5\x28\x72\xf2\x70\x1b\xfe\x71\x5b\xd3\xca\x33\xea\x09\x93\x14\xf0\x73\x5f\x86\xc8\xee\xc0\x11\xfc\xaf\x9d\xbe\x20\xf8\x52\x41\x6a\xcc\xbb\x8b\xb4\x4a\x0d\xf5\xc2\x9e\x30\xbb\xf1\xbc\x0b\x45\xe2\xe5\x5e\x5d\xa1\x7f\x58\x3e\x53\xe0\xbc\x72\x7d\xe9\x2f\xbd\xcd\xef\x5b\x37\x32\xaa\x35\x5e\x66\xac\xd7\x06\x15\xc8\x0c\x6c\x3f\xc6\x2a\x7d\x8c\x9b\x8e\x16\x96\xd3\x0a\x5d\x83\x9a\x02\x42\x7e\xf0\x3b\x8a\x3a\x06\x31\x71\xec\x95\x34\x7a\x9b\x56\xbe\x21\xc7\xc4\x9e\x17\x78\xa9\x00\xf5\xe9\x1d\xea\x2e\xd2\x71\xf8\x97\xfc\xa7\x2d\x23\x94\x0a\xdc\xad\x54\x00\x57\x97\xb9\x4e\x73\x83\xb4\x09\x0e\x40\x74\x3a\xbc\xe0\x1e\xb9\x7a\x97\x12\x5c\x32\x26\x0d\x3f\xa0\xf9\x17\xc4\xf0\xec\x18\xc8\x79\x62\x51\x6c\x82\x64\xd3\x8a\xdb\x74\x76\xb2\x3f\x3b\x5f\x77\xaa\x76\xb8\xf7\x96\x28\x15\x2f\xbe\x77\x54\x33\x8f\x01\x9e\x37\xd3\x74\xe9\xeb\x54\xa8\xc6\x00\xa6\xfb\x43\x7b\xf9\x1d\xeb\x9c\xe1\xf9\x51\x7f\x05\x6a\x36\x1f\x6d\xb9\x06\x28\x80\x49\x63\x3d\xbf\x2c\xc4\x91\x27\xc0\x9f\x4f\x40\xfe\x84\x8e\x9e\xb9\x25\x13\x77\x98\xb3\x16\x4c\x93\x5a\x0f\xaa\x21\xfb\x24\x45\x25\x3d\xe9\x92\x8b\xfd\xb9\xbb\x07\x37\x81\x09\x6b\x76\x7c\x4a\x7f\xbc\x4e\x83\x28\x50\x57\x0c\xe9\x33\x7f\x5d\x23\xc6\xb0\x8c\x72\x33\x94\xe8\x45\x4d\xdc\xa7\xe0\x03\x41\xe6\x97\x49\x61\xb4\x3c\x5b\x33\x4a\x89\x9c\x3e\x66\x75\x82\x1b\xd1\xeb\x3a\xd5\x79\xa9\xba\x09\xc1\x0c\x37\xd9\x4e\xe5\xd6\xae\x95\x79\x1a\xf7\x18\x1c\x96\x93\xbd\x62\x04\xff\x14\x3e\x36\x2c\x97\x0b\x0f\xf6\xe7\x6e\xc9\xa7\x51\x4c\x44\x24\x8a\xc1\xf7\x0f\xe8\x37\x18\xbf\xf3\x41\xbb\x92\x5d\x00\x91\x7b\x8a\x45\xb7\xc9\x37\x59\xa7\xc4\x10\x36\xad\xc5\xfe\xec\x9d\x65\x0d\x3f\x46\x6d\x62\xa2\x78\x6d\x96\x0b\x5a\x95\x41\x77\xe0\x20\xb7\xc0\x48\xc5\xe2\xa6\x41\x57\x3f\xc9\x8f\xd7\x4d\x98\x19\x01\x6b\x56\x75\xec\x59\x95\x44\xb4\x19\xb3\x3a\xa2\x5f\x76\x62\x61\xfa\x35\x81\x62\x51\x5c\x9e\x65\xfe\xb9\x9d\x57\x0b\x5d\x9d\xed\x5d\x9d\xa0\xd6\xf6\x3a\x5f\x07\x5d\x07\xcc\x6f\x65\xaa\x96\x9d\x3c\x51\x96\x00\x35\xaf\xd7\xb0\x00\xab\x8b\x6a\x00\xd6\xbd\xe5\x40\xfa\x2b\xf5\x02\xd8\xc2\x2e\x8b\x81\xff\x64\x55\xea\x11\x11\xd0\xde\x82\xd7\xb0\xee\x2a\x7d\xfe\x66\xa3\x9e\xc4\xeb\x72\x48\x56\x13\x8b\xa5\x65\x01\x21\xc8\x2d\xd2\xd8\x3c\x9e\x81\x58\xd4\x3d\x71\xd0\xe4\xe6\x49\xc9\x90\x92\x8b\x6e\xfc\xe3\x13\x4d\x76\x75\xc0\x61\xe5\x34\xe4\x8f\x3f\xad\x4a\x9f\xc2\xf3\x29\x14\xc3\x06\x97\x18\x28\xac\x40\xdd\x88\x11\x75\x07\x9b\xdd\x1d\x8e\x52\xbb\xea\x1a\x72\x45\x7f\x92\x5f\xbb\x32\x59\x41\xd1\x6e\x92\x5a\x41\x5d\xad\xf5\x3c\x0d\x6c\x1b\xd4\x89\xd5\xa0\xbf\x70\x62\xbc\xab\x08\x77\x10\xb0\xe3\x4d\x97\x4c\xbf\xeb\xd6\x41\x0b\xc8\x21\x2e\xd7\xce\x09\xff\xb6\x79\x9c\x32\x8c\x76\x6d\xe2\x5b\x15\xda\x50\x76\x02\x9b\xc6\xa4\xe3\x28\x58\xaf\xd4\xa9\xe7\xd3\xaa\xf0\xd9\x5d\x79\x5d\xd8\x7e\x68\x48\xe2\xd2\x33\x37\xfa\x58\xff\xfd\xd4\x14\x2d\xe0\xb9\xb8\x57\x60\x08\xf4\x9b\x76\xef\xb8\x74\xe5\x33\x63\xde\xdc\x99\x9c\x6e\xc0\xce\x8c\x53\xae\x37\xa0\x46\x09\x50\x1a\x62\xe4\xed\x7d\x9a\xec\x01\xaa\x00\x14\x21\xba\xe3\xee\x56\x79\x7f\x51\x99\x11\x00\xc8\x65\xae\x7e\x4d\x9f\x5c\xc6\x6f\x33\xbb\x6e\x8c\x42\x3f\xae\xf9\xc4\xe1\x97\xbb\xbc\x25\x9e\x0b\x38\xc2\x88\xf5\xe4\xc6\x34\xdc\xb7\x17\x57\x11\x34\x54\xa5\x80\x55\x14\x83\x95\x41\xb3\x84\xb5\x02\xaa\x54\x60\x1e\xdb\xb5\x3c\x39\x5e\x80\x3f\x0f\xaf\xd8\xf1\x7f\x61\x6a\x65\x7b\xbd\x79\xb2\x14\x88\x09\xa2\xba\xe9\x0b\x43\x93\xd5\x9f\x9d\x62\xaa\x7d\x65\xf1\x48\x71\xb2\x5c\x23\x60\x2c\x31\xcb\xdd\x70\xdb\x48\x05\xad\xe7\x10\x98\x8a\x15\xfb\x33\x95\xc3\x5a\x7f\xce\xa1\xb7\xf1\xf2\x18\xbe\xc3\xf8\x16\x61\xf4\x4b\x18\xf5\xab\x4a\x79\x16\x2e\x78\x94\xdf\x78\xb0\x70\xf3\x7c\xc4\x0a\xb6\x80\x2e\xae\x39\x94\x0c\xd8\x1b\x96\xba\xbc\xfe\xf8\x23\x5a\x7b\x82\x58\x6f\x4a\x0c\x7c\xe6\x0b\x9a\xa5\x87\x45\x99\x5f\xf0\x40\x33\x3b\xd6\x9e\x0f\xf7\x9f\xd4\x14\x68\x29\xab\xc6\xff\xed\xd5\x15\x23\xe2\x24\x61\x91\x52\x02\xbf\x1f\xf6\xd0\x24\xad\xc8\x65\xa5\x69\xcd\x0a\xb5\xfd\xd9\xf7\xaf\xd1\x25\x50\x69\x50\xb1\x78\xff\xfd\xb1\x75\xd2\x9c\x08\x38\x99\xf1\xa7\xbe\x6b\x69\x73\x6e\x0e\x78\xac\x84\x60\x35\x56\x33\x06\x11\xca\xc2\x03\xaa\xcf\x1c\x79\x5e\xd1\xf9\x24\x8e\xea\x25\x9f\x69\x99\x98\x3e\xbb\x52\xf5\x3d\xf3\xf5\x55\x72\x1d\xec\x2b\x2a\xf9\xb9\xaf\x9e\x56\x8d\x91\xca\x58\xfd\xe0\xf9\xe9\x9b\xa7\xe8\x31\xbe\xb7\x41\xed\x72\x14\x19\x9a\x54\x65\x5e\x54\x3e\x18\xf2\x03\x66\x22\x91\xb2\xc2\x56\x8d\x32\x24\x2c\x50\x45\xcb\xf9\xd1\xfd\xca\x88\xb3\xbd\xd2\x0e\x5b\xc0\x2b\xf6\x28\x03\x07\x86\x03\x93\xa3\xf6\xf2\x53\xf6\x6a\xba\xb2\x81\xcb\xd1\x81\xe1\xd9\xdb\xb4\xb7\x8e\x2a\xd4\x8d\x57\x20\xef\xee\xd4\x25\x9b\x50\xcc\xd3\xc8\x8d\x1d\x92\x3c\x1a\x9a\x92\xf1\x6f\x5b\xa0\x73\x43\x7d\x90\x66\x8a\x02\x02\xd7\x0b\x3e\x30\x51\xb1\xfd\x88\x7d\x09\xc2\x5f\x4e\x1d\x26\x8a\x1a\x3e\x32\x8f\xfe\xec\xae\x33\xca\x06\xdc\x09\x2a\x15\x9b\xef\xb4\x77\xbd\x39\x36\x4d\x53\xf3\x7d\xac\xd0\x19\xb3\x87\x16\x8d\xd1\x5a\x28\xaf\xc2\x50\x6c\x65\x97\xbd\x72\x41\xb3\x22\x5e\xf4\xf1\x38\xb9\xd5\xd0\xa4\xfe\xab\x2e\x6d\x24\x54\xc8\x6b\x15\x37\xf2\x39\x73\xe7\x14\x3a\x3b\x3a\x3a\x20\xa6\x4e\xce\x8e\x4c\x4d\x76\xb1\xc0\x21\xdf\x34\x35\x5e\x8a\xd0\x0a\x43\xbc\x78\xcc\x3c\x39\x55\xf1\x70\x49\xac\x95\x57\xeb\x12\x9b\xee\xb4\x94\x03\xea\x6f\x57\x0c\xc0\x23\x24\x09\xb9\xfc\xfd\xaf\x69\xb6\x29\x0e\xe1\x1e\xc9\xf2\x27\x54\xcb\xfa\xdb\x76\xfd\x44\x43\x69\xd7\xfd\x8a\xbd\xa0\x03\x93\x03\x3f\x00\x32\xc1\x66\x0d\x80\x67\xd3\x58\x97\xb8\x3f\x7f\xab\xdb\xec\xfc\xc9\xa8\x2d\x08\x4c\x6b\x4e\x08\x6d\x21\x92\x88\xd1\xe7\x7e\xa9\xad\x1f\x2c\x40\xf8\xf2\xe1\xd5\xae\xf2\xc8\xf4\x0e\xd7\x86\xd6\x30\x5f\x9d\x9c\x0c\xe9\x18\x6a\x02\xd7\x7c\x50\xb3\x3f\xf4\xa2\x0a\x20\x41\xd6\xfd\x65\x9f\xf6\x5f\x41\x56\xc9\x17\x1b\x8f\xdc\x06\xd8\xeb\x08\x40\x41\x14\xec\xce\x5b\x94\x8e\x3b\x4e\xc0\x4c\x98\xeb\x09\x39\x93\xb7\x9e\x4e\xd3\x29\x7d\xc2\xe7\x6b\x4d\xcc\xcb\x70\xca\x23\x0a\x3d\x0a\xb3\x2a\xb6\x79\xaf\xd6\xfb\xac\xae\xe5\x82\x98\x2b\x2c\xb0\x32\x3f\x38\x7a\xb1\x02\x70\xf0\x02\x23\xaa\x91\xc5\xee\x31\xdc\xb8\x50\xe3\x4f\x04\xbd\x1e\x57\xa7\xc9\xfd\xbc\x6d\x9c\x32\x13\xf2\xfc\x82\x8f\xec\x2a\x36\x0b\xa8\x04\x1c\x83\xfe\xdc\x05\x4c\xb1\xee\x0e\x6c\x00\xf6\x17\xdf\x11\x42\xcc\x01\xef\xd1\xc2\xef\x3c\xab\xdb\x60\xf2\xf1\x7e\xf4\xc9\xca\x66\xfa\x80\x59\x88\x71\xde\x4c\xa2\x9e\x93\xfb\x88\x36\xa2\xc3\x6e\x9d\xc6\x95\x74\x76\xd3\x19\xa5\x51\xf7\x0c\x64\xc3\xc6\xac\x3f\xdf\x73\x92\xa7\xbc\x32\x36\x85\x92\x4a\xac\xb1\xfa\x89\x1d\xe9\x92\x40\x4e\x1f\xd2\xb4\xd5\xbf\xe5\x35\x0e\x23\xa3\x1e\x36\x02\x20\x2d\x41\x47\x16\xfe\x5a\x11\x73\x46\x36\xee\x41\xae\xc9\xb8\x98\xf3\x49\x65\x63\x2f\x2c\xab\x61\x18\xf9\xf5\x3e\xed\xdb\x12\xdb\xd6\x6c\x04\x5a\x55\x53\x55\x54\x22\x2e\x8e\xc5\x91\x73\x17\x6c\xe5\xc3\xac\xd5\x16\xa6\x0c\x83\x96\x3a\x5f\x1e\x7f\x57\x57\x94\xa2\x41\xe2\xc4\xf6\x49\x45\x6b\x14\x4a\x25\xe2\x81\x4a\x71\xee\xb2\xb7\xe4\xfe\xcd\x89\x0a\x35\xc4\x48\x5f\x2c\x5c\x91\x7d\xf6\x75\x0d\xf9\x12\xd8\x36\xa9\x23\x57\xa0\x93\xe2\x9c\xb5\xf0\x9c\x4c\x35\x36\xae\x20\x5b\xfe\x88\xdc\xb9\xb5\xc9\xba\x85\xd6\xa9\x3e\xbc\xff\xed\xd1\xa6\x05\x47\x99\x32\x3e\x3f\xcf\x4f\x1e\xa1\x06\xbe\x80\xf9\x7c\x20\x91\x7d\xe5\x51\xf9\x65\x0c\xc2\x8c\x80\xf8\xdc\xb3\xec\x57\x2b\xdb\x14\x80\x02\x71\xb0\x62\xcc\x9a\x3b\x3e\x79\x84\xb2\x4b\x34\xb8\x1a\x55\x7f\xee\xfe\xba\x86\xda\x46\x6e\x55\x14\x74\xd2\x5e\xe2\xe8\xf6\xd1\x4a\x5b\xc3\x7c\xe2\x21\x57\xd8\x7e\xe4\xff\xf9\x6d\x45\x23\x94\xba\x5e\x60\xfb\x88\x0f\xbf\x73\x07\xcf\xd7\xe0\xc5\xd8\x8c\x25\xb8\x32\x58\xa3\x1c\x78\xd8\xe0\xad\x33\x18\x71\x2f\x3b\xc3\xed\x91\x96\xa1\x3a\xaa\x5a\xc8\xec\x53\x72\x50\xee\xcf\x9d\x4a\x93\x45\xa8\x8b\x31\x9f\x30\xbe\x2c\x4c\xfc\x7d\x0b\x3b\x7c\xfc\x3c\xaf\x4d\x72\x5c\x66\xcc\x2e\x14\xc3\xd2\x1d\x49\xb9\x55\x61\xc8\x71\x44\xb9\x75\xa3\xb8\xac\x52\xd9\x67\xbf\xce\x38\xe7\x94\xb0\xcc\x2d\xcb\x9b\x70\x32\x0e\x02\xf9\xd5\x62\x7f\xee\xaf\x8f\xca\x17\x66\x21\xcf\xb3\x79\xd1\x9f\xed\xd9\x3e\x52\xc4\x82\x92\xcc\xa9\x51\x1b\x2e\x84\x78\x0c\xe4\xd4\x02\xf8\xc0\xdf\x9b\xdb\xa2\xd2\x61\x1c\x2c\xb4\x52\xf2\xab\x3a\x35\x11\x2e\xec\xfa\xd8\x35\x12\x61\xd8\xf0\x13\x23\xa6\x6a\x21\xc4\xb7\x50\x43\xc0\x67\x74\x58\xdc\x4f\xcf\xea\xda\xbc\xae\xb0\x00\x15\x4d\xda\xe7\xf7\x71\x1c\x91\x61\xa1\xa0\x5c\xc6\x01\xe3\x36\xf8\x70\xa2\xff\xbf\xe5\x97\x6b\x25\x8f\xe7\x91\xa4\x08\x97\xe3\x94\x07\x15\x62\x69\xcd\xc2\x36\x48\x84\x66\xae\xa8\x0b\x8a\x05\xc6\x26\x87\xf1\x5d\xa5\xcc\x47\xa3\x4e\x00\xbc\xee\xc2\x7f\xd5\xa0\xc4\xc8\x4f\x24\xc5\xa0\xbc\x6a\xdb\xdf\xc4\x87\x43\x00\xe4\x12\xf2\xdf\xe7\x3f\xaa\xf3\xe1\xec\xd8\x54\xe8\xdd\x71\x13\xd5\x26\x0d\xe4\x34\x9b\x45\xde\xf2\xc5\x37\x64\xdb\xd2\xab\x96\xb5\x37\xdf\x2f\x86\xc3\x15\x6e\xd4\xce\x29\xfb\xf7\x3d\xd8\x24\xd4\x84\x6d\x21\x50\x9a\x3b\xa8\xa9\x40\xcc\x98\x5b\x28\x53\x1a\xf7\xf8\xfb\x5e\x56\x3c\xfc\x69\xa9\x14\xe5\xa3\x1f\xbc\x90\x88\x22\x02\xb9\x38\x73\x43\x93\x19\x47\xd4\xde\x79\xdc\x4b\x2f\x3f\x6b\xb2\xc4\x42\x7a\x86\x45\xa9\xdd\xd4\x55\xcf\x9e\xd8\xaa\xf2\xf0\x03\xa7\x16\x13\x79\x72\xe7\x76\x34\x69\x35\xf3\x53\x1a\x3b\xa0\x4e\x18\x92\xf6\x5c\xac\xc5\x11\x72\xeb\x3d\x5a\xab\x0e\x26\x0d\x71\x29\x7b\x44\xd1\x8a\xa1\xb0\x71\x8a\xbe\xc9\x3f\x66\x47\xa6\x36\x96\x01\xdf\x59\x66\x1f\x7a\x35\xb6\x47\x28\xe3\xc4\xd9\x6c\xe7\xb8\x61\xca\x74\xc9\xe7\xda\x1f\x1f\x3b\xd8\xd4\x14\xf3\x07\x11\xb2\x65\xbc\x2c\x2a\xb1\xc4\x60\x25\x37\x67\x8c\xdc\xc0\x58\xd4\x36\x9b\xbb\xa8\x6f\x69\xea\xad\xc8\x58\x1f\x10\x86\xc5\x3e\x63\xbb\x36\xc6\xc2\x4e\xcd\xa6\xbd\x38\xd6\x14\xd9\xdf\xa1\xcc\x8b\x6c\x0e\xb8\x04\x56\x5e\xf4\x1f\x7f\xf0\x4c\x12\xfe\x31\x50\xed\xd3\xdd\xd3\x18\x8d\xf8\x50\xa3\x9e\x47\x4a\x76\xa2\x20\xf9\x93\x53\x0a\x03\x32\xee\xd3\x73\xbf\x0f\x93\x93\xd9\xeb\xa9\x76\x7a\x5f\xee\x54\x55\x90\xa2\xde\x20\x16\x94\xb8\x76\x9b\x82\x62\xb4\x03\x2f\xaa\x96\xc3\xb7\x0f\x4b\x72\x24\xe1\x4a\xfe\x6d\xfe\x80\x9c\x7a\x43\x2c\xec\x32\x5f\x1d\x40\xd5\x1b\xb9\x04\x7b\xb1\xa3\xca\x53\x53\xf5\xce\x26\x60\xe2\x9c\x67\xfe\xd1\xe5\x17\xe7\xc6\xa0\x81\x88\x1f\x77\xec\xf3\x77\xe9\x88\x03\x48\xc3\x20\xef\x1e\xce\x9f\x3e\xbc\x91\x4c\x43\xe3\x15\x58\x16\xef\x4a\x46\x0c\xf3\xe6\x80\x80\xd2\xfb\xcc\x36\xbd\x4e\x89\xbe\x3d\xa7\xb7\x11\x61\xf9\x14\x44\xc1\xc5\x87\xb1\x1c\x07\x64\xfe\x3e\xdf\xa2\x8c\x4c\x09\xac\x40\xe0\x33\xcd\x5b\xdd\xa4\x70\x46\xed\x80\x4b\xd1\x71\xef\xca\x13\xb2\xb6\x9d\x0b\x72\xb5\x2b\xdf\x52\x9c\xa0\x14\x4c\x66\xee\xd4\xcb\x5a\xe5\xc6\xa8\x19\xb7\x16\x99\x0f\xb5\x68\x9b\x04\x58\xa7\x8a\xe7\xf5\xde\x44\x49\xdf\x72\x94\x11\x4b\xe6\xe2\xda\x80\x7a\x39\x02\xa4\xf1\xff\xde\x1a\x29\x9e\x59\x22\xf1\x1c\x1d\xe3\xce\x23\x2d\x7a\x85\xcb\xe7\x04\xb7\xed\xd7\xbb\x1f\x56\xc7\xbd\xc2\x14\xbc\x3f\x5f\x5a\x27\xf0\xa7\x88\xa4\x04\xb7\x7d\x45\xfd\xa7\x06\x58\xd0\x70\xe2\x1d\x6d\xca\x82\x14\x47\x91\x08\x9b\x01\xc7\x21\x65\x7e\x36\x34\xd6\xb8\x0a\x5c\x8f\xc7\xb4\x2d\x9b\x04\x95\x94\x31\x44\x2a\x2e\x97\x00\xeb\xcf\xcd\xd4\x2c\xd6\x5c\xea\xa3\x92\xdd\xcb\x03\xff\x86\x72\x02\x2e\xe3\x48\x75\x59\xa6\xbc\xb7\x47\x20\xa1\xd7\x07\x20\xb9\x75\xbe\x26\x6a\x04\x30\x6b\x0e\xf6\x85\xb9\xcf\xda\x50\x85\xfd\x54\x40\xe0\x55\x1c\x80\x4b\x35\x3d\x9b\xe9\xd3\x58\x09\x9a\x88\xb1\x7d\x32\x8a\xce\x98\xad\xcc\x3d\xc3\x92\xab\x78\xaa\x19\x06\x15\xea\xd7\xd9\x63\x8f\xcb\x96\x74\x46\xd7\x0c\x20\x4a\xe7\xc6\xcc\x4a\x4f\xe0\x8d\x0a\x04\x93\xcc\x7f\x0c\x4d\xbf\x8b\x0a\x90\xca\xe2\x91\x5f\xe6\xdb\x1d\x5a\xa0\x12\xde\x6d\x62\xf5\xf4\x21\xde\x63\x14\x66\x0f\x40\x3e\x9e\x74\x27\xc7\x22\x99\x04\x3b\xd1\xdf\xed\x7e\xa3\x49\xc1\x3d\x06\xf0\xf7\xe7\x6e\x57\xbc\x51\x38\xa8\x43\xcc\x0e\x78\xa9\x7d\xef\x1e\x7e\x24\x56\x61\xee\xda\x15\x1f\xf5\x3f\xbc\x98\x34\x93\xc8\x6f\x92\x29\xc8\xfd\xe2\x29\xfe\xcf\x78\x74\x64\x81\xeb\x72\x80\xdd\x17\x47\x0c\xf4\x9e\x64\x5f\x78\xe5\xc1\x8b\xe2\xc5\xce\x22\x81\x89\x7d\xba\x43\xbe\x3a\xfe\xd9\x1a\x31\x06\xf2\x83\x4d\x22\x2e\x28\x56\xcf\xcf\x7e\xe0\xa1\x61\x29\xa4\x1a\x94\x61\xab\xf7\x28\x9e\xe1\x65\x6e\x4f\x1f\xdf\xb4\x67\x0e\xa6\x03\xc1\xcc\xce\x02\xd7\x64\x8d\xf1\xb1\x2b\x8f\xc7\xa5\x63\x00\x46\x62\xe1\xf1\x7b\xf8\x00\xf2\x26\x1a\xd8\xd8\xf7\x55\xd6\xe5\xa9\xe3\xad\x6a\x78\x4e\x55\xa0\x67\x65\xa5\xca\x69\x51\x6f\x1c\xd5\x90\x0f\x3d\xc4\xf3\x79\xc6\xb9\xff\xa8\xbe\x13\xa0\x51\xb2\x12\x11\xf8\xfa\x37\x24\xec\x06\x37\x2f\x75\xef\xbb\x6d\x98\x82\xbe\xc5\x50\xd3\xe5\x37\x4f\xbd\x5c\x8b\xc1\x55\x0b\x11\x9b\xd6\x53\x7d\x59\xf8\xba\x36\xf8\xf6\x02\x41\x1a\xca\x5d\x3e\x7d\x9c\xd2\x05\x78\x0e\x75\x51\xa0\x0a\x1f\x64\xaf\x1b\x2f\xbf\x3b\x2d\xab\xa0\xcb\x2c\x0e\x5b\xa4\xcd\x96\xca\x8c\x3e\x78\x52\x2b\x7a\x89\x0b\xb3\x4d\x39\x76\x79\xf8\x4e\x4d\xee\x13\xa3\x18\x34\x9b\x9f\x7e\x36\x3d\x9b\x05\x4c\x73\xd3\x99\xfc\x97\x21\xc9\xd3\xaa\x35\xcb\xf1\xe6\x4e\xcf\xe7\x47\xf6\x7a\xea\xfb\x0a\x66\x36\x7f\xc1\x44\x5d\xed\x88\x3b\xdd\x86\x1f\xea\x48\xbe\x8c\x83\x14\xf2\x56\x7e\x84\xa6\xd5\xea\x61\xbb\x9c\xa4\x35\x1e\xb8\xd1\x04\x6d\x88\x64\x61\x86\x45\xe7\x91\x5d\xb8\x5a\xe6\x97\x6e\xcc\xea\xd4\x26\x2e\x58\x3e\x5d\xb3\x59\xe1\xb0\xd5\xa8\xcf\xa3\xfd\x97\x1f\xe3\xe7\xf2\x5a\x0b\xb9\x98\xef\x05\x5e\xd4\xc8\x18\x80\x7e\x20\xd4\x4d\x56\xea\x47\x5a\x87\xc7\x15\x1e\x65\x24\xb6\xd5\x2b\x2d\x91\xf5\xb9\x30\x52\x2c\x14\xc3\x21\x67\x35\x03\x9d\x1a\x71\x95\x9f\x95\xff\xc4\x82\x18\x71\x1f\xb0\x82\xc1\x05\x09\x72\x8f\x0f\x51\x41\x9a\x2c\xfa\xfd\x57\xca\xd3\xf5\xe9\xbe\xf4\x8f\x2c\x53\x86\xc1\xfc\x91\x33\x00\xce\x3e\x93\x3e\xa3\x15\x46\x83\x5a\xf3\x76\x26\xfb\xc4\x4b\xaa\xd4\x00\x23\xc8\xe5\xe6\x69\xff\xf9\x2c\xcf\x0e\x4b\xb1\x6d\xc3\x83\xbb\xf1\xf5\xf4\xef\xab\x13\xc6\x67\x69\xd3\xea\x80\x42\x39\xf1\x0c\xff\x07\x2b\xa2\x56\x05\x34\x23\x27\xa7\xef\x5d\x50\xb3\xa9\x9c\xb0\x95\xda\x74\x43\x7d\x1c\x5b\x12\xf1\xa6\xea\x9a\xec\x04\xed\xf6\xd4\xa2\xd0\xee\x63\xd7\x4c\xf6\xe2\x99\xd9\x0a\x8a\x10\xf7\xf8\x30\x4a\xc9\x5c\x36\x41\x63\x1a\x21\xb7\x82\x52\x54\xc8\xd5\x8f\x27\xa5\x42\x4d\x91\x9c\xe9\xcf\xb7\xdc\xab\xb1\x28\x51\xc5\x32\x91\xa9\xd8\x07\x1c\x5f\xa0\x0d\x39\x90\x03\x90\x17\x2b\xa5\xe5\x9e\x69\x3c\x38\x5e\x61\x84\xc6\x95\x85\x62\xaa\x14\xfe\xcb\x1b\x69\x78\x4d\xf4\xd5\xec\x01\xb7\x16\xc7\x9f\x48\xf6\x4a\x1d\x1d\xf3\x40\xd6\xf4\x19\x7e\x5c\x4c\x0c\xce\xdb\x7c\x36\x51\xde\x29\x1d\xb5\x4a\x90\xb4\x46\x2a\xc6\x4b\x9e\x4f\x6b\x35\x04\x10\xf2\xbc\xf7\xa6\xe6\x5b\x2a\x88\x00\x71\x1d\xfd\xdf\xaf\x2a\x2a\xef\xd8\xa4\xd1\x63\x0d\xfb\xd6\x0e\x53\x86\x42\x1c\x85\x91\xf9\xe3\xd3\x3c\x4d\x4e\x99\xd7\x01\xef\xdc\x5f\x21\x9b\x87\x72\xd4\x53\x34\x25\xd6\xda\x41\x5e\xd7\x78\x16\xad\xf1\x85\x5b\xae\x67\x9c\x96\x5b\x29\x63\x09\x5b\x74\xf0\x73\xba\xd0\x8d\xd4\x50\xca\xf6\xbd\x31\x5a\x01\xfe\x81\x9b\x6f\xc1\x26\x80\x25\xcd\xed\xbd\xa3\x79\x20\x8c\x8c\xd8\x1b\xf5\xc0\x41\x4d\xb3\x12\x17\x3c\x52\x71\xa5\xeb\x52\xee\xd5\x77\x75\x63\x07\xd0\x49\x15\x79\x23\xb3\x78\x93\x2e\x8a\xee\x29\x8a\xa3\x9d\x9d\x02\x59\xc9\x3d\x7a\x6e\x7e\x53\x03\xd3\xe3\xf8\x1b\xca\x39\xcd\x9c\x4d\x5a\xb1\xc2\x4a\xbc\xb0\x07\xfc\xde\x87\xb5\xc5\xa6\x87\x08\x47\x4e\x84\xde\xbe\xcb\xb5\x48\x59\xc7\xae\x6f\x89\xa9\x54\x52\x6f\xfd\xe6\xcd\xf1\x5a\x3c\x13\xca\x82\x51\x37\xc2\x47\xe8\x9b\x9f\x4b\x2c\x9d\x08\x27\x76\x87\x67\x97\x68\xde\xda\x0e\x62\xd5\x00\x9e\xcf\x8f\xd7\xc9\x43\xe2\x19\x0c\x01\x20\x34\xf7\xe5\x49\x5a\xdc\x46\x2e\xd1\x86\xa4\x7b\xc6\xa4\xe7\xd6\xd4\xf0\x51\x85\x93\x00\x9b\xd0\xd7\x83\xd3\x75\x9f\xc3\x21\xaf\x99\x21\x93\x24\x95\xb9\x73\x06\xb8\x1c\x5f\x35\x5f\x69\x28\x40\x3e\xa2\x8f\x5f\x8b\xee\x56\xe9\x3c\xce\x3d\xf2\x36\x2a\xe2\xf8\x25\xcc\x2a\x5c\x9e\x73\xe7\xeb\x72\xad\xa9\xc6\x84\xcc\xb6\x61\xd2\xde\xd5\x4f\x68\xb0\xa3\x27\xa8\xf8\x7c\x13\x73\x96\x65\x76\xd6\xbd\xc9\x6f\x83\xb1\x5e\x98\x5d\x93\x0e\x9b\xdc\x07\xda\x8e\x3d\xc9\xb2\xa5\xc5\xb2\xd5\xac\x23\x4f\xb8\x9c\xae\x3d\xa7\x88\x05\x71\x9e\x96\x42\x88\xe8\x9c\x31\xbd\x73\x36\x98\x52\x6f\x28\xa7\x37\x9f\x25\x86\xfc\x3a\x67\x03\xa6\x26\xa7\x9f\x19\x97\xfe\x7b\xbe\x85\xc8\x40\xe8\xe6\x8c\x21\xa6\x0a\x60\x55\xd3\xe0\x1d\x46\xde\x56\x64\x01\x39\xfa\x3b\xbc\xf2\xa9\x54\x2f\xe8\xf9\xdc\xa0\x31\xbc\x62\xa2\xec\xa9\x1d\xec\x33\x5a\xa3\x36\x81\xee\xf1\xab\x63\xd2\x37\x0e\x37\x78\x9d\x2e\x1f\xf4\xf7\x58\x3a\xb4\x56\x19\xf1\x7c\x92\xb0\xb2\x13\x35\x8e\x90\xe7\xea\x35\xd4\x0e\x1c\x88\x67\x57\x6b\x9a\xef\x06\xc3\x0d\x91\x20\x8e\xed\x86\xf3\x58\xb8\xc5\x25\x70\x28\xfc\x26\x53\xd5\xcc\x77\x97\x68\x31\x9f\x11\x90\x6e\x48\x62\x7e\xae\x6b\xd5\xfb\xc4\x9b\x10\xe1\x77\xb7\x96\xcd\x4d\xec\x79\x88\x5b\xb2\xdd\xbc\x32\xbc\x75\x7f\xfa\x0e\x54\xa2\xf3\x08\xed\x5a\x82\xcb\xfa\xc2\x41\x3d\xaa\x01\x96\x14\xa6\x53\xb9\xc9\x6b\xf9\x3d\xac\x13\x6a\x23\x0e\x0d\xce\x0c\x7f\x4b\x51\xf0\x41\x6e\x45\xb0\x55\x3e\xfc\xb2\x32\x0d\x0c\xa0\x5b\x8f\xfe\xf6\x13\x43\x14\x8e\xb4\x89\x6d\xae\xdd\x9f\x9b\x75\x9e\xea\xcf\x16\x18\xa4\xc4\xcd\x7c\x8f\x1c\x6b\xf2\xfa\x06\xdd\x8b\x44\x81\x25\xf3\x31\x65\x1f\x26\xf0\x25\xac\x50\x0c\x6f\x6c\x6b\x52\x0a\x71\xe3\x70\x92\xf9\xdc\x01\xdd\x8b\xc7\x8e\xd2\xa0\x4b\x90\x1b\xcf\xe1\xe6\xda\xc3\xa5\xfc\x7d\x6c\x8b\x91\xfb\xd1\x2b\x3a\x66\x15\x31\xc3\xe2\xd2\x2e\x8b\x39\xa8\xbb\xb0\x92\xc2\x28\xb9\xa9\x9c\xf9\xc6\xb6\x74\xa4\xc5\x5e\xd4\x0c\x13\x70\x1a\x13\x0b\xc6\xdc\x7b\xaf\xc8\x11\x14\x0c\xe0\xa0\x93\x16\xf8\xac\xd7\xb3\x1a\xc8\x12\xf9\xbe\x20\xf4\x87\x8d\x21\x1a\x73\x11\xdb\x04\xd7\x61\x8a\xca\xad\x30\x36\xeb\xf0\x82\xe8\x20\x72\xf1\x90\x9d\x83\xf8\xa9\x5d\xce\xf5\x3c\x8b\xfd\xf9\x5b\xe7\xeb\x64\x5e\xcf\x67\x5c\x74\x3b\x1e\x69\xdc\xf8\xe4\x44\xb5\x05\xf2\xc5\xa0\x4f\xaf\xca\xc7\x88\x46\xf6\x66\x64\x23\xab\x70\x9d\x69\x12\x37\x66\xe4\x64\xef\x78\x56\x31\x72\x88\xaa\x4b\x2b\xfa\x9f\x62\xf8\xfa\x59\x19\x4f\x02\xb7\x41\x3c\xde\xdc\xd9\xe9\x9b\x34\xb3\xa3\x7d\xa6\x50\xcf\x7f\x48\x39\x3c\xc8\xb6\x0b\xf1\x2f\x18\xd2\x31\x3a\xd5\xc8\x3b\x35\xfe\xb8\x0b\xc5\xf0\xe2\xd4\xe8\x38\xb6\x83\x6b\xea\x1a\xae\x7e\x44\x95\x7b\x27\xcc\x04\x91\xf5\x7c\xf6\xa8\xac\xed\x02\x4f\x70\xa4\xed\xac\x00\x67\x83\x54\xbd\x12\x3c\x46\x0c\xd3\x74\xf1\x83\x44\xff\x75\x58\x93\x4a\x3c\x36\xf8\x74\x4a\x40\xdd\x37\x9c\x1a\xa7\x47\x00\x5c\x56\x08\x14\xd9\xbf\x0b\x85\xfe\xd5\x88\x9b\x40\xc3\x17\xdf\xb9\x4a\xb1\x76\x8a\x8e\xc7\xfb\x35\xac\x75\x0d\xb1\xaa\xb0\x66\x0e\x7f\x38\x34\x01\x80\x59\x60\x27\x21\x59\x74\xb7\x6e\x51\x43\xa9\xcf\x90\xc9\x05\x4d\xf2\x73\xce\xa8\x32\x45\x4e\x09\x6a\xae\xf0\xbb\x77\xa7\x67\x2d\x5d\x71\xa5\xf4\xc3\xb2\x82\x68\xb4\x4d\xce\x7b\xca\xdc\xbe\x52\x63\x8c\x31\x5a\x10\x6e\xd1\xaf\x3d\xcf\x9f\xe5\x2a\xe2\xa7\xda\xf8\xec\xc2\x9d\xcd\x48\x14\xa1\x86\xdb\xe2\x0b\x81\x0a\x62\xd2\x46\xa1\x18\x7e\x4e\x9b\x2d\xdb\x18\xc5\xc3\xba\x6c\xe7\x38\xfd\xb6\xd0\x54\x3b\xfa\x6b\xa5\xb7\xee\xc6\x0d\x0e\xf9\xfa\xca\xac\x61\x0a\x7f\x1d\x97\xe1\xad\xdf\x3f\x54\x9b\xfb\x31\x30\xff\x87\x88\xf0\xe0\x02\x9d\x34\x01\xe2\x8d\x31\x13\xfa\xe7\xed\x1a\x94\x10\x19\x24\x41\x8f\xe4\x2f\x3b\xa9\x49\xb0\x20\x48\x7c\x89\x44\x28\xdb\x1e\x33\xc4\x89\xe7\x53\xdf\xc6\xaa\x72\xf8\x16\xdd\x88\x04\x0a\x50\xa1\x16\x94\x7b\xae\x6d\x68\xd2\xb9\x05\xb5\xe8\x93\xfe\x97\xc2\x50\x28\x21\x8b\x61\xf8\x15\x1b\x98\x9e\x7e\x28\xad\xda\xbd\xee\xb4\xf6\x58\x3d\xfd\x55\x05\x01\x8d\x1d\xe2\x22\x50\x7b\xca\x0d\x5b\x3b\x4a\x21\x66\xd9\xc4\x44\x8c\x37\x8e\xd9\x79\xc7\x5a\x95\x13\x15\xb5\x4d\x51\x76\x8e\xaa\x88\xdf\xae\x69\x12\x10\xc0\x35\xe8\xa8\x0c\xbe\x5d\x0f\x8f\xbf\x3b\x4e\xeb\x1b\x61\x17\x2d\x53\xc1\x4d\xe7\x5a\x55\xb2\x4d\x55\xb9\x83\x4f\xd4\x94\x99\x9e\x6d\x93\xd8\xdf\x7a\xd6\xc3\x32\x44\x18\x18\x8c\xb5\x7b\xe3\xe9\xfc\x09\x6d\x26\x61\x05\x15\x1c\x7b\x0b\xbe\xef\x2a\x0d\xc1\x56\x61\x50\xb2\x06\x4c\xe2\x7f\x56\xf8\xa3\xb5\x12\xd1\xf5\x29\xa7\x44\xe6\x67\x67\xe5\x05\x72\xa8\x67\x20\x3e\x7d\xf9\xca\xb0\x36\x05\x0b\x6f\x12\x55\x8f\x3e\x77\xc5\xa4\x26\xfc\x32\xf3\xb1\x29\x72\xda\x17\xe7\x6a\xef\x1c\x30\x19\x82\x33\x13\x4e\x9a\xa4\xef\xd4\x4d\xd4\x2b\x74\x62\x7e\xfe\x8e\xb2\x9b\x28\x89\x7d\x72\xf6\xb7\xda\xbf\x00\xb4\xb2\xc0\xff\xf4\x0d\x93\x2a\xa6\x6e\x53\x23\x95\xdd\xb5\x47\xf6\x63\x15\xec\x0a\x47\x09\x8d\x0b\x56\x45\x4e\x0d\xd9\x48\x41\x2d\x76\xbc\x2c\xa3\x16\x35\x0a\xc5\xf0\xb6\x2d\xf2\xd7\xd8\xcd\xd0\xe1\x17\x76\x68\xfa\xfc\x98\x31\x02\x4a\x4c\x40\x0b\xd8\xb4\x55\x0c\xf4\x18\x32\x79\x31\x71\xe7\x3a\x79\xf8\xea\xd4\xae\x7a\x0d\x54\xc1\x6e\x7b\xa1\x18\x2e\x7c\xf4\x32\x7d\x9e\x61\x37\x97\x63\xe5\x2e\x5e\x6c\x39\xa2\x8f\xfb\xc8\x62\xcd\x25\x38\xea\x59\x1c\x6c\x12\x21\x4e\x9c\x9d\xa8\x89\xa8\xc2\x50\x92\xef\xa2\x3e\xb5\xa4\x69\x34\x6e\xc5\x22\x0e\xfd\xd9\xbf\x3e\x2d\xbb\x88\xb9\x5d\xc0\x8a\x5a\x76\x8f\x2c\x0d\x28\x03\xed\x2c\x79\xe1\xd7\x6e\x8b\x47\xfb\xc8\x54\xa6\x5b\xd9\xfd\xc7\xf8\x4d\x37\x89\x27\x6e\xfa\x3d\x3b\xd3\x07\x37\x01\x93\x11\x2f\x96\x0a\xc8\x2e\x6c\x55\x0c\xb0\x9d\x42\x31\x9c\x70\x40\xa5\xfc\xa0\x1a\x40\x87\xc3\x2d\x27\xa5\x6d\x99\xad\x6e\xaf\x7e\x79\x8f\x42\x34\xb3\x04\xdf\x27\xdf\x3e\x57\xaf\x9d\xa2\xf2\x85\x0b\x17\xe4\x3e\xf3\x56\x7a\xeb\x8d\xec\x42\x03\xf9\x28\x16\xb1\x49\x2f\x74\x3f\x98\xd7\xc6\xcc\xc2\x93\x2c\x1e\x7a\x7f\x66\x0f\xdf\x46\x80\xe6\xbd\x87\xea\x42\x0c\xaa\x77\x63\x6a\x4b\x00\x86\xce\xdc\xef\x32\xfb\xa1\x7d\x93\xb5\x50\xec\xd5\x02\x9f\xb8\x4d\x8c\xa2\xf0\x83\x0a\xcd\xc9\x0e\x5c\xc3\x8a\x0e\xd6\x17\x36\xf2\x74\x75\x8d\xeb\x22\xde\x55\x88\x7a\x71\xd4\xf6\xa4\x41\xc3\xd2\xc5\x65\xf8\x08\x0d\x6c\x4a\x6d\x5a\xef\xa5\xf5\x34\x61\x68\xc9\xa4\x49\x5a\x21\x1e\x78\x30\xa5\xd5\x0b\xcb\x75\xeb\x14\x45\x7a\x14\x15\xce\x55\x97\xcb\x31\xff\xe0\xb5\x64\x26\xea\x37\xf4\x09\x72\xb8\xed\x25\xf9\x56\x3b\xe7\xcc\x9a\x3e\xbb\x03\xda\xd5\xf2\x3a\x05\xfa\x8c\xfa\x9a\x19\x21\xab\x87\xa4\x23\x75\xc3\x22\xb0\x29\x56\x3d\xe9\x99\x22\xdf\x89\x7d\x0b\x7b\x26\xa8\x84\xbe\xd1\x37\x46\x91\xb4\x70\x91\x43\x52\x03\xe4\x2e\x55\x50\x02\x79\x55\xee\xa0\x19\x7d\xa8\x0d\x13\x35\x39\x62\x60\x97\x43\x5a\xb8\x5c\x63\x73\x76\x07\x66\x05\x0b\x3b\x9c\xcc\xe5\x5d\xb2\x5b\x9d\xd9\xde\x19\xfd\x51\xed\x80\xe2\x27\x4e\x2a\x4e\xe0\x2a\x80\xa5\xfc\x94\x4d\x8a\xe7\x2a\x43\x75\x22\x00\xa2\xd9\x9d\x4f\x8c\x54\x15\xc6\xea\xa4\x8e\xec\xe8\x1e\xef\x91\xfb\xc3\x99\x73\x0b\xc5\x70\xe2\xa3\x62\x8a\x54\x23\xb6\xcd\x3b\x6f\x72\xb2\x45\xe9\xea\x4d\x5c\x27\x62\x93\xf6\xd4\x61\x8d\x1a\xe5\xba\xb4\x57\x11\xe6\x0d\xde\x91\x77\xbe\x81\x98\x45\x95\x3b\x9f\xb3\x0e\x2a\xc8\x4f\x9f\x81\x09\x08\x4c\xba\x1e\xd3\xe2\xa2\xc1\xa8\xe7\xc9\x25\xcc\x8c\x61\xf2\x13\x03\xa7\x21\xff\x4f\x4f\x5d\x20\x0e\x41\xa1\x18\x7e\xc5\x4d\xb7\xba\x3e\x62\x36\x72\xb5\x05\x42\x7f\x7e\x90\x26\xb8\x6c\x62\x5c\x4b\x9c\x09\x32\x0f\x1f\x4e\x0e\x5e\x9d\x36\x25\x88\xdc\x0f\xce\xe8\x03\x5b\x6a\x8b\x3c\x0f\xb9\xe2\x7f\x9e\x8e\xad\x14\xca\xb1\xd7\x69\x7f\xee\x93\x8b\xe5\x66\xa5\x73\x66\xf4\x5b\xce\x8c\x1f\xa5\xf4\x92\xca\xaa\x36\xf3\xe7\xd5\xfa\x76\x5b\xc4\xf4\x58\x42\xab\x3c\x3f\xb9\x98\xa8\x42\xe3\x09\x6a\xab\x86\x92\x24\x26\x76\x7d\x52\x16\x73\xdf\xdc\xef\x96\x4e\x68\xfe\xa9\x5e\x8d\xf2\xb1\x2f\xaf\xd8\x73\x5f\xb3\xb5\x93\x8a\x69\xcd\xc6\x51\x4a\x0a\x0f\xed\x53\xa8\x52\x8c\xd6\xb1\x20\xd6\xf7\xe7\x4e\xbe\x2a\x53\x5f\x6f\x74\xa8\x3f\x32\xa1\x45\x89\x55\x65\xa1\x19\x5b\xec\xcf\x98\x93\x75\xdc\x6e\x9d\x48\xcb\xe0\xcc\x28\xad\xd7\x30\xe4\x40\xfa\xc4\xfe\x8b\xf5\x1e\x00\xf0\x5f\x7c\x6e\xf5\xa9\xb2\x0a\xde\x09\x3c\xc2\x1f\xe4\x81\xe5\xb1\x72\xb6\xcb\x75\x66\xa2\x4f\x5b\x99\xaa\xfe\x5d\x47\x18\x3e\x3d\xcc\xe7\x80\x20\xb4\x1c\xfd\x99\x99\xe8\xcb\xe6\x3e\xf2\xa0\xb6\x10\xb0\x29\x35\x01\xbc\x0a\xd8\x80\x4f\x9d\x55\x7e\x1e\x8a\xa1\x8d\x99\x17\xdb\x93\x87\x52\xc2\xe5\x42\x31\xbc\x62\x3a\xff\x0d\xcb\x68\x9d\xa4\x9c\x5b\xfa\x73\x9f\x3e\xd2\x8c\xbf\x10\x63\x02\x28\x65\xe7\x5b\xc3\xc4\x85\xe7\x3c\xbd\x28\x05\xff\xfd\x35\x85\x05\x8c\x6b\x35\x81\x3e\x7b\x55\x33\x68\xac\x31\x5a\x12\x5d\xf6\xd7\x36\xf0\x02\x60\xc6\xbc\x39\x73\xa2\xa7\xb3\x48\xca\x6e\x37\x8b\xd5\x84\x53\x9e\x8a\xff\xf6\xbc\xce\xa8\x07\xbb\x4a\x99\x4a\x5a\x34\xb0\xa3\x5f\x56\xeb\x92\xc2\xa2\xa8\xac\x14\x7b\x0f\x9c\x4c\xf7\x52\xb3\x3b\xc4\x21\x9c\xbe\x58\x12\xfe\x4a\x0c\xb9\x66\x03\xa9\xe4\x88\xd6\xd6\x36\xed\x5e\x7a\xa4\xe2\x0a\x40\xc1\x1b\x4f\x8b\x92\xc8\x26\xfc\x9d\xfd\xbb\xab\x4d\x76\x63\x03\x2f\x20\xb2\x3c\x55\x4a\xe7\x29\xdf\xc2\xae\xb4\x65\x8e\xab\x85\xbe\x2d\x17\x89\x8a\xdb\xf7\xf9\x23\xec\xcf\x1d\x3d\x9d\x3e\x86\x65\xe4\xc6\xa3\x5c\xaf\x2f\x7d\x89\x02\x57\x60\x25\x15\xb7\x9c\x6c\x69\xbb\xce\x27\x05\x93\x5b\x2e\xc0\xb2\x50\x01\xa4\x71\x52\x31\x1c\xd5\x5c\xdf\x30\x65\x22\xc1\xed\x6d\x0f\x6b\x0e\xa8\x34\xf0\x6b\x34\x48\x9a\xa8\xfe\xcc\x8a\xbe\x4b\x15\x68\x73\xd4\x51\x34\x2f\x5a\x97\x6b\xe3\x76\x13\x33\x44\xec\x64\x66\xf3\xb7\x65\xe9\x0d\xa2\x11\xd4\xc4\x0f\xdf\xb0\x4d\x02\x2b\x3c\xe4\x82\x25\xea\xf3\x0f\xeb\x36\xd9\xb6\x1d\x0f\x50\x84\x35\x73\x58\xbf\x53\x4e\x6a\xf9\x34\x6a\xe4\xda\xa9\x5a\xa9\x6b\x83\x7b\xf1\x40\xe5\x51\xf6\xef\x67\x2e\xd5\xfe\xb2\x61\xb9\x14\xfb\x96\x22\x4f\x36\xfe\x2a\xd5\x92\xbd\x8e\x99\x98\xa7\xba\x1a\x56\x5d\xc8\x6b\xf3\xb2\x34\x3f\x6e\xc5\x74\x55\xf5\xe8\xda\xc5\xd3\xd2\xbf\x5b\xbf\x01\xe7\xee\x48\xbf\x29\x8e\xfa\xc9\xfd\xe7\xee\xe4\xfb\xf5\xf6\xc1\x16\x62\xfb\xeb\xc9\x45\x32\x9b\xa7\x48\xf9\xf5\xaf\xc8\xd1\x2d\x76\x6a\x84\x25\x56\xe7\xf7\x98\x13\xb4\xc2\xcd\x35\x2c\x4d\x0c\x28\xeb\x68\x0f\xc4\x60\xc4\x21\x2e\xb5\x69\x54\x03\x8a\x9a\xf1\x8f\x77\xb7\xa4\x1f\x88\x20\x68\xe7\x73\xdd\xda\xda\xa0\x86\x0c\x5c\x4d\x69\xf3\x2e\x5d\x9c\x3e\xed\xb3\xa7\xcf\x9a\xc9\x5d\x93\xb2\xbf\x14\x12\x7e\x37\x61\xe4\x36\x2c\x6e\x60\x3a\xcb\x96\x2a\x62\xc2\x26\x60\xe2\x65\xae\x06\xbd\x6e\x56\xf1\xcf\x8d\xdc\xce\x2f\x1a\x76\x29\x73\x68\x10\x35\xcd\x3b\x9e\x9d\xa0\x25\x6b\xbb\x82\x7c\x6d\xab\xb1\xe4\x4d\xe9\xad\x0c\x12\x9a\x99\x55\x4f\x2a\x42\x51\x34\xea\xd9\xc3\xc2\x3a\x9d\xd7\xe8\xd0\x7a\x42\x9c\x98\x7e\x4e\x5f\xcf\x47\x77\x9d\x23\x5d\x3e\xa3\x81\x18\x7c\xec\xd4\xfc\x84\x11\x79\xc7\x62\xfd\xf2\x94\x03\x59\x8c\x64\x0f\x3c\xac\x5d\xd0\x7a\xd4\xc4\x99\xd2\xf6\x74\x64\xeb\x58\xad\xba\xf3\x7c\x52\x96\x94\x8e\x4b\xb9\xb5\x41\x61\x11\xaa\x46\xad\xbb\x3e\x7f\x7c\xe1\xe9\xa6\xa4\x17\x6f\x74\x8a\xfd\x99\x4d\x4f\x68\xe0\x79\xd4\x47\x78\x21\x9b\x6e\xfc\x1e\xde\x07\x95\x72\xf4\x57\xd6\xc8\x35\xf7\xa3\x8b\x35\x88\x1d\x65\x0e\xef\x3f\xf9\x47\xdb\xaa\x49\x36\x5b\xd4\x21\x46\xac\x8d\x92\xfb\xdd\xfd\xa3\x95\x91\x8b\x5b\x55\x30\x16\x99\x0d\x4f\x5e\xa8\x0a\x99\x16\xc3\xa1\x6f\xc9\x7e\x70\x76\x47\x57\xf4\xd3\xbf\xa3\x49\xb6\x70\x41\x61\xd1\x02\xe5\xad\x47\xd3\xa1\xbb\x1a\xe5\x63\x81\xce\x97\xbf\xe7\xf2\x5d\x8a\x5c\x37\x43\x06\x46\x7c\xec\x9e\xbd\xe9\x45\x59\xa7\x37\x88\x6d\x13\xe4\x44\x6d\x8a\x4b\x1d\x60\x04\x5c\xd1\xa9\xbf\x54\xae\xee\x2f\x78\x16\xcf\x69\x22\x25\xeb\x03\x62\x54\x13\x7d\xca\xdc\xd7\xf3\xb2\x0c\xea\x43\x0c\xa2\x53\x6f\x74\x31\xb6\x3c\xa2\x60\x1b\x0d\xca\x60\x2e\x74\x5e\x5d\x46\xaa\x28\x1a\x89\x75\x56\xce\x78\xb6\x45\x91\x48\xf0\xad\xe8\x3a\xc3\x82\x6a\x95\x76\x56\x3d\x8c\x1d\xb1\xda\xcf\x8e\x33\x15\x90\x48\xa3\xa9\xb1\x5c\xa7\x4d\x58\x6c\xd4\xe8\xc5\x2c\xb6\xd6\x2c\xfa\x57\x36\x05\x61\xae\x8e\x3d\x8d\x95\x9a\x4e\x9e\x71\xbe\xb2\x3d\x23\x26\xe6\xfd\xc8\xa6\xad\x63\xf5\x94\xea\x78\xd8\xae\x0b\x5d\xa6\xcc\xbb\x8b\xa4\x75\x0c\x98\x45\x49\xcb\xae\x45\xd3\xf5\x7f\x0a\xc4\x5f\x37\x7e\xac\x8b\xdb\x95\x05\x37\xf4\x4d\x7a\xa3\xb8\x6b\xbb\xe2\x97\xc5\x90\xe7\x31\x4a\xb9\xba\xcd\xa0\xc3\xba\x6f\xa3\x43\x7c\x8e\x9e\xc8\x2f\x39\x1a\xfb\x6e\x36\x5c\x8b\xd8\xb6\x18\x77\x87\x96\xec\xa6\x03\xd7\xab\x61\x03\xae\x65\xa1\x18\x3e\xf4\x8a\x4e\x90\x31\x12\x98\xe4\xaa\x93\x23\xd5\xd1\x80\x6f\x58\x08\xf2\x4e\x49\x48\x84\x19\x36\x49\xc8\xed\xe3\x56\x69\x36\xcc\xa8\x1a\x7b\x30\xd5\x06\x8f\xd5\xa2\x55\x37\x36\x7c\x19\x56\x0e\x1d\x55\x94\x66\xb9\x7e\x15\x0c\xb5\x6e\xae\x25\xa1\xb0\x12\x44\xa9\x76\xee\x54\x6d\x94\xe0\x7a\xbc\x3c\xe0\x3a\x24\xd9\x3f\x1f\xe2\x83\x95\xd5\xc8\x0d\x88\x4a\xe1\xeb\x49\xa7\x14\x33\x70\x51\x2f\xae\xa7\xe4\xa9\xce\x29\xd0\x36\x58\x3e\xc4\xbb\xeb\xfe\xec\xb5\xa1\xbc\xcf\x33\xe6\x00\xed\x3d\xf7\x88\x2e\xc1\xb4\x3e\x20\x8c\xc3\x75\xc3\x2f\x0b\x4d\xf1\x9b\xb1\x1d\x9b\xae\x2e\x7f\x4d\x95\x69\x47\x15\x07\x71\xa5\x8e\xcc\x2f\xae\x52\xf8\x21\x6e\xc5\x46\x2e\xc4\xfc\xdb\x3b\x95\xcb\x85\x4d\x04\x83\xfc\xdc\x6f\x26\xc8\x51\x8f\x4d\x0b\xc5\xb0\xe3\x39\xc5\xd9\x13\xe3\xaa\x89\x7a\xa1\x47\xbc\xf5\xed\x91\x2a\x09\xa8\x4e\x7c\xae\x48\xf2\xd4\xb3\x1a\x85\x7a\x96\xe0\x31\xcc\x7f\x50\x91\xbc\x8b\x6e\x73\x54\x6f\xfe\xe5\x65\xed\x6e\x36\x30\xae\x89\xe2\xf4\x3f\x5e\x50\xc8\x37\xc4\x35\xa8\xed\x7a\x56\x94\xea\x8b\xfd\xd9\x87\xb6\x4e\xd2\x6a\x72\x54\x37\x51\x93\xd1\x51\x7f\xfe\xc2\x05\x4d\x8e\xf9\x80\x42\xe1\xb7\xeb\x96\x59\x17\xc6\x71\x7c\xc5\x8a\x9b\x0b\xc5\x30\xb3\x71\x84\xe8\x9f\x83\xa8\x87\x2b\x88\xdd\xe5\x67\xcf\xa5\xa3\x67\xcd\xea\xb5\x6d\xe2\x69\xae\x17\x57\x9e\x50\xed\x2c\x49\x99\x5f\xa5\x95\x7e\xfa\xd4\x82\xfd\x36\x0c\x5a\xf3\x23\x8e\x69\x87\xad\x8e\xb8\x6b\x80\x18\x17\x6e\x52\x6c\xde\xa3\x7e\x5a\xe8\xc3\xed\x59\xa5\x70\x9e\x52\x80\x64\xdd\x42\x06\x3a\x2a\x2e\xc7\xf6\xa5\x67\xd4\x6e\x83\x11\x17\xa4\x7e\x3e\xbb\x26\x69\x37\xd6\x23\xd5\x8b\xee\xe9\xb7\x38\x2a\xc4\xc6\x80\x62\xdc\x51\x1b\xad\x25\x46\x07\x7b\x3c\x1e\xe4\x76\x1d\x1d\x99\x66\xab\xf3\x05\x5d\xe6\xfb\x8b\xb4\x7f\x83\x1b\xc9\x6e\x66\xcb\xca\x16\xb5\x12\x26\x55\x62\x42\xe1\x97\xfb\xb3\x58\x28\x7b\xd4\xc1\x0d\x88\x05\xe1\xf2\xc3\x7c\x8f\x63\xa1\x1a\x48\x35\x64\xc6\x4c\xe0\x6d\xdf\xf2\xd8\xe7\x43\x26\xb0\x73\xe5\x34\x52\x09\xb6\xb1\x03\x3a\x3c\xde\x24\x5c\xf8\x62\x66\x93\x4f\xea\x80\x32\xcd\xd3\x16\x39\x63\x31\xb1\x4b\x14\x6b\x96\x70\xaa\x06\xd4\x31\x05\xc5\x84\x9f\xa6\xef\x9c\x49\xb5\xf3\x06\xf6\x44\xcd\x98\x1b\xbd\x40\x03\x62\xfb\x84\x41\x54\xe1\xc0\xce\xb1\xcb\x5a\x94\xf7\x6c\x07\x89\xea\xef\x3d\x47\x9a\x4c\x63\x63\xe0\xb7\x28\x87\x4e\xce\x95\x0f\xd2\xa6\x6e\x05\xd7\xb9\x2f\xd3\xf7\x35\x3a\x2f\xad\xa5\x00\x81\xdf\xbd\x5f\x23\xe1\x98\x0e\xe5\x5e\x48\x22\xef\xdc\x7b\x55\xfa\x41\xf6\xa1\x12\x62\x53\xbc\x66\x45\xa5\xfc\x15\xa7\xb4\x8a\xca\x46\x6e\x5c\xee\x85\x77\xef\x13\x82\xe1\x34\x60\x85\x06\x82\x7c\x7c\xfb\xac\x74\xda\x94\x1c\xc6\xe8\x40\xe9\x33\xf6\xbf\xd7\x75\x6c\x13\x75\xa8\x1f\x6b\x98\x65\x7f\xf3\x42\xd2\x28\x38\xcd\xa6\x4a\xd9\x6f\xae\xd3\xf7\xa9\x35\x9b\xc2\xe3\x15\x89\xe3\x4e\xcd\x1c\xce\x0b\x1c\x61\x02\x93\xc5\x3d\x3c\xc6\x96\x02\x06\xf2\xf4\xc5\xfe\xdc\x7f\xdf\xa3\xc9\x06\xd0\x3a\xe1\xe8\x53\xb1\x22\x3a\xfe\x60\xcc\x74\xf1\x82\x84\xa0\xf7\xc3\x83\xba\x6d\x22\xc8\xa0\xf5\x15\x8a\xe1\x6b\xfb\x27\x28\x73\x51\x0b\x3b\xb4\x09\xe0\x1d\x76\x0f\xe1\x8b\xbd\xd5\x6b\xba\x9a\x1e\xfe\xfb\xda\x95\x21\x24\x5f\x08\xc2\x07\xed\xde\x36\x5e\x6f\x51\x41\x93\x46\x91\x30\xff\xd1\x1b\x97\x68\x47\xa0\x8e\x99\x4f\xbc\xc4\x47\xea\x0b\x87\x35\xa9\x02\x8a\x4d\x86\xcc\x6e\x64\x6a\xfd\xc4\xe6\xd7\x5b\xd5\x54\xe0\x79\x85\xb8\x8e\xc8\x7d\x71\x90\x72\xb2\x19\x76\x0d\x4b\x74\x51\x8e\xb6\xc7\xb6\xb9\x15\xb5\x45\x44\xaf\x9c\x7d\xe8\x1d\xdd\xd4\x82\xf8\xc4\x20\x9e\x13\x2b\x82\x4d\x79\x59\x59\x2a\x00\x4b\x22\xfa\x67\x8f\xbe\x23\x45\x48\x84\x52\xaa\x5e\x88\xcd\x79\xb0\x79\xee\xe5\x62\xc6\x13\xeb\x03\xab\x75\xa1\x1c\x8f\x06\xcc\xc0\x5c\xc9\xe3\xb9\x67\x14\x49\x46\x86\x60\x93\x15\x6e\x7a\xb8\xa9\x53\x42\x44\x1c\xb0\xf0\x4b\x6f\x69\x0d\x59\x40\x63\xeb\x44\xb9\x56\xef\x3c\xa6\x01\x60\x91\x6d\xa3\x8a\x25\x30\x7a\xb2\x80\xd8\xfb\xac\xb2\x6b\x20\xe5\x28\x5e\x85\x8f\x8a\x69\x8b\x61\x21\x37\x16\x99\xb8\x68\xd7\x55\x4d\x91\x17\xd4\xe9\x3d\xa1\xaf\x9c\x7e\x20\x8f\x3e\xae\x60\xa6\xf8\x8b\xcb\xcc\x3f\x9b\x24\x86\x32\x53\x77\x39\x93\xa7\xaa\xf6\xea\xcc\xc3\x25\x64\x54\x0b\xc5\x70\x71\x0c\x97\xb7\xb0\x01\x9e\x43\xb9\x43\xc7\xa4\x63\x3d\x0b\xe2\x06\xdd\x2e\xe9\x45\x9c\x2b\x70\x83\x6c\xbe\xbe\x39\xaf\x04\x31\x57\x25\x77\x4b\xbb\xb2\x59\xf6\x31\x32\x09\x57\x2c\x7b\xf7\xde\x74\x9c\xea\x46\x1e\xf2\x06\xd2\xb3\xc8\xbe\xfa\xb8\xb6\x7d\xa5\x00\x40\x86\xf2\xeb\xf2\x36\x6d\x7b\xcb\x5c\x3d\xbb\xe7\xbe\xfa\x4c\x1a\xe0\x37\x5b\x94\x96\xb7\xe4\xa5\x82\x13\xee\xa9\x91\x81\x14\x9c\xbe\x7d\x8f\xb2\xe5\x76\x7d\xcc\x6a\x8c\x08\x27\xa7\xef\xef\x1b\x91\xe4\x21\xd8\x8c\x73\xb3\xb8\x07\x4e\x08\x99\x24\x50\xf6\x6b\x06\xda\x7e\xe8\x95\xc9\xda\x21\x36\xa2\xd7\x5b\xa3\x4d\x12\xd9\x99\x7d\x77\xf1\x37\x33\x7b\xe6\xf4\x39\xb3\x67\xc3\x7c\x7f\xdf\xc8\x44\xa3\x43\x51\x45\xc9\x9c\x5d\xdd\x14\x6b\x81\x08\xc9\x21\x50\xd9\xbf\x4a\x43\x58\x1b\x1c\x8e\x3f\xf6\xba\xbc\x82\x36\xa6\x1c\x8e\x9e\xa9\xbc\xa2\xc8\xe2\xf9\x81\x49\x78\xa7\xf3\xbd\x59\x1a\xea\x05\x23\x1f\xe8\xb5\xe1\x2f\x0f\xc7\x41\x13\x9e\x0c\xc8\x50\x66\x2f\x5b\x27\x30\x09\x16\xf5\x30\x57\x4e\x1d\x36\x49\x8b\xbe\x35\x86\x1a\xb6\x34\xcc\x1e\xd1\xaa\xfb\xa6\x11\xb3\x3d\x6e\xd6\x6e\x5a\x26\x67\x6f\xb3\xba\x66\xcc\x88\x7e\xe0\x13\x3b\xd2\x21\xb0\xb3\xa3\xd0\x8b\x11\x2b\x50\xdb\x14\x12\x99\xf7\x95\xb5\xf1\x39\x75\xc4\xe8\x77\xf5\x82\xa6\x40\x01\xdb\x01\x51\xba\xbd\xb2\xf4\x72\x39\x47\xb4\x7d\x86\xd4\xbd\xaa\x52\x33\x5e\xb0\x5b\x51\x68\xb6\x4b\x98\xf9\xb0\x17\x33\xb6\x2b\x12\xf6\x4d\x9b\xee\xcc\xea\x3d\x23\x94\x76\x26\x6e\x01\xb2\xd3\xdf\x6a\x53\x35\xc8\x10\x33\x15\x17\xe0\xd1\x4b\x13\xff\x29\xe2\xd9\xaa\x3e\xda\x5f\x1e\xba\x48\x59\xf0\x91\xa8\x65\xfb\xc1\x31\x19\x69\xc0\x6e\x06\x94\x29\x4c\xfd\x2b\x23\x00\x79\x89\x7c\xf9\x8d\xd3\x3a\x9e\x96\x21\x78\xfa\xf2\xdb\x96\x84\xd5\xf2\x6a\xe2\xe0\xb4\xff\xf4\x6d\x87\x93\xb3\x65\x56\x41\xfe\xbf\x5f\x33\xc4\x8d\xea\x66\x3b\xa1\x78\x65\xbe\x72\x2e\x65\x48\xc9\x05\xac\xe0\x53\xde\x9d\x0e\xa6\x7d\x16\x61\xc4\xa5\x75\xaf\xda\xab\x74\x63\xe1\xef\x4f\x8c\x56\x93\x96\xeb\xab\x22\x05\xef\xca\x60\x23\x48\xd0\x51\xa0\xbf\xfa\x51\xc5\x7f\x6c\x6e\x27\x4c\x5d\x66\x68\x33\x1f\x9f\x38\x94\x45\x87\x47\xc8\x31\xfc\xfa\xb1\x91\xe2\xdd\xda\x80\x6f\x71\xc5\xb5\xff\xce\x6b\x4a\x73\x83\x7c\x5f\x95\x62\xb9\xfd\x25\x6d\x3c\x69\x13\xd7\x07\x3b\x50\xf9\x11\x77\xdd\x21\x34\xe8\xb8\xb8\x30\x2f\x34\x0e\xb5\xf1\xc7\xdb\xb0\xa8\x8d\x2d\x0c\x68\x10\xce\xeb\xfa\xbe\x58\x3d\xd8\xb8\x1c\x95\xd4\x85\x72\xf2\xb4\x2d\x98\x00\x66\x5f\x6d\xe1\x45\xf6\xcd\x16\x82\x0e\x2b\x57\x7e\x75\x8c\x12\xe7\xa3\x2e\x1f\xab\xeb\x3e\xe7\x45\xf1\xbd\x34\x18\xdd\xd4\x24\xe6\x3b\xc4\x88\x8f\xde\xfa\xab\xb5\x3e\xa7\x5c\xe6\x8e\xe8\x62\x38\x95\x7f\x44\x96\xdc\x25\x42\xf9\x7c\x5a\x8c\x6f\xb2\xa7\x0f\xa6\x33\x68\x39\x70\x4d\xc4\xa1\x87\x51\x35\x00\xd4\xc1\xf7\xee\xe1\x41\xb4\xe8\x79\xd8\x27\x48\x50\xc9\x16\x3d\xad\x35\x97\x51\x4f\x36\x0d\xf7\x44\x5f\xef\x66\x8d\x33\x59\xab\x73\xd2\x6f\x86\x94\x5b\x55\xa6\xa3\x60\xcf\x43\x31\xb3\xee\x0c\x67\xd1\x94\x18\x45\x26\x8e\xfd\xc4\x26\xe7\x2f\x54\x79\x41\xc5\x70\x9c\x2b\xb9\x72\x76\x93\x8c\x7d\x76\x81\x56\x7e\x00\xf2\xa6\x3d\xc6\xea\xff\x57\x7d\x74\x0a\x87\xc8\xa9\xbe\x9c\x31\xfd\xe5\xfb\xa5\x5c\x09\xf2\x3c\xec\x94\x00\x93\x22\xeb\x88\x27\x1e\x55\x46\x60\xd4\x05\x98\x3f\xd0\x73\xe6\x3e\x21\x57\x21\x48\xc8\xdc\x67\xba\xdf\x96\xb3\xaf\x66\x8d\xd0\xec\x9b\x5a\xb4\x35\x91\x4b\x3c\x4b\x5a\x7e\xe5\x6a\x8f\xcb\x13\xe2\x10\xdf\xb0\xb0\xad\x60\xd1\x73\x83\x27\x0b\xd3\xa4\x00\x3a\xfd\x47\xb4\x79\xb2\x85\xed\x5a\x72\x9b\xb3\xab\x36\x5f\x14\xd7\xcd\x44\xd4\xb0\xd9\x6f\x1c\xd3\x64\xd3\x89\x67\x20\x5b\x40\x3c\xff\xf7\x79\xad\x88\x8b\x3e\x40\x94\x0a\x20\x53\x1c\xd6\xd1\xad\x8c\xd2\x9a\x30\x8e\xa7\x8a\x94\xaa\x49\x3c\x10\x3e\x8e\x7e\x62\xe1\x40\xd3\xc6\xd0\x8f\x4a\xc3\xd8\xfc\x25\xf7\xbb\x59\x4d\x26\xcf\xd4\xae\xe3\x58\x6a\x79\xc2\xe3\xd2\x38\x8f\xdb\x3f\xdd\xc4\xbd\x26\x0a\x37\x0d\x20\xc3\x39\x62\x90\x36\x59\x0c\x7a\x02\xd6\x2b\x6a\xdb\xfc\x8d\x4f\x6b\x69\x07\xb1\x78\x9d\xfc\xbf\xad\xa3\x52\x00\x77\x38\x87\x00\x47\xcc\xbf\x3c\x5c\x14\xc3\xae\x09\x75\x04\x7c\x88\x63\x3b\x5b\xb4\xe6\xc3\x81\x52\xf6\x33\x77\x0f\xe8\x1b\x22\x6e\x64\xf7\x99\x24\x40\xcc\x9b\xdb\x51\x28\x86\xeb\x76\xeb\xca\x78\x9d\x33\xf8\xdc\xda\xba\x67\xb8\x34\xba\xb5\xe2\x32\xaf\x7d\x9f\x3c\x8a\x29\x79\xaa\xb7\xc7\x36\x45\x75\x23\x28\x97\xe3\x7e\xec\xa3\xaf\x48\xd9\x16\xca\x4c\x88\x3a\x32\x32\xae\x1a\x93\x3c\x63\x1f\x41\xd2\x19\xbe\x53\x02\x6a\x6c\x9a\xe8\x65\xbf\xae\x38\xa5\x20\x0b\xfa\xce\xdc\xcb\x7b\x15\x26\xe3\x40\xe8\xfa\x55\xcb\x34\xf1\x01\xe4\x56\x79\xb2\xff\xc3\xb3\xba\xdc\xaa\xe7\x8b\x19\xce\xc7\x5e\x1a\xa3\xb0\xa7\x3c\x3f\xca\x24\x0e\xf6\x3c\xc1\x5f\xfa\xd8\xe0\xd1\xca\x7f\xf6\xd5\xfb\x9c\x1d\xbb\x9b\xc7\xd0\x6b\x4a\x66\xa0\xb2\x38\xee\x5a\xa9\xcf\x20\xb9\x42\x6f\x8c\x55\xf8\xda\x06\x8d\x89\x6f\x11\xcc\x75\x2a\xc3\x79\x3d\x43\x44\x21\xca\xb9\x0f\x0f\x8c\x4b\xbf\xe5\x32\x23\xd8\x35\xe3\x4d\xed\x13\xab\xa6\x68\xf5\x5e\x94\x97\x7d\xc4\x9a\x58\x19\xfd\xb9\x49\x47\xe2\x55\x31\x05\x40\x60\xd8\xa5\x98\x55\x30\x52\xc7\xac\x84\xdc\x28\xfc\x1d\x18\x71\x89\x32\xe5\x64\xb5\xf6\xa6\xea\xe5\xf2\x15\x82\x89\x75\xab\x05\x8f\x10\x4d\xd7\x0a\x7f\x62\xe2\x78\x52\x94\xf9\xb1\x16\xc4\x5d\xca\x1c\x64\x03\x4c\xe0\x81\x05\xf2\x2d\x57\x02\x62\x43\x5b\xf8\x86\x86\xa3\x2b\x09\x6b\x6b\x5e\xac\x7f\x60\xab\x6e\x96\x4b\x58\xfc\x38\x32\xdf\x7e\x8e\x3f\xbc\x32\x22\x3c\x6c\x96\x4f\x24\x52\x1d\x73\x40\x5b\xb4\xeb\x38\xcf\x33\xd7\xdb\xea\xd4\x29\xbb\x56\xb3\xe0\xb5\xc0\x2a\x94\xc7\x9b\xdc\xa7\xd6\x8d\x53\xe6\xb2\xa2\x4a\x04\x18\x24\xe3\x63\xed\xcf\xef\xd7\xd2\x14\xb2\x71\x3c\x27\xfb\xa2\x02\xb4\x8b\xfe\x89\x10\x5f\x2e\x0e\x9d\xa8\x17\xea\x25\x1b\x3b\x05\xb0\xce\x64\xb1\x16\x5f\xce\x5f\x3c\x5e\xab\x5e\x6d\xea\x94\x38\x1a\x51\x04\xf1\x8d\x63\x92\x3e\xcf\xa7\x4a\xaf\x99\x3f\x3f\x4c\xa7\xdd\xa8\xbb\x54\x20\xc7\x3c\x24\x9e\x3a\x35\x41\x3f\x89\x0c\x19\xda\x52\xe9\x77\x0a\x96\xd8\x0b\xbc\x1a\x86\xf9\x73\x76\xf3\x24\xa5\x97\x06\x1a\x14\x48\x1c\x28\xfa\xf8\xb0\xb4\x87\x91\x51\xfd\xee\x26\x59\x9b\x3a\x66\xbe\x97\x08\xb1\xfd\x4a\x51\x26\xf7\x0c\x2b\xa8\x32\x50\xf8\xfd\x73\x5e\x68\xe4\x32\x50\xf4\x87\x73\xfb\xab\xa7\x15\x05\xfe\x80\x31\x1e\x1c\x36\xb7\x2b\xc0\x7e\xea\xf9\x70\x7d\xc3\xe3\x8f\x6b\xe3\x23\x27\x7a\xcc\xc8\x27\x86\x08\x57\x1f\xd3\xb8\xf6\x3e\x92\x49\x2d\xf7\x0f\x25\x9d\xb8\xe7\xe2\x0a\xf5\x09\xf2\x63\x35\x9e\x37\x86\xc4\x76\xb1\x42\x04\x4a\x41\xcc\x3d\x2e\x6b\x79\x90\xab\x27\x5e\x8c\x9f\x09\x77\x4e\x54\x54\xc1\xea\xc4\x14\x84\xa6\x0b\xda\x65\x3b\xd6\x8b\xeb\x16\x67\xd2\xbc\xb5\x40\x21\xa0\x15\xc0\xcc\xbd\x70\x50\xe5\x41\x20\x13\x3b\x52\x6c\xcb\x78\xbb\x49\x33\xa2\x66\x07\x31\x4e\x20\xf3\xb7\x71\x1a\xa4\x7f\x8e\x30\x22\xf8\xde\x3d\x23\x45\xb2\xb3\xd4\x41\x72\xee\xe5\xdd\x49\x95\x61\xb6\x07\x4d\x61\x65\x5d\x5b\xcc\x4c\xae\x61\xc3\x47\xae\x01\x5d\xfd\x25\x1a\x13\xc0\x20\xac\x5d\x24\xfe\x65\xdc\xd5\x95\x3b\x32\x25\xd5\x7c\xeb\x24\x4d\x14\x08\xfb\x42\x1c\x2e\x3f\xe1\xfc\x16\x95\x45\xed\x7a\x94\x63\x52\xb2\x5f\x59\xc9\x23\x5a\x1d\xd9\x01\x0c\x72\x5e\x9a\x9e\x0e\x87\x9c\x27\xe9\x0e\x40\x3e\x0b\xa7\x2c\x89\x31\x2e\xc4\xe5\x4c\xa6\x70\xf3\x59\xdd\xd5\xd1\x17\x44\xa0\x91\xa5\xf4\xe4\x00\x71\xc4\xef\x7d\xff\xa7\x88\x32\x74\x08\x1f\x78\x47\x76\x90\x88\x79\xd8\xc5\x51\x0b\xa3\x2f\xf1\xc2\x8a\x46\x80\xe8\x9c\x1d\x0f\x79\x73\xdf\x78\x4d\x4f\xf1\x20\x7e\x23\x14\x86\x87\x97\x86\x2b\x95\x66\x39\x80\x03\xbf\x77\xb2\x0c\xa9\xa8\xc2\xbf\xd8\xb0\x27\x04\xb1\x60\xa0\x62\x76\x87\x92\x04\x90\x29\x8f\xd1\xa7\x9f\xb8\x50\xc4\x65\x97\x9b\xb2\xdd\x77\x58\xb3\x14\xaf\xc5\x9c\x97\x0f\x6f\x53\x94\x1d\x29\x73\xa2\x57\xb1\xaf\x6f\x78\x23\x19\xa3\xe3\xd8\x52\xe0\xa7\x53\xa5\x17\xa9\x6a\x35\x99\x5f\x53\x96\x67\xdc\x47\xb5\x42\x31\x34\xde\x6e\x9a\x36\xd8\xa2\x4f\x3d\xd9\xa7\xd1\x06\x90\x66\xad\xfc\x89\x1e\x5d\xc1\xcc\xb6\x13\x3d\xae\xfe\x9c\xbd\x27\x09\x99\xbd\x44\xad\x78\x6f\xed\x52\x04\xf3\xc0\x48\x91\xcb\xdb\x66\x77\x98\x3c\x6d\x5c\x5b\x5c\x5e\xbc\x7e\xc5\x75\x31\x2b\xe7\x80\xab\x70\x0d\xa8\xcb\x65\xb0\x62\x97\x62\xc5\xf5\xa8\x14\x78\xc4\xc5\x9e\xe7\x80\xa5\xf9\xf5\x37\xaf\x0c\x6f\x1f\xac\x99\xa7\x21\x8f\xa5\xad\x70\x2e\xe5\x4e\xb0\x85\x55\xc8\x24\x4d\xe2\x74\xe5\x0e\x59\x64\xd5\x10\xf1\xec\x54\xe4\x19\x3e\x54\x71\xee\x07\x0c\x17\x54\x1d\x1f\xdf\x23\xff\xd8\x46\x8d\x72\x60\x43\x7a\xfb\xe1\x92\x64\x00\x5f\xc5\xcd\x76\xfe\x0f\xb8\x7c\x8f\x74\x4d\x2f\x27\x92\xbd\x1c\x8b\x96\xbb\x3e\x32\x84\xed\xd5\x3f\xee\xe0\x97\xc9\xc4\x35\xea\x11\xa0\xa2\x4e\x7a\x53\xbe\xd0\x2a\x71\x40\xfd\x62\x89\x9c\x52\xe0\x3a\x81\x51\x13\x95\xba\xe5\xcc\x49\x3c\x4c\xff\xe7\x19\xa5\x31\x89\xc5\x3a\xe4\x20\xef\xd4\xeb\xe9\xa3\xd1\x1d\xb8\x89\xd8\xc5\x91\x51\xcd\x6a\x58\x70\x1b\x1f\x98\x2b\x0f\x69\x83\x08\x54\xdb\x1f\x4e\xc8\x3f\x8c\x4a\x3e\x38\xf9\x17\x6a\xef\xc6\x0e\x4a\x25\x6a\x54\x05\xaf\x21\xca\xb9\xb3\x3b\x35\x2d\x4b\x52\x4f\x52\x6a\xf6\x12\xcd\x57\xa1\x4e\x40\x37\x4a\xe8\xc0\x8e\x5b\x36\x5c\x79\x09\x1c\x6e\x1e\xba\xe7\xa7\xe7\x05\x55\xec\x79\xd8\x4e\x39\x58\x64\x5e\xd4\x70\x5c\x9e\x8b\x98\x1d\x6f\xe1\xf3\xd7\x9e\x52\xf0\x3f\x98\x6f\xe6\x5f\xb3\xf8\x0d\xbe\x89\x9a\xfc\x04\x64\xaf\x34\xe5\x6e\x98\x39\x85\x62\x38\x6a\x15\x7f\x71\xc8\xf7\x89\x1f\x80\x97\xdb\x8c\xbd\x9a\x41\xb2\xe6\x13\x9f\x3d\x5b\xe6\xff\x66\x15\x6d\xd8\xc8\x05\xb4\x7d\xee\x07\x35\x65\x00\xcd\x81\x67\xd9\xc9\x7b\x9a\x5c\x34\x2c\xcc\xa2\x7f\xe2\x89\xfa\x02\xde\xf5\x10\xa5\x5f\x68\x2a\x5a\xb3\x7f\x11\x34\x71\x93\x36\xdc\x1a\x27\x13\x9e\xd9\xc5\xbf\x56\xd9\x0e\x18\xaf\xf2\x6a\x73\xb5\x8a\x11\x79\x44\xba\x51\x7c\xf8\x84\x4c\x1f\xb3\x3a\x3a\xb8\x7d\x5f\xf4\x1f\xfe\xe9\xc0\x78\x05\x65\xef\x47\xd1\xdb\xe0\xc0\x3d\xde\x04\x14\xfb\x33\xbb\xcf\xf1\x1d\xe3\x8d\xa8\x1e\x38\xca\xa0\x35\xbf\xf2\x4e\x1e\x10\xae\x13\xeb\xf8\x1b\x78\xdb\xf2\x91\xdb\xf8\xc7\x5d\x89\x3c\x4f\x48\xed\x67\x0e\x3c\x24\x87\x4e\xdd\xb8\x0c\xd3\xc1\x37\x15\x6c\x6e\x29\x60\x18\x81\xc6\x60\xae\xb4\x43\xd1\x17\x56\x25\x5a\xfe\x9f\x06\x3c\x62\xd4\xc4\x34\xae\x12\xb3\x74\xd7\x68\x3d\xe3\x57\xb0\x39\x0d\xea\xaa\x07\x76\x8a\xdd\x2b\x01\x15\xfa\xfe\x4c\x63\xee\xf0\xa4\x92\x35\x18\x29\xf1\x54\x7a\x68\xd3\x14\x25\xa0\x30\x9b\xf0\x01\x8d\xd0\x9c\x4f\x67\xfc\x07\xb3\x49\x6b\x39\xb3\x73\x76\xa1\x18\xd2\x7a\xa2\xee\x48\xa3\x37\x12\x1e\xeb\x19\xab\x80\x8d\xfc\x28\xf4\xa9\x5d\x60\xee\xea\x45\xfc\x1f\x00\x03\x09\x5a\xdf\xe7\xec\x01\xf9\x7b\xf2\x09\xfc\x5a\x52\x53\x2c\xd4\xad\xdc\x8b\xda\xff\xcf\xd7\xdb\xc7\x5b\x55\xd5\xf9\xe3\x9c\x7d\x8e\x46\x84\xc8\x93\x80\x17\x44\x20\x44\x42\xce\xed\x02\x17\xb8\x90\x43\x8a\x88\x48\xc8\x21\x24\x24\x53\x86\x75\xf6\x5e\xe7\xec\xc5\xd9\x7b\xaf\xe3\xda\x7b\x9f\xc3\xbd\x91\xa1\x11\xa1\x19\x43\xe4\x18\xc3\xf8\x35\x22\x86\x71\x88\xcc\x0c\x89\x90\xcc\x8c\xc8\x1f\x11\x39\xe6\x98\x1a\x19\xe3\x10\xe3\x90\x39\xe4\x90\x99\x5f\xee\xee\xf7\xda\xeb\xb3\xf6\x5e\x6b\xaf\x73\xe7\xfb\x97\x2f\xb9\xf7\x9e\xb3\x1f\xd6\xfa\xac\xcf\xc3\xfb\xa1\x1f\xa4\x2d\x37\x20\x46\x1d\xe2\xa1\xe4\x55\x8c\x7e\x50\xf1\xdd\xc0\x1e\x6e\x02\xda\xfa\xfc\xb3\x4a\x0b\xb0\x7d\x46\x47\xfc\xd8\x77\xf4\xd7\x06\xfc\xa4\x6a\x8b\x2e\xf0\x46\xc5\x79\xd7\x22\x7e\x99\x8b\x54\x71\x9d\xbb\x9e\xcb\x94\x70\x12\x04\xb8\xcc\x28\xe5\x8f\x72\xd1\xbe\x34\xa4\x51\x96\x52\x7d\xf7\xbf\x30\x4a\x01\x6b\x78\x3e\xf6\xca\x0c\x27\x2a\x4b\x0f\xdd\xaf\x73\xa2\x1d\x87\x53\x77\x13\xed\xb6\x7c\xc7\x2a\xa1\x59\xcb\x4d\xd1\x8a\xa5\x68\xdf\x24\x31\x66\x27\xeb\xa0\xe5\x5d\xea\x35\xee\x3d\x97\x3e\x23\x66\xa9\xbd\x8a\x62\x3f\x45\x3f\x40\x79\x16\x87\x35\x9b\xa0\x40\xb4\x2f\x72\x5b\xde\x96\x45\xf9\xd5\x7e\xf2\x48\x47\x68\x84\xb4\xb8\xcc\x8a\xdf\xad\x08\x7c\xff\xf2\xa2\xea\xe8\x5c\x81\x9c\xb6\xb7\x30\xe2\xe9\xbe\x01\xa8\x3c\x35\x99\x78\x4c\x62\x9f\x2d\x16\x56\x8b\x01\x43\x95\x0a\x31\x6b\xa0\x79\xfd\xec\x29\x65\x68\x44\x5d\x01\x12\x8d\x96\x1f\x1d\xa3\xfc\xb3\xd7\x32\x31\x31\x6e\x55\xa8\xea\x65\x1c\x34\xb9\x96\x52\xf4\xd1\x7b\xe5\x3b\xd3\xd8\x05\x4b\x46\xeb\xfd\xe2\xa2\x5f\xc7\xa8\x06\xca\x14\x37\xc9\x84\x21\xf0\xa5\x6c\x54\x74\x8b\xd6\x0b\x29\x23\xc7\xa1\xd4\x4b\x41\x12\x73\xae\x15\xd1\x0b\xf5\xf4\x24\x28\x9f\x7e\x3b\x34\x2e\x07\x75\xeb\x88\x25\xfc\x61\xe3\xef\x5e\x96\x57\x7e\x57\x88\xa0\x2b\xdb\x5b\x18\x5f\xef\x73\x98\xda\x83\x2d\x51\x88\xdc\xbd\x59\x81\xbe\x0b\xec\x75\xfc\x75\x9f\xe9\x1c\xa5\x45\x0e\xc7\x49\x9d\xd1\x7e\xb3\x5e\x73\x3d\xee\x61\xc8\xce\xa4\x21\xc6\x5f\x1e\xcc\xae\x91\x19\x1d\x02\x0d\xb4\xfc\x85\xf1\x59\xbf\xd4\x5b\xaf\x49\x16\x9c\xf2\xe7\x9e\x06\x71\xab\x33\xee\x3f\x24\x70\xd1\xbd\xc6\x1d\x13\xb4\x5e\xaa\xcd\xb8\x4a\x3e\x4f\xbb\x97\xef\xd7\xc5\xc1\x99\x1f\x22\x2b\xd5\xd3\x2a\xdc\x77\x9d\xc6\x17\xb4\x91\x57\x4b\x1c\xa3\x7b\x0b\x37\x68\xac\x32\xd0\x46\xa0\x89\xc5\xf7\x10\x47\x32\x89\xa6\xb5\x77\xc6\x0f\x64\xde\x02\xb9\x42\x3a\xbb\x8a\xa8\xe8\x8b\x6e\xba\xb1\x77\xbb\xe4\xd8\xcc\x9e\xc5\xe7\x17\x67\x64\x92\x82\x5c\xec\x90\x8c\xdb\x7b\xfe\xaa\xbd\xd9\x67\xdb\xc0\x1e\xee\x09\xb1\x83\xc0\x14\x2e\x8e\x09\x1f\x79\x56\xfa\x23\xcf\xe4\xbd\xbe\x2f\xac\x1b\xa7\x54\xda\x75\xcc\x08\x65\xad\xa6\x80\xa7\x35\xe8\x87\xf0\x5a\x10\xe7\x41\xf4\xa7\xc3\xf2\xc2\xaa\xd4\xb1\xca\x98\x55\x95\xe0\x3b\x6f\xb5\x2e\x86\x94\xa8\x51\x0a\xde\xe9\x0d\x22\x9b\xbb\x99\x36\x93\x8c\x2c\xff\x95\x73\x42\x1f\x52\x31\x29\xeb\x35\x6e\x5a\x3c\x56\xe9\xdf\x60\xbf\x0f\xbe\xfd\xa6\x07\x20\x70\xad\x45\x40\x91\x8a\xbc\xdd\xd9\x60\x3b\x6d\xda\x2c\x21\x54\x91\xff\xec\x1e\x45\x32\xc2\x26\xf5\x3a\x6e\xf2\xd3\xf2\xa2\x17\x60\x94\xba\x80\x20\xd7\xb3\x5a\x76\x7b\xe1\x23\x81\xe4\x7f\x79\xa4\xc7\xf6\x70\x03\xb1\x80\x36\x7c\xee\x97\xfb\xbb\x1d\x99\xc8\x1b\x10\x18\x3d\x80\xf6\xc9\x18\x43\xf1\x69\xa6\x66\x0d\xc7\xc7\xd7\xd7\x15\x63\x51\x5a\x8f\xa3\x34\x37\xa3\xc8\x3d\x71\x60\x9c\xb6\x9e\x98\x45\x75\x57\xfe\x4f\xb1\xf4\xa5\x36\x29\xef\x8e\x95\x37\x24\x56\xf2\x01\xf6\x40\x93\x36\xba\xe5\x7e\x6d\xd2\x49\xdc\x7a\x2a\x49\xfb\xd4\xc1\xec\x00\xac\x5e\xed\xdb\xe0\xe1\xa9\x6d\x72\x4d\xe2\xb0\x58\x8a\x56\x9c\x69\xd9\x93\x37\xb7\xec\xc9\xfc\xdf\xac\x19\xa6\x60\x84\xc3\x4a\x05\xb2\xf8\xfc\x4f\xee\xb8\x4c\x09\x9a\x15\xca\xb0\x0d\x48\x43\xe3\x46\x30\x51\x2e\xb6\x77\xce\xe6\x63\xd7\x17\x97\x8c\x52\xcb\x8f\x38\x99\xe6\x1b\x85\x9f\x8c\x57\x3f\x07\xf8\xed\xdb\xb8\x35\x64\x0b\xe0\x65\xf4\x5c\x19\xbb\xa1\x87\x16\x10\xd5\x9a\x22\xbf\xe8\x55\x89\x3a\x40\x2c\x69\x08\xdf\xfc\x4c\x76\xd5\x72\xee\x24\x97\x8c\x15\x0f\xad\xdf\x1e\x39\xa1\x9f\xd6\xd5\x31\xb5\xa3\xa3\x43\x9c\x16\xef\x9e\x91\x49\xbe\xc9\x00\xd1\xfa\x87\xf7\xe0\x9d\x2c\xc4\x7e\x40\x85\x3b\xfd\x91\xf5\xd9\x70\xe1\x0b\x1b\xbf\x24\x34\x8f\xd4\x0c\x7c\xca\xc4\x71\x08\xf5\x44\x35\xfe\xc7\x97\xf4\x14\x2d\x40\x41\x12\x9e\x73\xf4\xac\xe2\x60\x85\xe3\xff\xd6\xe2\x20\x5a\x6b\xd3\x64\xb8\x19\x4d\x1c\x23\x8c\x5b\xde\x54\x46\x3e\x5e\x40\x8a\xf1\xe7\xbc\x38\x46\x91\x66\x49\x74\x74\xa3\x7f\x9b\x2b\xbc\xf6\x91\x87\x43\xd1\x88\xcb\x77\xd9\x9a\x18\x83\x83\xba\x61\x44\x56\x30\x4f\xea\x09\x8f\x0b\xad\xe9\xe8\x0e\xc5\x4d\x70\x2d\x2d\xf3\x23\xe4\x9e\x77\xc6\xaa\x1b\x88\xb4\x6a\xf1\xe5\x7a\xf6\x42\x3a\x7c\x3d\x43\xca\x8c\xd1\xc8\x6d\x69\x6d\x4f\x27\x3c\x23\x3d\xaa\xfd\xed\x3c\x08\x14\x8a\x01\xf3\x59\x35\x9f\x68\x10\x18\xe2\x19\xdb\x77\x09\x1d\x61\x27\x0e\xf6\x80\x52\xfa\xcc\x70\x19\xca\x9b\x71\x32\x14\x2d\x7a\x49\x2e\x66\xc9\x11\xe2\x04\xa1\x06\x2c\xe6\x39\x1d\xa0\xf7\x39\x65\xa0\x06\xa3\xea\x21\x3d\x19\x7d\x35\xa3\xa8\xb8\xcf\x95\xb1\x53\x25\x61\x5c\x3b\x8d\x3c\x96\x0d\xf0\x2e\xaa\x05\xa1\x9b\x39\x3c\x7f\x38\x4b\xf8\xda\x70\xd9\x67\xd3\x26\x8e\xc5\x40\xa9\xfb\x0b\xe3\x74\x87\x55\x26\x1c\x56\xef\x7c\x2d\x4b\x0c\x72\x69\xc8\x1b\x54\x3e\xb1\xb0\x8e\x3b\xca\x1d\x7a\x43\x63\x7b\x79\x7e\x53\x3a\xb2\xe5\x2f\x6e\x6b\x31\x0d\xe3\x08\x73\x01\xdd\xfe\x4e\x05\x10\x1a\x01\xad\xd7\x05\x7f\x75\xee\xed\xb2\x6c\x9f\x3d\xad\xab\x58\x8a\x06\xec\xcc\xde\xa6\x47\x5d\x02\xf3\x20\x3f\x81\x54\xff\xf0\x64\x46\x18\xc8\xa7\x50\x96\xbd\xf4\x92\x6a\x36\xd9\x20\x82\xef\xb8\x83\xc1\xf3\xe7\x06\x32\xa5\xde\xdc\x3f\xcd\xd2\xda\x6e\xd8\x11\x4e\x1a\xf9\x07\x9e\x86\x5f\xbd\x45\x98\x26\x0c\xdc\x9e\x86\x86\x2a\xc3\xa9\xcd\xfc\x2c\x39\x16\x0a\xdb\xbd\xd6\x71\xc5\x6b\x0f\x89\x1a\x88\x7a\xdc\xea\x2d\x67\xef\xd5\x7a\x4b\xdd\x69\x42\x32\xab\x72\xa9\x92\x47\xf1\x11\xcc\xcd\x6f\x88\xc9\x7a\x40\x1c\xa7\x58\xfa\xeb\x36\x99\x2b\x36\x31\x6f\x30\xaa\xef\xa4\x50\x5d\xac\x85\xf6\xbb\x42\x64\x25\x8f\x6a\xe8\xed\x9a\xa6\x03\x31\x39\x19\x51\x34\xfc\x2e\x7b\x46\xb2\x46\x1d\x54\x2c\x45\xc3\xa2\xec\x95\x52\xcf\xc4\x1c\x50\x15\x6d\x9f\xa8\x93\xa4\x19\x4d\x7c\xfc\x8d\xdb\x2c\x4d\x24\xb6\xce\x30\x04\x63\x5e\x73\x4f\x5b\x99\x3e\x47\x62\xa5\x5d\x97\xfb\x86\xca\xf2\xc1\x54\xfa\x49\x05\x6b\x81\x34\x11\xb7\x91\x5b\xe7\xf0\xad\x96\x53\x78\x72\x57\xf6\xd4\xe2\x03\xee\x38\x5c\xf8\x19\x16\x7c\xe1\xde\x89\xb2\xa4\xb2\xa9\x5f\x27\x01\x82\x46\x94\x7b\x54\x6e\xb3\xbb\x42\x9a\x60\xe1\x4e\x6c\x95\x4b\x72\x4e\x3b\xc7\x6c\xfc\x7b\x21\x1b\x36\xa7\xcd\xe4\x69\x29\x4f\xfa\xae\x9e\x04\x8b\x5a\xb8\x67\xc6\x9f\xf0\x4e\x34\x24\xd3\xa6\x43\x7c\x71\x7d\x7c\x9f\x56\x72\x3a\x21\xe6\x69\x47\xd2\x26\x1c\x78\x7c\x94\xb6\xf2\x41\xeb\x98\x0f\x4d\xa7\xf6\xa4\xb4\x8e\x0a\x62\x19\xb3\xc2\xdd\xd9\x66\xf1\x5a\x2e\x0d\x1b\xbd\x7d\x9d\x0c\xe7\x2e\x36\xc1\x42\x6c\xd7\x16\xb5\xbe\xa9\x04\x4d\xc8\x36\x73\x77\x68\xc3\xda\x0a\x59\x27\xf2\xfc\xfb\x8e\x65\x8f\x99\xb5\xb8\x89\x1d\x41\x50\x8a\x7e\xa0\x08\x5d\xfb\x01\xc3\x38\x30\x79\x65\x98\x5b\x71\xb1\xb2\x15\x5d\x97\xc2\xe0\xca\x18\xfb\xb2\xe4\x91\x61\x8e\x1a\x9e\x77\x77\xba\x06\x10\x52\x5a\xa3\xc6\xf0\xa9\x42\x0b\x09\x33\x13\x5b\xd8\x2f\xce\xc7\x5e\x4f\xb1\x14\x6d\x99\xac\x97\x33\x9e\x1f\xba\x89\xe0\x75\xde\x78\x59\x5f\xef\x1e\x57\x69\x00\x40\x5a\x0e\xef\x95\xbc\x48\x7e\x06\xf7\x1f\x24\xd4\xa5\x6c\x52\xc5\x1e\xcd\x00\x17\x0f\x2e\x97\x4f\xd0\x0f\x28\xb8\x78\x07\xd3\x27\x68\x5f\xe0\x90\x80\xa0\xa2\x5f\x47\x4d\x4f\x82\x8d\xee\xeb\x92\xc7\x41\xc0\x90\xe7\x73\x90\x33\xf7\x2a\x52\x40\x10\xc2\x0e\x4f\x9d\x7d\xfd\x65\xae\x02\x26\x87\x33\x44\xce\x79\x8f\xf4\xd7\x65\x1f\xb9\x7e\xb6\x78\x55\x17\x2d\x51\x45\xac\x40\xfd\x22\xfe\xc6\x6b\xcf\x66\xf7\x74\xfc\x5f\xa1\x92\x34\x60\x93\x5c\xa9\xeb\x90\x07\xb0\x2d\xe3\x37\xe3\xb4\x32\x2d\xd1\x19\x93\x63\xd1\x7f\x5d\x33\x54\xd9\xa2\x4c\x18\xd1\x17\xc6\x75\x29\x89\x9a\x4d\x03\xb0\x63\x82\xda\xfa\xce\x9d\xf2\xc6\xf9\x54\xb0\x18\xd8\xb8\x98\x16\x8e\x7f\xd5\x00\xc8\x0d\x62\x52\xad\x13\xf8\x9b\xd3\xd9\x67\x6f\x12\xdf\xc3\x8c\x42\xd3\x42\x26\x74\x33\xef\xbd\x54\xc9\x1f\x78\x77\xf8\xc7\x53\x55\x8f\x5c\xcf\x83\x2b\x3a\xb2\x45\x11\x7e\xf3\x2c\xca\x40\xb8\x26\xd7\xb5\xf3\x92\xe4\x1c\x77\x00\x5b\xf8\xfc\xe0\xec\xfe\xb0\x84\x40\x65\x6f\xfe\xe2\xc9\xc3\xb5\x24\x0d\x98\x22\xc6\xfa\xb7\x86\x2b\xfb\xcf\xa1\x16\x43\x9c\xfa\x96\xff\x97\x01\x69\xcc\xad\x14\x79\x7a\xbb\x52\x13\x33\x70\xa9\x6f\xd2\x66\x52\xb7\x45\x33\x83\x6c\xa0\xc3\x0d\xcc\x8a\x3e\x2d\xfa\xc2\xbc\x49\x60\x52\x0b\xeb\x97\x5f\xa9\xa5\xac\x4d\xec\x67\xf1\x74\xb9\x69\x0f\xc8\xe1\x1a\x6e\x85\xbc\x8e\x58\x91\x71\x70\x69\xc4\xe5\x0b\xb4\x2c\x8c\x0d\x75\xa5\x6d\x4f\x5a\xd2\xec\x2b\x07\xaa\x72\x03\x3e\x97\xd9\xe4\xc7\xed\x77\x66\x65\x77\x24\x6f\xae\x4b\x13\xd7\x2b\x35\x76\xa6\x43\x9b\x5c\x1c\x2a\xb9\xe0\x1b\x94\x48\x12\x84\xac\x2c\x1c\x72\xdb\xae\xd3\xda\x0c\x61\x9d\x20\x5b\xc0\x4e\xbf\x70\x50\x07\xee\x7a\x81\x0d\x3e\x55\xdf\x3f\xaf\x25\x30\x95\x0a\x61\x6e\x92\x36\x17\xb6\x28\xe9\xa8\x07\x92\x64\x97\x2c\x15\x6a\x1c\x01\xaa\x54\x00\x32\xfe\x47\x3b\xd1\xaa\x2f\x93\x40\xd4\x13\xa5\xa8\xe7\xee\xec\x9d\xd4\xb8\xb5\x01\x07\x46\xf0\xea\x7b\xdb\x42\xa8\x2a\x57\xa0\x00\xb1\x16\x3d\xd0\xe8\xbe\xfe\xf2\x98\xf7\x4d\x14\x3f\x26\xa4\x38\x24\x1a\x3f\xd3\x88\x4f\xc8\xa5\x62\x37\x46\xb7\x8e\x95\xe6\x00\x96\xfa\xb6\x6f\x7b\x2f\x7d\x67\x0c\xb5\x8e\x5a\xda\x36\x68\xee\xf7\x5c\x46\x19\x12\xf3\x35\x5a\xfd\xe3\x22\x46\xd6\x86\xc8\x43\xed\xa2\x6a\xbf\x70\x5c\x9b\x0f\x60\xc6\x91\x04\xd0\xc7\xfc\x8f\xc4\x01\x9e\xb2\xb8\x02\x02\x7f\xb1\x45\x43\xc5\x49\xd9\xc4\xac\xe8\xe0\x06\x47\xff\x1a\xeb\x9f\x91\x3d\x08\xd3\x46\x84\xb9\xa8\x95\x96\xd1\x7e\x87\x32\xc6\x08\x03\x1b\x5e\x04\xdd\xae\xcf\x2b\x91\x25\x25\x90\x76\x6b\x47\x85\x8b\x71\x20\xa7\x72\xc6\x8f\x0b\xd9\x6d\x55\x2e\x4f\x0a\x40\x17\x33\xfb\xd5\xfb\xf7\x2b\x1e\x4b\x2c\x0c\x4c\x5b\x18\x78\x2e\x7d\x5c\xad\xf3\xa8\xc7\x93\xd0\xa1\x4e\x1f\x7e\x3a\x20\x23\x01\x65\xd6\x6f\x86\x8b\xc5\xe3\x38\xb8\x9a\x0a\x5c\xe4\x36\xaf\x50\xe0\x9d\x9c\x56\x9e\x8e\x46\xf3\xef\x1b\xa3\x0c\x99\x40\x2f\x43\x88\xda\x3c\xbd\x37\xfb\x06\x43\x56\x16\xf6\x3b\xa5\xde\x1c\x9a\x0c\x79\x24\xe7\x8e\x16\x4b\xd1\x36\x23\x0d\x3c\x26\x6a\x14\x4b\x51\xd7\x59\x58\xda\x75\x86\x88\x08\x7d\x5f\x53\xcc\xa0\xcb\xd4\x8a\x93\xbc\x0c\x0a\xed\xd2\x4e\x79\xcf\x9c\x4b\x55\x2c\x45\xef\x5b\xaf\xc1\xee\x30\x76\x52\x75\xc1\xef\x82\x7b\x42\x71\x31\x22\x20\x88\x95\xac\xe7\x79\x2f\x66\xbc\xfc\xea\xc8\xeb\x6e\x2f\x96\xa2\x7f\x59\x9f\x0d\x62\xae\x69\x22\xa2\x79\xf4\x75\x34\x46\xc8\x8a\x5d\xa5\xb8\x46\x17\x9d\xcd\xd2\xee\x90\x05\x09\x40\xca\x16\x8a\x53\x88\xe9\xf3\x55\xf6\x02\xad\x15\x4b\xd1\xa4\xb7\x53\x0f\x58\xde\x18\xcb\x93\xcd\x8a\x88\x0f\xf6\xeb\x98\x01\xcc\x3e\xf7\x8f\xab\x35\xe1\x6f\xcf\x43\x6e\x92\xcd\xe7\x3f\xba\x42\x7d\x3c\x84\xc5\x29\xc6\x8f\x8f\xc9\x81\x53\x05\x33\x86\x18\x29\x9a\x88\x21\x2e\xd9\x9e\x3f\xa6\x78\x97\x07\x36\x43\x0e\x47\xf8\x44\x2b\x47\x69\x59\x06\x43\xa6\x83\x01\x1f\x34\xff\x25\x78\xaf\xb3\x67\xb5\xcf\xe6\xfe\x00\x03\x5f\x6e\xdd\x8a\xc4\x4c\x08\x5f\xeb\xde\x94\x67\x3c\xa3\x01\xe1\x82\x53\xc6\xc8\xb1\x57\x69\xf7\xe1\x9b\x94\x83\x63\xf5\xf5\x7f\xfb\x60\xa5\xb7\x4d\xa8\x85\x00\x70\x3e\x6e\xb2\x92\xfb\xd9\x94\x05\xd8\x83\xd1\xce\xb9\x55\x0a\x6e\xbe\x03\x12\xe8\x7f\x6e\x1f\xdd\xf2\x5e\xd4\x4d\x31\x61\x9d\x8a\x51\x0c\x02\x07\x27\x70\xe8\xa3\xe7\xf5\x51\xa5\x5b\xf7\xb2\xe3\xf7\xdc\x0e\x30\xc4\x2b\x5e\xbf\x62\xd2\x8a\x96\xcb\x7f\xef\x9c\xbc\x1c\x67\x4e\xd7\xec\x62\x29\xfa\xf2\x3e\x49\x55\x71\xe4\x94\x2d\xfa\xed\x76\xd1\x74\xa4\x0c\x23\x31\x39\xef\xcd\xff\x7e\x92\xa6\x44\xc2\x70\xd2\xb9\xfc\xba\x56\x0e\x37\x29\xab\xd5\x1d\x24\xe8\x7d\xf9\xdf\x4e\x56\x38\xc4\x38\x48\xa8\x4c\xc6\x57\x9f\x81\xf6\xc9\xad\x19\x2a\xc5\x52\x5d\x9b\x8f\x71\x2f\x4e\xc8\x26\xb6\xb2\x4b\x15\x5a\x14\x8a\x0b\xb2\x2d\x1a\xda\x75\xda\xac\xa9\x33\xe7\xcc\x2c\xf2\x31\x5c\xe1\x33\x13\x84\x27\x24\x28\xff\xc4\xd9\xce\xc9\xf9\xc3\x14\xe5\x2c\xd3\x26\x55\x80\xfb\x84\x6b\x64\xaa\x0a\x68\xbf\xe4\xc4\x1a\xdf\x7f\xbc\x22\x6f\x13\x30\xea\xe0\xd0\x6d\x15\x68\x3d\xad\x4c\xb8\x66\xb7\xc7\x2b\xd2\xf8\xe6\x3b\xaa\xbd\x05\x67\x20\x12\x0a\x33\xc7\xef\x2a\x5a\xcf\x50\x43\xf2\x02\x72\xcd\x40\xf1\xf2\xab\x76\x7c\xa4\xb1\x15\xba\x86\x70\xb9\x4c\x84\xcd\x52\xe1\xf3\x43\x45\x47\x06\x26\x99\x7c\x53\xec\xde\x24\xef\xc2\x77\x49\x60\xd7\x12\x33\xfd\x8f\x3f\x90\x14\xf5\x26\x8f\xb4\xbb\x02\x88\x7a\x95\xf8\x2d\x33\x8e\x14\xf8\xc0\xf3\xba\xde\x09\x6b\x19\x43\xb7\x69\x3a\x10\x82\xc9\x20\x74\xb6\xbe\xbb\x48\x9d\x78\xd5\x29\xe3\x1e\x4a\xc6\xed\xab\x5a\xbc\x21\x04\xf5\xf3\xe0\x98\x61\x49\x61\x61\xd6\x6c\xea\x08\x0c\x73\xee\x67\x07\xc4\x84\xdc\x42\x75\xa8\x48\xa3\xa3\x0f\xc8\xb8\xcd\xd5\x75\xf3\xd3\x17\x65\x4b\xbe\x19\x33\xe1\x43\xfb\x1d\x12\xd2\xf9\xc4\x77\xc1\x4f\xbb\xd4\x6b\xbc\x32\x51\xa2\xcb\x59\xad\xa5\x59\xf1\x87\xa9\xe3\xb5\x50\x13\xf8\x21\xd3\xcd\x1f\x83\x83\xd9\x34\x97\x54\x44\x05\x91\xdf\x32\x4a\x01\xc7\xb9\x6e\xb7\x8a\x29\xc1\x42\xed\x68\x29\xe5\xa9\xd4\xc4\x51\x2a\x81\x9c\x09\x6b\xf8\x7f\xd7\xb3\x35\x64\xe1\xa4\xa1\xf4\x8d\x47\x20\x67\x5a\x8e\x7d\xca\x82\x56\xa6\xd2\x75\x13\x34\xad\x22\xe4\xa2\x6a\x82\x95\xfb\x74\x41\xfb\x21\x35\x03\xca\x44\x82\xf2\xdf\xed\xad\x19\x3d\x68\x4f\xbc\xff\xcd\xcb\x53\x49\x26\xd2\xb2\xda\xaf\xd2\xfc\x96\xcc\x6e\xae\x36\x20\xba\x39\x8b\x4f\xc9\x3a\xa3\x42\x7c\xdb\xe3\xe5\x43\xee\xd2\x8b\xdb\xa4\x2e\xa5\xfe\x99\xd1\x88\x37\x20\xec\x2c\xca\xcc\x99\xa9\xa2\x92\x5e\xe6\x9c\x6a\xe3\x6b\xc7\x5a\x9c\xad\x82\xc4\x31\x24\xbf\xa8\x13\x24\xd8\x66\x4e\x2b\x96\xa2\x2f\x6d\x84\xe7\x26\x5a\xbf\x2d\xbd\x93\x29\x67\x46\x37\x5b\x9b\x6c\x4e\x3a\x11\x28\x57\x34\x77\x17\xf0\xd7\x28\xf5\xe6\x7f\xb2\x38\x4d\x29\xc3\x5a\xab\xd2\xd1\xc6\xb7\x75\xe1\x8e\x78\xf3\x27\x71\x3e\x37\x45\x9b\xee\x05\x36\x12\xca\xab\xeb\x8f\x8f\x90\x7e\x41\x4e\xa6\xc1\x35\x49\xe8\xd4\xce\x47\xac\x4a\x7c\x1b\x37\x24\xbd\xfa\xf5\x9d\x19\x40\x54\x43\x18\x10\xf1\x88\xb0\x68\xb2\x8c\x4b\x57\xfb\xdc\xdf\xa7\x60\xb6\xb5\x08\x4b\x04\x89\x58\xfd\x3a\x85\x19\x1b\x17\x05\xc9\x24\xa0\x6b\xa3\xa6\xa2\x88\x91\x13\xd8\x7d\x78\xc1\x7f\x77\xac\x9e\xfa\x39\x0e\xaa\xfb\xa9\x54\x94\xf1\xf9\x63\x02\xde\x1f\xfa\xa8\x8c\xba\x71\x43\xc9\x69\x16\xbe\x35\x56\x3b\x8f\x91\x69\xe2\x3a\x2f\x8f\xdb\x41\x8e\xf4\xdb\x9a\x1c\xb1\x8f\x3d\xc0\x94\x47\x8d\xc7\xd2\x08\x31\xbd\xa3\x23\x4e\x71\x36\xea\x33\xf0\x90\xbb\x5d\x01\x22\x32\x57\xd0\x3a\xd0\x84\x25\x73\x70\xb1\x8e\xcf\x9e\x4c\x9a\xe3\x16\xe5\x2d\x4c\x63\xe4\xea\x56\x31\x61\xe0\x4f\x88\x56\xe2\x3f\x18\x43\x92\xd8\xc3\x8d\xa0\xe0\x25\xac\x11\xb2\x13\xf5\xb0\xa7\x47\xb4\x7c\xe7\xdd\xaf\x0d\x03\x30\xa3\x22\x0d\xf8\xcb\x01\xbd\xc5\xed\x85\xf1\x2b\x0a\x59\xd2\xe0\xc9\xfd\xe5\x54\x9b\x3a\x72\x6a\xbf\x46\xae\x94\x62\x29\xfa\xd8\xc5\x70\xdd\x4d\xfe\x8e\x8a\xa5\x68\x5f\x3f\x5d\xf5\xd1\x4f\x98\xe6\x6b\xde\x9e\xac\x95\x90\xbe\x5f\xa3\xdd\xb8\x2f\xf4\xe6\x6f\x5f\x1c\xae\xa0\xa8\x7a\x10\xc3\x5e\x8d\xa7\x6f\x6f\x3d\x2c\xd2\xdb\xd0\x01\x41\xb9\x94\x78\x70\xa2\xd5\x1d\x0f\x07\x9c\x30\x0f\x1b\x69\xd3\xa3\x83\x94\x60\xb8\x8e\x87\x89\x86\xdc\x5b\xac\x95\x5f\x73\xb1\xc2\x26\x0b\x7d\xbf\xc2\x59\x61\x87\x2e\x55\x7a\x3e\x88\x9f\xb0\xc1\xf3\x97\x88\x23\x9b\x11\x1a\x67\xa0\xdf\xd3\xa0\x5c\x3d\x36\xa9\x86\x0e\x81\x8a\xf8\xc4\x62\x4d\xc1\xa8\x8c\xfa\x32\x6a\xc9\x6f\x6b\x28\x7a\xc3\x98\x55\xa1\xa8\xcb\x5f\xba\x55\xe6\x38\x33\xe3\xa8\x0e\x7e\x7a\x85\x4f\x1f\x1d\xab\x10\x2a\x58\x1f\x48\xbf\x42\xfb\xd3\xc9\x38\x40\x8c\x47\xa3\x73\xc2\xa0\x61\x59\xbb\x0a\x4c\x1c\xa4\x6b\x60\x37\xb0\x2f\x5c\x87\xe3\x45\x73\xf5\x49\x0d\x78\x03\xbd\xc6\x53\x27\xd2\x56\xdf\xb4\xe2\x74\xde\x07\x5b\x2c\xd3\x3e\xaa\xd2\x27\xbe\xdf\xa9\x74\xc1\x3f\x1c\xff\xf1\x87\xb7\xc9\x3e\x16\xe7\xcc\x28\x53\xa6\xfc\xb7\x9f\x4d\x7f\xbd\xca\x9b\xe6\xff\xb8\x5d\x63\x1c\x10\x4f\x74\xd8\xa3\x5f\x2a\x98\xd9\x38\xe5\x85\x2d\x70\xcb\x3b\x83\xc4\xe5\x22\xd3\x86\x29\xd3\x7b\x67\x55\x5c\xac\x49\xbd\x00\x73\x5f\x70\xe3\x8e\xb1\xaa\x50\x3a\xab\x03\x1d\xd0\x70\x8f\x28\xb0\xf7\x38\xe5\xe4\x25\x69\xee\xe2\xe4\x83\x4d\xca\xc0\xa9\xe8\xd6\x43\xc2\x09\x0f\x7b\x7e\x7c\x08\x1f\x5f\x2e\x5b\x3c\x34\x0c\x7c\x62\xa5\x72\xfa\xf9\x05\x8a\x35\x0e\x65\x55\x7e\x78\x15\x9a\x3b\x2f\x57\x6a\x1a\x0e\x97\x50\x9a\x6d\x57\x14\x54\x19\x38\x97\x26\x52\xb9\xff\xf5\x92\x66\x31\x85\x03\xcc\xdc\xf8\xc1\x00\x02\x3f\xba\x45\xe8\x42\xce\x9c\x36\xab\x58\x8f\xc3\x53\xfc\x57\x73\x4f\x29\xb9\xe4\x9c\xe9\xdc\x06\xe4\x7e\x31\xeb\x6b\x50\x27\xe4\x10\x31\x28\x8a\x9f\xee\x84\x78\x93\x9c\x30\xbc\x9d\xdb\x5c\x9c\xcc\x82\x99\x87\x5b\x91\x0c\x85\xfe\x8a\xac\x74\x22\xdf\xb1\x52\x90\x38\x1a\x54\x0c\x8c\xa6\x94\x15\x95\x5f\xe4\x38\x04\x27\x6a\xbc\xb9\xdf\x3c\x2e\xd3\x3c\xf0\xe3\xe3\x3b\xee\x13\xf3\x14\xf5\xb5\x4a\x85\x38\x04\x05\xad\xfb\xf7\x27\xe5\xa9\xd9\x58\xe4\x77\x9b\x36\x45\x1e\x72\xba\x7d\xe2\xf7\x21\x45\xf3\xa1\x3b\x60\x23\x23\xaf\x1b\x12\xa8\x01\x6b\xb4\x4a\x9b\x51\x6e\xf8\xc7\x33\x47\xf7\xc5\x16\x3f\xfe\x7a\x18\xe0\x24\x43\xbd\xe2\xb0\x52\x9a\xa2\x1a\x07\x28\xcd\xd6\x3c\xd2\x03\x16\x3a\x89\x2a\x63\xfe\x68\x5b\x82\xe4\xab\x01\x03\xf5\xcd\xdd\x12\x2d\xc8\x14\xfb\xc7\xdc\xa7\x07\x0f\x6d\x26\x7d\x3f\x12\x84\x09\xfb\x70\xf5\x54\x19\x1a\xb8\xb2\x76\x85\x73\x51\x8c\x73\x81\x4e\x18\x00\x51\x33\x41\xad\x1f\xba\x2f\xbb\xdf\x4d\xe4\xd6\x11\xa9\x7a\xd0\x78\x8a\x86\x3c\xde\xb7\x34\x98\xe8\x37\x5c\x15\x0d\x4b\x4e\x70\x5c\xe6\xbe\x02\xa0\x50\xdb\x6f\xc3\x65\xe9\x26\x24\x8e\x82\xa9\x7a\x75\xa8\x46\x04\x60\x28\x51\xb9\x3f\xf6\x36\x7c\xd6\x7c\x27\x3e\x21\x15\xb6\x6f\x43\x1b\xa6\x62\xc7\x81\x23\x7a\xf3\x72\xd5\xbe\xd7\xe7\x45\x40\xfe\x19\x4f\x28\x87\x86\xdc\xf7\x16\x16\xd9\xeb\xef\x48\x1d\x9d\x50\xa9\x03\xf3\xed\x02\xe9\x79\x53\xe6\x3c\xc9\xfd\x75\x8d\xe6\x84\x94\x5a\x73\x65\xed\xd2\x43\x43\xb7\x85\x6c\x70\xed\x2a\xd1\x0c\x58\xf2\xb0\xde\xab\x69\x62\x3f\xf1\x8c\xbc\xdd\x86\x2d\x55\xe2\xec\x91\x1e\xb1\xb8\x17\x75\x28\x0b\x87\x58\x3c\xba\xe6\x0e\x3e\x94\x9d\xb4\x23\xc7\xe1\x6a\xf2\x7d\x2c\xe3\xdc\xe5\x6f\x6a\x2f\x94\x61\xa4\x34\xe2\x72\x4f\x48\xdf\x3d\x1f\xb5\x32\x06\xbe\xb9\x5a\xa1\x1d\x50\xb3\x06\x1d\xf9\x21\x05\xc5\xea\x0e\x59\x16\x24\x17\x85\x92\x23\xe4\x63\x10\xf1\x02\xe1\x12\xd1\xff\xa1\x0f\x24\x85\x68\x7c\xc8\xfc\xe7\xc9\x16\x32\x5c\x32\x82\x33\x7e\x37\x00\x9e\xc0\xcd\x65\x64\xa1\x04\x7e\x6d\xfc\xb5\xae\x90\xe7\x91\xe3\x80\xd7\xbf\x71\xef\x4e\x0d\x0d\xc6\x90\xd0\xcb\x8f\x43\xd1\x17\xe7\x6a\x98\x6d\xcc\xb5\x56\xe0\xf0\x1f\xb8\x5e\x07\x92\x85\xcc\xb7\x90\xd0\xea\x3a\xff\xb2\x06\x0c\x09\x50\x39\x5e\xc8\xe2\x93\x77\x6d\xd5\xe1\xc7\xa6\x02\x42\x9b\xb1\xb1\x65\x01\x50\x13\x99\xdd\x22\xb3\xfb\xcb\x98\x3e\x7d\x3c\x78\x46\xf4\xc8\x58\x21\xd5\x8b\xea\x41\x02\x5f\x30\x36\x2c\x80\xe6\xca\x2d\xa8\xbb\x89\x79\xc8\x53\x60\xc9\xf7\x8c\x91\x88\xb2\xf6\x99\xf1\xc3\xfe\x9b\xc1\xda\xd7\x97\x29\x93\x66\xb9\xf9\x9b\xde\xb9\x42\xbb\x71\x86\x31\x34\xe8\xc5\x0a\xf5\x0f\x64\x2b\x4d\xcc\x10\xf0\xac\x0f\x6c\x94\xe1\x24\x21\xef\xc6\x7f\x70\xf8\xd0\x00\x91\x94\xc4\xf7\x30\x70\xaf\x02\xb0\x22\x81\x03\x98\xe8\xaf\xcd\x83\x9b\xb8\x2d\x5e\x12\xfa\xfa\x9c\xa8\x5d\xb2\x5f\xc7\x38\x3e\x96\x45\x2d\x34\x6b\x80\x66\xc5\x48\x7c\x3b\x05\x7b\x3f\x59\xd1\x11\x0f\xfc\x3c\x4a\xe6\xe2\xbb\xdf\xd4\xd8\x94\x94\x95\x49\xca\x61\x5e\xba\x40\x59\xc3\x61\xbd\x0e\x0a\x67\xcb\x1b\x3a\x1f\xb1\x42\x53\xbc\x66\x6e\x82\xa3\x8a\x4d\xf9\x01\xa3\xdd\x38\x6d\xd8\x3c\xfd\x92\x22\x9a\xce\xa3\x03\x44\xee\xab\x0e\x6b\x6a\xd9\x98\xf9\x8a\xb8\x53\xbe\x47\x93\x5b\xf4\xc9\x3a\x2e\xdd\x26\xe2\xc2\xfb\xee\x18\x96\x88\x9e\xdd\xbc\x54\x16\x5f\xef\x5b\xdb\x62\x90\xd4\x9d\xa8\xe2\xec\x7a\x42\x69\x7d\xd1\x90\x15\xc1\xa5\x29\xf7\xda\x5e\xa5\x4d\xc3\xa9\x7d\xbe\x38\x2d\x16\xeb\xd6\xda\xeb\xb8\x1b\xa2\x08\x5c\xb9\x1f\x3e\xac\xe4\x3b\xc4\x0f\xa8\x53\x2c\x45\xbf\x9e\x38\x4c\x4f\x0d\x78\xdb\xe5\x0f\x47\x34\x31\x23\xda\xf4\x1c\x8a\x2c\x21\x10\x1c\x7f\x5e\x59\x13\x7d\x90\x56\x5c\xd9\xc5\x31\x65\x84\x48\x52\x19\xf2\x7c\x12\xbf\x9f\xc7\x5f\xd7\xd5\x4a\xe3\xfc\x30\xb1\x49\xfa\xe0\xe1\x96\xfe\x3f\x27\xa8\x8b\x11\x53\xf4\x83\xa5\x57\x6a\x75\x9e\x1f\xfa\x01\x22\x9e\x2c\xf4\xf2\x6d\xfd\x75\xe7\xed\x8a\x88\x98\xd0\x73\x79\x0b\x28\x75\x92\x70\x22\x06\x05\xb9\x77\xc4\x0f\x16\x85\x5e\x15\xb0\xf4\x30\x41\xdc\x32\x40\x6d\xd2\x38\x01\x29\x3a\x28\x10\x6c\xd2\x42\xc7\xb1\x2b\xb5\x25\xdc\x44\x35\x04\x82\x94\xc9\xa9\x32\xe7\xee\xe1\xaa\x9a\xa7\x55\xc4\xdd\x00\xbe\x6b\x8c\xc9\x94\x63\xb7\x2d\x9f\x2f\x11\x80\xa5\xde\xc2\x86\xd3\xba\xa1\xa4\x83\xec\x22\xe6\x26\x4e\x42\x04\x8b\xfb\x38\x1d\xd2\xd5\xdc\x1d\x07\x55\xe5\x34\xe9\xce\x6d\x43\xd5\x62\x22\x20\x90\xe2\x6f\xbd\x16\xb2\xbd\x1b\xd2\x49\x65\xa6\x6f\xc0\x34\xef\x68\x17\x07\xc8\x11\x83\xc7\xe8\xfe\x85\x4a\x62\x0e\x40\xfe\x52\x6f\x7e\xfd\x31\xa5\x47\x1a\xff\x7a\xc0\x2b\xb3\xc2\x55\x73\x15\x96\x1b\x43\x65\xbe\x7d\x3f\x77\x44\x6f\xbb\x7b\x72\xfa\x94\xff\xdc\x73\x32\x95\x75\x31\x9c\x9a\x0f\x29\x72\x0b\x60\xad\x2d\x82\x6c\x61\xec\x08\x49\x4a\xf7\x55\x89\x86\xdc\x75\x52\x70\xd2\x41\xf1\xf9\x75\xe0\x6c\x8b\xa4\x9c\x8d\x53\x08\xd6\xc4\x4e\x5d\x3c\x90\x81\x78\x60\x74\x42\xfb\x49\x93\x25\xcd\x48\xc3\x3c\x3a\x58\x09\x2a\x88\x57\xce\x43\xb7\x68\x7a\x09\x0c\x73\xdc\x38\x40\xb9\x7e\x72\xbb\xce\x38\xb7\x68\x93\xcb\x7e\xc3\x31\x53\xd9\x2f\x6b\x24\xc4\x41\x31\x9f\x7b\x37\x85\xf8\xb7\xfb\xed\xa9\xfc\xd9\x1d\x7c\x81\x14\x17\x12\xc7\xe5\xc0\xe0\x5a\x5f\x26\x60\xc6\xea\xe3\x9a\xdd\x1a\x66\xb8\x27\xc3\x57\x32\x7a\x4e\xcb\xc0\x38\xab\x58\xa1\x34\x28\xce\x28\x12\xb0\xd7\x28\x58\xd1\x78\xa5\x99\xc6\x6a\x20\x0b\xa9\x7f\xcb\xf1\x0b\xc2\x09\xab\xf4\xb1\x4f\x96\x92\x94\xff\xc9\x53\xd2\xa6\xcc\xc7\x66\xc8\x48\x00\x05\x41\x96\xde\xa9\x68\x55\x22\xc7\x05\x20\x57\xfb\x23\xba\x9c\x08\xad\x0b\xa8\x7e\x7e\xde\x32\xcd\x47\x2f\x8c\xd3\xb9\x00\x63\xd9\x2e\xfa\xaf\xf9\xba\x13\xb3\x43\x7d\xdc\xe0\x4d\x1a\x65\xca\x9b\xf7\x74\x87\x2f\xe4\xd7\x70\x50\x46\x8e\x03\x1d\xcd\xdc\x7f\x2b\x32\xf5\x16\x6f\x4e\xf3\x62\x69\xd1\xdd\xb2\x77\x10\x84\x7c\x4d\x17\x9c\x93\xc3\x32\x82\x40\x42\xe8\xfe\xc4\xe1\x11\xfa\xf3\x27\x0e\xa8\x63\xb0\x45\x12\x0c\x0d\x6d\x17\x95\x1a\xf8\xcb\x82\xd6\x48\x24\x3d\x62\xcd\xfd\xfc\xf1\xf1\x90\x57\xdc\xb8\xfc\x86\x1b\x17\xdc\x78\x6b\x71\xfe\x8d\x4b\x6f\x6f\x81\x15\xac\x1f\x9a\x8c\x28\x71\x00\x34\xf0\x42\x38\x57\xd9\xb9\xd8\x43\xe0\x7f\xd0\x7b\x54\x29\x4e\xd4\x39\xe3\x33\x0a\x01\xa7\x4c\x2d\xde\xb5\xb9\x6f\xab\x5c\xef\x0e\x46\x16\x57\x09\x7e\x39\x4d\xc8\xcb\x6a\x77\x20\xff\x87\x17\x55\x1b\x5e\x02\x39\x3d\xd9\xa5\x39\xf9\x7b\x98\x55\x13\xd9\xe6\x91\xef\xc1\x45\x57\x19\x12\xc0\x98\xfc\x45\xa2\x98\xf2\x1d\x8c\x6b\xf1\x5d\xb4\xbd\x07\x69\xfe\xc7\x08\x53\xad\xa1\x6f\x7d\x51\xf1\xc9\xa1\x89\x3a\x5f\xee\x8d\x15\xe9\xdd\xd5\xa8\xe2\x0c\x97\x7f\x65\xe3\x04\x6d\x53\x9b\x7d\x78\x8d\x1a\xcf\x0d\x52\x54\xff\x68\xd8\xc0\x1e\xe1\x44\xa0\x8d\xed\xca\xf4\x91\x21\xd0\x61\x33\x46\x45\x43\x45\xca\x57\x21\xa8\xe8\x07\xdd\x5c\x74\x7c\x8b\x64\xfb\x20\x4f\x51\xa4\xca\x8d\x78\x5b\xea\x37\x58\xa1\x59\x6b\xd5\x1e\x9b\xb2\x5a\x4a\x5e\xe0\x3a\xb1\xb0\x4b\x84\x76\x3a\xaf\x30\x4e\xf5\xa4\x66\xd3\x36\xf2\x12\xb5\x99\x95\xe3\x74\xf3\x2b\x1c\x88\xca\xcc\xf8\xc6\x54\x0d\x75\xd3\x0d\x20\xc5\x7b\x77\xe9\xc2\x10\x9c\x87\x0b\xa7\xc8\x4f\x0e\x41\x6d\x40\x65\x19\x66\x3c\xb7\x5b\x88\xe1\x51\xc7\x01\x9b\xa1\xe8\x8f\x59\xa9\x78\x87\x76\x63\x18\xf8\x1b\xcb\x37\x68\x51\xc8\x26\x4e\x76\x4e\x92\x1b\xb3\x49\x03\x58\xdb\x04\xdc\x93\x4b\xd1\x9e\x67\x47\x29\xbd\x6a\x47\x38\x0e\xc1\xfc\x2b\xf7\xe8\x6a\x6d\x83\x21\xdf\x17\x50\x6e\xeb\xd5\xb4\x3c\xb2\x69\x0b\x1f\x3e\xb7\x4c\xd1\x43\x46\x41\x40\x99\xc7\xab\x9c\x35\xed\x82\xaf\x15\x20\x8b\x84\x2e\xff\x92\xcf\x1e\x14\x85\x28\x6d\x60\x86\x49\x95\x27\x2c\x23\xee\x97\xcb\x5b\xea\x58\xbc\x21\x9f\x41\x1d\x7b\x38\x60\x89\x62\xd4\x85\x47\xb5\x1b\x24\x15\xa1\x3d\x11\x8d\x67\xf0\x95\x36\x72\x2a\x42\xba\x33\x77\x34\x50\xb4\xb7\x09\x76\x04\x31\xdb\x58\xf6\x8c\x7e\x4c\x59\xd7\xb0\x32\x2b\x96\xa2\x7b\x36\x4a\xbc\x7e\x0f\x26\x41\xfc\x02\xb1\x0a\x84\x59\xcd\x12\x7f\x68\x14\xff\x0c\xfa\xcc\x67\x05\xcb\x10\xf9\x3e\x05\xff\x09\x2e\xcd\x34\xb0\x4d\x61\xd3\xb9\x24\x60\xc4\x57\xb2\x9a\x13\x87\x64\x18\x28\x63\x3e\x0e\x8d\x06\x3e\x93\x0d\x58\x0e\x2f\x0e\xe3\x4b\xbe\xf9\xde\x16\xe4\x61\x40\xbc\xc4\xf6\x3e\x37\x7d\x96\xc2\x11\x83\x64\x3e\xde\xbc\x72\x69\xdc\xa4\x08\xb7\xd5\x11\x11\xf5\x55\xe1\xce\xad\x0a\xea\x9c\x01\x73\xb1\x14\xdd\xf1\x9a\xf6\x65\x21\x63\xd8\x33\x45\x81\xf8\xe4\xb8\x2b\x54\x98\x12\xf7\x78\xcb\xee\xb8\x67\x4e\x2a\xcc\x72\x97\x82\xa8\x5b\x7c\x9c\x7d\x76\x37\x3c\x3d\x90\x1d\x47\xfc\x75\x1b\x95\xed\x69\x94\x35\xb9\x16\x6f\xf4\xb0\x71\xb5\xb6\x8e\x91\x5b\xa7\x48\x34\x1b\xb2\x5d\xb5\x1d\x92\xe5\x4b\xe0\x6d\xdc\xda\xce\x4f\xa4\xe2\xad\x36\x66\xd8\xc5\x41\x37\x6e\x50\x25\x35\x8b\x66\x8d\x53\x96\x97\xa2\x70\x13\xfd\xab\xad\x4d\xe5\x50\x52\xd6\x5a\x2f\x64\x77\x7c\xd7\x1c\x51\x9c\x0c\x5c\x74\x69\x92\x04\x72\x20\x68\xfc\x6f\x57\x2a\x14\xdc\xc4\x19\xa8\xbd\x58\x8a\xcc\xfe\x50\x2f\x10\x0f\x85\xd5\x30\x41\x6e\xf5\x1a\xaf\x6a\x3e\x8a\xc8\x23\x6e\x9c\x2a\x0a\xc5\xf1\xd3\x72\x80\x5a\x6d\x31\xcf\xca\xdf\xfb\x96\x14\xec\x59\x1b\xbf\x3f\x65\x85\x6d\x6a\x81\x20\x59\xc4\x14\xb9\x6f\xa9\xb7\x30\xbe\x2b\x3d\x73\xac\xa6\x0a\xb3\xf9\xe4\x36\x65\x31\xc5\x35\x52\x99\xc3\x4c\x65\x23\xf2\xc5\xf9\x70\x27\xa6\x8d\x18\x32\x03\xcc\x08\xa8\x21\x3b\xc7\x27\x6b\xe5\x05\xa1\x5e\x62\xcc\xa6\x5f\xf9\x80\x81\x1a\xb2\x21\xc4\x89\x39\xeb\xfa\xb6\x6c\xa8\xb3\x43\xe4\x55\x01\x1d\x95\x1c\x3d\xcb\xf7\x6a\x8a\xef\xa0\x31\xcc\x23\xcd\xdf\x3d\x33\x4a\xc9\xb7\xe2\xfa\x55\xd9\x08\x7f\xd4\x34\x8a\x4d\x12\x90\x1e\xec\xf9\x76\xb2\xd5\xf2\x3b\xe1\xdb\x8b\xb7\x06\xfc\x15\xf5\x65\xcb\xf0\xa8\x18\x2d\x23\x87\x83\xb9\x73\xab\xee\x9e\xe8\x29\x08\x74\xe2\x12\x70\x0f\x6a\xbd\xe9\x6d\xf2\xc8\xb3\x31\xa3\xa0\x8f\xf3\xed\x97\x5b\x0c\xd5\xe3\x55\x29\x70\x1e\x5f\x6a\xb4\x70\x28\xc1\xf1\x18\xc6\x56\x5f\xd9\xaf\xa0\x1d\x1c\xd4\xdd\x64\x5c\xcd\x27\xfe\xdc\xbd\x1b\x95\x91\x77\x28\x00\x84\xb9\x89\x4f\xff\x3f\x9c\x2a\x21\x87\xf8\xe8\x49\x45\x7d\x9b\x7b\x04\x17\x4b\x13\xf5\x6e\x2d\x22\x9e\x88\xbd\x3d\x87\x61\x5b\xc7\x91\xbd\x69\x63\xc7\xe5\xd8\xd4\x07\x46\x7b\x2a\x0a\x03\xcc\xa8\x90\x30\x79\x8d\x16\x19\xc3\xd5\xa4\x80\x47\x91\xf8\xdf\xaf\x79\x5b\xab\xeb\xc3\x20\x48\x5b\x05\x87\x23\x99\xa0\x5c\xed\x20\x56\xe5\x38\xee\xfc\xa5\x0b\x2e\xd3\x0b\x3d\x8e\x56\x8a\x5e\xe8\x50\x55\x17\xc3\x32\x66\x01\xdc\xe0\xec\x6d\x72\xdb\x04\xd4\x75\x65\xce\x16\xfd\xe9\x8c\x26\x62\x0d\x26\x5a\x04\x27\x7c\x83\xfc\xe3\x8f\x0d\xce\x4c\x97\xf8\x12\x38\xf3\xb0\x9c\xa8\xcd\xea\x98\xc9\xdb\x9d\xb7\xcb\xc3\xd1\x22\x0c\x9b\x01\x8d\xcf\x98\xe1\xf3\x5b\xb0\x36\x3c\xb9\x80\x2b\xfb\xab\x03\x4b\xeb\x56\x0c\xc9\xc6\xdd\x3b\xb3\xf9\x75\x85\xb2\x2a\x69\x60\xce\x44\xe6\x37\xff\xd9\x7e\x52\x65\x84\x29\x99\x51\xbe\x5b\x2a\xfd\xad\x45\x3c\x15\x0f\x35\xd0\x8e\x5f\xa7\xf2\xd9\xde\x20\x3c\x6b\x4b\xa8\x96\x11\xd8\xc8\x3d\xb5\x4f\x08\xb5\x89\x11\x37\x24\x48\x1f\x3c\x31\x5c\x59\xf2\x3e\x84\xb9\x38\xac\x4c\x58\x9e\xc1\x59\x94\x21\x7b\xd9\x30\x3c\xe3\xb8\x1b\x67\x18\xf1\xa7\x6c\x6c\xd1\x69\x9b\x39\x1d\x6e\x6b\x81\x82\x6f\x9c\xde\xd9\x3e\xad\x2b\xfe\x94\x3d\x6f\xc1\x35\x52\x66\xda\x18\x80\x75\x70\xa2\xdf\xa3\x95\x68\x3e\x29\x63\x46\x38\x1a\x31\xb5\x43\x2d\xa7\xea\x58\x9d\xdc\xfd\x6a\xc4\x66\xc8\x8a\x6f\xf6\x1d\xc4\x81\x38\x13\x94\xae\x2e\x75\x44\x5f\x2b\xba\x67\x90\x44\x87\x95\x43\xec\xd1\x94\x21\xbe\x60\x7b\xf6\xe2\xe7\xcc\x12\x6c\xe1\xfb\xf7\x69\xdd\x24\x04\x5d\x6e\x81\x2a\xbb\xfc\xc1\x21\x72\x14\x98\xd0\x54\xf2\xbb\xd7\x24\xa0\xa9\xd4\xde\x35\xff\x90\xc6\xae\xb1\x58\x58\x4d\x88\x48\xb9\x0b\x6f\x68\x8d\x5a\xa8\x0f\xbb\x05\x46\x36\xff\xf7\x0f\xcb\x94\x59\xa1\x16\x44\xff\xa7\xac\x55\xcf\x21\xa3\x75\x9c\x9a\xe2\x3e\xf0\xfc\x48\x25\x53\x60\x01\x31\x43\x07\x31\x3e\x21\x7d\x74\x80\x0c\x0b\x4d\xca\x18\xef\x77\x15\xfa\xd7\xd3\xdb\xa9\x85\xcd\xe4\x8c\x78\xbd\x33\xfb\x46\x20\xef\xe5\xf8\x08\x31\x9d\x3c\x3f\x42\xea\x26\x04\x98\x05\x30\xc4\x96\xc7\xd7\x8a\x5d\x0a\x9c\x1f\x67\xf3\x99\xc2\xf4\xa9\x10\x72\x16\xcb\x61\x6d\xb4\xa4\x7f\x76\xe7\x36\x68\x80\x8b\x55\x81\xf8\xe6\x65\xdf\xa9\xcd\xca\xf8\x91\x38\x45\xe4\x59\xc5\x2a\x82\x11\xcd\x29\x45\xc1\x06\x05\x7e\x40\x3d\xac\x7e\xdf\x02\xd5\xdd\xc1\x25\x70\x36\x00\x14\xd7\x7c\x18\x8e\xc3\x45\x28\x50\x65\x7e\x8c\x1f\xf5\xd7\x88\x3b\x73\xe6\xcc\x4c\x26\x45\x53\x83\xb4\xe7\xd2\x8d\xac\x0c\x97\x7a\xec\x69\x0d\x56\xeb\xe3\x4a\x98\x90\xc4\xbc\xb3\x8a\xde\xa7\x1d\xd7\xe4\xb4\x6e\xc7\xa7\x48\xf4\xf3\x73\xe9\x71\x5e\xf7\x95\x1a\xb4\x30\x79\xbb\x6e\x28\xb3\x2e\x69\x2f\xe7\xfe\xfe\xb8\xe6\xb3\x83\xc2\x8a\x8b\x3c\x4d\x07\xf7\x8b\x47\xb3\x54\x60\x6c\xd6\xfc\x00\x13\x4f\xc5\xca\x1b\x03\x2a\xd9\x62\xb0\xc6\xb0\xeb\x10\x0f\xe8\x50\x69\xf2\xf5\x8f\x13\x35\xef\x50\xd3\x66\x38\xde\xac\x19\x39\xa0\xab\x0d\xc1\x81\xa8\x8b\x24\x29\xf7\xbd\x87\xe4\x62\x81\x86\x2b\x56\xf3\xf2\x5c\x61\xb0\xcc\x59\x44\xb7\x34\x43\xb4\x35\xa2\x03\xda\x53\x08\x30\x12\x0f\x35\x47\x5e\x6f\xa5\xf5\x50\x16\x10\x04\xab\xe6\x0f\x03\x84\xb6\xb3\x83\x11\x68\x58\x18\x0f\x45\x5a\x7f\x8a\xeb\xda\x0a\x47\xcf\x89\xeb\x94\x59\x41\xc8\x4c\x1b\x81\xc3\xc4\x3d\x17\x34\xfc\x11\x0d\x19\x80\x6a\xbf\x3c\x49\x2f\xe8\xad\x74\xa6\x62\xfc\x74\x91\x26\x6c\x6f\xd3\x7a\x91\xb3\xf3\xba\x69\x58\xb4\x18\x15\x89\x4b\xe1\xda\x2d\x4a\x45\x41\xdd\x32\xe7\x9e\xc8\x56\x58\x05\xc5\xcb\xe4\x93\x27\x86\xab\x24\x24\xf9\x80\xa6\x1d\xd5\xb2\x45\x6a\x91\x4a\x77\x2a\x59\xd7\x6f\xeb\x00\xf1\x70\xe3\x48\xf0\xdc\x4e\x6d\x08\x99\xb0\x6d\xf3\x13\x37\x66\x7f\x72\xb5\x9b\x34\x9d\xee\x58\xad\xa9\x96\xfb\x36\xad\x69\x48\xbf\x79\x8a\x94\x85\x4b\x3c\xe2\x72\xf2\xe9\x67\xc1\x4e\xaf\xb8\x04\x55\x28\xa7\x87\xaa\xfa\x48\xdb\x67\xe9\xad\x42\xda\xa0\xb5\x04\x86\xf7\x5e\x7f\x2d\x9d\x10\x6d\x52\x6e\x7d\xf7\xc1\x05\x70\x9c\x2c\x44\xac\x86\x64\x6d\x16\xfd\xdf\xf3\xfa\x5c\xc5\xc5\x6e\xbc\x46\xf9\x91\x9c\xfb\xd8\xb5\xa9\x67\x7d\x1d\x25\x40\xad\x55\x03\x06\x8a\x1c\x08\x08\x7e\xc6\xc8\x93\xd9\x07\x61\xd3\xa6\xf8\xfb\x0f\x3c\x91\xfd\xf8\x2a\xea\xa9\x33\x2a\x9e\x53\xe4\xf5\xbb\x32\x83\x53\x24\x66\xeb\x30\xff\x70\xff\xec\x86\x2c\xc7\x2b\x3e\x40\x56\x66\x13\x3d\x08\x12\x66\xc5\x9b\x18\xf2\x32\x11\xc6\x98\x20\x0c\xd4\xc1\x82\x29\x5e\x26\xc3\x8e\x67\x90\xf5\xbc\x0a\x6b\xdb\x34\x2a\xc9\x83\xe3\x2a\xa9\x4c\x15\xc4\x58\xfe\xfe\xd5\xf2\x0f\xda\x85\xcc\xd7\x6d\x4f\x68\x07\x52\xc8\x85\xe3\x13\x99\x5b\xe3\x3f\x26\x6a\x1a\x8d\x4e\xb7\xef\x23\xad\x87\x31\x5c\x11\x4d\xf3\xd5\x20\xe4\x6b\x10\x65\x21\x24\x2e\xde\xf3\xec\xd7\xb2\xa0\xd4\xb2\x60\x2e\xfe\xee\x51\x78\x2d\x55\xe1\x6f\x93\x5b\xd9\xae\xe5\x40\xa1\x97\x58\x89\x47\x0f\x69\x91\x92\x73\x0c\xda\x61\x8b\x8e\x9c\xa5\xab\xb9\x23\x13\x9b\x0c\x55\x02\xe0\xfd\x14\x2e\xd7\x3c\x5b\x13\xb1\xde\x74\x07\x15\x9f\xc9\x5e\xe2\xd5\x10\x2d\x7a\x5e\x1e\xa9\x2f\x36\x44\x84\xab\xe9\x1e\xc5\xe6\x30\x31\xc1\x2f\x96\xa2\xef\x0b\x0a\x50\x2a\x4c\x0d\x03\x98\x59\xaa\x67\x0e\x77\xa7\x2e\x96\x22\xe7\x00\xbc\x6b\x14\x04\x21\x60\xe4\x0b\xb3\x4e\xc8\xf8\xe4\x22\xcf\x12\xdd\x15\x23\xa7\xcd\x0b\x5d\x6a\x49\x2e\x45\xe1\x03\xc7\x34\x21\x8e\xb2\xb6\xde\xbe\x3f\x29\x3d\xd2\x2c\x54\x53\xe5\xd2\x73\xbf\x3a\xa0\xa3\xa8\xe2\x18\x9d\x26\xbd\xb9\x1f\xde\xab\x8f\xdf\x84\xef\x09\x04\x60\x77\x99\x6e\xef\x55\x49\x41\xba\xff\x33\x68\x54\x4b\x7e\x8c\x59\x37\x4f\xff\xff\xad\x9c\x40\x58\x02\x1b\xf3\xa2\xe4\x2b\x63\x75\x62\x91\xc7\x47\x3d\x69\x16\xfc\x97\x0b\x32\x00\x35\xa5\x20\x43\x7d\x82\x2e\xc4\x8a\x82\x44\xab\xbf\x60\x82\x9a\x63\x71\x21\xf6\x02\x86\x7d\xb5\xc9\x73\xd9\xca\xbe\xe5\x80\x40\x3d\xfb\x85\xa5\x57\x68\xa1\x0b\xaf\x0d\x79\x8d\x9e\x2c\xeb\xa5\x8f\x6a\xfa\x21\x73\xba\x66\x0a\x23\x52\xf2\x84\x6c\x2d\x57\x30\x67\x6e\xe4\xae\x3d\xa2\x0a\x7c\x84\x4c\x0c\xe6\x34\xd6\x08\x2f\x10\x13\x09\xef\x82\xff\x3c\x14\x1c\x8b\x4b\x8b\xf8\xd4\xec\xb2\xc9\x00\xe5\x5d\xb0\x98\xd3\x8c\x14\x84\x55\x2a\xaf\x52\xea\xcd\xcf\x13\xba\x68\x5c\x05\x0b\x50\x77\xb9\x4f\x36\x84\x1e\x18\xa3\x0d\x22\x32\xd8\x57\x15\xe0\x4f\xdd\xa1\x41\xfc\x5a\xac\xe1\x2d\x26\x57\x01\x46\xc2\x65\x2a\xf7\xe6\xfe\x09\x7a\xc4\x46\x02\xe8\xa9\x4e\xa6\xae\xd7\x66\x40\x9c\x0e\x07\x00\x08\x5e\x9f\xf4\x0a\xeb\x78\x95\xb6\xb7\x00\x10\xb0\x7d\x49\x2f\x9d\x56\x30\xac\x73\xe2\x27\xbf\xfa\x55\x39\x9f\x30\x9d\x90\x8f\x3e\x3f\xb1\x65\x84\xda\x18\x41\x81\xcc\xde\x07\x8c\x93\xee\xce\x73\xb8\xd2\xc2\x3f\x6b\x02\x9b\x15\x52\xe1\xc0\xdd\x52\x6f\x6e\xd0\xdc\x6c\x12\x94\xe8\xb1\xf9\x6a\x42\x95\x5f\x52\xd0\x0e\xe4\xd0\xe7\xa9\xb8\x30\x33\xfd\xc4\x3e\x2d\x58\x51\xe2\x88\x23\xe4\xf8\x51\x0d\x77\x8a\x1c\x37\x19\xe1\x37\x06\xb6\xac\xb9\x22\x76\x89\x97\x4e\xcf\x72\xdf\x3b\x98\xce\xfc\x78\xe2\x12\x15\x1a\xe9\xc3\x99\xdd\xc5\x15\x59\xaf\x8a\xb4\xb3\x8d\x04\xd0\x66\x1e\xb6\x52\xb3\xe4\x20\xd4\xc3\xc2\x18\xa6\xd4\x5b\x68\xbf\x5b\xb5\x1c\xa3\x5c\x99\x2b\xba\x66\xa2\x8c\xf8\x5e\x06\x75\x34\x58\x3f\xbb\x83\xf4\xa3\x8c\x9f\xee\x10\x23\x0c\x3b\x53\x34\xac\x67\x52\xcb\x8b\xa4\x7a\x64\xce\xc5\xaa\x0e\xa1\x40\x31\xe6\x4f\x0c\x55\x00\x79\x21\xe1\x82\x80\x5b\x1b\xd9\xc7\x53\x11\x8c\x36\xf9\x5a\x4e\x6a\xc0\x7e\x0f\x37\x13\xe3\xf0\xe8\xfb\x0f\xa6\x38\x72\xc6\xbf\x5d\x51\x48\x7a\x6c\x84\x72\xeb\x19\x46\xd9\xf9\xe3\xfa\x8b\xb6\x2c\x07\xa7\x21\xe9\xc2\xe4\xb1\xda\x01\xe1\x93\xaa\x97\x70\xca\xe2\x4a\xea\xa7\xcb\x60\xe3\x25\x7a\x53\xf1\xf3\x19\x3d\x36\xf9\x37\x6a\x85\x66\x9c\xb5\x46\xd7\x97\xa5\xf4\x3f\xef\x44\x8c\x9c\x94\x7d\x8d\xd4\x03\x15\xda\xe8\xc4\x26\xdd\x59\x05\xfb\xbc\xe5\x04\x51\xe9\x9c\x00\x3a\x2f\xbb\x7e\xf9\xc7\x6e\x5c\x5e\x2c\x45\xa3\x87\x02\xe2\xff\x26\xc8\x64\x5a\x2c\xa1\xfa\x0b\xf7\x07\xde\x06\x12\xc8\x99\x3f\x9c\x1a\xa9\x9d\x97\x2c\x10\x38\xa1\xfc\x7f\xad\xd0\x30\xe2\xf5\x3a\x62\xd8\x0b\xd2\x07\xfd\x95\x03\x5a\x19\xd1\xed\x07\xa0\x74\xcc\x79\x04\x42\x91\x6c\x43\x8f\x86\xae\xa3\x58\xcc\x70\x72\xff\x70\xf7\x10\x69\x5c\x1d\x24\x61\xde\x58\x9a\x7d\xb7\x5c\xaa\x1c\x1a\x6d\xd1\x1d\x9d\xe9\xbb\x35\x71\xc6\xbd\xdb\x58\xf0\xa6\xda\x51\xc6\x0d\xae\xfe\x14\x47\xba\x3f\x3c\x27\x9b\xb7\x56\x0b\xb9\xad\x30\x65\x7e\x1f\xea\x68\x5e\xb7\x60\x0a\xba\x17\xa0\xef\xe2\x60\xaf\x1a\xd8\x82\xe0\x56\x28\x69\xf2\x87\x15\x07\xf9\xb6\x18\xd6\x2c\x1c\xa3\x53\xb9\x41\x4d\x25\x11\x27\xf7\x4e\x43\x00\x5c\x4c\x6d\x0f\x05\x76\x06\x32\xde\xb6\xea\xca\x04\x47\x91\x6d\x5a\x2a\x1b\x72\xff\x64\x5d\x21\xda\xa4\x55\x8f\xf4\xa4\x39\x4e\xfe\xbe\x53\x9a\x9f\x31\x69\x60\x06\xfc\xc9\x94\x26\xf9\xe8\x4e\xb9\xed\x18\x69\x70\x81\xbf\xaf\xae\x6c\x53\x75\xa4\xf4\x07\xd5\xb3\xfe\x43\x5a\x2e\x0d\x4a\x1a\x7e\x9f\x9d\xe5\xfd\x6b\x84\x2b\x62\x58\x8f\xf3\x67\xe1\x6a\x67\x7c\x62\xb9\xce\xd7\xad\x53\x16\x08\x94\x47\x9e\x0d\xca\xde\x5b\x37\xf2\x89\xea\x61\x12\xfd\x74\x87\xe6\x08\x81\x58\x99\xa6\x3e\x07\xbf\x5e\xab\x98\x1c\x56\xa9\x47\x84\x6f\xa5\x71\x70\xaa\xe2\x90\x5e\x93\x1f\x37\xfe\xe4\xe5\xca\xac\x9b\x2b\x3d\x43\x9f\x9d\x1f\xd9\x93\x8e\x27\x2d\x85\x06\x76\x94\x24\x78\x51\x87\x6e\x1c\x5a\xa1\xcc\x4d\x5b\x93\xc6\x5b\xeb\x06\x29\xca\xa8\x1c\x47\xfa\x95\x85\xb0\xf9\x2a\x0e\x0a\x85\xe5\x56\xf4\xcd\xd7\xf5\x5c\xda\x13\xfb\x26\xfe\x8b\x23\xed\x90\xcf\x64\xf9\xab\x3c\x0b\x1e\xb7\xff\xaa\xf4\x36\x79\xb6\x53\x67\xd8\xc3\x21\x6b\x95\x29\xbb\xe4\x84\x94\x1d\x56\xef\xbb\xba\x5f\x9b\x76\x84\x6b\x15\x91\x38\xa3\x4d\xb6\x59\x18\xae\xa6\x5f\xce\xdb\xae\xe7\xa0\x02\x6d\x42\xce\xd8\xa6\x25\xe4\x71\x35\xed\x21\xe8\x8c\xf3\x4a\xf4\x07\xab\x20\x03\xb0\x71\x9c\xe0\xf2\xcb\xaf\x1f\x82\x95\x11\x7a\x84\xa3\xd0\xc0\x04\xb4\x30\xf3\x8e\xc1\x4a\x37\xb8\x0e\x3e\xa4\xd5\x48\x78\xd0\x00\x9c\xe2\x2b\x1d\xe9\x0a\xc5\x9e\x0e\xe3\x8b\x3a\xde\x56\x69\x8c\xf8\xae\x90\x07\xab\x62\x29\x9a\x71\x56\x51\x2a\x44\x0d\xe2\x88\x7e\xc6\x1f\x2a\x92\x56\xc7\x8d\x4b\xaf\x32\xe0\xd2\x96\x74\x2b\xf8\xe0\xde\xc2\x27\x57\x8b\x49\x03\x37\x52\xee\xcd\x7d\x7d\xf9\xff\xc2\x8c\x4f\x9c\xd1\x3b\x17\xa9\xcc\x66\x18\x12\xc6\x65\xc0\x5e\xad\xe6\x64\x18\x07\xa9\xb6\x60\xfe\xf6\x29\xf0\xac\x9a\xdc\x0a\x80\x77\xb5\x2e\x5f\xae\xe9\x5f\x92\x6a\xc8\x70\x2a\xd6\xff\xbd\x49\x42\x06\x15\x79\x55\xae\xa1\x51\x98\x79\x4c\xba\x3e\x73\x55\x2a\x7f\xa0\x9c\xc3\xd4\x19\xcf\x08\x65\x2c\xe9\x78\xed\x32\x2d\x09\x14\xdc\xff\xba\x36\xee\x40\x41\x80\x4c\x9e\x34\xf3\x82\xee\x95\xe3\x9a\x23\x47\xe2\x4a\x2d\xae\xeb\xd4\x42\x49\xe8\x47\x4e\x11\xd5\xec\x3e\xac\xc8\xfd\x2d\x97\xc6\x7f\xbb\x78\xb1\x5c\x97\xaf\x9c\x83\x1d\xb7\x9c\xda\x96\xbc\xce\xe8\xde\xa1\x7a\x4d\x5b\xf7\x01\x36\x08\x35\xed\xf0\x33\x2d\x5e\x41\x71\x50\x49\x19\xe8\xe7\x37\xa5\x27\x40\xcd\xd6\x0f\xc6\xde\x5c\xc7\xf6\x16\xc0\x9e\x07\x6d\x52\x38\xa7\x0a\x79\x85\xf8\x62\x63\x96\xcc\x6d\xcb\x13\x15\x24\xa3\x4d\xb1\xdf\x9e\xf4\x5d\xbf\x31\x59\x36\xc2\xca\xb8\xe5\xde\xa3\x9d\x53\x87\x2b\x2f\x85\xfa\x75\x20\xe8\xf6\xe6\xde\x78\x57\xc3\xfd\xb5\x9b\xed\x02\xeb\xc3\x33\xdc\xdc\x6e\xad\x00\xc6\x2e\x29\x3a\xb8\x9a\xd2\x0f\x4b\xb3\x14\xf4\x08\x72\x1c\xc0\xc6\x14\xec\x09\xba\x3c\xb9\xe7\x03\x9c\x98\xef\xea\x07\x15\x83\x98\x0a\x61\x98\x8b\xc5\xf1\xcd\x7a\x74\x72\xf6\xa4\x6b\x50\x92\x0c\xa8\x72\xf5\x47\xe4\x77\x11\x17\x55\x21\xc3\x37\x46\xbf\xa3\x65\x8c\x36\xf5\x70\x82\xe3\xdb\xf1\x72\xf6\x87\x82\x4e\x0e\x25\xe6\xb8\xe9\x1a\xae\x8d\x5a\xd5\xb4\x0c\xcb\xcf\xdf\x29\xb5\x07\x67\xcc\x28\x96\xa2\x63\x87\x5a\xea\xba\xc0\x4e\xb5\xf0\x7f\xf0\xb0\xec\x25\x7b\x89\xe2\x9f\xac\x86\x75\x0d\x7c\x8b\x36\x13\x8a\xe2\x7f\x9c\x97\x1a\x45\x88\x3b\x3f\xf5\x38\xb2\x20\x15\xd4\xa9\x62\x29\xda\xb1\xf8\x32\x45\xfb\x28\xed\xcf\x94\x7a\xf3\xf7\x5b\xb2\x46\xe9\x46\x9e\xd4\xc2\x8c\xde\x5c\x79\x89\x1c\x14\xd5\x8a\xa5\xe8\xf5\x53\x19\x40\x60\x6a\xf2\x67\x5c\xfd\x1e\x34\x4d\x02\xee\x7b\x56\x8a\x9e\xbd\xa0\x5d\x70\x22\xfb\x1f\xbd\xbe\x4a\x21\xed\x38\x42\x69\x29\xff\xe6\x4a\xe8\xab\xdd\x4a\x9c\xb2\xda\xa5\x2d\xcc\xd4\x3c\x13\xf9\x2b\x4d\x9a\x00\xdf\xec\xd2\x71\xc0\xfc\xf5\x59\xc2\x75\xf6\xa5\x16\xab\xeb\x80\x0f\xa5\x45\x08\x33\xbe\x15\x5c\xa9\x82\x41\x17\x2f\xbe\x46\xcb\x63\x4a\xd1\xfb\xdf\x19\xa1\x10\xfd\x6b\xd8\x6a\x17\x32\x09\xbd\xf9\x6e\x06\xb7\xcc\x21\x33\xc5\x52\x34\x48\x99\x14\x60\xcf\x42\x5e\x15\x27\x92\x7a\xbf\x5d\x2f\x4b\xbd\x99\x73\x8a\xa5\xe8\x4b\x5b\xf5\x29\x4d\x9c\x73\x71\xe6\x4b\xf4\xeb\x41\xba\x25\x3b\xf4\x1f\x61\xcb\xdc\xa8\xb1\x66\x50\x03\x33\x54\x4d\xa8\x92\x05\x72\x6f\x3a\xb2\xea\xe2\xf8\xf6\x9e\x63\x2a\x9c\x0c\x8c\xb1\xff\xbc\x5c\x5b\xd6\x21\x71\x12\x90\x77\xe1\x86\xc9\xd9\x28\x5b\xc6\xd8\xbb\x66\x62\xb1\x14\xfd\x3c\x92\xc2\x9d\x80\x67\xed\x67\xc8\x44\x85\x36\xd5\x1e\x06\x6c\xe0\xe2\xf5\xbe\x89\x39\xf4\x4a\x33\xde\x7a\x5e\xf1\x24\xe7\xcb\xff\x47\x8f\xb6\x76\x3e\x61\x0b\xfe\xe9\x3d\xc5\x81\x11\x95\x31\xef\x94\x16\x2c\x2b\xfd\x66\x5c\x57\x35\xb0\x7e\x3c\x46\x8a\xa1\x55\xa0\x55\xff\x41\x47\x87\xcb\x53\x16\xa4\x0f\x34\xb7\xee\xf6\xcb\xd2\x93\xd1\xca\x98\x8d\xad\xb4\xd5\x47\x07\x1e\x01\xb7\x1c\xd6\x68\x2d\xc2\x68\x57\x4f\x28\x47\x4e\x4a\x6f\xd1\x45\xfc\xa1\x97\xda\xa4\xec\x35\xb5\xc4\xe8\x7a\xec\x01\xc8\xb4\x90\xef\x23\xdf\x27\x7c\x83\x7c\xe7\x48\xf6\x59\x74\x63\x51\x29\xff\x8f\xd6\x1e\x76\x50\x13\xfa\x81\x6d\x47\xc7\x2a\x29\x50\x19\x10\xb9\xd9\xdc\xaa\xf4\xc6\x78\xa5\xde\xa0\x2e\xa8\xc7\xe9\x57\xfd\xb9\x36\x15\x15\x8a\x98\xcb\x8f\xf5\x2b\x35\x88\x78\x1d\xf9\x3e\xf6\xaa\x49\x0a\x19\x5d\xf7\xc4\x10\x79\x8a\x93\xa4\x30\xf2\x14\xdc\x42\x93\x61\xb3\xc6\x0b\xe8\x87\xd7\x4e\xd2\xa2\x60\x39\x64\x5e\x5f\x48\xf6\x02\x7a\x5b\xb6\x53\x08\x83\x84\xee\xa9\x49\x8a\x02\x6e\xb7\xc7\xed\x72\xe3\x4b\xdc\x74\x58\x38\x19\x4b\x2d\xeb\x4d\x83\x55\x66\x3b\x38\x95\x3f\x65\xcb\x77\x10\x24\xba\x7e\xc6\x9f\xa6\x68\x3c\xe5\xb8\x3c\x01\x65\xa6\x51\x8f\x8c\x56\x74\xb8\x5a\xc5\x5a\x67\x3c\xa0\x29\x28\x87\xf1\x4b\xac\x25\x35\xa7\x27\xf5\x18\x9b\xc4\x49\xbe\xef\x86\x49\x72\xc0\xd2\xce\x5d\x97\x16\x3f\x98\x6a\xce\x9b\x28\xe1\xa3\xe5\x8e\xdc\xad\x5d\x17\x6a\x42\xe4\x8a\x8c\x17\x07\x29\x10\x1e\x5e\xc8\xbd\x76\x6c\x8c\x9a\x4e\xb6\x82\x85\xff\x75\xa1\x2e\x4e\xee\xf8\x38\x11\xe3\x8a\xee\xdd\xa3\x69\xae\xf1\x3a\x85\x3f\x83\x99\x1b\xd3\x66\x4b\x40\x15\x2e\xfb\x4d\x05\xc5\xd8\xd3\xc5\x42\xf8\x3d\x77\xcd\xb9\x96\x11\x66\x47\x12\x5b\x6e\x7c\x4d\x14\x16\xd4\x71\x68\x13\x32\x6c\xe3\xcf\x67\x64\x1d\x84\xd7\xa1\xb8\x80\x80\x72\xff\xab\x8b\xb4\x3e\x2d\x17\xdb\x10\xf5\xfe\xe7\x4e\xe9\x9d\x67\xe6\xa5\xc6\xce\x17\x26\xea\x21\xb4\x27\x74\x48\x92\xef\x6d\x91\xeb\x75\x2d\xb5\x93\xf5\x3a\x5e\xf3\xd1\x47\x4d\xc4\x2c\x3f\xa1\xbe\xa0\x93\x0a\xda\x36\x54\x3a\x31\x37\x68\x84\xed\x00\xd5\xd2\x8e\xc1\xa7\xf6\x64\x5d\x8a\x91\x8b\x7a\xa8\xd7\x6e\xf2\xc1\x4d\x4f\x4b\x66\xb7\x7a\x9d\x06\x78\x47\x4c\x88\xe7\x16\xf2\x7b\x61\x7d\x2f\x8b\x4b\x10\xce\x4c\x31\x8a\x01\xa4\xf9\x8c\xbb\xfb\x45\x9d\x9b\xb3\xa3\xb2\x3a\x09\x02\xbf\x1c\xb2\xaa\x9d\x96\x4a\xf9\x1f\x2e\x6e\xed\x99\xc7\xe7\x8e\xc8\xe8\xbb\x5f\x52\x88\xc9\xc8\x04\xed\xd8\xc8\xef\x18\x2e\xb5\x20\x94\xc2\x32\xb7\xed\x79\x05\x1f\x18\x57\xe5\x41\x7c\x1d\x5d\xd7\x6a\xac\x4e\x46\x2a\x41\xda\xbf\x2e\x5c\x77\x46\x86\x2a\x37\xf4\x88\xa9\x9b\x81\xf7\x16\x6e\x7e\x57\x3b\xe1\xe2\xb5\xc2\x51\xb1\xfc\xd8\xfd\xc5\xee\x2c\xd2\xcf\x22\x00\x0d\x04\xb4\x44\x36\x9e\xfd\xf5\x2d\xa5\xb9\x1d\x97\x3d\x3c\x06\x7d\x5d\xd3\x0c\x35\x6d\x52\x17\xd3\xfe\xd7\x35\x12\x01\x77\x08\x4a\xc9\x53\x8f\x4a\x2d\x09\xcf\x6a\x41\xb6\x1a\x1f\x3d\x27\x77\x65\x37\x68\xb7\x7e\xf4\x61\x05\x9b\xeb\x60\x33\x60\xc4\x84\x84\x67\x81\x27\x9c\x4c\x29\xe3\xb8\x11\x69\x14\x3b\xcc\x1e\x28\x2a\x4e\x8b\xf7\xe0\x56\x0c\xcd\x86\x5f\xca\x99\x43\xe0\xfe\x00\x93\x86\x2d\x3a\x39\x2f\x2e\x5f\x59\xb2\xe9\x16\x9f\xd0\xf8\x3f\x0c\x63\xe9\xfe\xd1\xd0\x3e\xdd\x46\xc4\x43\x9e\xf4\x72\xc9\xad\xdf\x24\x5f\xf3\xf4\x0e\xd0\x8d\x2e\x45\x4f\x1e\x4b\x83\xc2\x3a\xac\x72\xd3\x0f\x5f\x68\xe1\x02\x06\x18\x4a\x6c\x9e\xa2\x77\x1e\xca\x8e\xa6\xd7\x62\xe4\x15\x1d\x1a\x6a\x6e\xd4\xd1\xa9\xdd\x5a\x3f\x8f\x31\x44\xaa\x9e\xa4\x6c\xe4\x3b\xa7\x64\x0b\x7f\xea\x71\x41\x4e\xbe\xd2\xf7\xac\x93\xcf\x9d\x78\x71\xc1\x49\x40\xb6\xb1\xb0\xf2\x80\xa2\x2e\xc5\xd5\xf0\xb9\xa0\xce\x22\xc5\xcc\x31\x04\xbd\x78\xfe\x9a\xf6\x1c\xec\x4b\x72\xae\xc9\x19\xe1\x3f\x7f\x2f\x3d\xe3\x13\x61\xab\x93\x59\x93\x81\x04\xbe\xb3\xff\xd5\x11\x8a\x68\x16\x56\x24\xe2\x0b\x9f\x7b\x59\x6f\xcf\x08\x24\xae\x70\x5f\x7c\xe0\xb1\x3e\x84\xd0\x13\x0c\xef\xad\x15\x9d\x9d\x88\x5d\x1f\x3b\x8d\xc4\x5c\x30\x7a\xb2\x0e\x89\xd8\x7c\x86\xfa\x12\x86\xaf\x3f\xa6\x66\xb7\x0d\xec\x10\x9b\x52\xa0\xe1\x9f\x7f\x62\x84\xfa\x04\x15\x0c\xbf\xd1\xb3\x4a\xea\xe0\x66\x38\xbf\x5b\x9f\xc9\xc6\xc2\xd0\x23\x95\x6e\x11\xc1\xc6\xbf\x20\x1d\xb9\x15\xb5\x04\xe3\xa2\xad\x32\xbc\x20\x5b\xf9\xc1\x77\xa4\x13\xa6\x5f\x0f\x8b\xa5\x68\xf2\xb3\xb0\x63\xb0\x5b\x8e\x17\x03\x77\x8b\x02\x72\xc3\xbf\x68\x90\x14\xdf\x0e\x1d\x17\xe9\xc2\xf3\xef\x5f\x07\x87\xec\x52\xe2\xa1\x54\xb8\xdf\xb8\xfd\x88\x4c\xd4\xe0\x24\xbd\x71\x49\xb6\x21\xe9\x3b\xa8\xdc\xed\xd5\xa8\x32\x69\x89\xe6\xcb\xf9\xc6\xf4\xe9\x9d\xf1\xf3\x3a\x31\x50\x27\xbf\xd4\x6a\x88\x38\xb4\x91\xbd\x8a\xfc\xe9\x8b\xd3\xfb\x75\xb1\xa2\x95\x6a\x7c\xa5\x30\x46\x5f\x08\xd0\x87\x17\x16\x46\xc6\xf8\xc1\x8a\x40\x04\x57\x29\xfb\xc0\xf0\xec\x77\x9a\x7e\xe2\x4c\xa8\x19\x22\x1c\x4b\xc7\xac\x01\xca\x70\xce\x8c\xca\x18\xa5\x09\x69\x9a\xc8\x4f\xda\x76\xcf\xef\x94\x3f\xf0\xcd\xb0\x52\x11\xfe\x1c\x85\xb1\x0f\x08\xd2\x6d\xc6\x92\xba\x47\x86\xf5\x22\x6d\x02\x4c\x44\x53\x13\x58\xd5\x32\x0d\x27\x09\x6a\x88\xef\x59\x0f\xea\xe9\xe2\x6d\xa8\xdb\x6b\x49\x5f\x0a\xb6\xc6\x43\xc4\xac\x21\x98\x12\xb2\xf3\xc5\x4e\x8e\xd3\x8e\xfd\x90\xe9\xc3\x98\xdc\xd6\x67\x47\x2a\xdd\x0c\x31\x3d\x15\x00\x8c\xc5\x91\x82\x50\x74\xeb\x1c\xdd\xce\x63\xe8\xfa\x5d\xd0\xea\xb1\x30\x87\x9c\x27\x0d\xc6\xdc\xe9\x73\x7a\x6f\x8d\x78\x7e\xc0\x30\x72\x05\xf1\xe3\xd4\x43\xe9\x91\xe1\xd6\x5b\x88\x26\x85\x4f\x6c\x51\x90\x98\x12\x50\x1d\xfd\x86\xc9\xd2\xc3\x77\x28\xef\x28\x7c\x50\x20\x88\xfd\x90\xf0\x75\x7a\x83\x26\xe6\xe6\x07\xb4\x5e\xc7\x96\xc0\xf2\x15\xee\x59\x39\x5e\xed\xea\x35\x30\x4b\xec\x15\x95\x1a\xc7\xd8\xf5\x76\x16\x61\xf0\x11\x3e\x2a\x8c\x4e\x6e\x50\x74\x97\xef\x0a\x11\xe3\x78\x81\xe8\x88\xc6\x86\xae\x63\xcf\x45\x00\x84\x16\x39\xc4\x6f\xfb\xb7\x49\x1b\xa2\x96\xe6\x55\x61\xf4\xa3\xd0\x90\x05\x99\xda\xdc\x9a\xa5\x8a\xd4\x75\xe2\x93\xcb\x09\x94\x2f\xa9\xea\xac\xc8\x4c\x22\x69\xfe\xa7\x1b\x14\x52\x8a\x83\x58\x4d\xb5\x15\x9f\xf2\xb8\x6e\x13\x24\x35\x6c\xa0\xd8\x7b\x6a\x8f\xa2\x5e\x8e\x38\xa7\x28\xb7\x56\x33\x7d\x0f\xbd\x0a\x22\x2c\x6d\x6d\x7f\xe7\x79\x9d\xbe\xe8\x79\xe9\x4c\x31\xf7\xe5\x45\xd9\x9a\xac\xbd\xbd\x5d\x40\x7e\xef\x9e\x07\x03\xae\x5b\x43\xaf\x8c\x5b\x1f\x85\xf1\xb3\xb1\xd9\x19\x5d\x19\x55\x6d\x0b\x59\xca\x8e\x30\xba\x23\xc5\xe1\xc0\xf5\x38\xe3\xe0\x59\xc9\xac\x0a\x2b\x15\x05\x4b\x71\x7a\xb8\x36\xc9\xc1\xa6\x8d\x3c\xe2\x8b\x95\x98\xfb\x4f\xc5\x15\xda\x0f\x18\xf5\xaa\x30\xea\xef\x9e\x9e\x7d\x68\x55\x0a\xa4\x49\x05\x15\x34\x40\x2e\xc6\x06\x18\x58\x75\x9d\xd7\x46\x4a\xd8\x09\x12\xd0\xd6\x00\x45\x7f\xb4\x9c\x90\x7a\xe3\x3c\x65\xec\x50\xf9\x83\x2a\x61\x4e\x7a\x9f\x5f\xee\x97\x8d\xdf\xb4\x52\x29\x32\xec\x63\xd6\x40\xf2\xdd\x19\xd3\xc6\x4c\x68\x89\x76\xdc\x86\x20\x1b\xec\xee\x5c\x9c\x0d\x14\x1e\x59\xeb\xe2\x2a\xf6\x44\xca\xcd\xaf\xa4\x73\x1d\x4c\x3a\x3f\x71\x6b\xb1\x8c\x80\xc0\xe2\x56\xb4\x5e\x51\x37\x6e\x62\xc4\xd2\x91\xea\x17\x0f\xea\xe2\x6c\x52\x4b\x2a\x77\xc3\x5e\x45\x39\x84\xd1\xd0\x17\x34\xb8\x5d\x6f\xc9\x22\xd4\xa3\x0d\xc4\x99\x74\xfd\xdf\x95\x63\x0e\xac\x18\xcf\x14\xf2\xaa\x0e\x34\xe5\xfc\xc6\xfc\xb7\xba\x64\x92\x83\x5d\xc2\x50\x80\xfd\x24\xab\xf8\xe1\x20\xc5\x77\x17\xb3\x0a\x65\x6e\x46\x7e\xdb\xf0\xda\x15\x51\x6f\x2e\x68\x02\xfc\xdd\x68\xde\xb2\x21\xa2\x30\xf6\x90\x67\x12\xe1\x4c\x3b\xa8\x43\x66\x7a\x0d\x82\x03\x0f\xb9\xc5\x52\xb4\xfb\x5c\x8b\xc9\x50\x85\x58\x84\x86\xc2\xd6\x2a\xff\xca\x9e\x74\xca\x19\xb0\x30\x73\xba\x2c\x9b\x0a\x13\x0a\x69\x46\xc2\xcf\x96\xdc\x7a\xb9\xed\xb9\x73\x47\xc0\x8d\x95\x7b\xf3\xe7\x35\x57\xf0\x69\x1d\xc5\x54\xf9\xbf\x43\x6e\x7c\xae\xc5\xa7\x1e\xed\xef\xd3\xd0\xd3\xa0\x9c\x97\x24\x41\xbb\xd6\xa8\xb8\xf3\x80\x91\x2a\xb8\xa1\xfe\xdd\x1e\x05\x68\x82\x7c\x2e\x13\x9a\x3f\x3a\x58\xb3\xac\x62\x04\x57\x94\x57\xfd\xef\x07\x95\x36\xb2\xe7\x09\xb9\x96\xfc\x2f\xee\x85\xd9\xc6\x92\x9b\x57\xac\x58\x72\x23\x47\x83\xac\x1c\x91\xc4\xde\x4a\x42\x64\x80\x51\x9d\xb1\xf8\xd5\x16\x87\x21\x4e\xca\x4f\x4a\xee\xfc\x7f\xdf\x9b\x3a\xe2\x40\xaf\xaa\x58\x8a\xf6\x46\x1a\x5e\xbd\x4e\x6b\xd8\x6f\x52\x57\x0a\xe8\x5e\xf3\xac\xa6\xf5\xea\x87\x7c\x46\xc7\x39\xe1\xc6\xcc\x48\x2e\x52\xee\xa3\x52\x09\x79\x8a\x7b\xa7\x42\xf2\x66\x71\xd0\x60\x55\xa8\xe4\xcb\x75\xa1\xfc\x1b\x06\xd4\xa5\x65\xe2\x80\x87\xec\xed\xd9\x88\x67\x3a\x61\x99\xa7\xf6\xb9\xa3\x53\x94\x4a\x31\x50\x02\xc8\x81\xb2\x62\xac\x49\xcd\x9a\x98\xae\x1e\x7c\x2c\x3b\xa2\x45\x3e\x77\x6f\x0b\x60\x52\xa2\xf7\x2f\x9e\x53\xda\x41\x65\xca\x29\xdf\xb7\xdf\x9b\x1e\x36\xa4\xf5\x70\xcd\xb7\xbd\xaa\xce\xb5\x1a\xa2\x1b\x1b\x2d\x9f\xaa\xea\x8a\x82\xdc\x7e\xb1\x14\x2d\xd4\xb4\x8a\xca\x8c\xd6\x60\x10\x1d\x2f\xcc\x37\xf5\x2e\xb4\xd3\xa0\xe2\x6d\x15\xfa\xbd\xa7\xdb\xf8\x3b\x52\x58\xff\xdc\xfa\xac\x6e\xad\x94\x40\xd2\x6f\xf0\x91\x01\x9a\xa7\x01\x94\x61\xa5\xde\xfc\x84\x1d\x97\x88\x6d\xe4\x00\xb3\x33\xbf\x61\xa7\xa2\xfb\x0d\xbe\x94\x5f\x9e\xaf\xa1\xe7\x99\x83\x91\x07\x7a\xea\x82\x7d\xb0\xe9\x19\x4d\xa5\x17\x55\x48\xb7\x10\x34\xcc\xff\xf9\x94\x1e\xe0\x3c\x14\x60\xa1\xc0\xf7\xf6\xe4\x6c\x50\x75\xa8\x57\x8d\x4b\x3b\xe8\x4c\x43\xaa\xf3\xe3\xdb\xb3\x9b\xb7\x1b\x23\x21\xae\xf1\x13\x0d\xfa\x8b\x3d\xd1\xa1\xcf\x7d\x45\xf5\x37\xe0\x40\xa7\x07\x15\x75\x56\x1b\x00\x36\xff\xf5\xbc\x7c\x61\x0e\x46\xa9\x33\xe6\xf7\x8e\x0d\x49\x12\x04\xdf\x4f\xed\x6b\x36\x75\x65\x2f\x35\x7e\xf1\x92\xb3\x07\x1c\xf0\x05\xc0\xfe\x29\xde\x6a\x63\x52\xcb\x44\xac\x6d\xb6\x8c\xd8\xbe\x89\x58\x25\xbe\xb3\xdf\xf6\x53\xd5\x61\x29\x88\x46\x01\x80\xed\x33\x87\xb5\xda\x9b\x98\x35\x9c\x32\x64\x0a\xcd\x33\xb2\xda\x0c\x03\x41\xb3\xff\xe6\x23\xb2\x8d\x50\x69\xd1\x0f\x2a\x74\x8c\xfd\x80\x48\x88\x38\x45\x2e\x77\xed\x3a\x19\xa6\x66\x4c\x9d\x3e\x93\x5b\x32\xde\x3f\x42\xa5\xcc\x00\xdd\x6a\xb5\xd6\x89\x8a\xb3\x50\x88\x80\x8f\x47\x43\x14\xfe\x25\x8c\x6b\xa3\x4d\x6d\x57\x6a\x95\x78\xa5\x82\x99\x4f\x3d\x82\xbc\x84\xb7\xf4\x6d\xcd\xe4\x60\xce\x74\x30\x53\xa4\x4e\xea\x29\xff\x77\x6f\xc0\xe4\x66\x15\x09\x68\xe6\xf4\xd9\xaa\x78\x78\x73\x86\x0a\x54\xe0\xb9\x71\xdb\x47\x28\x11\xb4\x91\xf0\x22\xe2\x6a\x75\xa8\xa2\x8e\xd9\x5d\x67\x84\x06\x69\x75\xb0\x6a\xaa\xe0\x07\xdb\x71\x96\xcb\x4d\x31\xf3\xdd\x4b\x86\xe8\x67\x42\x29\xba\x67\xb5\x3c\xc5\x3c\xca\x31\x63\x3c\xf3\x7b\x57\x7e\x2b\x6b\xcf\xe4\xc0\xf8\x4c\x2a\xa6\x3d\xbb\x83\xeb\x1a\x6e\xcb\xa6\x44\x30\x90\x43\x0e\x49\x94\xa7\x8c\x47\x26\x8f\x10\xf1\xc3\x21\x01\x62\xdd\x42\xd3\x28\xbe\xa8\x7e\xcb\xf5\xf6\x55\x80\x1a\xc4\x4f\xa6\x86\xa7\x3d\x4d\xbd\xa4\xdd\x6a\xaf\xb4\xd7\x15\x2f\xcf\xe8\x8f\x73\xb5\xd6\x87\xd5\xc0\x2c\x00\x54\x34\x6f\x4b\xe7\x6b\xd3\x95\x89\x2c\x9c\xfc\xd0\xc7\x98\xd9\x35\x5a\x39\x59\x75\xea\x6b\x34\x6a\x4a\xb6\xfb\x0e\x5a\x6e\x41\x1f\x22\x58\xc6\x2b\xda\x4c\x7d\x06\xb4\x7e\x92\xe3\x78\xff\xe6\xcb\x14\x72\x96\xe7\x63\xcf\xe7\xc2\xc6\xd1\x5f\xd7\x28\x95\x0b\x86\x83\x64\xe0\x61\x09\x5c\x41\x26\xb7\xe8\x56\x0a\xb2\xe7\x7b\xe4\xc9\xce\x3d\x61\x6f\x56\x70\x52\x6d\x6f\xe8\x06\xff\x9e\x89\x59\x50\xa5\x98\xf9\x42\xff\x76\xd6\xf3\xa9\x88\x70\x1d\x0b\x4b\x0c\xa3\x37\xd2\x81\x80\xcc\xc4\x5e\x00\xaa\x67\xbb\xa6\x66\xe3\xd1\x35\xd7\x80\xe0\x6f\x6f\xe1\xee\x73\xfc\xed\x14\x17\xe0\x06\x76\x68\xdd\xed\x63\x7a\x95\x2f\x3f\xab\xd8\xc3\x21\xdf\xc7\x42\x27\xf4\x1b\x43\x47\xa9\xf0\x9c\xd0\x37\xf9\xd2\x86\xb3\xee\xf2\x5d\xb0\xa9\xb9\x18\x4d\xa9\x37\xf7\x2b\x96\x4d\x01\x48\x03\x77\x67\xac\xb1\xd6\xac\x50\x40\x40\x75\xe5\x30\x3d\x2f\x71\x4f\x71\x3a\xa1\x37\x91\x67\xef\x97\x54\x6b\x8c\x18\x24\x28\x75\xcc\x52\xa7\xc6\xfc\x54\xc1\x83\xba\xd1\xb3\x30\x6a\x70\xcf\xe0\xde\xfc\x57\xb7\x66\xcf\xe2\x32\xf5\x3d\x82\x8a\x36\x66\x3d\xb8\x4a\x1b\x52\x6d\x88\x67\x9e\xed\xcb\x13\x73\x78\xc6\x08\xe2\xbe\xea\x77\xbf\x98\x5d\xd7\xe5\x30\x70\x30\xbb\x26\xd3\x38\x7a\x70\x73\xb6\x75\xdb\x8d\xfc\x80\xf5\xd8\xd8\x2d\x27\x23\x93\x74\x0f\x34\xce\xc8\xed\x1a\x7a\x15\x87\x78\xa9\x7e\xd6\xf0\x47\xd2\xde\x8b\xc5\x50\xb1\x14\xad\x7d\xb0\x8f\xa6\xad\x0f\x96\x31\xd1\xa4\x15\xb2\x8d\x44\xe3\xd2\xe5\x42\x8b\x12\x86\x1f\x26\x96\xf1\xf9\xbf\x3d\x96\xed\xd8\x5b\xd8\xa5\x26\x43\x01\xd7\x30\x69\xb5\x1f\xe9\x38\x24\x97\x6e\x05\x18\x21\xe9\x1d\xfc\xdf\xb3\x43\x94\xe2\xad\x1c\xfa\x71\xc6\x72\xc3\x86\x2c\x2b\x3c\x8e\xa3\x53\x8b\xa5\x68\xdf\x7a\xa1\x28\xd1\x8d\xab\x0e\x12\x5d\x87\xdc\x37\x0e\x2a\x55\xb8\x4b\x98\x47\x1b\xf1\x2f\xbf\x72\x58\x91\xe1\x0a\x52\x2c\xf5\x9d\x27\x94\xb3\xc6\x23\x3e\xef\x50\x14\x6e\x9d\x2b\x57\x2b\x15\xbd\x09\x7e\xaa\x68\x3e\x30\x36\x12\xe4\xd0\xaf\x2d\xc8\x26\xc0\xa1\xc7\x73\x27\x6c\x89\x3a\x72\xdd\x6b\x43\x95\xd6\x84\x50\xed\x8e\x3a\x97\x2b\xbe\x78\xdd\x61\x9c\xcd\x1b\xff\x33\x42\x86\xf3\x1a\xed\x41\x8a\x6e\x88\xb1\x6c\x60\x0b\x8a\xc5\xa4\xcc\x4a\x21\xac\x85\x9e\x25\x1a\x89\x15\x4a\x15\xe4\x24\x30\x99\x49\xcf\x65\xdf\x7a\x95\x61\x2c\x15\xc2\x9e\x5a\xa6\xe0\xae\xe3\x95\x0f\x92\xe5\xc5\x52\x54\x7b\x40\x56\x03\x75\xea\x20\x46\x7a\x60\xff\xfe\xfa\x75\xcd\x8f\x1b\x55\x91\x47\x75\x4b\x39\xa3\xeb\x90\xdc\xe6\x6b\x43\x0f\x0c\x48\x93\x58\xb6\x48\xc4\x22\x86\x6d\x8c\x98\x0f\x2a\x4a\x4f\x8d\x90\x79\x71\x5d\x95\x4e\x1c\x32\x4b\xc9\x75\x92\xd3\x3e\x10\x04\x04\xe6\x22\x8b\x1b\x17\x5c\xff\x8c\xde\xbf\xe7\x5c\x35\x98\x74\x3d\x7e\x26\x4d\xa0\x2c\x42\x8b\xa5\x68\x19\x53\x1a\x24\x36\x72\xeb\xf1\xd9\x6a\xc7\xe9\x71\xfc\xee\x0e\xca\x40\x9c\x32\xaf\x49\xd2\x09\x98\xe2\xe9\x1c\xa6\x20\x64\xf2\x91\x36\x5e\x57\xf0\x0d\x09\xdb\x02\xe8\x8c\xdf\x7e\x58\x67\x09\x63\x54\xe3\x04\xbd\x52\x6f\x61\xe3\x02\x45\xe4\x8d\x04\x01\x16\x1c\x83\x17\x4e\x0c\x16\x39\x80\x4f\x7c\x51\xe4\x7c\xf6\xb4\x46\x6b\x8f\xbf\x25\x11\x18\xca\x7f\xa5\x30\x51\xa9\x67\x4d\xdb\xe3\xa2\x2c\x2d\xe2\x46\xbd\x85\xbb\x14\x23\x63\x8b\xf8\x0c\x73\xcc\x12\xcf\x72\x5f\x6c\xf5\xdb\x72\x49\x4f\xc2\xfd\x7a\xa1\x21\x4b\x6a\x93\x51\xdf\x8f\x97\x88\x23\xfc\xfc\xe2\x9b\xf9\xd8\x46\xad\x10\x20\x01\x5f\x92\xfc\xf1\x3e\x7d\x2d\xa4\x95\x2b\x89\xe3\x23\xb3\xa6\xb6\x50\x1e\x6e\x29\xa2\x33\x86\x12\xb9\x2b\x84\x8c\x7e\xc6\xd6\x69\x07\x34\xcb\x66\x73\x4f\x8a\xfc\x40\x61\xf6\xb7\x90\xc0\x6c\xe9\x93\x8f\x6b\x95\x6a\xe8\x38\x38\xc5\x91\x45\x2f\xdd\x2f\xd3\xc6\xb5\xa8\xce\xc5\x42\x7e\x7f\x76\xa0\x7c\x85\x5c\x23\xe4\xf6\x91\x4a\x69\x6c\x52\x56\xa7\xd0\x62\x88\xef\xe6\x02\x7c\xdf\xb4\x39\xb3\x67\x16\x4b\xd1\xb7\xa6\x6a\xb7\x40\x1d\xe2\xdb\x52\x14\x2d\x77\xe4\x44\x02\x1f\xc7\x3e\x30\xbb\xa3\x31\xef\xa4\xc1\x97\x0b\xb8\xf6\x1a\xa3\x94\x52\x90\x8b\x22\xf2\x9c\xed\xf7\x2b\xd4\x86\x80\x47\x43\xcf\xe4\xff\x7e\xd5\x8e\x6c\x90\x42\xd7\xac\x5d\x1b\x27\x8a\x5f\x6b\x6b\x75\x45\xe2\x1a\xb6\x90\x63\xfd\xc4\xd6\x42\x43\xc8\x47\xb9\x90\x0b\xef\x79\x5c\xe7\x21\x42\x5a\x10\xbd\x32\x05\xae\x9f\x6b\x2e\x0a\x06\xf8\xbb\x87\x74\x00\x30\x97\x4b\x14\xee\x6c\xa7\x06\x88\x4c\x1d\xf2\xfa\x5f\xdd\x3d\x3c\x93\x00\x38\xe2\xf0\xcf\xaf\x58\x9e\xad\x01\xd7\x52\x2a\x1a\x0a\xfa\x81\xf2\xf6\x8e\x2b\xb5\x8b\x73\x4c\x1a\x04\x19\xf7\x90\x47\xd7\xab\xe1\x9f\x21\x50\xb6\x33\x1a\xb6\x76\x00\x33\x4a\x6b\x4e\x77\xda\x62\x8f\x0b\xc0\xc1\xcb\x46\x66\xb2\xb6\xd0\x09\xd2\x56\xf6\x5d\x75\x8d\x7c\x42\xd9\x35\x75\x00\x89\x7f\x7e\x93\x66\x5e\x45\x2a\x4e\x22\xa2\xf3\x6f\xbb\x94\xf9\x0d\x51\x0e\xfb\xe0\xb0\xae\x98\x93\x0c\xd3\x73\xf7\xb4\xa5\xf3\x08\xe2\x07\x19\xae\xef\x82\x2b\xb4\x3f\xe2\x93\x29\x2f\x9d\x87\x19\x7f\xb9\x23\xbb\x24\xa6\x4f\x13\x8c\xdc\xd5\x1b\x21\x70\x32\xe2\x43\x26\x9e\xfb\x4e\x1b\xf4\x2f\x34\xd2\xf3\x19\x5d\x76\x18\x57\x29\x7f\xc0\x40\xca\x94\xa2\xdb\x55\x2c\x87\x5b\xd1\x8f\xef\xc8\xa6\xce\x15\x14\xe7\xfe\xb8\x8f\xd4\x39\xff\xc3\x63\xf2\xec\xf1\xb0\x89\x7d\x5f\x88\x40\x47\x73\x15\x31\x0a\x07\x57\x91\xd7\x83\xf8\x59\xb7\x69\x8c\x76\xe4\x56\x88\x47\x7c\x3b\x55\xc1\x7d\x79\x53\x1a\xe5\x8b\xbc\xfe\x33\xfe\x61\xa3\x8c\x70\x2e\x0a\x4c\xdb\x8d\x03\x6e\xfc\x93\xc1\x1a\x31\x98\x5f\xa8\x50\xfa\xca\x4d\x7b\x57\x8a\xf3\xc5\x47\x42\x74\xe5\x60\x79\xad\xb3\xa6\xa5\xc5\x5d\xfc\xa5\xbb\x26\x0d\x15\xfb\xc1\x51\x05\x7b\xb7\x69\xa8\x77\x3f\x60\x21\x57\xbc\x4f\xed\x4e\xdf\x58\xa1\x71\x44\x1a\x18\x48\xcb\x06\x3d\xd4\xa6\x94\x7e\xa2\x6c\x51\xb4\xb9\xd7\xab\x19\x4c\x05\xfa\xf3\xc6\xe2\x73\x2a\x85\xaa\x81\x3d\x6e\x23\xc8\xa3\xf9\x47\x8e\x2a\x55\x08\xf2\x2c\x62\xa1\x80\x8b\x64\x1b\xaf\xed\x94\x2b\x3d\x0e\xfe\xa4\x92\xda\x53\xe5\xae\x7a\x50\x78\xb7\x60\x04\x18\xef\x67\xb7\xeb\xc0\x0b\xc1\x09\x8b\x86\x6d\x56\xc0\x8a\xe1\x5a\x80\x5e\xe4\x5f\xdd\x2f\x0b\x78\x0f\xb5\x9c\x3e\x93\xaf\x4b\x5b\xf4\x59\x60\xf0\x08\x29\x8c\x15\xb6\x60\x89\x8c\x79\x67\xe4\xcd\x58\x6b\x49\x13\x79\x16\xe5\x9e\x4b\xc6\xe6\x37\xb5\xb9\x06\xc3\x96\x40\xfe\x27\x22\xb4\x6d\x50\x8f\xde\x00\x82\xc3\x4a\xf3\xcd\xf8\xbd\xa3\x9f\xea\x30\x2a\x87\xf4\x78\xef\xf3\x2d\x50\x5b\xae\xfa\x2b\x10\x92\x57\x8e\x6b\x29\x66\x6d\xee\x3f\x0f\x07\xf2\x99\xad\x57\x68\xb9\x74\xd5\x41\x9e\x05\x04\x7e\xbe\x9d\x26\xdb\xda\x88\x92\xb6\xf7\xa9\xc9\xd4\xa6\x54\xb4\x0e\x71\x69\xe8\x83\x9b\xdd\x0d\x8f\x65\x2f\x80\xf8\x0c\x61\x87\x88\xde\x73\xa1\x4b\xe3\x6a\xe3\x75\xbc\xf7\x06\xd0\xc1\xdf\x69\x35\x20\xd8\x53\x8a\x8e\xd6\x2b\x91\x14\x81\xab\x61\xb7\x4e\x3c\xbf\x46\xd4\x50\xf4\xa3\xd3\x1a\xad\x2b\xf4\xac\x22\x37\x1e\x4b\x2c\x59\xde\xb7\x35\xbb\x6c\xb8\x11\x0c\x17\x4d\x35\xb4\x99\x4a\x93\x52\xcb\x57\x83\x78\xe1\x8a\x45\xa3\x54\x21\x3b\x2b\xe3\xa9\xf9\x8b\x23\xf2\x61\x50\x55\x4a\xec\xd8\xe1\x54\x24\x8d\x09\x82\x82\xb1\x65\x81\x52\x24\xc4\x9b\x00\x39\xbc\x9b\x3f\xf6\xad\x81\x22\x3a\xac\xe5\xcc\xad\xa9\xa3\x5a\x32\x6e\x8e\xf4\x4f\x3a\x95\xf9\x57\x0a\xba\xe8\x83\xe3\x24\xca\xe2\x0f\x2c\xd3\x87\x4b\x6e\x39\x5e\x26\x9e\xc7\x13\xcb\xc2\xc7\x07\xca\xc4\xb2\x07\x99\x36\x52\x24\x0d\xa3\x35\x23\x54\x55\x0e\x66\x85\x0a\x5b\x21\x7f\x59\xa7\xe6\xa7\x88\x9a\x3c\x94\x89\x2c\xa6\x53\x13\x01\x9d\x36\x3b\x15\x5e\x1e\xf9\x9a\xaa\x95\x03\x26\x1e\xc5\x52\xf4\xe3\xb5\x29\x02\xb6\x6e\xc7\xbf\x77\x7a\xa7\xdc\xc3\xd3\x3a\xa7\xce\xe4\x01\x34\xf7\xe9\x9e\xa1\xe2\xf1\x80\x25\xb8\x38\xaa\x57\x1f\x1a\x22\xab\x6b\x9a\xac\xe2\x21\x2f\x65\xbb\x10\x4d\x62\xda\x24\x50\x4b\xe2\xdc\x84\xed\xe9\xb9\x11\x50\x75\x2e\xd7\xaf\x1d\xbe\x88\x33\xbb\xad\xa2\xf0\x27\xc9\xcf\xd9\xd3\x3a\xab\x64\xd4\x25\x7e\xa2\x2b\x9f\xff\xd0\x43\xd9\xf7\x51\xa5\x2c\xc5\x02\xd4\x9f\xd0\x9a\xd5\xc8\xab\xa6\x04\x82\xc6\xc3\xb2\xc2\x29\x22\x86\x13\xac\x43\x7e\xf4\x2c\x45\x93\x98\x3a\x42\x82\xbc\x63\x89\x86\x0a\x13\x1a\x82\x62\x8f\x7f\x74\x49\x7a\x63\xc8\x95\xd5\x7c\xf4\xd9\xd5\x32\x75\xec\xa1\x9e\x82\x0c\xec\xcd\x5f\x70\xa4\x7f\xf2\x5d\x09\xee\x31\xe7\x3d\xf8\x41\xfd\xe4\x40\xcd\x32\x66\xac\x3b\xd3\x26\x28\xac\x7c\x40\x15\x1e\x74\xeb\x0e\xc7\x0f\x89\xf6\xee\x37\xc7\x2a\x0a\x90\xd8\xf7\x39\x02\xf5\x33\x67\x00\x1e\x67\x51\x81\x5a\xeb\x35\x3e\xae\xa0\x0a\xdd\x90\x59\x98\x01\x6d\xf7\xbb\x5d\x13\xd4\x55\x83\xea\xf5\xb8\x50\x6b\x09\xc6\x6b\x36\xcb\x75\x90\x08\x50\xf5\xe6\xb7\x1f\x97\x28\xc0\xb5\xea\x25\x17\x35\xbe\x34\xb5\x13\x80\x56\x7c\xe3\x0e\xf4\x9b\xe2\x73\x8b\xfb\x88\x2b\x86\x53\xeb\xe5\xad\x96\x89\x65\x39\x6a\x63\x6c\xbb\xda\x41\xa8\x54\x28\x87\x9d\xe7\xd6\x6d\xce\x4e\xec\xe7\x40\x62\x94\x7f\xa0\xac\x0a\x89\x27\x6a\xe8\xbb\xf7\x68\x76\xc8\x61\x99\x38\xc9\xbb\xcd\x85\x63\x25\x5a\x7a\xfa\x2c\xbe\x2f\x4e\x09\x8f\xc5\xe5\xb7\xcc\x68\x9f\x3d\x7d\x46\xfc\x4f\x67\x07\x2b\x3d\x71\x8c\x39\x3e\xa8\x70\xd5\x71\x01\x03\x71\x90\xef\xbb\x60\x36\x68\xbc\xff\x5d\x99\x95\x20\x8f\x7a\xdd\x2e\xf0\xa5\xa2\xa7\x46\x0d\x49\xf7\x4e\x7d\x62\x32\xc0\x5c\xb3\x4f\xf1\x4a\xe5\x3c\x54\x9e\x1e\x3e\x09\x27\x56\x71\x79\xfb\x8d\xed\xb7\xb4\xb8\x95\xe7\x67\xcf\x9a\xa0\x25\x70\xbe\x87\xbb\xf5\x3a\x3d\xbf\xf1\x3a\x59\xae\xda\xb4\xae\xea\x7f\x2c\xe8\xd4\xde\x56\xa5\x82\x3d\x1f\x03\x42\xcd\x98\xb6\x0f\x02\xe7\x32\x26\x78\xb1\x47\xdb\x14\x6d\x42\xaf\xbb\xc9\x25\x1e\x38\x23\x54\x91\x79\xee\xe1\xba\x75\x6e\xfc\x68\x3e\xbb\x34\xd3\xbb\xa2\x2c\x08\x3d\xe1\xc6\x78\xc5\xea\x11\x8a\xce\x9c\x43\x70\x43\x98\x99\x44\x57\x3c\x7c\x89\x38\xfc\x12\x6d\x86\xdd\xdb\xb4\xd1\x02\x90\x88\x12\xde\xde\x77\x3a\x24\xda\xb0\x81\xf8\x95\x1f\x95\xd3\x94\x32\xe0\xa5\x1b\x03\xb2\x93\x75\x8e\x8b\x22\x90\xdd\xc8\x55\xf8\x75\x58\x52\xf1\xce\xb7\x91\xe2\xe3\x59\x78\x5e\x6b\x52\x7a\x01\x66\xc2\x47\x8e\xf7\x8a\xd6\x9d\xd3\x01\xa5\xc8\x0c\x9c\x6e\x61\xe1\x91\xbb\xe8\x6c\x16\x8f\x53\xb3\xa9\x8b\x89\x47\xae\x51\x00\x60\x39\x4f\x38\x2e\x2d\x29\xdd\x9a\x6c\xb3\xee\x28\x4d\x94\x68\x2b\x14\xc8\xe8\xa7\xf1\x01\xcb\x94\x31\xda\xc4\x16\x57\x68\x31\xfe\xed\xd9\x6c\xb1\xc5\x67\xcf\x7d\x15\x5b\xf9\x8f\x4c\xbe\x24\xa9\x84\x1a\xbc\x35\x18\xde\xab\xf8\xf4\xc7\xe1\x9a\x27\xed\x95\xe1\x97\x2b\xcb\xdf\xa9\x14\xab\x71\x42\x2b\x40\xca\xb9\x3d\x83\xd4\x97\x5d\x0f\xb9\xef\x34\x4c\x02\xde\xde\x92\x36\xa6\x45\xf0\x2f\xf5\xe6\x2e\x7b\x36\x63\xd4\x69\x32\x52\x06\x06\xcd\xa7\x34\xff\x05\x0f\xc5\x49\xb5\xd8\xa8\x17\x3d\x20\x15\x5e\xea\x0e\x5e\xe7\x77\xb7\xce\x0f\xdf\x9c\xa2\xd0\x15\x90\xcd\x4f\x19\x5f\x5a\xff\x4c\x9f\xca\x71\x6a\xb3\x5e\xd2\x1c\x47\x3d\x8b\x81\x81\x9d\xd2\x7d\xfd\xc3\x43\x62\x0b\x38\x08\x72\x83\x5a\xab\x4c\xac\x9b\xcc\x88\xec\x15\x63\x55\x40\x55\x05\xf3\x6a\x20\x33\x61\xe9\x3a\x01\x67\x60\x15\x7b\x98\xa5\x1e\xb2\xf9\xff\x61\x2a\xe0\xb8\x5e\x07\x1c\x42\x01\x9f\xd4\xb8\x43\xb8\x1e\xd8\xd0\xb9\x3f\x3b\x4e\xc1\x69\xe2\x2a\x0d\x88\x88\x3c\x67\xd6\xc9\x7c\xbf\xb6\x16\x3b\xaa\x35\x7b\xdb\x04\x69\x08\x14\x6f\x75\x96\x11\x31\xda\xa7\xfa\x6d\x52\x20\xb6\x5d\xfb\x96\x9e\x33\x23\xd3\x96\xf2\x4a\xdf\x5e\xdc\x02\xd5\xe3\x1a\xd5\x49\xeb\xe5\xe4\x71\x88\xf7\xb7\x21\x6e\x41\x1e\xd0\x14\x02\x33\x72\xe1\xd8\xbe\xd2\xd9\x24\x91\x88\x7f\x65\xcb\x1b\x8a\x19\x3f\xf2\x09\x94\x00\xfd\x9f\x4e\x08\x0e\x1e\xae\x00\xfe\xeb\x98\x36\x88\xe7\x88\x7d\x7e\x1a\x5e\x3b\x52\x29\x98\x5c\xc2\xa9\xba\x84\xeb\x3a\x1b\xc3\xfb\xc3\xb4\x6e\x3e\x43\x3d\xc4\x49\x15\xf7\x7b\x73\xfb\x0f\xc0\x66\xf0\x6d\x26\x22\xfc\xc4\x57\xaf\xf4\xb2\xd8\x65\xea\x11\xb3\xe8\xc6\xf5\xac\xd0\x3c\x36\xb6\x83\xf7\x43\x71\x21\x65\x61\x0b\xc4\x29\x3f\x78\x97\x42\x27\x91\xfd\xcc\x23\x97\xaa\xc7\x7b\x9c\xe5\xaf\xe8\xca\xbe\xf1\xb2\x9b\x4c\x64\x72\xbf\x98\xa5\xf0\xe8\x66\x17\x4b\xd1\xd2\xfe\x72\x93\xce\xe8\x80\x8a\xb5\xd4\x9b\xfb\x73\xa0\xc8\x71\xc4\x07\xfd\xe7\xda\x64\xff\x6b\xda\xd4\xce\xe9\x1d\xc5\x52\xd4\x38\x77\x79\x12\xda\xad\x56\x88\x21\x79\xbd\x4f\x39\x1e\xc9\xe9\xdb\xfa\x5c\x1f\xf1\xb0\x41\x70\x33\xd1\xcf\x3b\x39\x71\x68\x66\x0b\x22\x08\xd5\x5f\x56\x1c\x61\xba\x12\x04\xf5\xd7\x34\xe1\xde\x69\x9d\x1d\x89\xe7\xc8\x06\x3d\x12\x34\x64\x8f\x71\xdf\xa9\x49\x0a\x94\x98\x61\x2c\x6b\xf6\x16\xca\xea\xc4\x44\xd6\x9b\xe3\xe7\x8b\xa5\xe8\x8a\x8b\xe5\x49\x6e\x13\xcf\x0a\xe3\xab\xbb\x6e\xb8\xdc\x3a\xc4\xe9\xce\xe8\xc1\x6e\x99\xa2\x48\xe5\x3a\xc5\x52\xb4\x5e\xa9\xd3\x2c\xc4\x02\x97\xeb\x70\x96\x7a\x73\x6f\x35\x5a\xf6\x44\x08\xcd\x25\x31\xb3\x1c\xf1\xf2\x60\x45\x1d\x05\xf9\xdc\xd5\xf7\x3e\x3b\x3d\xb1\x26\xf1\x41\x54\xae\xdf\x40\x08\x9a\x0b\x60\xf2\x62\x72\xc0\xcc\xd5\xc7\x87\xeb\xb5\x18\xc8\xa2\x6c\x9f\x07\xcb\x79\x05\xea\x76\xd4\x46\x7c\xfe\xcb\x5d\xc3\x15\x19\xa4\x00\x33\xc2\xcb\xa2\xe8\xcc\xe4\x91\xca\x59\xee\x71\x7c\x4c\xca\x00\x99\x22\x43\x73\xcd\x46\x2c\xde\x7b\xa4\x58\x8a\xba\x57\xe8\xe6\x92\x82\x86\xf3\xc2\xba\x6c\xed\x42\xcb\xbe\x80\xa5\x42\xdf\x6c\xd7\xdc\x36\x05\x6d\xc8\x1c\xc2\xb9\xe6\x60\x74\x51\xea\xcd\x6f\x1f\x90\xfd\x73\x68\xfa\x24\xed\xee\xe8\xcd\x6b\x41\x55\xa7\x73\x4e\xb1\x14\xfd\x68\xa0\x0e\xf6\xe4\x01\x53\xd4\x03\xf9\xbf\x1e\x6a\xa1\x46\xc3\x19\x6c\x7c\xeb\xbd\xec\x7b\xa9\x71\xaf\x60\xc0\xcd\x72\xf1\xd4\x77\x74\xef\x0e\x93\x58\xd8\x72\xba\x85\x77\x47\xa3\x01\x47\xc1\x0a\x21\xf1\x35\x66\x9c\x50\x4a\xb0\x69\x53\x60\x3f\x39\x1d\x67\x67\xda\x12\xa9\xb3\x56\xdc\xe7\xb5\xb3\x94\x8d\x81\x1b\x62\x64\x9a\xaf\x9d\x81\x5b\x9c\x16\x6f\xec\x15\x63\xe5\x3a\x54\x20\x47\x71\xfa\x78\xa2\xa1\xb0\xed\x91\xb0\xf7\xfa\xd4\xa3\x43\x33\x57\xde\x09\x47\xc4\xe7\x77\x28\x88\x39\x2f\x53\x58\x17\x5c\x47\x71\x25\x06\x46\x5f\xe1\xf2\xe3\x5a\xdf\x13\x3b\x0e\xf0\xed\xa6\x0b\x82\x27\x72\xca\x21\x4f\xec\x2c\xcd\xbd\x9c\xb7\xd5\x93\xf1\xc8\x86\x75\xd9\xbc\xdc\x11\xaf\xe6\xb5\x53\x63\x95\x20\xe8\x51\xa7\xb5\xf9\xf1\xa1\x83\x7d\x60\xfc\x85\x42\xbc\xa7\xb8\x08\x89\x61\x1f\xcf\x3d\xbf\x39\x70\xb4\xd2\x00\xac\xa2\x1e\xe2\xa9\xbc\xd9\xfc\x77\xea\xa2\x24\x22\xd5\x24\x58\x1f\x59\x95\xe8\x9d\xbb\x2e\x3f\x04\x4b\xbd\xc6\xdf\xde\x3b\x4c\x19\x00\x34\xa8\x03\x20\x8a\x1d\x67\x20\x23\xbc\x95\x38\x35\x55\xee\xbf\x7a\x52\x9b\x39\x50\xab\x5b\x74\xd7\x79\x27\xed\xb4\xe6\x13\x15\xaf\x26\x48\x5a\xf9\x45\xcf\x5e\xa4\x17\xfb\x9e\x8d\x5c\x49\x50\x7a\xf4\xb8\x0c\x94\x16\x46\xc2\x0c\xe9\xf4\x31\x40\xd2\xde\x88\xfc\x00\x33\x9d\xe5\x13\x5d\x3d\x4f\x66\x60\x4d\xac\x42\x0b\xf2\xf7\x0e\xb8\x54\xa9\x01\xa0\x49\x7f\x6f\xb6\x4d\x5e\xa5\x34\x5e\x92\x36\x6a\x10\xca\x44\x67\xe1\xec\xea\xb1\x5a\xd1\xc4\x88\x6f\x81\x57\xab\xe8\x36\xff\x76\xc5\xff\x66\xf2\xc8\x11\x4f\xbf\xab\xb7\x58\x0d\x55\x43\x51\x60\xe4\x5c\x05\x8f\x68\x52\xcf\x22\x42\x4c\xfc\xa1\x7e\x32\xa3\xef\x6a\x9f\xc3\xa5\x09\xca\x2d\x67\x3c\xc8\xed\x1c\xec\xa7\xe0\x7f\xea\x1f\xc6\x2e\x9f\x34\x9e\x5c\x92\x55\xd3\xf6\x71\x95\x5a\x5e\x37\xea\x83\x15\x10\x3d\xae\x12\x61\xa8\x85\xb9\x30\x99\x41\xf7\xa5\xa9\x77\x1d\xb5\x60\x1f\x0a\x1f\x2e\x6b\xe6\x9b\xc8\x47\x7d\x81\x70\x3f\xb7\x57\x5f\x07\x2e\xe2\x02\x95\xbc\x3d\x76\x6a\xac\x8e\x14\x0b\x44\xbf\x95\xee\x93\x34\x78\x1f\x21\xe6\x20\xec\xc5\xc7\xb0\xcd\x57\x42\x7e\xfb\xa8\x6c\xd3\x04\xc4\x75\xd5\xec\x69\xc1\x36\xa1\x0c\x0f\xa8\x98\xf8\x96\xe6\x3e\x2a\x32\x1b\xd3\xc6\x3c\xdb\x58\xf5\x9a\xee\x47\xe6\xa5\xd4\xc1\xde\xfc\x1b\x9a\x21\x9d\x4f\x1d\xce\xc8\x14\x99\xf8\x2f\x5f\x98\xa2\x9d\x73\x60\x0f\x47\xbd\xbe\x84\x65\x72\x43\x4f\xc9\xf7\x54\x61\x08\x60\x3a\xf9\x5b\x6f\x4f\x8c\xcb\x3c\x13\x27\xc4\x8a\xf7\xb5\x69\x2c\x16\xe2\x34\x00\x15\xaa\x4a\xe6\x3d\xd3\x80\x90\x79\x2b\x8d\x0f\xa0\x40\xcb\x21\x66\x88\x1e\x7c\x61\xd8\xfc\x3e\x64\x0d\xc4\x99\x50\x28\x6b\xba\x7c\xa6\xcd\x88\x1f\xb8\xe9\x80\x26\x1f\x5e\xd0\x84\x6b\x88\x1b\x57\x3e\x02\xe8\xb7\xb1\xae\x63\x72\x28\xb3\xc4\x8c\x54\xf4\x0b\xc7\x6e\x56\x97\x38\xe2\x2c\x3f\x9e\x66\x8e\x5c\x29\x94\xf6\xbb\xdd\xf8\x92\x5a\x74\xd2\x8d\xae\xe5\x43\xd5\xcd\xe1\x87\x0e\x3f\x4a\x67\x5f\x27\x87\x00\x7c\x72\xea\xfb\xa4\x5e\x27\xf1\xdd\xfc\xcd\x31\x0d\x53\x11\x72\x87\xe9\x68\xd3\x05\xc5\x1f\x19\x3b\x56\x19\xf1\x28\x6e\x9c\x7b\x56\xc0\x06\x51\x4f\x8f\x8b\x02\xd4\xc3\xd5\x78\x36\xad\x14\xc6\x1a\x76\xc8\x12\x1b\xb2\xc1\x87\x14\x69\x1c\x9e\x74\x1b\xff\xb0\xa3\xc5\x26\xd7\x0d\x39\xca\x1e\x14\x98\x0e\x75\x6a\x84\x10\x98\xf2\x4a\x75\x8f\x85\xd7\x26\x8e\xa7\x2e\x6d\x00\x3e\xa0\xe3\x5e\x11\x97\xa9\xcb\xb5\x2c\xe2\x9b\x5a\xbd\x45\x11\x0c\xa7\x60\xcb\x6d\xac\x59\x92\x02\xd5\x66\xc6\x29\xa4\xff\xba\xc6\xb5\xbb\x2b\x44\xe5\x32\x1f\xcd\xc5\xf7\x94\xfb\x93\xd6\xd1\xf5\x90\x9b\xfa\xb2\xfd\xd3\x7b\x23\xf5\x94\x2a\xf5\x79\x0b\x47\x65\x58\x8b\x90\xb4\xf0\x9e\xc4\xc9\xa7\xb3\x0b\xa3\x41\xca\x0c\x79\x00\xb5\xe9\x35\x82\x71\x8a\x62\x37\x0b\x4d\xb0\xbd\xca\x4d\x39\x2f\x58\xbf\x71\x65\xcc\x5c\x18\x04\x7f\x6f\xbe\x32\x08\xa6\x3e\x2f\x19\x4b\xbd\x85\x39\xe3\x2e\x53\xa0\x62\x7c\xd0\x23\x0a\xed\x77\x35\x78\xa9\x1d\x32\x81\x81\x38\xf7\x8c\xee\x6b\xc5\x7d\xd3\x05\x90\x64\xda\x64\x99\x84\xd5\x50\x60\x3b\x18\xab\xea\x6f\x85\x36\xa8\xd5\x96\x10\xaf\x19\x1f\x05\xb2\x30\x5c\x30\x70\xa4\x1e\x26\x6a\x42\xc3\xe2\xfb\x0f\xab\x4a\xf4\x95\x00\x8b\x6e\x80\xb1\x4d\x3a\xf3\x96\xa9\x5b\x2c\x45\x97\xad\x55\x4d\x34\x12\x27\xb0\xdc\xff\xe7\x68\xc4\x3d\x44\x9a\x3c\x95\x48\xf1\x8e\xaf\x4e\x1c\xa1\x6a\xb4\xab\xba\x04\xf8\xf9\xbe\x28\xc7\xd0\x05\x1c\xf0\xaa\x2c\xae\xaa\xa2\x34\xfa\xc9\x76\xa8\x7a\x6e\x0d\x42\xab\x75\xc3\x2d\x3a\x29\x07\x21\xf1\x02\x6a\x65\x6e\x0d\x5d\xa9\x30\x47\x00\xf1\x13\x3f\x84\xe1\xc6\x98\xbe\xee\x61\xed\xda\xe4\x16\x7e\x3d\x37\x8d\xc5\x3e\x54\xfc\xc6\xb4\xb5\xad\x20\x82\x80\x98\x1c\x71\xca\xcf\xc6\xcd\x17\x27\x0c\x71\xc6\x15\xf4\x79\x92\x32\x78\x69\x9b\x54\x3e\x22\x2d\x87\xcd\x75\xcb\x55\x0f\x28\x05\x68\xba\x4b\xb7\x46\x01\x1f\x8b\xe8\x47\x27\xa4\x1c\x47\x1d\xf4\x24\xf6\x67\x46\x14\x3e\x47\x7b\xf6\x88\x99\xc0\x03\xf5\x2b\xa0\x24\xe1\x92\x1e\x34\x6c\xe9\x16\xe7\x86\xf4\x87\xa4\x78\x39\x55\xab\x27\xe3\xf5\x63\x8a\xbb\x6a\x9c\xf5\x16\x4b\xd1\x37\x1f\xd3\x7d\x86\x1b\xc8\x07\x9c\x20\x94\x7f\xb9\xba\x26\xd2\x4e\x02\xe4\x74\x83\x95\x05\x0f\xa1\xbf\xdd\xad\x0f\xb0\x19\xb7\x07\x82\xaa\xe1\x0b\xcf\x6b\x48\x6d\xdc\x24\x7e\x96\x83\x68\x3c\xba\x4c\x76\x93\xd6\x72\x0d\xac\x56\x17\xd3\xe7\xd6\x69\x1d\x1f\x6e\xee\x04\x6d\xbf\x9f\x4f\xed\x3b\xcb\x13\x08\xb1\x03\x77\x5c\x22\x05\x03\xe2\x63\x6a\xee\x69\xf9\x82\x3c\x45\x05\xdd\x5e\xa8\xd5\x4f\x4e\xb7\x5b\x27\x69\x4a\x6d\x7c\x24\xca\xb8\xe5\x57\xb9\x52\xaa\x38\xe8\x87\x2d\x1a\x2a\x92\x56\xde\x17\x15\x4d\xd3\x7c\x25\xd1\x98\xb2\x19\x58\x10\x47\x87\x01\x44\xd3\x20\x88\xb7\xb7\x07\xc9\xf3\x38\xf4\x11\xb8\x41\xe4\xfe\xb3\xff\x68\xf5\x8b\x60\x2e\xa6\x3c\x30\xf3\x0d\xad\x02\x74\x68\x13\xa0\x26\x61\xa7\xb6\x17\x59\x68\x26\xec\xdc\x97\x77\x6b\xc9\x5b\x45\x24\x6f\x8f\x2b\x48\xbd\x32\xad\x02\xdd\xc2\xf8\xf8\x1e\xc5\xf5\x4c\x18\x40\xf2\x3a\x67\xc5\x28\xed\x63\x2a\xc4\x4c\x00\x8b\xe3\x0e\xc9\xfb\x69\x50\x27\x74\xf9\xca\x5f\x33\x4e\xeb\xa7\x50\xb7\x0c\xf0\xbe\xc2\x45\xdb\x33\x09\x89\x67\xc6\x5b\xf9\xee\x47\x87\x28\x4d\xc9\xb2\x68\x56\xcf\xd6\x86\xbf\x84\x9f\xc6\xe9\x49\xb6\x69\x71\x76\x25\xf7\x20\xaf\x87\x94\x11\x53\xe6\x1e\x4f\xe8\xc6\xc9\x20\xb4\x0b\xb9\xde\xbf\xbd\x98\x8e\x58\xaa\x24\x99\x51\xe5\x16\x2a\x1e\xa3\xd3\x66\xcf\xe9\x6a\x9f\x3d\x2d\xbe\xcf\x4b\xd6\x68\xec\xd1\xd0\xaf\x13\x93\xb3\x90\xa0\xcc\x9a\x69\x29\xb6\x44\xe0\x24\x5d\x2c\x45\x3f\x58\x3e\x44\x54\x4e\x84\x15\x2b\x8c\xc7\x93\xe8\xc8\x92\x74\x42\x38\x73\x66\xb1\x14\x1d\x7b\xeb\x03\xc9\xff\xcf\x28\x96\xa2\xc9\x8f\x68\x79\x58\x68\x23\x16\x50\x7e\xd5\x72\x49\x7c\xe1\x62\x38\x37\x16\x53\x0f\xfb\x58\x55\x9d\xbe\xed\x19\xd5\x7d\xd7\xb7\x05\xbe\xe6\xa9\x33\xaa\x6f\x15\x03\x3d\xd1\x7f\x7a\x58\x67\x7f\xfb\x75\xca\x13\x65\x2e\x20\xb9\xff\xb0\x70\xc6\x0f\xeb\x75\xd0\x9d\xfb\xf4\x0a\xb5\x90\xb6\x40\x19\x33\xda\x14\xc1\x6d\x0a\xce\xaa\xf8\xc6\x53\x0a\xf4\xb3\x1a\x12\x27\x31\x67\x1b\x3f\x42\xf1\x3a\x0d\x3d\x4f\x54\xe3\xc6\xcf\xa6\xeb\x23\x49\x14\x04\x88\x38\x52\xea\xf8\x47\x83\x87\x2a\x35\x43\x99\x06\x60\x46\xb3\xf1\x69\x85\xc5\x11\xaf\xa7\x2b\x5e\x1e\x96\xec\xa5\x94\xfb\xc4\x27\xe6\xaf\x69\x1c\xa6\x5a\xb7\x93\xcd\x6f\x73\x43\x8f\x69\x8e\x68\xe5\x38\x9f\x13\x59\xed\xe2\x75\xaa\x77\x98\xed\x60\xb8\x00\x63\xd8\x1e\xf9\xef\xd3\x3a\x3a\x8a\x3e\xe6\x10\xb9\xfc\xd7\x2e\x68\xfa\xf1\x5e\x40\x12\x47\xed\x44\x1e\x61\x98\x78\xc6\x55\xc4\x1c\x90\xf1\x63\x8f\x28\x8d\x08\xaf\x89\x54\x80\xe7\xd9\xce\x4b\x9b\xb2\x93\xcd\x5b\x4a\xff\x39\x56\xa6\xa6\xa8\x52\x21\xcc\x45\x01\x69\xf0\xae\xf4\x84\x97\xb3\xdf\xef\x22\x27\x4e\xc3\x33\xb6\x44\x05\x95\x8e\xc4\x2b\x5c\xa8\x11\x2c\xad\x94\x46\xa6\xc9\x1f\xa5\x28\x40\x6f\x53\x00\x04\x9c\x9f\x2f\x25\x24\xa2\xb6\xb7\x75\xf1\xad\x66\x42\x25\x3a\xbf\xfd\x32\x05\xc4\x19\x30\x64\x11\x30\x57\x1c\xa4\x51\xe8\x1c\x6a\x22\x59\xf6\x18\xb7\x3f\xa2\x93\x64\x5d\x30\x62\x06\x5e\xed\xaf\xcf\xc3\x51\x7f\x0b\xf5\x4d\x04\x99\xc8\xd7\x06\xea\x5e\x23\x5e\x40\xb8\x7c\x03\x00\xb9\x3e\xbf\x46\x4b\x40\x09\x76\xe0\xe3\xa2\x50\xd3\xe7\xe7\xa6\x50\x69\xdc\x59\x75\xf0\xf2\x96\xcc\x35\x3e\x3d\xe1\x63\xbf\xd8\x25\xdb\xbe\x4d\xe4\x00\x16\xe2\xce\xeb\xb2\x23\xc3\x0a\xc3\x9e\x69\x8b\xba\x51\x2a\x6f\x6c\x5e\x79\xb9\xd2\x66\x0a\x08\xf2\x14\xb4\x6e\x61\x88\x56\x35\x41\xf7\x47\xb0\x4a\xe3\xd0\x75\x40\xa3\xa8\xc7\xf9\x24\x87\xc3\x48\x98\x40\x7e\xfd\xa3\xa3\x55\x04\x5e\xc0\x90\x19\x28\xa0\xf1\x5f\x6d\x6b\xf1\xa8\x22\x49\xcb\x61\xaf\xdc\x65\x40\x59\xbd\x68\x91\x4c\x63\xdc\x78\x25\xde\x5b\xb8\x5a\x6e\x4f\x2c\x14\x78\xf9\x62\x6c\x95\x7e\x98\xa5\x31\x78\x31\xaa\x02\x5c\xbf\xd4\x9b\xfb\xde\x50\x68\x7c\x5d\x9f\x38\xc7\xbe\x37\x4f\xc6\x2e\x62\x09\x73\xd8\x1b\x06\x65\xeb\x2e\x0f\x37\xa1\x09\xf4\x61\x01\xad\x58\x7a\xfd\xcd\xcb\x4b\xf3\x6f\x4e\x05\xa1\xb6\x2a\x59\x00\x75\x89\x87\x01\xaa\xf5\xdc\x73\xe9\x7d\x75\x81\x1c\xd2\xb7\x34\xa3\xda\xba\x83\xad\x2a\xb6\x84\x51\xed\xaa\x29\x5a\x93\x83\x9b\xfd\x55\x89\x09\x4d\xcd\x6c\x1a\x53\x5c\x30\x5c\x19\xb8\x32\x8f\x9b\x90\xc4\xdf\x31\x70\x83\xe2\x7c\x21\x3a\xb2\xb9\x51\x27\x34\xe7\x77\xf0\x2f\x4a\xfa\x16\xd6\x09\x0d\x91\x81\xbc\xaa\x08\x4d\xf9\xff\xd8\x29\x90\xdf\xb4\x1b\x39\x01\x40\xf2\x8d\xef\x69\xd6\xb7\x26\x23\x2e\xd7\xe6\x88\x57\x79\xa7\xa1\x76\x87\x1d\xec\x07\xc4\x93\x03\x99\xfc\x95\xdb\xb4\xa6\x20\xf5\xaa\x89\x6b\x6e\x6e\xef\x69\x19\xf0\x42\xaf\x81\x89\x08\xe1\xbf\xe9\xd1\xfe\xc8\x26\xac\x96\x44\xef\xe1\x9d\x32\x64\xa0\x7a\x22\x64\xe0\x55\x79\x0a\xf4\x7b\x6b\x68\x12\x14\x64\x3e\x15\x6d\x53\x1c\x07\xed\xee\x3a\x8c\x30\xdb\x2e\xd6\x80\x42\x2e\x62\x01\xc4\x89\xc2\xf2\x3d\x32\x91\xe6\x24\xc1\x32\x62\x4c\x1c\x30\x85\xdc\x11\xa5\xe6\x43\x5e\x68\x9a\x84\xd7\x27\x67\x14\x40\x2b\x57\x65\xe6\xeb\xa2\xba\x41\xd1\xfa\xb2\x89\x63\x11\x3e\x33\x28\xcc\x19\xde\x62\x6f\x55\xc1\x24\x48\xdb\xee\x85\x15\xd1\x60\x95\x1d\xc5\x1d\x75\xf3\xdf\x1d\xd0\x6a\x89\x46\x2d\x12\x74\x83\xf2\xeb\x7b\x6d\xf2\xba\x6b\xa8\xee\xa8\x0a\xe1\xf9\x7d\x52\x79\xc3\x84\xd9\xdb\x5f\x34\xd5\x9c\x26\xb6\x3c\xcc\x0d\xf1\x45\xdb\x7d\xc4\x19\xfd\x60\x37\x31\x69\xa4\x23\xc4\xdc\xf3\x83\x06\x2b\x8d\x2e\x17\x76\xc2\x92\x3d\x1a\x9a\xcd\x37\x51\x1d\x46\xc0\xd1\x82\x53\x80\x35\x8e\x4f\xaf\x62\x29\xfa\x85\x06\x9b\x32\x1d\x1a\xd8\xd0\xc4\x8a\x7f\xfc\xf3\x40\x14\x24\x28\xac\x28\x67\xcd\x27\x35\x7d\x4c\x8f\xd2\x94\x3c\x1c\x0c\x9c\x20\xf7\xb8\xeb\x22\x33\x74\xe2\x3c\x50\xef\x55\x2f\x2e\x08\x22\x13\xf7\x85\x8d\xc6\xdf\xaf\x65\x9a\xf1\x61\x0d\x65\xc0\x3e\x85\xb1\x1d\xa0\xb0\x47\xd5\x14\x28\x6c\x0c\x84\x0b\x22\xf2\x3c\x54\x26\x3c\x2f\xb9\xb0\xeb\x1a\x7d\xf7\x71\x65\x53\x33\x0c\xfa\x14\x88\x23\x8a\x18\x25\xe2\x92\x06\x28\xe4\x7b\xf1\xde\x1e\xed\xd8\x07\x41\x1f\xcf\x4f\xab\xa8\xe8\xb9\x0d\x29\x46\xd3\x27\x4a\x5e\x97\x7f\xa2\x43\x91\xe5\xe5\x56\x9e\x01\x27\x4f\x44\xdf\xd7\x2c\x08\x10\xab\x86\xfc\x38\xe3\x69\xf5\x3d\x3b\xd4\xc5\x8a\x3c\x13\xda\xf4\x85\x4f\x9d\x82\x01\xd5\x32\x9b\x38\x44\xa1\x71\x19\x3b\x07\xca\xef\x69\xaa\xb6\x43\xb9\x25\xa7\x74\x25\x75\x5a\xa7\x3e\x72\x04\x3f\xe7\x89\xc5\xad\x26\xcd\x29\x4c\xef\x05\xad\x24\x67\xc8\xf3\x79\xd9\x24\xb6\xe7\x98\xa3\xb2\xd0\x61\x3e\x69\x09\x97\xbf\x5f\x3c\x54\x99\x2e\x12\x4f\x60\x8a\x9d\xae\x2c\x71\x0b\xbb\x65\xe4\xfb\xdd\x7d\x8a\xcd\xbc\xae\x39\xfc\x3a\x0c\xf5\xe1\xf0\x5b\x58\x76\x28\x7b\x1b\xd4\x4b\xb4\xe8\x7a\x8d\xd1\x9d\x7a\x83\x96\x51\x2f\xb1\x69\x28\xdc\x3f\x4b\x4b\x22\x91\xc9\x48\x5c\x12\x59\x89\xa6\x78\xe1\x81\xa3\xd9\x5f\x71\x71\x80\xea\x36\xe5\xaa\x4e\xa2\xcd\x3b\xe0\x6d\x25\x1d\x0f\x7b\x7a\x78\xf5\xf8\xe3\xf5\x59\x71\x2a\x50\x7b\x6a\x95\x77\xcc\x0d\xdf\xaf\x91\x08\x88\x87\xe1\xf0\xfb\x62\xa6\x0e\xa9\x54\x38\x55\x35\x8a\x2a\x1a\x28\x1b\xf3\xb6\x2f\xf4\x3c\xfa\x7b\x43\x24\xe4\x9c\x25\x4a\x27\xdb\x4f\x29\x83\x9f\xf8\x78\x10\xba\x6f\xaf\x1e\x4f\x7f\xdb\x45\xc2\x4c\x22\xba\x6f\x96\x84\x38\x04\xb4\x9e\x45\x99\xe5\xe6\x2e\x53\x34\x34\x69\x48\x5c\x8e\x3a\x5f\xb2\x31\xed\xaa\x90\x56\x79\xea\x79\x6d\xa3\x55\x80\xaa\xe7\x27\xf2\x12\x82\x02\xf8\xa5\x65\x1a\x02\x91\x72\xe4\x2d\x8f\x55\x53\x56\x29\x56\xf2\x30\x76\x19\xb9\x55\xee\x37\x5f\x11\xec\xcc\x9f\xb9\x20\x40\xfa\xd8\xc2\x7e\x10\x1f\xc4\xbc\x30\x3a\xa0\x35\x39\x4c\x9b\x98\x35\xec\x25\x83\xf6\xcb\xee\x48\xbb\x63\xc8\x52\xb1\x26\xd1\xa3\x96\xb4\xa2\x58\xcb\x1f\xef\x4f\x17\x66\x91\xfb\xdd\xd8\x22\xb4\xaf\x88\x12\xbd\x37\x49\x0b\x66\xc8\xab\xc1\x3c\xc7\xb8\xa0\xb7\x7d\x43\x16\x70\x64\x91\xd8\x95\x3d\xcf\x8f\x54\x24\x0e\x9a\x98\x15\xeb\x8c\x98\x90\xc9\x8f\xd8\x31\x44\x3c\xc6\x30\xb0\x2b\x21\x80\xab\x8c\x6f\x8c\x51\x3d\xbd\x5d\x28\xd9\x1e\x52\xbc\x4f\x2a\xa9\x8d\xf3\xfd\xe2\x68\xf6\x78\x3f\x34\x19\xdd\x6d\x5b\x26\xec\x4a\x18\x29\x43\xb5\xfb\xd0\x23\xaa\x67\x85\x0f\x89\x7d\x18\xa5\x98\x45\xd2\x50\x08\x1a\xb9\xfd\x7b\x92\x13\xdf\x0e\xdd\x14\x94\x63\x6c\x78\x4d\x39\x99\x02\xe4\xf2\x9c\xbb\x09\x44\x1c\x07\x7b\xc5\x39\x6a\xa5\x71\xe7\xdd\x89\x1d\xb5\x5b\x16\xd6\xeb\xff\x73\x46\x06\x36\x88\x84\x8e\x03\x90\xd7\xcd\x67\xa1\x2a\x5c\xe8\x20\xa2\x48\xa0\x19\xd7\x0a\xeb\x67\x6a\x72\xd7\xe0\xf8\x43\x3e\xa0\xb1\x49\x11\xc3\x42\xaf\x5c\x9e\xca\x77\x2d\x1e\xdd\x67\x81\x94\x74\x04\xa6\x0a\xca\xed\xf5\x5c\x45\xa0\xd7\x58\xa2\xd5\x0d\xd3\xa6\x01\xa3\x19\x7e\xfb\x6f\x4e\xca\xc8\x57\xa3\x76\x02\x51\xbc\x69\xbd\x16\xf9\xbc\xaa\xa0\x3d\xb5\x9c\x47\xb9\x0d\x6b\x75\x79\x05\x1f\x64\xf8\x8a\xa5\xe8\x67\x65\xad\x65\x16\x3f\x98\xd4\x7a\xc6\xe8\x7a\x53\xd6\x90\x35\xaa\x5a\x02\xe6\xb6\x2d\x15\xcc\x30\x21\x13\xce\xc5\xd9\x36\x26\xee\x18\xe0\xde\xc1\x23\xcf\x5c\xe3\x4a\xfd\xf8\xf4\x89\x1f\x24\x1e\x18\x7c\x7d\x75\x1f\x90\x25\x03\x87\x8f\x17\x6a\xfb\x32\x20\x53\xa0\xc9\x19\x8b\x57\xea\x32\xb7\x4e\x9f\x10\x3a\xf7\x25\xc5\x9c\x16\x85\x30\xb0\x2d\x7c\x7a\x50\xf6\x08\xb0\x43\xb7\x8c\x59\x40\x35\x5b\x94\x27\xbd\xc1\x4a\x98\x20\x8c\xeb\xaf\x2c\xde\x72\x99\x92\xd9\x72\x4f\x2a\x31\x1f\xbb\x68\x42\xe2\x76\xd9\x20\x0d\x31\x14\x78\x61\x5b\x1a\x56\xb0\xa5\xfa\xf8\xff\xb1\x2c\x0f\x3a\xb0\x65\xd4\x30\x84\x8f\x09\x18\x03\x36\xa9\x07\xe2\x53\x3c\x05\xd1\xa0\x37\x5c\x71\x43\x8c\x53\x0a\x13\xcf\x2b\xb6\x9e\x71\x01\x19\x97\xc0\xbc\x87\xb0\xf0\x84\xee\xcf\x8a\x39\x38\x03\x44\x2e\xde\xff\x74\xe2\xe2\x1c\x60\xe6\x63\x33\x71\x27\xb8\x23\xd9\x3c\xd8\x71\x42\x87\xf7\xea\x8d\x1d\x60\x1b\x5d\x5c\x8c\x9b\x71\xba\x9b\x16\x86\x0f\x9f\x81\x1e\xfe\x52\x5a\x76\x5a\x11\x91\xcf\x4f\x54\x50\x2d\x55\x94\xc9\xb4\xc6\xf6\x28\x68\xb0\x30\xce\x87\xc3\x94\xc7\x3d\xec\x82\x56\x6e\xc6\x99\x82\x58\x2a\x33\xb6\x5f\x2a\x32\x2b\x1f\xbb\x65\xe8\xae\x5e\x7a\x32\x1b\x06\xab\x98\x56\x19\xaa\xdb\x9c\x1e\x1d\x5f\xfe\x9f\xd6\xc8\x59\x3c\x6a\xd6\x9a\x88\xc5\x79\x31\x7f\x46\x68\x91\x0c\xcc\xd0\x67\x69\x74\xb6\xca\xc3\x7b\x88\x91\x44\xde\xdb\xf8\xcd\x74\x85\x6a\xec\x52\x1a\xd8\xfc\x93\x3e\xb3\x2a\x7b\xd5\x88\xb3\x3b\x21\x0f\xf3\x4e\xe8\x16\x47\x34\x95\xba\x7c\xfe\xd9\x64\x0e\xd5\xc0\x5c\xa8\x9c\x13\xf3\x05\x4e\xc2\x44\xbe\x89\x78\xa0\xc8\xed\x16\x1e\xfb\x4b\x51\x3d\x85\xce\x6f\x19\x9e\x5e\x3d\xa7\x47\xfd\xf5\x80\x62\x04\x24\xca\xe4\x82\x31\x21\x3d\x9a\xc3\x5a\x62\x04\x96\x7f\xab\x6b\xa8\xf8\xda\xaa\x1d\x60\x26\x04\x7b\xf3\xab\xee\x96\xe7\x7b\x19\x79\x29\x6a\xf4\x86\x31\xd9\xdc\xc5\xa1\xd5\x04\xaf\x93\xbc\xd2\xdb\x95\x2f\xe7\x95\x51\xb1\x14\x6d\x1d\xa1\x0c\xee\xab\x2d\x1b\xf5\x96\x4e\x61\x38\xc6\x70\x68\x11\x55\xb5\xb1\x70\xf5\x01\xf8\xd1\x12\x64\x11\xdf\x41\x0d\xd5\x3b\x64\x6e\xea\xe3\xcb\xf5\x53\x78\xb3\xf1\xa9\xbd\xd9\xdd\x8d\x1c\xa7\xcc\x48\x10\x50\xef\x9a\xb9\x4a\x82\xfb\xd3\x89\xc2\xbc\xdf\x64\xc8\x2d\x3b\x30\x51\xfd\xdd\x31\xdd\x2e\x4f\x4a\xc3\xd2\xb9\x93\xf5\xf8\x05\xa9\x6b\x1f\x59\xa6\x81\xea\x97\x88\xb8\x51\x26\xdc\xb4\x6e\xcb\xb5\xb2\x3b\x02\x93\xfa\x5b\x5e\x52\x1b\x6b\xa9\xa0\xa9\x71\xf7\xed\xd0\xdd\x60\xc8\xe3\xca\x05\xdf\x3a\xad\xe8\x0f\x57\x2a\xc4\x24\xc2\x8d\xff\x86\xfb\x75\x5d\x9f\x6a\xaa\x14\x60\x94\xa0\xc7\x56\xf4\x42\xd3\xc1\x88\x15\x9b\x18\xd5\x05\xac\xb5\xfd\x69\xe5\x18\xa6\x94\xb3\x11\xa3\xed\x12\x89\xeb\xa2\x90\x63\x65\xf6\xe9\x10\x12\xce\x2d\x4d\x9b\xad\xdf\x5e\x39\x44\xda\x1a\x8a\x01\x7a\x74\xa3\xe2\xd5\x51\xa7\x56\xb8\x16\x37\x78\xb7\x8d\x3a\xba\xa5\x25\x97\xc9\x17\x54\x92\xbf\x74\xea\x8d\x78\xee\xf7\x9f\xfc\xf8\xfd\xfb\xb4\x25\x87\x9a\x71\x24\xf0\xe0\xe1\xf3\xd8\x67\xcc\x53\x26\x9e\x36\x0b\x13\x50\x51\xfe\xd3\xa7\x47\x2a\xc3\xb7\xa2\x83\xc2\x54\xa9\xc1\xf8\xd0\xfd\x97\xa9\xa9\x44\x90\xd8\xc1\x47\xa3\x9f\x87\x87\x77\x0b\x72\x3c\x52\xa3\x8a\x8f\xe6\x03\x0f\xe8\xb2\xce\xdc\x6b\x11\xf0\x76\xff\x67\x83\xa2\xf7\x12\x08\x39\xa7\xf1\x8f\x64\xdb\x50\x3d\x33\x04\x37\x6c\x9d\xc2\x76\xe1\xde\xbc\x3c\xbd\x99\xa7\x49\x18\x12\xcf\x22\xd0\xe9\x4c\xa2\xce\xd4\x25\x92\x14\xd1\xd5\x31\x8d\x63\xc4\x16\x29\x13\xd0\x38\x86\x12\xc8\x68\x06\xb5\xc9\x0b\x8a\x6b\x4c\x00\xb8\x8e\x78\x70\xb4\x92\x86\xb1\x2a\xf6\x83\xa2\x2f\x5c\x44\x79\x9f\x7d\x0d\x24\x26\x37\xf4\xf0\x98\x9f\xef\x5d\xa9\x3c\x26\xa4\x0a\x67\xbd\x5f\xa3\x1f\x27\x03\x14\x28\xe6\x9c\xeb\x12\xd5\x70\x21\x1f\xc6\xb7\xd8\xab\x3d\xc3\x94\xbc\x12\x55\x1c\x41\x88\x89\xde\x92\xdf\xe2\x25\x56\xf3\xbc\x6f\x39\xfb\x5d\x49\x7a\x77\x89\x69\x23\xec\xf8\x58\x35\x7a\x5a\xbb\x4c\xc3\xf1\x23\x46\x52\x50\x51\x2a\xbe\x78\x5a\x38\xae\x62\x54\x69\xe9\x1a\x6c\xb3\x35\xc9\x65\x40\x22\x70\x95\xb1\x57\x65\xe2\x55\x65\xc8\x83\xac\xf5\xef\x37\x67\xec\xe4\x03\x21\x24\x63\x29\x90\x0e\x86\x7d\xdb\x85\xbe\xdd\x1f\x1e\x92\x07\x85\x13\x9a\x04\x71\xd0\x74\xee\x4f\x0b\xb3\xdf\xca\x50\x9d\x58\x30\xb7\xdb\x0c\x27\x5f\x71\x19\x43\x65\x1b\xd5\x90\xca\xb2\xbb\x7f\xff\xa5\xca\xa4\xc6\x71\x8a\xa5\xa8\xbe\x4c\x98\x2b\x85\x65\xac\x8c\x03\x8c\x0f\xac\x1d\xd7\x72\x84\xf1\x2e\x1f\xf1\x52\xc8\x6e\xfe\x77\x77\xf4\xcd\x06\x94\x99\xd0\xe1\x65\x5a\x48\xe5\xe9\x56\x4b\xcd\xfc\xb7\x53\x24\xef\xb4\x55\x8c\x3e\x3f\xfa\xd4\x18\x15\x88\x6f\xd1\xf8\x2a\xb8\xa9\x10\xec\xba\xe8\xbd\xec\x36\xf7\x30\xa9\xda\x65\xca\x6c\x4a\xc5\xbc\xe9\xb7\x93\x44\x5e\x49\x59\x50\xa1\x0e\xe1\xa1\x65\xd0\x40\x6d\x88\x11\x96\x11\x43\xb5\x8c\x5a\xcd\x77\x26\x67\xf3\x45\x30\x5e\x99\xda\x92\xa8\xbc\xf5\x82\x36\x14\x68\x12\xd7\x4d\xdb\x56\xbd\xb9\x75\x87\xdb\x64\x14\x6f\x61\xd6\x1a\xc3\x47\x49\xa7\x01\x4e\x38\x8b\x6f\xeb\x73\x16\xc4\xf3\x69\x53\x3b\x3b\xbb\xe2\x0f\xb9\xf2\xe2\x41\xca\x2a\xe7\x09\xf3\xdb\xfd\x14\xc1\x24\xc9\xd1\x88\xa6\xf4\x53\xf8\xbd\xed\xe5\x76\x12\x17\xeb\x73\xaf\xd3\x0e\xa9\x66\xe2\x22\x13\xfd\xf0\x4c\x36\xd8\x34\x13\xdb\xd5\xb6\xb9\xe3\x94\xb9\x4a\x5c\xf7\x54\x5b\xd3\xb4\x6f\x3e\x33\x59\x2b\x10\x58\xb7\x32\x20\xc8\xfe\xf2\x13\xe3\x86\x48\xe1\x9a\xc4\x34\xd2\xb0\x8f\xb6\xfa\x4e\x87\x6e\x52\x65\xfc\x22\x18\xad\x1f\xaf\x66\xcd\x93\xed\x9f\x0f\x3a\xd9\x0b\xa8\x51\xd7\xc5\xcc\x47\xbc\x8b\xa5\x15\xc3\xc7\xeb\x52\x34\x38\x2b\xca\x54\xd8\xbc\x5a\x72\x1d\x99\x0a\x17\xff\xea\x1d\x23\xb4\x83\xc4\xac\xc1\x83\xbb\x6b\x35\xc0\xd6\x66\xf1\x92\xfc\xcf\x8b\xb2\x99\x5f\x03\x7b\x9c\x41\x9e\xce\x78\x5e\x52\xc8\x6c\xd3\x3a\xa6\x4e\xef\xe2\xf2\xda\xf7\xcf\x1f\xab\x0a\x2c\x98\x61\xcb\x23\xce\x9d\x0c\xb4\xee\x18\x75\x85\xef\x6b\x74\xb0\xae\xe1\x79\x28\x62\x62\x7e\x65\xdc\xd7\x80\xfd\xfd\x89\xb8\xce\x54\x6e\x68\x98\x26\xaa\x80\x6c\x17\x5b\x9a\xa0\x70\xd7\x14\x19\x3e\xf9\x6c\x44\x7f\x93\xff\xbc\x4d\xeb\xd5\xc6\x55\x2e\xaf\xca\x20\x51\x79\xf3\xee\x84\xdb\x81\x05\x05\x26\x7f\xf0\x80\x44\x9e\xf9\x35\x52\x2c\x45\xef\x9c\x52\x49\x91\x9e\x10\x47\x6d\x40\xe9\xf7\xad\x48\xd7\x2e\x24\x55\x64\x71\x35\x8c\xe8\xbe\x7e\x2d\x66\xd7\x7e\x3d\x15\x36\xbc\x78\x89\x9e\x83\x33\x42\x43\x38\xfa\x79\x63\xe3\xfd\x53\x65\x2f\x67\xfa\xcc\x0e\xd0\x47\x7b\x2f\x5d\x1a\x4e\x60\xab\xd8\xa4\xc2\xd2\x17\x15\x4d\xcd\xd0\xe5\x9d\xd3\x9f\x1f\x1c\xa9\xc0\x4d\xb2\xe6\x9b\xe3\xeb\xe9\x52\x32\x69\x53\x09\xc2\xec\xe0\x65\x4a\xf6\xe6\xe0\x06\x75\x44\x5a\x76\xdf\x22\xa9\xd0\xa0\x9c\x96\xd1\x13\x2d\xa0\x87\xc0\x16\x43\xc1\x25\x77\x0f\x16\x79\x36\x63\x44\xa4\xf9\xf9\xff\x7e\x62\xb8\x9a\xc2\x73\x30\x01\x7f\x9a\x2f\x4d\x91\x27\x68\x37\x65\x35\x48\xe4\xa3\x95\x7b\xb5\xd7\x88\x3d\x9f\x32\x2e\x7e\x1c\x3f\xe7\x2f\x6f\x92\xe9\x46\x19\xf9\x04\x20\x2e\x1f\x17\xcc\xd4\x26\x23\x22\x7d\x1e\x76\xbf\x6a\xa5\x1c\x60\x46\x30\x97\xe1\xfc\xeb\xfc\x54\x6e\x85\xb3\x2e\x9f\x1b\x95\x6d\x31\x36\x08\x12\x30\xbb\x45\xef\x41\x41\x31\x1f\x3b\x15\xe4\x27\x8e\xa5\xb9\x97\x9f\x18\x96\x8d\x71\x26\xf0\x08\xef\x9b\x9a\xc5\x33\x54\x91\x57\x6d\x22\x87\xef\x0a\x19\xc1\x5f\x59\x21\xfb\xa1\x98\x09\xfb\xf9\xef\x2e\x9e\xa8\xc5\x0b\x07\xfb\x71\xc6\xd6\xc8\xd8\xfd\x47\x67\x0b\x8a\xa6\x92\xb0\xaf\xe7\x49\xc7\x73\x83\x35\x29\x3b\xf3\xae\x90\x80\xd1\xbe\x70\x58\xf9\xea\xa9\x61\x8a\x9c\x52\xb5\x9a\x54\xfb\xab\x1f\x57\x0a\xae\x38\x4d\xff\xe8\xd2\xa1\x0a\xd1\x0e\x35\xb9\x9a\x59\xf4\xab\x03\x5a\xb3\x9c\xc6\x9f\xde\x10\x40\xaf\x19\x2f\x67\x57\x77\x99\x38\x65\x44\x53\xcd\x9a\xc8\x7a\x57\xdb\x1b\x98\xd6\x9d\x24\x5e\x7c\xf8\x8c\x52\x7d\x62\x5c\x13\xec\xb4\x19\xef\x40\xe5\xc1\x13\x47\xbe\x20\x7f\xbb\x46\x36\x6f\x2a\x94\x61\x52\x4d\xf9\x5e\x43\x7b\x34\x55\x61\xb7\x6e\x23\x5f\xea\x0d\xfd\xec\x41\xbd\xc4\xf0\x90\x67\x8a\x56\xf2\x91\x37\x54\x73\x7e\x46\xe2\xbd\x34\x7b\x83\xee\xbf\x2a\x3a\x90\xc6\xa5\xfb\x94\x0c\x3d\x08\x83\xa0\x8a\x18\xff\x8e\x91\x75\x69\xb2\x17\x9a\xc5\x52\xf4\xdc\xb5\x3a\x04\xad\xc2\xfd\xaa\x02\x3f\xd1\x9f\x9d\x71\x4a\x39\x16\xb9\x57\x4b\xb1\x14\xf5\x06\x4a\x5a\xe4\x60\xbe\x40\xa6\x3f\xaa\x2b\xef\x63\x52\x6b\x91\xcc\xda\xe6\x64\x13\x8f\xd0\x03\x8e\xb9\x34\x73\xc8\xbd\x33\xf5\x72\xb5\x58\x63\x65\xac\x18\x40\xbe\x3e\x4f\x70\x19\x18\xaa\x88\x4c\xf0\x17\x4b\xb4\x49\x16\xb7\x86\xe1\x47\xcd\x1d\x4f\x08\xf3\xa9\x06\xf6\x5a\x4f\x88\x7c\xed\x6e\x21\xb0\xe5\x50\x0f\x68\xbc\xfb\xa6\x5c\xaa\xd0\xb3\x3a\x78\xc2\x30\xca\xd0\x4a\x22\x5c\x8d\x8b\x63\xe1\xa0\x0b\x1a\x90\xef\x28\x45\x01\x36\x19\x0e\x60\xbf\x3d\x78\x4c\x15\x69\x80\x78\xfe\xf3\x57\xe1\x0e\x16\xd1\xc0\x11\xc6\x73\x1f\xda\x96\x2e\xf0\x19\x9d\xbc\x15\xf7\xc5\x2d\x8a\x74\x22\x22\x71\x7e\xf2\x7e\x4f\x86\x4e\xaf\x9b\x85\xca\x8e\xcd\xbd\xa8\xc1\x5e\xc1\xeb\x5d\x80\xcf\xf2\xb3\x66\x71\x1d\xc0\x80\xf7\x02\x92\xa3\x5b\xf5\x54\xbd\xe8\x6d\xc1\x04\x24\xc8\x33\x91\x12\x79\x2f\x51\xf1\x4b\xd8\xc2\xdc\xa1\x2d\x6a\xdb\x33\x52\x29\x3c\xfd\xa0\xe8\x52\x16\x60\x97\xdf\xdd\x8f\x36\x8b\xc6\x0a\x6a\x50\x46\xb8\x7c\x54\xf4\xa7\xe1\x2a\x88\x26\x20\x26\xa9\x27\x52\x43\xc6\xdf\x04\x9a\xaa\x52\x7c\x48\xa7\xa8\xb1\x9d\x07\xb2\x39\xd6\x6c\xc1\xaa\xbc\xc3\xc9\xc6\xf7\x80\xb8\x98\x4b\x1b\x47\xfb\x6f\x87\x27\x6e\xa1\x10\x5a\x2c\xa5\x68\xe7\x52\x79\x5c\x36\xb1\xe3\xc4\xf9\x82\x20\xb7\xf4\xe6\xf7\x4d\x6e\xd1\x78\xf6\xb8\x75\x9f\x10\xb1\x5f\xf7\x6c\x56\x80\x80\x7a\xe0\xdf\x09\xd6\x22\x9d\x8a\xe0\x91\x62\xdc\x6e\xdc\x34\x25\xd5\x33\x0b\xf8\x00\xb0\x58\x8a\x9e\xda\xde\x62\xaf\x9b\xd8\x14\xc5\xb7\x74\xf6\x45\xf1\xe0\xb8\xbf\x3a\x06\x40\xd2\x45\x1b\xf4\x66\x62\x68\x75\xc7\x7f\xc3\x07\xd5\xed\xcf\xe9\xb6\xf2\x8c\x0a\x5b\xa8\xde\x9c\xdf\x6f\xb4\x96\x9e\x3a\x96\x89\xa4\x1c\xed\xfa\x60\x58\x2a\x2a\xa9\x0a\xe7\xbf\xa6\x7b\xce\x63\x3f\x90\x2f\xe4\xeb\x6f\x8f\xd4\x72\x4e\x3f\x48\x2c\x8e\x56\xaf\xca\xc6\xdf\x1a\x01\xe3\x4d\x81\x24\xef\x7c\x09\xde\xcc\x9c\x59\xb3\x8a\x33\x3a\x67\x74\xf2\x36\xea\x83\x52\xc1\x5e\x75\xaa\xcd\xe5\xce\x2b\xd5\x1d\x61\xae\xe8\x1c\x1a\x8f\xcf\x17\xde\x80\xc8\x42\x35\xaa\x94\x4d\xe3\xde\x50\xd6\x24\xa7\x2a\x2b\x45\x9c\x2d\x8f\x59\x1b\xa5\x34\xfb\xb9\x8f\x2a\x90\x52\xe4\x05\xa1\xda\x8f\xae\x28\x52\x89\x61\xc0\x50\x15\xe2\xc3\x17\x97\x0f\x57\x71\x13\x18\x25\xe2\x0a\x7f\x7f\xb1\x82\xfc\x2a\x33\x62\x55\x8b\xae\x48\x52\x56\x4f\x97\x9f\x65\x63\x46\x02\xae\x92\xd9\x6b\xa0\xb7\x35\xc5\x9c\x06\x66\x1c\x28\x21\x52\xf8\xde\xdc\x2d\x4b\x74\x69\x7d\x29\xd1\x32\x62\xb3\xb6\x34\x80\x28\x26\xa2\xf6\x58\x5b\x46\x6d\xca\x12\xb4\xdf\xc2\x01\x7d\xcb\x07\x42\xfe\xf7\x4f\x6f\x69\x4d\x28\x57\x34\x2a\x44\x13\x65\xa8\x34\xff\xc2\x4a\x3f\xba\xd7\x78\x65\xd1\x25\x6a\x79\x52\x8a\xa6\x29\xb2\x64\xa6\x4d\x7d\x0c\x3e\x22\x83\x27\xeb\x20\xd2\x80\xb7\x4f\x20\x56\xbf\xb4\x51\xe6\xb9\x4d\x14\xef\x98\xfc\x69\x5e\xcd\x39\xd8\x2b\x4e\x9f\xc6\xfb\x03\x8f\x43\x97\xe3\x66\x4b\x09\x52\xb9\xbb\x76\x65\x0b\xce\x75\xac\x6f\x8e\xff\x98\x89\xd2\x34\x97\x27\x0c\x33\xb6\xb6\x29\x43\x07\x0b\xf8\x64\xf2\xa8\xb2\x6c\xa9\xf0\x81\x64\xcf\x35\x9a\xf0\x5c\x9b\xb2\x6e\xcc\xf8\x95\xaa\xab\x6d\xf7\xb2\xf4\x31\x21\xbb\x5b\x09\x0a\x3f\xda\x91\x0e\xc8\xea\x29\xe8\xf3\x6d\x8d\x5d\x1e\x06\x36\xef\xbc\xf3\x51\xe3\x99\xb2\xf6\xfe\x19\x16\x58\xc5\xe8\xf0\x1a\xcd\xa4\x0d\xaf\x13\x68\xba\xdc\xb6\x8a\x7c\x90\xd3\xf9\x11\x96\x7f\xc0\xb9\x3c\x73\x88\xe3\x20\x50\x16\xfb\x22\xc1\x8a\xe2\x55\x50\xfc\xe1\x0f\x42\xaf\xa9\xb8\x28\x74\x51\x4b\xeb\xc1\x78\x4e\x0b\xd9\x88\x43\x4f\x45\xdc\x29\x0c\xdb\x99\xe8\xd5\x4b\xcf\x94\xdc\x23\xc7\xb4\x62\x13\x39\x6e\x77\x8d\xa0\x3e\x78\x52\xd1\xde\xa1\x72\x6e\x60\x11\xdf\x24\xf5\xf8\x98\x8c\x2f\xeb\xfc\x46\xa8\xcc\xe6\x53\x18\xe3\x24\xd7\xdf\x98\x37\xba\x35\x01\x70\x91\x50\x4c\x88\xde\x3e\xa7\x60\x5c\x89\x85\x13\x97\xec\x4f\x3d\xa8\xec\x71\x86\x9c\xaa\xc0\x3a\x7f\x61\x92\x46\x83\x45\xac\xe6\x25\xcd\xe7\x52\x6f\x7e\x83\xb6\xf3\x6c\xca\x5c\xea\x61\x01\xcd\xbb\x20\xe0\x8f\xa6\x43\x12\x29\x14\x73\xe2\x20\x15\xe8\x57\x2c\x45\xdf\x9d\x92\xad\x25\xfd\x3a\x32\x71\xbc\x1d\x1b\xd8\x11\x62\x7a\x17\x1a\xba\x14\x0f\x66\xd5\x54\xff\x32\x77\x62\xb8\xe2\xb8\x67\x26\xcd\x8d\xdc\x55\xd7\x65\x15\x2f\xb8\x12\x6a\x9f\xbb\x61\xe0\xe3\xf0\x30\x19\x72\xcb\xa1\x17\x7f\x02\xb7\xdf\x34\xca\xb6\x4e\x29\x00\x39\x25\x71\x7b\xb3\x97\xeb\xac\x4f\xcf\x53\xe5\x80\x9f\x05\x26\x6e\x31\x08\x59\x39\x74\xb0\x27\x06\x92\xaf\x8d\x95\xb1\x23\x50\x47\x9a\x93\x06\x29\x12\x07\x94\x81\x3b\x77\xe1\x93\x8f\x25\x8c\x55\x3f\xa0\x90\xba\xae\xd2\x08\x4e\x78\x5d\x1d\xc0\x69\x42\x81\xeb\xa2\xa7\xb3\xd3\x59\x1b\xb1\x06\x14\xf5\xad\x1c\x8d\x37\x2f\xc8\x2f\xad\x52\xc7\xe2\x34\xa4\xdc\x62\x06\x55\x57\x40\x39\x74\xc8\x98\x31\x58\x0c\x07\x28\x05\xf3\xcb\x17\x26\x5c\xaa\xc2\x73\x6b\xc5\x52\xf4\xee\x4e\x65\xc2\x4d\x43\xcf\xc7\x0e\x85\x34\x2f\xe8\xca\xb6\x03\x3d\xd4\xc3\xad\xda\x3c\xb5\xe4\xfd\xe6\x92\x6c\x0a\x8f\x3c\xd1\x7d\xeb\x78\x62\xb0\x8a\x21\x80\x91\xdb\xf7\xed\x96\x86\x0f\x40\xaa\xa1\x46\xb8\x69\xed\x70\x29\xf9\xa2\x58\xb0\xe6\x87\x3d\xac\xf8\x4c\xa9\x86\xba\x95\x59\x52\x3e\x19\x72\xe9\x7f\xd1\x58\xb9\xa6\x8d\x5d\x62\x82\x55\x7e\xfc\x1d\xa5\xe7\xe5\x52\x9e\x31\x83\xcb\x0f\x7e\xf5\x3d\xf9\x08\x1a\x19\x0f\xb0\xc3\xa7\x15\x58\x43\xb7\xcb\x25\xb8\x0a\x1f\x6d\x4b\x2f\xc6\xba\x5a\xed\xaf\x7c\x7e\xb0\x2c\x9a\x67\x4c\x9b\xda\x31\x73\x26\xd7\x43\xbc\x36\xf5\x0a\x43\xaa\x57\xd8\xee\x00\x5e\x0e\x17\x44\xe0\x99\xfb\x6b\xc3\xb5\xc3\x05\x48\xd3\x5b\x0e\xc9\x77\xdd\x44\xc9\x64\xed\xbf\x56\xa6\x57\x61\xab\x4e\x86\x79\xef\xa8\x22\x15\x84\x1d\xa5\xb9\x63\x5c\xbe\x52\xeb\xa8\x61\x07\x0b\xbf\xc1\xf6\x62\x29\xaa\x2e\x91\x4d\x3a\x94\x8a\xde\x2d\xdd\x2d\x73\xdf\x06\x59\x8b\x94\x03\x21\x7f\x68\x80\xae\xd2\xef\x38\xc9\xe4\xe1\xce\xd7\xc5\xb8\x0d\x05\xb8\x9a\xe8\x3a\x1b\x48\xd3\xc4\xad\x20\xc2\x9a\xa8\x5b\x20\x61\x0e\xad\x4f\x6f\xaa\xa2\x66\x53\xc6\x39\xcd\xbb\x5a\xec\x68\x78\xa5\xff\xa9\x01\xa4\xac\xd0\x05\x4b\x7d\xc9\x32\xab\xd4\xe5\xca\x22\x4a\xd6\x95\x3b\x3a\x48\xc3\xc2\xa4\xed\x2c\x31\x67\xfd\xdb\x4d\xc3\xb5\xfa\x52\xe8\x21\xdc\xbc\x4a\xeb\xa6\xd5\xeb\x4e\x3a\x7c\x01\x1c\x6d\xee\x07\x6f\x28\xa8\x58\x0e\x9a\xab\xab\x1d\xc6\xbc\xd6\xe1\x74\x91\x83\xaa\x28\xc9\x55\xa3\x3f\x8e\x80\xe3\xb6\xcc\x50\x3a\x6e\xd9\xb1\x5e\xae\xc8\x09\xc9\x50\xf6\x4f\x47\x55\x28\x6a\x77\x92\xb6\xfd\x6c\x5d\x0b\x00\xb8\x12\xfa\x09\x0c\x3e\xfa\xd6\x7b\x6d\x7a\xe1\x00\xe6\x30\x1c\x1e\xfc\xed\xa1\x32\x54\x40\x95\x17\x4d\xb9\x5f\x33\xe5\xa8\x52\x8f\xf0\x96\x6f\x92\x5d\x1b\x07\xeb\xd2\x0c\x19\x58\x0b\xcf\x35\xd2\xc1\x1f\xbe\x3a\x75\xfb\xf9\xee\x13\x40\x38\x59\x4e\x4c\x3b\x3e\xb2\x69\x3a\xd0\x1c\x36\xe6\x7f\x55\x34\x8d\x0b\x96\x5f\x6e\x1d\xaa\x96\x42\x20\xb9\xd2\x6b\x5c\xb6\x4a\xe1\xda\x13\x2b\x34\xb9\x66\xf7\x27\x36\x0c\x55\x9a\x62\xdc\xf0\x3f\xfe\xe7\x3f\x97\x15\x27\xaa\x38\x59\x8d\xff\xf1\x0f\x2f\x5f\xae\xe5\xfe\x8e\x83\xad\xa4\x3c\xce\x0d\xcc\xae\x3f\x13\x95\x11\xc3\x22\x6c\x3d\x72\x5c\x76\x77\xdc\x78\xc7\x5e\xe6\xc8\xfc\x0a\x39\x45\x17\xdb\x96\xc4\x2a\x45\x8f\x6d\x52\x84\x82\xe2\x94\x99\xb7\xa7\x8c\x23\xcf\xa5\xa1\x0c\xaf\xe5\x3d\xbd\x8f\xed\xc8\xbe\x3f\xc1\x2c\x4d\x0b\xa0\x39\xed\xaa\x02\x5e\x53\xa4\xc8\xc3\x35\xa3\xd9\x6e\xec\x38\xb4\x29\xb6\xca\x7a\x8d\x28\x5b\x25\x0d\x9c\xd8\x89\xad\xd7\x0c\x55\x88\xef\x87\x29\xfb\xf6\x97\x93\xf5\x1f\x3a\xc8\x4d\x1a\xdc\x13\xfa\x2b\x47\x20\xcf\x96\x39\x54\xcd\x56\x99\x8c\xc0\xb0\x88\x2f\x3b\x5c\x34\x51\xcb\x3e\x42\x5f\xd0\x48\xb2\x07\xfc\xb7\x1e\x94\xb3\x4b\x12\xf0\xd5\x74\xf5\x5b\xe3\x95\x36\x96\x17\x60\xae\xad\xac\x8f\x26\x6e\xdb\x07\x35\xd6\xf5\xc8\xa5\x96\xd2\x54\xfd\xd3\x36\x4d\xf2\xc6\x71\x42\x00\xdc\x8b\xb6\xd3\xc7\x7a\x06\x2b\x1a\x4e\x04\x92\xfe\x7b\xc6\x0c\x6c\x26\x8d\x02\xfe\x0f\xdb\xaf\x1b\x95\xa5\x9d\x00\x63\x9c\x93\x8a\x8d\x4f\xed\xd7\x1d\xc8\x1a\x98\x79\xae\x84\x72\x19\xbf\x7b\x62\x98\xda\x55\x76\x13\x40\xf9\x86\x13\xba\x37\x9b\x1f\xdf\xa2\xf8\xab\x27\x2b\xc0\x35\xbf\x05\x39\xa8\xdb\x27\xa8\xe5\xa6\xc7\x9f\xd0\xbe\x18\x33\x17\x79\x5c\x8d\x50\xc0\x3e\xee\x6a\x97\xd7\xdd\xd9\x99\xed\x75\xe7\xf7\xae\x1a\xa6\x26\xad\x88\x31\xc4\x55\xc4\x0c\xad\x48\x03\x4d\x4e\x91\xb2\x0c\x5e\xad\xa0\x12\xc0\xb3\x98\xe7\x19\xb7\x1c\xcc\xf0\x11\x70\x85\xcf\x3b\x17\x6b\xfd\x49\xe4\xfb\xe9\xc6\x36\xe6\x5b\x3a\xef\x19\xd7\xd2\x60\x74\xf3\xb8\xec\x48\xb1\x41\x1d\xea\xdb\xa9\xe3\xa2\x78\xbd\xe6\xa8\x3e\xaa\xb3\xb8\xf8\x87\x84\xb3\xf8\x98\xac\x96\xcb\x21\x71\x02\xd5\xb8\xf4\xfe\x71\x7a\xa8\x14\x43\x09\xdf\x4d\xf7\xdb\x7d\x8f\x2b\x0a\x50\x15\x46\x4c\x4e\xc2\x9c\xfb\x9a\xa0\x5c\x31\x12\x80\x23\xd6\x93\xca\x1c\x0e\x3b\x21\x24\x26\xc6\xc6\x2e\xe0\x6e\x56\x51\xbd\x58\x8a\x3e\x2f\x45\x25\xcd\x1e\x9c\x3c\x84\x01\x47\x12\x3e\x7d\x95\x08\x18\xfd\x57\x98\xfa\x88\x43\xe6\x81\xd1\x55\xee\xc7\x03\x74\x36\x06\x1f\x2c\x8b\x7b\xfd\x7d\x8f\x6a\x4b\x13\x70\xc7\x20\x81\x32\x7b\x76\xa2\xe2\x44\x5e\x23\x5c\x45\x60\xc2\x88\x16\x0f\xaf\xc4\x17\x08\x50\xbd\x9f\x79\x46\x70\xe0\x14\x11\xfe\x78\x2b\xdc\x75\xfb\xe5\x75\xea\x5f\x93\x34\xe7\x96\x2e\x05\xa9\x2b\x31\xcb\x6c\x28\x3d\x67\x1b\x59\xb4\x19\xaf\xa8\x33\xc7\xb5\x1c\xd0\x21\x5e\x40\xe1\x55\xc6\x8f\x69\xa2\x32\xdc\x44\x66\x2d\x51\xe7\xca\xd7\x9e\x51\x34\x30\x31\xf2\xf9\x88\x8d\xdb\x49\x9f\xcb\x6a\xd5\x04\x94\x3b\xfc\x7f\xd8\xd3\x28\xf6\x98\x81\xe0\x7a\x6f\xe1\x4e\xcd\x94\xb9\xe2\xc4\x69\x55\x02\x30\xc9\xad\xd9\x3d\x52\x4b\xc4\x1b\x58\xa8\x87\xe7\x9f\x7c\x7d\xbc\xb6\xc6\x7c\x62\x61\xc6\x65\x6f\xa5\xec\xc6\x99\xf9\x2d\x9d\x70\xe2\xdb\x22\x71\x18\xa8\x69\xe3\x31\xda\xb4\x92\x74\xc3\xb8\xe7\x6c\x7a\x96\x60\xd3\x8e\x93\xb2\xbd\xe9\xb1\xd0\xc0\xf1\x5e\x78\xe8\xb8\x8e\xa8\xc7\x15\xcc\x18\x06\x2c\x40\xfe\x83\xaf\xcb\x64\xb6\xce\xa8\x89\xad\x10\x2a\xf5\xdc\x0f\x5f\x1d\xa9\xae\x09\xcc\x58\x58\x4f\x44\xdd\xbf\xd5\xa1\xe8\xa7\x60\x3f\x80\xd6\xe6\x76\x0d\xbf\xc2\x05\x83\x13\x5d\x8d\x42\x61\xbd\x56\x02\x86\x65\xdf\x64\xa4\x9e\xca\x87\x94\x7a\x0b\x1f\x5b\x3d\xbe\x25\x05\xc1\x8c\x0b\xea\x07\xdd\x75\x81\x9a\x28\x04\x1d\x72\x63\x31\x5a\x15\x6d\xe6\x97\x96\x67\x4b\x8b\xb5\xb8\xe9\x73\x6d\xfb\x71\x2b\x44\x4f\xba\xdb\x75\x71\xc0\xc3\x6e\xe1\xe3\x6f\x8c\x6c\x3d\x54\x04\x4b\x78\xd2\x6b\xfa\x88\x20\xc0\x26\x27\x92\xc1\xa2\x8b\x06\x6c\x52\x30\x2b\x1c\x31\x45\x2a\xc0\xc5\x5c\x78\x7f\x2b\xd1\x46\x09\xe5\x0f\xee\x12\x2e\xbc\x99\xaa\x61\xc7\x2e\xd9\xfa\x5e\x8b\x88\x53\x2c\x45\x57\xcc\x57\x28\xf9\x70\x54\xcb\xdf\xff\x6b\x62\x90\x77\x57\x48\xc0\xa5\xa7\x14\x7d\x7f\xde\x70\xa5\xe3\xc7\x8a\xbe\x8d\x2b\x24\xfe\xca\xda\x23\x3a\xe4\x07\x82\x5c\xca\xc6\xc9\x5f\xbf\x72\x84\x82\x2b\x81\x03\x4e\xbc\x66\xc3\x96\x27\xaa\x1f\xf2\x5b\xf0\x15\x2d\x12\xce\x10\xf0\xdb\xc5\xf6\x7d\x7a\x4f\xcb\xbd\x73\x71\x45\xe8\xf6\x7e\xea\x61\xed\xa7\xa8\x8e\x4c\x12\x88\x31\xb0\x51\x04\x8e\x40\xf1\x26\x86\x71\xad\x78\x03\xf8\x5f\x25\x07\xd1\x6d\xe3\x20\x9a\xdc\x8e\x18\xaa\xd2\x9e\xd4\xbe\x78\xc4\xba\x71\xf2\xc0\xf7\xac\xf8\xd2\x5b\x24\x1e\xf2\x66\xdb\x65\xa9\x9e\x66\x45\x9d\x01\x7c\xf8\xc8\x48\x2d\x83\xf3\xac\xe4\x45\x8d\x7d\x53\xd5\x6b\xc3\x5c\x96\x24\xdf\xb9\x40\x73\xaf\xc2\x50\x56\x10\xe0\x67\xc4\x77\x79\xc5\x66\x50\x6b\x5a\x86\xb8\xe8\x7a\xcb\xc5\x1c\x3b\x24\xa3\x95\x89\x5c\xde\x36\xe5\xd2\x1f\xed\x6b\x35\x21\xae\x38\x07\x83\x2e\xe5\xa8\x37\x95\xf9\xa2\xdd\xed\x13\x13\xe4\x0c\x0b\xed\xb6\x44\x3d\x92\x16\x44\x4c\xee\xc9\xc7\x44\xef\xd0\xb3\x14\xa9\xc3\xcf\xcd\x95\x77\x56\x45\x0e\xe2\x5b\xfd\xa1\xe1\x72\x3b\xd7\x3c\x52\xe1\xf0\x90\x67\xba\x64\x93\xb3\xca\xd7\x98\x27\x98\x91\x65\xde\x2f\x88\x2e\x19\x97\xfe\x42\x27\x57\xf5\x1b\xa8\xf9\xda\x88\x7a\x31\x59\x6a\x51\x7d\x3d\x74\xd9\x56\x62\x3f\xd0\x5f\x54\x54\x55\xb8\xf9\xa8\xcc\x38\xff\x3f\x7a\x72\x99\xd2\xe4\x06\x55\x23\x31\x5d\xe8\xcd\x1d\xd5\x94\x40\x58\x58\xec\xec\x9a\x05\x89\xd9\x1f\xa7\x2a\x5c\x69\xc6\x52\xc8\xf4\x17\x07\x25\x6c\x82\x2a\xf1\x70\x2a\x7c\x3d\x7f\x63\x8a\xbc\xe9\x46\x3a\x1b\xa4\xd7\x98\xb7\x2f\x7b\xda\x97\x9d\x10\xb7\xcc\xf9\xde\x98\xa4\xeb\x98\x55\xbd\xf4\x7c\x3d\xea\x25\x98\x75\x0a\x06\x1f\x7c\x12\x33\x4b\x6f\xf0\x00\x74\x26\xc9\xa1\xc7\x9f\xca\x06\xc3\x38\x6c\x23\x46\x85\x84\x7c\x92\x8a\x7c\xf6\x65\x25\x11\x63\xa8\x92\x98\x6e\xcd\x5f\x00\xcd\x1d\x8c\xfc\xf8\x18\xfd\xd9\xf9\x6c\x16\x8d\x51\x1c\xb5\x5b\x0d\x1c\x0a\x64\x47\xfa\x2c\x70\x1f\xe4\x9f\x97\x2d\x9d\x9b\x82\x28\x38\x44\xf1\x20\x1c\x3d\x2d\xfb\xae\xc2\xb5\x49\x26\x5c\xaf\x08\xde\x1b\x97\xd9\x13\x6f\xa4\x57\xf4\x88\x4b\x36\xa1\xa9\x74\x82\xf6\x28\x9b\x48\x21\x0f\x96\x94\x1e\xb6\xd0\xef\x20\x7e\x62\x95\x17\x0d\xbf\x38\xdd\x13\x18\xb5\xf6\xc1\xde\x12\x0a\x59\x01\x76\x1c\x71\x6c\xbc\xfb\xb0\xc6\xb7\x62\xb4\xe9\x27\x03\x09\x63\xcf\x6b\xd9\x43\xa5\x9c\xfa\x52\x0e\x56\xf0\xd9\x0e\x0a\xb0\xc3\x35\x0a\x72\x3f\xd7\xa8\x5d\x26\x72\x9c\xa4\x8f\xba\xfe\x21\x3d\xe1\xf4\x28\x37\x66\xe3\x6e\x04\x2f\x5f\x68\x25\xd8\x42\x17\x2a\xfa\x95\x22\xc2\x9c\x00\xd7\xf8\x1e\x98\x3c\x54\x59\xe7\x84\x95\x29\x03\x2b\xb7\xcb\xc7\x66\xdf\x76\x99\x86\x0e\xe6\xdd\x41\xa2\xb6\xfc\x23\xf3\xc1\x49\x5a\xcc\x76\x1c\x5c\xc5\xd0\xb3\xcb\x86\xae\xe6\x05\x79\x24\x59\xc4\xe7\xb5\x10\xa1\x1e\x24\xab\xbf\x1c\xab\xb8\xe7\x22\x93\x38\xc0\xe8\xb9\x79\x9e\x66\x99\x4d\x83\xec\xea\xcd\xcd\x38\x79\xb9\x92\xf9\x23\xcb\xc1\x0a\x91\x21\xf7\xdf\xaf\xa6\xcd\x00\xd7\x6a\x4f\x3a\x4c\xb3\xd7\xb7\xa9\x8a\x0b\xfa\x0a\xfd\xb3\x22\xa5\x68\xda\xc4\x51\x68\x3f\x05\x77\x62\xb6\x30\xa8\x31\xec\x3a\xc4\x03\x50\x44\xfa\x54\x96\x5f\xc8\x5e\x36\x34\xef\x65\xd3\x37\xda\xbb\x2a\xdb\xd9\xa8\x85\x2e\x62\x59\x65\x83\x3b\xcf\x8f\x54\x93\xd9\xc4\x83\x8b\xe7\xac\x57\x2f\x1d\x25\x6a\x33\x46\x38\x14\x5f\x89\x23\xb9\xb1\x8f\x5e\xee\xa9\x58\x27\xe1\xa4\x23\x8e\xc2\x86\xa7\x41\xbc\x02\x62\xd6\xc4\x18\xe4\x4b\xc7\xd2\x6e\x58\x5d\x81\x13\x45\x4b\xde\xd0\x4c\xa1\x85\x76\xb0\x38\xb7\xe2\x38\x1b\xbd\x99\xf1\xc6\x09\x88\x17\xd2\xd0\x87\x91\xfe\x47\xce\x0e\x16\x69\x85\xea\x51\xfe\x82\x9e\xb1\x32\x37\xe1\x76\xb3\xba\xe2\x69\x88\x6a\xd9\x57\xfa\xd4\x03\xd9\xd9\x95\x4d\xaa\x76\x95\xd1\x06\xd6\x3a\x70\xf8\x5d\xd5\x8f\xd9\x27\x01\x07\x1d\xe7\x16\x3c\x20\x18\x73\x0c\x17\xb1\x4b\x3c\xd1\xba\xfa\xde\x01\x81\x22\x73\x90\x67\x01\xc5\xec\x73\x2b\xb2\x4f\xca\x8d\xcb\x47\x91\x35\xdf\x3e\x65\x88\x5a\xb7\x0b\xbc\xce\x85\x6d\x72\x33\x65\x46\xa0\x8b\x64\x75\x3a\x7b\x6a\xc7\xb4\x99\xc5\x52\xb4\xfb\x71\x31\x41\x0a\x2b\x15\x9e\x66\x1f\xb9\x56\x27\x9f\x53\x5a\x4b\x52\xdf\x2d\xab\x15\x9c\x38\x72\x7b\x54\xab\xa0\x8d\xeb\x87\xa9\xc0\xd5\xaa\x87\xc0\xde\xe5\xdf\x77\x89\xda\x8e\x26\xe8\xe6\x82\x7f\x3e\x4d\xf6\x43\xde\x61\x9b\xfc\xa0\xd6\x53\xb4\xb0\xe3\x22\x2f\xa3\x99\xd7\x59\xd0\xa4\x34\xb8\x74\x48\x42\x33\xc9\xad\x9b\xa5\x35\x34\xb1\x17\x30\x6e\x9c\x0c\x41\xcb\xf8\xd2\xca\xd6\x16\x90\x2f\x10\x3c\x13\x76\x64\x7f\x66\xb1\x64\x92\xd7\x9b\xeb\xbf\x6b\xa2\xf6\xfc\x59\x0d\x07\x7d\xc0\x62\xbf\x5a\xd7\x6d\xa6\x1c\xb4\x2e\xa5\xc1\x0c\xde\xa9\x4d\xf5\x29\x73\xac\x26\xb1\xd2\xe9\xd3\x60\x99\xbd\x9a\xa0\xb2\x21\x1e\x97\xf1\x51\xc5\xd2\x3b\x5e\x2a\x0c\xfa\xe6\xbf\x1a\x3c\xb6\x35\x23\x46\xa6\x00\x4e\xf1\x33\xc1\x68\x64\xbf\x54\x36\x65\x38\xda\xcd\x3b\x9f\x7d\x66\x7c\xfc\xf6\xff\xf3\xf5\xf6\x71\x52\x14\x77\xfe\xb8\xd3\x33\x21\xa8\x80\xeb\x02\x0b\x22\xe2\x4a\x14\x08\x30\x1b\x58\x60\x05\x42\x08\x20\x12\x24\xc0\x10\xc0\x27\x34\x48\x4d\x77\xcd\x4c\xed\x74\x77\x0d\xd5\xdd\xb3\x0f\x31\x86\x10\x42\x88\x41\xe4\xd0\x43\x63\x3c\x63\x38\xc3\x97\x70\xc4\x70\x1c\x41\xc3\xa1\x47\x0c\xe1\x8c\xf1\xeb\x11\x63\x8c\x47\x88\x21\xc6\xf8\xf5\x38\xe2\x19\xa3\x86\x33\x6c\xe7\xf7\xea\xaa\xea\xae\x4f\xd7\x6c\x7e\xff\xdc\xc5\x65\x77\xa6\x1f\xaa\x3e\xf5\x79\x78\x3f\x94\xa2\x40\x2f\xcf\xa8\x31\x2a\x33\xb2\x68\x94\xcf\x37\x8d\x52\xd6\x43\x62\x16\xde\xba\x68\x98\x3c\x3a\xaa\x38\x65\xfa\x69\xdc\xa9\x75\xbc\xa9\x80\xbd\xf3\xf9\xe8\x9c\xde\xf4\xee\x29\x55\x48\x7f\x0c\x91\xcc\x75\x1d\x22\x55\xbb\x89\x0a\x4b\xa0\xec\x1d\x4f\x8f\x6d\x3c\x96\x1a\xde\x45\xf6\x43\xb2\xa1\x50\x43\x81\x27\x10\x7b\x1b\xa6\x34\xe2\x1f\x64\x82\x62\x3c\x7f\xa2\x55\x2b\x99\x7b\x5c\xb3\xca\x7b\x00\xaa\x15\x3f\x1c\x28\x3b\x21\xd3\x17\xa2\xc3\x85\xf0\x95\x8d\xfa\x69\x47\x5c\xb9\xe4\x32\xef\x6f\x53\xa2\x18\x02\xfc\xfa\x75\x37\xe5\xdf\xcf\xd5\x7f\x39\x6e\xf0\x88\x36\x99\xc4\xc8\xf6\x2b\x42\x3d\xb6\x2f\xb7\xec\xf4\x28\x90\x6d\x73\xcb\x0f\x18\x62\xda\x4f\xa6\x2f\xa1\x9d\x33\x22\xf9\x73\x7e\xe2\xb4\xe4\xef\x60\x1c\x5b\x04\x86\xc7\x77\x36\x47\xbf\xb5\x7c\xf9\x2a\xd8\x08\xcb\xcc\xb3\xd3\x7b\xb0\x27\x28\x53\xcf\x46\x75\x70\x5c\x6c\x5b\x03\x6b\x26\xd4\x93\xaf\x20\x22\x85\x6e\xee\x68\x86\x2c\x11\xa8\xd3\xb4\x48\x85\xa8\xb8\xdb\x1d\x5e\xa6\x09\x6e\xd9\xa4\x14\x5b\x91\xfd\x44\xeb\xd4\x16\x71\x19\x09\x7f\xbd\xf0\xc4\x2d\x49\x97\x48\x30\xed\xc2\x77\xc7\xc4\x7e\x0b\x42\xbb\x2f\xfc\xaf\x95\x4a\x68\x7c\x56\x94\xca\xaf\x07\x11\xb2\x18\x58\x65\x2c\x84\x28\x87\x5d\x9a\x22\xfa\x73\x72\x45\x76\xc6\x39\x41\x68\x59\x45\x18\xf5\xab\x80\x7f\x17\x7e\xe2\x6d\xad\x23\x1d\x30\x21\x16\x2f\x2e\xec\xa9\x93\xe9\x47\x27\xfc\x71\xc4\x61\x1c\x87\xaf\x11\x07\x93\x43\xad\x13\x60\x12\xfa\x32\xa3\x35\x82\x92\x17\x30\xcc\xa3\x56\x74\xa1\xc1\x5d\x22\xf9\x2d\x0a\x9d\xe3\xcc\xb2\xa7\x81\xe8\x18\xb7\x0a\x8c\x62\xf8\x45\x80\x64\x4e\xba\x63\x35\x75\x63\xe3\x5b\xe0\xde\xa9\xef\x73\x2d\xc3\xdf\x9d\xbd\x04\xa8\x1e\x72\xd6\xd9\xc9\xcd\x1a\x9e\x3f\x28\x76\x0a\x31\x3a\x71\x1e\xbf\x76\x4e\x1b\xab\x77\x11\xd7\xb2\xb1\x25\x78\xdc\xe1\xf1\x52\x92\xc6\x50\xbf\xd1\x69\x77\x9c\x9f\xae\x08\x6b\x88\xf9\x52\xe9\xe0\xd3\x57\xc3\x89\x00\x27\x4e\x71\xcc\x81\x16\x96\x70\xac\xbf\x19\x1f\x43\x8b\x16\xa7\x3b\x5f\x6d\xc2\x44\x38\xf3\xc0\xfe\x66\xf0\xb2\xdd\x58\x01\xf4\xa6\x89\x40\x2f\x01\x37\xf6\xdb\x27\x2e\x18\x02\x5b\x01\xd1\x95\x5d\xd5\xaa\x09\x58\x45\xb5\x57\xdc\x6a\x6a\x7b\x1f\xf0\xbb\x19\xc6\x5c\x9a\xe4\xd8\x8b\x62\xb2\xf3\x69\x6a\xfb\x5e\xca\x47\xe7\xbd\xf0\x4a\xd8\x61\xc6\xc8\xd3\xf1\x8c\xe1\x9f\xf7\x00\xcb\x15\x00\xc6\x0f\x67\x7f\xa0\x02\x30\x0a\xf2\x85\xf0\xd1\x15\x6a\xe6\xc2\xd7\x72\xee\xd3\xef\x37\x25\xa2\xdd\x09\xd3\x71\x76\xb7\xd6\x53\xe7\xd2\xbd\x31\x2b\xf4\xbf\xbb\x75\x99\x28\xd1\xc4\x13\xc2\x76\xbf\xc8\xa5\xd2\x87\xae\x28\x4f\xe7\x7f\xf5\xb0\xb8\xc3\x05\x18\x99\xa9\x1e\x7a\x66\xfe\xb0\x61\xf0\x01\x07\x31\x39\x36\x37\xbc\xa9\x35\xdd\x26\x5d\x31\x09\xe0\x18\xe5\x14\xef\xed\x87\x01\x68\x19\x95\x39\x4e\x78\xf6\xfb\xd7\xa8\x56\xb2\xe7\x23\x4e\xf6\xe8\xcf\xc8\x39\xb7\xe5\x49\xf5\xf2\xa6\x4e\x6d\xe7\x2a\xb0\x0a\x9b\x86\x6d\x88\x37\xda\xbd\x50\x77\x84\xe0\x86\xe3\xf1\x11\x7d\xf7\x39\x91\xce\x2e\xbe\x61\xf9\xfc\x86\x93\x68\xfc\xe9\xc1\x49\x89\xc4\x8d\xcb\x33\xbf\x9e\xd8\x9c\xca\x35\x45\x03\xeb\x89\x13\x63\xb4\xf3\xa0\x48\x52\x5c\x83\xf0\x9c\x0b\xd0\x6b\x15\xc4\x3d\xb8\xe2\x92\xa0\xbd\x23\x7d\x12\x39\xc4\x13\x16\x7b\x50\xc6\x6b\xc9\x1b\x7a\x2b\x8c\x4b\x7e\x3b\x89\xae\x58\x76\xe7\x2d\xc0\x46\x48\x42\x7f\xfb\x8c\xf7\x06\x68\x82\x1a\x88\xa3\x4d\xf3\x36\xa9\xca\x8e\x64\xf6\xb0\x86\x04\xe4\x90\x46\xe5\x98\xfe\x67\xad\xa3\x28\x80\x74\xbc\x93\x21\xab\xc9\xe1\xcb\x81\x84\x0a\xf1\x89\x49\x05\x1a\x73\x10\xb8\x22\x5a\xb4\x09\x4f\x1e\xb2\xdb\xde\x81\xde\x12\x8c\xef\xff\x70\xe5\xb0\xe1\x69\xd1\x0a\x5b\x32\xc7\x8c\x7f\xdf\x78\x39\xac\x12\xa3\x10\x0c\xcb\x9d\x8e\x31\x23\xf5\x87\xe7\x25\xe2\xfa\x3f\x07\x44\xc2\x2a\x43\x9e\x08\xf9\xdf\x92\x98\x1f\x9b\x8b\xfa\xf3\x6c\xeb\xf1\x89\xe9\x78\x35\x6d\xda\x94\x38\x9d\xfa\xc2\x23\x6a\x9b\x2a\x0c\x41\xbe\x10\x0e\xbb\x5d\x73\xf9\x61\x34\x28\xc6\xee\x9a\x7d\x99\xf9\x20\x02\xc8\x86\xb9\x1e\x01\x36\xde\xae\x9a\x54\xd5\x68\xa3\xef\x9d\x0b\x30\x6c\x80\x5b\xb9\x6a\xa3\xb8\xe2\x19\x93\xaf\x9d\x32\xa3\x8d\x13\x1b\xdb\x81\x17\x47\x97\xd0\x49\xc8\x4c\x3c\xa7\xbb\x5c\x20\x0b\xaf\x0f\x90\x8f\x25\xff\xc0\xda\xd6\x02\x71\x92\x79\x5a\xca\xfb\x48\xc8\x2d\x7e\x00\x7a\x7b\xd8\x42\x89\x98\xc9\x7d\xca\xa6\xd8\x0d\x44\xbf\xed\x16\xad\xc1\x81\x71\x35\x2e\x4e\x72\xcb\x3b\xf9\xbe\x16\xb9\x46\xec\xcc\x39\xd2\x86\x90\x2e\x00\x0f\x9d\xd3\x40\x70\xf1\x31\x89\x57\xfc\xe4\x7d\xad\x20\xc0\x08\xeb\xc3\xc6\x9e\xc8\x36\x95\x9d\x4c\x6b\x87\x2e\x98\x99\xa1\x87\x75\x38\x26\x62\xb1\xe6\xd7\x92\x17\x44\x58\x5b\x44\x4a\x1c\xdf\xa4\xc2\xda\xbd\x2b\x93\x83\x0d\xb1\x86\x6e\x5a\xf6\x4b\xc0\x19\x5b\x98\x90\x51\xe2\xca\x95\xfa\xa1\x70\x28\x18\x95\x62\x33\x90\x3f\xff\x7e\x3b\xa0\x29\xc7\xc7\x5a\xf4\xb0\xae\xcf\x0d\x07\x47\xa1\x50\x20\x14\x7f\xf2\x93\xb1\xe9\xf5\x58\x75\x69\x97\x68\xf0\x67\xee\xdb\x13\x7b\x1f\x51\x29\xda\x60\x1f\x93\xb8\x78\xab\x2e\x2a\xca\xdc\x1d\x6f\xa6\x71\x65\x26\x43\x25\xbf\x3f\x95\xf3\xdc\x47\x5e\x07\xb4\x7f\xcb\xa1\x2e\x89\xe5\x44\x32\x5b\x27\x03\xae\x3a\xf2\xa2\x54\x3c\xfc\xf0\xe1\x74\x2c\xe8\xc4\xba\xca\xf9\x4b\xe7\x00\x1e\x90\x2b\xa3\x49\xf0\x78\xb8\xfe\x45\x4d\xf2\xbc\xad\x3d\xd6\xcd\xdd\xaf\x24\x66\x30\xc4\x60\x5e\xc8\xb4\xa6\x35\x72\xa8\xab\x69\x51\xfc\xa0\xf9\x62\x99\xd7\xb0\x28\x90\x4c\xed\xd5\x09\xd3\xc5\x2e\xd4\x13\x6b\x23\x64\xff\x8f\x2e\xd1\x84\x7c\x1f\x33\x37\x9e\x86\x7d\xfe\x80\xbe\x22\x71\xf4\x4c\xe5\x30\xab\xf9\xdd\x64\x8e\x59\x21\x76\xbc\xba\x9b\xc0\xac\xce\x0b\x8a\x1e\xb1\x24\xfc\xe7\x96\xa2\x3a\xa5\x8a\x7c\xc0\xfc\x87\x16\xd1\xd5\x5e\x45\x5d\xea\x24\xe7\xf6\xd6\x79\x31\x06\xd3\xc4\x9e\x27\x04\x28\x73\xd3\x5f\xd7\xf2\x2f\x52\x2a\x11\x33\xb0\x05\x6c\x34\x7c\x65\x35\xdc\xaf\xcc\x47\xc4\xe5\x79\xfe\x77\x14\xf9\x06\xa3\x6a\xbe\x10\x1e\x79\x5e\x3a\x1d\xf3\x18\x11\xfe\x97\x4e\xe3\xa4\xb6\x45\x70\x62\x4f\x98\x09\x77\xc6\xe9\xb6\x0c\xc0\xe1\xf7\xc6\xa5\x5f\x9b\x19\x30\x61\xd6\x9c\x5b\xbe\xa6\x19\xb0\xc3\x84\x98\x6a\xa1\x2f\x77\xf3\xf1\xa6\x74\x3f\x3e\x5f\x08\x77\x2d\xbf\x02\x0c\x3a\x59\x43\x03\xbd\xcf\x68\x3b\xa1\xac\x57\x31\x10\x8b\xc9\x7c\x67\xa6\x7a\xbc\xf1\x9c\x84\x1f\xc5\x0b\x35\x3b\x60\x9f\xfa\xb2\xf4\xe7\x6f\xfa\xe3\x80\x83\xe3\x71\x22\x41\xa1\x2f\xf3\xd0\x46\x38\x57\xb5\x7d\x8b\x76\x09\x9a\xe9\xdd\xdb\xaf\x80\xdf\xd2\x0f\x83\xf5\x93\x67\xb4\x94\xbd\x8b\x78\x89\xec\xbe\x0d\x24\x81\x1c\x54\x22\x28\x5f\x08\x47\x9e\x8d\x11\x4d\x82\xa3\x10\x7d\xff\xaa\x03\x8a\x07\xe9\xf4\x30\x82\x1a\x2d\x45\x7e\xba\xa1\x05\x5c\x89\x30\x8c\xb5\xb1\xd0\xba\x9e\xd9\x0c\x92\xca\xb2\x4b\x4a\xbc\xc7\xf5\xbb\x91\x30\xa3\x2e\xc7\x1e\x5d\x2d\xfb\xd4\x4e\xac\xd9\x08\xf4\xb1\x72\x93\xb7\x41\xe3\xa0\x54\x09\x9f\xb9\x65\x0e\xc8\xa7\xb1\x4d\xb0\xe8\x99\x8d\x19\x90\xc4\xc5\xc0\x6e\x8c\xc3\xdb\x36\xa4\x90\x95\x2c\xee\x69\xf7\x65\x2a\x35\xb1\xe6\xd7\x07\xc8\x26\xa5\x1e\xd9\xe0\x9f\x01\xf0\x32\xc5\x80\xf6\x20\x57\xf8\x05\x75\xe7\x1a\x9c\x9c\xa2\x6b\x57\x42\xb6\x1f\xdb\x74\xb1\x8c\x2d\x9c\xdc\xe2\x9e\x1d\x0d\x0e\x89\xc6\x03\x22\x7b\xcd\x22\xc5\x59\xf0\x15\x18\x2e\x7c\xfb\x05\x10\xdd\x48\x9d\x0f\x2e\x9f\x5a\xa1\x1b\xc7\x32\xe9\xeb\x13\xd3\x70\x47\x69\x52\x72\xd2\xd4\x4b\x66\x60\x9b\x57\x08\x6a\xfa\x75\x8c\x22\x3f\xbf\x2c\xf0\x6c\xae\x96\xc4\xc7\x7d\x5f\xd8\xae\xbb\x2c\x45\xf5\x6c\xe2\x3b\xd2\x67\xfc\x6e\xde\x55\xea\x6c\xae\x63\xe6\x45\x59\x58\xc3\xea\xb8\xad\x38\x12\x26\xd7\x6d\x93\xe2\x1b\xca\x17\xc2\x09\xc3\xb4\x86\x16\xe6\x5c\x41\x7e\x98\x7e\x6f\xf1\x20\x19\xa0\x88\x2f\xa4\xa9\xde\xd7\xca\x01\xc4\xca\x58\x09\xb9\xe1\xa7\xc1\x64\x9d\x0a\xde\x9f\xc0\x9c\xfe\x9b\x62\xd1\x74\x02\xf5\xbb\xf0\x7c\x9b\x88\x1c\x95\xa8\x74\x10\x89\xd6\x97\xd7\x6a\x76\x58\xd4\x57\x90\xe8\xbf\xdc\x0e\xa5\xb4\x7b\xc5\x06\x35\xbe\x75\x0a\x28\x40\x22\x81\x31\xc9\xfe\xf0\xe1\xf4\x69\x88\x7b\xb0\xd7\xc6\x49\x35\xb9\xb5\x0b\xf8\x26\xb3\xb1\x9b\x9f\x16\xb3\x3d\xf7\x83\xca\x38\xe0\x0a\x33\x5e\xbe\x10\x5e\x95\x53\x2f\x9c\x78\x8e\xf0\x65\xd8\x7f\x16\xa8\x64\x22\xb7\xca\xbb\x5b\x77\xb7\xeb\x62\x62\x89\x25\xc1\x34\x60\xcd\xcf\x15\x86\xa2\x4a\x7c\x88\xa6\x90\x50\xa1\x44\xc8\xad\x1b\xed\x27\x92\x04\xaf\xcc\x48\xbe\x10\x7e\xed\x0d\x40\x2e\x41\xcc\x32\x29\x37\x4f\xc8\x4c\x7b\x79\x04\xb8\x0e\x68\x5f\xde\x97\x0d\x5e\xba\x44\x26\x91\x3c\xbf\x8c\xbe\x72\xdf\xc4\xf4\x83\x8d\x71\xe3\x7c\xa7\x36\x59\xfa\x4a\xb3\x03\x93\xf3\x9a\xe4\x93\xdf\x3f\x41\x80\x73\x16\x61\x5e\x90\xdf\x37\x0f\x18\x37\x24\xee\x4d\xf9\x42\xf8\xd2\x4e\xd1\xe5\x2b\x8c\x5f\x1e\xed\x2c\x15\x92\x2f\xbf\x40\x6f\x7a\xd6\x09\xee\x92\x0b\x39\x7b\x60\xa7\x16\x28\x6b\x2c\x79\xeb\xd9\x4f\xb6\xb7\x24\x29\xaf\x4d\x53\x05\xe5\xf6\x8b\xa0\x09\x7f\x1d\x39\x35\x39\xe0\xdc\xfc\xb6\xb8\x5e\x4f\x28\x78\x5e\xfc\xee\x65\xda\xcd\xd3\xa0\x26\x13\xd0\x70\xdd\x66\x85\x99\x73\x71\x97\x57\x43\x35\x4e\x81\x4f\xc7\xf2\xfb\x0f\x6b\xb6\xed\x65\xe4\x5a\x52\xec\x90\x9f\xe9\x53\x1e\x6b\xd0\xf3\xa4\xb1\x52\x6a\xe6\x1b\x87\x53\x3a\x69\x84\x75\x51\xa9\x66\xf1\xbf\xae\xcc\xcd\xb0\xeb\xf1\x64\x39\xbb\x7a\x83\x0e\xc0\x0f\x5c\x4b\x28\x25\xf1\x15\x32\x50\x5b\x3c\x65\x8a\x6c\x49\x7d\xfe\xed\xe4\x56\xd0\x00\xf4\x2b\xd4\x6e\x9c\xc9\x67\x56\xcf\x03\x2e\x15\xd1\x6f\x08\x20\xd5\x5f\xdb\x2e\x77\x53\x10\x8c\x28\xb7\xee\x54\x02\x56\x43\xdf\x50\x07\x80\xf0\xa2\xf3\x49\x2c\x5f\x7d\xef\x16\x2d\xf7\x24\x66\x55\xb6\xcc\xbf\xbb\x49\xd9\xff\x73\xd7\x40\x45\x1f\xbf\x39\x07\x0c\xea\xa8\xcd\x89\x29\x37\xee\x4f\x96\x7f\x89\xb0\x7c\x21\x1c\xf4\xba\xbe\x34\x90\x19\xf7\xad\x8d\xeb\xb7\xeb\x92\xdb\xcc\xc3\xc4\xb6\x65\x4f\x8d\xbf\x97\x1b\x76\xa7\xab\x59\xdc\x8d\x6d\x99\xd7\xc6\x8b\xf3\xa9\xc9\x23\x53\xe9\x58\x8c\xd2\xe1\xaf\xe3\x6b\xa5\x64\xc2\x5a\xb2\x1a\xcf\xf8\xff\x59\x09\x0e\x85\x40\x3c\x8f\xdc\xf2\xf6\xc1\xb2\x72\xf1\x4c\x21\x86\xfe\xde\x31\x2d\xae\xe1\x3a\x66\x71\xdd\xb7\xf8\x16\xd0\x17\x21\x75\x64\x0b\x34\x78\x78\xb4\x39\xbd\x6c\xd7\x07\x82\x64\x2a\xac\x6b\xe7\xb7\x24\x8f\x6a\xda\x34\xde\x35\x9e\xb4\xab\xc1\xc9\xd2\x46\x81\xc5\xdd\x89\x0b\x7d\x99\xe2\x76\x0d\xa4\x2b\x87\x9f\x7c\x55\xb1\x7d\xfa\xdf\x06\x2e\x49\x00\x73\xc6\xa5\x9b\xaf\x04\x7d\x5b\x8c\x58\x23\xe9\x22\x7b\xc9\x4d\x97\x02\xa8\x05\x71\x3d\xfe\xad\xaf\x6f\x1d\x01\xe6\x3d\xb4\x24\x24\xeb\xf9\x49\xbc\xe5\x61\x11\xa6\xe4\xbc\x2b\xba\xe5\x27\x5b\xf4\x1c\x96\x89\x25\x28\x2d\x10\xd8\x1e\xbd\x05\xcf\x7a\x69\x59\x0a\x73\xc7\x35\xc0\xda\x79\x90\x1f\xd5\x11\xfd\xdd\x4f\xcf\xea\x68\x37\xdb\x92\x29\x7a\xcb\xb1\x78\x4a\xcf\x4d\x08\xf9\xcf\xf2\x27\x81\x75\x6f\xc0\x30\x0a\xa4\x3d\x61\xf8\xe6\x81\x21\x71\xc6\x12\x17\x71\x78\xb5\x02\x6b\xfb\x50\x31\x26\xf3\xcd\x81\x4d\x50\x95\x48\x58\x54\x7d\xf1\xe4\x28\x98\x7b\x21\x96\xb2\xad\xcb\x8e\x9d\xab\x9b\x38\xbb\xe5\xc4\xe5\xc7\x68\x7d\x74\x8c\x1e\xa9\x49\x99\xf0\xd9\x65\xdc\xb5\xfb\xd5\x1b\x00\xf6\x1c\x1d\x50\x3c\x0d\x59\xba\xb7\x71\x0a\x54\x66\x31\xc7\x99\x7f\xf6\x35\xef\x2b\xb7\x6c\xe4\x79\xd4\x24\x3c\x9f\xd7\x57\xfc\xbc\x73\x57\x35\x9c\x24\xe2\xa0\x00\x60\xa3\x65\xa0\x7d\x4c\x45\x17\x20\x37\x6b\x91\x22\xd3\xba\x20\xb7\xcc\x4e\xd2\x99\x8e\x41\x8d\xe1\x44\x33\xe8\x11\x89\xeb\xb1\x70\x0d\xbb\x16\x96\x60\x92\xbf\xff\x60\xbc\x76\x3f\x16\x37\x96\xa9\x17\x1b\x99\x50\x3f\x9b\x09\x6c\xa6\x2a\x04\x97\x78\xdd\xf3\xcd\xe7\xd2\x4b\xad\x4e\x4c\x9f\x38\x2a\x6d\xbc\xc2\x06\xcd\x7f\x0e\x82\x8e\x7e\xfa\x70\xaf\x74\xf3\xa2\x4e\x2d\x10\x93\xb7\xf0\xe0\x62\x8d\xc9\xe5\xf9\x9c\x1a\x26\x78\x04\xb3\x2b\x0d\x3a\xbd\x82\x36\x2b\x05\x6c\xb3\xe7\x4f\x6a\xd9\x00\xf1\x63\xc2\xc7\x0e\x2d\xfa\x95\x02\xd7\x8a\x69\x6a\x99\x33\x1b\xc6\x69\xc9\x5b\x39\xf0\x3c\x14\xfd\xa9\xfe\x04\xbe\xaa\x19\xbc\xf4\x60\xc4\xa4\x8b\x50\xe6\xbe\xb5\xc0\xf1\xda\xf4\x49\x3d\x16\x60\x9a\xb5\x50\x07\xf5\x7b\x31\xb8\x3e\xfc\xf0\x71\x0d\xa4\x89\x4b\x94\x39\x42\xe6\x21\xf3\x9e\x35\x5c\xd6\x22\xd1\x76\x48\x1a\x31\x85\xf0\x46\xa0\x4d\x5b\xab\x88\x06\x41\x5f\x76\x5e\x1b\xb8\x80\x22\x2a\x26\xf6\x20\x6d\xbb\x62\x2e\xb0\xdb\x09\x8b\x91\xec\x67\x01\x89\xdf\x42\x3d\x5c\x2b\x61\x01\x80\x54\x0b\x2d\x92\xbe\x5c\xef\x21\x7d\xb7\xd4\x38\xd4\x57\x40\x01\x78\x93\xfe\xf7\x1d\xea\xef\xb8\x9c\x7b\x74\x03\xb7\x3c\x9e\x54\x00\xeb\x03\xc0\x48\xc9\x7e\x79\x97\xce\xaf\x0d\x9c\x1a\x96\xc5\x7e\xf6\x99\x05\x5a\xa7\xc0\x46\x3d\x42\xf7\x93\x8f\x1d\x46\x6d\x54\x46\xf9\x6e\xa2\x4d\x3d\x45\x6b\x8d\x11\x31\x4e\xe4\x15\xc0\x14\x69\x4a\xc9\xd5\x05\xf2\x85\xf0\x47\x1b\x40\x2c\x15\x6e\x4a\x51\xfd\xca\x8f\x83\x8d\x87\x52\xd0\x18\xde\xbf\x89\xbe\xf5\xf1\xb7\x41\xfe\x89\x89\xc0\xd1\x7c\x53\x59\xb1\x22\xae\x59\xdc\x3e\x27\x1d\x57\x51\x91\xd6\x71\xde\xaf\xe0\x7c\x89\xa1\x1e\xb9\x13\xbf\xfa\x9a\x04\x96\x56\x28\x95\x02\x27\x83\xdf\xd0\x1e\x08\xb6\xed\x04\xe7\x6b\x9c\x69\x87\x85\x69\xd2\x9f\xce\x17\xc2\x8b\x2a\x89\x47\xbc\xb0\x5a\x11\x2f\xbc\x53\x1b\x92\xd2\x7c\x99\xca\x2f\x1f\x2a\x5b\x1e\x75\x64\xc6\xfa\xb5\xe1\xff\xbd\x45\x97\x4d\xc1\xc2\xaa\x27\xb3\xba\xa6\x37\x2d\xcc\x0a\x99\x14\xeb\x02\x86\xff\x9a\x8b\x1f\x2c\xad\x09\xd3\x83\xd7\x12\x41\x96\xe9\x5c\xb0\xf1\x79\xd0\x0a\xb0\x71\x8d\xe7\x32\x5f\xbc\x60\x94\x96\x6e\xb8\x38\x88\xce\x71\x31\x9a\xff\xab\xc6\x01\x89\x92\x72\x0b\x89\x7f\xcc\x6d\x7a\x52\x08\x55\xac\x0a\x88\xd7\x30\xd8\xe9\x33\xbe\x7d\x12\x9a\xf2\xd4\x82\xa8\x8a\x09\xe7\x4d\x87\x04\x16\xca\xc6\xf3\x08\x34\xb8\x45\x2b\x39\xed\x40\x18\xc9\xc6\xbc\xa8\xcc\x4b\x2a\x2b\xe6\xbe\x16\xae\xb4\x61\xfb\x83\x86\xd6\xf5\x2a\x81\xef\xdb\x38\x16\x14\xff\x72\xb7\xaa\x34\xa2\xff\xc3\x3b\x00\x85\xf0\xd0\x5b\x23\xb5\xe4\x8e\x33\x7f\xf8\x4c\x6f\x3a\x38\xcb\xba\x88\x8b\xe1\xb9\x51\xe8\xcb\xde\x53\x57\x69\xaf\x43\x3c\x1f\x55\x31\xef\x39\xf5\xe5\x2e\x1b\xa0\x41\xcc\xb9\x7c\x6e\x22\x09\x35\x72\x9f\x94\xf5\x28\x5a\x81\x9d\x5f\x89\x2a\x0e\x44\x10\x67\x3d\x4d\xb9\xb5\x44\x99\x19\x2b\xb0\xe6\xa6\xbf\x28\xfe\xf6\x06\x6e\xb7\xad\x2b\x5d\x9d\xdb\x3a\x46\x9e\x8c\xb1\x45\x6f\x43\x63\xe2\xae\x0a\x48\x90\x85\xc7\x79\x74\x4d\x37\x1b\x22\xaa\xdd\x3a\x7f\xd9\xfc\xe5\x85\x1b\xaf\x5b\x7c\x43\xbc\x6c\xc3\x89\xfa\xc0\x84\x3b\xbf\x40\x36\xe3\xe3\x3b\xa0\x3e\xbe\x5d\x85\x30\xc1\xef\x3e\x93\xf4\x49\x7c\xa6\x13\x57\xc2\x2b\xc6\xa5\x77\x18\xb6\x78\xae\x24\x46\x99\xd9\xc7\xee\x8a\xa5\x31\x85\x0d\x4d\x38\x63\x9d\x66\xb3\x55\xc7\x8c\xcb\x6d\xc9\x68\xff\xe4\x39\xd0\x7a\x8c\xc5\xd4\x79\xc5\x3c\x47\x1c\xb3\x2b\x31\x90\x6b\xce\x0d\x7e\x15\x98\xfb\x78\x66\x82\x94\x7e\x73\x87\x6e\x11\x23\x1a\x35\x72\x3e\xd4\xfc\x96\xda\x3e\x33\x26\x77\x70\x25\xa9\xdc\x87\x0e\xc5\x96\xb4\x0c\x79\xc2\x21\xdf\x38\x56\x53\x33\x09\x97\x0a\xa6\xd7\xde\x71\x83\x64\x3e\x65\xc9\xf1\xcf\x5d\xe2\xc9\x73\xc0\x02\x6c\xd8\x67\x5f\xdd\x95\x76\x58\x41\xa6\x9f\x4a\xa6\xe6\xaf\x4d\x1f\xad\x53\x67\x75\xcc\x92\x85\xc9\x13\xd3\x75\x61\xd9\x6a\x2c\x69\x3e\xe6\x03\xf1\x28\xb8\x27\x02\x07\xbb\x44\x4f\xee\x6e\x20\x15\xd9\x91\xe7\xb2\x4d\x83\xf7\x03\xef\xc4\x3a\xb2\x83\x58\xf5\x24\x33\xeb\x61\x29\xed\x4b\x3d\x5c\x03\xd2\xbe\x46\x51\x5d\x70\x17\x76\x8a\x36\x6f\x5e\xab\x9a\x68\xde\x86\x58\x42\xc0\xad\x13\x91\xea\x64\xba\xce\x37\xe8\x14\x5b\x71\x15\x90\xbd\x67\x88\x78\x58\x25\x44\xf8\xb8\x31\x7b\x7b\x5d\x3b\x50\x2a\x98\xc5\x9a\x02\x3f\xda\x73\xb9\xf6\x49\x9e\x4f\xec\x28\xdd\x10\xf1\xfa\xcb\x6f\xeb\xac\x75\xcc\x71\xdd\xb2\x49\xca\xfb\x91\xd7\x6c\x1f\x06\xf3\xf9\x3a\xad\xca\xfe\xdc\xbd\xbb\xb5\x59\x32\x0d\x8a\x7e\x6c\x1a\x64\xfc\xe9\x84\x26\x65\x82\xec\x6a\x2c\x38\x9a\xbd\x78\x9e\x3a\xd7\xbc\x1e\xa7\x18\x55\xa5\x48\x4a\xa7\x7f\xdc\xd0\x4f\x18\xae\xc8\x20\x9a\x39\xc6\xfa\xc9\xe9\xb1\x85\x47\x1c\xea\x5a\x5e\x3f\xb0\xab\x7f\x9a\xd0\xa2\xfd\x66\x6f\x2c\x9f\x33\xc4\x4d\x60\x97\x10\x95\x3b\x11\x70\xc8\xb1\xeb\x73\x9f\xc1\xdc\xb8\x29\x40\xc9\x97\x61\x24\xee\x3e\x3c\x2d\x86\x04\xf9\x95\x3c\x0f\x6a\xec\xc1\xad\x48\xcc\x3c\xdb\xf9\xca\x79\x67\xac\xd8\x57\x25\x86\x71\x57\x05\xc7\xbe\xb0\x46\x1d\x58\x3a\x5a\x48\x74\x7a\x3e\x2d\x14\x6c\x24\xb0\xbd\xa1\x04\xcd\x99\x9b\x93\xc3\xdc\xc2\xdd\xd1\x5f\x7c\xee\x11\x40\xa1\x63\xd4\xc7\x65\x31\x5e\xb8\x77\xf9\x90\x24\x9f\x10\x6e\x0f\xd9\x8b\x17\xfd\x0d\x2d\x59\x2b\x5f\x08\x7f\xb6\x5c\x4d\xf2\x08\xb7\x2a\x0d\xee\x16\xf1\x66\xd9\x75\x8b\xe6\xdf\xb8\x94\xcf\xee\xeb\x43\xc1\xc9\x55\xc2\xae\x54\x84\xb8\xa7\xad\x3f\xa2\x1f\xef\x29\xc9\x7a\x63\x82\xab\xb9\x95\x23\x6e\xe8\x98\x9c\x63\x3f\x64\x5a\xfe\x59\xa1\xd4\xc3\x62\x00\x94\x1b\x7d\x57\xaa\xb4\xa2\x3c\xf1\xbc\x78\x8b\x62\xf0\xf5\x20\xcf\x67\xbd\x15\xec\x14\xbd\x6a\x74\x8c\xad\x6a\x53\xd7\xc9\xf7\x44\x5d\x3c\x80\x7b\x01\x9e\xbc\x48\xcc\x1e\x53\xa8\x17\x67\x1f\xd9\x2c\xde\x90\x10\xe3\x4a\x36\xf0\xae\x99\x9a\x55\x22\x23\xbe\xac\x54\x8c\x4f\x3c\xa9\xeb\x46\x04\x8c\x33\xa5\xf9\x03\x79\xbf\xb3\x09\x9e\x95\x96\xe8\x60\xbc\x08\x7e\x88\x84\x9c\xd1\xf3\xad\x5a\x64\x32\xcd\xe8\x3f\xf9\x04\xe3\x5f\x46\xc1\xd1\x86\xcf\x82\x58\xf9\xa5\x73\xa1\x76\x4c\x74\xd7\xa8\x17\x43\x73\x8c\xf1\xda\xc6\x0e\xaa\x0c\x71\x03\x22\x25\x8f\xd6\xfb\x8c\x26\x0e\xc3\xa8\x2b\x77\x3e\xcf\xa8\x3e\xbe\x57\x15\xd5\xd7\x4e\xbf\x36\x7a\x44\x97\x1d\x50\x2d\xc8\x3a\xed\x82\x36\x14\xd9\x35\x03\x95\xc6\x57\xb5\x82\x6c\x02\xfe\x35\xfc\xdc\x1c\x60\x2d\x87\x4b\x98\x71\x81\xb1\xdc\x86\x37\xd5\x8f\xa5\xf6\x7e\xbe\x10\x6e\x58\xa1\x55\x87\x26\xe7\x58\xca\xee\xe0\xdf\xcb\x80\x69\x47\x61\x5a\xa4\xc2\xb9\x6a\xab\x4e\x5a\x2f\x22\xa8\x61\x91\x7d\xac\x0e\x47\xb2\xa6\x8f\x7c\x1a\x2b\x78\xe7\x66\xad\x1d\xae\x9d\x6c\x54\xca\x1f\xdd\x7a\x54\x47\xce\x07\x7e\xf2\x7c\x8c\x27\x2f\x00\x84\x70\xc4\x5d\x37\xb2\x1d\x9a\xf4\x65\x91\xda\x5e\x05\xd7\x49\xec\xd2\x94\xf9\x16\xb0\x5c\x8a\xce\x35\xe1\x3a\xbd\x4e\x21\xa2\x1d\xea\x33\x02\x2c\x02\xc2\x8f\x3c\xa3\x2e\xbd\x7d\x7a\x72\x18\xf2\x12\xa0\x30\x57\xb3\xac\xa7\xc4\x8d\x03\x70\x6e\xf0\x71\xb1\x9e\x17\xa2\x3a\xf1\x20\x44\x7c\x2c\xc4\xf5\x77\xf5\x08\x0f\x93\xdf\x1e\xd4\xfc\xcf\x02\x9e\x60\xaa\x84\xe6\x9d\xb9\x71\x50\x72\xa8\xdf\x90\x66\xf5\x65\xdd\x89\xba\xf9\x6b\x2d\xb0\x11\x4b\xd4\xf0\x32\x37\x1a\x1a\xde\x2b\x60\x58\x4e\x09\xc7\x9e\x01\xe4\x2e\x5a\x2c\xc6\x9a\xb6\x6f\x3f\xa6\x22\x72\xc0\xcc\x4a\x50\xcd\x17\xc2\x4d\x67\x47\x29\x00\x44\x43\x70\xcc\xfc\x11\x60\x2a\x4c\xcc\x45\xf9\x1b\x8e\x86\x9f\xd8\x80\x71\x14\x55\x5a\x52\x2f\x3e\xdb\x7d\x81\x82\xac\x35\x52\xad\x32\x53\x17\x69\x50\x63\xd7\xc7\xae\x8b\xe2\xee\xe4\x99\x17\x55\x34\xf2\xc5\x41\xa1\x12\xab\xea\xe8\xe4\xa3\x6d\x6f\x7c\xc3\x47\xbf\x3a\x4c\x1c\xeb\xd7\x55\x84\x3a\xa3\x71\xf1\x9c\x66\xf9\x03\x6c\x56\x70\xbc\x69\x57\x97\xd2\xa1\x62\x86\x70\xb9\xe0\x4f\x71\x3a\x70\x95\xc6\x75\xa1\x83\x69\x74\x1f\x19\x24\x03\x90\x57\xe1\x01\xe5\xfb\x56\x0b\xd4\x21\xc9\x7b\x26\x8d\x59\x42\x27\x1e\xd2\x32\x09\x86\xfc\x8a\x84\x43\x18\xe8\xd9\xd1\x7a\x90\x0a\x1c\xee\x22\x25\x53\xc0\xf3\x15\x5d\xbb\x8c\x30\x2b\xb6\xf5\xb9\xb0\xb7\xff\xd5\x11\xf3\xe3\xb2\x9d\xd2\x90\xa0\x44\x19\xf6\xb0\x20\xcc\x5f\x37\x5b\xf3\xe1\x42\xe9\x35\x99\xfd\xac\x92\xe4\xb7\x90\x95\x6c\xf6\x81\x97\x63\x97\x17\x34\x36\xf1\xfc\xfc\x6a\x16\x60\xe8\x6a\x32\xaf\x05\xa0\xa6\xa9\xeb\x57\xbc\x68\xfd\xef\xda\xa3\xd1\x87\x85\x3d\x95\x5c\xbb\x2f\x28\x45\x03\x9b\x77\x80\x76\x6e\x56\x87\x0b\xee\x46\x4e\x4d\x0c\x5d\x3e\xf3\x6c\xba\x30\x40\x55\x86\x9c\x94\xbc\x7f\x76\xfb\x5d\x6a\xfa\x80\x6b\xc4\x33\x69\x8d\x0f\x4e\xd2\x47\xfc\x57\x66\x8f\xd0\xd3\xed\xe4\x51\x35\xa9\x8b\xa9\x71\x7a\x9b\x31\x6d\x82\x1e\x31\x2b\x94\xda\x31\x83\xf8\x5f\xa5\xb0\x0a\xaa\x60\xce\x39\xbb\x4d\x37\xf7\xe1\x48\xda\x18\xdd\xb0\xe5\x32\x40\x8a\xad\x63\xcf\x27\x65\x3e\x82\xe4\x81\x76\xe9\x1b\x9a\x04\x30\xf6\xe5\xb7\x64\xee\x39\x26\xd5\x87\x62\x6b\x42\x99\xe0\xdc\xa4\xf1\xa9\x1c\xe2\x7a\xd5\xe4\xc8\xff\xc5\x69\x28\xb3\xe8\xc6\x8c\x48\x83\xbc\x33\x58\x65\x68\x4e\xbe\x10\x36\x2f\x17\x65\xdc\x0a\x86\xcc\x0a\xaa\x52\xd6\xa0\x62\x95\xb1\x8e\xa8\x77\x62\xb2\xc0\x97\x30\xcf\xec\xde\x73\x92\xca\x60\x0b\x87\xfe\x70\x72\xdb\x70\x88\xf2\x65\xc4\x97\xa6\xd2\xb9\x2b\x66\x6a\xc6\xfa\x38\x19\x3e\x84\xe1\x9b\xe9\x7b\x0f\xbc\x00\xd9\x62\xe7\x4d\xdd\xd3\x0a\x4e\x7a\x86\x6d\xec\x35\x06\x9d\xb3\xbd\x00\xd3\xc6\xf1\x71\xf9\x42\xf8\xd2\x8b\xca\x4d\x19\x47\xf7\x79\xdb\x31\xfd\xe5\xf0\x7e\x31\x87\xe5\x7f\xe1\x71\x2d\x33\xae\x30\x1a\x94\x2b\xa2\x86\x19\xf0\x5c\x3a\xfd\x92\x04\x0f\x1a\x24\x00\x84\xfa\x6e\xd9\x03\xb1\x03\xee\xfb\x93\xfd\xc5\x86\xe1\xa9\x71\x72\x6c\x67\xd0\x97\x3d\xb1\x20\x19\x35\x5c\x3b\x9d\x6f\xff\xff\x37\x28\x8d\xaf\xf7\xbd\x3a\xf6\x91\x4b\xeb\xa2\xfb\x18\xaf\xee\xdf\x29\x5b\x03\x56\xae\xc4\x47\xec\xc4\x21\xc9\x44\xaf\x8b\x1f\xbc\x4a\x6d\x7a\x68\x67\x4a\xd6\xdc\x13\x26\x3f\x00\x9b\xb9\x6f\xa3\xe6\x5b\x8b\x5c\x64\xc5\xf2\xf4\xd1\x12\x3a\xdb\xa4\x35\x63\x5d\x9f\x70\xa4\xb4\x98\xc4\xfd\xcf\x4d\xc2\xdf\x7b\x79\xe0\x8b\x04\xa7\x21\x57\xff\xc1\x5c\x18\x10\x62\xbc\x5f\xe6\x3b\xab\xc5\xe3\x5a\x45\x5c\x8e\x73\xcd\x3e\xf5\x50\x3a\x51\xc0\x48\x86\x87\xdc\xd5\x5a\xc6\x22\xcd\x40\x44\xc5\x96\x5b\x71\x00\x14\x50\xc4\xed\xad\x60\x97\xbf\xb1\x93\xc5\xe4\x20\x43\xac\xc1\xf8\xdc\xa0\x4b\x75\xba\x31\xb7\x87\x8a\x55\xd9\x5a\x0e\xa8\xe6\xba\x13\xa8\x54\xeb\x08\x38\xde\x3d\x9f\x61\x6e\x10\x10\xbe\xdc\x21\xf1\x5f\x5e\x8f\x1d\x38\xbc\xcb\xbe\xa2\x19\xe8\xd9\x70\x81\x4a\x0e\xba\xe8\xd5\xd2\x4a\x87\x2a\x84\x69\xf6\x2e\x57\x1c\x4a\x81\x1b\xa5\xa1\x3e\x12\x49\x6d\x26\xff\x7a\x13\xc4\x83\xd0\x7a\xbe\x10\xfe\xd7\x28\x75\xd7\xd8\xaf\x10\x5a\x93\x36\x9c\x1f\x9b\xae\xb2\x9d\x38\x51\x4c\xb2\x9d\xcf\x8d\x55\x0d\xc4\x0a\x62\x50\xd3\xee\xc4\x59\xad\xad\x4e\x6b\xc2\x77\x3d\xee\xdf\x5f\xb5\x6b\x14\x54\x06\xd0\xfa\x40\x0f\x1c\xd3\xc5\x7f\x88\x6b\x12\x2b\xe1\x09\x7d\x67\xa5\xee\x58\x5b\xae\xf8\xa2\xf6\x30\x3e\x75\x0a\xf4\x9a\x11\xe3\x0d\xcd\xaf\xef\x1e\xa1\x67\xa9\xac\x24\x87\x67\xaf\x86\xda\x59\x59\xab\x31\x1a\x55\xb1\x96\xc8\x2c\x8d\xe3\x2d\xcd\x20\xca\x46\x8b\x9e\xaf\x14\xa7\x49\xa3\xe5\x20\xbf\xc2\x81\x57\xa2\x07\xbf\x73\xe7\xd0\x86\xb8\x9c\x2f\x84\xd3\xda\xc6\x68\x3b\xc4\xc1\x4c\x78\x3f\xc6\xe1\xd4\xa9\x83\xe2\x09\x0b\x8d\xda\xcc\x9a\x99\x9a\x3a\x78\x0d\x63\x8b\xbb\xe9\xd9\x62\xe1\xde\x38\x60\x50\x1c\x23\xc5\x96\xd8\xbc\x48\xad\xad\x69\x33\x27\x5f\x7b\xed\xb5\xf9\xe8\xf7\x7a\x96\x02\x2f\x0e\x4e\x7f\x88\xee\x31\xd7\x06\x12\xb1\x0a\xae\x33\xda\xc0\xb9\x34\x0e\xed\x50\x0f\x76\xbc\x2f\xf0\x1d\xb9\x2f\x0d\x02\x72\x44\x8e\x85\xf9\x60\xe4\xe0\xa3\xcd\x29\x15\x2f\x51\x85\xdf\xea\xea\x84\x53\x3e\x95\x48\x06\x2d\x47\xd4\x88\xdb\x23\x76\x9d\x2b\xc0\x80\x9c\xf6\xe8\xb3\xda\x3b\xa7\x81\x2b\x5d\x8a\x97\x88\x7d\x90\x5f\xda\xc3\x48\xc3\x78\x25\xb7\xe4\x50\x7a\x24\x16\x73\x62\x60\x81\xd5\x67\x4c\x5a\x93\x8c\x0e\x99\x54\x08\x2d\x2d\x6c\x01\xc5\x73\xb4\xfe\x92\xb4\x65\xd6\x58\x95\x18\xa0\xc0\xaf\xd0\x28\x3b\x6a\xc8\x13\x57\x2e\xd2\x74\x87\x5c\xcf\xc7\x48\x9c\x0f\x7f\x5d\x28\x3a\xe6\x0e\x46\x6e\x57\x45\x00\x34\xd6\x3c\x36\x1c\x9e\x3a\x94\xc4\x07\x73\xf6\x2a\x26\x3a\x56\xed\x53\x3d\x3f\xa5\x7c\x73\x2a\x84\xde\x45\x66\xd5\x62\x94\xef\xaf\x33\x8f\xb5\x82\xd7\x4c\xdd\xbc\x4f\xf3\x45\x9c\xaf\x31\x52\x47\x3e\xe9\x15\x93\xf0\x0b\x1e\xbd\x46\xab\x2a\x63\x43\x35\xfd\xdd\x37\x5d\xd0\x2f\xda\x89\x4f\x6a\x78\xa6\xba\x61\x9c\x86\x50\x8d\x52\xe3\x7e\x95\x0f\x87\xbc\x91\xfe\x28\x07\x5b\x82\x34\x1d\x43\x9b\xe6\xec\x51\x4b\x6a\xea\xac\x8e\x29\x3c\x2f\xb2\xde\x4d\xd7\xc8\x45\x1b\x99\xd5\x98\xc6\x27\x63\xca\x7b\x77\xea\xec\x30\x27\xb6\xc3\xca\xee\x7b\x55\xbd\xcb\x4e\xd4\x83\x6c\x64\x13\xbf\xc2\x4d\x62\xfe\x61\x24\x10\x80\xb2\xe3\xce\xc3\xf1\x05\x1a\xbb\xa9\x27\x71\xb6\xce\xce\xa8\x69\x9b\x31\xca\xcd\x4b\x88\x23\xec\xf9\x68\x6b\xd5\xed\x7a\xf8\xb3\x2c\xc8\x43\xcb\x9c\x78\x4e\x7d\xa7\x5f\x21\x65\x9e\xee\x1b\xb5\x5d\x0a\xdb\x06\xdb\x1a\xa7\x77\x81\xe9\x91\xe7\x61\xb9\x6b\x33\xa3\x35\x11\xb4\x3a\x16\xb8\x1c\xe9\x26\x33\xed\x55\x41\x85\x58\x80\x6c\x0b\x99\x26\x71\x01\xd3\x33\xfb\xf0\x9e\xa1\xa0\xca\xe7\xc6\x62\x7c\xd1\xbf\x39\xe0\x6f\xd0\xc2\x45\xaf\xa2\x0a\xb4\xdf\xb1\xeb\x49\x4c\x85\xd1\xb5\x6f\xb8\x0b\xe1\x96\x75\x62\x05\x62\x5a\xb7\x1f\x50\xc7\x78\x4b\x8e\x3f\xa0\xc9\x77\x89\x4b\xbb\x2e\x28\x36\x24\x5f\xd9\x17\x35\x67\x8d\x92\x10\xc8\x74\x05\x9d\xca\x58\xae\x75\x9e\x38\xfd\x43\xe2\x05\xb2\xff\xfb\xa2\x38\xf4\x16\xa7\x34\x88\x73\x43\x6e\x4f\x2f\x1f\x0b\xd9\x88\x68\xc0\xe3\x8e\xb9\xda\x7c\x0b\x68\x6b\x35\x9d\x03\x6c\x21\xc2\x38\x76\x7a\xf7\x63\x20\x92\x62\x26\x8c\xf5\x33\xb7\x77\xeb\x63\x46\x1c\x85\x07\x14\x6b\x79\xf4\x26\xaf\xb8\x04\x2d\x13\xce\x1c\x1f\x06\xb5\xe7\x14\x5c\x62\xd1\x19\x68\x6c\xe4\x22\x31\x0f\xe8\x7b\x5a\x15\xc5\x41\x8d\x25\x13\xbf\xb9\xd2\x58\x2d\xd1\x60\xcd\x17\xc2\x77\xde\x82\x42\xcb\xb6\x19\x6f\xdc\xe8\x72\xf6\x2d\x17\x8f\x8b\x38\x0e\x91\x80\x03\x4e\xa5\xdd\x31\x58\x89\x79\xd8\xf9\x42\xf8\xef\xef\x0e\x03\xf7\x8f\xed\x38\x9f\x0b\xda\xd2\x93\x49\x3b\xe8\xad\x54\xd3\x79\x66\xf8\xc0\x3a\x15\xd5\x3c\x33\xb0\x6b\x7e\x8c\xc4\xe9\x02\xd0\xd4\x1a\xa3\x0e\x15\x0a\xb0\xd7\x3f\xd4\xa2\xbc\x65\xfc\x14\x9a\xff\x96\xd2\x18\xed\x10\x60\x82\x62\xac\x5e\x75\xc7\x40\x4d\x83\x8f\x05\x4e\x31\x4a\xff\x84\x21\xea\x3c\x71\x4c\x5a\x0c\x75\x45\xff\xfd\xde\xdb\x83\x92\x1b\x9b\x91\x2f\x84\xd7\x49\x47\x87\x1b\xe0\x40\xb4\xcf\xb8\xbc\x2d\x01\x4a\x55\xf9\xb0\x4b\x51\x64\x27\x69\xf1\x4c\x6c\xd0\x44\x59\xbc\xcf\xf8\xe3\x76\xad\x3c\x64\xe5\x78\x96\xb1\x60\x88\x66\x14\xc9\x10\x29\x6b\xcb\xf2\x8b\xcb\xb5\xe5\x8e\x6c\x24\x19\xb8\x7d\xc6\x2f\xef\x57\xef\xa5\x33\x70\x6a\x5e\x40\x78\x0a\xb9\x99\x49\xe3\x77\x5a\xb6\x49\x95\xc4\x2c\xad\xb3\x80\x9f\x8c\x6d\x1b\xe8\x7f\x1a\x0f\x34\x27\xc5\x80\xe5\x55\xe3\x26\xef\x9d\x0d\xb3\x33\xae\xdf\x16\x65\x46\xb2\x11\x3f\x47\x83\x2e\x8a\xbb\x13\x39\xd0\xfc\x17\x24\x17\x2b\x68\xe0\xca\xf4\x65\xbf\xfe\x36\x58\x52\x88\x39\xb6\x4c\x50\x73\x7e\x49\x97\x45\x40\xbd\x8d\xa6\x38\x5f\xd7\xd8\x07\xc8\xaf\xc9\x5e\xda\xa4\xe7\x35\x29\xd2\xb8\x9f\x77\xe9\xc4\xf4\x62\xf5\x19\xf6\xcc\x4a\x9a\xef\x90\x79\x40\x1b\x4a\x59\x2c\x28\xcb\x33\xee\xe6\xd5\xaa\x2b\x64\x37\x20\xac\x8c\x9d\xcd\x9a\x2a\xbe\xf2\x3b\x5c\xb7\x38\x5d\x17\x15\x03\xe6\x60\x8f\xb3\x78\xe4\x63\xfc\xd3\xb1\x06\x3a\x18\xf6\x7c\x21\xd7\x24\x0e\x9d\x55\x6f\x5c\x92\x14\x5e\x51\xdc\xcd\x17\xc2\xea\x33\x5a\x17\x87\x21\xb3\x1a\xfb\xc4\xa1\x67\x81\x9d\x68\x17\x22\x82\x18\xb5\xce\x52\x81\xcc\xa5\x44\x98\x8b\x5c\x73\x54\x1f\x9d\x7b\x1c\x8f\x2b\x53\xa3\x3f\x2e\x94\xb6\x4e\xb3\xda\xf9\x61\x9c\x1d\xe1\x8a\x5c\xa9\x8c\x5d\xe2\x8b\xb0\x77\xd1\x4c\x91\xa0\x34\x4a\x0a\xee\x4f\xdf\xd8\xb5\x8a\xd4\x23\x92\xb7\x9f\xed\x05\x3a\xd0\x9e\x87\x7d\x5e\x7a\x84\xd7\xb5\xaa\x0b\x6d\x9f\x3c\x4d\xd8\xdd\x7c\xe7\x88\x4c\x9a\x08\xd7\xab\xe0\x7e\xf2\xc6\x27\x35\x6e\x6a\xfb\x0c\xbf\x22\xe1\xdd\x6b\x26\x37\xba\x6a\x72\x73\xc4\x42\x9f\xb1\x6d\x48\x73\x4a\x08\x11\xf3\xae\x62\x66\xab\xa2\x7b\xdb\xd1\xd3\x09\x47\x9e\xb8\x54\x35\xc2\x62\x8e\x5f\xf6\xb7\xcf\x68\x61\x3e\x70\x6a\xc0\xf6\x3a\xd0\xbc\xed\xa2\x97\x16\x38\xa8\x98\x00\xc1\x8c\x31\x17\x35\xd8\xd2\x73\x52\x78\xdc\x00\xb8\xf3\xb0\xb4\x96\xb1\x31\xf0\xa1\x33\x6e\x1e\x92\xe6\xdc\x23\xe6\xf4\x88\x9e\x55\x7a\x31\x4e\x3a\x0a\x18\xc2\x42\x75\x37\xf3\x9f\xf3\xb4\x79\x6b\xdb\xd4\x99\xb2\x68\x7a\x60\x87\x36\x7f\xf3\x09\xa7\xe4\x17\xc2\xb6\x01\x02\xac\x3b\xab\x6d\x3a\x17\x13\x58\x94\xd2\xe6\xb0\x38\x90\x5c\x26\xa9\x77\x1e\x02\xf4\x71\x4e\xd3\x89\x49\x67\x7b\x5a\x86\xc5\x59\xb4\x50\x74\x10\x19\x68\xb8\x7e\xf1\xe0\xb8\x4e\xc3\x1c\xf6\xf5\x9c\x31\x0a\x94\x94\x9e\x8f\xdd\x94\x7d\xf6\xe6\xf3\x0d\xf2\x38\x51\xd1\x25\xd1\x42\x1b\x8e\xa6\x1f\xa9\x4d\x5d\x8b\xbf\x6d\xb9\xc7\xee\x2a\xea\x72\x25\x8c\xd4\x64\x45\x79\xe9\x3c\xe8\xb3\xc2\x02\x6e\xa7\x61\xfc\x6a\x34\x30\x38\x82\x3e\x7c\x7f\x1d\x20\x58\xe6\xcb\x91\xcf\xab\x62\xf0\x4f\x83\xe6\x6a\xaa\x71\x3d\x35\x16\x78\xd1\x73\x06\xa7\x46\xf6\xe6\x92\xee\x61\xcf\xc5\x1e\x65\x73\xfa\xe6\x25\x23\x13\xe1\xa0\x86\x04\xba\xf3\x19\x5d\x8a\x92\x25\x30\xfc\xf0\xc5\x26\x0d\x76\xc6\x21\x9a\xf5\x7e\x3c\xec\x8c\xbe\x8b\xd4\xc6\x23\x4e\xcd\xa6\xf2\x54\xde\xba\x0f\x04\x66\x86\x4c\x79\x5c\x87\x7b\xdb\xd3\xe1\xb3\x84\x6d\xab\x88\x02\x27\x35\x79\x78\xfb\xa8\x16\xc7\x1c\x54\x96\x94\x31\x99\x01\x95\x96\xb4\xf6\x13\xe9\xa2\x02\x59\x69\x5e\x18\x17\x1a\xcd\xa9\x5f\x9a\x20\xf6\xec\xf2\x6e\x95\x72\xad\x47\x0c\x31\x94\x2f\x84\x67\x6c\xed\xb5\x62\x3f\xde\x87\xc6\xee\x75\xf9\xbf\xf5\x65\x54\x00\xec\x35\x40\xc7\xed\x63\x44\x29\xb9\x8c\x98\x15\x64\x9b\x95\xc0\xac\x82\x77\x3b\xed\xc9\x06\x46\x86\x5f\x91\x3c\xbe\x47\x06\xa6\x83\x31\x9f\xb0\x8b\x86\x7c\xf8\xe0\x8e\x46\x34\x23\x57\x95\x96\xf8\x23\x67\x9f\xe4\xbc\xf9\x98\xcb\xd3\x2d\xd1\x63\x03\x67\x3d\x24\xe3\x7a\x6b\x05\xd4\x00\xb6\xf8\x20\x3a\x77\xfb\xdc\x66\x99\xe2\x39\x88\x21\x0b\x33\xc2\x7f\x5c\x5a\x72\x29\x10\xd4\x43\x2e\x17\x17\xce\xfc\x55\x93\xee\x70\x88\x4d\x3d\x5c\x27\x26\xef\x58\xa9\x1b\x3e\xa6\x10\xdf\xd4\x26\xf9\x42\xf8\x93\x63\xfa\xa5\xc5\x2e\x53\x93\x78\x15\x3f\x5e\x9b\x74\x72\xad\xd2\x04\xb5\x59\x38\x99\x7e\xf7\x58\xd4\x4c\x35\xa8\x02\xf5\xeb\xd7\x93\x4c\xb8\x06\xb5\xc1\x33\xd3\x16\x6b\x31\x2a\xb1\x80\xcd\xfc\xf3\x2b\x5a\x75\x88\x18\xeb\x49\x13\xb6\xd7\x8c\x89\x49\x12\x5d\xf9\x42\xb8\x64\x89\xae\x8f\x66\xd7\x63\x27\xb6\xdc\xa8\x97\xe5\x20\x1e\x9b\x01\x13\xaa\x3b\x55\x4d\x29\x9e\x48\x91\xc8\x30\x73\x50\x93\xef\xc6\x0e\x75\x85\x2c\xaf\x44\x67\xe7\x2e\xd8\x07\x66\x8f\xc2\x83\xff\x3e\x80\x1d\x63\xd8\x21\xdc\xf2\xda\xf8\x60\xb7\x1a\x49\x41\x59\x24\x8e\x1c\xf9\x6c\x37\xc8\xf8\xdd\xae\x28\x07\x17\xb2\xf4\xad\x1b\x14\xf4\xce\x35\x25\x55\xf1\xe8\xeb\xe2\x6e\xa7\xe5\x67\x46\x97\xf0\xf1\xa7\x35\xce\x1f\x12\xb0\xb8\xf0\x1e\xe0\x19\xeb\x11\x16\xd8\xf9\x6a\x05\xf9\x5c\x57\x35\xeb\x69\x9a\x16\x28\xb0\x88\x1f\xab\x87\xed\x54\x3d\xff\xe9\x1d\x1d\x7c\xa2\xb5\x11\xc0\x47\x19\xad\x71\x2f\x35\xe3\x77\x3b\xd3\xc9\x9c\x55\x41\x2e\xaa\x21\x1b\x4d\x82\xd6\xd8\x46\xf6\x8c\x00\x11\xad\x42\xae\x4f\x19\x08\xa7\xb9\x8d\x13\xa1\x77\x70\x54\xee\x8b\xae\xf7\xa4\xd5\xb0\x8d\xe9\x09\x49\x90\xdd\x0f\x8a\x73\xa6\x1e\xd8\x2e\x66\xa8\x48\xa4\xd9\x84\xf1\xa1\x6e\x28\x1f\x5a\x47\x36\xb1\x62\xb4\x94\x31\x56\xe3\x3f\x5b\xd8\x23\x65\xa1\x2b\x1d\xfe\xe7\xe6\x46\x01\x35\xa9\x20\x91\x5b\xfb\xa4\x14\x8b\xc0\x9e\x67\x43\x61\x7f\xe3\xed\x75\xb1\xc0\x1e\x67\x9b\xf2\xe8\x79\x78\xb1\xe0\x92\xd5\xa2\xea\xcb\x0d\x9c\xbc\x27\xc0\x98\xd1\x27\x99\x6f\x08\x48\x53\x99\x22\xdb\x33\x29\x13\x34\xe0\x1b\xb4\x09\x9f\xcd\x85\x03\xe5\xb8\x7b\xd7\x64\x6d\xc5\x63\xd7\xc5\xbe\x9f\x4a\x65\x73\xc0\x85\xc6\xab\x50\xb1\x94\xb3\x2d\x2f\x00\x15\x43\x86\x4d\xea\x9a\x98\x08\x3b\xa6\xdc\xc0\x81\x62\x70\xb3\x9a\xd1\x2e\x29\x07\xa9\x27\x16\x9f\xd7\x16\x3c\x72\xab\x38\x5d\xb1\x18\x17\x57\xc6\x68\x01\x19\x09\x0d\xb7\x64\xac\xb7\x7f\x5c\x33\x28\x9d\xa3\x3c\x22\x2a\x5a\xce\xae\xd6\x87\x92\x98\xc5\x16\x70\x1f\xde\x22\xda\xa9\x9f\xb2\x51\x2f\x50\x83\xc8\x62\x03\xf2\x05\xe5\x34\x0b\x4c\xd0\x33\xe5\xba\x2e\x85\x85\x6d\xc1\x71\x2e\xf4\x65\xdf\x6d\x01\x92\xd9\xd4\xac\x72\xfa\xe5\x2f\xdb\xf5\xc9\x2a\xf1\x71\x6c\x48\xd5\x75\x93\x2a\x66\x93\x22\x9b\x37\x60\x8d\x83\x0a\x1c\x54\x66\xdc\xa7\xed\xbd\x66\x40\x17\xa3\xf9\x42\x78\xc5\xc0\x41\xf1\xae\xb9\x56\xf8\x37\x82\xfa\xad\x88\x3c\x05\xac\x7a\xf3\x1d\xb1\x24\x3a\x00\xa2\x2e\xcc\xdd\x3f\x0c\x10\x74\x2b\xc8\x8d\xb2\xd9\xe8\x63\x86\x4c\x86\x9b\xc4\xb6\x29\xe3\xf2\xce\xc6\xb0\x6d\xad\x69\xee\x67\x1d\x37\xd6\x2d\x5f\x3f\xa5\xa5\x22\xae\x4b\x7b\x12\xc9\x85\x6f\x8d\x6d\x4c\x9a\x4a\x92\x96\xb2\xed\x11\xd0\xa9\xae\x09\xe9\x8c\xdb\x15\x3a\x1b\x9b\xa0\x91\x91\x79\x7e\x97\x06\x06\xeb\x71\x2d\x81\xce\x6d\x90\x72\xd1\x9c\x90\x02\x57\xb2\x97\x65\x2f\xef\x13\x7b\x80\x21\x25\xf6\x89\x19\xd8\xc2\x3d\x25\xf7\x99\x57\x35\x99\x35\xe2\x06\xbe\xf0\xf0\xcb\x0c\x98\xf0\xb7\x08\x92\xd1\x46\x6f\xb3\xc1\x3c\x9e\xf8\x7c\xfa\x61\x5c\xb0\xf0\x72\x3d\xd3\x22\x9e\xd2\x24\x37\x7a\x4f\x0a\x98\xc5\x72\x5a\xa7\x9e\xaf\x4f\x85\xc2\x8f\x8e\xbc\x04\x36\x88\x78\xf3\x6a\xd2\x4c\x00\x4a\x4c\xac\xf7\xa2\xeb\xfb\x85\x3a\xf7\x18\x34\x5a\x30\xee\x58\xdd\x02\x96\x78\x29\xf0\x92\x36\xb4\x61\xbc\x3a\x39\x1d\x05\x6c\x4a\x1d\xe2\x96\x2d\x64\xe3\xf1\x02\xaa\x9e\xee\x85\x5f\x7e\x44\xdd\x66\x9d\x20\x9b\xaf\x12\xa7\x49\x3b\xb3\x91\xef\x0b\x25\x99\xe8\x69\xff\xc7\x90\x4b\x40\xbc\x40\x1c\x20\x6c\x4f\x04\x96\x72\x5c\x0d\x4f\x5d\xee\x30\xcd\x5a\x17\x59\x75\xe2\x51\xe6\xf5\xd7\x57\xce\x5e\x53\x4a\x8e\x11\x53\x8c\xa7\x9e\x9a\xa3\xb5\xf9\x91\x89\x3d\x09\x1e\xfe\xf0\x1b\x9a\xe5\x44\xc0\x77\x4c\x52\x66\xff\x9f\x67\x86\xcb\xe4\x8d\x21\xd7\x82\xee\x26\x99\x75\xc9\x4e\xb4\x03\x9e\x01\xfd\x62\x1c\xb0\x12\x63\x42\x9e\x93\x3f\xd3\x73\xa7\x74\x39\xf1\xa4\x74\x13\x3e\x99\xff\xd0\x3c\x0c\x4a\x01\x39\x48\xa2\x0f\x8d\x9f\xcf\x05\xdb\x01\xc9\xe3\xf9\x3b\x3b\xf4\x29\x35\xad\xd9\xb8\x4d\xb0\xc4\xbe\xd8\x0c\xe2\xa0\x59\xc1\x0e\x07\x26\x6c\x7c\x34\x39\x3e\x6a\xd2\xe1\x2c\xdc\xbf\x41\x4b\x7e\xa8\x23\x01\x92\x99\x1f\x68\x5e\x1e\x16\x0b\xca\x79\xb5\x63\xf8\x53\xdd\xfd\x28\xc0\x01\xb2\xa0\x58\x94\x67\xdf\xf0\x56\x28\x63\x13\x40\x10\x4c\xf6\x93\xfb\xf5\x54\x6f\x7d\x40\x98\xaa\x50\xef\x38\xaf\x13\x83\xb8\xe2\x94\x6c\x14\xff\xf7\x3b\x0d\x5e\x29\x76\x94\xb0\x89\x67\xf8\x81\xa1\xae\x27\x0f\xf0\x4e\x1b\x1f\x49\x36\x01\x31\x01\xbb\x7b\xc1\x3a\xb5\x08\x9d\x80\x6b\x8b\x2f\x2d\x26\xb5\x19\xf1\x1c\xd5\x49\xfd\xba\xa6\xd4\x4f\x83\xe8\xff\xc5\xee\x96\xd3\x57\xaa\xf3\xc2\x43\x7e\xc0\x2c\xce\x5d\x51\xed\xbc\xcc\x8b\xfa\xe8\xd1\xa9\xd9\x51\xd2\x21\xb6\x43\x6e\x91\x0f\xaa\x26\x97\x1b\xca\xf1\x8c\xeb\x75\xcd\xb8\x4f\x8e\x26\x24\x1b\xe8\xdc\x12\xdd\x78\xd8\xb7\x91\xe7\xc5\x05\x80\xf1\x83\x45\x40\x86\xc8\xc6\xc8\x15\xbe\x1e\x0f\x18\x6a\x42\x4f\x24\xf3\x26\x2c\x68\xa0\x50\xe2\x76\x06\xbc\x96\xe0\x61\xee\x85\xcd\xc3\xc0\xec\x4d\xd8\xdd\xf1\x73\x7f\xe6\xc2\x66\x58\xee\x31\xca\x11\xe9\x0f\x68\x9e\xfd\x25\x5c\x14\xd0\xe5\xfb\x16\x82\x91\xb0\x9d\x2f\x57\x50\x2f\xef\xf4\x64\xbd\x97\xd3\x39\x7c\x19\x33\xe4\x14\xd3\x16\xf4\xb9\xd9\x8a\x4d\x53\x44\x15\x79\xe1\x77\x75\xf7\xd7\xae\x12\x80\x8d\x6f\x3f\xd3\x20\xce\x8a\x5d\x9f\x48\x6c\x73\xf4\xbd\x57\x6f\xd0\x1d\xb9\x8a\x4c\x00\x3e\xf8\xde\xdf\x3c\x00\x60\xf8\x29\x57\x34\x50\x12\xaa\xef\x80\x10\x46\x85\x72\xc4\xa6\x87\xf4\x89\x96\x57\xa3\xc2\x6f\x4f\x2c\xe0\xd3\xfb\x75\x8f\xf6\x2e\x5f\xf3\x9b\xde\x32\x52\x7b\x13\xbe\x87\xed\x52\x9b\xa4\x87\xfd\xa8\xa2\xab\xf7\x70\x10\x7a\xd1\x8e\xb9\x73\x4f\xb7\x48\x74\x38\x35\xa3\xe3\x2b\xfc\xfa\x96\xe4\xa1\x61\x3b\x1f\xf7\x4e\xbc\x17\xc6\x68\x99\x9e\x5d\xe6\x52\xe6\x24\x99\x5d\xfe\x68\xa5\x26\xab\x42\x7c\x5f\x54\x33\x2a\x29\x9b\x0f\xb0\xfc\x1e\xf6\x39\x48\xe2\x37\x9d\x31\x7f\x40\x74\xec\x62\x7c\xfc\xf7\xa6\x24\x51\xb9\x87\x06\xf9\x42\x78\x25\xd0\xe5\x47\x84\x45\x39\x40\x55\x14\x1a\x8f\x1f\x68\xa8\x07\x99\x20\x91\x8a\x14\xe1\x47\xd3\xd3\xef\xd5\xa1\x81\xeb\x23\xe2\x2a\x26\xdf\xeb\xe7\x41\x4d\x1f\x60\xec\xf2\x6a\x7a\xb2\xe6\x37\x56\xe4\xb7\xa4\x78\x94\x27\xc7\x2a\x7e\x6d\x5b\x3b\x17\x9d\x39\xd2\xaf\x3f\x54\x92\x35\x5c\x7f\x04\xc8\x69\x21\x56\xe4\x12\xae\xd9\x09\xcf\x89\x58\x8b\x4a\x3e\x66\x0e\xe2\xcf\xc5\x18\x3e\x4a\xeb\x01\x13\x4f\x76\x14\x33\xeb\x55\x41\x9c\xf7\xf8\xf5\x37\x15\x45\xa9\x35\x75\x3a\x37\x49\xfc\x68\x4b\x8b\x42\x65\x23\x98\xf4\x5e\x7e\xc1\x47\xd4\x43\x64\x45\xe2\xcb\x79\x8b\x3e\x35\xee\xd3\xc0\x0a\x7e\x05\x25\x4e\xb7\x3f\x3e\x96\x26\x56\xa2\x22\x43\x15\xe9\x65\xd3\x70\xd6\xef\xd5\x31\xc3\x28\xf6\x1c\xe1\xed\x30\xf7\xe8\xd0\x14\xb2\x2a\xf6\xaa\x98\xf3\x60\xba\x58\xcc\x47\x9f\x2e\xc8\x4d\x6f\x6b\x6c\x6d\xb7\x0c\x4c\xf3\x39\x7a\x68\x5e\xd3\x30\x59\xa2\x9a\x94\xd6\x30\x43\xbe\xd4\xbf\xc9\xcc\xd4\xec\x36\xd7\x07\xa4\x56\x53\x4c\xcb\xf0\xdc\xc2\xc1\xb2\x52\x21\xc2\x0d\x38\xeb\xcd\x6e\x86\x6d\x0e\xb1\x21\xc2\x49\x67\xf5\xec\x30\xb1\xc9\xe4\xe3\x96\x95\xef\x6a\x39\x20\x46\xb1\x94\x42\xf6\xfb\x6d\x97\xa6\x6a\x1f\x69\xa9\x24\x4a\x84\xfc\x52\xa1\x7e\x9a\xce\x50\x0e\x4f\xd4\x28\x3b\xac\x8c\x5c\xd2\x2b\x97\x55\xd8\xf4\x5a\xb2\x1e\x50\x3d\xe0\x93\xe6\x73\x80\xe6\x4f\x19\x23\x16\x6d\x14\x2c\xf8\xc5\x63\x8d\xa7\x45\x42\xd0\xc9\x3c\xfa\x48\xcc\xc5\x71\x2d\x1a\x08\xed\x8d\x59\x4d\x9a\xf1\x10\x29\x23\xaf\x42\xf2\xa4\x88\x18\xaa\x92\xc4\xc5\x2a\xbb\x21\x77\xb1\xac\x03\xb8\x40\x90\xa1\x39\xec\x12\x97\xc8\xb0\x2a\xf2\xfb\xd2\x07\x83\x64\x22\x8d\xc5\x41\x76\xf1\x2d\xe9\x13\x81\x4a\xe1\xce\x5a\xab\x3a\xb2\x63\xac\x4b\x94\x38\x77\xa4\xf7\x4a\x17\xb2\x63\xf4\x37\x69\xef\x47\xdb\xb6\x4e\x70\x57\x62\x8d\x33\x69\x8b\x96\x2b\x3a\x98\x11\x13\xb9\xa8\x1f\x8e\x48\xd6\x05\xe8\xfa\x3a\xb2\x39\x6a\x31\xca\x5f\x73\xad\x67\xc1\x54\xab\x1b\x95\xa3\x13\x49\x76\x09\x5a\xc0\x90\x49\xb8\x3c\xca\x90\xb9\xe8\xf8\x35\x5a\xce\x6b\xfb\x9e\x59\x09\xca\x9a\x94\x7e\xf8\xc3\xb7\x87\x6b\xbb\x91\x48\xa8\x18\x3a\xa0\xc7\x77\x45\xda\xe6\xbf\x30\x4d\x33\xa6\xa1\x81\x6f\x51\xca\x54\xe8\xfb\xf5\xa3\x4a\x07\xb2\xdc\x93\x2f\x84\x73\x6d\xb1\x7b\x96\x99\x9f\x62\x08\x78\x08\xe6\xee\x38\xa8\xb1\x0e\x58\x39\x90\xb3\xe9\xec\x43\x7b\x94\x02\xb9\xd5\x88\x98\xbb\x6b\xf3\x60\x59\x3a\x38\xfc\xc8\xef\xcb\x5c\xb4\xae\xa5\x61\xf1\xc9\x20\x79\xf9\x4d\x50\x3f\xa5\x8c\xb8\x6b\x87\xbd\x14\x24\x8f\xc8\x89\x4d\x6d\x8c\xa5\xfe\xd5\x5a\x69\x88\xdc\x12\xff\x41\xaa\xa3\xd7\x97\x5b\xfe\x82\x96\xbc\xe2\xee\x38\x31\xbd\xc4\xd7\xe4\xfe\x82\x52\x29\x09\xd9\xff\x71\x4a\x13\x6e\xa1\xdd\xa2\x72\x0f\xb7\x3c\xa2\x5e\x39\xc7\xb7\x49\x08\x77\xa1\x2f\xb3\xf5\x76\x5d\xa4\xa6\x8e\xa5\xe7\x53\xf8\xb3\x97\xd2\xff\x36\x75\x72\xc7\xac\x58\x18\xd0\xb8\x69\xe5\x04\xed\xc0\xaf\x79\xbd\xa8\x8e\xfa\x09\xae\xe1\xfd\x5b\x94\xbc\x94\x17\xb8\xa4\x01\x14\x9c\x39\x38\x5a\x3a\x08\x72\x01\x73\x81\x53\x0c\xbf\xbf\x36\x7d\x50\xfb\xb4\x56\xd5\x2d\x14\x2e\x34\x2e\x01\xc0\x74\xbb\x9a\x2f\x84\x63\x4e\x27\x41\xa6\xc8\xa5\xa8\xfe\x71\xba\x86\xa1\xa1\x9e\x29\x2c\x3a\x44\xa6\x35\xe7\x16\x19\x03\xb8\xf5\x6f\xf8\x2f\x67\x55\xd8\xab\x13\xe6\x07\x7c\x19\xac\xde\x28\x16\xdb\x72\x6c\xd7\x53\x16\xba\x4b\x95\x22\x50\x05\x32\xbb\x33\x2d\x0f\x6b\x8a\x6f\x1f\x6b\x97\x7c\xbd\x57\x5e\xee\xb7\x31\x1e\x7d\xf9\xab\xaf\xab\xd2\x0b\x45\x2f\x61\xbd\xf6\x82\xa2\xe5\x17\xeb\x0d\x66\x97\x4e\x94\xd6\xa3\x94\x4f\xf6\xa3\xeb\xfc\xbb\x77\x41\x6e\x1c\xf8\x12\xe9\xf0\x7f\x57\x03\x1e\xa8\x1d\x15\x89\x3c\xfd\xbd\x0f\xe0\xd1\x8a\xd8\xe5\x13\xc2\xcc\xf1\xd7\x5a\x61\x21\x5e\x27\x66\x63\x1b\x24\x7b\xf5\xb3\x92\x3f\x1d\xb0\x3a\xe1\xae\x96\xe1\x97\xf7\x6b\x15\x4e\x85\x60\xdb\x92\x7a\xe3\xd9\x27\x8b\x1a\x0a\x9d\xf8\xa4\x17\x4b\x40\x94\x71\xef\x58\x55\x59\x21\xdf\xa7\xcc\xc5\x72\x1c\x16\x7e\xf1\x04\x90\xfd\xc2\x25\x22\x6d\x0b\xae\xd0\x8c\x6f\x4d\xec\xfa\x01\xeb\x49\xaa\xdb\x43\x3b\xaf\xd1\x52\x75\x16\x15\x87\x15\xa2\xbb\x7f\x64\xe6\x37\xeb\xca\x2b\x6e\x50\xe2\x83\x9c\xf8\x8c\x09\xcf\xd7\x1a\xfd\x5c\x2d\xa2\x46\x0c\xff\x78\x27\x40\xa6\x9a\x28\x66\xc0\xbd\x73\xbb\xca\x22\x2b\x9c\xd7\x15\xbe\x71\xa7\x5a\x5c\x20\x7f\x7b\xa5\xd1\x5f\x09\xaf\x0f\x84\x3b\xa5\x4c\x66\xc2\x35\xe3\xb4\xb0\x60\x52\xd7\xea\xaf\x4f\x90\xb9\xf4\x10\x68\x65\x62\x24\x28\xd3\x99\x3b\x5f\xd1\x93\x4f\x29\x1f\x20\xaa\xcc\xdc\xf5\x40\x6c\xc3\x33\x19\x12\x59\xcc\x3f\x68\x22\xe2\x1e\xe2\xd0\xae\x68\xad\x5e\x72\x37\xd4\xc0\x2d\x13\xcf\x67\x5c\x85\x39\xfb\xcf\xaf\x00\x4c\xda\xd4\x36\xa1\x03\x3e\x78\x34\x10\xa6\x8a\x3e\x5e\x46\xa0\x05\x4a\xfe\xd0\xc4\x60\x7c\x94\x19\xdc\xa1\x19\x5c\x54\x90\xcb\x1d\x87\x7b\x1b\x56\x63\x65\x0b\xc8\x7d\xaa\xa8\x07\x7b\x3c\xb9\xf8\xfc\x59\xa5\x66\x69\x37\xba\x4d\x5c\xba\x53\x3f\x26\x12\x4d\x88\x37\x25\x1a\xd8\xaf\x60\xca\x30\xd7\x26\x88\x3e\xf0\x27\x0b\x3e\x02\xca\x59\x1f\xb3\x5a\x50\xec\x4f\x97\x68\xd8\x7e\x55\x5e\x11\x57\xf8\xab\xc5\xb3\x09\x63\xfc\x41\x29\x02\x42\x3c\x2e\x87\x29\xf2\xc8\x0f\x5f\x90\xbe\x5b\x9b\x5a\x65\xb9\xfe\xf4\x33\x6a\xfc\x99\x74\x72\xe8\xf5\xb8\x16\x31\x39\xfc\xaa\xc6\x19\x0b\xb9\x0b\x2e\x50\x3a\x86\x3d\x62\x9c\xfd\x4a\x73\xfa\xf3\x1d\x62\x13\x1f\xb1\x9e\x58\x55\x90\xa0\x04\x6d\xfc\xfe\x11\x71\x81\x1c\x05\xcd\x71\x95\xd1\x65\x3f\xb4\x62\x8c\x76\xb4\x53\xe1\xb7\xa7\xfa\x46\xe1\xc1\xa1\x32\x59\x8c\xb5\x71\xc4\x1d\xdf\xf0\x34\x90\xe8\xa3\x71\x23\xdf\xd8\x38\x51\x01\xf8\x5c\x48\x75\xfe\xde\x41\x8d\x8c\x54\x8a\x0e\x4a\x4f\x76\x95\x8d\x6f\x02\x4c\xf6\xb4\xf6\xb6\xa9\x51\x25\x61\x8c\xd8\x24\x66\xcc\x4b\xa9\x13\x1d\x6e\xa0\x9d\x95\xfd\xf3\x4d\xea\x8c\x28\x51\x3e\xe8\xcb\x3e\xf7\xb6\x56\x36\x20\x3b\x61\xb2\xdd\xb7\xfb\x3a\xaf\x82\x6a\x38\xd1\x99\x9b\x13\x63\xea\x5a\xf9\xcf\x5b\x91\xdf\x3a\xa5\x7b\x66\xd1\xc2\x53\xac\xe9\x73\x27\xa5\x5f\x0f\x58\xc0\x07\x35\x3c\x05\x2e\x95\xb0\x29\x8c\x44\x33\x57\x3f\xa7\x61\x99\xf8\x1c\x4c\xee\x47\x79\xc4\xde\xb8\x08\x70\xb9\x84\xd0\xaa\xb0\xf5\x38\xf4\x88\x94\xa5\x96\xae\x2b\xea\x0d\xfc\xcf\x29\xbd\x07\x2b\x6d\xf5\x64\x8e\x50\x3d\x32\x04\xd6\xf6\x5c\x7c\x6d\x81\x06\x4a\xc3\x75\xe2\x6b\xb5\x7b\x6e\xfb\xdd\x97\xa8\xe2\x5b\x1c\x29\xff\x33\x19\xf4\x80\xad\xb2\x50\xee\x28\xfa\x5a\x12\x27\x8a\x1a\xb7\x2c\x5b\x3b\xb9\x81\x2f\x29\x0d\x2d\xd3\x4b\x0d\xf9\x3f\x98\xa2\x50\xd5\x95\x9e\x32\xc1\x6e\x63\x7d\x71\xfa\xa8\xca\x24\x02\x56\x44\x8d\x9b\x63\xfa\x2e\x15\xfb\x48\x29\x4e\x60\xd7\x58\xc3\x40\x06\x54\x42\x84\x49\xa9\x91\x2f\xb9\x40\x87\x0f\x77\x09\x9a\xb2\xd1\xba\x56\xde\xae\x8d\xba\x6c\x21\xd7\x9b\x5b\x3d\x5d\xfc\x6c\x3e\x43\xc5\xd8\xc4\xf1\xdf\x9a\x74\x51\xff\x72\x45\x42\xe7\xb6\x8d\x4d\x9a\x51\x6e\xdc\x03\x0f\xd7\xee\x01\x7c\x8c\x80\x59\x52\x56\x7b\xf3\x8e\xf4\x62\xc0\xb5\x9a\x70\x03\x87\xfd\xc5\xb9\xa3\x21\xd5\xa2\xf1\xd1\xac\x90\x98\xa2\x9b\xb1\xe7\x43\x52\xd8\xd4\x09\x57\x6a\x89\x77\x12\x8f\x90\x2d\x95\x91\x4b\x6f\xa9\x77\x39\x3b\x2e\x4e\x2f\xec\x48\xdf\x1c\xaf\x91\xe4\x3a\x6a\xdb\x3d\x0c\x74\x42\x51\x94\x86\x06\x2c\x5f\x08\x5f\x7e\x3c\x49\x86\x7a\x10\xb0\x4e\x37\x3e\xac\xf9\x1f\x57\x7a\x6a\xd4\x64\xc4\x93\xd0\xbc\xdc\x86\x9b\x94\x21\x75\x17\x8e\x2f\x61\xd2\xdb\xd0\xae\x5b\x6a\x12\xf0\xbd\xf1\xe3\xfb\xe1\x4c\xd8\x27\x82\x5e\x3e\xfa\xad\xf4\x25\xd7\x2a\xd4\x95\xd2\x45\xf9\x47\x75\x99\xef\x3a\xb2\x59\x4f\x6c\xdf\xfc\xe2\xae\x46\x25\x3a\x99\x9b\xfc\xb7\x2f\x9a\x1e\x37\xcf\xbf\x75\xf9\xf5\xb1\xec\xad\xb9\xf6\x6a\xed\x70\x62\xc4\xeb\xc7\x22\x25\x57\x68\x69\x48\x1d\x6c\xca\x3b\x3e\xa2\xef\xf5\xfb\xc3\x97\x40\x79\x2e\x7e\xd4\x77\x9f\x4f\x83\x62\x6a\xd8\xed\xa7\xc2\x7b\x02\xe8\xba\x4c\x69\x9b\x35\x7d\x46\xf4\xa7\xbf\x6f\xd5\x91\x56\x5c\x33\x5c\xc2\xe2\x8c\xa5\xef\xa4\x6f\xb3\x07\x23\x26\x51\x01\xd7\x8d\x4b\xca\xab\xf1\x9c\x37\x38\x49\xb3\x6f\xa9\x52\x86\x91\x40\x4f\xf1\x8e\xc8\x9b\x2f\xea\x9d\x55\xae\xc9\x2e\x73\xdc\x7f\x3c\x01\xdc\xc4\x1a\xe6\xd4\x5f\x1c\xa7\x32\xa3\x69\x6d\xd3\x78\x04\xdf\x7d\x7f\x43\x2f\xb9\x18\xc3\x5c\xa2\x27\x75\xdb\x11\xc5\xda\x2e\xf3\x49\x7d\x66\xff\x45\x97\x42\xd9\x3d\x91\xd5\x66\x37\x3c\x06\x8e\xfd\x06\x3a\xaf\x31\xf7\x61\xed\x7b\x04\xe4\x28\x6e\x09\x64\xfe\x38\x2e\x16\x24\xe6\xc2\xe5\x1c\x65\x9b\xbb\xf6\xdd\x51\x7a\xf6\x25\xf0\xfc\x7c\x71\x7d\xb5\xed\x32\x2d\x0e\x54\x71\xc2\x96\xcf\x0e\x39\x05\xb2\x93\x5a\x0d\x23\x5b\x1c\x01\x53\xc4\x31\xbb\x30\xca\x21\xe2\xee\x64\xf6\xd3\x75\xad\xb5\x4b\xa8\x4d\xe0\xa0\x3a\x77\x9b\x91\xbe\x7e\xe4\x11\x04\x3b\x55\xbd\xa7\x13\x17\x7a\x68\x05\x90\x3d\x76\xba\x31\x89\x35\x81\x99\xe4\xf8\xad\x00\x02\xc9\xe5\xf4\x38\x2f\xf2\x4e\x91\x09\xd5\xa9\x8f\xf3\x65\xec\xfb\xa2\xd7\xfe\xf0\xec\x16\xd0\x2a\xa0\x55\xec\x49\x19\xc8\xf0\x5f\xc7\x88\x38\xb4\x26\xa8\x22\x0e\x64\x8d\xaf\x7b\xf8\x1b\x22\x3b\x28\xd4\x58\x2a\x34\xfc\xfb\x4b\xc3\x61\x1a\x29\x74\x61\xf9\x39\x37\x76\xad\x5a\x43\xb2\x93\x04\x30\x1e\xef\xbd\x98\x6e\xbd\x74\x48\x41\x6d\xe3\xbb\x8f\xa6\x7c\x51\x39\xf5\x45\x8c\x97\xae\x78\x4c\xbd\x89\x22\x72\xa5\xe0\xc5\xb7\xf7\xea\x0f\xc6\xc7\xae\x17\x2d\x3c\x31\xd3\x1b\xab\x99\x08\xd8\x51\xae\x2b\xd5\x6b\x85\x1e\x56\xf6\xcd\x39\xc3\x01\x6e\x88\x60\xd7\x92\xb6\xb9\xc6\xa5\x2b\xf5\xac\xdb\x0f\xb8\x7b\xb2\xe8\x13\x1d\x3c\x9d\x3e\x7d\x3b\x69\xc5\xf5\x04\xfa\x2b\x99\xd1\xbc\xff\x60\x92\x27\x55\x31\x9c\xd6\xff\xfb\x05\x50\x33\xd4\x41\x4c\x18\xd0\xf4\xe5\x36\x77\xeb\x4d\x51\x4c\x24\xee\xcf\xb8\xf7\x69\x6d\xb2\x8b\x91\x25\x94\xbd\xa2\xfa\xe4\x2b\xfb\xd4\x13\x6a\x17\x14\xec\x7c\x21\xec\xd8\x14\x4b\xb9\x70\xff\x04\x9e\xb7\xff\xeb\xd3\xc9\x55\xd1\x00\x22\x8f\x5e\xda\x77\x69\x4a\x1c\x82\x0f\xf7\x1f\x7d\x4c\xd3\x31\x60\xc4\x27\x26\xef\x0c\x8a\x56\xf1\x37\x97\x82\x0a\x15\x91\xd8\xfb\xf8\x9e\x85\x22\xad\x5b\xc6\x61\x7b\x29\x69\xec\x65\x6f\x24\x17\x20\x28\xd2\xf1\x82\x62\x67\x86\x00\x98\x8e\x50\x4d\x3d\xa7\xf9\xa8\x51\xb7\x1c\x20\x86\x5c\x1f\x27\xaa\x02\xe4\x6d\x1d\xfb\x80\x58\x3c\x30\x31\x26\x6b\xee\x28\xd1\x76\x60\x31\xc1\xee\x80\xa6\x20\x67\x32\xda\x65\xc5\x68\xb5\x2b\x76\xa5\x13\xef\xce\xc0\xf3\x49\x2c\x32\x98\x8e\x4c\x5f\xd4\x38\xd6\x0e\xb6\x6c\xc4\x20\x5e\x3f\x3b\xed\x50\xba\xa5\x1d\x4b\xa3\x0a\x70\x74\xfa\x80\xf8\x34\xa0\x06\x95\xb0\x2f\xf0\xbf\x3f\xbe\x4b\xb9\x2c\x9a\xb4\xa1\x72\xf9\xdf\x6d\xc9\x43\x45\x3e\x60\xc0\x64\x0e\xce\x14\x51\xd1\x67\x34\x70\xa5\xc1\xb4\x71\xd1\xcb\x1c\x18\x97\x5f\x45\x7b\x82\xde\x1a\xa3\x0e\xee\x96\x0e\x15\xe9\x43\x70\xd0\xfb\x80\x34\x44\x1d\x89\x76\xfa\xcc\x5c\x15\xa7\x1b\xb0\x85\x7d\x19\x67\x4b\x92\x4b\x98\x29\x38\xe9\x9f\xe7\x2a\xc1\x7c\x9e\xe2\xc9\x7d\xb2\x35\xa7\xe9\x99\xd0\xc0\x16\xb4\xc4\x70\xcc\x73\x60\x24\xe3\x79\xd8\xc1\x2e\x11\xa5\xd2\x17\x6f\xd7\x10\x3a\x36\xd2\x34\xf6\x33\xe7\x2e\x02\x73\x67\x1f\xb1\x2a\x07\xdf\xbe\x7e\x56\xc3\x16\xfb\xe3\xfc\x7e\xf0\x19\xc6\x5f\xba\xa5\x1c\xdb\x94\x29\x3c\x6c\xfd\xa6\x43\xc7\xb2\x16\x91\xf2\x46\xff\xc0\x1a\xd1\xb0\xce\xe2\x2d\xe2\x2e\x10\xaf\x60\x35\xad\xf6\x24\xd2\x3e\x87\x46\xab\x8c\x7e\x96\xc0\x7d\x5f\x39\x24\x79\xc5\x4e\xd0\x68\x89\xfa\xf7\x33\x41\x37\xae\xd6\x8f\x6a\x98\xf1\xda\x8b\x00\xf4\x54\x21\x36\x72\xfd\x0a\xa3\x35\x0e\x66\x98\x72\x51\x7a\x27\x95\x51\xaf\x94\x69\x54\x53\xe1\x2f\x4d\x51\x16\x3e\x38\xaa\xc4\x33\x6f\xec\x18\x24\x53\xec\x32\x3f\x24\x06\x3d\x0f\x4d\xc1\xa2\x97\xc9\x23\xf1\xe6\xf7\x15\xab\x11\x9b\xd4\xa5\x8e\xc4\xf8\xc8\x34\x7e\xe3\xde\x4b\xc0\x79\xcf\x33\xce\xef\xb4\x69\xf3\xfc\xa0\x2e\x2b\x59\xb5\x69\x9e\xda\x7c\x69\x9c\x37\x73\x14\xb3\xe8\x76\xdf\xfd\xee\x70\xd0\xbd\xad\x0b\x87\x12\x7e\x06\x7f\x7f\x80\x66\x11\x8f\x98\x4d\xbd\xb4\xd2\xae\xf1\xab\xd5\x5a\xcf\x06\x3b\x84\x96\x4a\xc4\x54\x95\xb4\x71\xff\x3e\x31\x2b\x59\x25\x7b\xbd\xe9\x3e\xef\x73\xa0\x7d\x82\x4c\x9c\xc8\x28\xbe\xd5\xa2\xc8\xd3\x29\xfe\xa2\x61\x75\xb7\x80\x03\xd1\xc6\x82\xb6\xc5\xd7\xc1\xd5\x75\x71\x8f\x5c\xf7\x21\x6f\x53\xb1\x41\x27\x9c\xd6\xe6\x48\x75\x64\xca\x2c\x5a\x8e\x1d\x6a\x0b\x80\x50\x4d\x77\xcd\x46\x3c\xa1\x99\xb1\x1a\x08\x86\xd2\x40\xf4\x63\xcf\x7e\xa0\x61\x05\x6c\x4b\xe9\xdc\x65\x7f\x9b\xd3\x19\xbe\x6e\xd9\x4b\x82\x64\x78\xc5\xe3\x9a\x8a\xa1\xc9\xbd\x27\x62\x2a\x5a\xe6\x54\xb3\x38\x62\x6e\x70\x7d\xcc\x5c\x6e\xf2\xf5\xc2\xc3\x62\xe7\x74\xd2\x2a\x8e\xfe\x53\xe3\x6f\x14\x03\x4f\x61\x65\x7f\xaf\xbc\x63\x90\x57\x01\xaf\xe9\xd9\xd9\x0a\x26\x5a\xb6\x69\x11\xd9\x32\x89\xe0\x48\xd8\xd7\xd4\x5f\x39\xd0\xd9\xb1\xba\xee\x52\x80\x5a\x29\x0b\xd4\x42\xf6\x1b\xb7\x5f\xad\x7b\x3b\xf1\x72\x40\xef\x77\xdf\xda\xd1\x24\xff\x52\xe8\xf1\xf0\x8a\xe5\x8d\x8b\x1a\x98\xd3\x88\xc5\x1d\xbe\xe8\xd3\xb3\xef\x40\xdb\x51\x0a\xa1\xd4\x99\x27\x41\x95\x50\x41\xcc\xc9\x17\xc2\xaf\x9d\xd3\x14\x9a\x88\xe3\x61\x5b\xf2\xb4\x33\x5e\x4e\xba\xfc\x10\x87\x48\xfe\x63\xd7\xe3\x80\xac\x1f\xbb\xb9\xe5\x0b\xe1\xda\x0f\x86\x29\xc7\x43\xd0\xce\xc9\x5d\x52\x97\x33\x46\x54\x2e\xf3\xdf\xfc\xc3\x1b\x49\x60\xf1\xfa\xa1\x3c\xaf\x3a\xa5\x0b\xa9\x22\x4f\x8a\x93\x86\x4f\x1c\x13\x69\xa4\x8d\x3c\x5f\x02\xcd\xa2\x7b\x76\x77\x03\x4e\x9b\x8d\xad\xb2\xb8\xd4\xc7\x85\x3a\x65\x7e\x05\x32\xfb\x11\xb9\xc9\x1c\xe9\xd6\xcc\xe7\x18\xf5\xb0\x19\xf8\x54\x76\xb1\xa2\xc7\xfd\xb3\x5c\x4a\xdb\x9e\xab\x0a\x65\x76\x01\x89\x2a\xbb\x87\x4f\x07\xfa\x32\x6f\x6f\x05\x75\x85\xc5\x3b\x40\x67\x0e\xe8\x52\x01\x45\xe4\x79\x52\x5a\x2e\x5b\xdb\xd8\x20\xa8\xe2\x61\x57\xea\xa3\x67\xaf\x68\x06\x0a\xdc\x98\x58\x58\xe5\x46\xe1\x13\x9b\x81\x42\x2b\x11\x66\xd8\xb9\xab\x9f\xd7\x27\x63\xa2\x13\x94\x80\x0a\xcf\x3f\x32\x0a\xe6\xb3\x1c\xdd\x0e\xa1\x82\xf3\xe2\xd5\xe6\xd5\x10\xe3\x86\x46\x7d\xc6\x83\x2f\xa8\x97\x5d\xa4\x81\x4f\xd6\x07\x42\xcb\xec\x5b\x03\xb5\x59\x2a\x75\x2d\xd4\x23\xdd\xf1\x97\x4c\x6c\xf0\xf3\xec\x51\x9e\x05\x57\x2d\x01\xe2\x22\x92\x1a\x29\x9a\xf1\x4b\x9a\xaf\xd0\xd6\xa2\x17\xbd\x0c\x93\xbf\x0d\xbe\x75\xc6\xbc\x00\xda\x32\xae\x45\x39\x9e\xc0\x18\x71\xfb\x15\x5a\xdd\xe4\x10\x3f\x15\x9e\xfe\xb4\x48\xf3\x10\xc5\xb1\x70\x00\x1f\x89\xfe\xf8\xc0\x78\xad\x52\xa6\x35\x1b\x7b\xfd\x52\xa9\x77\xad\x1d\x9a\xd0\x34\x81\x9e\x65\xf6\xca\xa6\xe1\x90\x57\x29\x2c\x13\xf8\x51\xbd\xea\xd8\xc0\xe8\x43\xaf\xbf\x25\x5f\x08\x3f\xbc\x59\x33\xbf\x8d\x5e\x6d\xb9\x2c\x95\xcf\x55\xe4\xb8\x2a\x37\x18\x62\xb2\x0a\x7d\x06\x31\xd2\xa7\xc9\xfa\x00\x13\x46\x7b\x05\x2b\x30\xbe\x08\xf6\x70\xfa\x46\xdc\x58\xd3\xa3\x9f\xc2\xff\x07\x0b\xa4\xa9\x0d\xe6\xce\x7d\x99\xbd\x63\xa0\xd2\x8c\x5f\x44\xa6\xa0\x0d\x2f\xd9\x14\x1b\xee\x22\xd3\x27\xa6\x54\x82\x31\x96\xf4\x0e\x85\xbd\x9b\x3a\xb2\x45\x8e\x6c\x0d\x1a\x09\x62\x5e\xa9\x84\x19\xc7\x14\x89\x8d\xda\xfd\x12\x0c\x1e\xd2\x17\x24\xfa\xab\x09\xe7\x01\x0b\xbf\x14\xc5\x6e\x4a\xb9\xa9\x4c\xf6\xd7\x0f\xe9\x82\x95\xb3\xa6\x4b\x76\xde\x27\x67\x26\x81\xa4\x6c\x37\x08\x5d\x65\x7b\x73\x7a\xcd\xe4\x60\xa7\x88\xd9\xa4\x2e\x61\x0e\xba\xf9\x1c\xb8\x61\xea\x60\xa9\x71\x95\x5b\x5e\x52\x27\x7a\x37\x76\x69\xad\x42\xc5\x1e\xcf\x7d\xe1\x7d\x11\x0e\x03\x97\x94\xa4\x76\xf9\xa9\xe9\x2a\xf4\xd0\xc0\xef\x42\x8c\x67\x05\xf3\x47\x5d\xd1\xb0\xb9\x03\x87\x6b\xe8\x4b\xf4\xd9\xb7\xda\xd5\x26\xf6\x69\x20\xac\xc8\x37\x01\xa1\x55\x46\xb9\xd3\x7d\xbe\x10\xfe\xec\xa8\x92\x9a\xaf\x50\xdb\x12\xba\x59\x5a\x6e\xdc\xae\xae\xc3\xa5\x79\x17\x89\x7b\xb9\xed\xb9\x4b\x6b\xdc\x46\x6c\xc5\x2a\x90\x85\xef\x79\x48\x23\x7b\x8b\x5a\x33\xee\xae\x6e\x59\x32\x02\x22\x9b\x5d\x1a\x30\x22\xf9\x6c\xb9\x6c\xab\x8e\x19\xb3\x82\x4e\x5c\xa7\x0a\x0b\x41\x59\xfa\xc3\xa7\x4e\x17\x6d\x67\x19\xf6\x2e\x7c\x29\xfd\x3e\x4b\x94\x4a\x58\x47\xf7\x52\x70\x0b\x01\x8b\x47\x1a\xd7\xdc\xad\xd5\x7c\xd4\x71\xb0\xeb\x23\x16\x0b\xd8\xfc\xfa\x84\x34\x8c\xa8\x60\x26\xf8\x8f\xb3\x9b\x54\x82\xd3\xc5\xa8\x5b\xb6\x28\x71\xcb\xbc\x0d\xf7\xd2\xcb\x0a\xf1\x0b\xb0\x5a\x61\x61\xb4\x3a\xaa\x1d\x2a\x4f\xdb\xcc\x0b\xbd\x2a\xb9\xea\xc1\x51\x1e\x62\x71\x05\xe0\xdb\xde\x57\xe5\x8f\xdd\xd0\x44\xcd\x74\xbc\x25\xb6\x0c\x5e\x1f\x10\x81\x9a\x68\xcb\x17\xc2\xef\x4f\xd4\x85\x9e\xac\x68\x35\x77\xc8\xdb\x98\xb6\x17\xb4\x29\x3c\x07\xa5\x8c\xf3\x17\xaf\xd6\xe0\xc2\xa4\x5c\xc6\x9e\x2f\x1b\xaf\xff\x74\x10\x00\x9c\x5d\x8b\x8f\x1c\x45\xab\xe2\xff\xd6\xd2\x51\x03\xca\x1c\x26\xbc\xca\xb7\x36\x0d\x03\x90\x72\x54\xae\x60\xdf\x27\x5c\xda\x53\xb8\x9c\xe7\x57\xd1\x28\x1d\x95\x26\xfb\xe9\xd3\xfa\xf4\x9d\x4a\x10\x33\x3a\x1d\xc3\x2b\xce\xa5\x5b\x9a\x55\xea\x7a\x3e\x72\x7d\x92\xae\x87\xc2\x53\x5b\x45\x2e\x3f\xdf\xe1\x49\x66\xf8\xe0\x72\x71\xfe\x4c\x9d\x36\x2b\x3f\x75\xc6\xc7\xa6\x72\x93\x82\xc1\x27\xf8\xbb\xcf\x2f\x40\xae\x49\x19\x8f\xb7\xe9\x65\xbf\xfe\x26\x0d\xb2\x86\xeb\x98\xa1\x72\xe2\xe3\x3c\x6e\x8f\x36\xb4\x47\xbe\x59\x71\x50\x35\xe6\x1d\x19\x4d\x93\xb5\xd5\x55\x41\x51\x9c\x4b\xaa\xf2\xec\x2f\x1f\x55\xe7\xba\xec\x68\x6a\x4d\x08\xe4\x47\xa5\x0d\x52\x3b\xe0\x07\xe1\x60\x55\x31\xf3\xe4\x60\xc3\x63\x31\xe5\x3f\x8e\xa2\xbc\x2d\xb1\x46\xf3\xee\x23\x0c\xad\x8f\xb5\xce\xc3\x3f\x6b\x88\x7c\x0b\xdb\xa4\xce\xcf\x2c\x01\x41\x7e\x66\x83\x46\x49\xe4\xda\xea\x93\xba\x04\x09\x8f\xc2\x48\x02\x1c\x62\x35\xe9\x6a\x29\x84\x16\x2d\xa3\xf0\x0f\x56\x2b\x2c\x50\x5d\x0b\xb1\x46\x67\xad\xc1\x03\x2f\xd7\xf3\x4f\x46\xeb\xc8\x4e\x84\x6b\x2b\x92\xa6\xcc\x68\x20\x2a\xa4\xcc\xf7\x2f\x10\xcd\x97\x05\xc4\xf3\xb0\xef\x43\xf5\xf8\x21\x7b\xb4\x7e\x28\xb5\xf9\x48\x41\xde\xe2\x8f\x2f\x02\x13\x68\x47\x6a\x6f\x65\xce\xbb\x00\x7a\xe4\x4a\xd5\x27\x91\x41\xec\x58\x0d\x4c\x12\x29\xf5\x8b\x48\x00\x4f\xff\x65\xbf\x58\x5c\x5c\x71\x55\xc8\x17\x87\x37\xec\x1b\x0e\x59\xb5\xb1\xcd\x7e\xa1\xcf\x38\x7f\x4c\x3d\x3b\x1a\xf8\x25\x91\xb7\x67\xfe\x71\xdb\x35\x20\xf9\x48\x38\x8d\x8d\xc1\xd8\xb8\xa8\x57\xd9\xb4\xf3\x9a\xe7\x73\x3b\xf5\xa6\xb4\xeb\xf3\x88\xcb\x67\x91\xe1\xad\xc5\x11\x00\x9c\x50\xc7\x36\xad\x25\x2a\x5b\xc3\xb6\xa6\xbb\xf8\xa4\x8e\xdc\x2a\xad\xa7\x0c\x3e\xc2\x4f\x5e\xa4\x44\x94\xa7\x4d\x99\xd2\x70\x3a\xac\xe8\xd6\x3d\x63\x30\x2f\x30\x39\xc1\xd3\x6d\x4d\xc7\x08\x8b\x78\xd8\xe5\xe6\xce\x8e\xca\x47\xbf\x21\x61\xab\xd7\x55\x10\x01\xcc\x83\xdc\x84\x4d\x7a\x74\x0e\x5c\x9f\xf5\x38\x58\x50\x4f\xc3\x27\x8e\x26\x93\x3a\x31\xca\x51\x65\x68\x76\x8e\x72\xee\x14\x2a\xbd\xb9\xe9\x4a\xf7\xdb\x6b\x14\xfc\xba\xb3\xae\xe3\xf1\xdd\xb8\x70\x9b\xf3\x7a\x23\x00\x51\x60\x46\xc2\x7f\x38\x96\x7c\x0d\xf1\x51\xbe\x10\x0e\x7e\x57\x55\x48\x38\x60\x94\xb7\xbe\x7d\xc2\xe7\x28\xef\xed\x4c\xa3\x6d\x6a\x81\xb4\x5c\x36\x96\x3f\xdb\x0c\xfb\xda\x72\x93\x1e\x3c\x97\xd8\x46\x0a\x5e\xbf\xf1\xdb\x7d\x62\xab\x2f\x44\x75\x30\xaa\xc8\xdc\xfe\x6a\x8b\x96\x8c\x10\x5f\x62\xc9\xae\x09\x47\x82\xdc\xa7\x44\xb8\x04\x46\x1d\x8b\x00\xfe\x78\x31\x19\x00\x96\x69\x02\x3e\x3e\x0a\xb8\x47\x45\x64\x5b\x81\x69\x72\xd4\x18\xd1\x94\x06\x78\xff\x7b\xe5\x0e\x68\xf6\x81\x98\x90\xf3\xcd\xdc\xba\x50\x9f\xe8\x01\x31\x43\xf1\xf2\x7e\xf0\xba\xd8\xcc\x55\x8c\x5d\xcc\x6b\x9f\xec\xde\x85\x60\x4b\xfa\x81\x29\x92\xd3\xa6\xa5\x72\xd8\xc1\x2d\x9e\x44\x17\x66\x21\x98\x97\x13\xb7\xc4\x7f\x6f\xcc\x5c\x55\xd5\x44\x7b\xb1\x18\x10\x9e\xce\xf0\xb2\x6a\x6e\x4d\x75\x94\x2c\x82\xcb\xb4\x21\xa3\x7b\x41\x9a\x74\x2e\xbe\x71\xd9\xb2\xeb\x57\x46\x27\x54\xfd\x7e\xb5\xe1\xe5\x79\xda\x9e\x2f\x84\x8b\x4f\xa9\x5a\x27\x86\x08\x81\xd6\xdf\xfd\x2f\xab\x02\xce\xa2\x2e\xaf\x22\x32\xf8\x55\x15\xb9\x64\xa1\x37\x6b\xf7\x98\xe4\x63\xca\x14\xd9\xd1\x9e\xe5\x76\x36\x4a\x0b\xea\xef\xf6\x8f\xe0\xd3\xfc\x7c\x50\x33\x85\x3f\x75\x82\x62\xfc\xc4\xc0\x94\x9e\xa1\x7c\xec\x2b\x9f\x04\x0e\x00\xc8\xe7\x1a\x36\x42\x3b\xf2\x02\x4d\x60\xad\x42\x3d\x3f\xee\x0d\x2f\x3e\xa5\xee\xb3\x33\x40\xf1\x42\xc8\x78\xc7\xa5\x62\x01\xb5\x69\xd9\x8d\xd9\x0a\x5b\x5f\x07\x03\x0a\x6e\x76\x1e\x05\xa1\x96\x8a\x78\x7a\x75\x29\x5c\xd3\x97\xa1\x23\x27\x6a\x8b\x52\x20\x51\x90\xdb\x2f\x3e\xe6\x7b\x2d\xea\xed\x89\xe1\x32\x08\xe5\x9f\x58\x9e\xde\x39\x55\xdc\x23\xa7\x85\xa7\x06\x82\x77\x84\x5c\xe2\xd3\x22\xcf\xa6\x47\x6d\x50\x1f\x17\xb8\x5c\xd7\x90\x94\x88\x5c\x67\xbf\x1d\x97\x1e\xcb\x4c\x16\x1e\xdb\x7d\x99\x93\xb5\x94\x83\x82\x49\x5d\x2b\xe0\x76\x04\x99\xad\x20\xa0\xdb\x28\x70\xf9\x8c\x81\x7f\xd8\xa6\x81\x69\x30\xa5\x67\x0a\xea\xda\x7c\xcd\x03\x29\xba\x66\xd9\x73\xdb\xd1\xa1\xc3\x20\x8b\xb2\x15\x9f\xd9\x16\xdb\x23\x11\x1b\x3b\x8e\x10\x18\xbd\xfc\x26\x4d\x9d\x0a\x09\xa8\x47\x42\x48\x1e\xf0\x90\x98\x67\xd5\x6c\xcc\xcb\xdd\x12\xa3\x1c\x10\x93\xfd\xe1\x61\x8d\x71\x8a\x11\x73\x63\xc3\xf4\x4e\x1f\x42\x69\x09\x23\xbe\x50\x78\x32\x66\xcf\x15\xa2\x8d\xab\xbb\xa2\xa7\x86\xb9\xff\x6e\xaa\x79\xb4\xe3\x79\x8d\x02\xc5\x5f\xac\xc0\x68\x65\x2f\x2c\x82\x9e\x25\x84\x21\xe6\x6e\x93\x46\x35\xcb\x02\x66\x51\x13\x74\xc0\xb2\x63\x5f\x02\x93\x15\x6e\x11\xcf\x4f\xdc\xdf\x0c\xd3\x4e\x36\x86\xe3\x69\x2b\x7f\x8e\xa6\x90\xbe\x8b\xfe\x69\xc9\x92\x95\x72\x7d\xb2\x4e\xf1\x04\xcb\xc4\x71\x88\x2c\x33\x3f\x6f\x8b\x26\x67\xa1\x88\x99\x85\x59\x09\x92\x7b\x73\x17\xbe\xa8\xb5\x6a\xa8\xe7\x47\x99\x77\x0c\x74\xe1\x0f\xf2\x31\x40\xd0\x97\x1a\x84\x07\x1e\xd5\x26\xf9\xd4\xb6\x63\x7a\xd0\x57\xe6\x6a\xaa\x80\xd4\xe6\x1f\x58\xc7\x71\x2f\xcd\x38\xbf\x39\x11\xa9\x9f\x91\x8f\xfe\x66\xce\xf3\x0d\xc5\x4b\x7c\x40\x3e\x35\x50\xa2\x69\x90\x87\x7a\x70\x1d\xf8\x4e\x6f\xd0\x65\x49\xa8\x8f\x45\x4b\x53\x62\xf2\xe6\x6e\x52\xfd\x43\x06\xa5\x70\x67\xec\x4b\x0f\x7d\x44\x5f\x42\xb6\x0a\xd2\x67\xe3\x13\xaf\x69\x05\x02\xed\xb2\x71\x6c\xb9\x98\xdd\xbe\x40\x9d\x17\x25\x52\xc7\x79\x5e\xc6\xf4\x65\x7f\xa5\x81\x84\x7b\x68\xc0\x44\x31\xf6\xbb\x5b\x44\x23\x38\x8f\x1d\xcc\xca\x98\x3b\x8b\x86\xd7\x75\xe8\x32\x9e\x51\x09\x1f\xd3\x74\x8f\xaf\x05\xf6\x00\x9c\x22\x11\xdd\xdc\x5d\xd0\x14\x9b\x0f\x6d\x6c\xd1\x38\x9f\x7d\x62\x28\x68\xa9\x12\xa7\xc6\x0d\x30\xc2\x49\x9b\x87\xa7\xe8\x79\x56\x60\x8b\x90\x90\x63\xf3\x44\x31\xb0\x82\x3f\x85\xf1\x8d\x0d\xbd\x71\x67\x61\x2b\xdc\x22\x49\x83\x16\xbd\xa0\xf1\x09\x84\xf4\x6b\x82\xf2\xfc\xda\xf2\x74\xcd\x92\x48\x24\x34\x38\x65\xef\x4c\x4b\x64\x60\x91\x41\xdd\x70\x8b\x1a\x62\xf6\x52\x70\xd0\x04\x07\xfb\xa1\xf3\x79\x89\x3e\x7e\xe6\xf6\xfd\x62\x23\x20\x17\xd9\x3d\x1e\xe1\x07\xc4\xf3\x2f\x24\x27\x7e\xaf\x1d\x3b\x3f\x19\x77\xad\x4e\xb2\x98\x7a\x14\x72\x42\xfa\x9a\x18\x9a\xdd\x4c\x6c\x9b\x20\xc7\x53\x7e\xc8\xe9\xd4\xef\x9a\x09\x3a\xf0\x9c\xc4\x5c\x81\xad\x4b\x34\x04\xa0\x9f\xa0\xff\x24\x38\xe3\x89\x6e\x75\x50\xb6\x4f\x9e\x3e\x63\x4a\x74\xb7\x1d\x27\xf5\xc6\x65\xc0\xd4\x78\xe9\xa5\xe5\x2a\xaa\xf7\x50\x56\x4d\x81\x64\x0f\xef\x49\x5f\x4c\x9d\x78\x48\x6e\xdf\x7f\xdc\x01\xd8\x86\x5c\xc7\x28\xdc\xf2\xb4\xfa\x11\x61\x02\x98\xec\x3e\xa9\x19\xe9\x2b\x52\x8f\x0c\xcf\xe1\x04\x71\x8e\x77\x21\x12\x9f\x73\x17\x80\xa5\x66\x72\xb3\x0c\xfe\xa8\x8d\xc7\x8a\xea\x0b\x28\xe1\x78\x0a\xe3\xf0\x31\x1d\x52\x27\xd1\x67\xd4\x8d\x61\x9d\xbf\x79\x57\x99\xaa\xbb\xc8\xeb\xdf\x54\xfd\xcc\xf3\x83\x93\xef\xcc\xe7\xf3\x85\x70\xca\x4d\xe2\xf8\xad\x61\xd7\x24\xbc\x2a\xb9\xff\x59\x7d\x86\xe7\x61\x37\xd6\xf1\xcf\xec\xbc\x5a\xa8\xa2\x7c\x8a\x61\x0e\x68\xd5\x3c\x2b\xc7\xa5\x9f\x83\x8b\x49\xb9\x52\xa4\x01\x4b\x50\xdd\x6f\xbf\x01\xb5\xbe\xea\x94\xa1\x22\x9f\x38\x4e\x5b\x2d\x31\xd7\xc2\x35\x80\xaf\xb9\x2f\xed\x55\xa4\x08\x2e\xdf\xdd\xb2\x27\x59\x6e\x6d\x3c\xc5\xcb\xee\x3f\xd4\xe0\xc9\x16\x83\x74\x7e\xb6\x27\xf9\xeb\xb8\x51\xf6\x01\x48\x69\xa5\x54\xa7\x64\x25\x85\xce\x0e\xbd\x95\xc1\x2c\x12\x9f\x17\xd9\x23\x5b\x54\xd6\xc8\xb8\xf0\x5e\xf8\x4e\x5d\x53\x5c\x24\xd4\xc6\xb1\x13\x6b\x78\xc3\xe1\x09\xda\xfa\x66\xc4\x27\x0e\xee\x17\xd2\x7c\xaa\x08\x9a\x96\x51\xa5\x22\xa4\x3b\x32\x2f\x68\x78\xa7\xf6\x29\x53\xf2\x0e\x89\x49\x83\xd9\x8f\xdd\x9e\x52\xa3\x0d\x84\x58\x44\x76\xd0\x1e\xdd\x21\xd2\x0a\xcc\x84\xc4\x9d\x5b\x34\x20\x35\xf0\xf5\x05\xae\x28\x37\x57\xa3\x28\x56\x89\x13\x3d\x47\x15\x34\xfe\x6b\xa7\x56\x14\x77\x11\x66\xab\xfe\xf9\xad\x9b\x44\x26\xb1\x08\x79\x1e\x06\x8e\xb2\x06\x9d\x92\x1c\x23\xbd\x95\x00\x7a\xfe\x9c\xbf\x52\x3b\xb5\x98\x54\x10\x52\xc5\xd8\xed\xe7\x34\xb0\xac\x23\x5a\xbd\x72\x0e\xf2\xf9\x53\xe9\xa7\x5c\xc7\x3e\x66\xc8\xf5\xc6\x37\x8a\x1c\x85\x0f\x3c\x9b\x4e\xdd\xa6\x4e\x17\x6f\x6a\xeb\x83\xe9\x1b\xc7\x7c\xcc\x19\x1d\x2d\x12\xc4\x36\xf8\x3c\x30\x69\x11\x4e\x71\x3c\x0d\xbf\x7c\xa9\x36\x11\x42\xc4\xc3\x31\x23\xe0\x26\xe5\xf5\x72\xad\x90\xcb\x7a\x79\x00\xa0\x84\x9b\xb4\x16\xad\xa1\xd6\xf7\x5b\x14\x98\x2b\x45\x3e\xce\xfc\xa6\x0d\xb4\x81\x2b\xb4\xcb\x94\xfe\x02\xef\xd4\x15\xae\xa0\xda\x48\x5d\xa8\xba\x89\x2f\x91\x17\x38\xdc\xa6\xe4\x3f\x98\xae\xc3\x23\x20\x3a\x22\x03\xbc\xfe\xa5\xa4\x67\xe8\xd6\x58\xc3\x86\x5e\x67\xa4\xe6\x07\xa6\x8d\x88\x23\xfa\x1d\xc1\x45\xa2\xf4\xfe\x34\xb6\x6d\x80\xd2\xcd\x75\x6e\x04\x42\x59\x20\x5b\xca\x5c\xf6\x2c\xb0\x1d\x65\x48\x34\x12\x0c\xa4\x99\x75\x78\xd8\xf7\x13\x48\x6f\xee\xde\xe3\x2a\xbd\xab\x20\xd7\x12\x87\x74\xe6\x9b\x40\x83\xd3\xc5\xd8\xe2\x05\xe5\xa3\xa3\x2e\x03\x5a\x10\x36\x72\x09\xe8\xe9\xe4\xc6\xef\x06\x33\x1a\x92\xc7\x8c\x1b\x7f\x7c\xb5\xe5\x32\x38\xf4\x5c\xb9\x60\x52\x01\x5c\xf1\x97\x5f\x02\x7f\x23\x5c\xca\x0a\xe1\x91\x89\xd2\xb3\x39\x4a\x41\xa4\xa6\x4c\x71\xb9\x36\x77\xc2\x58\xe9\x70\x4d\x00\xd2\xfc\xb2\x2d\x54\xc2\xf2\x10\x08\xbd\x51\x3a\xac\xc3\xc1\x71\x9f\x69\xfb\x5c\x6d\x52\x4f\x5d\x41\x9c\x30\x71\x42\x1c\x33\xee\x7b\x11\x32\x48\x4c\x5b\x7a\x11\x3d\x26\x1d\xea\x2b\x01\xaf\x6d\xf8\x55\xde\xbc\x40\xd3\x4c\x40\x2e\x2a\x27\xe8\xa8\x3e\xe3\xb5\x23\xd7\x80\x0e\x56\x9d\x30\xea\xf2\x96\x76\x03\xa3\xc9\x38\x3c\x59\xbd\xca\xf6\xe9\x93\x67\xcd\x9a\x96\x2f\x84\xd3\x9f\x86\xc8\x24\x1e\xa1\xfe\xb7\x55\x42\x8d\x85\x71\x92\xb0\x35\x78\x06\x1e\x53\x7e\xff\xc7\xd4\xe1\x89\xa2\x0d\xeb\x07\x8c\xcf\x5b\x72\x99\x9b\x2e\x83\xb0\x27\xc4\x90\x03\x62\xcc\x37\x1e\xfd\x9b\x00\x2c\xd1\x8a\x5e\x33\x7b\xbc\xf6\x82\xac\x64\x80\xa7\xa7\x26\xcb\x24\x24\xb6\x8b\xf8\x15\xa9\x0d\xda\x67\x2c\x74\x81\xc5\x9f\x8d\x5c\xae\xce\x70\xc5\xab\xe2\xf6\x1c\x6a\xf1\x12\x31\x7a\xf0\x47\x0f\x5f\xae\x67\x2f\x29\x09\x50\x6f\x93\x26\x92\xe9\x29\x0f\xe4\xec\x7f\x2f\xd4\xd2\x08\x0b\x39\x5e\xca\x3a\xa3\x63\xad\x9a\x21\x94\xb1\x1b\xa7\x00\xd1\x27\x4f\xbf\x65\x8c\x5e\x55\xf0\xa7\x10\xbb\xad\x16\xc2\x33\x4b\x92\xe3\xb3\x7d\x2a\x77\x06\xfa\xf8\x76\xb5\x7a\x90\x17\x45\x0c\x7e\xf0\x2c\xdc\x9d\x7e\x9e\x2e\x31\xab\x2e\x72\x12\x35\xcf\xc2\x30\x5d\x67\x0d\x25\xe2\x94\xcf\xcc\x6c\x85\x7d\x1d\xa7\x46\x68\x83\xe0\x5c\xf6\x70\xe5\x32\x6d\xd9\x73\x78\x9f\x74\x7e\xaf\x6a\x19\x20\xb6\x35\x81\x5e\x63\xc0\x19\x6d\xdb\x60\x86\x27\xb1\x22\x9f\xbb\xee\xec\xbd\x2c\xd5\x41\x35\x09\x0d\x3c\x17\x7b\x62\xec\xf9\xe7\x7d\x7f\x0b\xb2\x2c\x96\xec\x1f\x1f\x17\xad\x8b\x5b\x11\x50\xc0\x08\xcf\x6a\xcf\xd6\x8f\x4e\x19\x64\x8a\xf4\x4b\x1c\x13\xe3\x87\x68\x1c\x94\x20\xaa\x8a\x79\x7f\xa0\x01\xa4\x74\x5e\x37\xbd\x74\x70\x57\x05\xf9\xb2\xf2\xca\x3e\xa5\x70\x6a\xcc\x02\x98\x48\xe3\x8f\x03\x81\x36\x3b\xaa\x45\x6b\xab\x91\x40\xb3\x4f\x39\x73\x5b\xf5\x7c\x21\x24\xf7\x8b\x9a\x69\x19\x18\xd6\xf7\x65\x5f\xd5\xf2\x1d\x8b\x20\x9b\x96\x03\x59\x3a\x1c\xb3\xd5\xba\xe8\xc2\x38\xb6\x6b\xff\x6e\xb3\xa8\x26\xbd\xa0\x28\xa6\x27\x89\x2a\xee\xb7\x46\x89\x0d\xcb\x02\x3e\x88\x0d\xbf\x3f\x4e\xe3\x07\xb6\x5d\x2b\x00\xac\x99\x69\x4c\x8d\x21\x10\x4f\x8d\xaf\xda\x21\x53\xbf\x2a\xae\xf9\xc4\xe4\x75\x77\x55\xab\x0f\x58\x60\x4b\x47\x31\xe3\x86\xe5\x40\x44\xad\xad\xc6\xdf\xea\x35\x77\x69\xd4\xdc\xba\x1c\xfa\x9f\x1f\x2b\xb7\x28\xb6\x08\x16\x54\xbe\x7f\x3a\x29\x0e\xae\x45\x0c\x07\x50\xa8\x62\x82\x3f\x4a\x01\xbb\xea\x0d\x21\xe9\x67\x1a\x0c\x1a\x95\x4a\x88\x30\xae\xe6\x58\x08\x97\x5c\xa0\x99\xca\x4b\x45\x0a\x9e\x28\x7c\x68\x57\x92\x0b\x4c\x69\x9b\x11\x5d\x6e\x46\x63\x92\xd4\x50\x95\x44\x0f\x94\xc4\xcd\x9c\x7f\xbe\x05\x8c\xce\xba\xa3\xd5\x86\x85\xae\x91\x71\x16\xf8\x4a\x81\xf0\xc9\x71\xfb\xd7\xbe\x90\x80\xab\x2a\x69\xb5\xe4\xec\xbb\x35\xbd\x21\xee\xfa\x8c\x14\x83\x38\x5b\xce\xfe\x22\x97\xb2\x97\x8a\xa9\x00\x97\xce\x55\x21\x63\xe6\xcc\xe8\x02\xf6\xec\x6f\x8e\xab\x66\x87\xf8\xf1\x40\xc0\x78\xf8\x8d\x11\x60\x0c\xa1\xd8\xdd\x51\xed\x7c\x27\xe8\x73\xf1\xfb\x14\x7e\x89\x1f\x11\x7a\x52\xe2\xd7\x13\x72\x2c\x7f\x47\xff\xb2\x3a\xfd\xfa\xa7\x4d\xcb\x4f\x95\x86\x72\x1b\xd7\x08\x80\x40\x99\x73\xf8\xc2\xed\x2f\x49\x03\xc7\xeb\x57\xde\xb8\x6a\xfe\xd2\xeb\x97\xc5\x73\xaa\xb1\xcd\xa9\x80\x2d\xe0\x40\x1b\x9e\x96\x4b\x4d\x4e\x74\xa2\xcb\xf8\xee\xd5\x43\xc1\x09\xea\x91\xb2\x20\x61\x66\x6e\x9b\x03\x6c\xa1\x7a\x4c\x4a\xc1\x5c\x76\xc8\xe8\xc9\x30\x6f\x58\x5d\xd0\x89\x52\xfa\xae\xec\xb8\xb3\x9f\xb3\x9c\xd5\x79\xf5\x91\xe0\xbc\x1e\x37\xb4\x6c\xd7\x72\x88\xaf\x6a\xd8\xd7\x45\xe8\xca\x2f\x24\xc8\xa1\x6e\x83\xe1\x77\xf6\xcd\x10\xcc\xee\x2b\xd8\xcd\x47\xef\x65\xfb\x10\xcd\x50\x1d\xd9\x12\x45\x94\xbb\x64\x97\xe6\xce\x4a\x98\x13\x27\x03\xd9\x41\xc2\x54\x3a\xbf\x8c\xb0\x5e\xda\x83\xa0\x92\x5a\x78\x6a\x3b\xc0\x51\x77\x4c\x17\x38\xea\xbe\xcc\x95\xe0\x41\x16\x03\x0b\xd5\xf8\x74\x2f\xfc\x8b\x96\x78\x97\x2c\xc2\x83\x4c\xe6\xbf\x5b\x81\x37\x04\xe2\xca\x0d\x9c\x0b\x3a\x59\x43\xe2\x31\x8b\xcf\x17\x45\xf8\x68\x7f\x31\x1d\xf9\x69\x99\xba\x92\x86\x6f\x1c\x3a\x25\x8d\x2f\x90\x14\xb1\xcb\x2c\x55\xab\xb7\x83\x17\x85\x0b\xd7\xa4\x91\x2e\x76\x54\xfd\x21\xd7\xca\xdb\xd8\xe7\xff\x21\x5b\x20\x2b\x35\xa6\x42\x05\x23\xe6\x17\x19\xad\xe2\xf8\xa0\xb8\xf2\x8c\xa6\x1a\x43\xa9\x87\xeb\xd8\x4e\x9c\x95\xae\x9d\xae\xf5\x3a\x19\x75\x6a\xc2\x7a\x26\x7c\x60\x85\xc6\x64\x89\x92\x04\x0f\xc9\xa6\x61\xee\x4b\xdb\x80\x40\x09\x96\xc6\xa6\xc6\xe2\x5d\x70\x1e\x97\x30\xea\x78\x8c\x79\x05\xb8\xf7\xa3\x8a\x83\xa0\x54\xee\x9d\xbe\x26\x83\x4e\x4d\x9f\x11\x57\xca\x04\x19\x4b\x9e\x51\x20\xdb\x6b\xf3\xbc\x56\x19\xbc\x30\x95\xb2\xa6\x81\x9a\x59\xfc\x92\x6e\xb9\xe2\x26\x48\xc7\x1f\xdd\x29\x75\xbe\x89\xdd\x48\x84\xdf\xf2\x0a\x50\x05\xf6\xa9\x59\x8d\x67\xfd\xb9\x76\x49\x1b\xed\x22\x16\xf6\x6a\x4c\x18\x5e\x6d\x7f\x2c\x96\x0a\x8e\x85\x34\x25\xfe\xa1\xf9\xc0\x15\x5a\x85\xeb\xd5\xa8\xeb\x91\xa8\x30\xe4\x29\xf7\xa2\x62\x53\x9c\x7f\x44\x99\xa0\xf0\x93\xba\x6f\xa5\xd8\xfb\x9d\x41\xb9\x1c\xcb\x2d\xae\xdd\xa3\x1e\x9b\x4f\xbb\xdc\x38\x73\x8f\x9e\x4b\x65\x54\xc3\x74\xb4\x8e\x59\x22\x28\x9b\xbd\x66\xfb\xa5\x10\x72\x28\xd0\x7d\xc6\x7b\x0b\x01\xb8\x12\x3b\xd1\xd2\x2a\x84\x7b\xde\x50\xef\xb3\x13\xb1\x32\x0f\x3c\xd9\x7b\x62\xc9\x63\x86\x04\x3b\xdd\x58\x5e\x01\x42\xd4\x88\xf9\x15\xa1\x00\xa8\x5b\xc5\x7a\x1c\x7b\x28\xa3\xc2\x71\xcd\xa2\x8d\x0f\x98\xb9\x60\xa3\x4c\xc8\x88\xab\xdd\x07\x29\x23\x86\xfd\xc4\x00\xee\xba\xfd\x3a\xf4\x94\xd8\xb1\x91\x46\xe6\x13\x5b\x01\x6e\xd3\x47\x3d\xa0\x2b\x9f\xbd\xbf\xbb\xa5\x21\x7e\xc8\xe1\xca\x6b\xc7\x47\xbb\x90\x23\x2c\x20\x7f\xe0\x6f\x67\x3d\x78\xb9\x96\x61\xba\x58\x10\xb6\x44\x65\xff\xc9\xe7\x80\x56\x2d\xb6\xa9\xcb\x1b\xc3\xd3\x56\xaa\xc0\x53\xc7\x9e\x87\x79\x9f\xc8\xc8\x83\x72\x84\x32\x2c\x1e\xaf\x71\x74\x8a\xc6\x05\x21\xc5\x1e\x05\x87\xc8\xbc\x5d\x49\xba\xe8\xc5\x9e\x7c\x21\xcc\x0d\xd0\xe4\x92\x83\x1a\x75\xfb\xed\xb7\x66\x57\xac\x49\xfe\xb4\x83\xef\xbe\x3f\x03\xf0\x60\x0d\xb3\x12\x65\x8e\xec\xf1\xbd\x61\x0d\x05\x05\x2c\x63\x44\xca\x34\xae\x58\xd3\x2c\x33\x29\xd3\xc4\x9e\x57\x0a\xec\xb6\x7c\x21\x7c\xa3\x34\xaa\x21\x29\xeb\xf1\x88\x27\xc3\xc2\xb2\x43\x43\x61\x31\x5e\xb4\xb1\x13\x1d\x81\xa5\xfb\x2f\x49\x4e\xe4\x40\xe2\x61\x77\xeb\x8a\x6c\xc4\x57\x15\xe9\x23\xea\x50\xf7\xb8\xe9\x53\xeb\xe2\xb1\xda\x6f\x4b\xd3\x9d\xb4\x34\xeb\xd1\x17\x40\x27\x04\xfb\x41\x74\xac\xf2\x4e\xc8\xa9\xf4\x9f\x17\x89\xdb\x83\x1c\x0d\x5a\xd3\x67\x7c\xf9\x16\xf5\xe7\xc4\xa9\xd9\xc4\xe4\xd8\xbc\xdc\xdd\xc3\x14\x72\xc2\x73\x90\x2d\x14\x54\xf9\x44\xc6\x86\x01\x83\xcb\xb9\xc8\x4c\xd4\xec\xd6\x4d\x66\x88\xdd\xaf\x5e\x40\xf6\xf4\x46\x91\xb3\x96\x6d\xe4\x71\xcd\x4f\xe4\xcb\x21\xd1\xaa\x71\x2a\x91\xc4\x5e\x8d\x6f\x86\xcc\x64\x30\x4f\x2f\x47\xc9\x0d\x2f\x3f\x6f\x3d\x09\x3b\xce\xd7\x5e\xcb\x61\x40\xa7\x67\x8a\xf3\x78\x7e\x60\x45\xa1\xa7\x21\x63\xbc\xbd\x25\x91\xf8\x9c\x31\x3d\x5f\x08\xe7\xcc\xbd\x0c\x0c\x02\x5c\x3e\xc7\x52\xad\x2e\x47\x0e\x7a\x71\x6c\x11\xde\x97\xf9\xf9\xca\xc1\x32\x8e\xf8\x9c\x0f\xd0\x67\x8c\x9d\xa3\x0a\x00\xe4\x96\x39\xc0\x44\x5f\x9d\x8b\x72\x23\xe0\xc0\xc3\x71\xa0\x4c\x59\x3c\x48\x33\xaf\x93\x61\x3d\xfe\x97\xb5\x63\x54\xb6\x63\x07\x56\x17\x01\xec\xb6\xec\x02\x4d\x6b\xaa\x44\x19\x16\xc2\xb8\x8d\xcf\x7b\xa6\xf0\xfa\xcf\x2f\x46\x8e\x83\x7d\xd0\x41\xcc\xad\x3e\x2c\xd6\x29\x17\x24\x14\x5d\xd7\x27\x07\x2a\x5e\x26\xf7\x31\xb8\xf2\x61\x81\xed\xba\x09\xb9\x16\x66\x45\x62\x37\xda\xbe\xbf\xf5\x98\x38\xe5\x67\xce\x6c\xeb\x68\xe7\xdc\xca\x29\xfd\xd3\x86\xbc\x49\x0d\xc8\xac\xec\x1d\x0f\x4a\xa1\x35\x5b\x48\x56\xfc\xdd\x76\xe8\x7d\xc3\x61\xe3\x2c\x5f\x08\x9b\x7b\xd3\xa1\xad\x93\x16\xe3\x3a\xaf\x7b\xe4\x48\xd0\x75\xad\xd3\x2a\xc0\x53\x64\x6f\x6f\x11\xb5\x45\x92\x9a\x13\x0e\x70\x32\xe6\x35\x0d\x83\x8a\x7b\x98\x11\x39\x6e\x7a\xf4\x20\x28\xc0\x59\xac\x49\x94\xf9\xcf\x73\xba\x6b\xa7\x4f\xea\xd2\x19\x89\xb7\x11\x7e\x75\xac\x09\x54\xd9\xc2\x90\x3d\xf3\x84\x25\x7a\xf3\xab\x1c\xd2\x30\x7a\xed\x33\x1e\x3d\x02\x65\xa3\x6d\x8c\x62\x33\x80\x17\xdf\x4d\x27\x68\xb5\x92\x4c\xb5\x3f\xbe\x5a\x6d\x10\x2b\x10\xbc\xa6\x41\x1d\xcd\x80\x6c\x5e\xb6\x03\xb1\x97\xbe\x32\x0a\x8c\xcd\x18\x46\xd2\xe2\x37\xb3\xf8\xe0\x60\x19\x96\x2d\xcc\x67\xc4\xb9\x71\xa2\x6f\x98\x7c\xdb\x27\xa5\x43\xfe\xab\xb7\x28\xa4\x7e\x05\xda\x91\x64\x5f\x4f\xbf\x0b\x54\xfc\x98\x65\x46\x19\x64\x18\x0e\x80\xc6\x10\x82\xcd\xf7\xc4\x49\x00\x2b\xc1\xb6\x8d\x04\x84\x75\xdb\x56\x45\xc1\xa6\x41\xd2\x6f\x19\x0d\x7d\xe1\x31\xeb\xe1\x86\xd3\xf9\x42\xf8\xe6\x6a\x91\x8f\xac\x0e\x10\x14\xa0\x5e\x9e\x7e\x2b\x95\x1e\x0b\xa7\xba\x33\xdf\xd5\x7c\xdb\x7d\xe2\x50\x26\x54\x2e\xf8\xb8\xec\x57\x39\xcd\xfc\x03\x11\xdb\xc6\x81\x2d\x4e\xa5\x28\x11\xba\xee\x80\xd6\x65\xaf\x11\x57\x75\x6b\xb3\xe3\xe7\xe9\x78\x1d\x64\x71\x5f\xe3\xf0\x83\xa5\xc9\x4e\x6a\xe3\x03\xb1\x8c\xa7\xc9\x95\x4d\x9d\x3c\x65\xd6\x8c\xc9\x33\xa6\x4c\x89\xdf\xee\xde\xa1\xa0\xe2\xf3\x13\x5e\xfa\xb4\xb5\xe9\x4b\x28\x72\x77\x47\x39\xc0\x09\x9d\x21\x43\x41\x04\x4a\x1e\xd8\x2f\x97\x02\x39\x35\x64\x8b\x11\xc9\x2b\x9a\xf5\x1f\xb7\xf5\xad\x31\xe2\x61\xa1\xc1\x74\x72\xc7\x30\x59\xac\x10\x11\x12\x63\xe1\x26\xe3\x99\x11\x69\x2c\x1d\xe3\x3a\x0f\x3c\x5d\xed\x9d\xa8\x95\xfa\x34\xf0\x05\xf9\x73\xda\x30\x49\xac\xe0\xc0\x47\x29\xa8\xa7\x2c\x2b\xef\x39\x00\x3d\xdc\x24\x19\x57\xec\x80\x9f\x9e\xb9\x3c\x85\x75\xb2\x50\x9d\x40\x0f\xc3\xd9\xa3\xb5\xef\xec\xa9\xc9\xda\xfe\xa2\xb3\x2a\xa6\x97\x29\x2b\xa7\x2c\x6b\xbb\x4f\x00\x6b\xaf\x68\x53\x44\x79\x46\x78\x52\xd1\xc0\x1c\x64\x9a\x15\x42\x5d\x02\xbe\xeb\xa7\x47\x65\xee\x2a\xc0\x78\x7c\xa6\x93\xf9\xf7\x7d\x97\x80\x04\x52\xa4\xfc\xb9\x56\xb1\x46\xe7\x17\x79\x35\x2b\x90\x59\xc6\xae\x05\x57\xab\xbb\x64\xc8\x41\x7e\xc2\x32\x4b\x87\xd1\x15\xc7\xa5\xd1\x00\x27\x81\x87\x05\x6d\x9a\xc1\x27\x1d\x71\xfb\x74\x0e\x60\xbd\x16\x91\x5b\x15\xca\x27\xe3\xf6\x0c\x56\xb5\x4d\xb4\x36\x8c\xe7\x34\xb5\x6f\x1f\x4b\x1e\x90\x22\x52\xad\x51\xe1\xa3\x07\x15\x6d\x5a\xa5\xf9\x42\xb8\xf7\x75\x29\x76\x86\x89\x95\x72\xfa\x1b\xa5\xb9\xa7\xc5\x53\xbb\x58\xe3\x34\x4b\x9b\xfa\x69\xe7\x59\x8a\xf7\xbd\xee\x21\x5d\x22\x50\x42\x33\x44\x7f\x23\xfb\xff\xe6\x68\xf6\x6c\x15\xc2\x57\x61\xd2\x5f\x47\x17\x00\x80\x09\xa3\x8e\xf4\xc9\xf1\xea\xe0\xc7\x94\x55\x7b\xc6\xf3\x30\xf3\x76\x87\xf6\x14\x29\x57\xb6\x16\xb5\xd1\x1f\xce\xf5\x67\xe0\x2b\xd5\xcf\x16\x7d\xd0\x5f\x4f\x10\x33\x1c\x17\xff\x9a\xb3\x70\x74\x80\x09\xb4\x70\xf8\x8d\xd9\xd2\x5a\x1d\x05\xe5\x98\xb9\xb0\xb8\x04\xf2\x98\x62\xe0\x09\xb0\x82\xb1\xa9\xd8\x0c\xf6\x00\x16\x15\x7a\x9f\x71\x68\xc9\xdf\x98\x2e\xd7\x71\xd2\x10\xf8\xcb\xa8\x16\x20\x34\xc3\xfc\x8a\x49\x65\x92\x9b\xfd\xde\x20\xf1\xfa\x56\x05\xac\x0a\xe1\xe1\x9d\x27\xa1\x7e\x99\x5b\xcd\x17\xc2\x25\x9a\xf5\xb9\x8d\xba\xbc\x80\x88\x0d\x9c\xb9\x66\x36\x80\x6a\x20\x07\xb7\x71\xb4\xd1\x7d\x43\xd4\x16\xc3\x4e\x11\x31\x86\x3c\xcf\x11\xe8\xf5\xbe\xec\x77\x9e\x55\xa5\x6a\x27\x32\x69\x11\x26\x55\x99\x7f\x7d\x09\x94\x2f\x38\x25\x6a\x6c\xbc\x0b\x80\x21\xb5\xba\xf7\xb1\x4e\x12\x5d\x03\xa9\x80\x66\x15\xb6\xb9\xf4\x50\xf4\xf3\x5f\x76\x8c\x00\x05\x49\x05\x12\xea\xb2\x54\x33\xca\x43\x9e\xe8\x22\x09\x00\xf3\xc0\x26\x95\x3b\x96\x91\x27\x78\x51\xd7\x8f\xb9\x02\xc4\x4b\x17\x37\x14\xcb\xd9\x1b\xc7\x0d\x91\xfb\xcd\xf7\xb1\x90\x0c\xb8\xf9\x6e\x6d\xb1\xaf\x0f\x08\x87\xe4\xca\x6d\xda\xa7\x4d\x7e\x05\xb1\x24\x66\xbf\x7f\x7c\x3b\x20\xbe\x22\xe6\x13\x93\xd4\xe2\x00\x48\x8f\x80\xca\x22\xca\x9d\xe4\x32\xfa\xc2\xc6\x91\x20\x3d\xea\x42\x55\xa8\xa4\x3d\x33\x54\x7b\x59\xfa\x1d\xe7\x0b\xe1\x17\x0e\x80\x81\x14\x71\x5d\x2c\x6a\xf6\x07\xe6\xaa\x10\xe2\x57\x70\x89\x73\x0f\x1e\x3b\x0b\xca\x44\xcf\x21\xae\x45\x18\x5c\x40\x5f\xd7\x2c\x44\x90\x65\x31\xec\xc9\x19\x6b\xe6\xcc\x62\x40\x8e\x40\x9e\x27\x32\x91\xa7\x35\xa2\x74\x09\x63\x3b\x36\x43\xff\xd3\x1e\x11\x32\x97\x20\xa8\x2b\xf4\x50\xa8\x21\x1c\x51\x1d\xbb\x52\x50\xe0\xe7\x3b\x55\xe0\x6d\x9f\x32\xe5\xda\xe8\xdd\xcd\x7b\x4c\x73\x07\xc4\xd2\x79\xae\xd0\x67\xb4\xf7\xaa\x8e\x53\xdb\xb5\x5c\xb4\xa4\x9e\x0e\x8a\x15\x6a\xdb\x3d\x5d\x94\x5a\x31\x2f\x3a\x1c\xf3\x64\x72\x74\xcf\xba\x76\x56\x54\x8a\x9e\x4b\x52\xa1\x2a\x01\xe9\xbb\xf1\xa9\xa5\x3a\xc6\x3f\x3a\x22\x90\x6b\x62\x01\x07\xce\x6e\xea\x50\x0a\x44\x7c\xb1\xab\xad\x60\xbc\x3f\x48\x46\x09\x4f\x40\xb8\xcd\x35\x49\x4a\xe4\xa0\xa4\x13\xb3\x4e\xb3\xb9\x98\xda\x3e\x8d\xc5\x22\x02\x83\x0e\x37\x25\x00\x72\xc9\xcd\x0d\x47\xb8\x12\x46\x8f\x7c\xcf\xa7\x2e\x1c\xb9\xb6\x6b\x4a\xd7\x02\xec\xc7\x61\x6c\x7c\xd1\x7d\x75\x42\xf2\xac\xba\x2a\xd1\x19\x74\xa1\x6c\x88\x08\x7b\x8b\x7c\x21\x1c\xd1\xa4\x86\xdd\x8d\x19\x6d\xe6\x1d\x43\x89\x13\x73\x52\xed\x65\x57\x03\x4c\x27\x75\xab\x31\xf5\x61\xe6\xfd\xc9\xad\xf6\x04\xe5\xf8\x56\xe7\xaf\x13\xf5\xdb\xad\xb8\xca\x11\xaf\x6e\x31\x60\xe5\x68\xb9\xca\xec\xb0\xaf\xb7\x05\x24\xcc\xc5\x80\x59\x58\xfa\x5b\xe5\x6e\x3c\x9c\x6e\xe7\x7a\xc4\x2e\x4a\xb6\x9c\x4a\x17\x67\xcc\x6d\x02\x09\x96\xe7\xf1\xa1\xee\x88\xd7\x92\x6b\x9e\x21\xf2\xb4\xcf\xdd\x05\x78\x9b\xa4\xc4\x5f\x4e\xee\xb2\x12\x74\xd1\x94\x2c\x00\x1e\xf0\x2e\x7a\xf2\x42\xb9\x5f\xa2\xd8\x92\x4b\x3a\xfe\x35\xec\xa6\x42\xdf\xfc\xab\x55\xf0\x9d\x3a\x6b\x7a\x54\x80\x5e\xbf\x23\xbd\x7c\x8a\x81\xcd\x29\x90\x09\xe2\x6c\xc2\x43\xa0\x69\x4e\x03\xdb\xe7\x71\x27\x3b\x7c\x61\x03\xd7\xa9\x66\xe3\x6e\x9c\x80\x7a\xae\x3c\xa5\x0f\x35\x71\x22\x1f\x62\x8c\x39\xa8\x69\x7d\x63\x4f\xb9\x32\x6d\xad\x8b\xb3\x6b\x19\x65\x98\x72\xbf\xd5\xf0\x37\xb3\xaf\xd6\xae\xd2\x2a\x13\xdc\x8f\x83\xc1\x67\x56\x6b\xfe\xa4\xb6\x8d\xcb\x4a\xe9\xed\xb3\x8f\x83\x4c\xd5\x29\x92\x78\x54\x75\x47\x98\x3e\xec\x3a\x03\x9b\xa0\x34\xff\x3d\x77\xbd\x36\x2e\xa1\x9e\xcf\x90\x18\x28\x8b\x2a\xf0\x7b\x4f\xf7\x27\x76\xad\x42\xf1\xa9\xf3\xcd\x2a\x98\xf6\x70\x6a\x4f\xf4\x67\xc5\x9c\xce\x09\x15\xce\x34\x24\xf6\xb3\xce\x6d\xaf\x28\x67\x79\x7e\xc2\x19\x73\x57\x83\x2c\x32\xce\x08\xb3\x23\x6f\x02\x52\x98\x34\x4f\xbb\x44\x1a\x71\x6f\xab\x0a\x1d\x4c\x05\xeb\x70\x3f\x53\x71\x2c\xfa\x1f\xf9\x42\xb8\x66\x71\xf2\xab\x8c\x02\x85\x59\xe3\xe3\xcb\x93\x7f\xa0\x5d\x90\x17\x73\xe5\xbc\x74\x6c\x88\x32\xf6\x78\xec\xfb\xed\x01\x09\x3e\xd0\xe3\xd2\x1b\x7c\x8b\x2d\x5b\x7a\x19\xa8\x16\x7c\x92\x47\xcc\xaf\x44\xf9\x1b\xcf\x96\x3e\x53\x4a\xbe\xa8\x14\x40\xad\xbd\x1b\x1f\x96\x22\x7d\x5d\xc8\xa9\xc5\x6e\x90\xc6\xf7\x07\x29\x80\xc1\xb4\xb6\xa9\x5c\xb0\xa1\xb3\x05\x64\x67\x44\xa6\x86\x7c\x9f\x94\xf6\x68\x78\x40\x5e\x7d\xc4\xc8\xf5\xf7\x9a\x87\x83\xbd\x6d\x61\xe6\x48\xed\xcd\xcc\x03\xc7\x81\xa0\x1e\x2e\x46\xc7\x94\xbf\x5b\x79\xb6\xd7\x60\x41\xb8\x78\x1f\xc4\xf9\x9b\x8c\x16\x85\x5c\xf5\x65\x86\xf2\xe1\xe7\x5e\xdb\xd9\x2f\x3d\x0f\x34\xe9\x2b\x54\x04\xdc\x24\xac\xe7\x34\x2d\x58\x3e\x5d\xe6\xfc\xad\xd8\xb5\xd8\xf8\xcf\xc3\xe9\xf6\x64\x2f\x76\xb1\xd9\x9f\x20\x6d\x5f\x76\x85\xaf\xde\xf5\xd4\x99\x53\xa6\xf3\xf5\x3a\x53\x0e\x3d\x53\x9c\xed\x3e\xe3\xfd\x77\x53\x26\x7e\x3e\x8b\x36\xa1\xc7\x6b\xf7\xdc\x9a\x01\x50\x57\xc4\xa7\x6e\x4c\xb7\xcc\xbe\xbf\x71\x04\xe8\x64\x99\x55\xec\x63\xd9\x99\x0b\xb7\x6c\xd2\x3d\x57\x49\x5d\x61\x4c\x72\xb3\xd7\x2a\xf9\x0e\xdc\xc8\xa5\xf1\xb7\x0d\x8f\x71\xd9\x37\x2c\x87\x8a\xe9\x1f\x3b\x09\x12\x14\x3b\x70\xab\xd8\xe7\xbd\xc3\xcf\x6a\x1e\x0d\xb1\xa6\x6b\x2c\xa7\xf8\x07\x5b\x3d\xf7\x0a\xe1\x04\x19\x25\xca\xf7\xa1\xe3\x9a\x90\x36\x72\xcb\xfd\x3e\xd1\x87\x5a\x1b\xa0\x5e\x56\x0c\xbb\xfc\xe1\xee\x61\xa9\xa6\xac\x1c\x89\x87\x4f\x81\xc2\x01\xdb\x38\xf6\x76\x79\x70\x4a\x2a\x0f\xe2\x62\x50\xe1\xab\x77\x6a\x61\x01\x55\x28\xc3\x40\xf7\xca\xb8\xf9\x6e\xb5\x27\x7d\x28\x01\xd1\x7c\x54\x51\xb2\xb9\x14\x6a\x76\xcb\xa0\xc6\xb9\x05\x49\x18\xf7\xe1\x9c\xc5\x3a\x07\x98\xd5\xa8\x84\xaa\x0a\x1c\xfe\x3f\xaf\xd4\x28\x7c\x98\x79\xdc\x72\x99\xbf\xc1\x3b\xde\x52\xae\x3e\x9e\x8a\x0e\xe1\x6d\xcd\xda\x7e\xab\x20\xaa\x60\x4a\xed\x47\x1b\x96\x85\xab\x64\xce\x73\x43\xb6\xe9\xed\xdc\x80\x99\x15\xa1\x62\x9c\x3e\xf3\x6f\xd5\x10\xa6\x00\x89\x21\xfd\xb0\x9e\x1f\xa7\x29\x9f\x72\xb3\x32\x11\x5d\xbf\xac\x59\x3d\x94\x88\x8b\x5c\x29\x6a\x12\x9d\xa7\xcf\xb3\x71\xda\xbf\x47\x35\x80\xdf\xd3\x60\x3a\xdb\x67\xd4\x0f\x27\x2b\x99\xf4\xea\x70\x81\xf0\xa3\x67\x62\xc5\x4e\xb3\x5a\x41\x0c\xb6\x41\xef\x59\x0b\xe5\x37\xb0\xd4\x1c\xbb\x4d\x03\x3c\xcc\x68\x9b\x35\x4d\xce\x22\xff\xbc\xab\x7f\xad\x7d\x91\x6d\xf0\xe5\x31\x71\x34\xf0\x32\x21\xe5\x86\xc7\x96\xbb\x63\x02\x28\x76\x88\x59\x0d\xf8\x11\x79\xf9\x18\xcd\x3a\x8c\x05\x26\x4e\x71\xf8\xfa\xb2\xeb\x77\x0c\xd7\x83\xbe\x58\x48\xa5\x2d\x9a\xed\x6e\x99\x4a\x4d\xb1\x2f\xad\x03\x10\x40\x95\x11\x85\x33\x67\x7e\xa4\x21\x24\xb3\x44\xd0\x46\xb5\xc2\xdd\x05\x4a\x0e\x92\xab\xc8\xda\x58\x09\xfa\xf2\x8e\xe5\x5b\x30\xec\xe3\x3c\x76\x38\x74\x80\xf7\x40\x0f\xa6\x97\x61\x1d\x57\x88\x19\xcf\x05\xef\x7b\x5c\xe4\xc0\x1e\xea\xe1\x9c\xd9\x5f\xde\x94\x66\x31\x96\x89\x5b\x66\xc4\xac\x08\x8b\xce\xf8\x85\xdd\x3d\x67\xa2\x9e\xfe\xf0\xab\xea\xd7\x36\xb2\x2f\xb3\x61\xac\x96\xf6\x46\x41\x41\xd8\xbd\xf6\x46\x57\x38\xb2\x24\xaa\xe5\xa5\x98\xba\x04\x3c\x9d\xf3\x67\x75\xe6\x87\xeb\x13\x37\x50\xbe\x08\x7d\xc6\x28\x8d\x74\xee\xd1\xc0\xaf\x24\xb4\x80\x42\x5f\x66\xce\x56\xad\x57\xca\xca\x81\x74\xe8\x7a\x71\x6d\x42\x79\x59\xbe\x7c\x55\x7c\x40\xb7\x2c\x68\x56\x67\xa0\x8f\xaa\x58\xc8\x1b\x9c\x1e\x20\x9a\x50\x2b\xe6\xaf\xbc\x61\x55\x9c\x2f\x4f\x55\xea\x5a\x3e\x4f\x18\x34\xf3\xb0\xe3\xda\xbe\xb3\x49\x55\x76\x2f\xb2\xcb\x01\x60\xd3\x26\xb5\x1a\x4f\x19\x56\x8e\x01\x6b\x52\xc1\xcf\x9f\x01\xb4\x6f\xae\x39\x2a\x5a\xc9\xd9\x8f\x2e\x4c\xc6\x5c\xbc\x87\x18\xdd\x54\xb6\x18\x8f\x14\x1c\x5a\x17\x3d\x8e\xcc\xa8\x9a\xc6\x1f\x48\xc0\x4a\x02\xf8\x10\x5e\x35\xf7\x2a\xb5\x59\xb8\x3f\x63\xb9\x51\xe6\xd8\xc8\xcf\x81\x22\x9c\xa6\x59\xe1\x54\xc6\x89\xbb\x40\xf8\x46\x76\x95\x8f\xcf\xbe\xfb\x9c\x58\x56\xd7\x51\x47\xf0\x35\xf7\x9d\x1a\x1c\x7f\x3a\xb1\x78\xfb\xe0\x9f\x17\x35\xc9\x8c\x82\xd5\xb9\x2e\x0e\xf7\xce\x3a\x24\x0e\xe5\x1b\x56\xad\x9e\xbf\x7c\xc1\x8d\x4b\xe3\xee\xff\xb8\x52\x92\x3e\x74\xcc\xe4\x28\x8e\x55\xb2\xd7\x57\xc3\xc8\xc4\xa5\x40\x3a\xc3\x4d\x3a\xaf\x4b\xb3\x09\x84\x39\xc7\x26\x4e\x69\x90\x91\x91\xb2\xc5\xc8\xf6\x44\xcb\x3d\xd3\xd3\x2a\xa8\x2b\xcb\xb0\x85\x4d\xd2\x08\x85\xcc\x38\xdd\xba\x73\x93\xf0\xd8\x15\x5a\x11\x1f\xd9\xad\xb6\x69\xb1\x38\xae\x51\x8c\xeb\xc0\x22\xad\x99\x4d\xca\x2e\x80\x42\xd6\xb6\x5d\xa5\xad\x66\x17\x15\xb1\x9b\xd6\x86\xcd\x3c\x02\xd4\x6d\x2d\x6c\xa3\x4a\xe0\x72\x38\x6b\x66\xd2\x09\x95\x9e\x88\xd9\x7c\x6c\x5b\x32\xa4\x03\xbc\xa4\x9e\x80\xf1\xbd\xff\xad\x9d\xaa\xef\x4a\x6b\xa2\x92\x33\x71\xb4\x70\xf8\x6c\xd9\x98\xf9\x8a\x58\x4a\x53\x3b\xda\x79\xf3\x29\xfa\xa0\x17\xda\xd2\x37\xd0\x85\x2d\x17\x7b\x16\xea\xe1\x12\xe1\xcd\x82\xa7\x97\x5f\xe5\x10\xe6\xd2\xba\x52\xb2\x0b\xff\xf3\x28\x10\xa7\x43\xa6\x98\x89\xff\x4a\x13\xbb\x97\x8c\x3a\xd1\x99\xd8\xf9\x0a\xb4\xe8\xae\x10\xae\x66\x92\xb9\xed\x19\xf5\x39\xdc\xe1\x2c\xfa\xe1\xd2\x8d\xa2\x71\xdb\x85\x85\x20\xf9\x93\xdb\x87\xa5\x1a\x73\x31\x14\xd5\x68\x5a\x9d\xec\xd7\x4a\xd0\x88\x42\x9c\xbb\x57\xb3\xeb\x20\xee\xa4\xce\x4e\x9e\x69\x7f\xac\x55\x37\x7b\xd7\x3d\x54\xb7\x1c\x83\x7b\x97\xd9\xd1\x3e\xe8\xcb\x3e\xf6\xb4\x36\x9e\xa0\x9e\x40\x21\x84\x7f\xbf\x5f\xe5\x99\x5d\x1c\x4d\x04\xe4\x61\x0e\xab\x1c\xad\xdc\xe3\x62\x93\xda\xb4\x4c\x44\x97\x22\xf7\xd1\x43\x2a\x8d\x2a\x33\xea\x79\x82\x80\x7c\xd1\x21\xe0\x96\x08\x25\x80\x1e\x0d\x75\x3b\x15\xb3\x42\x5c\x2c\x97\xec\xd7\xc7\x34\xd8\xf8\xf9\x2e\x66\x5e\x3c\xdc\xfb\xb7\x99\xc2\xc1\x47\x7a\x1d\xbd\x2a\x76\x1d\xf2\x19\x35\x13\x1c\x49\xfb\x31\x2d\x08\xf3\x4d\xce\xb5\xae\xf8\xf1\x97\xf9\xf9\xbb\x3a\xd6\xab\x71\x10\x69\xfc\xb6\xae\xc8\xf8\x82\xed\xd2\xfd\xb0\x08\xc5\x1d\x53\x81\xd1\x63\x5f\x76\xd7\x44\x75\xa7\x89\x53\x4e\xbe\x10\x9e\x9b\xa7\x49\xe6\x03\xcf\xd6\xb4\x6c\x4f\xd6\xdb\x02\x60\x25\xdc\x69\x90\xbf\xe5\x5b\xf7\x0f\x4b\xf7\x18\x62\xab\x94\x1f\x3d\x33\x42\x4b\x0b\x68\x55\x76\x98\x32\x17\x8f\x94\xd4\x72\xdb\x11\x06\xb6\x6d\x3b\x9b\x81\x44\x89\xeb\x13\xae\xdb\x63\xe4\x16\x8d\xd1\x0b\x64\xc1\xf5\x4c\x7a\xef\xb9\xc5\x0c\xc0\x09\x90\xe7\xa1\xb2\x78\x85\xeb\x8a\x7a\x4f\x9e\x61\xaf\x42\x6d\x4b\xb6\xf1\xb2\xcf\x9f\xba\x44\x5d\xb4\xec\x60\xde\xd8\x9e\xc4\xcc\xe9\x22\x66\xae\x9c\x9c\xce\x4f\xba\xa8\x2b\xc0\x57\x67\x9b\xd3\x69\xbf\x8b\xea\x3d\x32\x99\x4a\x27\x4d\x5f\x39\x29\x5a\xb0\xd3\xda\xf3\x3e\xe6\xbc\xc1\xcc\xc1\x97\xd3\x9b\xb8\x33\x60\x94\x49\xc4\x57\xf6\x9f\xee\x6a\x00\x59\xd6\x05\x4d\x51\xc0\x6a\xb3\xc6\xae\x26\x59\x33\x59\xca\xdf\xf3\x2b\x7b\xb5\x28\x19\xd4\x6a\x54\xe0\x8c\xa2\x7f\xfe\xbb\xe3\xe9\x28\x19\x8b\xa8\x8a\xe2\x20\x61\xd9\x6c\xb8\x24\xae\x40\xa2\xed\x18\x15\x15\xe7\xda\x87\xa5\x47\xb2\xae\x14\xfb\xde\x34\x5b\x5b\xc0\x98\x4b\x6b\xf1\xf1\x72\x14\xd7\x4a\x40\xf7\x81\x78\x28\x85\x52\xd8\x71\xd7\x10\x99\x96\x59\x3e\x16\x5a\x43\xdf\x68\x4a\x5f\x7f\x0f\x65\x55\x81\x1b\xe1\x6f\x79\xe0\x9d\xe2\x2f\xae\x15\x39\x06\x57\x0d\x3d\x00\x67\xc8\x81\xc7\xd9\xc3\xe1\x89\xd1\x62\xef\xb9\x94\xb7\x3d\xe6\xfb\x62\x3b\x2c\xc7\x08\xe2\x96\x1f\x98\xa9\xad\xcd\xc4\x38\xae\xcf\xf8\xcc\xc8\xd8\x19\xc0\xc2\x58\xd8\xb6\xbf\x02\xc8\x7a\xc8\x15\x26\x41\xe3\xb7\x41\xb9\xae\xba\x10\x41\x36\xbe\x36\x00\xb8\x40\x9a\x7e\x80\x18\x11\x03\xeb\xaf\x2d\x07\xd4\x4f\x01\xd7\x11\xf8\x8c\xec\xcf\x3a\x92\x00\x8b\xac\x7a\x43\x22\x38\x75\x81\x66\x31\x33\x35\x3f\xb5\x43\x1e\x7e\xb9\x8f\x3f\x98\x7e\x6a\xd4\xf4\xa9\x68\x21\xf6\xf2\x4c\x6f\xb3\x16\x43\x48\x9d\xc4\xe2\x7e\x71\x51\x95\xdb\xf6\x8a\x98\xf7\x2f\x40\xfd\x75\x47\xff\xa8\x65\x07\xf1\xe8\x4b\xc8\xef\xef\x49\x4f\xe1\x69\x45\x8c\x60\x2e\x1c\x22\x30\xb9\x37\x61\x16\x6d\xe6\x54\x07\xf9\x02\x76\x29\x38\x41\x25\x4c\x2e\x7b\x99\x36\x41\xc3\xdd\xc4\xf3\xf9\x92\x97\x5f\x85\xc6\xa9\xfe\xa6\x69\xf3\x43\x2b\x9c\x2a\xbc\xe2\xf2\x8b\xa9\x57\x23\x66\xa3\xb1\xfd\xb6\x76\x95\x5a\x98\x51\xd4\xe7\x1c\x69\xe5\x4b\x97\xfb\xb4\x18\x85\xe4\xcb\x5c\x3b\x85\x17\xd7\xa8\x26\x7d\x04\xa2\x2f\x7d\x72\x74\xba\xd4\x28\x23\xdb\x46\xe5\x8a\xe4\x1e\x27\xc7\xd8\x4b\x12\x0b\xfe\x69\xe4\xd5\x48\x8f\x27\x1b\xc6\xe1\x0d\xf7\x6b\xf2\x83\x98\xa1\xc4\xed\x25\xf3\xc4\xfb\x29\xb4\x97\x8f\x88\x6c\x0b\x67\xee\x9c\xa3\x6e\x35\x16\xcc\xb9\x62\x75\x3a\x0c\x59\x54\x36\x46\x33\x97\x1d\x81\xa3\x26\x64\xd9\xc4\xe5\xa7\xfe\x73\xf3\xd4\xa9\x5f\xa7\x5d\x22\xbe\x3d\xd7\x36\x5a\x7b\x9b\x35\x1b\x23\x0f\xc5\x0a\x56\xb9\xb1\x1f\x8c\x8e\x93\xd0\x5a\xb0\x80\x76\x37\x44\xb3\x2f\x1e\x89\x5d\xd5\xa4\x4f\xb1\xb1\xb7\xa2\x12\x7a\xd6\x20\x97\x6b\x7c\xfe\x50\x13\x6c\xae\xf5\xf2\x8b\xbb\xea\x04\x10\xc7\xb7\x11\x71\x24\x91\x2b\xfb\xd5\xa7\xa1\xe9\x31\x12\x4c\xf5\xb6\x4b\xe5\x26\xef\xa2\xac\x1a\x6b\xb4\xfd\x7c\xf3\x18\x70\x76\x7b\x7e\x3f\x6a\x8b\xdf\x7e\x4d\xa4\x56\x0b\xf9\x8c\x31\x15\xe9\x9e\xba\x1d\x88\x0f\x60\x97\xf7\xfc\x78\x36\xfd\xd5\x25\x80\x60\xe7\x08\x59\xcd\xde\x5b\x34\xbd\x84\x40\x96\x4a\xe1\xc2\x75\x1a\x03\x85\x93\xdf\x25\x5b\x37\xb7\xe2\xb8\x02\x04\x90\x7a\x4f\xc3\xd6\x7e\x4b\x6b\x76\xf0\x51\x6e\xd2\xec\xb8\x67\xba\x66\x15\x4e\xb9\x26\x16\xaf\xf3\x7f\x39\x41\x97\x86\xf2\x1c\xc2\xcc\x8a\xd4\x56\x30\x3e\xbd\x42\x04\xf2\x05\x2c\x88\x65\xe8\xb2\x9f\xba\x48\x43\x44\xd7\x31\xf3\xb0\xe4\x43\x64\x1f\x7b\x5f\x73\x1f\xc0\xc8\xf6\x2b\x44\x18\x2a\x47\xa9\xe5\x39\xa8\x1b\xe4\xc9\x7d\x9b\x9b\x74\x82\x17\x08\xf9\xeb\x13\x50\x46\x43\x29\x6b\x9c\xef\x16\x01\x75\x51\x61\xe9\xd2\xc2\xcd\xab\x38\xd6\xcf\x55\x1a\x26\xe3\x7d\xc4\x7a\x91\x3b\x1e\x84\xe7\xb7\x2b\x6a\x6f\xf0\xcb\xf4\x65\x52\x91\xfb\x90\x05\x30\x04\xc4\x12\x47\x81\x71\x6b\xab\x96\x84\x56\xb0\x2b\x28\x15\xab\xf6\x69\xfd\x24\xe4\x60\x86\xe2\xda\xa3\x63\xc0\x30\xa5\x77\xd8\x09\x2e\x60\xe6\xc8\x46\xa9\x1c\xd1\x92\xff\x29\x93\x5e\xfe\x41\xd1\x23\x9c\x32\x68\xdc\xda\x0b\x47\x04\x4a\x45\xf0\xf3\xaf\x42\x10\xaf\x2b\x9d\xf4\x57\xce\x9b\xa8\x9d\x9b\x66\x20\xb1\x08\xfd\x00\xe1\x8c\xee\x61\x4a\x50\xb4\x42\xb4\x7f\x0e\xc7\x2f\x05\x2d\x62\xbe\x1b\x1f\xd8\x9f\xdc\x52\x8a\xba\x98\xfd\x69\x05\x74\x5b\xb1\x1d\xa5\x9a\x58\xe6\xc1\xc6\x1d\x4f\x8e\x51\x81\x92\x77\xb8\x1b\xce\x81\x5f\x6c\x1b\x0a\x0a\x59\x17\x97\xb9\x1b\x60\x5f\xf6\x97\x47\xd2\xb0\xaf\xe9\x53\x64\x2d\xb2\xb7\xa8\xf2\xf1\x12\xef\xf1\x83\x8b\x39\xfa\x2c\x14\xb4\x4f\x5c\xd6\x0b\xe1\x77\x6a\x80\x32\x44\x5c\xbe\xad\x0b\x7d\xb9\x51\xcf\x0c\x56\xed\x42\x6e\xb7\x7c\xf1\x36\x11\x73\x57\x52\x9b\xc2\x42\xaf\x70\x75\x0c\xf7\xf6\x31\x23\xb2\x25\x19\x5d\x68\xfd\x4d\x11\xb8\x56\x57\x50\x8f\x18\x7e\x4c\xd3\x9c\xa1\x31\xf2\x7a\xe2\x14\xfe\xf0\x19\x60\x57\x45\x62\x8f\xb0\x47\x66\x83\xa8\x11\x1d\xe2\x58\x4c\xab\x1f\x74\xd3\x0f\xe1\x0e\x99\x76\x65\x2e\x7c\x4e\x1d\x76\x36\x96\x06\x64\xd9\x2b\x66\xea\xdc\x6a\xbe\xc0\xe5\x51\x97\xbb\xf7\x41\x10\x31\xb1\x00\x41\x6d\xda\xa3\x43\xf9\xcc\xc0\xf3\xa9\x23\x15\xd3\xc2\x17\x2e\x82\x32\x77\x0c\x75\x09\x6c\x7a\xb8\x67\x93\xf2\xcd\x8d\x01\xb1\x7d\x99\x7f\x38\x0d\xa7\x7a\x62\x5a\x7c\xbe\x15\xb4\xe9\x3d\xec\x14\xed\x86\x80\x95\xbd\xe4\x90\xc2\x1b\xf0\x36\x81\xbe\x1e\xaf\x18\xa3\xcb\x00\x22\x27\xb1\x92\x0c\xd7\x6e\x8e\xfb\x2c\x26\x65\x96\xc0\xc4\x96\x2e\x02\x25\x18\x50\x4c\xca\xee\x78\xbe\x09\xe0\x02\x6c\x51\xdd\x7c\xa4\x45\x25\x95\x15\xea\xb9\x50\x90\x78\xc7\xcb\xc3\x61\x89\x8f\x7d\x89\x83\x0c\x3f\xfa\x70\x9c\xe8\x73\x0a\x14\x3f\x7d\x9f\x3a\x27\xca\xdf\x3a\x12\x52\x79\x57\xdd\x0f\xc6\xd8\x09\x93\xf2\xac\xe6\x8c\xec\x52\x51\x17\xf3\x04\xf7\xce\x45\xc0\xb9\x1f\x39\x62\x52\x1e\x7d\xdf\xe7\xd7\x80\x78\x50\xa7\x44\x52\x52\xb2\xa5\xbb\xb4\x3e\x29\x76\x5d\xec\xfb\x93\x66\x83\xe5\xfb\xe1\x03\x9a\x39\x6f\xe0\x91\x28\xe3\x76\xb0\x6c\x9d\x87\x77\x0c\x4a\x3f\x62\x4e\x68\x56\xc4\xfc\x19\xf7\xeb\x20\x1c\x25\xf6\x1a\xef\xbe\x7f\x5b\xaa\xd5\x0a\x3e\xa3\xa0\x3f\x38\x5e\x23\x53\xe3\x6e\x2a\x26\x48\x3c\x7e\x7d\xd6\x80\xe2\x7b\x65\xe9\x36\x93\x6d\xd9\x0d\x85\x90\x58\x27\x65\xc2\x45\xea\xc2\x03\xe9\x14\x34\xc6\x5e\x89\x46\xa6\x94\xe2\xf8\xf5\x6e\x15\xe4\xb0\x2e\x39\x17\x0e\x1d\x22\xb0\xc0\x2b\xe3\x40\x91\xec\xe9\x3b\xf6\xa5\xc2\x48\xf4\x4f\x82\x15\x96\xbb\xf1\x91\x21\xf2\xa8\xe2\x6a\x28\xd1\x8f\x72\xeb\x14\xf4\xc8\x0d\x7c\x46\x24\xed\xad\xd0\x67\xfc\xf1\x70\x12\x34\x1d\xa0\x00\x17\x9e\xda\xa1\x72\x0c\xd2\x56\x6c\x2b\x35\x8e\x8f\x37\x56\xfe\x7f\x9c\x13\xa3\xca\xa5\x59\xc3\x62\xfa\x24\x8a\xbe\x5e\x8c\xc6\xbf\xf7\x16\x6d\xf4\x54\x63\xc4\xe5\x76\x54\x22\x82\xcc\x19\x18\xf3\x88\x2d\x9c\xc7\xc2\xa9\x2c\xfb\x9d\xf3\x50\xd0\xd3\xc5\x3d\xd1\x7a\xbc\xf7\x6e\x58\x90\xc4\x4b\xf8\xff\xcd\x13\x61\xef\xba\x85\xf9\x95\x85\x65\x5c\x97\xe5\xa1\x06\x5f\x2f\x1c\xd7\x9e\xfb\x80\x2b\x9b\x15\x70\xc5\x95\x44\xf2\xeb\x91\x6d\xea\x61\x17\x71\x89\x2a\x9c\xf1\xf7\xc7\x24\x7c\x38\x8b\x70\xa4\x4e\xd8\xfa\xb0\xa6\xfe\xe8\xd4\x6c\x12\xeb\x1a\x18\x57\xd5\x54\xb4\x72\x29\xf3\x2b\x5d\x52\xc2\x71\xb1\x66\xdc\x82\x79\x4b\x26\x61\x99\x64\xee\x6b\x1f\x24\x9f\x86\x2d\x1c\x62\x1e\xd8\x39\x12\x14\x81\xd1\x8f\x89\x5b\x16\x25\x6a\x78\xea\x16\x1d\xc8\x24\xba\x03\x92\x5d\xf2\xf5\x91\x1a\x3f\x58\x9a\xd9\x24\x2c\xde\x4c\x79\x33\x18\xe2\x22\x71\x85\xeb\x1e\x52\xab\xc8\x24\x8c\x2b\x3c\x8b\x51\xdd\x7d\x5b\x15\xdf\xd6\x5c\x0f\x72\xcd\xef\xbd\x2f\x4d\x09\x2a\x34\xf0\xc4\x18\x3a\xfc\xe5\xf1\x04\xd5\x4f\xb9\xa5\xe4\x85\x83\x74\xe1\x19\xa7\x86\x5c\xa1\x1e\x11\x56\xdf\x52\x77\xd9\x89\x4b\x25\x3e\x4a\x23\x48\xec\xbc\xef\xdd\x2f\x4a\xdc\xc5\xf3\x97\x2e\x05\xe0\x83\xcf\x96\xd2\x1b\x4f\x7a\x78\xa7\x0b\xfe\xf9\xb3\x61\x55\x2a\x12\x38\x81\xf1\x73\x7d\xf5\x95\xfc\xc9\x74\x06\x16\x17\xee\xe7\x0c\xa3\xad\xe9\x8b\xf5\x69\x50\xae\x24\x05\xe5\x97\xb7\xa4\xbf\xd9\xf1\x2b\xb4\xa8\x71\xaf\x73\x63\x37\x0f\x95\x9f\x5d\xb3\x91\x9b\xb8\x56\x65\x3f\x78\x19\xea\xf3\xc6\x36\x93\xfc\x94\x3d\xf0\xca\x70\x10\xfc\x1d\xea\xe1\x6e\xa1\x18\x96\x7d\x3a\x07\xc9\x97\x48\xaa\x04\x84\xe3\x80\x3c\x93\xb0\xcf\x17\x87\xe2\x47\xce\x02\x3c\x01\x73\x35\xdd\xce\xd9\xa0\x55\x66\x11\xaf\x2c\x8c\x07\x0a\x7d\xd9\x29\xaf\x6b\x67\xb0\x6d\xd2\x0a\xb5\x89\xe7\x48\x0e\xd4\x9f\x4e\x03\x6a\x06\xe6\x2a\xd9\x02\x98\xd1\x93\x2f\x84\xbf\x5d\x0c\x1e\x28\xb7\xb9\x23\x75\x1c\x37\x53\x46\x5c\x70\x09\xb8\x4a\xf1\x75\x93\x56\xa4\xf9\x30\x3e\xb6\x63\xd5\x2b\xd8\x4b\x59\xf1\x16\x70\x91\xea\x42\xae\x07\x19\xa6\xdf\x59\x03\x50\x41\xb4\xcc\x7b\x22\x59\x02\xd4\xad\x3d\x1f\x3b\x31\x00\xf3\x12\xe0\x6e\x49\x5c\x0f\x33\xbe\x57\x5b\xa5\xef\xec\x92\xf9\x2b\x97\x14\x6e\x8c\xb7\xbc\xa3\xf9\x0f\x7a\x5c\xec\x24\xc6\x9f\x18\xff\x33\x41\x3f\x42\x6a\xd4\x8b\x81\xc0\xb9\x21\x2d\x52\xfc\x22\x60\xae\x84\xeb\xdc\x33\x33\xbd\x66\xaa\x2c\x4a\xd4\xd3\x50\x28\xe3\xc4\x33\xc9\x21\x2d\xba\x0a\x3c\xc0\xd6\x34\x3c\xa3\x8d\xba\xb8\xba\x8a\x2c\xd1\xb6\xcf\xbc\x54\x6e\x60\x87\xd8\x3d\x79\x16\xf0\x0b\xfc\xd3\x3e\xcd\xcc\x2c\x48\x0c\xc0\xae\x2c\x82\x4e\x03\x93\x22\x3a\xeb\x5e\xd5\xb8\xd6\x7c\x0b\x22\x39\xd5\x2d\xf4\x65\xe7\xb7\x36\xc7\x07\x0e\x37\xd0\x90\xfa\xb0\x73\xda\x44\x3a\x6a\x52\x97\xab\xe2\xc5\xc1\xe2\x77\xb5\xab\xd4\x6a\xb0\x02\xb3\x5f\xe7\xf6\xdc\xc7\xee\x4f\x67\x03\x25\x44\x58\x09\x75\xc7\xfe\xe8\xd1\x8b\x98\x71\x46\x45\xec\x2e\xe2\x57\x52\x6e\x93\x53\x87\x49\x55\x44\xcc\x48\x89\x67\xfa\xae\xf4\xf9\x40\xb5\x1a\xd7\x2e\xe7\xa7\xa5\x31\x7a\x48\x5a\x01\xa7\x56\x89\x02\x69\xad\x7f\x91\xf8\x51\xa7\xc0\xc4\x04\x23\x0f\xe7\x4b\xc2\x5b\xce\xb8\xe4\x4e\x6d\x6a\x4a\xaa\x3e\x95\x3a\x6d\xe1\xa6\x63\x6a\x5e\x56\xc1\xbd\x45\x6a\xdb\xa8\xb1\xdd\xe4\x0e\xd0\x86\x51\x81\x4f\x4b\x25\x19\xfd\xef\x58\xac\x61\x12\x50\x0d\x43\xaf\xf8\x91\x45\x55\x6f\xf3\x89\x7e\x89\x72\xbd\x51\x79\xcc\xe7\xbe\x74\x48\x32\x7b\x2b\xd8\x89\x5e\x75\xee\x93\xa1\x68\x16\x2e\x13\xf6\xaf\x3b\x44\x0f\x35\xbf\x8a\xd6\x09\xd6\x29\x43\xe1\xde\x5c\xfa\xee\xa6\x75\x74\x4c\x9e\x32\x65\x8a\x9c\x4d\xce\x3b\x09\xed\x13\x09\x75\x2d\x24\xa6\x2f\xff\x31\xb7\xc1\x94\x36\x60\x62\xd9\xe8\xe9\xf5\x5f\x2e\x50\x67\x0b\xb2\xea\xdc\xae\x57\x10\xf6\x33\x3b\x8e\x83\x39\x22\xb2\x08\xff\x69\xf6\x63\x25\x18\xaa\xa0\x93\xc6\x40\x2d\x8d\xe4\x23\x79\xb8\x36\x72\xd3\x80\x82\x67\x2f\xaa\x52\x37\x2a\x33\x66\x5d\x9d\xde\x16\xee\x78\x29\x27\x11\xde\xa6\xf9\x10\x74\x72\xb1\x4b\x46\x94\x7f\xc1\x9d\xaf\x4b\x5f\x70\xda\x23\x94\xb7\xb2\x58\x33\xc6\x9d\x3a\x6b\xd6\xd4\x18\x00\x32\x08\xe0\xea\x70\x94\xf0\x60\x51\xca\x6f\x3a\xab\x78\xc4\x3e\xc7\x73\x1a\xaf\xa5\x6b\xf1\x8e\xb6\x0e\x89\x66\xfa\xee\x8b\x49\xf5\xcb\x84\x94\xca\x26\xc0\xf4\xa3\xa6\xa9\x2a\x9e\x56\x65\x41\xed\x61\xb8\x45\xa6\x8f\x1a\x02\x52\xa9\x62\xbe\x10\xde\xbc\x60\xa8\x0c\x8d\x0c\xbb\x65\xbf\x82\x05\xa4\x2b\x9b\xd7\xc0\x27\x35\x9b\x0a\x36\x24\x2f\xc0\x9a\x8e\x35\x03\xfc\xa5\xe7\xf7\xe0\x7a\xbe\x10\x0e\x9b\x2b\x1a\xa1\x2b\x69\x91\x98\x15\x14\x74\x83\x17\xb0\xc5\x48\xf2\x05\x1b\x03\x12\x9d\x71\x73\x33\xa8\x7c\x02\x51\xac\x1a\xff\x47\xd3\x2a\x31\x19\xf2\x2a\x32\x9d\x3a\xb2\x7d\xa4\x9e\x6c\x51\x4f\x5a\xb3\x19\x3f\x3c\x23\x67\xc6\xc4\xab\x60\x19\xce\xb2\x23\x7b\x21\x07\x14\x5b\xd1\xc2\x89\x7e\xfe\x05\xcd\x8a\x91\xf3\x4d\x38\x36\x5c\xe0\xf3\x3e\x77\x78\x50\xf2\x80\xaf\xe1\xf1\x6d\xb7\x8e\xad\x96\x62\x03\xbc\x0f\xbc\xe0\x2e\x30\x32\xe2\xf2\xb9\x7c\x31\x3f\xa4\x0d\xf8\x04\x0c\x25\x5a\x65\x03\xcf\x68\x42\x6c\xd8\xf5\x25\xc1\xfc\xec\x3e\x85\xe2\x6d\xf4\xcf\x32\x1e\x5f\x2a\xdf\x1a\xb7\x48\xa9\x20\xc7\x11\xcf\x6d\xc5\x33\xda\x49\x64\xe3\x7a\x54\x6b\x8b\x39\xd4\xdd\x2f\x02\x32\xa9\xeb\x13\x47\xe2\xf4\xb7\x97\x60\x2d\xe9\x50\x93\x21\x69\x78\x71\xf4\xd4\x70\xf0\x72\xb0\xab\xf4\x04\x33\x60\xcc\x6a\x22\x29\xef\x75\x4a\x39\xc7\x74\x06\x70\x5c\xd9\x9c\xd3\xe1\x38\x25\xca\x4c\x0e\xf0\x92\xb3\xf7\x51\x27\xb4\x29\x23\x8d\xf6\x37\x8e\x95\x35\x73\xe3\x96\xb4\x6a\x77\x46\x3c\x0f\x69\xc6\x5c\x4d\x67\x44\x84\x13\xd2\xfe\x9b\x47\x37\xa9\x94\x2d\xae\x10\xfe\xa0\x41\x1c\x6b\xc8\x25\x66\x35\x7e\x85\x17\xbc\x99\x9c\xb9\x35\x25\xcd\xfb\xa7\x01\x2a\x98\x4b\x84\x49\x3f\x8d\xbf\x9f\x4c\x04\x15\x03\xf5\x7d\xea\x48\xa7\xd8\xec\x8b\x29\xfc\x5a\xe0\x14\xf9\xc3\xba\xad\x5d\x77\x6d\x76\x8a\xd4\x26\xbd\xd1\x26\x13\x2b\x7d\xe6\xc4\x74\xf3\xcc\x31\xad\x28\xb8\x5b\xe3\xfb\x3f\xaa\x26\x8e\xd2\x6f\xcd\xf3\x59\x62\x3a\xf9\x13\x3b\x71\x81\xb4\x40\x02\x98\x99\xdd\xa4\x69\x86\x77\x71\xcf\xda\x74\x0d\xfd\x33\xad\xb9\x2f\xc1\x63\x12\x9d\xb3\x77\x87\xd6\xe1\x11\x7e\x17\x71\xdf\xb1\xee\xb7\x68\x25\x18\xb1\xa5\xc5\x78\xf7\x1a\xdd\x62\x8f\x76\xc5\xa0\xbb\xc7\xae\x06\x22\xd2\xb4\x1f\x71\xf6\xcc\xa8\x6d\xe9\x0f\xee\x68\x6f\x9b\x21\x0f\xcf\x4f\x34\x6b\x7d\x83\xc0\x2b\xc6\xf8\xaf\x42\x5f\x6e\xf3\xc3\x22\x4c\x70\x7c\xad\xa0\xd9\xf4\x65\xdf\xdd\x0b\xb4\x38\x08\xf3\x2b\x42\x5a\x35\x53\x18\x90\xce\x86\x2c\xec\x20\x26\x72\x18\xb1\x6a\xbe\xab\x78\x84\xd3\xfc\x4a\xbe\x10\x5e\xab\xe9\x3f\x0b\xd6\x92\x78\xa9\x9f\xb9\x5a\x6a\x0e\x53\x87\xb8\x7c\x03\x86\x3f\x79\x79\x28\xac\x4b\xea\xa4\x1e\xc5\xa7\xf0\x91\x43\xca\x7a\x0f\xee\x26\xe3\xd8\x23\x5a\xe6\x41\xa5\x06\x2d\xd7\xed\xbf\x63\x97\xae\x45\x29\xc6\x94\x1c\xbf\x62\x14\xd5\xcc\xd7\x27\xd1\xb7\xfc\xe5\x84\xa6\x4b\x65\x32\x8c\xc5\x8d\xe5\x9a\x16\x5f\xd3\x6f\x99\xa6\x8f\xe6\xc3\xf1\xeb\x46\x40\xae\xae\x80\x6e\xca\x01\xcf\xd3\x00\x9c\xc4\x91\xad\x31\x00\xef\x7e\x5f\x07\x1d\xf1\x21\xae\x42\xbb\xe4\xb6\x3e\x0d\xc6\x13\x15\xc2\x53\xf4\x5c\xe6\x21\x20\x89\xcd\x08\x2e\xf1\xc9\xad\xfb\x10\x38\xf2\x14\xff\x23\xfc\xa7\x29\x0a\x33\x50\xe3\x9d\x91\xae\x1d\xa0\x1e\xaa\x51\x9b\x96\xb1\xaf\x26\xcb\x5f\x7a\xf8\x32\xd0\xd9\x89\x8e\x3c\x05\x5e\xfe\xeb\xd3\x22\xbd\x5d\x8c\x5d\x07\x52\xee\x72\xf9\x9d\x43\xc1\xb1\x2a\xb4\x02\xf3\x85\xf0\xcc\xcb\x23\x40\x8c\xf4\xa3\xed\x48\x6b\x15\x01\x77\xfe\xd5\x69\x91\x7d\x2d\x43\x16\x23\x0d\x63\x74\x63\xd8\x59\xa0\x73\x2a\xa8\x03\xfc\xcf\xe6\x6a\xcd\x2c\x86\x88\xdd\x85\x92\x4d\x6e\xbe\x24\x09\x50\x4c\x5a\x74\xf5\x19\x2f\x6f\x54\xad\x4e\x49\x6e\x6a\xec\xeb\xdc\x33\x0f\xe4\x62\x2e\x34\x4b\xcf\x4d\x68\x03\x96\xba\xe2\xc6\x0b\x7d\xb9\xfc\x43\xe9\x1e\x30\x65\x62\x47\x67\xfe\xb2\x1d\x7a\x31\xd8\x36\x46\x65\x8e\x32\x09\x4b\x03\xae\x68\x38\xec\x18\xb2\x39\x3f\x40\x14\x94\xdf\x7e\x5e\xe3\x08\x31\x2a\x1b\x47\x61\xeb\x30\xf5\xce\x4b\x94\x61\x24\xc6\xe8\x17\xbf\x20\xb6\x31\x37\x82\x30\xed\x20\x4a\x68\x3e\xa1\xc9\xc4\x98\xd4\xf5\x48\x22\xbf\x6e\x7c\xfc\x75\x95\x01\xf9\x34\xca\x65\x3e\xbb\x52\xa5\x95\x75\x5c\x46\x31\x7e\x38\xfb\xe3\x13\x7f\xd3\xa0\x8d\xdf\xab\xf1\xee\x12\x40\xef\x43\x75\x6e\xfd\x23\x9a\xa2\x8b\x5b\x60\x89\x1e\x05\x3c\x41\xff\xfc\xd5\x5d\x43\x60\xb2\x93\x2f\x84\xdf\x7b\x36\x1d\xc3\xb8\xf7\x16\x67\x86\xbe\x76\xc1\x28\xa1\x47\x4f\xfd\x4a\xc3\x88\x22\xbc\xf8\x71\x4d\x5e\x00\x5b\x98\xc9\xf4\x54\x3f\x99\x0e\x3e\xa3\xc3\x8c\x39\x52\x58\x82\x25\xa6\x9e\x16\x13\xf1\x45\x94\x5a\x8d\xc8\xcc\x15\x03\xd3\x43\xef\x32\x15\x24\xde\x81\x8b\x00\x60\x5e\x52\x65\x34\x1a\x54\x31\xe8\x89\xd9\x2e\xc6\xef\x87\x4d\xd6\xce\x26\x66\x13\x14\xbb\xff\x34\x28\x8f\xf6\x65\x4a\xc3\x40\x5a\x88\x84\xa0\x74\x61\x9e\x16\xd9\x84\x9a\x83\x38\x2e\x0e\xcc\x1b\xa5\x5c\x8e\x1b\xa4\xc8\x72\x17\xae\x16\x2d\x70\x5f\x20\xc0\x32\xbf\x9e\xa9\xf6\xb9\x34\xe2\x50\x9d\xd0\xd9\x6d\x52\x44\xa2\x0b\xb1\x12\x4f\xe2\x9e\x04\xba\x4b\x0e\x71\x89\x13\x38\xf9\x42\xf8\x85\x87\xd5\xd2\xb1\x51\x17\xa7\xac\xf0\x8a\xe4\x42\x0d\xf2\x52\xc3\xcc\x21\x62\xa8\x16\xae\xeb\x84\x32\xda\xae\xcb\x3d\x97\xf3\x85\xf0\x57\x40\xf4\x5e\x65\xe3\xbc\x45\x6d\x6b\x1c\x12\x5c\xc4\xd2\xe9\x65\xe5\x23\x5a\x9a\xce\x15\x55\x2d\xf9\x6e\x73\xab\x1f\x1f\x09\x5a\x8f\xc0\xe2\x96\xfb\xdb\xbe\x93\xd0\x4f\x68\x91\xc4\x65\xa5\x7b\xbf\xc2\x09\x47\x2b\xde\x46\x66\x85\x88\x4d\xff\x89\x27\x93\x3f\x30\x49\xa2\x67\xdd\x32\x07\x0c\x8f\x50\x8f\x9c\x68\xe4\x2e\x79\x55\xe4\x62\xd7\xb6\xcd\x8a\xee\x21\xd8\xa5\x09\x69\x12\x97\x78\x7e\x02\xde\xc8\xdd\xf3\x9c\xca\x27\xcb\x36\x45\x1c\xb4\xf4\xcc\x4b\x9a\xbb\x95\x4d\xbb\xb0\xd2\x45\x5e\xf8\x8a\x22\x01\xce\x68\xcb\x17\xc2\xa3\x6f\xa9\x45\x59\x41\xe2\x11\x64\xe7\x89\x90\x68\x12\x66\x72\xe3\x86\xf0\x9b\x39\xbd\x15\x6a\xda\x81\x27\xd4\xe2\x45\x90\xb8\xcf\xd5\xc5\xe1\x99\xdc\x94\x5f\x7e\xf3\x0a\xad\xf8\x70\x88\x10\x66\x95\x79\xec\x95\x7a\x9f\xd5\xf3\x51\xd1\xe6\x2c\x10\x81\xa4\xaa\x3d\xaa\x42\x43\xe0\x14\x19\xb6\x6d\x2e\xab\x3a\x41\xba\x8c\xaf\x8a\x32\x52\xc4\x78\xdf\xf4\x8f\x87\xd3\x1f\x56\x62\x18\xfb\xb4\xcb\x55\x8a\x3c\x33\xd7\x26\x8f\xa0\x24\x9e\xd9\x72\x57\x13\x5c\xa0\x5e\x8d\xf8\xc8\x4e\xe8\xe4\xce\x31\xed\xa1\x22\xd3\xa7\xb1\xf1\x7d\x78\x66\xba\x12\xbb\x9e\x3e\x8d\x67\x77\x8b\xf8\x7a\xf5\x51\x19\x90\x4b\xf2\x85\x70\xc0\x80\xf4\xaa\xb4\x58\x50\x8e\xad\x96\x3e\xb3\x59\x0f\xc2\x5c\x66\x47\x2a\x15\x65\x77\x03\x33\x2e\x5a\xec\xc4\x31\x48\x3d\x7b\x60\xad\xe6\x19\x8a\x5d\x5c\x47\x89\xd4\x43\xf6\x77\x6f\x68\x3b\x21\x5a\x0f\xb2\x7f\xdd\xbb\x52\xed\xab\xae\x0a\xb5\xe3\x76\x63\x66\xef\x8a\x0f\x47\xbf\x3b\x3b\x5f\x08\x73\x1b\x40\x53\x55\xc8\xbc\xca\x41\xb5\xb9\x33\xc9\xfc\xd7\x07\xf1\x2c\x2d\x73\x7a\x98\x02\x1c\x76\x82\xa4\x59\xf7\xca\xb1\xb0\x57\xa3\xc4\x4e\x52\xf7\xec\x70\x1f\xf2\x20\x1d\xca\xdb\x07\xa2\xb2\x7e\x76\x80\xe8\xcb\xd4\x6c\x91\xfd\x3d\xd4\xf9\x37\x15\x1f\x78\x60\x3b\x78\x2a\xc9\xd8\x66\x4c\x9e\xce\xf1\x10\x6d\xe9\x65\xc1\x41\x03\x15\x64\xf1\xdc\x99\xf7\xe7\x9e\xda\x0e\xce\x1f\xda\xe5\x72\x1a\x4f\x21\x7c\xe7\xf6\xa1\xf1\xab\x5c\x20\x7d\x4a\xf9\x9e\xcf\x3e\xad\xdb\x5b\x92\x32\xc3\x9e\xb0\x4a\x7e\xea\x55\x50\x03\xf6\x70\x3b\x29\x31\xf5\xf8\xfd\xde\xc1\x32\x4d\x2a\x91\x1e\xbe\x86\xdf\x7b\x5e\x11\xda\x2a\x71\x80\xc8\x7e\xfe\x49\x11\x7a\x97\x8b\xd0\x6b\xfc\x80\x09\xc7\x8b\xe5\xc4\x71\x90\x8b\x2a\x08\x3b\xc4\xb5\x20\x4b\x1a\xef\x68\x92\xc9\x11\x23\x9d\x01\xe2\x10\x34\x63\xfa\xa2\xa1\xe0\xfd\x62\x8c\xb1\x90\xed\xfd\xd2\x1a\xcd\x19\x02\x91\x58\xca\x20\xf7\x35\x69\x33\x73\x3d\xf2\x24\x67\xa4\x7d\x8a\x66\xc2\xc4\xed\x65\x65\xdb\x2c\x09\x00\x5b\x0f\x8f\xd0\xab\x4d\x5f\xe2\xf2\x8d\xc1\x1d\x22\x73\x5b\xde\xb6\xa0\x6d\x7e\x63\x2a\x85\x5b\x93\xd7\x35\x75\x26\xd7\xda\x99\xba\x42\xdc\x4d\xca\x30\xec\xb9\x05\xb0\xed\x41\xcc\xa8\x02\xc9\xdd\xc9\xb4\xf1\xa1\x27\xfc\xdd\xa0\x26\x47\xe6\xf5\x09\x4d\xf2\x8c\xe0\xce\x28\x3c\x6d\xcd\x98\x40\xc7\xd0\xb3\x03\x87\xef\xf4\x5f\xdc\x99\xde\x4d\x9d\xa8\x86\x5c\x61\x0c\xce\x83\xc7\x93\x13\x93\x41\xa4\xd9\xe8\x7d\x97\xbd\x77\xc8\xe5\xda\xa3\x5a\x1f\x10\xd6\x33\x59\x8e\xcf\x8c\x65\xdb\x44\xbb\x67\xd5\xfa\x80\xd8\x36\x62\xd0\x1d\x3c\x03\x24\x65\x1c\xe2\xf9\x94\x56\xf3\x85\xb0\xb2\x19\xc0\x6a\xc6\x47\xc9\x3b\xdf\xf5\x57\x6b\xda\xb5\xd2\x38\x2b\xda\x4d\xf5\x22\xd7\x95\x1b\x0d\x24\x30\xda\xa7\x08\xac\x6f\xa1\x2f\x7b\xf0\x34\xe0\xde\x06\xbd\xbd\x52\xea\xfa\x07\x4b\xb5\x76\x37\xb5\x65\x53\x35\x7b\x72\xa1\x84\xe2\x9a\x66\x20\xe8\x10\x7f\x3e\xa8\xc0\x16\x26\x4f\x6d\xc6\x82\x79\x1d\x3f\x01\xa5\xf2\x9d\xb1\xe4\x84\x04\x72\x22\x4b\xc6\x16\x63\xdb\x11\x35\x34\x13\x72\xe3\x61\x4e\x73\x83\x2d\x31\xa9\x02\xcc\x33\xf4\x55\xb7\xa8\x17\xf5\xff\xf1\xf5\xb7\xf1\x52\x14\x67\xde\x38\xce\x3c\xc4\x10\x44\x44\x40\x40\x44\x44\x96\x20\x01\xe6\x78\x38\x1e\x1e\x45\x54\x44\x44\x24\x1c\x04\x44\xc3\x22\xa1\xa6\xa7\x66\xa6\xce\xf4\x74\x0d\xd5\xdd\x33\x67\x08\x21\x86\x10\xc2\x12\x96\x10\xe2\xba\xae\xb7\x21\xc6\x18\x62\x08\x51\xe3\x1a\x62\x88\x41\xd7\xdb\x9b\xe5\x66\x09\xb7\x41\xc2\xb2\xae\x6b\xf8\xb3\x2c\x4b\x5c\xd7\x10\x96\xb8\x86\x78\x7a\xff\x9f\xae\xab\xba\xeb\xea\x1a\xf2\x7b\xe3\x8b\x83\x67\xce\x74\x75\xd5\x55\xd7\xc3\xf7\x21\x82\xbb\x0d\x7b\x35\xd9\xf3\x63\xdc\x57\x86\x52\xf3\xf6\x1a\x34\x7b\x6a\x47\x7b\x3b\x55\xbb\x30\x34\x41\x3c\x46\xab\x7f\x6c\x6f\xf2\x03\xbb\x7d\x47\x69\xaf\xbc\xf8\xb6\x6e\x38\x3a\x92\x88\xf1\xa5\x75\xb0\x22\x0d\x2e\x5c\x28\x4d\x7e\xba\x42\x5f\xab\xd2\xa2\x3c\xf5\xbb\x05\xf1\x4f\x64\x53\x2b\xf8\x78\xe7\xa8\x46\x4b\x0f\x4e\x8a\x09\xc6\x80\xae\x4f\xa6\xe1\xfe\x9f\x22\x2b\xe2\xff\x38\x30\x14\xdd\xcc\xd8\x4f\x2b\x3d\xe2\x89\xd8\xd1\x9f\x11\xc7\xc1\x56\x5b\xbf\x7a\x79\x28\xde\x45\x05\x5a\xa5\x04\x3c\x9e\xd2\xed\x17\x75\x2f\x8b\x80\x53\x20\x24\x35\xeb\x31\x90\xc2\x05\x3a\x70\xc7\x6c\x83\x9a\x6c\x59\x7e\x8d\x38\x56\xcc\x2f\xba\x73\x7c\x32\x5f\x2b\x31\xe2\xc4\xd2\xc2\xff\xf8\xb8\x09\xcb\x96\xc3\x2e\x64\x2f\x93\x7a\x65\xbb\x61\x6c\x10\xd6\x11\xb1\x89\x7b\xe6\xff\x9c\xd4\xa1\x8b\xfb\x9e\x88\xd4\x29\xbf\xde\x36\xc6\x48\x8a\x4a\x05\x12\x31\xab\xf5\x32\x7c\x5a\xf5\x9a\x2b\x0c\x1c\x57\x82\xcb\xc7\x0c\x43\x45\x6a\x89\xac\x65\x4e\x74\x65\x7d\x7d\x15\x8c\x3c\xf2\xbc\x27\x27\xdd\xc7\x65\xcd\x7b\xef\x0e\x53\x31\xde\xb6\xb5\x31\xe2\xf8\xe9\xb0\xaf\x6b\xe1\x41\xb5\xc3\xf7\xbb\x4b\x98\xa2\x7a\x6e\xcd\xf7\xa2\x4a\x2d\xbd\x69\x5b\x9c\x6b\x73\xa7\x05\x38\x93\x9e\xbe\x3c\x82\x30\x82\xad\x0c\x9c\xca\xa7\xcf\x19\xfa\xb4\x93\x73\xb1\xc0\xb7\x92\x99\x94\xe7\x9a\x3a\xf2\x7f\x1f\xd3\x6e\x20\xda\x79\x91\x24\x84\xa3\xfa\x74\xa2\x1d\xe0\x79\xc4\x92\xa6\x82\xc1\x7d\xc2\xe8\x59\x10\xc1\xf2\x79\x4a\x1c\x99\xc1\x61\xbb\x80\xef\xcd\x8d\x85\x1f\x68\x52\xf8\x21\xfd\xb5\x8b\xf1\x45\x56\xa5\x24\xba\x26\x07\xbc\x86\x78\x15\x36\x29\x5a\x00\x23\xf8\xcc\x32\x74\x10\x89\xf0\x9a\xb9\x12\x57\x80\xc1\xaf\x1c\x82\x37\xc7\x0a\x94\x40\x05\x68\x9d\x34\x04\x6d\x58\x58\xdc\x28\xaa\xe5\xc3\xf3\xb0\x1a\x2d\x93\x7c\xbb\xa3\xeb\x0c\xd9\xee\x32\xb3\xa1\xdb\x1d\x7c\xeb\xd1\x11\x68\x82\x02\xad\x68\xb4\x6d\x76\x1c\xbd\x4e\x97\xa7\xac\x78\x09\x79\xb3\x75\xef\x5e\xa5\x57\x20\xd6\x70\x78\xaf\x66\x66\x9d\x04\xa0\xc9\xd1\x18\x2e\xbd\x7c\xb4\x79\xe5\x0a\x2f\x42\x61\x5f\xff\x96\x91\x5e\x52\xe2\xf9\x61\x32\x01\x0d\xfa\xef\x3d\x75\xa9\xc7\x01\xd3\xc0\xa3\xdb\x8c\xe1\x51\x8d\x0b\xef\x52\x40\xc1\xe0\xaf\x91\x2d\x1a\x73\x2c\xe5\x68\x9e\xf9\xc2\x72\x55\x73\xe4\xa6\x4b\xbc\xf8\x04\x1d\x0b\x48\x83\x48\xdc\xc8\xb6\xbd\x86\xdb\x0a\x77\x6a\xe5\xa6\xab\x94\xed\xc3\xdf\x2a\x29\x97\xf3\x79\x5c\x80\x21\x77\xea\xd7\x4f\xe8\x9c\x78\x72\xf8\x21\x8d\xb1\x11\x30\x43\x40\xf6\xf8\x11\x58\xe1\xe6\x16\x90\x3a\x93\xaa\xbf\x48\x4e\xe7\x8d\x84\x67\x9f\x03\xce\xe9\x7f\xbd\xcd\x90\xe4\x2d\x7a\xd4\x81\xb7\xfa\x93\x05\xc3\xd5\x73\x15\x98\x44\x9e\xfa\xcc\x2d\x2b\x94\x65\xea\x3b\x48\xa3\xa8\x44\x45\x59\x99\x14\x6f\x36\xec\xcf\xa8\xe5\x47\x29\xd0\x0d\x03\x87\x99\xe7\xc1\x6d\x83\x2c\x35\xbb\xfe\x7d\xe3\x8c\x09\xe2\xb8\x52\xf9\x59\x61\x7a\x17\x29\xe0\x98\x45\x8a\xe1\xd5\xb6\xe4\xa5\xf8\xdc\x3b\x79\xab\x65\x3b\xdd\xfb\x14\x6a\xd7\xb1\x1e\x19\xf8\xdd\x22\xc4\x82\x3b\xb9\x53\xa7\x4e\x44\x46\x3d\xf7\x74\xbc\xf1\x6c\xde\x16\x9d\xaf\x4d\x1d\x58\x80\x89\x38\x05\x10\x9f\x58\xf3\x36\xc6\xef\x4d\x9d\x96\xeb\x0a\xfe\xe7\x44\x0b\x5f\xb4\xc6\x5d\x12\x39\x82\xa5\xbf\x7a\xfb\xe0\xd6\x93\xd1\x15\xec\xde\x69\xcc\x5b\xcb\x52\x8e\x1c\xa2\x60\xff\xac\x29\x44\x57\x2a\x7b\xd4\x51\x41\x2f\x58\xf3\xe2\xd0\xe8\x41\xc2\x92\x9d\x59\xbe\x17\xe5\x51\x0b\x46\x25\x9b\x61\xb9\x08\xad\x7e\xcb\xd8\x78\xbd\x5a\x07\xde\xc1\x9f\xcd\x49\x9e\x94\x6e\x2e\x41\xf1\x51\xed\xee\xac\x34\x40\x07\xd2\x10\xd7\x8e\xac\xc6\xbe\x73\x41\x87\x3f\xa9\x99\x47\x21\x9f\x79\x19\x99\xa0\x4c\x9b\xd2\x2e\x7d\x06\xc2\xc7\x5b\xf1\x74\xf2\xe3\xe0\x32\x89\xaf\xeb\xab\xca\xc3\x50\x0f\x3a\xef\x5a\x82\xd5\x62\xe2\x40\x1e\x32\xde\x3b\xcb\x82\xb9\x2d\x94\xc5\x6c\xd7\xa0\x11\xe8\x96\x76\x00\x5c\xae\xef\xf7\xcd\xaf\xeb\x62\xaf\x26\x78\x0c\x23\xbd\x62\x07\xa2\xb0\x71\x51\x48\x00\x5b\xbf\xb2\xcd\x00\x8b\x0b\xcc\xe9\x7d\x13\xb5\x80\x5d\x60\x12\xe6\xba\x82\xb7\x26\xdc\x60\xdc\xa6\x95\x32\x61\x76\x92\xbd\xf0\xed\x49\x70\xba\x8b\x94\xc2\x91\xca\x0c\x59\x9e\x3c\x20\x75\x6e\xfb\x55\x45\x00\x3e\xeb\x25\x13\xa9\x1b\x27\x2e\x92\xa3\xe3\xde\xf4\xe1\xf7\x3e\x95\x0c\x73\xdc\x77\x0a\x24\x82\x53\x99\x37\xe2\x2f\xe7\x22\x9b\x3e\x09\x8a\x0a\xab\x32\x69\x96\x67\x82\x2e\xc3\x5d\x17\xa1\x39\x36\x0d\x35\x64\x05\xfd\x26\x5e\x86\x27\xe7\x99\xc8\x5a\x29\xc6\xa9\x80\x27\xa9\xeb\xd7\x43\xa1\x10\x5e\xde\x52\x99\x4e\x6a\x62\xbc\xaf\x10\xdd\x65\x52\x53\x36\x46\x23\x7a\xa2\x56\xb4\xd5\xbc\xb1\xd5\x17\xba\xff\x76\xfd\xfe\x1a\xcc\x2b\x87\xc9\xbc\xbc\xa1\x7f\xbf\x1f\x0d\xaf\x7d\xd9\xeb\x1f\x16\x24\x4f\xc2\xf4\x69\xea\x70\x3d\xbc\x0d\x61\x69\xc9\x25\x5a\xd0\x99\xf7\x87\x18\x28\x2b\xe6\xc5\x2e\x1c\xbd\xe9\xff\x7a\x1c\xc2\x88\xd6\xe0\x0f\x7f\x7a\xcd\x5b\x86\xf7\x47\xad\x26\xa8\xc5\x48\xb8\x06\x72\xdc\x91\xfd\xf3\x8b\x68\x5b\x7b\x44\xf0\x3a\x67\x1e\xaf\x93\x5c\x57\xd0\x09\x06\x34\x39\xb7\xcc\x6b\x39\x2f\x2c\x90\x9b\xdc\xcf\x15\x04\x97\xbf\x38\x6b\xab\x7e\x38\xcb\x97\x1b\xa5\x63\xae\xae\x0b\xf2\x76\x98\x6f\xc0\xac\x3c\xfd\x97\x07\x0c\x2d\x33\xdb\x96\xa5\xb8\x82\x45\x57\xde\x36\x84\x8f\x9a\x05\x87\x36\x8d\x1c\xef\xb1\xf3\x57\x44\x27\xa4\x0e\x5d\xbf\xdf\x2d\x4b\xd2\x71\x8a\xac\x48\xc2\xb0\x6c\x76\x4a\x37\x0c\xc1\xe1\x71\xc6\xe4\x5c\x57\x30\xeb\x19\x5d\x87\x8b\xb8\x51\xb7\xe2\xb8\xd1\x94\x29\x33\xbb\x20\x68\xa4\x01\xf1\xc7\x73\x06\x84\x4e\xba\xf7\x1b\xfa\x4c\x93\xb4\x4a\x4b\xde\xf6\xc3\x2d\x6a\x58\x7a\x49\x31\x41\x11\x35\x65\xb2\xfe\xb3\x7a\xfd\xb9\x87\x6b\xc4\xe0\x9b\xdd\xf0\xc4\x65\xdf\xf5\xe0\x24\x6e\x6c\x51\x9a\xb0\xab\xe0\xf0\xad\x2a\xce\x95\x17\x5b\x7a\xfb\x9e\xe0\x76\x94\x5b\xec\x99\x90\x44\x03\x87\xbb\x15\x0e\x8b\xce\x1a\xe9\x56\x44\x1a\xb6\x89\x5b\x91\xbd\x85\x39\xc5\xb8\xfb\x63\xc5\xde\x10\x99\x33\xf9\x41\xd1\x3b\x71\xa9\xe5\x2b\x3c\xdd\xbe\xf7\xd0\x27\x44\x0d\xff\xc9\x97\xc5\x1f\x50\xa6\xf9\x68\xc5\x07\x6d\xc7\xa1\x8f\xb9\xdc\xa1\x42\x66\x81\x0f\xed\x85\x4f\xbe\x23\x8f\x55\xe7\x33\x3f\x1d\x1d\xd7\x59\xd3\xdb\x3b\xc2\x25\x99\x74\x5a\xd9\xf1\x5a\xdc\xe1\x55\x69\xf4\x11\xfc\xfd\x93\xc9\x5b\x8c\x14\x05\x61\xaa\x0b\x7e\xfd\x66\x73\x06\x2c\x3c\x16\xe5\x97\xe9\x01\x8f\x22\x24\x2d\x15\x20\x7f\x99\x6a\xce\x41\x58\x83\x16\x3f\xca\xd4\x94\x97\x8d\x5e\x48\x9d\x46\x66\xcd\xa9\xbf\x1e\x13\xcd\x9b\x18\x50\x24\x82\xcd\x81\xd1\xc1\x13\xa4\x56\xd3\x9e\x67\x99\x0f\x87\xe8\xcb\xa2\xc2\x05\xf5\xdc\x8a\x56\xf2\x0c\xee\x5c\x85\xfe\x95\x54\xc3\x1c\x00\x69\x07\x65\xbe\xb0\xb5\x45\xac\x8f\x8b\x58\x07\x2a\xf5\xd2\x8b\x06\xd6\x97\xc5\xd3\x81\x3f\x1e\x35\xbd\x13\x8b\x8c\x48\x60\xfb\x9a\x0e\x7d\x7c\x88\x2b\x4d\xef\x52\xb3\x76\x44\x18\x7a\xd9\xf1\x90\xaf\xec\x13\xaf\xe9\x5a\xd4\x05\xab\x90\xe8\x50\xdc\x53\x43\x24\xbf\x48\x87\xfb\x37\xe3\x5b\x4c\x24\x8a\xca\xa9\x64\xd1\x59\x25\x2b\xc7\xf2\xd2\x1e\xeb\x61\xdb\x18\x84\xb2\x92\xc3\x8a\xcc\x22\x91\x67\x77\x76\xf0\x47\x80\xf7\xb8\xab\xc6\x5c\x8b\xd7\xc2\x1a\x51\xfe\xfc\x2b\xe3\x60\x1f\x79\x82\x84\xb5\x1e\x68\xc1\x06\xa4\x5f\xdc\xb6\x2c\x53\x1c\x64\x0a\xdb\x8d\x01\x8a\xdb\xb4\xfd\x6a\xc4\xc4\xb8\xf9\x43\x35\x14\xb7\x6d\x55\xc7\x74\xf5\x66\xfa\x0d\x4a\xde\x80\xd3\xa2\xa2\x2d\xd3\x7f\xba\x31\x1e\x2b\xf1\x04\xe6\x2a\x73\x6b\xdd\x74\x41\xf6\xa8\x0d\x8d\x8d\xd4\x6d\xe7\x87\x69\x65\x8d\xc5\x4b\x13\x9c\xc9\x51\x7b\x92\x7f\x32\xcf\xab\x79\xa9\x5d\xfc\xbf\x2e\x1a\x24\xdc\x32\x30\xbb\xa3\xeb\x72\xd2\x63\x08\x65\x55\x67\xb1\xf4\xc9\x92\xb7\x0c\xad\x75\x49\x30\x36\x24\x54\x02\xcb\x38\x3a\x11\xa7\x18\x54\x02\x6f\x98\x65\x28\xb2\x49\x30\x18\x90\x14\xfe\x7f\xd3\x91\x52\x47\x8c\x3b\x15\xfd\xd5\x75\x2f\xaa\xf2\x07\x63\xf7\x5d\x85\x66\x31\xd1\x74\xfc\x8f\xab\x90\xb5\x20\x5b\x1b\xb1\xa9\xfe\xf6\x49\xfd\x91\x79\xce\xc1\x2f\x66\xea\x83\x2a\x62\x12\x90\xc2\x0e\x0a\x86\x1c\x81\x57\xa6\x55\x25\x48\x34\x7b\xa3\xe9\xf7\xa0\x5d\x76\xe1\x24\x3e\xfe\xf0\x35\xe8\xac\xad\xad\xe2\x49\x77\xf0\x4b\x44\x80\x72\xbd\x68\x67\xf5\x66\xe7\x2d\xd1\x5b\xbd\x1e\xbb\xa4\xf5\xff\x10\xc1\x98\x79\x42\x2d\x2b\x53\xd2\x0a\x28\x82\xb5\x1a\xec\x1f\x18\x90\x98\x72\x1a\x29\xf2\xa3\x73\xb4\x83\x6a\x3c\x71\x4a\xcd\xef\xa7\xeb\x0c\x89\xbf\xcb\x75\x05\xcf\x75\x1a\x3d\xb4\xa2\x1a\xc8\x9c\x28\x42\x09\x53\x04\x7d\x8a\xec\x3d\xd8\x88\xd9\x23\x4c\x34\xa8\xec\x8d\x3f\xd9\x73\xb9\x4e\x07\xba\x82\xbf\x3d\xa9\xc8\xe1\xa4\x69\x95\xa9\x6c\xcf\xa6\x6b\x2b\x20\xda\x2d\xba\xeb\x01\x75\xc8\xdf\x33\x78\xe8\x16\xa9\xd6\x08\x2b\x39\xea\x42\xfa\x58\x5e\x27\x11\x37\xb7\xdd\x1c\xfe\xe8\xf4\x84\x2b\x51\x89\x1f\xa6\xe6\x41\x66\x36\xfa\x11\x34\x4a\x6f\xf9\xc8\xcc\xec\x3c\x5f\x2b\x5f\x64\x6e\x59\xa7\xd3\xc9\x62\x02\x89\x40\xbb\x8d\xe6\x23\x68\xa7\x40\x09\xf3\x85\x8d\xd0\xb0\xbd\xcb\x0e\x37\x1a\x58\x4d\x47\xa1\xe1\x33\xf9\xcb\xd5\xb5\x20\xd9\x04\x1f\x1c\x36\x08\x92\x44\xc6\x2b\x27\xa2\x26\x1c\xeb\x40\x80\x01\x3b\xef\xaf\xf1\xa9\x58\x23\xd3\xa4\xec\x9a\xc7\x0d\x6f\xff\x32\x6f\xa8\x8c\xf4\x67\xfb\x90\xb1\x73\xf4\x36\x27\x88\xe1\x68\x8a\xee\xb1\x2a\x92\xe0\xbb\xe7\x04\xd4\xc2\xcb\xee\x58\xba\xd4\x9c\x80\xff\xd0\xb8\x97\x24\x7a\x4f\xd5\xf0\xd7\xbe\x9d\x1c\x37\x53\x5f\x70\x19\xdd\x81\xda\xd3\x8a\x9d\xfa\xfd\xe3\x70\x5a\x2b\x0e\x6f\x84\xcf\x9f\xbb\x90\x0c\x19\xe4\x92\xbf\x96\xba\x61\x27\xba\x50\xad\x92\x20\x0d\x29\xf7\xf5\x32\xf2\xfa\x99\xd6\x9e\x9b\x3c\x45\x4e\x47\xde\xfb\x40\xc3\x84\x26\x4b\xb9\x05\x77\xb1\xb1\x54\x24\x52\x5d\xaa\xd5\x22\xe5\x51\x40\x44\x66\xc7\x5e\x84\x95\xb8\xcb\x2a\x9b\xac\xe3\xe0\x5b\xd3\xaf\xd7\xf7\x8f\xdd\xac\xd6\x58\x6b\x96\xe8\x17\x07\xa2\x55\xae\x00\x99\x79\xeb\xd6\xf8\x1b\x55\x59\xb8\x15\xaf\x7b\x59\x37\x16\x8b\x94\xda\x18\x75\xb4\x69\xec\x30\xa3\x80\x8c\x80\x3a\x41\x30\x46\x15\x88\x36\x73\x5a\x65\x81\xb2\xe3\xc7\x24\xab\x02\xcb\xaf\xc1\x2d\x30\xfa\x82\x81\x3d\x5a\xe3\x13\x21\x3b\xd5\xc1\xbf\x1f\x42\xae\x0d\x56\x78\x0d\xb7\x30\xde\xd3\x17\x83\x64\xc6\x2a\x3b\x26\x35\xea\xb8\xca\xee\x54\x06\xcd\xd1\xc8\x31\xd8\x23\x76\x25\x9a\x4f\x93\x95\xc9\xae\xae\x4d\x4b\xcc\xb5\x65\xaf\x4a\xf9\xa0\xfd\xe6\x35\x53\x98\x9a\x8b\xe8\xaa\x39\xb4\x1a\xe1\x73\xca\xc4\xf3\x18\x68\xac\xec\x3e\x80\x24\x26\x23\xe3\xcf\x60\xe9\x53\x43\xd1\x79\x6d\xe2\x16\xf7\xa6\x33\xd7\xa2\x2e\x7e\x2d\x22\xd8\x28\xc8\x43\x6f\xe6\x6f\x9f\x32\xf5\x31\x72\x36\x25\x85\xb8\x79\x9b\x5d\xb1\x24\xca\x55\xac\xc8\x25\x39\xfd\xeb\xb7\x8c\x60\xe8\x29\xa6\x67\x7a\x7b\x8b\x6a\xb5\x90\xc6\xdf\xa8\xb1\x9a\xde\x77\xf2\x1a\x84\xbe\x76\xcb\x94\xa2\x1c\x35\x5b\x1e\xa9\xa3\x95\x90\x02\x62\xc1\x13\xa3\x8d\x32\xac\x4a\x05\x93\x42\x8b\x2a\x4c\xbe\xb2\x62\x04\xe2\x5a\x44\x6e\xb1\x11\xa7\x21\xf3\xc7\xb3\x43\xd1\x47\x32\x68\x14\xc1\x93\x94\xb6\x26\xe3\x90\x22\xd4\xb9\x60\xc1\x16\xdc\x81\x1a\xeb\xc4\x75\xa9\x12\x34\x4e\x55\xf6\x98\x8a\x17\x6e\xcc\x84\x7a\x65\x81\x4e\x77\x4b\xbc\x25\x12\x7c\x67\x90\xbe\x16\x6d\xe2\x17\xa8\x90\xd8\x76\x35\xcb\x7c\x7a\x65\xfc\xcb\x7e\x5b\x0b\x6a\x25\xbd\x7f\xbc\x01\x61\x22\x4e\xc9\x06\xce\x44\x76\xe3\x6e\x1d\xfc\x6e\x9c\xd2\xae\x6a\xef\xd3\xfa\x86\x00\xe6\x5e\xea\xe7\xf3\x06\xd6\x62\x9f\x7d\x25\x77\xfc\x45\x03\xa9\xcc\x1d\x0a\x0e\x00\xea\x2e\x4f\x19\x88\x40\xe6\xc8\x11\x85\xba\x86\x52\x7a\x82\xec\x3a\x61\xe9\xfb\xaf\x79\x84\x57\x8b\x30\x61\x5d\xbd\x99\x1f\x14\x93\x51\xaf\x4e\xac\x32\x29\x91\x26\xad\xa3\x0d\x12\x9c\xba\x3d\xb9\x87\xe4\xc0\xda\x23\x4c\x4a\x4a\xa8\xc6\xe1\xe5\x86\x60\x6c\x95\x56\xa9\xc7\xeb\x13\x91\xe0\xd3\xdd\x06\x7e\xa0\x66\x93\x26\x6c\xea\xe0\xdb\x27\xf4\xa1\x68\x70\x2e\x67\xb7\xa8\xa7\x9a\x1d\xbb\x4d\x2f\xe5\xe4\xc9\x6d\xd3\xa7\x85\xeb\xb6\xea\x35\x3d\x78\x9d\x26\xc3\xcb\xec\x01\x71\xea\x51\x6c\x09\x1f\xc1\x9f\x75\x20\x20\x86\x23\x55\x36\xe4\x2b\x29\x9f\x41\x73\x05\x51\x6d\xaa\x3d\x5c\x7f\x41\xdf\xb9\x55\xea\x31\xcb\xb7\x81\xad\x90\xbd\xef\x04\xa4\x05\x77\x30\xd1\x20\xb6\xcc\x14\xa6\xae\xb8\x94\xd9\x27\x48\x61\x6c\x78\x0f\x73\x27\xa4\x92\x0b\xd4\x61\x7f\x38\x60\xba\x63\x23\x60\x46\x6f\x66\xd6\x84\xc1\xd8\x3f\x6f\xd1\xa2\xc5\x13\xe7\x84\xbf\x96\x41\x7a\xed\x31\x1f\x47\x1d\x9f\xf1\x17\x92\x41\xae\x64\x53\x47\x0d\x94\xa3\xf3\xec\xf7\x49\x2a\xfb\xd4\xb9\x5d\x22\x97\xf0\x82\x3e\xee\xa1\x19\x60\x18\xa1\x67\x1d\x1e\x18\x05\x1e\xdf\x56\x92\xef\xe9\xd1\xa7\x94\x13\x03\xb1\x25\x59\x50\xfe\x70\x93\x61\x33\xaf\xe6\x75\x2a\x95\xb8\x0e\xdb\x60\x70\x98\x70\xf5\x66\xdb\xe7\x26\x57\xb0\xca\x5d\x2f\x12\xc1\x3e\x76\x3c\x19\x13\xd7\xf8\xd4\x0d\xa3\x66\x04\xb1\x69\x18\x20\xc9\x3c\xb1\x2a\x79\xee\x44\xb6\x00\x3f\x7e\x7c\xac\x99\x38\x5c\xd2\x63\x3c\xd3\xff\xa5\x78\x47\xf1\xbc\xec\x50\xdc\xf7\xb0\xf9\xad\xea\x91\xdf\x79\xfa\xf3\x97\x21\x9c\x04\x2f\x34\x4b\xbe\x42\xf1\xcc\x15\x08\x51\xe5\x95\x35\x57\xbb\x37\x3d\xeb\x8d\x84\xc7\x8d\xcd\x95\x57\x53\x6a\xc7\x4b\xfa\x1f\x00\xde\xaf\x68\x6b\x8f\x64\xf5\xd6\x9f\x36\xe9\x66\xe9\x22\x98\xfe\x8b\x71\x46\x1e\x41\x23\x43\xe4\xf4\x97\xc6\x0c\x35\x2e\x31\xe6\x28\xeb\x80\xb7\xdf\x36\x7a\x05\xb6\xef\x94\x14\xc5\xbe\x37\xfd\xe6\xc2\x24\xf0\xcf\xaf\x81\xd1\x6c\xfe\x88\xd1\x96\xe6\x55\x1a\x66\x78\xd0\x96\x4e\x2d\x3f\xa1\x03\x1a\xef\x91\xbc\xa3\x71\x43\xf5\xc2\xd8\xc4\x77\x0a\x82\x57\x65\x4f\x3a\xd5\x67\xa6\x3e\x53\x4d\xee\x3b\xa5\xf0\xa4\xc3\xad\x3d\xd3\x54\x77\xf5\x28\xf4\x46\x23\xf3\x87\x2d\x8b\x14\x8c\x26\x7c\xa0\x5c\x57\xf0\xc3\x13\x43\xf5\x33\xba\xb8\xb0\xab\x2f\xd4\x8d\x66\x52\x20\x55\x56\x41\x59\xcd\x47\xcf\x1b\x27\x95\xfb\x76\x84\x15\xfd\x97\xd5\xaa\x27\xe7\x0b\x57\xe6\xb6\xa9\xdf\x6a\xa3\xd8\xc9\x53\xe5\xd2\x0f\x3b\xa1\xb3\x57\xb7\x69\xd7\x19\xc2\xb1\x64\xa6\x3c\x6b\x30\x7f\xc3\x82\x32\x5c\x92\xd5\x1f\xc4\xaa\xed\xc0\x40\xcd\x6e\x9a\xae\x37\x49\x78\x03\xba\xb1\x4d\x68\xea\xf4\x4a\x2d\xf9\x4c\xf2\xe8\xe3\xdf\xf4\xd0\xe0\x91\x8a\x68\x2a\x2d\x01\x13\xfb\xe3\xc2\xa9\x40\xa2\x96\xc4\xed\x7d\x8d\xd9\x23\x27\xa2\x10\x11\x2c\xa6\xe4\x8d\x91\xaf\x34\xe2\x8b\xb6\x43\xea\x9a\x47\xaf\x37\x6e\x98\xf0\x3b\xb2\x12\xb4\xbc\x65\x79\xf1\xd5\xe7\xaf\x36\x32\x2a\x4f\x85\xbc\x2f\x2c\xd4\x3a\x82\x8a\x3b\x99\x70\x47\xcc\x9d\x45\x83\xa3\x1a\xab\xc8\xb5\x7e\xf9\x04\xf2\x80\x60\x75\x99\xb1\x66\x97\x1f\x88\xd7\xc2\xe2\x3e\x82\x3c\x4c\x9a\x69\x34\x0d\x58\x01\xa8\x34\xa9\x7f\x98\x6e\x70\xce\xc3\xb2\x95\xc4\xc4\x88\xd4\xd4\xb5\x48\x80\xc2\x26\xb0\xfb\x9f\x5e\x84\x54\x04\x09\x88\x0c\x65\xfa\x19\xee\x40\x61\xa9\x58\xd3\xaa\xed\x19\x7f\xec\xc4\xff\x8f\x35\x32\x19\x70\xc1\xcf\xc6\x6b\x64\xb6\x47\x2a\xa0\xe5\x6e\xa6\x23\xb7\x3c\x0c\xdb\x7c\xe9\xb2\xae\x25\x9f\x91\x62\x32\xcb\x0c\x9d\x25\xb2\x36\x8c\x33\xaa\xb5\x74\x9f\x91\x2f\xe5\x7d\x51\x25\x8a\x9f\x1f\x16\x5b\x17\x26\x0d\x4b\x5e\x22\x4b\xa5\x7b\xbb\x1c\xbf\x7d\xca\x04\xed\x29\x27\x6a\x35\xf4\x9f\xf9\x18\x56\x4f\x27\x96\x72\x84\x5b\xf3\xf2\xd5\x08\x19\x5b\x2c\x52\x25\xb0\x1b\x3c\xa2\x24\x48\xa4\x42\x8c\x5c\xe9\x93\xa7\x8d\x3f\xc0\x3c\xb6\x36\x96\x7a\x78\xe6\x55\x85\x5c\xf0\x45\x89\x72\x25\x0f\x95\xe9\xde\x75\x35\x02\xe3\x10\x11\x1d\x8b\xe0\xf1\x41\x68\xfe\x55\x16\xbc\xa1\x22\xe7\xbf\x6c\x1a\x63\x5e\x1c\x16\x6f\xa8\xea\x2d\xd6\xc6\x7e\xe6\x11\xfc\x30\x8e\x05\x46\x5b\x99\x19\x07\x40\x7c\x61\xee\x5a\xea\x81\xb8\x67\x74\xd6\xbe\x8d\x94\x92\x1a\x04\x04\x3a\xd2\x0f\x99\xd2\x12\x54\x30\xee\xbb\x76\x13\xcc\x5a\xbb\x9f\x8f\xa3\x45\xd5\x92\x80\x8f\x29\xb3\xa2\x64\x5d\xa2\x0f\xe5\x3e\xdf\x75\xd0\x14\x97\x86\xb9\xa4\xb2\x12\xec\xea\x4d\x0d\xf9\x30\xbe\x7a\xd5\x50\x75\x35\x62\xfe\x49\x69\x1e\x46\xa4\xed\x40\xfa\x99\x37\xae\x42\x65\x93\x0f\xce\x89\x99\x6b\x0d\x7c\x5f\x9d\xd8\x3e\x8d\xb7\x6d\xb0\x11\xf2\x97\x07\x98\x53\x90\xd5\x6f\x6f\xea\xcf\x4f\x99\xa9\x88\x6b\xc9\xe1\x23\xd4\x1c\xcb\xe6\x26\x0f\x9b\x45\xb9\x4a\x44\x77\xac\x80\x07\x6c\x50\xa2\xc6\x23\xc1\x81\x13\xd0\xa3\xbc\x17\xfc\xb2\xa2\x05\xbd\xe7\x49\x7d\x51\x4c\xee\x9c\x11\x7e\xec\x65\x6f\x0f\x89\xff\x60\x1e\xe7\x28\x03\xde\x35\xdb\x21\xe1\x99\x8c\x1e\x20\xd5\x71\xd1\xa8\x3f\x34\x55\x5d\x71\x62\xfe\xab\xd3\xf4\xeb\x6c\xc6\xa2\x13\xe9\x1f\xbc\xa3\x7a\xec\x3d\x9e\xa0\x55\x70\x9f\x4b\x15\x83\x38\xd1\xf7\x0a\xad\x52\x94\x3d\xc2\xb0\x6d\xe2\x1e\x4f\xfa\x21\x64\xf6\x1a\xc6\x94\x6e\x83\x39\x05\x5b\x35\xab\x83\xbd\x9d\x70\x3a\xee\x70\xac\xb2\x64\xfb\x5c\xb3\xc2\x54\x10\xe7\x35\x9b\x2a\x00\x5c\xaa\xff\x56\x2c\xdc\x1a\x95\x80\xb2\xfe\x5b\x34\x14\xa5\x1d\xbc\xe2\x7a\x5c\xc0\x60\x2f\xfd\xc6\xd3\x4a\xfd\xb7\x1c\x49\xcd\xf7\x66\x6f\xc0\x98\x69\x69\xc9\xe8\x2c\xc7\xba\x71\xd2\xfe\x7e\x2d\xc2\x91\x04\xbb\x2f\x24\x5f\x76\x95\x14\xa0\x44\xb7\x4e\xc7\x6d\xe6\x3c\xe1\xe8\x75\xf5\x1b\x61\x48\xc0\x72\x61\x17\x1a\xac\x00\x43\xd5\xec\xbc\xf3\x70\xd0\x73\x18\x16\x9b\xfa\xdd\xaa\xab\xf1\xd7\xa8\x32\x27\xa2\xe4\x7c\xac\xe3\xda\x96\xa4\x4b\x96\x1a\x0d\xd9\x9a\x4d\xbf\x33\x0b\xf6\x6f\x25\x36\x5d\x4f\x2d\xd9\x82\x90\x04\x6b\x7c\x69\x4d\xd6\xd5\x9b\x39\xf8\x2a\x76\x17\xf1\x00\xee\xf6\xc7\xe5\x98\x6a\xe3\x78\xc4\x92\xf1\x45\xec\xd3\xeb\x2a\x68\x5d\x99\x5f\xcb\xf9\x8b\x83\x5a\x29\xbe\x68\x4a\xf2\xd8\xcf\x36\x98\x2a\xa9\x4d\x19\xa9\x14\xd5\x33\x7f\x12\x9e\xd9\x13\x4c\x3b\x72\xa6\xff\x50\xd0\x7f\xba\x48\x1d\x4f\x28\xc4\xf2\xd5\xab\xaf\x89\x4b\xd4\xd6\x56\xce\x0d\x4f\x18\xb3\x0c\x6a\x7b\x6a\x2b\x8f\x5f\x3e\x14\xd5\x16\x05\xe6\x5a\x36\x57\x1e\x3f\xef\x3d\x61\x54\xd2\xb6\x57\xe6\x7e\x49\xd1\x40\x82\xaf\xef\x37\x4e\x88\x60\xb4\x18\x31\xf8\x9e\xee\x6f\x6a\xf9\x78\x9e\x39\xc0\x3c\xf5\x70\xf2\x44\xf0\xbc\x6f\x95\x59\xa2\xb1\x30\x3b\x6d\x12\x44\x98\xad\x52\xf6\x7f\x79\x02\x49\x37\xf8\x0e\xc0\x3b\xaf\x3d\x6b\xb8\x8e\xf0\x32\x31\x0c\x52\x53\x37\x74\x2b\x3d\x66\xb5\x29\x5a\x4a\xf2\x9f\x18\x18\x7a\xb7\xca\xbc\x44\xbf\x23\xdb\xb5\x49\xcf\xa6\x49\x95\x3b\xa5\x96\xd3\xfe\x8b\x9d\xc8\x91\x96\x0a\x97\xda\x45\xb9\x75\xf6\x38\xba\x74\xc9\x8b\x30\x24\xc9\x16\xef\xf3\x68\x7f\x08\x68\x3b\xa7\xfa\x4d\xc2\xbe\x5e\x79\x09\x1c\xfb\xdd\x38\x75\x3e\x63\xdd\xba\x60\x4f\xff\xe4\x2a\xca\xe1\x99\xe2\x1a\x42\x1d\x98\xda\xbf\x5c\xb7\x67\x4a\x44\x08\xea\x21\x3a\x75\xc6\x53\xd2\xa1\xd4\x71\x41\x48\xa4\x37\xdd\x78\x06\xdb\xd4\xe7\x23\x1c\x7a\x6e\xae\x1a\xf7\x44\x7e\x73\xe1\xd9\xdc\x7c\x51\x8d\x18\xc2\xa2\x1b\xbc\xa1\xe6\x19\x80\x2d\xe6\x14\xa2\x04\xf9\xae\x37\xc6\xc4\x9f\x4c\x7b\x6a\x54\x40\x6a\x67\xe6\x30\x63\x0c\xdd\x40\x9b\xc8\x79\x82\xfa\x90\x51\x4a\x09\xbc\x63\xd2\x34\x79\x0d\xa4\xbe\x58\xc6\x73\xf6\xf0\x1c\x28\x1b\xc3\xa7\x0a\x46\x1d\x59\x2c\x12\x26\x54\xfa\xd0\xb6\xdd\xd4\xdd\x86\xea\x59\x46\xdb\x57\x0e\x0e\xd4\x49\x99\xca\x4f\xb2\x98\xc3\xce\x63\x02\xe0\x0b\xaf\xc7\xf6\x40\x16\xad\x26\xc4\x47\xb6\xef\x57\x6a\x90\x34\xf2\x00\xeb\x5f\xd4\x1b\xa3\x49\x89\xb0\x39\x44\xd9\xbc\x21\x83\x90\xe7\x6b\xa9\x6d\x5f\xaa\x85\x9c\xfe\xb6\x91\x14\x95\x39\xb7\x59\x89\x38\x8a\x08\x3e\x7e\xab\xd1\xb0\x23\x55\x2a\x38\x77\x30\x1c\xcf\x7e\xdc\xe4\x90\x79\x44\xa5\x0e\x2b\x37\xdc\x60\xdc\x9c\x5a\x55\x2a\x2e\x5d\x33\xcf\xee\x1c\x8a\xd9\x86\x4a\xa9\x3f\x8c\x75\x7f\xd9\x99\xac\x95\x0b\x7e\x95\x5c\x42\xf7\x37\xd8\x79\xbc\x45\xba\x58\x80\xe8\x6b\x6c\x94\x34\x68\x8f\x39\x52\xb0\x8b\xb9\x42\xdc\xf3\xf9\xed\x4e\x54\x25\x3b\xd8\x69\x2d\xbd\x73\xce\x10\x73\x0b\x82\x93\xe1\x91\xa1\xb0\xd9\x41\x02\x40\xbe\x91\x7d\x63\x5b\x90\x61\xd2\x04\xa1\x0e\x97\x4f\xea\x98\x03\x7d\xf4\x3b\x8a\x82\x59\xc4\xc9\xdd\x01\xbd\x4a\x38\xb9\x74\x64\xf2\x0f\xdd\xa8\x66\x48\x8d\x59\x71\x35\x55\xd3\x63\xa8\x36\x23\x64\xd6\xca\xc4\x8d\x2e\xec\xcc\x8b\x62\x78\xeb\x7b\x23\x2a\x95\x7e\x68\x63\x4b\xb0\x8d\x71\x5f\xa9\xaf\x5f\x34\x89\x92\x36\xcd\x0b\xa2\x27\x77\xe9\xa9\x3d\x08\xb2\x5e\xc9\x75\x05\x97\x2f\xc2\xd2\x4d\x40\x8b\xf8\x8d\xe1\x1a\x18\x5e\x06\xbe\xab\x2c\x20\x4f\xcc\x1d\xa4\x82\x99\xcd\x2c\x5e\xf3\x14\x2c\x61\xe0\x19\x0c\xf5\x71\x68\x0e\x38\x95\xbd\x99\xad\x07\x20\xca\x2e\xe6\x76\x98\x20\xb4\xd0\x04\xb3\x5f\x3a\x33\x08\x89\x91\xf8\xd5\x1a\x05\x02\xd7\xdc\x51\xa8\xb3\x2b\xab\x5f\x73\xff\x7f\xfa\x09\x03\x40\x62\xbb\xca\xc4\x51\x7e\xa5\xef\xbd\x38\x04\x5d\xc3\x79\xee\x3b\x05\x78\xd1\xef\xf6\x1b\x88\xbe\x6b\x81\x37\x72\x5d\xc1\xd7\x5e\x45\xce\xc0\xd0\x64\xca\x75\x05\xbf\x5c\x0f\x01\x26\xb6\x8c\xe7\x9b\x4d\x48\xa4\xcb\x1c\xe0\x35\x66\x56\xe4\xa3\x19\x6b\x9e\x81\x9a\xfa\xec\x6d\xf0\x93\x92\xa0\x54\x4a\x60\x66\x3e\xbc\x08\xb3\xb2\xbb\x55\x6c\x1f\x3e\xe1\x1a\xd4\xc1\xf2\x88\xc3\x10\x94\x2d\xdb\xdf\x48\xbe\x0b\x5c\x3a\xec\xca\x39\x6d\xf0\x93\xf3\xa3\x8d\xed\xca\xaa\x5c\xb8\x95\xa6\x3e\xdf\xc1\xe4\x0f\xd1\x2d\xc3\x84\x57\x96\x5f\x74\xfe\x01\x84\x01\x67\x14\x1b\x53\xa7\x3f\xd3\x6d\xd8\x8c\xe4\x95\x68\x53\x76\xd8\x6e\xbc\x9c\x75\xa6\xce\x79\x6f\x76\xda\x00\x73\xce\xe0\x3b\x9e\x14\xe4\x52\x82\x0f\x87\x9e\x42\x14\x5c\x69\x01\x23\x9f\x9d\x2a\x65\xfd\x8e\x19\x39\xe9\x2e\xf5\xc5\xce\x4f\x19\xc9\x89\x47\x6c\x9b\x5d\xda\x76\x29\x7b\xdf\xc5\x38\xd1\xf1\x5a\x92\xec\x6c\xf9\xa2\x19\xd2\x45\x35\x2c\xb7\x41\x9d\x63\x68\x0f\xec\xe1\x79\xcc\xb1\x89\x13\x55\x9d\xdf\x1d\xaa\x7d\x54\x28\xe6\x44\x6c\x5c\x82\x7b\x0c\x92\x02\x19\x5c\xd8\x0a\xb0\x8a\xc5\x44\x90\x2a\xb3\x65\x5b\x20\xdc\x20\xb7\xad\x35\xc7\xba\xaa\x9b\x09\xa8\xc0\x4d\x6f\xb7\xc8\x8b\x13\xc7\xa1\x6e\x58\xb9\x6a\x5b\xe2\x1b\x6e\xd7\x77\x83\x43\x0a\x7e\x14\xad\x9f\x58\x9c\x30\x15\x81\xaf\x3d\xf7\xa2\x7e\xc7\x6e\x99\x0a\x30\x91\xfb\xb5\x01\xf0\x93\x64\x25\xea\xaa\x29\x67\xea\xdf\x0c\xd1\x33\x6a\xf9\xa4\xc0\x45\x9c\x23\x81\x22\xdf\x50\xe3\xf2\x05\x46\xb6\xba\x1f\x7e\x7b\x4e\x41\x9c\xb4\xc2\x93\xd4\x77\x1a\x15\xdf\x97\xd1\x0e\x08\x26\xbe\x8b\x2c\x40\x08\x73\x3c\x30\x71\x64\x4e\xae\x40\xc3\x8d\x0b\x5a\x2b\x3b\x4f\x0e\x41\xdd\x73\x8f\xd9\xb6\x34\xe2\x0c\x9a\x93\x86\x9b\x35\x41\x25\x66\x7e\x7f\xfe\x32\x53\x48\x53\x91\x43\x41\xb3\xe0\x0f\x75\x34\xc2\xe3\x25\x2a\x91\x02\x5d\x41\x75\x75\xf2\x23\xab\x85\xb6\x98\x18\x99\xb9\x7a\x1c\x82\xd2\x0b\xe9\xee\x10\x5c\x36\x34\xae\xe9\x5c\xd2\xea\xdc\xf1\x9f\x6d\xc8\x85\x93\x73\xd1\x90\x2a\x22\xdb\xf6\x28\xfe\xa8\x20\x55\x90\xb9\xca\xae\x7b\xc1\xe0\x78\xda\xd4\xf2\x04\x77\xb4\x6c\xe4\x69\x83\xd1\x33\xb9\x7d\xba\x1a\xdd\xaf\xea\xc6\xa3\x17\x61\x53\xcf\x63\xe1\xcf\x67\x1e\x48\xbe\x26\xe1\xbb\x92\xfc\x05\x09\x78\x07\x90\x00\x22\x13\x79\x75\xab\x41\x79\x7d\x36\xf9\xa7\x8a\x4c\x54\x65\xfb\x21\xfd\xdc\x45\xc3\x81\x8b\x86\x49\x8e\x7a\xf1\xd9\xf3\xd8\xc4\xac\x9a\x67\x48\x95\x6e\x40\xd9\x24\xe2\xb3\x5a\xd4\xe5\x16\xdd\x57\xa1\x9e\x63\xad\x06\x5e\xcb\x02\xc9\x72\xab\xda\x54\xf6\xde\x7e\xbf\xfe\x7a\xd4\x46\x73\x4a\x15\xdf\xf5\xf3\x82\x4b\x39\x96\xe8\x60\x7e\xae\x1f\xc4\x57\x2a\xb8\x27\xdd\x3a\xd2\xd7\x83\x24\x67\x4e\x22\xd1\x5b\xb2\xc9\xff\x79\x51\xcb\x62\x20\x73\xda\xe0\xbd\x95\x18\x6c\x47\xab\x72\x94\x1b\x7e\x89\x23\xaf\x26\x53\x02\x87\x7a\x72\xf7\x81\xd8\x73\xb0\x63\x15\x1c\x01\x8b\x84\x15\x9e\xef\x2a\xeb\x9c\xaf\x3e\x9c\x4c\xaa\x2a\xb4\xa6\xb0\x40\xd9\x2f\x1b\x6d\x9f\x52\x99\x38\x44\x31\xf5\xba\x7a\xd3\xcd\x37\xae\x41\x14\x24\x62\x95\x93\x1e\x93\xa3\xcd\x51\x9d\x25\xad\x30\xa4\x23\xf9\x15\x3d\x7a\xb8\x9a\xe7\xb2\x4a\x48\x6d\xd3\x56\xa7\x80\x62\xcf\x4c\xd2\xd7\x4d\xe1\x46\x52\x65\x16\x5a\xce\xcc\xe1\xb1\x83\xe3\xfc\xb5\x89\x25\x5c\xfa\x98\xf3\x6e\xf9\x9a\xca\xac\x16\x63\xc0\xd9\x8b\x71\x7e\x2b\x1b\x47\xc1\x07\x4b\x34\x90\x8c\xe4\xd1\x87\x7d\xbd\x8f\x06\x0e\xc8\xef\x34\x61\x2b\x1a\xd7\xdb\x36\x23\xce\xda\x96\x71\xca\x5f\xb4\xeb\xef\x5d\x6e\x86\xd5\x82\x53\x8c\xf4\x24\x7b\xd3\x5b\x94\x21\xb2\x84\xe3\x30\xa7\xc8\x45\x15\xb2\xbf\xf5\xda\xfd\xd3\xae\x84\xd9\xd8\xfd\xf5\x71\x46\x22\x29\xea\x04\x46\xa1\xe6\x91\x7e\xff\x5d\x93\xa3\x4c\x1a\x11\xde\xff\xca\x53\xf1\x74\x30\x2f\xfc\x96\xcb\x67\xcd\x07\xe8\xbe\xa0\x12\x93\x1b\xdc\x6d\xc8\xe0\x14\x68\x91\x3a\x6e\x64\xd8\x34\xd8\x20\xfe\x75\x4c\x91\x35\x01\x34\xc7\x5f\x5b\x67\x48\xea\x09\x69\x11\xef\x58\xaa\x42\xd9\xbd\x57\xa7\xe0\xbc\x88\x5b\x95\x1f\x3b\x76\xa5\xca\xd5\x88\x00\xa9\xc7\xde\xd4\xc6\xb3\x9f\x32\xbe\x08\xa8\x36\x31\x6b\x62\x77\x77\xcb\xc2\x3f\xd6\x67\x38\x1a\xbf\xbb\x1e\xf3\xa0\x97\x21\x13\xac\x1b\xf7\xc5\xb9\xad\x87\xb4\x80\xe7\x47\x8d\x4a\xe6\x31\x29\x70\x16\xfc\x6e\xbc\x11\x68\x22\xb4\x4d\x66\x51\x0d\xeb\x1b\x49\xa3\xc6\xae\xde\xf4\xdd\x03\x8c\x18\xd8\xd6\x3e\x15\x58\x8d\xe9\xdb\x07\x5d\x32\xcd\x9f\xab\xc7\xd4\x65\x1e\x9e\x86\xb3\xda\xa9\x55\xf6\x41\xe2\x35\xd9\x62\x88\xf6\x46\x36\xa6\x10\x2d\x3f\xfd\x6e\xe4\x7a\xe5\x84\xb9\x7f\xf8\xe5\xff\xb5\x5f\xf2\xcb\xc4\xc2\xf3\x99\x5f\xf7\xd1\x37\x6f\x81\xd6\x88\x1c\xd0\x64\x7e\x75\xf4\xaa\xa4\x7d\x65\x78\x03\x1e\xd9\x86\xd3\x63\xac\x50\x8b\x6e\xef\x6e\xdf\xf1\x88\x0c\x7e\x33\xde\x4a\xb8\x61\xa9\xde\xce\x27\xc6\xf7\x8f\x5f\x67\x78\x72\x7e\xb6\xbd\xbf\xba\xd8\x6a\xe0\x55\x54\xba\x68\x5e\xfa\x2a\x40\x40\xe0\xfe\x2f\xd1\x92\x60\x09\x0e\xd3\xa5\x56\xc7\xbd\xcc\xae\xd9\x49\x99\x10\x32\x8e\x54\x6b\xb7\x54\x2f\x39\xee\x6c\x28\x61\x5b\x26\x04\xf3\xd4\xe8\xf6\xfd\xb9\x09\x70\xf9\xf4\x5c\x57\x70\xd5\x2e\xf4\x58\x61\x3e\x2e\x1f\xeb\xed\xa7\x06\x21\x66\xbd\x50\x52\xe6\xa9\x87\x0e\x1a\xb0\xc9\x32\x2d\x46\x73\xdc\xcc\xa9\x59\x86\x88\x4c\x71\x62\xb1\x21\x5b\x72\x6d\xc9\x63\xdb\xd1\xde\xde\x11\x71\x96\xc4\x96\xeb\x2e\x79\x90\xbc\xb8\x1d\xdc\x33\xce\xd4\xc4\xe0\x45\xe6\x45\x76\x9a\xe9\x1f\x2f\x44\x42\xf5\x82\xc0\x6e\xcd\x7c\xe5\x09\x44\x25\x86\x5f\xc8\x75\x05\x3f\x3d\x35\x28\x59\x18\x83\x6f\x83\x39\x52\x82\x59\x59\xa4\x8e\xd7\x9b\x99\xbc\x30\xe2\x87\x29\x1b\xd6\xbb\x8e\x20\x63\x4b\xa7\x9b\xc3\xbe\x49\xdd\x9a\xd6\x4a\xcc\x04\xf5\x8e\xd3\x9f\x45\x9a\x34\x90\x98\xc2\xd0\xa3\xa9\xc8\xba\xd2\xc9\x5e\x7e\xf2\xd2\x79\x97\xab\x8b\x06\xfa\xd6\xfd\x16\x0c\xd1\xb6\xcd\x78\xd0\x39\x0b\x4d\x94\x2b\x44\xd4\x78\x9d\x7a\x6b\x73\x5d\xc1\x89\x67\x93\xeb\x99\x27\x20\xd6\x18\x9f\xb5\x5b\x27\xe8\xeb\x6c\x4c\xb7\x5f\xcd\xf3\x31\xa8\xdf\xf4\xc5\x4d\x06\xf3\xac\x1e\x8d\x9e\x53\x5b\xe7\x1b\x8c\x0e\x10\x46\x02\x05\xc1\x9f\xbc\x74\xa3\x91\x62\xd7\x98\xc7\x2f\xd9\x22\x49\x6d\x3e\xa6\x57\xc3\x23\x9e\xeb\x97\x59\x45\x4e\xe9\xdc\x17\x0c\x39\x6a\x5a\x60\x16\x73\x34\x09\xb9\xf3\x4c\x34\x67\x75\x94\xc5\x6d\xfa\x61\xc5\x7f\xa1\xa2\xae\x66\xcd\xff\x3a\xd2\x90\x61\xae\xcb\xc0\x4c\x23\x46\x63\xdf\xdd\xc6\xd0\x9f\xd9\x95\xa8\xa9\x31\xcc\x10\xdb\xaa\x89\x30\x84\x28\x35\xc2\xd4\x8f\xbb\x75\xd7\xbe\x9b\x36\x98\x5b\x56\x91\xe4\x05\x4f\x25\x95\x9c\x2b\xcc\xf6\xd1\x27\x4d\x07\xd2\x6a\xd5\x77\x98\xd7\x84\xc5\xcc\x0e\xe9\xdf\x22\x8e\xe4\xd7\x20\x81\x79\x69\xbd\xc1\x07\x10\x94\xc4\xc2\x3b\x1f\xbe\x85\x84\x01\x7c\x21\x0b\xe2\x07\xc7\xa2\xbd\xce\x3c\xab\x0c\x0e\x01\x47\x07\xe9\xb3\xbe\x96\xf3\x6a\xf8\x67\x97\x5e\xc0\x75\x49\x6c\x82\x52\x34\x6c\x0b\x4b\xf2\x22\x6b\xcb\x75\x05\x6b\xb7\xc6\xa4\xda\xc9\x92\x2b\xa6\xa7\xbc\xff\x92\x36\x70\x43\x58\x68\x59\xe5\x4e\x8b\xb6\x0c\x54\x2f\xac\xca\xa5\x18\x7c\xae\x2b\xb8\x53\xe9\x4c\xd8\xdc\x29\xc9\xc4\xff\xa0\xd1\x32\x88\xf0\x24\x2a\xac\xf4\x3f\x6a\x82\xbf\x9c\x8a\x6a\x12\x1e\x3e\x3e\x10\xab\x53\xc1\x74\xec\x97\x86\xbe\x33\xa9\xd5\x28\xb1\x95\x64\x79\x6a\xec\x36\x68\x7d\x14\x18\x54\xcb\x2d\xcd\xe1\x75\xa3\x10\x86\xc3\x29\x70\x87\x4a\x16\x41\x70\x70\xaa\xa1\x11\xc2\x5c\x8b\x57\x8b\x5c\xa8\x48\x9e\xfe\xe6\x56\x24\xef\xcf\x4a\xe5\x5c\x8d\x37\xa8\xea\xd9\x3e\xfd\x94\xa2\x64\xfb\xb1\xfa\xc0\xeb\xab\x0d\x48\xaa\xa8\x2a\x29\x7b\x49\x0a\x8a\x0e\x64\xfa\x62\xc2\x43\xb7\x44\xc0\xe3\xf3\xdb\x97\x19\x08\x32\x51\x22\x8e\x14\xdf\x92\xe9\xc7\xaf\xe6\x20\xb1\x3d\x02\xf3\xf9\xe4\xed\xb0\xb6\x6f\xb2\xd8\xec\xec\xf4\xca\xa6\x3c\x73\x66\xf7\x72\x53\xd0\xd6\xf5\x78\x55\x3d\xef\x4e\xcf\xcc\xa8\x9b\xaa\x5b\x96\x9d\x7c\x5e\x0f\x7f\x3c\xea\x7a\xac\xca\x9d\xa6\xac\xb5\x17\x2e\xd4\x18\xae\x56\x58\x6b\xfa\xf8\x5e\xb8\xb3\x90\x78\xd3\x8c\xbe\xc6\x3a\xd9\x79\x49\xb8\x4f\x7a\xb4\xa6\xbf\xbe\x41\x07\x95\x8e\xf6\xc9\x53\x72\x1d\xed\x1d\xed\xe1\x77\x19\xfa\x1e\x24\xa2\x73\x08\xb3\x69\x13\xcd\x09\xba\xe7\x1a\x93\x77\x56\xa0\xdc\x57\x6f\x33\x53\xcd\x9b\x92\xa5\x7e\x21\x86\x38\xed\xd2\xb2\x5f\xd3\xda\x3a\xc2\x1f\x5d\xdc\x83\x5a\x55\x68\x42\x75\x64\x98\x4a\x8d\x4c\x22\x4e\x30\xbc\x2f\x1c\x83\x3c\x03\x88\x7a\x6f\xfa\xed\x99\x46\x80\x25\xb6\x4d\xdd\x88\x33\xb2\xe9\x1c\xd2\xc9\xe3\x44\xf5\xf3\x53\xb7\x0e\x1f\x6e\x66\xcf\x6e\x39\x52\xa7\x78\x6e\x9d\x21\xc1\x0c\x76\xe5\x98\x76\xff\xea\xe1\xeb\x8d\x7a\x33\x3c\x95\x35\x21\x6d\xa4\x20\x20\x3d\xb4\x6a\xb0\x71\x7b\xc9\x16\xc0\xac\xf1\x43\x92\x83\xb6\x92\x4a\xfd\x37\x7f\x98\xdc\x18\x93\x67\xcc\x98\xaa\xb2\x9d\xa9\x0b\x06\x21\x0e\x3b\x34\x7a\xba\x82\xef\x8e\x32\x1a\x43\x50\x16\xc3\x5f\xbf\xff\x82\x09\xaa\x6e\xaa\xb3\x9c\xe9\xd9\x83\x9c\xcd\x64\x2c\x0b\xce\x96\x0d\x75\xd6\xa2\x2a\x75\x83\x29\x3b\xd0\x28\x5d\x4e\x1a\x72\x5d\x41\xdb\x23\x43\x35\x62\x9a\x24\xe4\x04\xfe\xf1\xa0\x99\xb7\x49\xf2\x50\x04\x5a\x5b\x91\x4f\x5e\x78\x60\x39\x14\xfe\xad\x96\x6e\x6a\xe6\x73\xb8\x9f\x2b\x68\x18\x04\x5f\x34\x30\x74\x9e\x60\x7e\xb5\x56\x56\x47\xeb\xb9\x59\xc9\xc3\xb9\xc6\x27\xc2\xa3\x42\x8a\xec\xf9\xa2\x09\xad\xd4\x33\xf3\xf1\xc0\x83\x14\xe1\xfa\x4b\x7d\x07\x69\xd5\xb9\x36\xaf\x93\x0a\x90\xa0\xae\x30\x6e\xf6\x52\xac\x0b\x99\x21\xc3\xd1\x30\x8b\x0b\xe8\x69\x1b\x9a\xe6\xcc\xb5\x49\x95\xe4\x49\x01\xeb\x77\x3f\x7f\x10\xab\xde\xb8\x52\x8e\x6b\xc2\x7e\xbd\x4f\xcb\xa4\x51\x09\x6f\xc9\xae\xde\xec\xf0\x0e\x23\x63\xa7\x56\x05\x00\x3d\x97\x15\x20\xbb\x5a\xce\xed\xba\x4c\xb7\x2e\x9c\x47\x1c\x9a\x32\xf7\xd5\x4e\x7f\xc7\xd1\x36\xdf\xb6\x97\xeb\x0a\x9e\x99\x60\x54\x0d\xae\xeb\xc7\x73\xa8\x54\xe1\x79\xdd\x50\x75\x2d\x90\xdc\x8b\x36\xfd\x21\x03\x4f\xec\x32\x5a\x8a\xca\xbe\xea\x7a\xd3\xd7\x8a\x78\xb1\x43\x49\xba\xdf\x7b\x57\xe8\x9e\x53\xf8\x25\x7e\x34\x00\x34\x0a\x26\x4f\x9d\x12\xfe\xf6\x15\xdb\x0d\x4e\x53\xe4\x4b\x10\xb5\x92\x9e\x79\x5c\xe3\x24\xa4\x64\x4d\xf0\x99\x05\xfd\xd5\x02\x2a\x9f\x98\x25\xc6\x5c\xd5\xb2\xfd\x7c\x94\xed\x5e\x6d\x48\x0a\xb9\x35\x2a\x7d\x0d\x3c\x4a\xaa\x6e\xc4\xfc\x5a\xb9\x59\xb3\x3a\x7d\x49\x49\x49\x1b\x8e\xe1\xd4\x2a\x3b\xdc\xe6\xa5\xa6\xa2\x62\xa6\xf6\x1f\x84\x28\x39\x57\x34\x0b\xd4\xc1\xad\x81\x1d\x11\xeb\xb8\x66\xf3\x2a\x91\x63\xc5\xcc\xe0\x2d\x49\x51\x0e\x4c\xc5\x85\x1e\xb3\x0a\xde\x9d\x0b\x91\x0b\x2c\xa3\x76\x78\xda\x1f\x99\x1a\x77\x21\xba\x09\x92\xae\x4d\xff\x57\x3f\x6c\x06\x27\x14\x2b\xaa\x37\x5d\xed\x68\x75\x97\xa0\x91\x7e\x53\xea\x8d\x65\x2d\x22\x00\x12\xf6\x08\x86\xc9\x4f\x61\x7f\x4d\x44\xfd\x59\xae\xe5\xab\x19\xee\x5e\xdd\xbd\x6c\x44\x6b\x2a\xc4\xa8\xab\x24\x22\xcb\x7b\x23\x57\x63\x52\x01\xa9\x88\x23\x76\xf2\x22\x2e\xfa\x76\x91\xd9\x76\x44\xea\x4e\xfd\xee\xac\xf2\x72\x91\xe2\x2d\x61\xcc\xb9\xe2\xa8\x6e\xa2\xb9\xdc\x62\xd4\x6b\x95\x5c\x59\xba\xd3\x14\x78\xa1\x68\xa4\xd4\x5f\x98\xf8\x99\x3a\xab\x87\x29\x0e\x80\xb5\xef\xdd\x7d\x15\x02\x68\x7a\xb2\x92\x08\x06\xbf\x3f\x38\xca\xc4\x18\x08\xf9\x43\x4b\xcf\xda\x89\xa6\xb3\xbe\x5d\x81\x41\x51\x57\x6f\x66\x9b\x63\xd4\xfb\x33\xa6\x4f\x87\x03\x7b\x6e\xf5\x55\x51\x28\x73\xcb\x54\x21\xbb\xb2\x6b\xcf\x29\xf9\x30\xdf\xb5\xec\x70\x5f\xaf\x38\x87\xa2\x0a\xed\x91\xf7\xe1\x95\x87\x11\x38\x8f\x83\xbf\x6d\xca\x19\x0b\x47\x28\x0f\x52\x8e\x5f\x5b\x17\xbf\x1b\xd7\xa6\x78\xb0\xdf\xd7\x2c\x04\xa9\x45\xa3\x5e\x5b\x6f\x66\xe6\x99\xb8\x54\x6a\x50\x86\x52\x83\xad\x67\xe2\xbe\x43\xc9\x2f\x25\x46\xc0\xf4\xb4\x24\x65\xe7\x1e\x20\x72\x62\x1f\x56\xb9\x4b\xb8\xdb\x32\xf2\x4e\x4d\x3d\x79\x29\x34\xa5\xab\x66\xf8\xe9\xff\x7d\xd9\x25\x81\x63\x51\x4f\x62\xa7\xd1\xab\x4b\x08\xbc\x01\x0a\xe0\xb9\x8b\xfa\x9d\xad\xf1\x89\x0d\xd6\x9d\x7d\x26\x25\x2b\xea\x31\x2a\xef\xfd\x44\x2d\x76\xad\x66\xa4\xcb\x69\x1d\xd1\x7f\xb2\x1f\xe4\x51\x77\xf2\x88\xb4\xd1\x9b\x79\xa5\x60\x9a\x93\xbb\x1c\x12\xb6\x60\xd1\x51\x43\xb7\xd9\x07\x32\x50\x18\xcf\xb7\x2b\xc1\xc5\x8e\xf6\xc8\x01\x36\x3d\xe4\x89\x38\x89\xb3\x59\x6b\x7d\x77\x78\x93\x0e\x71\xf5\xf2\x64\x09\xfb\x33\x2c\xe9\xab\x5c\x48\x7c\xa4\xec\x92\xfe\x7a\xb6\x71\x67\xc7\x0b\x9b\x19\xbe\xd8\x98\x09\x70\x87\x46\x82\xaa\x47\xc6\x26\x83\x50\x89\xac\xad\x09\x5e\x9d\x68\x6a\x11\x04\xdd\x03\x87\x21\xac\x86\x53\xa2\xd2\x08\x1d\x08\x3e\xb7\x19\x5a\xd7\x90\x19\xb8\x11\x4e\xeb\xac\x81\xbf\xf4\x6b\x65\x2e\x5d\xbe\x54\xf7\x62\x98\xe1\x78\xe5\x71\x49\x23\xa0\x08\xa2\xf9\xc5\xf5\x48\x30\x86\x5b\x11\xf8\xf4\x4c\x8f\x31\x04\x27\xee\x44\xa9\x02\xb1\xdb\xd0\xaf\x50\xda\xdc\xe1\x42\xd5\x4e\x62\x0c\x53\x49\x91\x8b\xe4\x19\x7a\xd8\xf0\x2c\x51\xa2\x56\x80\xc6\x09\x16\x5c\xa1\x6b\x08\x3f\xd7\x15\x2c\x33\x08\x45\x0d\x6a\xdb\xb2\xdc\x7b\xc0\xc6\x4e\xc6\x1e\xab\xcb\x2b\xfd\xe9\x45\xc9\x45\xb2\x95\x6f\xb7\xf2\x73\x5c\xf4\x6e\x32\x85\x8c\x2d\xf9\xa9\x88\x99\xe5\x37\x8a\x1b\xcc\xc7\x55\x07\x0e\xe7\x13\x19\xa0\x75\xe7\xba\x0a\xd4\x75\xb1\x7f\x53\x6f\x76\xe0\xb2\xe1\x58\xf9\x21\x1f\x5b\xc1\x86\xdf\x20\x7f\x99\xea\x02\x34\xb8\x6d\x83\x08\x9d\xb5\xa0\xa5\x6b\x04\x2e\x2e\x90\xc2\x1f\x3e\x16\x4f\xc4\x0a\x4a\xf8\x25\x18\xf0\xc2\x30\x23\xe3\x93\x20\xc0\x70\x05\x16\x2d\xd6\x2b\xdf\xed\xfb\xa8\xb7\x93\x3a\x10\x18\x75\x21\x6f\x38\x36\x27\x72\x93\xc8\x70\xf9\x50\x0d\x59\x77\x31\x2c\xc6\x9c\xfe\x22\xb2\xee\x22\x98\x9c\xe7\xf5\x0c\xc1\x1a\x54\xdc\x2a\x83\x79\x51\x66\xfe\x31\xac\xce\x9a\x17\x4c\x8a\x29\x66\xf6\x6c\x32\x1b\xe3\xbc\x4e\x55\x68\x59\x74\x6a\x68\x4b\xf4\x81\xc9\x47\xfa\x57\xef\xa3\xe0\x4f\x6c\xd0\x9d\x91\x14\xa3\xb5\x23\x4d\x5c\xb1\x7e\x19\xb9\xae\xe0\xd9\xfe\x46\x97\xc9\x17\x94\xf8\xd2\x68\x00\x86\x7c\x99\x3b\x1f\x8b\x13\x25\x50\x7f\x4d\x8d\x36\x38\x44\x96\xa0\x05\x06\x0e\x43\xb1\x06\x61\xd7\xb6\xeb\xd1\xac\x85\x5a\x65\x52\x6d\xc9\xa6\xef\x7b\xd2\x78\x1e\x27\xb2\xe6\xca\x7e\x52\x09\x48\x2f\x67\x56\xb9\x19\x4d\x4c\x17\xb4\x5f\x8f\x4e\x4d\xc1\xb7\x68\xab\x28\xca\x7f\x5c\x96\x3c\x8d\x93\xa7\xab\x12\xe3\x90\x30\xfe\x18\x53\x96\x21\xc1\x2f\x17\xe8\x79\x83\x9c\x4c\x27\xe7\x0d\xf7\x20\x77\xf6\x1a\xf1\x3c\x39\x90\x95\xaf\x63\x5f\x9c\x9c\x91\xaa\x54\xab\xf8\xaf\xa7\x20\xf7\xba\x43\x54\x61\xf0\xad\x92\xa7\x67\x66\xea\xf2\xa6\x48\xf3\xe1\xf9\xf4\xb0\xe2\x83\x6f\x3b\xac\x47\xd2\x0f\x0a\x71\xcf\xbf\xc4\x63\xd7\x90\xd9\x23\x95\xb0\xa4\x92\xa0\x0f\xbf\x74\x3d\xad\x13\xf6\x98\x1b\x7b\x31\xd2\x62\xa9\xd6\x6c\x66\x81\xe1\xd3\x00\xa5\xaf\xec\xf8\x12\xbd\x9f\x1d\x74\xc6\xb8\xe1\xca\xc4\xaa\xd8\x31\x9d\xe0\xfb\x7d\x74\x4e\x13\x61\xd2\xcc\xf7\xb6\x61\x9e\x21\x30\x00\x22\x6f\x11\xde\x3e\x28\x6f\x86\x65\x58\x4c\x3d\xe6\x21\xfc\x69\xba\x7b\xb3\xde\xf3\x9e\xe0\xbc\x06\x99\x4b\xe7\x56\xdd\x64\x90\x23\x5b\x2e\xa0\xcb\x9d\x59\x7d\x31\x19\x95\xbb\xa9\xf0\x5d\x62\xd3\x6a\x3c\x4f\x4e\x7f\xe9\xb4\x6a\xc8\x48\x8e\x66\x98\x96\x8d\xf5\x12\x10\xf2\x3a\x05\x61\xa0\xd2\xc9\xf1\x7f\x2a\x70\xb5\x7a\xe0\x0c\xdf\x60\xa2\x84\x6c\xdb\x55\x59\x5b\x66\xf8\x38\xd4\xa8\x56\x7e\xc9\xc1\xad\xb7\x1b\x95\x48\x99\x37\x94\xb5\x40\xea\xe4\xed\x5a\xdb\x9f\xf4\xe4\xba\x82\x4f\x8e\x30\x9a\x8a\x36\xab\x4a\x0d\x52\xd5\x6d\x9b\xa6\x48\xdf\x0e\x6f\x84\x9b\xe5\xfb\xfb\x93\xcb\x50\xf6\x1d\x4f\x5e\xb9\x3a\xa5\x72\x6d\x53\xd5\xa2\xae\x3c\x75\x53\xdf\xbf\x68\xb4\x51\x23\x18\x99\x82\x9e\xcc\x5b\xaf\x7a\xd7\xcc\x86\xc9\x5e\xe6\xf2\x43\x3a\xd9\xf6\x9d\xa2\x52\x37\xec\xcd\x2c\xdb\xa1\x89\xd2\x39\xc9\xb2\x19\xfc\x1e\x22\xd0\xb2\x3a\xcd\xb9\xd4\xe2\x52\x27\x30\xcd\xb6\xeb\xac\xd1\x01\xa7\xec\xa9\x06\x96\xa5\x48\xea\x5c\x30\x2f\x42\xbc\x07\xbf\x47\x15\xaf\x57\x16\x94\x78\xe0\x88\xf4\xa9\xf1\x68\xb6\xad\x39\x3f\xcf\x1b\xb3\x36\x29\x3b\x0e\xd9\x5a\x2b\x88\xe0\xaa\x01\x08\xff\x10\x96\xcc\x12\x94\xda\xd5\x9b\x9a\xbe\x73\x98\xba\x8b\x04\xab\xd0\xf0\xbd\x09\x2f\x32\xdb\xf9\x45\x01\x4e\xde\x5d\x3d\x96\xed\x47\x06\x9a\x13\x51\x40\xb0\x69\xd1\xcb\x45\x0c\x87\xe3\xab\x47\x9b\xd4\xe8\x16\x03\x81\xd4\xd5\xdb\x51\x43\x2f\x9e\x0e\xe6\xec\x88\x9e\xd1\x9b\x79\xec\xa0\x3a\xc6\xe1\x01\x8e\xf8\xc6\xa9\x39\xa7\x21\xb7\x5e\x38\x7f\xa9\x4c\xd2\x47\x1b\x7e\x8e\xa4\xa2\x15\xa8\x82\xeb\x56\x23\x37\x36\x9b\xd7\x68\x42\xc7\x63\xfb\x65\x71\x5e\x4e\x6d\x9c\x5f\x5f\x76\x16\xd9\xde\x4a\xa2\x80\xac\x42\xd3\xfd\x51\x01\x2e\x59\x40\xba\xcc\x7a\x79\x0f\x16\xd0\x12\x55\xee\x30\x60\x5f\xa6\xaf\x1b\x9f\x8c\xc4\x6d\x2a\xcb\x48\xfd\xf3\x51\xed\x50\xc8\xf0\x67\x9d\x3a\x6a\xdc\xf4\x54\x94\x49\x2d\x42\x6a\x67\x54\xfd\x55\x8c\xa1\x66\xe9\xd5\x06\x43\xa3\x73\x2a\x28\x55\x72\x5b\x65\x07\xd9\x3e\xc7\xe1\x05\xca\x44\x5d\xc2\xe7\xc3\x1c\x76\x50\xf2\xa8\xda\xc4\x8d\x9d\xb4\x9f\x46\x5c\x41\xe9\x2e\x59\x26\xb0\x9d\xef\x7a\x7c\x30\xca\xfe\x62\x0c\x1b\x7f\x02\x89\x24\x70\x5f\xe4\xac\xa6\xcd\x1c\x30\x84\xce\x36\xea\x1a\x65\xf7\x27\x0c\x8d\x1f\x59\x86\x5c\x20\xfe\x04\x54\x3a\x55\xdb\x68\xbc\x6c\x09\x10\xf7\xa2\x51\xc2\xee\x55\xba\x16\xab\x50\x5a\x93\x79\xe4\x98\x45\x30\xcb\xbd\xc7\x6e\x22\xf9\x90\x27\x07\xe8\xdd\x67\xfb\xd5\x4b\xb4\xb8\xce\x3f\x8d\x06\x0b\xb5\x9b\x68\x55\xaa\x22\xbf\x3d\xc7\x24\x32\x0a\x05\xdc\xcc\x7c\x70\x22\x39\xf5\xaf\x71\x9b\xc5\xaa\x94\x89\xf4\xfd\x56\xed\x9b\xc2\x0b\x68\xdf\xa5\x96\x6f\x46\x6b\x5b\x86\x36\x8d\x1c\x18\x3e\x7c\x49\xeb\xcc\xc8\x2c\x66\xd5\x70\xa4\x07\xac\x93\xae\x60\xef\xe1\x6b\xcc\xfb\x89\x86\x35\x1e\x24\x8c\x7f\xd5\x6d\x0e\xfc\x65\xe4\x8d\xfa\x4d\xc1\xc2\x97\xf5\xb7\x74\x28\x6a\x5f\x8f\xc6\x08\xbd\x35\x3e\x73\x19\xb8\x34\xad\xd4\x8f\xe5\x57\x11\x04\x3e\x7d\xdf\x02\x7c\x0a\x0d\x29\xd3\x4c\xc7\x31\xa3\x33\xe0\xa9\x51\xa5\x6c\xaf\xff\xf7\x6b\x9a\x69\x6d\x85\xff\x50\xc0\x2c\x9d\x60\xfa\xc0\xeb\xcc\x0c\x97\x0a\xe1\xd7\xbc\xb8\x0e\x3d\xf6\x91\xd1\xce\x08\x8f\xcd\xc4\x9c\x13\x3e\x53\xf8\x07\x72\x9b\x8c\x5c\x5f\x42\x29\x00\x61\x12\x09\xec\xfe\x62\xa1\x01\xa4\x95\xae\x56\x2a\x53\xf8\x67\x63\x4b\x58\xc4\x56\x03\x85\xcc\xb9\xf1\xad\x13\x16\x56\x93\xb3\x3e\x40\x40\x15\x40\xb2\x22\x77\xc7\xb2\x65\x2d\x15\x6f\xea\x34\xce\xb7\x70\xc6\x7c\xc4\xd4\xbe\x2d\x16\x99\xe5\xdb\x9e\x2c\x78\x46\x6e\xd0\x0c\xd0\x49\xed\xb9\xae\xe0\x86\xf1\x86\x66\x77\x01\xd0\x6b\x0a\xb1\x2b\x5b\xd2\xe7\xba\xe1\x7b\x2c\x62\xb4\xc6\xa5\x68\x02\x72\x2a\x2f\xea\xb7\x97\x27\xc2\x21\x02\x6b\xb8\x0e\xd8\x68\xc2\x32\xab\x35\x41\xcb\xd4\x51\xeb\x9f\x7e\x77\xe1\xb5\x46\x1d\x67\xb1\x1a\x8b\xe1\x02\x99\xbf\x1d\x68\x88\x22\x92\x4a\x99\x58\xe5\x0a\xb1\x35\x2d\x30\x98\x76\xcc\x28\xe7\x25\x72\x5e\x71\xa7\x66\x9c\xb9\x12\x01\x61\xe0\x6e\xfa\x9b\x49\xd7\x18\x49\x8e\x28\x12\x41\x95\x9d\xf8\xea\xcd\xc9\x77\x4e\x6c\xda\x60\x0e\x4d\x70\x41\xfe\xe3\x31\x93\x0b\xa2\xf0\xf1\x5d\xbd\x69\xb1\x2a\xf9\x6f\xd2\x61\x50\x75\xba\x97\x18\xa0\xbf\xbc\xcd\xad\x68\x1a\x9b\x3e\x08\x7a\x2a\xb9\x39\x82\x37\x1c\xb7\x1e\x26\x14\x51\x72\xdb\x07\x09\x1a\x15\x49\x5e\x48\xa3\x97\xae\xde\xcc\x9b\x6b\x55\xd2\x1b\xde\xa3\xca\x1b\x34\x7b\xd3\x90\x51\x2d\xab\x4e\xa4\x7e\x5b\x8c\x66\x7f\x69\x63\xf2\x19\xb9\x10\xcc\xe0\xa6\xa4\x5f\xdd\x82\xf2\x09\xd9\x7b\x92\x47\xee\x61\xa4\x7d\xda\x88\xf2\xcb\x3b\x8d\x6d\xe4\x50\xbf\xac\xee\x17\x9d\x7d\xcd\x5c\x64\xaa\x98\x39\x0a\x3e\xd4\xd6\x0e\xb9\xb0\x9c\xd1\x86\xbf\xa8\x10\x78\xe9\xef\x9f\x91\xfb\x23\xb7\x94\xfb\x52\xce\xd6\x8c\xc3\xab\xde\x40\xc2\x75\x51\x29\x90\x5e\xe6\x21\xd3\x54\x8b\x38\x4a\xde\x24\x9b\x7b\xd7\x64\xb8\x7a\x54\xd4\xfc\xbc\x7d\x69\x59\x9d\xd4\x90\xdd\x68\x06\xe5\x3b\x56\x19\x88\xa0\xcb\x47\x41\x6f\x71\xa1\xcd\x9b\x78\xb7\xf7\xef\x31\xf0\x55\xcc\xa6\xd5\x2a\x51\x54\x88\x6b\x57\x44\x3c\xbd\x9a\xcd\x5d\x70\x16\xfd\xab\xdd\x58\x7a\x8b\x57\xe4\xc7\xf7\x79\x3b\x82\xf5\x7a\x58\x89\x34\xf3\x77\x8f\xe9\x2c\x52\xc2\xcc\xf4\x29\xfc\xe1\xeb\xea\xd6\xa7\x02\xc0\xa2\xbd\xe9\xfd\x0f\xeb\x8f\xa6\xaa\x4b\x90\xfa\xc6\x49\xf8\xe8\x6a\xd3\x2b\x73\x9b\x97\x94\x9c\x7f\x7a\xa4\x71\x17\xac\xf1\x99\x55\x51\xf2\xe0\xc1\x07\x2f\x5d\x85\xf2\x5c\x5f\x65\x5a\x64\xa0\x16\x87\x2d\xb4\x74\xe4\xb2\x0b\x1f\x31\x01\x01\x4e\xd1\xf6\xad\x48\x67\x39\xc3\xc7\xa1\xb2\x90\xe7\xba\x82\x5b\x96\x5f\x02\xc1\x2d\x9a\x6e\xc4\xbb\xcb\x04\x07\x92\x9f\xd8\xe4\xa2\x82\x7c\xc9\x33\xbb\x86\x1b\xbb\xcb\xb7\xca\x4a\x0c\x60\x4a\x0d\x96\x67\x21\x2d\x7a\x8a\x20\x39\x6e\x97\x21\xb2\x40\x1d\x5a\x64\xb1\x68\xfa\xd4\x53\xa8\x99\x2b\x68\x45\x9e\x99\x77\x0c\x58\xb5\xf0\x2d\x6d\xa9\x99\x62\x86\x5e\x9c\x6b\x13\xa6\xc4\x29\x33\xff\x39\x30\xf9\xdd\x04\xe7\x55\xd5\xbd\x2e\xbf\x8c\xb0\x32\x5c\xe4\x59\x01\x40\xcc\xd9\xdb\x06\x24\x7f\xc7\xe6\xc4\x01\xf9\xb9\xf4\x6f\x5e\x40\x56\x8d\x3d\x35\x25\xe3\x9c\x79\xec\x45\x03\x49\x61\x37\xe2\xe1\x61\xaa\xd1\x5f\x9f\x66\xd7\x77\xc0\x63\xf0\xf2\x83\x88\x39\xa3\x1d\xad\xc2\x0f\xfb\xee\x91\xd6\xda\x4e\x4d\x48\x7b\x33\x2b\xfb\x0f\x4e\xf6\x18\xa0\xba\xbb\xb0\xcc\x68\x0f\xfa\xa2\xc2\xd4\x78\x56\xa5\xed\x0f\x2c\x32\x09\x41\x6e\x39\x2c\x2a\x48\xad\x16\xe3\xa9\x1f\xed\xd3\x72\x6b\xe4\x89\xa7\x9c\xd5\x24\xab\xe8\x0d\x5d\x7e\x17\xa1\x61\xd8\xa2\xfb\x78\xf3\x74\x63\x5c\xcf\x64\xa0\x0d\x57\xf6\x21\xe3\x4d\x85\x45\x14\xcc\xba\x83\xa7\xfb\x27\xa7\xef\x25\x6e\x17\xf2\x54\x94\x92\x3a\xa2\x99\xd9\x2f\x42\xe5\x49\x9d\xba\xd4\x3e\x79\x73\x03\x42\x5b\x12\xe1\xb1\x5c\x57\xf0\x9f\x86\x04\x88\x4b\x58\x61\x62\x77\xb7\xdc\x2b\x83\x55\xe3\x86\x58\x9e\x4f\x04\xdc\xdc\xd9\xaf\x6a\xec\x53\x89\xe8\xd3\x1d\x1c\x7b\x11\xc9\x0f\x48\x41\xc9\x64\x33\xe7\xa6\x0e\xc3\x9d\xb2\x9a\x27\x42\x10\xd7\x8d\x11\x5d\xa9\xe9\x6b\xc7\x19\xe1\x9e\x96\xe2\x56\x64\x32\xa2\xee\x5f\x30\x18\xe1\x41\x3c\x2a\x1c\xea\xe5\xba\x82\x23\x4f\x0d\xc5\x00\x39\x0f\x0c\x0d\xe5\xdd\x74\x71\xa0\x52\x03\x75\x4a\xd4\x96\x31\x1a\x0c\x7e\x15\xb6\xc1\x77\xdc\xb0\x80\x0d\xb7\xdb\xe9\x43\xd0\xc7\x9f\xc7\x4a\x4d\x6a\xf3\x16\x4d\x9b\x47\xfa\xe1\x6d\x55\xa7\x8e\x0f\x80\x9d\xd3\xd3\x93\x9b\xa6\xc9\x4a\xc4\x36\x6e\xab\xca\xca\x71\xc6\x71\x11\x7f\xc2\x69\x32\xdb\x75\x52\x37\xec\x19\x97\xa8\xc5\xba\x31\x55\x5b\xe3\x33\x8f\x46\x5a\xd5\x47\x9f\x35\x2c\x6e\x40\xcd\xd4\x8d\x82\x59\xea\x37\xe3\xe2\x8a\xbf\x5b\xb2\xa1\x27\x8d\x8c\xaf\x25\x9b\xc4\x02\xe1\xf4\xc8\x28\xdc\x98\x2f\xd0\x96\x66\x5f\xfa\xd4\x69\x34\xe2\xb7\x99\xe4\xe6\xfe\xa7\xa1\xca\xd4\xcd\x9b\x31\x42\x6c\xda\x8a\x21\xa8\xb0\x44\x42\x2b\xdf\x08\x8c\x46\xbf\x74\x0c\x51\xa2\xbe\xc1\xee\x8b\x83\xa2\x8c\x4d\x96\x6e\xea\x97\x8e\x1b\x2e\x57\xc4\x21\x76\xd3\x65\x11\xf6\x30\x75\x71\xa3\x4e\xee\xc3\xdc\xde\x8b\x74\xdd\x7f\x75\x1e\x99\x24\xd2\x1a\x75\x0a\xaa\x6d\xb0\x6b\x28\xb2\xdf\xf3\x9d\x12\x10\x43\xbe\x63\xf8\x8b\x11\xbf\xe4\xbb\x1e\x50\x8a\x5e\x3f\x04\x75\x7d\x83\x78\x54\x48\x1b\x6e\xa9\x07\x99\x46\x3b\x83\x49\xf9\x49\xb9\x33\xde\x7c\xc6\x9c\x03\x28\x0d\xe9\x49\xb9\xae\x60\xca\x28\x1d\x26\x85\x9f\x67\xa0\xb3\xfd\x26\xa2\x78\x34\xc2\x83\xe2\x28\x00\x6f\xfb\x28\xd4\x6b\xf6\x38\xb8\x82\x07\xfd\x17\x29\x7f\x0f\x6b\x2e\x37\x6e\xdd\x5f\xae\x1c\x8e\x41\x97\x55\xe6\x68\x55\xb0\xec\x35\x1f\xe9\x1a\x52\x0e\x43\x25\x0e\x19\xa3\x8d\x3e\x3e\x7d\xe8\x25\xaa\x68\xc9\x63\x1d\x64\xc7\x1b\xaa\x21\x7b\x42\x66\x56\x2f\xaf\x53\x66\x41\x9a\x1c\x2c\x99\x0d\xaf\xf3\xe6\xc9\x71\x65\x9f\xeb\x0a\xbe\x77\x54\xf7\xa1\xa6\xb5\x87\x6f\xe3\x7f\x4d\xba\x42\x23\x92\xfd\x5c\x57\xf0\x70\x07\xe2\x2d\x87\x25\x7c\xb8\x0e\xff\x39\xd2\x74\xe0\x94\xa4\x1d\xd8\x39\x9f\xcd\x43\xe4\x92\xa4\xf8\x28\xdf\x2a\xbd\x94\xdc\xa1\x45\x09\x58\x82\x0a\xab\xda\x17\x39\xd5\xc9\xe2\x5e\xd0\x92\x72\xf9\x0e\xee\x37\xac\x73\xf2\xdc\x75\x14\x13\x41\x05\x97\x1b\x4f\x18\xc4\x1b\x4a\x2b\x91\x57\x68\xfa\x3b\xef\x63\xec\x9a\x27\x98\x32\x6b\xfc\xda\xb3\x00\x31\x98\x32\x69\x6a\xa7\x7c\xf0\xd9\x33\x71\xe3\xdf\x2b\x87\xf7\xaf\x6c\xda\x3c\xb0\xd3\x14\x11\x22\x1a\x7f\x99\xda\x82\xd4\x8a\x18\xc4\xb0\xde\x74\xef\xd1\x3f\x61\x5f\x2a\xaf\xcd\xd5\xcf\x1b\x7c\x58\x52\xad\x49\x97\x3f\x58\x8d\xa9\xbb\x31\xc3\x9d\x39\x92\xa7\x07\x09\xd5\x3f\xb6\x99\x44\x3b\xcb\xaf\x46\xd3\xde\x6c\x76\x92\xfe\x2a\x53\xda\xdb\xa6\xb4\xcb\x3a\xe6\x6d\x63\x76\xe6\x56\x22\xe9\xf0\x74\xfd\xa3\xeb\xd1\xda\xc4\x4a\x2e\x88\x72\xd2\x9b\xb9\x35\x8b\xaa\x0a\x26\x7d\x29\xc3\xe5\x9b\x55\x47\x16\xa3\x61\xf2\x4c\x7c\xa7\x10\x47\x96\xb3\x75\x38\x10\x77\x33\x47\x52\xc6\xd0\x6c\x68\xeb\x07\x3a\x7a\x4d\x99\x21\xb5\x3e\xde\x7f\x0c\x52\xaf\xae\xa2\xe4\x1a\x48\x87\x8a\xd7\x31\x56\x99\x56\x99\x5f\x95\x08\xa3\xbd\x86\x0d\x3a\x2d\x71\x2f\x21\xc9\x9b\x7e\xf0\x69\xc4\x49\xa3\xac\x54\xce\xcb\x68\xfb\x2f\x7b\x50\x6a\xc3\x7d\x69\x56\x19\x7c\x7d\x92\x12\x44\xe5\x45\x19\x41\xe6\x6c\x35\x54\x36\x1c\x87\xfb\x8e\x05\x21\x71\x6c\xf8\x7f\xf4\xe9\xd1\x79\x2e\x75\x4a\xa0\x67\x97\x9e\xbc\x39\xa9\x63\x5e\xe6\x76\x5e\x70\x5e\xa1\x46\x4a\xc0\xb7\x1b\x72\xc1\x61\xe2\x5a\x83\xb1\xee\x3f\x3c\xa8\x38\x10\xbc\x46\x95\xab\x72\xea\x85\xb2\xa1\x70\xcb\x1b\xc4\x91\xd6\xb4\xd1\xd3\xde\xb2\x24\x59\xfb\xd2\x1a\x2b\xd0\x2a\x93\x79\x7b\xec\x08\x9a\x39\xd9\x63\xe8\xd0\x41\x39\x23\xfd\x04\x07\x98\x36\x6f\xb1\x31\x15\xec\xc6\x67\xcb\x09\xed\x08\x69\x34\x1a\x3e\xf3\x2d\x67\x75\x7f\xaf\xee\xdb\x0e\x15\x10\xe8\x83\xb3\x5a\x7e\xc3\x97\x37\x7a\xe1\xf5\x11\xa8\xfc\xb7\x0b\x82\x95\x70\xaf\xf2\x1b\x43\xe1\x25\xb4\x4f\x93\x4a\x5f\xd9\x89\x4e\x3c\x44\xa2\x6e\x6b\x07\xef\xc7\x4f\x99\xc0\x74\x0f\x34\xa1\x64\xde\x1b\x7c\x7a\xb8\x31\x9d\x76\x98\x6c\x58\x7a\x20\x51\x98\xd9\xbf\x5c\x27\xed\x35\x9b\xca\x61\xd3\xfb\xcb\x93\x09\x5d\xa5\x1c\x86\xfc\xb5\xcc\x10\x86\x9f\xb3\x3e\x39\x21\xa6\x4e\x01\xe6\x02\x99\x05\xc7\xe3\xaf\x5c\x21\x2d\x14\x9d\xec\x67\x96\x40\x45\x35\x67\xc9\xfd\x4b\x97\xde\xb5\x70\x69\x14\xb7\xec\xd5\xa8\x74\xac\x36\xa2\x5b\xe1\x73\xf3\x0c\x6a\xab\xe5\x41\xb3\x27\x73\xdb\xac\xab\x50\x9c\xac\x73\x39\x87\xca\xac\x1c\xd8\xda\x40\xa1\x1e\x93\xbd\x19\x39\x15\x4a\x2f\x31\x51\x9d\x90\x28\xc3\xc6\xdb\x77\x4a\xdf\x75\x4c\xc0\x0c\x5d\x82\xa5\x9f\x7a\xf5\x4a\x24\xbb\x22\x07\x96\xe9\xbf\x59\xa2\x43\x4c\x81\x38\x50\xeb\xfe\x6a\xa8\x01\xa3\x23\x55\xd5\x27\x49\xf7\x57\xcc\x37\x3b\xdc\x56\x12\x7e\xb4\xf4\x5c\x4b\x6b\x3a\xac\x2a\x14\x8a\xe3\xff\x1d\x1f\x8a\xaa\x69\x97\x39\xd4\x75\xab\x92\x98\x34\xa6\x5b\x59\xcc\x11\x17\x4c\x73\xc2\x4c\xfc\xd0\x70\xb3\x96\x70\xe2\xf9\xdb\xc7\xb2\xba\xd7\x2e\x78\x99\xe2\x3d\xf7\xbd\x32\x32\x49\x94\x1d\x8a\xe8\x5f\xbe\xbc\x03\xeb\x95\x78\x56\x59\x41\x93\xff\xfa\x00\xca\xde\x3d\xd0\x52\x4a\xb1\x33\xfa\xdb\x86\xfb\x50\x54\xd5\x0c\xab\x37\xb5\x7b\x88\xfe\xa7\x38\xd9\x86\x20\x3e\xe3\x79\x13\x0f\x27\x55\xb8\x63\xda\x6f\xfa\x9b\xe7\xa2\xfe\xbc\xa0\x2e\x95\x11\xe6\xa6\x49\xfa\x72\x8a\xcc\x72\x25\x8b\xe9\xa3\x65\x2d\x62\x00\x1e\xf7\x9a\xb5\x08\xba\xd7\xb5\x2c\xde\x9a\x35\x69\x4d\x90\xcc\xe4\x3f\x3b\x53\x7f\x4d\xb4\x6f\xc2\xc0\xf0\xd4\x28\x0c\xac\xb8\x44\xf9\x94\xf9\xde\x24\x1d\xa4\x6f\x6e\x6f\x9f\xd4\x1e\x1e\xe0\xe0\x27\x1f\x19\x33\x01\xde\x24\xb6\x7a\x27\x37\xdf\x9e\x20\x7d\xd8\x91\x21\x53\x76\x5a\xf1\x5a\xb4\xb3\xa3\xf4\x50\x0a\x6d\xc8\x7f\xbf\xde\x80\x77\x15\x39\xf7\xf2\xc4\xb6\xd5\xd0\x9e\x1f\x53\x42\x5c\x36\x15\xd0\x20\xf9\xc4\x6a\x74\x81\xc8\x3e\xba\x2c\x7f\x9f\x1a\x85\x64\xa5\xca\x5c\x78\xb9\xf0\xad\x85\xbf\xf0\xde\x3c\x13\xef\xe3\x48\xe5\x06\x79\x82\xd6\x28\x19\x93\xc5\x82\x56\x89\x80\x95\x5d\xb4\x3c\x4e\x94\x3a\x66\xc8\xd8\x72\x7e\x2e\x6a\x29\x95\x7d\x4f\x35\xdf\x33\x1d\x4e\xfc\x7f\x46\x49\xd6\x84\x64\x2b\xac\x4a\x6c\x89\xe2\xc1\x37\x59\x6a\xe9\x63\xc9\x6a\xc5\x13\x80\xa0\xb0\x4c\xf9\xe1\x60\xc3\x72\x7c\x5b\x32\x8b\x01\xdb\xe1\x77\x87\x0d\x05\x27\xdd\x39\x8b\xa0\x97\x3f\x9c\x99\xfc\x5f\xea\xc4\x63\x96\x4c\xae\xa2\x6a\x3c\xfd\xfa\x50\x63\x61\xa4\x89\xbf\x12\xb9\x7f\xed\x35\x0c\x8e\x29\x44\xa1\xe3\xd1\x9a\x29\xcd\x0e\x57\x0e\x71\x22\x6a\xfb\xb3\x86\x98\x50\x99\x12\xe1\xe5\x29\x89\xa0\xdd\x53\x4f\x5c\x8d\x7a\xd7\xae\x4b\x85\x9b\xcb\x87\xb7\xc9\x15\x03\x0d\x85\x3a\xea\x78\xd4\xb1\x54\xbb\x3f\xf8\xc2\x33\x26\x53\xc4\x22\x91\xa4\x77\x7a\x33\xda\x7e\x8e\x32\xa7\x87\xf1\xd7\x72\x7d\x67\x01\x25\xf5\x4a\x64\xb2\xd7\xa0\x80\xee\xfe\xfb\x45\xc9\x7b\xc2\xa1\x0d\xf7\x12\x13\xef\xbe\x17\x0c\xb9\x07\xc7\x63\x82\xda\x4d\x45\xad\xdd\xba\xd7\x50\xad\x10\xd4\x75\x55\x3b\x3f\x9b\xfe\xd0\x00\x85\xf9\x2e\x8d\xed\x0b\x32\x23\xb7\x0f\x52\xe7\x31\xe6\x36\x84\xdf\xfe\xd4\x7e\xa3\x8f\x46\x3c\x5a\x02\xd7\x08\xb9\x2f\x07\x18\x6d\x33\x41\xc3\xa8\xc7\x0b\x71\x33\xa5\xf2\x48\x2c\xe4\x5f\x08\x1f\xf4\x17\x6f\xc5\x5d\x06\xdb\x5f\xab\xbb\x0c\x8f\x0e\xc5\x1d\x66\x8b\x29\x2e\x7d\x7a\x92\xa2\xd8\xdf\x61\xd3\x1e\x94\xee\x6c\x3c\x0a\x8d\xd9\x3b\x00\x40\x66\xee\x5a\x32\x76\x90\x8a\x9c\xd5\xf0\x2d\x45\x56\x06\x3f\x5c\x80\x4a\x2c\x4b\x50\x22\xf3\xcd\x7f\x51\xc4\x5d\x8f\x54\xa8\x13\x26\x2e\x0b\xd7\x9b\xfb\x40\xe4\xb1\x62\xcc\xc4\x59\xb8\xdc\xb4\x58\x81\x16\x00\xde\xe6\xcf\x42\x4e\x85\x96\x45\x5c\xf5\x77\xfb\xee\x18\x6a\x5e\xbb\x91\xe2\xe7\xfd\x46\xed\xd2\x31\x69\xca\xf4\x19\x0a\x6b\xfb\x45\x43\x69\x23\x4f\x63\x64\x74\xea\x1b\x7d\xcc\xc9\x91\xa8\x4a\x0b\x56\x85\x5c\x6e\x6e\x46\xc5\x27\x25\x96\xda\x8d\xcf\xad\x44\x70\x75\xbf\x56\xb3\xc1\xc0\x37\xb5\x72\xf7\x08\xf4\x73\x9b\x36\x93\x16\xfd\x73\x6a\x46\x73\x93\x0b\x0a\xfe\xb6\x5f\xdc\x74\xa9\x66\x96\xcc\x5d\xb2\x97\x7b\x48\xb0\x1e\x08\xc9\xc1\x2e\x5b\x1f\x3e\xe2\x60\xd3\xaa\x3f\x3e\x91\xcc\x37\x6b\x44\xb8\x80\x7f\xc0\x7d\x96\xc7\x6f\x4f\xe8\x4d\x3a\xf2\xc4\x7f\x7a\xd6\x04\xf3\x57\x95\x3f\xfa\x25\x51\x06\xeb\xbb\x91\xb3\x9d\xa8\x82\x43\xc9\x07\x8f\xa9\x21\x74\x51\x6f\xca\x7f\x3a\xa6\x9d\x1a\xed\x16\xd0\x51\xfa\x07\xc3\x4d\x21\x1a\xe2\x14\x22\x2c\x65\x19\x41\xc7\x68\x6c\x23\x94\xda\xfb\x70\x32\xf8\x84\xa5\x28\x90\x45\x37\x74\x0f\x51\x6f\x2b\xcc\x5b\xfc\x48\x44\xa8\x37\x4d\x16\x23\xfd\x2c\xc0\x43\x86\xdb\xd6\xf9\x00\x39\x62\xb4\xe5\xdb\x24\x6d\x36\x4b\xc7\x61\xef\x62\x1a\xdb\x12\x5e\x34\x18\x70\x16\x2f\xc4\x02\x46\x6c\x03\x1a\x81\x7a\x82\x25\xb4\x1e\xdf\x75\xd0\x4b\x74\xd5\x08\x62\xd5\x42\xd3\xe2\xdb\xae\xa8\x11\x93\xb3\x03\x44\x20\x17\x13\xc7\x2a\x13\x8c\x6d\x9f\x76\x11\xb1\x51\xfc\xa8\xeb\x93\xb6\x8e\xe8\xcc\xb3\x4c\x05\x87\xdb\xf4\xf2\x07\x0d\x1e\x52\xde\xcf\x93\x0a\x31\x1c\x95\xd2\xc1\x63\x70\x76\x6f\xcc\x53\x5b\xf6\x82\xb2\xf9\xcd\x1a\x7e\xda\xd1\x19\x37\x24\xe4\x3b\xee\x9a\x0b\xb5\xe3\x22\x52\x0a\x77\x0e\xf6\xac\x9c\xae\xe7\xc3\x05\x86\x60\xd0\x99\x1d\xcb\x4c\xb0\x71\xcd\x93\xa2\xdf\x70\x7d\x97\x46\x21\xc8\x3d\x69\xac\x65\xe1\x0f\xf9\x68\x58\x83\x05\xc4\xaa\xb8\x09\x67\xb6\x91\xcf\xc0\x6d\x3f\x8f\x95\xca\xd1\x00\x7d\xe9\xbe\x2b\x54\x26\x09\x26\x9c\xbd\x99\xef\x4e\x6f\x6d\xb7\xb0\xf0\x00\xc9\xba\x6a\x62\x3f\xbd\x60\x25\x62\x4b\x4c\x62\xd0\x89\x8c\xeb\x88\x23\xf3\x38\x99\x13\x7f\x50\x88\xe3\xad\xe7\x23\x25\xfa\xd4\xa7\x9e\xd1\x69\x91\x4d\x04\x59\x4b\xf2\x04\x39\x8f\xa4\x87\xbc\x68\xba\xab\x3a\xa4\xca\x0c\xdb\x97\xde\xf4\xd4\x0b\x58\x07\xdc\xad\xf1\x0a\xf8\x6f\x6d\x5f\x3d\x10\x75\xde\x3c\x89\x36\x49\xdd\xb4\x63\x08\x92\xef\xb0\xbd\x02\x6f\x38\xf2\xc5\x6c\x79\x4c\xd7\x03\xe0\x11\x37\x08\x11\xa2\x89\x88\xcc\xc8\xf7\x1b\x33\x6b\x62\x59\xbe\x20\x9e\xbe\x01\xbf\x76\x1a\x91\x1a\x98\xa0\x96\x07\xea\xe0\xab\xde\x4b\x86\xcb\x48\x66\x23\x6a\xb5\xfc\x7e\x83\x92\xb1\xe0\x4e\x29\xbc\x34\xab\xd2\x21\x28\x73\xbd\x26\x4f\x14\x48\x15\xbd\xc7\xd7\xcf\x26\x71\x33\xd3\x3a\xd4\x44\x79\xcf\x6a\xc3\xc1\x89\x55\xab\xcc\xaa\x44\xf4\xea\xec\xe7\x6b\x23\xe3\x2f\x98\x73\xb9\x44\x00\xd2\x44\x6f\xff\x7d\xe5\xb1\x5c\xf0\x6d\x90\x50\x1a\xb9\xac\x7f\x4c\x0a\x9d\x9c\xeb\x0a\xe6\xbd\x85\xfa\xc7\x70\x86\xfe\xbb\x47\xe7\xda\xe1\xf2\xe5\x69\x41\x48\x0e\x6a\xb0\x67\x9f\xde\x2c\x61\x22\x08\x32\x6d\xaf\xed\xd1\xc1\x49\x01\x78\x72\x5d\x41\xc6\xb0\x2d\x11\xb2\x61\xa3\x17\xe9\x5e\x43\x65\x05\x40\xf5\x4d\x30\xde\x3c\xa3\xdb\x7d\x55\xaf\x1c\xfe\xef\x4f\xb6\x27\x5b\x17\x5c\x14\x14\x1e\x2e\x19\x8e\xdf\x7a\xda\xf0\xe1\x61\x55\xa6\x9c\xd8\xbf\xf2\xf2\xf5\xc6\xed\x42\xcd\x1d\x98\xba\xed\xd5\x38\x05\xce\x95\x65\x29\xb0\x6a\x2a\x42\x91\x15\x20\x09\x92\xe5\xd1\xd4\x27\x31\xae\xd8\xf5\x58\x91\x45\x2d\xe4\x6f\xbe\x04\x79\x8a\xcb\x39\x6c\xc9\x0f\x0e\x6a\x6c\x87\xc3\x5b\x95\xb7\x96\x7d\x84\x5c\x64\x6c\x26\xbc\x28\xcb\xc8\xec\x3e\x84\xa0\x67\xbc\x01\xc4\xd4\xf0\x23\x0f\x18\xda\x64\x65\x2a\x2a\xac\x2a\xd7\x24\x9a\x1c\xd7\x35\xd5\xb1\x43\x4a\x42\xa5\x87\x08\xa3\x29\x5e\xe0\xb2\x1d\xa2\x3c\x29\xb2\xeb\xeb\x91\xd7\x89\x07\x7c\x97\x76\x13\x39\x03\xf6\x6b\x5c\xe9\x01\x65\x9e\xfd\xc0\xb8\x09\xca\xcc\x8e\x2c\xce\xc6\x1c\x41\xf6\x3e\x0d\x4a\x3d\x75\xf0\x32\xdf\xda\xa2\x12\x2a\xe6\x4a\x5c\x95\x2a\x3f\x7a\x66\x8e\x46\x8b\x24\x62\x1c\x7a\x82\xda\xb7\xd8\x90\x8f\x6d\x30\xc7\x51\x70\xed\xe0\xf4\xf3\x26\xfe\x4c\xe5\x2f\x17\x3f\x1c\x6e\xe6\x60\xf5\x68\xfe\x97\xfa\xab\x36\x78\xe6\xc9\x93\x73\x93\xa7\x4a\xaf\xda\x47\x0d\xe4\x13\xd7\x6d\x82\x93\x7f\x92\x9f\x2e\x37\xf5\xfa\xe1\x06\x69\x13\x34\x47\xd0\x0d\xf8\x65\x63\xb2\x0b\xe0\x26\x79\x9a\xfd\x51\xad\x68\x74\x70\x8b\x54\x2d\xae\x1f\x2f\x34\x11\x9f\x5e\x24\x0b\xea\x2c\x89\x97\x54\x99\x32\xca\x95\x2e\xce\x35\x47\x0a\x25\x50\x91\x96\xff\xfa\xdd\x47\x07\x61\x08\xb9\xc5\x1d\x39\xac\xb5\xd6\xea\xc0\x5a\xa7\x4e\x89\x82\xc0\x58\xb0\x75\x37\x34\xc0\x96\x10\xa9\x37\x96\x9e\xb3\x67\xb4\x91\xce\x0b\x9b\x1b\x29\x56\xea\x7a\xb4\x09\x04\x95\x52\x32\x12\xcd\x7c\x60\xf4\xf5\x66\x96\x15\xeb\x7e\x45\x45\xdf\xec\x0f\x11\xac\x97\x08\x5a\xf4\xed\x5c\x57\x70\xb4\x7f\x52\x07\x51\xf0\x7c\x9e\x8a\x5c\x9e\x08\xee\xe4\x5c\xaf\x69\xab\x2a\x2a\x9b\xee\x36\x78\xd6\x25\xee\x30\xed\xb9\x9f\x7e\x69\xaa\xd1\xb0\xa7\x76\x91\xb8\xde\x44\x29\x89\x24\x07\xbc\x0b\x66\xa1\xfc\x90\xa8\x8a\x7d\x90\x31\x4c\x06\xe1\x0d\x95\x65\xbf\xfd\xe4\x95\x51\xde\x15\xf9\x7c\x66\xef\x39\x32\x00\x0d\xa6\x65\x8e\xf9\xd0\x08\x58\xca\x79\x04\x8a\xfa\x55\x3b\x91\x66\x1f\xab\xe5\x78\xb1\x98\xeb\x0a\xfe\xe6\x7c\x1c\x8c\x68\x8f\x8c\x82\x3f\x7f\xdb\x88\x82\xae\xc4\xdd\xb5\x74\xf2\xee\x5e\x92\xfc\x8e\xb6\x44\xb1\x2b\x77\xc9\xd3\xbb\x4d\x99\x4b\xdf\x05\x83\x7f\x39\x88\xf8\xf2\x07\xf1\x25\x9f\x67\x98\xd8\xf0\xcf\xf3\x5a\x22\x76\x45\x4b\x37\xff\xba\x6f\xfc\x65\x6f\x9c\x11\x9e\xa3\xd4\xe6\xad\x57\xaa\xaa\xc6\x23\x0c\x04\xa8\x17\x8d\x8b\xbb\x3c\x05\x66\xe6\xd2\xc1\x37\x2e\x4b\x66\xde\xa5\x30\x38\x38\x2a\xf3\x6e\x15\x49\xf9\xf3\x45\x1a\x76\xe1\xb2\x5c\x57\xf0\xfb\x3e\x80\xed\x5a\x16\x0b\x53\xe8\x2f\xef\xee\x35\x86\x23\xcd\x70\xbf\x45\xa0\xd1\xbe\x87\x93\x61\x6c\xf2\xa4\xce\x8e\x76\xb8\x8a\xea\x17\xb5\xe6\x93\x08\x93\xa3\xdf\xbd\x9f\x04\x21\xc3\x40\x82\x8b\x4b\xce\x67\x53\xb3\x0f\x25\xbd\x1b\x3a\x6f\x86\xcb\xa8\x13\x65\x2f\xb4\x07\x88\x8f\x32\xc7\xea\xe9\xbe\x1a\xd5\x5a\x5a\x5d\xac\x37\x7d\xc3\x20\x93\xb0\xe4\x98\xca\xbf\xeb\x9f\x37\xce\x3b\x73\x4a\x5a\xde\x75\xe6\x24\xd4\x22\x97\xaa\x6e\x10\x07\x2e\x22\x93\x2c\x8f\x08\xb7\xc2\xa5\xd6\xc3\x71\xd4\xca\xcb\x77\xd3\xc8\xc3\x2f\xf3\x42\x61\x30\x3a\xd2\xe0\xf5\x13\x7e\xfc\xd7\xb6\x29\x26\x4f\x8d\x44\x21\xfd\x9d\x36\x64\xe0\x12\xe1\xa3\xbb\x82\x47\x76\x6a\x3a\x70\xd1\xcb\x75\x05\xbf\x9c\x8a\x60\xb3\x82\x55\x5b\xd1\x51\xe9\xf5\x8a\x6a\x5c\x12\x40\x3c\xff\xd9\x85\xf8\x33\xda\xe4\x25\x9b\xfa\x9f\xb7\x61\xbf\x49\xbd\x5d\x95\xcb\xfc\xf6\x20\x76\x02\xe1\x15\xe9\x61\x2a\x1f\x7a\xbb\x31\x25\x2f\xd2\x2a\x51\xa1\x23\x58\xf9\xaa\x11\x9c\xe4\xb4\x34\x3c\x3e\xba\xcb\x3e\x68\x7b\x92\x5c\x40\x44\x85\x38\x2e\xb9\xf4\x2e\xf8\xcf\x76\xf3\x4a\xf1\xbd\x32\xf4\xca\x3f\xb3\xc4\x94\x86\x2b\xfa\x8a\xd0\x1c\xec\x1b\x8b\xf8\xd8\xcc\xb6\x3d\x29\x36\x90\x6a\x37\xe6\xe1\x61\xe9\x0a\xe6\xd8\xf2\x1e\x19\x7a\xc8\x00\x6b\xf8\xa2\x4e\x61\xac\x90\x9e\x7f\xc4\xe4\x27\x13\x37\x42\xd5\xdc\xb6\x27\x3e\x9c\xa4\xad\x35\x47\xf9\xd7\x0f\x11\x09\xbf\xce\x1b\x90\x05\xdd\x87\x40\xf6\x25\xea\x50\x11\xe9\xf1\xee\xcd\xb7\x38\x22\xfb\x1e\x2d\x28\x0b\xa6\xcc\xff\x9c\x1a\x8c\x06\xc6\x11\xb8\xba\x37\x33\x0e\x7c\x14\x73\x35\xb7\x69\x95\x65\xe5\x41\x6a\x00\x73\xca\xfc\xd7\x47\x48\x96\xd6\x75\x99\xeb\x85\x17\x93\x3c\x34\xed\x8b\x71\x13\x05\x15\x26\x33\x11\x60\x58\xda\x93\xa8\xee\x4a\x6a\xef\x2e\x0c\x55\x92\x94\x34\xb9\x35\x3f\xb7\x4e\x97\x1a\xd5\x28\xe4\x17\x2f\xd3\xfb\x15\xf2\x22\x27\x79\x75\x48\xf7\x53\xe2\x14\xfc\x6a\x84\xb3\xf8\xb6\x61\x8c\x23\xa7\x8e\x12\xf0\x0b\x99\x53\xaa\x77\x96\x89\xaf\x0e\x6f\x73\x99\x2d\x3e\x51\x36\x5d\x37\x5d\x18\x1a\x89\x21\x46\x7f\x84\x54\xa8\x23\xe3\x6f\xc0\x4e\x19\xb3\x13\x90\x28\x83\x7d\xf4\xd0\xcb\xc9\x21\x68\x0e\xb5\xe5\x02\x77\x91\xa1\x2a\x5d\x66\x5e\xa4\x96\xd1\xb5\xf2\x6a\x54\x1d\xc8\xb6\x10\x38\xa1\x64\x3a\x0c\x4d\x3e\x41\x89\x32\xbb\xce\x96\x77\x8e\x35\x0a\x4e\x21\x85\xed\x5a\x8e\xf4\x3f\x8c\x33\x60\x59\x52\x1a\x43\xc0\x90\xb8\xf1\xce\x55\x06\x1c\x3a\x5c\x9a\x7b\x8e\xa8\x11\x55\x98\xff\x13\xbf\x27\xba\xcb\x97\x6f\xc1\x48\x1f\x2b\x0c\x4b\x61\x0c\x13\x17\xf5\x5b\xe6\x96\xe5\xd7\x88\x63\xc9\xd7\x3f\x6b\x66\x8c\xfc\xe4\x75\x75\xdf\x07\xfd\xfb\xc4\x48\x97\xa2\x4d\xa2\x96\xfe\xf0\xf5\xfa\xa3\x6d\x5f\xee\x48\x79\x67\x5c\xd7\x06\xe0\x0e\xd7\x23\x00\xa7\x94\x34\xb6\x8f\xcf\x51\x20\x56\x69\x31\xa0\xc2\xe0\x87\xdb\x94\x9f\x46\x92\x5f\xf0\xe8\x20\xf5\x7d\xb5\x0d\x5b\x57\x6f\xe6\x8f\x48\xe8\xaa\x20\x24\xec\x5f\xe2\x4c\x1e\x8b\x08\x42\x52\x89\xe7\xff\xbe\xac\x32\x75\x4a\x40\xa4\xa1\x59\x6c\x31\x96\xa0\xa2\x19\x75\x65\x4e\x1f\x44\x2f\xb2\x5a\x13\xbc\x46\x05\x1c\x84\x2d\x8f\x27\xb3\xb8\x22\xa3\x05\x1b\x4c\xa3\xf5\xf8\x76\xee\x08\xf8\x6b\x53\x3b\xda\x26\x77\x84\xdf\xfd\xc4\x1b\xc0\x4d\xb1\xe4\x0c\xe6\x6f\xc7\x80\x4a\xe4\xd2\x2a\x75\x5a\xe4\xfb\x32\xff\xed\x18\x18\x0c\xdb\xaf\x3a\x2c\x52\x67\xfe\x46\xff\x4f\xc8\xdf\xbd\xf9\xe6\x5c\x57\x70\xe8\x05\x45\x8e\x26\x42\x30\xee\xb5\x2a\x4e\x8e\x13\x70\xc7\x4c\xbe\x59\x4e\xef\xc2\x0f\x38\x56\xc0\x17\x26\x71\xe3\xe0\x9f\xda\x34\x5b\x41\x27\x6e\x6e\x93\xfe\x0a\xe9\x5d\x4f\x8f\x32\x92\xd1\xd6\xa4\x62\xc1\x00\x15\xcb\xa2\xb1\x48\x6a\xd0\x47\xa3\x8c\xbc\xbc\xc0\x8c\x7b\x77\xf9\x96\x61\xea\x7b\xbb\x95\xb0\x8e\x45\x1a\x38\xa7\x8c\xe3\x65\x31\x2f\xf2\x11\xcb\x6e\x7b\xcd\xb0\x88\x21\xb6\xcd\x79\x3c\x1a\xcc\xb4\xcd\xd2\xa8\x17\xe9\x71\x94\x5d\xac\x23\x51\xde\x96\xdc\x9a\xf7\x1e\x1d\x90\x28\x10\xbb\x7a\x53\xb3\x37\x27\xe3\x87\x5f\x03\x12\x72\x6f\x7a\xe7\x46\xb3\x09\x5c\x52\xd6\x26\xc1\xd6\xf7\x93\x21\x4d\x0e\xf5\x3c\x2c\x35\xf2\x77\x87\x74\x26\x24\x5d\x19\xbf\xbe\xf8\x2a\xbc\xa9\xa4\xa1\x52\xf0\xe8\x72\xad\x12\xd4\x0a\x0a\x4b\x3d\xb6\x27\xc9\xfc\xae\xb4\x95\xda\xf2\x6d\x90\x73\x27\x92\xc1\x4f\xbe\xae\x8f\xae\x15\x26\x19\x9e\xaa\x69\xbe\x6d\x34\xab\x67\xb4\xe7\xaa\xcc\xf1\x55\xcc\x0a\xbe\xf0\xb6\xa9\x28\x2d\xdc\x36\x35\xff\x7e\x7f\x04\x4a\xa8\xfd\xf0\x27\xbd\xfb\x10\x36\xd6\x17\x45\x89\x24\x58\x96\x0c\xdd\x79\x26\xcb\x61\x8d\x8e\xfd\xe1\xa1\xd1\x66\x05\x42\x85\x67\x4c\xe1\x37\xed\x8e\xe4\x26\xb8\x0d\x86\x49\xcd\x4e\x3c\x54\x04\x59\x5d\x19\xef\xfb\x2c\x47\xa2\x6a\x65\xe2\x54\x14\xae\x22\x73\xff\x05\x95\xd1\xb8\x16\xa9\x45\x2e\x3c\x86\xcb\xbb\xf2\xcb\x8b\xf4\x43\x3e\xa1\x14\x49\xca\xcd\x2a\x14\x51\x6f\xad\x4b\xbe\xd7\x82\x54\xa2\x92\xe4\x73\x95\x16\xde\x22\x86\xa3\xf4\xaf\x58\xa4\xc8\x50\x3b\xd3\xd3\x63\xd4\xdb\xc4\xae\xd0\x82\xca\xf9\x1f\xf4\xcc\x89\xbe\xe3\x09\x49\xbc\x52\x3a\x37\x87\xd1\x18\xbe\xc1\x61\x40\xbe\xd4\xb0\xbe\x8a\x38\x5f\x72\x83\x96\xb7\x5c\x93\x40\x4d\x92\x84\xef\xe9\x0f\xde\x30\xea\xf8\x9a\x88\x0b\x90\xec\xd7\x76\x8d\x40\xfd\x98\xf0\xa5\x39\xf8\x41\x8e\xed\x88\xf7\x65\x95\x99\x81\x25\xe8\x5f\x6c\x19\x04\xda\xc4\x02\x6f\x13\x58\xa5\xff\xd8\x9e\xf4\x26\x11\x5c\x4a\x71\xfe\xdb\x78\x88\xf7\x77\x48\xe0\xb2\x12\xe8\xce\xdc\x1e\xb7\xfa\x2d\xdf\x6b\x89\x31\xaf\xbc\x06\xa1\xdc\xa3\xf2\x22\x48\xbd\xf7\x7a\x7f\x9d\x78\x85\x3f\xc8\xee\x4d\x4e\x2f\xac\x32\x11\x36\x75\x15\x42\x3c\x7a\xa2\xc2\x10\x88\xba\x77\x86\x09\x73\xcb\xe5\x3a\xff\xf4\x95\xa8\x3d\x0a\x53\x81\x09\xfd\x93\x0d\x92\x22\x81\xcb\x36\x2d\xb6\xea\x87\x93\xee\x6f\x6a\x67\xfe\x7a\x3e\x72\x5a\xf7\x18\x78\xa2\xc2\x3e\x1c\x34\xcf\x04\x53\x94\xa2\x22\xf8\x4b\x60\x99\x9c\xbb\xa7\x6d\x4e\xdb\x3c\x53\xd2\xa1\x37\xbb\xc1\x10\x66\x90\x11\x31\xdc\xbe\x0a\xfc\xfe\xa2\x21\xc9\x0f\xc6\xf9\x2a\x37\xba\xe9\xc1\xe4\x2f\x7b\xd4\x01\x66\xab\x6a\xf5\xdc\xfe\x70\x5c\xbd\xba\x09\x85\x9a\x1f\x0d\x31\x68\xe2\x53\x21\x5e\x8c\x01\x0d\x80\xdc\x5d\xca\xd6\xbf\x25\x62\xfd\x61\xab\x69\xd5\x26\xa4\xe7\xab\xfc\x3a\x93\xd2\x2d\x46\x5d\x80\x59\x91\x31\x75\xdb\x54\x23\xc7\xab\x30\xc5\x40\xff\xe0\xed\x64\x08\x29\x35\x9a\x51\x06\xaf\xb7\xfb\xe4\x83\xc3\x10\xeb\xd8\x95\x62\x78\x91\x79\xd0\x27\x9e\x81\x3d\x64\x13\x29\x11\x33\x68\x09\x92\x84\xe7\xc2\x91\x46\xda\xbd\x99\x1e\x23\x0b\x2d\x73\x5e\xc0\xfe\xa1\x67\xb4\x51\xa7\x2b\x7b\x3c\x57\x2c\x8f\x53\x20\xea\xc7\xe0\x8d\x7f\xdf\x95\x7c\x0e\x39\x50\x86\x77\xbd\xd0\x41\x53\x50\x2a\xea\xa0\x71\x97\x1e\x39\x3a\xf2\xec\xf6\xca\x14\xb4\xa4\x33\x7b\x66\xe3\xef\xe8\x03\x65\x32\xd8\xb7\x62\x08\x06\x9e\x86\xd5\x2e\x98\x7f\x4e\x38\x62\x8a\x39\xd9\xdc\x29\xb9\xaa\x37\xdf\xfd\x5a\xf2\xc9\x2a\xcd\x02\x7e\xb2\xde\xd4\x03\x1b\x61\x02\xb6\x84\x96\x98\x83\x30\x35\xd9\x19\xbb\x86\xe1\x5b\x8b\x12\xab\x1c\xf9\xfb\x65\x9e\x1b\x3d\x12\x5d\xa6\xf9\x7c\x93\x39\x49\xd1\x99\xbe\x27\x34\x46\xac\xc9\x9d\x52\xae\x1b\x1b\x0c\xa4\xef\x9e\x1f\x5f\x91\x4e\x53\xf2\xb8\x37\xeb\x26\x71\xa3\xad\x1b\x41\xe2\xb2\x1b\xd7\x1a\x35\x04\x70\xd5\x18\x55\x7b\x39\x98\xb6\xd7\x10\x86\xa0\x16\x51\x04\x92\xf4\xef\x6d\x04\xc9\x12\x04\xe8\xb1\xc1\x2d\x4f\x2a\x2d\x4b\x22\xa8\x3a\xc1\x1c\x65\x93\x0e\x71\x2d\x48\x32\xb3\x7d\xd1\x70\x19\xda\x2c\x12\x7d\xf8\xc9\x47\x90\x46\x41\x5b\xbd\xad\x26\xab\xab\x63\xfb\x75\x28\x99\xd2\x36\x79\x7a\xf8\x01\x73\xc7\x26\x8f\x93\xc3\x95\x94\xcf\x84\xd7\x8c\xbd\xc2\x23\xdb\xba\xcc\xfc\xa9\x2d\xe2\x72\x1d\x0a\xf1\x70\x0e\xac\x6d\x72\x73\xe5\x98\x85\x8b\xdc\xdd\xb2\x96\x94\x5c\x82\x31\xb5\x48\xe4\x40\x70\x47\x35\xc6\x83\x5b\x8e\x0c\x35\x2f\x69\x5b\x09\x3d\x7d\xeb\x5c\xf2\xc0\x96\x04\x6f\xd8\x51\x87\x7b\xc9\x51\xc3\x83\xa8\x46\x2d\x15\xd5\xe0\xcc\xbe\xb0\x40\xb3\x0a\xdb\xa4\x9b\xed\xcd\x0e\xec\x24\x3f\x2c\x80\x3c\xdf\x91\x23\x22\x99\xeb\x7f\xa8\x2a\x00\x6a\x09\xea\x11\x01\x6a\xe5\xaf\x8f\xd1\x3d\x0f\xee\x7b\x36\x81\x4a\x39\xf3\x89\x03\x37\x60\xf0\x8b\x63\x51\xef\x12\x58\xa5\xfb\x0f\x8e\x31\x2e\x22\x15\xf5\x93\xd1\xfd\xc8\x07\xd7\x18\xcf\x48\xc3\x1c\x45\xcd\xf3\x5f\x30\xc4\xb1\x81\xe7\x1f\xf1\x81\x2e\x3f\xac\xd3\x36\x52\xe5\xbe\xf4\xec\x3c\xb6\x5f\x3d\x0b\x71\x2c\xad\x30\x75\x7e\xdd\x10\x84\xa9\x0e\xcb\x1c\xd5\x57\xf1\x35\xbf\x43\x24\x04\x9b\x8e\x9d\x1a\x86\x0a\x31\x59\x31\x86\x1f\x27\xf7\xe2\xfe\x7d\xe6\x78\x9f\x0a\xda\x06\x80\x92\xbe\x23\xae\x54\x7f\xbf\x2e\xc7\x44\xb9\xae\xe0\xf0\x99\xeb\x8d\x34\xab\x44\x8d\x91\x6d\x76\xf2\x63\x90\xee\xdc\x99\x9b\xde\x2e\xd5\x8a\x26\x1d\xd3\x54\x73\x17\x93\x3b\x6f\x9d\x8a\x2a\x44\x29\xab\x0c\xe5\xd6\xc8\xc3\x57\x1b\x5f\xca\x57\x98\xa1\xbf\xcc\x1a\x88\x64\x56\x50\xce\xd5\xc1\xf7\xdf\xd2\xaa\x3c\x80\x94\xba\x72\xdb\x60\x63\x6f\xcb\x8a\x7d\x97\xa1\xdf\xef\x7a\xdc\xaa\x28\x30\xd8\xe3\x63\xe2\x60\x31\x2d\xd7\x21\x39\x7d\x03\x4c\x90\x1c\xad\xe9\x32\xbe\x37\x7d\xd1\xf0\x7d\x97\x9e\xa5\x00\x9d\xb8\x77\x3a\xa4\x9b\x0e\x25\xb2\xb0\x0b\x5e\xdd\x72\xb9\x4a\xbb\xa4\xb6\xf5\x93\xcf\x0c\x46\xaa\x34\x61\x6e\x03\xa4\xc4\xcc\x20\x63\x5e\x56\x26\x9e\xcc\x96\x83\x4f\x19\xcc\x22\x5e\x2c\x46\x62\x03\x3f\x45\x86\x8f\xae\x2f\xd5\x8a\xe4\x87\x7d\xfa\xad\x11\xa8\xbe\xc2\xf6\x46\x32\x15\x7d\xd0\xf0\x42\xa1\x4d\x85\xfc\x49\x0d\x5f\x9b\x8c\xe6\xcc\x09\xb3\x66\x39\x9a\x82\xc9\xf8\xd6\xfe\xc9\xe5\x9d\x3e\x05\xe2\xe0\xab\xef\xea\x7d\xc8\xf1\x44\x7a\xfe\x06\x83\x48\x4e\xba\xb9\x60\x60\xa3\x12\xa6\x11\x8e\x69\xbe\x2e\x87\xe2\xd8\xdd\x2b\xd3\xfe\xaa\x41\x3b\xf1\xdd\x1a\xb3\x22\xbf\x8e\xec\x82\x8b\x3a\x55\xb5\x9a\x96\xcd\x5c\x94\x6e\xa6\xbb\xfb\x60\x97\x40\x2e\x0a\x0c\xa0\x19\xc1\x6d\xeb\xd0\xe9\x53\x26\xb1\x81\xbb\x49\xff\xdf\xdc\xf5\x04\xb1\x22\xcc\xd4\x2b\xc8\x12\xb0\xc6\xdd\x96\x64\x32\x7d\x64\x4b\xf2\x49\xd6\x12\x21\x15\x02\x9b\x34\x9a\x04\x06\x5b\x76\x1a\x40\x2f\xaf\xec\x48\xb1\x18\xb9\x45\x7f\x32\xdb\x94\x4e\xaa\x53\xd7\x03\x41\xab\x0b\x47\xc7\x19\xd1\x88\xe6\x79\xe5\x92\x2d\xce\xef\x3c\x7f\x5d\x4b\xd6\xe6\x80\xab\x81\x4a\x15\x9e\x9d\x80\x44\x5f\x24\xd6\x2c\x6a\xb1\xf4\xdb\x8f\xd6\x44\x08\x58\x93\x99\xc8\xab\x18\xfa\x55\x2e\x8c\x8e\xe8\x18\x03\x3a\x57\x22\xcc\x51\x7a\x22\x8f\x8d\x37\xab\x3f\xe9\xf5\x24\x3b\xad\xff\x26\xd0\x38\x5f\x5a\x62\x41\x7d\xff\xcb\x33\xe3\x8d\x24\xc9\xe6\x16\xf1\xc1\xdb\xc5\x6c\x40\x8c\xbc\x38\x14\xa7\x2b\x75\xae\x01\x61\x64\xab\xea\x7f\x57\x62\x39\x83\x5f\xf6\xbb\x12\xfd\x49\xbf\x94\xeb\x0a\x86\x8b\xe4\xc5\x49\x94\xd8\xc5\xd5\x9b\x4d\x99\x35\xa8\xd1\x60\xbf\xde\x67\x84\x4e\xf0\x5f\x96\x27\xff\x4b\x42\x03\x6e\x1c\xee\xe5\x5c\x2e\xa7\x80\x4a\x6c\xb8\xa7\x9f\x91\x44\x10\x66\xc3\x21\x08\xaa\xb7\x1b\xda\x2c\xbe\x6d\xe7\x5c\x2b\xea\x82\xf7\x66\x56\xf4\xe8\x4c\x89\x94\x30\x57\x3e\x28\x18\x76\x38\x0d\x4a\x6a\xe1\xb7\x55\xc6\x78\x6f\xce\x8c\x51\x06\x4c\x82\x58\x76\xf6\x49\xae\x71\x64\x2b\x79\xc9\xc1\xce\xfa\xb5\x86\x2e\xae\x5f\x2a\xc5\x43\xd0\x05\x1b\x86\x25\x78\x32\xd2\x53\x4c\xd1\x59\x9e\xde\x02\x5d\xa9\x02\x0f\x57\xfa\x5e\xd4\x14\xbe\x11\x89\x45\x8c\x18\x7e\x85\x26\xb4\xc9\xd7\xb4\xf7\x90\x4e\x7b\x6e\x9e\x3c\xa9\x73\xaa\x9c\x03\x77\x6e\x8a\x63\x4b\x1d\x03\xd8\x52\x2f\xbf\x8f\xa6\x1a\x52\xa1\x1a\x5a\xde\x3f\xea\xe8\xaf\xce\xbb\x5f\x93\xf0\xa1\xcf\x3f\x9f\x6c\x76\x34\x98\x1c\xc3\xb1\xd6\x6b\xff\xca\xf1\x48\x0d\xdb\x26\x4c\x4e\x05\xbf\xf9\x21\x4a\x45\x64\xd6\xd5\x18\x78\x3d\xea\xb6\x8b\x2a\x71\x9a\x2d\x07\xf1\x5b\x67\xe3\x41\x09\x04\xaa\xfe\xcf\xe8\x2d\x4b\x6c\x9b\x96\x62\x5f\xe0\x4f\xd7\xae\xd0\x0d\x4f\x3f\x8c\x05\x05\xfd\xc6\x0b\xcc\x95\xb2\x41\x75\xc8\x76\x32\x7b\x1e\x84\x76\xe5\x94\xe9\x98\x98\xb5\x4b\x19\x3c\xdc\x63\xdb\x31\x37\xb0\x76\x04\x4d\x0a\x94\xb6\x6c\x6f\xfa\x0b\xeb\x0c\x72\x07\xa8\x86\x84\x37\xfd\x94\xf1\x06\x02\x8c\x09\xd0\x9c\x08\x1e\x7f\x15\x61\x18\xa6\x49\x99\xd6\x9f\x20\x9e\x97\xeb\x83\x0d\x40\x6a\xdb\x71\x00\x49\xad\xf1\x89\xcb\x72\xbc\x46\x41\x63\x27\x4c\xf8\xf6\x0c\x56\xf7\x51\x98\x5c\x5b\x91\x73\xe8\x75\x1b\x94\xd5\x4d\x41\x71\x96\xd2\xab\xd6\x1b\xa4\x1a\x0b\x54\xb5\xdc\x32\x50\xf0\x7a\xb3\xa5\x7d\x48\x00\xdb\x14\x76\x09\xf6\x15\xa1\x13\x30\xb7\x0d\xe5\x27\x95\x67\x35\xe8\x8f\x56\x5a\x06\x9e\x08\xbf\xa8\x74\x7f\xd4\x12\xde\x7d\xbb\x11\xe3\xc2\x70\x1a\xf1\xcd\x7b\xe1\xf0\xe5\x96\x96\x69\x9d\x88\x82\x43\x0a\x6b\x31\x69\xe0\x6e\x63\x98\xd9\x90\xca\xe4\x6a\xc6\x03\xaa\xe0\xb9\x79\x36\xf1\xf2\xbe\x14\xc1\x8f\xa1\x09\xc7\x2e\x33\x27\x36\xae\x0f\x69\x23\xc4\xb2\xbe\x03\xa3\x6c\xd7\x0f\x6f\xd2\xf0\xc5\x9d\x2c\x9b\x0e\x10\xbc\xcc\xf2\x4c\x8b\xee\xa6\x06\x3e\x61\x48\x91\x4e\x51\x15\xf0\x4b\xab\x07\x47\x97\x23\xbc\x2d\x99\x24\x06\xbf\x3e\x6f\x5a\x9b\x28\xd7\x96\x1b\xd6\xeb\x4d\x55\x22\x6b\xa9\x47\x72\x5d\xc1\xe0\x09\x83\x54\x91\x47\xf1\xe5\xff\x17\xdd\x08\x67\x4e\xbc\xa8\xb3\x3e\x71\xbe\x46\xa9\x15\x7d\xa7\x90\x13\x84\xb9\x50\xe1\xc9\xc6\xc3\x1d\x1b\x4c\x3f\x6f\x51\x2d\xfa\x8a\x13\x90\x1d\xdc\x0e\x5b\x0c\xe0\xf8\x6e\x18\x80\xa5\x61\x7c\xb0\xff\x34\x42\xed\xd9\x54\x52\x8c\x3f\x95\x8f\xd3\x50\xa7\x8a\xf3\xe3\xff\x31\x66\x1e\x91\x23\x46\x78\x13\xff\xf4\xa4\xbe\x2d\xaa\xf0\x39\x2f\x4c\x4a\xc6\x68\x7e\xa3\xc5\x1d\x87\x8b\x89\x00\x6c\x0b\xfe\xa9\x08\x87\x5d\x8a\x6b\xe6\xba\x82\x85\x0f\x22\x9e\x44\x59\x30\xd7\xe3\x35\xf0\x14\x48\x4d\x46\x9a\x4e\x52\xef\xbf\x4e\x4a\xc4\x59\x4b\xc2\x67\x9b\xb5\xe5\xca\x04\xa7\x50\xfa\x0d\xac\x4b\xb6\x28\x2a\x82\xb8\x0e\x2f\xc8\xf7\x11\xf9\xe1\xdd\xde\x4f\x93\x2f\x20\x1e\xb5\xb4\x4f\xe8\x79\x8c\x02\x02\xdf\xe5\x70\xd5\x7e\x66\x12\xfc\x2d\xa9\x92\x20\xe3\xc1\x3a\x54\x76\x14\x6d\x5a\x28\xc1\x20\x25\x38\x30\xdd\xec\x65\xd6\x04\xab\x6b\x15\xac\xde\xec\x8c\x1d\x9a\xc6\x5a\x20\x42\x34\x11\xc7\x35\x7b\xcd\x01\xa3\x05\x34\x39\x72\xe0\xd2\x5c\xd2\x86\x74\x4b\x4c\x6f\x98\x8e\x68\x78\xd4\xb6\x01\x73\x75\x64\xbc\x71\x31\x51\xdb\xe6\xd1\xd8\xf5\xde\x53\xfa\x4b\x7b\x54\x08\x2e\xe4\xdc\x32\xd8\xd8\x6a\x1b\x9a\xe7\x85\x24\x33\xb4\xdd\x4e\x36\xfc\x9a\xb4\x5e\xa2\xc6\x74\x3f\x18\x67\xa8\x80\xd7\x28\xdc\x25\x5d\xbd\x99\x7f\x5c\x75\x25\x82\xec\xc8\x49\x54\xfa\x07\x4f\x44\xda\xd4\x30\xe9\xc9\x74\xf6\x1b\x8a\x85\x21\xef\x59\x34\x51\xfe\xf5\x5c\x57\x90\x3d\x86\x70\xbe\x91\xb9\x42\x57\xf0\xd5\xbd\xc3\x50\x63\xd8\xf1\xf1\x3e\x1e\xde\x6d\xf2\xf1\x88\x8d\xf1\x7d\x99\x77\x67\x26\x33\xf6\x99\x6a\xee\xd9\xb7\xa3\x25\xf3\xf6\x68\xb5\xc6\x85\x06\xfe\x64\x9e\x78\xc9\xb0\xba\x08\x03\xc6\x27\xdf\xbb\x22\xfa\x41\x0d\x6e\x94\x4f\x69\xcf\x16\x17\xfb\x98\xa5\xff\x6e\xe1\x35\x66\x76\xa2\xab\xa8\x54\xdf\xcd\xe6\x2e\x0a\xcb\x54\xe6\xc5\x52\xd1\xa9\x6f\xef\x48\xfe\xbe\xef\x48\xc4\xb9\x22\x07\x71\xbc\x5a\xd4\xb2\x99\x03\xcc\xfe\x6f\xcf\x55\x7e\xbf\x55\x2a\x4a\xf0\x0d\xff\x75\xc1\x40\xb5\x1f\x7a\xbc\x7c\xa4\x89\x32\xd5\x4e\x7e\xba\xa4\x5d\x95\x94\x6d\x7b\xea\xfc\xf0\xfe\x7a\xe6\x93\xeb\x0a\x16\xef\xd4\xa8\xb8\x2a\xb3\x49\x58\x12\xb6\xa4\x0f\x53\xdf\x37\xee\x56\x46\x2d\x85\x21\xf8\xf7\x77\x75\xa7\x48\xf9\x5d\xe6\xba\x82\xa9\x9b\xf1\x09\x23\xbe\x03\x19\x6b\xf0\x03\x64\x3b\x1a\x09\x33\x4a\x0a\x59\x2d\xaf\x87\x04\x65\x52\xa7\xd8\x96\x66\xcb\xea\xf8\x3d\x54\x28\xd2\x48\x4d\xb5\x4d\x87\xa6\xc2\x52\x1f\x43\xb7\x4f\xa4\x0d\xc4\x43\x58\x8c\x46\x9c\xe3\xbf\x5b\x31\xcc\xc8\xfa\x23\xa9\xd8\xe0\x8e\xc3\xa6\x02\x56\xc4\x04\x56\x8f\xfa\xc9\x23\x11\xe0\xc8\x65\x25\x07\xa2\xde\xff\x1a\xa2\x01\x9d\x9e\x3c\xc4\xdf\x74\x4c\xc8\x22\x71\x4a\xca\x92\xf6\xa9\xfe\x70\x9f\x48\x72\xbc\x9c\x00\x40\x53\xf9\xbc\x9e\xb1\x15\x81\xe8\xb6\xf4\x5d\x1d\x68\x6c\x4a\x8a\x09\x36\xfc\x8e\x39\x63\x50\xdb\x5c\x7e\x7f\x2a\x5a\x94\xc2\x33\xcf\x78\x9a\x99\x35\x7d\x5a\x78\x9d\x1a\xdd\xe4\x3c\x93\x96\x23\x11\x32\xeb\x1f\x5e\xfd\x53\x68\x4c\xd9\x8d\x0e\x7e\x3e\x1e\x96\xbb\xce\x6d\xbf\xe6\xf9\x4a\x95\x6f\xe5\x9e\x58\x42\x3b\x4f\x9a\x18\x4c\x99\xf9\xae\x41\xb8\x6c\x70\x51\xd1\x42\x1b\xd7\xe7\x75\x01\xe6\x36\x48\x95\xdd\xd4\xe4\xbe\x54\xb9\x5b\xbf\xc5\x24\xea\x84\x0b\x4e\x62\x26\x67\xe6\xc9\xf3\x03\x91\xc4\x01\xac\x62\xf6\xcf\xb6\x0f\x4d\x4c\x50\xa8\x1b\x79\x29\x7d\xbd\xaf\xfe\xdf\xc3\x8a\x4a\xb6\xfd\x26\x9a\xb3\x4a\xe2\x79\xb6\xd2\xcf\xf1\xde\x37\x8c\xf0\xa9\xea\x31\x66\x17\xae\x37\x1a\xf2\x50\x99\xc7\xbe\x7a\x1f\x0e\x43\x3c\x30\x3b\x31\xe4\x9e\xd2\xdf\xc0\x83\xe7\x89\xf4\x90\x89\x81\x35\x8b\x9e\xd5\x79\xff\x67\x51\xc2\x75\xe5\x5e\xd3\x05\xde\xf1\x95\x58\xce\xa1\x63\x90\xe5\x2c\xe0\x22\x41\x26\x76\xdf\x31\xda\x90\x7e\x5e\xae\x06\x38\x41\xcb\xa1\xe0\x3c\xdd\x9a\x77\xe4\xac\x72\xd4\x90\xb8\x5f\xd4\x31\xb9\x33\xfc\x7f\xd6\x14\x22\xc4\x95\x2f\x00\x59\x35\xfe\x55\x03\x5e\x2a\xbc\x88\xad\x59\x38\xac\x03\xc1\x94\x49\xd3\xda\xa7\xb4\x49\x97\xd8\x8e\x57\xa1\xbb\x79\x2f\x13\x2e\x62\x58\x04\xbb\x57\xa3\xf9\x6b\x99\x0a\x5e\xa1\x40\xd7\x78\x6a\x97\x49\x22\xf7\x5d\xda\xa2\xdc\xdd\x9b\xf9\xe1\xf3\xa6\x72\x17\x98\xf4\x15\xc2\x97\x0e\xd3\x93\xfb\xde\x68\x51\xbe\x96\x2a\x83\xb0\x02\x5f\x45\xd4\x48\x6e\x59\xca\x43\x3d\x75\xd6\x43\xad\x6f\xe2\x01\xed\xb6\x37\xb3\x7d\x80\x16\xf1\x2b\x16\xd1\x6b\xfd\xdc\x16\x85\x81\xcf\xbb\xbe\x90\x31\xe6\xe3\x03\x0c\xa8\x04\x75\x5d\x6a\x47\xeb\x94\xeb\xd0\x0f\x5e\x27\x16\x91\x1e\x02\xb2\xd7\x84\xdc\x0f\x41\x4c\x7d\xcc\x65\x5a\x83\x82\xd6\x72\x5d\xc1\xf1\xf5\xc9\xb5\xa9\x92\x8a\xcb\xaa\xbc\x4e\xa4\x48\x32\x02\x8f\x65\x91\xe5\x4c\xb1\xc8\x05\x78\x93\x7d\x0b\x45\xdf\x9a\x4d\x90\xd2\xd0\x50\x38\xd9\xe5\x66\x8d\x7b\x65\x0a\x15\x55\xe6\x82\x91\xaf\x12\xa7\x47\x4a\xd7\xc3\x45\xf2\x57\x86\x7f\xbd\x6b\x09\x4a\x9d\x86\x60\x5e\x64\xb7\xb9\x67\x6a\xf2\x84\xd5\xb9\xf4\x8d\x91\xab\x3c\x61\x4f\x3c\x08\x22\x22\xaf\x32\xe4\xf4\xc5\x55\xc3\x70\x0a\xb1\xb8\x6b\xe9\xc4\x7b\x54\x0e\xf1\xc7\x4d\x18\x44\x68\x2b\x17\xfb\xb4\x35\xff\x5a\x33\xda\xda\x36\x75\x4a\xaa\xf3\x97\x1e\xb7\x48\xaf\x44\x9d\x08\x06\x6d\x8b\x6c\xcf\x04\x43\x30\x8a\xd4\xa2\xe9\xfb\x95\xb7\xeb\x2c\xde\xa1\x1e\x71\x9a\xa4\xec\xeb\x7d\xfb\x07\x83\x77\x4f\x7b\x88\x25\x91\xe7\xaa\x93\x32\xd2\x28\xf3\x6a\xbe\xc7\x1c\x3c\x13\x63\x53\x15\x78\xdf\xf3\xa5\xe1\x44\x6a\x45\x31\xbe\xde\x38\x41\x3e\x6e\xa9\x9f\x3d\x1b\xff\x83\xc3\x31\xdd\xe5\x4d\x63\x38\xe5\x51\xea\xe4\x48\x89\x8a\x48\xec\x3a\xbf\x30\xb9\x4f\x3a\xda\xdb\xdb\x5b\xf9\xb2\xbd\x99\xff\xbb\xd1\x20\x0f\x7a\xc2\x2f\x95\x6c\x65\x15\xd5\x9b\x7a\xe3\x94\x96\x8c\xe3\x7e\x54\x3c\x2e\x5c\x32\xde\x28\xa7\x0b\xd4\x66\x5e\x53\xd9\x2e\x25\xfb\x87\xfe\x9c\xd1\xe8\xc2\xf5\xca\xbc\xc0\x7b\x5a\xbe\x47\xb0\xcf\xb4\xf1\x00\x3d\x62\x68\xc9\x5c\xbb\x01\xab\x91\x3a\x12\x45\x9e\x39\x6e\xea\x87\x86\xcb\x29\x1b\x71\xa9\x47\x3e\x30\x1a\xab\x4e\x49\x30\xbb\x39\xb1\x01\xa3\xbd\x2f\xae\xc0\xad\x53\xdf\x91\xc2\x71\x32\x4d\x9e\x72\x7a\x88\x11\x2f\xea\x70\xdf\x90\x39\x83\x50\xe3\xd9\xad\x81\x20\x71\xea\xb9\xad\xf1\xf9\x2c\x88\xb0\x5c\x5a\x79\xda\xb8\x53\x38\x8f\x2d\x9c\x37\xec\xd2\xd1\xbd\x21\x48\x0d\x00\x17\xc1\xdb\xa8\xdd\xe0\x09\x4a\xe4\x55\x76\xff\x98\x78\xdd\xbb\x79\x3c\xb8\x5e\x73\x12\x4e\xe9\x3d\x82\xa0\x74\xe7\x47\xe2\x7a\x34\x88\x2f\x48\x99\x3a\xb3\x89\x7b\xf0\xdc\x40\x94\x5d\xd5\x6a\x12\x99\x35\x62\xd4\x00\x75\x4f\x09\x8f\x80\x41\xd0\x05\x7d\x05\x48\xd8\x57\x70\xfb\x19\x03\xab\x22\x87\xd3\x36\x8d\x41\x9d\xfb\x0d\xd0\x36\x60\x34\xc1\xe3\x2d\x18\xbf\x00\xf5\xf1\xa1\x6b\x29\x0f\xed\xad\x9d\x1a\xef\x28\x7d\xd6\xd3\x9f\x59\x77\x35\x1e\x04\x15\xa8\x28\x10\xc9\x75\xc9\x3c\x6d\x78\x8d\x78\xc4\x01\x73\xa0\x6c\xe7\x4a\xe5\x35\x42\x6c\x4f\x92\x3c\x64\x27\xff\x4c\x5f\x43\x91\xd2\x61\x1e\x31\xe0\x54\x6b\xdb\x95\xf5\x9c\x5f\x60\x96\x80\x3c\x26\xb3\xfb\x6d\x23\xda\x29\xbb\x07\x38\x09\xdb\x37\x27\x4c\x94\xab\xbe\xc3\x2c\x05\x45\xcd\xfc\xef\x27\x8d\x9e\x02\x57\x3d\x85\xfb\xe6\xe9\xbc\xae\x63\xf2\xb4\xf0\xff\xbd\x65\xeb\xc0\x28\x41\x29\xf8\x8a\xe8\x9a\xfa\xe6\x53\xba\x1e\xa9\x95\x99\xcd\x64\x2e\xf1\x64\xdd\xac\x64\xa2\x3f\x1b\xe7\x50\xe9\xd2\x8b\xa6\x10\x4e\x43\x27\x14\xe9\x21\xeb\xaf\x52\x5b\xb6\x4e\x63\xfb\xdd\xd4\xf7\x57\x23\x3b\x79\x1a\x9e\xc8\x70\xcf\x00\xd7\xea\x07\xc7\x4d\xb3\x00\x4a\xaa\x6a\xee\xf9\xf3\x67\x0d\xa0\x02\x2d\x31\x47\x45\x9c\xf4\x6d\x36\x2a\xc3\x6d\xe2\x97\xca\x1e\x90\xef\xd7\x9f\x48\x9e\xd3\x6e\x9e\x77\x55\xef\xe6\x83\x74\x7c\xa5\xe6\xf3\x58\xbd\x71\xdf\x51\x65\xaa\xc9\x85\x2c\x71\x7f\x53\x84\x9d\x3a\x67\xc9\x5d\x77\xdc\x7b\xff\x62\x09\x79\xec\x83\x51\x8c\xe1\x05\x2b\x72\x5d\xc1\x3b\xe7\xf4\xfe\x5d\x2b\x7b\x59\x9b\x1e\x1c\x65\x6c\x87\xd8\x88\x56\xc5\x83\xcc\x5f\xcf\x41\x4d\x74\x52\x80\x5d\x97\x85\xac\xe5\x01\x62\x57\xb0\x3d\x54\xf6\xee\x1d\x6a\x8e\x69\xfb\x6e\x39\xcf\xa5\xb1\x6b\x6f\x2a\x98\x3a\x46\x07\x39\x25\x60\x65\xb7\xb4\x4e\xd3\xb7\x9d\x34\x68\x13\xac\xe8\x45\x1a\xf0\xd9\x6b\x0a\x23\x8c\xac\x01\xde\xb2\xc2\xfc\x74\x9c\x1b\x9a\xd4\x9f\x89\x55\x86\x52\xdf\xed\xd0\xa8\x02\x8b\xf8\x16\x71\x7d\x17\x37\xde\x3c\x43\xc2\xd5\x26\xae\x16\x08\x4c\xfd\x28\x30\xac\xe5\x6b\x35\x22\x0a\xc9\x84\x22\x73\xcb\x45\x53\x7b\x56\x82\xed\x23\x5b\xa9\x54\xb1\x5b\x2d\x8b\x1a\x77\x73\x59\x1c\xd1\xbe\xf0\x53\xe6\xc8\x19\x1e\xf8\x98\xa6\xfe\x6e\x64\x72\x8f\xd1\x3a\x15\x4d\xb5\x25\xe6\xee\x35\x5a\x28\xca\xfd\x21\xf3\xcb\x27\xf1\xa6\x2d\x7b\x28\x02\xa6\x76\x1c\x1e\x6e\x94\xd3\xae\x2f\x28\xf4\x03\xb2\x23\x9f\x32\x2e\x03\xdb\xe2\x65\x6e\x33\x0b\x7a\xae\x9b\x56\x0e\xc5\xf3\x64\x66\x7b\x0a\x61\x1e\xac\xb9\xcc\xd0\x58\x12\x9c\x57\xec\x66\xd4\x56\x09\x2f\xc2\x8f\x2f\x31\x0a\x26\x70\x0c\x88\xad\x3c\x33\xaf\x7c\x98\x68\x89\x2c\x58\x30\xb1\x0b\x7e\x37\x78\x60\x4c\x4b\xad\x05\xd2\x90\x51\x8f\xe2\x8e\xc3\x4a\x6d\xdb\x41\x22\x71\x01\x7b\xfc\x5a\x3c\x9d\xa0\x22\x2c\x74\xa4\x96\x9a\xd4\x08\xfb\xdb\x15\x57\x68\xf6\x65\x18\x6f\xb2\xd5\x5d\x83\x93\x71\x4b\x85\x9c\xef\x19\xbe\x43\x65\x22\xbc\x30\x4f\x04\x12\x82\x7c\xba\x9b\xce\x19\x59\x06\xaf\x34\xb9\x9c\x83\x45\xf4\x70\x24\x02\x57\x67\x16\xc8\xb4\x07\x0f\x1e\xd5\x55\xe7\xd4\x4e\x59\xe8\x8d\x47\x1a\x30\x3d\x65\xbf\x1a\x7b\xd3\xa4\x1f\x7e\xdb\x50\xae\x11\x84\xc5\xe2\xc0\x73\x9e\xbc\x74\x67\x4b\xed\x4d\xf9\x1d\x26\x1f\x84\x78\xba\x04\x77\xc5\xbb\xeb\x66\x76\xd7\x88\x24\x0c\xca\x13\xe2\x9c\x6a\x0d\x6e\x38\x65\xbf\xac\x5c\x2d\x8a\x5c\x84\xb5\x6e\xee\x41\x43\x9d\x82\x56\x99\xb2\xff\x0e\x5e\x7c\x1d\x5e\xcd\x5c\x66\x61\xdb\xdd\x5b\x8f\x23\x89\x3b\x22\x3c\x46\xec\x5c\x9e\x09\xd9\xed\x4c\xbf\x66\x00\x00\xa5\xb2\x2d\xf3\x62\x49\xad\x40\x1c\x1e\x88\x2f\x17\xe9\xb4\x71\xed\x53\xc9\x8b\xa5\xac\x38\x56\xc1\xee\x36\x0c\x47\x77\x23\x55\xd3\xd4\xc6\x2d\x10\x28\xbd\xb2\x60\x45\x48\x90\x1f\x7d\x42\x75\x8d\x84\x12\xd2\xed\x4d\x7f\xf6\x1c\x6a\x7f\x59\x5c\xf9\x90\xde\x7d\xd4\xb8\x38\x05\x29\x12\x39\x03\xd4\xb5\xce\x86\x2d\x3a\x8f\x10\xcc\xad\xc8\xbf\xf0\xf9\xce\x41\xd1\xd9\x27\x02\x58\x10\xe1\x8f\xfb\x0e\xd7\x97\x5f\x49\x36\x9b\x57\xac\x1c\xa8\x32\x10\xa7\x50\xf2\x01\x02\x92\x79\xe9\xc8\xd5\x28\xb5\xb2\x68\x2d\xda\x1b\x99\x57\x3e\xd2\x28\xc7\x72\x2b\x61\xe7\xc6\x67\x90\x32\x89\x00\xe5\xf4\xf4\xad\x08\x6f\x9b\xb7\xa1\xd7\xfa\xc0\x50\x2c\xb3\x9e\xa7\xb6\xad\xd6\xe1\xe7\x0f\x9a\xcc\xf5\x46\x9e\x37\xa3\x98\x96\x16\x27\xcc\xed\x67\xab\xcc\x58\xb7\x7c\x07\x5c\xd4\xef\xbc\x41\x84\xa0\xb8\xe0\xff\xc5\x08\xa3\x9d\x2b\x65\xce\xa0\x93\x9c\x5e\xbf\xb0\x85\x36\x5f\x40\x9a\xbf\xab\x86\x60\x2a\x34\x01\x7b\x82\xd4\xff\xd9\x6e\xaa\x42\x17\x54\x9c\xcb\x7c\x7c\x95\x81\xed\x90\x42\x33\x31\x22\x21\x75\xd7\xab\x1a\x3b\x11\xd6\xc9\x32\xca\xe9\x56\x5a\xea\x84\xee\x63\x49\x9f\x9f\xd4\x75\xa7\x92\x3b\xd6\xa6\x0d\x96\xf0\x07\xcd\x4e\x5d\x30\xc6\x8c\x21\x05\xd2\x20\x26\x69\xec\x9a\xe1\xa6\x5b\xa6\x27\x88\x43\xa3\xbc\xf8\x15\x1d\xb3\x5c\xd9\xb9\x1f\x78\x21\x11\xb2\x6a\x3e\x70\x85\x7f\x7a\xfb\xc0\x28\x99\xe1\x76\x5d\xa1\x44\xb3\xb6\xc9\x72\xa1\x55\x45\x43\x1c\x32\x4b\xd3\x8d\x5a\x41\xb2\xa9\x25\x4b\xcc\x97\x53\x2a\x47\x00\xa7\xcc\xf8\xa3\xca\xc0\x84\xbb\x90\xc6\xa4\xa7\xbe\x68\x60\xde\xdd\xa8\xc2\xcc\x8d\xc5\x42\x7b\x8d\x58\xca\xe9\x13\x48\xba\x2f\xcf\x4a\xd1\x8f\x3f\xb6\x03\xe3\xce\x25\xe9\x14\x88\x12\x7f\x69\x78\x99\x43\x9b\x9c\x08\xc5\xac\x2a\x3e\x7e\x69\xbd\x30\xd5\x0e\x3f\xb8\x02\x99\x3f\x73\x5b\xb2\x59\x52\x7f\x78\x63\x38\xd2\x3b\x28\x50\x41\xac\x32\x0b\xaf\xdb\xf0\x1f\xff\xdf\x69\x50\xa5\x99\xdf\xf4\x9d\x02\x61\x2d\xc9\xca\x85\xd3\xc9\x3f\x58\xa1\xb4\x06\xf7\x93\xec\xb3\xef\xdd\x93\xbc\x40\x6a\x36\xf1\xbd\x24\x85\xcd\xdf\x0d\xcd\xa9\xa5\x24\x69\xda\xe3\xed\x4b\xbe\xb4\x1b\xcb\xb1\x01\x83\x35\x34\xde\x86\x16\xcf\xe5\xba\x02\x72\x3e\x96\x3b\xf3\x72\x25\x50\x1f\x49\x7d\x05\xcd\xe8\xc7\x87\x9b\xc9\x95\x6a\x5d\x9f\x0a\x17\xe2\xbf\x37\xc4\x49\x65\x99\xe3\xf0\x3c\xfb\x0d\xcd\xf9\x97\x60\xc4\xbf\x9f\x8d\xbc\xe8\x24\x30\x3a\x7d\x60\x67\x72\xa8\xd0\xa1\xe6\x1f\x9f\x3f\x8b\x89\x72\x25\x20\xe3\x04\x9f\x3d\x86\xcd\x65\x7c\xe1\x82\x50\xf4\x95\x93\x8c\x1e\x59\x95\x01\xb8\x20\xc8\xad\x53\x52\xc6\xd5\x3c\x8b\x06\xc5\xd3\x9d\x6b\x8d\x23\x0d\xde\xb7\xd1\x3a\x5f\x3f\x12\x37\xc6\x6d\x1b\xc9\x09\x04\xf9\x8d\x7a\x80\xdf\x79\xb3\x24\x0d\x6d\x4f\x0e\x7a\xba\x89\xb5\xc6\xa7\x49\xd2\x74\x70\x7f\xbf\xf8\xd7\x3a\x67\x48\xd3\x9d\xcf\x6c\x52\xa5\x14\xf5\x3c\xdf\xb2\xc0\x87\x2e\xb5\xe6\xbc\x01\x19\xa1\x54\x4f\x5e\xb3\xd3\x5f\x8f\xc3\x73\xb1\xd0\x4a\xe7\x7b\xf0\x79\xe4\xec\x23\xc1\x05\xb7\xbc\xa6\xd5\x94\x9a\xa8\x9d\x91\xe9\xde\x88\xd5\x3d\x1a\x2d\x9d\xbe\x17\x46\x18\x48\x5d\x9b\x54\xa3\x22\x27\x38\xf5\xb4\xd1\x3a\x28\x13\xc7\xa2\x2a\xa9\x4e\xff\xec\xe5\x64\x10\x8b\x94\x30\xa3\xc7\x08\x9a\x17\xe0\x95\xdc\xc9\x9d\x3a\x73\xa0\x93\x9c\xf9\xef\xa3\xc3\xd0\x74\xae\x4e\x9d\x9c\x13\x0b\x26\xe4\xea\xba\xe6\x97\x06\xaa\x5b\xd0\x05\x66\xb3\x2a\xda\xe7\x17\xca\x71\x04\x2a\x09\xde\x12\x81\x86\x3c\xab\x67\xb8\x25\x9c\xcf\x2e\x3b\x8e\xc4\x6e\x49\x22\xc7\x18\x72\x5c\xcf\x0d\x8b\xcc\x91\x06\xba\xc1\xc9\x75\xc6\xc0\xc3\x77\x5d\x46\xc0\x17\xf0\xa1\xe9\x88\x92\x44\x0a\x8c\xb7\xea\x74\xe5\x2f\xc0\xe0\xf9\xd3\xcc\xce\xfb\x02\xd9\x60\xa7\xde\x98\x60\xe8\x36\x11\x51\xb5\xa5\xb9\x25\x80\x5d\x3d\xdb\xd4\xb2\x75\x22\x2b\xfd\x54\xf1\xd5\x6b\xd1\x3c\xdd\xb6\x49\x18\x5e\x11\x5e\x72\xdf\x3e\x83\x9b\xe4\x33\x70\x4f\x54\xe8\xb8\xdf\xbe\x17\x89\x45\xde\x73\xc7\x22\x14\x54\x1e\x32\x24\x07\x78\x0d\xbc\xfb\xa0\x55\xf4\xc3\x77\x8d\xa0\x25\x68\xd5\x8e\xd1\x5b\x36\xf2\x24\x16\xa4\x24\xd3\xfc\xff\xa8\x61\xcd\x38\xee\x51\x2b\x7c\xa9\x73\x26\x18\x16\xce\x8a\xc3\x7e\x09\x64\x5a\xfa\xb2\x97\x74\x19\x4b\xf0\x98\xf0\xab\x98\x62\x28\x88\x25\xc7\x73\xe9\xe2\x41\x64\xfa\x48\xa2\x5a\x22\xf3\x9b\xa0\x85\x3a\xc5\x94\xdb\x57\x7a\x49\x5f\x9d\xd5\x4c\x9e\xd1\x31\x23\xd7\x15\x1c\xdc\x3a\xd4\xec\x48\x29\x90\x79\xb6\x7d\x89\xd1\x31\x61\x11\xe0\xea\x1b\x33\x0d\xe2\xa7\xaf\xb0\x98\x73\xcb\x7a\xa0\x54\x13\xdc\xad\xd1\xb0\x88\x69\x31\xae\x5b\x73\xe2\x2a\xb4\x7e\x05\xc6\x65\xc7\x65\xe1\x83\x2d\x36\xe3\x05\x35\x39\x0e\x0e\x9f\x07\x28\xc9\x5d\xae\x17\xc6\x6e\x73\xeb\x7d\x72\x45\xf2\x78\x56\x38\x37\x48\x28\xff\xb4\xc9\xe4\x70\xfa\xc2\x6b\x9b\x48\xa5\xb9\xdd\x65\xdb\x74\xe5\x4e\x89\xcc\xdb\xf7\x6c\x40\x69\x0e\xaf\x3a\xac\xc2\xeb\x3a\xf2\xdd\xb7\x2a\x0e\x4a\x4d\xb8\x4a\x3e\xbb\x13\xd5\x26\x6b\x7c\x56\x8f\x5a\xcb\xc1\x8f\xc7\x9a\x09\x5a\xb5\x1a\x0b\x74\xf6\xa6\x1f\x59\x1b\x21\x23\xa0\xd8\xcd\x5e\xb3\x32\x59\x2e\x55\x7d\xdb\x63\x61\x1d\xd0\x54\xf3\x86\xaf\x0d\x81\x20\xfb\xe9\x1b\xd1\x61\x4f\xff\xbc\xbf\xe9\xa5\x46\x45\x09\x86\x72\x12\x09\x5d\x3f\x6e\xf6\x39\x79\x4d\x7d\xe0\x4b\x07\x0c\x8c\xba\x24\xc9\xca\x01\xd6\xdf\x4f\x40\x03\x00\xd7\x25\xbe\x74\xc5\x5e\xd0\x61\x90\x86\x4b\xc4\x29\x48\x57\xe6\x48\x89\xf5\xc3\x16\x91\xb0\xd8\x31\x3e\xf5\x6d\x74\x13\x69\x00\x82\x22\xc8\x5e\xf1\x88\xaa\xc3\x78\x95\xc4\xb0\x83\xfb\xcf\x7e\xd2\x58\x42\x51\x03\xd1\x14\x33\x99\x7f\xac\xa0\x63\xa1\x87\x43\xd0\xc4\xc3\x4a\x83\x4a\x2a\x7b\x00\x2e\x7e\x6a\x1f\x63\x83\x57\x55\xbf\x3a\x7b\xf5\x21\xb3\xaa\x66\x8e\xc5\x6a\xc4\x8e\x40\xb5\x7d\xf7\x45\x0c\x06\xb7\x0c\x54\xeb\xfd\x60\x1d\x91\xab\xfa\xe1\xae\x0d\xcb\xbf\x5c\x99\xc9\x66\x6e\xc7\x07\x48\x77\x48\xf6\x4c\x64\x22\xbd\x22\x30\x10\x36\xcc\xb1\xca\xd1\x6d\x3d\xfb\x94\xa1\xca\xcb\x6c\xa6\xda\xe2\x72\x99\x5e\x06\xb4\x8a\xbc\x9a\xbb\x51\x38\x4c\x0d\xf3\x8c\x46\x1e\x05\x65\x16\xc8\x65\xff\x7e\xe3\xa0\x44\x91\x24\x11\xac\xbd\xa9\xf5\xc6\x38\x48\xce\xbf\x5c\xaa\x40\x8f\x7a\x5e\xdc\x76\xd2\xe4\x4c\x38\xaa\x94\x1d\x3b\xd2\xc8\xe2\x04\x2d\x30\x1b\xb4\x18\x00\x21\xf7\x4a\x8f\xa6\xbd\x35\x1a\x8d\x36\xe2\x17\x58\xde\xa6\x6d\x16\x97\x18\xc2\x87\xcc\x36\xbc\xaf\xd0\x46\xbd\x99\x97\x76\xc6\xf7\x7d\x37\x41\xd2\xd7\xe9\x2b\x0e\x5f\x89\x00\x83\x6e\xf8\x57\xc6\x8f\x36\x81\x5e\xb4\x46\x94\xaf\x12\x60\xd3\x8f\xed\xbc\xde\xbc\x8b\x04\xe3\x02\xab\x40\x67\xff\xfc\x55\xc5\xde\x9d\x31\x6d\x4a\x4e\x66\x36\xa9\xda\xbb\xa8\xd6\x0d\x8b\xf2\x30\xe7\xfa\xed\x59\x6d\xf1\x6d\x63\x8b\xef\x03\x1b\xb4\xfe\xa5\x4c\xa1\x33\x17\x9f\x46\x57\x06\x2f\x17\xc2\x8d\xf1\xc5\x03\xc9\x24\x2b\x4f\xec\x0a\x71\xdc\x89\x33\xf1\xf0\x3b\xfd\xda\xab\xd7\x99\x05\x5e\x5d\xe1\x03\x61\x3c\x76\xec\x7d\x4d\xcb\x63\x92\xd8\x7e\x20\x41\x01\x0c\xff\x6f\x59\x08\x7f\xe1\x80\x39\x11\xf5\xa8\x7d\x09\x6d\xaa\x07\xc6\x40\x21\x5e\xf2\x89\x54\xea\x97\xf0\xb1\xde\xcc\xef\x22\x5f\x20\x2a\xea\xcc\x32\x83\x70\x30\xee\xc8\x15\xd1\xbe\xe2\xbe\x4c\x9a\x2e\x2c\x32\x6d\xb1\x80\x34\x03\xbd\x87\xa9\x62\x90\x2a\x28\xaa\xdc\x61\x9e\x6a\x1f\x64\x0e\xf6\x1b\x1a\x9f\x60\xa9\x57\x8b\x34\x95\x4c\x21\x1c\x45\xae\xd7\x52\x52\xcb\x47\x9a\x03\x7f\x8b\x97\x1c\xb6\x36\x02\xc3\x67\xee\x7e\x69\xb4\x19\x5c\x1d\xd6\xa3\x4e\x56\xf4\xfa\xad\xf9\x2d\x86\x99\xbe\x1a\x05\x67\x47\xed\x1f\x6a\x46\x73\x1a\x55\xc6\x9b\x20\x74\x2d\xf5\x88\x2d\x39\x52\xe1\x1a\x9c\xd9\x87\x34\xe4\x3b\x15\x2b\xfd\x23\xd4\x74\x96\x9e\x0b\xf0\xe8\x6d\x8f\x6a\x5e\xbf\x2c\xa4\xee\x5e\x7c\x57\x60\x3d\xa1\xbb\x0e\x25\x9f\x15\x22\x2d\x89\xd4\xd7\xb7\xa2\xbc\xb9\xd5\xa1\xe4\xb7\xcb\x21\x1b\xbb\x57\x99\xd6\x21\xb4\xcb\x54\xc8\x88\x58\xb5\x66\x4b\xe6\xa8\x6a\xff\xee\xdf\x8f\xe0\xb0\xa4\xca\x65\xa9\xf1\xfb\x9d\x26\x50\xdd\xa5\x11\x7a\xfa\xdc\x98\x2b\xc3\x1f\x2d\x99\x83\xe9\x2b\x1d\x26\x4f\x83\x2a\x43\x9e\x54\xc3\x38\xe2\x65\xde\x88\x92\xbc\x6b\x0f\x22\xb5\x47\xda\x74\x2c\xe5\x7c\x7f\xb5\xe1\xc3\x5b\xb4\x89\x42\x93\x7f\x7f\x89\xa6\x48\x0b\x3f\xd7\x15\x5c\x5e\x33\x09\xc0\xe0\x2f\x26\x59\x3b\xe4\xf0\x80\x86\x39\x73\xdb\x16\x1f\x51\x2a\x5d\x3b\xd3\x3f\x1c\x09\x1b\xb8\xe6\x83\xab\x68\xf0\xe5\x8f\xcc\x70\x27\xbc\x32\x20\x02\xb2\x83\xb0\x0b\xc2\x1a\x9f\x09\x35\x7c\xff\xb8\x82\xf1\x2e\xf0\x6d\x86\x20\x46\xd9\xbb\x6c\xc5\x83\xe4\xbc\x92\xeb\x0a\xc6\x19\xd2\x7c\x1e\xa9\xe6\x79\x1d\x36\x72\x58\xdd\x5f\x79\x1c\x75\xb3\x58\xa9\xec\xe5\x40\x8d\x21\xd8\xba\xa1\x05\x96\xe6\xd2\x35\x3e\x75\x2c\xea\x4e\x6c\x40\x4b\xe8\x1b\xdd\xc3\x50\x16\x26\xb1\x0a\xb1\x8d\x35\x39\x67\x12\x88\x1d\x0e\xff\x1a\x21\x9b\x0e\x8f\x06\xe8\x6d\x98\x10\x3b\x61\x2e\x78\x93\x94\x88\x82\x9e\xfb\xcf\x77\x22\x3b\x15\xea\x90\x52\x0b\xc6\x2b\xf5\xae\x39\xff\xb2\x2c\x16\x3b\xe8\xa7\x3e\xb3\x15\xb9\x6f\xd1\x06\x93\x8b\xb6\x6c\xb7\xf1\x9a\x09\xb3\xd5\x45\x9b\xce\xc2\xba\x4d\x99\x0a\xfa\x7a\xf7\x0c\x05\x1a\xec\x62\x41\xab\x8c\x8a\x56\x1b\xfd\xbf\x5a\x38\x42\x13\x6b\x5b\x8e\x45\xe6\xb1\x51\xe6\xc5\x2a\xa8\x0a\xa6\xb2\x8f\x9f\x2f\x18\x93\xec\x1a\xb5\x18\xb1\xe3\xe4\xeb\xc8\x09\xbd\xb6\x16\xf3\xd8\x5a\xea\xc4\xee\x3b\x57\xed\x8a\x6a\x40\x22\x09\x30\x32\x24\xf5\x9e\x4c\x46\x1c\xe6\x48\xa9\x3f\x00\x12\x47\x1d\x6a\x6b\x08\x6c\xbd\x3c\x17\x02\xb4\x11\xfe\xd0\xde\x9a\xaf\xba\x51\xfe\xbd\x71\x1d\x16\x2b\xb3\x25\x73\x49\x86\xe8\xd9\x67\xcc\x88\xeb\x5a\xbe\xeb\x46\x59\xc5\x73\xab\xc7\x1b\x85\xb8\x1c\xd9\x85\xff\xdc\x6a\xf3\x36\xb2\x8f\x29\xe2\x52\x8b\xc2\x68\xea\xef\x76\x9a\x98\x8d\x32\xe7\x36\x20\x6c\x14\x7b\xaf\xe3\xc8\x60\x84\x60\xaa\x47\xae\x7a\xe9\x37\x37\x24\x27\x33\x85\x6e\x15\x3e\x17\xf5\x53\x0d\x66\xd7\x22\x60\x03\xb3\xe8\xac\x09\x63\x2d\x7a\x11\xf6\x32\xfb\x17\x47\x06\xa2\x5a\xa6\xb3\x1d\xa4\x9d\x8c\x31\xb3\x14\xb2\x21\x22\x36\xfb\x4f\x3f\xb7\x49\xd3\x94\x22\x8b\x77\xac\x44\x99\x5d\x34\xc1\x10\xe4\xa5\x52\x91\xd7\x50\x60\x3d\x66\x0f\x51\xd5\x18\x77\x63\xdb\xb4\xf0\xa9\xa7\xbf\x66\x32\xff\xa9\x6c\xc1\xc8\xc3\xf3\xbb\xb5\xf0\x5b\x9f\x26\x6b\x69\x22\xaf\xba\x7c\x2a\xf0\x41\x8a\xd2\x77\xe6\x86\x1e\xe3\x8a\x29\x53\x52\x03\x44\xc2\xb7\x06\x22\x15\x4c\x16\x56\x17\xf3\x0f\xe9\xf3\xd4\xd1\x9e\x83\x61\xcd\x4a\x43\xa0\x9a\x14\x0a\xb2\x4f\x44\x6c\x40\xcd\xa4\xed\x7d\x08\x2c\x40\x49\x55\x5e\x28\xef\x5f\x30\x75\x27\x09\x93\x1d\x24\x78\x76\x99\x89\x9f\x7d\xdb\x50\xfa\xf4\x89\x28\xe8\x6e\x5e\xa6\xfd\x1d\xfd\xc1\xac\x40\xa5\x61\x62\xea\x2e\xa4\x0a\x8c\xf5\x4a\x2e\x22\xc4\x27\xb5\x84\xc2\x6d\x15\x1e\x9c\x88\x67\x5d\xcb\x27\x26\x8f\x70\x4b\xca\x7f\xe2\x50\x7c\x0f\x56\x5d\xab\xe5\x1e\x7c\xec\x4c\x8b\x51\xa5\xa3\xda\x84\xc1\xb3\xb7\xc7\x90\xc3\x9a\x9f\xd0\x6f\x4c\xdf\xb9\x72\x00\x2a\x51\xe5\x4c\xfb\xbf\x85\x29\x0b\xee\x58\xd4\x8e\x8d\x1f\xb2\x1f\x1f\xa9\xed\xe8\x6d\x12\x3e\xca\x3b\x6f\x0d\xc7\x8f\x32\x76\x62\x74\x1f\x48\xcd\x82\x40\x57\x8c\xc8\x1e\x58\x7a\x03\xbf\x61\xba\x94\x4a\xe5\x90\x18\x74\x97\x79\x72\xd2\x9f\x12\x5e\xc0\xaa\xaa\x85\xc7\x47\x60\x79\xdf\x96\x50\x28\xcc\x19\xa9\x7a\x89\x6f\x28\xdd\x07\x56\x00\x75\xe1\x69\x0b\x86\x68\x41\x15\x81\x94\xa2\x0d\x83\x24\x39\x74\x8b\xf1\xcb\x99\xce\x21\xa6\x99\x71\x23\x3a\x87\x99\xaf\x2d\x30\xde\x4a\x99\x88\x18\x2d\xf4\x23\x0c\x2f\x13\xdc\xa3\xaa\x79\x9e\xf9\xad\x01\x9a\xa4\x3d\x24\xcc\x61\x54\x16\x91\x9d\x37\x5c\xbb\x47\x53\x04\x11\xfc\xdc\xb9\xe4\x8b\xeb\xe8\x9c\x9e\xab\x49\xd3\x59\xe5\x4d\xd7\xe7\x7a\xa3\x5a\xe5\x2e\xf3\x93\x33\x8a\xe5\xdb\x0c\x1a\x40\x43\x86\x15\x40\x34\x94\x9f\x31\x34\x26\xfc\x66\xdb\xc4\x1b\x6f\x0c\x3f\xfb\x4b\x93\xd4\x04\xc0\x56\x57\x68\x7a\xde\xfc\xab\x8d\x44\xc5\x56\x40\x94\x66\x1d\xf7\x79\x68\x81\x85\x09\xd8\x73\x46\x0a\xd4\xed\x83\xf4\x63\x57\x6f\x6a\x4e\x67\xf2\x2e\x47\xde\x2c\x6a\xf4\xf4\xbf\x8f\x5c\x8b\x1a\x1b\xa6\x4a\x69\x30\x61\x48\xa2\x50\xb0\xa8\x72\xaf\xde\xf7\xa2\x3e\x99\x0e\x75\x3d\xe0\x8d\xa5\xff\x3d\x6f\x80\x41\x65\x4b\x13\xe8\x10\xb0\x2f\x6f\x39\x34\x46\xdd\x80\x31\xc4\x84\x3b\x2d\x57\x4b\x6a\xcc\x5b\x3a\xdd\xab\xf0\x2a\xf7\x98\xc3\xc2\x78\xdf\x91\xac\x4f\x2c\xdb\xcf\x5f\x8a\x84\xb6\xd6\xf0\xa4\x89\x5c\x9b\x54\x3d\x74\xf2\x1d\x13\xad\x69\x51\x56\x53\x09\x7c\x66\x5e\x80\x7a\x3d\x4d\x08\x39\xc3\xeb\xa6\x23\x95\xef\xc4\x4c\xbe\xcc\x5d\xc6\x74\x9e\xb8\x2e\xb7\x18\xf1\xd4\x6d\x18\xfc\xd5\x18\xa3\x7d\x42\x23\x94\x6f\x66\xe0\x5e\xfd\xa0\x75\xc6\x6d\x0a\x0a\xa5\xf7\x18\x96\x05\x93\x3b\x26\xb5\x4f\x6e\xcf\x49\x2e\x6b\x76\x1d\xa8\x22\xe5\xee\xa8\x90\x26\x75\x7d\x74\x9e\x3f\xff\xfe\x40\x5c\x83\x82\x5a\xf3\x3b\x2f\xc1\x61\xad\xf3\x86\xd4\x79\x79\xd7\x08\x1d\x82\x94\x4a\x88\x79\x92\xfa\xd6\x92\xe1\xb8\xe1\xc7\xa0\xdd\xa7\x32\x18\x6f\xb6\x99\xfd\x70\xe1\xb9\x55\xa2\x4c\x89\xff\xdd\xbb\x0e\xc7\xb3\x45\x8b\x16\x2f\x95\x40\x84\x78\x43\xfd\xd3\xb6\x81\xea\x42\x9e\xd1\x11\xfe\x67\x8a\x24\xd4\x99\x5e\xd9\xbc\x20\xe5\xf7\x14\xd0\xf1\xdb\xdd\x48\x87\xc0\xb2\xfc\x1a\x98\xa9\xa6\x0e\xae\x40\x70\x1a\x0a\xb6\xe5\xf5\x05\x06\xe4\xa3\xca\xc2\x7a\x40\xfe\xdb\xbc\xf1\x71\xb4\x23\xa5\x96\x2e\x79\x66\xc3\x79\x5d\xc0\xcb\xb0\x2d\x43\x5b\xf1\x2d\x9d\xc7\x97\xc3\x13\x5d\x66\x52\x4b\x22\x7d\x61\x87\x21\xa6\x05\x3e\x4e\x58\x3e\xfb\xb6\xa7\x55\xc1\xeb\x57\x15\x22\xe5\x2f\x66\x1a\x4d\x8c\x68\x20\x15\xf4\x7d\xcb\xa4\x53\x31\x2b\x1a\x56\xa5\x77\x23\x51\x94\x06\xb5\xc3\xb2\x45\xa2\x8e\x97\x2b\xf4\x52\x64\x97\x31\x1f\x29\xe5\x10\xd0\x06\x7f\xf3\x45\xfd\x54\x85\x1b\xa9\x27\x5d\x85\x52\x1d\x7b\xfe\xcc\xd8\x91\xb6\x0d\x6d\x85\xe4\x9a\xa4\xfb\x18\xd2\x1e\xdc\x21\xc2\x2a\x4b\xa7\x2b\x18\xaa\x4e\xca\xeb\x2d\xe7\x09\x1f\x7c\x5c\x5f\x41\x0e\x47\x35\x6e\x33\x8f\x59\x20\xc3\xd0\xb3\x24\xee\xd4\x54\x7d\x2c\x6a\x30\x7e\x09\x32\x40\xc8\x37\x5d\x97\x39\x4c\x6e\xdf\xf4\xe4\xd3\x46\x2b\x99\x58\x10\x0d\x53\x1f\x7b\x01\x7b\xa8\xab\x23\x97\xeb\x0a\xfe\x66\x02\xb4\x3f\x6b\xd4\xa9\x12\x27\x7c\x61\xe1\x31\xf8\xf5\x65\xad\x75\xcd\x44\xac\x79\x92\x79\xfd\xe9\x09\xad\x95\x93\xac\x8c\xea\xb4\x75\x6d\x52\xc7\x0d\x6b\xb8\x1a\x97\xce\x8b\xaa\x0c\xf8\x29\xd2\xa9\x0b\x93\x6c\x9b\xbb\x3e\x8c\xbb\xe9\x11\x3d\x74\xa9\xb0\x82\x03\x00\xcd\xf0\x68\x2e\x18\x13\x35\x3c\x0a\x54\x78\x52\x93\x56\x4a\x06\x3c\x18\xeb\xf3\x41\xae\x2a\xf7\xdf\x8d\x43\x92\xaf\xb0\x9b\x8a\x3a\xb7\x99\xc3\x55\xdb\x33\xba\x97\xee\xd8\x64\xb4\x7d\x9d\x02\x6f\xc8\xfe\x32\x5c\x4d\xe4\xf6\xf8\x95\xb0\x3c\x6e\x14\xbe\xdb\xa1\x55\xd2\xa4\x10\xc3\xe0\x97\x0c\x07\x19\xee\xd6\x98\xa7\xa8\xcf\x5d\xc1\xce\x97\xb1\xce\x61\x95\x0a\x69\xf5\xd5\x69\x4c\x02\xca\x44\x29\x4f\xfc\xb8\xd3\xec\x00\xb3\x3c\x15\x20\xb7\x95\x59\x35\x0a\x73\xa3\xd5\x1f\x52\x9a\xe4\x4f\x6f\x30\xdd\x9c\x4a\xa5\x30\x01\x50\x36\x9a\xbd\xa9\xef\x8d\xd7\x5b\xde\x6b\x2a\xb9\xb1\xec\x2a\x8d\x3b\x98\xd2\xd9\x9e\xeb\x0a\xd6\x6f\x8b\x93\x01\x97\xe0\x69\xda\x19\x43\xaf\x07\xec\xe7\x23\x43\xba\xec\x82\x1b\x74\x98\x80\x5b\xac\xd5\x34\x2d\xfd\xd5\x17\x35\xcc\xb4\xe6\x97\x1c\xa2\x40\x4b\xbd\xd9\xad\x17\x0d\x85\xde\x19\x33\x26\x47\xb7\xf1\xcb\x8f\x22\xd5\x9a\xa6\x4b\xed\x62\xf8\x53\x67\x1d\x2a\x49\xa8\x84\xc9\x18\x5e\xb3\xdd\x66\x9a\x45\x89\x27\x5f\xb1\x5c\xcc\x17\xe7\x24\x57\xba\x4a\x0a\x12\x46\x2e\xed\xec\xb7\xed\x37\xed\xb1\xc1\x1e\x00\x7e\x75\xb9\x02\x20\xc9\x11\x83\xc4\x1a\x49\x04\xc1\x3f\x3d\xac\xcf\x77\x9e\xdb\x6e\xd4\xa0\x4a\xfd\xe2\xe1\x64\x50\x74\xb8\xc7\x45\xf8\xe4\xd2\x82\x45\x02\x29\xd2\xab\xaf\xc0\xee\x21\x5d\xc1\xd2\x34\xfc\x0d\x87\x3b\xd2\x2a\x1b\xc0\x5d\x5f\x9d\x3f\x24\x81\x77\xd1\x86\xa0\x63\x07\xaa\x43\x22\x28\x51\x7e\x38\x99\x8f\x3f\x61\x40\xe8\x22\x27\x33\xe2\x40\xee\x17\x7c\xc7\x78\xa9\x12\x8e\x14\x73\xfc\x8e\xac\x4f\xee\xa9\x6e\x52\x23\x0e\xa2\x87\x9e\x5f\x72\x15\x0e\x66\x04\x9c\xd5\x9e\x5b\xa5\x87\x59\x31\x1d\xc0\xa4\x53\xf7\x66\x5e\x5d\xa7\x75\x0d\x88\x0d\x96\x2f\xba\x52\xfc\x8d\xa1\x81\x5b\xa0\x45\x26\x07\xcb\xd0\x8d\x7e\x6e\xdf\x10\xac\xd8\x1a\xa7\xd6\xbf\x57\x8c\x19\xd9\xe9\x0d\xcb\xb3\xe0\x9b\xcb\x92\x1b\xab\x4a\xc3\xb3\x09\xf3\xd3\xfb\x1e\x56\x36\xe7\xae\x4b\x1d\x0f\xac\x8d\x53\x1b\x9f\xd1\xda\x06\x6e\xae\xeb\x7f\xb6\xca\x3e\x44\xee\xee\x58\xac\xfa\x12\xf8\xee\xf6\x81\xa3\x51\x72\xa0\x74\x90\x4d\x5d\xb4\xc1\x73\x47\xb4\x20\x48\x51\xef\x7b\xf8\xa0\x64\x48\xe8\x68\x6f\x57\x55\xe7\x3f\x77\xb4\x4c\x2c\x17\xdf\x15\x2c\x7b\xad\xd5\xb5\x5c\xf0\x70\x3f\xc0\x26\xfd\xde\xb1\xab\xa3\xeb\x87\xe6\x8a\x82\x57\x73\x36\x2b\x4a\x70\xed\xee\xf3\xa8\xf6\x9d\xd6\x36\x45\x66\x1b\xdd\x33\x23\x6b\x00\xbf\x24\x3b\x46\xf7\x0e\xc2\x73\xf5\x3a\xb5\x59\x99\x73\xd9\xe9\x3a\x31\x10\xe7\x53\x75\x69\x2b\x9d\xfe\x2e\xf2\x9f\xf7\x62\x1d\xb3\xf4\x86\xf9\x71\x76\x51\xf6\x5b\x64\xf9\xbe\xbb\x0d\xc1\xb7\xca\xc4\xc3\x39\xd1\xaf\xda\xb4\x00\xf4\xcd\xd3\x65\x8b\x7b\x2c\x94\xfb\x1d\x9d\x52\xb7\xe9\x97\x6b\x8d\xaa\xa6\xc6\x5c\x5e\x88\xb3\x83\x7f\x58\x9c\xa0\x71\xb2\xc8\x5f\x69\xcc\x4c\x03\xcd\xe0\x0b\x27\x46\x55\xa4\x27\x8e\x35\x40\x97\x2c\x4f\x3d\x04\x78\xcc\x4c\x6f\xbf\x4a\x93\x52\x09\x74\xab\x82\x6b\x4f\x99\x2a\x1c\x4d\xd5\x3c\x0a\xa6\xcd\xd6\x88\x1a\x11\x66\xeb\x03\xcf\x5e\x83\x22\x65\x24\xa8\xc8\xe0\xf0\x64\xfb\xbd\x35\x22\x89\x58\x5d\x82\x8b\xdf\xd4\xb0\x0d\x26\x00\xad\xa2\x74\x31\x47\xd6\x50\x83\x90\x34\x20\xb1\x28\xf7\x8b\xd7\x70\x8a\x34\xc5\x6b\x3e\x81\xf0\x79\xbe\x0c\x34\x7b\x5f\x4e\x7e\x77\x5f\xe4\x89\xa3\x56\xa3\x77\x85\x91\xc2\x7b\x9e\x92\x53\x83\xdb\x6a\xfe\x28\x1d\x99\x0b\x5c\x38\x90\x5a\xaf\x3a\x02\x87\xf0\x01\x62\x57\xc0\x1b\x25\xf5\xe7\x9b\x8d\x77\x45\x84\xcd\xa4\xda\x93\xac\x24\x87\x9d\x33\xba\xe5\x54\xd2\x4f\xe4\x3e\x2e\x18\x66\xa8\x1a\x6f\x14\x61\xf5\xae\xea\xd6\x3d\x87\xc9\x9d\x33\xe4\x64\xfa\xb4\x81\xea\xd1\xd6\x03\xe1\x4b\x69\x6e\x8e\x9b\x9d\xe5\xd6\xd0\x94\xda\xf6\x24\xc4\xb5\x2a\x73\xb8\x90\xc4\x61\xa9\xd6\xa9\x5a\xd1\x0b\x41\x92\x6f\xd7\x5b\xa6\x9c\x82\xc5\x51\xc7\xec\xf8\x00\x05\x05\x05\xb0\x77\xf8\x01\xdf\x9a\xa5\x4f\x54\x83\x0b\xaf\xdc\x28\x33\x20\x59\x34\x1f\x35\xe1\xdd\xd0\x9c\x54\x95\xd9\xc3\x6f\x69\x80\x39\xbf\xd1\xf5\x6d\x9b\xd5\xb1\x5b\x52\xfa\x9a\x25\xfa\x6e\x47\xc0\x00\xc4\xbd\x92\x02\x62\x00\x74\x7b\xef\x1d\x7d\x09\x37\x58\x81\xba\x35\xa0\xbd\x04\xdb\x9f\xc1\xa6\xb2\x60\xb9\x14\x7c\x7e\x1e\x52\x3f\x90\x2c\xc7\xae\xde\xec\xf8\xb3\x2d\x85\x7b\xd4\x4c\x58\x35\x17\x59\x9d\x80\x37\x9b\xb2\x0d\xeb\x7e\x47\x47\x08\x45\x65\x93\x3c\xb6\xcb\x06\xa3\xe8\x26\xea\x0c\xbc\x99\x32\x9f\x40\x34\xa1\x5a\xb9\xe9\x32\x8b\x11\xc8\x07\x0e\x01\x1b\x3a\x77\x37\x11\x05\x2a\x49\x74\x88\x9a\xbb\xcd\xe4\xa3\xc1\x1c\x27\x2a\x3e\xfe\xe6\xc9\x98\x65\xae\x68\xe7\x1f\x60\x1f\x77\xa8\x78\xe5\xc4\xcb\x00\x68\x2b\x6f\x18\x2c\x46\x50\xd9\xd5\xca\x9a\x72\xa9\xad\x52\xdd\xcb\x1e\x47\x43\x4e\x17\x25\xf5\x5f\x3e\x6e\xfa\xf2\x15\xb9\xb0\xa8\x92\xd7\x4e\x3d\x7d\x14\xba\x9d\xf3\xef\x58\xb4\xf4\xae\x45\x28\x65\x7d\x08\x31\x46\xfd\xf0\xc8\x5f\xfe\x9a\x71\x6a\x24\x5a\x40\xee\x98\xf3\x43\x8c\xba\xc9\x97\x32\x27\x40\xb8\x38\x3b\xe4\x9a\xf8\x57\x5a\xa0\x00\xa9\xcd\x1d\x43\x50\xab\x97\x55\x7d\x1b\x50\x7f\x99\xc1\x7b\x8c\x22\xb7\xcc\x7d\x4f\x23\xe6\xd3\xe9\x3d\xba\xc9\x7a\x73\x87\x94\xd8\xb9\x67\xb8\x49\xd6\xe3\x4a\x42\x1e\xc6\x41\x97\x3d\x88\x88\x37\xcc\xf5\x78\x18\x90\xfe\x59\x89\x51\x53\x22\xb1\xdb\xc1\x73\x2b\xae\x35\x52\xc3\x9c\xc7\x73\x93\xa7\x45\x59\xca\x6b\x8b\xaf\x6b\x5d\x86\x5c\x4d\x70\x5e\x54\xd9\xc2\xa9\x8b\xfa\x91\x1c\x66\x55\x1c\x52\x95\xef\x7e\xef\xf3\x08\xa5\x21\x3c\x66\x41\x2a\xfd\xd5\x0d\x48\xff\xc7\x71\x1b\xd1\x9c\xf1\xdc\x88\xe4\x17\x09\xb3\xfc\x70\x4f\x46\xee\x30\xbf\x7e\x4b\xb7\x08\x1a\xcc\x75\x79\x03\xbd\xf5\x93\xca\x5c\xba\x73\xba\x32\x28\xed\x4d\x5f\xde\xa3\x20\xe7\xac\xce\x6c\xd8\xdc\xc1\xe5\x83\x30\x3c\xd5\x2b\x53\x01\x15\x77\xe6\x9b\x73\x0d\x4c\x3d\x8b\x04\x0b\xd2\x1f\x1b\x3d\x54\x8a\x26\xc4\x8e\xac\xda\xef\xe8\x3b\x4b\xf4\x13\x2a\x3f\x8f\x5c\x57\xf0\xc1\xd9\x88\x17\x62\x11\x11\x99\x4f\x66\xbe\x39\x15\x93\xba\x89\x24\x86\x65\x96\x20\xf7\x5a\xd7\xb7\x2c\xea\xba\x11\x62\x36\x7d\x9d\x72\xd7\xf6\x1a\xd4\xf1\x9a\x2e\xaf\x52\x4f\xe9\x07\xa6\xae\x7d\xfc\x0a\xf5\x17\x0a\x3e\xb8\xc9\x9c\xed\x31\xea\x42\xc2\x9c\xa2\x1f\x8d\xab\xbe\xbc\x01\x87\x2a\xa2\x4c\x7a\xb3\x33\x57\x9a\x0c\x58\xab\xcc\x23\x7f\xda\xac\x3f\x1e\x11\xd8\x89\xc7\xdc\x22\x83\x91\x7b\x7a\xcb\x69\x64\xaf\x4a\x90\xaf\x6e\x7a\x65\x59\xef\xb8\x8e\xc9\xca\x2a\xb6\xa7\xaf\xae\x3d\x79\xad\x26\xcf\x39\x68\x1a\x66\xa6\x9d\x1f\x8e\x9a\x07\xa2\x81\x85\xa2\xd2\x5f\x32\xf5\x8a\xfd\x6a\x35\xd2\xec\x48\x8d\xdc\x6b\xb4\x6f\x40\xff\x53\xe1\xc1\x33\xe4\x43\x40\x66\xcd\xbd\xe3\xae\x07\xba\xba\x5a\x92\xc5\xb5\x75\xf3\x76\x09\x8b\x00\xf5\xca\x83\xfb\x1e\x44\x1b\xb7\x56\x03\x35\xfc\xde\xec\xe8\x95\x49\x39\xb7\xb2\x5f\x2a\xd3\x4b\x3a\x56\xa4\x3f\xba\x60\x4e\x7c\x04\x61\xa5\xb2\x17\xe7\xfe\x3f\x1b\x31\x1a\x81\x44\xfc\x2a\x73\xfc\x6a\xcb\xb7\xfc\xe4\x0e\xd4\x14\x23\xcc\x4d\x98\x93\xdd\xb6\x59\x93\xb2\x6a\xd4\x13\xdc\x2d\xb3\xd6\x79\x59\xea\xf3\x86\x85\x7f\x18\x34\x69\xcc\xfb\xab\xce\x45\xc8\x5f\xf0\x33\xcc\x75\x05\xdd\x2f\xa3\xbe\x48\x95\xac\xe5\x4e\x84\x87\x59\x55\x1b\x63\x64\x0b\xcc\x91\xf4\xf6\x89\xd8\x3f\x32\xf3\xad\xf1\x2d\xde\xd6\x30\x1f\xbf\x66\x84\x2e\xb1\x69\x8f\x25\x7c\x8b\x45\x6a\x6f\xd9\x6d\x87\x10\x38\xba\x21\x15\x4a\x46\xe2\x61\x9d\x88\x0a\xaf\xd4\x57\x90\xc0\x8d\xb4\xcc\x52\xa9\x73\xea\xef\xeb\x80\x05\xb9\xe9\xa6\x46\xa3\xd1\xe6\xd1\x2a\x69\x13\xfe\x4d\x82\xe7\xb9\x24\x9c\xfc\xbf\xf1\x66\xcb\xcf\xe1\x35\x6e\xab\x21\x6a\xe6\x47\x28\xc0\xb8\xcc\xf3\x61\x3a\xad\x46\xdf\x37\x3f\xae\xd5\x52\x30\xd2\x33\xf5\xa6\x26\x95\xe6\x99\x6c\x44\xfd\x74\xce\x75\x0e\x9e\x83\xb6\x30\xe5\xb2\xab\xfb\xe3\x92\xa3\x5a\x83\x1e\x7c\xb6\xd3\x60\x4d\x75\xce\x88\xe7\x2f\x80\x92\x1f\x30\x46\x21\xac\x2d\x8f\xd5\x23\x8b\xf6\x41\xfd\xe2\x74\x4a\x29\xe0\x86\x79\xf1\xf3\x49\x17\x89\x32\x73\x88\x9a\xc3\x24\xf7\xc7\x8d\x67\x10\x00\x5b\x3a\x7c\xe8\x72\xef\x73\x87\x4d\xf9\x4d\x92\x57\xfa\x53\xcf\xf4\xc1\x96\x21\xa4\x60\x33\x70\x09\x4f\xdf\xbf\x10\xd2\xb8\x1a\x38\x92\xa4\xce\xf7\x07\x99\xed\x3b\x5c\x58\x36\x23\x15\xdc\x6a\x9a\x08\x86\x0f\xe6\x35\xd5\x39\x09\xfe\x6d\x6e\x72\x4c\x5d\x10\xcc\xb5\xb8\x6d\x63\xc6\xf9\x27\x9e\xd2\x6a\xa2\x9d\x9d\xb9\xae\xe0\xad\xd5\xd7\xc1\x9f\xb4\x73\xcb\xca\xa4\x21\x5a\xc6\xed\xa9\xdf\xbd\xaf\xaf\x81\x32\x0d\x13\xeb\x02\x95\x88\x8f\xf9\x27\x75\x9f\x40\xa2\xe8\x57\x6e\x35\xc5\x0e\x1c\xcf\x17\x51\x9d\xfc\x93\x07\xd1\x44\x82\x47\x68\xc1\xd4\x73\x86\xeb\x71\xe4\x3f\x1b\x4d\x5c\x5f\x5c\x85\xe6\x1f\x8e\x27\xb5\x3e\x1d\xea\x0b\xd5\x35\xcc\xa6\x0d\x33\x8a\x2a\x11\x15\xea\x45\xbf\xfd\x6f\xeb\xf4\xfd\x99\x27\x2e\xb3\x99\x45\xc2\xed\x7b\xcf\x19\x73\x10\xe8\xdb\x05\x11\x23\x28\xd2\xb7\x0e\x4f\xce\x93\x80\xa8\xe2\xb2\x12\xd5\x85\xff\x75\xfb\xa1\x2d\x72\x73\x27\x9e\xfc\xa5\x38\xf2\x0f\xa7\xc4\x2a\xa3\xed\xbf\x6f\x20\x96\xbc\x61\x55\x25\xd4\xd9\x9b\xda\x35\x1c\x5f\xbf\xa0\xc7\x99\xcd\x6e\xc0\x10\x01\x26\x99\x8c\x92\x80\xf2\x8b\x0e\x5c\xf4\x16\x41\x12\xe8\x37\xeb\x5a\x5c\xcf\x8b\xd0\x92\x83\xe3\xf0\xd1\x5c\x7d\xdb\x54\x98\x82\xc7\x5c\x3e\x42\xbf\x42\x89\xe3\x48\xf9\xbb\x8c\x63\x2f\xb1\x90\xb1\x2d\xf2\xfb\xa3\x51\xb3\x9d\x51\x41\x84\x55\x96\x40\xcc\xbf\xf8\xff\x53\xf6\xf6\xf1\x52\x55\xf5\xfe\xb8\xf3\x90\x11\x22\xf2\xfc\x24\x22\x22\x22\x09\x73\x84\xc3\xd3\x01\x89\x14\x11\x11\x91\x41\x44\x24\x32\x62\xcd\x9e\x35\xb3\xd7\x99\xbd\xf7\x1a\xd7\xde\x7b\xe6\x1c\x7e\x5e\x24\x33\x2f\x11\x91\x97\xb8\x44\x66\x66\x44\x66\xe4\xe5\x7a\xcd\xbc\x64\x64\xa6\xc4\x97\xcc\x4b\x86\x0f\x11\x19\x91\x99\x19\x5f\x22\x23\xe2\x92\x72\xf6\xfd\xbd\xf6\x7a\xd8\xeb\xb3\xd7\x70\xff\xf8\xfe\xa9\xc0\x39\x33\x7b\xaf\xf5\x79\x7c\x3f\x3c\x2f\x09\x1e\x36\x4e\x11\x9f\xfa\x6e\x48\x90\x6d\x53\x79\x16\xfb\x85\xc4\xa6\x4c\x9e\xd9\x31\xc9\xc4\x9f\x9d\xbd\xd3\x00\x3e\x33\xea\xad\x11\xba\x7d\xc7\x0d\x5d\xf0\x52\x18\x88\xf6\x26\xf2\xd6\x08\x57\x8f\xa9\xd3\x0b\xc5\xe8\x96\xbd\x7d\x92\x93\xc2\x45\xca\x16\x01\xcf\x20\x29\x3e\xcd\xd3\xf9\xfa\x89\xa0\xfb\x24\x82\xba\xbb\x67\x7a\x3a\x12\x4f\x6b\x57\xc7\xe8\x20\x38\xbb\x41\x53\x99\xb8\x14\x59\x7f\x28\xcc\x23\x4c\x50\xb3\x37\x6f\x4d\xc6\x0c\x41\x63\x7a\x4b\x38\xbb\xa0\x1d\x48\x93\x8a\x42\x93\xef\x06\x7a\xf2\xab\x1e\xef\x9f\x1a\x5b\x88\xbe\xf9\x96\xd9\xe9\x17\x12\x1f\x35\x27\x51\xd9\xcb\x97\xe6\x9a\xfa\x51\x9c\xd4\x2f\x8f\x28\x79\xce\xd0\x7f\xea\x12\x82\x79\x62\xdb\xdd\xf7\x69\x5d\x6b\xa8\xe3\x28\x27\x13\x27\xaf\x35\x32\x21\xbe\x2b\x24\xca\xc6\x21\x33\x70\x49\x7f\x99\x8c\x1d\x20\x4a\xba\xd6\x1c\xe0\xd9\xa4\x5e\x57\xf2\xf5\xb9\x5f\x3f\xa5\xd9\x07\x71\x86\x0f\x5b\xd2\x6f\xfe\xe2\xc7\x8d\xf9\x18\xea\x8e\x2b\x2c\x8e\x20\x9d\xdf\x06\xc5\x69\xf9\x8c\x8f\xa4\xfa\xce\x68\x4e\x3a\x3a\x76\x4c\xe5\x76\xfa\x44\x49\x82\x67\x96\x5c\x6b\xb2\x05\x88\x97\x80\x86\xb2\x97\x0f\x30\xc2\x37\xc6\x9e\x62\x85\xf7\xda\x2e\x05\xa3\x49\xd5\x93\x02\x9c\xd9\xb6\xa7\x13\xf4\xae\x81\xf5\x7c\x06\xfa\x18\xa0\x80\xc3\xf3\x38\x99\x6d\xe5\x03\x86\x35\x30\xae\xe2\x64\x86\xa9\x21\x92\xbf\xdc\x62\xd4\x03\x8e\xa8\x4c\xa3\x8f\x6e\x04\x3d\xb1\x6f\x09\x0f\x94\xbf\xee\x05\xd6\xb4\xf2\xae\xf2\x03\x7e\xde\x02\x11\x9d\x50\x18\xd8\xc9\xe4\x20\x1a\x6a\xf0\x43\x70\x97\x85\xeb\x6a\x19\xbd\x53\xf2\x43\x6f\x29\xb7\xa9\x11\xd3\xe0\xd1\x06\x9f\x24\x4e\xf5\x62\x66\x19\x7d\xe5\x3c\x2d\x65\x87\x78\x21\xb9\xc6\x40\xe8\x97\x51\x83\x24\xc8\xa5\xec\x3c\xa3\x42\xa5\x0e\x76\xe5\xcb\xc9\xce\x1a\x0f\x14\x31\x30\xae\xc5\x27\xbc\x50\x8c\xc6\xbf\xa9\xfb\x80\xb0\xad\xdc\xc6\xcb\xc1\xd5\x73\x4c\x39\x3f\x0d\xfe\xca\xfe\xf5\x71\x2e\x95\x1c\xff\xff\x65\x66\x29\x1b\x75\x1e\x84\x18\x45\x3f\x11\xe6\xfe\xb0\xf4\x22\xad\x22\x21\x77\x93\xbf\x41\x58\x67\x16\x96\x10\x8f\x5a\x36\x06\x7b\xb0\xfc\x4c\xcf\x20\xd2\xb9\x42\xf3\x9f\x17\x3e\x93\x57\x18\xb7\xd1\x97\x46\xde\xfc\x4f\x2f\x78\x4a\x07\xa3\x32\xae\x24\x32\x0c\xf9\xc9\x06\xc0\x45\xa8\x26\xcb\xc1\xd7\xfa\xe7\x5b\x81\x22\xc8\x0a\x30\x23\x7e\x40\x2c\x85\x8a\xbd\x7d\x85\x29\x81\xe4\x95\xb1\xeb\x01\xd8\x74\x7e\xe8\x0a\x1d\xae\xc2\x7a\x53\xea\x15\xbc\xf5\x56\xbf\x74\x03\x16\xff\xb4\x4b\x56\xa5\x6f\x43\xcd\xa3\x4d\x59\x65\xfc\xd6\xd1\xf1\x2b\x6e\x5e\x9d\x44\x32\xe5\xab\xeb\xd3\x1f\xb4\x7d\xf2\xb9\x74\x66\x3e\xff\x84\x1c\xd4\xdb\xc4\xa1\x3e\xad\xf3\xf4\x91\x63\xdb\xd3\xb7\x57\x0c\x22\xe4\x84\x23\xfe\x0b\xef\x9f\x69\xe1\xc8\xf2\xa9\xb5\xfc\xfa\x2f\xac\x33\x57\x4e\x8c\xe1\xf8\xed\xa8\x95\xd3\xce\xdd\x83\xa0\xb6\x1d\x51\x7a\x60\xdd\xf7\x9a\xcf\x8d\xb1\xb0\x0e\x90\x7d\x51\x75\xec\xa5\xaa\x7f\x4c\xd8\xf7\x66\x69\xf6\x35\xc3\x0c\x31\xae\x53\xc3\x84\x3d\xbc\x27\x30\xc7\xe3\xae\x8b\xbc\x84\x18\x73\x7d\xdd\xfc\xec\x25\x9f\x94\x09\x52\x4a\x08\xf9\xe1\x77\x1b\xb9\x8f\x06\xb6\xf8\xa7\xf4\x89\x0b\x35\xad\x0c\x15\x8a\x51\xb9\x21\x9e\xee\x75\x5e\x95\x6a\x5f\x31\xfa\xd4\x40\x28\xc1\xd7\xa0\x22\xb7\xe4\xbe\x76\xb7\xb6\xb5\xe4\x36\xa0\x6d\x46\x05\x87\xca\x2e\x61\x0a\x9c\x93\xeb\xf5\x80\xb1\x5e\xc4\xcc\xc7\x4e\x25\xe9\xd3\x1e\x67\xc6\xc2\x10\xf9\xfa\xfa\x6f\x9c\x93\x14\x02\xc2\x7f\xeb\x29\xc0\x89\xc5\xa4\x53\x76\xeb\xbb\xdf\x4a\x07\xc9\xbb\x42\xc4\x02\xcc\x84\xfa\x45\x12\x24\xf3\xeb\x81\x70\x89\x1f\x60\x5c\x77\xb0\x65\xcb\xd6\x73\xc3\xd3\xc9\x58\xdc\x6b\x73\xd5\x33\x18\x31\xdd\xb8\x63\x96\x4d\x13\xb8\xd2\x55\xaf\x6b\xa0\x82\x17\xd6\xf8\x8f\x19\xf0\xa6\x28\x54\x16\xb5\x2d\x69\x6b\x65\x2b\x05\x90\x85\x81\x58\x99\xcb\x06\x3e\xf6\x2a\x60\x62\x71\xc8\x2f\x77\x58\xe2\x03\x96\xa3\xad\xfc\x39\xe2\x55\x93\x67\x37\xf4\xf4\x65\xe0\x07\x56\xf9\xa4\xcb\x74\x2d\xed\xc9\xbe\xbb\x5d\x54\x59\x5c\xe0\x5b\xea\x60\x16\x8a\xd1\xc7\xa7\xa6\x61\x60\x0e\x6d\x8a\x05\xfc\xe9\xc5\x43\x8c\x78\xd4\x26\x55\x34\x32\xf3\x0c\x71\x4c\x07\xb1\x2a\xf6\x03\x2e\xc1\xa1\x30\xad\xbf\x1b\x02\xf4\xcf\xa8\x43\xab\xdc\xb2\x7d\xe3\x51\x1d\x01\x6d\x8c\xca\xf2\x15\xf1\x82\xf2\xee\x97\x5a\x98\x0e\x16\x16\x4b\x0d\x79\x0e\x1a\x47\xd3\x17\xce\x55\x70\x0c\xdd\x11\xbf\xb1\x07\x48\x43\xd3\xb0\xe4\xe0\x42\x7c\xd7\x79\xb8\xea\x3f\x7a\xb8\xd9\x66\x25\x21\x2e\xc2\xc7\x75\x51\x57\x27\xe2\x35\x0e\x9e\x6e\xac\x5e\x25\x3b\x57\xe6\xbc\x65\x0b\xd3\xbc\xa4\x2a\xe9\x94\xbd\x87\xb9\x58\x1b\xf2\x40\xfa\x83\x0b\x83\xbe\x09\x40\x6c\x22\x4b\xb7\xa6\x7f\x58\x40\x90\x87\x3c\xa1\x18\x98\x4a\xf2\xd9\x8d\x7d\x44\xc6\x11\x63\xb2\x62\xd4\x3f\x12\xf7\x96\x7b\xa0\x71\x10\x2e\x4f\x43\x2f\x6a\x23\x29\xd4\x8a\x8b\xec\xb3\xd9\x74\x0d\x08\xa8\x47\x5d\x39\xd6\xc9\x2f\x79\x0e\x72\x47\x59\xb7\x6f\x0b\x0a\x5c\x31\xfa\x71\xef\x01\x70\x56\x22\xbd\x03\xf3\xc3\xf3\xc0\x92\x06\x9d\x63\x67\xfe\xe2\x54\xe8\x6e\xef\x95\xa5\x18\xf9\x23\xe7\x0d\x51\x39\xf7\x8e\x79\xcb\xe0\xd0\x2f\xbf\x69\x6e\x8b\xdb\x02\x66\x0d\x82\x9b\x52\xe8\x3a\xf7\xf1\xbd\x26\x1e\xb0\x1e\x3a\x7e\xa2\xee\x78\xf3\x66\x9d\x6d\xc6\xa4\x9e\x60\x1b\xf0\x31\xf6\x70\x68\x4b\xdc\xe5\xac\x25\x62\x96\xb5\x00\x23\x27\xb0\x5b\xbe\xc1\xd7\xb2\x2d\x50\xee\xb8\xa5\x95\xc8\x5a\x59\xed\x8f\x7a\x47\x3f\x38\x09\x1e\x57\x3d\xd9\x55\x87\x86\xc2\x85\x05\xd5\xf3\xbc\xe8\x0b\x07\x5a\x80\xdb\x2e\xf1\x13\x59\x9c\x57\xb6\x99\x82\x3f\x1e\x56\x1b\x9a\xfc\x6d\xa0\xce\xa9\x86\x84\x53\x8b\x1e\x00\x46\x0d\xc9\xf0\x9b\x4f\x47\xc7\x3c\x0d\x86\xbb\x28\xf0\x29\x1c\x27\xbd\x72\x56\x14\x71\xb7\x85\x5e\x19\x71\x9b\x98\xec\xe0\xf3\x4d\xd1\x48\x24\x95\xa6\x73\xfb\x56\xa6\x3f\x74\x85\x78\xc8\xe1\x50\x80\xf8\x36\x93\xfb\x5b\x58\x34\x54\xe1\x04\x7f\xf8\xba\x26\xf5\xd6\xe2\x3b\x65\xa7\x85\xb1\x3f\x0d\xa6\xc7\x7e\x40\x2a\x15\x69\xc9\x9e\xbd\x60\x5f\xfa\x15\xf8\x2e\x09\x6c\x21\x32\x9d\x8c\x29\xbe\xf6\x9e\xa8\xb8\x2d\x1b\xbb\x5c\xc5\xac\x18\xfd\xb7\x81\x0b\x8f\x6f\x4a\x4d\xe3\x9a\xa3\xa2\x01\xe0\x74\x30\xf2\x25\x61\xe1\x9b\x63\x81\x3c\x08\xa9\x8b\x43\xfb\x07\x69\xef\xe8\x62\x47\x2d\xc5\x0e\xae\x18\x06\x30\x2d\x96\x13\xf2\x11\x9f\x24\xe5\xfe\xf5\x31\xe0\x4c\xa4\x98\x0c\x23\xfb\x82\x6e\xd8\x2d\x14\xa3\x01\xcb\xc5\x44\xc7\x72\x50\x33\x7e\xb1\xcb\x5e\x35\xac\x0e\x99\xa0\xa4\x6b\xd5\x9a\xbe\xf3\x45\x9d\x7e\x5d\x80\xa0\xae\xdf\x43\x7b\xf4\xe3\x6b\x52\x56\xe3\x0a\xb1\xbc\x51\x79\x6e\x94\x79\xcc\x84\x0d\x7b\x52\xe8\x65\x5e\x3b\x25\x26\xde\x0e\x95\x82\xfa\x99\xff\x3e\x92\x7e\xcd\xca\x2c\x48\x92\x8a\x07\x0e\xd1\x98\x81\x38\xe5\xf3\xd9\x98\xa8\x4e\xf5\x0b\x2d\x0f\x01\x16\xe9\x0e\xf7\x62\xe6\xc0\xd9\xe9\x9a\x65\x2b\x7c\x4f\x85\xbe\xba\xe4\x0a\xfc\x70\x7e\x8b\x6b\x19\x57\x64\x94\xa4\xfc\x5f\x8d\x12\xc8\x80\x22\x73\x90\x57\xa6\xf0\x1c\x8f\xd7\x10\x05\xe4\x62\x46\xac\xd4\xbc\xfb\xea\xfd\x10\xf7\xea\x50\x4f\x40\x26\xb2\x7b\x0c\xc5\x5f\xe4\x5e\xed\x62\x95\x7b\x96\x03\x17\x49\xee\x0a\x41\xe2\x74\xb6\x34\x1d\xb4\x43\x8f\x6b\xf1\x74\x76\xb6\x24\x7d\xf6\x84\x59\x42\x88\x70\xcb\x0f\xd9\xee\x11\x60\x57\xc5\xd7\x98\x22\x37\x0f\xbf\x0f\x78\x80\x79\x3e\xf1\x03\xe5\x89\xd0\x93\x7d\x76\xcf\x10\x40\xe1\x0f\xa0\x6c\xe7\x67\x1f\x05\x90\x87\xd0\xad\x27\x0e\x69\xf9\x29\x25\x83\x9e\x45\x43\x59\x05\x67\xaf\xdd\x25\x5d\x21\x90\x5b\xe7\x41\xe7\xea\xc3\xa6\x3f\x15\x57\x44\x15\x41\xe7\xfc\x75\x60\xa8\xc1\x50\x59\xd8\x78\x65\xfe\xd8\xfb\x4a\x50\x89\xa4\x9d\x75\x8c\x7e\xca\xe9\x6d\x6e\xfd\x70\x53\x4e\xd0\x32\x97\xae\x56\xa4\xe8\x32\xe6\xe3\x70\x02\x34\x91\x02\xee\x1b\xe3\xd0\xaa\xb8\xdc\x3d\xd9\x91\xcb\x92\x4a\xb4\x14\xc6\x6f\x65\xc0\xd3\xba\x22\xab\x09\x51\xfd\xec\x5d\x6f\x0d\x06\x2b\xfe\xf8\xf5\x59\x62\x0d\x9b\xa9\x9e\x4a\x57\x57\xb5\xb0\x89\x48\x30\x21\x39\x85\xf9\x9d\x57\xe8\x8a\xe2\x4a\xe4\x62\x0f\x55\x79\x63\xde\x02\x05\x7a\xf4\x5d\xd3\x0a\xce\x42\xa1\x8f\x27\xac\x5e\x1d\x7f\x82\x9b\x80\x70\x23\xf1\x1a\x48\x01\x39\xde\x34\x5c\x25\x02\xe2\x2a\xbf\xa1\x1b\xce\x0e\x06\x3d\x27\x2a\xd7\x6d\x2a\xa6\xbf\x99\x3b\x3b\xf4\x0f\x0b\x50\x57\x1d\x75\xf3\x52\xe0\xeb\xcb\x74\xa0\xf1\xbd\x90\x4f\x20\x46\x8d\x00\x1a\xf1\x01\x13\x91\x34\xf3\xbb\x83\x90\xf8\x5f\xe5\x38\x6d\x79\x48\xb2\x8f\x01\x3d\x2e\xea\x84\xae\xc0\x0d\x74\x9f\x6c\x29\xcf\xfc\x80\x04\xa1\x96\x53\x5e\xb1\x53\x6f\x4e\x27\x4f\x2a\xc4\xff\x6b\xf0\x55\x40\x34\x89\xde\x15\xe2\x0a\x1f\x3d\xf4\x64\x2f\x04\xb0\xdf\x52\x58\xa9\x20\x87\x2f\xfb\xf3\x77\x9e\x48\x3f\x8d\x38\xdf\x4b\x20\x76\xe6\xe4\x60\xb0\xca\x49\x4d\x8f\x0e\x4a\x3a\x36\xf5\x2a\x72\xcf\xf8\xd8\x32\x83\x5c\xeb\xe0\x26\x09\x0c\xf7\xd3\xec\x3d\x73\xc1\xd2\x9e\x7a\x81\xd2\x3e\x58\xf0\x24\x0f\x2d\x0e\xf6\x0a\x93\x67\x40\xae\x4e\xe6\xda\x15\x85\x96\x2e\x47\x87\xbc\x73\x58\xf1\xe4\x07\xbc\x31\x0c\x34\x2b\x36\xf1\xca\x80\x9a\x60\x7c\xdb\x26\x92\x39\x3f\xfa\xfc\x02\xc3\xb7\x3d\x18\x87\xdc\xfa\x35\xc1\x39\x4d\x8d\x2e\x5f\x6e\xd2\xaf\xb5\xe2\xb6\x14\x85\x5e\xb4\x46\x6b\x00\xc7\x5d\x45\x34\xa2\x6b\x90\xd1\x70\x09\x93\xcd\xcc\x17\xd6\x89\x87\xc9\xc5\x45\x45\xbe\xf3\xb7\x19\xf2\x9d\x8c\x7a\x5d\x0a\x40\x17\x1f\x99\xe5\xd9\xfe\x60\xc2\x26\x24\x90\xa3\x65\xd3\x01\x84\x82\x32\x4d\xfd\xc9\xfd\x76\xa4\x7e\xec\x2e\x76\x4b\x58\xf6\x94\xdf\x59\x0d\xd9\x81\xa2\x25\xcb\x5c\xd5\xcb\xf0\x96\x50\xa6\xe0\xb2\xc7\xde\xb1\x4d\xff\x23\x2b\x0c\x04\x7e\xf6\xd4\x43\xa6\xc8\xa4\x85\x5c\x2c\xe4\x73\xd6\x9d\x6d\xf1\xf7\xeb\x90\xa0\x85\x9f\xbf\x03\x36\xec\x61\xc0\x88\x92\x6b\xb9\xe5\xbd\x51\x46\xed\xa7\x44\xdd\xe5\x94\x31\x7a\x7d\xb7\xe1\x43\x56\xc7\x0c\xc9\x41\xeb\xc2\x93\x32\x4f\x7b\xd0\xe2\x31\x3b\xf5\xcc\x60\x50\x02\x54\xed\x8a\xd3\x2d\x1f\xd0\x18\x21\x9a\x54\xb8\x83\x3b\xf1\xb4\xda\xf0\x8c\x19\x65\xa4\x9d\x32\x66\x52\x32\x59\xb6\x5f\xdf\xda\x00\x56\x77\x34\x64\x01\xa3\x34\x2e\x32\xd6\xbd\x0c\x86\xda\x8c\x36\x55\x2d\x91\xdd\x64\x50\xd7\xb8\xe3\x9e\xac\xb4\xb3\xe7\xbd\x74\x21\xa4\x00\x15\xa3\x41\x4b\x5a\x74\xe8\x30\x23\xd8\xb3\xd4\xb4\x3f\x3b\x7f\x9e\xd1\x3b\x75\x5b\x54\x1b\xa0\xe6\xfe\x73\x7b\x5a\x22\xe9\x4a\xa9\xbc\x32\xe7\xbe\xd6\x8c\xda\x7d\x2e\xad\x87\x4c\xdb\xa1\x04\x98\x52\x4f\x89\xa9\x2d\x38\x96\x0e\xe8\x4d\x12\xd8\x71\x89\xaf\x46\x2a\xb7\x1f\x49\x77\xaf\x35\x9b\xe0\xd0\x68\x23\x27\x4b\x32\x37\xe7\xfc\x36\x85\x55\x45\xe6\xc6\x28\x1d\x53\x18\x51\xfd\x2e\x1c\x2f\x5c\x3f\x1b\x48\x41\x6a\xe3\xce\xf8\x37\xff\xf8\x90\xb2\x88\x74\xeb\x0e\x22\x1e\xbf\x26\x33\xba\x06\x80\x10\xe9\xd7\x19\xdf\x00\xe7\xfb\x74\x98\x26\x7a\x55\x5b\x69\x9d\x0d\xcd\x8b\xf3\xc4\xeb\xb7\xc4\x21\x2c\x7f\x9d\xa0\x6c\x16\x3e\x86\x02\xcb\xc6\x1e\x20\x20\x47\xbf\xbd\x37\x59\x2c\x74\x3a\xad\x6c\xf1\x9f\xcc\x19\x9c\x92\x77\x24\x81\xfc\xc8\x99\xcf\x3d\x68\xcc\xd5\x89\x93\x40\x13\x87\x1e\x53\xca\xb9\xbe\x4d\xa8\x27\x3f\xc5\x0d\x6b\xcd\xb6\xcd\x0f\x90\x30\x08\x10\x4c\xcf\x67\x77\x03\x9c\xdb\xd5\xed\x7c\xbe\x7b\x18\x6c\xe9\x03\x87\xab\xab\xb6\x9c\xfa\x0c\x48\x19\x96\x8d\x58\x55\x0a\x13\xfc\x65\x19\x34\x93\x41\x9e\x87\x1d\x75\xa8\x47\x54\xf4\xe2\xc0\x45\xfc\x2e\x99\x5f\xfd\xa5\x1d\x49\x60\x64\x7c\x9e\x98\xd9\xb9\x3f\x1d\x19\xaf\x98\xd0\xd9\xc9\xa5\xce\x66\x3f\x21\xb6\x45\x57\xc6\x17\xe9\x5b\xed\xa2\xcd\x40\x16\x2a\xc7\x8d\x46\xfc\x17\xa6\x2f\x03\xb2\x4a\x94\xb9\x02\x89\xbb\x79\x73\xcb\xd8\xc1\x2b\xd3\x4a\x45\x8c\x59\x7e\x32\xdb\x70\x88\x25\x6e\x6a\xc7\x9f\xfd\xe3\xd8\x4b\x8d\xe3\xec\x38\x42\x1c\x43\xd7\xd7\x7f\x06\xb7\xdd\x0e\x19\x23\xb8\x2c\xcc\x54\xbe\x33\x48\xa2\x67\x89\x8b\x79\xc6\x0e\x5d\x89\x68\xfd\xc0\x6e\x29\xca\x4f\xa5\x11\x7d\xf4\x87\xc0\xe4\xbc\xb8\xd4\xe2\x06\x55\xc9\xa4\xe9\xd0\x41\x00\xd8\x08\x02\xa1\x45\x14\x4d\xdc\xdd\xe2\x84\x8c\xca\x6a\xd3\x79\xcd\xae\x16\x44\xfc\x0c\x81\x16\x8f\x36\xbe\x2b\x1a\x1e\x44\x04\xdc\xe5\xf4\x4e\x43\x07\x0a\x37\xa5\x52\x65\x4f\xfe\xc3\xcf\x89\xbf\x9b\xd8\xfe\x74\x81\x85\x17\x23\x25\x51\x0a\x7e\x6f\xee\x70\x58\xf9\x79\xb8\x0c\x44\x60\xb2\x7f\x9d\x3d\xdc\x78\xd4\x56\x2d\x7e\x0f\x7c\x23\xf1\xb7\xa5\x06\x83\x84\xab\x5f\xa9\x26\x31\xee\xe2\x7e\xff\x84\xc0\xed\x2e\x5e\xb6\xbc\x50\x8c\xdc\x7e\x00\xf3\xc5\x61\x69\x1c\x30\xf4\x9e\xe4\xfb\x21\x97\x70\x5a\xc5\x8d\xb3\xd2\xdf\xa9\x8a\x18\x92\x36\x1e\xf9\x5b\x1f\x31\x28\xd6\xd8\x0f\x24\x94\x34\x5b\x32\xa0\x94\x7e\x58\xaf\x53\x96\xe0\x5a\xb2\x7f\xdd\xab\x2f\xd1\x74\x8e\xfe\x79\x6e\xe1\xc5\xe7\xcc\x93\xca\x03\x9a\x18\x40\x4f\xae\x2d\xea\x23\x4f\x2a\x5b\x6c\x58\x2b\x6a\x6e\x5e\xc8\xc4\x7f\xff\xa9\xf6\x11\x66\x51\x51\x72\xb0\xab\xa2\xe8\xd6\x63\xd0\x8c\xc7\x0a\xd4\x80\x41\x48\x8b\x25\x76\x74\x72\x17\xf4\x4f\xd2\x9c\x96\x61\x0b\xd5\x49\x90\xcc\x23\xb2\xff\xf2\x9c\x9e\x47\xb8\xb4\xe9\x20\x17\x44\xe1\x0f\x3d\x05\xd4\x7a\xb9\x0d\x06\x48\x9e\xa7\xb5\x68\xdd\xc4\x29\x9c\xb7\x30\xc4\xc8\x60\xc4\x23\x2e\x72\xc4\xb7\xff\xee\xe6\x0b\xe5\x8f\x61\x01\xe2\xb7\xf9\x90\x91\x06\xf8\x92\x3e\x7e\xc6\xa2\x92\xe3\xb5\xd0\x83\x86\xf3\x48\xfc\x86\x48\x45\x6d\x48\xb7\xbf\x68\x92\xf4\xe3\xc8\x29\x70\xcc\x97\x3c\x0b\xb4\xdf\x1c\x5c\xae\x62\x1b\xb9\xae\xd8\xc1\x2f\xd9\x67\x0a\x0d\x73\x25\x74\x51\x82\x1c\x7d\x48\x9f\xab\x4e\xdc\xc4\x0e\x7f\xda\x6f\xad\x1e\x04\xf0\x3c\x01\x5f\xe2\xc4\xc9\xc3\x6f\x40\x74\x78\x49\x61\x7c\xb2\x9f\x0f\x2e\x35\x7e\x05\x30\x05\x16\xdc\xa0\xfc\x07\xdf\x4b\x2f\x0b\xa7\x4f\x55\xf2\x89\x1f\xd9\x2e\xa5\xdc\x68\xc0\x08\x40\x21\x44\x97\xef\x1b\x9c\xc2\xfe\x53\x16\x90\x90\x7b\x4c\x7c\xe3\xd1\x84\x4b\xdd\x20\x2c\x95\x10\xe7\x3c\x33\x18\x26\x44\x9e\xb0\xb8\xf0\x50\x2e\x53\x4a\xcb\xa3\x59\x36\x0a\x30\x0a\xcf\x55\xe3\xe6\xbe\xd0\x0b\xe2\x6b\xfd\x10\x39\x1c\x6a\xd4\x14\x50\x9e\xc2\x2d\x5c\xc7\x27\x68\x75\xb1\xbf\x62\xba\x7e\x9e\x95\x30\xe0\x34\xad\xe8\xff\xdc\x0f\x96\x1a\x34\x61\xb8\xe4\xfe\xb1\x37\xa9\x29\x50\xd9\x06\xac\x86\x87\x0e\x98\x5c\x5b\x3f\xa0\xf5\x3a\x87\x48\x88\x45\xcb\xad\x07\xf4\x2c\xc3\x43\x35\xd4\x49\x5c\x28\xaf\xff\xa9\x17\xf5\x8c\xbe\x49\x7c\xbe\x82\x6a\xa1\xb6\xe6\x47\x6c\xd3\xb7\xa1\x13\x91\xc0\xe9\x86\xca\x93\x2f\xa6\x92\x74\x09\xa9\x7a\x3a\x3b\xfe\xd5\xf4\x58\x0c\x59\x16\x76\xb8\x5b\x9d\x86\xf9\x66\x17\xbf\x09\x3b\x2e\x56\x0d\x3d\x01\x8d\xdc\x74\x2d\x80\x1f\x52\x8b\x70\x5e\x08\xbf\xb4\xdb\x0e\xa5\x49\x68\xdd\xb8\x86\xb8\x44\x7e\xfc\xcf\xa5\xdc\x57\x1c\x18\xcf\x2e\x31\xa1\xed\x71\x7f\x5c\xa6\xa1\xea\x3e\xb2\xe3\x56\x98\x73\x07\xa5\x57\x3c\xe0\xb1\xcb\x8d\x98\x4f\xbc\xf8\x7c\x9a\xaf\x71\x21\x1b\x00\x5b\xe1\x40\xe6\xfe\xfa\x6e\xdd\x63\x28\x31\x31\x2e\x67\x90\xbb\x3b\x6b\x22\x0f\xeb\xfc\x9f\xc9\xb1\xd5\x6f\xb7\x43\x37\x3c\xda\xe4\xff\x66\x7c\x57\xba\x28\x9d\x31\x59\x94\xbf\x5f\xbd\x4f\xb7\xd5\x36\xe5\xed\xd3\x57\xde\xe9\x2d\xab\x0a\xfe\x05\xcf\xa4\xde\x8d\xe3\x24\x32\xe5\xb9\x87\xb6\x81\x61\x13\xa3\xcd\xb2\xfc\xe4\xbf\x79\xdc\x14\x64\x43\x95\x0a\xef\x24\x7e\xf2\x8e\x8e\x7a\x25\x07\x59\x35\x89\x4b\x8a\xff\xd5\xdf\x1b\xc9\x01\x75\x5d\xd0\x4b\xe4\xbe\xfd\x88\x96\xac\xe7\xd9\xfc\x9a\x21\xfa\x28\x51\x8f\x20\x0f\xa8\x54\xe7\x4e\x18\x32\x30\xdc\x6f\x53\xb0\xb5\x25\xb8\xfa\x43\xbd\x2f\xf6\x20\xb6\x8e\xff\x99\x4d\x12\xd1\xee\xef\x97\x75\xa6\x2d\x87\x1e\xea\xc6\x0d\xf0\xf3\xcf\x4e\x34\xf7\xf5\x21\x4b\x8a\x88\x70\x0e\x90\x3f\xc2\x64\x8d\xe0\x56\xe4\x37\x0d\x1a\x0c\xe6\x23\x9d\xa1\x30\xf8\x8e\x43\xe2\x15\xf7\x8a\xcd\x95\x8d\x9c\x8a\x12\xac\xe5\x9e\x40\x32\x65\x39\xb8\x81\x9d\x42\x31\xfa\xce\x63\x97\x82\x94\x84\x5c\xea\xb5\x9e\xa3\x3f\x9d\xdf\x4f\x26\x68\xe9\xf6\x10\xbf\xbd\x60\xa2\x36\xe5\xf1\xa0\xc4\xec\x7a\x69\x52\xba\x54\x1a\x1b\xe4\x67\x3d\x08\xb8\xaf\x18\x71\x19\x2c\xde\x01\xcf\x58\x67\x30\x21\xe5\xb0\x3b\x7a\x69\xd8\x50\xe3\x1c\x76\x62\x4b\x72\xf7\xee\x3c\x90\xf6\x03\x11\xea\xd3\x99\x79\x47\x40\x95\x25\x4c\x47\xb8\x32\xc6\x41\x80\xe9\xa2\x61\x35\x41\x0e\x60\xa3\xf5\xb4\x28\x51\x4a\x75\xd9\x3f\xee\x14\x89\x77\x3e\xf6\xba\x29\x06\x1b\x87\x7c\x4b\x76\xaf\x53\x3f\x99\xed\xaf\x1a\x7b\x11\x5c\x79\x73\x83\x99\xa1\x06\x8c\xaa\x4e\xaa\x92\x27\x9c\x7d\xfc\xb0\x61\x0d\x40\x4a\x98\x29\xcd\xe8\xfc\xcc\xad\xa2\xd4\x74\x50\x09\x8b\xb5\x4f\xee\x86\xf3\xcc\xd9\x36\x37\xaa\x14\xa6\x13\xfc\xde\x7c\xcf\x38\xa2\xc4\x75\x71\x99\x88\xfc\x25\x32\x65\xef\x31\x2d\x6c\x25\xb5\x77\x5f\xd1\x5b\xdf\xee\x26\x76\x9c\xb6\x42\x31\xfa\xc5\x53\x83\xe1\xc8\xd2\xf3\xa5\xbf\x40\xb4\x4e\x74\x5a\x85\xeb\xe6\x2e\x6a\x99\xac\xfc\xe5\x25\x1d\x34\xeb\xc8\xaa\x21\xe1\x98\x97\xb9\xfe\x74\x5f\x70\xdf\x79\x21\x3f\xe4\x5a\x3d\xfd\x62\x7c\x82\x9f\x5d\xbf\x03\x0c\x1d\xd3\x34\xe1\x57\xf9\x31\xe4\x03\xa6\x0e\x15\x47\xcf\xdc\x37\x0c\x1c\xae\x80\xa4\xcc\x02\x3b\xef\x85\xea\xf7\x01\xf6\x94\xe5\x6d\xb4\xf9\x29\x3d\xee\xac\x0a\x8b\xe1\xcc\xca\x87\x4d\x4e\x07\xdf\xa5\x4a\x3c\xd5\xc0\x40\x5c\x02\x17\x3b\xb4\xcc\x90\xcb\x61\x8d\xdf\xee\x0b\x10\x69\x44\xf2\x71\xb3\x4b\xef\x6c\x71\x5b\xe5\x22\xa1\x72\x30\xb0\xfd\x5a\xd3\x13\xa2\x9b\x56\x2a\xca\xc4\xe8\xed\x92\xec\x31\x1c\xda\x74\xc4\x3e\x29\xd8\xa9\xad\x81\xcb\xb8\x4e\x7d\xd2\xba\x2a\x7c\x75\x6d\xba\x11\xa9\x31\xe4\x62\x06\x1b\x9e\xec\xcf\x5f\x4f\x50\xc2\x81\x0d\x45\x6f\x5f\x30\x9c\x00\xac\x38\x63\x49\xa4\x7d\xe6\xe2\x4d\x2d\x14\x0b\xab\x56\xa6\x4d\xad\xc4\xf4\xf9\xb5\xfd\x35\x85\x9d\x25\x95\xff\xbd\xfd\x13\xb7\x7e\x0b\xa9\xe6\x72\xd0\xfd\xfd\x40\xed\xe5\xd8\x24\xfe\x01\x1f\x7d\x50\xaf\x43\x6a\xc8\x71\xbb\x6b\xc4\x6c\xb7\xa3\x9d\x59\x91\x3b\x26\xf3\xba\xfd\x33\xfb\x8d\xee\x49\x18\x0e\xf3\xe0\x91\xdb\xa3\x07\x06\xc8\x97\x7e\x97\x7f\x79\x53\x57\x34\xa5\x6e\x49\xdd\x43\x5b\x07\xc0\xca\x2c\x40\x16\x6f\xdf\x3f\x18\xa9\xb2\xd7\x0b\xec\xb8\x57\xfb\xe0\x2a\xf9\xea\x69\x83\x0f\xb1\xf9\x4b\x99\x21\x3d\x38\xf1\x5d\xa1\x68\x59\xff\xe5\xf5\x61\x66\xd3\x36\x53\xdd\xad\xa9\x0f\xf7\x03\xc8\x45\x57\x84\xe8\xad\x2f\x0e\x05\x19\x32\x28\x04\xd8\xad\xab\xa2\xaa\xdf\x3a\x7d\xb0\xb8\xe6\x72\xfc\x39\xfe\xb4\xc5\x64\x00\xfa\x35\x61\x0f\xf8\x8f\x7e\x17\x9f\xa3\x11\x53\xf4\x94\xe8\xe7\xbb\xf4\xcd\xab\x20\xae\xb3\xd3\x79\x38\x69\x05\xa6\xb4\xf3\x63\xf9\xb1\x5d\x90\x61\xce\x5d\x43\xe2\xfc\xc5\xbf\x6c\xdb\x02\xb0\x5c\x0c\x5d\x17\xc9\xf8\x9a\xbb\x1e\xd8\x6b\x13\xb7\x2e\x30\x72\x5b\x57\x49\xff\x5f\xec\xe0\x52\xe2\xff\xdb\x93\x3d\xbc\xd3\x0c\x4f\x71\x04\xc5\x8c\xef\x3f\xf9\xc8\xf0\xe3\xf7\x8f\x90\x95\x69\x99\x91\xd6\xf1\xd5\x4f\x4e\x4b\x39\x45\x12\xbf\x87\x16\xb8\x46\xee\xb3\x2b\x81\x90\x00\x62\xc0\x20\x36\x57\xdd\x25\xae\x55\x27\x0d\x19\xf7\xd3\xed\xc9\x7d\x45\x4e\x18\xa9\x87\x15\xec\x85\x6f\x25\xf7\x68\xef\x83\x96\x73\xd8\x93\xef\xb8\x13\x70\xbb\x40\xa9\x99\x19\x72\xe7\x80\x74\x6b\x20\xda\xa1\xab\x57\x1a\x8a\xa9\x89\xe1\xca\x17\x7b\x89\xf6\x7c\x99\xcd\xfd\x7d\x2f\x36\x9d\xb2\x11\x61\x6d\x32\xe7\x75\x01\x5c\x08\x76\x10\xe3\x84\xf0\xd7\x64\x8a\xef\xc6\x88\x41\x92\xd9\x47\xca\x02\x4c\x77\x07\xf2\x6d\xe2\x55\x03\xea\x25\x62\x8f\xdb\x66\xe9\xd7\x45\x2b\x01\x16\xef\x85\x2d\xea\x0f\x26\x3e\xdd\x36\x76\xe3\x8f\x33\x47\x9c\xef\xc9\x53\x0a\x5c\x81\x31\xf3\xfe\x54\xa5\x55\x5d\xb3\x11\xd1\xbb\xd3\xe8\xeb\xe3\xcc\xa9\x5b\x43\xe9\xbc\xdc\xc1\x46\x80\xfa\xa4\x42\x39\xd3\x5b\x4f\x1d\x07\x04\x3a\x3e\x3b\x62\xd4\x54\xa2\x8c\x9f\x84\xa3\x47\x8d\x44\x85\x1d\x24\x7a\xc8\xe8\x0d\x69\x21\xe5\x87\x7e\x9d\x58\xe2\x7e\x7f\xf9\x59\xf1\x7a\x4b\x71\x92\xb7\xe3\x43\x38\xc0\x50\xfa\x59\x63\x87\x86\xd6\xd3\xf5\x40\xb2\x87\x97\x43\xe2\xac\x3f\xf3\xe8\x85\x5a\x0f\x97\xdf\x95\x8e\x7e\x49\x28\x8b\x5b\x4b\x25\xd8\x5b\x36\x6d\x72\x2b\x18\x68\x8c\xf6\xe4\x26\x39\x86\xbc\x22\xa3\x01\x96\x84\xb1\x7c\x1b\x33\xf8\xf5\x98\xd6\x11\x2b\x77\x27\x15\xdf\x6f\x05\x38\xb7\xb0\x12\x95\x18\x22\x0e\x6d\xe8\x8e\xf2\xcd\x2d\xe7\xb0\x6c\x63\xf2\xe9\xd4\xf7\x98\x7f\xe8\x0a\x8a\x33\x6f\xa3\xff\xf8\xbc\x81\x3f\x08\x19\x47\xd5\xc8\xe9\x64\xe1\xe0\x70\x40\x79\x0a\x02\x1b\x03\x1e\x5b\xa6\xdf\xca\xf4\x09\xe5\xa0\x6f\x5e\x7e\xff\xdb\x79\x20\x5c\x31\xcc\x59\xb2\x3d\xb9\x87\x1f\x07\x0b\x4f\x1b\x79\x02\xb0\x9d\xb9\x60\x8f\xc1\x20\x45\x0d\x3c\x41\xa0\x06\xd1\x26\xc3\x10\xa9\x4c\x7c\xea\x19\x73\xe6\xdf\xac\x32\x80\x1f\x8c\x78\x35\x35\x2a\x8d\xde\xbd\xbb\x25\xf9\x72\x93\x67\x09\xa3\xc8\xad\x37\x6b\x38\xbe\x6f\x95\xb9\x39\xf3\x1d\x09\xf8\xba\x9e\xda\x10\x56\x9f\xf9\xd7\x2d\x22\x56\x70\xc3\xa4\xa6\x8d\x99\x10\x14\xfd\xf7\x67\x34\x82\xa7\x41\x1c\x87\x97\x3a\xc0\x3e\xb7\x7b\xa1\x18\x78\xc6\x81\x91\x21\xce\xc0\xc9\x7d\x6b\xd9\x08\xf0\xac\x28\x75\x53\xc2\x76\xf9\xb1\x77\x1b\xa8\x65\xf7\x5c\xad\x7d\xbe\xb1\x41\xe4\xc3\x79\xc2\x6e\xe2\x03\x8f\x1b\x5c\x95\x3a\x37\x83\x49\xb0\xe7\xb9\xe5\x0b\x87\xa6\xa6\x10\x01\x09\x42\xec\x59\x3c\x10\x7e\x66\xb1\x8e\xee\x88\xd5\x71\xb5\x4a\x38\x66\x2d\xbf\xec\x5d\xd0\xc3\x61\xc2\x47\x40\x1f\x33\x2c\x45\x6c\xe4\x95\x4b\x28\x51\xb3\xfb\xcd\x9c\x0f\x37\x8d\x49\x76\x28\x30\x18\x62\xe6\x6f\x54\x2d\x1b\x07\xaa\x5e\xa1\x0e\x47\x07\x9f\x05\x1a\x3a\xa5\x6e\x81\xed\xc8\x3d\x39\x67\x38\x08\x53\xec\xae\x10\x63\x10\xf5\x7e\xd1\x4b\x1f\x36\x3f\x40\x4c\x92\xc2\x06\x47\x03\x53\xed\x02\x16\xc2\xbe\x99\x05\x72\x94\xdb\x14\x67\x87\x33\x5b\xb6\xc3\xce\xa2\x14\xf2\xe3\x1a\x45\x13\xc1\xd8\x03\xb9\x5c\xb9\x83\x4f\x89\x9f\xbc\x48\x55\xa3\x33\xa5\xb1\xd4\xca\xbd\x86\x30\x0f\x96\x43\xdb\xe1\x6b\x07\x83\xaf\xc3\x67\xd9\x9c\x55\x15\xfd\xe1\x61\x59\xab\x30\xcc\x37\xfe\xe2\x47\x93\x45\x86\x76\x07\xad\x56\xfd\x09\xd0\xc7\x23\xf7\xda\xcb\x89\xe4\xaf\x83\xdd\xb4\xf3\x6f\xfb\x65\x66\x5c\x62\xc8\x0b\xd6\xa4\xdc\x73\xb2\x1f\xe9\xd2\x35\x17\xb7\x4d\xc3\xac\x15\x82\xf7\x8d\x79\xfa\xd0\xa8\xfd\xa8\xb2\x8f\xfa\xfb\xf6\xf4\x10\xa2\x46\x18\xe9\xc6\x5e\x8d\xa6\xa3\x6c\x7e\x34\x38\x78\x71\xc2\x8f\x2f\xb4\xda\xed\x3c\xb0\xdc\xf0\x54\xc5\x55\x34\xc1\x6a\xe5\x81\xdd\xf4\x84\x48\x3d\xcb\x31\xab\x22\xe8\xc0\x98\x59\x74\x4a\xbc\xc6\x1b\x85\xf7\x61\xa1\x18\x5d\xbf\x12\xec\x13\x18\x15\xcb\xe9\xdc\xef\x03\x71\x7f\x97\x52\x1f\xa0\x3e\x32\xef\x9f\x9f\xae\x9b\xbc\xb6\xce\x36\x20\x72\xf2\x2d\x66\xda\x89\x07\x8c\x08\x1d\x10\xc9\x43\x1d\xb8\xc5\x40\x6c\xdd\x15\x22\x85\xd8\xea\xd9\xa6\xab\xae\xaa\xe8\x77\xfe\xe3\xfe\x96\x1a\xb1\xbd\x4d\x41\xae\x4f\xbd\x07\xca\x51\x9b\x12\x21\x5a\x9c\xfd\xc7\xeb\xe6\x34\x7c\x0d\x9e\xd0\xd9\xc9\xbf\xd6\x2f\x77\x1a\x68\x1f\x87\x83\x34\x24\x0f\x3d\x37\x72\xb9\x21\x56\xc7\xc4\xaa\x7e\xf6\x43\x40\x2a\x17\x59\x35\x1c\x60\xc1\xf2\xcb\x9d\x61\xa6\x10\x9c\x40\xfb\x8b\xbd\xcb\x87\x80\xe1\x78\x93\x71\x89\xa1\xf8\x13\x1e\x95\xb2\xd4\x4d\xe1\x69\xad\x80\x67\x97\x35\xb4\x8e\xd2\x1a\x28\xec\x3b\xaa\x97\xb1\x68\x96\x56\x9d\x3c\x05\xfc\xe7\x4e\xf1\xc3\x6e\xee\x0e\x6b\xd0\xd0\x63\x7f\x7f\xa0\x7e\xc3\x9d\x01\x8b\xd1\x99\x6c\x3f\x38\x27\xf2\xf9\x95\xda\x2d\x75\x61\x91\x23\x4d\xa8\x3a\xde\xd6\x49\x2d\xe0\x61\x0c\xea\xf9\x8d\x02\xa4\x6b\xe2\x61\x17\x09\xad\xf9\x1c\x79\x52\x70\x03\x6f\x5a\x83\x83\x12\xae\xd2\x06\xdf\xae\xa9\x8f\xd3\xc6\x4c\x5d\x6d\xea\x61\xd8\x6d\xe5\x82\xb5\x23\x53\xcd\x45\xa2\xf5\x21\xcf\xd6\x97\x81\x8f\x98\x22\xa6\xf3\x62\xec\x29\x43\xbe\x22\x2e\x58\x2b\xa1\x72\x66\xcb\xbc\x20\x87\x31\x88\xc5\x2f\x40\xb6\x0b\x6f\xbe\x0c\xeb\xac\x06\x4f\x68\xa0\x0f\xfe\xd4\x90\x4b\x8d\xf6\x20\x4e\xfa\xdc\x73\x6e\xa2\x1a\xc6\xac\x58\x07\xd8\x2e\xe5\x2a\xe6\xc5\x50\xde\x36\xd2\x25\x17\x67\x4d\x24\x53\x72\x43\xe7\xa7\x99\x9c\x0e\x46\xd5\xf0\x1c\xd2\x60\xf9\xce\x0e\x03\xa9\xcb\x42\xb7\x7e\x4e\x76\xf2\x6d\xeb\x4c\x55\x32\x12\x08\xed\x3b\x25\xc7\xf7\xbb\x2d\xa0\x5c\x25\x5e\x28\x06\x40\xe7\x8f\x1d\x0e\x66\xc9\x0d\x3e\x91\xd5\x24\x9f\xc7\xdf\x80\x0f\x88\xfb\x71\x23\x0f\xcb\x60\x1e\x9d\xec\x03\x1d\x9c\x42\x2e\x67\x97\xfb\x49\x79\x08\xf8\x27\xf1\x67\x48\x86\x6b\x5f\xdc\x9f\x0c\xee\xdb\x27\xfb\x29\x5d\xda\xdf\x9c\x97\x2e\x6e\xe2\x04\x2f\x26\x08\x99\x39\x83\x20\x1d\x25\xe0\x9c\x6e\x51\xde\x6f\x6d\xf1\x97\xf2\xa9\xe7\x71\xa1\xf9\x62\x4f\xfe\xc6\x4e\xc0\x70\x0a\xeb\x52\x81\x9c\x5f\xb1\xbf\x3e\xd9\x22\x1e\x82\x91\x9f\xc0\x3c\xda\x0f\xa6\xe4\x62\x51\x99\xb7\x91\x9b\x5e\x15\xe3\xad\xeb\xca\xc8\x25\xf0\x8e\x9d\x7d\xb2\x05\x5e\x56\x0f\x44\x65\x96\xdb\x77\xd0\x90\x2f\xb6\x11\xc3\x36\x75\xca\x5c\xde\x6f\x56\xfc\x57\xfa\x8e\x34\x84\x6e\x79\x4c\x56\x8b\xa1\xe8\x47\x9b\xe4\x60\x23\x08\xcb\x02\x5c\x9e\xff\xa0\xa3\x48\x8c\x94\x61\x9b\xaf\xb1\x78\x69\xfd\xb3\x8a\xf9\xb5\xb8\xbe\x8a\xaa\x8d\xf3\x95\x3e\xad\xe4\xfb\x84\x77\xb6\x72\x5b\x3a\x84\x79\x18\x31\x85\xb0\xed\xc9\x94\x0e\x5d\x62\x16\x4a\x8c\x22\xcb\x4e\x9c\x5b\x33\x4f\x6d\x32\xfa\x30\xc2\x5c\x39\x18\xfc\xea\x53\xc6\xa0\x44\x6c\xce\x85\xd0\xf0\x8e\xb7\x34\x3d\x8b\x34\x0a\xc5\x68\x8f\xbc\xa9\xb7\x7b\x02\xd8\xc9\xbd\x27\x4f\xa4\x5f\x75\xfb\xa4\xc9\xd3\x0a\xed\x93\xda\x27\x89\x57\x3d\xe4\x94\x71\x12\xa8\x94\xbb\x11\x40\xd3\x41\x6f\x18\x6e\xb7\xa1\x23\xce\x48\x66\xe6\x72\xcd\x00\xa7\xba\xef\x8d\x16\x1f\xd1\x06\x39\x21\x6c\x7e\xae\x31\xe8\x08\xd8\xc1\x9e\xe1\xd5\x9b\x3b\xf9\x22\xc0\xc4\x22\xa9\x79\xb9\xe4\x86\x9e\xdc\xc0\xe7\x41\xad\x55\x8f\x1b\x6a\x9e\x07\x5e\xa8\xe8\x5a\x0b\x7b\xe5\x50\x99\xa4\xae\x39\x6e\x20\x90\x31\x63\xc8\xe3\xb4\x7c\x7d\xf8\x3e\xe9\x0c\x6a\x89\xd2\x71\x9c\xdc\x31\xde\x44\x9e\xa0\x20\x40\x25\xae\xfb\x2e\xbf\xe4\x6d\xad\x60\x01\xfe\xd0\x44\xe5\xbb\xfd\xed\x73\xce\x8a\x78\xb3\x74\x01\x18\x49\x4e\x6e\x2f\xc4\x5f\xe2\xc1\x53\xe9\x90\x16\x7a\x10\xb4\xc7\xc1\xda\x82\xde\x35\x66\xba\xf1\xc1\x90\x93\xec\xbe\xd5\x97\xba\xe3\x59\xb3\x19\x71\x88\x6f\x63\x89\x08\xcd\x7d\xe5\x09\xe8\x25\x79\x57\x48\x98\x18\xf8\x7d\x68\xdf\x70\x00\x0d\x8b\x5b\x87\x6e\x80\x8c\xfe\x9f\xd3\x72\xb4\x1f\xba\xc8\x13\xbc\x17\x5e\xd2\xce\x7a\xf4\x12\x98\x71\xaa\x4c\xc8\xbd\x81\x17\x7a\xe9\x6c\x30\x89\x47\x0c\x39\xdd\x6b\xa4\xeb\x96\x21\x04\xc5\x48\xc5\x11\x62\xa3\xd1\xef\x37\x88\xda\xeb\x36\xae\x5c\x0b\x88\xd7\xb9\x7f\x29\x99\xb5\x82\x50\x3f\x13\xcb\xe3\xf1\xfd\xf4\x2c\x26\x68\xd2\x42\x3d\x4c\xa0\x6c\x3f\x1c\xaf\xbf\x5e\x4b\xaa\xc8\xfe\xdf\x61\x06\xef\x83\x9b\x1f\x76\x76\x82\xc7\xba\xf3\x5a\x15\x37\x10\x04\x87\xe5\x0e\xae\x4d\xa3\x50\x30\x92\x4b\x83\xfd\x0e\xc0\x73\x26\xb8\xfe\xfe\x6b\x81\x84\x03\xf1\xeb\x4c\xd8\x67\xe6\xbe\x36\x02\xba\xed\x58\x36\x2f\xa9\xd4\xd3\x7f\x13\x30\x91\xea\x8c\x56\xb1\xf0\x44\xff\xed\xc3\xe9\xa8\x41\xfc\x24\x5f\xf5\x5b\xa0\xeb\xba\x0a\xc6\x92\xfd\x91\xe9\x65\x9b\xba\xe7\x1c\xa2\x22\xb0\xc2\x2b\x0d\xf5\x9c\x0a\x61\x7e\xdc\x42\x2b\xb7\x9d\xab\x9f\x07\xcc\x10\xca\x5c\x24\xf2\xc1\x95\x5b\x25\x12\x9d\xdc\x15\x72\x6b\xa4\xdc\xdf\x16\x89\x47\x75\x9d\xd7\x44\x50\x72\xee\x98\x67\xf8\x11\x79\x0d\xcc\x48\x85\x24\xcc\xf3\xa5\x8f\xb6\x34\xca\xf5\x44\x70\x3a\x7a\x65\x5b\x12\x57\xca\x50\x2a\x32\xf3\xe5\x91\x80\xf4\xe8\x39\x82\x14\x94\x79\x78\x77\x12\x9e\xb0\x03\x46\x0a\xd9\x57\x01\xec\xb8\x81\x44\x94\xbd\xec\x01\x43\x62\x95\x58\x8c\x0a\x18\xaf\xdc\xb4\x7c\xfc\xaa\xf4\x11\xa1\x81\xed\x72\xd3\x35\x7d\x44\x06\x2e\x14\xfd\x71\x40\x71\xa1\x18\xd5\x26\xb5\x58\xca\xc6\xcf\x52\xac\x5a\xe6\xcd\x31\x79\xd4\x94\x0b\x90\x8a\xa3\x93\x69\x4b\xbe\xe9\x1a\x0c\x86\x30\xeb\x97\x0d\x00\xf0\x6a\x2d\x7a\x07\xa4\xe7\xea\x28\x20\x72\x5c\x9c\x3b\xbc\x03\x6e\xcf\xad\xd0\x97\x72\x35\xd3\x56\x83\xfd\x05\x23\x0d\x14\x10\x3f\xe1\xa9\xf6\x01\xce\x92\x4d\x12\xd8\x42\xf2\x7a\xa3\x51\xf3\x73\x37\x94\x64\x5e\xbf\x75\x91\xc8\xee\x55\x46\x43\x2f\xfe\xfe\x05\xc4\x1b\xf7\xdc\x8a\x23\x86\x97\x08\x52\xfa\xa0\xd9\x23\x46\x52\x2c\x21\x9a\x36\xa1\xce\x3e\xb0\x58\xd7\x5c\x71\x42\x2d\xc5\x65\xd3\xa7\x97\x9b\x3c\xc9\xb2\x72\x5f\x9e\xfc\x70\x2b\x70\xc6\x8b\x3f\xa4\x90\x58\xfd\xb7\x07\x13\xa1\xc5\xf6\xa9\x85\x62\xb4\xec\x3c\x28\x6a\xc3\x88\x45\xc5\x45\xec\x32\x06\xc6\x6b\x50\x13\xa5\x34\xc6\x47\xf5\x31\x6c\xae\x18\x5a\xd3\x7d\x4e\x2c\xc4\xc3\x46\x28\x96\x42\xb3\x6a\xf0\x33\x39\x32\x71\xe8\x0e\xc1\x0d\x25\xa8\x38\x05\xa8\x7e\x27\x73\x9e\x62\xd4\xbd\xb4\x8f\x0c\x29\x5c\x49\xba\x27\xf7\xeb\xf3\xf4\x71\x2e\x49\x05\xd0\x5b\x17\xe8\x97\x38\x79\xe2\x74\xe1\xfa\xb8\x7c\x01\xdc\xe7\xa2\xba\x30\xa4\xbc\xd0\x40\x4c\x94\x88\xe0\xa2\xeb\xfb\xb2\x33\x82\x83\x36\x12\x88\x73\x32\xf1\xc1\x74\xcb\x8f\x9c\x12\x4f\x0b\x82\x0f\x2c\x0f\xec\xc4\xb3\xc9\x9a\xa6\x13\x27\x6b\x9a\x3f\x1c\xd6\x2f\x96\xb3\x20\x09\xaf\x81\x84\x7e\x77\xe1\x66\xb5\x8d\x31\x84\x23\x76\x1a\xce\x69\x0d\xe2\x13\x8e\xea\x15\x3c\xa6\xef\x9f\x80\x12\x32\x8c\x71\x59\xd3\x9e\xfc\xfd\x8b\x41\x39\x1a\x7a\x65\x24\x76\xa4\xbf\x9a\x63\x9a\xd4\x56\x88\x47\x02\x22\x21\x37\xff\xdf\x3c\xd3\x67\x36\x50\x06\x6d\xbd\x0d\xb6\x4f\x1d\x97\xe3\x9e\x88\x48\x96\x7f\xb1\x27\xf7\xd3\xb3\x89\x87\xa9\x2f\xb4\x48\x8b\xd1\xf4\x3b\xd3\x55\x94\x47\x7d\x2c\x5e\xf3\xf7\xf6\x69\x71\x1c\x54\x6d\xa5\x2b\x44\xab\xde\x31\x18\x80\x84\x39\xc0\x78\xf1\x5e\x83\xdc\xec\x07\x54\x8c\x65\xf5\x0b\x7c\x6e\x2f\xa8\xa9\x6c\xea\x63\x65\x7a\xb2\x7a\xd7\x60\xb8\x7e\x09\x58\x68\xc9\x34\x75\xf6\x11\x5d\x56\x39\xb8\x92\xf8\xbe\xfd\xcf\x7d\x30\x13\xe1\x00\x73\x97\x9e\x7c\xd8\x01\xda\x05\x1b\xd5\x30\x37\x87\xe6\xd8\xa1\x23\x2f\x99\xf3\x0c\x85\x56\x54\xc5\xef\x93\x25\x30\x03\x23\x3e\x0d\xc4\x75\x7e\xe9\x31\x28\x6a\x84\x19\x2f\x62\xb8\x76\xef\xc6\x16\x15\x1e\xa2\x6c\xc3\x6a\x07\xcd\xbd\x80\x57\x53\x68\xa9\x9c\xa7\xbf\x2d\xc3\xc8\xa7\x9e\x12\x33\xfe\x49\x17\xd8\xff\xe2\x40\x8c\xd4\x79\xe0\xbb\x6e\xd8\x05\x25\x82\xfc\xc2\x32\x16\xe2\x42\x71\x08\xdc\xa8\x95\xf8\xa8\xae\xff\x26\x40\x09\x0a\x9b\x9c\x09\xca\x07\xf8\x2f\x1c\x97\x36\x53\xd4\xb2\x95\x49\xd4\x0f\x8c\x6d\x7a\x27\xaa\x21\x16\x20\x21\x80\x2d\x0c\xe3\x9e\x16\x7b\x94\x73\x59\xaf\xcd\x16\x41\x76\x29\x96\x94\x35\x55\x81\x2c\xe9\x65\x9e\x2d\xc5\x98\x5f\x7f\x5f\x8b\x66\x6b\x80\xaa\x84\x86\x12\x4b\xd8\xfb\x7c\x43\x7d\x14\x91\x26\xf2\xa4\x27\x7c\x5c\x74\xff\xf2\xb9\x94\xa1\xfd\x4d\x8b\x27\xf0\x93\x53\x28\x46\xab\xfa\x98\xed\x52\x5c\x34\x12\xa5\x59\x92\x5d\xfc\x34\xc0\x7d\x52\x21\x44\x10\x1d\x59\x6f\xaa\x9d\xba\x94\x41\xbf\xbc\xc3\x27\xb4\x5d\x94\xc7\xe9\x77\xef\x9e\xd4\xe3\x60\x8f\xba\xfc\x64\xbc\xb2\x78\x10\x18\x11\x62\xe1\xe1\x18\xff\xc1\x53\x4b\x4c\x73\xc5\xba\x43\xbb\x13\x75\xaf\xdc\xd2\x37\x93\x1e\xda\x42\x21\x1c\xc9\xdc\x60\xa8\xb4\xd6\x31\xb3\x51\xdd\x17\x8a\xb8\xb9\xaf\xbc\x01\x8c\x30\xb1\x85\x78\x68\xc9\xe4\x4f\xe9\xe3\xd0\x8d\x58\x39\x8e\xa6\x5f\x71\x74\xd0\xe6\x42\x86\xf2\x8b\x7d\x7a\x50\x3f\xd8\x69\xb8\x71\x81\x70\xf0\xbd\x74\x8b\x22\x91\xac\x6d\x70\x98\x6f\x57\x44\x71\x75\x3d\xa3\xb2\xdc\x5a\xbb\x73\x20\x08\x9e\xc2\xd6\x85\x6f\x7e\x0e\x8b\x56\xb7\xcc\x50\x53\xb0\xbc\xf2\x23\xe7\xeb\x0f\x23\xc6\xbd\xa2\x05\x6e\x9b\x04\xd9\x34\x8e\x23\x78\xd7\xd1\x5f\x5f\xd6\x65\x81\xc5\xb0\x9b\x92\x65\xff\xea\x6e\xe8\x85\xc6\x6c\x2e\xe1\xd9\x93\x7b\xaf\xac\xbf\x97\x4b\x69\x39\x4e\xd1\x33\x1b\x72\x5a\x44\x58\xdd\x41\x82\x08\x95\xa3\xfb\x80\x31\x5f\x40\x85\x18\xe6\x7f\x79\xc3\x8d\x28\x1c\x07\x14\x59\x55\x64\xbb\x25\xcf\xd2\x45\x71\xb9\x1b\x0d\x3e\x2f\x19\x3f\xd3\x3a\x4a\x8d\x9f\xff\xf9\xf8\x20\xd9\x2f\x94\x4b\x29\xa2\xec\x1f\x81\x44\xb6\xcf\xcd\xe6\x05\x17\x2d\xf3\xf6\xab\xd2\x03\x0a\x31\x87\xaa\x71\xd4\xac\xcd\xc0\xef\xc2\x46\x2c\xa0\x1c\x33\x99\xf3\x0f\x29\x2b\x72\x17\x31\x39\xb9\xcf\xde\xb4\x59\x0f\xb3\x05\x3f\xd3\x6a\xd5\x8c\x98\x36\x64\x20\xe0\x74\xd1\x7a\x5d\xf2\xef\xee\x32\x94\x02\xac\xd0\x0f\xa8\x1b\x1f\x54\x81\xea\x1a\x0b\xec\xe0\xc3\x24\x4c\x7d\x73\xd0\x05\x49\x62\xe1\x40\xa3\x43\xe6\x1d\x14\x43\x05\x85\x24\x5c\xf0\x08\x18\xc5\x3a\x34\x10\x16\x98\x3d\xb9\xcf\x69\x03\x3b\x9f\x5a\x2a\x36\x19\x38\xbc\x2a\x62\x25\x54\xc5\x8a\xda\xec\xef\x30\x30\xd0\x36\xc3\x4d\x39\x22\xb8\x3c\x2f\xd6\x86\x4b\x88\x5f\x23\x6b\x6c\xb8\x36\xfc\xd5\x68\xb9\x37\xb5\x69\x53\xc1\xb8\xf2\xb5\x57\x4d\x57\x19\x1a\x3a\xca\xfb\x72\xe9\x69\x7d\xe1\xdb\x05\x07\x37\x3b\x4f\x2e\xf7\x4b\xc8\x71\x38\x27\x5d\xfe\x20\x7b\x22\x90\x9b\x6c\x52\xc7\xc1\xfc\x9a\x5b\x4b\x24\x1a\xec\x86\x9b\x96\xf1\xc3\x77\xc5\xd9\x11\xe0\xc0\x73\xb5\x78\xae\x95\x23\x56\x28\x77\x1c\x30\xa4\x57\x19\xaa\xa0\x20\x45\xfa\xbf\xaf\xaf\xc9\x38\xa5\xdc\xb2\x95\xff\xba\x53\x07\x40\xa8\xb3\x43\xb7\xc4\x5f\xf1\xc7\xaf\x32\x5f\x4e\xc0\x34\xb0\x31\xea\x3a\xd6\x4f\x5e\x61\xe1\x15\xc8\xef\xf6\xbb\xa3\x41\x0f\x2e\x7b\x57\x7d\x98\x47\xbf\x78\x29\x68\x11\x1d\x1c\xe7\x05\xb3\x91\x3d\xbe\x36\x8d\x8c\xfc\xa4\x1c\x50\x75\x6f\x95\x26\x15\x36\x71\xf9\x23\xb1\x97\x8a\xdf\xbf\x50\xed\x80\x79\x43\xb9\x53\x9b\x5d\xd3\x66\xa1\x18\x8d\x7c\x5c\xa3\x61\xa7\x4d\x92\x1c\xb0\x16\x34\xec\x47\xc6\x18\x25\x33\x27\x5d\xb9\xc2\xae\x9e\x7f\xb1\x50\xc8\xed\x0b\x02\x54\x42\x38\x15\xa5\xc6\x7f\x8c\x37\xad\xde\xfc\x80\x78\x96\xfa\xb7\xb9\xc5\x27\x4d\x82\x3a\xaa\x29\x85\xc2\x07\xef\x03\xa2\xdd\x33\xe2\xdf\xf4\xa5\xed\xb3\xb9\x38\x69\x92\xb3\x66\x57\x24\x42\x71\x34\xff\xff\xa3\x51\x30\x7a\x52\x57\x47\xa9\x8c\x27\x95\xa7\xce\x31\x4d\xab\x8a\xd1\x05\x69\x10\xb4\x9c\x85\xc5\x3f\xf9\xcf\x67\x47\x80\x4c\x5f\x2a\x54\x68\xc8\xf4\x2c\x38\x3b\xfc\xde\xe4\xd9\x15\x38\x70\x3d\x77\xf1\xac\xf4\x54\x87\x6f\x86\xc4\x00\x2a\xfd\xd2\xbe\xb2\xbe\xbf\x8c\x2f\x72\xec\xcc\x6b\xf8\x72\x34\x10\xd6\x3f\xc9\xed\xb9\xec\x0d\x8d\x5f\xbb\x72\xe6\xf4\xf8\xaf\xae\x5f\x2f\x5e\xe6\x02\x22\xa4\x7f\x79\x34\xeb\xf7\x6c\x12\x2f\xb1\x47\x61\xb2\xeb\xde\x25\xc6\x2b\x73\x11\xf3\x70\x10\x80\xc5\xd9\x47\x8e\x6a\x93\x2e\x6c\xee\xe6\xa2\xce\x55\x26\x3e\x02\x39\x4a\x7b\xe7\xe4\x08\x63\x8e\x6b\x63\xab\x26\xc0\x51\x17\x2c\x01\xea\x99\x89\xc5\x59\xa1\x18\xbd\xd7\x47\x2a\xe2\x41\xde\xdb\xbe\xa1\x20\xd5\xc6\xb9\x3d\x4c\x4c\x11\x3f\xbf\x41\x84\xf9\x45\xb4\x89\x1d\x08\xb4\x79\xdd\x58\x71\xc9\xf1\x2b\xbf\x68\xcf\x6d\x84\x88\x0b\x54\x0d\x45\x0c\x7c\x7d\x8d\xee\x9a\x1c\x2a\xe2\xe9\xd2\x77\x0c\x99\x41\xe2\x3b\x18\x29\xaf\xf1\xdf\xe7\x8d\x86\xa7\x5e\xa7\x0e\xf5\xb8\x1d\x64\x12\xef\x7e\xbc\x44\x4e\xae\x6c\x54\x63\x88\xe8\x3f\x98\x7b\xdc\xf4\x3f\x77\x6a\x85\x66\x5c\xc7\x8b\x93\xbc\xc9\xd1\x89\x14\x95\x68\x23\x2e\x10\x2c\x69\x39\x12\x7f\x66\x16\x77\x80\xfc\x53\x5e\xd9\x47\x63\xdf\x99\x05\xc6\x2b\x17\x96\x4c\xe2\xaf\xeb\x12\x0e\x46\x93\xda\xe6\xd9\xbf\x04\x23\xc0\x97\x0e\xcb\x5c\x3d\x89\x25\xe2\x4e\xff\xb3\xde\x20\x66\x60\x8f\x20\x47\xae\x5d\xae\x1f\x7f\xa1\xec\xad\xb8\x58\x56\xb1\x27\xd3\x14\xf3\xa2\xc2\x3c\x61\x43\x6c\xf6\x2d\x67\x7a\xeb\x37\xe9\xe2\x2a\x2a\xb8\x98\x55\x65\x65\x72\xc1\xf6\xe4\x9c\xb1\x4a\xd8\xb2\xb9\x19\xd3\x5b\x3a\xf0\x29\x85\x61\x15\x87\xbf\x3a\xb6\x3f\x1c\x84\xd5\xf9\xbb\xcc\xac\x5b\x6c\xb6\xd9\x5e\xd9\xd1\xa8\x96\xae\xf1\x10\x42\x4e\x2c\xde\x00\x1e\x1d\xa3\x6b\xc8\x9a\x47\xad\x1a\x0d\xf9\xd0\x24\xbf\xa6\x2e\xbd\x91\x66\x48\xf7\xb1\xf8\x7f\x92\x40\xca\x78\xc7\x5d\x0d\x9f\x26\x7c\xfc\x39\xc0\x16\x8e\x0b\xc2\xb8\x02\x90\xb5\x41\xee\x99\x12\xf0\x0a\xa1\x5e\x8b\xb3\x7a\xe6\x81\xa3\xc0\x34\xc7\xba\x2b\x24\x41\xc0\x6f\xc4\x89\x5e\xa6\xe9\x09\x73\x15\x57\x34\x2a\xee\x4f\x0f\x7f\xcb\xc8\x35\x71\x2a\xf9\x4e\xe1\x32\x52\xb8\xc9\x77\x89\x57\x26\x0c\xe6\xe2\x2f\x2f\x18\x69\x9e\x8f\x3a\xf2\x08\x56\xe8\xff\xdc\x58\xc7\x50\x90\xa8\x54\x88\x45\xd4\xde\x39\x9b\xd9\x3d\x0c\x74\x49\x15\x86\xc2\x32\x4e\x48\x57\xc7\xae\x12\xa8\x93\x06\x66\x25\x14\x10\x5e\x37\x3d\xfe\x90\xd9\x64\xfb\xdc\xb3\x48\x84\x8c\xfc\xe8\x36\xe0\xac\xd7\x9e\x1a\xf3\xae\x7b\x4c\x7a\xdf\x7a\x01\x66\xbc\x6e\x13\x43\x87\x8f\x3d\x2a\x45\x09\xdd\x52\x1c\x46\x42\xb1\x30\xec\xbf\x30\x7d\xf0\x95\xd6\x0b\xff\x65\x3c\xb1\xcd\x7b\x2c\x5d\x6a\xd7\x19\xb6\xa8\x27\x42\x91\xd2\xd3\xce\x6e\x38\x6c\x22\xc0\x2b\x42\x94\xaa\x18\xed\x77\x92\xc6\x21\x08\x59\x4a\xca\xef\xca\x35\x46\xfa\xc2\x75\xc4\x80\x24\xea\x7f\xcb\xda\x14\x7e\x15\xfe\xa9\x3f\x61\x78\x2b\x30\x52\x96\x84\xb3\xdc\xa6\x75\xc3\x8c\x63\xa0\x61\xf9\xd9\x6f\x6c\xd4\x79\xa1\x44\xbb\x2d\x1a\x08\x70\xe8\x9c\x15\x26\xcc\x8a\xc3\x13\x14\x91\xf7\xe1\x37\x2e\x33\x5f\x06\xdc\x48\x8a\x11\xeb\xc9\x7e\x00\xbc\x2c\x94\x2f\x64\x79\x58\x3f\x31\xd4\xb8\x44\x7a\xfe\x7a\xe4\x24\x18\x10\x61\x29\xeb\x77\xcd\x38\x83\x84\x4b\x4b\x98\x05\x34\x7d\x5e\xb3\x9d\xf7\x9b\xe2\x95\x16\xf1\x95\x64\x57\x16\xcd\xd7\xa1\xce\x0f\xc1\x08\x6e\xf1\x9c\xc1\x70\x0c\xe1\x27\xee\xc8\x39\x7b\x53\x5a\x93\x3a\x08\xe3\x16\x44\xf6\x98\xe9\x28\xf3\xe9\xfb\x44\xac\x5e\x42\x59\x10\x56\x43\xec\xab\x6e\x2d\x73\xc9\x46\x80\x11\x24\xdc\x7e\x54\xba\x0a\xe4\x1f\x28\x19\xd5\x48\x1d\x63\xcb\x16\x20\xeb\xec\x6e\xa0\x29\x84\xa1\x94\x49\x6e\x46\x57\xfa\x9f\x35\x49\x20\x8d\xf6\xa3\xd1\x0f\x9a\xd8\x19\x97\x7a\x4a\xa8\x40\xa1\x69\xdf\x6f\x5c\xa8\x67\xdf\xf1\x9b\x7a\x18\x58\x30\x58\x24\xe0\xe8\xcc\x9e\xdc\xd7\xe6\x9b\x9c\xde\x32\x69\x90\x72\xa8\xd0\x19\xd9\xd9\xaf\x0f\x48\x81\xed\x08\x57\xfb\xca\xf4\x32\x2a\x60\xaf\x8a\x1d\xec\x4b\x89\x2c\x3e\x09\x58\xf3\xae\x98\x6d\xcf\x98\xcc\x7f\xd1\xba\x45\x40\x5a\x15\x79\xb5\xf8\x87\xac\x32\xaa\x7a\x97\xd2\xc0\x16\xab\xdc\xbc\x6d\xa8\x0c\x95\xa8\xaf\x06\x77\xb7\x34\x46\x19\x47\xc0\x0e\xdd\xe4\xcb\xf3\x4f\xbd\x4e\xb4\x4b\x85\xa2\xd3\xed\xd6\x49\x8b\x48\x56\xe6\x7d\x09\x79\xa3\x95\x8a\x2c\x93\xa2\xcd\xa3\xf5\x07\x9c\xdc\xc1\x1d\xee\x72\x6f\x98\x5a\x5a\x96\x5c\x1e\x89\xd3\xb6\xf5\x51\x60\x9d\x15\x32\x61\x5f\x91\xfb\x7b\x1f\x73\xa2\x54\x51\x4d\x51\xf6\x92\x6d\x7a\xff\xcf\x41\x67\x9c\x8c\x2f\xdb\xb5\xdc\xdb\xf7\x41\xf5\x3b\xb5\x01\xca\x7c\xfa\x21\x03\x5b\xc3\x90\x5f\x97\x2b\x96\x6e\xa3\xcb\xf2\xb5\xb1\xcb\xa1\x07\x04\x4c\x79\x31\x6e\x06\xb4\xe9\xd9\xc8\x25\x4e\x40\x13\xe2\xe6\x6a\xc3\xea\xd7\x45\xcc\x5c\xad\x7e\xe0\x4c\xb2\x10\xa9\x50\x90\x55\x73\x5d\x86\x5b\xac\x2f\x9c\xe3\x75\x5e\x00\x46\xf5\x20\x9f\xcc\x1c\x05\xd7\x2e\xa4\xc1\xf5\x41\xf3\x1b\xdb\xce\x0d\x14\xe5\x72\xe7\xb7\x3f\xa4\xcc\xe7\x1b\x04\xc7\x0d\xc6\xbf\xee\x31\x25\x1f\xc3\xba\x70\x48\xe5\xbf\xf9\x6f\x5e\xfa\x8f\x4b\xc4\xab\xe2\x64\x27\x9f\x7d\xdd\xb0\x35\xf3\x15\x5c\x77\x61\x1f\xf0\xf6\x67\xb6\x4d\x8d\x9f\xfb\x4f\x77\x40\xc4\x71\x4d\x80\x4d\x72\x3f\x5a\x32\x40\xd6\xa0\x5e\xc0\xe2\x0e\x52\x58\x04\x76\x0e\x11\x09\x68\x5e\xd8\x80\x92\x4d\xb9\x1f\xbc\x34\x34\x35\xc6\x80\xc5\x49\x79\x9e\xa8\x1c\x68\x18\x70\xd9\x4a\x7e\x51\xa6\xf4\xfd\x7f\xea\x47\x6e\x32\xfb\x91\x0f\x45\xfc\xf3\xc5\x9d\xed\x14\xbd\x7d\xbe\xb2\x73\x40\x3a\xa9\x88\xa3\x75\xf7\x86\xf4\xf3\x20\xd2\x20\x30\x22\x1b\x4d\x13\x22\xda\x8d\xbc\x40\x12\xfd\xff\xd8\x95\x48\xd0\xd5\x71\xab\x5c\x8e\x05\x0c\xb6\x68\x18\x54\x08\x76\xca\xad\x04\xfd\xfc\x47\x97\xa5\xef\x7f\xcd\xa3\x4d\x85\x33\xcb\x5f\x7b\x3e\x70\xdf\xf2\xe3\x32\x20\x6e\x7a\xd5\xe1\x5d\xfa\x5c\xaa\xac\x6b\x88\x50\x4b\x6c\x3d\x8f\xea\x46\x8c\xfa\x1a\xad\x19\x5d\x7e\x1f\x74\x2a\x0c\xbd\x32\xf2\xe4\x7d\xed\x7b\xad\xfe\x13\xec\xf8\x38\x01\xce\xe6\x2e\x5b\x03\xd7\x5e\xa0\x00\xe0\xc9\xff\x75\x7d\x62\xe4\xc4\x35\xf7\xc4\x9e\x74\x2e\xf1\x88\xef\x27\x62\xbe\xe9\x2f\x7f\xf7\x5a\xe3\x0a\x51\xbe\x9d\x4b\x4c\x28\xaf\x3b\x23\xce\x46\x5a\x4f\x5b\x8a\x8b\xdf\xe0\x05\xb8\x54\x4a\xb2\xcf\xfe\xf9\xca\x26\xcc\x42\x49\xd4\x78\xab\xcd\xa0\xe0\x32\xe2\xfa\xd4\x93\x2b\xb3\x74\x38\xfc\x73\x1e\x28\xcd\x51\x47\x38\x38\xfe\x63\x48\x72\xfb\x3b\x43\x70\xa4\x33\x23\x9e\x07\x9a\x30\x0c\x35\xca\x28\xfe\x6c\x17\x5e\x6b\x00\x6b\xa8\xef\x93\xba\x5a\xf9\x45\x0f\xec\xd3\x3e\x5b\x5e\xab\x9e\xff\x85\x9d\xba\xe4\x26\x01\xe2\x80\xa7\x7f\x92\x82\xd2\x15\xcc\x02\x2e\x80\xce\xfb\xb0\xc1\x6f\xe9\xcf\xda\xa0\x81\x98\x83\x8c\xed\x33\xda\x68\x44\x48\x19\x79\x69\x4b\xc5\xec\x88\xd5\x7a\x36\x81\xbb\x02\x86\xdd\x73\x58\x00\xe6\xdc\x8a\xe1\xcb\x8b\x91\x94\x11\xce\x7c\x63\x63\xfa\x8f\xa8\x67\xa9\x6e\xec\xe6\x61\x92\x6a\xe6\xe0\x9a\x8f\xbc\xb2\xbe\xe6\xd1\x47\x8e\x8c\x02\x5b\x34\x3f\x38\x87\xf1\xed\xf8\x3c\xa8\x87\xc2\x92\xc7\xf5\x18\x1f\x1d\x63\xce\x83\x7c\x2b\xc4\x65\xc5\xd6\xf9\x9a\x21\xda\x8c\x4a\x34\x0c\x54\x73\xfd\xc1\xb7\x8c\xea\x21\x3e\xd3\x72\x54\xf8\xd5\xbd\x43\x9b\xe6\x0c\x55\x00\xcf\xa3\xe9\x7b\x2f\xd4\x55\x2b\x6f\xd9\xae\xee\x6b\xba\xd3\x95\x09\x92\xca\x0d\x53\x1f\x34\x74\x8d\x59\x15\x48\x7a\x1e\x99\x6d\x64\x2d\x5a\x4e\x0e\x77\x61\x8c\x8e\x1f\x6d\x2d\xc7\x31\x1f\xae\xd6\x79\x10\x57\x2a\x02\x0d\x1d\xbd\x38\xdf\xd0\xb2\x4f\x04\xbf\xc5\xdb\x69\x02\x77\x69\xfe\x9d\xb0\x2f\xb6\xda\xaf\x1c\xbd\x12\x00\xc4\x9b\x0e\x0e\x02\x41\xf9\x63\x2d\xe4\x9d\xec\xef\x58\x2b\xf3\x3f\x0c\xe4\xe6\xed\x5b\x5d\x2d\x48\x5b\x6c\x09\x1b\x2c\x5e\x77\x44\x4f\x1a\x34\x34\x3f\x2c\xd5\x29\xf6\x90\x46\xb8\xcf\x7a\x0f\xbc\x69\x14\xc8\x89\xd6\xcf\x47\x02\x11\x80\x32\x09\x28\x93\x5e\x7f\x4b\x76\x18\x63\xdf\x6e\x87\x70\x8d\x60\x29\x11\x79\xc5\x32\x3d\x98\x25\x72\x09\x13\x0d\x18\x01\xbd\x6a\x68\x53\xd4\x37\x97\xf4\x01\x5d\x00\x0b\x03\x49\x7c\xcd\xee\xce\x9a\x02\x48\xaa\x02\x74\x94\x15\xcc\x67\xdf\x04\x06\x1d\x3c\xdb\x9d\xdd\x61\xd2\x42\x3d\xec\x62\x09\x66\xca\x7f\x7c\xac\xf6\x93\x40\x84\x57\x73\x86\x13\x94\xcb\x5d\x1c\xc5\xdf\xfe\xa7\x63\xc9\x77\xa8\x33\xb5\xf8\x1a\xe7\x19\x38\x00\xec\xd4\x25\x23\xe9\x91\x91\x66\x8a\xe7\x46\xa2\xea\x6c\x1d\x9e\x9d\xfe\x97\x88\x94\xb1\x08\x41\x37\x02\x65\xb4\x46\xfc\x35\x13\x9d\xb1\xdc\xca\x7e\xc0\xf9\x0c\x3b\x0e\xcf\x45\xf1\x1b\xfd\xcd\x2c\x3d\x0c\x9a\xce\x8d\x91\x78\xeb\x74\x72\x09\x60\x94\x71\x75\xb1\x42\x31\xaa\xf5\x35\x34\xbf\x6c\xea\x8a\x2a\x66\xdb\xbe\xe4\x2b\x06\x0c\x2b\xdc\x76\x19\x22\xa1\x58\xbd\xad\x75\x36\x3b\x29\xfd\xd4\xea\x04\xc7\x45\x16\xff\x04\xf7\xea\x37\x6f\x75\xd7\x55\xd1\x7d\xc7\x81\x21\xe9\xef\x51\x47\x4a\x79\x6a\xce\x38\x9d\x50\xeb\x98\x61\x02\x21\xea\xd9\xc3\x7b\xc6\xb4\x16\x61\x98\x31\xdc\xa0\x8e\x10\x82\xe3\xe8\xc9\x1b\xde\x1a\x64\xd4\x4f\x42\x53\x38\x37\xeb\xa9\xe1\x89\x68\x74\x6b\xb9\x7d\xd9\x83\x62\x98\xcc\x6d\x34\xe3\x4f\x7f\xb1\x88\x4f\x85\x85\xca\xfd\x16\x3a\xdf\xae\x4d\xc7\xf2\x1a\x66\x5e\x09\xb3\x6a\x0a\x52\x31\xfe\x0d\x95\x09\xab\x0e\xf2\xd4\x50\x21\x3f\xbe\x3c\x12\x4c\xd6\x51\x58\xf5\xc3\x12\x04\x97\x65\xca\x1b\xd2\x50\x0c\x37\x54\xd2\xf5\x66\x24\xf8\xd7\x86\x11\x5f\xcb\x65\x5c\x56\x6e\xa8\x3f\xcd\x26\x81\xb2\xab\xc0\x47\x4a\xfd\x1e\xd1\xe5\x00\x69\x13\xa0\xf8\x5b\x7a\xe9\xe1\x28\x6a\xd5\x6d\x1e\x70\xfe\x48\x30\x1e\x41\xad\x69\xe1\xa2\x71\x3a\xd5\x4d\x9b\xd6\xc6\x19\x6e\xd9\x9d\xeb\xff\xb7\xee\x8f\x02\x0f\xeb\xdf\x2c\x04\xda\x69\x76\x28\x46\x58\x23\x76\xa4\x5f\xb2\x10\x2b\x46\xe6\x48\xe8\x92\x89\xca\x88\x99\xb9\x44\xe1\xe1\xf2\x79\xd6\xa2\xb5\x2e\xaa\x21\x8e\x9b\xdd\x6a\x88\x3e\xa2\x12\x51\x42\x41\x99\xcb\x27\x81\xde\x9b\x06\xc2\xc9\x94\x17\x6c\x03\x0d\xd9\xd2\xb8\x31\xe4\xaf\x59\x2b\xfa\xfe\x7d\x98\x1e\xa4\x30\x0a\x64\x84\x23\x6b\x55\x22\x10\xd2\x2d\xcf\x40\xfa\xf9\x3e\x39\xd2\x90\x50\xc7\x28\x08\x1c\x9c\x08\x40\x66\x86\x1b\xd2\xe5\xc2\x3e\xd6\xb2\xd4\x9f\x3f\x31\x5d\x0f\xc4\x6b\x41\x0a\x41\x7d\x66\x21\x30\x80\x47\x1e\x11\x32\x41\xd1\xdd\x79\x53\xec\xbc\x24\xc6\x65\x9c\x2d\x78\x55\xba\xd8\x4e\xb8\x82\x27\x8e\x27\x77\x99\x35\x15\x0b\x39\x73\xf5\x08\x28\xc9\x14\x67\x0b\xde\x1f\x1c\x38\x2b\x4e\xbe\x8f\xef\x0a\xb1\x12\x38\x89\xbe\xf0\xce\xa0\xf4\xfb\x96\x1b\xaf\xdc\xd4\x8a\xd1\x2c\x2b\x87\x99\x24\x1b\x67\xd1\x41\x13\x99\x1a\x7a\x9e\xb2\xfb\xcb\x4f\x9c\x95\xbe\x8e\x16\x62\x5a\xbb\x5a\x5d\xab\x05\x6b\x79\xe1\x5b\x58\x26\xb6\x4c\x6e\xe8\xc9\xe0\xda\x42\xd7\xc9\x95\xde\xba\x08\x0e\x05\x79\x5d\x7b\xde\x5e\x83\xb3\xe7\xc7\x8d\x19\x37\x3a\xbe\xb0\x6f\xf2\xfe\x89\x8f\xe0\x3b\xc8\x6e\x66\x3a\xa2\x31\x1c\x48\x4f\x5b\x75\x8a\x37\x9c\x35\xbe\x15\x71\xeb\x4e\xd2\x88\x37\x37\xa5\xd7\x5e\x53\xa4\xaf\xc2\x91\x7c\x8b\x29\x1a\x9f\x89\xc9\xa5\xe6\x2f\x01\xe8\x52\x5b\x2e\x08\x7c\x6a\xf6\x1f\xef\x0e\x06\x3c\x7b\xae\x21\x28\xa1\xf8\x07\x66\x27\xa5\xb4\x43\xa0\x67\xf5\xa9\x20\x1d\x4f\xa7\x4e\x93\x63\x97\x05\xc6\x6b\x73\xa9\x1f\x14\x9a\x5c\xfe\x4d\x60\x1f\x23\x7a\x7a\x18\xc0\xf0\x39\xbc\xb0\xd4\xa2\x15\x87\x45\xdb\xbc\x3c\x39\x4d\xd3\xde\xbb\x04\xfc\x75\x46\x5a\x76\x35\x3f\x7a\x43\xa7\x0e\xbe\x9e\x4e\x98\x04\xb9\xf5\x8e\xbe\xc0\x42\x9f\x46\xa1\x14\x36\xaf\x80\x82\xc4\xb4\xec\x07\x94\x87\x9a\xfc\xda\x6d\xfd\xe4\x1b\x86\x14\x82\x6d\x06\x7e\x01\xd7\xeb\xc8\x4f\x57\xe9\x99\x03\x7b\xf4\x9e\xa5\x7d\x4a\x61\x5a\xfc\xfc\xfe\xfc\x76\x72\x11\x89\x95\x62\x22\x66\x3e\x30\x5e\x5d\x87\x06\xf6\x44\xda\x8a\x7f\xd5\x35\xfb\x87\xcb\x76\xdc\xaa\xb5\x52\xc6\xae\xb2\x53\xf0\xd8\x0a\x77\x39\x8d\xb6\x6f\x49\xc2\xb5\xdf\x82\x26\xeb\xc9\x5e\xf6\xaa\x89\xc0\xc4\x4e\x43\xc9\xce\xe4\x2e\x92\xe2\xd4\x65\x6a\x85\x82\x39\x16\x2d\x7e\xca\xf8\x07\xd4\x69\x24\x04\x91\xec\x0f\xf6\x1b\xc0\x64\x77\x4a\x5b\x47\xc7\x34\x19\x33\xff\x74\xca\x98\xeb\xe3\xb2\x3c\x87\x85\x62\x54\x7e\xae\x45\x03\x82\xbf\x2e\x91\xa3\x5f\x6f\x68\x7d\x78\xda\xea\x3a\xbe\x6d\xc9\x28\x00\xc0\x28\xc5\x5f\xbd\xe5\xaf\xac\x94\x3b\x78\x8b\x85\x01\xf1\x04\xdc\xfb\xaf\x5d\xe9\xe8\xd5\x31\x69\x92\x1c\xf3\x0f\x7d\x07\xbc\x31\xb5\x80\x5f\x2e\xe7\xee\x96\x4d\x70\x43\x0d\xb8\x7e\xba\xc4\x98\xa7\x55\x2a\x4e\x88\xbd\x40\x56\x76\xdb\x1f\xd6\x47\x70\xc6\x74\x38\xdf\xcf\xbe\x32\x48\x3e\x5e\x46\xea\x75\x85\x62\x6d\x07\xeb\x85\x26\x77\x56\x00\x4c\xcb\x07\xd3\x4c\x4b\xc9\x9b\x3f\xb0\xb0\xd5\xc3\x44\x69\x9d\xf4\x6f\x07\xfe\xa0\x53\x38\x02\xf2\x4b\xef\xea\xf3\xed\xe0\x2a\xf1\xa5\xd7\x68\xf6\x8a\x89\x86\xab\x19\x67\xc2\xa9\xec\xbb\x70\x58\xfa\x4f\x3b\x43\x3f\x20\x16\x96\xe5\xf4\xd4\xdd\xa6\xe9\x28\x17\xfd\x48\x08\x14\x5b\x46\xea\xd3\xde\x48\x9d\xf6\xdc\x63\x7b\xfb\xcb\xda\x86\x43\x03\x84\xce\xe4\x95\x2f\x2a\xce\x0a\x23\x65\xd1\x0f\x1f\x1a\x64\x0c\x22\xda\x4a\x6d\xa8\x4d\xda\xce\xa4\x9b\x2d\x2c\x2f\xd0\x2d\x82\xcd\x20\x9b\xd6\xe7\x77\x1a\x9c\xc3\xf8\xf1\x5a\x4e\x58\x12\x19\xeb\x23\xcb\xc5\x3f\xba\x9e\x52\x38\xd7\xff\xe6\xd6\xf4\xc2\x89\x8b\x6c\x62\x14\x67\x29\x05\x76\xcc\x2c\x69\x33\x15\x04\x12\x07\xa9\x7b\x66\x89\x8c\x7e\x53\x5c\x7a\xd6\xa9\x63\x2e\x08\x17\x8f\x10\x5f\x54\x48\xed\xb5\x15\x8a\xd1\x37\xde\x31\xb5\x4d\x75\x97\x99\x9d\x66\x2c\x45\x78\xa3\xa0\x54\xb1\xbf\xb0\x5b\x6c\x59\x6e\x28\x7b\x24\x80\x64\xcd\xc7\x9e\x04\x6c\x8b\x42\x3b\x67\x22\x2e\x36\x76\x0e\xc2\x10\x57\xee\x39\xff\xb8\xac\xbf\x5e\xaf\xd6\x64\x25\x9e\xf9\x71\x3f\xb8\x96\xe6\xf3\x4b\x9f\x48\x38\xd5\xad\x0f\x08\x58\xce\xe4\x99\xd3\x3a\xe2\xff\xbe\xf8\x98\x01\x1e\xb5\xe3\x43\xc9\x9b\xda\x45\x4f\x18\x1d\x65\xb7\xe8\x5b\xb0\x1a\x86\xfb\xf5\x4b\x8d\xe4\x2d\x7c\x32\x51\x13\x75\x2b\xa9\xa0\xa1\x07\x52\x7e\x77\x09\xc6\xec\x27\x0e\x98\x6f\x39\xa8\x1b\xe6\xcf\xcc\xcd\x3b\x52\x90\xf2\xe4\x64\xac\x3f\xae\x7b\xd5\xbb\x42\xe2\x05\x61\x5d\x5c\xee\xaf\x2c\x02\x5a\x4b\x5a\x73\x22\xfa\xcb\x3a\x93\x5e\xd2\xc0\x5e\x28\xe1\xa8\xd1\x2b\x8b\x34\x2a\xaa\x8e\x02\x46\x68\xd0\xea\x01\x76\xf5\x74\xb3\xf1\x6e\x60\x87\xd6\x39\x60\x84\xcf\x22\xb2\x7f\x38\x9d\x3e\xaf\x48\x48\x3c\x2a\x9c\x60\xe6\x3f\x8d\xa5\x9b\x17\x77\x52\xbe\x30\xdc\x8e\x9f\xf3\xed\x4c\x5c\x2c\x8e\x37\x51\x56\x8c\x99\x83\x4c\xef\x67\x3c\xdc\x04\xf1\x25\xb3\x7e\x94\x81\x4c\xc4\x0e\x7f\xc5\x92\xe1\x15\x0d\x72\x4c\xaf\xc0\x84\x9e\x93\x88\xa7\x5d\xf9\xbc\x11\xe4\x19\x29\xa3\x6e\x35\xc3\x69\x7b\xc3\xd0\x66\x46\x36\x43\x44\x10\x08\x44\xf2\x9d\xd3\x1f\x12\x4b\x15\xdc\x6f\x97\xb6\x54\x9f\x3c\xa5\x50\x8c\xa6\xbe\x6c\xfc\x1c\x4a\x03\x07\x57\xf9\xac\x26\x2e\xdd\x9f\x5e\x32\x12\x44\x4a\x71\x7a\x2a\x94\x35\x11\x13\x52\xa3\xd9\x4f\xf4\x02\xda\xe3\x01\x8a\x1b\xda\xc7\xb2\xa6\x4e\x31\x89\x23\x23\xe3\x2b\x54\x9e\x86\xf2\xc3\x16\x4b\x2b\x05\x6a\xd5\xb0\xd0\x2e\xba\xe7\xe5\x0b\x75\x66\xe2\xa9\x63\x9a\x10\x04\x2a\x5c\x8f\x1c\x52\xa1\xcc\x23\xa8\x70\x1b\x6f\x84\xb4\xd4\xc0\x2d\x1b\x81\x2c\x8c\x1f\xff\x72\xfb\xb0\x4e\x13\x25\x02\xe5\xcf\xb2\xab\x76\x26\x85\x16\xf5\x08\x48\x07\x27\x4e\xb5\x18\x6d\xd4\xd4\x1e\x27\x7f\xc1\x5b\xfa\x7e\x78\xd4\x0b\x3d\x09\x1f\x59\xf6\x80\x01\xef\xc0\x5c\x72\x48\xee\x98\x86\x8f\x12\x47\x06\x77\xd5\x1d\xea\x13\x31\x83\xce\xfc\x0a\x40\x25\x4b\xb8\xcc\x28\x15\xaa\x75\xe5\x67\xcf\x45\x9f\x4c\x20\x07\xff\x09\xe8\xa2\xc4\x2b\x13\xe1\x4a\xff\xe9\x0e\x69\x4c\xca\xd5\xf9\x90\xd0\xfe\xc8\x9f\x27\x83\xaf\x6f\x23\x17\x3b\xd8\x17\x5c\xff\xcc\x4b\x9b\x47\x9a\xd5\x55\xc8\xb8\xff\x91\xbc\x23\xbf\x7c\x0e\x3c\x37\x5a\xee\xe6\x60\x50\x6e\x42\x77\xc8\xd0\xbb\x0c\xec\x26\x62\x81\x14\xd4\xeb\xf5\x66\x7a\x90\x6c\x77\x87\x5e\x19\x91\x73\xf2\x62\x4f\x1d\x83\xee\xd0\x0e\xf6\xca\x48\xe0\x17\xb7\xbc\x9c\x26\xd1\xa3\xfa\x39\xcd\x54\xf3\xb3\x1e\x4d\x5f\x1b\x5a\x0a\x2d\x9b\x08\x80\xb1\xaa\xec\x2f\x5d\xa2\xe4\x2f\x1c\x0c\x25\x65\x9e\x1d\x29\x9e\x4b\xd1\x0e\x00\x91\x3b\xdb\x18\x3f\x10\xea\x03\xb8\x54\x0e\xc8\xf7\x3f\xd5\x0f\xb0\x93\xa4\x20\xfa\xe5\xa3\x80\x07\x7c\x15\x2b\xfb\xce\x07\x06\x18\x3a\x8c\xac\x86\xca\xdd\xa9\x26\x28\xda\xdb\xeb\x12\xd0\x1b\x10\x5c\x31\xd3\xd7\xd1\x01\xd2\xde\xa7\x21\x40\x2d\xb9\x7d\x23\x0d\x75\x77\x24\x19\xd4\xfa\xc3\x5f\x3e\xce\xdc\xb4\x59\xa1\xf0\xed\x13\x1b\xe4\xff\xb2\x75\xcd\xe2\xa0\xee\xf8\x5d\x3e\x61\x6c\x04\x9d\xb8\x13\x17\x95\x47\xa5\x4f\x52\x3e\xd0\xb0\x6a\xd3\x30\x2e\x53\x8b\x27\x06\x27\x65\x6f\xaa\xc9\xcd\x9c\x77\x9f\x64\xa9\xc7\x71\x47\xa8\x95\x3e\x79\x11\x68\xb9\xc4\xed\xd9\xd0\x96\xd4\x9b\xc8\x29\xb4\xf4\x7b\xfe\x36\xa8\x6d\x51\x0a\x2b\x15\x31\xf3\x1c\xb9\x19\x40\x31\xeb\xc4\xa3\x95\x4a\xfc\xa4\xdf\xe9\x4c\x87\x7a\x3d\x8d\x53\xad\xdb\x01\x66\x08\xe8\xfb\x3e\x76\x4b\xdc\x83\xb8\xb5\xba\xb9\x67\x05\x44\x6d\x09\x73\xbb\x4b\x0c\xd4\x56\xdc\xb3\x06\x89\xf9\xfc\x27\x5f\xd2\xb7\xa4\x16\xb2\x32\xe1\x5b\x24\xde\x55\x5d\x17\xa5\x4b\x60\xaa\x80\x36\x3b\xa0\x23\xa1\x67\x5b\xac\x50\x8c\xba\x0c\xbd\x73\x9b\x7b\x0f\x89\xe9\x82\x61\x3f\x74\x3e\xec\x63\x6d\x81\x1e\x48\x46\x93\xe5\x7d\xe9\x9b\x63\xa1\xc0\xa6\x0e\xb1\xc4\xca\x53\x2f\x1a\x2f\xd8\x65\xd4\xd6\xd5\xf8\xa5\xc9\x8d\x40\x34\x60\x9e\x21\xf0\x44\xa5\x66\x7e\x6d\xba\x78\xc7\xf3\xb9\xc5\x3f\xdf\xc7\x3a\xe9\x53\x69\x23\xaf\xdc\x64\x04\x3a\xe9\xff\xfc\x54\xba\x60\x29\x93\xb2\xb4\xc5\xcc\x6e\x11\x83\xdb\xc2\x7c\x54\x62\xb8\x8a\xe0\xfd\x7c\xc5\x98\xad\x33\x04\x4a\xe6\xf7\xd6\x0d\x48\x65\x21\xaf\xca\xe5\x5c\x47\x27\xdd\x3f\x23\x0d\x88\x73\x7f\xec\xc1\x96\x92\x00\x71\x4a\xad\x22\x14\x64\x3e\xbc\x32\xfd\xeb\x1a\x98\x38\x8a\x38\x98\xf1\xba\x0c\x79\x1e\x49\x32\x91\xc6\xa2\xd7\xce\x4b\x71\x87\x03\x8f\xf0\xae\x36\xbc\x6f\x20\xec\x1b\x3b\x95\x4e\xcb\x47\x4e\x00\xad\x63\xcb\x42\x10\x08\x9f\x59\xb2\x4a\x24\x42\xe4\xd7\xf8\x0a\xb3\xd8\x93\xf9\xb2\x61\xbd\x1e\xb6\xf9\x6d\x13\x9a\x89\xe9\x42\xf8\x40\x5f\x79\x18\xaa\x02\xfb\x13\x4d\x3e\xab\x75\xe1\x49\xa2\x9f\x99\xbd\x7c\xae\x58\xf1\x5f\x6f\x13\xa7\xcc\xb0\x77\x65\x8a\xe6\x9f\x79\xe6\xb8\x0e\x0e\x33\xda\xe3\x86\x26\xe7\x9c\x16\x31\x68\x2e\x75\x4b\x7c\x9c\x74\xec\x58\xfa\x6d\x57\x59\x09\x59\x13\xe0\x17\xc8\x7f\x6c\x7f\x92\x54\x3d\x0c\x41\x35\xb3\x16\x01\xf2\x05\xe7\xb0\xfc\xe8\x29\x00\xda\xe7\x3e\xe9\xf1\xff\x1d\x0b\x2c\x2e\x69\x5d\x18\x64\xf3\x71\xf5\xd0\x2e\x53\x78\x32\x90\xc4\xe5\xdc\xb7\x1f\xd7\xd7\xb0\x2a\x75\x53\xe4\xe3\xb9\x7a\xdf\x85\xfa\xf3\xf0\xae\xee\xba\xbe\x52\xa1\x26\x74\x82\x90\xc9\xcd\x46\xe6\xeb\x46\x4d\x48\x3c\x8b\x09\xe1\x01\xc1\x17\xfa\xed\x69\x10\x1b\x88\x98\xe1\xbc\x16\x19\xb7\xc8\x71\x08\x47\x5b\x8b\x70\xfb\xbb\x77\x01\x11\x0d\x29\xc5\xf5\x0f\x3d\x90\x54\xbe\x1e\x82\xce\xe6\xb7\x3f\x62\x7c\xbf\xd0\xb7\x65\x56\x6d\x9e\x16\x92\xf3\x33\x3a\x38\x54\x78\x27\x14\xf9\x6b\x96\x68\x37\xbf\x67\xf5\x6b\xc1\x56\xd4\xaa\x89\xde\xae\x37\xf0\x0a\x46\x90\x9d\x9e\xd9\x32\x1b\x86\xda\xb8\xf5\x16\x24\xde\x59\x9b\x75\x09\xe5\xdb\xf1\xbd\xea\x75\x54\xbf\x91\xd0\xc3\x81\xad\x68\x0e\xbf\xbf\x5f\x7a\x9c\x22\x6e\x2d\x05\xc6\xad\x87\x4e\x80\xee\xb8\xc0\xfb\x96\x6b\x9e\x31\x86\xbe\x2e\x51\x2a\x9f\x99\x2b\x1f\x33\xb5\x9e\x10\x83\x08\xef\x5c\x0f\x90\x2c\xf2\x31\x53\xd8\xbc\xec\x3d\xa3\xf5\x47\x73\x91\x87\xc3\x86\x04\x46\x74\x54\x92\x29\x69\x19\x2b\x29\xe3\xec\x47\xb7\x28\xfc\x2c\xae\x8b\x85\x9e\x3a\x9d\xab\xf7\x1a\x8b\x2d\x6d\xd9\xa0\xe8\x3d\xff\x3e\xd6\x00\x38\x72\x56\x85\xe8\x0a\x78\x54\x6a\x37\x04\x08\x7c\xe2\x94\x30\x13\x41\x5c\xfd\x9e\x69\xaf\xf6\x03\x9d\x1e\xa9\xf2\x9b\xf9\x50\x9f\x74\xbc\x9d\x3c\xb3\x63\xa6\x18\x68\x7e\xee\x78\x7a\xe4\x47\x2b\x12\xf4\x2c\x14\x1d\x0a\xcb\x51\x67\x1d\x75\x63\x68\x27\xf2\x55\x40\xd8\xac\xf3\x2c\xdf\x93\xc9\x19\x5b\x12\x1f\x85\x71\x97\x8d\xe3\xd2\xb6\xa6\xb6\xd2\x5f\x7b\x4c\x1f\x88\x8f\x82\x90\xf4\xa1\x1d\x62\x9a\xb2\x18\x95\x43\xf5\x20\x1f\x32\x74\xd3\xe2\x46\x51\xee\x9a\xbe\x38\x17\x40\xdc\x19\xe5\x4c\x73\x71\xc5\xae\xd9\x65\x22\x44\xb9\x40\xa5\xd6\xa9\x68\x3e\x0b\xdf\x72\x03\x33\xa1\x6c\x7a\x63\x9b\x64\x3c\x52\xdf\xe7\x94\xb5\x42\x31\xfa\xd9\xdb\xe9\xc5\x86\x1b\xb2\x32\xb5\x6c\x0e\x58\xd0\x49\x64\xcc\xe1\xa4\xbd\xf1\x71\x9c\xc0\x86\xbe\x21\xaa\xc1\x45\x48\x00\x93\xd5\x77\xbc\x6f\x81\x09\x6e\x76\x1c\x54\xf7\xf5\xdc\x3b\xf7\xbd\x77\x80\x8d\x0d\x34\x28\xcc\x3d\xb6\x2d\x39\x6a\x25\x5a\x55\xfd\xd6\xdf\x0d\xed\xc3\x66\x7c\x9a\xf9\x38\xa4\xd7\x6e\xe8\xc4\x84\xaa\xa2\x96\x9c\x3a\x4e\x69\x7c\x0a\xe4\xa4\x80\x9b\x9c\x58\x66\x76\xaa\x3e\x22\x0e\x77\xe0\xe2\x1d\xff\x8d\x87\xe1\xb6\xa4\x89\x99\x32\x7e\xcc\x7d\xf8\x90\xd1\xc3\xa0\x66\xb7\x92\x8c\xcb\x2e\x7f\x5d\xbc\xd2\x65\xd2\xc9\xb2\x50\x8c\x2e\x1a\x2b\x96\x6c\x37\x32\x8c\x3d\xbf\x0e\xe1\x85\x99\x33\x06\x1b\xaf\x82\x11\x7f\x11\xea\xfa\xfe\x68\x54\x12\xd2\x18\x02\x8f\x35\xb7\x7e\x87\x61\x44\x5d\x57\x8f\xb3\x76\xc6\xd8\x55\x73\x61\xcd\x38\xa2\x8b\x94\xfb\x19\x53\x54\x3f\x0c\x1c\xcc\xc4\x98\x3f\xbf\x7e\x9d\x0e\x51\x81\xc7\x79\x3d\xc7\x4e\x1b\x0b\x27\x6e\x83\x43\x90\x1c\x6a\xfc\x7c\x04\xb0\x86\x62\x6e\xa1\x18\xfd\xfa\x34\x98\xea\x3a\x54\x2e\xd7\xf3\xf7\xcd\x4e\x69\x6d\x39\x22\x95\x2f\x78\xa3\x5f\xf2\xcf\x43\xa9\xbf\xfa\x6f\x67\xa4\x3b\x19\xaa\x09\x3d\xff\xa3\xc7\xfb\x83\xea\x51\x06\xa2\xcc\xf2\xd9\xc6\xd0\x29\xf4\x03\xcc\x94\x5a\x86\xd1\x33\x26\x22\xa7\x71\xab\xfd\x12\x90\x19\xe3\x4a\xc5\x15\xcc\x94\xfe\xc8\xa5\x0c\x58\x27\x71\xfd\x4f\xf1\xdb\x6e\x3a\x04\xa6\x9c\xc4\x47\xe5\x06\xf2\xd4\x11\xcb\x5f\x25\x2b\xf4\x8a\x83\x4a\x25\x7e\xbc\xbe\xb6\x45\x57\xe3\x3e\x69\xa9\xc6\xe7\xdf\x9f\xde\x7b\x7c\x5c\xce\x70\x9f\x3d\x08\xee\x29\x75\x71\x49\x30\xf3\xbe\xdd\x21\xd0\xe1\xf3\x58\x58\x6d\xa9\xad\xfb\xad\xd7\x0d\x8f\x42\x7e\xb7\xa5\xc6\x95\x1f\xdc\x21\xee\x66\x40\x03\x14\xd7\xb4\x4c\xf4\xb5\xd9\x23\xf3\x53\x2d\x59\x85\x38\x82\xf3\xf7\xef\x2f\x25\x95\x46\x1d\xfa\x45\x64\x1e\xbd\x56\x9b\x5c\x85\xf1\xbb\xfe\xfc\x31\xa0\x6d\x6f\x53\x16\x14\x02\xcc\x57\xcb\x99\xe3\x4b\xfb\x01\xb4\x73\x28\x86\x22\x9b\x76\x9b\x7a\x4d\xbe\xdc\x6b\xcb\x54\x90\xbf\x67\xa5\x51\xae\x13\xc1\x8b\x9e\xd8\x02\xc5\xdf\x32\x44\x0e\x4c\x11\x88\x37\xd1\xfa\xe7\xfb\xc8\xaf\x2a\x74\x25\xf3\x5f\x98\x64\xb8\xcf\x25\x54\x7e\x01\x7b\x28\x9e\x00\xc8\x69\xcf\x51\x2a\xd9\xf1\x1f\xad\xd8\x0e\xba\x68\xea\xd6\x1d\x2c\x35\xcc\xe6\xbd\x07\xd3\x36\x89\x0f\x24\x4f\xdb\xb9\xaf\x9f\xd1\xab\x64\x2e\x1e\xcb\x07\x31\xfa\xd3\x4d\xad\x00\xf1\x44\xe1\xfd\x1e\xc7\x94\xe8\xba\xc3\x22\xe9\xdc\x48\xb8\x72\x0e\x88\x81\x59\xf6\x60\x3a\xda\x4d\x99\xd1\x21\xbb\x1d\xeb\xee\x81\x20\xe1\x55\x88\x23\xe6\x12\x99\xd2\x90\x0b\xf5\x45\xe3\x11\xf0\x77\xab\xfa\xeb\x77\x2c\x61\xae\xd1\x23\x2f\x0f\x06\x9c\x35\x3e\xa1\x10\x08\x95\x7d\xcb\x5b\xd0\xff\x9c\x60\x2e\x2b\xa6\x0f\x18\xb8\xda\x26\xe7\x00\x36\x4a\x85\x62\x34\x67\x8f\x41\xe7\xa1\x65\x85\xc9\xe9\xc9\x7f\xd4\xe0\xd5\xf9\x75\xcc\x09\xd1\x8a\x8d\xf7\xbd\x59\x86\x85\x01\x96\x2c\x80\x68\xcf\xde\x61\x66\xa8\x0e\x5d\xb9\xd5\xce\xad\xea\x52\x1c\xcf\x06\xc1\x4d\xb9\x6d\x7d\xe1\x8c\x98\xec\xae\xa1\xc2\xeb\xe9\xb6\x13\x52\xc0\x11\x31\xe1\xa2\x14\x3d\xb4\x12\xb8\x56\xd0\xd0\xe3\x9b\xb1\x4c\xed\xc1\x7e\xfa\x5b\xcb\x25\x5e\xee\xf8\x09\xf8\x9c\xf9\xd0\xd4\x2f\x14\xa3\x41\x87\x46\x03\xb0\x98\x4f\xb8\x92\x9d\x79\x48\x3f\x31\x0a\x6c\xf3\x70\x05\x4b\xec\x64\x5c\x3e\x0f\x39\x60\x0c\x08\xb0\xe3\x48\xd4\xe7\x2f\x0c\x68\xd8\x95\x4d\x9b\x2a\x32\x3c\x6a\xbb\x48\xfd\x34\x62\x11\xc1\x20\x78\xe7\xb8\x41\x82\x8e\x93\x59\x15\x4b\x4d\x84\xe0\x71\xa9\xf3\x82\x91\x40\x62\x65\xc7\x1b\x76\xdb\x65\xc2\xb0\x25\xe5\xf4\x97\x9c\xba\x48\xc5\x45\x4b\xd0\x62\xa2\xd7\x46\xa7\x6f\x6d\xfb\x94\x64\x27\x24\x73\xca\xcf\xdf\x50\x72\xbf\x96\x8d\x30\x60\x78\x65\xdf\x1f\x27\x5e\xcf\x72\x62\xd9\x8a\xaf\x94\xbd\x63\x2a\x90\x06\xe4\xcb\x54\x1e\x76\xac\x87\x4c\x7f\x24\xaf\x6a\x48\x8b\x7c\x61\xd1\xf0\x96\x4a\x3e\x3e\x43\x22\x78\x0c\x7e\x04\xb8\xf2\x86\xa5\x50\xf3\xe1\x9f\xea\x35\x04\x60\xcf\x10\x0b\x4a\x8c\xd6\x04\xe9\xf4\xd2\xe3\x06\x3b\x87\xf8\x88\xb9\x88\x6b\x77\x2b\x0d\xb1\xa1\xcf\xa4\xa3\x52\x29\xe4\x04\xbc\x09\x2d\x58\xa1\xcc\x90\xa7\xc5\x93\x58\x46\xbc\x72\x9a\xeb\xd6\x98\xa4\x37\xbf\x4e\xb7\xc7\x5d\x5f\xd2\x49\x61\x42\x9f\x74\x15\x27\x9d\xfb\x6c\x52\x97\x78\xdf\xd7\x66\x0d\x05\x8d\x45\x3d\x2c\x39\x44\xb1\x80\x6f\x5c\x61\x14\x12\x4e\x77\x13\x6b\x47\xb3\xec\x8d\x73\x20\xfb\x5c\x50\x57\xe3\xff\x3f\x7a\xcf\xd0\x14\x82\x8a\xd5\x19\x56\x94\x8c\xf7\xdf\x4d\x97\xc8\x57\xaa\x91\xf8\xbc\xb5\x22\x9e\xf0\x54\x6c\x23\x4e\x39\xed\xc9\x7c\x7d\x9b\x21\xff\x17\x30\x8c\x93\x67\x98\x3b\x6d\x88\x08\xd5\x19\xb6\x88\x8f\x1d\x55\xe4\xe7\x3e\x18\x19\xa7\x32\xae\x14\xd5\x9e\xe8\xb3\x63\x75\x61\x32\x6d\x2a\x67\x05\x1c\x3b\xac\xbb\x32\x8f\x78\x02\x2b\xbc\xe7\xa8\x29\x17\xc9\xb1\x26\x62\xee\xf6\xd3\x63\x46\xc5\x80\x98\x66\x11\x90\xa3\x69\x54\x8e\x4b\x1c\xea\xe3\x06\xb1\x26\x40\x9b\x80\x5c\x7d\x18\xcc\x99\x9c\xc1\x22\x28\xc0\xbd\xd3\xc7\xa8\x8a\xba\x1d\x6c\x20\x7a\x28\x18\x67\x4c\x9e\x31\xb3\xa3\x6d\xc6\xe4\xf8\x63\x5d\xb8\xc2\x9c\xa1\x54\xa4\x70\xa2\x52\x85\xf2\x16\x8a\xfc\x30\x17\x75\xa3\xf8\x4f\xc0\xb1\x3a\x3e\xd2\xb8\x11\xd4\x0f\x34\x50\xe2\xc7\x23\x0c\x44\x47\xb9\xaa\x02\xe7\x2f\x97\x5d\x0c\x8b\x65\xc7\xe1\x6b\x27\x8d\xf8\xf9\x8c\x74\x3d\xbf\x83\x38\x0e\xb7\xd2\xe6\x57\xf7\xfa\xb1\x06\x1f\xc4\xa1\x4d\xa9\xdf\x6d\xdf\x6b\xbc\x60\xc4\x88\xaf\x4d\xa0\x7b\x72\xf7\x3e\x9a\x14\xb3\x16\x86\xca\xaa\x77\x78\xda\x45\x0e\x59\x35\x8f\x36\xb9\xa1\x93\xee\x22\x23\xf4\x44\xba\xdc\x9d\xda\x36\x59\x4a\x3c\x2c\x5a\x98\xfe\xfe\x93\xdb\x27\x15\xca\x48\x16\xbb\xd9\x17\xef\x16\x0f\xee\xb6\x80\xaf\x93\x20\x2b\xfb\xe7\x1b\xc1\x3a\x05\xe3\x5a\xa1\x18\x7d\x76\x47\x3f\x00\xce\x20\xbc\xf0\xcb\xce\xba\x1b\x88\x56\xf0\x2b\x47\xb8\x31\xd2\xdb\x91\xf6\xb5\xa3\xb4\x50\x8c\x3e\xb0\xda\x14\x3b\x2e\x91\x00\x05\x52\xe1\x3b\xf3\xcb\x4e\x50\xff\xca\x52\xb7\x27\xc7\x66\x09\x86\xcc\xdc\x90\x05\xbe\x65\x87\x0e\x2a\xaf\x81\x2a\x65\x7f\x59\x62\x02\x61\x05\x2b\x83\xab\x08\xfe\xf0\xf1\xa1\x40\x27\x8a\xa5\xa5\x15\xe4\x36\xfa\x66\x8f\xaa\xac\xd8\x75\x3a\x79\xfe\x21\x0c\xd2\xb9\xa7\x57\x82\xdd\x0e\xe1\xb3\x94\xee\x13\xe6\x9e\xa4\xce\xfd\x06\xc4\xb4\xf2\xf5\x75\x40\xa5\x8c\x78\x55\x21\x50\x3c\xd2\x36\x40\x3b\xb4\xc4\xf1\xe2\xd2\xac\xa2\x7c\xd5\x50\x50\xc5\xd3\x1a\x8c\xeb\x37\xef\x14\x61\xf3\x0e\x69\x57\xa3\xc7\x07\x9b\xfa\x98\x66\xa2\x1d\x33\xa4\xeb\xe7\xf4\x17\x2f\x56\x89\xad\x1a\xb6\x18\x20\xf7\xe4\xfe\x6b\xb7\x74\x5c\x66\xc4\xe5\x8b\xbe\xef\x6b\x53\x0b\x1f\x0c\x88\xa2\x3f\xcf\x4e\x1e\x4c\xb7\x03\x74\xa2\xf3\x1f\x03\x0a\x37\xf5\x44\x42\x22\x77\xf9\x86\x4b\xcc\x94\x61\x85\x9c\xb0\x2b\x35\xab\xf2\xf3\x5f\x1d\x03\x27\x94\x2e\x0d\xa4\x01\xb0\x11\xf1\x0f\x89\xc1\xe1\xc7\x70\x99\xd0\x16\x01\xa1\xf7\x46\xeb\x6a\x12\x31\xb7\x85\x8d\x9a\xad\xbd\xa1\xe7\x9d\x0c\xf9\x36\x81\x30\xfb\x1f\x8d\x81\x1a\x41\x7c\xe4\x26\xd2\xf9\xb7\x8d\x71\x11\x2f\x7f\xc4\x7b\xfd\xd8\xce\xd1\x2d\xc1\x04\x3b\x86\x14\xfe\x13\x9b\x2e\x50\x97\x26\xbe\xf6\x1d\x8f\x8f\x31\xea\x36\x12\x60\xa7\x84\x42\x37\x25\x71\x3b\xb4\x24\xde\xf0\xf5\x36\xb6\x6c\xac\xe7\x9a\xd1\x6f\x56\x03\x6b\x4a\x27\xb0\x69\x58\xb5\x5b\x91\xab\x62\xff\x52\xb8\x5e\x18\x98\xb5\x9a\x97\x9d\x9f\x4e\xd0\x42\xa5\x7a\xc2\x39\x30\xfe\x8f\xdd\x9f\xd6\x1c\x8f\x8b\x0f\x54\xc7\xa8\x86\xcf\xb5\x13\xf8\xf6\x86\x81\x40\xb8\xcd\xc5\x8c\xdf\xfd\x9e\x6c\x69\x19\x18\x4c\xdb\xa8\x4e\x18\x1f\x65\x16\x27\x49\x3d\x13\xe4\x95\x53\xb8\xde\xcb\x0f\xa6\x4f\x0c\xf5\xb0\x5a\x4b\x8a\xb2\xeb\xf1\x67\xd3\xdb\x94\x90\x21\xc7\x45\xbe\x7d\x4e\x79\xb2\x3f\xf4\x49\xc6\xf1\x2e\x5a\x93\x1a\x99\x7c\x68\xab\x69\xfb\xc1\x6a\x92\x27\xf0\x09\xd3\x9c\x45\x3b\x6e\xc8\x39\xd5\x66\xc3\x33\x84\x12\x47\xaa\x55\x65\x9f\x79\x55\x0f\x22\x60\xec\xc8\xcf\x65\x17\xc8\x76\x87\xcf\x4a\xf3\x4b\xaf\x1d\x6c\x7e\x53\x19\x00\xbf\xf7\x5c\xfa\x4f\xda\xa7\x06\x82\x7f\x99\xfb\x41\x34\xce\x48\xbd\xdc\xf1\xb9\x9b\x4b\xea\xa4\xae\xc4\x94\xc5\x40\x08\x99\x7a\x85\x4e\xcc\xb5\xd4\x32\x2f\x48\xac\xec\x2d\xb8\x8b\x58\x54\xcd\xb5\xb7\x78\xc3\x20\x02\xdf\x90\xb8\x7b\x0b\x98\x69\x4f\xe1\x72\x9e\xcf\xbc\x9b\x40\x48\x4a\x09\x43\x2f\x73\x49\x03\x74\xfe\xd4\x43\x0e\xbc\x65\x7d\xbb\x46\xb7\xc6\x67\x21\xff\x9b\xec\x69\x32\xd7\xaf\x00\xf2\x7f\x71\x4c\xf4\xb9\x70\xda\xfc\x39\x43\x8c\x76\xa9\x6d\xb2\x0c\x6d\xf7\x1a\x02\x50\x9d\xd8\x13\x52\x59\xa2\xda\xfb\xbf\x6b\xc6\x19\xa5\x56\xd8\xdd\xc0\x3e\xf2\x94\x7d\xb5\xce\x03\xbf\xa9\x8f\x85\x4a\x50\xf3\x96\x4d\xd0\xdb\x9b\x94\xea\xf1\x8a\xb9\x06\xcf\xd8\x67\x08\x3b\xc4\x4f\x99\xa5\xe6\xd7\x19\x8e\x09\xc2\xb4\x3e\x29\xf2\xbe\x2b\x5d\xdb\x02\xcc\x47\x65\x3f\x98\x3f\x14\x16\xfa\xf0\xa4\x66\x26\x3f\x3c\xda\x68\x33\x01\xcf\x5a\x15\xde\x9f\xb8\xcf\x60\x11\x78\xdd\x13\x58\x89\x6f\x33\x3e\xf0\x18\xd8\x71\xc4\x17\x98\x2f\xe5\xd7\xad\x4d\x42\x7c\x8d\xd6\x40\xd4\x5a\xd7\x66\xbc\x28\xee\xe2\x9a\x6e\x2f\x32\xbf\x5f\x61\xc2\xad\x3c\x1c\x60\xac\x40\x53\xd9\xdd\x07\xc1\xae\x5a\xa9\x32\x5d\xf6\xb0\x82\x4b\x55\x28\x2f\x24\xcc\x20\xf2\x68\x43\x87\xe9\x52\xd8\x4d\xc3\x00\xca\x93\xd6\xb5\xf5\x11\x49\x00\x9d\xd9\x3e\x62\xb8\x31\xb7\x1b\xce\xd2\xb3\x26\xf7\x46\x48\x53\x62\xa5\xcd\x98\xcf\x80\xf9\x42\x83\xb0\x20\x14\x03\xe2\xe8\xa7\x8f\x8b\x1f\x77\x23\x2a\x69\x98\x46\x74\xc6\x4e\xc7\x1c\x3f\x2e\x2d\x42\x3f\x38\x27\x22\xe0\x0b\x9b\x0c\x14\x77\x1d\x5b\x81\x70\xe7\xe6\x29\x2f\xd3\x7d\xda\x14\x12\x41\xac\x2a\x19\x3b\x0f\xec\xe2\xb5\x4f\xfc\xbf\x17\x2f\xbe\x4d\x61\xb3\x32\xcf\xea\x8a\x88\x43\x95\x39\x64\xf1\xb7\x8f\x98\x67\x9b\x51\x49\x67\x32\x63\xf9\x46\x43\xa9\xb3\x49\xe3\x77\xea\x8b\x51\xe6\xd0\x43\x26\x98\x82\xfa\xca\x59\x39\xb3\x78\xe2\xff\x36\x88\x52\xe3\x8a\x7b\x06\xc0\x19\x4f\x39\x11\x41\xcc\xcf\x3b\x3e\xcc\x38\xb7\x15\x27\xec\x92\x1d\xe8\x75\xf3\x0c\xac\xa9\xc5\x3d\xbb\x65\xc9\x3d\x64\xde\xa5\x66\x70\x26\x69\xb2\x6f\x94\x5d\x6f\xc6\x84\x86\xd4\x8c\xce\xbe\xbc\x20\xdd\x1e\x77\x87\x36\x62\x42\x76\x2c\x51\xb8\x5c\x6c\x1a\x9f\xfa\x18\xc9\xc1\x4d\xa6\xa3\x97\xe1\xc7\x6a\x33\x8c\x65\x93\xa9\x0e\xf8\xb3\x8b\x74\x5e\xab\x90\x8a\x24\xcf\x67\x9e\xaf\x1b\x8e\xdf\x88\xc5\xf7\x5e\xf5\x4e\xb9\x17\x46\x1b\x23\x23\x86\xee\x12\x71\x83\x9f\xe6\xcc\x19\x58\xf9\x95\x4a\xdd\x62\x28\xc6\x63\xf4\x6c\x80\x2b\x9a\xdc\x31\x83\x4f\x61\x9e\x31\x54\x14\x08\x4e\x56\x41\x39\xd4\x91\x7e\x0a\x1e\x0e\x03\x86\x78\x99\xa9\x20\xbd\x9f\xe9\x03\x24\x59\x84\xe0\x59\xf4\xf1\x15\xa6\xdd\x2f\x57\xa7\x57\xf0\xfa\xcc\x0b\x2f\x19\xcd\x2b\x6e\xf0\x64\x2f\x9b\xc3\xae\xb1\xc9\xba\x63\xe6\xb4\x76\xae\x4c\xb1\xab\x3f\x50\x02\xb1\xa8\xc0\x34\x7c\x77\x24\x04\xde\xb8\x25\xae\x0d\xc1\xa5\xdb\x56\x01\x92\x49\x9b\x65\x26\xb6\x9e\xec\x2f\x9e\x1f\x63\x9c\x48\xd9\x5d\x22\xc5\x6c\xe3\xa3\xc7\x15\x9e\x28\xa3\x3a\x43\x46\xfc\x32\x01\xb6\x5b\xf7\x3c\xa1\x3b\xfc\xb8\xbc\xb0\x69\xc8\x0a\xc5\x68\xd7\x11\x60\x6a\x88\x3c\x8b\x32\xca\x25\x07\xb2\xfb\x57\xca\xc1\xbd\xc3\x45\x77\xe2\x4f\x3f\xf1\xde\x41\x7a\xa9\x03\xca\x97\xfc\xe4\x67\x8c\x75\x6c\xb9\xcc\xb0\xaf\x00\x74\x99\x19\x93\x46\x82\x41\xa9\x43\x3d\xa1\xd1\xa5\x73\xcb\x37\x81\x6f\xb7\x34\xde\x2b\xf6\x64\x3b\x1f\x48\xff\xd4\x06\xb6\x89\xc5\xdd\xcf\xe3\x8a\xe8\xf5\xc7\x0c\xe1\x1d\x05\x95\x9a\xd0\xe4\xbf\xf4\x8e\x13\x83\xe1\x2c\x95\x4a\x10\x75\x31\x7a\xd5\xa8\x73\xb8\x16\x4d\x93\xf8\x09\xc8\x21\x7b\xcb\x29\xd8\xbe\x38\x92\xa3\x91\x9d\x78\xba\x45\x1a\x9c\x05\x98\x89\xf8\x96\x3b\xb0\xd4\x58\x18\xc5\x6d\xb1\x4e\xf2\xb9\x59\x47\xd2\xaa\xb7\x3c\xf0\x3e\x77\xff\x08\x50\x3b\xb8\xc4\xab\xc2\x2d\x5a\xf6\x87\xe5\x96\xd5\x38\x65\x0c\x5b\x81\x50\xc9\xcf\xee\xd2\xba\x87\x7e\x90\xee\xef\x0a\x93\x0c\x99\x0e\xe4\xf8\x01\xf5\x0c\x4d\xf1\x27\x8c\x71\x88\x83\xab\xc8\x92\x87\x3a\xf3\x97\xd9\x57\x1a\x45\x06\xf3\x31\xbf\x68\xad\x83\xcc\xef\xdf\xa7\xc6\x8e\x16\x26\x0d\x31\x06\xff\xd3\x79\xe9\xe7\x85\x82\x00\xbb\x75\x89\x22\xcf\x5f\xf5\x88\xde\x96\x12\xcf\xe2\xd9\xf9\xd6\xed\xa3\x8d\x38\xa2\x5c\xc7\x80\x94\xe6\x67\x16\x18\x46\x2f\x7c\x83\x8e\x0b\xa5\x90\x38\x65\xf0\xc0\xad\xe9\x2d\xaa\x56\x81\x2d\xf7\x28\xf7\x0d\x30\xf0\xba\x1e\x6d\x96\x28\x62\x9c\xb3\xc9\xcf\xc0\x94\x7d\x83\xe0\xe0\x8b\x21\x0f\x0b\x10\xc9\x8f\x26\x81\x92\xbf\x49\xc5\xa8\xb3\xd8\x93\xad\x77\x0d\x01\x67\xd8\xc3\x01\x53\x66\xd0\xb9\x61\xf3\x0c\x01\x9a\xb0\xe4\x48\xd1\xf8\xff\x73\xc2\xe0\x0e\x86\x81\xd4\x3c\x8d\x5c\xc9\x9d\xb3\x31\x6a\xc8\x61\x5d\xfc\x8c\x3e\x75\x3e\xd0\xc3\xb5\x15\x62\x3e\xf3\xd5\x55\x40\xc7\x51\xc0\x80\x0a\xc5\x68\xe0\xe6\xf4\xb3\xc2\x0e\x59\x83\x4a\x38\xb0\x0d\x62\xd0\xc7\x2a\xfa\x5f\x53\x56\xc6\x82\xf8\x95\x5d\x35\xcc\x50\xcf\xc6\x52\xf9\x36\x29\xc0\x56\x47\xa3\x5b\xb2\xba\x23\x1c\xdb\x74\x6d\x85\x4f\x48\xfc\x8b\x86\x8f\x82\x4a\x2f\xbf\x78\x43\x52\xe2\x74\x53\xe9\xdb\x10\x8d\xe9\x0b\xa9\x9b\x16\xe6\xdb\x9a\xec\x82\x01\x23\xcd\xce\xda\x45\x5e\xa0\x09\x43\xaf\xcc\x86\x8a\x03\x38\xe0\xed\x58\x66\xce\x2a\xe0\x89\xde\xa6\x32\xf5\x6a\x4f\xab\xf2\x8d\x31\x9b\xeb\x5b\x07\x0d\x39\x47\x79\xc0\x57\xbf\x23\x47\x68\xbb\xc3\x29\x13\x0b\xc5\x28\x58\x79\xa1\xd6\x5d\x0c\x0b\xc5\xe8\x6a\x43\x75\x1c\x77\x59\x4e\x28\xfc\x42\xf9\x26\xa4\x27\xf3\xe0\xf8\x51\x4d\x73\x23\x9f\xb8\xba\x08\x10\xcb\x9f\xee\x14\xa3\xf1\x65\xc5\x9b\x3f\x56\x54\x9f\x79\xd4\x9d\x82\x30\x33\x97\x0f\x48\xcc\x24\xb1\xcb\xbe\xd8\xac\x8d\x50\x80\xab\x5c\x92\x37\xfe\xad\xd7\xce\xbe\xd4\xf8\xad\x89\x66\x62\x12\xfc\xfe\x73\xfd\x08\xd8\x10\xb4\xc1\x7e\xa0\x18\x9d\x9f\xd5\x51\x35\xfe\xb8\x36\x0a\xa5\xa3\xac\x75\x34\x79\x08\x15\x14\x14\x8a\xd1\xc8\x3d\xe2\xfc\xa2\x32\x75\xb0\x6f\xc9\x41\x68\xfe\x93\xab\xcc\x12\xc8\xa6\x0e\x62\xd2\x03\x69\xbc\x97\x82\x95\xa0\x2a\x66\x42\xcf\xe3\x1f\xd2\xa8\xe0\x46\x9c\xc6\x0f\xfc\x0a\xf8\x6e\xd6\x19\x0d\xf8\x41\x89\xa6\x3d\x35\xd2\x88\x6b\xa8\x2c\x47\xe5\x62\xf0\x77\xf5\x06\xad\x98\x36\x6d\x52\x4b\x49\xfe\xca\xd9\xcb\x75\x1f\xa9\x55\xa7\x5a\xfe\xde\x57\xfa\x80\x6d\x30\x46\x7e\x28\xf4\x4f\xdf\x33\x0c\x81\xe3\x5c\xab\x7c\x1a\x82\x9d\xc3\xcc\x2c\x52\xc3\x8a\x02\x70\xc0\x13\xbb\x98\x7a\xa8\x38\xe7\xcf\xdc\x6b\x7a\x0b\xbb\xea\x6f\x67\xee\x9c\x0e\xa8\xf4\x65\xec\x05\x24\xe0\x24\xa0\x7c\xe9\x49\xdd\x51\xe0\xae\x80\xb2\xf8\x1b\x10\x9f\xf3\xf3\xbf\xdb\x26\xda\x91\xeb\xca\x0d\xe2\xd3\x56\xa3\xae\xdc\x15\x25\xe8\x03\xed\x73\x1d\x6f\xc1\x2d\xfd\x02\xc0\x4f\x34\x69\x29\xe4\xee\x8a\x79\xf4\xd6\x10\xf0\xca\x38\xcd\x5a\x01\xe8\xbe\xca\xae\x30\xbe\x2b\x17\xde\x6f\xa5\xf1\xe6\x2b\x52\x8a\x55\x6d\xca\xda\x0a\xc5\xe8\xa1\xcd\x43\xe1\x49\x5c\xbc\x78\xc9\x84\xb9\x8a\x39\x37\xac\x6c\xf8\xeb\x07\x76\x82\x75\x56\x47\x63\xef\xf9\xda\x6a\x31\x11\xc3\xcb\x7e\x77\x8f\x91\xa7\x59\x35\x14\x60\x23\x31\x86\xbc\x1d\x14\x6e\xbc\x34\xe0\xc7\x6f\xea\x5a\x93\x98\x10\x7f\xe1\x9a\xaa\xbb\x72\x9d\x4f\xa4\x9c\xa4\x31\xe3\x06\xfb\xd9\xcf\x9e\x02\x7b\x25\x52\xb5\x1d\xe5\xd6\xd6\x93\xfb\xe2\x56\x3d\x9c\xad\xf1\x43\xad\x61\x1f\x13\xf7\x80\xdd\x2b\x23\x0d\xe2\x60\x81\x24\xc8\xbd\xfa\xb8\xc1\xba\x46\x6e\x09\x79\xe5\x94\x90\x7d\xee\x9e\xad\x3a\x77\x71\xbd\x74\xa5\x6c\x3c\x6e\x8b\x21\x04\xc7\x1c\x2e\x9b\x21\x83\xf9\x3f\x77\xea\x4b\x61\x23\xc6\x48\x35\xe5\xf8\xf1\xd6\x18\x3d\x86\xc7\x7e\x80\x82\x16\x4a\x5a\xee\x8a\x45\x10\xab\x27\x12\xa3\x33\xf7\x42\x55\x84\x85\x6e\x9c\xd8\x6e\x58\x2d\xf1\xca\x89\xa4\xd8\x18\xa3\x15\x0b\x99\x4b\x89\x23\x7a\xc3\xfa\x28\x20\x14\xdd\xc6\xcf\x77\x66\xea\xfe\x96\xe8\xe9\x29\xbf\x4c\xf9\x5d\xf0\x49\x80\x10\x07\xb4\xdc\x53\x62\x10\x74\x93\xcf\xb9\xc8\xf2\x34\x6d\xd8\x9e\xbe\x64\xdc\x87\x57\xc6\xcc\x7f\x39\x64\x72\x97\xbc\x32\x92\x92\x0b\x99\x7b\xf7\x26\xd8\x21\x39\xe1\x8d\xbf\xf1\x55\xf7\xa5\x43\x5c\x40\x39\x2f\x4b\xde\xf1\xc5\xbb\x4d\x4a\x0a\x16\x71\x4e\xd5\xf0\x9f\x82\xd2\xd8\x44\xec\xe1\x86\x9e\x94\x1b\x54\xc4\x4a\x21\x3c\x2b\x79\xfb\x7c\xad\xcb\x80\x99\x1a\x4a\x75\xbd\x28\xdd\x04\x6c\xc2\x6a\xf1\x17\x1f\x64\x88\x14\xb8\xa1\x4f\x2c\x39\xf9\xbb\x6d\x9c\x3e\xa5\x88\xb0\x42\xc0\x50\xa5\xc2\x9d\xcb\xb2\xc7\x8e\x1a\x60\x2a\xea\x29\x8b\xb9\xbf\x6f\x3f\x57\x39\x2c\x51\x9b\xf9\x5b\x57\xa5\xaf\x7e\x37\xf2\x03\xb6\xc6\xc6\x6e\xc9\xaf\x75\x43\x65\xcd\xdb\x26\x8e\x38\xf7\xcd\x12\x4f\xeb\xec\x72\xc0\x9e\x71\xa8\x2f\x6c\xf8\x83\x49\x0a\x7a\xdb\x50\xb5\xca\x77\x5e\xd4\x4d\xa4\x85\x59\x40\x2a\x82\x80\xc5\x29\xdd\xa3\x07\x03\x6c\x11\xc0\x70\x64\x6f\xcd\xeb\xe1\x9d\xc3\x79\xda\xfa\x93\xad\x7a\x55\xbd\x5c\xe6\x61\x56\x42\x82\x32\xbb\x52\x23\xdb\xb8\x97\x64\x34\x62\xef\x00\x10\xff\xb8\xc9\x68\xa1\x18\x9d\x78\xf4\x32\xa3\xa1\xac\x63\x26\x74\xb0\xb1\x97\xa8\x60\x04\xab\x81\x93\x47\xa8\xd1\x95\x53\x8d\x04\xe2\x84\x56\x4d\x4a\x6d\x7d\xc6\x90\x63\xb3\xb1\x53\x4f\xda\xd4\x33\xaf\x9b\xc2\xef\x41\xca\x49\x2e\xfb\xd3\x43\x62\x1c\x8b\x58\x20\xc0\x20\xcf\x4b\xff\xae\xd0\xb7\xec\x26\x09\x12\x26\xd6\xc3\x5b\x0c\x48\x25\x66\x55\xd2\x8d\x1b\xc0\xd1\xb0\xf1\xd2\x30\x08\x30\x11\xf0\x7c\xf5\xef\x4f\xd6\xcd\x6b\x53\xc6\xca\x77\x2e\x57\x35\xa4\xe1\x3c\xea\xd2\x34\xbf\x38\xf7\xca\xa2\x14\x86\x9b\xcb\xb3\xc5\xff\xf4\xa6\xb6\x61\xa9\xba\x9c\x96\x43\x8d\x99\xb8\xb8\xcb\x9c\x6f\x68\xe8\x50\xf6\xd0\xf4\x94\x79\x24\x67\xea\x10\xdf\x8d\x33\xcd\x84\x05\x00\xa6\x44\x3d\xea\x22\x35\x22\xde\x38\x1f\x84\x11\xc2\x9a\xc2\x66\x22\x3b\x7d\x79\xfa\x39\x4f\x99\x54\xf0\xb9\xf0\x94\xfa\x86\x9d\xf3\xf4\x95\xaa\x20\x16\xb7\xd6\x55\xd9\x0d\x5c\xf6\x84\x26\x3f\x95\xa0\xeb\xe8\x97\x76\x24\x98\x30\xec\xb7\xee\x1a\x5e\x5b\x6b\xe0\xf2\xb9\x8b\xb1\x6c\x76\xb2\x2f\xf5\x87\x90\x35\xab\xc6\xef\x84\x3b\x55\x3f\x44\xce\x19\x13\xa7\x3e\x33\xf2\xa1\xe1\x70\x49\xed\x12\x28\xc6\x9a\x79\x74\xae\x5e\x9c\xd7\x10\x13\x4f\x6f\x81\xd3\xb2\xd8\xb5\x6a\x12\xf2\xf3\xfc\x7c\x5d\x87\x54\x31\x43\x71\x1b\xc6\xa7\x1a\xf7\xec\xd3\x94\x09\x8b\xb8\x65\xc4\xc0\x34\x35\xf7\xf5\x5d\xfa\x55\xe2\xae\x3a\xdf\x5c\x4b\x14\x67\xf4\x49\x27\x11\x2a\xa1\x15\x73\xca\x7f\xf9\xa2\xa4\xed\xed\x98\x04\xa7\xc6\xd1\x42\x20\x65\x5a\xa1\x02\xe6\xcb\x4f\x1e\x27\x64\x9d\x4a\xbf\xb4\x5a\x5b\x8a\xc5\x13\x4d\x3c\x01\x47\x7a\x56\x5c\xde\x8a\xc7\xd5\x65\xa4\x00\x9f\x78\x55\x47\xc9\x66\x7c\x79\x1d\xc0\x79\x97\x28\xf7\xe4\x12\x3c\x7a\xf4\xe8\xf0\x96\x2b\xc0\xc4\x85\x2c\x46\x5f\x9a\x3f\xce\x68\xfc\x80\x8a\x66\xba\xb7\x0e\x16\xa6\x6f\x4b\x85\xb2\xa0\xbb\x20\xd0\x1b\x32\x65\x3c\x6e\x62\x1d\x51\x4d\x7b\x1c\x8e\x98\x94\xbe\xca\xc8\x89\xdb\x7c\x31\x19\x52\xe9\x72\xc1\x43\x02\xe7\x5e\x8c\x63\xd7\x87\xcf\x33\x6d\x23\x3d\xae\x6d\xa6\x0e\x77\x39\xab\x13\x54\x05\x3b\x71\xc1\xfd\xe2\x62\x63\x2e\x19\x34\x24\x0c\xcd\x1b\x32\xdc\x6c\xd9\xea\x61\x20\x31\xcb\x99\xf1\x47\x0c\xec\x96\xd7\x4d\x3d\xc9\x84\xcb\x64\xae\x85\x66\x57\x8c\x21\xbe\x45\xcb\xdf\x73\x78\x00\x7c\xc9\x12\xde\x9f\xbb\x72\x87\x41\x49\xa2\xb4\xec\xc3\xf1\x67\xee\x07\xef\xb6\x7c\x94\x38\x6b\xcb\x8e\xff\xf9\x9d\x49\x60\x9f\x3a\x25\x8e\x0a\xa7\xfb\x5e\xaa\x7b\x2d\x2c\x24\x04\x5b\xc6\x72\x73\xd2\xd7\x62\xf2\xc4\x49\x93\xda\xe5\x84\xe3\x92\x2c\x18\xf6\x39\x61\xa0\x80\xfe\xf9\xda\x36\x5d\x31\xcb\x5c\x2b\xa1\x54\xe8\x7c\xb3\xeb\x54\xb6\xbf\x97\xe4\x4d\x6d\x7d\xc4\xb0\xb2\x15\x38\x6f\xff\x40\xa0\x41\x32\x0e\xb9\xf5\x6b\xf8\x48\x77\xec\x3c\xa0\x4d\xe2\x05\xc8\xe2\x06\xcf\xb9\x5b\xf7\x8a\xce\x6c\xda\x34\x40\xde\x8f\x3e\x71\xd8\xd0\x99\x45\x7e\xdc\x4d\x49\x2d\x9d\xcc\x35\xcf\x42\x85\x44\x86\x71\x50\xf0\x5d\xc4\xf8\x4c\xa2\xd2\xd0\xd1\xce\x25\x7e\x19\xbb\x18\x79\xdc\x33\x2c\x3b\xb9\x4f\x02\x99\x5b\xbd\x5a\xc5\xe9\xd9\x9d\xda\xc2\xcb\x87\xb0\xf1\xcf\x1b\xae\xc7\x88\xb9\x92\xea\x73\xc1\x71\x0d\x8f\xea\xc4\xc8\x2b\xd4\x09\x66\x0c\x2e\xe3\x17\xbc\x93\x3e\xb5\x01\x13\x0d\x99\x84\x08\x65\xfe\xf0\x80\x68\x7c\xe6\x11\xe4\x22\xaf\x4c\xeb\x34\x74\xe0\xb4\x2d\x3f\xf5\xa5\x74\x7c\x10\x2b\x41\x07\xfb\xca\x2a\xac\x6d\x08\xe0\xc2\xd9\x04\x3b\x65\x3e\x11\xfa\xf5\x83\xad\xfa\xcb\x21\xa7\xa0\x0a\xf9\xaf\x4c\x67\x5f\x53\xe6\x0d\x05\x7c\xb3\x54\xec\xc9\xf4\x5a\x32\xdc\xfc\xa5\xcd\xc0\x56\x7b\x88\xd7\x47\xeb\x46\xce\x17\x1a\x51\xba\x4b\xf8\xc9\x79\xb2\x59\x44\x4c\xd8\x4b\x3f\x3c\xd2\x88\xd1\xd8\xb3\x6c\xf9\xed\xf7\xbd\x03\x50\x8a\xc4\xc3\xb6\x78\x75\xd9\x2f\x1d\x86\x79\x36\xc1\x2b\x65\x76\x2e\x15\x87\xff\x06\xaf\x41\x98\x74\x59\x36\xab\xfd\x11\xcf\x98\x68\x3b\xaf\x2a\x8a\x9b\xf8\x69\xf5\x3a\x3b\x08\x28\xc8\xb8\xdc\x17\x80\xdf\xf9\x47\x4a\x03\x64\x8c\x95\xd0\x58\x3e\x5d\xce\x53\xc3\x8b\xcc\xc1\x88\xdb\xc9\xcb\x25\x69\xdf\x77\x75\xfa\x56\x82\x14\x6a\x49\xf0\x1b\x20\x6f\x5c\xe7\xcb\x55\x49\x7d\x88\x0e\xb6\xb7\xf8\xbf\xf8\x71\x33\x2f\x7c\x72\x50\x4a\xc1\xbe\x33\x14\xe6\x06\x85\x62\xf4\x03\xa0\xcb\xc4\x48\xa5\x22\x56\xd7\x6d\xa2\xe8\xc4\x0d\xe2\x09\x12\x5e\x8e\x5c\x05\x86\x71\xd4\xad\x63\xe1\x1f\xdb\x65\x60\x55\x5d\xec\x49\xbd\xdf\x3e\x4f\xa4\xff\xa4\x7d\x46\x41\x45\xd5\x5b\x8d\xf1\x72\x5c\x05\x2b\x8b\x9b\xe8\xfe\xb2\xd4\x22\x98\xdc\x36\x25\x7e\x6d\xef\xf7\xd2\x2c\xfe\x32\x90\xa3\xbf\xfd\xd8\x45\xf2\xc3\x34\xb0\x54\xba\xcd\xbe\x37\xea\x52\xe3\x58\x08\xe5\x64\xd8\xdb\xbd\xf6\x08\xd8\xb5\x61\x54\x15\xc0\xfa\x25\x0f\x00\x4f\x64\x0e\xbc\x88\x6b\xd3\xb7\xcc\x01\x06\x65\x89\x9b\x5e\x63\xad\xa1\x79\xc2\x68\xb3\xac\x8c\xfe\xb6\x5c\x0b\xbc\x10\xe3\x3a\x19\xec\x10\x72\x7f\x1a\x06\xec\xce\x30\x37\xd7\xfa\xfa\x92\x84\x3b\x10\x30\xea\x14\x8a\xd1\x9d\x73\x87\xab\xca\x8f\x0b\x07\x16\x7c\xec\xf9\x24\x20\xbc\xdb\xce\x9c\x79\xd3\x9c\x95\x84\x92\xfa\xd1\x93\xb9\x6b\x5e\x7a\x98\xed\x23\xd7\x0f\xe5\xde\xd0\xac\xb4\xfe\xfa\x76\x8b\xb3\xf6\x94\x64\x85\x3d\x6e\x99\xa0\x6b\xcc\x9d\x7b\x7d\x4b\xa6\x7e\x72\x81\xa1\xb7\x87\x83\x00\x33\x19\xc1\x27\x6d\x4c\xcf\x62\x4b\x6e\xf3\x5c\x2a\x9f\xf9\xae\x7e\x69\x7b\x09\xd4\x89\xba\xce\xa5\x73\x9d\xb9\x6c\x3c\x0c\x0e\x01\x76\x1c\x12\x24\xa5\xf0\xf0\x0d\xa2\x01\x5c\x84\x25\xd0\xbd\xfa\x7c\x3a\x3d\x06\x21\xe2\x64\x50\x1d\xff\xd6\xbd\x09\xf2\x2a\x0b\xdd\x1a\x7f\x69\xa3\x3b\x06\x24\xad\x96\x83\x94\xae\x6a\xee\xff\x3e\x9d\xde\x47\xd5\x6c\xea\xd0\x32\x6d\xa4\x36\xe6\xd1\xaf\x77\x89\x16\xea\xb6\x80\xb7\x62\xbc\xa8\x8e\x2e\x3e\x3a\x1c\x54\xdb\x75\x9b\xf8\x01\xd0\xf8\xab\x1a\xfa\x3d\xbc\x51\x45\x8e\x48\x03\xf9\x9b\x77\x80\xf9\x23\x2b\x13\x0f\x31\x22\x96\x53\xdd\xc6\x84\x86\xd6\x95\x61\x30\x57\x15\x7c\xf3\x4e\xa0\x67\x15\xba\x28\x0e\x97\xdb\x45\xfc\x9c\xda\x31\x71\xf2\xf4\x69\x5c\x0e\x09\x48\x28\xd4\x30\x07\x85\x65\x86\x37\xc4\x21\xf4\x30\x2e\xcb\x51\xe7\xf3\x95\xf4\x39\xa3\x4d\x9e\x89\xe3\x23\x5b\x5b\x3b\xca\x28\xd2\x05\x26\x10\x69\x39\xfa\x0f\x78\x26\x44\x82\xfa\xbe\x86\xb9\xf6\x36\xe6\x53\x4d\xec\x58\x7c\x33\x24\x27\x97\x7f\xde\x3a\x48\xd6\xd3\xcc\x0a\x5d\xa1\xb7\xeb\x17\x8a\xd1\xf3\xcf\xeb\x39\x00\x55\x8f\xba\xf1\x72\xfa\x61\x4e\x9f\x5c\x98\xdc\xde\xa1\x8a\xbe\x6b\xca\xe9\x4f\x12\xd0\x90\x11\x5f\x51\xff\x32\xb3\xa7\x9b\xe4\x23\xee\x37\x9a\xd4\x8c\x77\xef\xd5\x31\xa3\x8b\x04\x54\x6c\xc9\x1e\xb8\x4a\x87\x4e\xe4\xd0\xb8\x11\x88\x6e\x9e\xfe\x91\xff\x37\xb1\x64\x71\x7c\x74\x58\x1b\xf7\xa8\x78\x55\x65\xea\x0a\x63\xcf\xdc\xa0\x63\xa6\x86\xa7\x67\x70\xf2\x4f\xcd\xd6\x92\x74\xdc\xae\x34\xe9\x12\xae\x7f\x63\x00\x68\x5c\xb9\x37\x63\xfc\x23\x07\x9e\x1d\x00\x12\x96\x1f\x10\xee\xc6\x9a\x59\xf8\x38\xf0\x74\xa8\x23\x16\xd8\x98\x97\x51\xf9\x31\x8b\x34\x34\xc3\xe9\x56\x17\xaf\xdf\x33\x46\xe3\x1f\xe0\xba\xcd\x45\x6e\xd7\xc0\x85\xcb\x26\xb0\x48\x67\xc8\xab\x89\x50\x7d\xe9\x3a\xe8\xa6\x85\xa4\x64\xcb\x8d\x13\xcd\x71\x72\x1d\x2b\x22\xf7\x0f\xb7\x8b\xeb\x79\xdd\x1a\x02\x7f\xfe\xf8\x86\x38\x25\x37\x0a\x1b\x46\x5d\x34\x3c\xd5\x3e\x48\x53\xb5\x01\xd0\x24\x53\x19\x69\xba\xb3\xa3\xaa\x8d\x83\x80\x88\x8b\x37\x6e\xb9\xbe\x78\x1e\xae\x04\xb8\x4a\x99\x5f\x2b\x14\xa3\xcf\x8c\xef\x9f\x14\x0f\xa4\x8c\x3d\x2b\x4e\xbb\xb7\x3f\x6b\x8e\x4b\xbb\x82\x42\x99\x52\x49\x83\xcb\xfd\x63\xe3\x58\x4d\x8e\x60\x14\x95\x2d\xe4\x07\xa2\xba\x31\x9a\xde\xc7\x00\x15\x80\x91\x20\xe0\x98\xc2\xcd\x4f\x1a\x85\x3c\x85\x68\xe8\xe1\xbd\x60\x35\x9a\xf8\xbd\xc6\xbf\xf7\xe3\x13\x35\xa8\x8b\xd4\x49\xa1\x18\x2d\x99\x9d\xac\x2d\xaa\x61\x25\xfe\x3b\x3b\x8f\xe9\x5f\x59\xe2\x52\x84\xbc\xc5\xfa\x7e\xc7\x30\x80\xed\xf1\xf8\xc7\x51\x3d\x7d\xe6\x33\x9b\x74\xa9\xdf\x49\x89\xaa\x4c\xa2\xb3\x73\xd3\x99\x64\x4a\xc7\xb4\x89\x93\x26\x09\x83\xee\x6c\x73\x91\xce\xae\x53\x26\xce\xe0\x66\x9e\x99\x4f\x2d\xd4\xef\x07\x83\xe8\x9c\x79\xbf\x5f\x72\xbf\x6b\x38\x01\x9f\x39\xf7\x82\xdb\xe6\x79\x42\x8f\xe4\x27\x77\x8e\x31\x12\x3e\xf3\x6c\xc4\xca\x06\xdc\x7c\xd6\xf4\x44\x48\xad\x82\x5b\x10\x3d\x99\xff\x3e\x9b\xfe\x29\x58\x57\x82\x5c\x74\x56\x4e\xbe\x57\x77\x0d\x04\xb7\xc6\x72\x10\x13\x8f\xfa\xd7\x47\xfa\x27\xa9\x3a\xce\xd1\xc2\x89\x6a\x4b\xa4\x8f\x91\x1b\x3a\x01\x89\x2f\x14\x3f\xfa\x5f\xe8\xa7\x63\xef\xb4\x99\x81\x5d\x28\x46\x27\xb4\x9b\x0c\xf1\x5a\xa5\x3f\x9f\x66\x86\xf8\x39\x2d\x93\x44\x70\xe9\xd3\x67\x8d\xa2\xdc\x26\x4e\xb9\x44\x58\x20\x0b\xe2\xfc\x55\x3b\xf4\x2b\x0b\xe2\x56\x27\x2e\xf4\xe3\xa7\x77\xdf\x58\x83\xa5\x84\x5c\x69\x99\x50\xec\xc9\x6d\x32\x0c\xde\xf8\xd2\x85\x24\x2c\xa6\xec\xe4\x60\x08\xa8\x98\xbc\xb8\x08\x23\x42\x55\x2d\x5f\x77\x8c\xf6\x22\x44\x1c\x24\x83\xd5\x40\x75\xf3\x5e\xe0\xd0\x8b\x09\x47\x8c\x64\xa7\xcd\x35\x65\x99\xb8\x8c\x06\x96\xa3\x97\x77\xfa\xa4\x39\x18\x4d\x24\x2c\x81\x32\x57\x3f\x09\x8c\x09\x49\xc0\x91\x0f\x1b\xce\x4f\x9e\xe7\x39\x86\xf7\x99\xbf\x1d\xd1\x81\xae\x41\x9d\x1a\x6d\xf8\x35\x4e\x56\xfc\xdd\x71\xdd\xfa\xd5\x04\x1e\xc2\x57\x8e\xea\xa3\x01\xa5\x16\xfb\xc8\xe5\x5f\xf5\x8a\xfd\xc9\xa5\x0a\xeb\x7c\xf3\x50\x1a\x24\xca\x91\x4a\xb8\x66\x0d\xff\x99\x2f\x04\xfa\x75\x5b\x1e\x9f\xea\x66\xbf\x79\xa7\xb1\x9a\xb1\x02\xd2\xe0\x66\x2f\x62\x06\x35\xb0\xa4\x03\xb4\x83\x58\x55\xec\xfa\x6a\x9b\x8d\xe1\x3d\x87\xed\x08\x46\xc7\x0d\xf7\x6b\x15\x3d\xea\x39\x42\x7a\x31\x7d\x8a\xbe\xd9\xd0\x0f\xca\xc3\x4d\xde\x35\x7c\x7f\x6b\xf2\xf9\xd7\x10\x31\x73\x58\x68\x1a\xc7\x4a\x19\xe5\xa8\x63\x97\x6e\xa0\xca\xc4\xf7\x43\x54\xe6\x13\xfb\x0d\x86\x70\xa0\x50\x43\x53\xb9\xf3\xd6\xfb\x53\xb6\x50\x5c\xe1\xe5\x83\x7b\x0c\x60\x0a\x23\x55\x22\x5c\xe2\x65\x6d\x50\x7c\x5d\xda\x15\xd5\x88\x80\xd4\x9f\xb4\x41\x26\xe3\xde\x04\x62\x7c\xbc\xb5\xaf\xec\x0c\x39\xd1\xab\x50\x8c\xd6\x2c\x12\x0a\x4e\x8b\x48\x49\x96\x45\xe6\x50\xed\xfd\x6d\x06\xec\xdb\xa1\x4d\x25\x75\xf7\xf9\x77\xc5\xcf\x9b\x3c\x73\xe6\xb4\x82\xb0\x26\xfb\x85\xdc\x4e\x23\xdf\x27\x55\x4f\x8e\x60\xe6\xed\x1d\x61\xd4\x2e\xa8\xe6\xc5\xfd\xb3\x54\x4b\x7c\x7d\x20\xd8\x1f\x32\x26\x35\x8f\x33\x23\x7b\x19\x14\x62\x07\x11\x5e\xf1\x88\xa1\xf6\xed\x4f\xb5\x48\x9b\xfa\xd4\x4c\xa8\x9f\x96\x60\xff\xc5\xa4\x8a\xd9\x39\x64\x21\xff\xa7\x24\x1e\x5d\xc0\x90\x30\xe5\xcb\x7c\x71\xae\xa9\x21\x21\xc0\xe5\x72\xef\xf3\x91\x21\xe9\xdf\xda\x8d\x1b\xb6\x29\xa8\x9a\x3b\x21\xdd\x91\x6e\x40\x09\x62\x2d\xfb\x83\x43\x46\xb7\x8f\xb8\x72\x22\x6f\xa8\x7e\xff\x30\x28\x5f\x55\x81\xda\x56\x28\x46\xef\x2d\x36\x87\x17\x88\x78\x09\xfb\x31\x3a\xb5\x00\x30\x4f\x68\x20\x56\xe2\x0f\x6f\x1e\x02\x1f\x67\xad\xee\xc4\x5f\x4d\x38\x84\x3e\xa2\x43\x49\x89\x78\x7c\x4e\x91\x1b\x70\x4a\xff\x72\x1e\xee\x2c\x5a\x27\x56\xa1\x18\xbd\xf6\x8e\x01\xf4\x6c\x12\xdf\xb7\xa8\x7b\x2e\xa0\x67\xce\x39\xcf\x90\x66\xb6\x2c\xd4\x3c\x27\x0c\x7d\xd1\x8b\xfa\xf3\x95\x30\x02\x3c\xd7\x3f\x77\x18\x05\x8d\x46\x94\xe4\xa6\x39\x06\x68\x13\x05\xc9\x10\x20\x77\x71\x1e\x6a\xf0\xb8\x5c\xef\x48\x4f\x8f\x3e\xbc\x29\x7d\xe5\xda\xa7\x70\x29\x70\x19\x3d\x3e\xb4\x41\x39\x82\x14\x2c\x1b\x11\xe6\x8a\x64\x39\xe8\xf4\x60\xf0\x23\x2d\x52\x67\x54\x8a\x6c\x1c\x2d\x03\xdd\x14\xb7\x50\x8c\x8e\x0d\x18\x01\x1a\x24\x2c\x38\x7a\x09\xe4\x2a\xbf\xde\x0c\x5f\x1e\x72\xba\xe3\xe8\x25\x27\x68\xb3\x9f\x4d\x27\x00\x2f\x0e\x47\x01\x0b\x95\x9f\x5e\xb8\x6e\xf8\x39\x2a\x7f\x2c\x3b\xeb\x9d\xeb\xc4\xc7\x5f\x44\x4b\x40\x86\x3b\x93\x5b\xa2\x2b\xc6\x26\xb1\x6a\x62\x62\xfd\xfe\x7b\x3a\x62\xd7\x51\x3d\xa5\x13\xb3\xe0\xe8\xe0\xd4\xf8\x54\x2d\x0d\xa3\xe2\xcb\x40\xcf\xdf\x8b\xaf\x02\x0f\x26\x8b\x5f\x36\x95\x8d\x42\x0b\xf9\xa1\x1f\xdf\x4e\x60\x3e\x78\xd3\x73\xe9\xf7\x56\xe7\xd2\x24\x82\x85\x95\xcd\x19\x9e\x58\x88\x11\x2c\x61\x2e\xf3\x76\xea\xd9\x8d\x60\x18\x0a\xde\x62\xfc\x6a\xb6\x8b\xa0\x35\x9f\x86\xcc\x8a\x6b\xd1\xd6\x85\xf3\x4b\xcf\x5d\x66\x94\x3a\xc8\xb2\x79\xa7\x05\x44\x88\x76\xbf\x95\xbe\xe9\x5c\x40\x1a\xfb\xf2\xc9\x66\xc3\xac\x29\x00\xdb\x20\x58\xae\xe8\xa2\x7f\x5b\x09\x6f\x1e\xb7\x8d\x8b\xbe\xf2\x86\x81\x40\xa3\x94\x59\x8c\x56\x82\x74\x4c\xca\x5f\xbb\xd0\xa4\x34\x52\x2e\x00\xab\xb4\x81\xdf\xba\xcf\xd0\x6a\x9d\x2e\xcf\x79\xfe\x53\xfb\x27\x18\xcf\xcb\xc7\x1e\x8e\xf3\x31\x3e\xc7\x55\x8b\xaa\x5b\x06\x81\xf9\x17\x2d\x87\x96\x18\x27\xbf\x30\x32\xfd\xd8\xa7\x8e\x43\x6e\x5d\x40\x07\x6f\x99\x07\x8c\x5b\x2c\x2b\xf4\x21\x9d\xee\x9f\x67\x01\x13\x3c\x9c\x96\x1b\xcb\x57\x97\x1b\xd2\x09\xd4\x8d\x7b\x50\xb9\x11\xdf\xb1\xfa\x22\xf9\xac\xac\x1a\x96\x81\xea\xa5\xae\xab\xd2\xdf\xc6\xf7\xa9\x45\x90\xd2\x1f\x31\x0b\xcf\x49\xa7\xc5\x49\x5f\x9a\xf4\xce\x3c\xa6\xdd\xb7\xde\xe8\x56\x31\x63\xa4\x42\x2c\xa9\xef\xd9\x04\xb6\xe2\xb8\x81\xac\x50\x39\xac\xec\xed\x6c\x49\xdd\x12\x8b\x93\x19\xb7\x42\x80\x8a\x96\xa0\xd0\x81\xe2\xa2\x79\x03\xb0\x67\x09\xcb\x8e\xb1\x85\x62\xb4\x5d\xfe\x93\xf9\xd8\x76\x81\xa4\x61\xce\x3b\x6b\x92\xdb\x3c\x12\x28\xe5\xb1\x9e\x4c\xbb\xe1\x13\x1f\x34\xa9\x5c\x72\x1c\x7a\x5e\x5f\x60\x1a\xfa\xfc\x43\x47\x3f\x1b\xa6\xfb\x14\x4b\xa8\x32\xde\x62\x8b\xb9\xd3\x02\xea\xe1\x6e\x2b\x0c\xa0\x8a\xee\x27\xae\xd5\xef\xdf\x46\x2c\xce\xc9\x62\xd3\x80\x4e\x8b\xc4\xdd\xc0\xbe\x8f\x1d\x7e\x9d\x27\x6e\x35\xfa\x3c\x69\x7e\x21\xa1\xda\xb3\x9e\x36\xa5\xd1\xbd\x5a\xc2\xd1\xbf\xe0\x41\x20\xc5\x82\x1a\x94\x91\x40\x26\x9c\xa5\x79\x0d\x1d\xd1\x9e\x4b\x89\xe0\xff\xe7\xb7\x0c\x02\x38\x18\x9f\x3b\x67\xf0\x5f\x77\xdf\x3b\x6a\xba\x54\x0f\x83\x64\xba\x94\xbd\x59\x0c\xd2\x0a\x4b\xa8\x43\x90\x47\x2c\xbb\xa6\x63\x5e\x74\xbd\xb1\x6b\x2a\x61\xc4\xe4\x21\xf8\xfc\x99\x34\x7b\x4b\xc1\x89\xce\x09\x5a\xcd\xfe\x6e\x8c\x49\x9e\xf4\x02\x64\xc9\xd2\xf1\xd6\xa7\x0a\xff\x7b\xfb\x73\x4e\xba\xc1\x08\x69\x6e\x78\x9d\x8b\x59\x7c\x6a\x15\x8f\x21\x00\xce\xde\x7e\x58\x0a\x1c\x1c\x08\x0d\x10\xc3\x35\xc4\x8e\xbb\x10\x2f\x61\x6b\x64\xfe\xb9\xf7\x85\x1a\xbf\xc4\x9b\xfd\xb5\xdb\x8d\x7f\x41\x9d\x14\x0f\xf8\xe4\x61\xe3\xe5\x31\xed\xf4\x92\xb7\xe6\x25\x3f\x0e\x79\xfc\xae\xbe\xbd\x56\xdb\xf0\x75\x83\x55\x4a\xe6\xfe\x33\xba\x7c\x08\x98\xb0\x04\xcf\xdf\x3e\xa2\x65\x03\x4c\xcb\xdd\x7c\x99\xf9\xd6\xda\x64\x06\xd0\x40\x44\xe0\xa5\xa3\x88\x01\x72\x24\x69\x50\xee\x84\xd9\x93\xff\x78\xbf\x21\x70\x2d\x40\xab\x0c\xd5\x6d\xa1\x0f\xb6\xfc\x2a\x81\x13\x2d\xfe\x2f\x95\xba\xa7\xb9\x3b\x08\x0a\x9c\x6d\xd8\x34\x48\x0b\x96\x42\x4d\xb7\x8d\x6f\x5f\x08\x38\xcc\xf1\x57\x3e\x6f\xfd\x68\x90\xed\xeb\x94\x05\xe7\xf0\x3d\xce\x3e\xa0\x4f\x6b\x40\x43\xcb\x2e\x73\x97\x91\x9e\x2c\xcb\x5f\x0c\x26\xae\xad\xf6\x9f\xef\xd7\x75\x06\x9d\x3e\x6d\xe2\x8c\x99\xd3\x0a\xdc\x3a\xe5\x91\x21\x69\x12\x7d\x03\x7b\x54\xc8\xc6\x1c\x98\x0e\x54\x89\x13\x26\xf4\x8e\x01\xe0\x9e\x85\xd8\x29\x38\xb8\x21\x76\xd8\xc3\xde\x35\xa0\xc4\x88\x24\xc2\xa1\x5f\x3b\x69\xaa\x5f\x06\xd8\x35\xd4\x2f\x0f\x9c\xed\x0f\x67\x5c\x84\xc5\xcd\xc1\xd6\xe3\x86\xcf\x26\xae\xd2\x80\x48\xab\x3e\x1e\x34\x76\x9d\x67\xb2\x6c\xa7\x4f\x93\xa9\xbd\x7c\xbe\x24\x6e\x3a\xc4\x0b\xc0\xd3\x8f\xf6\x0f\x48\x5f\x20\xb1\xc1\x25\x71\xf9\x8e\x3c\x2a\xe8\x1f\xe9\x0b\xf4\xe2\xbd\x46\x68\x22\x6b\x30\x12\x6a\x47\xf1\x77\xef\xbd\xcf\x20\xa8\x10\x97\xc6\xed\xb0\xbc\x8c\xbc\xf8\x7e\x63\xc5\x45\xf2\x9e\x71\x02\x92\xf0\xf7\x38\x62\x12\x1b\x19\x8e\xc3\x73\x42\x83\xcf\x6f\x7c\x5b\x9f\xf7\x32\x5d\xc3\x67\x4c\xaf\xf5\x92\xbd\x16\x71\xf8\x4e\xa8\x27\xbb\xfc\xe1\xf4\xb3\xf7\xc2\xb2\xea\xe7\x32\x83\xce\x13\xd1\x79\xa9\xd0\x11\x82\x85\xd1\xd8\xcd\xa3\x64\xc9\x6d\xd9\x1e\x75\x68\xb5\xc5\x56\x2b\x7b\x77\x1f\xd3\x1e\xd6\x71\x68\x53\xfd\xec\x7d\x00\x60\xe4\x3b\x8a\xae\x9d\x3d\xfd\x2a\xf0\x8b\x16\x0b\x90\xfc\xb3\x4a\xeb\x16\xbb\x75\x19\x4c\xa3\x7f\x5d\x63\x30\x2e\xc3\x40\x8c\xc4\x9f\xd5\xa6\xd0\x88\xb3\x51\x8d\x42\x7f\x93\xb1\x9a\xaf\x32\x2c\xe1\x5d\xd1\x99\x37\x0c\x2d\x06\xec\x91\x44\x29\xe1\x92\xed\x83\x21\x98\x1c\xce\xe8\xd7\x9f\x5b\xce\x51\x52\x28\xb6\x6c\x34\x7d\x46\xaa\x2c\x6d\xc3\x7c\xe3\x58\xb0\x97\xa3\x25\xbe\xa0\x78\xdb\x24\x25\xa3\x80\xc4\x6f\xcc\x47\x15\xac\x54\xad\xb2\x3f\x7b\xd8\x80\xe4\xd9\x48\x48\x4f\xf0\x74\x73\xe5\x01\x70\xdf\x70\x10\x84\x96\x25\x10\x2c\x99\xbb\x8e\x1b\x80\xaa\x90\xd5\x70\xb7\x34\x1f\xe1\x62\xa3\x07\xc5\x8b\xbf\xc9\x77\x90\xcb\x21\xb6\xc0\x75\xbb\x77\x0b\xff\x4c\xb3\x90\xd8\xab\x46\x39\xc3\x68\x58\x72\x12\x24\xd7\xb7\x9e\x11\xd7\x2a\x3e\xc6\x04\x39\x42\x63\x8c\xf7\x40\xfd\x9e\xd1\xc9\xbe\x8c\xb9\x4f\x0b\x47\x9c\xdd\x7a\x50\x07\x9f\xc9\xed\xd3\x27\x4e\xe2\x9a\x85\xb9\x7b\x9e\x1e\x67\xa4\x44\x0e\x36\xb0\x91\x2b\x23\x83\x26\x07\xe3\xf1\x26\x3c\xdc\xe3\x0b\x5a\x49\x01\xe6\xdb\x8b\x7f\xdf\x36\x02\x84\xc0\x50\xc0\x59\x75\x19\xd4\xb9\x2e\x49\x32\xdc\x77\x39\x72\xb3\x97\x98\x8d\xad\xe7\x0b\xcf\x0a\x39\x0b\x1e\xb7\x46\xa7\x47\x2b\x0c\x4a\x12\xbc\x94\x0b\x9f\xd4\xd3\x02\x17\xd5\xb0\x72\x27\xd8\x63\x58\x8e\xb6\x4f\x9c\x32\xb9\x5d\x36\xed\x7f\x79\x54\x3f\x83\x06\x92\x03\x86\xe8\x2f\xe3\x0c\x1f\x7b\x37\x6e\x95\x11\xd0\x51\xdb\xf1\x92\xb9\xb8\xf3\x7d\x49\x96\x29\xf6\xe4\x7b\xb5\xa5\xdf\xe3\x5d\x21\x72\x48\xa5\x5b\x0c\xda\xde\xee\x34\x4d\xf2\x79\xe4\xa1\xcc\x97\x2b\xfe\x6c\xbe\xdc\x5b\x7e\x39\xfe\xf9\xdb\xe7\x5f\xee\x01\x6e\x38\xc3\x71\x16\x6f\xf5\x5d\xcc\xe5\x0d\x05\xfe\xd0\x23\x6a\x99\x39\xe8\x11\x69\xdb\x50\xe6\xef\x87\x89\xd9\x6a\xdb\xf9\xe6\xa8\xd0\x42\x8e\x93\x48\xb7\x7e\x70\x3d\xdc\x55\x7b\x0d\x62\xf1\xbd\xe0\x07\x57\x4b\xa4\x28\xc6\x6e\x1c\x2e\x1e\xee\x65\x52\x2c\xea\x0e\x75\x51\x90\x90\x08\x7e\xd2\x4b\x71\xed\xe3\xd2\xca\xb4\x07\xef\xc9\x7e\xee\x69\xc3\x51\x8e\xcb\xe0\x8b\xd0\x30\x6b\xbd\xd1\x6a\xd5\x43\xe6\x29\xb5\xd7\xec\x0b\x9d\x66\x72\x63\x52\x7f\xbe\x27\xf7\xbd\xe3\x06\x85\x50\x30\x17\xd4\xfd\x5e\xbc\x4f\x3c\x91\xeb\x91\x57\x26\x65\x89\xfb\xcc\xb8\x2d\xd2\xa2\x1c\x37\x90\xb8\x73\x8d\x36\xfc\xe5\x03\x1a\xb2\xc4\x2a\x64\xee\x00\x80\x8a\xf5\x3c\x50\x1f\x65\xa7\xe5\xd5\x7c\x8d\x28\xf7\xfe\x4f\x98\x1e\xb4\x0d\xac\xe7\x7d\xd1\x2f\xee\x06\x25\x60\xdc\x45\xca\x81\xd9\xfc\xa9\x1a\xd4\xe0\xc7\xd5\x08\x88\x1e\x63\xee\x15\x11\xa0\x7d\x26\xdf\x19\x48\x26\x66\xfc\xb1\x5f\x9a\x63\x88\x76\x96\x38\x3b\x35\x61\x97\xe4\xba\x0e\x18\x93\x04\xe9\x48\x23\x66\xc6\xde\x08\x51\x66\x5d\x47\x98\x85\x4d\xf7\x86\x9e\x9c\xf3\xa0\xec\xe0\x42\xe5\x97\xd4\x93\x3b\x96\x6c\xe2\x43\x26\x9a\xba\x7c\x07\x1b\x6a\x44\x54\xe2\xd5\x26\xe0\xae\xf8\xb9\xf7\x3e\xa0\x7b\x9a\x92\x83\x5c\xbe\xa0\xfc\x93\xc1\x10\xc6\x1e\x66\x55\x2c\xce\x55\xfc\x8c\x0e\x1e\x85\x74\x5f\xe4\x60\x6e\x41\x96\xf1\x92\x21\x4c\xc9\xe1\x4c\xa7\xe3\x42\x85\x20\x59\x38\x05\x42\x19\x9a\xcb\xb9\x1c\xd4\x18\x82\xc9\x33\x67\x76\x14\x8a\x51\xff\xcd\xe9\x47\xe1\xa1\xaa\xa8\x3e\xe2\x5f\xf9\xb7\x7e\xe9\x76\x81\xdb\x26\x72\x13\x9f\xd6\xf2\x24\xaa\x49\x6a\xa5\x65\x13\xab\x86\xbd\x02\x17\x7c\xe4\x91\x6a\xe8\xfd\x83\x20\x34\x05\x5b\x92\x30\x91\xbd\x78\x16\x58\x9a\x89\xa9\xab\x1c\x12\x5e\x22\x81\xe3\xd7\x0b\x06\x8e\x2f\xd0\xe9\x1f\x1e\x30\x14\x6c\x0f\x34\x37\x27\xfe\x59\x4f\x47\x26\xdc\x1a\x33\xcf\x51\x04\xd4\x13\x25\x03\x94\x81\x1c\xec\xb7\x49\x4a\xc3\x9b\xbb\x07\xaa\x1f\x59\xc7\x9e\x9f\xf8\x1d\x7d\xf5\x04\xf0\xb5\x0e\xb9\x3d\x9f\xac\x19\xbe\x7a\x55\xd2\x19\x38\x50\xe3\x34\x33\x78\x29\x80\x40\x91\xaa\x87\x44\x53\x79\x60\x45\x52\xc6\x96\xab\x58\x2e\x9f\xff\x3c\x7e\xa8\x29\xaf\x50\x42\xbe\xd8\xa6\x1d\x33\x02\x2e\xf2\xfd\x30\xd1\x5a\xca\xbc\x7e\xa7\x71\x99\x98\x65\x73\x96\xab\x58\xdd\x7c\xee\x65\x63\xc5\x6a\xa3\x1a\x43\x24\x85\x20\x8e\xe6\x9e\x32\xd4\xc2\x88\x1f\x30\x62\x05\x80\x77\xfc\xe2\x31\x71\xaa\x1d\xca\x39\x6d\xf1\xe7\x3a\x7f\x21\xd8\x4f\xe1\x00\x39\x4e\xc8\xaa\xbc\x76\xd9\xf5\x16\xe0\x85\xd4\x15\xb5\x6f\xf8\x5c\x53\x2a\xcd\x53\x7a\x63\xd1\x47\xe6\x00\x70\xb7\x83\xaa\xbe\x4d\x78\x20\x7e\x76\x19\x70\xa7\x92\x6f\x39\x59\x1f\xf7\x5e\xa4\xaf\x0e\xaa\xd7\x39\xb9\x30\x7a\xf5\xa5\x4b\xe1\x01\xe3\xd2\x43\x66\xef\xd1\x69\x0c\x3f\xb9\x53\x08\x53\x9d\xfb\x27\xd8\x50\xd8\xd1\x61\x38\x10\x5c\x3f\x06\x60\x87\x43\x97\xf2\x27\x91\xff\xe8\x23\x2d\xba\x67\x16\xa9\x3b\x71\x35\x97\xa0\x8e\xff\x76\xd8\x98\x5a\xcb\xa9\xb2\xf2\xc8\x3f\xde\x01\x52\xbb\x8d\x31\x23\x82\xac\xf8\xfc\x49\x83\xf6\x8a\x3c\x10\xf9\x72\xbf\xc8\x1a\x82\xc5\x9c\x3f\x2d\xc6\x85\x99\xf7\x12\xad\x42\x9b\x94\xa4\x55\x4b\xe6\x37\xb2\xf0\xf5\xf8\x0f\x53\xba\xdb\xcf\x4d\x6d\x91\xbd\xad\x60\x86\x13\x3b\xd8\xec\x4d\x6b\x4c\xf3\xc0\x86\x12\x8b\xed\xc9\x7f\xf2\xd8\xe5\x46\x5d\x29\xdc\xbb\x88\xc2\x72\xc8\x53\xf4\xe9\xd1\x7d\xd4\x63\xe5\xd3\x41\xdf\x58\xfc\xf8\x2e\x72\x1c\xa1\x46\x5c\xec\xc9\x8f\xdd\x97\xb6\x3c\x37\x5f\x63\x68\x43\xd9\x91\x19\x1c\x47\xfa\x44\x3f\x50\x30\xd0\x26\x2f\x3b\x6e\x79\x74\xa4\x99\xba\x44\x9f\xea\x4b\xf4\xe9\x9d\x1d\x46\xad\x4d\xa4\xef\x89\x68\x16\x0f\x1c\x14\x83\x17\x13\xae\x99\x1f\x04\x99\x47\x2e\x62\x82\xe2\x9f\xdb\xb5\x39\x89\x08\x2e\xb4\x73\xc8\x4c\x1c\x9f\x54\x7c\x85\x32\x9f\x54\x0f\x1f\x64\x52\x07\x1a\xa6\xc9\x6f\xe6\xaf\x7d\x8c\x7b\xd3\x0d\x74\xeb\x7f\xf6\xb4\x78\x9b\xd3\xa6\x4e\x03\x59\xef\xa1\x93\x60\x26\xe6\xf3\x19\xcd\x9d\xcf\x01\x7c\x1a\x13\x56\xa0\xb5\x52\xfa\x4c\x86\x42\x23\x59\x22\xf3\x23\xb7\x53\xec\xad\x88\x1b\xe7\x0f\x11\x8d\x32\x27\x9e\x17\x29\xc5\xb7\x6c\x4a\x1d\x4b\xca\xb4\xf3\x80\x70\xcd\x1a\x7d\x89\x2d\x1b\xa3\xba\x24\x84\x0d\x5d\x22\x17\x9a\xb8\x21\x86\x17\x3f\x1b\x62\x36\xaf\x55\x37\x4c\x08\x01\xf9\xf1\x2b\x4c\xa7\x30\x4f\xcb\xea\x67\x2f\x5a\x99\x2e\x22\xab\x98\xb2\x2a\xd7\x7e\x50\x8b\xfe\xf9\x8f\x0d\x35\xdb\x85\xba\xdd\x2d\xb0\xb1\xaf\x1a\xca\x39\x55\x2a\x34\x1d\xa2\x93\xab\xd2\x25\x24\x23\x0d\xc1\x2e\x8d\xbe\xb4\x12\x34\x11\xf1\xa5\xe1\x03\xab\x62\x4f\xa6\x7a\x2d\x38\x7f\xdc\x60\x3d\x37\x67\x96\x06\x46\xf3\xbd\xfc\xe9\x47\x0d\xeb\x01\x0e\x80\x82\x3a\x30\x99\xf6\x8d\xa2\x88\x48\x79\xab\x3c\xd7\xc2\x75\x56\x4e\xc8\xb9\x1f\xcc\x4e\x3f\x1e\x5a\xa9\x60\xcf\x57\xc2\x7c\x07\x0c\x3a\xa7\x64\x92\x6b\xbf\xde\x3b\x7a\x9b\x16\x30\x0e\xd6\x4f\xf7\xb7\x7d\xc1\x31\xc1\x4e\x80\xe2\xff\x39\xf8\x69\xb3\xd8\x2c\x13\x2a\x87\xd8\x8b\xaf\x52\x25\x50\xc9\x21\x96\xe8\x5d\x3f\x3b\x56\x1c\xca\xb8\x4e\xf3\x7c\x2a\xa8\x01\xb9\x7e\xab\x0d\x3c\x80\x1f\x10\x97\x4f\xb6\xad\x38\x16\x4c\x18\x96\x80\x36\x3c\xa1\x50\xcd\x15\x43\x07\x18\xe2\x69\x8c\x5a\xd8\x4f\x00\x62\xc3\xa5\xec\x37\xd7\xce\x91\x2b\xd2\xb1\x0f\x29\x35\x06\xe2\x96\xf8\x88\xf8\xc8\x32\xb8\xad\xc1\x2e\xbf\xa7\x51\xff\x43\xa9\xf9\x47\xfc\xbf\x2e\x3b\xdf\x1c\x33\xd6\xeb\x7c\xcc\x28\x80\x12\xff\x35\x6b\xd8\x39\xce\x88\x7c\x72\x83\xe6\x1b\x3c\xda\xb0\x4c\x2c\x46\xc3\x04\x0f\xb1\xd3\x10\x10\xa8\x38\x34\xee\x7c\x44\xdd\x71\xdb\x02\xc8\x13\xe0\xe8\x8a\xfc\xf2\x7a\xfa\xa4\x4f\xe9\x30\xc4\x42\x73\x37\xbe\x64\x08\x54\x53\xd6\xc0\x41\x90\x68\xb3\x5c\xfa\xb6\x56\x93\x50\xcd\x49\x4a\xfa\xe0\x57\xfb\xc7\x19\x0d\xc8\x1a\x1c\xa0\x73\x8c\x6c\xa3\x81\xe3\x8c\xfb\x81\xea\xea\xc8\xdd\x33\x67\x30\xc0\x88\xd5\xb1\x17\x48\x52\x6b\xfe\xf6\x1d\x00\x26\x76\x25\x72\x11\xdf\x22\x65\x3e\x63\xde\x7f\x5e\x6d\x38\xdd\xf2\x84\x7e\x6e\xbc\x99\x2a\xfd\x80\x54\x88\xea\xf7\x73\x33\xeb\x20\x55\x3a\xfc\x0c\xf1\x58\xf8\x5a\xbf\xf4\x47\x8c\x5b\x3a\x65\x3a\xb6\xc7\xe0\x1e\x4c\x9a\xda\x36\x5d\x4c\xe5\x32\xaf\x39\xe2\x1c\xcc\x45\x9e\xf2\x3a\xcb\x1e\x9f\x6b\x0c\xf1\xda\x95\x49\xf9\x11\x3d\x59\x5d\xd3\x00\x5b\x8d\xcc\x8d\x1b\x8d\x2b\x4b\xe3\xdf\x2e\xd6\x66\xef\xcd\x32\xc4\x01\x50\x95\x08\xc2\xb9\x6a\x7c\x6b\x6b\xf4\x5c\x16\x43\x10\xda\xbf\x5e\x6b\xac\x64\x94\x0a\x60\x34\xfa\x9d\xfe\x60\x51\xe0\x04\xa2\x50\x7d\x66\x7f\xfa\x57\xdd\x85\xba\x7d\x92\xe2\xb5\xed\x7a\x57\x14\xe7\x0b\xba\x51\x90\xd2\x91\xca\x5d\xb1\x5f\xdc\x9c\x65\x37\x2c\x52\x35\xd6\x84\xab\x4c\x63\x46\x97\xa1\xb2\x52\xe3\xff\xdb\xe9\xe1\x20\xe2\x23\x56\x85\x7e\x6b\xd9\xdd\x86\xc4\x12\x77\x77\xe5\x83\x52\x41\xc5\xf8\xd0\x20\x63\xb5\x8d\xbc\xb2\xfc\xb3\x4c\xef\x6d\x63\x8c\x23\x82\x02\x0c\xb6\x25\xfc\x28\x44\xe4\x98\x51\x1a\x7b\x65\x86\x91\x7c\x53\xc3\x17\x68\x5d\x7d\xbb\xad\x50\x8c\x7e\x3b\xfd\x52\x33\x96\x70\x0d\x67\xe2\x68\x75\x9a\x27\xdf\x1e\x7a\x8e\x33\x24\x9a\xc1\x3f\x1b\xb2\x25\x41\xfc\x85\x93\xd1\x58\xf4\xcb\xc7\x75\x47\x15\xd7\x02\xf1\x57\xb4\x0d\xd1\xd0\x9a\x47\x9b\x52\x74\xa5\xf7\x52\x9d\x2d\xab\x21\x96\x7b\xa8\x68\xcb\xeb\x40\x4c\xc3\x71\x70\x55\x62\xa2\x32\x17\xcc\x1e\x00\xd2\x50\xa8\xd6\x56\xee\xdb\x80\xbf\xee\x05\x98\x05\x88\x08\x0a\x42\x7c\xec\xd7\x18\x94\x54\x86\xea\x72\x79\xf5\xaa\x21\xf8\xc4\x85\x36\x84\x81\x79\xb4\xff\xa9\x21\xe6\x83\x0a\x45\x4d\x99\x59\xbc\x49\x3b\x95\x74\xf3\xdf\x61\xed\x6a\x21\x18\x57\x1d\xea\x0a\xfa\x96\xf8\x5d\x7f\xdf\x24\xba\xe8\x1b\xe2\x36\xb6\x75\x15\xf0\xd3\xe7\x0c\xf4\x9c\xeb\x2a\x76\x32\x40\xa2\xce\x3e\x69\x88\xd8\xe0\x04\xeb\xcb\xd3\xe2\x0d\x5b\xc5\x74\xf1\x36\x0b\x39\x38\x10\x30\x56\x75\x12\x5f\xea\xdd\xa2\x16\xe5\xe3\xf8\xe9\x6a\x6b\xe4\xdc\xc3\xd3\x81\xe8\x0c\x55\xc9\xe4\xfd\x15\x50\x85\xc8\xe3\xa4\x7c\xfe\x3a\xc2\x6d\xba\x63\xa3\x25\x1f\xb3\x86\x02\xa8\xf4\x64\xef\x7c\x14\xec\x57\x85\x4e\xb6\x18\x04\x7c\xe1\xa4\x91\xcd\x94\x08\xaa\x00\x8e\x76\x8e\x35\x6d\x34\xe3\x1e\x94\x34\xc4\x75\x8b\x7e\xd2\x25\x02\x55\x13\xe3\x1a\x96\x40\x95\x99\x06\x29\xac\xce\x71\x0d\x12\x07\x31\xa6\x03\x34\x48\x72\xd7\xd4\x93\x29\xee\xd2\x5e\xf6\x9d\xfc\xf3\x3e\xb4\x05\x10\x87\x29\x66\x71\xf0\x8e\x4a\x7d\x2e\x04\xaa\x4c\x5c\x43\xa1\x6e\x14\x1e\x92\x73\xc2\x07\xc3\x99\xa3\x0c\x08\xba\x61\x24\x6d\x84\x16\x0f\x4a\xa6\x09\x90\x3f\x38\x6e\xfd\x20\xf0\x1b\x1b\x09\x19\x3b\xf7\x8d\x1d\xe6\xa8\x57\x31\x93\x78\xf9\xf6\x5c\x1d\x8a\x6a\x25\x6a\xa9\xab\xb5\x19\x71\x08\xe9\x99\xb9\x45\xda\x77\x94\xf3\x25\x93\x4d\xc3\x07\x8e\x88\x9a\xb4\x4a\x05\x27\x3a\xf3\x72\x25\x69\xcb\x1d\x6a\xc9\xb6\xbc\x78\xb4\x95\xae\x84\x39\xa8\x4f\x76\x45\x1f\xea\x9b\x6e\xaf\x91\x53\xe2\x9c\xe9\xb4\x9f\x4a\xc7\xf3\x1a\xa8\x1a\x42\x4c\xd4\x98\x97\x4d\x83\x3b\xde\x74\x95\x43\x57\x86\xc8\xaf\x3f\x0c\x7d\xfc\x1a\xca\xe7\x3b\x77\xd7\x21\xc3\x01\x51\x2e\x6f\x5d\xec\x71\x9d\xf7\x69\x87\x93\x16\xc4\xa6\xf0\x26\x0c\x28\x9b\x92\xf3\x2e\x92\x22\x3a\x0f\x3e\x6d\xce\x45\x2a\x09\x9a\x28\xdb\x39\xc9\x1c\x0f\xca\xd1\xad\x8c\x9b\x77\x8c\x37\xdd\xf6\x9d\xd0\x2d\x85\xbe\x01\x02\x7b\x73\x83\xfe\x3e\x28\xe0\x08\x0f\xfe\xf4\xbf\xb1\x52\xfa\x54\x60\xc4\x49\x45\x77\x79\xca\x26\x90\x38\x5c\x65\x87\xf7\x0d\x9f\x9b\x28\x86\x33\x73\x31\xab\x61\x07\x2b\x9d\x8a\x5c\xf7\x33\xe2\x6f\x37\x48\xfc\x89\xd4\x14\x68\xf9\x79\xfa\x86\x0a\xe8\xac\x7e\x23\xab\xba\xcc\x64\x4d\x99\x23\x5b\x84\x6f\x9e\xd1\x26\x10\x75\x5a\xa7\x0d\xbf\x66\x93\x9a\xad\xb7\x75\x6f\xd4\xa5\x99\x70\xfc\xa6\x7d\x2c\xd4\xb2\x0f\x2f\x19\x6c\x94\xd5\x5e\x28\x42\xe6\x56\x61\x46\x5e\xb8\x1e\x31\x52\x2a\xe1\xf4\xc6\xeb\x8b\x47\xb4\x0d\x04\xe1\xd3\xdb\x7f\x1a\x25\xe8\x4b\xcb\x6f\x5a\xc2\x6f\x38\xee\x30\x72\x9c\x2b\x50\x9b\x62\xc2\x3c\xe1\xd4\xc5\x66\xa8\xae\x72\x3d\x31\xd1\x2c\x64\xef\x1f\x2f\xcb\x73\x46\xeb\x54\x58\x2b\x64\xbe\x3b\x5b\xfc\x06\x26\x04\x13\xf2\x97\xdf\x69\xe4\x3c\x16\xd7\x5a\x42\x06\x31\xdc\xd6\x02\xb6\xf3\xf8\xf4\x55\xd4\x20\x3f\x1e\x09\x0a\x3c\xca\x5c\x24\xf2\xce\xd7\xee\xd6\xf2\xc8\x95\x0a\x78\xee\x15\x43\xd9\xb0\x02\xc8\x1e\x1f\x5e\x2a\xce\x00\x2f\x03\x0a\xc5\x68\x92\xdd\x1f\x94\x95\x1e\xdf\x89\x47\x9b\x87\x40\x28\xb2\x53\xf3\x13\x61\xbc\x27\xcc\x19\x2b\x66\xc2\xcf\x36\xfa\xdc\x6e\x51\xd6\x94\x90\xb2\xfe\xcf\xfd\xbc\x77\xfa\xb8\x36\x43\x1f\x71\x1b\xd2\xf4\x7c\x7e\x7f\x2f\x10\x40\x5d\xb4\x46\x94\x58\xab\x0c\x17\xec\x52\xe8\xd4\x12\xe5\xfc\xdc\x2d\x4b\x47\x68\x91\x89\x96\x91\x7f\xae\x7b\x87\xe1\x72\x84\xcb\x25\x13\xa1\x99\xfb\xd3\xb3\xc9\xa9\xb0\x1c\x54\x28\x46\xc5\x0d\x7a\xd6\x56\x0d\x49\x19\x97\xb8\xa8\x51\xb1\x27\xdb\xfe\x6a\xbf\x74\xfe\x2f\x14\x23\xb4\x11\x4e\x13\xe3\x77\x52\x25\x0d\xf9\xcd\x9f\x7c\x57\x47\x50\x87\x63\xc5\x78\x11\x5c\x34\xf8\x2d\xed\x33\xa6\x4e\x9c\x36\x69\x92\x5a\xfa\x54\x56\x99\x5c\x1d\x3e\x85\xe4\x60\x26\xc1\xdc\xcc\x9d\x6f\x24\xaf\xd0\xab\x20\xc2\x34\x20\xf7\x9d\x51\x66\xdf\x59\x26\xba\x44\xf8\xeb\xfd\xfa\x49\xb3\x50\xce\xd2\xb3\xee\xfa\xe4\x59\x06\xdc\x65\x3e\xd5\x92\x74\xae\x34\xdb\xd2\x3a\x91\x70\xb1\xfa\x1b\x7d\xe4\x2b\xb7\x6a\x71\x3c\xdc\xfd\x48\xba\x2a\xae\xa3\x1a\xf1\x03\xa4\xad\x67\x33\xff\x31\xce\xd4\xa1\xc2\x56\x28\xf4\x02\x45\x89\x9e\x5b\x35\xe0\x52\xc0\xfb\x63\x8c\x70\x4f\x82\xf4\x81\x69\xbc\x28\x47\x26\x9e\x47\x1b\x28\xe0\x83\xa2\xfc\x87\xd7\xb5\x98\xe2\x62\xaf\x2c\x7f\x6c\xfe\x13\xef\x69\xa0\x04\xdf\x11\x26\x72\x85\xa2\x6d\xfe\x8f\x71\x12\xe2\x15\x47\x6a\x92\xb8\xdf\xdf\x76\xdc\x44\x40\x57\x91\x47\xe4\x02\x92\x8f\xbd\x7e\xb4\x56\xb7\x65\x77\x11\xd6\x8d\x02\xd5\xdd\xbc\xb7\x7a\x00\x00\x59\x54\xa4\xe7\x5f\xb6\x6a\xec\x94\x02\xda\xa5\x36\x59\xb9\xc1\xbb\x81\x66\x5a\x37\x4e\x64\x81\xaf\x35\x17\x15\x52\xb5\x57\xf9\x91\xcd\x3a\x2c\x5d\xf3\x49\x03\xb3\xaa\x28\x4b\x73\xe3\x1e\x9a\x68\x04\x2d\xb9\x9e\x20\xb2\x9d\x36\x79\x7e\x17\x3e\x99\xe6\xf9\x79\x54\x42\x1d\xcc\xe7\xff\xf2\x55\xc9\x9e\x9e\xd1\x56\x14\xd3\xe3\x81\x48\x14\xf3\x84\xdb\xb2\x2c\xa1\x6f\x78\x67\x84\x71\x9f\x85\x95\xb0\x54\x82\x5d\xb5\x68\x30\xc0\x81\x04\xd8\x0a\x84\x33\x6e\x74\x3e\x90\x6e\x6f\x62\xa7\x82\x18\x47\xb3\xdf\x7a\xa7\x78\x61\x01\x76\x70\xdd\xa6\x12\xf0\x9d\xdd\xfc\xa6\x21\xf0\x44\x43\xa9\x2d\x67\x82\xa3\xc6\x36\xf4\x41\x93\x13\xd1\x96\x27\xd2\x61\x30\x1f\x13\x83\x0a\x13\x21\xf8\xc4\xd3\x60\xcd\x4b\x6a\x36\xa3\x8d\x42\x31\x7a\x62\x85\x08\x89\x02\xe3\x1e\x07\xd6\xef\xec\x93\x4e\xe4\x0e\x71\x5d\x31\x45\xdc\x3b\x6b\x90\xb6\xa7\x73\xa1\x50\xb5\x67\xca\x6b\x70\x78\xb1\x38\x76\xed\xfb\x2f\x02\xcc\x03\x01\x0d\xf8\x4a\x5f\x85\x27\xe6\xbb\x54\xb9\x39\x79\xc5\x18\x72\x71\x93\x6a\x39\x56\xfa\x99\x61\x46\xcd\x6f\x86\x4b\xbc\xc4\xe1\x78\xf2\x79\x10\x39\xc1\xcf\xbe\x7c\xd0\x97\x1d\x15\x7c\xae\x05\xfc\x20\x82\x8f\xed\x77\x42\xe7\x54\x4e\x88\xf8\x62\x1b\xd0\x1e\x21\xae\x36\xd9\x8d\xbe\x6b\x70\x2b\xad\x38\xd6\xa9\x71\x4d\xee\xa9\xa9\xfd\x00\x5a\x2a\x8e\x04\xc5\xff\xd9\x61\x94\x14\x0e\xaa\x86\x42\x06\x2f\xf7\xbe\x41\x89\x68\x6f\x9f\xa6\x0a\xab\xef\x6e\x01\xe4\x13\x26\x8b\x89\xef\x69\x52\x85\x90\x1e\x75\x96\xe9\x20\x51\x65\xa8\x2c\x10\x9b\x3a\xaf\x92\x9d\x7d\x64\x8d\x28\xba\xc5\xec\xf6\x85\xe7\x64\x1e\xf3\xa4\xfd\x5f\x6b\x00\x66\x0b\x6a\xde\xe6\xb6\xaa\x59\x1e\xf3\x43\xce\x40\x8f\x7e\xc7\x5a\xb4\x14\x38\x06\x9b\xb7\xb0\xe1\x90\x2b\x8d\xa2\xb0\x8c\x5d\x4f\xb4\x33\xe6\xd5\x3b\xb0\x0f\xa8\x9e\x03\x51\xa6\xec\xff\x39\x6a\xaa\xff\xd8\x88\x05\xd4\x70\xab\xd9\xb3\xac\x45\xa1\xd2\x91\x56\x75\xbf\x3c\xa1\xf7\x35\x98\xdb\x4a\x63\x45\xb9\xd9\x7b\x42\xcb\x70\xfd\xff\x94\xbd\x7d\xbc\x55\x55\x9d\x3f\xee\x79\x88\x10\x11\x79\xb8\xe2\x15\x11\x11\x11\x08\x38\x37\xb8\x5e\xe0\x42\x68\x82\x48\x80\xc8\x41\xbc\x11\x11\x12\xeb\xec\xbd\xce\xd9\xeb\x9e\x7d\xf6\xda\xae\xbd\xf7\xb9\xf7\x12\x11\xf9\x25\x33\x43\xf2\xeb\x38\x64\x66\x66\x8c\x19\x99\x91\x19\x99\x5f\x73\x88\xcc\x1c\x72\x1c\x32\x33\x22\x33\x25\xc7\x31\x35\x73\x1c\x32\xc7\x8c\xbb\xe7\xf7\xda\x9f\xb5\xd6\x5e\x6b\xaf\x73\xfb\xbd\x5e\xf3\x57\xaf\xbc\x9c\x73\xf6\xc3\x5a\x9f\xf5\x79\x78\x3f\x58\x11\x6b\xb6\x3a\x1b\xe4\xc6\x0c\xd3\x32\x52\xbb\x41\xb8\x98\x5c\x7c\xef\x1e\xbe\x62\xbb\xba\x34\xdd\x87\xc1\xc2\x9f\x1f\x1e\x0a\x43\xcd\x37\xb1\xd2\xe3\x5e\x32\xd1\xc4\x28\x31\x4b\x62\x15\x63\xbc\x4d\x6d\x48\x27\x6a\x54\x80\x33\x17\xff\xec\xae\x2c\x39\xe9\x7d\xa2\xe5\xb8\x76\x85\x3a\xde\x69\x1f\x98\x83\xc6\x57\xcc\xc8\x86\x7e\xe4\xfb\x94\x78\xdc\x8a\x92\x0f\x05\xcf\xdc\xaa\x6a\x37\x52\x2d\x95\xe3\x11\x73\x0c\x50\xb9\x1b\x50\xfe\xf4\xb6\xaf\xd3\xe0\xef\x49\x92\xc8\xb8\x84\x5f\x72\xb7\x1f\xbf\xc7\x40\xc9\x71\x9f\x2d\xee\x7a\x26\xfb\x9e\x4f\xef\x56\xe8\x68\xd2\xf0\x5d\x90\x2f\x48\xe7\xa6\x2f\x1b\xf8\x6f\xbf\x23\xea\xf0\x5b\x33\xad\xc2\x96\x69\x46\x74\x74\x18\xf1\x86\x74\x1d\x58\xf9\x96\xc6\x39\xa4\x5e\xd4\x28\xcd\x4d\xe2\xc1\xd9\x3b\x0c\x39\x0c\x99\x57\xe6\xfe\x66\xb8\x43\x25\xef\x53\x9a\x4b\x7c\x61\xaf\x12\x18\x6a\xea\x66\x21\xbf\x5f\x23\x44\x5a\xc1\xcf\x89\xb7\xb5\x37\x9f\x68\x33\xce\x47\x9e\x24\xe7\xef\x1b\x6f\x04\x32\xca\x6c\x21\x95\x52\x88\x0d\x53\x95\x10\xd5\xb1\x97\xa2\x50\x3f\x3b\xd3\x38\x3f\x1b\xbe\x4b\x07\x52\x81\xb3\xf8\x09\x66\xf0\x24\xc2\x10\x59\x75\x98\x55\x26\x7f\xbe\xfd\xfe\xd3\x45\xde\xe0\x92\x3a\x44\xda\x3b\x0f\xa8\xf5\xf2\x41\x99\x2b\x3c\xfa\xe4\x68\x9d\x8c\x01\x0b\x8e\xac\xca\xbe\xdb\x5e\xd4\x24\x42\xbc\x3a\x2d\x74\xd6\x8f\xcc\x66\x7d\xb2\x81\xa7\x1d\x8e\x4b\x0c\x7a\x8a\x8f\x06\x52\x7a\x4a\xa4\x49\xf3\x19\xf0\x9b\x11\xd9\xdb\x9a\x3b\xa7\x34\x97\xb3\x3d\x39\xa2\xeb\xad\x5b\xcf\xd0\x1a\x28\x96\x93\x54\x1a\x0f\x18\xad\x13\xee\xb3\x29\xfb\x76\xef\xb0\x96\x3e\x65\x83\x08\x7a\x76\xbc\xe5\xdd\xf3\x5b\xfe\x18\x79\x82\x48\x1f\x48\x5f\x86\x3f\x8d\x52\x75\x1f\xe8\xc2\xb4\x34\xaa\x2e\x1d\x69\x24\x0a\xa0\x59\x20\x7d\xb6\x8b\x2b\x37\x9e\x23\x0b\xbd\x90\x0c\x81\x52\xba\xe3\xba\xec\x30\x1b\x37\x68\x2a\x7c\x9b\xff\xdd\xbd\x1a\xe4\x08\x4c\x7f\x21\x8e\x9f\xb3\x39\x4d\x68\x06\x90\xf9\x95\xf1\x2d\xb7\x2b\x42\x48\xe0\xa0\x3e\x2d\xac\xf6\x2f\xe5\x45\xde\x6a\x04\xb6\x0e\x85\xff\x12\x6a\x17\x97\x21\x1f\xcb\x9a\xa9\x7b\xa7\x28\x64\x23\xcb\xc2\x41\x90\x64\xab\xf1\x85\xa6\xe6\x66\x03\x59\x52\x61\xae\xb0\xd8\x50\x7a\x0d\x80\xce\x04\xe7\xd8\x26\x57\x63\x4c\x39\x84\x71\x00\x43\xf2\xa1\xa3\xbb\xc4\x63\x01\x2b\x5a\x33\x29\x8b\x3f\x68\x28\x51\x04\x16\x92\x2e\x53\xf9\x0f\xb7\x9f\xae\x78\xe9\x49\xf0\xb4\xf3\x6a\x79\xcf\x5d\xb8\x70\x5e\x72\x44\x1d\x7a\x6d\x9c\xfe\x10\xac\x3a\x67\x21\xe7\xf6\x9d\xd4\xc6\x04\xc8\x47\xdc\x6c\x68\x30\xf7\xe9\xdb\xb2\x2c\x1a\x4f\x05\xbc\xcd\x26\x76\x77\x6e\x97\x9c\xde\xec\xb8\xcd\x28\x5f\x10\xf1\x00\x44\x04\x61\xee\x0f\x46\x71\x23\xd4\xad\x04\x77\xc2\x59\x2f\x14\x49\xe6\x5d\x34\x27\x59\x28\xd3\xa7\x68\xee\x4d\x5a\x86\x52\x78\xda\x00\x7d\xd2\x4a\x93\xd0\x48\x0a\x35\x16\xfe\xf8\xc4\xc4\x21\xf7\x63\xea\xf4\x5e\xdc\x6a\xb4\x85\x80\xb1\xaf\xb6\x6b\xe1\xdc\x51\xe6\x4e\xe0\x6a\x90\x56\x14\xaa\x56\x68\x6e\xd5\x54\x43\xde\x48\x20\x32\x44\xcf\xe1\xe0\x5a\xd3\xd5\x30\xd9\xdb\x12\x20\x58\xfc\xc2\xf8\xb4\xe5\x50\x11\x40\xc4\xfc\xa8\x55\x66\xdd\x1f\x0a\xd5\xc8\xf8\x4f\x77\xb6\x69\x14\x74\xee\x56\x92\xbc\xd6\x6e\x43\x66\x3e\xaa\x03\xcf\x0f\x49\x2c\xe4\x9f\x0c\xc1\x65\x64\x41\xe9\xa1\xcd\xc6\x5f\x7d\xe3\x3c\xb3\x68\x75\xc9\x56\x5e\x21\x49\x68\xe9\x93\xc7\xd3\xb6\x9f\x70\xd5\xbb\x7a\xed\x60\x71\x55\x97\xd1\x55\x65\xc4\xc2\x81\x50\x12\xff\xda\xec\xb3\xd3\xc7\x67\x72\xfe\xe2\x93\x6b\x4c\x7c\x78\xb2\xb3\x00\xd5\x2b\x26\x1b\x95\x0d\xe9\x9a\x76\x48\x6f\xa9\x1c\xff\xe1\x7e\xbe\x0b\x2f\x9a\x53\xb2\x71\x8d\x81\xdd\x47\x7e\xd1\x93\xaa\xf2\xc5\xad\x7c\xee\x6d\xcb\xcd\xb6\x0f\xb6\x09\xb0\xa5\x78\x7e\xfa\xe5\xe6\xd9\x5a\x85\x67\x47\x41\x08\x12\x7e\x5b\xb9\xcd\xc6\xb2\xb7\x79\x19\xc4\x30\x57\xba\xe3\x3d\xb8\x73\x1e\xd4\x3c\x92\x14\x2f\x43\xf9\x67\x56\x5b\x66\xb1\x5c\x03\x49\x2c\xbe\xab\x1f\x12\xab\x7c\xe1\x3c\x30\x66\xff\xb5\xe1\x61\x65\x39\xc8\xab\x29\xfa\x77\xf8\xae\xca\xc6\x1d\x8c\x60\xa3\x7c\xe7\x90\xa9\xcd\xe6\xa1\x9a\xe0\x6f\xe7\xfe\x75\xb6\x3a\x4e\x22\xcf\x77\x31\x0a\x78\xbb\x29\xff\x99\xa6\x71\x8a\x5e\x1b\x11\x97\x54\x18\x01\xe3\xa4\x72\xfc\xf3\x07\xc7\x69\x4f\xc3\xa3\x16\x57\x2e\xda\x38\x3a\x8d\xad\xd8\x6a\x05\x75\xaf\x65\xad\x74\x72\xc4\x2c\x41\x7a\xcd\x97\x0c\xd7\x63\x3f\xab\x17\x5f\xb4\xa7\xcd\x18\xe2\x44\x0a\x31\xe6\x82\xdf\xd9\xf7\x69\x6d\x35\x74\xe7\x3c\x9b\x99\x96\x77\x9b\x56\x69\x75\x68\xa4\xeb\x9a\x8e\x68\x37\xc8\x39\xa8\xe1\x47\x12\x47\xfa\xc3\xc5\x06\x20\x20\xf0\x9d\x81\x7e\x4e\x29\x83\xfe\xe4\xf6\x91\x2a\x72\xe3\x7e\x07\x01\xb1\x0a\x3a\xa8\xdf\x3d\xcc\x2b\xa9\x32\xd4\x57\x5b\x95\xa2\xcd\xca\x4b\x46\xaa\x1c\x2c\xf9\x97\x73\x5e\x51\xa7\x97\x40\x67\x97\xca\xf1\x25\x07\xc7\xea\x5b\xbb\x56\xaa\x46\x20\x77\xd0\x6d\x7a\x14\x01\xe8\x67\x88\x52\x38\xff\x35\x43\xe8\x29\x5d\x72\x90\x46\x44\xb1\x86\xf6\x8f\x2a\x7d\x08\x7c\x93\x0a\x5f\x37\xc8\x42\xa8\x82\x3c\x9b\xaa\xd2\xf1\xd2\xd7\x46\x67\x26\x6f\xb0\xba\xbe\x7c\x73\xf6\x0d\x60\x2f\x84\x46\x8c\x87\x23\x59\xf5\x15\x0b\x9b\x78\xba\x95\x2a\xcc\xe7\x6b\xd7\x9b\x6b\x24\xf5\xcf\x28\x95\xe3\x1f\xdd\xa7\x31\xd7\x03\x87\xdb\x19\xff\xbc\xff\x1c\x9d\x53\x6a\x06\x90\xaf\xbd\xa8\x4e\x38\xcb\x25\x7c\xb6\xb2\xf9\xb8\x6a\xe8\x55\x28\x23\x0a\x54\x14\x2f\xb8\x4d\x6d\xa3\x7a\x04\x42\x65\x85\xfe\xd8\x80\x05\xa0\x28\xd4\xce\x91\xe2\xe5\x37\x9f\xaf\x75\x13\x85\xb4\x42\x4b\xa2\x7d\x4e\x55\x73\xf5\xa3\xc9\x37\xc7\x73\x77\x9a\x86\xd7\xa0\xc3\xca\xdf\x46\xf7\x5b\xc6\x90\xcd\xf2\x22\x37\xcc\x08\xd8\x6e\x7e\x49\xb7\x8a\x65\x0d\xbe\xeb\x2b\xdb\x34\x69\x31\xdf\xc7\x21\xd9\x2a\x9c\xa2\xaf\x3d\x64\x4c\x6c\x29\x0b\xa3\x5a\xda\x24\xe2\x9e\x52\x3b\xf5\x5c\x11\xaa\xfa\xa9\x87\x0c\x16\x8b\x13\x79\x35\x28\x3a\xe4\x41\xfb\xc1\xe7\x75\x16\x28\xef\xb6\xc1\x88\xe1\x8f\x5b\x78\x1b\xc4\xc6\x95\x50\xf0\x8e\xa6\x3f\xa8\x6b\x13\xa2\x20\x68\x20\x90\x2e\xcb\x9f\xfa\xb6\xa0\xbd\x84\x68\x80\xa7\x1c\x53\xa6\xaa\x3b\xb1\x23\xdd\xf0\xfe\x4f\xfd\xaa\xa7\x83\x5d\x1b\x73\x15\x9c\x6c\x7a\xf9\xdc\x94\xb3\x34\x14\xbf\x47\xfc\xc8\x4d\xa5\x9e\xd6\x1f\x39\x5d\x6c\x50\x89\xe3\x3b\x6d\xb6\x11\x7f\x10\xe7\xb4\xcb\xba\xac\x30\x7a\xa4\x08\xc7\x0b\x16\xc2\xfb\x99\xab\xcd\xce\x5c\x14\x79\x36\x27\x4b\xe6\x6e\xe6\x95\x6e\x1f\x09\x1d\x41\x92\x4b\x3e\xfe\x95\xd9\xfc\xe3\x2c\x22\x90\x43\xef\xe4\x60\xcb\xe4\x97\x78\xaf\x1a\xe0\x39\xff\xbe\x4d\xa5\xb4\x3e\xf2\xea\x19\xb0\xe4\xea\xbb\xcd\xca\x7e\x2b\xf2\x3c\x33\xac\xcd\x1a\xa9\xfc\x60\xe6\xcf\x4f\x7e\xfa\x63\x9a\xe6\x50\xe4\xf7\x21\xc6\x47\x9d\x77\xe7\xc7\x88\x0d\x10\xb9\xb8\x29\xff\xeb\xdb\x5d\xe9\x71\xea\x62\xd0\x0e\x9b\xaa\x5b\x4d\x27\x09\x41\x04\x05\x4f\xf5\x25\xb3\xcb\xc7\x1a\x68\x96\x9c\xa8\xe5\xfe\xfc\xa0\xd1\xd4\xc7\x16\x8a\x02\x4e\xca\x8e\x3f\x3d\xc1\xf4\xc9\xc7\x75\x01\x46\xf9\xbd\xcd\xfd\xc4\xaf\x26\x43\x34\xdf\x8e\xad\xe7\x50\x8b\x65\xd8\xab\xb9\xba\x70\x6c\x7e\xd3\x78\xfe\x78\xa3\x40\x2c\xf5\xfa\xc9\xd6\x66\x98\x00\x25\x17\xbe\x6d\xf4\xa2\x2a\xc9\x63\xb4\x65\x6f\xfe\x6f\x87\xc6\xe9\xc8\x3e\xab\x8e\x43\x88\x4d\x7f\xf4\x35\x29\x92\xa8\xa1\x0f\xc4\x0b\xd7\xcc\x48\x33\x00\xdc\xa8\x08\x16\xe2\x83\x6f\xab\x59\x94\x05\x19\xd4\x8b\x63\xd5\x08\x66\xee\xfc\x52\x48\xc1\xdb\xed\x1b\xdb\xb5\xf1\x82\x21\xc7\xfe\x1b\x2e\x0f\x5e\xfa\x88\x43\x42\x0f\x26\x74\x2a\x7f\xc0\xef\x68\x5a\xeb\x28\x68\x44\x41\x00\xbe\xc1\xb9\x67\x1e\x9b\x64\xc4\xde\x9a\x8b\x44\x87\x5c\xbc\x9e\xed\xc7\xf9\x2a\x35\x7d\xc5\xef\x1e\xa3\x35\x1b\x25\x04\xff\xaf\x9a\x43\x6f\x52\x8b\x08\xef\xa5\x7c\x73\x98\xca\x70\x6a\x68\x08\x09\xa5\xdd\x73\x14\x99\xdb\x42\x20\xdc\x94\xca\x23\xfa\x55\xc5\xe6\x09\xb1\x57\x2b\x39\x91\x4e\x6a\x3e\x76\x1c\x62\x7d\x72\xc9\x3d\x65\xd1\x7e\x1a\xbd\xc6\x4c\x67\x7c\xb5\x3f\x0f\xde\x2d\xda\xc4\xa4\x81\xc1\x48\x9c\x13\xc0\x0b\x53\xf5\xa9\x97\xf8\x6d\x6c\x10\x91\x2b\x54\x42\x1f\x78\xc6\xfd\x80\xa2\xab\x56\xc0\xa5\x7b\xdc\x9b\xda\x30\x9e\x72\xc8\x7c\x6e\xc5\xf3\xb2\xa7\xd1\xc4\x4c\xf8\xaf\xff\x60\x4f\xd6\x9b\xcb\x22\x36\x7f\x86\x87\x36\x4d\xce\x56\x49\x36\xb0\xde\xb3\xcf\x6b\x40\xb9\x79\x2c\x9c\x0d\x14\xaa\x2f\x5d\xaa\x59\xe1\x62\xb7\x5a\x62\x98\x78\x55\xca\x2c\x01\x3e\x78\xe7\x96\x33\x34\xbe\x28\x7f\x2d\x4f\x0e\xd3\xf1\x63\x15\x54\x73\x09\x0a\xc1\xd6\xef\x6f\xe3\x55\x76\x0e\x73\x53\x08\x3a\xaf\xdc\xa8\x91\x5b\xb5\x77\x90\xff\xd2\x33\x69\xd2\x8c\x7a\x5b\x12\xba\xdc\xe4\x75\xed\xda\xbd\x5a\xb4\x51\xa5\x2c\x94\x15\xca\xc4\x45\x06\x90\xda\x47\x4c\xca\x73\x4e\x14\x0c\x84\xc6\x40\x10\x62\x38\xf1\x92\x8b\xfb\xd0\xdd\xa6\x93\x13\xbe\x36\x42\xa1\xa4\x60\x9e\xc7\x6b\xb9\xd2\x15\x34\xa0\x4d\xda\x92\xf1\xcd\x3a\x60\x36\x93\x28\x94\x17\x85\xfa\xe3\x7c\x5d\x2c\xa3\xb6\x0e\x2f\x5b\xbf\x53\x9d\xf3\x7d\x0e\xb8\x86\x9c\x77\xc4\xb0\x77\x73\xa2\x3a\xf2\x86\x94\x69\x6c\x5e\x9a\xae\x10\x27\xb9\xfa\xb8\xfe\xbc\xe6\xa6\x4e\x74\x26\x70\xb1\x6a\x12\x16\x51\x23\x49\xc2\x39\x74\xef\x48\x45\x8f\xae\xae\x2b\xdd\x77\x73\x78\xca\x14\xe3\x38\x62\x16\xd8\xb0\x67\x75\x1e\x36\x85\x69\xce\x5d\x09\x6b\x2d\xd7\xf9\x89\x15\x06\x54\xbb\x8f\xf2\x6e\x42\x20\x6a\xcf\x0e\xcd\x52\x48\x96\xbf\xc0\xd8\xda\x92\x0d\x21\xc4\x15\x79\xb6\xe6\xca\xa8\x59\xa5\xd7\xb1\x67\x0b\xa3\x87\x0b\xee\x31\x1a\x87\x29\x0b\xac\xf8\x8e\x51\x61\x7a\x1e\x8d\x3c\x0b\x1a\x9c\xbc\xaf\x1f\x3c\x2f\x94\x7d\xec\x26\xf2\x42\x2e\x1f\xf4\xbd\xad\x67\x6a\x5b\x2f\x0a\x80\xb3\x06\x47\xd5\x29\xfb\xda\x35\x85\x25\x2c\xbc\xf0\x7c\xb0\x7e\x28\xec\x58\x7b\x96\x4e\xfb\xcf\xe0\xf2\xbe\xfc\x12\x3f\xfc\x57\x32\x74\x2d\x81\x2d\xb3\x64\xd8\x44\x19\xdd\x70\x13\x83\xc5\xbe\x8b\xfa\x54\xe7\xee\x92\x63\x26\xe9\x14\xd9\xee\x00\x1f\x87\xff\xe3\xe6\x0e\x63\xdd\x8a\xb2\x1b\x09\xd3\xbe\x56\xc7\xc2\xb1\x9b\x0c\x91\x56\x70\x44\xe0\xc8\xca\x1b\xa4\x76\x59\x10\xb9\x49\xf5\x0d\x51\x6c\xc4\x41\x4d\x9c\x8f\xca\x20\x7e\xd7\x11\xfe\xb8\xc0\x4f\x91\x06\xa0\x5c\x52\xec\x59\x61\x4c\x71\x49\x90\x4a\xa4\x3e\x75\xa7\x31\x76\xe6\x94\x61\x21\xc8\x0a\xa5\xfa\xf0\x69\x67\x67\x38\xf2\x9e\xbc\x91\x8e\x52\x39\x9e\xa9\x79\x35\x59\x84\x59\x2e\xcc\xed\xbe\x3a\xfc\x4c\x63\xdf\xf0\x2e\x62\xfc\x87\x1b\x35\x40\x77\x67\x57\x72\x75\xd7\xbf\x3b\xc3\x28\x40\x08\x05\x33\xbb\xa1\x1e\x53\x7d\x59\x76\x0f\x54\x23\x36\xd0\xda\xeb\x2e\x92\xc7\xd3\xa8\xd9\x79\x11\xbc\xfc\x2d\xcf\xa4\xdb\x73\x2b\xa7\xe3\x9d\xb9\x57\xf3\x74\x62\xd4\xe3\x2a\x2f\xcb\x9e\x51\x47\xba\x8d\x9b\xc8\x8d\x94\x6e\xc4\x79\xaf\x18\x42\x7f\xb8\x49\x82\x94\xc8\x36\x63\xbb\x16\x3e\xa2\x00\x60\xdd\xff\x62\x80\x31\x92\x8a\x5a\x4e\x10\x96\xdd\x68\xd0\x3d\xa0\xf1\x2c\xfc\x29\x7f\x39\xea\xac\x4c\x8a\x85\x1b\x3e\x65\x08\xd2\xc9\xbc\x6d\x4a\x9e\xe0\x24\xd1\x97\x5d\xb4\xf3\x0f\x4c\xd0\xf2\x6e\xf0\x7f\xd0\xf5\x52\xd6\xdc\xc2\x93\xa9\x8f\x7c\xf8\xea\x25\x2d\xb1\xe1\x5f\xde\x19\x93\x0d\xa8\xd0\xc3\x9c\x75\xa9\xee\x3a\x90\x3e\x8d\xf3\x27\x1b\x03\x7f\xcc\xa0\xe0\x48\x09\x2d\x85\x7b\x8f\x9e\xa3\x45\xc0\x40\x9b\x7d\x70\x61\xe2\xf9\x5b\xce\xd4\x6f\xd2\x4a\x43\x5d\xfe\xde\x23\x6d\x62\xc9\xdb\xd8\xe7\x26\x15\x7c\x40\x70\xe7\x31\x75\x2d\x9e\xca\x5d\x26\x3f\x6c\x22\x1f\x40\x6a\x4c\xf4\x11\x3e\x71\x87\xfa\x10\xf6\x9a\x44\xd4\xde\xb5\x3b\xda\xb5\x83\xb4\x41\xc0\x7a\x9b\x88\x3e\xe5\x7f\x6c\xd6\xea\x28\x5c\xe9\x58\x08\x79\xd9\x5f\x26\x0c\x61\xcc\x68\x85\xca\xab\xef\xf8\x79\xaa\x6a\xc7\xd8\x72\x50\xa3\xa5\xe9\x71\x95\xc2\x77\x22\x37\x2a\x95\xe3\x51\x79\x65\x2a\x89\x3a\x1a\x80\x50\xda\x35\x24\xa3\x9d\x77\x81\xde\x77\xa7\x28\x8a\x1a\x92\x9c\xbc\x78\xec\x24\x1d\x6d\x40\x59\xeb\xaf\xae\x5a\x76\x4e\xd6\xbe\x68\x96\x0a\x7f\xa5\x72\x3c\xa6\x93\xe3\xbe\x3e\x1a\xd5\x68\xe0\xa2\xa6\x7c\xc9\x1f\x9a\x2a\xf8\xb8\x75\x91\xe0\x5d\xb6\x48\xb9\x2e\x02\x61\x48\x66\x06\xdb\xbb\x0d\x2f\xa0\xc8\x72\x1a\xc8\xd0\x45\xdb\xbf\x3e\x4d\x1f\x6c\xd6\x8a\xdc\xf9\xdc\x62\xfe\xda\x3f\x82\x18\xc3\x9a\xaf\x7a\xa1\x76\x9d\x89\xc2\xf7\xec\xc8\x92\xc4\x86\xc1\x7c\x77\xd5\x60\x4c\x93\x6a\x98\x42\x08\x8b\xa7\x98\xb6\xf4\x0e\xae\x4a\x1d\xac\xc2\xcf\x0c\x01\x5c\x8b\x11\x10\xec\x16\xf1\x71\xe1\x41\xb3\x29\xcd\x00\xbb\xc5\xff\xfa\xf5\xe5\x9a\x5c\x4e\x55\x3e\xb4\xa5\x47\x05\x88\x8e\xb8\xae\xee\x0e\xf6\x99\x63\x42\x37\x16\xbb\x11\x18\x6d\xe6\x57\xbe\xad\x35\xd0\x69\xa3\x21\x80\xa1\x73\x9e\xcf\x46\xb9\x85\x0b\x3a\x16\xb6\x0e\x7c\x73\x2b\x1f\x56\x99\x9e\x8f\xc1\x10\xa6\x70\xdf\x9e\xf1\x5a\x0b\xcf\xc6\x0c\xa6\x61\x70\x62\x1c\x57\x0a\x2e\x75\xb0\xb4\x5a\x7b\x03\x7f\xdc\x57\x52\xca\x74\x16\x55\x71\xfd\x2b\xaa\x43\x42\xdc\x01\x0e\xc7\xdd\x3d\xd1\x7c\x12\x35\xb4\x95\x78\xc2\x34\x77\xf4\x01\xf5\x24\x1a\x51\x60\x41\x77\x6a\xe3\x1b\xe7\xb4\x6c\x4b\x70\xec\x13\x2f\x66\xcb\x51\x01\x5a\x70\x22\x66\x39\x35\x2a\xd0\x22\x13\x5f\x31\xdf\x36\x97\xb0\x17\x38\xa8\xe2\xae\x39\xd9\x89\x67\x52\x68\x0c\xd5\xf2\xdb\x3d\xfb\x4c\xa3\x1e\x15\xe7\xf3\x4d\xc3\xd3\xa4\xd7\x91\x78\x9f\x78\x59\x2c\x20\xd4\x3e\x09\x2c\xea\x23\x97\xe8\x7e\x53\xb9\x9f\x28\x9f\x3d\x16\x35\x92\x43\x7e\x55\xfa\x38\x2d\x48\xf8\xbe\x74\xa3\xc9\x71\x73\x23\x8d\x15\xf4\x98\xe6\x1d\xe4\x33\x0a\x00\x97\xc1\x22\xf1\xf8\x3b\x58\x8e\x58\x1d\x69\x5a\xd5\x27\x8d\xde\x7b\x1d\x42\xb2\x56\xaf\xe5\x7f\xd2\x66\x8c\x10\x08\xc3\xe0\x50\x00\x3d\x7f\x94\x9f\x68\xe4\x13\x1e\xb1\x1c\xae\x92\x06\x1f\x7f\xe1\xce\xbf\xab\x0f\x07\xa9\xd9\xb2\xeb\x86\xf0\x04\x24\x95\x48\xd3\x61\x39\xf5\x61\xe1\xa5\x55\x63\x98\x47\x87\x29\x6f\x99\x8e\x09\x98\x0f\x70\x0b\x1b\x27\x18\x7b\x90\x61\x60\xe2\x43\x86\xf3\xad\x93\x86\xc8\x29\x0d\x1d\x02\xfd\xa4\x24\x7a\xeb\x3e\x07\x18\x05\x1c\x01\x9e\x9b\xa8\xb5\x30\x82\x30\xb2\x09\xb4\x20\x56\xdf\xcf\x9b\x4b\xeb\xae\xec\xec\xe8\x02\x19\xed\xdc\xab\x2f\x1a\x08\x63\xd2\x24\xae\xa0\x4d\x26\x1f\x39\xad\xdd\x68\x0c\x6f\xc5\xac\x82\x48\xaf\x06\x5d\xcb\x7f\xe0\x21\x1d\x8c\x82\x78\x3f\xe1\xac\x43\x9a\x59\x2d\xb6\x90\x2f\x26\x8a\x85\x07\xee\x37\x7a\x6a\x0e\x0d\xa5\xb2\x90\x18\x5a\xe7\xd6\xef\x35\xe4\x63\x90\x17\x11\x41\xe4\x94\x21\xb5\xfd\xc0\x10\x9a\x0b\x7c\xc4\xf1\x5a\x3e\x5d\x7c\x4d\x4e\x6f\xb9\x30\x3c\x4b\xdb\x80\x96\x93\x44\x19\xd1\x34\x2b\x7c\x71\x33\x9f\x1b\xf8\x91\x07\xae\x51\x57\x75\x99\xd2\xa6\x16\x80\xc3\xf8\x9c\x36\x7e\xf1\xe1\xec\xef\xf6\x46\xae\xb0\x18\xcb\x6f\xbf\xc7\x14\x7f\xf6\xa8\x70\x4b\xcc\x2f\xde\xa4\x99\x1f\xba\xd8\xae\x71\xae\xe6\x86\xde\xb1\x9a\x7c\x5b\x18\x0a\xca\xe2\xa8\x9d\x7c\xef\x5f\xb4\x40\xb7\xfd\xf8\xe9\xf5\x2d\x56\xd7\x04\xb4\x98\xd3\x92\xe1\xb4\x8a\xa6\xf1\xea\xa0\x90\x92\x52\x39\x1e\x28\x8e\x49\xfe\xf5\xaa\x55\x19\x90\xc8\xa5\x1b\x15\xf4\x60\xba\x86\xae\x2a\x3c\x32\x79\xa2\x3c\x08\xb3\x31\x43\xe6\x13\x5f\x7d\x43\x13\x32\x96\x82\xa8\xfb\xd5\x1a\x70\x49\xd3\x23\x00\xb9\xe4\xa8\xcd\xd2\x5a\x67\x20\x20\x56\xb2\xaa\x5a\x2a\xf8\x9f\x8d\x3f\xc7\xcc\x93\x40\x96\x95\xe7\x8d\xf1\xcd\x71\x7a\xa0\x7a\x48\xd7\x6b\x29\x49\x39\x38\x17\x85\x54\x5b\x15\x77\xaf\x53\x51\xbf\x02\x80\xb8\xf8\x0b\x3d\xbc\xed\xb0\x24\x0c\x29\xf3\xf0\x40\xa9\x1c\x6f\xe9\x7e\x9f\x91\xa9\xf8\x98\x09\xce\x6d\x2b\x74\xe8\x8b\x9d\x9a\x72\x2b\x57\xd0\x2b\x95\xe3\x5f\x3c\xad\x92\xf5\x05\xc0\xbe\xcc\x1d\x3d\x45\xf9\x8d\x45\xfd\x00\x4f\x58\x9a\x49\xe2\x04\xa5\xb9\x54\x8e\xa7\xdd\x37\x56\x6f\xea\x92\x06\x6c\xd0\xab\xf7\x18\x2a\x84\x94\x85\x2c\x59\xa7\x72\x7e\x7a\xf1\x91\x94\x50\x10\x62\x96\xb1\x66\x9d\x7a\x43\x9b\xb1\xf8\xfa\x38\x20\x6e\xc4\x48\x73\x55\xba\xa9\xf7\xd5\xab\x06\xc2\x46\xf6\xef\x32\x84\xad\x3f\x7a\x8a\xc5\xd7\x20\x9c\x28\x04\xc4\x5b\xc1\x52\x28\x6a\x00\xc5\x24\xcf\x25\xb6\x68\x51\x14\x7e\xc3\x99\xb0\xa5\xf5\xd4\x75\x71\x05\xe1\xba\xf6\xad\x13\x2e\xe1\xaf\xa5\x4a\x6c\xec\x8a\xd1\xf8\xc7\x6e\x6b\xeb\x4b\x3b\x37\x42\xa1\x1a\x52\x98\x53\x46\x18\x7a\x4e\x88\x34\xc5\x90\xbe\xb8\x6a\xa3\x6a\xf9\x54\x88\xeb\x82\x39\xb0\xb6\x9e\x2f\xbe\x43\x93\xdd\x4c\x02\x2b\x58\x63\xcc\xba\x61\x48\xe4\x4b\x6a\xcf\x9d\xfb\xe9\x2d\x63\x32\x23\x4c\x6e\xee\xf7\xca\x76\x1e\x42\x05\x3e\x19\xb0\xc9\x1b\xb3\x67\x01\x6a\x44\x01\x2e\x55\x68\x64\x39\x98\x8b\x6c\x14\x9e\xd0\x66\x8d\x73\xe6\xf3\x8f\x4d\x5f\xce\xa5\x66\xe6\x75\xc2\x71\xd1\x3e\xc3\x9c\x34\x81\x5c\x98\xb8\x98\x68\xad\x02\x92\xd5\x92\x7b\x00\x5c\xb5\x2d\xe9\xcf\xc9\x6f\xfc\xee\x79\x23\x52\xfb\x3e\xa3\xfd\xa4\xc1\xab\x6a\x0e\x37\xaa\x3c\x6f\xaa\xae\x02\xe8\x45\xb4\xf1\xce\x76\xd3\xde\x48\xd4\xda\x9c\x2c\x7c\xe9\x6d\x63\x90\x57\x65\xc4\x42\xdc\x21\x14\x32\x3b\x3a\xed\x6c\xed\x22\x23\x97\x58\x8e\xae\x65\xfa\xd8\x59\x66\x25\xeb\x85\xdc\xe0\xbf\xf0\x95\x5b\x27\x68\x87\x85\x50\x15\x55\x19\xd7\xa8\x38\xcd\x2e\xea\xe0\x2b\x95\xfb\xd5\x66\x8d\xfb\x9e\xfc\xf3\x00\x74\xe9\xe2\x9b\xab\xea\x12\x1c\xc4\x84\x4b\x99\x5c\x09\x4f\xbe\xa4\xa9\x76\x13\xa1\x33\xbf\x6b\x5d\x4b\x50\xc5\x02\xcc\xc6\x81\x39\xb9\x67\x66\x48\x77\xdc\x06\xf5\x48\x20\xad\xa1\xca\x8f\x19\xaa\x0b\xaa\xfa\x4f\xc1\xf8\xa3\x0d\xe2\x97\xf4\xb4\x21\x5b\x55\xea\xb3\x2b\xcc\x1e\x28\xd7\x46\x52\x3c\xa8\x70\xfb\xb3\x17\x1a\x69\x06\xf3\x3b\x86\x1c\x54\xbe\xde\xc1\x77\x53\x92\x80\x0b\xa8\x7d\xee\xf3\xa3\x27\x98\x07\x19\xb8\xac\xf0\x73\x6c\x9b\x6d\x40\x46\x00\x57\x2c\x47\x74\x8b\x1e\x1b\xa7\x9d\xe9\x2c\xaa\xd5\x38\x0b\x70\xc4\xc3\x26\x1f\x43\x48\x61\x89\x03\x68\xde\x70\x75\xec\xe3\xd0\x21\xd4\xe7\xea\x91\xb9\xf7\x77\xe8\xa6\x1e\x60\x47\x70\xd3\xe1\x94\x70\x51\x83\x05\xd8\x76\x5f\x36\x41\x62\x48\x48\x20\x14\x3f\xba\xd7\x54\x6e\x0a\x93\x80\x8d\xfb\x52\x22\xca\x03\xdb\x8c\xb7\x81\x6a\x18\x10\xf6\xda\xb4\xe8\xcd\x7d\x2d\x2e\x6f\x9c\xd7\x0b\xcd\xb4\x0b\x26\xab\x4b\xaf\xa2\x06\x71\x39\x91\x27\xfe\xd3\xd3\x86\x48\x44\xf2\xcb\x96\xf4\x94\x9b\xf2\xf8\x18\xa5\x3c\x2c\x2d\xf1\x5e\xdc\x6e\x6c\x15\xdb\x26\x81\x3e\x34\xec\xb8\xf7\x2c\xe3\x7e\x7c\x8e\x80\x29\x0f\xe6\x3a\xa6\xa9\x31\x08\x82\x17\xd9\xd3\x2e\x10\xc5\x88\x25\x89\x80\x3a\xed\x4e\xdd\xac\x21\xba\x4c\x93\x91\x43\xe3\xc4\x7e\x6a\x50\x16\xe0\x6a\xc4\xbd\x9b\x0a\xdb\xdf\x68\x49\x5d\x93\x17\xcc\x65\xbe\xa0\x0d\xf5\x2b\x23\xe1\xf4\x5d\xe4\x09\x61\xf7\x78\xec\x88\xf1\xea\x70\x0a\xf4\xfe\x66\x71\x9c\xad\x2a\xf5\x4e\x6e\x7d\xf4\x8d\x5e\xa3\xc6\x20\xa2\x36\xcc\x75\x3f\x9d\x22\xb2\x03\x62\x63\x21\xcd\x94\xfb\xfa\x73\x1a\x1a\x99\x52\x6e\x17\xfa\xb5\xbb\x4d\x09\x6a\xd4\xe4\x62\x52\x71\xfd\x10\x0f\xc7\xa9\x0d\x6a\xfc\xbd\x4d\xba\x8f\x9a\xe5\xf0\x21\x6a\x31\x9a\x69\xd4\x03\x94\x86\xa8\x26\xe3\x6b\xfe\xf9\xbd\x2a\x40\x33\x02\xc5\x62\xee\xa9\x7d\xe3\x74\x85\x1f\x1f\x87\x00\x8e\xce\xcf\x7c\x51\x1d\x77\x21\x76\x31\xcf\x1b\x4a\xe5\xb8\x8d\x69\x60\x6e\x8c\x98\xb0\x48\x4c\x42\xe3\x45\x93\x4c\x2a\x32\x09\xa9\xa8\x37\x92\xbf\x8f\x39\xa6\x3e\x0a\x65\x60\x48\x84\xd7\x56\xee\x82\xa7\x34\x78\x19\x0e\x43\x31\xa8\xc9\xbd\x3a\x4c\x35\x6c\x43\xc0\x03\xb8\xc4\xf7\xf9\x58\xaa\x67\x78\x9b\xb9\xb7\x79\x2d\x31\xe5\x8d\xa9\x2d\xe9\x3c\xe1\xd7\x91\x41\x01\x3c\xf7\x86\x9a\xe8\x40\x7e\xf7\xb7\x97\x4d\xa2\x05\x1f\x91\xcd\x96\xc1\xff\x63\x9b\x87\xa0\x2a\x2a\x34\x54\x7c\x68\x52\x36\xca\x2d\xe8\x58\x28\x64\x29\x0b\xff\xc2\x7b\x65\xa5\x75\xb8\x41\xbc\x1a\x17\xa6\xcc\x76\x2c\x3f\xff\x76\x76\x45\xba\x10\xe3\x44\x6b\xf1\x63\x77\xf2\x21\x67\x8b\x90\x7c\x6e\xf6\x6d\x5a\x17\x18\x86\x13\x30\x85\xeb\x34\x30\x13\x42\xb8\x5b\x56\x8e\xef\x1a\x0a\xa0\xe0\x27\x0e\x87\xff\xf9\x86\x08\x74\x67\x57\xc7\x3c\x5e\x86\x9d\xdd\xa1\xbb\xd6\x46\x9c\x5b\x9f\x64\x74\x7f\x99\xa9\x12\xc0\x00\x69\xfd\x8e\xfc\xff\xdc\xad\x1b\x01\x22\x0b\x79\x2e\xcc\x9c\x7e\xbd\x91\x2f\xe9\x40\xd2\x4b\x07\xf3\xdd\xfb\x0d\x8d\x30\x6e\xec\x20\xb6\xd2\xc6\xfb\xb2\x0f\x87\xd3\x62\x05\x30\xf0\xe7\x7b\xfe\x0e\x41\x54\x97\x00\xc9\xff\xdf\xd5\x9a\xb6\x19\x0a\x49\x50\x45\x56\x48\xa1\xa1\x5a\xec\x5e\xcb\xcb\xa3\x4a\xb4\x35\x39\x0d\x8b\xb6\x90\x0b\x49\xa1\xee\xe5\xf8\xb1\x13\x3a\x66\x04\xf1\x56\x6b\xfc\xae\x7a\xf8\x9c\xa9\x5e\x2a\xc7\x3b\x62\x13\x34\xc0\x90\xeb\xe2\x54\xdd\x73\xf9\x6d\x06\xc4\x0b\x23\x2b\x09\x5d\x62\xd8\xed\x1d\x6d\x53\xa8\x34\x9d\x68\x7b\x85\x81\x72\xae\x26\xf7\x28\x8b\xe4\xdc\x0a\xa3\xd5\xe1\x33\x2a\x9a\x9f\xd7\x2e\x57\x57\xee\x13\xde\x30\xcc\x3d\x34\x36\xfb\x65\x00\x7c\x97\xe3\xee\x42\x8f\x26\x94\x54\x05\x39\x40\x0a\x3d\xd1\x6f\x6e\xd0\x4c\xef\xac\x64\xf9\xbb\x42\x93\x2d\x3e\x7b\x0e\xef\x1c\x5f\xde\x1f\x32\xdc\x10\x0a\x62\xb9\x63\x0f\xaa\x58\x97\xbc\x51\xd8\xd5\x5f\xbc\x23\xbb\x8d\x52\xe9\x66\xd9\xde\xb9\xc2\xf0\x7e\x00\xfb\x50\x6e\x59\x50\x64\xf7\x8d\xcd\x14\xe2\x22\xa8\xfe\x4f\x97\xc2\x99\xa1\x96\x21\x6a\x71\xdd\x16\xed\xc2\xa1\xef\xa8\x15\x89\x87\x84\x56\x2a\x0e\x28\x0b\x83\x6c\x01\x79\xfd\xd4\x96\x04\x62\xc8\xfa\xa9\x83\xbb\x2c\x94\x7a\x06\x50\x63\x2b\x0a\x1c\xdd\x09\x72\xca\x0d\x7c\x24\xb3\x8e\x46\x5c\x8c\x2c\x89\x25\xf8\x10\x4f\x8d\x17\x76\x75\x26\x4f\xd6\x1d\xab\x56\x52\xe4\x91\x6b\x41\x9b\x31\x57\x37\x64\x89\x70\xbf\x15\x05\xf2\x54\xbe\xe9\x81\x74\xa1\xf8\x4c\x93\x0b\xcf\x2f\x9d\xa4\xde\x9e\xf4\xe1\x4f\x16\xc2\x79\xbd\x46\x50\x40\xc0\xe7\x91\x2f\xfd\x5f\x8d\x9e\x63\xa5\xd7\x6f\x8d\x9a\x83\xf9\x3b\xe6\xa4\xe5\x59\x1d\xa1\xcc\xe9\xb8\x74\x8a\xe6\xc9\x49\xab\x61\x1f\x7f\xd4\xc0\x62\x9b\x69\x9b\x7a\x24\x52\xc7\x13\x7e\xfc\x86\xeb\xc4\x0e\xc4\x08\xfa\xdf\x17\xec\xd7\x65\x99\x91\x8b\x59\xe0\x00\x50\x2b\xfe\xee\xbe\x31\xaa\x7b\x9e\x7e\xfd\x25\xa3\xce\x33\x93\x27\xea\x62\x20\x4f\xa6\x06\x61\x3b\x46\x1b\x4f\x13\xd5\xb0\x54\x44\xcf\x5f\x54\x1c\xa7\x8d\x08\x6a\x48\x5a\x29\xdd\xbd\x42\x0b\x95\x8c\xe1\x64\x37\x57\xf8\xa9\x35\xf5\x51\x63\x99\x62\x61\x1b\x5d\x1e\xcc\xef\x3d\x45\x9b\x22\x81\xd4\x5b\x25\x12\x60\xa7\xc2\x17\x7a\xd3\x83\x87\x13\x6e\x47\xae\xd2\x19\xf7\x32\xf9\xce\xff\x62\x8a\x02\xcb\x37\x69\xd8\xea\x89\x94\xaf\xb5\x1b\xb8\x6e\x9f\xa1\x3e\x6e\x64\x50\xf8\x46\x75\xbc\x56\x26\x78\xb6\x90\x2d\x48\xbe\x78\xdf\x9d\xc6\xd0\xb5\x81\x3d\xbb\x01\x98\x3f\x41\x34\xbd\x6b\xb2\x2a\x93\xec\x16\x35\x89\xfc\x8a\xe7\xb3\x07\x9d\x4d\x71\x20\x35\xcc\x4e\x48\xe2\x76\x52\xf2\xf2\xfa\x23\xf7\xe0\xd4\xb4\xc5\x11\x32\x8d\x00\x76\xc7\x23\x9a\x1e\x04\xb1\xa8\x8b\x92\x7f\x1d\x6b\x56\x48\x36\x09\x7c\xd9\xc5\x2a\x3a\xd3\xb2\x91\x95\x13\x47\xa8\x34\xa5\xfc\x52\x8f\xfa\x5c\x72\x3a\xf9\xd2\x42\xe9\x0b\xb7\xa6\x77\x13\xa0\x16\xb6\x4b\xf1\x62\x51\xfb\x50\x3f\x24\x0d\x70\xff\x83\x30\xf5\x09\x8d\x7f\x66\xa1\xd0\x4a\x4a\xea\xdc\xaa\xe1\xfc\x64\x68\x92\x10\x35\x08\x5f\xbb\x6b\x56\xab\x82\xac\x92\xc4\xd1\x40\xeb\xe2\xe4\x9e\xba\x37\x73\x37\x60\x1a\x0f\xf5\xee\x99\x87\x8c\x81\x2f\x4a\x2b\x8c\x47\x7c\xde\x89\xbe\x1a\x79\x75\x4c\x5a\x52\x85\xf3\x86\xa7\xf7\x53\x63\x2d\xb0\x87\xe2\xe9\xd7\x99\xd4\x41\x04\x72\x9b\x20\x8f\x11\xbc\x31\xe4\xd0\x91\xa7\x19\x9f\x1f\xad\xb9\xaf\xf2\x49\x5d\xb2\xe5\xfe\xd3\x18\xfc\x27\xf9\x60\xb6\x7f\x52\xbc\xf9\x12\x7e\xa2\x37\x68\x2a\x9a\x7f\x95\x46\x67\x0d\xfa\x10\xcf\xdb\xe2\x6a\x8f\xc1\xcd\x16\xa2\xbd\xfa\xb7\x15\x7a\x35\xc5\x73\x9b\x04\x35\xe1\x43\x30\x58\xf8\xa4\x01\x08\xae\x42\x51\x4c\xa4\x14\x63\xa1\x7d\x5b\x36\x5e\x5b\x0e\x0e\x90\x8f\x93\xf3\xa3\x23\x23\xca\xd4\x3e\x85\x1b\x4c\xcf\xeb\x2a\x95\xe3\xc5\x8b\x74\x07\xc8\x86\xe5\x20\x5d\x1d\xe8\x27\xf7\x8f\x11\xf5\x92\x45\x5c\x22\x70\x4e\xb9\xde\xe3\xaa\xd6\xeb\xb8\x08\x4c\x88\x0a\x47\x9f\xe6\x41\xcc\xa1\x14\x3a\x4f\xbf\xdb\xae\xe9\x24\x72\x7c\x78\xcb\xe2\x5b\xd4\xc1\xcf\x81\xb9\x1d\x73\x93\x87\xf6\xd1\xe5\x26\xcc\x38\x20\x54\x06\xb0\x73\x5d\xb5\x94\x3c\xca\x42\x47\x60\x31\x4f\x5b\x61\x98\x3d\x00\xa4\x5b\x42\x51\x73\x5f\x98\x36\xa9\xcf\x2c\xd0\x7d\x41\xb1\x15\xf2\x7b\x93\xee\xbb\x40\x6b\x4e\xb8\x91\x15\x22\x18\xb8\x9a\xfd\x91\x2b\xee\x9a\x68\x46\x71\x17\x80\x0d\x32\x8c\xbe\xfc\x88\x6e\x5f\x13\x70\x09\x59\xc8\x39\x3f\xe4\xa4\x25\xdf\xdc\xf7\x77\x25\xff\xf6\x76\xc3\x8a\x9b\x2f\x45\x29\x18\xb8\x76\xdd\x78\x6d\x5a\x02\x71\x57\x0a\x29\x3e\x73\x97\xa6\x64\x29\x9c\x1b\x93\x1b\xbd\x5d\x13\xad\xaa\xb0\x28\x14\xe5\x45\xfe\x07\xef\x66\xd7\x5c\x83\xf6\xb9\xa8\x91\xc5\x92\x17\x46\xa8\xa8\x1c\x0d\x24\xab\xfe\xa5\x7d\x3c\xe7\x5e\x1a\x55\xab\x58\xf7\xb7\xc8\xff\xdb\x44\x13\xc7\xc8\xfb\x21\x00\x48\x3e\xb0\x43\xbd\x24\xee\x18\x06\x5e\x73\xf1\x7f\x18\x22\x53\x55\xe2\x89\x06\xf0\xfe\xc3\x66\x5b\x8c\xf0\x11\x3a\xbc\xbd\x39\xc7\xc6\xe8\x88\xd5\x88\xeb\x4b\xa0\x27\x84\x56\x28\xf6\x6a\xa1\x33\x50\x2a\xc7\x7b\xdf\xd4\xa2\x1f\x00\xf8\x5c\x4e\x04\x7b\x5f\xb7\x99\x44\xa0\x86\xef\x72\xdb\xf7\x3b\xc6\x6b\x6e\x63\x34\xec\x80\xc0\xf7\x9e\xa3\x53\xcd\x35\x88\x86\x74\x46\xb9\xed\x76\xb3\x95\x1b\x6a\x04\xf3\xf2\x60\x61\xea\x43\x72\xbc\x97\x24\xc7\x25\x0b\x81\x89\x5c\xe1\xa6\x61\x06\xff\x89\x9b\xb3\xf0\x32\xe3\xc2\x07\x0c\x15\x94\x00\x8a\xb0\x0e\x69\x5f\xf1\xc4\x33\x66\x6d\x0f\x45\x98\xc0\xd5\x40\x33\x2b\xff\x9a\xb1\x4a\x93\xf0\x17\xa9\x0e\x4e\x91\xb1\xc9\x22\xbe\x8a\x3a\xa0\xd5\x80\x6c\xb0\x10\xdd\x2c\x90\xe8\xc8\xad\x73\x9d\xd0\xdb\x87\x8d\xd5\x61\x47\x1e\x87\xf1\x15\x77\x8e\x6c\x91\x5a\x43\x5e\xcd\x4d\xb1\xff\x86\x89\x7a\x6a\x22\x1d\xe7\xd7\xb6\x8c\x96\x93\x80\x25\x62\xd9\xca\xdb\xb5\x36\x53\x3f\x66\x16\x09\x78\x71\xfe\x89\x4e\xad\xaf\x8e\xa4\x4a\x55\xee\x53\xee\x64\x2d\x78\x07\x44\xe8\xfb\x66\x4f\xee\xcf\x4e\x4e\x5d\x48\x2d\xe4\x67\x42\xe2\x7b\x9e\xd0\x74\x70\xc0\x91\x9f\xfb\x90\xee\x17\x92\x48\x97\x5f\x7d\xd9\x92\xd5\x4b\x96\x5d\x9e\xdc\x72\xff\x9b\xe7\x1a\x27\xb1\x48\x71\xd2\x5e\x15\xe9\xc9\x96\xe7\xd3\x45\x6a\x91\x5f\xbd\x46\xe5\x25\x16\xf5\x02\x7c\x6d\xc4\xe7\x05\x83\xb9\x8f\xcf\xd4\x04\x2a\x92\x15\x0c\xeb\xf7\x43\xa1\x28\x16\x35\xaf\x81\xa3\xea\xd1\x54\x30\xab\x07\x0e\xe1\x54\xbe\x7f\xdb\x2c\xae\xd5\xab\x25\x95\x09\x28\x92\x69\x93\x0d\x9f\xd1\x00\x71\x98\x4f\x73\x91\x26\x92\xec\x85\xa4\x24\xe4\x70\x0b\xb3\x7b\x8c\x7d\x8a\x05\xff\x2e\x7e\xef\x5d\xed\x7a\xb3\x44\xd2\x1b\xf9\x25\xd5\x34\xfe\x0b\xb2\x9b\x44\x62\x8e\xff\xba\xcc\xa8\x06\x49\x68\x39\xca\x8c\xbd\x70\xe4\xb6\xd1\xfa\x34\xcb\x87\x47\x5e\x58\xdb\xea\xb0\x6a\x0b\x60\xd0\x56\x43\xe9\x02\x34\xdb\x25\xd7\xaa\xf8\xc1\xd7\x0c\x09\x71\xe4\xd6\x53\xf5\x97\xdc\x01\xd5\x4a\x4b\x42\x49\xb2\xf2\x23\x5e\x41\xc5\x27\x7b\x95\xc4\xb2\x36\xf6\x8e\xef\xbf\x05\xaa\x82\xd2\x72\x61\x97\x71\x19\xd8\x65\xb4\x7a\x65\x6c\x35\x65\xda\xc5\xa9\x2d\x43\xc1\xb6\x66\x4b\xb2\x5c\xc1\xc2\x1c\xf2\x01\x85\x9c\x24\x49\x89\x18\x0f\xab\xaa\x36\x9b\x4b\x01\x87\xb9\xcd\xd8\x44\x91\xe4\xdb\xe5\xde\xb3\x5f\x6b\x3f\x44\x15\x31\x2e\x4c\x7e\xf3\xac\xe3\x67\xfa\x1c\x2b\x6c\xee\xed\xf9\xd7\x69\xd9\x7e\x10\xe2\x6b\x5d\x1e\x56\xbf\x7f\xa7\x19\xa4\x03\x47\xb4\x2c\xf7\x3c\x6c\xd2\xc1\x48\x40\x3d\x35\xcf\xbd\xe7\x59\xc3\x97\x8c\xe1\xbe\xa1\xb8\xd5\xac\x7f\xb4\x4c\x12\x5c\x52\xe3\x8d\x84\xdc\xf6\x3b\xc4\x7f\x44\x6e\xb5\x64\x03\xc7\x26\xfe\xcf\x3b\x32\x80\x9d\x9e\xf2\xac\x95\x1a\x60\x67\x30\x77\x86\xa3\xd2\x4e\x3b\x39\x1f\x75\xb3\x87\x02\x79\xcb\x30\x24\x1e\xf0\xec\x64\xb9\x62\xb1\x1a\xe2\x8f\x4d\x31\xdc\x2d\x34\x79\x2b\xfe\x2f\xa6\xf8\xfa\xdc\x5d\x6a\x3e\x15\xaf\xa8\x6a\x1c\x31\xa6\x65\x4a\xf9\x53\x84\xef\x8e\x45\x3d\x2b\xaa\x88\xe4\xbf\xb8\xf6\x5e\x63\xd6\x5c\x63\x98\xe3\x3b\xf9\x44\xf9\xb7\x4d\xdd\xf2\x9f\x56\x89\xcb\x87\x16\xdf\x79\x3c\x7b\x07\xd5\xc8\x43\x4c\x4f\x13\x73\x1f\xde\xab\xde\x3c\x70\xd5\x22\x26\x10\xde\x2f\x3c\xd6\x6e\xc6\x5c\x4a\x44\xeb\x37\x2c\xf2\xb8\xce\x28\xad\x83\x82\x60\xfe\x32\x4d\x0f\xd0\xc7\x8c\x61\x14\xb9\xc9\xa2\x7b\x7d\xe4\x54\xa3\xa8\xb4\x86\x9e\x4c\x1c\xbb\x55\x6f\xa3\x02\xfe\x8a\x57\x7a\xfb\xd2\x4d\xd5\x87\x5c\xed\x49\xfd\x66\x9d\x31\x4f\xf3\x6a\xd8\x15\xaf\x86\x0f\x1c\xbf\x77\x87\x06\xed\x41\x6e\x03\x62\xd6\xe8\x69\xc6\x5d\x35\x48\xe0\x83\x08\x93\x0f\x4a\x2c\x2a\x98\xef\x3d\x26\x7c\x98\x1b\xfa\x66\xfe\xa7\xdb\xcd\x1e\x63\x18\xba\x1c\xa0\x11\x7f\xca\x3f\x4d\x04\x06\x92\xe4\xe9\x57\x38\x86\x4e\x9e\x4f\x2c\x60\xf0\x88\xee\xc3\xde\xe1\x26\xff\xc9\xb3\xb0\xab\x5a\x48\x77\x8c\x68\xd3\x62\x4d\x95\x83\x6c\x80\xce\xf2\x9a\x69\xa8\xe8\x85\xd2\x91\x7f\xd7\x11\x0e\xb9\x5d\x8e\x58\x23\x39\xf5\x5b\x3d\xad\x76\x8f\x12\xa9\x65\x55\x88\xec\xe7\x9e\xd9\x92\xf6\x23\x10\x58\xa0\x29\x32\xc4\xfc\x13\x46\xd0\x40\x5b\x65\xf3\x64\xe9\xe8\x89\x5a\x37\xb0\x75\x68\x9f\x6b\xec\xd6\x06\xbe\xc8\x4b\x2a\x68\x17\xb2\x80\xe2\xd4\x6a\xbb\xd6\xf4\xeb\xf7\xd1\x00\xf7\x1c\x81\x3e\xc4\x67\x76\x98\x64\x35\x58\x0c\x52\xfa\x7e\x77\x9b\x1a\xa8\x4b\xa4\xdf\xce\x73\xd5\x95\xf8\xc8\x6a\x25\x89\x5d\x67\xa0\x77\xa1\x89\xc7\x51\x35\xb9\x87\x0c\x99\xd7\x1a\xf6\x30\x08\xe2\x42\xdf\xb4\x38\x47\xb3\x0b\x0c\x28\x57\xae\x2e\xae\x19\x9f\x66\xe2\x7d\x8c\x94\xca\xf1\xb8\x5d\x69\x27\xa9\x82\xd5\x32\x8d\x5f\x1d\xcf\xa3\x52\xc5\x79\x7f\x50\x7f\x7f\x1d\x88\x6f\xb9\xc9\x93\xce\xd4\xb7\xab\x70\x10\x4c\xf2\xe5\x1d\x06\x99\xd8\xe5\xda\xc3\x52\xf3\xed\xd7\x13\x55\x42\x5f\x77\x22\x0d\xdd\x97\x7b\x6b\x1d\xdf\x92\x0e\x76\x7d\x2e\x2c\xf7\xdc\x21\x85\x13\x8c\x5a\xb9\xb9\x33\x7b\xd5\x73\xac\x45\xc9\xd2\xd9\xed\x9f\xd3\xfa\x20\x78\x5a\x3e\x15\xd4\x64\x8e\x69\x18\x4b\x1f\xc1\xfc\x4f\xb3\xe8\x93\x65\x04\x44\xe3\x2d\x8b\x4d\xa3\x9c\xc8\xb3\x45\x93\x61\xef\x08\x13\x7b\x5b\x43\x4c\x62\x17\xf2\x9f\xea\x3c\xd7\x4c\x4e\x1b\x44\x0e\x5a\x21\xf5\xfc\xc2\xa6\x51\xda\xf4\x07\xa6\x55\x6f\x0c\xcb\x9e\x9d\xb4\x89\x99\x83\x44\xbe\x9a\xfc\x03\xeb\xa5\x33\x44\x68\xb1\x6d\xa9\x30\x79\xce\x9b\xaa\xab\x3b\x80\x18\x2f\x8c\xfe\x7a\x5d\xf6\x9b\xc0\x59\x52\x9b\x0e\x16\xc7\xf7\x2e\xfa\xdf\x38\xdf\xc3\xa7\xb4\xf9\xf6\xa4\x89\xe6\xed\x79\x56\x14\x04\x82\xec\x0d\x83\xa3\xeb\x8d\x94\x96\xb8\x6e\xf2\x67\xb0\x69\x7a\x7f\xaf\xaa\xb3\xb1\x55\x77\x32\x18\x86\xfc\xef\x17\xab\xf9\x94\x70\xef\xcf\x9d\x78\x29\xbb\x83\x69\x52\x18\x71\xaa\xf2\x65\x27\xc6\xf9\xba\xf4\xa0\x27\x2c\x13\x9e\x31\xdc\xe9\xe7\x76\x76\x2c\x9c\x27\x76\xfd\x35\x6f\x68\x12\x3f\xc8\x45\x8c\xa1\x9a\xd6\x39\x2d\x1c\x79\x25\xfb\xe2\x6b\x5c\x9b\x8c\x6f\x35\x76\x90\xbf\x85\x06\xc6\x12\x83\x9f\xdf\x66\x30\x4c\xba\x3a\xf9\xb0\x24\xf7\x3f\xaf\x1b\xfd\xc8\x10\xb9\x1c\xa7\xae\xc8\x12\x2f\xcc\x31\xbd\x40\x38\xb4\x0e\xf2\x89\xfc\x8c\x36\x0d\xd2\x41\x99\x28\x41\xca\x62\x06\xbe\x4a\x78\x86\x02\x70\xe2\x39\xa5\x44\xe3\xc3\x11\x6d\x1f\x19\xab\xe0\x4d\xea\x09\xdf\x29\xa0\x2a\xa8\x46\x5b\x83\xcc\xeb\xa3\x44\xe6\x8f\x58\x05\x0a\xc7\xdc\xe8\xa6\xf1\x2e\xa3\x00\x70\xb1\xfc\x59\xde\x7b\xb3\xe1\xab\xe3\x46\x61\xc7\xac\xe9\xd3\x93\xbf\x7d\x30\x9c\x64\x54\x44\x94\x0d\x64\xf4\x3a\xf3\x3f\x5e\xc3\x7f\x8f\x34\x7c\x14\xf0\xfb\xf8\xe9\xa8\xf6\x4c\xcf\x94\x78\xd0\xa3\xe0\xcd\xd6\xbb\x9e\xe2\xc7\xd3\xfc\x8e\xce\x79\xc9\x2d\x76\x9e\xd2\x5e\x21\x28\x28\xf5\xb0\xc8\x8c\x98\xf1\xa9\xe2\x5e\xfa\xc0\x12\x08\xee\xe5\xd6\x3b\xd5\x33\x02\x41\xd6\xc2\xee\x5b\x78\x70\xab\xb9\xb4\x4f\xce\x66\x0b\xc7\x1e\x4c\x23\x61\xa0\x91\xf9\xe2\x3f\x6d\x36\xd5\x67\x9a\xd2\xb5\xb3\xf8\x91\xe3\x3a\x5d\x87\x78\x16\xb1\x79\x8b\xe8\x9b\xab\x05\x5e\xc1\xee\x4d\x1b\x58\xae\x51\xfa\x32\x5a\x8b\xa4\xaa\x43\x61\xec\xcb\x9a\x83\xb2\xa3\xf1\x3c\xe3\xa9\xae\x02\x8f\x34\x51\xe0\xe0\x46\x86\xbc\x32\xe9\xb9\x51\xa2\x4c\x84\xd2\x3e\x29\xec\xdb\xc6\xe9\x2d\x2d\x2c\xe8\x4c\xab\x8f\xea\x72\xfa\x9d\xc9\x55\xfa\xfb\xd2\x48\xdb\xa8\xb6\x68\x37\xe5\x07\x7b\x8d\x26\x0d\x0b\x89\xe5\xca\x63\xf4\xc5\xbb\x54\x73\xa2\x89\x3d\xcc\x09\xbe\x3d\x5d\xfa\x4e\x06\xc2\x78\xfe\xcf\xab\x34\x0d\x24\x1c\x32\xba\x15\x35\xa9\x0d\x18\x89\x1f\x37\xb5\xba\x0a\xb3\x90\x54\x85\x6c\x0c\x00\xee\x6f\x99\xa0\xd1\xb2\xbd\x3e\x92\x71\x7f\xcd\xaf\x7d\x4d\xb3\xca\x23\xdc\xbb\x3f\x37\xee\x78\x76\x16\x36\x77\xde\x3c\x11\x49\xff\x61\x38\x7f\xe9\x57\x83\xd4\xb5\x08\x8a\x3b\x56\x9d\xa7\xa9\x45\x21\x0f\x0f\x01\x0c\x9a\xb0\xfe\x0c\xad\xb8\x06\x15\x97\x9f\x6a\x24\x24\x5e\xcd\x48\x47\x95\x5f\x2d\x6e\xd9\x38\x38\x6a\x48\xa1\xf2\xea\x5d\xe9\x1a\x73\xa8\xa6\x4c\x92\x9f\xbe\xdb\xe8\xe6\xc3\xf4\x9e\x2b\x0c\x38\x27\xb3\x3b\xaa\x89\x5c\x62\x73\x0e\x8e\x6c\xbd\x7d\xfd\x9d\xb4\x8a\xea\x9c\x0b\xf0\xab\x99\x4b\x0d\xb1\x41\x8c\x1a\x52\x0c\xff\xe0\xa5\x5a\x5b\x89\x06\x16\xed\x2b\x95\xe3\xd3\x98\x3a\x9c\x22\xf0\xb4\xc8\xcf\x5d\xa7\x49\x41\x21\xe6\x89\x16\xce\xc0\x28\xa3\x15\x2f\x9d\xdf\xc4\xf5\x8e\x3d\xa0\xbb\x3a\xd3\xb0\xc2\x88\x0d\x88\xf7\x02\xf1\x5b\xe0\xf6\x0d\x5f\xa9\xfd\x3e\x78\x8a\xd6\xdb\x43\xc4\x4d\x52\xfa\xe4\xbf\x5f\xbc\x5f\x74\x01\x42\xe2\x83\xb1\xc9\x60\xfe\xe6\xc3\x3a\xfc\x96\x43\x14\xa0\xe2\x58\x30\x5c\x55\x46\x81\x83\x5c\xe4\x22\xed\x31\x7f\x75\x62\xba\xe0\x2b\xb4\xdf\x8c\x1d\x9f\x7b\x59\x3b\x56\x1c\x1a\x58\x0e\x18\x3f\x15\x26\x6c\x35\xcf\x7d\x30\x81\x11\x12\x4d\x57\x6d\xe1\xe8\x95\x35\xd8\x0d\x32\x44\xbf\xf3\x0d\xe0\xdc\x56\xdc\x20\x00\xf8\x51\xad\xf3\x49\x9a\x58\x59\x80\x1a\x41\xc4\x1b\x0a\x27\xf2\xea\x42\x6c\xca\xc2\x46\xc4\xef\xba\x4d\x18\x3f\xa8\x69\x45\x92\x95\x38\xd9\xd9\x1d\xea\xef\xa3\x2c\x74\x06\x0c\xbd\x8c\x0f\x3d\x61\x8a\xa6\x59\x51\x90\xba\xa1\xbd\xfe\xb2\x02\xe0\x35\x40\xef\xaf\x25\x1a\xdc\x73\xc9\x79\x5a\xac\x03\xf1\x3f\x86\x9b\xd4\x05\x50\xb8\x60\x27\xbd\x61\xc8\x0a\xe2\x7e\x1f\x81\xc3\x98\x6c\x05\x8c\x9b\x30\x2e\xfd\x02\x8b\xb8\x2e\x65\x3c\xe7\x3b\xbe\x7b\x82\xd6\x39\xb5\x78\x63\x4b\x3d\xa7\x85\xae\x31\x85\x40\x61\x88\x59\xa9\x42\x59\x3a\x45\x3c\x7e\x22\xed\x6e\x35\x90\x9d\x99\xf2\xb6\xcf\x37\x10\xe6\x11\xec\x58\xde\x80\xd8\xb9\x77\x9c\x7e\xd6\xda\xbe\x8b\x06\x4a\xe5\xf8\xc1\x97\x78\x11\x25\x4d\xfc\x05\xb0\x69\xd1\xfd\x63\xb4\x58\xe0\x82\xc2\x6f\x5c\xd8\x6f\xda\x50\x57\x2a\xd8\x16\x79\x7f\x71\xc7\x7d\x4a\x0f\xbc\x6b\x41\xf2\x93\xe3\x77\x28\xf9\x41\xfe\xc2\xbf\xb5\x4c\x6f\x9d\x83\x17\xac\x0d\xcc\xe4\x31\xcb\xa4\xea\xba\xe3\xd2\x20\xd0\xd5\x8c\xf2\x9f\x78\x63\xba\x91\x91\xc1\x33\x85\x07\x62\x96\x34\x5f\x19\x6d\x22\xed\xe0\x05\x12\x2f\xc4\xae\x4b\x6a\xca\x88\xa8\xf8\x9e\xdd\xd9\x3d\x8a\x2d\xea\xd1\x86\x54\x62\x2a\xec\x59\x6e\x38\x1e\xa3\x40\x02\xf9\xef\x7b\x29\x1d\x4d\xd1\x01\x93\xdf\x13\xbf\xf0\xb8\x66\xa7\x80\x82\x80\x3b\x28\x7e\x72\xad\xa9\xd0\x9d\xe4\x0b\x48\x4c\xda\xcb\x83\xb9\xee\x5b\x38\x88\xae\x87\xda\xf0\x5e\xc6\x75\x8c\xd3\x16\xaa\x17\x84\xc2\x8a\xf2\xa5\xe7\xd3\x08\x08\x65\x44\x7c\xf0\xc0\x59\x7a\x61\x4f\xa8\x2d\xa9\xe6\x83\x85\xc7\xcc\xae\xad\x2f\x10\x27\xbc\xfb\x1a\xda\x93\x8c\x7a\x82\x35\x90\x27\xed\x6b\xe1\xdc\x58\xb8\x56\xa9\x2a\x2c\x9c\x57\x2a\xc7\x5d\xeb\x4d\xa7\x21\x0d\xe2\x2b\xe2\xdb\x29\x23\x55\x92\x93\x76\x42\xe4\x8c\xe4\xed\xeb\x4c\xbd\x25\xe0\x9e\x2a\xd5\xc1\xfc\xf5\x93\xd5\x71\xd8\xb5\x50\x01\xe7\x39\x26\x6f\xfc\x25\x26\x0b\xaa\xce\x71\xd5\x50\x02\xed\x1d\x7f\x9a\x5c\x72\x5b\x92\xc7\x7a\xe1\x26\x53\x77\x92\xf6\xa5\xa2\xd6\x17\x3f\xa0\x91\x55\x5c\xe4\x41\xeb\x39\x77\xe3\x30\x6d\x1d\x27\xb7\x7c\xbe\xa1\xf8\x10\x3a\x8c\x46\x35\x67\x56\x1f\x67\x29\xbc\xfe\x8a\xa1\x49\x45\x58\x20\xcc\x80\xee\x7e\xea\x74\x91\x36\x10\x21\x26\xe6\x89\x46\x2f\xc8\xc2\xf0\x14\xea\xda\x67\x34\xd5\x7c\xc4\xb8\xf4\xf2\x96\x69\xea\xf5\xd7\xb1\x17\x46\x56\x1d\xde\xe8\xd6\x63\xfa\xfc\x17\xb1\x4a\x24\xd8\x71\x0b\xb5\xca\xa2\x81\x51\x52\xc6\x4d\xde\x92\x12\x80\x02\x97\xca\x37\xda\x7d\xb3\x6e\x78\xa7\xdc\x46\x93\x4b\xd9\xf1\x52\x8b\x1b\x69\x40\xe5\x21\x2c\xd2\xa1\x57\xf7\xea\xf2\x49\x02\x6e\x9d\xd4\xc6\xcf\xbe\x3e\x46\x93\xc3\x21\x21\xf0\x91\x8b\xeb\x0c\x61\xbf\x0a\xb5\xa5\x94\x73\x2e\xb8\xd5\x44\x09\x85\x91\x8b\x3c\x41\x97\xcf\x9d\xf3\x62\xab\xf2\x11\x66\xd6\x90\x76\xfc\x73\x5e\xe1\xcf\xd5\x21\x35\xa7\x0f\x41\x86\x14\x68\x12\x86\x60\x8c\x91\xbc\xf2\xf9\x23\x34\xb9\x57\xcb\x8a\x7c\xe4\x59\xbc\x12\x58\xfa\x04\x37\xa4\xa2\x55\xf3\xb8\xbc\xc0\xd0\x40\x6d\x12\xdc\x27\xe1\xe5\xf9\x0b\x86\xb7\xb8\xd1\x79\xb2\x81\x94\xdf\x9c\xe7\x09\x7d\x20\x5e\xf5\xb4\x1e\x15\xfe\xdc\x24\x3b\xf3\x84\x00\x50\xee\xc6\x15\x7a\xdb\x9a\x85\x44\x3f\x60\x67\x3f\xa8\x47\x4d\x18\x34\x89\x0a\xb9\xb2\xe8\x02\x23\xac\x38\xde\xb5\x11\x09\xc2\xec\xa1\x98\xff\xb1\x61\x85\xe3\x45\x8c\x77\xc5\x45\x7e\x3f\xfd\x89\x74\x9b\x37\x10\x3c\xa8\x73\x4c\xf3\x2c\xca\xb0\x85\x02\x8e\x3f\xcc\x5f\x7c\x29\x7f\xdc\xbd\x91\x57\x73\xb9\xd6\xec\xdf\x9e\x6c\xcf\xe2\xed\x2c\xec\x4b\x27\x8b\xe2\x35\x9a\x2c\xb7\x83\xf8\x50\x29\x76\x5f\x1e\xa3\x73\x4d\x38\x61\xb5\x78\xfd\xe2\x73\x35\x08\x1e\xf5\xc2\x96\xc6\xc8\x97\x77\x67\x23\x88\x13\x55\x70\xa6\x69\x9a\x3f\xcd\x17\x65\xac\xfd\xfe\x26\x79\x7f\x0d\x1a\x8b\x2b\xb4\x01\x78\x92\xd8\xd4\x3c\xb2\x15\xa7\x3c\xb3\x1f\xbe\x6d\x92\x82\x93\xbd\xb2\xfc\x2d\x03\xff\xeb\xfb\xae\xc8\xdb\x39\x39\x6c\x6e\x97\x69\xd0\xce\x65\x6d\x4b\xe5\x78\xd3\x3b\x42\xae\x5f\x30\x2c\xb2\xb9\xf6\xf1\xed\x2d\x1a\x68\x25\xdc\xf0\xc5\xd2\x2f\xde\x64\x70\x0a\x19\xf6\x5d\x64\xa5\x19\x64\xa1\xff\x78\xf6\xed\xd4\x18\x8d\x7c\x29\x89\x56\x58\xf9\xa4\x21\x58\x47\x1b\x98\xd1\x59\x0d\x9d\x4d\xf1\xb4\x31\x2f\x26\x9e\x20\x06\x87\xa9\xcc\x5f\xfc\x5b\x4d\xff\x84\x32\xec\x55\x22\x06\x88\xf9\x33\x1c\xe1\x8c\x15\x49\x11\x8b\xfc\xe2\xc9\x2a\x85\x76\xa8\x4b\xb8\x1a\x56\x7e\xee\x01\x0e\xf2\xe8\x41\x03\x2e\x6d\x71\x7d\x2f\xd4\x57\xe8\x12\x8a\x4d\xea\xf2\x73\xa0\x54\x8e\xb7\x9d\xd4\xa9\xe1\xae\x9e\x6f\x16\x7e\xb1\x3d\xfb\xfe\x2b\xd8\x45\x8c\xeb\x94\x89\xf7\xd6\x36\x5f\x43\xca\xb5\xd8\xad\xe6\x7e\x7a\xc2\x54\xb1\xa5\x02\x62\x58\x78\x6c\xe2\x10\x36\x49\x3c\xf0\x4d\x36\xb4\xfe\x5d\xdc\x47\xbc\xa0\x3e\x20\xfa\xd2\xa9\x01\xbe\x31\x36\xac\xa3\xc0\x69\x10\xa6\x79\x60\x5e\xd2\x6d\x32\x36\x85\x02\xf1\xf7\xb5\x2a\x3b\x64\xc8\xaa\x07\x11\x49\x1e\xc6\xd6\xdb\xb2\x1f\x08\xa9\x44\x11\x9e\xb6\x6b\x8c\x54\x8b\x59\xb3\x66\xad\xe4\xf1\xcc\x37\xc4\x19\x1d\xe2\xfb\x86\x26\xeb\x60\xe1\xe7\xcb\x0c\x40\x45\xca\x26\x87\x17\xfa\x25\x83\x3d\xe7\xa2\xc8\x03\x84\x8d\xf8\xfb\x0f\x5e\x3a\x53\x3b\x46\x7c\xec\x39\xa8\x26\x54\x78\xee\x52\x48\xa4\xd0\x04\xf6\xc4\xa7\xe9\x89\x25\x92\xc8\xd8\xdb\x9f\xe5\x2b\x6a\x41\xd7\x1c\x30\xde\x2d\x0f\x16\xee\xd2\xa4\xe0\x1c\xe4\xfb\xc2\xcf\xfc\xb6\xc9\xc6\x65\x47\xcc\xe6\x3a\xb7\xc9\x13\x3c\x64\x68\xed\xe1\x7e\x1f\x03\x83\x1a\x7a\x73\x3b\x8f\xaa\x72\x83\x72\x33\xc8\xa0\x54\x8e\xff\x5c\x54\x96\x2d\x48\x0a\x39\xe5\xbd\x61\x29\x06\xcf\x8f\x52\x00\xf8\x92\xd5\x67\xe8\xe7\x6f\xa5\x54\x8e\xbf\xf1\x8e\xc9\x2b\xe0\x39\x16\x80\xa2\x8b\xd5\xb1\xda\x18\x97\x21\xcf\xee\x43\xf0\xae\xc7\xbf\x65\xe2\x0a\x5c\x4e\xc9\x76\x07\x38\x97\x66\x42\x5e\x36\x44\xbd\xaa\x1b\xc1\x1c\xa0\x40\x15\xc6\xcc\x03\x1b\x61\xb9\xe8\x6a\xcf\x1a\x8b\x8e\x48\xb2\xb0\x7c\xdd\x63\x66\x4f\xd4\x09\x75\xa8\x19\x85\x36\x51\xfd\xe9\xb8\x7b\x82\x0a\xdf\xb5\x01\x0f\x27\x9b\xae\x26\x20\xae\xc5\xf7\x1d\x54\x2d\x76\xdc\xe4\x3b\xf4\xcf\xed\xe6\xc1\x0e\x32\xf4\xc9\x03\xdd\x68\x0c\x32\xe7\x2e\x5c\xc8\x9b\x13\x71\xd7\x86\xb1\x5e\x56\x0d\x08\x5e\xff\xa3\x1d\x9a\xfe\xac\x70\x5f\xe7\xd9\xde\xa7\x4e\x1a\x5f\xb5\x60\xa1\xd4\xab\xfa\xd5\xbd\xbc\x1e\xfd\x10\x43\x1e\xa9\xeb\xfa\xec\xeb\x5a\x7d\xa1\x21\xaa\x01\xe8\x26\xbf\xff\xf1\xf4\x75\xd3\xc8\x95\xaf\xfb\x3f\x8e\x8e\xcb\x24\x56\xb2\x10\x7a\xdc\x56\x8f\xbc\xae\x63\xde\x3e\x65\x74\x3f\xb7\x62\x3b\xa9\xf3\x32\xe7\xd0\xb4\x4e\x13\xa5\x06\x22\x16\x3c\x9e\xfc\x65\x9b\x36\xdb\xa4\x94\x75\xe8\x4d\x9f\xc2\xc2\x5b\x35\xcd\x43\x6e\x71\x91\x7c\xe8\x47\x55\x1d\x33\x0a\x10\x98\x6a\x04\x90\xe3\xc2\xef\x0e\x68\x22\x25\x8e\xa0\x8f\x0c\xe6\x5e\x78\x3a\xad\x17\x11\xa8\x53\xaa\xdf\x28\x3d\x9f\x01\x13\x62\x54\x17\x94\xa8\x9e\x63\x46\x8e\x8d\x58\x0d\x07\x72\x98\x79\xeb\xe6\x34\x59\xe8\x58\x00\x28\xa7\x6f\x69\x66\x20\xc8\x0b\x05\xb4\x37\xff\xe7\x4b\x8d\xf6\x29\x87\xfb\x43\x06\x61\x6b\x36\x64\x1c\xfe\x02\x37\xb1\x65\x93\x69\xbf\xc2\x68\x9f\xe0\x17\x1c\x59\xa6\x66\x19\x95\x81\x80\xe0\x3e\x62\x81\xd5\xcd\xa3\x6f\x1b\x25\x45\x8d\x2b\xeb\xa4\x8b\xdb\xde\xdc\x5a\x05\x48\x6a\xea\x7f\x7a\x99\x87\x40\xbd\x9a\x50\x72\xbc\x7f\xb3\x69\xf9\x2d\xd0\x82\xe9\x31\xbb\xce\x80\x19\x26\xb9\x90\x84\xdf\x90\x77\x0d\x7c\x4e\xe4\x63\x96\x2c\x2c\x99\x38\xce\xec\xd1\x94\x54\x10\x2f\x8f\x77\x3d\xc1\x8f\xcb\xcb\x50\x03\xb3\x16\x1c\x5d\x3e\x90\x1a\x71\x21\xf2\xea\xb4\x2f\xa8\x13\xbd\xc5\x62\x4c\xd0\x08\x4b\x27\x16\x85\x1f\x1a\x9e\x2a\xa8\x51\x21\xb5\x88\x46\x52\x90\x72\xd7\x2d\x9a\x8c\x21\xc1\x16\x6e\x60\xc0\x0a\xe4\xbf\xa3\xf5\x6d\x6a\xd8\xad\x20\x3e\x1f\xdb\xb9\x49\x9d\xce\x55\x64\xe1\x52\x48\xf9\xff\x96\x07\xf3\x2b\xde\x51\xa2\xc4\xd0\x7a\x92\x17\xb8\xf1\xa9\xb1\x5a\x45\x2b\xcd\x2f\xee\x5e\x31\x5a\x7c\x0d\xe3\x78\x98\xe4\xfb\xf1\x4b\x3c\x6f\xbe\x68\x6e\xc7\x3c\xd0\x20\x5c\x9d\x3d\x00\xa7\xa7\x70\x8f\x9f\x1d\x6c\xd1\x67\x11\x79\xa7\x74\xb1\xbf\x7a\xb1\x9a\x87\x04\x88\xd1\x52\x1f\xe9\xd3\x91\xe4\xdf\x37\x69\xe2\x0c\xe4\x6c\xa5\xca\x67\xe1\xc5\xa7\xdb\x74\x21\x35\x1b\x00\x04\xa5\x72\xfc\x6e\x7f\xf7\xff\x66\xcc\xa4\xe3\x1a\xe2\x8b\x27\x6a\xba\x2b\xd0\x9b\x07\xad\xde\x89\xfa\x2f\x71\x33\x51\x28\x4d\xd6\x9c\x30\x60\x0c\x28\x0c\x5d\xcc\xfd\xbd\x45\xa5\x31\xe3\x06\x25\x5f\x08\x5d\xf0\xd3\x3b\x0d\x2f\x6e\xea\xe1\x30\xa8\x8b\xba\x00\xa6\xd4\x7f\xd2\x88\x5e\x16\x75\x4b\xe5\xf8\xd8\x5e\x23\x33\x41\x03\x12\x74\x5a\x31\xfd\xbe\x98\x54\xf3\xce\x5d\x63\xd4\xd8\x2e\x6e\x62\x57\x1a\x70\x2c\x5e\x9e\x0d\x25\x18\x31\x0f\x07\xa1\x44\x52\x1f\x18\x2a\xcf\x4d\xa1\x3e\xf9\xdf\xdc\x3c\x24\xf5\x51\x42\x3a\xfb\x6f\xe0\x4d\x93\xab\x1b\x42\x84\xeb\xb7\x5b\x44\xef\x1b\xfb\x40\x1b\x85\x4b\x38\xfc\x4a\xbb\x56\x75\x05\x19\xe7\xd2\x7c\x6e\xd8\x64\x73\x01\x61\xc2\xd0\x2c\xed\x6c\x1c\xcc\x3f\x7b\x78\x82\x59\x89\x56\xb8\xc9\x08\x6c\xe5\xdb\x1e\x55\xe3\x85\xa8\xb5\x27\xf5\x0f\xb1\xd9\x32\x21\xbd\x24\x9b\x8d\xe5\xbb\x2f\x95\xe6\xa1\x4e\xea\x61\x17\x3c\xae\x36\x1f\xf5\x89\xc7\xd9\x69\x3f\xd7\xe8\x6c\x2e\x70\xcc\xf8\xd4\xa5\xfa\x68\xf6\x41\x93\x86\xef\x92\x54\xab\xb6\x77\xe4\x64\x35\x92\x8d\x98\x57\x89\x5a\x5d\x87\x72\xbb\xaf\xd7\x79\x27\x18\xb9\x40\xb1\x2e\xfc\xdb\xe4\x96\xb6\x30\x4e\xca\x35\x18\x3a\xe7\x4f\xbd\xee\x4c\xfd\x48\x17\xe3\xf0\xe4\x73\x3f\x79\x39\x3d\x27\xa4\x60\xf9\xd4\xec\xfa\x92\x0e\xb4\xf1\x4e\x4d\xb5\x3e\xf0\xb1\x2b\xba\x25\xe3\x96\x66\x7f\xb9\x4e\x7d\x1f\x4b\xe4\x65\xf1\xcc\xdb\x5b\xb0\xb5\x50\x42\xf1\xb6\xcc\xb0\x07\xb3\x59\xb0\xef\x5a\x00\xb0\x34\xc4\x99\xb7\xab\xcc\x63\x5e\x46\xa4\xe1\x53\x07\xd2\x1d\x85\xc1\x3b\x85\xee\x30\x06\xa7\x11\x0e\x24\xc4\x2d\x3f\x7f\x94\xd9\x39\x71\x29\x43\x36\xd5\x7b\x69\xd7\x4f\x35\xca\x0e\xd8\x8e\x10\xa4\xde\x1c\xdf\x62\x4f\x6c\x47\x56\x28\xc6\x29\xb9\xcb\x5e\xd2\xfa\xe4\x28\x92\x16\xc5\xf9\x37\x47\x8f\x94\xd7\xb8\x00\xa0\xd5\x5f\xd1\xac\x84\x20\x0a\x71\x38\xd3\x04\xa3\xda\xb4\x69\x9f\xd7\x87\x98\xc4\x31\x7e\x60\xcb\xf9\x5a\x7f\xc1\x15\xfa\xcc\xe6\xa3\xfa\x8d\x18\xf5\xf5\x44\x38\xb0\x11\x6f\x9a\x4c\x6a\xe3\xf8\xe1\xcb\xc5\xa4\x5b\x2d\xe8\xdf\x77\x69\x54\x34\x52\xf3\x60\xe0\xe5\x01\xda\x31\x7f\x6b\x5e\x1d\x1f\x35\x56\x41\xba\xc7\xe1\x47\x0d\x16\xb5\x43\x1a\xb2\x5d\xb4\x62\x7f\xf6\x19\xd3\xe9\x0d\x8c\x18\xca\x08\xf2\xfe\xf3\x3a\x13\x21\x2c\x4e\x73\xb4\x9d\x5f\xe9\x92\x0a\xa9\x21\xa2\xe5\xce\x85\x6f\xbe\x6c\x8e\x79\x80\x8a\x93\xce\x9c\xee\x5a\x93\xd6\x33\xfc\x83\xd9\xc7\xf2\xc1\xe5\x42\x0d\x13\xa6\x33\x7c\xc4\x5a\x71\xd5\x0d\xce\x9d\x13\x3a\x32\x81\x4a\xde\xc5\xcd\x7c\x22\x5e\xba\x1a\x23\xd6\x32\x8a\x2c\xf4\x8f\x34\xf3\x1f\xe2\xd5\x05\xfa\xee\xbd\x27\x0c\x69\xc9\x06\x15\x49\x6d\xbc\xe7\xad\x96\x6e\x4d\x03\x49\x36\x5e\xfe\x2f\xb7\x65\xb7\x02\xc7\x8d\x48\x0d\x7b\x19\xc6\xef\x7f\xcb\x94\x17\xe3\xbc\x4f\x80\x64\xe6\x3f\xd9\x3e\xd5\x28\x5a\x09\x68\xfc\xc2\x0a\xd6\x13\xd7\x9f\xae\xd0\xfb\xdf\xf5\xa8\x82\x4a\xe5\xf8\xc4\x1a\x1e\x97\x7d\x46\xa5\x49\xf6\x60\xee\x95\xb7\x8c\x23\x2a\x25\xde\x53\x26\x80\xd2\x2f\x4c\x33\xa4\x76\x5c\xa1\xf6\x3f\x33\x35\x2a\x22\x01\xd4\x85\xeb\xf6\x98\xd2\xba\x88\x89\xe6\xd6\xfa\x1d\xd9\x3f\x79\xb4\x8f\xeb\x62\xc5\x2b\x27\xf2\x29\xcd\x4a\x48\x40\xd3\xe9\x47\x61\xf3\x7a\xd3\x3f\xa1\x17\x5b\x69\xaf\xbe\xf0\x40\x45\x4d\x37\x91\x36\xa9\xc8\xb5\x3f\x9c\x0d\x11\x02\xd7\xcd\x15\xcd\x7e\x6d\x1b\x57\x48\x42\x87\xcb\x02\xcf\xbf\x9e\x5f\xc6\xd5\xc8\xb3\x75\x29\xad\x3b\xee\x4b\x1d\x10\x6a\x0c\x35\x92\xac\xa3\xf1\x9a\xc0\xc4\x53\xab\xce\x9d\x95\x9e\x5f\xad\xc9\x51\x12\xcf\x16\x88\xf8\xfe\x29\x59\xd4\x46\xa7\x9c\x1f\x3d\xb3\xc1\x28\xa0\x29\xb4\xde\xa5\x93\xcc\x0e\x28\xf5\x38\x45\x40\xda\x1f\x9d\xe5\x18\x48\x43\x18\x6b\x88\xcc\xe0\x93\x6b\x8c\x41\x49\xe4\xd6\x45\x52\x32\x6f\x9f\x2a\x56\xa4\x38\x8a\x78\xc2\xef\xf3\x54\x78\xb8\x36\x4a\x6a\x86\x2a\x91\x12\xaa\xd5\xd7\xf9\xbb\xc5\x11\xa3\xc9\x3d\x53\x33\x7a\xc9\x69\x03\xaf\xe7\xde\xb9\xb3\x4d\xa9\xd6\x6a\x5a\xd9\xb9\x9f\x1b\xe0\xca\x0a\x0d\xc2\x54\x98\x12\xae\xe2\x03\x8f\xc9\x65\x49\x9a\xf2\xd8\xca\x75\x3a\x86\x45\x54\x14\x12\x31\xfa\x29\x9e\x7a\x24\x1b\x2b\xfa\x1c\xea\xe2\x80\x36\x64\x8f\xe8\xac\x3d\x93\x8d\x54\x28\x08\x48\xcd\x60\x61\x3c\xd0\x39\x3a\x2d\x80\x59\x15\x73\x54\xf7\x47\x1f\x37\x9b\xdd\x5e\x10\xb9\x72\xab\x66\x5d\xac\x72\xdb\xee\x56\xc5\x7a\xe7\xec\xee\x39\x73\x40\x1c\x4a\x98\x35\xcf\x9f\xa1\xc9\xd2\x33\x8c\xeb\xa5\x72\x5c\xde\xcf\x07\x11\x21\x93\xe4\xd8\x3d\x33\x8c\x38\x9b\xdc\x04\xac\xc6\x05\x1d\x1a\xca\xdb\x75\x89\x30\x61\xcf\x75\xdd\x3d\xcd\xd8\x8b\x25\x54\x77\x00\xdf\x6c\x1e\x15\xc1\x9d\x22\xa9\xc7\x41\x48\xa9\x27\x46\x1f\xf7\x29\xfd\xbe\x20\x6a\x34\x88\xd9\xd9\x8d\x2b\x9a\xd0\x5c\xe8\x80\x3c\x4a\x39\xbe\x70\x45\xbb\xa6\xac\xe4\xe1\x2a\xb1\x08\xe2\x84\xe5\xc1\x42\x6e\xbf\xd8\x21\x02\x19\x9b\xfc\xb7\xf7\x3f\x6b\xd0\x8b\xc0\xe4\x5a\xac\xd6\x3f\xed\x92\x6a\x0a\xe2\x88\x15\xba\xe8\x5f\xb9\x51\x73\xba\x4a\x7e\x76\x44\x7b\x9b\x4e\xcd\xb1\x84\x38\xc0\x60\xe1\xe1\xdd\x93\x8d\x1c\xb9\x52\x21\x61\xd6\xa9\x37\xff\x9e\x03\xa6\xb5\x49\x15\x35\xb8\x72\x7e\xa9\x1c\xff\xba\xa9\xee\x33\x49\x96\xb9\x56\xd4\xa1\x2e\x8d\xf9\x84\x18\x1a\x40\x1e\x27\xba\x7f\x79\x83\x61\x3c\x45\xb0\x2b\xf2\xba\xdc\x7f\xf4\x64\xc3\x72\xd5\x8d\x80\x5b\x29\xf2\x0e\xe5\x53\x7c\x5c\xf1\x2c\x2d\x46\x83\x56\x03\xb3\xc6\xad\x82\x2d\x36\x1f\x88\x7b\x95\xec\xf2\x70\x23\x26\x40\x69\x85\x07\x4e\x18\xfd\x2e\xe4\x22\x36\x20\x13\xa1\xa3\x4b\xf9\x1b\x01\xcd\x2c\x98\x96\xc7\xef\x33\x2c\xc2\x29\x4b\x8e\x58\x11\xe1\x37\x8f\xd7\x1c\x46\x1a\xdc\x8d\x09\x8c\xd4\xe1\x99\xfc\xa8\x4b\x21\x84\xe7\x75\x42\x31\x58\xb8\xd2\x2c\xe6\x43\x54\x93\xfa\xa4\xb9\x2e\x4d\xf6\x9a\xab\x50\x27\xa5\xda\x61\x8d\x73\x41\xa3\x9a\x03\xdf\xfd\xc3\x7c\x1a\x37\x68\x5d\xeb\xe0\xe6\x3d\xcd\xc1\x1b\x88\xeb\x90\xb4\xfc\x74\x84\x92\x27\x92\xb6\x26\x9a\x94\xdd\x5f\x1e\x37\x64\x53\x49\x8d\x48\x6f\x9a\xc1\xdc\xc6\x67\xa5\xe6\x7c\xa3\x82\xed\x12\x68\x6d\x0d\xe6\xaf\x59\x6a\x08\xdb\x93\x86\x1f\x88\x08\xa5\x2e\x67\xee\x53\x2a\xc1\xae\x32\x1c\x38\x58\x58\x41\x16\xb7\xbe\x91\xde\x41\x35\x43\xe7\xfb\xde\xdd\x9a\xdf\x6c\xe0\x50\x1e\x62\xfe\x70\x68\xac\x0e\x64\xe2\x42\x6e\xf1\x49\x91\xd6\x09\x8a\x50\x12\x70\x1f\x3a\x3a\xd1\x4c\xac\x99\x90\x95\x81\xde\xe5\x53\x27\xcf\xd4\x7b\x89\x35\x44\x3c\xd1\xc7\x7d\x7c\x06\xdf\xf8\x73\x3b\x4b\x15\x9a\x14\xa9\x40\x85\x7a\x39\xc3\x86\xa9\xba\xc4\x92\xb6\xe8\x73\xb7\xaa\xae\xa4\x87\xfb\xdc\x01\x2e\x7c\xa3\xce\x09\xda\x93\x0d\x3a\xc9\x99\xe0\x63\xf1\x84\xb2\x41\xe7\x2e\x4f\x33\x8c\xa4\xc0\xeb\xc9\xad\xb0\xd5\x83\xb0\x09\x7f\x6e\xf1\xc5\xdd\x3c\x06\xb4\xd8\xad\xdf\x65\x0c\x72\x5d\xda\x27\x93\xc0\xd0\x48\x8e\x7c\xcc\xb8\x2f\x18\x54\x22\x9b\x2e\xd5\x1e\x08\xa3\xb4\x9e\x1c\x34\xfc\xde\x1f\x32\x41\xfa\xae\x1f\x88\x36\xe9\x79\x63\xb3\x8f\xb9\x46\x91\x0b\x02\xe9\x4c\xe8\xf5\xff\xdf\x47\x94\x40\x39\x55\x70\x9a\xf8\x86\x75\x9a\xca\x09\x74\x6a\xe2\xaf\x3c\x69\x62\xb2\x6d\x9c\xa4\xdd\xa2\xfc\xfb\xe4\x7d\x46\xf9\x8e\x6d\x29\xc5\x5d\x78\x64\xff\x44\xb3\x70\xa4\x4c\x53\xfc\x38\xf7\xde\x96\xd2\xdf\x95\x44\x9d\xfe\x93\x43\x79\xe2\xf1\x19\xd6\xa9\xc3\x44\x56\xd3\xa0\x2e\xf6\x82\xba\x48\x26\xd6\xee\x9f\x6a\x94\x3a\xc4\x1e\xca\xa0\xaf\x48\x5e\xd6\x7b\xc5\x41\xe4\xa2\xa4\x0a\xfb\xfe\xd6\xb4\xd6\xf6\x5a\x09\x6d\xc5\x8b\xa7\xb5\x6b\x4c\xc2\xd0\xc1\x0d\x14\x82\x64\x1d\x54\x47\x82\xe5\xf5\x11\xca\xea\x81\x03\xfc\xd5\xe2\x15\x8f\xb5\x10\x47\x6d\xb0\xdb\x54\xe7\x75\xfb\x62\x31\xee\xa2\x0d\x1f\x79\x49\x44\x6b\xbb\x2f\x9b\x59\x84\x2c\x6a\xf8\x99\xce\xef\xa8\x6d\xa7\x8b\x85\x48\x85\xcf\xc6\x5d\x63\x79\x08\xb8\x6c\xc9\x87\x3e\xbc\xe4\x6a\xd9\x5e\x0e\x1c\xe1\x1f\xef\x46\x3c\xcc\x5c\xb3\x59\x53\x25\xf5\x7c\x08\x14\xb9\x0e\xa3\x02\xb7\xa9\xeb\x22\x61\x27\x13\x87\x13\x8c\x34\x47\x90\x5c\x52\x09\xb4\x62\xe7\x04\x8e\xf1\x49\xaa\x02\xcd\x0b\x64\xc6\xeb\x2a\xf4\x52\xdd\x9a\x07\xc2\xe3\x5f\x9e\x9d\x62\x1e\x61\x0c\x71\x85\xa1\x88\xa5\x82\x03\xf9\x9a\x36\x53\xf1\xa9\x4b\x9a\xd4\x4e\x12\xfe\x6f\xbc\xc5\xef\x8b\xd8\xbc\x93\x98\xbb\x6c\x84\x24\x4f\xb3\x00\x73\x3d\xa0\xd3\xbd\x16\x17\x98\xd0\x1d\x10\xab\xf2\x2f\x23\xc6\x28\xcb\xb6\x86\xec\xd2\xdf\xd1\x33\xdd\x58\x8b\x2e\xac\xad\x81\x21\x92\x90\x9f\xbe\x9e\xd1\xce\xac\x56\xf9\x7b\x08\x8d\x67\x89\x5c\x17\xd7\x52\x42\xe2\xe2\x7b\x54\x53\xbe\xee\xa0\x2a\xd7\xff\x97\x71\xd5\xcc\x44\xb9\x9e\xb3\x2d\xb3\xbf\x7a\x87\x61\xaf\xc0\xd2\xc3\x18\x48\x7e\x23\x4d\x80\x2d\x94\x4f\x49\x44\xbd\xff\xb0\xc6\x61\x70\x51\x93\x5b\x09\x4c\xd4\x34\x2e\x80\x70\xc3\xef\x60\xee\x9b\x06\xfa\xbb\x63\xae\xd4\x7e\x2b\xdc\x6e\x50\x5a\x2a\xc4\xad\x20\xaa\x34\x3e\xdb\xfa\x95\x66\xf8\x6c\x70\x49\xf9\xe3\x14\x15\x4c\xe6\x5e\x14\x3a\x49\x06\xb8\x6a\xb4\x58\xf0\x20\xcc\xcf\xaf\xe6\x15\xce\x7a\x86\xdb\xb6\xb4\x31\x42\xbc\xea\x39\xee\xcb\xb7\x24\x39\x07\x82\x96\x71\x7d\x61\xc4\xad\x6a\x5c\xd0\xbd\x30\xb9\xc8\x2f\x6d\xd2\x78\x89\x61\x12\xf2\xb8\x01\x57\xe1\x9b\x5b\xc6\x2b\x4c\xb7\x01\xcb\x9f\xa0\xd6\x03\xad\xcb\x96\xca\xa4\xcd\xa6\x59\x6e\x94\x62\xd9\x1f\xde\x66\x32\x1c\x18\x53\x2e\xe2\xcf\x28\xd5\xcc\x20\xd2\x36\xee\xc3\x13\x27\xeb\x54\x4a\xe8\xc2\xb4\xdc\xd2\x95\x07\x35\xa9\x15\x4d\x26\x10\x34\x02\x4f\xb6\x6b\xc7\x50\x44\x02\x4d\x26\x25\xff\xe9\xa5\x67\x1a\xc7\x01\xb2\x67\x2d\x4a\xf6\xcb\x4c\x1e\x2f\x1a\xd8\x46\x7c\x77\x2c\x7e\xe3\x6c\xf3\x4d\xc2\x58\x91\x17\x93\x3f\x63\x86\x43\x1f\x0a\xc4\xf0\x90\xef\xf9\xc2\xa1\x15\xc6\x08\x87\x4f\x77\x44\xcd\xf4\xde\xe7\xb2\xd7\x51\xc3\x12\x74\x33\xa1\x57\x65\x1b\x1e\x0d\x31\xc7\x58\x26\x7f\xd9\x75\x74\x8c\x86\x52\xc6\xa2\x05\xf5\x9b\x7b\xb8\xe8\x93\x54\xe5\x6c\x95\x06\x5d\xd3\x61\xe2\xa3\x5c\x39\x05\x2a\xfc\x64\xf5\x48\x91\x05\x57\xa1\x35\x54\x5c\x73\xf0\x3c\x1d\x9d\x14\x32\x0a\xbd\xc0\xac\x04\xcb\x64\xf5\x8a\x58\x14\x04\x75\x3a\xd0\x02\x8f\x7f\xe1\x59\x73\x2b\x4a\x39\x25\xe8\x66\xf8\x86\x3b\x65\xe7\x82\x8e\x79\xa9\x95\x72\xef\xd2\x56\x45\x3d\xb9\x53\x07\x8b\x67\xee\xe3\x71\x1c\x5c\x4e\xa4\xb0\x65\x6e\xa9\x26\x58\x28\x0c\xab\x34\xbb\xaa\x23\x86\xa4\x23\x08\x4b\xb9\x04\x69\x5e\x89\xd7\xad\x19\xa3\x13\x6f\x03\xc4\xbd\x77\x46\x0a\xe7\xb4\x4a\x64\x39\x3a\x0d\xf1\xe2\x93\x13\x8c\xc5\x9d\xe4\x0d\x42\x3d\x3d\xfe\xc2\xed\x1a\x1f\x18\xbc\x26\xe0\xae\x7f\xdc\x35\xc5\xc8\x51\xb9\xb6\x48\x5a\x65\xf2\x64\x61\x0a\x33\x13\xfc\x26\xf1\x6a\x12\x54\x1d\xf6\xb6\xa9\x66\xb7\xc6\xf7\x2b\x6e\xd9\xa4\xa9\x47\x71\x77\xa9\xf8\xf2\x36\xd5\x01\x80\xd6\x7b\x83\x78\x11\x9f\x64\xfe\x5a\x8c\xfc\x2d\xe4\x8b\xc2\x3f\x77\xee\x22\xcd\xa4\xd8\xb2\x22\x98\x8a\xbc\xb3\xdb\x80\xda\x02\x4e\x93\x60\xe9\xb7\x9a\x7b\x77\x82\xe1\x8c\x9b\xe4\x20\xa9\x92\xee\x95\x97\xa6\xd4\x39\x62\x85\x1a\x7f\x30\xde\xb2\xca\xac\xd1\x02\x9f\x30\x39\xc0\x2b\x5c\xbf\x6e\x9a\xc6\x0c\x75\xab\xd2\x1e\xb9\x55\xa2\xa6\x78\xc6\x2a\xcd\x56\x0d\xb9\x2e\x10\xe9\x44\x8e\xee\xcc\xd1\x14\x56\x18\xda\x0a\x5b\xe9\xfa\x1d\x42\x40\xa6\x8e\x7d\x18\xfa\x27\x37\x3a\xd5\x10\x9c\x81\xde\x02\x07\x87\xfe\xe3\x83\x6a\x52\x73\x51\x09\x28\x0d\x7f\x5b\x91\xad\x1d\xa2\x0e\x0f\xe4\x3f\xb2\x81\xea\x7d\x9d\x69\xb8\x0f\xc2\xa8\x54\x8e\x67\x3e\xa3\x8e\x6b\xdc\x9f\x24\x7a\x7c\xc4\xf4\xfa\x64\x7e\x45\x57\xa2\x10\x53\xe9\xef\xff\x8d\x9e\x36\x6d\x4d\x32\x48\x3a\x00\xfe\xfc\xae\xd1\x0a\x6f\xd0\xa6\xd4\x27\x89\x27\xdf\x70\x8e\x59\x9e\x55\x2a\x29\x42\x33\xbe\x77\xf6\x78\xad\xf6\x45\x36\x67\x14\x40\x73\xe5\xfd\xd7\x09\x17\x94\x4a\x2a\xcb\x32\x98\x3f\x7c\xc0\xd4\x51\x88\xdc\xd4\x19\xf8\x5e\xcd\xca\xb1\x23\x03\x85\x0e\xba\xf9\xa1\xb4\x8e\x3b\x7d\xb4\x44\xf0\xb7\x8f\x6b\xf2\x82\xe2\xe0\x2a\xc7\x63\x57\x5f\xfe\xbf\xa3\x8e\x19\xb2\xca\xea\xf7\x7f\xab\xc4\x1f\x6d\x4a\x4b\xe5\xf8\x8a\xdb\xb4\x11\xb9\x52\x0c\xd9\xb2\xcf\xe8\x26\x30\xe2\xd5\x83\x06\xf2\x84\x4f\x2a\xe4\xa8\xdd\xb1\x59\x5b\x06\x28\x08\x05\xb3\x3c\xff\x46\x5e\xd3\x34\xa0\x0d\xe2\x71\xf3\xf7\xfc\xe1\x43\xd9\x17\xc1\xe1\x27\x29\x5b\x3d\x7f\xf2\x2e\xe3\x25\xc2\xd1\x23\x26\xc2\x2b\xf7\x98\xe7\x4b\x48\x3d\x7d\x98\x81\x0f\x66\x91\x87\x88\x85\x01\xd7\x90\x35\x1c\x29\xaf\x3f\x53\x5f\x70\xd8\x0a\x91\x67\xc1\x26\x38\xb7\xe7\x6c\x73\xa1\x30\xcb\x11\xbb\xba\x78\xc1\x36\xf5\xbc\x40\x1d\x09\x9a\x24\x45\xf2\x84\x2e\x23\xc5\x08\x57\x1c\xcd\x7f\x52\x38\xc2\x54\xa8\x1b\x80\x95\x72\xf2\x03\xff\x66\x20\x8d\x7d\x1a\x66\xb1\x5a\x85\xb9\xe3\xb5\x91\x34\xf1\xec\x6a\x04\xb9\xea\x97\xf6\xf1\x53\x09\xd9\x88\x3b\x18\xec\x33\x48\x26\x16\xc3\x36\x15\x4d\xce\xe3\xcb\x4d\x41\x7c\x29\xd8\x04\x6f\xe1\x9b\x13\xf8\x77\xd9\x8c\x54\x21\xa4\xdf\x31\x45\xc4\x3d\x87\xd2\x80\x77\xb1\x7e\x3d\x5f\x9e\xa1\x8e\x8b\x43\x62\xb5\x26\x1c\xbf\xbc\x57\xc1\xb0\x81\xd2\x94\x3f\x70\xef\xb8\x94\xe1\xa1\xbc\xf7\xe3\x4f\xad\x6b\x93\x80\xb0\x75\x4b\xd7\x69\xa9\xeb\xd9\x93\x79\x35\xa6\x9a\xec\xfc\x4c\xd8\xd0\x63\xea\x1e\xd5\x48\xe0\x22\xa1\x21\x0b\x97\xf7\x63\xa1\xd1\x0d\xfd\x4a\x10\x8e\xe6\x68\xe1\x6f\x88\x1a\xe7\x72\x57\x06\x0c\x77\x84\x59\x8a\x30\x2f\xa3\x7a\x94\xfb\x79\x3e\xdb\x96\x26\xe1\xac\x2d\x00\xd4\x5e\x36\x59\x1a\x26\x62\x5f\x80\x07\x1f\x5c\xc3\x1f\x5d\xc8\x10\xd8\x57\x16\x9b\x4b\x85\x80\x2f\x30\x6d\x4a\x0d\xd1\xf0\xdc\xbc\xb8\xd5\x37\x83\x28\x05\xff\x62\x57\xbb\x42\x00\xd4\x91\xeb\x06\x21\xa3\x4a\x28\x3d\xbe\x66\x91\x26\x5e\x95\xec\x1f\x09\x5f\x39\xed\x06\xc3\x51\x08\x94\x9c\x79\x9a\xf4\x5f\x55\xa3\x45\xe2\x25\x65\xa6\x0f\x6e\xa8\xf0\xde\xef\x5c\xce\xdb\x69\x9d\x73\xe1\x12\xb7\x1b\x23\x72\x64\xf3\x13\x2c\xf9\xe3\x97\x9f\xc8\xc6\x00\xd0\x26\x17\xda\xfd\xa9\xd2\xec\xfa\x76\x63\x74\x1a\x09\x8c\xf9\xf8\xc3\x1c\x14\xb2\x96\xc2\x64\x3b\xbb\xfb\x4a\x6d\x23\x32\x87\xc6\xa5\x3a\x61\x9d\x05\x98\xb8\xfc\xe4\xfd\xf4\x86\x6c\x86\xe2\x21\xdf\x27\x10\x60\x54\x19\xfc\x63\x6d\x54\x8a\x7c\x80\x87\x6d\xe5\x98\xdd\xc2\xb7\x27\x1b\x15\x49\x17\x60\xc1\x20\x46\x1f\x3c\xd0\x62\xdf\x1b\x04\x44\x9e\xde\xc5\x4f\x54\xb2\x51\xc0\xa1\xbe\x46\xa3\x19\xf6\xd4\x48\xb9\xee\xc5\x80\xf3\x3a\x03\x8b\x8f\xfa\xc1\x8a\x9e\x37\x56\x6f\x2b\x1a\xb0\x58\x9a\x54\x17\x42\x56\x31\xff\xf3\x16\x23\x5e\x49\x6f\x02\xea\xc0\xff\x5d\xa5\x78\x83\x0d\x7e\x2a\x7e\xeb\x92\x21\xce\x39\x29\xc9\x79\xc3\xbd\xc2\x85\x01\xa5\x73\xbf\xcf\xbc\x7c\x76\x3a\x33\x6e\x2d\x48\xd7\x77\x1b\xaa\x3e\xc8\xb5\x44\x39\x2e\xca\xcf\xe2\xae\xa9\xa3\x33\xf9\x12\xb4\xea\xad\x2d\xd9\xb5\x06\x62\x62\x7d\x9a\x41\xfe\xa8\x63\xba\x34\x43\xe4\x05\x98\x23\xc2\x36\x6d\x1a\xaf\x75\x0e\x23\xe9\x68\x55\x2a\xc7\xb1\xc2\xc0\xd5\x52\xac\x5b\xfe\x92\xb1\x46\x81\x8a\x2a\xd8\x15\x43\xb4\xfa\x25\xd2\xa4\x94\x8a\xf0\x3a\x63\x85\xfa\xd5\x10\x47\xa1\x30\x97\x2a\x6e\xdb\xa2\x82\xea\xf4\x54\x31\xf4\x8e\x53\xb2\x37\xef\xe1\xbe\x30\x3b\xd5\x28\x7e\xe6\x25\x5d\x64\x1f\xb4\x67\x84\x46\xe4\x77\xf6\x4e\xd5\x65\x42\x56\xae\xd1\xe1\x34\xba\x96\x65\x61\x98\x68\x66\x82\x72\x11\xef\xab\x0f\xbc\xde\x62\x0c\x56\x17\xb2\xc3\xf8\x76\xc3\x17\x8c\x00\x7a\xdb\xd7\xa5\xed\x0c\xce\x13\x6e\x40\x92\x28\x94\x6d\xce\x5c\xae\x31\xf9\x30\xab\x45\x01\x67\x74\xfe\x9b\x51\x5f\x54\x90\x57\xc7\xd2\x42\xe2\xde\x35\xa6\xc3\x56\x03\xa5\xdc\xfb\x3f\xbc\xa8\xca\xc7\x7e\xe4\x21\x4f\xa7\xf5\xfd\x6e\xa6\x3a\xea\x5d\x54\x17\xca\x90\xf1\xdb\xaf\x1b\xb2\x2c\x1e\x16\xc2\xb0\xd9\x68\xf0\x8d\x5b\x35\x26\x6b\xe4\xd6\x80\xa1\x91\x5b\xfd\x5c\x7a\xb6\x54\x28\x88\x13\x9e\xd1\x3e\x4e\xeb\x2f\x56\x40\x19\x00\x0e\xdf\x1b\x55\x87\xb5\x11\x41\xc6\xb4\xfa\x0e\x0d\x93\x87\x1d\xd4\x24\x94\xa7\xed\xe7\x2c\xcb\xce\xb3\x02\x8b\x60\xcf\x12\x59\xbb\xb9\x33\x36\x1f\x32\x55\x89\x2d\x36\xe0\x6b\xa4\x93\x1f\x69\x1c\x99\x10\x85\x21\xa4\x54\x8b\x5e\x19\xaf\x65\xe8\x3a\x95\xf8\x0f\x4b\xf9\xd6\x5c\x0a\x12\x8d\x70\xed\x57\xd9\xa6\x70\x34\xc3\xa4\x26\x58\x75\xf1\xb4\x7c\x76\x8d\x60\xa9\xad\x5b\x1e\xcc\x17\x96\xeb\x36\xcf\xc0\x0d\x8d\xa3\x03\x69\xe7\x3d\x62\x9a\x6c\x5a\x6e\xf6\x25\xd9\xb4\xbc\x81\x5c\x54\x77\x68\x33\x83\x27\x2a\x8e\x3e\x99\xd6\x50\x7d\xb4\x57\x9b\x1b\xad\x1d\x6d\x44\x79\xcf\xe2\x25\x40\xbe\x7f\xb6\x84\x3a\xd1\x3a\xec\x89\x93\xbb\x74\x52\x48\x13\xa7\x7d\xbd\xdc\x37\x37\x19\xbd\x6a\x12\x82\x9a\x38\x3f\x98\x4e\x3c\xae\x5a\xe2\x35\x1a\xf8\x18\x8a\x8f\xce\xf1\x9a\xe0\x3e\x66\x50\xf0\x68\x36\xc7\x6d\x4a\x7f\xc4\xcd\x70\x0e\x0b\xfd\x37\x6b\x1c\x5b\x12\x88\x8c\xe6\x47\x63\x4d\x11\x85\xc8\x0b\x07\x84\xae\x0c\x9c\x67\x47\x0c\xa9\x38\x2b\x62\x4d\x7e\xab\xc5\x45\xd3\xc6\x8b\x7c\x03\x24\xc5\x93\xf3\x5f\xb8\x09\x17\x5e\x16\x30\x29\x86\x03\x1a\x81\x8d\xd4\x60\xe1\xfe\xeb\x4c\x5c\x0e\x71\x43\xd9\x46\xec\xda\x6c\x24\x99\x51\x25\x74\x71\x28\xe4\x3a\xbe\xba\x5f\x8d\x24\x07\x92\x2d\xda\x22\x4c\x92\x3f\x79\x44\x1d\x99\xb5\x24\x7e\x56\x09\x4f\x9c\xfe\x61\x99\x7a\x62\x4d\x12\x40\xc1\xab\x76\xea\xab\x37\x67\xf3\x9c\x5e\x1c\x72\x58\xf7\xd9\x07\x34\xe9\xbc\x28\xb0\x9c\x3e\x12\x42\x19\x7b\xe7\xcd\xaa\xf8\xad\x44\x5c\xbb\xbc\xb8\xad\x7a\x96\xf6\x92\x2d\xea\xba\x38\x55\x02\x7c\xef\x54\x95\xd6\x54\xb1\x4d\x03\x3c\x80\x9b\x6a\x0f\x7c\x63\xe7\x50\x2a\x59\xe2\xc4\xf0\x9e\x4a\xbb\xe8\xa1\xd3\x42\x61\xec\x9d\xd3\xaa\x92\x1b\xb6\x5a\x8f\x7e\x65\xfc\x99\x19\x2c\x72\x53\x4a\x0c\xe4\xbf\x7b\xff\xcc\xec\xa1\x4e\x18\xf5\x6c\xec\xba\x78\x28\xbf\xc3\xc2\xa7\x94\xcf\x8f\x07\x87\xc5\x91\x3b\xf9\xfe\xf5\xb9\x68\x5e\xa9\x1c\xbf\xba\xf1\x2c\x8d\x29\xdc\xe7\x85\xb4\x4f\xf0\x29\xe2\x99\x27\x75\x6e\x71\x93\x97\x04\xf1\xcf\x8a\x06\xfe\x36\x55\x57\x14\x21\xe5\xc2\xfb\xc7\x6b\x68\x4b\x97\x20\x3e\x76\x4c\xfe\xe4\xbc\x96\x5d\xbd\x58\x60\xd2\xdd\x01\xc1\xf9\x2b\x9c\x34\x3c\xca\x09\xb3\x89\x87\x9d\x8c\xc0\xe7\xa4\xe1\xe6\x14\x8d\x67\xf7\x24\x68\xf0\x2d\xbd\xf0\x45\x21\xe1\x80\x5c\x17\x73\x1d\xb8\xd7\xb7\xa9\xce\x2b\x46\xb5\xe4\xf4\x8b\x9f\x5d\xc7\xb7\xc3\xd2\xc8\xb3\x1c\x07\xe9\x2e\xc9\x73\x1e\xce\x06\x7e\x77\xc0\xa2\x41\xab\x53\x64\x7e\x9f\x41\x52\xab\x83\xba\x8e\x48\xef\x6f\xb9\x4e\xd1\x2d\xdd\x81\xc8\x6e\x10\x8d\x4a\x1e\xff\xe2\x0e\xfe\xeb\xcb\x19\xc1\x76\x23\x63\x16\x36\x6d\xda\x98\x4c\x97\x29\x39\x24\xe2\xab\x8f\x68\x28\x74\x17\x23\xc6\x41\x15\xb3\xaf\x37\x9a\x1b\x94\xd9\x82\x4e\xfb\xb1\x4d\xd2\x43\xda\xc7\x48\xf2\x81\xc7\x6d\x30\xa4\xbd\x34\x08\x19\x6c\xa4\xfc\xad\xa7\x8c\xd1\x47\x87\x88\x81\xd8\xff\x27\xfd\x8c\x1b\xa3\x15\x05\x01\xd6\x61\x69\xf7\x6b\x47\x5b\x8d\x21\x89\xa4\xcb\x4d\x6d\xc5\x12\x22\xab\x2e\x89\xa2\x9f\xe1\xe8\xd7\xd2\x52\xa7\x65\xec\x98\x7b\xed\xb8\xb1\xd0\x48\x05\x33\x92\x3a\x82\xc7\xa8\xdf\x58\x06\x6e\x25\xcd\xee\x21\x90\xcc\x1a\xad\xf2\x25\x86\x06\x1a\xd4\x4b\x4e\x98\xcd\x73\xd2\x13\x06\x33\x9d\x5f\x74\xca\x7d\xc2\x6f\x66\x2e\xb4\xef\xf7\xce\x19\xa3\x4f\x39\x7c\x02\xdf\x79\x93\x69\x15\x28\xd8\xe9\xbc\x64\x5d\xf6\x7c\x4b\xc1\x64\x61\xe6\xa5\x26\x9f\x73\xb6\x71\xac\xdc\x1a\x5c\x83\x88\xa2\xd0\xb2\xdf\x5d\xae\xab\x43\x56\x2a\x1c\xa7\x99\x5f\x6e\xa8\x4e\x87\x0c\x7b\xa2\xcf\x10\xff\xc2\x30\x44\xf7\x30\x81\x4e\x2c\x9f\xb7\x3c\xb2\x2e\x1b\x6a\x3c\x62\x39\xd4\x45\x81\x91\x85\x1d\x79\x47\xab\xd1\x18\x4e\x07\x42\xb9\x37\x9e\x48\xfb\x2c\xc4\x6b\x96\xca\xf1\xf0\xce\x16\x44\x31\x77\x82\x11\xe8\x85\xd3\xee\xd1\xfc\x71\x03\x82\x1d\x6d\xc7\x5e\x37\x73\xac\x46\x61\xac\x22\x2f\xe4\x8c\xfb\xa5\xa6\x1f\xa6\x6d\x63\xcf\x15\x54\xf1\xf8\xcf\x06\x3a\xca\x47\x2c\xe4\xa4\xb0\xf2\x60\x7e\x97\x36\x2a\x47\x0d\xdf\x25\x61\x64\x73\x9a\x71\xcc\x7d\x3d\xd2\x8f\xcd\xe6\xe5\xdc\x7b\x9f\xd1\xfa\x1e\x51\x52\xc8\xc2\xf7\x7c\xfc\x06\x3d\x5a\x55\x89\x87\x3c\x61\x85\x5d\x98\xf6\x5c\x76\x81\x39\x51\x83\xb8\x84\x1b\x48\x43\xb0\xff\x7f\xef\xa8\xdb\xe2\x2a\x3b\xc9\x46\xed\xdb\x99\x0e\x54\x9a\x38\xf5\xc4\x7e\x79\x84\x69\x51\xe0\xd9\x00\x97\x4b\xce\xa8\xfc\xe8\xb7\x0c\x76\x1c\x1a\x10\x09\xd4\x3f\x3d\x61\xd2\x1d\x1a\x0d\xc4\x88\x9b\xf2\xe9\x2f\x93\x1d\x1a\xc2\x42\x87\xab\xff\x0d\x16\x76\xdd\x68\x10\x44\x50\x3a\x75\xde\x3b\xca\x38\xd5\x11\x37\xb5\x81\xcf\x3d\xaa\x41\x22\x1a\xc8\xc5\x4d\xea\x8a\x5e\xc0\xe7\x2e\x1d\xab\xa1\xa3\x25\xa1\x25\x77\xee\xdd\x06\x9c\x85\x22\x89\x9c\xff\xda\x9e\xec\x0f\x09\xcb\x04\x6e\xf8\xf8\xd7\x87\x2e\x34\x9f\xed\xdf\x71\xc6\x3e\xbc\x55\x33\x80\x13\xb2\x0d\xe5\xc1\xdc\x8e\xa3\xa6\x2b\x11\x77\x45\x42\x52\x03\xa9\xf0\xed\x9d\x0a\x57\x62\x93\x20\x00\x35\x7b\x2d\x62\xed\x7a\x45\x83\x05\xe1\xfe\x10\xb8\x42\x00\xe7\x38\xa1\x31\x96\x22\x56\xc3\x0c\x30\x33\x45\xd7\xd1\xce\x43\xcb\x69\x10\xbe\xa9\xbf\x3e\x5a\xf3\xae\x4c\x6a\x35\x48\xf5\x77\x1d\x6f\x69\x2d\xfa\x51\x28\x70\x1e\xff\xbc\x59\x99\xb8\x3a\xc9\x51\xf4\xb1\x75\x2a\xdb\x77\x30\x62\x21\x08\xd8\x25\x39\xf2\x41\xed\x0f\xc8\xf7\x05\x49\x62\x30\xf7\xcd\x67\x0c\xe3\x24\x54\x27\xc2\xce\x47\x62\x3c\x72\xdf\xb9\x53\x0d\x08\x2b\x70\x0b\xc5\x07\xf8\xc9\xf8\x91\x8f\x5e\x2e\xfb\x8d\x0b\xb4\xbb\x6a\x00\x01\x1a\xbe\x7f\xe9\x32\x65\x10\x40\xfb\xd4\xb1\xb5\xba\x4d\x6b\x3b\xba\x91\x9d\x22\x4a\xf2\x3b\x2f\xd1\x54\x83\x2c\x86\x7c\xb1\x44\x96\x6a\xee\x87\x00\x8f\x00\x22\x8a\x27\x71\x73\x28\x6a\x80\xd9\xf1\x8e\xc7\x75\x5c\x18\x0d\xf9\x00\xa5\x3c\x98\x5b\x74\x74\xb4\x96\x0d\x79\x5c\xee\x69\xcf\x1b\x93\xf5\xa9\x0e\x18\x7c\xb6\xa4\x98\x5f\x9f\xaf\x00\x8c\x36\xd6\x04\x99\x6e\x35\xb4\x72\x68\x72\x6a\x73\x68\xc8\xe7\x17\xf1\xae\x4f\x4f\x52\x6e\x99\xe5\xd4\xa7\x17\x4d\x37\x72\x1f\x70\x3a\x0a\x86\x40\x59\xe4\xd7\xef\x34\x68\xdb\x5c\xa1\x0b\x40\x25\xed\xdb\xb3\xc1\x19\xbb\x2e\xf1\x79\x0b\x4c\x2f\x01\x56\xee\x19\xad\x33\x64\x2c\xa7\x54\x8e\x1f\x9a\x61\x4a\xa1\xe2\x50\x98\xd1\xe6\xd6\x5e\x97\xcd\x8d\xa7\x08\xba\xf1\xa9\xda\xd9\x1c\x26\xf5\x9c\xe8\xbe\xce\x9f\xc0\x57\xc3\x12\x17\xc9\x11\xf8\x82\x5b\x46\x6b\x18\x45\x02\x15\x51\xfe\x86\x1b\x0c\xb2\x08\x61\x7d\xc8\xad\xcb\xb1\xde\xfc\x4d\x86\x4f\x2b\x28\x88\xa7\x26\xec\xb9\x89\x77\x43\x85\xe5\x62\xaf\x94\x1c\xad\xf1\xc8\xd7\x4d\x31\x54\x6c\x61\x3b\x95\xa9\xc8\xbd\xa0\xdb\xda\xa2\xd0\xa1\x2e\xa7\x9b\xfc\x46\xb8\xfc\x27\xef\x14\x32\x62\x28\xbb\xfe\xbc\x5b\x81\x2d\xfa\x18\x09\xb9\x9e\xa2\x3c\x79\x3e\x60\x58\x2e\xa7\x9a\x8b\xe2\x98\xdc\xf3\x4e\x36\xd1\x0b\x2a\xd6\x90\x6a\xd5\x0f\x31\xde\x21\xed\xec\xd4\xa9\x0c\x9f\x37\x44\xc8\x2d\x6a\x21\xe2\x49\x03\xeb\x97\xb7\xf3\xf6\xee\x92\xc0\x45\x1a\x21\xf4\xd1\x3b\xd2\x16\xd1\x00\x4d\x99\xd5\x97\x3d\xa7\xe8\x90\x19\x61\xa7\x53\x0d\x3a\xb1\x4b\xbd\x5a\x48\x1a\x58\x38\xbe\xec\x39\x6e\x2a\x5a\x97\x6c\x5c\xe5\x93\x7f\x81\xad\x1d\xfe\x92\xac\xed\x6a\x72\x01\x5e\x78\xbd\xda\x6c\x0d\xca\xc9\xe1\xf0\x34\x17\xdc\x65\x0c\xc7\xa3\x24\x85\x16\x2d\x94\xf1\x4c\x13\xad\x82\xd1\x0e\xe3\x8e\x1b\xb9\x71\xcf\x6b\xed\xb5\x81\x86\xef\x80\x9c\xf0\x8c\x6c\xfb\x15\x79\x36\xc3\x46\x02\x92\xff\xb8\xd1\xa6\x14\x83\x06\x7e\x66\x7f\xf7\x25\xf3\x6a\xe0\xd5\x89\x14\xe0\x5b\xab\xf9\xc9\xd7\xc0\x96\x83\x3c\x12\xc0\x95\xfc\x61\xa6\x50\x86\x70\x09\xfc\xff\x17\x5e\x32\x60\x48\x8c\x06\xd8\x02\x3b\x0d\xfe\x3d\xf1\x73\x33\xcf\xd6\x33\xdb\x64\xaf\xd6\xa0\x8b\x0f\x0f\xe4\x60\xac\x99\x59\x21\x56\x43\x0d\x64\x6f\x85\x10\xb4\xfc\x4d\x3d\x41\x44\x82\x71\xfb\x2f\x53\x4c\x29\x1f\x90\x7f\x94\x7c\xc1\xa5\x69\xe0\x9f\xee\x26\x2f\xe2\x9b\x77\x6b\x6c\x8e\xe4\xfd\x5b\x44\xba\x95\xe7\xa7\x1d\x32\xc9\x95\xd8\x75\x25\xa9\xe0\x98\xf1\x68\xea\xc4\x75\xa5\x9e\x70\xfc\xea\xb1\xbf\x73\x38\x68\x0e\x6b\xf7\x3f\x69\x40\xad\x44\x60\x60\x92\x02\x58\xfc\xb8\x6f\x8e\xeb\xad\x88\x21\x4b\x94\xf8\x1f\x16\x60\xeb\x65\x24\x80\x02\x10\xc3\x11\xd9\xc6\x8b\x1a\x1f\x31\x97\xa0\x64\x55\x21\xc6\x31\x62\x85\xdb\x86\x0d\x05\xf4\x93\xda\xa6\xc3\x0f\x1b\x5d\x0b\x86\x05\x3b\x35\x7f\xf9\xb6\x0c\x78\x99\x00\x21\xad\xf0\x59\x57\x4d\x6e\xab\xd0\x19\x2b\xfc\xf5\x81\x33\x64\xb6\x2e\xca\x8f\xf8\x3f\x36\x6b\x92\x33\xdd\xa5\x72\x7c\x9f\xcb\xc3\xfb\x65\xd4\x0b\x49\x2d\x72\x89\xd6\x05\x2c\x30\x21\x10\xdb\x88\x6c\x5b\x88\x6f\x9c\x9c\x66\x34\xaa\x05\x2b\x7e\x76\xa9\x1c\x9f\xb3\x58\xf5\x10\x42\x50\x17\xd2\xf0\x28\xef\xea\x06\x04\x88\x04\xe9\x39\x99\x7b\x50\x30\x2c\x42\x4a\xa1\x9b\x9c\x3f\xd7\xc0\x8c\x78\x94\xf1\x42\xb6\x70\xe2\xa0\x4e\x49\x4b\xca\x56\xde\x3e\xff\xcf\xdb\x95\xd8\x56\xb2\x9e\x30\x40\xc7\x32\xf2\xb5\xdd\x07\x8c\xb8\xe0\x22\x56\x9f\xa5\x5b\xc1\x16\x2e\x1e\xa1\xa1\x77\xa3\x0a\x28\x27\xc7\x3f\x78\x5b\x00\x23\x2c\xa4\x47\xad\xc1\xe2\x65\x1b\xb4\x8d\x00\x18\x72\x4e\x90\x8b\xa7\x0b\xb7\xfd\xcb\xa8\x4b\x1b\x15\x6e\x7b\xfd\xa1\xab\xd7\xc6\x1b\x35\x83\xe3\x5a\x44\x6c\x49\x9c\xce\xbf\x39\x29\xbb\x3a\x1d\xe2\x56\x30\xcb\x58\x82\x14\x46\xad\xce\x76\x39\x51\x03\x6d\xa5\x5e\x87\x45\x1b\x43\x54\xe1\xf7\xbc\x73\xba\x38\x66\x7b\x23\x00\x46\xef\xec\x49\xb7\xd9\x45\xa5\x39\xc9\x6f\x8e\x7b\x4d\xd5\xe2\x49\x32\x9c\xc4\x18\x81\xca\x4b\x96\xc9\x9a\x33\xc4\x17\x34\x89\x2c\x5c\xbf\xf7\x64\xf6\x01\x46\x1e\x69\x62\x16\x80\x87\x87\xe8\x81\x59\x06\x89\x52\x6a\x25\x8a\x04\xf8\x77\x9a\x20\x50\xfa\xcd\x62\x11\x7c\xef\x29\xf5\xec\x49\xd0\x40\x04\x9a\x85\xf7\x37\xd3\x84\x6d\x01\x00\xc6\xde\x3e\xc5\x80\xf8\x00\x33\x95\xff\xfa\x3d\x9b\xf9\xf1\xb2\x2c\xaa\x56\x75\xdf\xb4\x75\x13\xcd\x91\xd8\x00\xad\x56\x05\x2a\xfc\x7b\xbb\xf9\x39\xe6\x63\xdf\xc7\xcc\xa2\x8c\x8b\xde\x5d\xf8\xb4\x16\xd9\x69\x18\xd4\x69\x85\xb8\xa4\x54\x8e\x9f\xd4\xac\x6d\x21\x8b\x49\x6a\x7f\xe2\xbb\x44\x0a\xb6\x39\xb7\xb5\x1c\xe6\x4d\x42\xa3\x40\x0a\xf7\xce\xbc\xf5\x7c\x23\x4f\x47\xcc\x4e\xc9\x22\xe2\x48\xdc\xf7\xdc\x38\xad\xff\x9d\xec\x30\xd0\x6a\x5a\xf3\xb6\x69\x7e\xe0\x4a\x66\xdd\x45\xd7\xe9\xda\xc4\x9c\x7a\x91\x1f\xdd\x9b\xad\x95\xc0\xf5\x0f\x40\xdd\xa2\x46\xfd\x82\xe8\xb9\x54\x23\xcf\xe6\xd1\xc9\x95\x4a\x0c\x8b\xdf\x4a\xcf\xdf\x3a\x6d\xaa\xd3\x7a\xd4\x6c\x71\x88\x0b\x64\xba\xb4\xe0\xca\xaf\xcf\x76\xe2\x6c\xdc\xa0\x16\x43\x21\xb1\x20\x2d\x32\x97\xe8\x9c\x47\x55\x43\xb4\x0f\x31\xaf\x35\x5b\x2d\x14\xc7\xf2\x8b\xfb\x08\x0e\x42\xcb\xc1\x01\x37\x70\x83\x1f\xdb\x50\x55\x47\x0d\xa3\x36\xe6\xe7\x1f\x7d\xa0\x25\x63\xe6\x49\x5c\x6f\xb7\x0e\x03\x94\xa3\xef\xf2\x60\xe1\x97\x0f\x0c\xc5\x86\x14\x3d\x83\x78\x89\x9d\xcd\x4a\x83\x6b\x23\x24\x60\x3b\xfa\x28\xa8\x7d\xb9\x58\x42\x55\x02\x17\x49\x10\x44\xca\xf1\x1b\xb2\xcb\x6e\x7a\xe8\x10\x26\x58\xa8\x9f\x7d\x8b\x47\xdd\xd5\x7c\x76\x60\x68\xd5\x5c\xc2\xe3\xc7\x95\x4b\xd6\xf5\xac\x5c\xa3\x45\x9c\x6b\x66\x6a\xd3\x37\xe4\x4b\x62\x7b\x75\xd3\x24\x2d\x3d\xf4\x90\x8d\x5a\x9e\xf6\xcc\x87\x5b\xd9\xcd\xcc\x4e\x25\x91\xcf\xbd\x95\xbf\xd3\xc8\x93\x5c\x15\x8e\xc4\xdc\xa0\x35\xec\x2c\x30\xc7\x45\x3a\x9f\x71\xe5\xb3\x9a\x99\x28\x8d\xbc\x10\xc8\x32\xe2\x15\x79\x27\xd4\x79\xd4\x4b\x2b\xa5\x72\x7c\xb7\xd6\xd2\xe1\x3e\x6a\xf0\x9c\x0e\xde\x7c\x81\x91\x2d\x87\x96\xd3\x6a\x0a\x57\x9c\xbb\xc7\xa0\x93\x01\xc0\x2b\xf5\xe5\xf9\xdd\x8c\x73\xb4\x1e\x61\x1f\x66\xc9\xcb\xec\x4d\x9b\xd8\x85\x71\x6f\xa6\x2a\x27\x42\x0d\x24\xfe\xa8\x36\x3f\xd4\x04\x2f\x6f\xda\x69\xcc\x91\x51\x85\x78\x58\x9a\xfb\xe6\xff\xfb\xc5\x36\x6d\xa7\xb9\x36\x91\x28\x90\x58\x03\xde\x54\x18\x96\x43\xd5\x11\x6f\x69\x24\x0f\x57\xd6\x7b\xbf\xbd\xc4\x30\x66\xf1\xaa\x2e\x58\x77\xf0\x34\x36\xf7\xcc\x4c\x93\x20\xef\xd5\x79\x3b\xf2\xa3\x8f\xf2\xe5\x71\x85\x83\x58\x40\x3c\x4a\x44\xfb\x6f\x60\xc3\x68\x99\xb2\xf9\x49\x55\x98\x1c\x45\xef\xdc\x23\x0c\xb6\xb0\x43\x2c\x71\x82\x5f\x7f\xbc\xc5\x6d\x24\xf9\xf7\x6a\x16\x9e\xfb\xe6\x3d\x66\x8a\x88\x2c\xee\x09\x83\x99\xd0\x53\xfe\xd7\x91\x59\xb6\x44\x08\xd2\x7a\x42\x19\x29\xd3\xe2\xdf\x20\x4f\xf7\x24\x57\x4b\x3e\xba\xfa\x78\x7a\x16\xcd\xef\x9a\x0f\xa1\x66\x4b\x1a\xe5\x39\x63\x26\x77\xc5\x9d\x9a\x7e\x4e\x72\xca\x60\xd0\x0a\xcb\x2d\xe9\x1d\x97\x5d\x42\x9c\x9d\x95\x9f\xdb\xd4\x52\x4f\x8c\x2a\xfc\x85\xfc\xba\x5d\x01\x8e\x3b\x3b\x3b\xa0\x8b\x19\xed\x6e\xcb\x30\x4a\x48\xe0\xe0\x66\xa9\x1c\xbf\x38\x89\x6f\x81\xa5\x8c\x64\x5a\xcf\xed\x4f\xab\x43\xdb\x45\x7d\x03\x98\x71\x9d\xe8\xc2\xfe\x63\x29\x23\x1a\x8a\xb8\x3c\x97\x22\x4c\x1e\xc6\xd4\x96\x50\xf6\xf9\xf5\x1a\x59\x58\xc7\x79\xbf\xb5\x5c\xad\x19\xd0\x20\x05\x84\x5e\xa1\xca\x47\x2a\xa5\x15\xa4\xe6\xb4\x14\xd2\x1f\xd9\x6b\x8c\x10\x93\x08\x28\x96\xcd\x8c\xe1\xed\x5a\xb9\x3a\x10\x04\x5a\x3a\x97\x6b\xeb\x48\x9f\xf3\xdc\xf9\x80\xed\x41\xd7\x19\x66\x9f\x7e\xeb\x1b\x1c\xcc\xf5\x3c\xd4\xa6\x34\xdb\x34\x13\xcd\xc2\x35\x87\xd5\x24\x69\xfe\xdc\xd2\xbc\x85\xb0\x3f\x0c\x95\x22\x9a\x24\xf1\x82\x69\x12\x9f\x6e\x10\x7e\x42\x6c\x39\x1e\x75\x69\x4d\x8c\xd1\xf2\xdd\xf7\x1a\xed\x78\x8f\xf6\x81\x3f\x3b\x96\x4c\xdd\xae\xed\xaa\x3c\xb1\x22\xec\xba\x3a\x31\x36\xbf\xf5\x36\x93\x7f\xe2\xba\x12\x47\xd1\xdb\x79\xa6\x56\x5b\x54\xb8\x59\x0e\xb4\xac\x0e\xbe\x63\x9a\x46\x51\x5a\x4d\x51\x0f\xa7\xba\x19\xef\x90\x35\x6b\xd6\xce\x82\x43\x8f\x1f\x7d\xf1\x47\x87\x2b\xab\x20\x30\xab\xa1\xac\x15\x57\x75\xe1\x06\xb5\xc6\xa3\x24\x25\x5b\xf4\x88\x51\x4c\xf0\xf3\x54\x44\xe4\x51\x73\x8c\x80\x9d\xda\x7c\x40\x07\xe1\x85\xbd\x0a\x41\xc2\x40\x52\xb7\x78\xfa\xb3\x6a\xb1\x27\x0f\x25\xb9\xad\x2f\x0e\x33\x14\x47\x02\x82\x3c\x61\x22\x0c\x50\x60\xcf\x70\xc6\x41\x29\x48\x25\x37\xec\x71\xe9\x0f\x0e\x16\x6e\x50\x50\xfc\x6e\xaa\x81\x4e\x73\x22\x06\xb1\x3a\xd9\x82\x2f\x9a\xdc\x59\x98\xd3\xc9\xc1\xc6\xc1\x27\xf8\xfe\x5a\x8b\x18\xd3\xea\x82\xc2\xa7\xd7\x6a\xa2\xa2\x34\x08\x4b\x0d\xca\x42\xcc\x0d\x3f\x7e\x7c\xb3\x92\xb0\x4d\x12\xe2\x68\xeb\x56\xa2\xb3\x6e\x8d\x89\x2b\xea\xab\x2b\xa9\x81\xfc\x9d\x79\xc3\x1a\x9c\x22\x0e\x98\xca\x85\x97\x9a\x70\x5c\x0b\x31\x0f\x85\x7c\x28\x5c\x38\x57\x45\xa3\xee\x2e\x10\x08\xfb\x42\xb7\x81\x1c\x42\xbe\x9f\xe4\xfa\xfc\x5d\xac\xdc\xab\xd6\x63\x2f\x76\x49\x40\x74\x7e\xe6\xf6\x0e\x53\x3f\x0f\x35\x71\x10\x8a\x66\xc5\x7b\x26\x0a\x9f\x6e\xea\x36\xb0\x3e\x7b\x99\x3d\xc5\x64\xe7\xd3\x40\xd0\x22\xf3\xf9\x5d\x5a\xb0\x6b\x50\x0a\x89\xf1\xfa\x6d\xa6\x74\x86\x80\xd6\x01\xe2\xe8\x92\x47\xd4\xce\xef\x9c\x53\x2a\xc7\xf8\x3e\xe3\xb2\x22\x1c\x84\x29\xa1\xe1\xd6\x77\xd4\x2f\xcc\x9d\x23\xce\x97\x5d\x8f\xab\x1e\x6d\x18\x96\xca\x71\xfb\x23\x46\x3f\x1b\x78\x23\xbc\x51\xb1\xe5\x11\xc3\xf0\xa4\xc1\xa5\x64\x64\x2f\xfc\xe3\xf3\xd5\x34\x85\x94\x92\x4b\xfc\xdc\x04\xe5\x68\x37\x1f\xb4\x9e\x7a\xf7\x68\xfd\x53\xe2\x3b\x82\xde\x9b\x3f\x3a\x33\x2b\x3f\x55\xe3\xf2\x53\x97\x1d\x35\xe7\x31\x28\x08\xb8\xf4\x24\xbc\xf6\xff\xb7\x48\xf7\xf2\x0f\xf8\x41\xf3\xfd\xca\x99\x66\x51\x23\xb6\xd8\x99\xf3\x8d\x5a\x26\xf2\x01\xc4\x2c\x5e\xc2\x8a\xc5\x70\xda\x42\x0f\xaf\x4b\x3c\xa1\xff\xda\x3e\x46\x5b\xaf\x2e\x28\x11\xc7\x1f\xd0\x4c\xe2\x03\x1f\xb1\xba\xc0\x6b\x17\x1e\x99\x63\xea\x79\xb2\x50\x92\x2a\x8a\x13\x43\x43\x63\x85\xa1\x6b\x39\xb7\x06\xcc\xc1\xa7\x2a\x71\xf2\xd2\x82\xe4\xdf\x97\x8c\xe2\xac\xca\x30\x0e\x69\x9f\x27\xa4\x0a\x41\x68\xd9\x35\x71\x29\x11\x1f\xd5\x41\x60\xfe\xe3\x54\xe5\x51\x1a\x9a\x73\xfa\xc1\xfc\xf7\x9f\x30\x65\xa8\x01\x2b\x91\x7a\xcd\x7c\xe9\x61\x15\x7d\xbc\x88\x67\x5c\x73\x1e\x1d\xa3\x0f\xb9\x28\x03\xe9\xef\x93\x07\x4d\x92\x06\xa8\xf4\xc0\xd6\xfb\xc0\x73\xc6\xb8\x90\x84\x64\x2b\x96\x03\xcc\xf8\xc6\x4b\xc6\x88\x2f\xb3\xb0\x67\x13\x5e\x70\x15\x77\xae\xd5\xfa\x9d\x0e\x75\x31\xcc\x0b\xf8\x74\x77\x30\xff\xa3\xfb\xb5\x9a\x80\x86\x28\xa4\x42\xa9\x64\xea\x9a\xf4\x50\x63\x91\x3e\x01\x7c\xe6\x84\x96\xa6\xba\xb8\x1e\x32\xf0\x37\xb9\xea\x0e\x8d\xac\xae\xc7\xc4\x19\xa9\xea\x99\x0d\xfe\x4d\xaa\x5d\xbd\xef\xd0\xb9\x66\x29\x68\x63\x0b\x07\x01\x15\x00\xad\xe2\xae\x51\x29\x3a\xc2\xa5\xad\x44\xd3\xe9\xaf\x8c\x14\x79\x79\x48\xa0\x4d\xbe\x45\x77\x5f\x23\x0d\xfe\x04\x72\xfe\x22\xd3\xe1\x99\x35\xb1\xcb\x21\xa9\x1f\x36\xe2\x8f\x85\xdc\x64\x17\xf2\x81\xe2\x0f\xa6\x1a\xa7\x8c\xef\x33\xda\x44\x2e\xe7\x5c\x16\xd6\x6f\xd6\x64\xfa\x3b\xf8\x63\x8b\x36\xb6\x98\x96\x40\xfb\x90\xa3\x78\x93\xab\x79\xdb\x30\xc3\x0e\x7c\xe2\xa5\xf5\x76\xe1\x34\xdf\x54\xc4\x24\x15\x02\x89\x6d\xee\x9a\x7b\xd4\x06\x75\x22\x2e\x54\x56\x58\x67\x38\x26\x08\x83\x23\x71\x32\xaf\xda\x64\xce\x97\x45\x15\x22\x9e\x6f\xdb\xe6\x6c\xc7\xd5\x72\x89\x17\x52\x2f\xb9\x3f\x15\xa2\x3f\x73\x87\x96\xa0\x33\x02\x4d\x99\xf8\x17\x2b\xb2\xd7\x59\xb3\x25\x48\x3e\xf7\xda\xfd\x06\xc6\xc1\x23\xd5\x14\xc2\xfc\x47\x63\x09\xd7\x18\xc1\x4d\xe5\x0b\x9d\x5b\x79\x44\xad\x47\xac\xc1\xa9\x17\xfa\x86\xc4\x1b\x88\x83\x09\x68\xf7\x43\x86\x1b\x1a\x1f\xfc\xb6\x94\x48\xb9\x13\x9a\x54\x7f\x05\x5b\x28\xca\x50\xc2\xda\x8e\x19\xd9\x80\x90\x5c\x10\xed\xe3\xdc\xb7\x5f\x17\xce\xda\x4b\x56\xae\xf9\xa8\x1c\x62\x2d\xed\x51\x9b\x58\xb3\xd2\x1e\xab\x32\x29\x46\x6c\x62\x45\x2e\xc8\xb3\xc6\xdf\xdf\xaf\xda\x10\x5d\xd3\x50\x03\xce\xfe\x2b\x97\xf3\xb3\xff\x4a\xea\x61\xdd\xf9\x73\xcb\x72\xc5\x19\x01\x34\xce\x59\xcf\xea\x24\x1e\xdd\x82\x2b\xb7\x61\x43\xbb\x76\x6b\xa6\x38\xc3\x3e\x4d\xed\x98\x78\x75\x00\x48\x01\xab\xfb\x0a\x41\x48\x6d\x10\x97\x84\x88\x91\xad\x5c\xc2\x6a\xc3\x23\xa7\xcb\xa2\xb6\xc9\xff\xcb\xe2\x4b\x27\x69\x19\x15\x04\x2b\x33\x06\xfe\xe7\xdb\xa7\x6b\xc8\xa0\x52\x39\x2e\x1d\x17\xad\x75\xe1\x54\x31\xe9\x3a\x15\x89\xa6\xb7\x64\xd1\x1f\xe4\x9e\x07\xa5\x32\x62\xa8\xc5\x85\xb8\xb0\xe3\x35\x1d\x59\xeb\x52\x06\x0c\x81\xf8\x0b\x63\x25\x58\xdd\x1b\x10\x90\xa7\x29\xbd\xd9\x95\x79\x51\x77\x9a\xa8\xfe\xeb\xb3\xdc\xf1\x6b\xad\x43\x60\x80\xd6\xf2\x2b\x13\x8e\x19\x87\x9a\x43\xfc\xd4\x2e\x22\x9e\x36\x91\xdf\x4f\xd9\x03\x64\xcc\x4f\x0c\xa1\x81\xce\xae\xd9\xf3\xe6\x5e\x24\x62\x71\xd7\xd3\xe9\xbb\xab\x51\x52\x2a\xc7\xe7\x2e\xd6\xd5\xe1\xa9\xef\xe2\xe9\x81\xec\x0d\x8d\x5f\x96\x6d\xa4\x38\x98\x21\xd7\x16\xcd\x77\x0d\xe1\x77\x8b\xe9\xc8\x56\x61\xb8\x6f\xa8\xf1\x53\xe1\x55\x65\xb2\x15\x32\x5d\x8a\xe5\x23\xcf\x1b\xda\x42\x94\x5b\x71\xf3\x21\xc1\x37\x37\xaa\xb4\xa3\x09\x61\xbd\xed\x39\xd9\xfa\xb0\x31\xab\x21\x26\xa0\xfe\x85\x6f\x3d\x6c\xc0\x0c\x7c\x5a\xc7\x41\x43\xcc\x93\xcb\xf1\xbe\x83\x53\xb4\x1d\x50\x73\xc2\x52\x1f\xef\x66\x66\xaf\xf3\x6b\xcf\x8e\xd2\xda\x85\xb0\xd2\xf6\x1c\xd5\x2e\x5d\xe5\xb3\xf1\xd7\x5b\xd3\xa9\xa8\x21\xdd\x24\x7e\x3b\x59\x18\xf6\x2c\x9c\x7b\x51\xa9\x1c\x8f\x78\xfd\x02\xbd\x93\x8a\x83\x90\xd4\xd0\x10\xc7\x76\xf1\x0d\xbe\xfc\xb9\x2f\x10\x11\x19\x54\xe1\x93\xef\xe8\xd8\x85\x0a\xb6\xa1\x04\xfe\xf9\xb0\x96\xc6\x80\xf0\xa3\x92\x12\x7b\x33\x5c\x6d\xfe\x8a\x80\xeb\x17\x1f\x7e\xdb\xf4\x1b\xf0\x19\xe6\x2e\x56\x7c\x92\xf1\x83\x51\x63\xe4\xdf\xd2\x51\x7c\x7c\xda\x16\xdd\x6f\x2a\x40\x36\xf6\x92\xd7\x51\xb8\xf6\x19\xcd\xc3\x1c\xf9\x75\x7e\xf7\x17\xf5\x1b\x87\x00\x23\x00\xb7\xe7\x6a\x55\xdf\xba\x5e\x23\x34\x32\x8c\xf9\xdc\x69\xd2\x0d\x2d\xb6\xc2\x2c\x48\x21\xf8\x67\xae\xe0\x0f\x66\x19\x86\x97\x26\x23\xd2\x4d\x93\x4c\x75\xab\x88\x85\xce\xac\xde\x5e\x2e\x23\xf5\x70\xba\x7a\xba\xe6\x27\x49\x6b\xf1\x94\x67\x78\x1c\xa1\xae\x2d\xa8\x24\x57\x3d\x2f\x9a\x81\xd0\x33\x49\xfd\x11\x7e\x70\x77\x4b\xa3\x31\xc4\x56\x28\xab\xa3\x0b\x4d\xd9\x3f\xc4\x30\x66\x29\x88\xf2\xfc\xed\x06\xf1\x90\x70\x8b\x5f\xbe\xa8\xb7\xef\xe2\x59\x42\x80\x11\x20\x18\xff\x67\x97\xc9\xfe\x0e\xe4\x0f\xe5\xe8\x2d\x7f\x6f\xfc\xcb\x1b\xc2\x9f\xd9\x39\x51\x6f\xcb\x96\x02\x07\x00\x26\x72\x58\x13\x7f\xb6\x32\x46\xcb\x66\x69\x9d\x0b\x31\xb7\x6f\xe7\x65\x4c\x4f\x80\x5d\xa4\x04\x72\xe3\x2b\xdf\x92\x7a\x06\x5e\x13\x83\x4c\x45\xbe\xf6\xdc\x50\xa6\x6a\x3e\x95\xfa\xe8\xb9\x1f\x3c\x30\x46\xac\x4b\x4e\x0f\x02\x77\xa0\x7f\x7f\x47\x53\xed\xe3\x08\x94\x52\x39\xfe\xd5\x91\x16\xf5\x10\xce\x0c\x96\x9a\x9d\x77\xb7\xb7\x9b\x4f\xbd\x4a\x04\xda\xba\xf0\xb3\x63\x67\x68\xc4\x3c\x7e\x90\x1c\xb8\x45\xfb\x1d\x1c\x8a\xa1\xd9\x6b\x33\x5b\xd2\x24\x9c\x24\xa6\x8c\xa7\x34\x87\xc7\x8f\x14\xc9\x27\x28\x2c\xc5\x1f\x78\xdb\x18\xa1\xa3\x06\x62\xc8\x13\x8c\x33\x15\xaa\x9a\x27\xda\x74\xf7\x60\x55\xfc\x3d\xde\x66\xe4\x48\x82\xf1\x56\x1e\xcc\xa3\x07\x0c\x81\x4e\x46\x42\x44\x3c\xd1\x62\x87\x13\xfb\xd1\x23\xe3\x8d\x64\x41\x0e\xbe\xf3\xf3\x7b\x0c\x7e\x47\x9d\xc1\x78\x5e\x16\x16\x85\x37\xb4\x20\xce\x30\x28\x28\x54\x23\xb1\x84\xb7\x9f\x10\x0d\x54\x27\x59\x7d\x20\x64\x52\x38\x73\xa3\xc6\x08\x24\x56\xdd\x43\x0d\x78\xcb\x6c\xbf\x99\x91\x42\x87\x0a\x12\xe6\xe1\xd3\xc4\xe3\xa2\x0c\x30\x03\x8b\x76\x1a\xd0\x2c\x4a\x6d\x21\x38\xb1\x76\x6a\xbb\xf6\x3a\xdc\x6a\x49\x99\x40\x0c\x16\x5e\x7f\x5e\x25\xde\xa8\x91\xe9\xc8\x6f\xf0\x26\xb5\xe6\xb5\x08\xdc\xa0\xa5\xde\x67\xcd\xd0\x13\x71\x79\x02\x0b\x73\xde\x81\xdd\x5a\xc9\x16\x55\x1a\x49\xb0\x49\xae\xf4\x91\xbb\x4f\x4d\xfe\xe9\xda\xf2\xd5\xa5\x72\x3c\x6c\xfd\x19\xda\x08\x82\x7b\x3e\x5c\xd4\x33\xd3\x88\x85\x41\x88\x22\xc6\x8d\x26\x5a\x8c\x4e\x0b\x3f\x7d\xcc\x58\x57\x1e\x72\x07\x02\xa9\xc5\x58\x18\xa3\x19\x98\x01\xf2\x24\x3d\x2a\x7e\xbd\x87\x67\x6a\x1e\xb6\x92\xa4\x86\x0b\xc0\xbc\x70\x69\x76\x6b\x4b\x4b\x5c\xd9\xb7\x7e\xdf\x58\x0d\xef\x47\x71\xc8\x41\x5c\x85\x9f\x1a\x8b\xad\x73\x5e\x49\x86\x9d\xcd\x6f\x65\x8f\xed\x1a\x62\x36\xf6\x04\xb3\x51\x4d\x56\xc7\x8b\x23\x54\x99\x20\x73\xe3\xb2\xab\xee\x31\xf5\xda\xc2\x59\x7d\xdc\x58\x19\xc7\xd9\xa7\x1f\x75\xa4\x3c\xea\xc2\x45\x9a\x73\x76\xc6\xa3\xf1\x0d\x4d\x70\x89\x4a\x30\x55\xff\xf6\xb4\x0d\x3b\xbd\x51\x2a\xc7\xdf\xe8\xca\x86\xca\xb9\x73\x00\x9f\x22\x6a\x93\x9d\xe3\x0d\x0e\x22\xf5\x6c\xd0\xda\x53\x0d\xa9\x7b\xb7\x9b\x9e\x8b\x36\x48\xf3\x73\xa9\x99\x6d\xaf\x67\x53\x14\x8e\xe5\x0f\x38\xbd\x3e\x3b\xaf\x70\xd7\x1b\x93\x72\x61\xde\x38\xbb\x54\x8e\xff\xe1\x66\xb5\xb0\xeb\x34\x70\x88\xa6\xef\xf4\x89\x47\x0d\x30\x96\x83\xb1\x14\xc4\x3e\xc6\xc7\x9f\xa5\x25\xac\xc1\x15\xa4\xb5\xb3\xeb\x6f\x86\xc2\x6d\x92\x03\xc2\x52\x12\x94\xc9\x5f\x75\x99\x64\x20\x4f\x99\xcb\xe7\x6f\xd5\xb0\xc1\x36\x6d\x20\x02\x1b\x3c\x77\x28\xdf\xa6\xad\xc1\x2a\x0e\xc2\x01\xce\xe3\xdb\xbe\x21\x8b\x57\xac\x76\x54\x3a\x48\xc7\x10\xfd\x7f\x64\x88\xa4\x81\xe8\x88\xac\x96\x6e\x78\x4c\xbd\x53\x50\x92\x84\x87\x3c\xef\x5d\xe3\x23\x91\x8f\x59\x09\x84\x1c\xe2\xb7\x3a\x78\x67\x7c\x1d\xae\xa0\x9a\x4b\x50\xa8\x77\x04\x4f\x72\xdd\xd3\x52\x0f\x23\x55\xea\xe9\x53\xcb\xaf\xcf\x1f\xab\x63\xb8\x45\xe7\x76\xfd\xd3\xa6\x65\xbc\xe7\x29\xd3\xdd\xcf\x1e\x52\x84\x7e\x10\x00\x52\xc2\x10\x37\x3d\x34\x41\x8b\x93\x60\x27\xc1\x4a\x7d\x40\x09\x48\x3e\xf9\xfd\x6e\xb5\x84\x51\xc5\x8e\x84\xa7\xeb\xf0\x58\x83\xb1\x3b\x28\xe0\x86\xf7\x0b\xf6\x9a\xe2\x81\x6e\x56\xe3\xad\x10\x8f\x4e\x7b\x33\x21\x1b\x30\x1f\xf0\x25\xa3\x34\xc0\x2e\xb1\x34\x7d\xfa\xdc\x53\x07\x34\x4f\x56\x4a\x5d\x68\x6b\x97\xca\xf1\xc3\x53\x4e\x17\x19\x56\x43\xf0\x2a\x17\x9e\x10\x0c\x01\x8c\x42\x07\x66\xcd\x6f\x57\x87\xec\x7f\xc9\x22\xf8\xf8\x6a\xc3\xf9\x63\xd6\xa2\x96\xec\xf3\xab\x8b\xb3\xc7\x8d\x87\x08\xa3\x15\xa2\xfa\x58\xde\x1e\x6d\x94\x46\x6c\xec\x0a\x97\xeb\xdc\x83\x33\x78\xba\xbb\x1c\x38\x5e\xf1\x69\x79\x9d\x26\xd6\xc0\xb6\xa8\xfb\xae\x7a\xea\x1c\x99\x5f\x84\x0c\x55\x90\x67\x97\x82\x46\x54\xab\xc9\x16\xdb\x9b\x1a\x2d\xb1\xe2\x52\x6a\x3b\x92\x3c\x30\x6c\xa4\x1c\xfb\xbb\x2e\x0e\x79\x78\x2d\xc7\x27\x1e\x39\xc7\xd3\x87\xfb\xd2\xc8\x4b\x5e\xef\x98\x5d\xba\xf5\x11\x68\x9d\xe5\x6e\x14\x68\x8f\x2b\x5c\x1c\xd4\xa9\x16\x48\x7e\x3e\x43\x17\x83\x06\xfb\x65\x05\x6f\xff\xeb\x3a\xa5\x92\xc7\x22\x17\xb7\x96\x6a\xb7\x3d\x38\x32\xcd\x06\x93\xb3\x30\x3f\x2c\xed\xf9\xb9\xd5\x8e\x52\x39\xfe\xe5\x03\x2d\x26\xf1\x40\x8b\x4a\x69\xf7\x7b\xdf\xcd\xae\xee\x26\x71\x5d\x54\x13\xda\x8b\xa7\x2f\x53\xde\x73\xd0\x09\x68\x55\x9b\xc8\x7d\xd5\x14\x83\xc2\xd8\x07\x9c\x35\x9c\x27\xcf\x3c\x6a\x74\x2c\x60\xa6\x2c\xea\x95\x82\xe1\xcc\x89\x5d\xee\x8e\x91\x5c\xf8\x8c\xf5\x06\x42\x02\x05\x01\x66\x15\x09\xe0\xce\x85\x73\x54\x28\x0a\x69\x54\x73\x38\xc0\xf9\xb2\xa5\x3c\x6f\xe8\x9c\x3f\xaf\xe3\xa2\xe4\x37\x1e\xa8\x8c\xd7\x6a\x05\xae\xe3\x20\x92\xc8\x92\xab\x8b\xf3\x25\x71\x0e\x62\xdc\xd8\x74\x1f\x31\xdc\xc2\x45\xba\xa0\x4b\x95\x24\x1f\xd3\xe2\xea\x63\x4f\x19\x2b\x1d\xb9\xa0\xee\xa9\x8b\x70\xdd\x6f\xa8\x9e\x85\xc4\x95\xd2\xe1\xb9\x77\xba\x78\xde\xc4\x3b\xc2\x10\x08\xd8\x14\x03\xc2\xc8\x2d\x4f\x44\xd6\xf3\x9e\x5b\xd4\xc5\x63\x24\xe1\x37\x8f\xde\xc8\xf7\xec\x12\xaf\x86\x61\xba\x93\xdb\xbc\x9c\x3f\x90\xaa\x14\x0e\xbc\xe9\x09\x95\xb7\xe0\x7e\xdf\xa5\x82\xcc\x96\xfb\xda\x24\xad\x75\x9f\x3c\x8a\xe2\xc5\xb6\xf0\x27\x17\x06\x5e\x76\xfa\x64\x9a\xb8\x55\x57\x7c\xcc\xf8\xec\xdb\x1c\x90\xb5\x54\xf2\x55\xe5\xf9\x3a\xec\x4f\x40\x4f\x72\x4b\x47\x66\x5f\x72\x15\x59\xc0\x7a\x92\x28\xfd\xd3\x3a\xf5\x2d\x5d\x8b\x5c\xc4\xb8\x47\x99\x61\xcb\x50\x8d\x42\xe2\x02\xa1\x30\x7e\xef\xea\x29\xda\x47\x24\xba\xbd\x65\xd5\xce\x32\x10\x9b\xdc\x9b\x70\x16\xab\x80\x4b\xd8\x88\xbb\x0c\x4c\x47\xd4\x87\xbc\x06\xf6\xb2\x3a\xec\xb9\x9f\xbc\xc6\x77\xf5\x6a\xdc\x24\xa1\x06\x92\x2f\xde\x7c\x03\x7f\x0d\x15\x1a\x8a\x75\x89\x5c\x43\xa9\x15\xdb\x1e\xe8\x56\x0b\xa1\xc8\xa9\x33\xce\xd0\xda\x9a\x0d\xfe\xcc\xd4\x34\x30\x02\x6f\xbd\xff\xd9\x74\x86\x46\x71\x46\x49\x26\xf3\x5d\x13\xea\x84\x88\x2b\xfb\x9a\x17\x3d\x2d\x44\x9c\xa8\xcd\x19\xd8\xc5\xd3\x0e\xeb\xa0\x72\x37\xf9\x8f\xf1\x2f\x0e\x9a\x33\xa1\x6a\x54\xc3\x58\x94\xcd\x77\x16\x35\x13\x00\x1a\x85\xc4\xe3\xb2\xb4\xf9\x1d\x93\x79\x6c\xbc\x12\x31\xdd\xce\xf9\x3d\x6f\x4b\xb7\xf8\x90\x70\x1b\xd1\xdc\xe1\x5d\x66\xb3\x93\x6e\xf5\x06\xa4\x06\x58\xbc\xee\xf5\x94\xf8\xd1\x87\xa4\xc4\xef\x0f\x99\x36\xa1\xf6\x3c\xd0\x0c\x82\x16\x0d\xb4\x56\xb7\x67\x63\xda\x56\x54\xcf\xaa\x3a\xec\x7b\xd9\x30\xa3\x9d\x3b\x4f\xd8\xdf\x9c\xaf\x39\x1d\xe0\xc0\x42\x7e\x12\xd0\x97\x1d\x83\xfe\x6f\x69\x29\xa3\xc8\xb6\x50\x10\x92\x56\x37\xda\xfc\xaf\x0c\x2f\x82\x1a\x12\x1b\xf1\xc9\x39\x66\x0b\x61\x80\x7a\xb6\x00\x97\xe7\x3f\x79\x54\xe5\x00\x55\x14\x80\xfc\x77\x8d\xd1\x3e\xd1\xa6\xfb\xde\xec\x31\xca\x27\x21\x92\x81\x69\xf0\xa0\xe9\xd7\xaf\x66\x28\xbb\xc7\x9b\x13\xd4\x2a\xb8\x76\x8a\x59\xe1\xd9\xc7\xd3\x35\x33\xbf\xd4\x9d\xfc\xc4\x84\x51\xa6\x5b\xd3\x80\x68\x18\xff\x79\xcd\x68\x9d\x23\xe2\xd5\x4b\xe5\xf8\xdb\x2f\xf3\xe6\xe0\xd5\x4b\xaf\x2e\x2d\xa9\xb1\x16\x96\x65\xf1\xf4\xed\x46\x7f\x38\x9d\x39\xf3\x3e\xc3\xb7\x77\x9a\x6e\xcb\xb4\x11\x48\xa8\xfd\x62\x43\x1b\xa9\x37\x0a\x42\x22\x2c\x30\x63\xd2\xaf\x81\xd3\x50\x95\x47\xab\x57\x77\xf2\xb8\x18\x32\xe4\x05\x0d\x02\x7b\x65\x8b\xe1\x97\xd5\x20\x2e\x0e\x40\xb6\x6c\x64\x87\x2e\xed\xc9\x58\x24\x2d\xdf\xe2\xda\x64\x03\xde\x47\x03\x09\x70\x8b\x5f\x54\xe2\x38\x55\x9b\x24\xbf\xf0\xc7\x89\xd9\xe2\xbc\x46\x98\x1b\xb4\x6a\xfa\x15\x6b\x6d\x02\xc4\xc9\x7d\x12\xd5\x71\xb0\xf7\xa4\xe9\x66\x15\x22\x37\xc4\xfd\xa2\x40\xb8\xb0\x5b\xcd\xac\x83\x10\x85\x10\x4d\xd5\xb9\xff\xa3\xc7\x34\x71\x1e\x17\x33\x9e\x18\x6e\x9e\xf4\x77\x20\xed\x7c\x94\x4d\xed\xb3\xb4\x0f\xb9\x1a\xff\x7c\x30\xff\xc5\xe1\xe6\xc9\x13\x0a\xc1\xec\xf8\xc6\xfc\x78\xed\x1c\x09\x42\xcc\x3c\xe1\xdb\x55\x7e\x9e\x57\x6c\x3e\x62\x48\x74\xc6\x61\x90\xf4\xd6\x29\x2a\x4b\xae\x47\xcc\x26\x81\x93\xfc\xe7\x69\x07\x38\x11\x70\x19\x85\x95\xbd\xf4\x1e\xa3\xab\x02\xc5\xa4\x58\x24\x9b\x9e\x30\xd2\x46\xec\xd9\xa9\xa6\x59\xfc\xc0\x26\x5e\xb8\xba\x11\x40\x03\x9b\xc9\x1e\x5d\xb3\xdf\x98\xe1\x60\x2f\x64\x24\x90\x99\x66\xfe\xd2\x22\x8f\x75\xdc\x01\x30\xf9\x2f\x93\xef\x34\xe7\x6a\xd4\xc2\x76\xc4\x70\xda\xf8\x59\xba\x68\x8c\x96\x18\x0a\x18\x60\xa1\x94\xd7\x51\x42\xd8\xe6\x28\xa1\xd3\xf7\x6a\x93\x05\x02\xe9\xa0\x0a\xf7\xd7\xeb\xfd\x2e\x87\x11\x08\xdf\x85\xc7\x63\xe1\xad\x19\x04\x98\x6b\x56\xe7\x7f\xbe\xc9\xc0\xad\x44\x96\x85\x83\x40\x13\xb7\xf9\x45\xd7\x64\xb3\xd8\x70\x50\x98\x05\xa1\xe7\xaf\x32\xbc\x9e\x5c\x97\x0e\xd8\x06\x45\x71\xa4\x11\x24\x01\xf0\xcc\x00\x3b\xc6\x39\x1c\x93\x9f\xd7\xd2\x6a\x1f\x5b\xa4\xca\xe1\x8e\xb9\xe1\x3b\x26\x68\x00\x18\xd7\x25\x4d\x1d\xd1\x5c\xe8\x7a\x57\x6b\xa4\x62\x2f\x00\xc3\xbd\x42\xcf\xf5\x6d\xc6\xfb\xa1\xbc\xef\x75\x4d\xbb\x41\x75\xc3\xb8\x2e\x48\x43\x3f\x9d\x62\x30\x1d\xec\x06\xf1\x88\x94\x05\xe1\xd2\x71\x74\x84\x11\x4e\x92\x9a\x53\xf2\x02\x3e\x3d\x81\x6f\xbf\x6b\x23\x1c\x24\x1f\x49\x4a\x07\xe8\x72\xac\xbf\x2f\x7b\x35\x73\x17\xf0\xc5\xfe\x86\x3c\x97\x25\x5e\x39\x7f\xcd\xcb\x86\x2d\x47\xaa\xf8\x4c\x70\xda\x6d\x28\xd6\xd7\x6b\x36\x9d\x3e\x66\x52\xa4\x37\x7e\xb7\x87\x53\x53\xd7\xd2\xc8\x0d\x75\x97\xe0\x22\x59\x91\x0d\x21\xa1\x83\x87\x6a\xef\xe4\xc6\x18\x4d\x30\x21\xe8\x91\x7c\xf9\x2d\x8f\xaa\x51\x67\x40\xfa\x01\xc1\x11\x6c\x38\x43\x6f\xbd\x42\xf9\xfd\x95\x43\x9a\xd2\x30\xe6\x13\xc4\x4f\xdf\x2a\x6c\x20\x90\x97\x16\x3a\x63\xee\x1c\x4a\x39\x97\x5b\xd7\x20\xce\x4f\x2f\x2d\x69\x12\x0e\xef\x36\xaf\x93\x18\x0d\x38\x2e\x94\xc9\x41\x13\x1b\x8a\x3a\xff\xd1\x23\x7e\xe4\x72\x66\x43\x7e\xd5\xf2\xec\xe1\xd3\x8b\xe5\x39\xf1\x66\x8f\x54\x55\xc8\xe8\xb8\x42\xd7\xed\x19\xa1\xa2\x4e\x03\x22\xb6\xff\x45\x47\x8d\xa7\x84\x02\xa9\x9d\x99\xbf\xb6\xb3\xd5\xba\xce\xd2\xde\x5e\xfe\x73\x63\x15\xf4\x4a\xe2\x19\x5a\x2a\xa9\x29\xf7\x28\x09\x82\x88\xb5\xe4\x8b\xbb\xb7\xeb\x93\x3f\xd9\xb0\xd3\x75\x47\xad\x8d\x7c\x31\xf6\x51\x06\x34\x4f\xcb\x45\x9c\x73\xb8\xe1\xb1\x16\xa9\x0f\x40\x20\x89\x33\xb1\xec\x2a\xb5\x01\x20\xd8\xbb\x86\xc4\x8b\x87\x1a\x29\xec\x32\xfe\x64\xcf\xfb\xcd\x2f\x0b\xc2\x06\xf2\xbc\x92\x8b\xab\x55\xce\x48\x35\xaf\xfd\xcb\x86\xe2\x0c\x02\x09\x15\xde\xec\xdd\x3f\x55\xa4\xf8\xe2\x62\x7f\xa9\xc9\x10\xe8\x33\xa3\x72\x7c\xe1\x53\x1a\x8f\xf3\xda\x08\xe3\xad\xc9\x7f\xfd\x73\xbf\x1a\x77\x82\x23\xc4\x75\xa3\x05\x22\xcc\xf7\x31\x12\xbe\x39\x0b\x1e\x4e\x6f\x91\x56\xab\xa5\x72\x5c\xb8\x5e\x1d\xf5\x03\x94\x01\x5f\xae\xb0\xa0\xc7\x74\x37\x95\xa2\x4e\x02\xf5\x37\xf3\xa9\x33\xd2\xf8\x2b\xa4\xc1\x6f\x5a\x7d\x9a\x3c\xb9\x92\xab\xb9\x6a\xca\x18\x1f\xbc\x27\x75\x61\xc5\xcf\x98\x6a\x50\x0b\x17\x2c\xec\x10\x1e\x6e\x73\xc3\xec\xf6\xb7\xb7\x3a\xa4\xee\xa0\xa0\x8e\x18\x49\x55\x6a\x73\xcb\x9f\x49\x51\x20\x2e\xd6\x1d\x31\x8a\x9b\x54\x27\x1c\x90\x3c\x41\x88\x84\x59\x50\x3e\xb7\x8c\xf7\xa0\x96\x0f\x41\x89\xcc\xef\xee\xd4\xe8\xa3\x9a\x04\x71\xa8\x0b\xc0\x41\x4b\x31\xf9\xcf\xf6\x01\x5d\x89\x28\x62\x61\x92\x54\x41\x47\xe6\xa2\x87\xb9\x54\xdb\x15\xb4\xc1\xdf\x96\x59\xaf\xfe\xea\x31\x1d\x06\x45\xa4\xdc\xc9\x27\x0d\x3d\x83\x26\x41\x2e\xca\x14\xab\x8d\x51\x67\xeb\xa5\x17\x69\xe0\x0e\x5d\xfe\xf6\x81\xb4\x14\xb4\xea\xad\xa5\xe0\x0f\xab\x66\xbe\xd1\x90\x7d\xf3\xfc\x7b\xb6\x6b\x2a\xe2\xca\x6c\x3e\xfe\xdd\x4e\x15\xc5\x9a\x84\x7b\x3c\xdc\xba\x42\x55\x45\x2e\x6e\x42\xe1\xf1\xdf\x6f\x88\xc8\x46\x93\xda\x8e\x97\xae\xfb\x9f\x34\x7a\x81\x18\x96\x0d\xc4\xfc\xcb\x9b\x46\x78\x70\x06\x02\x90\xe0\x96\xae\x5d\x4f\xf6\x68\xfd\x9f\x88\x61\x04\x69\x47\xb2\xba\x5e\x5a\xaf\x98\xb0\xa1\x5e\xe5\x9c\x2f\xc4\xb3\x93\x74\x9e\x34\xa8\xc7\xdd\x87\xfe\x7d\xb3\xca\x11\xb8\x1b\x5a\x29\xa4\x25\x81\x00\xda\x70\xd4\xe8\x75\xf4\x43\xfc\xe4\x38\xb1\xb1\x0f\xa8\xfd\xb0\xa0\xb3\x63\x21\x74\x2e\xbe\xb8\xd3\x84\xaa\x01\x70\x45\x0e\x27\x8a\x9f\x1f\xa9\x89\x1f\x20\xec\x05\x16\xd8\x63\xdd\x36\x9e\x1f\x49\x53\x5a\x42\xdc\xbf\x3c\x00\xa7\x18\x74\xe6\xd7\x64\x75\xaa\x26\x48\x0e\x18\x23\x9c\xa3\x1e\x7f\xec\x7e\x51\x3c\x76\x34\x3b\x7c\x58\x6b\xcf\x1c\xc8\xae\x19\x30\xcc\x0c\x48\x95\xa4\x6a\xd5\xce\x2a\x63\xa2\x62\xa3\x46\x90\xf1\xfd\xcc\x9f\xd1\x6d\xe8\x30\x21\x97\x36\xb8\x94\x63\x2b\xfd\xe3\x5b\x95\xec\xab\xb3\x28\x97\xe0\x91\x11\xa1\xd0\x9d\x37\xf3\xc8\x06\xf1\x10\x93\xe6\x0f\xe7\xbf\xac\xc6\xef\x35\xda\xc4\xcc\x83\xc1\xbd\xb9\x19\xb7\xad\xc8\xde\x98\x97\x04\xe8\x01\x35\x6e\x8c\xff\xd2\x4c\xab\x34\x02\xbc\x09\x4e\x2f\x39\xac\x16\xec\xdc\x85\xdd\xdd\xa5\x72\xec\x4c\xd4\xb9\x0e\xfc\x62\xd3\x76\xd3\xfe\xe5\xa6\x7e\x9f\x57\x4b\xd1\x9a\x9e\x6a\x74\x54\x89\x07\x04\x9b\x64\x49\x15\x0e\x4c\xd0\x36\x00\x1c\x91\x1a\x28\xa9\xb8\xfb\x46\x55\x26\x0f\x40\x83\x4c\xed\xa7\xd7\x1e\xe3\xe9\xe7\xca\x4a\x14\x44\xf5\xa4\xac\x29\x9e\x7b\x4c\x93\x94\x6b\x42\x41\xfc\xde\x47\x5a\x1f\x31\x97\xc6\x12\x12\x70\x13\x2f\x35\xeb\xb9\xa8\x26\xc5\xf4\x8a\xce\x8d\x59\xf1\x7c\xc4\x1a\x03\x43\x12\x79\x1a\x7b\x4d\x4b\xcc\x1a\x43\x4d\x14\xa6\x7d\xf4\xe2\x64\xc3\x9c\xd3\xa1\x0d\x2c\x76\x68\xe1\x55\x73\x50\x48\x6d\xec\x0a\xe9\xe8\x9a\xa6\x2d\x1c\x62\x4f\x88\x64\xe4\xae\xda\xdb\x62\xd2\xc3\x30\x96\x85\x68\xf1\x94\x35\x93\x8c\xfa\x8c\x93\x61\xb1\x9d\x66\x0d\xe7\xb8\x2d\x3a\x1a\x38\xf5\x82\x9f\xf1\xa8\x20\xe2\x27\x85\x14\xdf\x1d\xf3\x53\x73\xa4\x2a\x09\x85\x66\xfd\xf6\xd4\x0e\x79\xed\xba\xb5\xd2\x43\xa2\x6d\xb2\x6c\x0e\x79\xd0\xd6\x19\xcc\xfb\x37\x9b\xe6\xc6\x15\xca\x34\xca\xee\xba\xc7\x87\xc6\x55\xca\x41\xd1\xe7\xf6\xa9\x63\xa3\x97\x34\xb0\x87\x41\xc2\xe9\xca\x19\x66\xb5\x51\x09\x2c\x46\x2a\x8a\xc7\x3d\x75\xb6\x0a\x70\x48\xd7\xbe\x2b\x09\x6a\x5f\x35\xf2\x3c\x2c\x0e\xb4\x7f\xed\xe2\x0b\xaa\xe6\xd2\x26\x87\x47\xe6\xd7\x1d\xd0\xd5\x41\x98\x4f\xb9\xcc\xc0\xaf\x9e\x9a\x62\x2c\xaa\x8e\xa1\xb4\x58\x8f\x6c\x57\x68\x77\xb0\xf6\xcb\xbd\x5c\x34\x6d\xeb\x1a\x3e\xc3\x4e\x12\x66\x52\xe4\xe0\xfd\x42\x0d\x35\xa0\x8c\xbf\xea\xb3\x26\x98\x5c\x6e\x2f\x08\x49\x18\xc1\xe3\xe1\x5d\x91\x83\x7b\x2f\xd0\x5a\xf6\x60\xf9\x35\x94\xa7\x5c\xae\xa9\x49\xfe\x09\xfb\x3e\x31\xfa\xe8\x5c\xac\x89\x01\x0c\xf8\x10\xf5\x4a\xe5\xf8\xc9\x66\x76\x99\x75\xce\x03\xc3\x68\x21\x1a\x32\x7f\xb7\xf0\x73\xc2\x2c\xa0\xc9\x83\x04\x98\xc6\x0d\x63\x94\x92\x8e\x14\x8d\x2a\x1b\x33\x26\x9b\xa1\xbe\xe4\x35\x81\x9b\xda\xf3\x46\xbf\xa3\x4a\x99\xc8\x06\x17\x5e\xa2\x12\x2b\xe0\xf5\x17\xfb\xbd\x36\x9d\x8c\xc5\x06\x4a\xdc\x4d\x24\xf7\xcf\x5d\x8a\x69\x15\x75\xc0\x83\x7b\xfe\x7a\x45\xf3\x05\x36\x5a\xae\xb8\x3f\x3d\xd6\x6b\xa5\xee\x96\x44\xf2\xfe\x61\xa6\xfe\x64\x10\xba\xa2\x83\x59\x98\xbe\x83\xbf\x97\x8d\xa8\x06\x62\xe1\x85\xc3\x4c\x1d\x6a\x4d\x0a\xe2\x51\x83\x85\xfa\x34\xa3\x5b\xc6\x22\x12\x60\x09\x5c\xe8\x6d\x1b\x6b\x30\x77\xe1\xb2\x1e\xd9\x60\xa2\x87\x02\xea\x46\x69\x91\x38\x58\x6c\x9b\xc1\x5b\x15\x6e\xb2\xb8\x91\x4b\xb6\x8a\x8a\xe7\xae\x36\xad\x49\x6e\x13\x0e\x13\xa9\xd9\x82\xab\xcb\xfa\xb0\xab\x29\x86\xe7\x36\xdf\xaa\xdb\xc8\xd6\x74\x86\x4f\xe1\x73\x27\xd2\x27\x1d\x44\xd0\x6f\x09\x96\x19\xd8\x4f\x82\xbc\x90\xd7\x43\x3f\x98\x6c\x2a\xf4\x08\x78\x00\xf7\xfd\x7e\xe4\x5e\xe3\xd4\x0a\x11\x37\x38\xe1\x53\x91\x17\x0d\x7e\xac\x8b\xa9\xc7\x19\x0b\x10\x73\x7b\x85\x60\x6f\xf7\x1c\xe9\x4d\x5e\x9c\xf5\xa0\xf1\x7b\x75\x18\x08\xa4\xa1\xec\xe2\x45\x86\xb3\x05\xf2\x01\x0f\x92\xc4\x8e\x93\xb7\x98\x62\x01\x76\x2d\xa5\xb1\x15\xaf\x70\x34\xfb\x8f\x6b\x85\x38\x80\xb7\x5b\xed\x92\xe4\x54\x0d\x23\x26\x40\xf7\xcb\x6e\xd5\x52\xa9\x01\xa6\x2b\xd0\x3d\xb1\x4c\xe3\xa3\xf7\xd1\x12\xef\xc7\x5e\x75\x9f\xc0\x04\x51\x17\xdb\x1a\xcb\x3a\x17\xde\x66\x22\x88\x1b\x55\xca\x42\x54\x71\xb1\x20\xb8\x8f\xdb\x95\x76\xed\xba\xe7\x40\x34\xfa\xd2\xdb\xa6\xcf\x77\xf7\x1c\x71\x8a\x5d\x72\x9f\x91\x7d\x79\x41\xc4\x64\xe7\xec\x94\x29\xe3\x32\x32\xa9\x12\x6c\x6b\x1b\x67\x44\xe4\x86\xc4\x8a\xdc\x30\x62\xc8\xe5\xd5\xd3\x96\xa2\x56\x8d\x3b\x5c\xef\x66\xf3\xe6\x6c\xef\xa1\xc1\xa5\x97\xe3\xe7\xd5\x78\x65\xde\x82\x52\xa9\x1c\x7f\xca\x60\x3f\x08\x77\xbe\xd9\x72\x14\x7f\xd2\xe8\xf4\x86\xb8\x3f\xac\x50\x5a\x17\x3a\x65\xf3\xbd\xff\x9f\xb0\xc7\x6b\xec\x0b\x0e\x09\x91\x23\x6c\xe3\x26\x11\xc5\xd8\x7d\x0a\x93\x89\x9b\xa4\x54\x8e\x4f\xed\x32\x34\x22\x29\xc3\x25\xd2\x10\x2e\xdf\x12\x92\xfc\xdd\x61\x9a\xdf\x94\x67\xce\x97\x07\x0b\x8b\xe2\xc9\x19\x0c\x40\x92\xf2\xb7\xf4\x4b\x67\xbe\x68\x6c\x64\x90\x43\x4f\x36\xb1\xe8\x6c\x7d\xf7\x46\x35\xf1\xf4\x5d\xd4\x92\xac\xc5\x67\xdc\x9b\x46\xa8\x21\xcd\x3d\x6e\xd7\xec\xed\x5d\xda\x17\x52\x06\x59\x71\x7e\xed\xe1\x51\xa2\xb2\x60\x61\xc4\x2d\x60\x3e\xf2\x84\xa1\x1e\x15\x59\x0e\x2f\x19\x7e\x65\x38\x9c\xa1\xa0\x8e\x6d\xa1\x44\x3e\x71\x93\xaa\x7c\xa2\x96\x3b\xcc\x3d\xd7\x7b\x96\xc6\x98\x1f\x70\x35\x68\x75\x91\xae\xd0\xa2\x1b\xaa\x08\xfe\x55\x61\xc9\x71\x7e\x69\x3d\x0e\x23\x55\x2e\xaf\xf5\xc5\xc5\xfa\xdc\x8b\x5b\x27\x01\x02\x90\x7b\x04\x94\xd6\x61\x5c\x01\xd7\x91\xec\x8f\xff\xd3\x3e\xbe\x9b\xae\x46\x5e\xa6\x19\x55\xf8\x22\xb7\x8b\x2a\x2d\x05\x21\x47\xb3\xa5\xbf\xad\x57\x6b\x5f\x5a\x0e\x6e\x24\xa5\xf4\x86\x63\x9a\x0f\xcb\xc2\x6e\xa8\x48\xae\xd2\x9e\x6e\x90\xec\x7c\xcc\xaf\xab\x38\xfe\x06\xcd\x80\xc4\x75\x39\xb5\x96\xab\x97\x17\x2a\x3d\x26\x4f\x14\x37\xb0\x17\x84\x2c\x92\x76\x64\xc5\x99\x0f\xb5\xeb\xd4\xb9\xf5\xb3\xca\x0a\xe8\xb2\x57\x0c\x46\x7b\x70\x7f\x87\xcc\xa0\xe6\xcd\xcc\xbe\x9f\x29\xb3\x4a\x1e\xf5\x70\x09\xa2\xe7\x4e\xde\x57\x5a\xb1\xac\xe5\x3e\xaf\x35\x9c\xa3\x2a\xc0\xf6\x82\xd9\xc3\x7c\x43\x51\x1d\xd4\x29\x3b\xb8\xe8\xd6\x15\xf6\x59\x1a\xe8\xda\xab\x92\xc0\x42\x21\x05\x6c\xe1\x2b\x46\x47\x2d\xc0\x36\xe2\x88\xd6\xf8\x68\x3f\x9f\x8f\x85\x34\x62\x1e\x4a\x67\x57\xdf\x37\x80\x2e\x15\xec\x10\x51\x06\xc6\x9f\x5d\x67\x84\x62\x17\x05\x61\x6a\x99\xbc\xae\xdd\x50\x81\xec\x2f\x35\x48\x10\x32\x1c\xc8\x6c\xee\xa2\x6d\x2a\x58\x87\x98\x37\x02\xf3\x3b\x35\x2a\x6b\xf2\x6a\x60\xf8\x9a\xfc\xe1\xc8\xa2\x0b\xcd\xac\xa2\x02\x44\xe9\x96\xe7\x56\x7d\xd8\x78\x6e\x18\x44\xac\xe1\x7e\xb6\x1e\x35\xb5\x7c\x22\x16\x60\xa9\x25\xd8\x6b\x78\x41\x59\x8c\x84\xc4\x82\xda\x5c\xb4\x70\xbf\xb2\x5d\x45\x50\x2f\x82\x46\x50\x71\xec\x1b\xe3\x34\xf6\x2d\x71\x5d\x0c\x2b\xa9\x78\x99\x81\x5d\xb2\x18\xce\x08\xc3\xd7\x36\xa8\x25\x6b\xb9\xa8\x2f\xf9\x4c\xcf\x53\x2a\xa0\xf4\x52\xaf\x15\x42\x91\xfb\xef\x91\x86\xdf\x98\x47\x42\xc2\xbf\x97\x13\x5c\xc6\xef\x57\x78\x8f\x90\xa1\xba\x43\x18\xd5\x84\x4d\x6f\xeb\xd7\x45\x20\x92\x9a\x18\xd7\x18\xf4\xab\x1e\x3d\x91\x95\xd4\xeb\x16\x98\xd2\xc3\xeb\x35\xde\x32\x58\xb9\xf2\xd3\xf3\xf0\x3e\xde\xcc\xf2\x78\x1a\x9d\xbf\x77\x86\xec\xcd\x01\xee\x64\xa2\x7b\x9a\x48\xeb\x40\x03\x67\x44\xd3\x9c\xdb\xd6\x18\x96\x10\xd0\xe2\x59\x47\xb3\x8d\x57\x9f\x0a\x74\x58\xe1\x97\x13\xc6\xb6\x68\xac\x94\x07\x73\x5f\xbd\xc1\x34\x85\x09\x1d\xca\x48\x38\xc0\x47\xde\x50\xf1\x76\x6b\x0a\x09\xa1\x83\xbc\xba\xcb\x65\xd5\x0a\x1f\x7e\xd7\xac\x34\x18\xf4\x3f\x14\x07\xe7\x4f\x3b\x54\xe8\x00\xae\x2f\x01\x5f\xa1\x78\xc2\x61\xd3\x8c\x1c\x01\xfc\x4f\x67\x75\xfc\xfa\x0e\x8d\xf2\x83\x18\x4f\xc8\x87\xef\x30\xb0\xd2\xd0\xb8\x77\x07\x44\x53\xe7\xa5\xc7\xb2\xb3\x85\xad\xa8\x4e\x3d\x0c\x93\x9f\xf4\x80\x5f\x74\xd2\xa0\x86\xfa\xbe\x8b\xa2\x40\x30\x3c\x3f\xf6\xe2\x44\xad\x16\x98\xd6\xda\x36\x18\xbc\x6b\xbc\x06\x1f\xb1\x90\x9d\xca\x1a\x14\xfe\xea\xa4\x67\x6c\x05\xb2\x82\xfc\xca\x17\x87\x80\x76\x07\x61\x20\xd6\xd8\x68\x43\x12\x8b\x21\x4b\x6b\x60\x7f\xd0\x70\xbb\xa7\x4c\x9a\xf2\xc5\xbf\x7f\x22\x33\x7a\xe2\xb0\xf6\xe2\xd4\x63\xa3\xc4\xd3\x72\xdd\x3e\x04\x53\xbb\xf7\x6c\xe4\xff\xa9\x4a\x3c\x09\xf8\xf8\xc0\x8c\x31\x62\x7d\x79\xa8\x86\x19\xc7\xbf\x14\xac\x83\x69\xa6\x0b\xb3\xaf\xf8\xf4\x7b\x0c\x91\x01\xd1\x79\x8f\xcf\x5a\xcf\x0b\xd9\x2a\x16\xb6\x43\x85\x7f\x7c\xc8\xa0\xfe\x22\xe0\x55\x43\x2a\x49\xdf\xd1\xa6\x19\x21\xa5\xb0\xea\x4e\xbb\x4e\x1b\x42\x45\x24\xb4\x10\x57\x6c\x2e\x76\x1f\x1f\x2b\xee\x89\xb2\x30\xd9\x76\x3c\x68\x2d\xbe\x44\xdc\x05\xb2\xe4\x31\xbe\xab\x9b\xdf\xc5\x47\x30\xd1\x65\x0a\x5f\xca\x96\xa0\x61\x73\xfe\x50\xa1\xed\x34\x0d\xce\x63\x39\xc8\x15\x02\x8d\x85\xff\xba\xd9\xe8\x64\x59\x56\x14\x08\x69\x7c\xa1\xb5\x7e\xf3\x7a\x93\x05\x40\x43\x54\x93\xde\x6b\xbf\x33\x10\xec\x7d\x24\x74\x6c\x86\xfb\x52\xe6\xf4\x88\x1d\xd9\x05\x5a\x43\xf6\x56\x67\x00\x37\xb5\x26\x6c\xdc\x3d\xd1\x90\x4d\xa5\x56\x9d\x46\x62\x23\x17\x83\xdb\x0d\x6a\x28\xa3\x7e\xaa\xe2\xfa\xb9\xcd\x2a\xee\x71\x95\x70\xb3\x25\x73\xa9\x21\xf1\x15\xe0\x74\xc8\x28\xd3\x86\x05\x86\xab\x57\xe8\x30\x8c\x4b\x35\x24\x67\xce\xc5\x7a\x9c\x36\xc6\x6c\x2c\x4d\x64\x72\x67\x6d\xd4\x84\xd0\x2d\x87\x52\xd7\xa1\x11\xd7\x43\xe8\x7c\xba\x65\x1b\x58\xca\xb6\x3e\x77\x81\xd0\xd3\x5e\xb9\xa6\x67\xdd\xca\x0f\x7d\xf8\x72\x00\xd3\x3e\x6d\xd2\x3a\x90\xef\x63\x7b\x16\x3f\x3f\x66\x6f\x10\x4d\x09\x1c\x22\x58\xe9\xf1\xed\xcb\x78\x12\xb4\x44\x33\x45\x85\xe8\x75\xce\xf6\x74\xc2\x53\x1f\xc2\xdf\x71\x8c\x61\x87\xdf\x48\xd2\x41\xde\x63\xea\x3f\x62\xaa\xad\x81\x5d\x86\x58\x08\x95\xfb\xf8\x52\x5d\x22\x22\x26\xef\x0c\x5c\xd9\xab\x39\xfa\xf4\x21\xc6\xe7\xc8\xf9\x8a\xc6\xec\x03\x36\x91\x68\x00\xfc\x9e\x4f\xab\x4b\x16\x45\x2e\x19\x6a\x00\x97\xff\xf2\x8d\x86\xc5\x16\xc3\x41\xe8\x4a\xc1\x83\x5c\xf3\x96\xec\xe5\x33\x90\x53\x00\x25\xbb\x0b\x3d\xfd\x3c\x0d\xa5\x19\x68\xb1\x73\x9d\x38\x50\x18\x78\x4f\x16\xd6\x1c\x1e\x27\xae\xa1\x21\x6c\x55\x38\x76\xe9\x40\xde\xc8\x3c\x80\xc9\x14\xe0\x34\xba\x17\x4b\x37\x6b\x86\xa3\x74\xc0\xa2\x82\x14\x31\x58\x38\xf5\xed\x31\x6a\x74\x92\x52\xbd\xda\x1f\x51\x75\x79\xcd\xa5\x15\xbe\x93\x2f\x3f\x68\x8e\xac\x81\xfe\x22\x5b\x3f\xf1\x5f\x5f\x56\xdd\x0e\x18\x7f\xe4\xae\x7a\x48\xeb\xca\x80\xc8\x19\x3f\xcc\xfe\x39\x9f\x1d\xbe\xda\x24\xb8\x36\x42\x2e\x28\x36\x43\x7d\x24\x76\xc9\xbc\xf1\xfa\x84\xd5\xad\x03\x55\x78\xca\xf3\x9a\x90\x29\x4e\x0e\x74\x2b\x39\x7e\xd1\xea\x74\xf9\xf4\x05\xad\xb9\xf7\x4a\x31\x48\xfb\x90\x8b\xe0\x12\x1e\xa9\xa6\x37\x8e\x3c\xa9\xbe\xf2\x7f\xde\x30\xc6\x4d\x18\x2c\x6c\x38\x2e\x31\x9d\x36\xef\xbe\xfe\x7c\x0d\x2b\x87\x42\x5c\x62\x51\x0b\x62\xfa\x77\x9a\x3a\xe5\x74\x1f\xb1\x50\xc0\x17\x0f\x3f\x25\x6c\x4e\xeb\xd8\xd5\x28\x6f\x85\xbd\xdb\xf8\x46\x59\xa3\x0c\x66\xef\xba\x4b\x37\x74\x14\xcd\xea\xf2\x60\xfe\x9b\xcf\xa9\xfd\x9b\x2c\x95\x6b\x23\x0e\x6f\x29\x0f\x16\x9e\x3e\x94\x8d\x5a\x75\x8f\xf6\x81\x5a\x0d\x14\xe6\x22\x0f\xdb\xf5\x90\xd1\xec\x0d\x7c\xc2\x74\x5f\x91\xfc\xce\x77\xb5\xfa\xc6\xc1\x21\x65\xa0\x55\x99\xbf\xf4\x86\x91\xa2\x60\xe5\x32\x30\xb9\xc5\xa3\xc6\x28\xc3\x30\xe9\x87\x9f\x7b\xbd\x45\x0a\x93\x36\x09\xb8\x39\xf0\xb1\xc0\x72\xa1\xc6\xb6\x16\x33\x57\xc3\x77\x0f\x16\xee\xbe\xef\x5c\x0d\xcd\x36\x80\xdc\x96\x5d\xf6\xe0\x43\xfc\xa3\xd8\x0b\x81\xa3\xe6\xe1\x48\x3c\x94\x49\x86\x39\x32\x97\xb2\x35\xcc\x91\xbf\x3e\xca\x98\xf5\x32\x82\x3d\xdb\x1d\x10\xbd\xcb\xef\xed\x1a\x23\xf2\x2e\xcc\x85\x75\xe1\x3d\xfc\x9f\x19\x12\xfb\xe9\xe1\x2a\x08\x2c\xc7\x8f\x18\xc6\xed\x36\xb1\x23\xab\x9e\x35\x6e\xcf\x7f\xf8\x16\x95\xa1\xf4\x61\xd6\x62\x3a\x58\xdb\xa3\x90\xac\x90\xb1\x66\xfe\x7a\xfb\x64\x95\x39\x70\xab\xd3\xe4\xd1\xbd\x15\x6b\xae\x79\x40\x0d\x2e\xc7\xb5\x99\x93\x44\x09\x26\x65\x58\x5a\x47\x28\xcb\x4c\xd5\x62\x57\xba\x2a\xc6\x7f\xd6\x18\xfe\x8c\x24\xa5\x34\xf4\x13\x26\x1b\xfc\x27\x07\xbb\xee\x10\x2a\x75\x3f\xd8\x28\xfa\xea\x98\x05\x11\x02\xff\xec\x67\x0f\x65\x73\xc6\x06\x0a\x0c\x69\xb4\xc1\xe2\x15\xde\x58\x1d\xb1\x21\xac\x96\x37\xde\x6e\xca\x42\x33\x9f\x81\x5d\x0e\x6f\x2a\xe5\x6a\x23\x0c\x52\x95\x1c\xb7\xc5\x17\xec\xe3\x25\x74\x1f\x65\xad\x03\xcf\x62\xbf\x41\x09\x44\x80\xbf\x95\x9c\xe9\xcd\xab\xf8\xb2\x76\x30\x82\x3e\x77\xb1\x6b\xf8\x38\xf9\x2f\x9b\x15\xad\x03\xd9\x6e\xc8\x33\xe3\x26\xb2\x22\xa4\xcc\x8f\x07\x0b\xde\x5d\xea\x61\xd2\xe9\x1e\xe6\x0a\x78\xbf\xe8\x57\x83\x1d\xec\x27\x7b\x20\x37\x98\x57\x2f\x12\x31\x4e\x9c\xcc\xff\x4c\xa9\x2a\xcd\xed\x9e\x9f\x7c\xdf\x77\x96\x69\x46\xec\x34\x72\x5b\xe5\x05\x56\xf9\x9a\xa7\x8c\x58\xce\x70\xe0\x5c\x7a\x86\x86\x1f\xa2\xe0\xfd\xa4\x05\x14\xd0\x52\xad\xf1\xa8\xb1\xc7\x68\x78\x82\xf6\x82\x42\xd7\xb8\xa3\xd5\xa5\x56\x85\xb9\x4b\xce\xd1\xcc\x61\x34\xb8\xce\xeb\x3c\xca\xce\xe5\x42\x7f\x7f\x39\x69\x36\x5a\x03\x1f\x7b\xa9\x64\x59\xfe\x85\x2a\xdf\x6f\xb8\x51\xa1\xae\x8d\x05\xb1\xb5\xed\xa4\x66\xda\x06\xf2\xda\x50\x51\x1c\xe9\x39\x23\xf9\x8e\x65\x3d\xaa\xb6\xbb\x69\xbc\x39\xf2\xb4\x89\x15\x02\xda\x51\x9c\x20\xbf\xde\xd8\xa6\x3d\x3f\xcf\x92\x98\x87\xc2\x43\x8f\x2b\xe7\x50\x69\x52\x66\xee\x9a\xcb\xfb\x35\xb8\xa2\x83\x18\x47\xf8\x43\x23\xac\xa8\x69\xd7\xb9\x91\x30\xb2\xc8\xed\x99\x6f\xe4\x42\x94\xb1\xd4\x77\xa9\x38\x3c\xe4\x0f\xc7\x25\x0c\x95\xca\xf1\x4d\x06\xb5\xa8\x37\xb2\xa5\xb1\x70\x7c\xfc\x21\x13\x61\x1a\x5a\x8e\xc4\x6a\x5b\xcf\x66\x77\xc9\xff\xc7\xd7\xdb\xc7\x4b\x55\xd5\xfb\xe3\xce\x9e\x91\x88\x78\x38\x20\x20\x20\x22\x12\x09\x02\x73\x84\xc3\x83\x40\x46\x78\x44\x44\x42\x86\x90\xc8\xc8\xb8\xac\xd9\xb3\x66\xf6\x3a\xb3\xf7\x5e\x9b\xb5\xf7\x9e\x61\x8e\x66\x66\x48\xc6\xe5\x9a\x19\x91\x1a\x29\x91\x5f\x32\x32\x2f\x11\x71\x89\xab\x46\x66\xe4\x25\xe2\x9a\xd7\x8c\xcc\xac\x6b\x68\x64\x46\x5c\x33\x23\xf3\xec\x7e\xaf\xfd\x59\x6b\xef\xb5\xf6\x1a\xfa\xfd\x63\xbd\xce\xe1\xcc\xec\x87\xb5\x3e\xeb\xf3\xf0\x7e\x80\xaa\x56\x35\xdb\x9b\xaf\x79\x60\xc2\x68\x55\x58\xd4\xc4\x85\xc1\xb5\x8f\xa8\x07\x0b\x88\x38\xc3\x01\x7f\x99\x3c\xc0\x9d\x0a\xa4\x16\xe3\x34\x82\x50\x85\xf8\xa6\x45\xe2\xb7\xa7\xef\xb0\xf7\x68\xe0\x79\xb0\xa2\xe1\x2f\x21\xf7\x20\xcb\xc6\x66\x97\x36\x48\x9d\x36\x32\xee\x7a\xd1\x93\x03\xd3\x59\x57\xfc\x7c\xe4\xa6\x1b\x57\x51\x4e\xea\xf4\x8c\xf9\xce\x5c\x0e\x67\x9c\xd1\x35\x2b\x7e\x26\x9b\xde\xd6\x10\x06\xa8\x95\x74\xec\xa3\x21\xe3\xb2\x97\x36\xa7\xab\x73\x46\x97\xe8\x52\x1f\x7f\x46\x4b\xa1\x91\x1b\x20\x07\xe6\xf8\x1c\xd4\x72\x66\x7e\xf6\xda\xeb\x61\x60\x5a\xc4\xd5\x9c\x01\x4f\x6c\xd3\x7d\xdb\xe5\x44\xc0\xa8\x6b\x4e\x9d\x1e\x71\xeb\x3c\x63\xda\x74\x40\x9b\x34\x34\x89\x5b\x81\x9c\x71\x3e\x2c\x98\x15\x6d\x5e\x68\x6e\x2d\xc5\x12\xe7\x56\x1c\x4f\xf0\x91\x89\x8d\x57\xfc\x6d\x4f\x4b\xa1\x7e\xe4\x24\xa4\x97\xfc\xc9\x4d\x70\x1b\xc5\x6e\x42\xa5\x5a\x57\x5b\x30\x3f\x7d\xf8\xac\xfd\x5f\x37\x19\x83\xad\x7a\x4d\x76\x70\xca\xd4\x29\x17\x4b\xd1\x08\xad\x0b\x5f\x91\x64\xff\xe4\xe1\xfc\xb8\xa2\x21\x3d\x91\x47\x32\xcc\x8b\xc2\x92\xd7\x86\xaa\x4d\x30\x0c\xea\x7a\x85\x65\x9a\x09\xc8\xcc\xcb\x67\x15\x39\xef\x65\xc0\xab\x2a\x93\xd8\x0f\x10\x2f\xea\x1e\x1e\x2c\x5c\x49\x95\x29\xc1\x27\xf7\xea\xb6\x91\x2d\x3b\xd1\xcb\xe9\x2b\xf4\xee\x12\xb0\x54\xdc\x14\x10\x9f\x13\xe5\x41\x22\x3e\x3a\x60\xef\x12\xbd\xda\xd1\xa1\x20\xc4\x4d\xde\x26\xdc\x7c\x4a\x29\xeb\xb1\xc9\x3d\x38\xae\x79\x4d\x2a\x61\x00\x70\xfd\xca\xcd\xf2\x5f\x21\x1b\x31\x9e\x14\x5f\xa4\x59\x94\x9a\x0c\xb9\x6e\x82\xbc\x7d\x4c\xe1\xd2\x95\x11\x03\x30\x7f\x74\xa4\xbf\x0c\x62\xa9\xdb\x5f\xfc\xaf\x57\x0f\xd7\x9a\x42\x76\x03\xf7\x6a\x59\xc8\x63\x5b\xa5\x19\x53\x3d\xa3\xa6\x9b\x7f\xcf\x4e\x0e\x81\xba\xde\x6a\xc4\x01\xdf\x51\xf5\xbc\x5f\x9c\xae\x51\x3f\x68\xc8\x8a\x26\x09\x44\xaa\x94\xdf\x35\x58\xc2\xe2\xcc\xf8\x22\x07\xde\xad\x81\xfa\xe7\x24\x7b\x0c\x6d\x9c\x78\x96\x54\xc2\x69\x2f\x79\x0f\x1e\x53\x6c\xbb\x68\x28\x9a\x16\xdd\xc3\x65\x11\x0b\x46\x8c\xb0\xff\x6b\x73\x05\x4b\x10\x31\x1b\xa9\x2c\xc1\xbe\xc2\x39\x4c\x79\x5c\x18\xd9\x89\xdf\x9e\x71\x91\x74\xff\x98\x51\x84\x5a\xe2\x23\xc7\x54\x57\xac\x1a\xa1\xc9\x4a\x1f\xb2\x32\xab\x89\x1f\xd7\x5c\x98\x71\x28\xbc\x7e\x02\x8f\x7e\x5b\xe3\xfe\x21\xbf\x8e\x83\x32\xb2\xed\x04\x3c\x41\x56\x28\xd8\x6f\xd9\xaa\xe8\x2c\x96\xa2\xe2\xe3\x69\xd9\x62\xe1\x76\xcd\xcf\x07\x0a\x2a\xef\x04\x44\xa2\x73\xe3\xfa\x69\xd2\x67\x0c\xad\x17\x7b\x14\x74\xa5\x8e\xca\x64\xc3\x47\x10\x81\x4e\xe8\xf6\xcf\x88\x28\x49\x8b\xf1\x98\x92\x17\x98\x16\x76\xb8\xc5\x70\xf4\xd7\x97\x3a\x14\x79\x07\x56\x87\xf1\xd9\x6a\x8d\x69\x5c\x46\x84\x1b\x41\x47\x1d\xbd\x23\x94\xd1\x0a\xab\x60\x37\x79\x57\xff\x35\x5f\xc1\x3f\x20\x73\x7d\x08\x15\xf8\x87\xce\xb9\x48\xd5\x62\xa2\xac\x9d\xbc\x96\x3f\x35\xf2\x02\x65\xe5\x87\x35\xab\x88\xdc\x4a\x31\x08\x1d\xb0\x80\x8e\xee\x7c\x94\x97\xf6\x33\x66\xcd\x83\x59\x6b\xc0\xad\xae\xc6\x3d\xa7\x1e\xfa\x8e\x13\x26\xd5\xee\xd7\xee\xc8\x76\x7c\x67\xcf\x80\x0c\xf8\x4f\x77\x29\x7d\x53\x86\xdd\x38\xce\xc6\xf9\xd2\x8f\x9f\x57\x31\x76\x29\xa8\x54\xa8\xd2\x1c\x1d\x75\xb1\xb6\x44\xe2\x9c\xda\x07\x86\xbc\x3c\xbd\xce\xbf\x75\xa4\x32\x65\x57\x54\xf3\xa2\x79\x1d\x3c\xd2\x58\x60\xb3\x5b\x2c\x45\xf6\xc9\xa1\x4a\x2f\xdc\x16\x78\xf7\x6f\x2f\x18\xaf\x05\x30\x86\x31\x97\x95\x96\x9e\xfa\xcf\xc9\x65\x5c\x43\x4e\x99\xa4\x86\xc1\xff\x7e\x42\xae\x9f\x80\x82\x1d\x4a\xee\xab\xa3\xb4\x89\x0f\x66\x95\x10\x67\xf8\xd3\x23\xe6\x8f\x54\xda\x20\xbe\x69\xe1\x4a\x28\x60\x26\x8f\x9d\xd4\xe6\xea\x60\x1e\x18\xbf\xd0\x93\x9a\x01\x05\x6e\x80\x83\x7a\x9c\x71\x78\x4b\x2e\x52\x1b\x01\xa0\x71\xa1\x2f\xf5\xef\x1f\x9b\xa8\x34\xbe\x45\x01\x46\xda\x6b\xc0\xc2\xa0\x7d\x5a\xbb\x07\x99\xf5\x14\xa8\x94\xeb\xdd\x2b\xb3\x55\x2f\x0c\xb8\x51\xd6\xa3\x6f\xa9\xfb\xbc\x0a\xb6\x68\x3c\x65\xdb\x75\x8e\x96\xd2\x3b\x65\xc4\x18\x02\x0a\x26\x0f\xc9\xf3\xf6\xcb\xcd\xeb\x51\x9b\x80\xec\xb0\x98\x74\xad\x7c\x21\x69\xb1\x42\xaf\x28\xce\x2b\x35\x2b\x25\xc4\x18\x69\xe0\x8a\x08\x85\xdd\xa7\x14\x27\x3f\x05\xdb\x60\x0c\x9a\xa0\xe4\xd8\x88\x9b\x10\xe6\x9f\xd8\x2f\xf7\x0d\x46\xcc\x26\xc0\xe9\x1d\xb4\x6e\xbc\x1e\x4e\xab\x55\xc2\x45\xa4\xd3\x0b\xab\xcc\x1a\xa1\x25\x24\x0c\xfa\xe6\xd1\x3e\xb7\x0d\x64\xce\x12\x88\xc8\xf9\xdd\xfa\xc8\xda\x71\x48\xc0\xa5\x77\x84\xc6\xc9\x33\x8a\x92\x14\x0a\x83\xd0\x01\x08\xa7\x66\x69\x44\x02\x1f\xdb\x55\xd1\xe9\xdf\x7b\x6c\x8c\x9e\xfc\x61\xe0\xf2\xc1\x49\x5e\xde\x39\x5e\xa9\x67\x85\x2b\x46\x9b\x74\xe9\xc4\xf1\xca\xfe\xa4\x21\xf8\x48\xe9\xff\x68\x76\x87\x6e\xd7\xca\xb5\x13\x85\x6a\xc6\x33\x4b\x79\xa8\xb0\x48\xcd\x2a\xfa\x01\xaa\xf3\x47\xfc\xa9\x7d\xa2\x02\x01\xf4\x09\x1f\x7a\xf4\xe5\xf6\x6f\x50\xc0\x10\xb4\x45\x03\xa0\x6a\xee\xdc\xa3\xf5\xbf\x52\x3b\x00\x4e\xd8\xca\x7d\x73\xfe\x30\x25\x55\x68\x9a\x38\x80\xae\x69\xdf\x48\x85\xb1\x22\x7c\x08\xa3\x07\xda\x3e\xcc\xf7\x31\x13\xdd\xfb\xf8\xca\xf6\xcf\x92\x4b\x56\x4c\x23\x78\xff\x27\xf7\xcb\x01\xfa\x64\xc9\xc3\x28\x15\x87\xf9\xc0\x2c\x5e\xcc\x5e\x43\x1a\xa0\xeb\x62\x3c\xb2\x29\x7b\xfc\x9a\x9d\xb8\xf3\xac\x9e\x44\xf7\xee\x57\x0c\xfa\x78\x4d\x23\x56\xd3\x5d\x8f\xaa\x15\x99\x6b\x0a\x4f\xc3\x63\x8a\x86\x65\x1c\x1f\xf9\x4f\xaf\x5a\xca\x3b\x59\x36\x62\x35\x9e\xbf\x74\x5a\x8a\xa4\xa2\x8d\x7c\xbe\x27\xff\x78\xe8\x6c\xea\x98\xc0\x2a\xb9\xfd\x80\x42\x7a\x72\x03\x86\x5c\x13\xf3\x39\x49\xfe\xa5\x82\x36\xed\xc0\x36\xd7\x1d\x2c\xdc\xbe\x48\xd8\x90\xf1\xea\x42\x06\xda\x15\x77\x0d\x55\xcb\x38\x6e\x05\x64\xf8\x6e\x9a\x56\x30\x9a\x1a\x84\x5d\x7f\x4a\xd3\x9a\xa3\x6e\x03\xb3\x64\xb4\x20\x0a\xb9\xb5\xfb\x87\xa9\xc2\x01\x98\xf3\x02\xfe\x67\xb9\x32\x64\x77\x7b\x15\xbb\x93\xe8\xcb\x4b\xd3\xda\xa6\xac\xc2\x96\x8c\x91\xa7\x2f\x3a\x7b\xf4\x89\x4f\x67\xf1\x42\xdf\x7e\x5a\xcb\x60\x31\xae\x4b\x42\xe1\xf4\xc7\xe5\xab\xb1\xc3\x5e\x2b\xbe\xf3\x52\xf4\x45\xad\x4f\x12\x30\x52\x16\xce\xa0\x97\x3d\xad\xc8\x1a\xc8\x52\xba\xfa\xa6\x8a\x96\x9d\x39\x33\xbe\xcf\xcd\x2f\xf2\x7c\x9a\x47\x62\x93\x37\x30\x7f\xd3\x5f\xf6\x1b\x2e\x95\x7f\xbf\x70\xf2\x20\xb1\x70\x44\x83\xfd\x8b\x9b\x84\xd2\x0c\x23\x9e\x27\xce\x8e\x57\x56\xeb\x72\x04\x80\xf5\x13\x6a\x5c\x0f\x68\x9e\x30\x1c\x12\x2c\xda\x54\x7d\x79\xf3\xb8\xea\xdf\xea\xfa\xa9\xf1\x50\x5f\xfe\xa6\x67\xdb\x6d\x43\x88\x5b\xe3\x86\x16\x0f\x4e\xd0\x7a\x5f\x2c\x24\xa9\xec\xd2\xb7\x9e\x57\x6f\x91\x8b\x99\x17\xca\xfb\xcf\xfe\xc4\x01\x1d\x76\xcb\xeb\x5a\xa5\x19\x20\x96\xb4\x1b\x0a\xde\x1a\x6d\xe6\x43\x7b\xb1\x9b\xb0\xa5\xff\xef\x1c\xed\xa5\x60\x57\x0c\x33\x8d\x1f\xec\xca\xde\x3a\xde\xc0\x35\x51\x05\x2d\xb6\x6b\xaf\xa2\x98\xbd\x81\xf8\xc9\xe1\xf5\xbe\xfb\x2f\xd2\xb6\x10\x22\x00\x52\x52\x9c\xc0\x5f\x2b\x5f\xa4\x46\x6c\x18\x81\xa0\xac\x3e\xb6\xf1\xcc\x5d\x8a\xb0\x06\xd7\x77\x88\xbf\xd6\xbd\x47\xc0\x52\x18\x0d\xdb\x7b\x6a\xeb\xf7\x66\x70\x17\x26\xb8\xc8\x51\xee\x9f\xf0\xcb\xed\xd9\x5b\xa5\xd5\xaa\xf0\x44\xc9\x1f\x5e\xc7\x3b\xb8\x33\x21\x63\x43\xd0\xbd\x00\x60\xfc\x15\x2b\x78\x46\x7f\x65\x0d\xb1\xac\xee\xc7\xde\xdd\x8a\xc0\x66\xdb\xf1\x60\xac\x7a\x82\x7b\xa7\xcf\x9c\x5b\x2c\x45\x13\xee\x53\x42\x37\x43\xc2\x43\xc1\x99\xa2\x0e\x22\x48\x02\x1c\x1f\xbc\x6f\x98\xc6\xb1\x83\xab\x7f\xe6\x56\xcd\xb6\x25\x5e\x88\x1c\x6c\xf2\xe6\x16\x4d\x7b\x06\x39\x28\xdb\x63\xce\xcf\xed\xd0\xe3\x1a\x4e\xf4\xe6\x3a\xee\x3e\x5b\x9b\x40\x60\x9e\xfb\x97\xd5\xe7\x69\x67\x1c\x80\x87\x35\xb4\x9a\xd1\x8a\x23\xbe\xa8\x2e\x7c\x2e\xac\x56\x5c\x01\x82\xf9\x3a\xe2\xe9\xc7\xfd\x85\xa3\xcd\xd5\xcb\x96\x5c\x9b\x60\xd7\xee\x53\x52\x4d\xbc\xc1\x03\x5b\xb6\xe8\xf0\x00\xbd\xdd\x40\x89\x89\xd3\x29\xf7\xdf\x9e\xd5\xf8\x0e\x09\xdd\x9c\xfb\xd2\x1b\xdf\x7d\x76\x98\xa8\xc8\x02\x65\xb0\x61\x1c\xe9\x50\xb8\x79\x65\x28\xd5\x45\x6e\xba\xe7\x12\x65\xca\x40\x01\xf8\x04\x3f\x3f\x7c\x92\x7f\xd0\x87\xa9\xea\x2a\x6c\x1c\xd7\x74\xb0\x6b\xc8\xb6\x31\x4b\xd9\x0d\xb9\x29\x27\xcf\xda\x4f\xe3\xc8\xd5\x0f\xaf\x3d\x4f\x3f\x4d\xf9\x59\xba\x5c\xb6\xf8\x3c\xcc\xb8\x7c\x0d\x27\xb7\xcc\x59\x39\x5e\x3f\x66\xb9\x35\xa4\x48\x2b\x60\x3d\x0c\xad\x2a\xf5\x19\x50\xb4\xfb\xf2\xeb\xcb\x23\x95\x6e\x06\xf7\x48\xe3\xac\xfc\xdc\x9d\xfb\x12\xfa\x3d\x90\xf8\x8b\xa5\x68\xd5\x66\x0d\x82\x63\x01\x39\xb8\x86\x59\xf2\xdc\xcf\xdb\x2e\x91\xc1\x97\x83\xfe\x7d\x7e\x20\x17\x75\x2c\xae\x94\xf6\x80\x0a\x36\xf3\x33\xb7\x6a\x30\xe0\xb8\x76\x4b\x24\x5f\x5e\xd1\x9c\x4b\x3d\xd4\x82\x7e\x29\x07\xea\xfe\xeb\x49\x19\x68\xba\xa6\xcb\xbd\xf9\x89\x1e\x45\xe2\x87\xd1\x26\x6f\x76\x8f\x1a\x26\xc7\x35\x16\xb5\xa9\x89\x42\xc0\xfc\xc9\x0e\xc3\xd8\x8d\xe9\x88\xa3\x8c\xdb\x59\x7b\xbf\xd6\xdc\x93\xaa\xa0\x5b\x93\x1c\xb3\x9b\x06\x6a\xda\x24\xbe\x8f\x53\xe9\xe6\xbd\xf7\x75\x88\xd5\x6b\xda\xa1\xcf\xad\x2e\xf2\xcb\xb6\x64\x93\x83\x2a\xf4\xa2\x40\x96\x56\xe2\x83\xb1\x5d\x8d\x8b\xad\x05\x8a\xff\x1e\x6b\x71\xd1\x84\xc1\x1a\x2a\xa0\x8c\xed\x2a\xf2\x83\xc4\x9c\xb5\x2f\x77\x7c\x9f\x2e\xea\xe6\x88\xa1\x56\xae\xdf\x0b\x8a\x55\x2c\x72\x6b\xdc\xeb\x30\xba\xf8\x41\x65\x5a\xc9\x7d\x81\x21\x57\x5c\x36\x5c\x01\x43\xe1\x0a\x34\xbc\xfe\xed\xa8\x32\x3c\x70\x09\x72\xe3\x28\x9c\x3f\x75\x66\xb0\x9a\x6d\xc4\x3f\x42\x8b\xe4\x1f\x37\xbd\x0d\xf0\xcf\xe6\x2b\x48\x2d\x8f\x78\xf0\x3c\x3e\xbf\x3d\xfb\x3c\x1a\x04\x37\xb9\xb6\xc0\x57\xa6\x68\x46\xaa\x65\x93\xc3\x3c\x35\x0b\xf8\xfd\xba\x5d\x50\x05\x33\xdf\x8c\x6b\x75\x11\xb6\xf2\xd3\x6e\xcc\xb6\x88\x6d\xe2\x79\x54\x88\xe4\x65\x8b\xf9\x55\x97\x5c\x9a\x7d\x3b\xdc\x96\x54\xc8\x57\xe9\xcd\xf7\x6d\x77\xc9\xfc\xf7\xf2\xe2\x6c\x25\x18\x16\xaf\x50\xca\xa2\x0d\xc8\x84\xd1\x58\xb4\x4d\x3b\x42\x61\xd2\x20\x4d\x72\x9e\xaa\x8e\x55\xa2\xab\xe3\xa1\x80\x11\xaa\x92\xc4\xc7\x2d\x96\xdf\x57\xc1\x0d\x6c\x53\x4f\xe4\xdb\xef\x9f\xab\x63\xe8\x1c\xcf\xc6\x01\xe6\x0e\xdd\x5d\xd3\xd2\xc3\x89\xa1\x76\xde\xea\xd1\x1d\xd0\xf4\xb7\xb1\x5b\x8c\x8f\xa7\xfc\x64\xa5\xd5\x42\x82\x96\xe0\xf2\x17\x3a\xf5\x5d\xc9\x02\x19\xd9\xee\xda\xaa\xe7\x23\xc8\xb1\xb1\x2f\x8c\xf0\x3e\x74\x43\xdb\x6f\x7d\xea\x0a\xeb\xe9\xc2\x87\x76\x0d\x55\xb1\x9b\x13\xa7\x96\x8a\xa5\xe8\xb2\xa5\x1d\xaa\xda\x0b\xb4\x05\x8c\xb7\x5e\x19\x24\xf2\xf6\x44\x3e\x35\xda\xac\xab\xa8\xf9\x3e\x68\x39\x40\xe8\x2b\x0e\xbe\x50\x5b\x1b\x55\xd4\xa0\x4c\x4c\x9a\x8b\xa5\xe8\xd6\xbd\x63\xb2\xf2\xae\x99\xf9\xe6\x2e\x65\x92\xe9\x21\x0f\x3a\x37\xc6\x6a\xa6\x8b\xd5\x41\xf6\xa7\x0d\x4e\xd7\xbd\xa0\xc0\x02\xaa\x45\xae\x6f\x70\x7c\xcc\xe8\x14\xbf\x3d\xbd\x6d\x35\x3d\x6b\xf0\x3a\x0f\x95\x43\x30\x11\xe4\xd3\xd4\xc1\xdd\x5a\x73\x1f\xd9\xc4\x25\xda\xac\x32\xff\x87\x53\xaa\x71\x79\x45\x60\x14\x40\xb5\xfc\x74\x66\xba\x54\xb5\x09\xf4\x87\xa3\x0f\x2d\xd7\x55\xe1\x5d\x17\xd4\x6b\xe0\x0c\xd0\xe6\x3e\xb0\x9d\xc4\xdc\xa7\x1f\x53\x0a\x9f\x40\xed\xc7\x16\xf6\xf3\xb2\x0e\xd5\x10\xef\xb6\x69\x19\x96\x67\x87\x89\xfc\xe7\xbf\x9c\x4c\x9f\xbb\x43\xdb\x30\x55\xf9\xeb\x8e\x66\x83\x5c\x0b\x2a\xcb\x0a\x6a\x25\x35\xfe\xcd\x6f\xe9\x06\x60\x26\xc1\x41\xca\xe7\x5e\xf7\x84\x3e\x19\x26\x35\xec\x52\x46\x34\x85\x83\x03\x37\x28\xc7\x7b\xe8\x05\xa2\x9f\x6b\x38\x57\x68\x1d\x12\x1b\x75\x82\xee\x18\x3f\xfc\x4f\x64\x4f\xdd\x20\xb4\x43\x37\x6b\x21\x1a\xa1\x32\x07\xe3\x5c\x83\x31\x83\x3c\xbf\xed\x1e\xff\x6d\x35\x97\xd8\x5b\x16\xb4\x3b\x70\x7f\x7c\x42\x1b\x3a\xc1\x21\x6e\xc2\x1d\x8b\xee\x1d\x29\xdf\x69\xaa\x02\x54\x2c\x45\xc3\x34\xe3\xee\xd0\xad\x86\xf0\xed\x49\x17\xf5\x3f\x6f\xd6\x3a\xa3\x36\x35\x05\x9e\xe2\x4b\x7b\x24\xbf\x09\xf9\xf1\xf3\xe4\x4b\x48\x17\xaf\xea\x94\x5f\x5d\xc5\x88\xa5\xd0\xa8\x3b\x85\x34\x6b\x85\x9a\xa1\xb0\x1f\xe4\x96\x39\x37\xf6\x13\x80\x0c\x1b\x23\x00\xe0\xfd\xfc\x96\x4b\xce\x52\x43\xc1\x86\x46\x9e\x47\x09\xe8\xae\x73\xd4\xd4\x81\xc4\x2c\x07\xb9\x3d\x0a\xb5\xc3\xf8\xc7\x2a\x85\x24\x89\x00\xb6\x90\x1e\xe8\x85\xe5\x4f\xab\xda\xaa\xac\x21\x20\x29\xbf\x1d\xc3\xaf\x03\x1c\x28\xe2\x45\xfe\xa5\x2d\xed\xa3\x2b\x33\xc5\x64\xe5\x7e\xfd\xf4\x18\x49\xd7\x69\x7f\x7d\xab\xef\x92\x53\x6f\x99\x58\xa8\xa3\x8b\xb1\x3d\xfc\xe2\x2b\xc4\x8f\x0b\x41\xbf\x2a\x5a\x12\x4f\x6e\x4e\x82\x98\x90\x97\xcb\xbd\xb3\x47\xc7\x0f\x0b\x8f\xa6\x44\xe5\xac\xdf\xb8\xf3\xd5\xd4\xb0\xca\x75\x8f\x39\x81\xee\xda\xfd\xd9\xd5\xd8\x43\x7d\xec\x59\x99\x85\x1e\x3d\xfb\xb0\xe6\xe7\x46\x43\x61\xa5\xb8\xaa\x5f\x5b\xa3\xd5\xa7\x2e\x67\xe4\x0a\x8d\x93\xb1\x9a\x4e\x24\xb2\x7d\x2a\x64\x56\xa6\x6c\xd7\xda\xfc\x8e\xc7\x68\x23\x99\x9d\xe7\xfe\xb6\x52\x9b\xaa\x89\x2a\x43\xf6\x14\x5f\xbc\xf1\x5d\xa2\xe0\xc1\xf1\x02\x7e\xcf\xac\xec\xba\xa7\xa6\x19\x7a\x2d\x79\x42\xde\xf3\x86\xa6\x2a\x4c\x43\x46\xfc\xc0\x17\x85\x5b\xee\xbb\x47\x75\x96\x97\x83\x88\x2b\x1d\xa7\x0a\x85\x67\x75\x96\x37\x8b\xf3\x64\x9e\xaf\xfd\x68\xb0\xce\x9a\x6a\x60\x86\x6a\xc2\xf2\xc8\xa8\x74\xa6\xe9\x5c\x6a\x06\x92\x7f\xc7\x9b\x4a\xdf\x08\xb9\x75\xfe\x4e\x2e\xd9\x79\x9e\x0a\xe8\xf6\x91\xcb\x51\x45\xcb\xc7\x28\xe4\x40\x5e\xe8\xf6\x72\xb0\xea\x35\xcf\xe8\x12\x50\x81\xe4\x73\xe5\xde\x3c\xa5\x7b\x5a\x7b\x36\x75\x10\xe7\x8a\x19\x37\x8d\xd2\xcd\x09\x36\x64\x46\x97\x6b\x9e\xc9\xbe\xfd\xd0\xc7\x42\xb3\x23\xd7\x1c\xa6\xb5\x45\x39\x81\x08\xba\x08\x8f\xec\xe0\xcd\xaa\x65\x9c\x3c\xa6\x6c\xbf\x81\x41\xf6\x31\x57\x61\x20\x21\xfd\x7e\x8c\x7f\x3f\xa5\x35\x3a\xc3\xc0\x82\x6c\x80\xf7\x0d\xa7\xdf\x33\x5c\x62\x9b\x55\x53\xa5\x23\x4b\xb4\x2d\xc9\x5b\x5b\x58\x5c\xed\x5d\x2b\x26\xeb\x59\x0e\x90\xe2\xce\x3a\xf2\xda\xb6\x20\xeb\xe1\x0c\xaf\xf8\x42\xfb\x42\x75\x23\x09\x43\xda\x62\x0d\xbb\x98\xc1\x40\x69\xc8\x15\x02\x00\xc1\x15\x2b\x3a\x97\x69\xf0\x59\x14\xd6\xac\xb4\xed\x7e\xdd\x5a\x4d\x17\x0b\x79\xbc\x83\xfd\x7b\x8e\x7a\x55\x43\x1b\x28\x04\x51\x81\x2e\xcc\xdb\x8f\xe8\xda\xc9\x2d\x91\x49\x15\x8c\xee\x21\x0a\x27\x9f\x3b\xde\x5e\x71\x5b\xca\x9b\x15\xb2\x5f\x79\x32\x47\xe6\xd7\x15\x40\x5f\x46\x1b\x56\x4b\xab\x43\x0b\x23\x3b\x68\xb7\xf4\x7a\x60\x80\x92\x96\x20\x6e\x3c\xfa\x83\xf9\x8a\x0d\x2f\xee\x41\x35\x55\x86\x2a\x37\xf8\x90\xbe\xb8\x1c\xde\x4e\x16\xa8\xfc\xa1\x2f\xc9\x30\x59\x6e\xef\x8b\x4f\x2c\xe8\xb3\x6d\x86\x02\x5c\xe3\x66\xf4\xb9\x97\x27\xb6\xd1\x18\xcb\x5c\xbd\x0f\x00\xa9\x7b\xf5\x31\x34\x40\xea\x78\x1a\x72\xcf\xde\xec\x5a\xc0\x88\x05\x56\x13\x97\xcf\xd6\x36\x2e\x78\xda\xfe\x69\x5a\x18\xaa\x38\xe0\xcc\xbc\xe7\x99\x09\x9a\xeb\xd6\xf5\x53\x93\xfb\x57\x15\xe1\xb6\xa5\x8b\x36\x34\x2d\x65\xd1\x7e\xe7\x91\x89\x6d\xb9\xb7\x30\xd1\xd1\x5c\xd1\xcb\xe3\xb4\x30\x1f\x60\x16\xd7\x3b\x52\x0a\x36\xf4\x64\x80\x68\xd0\x40\x52\xff\xf3\xdf\x7f\x35\x1d\x0c\xf7\x60\x80\x7d\x7c\x7f\x6f\x36\xba\xd6\x49\xc5\x45\x9e\x27\x7d\x84\x73\xc1\xdd\xba\x27\x0b\xc3\x98\x25\x69\xf7\xe6\x6d\x89\xab\x77\xd9\x41\xa6\x05\xea\xce\xd1\x6d\x67\xc6\x6b\xa5\x92\xa0\xc3\x72\xd0\x2b\x0f\xb3\xfb\x4f\x28\x68\xe0\x78\x5f\x8b\x5e\xdf\x0f\x6d\x2d\xde\x53\xee\xa7\x2f\x85\x58\x6f\x38\xa0\x0b\xe1\x32\x46\x12\x62\x5c\xee\x73\x5a\x53\x53\x6c\x4b\x4e\x70\x30\x7a\x5f\x53\x24\x4c\x90\x53\xa6\x95\x04\x63\x30\x33\xd0\x04\xe5\x84\xdc\x9f\x48\x23\xf2\x43\x1b\x6d\xdf\xba\x3e\xc4\x09\x1b\x7c\xd4\xe9\x91\x6a\x3b\xce\xf5\xe3\xcb\xe6\x92\xb9\xf3\xd7\x71\xb2\xdc\x55\x16\x72\xb1\xdd\xae\xe8\x73\x34\xcb\xd3\x9c\x29\xb8\xa2\xc6\xcb\xe3\x94\xf2\xcf\xb5\x44\xbb\x26\x7f\xdd\x40\xfd\x78\x02\x3d\xad\x4a\xe8\x24\xfd\xa1\xed\xfc\x88\x81\x1a\xb6\x89\xb8\x70\xf6\xe0\xe7\xf8\xe6\x87\xa9\x3c\x4c\x61\x2f\x9d\xa0\x59\x8e\x89\x13\x37\xba\x73\xdc\x79\x2a\x9f\x04\x86\x58\xc5\x52\x84\xb5\xeb\x9c\x35\x5b\xc4\x9a\x4f\xee\xe3\xa9\xc8\xf5\x36\x6a\x70\xab\xf7\x87\x9f\x50\x06\x11\x0c\x64\xe5\x4a\x7d\xf9\xed\xae\x46\xce\xa9\x63\xd0\xca\x94\x1d\xc5\x9d\x0d\x85\xb6\x8b\x6d\x82\x1b\xa9\x98\xed\xdc\x6e\x95\xa0\x21\x1c\xe4\xe3\xef\x7a\xfa\x8d\xb1\xda\xeb\x66\x0e\x72\x53\x28\x4f\x5f\xae\x6a\x29\xca\xb6\x14\xa8\xd6\xb2\xe4\x79\xee\xb6\x41\x72\x38\xb2\x1e\xa4\x6f\xca\xed\x62\x05\x40\x67\x4d\xaa\x54\xa3\xa2\xa5\x32\xd4\xc3\x42\x98\x3a\xfa\xbf\x13\xaa\x6a\x39\x0b\x18\xcc\x72\x8c\xcf\x3d\xa4\x2b\xe6\x99\x75\x39\xf8\x30\x0e\x3c\xcc\x1f\x60\x03\xfb\x1c\xdb\x94\x1b\xf7\xa2\x82\x4b\x07\x36\x48\xfc\x00\x7f\x7b\xbf\xde\x91\x67\xa4\xc2\x15\x07\xfb\x8c\xe3\x23\x75\xdb\x37\xa0\xdc\x88\x35\xf1\xae\x5e\xfd\x4c\x74\x9c\xd0\x25\xbe\xc3\x4b\xdc\xbf\xac\x3d\x4f\x39\xe6\x02\xc2\x30\x4f\xbb\x3f\xb4\x73\x90\x84\xa4\xc0\x4b\xbc\x7d\xc2\x24\xed\x56\x40\x93\x1c\x64\x53\xda\x1a\xe7\xcf\x8d\x54\xab\x81\xd0\xf1\x02\xe1\x5a\x9a\x7f\xfb\x2e\xed\x29\x83\x71\x3a\xa9\x0a\xff\xdd\x52\x9f\xb1\xf8\x6e\xdd\x72\x14\x0a\xd2\x44\x72\x25\x57\xd4\x18\x1c\xc8\x89\x5f\x7b\x22\xe6\x19\x0d\xd6\x52\x12\xb7\x81\x12\xdb\x49\xe3\xa2\x2b\x52\xa4\x10\x75\x37\x64\xa4\xb2\x3f\xb4\x22\xbd\x61\x0f\x2c\x82\x76\x1c\xe6\xf9\xcb\x55\xc8\x26\x55\xca\x5c\x92\x00\xf3\x8c\x2f\xec\x4e\x3b\x6d\x45\x1f\x74\x4e\xd1\x1c\xb9\xd2\xda\xa5\xe0\x76\x67\xb7\xcf\x24\x51\x09\x0f\x18\xa3\x77\xbc\x11\x4c\x8d\xe1\xbd\x3c\xa1\xc0\x13\xea\x44\x5d\xb9\x46\xdd\xe3\x17\xb6\x44\x28\xee\xc8\x5d\x74\xcf\xe0\xe1\x65\x82\xfc\xe2\x2a\x16\xaa\x30\xa8\x68\xe8\x64\xad\xcd\xe8\x51\xdb\xa6\x22\x9b\xba\xbd\xdf\xf9\xd8\x2d\xc6\xbf\x07\xc9\x97\xc5\xc8\x06\x37\x26\xe8\xd9\x74\x0f\x13\xb1\x20\xce\x42\x03\x61\x16\x6f\x4c\x2d\x4b\x49\x18\xc5\x7c\x25\xa1\x56\x5c\x3d\x5f\x2e\xe1\x7a\x7c\x20\x83\x81\x0d\xdd\xa4\xcb\xbc\x38\xd0\xbe\x4a\x82\x57\x7e\xd7\xce\xb1\xfa\x1a\x17\x12\xd9\x62\x25\xcf\x52\xa0\x79\x36\x3f\x6e\xa6\xdc\xac\x81\x48\x29\xad\x60\x37\xa1\x06\xdd\xa9\x09\xeb\x81\xdb\x0f\x57\x9a\x97\x65\xd6\xe8\x8d\xfc\x1e\xbb\x66\x83\x5c\x70\x91\xda\x70\x5a\x0c\x3b\x22\x57\xb0\x83\x02\x0b\x3b\x48\x98\x31\x17\x36\x3f\x21\x6c\xa2\xc2\x38\xde\x00\x11\x03\x00\x88\xbf\xbd\x35\xfb\x7d\x3d\xc8\xac\x73\x58\xb8\xea\xa6\x31\xf6\xb4\xe6\x91\x62\xc1\x18\x4f\xe8\x05\xed\xd8\x95\x11\x9a\x2f\x13\xb8\x98\xe5\x8b\xd3\x05\x17\x10\xd8\x03\xbf\x7b\x48\x3b\xb2\x82\x20\x81\x88\xc0\xd1\xbd\xfd\x3e\xd9\x98\xc2\x1b\xda\x52\x89\xfd\x55\x7d\x93\x54\xd2\x0e\x70\x7e\xdb\x0b\x32\xa1\xab\x63\xc7\x73\x33\x09\xdd\x7d\x3b\xe4\x40\x29\xfe\x8f\x00\x9e\xf5\xb7\x35\x00\x2c\x49\xfa\xfb\xdd\x8a\xac\xe8\x77\xb4\x25\x0f\xa3\xf2\x24\xba\x8e\x9e\xc8\x83\x21\x23\xa6\x05\x99\xe5\x67\xb5\x65\x6b\x72\x48\x17\xdf\xca\xc6\x0b\xe9\x70\xbb\x86\x58\x12\xf2\xff\x6b\x96\x5c\x23\xac\x05\x32\xfd\xf9\xff\x1e\x97\x19\x80\x08\x28\x34\x94\x3e\xdf\x32\x78\x13\x65\xf9\xaa\xd5\x7a\xa7\xa2\xd6\x9d\x62\x72\xab\x24\x51\x5c\xca\xbf\xf4\x9a\xec\x5f\x70\xb7\x3b\x1e\x75\xfe\xba\x44\x67\x95\x91\x06\x0a\x12\xc5\xb1\xdc\xa4\x1e\xc5\xb5\x00\xec\xe8\x21\x2f\x7f\xec\xd8\x3f\x55\x15\x81\x9c\xa5\x30\x73\xbb\xf6\xbc\x00\x2f\x29\x04\x9b\x6f\x63\x17\x68\x55\x9d\x6f\xda\xd4\xc7\x22\x41\x33\xbe\x3c\x59\xf8\x73\x23\x3f\x23\x0d\x5b\x30\x05\x39\xe5\x3a\x62\xdb\xaa\x5e\x93\xea\x6d\x1f\x97\x4e\x34\xae\xa9\xc3\xde\x0c\xd4\xd0\xb4\x92\x47\xfd\xe6\xb3\x32\x9f\xaa\x23\x37\x74\x5d\xc0\x24\x94\xfa\xf2\xff\xb7\x46\x46\xc3\x14\x8a\x9b\x0c\xd7\xc7\x2e\x93\x94\x91\x38\xa4\x34\xcb\x98\x31\x45\xd1\xae\xf0\xfe\x4e\x9d\xc8\xe1\x10\xbb\x25\xde\x3a\x7b\x49\x73\x01\xe9\xea\x9c\x23\x90\xf6\xe1\xd6\x21\x4a\x6b\x09\x58\xc1\x85\xd5\x3d\xd9\x47\xc4\xd5\x3d\xe3\x14\x97\xcb\x3a\x0d\x3b\xd6\xae\x60\x01\x6e\xbb\x66\x3a\x56\xfb\x42\xd7\xf9\xfa\xc2\xb6\x12\xe4\xf4\xa7\xc7\xe9\xaa\x26\xf1\x03\x15\x53\xe0\x9b\x4e\xf1\x16\xde\x22\x6c\x13\x93\x9c\x6d\xbc\xec\xed\xea\x10\xcf\xda\x77\x70\x40\x4c\x58\x92\x7f\xe9\x18\x2e\x21\xb6\x4a\xd3\x2a\x3f\x6b\xd6\xa4\xb6\x5a\xdb\xf9\x27\xae\xf5\x43\x25\xcc\x7d\x66\xe7\xac\xf8\x6a\xa6\x3e\xa8\xb5\x70\x52\x80\x40\xfe\xd8\xeb\x3a\xac\xc8\xa7\x76\xc2\x69\x8f\xde\xbb\x4c\xc0\x87\x6c\x6c\x06\x8c\xba\x3c\xcf\x7b\x5c\xf1\x10\x77\xa8\x85\x1c\x4e\xa9\xf9\xf0\x25\x42\xc5\x0d\xec\x5e\x79\x12\x3c\x6c\x9d\x06\x67\x09\x03\x58\xdd\xd1\xdf\x56\xc9\x05\xe4\x93\x0d\x42\x1b\x1f\x68\xeb\xfb\x64\xed\xed\x84\xd5\x00\xa6\x3f\x7f\x7c\x50\xe4\xb1\xbc\xab\x52\x2c\x45\x3f\xdd\x90\x7d\x35\x9e\x8d\xdc\x24\x90\xfe\x72\xff\x20\xb1\xc4\x90\x0b\xb0\xce\xdc\x82\x28\x51\xed\x6b\xba\x01\x6d\x42\xff\xe9\xcc\xbb\x15\xbc\x85\xc9\x30\x08\x0c\x27\xd5\xbc\x8c\x79\x4f\x8a\x52\xc7\x42\x65\x12\x84\xc2\x2b\x2b\x77\xef\x9b\xe7\x2b\x47\x44\xea\x29\x13\xdf\xda\x5e\x2d\x45\x09\x40\x58\x23\x9d\x33\x6f\xdb\x21\x37\x08\xf5\x43\x54\x57\x94\xfd\x8c\x83\x1d\x32\xc0\x96\x19\xf5\x09\x97\xb7\xfd\x9f\xc7\x75\x2d\xbe\xf5\x21\x61\x38\x81\xad\xe5\x3f\xfb\x94\x56\xac\xb1\xd0\xb7\x12\x92\xaa\xf1\x9f\xc7\xf8\x52\xeb\x46\x3e\x4b\xf3\x98\x35\xcf\xf0\x38\xb0\x14\xb5\x7c\xaa\x9a\x89\x7f\x57\x9f\xc6\x70\x40\x26\xcf\x74\x83\x83\xba\x7e\x44\x10\x88\x5a\xb8\xaf\xe0\x1c\x4f\xba\xb5\x40\x97\x8e\x6e\x7c\x53\x9e\x25\xa1\xed\x20\x57\x71\x90\xe9\xcb\x7f\xa5\x31\x22\x33\xb1\xc2\x01\x06\xa4\x75\x5f\x3e\xd0\x9b\xab\x98\xd8\x5c\x9e\x99\xaf\xa9\xc3\xed\x2a\x5d\x98\x5b\xbf\x27\xd2\xbc\x46\x73\x65\xe2\x70\x86\x2b\xc4\x04\xdd\x9e\xf8\xc7\xee\x5b\xca\xb0\x9e\xd5\x90\x2b\xa4\x9a\xa2\xbf\x2b\xa8\x4a\xdf\x0e\xe1\x67\x77\x2e\x4e\x5d\x7b\x1a\x80\x60\x18\x3c\x4d\xb5\xe6\x36\xb9\x49\x2a\x1f\x93\x1b\xfc\x61\x7e\x98\xbb\xec\xc9\x78\xb6\x71\xa2\xdc\x2a\xb3\xbb\x78\x92\x51\xea\xcb\x5f\xbc\x2c\xdd\xe7\x55\xd4\x54\x1a\x05\x7d\xc3\x64\x14\xbe\xbc\x4b\x08\x2c\x19\xcf\x9d\x1e\xab\xb4\x75\x1a\xb8\x88\x5d\x00\x0b\x27\x78\xfd\xfc\xe8\x09\x0a\x6c\xd1\x41\xbd\x1c\x27\xbc\xf6\x51\xb9\x46\x03\x0b\x67\x33\x1f\x57\x46\xf6\xd9\xb3\x53\x90\x7f\x9f\x31\x5a\x73\x1f\x82\x6e\x3e\xc7\x98\x0b\x2a\x7d\xee\xd0\xc4\xa1\xd2\x13\x2c\x85\x96\x4d\x5f\xab\x85\x53\xec\x23\xc6\x87\xae\xc9\x2b\xff\xb2\xd6\x4a\x89\xf3\x4a\xc9\x59\xdf\xdd\xe0\xcb\xc7\xc1\x2e\xac\xfa\xdc\xb6\xd5\xd9\xe0\x61\xa3\x16\xac\xe8\xe8\xb8\x28\x3d\x69\x55\xe4\xaa\x7d\x4f\xcb\x84\xb9\x15\x82\xc3\xad\x38\xd6\x26\x68\x15\xc7\xac\x79\x69\xa6\xc7\xd5\xcd\x46\xce\xc9\x26\xe8\x9d\x09\xaf\xfa\x27\x13\x34\xeb\x12\xcc\x65\x82\x85\xea\x5d\x9f\x51\x3c\xa9\xb3\xb3\x1a\xd8\xe7\x70\xd2\x4e\x3e\x3b\x5d\xb5\x7a\x88\xc8\xe1\x2b\x2e\x6e\x71\x6f\xda\xd2\x42\x91\x40\x22\x9b\x28\x36\x38\xf9\xbb\xb6\xf0\x15\x8b\x4c\x90\xd9\x4c\x56\xec\xa4\x40\x6f\x8b\xf8\x41\x32\x02\xe5\x29\xfc\x4f\xb6\x2a\xc5\xa7\x0d\xe6\x40\xc5\x52\xb4\xf0\x55\x99\xf7\x10\x27\x2e\x4a\x45\x80\x8d\x0e\x74\xcb\xa2\xcf\x0a\x6b\x38\xc9\xfc\x46\x9f\x14\xfd\x8a\x90\x05\xa4\xed\x54\x29\x78\x8c\x63\x32\x3e\x6c\x91\x76\x0f\xc7\xdc\x56\x6b\x82\x16\xa0\xb8\x8b\x03\xf4\x56\xa5\x0b\xd7\x30\xcd\x19\x81\xba\xa2\x38\xcb\x5d\xbd\x81\xd7\x35\x1f\xbe\xf2\xfa\x25\xd7\x2e\xbf\x66\x55\x69\x79\xd2\x02\x18\x72\x4a\x55\x9f\x75\x60\x9c\xc5\x33\xa8\x6f\x4e\x11\x0a\xe7\x42\x37\xbe\x14\x0d\x7b\x92\x2f\x21\x97\x80\xdb\x48\xf4\x31\x8d\x61\x54\x21\x0c\x9b\x01\x65\xbc\x06\x1b\xbe\x32\x7b\x84\xf4\x84\x7e\xa2\x3c\x96\xfb\xe8\x6e\x75\x7c\x2b\xa4\xfe\xe6\x6a\x73\x4f\x27\xf4\x71\xe8\x88\xf7\x30\xae\x5b\x3f\x49\xe3\x97\x94\x02\x53\xaa\x8f\x66\x9f\x90\x8d\x71\xb1\xde\x0a\x79\x81\x93\x2e\xd7\xd7\xb6\x48\x90\x94\xef\xd2\x66\x99\xa2\x24\xcb\xce\xf5\x4d\x4e\x8b\x54\x07\xc5\x4b\x77\x9a\x22\xa5\x12\xd0\x72\xbc\x72\x8a\xa5\x68\x9b\x66\xb2\x5e\x0d\x59\x9c\x80\x88\x44\xe9\x1d\xf7\x68\x7e\x3b\xc8\x4c\x9c\xdf\x4a\xd1\xb9\x8d\x21\x19\x5d\xe4\x62\x29\x1a\x7b\xa7\xea\xa6\xe9\xd6\xe3\xac\xe0\xb0\xa7\x60\x4b\x42\x07\xc6\xeb\xf9\xfb\xd7\x68\x85\x79\x2a\xe0\x02\x99\xcd\xa3\xfd\x64\x23\xa7\x42\x7c\x94\xa0\x7d\x8d\xc5\x0f\xf3\x17\xbf\x34\x64\xa8\x85\x55\x9e\xcb\x90\x7d\x92\x82\x53\x81\x86\x4a\x63\xdf\x44\x25\x99\x77\x5d\xbf\x65\x37\x50\x5c\x9b\xb7\x09\x7d\x4d\x4f\xe3\x2b\xf6\x14\xd7\xc2\xfc\x7b\x35\x1a\xb5\x85\x02\xcb\xc6\xd8\x55\x55\x62\xa3\x9b\x15\xee\xaa\x6f\x85\x30\x7f\xcf\x93\x57\x33\x75\xaf\x67\x63\xe4\x87\x2c\xd9\x3d\xc6\x93\xc2\x5f\x6e\x71\xe8\x22\x95\x1f\xf1\xa1\xfb\x64\x0c\x16\xb0\x8b\x54\x8c\x69\xf8\x26\x55\xc1\xc5\x37\x81\xb3\x0a\xbf\x2a\x5c\xac\x20\xf7\x1a\x38\xc0\x0c\xaa\x99\xdc\x4f\x57\xa8\x88\xe4\x2a\xe7\x47\x3f\x77\x7a\xac\xb2\x41\x6c\x12\xaf\x49\x75\x98\x98\xfb\xe9\xac\xe1\xda\xa1\xcd\x61\xc8\xdf\xd0\x74\xfb\x12\x61\x1c\x0e\x7d\x89\xfe\xda\x9f\xbf\x99\x45\xd4\x75\x89\xa2\x3f\x1c\xfd\xe7\x34\x15\xc9\x17\x82\x78\xa0\x28\x85\xa6\x9e\xd0\x9d\x6d\x41\xad\x4a\xc8\x5d\x3f\x30\x38\xbb\xe1\x1a\xb4\xe9\x8b\x4c\xf3\xe5\x53\x7c\x2f\x77\x53\xdf\x25\x70\xb3\xc6\x65\xbd\x13\x94\xb7\x1d\x30\xea\x5b\x67\xb1\x0b\xce\x7d\xfc\x9c\x6c\x6a\x0c\x46\x6c\x84\xb2\xb3\xd8\xdd\xe5\x3f\xbe\x26\x7b\x46\x35\x91\x48\x2b\xe4\x19\xf5\xb1\x53\xba\xa6\x56\x9c\x1a\xf2\x66\xdb\x98\x4a\xa2\x58\x81\x9b\xc5\x52\xd4\x37\x4b\xae\x69\x5a\x8d\x1f\x1e\xac\xe9\x68\xe1\x26\xdd\x57\x0a\x10\x5c\xfc\xd4\xe8\x7b\x34\xe3\x7f\xc4\xb0\xcf\xfb\xb2\x8f\xbc\xda\x86\x7a\x07\x27\x7f\x2e\xd0\x43\x6f\xd1\xae\x0a\x11\x51\xee\x47\xef\xec\x4d\xb7\x49\x13\xc5\x3f\xb0\x8d\xec\xeb\x9e\xcf\x93\xa2\xe8\x82\x4b\xf8\xd5\xd3\x06\x14\x63\x85\x3b\xe7\xa7\xde\x94\x33\xba\xb2\xe3\xe7\xd7\x0e\x69\x76\x25\xc8\x23\xe9\xd4\xe6\xce\x5d\x0a\x04\x15\x85\x71\xc2\x53\xea\xcb\xcd\x7f\xf3\x3c\x45\x5d\x2e\x68\x88\xfe\x7a\x7e\xc7\x21\x35\x7c\xdb\x36\xf2\x7c\xa1\x69\xfa\x9d\x13\xba\x30\xfa\xbc\x59\xc9\x77\x5c\xa1\x99\x4f\x25\x3e\x91\x82\xed\x70\xe9\x91\xec\x9f\x56\x40\x86\x8c\xe3\xc9\xbf\x74\xb4\x43\x6c\x9b\x38\x93\x17\xc7\xe8\x07\x26\x9e\xaf\x14\xb2\xa2\x49\x2f\x0e\x98\xf7\xaf\xb8\x48\xa1\x5f\x90\x72\xe8\xb6\xe9\xea\xe5\x1f\x5c\x91\x45\x81\xa5\x2a\xde\x89\x7a\x51\xca\x20\x39\xed\x0a\x6d\x6e\x86\x1a\x38\xae\x08\x61\xab\xbf\x57\x77\x0b\xb4\x69\x90\x8c\x5a\xf2\xef\x3e\xa4\x3a\xe0\x31\x27\xb5\x2f\xf8\xcd\xe1\x01\x22\x79\x03\x82\xc6\xcd\x4f\x49\xe6\xdb\x8c\xd9\xb3\x8b\xa5\x68\x66\x43\xaf\x0b\x1a\xd4\x6e\x24\x5e\xd9\x7d\xf9\x82\xab\xf5\x9b\x90\x59\xb7\x53\x0b\xd1\xf1\x37\xcb\xa5\x88\x3c\x0f\x31\x14\xf0\x72\xe3\xaa\x39\x5a\x2c\xaf\x34\xa8\x89\x82\x44\x93\x39\xbf\x4b\x71\x3c\x25\x8e\xa3\x7a\xbd\xe4\xfe\xb1\x56\x09\x9e\x98\x2b\xc8\xe7\x1e\xdb\xa4\x94\x35\x89\x65\x6d\x5f\xee\xcd\xd3\xa9\x03\x4a\x95\x54\x84\xd0\xc9\x8f\x6e\x55\xc8\x18\x36\x65\xa4\x02\x37\xff\xc4\x11\x85\xef\x6f\x82\xf9\xd4\xbf\x2d\xe6\x19\x4b\x8d\x61\x14\x14\x6b\x0c\xb9\x15\xd3\x22\x76\x85\x01\x31\x24\xff\xab\x97\xe4\x07\xd5\x70\x1c\xc2\xa0\xc9\x3e\x20\x63\x05\xd6\xb2\xf9\x0c\x3d\xbf\x46\x1a\x09\x74\xc5\x8f\xb6\x70\xfa\xdd\x0a\x53\xd5\xad\x23\xae\xe7\xd3\x8e\xe3\xeb\x37\x4c\x55\x4b\x61\x1c\x05\x54\xf8\xe8\xc2\xa1\x0a\xff\x9e\x31\x90\x7e\xad\x72\xf7\xec\xe2\x22\x6c\xd3\xb0\xc1\x48\x46\x24\xf1\x87\x77\x2b\x44\x5c\x86\xc2\x38\x28\x8c\x8e\xb2\xa5\x4e\x8d\x5a\x88\x69\x38\xa4\x3d\xc7\xb3\xdb\xbd\x4b\x0c\x68\xf2\xeb\xf7\xa9\xe7\x82\x1b\x60\xb7\x92\xf5\x44\xfd\xaa\xab\x20\x0a\x92\xe3\x07\x92\xd4\xc5\x0f\x09\x01\x2f\x50\x59\x84\x08\x14\x1e\xd5\x2c\x85\x12\xb0\x1c\xef\x86\x3c\xfe\x94\x66\xb0\x06\xa7\xfe\xee\xf9\x3c\x51\x9f\x51\x6c\x21\x06\xcf\xe5\x23\x47\x87\x26\x47\xa8\x8f\x59\x22\xb4\xbf\x45\x08\x93\x04\xd4\xc6\x30\x38\x82\xbf\x7e\x73\xa2\xb4\xaa\x8f\xcf\xe1\xac\xa8\xe4\xfb\x56\x49\xf1\x71\xe2\xa2\x4a\x03\xb3\x00\x0b\xe4\x5b\xae\x7c\x52\x4b\x82\x18\xc6\x15\xea\x08\x5a\x74\xfe\x25\x7e\x58\x5f\xe9\xa2\x80\x28\xd3\xd8\xf3\x56\xab\x4e\x26\xd5\x2a\x84\x93\x97\x94\x69\x46\x19\xa9\x48\xf8\xef\x0e\xe7\x4d\x9e\xab\x12\x28\x41\x1b\x16\xab\x67\x8b\xdc\xd9\x35\x86\x3c\x2f\xf1\x42\x39\x33\x32\x2d\xa1\xca\xa1\x9d\x36\x18\x5f\x68\xb3\x19\x49\xbb\x88\xfb\x0d\xe9\x0a\x0f\xc8\xdb\x77\x2e\xe4\x05\x43\x37\xb6\x11\x0b\x53\x2c\xd5\x70\xcd\x0f\xcc\xb4\x30\xf4\x86\xf9\x9a\x78\x76\xa0\xb2\x26\x90\xdd\x36\x96\xcc\x9f\xbb\x4f\x36\xd2\x42\x2e\x86\x96\x2b\x2b\x32\x47\x36\x69\xe0\x04\x65\xff\xcb\x9d\xfc\x31\x7e\x20\x74\x10\x53\x8f\xd0\x27\xdb\x10\x9b\x0c\x9c\x03\x21\x76\x1b\x87\x35\x22\x75\xe7\x3c\x31\x4c\x7d\xeb\x88\x7c\xa3\x26\xf2\x50\xea\x83\x13\xbf\xb3\xc6\x3a\xbe\x94\x80\xa2\x08\x8b\xe6\x9d\xcb\xe5\x89\x53\xc7\x6e\x10\x9a\x20\xa0\x94\xef\x3d\xa1\x78\x66\x07\xa0\x2d\x65\xb0\x1b\x15\xe9\x50\x52\x03\x90\x12\x57\x15\xef\xd0\xf9\x8c\x01\xf1\x13\x5b\x44\xc3\x3a\x87\xdf\x61\x02\x44\x4f\x6a\xa5\x01\xdd\xda\x3c\x03\xd9\x26\x44\x6d\xe1\xa8\x50\x18\x3f\x30\x45\x36\x58\xa8\x5d\xd4\xe4\x53\x86\x22\x6a\x82\x71\xa5\xcc\xf5\xe5\x72\xeb\x0e\x0f\x56\xe9\xf1\xf1\x8f\x3e\x7b\xdb\x78\x65\x99\xc7\x75\x0e\x6e\xd7\x9d\xdd\xb3\x48\x78\x98\xc7\x2f\x1b\x78\xd7\x8f\x8f\x94\xbd\x0a\x0f\xbb\x0e\x72\xe3\xec\x29\x7e\x3c\xbf\x1e\x20\x54\x04\x10\xab\xe3\x24\x12\x0f\xbf\x4d\x69\xe9\x61\x37\xe9\xc5\x19\x07\xb5\x56\x56\x93\x16\x9b\xa8\xd5\xc9\xc1\x0f\xfb\x1e\xe6\xbb\x76\x05\x23\xae\x49\x3c\x1e\x49\xf3\x3f\x7f\x2d\xfb\x6c\x1a\x84\xda\x82\x5f\xc6\x27\xf5\x73\xb6\x0f\x97\xaa\x6d\x3d\x4a\xae\x3c\x58\xb3\xe5\x2a\x87\x41\x20\x15\xef\x72\xeb\x3a\x65\xde\xd1\xa2\xbe\x4f\xaa\xc5\x52\xf4\xaf\x6f\x8b\x65\x11\xa7\x7c\x60\x9e\x56\xef\xce\x9e\x89\x78\x43\xc0\x40\x26\x5a\x54\x40\x1f\xbd\x4f\x67\x78\xbb\x35\x81\x12\x68\xba\x3a\x74\x12\x7b\x88\xa5\x10\xb2\x42\x61\x30\xaf\xe7\x13\x48\x52\xb1\x14\xdd\xb0\x4d\xe8\xbd\x26\x98\x19\x05\x4b\xf8\x0c\xcf\xb7\x9a\x94\x1b\xcc\xfc\x75\x4f\xca\x92\xf3\x33\x47\xe6\xb7\xef\xd1\x2d\x42\x18\xf2\x31\x48\x58\x70\x6a\xd8\x7f\xf4\x6a\xff\x00\x23\x93\x7b\x9e\x8b\x3e\xf5\xd4\x68\x62\x16\x86\x72\xfd\x54\x58\xa9\x6d\xdb\xdb\xbe\x55\xca\x07\xb7\x83\x12\xf2\xf6\xf6\x6c\x91\x8a\xd7\x87\x28\x2e\x97\x2b\x81\x3a\xc9\xc9\x85\x67\xa4\x64\x41\x32\x05\xe9\x33\x0e\x9e\x94\x61\x02\xba\x54\x22\xaa\xbd\xf1\xac\x3e\xa7\x63\x69\x58\xcb\x87\x8f\x28\xeb\x94\xab\xf1\x51\x5e\x18\x9e\xd0\xc0\xfd\xc8\x49\xba\x9d\x33\xa7\xf3\xc8\xf7\x81\x2b\xaf\x5b\x71\xe5\xb2\x2b\x93\xc8\x37\x7d\x83\xde\x36\x8c\xb7\x8b\x28\xc0\xa3\xaf\x3e\xaf\xf0\x02\x2b\xc8\x8b\x7f\x15\x2f\x17\x74\x5f\xf6\xaf\xea\x18\x7b\x0a\x3b\xf1\x8b\x63\x74\x14\xb8\x54\x71\xe3\x6d\xab\x5f\xbc\x32\x58\x4d\x33\x8a\xa5\xe8\x2d\xee\x7d\x26\x06\x0e\x4c\x97\xab\x8a\x3e\xf5\x1b\x45\x28\x37\x2c\xf3\x6d\x73\xd9\x5d\xba\x8a\x8a\x59\x17\xb3\xb1\xf5\x5b\xf5\xd2\xc0\xc4\x71\x3d\xc1\x01\x2a\x79\x69\x18\x4b\x6a\x6d\x98\xdb\x87\xf6\xcb\xe3\x0b\x18\xab\x71\xf2\x04\xe2\x02\x37\xcb\x6d\x18\x84\x72\x06\x13\x3d\xff\xa0\x0a\x07\xe7\xb6\xa7\x3c\x1d\xf5\x5f\x1a\xa2\x44\x2d\x48\xe2\x0b\x23\xae\xc8\x56\x54\xb8\x02\xe6\x52\xd3\xe4\xe7\xfd\x4a\xe9\x4f\x55\xe2\x6a\x87\x41\x7b\xed\x01\x4d\x80\x03\x85\x15\xee\xfb\x21\xda\x6f\x6b\x26\xcb\xcb\x40\x9e\x87\x03\xd2\x2b\x72\xe9\xf5\x87\x65\xaa\x31\x63\x6e\x57\x27\xf4\x48\xf3\xf7\x2d\xcf\x62\xba\x12\xe1\x9f\xb3\x90\x2f\x22\x34\x41\x47\x72\xa6\x6d\xbd\x68\xde\x76\x4d\x7a\x13\x40\xd0\xdc\x4b\x57\x2c\xb4\xba\xd5\x56\xb8\x4c\x17\x8e\x4e\x46\xf9\x35\xc5\xe8\x1a\xd7\x60\xe0\xc4\x1f\x95\xf1\xfe\x27\x34\xad\xd9\xf8\x02\xc5\xe5\x25\xa1\x60\xe9\xeb\xaa\x31\x93\x8b\x40\x3e\x3c\x8a\xee\x1c\x95\x6d\x81\x25\x9e\x14\xf1\xe3\xd8\xf3\x60\xf6\x41\xce\x9c\x5e\xac\xe0\x1a\x4b\x20\x4a\xc6\x7c\x4d\x3d\x72\x52\x10\x2f\x83\x60\xea\xa4\x49\xc5\x52\xb4\x7d\x20\x8f\x51\x4b\xa8\xc3\x1d\xd3\x4f\x8e\x55\xb2\x6c\x1a\xba\x15\x86\x6d\x95\x7c\xf5\xe9\xad\x9a\x4c\x25\x4d\x9c\x31\xf2\x4f\xbe\x3a\x56\xa1\x87\xd7\xdb\x9a\x84\xf9\xed\x1b\xe5\x51\xe6\x52\x80\xdc\x25\x86\x8f\xa9\x5b\xd6\x57\x14\x2f\x43\x54\xa6\x61\x9c\x8f\x46\xf6\xdb\xa3\xdb\xaa\x37\xbb\x95\x1c\xc6\xd3\x8e\xb6\x81\x5c\x3c\x9c\x0a\x57\x1b\xf4\x41\xd5\x06\xbd\x82\xb1\xa3\x7a\xd8\xe4\x76\xf7\xa4\x7d\xd7\x90\x57\x5e\xb0\xc8\xd8\x0d\xe7\xa9\x6c\xdc\x96\x6f\xb5\xe0\xd3\x3e\x74\x5c\xe8\xe7\x6c\xf0\xb0\xc9\xad\x73\x37\xaa\x90\xf1\x20\xb0\xb9\x6a\xe5\x0b\x6f\x0e\x4a\xb6\x10\x22\x76\xb1\x14\xdd\xd1\x5f\x19\x51\x52\x1b\xe0\xec\xee\x16\x71\xa0\xe0\xc4\xc4\x20\xba\xfa\x1e\xe9\x06\x1a\xc6\x7f\xd7\x7f\xa4\xa6\x8f\x0f\x6e\x0d\xb8\x97\x5b\x9a\x24\x39\xd7\x33\x9c\x7c\x5b\xac\x60\x29\x9f\x29\xa6\xf3\x43\x8e\x66\x43\x18\x6b\xa2\x38\xd3\x97\x58\xa9\xfc\xc7\x0f\xc9\x20\x11\xba\x30\xa2\x4e\xb8\xc2\xb3\xb5\xb6\x9e\xb0\xe1\x4e\xb2\xd2\x07\x2e\x11\x53\xcc\x84\xd6\x57\x2c\x45\x9f\x79\x5a\x01\x92\xb1\xd0\x71\xf8\x75\x14\xae\x7f\x42\xeb\x97\x3b\x1e\x36\x4d\x54\xb6\x53\x53\xed\xed\x9b\xb3\x1b\xab\x86\x1c\x80\x92\xc3\x04\x6f\x8a\x34\x41\x23\x75\x25\xdb\xbc\xeb\x69\xb9\x39\x2c\xec\xe0\xcc\x3c\x79\xe1\x5a\x95\x2e\x4b\x3d\x0b\x32\xc4\x67\xf7\x0e\x97\x84\xdb\x9a\x8a\x76\xde\xab\x09\x0e\x55\x41\xc3\x35\xb1\x87\x82\xdd\x4f\x97\x4a\xcd\x96\x1a\xb2\x6d\x04\xde\xdf\xf2\x7a\x0e\xee\x4f\x2f\xd4\x51\xbb\x8a\x7f\xdb\x95\x15\x67\x99\x39\x13\xe2\xcd\xef\x5e\x4f\xaf\xc5\xc3\x8a\x2e\x98\xf1\xec\x9a\xec\xe3\x0a\x2c\xc2\x82\x56\xb1\x9a\x5a\xd1\x14\xc6\x3d\x71\xb1\xdc\x2b\x09\x6c\xb1\xad\x40\xbd\x67\x9d\xa4\x06\x82\xec\x4b\x6e\xb0\xde\x14\xb0\xeb\xa9\x22\xba\x41\x95\x53\xbc\x82\x6a\xd8\x0f\xc0\x7c\xfb\xda\xed\x1d\x69\x21\x89\x6a\x22\x3d\xbc\xe3\x8d\x2c\x55\xc6\x02\x99\x10\x3e\x9a\xf0\xd4\xc7\xfa\xba\xd6\xf6\xaf\x8a\xae\x9f\xf1\xe8\x90\x64\x87\xc5\x79\x06\xec\xbc\x9f\x70\x92\xa3\x8d\xdd\xe2\x8c\xe9\xaa\x0a\x8c\xd9\x23\xb6\x9e\x83\x19\x28\x68\xe5\x76\xbf\x26\xea\xb8\x72\x05\xab\x20\xa9\x61\x9d\x03\xc5\xaa\x24\xa0\x55\xde\x39\x52\xba\x27\x7a\x8c\xe0\x76\xe7\x86\xdc\xaa\xdd\xfc\x4f\x56\x20\x46\x20\xfd\x18\x70\x42\x9e\x3f\x4d\x4b\xf5\xcc\x7f\xdf\x2c\xc1\xa9\x77\xbc\xd0\x4e\xa8\x99\xdf\x90\xc9\x9d\x83\x02\xf5\x5a\x3c\x31\x42\x8f\xcf\xdd\xd4\x28\xfd\xa6\x17\xc7\x48\x2c\x5a\x3b\x87\x67\xe8\x3e\x8d\xb8\xc5\xb0\x63\x13\x17\x60\x3a\x32\xc1\x1c\xb0\x5f\x15\xd6\x65\x35\x21\xfd\x90\x5b\x7b\x5c\x03\x51\x08\xa5\x9a\xde\xf8\x42\x7f\x3c\x56\x6b\x4e\x16\x9d\x44\xe2\xa8\xcf\xf8\xf8\x04\x7e\x1c\xac\xb0\xa1\x05\x5b\xf8\x4c\xa7\xee\x01\xdf\x74\x50\x3d\xa1\x7a\xe5\x4f\xdd\xaf\x34\xf5\x71\x80\x88\x2b\x8e\xba\x4f\xae\xd1\x12\xe9\x90\x99\x16\xf2\x53\xa7\xb6\x31\x13\x35\x22\x2b\x15\x78\xea\x73\x35\xbf\x55\x64\x37\x51\x2b\x31\x14\xaf\xad\x69\x03\x6c\x34\x78\xad\x92\x6a\x10\x5e\x6e\xc8\xb7\xf6\x31\xf5\x61\x19\x27\x27\x28\x4e\x84\xe0\xa2\x02\x39\xcd\x05\x15\x21\x89\xca\xaf\x90\x4f\x83\x0f\xaf\xd4\x34\x80\x28\x15\x20\xd9\x8b\xc4\xf4\xee\xfa\xa0\x33\xd3\x4a\x59\xfb\x26\xff\xf9\x0d\xc4\xa2\xa1\xb2\x56\x5e\xe8\xa7\x99\x4a\x82\xfa\x5b\x05\x42\x5e\x6f\xb1\x14\x7d\x58\x29\xd3\x80\x5e\x48\x44\xf3\xa3\xb0\x72\x80\xdc\x87\x5d\xd3\xa7\x83\xcb\x34\xe4\x89\xab\x75\xca\x6a\x1a\x7b\xc5\x35\xce\x38\xad\x68\xac\x85\x42\x57\xdd\x70\xb4\x34\x00\xbb\x41\xfc\xde\x79\xab\xff\x8b\x72\xf5\xd6\x43\x55\xb7\xe7\x9a\x4e\xb9\xc4\x9a\xb8\xec\x13\x7e\x3c\x1a\xe3\x5e\xe0\xc7\xcd\x75\xe6\x55\xa1\x9d\x35\xa5\x7c\x6b\x96\x76\xcb\x6e\x1d\x31\xc4\x07\x2c\x10\x40\xbb\x1f\xd2\x9b\x96\x0e\x81\xb8\x21\x16\xc7\xd7\x3c\x45\xf2\x03\x18\x38\x90\xa8\x2f\x7a\x42\xa9\x99\xed\x90\x54\x40\xbf\xae\x2f\x7f\xf4\x39\x69\x28\x83\xe2\x9b\x99\x7f\x5a\x1b\xfa\x01\xe9\x3d\x48\x8f\xac\x0d\xe7\x2b\xda\x4f\x1c\x6f\x2c\xda\xc4\xf9\x83\x6f\x0a\xac\x07\x75\xb0\x8d\xdc\x0a\xef\x43\xfd\xc7\x4a\x55\x41\x36\x74\x60\x78\xd8\x37\x40\xcf\x5f\xfd\x80\x21\x9b\x20\x3e\x1d\xce\x3b\x8f\x0f\x16\x85\x21\x01\xe5\xb9\x52\x5f\xe1\x63\xdb\x75\x9c\x18\x36\x49\x5a\x0a\x19\x8f\xef\x1b\xa9\x74\xd0\x59\x8d\xdb\x69\x5e\x73\xfd\x8a\xe8\xc3\xcf\xa4\xc1\xd7\x4f\x2d\x8f\xbf\x75\x50\x91\xe8\x94\x74\x30\x97\x8b\x45\xcc\x9e\x5e\x2c\x45\xfe\x6f\x34\x25\x64\xcf\xb3\x45\xf1\x22\x3c\xd8\x7f\x7b\x8e\x8e\x31\xf3\x53\x42\x81\xb1\xf7\xb0\x2e\x7d\x4e\x82\x00\x0b\x67\xe4\xbb\x0f\x28\xb4\xfd\x99\x97\x03\x0a\x61\x27\xff\xee\x0a\x2d\x96\xa2\xe2\x73\xc3\xd5\x55\x68\x63\x7f\x3d\x58\x70\xe5\xce\x53\xac\x18\xfc\x80\xe1\x80\x03\xfe\xfa\x72\x0f\xae\x1a\x22\xca\x26\xb0\xa4\x86\xb6\xec\xba\x85\x9a\x1e\x05\x6e\x12\xbf\x1c\xb2\x5a\x0a\xf9\xed\x1b\x9b\x42\xf5\x6a\xa9\x03\x42\x61\xe9\x12\xc5\x88\x47\x3a\x87\x46\x9f\xe8\xce\xee\xec\x7a\x5c\x65\x01\x20\xe9\x4f\x03\x94\xcc\xf7\x2c\xe6\x6c\xc6\xf5\x27\xb4\xd0\x04\xb3\x59\x11\x38\x17\x6f\x6a\x23\x1f\x71\x7f\x05\xfe\xeb\xf7\x0e\x54\x2e\x87\xc4\x49\x26\xe3\xcd\xe8\x6f\x1e\xce\x68\x60\x87\x8c\x4f\x90\x1e\x7d\x58\x05\xd1\x39\x1e\x66\x40\x5a\xe6\x73\x9b\xa5\xcb\x55\x26\x37\x08\xce\x72\xe0\x8c\xd1\x3c\x3c\x44\x7c\x52\x83\xda\x0d\x48\x27\xef\x7b\x75\x44\x72\x58\xc1\xc9\x8c\x12\x2c\x76\xe1\xf6\xf1\x63\x54\xac\x99\x56\x22\x7d\xf1\xc5\xa1\x22\x33\x8d\x97\x35\xe1\xb9\xe9\xa9\x05\x7c\x1e\xb1\x18\xb1\x62\x29\x6a\xca\x2e\x80\x83\x92\xd6\x98\xf1\xde\x23\x1a\x30\x11\x57\xb1\xeb\xa7\x32\x1b\x05\xeb\x1e\x59\x44\x9a\xbc\x25\x65\x9c\x78\x88\x47\x93\xeb\x29\x8b\xff\xad\xa2\x0c\x62\xf4\x68\x0e\x77\xd8\x21\x35\xee\xa1\x1e\x6f\xc2\xc7\x6e\xe1\x13\x80\x6b\x00\xfd\xdf\x36\x1a\xc4\x27\x65\x24\x29\x63\xd2\x23\x0e\xdf\x03\x2f\x68\x25\x9e\xeb\x22\x37\x83\x54\x31\x6e\xd2\x2c\xd4\x1a\xc4\x0c\x28\x9f\xa3\x03\xbb\x28\x7f\xb7\xa6\x9f\x88\x3c\x12\x88\x62\x53\xc7\xe3\x7d\xf3\xb8\x7c\xf9\x2e\x31\xeb\x6e\x9c\xd5\x16\x4b\xd1\xfe\xdd\x1d\xc9\x26\x20\x9e\x27\xae\xed\x83\x53\x46\x29\xd1\xc9\xa4\x2e\xf7\x59\xe4\xab\xc5\xec\xce\xb6\x67\x7a\xb1\x5b\xa7\x3d\x24\x4b\x1f\xee\x33\xe6\xcf\xe5\x1f\xec\x86\xb6\x9d\x34\x3a\x73\x7f\x9f\x98\x4d\x3f\xd7\x89\xc9\x62\xab\x77\x60\x12\x69\xb9\xdb\xdd\xfb\xc7\xaa\x15\x18\x32\x61\xf6\x64\x1c\x98\x9f\x8d\x05\x45\xda\x74\x93\x32\x20\xfa\x7f\x9b\xd2\x14\xb3\x6b\xd6\xe5\x30\xa8\xbe\x25\xfb\x88\x5d\x4c\x6a\x56\x99\x32\x8b\xd2\x8a\xe8\x03\xdf\xfe\x16\x3f\x32\x97\x13\x93\xca\x0a\x33\xba\x49\xb7\xab\x26\x35\x61\x9a\x1f\xaf\xc0\xe6\x34\xa5\x1b\xcf\x4c\x5c\xac\x21\x66\x12\xf0\xb1\x9a\xfd\xd4\x04\x25\xae\xa0\x80\xf8\x80\xd9\xd6\x53\xab\xbf\x9c\xd0\x8c\xd1\x91\x7f\x16\xd7\xa1\xe8\x9b\x1a\x75\xcd\x0f\x90\xe3\x48\xeb\xd7\xdc\xbf\x0c\x57\x46\x05\x2d\x38\x3d\x0a\x1f\xa9\x8e\xd3\xff\x86\xc5\x79\x97\xb2\xae\x9e\x7e\x81\x03\xc5\x56\x23\xbf\xae\xe2\x3e\x76\x2f\xbd\x58\xd9\xf0\x8c\x11\x50\x1a\xd2\x31\x38\xcd\x5b\x2e\x50\xfa\x00\x9d\x6d\xf7\x36\x72\x8a\x4a\xb0\x66\x94\x23\x4f\xe3\x55\x75\x9a\xbf\xe4\xeb\x9b\x5c\x8a\x23\x77\x4d\x55\xf7\x54\xb2\x69\x93\x37\x94\x0a\x1f\x0e\xf8\xd6\x5f\x99\x02\x92\xe3\xbf\xf8\xc7\x4b\xd2\xcc\x96\x13\xbb\xce\x62\x13\x11\xfd\x7d\x67\x3a\x53\x66\x00\x7a\x4d\x0b\xfb\xb9\xb7\xf2\x3b\xbf\x0a\xb1\xd0\x57\xd2\xe9\xdc\x17\x9f\x91\x9b\xb4\x41\xa8\xcd\x8b\x94\xd1\x03\xb2\xcf\xd2\xa2\xa1\x1f\x50\x57\xba\xe2\xf6\xe5\x9f\x1e\x3f\x32\xdb\x19\x6f\x10\xdc\x14\xbc\xe6\xfe\xfc\x16\x96\x91\xb8\x1e\x4f\x4e\xd1\x9d\x3a\xe0\xba\x11\xef\x59\xd2\x9b\xb8\xe0\xde\xae\xc1\x64\x19\xb5\xc5\xaf\x72\x9f\x7e\x41\x85\x6a\x54\xc1\xa4\x49\xc4\xd1\x4f\x28\xe6\xfc\xa1\x5b\x05\x40\x24\x9f\x2d\x5c\xa9\xc9\xa9\x8b\x69\xa6\x92\x0a\x6d\xa9\xbe\xc7\x6d\xe7\x66\x23\xbb\x6d\xd9\xe6\x4f\x0e\xd6\xba\xda\xae\x49\x98\x69\x27\xfc\xe3\xfc\x9f\x76\x8d\x53\xe6\x6f\x8c\xba\xb5\xb6\x8f\xd8\xd2\xa5\x11\x81\xc1\x93\x36\x41\x55\x9e\x7b\x2c\x9b\x92\xd7\x08\x03\x97\xc1\xe8\xdc\x09\x72\x0a\xc7\xa7\x6c\xc4\xc7\x09\x86\x25\xff\x83\x05\xb2\x35\x53\xb6\x49\xd0\x9b\xa9\x85\x6f\x7a\x43\xb4\xc0\xc1\x33\xaa\xcf\x18\xda\x5f\xb5\x52\x0a\xa1\xad\x98\xff\xe1\x83\x0a\xd6\x05\xd5\x42\xae\x25\x54\xb8\x88\xd7\x10\xc5\x6b\x04\x22\x57\xbf\x9d\x49\xff\x1c\xbd\x12\x67\xd6\x87\xe6\x64\x8f\x6b\x91\xda\x00\xe6\xef\xeb\xbd\xd9\x18\xd0\xc2\xf5\xf8\x48\x26\x2e\x64\x16\x09\x15\x39\xfa\xdd\x4e\xb9\xc7\x27\x61\x50\x37\x2e\x38\x9b\xdb\x9a\x78\x0d\x9c\x9d\xc8\x1a\x37\xbd\xa6\x6e\xd3\xf6\x4c\x62\xff\xa1\x44\x25\xa9\x1c\x0a\x9d\xc6\xab\xb6\xf3\x1f\xf9\xa4\xe6\x72\x05\x1d\xe3\xd8\x2a\x2d\x35\x63\xc0\x15\xe1\x83\xa9\xdb\x6d\xa9\x26\x5e\xab\xa9\x56\x7b\xda\x3a\x49\x7d\xb2\x44\x93\x6e\xb5\x96\xf0\x55\xc1\xb4\x44\x64\xde\x6b\xf7\x8f\x91\x54\x13\x5d\xac\x37\xba\x54\x01\xe2\x39\xb4\x82\x99\x2b\xcc\xbb\x8c\x8b\xbb\x26\xa8\x33\xf0\x7f\x12\x7a\x0b\xe3\x87\xcb\x94\x90\xd8\x76\xe8\x8b\x2d\x64\x54\xee\x50\x84\x91\x89\xc3\x17\x40\xfe\xd8\x66\x39\x10\xaf\xc3\x88\xb1\xd4\x97\xff\xd8\x7c\xbe\xa2\xba\x85\x10\x43\x70\x44\xf3\x87\xc6\xc8\x4e\x24\xbb\x72\xe7\x3e\xf9\x2e\x91\xce\x53\x68\xb7\xfd\x7e\x95\x1c\xf2\x73\xc3\x85\x8f\xde\x26\x44\x22\x70\x8d\x06\x4a\xda\x71\xc3\x76\x2d\x73\x66\xa8\xec\x2b\x5d\xed\x3e\xe3\x53\x87\x54\x10\x5c\x00\x36\x8f\xb9\xf1\xdd\xfc\xe3\xae\x75\x69\xa8\x8a\x84\x6d\x78\x22\x1b\xcd\xd6\x87\x44\x33\x3b\x2a\xdc\x7e\x83\x96\x5e\x72\x95\x76\x4e\x05\x99\xbe\x4f\x19\x5e\xb8\x01\x09\x12\x29\x2e\x4d\xfa\xbd\xc8\x42\x37\x99\xac\x50\x45\x95\x18\xf9\x3e\x0a\xed\x38\xae\x2e\x9d\xa6\xbc\x44\xc4\x08\x04\x69\xc0\xef\x0e\xde\x90\xbd\xc6\x2a\x32\x93\xf9\x6b\xf2\x91\x53\x37\x5c\x2c\x4e\x86\x86\x38\x19\x50\xfb\x29\x95\xbb\xe4\x37\x63\xda\x72\xec\x32\x32\x85\x26\xfc\x63\x13\x86\x26\x99\x2b\x93\xec\xdf\x1d\xc7\x35\x74\x01\x75\xe3\x23\x30\xe1\x61\x5c\xf9\xa0\xbc\x17\x1a\x06\x36\x7f\x9f\xb9\x93\x9a\x44\x0f\x27\x81\xb6\x38\xf2\x0b\x6e\x6a\x8f\xec\x1a\xb6\x14\x94\x7b\xf4\x8d\xae\xf3\xf4\xa1\x04\x60\x92\x7e\xbc\x5d\xd7\xe4\x22\x15\x2c\x14\x22\x0a\xb7\x1f\x3a\x4f\xe9\x5f\x07\x22\xb5\x8a\x6e\x5e\xa2\x12\x16\x4c\x0b\xb2\xa8\xc9\x07\x87\x29\x8d\xc7\xb0\x5a\x85\x14\x21\xb7\x4d\xa1\xb1\x05\x0c\xfc\x6c\xf3\xa6\xe6\xf4\x0d\x7e\x59\x49\xb5\xfa\xc7\xc7\x15\xb8\x18\x08\x29\x8b\xa9\xda\xef\x9f\xd4\x51\xf0\x3c\xd5\x06\x08\x21\x7f\xd4\xe8\x0d\x9d\xf6\xc1\xd5\x9b\x4b\x7d\x79\x4f\x93\x8d\x97\x94\xa5\x62\x29\x9a\xdb\xad\x81\xf8\x30\x93\x7a\x6d\xf9\x8f\x31\x15\xb7\x1f\xc6\x07\x2f\x17\x48\x28\x9c\x7b\x5a\x31\x97\x52\x03\xe2\xf7\x15\x62\x30\xe8\x22\x76\x16\x4b\xd1\x7f\x68\x58\xe0\x32\x6d\x89\xd5\x5e\xf6\x78\xa3\x8f\x53\xce\x8b\xa5\xe8\x05\x23\x7b\xaf\x0c\xd5\x35\xb3\xb0\xe8\xa6\x29\x9a\xf8\xa4\x15\x8a\xce\xb1\xf1\xc1\x75\x1a\x76\x2e\xa0\xcc\xe1\x49\x68\xfe\xc5\x89\xaa\xd6\x96\x17\x57\x1f\xf1\x9f\x3c\x7d\x4c\xe9\xe9\x37\x31\x12\xf6\x43\xdf\x7f\x3a\x71\xa8\x72\x03\xe2\x86\x34\xf4\x39\xda\xe4\xbd\xaf\x0c\xcf\x5a\x38\x88\x8b\xfa\xf1\xa1\xb4\xc4\x72\x69\xbb\x74\xe1\x67\xe7\x2a\x3a\xab\xbc\xaf\x1e\x7f\xda\x90\x55\xc3\x14\x0a\x25\xc3\x76\x9c\xdf\x46\xdf\x0f\x14\x77\x68\x06\xcd\x06\x91\x82\x44\xdf\x51\x44\xfa\xe2\x74\xb6\x58\x8a\xbe\x79\x50\x01\x9e\x80\xea\x1c\xef\x6c\x8d\xdb\x9a\x76\x9b\x4d\x10\x9b\x4f\x5e\xd1\xaa\xd7\xdb\x78\xb7\xf1\x77\xb4\x84\x0c\x9a\xf1\x85\x17\x47\x9c\x25\xd9\x2a\x96\xa2\x2b\x35\x76\xb2\xa8\xf7\x78\x8e\x5f\x1f\x78\x81\xf6\x8e\x59\x05\xcb\x81\xba\x31\x7b\xab\xae\x6a\x90\x9a\xa3\x27\x0a\x32\xdd\x73\x78\x53\xe1\xaa\x62\xbc\x34\x6e\xd1\xa8\x76\x88\x31\x28\xb3\xb9\x0c\xf7\x71\x4d\x91\x84\xa3\x13\x45\x86\xd4\x3a\xa4\xb9\x86\x58\x01\x52\xa5\x4e\x8c\x86\xd6\xec\x44\xc0\xb0\x49\xfc\x90\x73\xb9\xc3\xe7\x6b\x27\x0d\x09\x12\x04\xdf\xe4\x29\x8a\x5f\x82\x8b\x84\xc7\xd0\x75\x4a\xdf\xa8\x12\x96\xcb\x10\x2d\xee\xdd\x29\x37\xb4\x43\x2a\xc5\x19\xf3\xa6\x4f\x87\x3c\x72\x92\x3d\x54\x69\x05\xd4\x28\xcf\xaf\xde\xd2\xdc\xb8\x7d\x87\xd6\x39\x15\x03\xb2\xf2\xbe\xc5\x8a\xfe\x06\xf1\x4d\x46\xb8\x9d\x17\x47\x19\x3d\x7e\xe2\x3c\x2d\xcb\x9f\x3a\xbf\x58\x8a\x5e\x7e\x43\x81\xd2\x09\x53\xed\x5f\xbf\xaa\x6d\x31\x81\x78\x11\x9d\x7c\xee\x49\xb0\x4c\x2a\x98\x73\x2f\x3e\x87\xab\x04\xe8\x15\xef\xe3\x2b\xa4\xf3\x53\x3b\x2a\xca\xf8\xe9\x8a\x74\x11\x72\x47\xd4\xa4\x14\xf8\xfa\x74\x45\x63\xd0\xc2\x94\xd5\x2c\x88\x9a\x1f\xda\x32\xea\xac\xd1\x0a\xf2\xa4\xcf\xcd\x55\x3c\x14\x19\x89\xf3\x38\xa8\x58\xc7\x4d\xd4\xfe\x28\x4c\x33\x9d\xe8\x81\x95\xe9\x05\x4e\x9f\xde\xa6\xa6\x96\xff\xaf\xdb\x86\x4a\x97\x67\xa1\xdb\x19\xcd\x1e\xac\x69\x19\x2b\x16\x5d\xa2\x0e\xbe\x57\xb1\x73\x2c\x13\xdb\x4e\x98\xa6\xdb\xba\x46\x2b\x99\x8c\x1b\x50\xa6\x16\x40\x37\x8d\x4c\xa3\x07\x63\x8a\x89\x64\xee\x73\x6b\x2f\xd5\xb6\x96\x43\x4d\x86\xc4\x72\xd7\xa7\xab\x5f\x98\xa8\x51\xa8\xa9\x83\x81\x5f\x2c\x2e\xee\xb7\x6b\xdb\x18\xa3\x0e\xf1\x7d\x24\x7a\xff\xb9\x43\xbb\x86\x25\xc1\xcd\xa5\x09\x5b\xa4\x2f\xd7\xbf\x9f\x26\xf7\xca\x88\x30\x4e\x8e\x7e\xa9\xd1\x79\x6c\x8c\x2a\x49\xb2\x10\xbd\x78\x5b\xf6\x97\x5d\xb3\x80\xce\x24\xbe\xec\xcc\xad\x72\x6b\x98\xa0\x95\x04\xda\xb9\x42\x5a\xdb\x0a\xfd\x32\xc8\x4b\xf6\xe5\xee\x7a\xa3\xbd\xb1\x16\x9f\x37\xfc\x0a\x86\xbc\xae\x6b\x1b\xe1\x20\x1d\x75\x18\x6b\x15\x73\xa4\x80\x71\xbc\x3e\xcc\x66\xa7\x5a\x3a\xf1\xc3\x0d\x90\xb8\xb2\xf9\x1b\x64\x30\x75\x70\xfc\xfe\xa2\x6f\x9f\x54\x45\x28\x3c\xcf\x16\x98\x34\xe3\x7b\x15\x0d\xa5\x0c\xf3\xf2\x8a\xa0\xf8\x77\x0c\xd0\x18\x8a\x94\xa4\x52\xea\xa7\xd6\xb4\xdd\x56\x95\x51\x57\xc4\xaa\xc2\x16\x57\x4f\xa1\x6c\x5b\xbe\xc9\xdd\x3b\xda\x0c\x92\x10\x33\x2d\xe2\x0b\x88\x53\x6e\xda\xab\x5a\xa3\x19\xf9\xe0\x97\x2d\x6e\xf1\x09\x2d\xc9\x09\xb0\xe3\x51\x26\x7c\x67\x9f\xb8\x53\xe9\xb0\xd8\x40\xef\x4a\x27\xad\x6f\xe9\xa0\x4a\x52\x41\x2d\xd1\x99\x69\x8c\x91\x9a\x11\x70\x60\xf9\x1a\xd3\xc4\x8d\x2b\x63\xd1\x5b\x8e\x3e\xff\x28\x6f\x48\x54\x6d\x04\x89\x57\xee\x6b\x11\x6f\x01\x7e\x84\x04\xbd\x16\xaa\x7f\x4c\xf9\xda\x71\xd3\xd3\xcd\x8a\xdb\x74\x16\xfb\x72\x5f\xd0\x38\x3e\xb4\xdc\x20\x70\x32\xf3\x4e\x5d\x97\x34\x72\x99\x3d\x03\xbe\xea\xcd\x3b\xc6\x6b\xd1\x84\x5a\xa4\xcc\x0b\xfa\x94\xa5\x79\xad\xa6\x48\xec\x60\x04\x5a\x60\xc0\xeb\xfa\xca\x7c\x5d\x31\xd3\x75\x25\x85\xfe\x7b\x55\x0d\xb8\xc4\x30\xe7\x83\xe5\xea\x1a\x6c\xdd\xc2\xa8\x92\x98\x48\x05\x23\x53\x60\x6c\x00\xd4\xec\x56\xb1\x14\xfd\xee\x4d\x49\x3a\x71\xc2\xf8\xec\x2c\x56\x29\x2b\x5a\x20\x2e\x11\x75\xc9\xd1\x31\x07\x80\x8a\xb4\x63\xfb\x2e\xe9\x46\xe1\xa3\xc6\xd9\x14\x04\x8d\x2f\x6c\x4c\x5f\x57\x83\x36\xe3\x43\xe1\xb5\x54\x1d\x83\xd5\x5b\x19\x36\xc0\x9f\x22\x39\x31\x09\xc2\x32\x66\x66\x68\x53\x1f\xc6\xa4\x85\x01\x85\x76\xfe\x70\xc8\x4c\x2c\x46\x76\x0b\x06\xc8\x72\xa3\x4c\x69\x1d\xa6\x87\x70\xb0\xdd\xb5\x3c\x9b\xb0\x35\x2d\x2a\x78\x0a\xc7\x6d\x8d\x25\x68\xb7\x1c\x0f\x4e\xa2\x62\x29\xfa\xea\xb0\x0b\x95\x7b\x23\x95\x4e\xbd\x4a\xfd\xc6\xc6\xf3\x33\xa5\x02\x6a\xf2\x9c\x79\xc5\xd5\x7d\xc6\x79\xc3\x38\x87\xed\x9a\x90\xcf\x56\xb2\x8f\xe4\xeb\x07\x2f\x6c\x0b\x90\x70\xbe\xa5\x1a\x43\xfe\x1d\x8a\x8b\x85\x0d\xb3\xce\x68\xd7\xca\x81\xc9\x73\xeb\x89\x0b\xac\xd7\x17\xf0\x3e\x97\x85\x11\x18\x07\x27\x9d\xdd\xc2\xd5\x83\xb3\xb9\x4e\x0f\xf6\x43\x5f\xe5\x1d\xf5\x19\xbf\x0a\x14\xb1\x02\x1b\x11\x57\x0e\x34\xbc\x03\x6a\xfa\x87\x71\x91\xe1\x46\x43\x7c\x72\x73\xad\x2e\x10\x43\xdd\x84\xc1\xfd\x87\x75\x32\x06\x7a\x98\x39\x71\x2e\xcb\x4d\xcb\xbc\xec\x5a\x74\xb8\x6b\x17\xf4\xe8\x5b\x5d\xd9\x3e\xb3\x8f\x6c\x27\x4d\xb8\x65\x9f\xb9\xb8\x23\x2b\x5e\x65\xb7\x5c\xd3\x9a\xda\xee\x6d\x9b\x3f\xbf\xaa\x4b\x08\xd2\x04\xdb\xf6\xfb\xd5\x12\x3d\x37\xab\x73\x2e\x08\x20\x75\xca\x9c\xa6\x29\x3c\x01\xe5\x62\x5c\xdd\xa3\x35\x60\x2c\xd4\xd4\x6a\xe9\xdc\x68\x6b\x8c\xc2\xa2\x26\x60\x2a\xa6\x04\x94\xe9\xfb\x54\x7b\xad\x5e\xe4\x72\x3f\xda\xa9\x05\x3d\x7b\xb4\x53\xe0\xb4\xf1\x39\x8b\x07\xac\x65\xc8\x83\x85\x9f\xbf\x53\xd1\xc8\x21\x8d\x62\x29\x3a\xf7\xa1\xa1\x4a\x65\xed\x22\xb0\x3c\xcc\x5d\xbb\x26\xfb\x8c\x3c\xec\x06\xa8\x96\x0a\x83\x48\x92\xd6\xff\x8a\xfd\x5f\x27\x76\x7c\x70\x33\x18\x11\x0c\xd4\x12\xda\x32\x75\x43\xa7\x38\x83\x0b\xe3\x8e\xde\xa4\xb5\x7a\xb0\xcf\x6b\x52\x11\xe6\xbf\xbf\x4e\x17\x5d\x49\xf5\x0d\x78\x38\xfa\x97\xce\xf1\x7a\xb1\x8b\x84\x45\xb9\xc4\x7a\x9e\x78\x5e\x76\x3e\x1d\x54\x25\x2d\x54\x0c\x5a\x5c\x7e\xf9\x6f\x8b\x07\xc9\x62\x82\x16\x4b\xd1\x15\xe3\x25\xba\xdc\xa2\x76\x9b\x89\x49\xe1\xbd\x0b\xd4\x49\x6a\xcd\xe2\x45\xf7\x35\xbd\xda\x68\x9a\x7b\xc1\x70\x44\xc0\x07\x15\xb6\x91\x83\x2b\x36\x6f\x03\xcd\xdc\xa9\xb7\x7d\xcc\x54\xe1\x74\x69\x87\xda\x50\xb6\x6d\xae\x17\x30\x68\xbe\x76\x68\xa6\xae\xe3\xa2\x33\x66\x1e\x1a\x9a\x69\x6f\x41\x17\xae\xf0\x2e\xc1\x28\x65\xc4\xe4\xc4\x8e\x77\x6f\x19\x9d\x25\x81\xab\x68\xb2\xfc\x17\x46\xa5\x15\x1f\x57\xb1\xca\x6e\x84\x5f\x3e\xa2\x47\x4b\x8e\xfb\xe2\xa2\x89\x57\x6f\xd7\xe0\x4f\x30\x2c\xe1\xea\x8f\xbf\xdc\x74\x91\x96\x6b\xd5\x88\x6f\x67\x8c\x7b\x8d\xd3\xe7\xc8\xa9\x21\x0a\x03\x0a\xaa\x35\x42\xb0\xc0\x98\x20\x7d\xd5\x05\x19\x45\xf3\x60\x6c\x10\x3f\x55\x69\x2b\xdc\x7e\x5a\x66\xc0\x5c\xf5\x23\x0e\x42\x8b\x96\x8d\x39\x5b\x64\x4e\xa6\x9c\x73\x98\x4e\x11\xb1\x6d\x51\x40\xc5\x7f\x7d\x79\x23\xfb\x06\x5c\x9a\x8c\xd4\x78\xa8\x3a\xff\x11\x3e\x5d\xbc\x8a\xda\xf1\x29\x70\x9f\x16\x8d\x71\x03\x81\x1b\x71\x32\x74\xfa\xc2\x6f\xa4\x1d\x33\x75\x8a\xa5\xe8\xd6\xa7\xf8\xf4\xb3\x89\x49\xcd\x12\x15\xd0\x93\x81\x92\x67\x22\xc6\xb8\x1b\xfe\xdf\x8e\xf2\x64\x63\x25\x71\x3d\x6a\x02\x33\x3e\x75\x37\xd8\xac\x89\x86\x60\xdf\x47\xb5\x64\xfe\xd4\x57\xf8\x97\xb9\x32\x5e\x75\x5d\x3e\x1b\xd0\xd9\x93\x87\x29\x10\x66\x5c\x15\x30\xd5\xfb\x9e\x93\x67\xb7\x47\x6d\xd2\xa0\x15\xa5\x35\xf0\xb5\x93\xf2\x8c\xb6\x89\x1f\xb4\x70\x9b\x43\xee\xcf\x7f\x23\xd7\x71\x9c\xff\x99\x04\xea\xd8\x57\xb6\x77\x28\x74\x35\x04\xec\xdb\x42\x63\x89\x82\x1b\x25\x3e\xb7\xf1\xed\x2b\xac\x54\x24\x01\x4d\x2b\x64\xa9\x80\x4b\x7e\xed\x7c\xd1\x70\x36\x91\x68\x0d\xfc\xb0\x5b\x02\x0f\x71\xfc\x06\xba\x3c\xfe\x3c\x83\x26\x4d\x84\x0b\x0c\x4f\x53\xcb\x13\x05\xa7\x3d\xb5\x09\xb6\xf2\x85\x8e\x1d\x83\x54\x34\x5b\x29\xda\xb8\x47\x43\xdb\x53\x5f\xa4\xc7\x4f\x74\xc9\x05\x59\x83\x36\xca\x4d\xc6\x10\x85\x23\x0c\xea\xf0\xc6\x93\x1d\x42\xb8\x03\x9b\xa8\xc2\xd3\xee\xdc\x5b\xeb\x64\xe8\xc5\x20\x0f\xb2\xff\x54\x9b\x35\x97\x1b\xf0\xaf\xf9\xeb\xf1\x94\x20\x00\x9c\xf0\x3e\x63\xf7\x11\x08\x7b\xc5\x45\xd8\xa1\x35\x86\x3c\xeb\x2c\xbd\xea\xfc\xea\xfe\x8a\xa2\x82\xcf\x7d\xf9\xa3\xe9\x1a\xf8\xd5\x44\x8e\xa0\xd2\xf6\x9c\xd2\x95\x2e\x5d\x70\x9d\x36\x05\x82\x7f\xd6\x7e\x59\x55\x5c\x5e\x9c\x31\x27\x7e\x56\x57\x4c\xd0\x5b\xf5\x21\xf3\x53\x9d\xea\x88\xe8\x36\xd6\xa6\x09\x2e\x2e\xd0\xdf\x86\xf8\xfd\xe7\x5b\xf4\x9e\x4d\x03\xfb\xd0\x35\xe5\xc8\xf0\x6b\x2c\xb9\x52\x7a\x08\xe2\x68\xd0\x53\xcb\x34\xd1\x5e\xc4\x90\x43\x6c\x12\x20\xd6\x12\xb0\xae\x65\xe7\x5c\xa4\xb2\x09\x16\xad\x9a\x9a\x7d\x3a\xa0\x46\x7b\xb3\x76\x75\x6e\x0d\xdb\x5c\x37\x87\x4b\x32\x7c\xe7\x94\x3e\x6d\xe3\x70\xad\x54\x4f\xef\xa9\x9e\xa1\xaa\x21\xaa\x58\x97\x4b\xb5\x8e\x90\x69\x61\xd3\x72\x5b\x88\xfb\x29\x82\x49\xe7\x93\xa9\x52\x14\x87\xf0\x17\xde\xfd\xaa\xa2\x47\x21\x66\x6b\xd1\x0d\x4a\x3b\x65\xd6\x9c\x69\xb3\xbb\xe2\xbd\x5a\xd8\x70\x46\x77\x64\x00\x7d\x21\x5e\xc2\x5c\x73\x85\xd6\xe1\x09\xed\x54\xec\xf6\xf9\xb9\x7c\x1d\x56\x91\x99\x18\x98\x17\x46\x5d\x71\xa1\x9e\x77\x99\xf5\xf8\xdc\x4b\x5d\xf1\x7f\x7c\x40\x09\x0d\x36\xaa\x85\x1c\xe9\xe2\x94\x15\x7d\x31\x81\xf2\x16\x0d\xeb\xe2\x6d\xd9\xd4\xeb\x9f\x60\x0a\xb6\x1e\x68\x93\x8f\x93\x40\xa2\x77\x2d\xe4\xf3\xff\x5a\x58\xad\xa2\x44\xf3\x75\xf7\x49\x5d\xce\x42\x4b\x9a\xe6\x6b\x1d\xd4\x19\xf3\xe6\x5c\x2e\x5e\xd5\x99\x4e\x2d\x57\x44\x95\xc4\x6d\xdd\xf8\xd0\x18\xa1\x54\x8d\x55\x79\x97\xe8\x2b\x1b\xa4\x24\x78\x52\xb3\x53\x76\x16\x54\xcd\x71\xe9\x7e\xcb\xea\xe2\xa8\xc8\xbf\x66\x65\x9f\xac\xc2\x5c\xe0\x13\xbc\x9b\x77\xf2\x5b\xac\x12\x86\x11\x73\x80\xf2\xf4\xec\x9b\x2a\xd3\x18\x9c\xb2\x45\xad\xf1\xf1\x01\x69\xc0\xb0\x81\x35\x74\xd1\xe4\x2c\xbe\x92\xd1\x26\x68\x8d\x7a\x54\x55\xa8\x39\xd4\x21\x89\xc1\x97\x5d\xd6\x6c\x36\x3b\x03\xec\xa0\x4e\x16\x5e\xc6\x68\x99\x82\x7b\xea\x7f\x4f\xd7\x65\x9f\x6b\x62\xfe\x04\x39\x45\xb1\xaa\x68\xc4\x63\x1b\x37\xb8\xf1\xe2\xf3\xdb\x54\x28\x38\xe7\x43\x3c\x78\x83\xe6\x58\x81\x18\x6a\xa1\x36\x60\xca\x97\x35\x1b\x38\x07\xa8\x75\xc9\xa0\x24\xf7\xfc\x93\xca\xa0\x88\xd5\x42\x54\xe6\xa7\xff\xd6\x75\xfa\x74\xb7\x2a\x38\xed\xbf\xaa\xf2\x31\xeb\xf5\x01\x43\xa4\xdd\xb6\x30\xff\x8b\x69\x09\xcd\x90\xe3\x67\x44\x2a\x70\xfe\x0e\xad\x94\x45\x62\x0c\x5a\x8a\x6e\xef\xd0\x04\xf4\x1d\x6a\x63\xd7\xaf\xb7\x34\x54\xf0\xa0\xb5\x02\xff\xc2\x5d\xd0\x39\xb0\x70\xd2\x9b\x6a\xcf\x06\x55\xa4\x3c\xc9\x2b\xb2\x73\x6d\xab\x27\xf6\x47\xca\xda\xe2\xc4\xac\x96\x20\xa4\x07\xdc\xa2\x91\x6a\x68\x68\x5a\x7c\x6b\xde\xb8\x58\x21\xe1\x80\x9a\x4e\xa9\x2f\x77\xb5\xa6\x11\xee\x59\xd8\xa5\x0e\x76\x85\xe4\x4b\xa1\x34\x61\x78\x12\x15\x25\x1f\xaa\x58\x8a\x86\xbd\xa4\x6f\x90\x2a\xf7\x15\x2e\x45\x1f\xed\xa7\x30\xeb\x50\x20\x68\x47\xc6\xd1\xa7\x78\x5e\xe9\x5b\xc4\x85\x69\xe7\x81\x6d\x1a\x69\xb2\x89\xb1\x17\x47\x72\x38\xc8\x17\x4c\x93\xc2\x60\x19\x78\xf1\x13\xcb\x33\xaa\xad\x36\xd4\x8c\xa5\xbe\xdc\x5f\xcf\xe8\xae\x78\xe5\x4e\xd4\xd9\x2e\x2c\x5c\xc0\xc3\x95\x0c\xc9\xc2\x9c\xb8\x9b\x3f\xf2\x92\x3e\x1f\xa2\x9e\xb4\xec\x19\xff\xdc\x20\x71\x3f\xf1\x16\x8b\x7f\x32\xb3\x67\xa2\xb6\xbe\x60\x0c\xd5\xae\x63\xbc\x5e\xd0\x22\x18\x32\x89\xef\x80\xd4\x85\xa6\x51\x8a\xab\x55\x6c\x06\x09\xe0\xe7\x48\xb7\x32\x5c\x43\x20\xfc\xd8\x97\x1f\xd0\x95\x5d\xcd\x9e\x99\x5c\xd9\x4b\xfb\x35\x03\x1b\xdb\x16\x1f\xc4\xf6\x0c\x53\xf7\x9c\x13\x82\x32\xa5\xf1\x85\x89\x69\xf3\x15\x57\x5a\xca\x34\xe0\xdd\xa7\xb4\xe0\x1e\xe7\x14\xf1\x1b\x34\x2d\x41\xac\x19\x71\x44\x37\xdd\x6f\x95\x69\xa5\x35\xb5\x09\x23\x81\xbf\xdf\x23\xd0\x8c\x94\xab\x52\x17\x4b\xd1\x7f\xbe\x72\x5e\x5b\x3f\x32\xfe\xa0\x7d\xa7\x14\x90\xad\x85\x82\x74\x78\x79\x3f\xc7\xee\xd1\x06\x66\x1e\xa3\x15\x2e\x3e\x14\x3f\xb3\x45\xdd\xaa\xf9\x3d\x78\x99\x17\xe6\x9f\x96\x0b\xba\xc6\x30\xae\x17\x4b\x51\x69\x87\xca\xf0\xf6\xc1\x3d\x0d\x1c\x3c\xba\xef\x17\x23\x36\x9b\x8a\x8d\xf7\xda\x39\x62\x9f\x33\xda\xe4\x8a\xed\xb0\xed\x1e\xec\x50\xc6\x15\xc8\x46\x2d\x9f\xab\x73\xe4\x6e\xde\x9a\x00\x04\x91\x4f\x5d\x01\xa0\xcd\xfd\x30\xd0\xec\xb2\x29\x73\x51\xc6\x0c\x3b\xbf\xf6\x28\x5f\xf9\x16\x26\x3c\x51\x7e\xa0\x47\xd7\x0e\xf2\x3d\xea\xfa\x84\x3f\xb7\x74\xf8\xbc\x54\x71\x1a\x32\x19\x4e\xa1\xf4\x3b\x36\xf3\xcf\x0b\x48\x00\xbc\xb6\xcf\xbc\xdd\xd6\x9c\x0b\x18\xb5\x05\xea\xac\x39\x4d\x2e\x83\x19\xb3\xa7\xcd\x9b\x37\x1b\xe6\x4a\xad\x27\x14\x2b\x7c\xca\x2d\xba\xa1\x6e\xec\xcb\x5f\xfe\xe0\x50\xb9\xf5\x12\x7f\x66\xe3\x9a\xde\xb4\x5b\xae\x20\xf4\x8c\xbf\xb0\x4b\xb4\x0c\x91\x55\x08\x32\xc5\xc8\x8c\x83\xd5\x45\xbd\x39\xb6\x4b\xd1\x6d\x22\x7e\x40\xed\xf8\xc5\xec\xf2\xb4\x39\x0c\x95\x52\x9a\xc9\x13\x9c\xf9\xb6\x7c\x27\x35\x6a\x57\xa0\xdf\x03\xb0\xfb\x6d\x0a\xc3\x54\xd5\xc6\xbf\xe9\x8d\x4b\xb5\x47\xec\x08\x52\xdb\xd9\x14\xcf\xff\xf5\x2d\x2d\x6a\x86\x76\x32\x24\x78\xed\x95\x51\x0a\x3f\xcd\xca\x60\x35\x73\xdf\xde\x29\x21\xc1\x1e\x82\x53\x6d\xf4\x52\x2d\xaa\x85\xac\x4e\x1b\x02\xa2\x63\x2f\xe7\xa9\x43\xe8\x02\xca\x94\x98\xa2\x35\x35\xef\x46\x7d\xd2\x56\xc6\x49\x95\xee\xaf\xbc\xa8\xed\x70\x09\x34\x2e\xd4\x4f\xdf\x92\xa9\x5f\x95\x30\xee\xc7\x99\x7b\x65\xa4\x8c\x24\x5d\xd3\x66\xce\xe8\x8a\x7f\xf8\xa7\x87\xe4\x4b\x08\x3d\x9b\xa2\x0a\x67\xbc\x0f\xe4\x57\x76\x0d\x43\x8e\x32\x25\xcd\xdd\x51\xe5\x6b\xad\x41\x03\xa8\x25\xf2\x68\x00\xa7\x7a\x5e\x1b\xbf\x5f\xd2\x36\xe3\x8d\x16\x68\x26\xca\x15\xea\x10\x97\xd4\xb5\xd4\x6b\xd0\x9d\x7c\xa3\x5f\xdf\x44\xae\x4f\x15\x58\xe0\xd7\x2b\x23\x32\xdd\x3b\xce\xeb\x8a\xaf\xf0\xc2\x87\x25\xf8\x56\x2a\x94\xbe\xb2\x42\x99\x54\x98\xa1\xed\x09\x52\x4d\x7e\xbb\xac\xfe\xe7\xcd\x06\xbe\xe4\xcf\x7b\x64\xb3\x80\x51\x54\x51\x25\x83\xaf\x3a\xae\x34\xc8\x50\x18\x60\xfe\x5e\xd8\x38\x29\x40\x15\x02\x74\xe1\xa6\x01\x12\x43\x1c\xb4\xb9\x7b\xe7\x46\x16\x06\x26\xb9\x03\xd4\x4f\x58\xa1\xca\xa9\x76\x04\x8a\x8e\x0e\x76\xb9\x35\x55\x1c\xb2\x5f\x9f\x28\xfe\x9c\x72\xf1\x08\xe3\x5f\x95\xc3\x6e\x76\xd7\xf4\xe2\xec\x59\xb3\xa6\x17\x4b\xd1\x80\xa3\xed\x73\x28\xe2\xd6\x44\xe6\x7e\xee\x3a\xcd\x01\x79\x83\x67\x53\x5f\x8c\x98\xe1\xbe\xbe\x35\x4a\xae\x5b\x00\xaa\x45\xef\x98\x96\x28\x26\x06\x34\x05\xeb\xe1\x83\xc2\x0c\x99\x11\x0c\x0a\x0c\x37\x3e\x21\x99\xb7\x7e\xdb\xdd\xe7\xdf\xf7\xe6\x59\xf1\x76\x4d\xc1\x25\xef\xc8\x36\xdf\x84\xcb\x79\x56\x32\x37\xf7\xac\xa2\x1e\x45\xaa\xa0\xf8\x6e\x8a\xe1\xd3\xc7\x95\xf6\x40\x8d\xc5\x71\x1d\x56\xe4\xb7\x5f\x12\xf6\xb4\xc4\xc5\x0e\x08\xa1\x14\xd6\x28\xfb\xd2\xc6\x10\x34\xb7\x35\xd2\xf5\xe0\x83\xa8\x70\xe1\xc2\x9e\x0c\xeb\x22\xfd\xdb\xfb\x8b\x5a\x8d\xc9\x0d\xff\x20\xe2\xc1\x3e\xd6\x51\x5e\x13\x1f\xbf\x40\xe9\xae\x42\x83\x2c\x43\xb8\x9c\xbd\x25\x5b\x88\xf4\x60\xe6\xe3\x96\x2c\x1c\xd7\xde\x3f\x32\x43\xfc\x45\x60\x8f\x0b\xdb\xf2\x3f\x07\x6b\x23\x7c\xd3\x44\xfc\x4d\x72\xd5\xdb\xfc\xbc\xdb\xb2\xd1\x61\x7d\x88\x09\xa3\xbd\x2a\x70\x2b\xcf\x6e\x93\xf2\xa8\x73\x39\xe8\x47\xe3\x4b\x21\x77\x03\x18\x42\x41\x9e\xf8\xd7\xaa\x54\x0d\xb7\xa8\xfa\x76\xf2\x47\x56\xf1\x47\xad\x82\x16\x57\x71\xc4\xd9\x8c\x79\xb3\x66\x15\x4b\xd1\xd5\x9b\x75\x13\x05\xf0\x4f\x11\xdc\xf2\x35\x9b\x64\x87\x08\x55\x40\x42\x44\xca\x8b\x44\x27\xb4\x46\x37\x0e\xe3\x1c\x0c\xda\xf0\xe9\x54\xa0\xeb\xcd\x6c\x22\xe4\x62\x01\xe2\xcd\x4d\x7d\x7b\xb8\x02\xd7\xad\xe2\x80\x38\xbc\xfb\x31\xf4\xae\xc1\x69\xbd\x26\xd8\x5a\xd3\xef\x94\xdb\xaa\x41\x6a\x94\x71\xd4\x70\x7e\xf1\x70\xf9\x73\x00\x25\x57\x41\xff\xd5\x38\x7d\x8b\x66\xb5\x20\x7c\x72\x38\x03\x7a\xbd\x36\x8d\x70\x09\x36\x53\x94\xe9\x8c\x9d\x8a\x10\x10\xad\xe1\x16\x17\x97\x79\x6c\x09\x6f\xfd\xcd\xed\xec\x02\x9c\xd9\xc3\x6d\xd2\x8b\x26\x23\xe5\x94\x76\x6a\xd8\xd3\x32\x32\xa9\x5c\x83\x2a\x1a\xb6\x70\x58\x16\xa3\x42\x9c\x62\x29\xfa\xf4\x83\x1a\x1f\xa9\x97\xf4\xaa\xf6\x03\xc6\x95\x8f\x28\x13\x5f\x04\x32\xdf\xb9\x9d\x4c\x91\x38\xc2\xa8\xa1\x32\x9c\x8c\xab\xb8\x54\x63\xfa\x89\x73\x79\x6a\x41\x77\x26\x23\x82\x80\x1f\x96\xcb\xd6\x0e\x49\x72\x04\x13\x7b\x90\x77\xbd\x7c\xab\x44\x0a\x95\xa5\xc0\x6f\xf4\x67\x4d\xf7\xd8\x42\x9e\x97\x38\x92\xe5\x0e\x97\xe5\xc5\x78\x16\xb1\x89\x8a\xad\xda\xd1\x3f\x3d\x08\x5c\x94\xba\x1f\x7c\x67\x02\x8f\x55\x2b\xaf\x9b\xd9\x39\x27\x8e\xf7\xb9\xdf\xdf\xa0\x7b\x13\xc3\x20\x5b\xcc\x84\x8d\x1f\x54\xce\xcb\xe0\x87\x13\xb3\x99\x3f\x4d\x56\xe6\x47\x8c\xd6\xe2\x03\x31\xce\xb2\xaa\xf7\xc9\xf5\x65\x62\x16\x20\xe2\x42\x8e\xfb\xd6\x8d\x89\x4c\x24\x46\xed\x23\xb6\x6f\x0f\x50\x5d\x98\xbb\xa6\x83\xa2\xfa\x5e\xc5\xf4\x00\xbb\xb8\x81\xe2\x6c\xbd\x20\x0f\xbe\x54\x45\x3a\xfe\xfc\xb7\x37\x0c\x53\x80\x4d\x44\x70\x9c\x73\x78\xb1\x0c\x94\x36\x46\x96\x9a\xc9\x7f\x7f\xab\x62\xac\x4c\x03\x95\xca\xb9\xbf\x47\xe0\xe2\x51\xc0\x29\x5a\x2b\xef\x97\x9f\xe3\xe2\x5e\xd4\x20\x3e\x71\x50\x0b\x44\xec\xdf\x35\x97\x93\x4d\x96\x22\x17\x05\xed\x42\x50\x0b\x35\x51\x01\x87\xfa\x81\x90\xae\x8e\x36\x5a\x1a\xe3\xc4\x81\x79\x73\xc8\xe7\xcd\x50\xe1\x0d\x5d\xa6\x08\x28\x79\x14\xa4\xfd\xfa\xf2\x81\x22\x93\x5c\x0b\xed\xaa\x1f\xd7\x0d\x50\x36\x7d\xf4\x36\xe5\xae\x9a\x00\xbc\x16\x96\x9c\xde\x9e\x6c\xfa\x44\x02\xec\x24\x56\x8b\xcf\x0c\x50\xc9\xf0\xc0\xa4\x97\x78\xed\x68\xc4\x34\xfe\x38\x7a\xa9\xa8\x22\x3f\xb7\x50\x03\x7f\x10\x07\x8b\xf6\xe4\xef\xe6\xea\x64\x07\xcc\x30\x0d\x5a\x9e\x34\xff\x9a\xa8\xe9\x6b\xb6\x28\x13\x23\xc6\x88\x2e\xd3\x39\x80\x9c\xd5\x2f\xf8\x88\xf9\xce\xa4\xb8\x00\xf0\x6e\x85\xaf\xc5\xfa\xdd\x0a\xe3\x0d\xa3\x0a\x60\x03\x97\xac\x1c\xa2\x60\x87\xe3\x5a\x3a\xfa\xce\x93\x0a\xed\x07\x31\x46\x9b\x70\x33\xf7\x1e\x95\x4b\x07\x04\xad\x21\xc9\x98\x7c\x83\xf4\x93\x0a\x55\xe5\xc6\x63\x6f\xf3\x1c\xe0\x2a\x0b\x39\x9e\x40\xda\x7d\x73\x9d\xd2\x51\xc5\x4d\x30\x83\xce\x5f\x78\x20\xfd\x84\x5e\xac\x62\xea\x3e\x6b\xeb\xce\xdc\x80\x97\x80\x59\xcf\xdf\x1a\x8a\x76\x27\x0b\xb9\xb9\x7c\xd4\xff\x8c\x52\xe3\x58\xc8\x4d\x6a\x9c\x21\x8f\x68\x9a\x49\xf3\x2e\x9f\xc9\x3b\x12\xf3\x6e\x96\xf3\x88\x26\x83\xf0\xfc\xa3\x93\x82\x27\x4d\x02\x0b\x1e\x51\x7f\xad\x07\x1f\x90\x84\xc6\x92\x7f\x63\xcf\x20\xe9\xdc\xce\xf5\x86\x6e\x91\xb7\x08\xd6\xf0\xf1\x3f\xeb\x5c\x0a\x2f\xbb\x78\x1d\x09\xfc\xb0\x4c\x7c\x8b\xe8\xc3\x8a\x81\x95\xb6\x06\x38\x48\xba\x05\x53\xf1\x86\xf8\x3a\xa7\x71\x3c\x45\x71\x05\x76\x03\xe8\x15\xab\x08\xa8\xdc\x4a\x45\x39\x82\x54\x03\xab\xe8\x67\xc6\x6a\x85\xe2\xf8\x36\xb8\xaa\xe2\xb6\x77\xa4\x63\xa8\x2a\x14\x2a\x2a\xd7\x3b\x17\xeb\x03\x24\x0e\x38\xa6\xc2\xad\xba\x2f\xff\xa2\xc2\xca\x43\x01\xb4\x28\xe1\x2d\xfc\x72\x4f\x9a\xe7\x86\xb5\x38\x1d\x3c\xa1\xc1\xac\xcd\x38\x23\x61\xfc\x05\x4c\x5a\xab\x0c\x0a\x2a\x4d\xa8\xbb\xfb\xf2\x53\x98\xfc\x69\xfc\x1f\x9e\xb2\x0d\x19\xa3\x1b\xb5\x61\x2f\xed\xdd\xe5\x0f\x1c\x50\x22\x80\x4b\x3c\x78\x77\x3f\xdb\xa1\x38\x59\xbb\x35\xde\x00\x31\xbe\x36\x6a\x84\x92\xbc\x97\x49\x10\xfa\x3e\x87\xf0\x2f\x9f\xab\x9b\x23\x13\x09\x61\x7c\xfd\x7e\xad\xf7\x4f\x6d\x22\x46\x84\x89\xdd\xed\x3b\x3b\xb4\x06\x8a\x9b\x40\x76\xde\x33\x70\x94\x6f\x21\x0f\x17\x1d\xb2\x01\x57\x4c\xe4\x4b\x80\x7b\xd4\xd7\xa1\x10\xec\x91\xc9\xad\xa7\xb2\xb5\xc0\xa3\xc1\xf9\x4a\x92\xed\x59\xc8\x0d\x41\x51\x0f\x94\x9d\x5e\x49\xd0\x40\x18\xc7\x07\xf9\xa5\x15\x99\xb0\x76\xcd\x83\x47\x37\x60\x4b\xf6\x15\x80\xff\x82\xf0\x05\xe8\x3c\xc5\x6b\xf1\x2b\x5b\x61\x59\x59\x55\x7b\x9e\x17\x8d\x01\xc4\x49\x16\xb9\x8f\x3e\xa8\x43\x1e\x2a\xf1\x7e\x9c\x56\x2c\x45\x7f\x16\x78\x24\x93\xf2\x6a\xb1\x30\x7d\x61\x9a\xdb\xdb\x65\x9d\x1d\xd9\x67\xbc\xfe\xf0\x70\x25\x35\x72\xbc\xc4\x97\xc8\x98\xf8\xba\xa4\x18\x54\x20\x13\x5b\x3e\x50\x9e\xde\x2e\x75\x5d\x5c\xa3\x01\x49\x74\x29\xcf\x3c\x9c\x39\x76\x85\x18\x68\x5f\xee\x5b\x3b\x24\xdc\xd6\x42\xcc\xa1\xae\xa0\x72\x19\x17\x76\x2a\x8e\xdc\x18\x68\x35\xf9\x35\x4b\xce\x3e\x40\x87\x06\xe4\x20\x0d\xe8\x81\x19\x13\x02\xc8\x7d\xf9\xff\x7e\x4a\x85\x3f\x07\x0c\x73\x15\x98\x2d\x1b\x15\x60\x32\x35\xeb\x98\xcf\xe9\xbf\xb8\x45\x05\xcd\x9b\x24\x15\x26\xde\x76\xa1\x42\x12\xb7\xed\xa2\x69\x51\x86\xf9\x6c\x8d\x13\x44\x8e\xce\x91\x41\xba\x89\x40\x50\xb7\xf0\x1e\x4b\x6b\x95\x10\x66\x86\x24\xe0\x16\x2d\x1a\x60\xf4\xc9\xf3\x94\x3d\xd6\x23\xa2\x65\x5f\xde\x1e\xc0\xe7\xb8\x8b\x71\x25\x5e\x4a\x4a\x3e\xd5\x7d\xe3\x40\x51\x34\xb9\x1c\xf2\xc7\xde\x68\x9f\x4d\xf3\x5e\x4c\xbc\xb6\xeb\x1b\xb9\x15\xc8\x35\x69\x37\x45\x46\xf1\x4f\xde\x9c\x46\x97\x5e\x57\x44\x97\x68\xa5\x86\xb0\x6b\x52\x56\x97\x00\xbd\x23\xbc\x81\x51\xbc\x8a\x86\x65\xcc\x02\xd5\xea\xde\xb8\xfc\x4e\x19\x74\x1a\x0a\x33\xf9\xc5\x07\xd3\xe3\xc6\xbb\x3e\x20\xa0\x07\x97\x5f\x3e\x4b\x53\x44\x63\xa1\x0f\x90\x4e\xae\xd5\xe1\x3f\x24\x64\xe7\x11\x63\xaa\xa2\x98\xf1\x93\x61\xc3\xd5\x73\x84\x01\x8d\x23\xfe\xc0\xcf\x2f\xd3\x8f\x82\xc0\xe6\x38\xda\x42\xf1\xb9\x91\xda\x69\x45\x1d\x11\xbc\xaf\xd0\x85\xd9\x18\xc1\xd5\xc4\x9b\x27\x6a\x9c\x4a\xd4\x36\x30\xe8\xcf\xfe\x70\xf5\x28\xf5\x04\x49\xf5\xb2\x60\x0d\xcd\x58\x20\xe8\xa6\xa2\xef\x98\x6b\xad\x3b\x5f\x69\x66\x25\x96\x87\xd0\x4d\xcb\xa3\xfd\x4a\x23\xc7\x0e\x19\x3f\x6f\xbd\x39\xe9\x0b\xf1\x6d\x2a\x5e\xc8\xdf\x6e\x19\xa6\x34\xf0\x42\x97\xaf\x10\x03\xaf\xd4\xc6\xf9\x34\xae\x6d\x13\xf2\x78\x5f\xfe\x0b\xc7\xb2\x45\x56\x19\xd9\x95\x26\xc9\x34\x2c\x8d\x9b\x4f\x28\xb0\x0a\x9b\x61\x54\x69\x15\x03\xc1\x14\xc8\x4d\x36\xb4\x0c\x89\xa6\x86\xa1\xb9\xd7\x5f\x4d\x3a\x9d\x88\xc5\x61\xed\x9b\xc7\xf4\xa4\x87\x6b\xb6\x24\x28\xf2\x01\x37\x68\x9c\x53\x8b\xd2\x80\x86\x89\x3a\xf7\xb7\x84\xfa\xb0\x4b\x79\x0b\x28\xe8\xcf\xdf\xfe\x22\xec\x66\x9c\x15\x72\x17\x6f\x4c\x13\x12\x4b\x6d\x03\xe6\x96\x1c\x13\x5d\x5f\xc0\x2e\x17\x4b\xd1\x3d\x8f\x64\x03\x47\x42\x41\x87\x98\xf8\xa8\xe2\x89\x10\xba\xa4\x0a\x05\xee\xc5\xc7\xda\x65\xbb\x60\xe4\xec\x81\x51\x58\xae\x47\x13\x1b\x8a\xcf\x5c\xc8\x03\x52\x94\xca\xd2\x6a\xb6\xdd\x5b\x0e\x5d\xd3\xb2\x04\x8e\x54\x5e\xeb\xcc\xae\x6c\xd9\x26\xda\x36\x0d\x51\x4a\x46\x5f\x7a\x83\x3f\xdc\x49\xcb\x04\xb9\xeb\x95\xb1\x17\x68\x25\x14\xab\x60\x37\x45\x9c\xee\x2d\xeb\x23\xc5\x66\x11\x95\x21\x86\x89\x7e\xfe\xa5\xaf\xa7\xdc\xd5\x26\x00\xef\x14\x79\x8f\x13\x69\xd9\xe6\xd2\x86\xdc\xb4\x5f\x5d\x30\x48\x64\x99\x01\x6f\x3e\x87\xaf\x27\xcb\xbb\x46\x61\xbd\x93\x46\x7b\xd9\x45\x59\x22\x33\x6f\xe0\x2e\x5d\xda\x2d\x20\x2c\x1d\x3a\x7f\xea\xe8\x84\xb6\xc3\xb8\xd2\xa6\x5d\x63\x98\x9b\xcf\x53\xea\x5e\x24\xa6\x04\xd1\x8f\x75\xa9\x77\xda\xe2\x4a\xc5\x80\x48\xb8\xbd\x7b\x90\xf8\x03\xa1\xc8\x66\x8c\x1f\xc5\x9b\x9e\xab\x88\x43\x19\xf6\x53\x99\xcf\x17\x56\xc9\x13\x67\x66\xe7\x6c\x70\x94\xb9\x57\x71\x93\xb7\xe2\x62\xc5\x8a\x23\x67\xfc\x9b\x73\x76\xb6\x81\x11\xcd\x7a\x22\x2e\xf4\xf2\x34\x0d\x62\xc7\x08\xa8\xfa\x4d\x04\x00\x96\x27\x20\x29\x76\x5c\x63\x42\xbb\x60\x95\xe0\x80\x76\x87\xcc\xc5\x41\x5b\x3d\x99\x1b\xb9\x87\x9f\xfc\xd7\xe3\x5a\xe8\x56\xa8\xb8\xe2\xfc\xc7\x9e\x53\xc5\x68\xb1\x07\x70\x35\xe3\xea\x75\x3c\xc2\x0a\xd9\x0d\x4e\x32\x3c\xd7\x90\xf9\x73\xc5\x85\x3c\xec\xfd\x27\xf8\xbe\xea\xc6\x81\x65\x63\x0b\x3b\xa9\x4d\xf5\x2e\x2d\x42\x62\x1c\x40\xee\x16\x9d\x9a\xa3\xef\xec\x0a\xe6\xb6\x77\x3c\x49\x5c\xbd\x67\x8c\x34\xd4\x73\xda\xc0\x26\x7b\x37\x66\x3f\x18\xea\x2f\x0e\x35\x7e\x7e\x5c\x36\xf3\xaf\x90\x04\x8c\x7a\xee\x61\x85\xf7\x80\x02\x8b\xda\x3c\x99\x5a\xb5\x47\x03\x7f\x83\x54\x75\x02\x73\xcb\x9d\xab\x01\xc9\x38\x68\x84\xd4\x40\x7f\x89\xd7\x26\xeb\xcb\x59\x29\x3d\xee\x9d\x36\xc9\x3f\xdb\xb0\x20\x57\x9d\x25\xeb\x27\xa2\x4a\xc7\xec\x7e\x4b\x27\x06\x79\x61\x20\xac\x9c\x72\xdb\xef\x51\xd4\xf4\x53\x83\xb9\xc4\x97\x3a\xf7\xab\x17\x87\xa6\xab\x16\xa2\x02\x47\x05\xcc\xe1\x55\xa1\x1b\x67\xc1\x10\xe4\xe3\xd7\xfa\xec\x15\x3a\x4b\xc2\x43\x0c\x6c\x38\xa6\x36\xca\x6d\x7b\x65\xfa\x0d\x2a\x4a\xd3\xe6\x83\x93\xfc\x39\x1a\x30\xdb\x45\x0e\x16\x00\xf2\xfc\x2a\x43\x13\x24\x60\xd8\xb7\x84\xd7\x64\xa9\x2f\xf7\xc7\xad\x7c\xc7\x77\x4d\xbb\xfc\xf2\x39\xf1\xbf\xff\x4d\x57\x36\xc9\x06\x5d\x6a\x87\xc6\xb5\x58\x62\x35\xfd\x59\x0d\x1b\x23\xf4\xb5\x53\x7f\xb3\x5c\xe7\xb0\x36\xc9\x4c\xbb\x92\x58\x53\xac\x79\x71\xa8\x12\x97\x19\x27\xc2\x1a\x0b\x57\x76\xa8\x47\x3e\x77\x18\xd8\xb4\x88\x6f\x72\xa0\x14\xc6\x51\xf0\x81\x17\xc7\xe8\x51\x15\x9b\x41\xba\x05\x3f\xad\x65\xd9\x7e\x9c\xcc\x8b\xf0\x78\xb5\x86\x3c\xe0\xa3\xc3\x20\x71\x9f\x3d\x77\x81\xa6\x51\x8a\xa0\x8b\x94\x66\x09\x0b\xef\x6c\x9f\xcc\x0a\x93\xa9\x3b\x65\x5a\xe9\x73\xeb\x28\x58\x04\xa3\x77\x0e\xcb\x14\xc3\x35\xae\x4f\x31\x66\x95\xee\x66\xc0\x99\x0b\x85\xf2\x6e\x4d\xd3\xc0\x46\x0e\x16\x04\xd2\xb7\x16\x75\x24\x69\xab\x9d\x36\x8d\xfe\x76\x50\x3b\x6f\x31\x13\xcc\x01\x20\x0e\x16\x86\xaf\x93\x3b\x0c\x9b\x40\x6c\x86\x00\x71\x9b\xd6\x60\xe1\xc8\x7c\x6e\xdd\xf8\xa7\x71\xc2\x29\x9e\xa1\x32\xf4\x75\x8c\x89\xd9\x66\x04\x9f\x2a\xe6\x9e\x79\x6b\xb8\x02\x1a\x44\x35\x47\x7c\x78\xee\x7f\xa6\x0b\x60\x00\xc1\x7c\xfe\xe8\xf4\xea\x2a\x02\x28\x84\xc6\x80\x78\x6b\xd1\x37\x14\xbd\x63\x1b\xf9\xd0\x09\x5d\x73\x69\xb6\xd5\xc1\xa8\x83\xe3\x67\x08\x46\x6c\xfa\x9e\x78\x6d\x9c\x36\xa4\xab\x13\x9c\x9c\xe8\xd1\x1b\x83\x85\xb4\x70\xfc\xdc\x4c\x10\xa7\xd9\xa2\xd0\x60\x71\xd3\xb7\x68\x08\x98\xdc\xc2\x01\x65\x36\x88\xb2\x6a\xdd\x85\xca\x39\x9a\x08\x21\xf5\xfd\xa9\x6a\x2f\xce\xd8\xf4\xb6\x3c\x66\x66\xcc\x9b\x0d\x32\x22\xef\x7f\x45\xd1\x0a\xc2\x65\xe4\x07\x30\x7d\x8e\x1e\x38\x91\x8d\x8a\xb3\x3a\x67\xf1\x62\xe7\x4b\xcf\x0a\x9f\x75\xe6\x07\x4d\x8b\x4b\x66\x19\x63\x27\xa4\x2d\x7c\x8c\xaa\x19\x34\xf9\xdd\xf3\x33\x12\xf8\xd4\xa6\xf1\xf9\x5e\x8a\xbe\x7f\x9b\x52\xdf\xf9\x0d\x1c\x20\x97\xdb\xdb\xfd\x56\x03\x89\xc7\x25\xb4\x29\x54\x22\xf2\x7f\x39\x3d\x42\xe9\x6e\xdb\xbe\x85\x1b\xa4\x0e\xbb\xa3\xaf\xaa\xd4\x73\xd8\x21\xbe\x67\x61\x3e\xfc\x7f\x73\x8c\x7c\x7b\x73\x3a\x39\x4a\xad\x4b\xff\x12\x46\x7b\xe2\x6d\x0a\xeb\xff\xf1\x2d\x5a\xa7\x25\xf4\x03\xea\x60\x96\x28\xb1\xff\x71\xad\xfc\xaa\x78\x7b\x33\x02\x1e\xe2\xa5\xbe\xfc\xd7\xe7\x5e\x94\x55\x09\x6e\xc3\xf5\x45\x17\x4e\x51\x5a\xe8\x26\x2e\x63\x56\x8b\x0f\x84\x05\xbc\x91\x7d\xa5\xdb\xf2\x6c\xc4\x25\xdb\xfb\xdd\x28\x3b\xd9\x8e\xa2\xf9\x60\x7c\x5e\xc5\x1c\x98\x26\x65\x15\x61\x61\x6c\x5c\xf6\xa2\xe2\xe1\x89\x9a\x9d\xc5\x52\x74\x70\xb2\x7e\x70\x72\xb1\xf0\xa4\x1d\xf1\x9d\x01\x3a\xdc\xa9\x65\x61\x27\xc5\x04\x9c\x19\xa7\x69\x24\xa6\xad\xe2\x24\x58\x7e\x2f\x1a\xa2\x74\x26\x48\x9c\x39\x7e\x7e\x4e\xfb\x40\x10\xf1\x91\x16\xef\xd6\xba\xc7\x74\xa8\x38\x71\xab\x2c\x0e\x26\x3c\xd6\xe5\x7a\x06\x48\x48\x40\x98\xfa\x48\xac\xd8\x3f\x5a\x49\xc3\x92\x53\x95\x17\x3e\xd1\x07\x57\x8c\xff\x27\xc7\x6e\x5a\x85\xf6\x19\xce\x0d\x8a\x77\x82\x07\x32\xe7\xd1\x5b\xdd\x6a\xd1\x5d\x25\xc9\xc3\xfc\xf7\xfd\xd9\xbb\xe8\x81\x07\x2d\x68\x05\x90\xb7\x7d\x6f\xd5\x88\xf6\x6b\x89\x37\xf0\xfb\xcf\xc8\x03\xc4\x25\x26\xcf\x84\x72\x77\x29\xd3\x13\x1f\x81\x20\x5b\xfc\xe3\x73\xa4\x56\xa6\x07\x02\xe8\xc9\xc4\x62\x9a\x44\xfa\x82\xfb\xfd\xab\xa7\xb2\xb0\x2f\xe6\x13\x61\xad\x92\x8d\x36\x7f\x58\x75\x91\x52\x1e\xba\x41\xd8\xce\xe9\x2a\xbc\xeb\x05\xe5\x5a\x4c\xc4\xb8\x1a\x58\xbe\x4b\x7b\xdd\x33\xe6\x88\x56\xa1\x90\xbe\xeb\xcb\x9d\x5a\xa0\x2b\x02\xb8\x1a\xc7\xe6\xb7\x8f\x0e\xcb\xc0\xa7\x3d\xde\x4a\xb8\xc0\x50\x6d\x59\xe4\x71\x93\xdf\x50\xe9\x50\xb6\x13\x67\xba\xe7\xce\xdd\x38\xa2\x4d\x0c\x87\x9f\x29\x3f\x90\xce\x6e\xc4\x56\xa5\x45\xfb\xbf\x3a\x54\x79\x8f\x0d\xca\xb5\x4f\x0a\xab\x25\x43\xbc\xb3\xdc\x0e\xce\x9a\x20\xaf\xaa\x09\xd0\x1d\x31\xdf\xd9\xb7\x50\x15\x69\x76\x10\x33\x13\x5e\xcf\x9f\xcb\x9a\xfa\x9d\xe0\x63\x0b\xf9\xc7\x63\x81\x0c\xde\xc5\x54\xd9\xab\xcf\xf8\x72\xa0\xfb\x42\x31\x98\x81\xc2\xd9\xfd\x33\xe1\xa6\xb7\x08\xd9\xca\x60\x25\x37\x46\x63\x33\x24\x9f\x27\x12\x86\x2f\x7b\xca\xd8\x0a\xb3\x8a\xaa\x88\x91\x1f\x39\x46\x92\x7c\x88\x1b\x70\x64\x4c\x72\x7b\x46\x71\x32\x5f\xba\x2b\x91\xed\x07\xaa\x3b\xa1\xb1\xe7\xc5\xb4\xf8\xf7\xa0\x5d\x0f\x5b\x6f\xa6\xa7\x8b\x8e\xf1\x81\x61\xa2\x8e\xb3\xf2\xe1\x2c\x11\xda\x6f\x72\xf0\xe3\x14\x4d\x0e\x2e\x5e\x6b\x22\x63\x98\xa5\xc0\xec\xfd\x00\x03\x22\xfe\xa7\xe3\xdb\x6d\x8c\x91\x4b\x60\xe2\x01\xe1\x6a\xe4\x6f\x2e\x10\xd1\x8d\xd5\x30\x03\xf1\x15\x91\x62\xf1\xa7\xfc\xb5\x2b\xb4\xd8\x4d\x02\xde\x79\x15\x85\xcb\x77\xfa\x4b\x5f\x40\xa6\x3c\xae\xdc\xc6\x37\x14\x16\x0e\x2d\x13\x1b\x3b\xb8\xc2\x75\xaf\xae\xdb\xcd\x9f\xd5\x1a\x8b\x04\xae\xaa\x8c\x5b\x18\x3a\x25\x0b\x3e\x69\x61\x3b\xf0\x89\x2b\xa6\xf6\xc9\x9b\xb8\xef\x36\x3e\xd6\xba\x0e\xb9\x95\x30\xce\x42\x33\xa5\x6f\xce\x97\xec\x4b\x52\x76\xda\x76\xf3\xff\xae\x6e\x3b\xaa\x1a\xa4\x22\xb8\xa4\x13\x8f\xe8\xea\x82\x6e\x3d\x3e\xa8\xe2\x80\xf8\x15\x6d\xa7\x3a\xa8\x85\x6a\x21\xee\x4d\x7b\x33\xb9\xdd\x73\xd3\x28\x4b\x7a\x83\xd4\x68\xb9\x63\x6c\x7b\x22\xa1\xe2\xcb\xc6\xbe\xae\x1b\xdc\x23\x9b\x5f\xce\xc7\xef\x4b\x29\x96\x66\x5c\x68\x73\x11\xdb\x9f\xdc\xd1\xa1\xec\x65\xa1\xf4\xf0\xa3\x47\xc6\xe9\xb9\x24\x61\xf1\x01\xab\xa8\xf6\xb7\xa9\x64\x00\x53\x44\x08\xf4\x1c\xdc\xa9\xbb\x6e\xc3\x18\x9c\x4f\xe1\x8e\xdc\x2d\xe3\x3c\x0e\x19\xe4\x59\xb4\x57\x22\xd0\x7a\x68\xd9\xc6\xbe\xef\x72\x23\x5b\xe3\x99\x97\x32\x0c\x77\x20\x5c\x14\x4b\xd1\x05\x76\xea\x9e\x93\x0e\x6c\xa3\x9f\xd9\xc3\x44\x61\x10\x58\xc4\xad\x27\xc2\x96\x23\x3a\xda\x68\x9a\x1e\x8d\xc3\x02\xdf\x1f\x37\x15\x34\x26\x58\x03\xbb\x21\x86\xc7\xaa\xac\x84\x95\x5a\xc3\x16\xdb\x01\x31\x7d\xee\xf1\xa7\xc5\xad\xcd\x8a\x22\x05\xa7\x8e\xe4\x7e\x35\x27\x33\x52\xf7\xa9\x5b\xc4\x6e\xe2\x20\xfd\xae\x59\x19\x30\x4b\x83\x17\x35\xf9\x73\x47\x71\x5c\xc0\x24\xe8\x56\x5d\x74\xcf\x85\xca\x3f\x22\x67\x71\x2f\x79\xea\x69\xd9\xb5\x9f\xd4\x8e\x65\xbe\xf9\x99\x6c\x18\x98\x30\x75\xdd\xba\xf8\xdb\x8d\xc5\x1a\xe9\x80\x85\xad\x6a\x55\x5d\x55\xb9\x8b\x03\x69\xfb\x1e\x42\x77\x6f\xa1\xb6\x44\x4c\xc4\x02\x18\x0a\xa5\x08\x8e\x75\x12\x5b\x1a\xda\x8a\xcb\x6b\xae\xa0\x8d\xa6\x52\x05\xd7\x04\x92\x64\x5c\x3c\x4d\x77\x71\x01\x41\x50\xf1\xba\x16\xce\x91\x0d\x3e\xa2\xa0\x81\x73\x0f\x74\xcb\x43\x86\x4e\x72\x31\x01\x50\xe2\x4f\xef\xd6\x41\x78\x15\x6e\x94\x0e\x05\xca\x92\x5b\x65\x68\x09\xb8\x6c\x7b\x12\x6c\x37\x1e\xe5\xe1\xec\xaa\xb8\xc8\x44\x6d\x3a\x0f\x85\xbb\x26\xf0\xda\x20\x08\x9d\xb2\xc0\x0b\x0c\x5a\xa6\xd5\x46\xb4\x9c\x28\x02\xec\xdf\xaa\x22\xa1\x93\x39\x5d\x6e\xc7\x9e\x31\x4a\x39\x1b\xa7\x1d\x01\x72\x2b\x29\xc4\x65\x84\xe6\xf6\xea\xc7\xd1\x85\xb8\x19\x8e\xe2\xbd\x92\x00\x52\x06\x05\x05\x90\x7b\xeb\x95\x64\xc4\x0a\x6d\xba\x9e\x8d\x5a\x19\x20\xd2\x77\x96\xa8\xb3\x17\x9c\xe8\x94\xe7\x87\xbc\xa6\xf8\xc7\x30\xf0\x91\x3c\xe9\x29\xff\xd4\x4d\x39\xbd\xb9\x35\xbb\xb4\x92\x93\xd8\xb6\x28\xf2\xf3\xef\xbd\x5f\xf7\x9e\xf4\xcb\x21\xf3\x71\x85\xcb\x56\xfc\xe5\x45\x45\x8f\x98\xa1\x0a\x7f\x7e\x85\xb5\x8a\xcd\xd5\xfa\x90\x33\xbe\xee\x7b\x41\xe7\xfe\x21\x4b\x03\xd3\x1b\xdf\xdf\xae\xe4\xb9\x42\x58\xe8\x57\xd3\x47\xf2\x89\x1d\x34\x1f\x32\x7b\x79\xe1\x8d\xe9\x31\xca\xd5\x7b\xe1\xd8\xbd\x6a\x80\x4a\xc0\xe2\xb8\xe0\xa1\x0b\x15\x20\x11\x75\x6b\xb8\xc1\xc1\xcc\xdf\x5b\x2a\xff\xed\x74\x5e\xb7\xe4\xef\xe5\x82\xb1\xc5\xe5\x94\x05\x56\xdb\xee\x3b\x4f\x11\x96\x04\x72\x46\x1c\xaf\x16\x8c\x57\xab\x85\x80\x34\x12\xe1\x89\x3c\xbd\x5f\xfe\xa6\x4a\x69\x50\x66\xa4\xc2\x2b\x62\xd2\xa3\xb7\x86\x4d\x12\x80\x24\x9d\x00\x89\xde\xfe\x94\x06\xb7\xa8\x20\x87\xd4\x33\x4d\xfd\xb7\xf7\x0f\x51\x83\x67\xfc\x92\x7f\xae\x40\x9d\x53\xc4\x51\xb1\x14\x7d\xf4\x79\x4d\xc4\x06\x99\xf5\x2a\x61\xb8\x53\xec\xc6\x4d\x65\xf9\x24\xba\x66\x77\xc6\x4f\xc2\x18\xbd\x40\x2e\x3e\x9b\xb8\x36\x09\xac\x1a\x6d\x2a\x67\xf3\xa6\xc1\xbc\x33\x83\xdc\x56\x13\x41\xfe\xfd\x65\x4d\xef\x2d\x7e\x3f\x89\xd2\x76\x6e\xe2\x41\x75\x12\x42\x85\x45\xca\xf5\xdd\x1d\xe9\x3e\xab\x08\xf8\xdc\x67\xb6\xb6\x2b\xfa\x3a\x89\x28\xf1\xcf\x1e\x97\x83\x55\xb7\x0c\x04\xe5\x31\xfd\xc7\x48\x50\x67\xfb\xd8\xf6\xd2\x5e\xd9\x4a\xed\x09\x2b\x3c\x29\x36\x3a\xaf\x18\xa8\xe4\xa4\xa5\xbe\xdc\x3b\x16\xe9\x92\xe3\x4d\x98\x3f\x42\xda\x1e\xde\x3f\x24\x39\x09\x80\xab\x12\xff\x6c\xe3\x6d\xf2\xa1\x61\x8f\xf7\x55\x5e\x78\x48\x75\xb7\x0c\x10\x3f\x2c\x17\x8d\x1d\xaf\x25\x0a\xcc\xa4\x7e\x96\xaa\x53\xb8\x7c\xf8\x28\x05\x16\xd4\x8b\x54\xe5\xc9\x57\x35\x9a\x5c\x95\xd4\x2c\xe8\x9f\x00\x7c\x20\x3a\xb5\x5f\xbe\xaa\x1a\xb5\xab\x6d\xdd\xd9\x83\x93\x35\x6c\x16\x58\xfd\x70\x5f\xd3\xdc\x99\x83\x7a\x81\xca\x1d\x3f\xc4\xda\xa8\xf4\x2a\x80\x5c\xe1\x3b\x05\xf7\xbf\xe7\x39\x3e\xcc\xf1\x29\x9c\x26\xf9\x75\xfd\x35\xd1\x88\xd4\x16\xf9\xb1\x5e\x01\x0e\xd6\xb1\xc5\xa3\xc6\x9f\xaf\xf2\x4e\x1d\xec\xfa\x01\x0b\xb9\x46\xf0\x14\xcd\xa7\x9b\xb7\x70\x45\x87\x60\xc1\x41\x9d\x9a\x57\xa5\x0c\x3a\x08\x7c\xb4\x72\x58\x53\x67\x9f\x31\x7b\x36\x6f\x0c\xcf\xbc\x65\x98\x0a\xcd\x4c\x04\xab\x36\x8f\xd2\x11\xf7\xa1\x97\x8a\x0a\xe6\x1e\x6b\x28\xcd\x78\x84\x89\x03\x59\xeb\x8e\xc1\x32\xa2\x7a\xb8\x82\x84\x31\x9a\x41\x46\x2a\x86\x0d\x34\x19\x87\x5f\xc2\x86\x2b\xdb\x89\xbf\x3e\x78\xfc\x23\x9f\x53\x5c\x62\x00\x42\x29\x7e\x93\xef\x3f\x50\xf2\x85\x2c\x55\x92\xfd\xfd\xfb\xf5\x12\x91\xb2\x1a\x41\x52\x34\xce\x38\x74\x38\x5b\x15\xf4\xe0\x54\xc8\xf9\x17\xfb\xf8\xcb\x58\xd5\xb6\x4a\x6c\xa6\xe9\x59\x60\x24\xa6\xec\x85\x56\x6f\x6a\x24\xee\xc4\xa1\xf3\xeb\x92\x37\xcf\x80\xb9\xfc\xd3\x23\x7a\x2a\xe9\x94\xe3\xd7\x01\xc2\xd4\xff\xd1\xa3\x34\x76\x31\x02\xcb\x57\x6f\x8b\x44\x19\xcc\x98\x5d\x2c\x45\x7b\xe6\x0c\x92\x25\x3d\x94\xa8\x1f\x5b\x2b\x4f\x5b\xd5\xc6\xef\x88\x36\x06\x0b\xcb\x65\xca\xb5\xf9\xc4\x48\x74\xf6\xdc\x0e\x05\x7a\xd0\xc0\xb0\x9e\x96\x8c\x1b\x73\x96\xf5\x94\x9c\xec\x7b\x9e\x55\x95\x21\xdd\x30\x9d\xe0\xe6\x76\x9c\xd4\xb5\xd7\x50\xb5\xca\xdb\xab\xf9\x79\x62\x6e\x6c\x21\xc6\x2d\x76\xbf\x34\x50\x17\xfb\x66\x3c\x72\xc9\xb2\xf1\x42\x4d\x6d\xcc\xb7\x48\x35\xf0\x05\xf2\xf4\x43\xfd\xb2\x1d\x08\x0f\x31\xb0\x1f\xd6\xf6\xcd\xe7\x77\xc9\x20\x68\x11\xf8\xcb\xe7\xc6\xe8\x9e\x61\xc2\x98\x95\x6b\x10\xf4\x31\x3d\x99\xf7\xe2\xa2\x82\x6b\x98\xbd\x38\x51\xa3\xbb\x11\xb7\x66\xe3\x22\x68\xda\x57\xe2\x14\x5e\xac\x82\xdb\xfb\x5f\x20\xdb\x43\x41\xbb\x87\xdb\x24\xc5\xe4\x86\xe3\x9e\x95\x00\x67\x6c\x3d\x2d\xdb\x40\x60\xcd\xcc\xc7\xde\x85\x31\x1d\xca\xc6\xc0\x61\x7c\xb5\xef\x64\xd9\x06\xf9\xbc\x99\xc2\x7e\x77\xc5\x11\x39\x6a\x87\xd3\xdf\x24\x89\x61\xa2\x71\xc9\x41\x5e\x37\x90\xf8\x38\xac\x84\xa6\x48\x70\x9e\x18\xaf\x19\xa2\x94\x09\xb5\x51\xa6\xa3\x92\x3f\xa7\xc2\xff\x74\x49\xc8\x14\x09\xcd\xdc\x2d\x8a\x4f\x8a\x85\x51\x65\x7d\x08\x09\xb2\xa8\xf1\xa3\xb7\x37\xcb\xb0\x1b\x67\x7c\xd5\xf8\xff\x64\xec\xd3\x0e\xeb\x6a\xf9\xd4\xc3\xf1\x0b\xe5\xe9\xd5\xb7\x2c\x25\x50\x58\xa0\x71\x53\x8a\xc6\xef\xb9\x58\x7b\x8f\x01\x66\x5c\x11\x4d\xea\x24\xe4\x3f\x71\x5a\xc6\x9e\xd0\x05\xa8\x2d\x04\x93\x9f\x1e\x52\xfc\xad\x88\x1d\xef\xcc\x87\xbb\xa5\xb2\xa9\x1b\x9a\x76\x5c\xcb\x34\x31\x8a\x6b\xa7\x22\xc3\xb6\x68\xba\xe4\x2f\x3b\x94\x7d\x4c\x2e\x6d\x90\x3a\x6d\xa8\xc5\xc0\x8a\xad\xa3\x54\x2a\x70\x4b\xc5\x5d\x7e\xe5\x96\xf3\x94\xcc\xd8\xad\x20\xc6\x43\x67\x78\xa7\x02\x85\xd7\xd4\xae\xf7\xca\x8f\x2b\x63\xe6\x12\x95\x12\xf9\xf3\x91\xd9\xcb\xe9\xa1\x3e\xf6\x2c\x1e\xe1\xc4\x57\x1a\xae\x82\x2b\x63\x8c\x02\x2b\x31\x7f\xf3\xe0\xf7\x64\xba\x32\x4c\x48\x1d\xf2\xfd\xac\xb6\x05\x16\x0a\xc7\xc1\xd0\xb3\xb0\xcd\xe7\x35\xef\xd9\xa0\x41\x03\x1a\x88\xd8\x71\x01\x2a\x7a\x73\xf7\x46\xd9\x63\xa7\xcc\x30\xaa\x17\x49\x6a\xf0\x97\xff\xee\xe6\xc1\xca\x00\x01\x02\x7f\x49\x52\x4e\x66\x74\xce\x03\xf2\xff\x61\x0d\x77\x8a\x61\xf6\xae\x08\x43\xe7\x46\x1f\xd2\xfd\x27\x6b\x4e\xa2\x07\xd0\x97\x5b\x3f\x50\xff\x2d\x53\x1c\x73\x87\xec\x54\x4e\x2b\x8b\xd1\x10\x2e\xe3\xe5\x61\x7a\x6e\xe6\x38\xc9\x24\xbd\xf0\x69\xa6\x75\x85\x80\x9c\x16\xa7\xc9\xa2\x95\x84\xa6\x5f\xa8\x1d\x0d\x44\x53\x0c\xde\xf2\x5a\x76\xd0\x4f\x27\xf9\xa1\x6d\x93\x06\x72\x33\x48\xf5\xd1\xe5\xf3\x44\x1e\x5e\x03\x89\x5d\xa1\xed\x91\x7f\x87\x36\xc0\xc1\xa1\xd2\x07\xce\xfd\x5c\x6d\xec\x62\x2c\x48\xd1\x85\x99\xd1\xf0\xf6\x61\x45\x7c\xb3\x5f\x39\xa4\x0a\x7c\xba\x42\x94\x1a\xb8\xc2\x23\xd3\x22\xd8\xb2\x00\xc4\x15\x3e\x75\x9e\xda\xa8\x75\x03\xc2\x79\x10\xc5\x37\xb2\x49\x1b\x88\xbd\xc4\x85\x8b\x4b\x24\x3e\xe6\x8e\x69\xca\x2c\x96\xb8\xc8\x01\xc5\x87\x39\x27\xa7\xa9\x53\x8a\xa5\x4b\xf5\x29\x85\x2e\xa3\xf9\xc0\xc3\xd3\x9a\xd9\xd6\x7a\xe2\x8a\x10\x70\x74\xb5\xfe\x07\x8f\xdc\x92\xde\xc6\xac\x4e\x98\x33\xbd\xa9\x19\x1e\x13\xc7\xa1\x0c\xd9\x49\x5f\x7e\xdc\x89\xf4\x0f\x66\x40\xa5\x93\xfb\xdf\x7e\x89\x6a\x7e\x95\x2b\x6d\x8c\x5e\x97\xa8\x12\x08\x0f\x99\x87\x04\x0a\xb7\x85\x6d\x9b\x36\x61\x73\x9d\xe1\x7f\x53\x14\x03\xb3\xdc\xda\x59\xaa\x51\x16\xf6\x2b\x1c\xab\x96\xff\x8c\xd2\xdc\x65\xb8\x6a\x63\x33\xe9\x2e\xef\xea\x27\x9b\x44\xc0\x6c\x2b\x26\xf3\x98\xfc\x63\x3d\x8a\x10\x37\x2a\x9b\xd4\xac\xab\xbe\xf7\xe7\xa4\x77\x50\xe5\xd4\xad\xba\xd0\xc5\xa8\xda\x78\x03\x2f\x3d\xaf\xef\x3c\x5f\x39\xa0\xfc\x8c\xe3\xe3\xff\x5b\x2d\xa9\x5f\xa8\x11\x5f\xca\xe7\xe7\xa4\xba\x57\x1e\xe0\xc7\x2a\x87\x2f\x54\x5b\xd2\xa0\x54\x48\xcc\xa2\x8d\x2b\x49\x77\xf3\x9e\x97\xa4\x5e\x59\x4b\x22\x35\xa3\x4f\x2f\xd0\xa4\x6c\x6d\xdc\x00\xfb\x15\x91\x93\x5d\xbf\xa2\xaf\x70\xc3\x82\xb4\x4c\xb1\x51\xbd\xed\x95\x1e\xec\x2f\x90\x4d\xd4\x16\x0f\xb7\xb2\x44\xb0\x31\x30\x70\xfa\xa2\xa5\xcb\x85\xd1\x0f\x18\x85\x26\x78\xb8\x37\xc6\xeb\x3a\x7c\x20\x68\x9b\xf4\x73\x1b\x87\x33\x65\xb2\xb8\x8f\x3b\x27\xf2\xdc\x7d\x19\xf7\x7e\x32\x5e\x99\xac\x38\x26\x98\x8c\x82\x02\xeb\xbf\xec\xd6\x9d\xf0\x1b\xb2\x51\x5c\xa8\x3e\xa4\x69\x03\x72\xdb\x2c\x08\xc2\x33\xe7\x67\xd3\xef\xc0\x22\x02\x0c\xf2\xaf\x2b\x54\xdd\x88\x6c\x17\xf8\x3e\x2d\xa7\xef\xd4\xf4\xa5\x7b\xb4\x2a\xc8\x0f\xcb\x81\x8d\x83\x64\x50\x96\x3f\x20\xf4\xf9\xaf\x36\x43\x54\xa1\x0c\xa5\xb4\xb7\xa1\x3d\x8a\xcb\x98\x6d\xc3\x00\x4a\x57\x5d\xeb\x33\x7e\xbb\x92\x3f\xee\x99\xb3\xe7\x01\x87\xc7\xd8\xb7\x4b\xa1\xcd\x92\xe4\xc3\xde\xa9\xb5\xa2\x4c\x9b\x98\xf5\xf4\x60\xce\x2d\xcb\x2e\x84\xaa\x30\xbb\x56\x8a\xb9\x89\xbb\x3a\x14\xd4\x8b\xe3\x81\x19\x43\x7e\x42\x5b\x77\x33\xae\xb5\xdc\x1a\x47\x36\xfe\xdb\x7c\x9e\xa0\xe0\x0d\xc8\xc4\xac\x2c\x0e\x6d\x63\xe1\x6d\x1c\x3d\x5a\x03\x99\x01\xdf\xb4\x28\x15\x76\xed\x85\xcb\xb8\x59\x46\x7c\x38\x05\xdc\x86\xb8\x05\x64\xb0\x97\xaf\x50\xdc\x4a\xe3\xea\x24\x11\xb0\x2e\xf4\x7b\x7b\x8c\x3a\x75\x15\x48\x73\x1b\xfb\xdc\xcd\xe9\x1d\xaf\xeb\x3a\x11\x88\xb9\x09\x36\xa2\xcf\x60\xd3\x47\x68\x55\xa4\x0b\x34\xf2\xa8\xf2\x74\x47\x52\x26\x06\x42\x23\x24\xba\xe5\x12\x65\x66\xed\x52\xb7\xe5\xf0\x8e\xcc\xbe\xfb\x79\xb3\x94\xb7\x20\xf2\xf9\xa3\x9a\x1e\x68\x32\x9d\x11\x60\x8f\xc2\xea\x37\xb2\x27\xe9\x1c\x68\xb3\x14\xe7\x16\x89\x2b\x44\x12\x8c\xf9\xcf\x67\x53\xc9\x29\x02\xc8\x55\x58\xb3\x54\xa6\x92\x1e\x0d\x5d\xa5\xaf\x66\xbc\xef\x59\xdd\x5d\xd3\x25\x94\xf1\xfb\xf9\x63\x55\x11\xf2\x76\x71\x91\x72\x93\xed\x3f\x3c\x2c\x3b\xa5\x8a\x4a\x52\x5f\xfe\xe6\x35\xea\x4c\xd5\x0f\x19\xa8\xa2\x27\x5d\xed\x57\x34\xb1\x26\xdf\x64\xc8\x29\xa7\xa6\xe4\xb9\x97\x8f\xaa\x4e\x58\x01\xef\xed\x17\xde\xbd\x5b\x21\x21\xcd\x01\xf7\xd0\xc2\xa4\xae\x21\x22\x1d\xac\xbb\xb4\xc9\xa1\xaa\x5b\xf6\x68\x1a\x63\xa1\x47\x90\x25\xde\xd8\x67\x9e\x97\xe5\x25\x51\x48\x1f\xf9\xaf\x1c\x38\x5f\xcb\x98\x69\x18\x08\x55\xad\x91\xaf\x68\x76\xca\x89\x28\x29\xdf\xde\xef\x75\x65\x27\x14\xbb\x0d\xc2\xa8\xc0\xc2\xf2\x14\xfd\x7d\x37\xea\xb4\xec\x20\xd1\x19\xf9\xb3\xd5\xe6\xd3\xd6\xe2\xf5\x3c\x14\xd5\xab\xcb\xe3\x32\x47\x7d\xc0\xe1\xea\xaa\xc6\xe3\xc0\x65\x7c\xc5\x97\xfc\x7a\xc6\xcb\xfb\x8b\x2f\xc8\x90\xd3\x24\xae\x2a\x8f\xf2\xa8\x21\xdb\xf1\x62\x39\x43\x20\x2b\xfa\x16\x02\x6c\x43\x7e\xda\x25\xf2\xf9\xcf\x04\xe1\xef\x62\x29\x0a\x34\x39\x6e\xc1\x8a\x99\x56\x2c\x45\xbb\x94\x2f\x03\x8c\x2a\x12\xe6\xc2\xd1\x2f\x9f\xe7\x75\xf7\xb2\x96\x8f\xdd\xba\x4a\xe1\xfa\x43\x3f\xd9\xfb\xa5\x69\xd7\x78\x7a\x3f\x79\xb4\x0a\xe9\x4e\x38\xc9\xad\x75\x7a\xbc\x67\x15\xe9\x8e\x50\x58\x7b\x28\x3d\xe6\x90\x07\x6e\xd2\x47\xee\x54\x06\xad\x5c\x31\x57\x38\xfe\x8d\x3a\x2e\x07\x63\x67\xb1\x8b\xfa\xcc\x4e\x75\xac\x54\xa9\x40\x8f\xef\xd3\x8f\x68\xcc\x76\x14\x60\x61\xe9\x90\xeb\xee\xba\x48\x8b\x01\x01\xd2\x85\x0d\x7f\xa4\x50\x44\x1c\x54\xb7\x42\xe8\xef\x1b\x3d\xd9\xaa\xc7\x22\x76\x40\x5d\x8e\xae\x91\x19\xfb\xc1\xc3\x23\x33\x05\x48\x13\x72\x32\x38\x05\x77\x6f\xd6\x4a\x2d\x4a\xdc\x20\xa5\x8d\x18\x73\xdb\xfc\x87\x1b\xd2\xb6\xac\x30\x5c\x83\x58\x07\x8c\x86\x6e\x5c\x3f\x8a\x6e\xd3\x80\xe3\x5a\xc8\x67\xc8\xb7\x52\x5d\xc5\x7e\xc7\xb5\x0e\x3a\xa5\x41\xa2\xfa\x3f\xa7\x3c\x56\x19\xd5\xe3\x0d\x6d\x25\xf3\xd8\x51\x53\xff\x49\xe6\xc7\x51\x6b\xfa\x3b\x79\x6c\x8e\x36\xee\x0d\x49\xb2\x35\x37\xbf\x25\x83\x2a\xc3\xc8\x46\x61\x05\x78\xd1\xb9\xf2\xe6\x6c\x14\x88\xe3\x83\x9f\xb0\xd8\xee\x91\xeb\xb5\x42\x7c\x33\xf4\x13\x4b\x8b\xdc\x64\x4b\xa4\x57\xd8\xe1\x76\xcb\x37\x1e\x54\xa2\x76\x1c\x13\x92\x6e\xd3\xb4\x59\x1a\x87\x97\xa6\xe1\x62\xab\xb2\x88\x85\x21\x42\xb1\x14\x35\x9f\x13\x4e\x3a\xd4\x0f\x90\xba\x21\x3f\xf2\x94\x16\x78\xa1\x55\x26\xaa\xaf\x93\x91\xae\xb2\x81\xe3\xc2\xd0\xc5\x99\xe9\x69\xee\xc3\xaf\x66\x23\xbe\xe3\x09\xcc\x62\xe5\x16\xe5\xfa\x6d\x9f\xd6\x10\x83\xbe\x75\x61\xf1\x9e\xe1\x0a\xb1\x47\xfd\xc5\x81\xf3\x15\x5c\x9a\x5b\xb1\xa8\x5d\x49\xf6\xe1\xff\xbd\x39\x42\xe5\xbd\x10\x33\x08\x19\xcf\xc8\xfe\x3e\x7c\xa0\x28\x08\x6c\x2e\x81\xa9\xc4\x10\x86\x1c\x1f\x43\x2c\xdc\x56\xcd\x42\x54\x6b\xdc\x24\x26\x31\x6a\xcd\x26\x87\xc7\x5c\x7e\xd0\x77\x63\x1b\xf9\x16\x6d\x28\xd1\xe3\x8d\xfb\xb5\x15\x81\xc5\xea\x8b\x7e\x30\x65\xa8\x8a\x6f\xe1\x61\xe8\xd5\x47\xb2\x32\x37\x15\xd4\x20\x15\xe9\x77\x2a\x37\xdb\xb5\x1a\x82\x8b\x53\xb7\x04\xeb\xe6\x9a\x07\xa5\x23\x2b\x60\x7c\x2e\xdd\x96\x8a\xf1\xb9\x15\xde\x38\xdb\x78\x88\xaf\x9f\xc0\xc2\x8c\xe3\x1e\x07\x6e\xd5\xf5\x1a\xcd\x80\x38\xfc\x62\xaf\x1b\xfc\x2e\xf1\x98\x1d\x88\x25\xff\xf6\x76\x76\x57\x55\x18\x6a\x8a\xe1\x61\xc1\x1f\xa9\x0d\x1f\xa9\xe3\xa1\x38\x57\x4f\x8d\x9c\x77\x3d\xc1\x9f\xd7\x22\xc2\xb0\x19\x50\xf5\x38\xb8\x70\xb1\x2e\xb8\xed\x7b\x61\x20\x66\x5a\x79\xf7\x05\xd5\xfc\x7a\x7d\x48\x58\x22\xdf\x94\xfb\xd9\x22\x39\x9f\x6a\x22\x06\xd9\x54\x77\xcf\x70\x95\x8c\xca\xb0\xcf\x81\x6a\xc6\xb7\xce\x74\x88\x64\xda\x4c\x8a\xcf\x28\xda\xab\x2d\x6e\x6a\xe3\xd4\xe8\xe5\xe4\x5c\x71\x3c\xd0\x1a\xca\x78\xa1\xe5\x17\x68\xc5\x39\x4c\x18\x39\x9c\x16\x00\x83\xf7\xf6\x64\xbb\x77\xc8\xe1\x48\x69\x7d\x0d\x79\x5b\x54\x68\x96\x0d\x35\x50\xe1\x9d\xcb\xa5\x36\x00\xa0\x54\xa4\x72\xc3\xfb\x8e\xa6\xef\xb8\x81\xe1\xa6\x4e\xbf\xc1\x53\x8c\xab\x5a\x2e\x11\xda\x47\xc6\xd7\x5f\x95\x87\xc4\xa4\x26\xe1\x6c\xae\xc3\x8f\x70\xc7\x83\xae\x79\x71\xd9\xa2\x4c\xd2\x7d\x6e\x97\x97\x1b\x77\x2b\xff\x24\xec\x78\x36\x6d\xe1\x78\x05\x7d\x63\x82\x82\xbd\x04\xc3\x49\x54\xc3\x02\xf7\x97\xab\xec\xce\x9e\x2c\xd0\xd5\xd5\x06\x28\x4b\x34\xa6\x11\x71\x41\x4b\x2a\xe1\x89\xfe\xe8\x84\x3c\xec\x2a\x6d\x8a\xfe\x05\x72\x42\xb3\x7b\xa3\x6e\xa2\xe2\xd3\xe0\xf4\xa2\xdc\x3b\x06\x0f\x92\x52\x21\xf1\x25\x77\x8f\x52\x80\x8f\x5d\x5c\xfa\xf7\x47\x8b\x78\x91\xb6\x9c\xb2\x26\xae\x11\xc4\x63\x69\xd3\x7b\x4f\xf6\x8c\x08\x89\x59\x3f\xab\x72\xcd\xcd\x6e\x76\x79\xd6\xb9\xbb\x91\x98\x43\xd1\x29\x83\x94\x65\x05\x4a\x33\x65\x99\x71\x99\x24\x20\xbd\xd8\x85\x87\x2c\xb2\x88\x79\x1b\xdb\xd1\x89\xac\x41\x49\x42\x9a\xff\xf1\xeb\x4a\xc3\x50\x5c\xec\xb5\xcf\xa9\xed\x7a\x9b\xab\xc8\x96\xf6\x2b\xca\x4f\x16\x75\x3c\x9f\xcf\x38\x9f\xdc\xcc\xaf\x48\x9a\xa2\x9c\x94\x27\x0a\xf5\x3c\x20\x49\x25\x83\xf0\xa7\x87\xab\x99\x48\xbc\xed\xb8\xe2\xc7\x82\xe7\x85\x16\x1e\xae\xc4\x31\x90\xb7\x84\xc6\xad\xd0\x8d\x32\x4c\xec\x62\x14\x6e\x80\x44\x6b\xf4\x4a\x41\x50\x13\x46\xb8\xaa\x95\xed\xdc\x23\xb2\x9a\x35\x69\xe8\x71\x23\xce\x9b\xaf\x10\x21\x2a\xf4\xb9\xf1\x79\x34\xf2\x61\xd9\xf4\xf7\x5b\x7e\xc0\x79\x12\x71\x7d\x9c\x3b\x3a\x5c\x8e\x14\xd5\x2e\xc4\x9f\xb7\x08\x3f\xa6\x10\x24\x79\x37\x1d\xce\x1e\x49\x35\x64\x97\x19\x22\x81\xd0\x90\x4e\x8e\xa4\x4b\x46\x66\x17\xd7\xcc\x19\x7e\x90\x18\xa4\x0a\xa8\xd9\x5e\x45\x56\x02\x70\x18\xa0\xa5\xb4\xe6\x19\x99\xcd\x55\xa1\x9e\xff\xc3\xdd\x32\x40\x59\xd4\x0f\x84\xc1\x11\x0c\xc5\x06\xea\x8a\x8a\x94\x85\x22\x37\xcb\xef\x7e\x48\xed\x9c\x7b\x9e\x0d\x7b\x8b\xf7\x7e\x6b\xa3\x46\x2a\x99\x03\x14\x29\x09\x46\xf3\xd8\x11\x45\xbc\x8c\x56\x30\x38\x6d\x90\x17\xf4\xd1\x1c\x73\x88\x10\xfe\xcf\x7d\x73\x93\x6e\x88\xc2\x5d\x69\x78\x70\x86\x05\xf6\x56\x41\x69\xe5\xc0\xd1\x7e\xcf\x15\x3c\x77\xb7\x30\xaa\x14\x03\xca\xff\xb7\xd4\x57\x98\xb6\xb6\xcd\x64\xc0\x05\x28\x1a\x00\xb0\x7e\x2d\x90\xea\x15\x16\xd6\x8a\xf1\x8d\x9c\x5e\x99\x7d\x1d\xc4\x23\x5c\x7b\x30\x33\x3d\xf9\xe0\x93\xd9\x3d\xd1\x83\x3c\xe4\x72\x64\x14\x2c\xd3\x91\x05\xdd\x46\xca\xf7\xb1\x9d\x99\xbd\xd3\x59\x0a\x04\x93\x32\x26\xa2\xfe\x07\xf7\x6b\xea\xc2\x42\xdd\x45\x84\xa0\x35\xbb\xd3\x5e\x0c\x4b\x4d\x39\x86\xac\xd1\x28\x39\x88\x89\x53\xd6\x68\xf4\x0c\x55\x4a\x54\xcc\xe1\xf5\xc6\x8d\x77\xc9\x15\xe0\x52\xd7\x43\x2c\x20\x3e\x57\x34\xfb\x4c\x94\x3e\xd8\xce\x79\x33\x41\xfb\x65\x87\xe4\xb6\x28\x55\x51\x34\x77\xa0\xf2\xd1\x1c\x56\x52\x8a\x1a\x1b\xd4\x60\x00\x44\xda\xfc\xe7\x0e\x0e\x53\xbb\xf4\x3e\x2f\x77\x8d\x9b\xee\x1c\x93\x9e\xe2\xe5\x36\xa3\xbe\xdc\xff\x8a\xdc\x71\x05\x12\xcd\x3d\xa3\x7b\x16\xff\x89\x82\xd6\x5d\x34\x42\xec\x50\x17\x58\xfa\x29\x77\xa6\x60\xf6\xd3\x28\x9e\x2c\x14\x82\xdf\xc6\x1c\x49\x6c\x47\x6e\xfc\xce\x73\xff\x3e\x8e\x07\x5c\x9f\x82\xbe\x30\x6f\x5d\x3e\xba\x5c\x51\x97\x8b\xc3\x7d\x29\xfa\xc0\xa3\x12\x71\x84\x14\x96\x4f\xee\x87\x8f\x0c\x55\xd1\x43\xa8\x06\x3d\xdc\xe0\x8e\xf4\x51\x56\xa0\xdd\x98\x9b\x72\xdf\xff\x0f\x52\x1b\x62\xe1\x65\x6f\x0f\x55\x26\xc2\x81\xe8\xc4\x74\x75\x49\xa3\xbb\x50\x25\x39\x0e\xbe\x53\x13\x7d\x42\x01\x71\x13\x35\x8d\xdc\xb2\x75\x9a\x60\x00\x02\x33\x47\xae\x2e\xf1\x58\x41\xcd\xf5\xd7\x87\xc4\x07\xa8\x75\x5f\xee\xc6\x87\xe4\x7e\xad\x32\x8e\xbe\x31\x7e\xb7\x5a\x59\xad\xc4\xc1\x71\xea\x5e\xea\x33\x36\xdd\xa7\x7f\x7f\x19\xdb\x89\xf4\x45\x7e\xcb\x43\xca\xb1\x8d\x41\xfa\xe5\x07\x13\x2f\xd2\x2e\x29\x40\x75\xe1\xdd\x9a\xdc\xd4\x8f\x0d\x45\x2f\x94\x96\x93\xec\xc9\x78\xdf\x58\xbe\x57\x67\x4c\x9b\x3e\x1b\x0e\xca\x7c\xf5\x42\xbd\xf2\x21\x26\x90\x9e\x92\x49\xf5\x3b\x96\xeb\xf4\x2b\x64\x63\x26\x1a\x89\xff\x35\x45\x9b\x81\x80\xed\x60\x22\x22\xfa\xfe\x15\x8a\x34\x26\xd4\x09\xa5\x3e\x63\xfe\x0a\x05\xf2\x8c\x20\x8d\xe2\xab\xa5\xa3\x9f\xe2\x72\x04\x2a\xcd\xf1\x67\x7c\x75\xb1\x0e\xba\xb0\xe3\xdc\x3f\x65\x81\x7e\xd3\xd3\x5a\x76\x71\xed\x84\x5c\xa1\x0d\x1d\xde\xc8\x4b\x9c\x2a\x65\x98\xd4\x5c\xae\xc7\x1e\x2f\x87\x73\x4e\x4b\x87\x42\xd4\x9e\xe9\xdf\x76\xc5\xc5\x7a\xc4\xe3\x2a\x14\x04\xd9\x72\x1e\xb3\xf4\x05\x0d\xd0\x13\xb2\x9a\x8d\x58\x2b\x11\x29\x2a\x3d\x3c\x48\x14\x26\x88\xcb\xbc\x19\x67\x34\x38\x05\x12\xce\x1d\xc0\xe1\x9c\xb7\x43\xd3\x3c\x44\xd4\xd2\x34\x0f\x7f\xa1\xc1\x63\x28\x43\x6e\x8d\x73\x93\xa2\x4d\x76\xb6\xa6\xa8\x33\xd4\x30\x2d\xec\xd6\xa9\x80\xcf\x8b\xa0\xb3\xe7\x21\xa5\x3d\xef\x06\xf1\xa1\x50\x6d\x09\xd4\xc4\x67\x02\x65\x9a\xb7\x81\x56\xb8\xeb\xeb\x65\x07\x34\x7f\x06\x2e\xe6\xe0\xb5\xd5\xc5\xe7\x0d\x54\xd5\x0c\x6c\xec\x59\xc0\x8b\x8b\x2a\x05\x85\x4a\xd2\x42\xb2\x63\x7f\xb4\x27\xdd\xdf\xf0\xbe\x23\x63\xfa\x59\xd8\xba\x10\x4f\xf8\x04\x7d\xef\xdb\xbc\x05\x7b\x1d\xa9\x60\xe4\xa7\xb5\xef\x98\x23\x72\x68\xd1\xc0\xac\x42\x54\xf7\xd0\xdc\xdb\xdd\x4a\x93\x11\x84\xd5\xf9\x9b\x8c\xef\xed\x27\x05\xc5\x2a\xc3\x22\x36\xf5\xa9\x67\x71\xaa\xff\xd7\x6f\xcb\xce\x9e\x52\xd9\x99\x4c\x37\xe4\x51\x1d\xb3\xd2\x2c\xd3\x56\x32\xf0\x71\x97\x0d\x95\xe6\x0e\x7e\x82\x32\xbf\x63\x8f\x7c\xca\x73\x66\x14\x67\x74\xc5\x5b\xb1\xf0\xde\xb5\x13\xb4\x03\xb1\x85\xdc\xc0\x42\xda\x88\x2f\xff\x9b\x6c\x61\x3d\x73\x0e\x5f\xea\x6f\xef\x4e\x28\x7a\xa4\xc2\x53\x2d\xb2\x4a\x53\xbf\x82\x32\x0c\x64\xce\x78\xfd\xb8\xaa\xa2\x80\x5e\x5c\x85\x34\x9d\x7f\xdf\x8d\x52\x87\x03\xec\xc9\xdb\x3c\x82\xf3\xfb\xca\x9a\x06\x08\xa3\x9c\x7c\x98\xe8\xf7\xf6\xe5\x3f\x7c\x46\xee\xe8\x06\xe1\x9a\xc5\x7d\xf9\x2f\x4b\x6c\xba\x99\x61\x95\xaf\xdf\xd6\x16\x69\x02\x4b\x6c\xe4\x11\x03\xf5\x62\xd3\xe5\x69\x6a\x80\xfd\xa9\x13\x8b\xa5\xc8\x3c\xa6\xf1\xc5\x29\x0b\x58\x7c\xa2\xa6\x6d\xea\xfe\x4b\x2f\x50\x5a\x79\x00\x8c\x89\x53\x74\xb0\x73\x8d\xaf\x6b\xef\xea\x61\xea\x1a\x12\xe5\xe2\xd3\xc3\xd2\x6c\xa1\x02\x15\x2c\x9f\x65\xdc\x7a\xa1\x9e\x7b\x99\x60\xc8\x91\x66\x57\xaf\xac\xe6\x91\xe7\x03\xa8\x16\x9f\xe1\x92\xbf\xe1\x5d\x31\x46\x49\x01\x19\xc3\x5e\xc0\x25\x9c\x78\xbe\xfd\xd5\x87\x45\x12\x4e\xed\x44\xd8\x30\x9a\x7d\x4c\x9f\x1a\x33\xcf\x0e\x79\x08\x36\xfe\xbb\x77\xb2\x76\x20\xda\x58\x30\xc3\xdb\xe5\xbe\xff\x7e\xb3\x3c\x91\x69\xc8\x9d\x4f\xe7\xbd\xa0\x29\x0f\x48\xbf\xf9\xdc\xdb\x4f\xf2\xfc\xbe\x1b\xb1\xe2\xb5\xb6\x8d\x54\x01\x8a\x33\x42\xb5\xce\x8f\x43\x3b\x9c\x4c\xcf\xcd\x1d\xa1\x25\x51\x66\xc0\xc5\xef\x76\x2f\x69\xbb\x83\x86\xa8\xe8\xa2\xef\x6d\x1c\x2c\xf2\x1a\x37\x75\xf0\x1f\xab\x0c\xcf\xa1\xf9\x04\xca\x63\xe7\xe8\x67\x55\xc2\x47\xc2\x5c\x2b\x37\x77\x99\x36\x7e\x4d\xac\x7c\xb9\x0e\xc1\x98\xe7\x44\x6f\xde\x4b\x87\xab\x57\x1f\x90\xeb\x9c\xb2\xf8\xeb\x03\x06\x63\x1d\xb9\xdf\x76\x3e\xad\xd3\x55\x11\x71\x92\xae\x64\x54\xda\x22\x92\x5f\x0a\xc8\x87\xe8\x03\xdb\x26\x69\xc7\x95\x8b\x78\x13\xb1\xfd\x65\xfc\xbe\xc2\xdb\x23\x57\x21\xd6\x88\xeb\x4b\x65\xff\xbd\xf3\x8a\x76\xcb\x15\x8f\x30\x39\xe8\x99\x71\xc9\xd9\x1c\x4b\x55\x49\xbf\xf9\x1a\x7d\x3b\x2e\xb7\x88\x50\x81\x8f\xd3\x8e\xd7\xb2\xdb\x17\xdb\xdc\xf1\x4f\x6e\x18\xa3\x7b\x85\x46\xb5\xc4\x0e\x62\xc0\x04\x48\x48\x71\x0f\x6a\x33\x8a\x26\x20\x1a\xe1\x61\xbf\xbc\xe6\xfc\x2c\x47\x70\xc5\x54\xb8\xb0\x78\x8d\x9f\xd8\xc8\xeb\x0c\x64\xd6\x5d\xda\xb4\x71\xa5\x06\x89\x2f\x52\x74\x22\x90\x6d\x23\x0b\x00\xec\x3b\xd3\x13\x22\x00\x2b\xab\xd1\x9a\x30\x44\x9d\x38\x99\xf3\xad\xcf\xb8\x66\xbf\x0c\xe9\x2e\xae\x31\xea\x59\xb4\x0c\xd3\xcd\xc2\x27\x22\x19\x79\x27\x95\xb1\xcd\xfd\xd6\xcb\x9b\x54\x6a\xad\x2d\xaa\xae\xdc\x3f\x46\x69\x31\x07\x3b\x59\x6d\x09\x63\xcf\x1d\x92\xf4\x3f\x73\x46\x11\xa4\x54\x96\x4d\x6a\x4b\xa8\x90\x90\x08\xd5\x81\xcc\x3f\x3d\x21\xc5\xb8\x43\xe5\xf5\xe7\xaa\x13\x74\x18\x81\x87\x91\x69\x89\xa1\x59\x7e\x8f\xc1\x73\x76\x07\x99\x16\x71\x71\xd1\x41\x75\x01\x39\xff\x47\x8f\x06\x9d\xa9\x32\x62\x22\x69\x9d\xe2\x29\xce\xc9\x3e\x76\xca\xe2\x5e\xa3\x37\xee\xe3\xc7\x2a\x6f\x7f\x26\x22\x2b\xc6\xac\x35\x59\xa6\x06\x2f\xcf\xcf\xc6\xd4\x30\x6e\x1e\xab\x2a\xd4\x9b\x01\xa9\x72\x2c\xd4\xf5\x96\x68\x32\x33\xea\x97\x15\xd2\x57\xfe\xf2\x75\x83\x45\x8a\xce\x2c\x30\x1f\x89\xf2\x8a\x35\xa8\x43\x5c\xe2\x90\x5e\x31\x14\x75\xa6\xcb\x62\xab\x1a\x32\x97\xf8\x02\xa8\xd5\x57\x18\x33\x52\x93\xc2\x42\x4c\xfa\x82\xe6\xde\xb3\x4d\xb8\xee\x50\xea\x40\x2f\xb9\xf5\xc6\x58\xed\xf5\x54\x09\xb6\x2b\xd2\x95\xf6\x99\x67\x47\x2a\x39\x2b\x92\x9a\xcc\xd1\xcf\x16\xc9\x3e\x85\x82\x4b\x28\x45\x2f\xdf\x21\x61\x98\xa8\x0a\x06\xb6\x87\xb3\x99\x83\x1f\x50\xce\x45\x55\xb5\xc8\xa6\xf4\xd7\x5d\x37\x84\x1b\xaa\x50\xa3\x3a\x75\xa3\xee\x44\x8b\x02\x31\x8f\x44\x6b\x35\xfd\x52\x4f\xbc\x35\x71\x5a\x96\xa6\xc9\x9d\x34\x63\x5e\xe7\x3c\x20\x03\x5f\x52\x19\xd2\x4c\xfa\x0e\x54\xe0\x61\x2f\x38\x26\x01\x29\xdc\x84\xc6\xd9\xaa\x8a\xd4\x14\x2d\xb5\x6b\x6b\x0c\x1b\x25\x1a\x5f\x65\x1a\x06\x71\xb8\x73\x24\x1c\x64\x36\x48\xe8\xde\x72\xb7\x24\x65\x9a\x40\xca\x6c\xe9\xb0\xc9\xbb\x4f\x68\x35\x03\x75\x30\xe8\x9d\xc3\x49\xd1\x1c\x2c\xab\xa4\xa6\x85\x1c\x8f\x02\x2c\xe1\xbe\x6a\xc6\xbe\xd8\xc6\xbe\x38\x2f\x37\x9e\x19\xad\xfc\x02\xce\x0a\x0c\xd3\x4e\x58\x7d\x5f\xdf\xa9\x8e\x89\xfd\x40\x90\xe6\x1f\xba\x55\x1c\x5d\xe0\xef\x02\x71\xe6\xaa\x57\xe5\x56\xf6\x10\xac\xfe\xc3\xfb\xb2\x2f\x60\xd6\xf4\xe9\x42\x69\x60\x60\x87\x42\xa4\xa2\x36\x75\x79\xef\x27\xf7\xff\xca\x69\xba\xd7\x43\x52\x20\xec\xcf\x6f\x3b\x5f\x96\x01\x59\x96\x15\x39\xa9\x3d\x0b\x3b\x74\xbc\xc4\x5c\xf4\x03\x9b\xd2\xd4\xa3\x41\x1a\xc9\x16\x9e\x3a\x77\xb4\x9e\x21\xc7\x6f\x53\x8c\x7a\xfa\x3f\xd7\xce\x2c\xa4\xa1\x5b\xf1\x93\x22\x23\xbf\x44\x81\x7e\xc4\xa7\x8e\xeb\x92\x10\x2c\xe9\xf3\xd7\xce\x51\x85\xdf\x01\x4f\x1e\xcd\x18\xd9\xa1\x6c\x6b\x8f\x3f\xf3\x47\x7e\x93\x2e\xf8\x49\x50\xf0\x16\x3e\xd5\xa1\x47\xbd\x2a\xf5\x31\xae\x73\xe0\x4d\x36\x52\x3c\x54\x18\x2f\xfb\x82\x2d\xe4\x22\x87\xb4\x87\xc6\x0f\x9e\xd0\x49\x2f\xc8\xa6\xb5\x30\x99\x7c\xcc\x5d\x9c\xa2\x78\xcc\x50\x9f\x99\x46\xef\x3f\xa1\xe0\x68\x98\x4b\x6d\x58\xeb\xc6\x3e\xde\x34\x34\x6d\xa0\xfe\x6f\x59\xf4\xce\xf8\x83\x57\x2c\x5a\x15\xd7\x4e\x4b\xf5\xe9\xa1\x9b\x38\x66\xe5\x7e\xbc\x4a\x95\x2a\xcf\xb6\xe7\xf3\x9f\x7e\x55\x31\x66\x41\xc9\x4c\xd7\x58\xf6\x82\x8a\x0c\xad\x60\xc6\xb9\x19\xc6\x27\x2b\xf2\x71\x56\xa8\xa0\xa1\x1c\x98\xa5\x1b\x4f\x20\x57\xec\x74\xe3\xf1\xad\x6d\x89\x40\x80\x6a\x0a\xd5\xfb\x8e\x37\x47\x67\x97\x22\xb6\x95\x18\x33\x64\x6f\x9b\x57\x2b\xef\x33\xf1\x18\x53\xb0\x26\x67\x30\x72\xd7\x2e\x9f\xda\xfd\xff\x87\x91\x8b\x16\x0c\xd3\x80\x07\x82\x89\x21\x56\xdf\xba\x15\x0a\xcd\x18\xdb\x26\x15\x54\x28\xe3\xc1\x2d\x3a\xb0\xc6\x26\xb8\x91\x2c\xf4\xd3\xd3\x64\x78\x6f\x92\x0a\x2e\x96\x69\x85\x53\x02\x8c\x5f\xec\x95\xf2\xe4\x92\xea\xb5\x7b\x96\xda\x22\x63\x4e\xb1\x14\x6d\xde\xaa\x01\xc4\x2d\xe2\x0a\x91\x98\xfc\x0f\x1b\x93\xdb\x23\x6d\x15\x6d\x38\xcb\xa1\x1c\x2d\xaa\xb6\xd9\x1a\x05\xc4\x24\x1e\x4a\x3b\x22\xf9\x6f\x3f\xaa\x69\x9f\xb8\x3d\xb4\x95\x22\x3f\x0b\x9f\xdd\x23\xdf\x31\x87\xa6\x96\xfa\x72\xef\xbc\xa7\x7f\xfc\x4f\xaf\x5b\x54\x2c\x45\xa3\x76\x65\xc7\x10\x36\xa9\x87\x95\xb3\x65\x88\xf9\x93\x56\xfb\x11\xc1\xa5\xff\xe1\xb9\x91\xc7\x25\x1c\xa3\x89\x71\xdd\xd6\x3d\xf4\xa3\xad\x83\xd3\x0c\x03\x95\x15\xf2\x82\x11\x8d\x95\x10\xd9\x19\x00\xb4\xca\x79\x7b\x85\xe4\x74\xe7\x4c\x10\x76\xbf\x6f\x80\xa2\xbf\x4d\x1d\x50\x7e\x56\x1b\x67\xf7\x1e\xe3\x67\x2b\x71\x03\x90\xa8\xca\xd9\x37\x08\x16\x9f\x45\x5c\x61\xe7\x61\xcf\xd2\xad\xda\x12\x10\xb5\xc8\x63\x9f\x58\x92\xfd\x07\xf1\xeb\xf7\x3d\x86\x91\x18\xab\xdd\xb5\x2b\xd1\xc1\xe2\xd4\xfd\xdc\x72\xc5\x02\x19\x37\x29\xcd\x60\xbd\x8d\xc9\xf7\x6b\x63\x45\x1a\x96\xed\xd4\x76\xf3\x13\x83\x15\xba\xec\x86\x80\x01\x6f\xe9\xe2\x31\xd9\xb7\x19\xba\x55\x3e\x5f\x86\x34\xf6\xad\xbd\x4a\xa4\x17\x02\x19\x10\x14\x2e\x49\x0f\xbe\xcb\xc0\x85\xcb\xd8\xa7\x65\xcb\x33\xe7\x70\xb3\x33\x9a\x4c\x08\x77\x75\x68\x35\xa3\xcd\x41\x3b\x69\x2f\x2b\xff\xeb\x63\x42\x7f\xb2\x97\x48\x62\x75\xf4\xf7\x7e\x4a\x34\xb3\xcb\x98\x73\xf9\x96\x2d\xd0\x60\x81\x04\x20\x64\x7c\x61\xdc\xb4\x42\x9b\x1a\x7b\xc4\xa7\x09\x99\xfa\xa2\xe3\xa9\x13\x9a\x74\x79\x79\x63\x82\x2b\xf1\xda\x7e\x40\x82\x30\xc0\xed\xbc\xd7\x6f\x0f\x4f\xc0\xa9\xa9\xe5\x62\x63\x84\x52\x50\x06\x0c\xd5\xb0\x10\xfd\x6e\x3c\xc4\x97\xd3\x1a\x2e\x8d\x94\x33\x1e\xe1\x85\xed\x12\x44\x02\x92\x1c\x8d\x13\xc6\xc8\xac\xb1\xca\xa8\x70\xc5\x88\x7e\xb5\x4d\x1b\x3a\x01\x4f\x22\x65\x02\x7d\x4b\xd9\xfe\x75\xec\x05\xc5\x52\xf4\xa3\x1b\x95\x8e\x2b\x02\x99\xf7\xe8\x23\xcf\x0e\x14\x85\x65\x0d\x9e\xca\x53\x47\xb5\x8a\xa8\xce\xa5\x92\xc4\x54\xef\xee\x5b\xb8\x36\xed\x32\xdc\xc0\xac\x1e\x72\x4b\x8a\xec\xd1\x35\x62\xee\x14\x6d\xad\x10\xe8\x14\x04\xad\xb3\xb6\xc3\x4e\x6f\xd3\xf1\x2e\x36\xef\x8f\xc0\xa3\x7b\xaf\x44\x0f\xd7\x2c\x78\x0b\x37\x9e\x73\xbe\x72\x6a\x10\x07\xd5\x48\x6a\x88\xf2\x55\x05\x31\x88\xc2\x80\x8b\x62\xc2\x5f\x7d\xf7\x49\xe9\x3c\x53\xad\x2a\x55\xc4\x97\x5e\xd4\x91\xa3\x65\x3f\x48\x44\xf9\xc6\x4e\x39\x2f\xed\x6b\x74\x2a\x27\x46\x7d\x5f\x9b\xf0\x85\xc8\x2d\x45\x7f\xdd\x78\xec\xa0\x6e\x3e\x6c\x7b\xc9\xef\x06\x2b\x2a\xdf\x36\x0a\xc1\x3e\x11\x86\x09\x75\xe1\xd1\x84\x82\x00\x3b\x1e\x97\xc7\xbd\xe5\xb0\xb0\x3e\xc1\x36\x2e\xa7\x50\x5a\x63\xf0\x42\x2d\xc1\x21\x36\xc6\xae\x40\xca\xfc\x62\x2d\xc7\x26\x96\x69\x5c\x0b\x9e\x5e\xa2\xb5\x3c\x13\xd1\x44\xbd\x59\x75\xef\x30\x3e\x9e\xe0\xd6\xa6\xbc\xdb\x19\xdd\x7a\x57\x36\xba\xb6\x10\x9d\xaa\x3c\x8a\xfc\x2f\x1f\x4a\x1f\x6c\x39\x33\x48\xec\xd9\x95\xc1\x72\xad\x0f\x91\xcd\x55\x0d\xf3\x4b\x35\x0c\x13\x57\x97\xf6\x2d\xe2\x71\xb2\x6e\x77\x97\x76\x4a\x85\xa9\x0d\xe5\xe7\x87\x69\x6a\x32\x60\x5f\x44\x1a\xd8\x16\xed\xe6\xdc\x9c\x03\x52\x29\x85\xc2\xa2\x98\x36\x40\xef\x96\xa6\x25\x0b\x47\xac\xce\x7b\x5d\x6e\x0b\xea\x11\x3e\x42\x79\xa3\x9b\x3f\x77\x7d\x6c\x75\x46\x2f\x5a\x18\x22\x1c\xbd\x25\xf3\x9d\xe3\x3d\x0a\xb3\x97\x82\xc7\xc5\xa6\x43\xd9\x34\xb9\x16\x47\x3c\xd8\x70\x5f\xd5\x2c\x02\x7b\x89\x9b\xed\x66\x46\xbf\xba\x55\x11\x88\x45\x44\x90\xf7\x0a\xa3\x07\xab\x0e\x6c\xae\x1f\x3a\x98\xf1\x19\x75\xe3\x3e\x91\xb9\x23\xbb\xc1\x93\xf9\x82\xff\xa4\xd2\x74\xb6\x18\x46\x01\x16\xa9\xd1\x62\x95\x06\x5a\xa5\x90\x27\xbc\xac\x35\x19\x39\x85\x86\xf7\x8f\x0a\x37\x16\x84\x5d\x0b\x8a\xa3\x5f\x1a\x81\xf7\x8e\x93\x1e\x74\xa8\xd2\x88\x6b\x66\x80\x44\xe8\xe8\x85\x4f\xdc\x95\x42\xc3\x5d\x93\x78\x36\x5f\xcf\xcd\x40\x13\x34\x63\xd4\xc7\x66\x18\x50\x26\x72\xbc\xc2\x6b\x9c\xed\xfc\x01\xa8\x69\xf5\x0f\x1d\x3a\x21\x75\x38\x87\x8a\x37\x57\xda\xae\x85\xb1\x38\x5e\x21\x3b\x31\x21\x29\x6d\x19\xaf\x94\xf8\x42\x9e\x5c\x0f\xe4\x53\x6e\xd6\xc7\x5a\x66\x5d\x32\x45\x6d\x4f\x02\x32\x4d\x1b\xb3\xb6\x1c\x3e\xff\xd9\x82\x20\xf4\xa7\x73\xff\xec\xef\xcb\xaf\xf1\xed\x3e\x73\x7a\x5c\xc9\x87\x50\x24\x18\x7b\xc6\xca\x6d\xd3\x0a\xdd\x5a\xd1\x4c\xdc\x55\x9f\x7f\x65\xb2\xd2\x86\x0b\x2c\x1a\xe7\xfb\x35\x97\xfa\x71\x81\xdd\x06\xd6\x5b\xa4\x11\x77\x3c\x8c\x98\x25\xac\x5a\x78\xd9\xff\x78\x59\x65\x9e\x38\x90\x98\x43\x37\xf7\x4f\xaf\x08\x0e\xac\x45\xcd\x7a\x46\x57\xac\xf6\xca\x85\xfc\x78\xc2\xbd\x65\x0a\xcd\x27\x7d\x26\xe4\x3c\xa9\x31\x74\x43\x9f\x98\x04\x89\x4c\xa6\x50\x39\x21\xd7\x6c\xd1\x0f\x5a\xb6\x18\xba\x45\x63\x26\xf3\xf3\xd6\xc3\x0c\x9e\x73\xfc\x28\x76\x4c\x4e\xb7\xb2\xd5\x8a\x77\x7f\xed\x75\x0d\x3f\x66\x23\xc2\xb9\xd6\xc6\x81\xb9\xca\xf4\xc2\x46\x26\x28\xf0\x89\x26\xdf\xb8\x97\xd2\xf4\x18\xf9\xe2\x54\x8d\x1e\xdf\x3d\x42\xad\xd9\x40\x9b\x9f\xcb\x21\xde\xb0\x53\xc1\xde\x55\xa4\x0b\x90\x31\x41\xd1\x25\xf0\x18\x2e\xc6\x31\x1a\x10\xef\xa7\x25\xc3\xa5\x08\x00\xe7\xfa\x6b\xd9\xd5\x0c\x39\x0e\x8b\x4b\x4c\x01\xfa\x0a\xfb\x8f\x4e\xc7\xeb\xed\xf0\xfe\x1d\x2f\x6a\xa8\x66\x93\x24\x36\x26\xf9\x07\x36\xea\xc9\x9b\x6d\x23\x96\x08\xc2\xfe\x6e\x95\x4c\x47\xab\x65\x5d\x37\xbe\xaf\x30\xf8\x8a\x8c\x2e\x12\xe1\x3d\xbc\x8f\xf6\x53\x28\x30\xc8\xac\xe3\x00\x0b\xe2\xf8\x99\x0d\x22\x5b\x65\x24\x74\x3c\xe8\x01\xfc\xfb\x5c\x5d\x72\x14\x05\x89\xa8\xae\xb1\xc0\x96\x89\x27\xd8\xe4\x64\xfc\x9a\xa7\xdd\xc6\x5f\x32\x48\x4a\x56\x78\xb1\xf7\xc7\x5b\x54\x1b\x91\x4a\x42\xb6\x1f\x38\x4a\x99\x8a\xe2\x0d\x08\xee\x6e\xc2\xc0\xec\xfb\x67\xc4\x14\x08\xf1\xfc\xdf\xb7\x4a\xcb\x25\xb0\xe0\x30\xfe\xa1\xc9\x12\xf8\x1c\xfb\x40\x05\x7a\x62\xc5\xd5\x7d\x46\xcf\x3e\x45\x4d\x9e\xf8\x36\x8c\x1f\x0b\x9f\xd2\x94\x5c\xd5\x5d\x13\x7d\xd2\x96\x71\xb4\x6a\xb7\xc0\xfd\x18\x26\xd4\xd7\x2c\xd4\x86\x96\x41\x80\x38\xd3\xb7\xd4\x97\x3f\xbd\x29\x7b\x04\x5b\x9d\xd5\xff\x8f\xb0\xf7\x0f\xb7\xa2\xaa\xf7\xc7\x9d\xd9\xfb\x9a\x21\xf1\xcb\xc3\x11\x11\x11\x11\x41\x81\x8d\x70\x80\xe3\x81\x0c\xf5\x88\x84\x88\x6c\x52\x54\x24\x33\xd6\x9e\x59\x7b\xcf\x3a\x7b\xf6\xac\xed\x9a\x99\xbd\xcf\x39\x91\x99\x11\x1a\xf1\x41\x23\x34\xe3\x7a\xb9\x66\x66\x5c\x33\x32\x23\x32\xae\x19\x19\x91\x99\x19\x91\x91\x91\x97\xbc\x66\x64\x44\x5e\x32\x22\x22\xce\xf4\x7d\x66\xbd\xd7\xcc\x5a\xb3\x36\x3d\xdf\x7f\xea\x79\x38\x9e\x7d\xf6\xac\x59\xeb\xbd\xde\x3f\x5e\x3f\xa6\x9d\xb2\xdb\xfd\xc0\xcd\x32\xb9\x89\x6b\x46\x8f\xd6\xfa\x98\xcd\xef\x89\xd5\x7b\xb5\x93\x85\x6d\x82\x1b\x42\x69\x34\xfa\xca\x6b\x9a\x72\x29\x6d\x7a\x53\x78\x83\xfa\x1f\x47\xd3\xea\xa6\xc2\x54\x5d\x94\xf6\xb7\x05\xdb\xa1\xee\xf2\x5a\x8f\x77\x0a\xff\x6d\x89\x6a\x54\x65\x3b\xa8\xa6\xbc\xbf\x33\xe6\xa9\x7e\x1d\x4d\xb5\xc6\xcf\xcf\x9b\xa6\xbb\x04\x26\xb3\xf1\x37\x3a\xe4\x9e\x2b\xa5\x73\x8a\xf9\x4f\x28\x20\x22\x1c\xef\x61\x30\x7a\xdf\x3c\x5a\x69\x6f\xba\x24\x20\xa8\xe0\xd7\x51\x13\x84\xb3\x8c\x4f\x69\xa6\xb1\x94\xab\x93\xf3\x09\xc9\x8f\xc7\xa6\xcf\x19\x38\x8a\x38\xf9\x62\x25\x5f\xb4\x11\x4f\x17\x2b\xc9\x06\x40\x52\x3f\xcc\x57\x7b\x78\x06\xee\xd4\x25\xae\x02\xc8\x33\x60\xb5\xbf\x0b\x15\x54\x61\x29\xf2\x02\xa7\xe6\xd1\x3a\xf2\x95\xcc\xe7\xfb\x5b\x85\xda\x45\xe8\xd6\x13\xf2\xc4\xc9\x33\xb4\xd0\x85\xca\x09\x74\x66\xdc\x2a\x69\xcd\xec\xf3\xf6\xde\x5b\xab\x64\x04\x2a\x91\x20\xc0\xcc\xed\x03\x0f\xdc\x36\x1d\x5f\x59\x46\x24\xfe\x61\x32\xb0\xf8\x44\x0f\x18\x3f\xdc\x80\x5b\x95\x27\x73\x17\x2d\xd1\x8b\xb8\x38\x2b\x2d\x87\x20\xd8\x94\x5f\xb7\x51\x21\x1f\x38\x18\xbb\x96\x83\x84\x69\xe0\x92\x0d\x5a\x47\x03\xb9\x55\xa1\x89\x19\x3f\xdc\xaf\x5e\x84\x8c\xe0\x5a\xd7\x25\x1e\x25\x09\x35\x34\xb7\xf1\x76\xbd\xdd\x40\x83\x29\xac\xc4\x69\x77\x3b\xf6\x83\x10\x56\x37\xd7\x1f\x6a\xf9\xae\x3f\x99\xab\xe9\xc0\x12\x8f\x48\x20\xbb\xf1\x7f\x9b\x13\x02\xb5\x4d\x1a\xc4\x0e\x91\xcb\xbf\xe7\xba\x1d\x43\x94\x19\x05\x38\x6c\x48\x39\x00\x41\xd5\x57\xae\x3d\xee\x98\x95\xc6\xf7\x97\xe6\x2a\x31\xc7\xa1\x70\xeb\x7e\xe5\x11\x19\x51\x51\x19\x79\xc8\x07\xf3\x70\xb1\xbb\x1e\xed\xcc\xce\xa3\x9b\x18\x71\xf9\x17\xf0\x1f\x4e\xd2\xd6\x77\x8e\xcb\x0c\x93\x85\x84\xb7\x47\x57\xdf\x90\x26\xce\xb6\xfa\x89\x3f\x5d\x91\xc2\x5c\x61\xdc\xac\xd0\x80\xef\xd2\x51\x30\xac\x12\x67\xbe\xb0\x8f\x7e\xb4\xbe\x4d\xbb\x74\x40\xc3\x32\xef\xb0\x91\x4a\xaf\x85\xd2\x6a\x62\x61\x98\xfb\x7f\x4f\x67\x7f\xa5\x33\x71\x57\x1a\x3d\x0c\xe2\x7e\x57\x87\x20\x92\x0c\xe4\xe6\xb5\x6b\x4c\x12\xa9\x0e\xfe\x75\x0d\x7f\x8d\xc4\x00\x9d\x27\xa3\xd7\xad\x6b\xcb\x60\xc0\x18\x2d\x43\x71\xfe\xd4\x44\x15\xca\x82\x02\x27\x3e\xc5\xff\xa7\xc1\x0f\xb9\x9b\x93\xaf\x1a\xc8\x99\x1b\xa5\xeb\x7f\x1d\xb5\x78\x00\x7e\xf6\xd1\x76\x89\x9d\x2a\x65\x58\xd4\x3f\x58\x70\xb6\x92\xe7\xd7\xa9\x2f\x23\x81\xf1\xfa\xcd\xa7\x98\x33\x60\x3f\x48\xf4\x85\x7e\xfe\xa6\xbc\xfb\xb9\x22\x00\x6f\x34\x47\xb7\x8e\x50\xd4\x60\x31\x9f\x6b\x98\xfa\xf4\x04\x95\xcb\xc4\x25\x7c\x68\xc8\x03\x79\xd0\x9b\xbe\x78\x96\x91\x48\x5a\x7d\x4c\x72\x3a\x2f\xbb\x2c\x6d\x8c\x28\x01\xf8\x13\x7b\xae\xe4\x1a\x43\x69\x2f\xf2\xf2\x72\xe8\xf1\xc5\x1e\xc7\xff\x7d\x1c\x0a\xc6\x4d\xef\xed\x2a\xd9\x78\xba\x3d\x6b\xde\x14\xfe\x6c\x7a\xb7\x6b\xde\x60\xa1\xe2\xed\xa0\xa6\xd2\xeb\xea\x6d\x31\x70\x01\x9d\xc3\xb4\x0b\x65\xfc\x65\xa7\xdc\x46\xb8\x56\xc2\xfd\xfd\xa2\x12\xc9\xbd\x77\x45\xfa\x44\xb5\x49\xca\x15\x63\x7e\x47\xeb\x84\xba\x34\x24\x3e\x27\x59\xf3\xf8\x70\xf6\xc5\xd9\xfd\x1c\x90\x38\xf7\x48\xc0\x01\xcf\xee\xd1\xb4\x75\xf8\xeb\x10\x81\xae\xe3\x72\xbd\x5e\xc0\x36\xb7\xb4\x4c\x62\xd2\x7b\x0f\xc2\x0e\xf6\x42\x26\x58\x83\xb9\x8b\x56\x0b\xda\xaa\x03\x68\x86\xe8\x9a\xc3\xd9\x67\x6e\x50\xb7\xea\x37\x51\x25\x29\xa4\x07\xf2\xa7\x69\x0e\xe6\x01\xad\x4b\xb1\x15\xf3\x4f\x87\xda\x14\x6d\x8b\x8a\x93\x5c\x6e\xb9\xd1\xe3\x5b\x54\xac\x71\xbf\x9c\x4b\x5f\x31\x01\xbe\xdb\xf5\xb2\x17\xfe\xec\x02\xc1\x60\x21\xc8\xb7\xa0\xa3\xfe\x82\x32\x85\x44\x5e\x90\xe8\xad\x1b\x95\xb9\xd9\x79\x63\x89\xfa\x55\x87\xd6\xec\x7e\x87\xf4\xe1\x8c\x0a\xc2\x13\x5a\xae\x38\x63\xfa\xf4\xf8\x34\x73\x81\x8a\xe8\xeb\xb3\xb2\x6d\x1a\x7b\x52\xc8\x4a\xc8\x23\x7e\x4d\x28\x7e\x65\x03\xf2\x97\x47\x29\x22\x73\xa8\x97\x07\x96\xa0\x21\x6f\x76\x52\xab\x0b\xb9\xce\xff\xb7\x50\x55\x2c\x8e\x7f\xca\x5d\x8e\xcd\x5b\xb5\xcb\xab\x8e\x59\x5c\x6e\xca\x65\xf1\x2e\xd7\x98\xc9\xdc\x93\xc9\x05\x5b\x2f\x71\x63\xaf\x9a\xab\xb8\x57\xba\x38\xb5\x87\x37\xff\xe3\xe1\x76\x35\xf4\x63\x07\x25\x72\x77\xb9\x7d\x9a\x11\x0f\xaa\x60\x6d\xa1\xbe\x32\xf7\x7c\xa5\x1c\x64\x3c\x2f\xd6\x71\xa2\x3f\xd9\x27\x2f\xe5\x1e\x4a\x52\xf9\xcc\xdc\x43\x27\xce\xd6\x2f\xc7\x38\x5a\x4d\x2d\x14\xa3\xf7\x6e\x93\x11\xa7\x73\xfa\x8c\x0c\x57\xe2\xb0\xa6\x66\xe6\x12\xaf\x2a\x26\x93\x4b\x1e\x69\x11\x33\xe3\xfa\xdf\x40\xfc\x30\x46\xee\x92\x9e\x8a\x33\xf8\x8b\x98\xf9\x4c\x5a\xe1\x34\x69\x0a\x0e\xbe\x73\x33\x54\xda\x15\x5a\x28\xe1\xa0\x89\xb9\xc7\x64\x6e\xe0\x24\xfc\xeb\x7c\x65\x3a\x3b\x90\x5b\xf1\x96\xee\x28\x55\xe3\x16\x89\x89\xa4\xf7\x57\x16\x9d\xa5\x2c\xaf\x57\x65\x21\xaf\x7d\xcc\x47\x3c\xbd\xaf\x61\x8b\x5a\xc0\x98\xba\x47\xb1\x53\x65\xb4\x81\x3d\x81\x19\xc8\x1d\xdc\x93\x46\xf0\x32\x69\x61\x7f\x98\x7f\x58\x09\x4d\xd1\x2a\xff\xc6\xd1\x86\x72\x56\x47\xb0\x50\x00\x58\xe5\x6b\x8a\x54\x0f\xa3\x2e\xd8\x74\x14\xc7\xcb\x6d\x8a\x3c\xf0\x6f\xfa\x86\xa6\x17\xc2\x0b\x13\x8d\xeb\xd7\x7e\x34\x5d\xc1\x2a\x4d\x94\x4e\x73\x7f\xbc\x38\xfb\x74\x55\x8f\x96\x44\x9f\x69\xe5\x84\x76\xa5\xbd\xea\x29\x5a\x2c\xe6\x1d\x87\xce\x6a\x26\x4d\x19\x62\x63\x26\x6c\xe1\x8d\x37\xfb\x35\x49\x47\x87\xb8\x36\xc3\x9e\xd0\xfa\xcf\x00\xe6\x8e\xea\x97\x6d\x39\x70\x84\xd8\xe5\x37\x3a\x05\xae\x9f\x70\x3c\xd1\x23\xcf\xa8\x26\x73\x16\xe2\x43\x53\xf9\x60\xfd\xd3\xe4\x2a\x39\xdc\x4d\xa5\x38\x60\xb0\x8d\xa7\xf2\x56\xe0\xb7\xeb\xd9\x8a\x65\x33\x2f\xed\x00\xe7\x3c\x4f\xf3\x7d\xa7\xe5\xb2\xd0\x16\x1d\x30\x77\x8f\x92\x17\x79\x5c\xda\x71\x7e\xf4\xaa\x5d\xba\x60\x63\x80\xfc\x80\xd1\xba\x43\x2c\xc1\x23\x78\xf9\x70\x9b\x84\x97\xaa\x2c\xd3\x52\xb7\x46\xd2\x0b\x1a\xfc\xd9\xa3\x7a\x77\x8b\xdd\x05\xab\xf5\x89\x91\x92\xf7\xb6\x56\x1d\x86\x9e\xd0\x2a\xca\xaf\xd4\xba\x4b\x71\x8e\xe6\xf9\xa9\x08\x55\xb4\x44\xd3\xe3\x0d\x18\x46\x41\x8a\x50\x1d\x35\x5d\x86\x96\x0a\x43\xbe\x5f\x60\x94\x02\x97\x73\xe3\x31\xc8\xb7\xaf\xf2\x5d\x54\x75\xb8\x6c\xb9\x7c\x8c\x7f\xf4\x6a\x50\xbd\x78\xff\x27\x77\xc7\xfe\x36\xed\x87\x0c\xd5\x50\x32\x3c\xbb\x67\x53\x2b\xa3\x4c\x24\xce\xe6\x4f\x17\x66\x17\xb6\x86\x2a\x5e\xe8\xab\xba\x4d\xf9\x29\x27\xb2\x8f\x2b\x3d\x43\x44\x36\x73\xd3\x12\x5d\xb6\x98\x4f\x39\x12\x75\x82\xbf\x94\xdb\x54\x4d\x92\x00\x25\x5e\xd1\xcd\x84\x27\x87\x82\x80\xd2\x38\xc0\x09\x3c\xa5\xef\x50\xd8\x28\xc6\x17\xa7\x0e\x15\x99\xb9\xb4\x46\x59\xdf\x32\xa8\xe0\x94\x57\x31\x9c\x7d\xd7\x20\x25\x2d\x6b\x60\xd6\x74\xb0\x9b\x8c\x44\x3f\x95\x87\xcf\xaf\xa3\x1e\x04\x52\x66\x1d\x67\x40\xd5\x7a\x3d\x25\xbc\x9a\xe5\x21\x78\xd1\xfd\x72\x5a\xee\xd2\x52\xa9\x8f\xf8\xad\x76\x98\xef\xee\x50\x94\x59\xea\xd8\xb3\x40\xff\x63\xef\x3a\x59\xd4\x62\x0f\xb3\x0a\x05\xc8\x1c\xe7\x95\xee\x56\x54\x54\x2d\x1a\x28\x92\xb4\xd1\xff\x29\x6e\x5e\x0c\x57\x30\x68\xf3\xe5\x67\x2b\x6e\x6a\xbe\xc3\xf1\x54\x23\x4f\xc2\x81\x45\x0c\xa3\x42\x31\x3a\xfd\x41\x9d\xe9\xce\x7d\x1b\x6a\x7c\x85\x2f\x0a\x84\x75\x02\xb5\xb8\xb0\x17\x07\x52\xa8\xfa\xd7\xc8\xaa\xba\xa1\x0f\xe4\x7a\xf3\x4b\xbb\xc4\xc0\x20\xd3\xa6\x6a\xa4\xd1\xb5\x0f\xb5\xaa\xc5\x56\x35\xbd\x9e\x26\xc6\x55\xec\x89\xdc\xf4\x7b\x89\x53\x3d\x45\x96\xc3\xdf\xe7\x18\xc5\x31\x8a\x2f\x81\xaa\xee\x7d\x48\x5e\x0a\x0d\xec\x10\x0b\x3a\x28\xb9\x35\xaf\xe9\xc9\xb4\x1d\xfa\x01\x23\x42\x1a\x38\x7f\xe1\x11\x58\x90\x1b\x28\xf8\x6e\xae\x7f\x1e\x52\xd2\xc5\x48\x6d\x50\xe4\x0b\x07\x44\x0b\x1e\x4c\xdc\x84\xbb\xb6\xf9\xc9\xee\xec\xa7\xd7\x11\x43\x36\xed\xc5\xc9\xe1\x39\x73\x89\xbc\x02\xca\x2e\x6e\x16\x8a\x51\xaf\x6a\xfc\x56\x67\x48\x20\xb9\xf3\xee\x1b\x0a\xd2\x00\xf5\x83\x32\xcb\xc7\xdd\x6c\x98\x06\x70\x84\x60\xf0\x69\x1d\xe2\xdd\xda\xf0\x08\x4d\x42\xa9\x5e\xbe\x31\x78\x5a\xbb\x9e\xa3\x0a\x3f\xca\xdf\x1f\x18\xa7\xb4\xe1\x2c\x17\xb1\xd6\xf6\xb3\xf9\xc7\xc7\x15\xc5\x41\x2e\x0d\x97\xe6\x2b\x17\x9e\xd4\x41\xc0\x5e\x90\x78\xce\xe4\x9e\xdb\xac\xa9\x01\x61\x0f\xd9\x48\x63\x20\x5e\x7f\x44\x45\xf3\x39\x71\xec\xe1\xd8\x9c\xf9\x23\x94\x2f\xe6\x83\xc5\xe7\x80\xb1\xe8\x71\xcd\xe7\x10\x33\x0b\xdb\xd3\x00\x5b\xfb\xc6\x43\xad\xaa\x2e\x16\x49\xe5\x7c\x9e\x02\xb8\x69\x61\x29\xb2\xd9\x29\xa6\xa5\x3f\xd5\x7a\xba\xb5\xf8\x2a\x02\x6c\xd7\xa4\x61\x8a\x56\x64\x7c\xfc\xf5\x9c\xd4\x3f\x4d\x07\x4c\x04\x8c\xe0\x84\x59\x6b\x8e\xf5\x94\x87\x61\x18\x81\xcd\x51\xee\x13\x36\x24\x40\xc2\x84\x52\x58\xbc\xcf\xd8\xab\x29\xdf\x3a\x09\x7e\x5f\xde\xa5\xcb\x37\x65\x31\x09\xc8\x2d\xd8\x61\x13\x11\x17\xe9\xb0\xb5\xcb\x8f\xc0\x39\xea\xc6\x7d\x94\xdb\xc4\x6e\x3f\x30\x52\xdf\xb4\x01\xa4\x31\x5d\x2b\xb4\x89\x77\x58\x72\x89\x45\xfa\x71\x0a\x31\xbd\xef\x72\x79\xbf\x72\x2c\x56\x1c\x14\x1e\xd2\x0c\x70\x2b\x0c\x63\x3b\xb9\x0a\xcf\xe8\x48\x3b\xe7\x0d\x12\xff\xd7\x33\x4c\x5d\x94\xb8\x8e\x59\x01\xc0\x18\xd1\x5f\xc6\xe9\x2a\xc2\x1e\x58\x84\x17\xa3\x8f\xee\x96\x49\xaf\x43\x6b\xb8\x10\x80\x21\xae\xf1\xb3\x37\xb5\x0c\x82\x32\xa1\xf0\x39\x64\xb5\xe2\xa2\x9e\x9a\x0d\x51\x2e\x06\x32\xf6\x71\x41\x80\xca\x92\xd0\x87\xc8\x3f\x42\xbc\x7e\x54\x43\x35\x2e\xb5\x90\xbb\x5f\xd4\x49\x37\xe0\x4a\xe8\xf2\x76\x8e\x39\x53\x78\xd5\x52\x56\x41\x9e\x80\x3e\x46\xff\xd8\x3a\x26\x29\x88\x4f\x5d\xf2\x9e\xd1\xae\xf6\x98\x13\xbd\xaa\x42\x31\xba\xf6\xf6\xec\x63\xd8\x34\x99\xa1\x1e\x3c\x08\xc3\x9b\xf9\xa4\x42\x40\x8e\x2d\x7b\x3a\x5f\x3f\xaa\xff\x26\x15\x62\xf6\xb9\xb9\x37\xe8\x59\x0a\xa3\x89\x41\x7e\x3e\x77\x22\xbb\x11\x4a\x24\xc9\x08\x56\x49\x6f\xe9\x80\xa4\x57\xdb\xd5\x4b\xb2\x7f\xc7\xc5\xc8\x77\xf8\xce\xc9\xf7\x39\x10\x1f\xe5\xfc\x94\xa7\x63\xe4\x69\xc5\x65\x96\x0b\x59\x7d\x67\xb4\xd6\xa4\xa2\x3d\x16\xc1\x96\xa3\x91\x26\x96\xb6\xe9\xbe\xaf\x60\x84\x02\x8c\xc0\x6f\x34\x84\xc1\x67\x9c\x1b\xc5\xff\x50\xec\x55\xa5\x5c\x13\x2f\x41\x79\x41\xbe\xb0\x61\x88\x58\xf1\x06\x09\x00\x41\xf1\xf9\x57\x21\x33\xb6\xe3\x2a\xb3\x56\x4a\x48\x4d\xdb\xc6\x67\x23\x7a\xc8\x2a\x5c\x2a\x51\x0c\xcc\x0d\xf7\xf0\x70\xf9\x44\x76\xd2\xb2\x79\x4a\xd3\xa6\xe3\x3c\xf3\x82\xe5\x22\x3f\x91\x62\x31\xae\x79\x4c\x7b\x13\x1c\xf3\x2f\xfa\x0b\x5f\xcc\x0f\x53\xe2\x2b\x18\xc0\x8e\x8a\x54\x95\x6a\xca\x88\xc8\x6a\xbe\xd2\xa6\x48\x81\x84\x3e\x70\x5f\xcc\xee\x67\x75\x21\x4b\x6e\xd7\x9f\xc0\xc7\x73\xdf\x78\x53\xd5\x38\xae\x25\x15\x69\x74\xcd\xed\xda\x00\x9c\x96\x4a\x44\x81\xb8\x7c\x9b\xa9\xc8\xd4\x0e\xf0\xcd\x9f\xbf\x5c\x71\xe7\x09\xa8\x55\xad\x83\xe1\x4e\x7e\xc4\x9b\x0a\xcd\x96\x04\xbc\x6b\xc8\x42\x68\x34\xb4\x65\x37\xdb\xcc\xd9\x89\xfa\xdf\x0f\xc6\xa4\x11\x62\xfa\x34\x3e\x2f\xf9\xc9\x8b\x7a\x18\x47\xbd\x52\x3e\xce\xec\x5f\xa6\xc7\xda\x78\x2d\x05\x05\x2f\xaa\x3d\x2c\xa7\xee\x24\xbe\xe1\xf6\xbe\x2d\x09\x1c\x2e\xb2\x1c\x12\xfa\x48\x19\x24\x5e\x37\x4c\xd1\xf2\xa0\xd0\xfd\x17\x55\xeb\x59\xcb\x14\xa9\x49\x16\x5a\x60\xe9\x73\xee\xb8\xb4\x2b\x0a\xc6\x1c\x12\xce\xc4\x34\x55\x89\x20\x64\x9e\x60\x12\x8f\x2d\xc9\x3f\x03\x6a\xe7\x16\x85\xa0\x93\xff\x84\x02\x58\x0c\x1c\xe4\x11\x55\x4d\xf3\xfb\x6f\x65\x2f\x83\x3e\x54\x42\xc0\x1d\x94\x9a\x03\xd1\xab\xe3\x14\x75\x18\x46\x70\xc1\x42\x8c\x1b\x5e\x2a\xa5\xe0\x81\x07\x95\x97\xc6\xe9\x1c\xb0\x03\x16\x1e\xd5\xe2\x71\xc0\xeb\x36\x01\xc5\x33\x4e\x2a\x18\x6f\x44\xdc\x02\x65\x36\x24\xab\x9f\xd6\xc4\x0d\xfd\xb0\xe4\x07\x88\xf3\xb4\x84\x99\xd9\x87\xfb\x55\x87\xe4\x1a\xe1\x08\x24\x73\xef\xab\x67\xa9\x59\xa9\x57\x71\x10\x89\x3f\xaf\x7b\xcc\x7b\x92\x07\x00\xc9\x5a\x93\x1c\xd0\x4d\x2a\x2d\x86\x91\x0f\x2c\x14\x76\x5c\x23\x97\x04\xc8\x25\x60\xce\x06\x85\xd4\xe3\x9b\xd2\x7d\x60\x21\x5e\x27\x37\x47\x8f\x50\x5e\xa7\x9c\x22\x76\xa6\xb5\x5f\x35\x43\x43\x3b\x43\x23\xda\xc4\xe9\xb8\x70\x60\x35\x3e\xbf\x69\xac\x3a\xa7\x8c\x97\x52\x47\x13\xb5\xef\x3e\x57\xfb\xf5\x38\x30\x51\x26\x3a\xd5\x17\xad\x1f\xad\x70\xef\x50\xad\x86\x02\xd5\x27\xe5\x95\x77\x24\xff\xb5\xa6\xec\xd7\xdc\xc7\x5f\x9d\xa8\x25\x5c\x01\x22\xae\x7f\x2a\xed\x8a\xcf\xbd\x2e\x77\x3e\xf5\x4b\x94\x65\x25\x32\x5e\x7b\x55\x5e\x8f\x35\xd4\x43\x54\x17\xce\x55\x4b\xb4\x38\xe8\x09\xb3\x7f\x91\xd9\xce\x1d\x94\x6d\xd9\x35\x11\x87\xf8\x07\xd4\x3b\xe5\x30\xd1\xbe\x52\x58\x30\x22\x16\x70\x32\x6d\xfc\x19\xbd\xe6\x44\x85\x25\xe0\xd9\x08\x44\xaf\x4e\x51\x30\xe5\x2f\x5f\x95\xbd\x36\xfa\x43\xcb\xa1\x4d\x62\xf5\x67\x15\x03\xa2\xf1\x8a\x24\x0d\x66\x94\xdb\xd8\xc5\x7f\xea\xca\xe7\x64\x73\x9c\x51\x5a\x2e\x14\xa3\x1f\x5c\x99\xee\x0f\x52\x89\x73\x8f\x27\xc7\x0c\x4b\xae\x65\x22\x5c\x75\xa2\x60\xd7\x39\xca\x9c\x1d\x11\x3f\x43\x35\x1a\xba\x68\xbc\xa2\x3e\xe0\x92\x32\x65\x1e\x69\xcd\x0d\xef\xed\x92\x31\x34\x5e\x00\xde\xc5\x18\xac\x28\x80\xc4\x09\x53\xfc\x0d\xd8\x72\x79\x34\x4a\xb4\x37\xf1\x1c\x7e\x19\xec\x61\x0b\xd7\x63\x76\x2a\xf3\x0b\xb3\xb1\x53\xbe\xc7\x52\x18\x64\x00\x96\x37\x6d\xcc\x1e\x13\x07\x31\x8b\x86\x4c\x11\x79\xda\x76\x00\xfa\x06\xb7\x4a\x84\x87\xdc\x6c\xfb\x5f\xcf\x22\x71\x39\xd8\xc3\xa6\xbd\xa7\x04\x6d\x45\x8a\xee\x4f\x1f\x0d\xf9\x44\x23\x59\xaa\x6f\x6b\x62\xee\xd4\x25\x0d\x41\xe2\x90\x07\xee\x9e\xed\x10\x02\xe2\x7c\x17\x2e\xbb\xff\x5b\x21\x57\xa9\x4a\x99\xcd\x8b\xd8\xa9\xfb\x47\x69\x7b\x93\x6b\xb7\xc1\x8c\xe7\xd7\xaf\xc8\xdf\x98\x31\x67\x4e\x27\xff\x98\x19\xbd\xed\x4a\x5a\x17\x60\xd6\xc0\xc2\x0b\x30\x37\x6c\x72\xbb\xda\x1a\xac\xa3\x4a\x62\xe9\x64\x8e\xd5\xc7\xdc\xa8\x82\xfa\x09\x08\x27\x15\x07\x72\xab\x59\x2a\xc2\xcf\xf9\x35\xbc\x4d\xf7\xfb\x2e\xd5\x66\xd2\x0b\x41\x0f\x6d\xe4\x7e\x8d\x74\x8a\x58\x89\xd6\x4a\xa2\x4a\x3a\x7a\x25\xf0\x0d\xae\x72\x71\x2f\xf2\xec\x4c\xe1\x39\xfc\xb0\x8c\xda\x01\x0d\x2d\x27\x49\x39\x1a\xbd\xc3\x95\xe9\x3f\x6a\x42\xc8\xbc\x50\x97\x80\x9e\x0e\x79\x75\xaf\x22\x42\x55\x21\xc8\x4b\x89\xb8\xdb\x1f\xd7\xa2\x3f\xf7\xa7\x13\xcd\xdf\x5f\x4e\x68\xc9\x1e\xe3\x92\x08\x08\x9e\x47\xf5\x00\xc1\x30\x70\xad\xe1\xbe\x7b\x97\x26\xd8\x0d\x97\xb4\xb8\x19\x7a\x5e\x3e\x5b\x95\xe3\xa8\xf3\xe0\xcd\x6b\xde\xe8\x81\xe3\x8a\xa7\x2d\xa3\x77\x84\x94\xf0\x14\x29\x54\xea\x66\x46\x2a\x94\x01\x6c\xd5\x18\xaf\xbd\xa4\x38\x9f\xe7\x36\x1d\xb0\x1d\xec\xce\x56\x35\xce\x14\x42\x6a\xdc\x36\x4c\x77\xc5\xb4\x70\x3d\x45\xe3\xe5\x82\xbd\x52\xbf\x3d\x2e\x5d\xee\x3e\x43\xd1\x02\x72\x00\x1a\x64\x84\x83\xe5\xad\xd2\x24\x41\xe2\xdd\x73\xed\x66\xdd\x0f\x99\x82\xe9\x73\x32\x16\x32\xf7\xbc\xa3\xd4\x1a\x44\x39\x06\xb7\xae\xd4\x51\x1f\x6e\x5d\xfe\xda\xa3\xcf\x48\x2a\x05\x6a\xb4\xc4\xfc\xb7\xef\x1d\xae\xe6\x66\x2e\x0f\x2c\x0f\xb4\x8d\xd6\xa2\x40\xbd\xce\x2d\x92\xa1\x81\xfc\x9f\xeb\x75\x9b\x6f\x1a\x82\x80\x58\xfc\xd4\xcf\x1c\x54\x81\x3a\xc0\x29\x89\x3e\xd0\xae\x64\x13\x85\x99\xd3\xa7\x27\x45\xc2\x72\x5d\x04\x92\x22\x96\xfc\xa1\xdc\x9f\xdf\xd1\x8d\x37\x33\x3a\xc7\xc6\x2c\xc9\x1e\xb0\x68\x2a\x44\x7a\xa9\x39\x4c\x05\x0c\x72\x51\x5d\xc3\x37\x15\x29\x0e\xe4\x07\x60\x11\xfe\xa3\xe5\x67\x29\x59\x56\x0d\x79\x02\xac\x41\x8f\xc8\x8b\xa1\x49\xe3\xf4\xab\xcc\xeb\x3a\xe3\x2b\x9d\xf2\xed\x95\x43\x9c\xb8\x11\x7c\xea\x86\xc4\x36\xb4\x8c\x13\x47\x3c\x93\xcd\x03\x7d\xa6\xf9\x7c\x28\xf6\xee\x07\x95\x00\x2e\xd4\x80\x8d\x9b\x67\x29\x56\x27\xa8\x21\xd4\x7b\x7f\xfd\x44\x76\x7d\x2b\x8c\x36\x41\xa5\x91\xe7\xd8\x67\x6b\x02\x80\x0e\x09\x5c\x30\xf1\x57\xf4\xb7\x6e\x53\xbc\x52\x31\xab\x60\x4e\xce\x8e\xbe\x7d\x0c\xaa\x18\x86\x2d\xea\x8a\x19\x14\x17\x5d\x9a\x28\x1f\x2b\xac\x72\xfd\xcf\x38\xd5\x9b\xac\xf9\x1b\xf2\xde\x09\xf6\x71\xd2\x8c\xfd\x96\xa9\xd6\x21\x8c\xd7\xeb\xdd\xc2\x4a\xb6\x96\x48\x73\x18\x74\xbe\xde\xdd\x26\x30\x61\x8f\xee\x99\xa8\x29\xd8\x52\x0a\xdd\xf2\x93\x83\x64\x61\x30\x4b\x02\xed\xf9\x5c\xf3\x55\x28\x1d\x69\x18\x78\x61\x5c\x88\xc1\x1b\xbb\xea\xf9\x33\xc5\x5b\x24\xf1\x83\x36\x1e\xd7\x79\x07\xfc\xa4\xe1\x64\x11\x8d\x15\x2c\x9b\x90\x78\xb8\xe9\x5b\x4e\xbc\x01\xdc\x29\x56\x6b\x47\x6b\xf7\xed\xf0\xf1\xb8\x17\x9a\x08\x3f\x7c\x4b\xd3\x28\x17\x83\x25\x4b\xf4\x31\x72\xd7\x3f\x26\xf1\x39\x7d\xaa\x52\xe9\x08\x45\xb4\xd9\x27\x6e\x03\xb3\x26\xa8\x60\xe6\x47\xdb\x5a\x02\x88\x3d\x1c\x87\xad\xc4\x80\xe9\x53\x7b\x95\x7c\x14\x88\x70\xf1\x5f\x3a\x94\xd7\xc8\x82\x29\x29\x1a\xda\x01\xb7\xbd\xa4\x4f\x10\xa0\x79\x94\x9a\x08\x1f\x56\x06\x64\x4d\x8a\xcb\x21\x97\x86\x8a\xfe\x72\x77\x5a\xba\xf6\xf3\x2c\x05\x80\x67\xbb\x47\xe9\x01\x12\xfb\x49\xf5\xf7\x75\x55\x17\x05\x63\xe0\xe8\x3d\xbc\x4a\x41\x90\x60\x02\xd3\x87\x89\xa6\x7c\x96\x2a\x62\xd8\x25\xa8\x50\x8c\xbe\xe7\xa6\xf5\x3f\x74\x04\x8c\xdd\xf7\x2b\xae\x96\x40\x2e\x89\x77\xe6\x8f\xf6\x6a\xfa\x98\x14\xd9\x09\xa7\xdd\xbb\x2b\x15\x9c\xae\x81\xe0\xf4\x0e\xa9\x0d\x0f\xd6\xcb\x77\x77\xc9\xed\x45\xcb\xaa\x6c\xf0\xa5\xaf\x65\xf3\x0e\x97\x78\x36\xd6\xd5\x35\x7f\xf6\x8c\x60\x5a\x06\x84\x31\x11\x01\xce\x5d\xa8\xc5\x44\xe2\xba\x60\x14\xca\xab\x9f\xdc\x2b\x69\x14\x0e\x18\x6d\x69\x25\xfe\xe4\x0c\xe8\x0d\xdd\x88\xb9\xc4\x1e\xd7\xee\x89\x96\xad\x18\xaf\x5f\x09\x5c\x53\x2b\xdb\xb0\x33\x5e\x7a\x4c\x74\x37\x44\x6b\x38\xb7\xaa\xa4\xd3\x12\xf8\x55\x0a\x3d\xae\xaf\xbf\x05\x00\xfb\x99\xd3\x39\x29\xe8\x67\xf7\x02\x47\x7d\xe9\xe2\x9b\x96\x5c\x77\xcd\xb2\x65\x4a\xa1\xfb\x21\x6d\xdf\x04\x71\xd2\x89\x2a\x38\x29\x48\x0e\x3f\x73\x91\x76\x82\xf8\xc0\xbc\xc5\x47\x63\x20\x3f\x59\x58\xf0\x7b\x18\x4a\xe2\xfc\xcd\xc7\xb3\xe7\x7e\xfc\x94\x25\x20\x24\x72\x8e\xe2\x4b\xc6\x5d\x84\xe2\x88\xf2\xfa\x36\x7d\xdc\x5c\xc5\x53\x7a\x7a\xe2\x1f\xfd\x76\xfa\x50\x65\x1b\xc1\x98\xe5\x4e\x65\x3b\x5b\x98\x87\xa1\x78\x35\x1f\x58\x91\xfd\x94\x19\x73\xe6\xcc\x48\x78\xee\x7b\xb7\x9e\xda\x16\x32\xc1\xbc\x9a\x63\xd2\x7d\x59\xe7\x73\xa1\x27\x4f\x64\xdf\xb6\xb0\x7a\x10\x63\xb7\xdc\x99\x47\x34\x51\x1b\x01\x75\x49\xb6\xe8\x77\xeb\x12\x99\x85\xb9\x72\xb4\xef\x88\x0e\x14\xbf\x14\xff\xe3\x49\x5d\x83\x9b\xcb\x29\xa4\xed\xf9\xee\xc7\xe4\x63\x73\x48\x4f\x31\xa2\x57\xaa\xb7\x6e\x02\x49\x1a\xac\x77\x3e\x20\xe5\x12\xd3\xc1\xf9\xcf\x64\x73\x0e\x60\x93\x27\x35\x31\xe7\x93\x4f\x84\x46\x58\x8d\x86\x8c\x5f\x8d\xd1\x2f\x5f\x54\xc0\x8f\x21\xf3\x29\x5c\xa4\xfb\x5e\xbb\x48\xcb\x58\x7d\x7c\x4a\xd2\x4c\xee\xe6\x05\x69\xa1\xea\xab\x02\xbd\xe6\xd5\xcf\xcb\x6c\x89\xeb\x8d\xc6\x4f\x9a\x57\xa8\xfb\xd8\x16\xca\xa6\x03\xb9\xe1\x97\xcb\x01\x3d\xf1\xfd\x90\x0b\x8d\xf3\xf8\x34\x64\xab\x5c\x1a\x2b\x04\xc5\xdc\xc3\xdb\x47\x28\x38\x2e\x56\xa6\x2e\x07\x69\x6f\x7b\x54\x03\x36\x3a\xc8\x06\xee\x8e\xf9\xb5\x71\x72\x35\xab\xc4\xb3\xc1\xac\x60\xdd\x36\xdd\x9a\x1c\x33\x61\xb6\x1c\xdc\x2d\x9c\x4f\x8b\xd7\x5f\xbb\xe4\xfd\xc5\x14\xf0\xd2\x29\x01\x92\xdc\xc1\xc7\x58\x23\x0b\x44\xe4\xf7\xd5\x6a\x38\x60\xa9\x3f\x43\xfe\x96\xbb\xcf\x6f\xb9\x55\x0a\x8c\x96\x4a\x0a\x8d\x29\xda\x9b\x11\x5e\x58\x7a\xc3\xd2\x29\xc5\xe4\x75\x9d\xa9\x88\x6c\xb1\xda\xcc\x69\xb3\xa7\x73\x5d\x8d\xdd\x0a\x1c\xa7\x86\x5c\x37\x59\xab\xa7\x15\x2e\x78\x8d\x06\x94\x59\x7d\x56\x5c\x4e\xf3\xbf\xf3\xe5\x87\x80\xd8\xbf\x28\xb4\x09\x97\x14\x4f\x2e\xb0\x8b\xc6\xc8\x15\xb6\x43\x1b\x52\x9d\x7d\x2d\x5a\xa1\x35\xb0\x06\x16\xc1\xa2\xef\x7e\xa5\x9f\x18\xd6\x5d\x5e\x31\xc7\x7f\xa6\xb4\x15\xd2\x05\x4e\xd2\xe7\x9f\xf5\xcd\x4d\xba\x74\xa8\x4b\x52\xb3\x4f\x73\xc7\x61\x31\xc7\x65\xd8\xe3\x7f\xdb\xf8\xde\x41\x88\x9d\xc5\x20\x40\xcd\xb4\xf9\x3c\x7e\x83\x2c\x72\x1b\x84\x55\x88\x97\x34\xa6\xa3\x01\x4d\xcb\x1f\x59\x56\xe8\x27\xea\x8f\xd1\xcc\xe3\x02\x37\x4e\xbd\x04\xf0\xbb\xe4\x6e\x55\xcd\xdd\xa3\x35\xc4\xfa\x30\x17\xf6\x3c\xed\x65\xad\x9a\x68\x62\xd7\xc5\x36\x40\xef\xa2\xdd\xfd\xd2\x0b\x92\x2b\x72\x9a\x83\x7b\x24\xdc\x2c\x83\x75\xe8\x92\x84\x81\x32\x9f\xfb\xbd\x6b\x93\x7c\x37\x9c\x22\xe3\x42\xbf\x87\x2f\xc2\x94\x9b\xb5\x89\x4f\x80\x1b\xd8\xcb\x08\xf4\x9a\x17\x4e\xd5\x4d\x92\x2a\xc4\x77\x01\x15\x07\x9d\x54\xf3\xc8\x42\x29\xf3\xc6\x78\xe0\x7a\xa4\x57\xc7\xfa\xf6\x25\x37\xd8\xda\x67\x65\x4b\xa4\xc9\x10\x7f\x9c\x2b\x96\x27\x17\x21\x15\x56\x87\xd1\xe7\x9e\xd6\x24\x25\x70\x83\xda\x5e\x1f\xe2\x6f\x30\x7b\x2d\x0c\x36\x21\x19\xbd\x9a\xba\x61\xad\x94\xa4\x18\xd1\xc0\x1b\xba\x7e\xad\x4f\x12\x30\xa3\xd9\xb7\x41\x9e\x9f\x0f\xb5\x5c\xa3\x8b\xb6\x8c\x52\xa6\x25\x0d\xea\x36\x52\x9c\x64\xf4\xf5\xfd\x4a\x65\xec\x10\x16\xf4\x11\xee\x26\x65\xae\x3e\xa0\x21\x0a\x92\xf9\x35\x4f\x51\xf7\x2b\xee\x82\x97\x4d\x9d\x31\x7d\x76\xa1\x0f\xd6\x2a\x7f\xde\x2e\x6d\x1c\x12\x42\xee\x17\x7d\x6d\xb7\x52\x7a\xc6\x47\x5b\xa4\x08\x6f\x37\x64\x22\x64\xb3\x90\x1b\x11\x2d\x1d\x34\x54\xc4\x02\x2e\xd7\xc1\x41\x3f\x85\xdb\x94\xdf\x07\x75\x5c\x9e\xe2\xfe\xe8\x90\x9c\xcf\x4f\xb2\x78\x6b\xe3\xf4\x5d\xaa\xa5\x7f\x1f\x38\xc6\x3d\xa8\x74\x77\x69\xe3\x94\x54\x26\xf3\x5b\x3b\x25\xdc\xb8\x83\xcb\xad\x2f\x7d\x76\x98\xd8\x6c\xb5\x3a\x16\x02\x7f\x3b\xc7\x68\xba\xa6\x4d\xe4\xd9\xf0\x2a\xe1\x7a\xe8\x6a\xd7\x96\x20\xbd\x02\x0f\x49\x5d\x17\xc2\x7d\x2e\x3e\x33\x4c\x2e\x64\x9a\x4a\xf0\xb2\xf9\x4b\x25\x88\x34\xdd\x94\xd1\x06\xb1\x9c\x84\xe7\xf2\x89\x59\xa9\x86\x1b\xe5\xb6\xa8\xd9\x47\x78\xa8\x0e\x8d\xa8\x85\xb4\xd6\x0a\x79\xbb\xf6\x9d\x91\x59\x82\x3e\x37\x0b\xe5\xa5\x8e\x42\xdd\x77\x71\x93\x78\x7e\x95\x0f\x8a\xd7\xbd\x23\x2f\x89\x02\x0e\x1c\x8f\x6b\x7f\x74\x3d\xaa\x5c\xab\xa1\x2b\x28\x5f\x8f\xb7\x0f\x4b\x2e\x18\x86\x3d\x0b\x94\x50\xfe\xb0\x45\xab\x64\x79\x3d\x07\xbb\xe8\xe7\xd3\x14\x7c\x6c\xe7\x29\xf0\xb1\xe6\xcf\xc7\x28\x1e\x2f\xb4\xe9\x35\x48\x1c\x06\x06\xf2\xf5\x35\x63\x55\xce\x68\xc0\x5d\x52\xb2\x6a\x08\x5a\xdb\xb9\x4c\xd9\x34\x51\xfc\x1b\x9f\x1b\xa5\x02\xd9\xb0\x4d\xfc\xba\x00\x2e\x7c\x63\xfd\xf9\x5a\xca\x23\xe6\x9d\xa5\x74\x78\x95\xbb\xae\x4b\xd0\x2c\x2c\x14\x04\x49\xa1\xf5\xda\x30\xa8\x84\x6e\x11\xa2\xc1\xcf\x3f\xa1\xa0\xb4\x88\x0b\x68\xf6\xa6\xb0\x49\x78\x3f\xea\x4f\x22\xb2\x79\xe2\xa9\x0c\xab\xd2\xa2\x21\x13\x72\x1d\xd7\x0c\x56\x46\xb5\xc8\xb3\x2b\x21\x48\x54\xe6\x9e\x79\x41\x01\x39\x30\x50\x2b\x35\x36\x1e\x6e\x19\x40\x04\xa1\x9f\x3c\xf1\xf8\xb2\x5c\x2f\x9f\x5a\xa0\x40\x96\xdd\x1b\xdf\x58\xa3\x19\x5e\xd4\xb1\x45\xca\x24\xd5\xff\x35\x97\xad\x95\xfc\xb8\x3a\xa9\x59\x0e\x22\x96\xa3\xba\x8b\x1b\xbb\x4e\x53\x54\x4c\xc0\xd2\xa0\x50\x8c\x1e\x5e\x99\xf6\x7f\x30\xc7\xe0\x7e\xa0\xae\x94\xd5\x75\x3f\x40\x8c\xc7\xdd\x17\x5f\xcf\xee\x14\x8f\x06\x69\x61\x6a\x16\x6d\x48\xd0\x97\xdd\xcc\xbf\xcb\x9b\xaf\xc3\x75\x34\x7b\x7a\xa1\x89\x02\xfe\xeb\x17\xad\xd7\xc5\x2c\xec\x44\x90\x2e\xff\xd1\x15\xf2\x85\x57\x18\xb2\xc3\xc4\x26\xd5\xb8\x5e\xcb\xb9\x53\xc2\xaf\xb1\x73\xbb\x8c\x2b\x1d\x97\xcd\x89\x3f\xe6\xda\x8d\x7a\xe2\xd8\xc0\x69\x45\x39\x60\x7e\x45\x8a\x56\x07\x61\x7c\xb8\x3f\x66\xc2\xa6\x28\x73\x4c\x70\x74\x59\x47\xf6\x15\x55\x18\x6d\x7a\x85\xb0\x2e\xc4\xc2\x56\x66\xa5\xb4\xcb\x25\x32\xa5\xd9\x22\x20\x3b\x90\x9b\xdd\x68\x2d\x35\x93\x14\x38\x7f\xee\x71\x4d\x9a\x8a\x94\x71\x42\x25\x2b\x0e\x3a\x05\x7a\x4d\x70\x40\x8d\x61\x91\x66\x5a\x39\xa7\x6b\x26\x30\x07\x3e\xf0\xc8\x28\xa5\xe9\x30\x63\x86\xda\x18\xcf\x6d\x79\x62\x98\xf2\xc6\xa1\x8a\xcd\xf7\xbc\xa9\x75\xcb\x89\x1f\x30\x42\x3d\x62\xf9\x42\x80\xc3\x3d\xd6\x26\xed\x88\x2c\x75\x8c\x38\x5a\xd7\x5d\xae\x51\x96\x6e\x41\xa3\xbe\x38\xfb\x08\x4d\x87\x04\x89\xee\x9e\x31\xf4\xed\x41\x22\x8c\xf2\x63\x3a\x6c\x84\x50\xed\x91\x33\xb3\x57\x64\x09\xe4\xd0\x1a\x0e\xe2\xe5\x2f\x0e\x98\xc6\x8b\x5a\xe7\x28\xf4\x7d\x4c\xb2\x3d\xb5\xd7\x9e\xc9\xe6\x0d\x3c\x7a\x22\xcb\x21\xb8\xc1\x5d\xab\x8b\x03\xc6\x4f\xdf\x18\x1e\xff\x64\xd1\x22\xb5\x72\x1e\xb9\x73\xb8\x3a\x8c\x10\xa4\xac\xbb\xcd\xec\x5f\x0c\x68\x53\x78\x5f\xcb\x99\xc3\xd2\xcb\x15\xce\x10\xb2\xaa\x85\x26\xc4\x85\xdc\xa7\x06\x0f\x15\x7f\x27\x9d\xcc\x3f\x21\x01\xc4\x33\xf8\xb5\xf5\xc9\x97\xda\xb4\x3f\x00\x54\xec\xdc\x77\x1b\xd9\x05\xae\x7a\xd4\xaa\xd2\x30\x80\x6e\xbc\xf9\xfe\x0d\x2d\xae\x81\x0d\x5a\x4d\xfc\x58\xf3\xa6\xb0\x80\x27\x35\x21\x18\xc6\x43\xfc\x7d\x2b\x15\xe9\x59\x64\xdb\x80\xba\x9a\x38\x55\xe9\x82\xc1\xb4\x68\xc0\xe8\x18\xa7\xda\x36\xc7\xa5\x0b\x3f\xce\xdf\x5f\x0c\x9f\x7b\x3d\x72\x51\x25\x49\x48\xff\x3c\xac\x2d\xcb\x1c\x43\x8c\x5f\x29\xe6\x53\x87\x12\xe9\x65\xd4\xe4\xbf\xfe\x7a\x97\x82\xdc\x23\x5e\xa5\x42\x80\x91\x76\xac\x2d\xf9\xeb\xd0\x34\x16\x8a\xee\xe6\x96\x8d\xc3\xd5\x0e\x74\xa9\xc4\x8b\xb5\x81\xd1\x10\x9d\x13\x3d\xd3\x42\x31\xba\xee\xa8\x92\x9b\x24\x02\x69\x23\x26\x2a\x8c\x3a\x6c\x67\x47\x3d\xc5\x5d\x22\x11\xa7\x36\x82\x0b\xf0\xb7\x81\xec\xaa\x24\xa8\x6d\x78\xc0\x3f\xde\x36\x5e\xab\x0e\x6b\xf5\x12\x76\x5d\xe1\x3e\x97\x6c\xbd\x77\x29\xd5\x7f\x05\x7b\x00\x60\x30\x3f\x73\xba\x82\x8b\xee\x27\xbc\x60\xbf\x98\x29\x23\x2c\xd0\x9a\x49\x41\xed\x97\xac\x1d\x24\x32\x75\x0e\x17\xf8\xf9\xa8\x36\x55\x4b\xa6\x50\x76\x43\x1e\xac\x5f\xca\x4b\xcd\x66\x86\x55\xc1\xe0\x47\x35\x2b\x4b\xcf\x66\x38\xe3\xa2\x1d\xfd\x75\xbd\xfc\xa2\x00\x61\x29\x14\xa3\x0f\x1e\xca\x5e\x2b\x33\xba\x3a\x0a\x42\x0b\x05\x40\x5d\xf7\x8e\x4d\xf7\xae\xcb\x67\x22\x3d\xa3\x74\xb1\x32\xcb\x0d\x39\x61\x53\x24\x51\xff\x76\xbb\x3c\xc7\xc9\x98\xb1\x50\x8c\xde\xdd\xa5\x0f\xba\xb9\x6f\x8d\x18\xb5\xfe\xf4\x2e\xd9\x6a\xc2\xad\x69\xd3\xe4\xe7\xb2\xef\xa2\x8a\xfc\xfe\x3e\xab\x4a\xa6\x82\xea\x5b\x92\x8f\x2c\xdb\x77\x9e\xf2\xee\x53\xc2\x82\x52\x07\x7e\x5f\x08\x7e\x74\x81\x19\x1a\x80\xad\x3f\xae\xf5\x45\x5d\x52\x23\x81\x42\xc5\xc9\x9f\xf5\xfa\xd9\xda\x56\x70\xdd\x44\x89\xe9\x95\x76\xad\xfa\x20\x15\xa1\x84\x33\x47\xc9\x1d\x2c\x07\x5b\x55\x0e\xc3\xe5\x40\x96\x97\x34\x14\x3f\x61\xae\xa8\x15\x8e\x2d\x55\x5c\x88\x1b\x94\xc0\x71\x35\xe7\x3c\xf3\x2f\x64\x33\xe2\x44\x6d\x79\xe7\x85\xda\xd5\xcc\x02\x07\x33\x0f\x78\x1c\x92\x33\x7a\xfe\xcb\x70\x84\x2a\x61\x62\xed\x15\x6d\x7c\x19\xb8\xe7\x7c\xa9\x18\xb1\x0a\xf5\x38\xd6\xc5\xcf\x75\x89\xa2\x7f\x84\xbc\x2a\x62\x28\xcd\xa0\xaf\x7a\x56\x97\xb7\x23\x2e\x0d\x13\xb9\xfa\x7b\x06\xa5\xe5\xa2\x43\x14\xc1\x82\x8f\xbc\xa2\x75\xf8\xa8\xeb\x4a\x6b\x4a\x34\x5a\x03\xb8\x91\x20\xd1\xa7\xbf\x18\xe0\xe9\x05\x54\xaf\x33\x5a\x67\x04\x44\xe5\xe2\x3f\x85\x7a\x65\x41\x50\x46\xbd\x85\x62\xf4\x6d\x1d\x36\xe3\xf4\x05\x4e\x2d\x4d\xb4\x9e\xd0\x02\x6f\x67\x97\x70\x8f\x7d\xcf\xb6\xa1\xca\xe5\xd3\xe4\x12\xf2\x3d\x93\xb4\xcb\xce\x42\x71\x46\x35\xa5\x95\x42\x91\xbf\x76\x21\x54\x85\x4b\xf9\xea\x49\x2e\xec\xc1\x6c\x63\xb6\x42\x99\x9d\xfa\xa9\xa4\x03\xe1\x47\x52\xa8\x0d\xe3\x4d\x77\x79\x7f\x7f\x4e\x52\x55\x67\x4f\x2f\xc4\x3b\xb1\xff\xf5\xec\x41\x70\x51\x3f\x62\x5c\x4e\x59\xc5\x08\xe4\xde\xde\x74\xb6\xd2\xb1\xf1\x11\x01\x92\x02\x6f\xef\x6c\xed\x4a\x1a\x9b\xc0\x01\x36\x3a\x04\x70\xcc\xa5\x96\x90\x6c\x34\x9f\xd1\xfc\xfd\x9a\x24\x70\x92\x37\x1c\x79\x2f\xb6\xc0\x40\x79\xa3\x0d\x76\xfd\xb5\x83\xe1\xb2\xb0\xb0\xe7\x53\x50\xb3\x2d\x46\x9f\x59\x2d\xfe\x91\xba\x2e\xaa\x8b\xbd\xb7\xfb\xb4\x6c\x52\x83\x19\x12\xd0\xbc\x67\x57\x5f\xa0\x55\x25\xd0\x96\xa9\xab\x98\x5a\xc3\x70\xa0\x96\x5a\x4c\x5b\x61\xd7\xe6\x2f\x5e\x81\x48\x7f\x95\x9f\x3c\xd3\x7f\xed\xd1\x72\xa8\x4b\x67\x89\x3f\xf7\xf8\x93\x1a\xca\xa7\xaf\x56\x47\x81\x83\x03\x62\x01\x7e\xb8\x63\x88\x02\x78\xcc\x48\x91\x25\xce\x7f\x47\x14\x55\x16\x15\x90\xf4\xec\xe8\x16\xe9\xbb\x5a\x18\x48\x9c\x57\xee\xcb\x4a\x54\x8e\x73\x21\x98\xa5\x9f\xb1\x6e\x8c\x5e\xe8\x00\x9a\x2d\xb1\xa8\x3b\xed\xa4\xee\x68\xe2\xd7\xe3\x92\x5b\x84\xd3\xe1\xdb\x94\x79\x0d\xae\x11\x0f\x31\x21\x64\xf3\x3f\xb3\xb4\xea\x17\x63\x0f\xa8\xf6\x73\x5e\x91\x56\x88\xe9\x38\x46\xaf\xdb\x6e\x1b\x33\x42\x49\xd5\x13\x2d\xe0\xf3\x14\x65\x77\xdf\x45\xe9\x30\x71\xac\x66\x0c\x58\xa1\xa5\x92\x9b\xe2\x8b\xcc\xa7\xb7\xff\xab\xa7\x14\x8b\xb3\x75\xc2\xd9\x7a\x3a\x94\x38\xfd\x98\x7f\x5e\x92\xbd\xf1\x04\x42\x55\x78\x05\x00\xd6\xf7\xaf\x42\x55\xaa\xec\xa2\x20\x1d\x58\xbd\x9c\xfd\xcc\x9e\x90\xf5\x25\x28\xbd\xf7\x3e\xaa\xb3\xb2\x40\x61\xdd\x12\x1d\xd6\x4f\xad\xd6\xf2\x2f\x17\x59\x12\x47\x68\x7c\x56\xb0\x78\x71\x2f\xaa\xc1\x30\xf2\xef\x6b\x14\x5b\x13\x4e\xfa\x10\xd3\xd2\xbf\x3f\x97\xfd\xf6\x55\x07\x95\x51\x0f\xca\xb8\x55\xd1\xf5\x12\xb5\x8e\x2c\xd1\x52\xd1\x47\xe1\x23\xef\xd6\xba\xee\x0e\x6d\x5a\xc8\x4f\x24\x9f\x73\xfb\xb7\x40\x64\x5a\x84\x54\xa1\xb4\xe8\xd6\xf1\xfa\xd2\xfb\x01\x03\xc1\x38\x58\xde\x9b\x44\x19\xed\x61\x52\x71\x4a\xd0\xc1\x36\x2e\x6e\xcb\x86\xcf\x7a\x03\x28\x49\xc6\x91\xe7\x46\xb5\x24\xa6\x38\xa1\x9e\xcf\xef\x1a\xad\x24\x04\xdc\x8d\x5f\x25\xd9\x9e\xc7\x00\xf9\xa3\x60\x5a\x93\xa1\x99\x5d\x28\x46\x17\xef\x81\x70\xe5\x23\xb0\xcc\xfa\xfe\x3c\x55\x2b\xd2\x72\x90\x6b\x39\x21\x08\x98\xcc\xdc\x2e\x3a\x1c\x8c\x04\x89\x0b\x91\x31\x77\xb3\x02\xc5\x0b\x53\x5f\x7f\xf3\xd2\xfd\x17\x6a\x77\x7a\x68\x21\x3f\x14\x3a\xb2\x69\x85\x10\x5c\x09\xef\x94\x2b\x2c\xf3\x2f\x74\xe3\xbf\x90\xba\x11\x9b\xe0\x47\x07\xb2\xc1\x24\xac\xf0\xf6\x93\xb0\x2c\x8e\x83\xc5\xd2\xe7\x07\xa7\x4f\xf0\xe1\x42\x31\x3a\x74\xef\xe8\x53\xfc\x46\x32\x77\xc9\x17\x8f\x2a\x8a\x1d\xb5\xf8\xfb\xf3\xb3\x75\x41\x00\x21\xb5\xc4\x68\x15\x33\x54\x01\x6c\xf7\xc1\xe7\x5b\x94\x84\x12\x81\xca\x68\xc2\xbc\x34\x79\x6c\x66\xac\xd5\xee\xaf\xb7\x29\x2d\x75\x1b\x33\x0f\xd6\x2e\x7f\xae\x4e\x9a\xc2\x1e\x49\x6c\xe3\xdd\x31\x5a\xdb\x1f\xbb\xdc\x6b\x34\x91\x7b\x8e\xb3\x5a\x3a\x24\x1b\x6c\x3c\x54\x2d\xa1\xf8\x68\x46\x7f\x1c\xac\x8f\x31\x28\x00\x9f\xa3\x45\xab\x34\x11\x03\x2e\x3a\xc3\x2f\x9e\x87\x96\x29\xba\x96\x61\xad\x2e\x02\xfb\xf6\x4d\xca\xa8\x80\x2a\x17\xc4\xfa\xf1\x4a\x29\x80\xca\x81\x0a\x7c\xcc\x4f\xd9\xac\x0c\x69\x6a\x98\x81\xdc\xf3\x41\xa5\x37\xd9\x44\x8c\xb7\x1a\x46\xdc\x3f\x5a\x1a\x8b\xb4\x20\xdf\xcc\x5f\xb1\x16\x2a\x67\x1d\x07\x24\xa0\x50\x78\x9a\xdd\xc7\x33\xfd\x5d\xa1\x0e\x0e\x3d\x87\xdf\x4f\xce\xde\x49\x0d\x12\x50\xbe\x3e\xe7\x6e\x51\x1a\xbf\xd8\x72\x3c\x62\x71\x6b\x80\xdc\x4d\xa6\xec\x95\xf4\x84\x36\xf7\xfe\x86\xbe\xd3\xd7\x34\x33\x30\xe4\x52\xaf\xe2\x13\x3b\xad\xc0\x9f\xbe\x6b\xb4\x92\x14\xb8\xa8\x56\xc2\xaa\x7f\xd1\x3f\xfa\xb5\x17\x4a\x5c\x17\xb8\x21\x72\xd1\xd6\x3c\xa4\x37\xca\x39\x79\xf7\x14\xda\xcb\xb9\x39\xae\xf6\x1e\x03\xe2\x02\x68\x36\x0a\xf6\x9f\xab\x47\x8b\x92\x8b\x6b\xa9\xe2\xc0\x3b\xcf\xaa\xcd\xe0\xd0\x0b\x10\xe1\xcc\xce\x2c\x65\xf3\x88\xd6\xb9\x6c\x62\x14\x60\x06\x75\xf4\xf7\xf6\xa7\xaf\xcc\x0e\x5b\x25\x2c\x97\xde\xac\x38\x56\x09\x69\xfa\xf8\x0f\x9f\x38\xa1\xdf\xaa\x01\xae\x30\x12\xf4\x01\xf3\xe6\x7b\x3b\x14\xcf\x3f\xec\xfb\x98\xf1\x1b\x89\xdf\xb8\xd7\xde\x9b\x4d\x59\xe2\xbb\xdc\x23\x9c\x8b\x41\x52\x92\xc3\x8c\x17\x32\x6a\xfe\x35\x0a\xdd\xc8\xd3\xca\x93\xf4\x6b\xa7\xc2\xb0\xef\xb7\x1a\x14\x0d\x18\x4b\x5f\x4e\x33\x0d\x5a\x52\x00\x55\xf9\xf1\xab\x65\x2e\x6c\xc1\x90\xe9\x3b\x9d\xaa\xe5\x3c\xbf\x72\x8f\xef\xc9\x46\x70\x9c\x54\x6d\xfb\x76\x64\x0f\xe4\x8c\xce\xc0\x81\x81\xd0\x5f\x8f\x67\x7f\xc2\x15\x2a\x78\xdd\xf1\x6b\x53\x26\xcd\x75\x37\xae\x5c\xa3\x0f\x4b\xff\xa6\x12\xed\x8d\xff\xe2\xe5\x1a\x2b\x53\xe5\x22\xe6\x7b\x66\x0d\x96\x52\xcf\x85\x62\xb4\x6c\xbc\xac\xe8\x0b\xa2\x0e\x9f\xb6\x52\x45\xf5\xbb\x49\xa7\x7d\xc0\xbc\xe2\x7e\xcd\xd4\x0a\xf9\xc4\xa3\xa2\x0a\xf9\xb7\x7d\x23\xc4\x6f\x70\x67\x18\x87\x70\x35\xef\xaf\x3f\x92\x0d\xfa\x55\xec\x79\x40\xe3\xa9\x67\x12\xef\xd5\x1a\x96\x2c\x91\xaf\x10\x0d\xb2\xf3\xd7\xa6\x28\x93\x26\x4a\x24\x95\xcd\x8b\xa7\x6a\x91\x3f\xce\x83\x02\x2e\x83\x2e\x24\xc0\xd6\xad\x18\x2e\x12\x84\x3a\x66\x44\xf4\x3b\x72\xff\xd5\x31\x54\x21\x3b\x58\x4e\xa1\x18\x2d\xf6\x94\x9e\x8d\xc3\x10\x6f\x7f\xe7\x3f\xb6\x55\x31\x74\xc3\xae\x1b\x5a\x16\x51\x0e\xf0\x63\x12\xae\x11\x7a\x7a\xc7\x7d\xc0\xbc\x40\x13\x68\x2a\x31\x54\xe1\x72\x5e\xf2\x22\x78\x7b\x30\x24\xcd\x37\x52\x0b\x9c\x48\x72\x0f\x3c\xa4\xd9\x8d\x84\x15\xea\xbb\xa8\x41\x90\xa2\xeb\x34\xed\x4e\x45\x06\xd2\xb2\x28\x4b\x9a\x31\xe6\xa5\x8a\xfe\x98\x8b\x2b\x24\x20\x35\xe8\x06\xdc\xea\x6a\xc8\x13\xe4\x13\x97\x58\xa2\x00\xc8\x5d\x7b\x08\xda\x21\x0b\x8a\x37\x70\x46\xe7\x5a\x19\xf8\x1b\x84\x72\xf4\x74\x71\xc0\x5c\xbd\xee\x3c\x95\x37\xcb\xc9\xdf\x44\x45\xe4\xe6\x3f\xae\x01\x34\x91\xeb\xd2\x66\x12\x0f\xff\x1c\x40\x66\xd1\x31\x75\x76\xd7\x9c\xf8\x1f\x3e\xbe\x46\x71\xe8\xa5\xb5\x3a\xf2\xfa\x92\x3b\x7b\xd4\x4b\x90\x06\xf4\x60\x56\x25\x40\x2f\x2f\xbd\x9c\x8d\x62\x55\x62\x7b\xa8\x9e\x0a\x65\x7f\x78\x44\x9b\xf2\x61\xc2\xa9\x87\x53\x4e\x5d\x8d\xa6\x38\xad\x26\x06\x85\xc6\x03\x93\xb3\x1f\x49\xcb\x65\xec\x01\xfe\x8b\x07\xc6\x8f\x29\xc7\x63\x3c\x7c\xb5\x68\xb9\x62\x03\x1d\x67\xe4\x41\xbc\x7f\xe6\x48\x47\x2b\xc4\xa4\xa4\x54\xb4\xe5\xf2\xec\xb2\xf7\x20\x2f\x94\xde\x40\xc6\xf1\x2b\x35\x1f\x2b\xa1\x5c\x98\x08\xeb\x0c\xe4\xfe\xba\x0b\x32\xea\x8c\xed\xf0\x0a\x05\x1c\xca\xcd\x16\x78\xb2\xfc\x17\x8d\x8e\x69\xb9\x98\x55\x01\x55\xdc\xdb\xad\x42\xae\x1a\xc0\xb5\xf8\xf1\xb8\x6c\x04\x2d\x85\x8c\xbf\xd2\x4c\x65\x6b\xce\x7a\xf2\x94\x6c\x5e\x10\x2d\x9c\xe0\x48\x3e\x81\xad\xf0\x09\xcc\x7f\x1e\x55\x0a\x94\xba\x8b\x7c\xf0\xf4\xc8\x55\x76\x29\x0d\x72\x4a\xa1\x35\x8a\x1f\x4d\x3f\x05\xd5\xd4\x82\x73\xc7\x02\xdd\xdc\x8e\xd6\x5d\x0c\x77\xda\xef\xcf\x90\x5b\xb4\x82\x58\x49\x4c\x89\xfc\x27\xb4\xb0\x3a\x7b\xb6\x18\xd9\xaf\x7d\x14\x62\x81\x87\x18\xf8\x93\xf2\x90\xfd\x95\x33\x12\xd6\x17\x4f\x53\xa3\xd3\xc7\x69\x8b\x48\x13\x0b\x38\xe3\xc7\x6b\x85\x84\x1f\x4b\x48\x8a\x03\xf9\xcb\xba\xb5\x19\x3b\x0d\xa1\x13\x04\x01\x8e\x9f\xd6\xdf\xdc\x2d\xcf\x64\x43\x35\x4f\xc9\x9f\xf3\x96\x78\xb9\x71\xfe\x29\x7c\xe4\x0d\x60\xf9\x17\xee\x08\x11\x8b\x13\xa8\x44\x3f\xbf\x38\x60\x1c\x5b\xa8\x6d\x64\x37\x14\x13\x84\xdc\xc7\x46\xbf\x47\x7a\xcb\x91\x42\x31\x1a\xd6\x90\x57\x51\x00\xbe\xdd\x7f\x9c\xac\xfb\x85\xa3\x06\x76\x85\x29\x67\x74\xeb\x23\x10\xbf\x6f\xc1\x7e\x50\x23\x1e\x30\xb0\xa3\x9f\x1f\xcf\xbe\x01\x87\x36\x93\x0e\x7f\xd4\xf6\xba\x86\x82\xa3\x21\xa9\xa1\xac\x39\x46\x7e\x71\xe3\xa2\x53\x26\x30\x53\xf5\x42\x77\xe2\xab\xe7\x64\x8e\x2f\xa3\x5e\x90\x36\x9e\x8c\xfd\xdb\xe4\x1a\xf6\x62\x0f\xcc\x3c\xb8\xda\x78\xee\x05\xad\xb0\xa3\xfd\xa8\xaa\x79\x81\x2c\x7d\x0a\xea\x94\xf7\xa3\x92\x04\x00\x4f\x7c\x51\x49\x2e\x38\x88\x23\x15\xbb\x33\x1e\x7d\x47\xef\xb8\xd8\xa1\x95\xce\x5d\xf2\xbe\x7d\x49\xf6\x54\x87\x76\x5c\xbd\xb3\xbe\x53\xd2\x54\x5e\x9c\xa7\xcc\x3c\x90\x2d\xa4\xce\xc6\xdd\x90\xbe\x31\x9b\xf2\xf0\xd8\xdb\x2f\x8f\x35\xf2\xfc\x26\xaf\xe9\xa3\xad\x2f\x4a\x81\xe0\x1a\x0f\x5a\x43\x8f\x69\xd9\x1c\xf7\xd7\xf2\x71\xaf\xb8\x89\xf7\x74\x2b\xb4\x60\x52\x23\x01\xe3\x54\xa8\x3f\x3e\xac\xfa\xd4\x35\x50\x92\xce\xe7\xd6\x1c\x1a\x1c\x7f\xbf\xf8\xa3\xb8\x0c\xbe\xb1\x00\x42\x2f\x0b\x45\xf5\x1c\x4d\xbd\xbc\x05\x6a\xcc\xdd\x04\x44\x15\xff\xdb\xd7\x86\x88\xab\x3f\xb5\x10\xfb\xb0\xa7\x9c\x7f\xea\x86\xc9\x7c\xf1\xab\xe3\x60\xc7\x17\x1b\x3c\xae\x73\x17\xb6\x1b\x56\xa7\xb1\xb3\xaa\x0a\xdb\xfd\xfa\x5e\x45\x7d\x88\xd6\x13\xc8\xe9\x40\xee\x93\x6f\x0c\x13\x4f\xc1\xb9\x9a\xfc\xdc\xf6\xbe\xa5\x5b\x5d\x82\x7e\x35\x48\x16\xf3\x93\xd5\x78\x4b\xfe\x1d\x54\x55\xc2\xcc\x82\x37\x26\x6b\xbf\x0b\x74\x7e\xec\x9f\x52\xd0\xf9\xd0\x3a\x98\xa3\xdc\x82\xb8\x39\x7d\x32\xf4\x8e\xee\xb9\x4d\xae\xbb\xc5\x28\x0a\x38\x5a\xf5\xa3\xfd\x7a\xfb\xde\xa3\x0d\x10\x80\x86\xa3\x5b\x1c\x9b\xcd\xdb\xeb\x24\xb0\x84\x14\x4a\xee\xe5\xad\xfa\x80\x0f\xc7\xe1\x05\x06\x6c\xeb\xc6\x8c\x52\x6e\xe3\xf8\xf6\x8c\x4f\x0b\xb8\xfa\xe6\x7e\xf3\xfa\x64\x2d\x3d\x4e\x15\x6b\x4f\xa1\x7e\x94\xff\xd8\xc6\x11\x4a\x95\x53\x22\x2e\xe6\xd1\x34\x1c\xa1\xfa\xb9\xf8\xa1\x0b\x8b\xfd\xe0\x71\x05\xef\x40\x1a\x60\xea\xf8\xad\xe5\x69\x8e\xe6\xd9\x09\xd2\x2e\xf7\x41\x0f\xe2\x6b\xe8\x89\x1d\xb0\x2f\x52\x4a\x01\xc6\xc5\xcf\x79\x70\xfb\x1b\x54\x43\x85\xeb\x69\xfc\xd7\xaf\xc7\x36\x69\x99\x4a\xe4\xae\x7f\x58\x7e\xcb\x1a\xaa\xd5\x28\x77\xed\xc8\x37\xb6\x29\x65\xaa\x8b\x3c\x0f\x1a\xea\x1b\xe6\x9d\xa5\xfc\xd7\x7e\x82\x4d\xc8\xd9\x8d\xec\x1b\xa9\xb8\x94\x25\x93\x7d\xde\xeb\xeb\x9f\x9f\x15\xe4\x99\x31\x1d\x0a\xcb\xe9\xa2\x91\xcb\xfd\x0e\xe2\x7f\xf8\xf1\x13\xa3\x5a\x2a\x51\xe4\xf5\xf1\x5c\x7d\xe2\x38\x6d\x2e\xdd\xe7\x63\xb7\x2c\x1a\xa0\x7b\xd6\x6a\x62\x64\x29\xd2\x21\x69\x28\xce\x7d\x5c\x62\x02\xed\xf8\xf3\x7e\xb5\x68\xb8\x72\x1a\x6a\xa0\xde\x67\x1c\xed\x1c\xa5\xc5\xe0\x86\x94\x08\xfb\xca\x31\x65\xae\x17\x97\x5c\x1c\x3e\xf8\x51\xfb\x2c\x85\x40\xc9\x77\x05\xcf\x2a\xfe\x78\x52\xea\xf2\xf5\xe3\x4c\x76\xfe\xee\x4d\xa9\xe6\x1c\x26\xe5\xcc\x8f\xc8\xe3\x1a\x7d\x1b\x79\x09\xdf\x7b\xfa\x0a\x9d\xd9\x9d\xcc\x86\x73\x3b\xc7\x0e\x57\xdb\xe5\x18\xc6\x9e\xb7\x0e\x1e\xaa\xbc\x30\x78\xb7\xb7\xaf\xd6\xed\xa7\x1a\xd8\x45\xaa\x7f\xdd\x1f\x9f\x81\xae\xf4\x7c\xea\x55\x69\x23\xf0\xb1\x22\x51\x93\x1f\x1a\x00\xe4\xa0\x38\xed\x3a\x5e\xa7\xee\xda\x78\x81\x96\xcd\xd8\xd4\xad\x67\x89\xe2\xd1\x77\x87\x08\xc9\xf8\xd0\xe3\xef\xd9\x68\x5b\xa1\x5a\xe7\xdb\x7c\xb3\x70\x4c\xc4\x4e\x65\xa6\x4b\x2c\x90\x01\xbb\x73\xbf\xa6\x8c\x0e\xba\x34\x3c\x04\x7d\xf5\xb9\x36\x05\x23\x58\x0f\x5d\xc4\x20\xa4\xbd\xd6\x62\x70\x09\x8e\x61\x20\x91\x10\x0d\xbf\x3f\x31\x3c\x74\x15\x7d\x12\xe3\xa2\x43\xef\x49\x17\x6c\x36\x7f\x3e\xb2\x7a\x58\x7a\x2a\x7d\x21\x1d\x96\x5b\xb5\x66\x9a\xe6\xc2\x75\xe3\xff\x8f\xc3\xc7\xa4\x47\xb5\xa9\x07\x2e\x21\x8f\x7a\x20\x28\x94\xce\xb7\x8c\xda\x01\xfd\x9a\xb4\x68\x03\xb3\x44\xb0\x71\xed\x0a\x68\x85\x5e\x55\xf2\x32\x9d\xa0\xc5\x3d\x42\xf4\x86\xba\x5c\xa0\x37\xca\x6d\x1f\x21\x42\x0c\x6f\xba\x26\x73\xe9\xb7\x14\x38\x68\xe8\x91\x5a\x1d\x8b\xe1\xdc\x73\xa3\xb3\xab\xe5\x10\xc1\x65\x17\x5b\xe2\x7f\xbb\x5b\x7c\x7c\x05\xc2\xb4\x3a\x31\x5b\x8f\x06\x5e\xe9\x54\x77\xb6\x71\xe8\xa8\xde\x4c\x41\x4c\x80\x02\x72\x3f\x7d\x54\x6b\x84\x58\x0e\xa5\xc9\x38\xf1\xfb\x2f\x6a\x7f\x3a\xbe\xb4\xa0\x67\x3b\xe7\x21\xa5\x70\x08\x31\x47\xd0\x46\xdf\x7b\x56\x07\x52\x70\x67\x26\x16\x48\x94\xc7\xba\xcd\x2d\xba\x72\x7e\x88\x6c\xe9\x44\x7e\x65\x8f\xf6\x1f\x84\x8c\x4b\x00\xa6\x8c\x8b\x66\x29\x2d\x54\x4b\xad\xc3\xde\xdc\xd0\x15\x1a\x91\xd0\xc1\x38\xa5\x57\xe5\xc3\xa3\x90\x37\x97\x19\x0a\xed\xd0\x05\x5d\x89\x3b\x75\xed\xc2\xd0\xab\x62\x21\x65\x9e\x3b\xb6\xe7\x3c\x05\xea\x80\xfd\x96\xa1\xc6\x55\x9d\x5a\x9b\x92\x78\x42\xd3\x24\xb7\x11\xc4\xd0\x0a\x0b\x42\xd6\xa7\x36\xcb\xfe\xbb\x5f\x56\x1a\x75\xb5\x97\xfa\xf3\x3b\x87\xa9\x94\x45\xa1\x8e\xfe\xe8\x50\xa5\x71\xc9\x05\xea\x7f\xcc\x74\xbf\x96\x4a\xea\x60\x5a\x1c\xc8\x4d\xbe\x5b\x08\xcb\xc6\x75\x84\xbe\x40\x2f\x6d\x9e\xe0\xc9\x21\x0c\x46\x41\xfa\xbf\xc8\xb3\x13\x95\xb3\xf8\x53\xfe\xe7\x2d\xd1\x04\x91\xf1\x9c\x07\xf3\xc7\xb2\x5d\x3c\xea\x09\x35\xaa\xd6\xa6\xc1\xe3\xe3\x35\x1a\x14\xf2\x85\x04\xb4\x11\x3c\x9b\xcd\xb7\x71\xaf\x43\x5c\xc4\x38\xb3\x34\xc1\xf2\xe5\x3f\xa2\x65\xae\x18\xf9\x41\xfc\x22\x85\x22\xe5\xc8\x41\xe7\xe8\x7b\x17\xd7\x52\xbb\xca\x0f\xbb\x12\x5f\x4c\xe2\x45\xfb\xd4\x22\x78\xf7\x4d\x46\xbd\x8a\x4d\xc5\x2c\xe5\x3f\x37\x29\x1e\xc6\xa8\xe4\x62\x14\x72\xe0\xfb\xab\x10\x6b\x67\x27\x5e\x28\x8b\x15\x55\x8b\x84\x76\xfc\xa7\xb1\xd9\xa3\x5b\x43\x84\xb7\x1b\x05\x80\xd8\xfc\xc9\x5d\xd9\x00\xdd\x83\x5d\xe2\x13\x4b\x4b\xe8\xef\x7c\x7e\x88\x2a\x6e\x10\x7f\xa9\x55\xda\x98\x09\x31\x86\x7d\x30\x9e\x34\xff\xf4\xe6\x85\xd9\x00\x28\x5c\x08\xf5\xa9\xf2\x59\x8b\x47\xaa\x18\x9d\x3a\xf5\x44\x9d\x67\xfc\x44\xb3\x61\x0b\x7d\x9c\xd8\xf6\x1f\x3e\xa2\xeb\x56\x73\x60\xac\x0f\x82\x57\xe6\x9a\xdb\x94\x79\xa3\x50\xd1\x8a\xa6\x74\xa6\xa9\x68\xdd\x55\x75\x23\xae\x2d\x29\x68\x84\x72\x19\xf4\x89\xa3\x45\x66\xbb\x5a\xeb\x2a\x06\x7a\xc6\x39\x7b\x5a\x2c\x51\xe3\xe5\x94\x54\x00\xf3\xc6\x59\x32\x69\x72\x50\xbd\x4e\x20\x3b\x5a\xf4\xe0\xd9\x4a\x8b\xc7\x27\xca\xbd\x92\x9b\x3b\xbf\x3d\x3d\x9a\x9e\x2a\x46\x11\x6d\x95\x56\x6f\xb6\xdd\x57\x28\x46\x6b\x0e\xc8\xe3\xe7\x84\x08\x36\xc8\x30\x21\x70\x48\x89\xcb\xaf\xc4\x1d\x9a\x35\xbf\xdf\x24\x41\x3f\x66\xfc\xfc\xc1\x88\x39\xde\x1a\x77\x74\x8f\xd1\xee\x66\xdf\x27\x08\xa6\xff\x9c\x06\xfd\xdb\xe7\x34\xa0\x31\xe6\xd6\xa9\x56\xa2\xa7\xf4\xd8\xb6\x74\xc3\x11\x0b\x25\x75\xde\x19\x93\x47\xff\x0b\x41\x00\x5e\xcb\x5d\x7e\x5c\x61\x79\x85\x01\x6f\x7b\x8b\xbf\x77\xec\x15\x95\x77\xe9\x63\x20\x8a\x8f\xd5\xb4\xeb\x88\x8d\x51\x22\x2c\x77\xd3\x0a\x69\x28\x6d\x39\x2d\x59\xf6\x8c\x8d\xd9\xd3\xd7\x43\x89\x6c\xf5\x18\x4b\x16\x0a\x59\x48\xc2\x15\x95\xa6\xb7\x6b\xcb\x81\x91\x4f\xb9\x13\x0c\x84\x4a\xe3\x07\x8d\x76\xb5\x0b\x18\xfa\x29\xe4\x20\xd7\x3e\x4f\xc3\x0d\x12\xc6\x55\x0b\x44\x85\xf8\xd9\xe9\xaa\xfe\x46\x0f\x95\xb6\x2b\x27\x74\xac\x36\x49\x8d\xa9\xbf\xf2\x98\xc6\xb8\x60\xa8\x22\xf3\xd5\x5f\xed\x50\x06\xe0\x5c\x39\xa5\x89\xb9\xa2\x51\xee\x9f\x07\xa0\xa1\x71\x63\x9f\xed\xe1\xbe\xcc\x48\xe1\xaa\x35\xaa\x11\x1a\xd4\x9a\xfb\x76\x66\x93\xef\xcb\xc4\xa5\xb2\x7b\x1f\x24\x65\x57\x23\x9f\x50\x8e\xac\xd7\x6c\xb1\x7c\x4a\x03\x07\xdb\xe9\x70\xf8\x9c\x2d\x2d\x04\x0e\xde\x12\x14\xd1\xb4\x57\xf3\x96\x2b\xe3\x80\xeb\x14\x88\x4c\xed\x73\xa7\xf2\x79\x40\x6e\x32\x23\xbc\x6e\xc1\x88\xcc\x8f\xdf\xcb\x07\x16\x46\x65\x1c\x20\x67\x6e\x21\xae\x4b\x02\x55\x33\xfd\x4f\xab\x65\x7b\x23\xce\x91\xea\x8c\xda\x61\xc2\xac\xcd\xcf\xbf\x52\x51\xc0\x62\x8e\xe0\x59\x74\xbf\xa0\xa8\xf3\x39\xb4\x59\x28\x85\x3e\x01\x2a\x78\x84\x1d\x48\xf4\xae\xee\xc7\x92\xbe\x3f\xf8\x60\xf6\x9c\x21\x2f\x0e\x9f\x96\x6e\x1e\x3d\xa4\x34\x41\x4b\x36\x53\xe8\x5a\xf6\xde\x5b\x35\x5f\x9f\xb4\x85\x5e\x00\xc8\x33\xbe\x25\xae\x70\x14\x87\xde\xd0\xb6\xf9\x25\x68\xdc\xf7\x92\xde\x33\x12\x4d\xe0\xf8\x57\xfe\x3a\x48\xb5\x43\x88\x2b\x4a\x1e\x21\xd6\x2c\xd6\x15\xf5\x2c\x37\x8c\x53\x1c\x10\x3a\x32\xff\xbc\x6e\x82\xfc\x4b\x28\x20\x7e\x59\x28\x9b\xe9\x5f\x39\x7c\x48\xb8\x67\xb9\x15\xcc\x52\x95\x29\xf3\x37\x5d\x4a\x5c\xad\xa2\x3e\xec\xc7\x57\x56\xee\xa3\x6f\xaa\x3d\x11\xcb\x0d\x41\xae\x38\x5a\xfc\xb2\x5c\xf9\x90\x55\xb2\x98\xc6\x5d\x6f\xea\xcc\xc9\x0a\x74\x19\xe2\xed\x7b\x8f\x06\x1c\x66\xd4\xc7\xe0\x53\xf0\xf8\x04\xd9\xe5\x64\xaa\xe3\xf5\xda\xfb\xa1\x9f\x70\x6d\x8d\x7f\x5f\x99\x5e\xff\x72\x27\x3c\xcb\xd5\xc5\xc5\xc5\xf7\x2f\xb9\x26\x09\x68\x73\x16\x29\x82\x01\x88\x81\x43\xee\xe0\xa5\x4a\x55\xd7\xe0\xf3\x69\x9e\xfb\xbf\x70\x4c\xc6\xe7\x52\x9c\x4c\x14\x8a\xd1\x7d\xe3\x12\x3f\x67\xb7\x8a\x78\x7c\x97\xaa\x3f\x53\x5e\xd1\xed\x95\xcb\x94\xd5\x24\x36\x2f\x42\x07\x34\x7a\x9b\xa0\x9a\x16\x07\x8c\x0b\xb7\xc1\x83\xdc\x14\xff\x4e\x10\x7a\x09\x45\xf5\x9d\xbb\x14\xf9\x0a\x6c\x83\x01\x91\x59\xda\x2a\xef\xf0\x06\x90\x80\xff\xf9\x70\xc2\x2e\x71\x5d\x92\xc8\x3d\x2e\x78\x2a\x8d\xa9\x84\xea\x6d\xc3\x81\x5c\xe9\x84\x92\x55\x4b\x38\xe8\x60\xe9\xc1\x19\x26\xb4\x64\xc3\xdf\xab\xd7\xeb\x3c\x47\x83\xb4\xfe\x6b\x7b\x86\x4b\x4d\x39\x96\xd0\x8c\x26\x8c\xce\x6c\x57\xc6\x07\x2d\x3c\x15\x2e\x14\xa3\xff\xd6\x18\x9c\x95\xb0\x5c\x46\xcd\x54\xf0\x39\xf7\x84\xa2\xb3\xe1\xd7\x69\x15\xfb\x35\xc8\x13\x87\x2f\x50\x30\x12\x18\x55\x42\x60\x44\xe4\x7b\xee\x3f\xaf\xa5\xec\x60\x19\x8c\xca\xda\x0d\x69\x95\xee\xa0\xac\x2a\xcb\xf2\xb1\xd0\x86\x2b\x53\xb8\x0b\x8a\x51\xed\x11\xa9\x24\x5f\x6a\x95\x26\xcc\x3f\xa1\x00\xc0\x91\x5b\xae\x93\x3a\xef\xfa\x44\x9e\xc4\xcd\x0a\xd3\xe1\xc4\x4b\x35\xb7\xd5\x83\xfc\x7c\x3e\x2e\x65\xcc\x36\x1e\x58\xa7\x8c\xa4\x4a\xd4\x05\x73\x5e\x2e\xb9\xb8\xa7\x4d\xa1\x51\x03\xcc\x89\x7f\xd4\xbb\x9e\xd0\xce\x7c\xad\xce\x88\x4f\xe3\x1b\x91\x67\x6d\xbf\x3b\x99\x2d\x8d\x68\x09\xb3\x4a\x16\x76\xf7\xb9\xc7\x15\xc7\x1a\x52\xc7\x5c\x9d\xaa\x38\x60\xbc\xef\x90\x6c\x17\x3b\xc4\x0d\x68\x22\xa5\x92\xaf\x4c\x07\xb5\xc6\x05\xd3\xba\xa7\x5d\xab\x3b\xd3\x44\x73\xe7\x9f\x2f\x9b\x53\x0e\x9f\x6f\xb7\x24\x89\x8b\x1e\xcf\xbe\xa3\xb2\x4b\x13\x34\x8a\xc8\x1b\x0e\xaf\x94\xcb\xee\xb6\xd0\xb8\xcd\x4f\xdc\xab\xf8\x5a\x39\x88\xb9\xd8\x0f\x60\xab\xef\xde\x29\x3b\x7a\x7e\x80\x51\xad\x44\xf9\x3b\xe6\x9b\xf7\x9f\xf9\x96\x93\xe9\x86\xd8\xb3\x24\xe1\xf7\xbc\xd3\xb3\x77\x56\x83\xba\x28\x20\x49\xbe\x60\xae\xe9\x54\x6c\xb6\x68\x20\x06\x0e\x06\x3d\x2c\x4f\xa7\x15\xa7\x17\x3c\xe1\x7d\xfd\x0d\x41\x39\x2b\xc5\xa9\x2e\x00\x1e\xa6\x6f\x7e\x8f\x8c\x60\x24\xde\xaf\x37\xbe\xa0\xc8\xa2\xc5\x81\x73\x75\x23\x1b\x1d\x1c\xc4\x61\x49\x85\x62\x34\xf3\x6d\x39\x2e\x47\xd3\xf8\xac\x73\xef\xf8\x16\x15\xe0\x12\x5c\x2d\xd1\x7a\xe1\x9e\x11\x67\xcc\x96\x6e\x1e\x3c\x60\x4c\xea\xd0\x79\x1d\xd8\x05\x71\xb1\xe8\x9f\x30\x00\x2a\x5c\x6f\x5d\x4d\x5d\x37\xac\x29\xbb\x65\xeb\x30\xcd\x5e\x02\xc3\xac\x18\xd2\xa9\xf3\x1e\x91\x61\x95\x7a\xd0\xa5\x37\xcf\xd3\x38\x94\x5c\x69\x58\x63\x26\xfc\x5b\xd0\xae\xc2\x7c\xd4\x1f\xbd\xba\x48\xde\xfa\x35\xe0\xfa\x0b\x39\xb8\x78\xf5\x6e\x7d\x53\x59\x12\x4e\x74\x35\xee\x33\xb3\xc8\x84\x2a\x46\x36\x71\x81\x6d\xad\x47\xbe\x61\x4f\x65\x9a\xb3\x5c\x72\x92\x57\x3b\xf6\x48\xb9\x47\xd4\xe4\x9d\xbc\x32\x46\xe1\x56\xb5\x18\xa8\x44\x5f\x9d\x27\xfa\x35\x6e\x03\xf7\x2b\xc3\xbc\xef\x94\x21\x31\xbd\xa6\xc1\x75\x5f\x2e\x79\x1e\xa2\xf4\x4d\xfd\x25\x5c\x15\xb9\xfb\xd7\xde\x52\x06\xc6\x38\x51\xa6\xcf\x0f\xea\x48\x63\x37\x2a\xb7\x06\xa0\x0d\xa6\x66\x54\x5e\xaf\x33\xda\x48\xb3\x2c\xe3\x42\x47\x18\xf6\xd1\x90\x79\x48\xb4\x85\x8c\x8f\xbf\xa4\xf1\x86\xb0\x47\xe3\xd4\x0e\x90\x28\x1f\xdb\xd3\x22\xa1\x6d\x55\x85\x14\x89\xf9\x87\x57\x95\x96\x39\x2a\x11\x0f\x07\xc2\xa5\xab\x38\x90\xbb\xe0\x59\x78\xcc\x05\x88\xf0\x52\x74\x89\x94\xe4\xa3\x4d\x55\x1b\x2f\x7a\xdf\x06\xd8\x63\xcb\x48\xd5\xa1\xaa\x26\x76\xf4\xc5\x71\x8a\x9a\x30\xe7\xfd\x89\x11\x79\x71\xc0\xf8\xcd\xc9\xf4\xb0\x70\x6f\xba\xe8\xd3\x83\xa0\x0f\x16\x7a\x3e\x48\x4e\x1a\x5d\xa7\x67\xd1\x22\x4d\x04\xa3\xb6\x70\x94\x56\x35\x13\x4f\x24\xed\x70\x77\xdd\xe4\xe9\x43\x06\xa1\x36\x96\xe8\xfb\x5c\x3a\x58\x6e\xee\x59\x73\xa6\x75\x70\x97\xef\xa5\x7b\x64\x97\x04\x31\xc4\xc5\xd7\x5d\x4d\x8c\x3e\x51\x18\x7f\xaf\xa6\xa1\x5a\x72\x51\xbc\xac\x5c\xee\xf8\x7d\x3b\x75\xd4\x5a\x3d\x0c\x04\xcd\x75\xc1\x0d\x17\x6b\xd5\x71\x10\x17\xd6\x2e\x09\x90\xa7\xa3\x40\xcc\xf2\xd8\x36\x71\x25\x7a\x01\x81\x32\x0d\x28\xef\xe7\x46\xd9\x29\x62\x40\xfb\x68\x80\x4e\x05\x0c\xef\xdf\x23\xac\x01\x2d\x86\x31\x6f\x7f\xe6\x6f\xef\x1a\x2a\xce\x48\x9d\x51\xe8\xdc\x1b\x9f\x7a\x50\xa5\x19\xa6\x2e\x73\xc5\x81\xdc\xda\x87\x2f\xd0\x13\x7f\x1c\xd6\xa0\x85\x22\xbf\x29\x7e\x67\x6a\x53\x9b\xa5\x7a\xbc\xec\x81\x4c\xa9\x35\x4d\x79\x7c\x3a\x00\x2c\x26\x71\x07\x24\x73\xf1\x8b\xff\x12\xe6\x91\x88\xb6\x0f\xe4\xee\x98\x7b\xb6\x1e\xaf\xca\x42\x39\xc6\x78\x6c\xae\x9e\xca\x04\x01\x34\x68\xe3\x17\xab\x99\xe3\xcd\x98\x11\x38\x60\xa6\xe3\x27\xa4\x81\x83\xeb\xe4\xbb\x9f\xd4\x47\x79\x36\xbc\x73\x99\x4a\x29\xf6\x31\x83\x19\xb9\xb9\xf6\x04\x1c\xc3\xa5\x8c\xc4\xd9\x8f\x48\xa9\xbf\xb1\x45\x35\xc5\x75\x83\x90\x71\x83\xfc\xd7\x8e\xc9\xa8\x34\xb3\xb3\x90\x50\x30\xf2\x1d\xcf\x64\x34\x6a\x33\xae\x46\xcf\x29\x52\x76\x0c\x35\x78\x79\xb7\x70\x42\xbb\xda\xb3\xb9\x7a\xfe\x14\x7e\x0f\x16\x8a\xd1\xb9\x6f\x4b\x44\x96\x02\x3a\x88\xbe\xac\x01\xd4\x2c\x17\xd5\xa8\xe8\xd2\xe4\x36\xbd\x33\xb6\xa9\xb7\xaa\xbd\x06\xcf\x17\x13\xbe\xe2\x8f\xb6\x4a\xd6\x38\xf5\x70\x21\xac\xd7\x90\x97\xa8\xce\xe6\x6f\x68\x97\x3b\xa6\x63\xfa\xf4\x02\xe8\xbb\xc6\xbf\xd7\xe5\x6a\x62\x9a\xd4\xf7\x49\xb6\xe4\xca\x1d\x8c\x34\x10\x74\x9c\x0c\x0a\xd0\xf4\xff\x9c\x54\x7d\x0a\x43\x2f\x60\x7d\x3c\x4d\x8c\xbe\xa5\x61\x4b\x93\xd9\x39\xff\xad\x93\xed\x72\x58\xe2\x53\xb0\x87\x1d\xe9\x42\x04\x2b\xf1\x0e\xc2\x80\xf9\xf7\x45\xd9\x62\xa4\xe9\x20\xa1\x44\x71\xe6\x6d\x1a\xa6\xd6\xa1\x34\x48\x71\x53\xb9\x1d\x60\x6d\xcf\xdd\xc0\x79\xa7\x4c\xb8\x01\x0d\x93\x33\x6b\x5c\x2e\x14\xa3\xee\xe7\xb4\x36\x79\x13\xb1\x9a\x08\xde\x1f\xeb\xd6\x38\x77\x0d\x11\x84\x87\x0e\xbe\x54\x0b\x72\x89\xca\x23\x54\x4b\xa7\xea\xc7\x77\xbe\xa5\x34\xb1\x78\x41\xc2\x3b\xdf\xdd\x5b\x14\xb3\x7a\x02\xea\x55\xe4\x11\x35\x9f\x61\x82\x24\xf7\xf7\x5d\xb0\x87\xdf\x8f\x15\xb6\x80\x31\x6f\xb3\x44\x9a\x56\x5a\x35\x16\x07\x3d\xa8\x0a\x37\x07\xbc\x6a\x8f\xf7\xf8\x2a\x29\xd8\x31\xbb\xd0\x15\xef\x8e\xb9\x27\xe4\x3b\xec\x41\x2a\x21\xe1\x2f\x23\x74\xe0\x77\xb6\x3f\x97\xfb\x88\xa3\x8d\x23\x19\xf2\xec\x1a\xe5\x73\x5e\xfe\xae\x8a\xc3\x34\x14\x0c\x62\x81\x87\x19\x40\x24\xf7\x3d\xa1\x6d\x2c\x9c\x02\x99\x8d\x0d\x47\x94\x04\x81\x22\x5b\xa8\xea\xe7\x9b\xc7\x20\x46\xde\x88\x52\x30\xc4\x72\x78\x59\x85\xab\xa9\x17\xef\x32\x89\x8f\xd9\xb7\x56\xae\xa6\x87\x42\x8e\x8f\x88\x5e\x7a\x11\x7a\x31\x75\x51\x65\x9a\x4b\xf6\xb5\xa0\xa0\x13\x27\x88\x88\x2c\xd3\x14\x10\x5c\x6a\xc1\x77\x7f\xb8\x03\xf2\x0d\xe4\xa9\x7c\xc4\x68\xe2\x84\xb1\x32\x1c\xc0\x88\x48\x4b\xd3\xef\x18\x92\x21\x56\xdb\x60\xf5\x9a\xdb\x7e\x42\x58\x09\xf3\x93\x4d\xb0\xc0\xc4\xf5\x0d\x19\x9a\xfc\x73\x00\x53\x97\x01\xf3\xbd\xe2\xea\x45\x5c\xb2\x95\xb7\x49\xe7\xca\x77\x3a\x67\x46\x9c\xb0\x7a\x02\x90\xcf\xc9\x5d\xc8\x8f\xbf\xda\x99\x37\xe8\x96\x4d\x9c\x55\x08\x64\x85\xa0\x9e\xb6\x1f\x2b\x28\x91\x4f\x31\xce\xbb\xbb\x5d\x2d\xb2\x54\x5f\xfe\x0f\xad\x54\xaa\x17\xcc\x7c\xea\xf1\x08\x7a\xa8\x4d\xd9\xd4\x2e\xea\xe7\x7a\x45\xf8\x34\x05\x44\xc2\x81\xc2\xf1\x9b\x5c\x53\x9f\xa0\xdd\xfb\xd6\x34\x9e\x41\xeb\x63\x85\x81\xe5\x52\x4f\x27\x50\x75\xf2\xdf\x37\x44\x01\x45\x28\x2c\xa9\xdc\x93\x6d\xba\xaa\x1e\x67\xb5\xa4\x1a\xce\xc3\x7a\xce\x51\x98\x16\x89\x0c\x3a\xe0\x75\xa2\x7f\xf4\xea\x16\x06\xc4\x0b\x24\xfb\xd0\x5c\x39\x2d\x3b\x10\x71\x30\x43\xee\xa9\xdd\xef\xbf\xb8\x2d\xb5\xa8\x0e\xa8\x3a\xd9\x1d\x91\xcd\x02\xa9\x65\x21\x1f\xee\xde\xe2\x40\x3e\x5c\xa6\xc8\x3b\x39\x94\x85\x3e\x5c\x65\x5d\xc3\xb2\x9b\xb1\x6b\xe6\x74\x91\xe0\x4c\x7f\x4a\x41\x69\x09\x29\x48\x48\x3e\xf2\x9a\xd4\x8c\x83\x3c\xdb\xe5\xc3\x35\x3e\x38\x6a\x97\x7b\x51\xc8\x12\x14\x8a\xd1\x75\xaf\xe8\x9e\xcc\x75\xcc\xf8\x8e\x14\x41\xb0\xff\x2d\x45\x54\x36\xe3\x6e\xd1\xaf\xa1\xf2\x18\xf5\x49\xa8\x51\xb1\x72\xbf\xa8\x67\xaf\xb3\xaa\x13\xea\xfa\x63\x47\x17\xab\x52\xdf\xa1\x9d\x08\x7f\x4d\x7b\x51\xf5\xf5\xf0\x29\x83\x09\xc7\xc6\x6d\x2d\x02\x11\xb5\x44\x66\xfc\x7b\x93\x45\x74\x48\x0c\xab\x52\xb7\xaa\x59\x69\xe9\x63\x39\x58\x6d\x24\xe5\x46\xf6\x8f\x10\xc9\xad\x8d\x19\x00\x86\x78\x7e\x69\x2b\x3e\xcd\x00\xff\x80\x79\xc4\xef\x36\x40\x30\xb8\x91\x32\xaa\x36\x4e\xf1\x30\xa9\xef\x51\x69\xa9\x04\xcd\x55\x8b\x94\x4e\x9d\x57\x67\xd8\xc2\x36\xf6\x00\xa6\xf2\xfa\x6d\xf0\x15\xae\xa3\x65\x55\x09\x73\xd7\x06\x51\xda\xf2\x09\x11\xff\x2f\x87\xee\xd2\x29\x26\xfc\xa6\x15\x94\x53\xf3\xc1\x2e\xf8\xa0\x12\x6e\x12\x37\x4d\xe8\x73\xf7\xcd\xbf\x40\x8f\xdc\xe5\x38\x09\xab\x67\x1e\xe0\x43\x9b\xb2\xe9\x01\x61\xe8\x0e\x6d\x90\x9e\xef\x3e\xac\x13\x3c\x83\x40\xda\xb0\x7d\x7b\x9e\x8a\x6c\x15\xbe\x55\xf1\x9a\x9d\x5c\xa6\x29\x83\xa3\x2a\x06\xb2\xc8\x0c\x57\x90\x78\x68\xc8\xf1\xa9\x37\x68\x5c\xd0\x44\xdd\x16\x1c\x97\xf0\xa0\x91\x4a\x6e\x16\x20\xaf\x42\x40\x65\x26\x7f\xf3\xb3\x6a\x8d\x19\x24\xfa\x5e\xd7\x3c\x38\x5a\x4d\xce\x6e\x9e\x22\xb3\xf8\x42\x31\xaa\x3e\xa9\x30\x86\x42\x37\x20\xfc\xca\xe2\x28\x9f\x5f\xad\xca\xe6\xbd\x4d\xcc\x3c\x5d\xb1\xd7\x5c\x11\xb5\x18\x8e\x25\xce\x61\x37\x69\xe0\xf6\x06\xf6\x7d\xec\x8a\xfb\x6e\x55\xff\x30\x85\x2e\x50\x06\x49\xe4\x25\xcf\xc3\x4a\xa0\x12\xe5\xad\x5d\x6b\xe9\x28\x35\xe8\x5a\x98\x34\xd2\xb9\x89\xf9\x89\xed\x0a\x04\x2f\x70\x91\x17\xf0\xd9\x62\x73\xb7\x10\x38\x0b\x7d\x4b\xf4\x47\xde\x3b\x4f\x06\x69\xe4\x80\xf3\x86\xd1\x35\xee\xec\x2c\xf5\x89\x5f\x69\x30\x03\xae\x8c\x3d\x5b\xc1\x90\x54\x42\xf5\x22\x38\x73\x67\x9b\xcc\x3a\xe3\xf3\xc2\x8d\x1f\x8b\x03\xb9\xbb\x16\x48\x7d\x1c\xb7\x56\x28\x46\x4f\xce\xd3\x85\x69\x33\x5a\x4d\xbb\x57\xcb\xd3\x50\x8a\x2f\x1b\x3f\x60\x44\xf0\x31\x73\x3b\x6e\xcb\x6e\xc4\x1a\xf2\x1c\x14\x04\x48\x10\x6c\xe3\x32\x3e\xbf\x37\xbd\x26\xfa\x54\x63\x6c\xf3\xc2\xfb\x25\x2b\xdd\xea\x2b\x14\xa3\x3d\x13\x65\x74\xa1\x25\x3f\x40\x16\xc8\x12\x3d\xbc\x3e\x31\x45\xf0\xc1\xd2\x22\xfa\xe6\xaa\xf3\xf5\x80\xd6\xf4\xb2\x28\xd1\xdc\x4f\xd7\xe8\x40\x12\xdf\x4a\xdd\x45\x07\xcc\xdb\x07\xa7\x69\x5a\x33\x6c\x69\x23\x98\x3f\x3c\xa1\x0b\x21\xbb\xd8\xb3\xa1\x74\x1e\xc8\x33\x57\x01\x9c\xd1\x90\x89\xc1\x9f\x71\xf9\x43\x1a\x9a\x96\xb2\x40\x04\xe7\x6f\x9e\xae\x01\x2a\x78\x16\x52\x43\x9e\xe8\x4e\xfd\x72\xd6\x48\x11\x0f\x89\x87\xed\x50\xd9\xba\xdf\xd4\xe0\x50\x25\xe4\x55\xc1\x8e\xd0\x58\x22\xd9\x9e\x65\x86\xc0\x48\xa1\x25\xcf\xdd\xbf\x45\x11\xa0\x15\x36\x8e\x03\xf9\xcb\x1e\x1e\x21\xea\x62\x17\x5c\x7a\xf9\xc5\x64\x2e\x9a\x20\xe3\x42\x1d\x7b\xc8\x4d\xa6\x78\x7f\x85\x51\x5d\x61\x01\x62\xb5\x56\xeb\xd9\x91\xd1\x39\x69\xd2\xdb\x8a\x6e\xdc\x3d\x4b\x70\x2a\x1b\x48\xb8\x39\xec\xd8\x7d\x66\xf2\xdf\x77\x16\x8a\x51\xf0\x18\x3c\xfc\x22\x5c\xc2\x6e\x66\x76\x60\x2e\x17\xf2\x76\xb8\xa1\x66\xc0\xff\xae\x91\xef\x89\x17\x50\xb8\x74\x8d\x43\x4e\x36\x1c\x70\xcf\x7c\xac\x85\x83\xef\xce\x93\x2c\x8c\x00\xbb\x2e\xef\xc9\x2a\xc2\x20\xfb\x35\x7d\x42\xcf\x43\xde\x94\x69\xca\x07\x3c\xd7\x7f\x4e\x92\xef\x36\x5b\xa5\x0e\x82\xdd\x09\x9a\xb4\x2c\x7c\xf2\x8b\x03\x86\xad\x19\xe3\x95\xa4\x05\xf1\xb3\xaf\xa6\xf6\x3a\xf1\x2e\x13\x96\x7f\xab\xc5\xb2\xf9\xdc\x7b\x89\x47\x9e\xa1\x9a\x80\x8f\x8b\x42\x8f\x7b\x92\xc4\x9f\xf2\xdd\xc5\x17\xc9\xf8\x11\x06\xb4\x86\x02\xa1\xf0\xa7\x27\x40\x7b\x37\xa4\x67\xd2\xb3\x54\xf3\xd1\xf7\xec\x82\x1b\x73\x71\xfc\x4d\x94\xf5\xbe\x75\x9f\xe4\x22\x78\x0a\xce\xd5\x3c\xd3\x96\xd1\x4d\xf8\xf7\x16\x8a\xd1\xa3\x9b\x65\x24\xab\x51\x6a\xf3\x5c\x76\xb6\xf0\x45\xb7\x50\x3d\x00\xb9\x71\xa3\xe3\x0c\x5d\x01\xad\xe9\x39\xc4\x75\xe1\xc2\x39\xb6\x24\x4b\xe5\xc0\x01\x01\xca\xdd\x80\x31\xe1\x98\x86\xf6\xc1\x56\x55\x1c\xb4\xdf\x68\xb6\x3d\x0d\xaa\x8c\x17\x0d\x3a\x7a\x74\x16\x25\x91\x29\x02\x3e\xbd\xa9\xc5\xda\x46\x24\x57\xb9\x99\xdd\xb0\x11\x97\x52\x35\xcc\x1a\xaf\x6c\x81\x37\x5d\xa6\xac\x44\xc4\xb4\x32\x7f\xf9\x33\x23\xf5\xaf\x00\x15\xb6\x31\xbc\x13\x6e\x8e\x85\x34\x04\x36\xee\x9f\x5f\x85\x45\xb9\xca\x65\xc2\x68\xd0\xec\x3d\x5d\x55\x9e\x4d\xe5\x45\xcc\x7e\x17\x36\xc9\x32\x44\xea\x38\x21\x50\xe5\xf6\x6b\x06\xa0\x1e\xc0\x31\xd4\x01\x4f\x6e\xe7\x3a\x2d\x14\x12\x4b\x68\x0d\xf0\x72\x22\x58\x23\x21\x7f\xbc\x5a\xf8\x4d\x90\x56\x1d\x8d\x74\xde\x69\x34\x2f\x56\x5c\x0e\x6b\xa1\x5d\x81\x1b\xf2\xe1\x25\x1a\x25\x7f\xf6\x4c\xe8\x9a\x7f\x74\xf0\x25\x4a\x0f\x42\x28\xed\xd5\x19\xf6\x4b\x7d\x01\x66\x84\xb3\x16\xd2\x23\x97\xbf\x62\xa1\xec\xc0\xb8\x0a\x01\xd4\xec\x31\xa1\xcb\x75\x15\xd8\x6a\x0d\x3a\x04\xf7\xda\xf5\x60\x7f\x22\x93\xc3\x7b\x34\x7d\x60\x44\xdc\x94\xec\x65\xde\xab\xa8\x52\xd7\x88\x1f\x27\x35\x7c\x4f\x0e\xda\x24\xaf\x77\xd2\x8f\x9a\x80\xc6\x18\x22\xfe\x04\x75\x7c\xac\x8a\x6f\x7d\xe3\x41\x31\x4b\x74\x50\xad\x9e\xe8\x57\xcc\xbf\x52\x69\xcf\xd6\x29\x43\x76\x2a\xab\x99\x3b\xad\xa7\x85\x8b\xce\x09\x4e\x82\x62\x61\xfc\xfc\x60\x76\xaf\xa2\x12\xe1\x32\xa9\x9c\x3d\xf1\xb7\xbd\x8a\xb5\x36\x6d\xf2\xc6\xa3\xb1\x83\x41\x91\xc9\xc2\x12\x4f\xa7\xa2\xd5\x5a\x25\xcf\x2d\x09\x12\x49\xaf\xff\x39\xd8\x6a\xc9\xee\xf1\xcb\x9d\xb3\x02\x3f\xa0\x61\x2d\x71\xb9\x2c\xfc\x69\x78\x19\x72\xeb\x31\xad\xca\xa6\x2e\xd8\xc6\x1f\xec\x4d\xc7\x9a\x15\xee\x17\x0d\xe4\x07\xad\x87\x8e\xb9\x1d\x34\x40\xfe\xa2\x03\xaf\xa4\x97\x3d\xe5\x5e\x97\x3f\x55\xb4\x8b\x90\xef\x73\x85\xb5\x7c\xf7\x43\x19\x7b\x21\xc0\x45\x2c\x7c\x5b\x96\xa9\x5c\x97\x20\x8e\x30\x7f\x7f\x43\x63\x59\x85\x01\x88\xa8\xc3\x9f\x7b\x75\x82\x7c\xdf\xb8\x17\xb0\x8f\xf1\x82\x5c\xd2\xa3\xa5\x81\x21\x4b\x7c\x8b\x8d\xa5\xcf\xe8\x66\x3e\x2e\xf5\x70\xc2\x09\xcf\x0f\xdd\x0a\x01\xa0\x81\x5c\x62\xa3\xd4\x43\xf7\x4b\x2a\x20\x3a\x40\xe5\x32\x6f\x1b\x04\x07\x15\xe8\x8a\xd3\x40\x2c\xf0\x6b\x28\x4e\x36\x0f\x74\x6a\x36\x93\x88\x53\x45\xbc\x94\xeb\xff\xef\xb7\x6b\x3c\x6e\x04\x3e\x50\xb9\xad\x7b\x52\x4d\xbc\x3a\xae\x50\xde\xdc\x37\xd7\x39\x5a\x3b\x8f\xdf\x75\xe2\xfd\x9d\xbd\xf9\x14\xfc\x6c\x3e\x38\x7b\xf2\x4e\x38\x53\x4d\xca\xfb\xa2\xa5\x3b\x13\x67\x78\x48\x21\x08\xa7\x2a\x9a\x17\xdc\xa9\xc4\x76\xa7\xcf\x75\xb9\xc1\x41\xfe\x92\xd7\x74\x42\x78\x0d\x0b\x1d\x1d\x67\xbb\xd2\x7d\x40\x56\x55\x30\xda\x8d\xab\x4f\x6a\x3d\x3d\x2c\x21\x4a\x83\x77\x29\xcd\x8c\x90\xa9\x58\xe4\x3b\xbb\x55\xfb\x60\xc7\x43\x81\x83\xf8\x4d\x37\x7a\x59\x4b\x61\x69\x25\xdc\x87\x5b\x35\x46\x13\x6d\x7a\x29\x54\xfa\x49\x45\x43\x9f\x78\x70\x4a\x23\xa2\x70\x64\x2c\x17\x23\x80\xfa\x9b\x0f\x9e\xc8\xea\xf6\x83\x1b\xdb\x92\x93\x42\xc5\xfa\xd2\x2e\x2e\x39\x73\x37\xdc\x97\x1f\x40\x7d\xbe\x42\xe3\x34\xb7\x1e\x4e\x4f\x88\x87\x12\xd6\x56\x6e\x7d\x7b\xf6\x40\x95\x71\x53\x20\x91\xbe\x2d\x93\xf2\xb0\x16\xef\x93\x6b\x4a\x82\x65\xea\x73\xba\xa5\x98\x7d\xdd\x77\x42\x71\x87\x41\x7c\xb2\x9e\xfb\xe8\x1e\x05\x8d\x41\x6b\x25\xae\xaf\xf0\xac\x02\xa2\xe1\x2a\x85\x85\x62\xf4\xb1\xd3\xe1\xbb\x5e\x17\x97\x94\x4a\xd7\xe3\xd2\xe9\xc3\x14\x15\x3e\x98\xe3\x98\x8f\xaf\x19\x2e\x32\x18\xf0\xd6\xe3\xeb\x6e\x4c\x6d\x83\x3d\x48\xeb\x01\xa9\x11\x9f\xab\x9c\xe7\x2e\x90\xba\x29\x0e\xba\x43\x95\x24\x78\x5b\x8b\xc8\xdc\xc0\xaf\x09\xd2\xc8\xa5\xd7\xa4\x04\x2c\x54\xc4\x6c\xb9\xe8\x9f\x59\x41\x08\xc4\xd5\x19\xa7\x4f\x6a\x9e\xaa\x59\xdd\x0a\x72\x8d\xae\x78\x47\x6b\x8e\xf8\x40\x5e\x4a\xd6\xde\xf8\xe8\xaa\x73\xd2\x7e\x66\x8f\xfe\xdb\xef\xde\x97\xdd\x33\x4d\x07\x7b\x53\x70\x6f\xfc\x3d\x1f\x9a\x96\x1d\x5e\xcd\xee\xe0\xd3\xb3\x8f\x2c\xd6\x24\xd2\x39\x67\xc7\xa7\x5c\x87\x45\xae\xed\xf5\x4f\x09\x37\x3e\xb8\x15\x38\xaa\xe6\x59\x8d\xfc\x88\x82\x94\x1c\x6a\x9c\x58\xab\x58\x3c\xa9\x94\xc9\x9d\xa3\xe0\x83\x90\x6d\x33\x40\x6b\x6d\xd9\x02\x3b\x91\x4b\xa2\x44\xef\x5a\x27\x5f\x62\x0f\xcc\x47\xa2\x4e\x85\xda\x6d\x51\xc8\xb8\x7e\x7c\xa7\x16\xe4\x18\xb2\xaa\x71\xda\x05\xf8\x88\x67\x1e\x16\xde\xb4\x20\x60\x59\x1c\x30\xc6\x5d\x29\x29\x1c\x24\xa3\xaa\x81\x4f\xd7\x48\x46\xc8\x0f\x92\xd0\x73\xd3\x7e\x09\xc4\xb9\x8c\x8b\x41\x9b\x3f\xb8\x7f\xbc\x3c\x7c\x34\xf4\x20\x86\xea\x6f\xe2\xc1\xb9\x52\xa0\x1c\x26\x40\x19\xc5\x00\xb3\xeb\x59\xcd\xea\x0a\xf5\x27\xf4\x77\xf3\x93\x17\xcb\xa0\x5b\x72\xb9\x94\xae\x03\x6b\xfe\xe8\x7a\x99\x5c\x34\x24\x59\x3a\xfa\xd5\x2e\x18\x6e\xcc\x98\x36\x83\x7f\xc7\xff\x3c\xde\xaa\xcd\x47\x6c\x0c\x13\xcf\x68\xc5\x7e\x58\x1c\x70\x7f\x28\x14\x23\x53\x53\x58\x4a\xb3\x71\x1e\x27\xcf\x39\x00\x3d\x21\x9b\x11\x0f\xea\xe5\xe8\x48\x6f\x76\xd7\xd4\xa8\x1f\xf0\x56\x04\xe6\xcd\x84\x50\xd8\x5b\xbe\xbb\xa1\x71\x11\x04\x90\x46\xac\xae\x39\xf3\x61\x45\x04\x24\x54\x12\xbd\xcf\x68\xe0\x3a\x3f\x60\xd8\xab\x04\x4e\x12\x6b\x0f\x9e\x2e\x5f\x4b\x08\x3e\x07\xe7\x2c\x50\x80\x39\xe9\x0c\x0d\xd2\x97\x8f\x8c\x83\xe3\x1e\x5f\xbb\x95\x50\xb0\x61\xaf\xdb\xa7\x39\x1e\x92\x06\x0d\x90\xe8\x97\xe4\x3f\xa8\x29\xa9\x71\x16\x24\xf4\xb2\xfd\xd1\x3a\x31\x5a\x3d\x2b\xd1\xaf\x0e\xbc\x5b\x94\x07\x85\x62\xf4\x35\xef\x14\x23\xde\x38\xad\x3a\x85\x9c\x42\x6e\xf1\x1a\xb9\x67\x1c\x4c\x6c\x5c\xa9\xa8\xdc\x10\x73\xdc\x49\xc5\xee\x89\x0b\x66\xc9\x15\x7b\x1f\xcb\x6a\x21\x01\xef\xd9\x38\xb4\x5d\xf3\x07\x61\xa1\xc0\x02\xfc\xb0\xb7\x4d\x45\x6f\x81\x07\x5d\xa1\x18\xfd\xb8\x53\x3b\x58\x0e\xf2\x2a\x92\xff\x75\x8f\xe2\x84\x5f\xc2\x2e\xb1\x1c\xc2\xf5\x6e\xf2\x1f\xbc\x18\x92\xcd\xeb\x50\xa9\x84\x1c\xa5\xc7\xd7\xd5\x25\xf4\xc9\x1b\xd8\x03\xb2\xfa\xfa\x37\xb5\xae\x07\xb5\xb1\x8b\x54\x11\xcd\xe8\x29\xe1\x45\xdc\x31\x6b\xea\xec\x19\x33\x0b\xc5\x68\xd6\xcb\x6d\x0a\xcc\x3b\x70\xe2\x8c\x8c\xbf\x8d\x48\x10\x1e\x5d\x14\x56\x9c\xa4\xbc\xac\xae\x84\x3a\xbc\x1b\x7b\x1e\x0e\x54\x77\xbf\x7c\xe9\xcc\xe4\x36\x89\x77\xfe\x17\xdb\x94\xd2\x8c\x30\x2b\x74\xa5\x19\xd5\x71\xf9\x23\xc5\xdb\x84\xb7\x92\x96\x8f\x50\x28\xe3\xcd\xe4\x5a\x2c\xb5\xeb\x84\x33\x5a\xf5\x05\x78\x3f\x7f\xe1\x3b\xaa\x0d\x31\xc6\x16\xb0\xbe\x8d\x07\x3a\x55\xcb\x43\x2c\x3c\x27\x1b\x5a\x41\xe9\x12\x0b\x7b\x7e\x7a\x70\x9a\x3d\x9a\xd7\x91\x8b\xfa\x12\xe2\x29\x54\x33\x1f\x58\x35\x54\xe1\x21\x70\x00\x8d\xf9\xa3\xfd\xa3\x95\x36\x3e\x75\x91\xa7\x1a\xe0\x19\x7f\x95\x62\xe6\x1e\x77\x08\x34\xfe\xb4\x59\xf1\xb9\x47\x6a\x21\x9d\xbb\x56\x6b\xe6\xc4\xfb\x51\xd8\x58\xff\x51\xc3\x49\x57\x28\xf6\x41\x64\x2b\xd7\xfe\xbc\x54\x56\x24\xba\x7e\x59\x34\xe9\x61\xd9\x7e\xec\x2c\x94\x29\x0d\x0a\x5d\x05\x02\x3c\x33\x73\xae\x88\x42\xd7\x7a\xf1\xbb\x07\xb1\x8a\x27\x1b\x70\x99\x80\xbb\x12\x84\x81\x77\x94\x2e\x9d\x3a\xcc\xb9\x5b\x93\x4d\x2c\x85\x0c\xa3\x90\x97\x01\xdf\xd2\x2c\xb9\x30\xe8\x98\x8a\x1d\x1f\xae\x19\xae\x9c\x4a\x56\x83\xd7\xb6\x5e\x11\xb5\xb3\x1c\x44\x98\x98\x87\xc7\x5f\xeb\xf2\xcb\xb5\xe8\xc5\xd1\xdd\x53\x12\xde\xa7\x31\xf2\xb0\xe2\xd3\x80\x7c\xee\x87\xf1\xa7\xd3\x34\x05\x28\xec\x05\x12\x3a\x27\xfb\x48\xf3\x8f\xc8\x77\xc8\x68\x89\x78\x7e\x46\x52\xf2\x82\x51\x59\xec\x85\x1b\x56\xf1\x24\xee\x59\xef\xe3\x06\x76\x03\x01\x65\x96\xe5\xea\x64\xad\x90\x98\xc5\x05\x55\xa0\xb7\xfe\x81\x76\xc5\xf8\x54\x8c\xf4\xa3\x91\x9b\x94\xe9\x11\x23\xf5\xba\x0b\x15\xc9\xc1\x65\x3a\xc9\x38\x55\x17\x82\xc1\x53\xf4\x79\xe1\x87\x60\x31\xea\xc7\x39\x50\x8a\xf0\x36\xf7\x40\x06\xd0\xd9\x19\x5f\x5e\xb9\x07\xc7\xa5\x9b\x84\xe1\x96\x9e\x8f\xf9\x85\xb5\xc3\x94\xfb\x97\x9f\x97\xe8\x55\xc5\xc5\xa4\x8f\x93\x66\xa3\x87\x5f\x52\x1c\xdf\x6b\x88\x05\x30\xb0\xb2\xef\xcd\x98\x61\x5a\x55\xf8\xfa\xc6\x7f\x99\x4a\x5f\x9e\x0f\x98\x2f\xed\xa3\x21\x3f\xb9\x77\xae\x3a\x45\x33\x05\x90\x26\xdf\x3a\xa8\x94\x67\x88\x05\x4e\x13\x73\xa3\xdf\xfa\xc1\x51\x7a\x55\xe7\x22\x01\xf3\xce\xfd\x56\x53\x9a\x23\xb5\x3a\xf5\x7d\x52\x72\x93\xea\xe3\xfe\xc3\x8a\xdf\x0f\xf2\x78\x37\x25\xb7\xc7\xd3\xae\x74\x2a\xf0\xa0\xbc\xf7\x7f\xd7\x13\x6a\x9d\x58\xa8\xa1\x32\xe1\x2d\x80\x61\x63\x81\xba\xb5\x0c\xf9\xad\xbd\xe1\xaf\xef\xd1\x14\x21\x91\x4b\xbc\x2c\x20\x3e\x9a\x75\xa5\xaa\x70\xe6\x12\xe9\x4e\x6c\x78\x51\xf6\x39\x38\x8d\x99\xf8\x41\x6a\xb3\xb5\x72\x59\x1a\x50\x3a\xa6\xcf\x8c\x9f\xec\xa6\xf9\xe7\xe9\x8f\x8e\xf8\x74\x2f\x35\x8a\xf9\xe8\x09\xad\x21\x1a\x24\x11\x34\xb7\xb8\xf3\x9c\x53\x69\x57\xc1\x54\xf5\x8a\x93\xd9\x4f\xc6\x21\xa3\x3c\xd1\xe8\x17\x68\xe5\x1d\x6d\x8a\x5f\x12\x71\x5d\x50\x10\x78\xaa\xab\x45\x0a\xbd\x54\x8a\x8b\x6f\xbe\xa7\x4f\x6c\x15\x8d\xcb\x80\x32\x08\xcc\xb9\xbf\xdf\x05\xb7\xfb\xfb\x79\xb9\x63\x9f\x38\xaf\xe5\xb2\xb4\xb0\xeb\x52\x96\x8c\x82\xef\x3d\x92\x16\x44\x1d\xd3\x66\xf0\xbd\x71\x5c\x25\xcc\x72\x31\x09\x5e\x17\xbf\x09\xae\xda\x85\xc5\xb4\x86\xaa\xc4\x53\x1d\xaf\xfe\xb6\x56\x0b\x28\x3c\x1b\x49\x01\x4b\x06\x5a\x9d\xfd\x79\xfc\xff\x60\x4a\x0d\x33\xac\xdf\x1f\xd7\x67\x61\xbd\x18\xd4\x5a\x77\xbc\xde\x26\xd6\x93\xa3\xb4\x48\x25\x01\x06\x9c\xa7\xc9\xaa\x56\x5c\xae\xaf\x28\xde\x12\xd1\x42\x7c\x58\x4f\xd8\xb8\xb7\x6e\x4f\x7a\xbd\xc4\xe5\x42\x7d\xd1\xe4\x03\x3a\xec\xd5\x06\xef\xa1\x01\xe3\xd3\x4e\x36\x3b\x41\x84\x09\x71\xa2\x25\x72\xf4\xde\xef\xa8\x8d\xdd\x75\x0b\x34\xcb\x78\x24\x54\xd8\xa3\x0f\xbe\x26\x8f\x40\x15\xd7\x30\xa3\x0d\x1a\xdf\xf0\x6b\x75\x7d\x2f\xec\x03\xd7\x05\xd6\xe6\x33\xab\x14\xef\x2e\x46\x02\x00\xf4\x46\x3f\xde\xab\xb0\xe8\x42\x7e\x96\xee\x6a\x15\x50\xad\x70\x00\xaf\x52\x4b\xf4\x3d\x03\x7d\xd1\x5b\x1c\x02\x60\xba\x77\x6b\x59\x26\x10\xb7\x3c\x2e\xa5\x1e\x2d\x1c\xa2\x4d\x9d\x68\xbc\xcf\x20\x35\x4c\xee\xad\x5b\x26\xa4\x3d\x4c\x7e\xfd\x09\x4c\xca\x9d\x19\x77\x3a\x42\x43\xc0\xf6\x7f\x6c\xb4\x26\x9a\x93\x60\xef\x84\x94\xc9\x40\x7e\xae\xad\xaa\x4f\x30\x0b\xc3\x8c\xd9\x1c\x93\x97\x61\x95\x11\xcb\x22\x85\x62\xf4\x9b\x41\x02\x33\x85\xb8\x4a\x76\xee\xf9\x47\x54\x55\x05\xd0\x05\x6b\xd2\x1a\xd4\xd4\x9f\x1a\x97\xbd\x00\x66\x75\xa4\x2e\x0d\xc9\x61\xb8\x6b\xab\x4e\x93\x8a\xcb\x5b\x5b\x38\xfc\x6e\x28\x09\x2c\x0a\x0b\x6b\x02\x6a\x9d\x7b\xe3\x7e\xad\xe1\x82\x38\xe9\x2a\x4e\x54\x3f\x7c\xf3\xd9\xea\x60\x16\x33\x45\x32\xb6\x4b\x71\x05\xc4\x9e\x2d\xba\xf4\x3b\x16\x2b\xe0\x38\x75\xc4\xb6\xf3\xb9\xb3\x52\x46\x84\x92\x11\x99\x47\x4b\xef\x91\x65\x1e\x4f\x2f\xaa\x9a\x86\x13\xee\x0d\xf8\x68\x2c\xfe\x42\x93\xb4\xa0\x5f\xa1\xd4\x4e\xdc\x7b\xbe\xbd\x2b\xfb\xb3\x3e\xca\xaa\x98\x01\x46\xd4\x58\x34\xbd\x5d\x19\x8d\x32\x9e\xc7\x89\x07\x79\x4c\xc3\x4a\x80\x1c\x76\x53\x28\x11\x15\x07\xf2\x63\x8e\xe9\x6a\xd0\xcc\x16\x88\x5e\x63\x83\x6a\x40\xed\x58\x0e\x66\x25\xfe\xaa\x72\x6f\xdf\x2e\x37\xf7\xcc\xae\xce\x42\x31\xea\x38\xa4\x6b\x66\xe2\x72\xc2\x59\x36\xf1\xc5\x17\xe8\x9b\xaa\xea\x10\x46\x1b\x6a\xc6\xfe\xd0\x9d\x83\x45\xd9\x53\x03\x50\x60\xcf\x71\x89\x1f\xeb\x6f\x41\xfa\x1b\xaf\x2d\x1b\x2e\x0a\x99\x38\x02\x0a\x05\x74\xf3\x73\x2b\x04\x49\x98\x36\x3d\x97\x8a\x29\xdb\x80\xf1\x21\x4f\x2f\x4a\x30\x7f\xd7\x70\xf9\x5d\x3f\x51\x53\x02\x61\x24\x08\xb0\xe8\x04\x14\xa7\xc9\x84\x09\xd7\x89\x8d\x6b\x84\xba\xb4\x92\x98\x34\xbd\x1e\xc8\x6b\xa1\xe4\xe2\x1a\x58\xda\xe4\xbe\x33\xf5\x2c\xb5\x1b\x1a\x9f\x1f\xfe\xfd\xd6\x77\x67\x37\x79\x25\x64\x71\x6a\xa7\x0e\x29\x7a\x1f\x4d\x3d\x2c\xca\x3c\xb5\xf8\xdf\xe5\xba\x6c\x12\xd8\x01\x17\xa3\x99\x6d\xef\x11\x3b\x1e\xdb\xdc\x74\xf1\x6b\x0f\x42\x26\x34\x63\x5a\x67\xfc\x9b\x6e\x94\xe2\x3b\xb0\xab\x43\xd2\x07\xcc\xed\x3b\x14\x98\x63\x80\xe3\x88\xf2\xc1\xf9\x19\xa1\xaf\x00\x11\xe8\x02\xe6\x82\x21\xba\x7b\x2c\xe7\x05\xb8\x89\xdb\xe2\xb8\xd5\x8a\xd6\x24\x60\xcd\x8c\x71\x9a\xcb\x47\xc8\x88\x2a\xde\x64\xcc\xea\xd7\x59\x98\x75\x97\x3b\x73\x27\xe7\x7d\x99\x76\x22\xe2\x12\x50\x5c\x14\x03\xe6\x96\x45\x70\xdc\xaf\x76\xc0\xd6\x3f\x0e\x6b\xf4\x85\x14\x33\x43\xdc\x0c\x66\xc6\x58\x3e\x7d\x84\x48\x42\xfc\x80\x85\x7e\xc0\xed\x44\xa3\x1f\xdf\x35\x54\x89\x48\x5c\x6b\xe5\xd5\xf9\x1a\x7c\x18\xbb\x81\x4f\xc4\x20\x3f\xa9\x75\xbe\xba\xef\x14\x98\x53\xb8\x11\x8c\xeb\x34\xf5\xef\x0a\x97\x0b\xe0\xf3\xf2\x6b\xf6\x28\x23\x2d\xe2\xd7\x50\x1f\x64\x8f\xbf\x5d\x9c\x5e\x57\x34\x53\x75\x0c\xd9\x34\x4c\xe4\x64\x71\x9c\xe0\xf9\x6e\x74\xce\x1b\xd9\x6e\x60\x1d\xb9\x71\x2e\xe3\x61\xfe\xc6\x18\xe5\x66\xf0\xa2\xf7\xb2\xfe\xe9\x56\x1f\x59\x92\xfa\xcb\x18\x0f\x69\x3b\x1f\x71\x63\x0d\x31\x46\x5d\xd9\xa3\xe1\xa0\xc2\x1a\x62\x80\xae\x49\xf6\xea\xed\x4b\xb5\xb9\x0a\x29\x97\x89\x15\xba\xe2\x72\xcc\x1d\x5a\xa3\x9d\x2c\x12\x38\x9c\x8f\x1e\xff\xf0\xbf\x4b\x92\xc0\xe1\xa0\x5a\x2d\x2e\xb4\xe5\x93\xdf\xb8\x77\x78\x1a\x0f\x10\xa9\x80\x2d\xac\x89\xca\xba\x22\x15\x66\x81\x26\x8b\x35\x7a\xb9\xaa\xe6\x12\xfa\x40\xd6\x3b\x30\x2a\x0d\x27\xb5\xbe\x16\xe6\x51\xee\xc7\x60\x56\x51\xe8\xc6\x28\xf4\x5a\xdc\x8c\x72\xeb\xe7\xea\x7e\x80\x7e\x1d\x7b\x76\x02\x23\xca\xcf\xed\x57\xd4\xfb\x18\x69\xf5\x43\x32\x17\x1e\x3a\x27\x33\xe7\xf1\x7d\xe2\xa5\xd9\xe7\x97\xef\x14\xb0\xa9\xc0\x71\x31\xcc\x39\x8c\xde\x8e\xd1\x59\x62\xfd\x8d\x53\x92\xd5\x89\xf3\xa4\xdb\x35\x54\x53\xe8\x07\x7c\xce\xc7\x6f\x84\x2f\xb4\xcb\x0a\xa0\x2b\xae\xc8\x0a\xc5\xe8\xa5\x37\xdf\x23\xdb\xd3\xf1\x1f\x1d\xd2\xa5\xcc\x02\x29\xe3\xc6\x84\xf1\x2f\xdf\xc3\x74\x32\x54\x9c\x2b\x83\x21\x17\x34\x07\xde\x5c\x29\xaf\xc7\x32\xe8\xb1\x17\xa3\xb6\x37\x35\xaf\x5a\xea\xc5\x81\x32\x4c\xda\x92\xc6\x27\x9e\x91\xbf\xd5\xa0\x89\x37\xed\x88\x7b\x15\xf6\x68\x10\x20\xae\xf4\x12\xad\xde\x28\xf7\x86\x8d\x2d\xee\x1c\x90\xd6\x14\xfb\xf7\xc8\x56\x5d\x9d\x4b\x9a\xc4\x47\x9a\x77\x38\xf3\x93\xb7\x41\xe7\x66\x21\x18\xab\x28\x9d\x9b\x5d\x87\x81\x99\xb9\x04\x07\xc8\xeb\x43\x8e\x84\x96\x44\xff\x98\x0a\x49\xe7\xcd\xc4\x0a\x08\x37\x8e\xfe\xc2\x08\x4d\xf1\xc0\xa6\xf5\x40\xa8\x49\xdf\x37\x18\x3e\xe8\xfa\xc5\x37\xb6\x6c\xa3\x3b\x82\xec\x6b\x11\x7c\x41\x71\x1c\x76\xcd\x53\x81\x89\x36\x49\x2a\xd8\xdc\x65\x8f\xa6\x9b\xd3\x25\x95\x16\x4a\xd6\x8f\xd6\xc9\xa8\x3c\x7b\x7a\xc1\x0f\x98\x90\x28\x7a\xad\x4d\xb9\x66\x2c\x1a\xb8\xc2\x62\xeb\xc8\xcd\x2d\xda\x8b\xc2\x91\x16\x2c\x78\x3a\x6e\xd6\xa0\x4e\x2e\xc6\xd2\xda\xc7\x5c\xbd\x45\xcb\x79\x31\x03\xa5\x6b\xb1\x02\xb3\x67\x29\x2a\xa6\xa8\x81\x3d\xa1\x39\x9b\x7b\x40\x9b\x39\xf9\x01\x43\x4d\xe8\xe5\x5e\x61\x42\x79\x72\x03\x8e\x33\x68\xcc\x05\xe8\x04\x07\xe2\x3f\xf7\x8e\x50\xd3\xc2\xb8\x30\x29\x14\xa3\xcf\x8c\x83\x80\x7d\x8d\x15\x22\x9b\xb2\x64\xfa\xff\xcb\x25\x10\x11\x6b\xc8\x25\x16\x11\x9e\xe2\xee\xbc\xec\xde\xeb\x41\x35\x44\x2c\x24\x5b\x26\xdf\x9c\xaf\x29\x46\x85\xcc\xc6\x0c\x66\xa4\x43\x8f\x65\xf7\xbb\x8b\x1c\xca\xb0\xaa\x32\x78\xcb\xf3\x59\xbe\xc4\xd5\x53\xba\x05\x5f\x62\xd8\xcd\x5a\x80\xc3\xae\x2b\x96\x31\xfa\x99\xa2\xb0\x6b\x51\xaf\xa1\x10\x3c\x8c\xde\xd3\xa4\x39\x31\x51\x52\xc6\xdc\x9c\x45\x67\xb5\xa4\xc8\x7c\x28\xbb\x57\x19\xaf\xd2\xb2\x30\x1e\xba\xf5\x80\x26\xb9\x83\x5d\xcc\x55\xf9\x3d\x62\x09\x21\x27\xce\x61\xba\xe4\x98\xc4\xae\x05\x34\x64\x58\xcd\x5e\xbb\xcd\x16\x88\x97\x9b\xb2\x9b\x8c\xeb\xee\x56\x8d\x3f\xe2\x1f\x79\x15\xde\xc8\x19\x58\x9c\xf5\x47\x24\x7c\x46\x0b\x57\xd4\x89\x9e\xe1\xcd\xb4\xb3\x95\x66\xf8\x7f\xaf\xcb\xcb\x16\x18\x2d\x03\xb9\x37\x4f\x9c\xad\x08\xf7\x20\x86\xbc\x00\x63\x91\xbc\xfe\x61\xbe\xfc\xef\xcb\xbc\x99\x12\x19\x2c\x6d\x09\x14\x4a\x71\x79\xf6\xe5\xcd\xf2\x04\x08\x89\x09\x1e\xee\xcf\x5c\xa9\xc1\xcc\x50\xe8\x66\xc8\xbe\xb7\xe4\xb3\x49\x69\x15\x91\x1a\x6d\x92\xa0\x3f\xe3\xe1\xf8\xf9\xc7\xe5\xd6\xb4\xa9\x55\x15\x6a\x5a\x1f\x38\xa4\x75\xfc\xf8\x68\x3d\x91\x7a\xf9\xf3\x06\x45\xfd\x30\x64\x44\x45\xac\xe6\x64\x4f\xa3\xe2\x86\x85\x62\xf4\x83\x87\x14\x72\xb9\x87\xdc\x3e\xd0\x2e\x6a\x76\x8d\x96\x72\x31\xa5\x56\xcc\xf9\x9d\x17\x69\xb2\x53\x2a\x4c\xb4\x5b\xd5\x81\xa8\xab\x50\x65\x54\xa9\x88\xb8\xfb\x5f\xa3\xc4\x95\xe3\xba\x85\x20\xbe\xb0\x8a\x03\xe6\x13\xfd\xc2\xed\x08\xf5\x03\x38\xee\xe3\x5e\x36\x0c\x76\x74\x4e\x9b\x2d\xba\x7b\xb9\x0d\xdb\xb3\x6b\x30\xe3\x32\x68\xe2\xf2\xe4\x21\x3f\xe7\xb9\xe1\x0a\x8d\xa0\x02\x18\x91\xdc\x89\x75\x67\xf0\x7f\x89\x43\xbc\xb9\x71\xa4\xf2\x5f\x70\x28\xa7\xc8\xe2\xa6\xbd\x96\x3d\x90\x25\x54\xcd\x02\x79\x8c\x4f\x4e\xd4\xd9\x5b\x0d\xec\x42\x90\xcd\x3b\x8a\x00\xbc\xe5\xc6\xf7\x2c\x0c\x1c\xf3\x93\x5e\x97\xad\x5d\x2a\xcf\x5c\x74\xdf\x19\xba\x12\xaa\x67\x91\x04\xf7\xba\xf1\xa5\x6c\x28\x6c\x10\xea\x62\xcf\x4a\xa5\xa6\x3f\x76\xa5\xac\xbd\xe0\x3e\x17\xf7\x68\xb4\xa0\x31\x56\x8b\x49\x75\xe4\x61\x1f\x83\x08\x39\x8f\x2b\xef\x3b\xa2\x10\xc5\x4a\x7d\x1c\x15\x8c\x06\xab\x5a\x9d\x89\xfa\x7a\xb2\x34\xc3\x16\xab\xac\x19\x61\x56\x54\x28\x46\xef\x3a\x5d\x69\xb5\x72\x56\x1d\x87\x21\x6c\xd1\xed\x7c\x7a\x45\x6c\xfa\xa4\xa2\xc6\xe3\xd3\x1a\x0e\x92\xd1\x87\xb1\xe7\x15\xad\x62\x26\x01\x4e\xf4\x76\xae\x7a\x44\x55\xaf\xf6\xe3\xac\x0c\x4c\xc6\xce\xdd\x93\x9d\xe7\xe1\x5a\x78\x0a\x02\xa1\xf1\xbb\x37\xc7\xa8\x17\x37\xf4\x51\x14\xcd\x66\x73\x62\x5e\x81\xb8\x90\x3b\x42\xc2\xd7\xf8\xc4\x93\xd9\x95\x84\xee\x24\xe7\x96\x0a\xfd\xd9\xf5\xef\x28\xea\x76\xd8\x0b\xe3\x07\xb9\x63\x56\xca\x58\x89\xd3\x03\x81\x3e\xcc\x4d\x5a\x23\x6d\x95\x50\xbc\x54\xc2\xf6\x59\xca\xee\x1d\x55\x40\x03\x0e\xaa\xd5\xa1\xbf\x71\x50\x83\xd1\x22\x8f\x7a\x7d\x35\x12\x80\x22\xe1\xb6\xc7\xd2\x4a\xcb\xc7\x2d\xb0\x50\xf3\xe4\x2a\x31\xb5\x8e\x63\x27\xcf\x96\x9e\xbe\xbc\x4d\xb5\xa2\x4a\x37\xe3\x35\x77\x4b\xde\xb2\x1d\x72\x6c\xf1\xf0\xb7\xc4\x2f\x03\x28\xaa\x50\x8c\xfe\xf6\xb2\x64\xf1\xb8\xc8\xc7\xac\x15\x88\x3a\xc6\x4c\xe3\x0c\x97\x24\x8e\xec\xc7\x35\x7a\x8d\x4b\x69\xd2\x0a\xf9\xf6\x69\x7a\x1a\xef\xd7\x08\xef\xac\x08\xf1\x9f\xb6\x53\x49\x39\x93\x46\xc2\x7e\xbf\x63\x7b\xe2\xc2\x03\x7f\xeb\xf2\x11\x43\xeb\xa9\xc5\x0c\x5c\x94\xc6\xab\xba\xa7\xb0\x1f\x27\x01\x70\x03\x3f\xd9\x26\x61\x98\x44\x31\xf6\xf8\xc2\xdd\x10\xa3\x9c\xd0\x2f\x21\x61\x36\xfc\xd9\xcd\x83\xd3\x82\x35\x7e\xf5\xdd\xed\x9a\xba\x79\x18\xff\x5f\x20\x9c\x08\x73\xf7\xdc\xae\x90\x51\x71\x19\x7b\x02\x8f\x1e\xfd\xa3\x5b\xb9\x12\x1d\x86\x71\xa1\x1e\x06\x62\x76\x97\xfb\xce\x02\xc1\xca\x0c\x31\x4b\xa5\xc1\x8d\xeb\x5c\x1d\xa5\xe9\x29\xc6\x5a\xb9\x2b\xcd\xec\xc9\x81\x91\x07\x74\x11\x2e\xd4\x6a\xe1\x32\x6a\x70\x92\xb1\x2f\x18\x7d\xe6\x5e\xb9\x1f\x9c\x40\x51\xad\x32\x36\x68\x16\x1c\x16\xf2\x6c\x62\xab\x58\x89\xda\xf1\x53\xb3\x5a\x32\xd6\x6e\xb9\x7d\x23\xda\x64\x8f\x4a\x15\x82\x5e\x33\x5e\x81\xfd\xa0\x3a\x02\x76\x82\x71\x5e\x67\x4b\x56\x50\x4b\x0b\x47\x73\xd6\x74\x80\xfd\x5e\x4f\x6d\xdc\xd2\x58\xc8\x7d\x78\xba\xb8\x5b\x2c\x2b\x64\xc8\xe2\x68\xce\xeb\xa5\x04\x88\x1f\x96\x93\x25\x7d\x71\x93\x7c\x3d\xe0\x2e\x4e\x04\x71\x75\xfb\x2a\x2d\x93\x26\x95\x90\xe1\xa4\x35\xf5\x87\x3d\x0a\xc4\x21\x64\x15\x4c\x85\x19\x4d\xae\xe7\x09\xe1\x8a\xd7\xa4\x85\xab\xe7\x73\x0f\xd0\xa7\x05\xde\x36\xae\x8c\x61\x76\x7f\xfd\xc6\x36\xad\x2c\xae\xc1\x7b\xfa\xfd\x7c\x45\x51\xcc\xed\xf3\x7d\xce\x51\x68\x1b\xab\xab\xd2\xd8\xa1\x95\x58\x51\x98\x5f\x1e\xaf\x25\xd3\x7d\xb5\x12\x75\xfd\x44\x07\xfd\x86\x51\x10\x87\x3c\xea\x81\xab\x7d\x9d\x77\xa8\xbf\x58\x4f\x95\x81\x6f\x58\x5a\x28\x46\xb9\xfb\x15\xc8\x58\x58\x72\xc1\xa0\x65\x20\x37\x75\x48\x7a\x90\x67\xcd\xe1\xa9\xcd\xd2\x57\x46\xa8\x6d\x1b\xa1\x78\x60\xbc\xb9\x09\x1e\x13\xd0\xc7\x7c\x0d\x6b\xb7\xa5\xef\xdc\x23\x8a\xcc\x8e\xf9\x91\x48\x91\xe4\xc7\x88\xc1\x92\xdf\xb7\x41\x75\x92\xa8\x61\x06\x05\xa1\x59\x5a\x2c\x21\x4a\x75\x54\x28\x46\x23\x9e\x3a\x5b\xed\x1e\x97\xd4\x8e\xc5\xfb\x3d\x55\x97\x45\xf8\xba\xc6\x9f\xb2\x6c\xb5\x8e\xb8\xc1\x28\x48\x54\x38\x07\x8c\x2f\x77\xb4\x2a\xd0\xe3\xbe\x94\x41\x9c\x2f\x76\xc3\x24\xaa\x84\x18\x43\x56\x55\x55\x4e\x1b\xc8\x2f\x1d\x25\x4d\x3e\x43\xa5\x41\x61\x98\xb6\x2e\x64\xa5\x68\x88\x17\xa3\x23\x11\xbf\x59\x0a\xdd\xd4\xf5\x1d\xdc\x20\xd5\x56\x1d\x85\x81\x95\x1a\xc5\xc8\xb3\xa9\x87\xfd\x8c\x67\xc0\x5e\x69\xb5\x3c\xad\x63\x56\xfc\x34\x7f\x9b\x96\x4d\xcc\x09\xb5\xc4\x79\xcc\xde\x88\x8d\xdb\x85\x7f\x77\xc8\x1a\x9c\x2c\x13\xdf\x34\x9a\x63\xa7\xef\xd1\x66\x89\x22\x66\x2b\xea\x50\x9d\x97\x6b\x9e\x66\x18\x57\xdd\x3e\xf1\x54\xb5\x85\x5a\xb1\x83\x3c\x54\x11\xc3\xc1\xdc\xa0\x03\x8a\x39\x1c\x77\xe8\x8a\xb6\xdf\xac\x9d\x06\xcc\xb8\xac\x52\xee\x8a\x09\xe9\x99\xad\xa1\x14\x7f\xfd\xca\x60\xfd\x34\x70\x65\x52\x00\xeb\x3e\x1a\x8c\xd6\xe3\x7c\x3d\x0c\xd2\x3e\xc9\x2d\xbd\xe3\x9a\xff\x7a\xca\xcb\x07\x75\xd1\xe2\xa3\xca\xfe\x0e\x3d\x1b\x5c\xb5\x8d\x3b\xc6\xc8\x06\x0e\xd2\xa9\x06\xd1\x3f\xb4\xca\x13\x71\x6f\x4b\x5e\x46\xbc\x77\xaf\x4c\xd1\x7a\x42\x5b\x51\xf8\xcb\xbd\x29\x8c\x5b\x53\x20\xb4\x31\xfc\x66\x31\x45\x23\xae\x8b\x79\x57\x2a\xa9\x3c\x8d\xe0\x95\xec\xb2\x86\x9e\x1b\x5a\xd5\x3e\xa8\xb0\x7e\xb1\xb0\x45\x41\x86\xb8\x01\x43\xc9\xa3\x47\x77\xe4\x33\x79\x38\x0b\x60\x70\x9c\xbb\x49\x31\xc7\x41\x35\xec\xd9\x89\x14\xc7\xd0\x89\x1a\x87\x06\x11\x31\x83\xc9\xcd\x7c\x52\xeb\xac\xe2\x3a\xd7\xaa\xf4\x93\x16\xc5\xbc\x8d\x7a\xeb\x35\x21\x4c\x81\xc7\x95\xf9\x67\x0d\x3e\xd6\xc4\x4c\x80\x43\xa2\x7f\xbb\x12\xee\xbe\x6b\x53\x10\x14\x6f\xbc\x6d\xbf\xb0\x35\x07\xe3\xfd\xfb\xcc\x6b\xf8\x45\xa7\x2e\x96\x11\x70\x31\x36\x91\x4a\x44\xf3\x1f\xc9\xae\xe1\x8c\x39\x73\x66\xa4\xb4\xd7\x79\xbb\x14\xad\x69\xea\xba\x21\x87\x9d\xe4\x46\x8d\x4b\x27\x58\x61\x05\x27\x13\x2c\xbc\xfb\x4c\x71\x65\xf1\x6e\xc1\x0f\xdf\x92\xa9\x25\xc3\x30\xb1\x72\xd5\x57\x3d\x63\xab\xd6\x95\xc5\xb5\x04\x6a\xfc\x07\x4d\xef\x21\xe0\x58\x2d\x51\xcc\x7d\x71\xf4\xd0\x0c\xf1\xad\x50\x8c\x0a\xde\x88\x24\x46\xd6\x29\x43\x4c\x78\x68\x8c\x57\x0c\x67\xe9\xa4\x12\x23\x50\xa3\x4f\xe8\x9e\xa8\x5d\xa4\x81\x43\x5d\x62\x4d\xd1\x15\x92\x06\xcc\x5f\xcf\x83\x18\xb7\xe4\xea\xab\xae\x6a\x09\x15\x7f\x1a\xac\x25\xe6\x14\x55\x41\xce\x29\xfa\xb6\xc2\x94\x50\xdc\x72\xf3\x6d\x4f\x2b\xce\x19\x0a\xc4\xec\x3f\x16\x2a\xb0\x58\x0f\x05\x80\x90\xf9\xd2\x16\xad\xa8\x05\xca\x8e\x98\x11\x77\x8d\x95\x3a\xad\xbe\x83\x18\x76\xa8\xcb\xad\xf1\xf4\x87\x78\x70\xae\xa2\x48\x16\x67\x79\x7c\x8d\xbf\x7b\xba\x26\x47\x13\xda\x9c\xb2\x9b\xb0\x96\xb1\xa6\x45\x5d\x43\x7d\x54\xad\xf9\xa2\x6e\x57\xd6\x45\xa1\x17\x10\x57\x19\x9b\x0e\x98\xc7\x17\xaa\x6d\x93\x5a\x6a\x8c\x96\xdf\x9e\x00\x1b\x2f\x9b\xc5\x85\x16\xdf\xd6\x8c\x5b\x6b\x75\x9a\xfa\xcb\x99\xcb\xf7\xab\xd2\x61\x32\x55\x5c\x76\xbe\x02\xd7\xb2\x31\x6b\x95\xf7\x99\xf8\x82\x6e\x8d\xe8\x35\x88\x58\x3d\xbe\xb7\x3f\x7a\x50\x5e\x11\x9d\x1d\x1c\x59\xac\x99\x17\x36\x51\x5f\xd2\x73\x19\xdd\x38\x4b\x54\x78\x69\xe7\x95\x9f\xda\x70\xbf\xee\x2a\x52\x2e\xe3\x20\xc8\x66\x7a\xe6\x4f\xb6\x65\x9f\x31\x60\x94\xd6\x13\x50\x85\x71\xd9\x3b\x72\x3f\xcf\x98\x73\x19\x47\xcc\x5c\xd3\x50\xee\x73\x52\xf1\x48\x99\x58\x89\x05\xf1\x9f\x4e\x9c\x93\x16\x2a\xad\xf2\xc6\x2f\xe9\xee\xa9\x8c\xe0\x72\x12\xf2\x3e\xb2\x4d\x88\xfe\xc4\xff\x53\x8c\xfe\xbc\xbb\xa5\xaf\x2c\x9c\x69\x81\x0b\x1c\x7d\x53\x4a\x60\xd4\xb9\x48\xc7\xfb\x9f\x97\xf8\x4e\xac\x5e\xeb\x6f\x68\xca\x0c\x4d\xca\x82\x84\xfd\xb5\xe5\x24\x74\x80\x6f\x0c\x70\xdd\x51\x68\x2b\xd1\x07\xfb\x35\x8f\x0e\xca\x38\x85\x14\xa4\x20\xf2\x46\x1d\x7e\xef\x2a\xd7\x25\x19\x50\x94\xf1\x7f\xe3\x34\x6f\x4f\x4f\xe8\x37\xe7\x56\xdc\xde\xea\xed\xe9\x62\xa6\x0d\x24\x26\x9d\xd0\x45\x26\xea\x82\x97\x5b\x8c\x46\x9d\x90\x63\x73\x0e\x1f\x88\x1f\xe1\x7d\x8a\xe8\xbe\x8b\x2a\x15\xd1\x0f\xfb\x61\x30\x54\x6c\x0b\xf0\xc7\xe4\xc5\xe1\xd3\xa3\x14\xae\xa8\x90\xbf\x48\x00\x85\x37\x3c\xaf\xd1\xf7\xec\x06\x66\x01\xe1\xe6\x4f\xbc\xf0\xfa\xec\x06\x45\xe0\xb9\x30\xa3\x93\x1f\xd5\x5b\x02\x4d\x84\x8d\x85\xa0\x3f\x90\xc0\x37\xf2\xde\x4b\xa3\x95\xfa\xb3\xa5\xda\x6d\xbf\xed\x7c\xe5\xc2\xf5\x03\x62\xb5\x8e\x43\xde\xb5\x5c\x2b\x2f\xe2\x9a\x32\x49\xa9\x73\x9b\xd7\x0d\x4d\x2e\xca\x72\x59\xf8\x6f\xae\xda\x35\x52\xa9\xf1\xb9\x63\x0f\x9f\xe1\x0d\x98\x07\x95\xb6\x7a\x85\x52\xbb\xd0\x04\xf7\x8b\xdc\xaf\x56\xc9\x38\x67\xb9\x34\x04\x5e\x99\xdf\x25\x3f\xa8\xa4\x4e\xf5\xcc\x07\x14\xae\xb6\xcf\x01\xa1\x01\x66\x3c\xe7\xbe\x73\x73\x5a\x9e\x31\xae\x09\x9a\xbc\xdb\x4b\x8e\x0f\x53\xfa\x3f\x1c\xdc\x17\x55\xc6\x48\x21\x5f\x1c\xe7\xcb\x3f\xd5\x12\xb2\x80\x4a\x6b\xa5\x5d\xb7\xeb\x90\x26\xe4\xd1\x29\x73\x95\x9b\xeb\xe3\x2d\x46\x15\x28\x48\xe0\x32\xee\xf1\x11\x4a\x54\x4c\x73\xed\xcf\x3c\x05\xd3\xac\x5b\x10\x63\xb8\x55\xc8\x89\xe4\x5b\xc4\x8f\xaa\x49\x20\x5e\xb2\x50\x7b\x31\x2e\xf5\xb1\x0b\xb2\xf3\x51\x79\xb4\xaa\x4e\x4d\x5c\x98\x6a\xe7\xde\x5e\x0a\xd5\xe0\xd5\x0e\xf2\x5b\x15\xbe\x87\xbc\x31\x2c\xa9\x74\xb8\x91\xfc\xfb\x6f\x5c\x1a\xdd\xf2\x46\x4b\x3b\x80\x6b\xac\x81\x22\xd7\x6e\x59\x2a\x26\x62\x1f\xd1\xb1\x23\x0a\x55\xb3\x4f\x39\x9d\xff\xbe\x53\xb5\xd7\x60\x35\xe4\x72\x51\x8f\x2f\xac\x57\xee\x44\x86\x3c\xcb\x81\x96\xe6\xe8\x9d\x69\x4c\x09\x99\x25\xef\x97\xd5\x93\xa1\xaf\xd0\x44\xe0\xce\xf3\xd2\x68\xa5\xb1\x97\x29\xdd\xf2\xc6\xba\x74\x42\x3f\xe7\xb2\xf8\x6f\x7d\xf9\xf8\xd9\x22\xe4\x20\xae\xc0\xa9\x02\xf5\x3b\x8f\xc1\xe7\x2e\x23\x25\xae\x2b\x92\x9b\xad\xc8\xed\xd4\xa9\x17\x10\xc4\xa5\xe0\x3f\x3a\xac\x5d\xf9\xbe\xb4\xe9\xf9\x8d\x38\x05\x8d\x43\xf0\x69\x6b\xcf\x95\xdb\xb2\x95\x56\x9c\x9b\x7c\x5b\x36\x3e\x59\x61\xc0\x21\x31\xd1\xa6\xbb\xb5\x64\x1c\xbb\x0e\xe1\x97\x2a\x4f\xe4\x37\x1d\x92\xc7\x18\x8c\xd9\xa8\x4b\x2b\x89\x00\x45\xee\x5b\x9a\x97\x47\x5c\x37\xd9\x14\x4c\xd6\x78\x0a\xb6\xb2\x47\x07\xb3\x58\xb8\x0e\x1a\xc0\xd1\x75\xf3\x15\x4d\x15\x6e\xce\x16\x3f\xfb\x9f\xc6\xe9\xb8\x7c\x20\x90\x25\xb8\xfc\xc5\x79\xa5\x77\x2b\xc9\x85\xd1\x57\x6f\x13\xbc\x60\xdf\x27\x7e\x90\x5c\x4d\x73\xb4\xa9\x8f\xc5\x45\xe1\x2c\x92\x68\x4b\x18\x07\x1b\x80\x4e\x13\x82\x94\xe9\xbb\xb6\xb5\xf3\xe8\xd7\xb1\x17\x24\x2a\xe9\x0b\xbc\x36\x45\xa9\x4b\xa4\x53\xf1\xa7\x6d\x39\x3a\x52\x45\x84\xa6\x7d\xf3\x68\x7b\x9b\xbc\x3e\x19\x29\x97\xc1\x10\x05\xec\xd8\x97\x3d\xa5\xb5\xdd\x10\x63\x24\xb1\xea\xf8\xe1\xa2\x73\x5b\xbe\x87\xad\xc8\x17\x3d\xfd\x50\x1a\x48\xe6\xcc\x98\x11\xff\x4b\x7f\xf7\xb9\xca\xae\x2c\x85\x35\x12\xf8\x2a\xf1\xe1\xe3\x9a\xac\x15\xf2\x15\x15\xc6\x3d\x8f\x42\x6d\x53\x43\x1e\x0e\x1b\x98\xc9\x86\xe2\xd1\x77\x60\xa1\x70\x6f\xc0\x70\x0d\x17\x98\x30\x6b\xca\x1d\x3a\xa9\x91\x74\xb8\x4e\x85\xb8\xfd\xbc\x97\xce\x52\x01\x95\xd4\xe5\xf3\xbc\x68\xfb\xe9\xc3\x45\xf2\xc7\x90\x15\xba\x30\xa2\x33\x07\xbf\xaa\xd1\xd1\x3c\x5c\x10\xe5\xcc\xaf\x77\x49\x3f\x16\xfe\xba\x97\xdd\xa5\xe4\xa7\x62\x1c\x14\xe5\xe6\x66\x4b\x47\x9f\xd4\xca\x98\xeb\xdd\xa5\x1d\xf5\x68\x61\x4f\xb6\x92\x9d\x44\xc4\x8d\xf5\x89\x8b\x35\x0a\x27\xc6\x1e\xf0\x18\x36\x9d\xc8\x08\xb3\x59\x21\x00\x3b\x57\x9f\x1c\xa6\x5c\x71\x9e\x5d\xe0\xea\x8f\x9a\x2e\x8e\x4b\x69\x55\x3a\x40\xb3\x23\x92\x3e\x4c\x01\xbc\x77\xba\x50\xc7\xa3\xa1\x67\x87\x75\xbe\x0e\x37\xbb\x6a\x7f\x9f\x31\xec\xd7\xe3\xe8\x02\xda\xf5\x1f\x38\x2e\xbb\xbf\x1e\x6e\x16\x8a\x51\x1e\x5c\x67\x0b\x37\xbb\xc8\x26\x55\xd4\xa8\xa2\x7e\xf1\xac\x57\x9f\x7e\xbe\x76\xb8\xfd\x80\xbf\xd1\x7e\x69\x7c\xbc\xb6\x57\x02\xb5\x3a\x66\x74\x14\x8a\xd1\xa0\xd7\xe1\xf3\xb0\x17\x30\x5c\x67\xd8\xc3\x21\x03\x7b\x44\xe3\x0b\x1d\xd9\xa7\xf3\x42\xcb\xc5\x80\xf8\x28\x0e\xe4\xcf\x62\x1a\x39\x21\x64\x12\xe3\x5e\xd6\x7e\x35\x70\x08\xe3\x0a\x8a\x3c\x6d\x6d\x0c\x96\x65\x88\xa5\x1a\x4f\x74\xba\x5a\xcf\x27\x6c\x22\x12\x40\x80\x89\x2b\xee\x37\xba\x86\xa9\xba\x70\xd3\x79\x85\xde\x77\x50\x57\x9b\xeb\x09\x1b\xd8\x43\x52\x62\x2d\x7f\xe9\x71\x65\xce\xee\xba\xd4\x4a\xf4\x58\x9d\x87\xb3\x17\x1f\xa3\x48\xc8\x60\x47\x47\x8e\x2a\x73\xb8\x32\x8b\x13\x60\x5e\xff\xcd\x51\x86\xd3\xf1\x9e\x15\xb7\xd1\x3b\x52\xcc\x16\x11\xc6\xb5\x71\x5b\xbc\x74\x1d\x25\x7b\x55\x48\x91\xc6\x67\x6c\xd1\x90\xe4\xd9\x67\xfc\xde\x8f\xaf\x6e\x51\xdf\xe7\x1b\x51\xf4\xe7\x57\x9f\xc8\x6e\xeb\x59\x20\xac\x14\x5d\xda\xab\xd0\x84\x5d\x04\xfa\xbc\xe3\x4c\x1d\xd1\xe7\x63\xa1\xad\xf1\x9d\x46\xca\x61\xab\x21\x2f\xa3\xf4\x50\xd0\x8c\x50\x7c\x27\xae\x2e\x41\x4d\xa4\x9f\x23\xc1\x0f\x64\x53\xdd\x06\x72\x5d\xdc\x37\x25\x43\x85\x1b\xc8\x77\x4f\x1b\xab\xc4\xa7\x06\xea\x6b\x91\x16\xf8\xc0\x23\x1a\x5b\x8e\x5b\xa8\x02\x72\xea\x9c\xfd\x4a\xe7\x27\x21\x8b\x0d\x18\x1f\x79\x59\x4b\xdc\x85\x93\xa3\x08\x1f\xa7\xf7\xaa\x38\x16\x2f\x8e\x08\x3c\xcf\xbb\xb4\xae\xbd\xec\x30\x05\x8f\x19\x5b\xf6\xa9\xce\x26\x21\x07\xed\x99\xdf\xce\xab\xa2\xff\x01\x69\x70\x15\x50\xbe\x85\x5f\x7b\x44\x23\xa8\x83\x87\x9c\x90\xf4\xfb\xb3\xad\xb0\x80\x50\x4d\x15\x8c\x78\xeb\xcd\x11\x0a\xd3\x8c\x9b\x4a\xc7\xbf\x61\x08\x98\x33\xf2\xeb\xd8\x02\x99\xf6\xdb\x3b\xd3\xac\xc7\x0a\x4b\x29\x50\x40\x73\x30\xab\x30\x1a\xd6\x05\xe6\xee\x53\xaf\xe8\xf8\xb9\x00\xb9\x04\x5a\x69\x3c\xb6\x5d\x72\x5a\x96\xb3\x39\x75\xca\xca\x95\xf1\xd3\x77\xdf\x25\xc3\x4c\xd3\x89\x4b\xaf\xf7\xac\xd1\x3c\x92\x40\x02\x3e\xed\xbe\x8e\xba\x52\x93\x21\xa5\x61\xc9\x15\xa8\x36\x63\x48\xa0\xf8\x3b\x13\xb0\x66\xe7\x62\xcd\x7f\x99\x9c\x95\x16\x75\x51\x49\x20\xdb\x75\x84\xcb\x5f\x15\xca\xc2\x1d\x21\x07\x80\x0c\xe4\x4f\x77\xcf\x49\x12\xc7\xab\xe7\xb7\x64\x3d\x3f\xd4\x8c\x2f\xe2\x3b\x1c\x55\x28\xc8\x93\xc8\x8d\xfd\x35\xb7\xd5\x47\x0c\x07\xa0\x4b\x6e\xf4\xce\x6b\xd3\x4a\x52\x50\xdc\xf8\x37\x53\xab\xcd\x89\xeb\x82\xa2\xa4\xf1\xb9\x87\xb4\xa4\x03\xf4\x54\xe3\x83\x0c\xca\x7b\x57\x4c\xd3\x06\x52\x0d\xcc\xfc\xf8\xba\x81\x14\x68\xdb\x26\xb8\x1d\xeb\x21\xab\x53\x96\x90\xc5\x16\xcb\x92\xc1\x0a\x79\x2a\x64\x2e\xd6\x25\x0b\x2c\x64\x83\xed\x10\xcf\x0d\xfe\xae\x01\x1c\x2c\x46\x6a\xc4\x43\xae\x2f\xce\xfa\x37\x7a\xb2\x37\x5e\x05\x8b\xcc\x6c\x45\x59\x1f\xec\xd4\xb9\x63\x1e\xff\xe1\x1b\xbb\x13\x06\x3c\xcc\x6e\x02\xe8\x8a\xde\xb3\x42\x41\xe8\xf0\xc3\x07\x06\x9f\x9a\x98\x54\x99\xb8\x35\x31\x78\x33\x3f\x58\xce\xbe\x7b\x8c\xfc\x00\x46\x65\xba\x73\x07\xd1\xe4\x6f\xab\x4d\x94\x68\x11\xe4\x3f\xa9\x98\xab\xd6\x30\x01\x07\xa2\x07\x16\x40\x4a\x5d\x46\xbd\x50\x04\xdf\xfb\x86\x64\x8d\x7b\xd5\x42\x31\xfa\x45\xfb\x85\xda\xc9\xb0\x4f\x69\xc2\x30\x59\xc1\xb0\x10\x0f\xca\x63\xec\x05\xc2\x13\x57\x98\x6b\x5c\x4f\x79\x1f\x58\xf5\xc8\x19\xb1\x23\x0d\xed\x65\xda\x2b\x13\xcb\x49\x23\xb2\x77\x72\x1d\xb1\x80\x58\x60\x45\x96\xe4\xb8\x37\xde\x99\x8e\x8a\xbd\x4a\xeb\xa8\xf8\x81\x8d\x2d\x8c\x12\x16\xa4\x6e\x53\xdd\x2b\x65\x84\x0c\xa8\x97\x78\x6a\x2e\xb9\x53\xf7\xc9\xe1\xf5\x71\xc2\x1d\xf4\x87\x65\x53\xa7\x32\x97\xda\xe7\xf7\xac\x0c\xdd\x57\x6f\x17\x43\x3b\x08\x6d\x3c\x7b\x1d\xb3\x65\x48\x92\x2d\x90\x80\x23\xac\x73\xcf\xad\x4b\x16\x5f\x48\x87\xac\xbb\x57\xf4\xd0\x5d\x62\xf1\xd1\xf6\x2e\x4f\xc2\x5f\x38\x3c\xcf\x26\x42\x10\x3d\xba\x12\x58\x36\x85\x6b\x3c\x9b\x36\x79\xa3\x5b\x7f\xfc\x0f\x6b\x1e\x4d\x9d\xd3\xe6\xcc\x16\x51\x76\xdd\x49\x40\x7e\xdd\x98\x68\x3f\x73\x65\x8f\x77\xd4\x1a\x06\xb1\x1a\xb2\x70\xc8\xe5\x7e\xf8\x29\xb9\xfe\xb0\x9c\x76\x04\x98\x77\x05\x8c\xbc\xe0\x76\x97\x28\xe3\x1f\x12\xf5\xef\x82\x47\xba\x11\x04\xdd\x06\x8c\xaf\xbd\x00\x8f\x1d\x9f\x5c\x00\x34\xed\x19\xad\xb0\x1b\x30\xc7\x08\x0e\x18\x4b\x17\x6b\x90\x00\x0e\x5f\x14\xb0\xfc\xe8\xea\x6d\x92\x8d\xdb\xa0\x6e\x95\x36\xfc\xaa\x52\xb7\xe6\xfe\xf7\xa0\x4a\x86\xc8\x40\xa5\xa2\x27\xf6\x29\xca\xa0\xd4\x06\x6b\xb6\xdc\xd1\x93\xd9\xd7\x88\x58\x89\x86\x2c\xab\x5e\x68\x7e\xbc\xa1\xdd\x7a\x7c\x54\x0c\xdc\x8d\x8e\x5e\xe8\x2b\xba\x34\xb4\xfd\x3a\x46\x55\xd1\x5a\xf9\x6f\x8d\x56\x55\x0a\x7d\xde\x4d\x93\x6d\x8e\x51\xf3\xe5\xd5\xd8\x31\x3b\x25\x66\xc4\xbf\x3c\xe2\x65\x79\xfd\xf6\xe0\x20\x19\x13\xe5\x6e\xd9\x9c\x3d\x0b\xd8\x75\xb1\xae\xa3\xf8\xd9\x83\x43\x94\x56\x0c\x97\x2d\xf2\x97\xcb\x62\xaa\xe4\x22\x5f\x55\x11\x08\xb4\x78\x83\x5c\xa9\x4b\x14\x75\xe8\x76\xf7\x60\xa9\x29\x32\xe1\x03\xf5\x73\xa4\x0f\x72\xcb\xf5\x73\x64\x61\xd2\x59\xeb\x09\x19\x17\xfa\x8a\x3e\xf0\x74\xf6\xee\x5c\x29\xa4\x6a\xae\x9c\x3b\x5a\x36\x27\x5a\x82\x99\x51\x5b\x2d\x9b\x4b\x65\xe2\x11\x3f\x31\x90\xc9\x3d\x70\x04\xb6\x5d\x5f\xbc\xcb\xf8\xb2\x3f\x72\x25\xb4\x0d\x16\x52\x0f\xf7\x59\xa1\x0a\x7f\xce\x7d\xe8\x06\x0d\x82\x49\xb9\xa3\x93\x00\x34\x46\x5f\x9a\xa0\xb5\x14\xc1\x93\x0e\x86\x6c\xeb\x95\x9e\x54\x09\xbb\xd0\x0f\xd9\x25\x28\xfe\x41\x08\x69\x22\x4a\xcc\x99\x53\x45\x9d\x40\xa3\x7a\x63\x56\x03\xe8\xe6\x88\x1e\xc5\x1a\x1f\xa6\x71\xe6\xb7\x3c\x05\xbd\xc5\x7d\xb2\x09\xdc\xda\xc6\x17\x56\x89\xe6\x75\x5c\xdb\x10\x3f\x00\xb9\xc3\xe8\xb7\x4b\xe5\xc2\xa0\x30\xa0\x15\x86\xea\x7c\x19\x8c\x6f\x6b\xb3\x28\x8b\xa4\xa5\x43\xee\xba\x61\xd9\x70\x80\xfb\x12\x08\x40\xee\x7f\x5e\xc8\x2e\x41\x19\x4b\x05\x55\xf3\xae\x57\x86\x8b\x17\x1a\xe0\x0a\x4b\xfc\x9f\xcf\xdd\x3e\x5a\x39\x72\x61\x9c\x7d\x8b\xfa\x9e\x57\x07\x7f\xd3\x86\x03\x60\x7d\x98\x30\x1c\x56\x1f\x12\xcc\xb4\xb0\xd4\x83\xad\x38\x4b\xf8\xe9\xbc\xf3\x95\xb4\xaf\x84\x18\x6e\x89\x67\xb9\xcd\x3b\x15\xff\x6d\xe5\xf8\x9b\xff\x21\x04\xb3\x66\x73\xbd\x6b\xe8\x39\x1d\x1e\xdf\x6a\x38\xc6\x23\x5d\x12\xff\xcd\x2b\x4e\x9e\xaf\xff\x17\xaa\x17\x2f\x37\xca\xda\x74\x30\x9b\xd4\x74\xcc\x11\x4e\xff\x43\x06\x69\x9b\x86\x06\xd0\xf7\xe0\x77\xe8\xf2\xe4\xf1\x58\x19\x01\x87\x6f\xf2\x09\xd8\xb1\x33\x3a\xa7\x76\x4e\xe7\x83\x82\x6f\xb6\x6b\x97\x93\x43\xbc\x54\xbd\x2d\xf7\x99\xc7\xe4\xe5\x34\x63\xce\x9c\x59\x85\x39\x9d\x71\x4a\x11\xc1\xab\xd0\x9c\xab\xf6\xeb\xfd\x5f\x2f\x6d\x1e\x0d\x18\x67\x0e\xd6\xd2\x4d\x24\x47\x29\xe6\x3d\x9b\xcf\x55\x2a\xf6\x72\x58\xc1\x59\x69\x8c\x11\x6f\xc3\xca\x06\x4d\xca\x99\x97\xbc\x18\xf8\xfd\x6d\xe7\xa9\x80\xc9\x29\xc5\xd6\xb9\x15\xd8\x84\x16\x6e\x44\x35\xda\x40\x4c\xaf\x5b\xde\xb7\x4a\x6f\x5d\x85\xb5\x92\x9b\xfa\xd1\xe4\x6f\x52\xf5\x8a\x10\xab\x62\x48\xed\xa2\x0b\xdf\x4c\x53\x85\x80\xcf\x8d\x44\xaa\xf0\xd5\xdd\x4a\x53\x0f\xbb\xe5\x38\x91\xf4\x29\x4b\x34\xd1\xcd\x8a\x26\x20\xe1\xd3\x50\x60\x12\x73\x4d\x85\xf2\x5f\xc7\x38\x98\xc4\xaf\xba\x3e\xd9\xa2\xc6\x9e\x8a\x20\x3a\xcb\x53\xaa\xc4\x54\x02\x7e\xaa\x36\x08\xf3\xfd\x10\x27\x43\xa2\x7c\xd7\xe3\xca\x75\x17\x17\x14\xf1\x4b\xf9\xfd\xe6\x11\x22\x04\x30\x97\x70\xc7\x08\x7e\x7c\xbf\xda\xa5\x00\x57\x18\xa1\x80\x1a\x89\xce\xe8\x91\x35\xb8\x4d\xca\x65\x41\xba\x8f\x3e\xbe\x64\xb8\x7a\x06\x59\x5c\xfc\x44\x4f\x25\x44\x39\x0c\x67\x31\x7a\xae\x43\x5e\xeb\x85\x42\xab\x2a\x65\xa2\x02\xe3\x5a\xd4\xe1\xb2\xe1\x0f\x3a\xc0\x7c\x02\x89\xe0\xf5\x8d\xf6\x2c\xb7\xaf\x41\x70\x13\x0e\xf9\xd3\x77\xca\x1f\x31\x8a\xed\x82\x8b\x98\x8f\x41\x4d\xe9\x19\x85\xf2\x4d\x5d\x62\x83\xfa\xc7\x7d\x8a\x36\x9a\x03\x73\x97\x68\xf2\x33\x32\x01\x24\x4c\xd5\xd1\x98\xa6\x96\xe4\x50\x58\xe6\x2b\xe3\x64\xb0\x74\x42\xaf\x82\x18\xe1\xdd\x85\xe8\xbe\x0d\x5a\xde\x46\x7c\x1f\x4c\x65\xf8\x6b\x18\xa1\x79\xf4\x57\x48\x23\x69\x72\x44\x5f\xdd\xaa\x3b\xa5\x52\x96\x10\x8f\xf3\xd7\x8e\x96\xc1\x56\x1b\x64\x6c\x10\xd3\xb1\x3a\x65\xd5\x8c\xdf\xcf\xcc\x57\xd2\x36\xfd\xb5\x4b\x92\x29\x7b\xbb\xe2\x99\x68\x93\x0a\x09\xa0\x55\xb4\xe2\x35\xfd\x7c\x7a\x95\xc4\xb4\xd1\xf8\x98\x54\x70\xc7\x88\x5f\x2d\xcf\x77\x68\xd6\x4b\x24\x08\xc5\xe0\x4f\x6c\xb8\xbb\x6e\xd3\x86\xdb\xf5\x94\x61\x6b\x5c\xd0\x21\x37\x23\x66\x21\xef\xc1\xe7\x16\xcd\x92\xa2\xa9\x9c\xfa\xf6\xad\xa5\x97\x68\xf5\x52\x9c\x7c\xd7\x04\xc6\x50\xbf\xa6\xc9\x9d\x42\xf9\x81\x08\xcc\x5f\xf4\xc8\x43\x1a\x33\x4f\xf5\x1f\x85\x09\xe1\x25\x3d\xc3\xb2\x78\xf4\xf8\xdb\xbd\xef\x49\xa5\xf9\x8b\xcb\x8c\x54\xb0\xb8\x6f\xa2\xc9\x41\x9a\x2a\xf4\x21\x5d\xae\x25\x7a\xe2\x80\x26\x5e\x4f\x18\x48\x1a\x24\x85\x42\xc7\xc5\xb2\x38\xc1\x90\x08\xa5\x3c\xe1\x09\x0f\xab\xee\x70\xa5\x10\xb8\xc8\xf7\x6f\x92\x3a\xa8\xdc\x93\xb0\x80\x2a\xad\x5c\xa6\x4f\x28\x38\x85\x12\x6e\x60\x01\x44\xa9\xbe\xad\x8b\x92\x73\x91\xa9\xb4\x37\x7f\xe1\xdd\x2a\x2c\xd6\x05\xbd\x7b\xf3\xea\xf1\x72\x56\x83\x53\xc9\xfb\xf3\x37\x9f\x9a\x34\x6d\x81\x5d\xaf\x79\xe9\x19\x90\x6f\x85\x01\x71\x09\x08\xb1\x1a\xbf\xd7\x66\x03\x55\xca\x30\x8a\x6b\x6a\x01\x3b\xfa\xfd\x46\x19\xf5\x66\x76\x00\xa9\x69\xc0\xbc\xf5\x71\xe1\xab\xe3\xfb\xb8\x56\xe2\x88\x0f\x9e\x6d\x7d\xd8\x19\xab\x3d\x4d\x2a\xef\x9a\xe0\x82\x16\x4d\xd4\x2b\x2d\xcc\xe5\xa7\x81\xaa\xd7\xec\x96\xe2\xed\x9e\x2a\x43\x3b\x5a\xb1\xbb\xb3\x90\x6f\x41\x47\xc7\x78\x6c\x4b\x36\x39\x9f\xdd\x19\x38\x2d\x26\x2c\x37\x0e\x82\x6d\xc7\x2b\x0f\xbe\x47\x9e\xdd\xa1\xaf\x7a\x1c\xe7\x6b\xa9\x6a\xf2\x21\x0d\x37\xd1\xc0\x0e\xb1\xdc\xf4\xad\xe4\xd6\xbc\x31\x46\x2f\x17\xe3\x7c\x9f\x4b\x7b\xc5\x89\xe2\xe5\xcf\xc8\x3d\x1b\xfa\x0e\xbc\xb4\x0e\x4d\xaf\x09\xa4\xbd\x93\x75\xf9\xdb\xaa\x76\x65\xfa\xdc\x74\xb1\xef\x0b\x63\xc4\xdf\xbd\x94\x95\xc4\x4f\xfa\x39\x2d\x58\x95\x2f\xed\x4e\x27\xf9\x4d\xda\x88\x03\xf2\x5d\xb2\x11\x5d\xa2\x1c\xa7\xff\x49\xcd\x82\x8c\x58\x55\xc8\x60\xe5\x52\x0f\xea\x49\x79\xd5\x48\x8a\x8d\x46\xbf\xe9\x97\xcc\xe0\x89\xad\xce\x12\xcd\x51\x3a\x57\xaf\x5e\x77\x49\x9c\x44\xc1\x84\xf3\xa1\x87\x75\x1b\xe0\x20\x51\xce\x38\xb8\x66\xa8\x0a\x8c\xe1\xe9\xc6\x97\x96\x2a\x0e\x2a\xb4\xc9\x13\xb5\x0b\xdd\x54\x38\xbf\x47\x99\x2b\x2d\x1e\xa2\xa2\x47\x29\x47\xd4\x47\xdf\x1d\x3f\x3c\x4b\x0d\x8c\xff\xb1\x3c\x62\x54\x4b\xb4\x09\x92\x04\xe7\x8b\x1d\x32\x35\xa8\x62\xcf\xc3\x76\xc6\xda\x33\xb7\x7a\xf4\x70\x89\x76\xac\x26\x3b\xe5\xae\x0d\x8a\x2f\x1b\x66\x38\xa0\x65\xa1\x75\xf6\xc0\xde\xb1\x5a\xa4\xb1\x02\x14\x40\xae\x01\x79\x76\xfe\xb2\x09\x8a\x22\x20\x2a\x31\x02\x23\xaf\x21\x0b\x35\xd3\xcb\x00\x59\xc8\x73\x35\x07\x16\xe3\x97\x87\xdb\x95\x23\x01\x7c\x4d\xd1\xd8\xba\xb2\x5b\xe8\x74\x22\x26\x94\x95\x7f\xa9\x99\xf7\xf7\x84\x6e\x9a\x42\x1a\x2f\x3c\xa8\xef\x4c\x6a\x61\x5f\xf0\x0f\x8c\x8b\x34\x95\x47\x46\xad\x6a\x5f\x02\xd4\xfa\xe5\xf4\x16\x9d\x6b\x4e\x1b\x15\x75\xdb\xec\xd7\x14\xbc\x77\x58\x0d\xdd\x1e\xe5\x01\x2e\x0e\xd2\xdb\xa4\xda\xc3\xff\xd4\xf4\x45\xba\x02\x1a\xa9\x21\x96\x98\x42\xe5\x3f\x35\xa2\x3d\x49\x78\x7c\xea\x61\x56\xa0\xe5\x42\x93\x67\xb6\xe6\x87\x7a\xb2\xbf\xd9\xc3\x0d\xb6\x84\x7c\x66\xf4\x59\x21\x94\xd8\x24\x36\x2e\x30\xe4\x01\xb6\x23\xfa\xfc\x06\x4d\x61\xc3\xc1\x53\x58\x29\xde\x6a\xd3\xde\x92\xc5\x17\x11\x70\x82\xf9\xba\x86\x45\x15\x8b\xbb\xf2\x91\x6e\xe9\xab\xc5\x70\x26\xf6\xbc\xda\x9d\xbd\x84\x1d\xd4\xc7\xab\x2c\x99\x01\xfc\xe2\x60\x56\xfc\x47\x35\x03\x3d\x65\xfb\x2c\xdc\xc8\x63\x5e\xe1\x9a\x90\xd1\xc2\x55\x3e\x41\x01\xb1\x5a\xc6\xff\x7f\x7d\x08\x0a\xcf\x85\x60\x60\x9c\xfb\xfc\x78\xdd\xd8\x91\xb3\xbe\xa8\x60\x0e\xe5\x96\x6f\x9a\xa4\xbd\xc7\x06\xf6\xc2\x53\x9a\xa8\x1a\x3f\xd1\x20\x3d\x1c\x38\xed\x3b\xc2\xe5\x30\xf7\xce\x04\xdd\xaf\x8c\xcf\xe7\xe1\x0e\xea\x7a\x5d\xb4\x81\x18\xc1\x5c\xac\xd4\x7c\x6c\x50\x36\x84\xf7\x20\xeb\x8e\x50\x8b\x49\x46\x59\x5b\xfc\xb8\x4c\x16\x7d\xf0\xe7\x87\x69\xa8\x24\x46\xd3\xf2\xa0\x7f\x69\x36\x4e\xf7\xd1\x90\xc5\x69\x7f\x42\x16\xfc\xf9\xb6\xb3\x94\x4e\xa4\x9c\x71\x9f\xfe\x70\x4b\x8b\x35\xd5\xba\xb9\xae\x0e\x2b\xbb\x44\x38\x33\xde\xbc\x5c\x0e\x20\x3b\x67\x15\x8a\xd1\xf7\x6e\x48\xe4\x4d\xe3\xa4\xf8\x8b\xf3\xb3\x75\x61\x57\x41\xd0\x3b\x7e\xb7\x51\x35\x22\x28\x87\xbe\x38\xbb\x77\xae\x1d\xe7\x49\xb6\x7a\x9c\x9d\x50\x9d\x38\x1d\x1d\xbc\x5c\xf1\xa6\x04\x65\x26\x91\x03\x5c\xbd\x5a\x6b\xd6\x34\x11\x13\xaa\x13\xc6\xa7\x57\xc8\xa4\x89\x8b\xf2\x37\x90\x1b\x02\x98\xc4\xf8\xc3\xc2\x56\x73\x14\x2e\x52\x2a\x9e\x9a\x69\x90\x6e\xe2\x33\x84\x5d\x89\x4a\x38\xe7\x19\xa8\x37\xed\xb8\xa8\xae\x11\x30\x55\x58\xb9\x52\x1b\xb0\x91\x06\x72\xf9\x71\xe6\x6d\xef\x9d\xed\x2d\x7c\x3e\x97\x12\x81\xa6\xcd\xfd\xfd\x0d\x45\xb3\x0e\x05\x0e\xa3\x94\x37\x00\xf3\xb7\x3c\xa8\x70\x97\x19\x4b\xf8\xac\xcf\x6d\xcd\xc6\xdb\x4c\x17\x98\xc3\x60\xb7\x0c\x3b\x4b\x49\xab\x41\x8d\xae\x50\x8c\xf6\x28\xe2\x95\x81\xc3\xc1\xa6\x03\xe6\x5f\x76\xa5\x75\x5d\x05\x2b\x75\x5d\xee\x67\x0d\xb5\x2d\xc3\xb8\x35\xc5\xa0\x76\xa5\x16\xa3\x3e\xb6\xc2\x00\x54\x74\xb6\x4f\x16\x5d\x5a\xab\x79\xa9\xdf\x8c\xd7\xf9\xee\xc9\xca\x2d\x52\x4b\x34\xb0\xdf\xf7\x9c\x0e\xd2\x03\x00\xaf\xd4\xee\xf9\xfa\x62\x7d\x7e\xc0\x18\x11\x22\x2c\x51\xfb\x4e\x79\xd9\x79\x18\x09\xd1\xac\x7b\x19\x54\xe4\xa8\x5e\xc7\xc8\x85\x88\xf7\x9b\xb7\xb4\xe6\x29\x77\x54\x40\x2c\x19\x05\x6a\x79\x51\x0d\x07\xc8\x75\x43\x56\x01\xbc\xb5\xb1\xf5\x2d\xc5\x23\xc2\x77\x79\xd7\xf4\x8d\xf9\x10\x5b\x2d\xec\xe2\x52\x6a\x98\x33\x60\x2c\xbb\x7d\x9c\xf6\xf2\x3d\xec\x20\xae\xa1\x21\x07\x75\x9f\x7b\x55\x11\x55\xa3\x55\x18\x70\x2c\x14\xa6\x5f\x65\x90\xf5\x30\x1e\x7c\x46\xa9\xab\xc2\x12\x1c\xd3\xf8\x3e\xff\x45\x8f\x3e\x74\xad\x89\x2a\x2e\x7a\x61\x91\xbc\x5a\x69\x03\x0b\x21\x31\xf3\xf5\x3d\x0a\x94\xaa\x49\x0b\x36\xe2\x43\x07\x7b\x99\x1e\x43\x48\x82\x50\xcc\x1d\x78\x71\x94\xd2\x62\x70\x61\x1a\x9d\x7c\xff\xff\xaa\x67\xdb\x77\xd3\xa6\x4d\x13\x80\xc8\xe9\xa6\x06\x41\x89\xf3\x6a\x21\xfd\x94\xdb\xfc\xc4\x58\x65\x27\xfa\xe0\x22\x9e\x2d\xb6\x7f\xd0\x01\x49\x2b\xa3\xa8\x26\x22\xc3\xbb\xb6\x29\x40\x59\x52\xf1\x90\x10\x71\x9b\xb6\x43\x66\x2e\xf5\x53\x74\x47\x8f\x2c\x50\x4e\x12\xb7\xcd\x22\x3c\x7b\x36\x3f\xfd\xfc\x54\xb5\x3d\xb3\xac\x38\x25\x1b\x67\x5a\xae\x9e\x77\x5e\xe7\x8d\xb0\x42\x37\xe3\x62\x6b\x0e\xa5\xba\x14\xee\x40\xfe\xbc\xb1\xa2\xab\x90\x4a\x14\xbc\x95\xdd\x08\x96\x43\x71\x4f\x72\xb3\x24\xc7\xaa\xeb\x5e\x8d\x3d\x81\x59\x05\xdb\xd3\xe0\x15\x0c\x5d\x2f\x9a\x9b\xb5\x3a\xa3\x0d\x9c\x58\xf7\x9a\xf7\x75\x8f\xd6\xeb\x57\xae\xd0\x28\x7a\x95\x73\x06\x4b\x44\x24\x0a\x6d\xde\x12\xd5\xd7\xe6\x36\xed\x5e\xac\x7a\x54\x28\xd2\x02\x00\xe3\xee\xf6\x44\x73\xb8\x4e\x3d\x81\x17\xb9\x47\x63\x3d\x38\xc4\x4f\x7c\x85\x8a\x4f\xe9\x8e\x7d\x18\x31\x10\x1d\x8e\xe6\xcf\x57\x5c\xb0\xc2\x3e\x50\x26\xfb\xd9\x90\x51\xcd\x96\x8e\x50\x92\x97\x3d\xf0\x72\x46\xdd\xbb\x0a\xaf\xfb\xf8\xed\x12\xb8\x63\xc7\xdf\x67\xbe\xa7\x81\x44\x30\x6a\xa4\x10\xef\x9f\x29\x24\x4d\xcb\xc1\xe5\xf8\x8f\xfe\xe0\x21\x4d\x76\xad\x97\x1b\x85\x2b\x90\xb0\xa7\xc7\x5c\xa0\x87\x1b\xea\xf6\xe9\x83\x84\x1b\xef\x3f\x5b\x0b\x07\x69\xb5\xf0\xfc\x06\x7d\x30\x10\x60\x86\xfd\x44\xbf\x6b\xdf\xfe\x0b\xb5\x02\x8b\xd5\xa8\xc8\xc5\x55\x1e\xf5\x69\xfd\xd9\x54\xd8\xa2\xd3\xa6\x70\xd3\xac\xec\x61\x79\xe2\x49\xc9\x43\xb0\xa9\x57\xa5\x8d\xc0\xc7\x0d\x65\x92\x32\x94\xc9\x73\x8f\x85\x53\x49\x71\xc0\x6c\x9b\xaf\x68\xf1\x60\x88\x3e\x13\x97\x64\xcb\xad\xd0\x23\x16\x2e\xb7\xf2\x06\x8c\xda\xd6\xc4\x85\x93\x5b\xa6\xc5\x5b\xfd\xc8\x64\xcd\xc2\xab\xc1\x9b\x4e\x02\x0e\x75\xc9\x13\xe7\x9d\xea\x0e\x95\x3e\xcb\xf9\x29\x97\x8f\xf4\xd4\xc9\x28\xbe\x23\x14\x2a\xa0\xf6\x5a\x7d\xd6\x58\xa3\x4c\x5a\x78\x7c\x70\xad\x26\xce\x8a\x4a\x25\x12\x00\xa8\x27\x89\x55\x67\xdc\x3b\x46\xd1\x42\x71\x4a\x7d\x05\x1b\x17\x5c\x54\xe8\xa7\xa1\xe5\x14\x8a\xd1\x9f\x7b\xb3\x41\x90\x32\x52\x21\xd0\x84\x31\xbf\x7e\x22\x7b\x4c\x02\xca\xea\xd8\xa6\xa9\x2c\xd0\x5a\xed\x48\xcc\xbc\x6c\x76\x02\xef\xbf\x62\x9d\x06\x41\x4b\x95\xc5\xcc\x7f\xd7\x04\x8f\xfb\x28\xab\x4e\x69\xd6\x45\x11\xbd\x6d\xa3\xee\x52\xe6\xca\x7e\x74\x7e\xe6\x93\x5a\x33\x2c\x8e\x0c\xa9\xa3\xc9\x3e\x05\xd6\x89\xfc\x2a\x0e\x4a\xc8\xe5\x1e\xdd\x79\x5b\x38\x38\xdc\x48\x6a\x35\x55\xe3\xda\xf8\x67\x19\x68\x20\x62\x44\xc1\xbd\xd1\xc1\xab\xb9\x38\x60\x1e\xeb\x3f\x57\x5b\x5f\x82\x54\xad\x8a\x9e\x9d\x13\xe5\x49\xb0\x6b\xc4\x23\x89\x79\x5c\x6b\x13\xec\x6e\x2d\x93\xf2\x04\xff\x53\x1c\xd8\x7b\xde\xca\x26\x8c\x97\x8a\x1b\x6d\xac\x56\x1b\xf1\x6e\x46\xda\x98\x1c\x7a\x30\xd5\x60\x62\x34\x43\xd3\xcb\xdd\xb1\x23\xfb\x81\x25\x0a\xb7\xb9\xf9\x21\x21\xc0\xd2\x20\x3e\x01\x81\x79\x63\xfe\xfa\xec\x7d\x36\x67\xda\x6c\xd1\xdc\xd4\x35\x56\x9a\x88\x48\xec\x97\xd9\xbf\x53\x67\xa7\x21\x2b\xe5\x9f\x99\x7f\x7f\x4d\x91\xb0\xa5\x2e\xf5\x1d\x95\x7c\x5d\x1a\xab\xf9\x40\xd4\xea\x98\x51\x96\x0c\x56\xbe\xfb\x54\x82\x4a\xc7\xf5\xba\xc0\x26\x7d\xeb\x91\xec\xd7\x74\x51\x13\x94\x11\x3f\x3b\x55\xc3\x39\x85\x41\xa2\x9f\x93\x7b\xf6\x45\xf8\xa0\x4a\x9c\x0f\x78\xf1\xf3\x46\xc3\x35\x61\x23\x42\x7d\x5c\xce\x4a\x69\x3e\xdc\xa3\x80\xf9\x3a\xe2\xbf\x71\x54\xb3\xcd\x68\x3a\xc4\x95\x8c\xca\x7d\x9b\xd2\x26\x8c\xcf\xbb\xec\x87\xf7\x5f\xa4\x5f\x09\xcc\x3a\x65\x61\x77\x5f\x9b\x7a\x4f\xa3\x7e\xe2\x12\x90\xf0\xd8\xf6\xb4\x42\x1c\x75\xa8\x07\x3c\xa3\x95\x4f\x2a\xae\x92\xc4\x0f\x68\x8b\xf9\x52\xee\xaf\x6d\xc3\x95\x78\x52\xe1\x8d\xf1\xe8\x9a\x6e\x25\x9d\xc2\x1e\x49\x55\x5e\x72\xfb\x7b\x86\x2b\x94\x9b\x64\x28\xa0\x00\xf7\x03\x6e\x08\x40\x3d\x0e\x4a\x30\x7e\xbb\x42\xeb\x70\xd0\xa6\x57\x77\xb9\x5d\x50\x82\xa5\x7d\xf4\x49\xdd\xd5\x82\xcf\xd6\x92\xcb\xe9\x8b\x4c\x05\x56\x20\x5f\xa8\x05\xe0\xa5\xe3\x24\xfe\x04\x59\x0e\xf1\x4e\xc1\xee\xff\xdf\xc9\xa3\xa5\x93\x58\x0b\x1b\xda\xb8\xf7\xc0\x10\x71\xfc\xad\xaa\x4b\x79\xfe\xf4\xdd\x57\x46\x6a\x31\xd4\x13\x12\x0b\x73\x06\x43\x50\xb8\x99\x60\xc6\xd4\x29\xce\xb6\xdd\xf2\xde\xe8\xa1\x8e\x07\xb2\xbf\xc7\x14\xfe\x74\x2d\x0e\x17\x88\x78\x70\x9d\xff\xee\xb4\x8c\x7c\xd4\xdc\x29\xd7\xaa\x36\x72\x5b\x56\x09\x81\x16\xca\xb9\x24\x9c\xa3\x1d\xdd\xba\x4f\x3a\x8a\x93\x56\x73\xfe\x89\x47\xb5\x0e\x39\xea\x07\x85\x1d\x49\xc3\x3a\x4b\xf3\x5b\xf5\xa8\x87\x03\x07\xbb\xd8\x07\x4c\xc4\xbb\xf6\x5c\xa8\x05\x2f\xaf\xda\x6a\xbf\x1e\x5d\x36\xa8\x4d\xe9\x6e\xb3\x06\x69\x50\x16\x6f\xe0\x9f\x1c\x95\xc1\xd4\xaf\x63\xc4\x52\x0b\x64\xf3\x8c\xf6\xe1\x99\x1a\xb6\x82\x0b\xc5\x68\x87\xd0\x38\x59\x48\x6b\xc4\x82\x4c\x33\xf7\xfa\x22\x6d\x82\xca\x6b\x56\xc0\x82\x24\xad\xa4\x39\x37\x40\xe2\x08\x84\x1a\x7e\xab\x1c\x86\xd9\xd7\x62\xdc\x50\x90\x9c\xb9\x1d\x5b\xb3\x87\x7c\x92\x4d\x12\xe1\x9c\x3c\x9a\x20\x4c\x72\x42\x3f\xa0\x35\xc4\xc7\x90\x46\xc7\x74\x45\x35\xbd\x56\x67\xd8\x02\x8f\x91\xfc\x47\x1a\x69\x95\x67\x33\x25\xaf\xcf\xdf\xb6\x70\xa4\x52\x13\x32\x1a\x56\x1c\x1a\xf2\x41\xfb\x1f\xb7\xc8\x1d\x31\xa3\x63\xb6\xe8\x88\xe7\xae\x3c\x0d\x5e\xed\x35\xbd\x71\xf5\x97\xd4\xa4\xbf\x93\x34\xf2\x06\x89\xd7\xe6\x13\xdd\x9a\xfc\xa5\x14\x54\xce\xdd\x76\xb7\xae\xc5\xec\x07\x2c\x04\xd3\x70\x71\x5e\x9c\xa9\xfc\x4d\x17\x16\x30\xe4\x55\xdd\x56\xad\x0f\xf3\x69\xd0\xcb\x28\xdc\xe4\x91\x06\x6a\xe9\x0a\xe5\xd7\x5d\x9c\xcd\x40\x58\x13\x79\x36\xe2\x2f\x40\x64\x20\xf5\xa5\x1a\x96\x0a\xdb\x8c\x6a\x69\x5f\x20\xac\x18\x67\xce\x98\x76\x19\xb7\xeb\xd8\x36\x21\xfb\x42\x1a\x04\x55\x18\x82\x6e\x90\xb1\x50\x99\xe3\x85\x35\x1e\x76\x7f\x38\x3f\x4b\xce\xac\x84\x95\x0a\xf6\x1c\x4c\x6a\xba\xd2\xb5\x89\x0f\xc1\x66\xaa\x33\xda\x23\x30\x9b\xb9\x07\xdf\xca\x66\x14\xff\x1f\x5d\x5f\x1f\x6e\x45\x55\xef\xcf\x7e\xc9\x0c\xe5\xfd\xd5\x13\x02\x11\x82\x21\xfb\x74\x38\xbc\x2b\x11\x20\x22\x22\xb2\x09\x4f\x88\x44\xe8\xda\x33\x6b\xef\x59\x67\xcf\xcc\xda\xae\x99\xd9\xfb\xec\x13\x19\x99\x97\x94\xbc\x46\x46\xc6\x35\x33\x23\xf2\x47\x5e\x23\xe5\x92\x91\x71\xb9\xe8\x25\x33\x33\xf2\x92\x99\x79\x89\x6b\x5c\x32\x23\x22\xe3\x31\x32\xe3\xcc\xfd\x3d\xf3\x5d\x6b\x66\xad\x59\xfb\xf4\x8f\x3e\x0f\xe7\x9c\xfd\xb2\x66\xad\xef\xfa\xbe\x7c\x5e\x3a\x3b\x3b\xe2\x78\xb3\x55\x93\xce\xe1\xb1\x99\xab\xd3\xa2\xd7\x54\x5b\x12\x62\x54\xe1\x66\x1f\xf2\x9c\xc2\xcc\xc6\xe0\x93\x9f\x51\x5c\xa1\x71\x0f\x89\xee\xde\x1e\xed\x04\xf9\x95\xfe\xac\x5d\xb3\x9f\x58\xa1\x67\xe2\x15\x64\xdb\xe2\xba\x7d\x6c\x97\x56\x1b\x20\x10\x29\x83\x56\xc8\xd7\x56\x24\xef\x08\x6a\x9f\x61\x66\xa9\xd0\xdf\x8f\x33\xc0\x7c\xee\x98\xd6\xc1\xc3\x2e\xcc\xbc\xe2\xe3\xf3\xbe\x8b\x15\x43\xe9\xa4\xc5\xd9\x7b\xa7\x6e\xe6\xd0\x40\x84\x24\x60\xef\xec\x55\x1a\xf8\xa1\x86\x99\x83\x5c\x40\xe3\x89\x3d\x77\xf7\x4b\x9a\xa2\x0e\x67\xfb\x40\xc5\x23\xee\x8d\xaf\xdf\x2f\xd7\xd0\x26\x80\x05\x7c\xe8\xb0\x4e\x35\xaa\x4b\x64\xf5\xbb\x1e\x53\x08\x27\x82\x98\x0b\xdf\xe1\xbf\x9f\xd1\xb1\xb5\x15\xc4\x4c\x08\x64\xb0\x4c\xaf\x0c\xd4\x9d\x52\xa8\x50\x25\xce\x1d\xbf\x32\x5d\x29\x94\x30\x73\x3d\x1f\x13\x08\xf1\xb2\xe1\x70\xf1\xed\x6d\x4a\x66\xe8\x94\x02\xa6\xa6\x22\x4f\xdc\xa1\x53\xb4\x5c\x91\x70\x86\x6f\x9f\xd4\xb9\xa6\x8c\x05\xb5\xc4\xcd\xaa\x2f\x73\x58\x21\xc3\xfa\x98\x31\x52\xe2\x83\xec\xbb\x1e\x4c\x9a\xc3\x0d\x70\xa0\x54\x8c\xfe\xae\x94\xee\x26\xc0\x14\x96\x3f\x32\x37\x09\x0a\xed\xfc\x76\x90\x36\xf8\xf1\x43\xe9\x22\xba\x4a\x99\x5b\xc2\xac\x92\x12\x68\x7a\x5a\xe0\x6f\x70\x8f\x45\x4a\x24\x46\xb9\x96\xa6\x0d\x51\xa6\x40\xd0\xb4\xcc\xbd\xf7\x4c\x9b\x76\x25\x70\x65\x56\xe1\xba\x79\xb7\x50\x46\x74\x68\xc0\xf8\x4c\x21\x3c\x75\x54\x9e\x1e\x9f\xd6\xf8\x03\xcb\x3d\xf6\xa8\x76\x3b\xb5\x14\x89\xb9\x81\x9b\x5b\x9c\xb4\xc1\x29\x2b\xba\x99\x16\xbd\x39\x2a\x35\xa5\x01\x28\x6d\x74\xe7\x2c\xdc\x31\x3a\xd5\xbe\x11\x9c\x8f\x42\x31\xfc\x4a\x5b\xfa\x1d\x2d\xec\x60\x96\xd2\x72\xcd\x2f\x2a\x73\x84\x17\xb0\x37\x3c\x1b\xc9\x42\x30\x1c\x39\xfd\x7d\xda\x06\x4b\xe9\xe2\x09\xe9\xdc\x3d\x2f\xa5\x57\xa7\x8a\x4a\x81\xd2\xeb\xbc\xfd\xf0\x08\xa5\x8f\xea\x61\xec\xf0\x27\xfd\xae\xed\xbc\xf1\x0b\x6b\x1c\xe6\xb8\xdd\x52\x61\x15\x76\x7c\x8f\xd6\xe5\xbc\xea\xcb\x3a\xa6\xa5\x86\x88\xcb\x15\x3e\xa3\xb2\xe7\xc8\x7d\x3a\xab\x83\x61\xe4\xc7\xca\x57\x9b\xba\x74\x84\x1a\x8b\x47\xfa\x90\x19\x4f\x7a\x7b\x88\x38\x86\x65\x1c\x0b\x8c\xb1\x43\x5a\x31\x0f\x34\x14\x0e\x0a\x96\x65\xc2\x17\x2d\x09\xe7\x05\xa0\x95\xb5\x5f\xe4\xcb\x0c\x47\xa5\xa8\x57\x28\x86\x81\x46\x47\x01\x60\x86\x50\x83\x9a\xb6\x4f\x07\x49\x09\xcf\xc4\xa4\xad\x10\xbe\x78\x52\xf7\x4d\x44\x8c\xb7\x66\x9b\x5b\x14\x1e\x48\xe0\xd5\x88\xc1\x2f\xd0\xcf\xb4\x68\xc0\x20\xc3\x12\x80\x8b\xf0\xe9\x6d\x62\x0a\xed\x12\x5f\x51\x1b\xcf\xf4\x4e\xeb\x37\xd0\xf2\x5b\x60\xed\xab\xc9\x84\xd9\xf1\x14\x4f\xcd\xcc\xbf\x2e\x91\x2e\x17\x34\x68\xa9\xf6\x3f\x33\x51\xcb\x64\xb9\x8f\x64\xfc\xb2\x73\xdf\x52\x1d\x0a\x70\xcd\xc2\x0c\x32\xcb\xb5\x07\xb5\x9b\x23\x20\xb6\x29\xf0\x4b\xa9\x50\xf0\x76\x0b\x95\x1d\xb4\xfd\x62\x15\xcb\xec\xd9\x36\x8d\xf6\x67\x56\x64\xf9\x5f\x62\xaa\x4d\x6f\x49\xb5\x54\xce\x7d\xf4\x61\x5d\x1c\xc2\x08\x9c\x12\x76\xfd\x76\xc1\xdb\xf9\xf8\xda\xe1\x2a\x26\xaa\x2e\xcc\x4c\x1e\xbd\x57\x69\x3e\x61\x93\x13\x73\xf2\x3d\xbb\x34\x87\x1d\xea\xc5\xbc\xbf\x3f\xb6\x4c\xf6\x11\x63\x89\x06\xc9\xc7\x16\xa8\xa9\x62\x85\x0f\x4f\xf2\xf3\x77\xca\x7f\x2d\x09\x2f\xe6\xbe\xcc\xb1\xe7\x93\x94\xd8\xa6\x2d\x5e\xf9\xdb\x87\xca\x78\x66\xda\xd0\x67\xbf\x5f\xb3\x98\x14\x2e\xf6\xb1\xa3\xf9\xf9\x47\xb4\xb4\x07\x1b\xb4\xe2\x92\x5e\x9c\x20\xfc\x7e\xf0\x96\x80\x61\x8b\xb2\xb6\x50\x0c\xb7\x0d\x96\x4f\x14\xf7\x20\xa7\x66\x73\x84\xea\x8b\x2a\x4b\xbc\x17\x31\xae\x85\xf9\xad\x29\xe3\x15\x69\x24\x08\xa6\x16\x4a\x71\x52\x73\x78\xda\x30\xe5\xd6\x73\xb9\xc3\x55\xf6\x4f\x1d\x8a\x10\x14\xf1\x49\x2f\xd7\xaf\xd8\x52\x4b\x12\x82\x00\x8e\xd7\xac\x71\x8a\xf9\x1a\x76\x20\x4e\x91\xf6\x31\xca\x9b\x7a\x51\x99\xe4\x39\x60\xa9\x12\x1e\x15\x6d\x8e\xe5\xd8\xb6\xb1\xca\x55\xac\x6c\xd0\xa6\x73\x41\xc9\x89\x67\x2e\xd9\x07\xf7\xc9\x64\xcd\x8c\xf1\x9b\x9f\x7d\x58\x7b\xe4\x18\xc5\xf8\xde\x3f\xed\x9c\xa0\xec\x3b\xb7\x84\xed\x56\x6c\xf9\x2f\x8e\x68\x30\xa4\xc0\x30\xb0\xe7\x51\x69\xbc\x3f\x6c\x80\x06\x43\x72\xb0\x6d\x8b\x01\xf2\xee\xb6\xf4\xa6\x72\x10\x63\x04\x55\x38\x93\x24\xfb\xd0\x66\x0d\x54\x90\xf0\x02\x73\xfe\xac\xd1\x0a\x54\xd6\xf3\x1d\x02\xa6\x0d\x85\x62\xf8\xd2\x00\xbe\x34\xc8\x29\x81\xf5\x23\x15\x54\xbc\xdc\xc4\x0b\xf8\x0f\x96\x30\xe4\x9a\x2a\x2c\xf8\xd3\xaf\x2b\x27\xc4\x60\x98\xbb\xd6\xe4\x37\x2e\xd0\x24\xc2\x91\x67\x89\x41\x8a\x67\xa6\x37\xa4\x98\xe7\x8a\x34\x66\xff\x2b\x8a\x94\x2e\x66\x84\x2a\xa6\x9d\x87\x07\xb4\x90\xd2\x30\x8b\xb6\x32\x77\xae\xcb\x5d\x5b\xe2\x41\x6f\x15\xe9\x49\xc9\x25\xec\x57\x7c\xcd\x6f\x0b\x10\x13\x4a\xbf\xd9\xc5\xc3\x15\xc4\xa3\x45\x2a\xd8\xa5\x4c\xa5\xc5\xed\xdf\x98\x0e\x0f\xa8\x57\xba\x19\xc0\x6c\x6a\xa2\x86\x85\xe1\xaa\x9b\x89\xb9\x69\xee\x83\xcf\xcb\xe4\x6f\xc6\xfc\x79\xf3\xa2\x9b\x63\xf8\x50\xf1\xdd\x4c\x82\x7c\x06\x10\xf3\xfc\x0d\xe7\x64\xe6\x65\x50\x5a\x8b\x75\x4b\x45\x22\xba\x7d\xa9\x6c\xe1\x1a\x8c\xf8\xc4\x20\xbd\x2a\xfb\x23\xb7\xf4\x55\x0d\x79\x4c\x30\x33\x62\x2d\xbc\x4d\xed\x4a\xf2\x4b\x5d\xec\xf1\x4a\xe1\xb1\x3c\xaf\x54\x2a\x01\x01\x52\x77\xee\xa7\x23\x35\xa6\x6e\xd9\x07\xe1\x88\xe8\xa9\x8c\x5e\xad\x6b\x61\xd9\x36\x71\x2b\xf1\xe5\xf5\xb0\x9d\x04\x25\xe6\x4d\x6d\x49\xfd\xbb\x56\xcb\xf5\xaf\x89\x87\x56\x28\x86\x47\xe6\x68\x66\x11\x24\xa6\x0e\xc8\xd8\xbf\xec\x19\xfe\x48\xd7\xa0\xaa\xda\x42\xff\xc4\x64\x79\x18\xab\xb4\x17\x55\xa3\x2f\xba\x7a\xa2\x0c\x22\x20\x08\x08\x59\xc1\xf7\x4f\xeb\xcf\xc8\x67\xc8\xc5\x89\x9c\xce\xc1\x7c\xcb\x33\xb4\x11\x89\x7d\x68\xfa\x32\x8b\x9f\x4a\xd1\x71\xa9\xcd\xdb\xd9\x5d\x2f\x0e\x52\x54\x4b\x0a\xc5\xf0\x91\x6e\x61\xdb\xdd\x74\x6a\xc8\xb7\xb0\x1f\x3d\xda\xb0\xf3\x42\xad\x70\x75\x1c\x78\xf0\x38\x56\xae\x0b\xe7\x95\xe4\xeb\xab\xd8\xef\x7b\xcf\xe8\x37\x35\xc3\x98\x43\x12\xc2\x63\x9a\x5c\x82\xc1\x90\x17\x4b\x61\x5f\x3f\x49\xca\x7a\x9b\x2d\x55\x6e\xfd\x7c\xab\xef\x2c\xcc\xa4\xf9\xe9\x3b\x3b\xb0\x15\x72\x87\xa2\xeb\x90\xb7\x10\xb2\x17\x68\x9d\x4e\x83\x11\x8f\x78\x3c\x35\x0e\x0f\x1f\x48\xa3\x35\xd2\xcd\x5e\x48\x43\xd3\xfb\xe2\x4c\x28\x65\xdc\x5c\xf0\x74\xfc\xd2\xc0\x64\x23\x55\x49\x0b\x53\xf3\xd1\xa1\xfc\xec\x54\x30\x07\xeb\x43\x50\x18\xb1\xe9\x62\x91\xbe\x53\x2e\x85\x3b\x67\x63\xd2\xb8\x28\xa9\x6e\x73\x39\xfb\x59\xf5\x20\x78\xa2\x06\xc8\xfc\x60\xef\x70\x05\x7f\x5b\xc2\x8c\xfb\x28\x0c\xbc\x4b\xbc\xae\x4d\x1b\xd1\x25\x63\x29\xc2\xfc\xd8\xe4\xaa\x7d\x07\x67\xa5\xb3\x47\x10\x77\xd7\xeb\xf4\xcc\x96\xf6\xb1\xca\xcd\xe1\x12\x6c\xab\xf6\x6d\x9b\xe4\x4e\xb6\x09\x57\xab\xfc\xfa\x2e\xb9\x91\x2b\x01\xe2\x93\xac\xaf\xbd\xaa\x9b\x13\x21\xa7\x44\x2a\x01\x0d\x38\xcd\x2f\xf7\xbd\x3b\x94\xdb\x92\x3a\x25\x04\xe7\x3c\xff\x6e\xe5\x12\x6d\x12\xbf\xd7\x8a\x0e\x4b\xf8\xf6\xc8\xd6\x6a\x91\xef\xc7\x41\x0f\x69\x6c\x66\x82\xcc\x66\x8a\x7b\x93\x5b\xb3\x47\x92\x64\x18\x74\xfd\x7a\x46\xea\x91\xd9\x44\x42\x6c\x08\x9e\xc9\x37\x34\xc1\x19\x0f\xf7\x48\xb9\xc8\x7b\x8f\x4d\xd5\x76\x7a\x89\xf0\x03\xda\xda\x45\xc8\xec\x68\x21\x06\xc1\xd5\x8e\xbd\xb8\x3e\xf3\xb3\x97\xa8\x13\x5f\xc3\x42\x2a\xa6\x78\x6e\x28\xd3\x82\x32\xc3\xb8\x61\x61\x6c\x8b\x62\xb0\xfe\x9a\x82\x81\x10\x62\xb2\xd1\xe7\xfb\x4a\x9b\x8e\xe3\x42\x26\xb7\x2c\x80\x00\xd3\x77\x4a\x06\x3f\xbf\x45\x90\x28\xf3\x89\x7b\x92\xa4\xba\xc6\x54\x22\xee\x94\xd1\x3a\xdc\xd6\x03\xd9\xba\x24\xf2\xbc\xa2\x90\xa9\x2d\x44\xa0\xe1\xf8\xa7\x75\x3c\x19\x5b\x23\xdc\x5f\x01\x9f\xb4\x86\xb7\x73\xcb\x60\xa2\x04\x41\xed\x8e\xe5\xbc\x45\x62\x53\xea\x71\xbb\x8c\x5f\xbd\xa2\xf9\xe8\x20\xd2\x40\x40\x3f\x8e\x3b\x15\xff\x7d\xcf\x44\x25\x61\x81\xbb\x57\xe7\x1c\xf4\xe5\x36\xbc\x95\x8e\x3c\x41\xad\x86\x63\x9c\x54\x79\x8d\xba\x7e\x35\x24\xac\x9d\x73\x1f\x7c\x29\xfd\x7c\x4b\xc8\xad\xc6\x0c\x12\xbd\x2b\x7f\xb9\x39\x4e\xe9\xf3\x93\x0a\x32\x09\x66\xa2\x9f\x03\x40\xef\xe7\xf6\x72\x52\xc4\x2a\x81\xa6\xd0\x7b\xdb\x1d\x17\x27\x4d\x31\x03\x63\x38\x39\x5f\x3c\xa8\x9c\x5c\xb7\x97\x44\xcf\xfa\xd0\xf2\xf4\xdd\xe3\x63\xc3\x02\x77\x00\x92\x70\x0e\xb2\x27\xb5\x08\x8c\x5d\x46\x12\x4b\xff\xef\xed\x94\x87\x1a\x00\x43\xc2\x0f\x18\xaa\x4a\x75\xa4\x5a\xa3\x36\x36\xc0\x13\x3a\x3f\x60\x09\x4f\xa2\x96\x22\xc6\x9a\x8a\x57\x7d\xfe\x92\x43\xfc\x96\xbb\x11\x07\xae\xaa\x8a\xf9\x96\x3e\x74\x80\xc3\x34\xe4\x90\x74\xec\x26\x70\x75\x3f\x7f\x2a\x0d\x35\xe7\xae\x0d\xc4\xf0\xfa\x9b\xa5\xe4\x17\xad\xe6\x50\xc1\x25\xc8\xb0\xa0\xc7\x93\x94\xdf\x93\x9e\x1d\xdf\x5a\x69\x79\x9c\x80\x2a\x52\x9a\x9f\x76\x0b\xff\x8f\x3a\x66\xcd\x12\x05\x01\xa3\xcc\x8a\x39\x4a\x12\x48\x9c\x1a\x8c\x02\xfa\xb2\x33\x8e\xca\xd0\xe3\xa0\xc0\xb4\x79\xb9\xd3\xa5\xc9\xb8\x20\xdf\xc7\x4e\x0d\xd2\x26\x50\xdd\xba\x2b\x2b\xd5\x8a\x38\xf5\xf8\x37\x27\x34\x0a\x21\x26\x7e\x3c\x03\xbb\x5c\xbb\x61\x3d\x64\x63\xaf\xc6\x1d\x7f\xc5\x09\x6d\xae\x1f\xa7\xf4\xe0\xea\xc4\xad\x78\x7e\xca\x64\xf0\xdb\xc7\x63\x65\x66\x56\xa3\xb1\x66\x7c\x5f\xf6\x85\x7d\xc9\xfd\x54\xe6\xfa\xd5\xfb\x77\x69\xa8\x8a\x06\xc6\x35\x99\xef\x0d\x79\x54\x05\xad\xd6\x29\x97\xc4\xca\x7c\x70\x5b\x7a\xb8\x62\x91\x58\xc7\xf8\xe5\xd1\x7c\xb7\xd6\x49\x85\x32\xae\x4b\x92\x5b\x76\xf1\x30\x75\x4e\x32\xfd\x8a\x25\x85\x62\x38\xbb\x9e\xac\x49\x85\x37\xee\x0f\x4f\x53\xed\xad\x80\x76\x1b\x3e\xb6\x59\xb3\x4d\x43\x25\x3b\xf0\x12\xd3\x81\xdc\xf8\x29\x1a\x7a\xd6\x75\x03\xb7\x97\x20\x1f\xa5\x90\x47\x7d\x13\xd5\xca\xb3\xc9\xbb\xfb\xd9\xdd\x4f\xb6\x60\x17\xfd\x20\x9e\xcc\xfe\x5a\xf4\xbd\xcb\xe2\x93\xdc\x56\x96\xa4\x44\xbf\xd5\xdc\xe4\x57\xed\x32\x23\x44\xbe\xe0\xe8\x17\xfb\xf2\xee\x09\x65\x9e\xc2\x8b\xa1\x72\x60\x83\xb3\xbd\xc9\x15\x9d\x16\x5b\xac\x95\x2e\x99\xdd\x7e\x40\x93\x3d\x6b\x10\xbf\x17\x33\x60\x28\xc6\xaa\xa8\xe1\x27\x0f\x68\x0f\xcf\xc2\x90\xc5\x72\xe5\x31\x7f\x9f\x5c\xcf\x3a\xe5\x34\xf3\xdc\x2d\xfb\x25\xb0\xbb\x5c\xd6\xf3\x11\x34\x45\x6b\xeb\xc4\x02\x41\x00\x63\xe6\x0c\xd7\x45\xe2\xbc\xdc\x40\x3c\x2f\x7e\x0e\xd9\x67\x26\x6b\x73\x6e\x06\xa6\x6f\x89\x0f\xd1\xbe\xf3\xea\x55\x1e\x88\x40\x9a\x79\x49\x76\xc2\x67\xb7\xcf\x8c\x3e\x5f\xb6\x43\xb8\x58\x63\x4f\x78\xa2\x66\xde\xdd\xa5\x74\x5b\x02\xdb\x26\x75\x6e\x91\xf5\xa1\xbd\x62\xfa\x43\x5d\x2f\x2a\x52\x10\xe8\xc7\x5c\xd8\xa6\xd6\xdd\xc8\x44\xa9\xf1\xf8\x17\xa4\x46\x20\x81\x66\xc2\x75\xa1\x82\xfd\x85\x17\x0e\x3f\xab\x8d\x95\x9d\xc0\xb0\x62\xb3\xe9\x23\x0f\xea\x2d\xaa\x32\x65\x4e\x0c\xeb\xef\x09\x95\x34\x27\x76\xd3\xcf\x0e\x3d\x2b\xef\xef\x92\x4d\xa9\x43\xdc\x8a\x89\x6c\x3c\x95\xeb\xba\x1f\x54\xb7\x26\x76\x81\xda\x9f\xc9\xcd\x93\x07\xbc\x40\x59\x05\xb9\xe9\x02\x29\xd3\xce\x49\x09\x85\x35\xb8\xe9\x52\xdb\x6c\x9d\x98\x3e\x7c\x66\x5a\xfa\x8e\xb2\x91\x51\x8d\xa2\x04\xee\xf7\x9a\xba\x6c\xc5\x18\x05\x55\x18\x6d\xd3\x98\x51\xde\x97\xfb\xca\x72\xf9\x61\x28\x77\xd8\x48\xff\x71\xee\x9e\x7f\xd0\x2e\xe3\x37\xcb\xa7\xdb\x3f\xf0\x8f\x3f\x4a\xcb\x8b\x4d\x51\x9c\x4f\xe2\xda\x0a\x3e\x46\xe7\x53\x5a\xbf\x1e\x79\x7e\x6c\x08\x65\x6c\xe4\x37\xc0\x8d\x81\x8d\x9b\x0e\x52\x79\xd5\x4b\x2c\x7e\x47\x2d\x66\xbe\x15\xa8\x5e\xcd\x8f\x9e\xd5\xca\x76\xc2\x64\x05\xd8\x97\xc9\x8c\xe5\x36\x92\x2b\xe0\xdc\xdc\x7b\x27\x7f\x83\xeb\x11\x43\x66\x2f\x31\x94\xe0\xf2\xa9\x67\x78\xac\xad\x20\xbb\x1e\x3d\x27\xa1\x92\x7d\xd7\x9a\xa1\x8a\xa4\x98\x13\xc0\x2d\x7d\xed\x1d\xba\x54\x46\xc0\xc0\x3e\x33\xaa\xac\x2e\x50\xbf\x78\x54\x10\x38\xbc\x39\x57\x5a\xaf\x8d\xb2\x11\xb1\x39\x44\xf3\x90\x68\x8a\xae\x88\xaa\x60\x65\x77\xe4\xef\xd2\x15\x34\x12\xb8\x26\xff\xc3\x1f\x4c\x56\xe4\x28\x1b\xc8\xb3\x4a\x81\x51\xb5\x79\x93\xea\x63\x1b\x25\xd4\xc0\xc5\x98\xfb\x02\xa5\x9f\xd1\x33\x9d\xe9\x2b\xca\x67\x81\x53\x4b\xf9\x56\x65\x3f\xb2\xb2\x3f\x2b\x46\x37\x65\xeb\xde\x73\xe2\xe2\x5a\x4a\xb2\xae\x5d\x18\x08\x9b\xc4\x47\x8c\x42\x43\x6a\xc9\xf6\x91\x71\x01\x00\x30\xa8\xc4\xfc\xf9\xd7\x9a\x42\xaf\xcf\x50\x5d\x84\x3f\xa8\xfc\xae\xd6\x26\x70\x16\x8e\xf6\x33\x97\x18\xc9\xd5\x34\x67\x7c\xcf\xa1\xd4\xb7\xf8\x1f\xae\xed\x91\x6b\xd3\x8d\x69\x0d\x31\x33\x7e\xa8\xd9\xa7\xf7\x4c\x52\xe6\x3e\x22\xc3\x6a\xc5\x73\x6e\x1a\xab\x7a\x3f\xba\x1e\x27\x68\xf7\x65\x6b\x2f\x4d\x52\x2b\x1a\x07\x33\x83\x20\x1d\xc9\x11\x3e\x55\x1a\xa4\x1a\x93\x14\xfb\x32\x77\x9d\x6e\x71\xfc\x66\x3e\x66\x71\x11\xfb\xae\x79\xba\x55\x1a\x71\xfd\x58\x0e\x5a\x6b\x4e\xd5\x6c\xa4\x18\x10\x66\xc3\xd3\x7a\xce\x0e\x25\xae\x95\xc0\x79\x7e\x62\x29\xa8\x39\xc4\x8d\xc4\xd7\x4f\x4e\x3f\x7e\x54\xab\x31\xda\x03\xc9\xa2\xdd\x04\x5d\xeb\xec\x4f\xcf\xeb\xa4\x29\x6e\x0f\x8f\x5d\xd1\x4d\x9c\xda\x2d\x91\x26\xb4\x54\x27\x34\xf0\x6c\x40\x9a\xe4\x6f\xe2\x31\x56\x6c\x6a\x3d\x1d\xfe\xeb\xd8\xf4\x77\x05\x0c\xa5\x09\x4f\x35\xff\xae\x17\x15\xe2\xa9\x54\xea\x01\x9d\x9e\xac\x70\x2d\x14\x3c\x59\xc8\x3c\xc3\xff\x7c\x54\xa6\xa3\x20\xa3\x09\x5f\xd9\x7d\x41\x57\x6e\xc6\x55\x21\xf9\x72\xd9\xba\xd8\xe2\x1a\x24\x74\x20\x34\x7c\xa7\x4b\x19\x88\x62\x64\x16\x8a\xe1\xa1\x29\x71\x42\x1a\xf8\xc4\x53\xcd\x06\x72\x3f\x3b\xa2\x77\xaf\x0d\xb8\x11\x44\x0b\xf4\xd0\xaa\x64\x4a\x48\xdc\xb4\xbd\xde\xfa\x59\xfc\xbd\xdd\xe8\xf7\xf9\xdd\x98\x5b\xcb\x34\xd8\x5c\xe0\x20\x57\x38\x66\xf4\x65\x6f\x5a\x2a\x8d\x38\x2a\x36\x2d\xb5\x20\x62\xf3\x73\xd6\x69\x2e\xc8\xac\x44\x7c\x64\xf3\x43\xf2\x7e\xd5\x77\xd5\xc2\xc2\x7a\xa2\x2f\x73\x4b\x9b\x7e\x09\xfa\x84\xc5\x18\xd4\xcc\x73\x1a\xaa\xcc\x24\x8c\x37\x70\x73\xa3\x77\xca\xee\x24\xe7\x0a\x52\xb7\xc0\xb0\x1d\xf7\x9e\x17\xcd\x49\x97\xf0\x33\xe6\xcf\x9b\xc7\x8f\xa4\x35\x36\x1d\x4c\xec\xc0\x6c\x90\x8a\x36\x7b\x5c\x72\x30\xbd\xe5\xea\xd8\xad\x60\xc4\x8d\x64\x2a\x85\x62\x78\xcf\xee\xb6\x96\x74\x8f\xc4\x39\x75\x58\xbe\x43\x91\xb8\x42\xac\x82\x80\xf3\xda\x97\xad\x5e\xa9\xf5\xab\x2d\x82\x6d\xb1\xdf\x46\x1f\x90\x50\x13\x9f\x21\x93\xc4\xbb\xed\x7b\x2b\x54\x01\xca\xc0\xf6\x21\xc3\xcd\x8d\x5a\x38\x44\xe4\x94\xa0\x41\x18\xed\xc0\x2f\x1d\x19\x9a\x44\x89\x24\x4d\x9f\xc6\x51\x81\x85\x9b\x90\xef\x51\xb5\xd8\xff\x39\xf7\x73\x2e\x14\x99\x6f\x51\x13\x64\x71\xd2\x81\x39\xdc\x3b\x54\xad\x5b\xe0\xe5\x32\x23\x3b\x15\x3f\x70\x54\xc6\xb1\x38\xe5\xf0\x3d\x1c\x3f\x72\x43\xe0\x12\xc3\x6a\xd9\x1b\xd7\x85\x43\x95\xa6\x3a\x06\xd3\xb8\x9d\x6d\x32\x9d\x35\xa9\x6d\x23\x96\xf8\x7f\xfd\xfe\x1d\xad\x6c\xb1\x02\x86\xd4\x3b\x21\xfc\xb5\x2f\x13\xb9\x06\x65\x55\xcf\xa2\x00\xe3\xb9\xfe\xb9\x34\x68\xae\x86\x99\xc9\xf3\x70\xfd\xde\x19\xfd\x0e\x1f\xb3\x2e\x9d\xba\xd8\x21\x06\x55\x56\xe6\x85\x29\x09\xd5\x82\xb0\xf8\x1b\x66\xf6\xbe\x78\x89\x5a\x79\xac\x58\x71\xc5\x2a\x21\x30\x77\xe3\xea\xbe\xfc\xe0\xc1\xaa\x5b\x1e\x97\xd6\xe9\xcb\xde\x37\x36\xd1\x42\x67\x76\x6c\x98\x94\xfb\x5d\x6f\x1a\xc5\x52\x66\x18\x9b\xd4\x69\x45\x56\xf5\xe5\xbe\x7e\x62\xa8\x92\x2e\x89\x01\xdb\x33\xa7\xf4\x54\x9d\xd4\x9c\x84\x80\x9d\x7b\x87\x25\x88\xce\x86\x45\x52\xc7\x7e\x6b\xef\x08\xa5\x33\x5c\xc3\x36\xb7\xfa\xca\x59\x97\x6b\xf6\x5b\x16\xf5\x69\x05\xbb\xc4\x10\x18\x85\x31\xf7\xca\xe7\x57\xc1\x8c\x8b\x34\x0c\x7a\x48\xa3\xe1\x94\xcb\x34\xca\x40\xa0\x62\xd8\x73\x5e\x08\x67\x31\x54\x71\x90\x4f\xbc\xa8\x44\xcc\x5d\x9d\x97\xb5\x30\xf1\x6c\xee\x12\x13\xfe\x79\x97\x1e\x04\xc0\x9f\x8b\x1f\xa6\x15\x5a\xd7\xd5\xa6\xb4\x66\x51\x3b\xe6\x02\xdd\xb7\x49\xc3\x37\x53\x17\x31\xc3\x12\x32\x20\x99\xf6\xbb\xd2\x47\x0e\x03\xab\x87\x47\x97\x2b\x4f\xcb\x0f\x63\x51\x46\x7a\xf9\x81\xfb\x6c\xbb\xcc\x9d\xca\x0c\xb9\xd5\x72\xc0\xed\xf2\xb6\xf2\xa4\x0a\x3e\x61\x49\xcd\xfe\x42\x85\x08\x54\x43\xbc\x45\x9a\x99\xd7\x35\x4a\x25\xf7\xd4\x30\x48\x2c\x46\xeb\x36\xee\x15\xf9\xbe\x2e\x8a\xb2\x5b\x88\xb0\xf3\xdf\x51\x22\x00\xf2\x7c\xc0\xe1\x45\xaf\x74\xe7\xf4\x41\xd1\x7b\xae\x5a\x75\x63\xbc\x17\x33\x87\xf4\xa6\x9b\x81\x49\x1d\xc7\x95\xc5\xc7\x37\xa4\x7f\x6c\x47\xd1\x16\x55\x62\x3a\xd7\x8d\xa2\x2e\xf2\xb0\xc1\x84\x43\xda\xb6\xbc\xb0\xe9\xc3\x26\xb2\x85\x59\x6e\x76\xc1\x23\xb2\xd8\xf0\xbd\x3a\xf6\x53\xcd\xc2\xff\x1d\xa0\xa9\x6b\x12\xdf\x09\x12\xe5\xab\xb5\xe5\x74\xe4\x9e\x31\x6f\xb6\x40\xd3\x9e\xd2\x98\x44\x96\x40\xfb\x89\x3e\xd9\x6b\xeb\x74\x26\x27\x35\x03\x23\x26\xdb\x66\x4e\xed\xd2\x04\xf6\x40\x70\x85\x27\xa2\xef\xf4\x4c\x50\xb4\x2a\x98\xdb\x8f\x89\x6e\xee\x57\x0f\x4b\xd9\xbe\x44\xac\xf8\xdf\xde\x96\xad\xf6\x2a\xc8\x04\x58\x2f\x6a\x91\x1a\xdb\x76\xe2\x17\xb7\x5f\x99\x99\x43\x61\x99\x44\xa5\xe9\xc7\x79\x9e\xdf\x0e\xe7\xf4\x5d\x47\xd3\x77\x90\x89\x4b\x3e\x07\x56\xda\x87\xb4\x11\x85\x8d\x13\xb0\xff\xb2\x81\x3c\xb0\x0b\x67\x24\x78\x4b\xba\x4a\xb4\xdb\xb1\x4d\x1b\x85\x62\xf8\xfc\x0b\x5a\xbf\x12\x48\xab\x10\x03\x44\xdb\xf8\x8f\xa3\xd3\xef\xe0\x23\x3b\x11\x1c\x5a\x2b\xd7\xc0\xb7\x12\x7f\xff\xce\x55\x32\x82\xf9\x34\xa8\x58\x90\x40\xfd\x93\x46\x0b\x8c\x76\x52\xfc\x1e\x17\x3c\xda\x82\xd1\xad\xe3\x66\x92\xed\x95\x34\xda\x3a\x60\x80\x05\x2f\x2d\xfc\xdd\xc1\xa4\x78\x9e\xd1\x31\x23\x7a\xb5\xe7\xef\xd2\xd5\x0f\xa7\x4e\x05\xa1\x01\xcd\xf2\x1a\x5a\x47\x22\xf1\xfb\x9c\xfb\x8f\x14\xf6\x55\xf9\xb7\x9f\x6e\xbf\x54\xdb\x33\x94\x55\x08\xe2\x97\x02\x7c\xf7\x65\xa6\x10\x94\x32\xb9\x74\x5a\xf4\xda\x13\x6c\x79\x3d\x81\x56\x2b\xa7\xaa\x16\x8a\xe1\xf5\x6d\x2d\x19\xb4\x5b\x91\xca\x0b\x6d\xeb\x34\x26\x25\x8c\x0a\xe1\x5b\x3f\xb5\x4f\xd1\x0d\x84\x02\xa9\xb1\x91\xe7\x92\x9d\x1d\x8a\x4a\x57\xb8\x69\x32\xbf\xb4\xbb\xac\x28\x03\x53\x8a\xb1\xff\x7c\x55\x0f\xfd\x34\xf0\xa5\xaa\x4d\x70\x5c\xd1\x8a\x40\xb5\x28\x5f\x84\x56\x23\x17\x24\x05\xe2\x6f\x0d\x23\x37\x11\xfd\xfa\xcc\x32\x3d\x21\xa1\xb5\xd8\xb3\x69\x48\x8f\x22\x5b\x13\x80\x34\x56\x31\x7c\x65\x6d\x8b\xa0\x91\xcf\x48\x29\xe0\x33\x6a\xce\x7c\x9a\xba\x6c\xa4\x0a\x4e\x4b\x0e\xc7\xb7\x6e\x4d\xef\x87\xa0\xdd\x6b\x4f\xf4\x22\x32\x4f\xde\xae\xe9\xe3\x22\x03\x37\xd3\xca\xfc\xd9\x45\x87\x87\xa9\x23\x69\x2e\xbf\x9f\x71\x17\x49\xdb\xa4\x80\x2a\x49\x5c\xc7\x73\x97\xe8\x55\x9b\x0d\x2a\x0f\x70\xa6\x3e\xb2\xa5\x65\xb4\x89\x5c\x8f\x73\xa7\xa3\x40\xf4\x8b\x3d\x32\xef\x42\x6e\x22\xb3\x5d\xb8\xf0\xbd\xfa\xc3\x27\xcc\x41\x71\x3b\x35\xfb\xd6\x56\x25\x8a\x63\xd7\x47\x06\xf7\xb6\xcf\xbf\xfb\x01\x25\xb5\x0f\xa0\x04\xcc\x4f\x5d\x9b\x64\xe8\x2c\xf0\xd4\xab\x3a\x77\x53\x5e\x9d\x17\xb8\x34\x00\x86\x71\x78\x45\xfb\x30\x65\xd0\x46\x44\xb6\xbb\xf1\x4e\x8d\x58\x46\x3d\x5f\xc8\xad\xbe\x3a\x51\x55\xbb\x46\xa6\xaa\x69\xf7\x91\xb7\x5b\x44\x2b\x09\xac\x80\xa8\x05\xdf\x73\x40\x36\xc0\x2a\xc4\xad\x30\xa2\x8a\xe9\x67\xee\x1a\xaa\x31\x15\xa9\xef\xc7\x6c\x94\x1c\xd9\xde\x62\x2d\x13\x9d\xad\x64\x9b\x64\xbf\x70\xaf\x68\xb9\x21\x1b\xbb\x26\x02\xbd\x9b\xcc\xf6\xa3\x42\x6b\xd7\x46\x9e\x05\x65\xd5\x2f\xa7\xc9\x0e\x02\x4f\x30\x5a\x86\x48\x8f\xef\xd1\xcd\x48\x88\x2b\xac\x15\x84\x94\xd6\x88\x30\x75\x17\x3b\xc4\xc5\x7c\x39\x3f\x3f\x65\xb4\x84\xcf\xb2\xb4\x49\x55\x9b\xd2\x42\x21\x9e\x11\x5d\x52\x20\xcd\x36\xea\x19\x59\x6d\x06\x2e\xee\xa9\x61\x61\x56\x98\x79\xcf\x19\x9e\x52\x5e\x8f\x6c\x62\x54\x25\x58\x22\xec\x38\x9a\x5e\x8c\xde\xa0\x62\x12\x53\xa2\x69\x33\xcb\xf6\xea\x66\x45\x44\x7a\xb9\xcc\x7c\x50\x23\xa3\x63\x07\xbb\x02\x0c\x00\x7b\xd2\xd9\xaf\x4d\x26\x90\x53\xa2\xa6\x1a\xe1\x72\x33\xec\xfe\xad\x2f\x6a\xaa\x1a\x61\xfe\xf2\x93\x9a\xae\x2c\x85\xe9\x4d\x02\xb8\x69\x9e\xd1\x70\x78\xb4\x11\x5b\x97\x2f\x3c\x26\xc7\x9e\x08\x7c\xaa\xde\x7d\x47\xfa\x44\x37\x50\x50\xb1\xd2\x27\x3a\xf7\x85\x65\x5a\x69\x8f\x4a\x25\x04\x7a\x90\x22\xa2\x7d\xf6\x40\x12\x4c\x7c\x5f\x1d\x10\xde\x7c\x4c\x21\xa3\x54\x9b\x9e\xc1\x90\xb0\x7e\x5c\xbd\x28\xfd\x25\x1a\x94\xd9\x66\x43\x66\x18\x1f\x19\xa9\x73\xa6\x15\xb8\x3c\xc8\x45\x4c\x3d\xd0\x2a\x6f\x14\x9b\x42\xaf\x3c\xa7\x2f\x41\x42\x38\x7a\xf4\x3e\xed\xce\x0d\x98\xeb\x89\x1d\xf8\xf9\x67\xf4\xe3\x90\xe6\xb1\xe6\x2f\xdf\x3e\x5e\x49\xcd\x3d\x5a\x6f\x25\x2b\x5e\xa1\x91\xbd\x6d\x52\xc3\xbe\x57\xe5\x8d\xcf\x28\x8f\xd9\x39\x51\xe7\x4e\x1a\x76\x60\x62\xa1\x7b\x9c\xbf\xe5\xb8\x76\x31\x55\xc0\x61\x2a\x4a\x48\x36\x1c\xb9\xb4\x15\x10\xa6\x62\x4a\x5e\xbe\x58\x1c\x4c\xc4\x4c\x61\x81\xb0\xf0\x6d\xc5\x0b\x05\xf1\x28\x97\x59\xdb\x2d\xa3\x66\x2f\x2a\x21\xc6\x3b\xd3\x97\xbd\xa6\x38\xe9\x63\x03\xac\x16\x0b\xc5\x10\x3f\xcb\x27\xb1\x6b\x8a\x4b\xae\x59\xd3\x55\x28\x86\x6d\x73\xe4\x9f\xd7\x51\x25\xe0\x22\x24\xf9\x09\x6b\x64\xb6\xd0\x3e\x1f\x72\xbd\xe7\x14\x4c\x5c\x50\xe2\x20\xc3\xdc\x37\x4e\x09\x60\x67\xc9\x54\x71\x04\xd9\xfb\x14\x79\xf8\x9a\x8d\x7a\xc1\x26\xf0\x1b\xe7\xe4\x0e\xaa\x52\x10\x71\x80\xa6\x4d\x78\xec\xce\xf4\x59\x71\xb0\x83\x7d\x5a\xd7\xce\xca\xe0\xa7\x86\xaa\x6a\x02\xa8\x59\x28\x86\x6f\xdc\xa3\xf4\xea\x90\x5d\x07\x27\xec\x62\x5f\xe6\xff\x6d\x53\x78\x24\xae\xb4\x6d\xcc\x7e\xf6\x34\xff\xc0\x4b\x18\xb7\x35\x8d\x43\xeb\xe0\x87\x15\xfe\x95\xe7\x05\x7c\xe0\xf2\xed\x6d\xf2\x13\x83\x98\xac\x83\x78\xed\x90\xcf\xee\x49\x46\x31\x26\x69\x71\x5b\xfb\xf6\xbc\x41\xf1\x9d\x89\xb9\x0a\xe8\x2e\xd1\x67\xbe\x3a\x7a\x9c\xe5\xd8\xdf\x31\x77\xf3\xed\x52\x94\xae\x4c\x94\x14\xaa\xba\x4b\x49\x2c\x60\xf2\x1c\x9d\xf0\xbb\xb3\xbc\xc6\xe3\x48\xe8\xd8\x09\xed\xa5\xc1\x83\xe2\x05\x10\x72\xdc\xbf\x59\xa1\xd9\x0e\x61\x87\xc2\x8d\x09\x7d\xd0\x5b\x76\x8e\xd7\x2f\xaf\x1a\xf1\xc1\x97\x37\x66\x67\x4c\x7d\x30\xf9\x5c\x34\xe8\x51\x1e\xec\xf2\x6d\x09\xbc\xa0\xec\x5b\x2d\x80\x9e\xdb\x96\x29\xb2\x03\x6e\x05\x83\xb1\xf0\xe6\x6d\x13\xb5\xc7\x6b\xda\x88\x69\xfe\x9b\xb3\xb7\x70\x48\x76\xe7\x0c\xb0\x0c\xb9\xea\x5e\x75\xfe\x05\xb4\xd7\xbe\xcc\x6f\x37\x4b\x93\xa8\x19\x60\x12\xf5\xff\x9e\xd1\x11\x8f\x65\xce\xdc\x0f\xaf\xd7\xe6\x83\x25\xcc\x53\x61\xc8\x18\x7f\x7e\x9e\xe7\x67\x0c\x9a\x9f\x86\x85\xc5\x52\xe6\x6e\xde\x26\x54\x3f\x2d\xec\x82\xa5\xc1\xb6\xa1\xa3\xa5\xbd\xa4\x0a\xfc\x0f\x1f\x7b\x4d\x33\x0f\x12\xde\x1b\x7e\x3c\xb1\xcf\xcd\x7f\x59\x6e\xc2\x06\x54\xd0\x14\x60\xde\x99\x31\x3b\x14\xad\xcf\x5a\x2d\xda\x8a\x5c\x50\x28\x3b\x6e\x60\x52\x29\x60\x2f\xbe\x6e\x32\x9f\xac\xa7\x01\xbe\xbc\x7d\xf8\x6b\xb5\x9d\xc3\x70\x43\xd9\x3d\x2f\xbe\x2a\x95\x49\x2a\x0c\x99\x01\x2f\x9a\xd2\xcf\x6a\xfc\x8b\x1a\x24\x13\x0b\x0d\x91\xf0\xab\x2f\x6a\x5f\x2d\xf0\xa9\x43\x4b\x24\xf6\x13\xee\xcb\x2f\xbc\x93\xe7\x12\x42\x94\x0d\x60\xb8\x5b\xee\xd3\x6c\x56\x62\xf3\xdf\xc6\xb9\x91\x0a\x72\x84\x31\xda\x10\x0d\xf9\x8f\xef\x13\x8a\x89\x0c\x7b\x81\x03\x32\xdb\xc0\xe4\x97\xea\x58\x1e\x36\x0a\xc5\x70\xfa\xf3\x72\x33\x10\xd7\x84\x61\x61\xe6\x8e\xd5\xc3\xc4\xa3\x82\x8e\x01\x07\x65\xe6\xff\xb9\xac\xdd\x24\x5c\xef\x0b\x3a\x7e\x63\xda\xd2\xf7\x94\x50\x1e\x22\x1e\xb7\xd5\x59\xdd\x23\xc4\x2c\x10\x01\xca\xf9\x27\x86\x2a\xab\xee\x12\xb8\xec\xc2\x5f\xdc\xcf\x7f\xe9\x26\x8c\x01\xe5\xf7\xb5\x27\x65\x50\x02\xa5\x85\x42\x31\x1c\x7e\x21\xef\x81\xaf\x86\xc0\xa7\x4d\x69\x3f\xb7\x43\xf7\x49\x6e\x82\xb9\x34\x6f\xae\xfc\x64\x5f\x7a\x0d\x3d\x2c\xac\x6a\xc6\x1c\x4f\xb7\xd9\x7c\x8b\xb0\x7e\x35\xbb\xf3\xb7\xad\xd1\xb0\x24\x0c\x95\xcb\x04\x70\xce\x31\x40\x72\xc1\x9d\x5a\xf7\x09\xc0\x3b\x72\xc2\x94\x9b\xd6\x93\x26\x22\x7b\x54\x80\xe7\xdf\xad\x04\x44\x33\x60\x04\xf0\x21\xd1\x4d\xb8\x77\x00\x6f\x9a\xaf\x8e\x6d\xab\x79\x93\x38\x5a\xa2\x1f\x2f\x68\xa1\x51\xf3\x4b\x92\xf3\x81\xb2\x7f\x29\xeb\xf0\x41\xda\x30\xb9\xee\x56\xe6\xa9\xf5\xbc\xbe\x9f\x39\xbf\x50\x0c\x3f\x73\xff\x98\x7e\x8f\x74\xf4\x8b\x5f\x7d\x48\x37\xf9\x25\x66\x25\x41\x6d\x89\x3b\xf5\xd3\x7b\x64\x45\x50\x0a\x6c\x98\xce\x8c\xc9\xaa\x9c\x49\xea\x03\x6a\x09\xaa\xce\xc9\x6b\x2f\xd3\xb2\x5c\x93\x11\xb3\x3f\xb5\xc4\x1f\x86\xe3\xb4\xca\xc6\x67\xd8\x21\x9e\x20\x34\x87\xbf\x7d\x55\x0a\x93\xa0\xc0\xb7\x28\x23\x9c\xc6\x52\x28\x86\xce\x3d\xb1\xfb\x2e\xea\x11\xc7\xa2\x77\x8d\xe4\x3a\x2a\x1d\xe4\xf0\x9b\xbe\x52\x20\x03\xb2\x21\x96\x6f\xcd\x7d\x70\x9c\x1c\x6d\x19\x16\xb2\x6d\xec\x56\x5a\x47\x7f\xd9\x7b\xda\x14\xad\x15\xbb\xe9\xd4\x00\x15\xfa\x8d\xac\x9e\x9f\xe1\x68\xc7\x10\x29\x7e\xfb\x77\x29\xd2\x8a\x5c\x95\x8a\x7f\xf8\xa1\xe4\x1a\xb4\x71\xab\xfd\xdd\x7d\x03\xa6\x6a\x4b\x58\x41\xbd\xc4\xc5\xfd\x74\x5e\x33\xdf\x7f\x49\x71\x49\x90\x55\x65\xd8\xb1\x23\xad\xf2\x50\xb2\x21\x75\xb4\x90\xad\x29\x7b\xef\xdc\x2d\xe8\xe7\x02\x25\x0a\x08\x51\x26\x15\x8d\x91\x5e\xc8\x84\x1f\xef\x56\xac\x18\x31\xaa\x88\x74\x76\xab\xd2\xff\x0f\x98\xc7\xcd\x82\xf3\x77\xbe\x93\x5c\x3e\x2e\x85\xcd\x79\x71\x56\xfe\xf9\x8c\xf9\x73\x3a\xf8\xdd\xfb\x3d\xcd\x91\x82\x11\x4f\x58\x71\x84\x75\x45\xc4\x62\x4e\xfb\xfc\xd9\xd1\x8b\x6c\xdc\xc5\x9f\xff\x47\x6b\x36\x45\xdc\xc2\xbb\x24\xad\xa8\x53\x13\x84\xcc\x43\x6d\xb2\x16\xa5\x53\x4d\xda\x80\xd4\x62\xc8\x5b\x97\x6a\x09\x32\x8c\x98\xa4\xe2\x71\xf6\x4f\xdc\x0e\xb0\xd0\xc5\x50\xe0\x3b\xa9\x27\x98\xfb\xea\xca\xf4\x5f\x9b\xc4\x33\x02\x4f\x94\xe5\x70\x3e\x27\x8e\xe4\x81\xb6\xab\x81\x5d\xbf\x09\x62\x3c\xc5\xbe\xcc\xa7\xce\x0e\x93\x02\xa3\x28\x91\xc5\xd8\x2e\x5b\x75\x26\x0d\x4a\x4a\x8a\x95\xbd\x69\xa2\x3e\x3e\x67\xae\x10\x83\xef\xcb\x6d\x98\x35\x4c\x4d\x18\x39\xfa\x22\x7f\xd9\x22\x3d\x58\x22\xbb\xe9\x25\x3d\xb7\xa7\x37\xf2\xe8\xb0\xf6\x5a\x90\x6f\xd6\x24\x3d\xbc\x1a\x62\xd5\x44\x0c\xec\xd6\x2d\x17\xc7\x9f\xb7\x73\x4e\xa1\x18\x1a\xc3\x65\xb9\x9f\x1a\xca\xd5\x35\xb5\x8a\x00\xd4\xb6\x9d\x28\x22\x7c\xf9\x2e\x45\xcf\xaa\xe4\xb4\xfb\x16\xdc\x57\x23\x75\x45\x2e\x8b\x52\x3f\xa1\xd6\x87\x37\x9e\xd6\x27\x63\xf3\xe7\x0a\xc0\xd5\x45\x0f\x69\xde\xa7\x82\x59\x07\x2c\xbf\x0a\xd8\x22\xc5\x19\xd9\xf7\x5f\x90\x31\xc4\x45\x36\xae\x29\x3c\xaa\xec\x9a\x17\xb4\x71\x39\xd8\xf2\x8b\x9e\xdd\xeb\x77\x6a\x65\x21\xf1\x7d\xa2\x95\x85\x77\xbf\x2a\x6f\x58\x83\x11\x0f\xf2\x97\x7f\x9e\xd7\xa6\xde\xc3\xba\xa5\xe7\xb3\x23\x62\x3d\xdc\x35\x4b\x94\x4d\xfa\x4f\xaf\xe9\xad\x72\x60\x52\xc5\xfc\x9d\x9f\x1c\xd6\xc6\xcf\x60\x9e\x68\x13\x94\xe0\xc2\x32\x8b\xf7\xe9\xce\xbe\xb1\xf3\x67\xb6\x2b\x54\x6c\x6c\x89\x41\x5b\x5a\x13\xfe\x12\x55\x22\x8c\x33\x5c\x0b\x67\x75\xf6\x87\xe8\xa8\x86\x4b\x37\xca\x03\x85\x40\x1f\xa0\x50\x0c\x5f\x3a\x9c\xa4\x1f\x9d\x9d\x33\xa2\x77\xb5\xf7\xf0\xa2\x61\x25\x2a\xa9\xe8\x94\xec\x68\xc1\x7a\x87\xfe\x07\x76\x63\x4d\xba\xaf\xfa\xba\x25\x3d\x4f\xaf\x3d\x27\x36\x19\xfd\xfa\x49\xad\xa9\x1e\x44\xb9\x15\xd7\x42\xfa\xa9\xd6\x48\x6e\xd2\x20\xe9\x74\xae\x3f\xc5\xdf\x70\x09\x72\xab\x05\x46\x6d\x2e\x2b\x95\x1f\x28\xfd\x3d\x66\xcd\x9c\x15\xfd\xcb\xe4\x1d\x9a\x4e\x24\x05\x3b\x1e\x0e\x4a\xce\x8c\xd4\xba\x90\x31\x50\xbc\x50\x0c\xc9\x06\xdd\x75\x95\x89\xf9\xd2\x6f\xa5\x5c\x86\x41\x21\x59\x5e\x2d\xc5\x14\xf9\x60\x52\x82\xcc\xaf\xbb\x58\x1b\x94\xdb\xc8\xa8\x02\xf4\x05\x86\xd3\x23\x0f\xe9\x00\xed\x3a\xc1\x0d\x69\x50\xb5\x6d\xa8\x62\x50\xe5\x52\xb7\xe9\x70\xd1\xec\x7d\x8f\xa8\x89\xb0\x87\x20\x9d\xce\x5f\x76\x50\x13\xee\x9b\xcb\x95\x50\x72\xab\x35\xe4\x05\x32\x0c\x5c\x4b\xda\x3c\xb9\x0f\x1f\x55\x8b\x15\x17\x03\xe6\xff\x03\x67\x06\x8a\x98\xd0\x28\x14\xc3\x4b\x19\x8f\x7d\xcb\x52\x2e\x26\x43\xd3\x8d\xf3\x39\xb3\x20\x7f\x7c\x5a\xe3\x6b\x95\x19\x01\x01\x0d\x18\x95\x7c\x79\xba\xce\x1a\x74\x6a\x36\xc0\xce\x05\x50\xfc\xa0\x99\x1c\x36\xec\xb4\x92\x1a\x7f\xfb\xda\xa8\x94\x1c\x9a\x2c\x8b\x6f\xee\xe5\xd5\x1f\x8a\xf2\x2e\x3e\x42\xd0\xda\x16\xc2\xae\x8b\x5f\xba\x70\xc2\xe6\x86\x5a\x45\x86\xca\x04\xc5\xd3\xfc\x38\xc7\x1f\xb2\x5b\x41\x45\x1a\x20\xb6\x13\x85\xb3\x27\xba\x65\x20\x62\x98\x38\xa5\x80\x79\x71\xfd\x94\x7d\x61\x6b\x72\x2b\x34\x69\x02\x30\x3c\xb4\x5e\x6b\x44\xd7\x2c\x6a\xc7\x42\x10\xd9\xc9\x23\x63\x2f\x82\xee\xc0\x8d\x35\x16\x32\x97\x6d\x91\x58\x0a\xdd\x32\xf2\x9d\x4b\x14\x39\xd5\x1a\x68\x50\x48\xf1\x5b\x8d\x37\x84\x6f\x0b\x62\x71\xd1\xbe\xdc\x41\xf5\x2b\xb9\xcd\x86\x85\xa1\x71\xf6\xcb\xa5\xb1\x9f\x89\x1f\x03\x94\xfe\xb2\xe9\xf2\xf4\xcb\x18\x34\xba\x25\xfa\x95\x83\xc9\xfc\xed\xbe\xe1\xa9\x5f\xee\xe4\xbb\x7c\xd3\x76\xad\x16\x31\x2c\x4a\x79\xc7\x2b\x77\x42\xc1\x29\x71\xd3\x7d\x30\x45\x8c\x8e\xe0\x07\xb7\xb6\x4c\x80\xe2\xae\xd1\x5b\xf7\x2a\xe4\x5b\xd7\xb0\x62\x48\xef\xa6\xc9\xca\x79\x61\x35\x5c\xa9\x10\x80\x22\xe6\xbb\xde\x91\x0d\x65\x64\x97\x31\x6b\x2a\x62\x5b\xe1\xf0\xb3\x3c\xae\x59\xa4\x62\x15\x6a\x8c\x96\x81\x7b\x15\xce\xba\x50\x67\xf2\xb9\x01\xc3\xe2\x71\xe5\x46\x1d\xd7\x3b\x88\x24\x91\x03\x8b\x2a\x81\xff\xec\xd1\x66\xcb\x51\xa6\x2a\x6a\xac\xbe\xdc\xd5\x6d\xbc\xf2\x5e\xd3\x2c\xa9\xf2\xea\xe1\x67\x17\x68\xa0\x64\x8a\x7a\xb8\xa4\x5c\xef\xed\xa2\x31\x30\xbb\xa3\x50\x0c\x5f\x78\x32\x11\x66\xf1\x51\x85\x08\x90\xf2\x27\x1e\xe5\x0f\xb0\x16\x15\xe1\x50\x44\x66\x57\xbe\xcc\x0b\x92\x35\xb4\x44\xdc\x34\x10\xe3\x7d\x6d\x72\xb5\x40\xf6\xad\x60\x70\x4c\xf1\x7b\x9e\x4c\xa1\x17\x0d\xe2\x61\xc1\x17\x1f\xc0\x53\xcb\x78\x17\x14\x8a\xe1\x88\x1d\x62\x62\x84\x18\x4b\x09\xa0\xe2\x7b\x65\x0a\x94\x8c\xb1\xc4\xae\xfa\xaf\x52\xcb\x34\x89\xf9\xb1\xf5\x51\x78\xfc\x55\xbd\x8c\xa8\xd9\xd4\x93\x28\x97\x2f\x3d\x36\x48\xa4\xaa\x3e\xd8\xf7\x84\x5b\x97\xa6\x97\xba\x12\x7d\x16\x8f\xbb\x9b\x85\x2b\x16\xc9\xe8\xe6\x13\x9b\xcf\x35\xdf\x9e\xa6\x28\xed\x63\xbb\x86\x63\x8c\x44\xfe\xba\x5d\x22\xcb\x4b\x51\xf9\xf2\x6d\x49\xbb\x27\x60\xa4\xa5\x9e\x78\xdf\xb8\xcb\xf5\x94\x8e\x11\x93\x32\x31\x0f\xd4\xe8\xa5\x07\x47\x2b\x55\x7c\xd9\x0e\x00\xc8\x05\x11\xeb\x23\xe3\xf5\xfe\x2f\xc3\x88\x8b\xd4\x66\xf7\x8f\x8e\x75\x62\xca\x65\x9b\xb8\x55\x78\xe0\xf8\x62\x4d\xcd\x80\x32\xac\x35\x94\xb6\x2f\x13\xca\xca\xa4\x56\x83\x7a\xee\x8e\x37\x54\x45\x17\xdc\x63\x04\x1e\x2a\xd9\x3c\x64\xae\xdd\xa8\xd0\xea\x88\x1f\xc4\x1c\xcf\x5f\xf6\xaa\x8e\xe7\xc4\x2d\xf3\x76\x5e\xbe\xfc\xbc\xdc\x42\x36\x6d\x26\x23\xfc\xcc\xac\x05\x92\xb4\x4e\x95\x2a\xe6\x4a\x0d\x58\xd5\x4d\x4b\x62\x2c\xb3\x4d\xe3\x1f\xc4\xb1\xda\x8b\x83\x75\xf1\x01\x85\x76\x41\x19\x07\xbf\x5d\x33\x5e\xbe\x8f\xa2\xfd\xdd\x97\x1b\x70\x44\x34\x38\xc1\xd8\x46\x6e\xfa\xc3\x07\x25\x43\x64\x66\x47\x94\xd0\xd1\xd8\xc0\xbd\x2f\xd7\xbd\x6c\x9c\x52\xf2\x94\x6c\x62\x44\xf7\xad\x87\xb1\x90\x72\x78\xa0\xc6\xdb\x62\x8b\xcd\x3a\xf4\x46\x72\xab\xa6\x2b\xf3\x1d\x8c\x59\xa1\x86\x5c\x68\xf6\x65\x2b\x35\xa5\x7a\x6a\x32\xe4\x10\x58\xb0\x0b\x9f\x6d\xe1\xb6\xdb\x01\xd0\xeb\x85\x1c\xd0\x67\x95\xd0\xe6\x60\x93\xe0\x3a\xb2\x0b\xc5\xf0\x5f\x8f\x0f\x56\x04\xa6\xa2\x1c\x20\xff\x46\x0b\x79\x1d\x44\x8b\xb9\x20\xc4\x95\xbb\x92\x2c\x65\xde\x4c\xa8\xc7\xbe\xdd\x9b\x54\xd3\x8d\x54\xf6\xf6\x99\xe7\xa1\x65\x50\xb8\xd1\x47\x8c\xd6\x18\x75\x9a\x9e\x1d\x9b\x50\x25\x28\xd7\x60\x7f\x0b\x14\x92\xba\x15\xec\xc5\x84\xcd\x7c\xbe\x3c\x54\x5c\x85\xb5\xc0\xc7\x60\x89\x11\x3e\x78\x78\x8c\x02\x2d\x0b\x7c\xab\x1c\xd8\x5c\x22\xbe\x2f\xfb\x9e\xa3\x3a\xa9\x45\x88\x2f\x24\x9a\x78\xf9\xee\xfb\x34\xa5\x17\xca\xfc\xa0\x82\x6c\x99\x21\x4f\x98\x28\x4d\x52\x3d\xee\x96\xad\x4c\x36\x3e\x7d\x79\xac\x48\x32\x7f\x66\xa1\x18\x6e\x1c\x99\x5e\xb0\xb2\xdd\x94\xad\xd0\x5c\xfb\xc3\x8a\xb2\x49\x55\x19\xc8\x85\xa5\x9a\x04\x20\xfa\x16\xc3\xad\x92\x9c\x77\xcd\x1a\xa1\x0c\x0f\x8c\x18\x02\x97\xd9\x55\x6a\x93\x12\x77\xad\x00\xe4\x7b\xa6\x48\xaf\xa9\x16\x25\xb4\xec\xf6\x27\x75\x4b\x5d\x07\xb1\xaa\x18\x72\x06\x2b\xd3\xc7\xa8\xb3\xd0\x21\x1a\x40\xd9\xf6\xa4\x51\x6b\x58\x69\x65\xef\xb1\xaf\xeb\x80\x06\x50\xe1\x80\x71\x97\xf1\xb8\x6a\xe0\xe1\xf9\x14\x90\x47\xd9\x75\xaf\x8b\x6b\xc6\x8a\x92\x7a\xdb\x86\xa9\x42\x7e\xf6\x60\xcd\xb2\xab\x56\x43\xcc\x4c\x41\xa7\x73\x0b\xb6\xa6\x13\xe8\x12\x35\x05\x59\x29\xf3\xee\x47\xe5\xf5\x52\x41\xc2\x07\x32\xca\x8f\x3e\xd4\xad\xfa\x63\x7a\x01\xb2\x89\x80\x2e\xe5\xfe\x30\x58\xb7\x3c\xea\xd1\xc6\x22\x1f\xdb\x99\xb8\x6d\xcf\x8e\x1e\xf7\x37\xf6\x24\x21\xbb\xbd\xdc\xa2\x85\x99\xfd\x52\x97\xa0\xc6\x50\xca\x11\xb0\x07\xf6\x8e\x4a\x65\xc1\x05\xd0\x71\x07\x15\xcc\x5b\xd3\x0d\xb0\x00\xa4\xaa\xfa\x81\xfd\xe7\xef\x99\xae\x18\x93\xe2\xdb\x02\xc2\x27\xfe\x23\x56\xa4\x09\x3e\x16\x37\x6b\xe2\x36\x87\x8a\x84\x57\x8f\x3e\xad\x70\x71\x99\x88\x94\xe7\xc0\x03\xc9\xf1\xb5\x91\xca\x9f\x9d\xb9\x3b\xfd\xe9\x90\xeb\x92\xfe\xe9\x11\x6b\x15\x83\x14\x00\xda\x45\x5f\x6e\x4e\xf7\x08\x45\xd0\x26\x70\x4a\x5c\x02\xf7\xbe\x95\x43\x14\x22\xf5\xfc\xd9\x51\x3a\xa4\x79\xaf\x58\xd1\xd5\x14\x1b\xf1\xbf\xca\xf9\x7f\x37\x10\x2f\xfa\xc4\x2d\x0b\xb3\xc6\x4e\x7f\x35\xc1\xf7\x17\x7b\x76\xe2\x89\xb1\xaa\x9e\x47\x39\xd1\x5e\x8d\xb6\x20\x9a\xa4\x74\xcd\x29\xb5\x49\x45\x38\xee\xde\xfe\xf0\x18\xe5\x1e\x15\xa6\xc6\x7e\x13\xca\x8c\xdf\x5e\xa9\x21\xc2\x71\x8d\x7a\x80\x6c\x15\x50\xb4\xdc\x49\x91\xb6\x04\x20\x42\x28\xc9\x35\x9d\x2f\xa7\xbf\x25\x8c\xbb\x44\xa1\xf4\x89\xfa\x78\x2d\x21\x64\x55\x4d\x69\x6c\xb7\x9d\xc4\x5d\xde\x3d\xdd\xa2\x03\x67\x30\x77\x20\x16\xad\x9b\x2f\xef\x4a\x1e\xab\x61\xa9\x58\xd0\x27\xed\xe4\x07\x1a\xe3\x43\xd1\x6d\x09\x5c\x9b\x54\x21\x37\x0b\x7f\xf9\xa8\x5c\xa6\x34\x0b\x50\xd3\x7c\xa8\x50\x64\x8b\x66\xd3\xaf\x9e\x55\xc4\x8c\x12\x52\x61\xb4\x2b\xfc\x1d\x72\xac\x47\x1b\x2d\x55\xd8\x5f\x87\xca\xca\xc3\x09\x6c\x5f\xf4\xd9\xb8\x99\x62\xe6\x0f\x17\x68\x67\x15\xe4\x10\x05\x4f\x06\x92\xac\x31\x87\xd4\x37\x06\xe9\x17\x41\x38\x79\x78\x95\x8e\xc8\x2c\x61\x3b\x56\xe1\x0a\xd6\xa6\xd7\xb2\x61\x61\x6c\xda\x09\xee\xab\x93\x29\x83\x20\xec\x50\x17\x48\xee\x90\x05\x5f\x71\xeb\xc5\x62\xc1\x0c\x2e\xab\xb0\xd4\x8a\x8b\xad\x32\x43\x71\xb1\x95\x9d\x31\x78\x9c\x82\xbd\x17\xe3\x00\x35\xa9\x9d\x3e\xee\xbd\x5a\x05\xc7\x88\x97\x3c\xce\xf0\x9a\xa7\xd2\x1b\x44\x99\x68\x8b\xdf\xb8\x4c\x91\x74\xab\x23\x1b\xf3\xb6\xf5\xc9\x17\xd2\x2f\x8b\x4a\x2c\xa8\xf9\x92\xcc\xbc\xf4\xac\x12\x57\x7c\x86\x78\x5c\xc9\xdd\xba\x48\xf7\xed\xaf\x53\x45\x70\x16\x97\xd3\xb3\x80\x1a\xf6\x19\xed\x45\x75\x6a\x7a\xd5\x18\x01\x12\x3e\x7d\xbb\x88\xf0\xc8\x36\x82\x04\xc5\xbe\xe2\xe2\xc9\x5a\x82\x5e\x47\xcc\x4f\xbe\x47\x92\xce\x1d\xd7\x3e\x41\x0d\x33\x0b\xd5\xe2\x91\x46\x6e\xd1\x9b\xda\xe6\x07\x91\x46\x64\x0b\x11\xcb\x4b\x57\xb6\xd8\xff\x38\x44\x92\xc6\x73\x2f\x68\xc5\x10\xee\x21\x3e\x37\xcf\xfd\xfa\x79\xb5\xf4\x75\x48\x3a\xc7\xc3\xaf\x25\xa1\xbf\xee\xb5\x46\xe9\xab\x86\xf3\x2a\xa9\xab\x70\xa3\x45\xe0\x9e\xcb\x04\x83\xb5\xe7\xea\x46\xbb\xdf\xc5\xa6\x80\x96\xdd\xbe\x40\x5e\x59\xa8\x5c\x26\x26\xaa\x83\x9b\xd4\xc6\x7d\xb2\x09\xc0\xf9\x49\x51\xc2\x28\xb2\xc9\xaf\x0e\xd4\x9a\x3f\xd4\x73\x49\xe2\x59\x9b\xfd\xe0\xa6\x64\xc6\x59\x03\x1f\x39\x48\x69\x9e\x96\x26\xe8\x25\x15\xf6\x9a\xb9\xfd\xc9\x4b\x94\xbd\x69\x50\xd7\x20\x92\x1a\x92\xf9\xe0\xc3\xda\xd1\x20\xbe\x65\x32\xd4\x10\x1d\xa0\x8f\xf4\x4a\x72\x32\x87\x93\x38\xa1\xd6\x19\xb3\xb1\x59\xc1\x09\x98\x6c\xad\x4e\xed\x75\x71\x43\xf4\x51\x33\x57\xf6\xe7\x49\x23\xd2\xd7\xe5\xef\x24\xf1\xaf\x46\xa3\xfa\xf0\xf7\x1b\x92\x6b\x79\xe6\xdc\x42\x31\x5c\x95\xe5\x8b\x3f\xb7\xb3\x23\x56\xa2\xfc\x77\x5b\xe9\x79\x33\x5a\xe7\x2e\x6b\x7f\x5e\xad\x19\x68\x10\x57\x24\x10\xf9\xc9\x2f\x8f\x14\x87\xd7\x0c\x3c\x9f\x11\x28\x3b\x0a\xc5\x70\xf7\xac\xf4\x98\x25\x60\xc8\x76\x50\xec\x51\x9a\xbe\x0c\xff\xef\xa0\x0e\x59\xe1\x96\x9e\xe2\x81\xaf\xd8\xa2\xe0\x0e\x68\x70\x5b\x80\x61\x47\x7e\x6d\xad\x50\xab\x5c\x75\xe3\xd5\xc5\x1b\x5a\x92\x8a\xf6\x8b\x25\x8c\xc1\xef\x95\x55\xfd\x2b\x8f\x4a\x59\x92\x39\xf3\xa3\x6f\xf7\x3f\xb3\x24\x6a\x89\x40\x3f\x69\xfc\x48\x39\xab\x2e\x94\x18\x72\xfb\xe1\xac\x65\xcf\xef\x90\x84\x63\x68\xaa\xaf\x5c\xa0\x41\x7f\x30\x72\xe2\x2e\xe9\x0f\x26\x5e\x92\x72\x1f\xd2\xb8\x95\xa7\x38\x0d\xc3\xa5\xcc\xb7\x1a\x98\x77\x5d\x94\x8c\xff\xeb\x1b\x46\xa8\x97\x43\x59\x38\x64\x1c\x5c\xae\x21\x80\x81\x40\x86\x7d\x8b\x18\xc2\xc6\x7f\xc2\xed\x7a\x9a\xe9\x24\xe2\x09\x96\x82\x13\xad\x13\x83\xf7\x2d\xc2\x75\xaf\xf2\xda\xa1\x84\x6c\x83\xba\x02\xac\x3e\xb3\x53\xd8\xf8\x5a\x86\x85\x59\x89\xf3\x05\xce\xdc\xaa\x99\x8f\x52\x2a\x92\xca\xdb\x96\x29\xfe\xfb\xcc\xc4\x0c\x6e\xc5\xb7\x76\xf2\xb8\x7f\x35\x03\x65\xb9\x70\xd1\x00\xdd\x95\x05\x39\x5c\x7e\x29\x9b\x1f\x2c\x6b\xbf\x2a\x72\x03\xd7\x25\x55\xaa\x28\xb2\xe7\xfe\x9c\x55\xf5\xc0\x1c\x0a\xfd\x95\xcc\xc0\x8d\xf2\x2a\x23\xaa\x12\x6f\xee\x89\x5e\x2d\x9d\xb3\x61\x21\x04\xf8\xe4\xd4\xe4\x21\x2a\x66\x1c\x3e\xc2\x93\x5a\xce\xcc\x07\x1f\x50\x98\x7f\x7a\xb0\x2c\x42\x1c\x54\x6d\xe5\x94\xe5\x27\x3f\xa5\x19\x41\x5a\xd4\xa8\xf2\xd6\xd1\x23\x23\xd3\x8d\xda\x4e\xae\x46\xb7\x64\xab\xae\x82\x53\xa3\x75\xcc\x38\x71\x0e\xba\xe0\xff\xfa\xd2\x30\x65\x8c\xe5\x52\x2e\xd0\x54\xd6\xf8\x5a\x35\x54\x4b\x94\x32\xfb\x72\x1f\xdf\xaf\x89\xd1\x58\x94\x00\x7d\x09\x12\xc5\xfd\xd3\xe4\x2b\xf6\xa2\x0a\xc3\x30\x7c\x9e\xba\x33\x69\x97\xf2\xc9\x02\x77\x86\xd1\xb0\xf0\x16\x72\xcd\x58\xba\xed\xdd\xbb\x93\x83\x80\x78\xef\xab\xa4\x58\xdd\x99\xd8\x06\x65\xdf\xbe\xec\x75\xef\xa8\x25\x85\x8f\x2b\x94\xc5\x5e\xfd\xd6\x03\xfa\xb8\xd7\xc0\x9e\x87\x14\x21\xd1\x77\x46\xcb\xa9\x69\x85\xba\xbd\xc8\xc6\xbd\x4a\x44\xae\xf4\x2a\x56\x20\xc8\xe1\x02\xfd\xc3\x47\xab\x1f\xa3\x4e\xa1\xec\xcf\xfd\x75\xde\x7b\x5b\x96\x9a\xf9\x5e\xe2\x9b\x7f\xcf\x2a\x7e\x0b\xdf\x70\xcd\xba\xeb\xae\x2e\xc6\x17\xc8\x77\xb5\x49\x21\x62\x95\x20\x71\x2a\x5e\x7c\x5c\xb9\x7a\xa8\x6b\x62\xc7\x4d\xac\x4c\xf2\x9b\x35\x07\x2c\x48\xed\x84\xf3\x7c\x7e\xdd\x5e\x0d\x49\x4c\x5d\x03\x33\xd7\x8b\x1b\xd1\x8d\xb7\xd2\x4f\x30\x7a\x4c\x49\x56\x91\xf9\x33\x53\xa2\x35\xb5\x05\x16\xfa\x3d\x2b\xe3\xf2\x9f\xe7\x27\x70\xab\x3e\x31\x6f\xb0\x32\x5b\x84\xdc\x70\xe2\xf3\xf2\x22\xc5\x3d\x35\x06\x22\x31\xd1\x0f\x1e\x12\x5e\xda\x46\xd3\xb0\x05\x7a\x9c\x9c\x9b\xa0\x3d\xff\x66\x23\xaa\x33\x55\x01\xd1\xd1\xa6\x2a\x62\x45\xcd\x40\xa8\x71\x7c\x6f\x83\x2e\x59\x09\x04\xfb\x24\x57\x7c\xce\xe5\x9f\xb7\xb3\xa3\xe0\x10\x37\xe0\x59\xe2\x77\xb6\xb5\x58\x7a\xe0\x58\x62\x23\xbf\x54\xa8\xba\x5f\xc7\x50\x02\xdf\x77\x0f\xe8\x53\x22\xbb\xca\x73\xeb\xec\xb0\x83\xb1\xd4\xa3\xa9\xe8\xcb\x84\x7f\xe1\xa4\xe6\xc2\x0d\xb1\x08\x37\x31\x53\x45\x7a\xe6\xa9\x13\xa3\xd4\x05\xe2\x8d\x4f\x58\xa1\x27\x86\x8f\x54\xb0\xc4\xdc\x4f\x0c\x7e\xf0\xc8\xb1\xf7\xb7\xe4\xdb\x05\xcf\xc2\xb1\x66\x63\x1c\x90\xee\x98\xae\xac\x15\xa8\x9c\x71\x04\xd1\xed\x8b\x74\x19\x67\x1f\xdb\x36\xa9\x60\x57\xa8\x95\x85\x1f\x7e\x46\xfe\xa5\x85\x18\x8b\x6a\x30\xc8\x5b\x97\x6a\xe0\xde\xa6\xe9\xe2\x26\x87\x86\xc8\xaf\xb4\xf8\x9e\x54\xb6\x5f\x42\x80\x0e\x8b\x16\xe9\x53\x25\xb9\x87\x4d\x4a\x53\x5a\xb3\xb9\x2b\x57\xcb\xee\x51\xa1\x44\x99\x9a\x87\x3f\xf7\x32\xdf\x2d\xab\x19\x6d\x70\xc6\x77\xe6\xb5\x97\x63\x22\xa0\x1f\xa0\x16\xfe\x4d\xf6\x4b\x73\x12\x57\x5a\x64\xd2\x1e\x62\x70\x05\xbd\x30\xe5\x69\x95\xd8\xbf\xe6\x2f\xd9\xa9\x88\x2c\x23\xee\xb0\xb4\x67\x96\x46\x0e\x84\x94\x09\x4c\xff\x99\x68\x62\xae\x3e\xdc\x2a\x8a\x19\x38\x3c\x3a\xc2\xd9\x9a\xb0\x55\x79\xbc\x0e\x8c\x23\x85\xe0\xd5\x8d\x2b\x78\xb7\xea\x46\xa1\x90\xf6\xb9\x35\x5a\x3c\xaf\x05\x4c\x40\xeb\x33\x8a\x71\xb7\x67\xa1\x6a\x74\xd3\xfd\xec\x19\x19\xe8\x40\x46\x2b\xe9\x9d\x64\x17\x5e\xa0\x88\xf1\x13\x9b\x0b\x72\x65\x7e\x33\x49\x7b\x76\xd8\x45\xdc\x5d\x4d\xe5\xa3\x1e\xda\xc3\x2f\x50\x68\xee\x16\x8a\xe1\xa7\x95\x6a\xdc\xa3\x76\x90\x98\x27\x1d\xd4\xac\x98\x4b\xc8\xad\x26\x26\x99\x17\xdd\x95\x8e\x28\x2e\x65\x4e\x22\x33\x9d\x5f\x75\x5a\xd6\xcc\xb4\x56\x28\x86\x63\x4f\x8e\xd7\x37\x34\x43\x46\x4a\x0c\xe5\xb5\x47\x15\xa6\x2b\xb1\x6d\x42\x41\x44\xf2\xfe\xad\x32\x38\x61\x04\x7a\x32\xc5\xbe\x3c\x79\x4c\x1b\xa4\x33\x5a\xe3\x70\xb2\xe7\x74\xb5\x7f\xec\xfa\x2c\x31\xe1\xfb\x5c\x49\xbf\xca\x10\xab\x88\x14\x31\x44\xcf\x68\x1c\x06\xe2\xd5\x6c\x64\x08\x23\xc1\xf0\x88\x46\x3a\x71\x30\x38\x3d\x8b\xe1\xf6\xbb\x36\x27\x59\x71\xe7\xbc\x42\x31\xfc\xa4\x66\xb3\x6c\x62\x03\x99\x31\xd3\xf0\xde\xd7\x54\xad\x3b\x20\xdc\x45\xd7\xf7\x88\xe7\xe4\x13\xaf\xe1\x5a\x0d\x33\x83\x32\x1e\xfe\x2f\x7b\x71\x9a\x76\x71\x94\x48\x2c\xf8\x46\x5a\x21\x47\x7d\xdc\x9b\x16\x9e\x8c\x5b\x4b\x7b\x71\x9c\x7e\x6a\xac\xd2\xe1\x77\x2b\x85\x12\x62\x4c\x78\xc1\xe6\x33\x1a\x1d\x0c\xdb\x84\x63\x6e\xe2\x09\x76\x6e\xea\xe1\x21\x4a\xd3\xde\x06\xac\xa0\xbb\x5d\x66\xc9\x6a\xc3\x36\x73\xb7\x2b\x2f\xd4\x19\xd3\x3b\x66\xcf\x8b\x7e\x3b\x77\xab\xbc\x44\xaa\x15\xd8\x6b\xbf\x9a\x92\x6e\x79\x79\x06\xf5\xfd\xfe\x26\x92\xd9\xbf\xfb\x32\xcd\x9e\x33\x07\xaa\x8d\xfb\xc7\x73\xb0\xcc\xfc\x8e\x42\x31\xbc\x4d\x13\x13\x37\xb1\x8d\x2b\x2a\x66\x28\x5f\xeb\x52\x82\x66\xc0\xe0\xda\x86\xb9\xda\x19\xb9\xfa\x8d\x34\x86\xfa\x99\x47\x26\xea\x0f\x93\x3a\x60\xd9\x4c\x81\x1a\x02\xd9\xc7\x10\xc5\x29\xa9\x86\x3c\x30\xb7\x0d\x3f\xa9\x69\x20\x40\x19\x20\x5a\xbe\x9d\x6b\xa4\x2e\xc0\xac\x99\x0a\x69\xab\x2f\xb3\xfc\x1e\x09\x50\xb1\x5a\xd5\xc1\xae\x3b\xcb\x43\xdf\xa4\x6b\x91\xa7\xb4\xc7\x87\xda\x63\x94\x04\xc2\xa9\xd9\x04\x27\x76\xb2\x6f\xd7\xf5\x8b\xcd\xf5\x63\x84\xe1\x36\xf9\x39\xaa\x6e\xe0\x2b\x87\xb2\x6d\x51\xfa\x8b\x5b\x41\x09\x33\x5f\xeb\x90\xfd\x66\x73\xf2\x61\xad\x7e\xda\xde\xdf\xd2\xb8\x53\xd8\xb0\xb0\x2d\xda\x76\xe1\x2d\x27\xd2\xa7\x9e\x51\x70\x45\xc8\x8e\xc9\xa7\xdb\x15\x7e\x54\x3d\x39\xd0\xe3\x48\xbf\xfa\xff\x3e\xae\x48\x41\xc1\x7d\x03\x99\xe6\xd0\x07\x75\x29\x10\xe4\x7a\x65\xca\x1c\x09\xc5\x78\xf7\x3c\x0e\x66\xbd\xd1\x40\xac\x44\xc1\x5f\x41\x59\xcb\xbb\x15\x58\x02\x38\x9b\xba\x30\x76\x2a\x86\x1f\x7e\x4a\x71\x18\xb7\xed\x80\xb7\xa4\xa0\xc6\xde\xb0\xa0\x55\x0f\x83\xf8\x4d\xb1\xf1\x32\xf7\x0f\xd6\x7e\x2c\x30\x51\xfc\x46\x5e\x68\x29\xec\xaa\xa0\x94\xba\xe7\x27\x5c\xac\x10\x04\x1a\x08\x24\x00\x32\xc5\xc3\x12\x33\x3e\x7f\x1e\x04\x09\xcd\x9c\x1b\x07\x8c\x26\x08\x9b\xd7\xa7\x29\xaa\xf3\x01\x8b\xf3\x94\xf8\x49\xcf\xda\xd9\xa1\xdd\x73\x76\xe0\x94\x08\x02\x08\x73\xa9\xe9\x63\x30\x91\xea\xee\x4e\x11\x9b\x3e\xbc\x44\x35\xfd\x73\x7a\xa3\x92\x3a\xbc\x6f\x8f\xa4\x59\x71\xeb\xff\x96\xfd\x7b\x9f\xe6\x79\x83\xdc\x5e\xed\x9e\x0a\xbf\xba\x34\x09\x29\xdd\xa8\xa9\x84\x94\xaf\x64\x47\x25\x23\x98\xf6\xb4\x4f\xc3\x2b\x3a\xf6\x28\xca\x2d\x79\xd4\xba\xf2\x39\x69\x4d\xde\x8c\xee\x95\xcf\xdf\xa9\x73\x8e\xeb\x58\x66\xef\xd7\xee\x4a\x3d\x64\x5c\x89\x09\xbe\x7d\xd9\x87\x6a\x9a\xbf\x02\x35\xaa\x58\x98\x17\xe6\x5d\x53\x87\xff\x54\x10\x33\x13\x87\xa4\x3f\xed\xd5\x9c\x58\x89\x6d\x73\x99\xdb\xf8\x31\xfc\x72\xb8\xcc\x52\x12\xf5\xcb\xe9\x63\x15\xc6\x04\x76\x4d\xb5\x26\xfd\xb7\x97\x2e\x6d\xdd\xe8\x35\x1b\x25\xfc\xdd\x7c\x71\x19\x4f\x73\x17\xdb\xbe\x05\x9b\xbc\x18\x7e\x41\xd9\xc3\x2e\xf5\x29\xe3\x3a\x27\xa0\x74\x65\x6a\x37\x24\x75\x4a\x02\xd7\x5a\xec\xcb\x7d\x54\xb3\xcb\xe4\xaa\x65\x31\x9e\xf2\xdb\x61\xfa\xb3\x94\x19\x76\x0d\x4b\xb5\xf6\xb8\xee\x18\xaf\x8a\x8a\x75\x82\x4d\x1a\x2f\xe9\xe8\xc7\x79\x4a\x62\xb2\xa0\x02\xf8\xd3\xbf\xef\x4b\xe3\x9e\x6e\xb9\xa2\xc1\x9d\x8d\x72\x8f\x4c\x50\x95\x13\xd6\x5e\x11\x2f\x84\x6a\xc4\x7f\xa5\x6c\xab\xc5\x42\x9c\x49\xb6\xfe\xf6\xa4\x51\xa9\xb6\x9f\x4d\x84\x65\xbb\xcf\xb4\xb6\x8b\xc5\xa8\xe8\x8f\xe5\xbe\xa0\x80\x50\x6a\xd4\xf3\x0b\x71\xb5\xf0\x9d\xd5\xba\xa8\xb7\xa8\x95\x62\xf2\x7a\xe6\xbd\xfb\x65\x3e\x6c\x71\x1d\x6c\x99\x8a\x55\xd6\x8f\x55\x74\x5e\xc0\x69\x49\x86\xde\x35\x2f\xcb\x64\xd9\xa1\xae\x43\x03\xdf\x8a\xa3\xdb\xca\x73\x2a\x7b\x55\x30\x77\xb2\x8f\xba\x42\x40\xdc\xac\x53\x03\xda\xe4\xe1\x75\x8a\x54\x24\xa3\xa5\x12\x66\xb0\xf9\x77\xd5\xd3\xed\x83\xa9\x7c\x22\xf5\xf0\xf6\xf4\xb1\x74\xa3\x1b\xc9\xa1\x2e\xad\xd1\xb8\x82\xce\x0d\x78\x7b\xb0\x92\xf6\x43\x9d\xee\xd5\xf9\x6d\xb4\x96\xc3\x16\xe3\x2f\xf0\xeb\x75\x9a\x69\x07\x4d\x8c\xe6\xc4\xc3\xf8\xf0\x9e\x96\x84\x2b\xba\x54\x93\xde\xd2\xa1\xdb\xb5\xd3\x44\x1d\x0e\xf6\x12\xcb\xff\xd1\x53\x9a\x1d\x09\xb8\x6a\x49\xe8\xfc\xe6\xcd\xc3\x54\xae\x94\xe0\xa8\x3c\x71\x46\x6e\xfe\xe8\x0f\x54\x84\xcb\x4e\x65\x0a\x82\x5c\xc0\x4d\x27\x9f\xf6\xfd\x5b\x5b\x38\xaa\x16\x8e\x13\xf8\x73\x17\x68\x44\x2f\xc4\x48\xab\x0f\x85\xf5\x64\x92\x17\xdb\x08\x88\x7e\xf7\x3e\x96\xc6\xc9\xa2\xdb\x02\x54\x27\x3e\x9f\xbc\xa6\x83\xe6\x73\xcf\x2b\xc0\x2a\x9f\x61\xe4\xd8\x44\x98\x6d\xe7\xd0\x19\x55\x2f\x0e\xe4\x4a\x33\xfb\xde\x54\xc4\x05\x0c\xe4\x9a\xc8\x2e\x44\xd7\x55\xf4\xfb\x5f\x7a\x64\x8a\xf6\x6c\x62\xab\xea\x96\x84\xeb\x86\xdd\xe3\xb5\x4d\x51\xa1\x3e\x41\xbe\x32\x69\x5f\xd1\x95\x3e\x06\x55\x62\xba\xa8\x26\x5a\x48\xf0\xf9\x9c\x6e\xad\xf4\x41\x76\x2c\x9b\xfd\x87\x37\xb5\x1a\x8c\x38\xd4\x4d\x4d\x9e\x33\xbb\xd7\xc7\x63\xff\xb9\xd1\x3d\x97\xf9\xbf\xb7\x64\x63\xaf\x4e\x5c\x5a\x89\x0a\x40\xa5\xb1\x97\xbd\xe6\x72\xc5\x14\x92\xa4\xc8\xb8\xb9\x9b\xba\x84\xe4\x12\x06\x20\x14\xe2\x0a\x84\x99\xdf\x6e\x10\x4a\x16\x35\x86\x1a\x30\xf5\xca\x7d\x7d\xa0\x5c\x54\x1f\xf7\xc0\xc2\x0d\x79\x36\x7d\x44\xa8\xe7\x20\x97\xd6\x95\x4a\x26\x5c\xbe\x21\x1d\xbc\x66\xcf\x13\xa5\xe4\x63\x1b\x65\xae\x63\x23\xbf\x4e\x04\xd5\xf0\xe1\xa7\xc6\xf6\x53\x77\x70\xb1\xa4\xcc\xad\xaa\x0b\xb8\xdd\x8c\x32\x90\x87\x07\x8e\x10\x1f\x15\x1b\xa4\x9c\xc8\xb6\x67\x2e\xbb\x47\xef\x1c\x83\x06\x20\xe4\x1e\x0f\x0c\x1f\xae\x54\xc5\xb1\x26\x73\x3e\xf3\x7c\x8b\x59\xa4\x1c\xa9\xe6\xd6\x2b\xe3\x65\xaf\x26\x64\x9f\x17\x6e\x51\xe4\x69\x90\x0d\x1c\x82\xf0\xc8\x34\x49\xec\x48\x65\x2e\x5b\x16\x8c\x55\xbb\x39\x65\xe2\x17\x7c\x54\x15\xbb\xf6\x5f\x34\x9b\x91\x19\x1d\x05\x8b\x06\x62\x86\x9c\x5d\xa4\x89\x3e\xa0\xa0\x12\x78\xbe\xd0\xa0\xcf\x2e\xbb\xb0\xbf\x04\x0f\x33\x16\xcb\x9b\xf6\xe5\xaf\x3b\xa3\xf0\x1a\xa2\xeb\x77\xfc\xd1\xd6\x8a\x36\xe9\x91\xd5\xc3\x31\x6a\x9b\x06\x33\xc2\x79\xbc\xd1\xcf\x6e\x7d\x73\x88\x1a\x17\x60\x20\xfd\x15\x57\x57\x76\x6e\xc6\x41\x7f\xcc\x1c\xbd\xcb\x07\xb6\xa3\x50\x64\x92\x5b\x95\x72\xdb\xc7\x0c\xe4\xdd\xa3\x3f\x3a\xe9\xf3\x81\x7b\x17\x0d\x18\xf1\x5a\xa9\xe9\x9f\x19\xaf\x1d\x21\x4a\x5d\xd1\x29\xff\xfd\xb6\xf4\x8e\x33\x90\xd0\xd3\xdb\xbc\x33\xdd\x47\x42\xbe\x2f\xb0\x64\xe9\xd0\x92\x39\x25\x05\xe0\xbc\xa0\xe4\x11\x93\x20\xd6\xa2\x1f\x97\xbf\xa4\x57\x3e\xcc\xc0\x2d\x23\x27\xba\x3e\x19\x07\x30\x7f\x48\xeb\x93\x80\x3f\x1b\x36\x93\x89\x67\xe6\xc9\x5d\xf1\xc5\xe1\xc6\xde\x6a\x6f\x8c\x6c\x99\x3b\x19\xb1\x01\x4e\xe6\x81\x85\xe9\x88\x4a\xb1\xe7\x57\x90\xd6\x2d\xcc\x0f\x66\x2a\xc9\x89\x81\x7c\x95\xb8\x1d\xfa\xce\x6a\x18\x42\x8e\x81\x8d\x9d\xb8\x36\x08\x70\x31\x4a\x8c\xff\x97\x69\xa3\x4d\xa4\x7a\xe4\x67\xde\x5a\xcb\x53\x97\x95\xc4\xf7\x6d\x1c\xa7\x2e\xcf\x9e\xd2\xa5\x49\xa3\x87\x47\xb8\xda\x59\x0d\x3a\xa4\xd9\x19\x7b\x55\x23\x37\x45\xe3\xa5\x5d\x6b\xa2\x58\xd4\xc1\x0d\xca\x78\x8f\x3f\x6f\xac\xd1\x50\xd7\x88\xd8\x01\xc3\xbc\xd8\xfc\xc2\xd9\x91\x92\x9e\x24\x2b\xee\x70\x91\xf0\xd3\x6c\x10\x57\x98\x26\x55\x87\xb6\x70\xd4\x03\x9b\x87\x6f\x31\xe1\xfb\xfc\x81\x94\x35\x1d\x65\x3e\x02\xba\xc0\x2d\xb7\xca\x0b\x84\xd6\x18\x52\xca\xa3\xec\x8f\x8e\x2b\x78\x63\xc8\x37\xb8\x49\xe9\xdf\xc6\x6a\x29\x20\x29\x61\x56\xa0\x35\x1f\x00\xc6\xd1\x6f\x9c\x5f\xa3\xe3\x01\x2a\x09\x10\xb4\x2f\x73\xf2\x5c\x72\x66\xe7\xcf\x85\x6f\x7a\xf3\x3a\x45\x7f\x97\x72\x54\x63\x66\xe5\x1c\xbd\xca\xaf\x21\xe6\xab\xaa\x35\xdd\x7b\xd3\x67\xa2\x2e\x3a\x40\xf3\xdf\xd1\x2c\x4c\xcb\x65\x6e\x61\xca\x25\x73\xd6\x64\xfb\x6b\x10\x09\x5c\x7d\x7e\xe9\x81\xf4\xd3\xee\x21\xae\x15\xa0\x34\xe6\x67\xd4\x33\xca\x35\x0d\x08\x42\x79\xff\x9b\x5d\xdc\xdf\xf5\x6a\xea\xb5\x8c\xef\x32\x23\x0f\xf0\x46\xf2\x62\x68\xed\xd0\x96\x01\x67\x66\xc5\xd1\x24\x7b\x70\x71\xbd\x50\x0c\x17\x8c\x7c\x6f\xf2\x56\xdd\x98\xd5\xa9\x4d\x5c\x05\x71\x92\x5f\x5c\x97\xf9\x65\x42\xe2\x8d\x53\xf1\xbb\x96\xf0\x03\x70\x75\x6c\x03\x93\xdb\xfb\x82\x4c\x8c\x6c\x82\x03\x20\x7e\xf0\xa0\xff\x99\x85\xa3\xd2\x79\x77\x31\x56\x20\x3b\xbb\x46\x24\x9d\xbe\x8f\x8c\x2a\x18\x67\xad\xde\x92\x5e\xfa\x99\xb3\x84\x0e\xcc\x75\x5b\xa4\xe0\x34\xba\x2d\x7a\xcb\x41\xba\xc0\x02\x62\x51\xed\x12\x77\xe4\x7a\x76\xb7\x49\x66\x86\xde\x06\x09\x4b\x1c\x32\x57\xb8\x51\x28\x27\x25\xf8\xbe\x87\xb6\x29\xfe\xf8\xdc\x21\xfe\x27\x1b\xd3\x09\x0f\x28\x12\x5e\x01\xbd\x31\x3d\xe1\xf9\xda\xd0\x74\xe0\xa9\x23\x1b\xbb\x7e\x54\x03\x29\x4e\xc6\xb9\x6b\xdf\x91\x4d\x0f\xda\xda\x9c\xde\x7d\x87\x90\x47\xb7\x03\xb7\x82\x4d\x38\xd0\x13\x27\x29\x70\xd7\x68\xcf\x41\xa7\x63\xf5\x03\x6a\x96\x01\x53\xef\xb3\xf7\x08\xd9\xd8\xa8\x98\xf0\x53\x5a\x2e\x85\x76\x91\xa6\x00\xff\x9e\x1b\xd6\xdd\xaf\xdb\xdc\xb9\x6e\xa2\xac\x94\x5b\xbc\x23\xd9\x34\x55\xa0\x04\x74\x8f\x8e\xbd\xf2\x99\x0f\xd9\x03\x67\xa4\xe5\x5e\x9b\xdc\x8f\x5b\x5e\x2c\xf4\x95\x3d\x38\x58\x03\xff\xe1\xd8\x48\x3e\xf3\x6f\x8a\xeb\x48\x54\xef\x23\x93\xcb\xe5\xbf\xa9\x59\x60\x21\xdb\x26\x89\x10\xc9\x91\x01\xea\xcc\xc9\xa1\x2e\xe8\xa1\xf4\x6a\x72\x48\xa8\x82\x88\x0b\xac\x38\xf8\xa3\x59\xb7\x27\x1c\x76\xc2\x0a\xc5\xf0\xbd\x1b\x86\xc9\x74\x3a\x10\x78\x8b\xdc\xae\x72\xf2\x8d\xe7\xcc\x2a\x44\x0b\xff\x39\x4b\x23\x85\x04\xb6\x4b\x7a\xd2\xb9\x79\xde\x58\xa8\x77\x67\xb8\x28\x0e\xaf\xdc\x67\xde\xa7\xaa\xd6\xb9\x7c\xc9\x56\x3d\x96\xec\x67\xdb\x07\x9d\xe7\xef\x72\x17\xca\xc2\xe2\x5a\x8d\xda\xd4\x55\x2d\xd7\x9e\x5e\x21\xdb\x22\x15\xd4\x8b\x5b\x2c\x0c\xc2\x11\x9a\x3c\x1d\x23\x26\x31\x02\x9b\x06\xbc\x3a\xfb\xee\x63\x8a\x19\x94\x53\xb3\x69\x93\x1f\xdb\x83\x4a\x13\x06\x13\xc1\xd4\xbe\xf0\xc9\xf7\x29\xbf\x8c\x85\x8b\xb4\x76\x80\x3e\xf3\xb2\x7c\x08\x4d\x5c\xb7\xb8\xed\xd3\x99\xc9\x8a\x2e\x23\xa3\x9e\x27\xb2\xb5\x19\x17\x8f\xd1\x36\x08\x76\x62\xac\x70\xf7\x19\xfe\x64\xba\x30\x72\xe0\x1f\xfc\x49\x32\x34\x45\x45\x96\x67\x21\x93\x36\x92\x76\x64\xe6\x3b\x67\xd5\x28\x89\x0c\x0c\x12\x22\x70\x87\xe4\x3e\xb3\x23\x99\x1d\x23\x2b\x31\x06\xf6\x9e\xe3\x6f\xb1\x8c\x5b\xfa\xf7\x65\x3f\x72\xbf\x86\x95\xa2\x86\xcf\xa2\x63\x0a\x50\xa4\xdc\x4d\xc7\x12\xc8\x10\x6d\xb4\x68\x04\x64\x62\xd1\x4b\x64\xdb\xa2\x58\xee\xcb\x7c\x79\xa5\x96\x8f\x44\xbb\x2f\x2e\x72\x06\xf5\x28\xad\xec\xf9\xb3\x3a\x20\x2e\x7e\xfe\x78\x1a\xbd\x10\x0b\x1e\x85\xe7\xa6\xc9\x41\x73\x19\x39\x34\x48\xdb\xed\x6c\x7b\x72\xb4\x56\x2e\xba\xc0\x13\x2c\xf6\xe5\x2e\xb6\x15\xc2\x22\xb5\x39\x21\x37\xcc\x6b\xa2\x3e\x70\x29\x89\xcc\xf5\x0b\xbd\xba\x63\x89\x45\x5c\xee\xdb\xc6\xaf\xdc\x27\x1e\xe4\xdf\xd5\xc2\xa8\xde\xf4\x38\xee\xe5\x2f\x25\x6d\x82\x62\x23\x22\xb2\xc6\xdb\xc2\x74\xd6\xd8\x8d\x6a\x28\x86\xfb\x49\x99\xe4\xbe\xfc\x84\x97\x75\xa3\x53\xcc\x30\x07\x22\xdc\x6d\x26\x98\xe5\x2a\x76\x53\xf5\xd7\x9d\x43\x15\x4d\x2f\x75\x56\x30\xf8\xfe\xe1\x4a\x92\x6d\x52\x17\x62\x42\xf6\xdb\x23\xe5\x4e\x31\x89\xe7\x21\x9f\x78\x65\xc2\xb7\xc0\xe1\xbb\x54\x3f\x27\xc7\x09\x5c\x3e\x22\xe3\x40\xb8\xf1\x1a\x01\x18\x04\x88\xa2\x3b\xd0\xf4\x62\xcb\xf0\x77\xc6\x7b\x16\xaa\xe1\x82\x43\x7a\xb0\x69\x20\xaf\xc5\xe8\x6d\x4c\xc8\xb3\xf2\x65\xd8\x04\x67\x0c\xed\xc7\x53\xf6\xf3\xa1\x73\x50\x8b\xd6\x96\xa3\x25\x73\x43\xde\x54\x3c\xcd\xa1\xb9\xb4\x76\x92\x06\xbe\xe3\xda\x0d\x2d\x4e\x3d\x99\x3d\x9b\x15\x27\x07\x6c\xc7\x18\xca\xa3\x5d\x1a\x78\x0b\xfe\x9c\x37\x49\x16\xac\xd6\xca\xa4\x3a\xe1\xe5\x28\x9c\xb3\xe3\x65\x59\xb9\xd4\x31\x67\x12\xac\x7b\x45\xe1\x86\x46\x45\x24\xb4\xc3\x2f\xc8\x2a\xac\x1a\x06\x19\x7a\x68\x8c\xd3\x3a\xaa\x8c\x36\x62\xbc\xed\x91\x0b\x15\x55\xf9\xe8\x14\xc1\x56\x9b\x7e\xa7\x92\xad\x61\x17\x37\x00\x5f\x36\xe7\x7d\xa9\x22\x10\xac\xd7\x5a\xae\xcc\xbb\x1f\x19\x95\x82\x6a\x32\xc3\x42\x7c\x18\xf0\x4b\x65\x58\x5d\xa3\x30\x27\x8f\x56\x75\xf3\xae\x7f\x28\xb5\xcd\xe5\xd7\xaf\x19\x2c\xed\xb9\x9b\x2d\xe1\xf6\xc9\x9d\xda\x5c\xc2\xa1\xc0\x55\xe0\xb9\xca\xcf\x15\x79\x7f\x9b\x54\x2d\x6a\xe2\xa8\xcc\xd9\x61\xa7\x8f\x4d\x39\xa9\x57\x33\x3f\x18\xaa\x15\x84\x89\xca\x40\x66\xf7\x33\x43\x44\xd1\x84\x41\x62\x37\xfa\x52\x6b\xb4\xf2\x04\x33\x04\xb8\xd3\x06\x94\x90\xa5\x0e\x59\xd7\xf8\x16\x51\xa6\x3c\x99\x43\x0f\xc8\x16\xa6\x94\x42\x03\x86\xe7\xb1\x74\x5b\xef\xe3\xa2\xf1\xb0\x85\xd3\x2e\x0a\x4b\x2c\xc4\x90\xdf\xba\x14\x7d\xd9\x45\x6d\xaa\x58\x92\x0f\x18\xd9\xe8\x7c\x71\x8c\x7e\xe1\x6a\x6a\xa0\xc2\xd5\xd4\x6e\xfd\xc3\x23\x77\xf0\xaa\xc8\xc4\xd1\x85\x14\x93\x25\x07\x8c\xd5\x82\x0b\x65\x42\x44\x2e\x73\xa5\xd6\x77\x17\x10\x1e\xde\xed\xc8\x5d\x33\x69\x58\x5c\x84\x76\xc7\xf2\x2b\x7d\xd9\xcd\x07\xd2\xf7\x37\x48\x05\xc2\xad\x42\x92\xc9\xee\x97\x5f\xd4\xbc\x77\x91\x6d\xe3\xa6\x43\x5d\xdc\x14\x25\x2f\xdc\x22\xe8\xf2\x24\x39\x98\x31\x13\xf4\x39\xbd\x25\xbc\xb9\xe4\x53\x0a\xc6\x37\x07\xc7\xea\x10\x56\x5a\x42\xa5\x84\xca\x66\x1f\x57\xf6\x72\xc0\x95\x1c\x5b\xa1\x5b\x73\x56\xf3\x10\x80\x5c\x1f\x19\x1c\x30\xf4\x91\x16\x64\x89\x77\x45\x77\x37\x00\x1d\x2e\xac\x8d\x54\xa9\x1a\x50\x06\xc3\xdf\x74\x9c\x52\x60\x01\x0d\x13\xee\xe7\x7c\x61\xcf\x78\x2d\xac\xd5\xa2\x54\xc5\xf0\x51\xc9\xe6\x92\xd6\x99\x9f\x6f\x48\xf9\x00\x73\xe6\x7d\xb1\x2f\x3b\xb1\x9e\x24\xad\x15\xc8\x4d\xd2\x0f\xb3\x63\xb8\x5e\x9a\xd5\x09\x6e\xc4\x15\xd5\x4f\xc7\x69\xa0\x14\x8f\xf4\xd7\x4c\xc8\x8c\x12\xb8\x9f\x1a\x08\x0d\xc2\x63\x25\x9a\x29\x92\x88\x7f\x9c\xa9\x0f\xd5\xc8\x84\x2d\xe9\xb3\x5c\xa2\xb4\xea\xf9\x94\xc5\xd4\xa1\xec\xcf\x0e\xe9\xce\x56\xd8\x49\xb2\xc9\xff\x39\x91\x7e\x66\x30\x9a\xad\x27\x0e\x43\xf9\x5b\x45\xad\xe3\xf9\x08\xfc\x35\xfa\x72\x7f\xdd\x01\x17\xb7\x8d\xdd\xc2\x8c\x8e\x14\x5c\xc7\x9b\xf5\x0f\x5d\x50\xf9\x9b\x3d\x30\x5a\xc6\x29\x13\x35\x0b\x3e\x85\xff\x15\xfb\x72\x57\x6b\x98\x30\x23\xb0\xfd\x80\x83\x0f\xe0\x7c\x5e\xf3\xb8\x26\x30\x8c\x91\x17\x08\x7a\x5f\x14\x81\x1f\x92\xe9\x24\xea\x89\x5e\x70\xd9\x99\xa1\xaa\x56\x16\xd4\xf3\xd3\x9e\x95\xc0\x5f\x1b\xfa\x5c\x5d\xcf\xf2\xa4\xf3\x7a\x44\x1c\xda\x20\x0a\x4c\xb5\x2f\xfb\x2f\x3b\xd3\xcb\x06\x82\xd2\xf1\xbc\x66\xe5\x71\x61\xf0\xdd\x63\xe0\x5a\x94\xe5\x5e\xbf\x50\x0e\xd7\xdd\xa9\xd1\xbf\x4c\xe8\x92\xf1\x1c\xbb\x26\x85\x78\x6e\x95\x47\x29\xc8\x4c\x52\x01\x89\x09\x98\x76\x4f\x19\xad\xde\xd5\xb7\x05\x04\xc7\x67\xf8\xfd\x1a\xf9\xbf\x66\x27\x0a\xbf\x99\x95\x9a\x15\x1a\xad\x20\x1f\xa5\x91\x4e\x13\xcf\x6a\x7f\x0e\x48\x7e\x8e\x7e\xcb\x09\x79\x23\xcf\x40\x20\x73\x32\xeb\x81\x7e\x46\x62\x65\x2c\x8d\x60\x73\x5f\xdc\x78\x89\x72\x4b\xc5\x33\xca\xf8\xbd\x4e\x0a\xff\xfe\x15\x8a\x35\x6f\xf6\xc1\x1d\x7c\x57\x13\x1b\x38\x84\xd1\xab\xbc\xfe\x50\x9a\x23\x8a\x1c\x1c\x53\x1c\x5b\xa8\x3a\x99\x2f\xca\x7a\xb1\x4c\x5a\x61\xc0\xc1\x24\x5e\xcb\xae\xa1\xa0\x75\xa6\x7c\x9a\xd9\x4f\x26\xa9\x54\x6f\x3a\x95\xca\x5e\x39\x4b\x00\x6a\x71\xcd\x8f\x75\xf0\x9a\x47\x54\xb3\x01\xe2\xe3\xc4\x9a\x22\x77\xf9\x0e\x89\xbb\x98\x31\x63\x4e\xf4\x4f\x9f\xda\x9d\x24\x63\xae\xaf\x8e\xa6\xbe\xfb\x20\xdf\x1a\xcb\x69\x22\xd5\xb5\x50\xeb\x3f\xda\xb4\x21\xa8\x89\x4f\x6b\xc5\x21\x0d\xfc\x38\xb4\xdd\xa7\x19\x19\xc6\x74\x7b\x20\xf2\x9e\xba\x55\x23\x57\x60\xe6\x04\x26\x92\x94\xeb\xbe\xcc\x23\xb3\x64\xd5\x04\xd8\x89\xd6\x58\x5b\x93\xc4\xc8\x12\x23\x85\x62\x38\x6a\xb3\x44\x24\x5a\x81\x5b\x41\x8c\x40\x0f\xe0\xde\x0b\x95\x81\x08\xf2\xaa\xc8\x37\x2c\xdc\x80\x9b\x2e\x5f\x3f\xa1\x26\x1f\xb1\xe3\x7b\xa1\x18\xbe\x72\xb1\x8e\x4c\x01\xaa\xbb\x61\xb6\x7c\x0e\xff\xd5\x41\x92\x61\x13\x55\xda\x13\x5f\xe4\x95\xf6\x52\x48\x65\xe5\x56\xfa\xda\x68\xc5\x6f\x8e\x72\x4b\xdf\x5d\x5a\x70\x25\x4e\xb9\xdf\x6d\xf4\xc6\x49\x3e\xbd\x28\x21\xaf\x8a\xfd\xe8\x92\x83\xd6\x82\x79\x5a\x53\xca\x11\xec\x1d\xe2\xc5\xf4\xd1\x63\x6f\xeb\x12\x9a\xc0\xdd\xf6\x81\x53\x2d\x5a\x42\x6c\xe7\xb8\x7e\x5f\xc5\x6e\x8a\x8e\xfa\xdc\x2e\xc5\x15\x88\x61\x54\x85\x0e\xdd\x37\x4a\xe9\xb3\x39\xaf\xb3\x30\x67\x96\x08\x96\x7f\x9c\xc4\xcf\x26\x6e\x72\x50\xe8\xd8\x1e\x5d\x0d\x1b\x20\xfa\x70\x4b\xbc\x38\x4f\x6e\xdd\x6e\x9a\x32\x68\xfb\xdd\x00\x65\xc9\x70\x19\x64\x95\x73\xf5\x5b\x07\x49\xa6\xb0\x15\xfd\xcb\xb1\xe7\x65\x6a\x54\x42\x0c\xd5\x03\xdf\x84\x44\x76\x5e\x56\xb7\x22\x29\x79\x71\x54\x3e\x77\xa2\xa5\x21\xc9\xb0\x10\xb8\xea\xcb\x6e\x3e\xaf\x4d\xbc\x49\x05\x48\xb2\x7c\x0a\xf1\x15\x4d\x78\xcd\xb0\x89\x4b\x8c\x18\x47\x10\x1e\x70\x75\x81\xb0\x3a\xf8\x9a\x0a\x3a\x4c\x7e\xd9\xba\x74\x5d\x20\x5c\xd1\x5b\xea\x82\xdc\x23\xa7\x27\x68\x2f\x54\x09\x3c\x0b\xfb\x04\x25\xb4\x9f\x2e\xd9\x2b\xb3\x69\x8b\x92\x57\xb6\x6b\x9e\x0c\xcd\x55\x64\x23\xcf\xe2\x68\xf8\x62\xf8\x88\xc0\x51\xae\xa4\xbe\x2a\x6a\xf4\xe3\x7d\xda\x9d\x1a\x78\x16\xa3\xd4\x89\x45\x9d\xd9\x1c\xd9\x5c\x74\x7c\x8b\x96\x14\x47\xdf\xfc\xa4\x7b\x14\x05\x70\xe8\x9f\xc1\x30\xfc\xf8\x60\x71\x91\x20\xa1\x73\x9b\xf5\xcf\x0f\x11\x67\x8e\x3b\x41\x46\xff\x76\xd9\x4a\x9d\xaa\xe2\x07\xcc\xe5\x7b\xe4\x97\x3a\xc4\x86\xda\xc0\x2f\x10\x19\xff\x37\x4f\x4b\x75\xcf\x19\xa0\x70\x73\xed\x89\x41\x2a\x7b\xb6\x18\x5e\xb4\x32\x86\x25\xbb\x1c\x32\x1a\x3e\x7b\x4e\xb5\x18\xe4\x52\x2a\x31\x7f\x3e\xfb\x9d\x67\xe5\x96\xba\x2d\x40\x36\x29\x37\xc5\x8d\x36\xbb\xac\xdb\x4b\x31\x21\x4e\x05\x9f\x14\x8f\xd5\x20\x8f\xc2\xec\x88\xd7\xed\xe0\x46\xb3\x6c\x8d\x2e\x32\x20\x3c\xd3\xfb\x83\xf4\x7d\x6d\x97\xea\x71\x5c\xe8\x00\x0e\xc1\xce\xf4\x4a\xcd\x9c\x3e\xbb\xa3\x43\x80\x16\xee\x7b\x53\xa5\x9d\xe3\xa4\xef\x3b\x53\x00\x6d\x67\xcc\xe9\x9c\x73\xcd\xd2\xae\x68\xd5\x8c\x7d\x0a\x75\xa5\x0e\xb3\xc4\x33\x9a\x52\xc6\xcc\xb9\xd3\x3b\x3a\x3a\xe2\x64\xec\xf5\x5d\xc3\x52\x65\x2a\xd7\xea\x78\xf8\xf8\x25\x5a\x88\x61\x6e\xd2\xa5\xc8\x6d\x7b\x36\x9e\xff\x04\xcc\xe3\x6b\xfb\xc2\xeb\xe9\x25\x02\x96\x23\x74\x11\x12\xd4\xd2\x77\x0e\x0c\x53\x9a\x02\x3e\x7f\xa7\xbc\xbd\x45\xe4\x73\x35\x82\x79\xcd\x6d\xdd\xaf\x79\x1c\x23\x13\x55\x50\x94\x11\x48\x6e\xb9\x7d\x54\x77\xd6\x72\x15\x9e\x7e\xe6\xaa\x69\x13\x14\xb4\x80\xca\x43\x4a\x06\x36\xbb\x17\xaa\xb3\x88\x06\xd0\x31\xb3\x9f\x3e\x21\xda\xd0\x81\x85\x98\xa2\xef\xd6\x97\xd9\xdb\x95\x5e\x90\x79\x33\x0b\x0e\x49\x06\xdf\xa4\x57\xfa\x80\x82\x5a\x67\xbd\x95\x1e\x94\xf9\xe9\x31\x95\x7c\x80\x6b\xc0\x81\xf9\xc8\xf8\x64\x97\x77\xce\x87\x95\x1c\x78\x97\x52\x41\x80\x71\x4f\x80\x7b\x0b\xc5\x70\xeb\xe5\xda\xa5\xed\xe3\x9a\x40\x2c\xcc\x5b\x25\x19\x4c\x08\x9a\x4c\xf9\x03\xc2\xf4\xa5\xe9\xd4\x2c\xea\x42\x17\x37\x3b\x3f\xaf\xc9\x04\x10\x3f\xe0\xbb\x5c\x48\x2e\xfd\x4d\x9a\x0b\x97\x02\x6e\xec\xb2\x41\xcb\xf6\x69\x9d\x24\x82\x85\x60\xa8\xf5\xc6\x08\x75\xe0\x14\x27\x54\xf9\xad\x6d\x72\xbe\x98\x08\x8c\xc4\x5a\xb0\x99\xa5\x0a\x06\xce\x15\x8a\x76\x7f\x3c\x2e\x9c\xc8\x9b\x2c\x50\x24\x90\x33\x2f\xed\x8d\x5d\x0e\x10\x67\xb8\x0c\x51\xb8\x24\xa0\xb3\x0e\xff\xfa\xe7\xd1\x5a\x51\xd1\x40\x89\xe9\x40\xee\x63\x2f\xa7\xbf\x79\x39\xba\x31\x39\xde\x93\x47\xef\x6b\x36\x0b\x61\x11\xa4\x40\x26\x33\x0b\x77\xab\xe2\x9a\x4d\x93\x37\x69\x3f\x70\x64\xa4\xd2\xfb\xa7\xae\x6f\x13\x17\x7a\x8e\xcb\xf2\x32\x59\x29\x51\xdb\xb3\x70\x9d\x54\x41\x49\xeb\x71\x9d\x1f\x9f\xd4\x21\x82\x70\x74\xcd\x6e\x9e\xf7\x5f\xcd\x10\xa9\x58\xc4\x56\xed\x8e\x47\x1e\x55\x11\x42\x54\xd8\xbd\x7c\xa3\x23\x69\x88\xd4\xa8\x2e\xe0\xd9\x97\x7b\xa0\x24\xa5\x9b\x5d\xa0\xf1\xeb\xbf\xf1\xb8\xf6\x68\x71\x0f\x32\x30\x2b\x41\x54\xe3\xf7\xe5\xa2\x3b\x75\x67\x6b\x91\x9b\x8a\x5d\x7f\xa6\x57\x2e\x0f\x8a\x71\x61\xb9\x33\xcb\x35\xb5\x5b\xe2\x8a\xac\x20\xd3\xad\x98\x9f\x48\x1e\x44\xb4\xa6\x77\xb4\x0f\x53\xf2\x3c\x87\x72\xdd\xf7\x95\x0f\x2b\x4a\x90\xe0\x4c\x09\x7d\x87\xb1\x0f\xa7\x1f\xb5\x8f\x91\x13\x33\x9c\xb2\xa3\xde\x8c\x63\x53\x1d\x33\xb0\x42\xcd\xee\xd4\x70\x75\x4d\x6c\xfb\x69\x77\xe6\xbf\x8d\x55\x82\x41\x7b\xa9\x9d\x44\x9f\xe9\xa5\x4d\x9a\x42\x55\x2d\x46\x99\x88\x41\xc2\xdf\x56\x8e\x14\x17\x0d\xb1\x51\x94\x9d\x0b\x6e\x4c\x7e\xec\x4a\x99\xfd\x34\xa9\x5d\x25\x85\x1a\x8a\xfe\x5b\x0c\x0f\x9f\xd2\x54\x33\xb8\x48\xb2\xe2\x9b\xf7\xaf\xdd\xf2\xa3\xd8\x88\x55\xa2\x7b\xee\xfa\xe5\x7a\x0f\x86\xb8\x3e\x1f\x1e\x5f\xaa\xb9\x89\x94\x19\x16\xb4\x90\x7d\x2f\xcb\x4e\x9b\x1b\x34\x13\x59\xf8\x4f\x2a\x9a\x02\x0e\x22\x6e\xb4\xac\x85\x62\xf8\xe7\x3d\x32\x64\x52\x54\x85\x7f\xd5\xb7\xcc\xcf\xf7\xf0\x99\xe7\xb5\x88\xd5\x51\xc5\x6a\xa6\x8a\xed\xff\x1e\xaf\x0d\x7c\x3c\x0f\x4b\x12\x55\xee\xf5\xa7\xb4\xf4\x0a\x4c\xf9\x13\xd5\xab\xfc\xcd\xcb\x13\xa5\xbe\xab\x97\x2a\x92\x34\xbd\x63\x5b\xd2\xaa\x80\x35\xb9\x76\xd5\xb1\xe5\xba\x44\x9c\x4b\x63\xf8\xe6\x72\x3f\xbd\x30\x55\x97\x36\xb8\x35\x5f\xd6\x3b\xa2\xc3\x3e\x3d\x3f\xf9\x9c\x87\x6c\xc5\x90\x01\x38\x1a\xe1\xe6\x92\xce\x99\x34\x7c\xca\xdd\x65\x72\x9f\xf5\x93\x90\x69\xf1\xc3\x7e\x7a\x81\xdc\xb4\x5c\xd6\x18\xfa\x35\x41\x97\xa6\xfd\x8a\x6d\x62\x58\xc4\xa8\xa6\x30\x10\xeb\xdf\x51\xf4\x45\x51\x29\xe1\x7c\xe7\x3f\x77\x2a\x01\x09\xd4\x91\x1a\x1d\x3e\x7a\x5c\x27\x5d\x0a\x58\x4d\xe6\x82\x0b\xd2\xe5\x8e\xdd\x64\xc4\x10\xba\x1c\xe9\x72\x67\xc5\xf9\xf7\x29\x13\x31\x0e\x64\x69\x0d\x18\xff\xbc\x91\xdf\xd4\xbe\xc5\x90\xcd\xf9\x39\x6b\x06\x89\xaf\x89\xb9\x73\x7a\xee\xc8\x53\xc9\x72\xd0\x3a\xf4\xfc\xc7\x1c\x57\xa2\x35\xa4\xd4\xd1\xef\xbd\x3d\x67\x4c\x0a\x86\x59\xa3\xae\x90\x67\x0b\xdf\xd2\xcc\x51\x03\xd7\x27\x42\xf7\x3f\xf3\xd2\xb1\x7f\xe4\xb6\xb5\xfa\x9a\x70\x59\x4f\x12\x11\x8d\x7e\x6c\xfd\x46\xb7\x8d\xd5\xa2\x00\x62\x1e\xc7\x75\x84\xbf\xe8\x15\x30\x2c\x1f\xe2\xaf\x8f\x5d\xbe\xea\x9f\x3d\x26\x75\x1e\x90\x6a\x1e\x73\x95\xb6\xf3\x68\xc3\x15\xdc\x92\xbe\xfc\x25\xf7\xc9\xda\xdc\x0a\x80\xcf\x7d\x6e\xdf\xa0\xf8\x0e\x0b\xb8\x8f\xcc\xfc\x33\x9c\x10\xb5\xaa\xfd\xba\xf6\xe5\x2d\x02\x28\xb9\x7f\x5b\xd9\xd2\x26\x75\xb1\xe1\x13\x23\xf0\x79\x95\x10\xa5\x7f\xeb\x4c\xb9\xd3\x40\x1d\x14\x43\x8b\xfd\xab\xcb\x27\xc4\x0b\x94\x7e\x59\x79\xaa\x7e\xa9\x89\xcd\x20\xb7\x49\x5d\x80\xa3\x84\x37\x68\xe4\x44\xdc\x13\x98\xf1\x57\xcb\xf5\x1d\x10\xf5\x45\x4a\x9e\x35\xfb\x7c\xbb\xb4\x4f\xb2\x83\x04\xd2\xb9\x45\xcb\x21\xa9\x83\xdd\xe4\x9c\x7d\xaa\x24\x93\x71\x9f\x91\x92\x14\x9a\xf9\x7e\x3b\x1f\x99\x73\x5f\x9a\x94\x53\xd9\x6a\xcd\x3e\x04\x19\xb7\x05\xc4\xf7\x91\x2d\x04\x1c\xce\x5c\xc0\xd3\x1e\x8e\x1e\xe5\x8c\xd8\x5c\x79\x96\xa6\xac\x69\x73\xf4\x7b\x31\xfc\x4d\xdb\xa0\x38\x8f\x75\xe1\xb1\x64\x3e\xf9\x6c\x0a\x94\xbc\xb4\xeb\x0a\x6d\x09\x8b\x7d\x99\xeb\xf7\x2b\xfa\x76\xa6\x43\xb9\x09\x4e\x5f\xf6\xe8\xe0\x16\x96\xbf\x8b\xbd\xb8\x33\x96\x9f\xd4\xa6\x41\xfa\x18\x8a\xcd\x27\x32\x7b\x8e\xca\x8a\x2e\xf0\xc0\xe2\x4b\x48\x31\x65\x6e\x19\x9b\x6c\x41\xcf\x53\x10\x21\xd9\xc1\xe3\x2e\x16\xc1\x18\x8c\xa0\xc3\x6f\xb0\x91\xe9\x59\x82\xd0\x85\xcb\xb0\x3b\x64\x72\x1a\x93\xee\x5b\x19\xf7\x4f\x6a\x08\xdf\x78\x50\x48\x12\xc6\xef\x84\x71\x8a\xce\x85\x81\x44\x0f\xf3\x87\x0b\xe5\x5d\x87\xca\x65\xc2\x1c\x21\x1a\xdd\x97\x9d\xa4\x1c\x7d\x18\xff\xc3\xa5\xbe\x7b\xd5\x10\xb5\xb1\x18\xc5\xcc\xdc\x77\x1f\xd6\x5a\xc6\x8a\x34\x47\xb4\x29\x7f\x79\x4c\x11\xc3\xeb\xc5\x46\x82\x9e\x9e\x7e\x52\x87\xb8\x07\xb5\xc4\xd2\x2a\xd3\x75\x8e\xa7\xf3\x8b\x5d\x9f\xba\x44\x59\xbc\x8c\xff\xa6\xde\x28\x70\x71\x25\x7a\x1e\x70\xaf\xfc\xf2\xa9\x74\x05\x52\x09\xec\x32\xaf\xe3\x92\xad\x98\x2d\xcc\x53\x56\xa3\x16\x15\x3a\xe0\x4b\x33\x6e\x94\xc8\x6a\x89\xa3\x96\x1b\x7d\x39\x4f\x03\x2b\x59\xa4\x62\x35\x50\x8c\x33\xcc\x5d\xf5\xc0\x28\xb1\x15\x61\xf4\x69\xc4\x6c\xe1\xf0\xe9\x49\xa3\xb4\xcf\xd2\x14\x53\xf1\x5f\x9c\x57\xad\x68\xfc\x28\xa1\x02\xf8\x61\xee\xbf\x0e\x48\xb1\x02\x07\x31\x9f\xb8\x53\x5b\x62\x7e\xe6\x5f\x96\xc9\x5c\x9f\xc7\xe4\x87\xee\xd0\x34\xde\x90\x49\x54\xb6\x55\x06\x1d\xe5\x3b\xce\x0b\xf8\xa3\xdf\xb6\x50\xd5\x9d\xb3\xed\xc4\x0c\x69\x60\x7a\x7e\xe3\x40\xd2\xe8\x59\xa4\x56\x28\x21\x2f\x51\x36\xdd\xdb\xa5\xd6\x83\xcc\x6f\x42\x97\xb1\x4b\x33\x2d\xf2\x29\xad\x0a\x93\x95\x5f\xaf\x54\x0d\xf5\xb8\xcc\x4a\xf6\x1d\xc5\x65\xcf\xa1\x3e\xd7\xc0\xba\xa4\x94\x5c\x05\x18\xd0\x24\xa9\x69\xe1\xfc\xcd\x72\x0c\x5d\x8a\x8a\x74\x66\xc7\xb2\x20\x99\xa3\x87\x47\x2b\x1a\x08\xae\x49\x12\xc1\xb0\xdc\xfa\xd1\x12\xa7\x17\xa8\xed\x15\xba\x9d\x17\x0f\xe5\x00\xdb\xe0\xaa\x07\x86\x12\x63\xdf\x4a\x4f\xf0\x88\xd8\x94\xef\x59\xcf\xb3\xc6\x25\x18\xf6\x87\x64\xe0\x54\x56\x6a\x7b\x39\x60\x0c\x0b\x66\x57\x38\x79\x4e\x8b\x22\x5b\x3c\x22\x8f\x87\x3a\xff\x3d\x52\xd1\xd7\x34\x0c\x10\xb8\x87\x1c\xf1\x9e\xc7\x85\xb3\x34\x65\xd8\xf7\xaa\xd2\xc1\x23\xbc\x7a\x07\xbf\xf7\xae\x61\x2e\x51\x18\x44\xf9\xf5\xbb\xb5\xad\x80\xbb\x83\x3a\x76\x91\x8f\xc5\xb4\xfd\x8d\xee\x34\x2e\x6c\x7e\x8c\x1e\x21\x5b\x14\x0a\xb9\xe9\x04\xae\xe9\x45\xab\x17\x7e\xff\xed\xb4\xfa\x07\xf6\x7c\x7c\x9b\x8d\xec\x7e\xd0\xf1\x99\xef\x3e\x22\x5f\xc3\xa3\x46\xac\x20\xd2\x97\x1d\x74\x46\x99\x6b\xc7\xc0\xa1\xb5\xc3\xd4\x81\x9b\x61\x11\xa0\x4f\xed\xe1\x5f\xb9\x2b\xaa\x2f\xac\x40\xe9\x67\xe5\x5e\x39\x91\xfe\x6e\x33\x66\x14\x90\xcb\xc1\xca\x5c\xef\xfa\xa3\xca\x3a\x56\x19\xf2\x5c\x6a\xa2\xe8\x9d\x16\x69\x72\xc1\x0e\xea\xa6\xc0\x09\xe3\xcf\xb5\xbd\x53\x69\xa8\x42\x0e\x15\xbd\xd8\x3c\xa6\xd5\x50\x80\xcc\x90\x9f\xe6\x6f\xe3\x75\x59\xb1\x32\xe5\x3d\x13\xd0\x29\xd4\x6d\x0f\xa3\xc4\x3f\x31\x76\xcb\x9d\x9f\x27\x53\xfc\x32\xe4\x2d\xe0\x38\x1f\x2c\xe0\xe7\xb4\x81\xb8\x9d\x6e\xfe\xee\x2d\xf2\xf7\x7c\x6a\x63\x21\xbc\x94\x5f\xba\x41\x51\xe8\x43\x1e\xaa\x06\x8a\x48\x63\xf6\xda\x89\x5a\x21\x47\x13\xc4\xed\x05\x17\x4a\xbd\x33\x75\xb6\x93\x7d\xf7\x66\x9e\xd6\x5c\x8d\x6d\x1b\xb5\x92\x1d\x3f\x37\x31\x89\x20\xfc\x13\x54\x2e\xe7\x17\x76\x2d\x70\x1c\x6c\x0b\x24\xfb\x9a\x69\xe9\x06\xba\x8b\x7d\xe4\x36\x91\x15\xa4\x45\xe5\x32\x3f\xda\xc9\x1b\xd2\x15\x6e\x52\xb0\xb0\x47\x77\xdf\x25\x1c\x42\xce\x9f\xc4\xdc\x47\x75\x88\x0b\x31\x2c\x1e\x4a\x33\x1b\xca\x69\x48\x21\x77\x0c\xa9\xf7\x47\xdd\x98\x3c\x5e\xd6\xb0\x92\x1c\x01\xe5\xff\x6a\x5d\x3d\xb2\x8e\x3d\x0e\x64\xe5\xbc\xe2\x57\x35\x50\x3f\x0b\x24\x24\xe9\x25\x5d\x77\x1e\x20\x6b\x62\xe8\x7f\xb7\xa6\x26\xd9\x20\x9e\x5f\x0e\x44\x52\x9c\x0b\xa7\x09\x0d\x51\x5c\xc3\x08\x1e\xcf\xf5\x9d\x8a\x04\xbc\x59\x8f\x25\xbf\x07\xe5\xf5\x0d\x5c\xc5\x30\x68\xe6\xf1\xf8\xc0\x1d\x3a\x03\x0a\x34\xd1\x25\x39\x24\xff\x41\xcd\xa4\x13\xd5\x6a\x36\x0a\xbc\x58\x14\xfc\xd1\x0d\xca\xd9\xe7\xf4\x79\x18\x25\x5e\xb5\x50\x72\x3c\x90\xed\xb5\x5a\x58\xfd\x4c\x13\x7f\x14\x34\x3d\xd1\xdd\x7a\xfd\x01\x99\x1c\x45\x87\x83\x54\x12\x89\xe8\xf9\x07\xf4\x5e\x43\x15\xf3\xd4\xee\x17\xcb\x34\x5a\x22\x73\x60\xc1\xdd\x44\xf2\xbe\x2f\x3f\x4c\xe3\xc7\x71\x01\xac\x38\xc4\x7d\x70\xa8\x0e\xa2\x2c\x97\x31\x8b\xcd\x32\xda\x14\xcd\x05\xea\x60\x07\xac\x8f\xfa\x32\xb7\xbd\xa1\x19\x9c\xce\x9f\x3f\x1b\x10\x7f\x9f\x9e\x33\x56\x49\x9e\x40\x12\x59\x86\xdb\xeb\x84\x4b\x4c\xe0\x42\xe2\x66\xf2\xe2\xe3\x9f\x5e\x9e\xa0\x7d\x39\xcf\x6f\xe2\xba\x02\x5d\x0d\x7f\xb9\xfd\xfd\x32\x05\x88\xae\x50\xde\x90\x6a\xa9\x7d\xa6\x9c\x9b\xf4\x0f\xcb\x09\x57\x1a\x3f\x3e\x7d\x46\x3f\xf1\xb4\x2a\x8a\x9a\x5e\x4d\x41\x00\xb9\x4d\x87\x0a\x04\x7b\x6e\xfd\x7a\x71\xac\x49\x8f\x6f\x15\x8a\xa1\xb7\x21\xd1\x3f\x16\x7d\xae\x42\x31\xfc\xf8\xc9\xa1\xa9\xe6\x0f\x2a\x14\xc3\x0f\x3e\x2e\xcb\x40\x83\x30\x23\x70\x00\xc3\x04\xb7\xd6\xac\x37\x55\xe3\xdb\xe8\xc3\xc2\xe8\xaf\x2f\xf3\x5c\x7e\x8c\xb6\x2e\x65\x1f\x73\x25\x9e\xcc\x89\x55\xf2\x86\xb8\x4d\x04\x99\xcc\xc7\x34\xdb\xee\x12\x6e\x10\x9b\xb7\xdf\xb8\x9d\x5c\xe9\x2c\x8f\x42\x8b\x09\x83\xc2\x11\x52\xcb\xa5\xdb\x65\x26\xe0\x35\x41\xdf\x9d\x06\x5c\x9c\xa6\xf4\x8c\x44\x44\x7a\x3e\x6e\x70\xf0\x9b\x1c\xe6\xae\x9c\xa6\x40\xbf\x02\x9f\x20\x06\x90\x58\xfb\xae\x24\xe5\xaa\x17\x60\x07\xbe\x7f\x4a\x3a\xd2\x79\x34\xa8\xf5\x33\x30\xc8\xfd\x68\xac\xee\x20\x85\xaa\x5c\x3c\x2c\x7b\x7d\xa8\x7b\x09\x51\x5b\x20\xf7\x9e\x98\xd4\x62\x9a\x5b\x26\x49\x76\x9c\xfb\xce\xf3\xfc\x5b\x17\x19\x72\x2b\x51\xf5\x1d\xad\xd5\xab\xa7\xb4\x5e\x47\x61\xc6\x1c\x31\x00\xce\xad\x3d\x97\x44\x7d\xa7\xa9\x02\xa8\x71\x4f\x92\x19\x91\x54\x5f\x2d\x78\x85\xe7\x3a\x8b\x99\x4b\x6d\x15\x20\x98\xb5\x39\x40\xfe\x7a\xe4\xf5\x36\x8d\x6a\xab\x68\xf3\x8d\xcf\xc9\x6b\xbd\x12\x30\x17\xc3\x98\xb0\x67\xd7\xc8\xb8\x49\xb4\x36\x55\x18\xfe\xf0\x90\xd2\xa9\x8d\xee\x12\x08\xeb\x76\xbb\xe2\x4e\x1f\x7d\x00\x30\x32\x96\x84\x8a\xbe\xcc\xdf\xc7\xaa\x45\x53\x9d\xda\x75\x9e\xda\x7e\x73\x95\xa6\x72\x1d\x8b\x36\xc6\xa1\xd0\xd5\x7a\xa3\x3e\x65\x7e\x40\x83\x78\x12\x99\x9f\x7f\x41\x22\xb9\x83\x59\x5d\xbc\xdb\xd6\x59\x4a\xd7\x83\xd1\x1a\x65\x7c\x28\x1b\x7d\xb5\x5b\xf6\xa8\x8a\xf5\xc0\x03\x93\xeb\xe8\x9e\xbe\x22\x1d\x9a\xa9\x51\xc5\x65\x6c\xdb\x98\xf5\x37\x5a\xce\x1a\xfb\x95\xca\xcb\x2e\x61\x0e\x72\x58\xb9\x34\x55\xdc\xae\x5a\x75\x05\x9c\xfb\x14\xa4\xf3\xbf\x57\x49\xdb\x54\xaa\xf2\x29\x87\xcf\x1a\x22\x32\x75\x17\x22\x7b\xf4\x82\x9b\xec\x98\x68\x47\x5c\xc4\xdd\xcf\x58\xf6\x7d\xda\x3d\x46\xdd\x2a\xf1\x71\x0a\x02\x92\x0f\xc6\x8e\xd3\x6e\x22\x20\xa5\xdb\xa4\x57\x44\x94\xec\x7d\xda\x55\x45\x5c\xe2\x48\xf4\x4d\xf3\x15\x45\x9a\x86\x18\x55\xac\x2c\x56\xf6\x85\xe5\x4a\xfa\xe8\xd2\x46\x89\x46\xe7\xb3\xd8\x97\x09\x17\x8c\x94\x42\x56\xaa\x65\xe9\xbc\x7b\x95\xae\x9b\x40\x98\x40\x71\x31\x62\x5a\x0b\x80\xc8\x67\xc8\x4b\x5a\xe4\xb9\xcb\x5f\x55\x7a\xf3\x3e\xc3\xc0\x9a\x1f\x75\x4e\x95\x61\x11\xb2\xf9\x85\x62\xb8\x55\x33\xe4\x04\x55\xb7\x34\x36\xe6\xaa\x67\x64\x76\x11\x85\xc2\xb8\x01\x18\xba\xc7\xb4\xdb\x08\x39\xa8\x92\x74\xea\xd7\x6a\xe6\x95\xbe\xc5\x30\xf2\xb1\x1c\x70\x64\x37\xef\x19\xa6\x34\xa5\x2a\x15\x7e\x40\xde\xb5\x42\xb7\x7a\x75\x90\x6b\xca\xbf\xfa\xde\xeb\xe3\xf4\x0b\x1f\x45\x35\x49\x8c\x22\xc8\x66\x1e\x4b\x7f\xac\xce\x59\x92\xf6\x17\x0e\xdc\xa1\x61\xf5\x89\x49\x19\x49\x63\xf5\xb3\x73\x07\xb7\x60\xf4\x1c\x45\x27\x33\xb3\xd4\x4a\x57\x1a\x35\x2c\xec\xbf\x7e\x78\xaf\x36\xf0\xb1\x68\x23\x86\xe1\x65\x9f\xd9\x71\x69\x3f\x8f\x40\x89\x18\xd9\x8f\x6f\xd6\xea\x71\xc4\xcc\xa8\x44\x15\x29\xd7\xc7\x9e\x54\x5a\x5a\x24\xbe\x20\xaf\xd1\x34\x2f\x67\x74\x0a\xfb\x9c\xed\x8c\x17\x52\x37\xfa\x0c\x29\x1e\x77\x99\x4f\x5d\x7e\x09\x47\x25\x9b\xb4\xe1\x0a\x50\xb2\x6c\x99\xef\x5c\x21\xf3\x34\xcf\xa1\x82\x4b\x99\xe9\x5b\xae\xd8\xb5\x35\x30\x67\x96\x4e\x58\xaa\xe0\xb1\x02\x35\xca\x66\xc2\x53\x53\xd3\xe7\x7a\xf5\x15\xd7\xf5\xdf\xf8\xeb\xcb\xec\x9b\xc8\x73\xe6\x5e\x0a\x33\xab\xec\x00\xc5\xc4\x24\x36\xbe\x82\x2f\xd4\x2b\x4b\x83\xe8\xa2\x2f\x90\x28\xa8\x12\x81\xae\x7f\x22\x9b\x7e\xb2\x1e\x76\x7d\xc1\xb1\x04\x96\x20\xdc\xaa\xe3\x06\x68\x82\x5d\x81\x87\x03\x47\xd4\xf2\x97\x6e\x4e\xce\x62\x15\xab\x06\x59\x03\x75\x31\x36\xd7\x60\x18\x79\x09\xd0\xad\x7e\x4a\xd1\x3b\x08\x52\x96\x09\x1d\x1a\x27\xd4\x20\x89\x2b\x52\x5f\x3e\x5b\xd7\x5c\x8c\x2c\xe4\x26\x24\xf6\xf4\x6d\x6b\x4d\xd7\x5b\xa0\x35\xe4\x0a\xb1\xd1\xcc\x7f\xe8\x76\x06\x82\x8a\xc8\x1b\xa4\xc7\x37\x2b\x06\xa4\x16\x36\xaa\xd1\x5a\xee\x5b\xa5\xa1\x0b\x48\x9d\xd8\x24\xb6\x76\xcf\x3e\xd9\xc1\xb3\xa7\xe5\x98\x5b\x6b\xe5\x07\x9e\xeb\x17\xb6\x9a\xe0\x27\x07\xaf\x6c\xb5\x69\x89\xd5\xd9\xe1\x68\x3c\x5d\x4a\x7f\x81\x99\xf3\xa6\xcf\x9d\x3b\xb7\x70\xc5\xe4\xe8\xd5\x9b\x6b\xb4\xb1\x96\x49\x6d\xec\x19\x60\xdf\xc1\x97\xea\x96\x52\x32\x93\x66\x51\x54\xd7\xa8\x14\x86\x8d\x88\x23\x50\x1a\xd9\xbf\xf5\xf0\x7b\x6e\xee\xbc\xb9\x85\xce\x8e\x8e\x0e\x80\x30\x5d\x76\x3e\xfd\x85\xa1\x99\x28\xfb\xd6\xa3\xef\xd4\xad\x93\x88\xd0\xf6\xc8\xfc\xfa\xb4\x56\x0e\x23\x17\xec\xb7\x80\x42\x76\xf8\x9e\x94\xdd\x28\x2e\x43\x64\xfc\xc4\x93\x02\x04\xd1\x39\xbd\x63\x46\x07\x90\x84\x36\x6d\x91\x28\x10\xec\x5b\x2e\x31\x94\x12\xf5\xe7\x83\x5b\x62\x7a\x19\x33\x90\x53\xe3\x65\xcc\x83\x1a\x04\x6e\x46\x61\x56\x7c\xeb\x5f\xb5\x40\xa1\x4a\x96\x82\x12\xaa\x72\x98\x62\xb8\xb5\x05\xca\x62\x13\x53\x84\xe7\xf0\xcf\x2f\x4b\xe0\x7e\x13\x31\x38\x1c\xef\xaf\xcb\x91\x4b\x19\x08\x09\x3e\x6e\x1d\xb8\xf5\xac\x1b\x14\x5f\x4a\xd0\x55\x0a\x2f\xdd\xa4\x6b\x31\x46\x65\x50\xcf\x44\x7e\x37\x77\x21\x66\x23\x97\xd6\xa3\x37\x18\x70\xcf\x10\xb1\x50\x81\x2f\x58\xe5\xd9\xef\x85\xc3\x53\x0d\x34\x7e\xb5\x7c\x7a\x89\x42\xd6\xa0\xd1\x29\x86\x3b\xf6\x5b\x0a\xc5\x3d\xc1\x34\x14\xfb\x32\x73\x47\xcb\x4f\xce\x88\x61\x95\xc1\x3d\x56\xff\xe4\x6d\x47\xf5\x62\xb8\x6c\xc7\xcd\x44\x78\x99\xbf\xbe\x21\xf5\x19\x40\x9a\x2b\xa5\x4a\xb7\x7e\xa2\xa6\x2e\x88\x5d\xfd\xe6\xc8\xac\x7d\x27\xb6\x0a\x2f\x63\x48\x1f\x0a\xc5\xf0\x33\x59\x61\x76\x05\x82\x0e\x1f\x6c\x52\xf0\xd3\xcf\xdf\xbe\x39\xf1\x55\x9b\x07\x60\xc9\x7d\xe7\xf9\xa6\xf1\x79\xd7\x04\x06\x55\x4f\xc9\x6e\x66\x05\x45\x7f\x0e\xab\xd3\xbe\x20\x9d\xa2\x53\xe6\xf7\x37\x43\xcb\xfd\x61\x73\x1b\x8f\xf4\xb5\xc0\x35\x5a\x28\xdf\xb9\x1f\x3d\xc9\xfb\xbb\x37\x5f\xb3\xb2\xeb\xc6\xeb\x94\x88\x9c\xcf\x0e\x97\xed\x79\x18\x44\x60\xa6\x08\x64\x0b\x55\xcf\xe3\xfb\xb8\xbf\x4c\x11\xbe\x4f\xa6\xb1\x7b\xa8\xd2\xe1\xad\x70\x91\x88\xb1\x87\x75\xe5\x4f\x3f\x4e\x30\x8a\x7d\x99\x4f\x1e\xd1\x68\x4a\x18\xfb\x7c\x7b\xee\xed\xe0\x9b\x6c\xd6\x9c\xe9\xb3\x3b\x67\x47\xcb\xd5\xf3\xce\x88\x24\x7b\xe2\x83\x74\x8e\xf0\xba\xfa\x76\xbe\xba\xc8\x29\x21\xcf\x43\x26\x1f\xd3\xe7\x26\x09\xff\x29\xdc\x53\xc3\xae\x29\x4c\x8c\x73\xf5\x77\x2e\x16\xe5\x31\xea\x81\x5f\xfb\x84\x22\xd6\x65\xd8\x51\xc1\xc1\x79\xc6\x37\x85\xa3\x15\x79\xa6\x1a\xe2\x61\x1b\xfe\x64\xd6\x1b\x4a\x3a\x14\x94\x3c\x1f\xb9\x5c\x42\x32\xf3\xf7\x67\x2f\x6d\x49\x10\x3d\x9f\x91\x04\x28\x9e\x33\x96\x4d\x70\x15\x6d\x30\x2f\x68\x85\xe4\xe4\xfe\xeb\x44\x5c\xa8\x16\x1a\x94\x55\x79\xd6\x97\xfb\xe4\xc5\x82\x1e\x0e\xc2\x0e\xf1\xdd\xff\xb5\x97\xfb\x29\xed\xf9\xf7\x1f\x38\x5c\xa9\x6c\xb1\x51\xe5\x88\xff\x97\x06\xcb\x0f\x5f\x70\xa8\x4b\xfc\xd8\x09\xe9\xcf\xa6\x82\x7f\x29\x05\x1e\x8e\x9e\x02\x1b\xad\xd6\x06\x25\x1b\x3b\xf1\xf1\xde\xbf\x95\xaf\x24\xa3\x08\xd8\xa7\xb9\x3f\xbd\x28\x6f\x99\xf9\x05\xc2\x78\x7f\xfa\xc0\x7d\xfc\x3c\x80\x66\x7a\xc0\x77\xef\xa3\xb3\x94\x0c\xc3\x6f\x17\xb5\x6d\xee\x37\x8a\x22\x56\xe0\x96\x90\x1d\xad\x2b\x97\xbc\x3f\x28\x1f\x52\x83\x76\x1b\x04\x43\x5e\x9f\x5d\x3d\x50\x57\xcc\xf3\x2d\x6a\xc6\x83\x96\xdb\x47\x8e\xd4\x4e\x3b\x70\x5f\xc2\xb2\x2d\xbf\x68\xf4\x1f\x78\x74\x1f\xdb\x28\x7d\x3a\xed\xba\x12\x99\xff\xdd\x6a\xc1\x9b\xa0\x28\x2e\xc6\xa9\xe0\x5b\x8f\xb6\x58\xe4\x09\x85\x81\xdc\x9f\xf7\xf3\xe3\x75\x5d\x89\x21\x8b\x38\x4a\x3e\xf1\x7f\x6f\xa8\xba\x9a\x0c\x99\x04\x88\x48\xb9\xd7\xcf\x24\xc5\x38\x46\x41\xf4\x2f\xd5\x17\x06\x2b\xdd\xd4\x1e\x68\xbc\x69\x47\x0a\x06\x02\x51\x72\x0a\xd7\xec\xac\x67\xdb\xe4\x3d\xd9\x6c\xd9\x5c\x3f\xbe\xf7\x12\xa5\xeb\x6a\xa2\x14\x5c\x22\x77\xdd\xf6\xf4\x95\x31\x6f\x76\x87\x80\xe5\xc1\x81\xff\xf0\x93\x8a\x16\x1a\x8e\x5b\xa3\x99\x0b\x4b\x4a\x27\x17\x11\xbb\x22\x3a\xb9\xcd\xe3\xe9\xb2\xcb\xa2\x7e\x92\xdc\xc8\xf7\x7c\xcb\x4f\xb7\x81\x2a\xb4\xc6\xe7\x7b\xe9\xea\xf1\x3f\xce\x6a\xf9\x07\x66\x5e\xc0\x87\x95\xdc\x1d\xb1\x7e\x91\x38\x1f\x66\x14\x73\x17\x6d\x57\x98\x0d\xb4\x02\x2a\x80\xb9\x5f\xbc\x34\x51\xcd\x49\x6f\x5a\xdd\x8f\xbc\x53\x7e\xf0\x49\x55\x5b\x1c\x35\x79\x94\xa9\x2a\x16\xea\x0d\xc2\x41\x57\xd9\x69\x6f\xf3\xf7\xec\xb2\x10\x01\x2c\xe8\xdb\x9a\x3d\x38\xb2\xcb\xd1\x07\x35\xe2\x89\x49\x5f\xbe\x73\xb3\x66\x84\xe2\xd4\x2c\xe0\x43\xd9\x52\xbb\x3f\x7f\x94\xdf\x92\xd7\x44\xe5\x81\x68\x2a\xfe\xfc\xd0\x04\x2d\x8e\x32\x9f\x44\x95\x18\x83\xbf\x83\xe0\x32\x7b\x80\x1c\x30\xb9\x2d\xbc\x99\xfc\xa6\x91\x7a\x23\xcd\xf3\x39\x66\xe8\x8b\x9d\x7a\x7a\xeb\x63\x06\xd4\x1c\x9e\x17\x8f\x3a\xab\xd4\x69\xe0\x94\x15\x7d\xdb\x87\xc3\xc9\x7a\x86\x0f\xb9\x54\xcb\x9e\x3b\x71\x3b\x8f\xdc\x26\xf1\x28\xab\x20\x97\xf4\x42\x18\xf8\xde\x14\x1e\xb8\x29\x23\x31\xda\x08\xb8\x3c\x13\x75\x03\xc4\x40\xe9\x98\xe7\xce\xaf\x1f\xac\x8a\x08\x14\x8a\xe1\xd3\x2f\x2a\xe6\xbe\xae\xb8\xad\x78\xb4\x9b\xb4\x62\x44\x7c\xc6\x92\xd5\x2a\x14\xc3\x67\x6f\x1f\xaa\x90\x67\x6d\xee\x41\x31\x69\x97\x26\xf8\xa2\xca\x94\xf3\x8a\x76\xfc\x83\x8a\xed\xa1\x10\x6a\xce\x94\x26\xf1\xaf\xb1\x98\x03\x3a\x13\x3f\xd7\x7b\x27\xeb\x19\x5d\x85\x61\x50\x74\x14\xf8\x22\xd1\xd2\xbb\xeb\x31\x79\x7a\x4c\x16\x38\x25\xe8\x97\x87\xd3\x16\xb4\x68\x4d\x53\x56\xa3\x1c\xe0\x0b\x27\xfd\x09\x91\xa2\x83\xa8\x49\xf4\x0f\xdb\xb7\xb4\x9a\x8f\xbb\xd4\xa1\x31\x11\x26\xbc\x76\xed\x30\x39\xb6\x47\xfc\x03\x84\x37\x09\x54\x66\x39\x4a\x4b\x3c\x1f\x72\xc7\xcc\x87\xea\x7a\x8c\x71\x29\xec\xe2\xe9\x85\x62\xb8\x7e\xb0\xd2\xfb\xe6\x69\x62\xcc\x10\x3c\xbf\x5f\xae\x50\x21\xde\xbb\xdf\xdc\x29\x4f\xd4\xd4\x98\x3c\x3b\x6c\xa0\xd2\x79\x65\x88\xe3\x0a\xae\x57\xa8\xe1\x5e\x60\xdb\xa4\xce\x55\x83\x17\x69\x20\xd1\x52\xbb\x58\x41\xd1\x72\xfe\xd4\x3a\xd9\xc3\x2a\x13\x13\x2b\x58\xa4\xec\xb9\xf3\x6d\xca\x47\x6a\x69\xf3\x3f\xa8\x38\x31\x79\x16\x0d\x62\x3e\x51\xf6\x61\xdd\x56\x2f\xa9\x74\x0e\xca\x4b\x11\xf7\xa0\xd8\x32\x38\x3a\xdd\x8b\xde\x12\xbd\x27\x83\x61\x51\x22\x9f\x2d\x4b\x77\x25\x54\x4e\x5b\x7d\x5e\x28\x97\x60\xe6\xf4\x79\x60\x6d\x90\xfd\x9f\xf5\xa3\xd5\x53\x75\xc3\x52\xd1\x0f\x2b\x86\x5d\xcf\xf2\xcd\xac\xe0\x10\xda\x0b\xc5\xf0\xff\x1d\x1f\x95\x02\xbb\x22\x43\x24\x3b\x99\x5d\x47\x74\xdb\x60\x90\x54\xe3\xbb\xc7\xeb\x19\xab\xa4\xdd\x51\x9a\xa1\xda\x61\x48\xd7\xea\x5a\x50\x56\xf2\xc2\xb2\x62\x25\x63\xe3\x12\xa0\x31\xa2\xb7\xa2\x79\xf9\xdc\x4b\x8c\xba\x3d\x85\x62\xf8\x47\xa5\xec\x74\x08\x63\x94\x45\x97\xef\x5e\xbd\x4f\xee\xe2\x18\xe9\x7b\xc3\x6a\x7d\xcb\x9b\x38\x4a\xde\xe2\x61\x55\xe8\x6c\x1d\xa2\x24\x6b\x9c\x13\xf7\xd0\x42\x8d\x46\x20\xba\x76\xf1\x99\x2d\x4c\x9a\xa4\x14\x12\xae\x5f\xa1\x0e\x6e\x95\x1e\xca\xfe\xbd\x96\x7c\xe3\x6a\xa0\x0e\x0f\xcf\x0e\x1c\x52\x22\xc8\x2b\x74\xb1\x00\x0b\xc7\xf6\xfc\x22\xb5\x9f\x8f\x03\xe8\x59\x7c\x7b\xac\x24\xe4\xfb\xd4\x21\x9e\x8d\x94\x34\x22\xb3\x6f\xb7\x96\x07\x33\x6a\x60\x4f\x70\x1d\xb2\x15\x5f\xe1\x61\xd2\x66\xd0\x5b\x28\x86\xe7\x77\xf3\xcb\xc5\x0d\xcc\x28\xca\x7d\xe1\x4a\x01\x0b\x02\x5b\xad\xe8\x9b\x4f\x3f\x24\xd8\x75\x9e\xc1\xbd\xb7\x32\x0f\x6c\x55\x10\x29\x94\xb8\x06\x81\xa9\x4d\x38\xe7\x0d\xa1\xf7\xd1\x20\x7e\x2f\x06\xcc\xaa\x38\x85\xb5\xdd\x97\x28\x54\x21\xcf\x47\x15\x9c\xe8\x67\x85\xff\x3b\x49\x1f\xb8\xf3\xe9\xbf\x21\x44\x3b\xf2\x1f\x7e\x21\x71\x40\x33\x82\x74\xad\x34\xfe\xa0\xdc\x28\x9d\x1d\x90\x45\xc0\x94\xe2\xb5\xb1\x8a\xce\x05\x2a\x71\x2b\x92\xf9\xe3\x5a\x34\x21\x1d\xe4\xc6\xea\x02\xbf\x3b\xa3\x1a\x7e\xda\x26\x89\x32\x62\xfe\xf1\x97\x6e\x52\xf8\x38\x01\xc3\x28\x30\x18\x4c\x1b\xb3\x8d\xed\xba\xc2\x39\xf2\xfb\x31\xa0\xcf\xdf\xaa\xf1\xa2\x2c\x54\xc7\x05\xec\x82\x8e\x65\x19\x19\xbe\x77\xc5\xd4\xa9\xd1\x62\x5f\x32\x91\x0f\x0d\x96\x31\xe4\x76\xab\x18\xfc\x0f\x68\xb8\xdf\x12\xb6\xb0\x1d\xab\x82\x7e\x41\x33\x90\xf6\x9a\x4e\x89\xda\xc9\x6d\x0f\x81\xe6\xca\x90\x27\xf6\xab\xa9\x8a\xf2\x9e\xb9\x52\x76\x7f\x1d\xc3\x40\xcc\x17\xd3\x86\x5b\x96\xea\x35\xac\x8f\x59\x59\xce\x8d\xb2\x54\xd2\xc4\x6a\x08\xc0\x9f\x4f\xac\x1d\x22\xca\x00\xe2\x47\xeb\x00\xd3\xa5\x43\xe9\xac\x8b\xd0\xfe\xec\xc9\x32\x7f\x17\x12\xf6\x4e\x90\x38\x3b\x66\x5f\xbf\x5f\x39\xd7\x41\x05\x95\x20\xd9\xa3\x27\x47\x2a\xd9\x3b\xc3\xc8\x26\x9c\x45\xf5\x6e\x0d\x46\x55\x09\x10\x43\xae\x8f\xb1\x10\x49\xc8\x5f\x2b\x2a\x89\x8a\x1d\xc0\x57\xcc\x4f\x12\xea\xc3\x8b\x53\xb4\xb6\xfc\xd4\xfb\xb4\x29\x90\x4d\xa9\x00\x3d\x7f\x81\xdb\xc8\x16\x56\x53\x9b\xf0\x99\x1c\x5c\x27\x77\xe5\x55\x4b\x16\xdf\xb7\xf9\x3d\x49\x14\x41\x13\x2f\x0a\x99\x51\x4e\xe0\xde\x95\xce\x8e\x88\x8f\x1d\x11\x2a\x7f\xb2\x41\xe3\x75\xd8\xa8\x61\x73\x10\x1d\xd0\x63\xe7\x8c\x52\xd1\x39\xb1\x5a\x60\xb1\x2f\x7b\x4d\x87\x66\xa4\x65\xd3\x12\x9f\x25\x64\x88\xd0\xd9\x11\x7c\xc5\x42\x31\xdc\x24\x0c\xa7\x6c\x52\xc6\x51\x5c\xdf\x79\xe7\x45\x22\x38\x37\xb9\x3f\x01\x53\xdd\xe6\x14\x47\xa5\xec\xad\x72\x92\x0d\xb6\xbc\x7a\xea\xfc\xd7\xbc\xe4\x38\x76\xe3\x06\x69\x45\xda\xe5\x3f\xf5\x80\xac\x4b\x63\x3f\x5d\x4d\xce\x60\x6a\xa7\xa2\x2e\x48\x4b\xa5\xa6\xc0\xbf\xbc\xe7\xb8\xe2\x69\x81\x5d\xa8\xde\xff\xc0\xa6\xe8\x91\x3c\xca\x8e\x9a\xfd\x30\xcf\x8c\xc9\xe9\x2a\x6d\x4e\x87\xd8\xc7\xbf\x5d\x91\xbe\x80\x49\xac\xa4\x97\xb9\x40\xc3\xab\xdb\xa0\x98\xa6\xf2\x3f\xf6\x8c\x54\xd2\x3e\x52\x8b\x19\xaa\xd9\xab\x5e\x52\x9f\xbc\x0d\x48\x94\xf0\xb4\x2f\xab\x1a\x64\x20\x13\x3b\xd1\x7e\x98\x76\x58\x21\x79\x22\xbb\x5c\x23\x35\x4e\x2a\x9a\x7d\xbf\xca\xe4\xf4\x7c\x14\x30\x2e\x67\x36\x69\x99\x7c\x40\xd0\xfd\x74\x3d\xe1\x25\xf6\x91\x55\x7a\xe6\x5d\x8f\x41\x96\xab\x36\xcb\xec\xc4\x6b\x95\x63\x7a\x65\xbd\xa4\x20\x02\x28\x78\xcc\x03\x3c\xe8\xbb\xd4\x17\x9c\x8b\xe2\x9d\x0a\x2d\x14\xb6\xdd\xfc\xa5\x3a\xb3\xc3\xb6\x31\xaa\x04\x38\x96\xcb\xcc\x0f\xee\x55\x24\x94\x81\x2b\xdf\xaa\x14\xd2\xab\xda\x64\x70\xa7\x93\xe8\xed\xd6\x96\x5a\xfa\xc0\x90\xd7\xc6\x54\x87\x7f\x5a\x25\x22\x06\xf1\x89\x28\x04\xb3\x7f\x5b\xa8\x6e\x5d\x9f\x11\x27\x91\x4b\x98\x96\x7e\xb5\x3a\xb1\x6d\x54\xc1\xb1\xc9\x64\x76\xff\x60\xd9\x91\xb7\x94\x60\x90\x59\x76\x52\x49\x38\x90\x07\xde\xaa\x19\xb6\x33\x5d\x70\x56\xb1\xeb\x62\xdf\xd2\x5a\x74\x53\x86\x6a\x33\x1a\x64\x23\x26\xf0\x8b\xd9\xb3\x2b\xa5\x4b\x0c\xcc\xc7\x2e\x5a\x37\x56\xfb\xbe\xc4\x48\x26\x6d\xf7\x28\x2e\xf8\x1e\x2a\x73\xff\xc1\xcc\xc9\xf5\x69\x4c\xaa\x0d\x8a\x38\x99\x25\x9a\x43\x96\x83\x58\x85\x70\x32\x5f\xe6\x8a\x3c\x6f\x15\x5c\x8b\x18\xc3\x2a\x4d\x32\xe7\xfb\x02\x06\xb0\xe6\xea\x6b\x56\x5d\xb3\xf8\xa3\xeb\x0a\xc5\xf0\x92\x15\x2d\x96\x77\x01\xb1\x4d\x3e\x60\x9f\x3e\x54\x72\x26\xb0\x8d\x0d\x9f\x01\xd5\xca\xc1\x9e\x87\x2a\xe2\x1c\xec\xd8\x34\x54\x24\x44\x26\x66\xae\x20\x88\xb4\x09\x81\xc8\xab\x29\x73\x39\x70\x32\x7d\x52\x7f\xf5\x60\x22\x72\xc0\x38\x1a\xe2\xa2\xf3\xb2\x39\xe1\x31\x28\x81\x73\xa7\xb5\xe1\x1c\xd8\xbe\xa2\x20\xd6\xcd\xcb\xdd\x21\xc8\xf4\x2e\xf0\x93\xc2\x41\xcb\xe4\x36\xc3\xd0\x7f\x03\x6b\xab\x7d\xa6\x86\x8b\x42\x89\xf7\x63\xf6\xe3\xdb\xe5\x9c\x15\x6e\x3f\x03\xd7\x7c\xee\xe6\xd0\x97\xff\xb8\x26\xe9\x5b\x09\x30\x63\xd1\xa6\x12\x6e\xf2\x53\x87\xca\x9d\x0f\x02\x93\xad\x2d\x92\x17\xda\x95\x49\xa9\xc1\x88\xe3\x20\xae\xa4\x76\xdb\xf1\xb4\xd6\x68\x5c\xcd\x45\x1f\xf8\x3f\x4f\xc8\x73\x5c\x66\x04\x9b\x4e\xca\x05\xf0\xb2\x37\x92\x6d\x55\x82\x9e\xf9\x9a\x07\xf9\xad\xef\x62\x52\xb1\x4a\x94\xf1\xb3\x7c\xa3\xc2\xd1\x09\x5c\xf0\xa7\x15\xc9\x7c\xfe\x23\x2f\x6a\x7d\x28\xea\x60\x98\xfd\x73\x1c\x6c\x6e\xfc\x22\x29\x3c\x32\x6b\x06\xa8\xb5\x8c\xd5\x95\x50\x0c\x0b\xc7\x5a\xda\x99\xaf\x30\x8d\xa3\x83\x44\x5a\x17\x56\x5e\xd3\x67\x11\x01\xf3\x19\xa5\x0e\x3f\x94\xe1\xe6\xe7\x93\x33\xc9\x7c\x75\x4a\xb6\xec\x0e\xd9\xbd\xba\x2d\x28\x14\xc3\x7f\xde\x24\xf3\xf5\x2a\x61\x51\x32\x92\xbf\xf1\x45\x7e\xcd\x35\x11\x83\xbe\x61\xe6\x58\xe7\x30\x69\x34\x17\xeb\x5e\x66\x2e\x3d\xa6\xe4\x3f\x01\x03\x60\x0c\x3c\xe0\x01\x8b\x04\x40\xa4\x26\xea\x4e\x08\x13\xa1\xfc\x6d\x86\x3d\x62\x62\x40\x97\x85\xbd\x8a\x44\x31\xb2\x63\xa3\x06\xee\x9c\xbd\xfc\x21\x25\xe7\x06\x01\xf6\x62\x5f\xf6\x82\x73\x23\x94\xaa\xc8\xa8\x22\x3e\x93\xce\x65\xba\xb4\x3d\x17\x53\xd7\x0b\xc5\x70\x6c\x4d\x95\xc5\x16\x32\x95\x9a\xd0\xdc\x8c\x39\x9d\x60\x5c\x2b\x50\x6d\x47\x3a\xfa\xb3\xd2\x33\x85\x84\xcd\xb7\x43\x8e\x57\x5c\xcd\x50\xdd\x6c\x61\xd1\xe5\x07\xcd\xd1\x95\x4a\x4c\x61\x7b\x5d\xec\xcb\x6f\x3a\xc3\x8b\xc4\x2e\x16\x74\x13\xdb\x4e\xd4\x15\xbc\xd3\xe9\xed\x93\xf8\xa9\x08\xe9\xbb\x9b\x34\xb7\xe6\x32\x61\x18\x20\x15\xa2\x75\xf0\xbb\xfb\x75\x29\xed\x32\x0c\xa8\x44\x65\xf6\xcd\x95\xba\x7c\x5f\x6c\x5b\x91\xb9\x6c\x97\x4c\xc2\x6c\x6a\x8a\x10\x94\x9b\x7a\x5a\x39\x65\x51\x61\x41\x7c\x90\x0e\x7f\xcd\x1d\xa6\x0e\xc9\x2b\x16\x28\x85\x2e\xd2\xa6\xb6\x5c\x1a\x9b\xf7\x79\x6f\xd6\x28\x0e\xb4\x56\xa3\x9e\xf4\xb4\xfc\x7c\x9b\x26\x1e\x11\xab\x3f\xf6\xe5\x6e\x68\xe3\x7b\xc9\xc4\x5e\x2d\xc6\x9f\x66\xbe\x72\xab\xa6\xa3\x43\x6c\x01\xfa\xcb\x96\x14\x6e\x0b\x72\x0d\x8b\xcf\x41\xf2\xc1\xe4\x84\x19\x5f\x72\x5a\xac\x4f\x73\x77\xaf\x96\xdf\x68\x66\xa7\xb0\x30\xcc\xde\xbc\x8f\xc7\xc1\x72\x60\x47\x9b\xe8\xc2\x91\xa3\xe2\x37\x4c\x7b\x20\x64\x16\x2d\x91\x22\x84\x34\x11\xba\x1f\xfb\xb8\xdc\xa8\x33\xda\x67\x77\xc4\x17\xea\xbf\xbc\xaa\xe0\xad\x09\xf3\x7c\x46\xaa\xd0\x5a\xa6\x47\x79\x4e\x74\xa3\x85\x54\xc1\xfa\xbe\xcc\x73\x5b\x34\x1d\xdc\xa9\x25\x46\x70\xda\xb5\xb3\x2f\x37\x79\x8d\xc6\x6a\x0b\x2a\xc9\xf4\x7b\xfc\x91\x36\xf5\xce\xd4\x4b\xeb\x1f\x5c\x3c\x5a\x42\xd4\x9d\x54\x95\xf8\x61\x45\xe5\xb5\xcc\x4d\x55\xa3\x60\xba\xff\xa5\x41\x22\x04\x8a\xbe\x52\xf6\x95\x59\x1a\xc8\x13\xd4\x40\x63\x19\x84\x3b\xb7\x89\xa1\x1b\xb7\x25\x83\x9a\xf7\xc3\x65\x38\x95\x36\x76\x0b\x73\xe2\x4e\xd7\x7e\xd5\x72\xc3\xad\xa3\x58\x7a\x30\xfb\x85\xfb\x27\x28\x2c\xe8\x32\x76\x3d\xdd\xb2\x3b\xfc\x9b\x66\xfe\x60\xb2\xc0\x15\xde\xda\x99\x9b\x96\x26\xd1\xdd\x23\xd1\x71\xf8\xd1\x61\x7e\x9d\xdf\x80\x3c\x83\xab\x5a\xc5\xeb\xf8\x89\x8d\x71\x2d\x86\x3c\x9f\x57\x48\x99\xae\x6d\x0a\xb6\xdb\xa5\x25\x1b\x05\x30\xdf\xc8\xaf\x9d\xa5\x99\xbb\x50\x14\xeb\x46\xe4\x17\x77\xa6\xfb\x8b\x15\x86\x71\xb5\x60\x34\x6b\x8c\x50\x5f\x51\x38\xc9\xdd\xb4\x54\x86\x2e\xdf\x22\xb0\xd2\x9e\x2f\xac\x92\xc7\xdc\x3b\x5a\xf9\xe2\x20\xcd\x1b\xc7\xd4\xb5\x2b\x74\xd5\x3f\x21\x0a\x29\x9c\xfe\x5e\x55\x30\x0f\x0e\x02\xc7\xde\x42\x25\x88\x7e\xf2\xfb\x87\xd2\x55\xaf\x89\x6d\x52\x82\xf3\x95\xf4\xaa\xf3\x57\x9f\x95\x57\x03\x6a\xe7\xe9\xc4\xff\x2a\xe0\xca\x06\xf1\x2d\xcf\xa7\x14\x5a\xac\x7f\x79\x2e\xb9\x71\x7a\x2d\x55\x45\x66\xb1\x12\xf7\xf9\x02\xf0\xbe\xc0\x77\x0e\x0a\xbe\xad\x8d\x3c\x8b\xcf\x90\xbe\x79\xab\xcc\x55\x66\x03\x20\xf4\x0f\x87\x64\x60\x9a\x39\x3b\xf6\x16\xcd\xd6\xf4\x2e\xaa\xeb\x92\x3a\x66\x5e\x94\x23\x72\x0e\xe3\x97\x99\x60\x18\x92\x28\xf1\x07\x58\xe8\x16\x8d\x06\x8f\xb1\xd0\xce\xce\x7e\x4f\x23\xe5\xcd\x98\x3f\x7b\x46\x3c\x3b\xfa\x9f\xfb\xb5\x9f\x4d\xef\xec\x88\xcb\x9f\x3f\x8c\x13\x7b\xda\x26\xd8\xf5\x71\x94\x04\x84\x47\xa5\x0d\x92\xa3\x72\xc2\xb3\xc3\x97\xf2\x5f\xbe\x59\x0a\x4a\x87\x1f\x7a\x5d\xb0\x7e\x4a\xb4\x8e\x41\x17\xba\xcc\xa0\x65\x96\xb9\xfb\x35\x39\xeb\x6a\xef\x96\x85\xe4\x5f\x9e\xe1\x7f\xb1\x1a\xfb\x98\x79\xa5\x80\x55\x92\xd1\xdc\xab\xda\x9c\x96\x78\xbc\x7a\x0f\x7f\xa6\x51\x40\x3c\xc3\x6a\xa0\x34\x9b\xe0\xd9\xfb\x06\x29\x09\x69\xf4\x01\xae\x5b\x31\x56\x41\xd1\xda\x95\xd4\x77\x59\xa6\x28\x77\x36\x2c\xe2\x2b\x14\x90\xdc\x05\x8f\x5f\xa2\xc4\x0b\xbb\xc1\xd3\xd4\x38\x92\x6d\xd1\xed\xc6\x29\x63\x84\x37\xcb\xb3\xab\x77\x2a\x5d\x76\x62\xf8\x48\x90\x72\x2e\x58\xad\xe9\xe2\xd8\xcd\xc0\xe9\xb5\x08\xd7\xdc\x4f\x96\xe6\xd1\x73\xa3\xe3\xfc\xdc\xc4\x6e\x2a\x86\x8d\x5d\xae\x9a\x22\x05\xb6\x1a\x35\x97\x75\xa6\x8b\xdb\x79\x73\x44\xe1\xb0\x2f\xd4\x24\xf9\x41\x32\x9f\xbb\x9b\x65\x56\x3c\x2a\xa1\x19\x2e\x86\x68\xb6\xe7\x60\xca\x4e\xaf\x86\xd9\x54\x68\x65\x74\x9f\x4f\x29\xbb\xa1\x5a\x0d\x03\x2d\xe4\xd2\x53\xc9\x64\xaa\x01\x02\x8f\x0b\x78\x5a\x70\xb5\x85\xdc\x8a\xb2\x64\x6f\xdd\x9a\x44\xae\x8e\xf6\x99\xd1\x42\x3d\x90\x57\x6d\xdc\x67\x03\x30\xc1\x5d\xaf\x4c\xbc\xb1\x4b\x00\x83\x09\xd7\xd0\xbc\xd7\x95\x49\x0a\xc6\x20\x16\x94\x65\xb7\xeb\xb2\xeb\x34\xa8\x71\x6c\x4e\x78\x59\x4f\x9b\x74\xfb\x6d\xb4\x54\x9d\x3f\x19\xa8\x2c\x26\xa3\x65\xa5\x12\xca\x17\x8e\xe9\x0e\x95\x95\x84\xdf\x9a\xf9\xf6\x1a\x61\xd6\xc7\xb9\xeb\x42\x31\x2d\xfb\xbe\x75\xf2\xf5\x7c\xe2\xd0\xe8\xa7\x31\xa5\xf3\x98\xd0\xd0\xf3\xb0\x41\x5d\x33\xba\x77\x4e\xaf\x54\xa4\x51\x0b\xf3\x3a\x66\x40\x9b\xf5\xc5\x91\x4a\x66\x8f\x13\x6c\x46\x7e\xd1\x91\xf1\x5a\x15\x46\x0c\x2b\x8d\x9c\xbc\xb4\x8b\xbf\x85\x45\x1b\x98\x37\x1b\x6e\xdc\xa1\x4d\xb7\xb8\x13\x5d\x5c\xef\xfe\x66\x99\xae\xd8\xee\xd5\x88\x8f\x6c\x98\xbb\x7c\x6d\x8a\xf4\x1a\xaf\x50\xbb\xdc\xd2\x4b\xd9\x1c\x6a\xc5\x97\x6d\xd3\x86\x50\x20\x01\x41\x98\x9f\x9d\x19\x2e\x4a\x38\x8c\xcc\xe8\x1a\xe0\x1d\xbd\x33\x73\x5a\xd4\x11\xaa\x02\xfb\xf4\x1f\x1c\xf3\x5a\xe0\x73\xb0\x96\x5c\xf4\x86\xba\xa2\xb4\x01\xd4\x12\x38\x56\x99\xd3\x35\x55\x4c\x43\xe8\xb7\x3c\x35\x4e\x65\xd7\x22\xd7\x83\xc6\x01\xa0\xf2\x9e\x91\x0c\x6d\x37\x4a\x87\x72\xef\x8c\x48\x5c\x8b\x15\x91\xfc\xec\xa1\xed\xfa\xa5\x94\x14\x49\x5c\xab\xad\x7e\x54\xc2\xc4\x10\xa4\x0e\x73\xf2\xaa\x2b\xb1\x4d\xc1\x74\xaa\x18\x7e\xb2\x36\x4e\xaf\x30\x7d\xd5\x65\xe3\xcc\x14\xe5\x82\x72\x48\x74\x08\x0b\x6c\x48\xbc\xc7\xea\x88\x70\x5d\x18\xa2\x29\x03\x96\x19\x12\x1a\xfb\x1c\x99\x77\x70\x9b\x26\x6f\x12\x48\x3d\x78\xa8\xc3\x5e\x3c\xab\x48\xcc\x0a\xc3\x2e\x19\x77\x7e\xbd\x31\x1d\x9e\x6c\x54\xe6\xf6\x06\x38\x25\x0a\x9f\xdb\xb1\x40\x1f\x0f\x53\x9b\x6a\xa0\xd6\x6e\x65\x46\x63\x21\xae\x97\x95\xbf\xe3\xd8\xa5\x2a\x18\xa2\x05\x34\x15\xde\xfd\x86\xbc\x25\xe7\xc8\x3e\xfe\xd9\xb5\x1f\x48\x67\x8d\xa0\x96\x59\xb1\xfa\x35\xd5\xcb\x7d\x6c\xa3\x42\xca\xac\xe2\x46\x8c\xdd\x19\xd4\xc9\xab\x60\x87\x02\xaa\x88\x04\x0e\xe8\x98\x9b\xfc\x7e\x6d\x20\x22\xe0\x5d\x37\x9f\x1d\xa5\x54\xde\xb8\x1e\xdb\x49\x85\xf7\x8d\x6f\x31\xcb\x4a\x14\x3b\x7f\xbd\x74\x94\x32\x82\x98\xdb\x31\xa7\x30\x6b\xe6\x7c\x38\xd2\xbb\x4f\xe8\xaa\x35\x28\x2e\x26\x9e\x7b\x4c\x73\xe2\x43\x6e\x25\xc0\x5a\x07\x69\xbe\xe6\xd3\xec\x37\x0d\x4a\x5d\x8f\xc3\x4b\x7e\xfc\xa2\x22\xb5\x80\xa2\x5c\x1a\xa6\x35\xee\x12\x1e\x0a\xe6\xcf\x9a\x3b\x7d\x26\x64\x1a\xf9\xab\xde\xe6\xfb\xc9\xab\x61\x24\x60\x3e\x19\xb4\x42\xc1\x23\x21\x38\xfb\xb0\x8b\xef\xb2\xf8\xc9\xed\xa6\x25\x85\x88\x9d\x3d\x7a\x52\x23\x5a\x54\xa1\x51\x02\x57\xde\x87\x86\x6a\x92\xf4\x18\xd9\xa2\x19\xa6\x3f\x9f\xf7\x2d\x93\x4b\x85\xdd\x3a\xb6\x69\x4d\x60\x3b\xde\xb8\x6f\x88\x08\x9e\x0c\xdb\xe2\xb4\x7e\x7e\xed\x08\x05\xf2\x88\x91\x61\x71\xd7\xd0\xcd\xa5\xa9\x5a\x40\x6c\xba\xd4\x36\x01\xc1\xa9\xf7\xa4\xbf\xbe\xad\x45\x2e\x45\x38\x79\x15\xfb\xb2\x3f\x79\x4c\xbf\xc8\x6b\xd8\x13\xf9\xd4\xa8\x73\x17\x89\x90\xea\x40\x4d\x36\xee\x01\x5d\xba\x98\x78\x82\x2d\x95\x39\xb7\x3f\xfd\x81\xa8\xe1\xa3\x0a\x8d\x4b\x1b\x4d\x55\x94\x9b\x0a\x14\x56\x63\x66\x06\x6a\xce\x31\x4a\xb3\x65\x6a\x30\x54\x4b\x04\x03\x8e\x3f\x2b\x96\x87\x9b\xaa\xc0\x23\x5c\xf0\xc0\x30\x49\x62\x16\xfc\xe3\xd0\x7c\x4b\x5e\x44\x20\x1e\xa1\x6c\xa7\x8b\xa6\x28\x65\x25\x23\x66\x37\xe0\x2b\x72\xdf\x7b\xb9\x9f\xab\xc2\xad\xc4\x4c\x99\x05\x77\xc8\x57\x2c\x13\x17\xb9\x06\x89\x0a\x7a\xe8\x6d\x6c\x11\x10\x32\x93\x44\xdf\x57\x0c\x6e\xf2\x99\xbd\x31\x35\x91\x45\x31\xf6\x5d\xe3\x79\x4e\xb0\x5a\x27\x7d\xec\x96\x44\xa2\x28\x75\xe7\x48\xbb\x24\x24\xfd\x51\x71\x73\x44\x8c\x60\xe5\xba\xb3\x14\x1f\xb3\x28\x20\x80\xc7\x59\xb4\x24\xf3\x74\xa2\x00\x8e\xae\x35\xd1\x0d\xc9\xbb\xeb\xa5\xb5\x29\x74\xae\x36\x6a\x30\x78\x13\xd7\x89\x97\xe0\x99\xf3\xf4\x02\x99\xca\xcf\x9b\x39\x3b\xfa\xcc\x53\x34\xca\x3d\x9f\x89\xc6\x75\xfe\xf7\x6f\x95\x13\x2b\xb3\x81\x9a\x80\x32\xcf\xdf\x7c\x6f\x3a\x0a\x20\x96\x68\xcf\xf9\x23\x65\x12\x44\x5d\x6e\x09\xf2\xc5\x03\xa3\x14\x2c\x1c\xa9\x50\x46\x4d\x37\x8a\x41\x57\x9f\x4b\x0f\x2a\x18\x6d\x88\x60\xf2\xc8\x09\xb1\xe0\xa8\x17\x1a\x88\xff\x34\x25\xfd\xbd\x78\x57\x9e\xc5\x9b\xe9\xe5\xcd\x13\xb5\x17\x72\x90\x9b\x8e\xe2\xe1\x47\x4f\x08\x89\x3b\xc4\x7c\x8b\xdf\xde\x1b\x98\x96\x17\xf9\x81\x29\xa0\x1a\x7d\xd9\xcf\x2b\x48\x33\xc3\x42\xbe\x4f\x38\x4b\xe6\x3f\x34\x12\x85\x45\xa2\xab\x1b\xb4\x6f\x84\xe7\xcf\x69\x9d\xfb\x49\x3c\xe2\x5d\x51\x07\x80\xf5\x15\xe7\xb4\x6b\x09\x54\x5c\x5a\xcc\x33\xf3\x2b\x04\xd5\xca\x40\x25\xe2\x62\xbf\xe0\xf9\x4d\x8e\xc3\x7c\x9f\xc6\x3a\x31\x89\xc7\x09\xf9\x89\x95\xe1\xbe\x29\x8a\xb6\x8c\x84\x4a\x87\x27\x14\x25\x1b\x83\x32\x16\x80\xb0\xec\xff\xca\x0a\xd1\x27\xea\x9c\xe0\x8b\x6d\x62\xce\xc6\xed\x43\x0a\xc5\x70\xfa\xde\x58\x8b\x89\x99\x9c\x8b\x97\x1d\xf4\xa4\xd6\x8e\xe3\xe2\xaf\xc2\x80\x79\xd2\x64\x1e\x7a\xaf\x65\x58\x49\x9d\xf3\xd3\xa7\x89\x6c\x40\xb5\x78\x7d\x33\xbd\x2e\x35\x46\x15\x14\x83\x91\x80\xd5\xae\xd0\xfc\xd4\x09\x18\xe4\xd6\x91\x10\x50\xca\x0f\x18\xa8\x29\x8f\xd3\x1a\xe7\xf0\xc7\x59\xc3\x37\xdf\x4a\x6f\x95\xba\x8d\x4c\x52\xa7\x9e\x4f\xab\xb1\x1e\x5d\x38\x69\x4a\xfa\x5b\xd5\xa3\xb2\x4e\xa8\x8c\xf4\xe5\x26\x4e\xd7\x36\x00\xea\x45\xcc\x94\x64\xb1\x5c\x6f\x47\x8b\xbd\x06\x6d\x24\x23\xb8\x9e\x34\xf7\xcb\xc5\xbe\xc5\x81\x05\x5e\xbf\xdc\xaf\xe5\x2f\xa7\x92\x68\x68\x8f\xc3\xfe\xfc\xd7\x01\xaa\xe2\x1d\xb8\x47\xf6\x65\x97\xbe\x98\x5e\x46\x87\xd8\xd4\xc3\x75\x78\x24\xbd\x4a\x46\x73\x58\x64\xf0\x65\xca\x9c\xc0\x06\x65\x9f\x2f\x4d\x91\xf3\x9b\x52\xa1\x50\x0c\xff\xef\xd5\xf4\x4e\xab\x22\x66\x6b\xae\x79\x95\xdd\x5a\x73\x89\x55\x02\x60\x48\xf3\x4a\x9c\xbc\x34\x5e\xfb\x31\x76\xd1\x15\xaa\x10\x5f\xce\xbb\x5c\xbb\x86\x1b\xb8\x26\xfe\x3c\x73\x72\x51\x52\xf1\x74\xb7\xb7\xae\xcc\x23\x4b\xd4\x39\x1b\x8e\x0e\x21\x82\x21\xf8\xe4\xf7\xa6\x3b\xce\x75\x2e\xc4\x1e\x37\x74\xe7\xbe\xa8\x13\xcb\x91\x6b\x22\x66\x8a\x39\xc7\x81\x95\xb2\xe9\xd8\x1d\xb8\x3e\x57\xe0\x9b\xff\xba\xbc\xb9\x03\xdb\x27\x8e\x18\xd0\xfd\xfe\x50\x8b\x16\x9c\xa0\x1f\xc4\x21\x74\xff\xc0\x78\xf8\x13\x30\x90\x25\xcc\xfc\x75\xaf\x56\x6c\x98\x51\xc4\xe7\x71\x1a\x04\x4b\xa6\xed\x6c\x93\x04\x4c\xa7\xe5\x8b\xff\x51\x63\xe2\x34\x60\x3a\x25\x38\x5e\xff\xbe\x44\x41\xfa\x08\xc6\xec\x3d\x8f\xc8\x46\x56\x43\xd3\xa9\xc8\x9d\x7e\x40\x6b\x02\x33\x93\xb8\x88\x35\xc5\x98\x75\x9d\x82\xa3\x67\xc4\xb0\xe2\x1a\x70\xd0\xab\x31\x4d\xdd\x26\xb8\x5c\x28\x86\x7f\x3c\xab\xca\xf2\x97\x18\xf6\xb9\x32\xed\xf5\x4a\x6f\xca\x8d\xf2\x5c\xc3\x0e\xa2\x7a\xf6\x43\xeb\x65\x7a\x0c\x72\xd4\x5c\xde\xe6\xf8\x34\x05\xb7\x1f\xb8\x20\x91\x50\x28\x86\xb7\x8c\xeb\xcf\x00\x44\xc0\x9f\xde\x5e\xc6\xef\xe3\x35\xb4\xa4\xe4\xf6\xe1\xeb\x7b\x2f\x51\xb2\x03\xdf\x0a\x98\x3a\x73\x31\x76\xa4\xf5\xb4\x1c\xdc\x43\x0c\xda\x9f\xcf\xe2\x99\x93\xda\x35\x85\x7c\xe1\xf5\xf5\xd9\x30\x5d\x3c\x44\x0b\x84\x85\x78\x7a\xbc\xc3\xbb\xf6\x0d\x17\x69\x97\x11\x78\x85\x1a\xfc\xb7\xd8\x97\xdf\xb6\x2c\x96\x57\xf5\xa2\x1d\x0a\x41\x70\xeb\x39\x2d\x70\x94\xf8\xb8\x1b\x22\xdf\x35\x77\x89\xb6\x77\xec\xec\x7d\xaf\xf4\xd0\xe3\xf5\xda\xa9\x73\x1a\xea\x28\xaa\x89\x08\x57\x3d\x88\xc2\xda\x3d\x0a\xde\x4d\xc4\x5e\xd1\xc5\x5d\x39\x49\xeb\x45\x61\x62\x62\x5b\x2d\xea\xbe\xb7\x43\x4e\xff\xc0\x2e\xa8\x95\x32\xb1\xee\x59\x2d\xf6\x60\x33\x51\x84\xbb\x4e\xb5\x26\x5e\x29\xcf\x2d\xc3\x46\x55\x24\xc7\x99\x7f\x3e\x90\x6e\xa7\xfb\xc4\xc1\x71\x4c\x94\xd6\x26\xeb\x5e\x56\x8a\x52\xcc\xb0\x43\x21\x95\xb8\xea\x98\x06\x26\x17\x24\xd5\x68\xf7\x3f\x2a\x4f\x84\x4b\x1b\xed\x85\x62\xf8\xad\xfd\x92\x77\x03\xf6\x94\xd0\x92\x19\xf2\x2c\xbf\x73\x81\x20\x06\x06\xe2\x9e\x03\x00\xfd\x9b\xde\x50\x12\xb7\x92\xa7\x1a\x3b\x4c\x3b\xa4\x27\x26\x9e\x47\x13\x59\xac\x7c\x20\x79\x71\x66\x6a\xac\x39\xee\x79\xe5\x59\x50\xe6\x07\x95\x40\x00\x02\x2f\xdd\x3e\x42\x2c\x4d\xc1\x46\x81\x0b\x3a\x40\xd1\x33\xfa\xc0\x16\x45\xe8\x8f\x96\x88\x4d\x78\x6a\x64\x4e\x97\x98\x52\x8b\x52\x25\xdf\x7c\xfd\xf1\x04\x64\xd6\xa2\xbc\xb5\x43\x0a\xda\x9b\xd1\x8a\x7c\x78\x5d\xfa\xe1\x95\x31\x71\xa3\x48\xad\xb7\x99\x7e\x75\xcf\x7b\x5b\xe2\x1d\x48\xd3\x08\x48\xd2\x15\xbd\xc9\x44\x63\xbe\xaf\xa3\x65\xc2\xf7\x1c\x4d\xff\x35\xee\xf1\x19\x76\xb0\xdd\x14\xa9\x53\xb3\xa6\xcb\xe2\xb8\x9e\xcf\x02\x03\xb8\x70\x5c\x08\xd0\xdb\x23\x06\x04\xd4\x42\x8e\x2a\xbb\x90\xb9\xe9\x72\x79\xdc\x6b\xc8\x0d\x0c\x83\x28\x3f\xfd\xe1\xcb\x1a\x61\x90\xa3\x9d\x19\xae\x53\x3b\x80\x14\x3e\x0e\x79\xd9\x33\x93\x52\x2d\x43\xb3\xc4\xf5\xf1\xb2\xdf\x9a\xa6\x20\x1c\xaa\x85\x62\xf8\xd7\x05\xc9\x7c\x66\xc6\x9c\x19\x29\xf5\x9f\x9b\x46\x73\x86\x4f\x13\x78\xf8\x59\x4f\x20\xb5\x5c\x82\x41\xbc\x23\x3f\xe3\xa1\x31\x29\x9a\x90\x41\x6c\x5b\xcc\xb2\xb3\xaf\x29\x8e\x56\x3e\xe5\x8e\x56\xd9\xbf\x9d\x4e\x07\xa1\xa0\x16\x93\x63\xf7\x3e\xc5\x23\x09\x0d\xfc\x0a\x15\x9b\xe5\x2b\x8f\x6a\x0b\x2d\x00\x02\x3c\x62\x86\xfb\xac\xc1\xf1\x4f\x40\x71\xaf\x18\x0e\x3c\x37\x44\xa9\x89\xca\xd1\x45\x9a\xd9\x7c\x47\xfa\x6e\x56\x54\x75\x32\x1b\xaf\x54\xcd\x32\x49\xb9\x1c\xd7\xd5\x17\xbd\xa0\x19\x5b\xda\xb8\xea\x21\xd7\xd4\x4c\xc4\x3f\xa4\x35\x12\x4c\xea\xe2\x2b\xb8\x1c\xf1\x45\xc7\x74\x27\x6b\xb3\x92\x4c\xdf\xb3\x1f\x5a\x71\x89\x52\x63\x09\x0b\x8d\x04\xc4\x70\xef\x1d\x0a\xd4\x4a\xf1\x86\x11\x16\xb2\x42\x28\x36\xfa\x02\x3f\x38\xa5\xd0\xca\x83\x1a\x66\x04\x66\x92\xe1\xb1\xe1\xe9\xe9\x50\x8d\xba\xd4\x41\xac\x89\xeb\xe9\x14\x2a\x9f\x99\x36\x58\xd9\x6e\xd1\xbb\x18\x07\xf9\x95\xb8\xe6\x86\x59\xed\xd0\xa7\xc8\xfc\x7e\xb3\x9e\x6a\x30\xac\xb8\x28\x3f\x21\x6d\x25\x2c\x12\x3d\x97\x11\x5d\xe3\xf5\x6c\xc8\x24\x9e\xa5\x8a\x7a\xd8\x5a\x8b\xb8\x8e\x0c\x14\x73\x24\xb2\x3f\x5e\xa5\x11\x79\x7d\xca\x0c\x0d\xc5\x93\xff\xc0\x3b\x7a\x8d\x58\x26\x06\xf1\x63\x38\x44\xdb\x00\x45\xa8\x03\x23\xc7\x11\x36\x74\xd9\x69\xaf\x8a\x8a\x5d\xb5\x2d\x61\x1a\x8f\x08\xb9\xc8\x45\xf1\x94\x66\xd5\xad\x6d\x5a\x1e\x6d\x11\x43\xea\xb9\x2d\xdb\xa9\x75\x00\x49\x1d\x47\x81\x5b\x9c\xc3\xdc\x9c\x87\x46\xb8\xaa\x9a\x83\x20\x54\xe7\x2f\xb8\x52\xd1\xc3\x91\x0a\x23\x1b\x17\x48\x3d\x71\x70\x15\xb8\xe0\x5e\x45\xd0\xd6\xe4\xee\x3e\xe1\xe7\xa6\x8d\x6c\xa1\x70\xc3\xa4\xe6\x77\x3d\x0a\x04\x18\x31\x52\x2a\x61\x78\x95\x2f\xbe\x2e\xe3\x2b\xb5\x91\x62\x66\x9c\x1f\xbc\x7e\xa8\x92\x1b\x95\x61\xd2\xf4\x88\xc6\x0e\x2e\x41\x7b\xa6\x5d\x20\xfa\xb3\xbf\xb8\x5f\x87\x32\xb9\xb1\x7f\xcd\xee\x17\x14\xa9\x52\x44\xa0\x1b\xbc\x6d\x4f\x8a\x00\xc0\x51\xd4\x7f\xd7\x94\x7d\xbc\x1a\xad\x62\xb7\xc0\xff\x0d\x56\x76\xfd\x11\x55\x4b\x0e\xe8\x63\x1c\xba\x61\x76\x68\xe1\xdb\x22\xb6\x19\xdd\x1a\xe2\x0f\x7f\xe4\xa7\x77\x57\x95\xd8\x36\x16\xf0\xa8\x25\x8a\x7c\xb2\x1b\x15\xa5\xd1\x9e\xdf\x74\x40\xba\xf7\x97\xa3\xf3\xb3\xa1\xb3\x4d\x6a\x49\xb5\xb8\x12\x65\xa6\x6a\x85\xbc\xd7\xc0\x98\xeb\x2a\x02\x60\xf4\x6b\xf7\x8e\x97\x4d\x55\x18\x61\x59\x88\xa4\xd4\x75\x72\x1d\xb3\x84\x1b\x2f\x23\xa5\xc0\x6d\xc1\x6c\xe6\xbe\x31\x2d\xfd\x0e\xdc\x45\x24\x91\xa9\xfb\xc0\x14\x65\x82\x66\x31\x8c\x0b\x25\x6c\x32\x4a\xa1\x7f\x5a\xd1\x0a\xbf\x12\x0b\x3c\x0b\x64\x9d\x81\x5d\x74\x52\x41\xd6\x44\xe7\x58\x68\x5d\xe7\x6f\x99\x3e\x5a\x79\x4d\x02\xc2\x3d\x5c\x34\x31\xf7\xc3\xbd\xc9\xa6\x9c\x3a\x1b\x7a\x97\x6d\x6f\xa4\x58\x07\x82\xd9\x12\x2d\xfe\x6b\x0b\x47\xaa\x7a\xdd\x12\x68\xd0\x71\x40\x77\x68\xc1\x28\x71\x91\x3c\x30\x56\xaf\xf8\x08\x37\x1f\x28\xf6\xe5\xce\xbf\x22\x1d\xdd\xb0\xd2\x1c\x5f\xd1\x9d\x5e\x23\x0e\xdb\x4e\x7a\x73\x47\x06\x68\xa2\x7d\x28\x01\x72\x78\x0b\xe5\x03\x12\x1a\xda\x7a\x4b\xf4\x03\x8f\x25\x98\x02\xe8\xb7\x43\x1f\xfa\xdb\x9a\xfc\x12\x8b\x2a\x81\x04\xfa\xf8\xb9\xdd\xfc\x4f\xea\x84\x82\x42\x06\x64\x5d\xd7\x77\x8f\xd0\xae\x08\x3e\xa8\x08\xb8\xb6\x16\xdf\xbb\x85\xa0\x06\xf6\x3b\x42\x2c\x31\x3b\xf1\x15\x7d\x0c\x14\x78\x09\x89\x34\xdb\x78\x49\xde\xe0\x20\x3e\x9d\xfd\xfc\x19\x6d\xca\x80\x0d\x86\x21\xdd\x10\x19\xdc\xea\x97\xf4\xf3\x6c\x80\x46\x96\x68\x27\x2c\x3e\xc8\x3f\xf9\x6a\xec\x33\x6a\x63\x68\xc3\xe7\x7e\xf3\x96\xd6\xa2\xb5\x70\x39\xbe\xc0\xf2\x9b\x1f\x57\xd1\x53\xd8\x89\x0e\xcd\x43\xdc\xc0\xb1\xd0\xd5\x8b\x0b\x86\x15\xa8\x06\x1b\xb9\x4f\x2b\x96\x3e\x65\x54\xa7\x2c\x41\xb2\x0c\x7e\x41\x13\xbc\xb2\x10\x4b\xf4\x03\xb3\x5f\x7e\x40\x97\xc3\x72\x4d\x14\x83\xde\xb2\x9d\x8a\x5f\x88\x43\x3d\x83\x36\x0a\xc5\xf0\x22\xc5\x9c\xca\x8c\xea\x12\x61\x05\xb1\xf0\x0e\xc5\x7c\x5f\xe4\x5d\x72\x77\xde\xd4\x3e\x28\x79\xa9\xce\x59\x85\x62\x78\xe3\xdb\x1a\xca\x18\x57\x88\x67\xa3\x28\x0a\x09\x9c\xd6\x91\xa5\xf2\x12\x2f\xb4\xc4\x88\x97\x2f\x4f\x9b\x2f\xd4\x98\x90\xc9\xeb\xa7\x01\x9f\xbf\xed\xf0\x10\xa5\xa5\xd9\x3e\x1b\x18\x25\xf5\x21\x0a\x70\xca\x87\xba\xf8\x99\x89\x9a\xd0\x03\xa3\x81\x9b\x08\xb6\x7f\xb8\x73\x42\x4a\xa8\x85\xb4\x18\x0a\xf6\x65\xb7\x3e\x26\x6c\x2e\x29\xc3\x3d\xd0\x9f\x18\xad\xe3\xa3\xec\x26\x6f\xc1\xad\x7e\x43\x59\x5d\xc4\x0c\x70\x9b\xce\xcf\x1d\x3a\x5e\xe9\xfe\x23\x17\x74\x4f\xd3\x67\xe7\xff\x53\xf6\xef\xf1\x52\x14\x67\xfe\x38\xee\xf4\x4c\x94\x20\x77\x0e\x57\x11\xd0\x10\x21\xc8\x9c\x9c\x73\x40\x6e\x31\x04\x11\x11\x51\x19\x04\x82\x84\x28\xa1\xa6\xbb\x66\xa6\xce\x74\x77\x35\xd5\xdd\x73\x2e\x31\x7e\x15\x0d\x21\x44\x59\xe2\xb2\x86\x10\xd7\x18\x63\x58\x35\x2c\x51\x63\xd4\x18\x96\x35\x84\x10\xc3\xaa\xcb\x12\xe2\x1a\xe2\xfa\x21\x2e\xcb\xba\xc4\x10\x62\x8c\x21\xae\xa7\xf3\x7b\x75\x3d\xd5\x5d\xd5\x35\x67\xff\xf8\xe5\x9f\x24\x87\x73\x66\xfa\x52\xf5\xd4\x73\x79\x5f\x7e\x78\xe5\x85\x22\xfe\x9b\x71\x82\xb9\x71\x5d\x76\xf1\x09\x3e\x88\x50\x29\xf9\xc1\x2b\x0a\x88\xd4\xe4\x42\x89\x53\x76\x67\xe3\xbb\x8d\xea\x38\xa1\xcc\xad\xb8\x26\xfa\xf3\x79\xfd\x88\xd6\xc2\x9c\x3f\x37\x6e\xe7\x78\x85\xf6\x8c\x18\x32\x03\xcc\x1d\xb3\x4d\x7e\xfa\x5f\x3c\x50\x8a\x2f\xa1\x1a\x43\xcd\x6d\x89\x1d\x7b\xd3\xa2\x2a\x64\x3d\xc9\x22\xbd\xfd\x99\xec\xb8\xab\x4b\x8c\x43\xfa\x77\xf8\x7d\xbb\x3b\x3b\x77\x48\x94\xfb\xfa\xd3\xf5\xf8\xc8\xa1\x6c\xbd\xd8\x19\xc6\x17\x0b\x1e\x2d\x12\x64\x70\xf3\xd3\x1a\x3c\x8f\x2b\xaa\x79\xa8\x9a\xe0\xc8\xb7\x2c\xd1\x89\xe0\x73\xe6\xc0\x13\x59\xa4\x49\xfc\x3a\x94\x57\x21\x3c\xe9\x0e\x76\x4b\xec\x38\x78\x2b\xdc\x6a\x68\xab\x1e\x71\x57\xcb\x78\xdd\x8a\xcc\xea\xd4\x3d\x3c\xbb\x2b\x5e\x4d\x1d\x07\x33\x1f\x1c\x9f\x33\xf5\xd1\x81\x09\x1a\x54\x35\xe4\xe9\x8d\x88\x5f\xd1\xf7\xdf\x51\xc4\x52\x70\xb7\x32\xe2\xcf\xfd\xe8\xac\xa6\xf6\x87\xca\x04\xfc\x83\x92\x7e\x47\x9d\x69\xf7\x39\x37\x09\xf7\xf9\x42\xda\x6e\xf2\xdd\x66\x54\xef\xc7\x76\x4b\x1e\x5e\x8d\x64\x1e\xee\xf3\x5a\xf4\xe4\x90\x76\xe4\xa4\x32\xf1\xb9\xf2\x86\xa1\xca\xc9\x88\x9d\x62\x29\x9a\x70\x43\xf6\x1e\xaf\x68\x2b\x72\xa4\xb3\xf0\xf9\xce\xbd\x3e\x41\x69\x00\xc5\xa7\xa8\x68\x38\xfd\xcf\x65\x3a\xba\xa8\x8e\x18\x92\xdc\x85\xbe\xc2\x55\x47\xc6\x25\x17\xca\x74\x14\x5a\x9f\xf1\xf2\xf4\xd1\x99\x11\x4b\x19\x0b\xcd\xe3\xbe\xfc\xb3\xf7\x68\x53\x4d\x93\x7a\xa0\xbd\x62\x7c\x68\x19\x1c\x36\x37\xe2\xa0\x59\x74\x77\x9b\x66\x48\x27\xad\x16\x45\x3a\xb3\x76\x73\x96\x2b\x94\xf1\x21\x93\x21\x7e\xe5\xae\xec\xe7\x70\x8c\x66\x17\xf1\x53\xaa\xfc\xcb\xc3\xa0\x87\x54\x72\xb1\x4a\x75\xba\x6f\x06\xd4\xc2\xcb\xb0\x4d\xfc\x8c\x2a\xca\xed\xb3\xc6\x28\xad\x2f\xac\x48\x1d\x47\x53\xf6\xa8\x2a\xa3\x0d\x9c\x58\xe4\xfd\xfa\x90\x8e\x14\x65\x6e\x0a\x45\xfd\xcd\x36\xcd\xd5\x3d\x74\x3c\x3f\xc0\x4c\x1a\x02\x5c\x77\x99\x7c\x6d\xb4\xbb\xc7\xa1\x42\xc6\x20\x38\xa1\x51\x80\x42\xc6\x11\xa8\xa2\xab\x35\xa3\x3c\x5a\x9e\xc8\x48\x5d\x5c\xf9\xaf\x9e\x55\x0f\x09\x3d\x52\x4e\x3e\x4f\xf5\x42\x06\x43\xe8\xf8\x03\x5f\x55\x92\xfe\x72\xc8\x2d\x20\x4b\xd1\xff\xbc\xa9\x3a\x4f\x94\x49\x00\xf3\xba\x8f\x34\x26\x28\x58\x0b\x17\xc7\xb1\x5a\x1d\xcb\x15\x3e\x56\x91\x7f\x57\xe6\x8d\x4e\x80\x6d\x9e\xa7\x9a\xd4\x21\xb3\xa6\x9e\x87\xc6\xd5\x4f\x24\xf2\x8f\x89\xa9\x6d\xfc\x04\x2f\x78\x55\x5d\xd6\xa1\x4d\x90\x4b\x8a\xa5\xe8\x9f\x27\x34\xf5\x53\xac\xd0\x4c\xd3\xd5\xdc\xf3\xbb\x55\x39\x11\x17\xa2\x97\xbe\x0e\x0f\xbf\x3e\x24\xa9\xcc\x18\x02\x71\xd0\x87\x17\xe8\x29\x9c\x2b\x80\x15\xf9\xdf\x6f\x1e\xa1\x14\xae\x02\xc9\x19\x2d\xbc\x45\xfb\x03\xe2\x80\x82\x4e\xf4\x6c\x43\x31\x47\x27\xd5\x90\x7b\x95\x7f\x7d\x72\x36\x9a\x94\x51\x52\xd4\xde\x5d\xce\xae\x79\x9b\x34\x88\x5b\xf5\x03\x9a\xc1\xb6\x15\x36\x4f\x50\xdf\x13\xb1\xc1\x70\xa0\x74\x4c\xc2\x15\x6c\xea\x56\x8b\x5c\xcc\x30\x7e\xe6\x05\xd1\xfe\xbc\xa2\x75\xf6\xbc\xf8\x37\xbf\xde\x68\x51\x05\x67\x82\x0a\x65\xdc\xdf\xda\xf8\x61\x4d\x07\x17\x09\x64\x93\x14\x21\x3b\xf8\x94\x56\x84\xd4\x68\x57\x5c\x0a\x8a\x41\xf9\x3b\x4c\xb6\xcb\x2b\x76\x9c\xa8\x2a\xe5\xc7\xe6\x77\xd2\x53\x8e\x85\x09\x9b\xb2\xf7\xc8\xd0\xf4\x0d\x41\xc6\x1b\xed\x5f\x3c\x51\x3b\xf7\x7c\x9f\x76\x65\xe0\x7d\x27\x1e\x52\x84\x46\x08\x33\x43\xde\x03\xb8\x77\x9a\x66\xe4\x62\xa3\x32\x05\xab\x40\x70\xa0\x35\xfe\x7c\x4f\x33\x58\xc9\x44\x70\x7f\x3c\x29\xad\xed\xd4\x75\xe0\xb8\x55\x43\x32\x06\x36\x3e\xb7\x5b\x6d\xf6\x74\xf3\x42\xe5\xf0\x01\x68\x5e\xac\xe0\x8c\xa5\xf8\x53\xda\x5e\x95\x97\x57\xc5\x2e\x6e\x70\xcc\xfe\x89\x83\x72\xec\x34\x23\x81\x07\x6f\x4e\x0f\x43\xdf\xa4\x71\xe5\x6d\xcb\xcc\x24\x2c\xf3\x6b\xfa\xf3\x61\x05\xcc\x4e\x3c\x1c\xf0\x0e\xda\xb7\x5e\x54\x60\xa8\x5c\x1f\x01\xfa\xaa\xf9\x3e\x5d\x9d\x39\x2e\x6b\x10\xeb\x11\xb4\xdf\xcb\x1f\x57\x44\xfb\xcb\x56\x68\xdb\xdc\x66\xce\xf8\xdb\xb2\xa8\x3d\xb0\x1b\xb0\x84\x76\x79\xaf\x62\x18\xec\x98\x16\xe5\xe0\xc7\x52\x5f\xfe\xdf\x2c\x39\x28\x2a\xf7\xf8\x04\x77\x11\x53\xe9\xf0\xe4\x0f\x08\x53\x87\x45\xbc\x01\xd5\x74\xa0\x7c\x73\x4b\x16\xa2\x18\x50\x00\xea\x59\x1b\xf4\x02\xd4\x0f\xed\xb4\xd6\xc9\xfd\x45\xa3\x20\x21\x0f\xfc\x5f\x60\x94\x71\xd7\xe2\x96\x84\xc0\x2e\x63\x61\xb1\x14\x7d\x52\x93\x58\xc4\xdd\x99\xfe\x7c\x5f\xa1\x36\x24\xfb\xb1\x36\xe5\x66\x53\xa2\xea\x1d\xf1\xaa\x16\xbf\x89\x6f\x86\xbc\xf0\x4c\xd8\xde\x33\x3a\xfe\x4f\x17\xc2\xc4\xc7\xee\x47\x5a\x73\x20\xa0\x7c\x9e\x03\xc9\xd2\xf2\xbb\x15\x0f\xfc\xee\xa2\x83\x2a\x30\x8d\x1b\x36\x4d\xb5\x06\xe9\xc2\xac\xc2\x55\xa9\xf9\x81\x7d\x81\x22\xf6\x6d\x13\x3f\x00\xcd\xd2\x96\x35\xaa\xa3\x20\xf8\x41\xe5\xbe\xe9\xca\xd3\x5b\xf2\x95\xe3\xd8\x7e\xf2\x96\x11\x4a\x30\x16\xa6\xd9\x91\x75\x77\xf6\x25\x10\xb7\x82\x4d\x69\x01\xf7\x80\x26\x86\x3d\xb5\x81\x13\x3e\x47\xe1\x90\x5c\xe0\x6d\xad\xed\x6d\xbc\xa2\x78\xf9\x68\xc6\xf4\x19\x46\xae\x10\xd8\xff\xf5\x94\x26\x1d\x8a\x19\x23\x15\x62\x26\x27\xdc\xd9\x5e\x0d\x66\x43\x91\x95\x14\xef\x67\x87\x65\xff\x0d\x3c\xa8\xe1\x12\x1f\x9b\xa8\x8e\xeb\x1d\x87\xf0\x41\x79\xfe\x5f\x3a\x00\x4f\x0b\x98\x41\xa2\xf0\x72\xf2\xbf\xd5\x84\x71\x5d\xdc\xe5\x7b\xc8\xe3\x87\x2d\x7f\x88\xcf\x28\x91\xdc\xc7\x8c\xc3\xf9\xfa\x8c\x03\xa7\x35\xf0\x04\x46\xcc\xa2\x6e\xbc\x98\x65\xf6\xf8\x2f\xa7\xd2\x24\x10\x35\x54\xd9\xc3\x68\x99\xd0\xde\xe2\x08\x5a\x10\x04\x99\x72\xcf\x48\x51\xfa\xb8\xbe\x8d\xc2\x04\xf7\x99\xfb\x7f\x1e\x0c\x58\xb8\x60\x86\xd9\x63\x73\x2f\xfc\x78\x91\x74\x79\x97\x6b\x01\x8b\x23\xa9\x1c\x50\x7f\x69\x46\x5d\x8d\x10\xca\x21\xf2\x88\x6d\x8d\xeb\xa1\x07\xc7\xaa\x88\x3c\xde\x2e\x34\x6d\x21\x90\xb1\xf6\xb0\xce\x36\xbf\xbc\xe8\x52\x17\x73\x14\xfa\xa9\x59\x69\x9f\xc4\x43\x8a\xba\x7c\x0e\xdf\xae\x4c\x9b\x18\x45\x81\x10\x2d\x9e\xfa\x4e\x3f\x44\x51\x33\x50\xd0\x89\x5d\xbd\x0a\x98\x2d\x74\x2b\x84\x1f\x9b\x17\x6e\x1d\xd3\x7c\xca\xc2\xc2\xcb\x7f\x46\xd3\x5a\x0d\x30\x73\x7b\x50\x5d\xa3\x93\xfc\xe9\xd2\x21\xca\x15\xf1\x91\xe9\x8d\x2c\x0d\xbf\x88\xc5\x27\xf6\xb8\x1b\x14\x3b\x55\x52\x75\xe3\xe5\x98\xa8\x86\x9f\x31\x94\x5e\x15\x43\xae\xcf\x7d\x0d\xb9\x50\xe0\xf4\x5e\x05\xac\xcc\x53\xf2\x1a\xb5\xe3\xb3\xec\xe6\x35\x3a\x4e\x06\x05\xc2\x1b\x39\xfa\xb3\xf0\x3f\x58\x86\x19\x52\x11\xdc\xc6\x21\xcd\xe5\xca\xf7\xb0\x05\x01\xf2\xd5\x87\x25\xe9\x03\xf3\x49\xc3\xa4\xdd\x53\x9a\x1f\x4b\x7f\x35\x5f\xe1\x7c\x05\x35\x6d\x53\x93\xb3\xf4\x7f\xbb\x7c\x74\xe6\xa0\x62\xe9\x3c\xc0\x98\xb5\xfe\xc3\xfc\xc7\xb3\x66\x15\x4b\xd1\x71\x4b\x47\xce\x39\xdc\x5d\x84\xa7\xea\x1d\xbd\xd9\x84\x06\xa5\x01\xfb\xda\xd7\x26\x2b\x1b\xd1\x0e\x39\x0c\x36\xce\x29\xca\x3d\x5c\x30\x03\x04\x1d\x66\xb7\xa8\x8f\xd5\xac\xfb\x70\x9a\xf7\x3e\xa4\xb4\x54\x18\x71\x85\x40\xc4\xd9\xdb\xb3\xd1\xba\x07\xdb\x38\xe9\x9b\x47\xb6\x37\x56\xab\xe5\xe2\x9c\x42\x08\x23\x3c\x34\x5b\x66\xf6\x16\x35\x39\xdc\x22\x89\xa7\x73\x9e\xca\x3e\xf2\xf8\xf5\xf1\xa1\x4a\xf4\xd3\xd3\x32\x7e\x95\x29\xf7\xef\x48\xea\xaa\xbf\x05\x1a\x79\xf1\x06\xcc\x1c\x94\x81\x60\x8f\xd7\x68\xe4\x16\x86\xb6\x62\xee\x0f\x0f\x4e\x52\xc8\x96\xd9\x66\x81\x38\x74\xf3\xe7\xcf\xcd\xde\x44\x0d\xb9\x56\xca\xd3\x1b\xb3\x52\x42\x77\x3b\xda\x9b\xde\xf2\xbd\x8f\x68\x26\x29\x38\x80\xd9\x90\xe1\x3e\x7d\x91\x3c\x1b\x48\x73\x45\xf6\xc3\x23\xd3\xb5\xb7\xc8\x1d\x27\x92\xdc\x4f\x3f\xc2\x17\x46\x8a\x4f\x1d\xf2\x7d\x80\x58\x7d\x61\x99\x9e\x7b\xf8\x3e\x17\xda\x86\xec\xe9\xc9\xdd\xd9\xcc\xce\xee\xb1\x35\x98\x6b\xbe\x93\x4b\x83\x73\x61\xeb\x65\xcb\x56\x16\x4b\xd1\xe0\x00\x02\x16\xae\x54\x88\x49\xb0\x6b\x72\xb4\xa1\x31\xef\x48\xbf\x2e\x32\x42\xdf\x21\xff\x0f\x4a\xa9\xd6\x85\x52\xed\x8e\xbf\xbe\x21\x34\x1b\xb0\xa9\xd0\xd1\xf2\x7b\xb6\xcb\x96\x04\xe2\x60\xb3\x46\x4b\x36\xda\x54\xed\x30\x79\x05\xf9\x0b\xf6\x29\x6d\xc8\x00\x71\xcf\xa3\x5c\xf7\x71\x98\x5a\x7e\xba\x75\x55\xfc\xf7\xdf\x3e\x96\x3d\x19\x68\x7c\xf5\x5a\x83\x25\x3f\xaf\xa6\x21\xb7\x6a\xc4\x46\x16\xb6\xbd\x1a\x41\xc9\xe0\x8a\x5b\x18\x3f\x32\x5e\x17\xbd\x4a\xdc\xbe\x56\xad\x88\xd6\x6c\x51\x4d\x42\x60\x22\xcb\x1f\x51\xcf\x81\x0c\xdb\x31\x10\x96\xd1\x7d\xf9\x0b\xa7\x40\x41\x00\x70\x92\xbe\xdc\xe4\xa5\x82\x4c\x1a\xd7\x77\x02\x13\xdc\xf7\xba\x3c\x11\x2c\x87\x04\x5c\xbe\x46\xf4\xc0\x47\xcd\xd7\xfd\x11\xe2\x53\x96\xcb\xf5\x27\x20\xc4\xb7\xb4\x20\x6f\xc7\x6b\xd8\x0f\x88\x9b\xb0\x51\x67\x16\xf4\xf7\x67\xa9\xa4\x81\xbf\x9c\x19\x28\xce\x6a\x5e\x44\x0f\x9b\x98\xf6\xf7\x6b\xa8\xac\x9c\x32\x1f\x5f\xa1\x2b\x26\xf9\x02\x84\xf8\xbb\x13\xd9\x1d\xdd\x19\xda\x89\x41\xc9\xf1\x77\x74\x03\x0c\x4e\x3d\xe4\x0d\x8d\x96\xfb\x74\x2e\xb9\x8f\x88\x9d\x3a\xaa\x46\xd3\x1f\x11\x52\x03\xd8\xa1\x8c\x80\x04\xe3\x73\x9a\xbe\x10\xf2\x03\x86\x20\x60\xff\xe1\x6c\x8b\x96\x73\xc0\xac\x74\xec\x52\x0d\x88\x44\x1d\xd1\xdb\x28\xf5\xe5\xb6\x9d\x55\xed\xce\xe3\x63\x48\x10\xe4\xa2\x9f\x29\xbe\x91\x88\x2b\xf1\x0b\x06\xeb\x8f\x26\xab\x10\x22\x8f\xb8\x7e\x9d\x5b\x37\x7e\x7b\x90\xc8\x1b\x90\x1f\x70\xa5\xdf\x84\x0a\x3b\xc4\x80\xdc\x83\x7a\x01\x38\x06\xf7\x15\x5a\xf7\xea\x3c\x87\x44\xa5\x14\x26\x70\xf9\xb5\xe7\x06\x8b\x6f\x76\xb9\x97\x5f\x74\x76\x53\x93\xfe\x2e\x9c\x89\x02\xb2\x67\x1c\xac\x8d\x50\x47\x46\xa4\x02\x90\xc5\xbf\x3b\xa6\x41\x0d\xb1\xcd\xd1\xb6\xd4\x15\x9e\xdc\x81\x40\xa9\x73\x40\x2f\x2f\x9b\xfb\xf2\x13\x1e\x98\xa1\x7d\x59\x56\xdc\xac\x09\x08\x7a\x6f\x61\x94\xd2\x93\x57\x08\xfb\xb9\x07\x0e\x65\x33\xf6\xd4\xe3\x4b\x52\x18\x8d\xc6\xfb\xd9\x58\xe5\xa2\x86\x48\x19\xe1\xdb\x4a\x7d\x39\xf4\xba\x2e\x18\xe0\x27\xf8\xe2\xdc\xbf\x6b\x56\x89\x41\x0d\xb9\x62\x09\x1d\x6d\x11\xae\xfb\x8e\x67\x13\xc8\x1f\x3a\x07\x66\x7f\xdb\xac\x11\x2f\x29\x2f\x2e\x7a\x45\x6b\x71\x25\x24\x74\xa1\x3c\x9c\x1f\xfd\x4c\x5a\x57\xbb\x04\x89\x7e\x75\xdf\x65\x63\xf4\x2a\x30\xc5\x43\x8d\x3d\xa4\x34\x10\x78\xc7\x8c\xdf\x8d\x62\x87\xc9\x91\xab\x9c\xc4\x18\x2d\x9d\xa1\x73\x09\xe7\xcd\x69\x15\x70\xf0\x71\x6f\x2b\xea\xf3\xc8\xc9\x6a\x7a\xaf\xd5\x44\x3b\x4c\xe4\x22\x0b\xa5\x48\x51\xf4\x96\xca\x22\xf3\x6c\xea\x20\x80\xb2\x1f\x64\x4d\x92\x81\x49\x7b\xe1\xcb\xb7\x29\xbe\x2a\xdd\xa6\x1d\xfa\x62\x56\x78\xc3\x16\x28\x5e\xb3\x4e\x91\x6f\xab\x47\x54\xa2\x20\xf8\xad\x29\xa3\xf5\x9c\xdd\xac\x01\x78\xb0\x73\xb9\x8e\x0e\x64\x4e\x50\x13\xf0\xec\x87\x3a\x84\xb5\x47\x0d\xf1\xb7\xf8\x9f\x2d\xb2\x13\x30\xd5\xe2\xb2\x7c\x05\x34\x51\x7e\x23\xe6\xae\xe8\xf1\xc7\x8e\x9c\xaf\xb4\x0d\x41\xc1\x92\x5f\xc9\x8f\x5e\xb8\x58\xd9\xe6\x65\xdc\xac\x7e\xe1\x3f\xaa\x67\x8f\xbc\xdb\x2b\xd8\x67\xfb\x07\x89\x64\x0e\xf3\x23\xa8\xb0\xf8\x88\xea\x76\x06\x0a\xe6\x4d\xf9\xff\xb0\x47\xb3\x4b\xbf\xc2\x50\x68\x85\x36\x48\xd9\x83\xd6\xc2\x3e\xcd\x40\xb8\x13\xb3\x3a\xb1\x05\x4f\xb0\x7c\x14\x5a\x74\xc8\x6a\x70\x03\x52\x00\x38\x7c\x76\xb9\x2c\x8f\x1a\xc8\x0e\x79\xeb\xf0\x95\xb6\x49\x70\xd8\x0a\xb5\x16\xe8\x48\x67\x2f\x67\xe0\xf9\x2a\x66\x11\xb1\x10\x08\x54\xf9\x67\xcb\xa3\x92\x7a\x87\x57\x3a\x32\x39\x7e\xac\x1b\x8e\xf0\xab\x91\xab\x9a\x00\xbe\xf7\xbe\xa2\x1a\x8b\x19\x4f\x3c\xc4\x39\xf8\xe4\x80\xec\x06\xb2\x71\x95\x04\xc4\x41\xa6\x38\x0f\x8c\x0b\x1e\x52\x88\x63\x16\xb5\x2b\xf1\x0f\x6f\xd7\x52\x19\x3e\x33\x05\x44\x09\xb7\xb5\x18\xa6\x7a\x1f\x5a\xf1\xfd\xf1\x4a\xb2\x50\x69\x92\x50\xb4\xc3\xcc\xd1\xe6\x6d\x95\xe5\x4d\xc7\xec\x94\x02\xfc\xaa\xc2\x03\x9c\x3b\x63\x36\xfc\xf0\xcb\xcb\x2e\x6e\xca\x10\x28\x37\xd9\x4b\xf6\xf2\xe4\xf7\x5b\x14\x32\x9c\xc0\xd7\x15\x4b\x11\x39\xa0\xc3\x15\x90\xeb\x62\x3b\x69\x3a\x1b\x87\xba\x21\x96\xdf\xcc\x71\xbe\xc5\x52\xf4\xed\x02\x3c\xd7\x95\xd4\x57\x98\x28\xc6\x7f\x1a\x2d\x6a\x2d\xed\xd9\xc2\x29\x3e\xef\x4d\xd6\x95\xbe\xdd\x38\x7b\x0f\xc4\xb4\xfb\xb7\xeb\x21\xc7\xf0\xbb\x50\xbc\x5b\xea\x91\xae\x0b\xc2\xd1\x11\x90\xb5\xcf\x7d\x4f\x0a\x41\x21\x37\x20\x45\x44\x98\xc9\x50\x45\x36\xec\xa3\x5f\xbd\xa7\x0d\x0c\xeb\xe9\xa0\xe4\x43\x27\xc5\x3e\x40\x42\x64\xe3\xd3\xdd\x42\xf0\x1b\xd7\x50\x83\x70\x6e\xa0\xf1\xb9\x5e\x7d\xb8\x0d\x7e\x4e\xfc\x98\x2a\x5c\x7b\x42\x0e\xf0\xfc\x32\x66\xb8\xb7\x46\xdc\x9e\x22\xaa\x32\x7e\x1a\x0d\xee\x1d\xaa\x80\x55\x02\x6e\x01\xb8\x4e\xb1\x7c\xb6\x68\x2f\x17\x5e\x8c\xce\x7f\x69\x84\x38\x6d\xd2\x22\xbc\x58\x8a\xfe\xab\x22\x2b\x88\x2e\x12\xd4\x2c\x86\xba\xc4\x43\x74\x5a\x87\x28\xb8\x52\x8e\xd6\xdd\x06\x93\xae\xc5\xd8\x43\x8c\x7b\x66\xe9\xe4\xb8\xb6\xb7\x35\xe4\xb8\x15\xda\x01\x4e\xfa\x7b\xf9\xc2\x96\x2c\x5a\xcf\x6d\x2d\xb7\xa2\x56\x81\xc0\xca\x1e\x90\x95\x29\xca\xba\xf7\x51\x9d\xf7\x34\xfc\x17\xf4\x09\x3c\x0a\x5a\x13\x08\xfe\x05\x6f\x64\x33\xd6\x06\xad\x86\xf8\xf2\x66\xd7\xd6\xfa\x14\xad\xa5\x46\x4c\xec\xfa\x89\x88\xe8\x33\x53\x54\xaf\x10\x14\x80\x98\xe1\x7f\x78\x1a\xce\x21\x74\x8b\x24\x69\xb2\xe5\xc3\xdd\xda\x4c\x1e\x55\x30\x87\x3b\xf1\x33\x63\xf6\x4e\x4d\x58\x86\x30\x21\x2c\x33\xf8\x99\xd1\x4a\x4b\xcc\x26\x26\xf5\x02\xcc\xd5\xba\x8d\x61\x6f\x0f\x16\x0f\x9e\x81\x28\x82\x71\x62\xe5\x90\xf4\xa2\x04\xec\x67\x81\xa5\xcd\x15\x7b\x18\x41\x71\x91\x91\x4c\xce\x4e\xa7\xfd\x0f\x6a\x22\xa5\xab\x38\xfc\x9c\x12\x12\xa9\x09\xfd\x9d\xc2\x4a\x00\xbd\x16\x57\xf3\x64\xa8\xa9\xaa\xfa\xda\x14\x7d\xa2\x3a\x77\x16\xa7\xe1\xbe\x77\xb7\xc6\xdd\x8e\x0b\xe2\x84\x39\xb4\x6b\x9d\x9e\x4c\x32\x3b\xd9\x5b\x4b\x5f\x94\x22\xf5\xb5\x30\x30\x6b\xc4\xa7\xcd\xb6\x4a\xbb\x36\x0c\x06\x68\x97\xc8\x06\xfe\xfa\xf4\xe8\x0c\xc5\x9b\x39\x48\x58\xd6\x1b\x5f\x7d\x30\x0b\xfe\x36\x71\x1c\x40\x9a\xd5\x93\xa3\x3f\x6f\xc9\x36\x65\x5c\x5c\xc5\x0d\x1d\x94\x6c\x3c\x79\x83\xc6\x62\xc0\x2e\x68\xb6\x95\xfa\x72\x97\x3d\xa8\xd9\x67\x52\xca\x38\x41\x3b\xeb\xa1\xb3\x70\xda\x48\xb5\xc3\x98\x96\x4d\x93\xb7\x8f\xcd\x84\x46\x96\xcc\x10\xe3\xf5\xc4\x5e\xcc\xae\x98\x99\x73\x67\x8b\xe3\xaf\xe3\x54\xfa\x46\x1b\xae\xea\x97\xf8\xd6\x3a\xa5\x08\x09\x55\x65\xed\xbd\x83\x45\x2e\x0d\x76\xc9\xd1\xa0\xd7\xb4\x5a\xba\xdc\xe3\xfb\xc4\x25\x22\xc5\xd7\xc7\xff\xed\x67\xb2\xef\x8f\x04\x3e\x06\x9f\xd5\x52\x64\x0b\xe9\x21\xbf\x46\x69\x40\x43\xe8\x64\xbe\x37\x5d\x98\x3a\xb6\x36\x81\x3a\x6a\xef\x8a\x1c\x9d\x31\x30\x03\x9c\x3f\x3e\x1d\x13\x36\x48\x43\x1d\x67\x1e\xd0\x14\xe2\x78\x97\x02\xf6\xf9\xaa\xe7\x64\xd4\xb7\x30\xe6\xf7\xc5\x8f\xb7\x5f\xde\x3e\x58\x0a\xc3\x34\xe2\x5f\x5d\xba\x5e\x06\xc2\x20\x4e\xe2\x78\x8d\x5c\xb2\xe5\x34\x2a\x15\x7b\xe3\x79\xf5\xde\x27\x92\x81\x8f\x4d\x5d\x51\x40\x7d\x47\x80\x4c\x97\x20\x62\x8b\x6c\xbf\xc5\xd0\xf0\x64\x82\xb3\xce\x57\x7c\x61\x70\x93\x1d\x24\x0e\x88\x99\x78\x08\xe6\x1e\x7b\x4e\x89\xb8\x20\xf0\x94\xbc\x2b\x76\x44\x5e\x18\x97\xc1\xe1\x30\xa7\xf8\x1b\xd7\x29\x6c\xc9\xf8\x41\x27\xd8\x19\x4e\xc7\xd9\xac\xa3\x51\x43\xa7\x9c\xc2\x31\x0b\xbd\x87\x20\x29\xba\x96\xcf\x7a\x44\x82\xbb\xf1\x7d\x5d\xc9\xd4\x0e\xcd\x00\x10\xa7\xfc\xae\xef\xdb\xab\xf4\x28\x70\xd9\x27\x02\x2d\x3a\xf1\x88\x9e\xa2\x61\xdc\x55\x83\xc4\x31\x39\xbe\x1b\xaf\x67\xa3\x3c\xf2\x3c\x64\x23\x13\x1a\x07\x59\xd8\xff\x82\xa7\x3f\x2a\xe7\x22\x9a\x19\x4e\x76\x1d\xfe\x56\xc3\xc0\x76\x21\xdb\x46\xe0\x06\xa2\x4c\x4b\x26\x67\x7f\xc9\x63\xd4\xa5\xa1\x6b\x72\x94\x74\x82\xa0\x7a\x54\xc3\x6a\x96\x91\x6d\x53\x28\xcc\xf3\x1b\x0e\x4f\x52\x38\x8d\xdc\xe3\xa8\xe9\xfc\x18\x55\xd0\xe8\x1c\xcc\x21\x29\xf8\x95\x14\x64\x64\x2d\x62\x7f\x23\x3f\x3e\xf2\x35\x43\xe6\x4f\xbd\x02\xd3\x96\x63\x87\x46\x37\x1d\x66\xa0\x24\x73\x71\xb7\x1c\x44\xf3\xe0\x80\xfd\xc0\x6f\x4d\xa0\xc2\x23\xcb\xf2\xc3\x7c\x8f\xf0\xa1\x57\x6e\xd2\xe3\x3a\x26\x97\x27\xc0\x97\x77\x76\xf2\xd0\x7e\xe1\x31\x1d\x38\xce\x89\xf5\x89\x23\x9f\xb1\xff\x25\x5d\x42\xcb\x64\x38\x31\xb6\xbc\xe1\x21\xd9\x81\xc2\x71\xdc\x36\x34\x83\x25\x33\xf1\x18\x2c\xac\x11\x92\x79\x37\x11\xb7\x5a\x0b\x9b\x70\xa2\xf9\xc5\xb7\x65\x45\x14\x61\x0d\x47\x1d\x8b\x15\x60\x2b\x76\x71\x00\xda\x53\xd1\xd1\x23\x9a\xc6\x10\xea\xf1\x13\xa8\xdb\x89\xd9\xb0\x2f\xd7\xa1\x3a\x30\x52\xa3\x79\x1f\x0c\x55\x66\xc7\x61\x9c\xf4\xb8\x4a\xeb\x41\x70\x2e\x79\xa8\x18\x7e\x0b\xb4\x70\xa6\x62\x0e\x10\x75\x14\xd5\x06\xa1\xfa\x1b\xff\xf5\x9b\xae\x46\xb0\x52\x41\x32\x3f\xd5\x8c\x80\x71\xb7\x19\xfa\x38\x69\x2e\x0c\xb4\x34\xc8\x77\xe8\x71\x8d\xb4\x90\x25\x15\x7a\xa1\x34\x31\x7b\x73\x53\xaf\x68\xf3\x5b\xc1\x2f\xb0\x30\x5e\x33\xf8\xe3\xde\xfd\x22\xdb\xb8\xf5\xd4\x70\xf9\x3a\x9c\xd4\xae\x67\x8a\x5c\x15\x3d\xb8\x0a\x62\x2e\xf9\xdb\xb2\x1f\x53\x77\x69\x57\x22\xb1\xbc\x7c\x57\x76\xce\x59\x86\x8a\x23\x3a\x56\xd6\x3a\xe6\x04\x7a\x8b\x51\xd7\x0e\xdd\x98\x34\x88\xb3\x95\x64\xd7\xbf\xf4\x92\x8a\x3f\xb0\x85\x06\x7b\xee\x9d\xb2\x5e\x73\x08\x29\xfd\x44\xbd\x34\xff\xa1\x2d\x32\x48\xdb\x1c\x7f\xcb\x69\x43\x0b\x94\x55\xde\x45\xfc\xf8\x7d\x78\x6f\xeb\x89\x3a\xc3\x95\x50\x3c\x4f\xe3\xac\x66\x2c\xe5\x53\x9b\x24\xb3\xf3\xfc\xcb\xaf\xfd\x5f\x80\x0c\xe8\x53\xbc\xb5\x5f\x49\xfb\xc2\x72\x00\x82\xe1\x17\xb7\xc8\x05\x10\x07\x91\x38\x95\x6d\x4d\x90\xe5\xff\x35\x22\x83\xc2\x95\xe5\xde\xff\x4e\x4b\x0c\xcd\x2d\x86\x2c\x09\x3c\x89\x7e\x37\x50\x9b\x5e\x3a\xa8\x4a\x5c\x9c\xa0\x15\x2f\x7a\x77\x82\x12\xfe\xdd\x26\xe5\x89\xaf\x1d\x4f\x69\xe1\xc2\x1f\xe7\x7d\x79\x5e\xc8\x09\x49\xb1\x14\xfd\xf3\x16\x55\x9d\xaf\x62\x87\x5c\xfe\x4f\x1c\x72\xe3\xb7\x49\x55\x42\xb3\x16\xef\x9b\xd9\x8a\xbd\xa2\x0a\x44\x7a\xec\x36\x5d\x18\xb4\x27\xa5\x23\xef\x7b\x46\xcb\x8d\xe2\x13\x42\xd4\x57\xf9\xc9\xea\x1b\x45\xe0\xb4\x62\x5c\xbf\x4d\xf6\xdb\x18\x4a\x46\x26\x97\x2d\xd7\x2c\x62\x90\x8b\x43\xce\xb0\x4f\xb6\x52\xf4\x04\x64\x0d\x65\xc0\x6c\x94\xfa\x72\x8b\xf7\x6a\xea\x4b\xc8\x12\x86\xb2\x47\x34\x55\x3f\xe4\x56\x19\xb1\x7b\x12\x5d\xb4\xb7\x56\x48\x2f\x90\x6a\x93\xf4\xae\xf1\xf5\x17\xe4\x0b\x88\xff\x47\xd3\x2f\x2c\xd2\xea\xee\x06\xb2\xe3\xa2\xd6\x05\x54\x59\x6e\xf5\x29\x8d\x22\x8e\x40\x88\x85\xff\xe3\xc5\x57\xca\xe9\x5d\x03\xf3\x59\x72\x6a\xf1\xd0\x76\x2e\xbb\xb0\xdb\xdb\x54\x28\xe3\x93\x3b\x26\xea\xa7\x5a\x85\x04\xa8\x4c\x6c\x12\x40\x36\x9a\xbf\xb1\x65\xbc\x74\x6b\xb1\x9b\xe8\x5d\xe3\x4e\xa5\x2b\x27\x8c\x9f\xc3\xf9\xf3\x15\xf9\x11\xca\x4c\xcc\xc0\xbf\x63\x82\xe6\x1f\xdb\x3e\x63\xd6\x15\xf3\x12\x28\xd8\x8f\xdf\x52\x6d\x25\x2a\xf1\x9f\x89\x22\x72\xbc\x60\xc8\xf8\x5e\x62\x04\xb2\xfb\x39\xad\x50\x43\x0c\xc8\x3e\xf1\xfd\xd4\x75\x39\x24\x3e\xa2\x12\x34\xec\x9d\xab\xd3\x44\xb6\x4b\xa5\xd6\x19\xf7\x1c\x51\x54\x24\x52\xbe\xea\xc2\x65\x50\xca\x07\x60\x5f\x54\x08\x7a\x35\x04\x80\x6d\x0b\x94\xe5\x5b\x8a\x2b\x18\x10\xed\x38\xd3\xe1\x47\x2b\x46\x66\x25\x1a\x92\x8e\xee\xc3\x23\x54\x20\x12\x71\x01\x74\x72\xe3\xce\x51\x5a\x5c\x2f\x8b\xc9\xcb\xd9\x7b\x00\x52\x78\x43\x0a\x8c\x52\xd2\xf3\x7f\x3c\x29\xd3\x7d\xea\x71\x66\x20\xd8\xc2\x73\x21\x05\x0d\xa2\x17\x5f\x06\xb2\x6d\x78\xb3\x0b\x35\xcf\x02\xdf\x23\x38\xf5\xa3\x6e\x34\x26\x69\x01\xc5\x03\x87\x4e\xdf\x49\x96\xfc\xe5\x4b\x34\x79\x62\x14\x7f\xb6\xb0\x9d\x29\xf5\x15\x3a\x1e\x54\xa5\xac\x1c\x52\xb4\x13\xe9\xcf\xd2\x5c\xa1\xc6\xb2\x31\x44\x65\xe1\xa0\xf0\x27\x43\x42\xc6\x1b\xc4\xe7\xe8\x3c\xf9\x8a\x1e\xd9\xa4\x5f\x6b\x7c\xc4\x8b\xf0\xbc\x58\xb1\xbb\x0e\x42\x56\xe6\x72\xb7\x7d\xf9\xf1\x4b\xb3\xfb\xbf\x41\x58\x35\xae\x46\xf8\x38\x8a\x37\x8b\xa7\xa9\x72\x45\x60\x55\x1c\x5f\xca\xc7\x4f\x6a\x42\xf5\xd4\x0f\xe2\xd3\x53\x4f\x39\x2e\xbb\xf2\x22\x2d\xd5\xf5\x31\x62\x66\x2d\x81\xef\x3e\x5d\x1b\xab\x74\x3a\xab\xd0\x97\x4c\x12\xca\x79\x7b\xb4\xa1\x20\xee\x22\x7e\xa6\xc2\x33\xf6\x3e\xa4\x21\x21\x71\x99\x85\x92\x68\xfd\xce\x74\x85\xd5\x44\x98\x0d\xb7\x9d\xfb\xd8\x95\x19\xe9\x5c\x99\xa5\xf2\x0c\xf5\xbe\x71\x5a\x75\x4a\x38\xb8\x12\x7a\xab\xa8\xac\x5a\xd8\x13\x16\xf2\x98\xe8\xbd\xa7\xc5\x63\x87\xd8\x49\x76\xe7\xee\x19\xa9\x70\xbf\x38\x07\x96\x27\xf3\x0b\xed\xc4\xfe\x16\xf9\x54\x98\xed\xe6\xff\x79\x80\x28\xd2\x4c\x51\x60\xe4\x6e\x1e\x28\x94\x60\x10\xab\xab\x10\x91\x72\x4d\x6b\x7b\x78\x18\xd5\x93\x56\x62\x6e\xdc\x20\xbd\x0c\x02\x94\x10\xa0\x0f\xd7\xde\x97\xdd\x47\xd4\x4e\xac\x1b\xeb\x1d\x3a\x2b\x06\xb9\x62\x46\x9b\xdb\xb4\x4d\xd2\x95\xcb\xa8\x17\x21\xd6\xdc\xdd\x39\xef\x62\xed\xd9\x99\xd8\xf7\xc1\x63\x12\x52\xf4\xf9\x9a\x02\x95\x57\xc3\x2e\x75\xb0\x4b\x5d\xe1\xac\x78\xd5\x2e\xa5\xf5\x64\x53\x10\x9f\xf9\xd6\x3a\xed\xaf\x90\x1f\x14\xab\xe0\x7b\xc5\x77\xf1\x97\xee\x56\x2c\xe7\xa9\xeb\xc7\xd5\x14\x24\x6c\x7f\xbd\x4d\x69\xff\x22\xa6\x9c\xb0\x85\xa1\xd3\xb3\x49\xd8\x9c\x22\x37\x22\xef\x2b\x14\x97\x88\xd2\x9a\xab\xcb\x41\x0b\xa8\xf0\x65\x68\xc3\xf2\xf2\x27\x85\x47\x2f\x7f\x70\x88\x32\x1a\xe1\x8b\xeb\x6f\x06\x4a\x3d\x43\xb5\xc0\xcc\xb3\x01\xc3\x33\xab\x8e\xeb\x70\xe7\x6f\x9c\xd2\xe4\xcc\xc3\xbb\xa5\x02\x67\x26\x97\xfa\xea\xb7\xe5\x09\x10\xba\x41\x8d\xb8\xf5\xc4\x47\x6e\xd4\x10\x59\xb2\xf8\x71\xf5\x1c\xf8\xb8\xe1\xd7\x51\x0f\x2a\x96\xa2\x0d\x07\x15\x57\x0a\xca\x2c\xcc\x12\x72\xf8\xfe\x45\x50\x2f\x2c\x42\x76\x40\xea\x4d\xf5\x42\xe1\xc3\x5b\x53\x4c\x49\xc8\x2b\x82\xab\x1e\x81\xb5\x78\x0d\xab\x81\x9f\x77\x72\x6b\x8b\x5e\x90\xbf\x59\x8d\xb3\x9a\xf3\x5f\x54\x50\xc0\xbe\x8f\x9d\xb2\xdd\x93\x99\x70\x3f\x7a\x40\xe3\x46\x87\xe0\xb0\xa1\x65\x5d\x3f\x3b\x35\x0e\x56\x3f\x46\x66\xb3\x95\xc0\x5f\x2e\x85\xdd\x52\x8f\x9f\x26\x8f\x4b\xbf\xbc\x65\xbc\xd4\x3e\x6d\xa6\x42\xfc\xf6\x2d\x05\xc4\xc3\xbd\xde\x24\xbb\x78\x7a\x65\x6c\xd3\xd2\x0f\x7c\xc1\x9f\x1d\xfd\xaa\x46\xad\x65\xa4\x21\x7c\x98\x7f\xa2\xb1\xd5\x71\xb7\x67\x53\x92\x28\xa3\x1a\x9f\xdd\x04\x0f\x79\x89\xb0\xe5\xd7\x7a\x61\x8f\x0a\x60\x33\xc7\x54\x91\x0a\x4c\xfd\x8c\x85\x4f\x43\xe7\x7a\x55\xe2\xbe\xf2\x90\xe2\x28\x14\x9f\xfd\x4a\xdc\xff\x7f\x81\x66\xeb\x80\xdc\x2a\xdf\x4b\xd1\xf7\xb6\x0d\x53\xda\xcb\x5c\x54\xb0\xcf\xb8\xe6\x25\x65\x3c\xc1\x49\xe0\x70\xb6\x46\x4a\xdb\xba\x0b\x31\x06\x1c\xeb\x97\x87\x28\xdd\x9a\xb8\x8a\x6a\x10\x1f\xc8\x67\x3d\x1a\x0d\x17\xba\x7d\xa9\xef\xc7\x0d\x6b\x47\x28\x0c\x2b\x87\x70\x29\xa8\xe8\xec\x14\xed\x19\x63\x46\xa8\xb0\x00\x7d\x96\xc9\x8d\xef\x10\xbb\xce\xaf\x6a\xce\xe1\xfe\xcd\x4e\x79\xac\xc8\xff\xed\x2d\x12\x12\xdb\xd1\x3a\x37\xfe\xd1\x9b\x2f\xc8\x5e\x4d\xd9\xa6\xd4\xb2\xc1\x7c\x96\xeb\xd8\x4c\x93\xa1\xc0\xc6\x88\x93\x57\xa1\x23\xf3\xcd\x48\x96\x4f\x35\x94\xd8\xd1\xfc\xe8\xa9\x14\x9f\xd7\x31\xa7\x2d\x2b\xf0\xf1\x81\xda\x24\xb0\xc0\x6c\xcb\x06\x2b\xb1\xbe\xc2\x62\x8d\x38\x12\x50\x46\xdd\x80\x82\xf2\x18\x6f\x23\xdc\xf7\x66\xff\x13\x75\x2f\x71\xa9\xda\xf3\x8a\x02\xd1\x20\xdd\xdc\x2c\x88\xc3\x49\xee\x98\xad\x35\x9c\xa8\x83\xa9\x2b\x4a\xdf\x68\xc0\x2b\xd9\xc6\xa8\x8b\x1a\x3d\xfd\x28\x21\x7d\x49\x48\x1a\x97\x43\x06\x32\x61\xf9\xdf\x6b\xf6\xac\x89\x8d\xb5\x00\x17\xed\x9b\x00\xf5\xbe\x83\x60\x5a\x57\x8a\x0e\x2d\xd4\x06\xd3\x7c\xc2\xcf\xfd\x73\xf3\x4f\x1d\x54\xaa\x51\xcc\x7c\xca\xd5\x75\x0a\x77\x8d\x87\x6f\xed\xa4\x09\x83\x71\xe8\x16\x29\x44\x0f\x9a\xf3\x2d\x85\xf4\x27\xd5\x1e\x5e\xa9\x4f\x3f\x33\x4a\xc5\xb8\xac\x2e\x01\xc4\xa5\xd4\x97\xfb\xf1\x71\xbd\x09\xe0\x61\x96\x74\x9a\x72\x6d\xf7\xe8\x59\xb0\x9d\xa8\xe8\x44\x87\x36\x0b\xfb\xca\xd2\xf2\xc5\xbc\xdd\xc5\x9f\xf9\xed\x1b\xe4\x0a\x0c\x3d\x9f\x1b\x95\xbf\xb7\x1e\x60\x97\xd7\x59\xb4\xae\x48\x1f\xe4\xef\x14\xe6\xf5\x1e\xc3\xe0\x77\x18\x7f\xe5\x27\xe7\x2b\xf7\x4d\x7d\x91\xcd\x16\xe6\x8d\x6f\x62\xf4\x34\x38\x52\x34\x29\x9e\xf7\x3c\x93\x16\x85\x2e\x72\x8a\xa5\x68\x92\x91\x86\x31\x62\x36\xcd\x79\x6e\x7d\x51\xab\xc4\x6d\xea\x63\x3f\x10\x7a\xc0\xcf\x2d\x53\x50\xbd\x38\xe8\xc2\xd8\x4d\x8a\xe6\xb3\xe7\x54\x61\xfa\x1a\x46\xcc\xe7\xd9\x66\xee\x47\x2d\xc3\x94\x43\xd2\x0f\x50\xfc\x16\x0f\x8d\x4e\x2f\xc2\x6c\x16\x47\x2d\x0c\x7d\xb0\x69\xcc\xd7\x48\x9d\x1f\xa3\x4d\x86\x66\x60\x1c\xba\x75\xd1\x7a\xb9\x69\x49\x53\xcb\xd4\x52\x4c\x49\x7f\xb3\x52\xf1\x87\x46\x0e\x66\x7c\xf8\x34\x6b\xd6\xc4\xe6\xea\x8e\xd3\x72\x93\xd4\x22\xbf\x7c\x82\xb4\x09\x53\x41\x77\xb9\x41\x7b\xd2\x5e\x41\x7c\xf2\xc9\x7f\x18\xb5\x0e\x92\x6c\x0b\xdb\x48\x4c\x2f\x8d\x6b\x1e\xd7\x41\x06\x09\x32\xa9\x50\xbe\xff\x42\xb1\x6b\x78\x30\x3b\xea\xca\xe1\xa4\x68\x2e\x35\xd5\x7e\x3b\xce\xd7\x7a\x40\xc4\xb5\xec\x1e\x68\xd7\xdd\xf3\xbc\xd6\x0a\xc5\xc8\xa4\x89\x73\x3b\x53\x81\x3e\x0d\x15\xbc\xb5\xdd\x96\xa1\x67\x9a\xbe\x34\x46\x8e\x4f\x24\x2c\xc1\x4a\x03\x8e\x93\x4b\xb4\x87\x47\x1c\x8f\xb3\x02\x9c\x44\x31\xbf\xaf\xf0\xe1\x01\xf0\x87\x4b\x42\x3b\x90\xb2\x4e\xe1\xb4\x11\xea\xa1\x50\x41\x1c\x70\xfb\x17\x21\xe7\x6b\x52\xee\x49\xf2\x8b\x69\xf2\x98\x21\x8c\x4b\xc7\xf4\xe5\x47\xac\x93\x09\x80\x8f\x48\xb3\xc2\xe1\x1d\x8f\x67\x73\x50\x07\x0b\x43\xd4\x57\x77\xc9\x45\xda\xde\xa6\xbc\xad\x5f\xed\x55\xf4\xfc\xc2\xa0\x1a\xba\x30\x53\x79\x6d\xb2\x16\x89\x90\xed\x88\xf6\x45\x21\xec\x86\x83\xf4\x0a\x18\xa6\x47\xff\x74\x4a\x4b\xd4\x69\x12\x30\xa2\xf6\xdb\x07\x2b\x7d\x93\x62\x29\x1a\xfd\x8a\x02\x81\x8d\x77\x2c\x7f\x5e\xf1\x9b\x3f\x7c\x0a\x10\xb0\x1c\x8d\x3a\xf9\x45\xf9\x77\xb3\x3a\xe2\xdd\xf4\xf5\x4d\xda\xa1\x85\x5d\x5c\x21\x89\x02\xd7\xe1\x5b\x24\x43\xc2\x17\x02\xe7\x2a\x3a\xe6\x87\x0f\x0f\x4a\xa3\x24\x3f\xb1\x9f\x52\x34\x02\x2a\x71\x32\xc5\x0b\xc4\x8d\x0f\x68\x80\xd6\xb0\x5c\x4e\x4d\x49\x1e\x7d\x54\x90\x97\x6a\x18\x01\x4e\x3c\xff\x98\x0b\x1f\x8b\xba\xf8\x4b\xec\xcb\x7d\x65\xad\x3c\xda\x2d\x39\x53\x2e\x45\x4f\x6d\x55\x4c\x59\x19\xa5\x9e\x32\x1a\xea\x33\x36\x4b\x5b\x4f\x9f\x36\x03\x53\x9c\x63\x10\x2f\xaf\xf2\x6b\xb4\xae\x64\x29\x0b\x5e\xca\xe8\xde\x12\x1f\x68\xdd\xb9\x7f\x5b\x3a\x42\x2c\x72\xe2\x72\x4d\x31\xd8\x85\xd5\x6d\xd9\x47\xd8\x85\x49\xb5\xe6\x0b\x75\x96\xdc\x2d\xc6\x84\xa6\x33\x10\x94\x8d\x60\x50\x77\xf3\xae\xd4\xe2\x13\x55\x19\x4e\x4a\xbb\xdc\xf7\x57\x6b\xf0\xe9\x1a\x4d\x40\xb0\x9f\x3d\x2c\x7d\x0d\x7a\xca\xc9\xfa\x3f\xbb\x05\x38\xe4\xab\xb8\x3b\x53\x06\xca\x6b\xbc\x70\x78\x84\x88\x51\x7e\x18\x27\xd0\xc2\x8f\xf9\xb7\x1a\xbd\x38\xa1\x1a\x89\x1e\xfd\x27\xc7\x4a\x6d\x07\xae\xf2\x3c\x6c\xc0\x70\x85\x84\x61\x55\x09\xf8\xab\xac\x51\x6d\x9d\x3c\xd4\x93\x78\x8e\x17\x26\x7b\xd9\x29\x2b\x0e\xbd\x5a\xfc\xf1\xcd\xaa\x4e\x57\xcf\x1d\x9c\x9e\x44\x10\xe6\x4b\x6d\x10\xef\x16\xc5\x65\x00\x0a\xbb\xe3\xeb\xdd\x16\xc1\x6f\x2d\x45\x4c\x10\x07\x26\x3c\x0f\x8b\x07\xd8\x23\xfc\x4b\xef\x9a\x9b\xdc\x2b\xd7\x80\x15\xda\xa2\x85\x01\xf3\xf9\x21\x68\x63\xb7\xd8\x3e\x2b\xed\xcc\xee\x90\xcb\x75\x66\x02\x62\xc9\x4d\x3d\xa8\x01\xfb\x6a\xd8\xf1\xb1\xdd\xc0\xbe\x68\xba\xaf\xbb\x43\xa1\x66\x20\x86\x05\xda\x74\xfe\x19\x9d\xf8\xb3\x31\x24\x2c\xa1\xf2\x15\xda\xde\x1f\x9b\x3c\xce\xf6\xa6\x13\xca\x7b\x43\xa3\x6c\x85\x9e\x4d\xcc\xf8\x55\x00\x14\xb8\x2c\xb2\xec\x00\x03\xcd\x2d\x37\xdd\x18\x2e\xd2\xee\x06\xc1\x41\x62\xdf\xf5\x86\x42\x9d\x81\x91\x60\x44\xd6\xab\xa4\xe1\x30\x60\xc8\x4e\x96\xcc\x83\x5e\x4b\xa6\x63\xe2\x11\xa1\x2e\xfc\xe9\x97\x14\x72\xa5\xc2\x69\x5b\xa4\xa9\xbd\xd0\x06\x0c\xcc\x78\xdf\xd2\xdb\xae\xc9\x92\x70\xe5\xa6\x90\xe1\x54\x0d\xab\x7b\x5f\x4b\xf2\x0e\x66\xaa\x33\xdc\x0f\xbd\x2d\x13\x61\x8f\x50\x5b\x49\x5e\x0a\xeb\x22\x0d\x3c\xc4\x78\x99\x1b\x2f\x61\x81\x15\xa9\xec\x19\xac\x04\x07\xfe\x22\x26\x0b\xa5\x5b\x44\xec\x38\xe8\x6a\x52\xbf\x33\x39\x87\x1e\xba\x88\xcf\x4e\x69\xca\x0c\xc0\x94\x0b\xb0\x7a\x7f\xb3\x35\xbb\x0b\x3b\xe2\xbf\xe4\x7d\x89\x59\x4f\x5c\xac\x94\xaa\xb4\x99\x1d\x6c\xb8\x07\x07\x29\x2b\xae\x14\xb5\x4c\xd4\xb5\x72\x38\x83\x16\xb2\xbc\x93\xc2\xdc\xa7\x43\x48\x1c\xe7\x1e\xdb\xaf\x0a\x34\x30\xc1\x58\x1d\xfb\x84\x2c\x55\x3a\xd2\x15\x6b\x7c\xf8\x1e\x55\x52\xcd\xa7\x89\x70\xc3\xa6\x45\x9a\x67\x28\xed\x4a\xc7\x30\x7b\x16\x67\xdf\xb1\x4d\x38\x71\x6a\xa5\x98\x96\x71\xc2\x08\x8b\x4f\x90\x97\x27\xaa\x52\x55\x2e\x07\x2c\x26\x56\x40\xdb\x95\x9a\x8b\xb8\xd5\xd0\xaf\xe1\x80\x8b\x84\xaf\x7e\x44\x97\x25\xb1\x2c\x1b\x92\x93\xe8\xa7\x96\x26\xc5\xc5\x52\xa5\x37\xbd\x08\xbe\x5d\x52\x5b\x3a\xe6\x16\x8b\xa5\xe8\xeb\x0b\xb3\xb5\xb8\x1f\x62\xdf\x77\xc2\xa0\x96\xa5\xc9\xe4\x2a\x7b\x60\x6e\xc7\x28\x4f\x34\xcf\x3b\xa7\xd9\x49\xda\x34\x70\x49\xfd\x72\xc5\xf5\x61\xdd\x65\xf2\x79\x20\xcb\x21\x09\x39\xfc\xee\x47\xe4\xfe\x01\xcf\xde\x44\x99\x78\xd5\x09\x6d\x62\xc5\xea\x61\xe0\xd7\x01\xc5\x1b\xff\xc2\x93\x77\xc8\xa7\xa3\x18\x8a\x95\xfa\x72\xfb\x95\xc0\xd3\x43\x5d\x1f\x73\x0b\xb0\x3f\x7a\x6a\x3a\xd1\xc1\xe5\x9b\x78\x69\xf9\x8e\x2b\xf9\x12\xa8\xbb\x8b\xb2\xa0\xd6\xa3\xec\x91\x6b\xf7\xc0\x19\xb2\xd4\x27\xb8\xa6\x24\xfe\x9b\x26\xcf\xe6\x80\x98\xb4\x20\xb9\xb2\x12\xba\x9c\x05\x37\x99\xff\x7c\x32\x0a\x26\xb7\x75\xcf\x2d\x5b\xb8\xcd\x9a\xb5\x40\x5a\x7a\x97\xa2\xdc\x20\x78\x7c\x57\x2f\xe6\xc1\xe6\x9f\xe6\x8e\x54\x41\xf8\x02\x6a\x14\xcd\x79\x5a\x43\x17\x93\x6e\xea\xc2\xed\x27\xef\xe1\x39\x05\xbe\xcf\x4d\x52\x2c\xda\x05\xf0\xf5\xcd\x5a\x7f\x9c\x74\xc3\x64\xe6\xae\xcb\xb2\xb2\x2f\x97\xc2\x50\xf1\xce\x19\x4d\x3e\x36\xd8\xf1\x02\x21\x68\xb6\xe4\x15\xf5\xe5\x35\xe2\xb5\xcb\xf3\x91\xdf\x6a\x92\x88\x16\xf1\x4d\x0a\x43\x23\xfe\x77\x6f\xac\xd7\x04\x1c\x91\xd3\x4b\x34\xf5\xf7\xbb\x7b\xf5\x21\x92\x9b\x20\xc9\x96\xae\xd1\x43\x5e\x7a\xba\x25\x1e\xd5\xba\x2d\x01\x57\x0b\x4e\x30\xfc\x1f\x11\x43\x89\xeb\x69\x85\x2f\x80\x75\x8f\x5c\xa2\xed\x1a\xbb\x1c\xb2\x9e\xac\xa2\x64\xee\x48\x9b\x26\xe0\x45\x6d\x1b\x31\x61\x51\x18\x7d\xed\x83\xec\xee\xf2\x39\xdf\x84\xd3\x9c\x74\xc0\xd4\xfa\x59\xda\x10\x8c\x31\xec\x07\xdc\x19\x82\x15\x4b\x11\xda\x97\x3d\xbe\xdd\x78\xdd\xf5\x4b\xcb\x1a\x79\xa9\x32\xb1\x0b\x3d\x82\x6a\x3c\xfd\xdf\xba\x39\x4d\x54\x00\x57\x1d\x6f\x8a\x89\x2b\x14\xe2\x89\x4d\xb8\x45\xef\x8b\xaf\xe9\x4a\x1b\x6e\x50\x13\x8d\xa1\x4e\x41\xeb\xb0\x03\x9c\x6c\xc9\x4f\xad\x97\x6f\x3b\xac\x22\xd7\x02\xd7\xd2\x42\xe9\xac\x70\xfa\xb5\x31\xe2\xe8\xb8\xfc\xcc\xe9\x2d\x4a\x23\x52\xf5\x56\xdd\x35\x22\xf3\x8d\x57\x40\x83\xac\x73\x6c\x8b\xa2\x1c\xd3\xc5\x3d\xee\xf8\xf8\x68\xf4\x65\xe2\x32\x7c\x9f\x70\x8c\x45\x9c\x0f\xb2\x4b\x3d\x55\xf6\x29\x33\x5b\x95\xbb\xf0\xdb\xef\x0a\x4c\xaa\x6c\xe3\xc4\x2b\x63\xc3\xed\x69\xa5\x57\x25\x0a\x08\x38\x97\x6f\x24\x5d\xf4\xd0\x0e\x95\x12\xd0\x18\xf8\x81\x6e\x5e\x88\x2c\xc2\x01\xcf\xf1\xc3\xfe\xc8\x13\x9a\x3e\x46\xe0\x00\xc8\x36\x95\x32\xaa\x58\x3a\xd1\x21\xce\x61\x43\xc9\x0b\xdf\xbc\x5b\x56\x47\x16\xea\x89\xef\x32\xfa\xe2\xb2\xb4\xb1\x44\xad\x0c\x36\xbe\x30\x6c\x8d\xa2\xbe\x5e\x4e\x60\xec\xc6\xa4\x69\x69\x6d\xeb\xf7\x28\x60\xc2\xfc\x88\x41\x1a\x53\x96\x2b\x78\x21\xfb\x72\x8f\xeb\xe3\x18\x77\x76\x0c\x16\xa9\x70\x55\x90\x5d\xbf\xb1\x36\x1b\x60\x6a\x28\x30\x6b\x20\x68\x9a\x3c\x94\x1f\x0f\x9c\xa6\x6d\x19\x97\x70\xc3\xd4\x46\xb9\x57\xaf\x38\x1f\xd9\xab\x59\xb9\x21\xc6\xe2\x97\x9c\xcc\xd5\x07\x58\x1f\xd1\xa2\x81\xef\x84\xbe\x8f\x5d\x6d\x03\x1e\x53\x7a\x13\x4e\x5c\x58\x96\x91\xcb\x2d\xfa\x2e\x54\xbb\x98\x18\xec\xf1\x8d\xfb\x07\xea\x72\x6d\xd8\x0c\x6d\xce\xa1\x11\x0d\xc8\x29\x07\xb2\xdb\xde\xc7\x76\x25\xe1\x85\x4b\x3b\xb6\xa1\x4b\xb2\x71\xa8\xee\xd2\x2e\x61\x82\x79\xed\xdd\x8a\x93\xac\x50\xcc\xfd\xfe\xa3\x9a\xb1\x1c\x15\xbe\xbb\xd1\xa9\x47\x47\xaa\x24\x4a\x06\x96\x7f\x7d\xf9\xd7\x37\x35\x09\x23\xb3\xc0\x4e\x2d\x3b\x3f\xbd\x5b\xf4\xd5\xe2\x10\x46\xeb\xc5\x52\x54\xdb\xaa\x40\x9e\x59\x40\x4c\xbb\x09\xaa\x9f\xfb\x8a\x86\x59\x8e\xeb\x79\xda\xc0\x02\x5b\x32\x35\xca\xea\xfd\x70\x70\x63\x80\xcd\x5a\x73\x23\x30\xf7\x11\x90\x8c\x04\xd6\x6a\x85\x32\x27\x35\xcf\xcf\x77\xcc\xd2\x1f\x0d\x16\xdf\x50\xd8\x74\xbe\x3c\x69\x19\xf2\x3c\xa8\x1b\xac\x07\xb2\x7f\xd0\x3e\x6f\xee\x3c\xf1\x32\xfe\xdd\xbb\x48\x41\x8d\x36\x73\x0f\x76\x2a\xcd\x67\x4a\xab\x08\xe8\x11\x7f\xbf\x3a\x4d\x54\x66\xce\x98\x13\xbf\x93\x3b\x15\xa8\x12\x48\x58\x22\xa0\xeb\xce\x1e\xa2\x68\xb3\xb8\xdc\x57\x81\x33\x27\xe3\x8f\xf9\xec\x1e\x6d\x8b\x53\xb3\x8e\x03\xb1\x41\x0a\xe3\x5a\x32\x24\xd3\x06\x07\xd3\xc5\x1f\xb9\x64\x57\x76\x01\xf5\x90\xa0\xb7\x86\xea\x59\xc9\xcd\x73\x13\xd3\x72\x6e\xce\xbc\x2b\xb8\xe5\x61\xeb\x47\x65\xb5\xce\x38\x43\x98\xeb\xd1\x35\x43\xd9\x7e\x7f\xfc\xc2\xe4\xf6\xe6\x14\x4b\xd1\xd4\xb7\x35\xae\x98\x43\xdd\x2a\xa8\x04\x9e\x3d\x23\x81\xa7\x44\x11\xa3\x7d\x7e\xa7\xa2\xce\x18\x67\xe5\x17\x3c\xa2\xd0\x4c\x36\x86\x30\x91\x2a\xe4\x8f\xab\xaa\xfb\x18\x79\x00\x73\xce\x8f\x59\xa6\x18\x0c\xd5\x10\xcf\x99\x37\x2b\xf6\x80\x71\x15\x04\x8a\x6e\xa3\x9f\xd7\x04\x48\x99\x23\x18\x27\x59\x5d\xe6\xf3\x8e\x35\x01\x7d\x00\xfa\x0f\xe3\xf0\x87\x6a\x32\xed\xc3\x6e\x15\x0b\x2d\xa7\xf8\x5a\xe6\x9f\x51\x15\x77\xc1\x66\x48\x60\xaf\xe7\x1d\xcc\xe2\x0a\x5d\xdc\xc5\x0f\xd4\x0c\xd4\x77\xd5\x4e\x28\xdd\x6e\x44\x36\xea\x22\x49\x31\x66\x4b\x27\x9f\xd9\x73\xe3\x87\x7c\xdb\xa9\x8b\x15\x48\x5a\x03\x33\x97\xf2\xe3\x40\xb6\x5f\x1e\x5e\xaf\xd0\x1a\x18\xf7\xef\xe6\x9a\xc0\xf9\xe1\x43\xd2\x10\x6c\xd2\xcc\x60\xee\xb4\x42\x88\xc4\xae\x4f\x02\xca\xc1\x4a\x7c\x17\x5d\xf4\xae\x26\xe6\x4f\x69\x9c\x0f\x88\x91\xea\xf7\xcb\xe3\xf4\xac\x1d\x6c\x0d\x7a\x8b\xa5\xe8\x90\x46\x46\xec\x0c\xfd\x40\xe4\x23\x2f\x4f\xd1\x72\x9a\x38\x52\xb8\x3a\x63\x76\xa7\xd2\x49\xb3\x08\xae\x26\xf6\x9b\xf9\x7f\xdd\x37\x46\x6d\xa9\xdf\xbc\x78\xf5\xe5\xfc\x5f\x38\xbc\x67\x9d\xa2\xcb\x0c\x76\xe0\x62\xcc\x68\x4c\xed\x95\xef\x48\x88\x81\x88\x89\x47\xfe\x3b\x2f\xea\x12\x9c\xf5\x64\x24\xf1\x96\x6e\x0a\xc3\x89\xee\xbc\x57\x6d\x9c\x1b\xdd\xaf\x9e\x9e\xa8\xa6\x3a\x94\x0c\xb9\x1c\x9a\x75\xb1\x33\xf3\x85\xee\xe6\x67\x9a\x72\x94\x7e\x3e\xa8\x09\x5c\x2b\x38\x71\x00\x39\x28\x5c\xbd\x68\x9c\xc2\x94\x0c\x48\xb1\x02\x93\x39\x18\x20\x56\x76\x0d\x11\x35\x4e\x1c\x24\x78\x84\x68\x68\xa9\x21\x37\x72\x2b\xdb\x3d\x02\x7a\xf2\xcb\x85\x23\xb3\x60\x72\xe1\xbb\x5c\x7c\x62\x9c\xfa\x90\x17\xaf\x56\x6b\x81\xad\x22\xf5\x89\x93\x2a\x57\xb0\x0e\xc6\xac\xc9\xbe\x54\x13\xf9\xb5\x38\x2f\xce\x6e\xb1\x5f\xec\x84\x89\xe8\x6a\x8e\x6e\xd3\x07\x3b\xad\x87\x54\xe1\x0e\x07\xf1\x16\x62\xb4\xf1\x80\x6a\xb0\xcd\x30\x6e\x92\x3b\x32\x6e\x7c\x30\xfb\x87\x8c\xbb\x53\xd0\x35\xea\x50\xd0\x06\x2c\x59\x6e\xe9\x92\x6c\x34\x28\x97\x2f\x0b\x20\x81\xc8\x7e\xe6\xf7\xd7\x0c\x53\x8e\x32\xc4\x35\x6b\x8c\xbb\x9e\x4f\xd1\x50\xed\x71\x2e\xd4\x25\x5c\x4f\xb1\x43\x53\x0f\xdb\xff\xef\x48\x13\x6d\x81\x91\x44\x53\x4f\xef\x2e\xf8\x88\x43\x7e\xa0\x73\x11\xbd\xf4\x16\x3c\x58\xcc\x31\xb8\xd0\xf6\xfa\xd5\x1b\x83\x45\xf2\x69\x86\xf0\x6e\x1c\x0d\x25\xae\xca\xaa\x97\xa2\xeb\x87\x09\xce\x20\xe6\x88\x1e\xe8\x48\x4e\x39\x9d\x6e\xff\x0a\x56\x3d\x3d\x7e\xbf\x09\xea\x0d\x4a\x40\x6c\x7f\xf3\x83\xcd\x8d\x6d\x7e\x69\x4f\xce\xd6\x3c\xbe\xb8\x03\x12\x49\xa5\x44\xf2\x7f\x78\x41\xd5\x7f\x46\x8e\x23\x8c\xa9\x72\x9f\x1b\x0d\x8b\xf2\x3a\x37\x1d\x20\xde\x2f\xbc\x4c\x96\x03\x5f\x3d\x6d\xfb\xfc\xae\x01\x40\xa8\x65\x18\x35\xf1\x5e\x8d\x5f\x2a\x56\xe0\x65\xc2\x2c\x98\x36\xe7\xf7\x41\x53\xbc\x78\xdd\xd5\x37\x35\x2d\xa8\x0d\x86\x2e\x6c\x5c\x06\xd9\x24\x21\x4d\xbe\x40\xb7\x06\x81\x49\xe7\xfc\xe4\x3a\xbf\xba\x1e\xae\x67\x09\xa5\x4d\x8b\xae\x50\xd9\x04\xf7\xe5\xd9\x7c\xac\xcb\xa1\xef\xf3\x15\x71\x3b\xee\x1e\xd8\x97\xfb\x8f\x2b\x55\x69\x30\xb7\x8b\x98\x4a\x67\xb9\x70\x97\xa6\x52\x4f\x02\x5a\x25\x7c\x06\xe5\xac\xcc\x66\xba\x61\x9d\xab\x3e\x08\xc6\x13\xc8\xd3\x5b\x7a\x27\x8c\x06\x42\x73\x04\xa2\xd7\x21\x91\x20\x2d\xb9\xaa\x79\x82\xb1\x5b\x01\x56\xf0\x16\x3f\x97\xb8\x2c\xf5\x19\xa7\x76\xa8\xc3\x6f\xe6\x88\x25\xf4\x5c\xb7\x8e\x2b\xe6\x4e\x84\xf1\xa5\x3e\x79\x7b\x93\xaf\x7b\x6f\x9a\x24\x3e\xb0\x3d\x5b\x50\xf7\x60\x3b\xf0\x89\x2a\xfd\x15\xfd\x4c\x9b\x5a\xf9\x28\x4e\x07\xf9\xdb\xbd\xfa\x71\x79\xa2\x5b\xd4\xe4\x96\x78\xd1\x17\x1f\x82\xe5\xc3\x71\x41\x9c\xb9\x2a\xb2\x9e\xa7\x34\x21\xeb\x46\x68\x73\x2e\xa7\x28\xae\xd7\x6e\x91\x77\x06\x3a\xc6\x3c\x74\x0d\xef\x94\x3f\x2e\xd3\x1e\x53\xe8\x83\x2e\x50\x74\xad\x6c\x5a\x05\x7e\xcd\x02\x57\x4b\xdd\xcd\x1a\xb6\xc2\xf8\x93\x92\xa4\x9c\x2d\xd0\xfd\x99\x4c\x1b\x31\x31\x58\xbc\x63\xbd\x86\x9c\x0e\x61\x9c\x66\x1c\xda\xa6\x3b\x25\x33\x31\xb8\x33\xb6\x68\x4d\x64\x8f\x51\x30\x65\x06\x7b\x8f\x5f\x3f\xad\x9a\x3c\x33\x5a\x47\xc5\x52\xf4\xfa\xf3\xba\x18\x5b\x50\x03\x74\xd0\x2a\x25\x59\x0d\xdd\x5a\xc8\xe2\xca\xe0\x27\x05\x09\x29\x73\x42\xc6\x50\x8f\x12\xb3\xb7\x4c\x9c\xa8\x50\xcd\x58\x2f\xd5\x09\x17\x7d\xc6\x7a\x85\x7d\x62\x52\x57\x34\x18\x78\xb9\xad\x12\xf8\x43\xd7\xac\x61\x50\x36\xfe\x61\xb7\xac\x75\x55\x35\x35\xe3\xab\x4a\x5a\x57\x26\xbc\x60\x8a\xf6\x69\xc3\x5a\xb0\xc0\xb5\x13\x3f\x95\x6b\xc6\xcb\x4c\xa1\xab\x26\x1d\x49\x72\x8b\xd7\x00\x7a\xe5\x06\xf8\xfd\x66\x59\x59\x6d\xb2\xe8\x07\x98\x65\xbb\x55\x05\xd6\x48\x49\xe8\x3e\x27\x47\xf1\x0f\xfe\xce\x42\x0d\xf6\xe4\xe2\xa0\x5f\x0a\xd4\x77\x16\x41\x62\xc7\x61\x35\x09\x78\x2e\xf7\xa4\x96\x38\x70\x01\x83\xd4\x1e\xe6\x21\x4f\x7b\xdf\x24\xe0\x96\x0f\xe2\x9f\x5f\xd9\x34\x59\xe1\x99\x08\x1e\x44\x93\x06\xee\x21\x7d\xf0\x20\x74\x02\x60\x40\xbb\xee\x03\x1d\xeb\xdc\x4d\x30\x1f\x46\xc3\x77\x7c\x7e\xa7\x22\xec\x8d\xca\x9c\x10\xd1\x97\x9f\x38\x51\x87\x11\x85\x55\x1f\x28\xe6\x67\xb7\xcb\xe4\xca\xc2\x0e\xb5\x89\x9f\xb8\x54\xac\x78\xe5\x12\x79\x7c\xf3\x49\x14\xb2\x68\x53\x30\xed\x79\x4a\xee\x41\x07\xb3\xaa\x48\x40\x07\xbf\x31\x5c\x3d\xfb\x29\xc7\x7d\xdf\xbc\x76\x9c\xb2\x84\x81\x46\x2d\x8d\x2c\x7e\x2a\x8f\xe8\xd9\x33\x39\xba\x6e\xb1\xb0\xf9\xaa\x54\xc0\x5b\x2a\xba\xa0\x2d\x1b\xf7\xa5\x8a\x05\x00\xae\xf3\x6f\x2d\xd6\x62\x1d\x69\x60\x57\x20\x14\xde\x7b\x50\xe7\x32\xce\x9b\xcb\xf7\xf6\x8b\x6b\x52\x20\x75\xad\x59\x04\xdb\x58\xaf\x84\x13\x07\xa4\xc2\xa2\x83\x65\x31\xa1\xab\x85\xa8\x82\x32\x2e\x3c\xc6\x88\x63\x4d\xaa\x70\x36\x49\x95\x48\xbe\xf1\x30\x44\xf6\x45\xb8\x37\xf4\x35\x86\xe6\x3b\x1a\x26\x98\x59\x98\x25\x6f\x76\xf2\x16\xbd\x63\xc4\xf5\xd1\x44\xa5\x5b\x59\xa8\xb0\x7f\xb9\xd0\x6e\xb1\x14\xad\x38\x93\xce\x4c\x6b\xb4\xe9\xcd\x19\xdf\xd9\x3a\x54\x19\x06\x78\xbc\xe8\xf9\xbc\x86\x7d\xb5\x90\x4b\xb0\xad\xf4\xd6\xfb\x0a\x37\x9e\x6e\x51\xe9\x52\x0d\x62\x89\x18\x5e\x79\x66\x92\x12\x4b\xb8\x0f\x46\xd3\xc6\x9d\xb3\x77\xb8\x38\x4f\xbd\x90\x99\x35\xc4\x99\x6e\xc6\xbf\xef\xd7\xbd\x44\x38\xfa\x3a\x21\x6a\x18\x77\xed\x18\x95\x5d\x37\x60\xd2\x59\x8a\x4a\x6b\xd2\x42\xab\x13\xc5\xc9\xce\xb6\x87\x34\x6d\x8a\x4a\x25\x2e\x8d\x1a\x09\x62\xb3\x30\xe2\xb0\x7c\x99\x15\xe0\x16\x44\x1b\x2d\x39\x15\xa9\x23\x66\x2b\xef\x24\xb7\xf9\x3d\x85\xae\x4b\xaa\xb5\x38\x43\xaa\xf3\x86\x74\xfe\xae\xe7\xe0\x4d\xae\x42\x26\xe3\xaa\xa1\x72\x09\x1c\x5f\xae\x4b\xfc\x99\xd8\xb6\x81\x8f\xc6\x31\x61\x3d\xa7\x34\x7e\x70\x68\x0b\xcf\xb9\x42\x87\xa7\x97\x19\x01\x0a\x68\x72\x48\x7d\xf4\x4a\x45\x9f\x00\x35\x18\xe1\xac\xc7\xe8\x2b\x42\xa8\xdd\x12\x12\x6d\x3c\xe7\xed\x00\x43\xae\xe2\x8d\xe6\x55\xa1\x4d\x2a\x15\xd5\xa5\x70\x73\xaf\x60\x16\x27\xe6\xe0\xd1\x4b\x0f\x6b\xba\x82\xd8\x37\x19\x29\x03\x27\x83\xe3\xab\x66\x68\x62\x56\x55\xea\x7b\x38\x01\x13\x75\x8c\x6f\x3a\xec\x1a\xc4\xc2\x42\xff\xc8\xb8\x78\xb7\x6a\x5e\x9a\x64\x3b\x71\xa6\xf3\xfa\xa5\x8a\x00\x15\x37\x19\x8f\x0b\x70\xbd\x6b\x71\xe2\x89\xfe\xbc\xef\x81\xe7\x5b\x8a\x7e\x77\x40\x07\x4f\x63\xcb\x4e\x75\xb6\x0e\xd4\x26\x88\x58\x0e\xf1\xba\xa9\xb1\x35\x19\xa4\xdc\x8a\x8b\x18\x6a\x9a\xb7\x7f\xe7\x15\x18\x9f\x74\x74\x70\x79\xb9\x2f\x9c\xd6\x60\x8f\x8c\x38\x42\x41\xe8\x82\x0d\x09\x23\x42\x44\xab\xbd\x43\x34\xac\x04\x2e\x63\x1b\xc6\x91\xd1\xaa\x9a\x7c\x1e\x34\x54\xcf\xd1\xbb\x0f\x37\x21\xac\x71\x8a\x5c\x37\xee\xb9\x65\xb8\x22\xf3\xc0\x39\xdb\xa5\xbe\xfc\xb9\x57\x86\x88\x15\xe1\x94\x6d\x00\x03\x5e\x78\x66\x94\xcc\x8e\xd5\x54\xfd\xb7\x77\x43\x25\xb7\xca\x03\x07\x0c\x0d\x7c\xbb\xa2\x45\x45\xc6\x27\xe2\x25\xd1\xcf\x5b\x9a\x3d\x77\x4c\x62\xc7\x1b\x54\x7f\x9a\x7f\x70\x47\x6b\x79\x63\x62\x48\x92\xbb\x68\x87\x46\xc1\xa6\x01\x78\xdc\x23\x50\x4b\x84\xf7\xf5\xde\xe9\xfe\xb4\xcf\x78\x0c\x2f\x9f\x37\x34\xf9\x69\xd1\x66\xe0\x6d\xa7\xec\xe8\x5a\x8f\x03\xe0\x95\xe3\x0d\x29\x86\xe2\xd1\x90\xd7\x63\xc7\x1e\x49\x47\x18\x01\x22\x49\x2a\x3e\x69\x83\xec\xd5\xb4\x76\x70\xa8\xc3\x41\xc5\xe5\x2c\x0c\x18\x11\x18\x08\xe3\x56\x0d\x63\x21\x10\xc6\x02\x71\x9f\xff\x10\x4b\x80\x0f\x16\x78\xf8\xe6\x3f\x3b\xfa\x62\x57\x05\xe6\x35\x1b\x6d\x5d\xf2\xc8\x45\xfa\xae\x29\xdb\xd8\xf1\x93\x36\xf6\xdf\x1f\x83\x2a\xef\x06\x38\x40\x5f\xd2\x02\x65\x10\x32\x97\x36\x30\x4b\x44\x28\xbf\xbe\xfa\x52\xed\xc9\xb9\xb8\xc7\x0c\x83\x20\x6b\x94\x7c\xab\x26\x79\x58\xa6\xb4\xee\x70\xf7\xdd\xe4\x83\xb6\x1f\x14\x2e\x0e\xd4\x0e\x5d\xe8\x76\x46\xdf\x1d\xa6\x02\xf1\xeb\x98\x35\xef\xd2\x17\x1f\x11\x62\x8e\x3e\x56\x0c\x7a\x73\x9f\x9b\x20\xbd\x1a\x78\xda\xda\x3e\x44\x91\x08\x4b\x58\x4d\xc5\x52\xf4\xb3\xf7\x55\x10\x1e\xc3\x5c\x08\xe4\xd7\x9a\x54\x87\xef\x70\xfb\x18\x71\xf2\x3d\x3c\x1a\x88\x77\x57\x23\x9b\x54\x28\x73\xb9\x51\x09\x7f\xb3\xed\xc7\x32\xfd\x47\x53\x90\xcf\x6e\xbc\x74\x8c\x52\xd6\xf9\x01\x0a\x19\x72\xf9\x18\x28\xfa\xc5\x06\xb8\xeb\xa5\xa8\x1a\xa6\xd4\xb9\xdb\x37\x34\x75\x05\xac\xd4\x99\x61\x66\x45\xa2\xaa\x3c\xcc\x2a\x94\x65\x8c\xac\x8c\x25\xd3\xc6\x2a\xd3\x56\xbb\x92\x16\x15\xf1\x1f\x9f\x37\x24\xbb\x1b\x84\xed\xad\xd6\x4e\x7b\xf6\x75\x05\x08\x82\x3c\x7e\x4e\xe7\xc6\x4b\x63\x50\x3f\x54\x6c\x74\xf3\x0b\x07\x0c\x14\x49\x00\x47\x35\xbe\x33\x0b\xce\x5b\xe2\xf2\x2e\x3b\x2c\xe4\x7c\xc7\x66\xa9\x11\xa1\x0a\x3d\xe6\x8c\x7d\x72\xc1\x9a\xa4\xd1\x7c\x80\x1b\xff\x36\x3e\x83\x35\xf5\xf9\x1b\x8e\xee\xd1\xcc\x56\x3c\x46\xcc\x14\x2b\x62\x3c\xfe\xd2\x50\xb9\x88\x45\x22\x3e\xeb\x25\x45\x89\x9a\x86\x70\x10\xbf\x79\x46\xe9\xb3\xdb\xc8\xac\x3b\x80\xfa\x18\x77\x4a\xe9\x50\xd0\x4a\xc0\xc9\xc7\xf1\x63\xd8\xb2\x5b\xe9\xa2\x23\x4a\x7c\x8c\x4c\x2e\x1e\x3c\xfc\xa1\xe1\xca\x3c\x0f\x83\xcc\x57\xe1\x82\xc7\x47\x66\x6f\x4f\x48\x80\xce\x7d\x5b\x8a\x1e\x53\x8e\x25\x29\x8a\xd6\xc7\xac\xf6\x19\xed\xf3\xae\x28\xf2\x0e\xfb\xa5\x59\xdd\x58\xd5\x19\x46\x6b\xf5\x97\xa9\x53\x4e\x05\x7b\x8d\x27\x8e\x6b\x45\x36\x8a\xf3\x61\xd0\xaa\x34\x6a\x9a\x14\x7e\x83\x12\x13\x73\x36\x58\xc2\xf7\x3a\xa9\x89\x69\x04\x9c\x16\x2c\x78\xb4\x9f\x5f\xa1\x72\xab\x41\xb1\xbf\x58\x8a\x9c\x93\x50\x3f\x5d\x4d\xdd\x80\x51\x1d\x1f\x1a\xfd\xf9\x11\x25\x09\xa2\x14\xe8\xd1\xfb\x9e\x90\xd8\xaf\x6e\xec\x52\xaf\x46\xcb\x7c\x92\x51\xc8\x1f\xd5\xe2\x9e\x53\x06\x2f\x1d\x3e\x77\x0f\x97\xca\xf5\xd9\x85\x11\xa4\x1e\x77\x3f\xd0\x54\x6d\x53\x1b\x31\xbf\x46\x3c\xa1\xa8\x46\xa6\x2b\xa0\x18\x6c\xc1\x9b\x30\xbe\x7f\xe5\x70\x05\x11\x1c\x02\x90\xb4\x60\xef\x52\x1a\x48\xb4\xdb\x07\x6c\x61\xe1\x0b\xaf\xeb\x8e\xfd\x0e\x01\xef\xd8\xfc\xf1\x21\xf2\x2f\x78\x4f\x8e\xef\xef\xf7\xbc\x16\xad\x4d\x29\x52\xd7\x99\x6f\xe9\xd0\x21\xc7\x0b\x39\xa2\x87\xd7\xf8\x27\x35\x85\x1b\x9a\xd8\xd7\xf3\x07\x70\x70\x86\x26\x47\xcb\xc2\x20\xc5\x58\xff\xe4\x9e\x61\x4a\xe7\x1f\xaa\xe2\x0b\xf6\xe8\x52\x68\x1c\x50\xc3\x2f\xbc\xb2\x49\x26\xd1\xdc\x0f\xcc\xec\x69\x2a\x48\x5e\x98\x08\x7b\xfc\x2a\x5e\x8a\x8c\x7f\x30\x71\xef\x74\x08\x97\x31\x36\xde\x7f\x58\xf7\xb9\xa9\x11\x37\x4d\xe3\x72\x17\xee\x90\x08\x14\xab\x99\xae\xcf\xce\x5d\xa2\x3d\xd5\x6a\x2d\x88\x57\x49\x46\xf0\x7c\xc7\xf3\x57\xfe\xff\x83\x47\xe1\x21\x39\x33\x71\x66\x87\x21\x32\xad\xc4\xc4\xf5\x43\x26\x52\xd6\x7f\x5d\xae\xd8\x70\x85\x7c\x00\x10\xfd\x60\x86\x56\x4f\x59\x0d\x62\xe2\x24\x02\x7b\x47\xb5\x3e\x3f\xb2\x93\x64\xdf\xf8\xed\x79\x89\xf6\x88\x23\x68\x97\xc4\x10\x99\x5e\xaa\x11\x2e\x6f\xe9\xc0\xd9\x11\x2a\xd0\x37\x89\x54\xcf\xbe\xa9\xb7\x22\x6d\xcc\x0b\x4e\xae\xe0\x9e\xeb\xd5\xb8\x96\x28\xb4\x08\x9f\x07\x03\xae\x3c\x47\x1e\xd6\x2a\x92\xd6\xac\x63\x44\x61\xdc\x59\x6d\xb8\x1b\x8a\xdd\x1d\xdd\x70\x5f\xda\xc2\x20\x95\x44\xa6\xee\xfb\xef\x8f\x52\x3a\x95\x8c\x91\x0a\x40\xc8\xa3\x05\x6b\x87\x2b\x03\x01\x0b\xf3\xb4\xcd\x7e\x58\x3d\x7f\x5c\x9f\x24\xe0\x75\x9e\x10\x2d\x05\xac\xd1\x1a\x64\x63\xd7\x24\x28\x05\x48\xcc\xcd\x36\x49\x68\x19\xc7\x95\x68\x45\xe4\x19\xf2\xd2\x3f\xac\x09\x31\xb7\xb7\xa5\x70\xbc\xe8\x9a\xd6\x6c\xb5\xed\x4e\x85\xe9\x53\xf4\xdf\xda\x68\x1a\x9b\xd4\xa5\x4e\xaa\x9c\x74\x6e\x86\xae\x1d\x00\x34\x17\xec\xb7\x0a\x5d\xf5\xef\x0d\xd4\x9d\x55\xaa\x55\x2e\xe5\x09\x96\xbb\x85\x0f\x19\xf0\xd6\x97\x23\xdf\x42\x1b\x79\x33\xe2\x4a\xf5\xd0\x62\x82\x81\x9d\x3b\xff\x8d\x4b\x94\x5a\x50\x98\xc7\xeb\x4c\xa9\xd9\x95\x6c\x45\x1c\xd4\x30\x65\x58\xa8\xe3\x42\x0c\x7f\x56\xf4\x93\x19\x4e\xc4\xc8\x72\x97\x2c\x6d\xb2\x8d\x72\xc4\xb2\x8c\x8e\x9e\x93\x09\x08\xd0\xdb\x39\xcc\x98\xdf\xdb\xc3\x27\xb3\x6d\xc6\xd9\x62\x94\x5d\xb8\x78\xcf\xf0\x2c\xd4\x86\x1f\xe4\x7f\x3c\x3a\x42\x69\xdd\x53\x87\x9f\x7e\xd1\x68\xcd\xac\xdf\xc2\x65\x46\x80\x52\x16\x7d\xe3\x11\xad\x73\x46\x6b\x94\x0f\xe8\xd3\x3e\x4c\xfe\xf0\x1a\x68\xd2\x96\x1a\xfc\x69\xc8\x19\xe5\x87\xc6\x6b\x40\x40\x8c\x83\x94\x3f\xb1\x66\x75\x13\xb8\x33\x7e\x27\x28\x91\x9c\xef\xcb\xbb\xc2\x8f\xdf\x0b\xab\x2e\x32\x09\x05\xf3\xdc\x7b\xde\xd5\xc6\xf7\x57\x74\x24\xb5\xee\x65\xdb\x64\xb8\xae\x21\xd7\x32\xc3\x0a\x98\x76\xdc\x7a\x44\xcd\xd0\x6d\x3b\x21\xb0\xe5\xfe\x77\xba\x42\x82\x54\x2d\x43\x1f\xbb\x47\x2f\x5d\xb1\x9f\x06\xc4\xa3\x2f\xa8\x90\x4b\xde\xac\xe1\xb1\x78\x40\x2d\x9d\x13\xf4\xc0\xb0\xac\x40\x8e\xe8\x76\xf9\x7e\xa2\x43\x3f\x30\xd0\x7a\x83\xc2\xd1\x16\xd6\xc8\xbc\x9d\x2a\xec\x3d\xa3\xfd\xf9\x42\x9a\x8c\xd9\x54\x71\x35\xce\x4d\x7a\x29\x61\xea\x9a\xd2\x58\xee\x99\xc5\x9a\x76\x60\xe8\x78\xe0\xe4\x29\x18\x5c\x27\xb7\x4b\x55\x80\x72\x53\x86\x6e\xb4\x9f\xbe\x48\x3b\x1b\x6c\x82\x1b\x38\x11\xe6\x30\x3e\x3f\x40\x63\xe2\xe2\x74\x50\x64\x54\xe7\xaa\x58\x19\xc0\x0b\xf3\x7f\xb8\x8c\xb5\x68\x65\x5d\x17\x6f\xac\x5d\xb0\x36\x5b\x8e\xd0\x6e\xda\x9f\x2e\xea\x65\x93\x13\x4b\x4f\xdb\xa6\x9c\xd9\x6c\x6c\x7a\x58\x05\xaa\x82\x8f\x75\xb2\x6d\xbf\x37\x6b\xa4\x3a\xce\x0f\xed\x0a\xa4\xd3\x5b\x9e\x11\x30\xea\xa0\x87\xc9\x2a\x60\xfe\x80\x4c\x54\xb7\x39\xdc\xa5\x2f\xf7\x56\x8b\xde\x49\xac\x85\x0e\x72\x49\x90\xe0\xf9\xd6\xb6\x8c\x56\xfa\x12\x4a\x29\xdc\x57\xf8\x9c\x0d\x1b\xe4\x2a\x66\x83\xad\x42\xf2\x5d\xe5\xb9\xa3\x45\xb5\x41\xec\xf8\x11\xd9\xd8\x4f\x7a\x31\x93\xcf\x97\x9b\x1e\xf7\xe0\x2e\xc2\x9d\x12\xb9\xe2\xcc\xae\xcb\xe4\x37\xf9\x1e\x46\xac\x28\x9c\xb2\xfb\x8c\x01\x13\x34\xbc\x22\x07\xd3\xc5\xa9\x8c\x7b\x34\x3b\x9c\xa1\x5d\xd8\xf5\x35\x7d\xf9\x49\x96\xc2\x53\x9c\xdb\xc6\xf5\xfd\x76\xe9\xc4\xf8\x06\x66\xbe\x84\x75\xff\xcd\x6d\xea\x2b\x66\x16\x36\x6b\x88\x14\x4b\xd1\x5f\xce\xca\x8c\x31\xa0\x1e\x20\x5f\xab\x9a\x06\xa2\x4f\xba\x45\x88\xdb\xbe\x63\xb2\x16\xfe\xa8\x83\xb2\x85\x4d\x74\x43\x21\xed\x4e\xe2\x7e\xac\x07\xaf\x3f\x21\x7c\xf4\xae\xbe\xae\x69\x11\x3f\x56\xc9\x7e\xbc\x4a\x2c\x4a\x34\x10\x8a\xdb\xa1\x2e\x5c\x8e\x9d\xc0\xa7\xd2\xea\x33\xda\xb9\x24\x4d\xf6\x3d\xee\x9a\x90\xff\x8f\x15\x69\xd4\x68\x50\xc5\x5a\xb1\xfc\xd2\x60\x91\xed\x77\xf1\xb2\xb5\xcf\x18\x70\x42\x70\x14\x28\x4d\x28\x23\x5f\x2a\x0f\x11\x9b\x1a\x01\x50\x20\x0a\x86\x64\x81\x50\x3e\x46\xd5\xd0\xb6\x85\x84\x40\x76\xe9\x77\x6e\xd3\x49\x44\x3e\xf6\x21\xb3\x28\xac\x79\x3a\xdd\xc9\xf3\xe6\x34\x09\xab\xe5\xae\x7b\x3a\xd1\x06\x64\xa8\x07\x76\x40\xc3\x82\x88\x91\x9a\x4e\x15\x4b\xd1\x17\x4f\x64\xbf\xa1\x81\x59\x8a\x74\xb8\x62\x82\x30\x60\x06\x1c\x87\x8a\xe1\xd0\xf4\x0b\xfd\x3a\x11\xea\xfa\xc6\xd5\x57\x8e\x10\x49\xbb\x4d\xad\x54\x24\x3e\xf7\xf8\x23\x5a\xf8\xa3\x21\x17\xce\xe3\x33\x68\x74\x62\xb8\xc4\x11\xb2\x54\xaa\x50\x83\x8a\xfa\x5d\xd8\xb6\xc5\xf0\xb1\xfb\x05\x79\x64\x57\x78\x8f\x92\x67\x07\x1b\x1e\xd4\x4e\x19\xea\x85\x00\xb4\x10\x8a\x1f\xd1\x07\xb2\x4a\xf3\x69\x06\xbc\x79\xde\x92\xe1\xa2\x48\xb1\xed\x62\x19\x0b\x76\xee\xb5\xbb\xf4\xc3\xd2\x43\x2c\x91\x5d\xfa\xe5\x6b\x00\xe5\x9f\x7a\xb3\xf0\x99\x39\xf4\x8c\x50\x11\x05\xb0\xeb\xf5\xcf\x8d\x48\x4a\x0c\xd6\x13\xd4\x40\xe5\x2b\x6a\x63\x52\xac\xa9\xd5\x4c\xb2\xaa\xa7\xee\x93\x6a\x7d\xb8\x4b\xc9\xa2\xa6\x7f\x30\x58\x12\x1e\x79\xb0\xa0\xe7\xf4\x8a\x82\xe0\x4a\x32\xae\x9f\xbc\x5c\x33\x45\x42\xc4\x05\x2a\x21\x47\xfb\xc6\xbf\x72\x47\x45\x63\xa8\xba\x16\x65\xbe\xe0\x9f\x18\x4f\x1f\xd2\x2d\x85\x3c\xea\x93\xd4\x99\x6e\xca\x99\x71\x6a\xe9\xec\x0a\x5d\x30\x40\xbc\x19\xbd\xda\x41\x0a\x83\x21\xa1\x7b\x11\x1d\x48\x60\x85\x0c\x99\xa0\x11\xb0\xe8\x98\xee\xab\x66\x12\x5f\xe0\x62\x78\xa7\xe9\x27\x1d\x5a\x76\x1f\x06\xa1\x23\xd4\xcf\xa3\x6b\xac\xec\x3f\x82\x3a\xad\x10\xcc\x32\xde\x59\xad\x0d\x6c\x19\x46\x4e\x3a\xbe\xbe\xab\xa6\xa5\x89\x36\xf2\x3c\x39\xee\xcd\x4f\xbc\x52\x08\x07\x27\x1c\xb4\xf8\xd5\x7d\x85\x29\x09\x15\x49\xc4\xc9\x0b\x2b\xdf\x82\x75\x70\x63\x5c\xa8\xc6\x5f\xfd\xdd\x3b\x64\x7f\x31\x08\x59\xbd\x58\x8a\xde\x7c\x5d\x2a\xa6\x71\x0a\xb1\x81\xe6\xa6\x3f\x69\xef\x98\x19\x7f\xce\xa0\xe7\x14\x2d\x06\x0e\x1f\x2a\x96\xa2\x9f\x2b\xb0\xc6\x59\x33\x67\x74\xcc\xe1\xde\xb2\x5d\x91\xee\xb2\x6a\xd6\xb0\x2f\x84\x55\x0a\x17\x76\xaa\xd5\x73\xc0\x55\x8f\xa3\x6f\x80\xcb\x6a\x71\x25\xa5\xbe\x22\x38\x61\x5c\xb8\x03\xb6\xf9\xca\x78\x1b\xa9\xfe\x66\xf9\x49\xb5\xac\xa3\x23\xf2\xfd\x90\x83\x07\xfb\x65\x70\xac\x7a\x44\xab\x54\x30\x72\x04\x20\x63\x2c\x18\x28\x15\x43\x57\x30\x93\x05\x78\x2b\xf7\x0b\xc1\x75\xed\x22\x16\x16\xd5\xb6\x71\x81\x26\x74\xb6\x31\x24\x66\x5d\xbc\xd3\x3f\x8c\xd5\xc3\x88\xe3\xa1\xc4\x6c\xb4\xb0\x40\xf0\xc1\x41\x9b\x9d\xe7\x8f\xf7\x6e\xd5\x3a\xa8\x98\x09\xc9\x77\x28\xc0\xf7\x6f\xe6\x17\x60\x63\xb7\x38\x4b\x78\x5c\xad\x91\xa4\x3b\x2c\x41\xdc\xd3\x2a\xf0\x94\x56\x35\x30\xb3\x6c\xda\xf0\xeb\xa2\xe2\x3a\xbe\x58\x9d\x91\x73\xab\x79\x64\xf2\xbb\xfe\xd0\xe9\x8c\xcb\x0a\x50\xa4\xe2\xb2\xeb\x07\xdb\x75\x83\x43\xea\x20\x9b\xd7\x30\x22\xf4\xde\xf8\x94\x8c\x6f\x3e\x07\x29\xf0\x9d\x6f\xec\xce\x3e\x9a\x1a\xb1\x13\xd5\x1e\x63\xd8\xd6\x6c\x61\x5e\xc3\xc4\x0d\x7a\xb1\x06\xd4\x9a\xdf\x2a\x03\x20\x32\x4d\xea\x38\xd4\x02\x40\x66\x7e\xc7\xe4\x09\xe2\x26\x5c\x3f\xb4\x05\xc2\x5d\x69\x1e\xe6\x6e\x7b\x20\x0d\x51\x55\x24\x3f\x34\x9a\x3b\x56\x4f\x96\xf8\xec\x91\x00\x43\xa4\xd4\x67\x2c\xbc\x6f\x4c\x46\xed\xc4\xc5\xbc\xd5\xc3\x9b\x27\xbf\x3a\x79\x89\xf2\xf8\x84\x1e\x7f\xd3\x91\xbe\xb1\x91\xbd\x71\x6e\xed\x27\xe6\x01\x5f\x5b\x27\x07\x95\x56\x28\x42\x4d\x93\x98\x25\x58\x43\x0b\x4f\x85\xe8\xf3\x8f\x0f\x4a\x82\xaa\x13\x6f\xb2\xc7\x96\xa6\xb7\x56\x27\x4c\xde\xda\xcc\x09\x8a\x71\x1b\x80\x54\xe3\x8f\xbf\x66\xc6\xc8\x6c\x8d\x26\x02\xc1\xb6\x11\xd9\xd5\x06\xca\xb6\x01\x4d\x16\x51\x69\xda\x24\xed\xc5\xbb\xc8\xe5\x98\x5f\xf9\x94\x7f\xba\x41\x1d\xb9\x07\x8c\xc4\xc1\x07\x1c\x0f\x46\x6e\x1f\xaa\xe0\x5c\x78\x7b\xa7\x6d\xa2\xc6\x92\xaa\xa1\x3a\xe6\x69\x22\x56\x3d\x41\xf3\x6f\x1c\x53\x5a\xe7\x36\x35\xeb\x7c\x3d\x5d\xf4\xa6\xe6\x58\x15\xba\x7e\x62\x52\xf4\xaf\xa3\x2f\xd6\xb6\x61\x5c\x45\x73\x4d\x20\x11\x42\xbf\xff\xdc\x48\x1d\xb0\x59\x2a\x96\xa2\xf3\x4f\x0a\x33\x84\x4a\x85\x7b\x6c\x70\x2b\x64\x36\xb6\xe9\xf8\x37\x09\xe8\x59\xe5\xe6\xde\xde\xa4\x63\xef\x8a\x38\x1d\x2d\x78\x42\x5a\x92\x22\x2f\x83\x89\x5d\x78\x30\xcd\x10\x29\x6b\x32\x58\xad\x2f\x1d\xa7\xf4\x1d\x6d\x1b\x40\xf4\xc9\x8b\xc8\x0d\xd4\x13\x5d\x55\xe1\xbb\x2f\xd7\x7b\x99\xd8\xed\x34\x8c\x93\x25\xb7\xe8\x07\x3d\x3c\x62\x15\x2c\xa6\x41\x44\xb8\x18\xc0\xe5\x4d\x09\x98\xe1\x1f\x50\xf2\xf6\x90\x31\x8e\x2b\x86\x3a\xf4\xdd\x06\x9c\x17\x52\xf7\xf3\xa5\x34\x97\x6b\x60\x5d\x20\x26\xaa\x0a\xe2\xf0\x6a\x06\xaa\x09\x49\x66\xb0\x65\xae\xde\x7a\x72\x50\x6a\x6a\x12\x4d\x9b\x36\x4a\xfb\xd7\x32\xef\x7e\x46\xdb\x75\x21\x36\xda\x9d\x7a\x98\xe5\xc7\x15\x52\xf9\x5d\xcc\x25\x47\xd2\xc1\xe0\x27\x35\x49\xa0\x0a\xff\x3f\xcd\xd8\x98\x42\xef\xab\x1a\xfa\x0e\xd5\x31\x6d\xe0\xb4\xe7\x65\xfc\xe3\x22\x08\x34\xd7\xb9\x7e\x40\x82\xb0\x09\x81\x97\xdf\xfd\x4e\x9a\xf2\x54\x38\x9b\xfd\xa3\x8b\xd2\xa3\xd2\xe1\x05\x47\xcb\x06\xd9\xef\x30\x19\xb2\xe0\x34\xb9\xc5\x12\xd4\x1d\xab\x41\x7c\x41\xd5\xfd\xcb\xc2\x21\x8a\xa0\x34\xef\xbe\x7c\x68\x27\x24\xee\x15\x46\xbb\x20\x69\x1a\x3b\x24\xfd\xc2\x79\x73\xe3\xa3\xd8\xb8\xe9\xc1\x91\x62\x01\xc4\x6f\x2e\x48\x40\xca\x06\xd9\x04\x75\xc7\x55\x26\xb2\xb0\xd3\x93\x91\x5f\x29\xbe\xae\x81\xb3\x88\x40\x54\x17\x26\x9d\xa7\x4c\x2e\x48\x27\xb6\x3b\x89\xcb\x13\x85\xdb\x07\x41\x4a\xbe\x9c\xb2\xa0\x96\x2c\xce\x31\x12\xbe\xcf\x4c\x9e\x56\x4d\xda\x9e\xfe\xc4\xe1\x7e\x2c\x6f\x4c\x48\x1f\x48\x8d\xf2\x93\xf1\x57\xf7\x67\xdf\x6a\x0f\x46\xcc\x07\xce\x5c\x9f\xf1\xd2\xe4\x49\x7a\x1d\xe1\x53\xad\x5b\x37\x6c\x53\xf6\x77\x3c\x46\x2d\xa2\x71\x2d\xff\xa4\x99\x51\x58\x61\x82\xa7\xfe\xec\x79\xf0\xbc\x88\x6b\x91\x06\xb1\xc2\xc4\x1c\xea\xf3\x53\xb2\xd5\x4e\x19\x54\x1e\xfb\x35\xf8\x1e\xfc\xb8\x04\xa4\xf5\x62\x17\x73\xf4\x4b\x76\x65\xac\xe8\x55\x7c\x04\x51\x40\x43\xae\x22\xf0\x95\xe5\x0a\x7e\x9e\x51\xd4\xac\xd2\xf8\x71\x45\x50\xb4\x81\x6c\x02\x1d\x9c\xf6\xe9\xea\xc0\x27\xe8\x49\xc9\xe2\xb7\x69\x23\x45\x5b\xe5\x0e\x4d\x9e\x0d\x4b\x60\xc9\xd5\x57\x37\x33\x57\xbc\x49\xda\x01\x5d\x8d\xd3\xb2\x22\x43\xd2\xe8\xf5\xfa\x7d\x8a\x29\x1a\xb7\x17\x1f\xca\xd2\xb1\xb5\x90\x12\x8d\xd6\x56\x34\xcc\x8b\x6b\xd2\x90\xa1\xaa\xc8\xd2\x73\xab\x1e\x80\x35\x7c\x23\xf5\x03\x78\xd2\xa3\x6f\x91\x47\x55\x7b\x47\x42\x18\xce\xcf\x7e\x45\x19\x75\x54\x2a\x62\x66\x92\xfb\xd2\xbb\x42\x78\xc1\xe7\xf0\xe9\x68\xe0\xda\xb4\x99\x6c\xa1\x54\x41\x76\xd6\x32\x85\x35\x3f\x37\xe1\x20\x5f\xf5\x96\xae\xe9\x87\xcc\xd4\xac\x65\x49\xb9\x29\x7b\xc3\x49\xbd\x34\x73\xaf\x02\xd5\x47\xae\x45\xac\x44\xb7\x3e\xbf\x54\xb3\x67\x20\x3e\x43\xd8\x26\x09\xbc\x69\xe2\x21\xd8\xd9\x82\x13\x1e\x1f\xd9\x03\xca\xa3\xe2\x5f\xbc\x7a\x71\x53\xf8\xf8\xf9\x13\x8a\xe8\x2f\x05\x31\xe4\xbb\x35\x49\x3e\x00\x6f\xa7\xaa\x89\x1f\x1c\xc8\xb4\x81\x44\xfd\x36\x67\x4a\x1a\x96\x19\x6d\x34\x2d\xaa\x69\x4f\x28\x47\x4c\x0d\xb3\x0c\x67\x2e\x3f\x4f\x63\xce\x78\x88\xb0\x84\x6c\xfe\xc9\xb6\x66\xb9\xa4\x32\xb5\x7a\x40\x6b\xe4\xb1\x59\xa3\xb4\x12\x4e\x68\x29\xe7\x4f\x1f\x16\x0d\x06\x8c\xea\xa2\x95\x7c\xf1\x83\x4d\x7e\x37\xb3\x5b\x2f\x87\x75\xd5\xae\xb8\xe3\xd7\x68\x1c\x27\xa2\x53\x5b\x35\x91\x0a\xae\xab\x5c\xe5\x07\x40\x1c\x58\x66\x6c\xd1\x9d\x7d\x70\x25\x81\xd9\x6e\x1b\x38\x4a\x9c\x43\x20\x61\x9b\xaa\xfe\x3d\xba\x5e\x26\xba\xc0\x7e\x16\x1e\x4d\xf9\xc5\x0d\xcd\x1b\xb7\xb5\xb3\x35\x3b\xc0\x2e\xdc\xcd\x54\x03\x6b\xa0\xa5\x8a\xd4\xfa\x89\xe9\x93\xb5\xe0\xc1\x4c\x6c\x53\x17\x25\x60\xe9\x38\x22\x8f\x7c\x55\xd8\x67\x20\xb3\xde\x83\x58\x7c\x93\x5b\xf6\x4c\xd0\x76\xa1\x1f\x50\x26\xb0\xf4\xf1\x9d\x3c\xf8\xbe\xac\xcf\x2c\xd4\x13\xdf\xf8\x9c\x36\xf9\xa3\x32\x0d\x6a\xc5\x52\xb4\x8e\x09\x25\x3a\x8c\xcd\x1a\x72\x9a\x82\xd1\x4d\xf7\x0b\x6f\x2d\xea\x86\x42\xcc\xa3\x30\x49\x91\x45\xe1\x93\x5c\xbe\xfa\xfe\xf8\x9e\x66\x91\x87\x11\x0b\x92\xb5\xf7\xb4\x71\xa1\x48\xf6\xb8\x92\xf6\xc3\x05\xcd\x15\x78\x63\x48\x6c\x52\x66\x24\x74\xc4\x36\x72\xdf\xd5\x56\x0f\x66\x0d\x62\x26\x20\x4f\xe3\x77\xe5\xec\x33\x47\xbd\x94\x61\xe1\xc2\x2f\x86\x56\x17\x1f\x52\xc5\x5b\x1c\xce\x11\x88\xae\x9d\x9b\x0d\xee\xbc\x15\x04\xb8\x9a\xe2\x81\xf1\xea\xc6\x75\x49\x59\x29\x0c\xa2\xaf\xec\xef\x47\xf4\x31\x3e\xef\x79\x76\x87\x6e\x10\x27\x29\xa7\xb8\x2b\x74\xce\x65\x97\x6a\x15\x6c\x83\xc4\x99\x14\x6f\x83\x49\x65\x17\xb2\x24\x1b\x51\x1d\xc4\x7a\x6c\xe4\x5a\x3c\x99\x10\xa3\x83\xd1\x0f\xf5\xe3\xeb\xc5\x7b\xe2\x90\x0a\xfd\xcf\xe1\x8b\xf5\x07\x56\x26\x48\xe4\xdd\x7c\x11\x1d\x1c\x3f\x42\xc4\x17\x5a\xbc\x99\xb7\x65\x79\xe1\x72\x9f\x66\xb3\x68\xe3\x0a\x54\x1d\x51\xd1\xd6\x61\x78\x36\x98\xed\xf0\xbc\xfa\xa6\x4a\x76\x07\x77\xcc\x4c\x1a\xe8\xdf\x3d\x9d\xbd\x9d\x06\xb1\x29\xcb\x76\x3e\xbf\xae\xb1\x48\x71\xb7\x09\x6e\x44\x76\x0f\x8c\xc8\xbe\xb8\x4d\x99\xea\x53\xdf\x27\x65\x10\xcb\xf3\x0f\xea\x38\x5e\xd4\x25\xe6\x43\x6c\x7f\x73\xc0\xe1\xd6\x9b\xf0\xcf\xcb\xad\x44\xef\x26\x75\xc6\x8b\x5f\xdd\xee\x53\x4d\x34\xe2\x0a\xe6\x24\x52\x70\x8b\x6b\xb5\x74\x12\x15\xc3\x98\x6b\x84\x44\xff\x38\x4d\x07\xb7\xd9\xd0\xa4\x8a\x17\xb0\xbf\x2f\xcd\x5e\x18\xaa\x16\x4b\xd1\xe9\xd7\xb3\x59\x82\x47\x4c\xc0\xf7\x73\x29\xff\x4c\x32\x7c\x5f\x24\xc1\x42\x95\xf8\x4d\x7c\xa0\x08\x02\xe0\xee\x80\x21\x90\xb0\xcc\xfd\xd3\x07\xd9\xa9\xc3\x86\xe4\xe5\x5c\x2f\x2c\xa1\x1c\xc2\xc1\x9a\xa0\xe2\x5b\x18\x37\x48\xf1\xc0\x66\x34\xf4\xe0\x11\xfc\xa0\x20\x8c\xf7\xe3\x32\x0c\x2b\xf3\xe0\xdc\x8d\xc3\x12\x83\x2d\x0c\x45\xe1\xa7\x06\xa8\x1e\x12\x8a\xa9\xaa\xf7\xb0\x26\x6c\x4a\x6c\x71\x8a\xff\x61\x9f\x14\x34\xe1\x44\xcd\xdc\x67\x4f\xc8\xcb\xe8\xaa\x04\x3d\xc5\xa0\x11\x5f\xf3\x2f\xde\xd7\xc6\xc8\x49\x57\x0a\x20\x08\xb9\x95\x67\x87\x27\x29\xad\x1b\x70\xa1\x68\x8e\x7f\x59\xac\x72\x00\x01\x5d\x2f\x98\xb4\xd1\xef\x1f\x55\xd2\x85\xf6\x39\xc5\xf6\xf6\xf6\xf8\x8b\xae\x3d\x05\x86\x2f\xd7\x2f\x2d\x2d\x2e\xad\xbc\xbe\xb4\x66\xd5\xf5\x9f\x51\x92\xc4\x41\x43\xb4\x18\x41\xb0\x58\x62\xb9\x79\xbb\x64\x6a\x36\xd5\x2f\xe2\x1e\x5e\x2e\x7d\xfe\xa4\x56\xf8\xd5\x10\xab\x62\x40\x97\x1b\xdb\x5b\xd3\x4e\x8b\x47\x49\x82\xa8\x9a\xbb\x4d\xc1\x82\x22\x86\xaa\x0c\x79\x35\x78\x73\xcf\x37\x49\xd6\xc5\x5b\x83\xb2\x84\x36\x7b\xe9\x7e\x45\x4b\x91\xf8\x0a\xa2\xd5\xf8\x07\x05\x24\xc4\x81\x39\x7e\x00\x3c\x9e\x4f\xae\x85\xf7\xc8\xc0\xe7\x2c\x2a\x1d\xd0\x90\xaa\x7c\xbc\x97\x12\xf5\xf0\xbb\x10\xce\xd6\x51\x57\x19\x1b\xf4\xe5\x3f\x80\xd1\x5f\xb1\x86\x58\x99\xb2\x4c\x26\xf0\xeb\x95\xf2\x86\xc4\xa4\x88\xc2\xd8\xe7\xef\x34\x99\xe7\x94\x69\x58\x2c\x45\x77\x79\xe3\x55\x20\x75\xd9\xc6\x4e\xd1\xa7\x76\x43\x20\xe8\x03\xa1\x06\xeb\x20\xe6\xd7\xe2\x80\x18\x5f\xdc\x2c\x4f\x26\x7b\x56\xca\x15\x34\x6e\x3a\x29\x7f\xec\x8a\x81\x47\x29\xda\xb9\x58\x37\x9f\xb5\xed\x38\xe0\x73\xb5\xee\xad\x9a\x06\x3b\x17\x65\x70\x15\xeb\xf9\xc2\xbd\x5b\x60\x67\x70\xdc\x1a\x23\xd5\x5a\x80\xc5\xcc\xf6\xcb\xef\xc0\xb9\x18\x07\xd2\x44\x0a\x62\xb7\xe2\x45\x4c\x55\xc5\xe0\xd9\xd3\xe4\x6d\x36\x88\x6b\x62\xb7\x57\x95\x48\xd8\xb8\x53\xaf\x5c\x5c\x64\x49\x63\x1a\x9e\xa5\x5e\xfb\xf8\x74\x2d\xd6\xf8\xf1\xd6\xfe\x3f\xfa\x94\x85\xd2\x29\x08\x76\xcb\x33\x8c\xad\xdc\xbe\x53\x7a\x57\x9d\x3b\xed\xc1\xe2\xbe\x63\x82\x2e\xa7\x8a\x99\x49\x7c\x11\x3f\x73\x77\x6d\xcf\x6e\x8b\xd6\xd6\xd6\x44\xea\xe0\xc6\xa5\x9a\x9e\x5e\x48\x6c\xd1\x88\x37\x0a\x3b\xc7\xa9\x7a\x3b\xf1\xab\x95\x26\xdf\x05\x73\x90\x0c\x6c\xd3\x94\x95\xf6\x4f\x9b\x14\x30\x3f\xf2\x49\x99\x3b\x67\x8e\xdf\x31\x58\xce\x89\x79\x9d\xf2\xcf\xaf\x2a\x76\x09\x36\xf8\xbe\x1a\x3b\x47\x68\xa2\x7b\x0a\x45\x02\x1a\x3f\x46\xfb\x6c\x45\xfb\x0b\x55\x19\x5f\x2c\xd7\x5e\xa6\x05\xa0\xc4\x6e\x17\x4e\xf9\xc2\x80\xdb\x5b\xc4\xf2\xaa\xd2\x80\x28\x56\xe5\xb7\x06\x23\x15\xc4\x30\xf2\xc5\xcf\x73\x5b\x0f\x2b\x0d\xa9\x1a\xa2\xfc\xa7\x46\xc7\xf3\x89\x50\x9b\x8f\x94\xc2\xb3\xb0\xe8\xa1\x91\x22\xbe\x61\x5c\x64\xb8\xd1\x10\x0d\xb7\xae\xb2\x02\x1d\xe5\xe9\xc6\x22\x06\xcd\x85\x35\x42\x34\xbc\xa9\x44\x3b\xd3\x2b\x8b\x45\x0b\x81\x09\x42\x36\xaf\xeb\x1d\xad\x34\xfd\x50\x19\x31\xae\xb9\x79\xfb\x44\xc1\xd7\x44\x70\x3c\x46\x7f\x79\x63\x8c\xb2\xa6\x3d\xa5\x36\xe9\xcb\xd5\x5f\xbb\x04\x92\x1e\xea\xba\x01\xaa\xfa\x8b\x6c\x58\x6c\xd9\x2f\xb2\x57\x6a\x7a\xab\x3e\xae\x84\xb6\x8b\xfd\x24\xe3\x7e\x60\x8a\x32\xae\x0a\x30\xb2\x2a\x48\x94\x7b\xc6\x99\x59\xb2\xaf\x31\x77\x36\xb7\xae\x5f\xa6\xb5\x00\xf8\x38\x18\x10\xf6\xd1\x91\xd5\x72\x31\xd5\x42\xd7\x62\xa0\xf3\x36\x54\x58\xba\xaf\xc6\x89\xd4\xd1\x01\x45\x72\x2e\x14\x92\x73\xd1\xf3\xd2\x46\xa9\xb5\xb5\xb5\x58\x8a\x3e\xa3\x11\xc8\x7d\x5a\x09\x02\xea\x41\xba\x58\xe8\xbe\x52\xe6\xd2\x8c\xf8\xf5\xf8\x0c\x7c\x53\x39\x6e\xe6\x48\x17\xc1\x65\x0a\xee\x81\x76\xb9\x01\xed\x12\xab\x7f\x2d\x3c\x9b\xe2\x55\xab\x2f\xbb\xea\xc6\x15\x9f\x58\xdd\x5c\x6a\xaf\x00\x98\x5b\x00\x4d\x9d\xb1\xc6\x44\x3d\x4f\xf4\x31\xb1\x6d\x68\x83\xf2\x38\x71\x1d\x40\xe7\xb9\x4c\x57\x9b\x9e\x57\x4c\xdd\x0d\x51\x21\x60\x38\x4e\x80\x68\x08\x0b\x72\x92\x54\xe9\x64\xaa\xaf\x63\xbe\xf0\x81\xf2\xf6\x6b\xf1\xb2\x94\xa9\x6d\xfb\x78\x45\x7b\x92\xfa\xb8\x52\x2c\x45\x0f\xac\x57\x45\xf5\xd5\x61\xea\xf9\x07\x44\x3b\x2a\xf5\x2a\x6c\x7d\x50\x11\x9e\xb0\x2d\xa0\x6e\x1b\x37\xbd\x3e\x52\x94\x23\x76\x55\xd0\xac\xf9\x79\xf9\x13\x8d\x4d\xe2\x87\xbe\x07\x8a\xee\x42\x90\x78\x59\xa7\x26\xcc\xc1\xd0\x46\x92\x62\x94\xf7\xdb\x7c\x83\xc6\xff\x70\xf3\x0a\x25\x1e\x5e\x34\x16\x0e\x18\xe2\x9a\xc4\x02\xda\x5f\xf4\x82\x26\xf1\x81\xaa\x3c\x05\x11\x18\x9f\xb3\xb3\xf4\x9c\xcf\xe1\x73\x45\x0e\xbb\x9a\x04\x80\xaf\xe2\x62\xec\x10\xa6\x7a\xa3\x14\x16\xd9\x72\x25\xcf\x6c\xe7\x2f\x7f\xe6\x3e\x9d\x35\xc6\x5f\xc6\x6f\x26\x0e\x55\x34\x7b\xb8\xea\xe7\x33\x9b\xc7\xe8\x55\x04\xb2\x21\x29\xca\x0f\xf6\x74\x31\xe0\x30\xbe\x1c\xfe\x6f\x77\x6a\xcb\xc5\xc7\x26\x75\xe3\xc2\xba\x91\x50\x56\xf2\x4f\x6d\xd7\xd1\x15\x2c\x99\x91\x3e\x3b\x2d\xfb\x1c\x12\x2b\x50\x60\x99\x3d\xbb\x01\x32\x0a\x60\x04\x95\xfa\x72\x93\xb6\x28\x40\x7f\x42\xdd\xa0\x4e\x1b\x7e\x5d\x29\x86\xf2\xdf\x38\x4f\x21\x91\x61\x04\x41\x84\x89\x0c\xb3\x86\x6d\x2f\xde\xac\x93\x86\x68\xcc\x61\x37\xb1\x85\x4f\x46\xbb\xc6\x8a\xbb\x35\x66\x91\x0d\x83\x98\xd4\xe2\xfe\xd8\x51\x79\x4c\xf0\x28\x76\xa1\xe0\xfc\x4b\xa8\x4c\xf4\xc8\x2c\xc8\x01\x57\xf2\x73\xb4\x29\x6a\x5d\xc7\x86\x67\x65\x80\x79\x49\x39\x75\x83\x66\x0e\x4e\xfc\x3a\xe9\xad\xd1\x46\x06\xcf\x18\xfd\xea\x32\x48\x93\xae\xa6\xae\x1b\x5f\x9a\x19\xa6\xd6\x84\x1f\xbf\x4d\xca\x0b\x37\x03\x4f\x0b\x77\xbe\x0e\x1b\xb4\x1c\xda\x4a\xed\xf9\xcc\xd3\x63\xd4\x08\x89\x95\x79\x95\xb1\x7a\x6f\xf6\x92\x82\x1a\x22\xcd\x6a\xee\x7d\x39\x6b\xbf\x3a\x71\x31\x6d\x94\x98\xe6\xf4\x19\x97\x9f\xd1\xa5\x43\x1c\x47\x2c\x79\xfe\xef\xf7\x76\x6a\xc6\x5f\x76\x17\xf8\x51\xc5\xcf\xfa\x13\xe7\x41\x70\xed\x42\x81\x09\x00\x85\xbc\xa9\x08\x1a\x70\x31\x11\x14\xa7\x7a\xf7\x1c\x95\xdd\x5c\xae\x0f\x97\xfb\x4c\x8b\x4e\x97\xc2\x3e\x76\x93\x96\x81\x71\xee\xa0\x6e\x11\x5b\x46\x2e\x27\x81\x42\xbc\xfe\xc2\xae\x84\x47\x17\x10\x96\x08\x8d\xe6\xa7\x76\x8f\x52\x86\x59\x28\x08\x88\x60\x60\x18\xeb\xa7\xe9\xae\x86\x5e\x00\x63\xf4\x68\xd9\x16\x59\xa2\xb4\xc5\x25\x42\x61\x34\xf8\x9d\x14\x89\x5b\x61\x28\x9d\x6b\x72\x11\x84\x23\x4d\x20\x0f\x2f\xb1\x71\x8e\xde\xdc\x0c\xf1\x04\xb1\x6a\x98\x40\xc3\x72\xc3\xdf\x94\x18\x24\xbf\x1a\x1f\x54\x3f\xec\xd4\xc9\x27\xe5\x6c\x13\xba\xf0\xe5\x89\xca\x51\x26\x44\x59\x8a\xa5\xe8\xc1\xe7\x74\x2f\x2a\x56\xc7\x29\xec\x33\x3f\x65\xab\x70\x60\x62\x2e\x0e\x02\x35\xfe\xce\x57\x6c\x45\x03\x46\x3c\xfe\x44\x7e\xa9\x91\xb3\x6a\xc8\x0e\x52\x4b\xdc\xe7\xa6\x0b\x84\x97\xcf\xfd\xab\x25\x47\xf5\xe4\xab\xe2\x1e\x79\xfd\x87\xb8\x43\xea\xff\x9e\xd4\xae\x8b\xf8\x35\x07\xf9\x22\xb3\xcc\xef\x7a\xbe\x49\x99\x8d\x34\x24\x0e\xc1\xa8\x6a\xc6\x8f\x66\x8d\xf7\xea\xe2\x7f\x1a\xa4\x08\x9a\x57\x6b\x38\x08\x28\x0f\x9e\xd5\x1a\x5c\xdd\x0d\xd8\xf7\x49\x55\x99\xfd\x3e\x35\x0c\x54\x0f\x3a\xe2\xc3\x57\x4f\x7a\x7e\x7e\x9b\xdc\x48\x35\x8c\xac\x8d\x21\x62\x80\x4e\x8b\x06\x6c\x82\x38\x44\x93\xda\xe3\xe4\xec\xc1\xa2\xf6\x00\x72\x60\x5f\xfe\xd0\x1b\xfd\xce\x5b\x59\x3a\x4d\xbc\x60\x8f\xc6\x72\xa0\x2c\x48\x2d\x71\xbf\x36\x62\x8a\x9e\xc0\x7b\x54\x41\x23\xa7\x7e\xae\xf7\xde\x0e\x57\x52\xa6\x3d\x90\x45\x1e\x5d\x30\x42\x14\x7b\x0d\x6c\x93\x1a\xa5\x60\x27\xf0\xee\x5e\x05\x05\x8d\xdc\x00\x39\x34\x04\xc8\xdc\xb9\x05\x82\xfa\x80\x3c\x12\x34\x2b\x05\xe7\xb6\x1c\xd6\x14\xbd\xc3\xc0\xc6\x8c\x6f\xac\xe4\x31\xde\xb2\x32\x0d\xa1\xf0\xc4\x73\x1b\x96\xa8\x3e\x67\x4c\x50\x17\x8f\x0e\xd4\x5d\x02\x88\x4d\xc3\xc4\x70\xf8\x17\x97\x35\x99\xf0\xf0\xb9\xb8\x08\xd4\x85\x2d\x9a\x6f\x21\x36\x71\x83\x04\xda\xcc\x66\x51\x24\x47\xa0\x7e\x33\x06\xac\xe5\x05\x0d\x05\x58\xb7\x51\x8d\x3a\x48\xf1\x8d\xcf\x7d\x59\xe3\x84\x59\xae\xd9\x6c\x8e\xda\x97\x5f\xa8\xc9\x2b\xfa\xb8\x81\x5d\x3e\x64\x12\xa7\xe5\xad\x35\xcd\xfc\x14\x07\x7e\x3f\xd2\x5e\xdb\xe6\x67\x23\x4d\xfc\x9f\x64\x19\x1c\xeb\x1d\xd7\x5f\x03\x45\x08\xde\x2e\x51\x98\x12\x61\x19\x98\x39\xdd\x53\x34\x3c\x74\xb1\x0d\x9a\x8e\xc6\x03\x1f\xd3\x8f\xf7\x10\xb4\x64\xfb\x93\x84\xf9\xae\x30\xab\xa2\x6e\x17\x6f\x20\xf7\xe5\x66\x4e\x94\x55\x69\xb3\xff\xac\x61\xde\x9d\xfd\xde\xcb\x6c\x06\x1d\x8d\x65\x8b\x94\xaa\x06\xbb\x3e\xf7\xdc\xcb\x0d\x05\xca\x77\xf1\xfa\x1e\xda\x4c\x91\xcf\x7d\x30\x1a\x16\x75\xfb\xbc\x39\x57\xc4\xb9\xf5\x0f\x5e\x1b\xac\x24\x3e\xf1\xdf\xbf\x7c\x62\x8c\x82\xdd\x4f\x19\x71\xfc\x4e\xff\x6b\x91\xa2\xa8\xcb\x15\x24\x40\xb5\x34\x3e\x51\x97\x1c\x81\x03\x28\x74\x53\x0f\x8f\xaf\x3e\x95\x5d\x76\x09\x2d\x23\xf1\xe6\xdd\x30\x3f\xfb\xe0\x12\x3a\x03\x50\x0e\xf5\xa0\x31\xea\xd1\xc9\xaa\x7e\x76\xe8\x94\xc3\x26\x7b\x93\x3c\x0b\xa0\xbf\xed\x12\x2e\x1d\x61\x8c\x39\x23\x73\x9d\x74\xdc\x55\x53\x88\x1d\xc4\xc2\x3c\x47\x6b\x19\x24\x73\x6f\x4b\x65\xc2\xcf\x78\x35\x7b\x13\xf5\x90\xf9\xf5\x38\x03\x82\xd3\xaf\xb7\x57\x1e\x10\x9d\xf1\xfd\xf1\xe3\x29\xfa\xde\xa6\xec\x4b\x9b\x2a\x90\x94\xb9\x0b\x16\x8c\x97\xa5\x73\x33\xd4\xb4\x7e\x83\xd6\x18\xe0\x12\x6f\x22\xd7\x6b\xd1\x33\xe2\xa0\x66\xe3\x20\xe9\x0b\x7c\x70\x5c\xa1\xe3\x32\x4b\xcc\x08\xf2\xa0\x98\xcb\x81\x36\x7c\x00\xce\x15\x86\x84\xae\xd8\x14\x8d\xdf\x8d\x7c\x22\x41\xf2\xb9\xff\xcc\x50\xdd\x7a\xca\x58\x98\x88\xe7\x57\x68\xe6\xb8\x66\xc8\xca\x62\xf8\x3c\xf2\x45\x69\xee\xc7\xe7\x1a\x4f\x2e\x97\xe5\x59\x15\x2c\x7a\x8d\x49\xb7\x8c\xef\x3f\x1c\xf1\x46\xef\x23\xd3\x9b\x04\x8d\x39\x6b\x1e\xbe\xc0\x9b\xac\x0d\x1c\x4c\x33\xf4\x91\x9a\x76\xe6\xb7\x4b\xbf\xd0\xb9\x73\x3b\x38\x08\xd1\x4b\x1f\x7a\xe8\xeb\x35\x78\xf4\x8f\xdd\x8a\x58\x40\xe8\x07\xd4\x69\x42\x45\x7c\xea\x55\xed\x9a\xf8\x76\x49\x88\xd0\xff\xb9\x58\x86\xe4\xb8\x38\x87\x95\xf1\x2d\x4b\xde\x39\x62\x88\xef\x88\x27\xd7\x0a\xbb\x05\x82\x6c\x5a\x0d\xe3\x95\xf2\xd7\xa5\xd9\xf5\xd5\x3e\x67\x6e\xd1\xa3\xc2\x0b\xa8\xd4\x57\x20\x9a\xd4\x57\x57\x0d\x73\x33\x2e\x3e\x75\x33\x36\xdb\xc2\xc6\x84\x13\xbd\x38\xcb\x6b\x6b\x0a\xaa\x00\x47\xa3\xb4\xfb\x65\x0a\x4a\x69\xe2\x84\xc5\xcb\x9c\x7b\x8f\x09\x6c\x32\x65\xd4\xa2\x8e\x52\x93\xb5\xbd\x0e\xa1\x62\xe6\xac\xd6\x39\xbc\xe4\x7f\xfb\xe1\xfe\x14\x47\x04\x02\xe4\x6b\xf7\xa5\xa5\x7c\x3d\x75\x05\xcd\xff\xf9\x8c\x5e\xc3\xa1\x38\xa6\x00\xc0\x2e\xb7\xf2\x04\x94\xdd\x8b\x49\x95\xd8\xc4\xad\x37\xed\x06\xfb\x21\x5d\xb7\x30\x74\xd3\x6c\x25\xf7\x83\xf5\xc3\xd3\xa5\xed\x25\xc2\xca\x46\xfb\x14\xbd\xd8\x62\x24\x4b\x73\xca\x9d\x56\xf4\x64\x2a\x8c\x98\x89\x0d\xe2\x5a\x6d\x02\xe3\x27\xa6\xa7\xd1\xb1\x19\xd9\x93\x24\x40\x41\x7a\x18\xfd\x6e\x8a\xa2\x7b\x43\x7c\x3f\x83\x6a\xfc\xc5\x22\x61\xc0\x4f\xab\x55\x00\xad\xde\x36\x58\x49\x28\xe3\xdb\xf8\xc2\x7c\xcd\x81\x12\xdc\x9c\x51\x6a\xd3\xde\xfb\xb6\x32\x55\xef\xc6\x66\x08\x2e\x5b\xbb\x5f\xd2\xd0\x58\x26\xef\x06\xd3\xb0\x5a\x53\xe9\x71\x85\x2f\xbf\x29\xb9\xe6\x7e\xa2\x3e\x63\x8c\xb8\x5b\x96\xb7\xf3\xe6\x70\x63\x9d\xc2\x85\xb5\x6c\xf0\xa9\xbb\x38\x11\xf6\x8e\x6e\xd8\x9d\x9d\x2b\x60\x2f\xe9\x83\xdf\xa4\x91\x4d\xc4\xf5\x0b\x63\xd3\x37\x1f\x6f\x51\x60\x64\x66\xbd\x8c\x00\x0e\x96\xff\xef\x9d\x19\x53\xb8\x6a\xb1\x16\xf2\xde\xe2\x6b\xa7\x55\xa9\xab\xa4\xb9\x9a\xc4\xa4\xb6\x5a\x36\x7b\x43\x7c\x9f\x78\xcd\x3e\x57\xdf\x9d\xac\x88\x18\x52\x94\x34\x87\xfb\x8c\x3e\x2d\x9e\x7b\xd4\x0f\x3c\xea\x62\x4b\xf8\xfc\xfc\x69\xd0\x30\xf5\x98\xe1\x5a\x51\xbf\x5f\x9e\x46\x14\xe4\xc5\x4f\xe3\x92\x9d\x1a\x44\x90\x6f\x49\xde\x4a\x5f\xf8\x8c\x56\x15\xfb\x1e\x36\x89\x68\x77\xc7\x5f\xf0\xdd\xe9\xc3\x55\x29\x24\x0a\xc5\xda\x85\xeb\xc7\xe8\xdb\xdc\x15\xee\xc9\xb9\xff\x3c\x99\x4d\xcf\x1a\x84\xda\xc8\xe5\x3a\x33\x72\x51\xff\x69\x8d\x6a\x75\x25\x26\x4a\xff\xd5\x29\x39\xe1\x41\x2f\x2e\x9a\xb5\x90\xa3\x4c\x53\x0f\x9f\x72\x76\xc5\x6f\x0c\x89\x80\xf5\xe6\x1f\x6c\x6b\x9a\x73\x56\x28\xe3\x60\x5a\x18\x03\x7d\x78\xbb\xfe\x20\x6d\x62\x12\x2e\x88\xc9\x3b\x34\x7f\x38\xa3\x58\x78\xd7\xa8\x83\x1b\x90\x60\x34\xb4\xf1\x12\x68\xc4\x24\xea\x85\x7d\xf9\x89\x8f\xea\xa8\x01\xe4\x5a\x08\x88\xee\xfc\x83\xb7\x3e\x23\xf3\x9e\xb6\xd6\xb6\xb6\x99\x3c\x3a\xbd\xac\x48\x25\x74\xca\xae\x7e\xb4\xe5\x55\x88\x90\xd7\x71\x1d\xf9\x62\x29\xba\x46\x19\x50\xb0\xd0\xf7\x01\x4e\x5f\x98\xad\x88\x22\x9a\x84\x99\xa1\x03\x2b\x0f\x72\xff\x6f\x16\xf4\x03\x00\x27\xfe\x74\xa5\xe8\xc7\x91\x26\x03\x2f\x6c\xc2\x28\x4b\x41\xb6\xf9\xbf\xde\x23\x4a\x42\xdf\x47\x01\xe6\xa4\x7e\x31\x50\x1e\x73\x54\x81\x97\xd5\x28\x81\xf6\xd3\xf1\xfb\x84\x8a\x0a\x46\x95\x04\xad\x5c\x68\x1c\x56\xcc\x1c\xcb\x8c\x22\x2b\xce\xe1\xce\x1d\x18\x00\xb1\x21\xfe\xbb\xeb\x56\x0a\xf0\x0a\x66\x26\x16\x9c\xf0\xbf\xeb\xd6\x5e\x65\x7c\x7b\x82\xaa\xc0\x1b\xea\x86\xd0\xe1\x58\x4e\x7a\x6b\x2e\x6e\x20\x16\x24\x98\x63\x8e\x50\xda\xae\xc3\x83\x02\xcc\x3c\x46\xa0\xbd\x15\x1d\x17\xec\x59\x01\xb2\x31\x7b\xc0\x13\xee\xe9\xd4\x2b\x90\x6b\x7e\xf0\x4f\x3a\x67\xa8\x90\xf6\xb2\x8b\xb9\x64\x48\xe1\xc2\x29\x2d\xca\x38\x14\xbb\xc8\xe2\x4f\x3d\xfa\xc9\x8b\x5a\x28\x8f\xcb\x1d\x5f\x81\x9a\x46\xbf\x3f\x33\x56\x95\xae\x75\x7d\x14\xc4\x3b\x83\x73\x82\x8c\x5f\xed\xd3\x45\xd4\x80\x98\x00\xe9\xd2\xb1\xe3\x29\x0a\x97\x11\x95\xaa\x54\x1b\xa8\xf3\x25\x89\x5b\x4f\xdc\x3a\xc9\x12\x7d\x88\x66\x59\x58\x40\x8f\x73\x7f\xf3\xa2\x52\x9a\xf1\xef\xe2\x8f\xe2\xd5\xc9\x3a\x1d\x91\xf7\x57\x60\xf9\xf0\xcd\x5f\xdb\x21\x15\xcd\xed\x94\xfb\xba\xa8\x53\x1a\xa5\x40\x1d\xb7\xf6\x98\x28\x49\x81\x31\x12\x0d\x58\x3c\x4c\x84\x11\xa1\xa3\x18\xff\xd2\xfd\xef\x65\xcf\x05\xab\x35\x6c\xf5\x9a\xab\xa3\xfc\x86\x09\xb2\x13\x35\xa7\x8d\x97\x57\x5c\x82\xa1\xd4\x97\x9b\x7d\x14\xda\xdd\xed\x57\x5c\x51\x2c\x45\x33\xbb\xc7\x2b\xf4\x33\x0b\x33\x98\x69\x56\x28\xe5\x9d\x9e\xff\xd8\xaf\xd8\x11\xb8\x26\xeb\xf1\x12\x76\xdc\x3f\xbf\xa2\xe5\x6a\x9e\xc7\x10\xf1\x91\x9d\x6e\x8b\x9c\x3d\x5a\x97\x93\x0e\x6a\x30\x44\x70\xaf\xd4\x45\xa6\xb8\x96\x8d\xe8\x3d\xae\x6b\x85\xd2\x7a\x29\xb5\xad\x7e\xb4\xcb\x8c\xb7\xb7\x65\x2b\x44\xb3\xdc\x5f\x31\x96\xff\xfd\x3b\x63\x95\xc3\x46\x68\x73\x08\xe4\x6c\xbe\x63\x58\x8a\xdb\xee\x68\x8f\x2f\x76\xbd\x96\xd4\x3b\x18\x28\xfe\xc6\x57\xba\x87\x8a\x8f\x30\x03\x52\xe1\x1b\x20\xb7\xaa\x53\xf2\x8c\x50\x8a\x05\x1e\x3f\x51\x27\xbc\x24\xca\x46\xfc\xa8\xff\xec\x9b\x1a\x5b\xc6\x29\x33\x64\x26\x9d\xe0\xbb\xa6\x48\x7c\x32\xa3\x19\x3e\xec\xc2\xa3\x32\xd8\x5a\x94\xab\x9e\xf2\xb5\xf7\xe4\x49\xc9\xe8\x24\x4a\x0e\x64\x3c\x34\x0c\x1a\x37\x4b\x91\x9d\x61\xd6\xe6\xbf\xfa\xa8\xdc\x52\xd8\xea\x52\x5d\x2e\xa3\x3f\x7f\xa0\xcc\x15\xc2\xb2\x4f\x2c\x22\xb8\x38\x8f\xbe\x2a\x17\x53\xc7\x5c\x65\x31\x45\x5f\xbf\x52\x37\xa1\x0b\xab\x35\x01\xd2\x2b\x2c\x50\x5a\x94\x5e\xe8\xd7\xea\xfc\x29\x1c\x7c\xb8\x89\x33\x24\x37\x8b\xd1\xba\x56\xd7\xa9\x21\x3e\xe5\xe5\x03\x1c\x5c\x17\x46\xaa\xa6\x00\x8e\xab\x32\xe5\xc8\x2b\x4c\x9a\x9b\x0d\xd6\x65\x46\xeb\xb5\xac\x94\xe4\x1e\xb9\xf1\x2c\xc8\x71\x8c\x53\x29\x38\xcf\xab\x36\xeb\x14\xfc\x68\x9b\xee\x39\xd8\xaf\x9f\xc1\x9f\x3b\x2f\x88\xff\x75\x4a\xb1\x14\x7d\x7c\xa5\x22\x17\x89\x99\x13\x5a\x88\xe7\x74\xf3\x15\x70\x5b\x37\x27\x1e\x20\xe8\x25\x7d\x72\xa9\x66\x6c\x81\x84\xfa\xae\x31\x5c\xb3\x74\x42\x26\x4b\xf8\x71\xfb\x77\x65\xea\xf5\xf8\x50\xe8\x0c\x19\x04\xe8\xbd\x07\x45\x2f\xbe\xdb\xb3\x29\xf8\x6f\xe7\x37\xed\xd0\xa3\x9b\xe3\x60\x26\xaa\xf5\x9e\x27\xd2\x05\xed\x10\x3b\x71\xa2\x98\xc3\xb4\x99\x39\x65\x2c\x04\x46\x31\x24\x66\xa5\xe8\xf5\xc9\xe3\x14\x41\x6d\xcc\xc4\x56\x86\x10\x36\xeb\x3c\x4d\x25\x8f\xda\x29\x30\xfe\xa1\x21\x02\xdc\xcf\x50\x40\x19\xe1\xe9\xd9\x77\xb7\x42\x9b\x81\xf8\x7e\x28\x50\x89\xd6\x5e\xe8\xcb\x11\xc7\xc3\xc8\xac\x25\x2e\xc6\x3f\x3e\x96\xfd\xe4\x8e\x2b\x5a\xaf\x48\xd6\xd0\xb8\x2b\x55\x2f\xf1\x2a\x71\x71\x2a\xc3\xbd\x68\x13\x4c\xbe\xfc\xf8\x3c\x43\x76\xd1\x06\xc1\xdc\xfc\xdf\x3d\xac\x98\x95\x04\x24\x0e\x13\x3c\x76\xaf\x3b\xae\xb3\xd0\xaa\x6e\xa2\x47\x72\x7c\x47\x51\x25\x2d\x2c\x5f\xbe\xe2\xf2\xec\x9a\xd0\xeb\xcc\x0f\xbf\x26\x3d\xe3\x1c\xd4\xd3\x85\x51\x00\x32\x80\xc9\xea\xbd\xf3\x52\xc5\x4b\x01\xc3\xf9\x7f\x76\xc5\x50\x45\xa8\x82\xeb\x54\x7c\xef\x0e\xb9\x07\xbc\x0a\x26\x95\x8a\x3a\x4f\x34\x7e\xd3\x21\x92\x84\x5a\x8f\x2f\xd0\x93\xb9\x0f\xdd\xa1\x91\x0f\x69\x2f\x76\x85\x8d\xd0\xf9\xaf\xca\x8f\x23\x8e\x67\x63\x98\x03\x25\x07\xd5\x96\x01\xf0\x02\xae\x72\x30\x23\xa6\x38\xbf\xa2\x05\x4b\xe4\xb9\xd0\xc3\x61\x6e\x16\xe2\x4b\xcf\xf8\xda\xda\xe1\xa2\x0a\xf6\x6c\xea\x20\x38\xae\x73\x5d\x67\x55\x69\xf4\x8c\xbf\xfb\x31\xad\xdf\x60\x87\x65\x51\x5e\xfc\xdb\x41\x39\x66\x9d\xa9\x3f\xcd\x79\x1a\x41\x10\xf9\x35\x2a\x8a\xaa\x3e\xe3\xbf\x0f\xa5\x93\x25\x64\x27\xd0\x91\xf7\xde\x85\x2b\xbb\x9a\xba\x16\x49\x7c\x00\x0a\x9f\x74\x65\x70\xad\x60\xc4\xcd\xa7\xe2\x2f\x7f\x6e\x13\xfc\xf6\x0a\x86\x1b\x84\x86\x3e\x0c\xcb\xaf\x3a\x4f\x17\x20\x12\x3a\x5a\xfc\x58\xd8\xf3\xc8\x90\xa4\x68\xad\x08\x3e\xf6\x37\x98\x36\x4d\x26\xbe\x83\x5c\x54\x95\x26\x58\x85\x59\x6f\xeb\x48\x0a\x93\x32\x8f\x02\xd2\x1b\x0e\x87\x39\x7b\x06\x8b\xfd\x1c\xc0\x53\xfb\xfe\x8e\x51\x0a\x62\x58\x19\x00\xe6\xc6\x5c\x99\x8d\x25\x66\x98\x3a\xf3\x35\xe0\xea\xca\x2c\x24\x3e\x78\xdd\x74\x8e\x48\x83\xa1\x48\x07\x6e\x93\x4b\x30\x91\x97\x9b\x31\xfa\x92\x2c\x28\x97\x3f\x3a\xbd\x9c\xff\x56\x05\xea\xfd\x55\xd4\x24\xd8\xe2\xac\xae\xec\xa9\x3d\xea\x8d\xb4\x77\x01\x66\xc7\xd2\xca\x2d\x1c\xa0\xb1\x99\x6a\x0e\xb6\xb2\x1d\x6a\xe3\x66\xd0\xde\x2f\xfa\x3d\x7e\x80\x9b\x9a\x38\x7d\xc6\x6d\x2d\xd9\x37\x63\x13\x13\xbb\xbe\xb0\x8f\xda\x55\x56\x10\x75\x54\xc8\x6f\xf0\x9a\xf3\xfe\x89\x19\xbc\x36\x03\xc0\x5b\xa1\x60\x29\x0e\x4e\x84\xf9\x41\x11\x26\xe5\xa5\xbe\x42\xf0\xae\xea\x80\xe6\x38\xa1\x4b\x7c\xa7\x58\x8a\xb6\x9d\x1e\x26\x96\x97\x4d\x5b\x93\x8f\x8f\x06\xa4\xcd\xa9\x20\x68\xbe\xe8\x2f\x3c\xa8\x80\xf4\xfc\xfa\xc6\x62\x85\xbb\x06\x5e\x37\x43\x71\x61\x0f\x03\x21\x43\xf4\x91\x87\x61\x11\x74\xb4\x0b\xb7\xc7\xee\x81\xd9\xc7\x16\x30\xe2\x79\xc2\xc4\x24\x79\x6c\xa5\x21\xb2\xff\x15\x30\xd4\x4f\x3e\x15\x6d\x5a\xd1\x24\xe3\x83\x1d\xca\x6d\x7b\xe2\xaf\xfd\x34\x20\x96\x8a\x9f\xa1\xac\xde\x0f\x7f\xbe\x3e\x5a\x96\xd4\x33\xdb\x5a\x67\xcd\xe4\x03\xf3\x35\xf2\x87\x45\xc4\x30\xa7\xbf\x5f\xb4\x00\xd6\x1f\xf5\x42\x3b\x69\x60\xde\xa0\x01\x4d\x71\x39\x01\x22\x7e\x6c\x7d\x46\x31\x98\xeb\x35\x42\xe6\x79\xca\x4d\xe8\xf2\x0c\x23\x4e\xea\x01\xdc\x42\x71\x85\xdf\x63\xd6\x28\x72\x91\xdd\x03\xee\xd8\x49\x60\x9d\x76\xff\x20\x11\x54\xcb\xa0\x41\x75\xc3\x19\xd8\xdc\x65\x4a\xeb\x71\x8d\x08\xc9\xf5\xee\x0f\x86\xca\x3c\xb8\x0b\xf1\x0d\x7f\xe7\x06\x91\x2d\xcf\xe5\x23\xcb\xeb\xee\xd0\x12\x0c\x3b\x74\x83\xa2\xef\xd1\x3a\x76\x93\x6a\x70\xd1\x92\x34\x2d\xab\x61\xc9\x8f\x8d\x4e\x88\xa3\x6c\x35\x71\xa5\xc0\x7a\xb4\xe7\xa1\x61\x32\x66\xf0\x06\x53\x29\x7a\xec\x1d\xdd\x61\xd3\x44\x4e\x4a\x8c\xb8\xa9\x2d\x55\x5c\xe4\x72\x1c\x29\xb1\xea\xae\x27\x46\x2a\x28\x4d\x93\x47\x90\xf8\x82\x56\x59\xf2\x40\x54\x60\x5a\xf1\x93\x7b\x11\x5e\xc9\xa2\xd2\xf2\x4f\xdf\x58\xe4\x77\x38\x4e\x73\xf7\xac\x13\xcb\xc5\x3d\xc9\x30\x69\xf9\xe9\x6c\x74\x99\x9d\x2e\x93\xf6\x13\x17\x8a\x1a\x0f\x55\x8a\xa5\xe8\xb7\x47\x14\xe9\x2f\x24\x6c\x6d\xee\x98\x22\x97\x7b\x0f\x65\x61\x19\xf1\x1f\xff\x75\x97\xb2\x07\xb9\x90\x2a\x38\x78\x1e\x55\xce\x71\x61\x33\x29\xfa\x80\x7f\xde\x32\x4a\x81\x67\x3a\xd4\x35\xb1\x6d\x73\xbb\x82\x9f\x69\x10\x95\x8a\x4d\x3c\x0f\x27\xfe\xff\xd1\x36\xf9\x77\x28\x00\x23\x7a\x6e\xf7\x7c\x24\x4a\x0b\xc6\x32\x95\xa3\xce\xe8\x79\xc5\x00\x9f\x72\x49\xc1\xfa\x0d\xd9\x27\x90\x66\x42\xce\xfd\xd9\xd4\x95\x37\x72\xa4\x96\x7c\xfe\x27\x47\x04\xa5\x1f\x68\x02\xe3\x1e\x87\x78\x76\x23\x76\x51\x80\x9b\xc9\x6f\x83\x14\x27\x4d\xb7\x37\x8e\x2f\x5a\x9b\xd2\xb4\x91\xe3\x81\xd8\xce\xc6\xd7\x35\x81\x3f\xbb\xb8\x11\xf5\xf8\x24\x3e\x47\x65\x62\xb0\x6e\xae\x04\x8f\x84\x6e\x76\x66\x00\xd0\xe5\x4b\xdb\xf4\x46\x08\xaa\x4a\x59\x96\x15\xdb\x14\xc9\x30\x1c\x60\xd6\x8f\x04\x7f\xdf\xf4\x34\x97\x76\xb1\x6e\xaa\x1c\x75\x2e\xd0\xd7\x75\x95\xb8\x09\x75\xc6\x98\xfe\xb8\x1c\x4e\x21\xc4\x14\x13\x92\xe8\xa9\xbd\x9a\x25\x1a\x62\x96\xdd\x93\xb4\xe8\xaf\x3b\xab\x22\x03\x6d\x22\x44\x1c\xf2\xdf\x78\x4a\xa1\x28\x3b\x44\x4d\x92\xea\x2b\xb3\x0f\x73\x36\xb7\xf6\x05\x44\xcf\x8f\x5a\x75\xfa\xb9\x2f\x6c\x84\xf3\x2f\x3f\x33\x5e\x5d\x3f\x94\xb9\x58\x05\xdf\xcc\x7c\x5f\x01\x4a\xd6\x6a\x35\xde\x78\x0d\x0f\x28\x02\xf5\xc4\xf7\xb8\xbf\x6d\xfe\xc2\xe7\x34\x26\x41\x08\x5d\x17\x39\xaf\x77\x59\xf6\x12\x79\xd2\x04\xc6\x76\x97\x28\x4c\xf1\x54\xbf\x30\xce\x16\xdf\x3a\x3e\x5e\xdd\xe9\xd4\x06\xf1\x9c\xa4\x1b\xf5\xb5\x23\x23\xd3\x3e\xbe\x62\x63\x38\x43\x53\xa5\x0b\x50\xd9\xa6\x44\x64\xea\xd1\xc7\x5a\x94\x7b\x8e\xf3\x1a\x17\x2b\x70\xe8\xdc\xd8\x7d\x12\x78\xe1\xc1\x7e\x9e\x99\xd1\x6e\xb4\x6d\xe8\x69\xe7\xc7\x8e\x57\x48\x5b\x94\x7a\x89\xed\x59\x29\x7a\xfe\x06\x65\xd8\x49\x43\x48\x3b\xda\xdf\xd7\x7c\xf6\x42\xdf\x27\xc8\xf5\x95\x99\xb3\xb1\xe4\x84\x7c\xf3\xf5\x1a\x62\x01\x05\x41\x54\x5f\x93\xc5\xb2\x18\x48\x33\xf3\x07\xbb\x83\xc9\x17\x82\x1b\x02\xb6\x9f\xdb\x76\x3a\xfb\x42\x68\x18\xf8\xfc\x40\x4d\x92\xb0\xdc\x95\x6d\x59\x6f\x3b\x9b\x77\xfa\xfa\xc3\x01\x9d\xd9\xa0\xcd\xfe\x21\x4d\x30\x51\x8a\xaf\xca\xff\xe4\x81\x21\x4a\x02\x1d\x07\x96\x71\x2d\x70\x26\xad\x41\xb6\x8d\x7b\x04\x1a\x2a\xbf\x6d\xa2\x06\x1f\xa1\xa1\x9f\xaa\xb0\xff\xe9\x3e\x38\x51\x16\x21\x3f\x54\x8e\xbb\xe5\x57\xaa\x6a\x5d\x0c\x05\xa0\xce\xfe\xdc\x22\x99\xb8\xe0\x4a\x85\x98\x44\xf8\x06\x5f\xbd\x5d\xb4\x23\x79\x29\x01\x09\xe6\x9d\x4b\xe5\x93\x75\xa8\x8b\x98\x59\xe3\x8f\x69\xc6\x53\xe3\x9a\x5a\xef\xe9\x01\xd4\x7e\x59\xf6\x62\x6d\xc4\x27\x69\xd0\xd5\xd9\xa0\x88\x6b\xbb\x18\x5b\xd8\x4a\xfa\x26\xad\x2b\xb2\x0f\x16\x31\x17\x0a\xc5\xa6\x22\x7b\xfa\x13\xd9\x2f\x00\x35\x35\xd0\x64\x37\x7e\xbd\x4f\x11\x7b\xa5\x45\xe4\xf2\xff\x2a\xf5\x15\x50\x87\x66\x3d\x55\xa6\x21\x8c\xa9\xa2\xc1\x97\x66\x3f\x70\x1e\xc4\x01\x68\x36\xec\xdb\xa9\x88\x14\x71\x10\x90\x28\x0b\x2b\x07\x35\xd4\x1e\xa3\x5d\xa9\x4c\xe3\xcd\x91\x7c\x72\x5d\xc4\xb5\x68\x17\x74\x6b\xce\x3d\x3e\x59\x4b\x50\xcb\x71\x69\x61\xdb\x58\xe1\xf5\x5f\x16\x8d\x50\x7b\x9e\x04\x44\x96\xf3\xff\x70\x4a\x41\x2a\x61\x46\x02\x48\x53\x0d\xf4\x96\x36\x82\x2b\xfb\x94\x95\x93\x44\xc4\x3d\x4f\xcb\x0f\x11\xe9\x42\x2e\x86\xa4\x38\x91\x25\xee\xd6\x0d\xdc\x5a\x15\x44\x7c\xfe\x37\xaf\xe9\x82\xd7\xa4\x5a\x2b\x53\x06\x91\xf2\x8f\xc7\x54\xf1\x7d\x14\x40\xe5\xb4\xff\x3e\x99\xfc\xf5\xa2\x2a\xe2\xa7\xdf\xcf\x3e\xd0\xd9\x85\xed\x73\x92\x56\xc0\xb7\x9e\x52\xe3\x37\x37\xe7\x89\x83\x99\x77\xb7\x6e\xb8\x36\xaf\x5d\x00\x96\x36\x9d\x54\x1c\xda\x68\xb9\xcc\xb3\xa6\x3b\x99\x6e\x69\xd0\xc0\x6e\x88\x05\xdb\x36\x6f\xbe\xa5\x39\xe6\x21\x97\xd4\x89\xd5\x8b\x33\x98\x9c\xdf\x97\xb5\xe7\xe1\xc4\xdb\x31\x15\x49\x7d\x63\x84\xc8\x3d\x19\x41\x3c\xe2\xae\x9b\x0d\x30\xc4\x6b\x19\xf5\xfd\xac\xa2\xf7\x13\x1a\x60\xdf\x62\xa8\x22\xa6\xa3\xf9\x8a\xe6\x3b\xc3\xdf\x75\x9a\x2b\xe4\x26\x4e\xbb\x34\x53\x63\x60\xc6\x6b\x16\xed\x38\x7d\xbe\xa1\xf3\xbb\xb0\x19\xc6\x09\x4d\x3a\x4d\x59\xb5\x57\x5f\xa8\x18\x05\x76\x22\x3d\xf6\xf6\xeb\x2d\xda\xbe\x73\x00\xf4\xf2\xa3\x86\x2a\x5d\x9c\x20\xf1\x61\x29\x8e\xb8\x3f\x3b\x6f\x28\x87\x0c\xa3\xd0\x64\x08\x80\x0c\xd1\xc9\x75\x17\x29\x48\x85\x26\x0b\x27\xe3\xd7\xad\x90\x64\xaf\xc2\xac\x8a\x79\xff\x2b\xfa\xe1\xfb\x32\xc9\xe2\xf2\x38\x7d\xb9\xcf\x6a\x3e\x2d\x34\x0c\x6c\x92\xb6\x5e\x4e\x9e\x91\xa1\x04\x05\x01\x76\x01\x7e\x5f\xea\xcb\xdf\xdd\xa1\x58\xb2\x10\x97\x2f\xc8\xdc\xa7\xc6\xc2\x3b\xba\x4e\x50\x81\x95\xd7\xfd\xdf\xaf\xa4\xf9\x4a\x27\x6d\x96\xcd\xbe\x37\x82\xc1\xce\xb5\x36\xaa\x98\xaa\xb8\x46\xfe\x33\x6b\x25\xc6\xd4\x23\xba\x66\xc4\x0a\x31\x19\x36\x41\xa7\xa5\xaf\xb0\x7c\x96\x36\x01\x24\x41\x4d\x4c\x00\x0b\xeb\x2c\xb9\x98\x3b\x66\xcd\x98\x37\x6f\x66\xb1\x14\xcd\x7a\x4a\x85\x30\x21\x16\xa8\x72\xcf\xf9\x1f\x2a\x7a\x8c\x56\xe8\x5a\xc8\xe6\x62\x73\xbf\x5a\xa6\x59\xaa\x61\xec\x25\x9b\xec\x61\xcd\x42\xa7\x8c\x12\xff\x98\xdc\x98\xf3\x14\xc6\xaa\xb0\xf7\x1a\xb8\x64\xb2\x12\xad\x61\xd3\x73\xe6\xaf\x5a\xb7\x6f\x3e\x98\x4d\x79\x67\x15\x1d\x5c\x45\xe5\x1e\xe1\x92\x91\xfb\xdc\x43\x8a\x24\x0b\x23\x0e\x71\x91\xdd\xfc\x90\xdf\x7f\x31\xbb\xa2\x12\x7d\x90\x14\x58\xfe\xed\xd1\x43\x15\x1e\x09\x54\x00\xbe\xae\xe9\x85\xdd\x20\xf1\xcf\xff\xe3\x16\x55\xa1\x54\x50\xb0\x07\xed\xd7\x85\x3a\xe2\x7f\x00\x04\x2e\xb7\x5a\x17\x72\x63\x1e\x62\x28\x60\x3c\x3d\x89\x3f\xeb\x45\x69\x8b\x47\xdc\x86\x02\x3f\x3e\x3c\x4c\x1c\x34\x5e\x8d\x3a\x20\x13\x6d\x78\x27\x14\x3e\x25\x66\x7e\xc8\x5b\x06\xd1\xf1\xfd\xda\x6b\xa1\xe5\x84\x05\x96\xbf\x74\xab\xe2\xea\x8c\x1c\x62\xf3\x56\xf1\x8d\xb7\x69\xea\xff\x28\xc1\xc8\xe4\x16\x2e\x84\x82\xd4\x0f\x79\x8f\xec\xec\x16\x39\x04\x8e\x73\x03\x50\x09\x94\x0e\x11\xeb\x35\x59\x36\x3e\x5d\x02\x2c\xce\x6f\x6a\xf2\xb1\x56\x28\xe3\x6e\xa4\x17\x69\xba\x32\x35\xda\x85\x35\xb9\xbf\x5c\xfb\xb4\x91\x4a\x4b\x81\x78\xb6\x30\x92\x5b\x7d\x22\x3b\xbe\xe7\x6e\x71\x16\xf1\x4d\xe2\xd9\xc4\x45\x52\x0e\xae\xf6\xa0\x5c\x6f\xed\xf3\x66\xcd\x2d\x96\xa2\xbf\xee\x97\xb3\x1a\x93\x6b\x9c\x04\xa9\x91\x6e\x7e\xd5\xa3\xff\x07\x67\x11\xb2\xe1\x5b\x27\x4c\xd4\x6e\x11\x68\x0d\x97\x4b\xb1\x8d\x83\x91\x2e\xa7\x89\x91\x28\xcb\xae\x3b\x22\x2f\x46\xb0\xdf\x72\x2e\xb4\x25\x8a\xd7\x23\x66\xa1\x7a\xc6\x3c\xe6\xdf\x9f\x50\x7e\x5d\x30\x07\x6e\x13\x0a\x82\x35\x3d\xda\x45\x9d\xad\x97\x42\x90\xb2\x84\xc7\x6c\x62\xf4\x9b\xdd\x01\x6d\x8f\x6a\x5e\x9c\x61\x95\xfa\x36\x6a\x64\xa9\xc5\x3f\x69\x1b\x2c\x6b\x54\xbe\x71\xff\x65\x85\xc2\x3e\xe7\xfa\x04\xd1\x66\xe5\x2c\xad\xd0\x90\x15\x1d\x00\x38\xbe\xf1\x84\x52\x85\x60\x06\xc3\xe3\xdc\xbf\x2c\x49\x8b\x4c\x5e\x74\x47\xbb\x36\xe8\x08\xac\x8d\x21\xf1\x89\x10\xbe\x8b\x4f\xd9\xbf\x5d\xa7\x8d\x43\x38\x62\x29\x7e\x72\xbe\x4a\xa5\x9b\xf9\xf6\x70\xb1\x4c\x3d\xcc\xc0\x86\xab\x14\x9d\xd4\x8c\x8b\x40\xf2\x26\x35\x21\xd8\x34\x45\x10\x45\x6c\xe1\x17\x1f\xff\xd0\xba\x5b\xcb\x40\x90\x23\xe5\xad\xf2\xdb\x6e\x51\x75\xbc\x7d\xd1\xd6\xdc\x7e\x5c\x43\xf4\xd4\x18\x4e\x5a\xc3\xeb\x9e\xd6\xca\x2a\x1b\x75\x09\xef\xbd\xfc\xfd\xcf\x64\x0f\xd4\xce\xd0\x0f\x48\x85\x70\x58\x04\x84\xca\xbf\x7f\x46\x25\x9b\x61\x06\x03\xb2\xf9\x0a\xac\xc4\x11\xcd\x8e\xfc\xaa\xed\x1a\xa2\x0a\x31\x8b\x20\x01\xb9\x2e\x2c\xf8\x40\xb6\x7d\x88\xc0\xf3\xe5\x3e\xea\xca\xbb\xa9\x86\x71\x42\xc0\x09\x5a\xbb\x35\x9b\x0a\x8c\x98\x38\xc1\xe7\x74\x0e\x55\x4a\xf2\x2a\x8f\x1d\x25\x7d\xb0\x4e\x6d\xcd\x9e\x3c\x77\xdf\xab\x63\x94\x80\x6f\xab\x46\x34\xf9\x83\x4f\x8f\xd3\xce\x90\x2e\xc9\x47\xcf\x1d\xf8\x40\x87\x30\xc6\xa7\xbf\x80\x30\x96\x1f\x94\xb2\x2b\x75\xe4\xfa\xa8\xa9\xe1\x59\xf8\xcc\x9a\x6c\xf7\x64\x6a\xb9\x07\xce\x8a\x02\x1a\x28\xa3\x51\xe8\x89\x4e\xdf\x7b\xd9\xc2\x80\x93\x43\xfb\xe1\x72\xf7\x19\x3f\x38\xd6\xa4\x8b\x60\x25\xd9\xc2\x0a\xd1\x39\x5e\x25\x40\x09\x7a\xa7\xe5\xc2\x09\xc2\x4f\x83\xe1\x00\xf8\x32\x0b\x14\x51\x20\x9b\x9a\xd0\x2b\xdb\xbb\x52\x55\x58\xf7\xf9\xc4\xaa\x70\xb1\xe8\x45\x4a\xa3\xb4\xf3\x35\x78\xba\x2d\x09\x91\x85\x8f\x2c\xd4\x04\xee\xbd\x38\x97\x27\x15\x11\x8a\x0e\xad\x1d\x92\xec\x19\x46\xa0\x07\x76\xec\xc5\xec\x8a\x34\x05\xdb\x85\x26\xd3\x9b\xb7\xce\x0d\x97\xa1\xab\x8c\x40\x94\xc5\xd8\xb5\x65\xbc\xdc\xd7\x53\xf5\xbc\xf1\xfe\xc5\x9a\x96\x06\xb2\xeb\x1c\x9a\x2e\x67\xc1\x51\x1a\x6a\xe6\xb5\x15\x8b\xa5\xe8\xff\x7b\x4d\xe6\x55\x0d\x6a\x7b\xbc\x13\x7e\xe3\xe4\x6c\x5c\x76\x50\x80\xe3\xbc\xd8\x17\x2a\x7a\x43\xee\xce\xbe\xec\xb9\xad\xf3\xae\xe0\xe8\xe6\xdc\x7a\xc9\xb6\x64\x56\x4f\xb1\x14\xbd\xfc\xba\x50\x74\x44\x42\xc9\x36\x2a\x2e\xcd\x26\xa7\xf3\x84\x42\x75\xfe\x6a\x5d\xba\x2e\xae\x88\xc5\x13\x7c\x6d\x37\xcc\xf7\xae\xb3\x7b\x7c\x85\x99\x91\xdb\x36\x59\xab\x93\xc4\x23\x84\xeb\x9c\xb3\x57\x61\x2c\x84\xe5\xcc\x34\xed\xc2\x0d\x43\xc5\x41\x27\xac\xd8\x4b\x7d\xb9\x4f\xe8\x43\x59\xdb\x16\xe2\x45\xed\x5a\x5b\xa9\x82\x48\x52\x3a\x18\x1b\xe7\x0e\x13\x51\x99\x06\x7e\x80\x79\xcf\xb0\xef\x8e\x11\x2a\x5c\xcc\xb5\x00\xab\xf8\xe4\x08\x59\x78\x12\xc7\x21\x55\x06\x89\xf2\x2d\x23\x54\x30\x2b\xf1\x41\x4b\x35\xbb\x9a\xa7\x3c\xae\xf5\xd8\x18\x05\xaf\xda\x29\xc5\x52\xf4\x65\x1b\x7a\x90\x66\x2f\x8a\xe3\xf1\xbd\x7b\xc4\x70\xd5\xad\x10\x9b\xeb\xb7\xc4\x11\x7e\xa3\xa1\x36\x57\x71\x18\x60\x17\xe6\xd4\xf9\x8f\x2b\xc3\x48\x6c\xf3\x03\x63\xec\x31\x95\x28\x4e\xa1\x6d\x1e\x6d\xdb\x2d\x67\x3d\x59\x08\x42\x6e\xd7\x41\xe1\x5e\x14\x30\x50\xd4\x31\x06\xbf\x9f\x3d\xfd\xea\x21\xb2\x91\x40\x75\xca\xbf\xfb\xd4\x71\x65\x6e\xdf\x1d\x5f\xcd\x4b\x1b\x14\xad\x60\xc1\x03\x2a\xcc\x54\x4a\x03\xb1\x1f\x12\xc1\xea\x6d\x9a\x80\x00\xf2\xb8\x7e\x3e\xef\x1d\xdc\x7a\x48\x23\xd0\xda\x01\x89\x97\xb3\x50\xca\xe8\x33\x2e\xd9\xab\x6b\x10\x5b\x58\xb0\x03\x5f\x6b\x53\x07\x42\xae\x15\x82\x09\x65\x9f\x31\x48\x28\xe7\x5e\x65\x71\xbc\x18\xe7\xe1\x6a\x8b\xd7\xa1\x7e\xe2\x1e\x3d\xf1\xbc\x31\x0a\x12\x07\x99\x26\xf6\x12\x75\xcb\xc2\xdc\xdb\xb5\xb1\x43\xe8\x73\xca\x95\x83\xdc\x04\xc3\xf9\x0f\x60\x1f\x50\x5c\x55\x0b\xeb\xfd\x34\x66\x1b\x9a\xd6\x7e\x80\x7a\x6c\x0a\x7b\x5e\x9b\xe7\x28\xce\x08\x53\x03\x81\x9f\xbb\xab\x45\xa9\x46\xc2\xb2\x83\xcc\x5a\xbc\xf6\xaa\x61\x1c\x82\xe6\x5e\x7a\xb1\xf6\xfe\xba\x90\x20\x98\x88\xcc\x65\xc7\x7c\xa1\xc8\xce\x47\xd2\x44\x68\x50\x1e\x3e\x9b\x06\x99\x59\xed\xbc\x5e\xb8\x73\xaf\xea\x32\x82\xfd\xd0\xe1\x0b\xf2\x33\x91\xec\x95\x4d\xed\xe2\x71\xf1\xcc\xb1\x11\xca\x4a\xb4\x30\x83\x26\xde\xca\xf9\xb2\xc5\x18\x67\x3f\x41\xad\xe8\x63\xa8\xc0\x66\xbc\xa0\x99\xde\xb9\x97\x17\x5d\xea\x62\xee\xb9\x72\xeb\xd8\xec\xdb\x9d\x39\xab\x4d\x3c\xd6\x65\x8f\x5f\xa6\xc5\x4a\xee\x5b\x18\x50\x57\x5f\xa1\xc6\x6b\xcb\x9b\x18\x0f\x84\xcb\xcf\xf7\x2b\x1e\xe0\xed\x91\xf7\x8a\xec\x32\x72\x85\x33\xc9\x4f\x9e\xce\x06\x4d\x64\x09\x50\x9b\xf1\xf2\xda\x6c\x44\x0c\x28\x9c\x6f\x39\xcd\x14\x07\xb9\x7e\x97\xec\xda\x7f\xa5\x4d\xb7\x1c\x41\x36\x49\xd1\x81\x39\xeb\xc5\x41\xa2\x5c\xe1\x67\x5f\x74\xea\x76\x5d\x62\x5d\x08\xa6\x9e\xb7\x41\x70\x10\xf9\x18\x30\x0e\x5e\x5d\xb7\x69\x18\x65\xcf\x62\xf1\x2f\xeb\x11\x69\xfe\x69\x81\x04\x47\x55\xec\x07\xcd\x6b\x33\x7f\xf6\x19\x1d\x66\x62\x53\x27\xab\xab\x93\x33\x34\x51\x05\x12\xf8\xd8\xae\x5c\x0e\x5a\x38\xfb\xb6\x66\x0f\xb4\x0a\xa9\x04\x35\x98\xd8\x26\x22\x13\xc1\x5b\x5a\x1d\x04\xa2\x0c\xfc\x34\xfa\x7b\x0d\x14\x08\x3a\x80\x89\x13\x98\x76\xa0\xcf\xbe\x62\xc6\x9c\x79\x57\x14\x2f\x9f\xc2\x9d\x61\x1e\x48\x47\x7d\x08\xd7\x95\xde\xcf\xf8\x45\xd9\x66\x1f\xc2\x55\x8c\x5c\xcd\x00\x41\xe7\xbe\x7b\x61\xd9\x4e\xf5\xb3\xb6\x4f\x93\x4b\xd9\x21\xae\x8b\x11\x57\x06\xe2\x45\x9a\x40\x06\x22\xdb\x26\x1c\xc5\xca\x29\xcd\x0a\x22\xd7\xc5\x5d\xbe\x89\x80\xec\xfd\x33\xe1\x16\xb6\x0e\xd5\xe3\xd5\x5e\x8a\x3e\x77\x44\x57\xf0\xa9\x04\xd8\x4d\x89\xbf\x3b\xce\x65\x9f\x65\x15\xbb\xa9\x0b\x85\xe8\xa4\xdd\x34\x5e\x9e\x97\xd4\x34\x43\x8f\xe0\xf4\x3d\xb9\x42\xb2\x23\x63\x15\x2e\x4c\x03\xaf\xb2\x7b\x6b\x98\x38\x00\x47\xfa\x86\xe4\x06\x9b\x61\xb3\x55\xde\xeb\x95\x31\x4a\xbd\x02\x72\x94\x49\x3d\xd8\x72\xff\x24\x65\x22\x11\x90\x22\x22\xcc\x64\xa8\xa2\xcc\x5a\x8f\x8f\xd6\x32\x2d\x08\xc1\x42\x11\xa5\xbc\xa6\x89\xcf\x1b\x56\xfd\xb0\x8c\xdc\xcb\xbb\x54\x2e\x81\xf5\x80\x92\xd0\x86\x01\xed\x05\xb6\xb5\x32\x72\xdd\x09\x8e\x3d\xc5\x15\xfc\xd5\x35\x31\xb2\x5e\x7e\x45\x4b\x97\xc1\x21\x07\xf0\x71\x5f\x1a\xdf\xa4\xb2\x24\x04\x51\x73\xff\x30\x61\x82\x4c\xd0\x6d\xce\x72\xad\xa9\x0a\xba\xc6\xc3\xb7\x65\x3f\xf8\x0a\x6e\x88\x22\xb6\x7c\xf9\xee\x31\xca\xd0\x92\x11\xb5\x29\xf9\xc2\x7d\xfa\x08\x8e\xfb\x32\x80\x1e\xd4\xc5\x3b\x13\x71\x3c\xee\xa9\x18\xc7\xde\x27\x8f\x48\xd0\x92\x69\x87\x4d\x2e\x7c\xf9\x9f\x6b\xca\x33\x8c\x96\xc3\x44\x3e\x3a\xf7\xa7\x3d\x53\xe5\xb9\x01\xb6\x64\xc0\xf3\x6d\x56\xe6\xcd\xff\xeb\x29\x0d\xb8\x82\x80\xf1\x1f\x15\xba\x81\xe5\x74\x3d\x72\x43\xd7\x25\xf5\x8c\x5a\xce\x1f\xd6\x27\x1e\x09\x55\x0e\xbb\x4d\x00\x4a\x5b\x07\x68\x74\x07\x62\xd6\xd3\xaa\xb1\x77\x9f\xdc\x5b\x35\x54\xc6\xcc\x42\x7e\x0d\x96\xe5\x57\x0a\xd9\x9c\xd6\xc6\x59\x24\xfe\x3e\xcd\x8a\x06\x5c\xce\x85\xf9\xc6\x5b\xc7\x75\x8d\x77\x2b\x34\x05\x5e\x2f\xf7\xd8\xb2\xec\xfd\xd5\x85\x7b\x45\x5f\xae\xeb\x69\x45\xd4\x13\x99\x75\x9e\x48\x71\xbd\x85\x3b\x34\x6b\x7e\xc4\xb8\xd3\x87\x10\xe3\xfc\xd5\x39\x65\x8f\x10\x6e\x31\xee\x21\x06\x25\xcc\x57\x1f\xd1\x44\x38\x11\x43\x0e\xb1\x49\x80\xb8\x5a\x21\x87\x6a\xbd\x37\xeb\x52\xed\x5e\x81\xfc\x9d\x15\x4e\xcb\xb9\x67\x65\x6f\xa6\x7d\xe6\xcc\x62\x9d\xd8\xd4\xc1\x00\x4a\x31\x48\x67\xf6\x7b\x24\xbe\x20\x3e\x62\x60\xea\x7e\x62\xbb\xec\x25\xf2\xb8\xe0\x36\xf7\xb2\xd1\xf8\xec\xd3\x09\xba\x28\xec\xd5\x8e\x0d\xfa\xe1\xe0\x56\xe3\xef\x67\x9c\x4b\xc8\x75\x29\x8c\x6f\x2d\x1b\x29\x1e\x82\x19\x70\x49\xa4\x1a\x77\xa5\x33\xfe\xeb\x50\x32\xd8\xf2\x19\xae\x02\x23\xd3\x58\xf6\x4a\x36\xd5\xeb\xa4\x61\x7c\x41\xc4\x0f\x40\x34\xf1\x72\x51\xd2\x95\x31\x0a\x70\x7c\x05\x23\x36\x6b\x1c\x1e\x44\xdc\x00\x3c\xbd\x44\x49\x12\x1c\x90\xec\x45\x3f\x81\x3f\xea\x25\xea\x68\x4d\x10\x91\x58\x18\xf9\xe2\x90\xb9\xe6\xa8\x36\x01\x23\xac\x1c\xfa\xfd\xd0\x67\x8d\x5f\x3d\x9a\xd8\x10\xfa\x35\x07\xa9\xb6\x03\xbf\x38\x70\xa9\x92\x0e\xdb\x18\xb4\xcb\xf5\xe7\xfc\xfe\xa9\x91\xaa\xde\xad\x30\x2b\xec\xcb\xff\x65\x50\x53\x7b\x38\xb1\x54\xbd\x63\xc1\x28\x57\x05\x08\xc2\x1c\x33\xfe\xa3\xff\xd9\xf1\x11\x99\xc3\x58\x0d\xcc\x82\xb8\x26\xa9\x36\x6d\xed\x9f\x0c\x90\x4d\x4a\x93\x3a\x1e\x0e\xb8\x75\x55\x8a\x92\x7a\x5f\xe3\xc8\xfb\x66\x8d\x52\x5b\xec\x9b\x61\xca\xee\xb0\x70\x9c\x16\x0a\xe5\xd1\xea\xb0\xd1\x4a\x41\xee\x51\x05\x07\x3c\xac\x75\x42\x53\x68\xad\x12\xb7\x9a\x42\xd3\x9f\x7f\x0d\xc2\xc6\xb5\x1c\x62\xae\xfa\xd5\xce\x1f\x25\xea\x3d\xe4\xfa\xdc\xcb\x30\x51\x70\x18\x74\xa8\x89\x33\xe3\x21\x97\x60\xd1\xca\x8d\x76\x0b\x3b\xa8\x5a\x1c\x72\xf9\x4a\x5b\xf1\x50\xbf\x63\x60\x4e\x1e\xf6\x40\xd4\xe9\x87\x42\x4a\xbf\x49\xcc\xfc\x84\x36\x2c\xc4\x5d\xc4\xf5\xeb\x3d\x97\xcf\x57\xde\xf8\x77\xef\x48\x7b\x6c\x3e\xe8\xb4\xc4\x7f\xda\x72\x52\xaa\xc2\x56\x78\x7b\xea\x8f\xc7\x9b\x34\xaa\x79\x7f\x55\x74\xf4\x1e\x3f\x27\xec\xaf\xdd\x2a\xaa\xf2\xa0\x7f\x51\x87\x7e\xab\xc2\x19\x47\x34\xa1\xf3\x1f\x97\x20\xea\xc4\xf0\xe5\x21\x4d\xa4\x94\xd2\x24\x05\xcd\x1d\x3a\x3a\x5a\x3b\x6e\x31\x03\x31\x97\xdc\x8e\x37\xe0\xfe\x1d\xe4\x12\x70\xd8\x80\xe5\xb8\x3c\xca\xe6\xd2\xd2\xb1\xb7\x9f\x79\xbb\xf1\xe5\xc7\xd3\x4a\xc2\xa5\x1c\x49\x1c\x0c\x14\x06\xa1\x6e\x0d\x79\x5e\x22\x4f\x91\x7b\xec\x55\x2d\xf7\xf1\x68\x1d\xc7\x55\x14\x60\xce\x72\xb7\xf4\xe7\xea\x0d\x47\xf2\x57\x25\x1e\xa7\xc6\xf1\x09\xd7\x75\xa8\x20\x3d\x61\x8e\xf6\x95\x05\xca\xfc\x16\x75\x8b\xfa\x2d\x3f\x75\x7d\x0a\xaf\x26\xe5\x30\xe9\x91\x5e\xbc\x30\x33\xf7\xa4\x0d\xe0\x94\xe4\xc6\x07\xda\x20\x13\x59\x42\x72\x94\xdf\xc4\x4c\x6b\xb2\x16\xda\xdd\xd0\x34\x49\x1c\x0b\x65\xc7\xe3\x90\xe6\x54\x2c\x64\x70\x45\x29\xf1\xfe\x72\x95\x5d\xce\x30\xb0\x4b\xff\x7b\xba\xa4\x2f\x76\xc6\x95\xc5\x3b\x9a\x90\x67\x57\x8d\x8a\xc5\x3e\x55\x60\x49\xfd\x1a\xb6\xf9\x49\x10\x9d\x98\xa2\x7c\x24\xc3\x16\x97\xdb\xfe\xde\x7d\x4d\x26\x6b\x09\xc6\x40\xf4\x5e\xee\x1d\xa2\x4c\xb6\x11\x43\x62\x73\x1b\x07\x5d\x7d\x10\xe1\xbb\x5a\x1b\xd3\xb8\xef\x48\x02\x68\xa5\x6e\xe2\x68\xf2\xee\xf0\xe4\x2f\x84\xac\xe7\xaa\x15\x7d\xf9\x77\x8f\xf6\x03\x07\x71\x45\x78\xfb\xe9\xfb\x1a\xa4\xad\xf5\x0a\x51\xf2\xdc\x7f\x0a\x46\x2d\xf3\x5a\xe7\x71\x8d\xbd\x8a\xbc\x54\xbf\xc7\x71\x70\xc0\xbb\xbf\x85\x9b\xde\x94\x53\x2e\x0f\x07\x8c\xda\x38\x6c\xd6\x78\x35\x2b\xe3\x32\xb2\x90\xae\x15\x97\x20\x49\xf8\x9d\x50\x53\x18\x8d\xc8\x0b\xc2\x84\xf1\x7a\xc7\x22\x38\xc2\xae\x55\x34\xf8\x73\x5f\xda\x2e\x3b\x0e\x0d\xec\xe2\xde\x10\xf3\xb9\x91\xf1\x89\x43\xd0\xdf\xb9\x11\x75\xf2\x95\xf4\xb3\xc5\xb2\x45\xd2\xde\x3e\xbb\x95\x93\xe9\x4e\x3f\x30\x5a\xd1\x03\xc4\x45\xec\x10\x57\x34\xa0\x9f\x7d\xbe\x49\x77\x85\x49\xb8\xc9\xf1\x1b\x44\x7a\x48\xfd\xa0\x8a\x1c\x28\xc4\x9f\xbf\x58\x4b\x51\x90\x1f\x3f\x3e\x89\x46\x29\x2e\xd2\xfb\xe0\xa1\x74\x74\xc8\xdf\x16\x8d\xd7\x23\x35\x07\x8d\x8b\x04\x72\xcf\x4a\x99\x08\x7b\xd4\xa5\x0e\x62\x3d\x58\xc9\xff\x0a\xe7\x69\x51\xb9\x8c\xaa\x35\x0b\x59\x92\xe8\xfe\xc0\x8e\x91\xc9\xb9\x93\x62\x70\x38\x00\x47\x73\xa8\xea\x0c\x2d\x62\x12\xc4\xc4\x70\xdc\xf8\x31\x08\x9d\x16\x17\xf1\x0e\x77\x53\x66\xff\xa7\xd7\xa5\xbc\xbd\xeb\x67\x48\x36\xf7\x6d\x1f\xa5\xed\x1a\xec\x82\x74\x0c\xbd\x61\x84\x22\x51\xc8\x82\x10\x70\x6a\x7f\xd0\x34\x01\xb9\x5f\x7c\xca\x40\xcf\x79\x6d\xd9\xfd\xee\x87\x1c\xe9\x94\xb1\x5a\x36\xb6\x1e\x52\x1a\x22\xdd\x1e\x15\xdb\x68\xea\xbb\x2a\x8a\x36\x05\x12\x94\xa2\x39\x0c\x1e\xcb\xcd\xd8\xb5\x54\xf8\xf8\xef\x6e\xef\x5f\x05\x62\xc5\x35\x7d\xc6\xf7\x5c\xe9\x3c\x43\xcd\x62\x29\x1a\xb4\x59\x1d\x86\xf1\xc9\xbd\xe1\x1d\x14\x87\x92\x19\xda\x5e\x90\xcc\xbf\xbb\xe6\x8e\x52\xe0\x44\x16\x66\x2e\x09\x80\xaa\xf2\xf7\x96\x84\xac\x95\x31\xab\xd6\x91\xa3\x8e\x2a\x2e\xd9\xa4\x78\x8b\xcd\xe3\xdf\x30\x50\x69\x9a\xe2\x4e\x6c\x8a\x17\x7a\x7d\xd4\x92\x24\x7b\x01\x23\xe5\x10\x32\x8c\x52\x5f\xfe\x6f\xf6\xab\x1c\x6e\x0e\xf6\x4d\xd1\xb7\xdf\x7f\x51\xe1\x67\xda\xf5\x99\x1d\xdc\x13\xe7\xb6\x89\x63\xb2\x09\x2b\xa3\x55\xb1\x6e\x72\xcf\xeb\xb6\xe9\x60\xaa\x22\xb6\xc8\x85\x67\x14\x95\x37\x69\x0c\x18\xad\x9c\x20\xf2\x0d\x52\x66\xc8\x0e\x50\xe2\x4d\x95\x3f\x35\x7e\x5c\xda\xd6\x6c\xd2\x5d\xc9\xbf\x78\x9f\xf2\xd8\x60\x82\xc8\x3d\x35\xa3\x39\xcf\x2b\xac\x4a\xda\x88\x9f\x27\xf4\xa6\xef\xd0\xc6\x65\x15\xca\x94\x3e\x57\xef\x39\x25\xfb\xa3\x7e\x20\x50\xb3\xb9\xcb\xef\x48\x61\x10\x15\xd4\xac\x74\xd8\x79\x4c\xa6\x96\x52\xfc\x55\x1f\x76\xfe\xef\x3d\x5a\xcd\xcd\x5b\x98\xc9\x14\x26\x5a\x2f\xd3\x12\x04\xd9\xf9\x79\x17\xf5\x53\x3a\x50\x26\xd4\x34\x8c\x47\x1f\x90\xef\xad\x13\x23\x37\x5e\x1e\x71\x5a\xc6\xdf\xf6\xa5\x53\x9a\x3c\xef\xc3\x7a\xd2\x91\xbd\xfa\xc1\xa6\x9a\x21\x99\x9a\xa4\x35\xe0\xea\xde\xb4\x0f\x8d\x51\x3d\xfe\xbe\x51\x82\x80\xd9\x85\xaa\xfc\x19\x1f\xbe\x43\xdd\x3b\xcc\xc5\x8c\x17\x67\xa5\xbe\xc2\xba\x63\xe9\x71\x5e\x06\x87\xf7\x78\x7b\x74\xee\x83\xe3\x68\xee\x15\xa9\x2a\xe1\xa7\x9e\x92\x0a\x67\xa1\x23\x4a\xd3\x31\x07\x87\xcb\xd0\x51\x4b\xda\xd3\xb3\x0a\x90\xb1\x2c\xa5\x54\xad\xd7\xff\x68\xe9\xed\x3b\x46\xc5\x2c\x9d\x8f\x11\x35\xae\x7a\x40\x1c\x9c\xd0\x28\x7f\xb6\x61\xa4\xaa\xd2\xe5\x94\x85\x91\xc5\x4d\xa0\x75\xc3\xd9\x5c\x54\x45\x55\x97\xde\xd3\x28\x14\x18\x59\x98\x5d\xde\xc5\x6b\x14\x63\xf3\x42\xcd\x8d\x03\x23\xd6\x53\xc4\x92\x74\xfb\x6f\x6f\x28\xfb\x12\x31\x9b\x53\x56\xa3\xc1\x8d\xd1\x4a\x9a\xe4\xd7\x94\x93\x61\xcc\xfc\x21\xca\x3f\xc5\x8b\xc4\x38\x37\x5e\xe5\xe2\xeb\x9d\xc4\xbb\x5e\xd2\x65\xa2\xa9\x27\x9a\x52\x85\xdc\x2c\x1d\x99\x9f\xcc\x5e\x64\x30\xf9\xfd\xab\xa3\x32\xc1\x2d\x2e\x58\xa0\x7b\x36\xe1\xb0\x62\xe0\x40\xfd\x20\x74\xe0\xe7\xc7\xc7\x4b\x59\x50\x2b\x4e\x8d\xbf\xb8\x3f\x15\x33\x64\x18\xf9\x80\x78\x7b\xf1\x16\x5d\xd5\xa4\x93\x0b\x78\x42\x56\xf9\xcb\x67\x34\x30\x47\xd8\x23\x4a\xab\xfc\x63\x9a\xd4\x58\x52\x1d\x8b\xc2\xf9\xe3\xa7\xb5\x4c\x0f\x33\x9b\x36\x34\xf7\xc5\xef\x9c\xa7\xde\x14\x2e\xfa\x5c\x1b\x35\x7e\x24\xcb\xa6\x0c\x53\x6e\x2a\x84\xa1\x5d\xd7\xb6\xe6\x32\x26\x0c\xa4\x2e\x71\xee\x56\xc9\x6d\xed\x84\x38\x15\x2f\x4f\xe7\x19\x4d\xbf\x2e\x4e\xd6\xcc\xf8\x94\x02\x65\x85\xc7\xdf\xd2\x71\x84\x8c\xba\xd5\xd4\xb1\xed\xae\x57\xe4\x54\xa1\xdc\x53\xe7\x4a\xb0\x43\x66\x67\xdf\x58\x1d\x3b\x98\xd1\x06\x55\xf1\x87\x7f\x7e\x47\x56\x8e\x3e\x02\x42\x99\x3c\xf6\xa2\x85\x0b\x54\xa3\x6d\x0e\x1c\x82\x28\xfd\xc7\xad\xaa\xbd\x47\x19\x73\x3d\x94\x82\xd5\xa9\x91\xdd\xed\xd4\x5d\x2a\xae\xfc\x87\x3f\x2a\x84\x59\x89\x0b\x5e\x16\x2d\x82\x37\xb2\x82\xc2\x4c\x3f\x57\xd4\x5a\xed\x16\xf1\x6d\x52\x17\xd0\x82\xfc\xde\x8e\x21\xf1\x0f\x97\x2f\x5f\xb1\x4a\x38\x80\xad\xbd\x45\xe8\x26\xb1\x2a\x76\xb9\x03\x4b\x7e\xc2\x9b\xc3\x94\xc6\x66\x99\x97\x12\x9d\xcf\x2b\xe2\x75\xdc\x78\x3f\xdf\xb1\x5d\xfe\x5a\x27\xf6\x39\x82\xd7\xf8\x8f\x86\xa6\xff\x1d\x32\x91\xaa\x7e\xed\xb0\xfa\xaa\x11\xd8\xef\x5f\x78\x32\xfb\xeb\x73\x12\xc7\x5b\xe3\x13\xb6\x3c\x57\x3a\x91\x1b\x57\xe3\x04\x7c\x16\x6e\x53\x74\x81\x10\x37\x44\xe6\xd3\x9a\xe8\x4f\xb3\x65\xaf\xa9\x8a\x1c\x1f\xd5\x6b\x21\x03\x93\xba\xdc\xb5\x0f\x64\x65\x93\x9b\x66\x24\xd9\x6a\x6d\x86\x9d\x0d\xdd\x0d\x62\x06\xc4\x01\x2c\xcf\x23\x96\xee\x1a\x41\x3d\xa1\x61\x9b\xff\xd9\x2d\xd9\xbf\x13\xcc\x61\x40\x4c\xfe\x6c\x82\x7c\xe1\xbd\xa4\x47\xa0\xc4\xee\x59\x9d\xce\xc1\xcb\xb8\x49\xa3\xad\x50\xdd\xf3\xd1\xec\x39\x1f\x9f\x14\x01\xcf\x86\x79\x87\x4a\xa1\x60\xbf\x2e\x5f\x47\xdd\xc5\x60\x12\x79\x24\x1a\x2a\x8e\x90\xd0\x4a\x15\x57\x0f\x81\xda\xc2\xd5\x28\x34\x91\x4f\x78\x87\x46\x76\xfc\xcf\xee\x94\x9e\xa0\x5c\xb0\xf1\xc5\xfd\x13\xfa\xab\x73\xa5\x51\x6a\xc7\xc3\x50\x83\x5c\x31\x2b\xce\xdd\xf3\xa7\x8f\x89\x92\x07\xbb\x26\x28\xe6\x15\x6e\x71\x47\x28\x85\x17\x75\x45\x44\x3b\xba\x60\xb8\x4a\x91\x21\x20\x93\xf8\x40\xcb\x58\x75\x56\xe9\x63\xd6\x40\x01\xf1\x1d\xbe\x3d\xbe\xfc\x94\xca\x92\x43\x2c\xb5\xcf\x78\xe1\x39\xf9\x15\x5d\x88\xc5\x87\x0c\xa7\x68\x3d\x27\x53\x37\xe4\x7b\x24\xd1\x84\x17\xe5\xed\xb6\xe7\x64\x76\x38\x1b\x64\x86\x0a\xed\x4a\x3e\x5a\x8e\xcf\xf2\x94\x9b\x70\xe7\x09\x05\xd3\xe9\x79\x48\x40\xc0\x4a\xd1\x25\xf7\x65\x97\x04\xae\x54\x28\x03\x6e\x7e\x6e\xf6\x22\x41\x22\xe6\x64\x02\xc8\x03\xaf\x12\xcd\xc0\xeb\x58\x86\x67\x55\xf5\x14\x16\x63\x02\x94\x6d\x9a\xca\xcd\x1d\xab\xf3\x3b\xb9\x1f\x86\x80\xd3\x5e\xbb\x50\x66\x24\xa1\x2b\x28\xc9\x49\x8d\xff\x57\x45\x4d\xd2\x41\x75\x9c\xfc\x7c\xdf\xed\x70\x8d\xeb\x6a\xa4\x1a\xf2\x09\x4e\xf4\xca\x62\x6d\x0a\x8c\x7a\xa8\x08\xa4\xf9\x2f\x1c\x50\x88\x53\xd4\xe6\x7a\x3a\xb9\x01\xef\xb4\xa8\xeb\x58\x1e\xa1\x1b\x4e\xc3\x72\x5b\x43\x49\xb3\xfe\xb4\x31\xcc\xd0\xcb\x39\x37\x88\x4b\x6f\x8e\x1c\x79\xf6\xa5\xc4\xaa\xc1\x0a\x4d\x29\x16\x7e\xcd\xfa\xf4\xab\x2c\x4b\x39\xad\x73\x6d\xa7\xc7\x2b\x4b\x27\x64\x81\xcb\x59\x0a\x49\xa2\x72\xec\x89\x04\xd0\xe4\xf5\x30\xb0\x19\x8f\xfe\xf6\x52\xd9\x13\xe8\x44\x2e\x9e\xca\xc3\xd2\x9c\x6d\xb0\xa4\x1b\xd0\xe4\xfe\xeb\x20\x4d\x35\x21\x2c\xdb\xc4\x95\x76\xde\xcb\xc6\xc2\xfb\x5c\x8c\x6f\x40\xca\x17\xe6\xff\xf1\xac\x5c\x94\x35\x1a\xfa\xd0\x80\xf9\xa6\x86\xcd\xf0\x03\xec\x89\x7c\xa8\x55\x98\x6b\xfa\x01\x75\x79\x8c\xfd\xe6\xe9\x16\xb5\x10\xe6\x43\x6d\x1e\x36\x9e\x7b\x69\xb4\x56\x1b\xda\x3d\xc0\x17\x30\x0a\x62\xca\x4e\x58\x68\x17\xaf\xaf\xa1\x80\x38\xca\x35\xf9\x77\x6b\x8d\x4c\x4e\x56\x05\x6f\xda\x8d\x6b\x52\x24\xe9\x46\xa4\xfa\x97\x7c\x6f\xa0\x62\x44\x81\x8b\xa5\x68\xe5\x3e\xb9\x71\x2a\x04\xbc\x58\x5e\x7d\x02\x20\x89\xab\xca\x94\x59\xd4\x25\x72\xd4\xf5\x7b\x0d\x26\xef\x7b\xc4\xb6\x61\x7b\x4c\xda\xdb\x9f\x46\xbb\xe2\x5e\xdc\x67\xbc\xb5\xa9\x39\x81\x84\x8c\x2f\xba\xfc\x88\xe6\xac\x4f\x85\x21\x6a\x6e\xce\x6a\x21\x7c\x15\x72\xe2\x58\xf4\xdd\xe7\x15\xc2\x49\x17\xaa\x72\xb5\xc1\xe8\x99\x7b\x34\x46\x0d\xe7\x9c\xf0\x41\xa2\xc8\xc1\xbf\xfd\xb8\xe6\xf7\xe8\x03\x8e\x70\x46\xe2\xe0\xf0\xc5\x9d\x32\x79\x84\x6c\x54\x46\x97\xfb\x61\x59\x5c\xbf\xf4\xaa\x95\xab\x4b\x9f\xbe\x31\x59\x2e\xfe\x42\x39\xb0\xea\xf2\xba\x49\x53\x4d\x35\x7f\x8b\xf0\x3b\x08\x99\x95\x0a\x03\x9c\xd9\x33\x2e\xd5\xd1\xa2\x4d\x7f\x32\xfb\x8e\x66\xf1\x5e\x12\x04\x29\xa6\x70\xe0\xed\x5a\xb7\x76\x2a\xb2\x1d\xc4\x6f\x43\x1e\x21\xeb\xa6\x8d\xd6\x2a\x33\x2a\xd8\x00\x85\x2f\x0d\x80\x9a\xf9\x7a\xd5\x95\xcf\x58\x2e\xed\xbd\x28\xe1\xc3\x96\x8e\x57\x06\x27\xc1\x19\x12\x94\x1f\x1a\xe9\x79\x42\x61\xdc\x3b\x4f\x9b\xa5\x57\x50\x99\x50\x2d\x0d\x3e\x34\x4c\xa2\xaf\x38\xff\xea\xeb\x4f\x89\xcf\xf5\x98\x30\x04\x5f\xac\x98\x18\xb9\xb8\x2b\x0e\x5a\x97\xec\x95\xf4\x41\xc2\x88\x5f\x6b\x9a\x4d\x0c\x7d\x4f\x42\xff\xab\x41\xf3\x4c\xf7\x23\x0f\x8c\x17\x4f\xde\xef\xaf\x43\x36\xe1\x83\xfe\x6c\x24\x84\xdc\xf4\x88\x4d\x1a\x61\x82\x32\xde\x5c\x10\x75\x77\xc7\xee\x2c\xbc\x45\x4d\x51\x32\xf3\xbb\x6b\x77\x65\xf1\x0d\x1d\x73\x84\xd8\xc0\x26\x43\x91\x80\x20\x16\xee\x02\x4c\xbd\xd1\xfe\x86\xc2\x16\x0b\x19\xf5\x38\x97\xf9\x4b\x67\x15\x49\x16\x0e\xec\xe5\x4e\xad\xb9\xaf\xb4\xea\xaa\x04\x24\xc5\x20\xe4\x0b\xa7\x24\x7c\xca\xc5\xc0\x8b\xf9\xe2\x7e\x45\x29\x2d\x0e\x63\xbc\xbe\x8d\xce\x1d\xd5\x20\x7a\xc4\xb6\x71\x8f\x6a\xc4\x99\xfb\xf0\xee\x8b\xb4\xd4\xc1\x0f\x42\x39\xe4\x2c\x7c\x69\x6b\xea\xdb\x8d\x03\x93\xcb\x87\x7f\xa2\x4d\xaf\xb8\x5d\x6a\x86\x34\x4c\x34\x3b\x57\x0d\x93\x69\x61\x83\xb3\x57\x85\x98\x64\xee\xff\x47\xd7\xdb\xc7\x5b\x51\xd5\xfb\xe3\xee\x87\x94\x08\xe1\x70\x78\x10\x11\x11\x91\x10\x91\x7d\x3c\x1c\x9e\xc9\x48\x11\x09\x51\xd9\x88\x84\x64\xf8\xb0\xf6\xcc\xda\x7b\x16\x7b\x66\xd6\x66\xcd\xcc\xde\x67\x9f\x88\x4b\x66\x48\xca\x25\x22\x33\x22\x33\x22\xae\xd7\x6b\x44\xc6\x97\xab\x5e\xaf\x72\xd1\x88\x88\x88\xcc\x90\x5b\x66\x5e\xaf\x9a\x91\x3f\x32\x22\x32\x23\xce\xf4\x7b\xcd\xfa\xac\x99\xb5\x66\xed\x73\xff\xfa\x7e\x6f\x1e\xce\xd9\x7b\x66\xad\xcf\xe3\xfb\xe1\xed\x5d\xfd\xa2\x7f\xb0\x70\x61\xa1\x38\x49\x4e\x38\x9a\xea\xfe\x69\xe0\x36\x51\x0d\x91\xee\x02\xa3\xd4\xe1\x40\xdc\x1d\x32\x46\xdb\xc9\xb2\x29\x3b\x7a\x1f\xa4\x9e\xeb\x18\x71\x30\xe8\xe7\x2c\xbe\x3e\x9c\xaf\x08\x07\x47\xfd\x6a\x2d\xca\x49\xb0\xc9\xcb\xad\xed\x51\xb9\x83\x6e\x9d\x18\xb1\xfd\xcc\x2f\xe4\x2d\xe9\x9a\xdc\x55\x28\x86\xfd\x5f\x51\x87\x6c\xb1\xa7\x51\x7e\xa6\xa6\x33\x61\xd1\x80\x81\x7b\x4c\xfe\xfa\x67\x75\xe2\x10\xa8\x11\xc1\x7a\xa4\xde\xa6\x8e\x4b\xa9\x0f\x2d\x03\x9f\x44\x4d\xa8\x8f\x56\x16\xb0\x75\xdc\xaa\x71\x9e\x3d\xb1\x57\xa1\xd2\x10\x4f\x35\x0a\xcf\xaf\x98\x0b\x89\xb0\x6b\x0a\xef\x22\x0f\x3d\xa4\xf3\x9d\x66\x76\x42\x55\x7c\xf7\x9e\xbe\xac\xd9\x60\x7c\xfd\xf5\xf7\x84\xf0\x23\xd7\x27\xe5\xa4\xa4\xde\xdc\xa3\x35\xd9\x17\x35\xf9\x0c\xd7\x2e\x77\x44\x0f\x6b\xa7\xb6\x89\x61\x01\x16\xef\xfe\x81\x9a\x72\xfe\xad\xc0\x15\x03\xa5\xdc\xf5\xaf\xc0\xef\xf7\x19\xaa\x63\x5b\x8c\x10\xd0\x33\x52\x67\x9c\x70\x85\x91\xc9\x59\x85\x14\xd0\xa0\x85\x06\x97\x03\x09\xf7\x3c\x36\x5c\x69\xd0\xf8\xf2\x8e\xd4\x81\x95\xd3\xfe\xa8\xfe\xd4\xb9\xa6\x99\x09\xe4\x84\x57\xce\x0e\xd3\x4b\x24\xe1\x4a\x76\xe1\x82\x0b\xd4\xb1\x8c\x18\x61\x88\xda\x6f\xce\x30\x85\x29\xe2\x55\xb1\x5f\x42\x1c\x16\xff\xb3\x07\x63\x1d\xf3\x32\xef\xf9\x60\x58\xf6\x68\x56\x93\x9a\x47\x7e\xd4\x09\x53\xcd\x49\x37\x5f\xdc\x2a\x8f\x00\x75\x6d\x75\x5e\xba\xf0\x6d\xf5\x0b\x02\x1f\x51\x3c\xb9\xf1\xc7\x92\x87\xd4\x60\xd1\x6b\xac\xe4\x65\x69\x57\x21\x65\xa8\xc8\x97\x4d\x8a\x2b\x38\xbb\x45\x7c\x28\x3c\xa6\x99\x83\x61\x50\x67\x11\x03\x97\xbd\xa2\xbb\xb4\x69\x13\xd9\x70\x4f\x27\x2e\x54\xd9\x57\xd4\xa5\x75\xe2\x4b\x39\x88\x70\xc3\x88\x74\x58\xb1\x89\x6b\x62\x57\x25\xc0\x65\x5e\x5c\xa3\xac\xb5\x90\x47\x40\x22\xef\x16\x0d\x51\x5f\xa7\x7c\x64\xc0\x0f\xdb\xf3\xe3\xdb\x14\xba\x29\x65\x1c\xcf\xfb\xb8\x9e\x31\x03\xd7\xc3\x36\x05\xe0\x7a\xf8\x9f\x77\xa7\x7f\x9d\x90\x7f\x8e\x9a\xf0\x23\xca\x6f\xe3\xae\x5a\x85\x62\x38\x43\x77\x52\x62\xb4\x84\x4a\xa2\x26\xeb\xcd\x8c\x1a\xa1\xf8\xcc\x30\x8c\xaa\xfc\x72\x7e\x7b\xa5\xe2\x84\x40\xb9\xaa\x4b\xb8\x49\xdb\xc1\x57\x89\x19\xb3\x0f\xf2\x66\xff\xe1\xda\x79\x74\xa8\xa8\x1c\xc9\x44\x49\x50\xbb\x1c\x98\x13\xf9\x83\x17\x6a\xf9\xc8\x8d\x8a\x5e\x51\xc4\x1f\x9d\x28\xd3\x67\x8f\x85\xb8\x94\xd3\x86\x6b\x44\x92\xe5\x36\xf7\x85\x62\xb8\xfc\x9e\xe1\x6a\x2f\x06\x43\x6b\x30\x84\xd1\xd6\x94\xa8\xc2\x30\xbc\x78\xfe\xc0\xd1\x4d\x9a\x40\xa5\x1b\x73\xe1\xc3\xc2\x40\x5d\x8e\x0e\x19\x7e\xd4\xc2\x24\x05\xdf\xf8\xc3\x3a\x3e\x18\xac\x7e\x21\x8f\xee\x5a\x74\x91\x56\xf3\x39\xc4\x05\x2c\x07\x7f\xa8\x3f\x7e\x31\xfe\x12\x88\x45\x39\x25\xfc\xc0\xb9\x29\x99\x0e\x8f\x32\x9f\x70\x0e\x76\xf6\xdb\xdb\x24\x58\x99\x01\xd6\xb6\x05\x18\xb0\x59\x96\xbe\x33\xb9\xd2\x63\x6e\xfc\x3b\x7a\x93\x8f\x59\x45\x5c\xfd\xcc\xb7\x3a\xf4\x53\x15\x75\xeb\x81\x90\xf7\x0c\xcb\x27\xb4\xad\x3f\xf1\x50\xad\x16\x1d\x2d\x28\x68\xc7\x9d\x8a\xb1\x13\xcc\xf6\xd5\x48\x9c\xdd\xb6\x54\x38\xb9\x21\xdf\xb0\xa2\xe6\x8d\x97\x5b\x6d\x13\x87\x2b\x3c\x32\xc2\xdd\x88\xea\xd0\xfa\xef\x15\xdd\xce\x8d\x94\x61\x04\xd5\x6a\x78\xe2\x21\xcd\xe9\xca\xe0\x2e\xee\x9c\x3d\x02\xe7\x68\xc2\x58\x05\xd6\x85\x8c\x56\x4d\xdc\x85\x77\xcb\x83\x56\xad\x44\x9f\xd9\x3a\x21\xff\x89\x8f\xb9\xa1\x6a\xba\xa8\x5a\x30\x4a\xde\x57\x9f\x11\xa3\xca\x5b\x9b\xbb\x15\x31\x37\x78\x7f\x42\xe3\x21\xfb\xff\xe6\x68\x64\x2a\xce\x9f\x94\x83\x94\x3d\x5b\xe4\x2c\x8a\x14\xa2\x37\x99\xbf\x7b\x83\xc0\x88\x52\x0f\x62\x96\x3b\xa9\x5d\xe4\xbc\x8a\x2b\x10\x45\x7c\xab\xfc\x8a\x22\x8a\x5c\x98\xcc\x71\x01\xab\x46\x29\xee\x36\x9c\x5b\x2e\x5b\xc6\x17\x46\x09\x45\x0c\x17\xb8\x6c\xa3\xdb\x15\x78\xb9\xcb\x77\xe1\xd9\xe9\x2f\x6a\xf2\x50\x88\x41\xb5\x12\x7e\xe7\x8c\xcc\x38\x15\x6a\x9b\x0e\x72\x39\x91\x64\x55\xb7\x32\x62\xc0\x9e\x43\x98\x98\x94\x64\x6f\x9c\x2f\xb0\x89\x26\x76\x7d\x52\x8e\xe2\xd4\xcd\xb7\x6b\x65\x25\xee\x46\x20\x42\xc9\xfb\x8f\x97\x5f\x55\xe8\xa4\xb4\x54\x8a\xfe\xc9\xf3\x7b\x2f\x56\xfe\x6e\x1d\x33\x17\x4c\x28\xe4\x69\xfa\xd2\xa1\x78\x46\xcc\x09\x44\xdc\xf0\xe6\xdd\x01\x8a\x34\x04\xb1\xab\x7c\x8f\x50\x79\x05\x1e\xec\xd2\x80\x81\x8d\xfa\xa4\x73\x35\xa7\x18\xec\x63\x81\x71\x9d\xa8\x19\x8d\x73\xb8\x9b\xcd\xed\xc2\x79\x3f\x74\xf9\x48\x69\x31\xcb\x37\xa4\xe9\x63\x32\xfe\x0d\x35\x4f\xb9\x0a\x58\x26\x9b\xff\xa5\x26\x67\x1e\x4b\xd3\x9e\xac\x69\xb4\x34\x6e\x3f\xe2\xa6\x2a\xea\xf0\x7f\xee\xbf\x4c\x99\xa1\xc5\xfd\x65\xcb\x55\xcf\x06\xa3\x75\x31\x48\xc4\x80\x76\x95\x9d\x3a\x49\xbe\x31\xab\x59\xa3\xbe\x85\x3d\x3e\x27\xf9\xc6\x59\xe8\xf1\x68\xf4\x0a\xbd\x98\xa0\xd0\x9b\x79\x60\x5c\x0b\xd3\x9b\x78\x31\xc9\xa1\x37\x7f\x69\x5e\xb8\x77\x47\x61\x53\x94\x9c\x7f\xd8\xa4\x7d\x17\x6c\xfb\x1e\x71\x35\x6a\xe3\xce\x2d\x7a\xf8\xa4\x35\x2a\xe8\x6f\x80\xd4\xba\xf2\x26\x19\x13\x50\xad\x46\x89\xeb\x0b\x4d\xba\xcc\xb0\xd5\xc3\x15\x00\x3f\xc3\x36\x27\x8e\xf1\x53\x8c\xaf\x16\xce\x4c\x04\xdb\xfc\x5c\xe7\x3f\x15\xa6\x1b\x16\x17\xfb\x00\x0a\xd2\x9b\xa6\xff\xd8\xa8\x69\x63\x79\x1e\xf2\x3c\x11\x94\x05\x90\x6f\xf4\x3b\x02\xb2\x46\x98\x49\x60\xe8\xb4\x4c\xd7\x51\xe4\xdb\x8e\xb8\x9d\xca\xfd\x6e\x97\x2c\xcc\xeb\x88\x09\xf4\xca\x1f\x47\x5f\xac\x17\xc2\x38\x7a\xe6\x52\x6a\xe5\xfb\x1b\x84\x83\x3c\x72\x7b\x10\x98\xa2\xf1\xf5\x80\x7d\x3f\x1c\xf9\x92\x1d\xe0\x82\x21\x8a\xf6\x01\xc2\x64\x78\x1e\xb5\x6d\xc4\x95\x6f\x33\xbf\x17\xb4\x37\x6c\x7b\x18\x9c\x8e\x8b\xe1\xb1\x50\xfc\x6f\x5c\x78\x9d\x8f\xc9\xc3\x79\x62\xf2\xee\x20\x1f\x76\xe4\x9b\x1e\x4d\xb7\xd8\x26\x62\xac\x69\x0b\xfb\xde\xb8\x4e\xb3\x99\x22\xf8\x62\x97\x82\x55\x01\x66\xab\x02\xbe\xf6\x58\xb5\x59\x0b\x7b\x25\x8f\xda\x81\x1f\x7b\xca\x1c\xda\x21\xa3\x28\xe7\x3c\xf2\xe6\xec\x7b\x0f\x29\x18\x7d\x2e\x15\x04\x31\x34\xf4\xe5\xd3\x73\x88\x61\x21\x1c\xd5\x98\x0b\x6f\xd7\x57\x92\x15\xe2\x60\x80\x28\x66\xbe\x79\x54\x56\xe4\x56\xe0\xc4\x4d\x4f\x6f\xf6\x0f\x1b\x64\x60\xc0\xdd\xa2\x8d\xfc\x80\xaf\xeb\xf5\x49\xf0\x55\xf6\xd4\xd3\xe9\x13\x81\x3d\x26\x04\x9a\x64\x33\x96\xdb\x93\x7e\x93\x15\x1b\xbb\x29\x19\xcc\xde\x2d\x97\x6a\x71\xd5\xb7\xa8\x4d\x0c\x2f\xa5\x86\xd0\x7f\x4e\xfa\xd2\x4e\x9b\xda\x31\x0d\x8c\x31\x72\x8b\x4f\xb7\xec\xe2\x5c\x1c\xfb\xc9\xbc\x35\x50\x04\x1a\x14\x73\x61\xbe\x6f\x2a\x5a\x1a\xe0\x97\x0a\xbe\x68\x6c\xea\x10\x25\x5c\x47\xf5\x37\x8c\xb5\x6f\x58\xaa\x01\x6d\xa9\x83\x5d\x51\xe5\x6c\xdd\x2c\xc7\x1e\xb5\xa8\x94\xda\xbe\xb2\x45\x42\x8f\x61\x93\x44\xd7\x2f\x6e\x87\xcd\xab\x93\xf1\x5b\x13\x29\xe1\x2f\xf7\xeb\x89\x6d\xca\xa1\x21\x98\xef\x1a\xd6\xf7\xd3\xea\x5d\xe2\x21\xf1\xc7\xd1\x3e\x59\x62\x97\x02\xbd\xe3\x0b\xe7\x99\x70\x17\x97\x7c\xa2\x30\x75\xe6\xf4\xe8\x1b\xfe\x69\x7c\x52\xe4\xc0\xf2\x7e\xf0\xd1\x4b\xb5\x83\x62\xb9\xab\x02\xe2\xf9\x57\x76\x28\xd9\xf1\xb2\xab\x55\x29\x6b\x1b\x4c\x45\x7b\x33\x3f\x2d\xa9\x12\xea\xf1\xfd\x8c\x4f\xd3\xf7\xd7\x6b\xae\x1c\x8c\x60\x57\xde\xdf\xcc\xbf\x77\x0a\xdd\xff\x49\x33\x67\x4d\x2f\x14\xc3\xc6\x39\xc3\x45\x57\xd3\x6a\x4d\xa2\x48\x01\xa2\xd2\x55\x66\x94\x73\x7b\xc3\x0f\x6b\x05\x98\x6d\xe3\x0a\x6e\xa5\x11\xe5\x27\x6c\x83\xde\x76\x1e\xe7\x83\x9d\x38\x2e\x67\xc7\x15\x0b\x53\x56\xb1\x54\x0d\xa1\x4f\x3c\xa2\x21\x66\x88\x6f\x5d\x39\xae\x50\x0c\xbf\x74\x44\xa3\xb6\xd4\x31\xb7\xae\x87\xfe\xe7\xde\x6c\xfa\x90\x9b\xd8\xc7\xcc\x01\x60\x2e\xac\x1d\x1f\x1f\xa1\x3f\x0e\xe4\x03\xf6\x84\x07\xce\xfc\x7d\x8f\x5f\xaa\xaa\xff\x79\xe0\xda\xa4\xa7\xae\xb7\x36\x25\x23\x8f\xba\xad\x1e\x9d\x77\x37\xf7\x85\x60\x48\x94\x1d\xb3\xbf\x7f\xe1\x42\x45\x52\xb7\x56\xa3\xcc\x57\xf2\xee\x3d\x8a\xa8\x39\x0d\x7c\x1b\xc5\xcb\xcb\xf3\x4f\x08\xc9\x4d\xc3\xe0\xb8\xcb\x0a\xf8\xf2\xff\xd7\xd8\xf4\xc3\x6f\x20\x0f\x9b\xa8\x0f\x99\x9c\xfc\xe8\x97\xd2\x85\xb0\x43\x3d\x83\x36\xa4\xea\x4b\xee\x1d\xcd\xe7\xba\x86\x91\x81\xf9\x34\x57\xec\xda\x3a\xc7\x4a\xc8\x76\x8c\x4d\x6d\xa9\xde\xc7\x8a\xc0\x7d\x33\x71\x41\x50\x7c\xf1\xf5\xe1\xcb\xaf\x0a\x42\x44\x14\x4c\x5a\xf8\xf0\x1f\x7d\xbc\xcf\xf9\x38\x44\x8d\x37\x56\x27\x37\x94\x32\x5b\x45\x36\x6b\xa6\x21\x75\x6c\x11\xc3\x8e\x75\x70\xff\xb2\x44\xc2\xef\xb0\x6b\xd2\x86\x50\xbc\x4a\xbf\xc3\xbb\xc6\xe8\x03\x35\xdf\x32\x19\x6a\x28\x42\xdd\xce\x54\x28\x47\x6f\x22\x7c\x94\x9a\xbf\xeb\xb0\x92\x13\xe2\x3d\x55\xe6\xd4\x6b\xca\x38\xc8\x22\xca\x32\x26\x33\x6a\x43\x1f\x1e\x1a\xd1\x1f\xe0\x75\xe9\x60\xc1\xda\xf1\x10\x1f\xd4\x00\x73\xfc\xd7\xfd\x47\x6b\x47\xd8\x75\x10\xab\xaa\xbe\x4a\x47\xb7\xeb\x4a\x17\xb8\x1a\x0f\xd0\xb7\xcf\xd6\xe8\xfa\xae\xdf\xc0\xac\x26\xff\x79\x38\x7c\xc0\x38\xed\x33\x61\xe6\x52\xa7\x19\x9d\xab\x94\x93\xc4\xf9\x67\x95\xa7\xaf\x32\x60\xf7\xad\x97\x03\xb6\x8e\x99\x1c\x58\x72\x8d\xe2\x3d\xc7\xaa\x81\xcf\x8d\x39\xbf\x7f\xfb\x25\xaa\x1e\xee\x75\xf3\xae\x4c\xc7\x84\xe8\x64\xaf\x9f\x33\x42\xab\x28\xa5\xf4\x7f\x86\x2e\x54\x52\xa4\xea\xab\x76\x71\x4f\xaa\x51\x76\xa9\x1f\x83\xb2\x33\xfd\xfa\x2b\x42\x40\xd8\xa0\x01\xaf\x95\x4f\xdf\x24\xc1\x79\x0c\xa5\x5d\xe0\xe7\x09\x79\x5a\xec\xd5\x28\x97\xdc\x89\x9e\xe3\x30\xd6\xe2\x4f\x6e\x62\xc7\x4d\x34\x9d\xee\x7b\x06\xfe\x55\x9d\xda\x81\x43\x5c\xb0\x27\xce\xee\x98\xc4\xc3\x16\xd7\xa7\xed\x4a\x59\x11\x8f\xbb\x58\x0f\x3b\x6e\xcc\xa1\x82\xfb\x35\x85\x89\x6d\x19\x23\x3e\x31\x48\x0f\x2f\xda\x06\xb7\x69\xf2\x59\x18\x79\x58\xf0\xbc\x9f\x3b\x0c\x9f\x00\x23\xe6\x5b\xab\x02\x54\x8d\x2a\xa7\xcf\x5f\xad\x83\x2e\x28\x67\x77\x08\x90\xfb\x9b\x4c\x8e\x52\xa6\xcd\xe8\x98\xcc\x5f\xde\xd6\x2e\x6d\xc3\x69\x53\x11\x18\xa2\xfc\x31\xd2\x57\x56\xc0\x55\xca\xa8\x21\x64\xbb\xdf\xec\x49\x3f\x21\x0b\xad\x02\x1e\x7e\xfc\x92\x36\xcd\xd4\x80\x67\x81\x6b\x4a\xb4\xd5\xdb\xaf\xcb\x23\xe3\x21\xd7\x14\x73\xc4\x8c\x22\x53\x0f\xaa\x9b\x8c\x08\x62\xc9\xbf\x6a\x7e\x9c\xd8\x33\x50\x0d\x4c\x09\x8e\xec\x54\x84\x30\xa2\x84\xda\x76\x52\x13\xd9\xe5\xab\x1d\x6c\x4a\xe4\x5b\xee\x1f\xd7\x28\xe2\x60\x06\x23\x8e\x23\x24\xb4\x56\x1d\x93\xa9\x89\x21\x87\x51\xd0\x4c\x83\x0d\x66\x6f\xee\xcf\x87\x34\xd1\x37\x52\xab\x51\x31\x1e\x4c\x47\xc3\x25\xab\xb5\x4d\x1a\x66\x4e\x6c\x7b\xf1\x94\xa9\x73\xd6\x1d\x1c\x2b\xc0\x1c\x1d\x0d\x53\x89\xc5\xc4\xf7\xbd\x52\xc0\x2a\x56\xbc\xca\x9a\xbd\x51\x73\x07\x22\x26\x96\x1b\x11\xeb\x59\x39\xb0\x8d\xda\x50\x3f\x60\x3c\x8c\x7e\x70\x71\xba\x9d\x9b\xd1\x25\xce\xdc\x67\x57\xc8\x1b\xee\xc9\xad\x65\xb8\x60\xb9\xd4\x40\xc2\xe5\xd6\x09\xb6\x7d\xa9\x22\x6e\xe1\x5a\xc8\xf7\x51\x4b\xb5\x90\x1b\x78\x52\xef\xd3\xbd\x84\x41\x79\x4c\x69\xd4\x03\x97\xf7\x4c\x85\x62\x78\xd7\x50\xad\xc6\x45\xcd\xf8\xbc\x84\x9f\x5f\x22\x67\xbc\x4e\x33\xaa\x4c\x69\x45\x68\x59\x67\x47\x1d\xd4\x0e\x7d\xc0\xea\xa4\x9e\xc8\x7c\x2d\x5a\xaf\x28\xf7\xa2\xa6\x5a\x66\xdc\x97\xd5\x5a\x50\x9b\x0a\xcf\xf9\x7c\xfb\x83\x8a\xf7\xbf\x6b\x21\xd7\x80\x54\x7c\x52\xb1\xe7\xe1\x0a\x00\xd0\x00\x5c\x26\x4f\x20\x2a\xd1\x42\x31\x3c\x4f\x50\xbd\x4b\x84\x9a\xc8\xe7\x58\xec\x31\x1d\xba\xb6\x2d\xf2\x2d\xa0\xb4\x74\x4d\xd2\x3c\x45\x88\x5b\xb1\xd2\x33\xe7\xdc\x33\x0f\xeb\xd4\xc1\x32\xf1\x63\x4a\xce\xf1\xed\xfa\x33\xe0\xc5\x45\x2c\x98\xb4\x60\x85\x32\xc3\x25\x31\xbc\xef\x8e\xb7\x94\x6e\x26\x16\xc9\x2d\xf6\x66\x0e\x6b\x13\x41\x62\xdb\xc4\x20\x62\xc8\x9c\x7b\x1b\x88\x1d\x85\xeb\x16\x2d\xd2\xb3\xf9\xc8\x3c\x14\x93\x33\x26\x4d\x01\xb8\xe3\x17\x26\xa4\x9e\x56\x52\xfb\x97\x14\x06\x0f\x89\xce\xb8\x40\x27\xff\xe5\x95\x76\xe5\x13\x55\xa0\xf4\x0f\x77\xcf\x56\xdd\x7d\x6c\x1b\xd5\x40\x15\xf7\xae\xf7\x95\x75\x3d\xf1\xab\xb4\xe1\x55\x09\x6f\x37\x4a\x0a\xdf\xd1\xab\x22\x45\x53\x3d\xf7\xd5\xe3\x83\xe4\x17\xee\x81\x2d\xc1\x77\x34\x08\x9c\x8b\x1b\x5e\x0d\xd5\xb0\x98\x2c\xf5\xe6\x07\x0e\x18\xac\xec\xc1\x08\x30\x6c\x33\xdf\x99\xad\xad\x56\x31\x8b\x4a\x0d\x24\x11\x64\xbd\xd9\x49\x0f\xb6\x74\x45\x46\x55\x14\x2a\xdd\xab\x47\xaa\xda\x7e\x0a\xbd\x88\x97\x1f\x5d\x33\xa5\xe0\x2b\x9f\x0f\x0f\x3b\xa5\xaa\x90\x80\xb6\x4d\xd8\xa8\xa5\x9d\xde\x89\xa1\x94\x94\xf9\xf3\xca\x6d\x29\xe1\x92\xa8\x2d\x1d\xf9\x42\x8b\xa3\x26\x78\x94\x08\x43\xef\x7f\xf3\x93\xeb\xef\xb4\xd0\x32\x43\xb2\x4b\xe0\x8f\xa6\xcc\xe2\x90\xb2\x76\x89\x80\x01\xb3\xea\x12\x36\xc5\xb6\x2f\x5f\x19\x21\xe7\x7f\x3e\x72\x38\x36\xec\xa9\xd9\xe9\xfa\xa3\x6c\x12\x43\xf4\xaa\xe9\x30\xf3\xf2\x3b\xf2\xad\x23\xa7\x44\x2a\x01\x64\xd9\xdc\xf5\xef\xeb\x23\xba\xa8\xc6\xaf\xc4\x4e\x9e\x6b\x87\x6a\xbe\xcd\x18\x99\x31\x86\x7f\xbc\xd6\xa3\x56\x5d\xda\x10\x94\xbb\xdc\xe7\xe7\xcb\x38\x31\x79\x86\xea\x90\x92\x7d\xef\xce\x3e\x24\xe9\x61\x02\xfd\xc4\xda\x16\xe5\xc7\xa0\xe6\x01\x21\x33\xfc\x5a\xb7\xa2\x85\x81\x11\x14\x17\xa1\xaf\xb8\xef\x1b\x4d\x97\x18\x5c\x2e\xbc\x37\xb3\x6e\x37\x9c\xcc\x12\xb2\x93\x70\xb3\xf1\xf8\x70\x89\xc3\x26\x69\x04\xda\x99\xc1\xca\x74\xa9\x01\xfa\x30\xb9\xa5\x4c\x2b\x19\xa8\x97\xb8\xcb\x66\xfe\x31\x5c\x9d\x84\x56\x88\x1b\xb3\xb4\x73\xce\xa4\x18\xb9\x96\x78\x23\xe4\x1b\xd7\x28\x6b\x1c\x5c\x07\xd9\xa8\x3f\x0d\x6c\x53\xde\xb5\x09\x9a\xd8\xb9\x07\xe5\x4f\x36\x69\xc0\xad\x00\xb7\xbf\x90\xce\x3a\xa5\x80\xf7\x40\xe1\xe8\xe9\xe2\xfe\x99\xf5\xf8\x5b\x66\x87\x89\x39\xac\xe8\xd1\xf9\xef\xbc\xef\xe4\x40\x05\xb0\xc9\x1f\xd0\xe7\x46\x24\xe0\x3d\xa7\x0f\xe1\xf1\x60\x83\x32\x89\xb3\xb9\x4c\x4f\xac\xe9\xdf\xb9\x45\x73\xca\x0d\x60\xae\x00\x8c\xd2\x3b\x3a\xb4\x64\x8c\x11\xf3\x84\x62\x5d\xf1\x6e\x7d\x86\x63\x06\x46\x22\x0f\xb5\x14\x82\x3c\x6a\x54\x85\xbd\x67\xf6\x1b\xa1\x52\x56\x04\x9e\x8f\x88\xcb\x63\xd5\x2d\x4f\x68\x5b\x16\x3e\x99\x8b\xa7\x6f\xcf\x65\x21\x70\x32\x1a\xf0\xd7\x98\xff\x44\x5b\x8b\xe0\xb7\x52\x21\xdc\x3a\x5d\xe3\x87\xd8\xc0\x66\x14\x18\xf0\xae\x71\xd0\x2e\xde\x50\x27\x4a\x41\x96\xd9\xb3\x23\x79\x7c\x86\xd5\x62\x16\x9a\x1f\xf4\x90\xc6\x2a\x69\xa2\x2a\x61\xda\x18\xa9\x7d\xde\x10\x45\x94\x89\x11\x01\xb2\xba\x7e\xef\x80\xf8\x98\x4e\x99\x59\x28\x86\x63\xb5\x5c\x85\x0c\x5f\xf6\xe0\xb7\x0d\x50\x10\xa5\x5c\xb9\x0d\xc4\x6c\x16\x3f\x2e\x7f\xb7\x85\xea\x89\x0b\xdc\x9e\x45\x83\x95\x73\xe8\x82\x86\x79\x66\xf1\x59\x5d\x96\xdc\xe6\x7a\x99\x1c\x95\x35\xe0\x4c\xf2\x79\x66\xcd\xe4\x35\x95\x9e\xea\xe2\xc8\xbf\xa1\x65\x43\xe4\x03\x5d\x57\x6c\x3f\x0e\xfb\x69\x4a\x34\x61\x0c\x57\x02\x1b\x31\x61\x1f\x2c\x86\x49\xeb\x5f\xd4\xc7\xab\xd8\xc7\x7c\x8d\x06\xac\xb6\x66\xbf\x0b\x94\x72\x42\x38\x6a\x89\x5e\xe3\xac\xb2\x11\xf1\xa2\xec\xe1\xf9\x5c\x13\x25\xfa\xf3\x9f\xee\xd4\x15\x3d\x6b\xd8\x35\x89\x1f\x30\x2c\x7e\x73\xe7\x26\xad\x83\xae\xd1\x6a\xa2\x6c\x7c\xdb\xc8\xa1\xd2\x0d\x50\x65\xc9\xbf\xf1\xbe\x3c\xa6\x35\xea\x79\x04\x06\xd3\xe1\x4f\xc4\xa0\x6e\x25\x89\x2e\x48\xb3\x50\x0c\xcf\x6c\x53\xb5\x13\x7d\x0c\x35\xe5\x07\x1e\xd1\x86\x71\xc8\xb6\xc5\x75\xea\xcd\x7d\x48\x23\xdb\x1a\x36\xf2\x3c\xee\x13\x2b\x7e\x60\xc9\x9d\xd0\x58\x5b\xc4\x89\xfe\xe8\x67\x97\x25\x94\x97\x59\xd3\x5a\xc6\x4e\x4b\x17\x28\x56\x77\x94\xab\xd7\x85\xab\x95\x1d\x17\x67\x9f\xf0\xd8\xf7\xef\x4f\x27\x89\xcb\xc4\xe5\x96\x5f\xf4\xd7\x4e\x15\x1b\x1e\x25\xbc\x72\xc0\x0b\xc8\x97\x4e\x6b\x12\x5d\x8c\xc6\xb0\x83\xde\xdc\x5f\x94\xd2\xc9\x26\xbe\x03\x9d\xde\xf3\x27\xf8\x7b\x29\x2c\x40\x4e\xcd\xf3\x31\x6a\x15\x39\x99\x30\x55\xc0\x30\x18\xa9\x13\x1b\x47\xbd\x45\xf8\xd6\xc3\x8a\x49\x1e\xa5\x26\x0b\xca\xe5\xe8\x1d\x0e\x95\x3c\xaa\x80\x45\xf7\xe9\xda\x43\x7a\xad\xe7\x46\xd5\x1e\x44\x9d\x81\xa3\x5b\x95\x0c\x68\xb9\x0c\xd0\x95\x15\x42\x5a\x03\xb9\xd8\x30\x29\xb8\x84\xe6\xef\x5a\xaf\xa1\x3c\x12\xaf\x97\xeb\x7f\xa9\xb1\xec\x03\x56\x06\xa8\xa0\xaa\x6e\x56\x43\xb6\x03\x78\xf3\x93\x5a\xe0\x61\xd4\xf5\x49\x0c\xea\xcf\xfd\xb5\x43\x93\xaa\xa9\xc4\xd3\xee\xe7\x6e\x4a\x0e\xa2\x81\x14\x27\x86\x5c\xae\x36\x42\xa1\xbc\x9a\xb8\x66\xd3\x66\xec\xe1\x9e\x5d\x37\x30\x61\x1e\x60\x23\x31\xb3\xfc\x6f\xcd\x9e\xa2\x8a\x71\x4d\x99\xda\xfc\x69\x8c\x2c\x9b\xec\x28\xae\x1c\x5a\x78\xa1\x02\x7c\x8e\x8e\x8b\x4d\x7a\x92\x81\xc1\x93\x6f\x4f\xd0\x5e\x3e\x71\xb0\xe7\x23\x06\x6a\x91\xe9\x14\x33\x6e\xba\x0c\x5d\x3d\x38\xca\xd3\x26\x47\x36\xbe\xf1\x4a\x4a\x90\x94\x87\x96\x2f\x6f\x1b\xa6\xb4\xb2\x6a\x52\xff\xea\x9e\x16\x29\x06\x9f\x18\x51\x50\x49\x7c\x11\xf3\x8b\xdf\x53\xb8\xa5\xa4\xe2\x22\x21\xfc\xdc\xc6\xe4\xe8\x91\x20\xe5\x46\x4f\xd3\x44\x01\x1b\x28\x96\xc3\xec\x78\x65\xb4\x3c\xc1\x88\x6b\xf5\xe8\xc3\x59\x3c\x1b\x14\x79\x96\x04\xae\x59\x0e\xfa\xf0\x66\xdd\x32\x4e\x77\x32\x33\x55\xf5\xf2\xec\xb9\x76\x72\xf5\x0c\xbb\x05\x62\x99\x9f\x30\x2e\x2d\x9a\xe4\x50\x56\x41\x6e\x9f\xb6\x59\x83\x74\xf4\x2f\xb6\xa3\xd6\xbb\x1c\xd8\x70\xfa\xbf\xb9\x47\xe1\xff\x75\x74\x45\xcf\xd3\x3e\x26\x2f\x36\x76\x4a\xac\x49\x5d\x62\x44\xa5\xc6\x70\x65\xfb\x63\x3a\xd4\x25\x9e\x00\xf4\xe6\x8b\xfb\xf4\x41\x09\x37\x0b\x8c\x0b\xa5\xb1\x13\xb4\x0e\xc8\xf5\xa2\xd7\x03\x7b\xe6\x7f\x5f\xa3\x42\xfd\x92\xb6\x29\x7f\xf3\x6e\x19\x29\xca\x38\x96\xe1\x19\xf4\x0c\x24\x63\x21\xcb\xcf\xaa\x98\x37\x6c\x13\xc7\x6b\xf2\x43\xa4\x52\xe1\x92\x7b\xc5\x70\x95\x06\x1e\xe5\x5a\x37\x36\x4a\xd1\x3b\xf3\x63\x47\xf0\xde\x21\xfa\xef\xb7\x2d\x1e\xd7\xf2\x14\x7f\xd2\x3d\x44\x79\xe7\x86\x45\x02\x2f\xaa\xbe\xf3\x37\x76\x48\x7f\x9f\x42\x94\x19\xf3\x1f\x39\x2e\x30\x43\xc8\x8b\x51\x50\xdf\x3f\x2b\x4f\x79\xd4\x69\x1b\x08\x5c\xb1\x32\xdf\x2c\xa7\xdf\x4d\xc3\xa2\x66\xe0\x72\x69\xaf\x28\x6a\x3d\x78\x48\x63\xd3\x74\x0b\xf2\x92\xe0\xa9\x5f\xa5\xb9\x98\x70\xaf\xd4\x72\x53\xb0\xfb\x5e\x5a\x33\x44\xab\xc2\xc0\xf8\x7c\xff\xe1\x74\x36\xe1\x22\xa6\x1e\x38\xf2\xf2\x5f\xfb\xd1\x6e\xb9\x7f\xaf\xd9\xa8\x07\xe9\x12\x17\x0f\x6c\x90\x00\xc0\x32\x76\x90\x0d\xed\x5b\xf3\xe0\x85\xca\xd7\xf4\x71\x9a\xe0\x71\xed\xb9\x1a\x0f\x99\x3b\xd9\xe1\x58\x1f\xae\x6b\xe2\x10\x25\x2d\xd6\x63\x29\xc0\xec\xd9\x89\x30\x96\xfb\x38\x66\x8e\x34\x02\xec\x2f\x7d\xc0\x59\x8b\xeb\x4f\xf8\xd5\x37\xd2\xeb\x1f\xc7\x88\xba\xdc\xc0\xb9\x32\x25\x44\xb1\x6b\xe8\x25\x2d\xa5\x4a\x4c\x6b\x8d\xf9\x08\x5f\xdc\xac\x15\x03\x3e\x46\xb6\xa0\xcb\xe4\xc9\x43\x13\xb4\x07\x49\x39\x1a\xae\x2f\x4e\x4e\x66\xad\xaf\x39\x00\xbb\x26\x84\xf2\xbc\xb1\x50\x89\x4c\x16\xa9\xd5\x84\x06\xfe\xaf\x4b\x7a\x16\x25\x3d\x71\xc6\xcf\x9e\x5a\x37\x50\xd4\x75\xac\x0e\x22\x50\xf9\x31\x53\x5b\x4a\x1b\x8e\x06\xa4\x6e\xbc\x5b\xbe\x64\x7a\x8a\xc8\xd2\x00\x01\xa2\x07\x67\x2b\xa0\x39\xe4\xf0\x7d\x7a\x9e\x4d\xd0\x38\xfb\x33\x67\x80\x82\xd1\xea\x77\xb4\x64\x41\x3c\x0f\x92\x05\x6f\x16\xff\xe3\xa0\xba\xb8\x75\x89\x03\xf6\x68\xcd\x23\xda\xbc\x96\x3b\x3e\xd5\x6c\x64\x88\x8d\x66\xee\x39\x5f\x01\x3f\xab\x12\x37\xa2\xa5\x0a\x37\x1c\x95\x68\x27\xa1\x2e\xd9\x72\x4b\x6f\xbc\x7f\x54\x4b\xe1\x41\xc4\x13\xe0\xc9\xa9\xed\x80\x9c\xd0\xf5\xa8\xd1\x7e\xed\xb3\xc3\xb5\x36\x8f\x56\x01\x27\x79\xfb\xa4\xf4\x7c\xb2\x6e\x23\x93\xd4\xa9\xe7\xd3\x6a\x4a\x6d\x2c\x7c\xc0\x95\x6d\x7e\x8b\xae\x4c\x38\xe7\xdc\x0b\x94\xd6\x55\xe1\xf8\x16\x7b\x73\xef\x1e\xd2\xd8\xb4\x16\x23\x9e\xdf\x54\xb7\x07\xd9\x69\x67\x92\x3c\x55\xa1\x2a\xc6\x67\xf9\x76\xb9\xae\x74\x90\x6f\xe1\x86\x8a\x94\xf9\xd1\x93\x10\x2d\xf1\xaa\x80\xd8\xa4\xc4\x38\x74\x2c\xfc\xd9\x9e\x84\x20\x5b\xa2\xc9\xa5\x1a\x7f\x44\x23\xbf\x35\xb0\xc9\x55\xd8\xb2\x9f\x78\x7b\x78\xdc\xb5\x62\x57\xb8\x98\xd6\x10\x27\x97\x3c\x33\x52\x2b\xd4\x63\x7d\x06\x68\x05\x7f\xae\x5c\x6b\x5a\x23\xae\x00\xf6\xe6\xff\xe9\x1a\xb9\x53\x72\x03\x9f\x45\x19\x46\x8f\x33\xbd\xb9\xff\x98\xad\x39\xfe\x80\x29\x4e\x22\x32\xf3\xfc\xbe\xf3\xe5\x88\x61\x6a\xa1\x18\x5e\xbd\x35\x5e\x3e\xf0\x74\x2a\x62\xc8\xd5\x8b\x92\x37\xe3\xd1\x16\x69\xdb\xcc\xff\x5b\x9d\x3e\xd2\x36\xf6\x15\x7b\xd9\xfc\x5d\xe3\x95\x56\xc7\x44\x35\x61\xbd\x78\x60\x3d\xdc\xc0\xeb\xb8\x4a\x0d\x6f\xb1\x7f\xf5\x4b\x0d\x02\x61\x5a\x98\x45\x89\x4b\x04\x8c\xa1\x73\x74\xdf\x1b\x0c\xa8\x97\x70\x99\x80\xaf\xdc\x1a\xb8\x7c\x04\x10\x7e\x68\xdf\x18\x55\x9d\x8d\x1a\x0c\xf9\x2d\x55\xc0\x94\xfe\x30\x39\xbc\x61\xf1\x0d\x2d\xfa\xf8\x73\x62\xf9\x10\x64\xd2\x06\xd7\x1d\xd4\x94\xd2\x80\x83\x29\xc6\x9d\x1b\x9f\x38\x5f\xdc\x7f\x68\xaf\x7b\x33\x3f\x7d\x52\x96\xab\x98\x31\x98\x33\xde\x30\x54\xcb\xf2\x1c\x69\x89\x98\x58\xf6\x7e\x7e\xad\xca\xf1\x75\xcb\xc4\x05\x68\xc9\x4f\x16\x9f\x2f\xee\x75\x2c\x15\xbf\x5b\xdb\x15\x52\x56\x75\x10\xc7\xa2\x8b\x58\x95\x5f\xfd\xa8\x26\x19\x48\xeb\x5c\xb0\x81\x77\x78\x83\xc7\xb6\x78\x02\xd7\x85\x27\x30\x0c\xad\xb2\x57\xbc\xa8\xf5\xa1\x49\x21\x2c\x26\x90\x43\xf6\x28\x28\x58\x2b\x70\xf8\x20\xfd\x79\x1d\x20\xce\x45\xdf\xa2\x1a\xe2\xd2\x49\x2a\x68\x96\xf1\xb3\x9f\xbd\x4d\xb3\xdc\x30\xf8\x36\x89\x47\xf5\xdc\xfd\x1b\x46\xa4\xdb\x3c\xa1\x70\xc0\xf1\xa5\xbf\x53\xb8\x9e\xc2\x97\x28\x5e\x42\x67\xfe\xa2\x01\x7b\x2d\x52\xb1\x78\xb6\x10\xda\x73\x6f\x0e\x05\x80\xd0\xb5\x0c\x95\xd4\x9b\xfe\x39\x09\xd3\x9f\xd5\x31\x35\xfa\x4d\xa3\x17\xc2\x14\x68\x32\x97\xe8\x84\xd7\xfa\xee\x22\xa1\x98\xca\x61\x05\xfc\x93\xbe\x79\xfc\x0a\xed\x54\xb2\xaa\x67\x11\x86\xfb\x5a\xc2\x64\x7f\x7a\xf7\x85\x6e\x6a\xa1\x94\x9c\x81\xe8\xc3\xed\x7a\x5b\x69\x83\x51\x93\x1b\x02\xf3\x4f\xfd\xc9\x53\xb2\x04\x9a\xd1\x35\xab\x30\x75\x7a\x67\x17\x6f\x8b\xbc\xd2\x04\xed\x3d\xbb\x06\xae\x09\xf9\xcc\x16\xf4\xe6\xb9\xe7\xcb\x10\x5b\x2d\x14\xc3\x2d\x77\xf3\x87\xc1\x17\x84\x53\x25\x15\x71\xce\xab\xe9\x73\x5a\x09\xb0\xe7\x4b\xdb\xe4\x87\xae\x96\xef\xc6\x43\x36\xc6\x2a\xc3\x6c\xd3\x46\xc5\x6e\x89\x71\xea\xf5\x1f\xdf\x56\x48\x16\xd4\xad\x40\xc2\xcd\x0d\xd2\x99\x2e\xd3\x44\x72\x3e\x38\x71\x68\x12\xb1\x4a\x92\x17\x14\x7e\x8b\x49\xaf\xc2\xf1\xad\x1b\xf4\x33\xa7\xd2\x69\xc0\x6d\xb2\xa0\xa6\x31\x8b\x8e\x9e\x4e\xd7\xb2\x2b\xa9\xe5\xba\x3a\x36\xe9\xda\x7e\x89\xb1\xb5\x69\x8b\x4b\x98\x39\xbb\x59\xd7\x54\x26\x75\x3e\x93\x0b\x3f\x68\x69\x9b\x47\x70\x39\x90\x20\x4d\xeb\xc1\x8b\xd4\xc5\xf3\x0d\x8b\xae\x94\x69\xaf\x50\x0c\xdb\x5f\x1b\xaa\xb2\x6e\x18\x1f\x20\x47\x0f\xe8\xb1\x99\x5a\xf5\xc4\x8d\x21\xc5\xd4\xea\xcb\x96\xde\xdb\x52\x51\x10\xdd\xf9\xb6\xec\xde\x7d\x5e\x27\x6f\xc8\xcb\x99\xc9\xe5\x25\x6c\x83\x66\x6f\x69\x53\x4a\x64\x9d\xe0\xba\x74\x3c\x1a\xf2\x84\xea\xf5\x8e\x40\xf7\x39\xfc\xaf\x52\x8b\xb9\x68\x85\x21\x47\xe8\xa0\xdd\xb1\xbe\xaf\xf0\xcc\xc3\x49\x8f\x02\x79\xf5\x1a\xc8\x21\x57\x35\xa3\xaa\xb9\xd8\x9b\x5f\xb3\x46\x24\x58\x87\x6b\xf0\xc7\xf6\xb9\xbf\x59\xac\x40\x4f\x0c\x23\xa8\xc5\xf4\xe5\x2d\xef\xb5\x20\xed\xeb\x5c\xe9\x98\x4f\x47\xf2\xe7\x6e\x92\x7f\x08\xa0\x45\xb1\xd4\xde\xe0\x9b\x94\xdf\xe8\xe2\x82\xd8\xf2\xf5\xe6\xbb\xea\x2d\x82\xe8\xcd\x58\x13\xa4\xae\x91\xba\x3c\x2b\xf0\x7d\x3b\x16\x94\xc8\xcf\x3d\x9c\xc4\x8c\x00\xd4\x19\x8f\xad\x49\x9e\x3d\x48\x2f\x64\x6f\xdf\xac\x28\x13\xb7\x4c\x65\x3e\x32\x40\x1b\x4d\x71\x6b\x09\x83\x60\xb1\x48\xcb\x1c\xcf\xca\xe9\x41\x8d\xdf\xa6\xde\x7e\x1a\x8a\x1b\x7c\x6f\xa5\x99\x44\xe6\x5d\x4d\x40\xd5\xc2\x76\x4d\xd6\x98\xb9\xd2\x48\xc1\xf9\xaf\x79\x01\xe3\x73\xa0\x35\xcb\xe0\x25\x34\xa2\xf4\x52\xa2\x26\x81\x31\xf8\xaf\x76\xe9\x92\x7b\x46\x35\xb6\x63\x3e\x3b\x40\x5c\x67\x60\xdf\x3b\xef\xa5\x1b\x6a\x20\xd3\xf6\xd9\x50\xcf\x78\x28\xe5\xa5\xe6\x02\x2f\xe4\x33\xc2\x10\x9a\x73\x30\x31\xc7\x62\xe6\x66\xdf\x99\x0e\xe5\x51\x0a\x6b\x58\xd8\x76\x84\x38\xc5\xd9\xf5\x17\x2b\x7d\x14\x63\xc4\xad\x58\xe9\x9d\xc4\xb5\x23\x86\x29\x0a\x23\x44\x09\x53\x93\x9e\x86\x4a\x27\xd1\x8a\x8c\xbe\xc5\xe2\xa7\x15\x12\x7d\x93\xc2\x40\x73\xde\x71\x31\xc1\xf2\x7d\x24\x7c\x97\xc3\xeb\x76\xb7\xb8\x80\x83\x9e\x06\xa4\xcf\xdc\xa9\xa7\xd3\xaf\x15\xb1\x0a\xd7\x48\x15\x8b\x98\xde\x4c\xef\xa1\x16\x20\x2b\x65\x31\x90\x95\x67\x9a\x99\xe5\xa1\xca\x3a\x05\xfb\x56\x6c\x95\xfc\xe6\x06\xa8\x06\x1a\x94\x81\x99\x76\xbe\x9f\xe6\x2b\xe5\x37\x6b\x42\x8e\x8d\x9f\xfc\xc0\x04\x39\x95\x9b\x30\x2a\xab\x4f\x27\xb7\x79\x2a\x3c\xf3\x32\x72\x62\xff\xe0\xdc\x77\x34\x02\x56\x89\xf8\xb1\x06\xe4\x9d\x03\x15\xb9\x16\xe4\x1b\x16\x67\x2e\xf5\xe6\xde\x3f\xa0\x6c\x30\xc1\xe0\x22\xf7\xfa\x48\x75\x76\xee\x9a\x16\x86\xcd\xd5\x5b\x7b\x2f\x48\xbf\x7c\x82\xbd\xd8\x49\x6e\x87\xe0\x51\x2f\xa2\xcc\x57\x79\xdd\xf7\x69\x4e\x84\x51\x87\x8f\x4d\x15\x81\xf4\x8d\x03\xe9\x58\x38\x79\xd6\x94\x19\x00\x3c\xce\x2a\xf5\x73\x09\xb1\x12\x62\xdc\xee\x39\xbb\xe2\x97\x8a\xac\x92\x45\x29\x98\x19\x3c\x55\xd2\x62\xbc\xdb\x8c\x2d\x7b\xbe\xf0\x4a\x4c\x56\x44\x3e\xd8\x05\x66\x3f\x38\x0a\x36\x8f\x6e\x14\x60\xc2\xbb\x41\x05\xa0\xd0\xb1\xe8\x13\x2d\x47\x7e\x77\x8f\x02\xed\x54\x92\x65\x36\x78\x26\x9d\x8e\xd2\x9d\x1b\x8c\x44\x37\xbc\x2a\xdc\x1f\xea\xde\x55\x2b\x49\xf4\x59\x88\xad\xcc\x0f\x02\x46\x04\xda\xe7\xbc\xad\x8a\x4d\xd3\x14\xa1\xf0\x93\xbf\xd0\x6a\x25\x3a\x71\x91\x26\x18\x1e\x7d\x66\xba\x62\xc7\x62\xa3\x3a\x05\x74\x6b\x86\x6d\x4e\x5a\x1c\xca\x12\xf4\x66\xef\xab\x0a\x16\x16\x31\x1c\xb5\xec\xdc\x26\xb7\x9f\xbe\x95\x32\xa2\x46\x1e\xd8\x4f\x1f\x3a\x32\x54\x21\xee\xa1\x18\x41\x1b\x7e\x7d\xab\x20\x69\x23\x0f\x94\xb9\x46\xf4\x8b\x69\x09\x89\x01\x6c\x6f\x7e\xc8\x91\xf4\xe7\x97\x8a\x88\xa0\xfa\xb3\x76\xab\xf6\xee\x27\x77\x0a\xc9\x91\xde\x1d\x5a\x79\xc9\x90\x27\xcc\x60\xb3\x8e\x2f\x9f\x55\x60\x33\xc2\xe9\xa7\xf9\xa5\x8b\x34\xf6\x19\x72\x63\x85\x90\xf8\x8d\x1d\xea\x94\x07\xa7\xcc\xb0\xdb\xc3\xbb\x8d\x0d\x0a\x78\xc8\x0f\xc0\x2d\x25\x3c\xb1\x77\xb4\x72\x5f\x6c\xbb\x75\x77\x7d\xcf\xa2\x24\x5b\x4c\xb9\x8a\xef\x85\xce\xbf\x77\x98\x3a\x22\x24\xb2\xc9\xbd\x6e\x8d\x22\x12\x16\xd8\x7c\x40\xeb\x07\x0c\x20\x27\x77\x9f\x93\xb0\xc3\xfb\xda\x58\xcc\xd3\xbd\xdc\xc0\x2a\x42\xa4\x98\x8f\x2c\x93\x63\x49\x93\x36\x5c\x9b\x26\x46\x12\x77\xd8\xba\xfc\x8f\x49\x90\x2c\x6c\x3e\xf6\x9e\x42\xc9\x4c\x5c\xf5\x7b\x33\xd7\xef\xd2\xe7\xfb\xb1\x41\x69\xe6\xef\xab\x15\x8f\x47\xcf\x40\x76\x4c\x99\x78\x4b\x93\x47\x32\x51\x54\x98\xa5\xf5\x14\x33\xdb\xda\x54\xd1\x1c\x70\x2c\xf8\x97\x83\x49\x67\x3f\xa5\xb3\x53\x51\xd8\x3e\xa7\x05\x32\x27\xb8\x58\xac\xc4\xff\xe1\x07\x4e\xc1\xfd\x9d\x3f\xf7\x86\x42\x31\xbc\x68\x94\x7c\xbe\x55\xc4\x48\x53\x19\x6f\x64\x27\xce\x6f\x17\x6f\x3c\x48\x3c\x92\x8a\x61\x78\x48\xab\x45\x90\xeb\x5b\x89\x15\x5f\x76\xc0\x69\xcd\x1a\x05\x23\x0f\x17\xca\x51\x67\x00\x8a\x55\x39\x4f\x2e\x88\xac\x66\xab\xe0\xf4\xc8\xf5\xad\xf3\x49\x9f\x05\xdc\x03\x2f\x7c\x70\x97\xee\x16\xe8\x20\x86\x5c\xc3\x4a\x91\x25\x03\x53\x5b\x7c\x32\xa7\x99\x30\xed\xde\x7b\x08\x80\x5d\x37\x23\x13\x55\x90\x67\x48\x31\x25\xfb\x70\x9b\x42\x51\xb6\x6d\x54\x28\x86\x9b\xb2\xf2\x38\x83\x58\xa7\x3e\x37\x7c\xff\xc1\xa4\x56\x29\x73\x61\xd7\xcc\x8e\x11\x8a\x04\x06\xf1\x45\xeb\xbf\xed\x21\x4d\xc1\x9d\x52\x13\xbb\x2a\xb6\x3c\xf7\xf3\x87\x5b\xee\xae\x2f\xf0\xb4\xb9\x47\xd6\xa7\x9f\x6b\x29\x68\xa6\xcc\x61\x7a\xb3\xff\x7a\x1c\xe6\x2d\xda\x72\x94\x2f\x46\x8f\xe8\xec\x42\x8c\x4c\xdf\x12\xec\xc2\xe7\xe5\x94\x08\xa9\xa6\x43\xd9\xdc\x71\xdd\xdf\x37\xb0\x45\x0e\x2a\xf6\xe6\xc7\x0e\x15\x3c\xb1\x80\x53\x0e\xaf\x10\xf4\xaa\x95\x81\x53\xf3\x02\x2e\x6c\x13\xae\x5b\x9d\x3e\x8d\xb8\x1b\x3b\x35\x88\xf2\xbc\xd2\xfc\xca\x9a\xb6\x38\xaa\x26\xda\xd5\x99\xbf\xae\xe8\x03\xaf\x9b\x2c\x53\xef\xdb\x31\x42\xc1\xbd\xb1\x6a\xca\x80\x0f\x2d\x51\x22\x75\xc0\x2a\x36\xef\x30\xc3\x1b\x4f\x29\x44\x51\xcc\x41\x31\xce\x1a\xd9\xb0\x4d\xef\xe4\x1c\xc7\x9b\x16\xeb\xf4\x25\xb1\x30\x07\xf2\xe8\xc2\xd7\x34\x78\x12\x0d\xa2\x60\x2c\xdf\xde\xe4\x27\x06\xc4\xd1\x9e\x9b\xe7\xbc\x35\x5f\x80\x34\xa8\x6d\x47\x51\x93\xa7\xcf\x2b\xb6\x5e\xa0\x84\x3a\x53\xf9\xf4\xe1\xde\x4d\x5a\xe1\xc7\x2a\xc8\x25\x5e\x8c\x8f\x18\xb7\x58\xbb\x17\x81\x57\x8b\x3a\x7c\xbe\xfa\xc9\x7f\x40\x68\x55\x98\xc4\x21\x2e\x88\xe8\x14\x7b\x73\xdb\x26\x26\x88\x5b\x83\xa4\x26\xeb\xb9\xf2\x9d\x22\xc1\x5a\xb1\x5c\xda\x35\x9d\x9a\x71\x04\x9f\xdb\x21\xd7\x2c\xa0\x82\x85\xec\xb2\x70\x40\x78\xfd\x26\xf8\x87\x53\x3a\x85\x89\x59\xee\x3f\x57\xc8\x80\x38\x79\x7a\x57\x41\x88\x90\xe6\x8e\x74\xb5\xc5\xdb\x91\x1b\x16\x09\x36\x66\xef\xdb\xc3\x54\x71\x17\x93\xc4\xac\xef\x5c\xb8\x5a\x69\x62\x68\x50\xb1\xfc\xb8\x2d\x2b\x3c\xac\x1b\x41\xd0\x86\x19\xf3\x83\x27\x3d\x2c\x3c\x1d\xc5\xba\x32\x73\xc7\xb1\x61\xca\x2e\xd3\x03\x8d\x2f\xfe\x79\x5e\xd4\x6e\x01\x76\xa3\x3f\x13\x8f\x48\x3e\xbe\x7f\xb8\xd2\xad\x11\xbf\x07\xec\xd3\x0a\xc5\xb0\xf6\xa8\xe0\x71\xd1\x0a\x6e\xf2\x42\x6f\xed\x61\x0d\xcc\x19\x6b\xd3\xfe\x49\x0a\x4d\x06\x8e\x9a\x41\x07\xf6\xa8\xbe\x22\x85\x06\xf2\xf9\xb3\xcb\x5f\xfd\x16\x1c\x92\xc5\x8c\x1a\xd8\x0c\xc0\xb0\xf0\xe6\x33\xf2\x51\xac\xa4\xcc\xe4\x2e\x24\xd1\xb3\xff\x87\xb4\x3d\x74\x50\x45\x35\xb6\x18\x73\x41\x4a\x40\x8a\x78\xbe\x10\x6a\xea\xcd\x34\x9f\xbe\x32\x7d\xf9\x13\x77\xfd\x3e\x2d\x50\xb2\x3f\xbf\x46\x3b\x68\x34\x60\x86\x00\xc9\x84\xdf\x9b\x19\x2f\xd4\x71\x1d\xd9\xd0\xb7\xe6\xf6\xdc\xa4\xcb\x83\x61\xa3\x2a\x26\xff\x8f\x68\xf2\x84\x16\xe3\x02\xee\xa2\x9b\x0c\x7f\x31\x40\xd3\x76\x46\x6e\x25\x9e\xe6\x65\x34\x3e\x61\xac\x54\x03\x35\xdc\xef\x77\x41\x6d\x7a\xab\x15\xcb\xf5\x66\x3e\xf8\x82\x60\xb6\xe1\xc4\xad\xfe\x47\x25\x6d\xcb\x4b\x63\xa1\x1b\xc5\x77\x6d\x62\xfa\xef\xc4\x24\x3e\x01\x65\x2b\x74\xb7\xe0\xbf\x13\x3b\xf0\xdc\x0b\x5b\x75\x2f\x00\x28\xfb\xc5\x46\xf6\xad\x67\x63\xef\x30\x56\x43\x5c\xec\x3a\xfb\xd0\xb8\x3e\x21\x33\x9c\x33\x18\xfe\x60\x83\x52\x5b\x34\x6b\x16\x05\xdc\xd2\xf7\x74\xf7\x19\xdb\x16\xed\xc9\xc6\x91\x2a\x19\x9a\xe7\x4a\x31\x2d\xcf\x74\xbf\xab\x1d\x77\x83\xba\x34\x4a\x84\x5c\xe2\xfb\xaf\x6f\x69\x8c\xee\x00\x56\x9b\x90\x09\x6d\x7d\x17\xe6\x06\xb6\xdf\x9c\x14\x45\xed\xa4\xd4\x30\xbb\xa4\xee\x2c\x9f\x36\x64\x1a\xa7\x74\x60\x82\xa0\x39\x01\x66\x75\xd5\x31\xb8\xaa\x53\xa7\x75\x4c\x9d\x12\x3d\x8a\xdf\x2e\xbf\x42\x39\xb5\x36\x2f\x7e\x6b\xc8\x76\xa8\xdd\x87\x08\x58\xf6\xdf\x9e\x94\x21\x3b\x6a\x6b\x8b\xbd\xd9\x81\x4f\x6a\x60\x65\x2e\xd0\x0c\xf1\xf2\xe5\xc3\xda\x38\x8f\x9a\x65\xc4\x2b\x95\xa8\x90\x18\xa3\x49\x60\x97\xf9\xf8\x43\x95\xa4\x59\xf6\x60\xf2\xf5\x08\x0d\xa2\xcf\x3f\x7f\x37\x24\x3c\x04\xf3\xe8\x8f\x1f\x49\x05\x1a\xc2\x37\xb7\xfc\xc9\x7f\x48\xc3\x95\x9b\x60\x36\xd7\x53\x28\x86\xdd\x35\xcd\x81\x26\xf0\xb9\x7a\x62\xec\xe4\xc2\x91\x65\xbf\x18\xab\xee\x3f\x80\x26\x1e\xfd\xde\x8b\x56\x8e\x54\x47\x6a\x8b\x16\x2d\xbe\x72\xae\x12\x04\x1e\xd9\x91\xb2\xbd\x91\x85\xdc\xc8\x87\xb4\x4b\x16\x34\xbd\x0e\x91\xfc\x7f\x3e\x54\x3e\x55\x46\xa2\x92\x67\xe9\x4e\xed\xda\x19\x7c\x3e\x13\x43\x71\xae\x8f\xa1\xbb\xe6\xca\xa0\x0e\x0e\x64\xf9\x8f\x3d\x29\xc6\xcb\x55\x86\x52\x63\xd1\x3a\x44\x8b\xaa\x4b\x8d\x6a\x54\x65\x47\x3f\x7c\xcf\x50\x5d\x71\x29\x10\xfa\x13\xc6\x3c\x6d\xc9\x8c\x6c\x5b\x35\x96\xcf\xdd\x39\x57\xd7\xb2\xf5\x49\x9d\xf8\x70\xc0\xc2\x97\x27\x28\x7a\x8d\x9c\x30\x98\xed\x9c\x2d\x17\x84\x06\xf2\xb8\x34\x5a\xba\xdc\x5c\x36\x35\x41\xb7\xf8\x2c\x46\xb7\x64\xbc\x77\x35\xf5\x2e\xd4\x88\x6f\xfc\xec\x2d\x3c\xf6\xdb\xd8\x2d\x4c\x53\x3d\x67\xae\xfa\xa5\x8c\xf0\xc4\x35\x84\x7b\x64\x78\x7e\x59\xe4\xd9\x28\x11\x01\xbc\xfa\x1a\x78\x28\x15\x86\x5d\x64\xf2\x0a\x2d\xfc\xc1\x0b\x9a\x17\x3a\xc3\x08\x7c\xf0\xc2\xff\x1e\xa0\xd1\x0d\x10\xe3\xe2\x96\x80\x32\x9c\x3b\x5f\xbb\x01\x84\x76\x13\x13\xc3\x6a\xe5\xfa\xf1\x83\x93\xfe\xc6\xf3\x11\x01\x76\xc7\x97\x4e\x48\x94\xbc\xc1\x0f\xf6\xd2\x91\xf2\x29\xd5\xfb\x94\xac\x1b\xf4\xbe\x36\x2e\x44\xb5\xc4\xcb\x2a\xdf\x36\x52\x66\x4e\xec\x44\x05\x05\xe9\x11\x4b\xb4\xcd\xcf\x6a\xc3\x5c\x8c\x58\x3c\x48\xcc\x7e\xea\x85\x41\xa2\x8c\x73\x51\x45\x4c\xbf\xae\xd3\x8c\xcf\xa9\x67\xd3\x64\xc8\x17\xfe\x6d\x2d\xdc\xc0\x9a\xf0\xc5\xbd\x6e\xbb\xe2\xf1\x86\x9c\x1a\x22\x15\x80\x1f\x5d\x71\x5a\xa7\x00\x96\x19\xec\x7f\x01\x38\x30\xb9\x6d\xa4\x14\xfb\x6d\x21\x8b\xbe\xf9\xaa\xec\x93\x71\xb7\xc1\xad\xca\xc2\x7d\xaf\xc3\xa7\x8d\x32\x94\x28\x0c\x2e\x7d\x4c\x31\x52\x8e\x7d\x27\x5a\x26\xf4\x67\xa7\x2b\xae\xd0\xc4\x63\x01\xe7\xc6\xde\xbb\x7d\x90\x02\x9b\x37\xaa\x85\x62\x78\xae\xc6\x1b\x72\x71\xf4\xab\xab\x31\x3c\xf5\xb1\xd1\xe9\xd0\x81\x49\xc5\x12\x4e\x6a\x49\x51\x9e\x19\xf0\x86\x02\xf6\x0e\x4a\xfc\xfd\xd8\x47\xa5\x7c\x6f\x47\xab\x0d\xc8\x05\x43\xd3\x8d\x09\x0b\x3c\x8f\x20\x57\x3a\xc5\x85\x63\x14\x88\x3f\x32\x0c\x6a\x47\xc7\x36\xfa\x48\xdf\xd0\x70\xce\x25\xe4\xfb\xb6\xc0\x44\xe6\xde\x52\xdc\xf1\x85\x9b\x0b\x7f\xc5\xaf\xbf\xa0\x9d\x09\x0b\xb1\x04\x94\xe8\x2f\x18\x24\x02\x2a\xbc\x2e\x9e\xd6\x8f\xab\x72\x73\x15\xe2\xd9\xc8\xe7\x95\x52\xf8\xfb\xbd\xc9\x37\xc3\x01\xd3\x5f\xe3\x27\x84\x89\x9a\xcf\x48\x89\xd7\x55\x57\x1d\x69\x4f\xbd\x2f\x1b\x77\x17\x8a\xe1\x63\x6b\x92\xb0\x49\x54\x7b\xca\xec\x67\x67\x5f\xa8\xce\x7d\x5c\xec\xab\xa0\xfe\x8f\xde\xab\x4d\x3b\x85\x3a\xa6\x44\xa3\x9e\x1d\x28\x0e\xa6\x8f\x19\xb4\x36\x0f\xbd\xa6\x8f\x08\x90\x23\x94\x7a\x3b\xfd\x96\xf2\xde\x47\x24\x76\x43\x78\xe1\xa0\x1a\x5c\xca\x89\xba\xfa\xa7\x9f\x95\xed\x29\x22\xcc\x68\x69\x4f\x7b\x73\xf6\xf6\x8b\x95\x0a\xa1\x6c\x07\xd8\xf5\x49\xca\xb5\xea\xc1\x95\x72\xff\x16\xb8\x24\xde\xed\x87\xb7\xbd\x9a\xfe\x48\x0c\xd9\x36\x11\xcc\xb7\xde\xec\xe7\x3a\xd2\x35\xb0\x23\x24\xab\xf2\x95\xa7\x15\x77\x03\x18\xc8\x85\x97\x8e\x55\x26\x8f\x51\xe3\x0b\x4a\x2e\x9a\x5a\x8f\x43\x79\x7e\xae\x81\x69\xc4\x9f\xce\xea\x83\x06\xae\x0b\x1d\x0f\x93\x5f\x5f\x08\x68\xb9\xeb\x40\x3f\xbf\x85\xd4\xda\xf9\x06\x04\x5e\xe4\x20\x01\x33\xae\xef\x01\xc7\xd9\x85\xa8\x8a\x98\xdf\xaa\xa7\xfe\xe9\xf5\x30\xef\x98\x87\x6c\x95\xe7\x78\xac\x2c\x55\x3e\x55\x95\xe3\xb7\x9f\x4c\x19\x4c\x02\xd2\xb8\x50\x0c\xef\x61\x72\xa6\xd2\x8c\xea\x6c\x05\x31\x96\xf9\x9b\x09\xba\x52\xb7\x1a\x88\x95\x28\x8b\x1a\x10\xe5\x4c\x7d\x21\x1c\xa5\x1d\x02\xc3\xc0\x9e\x57\x0e\x6c\xc1\xad\x3e\x77\x4d\x0b\xa3\x9e\xb2\x1a\x28\x6d\x89\xf7\x72\x91\xd0\xd4\xd2\xd0\x8e\x4f\xc3\x38\xfc\x3a\x1b\xd7\x31\x0f\x5f\x22\xd3\x5d\xf8\x84\x40\xcf\xfb\x7e\xd4\x9b\x17\x8a\xe1\xe5\xc7\xe4\xe7\xa7\x9c\xc0\x24\xdc\x71\xf8\x02\x4e\x68\xc4\x59\xd4\xa1\x1e\xee\x0e\x10\xb8\x2a\xef\x7d\x17\xcc\xc0\xae\x65\xa8\xd4\x22\x40\xbf\xf1\x42\x45\x07\x8a\xf8\xa0\x51\x18\x3f\xdd\x1b\xe7\x6b\x18\x1a\xec\xc5\x4a\xe9\x97\x2b\x1b\x54\xdf\x62\x42\x9a\x2b\xfb\x15\x0d\x93\x00\xf2\x94\x22\x7e\x14\x56\x28\x2b\x3c\xaf\x46\x18\xff\xd8\xf9\x9e\xbb\xc5\x6c\xc4\xf5\x31\x33\xa8\x5b\x06\x88\x05\xb7\x20\x9c\xde\x97\x2b\x35\x6f\x5e\x9e\x9f\x98\xfe\x6c\x2e\xf5\x31\x88\xd3\x65\xef\x5c\x3a\x52\x1a\xd0\xb7\xa0\x9c\x73\x74\xee\x45\xff\x47\xf1\x09\x3b\xb4\x0f\x2d\x6d\x53\xe8\x70\x04\x64\xac\x97\x74\x0d\x54\xc0\xbe\xcd\xa8\x20\x3a\x98\x14\x27\xab\x48\x3c\xa7\xca\x9e\x59\x76\x89\xf6\x89\x11\x11\x8f\x20\x59\x0e\xfc\xa0\x96\xae\x6f\x6d\x14\x78\xc8\x75\xb1\x74\xe0\xe8\x05\x2b\x9a\xc2\x5c\xec\x93\xd6\xa4\x35\xec\xb8\x46\x93\xa3\x15\x71\xf1\x33\x0f\x4f\x48\xdf\xcb\x06\xf1\x2d\x8b\xda\x31\xc8\xec\xe7\x1b\xe1\xa4\xdd\x8c\x18\x09\x14\xac\x41\x66\xe0\x3a\xc9\x0f\x0d\x78\x9d\xfb\x8d\xc3\xb2\x79\x61\xd4\x53\x10\xc9\x99\xbf\xb7\x6b\x1a\xa4\x40\x68\x8e\x3f\x7e\xf8\xfd\xbb\x65\x40\x2c\x63\x6c\x0a\x0f\x80\xcc\xdd\xca\xf8\x99\xaf\x8f\x5a\xf1\x5e\x1f\x79\xf2\x32\x25\x0b\xc0\xed\xe9\xcb\xfe\xfd\x89\x39\x23\x5b\x5a\x47\x89\xf0\xc9\x50\x2d\x3a\x56\x6c\x6e\x74\x2e\x7a\x9d\xee\xae\xe1\x69\x24\x07\x4c\xb1\x78\x8a\x5e\x2e\x16\x50\x34\x70\x61\xe4\x1c\xfe\x7f\x63\xc7\x69\x7f\xca\x0b\xea\xc8\x6e\x06\xd5\xb4\x94\x4a\xf6\x7b\x23\xda\x54\x0c\x08\xbc\x90\xa9\xab\x75\xc1\x05\x1b\x0b\xa7\x37\x68\xda\xff\x56\x4b\xc6\x06\x9e\x45\x94\x57\xf2\xf4\x52\x19\xc2\x92\x41\x43\xf4\x12\xbf\xf7\xa2\xe6\xf3\x83\x6c\x1f\x0e\xaf\x6c\x37\xae\x1b\x0d\x81\x66\x2e\x43\x3d\x44\xb8\x91\x84\x9f\xd1\x94\x2e\xf8\x7e\x9b\xdf\x69\x38\x1d\xbb\xb2\xda\x2c\x07\xdb\x36\x12\x70\xce\xdc\xc6\xad\xaa\x64\x1d\x90\x1c\x32\x0b\x4f\xeb\xe6\x50\x18\xde\x03\xef\xce\xf3\x33\x14\x91\x76\x62\xf2\x35\xd7\x9b\x7b\x15\xf6\x8f\x4f\xb9\xbe\x25\x7f\x65\x03\xcf\xca\x06\xc9\x55\x1a\xa4\xcc\x50\x6d\x32\x14\x57\x5e\x02\x99\x21\x9c\x19\x1c\xea\x53\x66\x34\x0d\x9b\x80\xe0\x56\xee\x5f\x1f\x86\x37\xe9\x52\x9f\x13\x2b\x0a\xc5\x70\xf5\x3c\x19\x3c\x2b\x88\x19\x2a\x3a\x3c\xf3\xf1\x99\xc9\x0d\x98\x36\x6d\x46\xf4\xab\x8f\x8e\x49\x98\x65\x06\x3f\x82\x72\x40\xb7\x60\xc1\xff\x69\x88\xc7\xbb\x1d\xbc\x4e\x51\xff\xb6\x6c\xbb\xe0\xd7\xa3\xdf\xf8\xf2\x13\xe9\x07\xcc\xa9\x70\x31\x04\xea\x0b\xf9\x16\xdf\x72\xd0\x55\x8f\xdd\xd2\xfe\xfd\x6e\x45\x11\x84\xab\x68\x51\xc5\x96\x65\xb0\x7f\xb1\x7e\x23\x48\xdc\xba\xf2\x90\x9d\xa9\x2c\xd7\x8f\x62\x1d\xdb\xb4\xe6\x24\xce\x52\xb9\xc7\x6e\x87\x04\x32\x3f\x4d\x02\x5e\x77\x7a\x50\x5c\x20\x7b\x01\x32\x79\xb9\x76\xff\x21\xdd\x20\xad\x86\x9a\x89\xd0\x62\x78\xcf\x2b\xb2\xa6\xa8\x05\xee\x4a\xc4\x37\x63\xb7\x6d\x99\xa0\x65\x48\xcf\x27\x7e\xe0\xe3\xbe\xfc\xe9\xff\xb8\xa0\xe5\x2f\x00\x27\x05\xc6\x79\x39\xba\x2e\xcd\x3b\xaa\x10\xb7\xc2\x88\x61\x69\x02\x47\x9f\x7b\x58\xab\xdd\x70\x1c\x29\xa2\x47\x7a\xae\x3c\x8d\x3e\x31\xaa\x38\xde\x17\xfd\xd3\x2e\xd9\x65\x98\xc2\x59\x2a\xbc\xf1\x5d\x0d\xe7\xe0\xfa\xc4\x20\x35\xbe\x07\x80\x0c\xb7\x62\xae\x24\x7e\xf3\x51\x9e\x4f\x59\x8b\xdf\x78\xf6\x67\xfb\xb5\xda\x0d\x73\x01\x7b\x71\xa2\xf7\x1f\x50\x58\x9d\x9e\x87\x59\x5c\x6a\x3f\x1c\x6a\x2b\x4d\x75\xe0\x7f\xe9\x52\x39\xbb\xb6\xa9\x5b\x29\x78\x3e\x2c\xf8\x8a\xbd\xd9\xcc\xd5\x50\x8d\x2d\x42\x1e\x8c\x2b\x74\xbc\xe4\x3b\xbf\x6c\x4f\x34\xf6\x15\x7d\x0b\x23\x14\xdb\x18\x63\x2e\x23\xa6\x3c\x11\xe1\xd9\xa9\xca\x5d\x95\x4b\x89\x70\x59\xfb\x50\x2d\xb3\x0a\x5c\xc4\xef\x6a\x3a\x7b\x9b\x4b\xfc\xa6\x3c\x33\x37\x32\x08\x59\xb7\x04\x18\x27\x8a\xf8\xb9\x13\x76\x1a\xf3\x3e\x5b\xd0\x65\xce\x33\x93\xeb\x3a\x79\x56\xa1\x50\x0c\x1f\x51\xcc\xa1\x19\x36\x91\xa8\xc2\xb3\xdf\x3e\x95\xfe\x05\x1f\x16\x6b\xbf\xeb\x3a\x61\xd7\x66\x72\x9c\x5b\xe6\x9c\x09\xfa\xed\x03\x81\x7c\x42\x63\x37\xbb\xca\xbd\xa9\x06\xc5\x81\x36\x33\x78\x45\x36\x28\xe9\x05\xdd\x66\xe1\xe0\xab\x3a\x42\x74\x0a\xeb\xc2\xc4\x42\x0c\x86\xdf\xbb\x9f\xd1\xc9\x14\xab\x02\xc2\x9a\xc2\xaa\xb3\xdf\xd0\x21\x4a\xcd\xa7\x20\x6e\x15\xe7\x6e\x03\xdb\xb8\x94\xac\x01\x4f\xce\x11\x6b\x6b\x87\xd7\xe5\x30\xa0\xfa\xc2\xc9\x81\x22\x20\x06\x75\x8c\x82\xe8\x7f\xda\xa2\x85\x56\x87\xb8\x66\x52\xcf\x66\xcf\xd4\x64\xbb\xda\x00\x38\x60\x6e\x88\x00\x7e\x06\x35\x81\x9f\xc8\xcc\x9a\x24\xd5\x16\x7b\x30\x69\x01\xc1\xe5\xb6\xd8\x9a\x97\x0b\x89\xbd\x73\xe7\xf4\xc8\x66\xc4\x25\xae\x6f\x45\x7f\x75\x46\x59\x3a\xea\x15\xa2\x17\xbb\xec\x78\x92\x20\x6d\xd5\xbd\x33\xb3\xf4\xa8\xd6\xe4\x25\xfe\xef\x30\x46\xcd\xbb\xaf\x0d\x51\x87\x92\x46\x15\xc3\x00\x62\xf8\x81\x41\x6a\x2a\xab\x15\x8a\xe1\xa7\x96\x2a\x26\x54\x8a\x15\x5b\xae\xb2\x55\xe5\x28\x99\x98\x79\x3e\xa5\xd1\x8b\xdf\x30\x66\x64\xaa\x5f\x15\x06\x9d\xf1\x5e\xa4\xeb\x54\x32\xc4\x68\xb6\xde\xb8\x7c\xbf\xfb\xc7\x6b\x95\x35\xaa\x04\x30\xc7\xd7\x7f\xd4\x7b\x25\x39\xe9\x75\xbe\xf6\x74\x5e\x1c\xaa\x62\xbd\x65\x9c\xce\x66\x35\x4d\x28\x2a\xe4\x02\x73\x0f\xb8\x8a\xb0\x2b\xf2\xaa\xd1\x61\x7c\x7f\x81\x3c\xcf\xd4\xf0\x69\x89\xf3\xb4\xda\x34\xb7\xfd\x32\x43\x4e\x4c\xe6\x7d\xe2\x1c\xb8\xa1\x37\x21\xd7\x42\x4e\x3c\xf7\x7b\xec\xd0\x18\xd1\xeb\x09\xc7\xcb\x56\x0b\xd5\xde\xcc\xab\x35\x4d\x75\xc7\x49\xc8\x4d\x22\x76\x7c\xfb\x11\x25\x63\x58\x54\x60\x1c\xb7\x1f\x55\xf4\x2d\xb9\x20\x5e\xb8\x73\xe3\x20\x05\x48\xcd\xdf\xde\x76\x90\x1e\x2b\x60\x04\x95\x89\x32\xf9\xfb\xfc\x68\x98\x33\x94\x30\x83\xf3\x35\xe4\x90\xca\x71\xe4\x6a\x9c\xd0\x85\x5d\xf5\xb8\xbe\x4a\xa8\xe3\x04\xb1\x64\x6e\x13\x5f\x3d\x55\x65\x9d\xb7\x5a\xa2\xd5\x27\xf1\xf9\xc9\x44\x4d\x17\x1b\xc4\x54\xb1\x09\x0c\x9e\xdc\xdf\x6d\x79\x9a\xe2\x15\x22\x87\x6f\xe1\x91\x7d\xcc\xf0\x04\xdc\xe6\x8a\xd7\x13\x01\xc1\x40\x01\x8c\x65\x47\xd8\x30\x70\x6b\xd2\x00\x3c\x30\x6f\x92\x39\xab\x16\xf8\x3e\x58\xb9\x3d\x7b\xaf\x92\x4e\xe2\x81\x76\xa1\x18\x9e\xff\xf4\x60\xa5\xbe\xe7\x16\x6f\xc5\xde\xdc\x6f\xd6\xa6\xf7\x8c\xa4\x07\xfb\x25\x5c\xa1\x75\x62\xa4\xf6\xd9\x1d\xdd\x72\xd3\x5b\xc1\x94\x55\xd4\x7a\x61\xd4\xc4\x76\x75\x36\x23\xd8\xf2\x99\x0f\xdf\xaf\xe8\x7a\xa3\x52\xca\x8b\xaf\x3a\x10\x5e\x53\x2c\x80\x91\xf9\xce\x0b\x90\x7b\x96\x62\xe6\x36\x91\xe2\x13\x9f\x3b\xfd\x46\xfa\x11\x4f\xee\xe4\x9a\x9f\xb1\x6d\xd2\x25\xf7\xa4\xcb\x06\xee\x60\x48\x6a\x02\xa5\x1a\xde\xb0\x51\x31\x8a\x10\xc8\xa2\x7b\xdf\x1d\xa6\x9c\xa8\x0a\xe3\x60\x13\xfe\xf0\x9e\x1a\xa5\x67\x6a\xe4\x51\x57\x68\xe3\x5e\x32\x7f\x88\xf2\xcf\x78\xa6\xe6\xff\xe8\x27\xdb\xd3\x55\x8e\x47\x83\xa8\xbb\xec\x93\xcc\x97\x39\x68\xcb\x2a\xdf\xa7\x15\x9b\x20\xdf\x27\x85\x62\xf8\x2d\x45\xc9\xc2\x27\x0e\x5c\xce\x9f\x8f\xd4\xa4\x32\x1a\x94\x09\x57\xc8\x6c\x67\x7f\xdd\xf5\xac\x40\x1b\x6e\xdc\xd4\x66\x7f\xf6\x5a\x12\x45\xba\xf9\xf8\x3d\x9f\x3b\x2c\x63\x82\xcf\x84\x89\x6e\x6e\xb3\x5c\x62\x62\xa6\xb2\x55\x0e\xcb\xb0\x6c\xf2\x37\x34\xed\x9a\x78\x1a\xe8\x61\x56\x87\x27\x79\xcf\x40\x90\x32\xc3\x0e\xe1\x3c\x25\x4f\x5a\xa5\x44\x7f\x72\x7e\xbb\x32\x95\x61\x81\x6f\x58\x80\x81\xc8\x2c\x7a\xf2\x02\x05\x46\xe3\x32\xe5\x34\x65\xff\x31\x37\xe9\xb3\xeb\x71\x2b\xd3\x9b\x39\xa5\xd8\xf2\x89\xe1\x13\xff\x4d\x5f\x5a\xd4\xa2\xe2\x59\xc6\x9e\x27\x54\xb4\x7b\x33\x4f\x75\xb5\x29\xc3\x3a\x17\x46\x7f\xff\x66\xe9\x1e\x55\x2e\x96\x94\xb1\x03\xe5\xa1\x71\x2f\x55\x51\x0f\x6d\xee\x0f\xcb\x25\x83\x07\xcb\xf1\x63\xf8\xd9\x9d\x40\x7d\xbe\x6e\xc1\xf5\xcb\x96\x14\x6f\xba\x7e\x69\x0b\xc8\xb6\xb9\x47\x68\x42\x23\x81\x82\x38\xbc\x45\x9b\x9b\x54\x5c\xca\xb0\xa8\x74\x3f\x7d\xea\x02\x3d\x59\x98\x9e\x18\x4d\x3e\x70\x74\x50\x9c\x82\x4a\x02\x18\x9e\xdd\xb2\x4f\x63\xad\x08\xaf\xff\x78\x9b\xfe\xe0\x62\x01\xae\xc5\xb6\x5d\xa8\xa1\x18\xc8\x3c\x67\x92\xf0\xf2\x0a\xba\x03\xfe\xa1\x1e\xdd\x34\x46\xc1\x03\x00\x9e\xb4\x25\x3d\x55\x00\x33\x5f\x58\x82\x5d\x64\x2a\x05\x50\xfe\xe6\xa5\xc9\x89\xab\x80\x47\xe4\xa7\xc7\xe9\x12\x3c\xdc\xd8\x16\xf6\xb1\xe1\xb7\x42\x8d\x1b\xe9\xf9\xc4\x81\xe5\x1c\x3f\x3c\x63\x06\x2a\x83\x7f\xd7\x03\x23\xd0\xcc\x96\xe1\xca\x25\xa4\x75\xec\x23\x2e\xae\x9f\xbb\x62\x40\x3a\xe1\x54\x69\x05\xb9\xaa\xfc\x56\xf8\x9b\xfb\x07\x88\xab\x6b\xf3\x79\xce\xab\x1d\x8a\x48\x25\xf6\x1b\x18\xab\x3d\x5f\xb8\xf0\xed\xbe\x98\x32\x71\x73\x95\x9b\xdd\x7e\xbe\xb8\x0d\x75\xb0\x06\xce\x5c\x6f\xb7\x88\x19\xd9\xa2\xa2\x3b\xb2\x42\xb3\x47\x27\x3d\x1c\x43\x25\x83\xdc\x99\xb7\x94\x62\x13\x31\x1f\xdb\x51\x96\xb8\xfd\x60\x9f\x18\x5d\x26\x89\x10\xcb\x1f\xd5\x87\x15\xb1\x01\x6c\x9a\x51\x90\xcf\x9c\x23\xb3\xa8\x0d\x6e\x8e\x99\xd1\x59\x65\xf0\x65\x93\x1a\x7f\xc0\x23\x1f\x56\xf0\xaa\x20\x5c\xc3\xa3\x9c\xb9\xbf\x4d\xb9\xcb\xdc\xde\x2a\x6c\x3b\x25\x4e\x10\x6a\x0a\xca\xe3\xf5\x9a\xea\x12\xee\xae\x81\x76\x3a\x3c\xb5\xda\xdb\x23\x94\xdb\x68\x92\x3a\x31\x03\x14\x1b\x68\x7c\xfb\x9d\x36\xf5\xf8\xf1\xbf\x30\xf7\x75\xc8\x79\xd7\x32\x4e\xb7\xcf\x0f\x6b\x97\x6e\x91\xe5\x72\x5c\x92\x7c\x72\xad\x50\xad\x86\x3a\x9a\x6f\x95\x6e\xbe\x5f\x7e\xe1\xcb\x3d\x8b\x8f\x17\x8d\xb1\xe9\x8b\xd5\xb0\x88\x0d\x97\x2e\xfc\xcd\x74\x79\xda\x1a\x8c\x8a\xe5\xf1\xe3\xfd\xb4\x20\xcb\xc1\xf1\xd1\x29\xe0\x05\xd2\x87\x06\x4a\x46\x63\xcd\x46\xae\xdb\x02\xb0\xec\xcd\xb9\x1a\x76\x38\x31\xd1\x4d\x40\x70\xfb\x4e\x26\xa5\x23\xf1\x49\x4b\xec\xf8\xf4\x68\x0d\x82\x65\x23\xe2\x24\x1b\x60\xda\x9d\x3e\x75\x53\xa6\x74\xc6\xbf\xf7\xab\xef\x4b\xd3\x24\x2f\x3a\xf1\x3f\x79\x2f\x89\x5f\x6e\x8f\x5a\x59\xec\x9b\x9b\xde\x66\xc5\xca\xcf\xbe\x54\xf2\x0c\xaf\xfd\x25\xb4\x13\x51\xcf\x2f\x6c\xd4\xb3\xcf\x0e\x57\x64\x04\x1c\xe2\x4b\xa5\xa6\x3f\x2f\xd0\xd4\x30\xb8\x68\x9d\x68\xc5\x5e\xc8\x5f\xa2\x1d\xeb\x06\xaa\xa2\xd4\x40\x2b\x33\xab\x6d\xa4\x14\xb0\x0b\x5a\x86\x05\x2f\x6b\x0b\x1f\x9f\x11\x27\x96\x3c\x1a\x57\x28\x86\x3f\x7c\x4b\xf3\x5a\xb7\x91\x11\xa3\xf7\xae\x5a\x2f\xfb\xa8\x19\x5d\x8a\xac\x51\xf8\xf3\xed\x7a\x5f\x56\xa7\x76\x1d\x9b\x60\x4d\x7c\x5c\x5b\x78\x1b\x16\xc2\x25\x1a\x73\xb9\xb3\x7f\x5e\x2e\x2b\x8d\xc9\x85\xc9\xd3\x39\x95\xfc\xa8\x2e\x78\x67\xdb\xb1\x40\xd9\xa7\x74\xe2\x05\x72\x4d\x22\xd0\x09\x3c\xb9\x76\x68\x9a\x9e\x7e\xe0\x50\x96\x6c\xb4\x3e\xf6\x88\xe2\x7b\x8b\x6a\x05\x27\x46\xde\x64\xf7\x2e\x87\x70\x7f\x0b\x29\x07\xca\x13\x3d\x6d\xea\x36\xd0\xd1\x79\x95\xfa\x7f\x99\xdf\xec\x14\xdb\x87\x12\xb5\x89\xc7\xdd\x70\xac\xa5\x2a\x1b\x8c\x21\xc3\x02\xe4\x79\xee\x8e\x9e\xc1\x1a\xde\x22\xfa\xf1\xfe\xfd\xd2\x5d\x8e\x8b\x1b\x52\xa9\x33\x5d\x07\x7d\x46\x31\x51\x2c\x61\x13\xd7\x09\x0c\x2f\x32\x3b\x8f\xa5\x4f\x0e\x60\x2e\xc4\x14\xe0\xa9\x2d\xb1\x6a\xb2\x81\x6c\xbe\xc1\xcc\x9c\xb7\x6e\x84\x12\x39\x05\xc6\x39\xfe\xce\xdf\xdd\x29\xda\xd7\xa4\xea\x9f\xb2\x55\x87\x75\x62\xe4\x88\x30\x7d\xf7\x18\xd9\xda\x7a\xa8\x95\x9d\x9c\x71\xea\x72\x37\xef\x63\xe4\xf4\xe1\xd6\xe0\x8f\xd1\xaa\x32\xa7\x06\x86\x24\x0a\xc5\xfa\x3b\x63\xd3\x3f\x54\x62\xb8\x89\x99\x68\x06\x13\x6d\x63\x29\xe0\x7c\x79\x83\x44\xcf\xfc\xe3\x9a\xf5\xbe\x4b\x13\x1d\xab\xec\x23\x6d\xb1\xcb\x5f\x8d\xc6\x4e\xe5\x87\x67\x2b\x82\x7d\xdd\x98\x19\x20\x88\x95\x99\xd6\x3d\x44\x05\xef\x47\xb5\x2a\xbf\xb3\x37\x9f\xab\x21\x4c\x79\x97\x20\x4e\x7f\xde\x79\x49\xd9\x1c\x51\x12\x35\x5e\x34\xf0\x5c\xec\xc1\x5a\x7b\xbb\xbe\x2e\x47\x0c\x7b\xbe\xe0\x2e\x64\x87\x3c\x34\x44\x5d\xbb\x1b\x8c\xcb\xb7\xf5\xe6\xfe\xa3\x7f\xfa\x65\x5b\x84\xa3\xc2\x79\x1b\x74\xdd\xbe\x71\x5a\x0b\xe9\x19\x62\xd6\x97\x8e\x05\x5f\xb3\xd2\x11\xd6\x43\x8e\x06\x2a\xbb\xf7\x45\xf9\x24\xba\x26\x4f\xe5\x9a\xaa\xd1\xc7\x62\x6d\x1a\xb2\xdf\x60\xa8\x56\x93\xb8\xf4\xbf\x5c\x3d\xaa\xb5\xb2\x57\x94\x63\xaf\x14\x4a\x11\x18\x54\x1d\xa2\x5f\x39\x54\xb1\xd7\xb1\x90\x5d\x2e\x98\xb4\x07\xf4\xb2\x6f\x1e\xdb\xa2\x84\x4c\xab\x0a\x4b\xf9\xdc\x39\xba\xf1\x10\x22\x5c\xe1\x23\xfc\xb4\xa5\x64\x4d\xc6\xb0\x57\xa3\x2e\xd7\x27\xe2\x8b\x39\x4d\xc6\xde\xb7\xf8\x22\x33\xa9\x10\xde\xb5\xd4\xfe\xb7\x84\x6d\x5b\x44\xef\xe7\x96\x9c\x2f\xc1\x36\x51\xae\xbd\xe5\xa4\xb4\x9f\xe6\xde\x02\x8f\x9c\x33\x5e\x8f\x50\x81\x51\xf5\xae\x6c\xe1\xc6\xf7\x66\x7e\xfe\x92\x32\x58\xc5\x36\xe6\x1d\x7d\xa1\x18\x1a\x27\x2f\xd5\xce\x85\x8f\xdc\x26\xb2\x02\x15\x6b\x9d\xf9\x51\x4f\xcb\x28\xdc\x23\xe0\x3c\x27\xba\xbc\x7f\x79\x4d\xc3\x45\x60\x97\xf2\xc3\x20\x4b\xa8\xfd\xb7\x6b\x10\xbb\x72\x19\x1b\xbe\xe8\xa9\x7f\xbe\x42\x11\x6b\x66\xd4\xc7\x5e\xab\xff\x42\xe6\xd7\xf7\x40\x69\xfb\x09\x33\xa8\xd0\xba\xac\x1c\x6f\x5d\xa6\x0d\x33\x48\x15\xf3\x88\xa4\x28\x00\xef\x16\xd8\x42\xcc\xea\xe0\x66\x61\x1d\x52\x0c\xff\x50\xe0\x63\xc1\x6a\x99\xa4\x0d\xb1\x1c\xec\x9a\x40\xcc\x82\x6d\xe4\xf4\x53\x83\x44\xb8\xe5\x29\x0b\xba\xb4\x81\x72\x8c\x50\xc5\xae\x07\xce\xb1\x51\xd5\x72\xaa\x5d\x01\xae\xd4\x63\x75\xa3\x4f\x8d\x48\x5a\x28\x83\xcb\x04\xf3\xd1\xea\x6f\x4f\x69\x00\xf0\x3a\x66\xcd\x12\x35\x9b\x71\x06\x9b\x26\xf7\xa8\x4e\xab\xcd\x42\xfe\x43\xf7\xc2\x5c\x82\xdb\x81\x3b\x36\x89\xed\xaf\xd0\x49\xbd\x13\x75\xeb\x98\x25\xdd\x87\xf7\x48\xcc\xe8\xf7\xa9\x1b\x33\xfa\x33\xbf\x5a\xa1\x63\xa5\x3c\x07\xd9\x62\xd9\x3c\x4c\x83\xaa\x03\x0a\x26\xc1\x44\x86\x57\x3c\x12\x5b\x55\x89\x25\x04\xbf\x40\x63\x6c\xa5\x9c\xa5\x30\xfe\xc9\x3c\xd0\x0d\x3f\x2a\x87\x85\x85\x62\xf8\x8f\x39\x72\x9a\x81\x5c\x9f\x94\x90\x6d\x73\x8d\x31\xae\x73\x3a\x4f\xb6\xc4\xb4\xa1\x1c\xb0\x0f\x0a\x5f\x6b\xe4\x79\x01\xe3\x8a\xf2\xc5\xde\xec\xfe\x85\x83\x94\x1a\x1a\x1c\x07\x7f\xa9\x0b\x0e\x22\x33\x46\x04\xe4\x7e\x3c\x40\x16\xfa\xdc\xea\x02\xda\xd8\xdf\x2c\x4d\x8f\xf2\x3c\xe2\x0b\xe2\xea\xd4\x7b\x74\x1a\xbd\xeb\xe3\x6e\xb0\x39\xca\x3e\xb8\x45\xd3\xdb\x24\x6e\x85\x2b\xa9\xb9\xb1\x37\x5b\x6f\xe6\x82\x79\x17\x28\x13\x4d\x30\x16\x10\xc6\xab\x19\xb6\x3f\xfd\x67\xbb\x3a\x3b\xe1\xbe\xec\xde\x9f\x04\x87\xae\x19\xbc\x6a\xfa\x48\x59\xe2\xab\x00\xea\xd7\xc7\x15\xca\x0e\x0e\x55\x29\x14\x5c\xb3\x30\x44\xda\x65\x4f\xc2\xc4\x6e\x7e\x6b\x85\x9c\xf9\xeb\x19\x38\xf1\xb1\x0b\x1b\x97\xa5\xd4\xcc\xb4\xf8\xea\x12\xb0\xc6\x6f\x6d\xd1\x33\x78\x33\x16\x10\xcf\x5d\x72\x30\x39\xc1\xbe\xd5\xa2\x46\x91\x31\x34\xbb\xce\x06\xc6\x55\x10\x07\x50\x48\xbb\xf2\x46\x72\xd4\xfe\x28\x01\x1c\xb2\x30\xaa\xc1\xf4\xe0\xfa\x09\x43\x95\xda\x47\xd0\x3e\x0b\xc5\x70\xb6\x26\x51\xe6\x5b\xc8\xad\xc6\x3b\xe8\x1f\xbf\xa2\xab\xae\xc0\x5a\x8a\x37\xbb\xe1\xaf\x76\xc2\xd5\x2a\xfa\x88\xc9\x9d\x70\xf8\x8d\x3b\xe5\x3e\x95\xc2\x1e\x6e\xc6\x02\xbd\x08\xa5\xc4\xc0\x1d\x02\xa7\x93\xdb\xb7\x7c\xa0\xb8\x6c\x28\x36\xa2\x7b\xf3\x19\x38\xb6\x0d\x62\x9b\xdc\x8b\x9e\xc3\x6f\x86\xeb\xbb\x41\xae\x50\x61\xc4\x90\xa2\xf0\xf5\x2e\xd1\xda\x71\xbf\x89\x42\x31\xec\x5c\x1f\xd3\x0f\xa9\x30\x33\xca\xdc\x71\x68\x82\x7e\x87\x7d\x46\x0c\xbf\x0f\x24\x7b\x78\xc7\x21\xad\x51\x45\x0c\xa0\xa2\x7a\x65\xdf\x71\x18\xd0\x2b\xcb\x9a\xc8\xb0\xb0\x67\x23\x29\xd2\x17\xce\x1e\x0f\x2d\xfc\xe4\x59\x33\x67\xf2\xa6\x74\xc0\xd8\x0b\xb5\x62\x91\x4b\xdf\x89\xf4\xfd\xb1\xc7\xc7\x68\xd5\xb7\x61\xb9\xb1\x4e\x72\x1c\x9e\x3e\xfa\x98\x96\x36\xea\x7c\x6b\x26\x44\x20\x8e\x6f\x15\xab\x50\x6c\x70\x19\x1a\x2e\x85\x35\x35\xbd\xf5\x2a\x14\x80\x40\xf3\xd3\xf7\x35\xbd\x31\xe2\x59\x30\xb5\xc9\x96\xb5\xda\xbb\x89\xa3\xfa\xc9\x44\x09\xca\x38\xab\x29\xd8\x99\x5c\xa5\x48\x0c\xa4\x06\xbe\x26\xce\x20\x87\xeb\x83\xd0\xee\xfb\xc3\xd3\xe3\x30\x83\xd4\x00\xff\x9b\x7d\x39\xab\x2c\xeb\x94\x8a\x32\x73\x5b\x37\x7c\x17\x1b\xb9\xa6\x83\x38\x68\x33\x7b\x52\xe0\x5f\x6f\x93\xe9\x38\xbc\xbb\x3d\xa9\x03\xa6\x4c\xe3\x82\xe8\xbf\x04\xff\xdc\xc2\x5c\xea\x22\x12\xa8\x5d\xe1\xc9\x43\x9a\x50\x28\xf1\xc5\xc7\x0e\xb7\x3d\x03\xad\xfb\xa2\xe2\xd2\xeb\xa3\x8f\x7c\xf4\x1e\x29\xb4\x35\x7d\x1a\x97\xa9\x7a\x55\x92\x0f\xb9\x96\x44\xf6\x82\x35\x8a\x3e\x59\x25\xaa\x63\x7d\x5a\xe0\x78\xc1\xdc\x7f\x9f\xdb\x47\x47\x07\x67\x75\xe1\x78\x39\xe3\xe3\xbc\x90\xe8\xe7\x3f\x3b\x40\xe1\x14\x02\xd2\x53\x34\xa7\x99\xbf\x1c\x98\xa4\x55\x62\x51\x5f\x46\x38\x37\xa5\x2f\x83\xa1\x5c\xf7\xa3\x8a\xcf\x87\xb0\x6d\xdc\xb8\x6b\x98\x5a\x51\x00\x61\x84\xc7\xf2\x9f\x8e\x6e\xd1\x30\x8a\xea\x0d\x14\xc5\x64\x2e\x53\xf0\x6b\xcd\xa8\xa7\x44\x4c\xd3\xc6\x69\x9a\x67\x66\x4b\x08\x67\x3d\xf0\x02\xa0\x3e\x60\x4d\x23\xaf\x19\x30\x92\x66\x4f\x84\x4f\xb8\x5a\xae\x00\x0d\x4a\x7e\x3a\xef\x5d\xab\x81\x90\x88\x8b\x4b\x9c\x4e\x1e\x77\x94\xb7\xf7\x1b\xa2\x7e\x23\x87\x8a\x96\x69\x9e\xa9\x8c\xf7\x29\x8b\x85\xe9\xbf\x2b\x48\x4b\xb7\x22\x03\xe6\xea\xb9\xb7\xd6\x2a\x3e\x6b\x51\xc0\xe6\x17\xec\x6b\x03\xda\xd4\x45\x0f\x50\xda\xa7\x33\xd9\x3f\x22\x66\x20\x97\x07\xb7\xf5\x73\x15\x7e\x37\xc7\x75\x43\x77\x71\xe7\x0b\x31\xbb\x8d\x27\xd8\x2f\x0f\x90\x9d\xb6\x07\xe4\xb6\x7f\x9b\x3e\x56\xe9\x02\x01\x7c\x8c\x5b\x76\x6b\x59\x74\x7b\xba\x1c\x5d\x49\x2d\xd7\xa3\xae\x46\xf2\x64\x7e\x9a\xa4\x83\x3c\xae\x7b\x91\x80\x78\xf4\xb4\xf2\x77\xcd\x87\xc7\xc7\xc8\x4b\x12\xfe\xce\x23\x42\x4d\x0e\x23\x28\x98\xc2\xd7\xee\x1f\xd9\x5a\x87\x45\xb1\x00\x30\x05\x7f\xde\xa9\x41\x72\xf9\x57\x11\x08\x9b\xae\x97\x74\x8a\x8e\x13\xc3\x9c\x32\xcd\xd1\x8a\xe8\x9f\x57\x4b\xfc\xbe\xff\x51\xd6\x7a\x52\x8b\xb0\x66\x74\x7c\xfc\x2b\x63\x6f\xf9\x70\x89\x62\xe4\x31\x79\xda\xa4\x2e\xce\xdc\xce\x7c\xda\xd5\x59\x78\x36\x7c\x35\x1e\x5f\xf3\x79\x6d\x9c\x66\x71\x64\x04\xcc\xa9\xbf\x56\x4f\x87\xd5\x40\xe5\x0e\x64\xde\x7c\x49\x76\x49\x42\xff\x80\x83\x03\xc3\x01\x23\x35\xa8\x99\x03\x5b\xf9\x7a\xec\x23\x7d\xd1\x04\xe5\x4b\x76\x1b\x76\x20\x88\xc2\xb9\x2b\x77\xa7\xa3\xf2\x5d\x02\x67\x93\xb9\xe8\x59\x7d\xa8\xe3\x52\x03\xbb\x3e\x60\x07\x8f\xee\x53\x7a\x7e\x9b\xb6\x48\x34\xe5\x2e\x7b\x3f\x0d\x3b\x29\x31\xea\xf1\xe6\x25\x7d\xb2\x76\xd6\x5b\x8a\x60\x0e\x19\x16\x44\x85\xc2\x8b\xda\x7b\x63\xb4\x01\xcd\x71\xf8\x97\xd1\xa2\x75\x0f\x7c\x61\x0a\xdf\x9b\xfd\xd2\xc4\x3e\x87\x20\x70\x40\x0e\x3d\xde\xa6\x74\xe2\x15\x4e\xbd\xcf\x3c\xbf\x33\xb6\xaa\xb7\x03\x23\x8a\x35\xc0\x37\xfb\x4a\x29\xfd\x3c\x2b\x1d\x5a\x6b\x7c\xdf\x16\xf9\xcb\x18\x22\xe0\xfa\x7e\xd7\xdd\x9a\xe2\x24\x11\x22\x6c\x22\x52\xd8\x59\x21\x99\xe2\x56\xb0\x2b\x1d\xc2\x67\xbf\x23\xef\x65\x8d\x40\x85\xb9\xea\x0d\x6d\xa3\x46\xbc\xa4\xe7\x0d\x0f\x77\xa8\x1b\x4c\x06\xd6\x61\x79\xda\x5f\x7e\x24\x57\xd8\xe4\xaf\xd8\xa3\x2f\xe6\x2a\xdc\x17\x05\x34\x57\x2e\x59\xa9\xa1\x03\xb9\xba\x99\x11\x63\xc6\xb6\x4d\x84\xf0\xe1\x73\xbf\xea\x70\xf4\x31\xcd\x36\xc3\xa9\xf9\x70\xf9\xc2\x9f\xad\x1f\xad\xc5\x07\x0f\x6b\x0f\x6c\x91\x86\xc6\x23\x0c\xad\x82\xce\x44\x42\x5b\x7e\xb8\x5f\xb6\x65\x06\x8e\x2d\x54\xf2\xed\x02\x03\x3f\x9f\x51\x98\xd0\x5c\xac\x49\xf1\x99\xd8\x25\x38\xe1\xb3\x65\x3b\x37\xc9\x5f\xe3\x63\xec\x88\xc7\xfc\xc3\x25\x4a\x92\xd4\xfc\xf5\x04\xc7\xc7\x0b\x6a\x35\x9b\x88\x00\xbc\x65\xab\x6a\x39\xe0\xf9\x42\x2e\xfa\xbc\xc5\x0a\xe4\x89\xc6\x1b\xd0\xee\xfd\x63\xb4\x8e\xa2\x8e\xa5\x5e\x9c\x58\x50\x3d\xab\xc9\x7d\x58\xd4\x36\xa1\x98\x8d\xc2\xb3\xad\x29\x0f\x96\x31\x16\xae\xac\xcf\x4d\xd4\xc1\xb2\x0c\x63\xbe\xbb\x8e\xa7\x3e\xbd\xb9\xe7\x6e\x12\x3e\xa3\xd8\x67\xb4\x46\x6d\x30\x60\xf8\xd6\x18\x61\xca\xd5\x09\x74\xb5\xdc\xf9\x8b\x25\xb6\x54\x48\x60\xeb\x7d\xc5\xca\xb5\x32\x9b\xd4\x91\x1d\x88\xa6\x27\xfb\xd8\x50\xe5\xd4\x45\x19\x30\xfa\xd0\x6b\xf7\xcb\x8d\xa4\x43\x3d\xbf\xd0\xe0\x4e\x8e\xd1\x7f\xa2\xef\x5f\xa0\xe7\xf3\x58\x79\x38\x7b\x60\x9d\x44\x85\x94\xb1\x6d\x96\x50\xe0\x28\x99\xe4\xe4\x6e\x19\xe7\x7c\x46\x02\xa7\x66\x89\x2a\x6d\xb8\x22\x65\xe2\xe1\xee\x82\x67\x51\x9e\xe5\xdb\xbb\x5b\x0c\x38\x8c\x2a\xa7\x23\xce\xbf\x46\x5b\x22\xa1\x0a\xea\x21\xae\x22\xb9\x3d\xdd\x4c\xd7\xe3\x0e\x75\x3d\xe4\xfa\xb4\x2f\x33\x81\x5c\xf1\x25\xb8\x14\xb7\x81\xfb\xf3\xb2\x33\xf2\xf3\x38\x18\x27\x5e\x4e\x7f\x12\x77\xc7\x21\xdc\xeb\x3d\x73\xc1\x23\xda\x6e\x92\x46\x65\x02\x08\x24\x6f\xd3\xc8\x2b\x7c\x10\xe0\x12\x5e\x56\x89\x6a\xbb\xd9\xa6\xd9\x6e\x11\x86\x8c\xc0\xa6\x41\x8c\x49\x1d\xf0\xca\x70\x65\x6c\x42\x14\x4a\xf6\xf0\xb3\xc0\x18\xb8\xc1\x35\x49\x1f\xc3\xd9\xdc\x8b\xef\x5d\xa2\xfd\x6a\xdb\x86\x9e\x51\x6e\x70\x47\xbd\x2b\xbf\xa5\x8b\x18\xa3\x0d\x00\x8d\xbd\xf8\xac\x76\xa9\xa3\x72\xad\x14\xd8\x92\x77\xd3\x9b\x19\xff\x42\xfa\xf9\xbb\xc4\xc5\xbc\x1b\xc2\x22\x78\xdc\x3b\x4a\x1e\xc9\x26\x36\x49\x4b\x32\x09\xcf\x4c\x4a\xb3\x14\xb8\x18\x44\xa1\x18\x96\xdf\x55\x34\x37\x91\x6d\x50\x9b\xf3\xe2\xbb\xc2\x0f\xc2\x27\xa5\x85\x62\x98\xeb\x1f\x8f\xbe\x5d\x0c\x9f\x3a\x73\x7a\x2f\x64\x8e\xeb\xa8\x5b\x61\x50\x2a\x65\xff\xf8\x6e\xb2\x20\x43\x66\x2c\x18\x9f\xfd\xc1\x62\xe9\xf6\xe4\x56\x52\xdc\xf3\xae\xb7\x35\x3f\x55\x5a\x07\xd2\x50\x78\x76\xbd\x14\x0f\x47\xad\xcf\x7b\xe4\xc3\x43\xc4\x17\x49\xc0\x50\xfc\x14\x9c\x69\x57\x46\x00\x7e\xe2\x92\x9e\x5f\xf4\xba\xf0\xb0\xac\x11\x83\x0b\xbe\x73\xbc\x8f\xe2\x8d\xdc\x40\x5c\x8c\x18\x26\x5b\xff\x69\x0f\x12\x29\xc6\x67\x88\xc3\xe6\xc2\xf6\x6d\xba\x3d\x6a\x8c\x73\xcf\x0d\xd9\xaf\xb9\x19\x20\xac\x96\x1b\x7f\x9e\xaa\x27\x21\x43\xee\xfb\xf3\x97\x9d\x3b\x3c\x69\xd9\x6a\xe3\xd4\x40\x9e\xfd\x48\xa7\x2e\xba\x00\x6e\x65\x50\x8c\x59\x4f\xa7\x4b\x83\x1a\x8a\xda\x5f\x82\xb4\x8c\xb1\x66\x81\xe2\xe5\xc0\xe1\x2e\x61\x75\xab\x06\xed\x44\xbe\xb4\x61\x7c\x60\x7a\x4a\xe5\x08\xd9\x94\x23\xa6\x73\xff\xfc\x88\x36\xad\xc6\x35\xc4\xbb\x5d\x48\xa6\xa5\x27\x34\x2a\x40\x14\xeb\xed\xc4\x82\xfc\x4d\x2b\xa1\x4a\x4e\x4e\x1d\x80\xc7\x1e\xd3\x92\x3d\x23\xae\x32\x97\xce\x9d\xd2\x9c\x22\x88\x03\x4e\xa9\x62\x32\xfb\x80\xb6\x69\x73\xa8\x8b\x9b\x42\x19\xe7\x6b\x27\x34\xfc\x8a\x45\xa1\xe8\x2c\xf6\x66\x36\x67\x65\x72\x9b\x2c\x32\x4c\xb1\x37\x7f\xb1\x26\x72\xe7\x25\x06\x44\x99\xb9\xaf\x0d\x4d\x0e\x1c\xf2\x49\x89\xc0\xe2\x38\xfc\xdb\x0a\xed\xb9\x10\x13\x73\xd1\x3c\xb1\x6e\x7c\x72\xbc\x1c\xd1\x31\x62\xf0\xf2\xf4\xc6\xb5\xe9\x50\x85\x6b\x35\xc4\x4c\xae\x2b\x13\xc7\x8a\x8f\xb6\xa5\xdf\x2e\x47\x4f\x44\xe9\xb3\x64\x13\xcf\x4a\x74\xbe\x6f\xb0\x47\xc6\x3f\xd1\x1a\x66\xc3\x0f\x3d\x2c\xf6\xd7\x36\x02\xee\x4b\xbf\x31\x7a\x1d\x13\xd8\x88\x15\x3c\x00\x1a\x01\x8f\x94\x2d\x1d\xae\x44\xa9\xa8\xf2\x6b\x10\x13\x7a\xcb\x8f\x6e\x4e\xe7\xd6\x26\x65\x55\x18\x7d\x0d\x50\x4e\x8d\xe7\x27\x28\xac\xdc\xbe\xfe\x3a\xa7\x07\x99\xe2\x48\xbc\xd1\xae\xd9\xb9\xd3\xe8\x3f\xf1\xbc\xb6\x72\xaa\x30\x6b\x02\x25\xf9\xe8\xa7\x4f\xac\x53\xf6\x9b\xb3\xa6\x72\xeb\xea\x6d\x9a\xd1\x14\xdf\x02\xe3\x58\xe9\x32\xf3\xa7\xdb\x95\xb1\x5a\x85\xc7\x28\x10\xc3\xc8\xfc\xf3\x46\x55\xc4\x88\x80\x64\xea\xb5\x0a\xa1\xc2\xc5\xd8\x8c\x4e\xf5\x4f\x47\x8c\xd5\x1e\x18\x31\x2c\x2c\x7c\x9c\xe4\x6c\x76\xcb\x36\x7d\xb9\xc2\xf9\x46\xc9\x7e\xec\x6d\xcd\x02\xa7\x8a\x71\x0c\xc4\xcf\xfe\xf8\x91\x04\xf7\x5f\xe5\xe8\xed\x04\x03\xb2\xe4\x3d\x4d\xc9\x93\x7a\x3e\xe6\xc4\x12\x48\x56\xe7\x2b\xde\xd7\x93\x67\xcd\x9a\x0a\xd8\xa6\x92\xd2\x9d\x02\x35\x72\xf2\xdd\x43\xe2\xb2\x0c\xb3\x3a\xf1\x44\xa8\xcc\xfd\xe3\x7e\xf9\xce\x2a\xc8\x29\x09\x3b\x9c\x97\xb5\xf2\x9b\xa1\x1a\xe1\x2f\x46\xc8\x94\x7d\xf9\x9d\xc1\xb1\x96\xc7\xc2\x85\x4b\x62\x04\xea\x94\xf6\x31\x0a\x1d\xa5\x16\x55\xe5\x9c\x06\xe7\x2a\x44\xc9\x8c\xaf\x69\x36\x7a\xd8\xb6\x79\x75\x71\xbc\xae\x44\x6d\x5c\xa7\xa6\xdb\xe4\xd8\xd3\xe9\x8a\x61\xb3\x87\xa3\x86\x5c\xac\xfc\x32\x77\x29\xc4\x78\x9b\x54\xe3\x35\x43\xfe\x03\x0f\xaa\x8a\x77\x88\x30\x61\x51\xd1\x9b\xf9\x9b\xaf\x60\xdc\xf8\x70\xb4\x50\x0c\xff\x77\xb7\x22\x25\x46\xb8\xa0\x78\xf4\xb3\xb5\x2e\x15\x7d\xdd\x28\x51\x2e\x34\x97\xa5\x2b\x74\x25\x36\x2f\xaa\xd2\x82\xc4\x6a\x23\xfb\x9c\x22\x6a\xa2\x71\xad\x4f\x6a\x77\x8f\x36\x38\x53\x2b\x85\xf1\x7a\xe1\xb0\x66\xa2\x4c\x1d\x97\x54\x69\x5d\xd1\x34\x0a\x6f\xd9\x98\xbe\x37\x7c\x26\xc2\xe7\xc8\xbf\xd7\x74\x0e\x0c\x3b\x28\x59\x34\x10\xd6\x39\xb9\xa3\x0a\xcf\xd8\x45\x3d\x5c\x4a\xed\x91\x35\xc3\x94\x82\xc7\xe5\xd8\x39\xb0\xf7\x3d\xf7\x61\xad\x17\x06\x34\x02\x27\x5d\xf0\xe3\xf3\xd5\xa3\xe9\x20\xe6\x62\x62\xa7\x73\x4f\x5e\x97\x77\x2b\x05\xe5\x32\xf6\xfd\x34\x79\xe8\x97\x1b\x2e\x56\xde\x7d\x2c\x06\xab\xaa\x18\xbe\xe1\xb7\x8c\xb4\x62\x18\x0a\x74\x04\xe6\x02\x38\xe1\x93\x3b\x7d\xab\x60\x23\x26\x14\x56\xf3\x9b\xba\x54\x0d\x41\xc2\x79\x0f\x1c\xcc\xde\xb5\x23\x99\x06\xfa\x1d\xfc\xde\x7c\xe0\xc8\xe5\xda\xab\x8d\xbb\xce\x49\x2d\xb5\xc7\xb4\x76\x3d\x8c\x12\x87\x7b\xa6\xf1\x87\x23\x6a\xcd\xc3\x9b\xb4\xba\x1d\xa3\x6a\x22\x09\xbd\x03\x3a\xd8\x1b\x91\x67\x39\x92\xcd\x37\xa7\x4b\xde\x02\x3f\xf6\xef\x2e\xf6\x66\xec\x75\x3a\x18\x0c\x2b\x60\x93\xdc\x74\x2d\x01\xf9\xa4\x16\x70\x59\x31\xa8\x8b\x0f\xec\x8d\x13\x97\x1b\x3d\x80\x18\x25\x13\x9a\x63\x07\x8b\x67\xce\x15\xf4\x6c\x7e\xc4\x73\xdf\x78\xed\x02\x65\x0c\xc7\x19\x30\x89\x35\xc7\x77\x4c\x51\x8d\x73\x1f\x8f\xde\xec\x04\x6d\x6d\xc4\xcb\x81\xe8\x20\xfe\x75\xb8\xb6\xb9\xf6\x19\xaa\x09\xea\x17\xef\x33\xbe\xb8\x75\x64\xcb\xc0\x4c\xb9\x06\xfb\x47\x27\xa3\xd9\x19\x85\x80\x27\xe6\x3d\xda\x48\xa2\xec\x63\x37\x56\x9b\xfc\x0f\x5d\x29\x80\x81\xa7\x9e\x18\x14\x8d\xd0\x84\x59\x38\x56\x2a\xf9\xcf\xd9\x17\xe5\xb2\x29\x2a\x4f\x8a\xe1\xf6\x53\xc9\xe1\x30\x29\x7f\x84\x5b\xde\xd2\xf1\x44\xd4\x4f\x64\xa8\xfe\xb0\x43\xd7\x59\xe3\x6c\x8d\x64\xb2\x99\xa3\xaf\xeb\x30\x03\xc7\xc3\x76\x19\xa6\xb1\x13\x37\xb5\x0c\xb9\x48\x25\xa1\x81\xe4\xee\xd9\xa3\xf9\x23\x23\xd7\x47\x9e\x4f\x0c\x51\xff\xec\x79\x43\x17\xa8\xe3\xb4\x6e\x03\x64\x1f\xb2\x23\x37\x29\x7a\x4c\x9d\x9d\x85\x1a\x78\x6a\xe6\x3f\xba\x5c\xe1\x24\x46\x41\x9a\x94\x45\xbf\x9e\x7b\x62\x37\x0c\x56\x69\x39\x0a\xf8\x51\x48\x1d\xae\x81\x5c\x6d\x14\xb8\x86\xc5\x0b\x51\x30\x6a\x7b\x48\xb2\x28\xb1\x19\x80\xcd\x57\x1f\xbc\x9f\x69\x2f\x28\x20\x37\x8b\xd8\xd1\x1d\x0d\xd9\x6a\x05\x40\x13\x78\x3e\x75\xc0\xc8\x18\xac\xd7\x15\xaf\x1f\x08\x0d\x85\x62\xb8\x7c\x4d\x5f\x9e\x71\x7c\x14\x6f\x6f\x6d\x57\xab\x10\x87\xb8\xfc\xfe\xfc\x65\x5f\x7a\xee\xaa\x4a\xf0\x27\x5b\xdd\x89\xa1\xca\x21\x03\x32\x53\xb8\xee\xdc\x11\x29\x31\x25\xbc\x8a\x3f\x5c\xd8\x8b\x7f\xf9\x28\x5c\x07\x16\x35\x8a\xc5\xf0\xf9\x57\x74\x03\x7b\x2a\x4a\x35\x90\x57\xf9\xf3\x3b\xb1\x8a\x79\x94\x18\xa3\xcf\xf5\xfe\x08\xd1\x93\x08\xec\x69\x74\x2b\xaf\x9a\x3e\x5a\x19\x97\xd8\xa4\xd5\xef\x33\xb3\xbf\x3e\x54\x7b\xe7\xf0\xed\x0f\x2d\x51\x37\x83\x89\x1c\x61\x78\x4b\x5e\x99\xae\xce\xec\xea\xe0\xd3\xd5\xdc\xd6\x05\x6a\x02\xf5\xb8\x10\x53\xf4\xa1\x16\x6c\xd7\x34\x59\x30\x06\x8a\x4e\xf8\xd3\x4e\xe8\x24\x52\x7a\xa6\xcf\xb4\xbe\x0c\xd1\x11\xfc\x44\xe0\x92\xb1\x83\xb9\xf0\x56\x53\xaf\x4e\x3f\xb7\x6f\xb0\x32\xf4\x60\x80\x1e\xc8\x8d\x78\x32\x7d\x9d\xa8\x89\x3d\x0f\xc9\x59\xf1\x13\x3d\xd0\x88\x2f\xe1\x7e\x94\xad\x8a\xc2\xd5\xd3\x03\x95\xdf\xca\x5f\xd4\xc1\x9b\x14\xc9\x81\xa8\x9d\xe3\xa8\xa0\x3f\xce\x4e\x3f\x46\xda\x00\x45\x90\xcc\xd7\x37\x4b\x25\xf4\x99\xd3\x0b\xc5\xf0\x4b\x35\x89\xd5\xe5\x81\xa7\xe0\x10\xcf\xc6\x89\x4a\xe4\xfd\x67\x35\x8d\x24\x62\x53\x0f\x03\x89\x41\x4e\x63\x5e\x80\xc1\x5f\x61\x01\xf1\x0d\xcb\xa0\x86\xca\x32\xf8\xd9\xe6\x44\x08\x06\xbb\x31\x81\xf9\x2d\x6b\x4c\xeb\xb1\xad\xa2\x7a\x15\xf5\x24\xe4\xe7\xeb\x94\x65\x04\x6d\xf0\x13\x54\xad\x6b\xbc\x41\x8e\x44\x91\x09\xa3\x37\x3b\x55\xe8\xf3\x5d\x6b\x97\x62\x3d\xb1\xde\xec\x95\x03\x5a\xa2\xa4\x4f\xdd\x24\xd0\xf4\xab\x5f\x90\x02\x2d\x14\x7c\x5a\x42\x06\x6f\x67\xb2\x8f\x1c\x94\x07\xaf\x12\x94\xcb\xdc\xb4\x3b\x7a\x97\x8f\x6b\xba\x53\x35\x4c\x6b\x36\x16\xb2\x0d\xd9\xb5\xfd\x21\x6b\xdf\x18\x9d\x10\x5a\x8f\x95\x5d\xbe\xbd\x21\x26\x67\x08\xb4\xdf\xd2\x11\x2a\x89\x97\x38\x3c\xb9\xf1\xbe\x5b\x5d\x8c\x99\x75\x80\x62\x2f\x9a\x08\xbd\xc3\x4d\x28\x31\x53\xfc\xe1\x4b\x23\xa5\x69\xa3\xd3\x82\x1a\x38\xa8\x59\x82\xda\x24\xe9\x86\x73\x3b\xd7\x26\x67\x81\xd2\x5a\xa1\x18\xfe\x7a\x89\xae\x49\x1e\x54\x2c\x5f\x00\x8c\xb7\x98\xca\x80\x87\xba\xa0\xa0\x51\xec\xcd\x2e\x7d\x48\xc8\x67\x52\xc6\x3f\xbd\x78\x3c\x3f\x38\x29\x0a\x73\x37\x2a\x31\x51\xbc\xdb\xca\x4e\x5d\xad\x9b\x0f\x70\xc7\xa9\x44\xd8\x21\xb7\xfd\x7d\xa1\x68\xcc\xa9\x1e\xca\x19\xa3\x9b\x5b\xf8\x08\x35\xea\x21\x3b\x76\x70\xf9\x7d\x97\xbc\x09\x26\xa2\x16\xa8\xf6\xfd\x6a\x7e\x82\x39\x89\xaa\x6b\x99\x87\xbf\x78\x44\xa6\x69\x6c\x54\x3d\x1f\xa7\x68\x34\x9d\xeb\x94\x80\x8e\x18\xb7\xde\x0d\xef\x38\x37\xfd\x80\x1c\x1a\xd5\xc7\x22\x06\x7e\xf5\x09\xcd\xd3\xd0\xb0\x1a\x88\xf9\x3d\x29\xb6\xcf\x23\xa0\x9e\x5a\xb8\x91\x32\xb7\x84\x99\x22\x6e\x97\x79\xfe\x88\x0a\x27\xe3\xdc\x76\x18\xa1\x4d\xdb\xa5\xd3\x77\x2b\x1c\x24\x18\x4b\x94\x3c\xfb\x98\x62\xd3\xa5\xd8\x9f\xe4\xe7\x9e\x1d\xac\xaa\x10\x96\x21\x36\xe0\x89\x7a\x01\x83\x7c\x0c\x38\x29\x58\xa9\x77\x76\x2b\x00\xe1\x56\xa8\xc7\xb4\xa7\x87\xc4\x61\x38\x28\xd9\xdc\xf5\x31\x3a\xda\xd6\x32\xb1\x4a\xa7\x01\x13\xeb\xcd\xa3\x37\xc9\x0b\x8c\x2b\x7c\xd4\x92\xfd\x9d\x20\x8b\x7e\xfc\xe6\xeb\xa2\x1f\x19\x74\x4a\x35\x33\x83\x9d\xe4\xad\x3b\x64\x9a\x28\x05\x66\x05\xb7\xac\x8e\xb2\xdf\xbc\x57\xcb\x47\x81\xc9\x87\xa1\x62\x30\x91\xfd\xd1\x3a\x0d\xde\x8f\x8c\x2a\x16\x76\xa3\x20\x1a\xf5\x41\xd5\x94\x30\x36\x50\xe4\xee\x89\xf9\x34\x1d\x46\x70\x3a\xf2\xf7\x1d\x97\xac\xf6\x99\x53\xa3\xff\xe5\x86\x89\xe9\x26\xa1\x6c\x23\x3f\x56\x42\x8d\x67\xae\xe7\x26\xaf\xc6\x40\xaa\x4a\x44\xb6\x0c\x8f\x61\xf2\x8c\x59\xd1\x63\x78\x79\x47\xf2\xcb\x67\x15\x38\xfa\x69\xd3\x09\x79\x39\xb9\xc2\xd6\x8d\xda\xf1\x17\xfc\xd5\x78\xd6\x96\xdd\x2b\xa6\x98\xb1\xff\x4f\x31\xf4\xd7\x29\x1e\xa5\x26\xb5\xb1\x17\xab\x47\xe6\xef\x32\xb5\x21\x8d\x11\x20\x93\x32\xe1\x6a\xc1\x2b\xa3\xf6\x09\xf2\x39\x08\xd5\x94\xe8\x97\x7e\x7b\xbd\xb6\x58\x21\x0c\xc4\xf8\x00\xcb\xda\xf6\xa8\x70\xc3\xa1\x35\x8b\xe3\xbe\x50\x22\xd4\xb7\xe5\xa8\x06\xa7\x44\x25\xc4\xf9\x5f\x22\x92\xad\x01\x71\x30\xcd\x9d\x18\x60\x77\x9f\xdb\xad\xdb\xd0\x50\x2e\xf2\x01\x6d\x7b\x66\xc6\xe3\x9a\x3b\x04\xe9\x4e\x16\xca\xf1\x13\xff\xdc\xfe\x4b\xb4\x26\xc8\xa0\x4e\x39\x4a\xcd\x25\x3b\x5e\x81\x8e\x9a\xa3\x4d\x33\x41\x23\x0a\x44\x0b\x0f\x6f\xd4\xce\x9c\x91\x34\x6a\xfc\xcc\x95\xae\xd6\xe8\xf1\xc4\xa9\x09\xec\x41\x31\xdc\x61\x27\x61\xa8\x47\xd1\xaa\x0f\x7f\xfb\x86\x10\x07\xc3\x0e\x65\x9c\x5e\x1c\x7e\xe5\xc1\xf4\xbb\x51\x4d\x50\x84\xfe\xc0\x5f\x76\x48\xb6\x64\x57\x21\xfa\xe3\x0f\xc8\x03\x64\x13\xa7\x50\x0c\x27\x95\xe0\x38\xf8\x01\x73\x69\xc0\x73\xd2\x9c\x9a\xee\x0c\x23\x1c\xa0\x62\x0d\xc8\xec\xb8\xd5\x83\xd5\xb3\x4f\x4d\xbe\xb3\xdc\x79\x4a\x2e\x72\x2d\x8c\xcc\x55\x01\x02\xaa\x4c\xfc\xe6\x56\xad\xbf\x48\x89\x5c\x96\xbb\x2a\x20\x9e\x6a\xc3\xf4\x5f\xaf\x2b\x47\xc9\xac\xc7\x66\xa4\xd9\x4d\xf3\x95\x04\xef\x82\x70\x42\x71\xb7\x8e\xc2\x0a\x8c\xaa\x1d\x5f\xdb\xdc\xd4\x95\x17\x6b\xf5\x21\x48\x9f\x26\xd8\x18\xff\x3d\x9d\xca\x1c\x7d\x1a\x22\x35\xd1\xbe\x72\x5a\xf1\x77\x62\x71\x1f\x70\xc5\xd6\xe4\xfd\x34\x90\xea\x84\x76\xc7\x98\x74\xef\xbc\x32\x88\x4e\x35\x4c\x86\xf5\xde\xf9\xb2\xc5\xd0\x75\x2e\x66\xd8\xe3\x9d\x07\x1f\x8e\xec\x5c\x1d\xeb\x73\x81\x59\xf1\x23\x6d\x97\x69\x3d\x55\x87\xc0\xdb\xa6\x63\xdc\x0f\x85\x82\x3f\x87\x4e\x8b\x6a\x6c\xee\x6e\x6d\x13\xc3\xbd\xa1\xd2\x73\x96\xef\x6a\x1e\x12\xc0\x8e\xed\x89\xf2\x85\x90\xfa\x7c\x4d\x71\x34\xf5\x2c\x22\xca\xdd\x1d\xfb\x14\xf9\xb3\xb2\x8f\x45\xeb\x1e\x36\x8f\x2a\x5a\x43\x8c\x06\x2e\xf7\xe9\xc9\xba\xaf\x28\xd3\x15\x8c\x80\x1d\xc0\x6f\xe3\xb7\x0e\xea\x9e\x82\x26\x75\x5d\x14\x85\x44\x99\x5f\xbf\xdb\xae\x19\x6a\x09\x31\xd1\xf0\xb3\x03\x86\xa9\x43\xbe\xe8\xe8\x63\xf1\x17\x5d\xc5\x06\xcf\xa9\x21\xc3\xf1\x79\x64\xfe\xc8\xa3\x72\xc8\xb2\x92\x3b\x7f\x68\xc5\xf8\xb4\x77\x84\x64\x71\x83\x94\xf9\x84\x7c\xed\x35\xe9\x3f\x5e\x41\x35\xb8\xe3\x9b\x8e\xe9\x9e\x76\x48\x42\x20\x4f\x2f\x48\xff\x2b\x6e\x40\xc3\x5f\x71\xfb\xf1\x01\x32\xf7\x15\x8a\xe1\x94\x36\x05\xd7\x83\x45\x4d\x14\xee\xe9\x81\x98\xef\xf3\x62\x6b\xc4\x1b\x83\x15\x38\x7b\x0f\xe0\xe6\x33\xb7\x94\xd2\x43\x59\x54\xeb\x53\xbc\xf6\xc0\xcc\x0f\x6b\xb7\x84\xe0\xb2\xd7\x87\xf6\x47\xfe\x93\xcb\x35\x84\x75\x85\x25\xea\xf2\xa2\x70\x59\x34\x46\x72\xad\xac\x66\x85\x60\xb7\x45\x19\x31\xf7\xfa\x93\xe9\xe0\xc6\xfd\xab\xe2\x79\x50\x6e\xec\x3c\x08\x36\xb4\xe4\x19\x20\xee\x9b\xa9\x4e\x6f\x13\x95\x98\xcf\x57\x06\xfc\xf6\x7e\x7b\xac\xb2\x76\x0f\xcc\x95\x62\x7a\x79\xc5\x2e\x45\x4d\x86\xd2\xe8\x99\x59\xa8\x4e\x38\x7d\x39\xf7\xce\xf2\x84\xc3\x65\x12\xa3\xd5\xb9\xfd\xb8\x36\x3f\x0b\xf8\x12\x81\xbb\x33\xf3\xb0\xfc\xe2\x09\x45\x1b\xd3\xc2\x86\x85\xdd\x02\x71\x2b\x81\x67\x61\x9f\x8f\xa0\x72\xef\x0b\x79\x6e\x3f\xaa\x12\xbc\x80\x44\x6f\xb0\x47\x11\x2b\x40\xae\xc9\x70\x23\xee\xdb\x3f\x9e\x95\x85\x79\x8d\xb8\xdc\x5c\x20\x33\xe7\x55\xb5\x9a\x40\x25\x0b\x55\xc1\x06\xeb\xfe\x27\xd4\xfd\x23\x63\xe0\xbe\x92\x59\xfa\x8e\x36\xfa\x88\xed\x11\x01\x59\x9c\xbd\x62\xa0\xb6\xde\x01\xb2\x54\x74\x44\xc7\x4d\x4c\xaa\xb3\x0a\x6e\xa5\x0b\x90\x9d\xfa\x50\xc5\xb3\xa2\x0c\x1c\x4f\x74\x2e\x5f\xad\x5b\x38\x33\x8c\x04\xec\x28\xb7\x6e\x67\x0b\x21\xce\xf3\xe2\x36\x29\x7f\x85\x26\xd1\x59\xa7\xbc\x08\x15\x42\x75\xed\x9b\xb5\x75\x82\xcf\xe0\xc6\xa7\xae\xe2\x6f\x46\x25\x66\x06\xad\xdd\x4a\xbe\xbe\x4e\x4a\x11\xd6\x28\x9f\xf4\x09\x9d\xbe\xc5\xd7\x87\x0b\xce\xa8\x71\xc8\xb7\x02\x68\x28\x8c\xc7\x00\xd5\x7a\x5d\x1f\x94\xda\xcc\x92\x6b\x92\x05\x44\x0d\xa5\x94\xc1\xb3\x5f\xde\x34\x5c\x81\x80\xd8\x18\x52\x21\x3f\xa6\xe7\x1d\xd4\xc7\xd9\x3e\x31\x2c\x51\x1c\x25\x9a\x01\x0f\x6b\xeb\x34\x8b\x0a\xc5\x9e\xb1\x93\xb4\xbd\x1d\xb6\x63\x71\x99\xec\x5b\xaf\x5d\xa0\xd5\xf2\x7c\x3b\xc5\xe3\xcb\xc4\x5d\x9a\xea\x9d\x93\xb8\x65\xc7\xd3\xc0\xee\x53\xf2\x58\x46\xb5\x6c\xd4\xa8\x73\x0c\xf1\x9d\x67\x2f\x54\x16\x00\x0c\xe3\x42\x9c\xa5\xb9\xd2\xee\x7a\xed\x38\xd5\x90\x2f\x10\x9e\x2f\x68\xf9\xd2\xb0\x90\x6b\x60\xdb\x8e\x69\xde\xf9\x69\x6d\x8a\x12\x7d\xe0\x61\x15\x85\x91\xbb\x78\x01\x04\xbe\xc5\x42\xd5\x3e\xfb\xa3\x2d\x1f\xd6\xfe\x12\x24\xcb\x16\x9a\x5a\xbe\xd2\x5f\xca\x75\xfa\x76\xcb\xbd\x1e\x7e\x8e\xa2\x7c\xc6\xf8\x6c\x2a\xba\x97\xaf\xde\x79\x91\xd2\xe4\x09\x97\xd4\x02\x71\x0b\x36\x6a\xf0\x41\xd4\x1a\x99\xda\x58\x03\xb9\x26\x1f\x92\x5d\xd5\xae\xe1\x92\xb8\xfb\x31\x67\xa7\xde\xd9\xae\x2a\x96\xfb\x09\xe2\xea\x63\x1a\x25\xcc\xab\x72\x08\x1e\x3f\x1f\xbf\x51\xfc\xeb\x18\x72\xd3\xe2\xfc\x73\x35\xfb\x20\x83\xf8\xa4\x07\xbb\x5e\x1c\x2b\xf7\x1e\x68\xd1\x95\x73\xb1\x17\x73\x0a\xf2\x83\x87\x0f\xd7\x93\xa7\x78\x53\x8b\x96\xeb\xcd\xa7\x2b\x28\x53\xc5\x70\xff\x93\x9a\x04\x05\x8f\x22\x8e\x82\xe8\x33\x30\xf3\x11\xe1\x86\x4c\xe1\x99\x65\xba\x6d\x8c\x5b\x07\xee\x29\x4c\xd5\x0b\x42\x01\xda\xb7\x38\x59\x69\xe0\x01\x79\x2b\x45\x45\x6c\xa3\x4a\xc0\xc7\xad\xe1\xff\x3c\x2d\x82\x27\xf8\x12\x81\xd1\xd0\xcd\x80\x81\x2f\x5c\xeb\x00\x18\xbb\xe5\xa6\x67\xc6\xd4\xf5\xd9\xae\x01\x63\x6d\x58\xfd\xfe\xcf\xab\xe9\xaa\xcb\x6b\x7a\x3e\x76\xe0\x19\xea\xa9\x69\x54\x5e\xeb\x67\x39\xf1\x10\x4b\x3e\xe7\x9a\xa1\xca\x0c\xd7\xad\x13\x46\x5d\xa7\x55\x0e\xb7\x37\x37\xf2\xc9\xa4\x06\xac\x2a\x24\xa5\xde\xec\xdf\x17\xc1\xf3\xb8\xfc\x36\x8b\xc3\xe8\x3e\x75\x42\xa6\x00\xae\xf9\xcc\x4b\xb3\x8d\xe9\xea\xa0\x1e\x2f\x04\xb2\xc3\x77\xa5\x8f\xd2\xe4\x59\xd3\x67\xc5\x33\x98\xed\xef\x5d\xa8\xbf\x8a\xe8\x4d\xc1\x1b\xff\xae\x62\x3f\x0d\x73\xd8\xc6\xa6\x98\x75\x59\x46\x84\x5f\xb8\x85\xa7\x34\x78\xbb\xc4\x3b\x84\xa7\x67\xca\x53\xd1\x24\xb6\x83\x38\x20\xfe\xb6\x39\x23\x5a\x6b\x87\x18\x2d\xdf\x06\x3d\x42\xe1\x86\xa5\xd7\x2e\x29\x2c\x45\x9e\x5e\xe4\x86\x03\x5f\x97\xb9\xda\xc7\xd8\x2d\xa0\x4a\x52\x29\x9e\xd8\x3d\x52\x19\x69\xbb\x84\x97\xd7\x12\x0e\xd1\xef\x0d\xfd\x39\x74\xcc\x9a\x26\xa2\xcc\x78\x6b\x5c\x5a\xf3\xfb\xd6\x2b\x79\x1f\xda\x12\x36\xba\x84\x32\x7f\x83\xb2\xaa\x67\x51\xce\xac\xcf\xdf\xb8\x38\x36\xa2\xa7\x6e\xd3\x01\xec\xc2\x9e\xed\x8a\x91\xa1\x45\x1b\x05\xcf\xa7\xb5\x1a\xe8\x2f\xe7\xd7\x8c\x53\x38\xb2\x0c\xb9\x66\x03\xf1\x27\x3e\x7c\x92\x42\xec\x44\xcc\x8d\x25\xf5\xde\x2b\xa7\xec\xfc\xb9\x55\x40\x74\x35\xf6\x3d\x21\x01\x83\x0d\xca\x6c\x13\x52\x26\xe7\xb2\x3c\xa2\x62\x86\x3d\x21\x47\x5b\xec\xcd\xdc\xbb\x43\xd7\x7c\x64\xc4\x47\xb1\xeb\x55\x31\x74\x34\xb2\x8b\xc1\x55\x49\x45\xad\xd6\x55\xd6\x1a\xf7\x80\xd1\x1a\xe6\x0a\x40\xe2\x25\xfc\x74\xba\x26\xf2\x07\xe8\xea\x95\x2b\x79\xb6\x5c\x7f\x3f\x34\x15\x30\x57\x81\x89\xc7\x64\x8d\x7d\x5d\x26\xae\x98\xed\xf3\x05\xe4\xda\x87\xdb\xc5\x1b\xad\x63\xb7\xe0\x20\x9f\x97\x3c\xd9\x61\x07\x25\xa7\xb1\xca\xeb\xf3\xcf\xcc\xd4\x9a\x13\x64\xbb\x34\x60\xf0\xbb\xc4\x76\x30\x37\x7a\x88\x52\x0f\xc5\x76\x51\xbd\xb9\x57\x4f\x08\x6e\x1e\xad\x63\xe6\x73\x1a\xc0\xa1\x47\xd5\xfd\x44\x50\x53\xd4\x6a\xc3\x37\x14\xed\x19\x61\x91\x95\x9b\xff\xb8\xe4\x3c\x70\xbc\x40\xf6\xc4\x0e\xfe\xb0\x0a\x0b\xa2\x2b\x6f\x72\x6b\x44\xfd\xce\xaf\x99\xaa\xe2\xc6\x60\xb9\xc5\x3f\xd0\x55\x0b\x5b\xec\x10\x1d\xee\x52\x32\xae\x50\x0c\x1f\x7c\x5f\x45\xd3\x07\xae\x01\xd2\xa6\xd9\xd7\xed\x4b\xf4\x48\xd9\x52\x90\x9f\x3f\x41\x4e\xbc\x1a\x08\x94\xbf\xda\x4e\x6b\x0a\xac\x18\xc5\x42\x82\x9f\x7f\x56\x5d\x62\x1b\x8c\x94\x89\x30\x7b\xff\xe4\x71\x69\xc2\xe1\x52\x25\x5c\x3d\x37\x2a\x7d\x46\x02\xd7\xa0\xae\x49\x60\x9a\x02\x4d\x70\xcf\x9d\xed\x4a\x06\x6b\x58\x04\x28\x50\x94\xb5\xb8\x76\x02\xd0\xa7\x54\x96\x91\xe8\x72\xa1\xf8\xd0\x96\xfe\x2b\x7e\xc0\xaa\xc4\xb3\x44\x63\xcc\x9b\xea\x6b\x35\x91\x0d\x14\xf8\x16\x65\xa4\x07\xc7\xc9\x30\xff\x71\x0d\x30\x1c\x15\x61\xbe\x20\x08\x8d\x12\x0c\x73\x00\x42\x73\x18\xbe\xc6\x30\xef\x9a\x1e\x27\xc0\xde\xec\xbc\x15\x49\x9b\xd0\x40\xad\x2a\xa7\xaf\x0e\x97\x00\x98\xe8\x34\xf0\x34\xd5\x0e\x68\x90\xc2\xb5\xb6\x4d\x90\xdb\x42\x7f\xce\x7d\x61\x82\x2c\x26\x1c\x52\x09\x30\xbf\xbf\x99\xb7\x86\xab\xa1\xea\xe6\x79\x57\xf2\x29\x54\xa1\x18\x7e\x41\x0e\x11\x6a\x2a\xd9\xec\x27\x57\xa7\x53\x43\x47\xbc\xad\xc8\x7f\x71\x6e\xfa\x09\xf9\xa8\xbb\xc6\x15\x3f\x92\x7a\xfd\xcf\x07\x21\xf7\x54\x18\x71\xa2\xff\xfb\xc2\x9d\x2a\x18\x89\xd8\xb6\x70\xa7\xf9\xe1\xb3\x3a\x4c\x27\x4a\x83\x5e\xdc\xbc\x66\x0a\x53\x47\x69\x87\x42\x72\x2e\x40\x1e\x70\xb6\xea\xc9\xe1\xd4\x90\x1f\x25\xbb\xf0\xe4\x48\x99\xeb\x4c\x0c\xda\xe6\x99\x9f\xec\x50\x7e\x16\xd9\xdc\xb2\x2d\xfa\x10\x7f\xdb\x16\x8b\x32\x23\xd7\x6b\xc4\x77\xfb\x03\xdb\x34\x9f\x08\x5c\xf3\x2d\x28\xa5\xb2\xbf\x90\x2e\x69\x0e\x2d\x15\x8a\xe1\xa8\x09\xda\xf7\x70\x4a\x8c\x56\x6c\x42\xc5\x88\x6e\xfd\x74\x79\x12\x1d\x50\x65\x5e\xc5\xa4\x80\xe1\xa4\xa9\x85\x62\x58\x7f\x2f\x26\xb1\x9a\xc2\x88\x29\x7a\xd6\xcb\x76\x09\x5b\xcb\x28\x43\x72\x09\xb1\xe5\xf0\xfa\x17\x20\x56\x8f\xda\x6f\xbd\x79\xb8\x63\x80\x4c\x9f\xd8\x15\x80\xa3\x07\x06\x6a\xbd\x41\xd4\x5f\x99\x9a\x91\xdc\x7f\x4d\xd2\x17\xdf\x06\x26\xf5\x04\xd8\xf6\xde\x26\xf9\x81\x0b\x53\xf8\x08\xe3\xdc\x01\xe2\x2d\x63\xbe\xa6\x67\x8b\xdb\x55\xc1\x16\xd8\xca\x86\x3f\xd4\xec\x09\xaa\x2e\x6d\xb8\xf1\xc6\x29\x7b\x7f\x1c\x41\x1b\x98\x95\x03\xbb\x50\x0c\xa7\x3f\xaa\x7f\x8c\x3a\xa9\x4b\x0e\xfe\x4b\x0f\x26\x01\xa4\x99\xd2\x76\x58\x3e\x5a\x91\x31\x60\xd8\x8f\x99\xc5\x4f\xd6\xd2\x7f\x7f\x72\xe7\xa4\x29\x82\xd6\xda\x9b\xfb\xd8\xc4\x76\x65\x92\x1f\x45\x76\x4e\x93\xb8\x6d\xa3\x90\xcc\x0e\x7c\xda\x32\xc6\xd8\xa5\xe9\x7c\xdb\xc4\x35\xb1\x9b\xf2\x27\x79\x71\xe4\x60\x59\x94\x31\xb1\x6b\xb8\xf2\xa4\x36\xc9\x44\x2c\x0d\xbc\xc9\x0f\x1a\xaf\x79\x01\x47\xe7\x9d\x69\xf0\xd1\x05\x87\xd2\x3f\x64\x11\xdf\xc6\x2c\xdd\xe7\x65\xbe\x39\x5f\x6e\x23\x4c\xd0\xb9\xd2\x2b\xd0\x0b\xdf\x57\xc8\xa4\x24\x7a\xf2\xf4\x49\x5d\x84\xce\x4b\xc8\x3d\xd9\xaf\xec\xd7\xd8\x8c\x16\x76\x45\xb4\xff\xfe\xd2\xf6\xd4\x7f\xba\x1b\xa8\x34\x8b\xea\x63\xf4\xd2\x9f\x18\xc8\x4b\xcf\xfd\xbe\xb3\x1c\x94\xae\x6f\x8b\x2a\xa3\x96\xcf\x78\xe2\xdc\xa4\x13\x46\x6e\x45\x95\xe0\xcd\x4c\xde\x2e\x67\x14\x40\xe6\xe6\x05\xcc\xc3\x79\x55\x06\x74\x55\x40\x84\xc6\xdb\x8f\x05\xda\xf8\x86\x9b\x6e\xbd\x76\x51\x3c\x15\xf9\xed\xbd\x1a\x7a\xcc\xd1\x95\x22\x5c\x73\x44\x2d\xa5\x4a\xa8\x36\x4d\xb5\xe1\xca\xe1\x61\xb4\xe1\x41\x37\xf9\xe8\xeb\xea\x60\xc8\x36\x53\xdf\x77\xdd\xf4\x74\xb2\x2a\xc5\xe2\x8a\x7f\x7d\x46\x51\xf3\xa4\x4e\xcd\x26\x46\x6c\x44\x68\x65\xd3\xff\x66\xa6\xb0\xa5\xce\xf4\x1c\x1e\xa4\x64\x74\xd8\xd6\x5f\xd4\xa6\x86\x5a\x05\x6e\xfd\xb6\x00\x50\x77\xd7\x28\xf3\x3d\x1e\x5e\xff\x3f\xed\x6a\x4e\xee\x9a\x34\x73\x5a\x67\xe1\x4a\x1e\xe5\x7b\xc4\x90\xdf\xb3\x48\x0d\x26\xb9\xe1\xf8\xe1\xc9\x14\x9a\x25\x16\x9c\xb9\x85\x27\x85\x05\x97\x1d\xd5\x2b\xd1\x67\xa8\x3e\xd4\x87\xb2\x80\x6f\x25\x7e\x6d\xf9\xe1\x72\x2d\x85\xba\xa6\x45\x0f\xed\xbe\xfa\x30\x15\xd7\x51\xc7\xac\x22\x7a\xda\x81\x57\x5f\xac\x08\x4d\xd1\x46\x2b\x45\x78\x97\xad\xf5\x52\xa4\x3b\x05\xa0\xcd\x1c\xd0\xa4\x36\x3c\xea\xe0\x86\x85\x19\x16\x78\x99\x9d\x0b\x65\xcc\xac\x63\x56\x02\xe9\x8e\x1b\xf6\x5d\xac\xd4\xe2\xa8\x0f\x21\xdf\x49\xe3\x46\x68\x85\x80\xe1\x13\x07\x92\x44\xbe\xdf\x1b\x3a\x51\x3f\xb0\xcd\x78\x98\xdd\x5f\x11\xe4\xac\xd8\x01\x17\x0e\xcc\x7c\xcc\xd5\xaa\x37\xd4\xa4\x41\xb2\xe0\xfc\xd6\x1e\x05\x7a\xe9\x7a\x41\x0d\xfc\x79\xa3\x7f\xb8\x61\x9b\xfc\x6d\x0d\x52\x03\xff\x8f\x5b\x3a\x15\x6b\x13\xc6\x61\xaa\xd1\xc7\xca\x9e\x91\x67\x86\x22\xee\xe5\x9e\xfb\xf1\x31\xa5\xbe\xa5\x01\x73\x79\x24\xee\xcd\xfc\xe0\x1c\x85\xb7\x64\x63\x56\x05\x98\x6a\xe3\x45\x09\xe8\x88\x57\x81\x1a\x49\xd1\x47\x76\x35\xd6\xa4\xca\xf6\x9f\x20\x1f\x6f\x29\x28\x09\xad\x81\xdf\xad\x53\x74\x15\x14\x21\xeb\xbf\xbd\xa7\x8c\x5b\x91\x6d\x0b\xe4\xe0\x3a\xa1\x2d\x56\x0a\x80\xa1\xd3\x9b\x39\xb1\x5c\xe7\x57\xfb\x16\xe8\x6c\x66\x9e\xd8\xaa\x43\x25\x79\x5d\x21\x51\x04\x07\xef\x94\x1f\x89\x32\x0e\xe5\x2e\xf6\x66\xee\xd4\x9c\x5b\x1d\x62\x03\x64\x2f\x7f\xc1\x12\x4d\x17\xd3\x45\x7d\xb1\x68\x32\x97\x9f\xd1\xdb\x7a\x40\xa3\x26\x95\x51\xf6\x26\x4d\x20\x94\x39\x94\x25\x32\xce\xb9\x77\xdb\x65\x92\x9d\xd1\xc9\xb5\x3e\x76\xe8\x50\x43\xae\x28\xe2\x89\x7a\x73\xe2\x8b\x8a\xee\xb3\xc0\x59\x46\xd7\x2d\xfa\xa7\xff\xdb\xa6\xaf\x34\x98\x91\xf0\x2e\xe3\xac\x7f\xe1\xed\x0a\x1d\x97\xda\x50\xa5\xdf\xb2\x59\x9b\x23\x05\xb5\x9a\xdd\x84\xe2\x67\xfe\x28\xa8\x53\x6e\x0e\x6c\x9f\x38\xd8\x04\x44\xe4\x5e\xd0\x69\xe6\x27\x33\xf6\xc5\x88\x8a\xcb\xc3\x32\x4a\xd7\xb0\x69\x82\xcc\x68\x66\x9d\xab\x83\x07\x41\x08\x70\x52\xa1\x18\xfe\x6d\x8b\x26\xed\x42\x3d\x9c\x16\xaf\xcb\xbe\x99\x3f\x3f\x3e\xd6\x88\xeb\xc0\xe5\x6e\x3d\x03\xa5\x88\x85\xb9\xbf\x63\x6f\x86\x3d\xa4\xfb\x18\x9b\x81\xe7\xb3\x66\x4a\x65\xef\xa3\xdb\xb4\x97\x21\x16\xf2\x82\x60\x70\x63\x9b\x0c\xc9\x2e\xaa\x34\x95\x30\xfe\xf3\x45\xca\xe8\x4a\x4e\xec\xc6\xc0\xa3\x59\x88\xd4\x9f\xfd\xe7\xbd\x2a\x06\x8e\x61\x68\x45\x33\x1f\x99\x2e\x2f\x6d\x9d\xda\x15\x54\x28\x86\xc7\x2c\x9d\xd2\xc1\x4a\x04\x25\xbe\x10\xd9\x1f\x74\xb4\x88\x10\x06\xdc\xe5\x9b\x13\x8e\x3e\xf1\xbe\x8c\xaa\x7c\x9d\xba\xff\x8c\x5e\x4a\x39\x88\xb8\xb1\xe0\xa2\x77\xbf\xbc\xf5\x66\xd3\x45\x0e\x31\x78\x84\x68\x1e\xd7\xb2\xc2\xa4\xe9\x33\x3a\xe3\x41\xe0\xbe\x87\xe4\x58\xcd\xb0\x18\xf1\x7c\xe5\xab\x66\xa7\x69\x04\x0f\x30\x09\x03\x28\xce\x91\x15\x9a\x0e\x34\x35\x63\x33\xc1\xe2\x78\x39\x82\xa9\xc5\x6b\xc8\x02\xb6\xb1\xc1\x4b\x8f\x43\x2f\xc2\x63\x25\xae\x07\x4c\x56\x1e\x85\xfe\x32\x5e\x88\x69\x53\xcf\xaf\x51\x17\x03\xe7\x31\x3c\x3d\x21\x3d\x84\x33\x90\x6f\x51\x1b\xd6\x01\x7a\xad\xbc\x74\x67\xfa\xb6\x5a\x88\x54\x69\x90\x4c\x25\x7a\x33\xab\xef\x69\x53\x06\xd4\x42\xd6\x63\x87\xbe\x50\x20\x46\x32\x2a\xc8\xb5\xcd\x4b\x91\xe6\x6b\xd4\x13\x1e\x2f\x6b\x2f\x8c\x53\x67\xd7\x8c\x96\x9e\xed\xc7\xbb\x53\xb8\x0e\x93\x08\xf5\xf2\xcc\x47\x67\xa6\x74\x1d\x6c\x82\xa2\xaf\x19\x95\xd5\xff\xd8\xae\x15\x6b\x5c\x11\x05\xca\xea\xdc\x50\x81\x0b\x36\x85\x6e\xdb\xaa\x5d\x5a\x66\x89\x4a\x99\x64\xd4\x78\xf7\xe3\x1f\x76\xa5\x22\x0c\xd7\xb8\x46\xe0\x7e\xa1\x67\xda\x4b\xf7\xca\xa5\x7a\x3c\xc4\x51\x08\x52\xe1\xb0\x6d\x52\x25\x76\x4a\x17\x1f\x12\xdc\x39\x4e\x7b\x1d\x36\x29\x53\xe6\x72\xd3\x66\x45\xa7\xf9\xa2\x6c\xfa\x13\xf2\x8d\x7b\xa2\x5e\xbb\x61\x36\x5c\x78\x2b\x70\x2b\x7c\x73\xb0\xe7\xf0\x25\xea\xe6\x40\x58\xf5\xa4\x1f\xea\x63\x1a\x2c\xdf\xf3\x69\x4d\x34\x11\x43\xde\x6f\x8f\x8b\x21\x9b\x72\x30\x01\x4f\xc0\xdf\xdb\x22\xfb\xba\x80\x17\x1f\x3f\x7a\x58\x5e\xa9\x72\xad\x50\x0c\xa7\x6d\x94\x01\x6d\xf2\xac\x19\xd3\x0a\xb3\x38\x33\xbe\xf6\xf6\x58\xed\xe0\x7b\x7e\x14\x8a\x2b\x8c\x36\x24\x77\x2a\xfb\xff\x26\x26\xcd\x8b\x87\x1c\x55\x91\xec\x88\xa6\xc6\x20\xac\xb4\x28\x8b\x67\x68\xc7\x07\x0c\xd3\x13\x87\x08\x53\x1f\xdb\x38\xaa\xf5\x24\x00\xcb\x00\x9a\x9c\x2b\x5e\x4b\x96\x16\xd4\x6d\xa9\x62\xf2\x03\x26\xc8\x97\xba\x12\xd5\x90\x8b\xb9\xd3\x56\xc2\x7a\xcb\x5f\x72\x58\x02\x37\xca\x3c\xd0\xad\xd5\x8c\x2c\x5c\x6e\xfa\x25\x3c\xa6\xee\xdd\x91\x96\x4b\x10\xab\xfc\x44\x4b\x5f\xcf\x99\x1d\x07\x34\x9a\x28\xf1\x01\x25\x23\x09\xd4\xcb\x35\x4a\x17\x2a\x97\x29\x33\x71\x5c\x4e\xe5\xae\x7b\x56\x93\x7c\xab\x61\xc3\x87\xa7\x27\x76\x93\x33\xa4\x1b\x59\x83\xb4\x2c\x6e\xf2\x1f\x9e\xa8\x8d\x34\x30\x63\x94\x11\xcf\x49\x2a\x86\xd5\xe7\x8e\xd6\xbb\xb7\x2a\xff\x94\x72\x39\x37\x61\x9b\x0e\x5b\xf4\x7c\x0f\x16\x36\x3b\xf6\xa4\x37\x4c\xa0\x99\x0d\x1c\x9e\xf4\xa9\x3d\xb8\x57\xc5\x0c\xfb\x01\x13\x2a\x11\xf3\xc7\xeb\x90\x56\xc3\xc2\xb6\x83\x52\x8d\x67\xee\x86\xc7\xb4\x3a\x8c\x91\x12\x4e\x20\x72\x4b\x61\x95\x6f\xd3\x06\x9f\xfd\x77\xc8\x04\x64\x10\x18\x5f\xd6\x9f\x56\x31\x00\x92\xeb\x75\xaf\xb4\x07\xc2\xa4\x50\x0c\xfb\xcd\x1f\x9e\x8a\xd8\x41\x32\xb1\xc8\x5e\xb6\x12\xe2\xf2\xcd\xc8\xb3\x14\x3d\xe0\xdc\x9f\xef\x4d\x9a\x07\x5c\xa1\x31\x84\x65\xf9\x82\xf4\x83\x29\x31\xea\x1a\x5c\x51\x41\x2f\xb6\x6b\x6d\x9a\x5b\x2c\xaa\x51\x57\x5b\x6f\xde\x36\x56\xb6\x6b\x2b\x03\xb3\xe9\x5b\xca\xb3\xf9\xaa\x22\xb5\xd5\x90\xdf\xed\xbb\x1a\x21\xce\x40\x9e\x25\x8a\xab\xcb\xad\xf4\xad\xb6\x91\x53\xc2\xcc\xa7\x5a\x09\xb5\x3f\xdf\xa7\xd6\x03\x8c\x5d\x7b\x33\xcf\x8f\x3b\x5f\x86\x7e\xee\x66\xfd\x54\x87\x66\x82\x63\x71\x86\x6f\xf8\xb7\x76\x45\x9c\x9c\xaf\x4a\xc2\x3f\x9e\x12\x32\x4b\x35\xc2\x08\xb4\xb8\xdb\x14\x84\x9c\x41\x99\x40\xb2\xf1\xd4\xfd\xc5\x6d\xe9\x4e\x71\x25\x85\xa2\x2d\xdf\xe8\xd2\x16\xa6\xb1\xfa\x76\xcc\xff\x58\xb4\x47\x43\xb8\x06\xa5\x92\xaa\x06\x9a\x1d\xf0\x0e\xbc\xd6\x06\x22\x3e\x17\x12\xf2\xc0\x34\xbb\x39\x51\x07\xb8\x62\xae\x87\x16\x0b\x5d\x7d\x6a\x13\x84\xda\x65\x98\x39\xd4\x8d\x79\xe4\xb9\xff\x9a\x0d\x19\x6a\xb1\x1d\x78\x85\x62\xe8\x8e\xd0\x51\x5e\xb8\x0e\x1c\x98\xf8\x02\x5f\x2d\x95\x7e\xd1\x2a\x92\x90\xdc\x36\x5d\xd8\x12\xe3\x6b\xd8\x14\xa2\x23\x3f\xd7\xea\x1f\x1f\x23\xc7\x91\xb6\xed\x47\xb7\x0c\x56\x6a\x67\x41\xfc\xff\xc9\x52\x6d\xc7\x67\xa7\xa0\xb0\xbf\xcb\xb7\x70\xda\xa3\x8a\x1c\x24\x49\x00\x3e\x19\xac\x50\xde\x6e\xc0\xea\xa4\x4e\xb9\xc6\x7f\xfd\x9c\xc1\xd1\xbf\x98\xb7\x34\x35\xc7\xf8\xd8\x33\x4a\xef\x15\xab\xa6\x17\xc3\xee\x67\x15\x51\x0f\x64\x70\x6a\xdc\x27\xf7\xe8\xfe\x4d\x31\xad\x48\x08\x81\x8c\xd2\x45\xbc\xca\xd8\x35\x91\x84\x99\x95\x1e\x57\xac\x13\x84\xc6\xce\xca\xb2\x9c\x56\x28\xf8\x47\xfe\x2c\x98\x90\xc8\x2e\x31\xa1\x10\xfd\x41\x85\xce\xb1\x2a\x40\x9e\x05\xbb\x98\x4b\xeb\x00\x82\x5c\x8c\x58\xb5\x81\x54\xaa\x58\x78\x74\x81\xbe\x19\x6e\x52\x06\xfa\xb9\x73\x47\x2b\xf4\x3f\xe4\x94\x68\x3d\xfa\x5d\x83\x74\x05\x29\x8c\x6c\xdf\x82\x71\xf0\x9f\x26\x09\x78\x0e\x2e\xc7\xf8\xa4\xde\xec\xa1\xfe\x10\xd5\xba\x78\xbf\x94\x59\xd6\x5f\x97\xd1\x05\x32\x53\x3c\x53\xce\x5e\x73\x8d\xa2\x6c\x10\x55\xee\x02\xb0\x9c\x39\x25\x17\xae\xc4\x35\x71\x4d\x90\x25\xf5\xa2\xf1\x9b\x8f\xca\x00\x6d\x61\xe6\x22\xd7\xc4\x3d\x9c\xa7\x71\x4c\x3e\xdd\xae\xce\xce\xae\x42\x31\xfc\xeb\x50\x21\x73\xc7\xb0\x61\x61\xdf\x57\x74\xed\x73\x63\xc6\x6b\xbe\xff\x58\x79\x97\x99\xcf\x6d\x91\xd6\xb7\x25\x12\xd7\xa3\xf3\xa7\xeb\x5a\x40\x1c\xad\x09\x76\xd3\x77\x6d\x56\x7a\x2d\x18\x1d\xf0\xb9\x81\x06\x33\x35\xa8\xc3\x3d\x11\x90\x22\x21\xf3\x84\x62\xee\xe5\x33\x0c\x4d\xe0\xec\x15\xaa\xaf\x25\xe7\xcf\xf2\xa8\x38\xf8\x89\xd4\xc2\x20\x41\x85\xfe\x64\x7c\x0b\x97\x99\xb8\x9a\x5c\x4a\x7e\x96\x26\xaf\x66\x32\x54\xa9\x24\x43\xc6\xeb\x5f\x85\x68\x47\x9c\x1a\x46\xbc\x4d\xca\x7d\x77\xab\xaa\xce\xc1\x84\x8e\xcd\xd5\xaf\x8c\x97\x25\x09\x65\x9e\xef\x20\xd7\x2d\xd8\xb8\xdc\x62\xf7\x97\xf9\xfa\x49\xad\xd7\x64\xa4\x42\x5c\xd0\x0e\x7c\x6a\xa6\x50\xea\xa7\xc8\x26\x7d\x19\xcd\x65\x3f\xbb\x6f\xa4\x92\x10\x6d\xe4\x59\xb4\xae\x24\xb5\xd3\x0f\xeb\x40\x14\xc2\x31\x83\xc9\x36\x69\xd8\x41\x19\x0c\xca\xc4\x76\x1c\x54\x85\xe6\x7c\xc5\x72\x6d\x52\x20\xd8\xfb\xb1\x23\x77\xa6\xc4\x20\xe0\x2e\x23\x2b\x53\xed\xe4\x33\x79\x98\x98\xd6\xb0\x4b\x5c\x2f\xb0\x51\xaa\x52\xfa\xee\x96\x01\x49\x98\x8c\xe2\x76\xbe\x5b\x73\x48\x37\x6c\x8c\x58\x3c\x86\xfa\xd7\x05\xf2\x55\xf2\x7b\x1b\xd7\xa3\x17\x1e\x11\x00\x09\xaa\x8e\xa7\xfb\x6b\x0a\xfd\xae\x0f\xf8\x0c\xd8\xb9\x66\x36\xce\x93\xdf\xd5\xa4\x0e\x71\x85\x3a\x5d\xee\xa7\x7b\x07\x88\xf7\xe7\xf9\x1c\xbc\x76\xa0\x1d\xe6\xeb\x37\xdf\x7c\xab\x6e\x8e\x10\x4e\x3b\x01\xdf\xfb\xfa\x26\x16\x28\x13\xbe\xb4\xde\x3a\x41\xc1\xa4\x51\xd7\x27\x8c\xd7\x34\x79\xad\xab\x5c\x19\x78\xfe\x95\x75\x7e\x1f\x3e\x74\x0a\x52\x4c\x89\x36\xa2\xd2\xe6\x2e\x81\xf9\x30\x88\x8b\x85\x09\x4a\x6f\x8e\xec\x51\xb0\xc3\x5c\x60\xb5\x50\x0c\x7f\xaf\xf5\x22\x0d\x6c\x9b\x89\xf5\x69\xfe\xbe\x1e\xe9\xfa\x10\x28\x5e\xa4\x99\x59\x8a\x27\x8a\x83\xca\x04\x15\x18\x5c\x69\x1e\xd6\x1e\xd7\xa6\x1a\x88\x2b\x12\x28\x74\xa4\x7c\xf5\x21\x59\x8f\x4d\x99\x34\x93\x93\xc2\xb2\xff\xb3\x54\x81\xb1\x60\xe2\x52\x8f\x2a\x7f\xf2\xe6\x35\x5a\xdb\x61\x91\x2b\x99\x6e\xf2\xd9\x9b\x99\x37\x33\x1d\x53\xa7\x4c\xea\xec\xec\x14\x57\xff\x17\xe7\x68\x50\x4b\xe6\x52\xdb\x54\x3f\x58\x26\xbb\x37\xf1\x7f\xf3\x89\xcb\x7b\xf2\xdc\xa2\x93\x3a\x22\x0f\xd8\xb4\x51\x9a\xf9\x9f\x0e\x55\xf4\x93\x06\x36\xa0\xbd\x6e\xdc\x2b\x47\x55\x1e\x22\xa6\x14\x57\x08\x3f\x36\x51\x19\x5a\xaf\x0a\x10\x48\x3f\x85\x3f\x3c\x57\x8d\x68\x81\x80\xd4\xe6\x73\x67\xb5\x5e\x91\x8f\xff\xe3\x1e\x6b\xbb\x52\x44\x21\xc2\x91\x13\x99\x7f\x5c\xad\xcd\xb3\x30\x4a\x0a\xfb\xc7\x67\x6b\x40\x02\xca\xb0\x43\x85\x93\x5f\x6f\xf6\xd5\x17\xe5\x60\x1a\xd5\x6a\x36\x41\x2e\x9c\x92\x23\xa3\x65\x09\x3c\x75\xaa\x22\x1b\xdf\x9b\xfb\xf3\x1e\x38\x79\x53\xa6\x75\xf0\xe1\xf6\xff\xae\xfe\x50\x9c\x15\x3a\x0b\xc5\xb0\xeb\x9e\x58\xd2\x28\x2a\x27\x3d\x0b\x0c\xfa\x5f\x9e\xa9\xc9\xbb\x5b\x40\x64\xe2\x77\x2b\x5f\x5d\x27\x67\xae\x5d\x30\x32\xbf\x76\x4d\xbb\xf8\x54\x5c\xc3\xb2\x07\x9e\x4e\xee\xbb\x63\x35\x89\x2f\x86\xb1\x81\x41\x9e\x98\x27\x91\xff\x3e\xd3\xd1\x52\xc2\x70\x1b\x3e\x58\xb5\xf7\x81\xdc\xcd\x4c\x7a\x54\xbe\x1f\xec\x94\x18\x12\xdb\xfc\x5f\xec\xd5\x20\x6a\xdd\x3e\x65\x9c\x8d\x1e\x7e\xf2\x35\x0d\xf8\x85\x5c\xae\x4e\xc8\x75\xbe\x16\xc0\x27\x9f\x8b\x6d\xc4\x02\xc1\x0a\x0b\x5f\x96\x1e\xa4\xc8\xb3\x0b\xc5\x70\x45\x49\x91\xe9\xee\x04\xe8\x58\xf4\x0d\xff\xc9\x4c\xdf\xf9\xc9\xb3\x66\x4d\x11\x2d\xce\x3f\xad\xd4\xca\x58\x52\x2e\x73\xe4\xb0\x50\xd3\xcb\xbe\x77\x24\x9e\x25\x71\xd5\x37\x03\x96\xaa\xff\xb6\x5b\x0b\xc6\x88\x2b\x40\x72\xed\x7d\x3e\xa1\xba\x70\x4b\x3a\xf4\x05\x1d\xbc\x74\x4e\xc2\xfc\xa0\xf7\x85\x93\x3c\x8d\xda\x4e\xbe\xda\x9e\xd0\xa6\x7c\xf8\xce\x4e\x7e\x0e\x9b\xaf\xb7\xa0\xe1\x70\xac\xf9\x99\x7d\x0a\xa4\x4e\x0a\xb7\xda\xa8\xd4\x74\xab\x32\xf2\x86\xd7\xde\xa4\x1d\x5f\x1f\x27\x28\xee\x7f\xe9\x49\xa4\x7c\x3c\x8c\xd4\x61\xcc\x55\xcf\xe8\x70\x5c\x27\xf6\x12\xc8\x7e\xa9\x4b\xb8\xb6\x10\xd3\xc6\x6a\x76\xb1\xfa\xa5\xe7\x35\x8c\x18\xb4\xcf\x23\xe1\x2f\xd3\x2e\xa1\xe7\xe1\xc4\x5f\x3b\x37\x7f\x4c\xba\xe8\xa8\xd2\x12\xed\xc1\x75\xa5\x94\x0e\xd7\x2f\xd3\xe5\xe5\xa9\x69\x07\x8e\xa8\xcd\x7b\x35\x81\x37\x83\x51\x37\x01\x14\x65\x5f\x9a\x0f\x1f\x5f\x60\x33\x7c\xc4\xc0\x1b\x35\xd3\xbe\x5d\x99\x69\x62\xa9\x7d\x7f\xde\xc2\xf4\xfc\xde\x45\x3e\x05\x29\xa8\xf4\xb7\xda\x35\x3c\x49\x88\x25\x24\xfd\x8f\xc2\xe7\xe6\xea\xfe\x12\xc8\xf5\x6a\x36\x72\x45\xb2\xc9\x17\x0f\xc1\x01\xe0\xd3\x40\xfe\xae\x17\x6a\x92\xba\x75\x82\x5d\x17\x29\x64\xa5\xdc\x1f\x45\x39\xcb\xfb\xc5\x78\xe2\xd7\xd0\xa4\xa7\x3c\x9f\x61\xb7\xe2\x5b\xd8\x95\x5b\x82\xc2\x0b\x0a\xc4\xce\xe4\x29\x76\x84\xf6\x05\x81\xe5\x46\xfc\x66\xd4\xa7\x55\x13\xc3\xcb\xad\xbe\x66\x0a\x4f\x7d\x9f\x3a\xa2\x80\xfc\xc8\x1a\xad\x22\xa5\xb6\x97\x18\x6b\xe5\xaf\xd2\x0e\xa1\xcf\x82\x84\xda\xf3\x6e\xa7\x6e\x4c\xe3\xf9\x54\x71\x4f\x0c\x6f\x98\x20\xdf\x4b\xf4\xff\x89\x63\xd1\xa8\x23\xfa\xc0\x38\xb9\x73\xd9\xab\xd6\x6a\x97\xa5\xc9\x49\xfa\x20\x21\xb0\xe0\xac\xa6\x52\x04\x06\x5c\x31\xb0\x3b\x77\x60\xc5\xa0\xe8\x7f\x5e\xb4\x48\x26\x99\x39\xaf\x0d\x4d\x32\x7a\x6d\x9c\xd2\xd3\x0d\xb3\x2e\xd7\x82\x06\x72\x68\x62\xd9\x9c\x1e\xcf\xe8\xb5\x01\x8d\xe2\x8b\x98\x53\x86\xf7\x1f\xd5\x8f\x34\x63\x94\xc5\xdf\x67\xd7\xc8\x04\xec\xe3\xb7\x42\xac\x72\x03\x4f\xc8\xea\xc9\xe2\x06\xe4\x30\xf8\x39\x6d\x8d\xd2\x2f\x1a\xb7\x94\x8e\x15\xe2\x73\x27\xcf\xca\xa6\x4c\x18\x1d\x73\xd4\xb5\x90\xec\xf1\x29\xab\x61\x93\x47\xc7\xfb\xa5\x94\x79\x83\x28\x8e\xce\xb9\xd7\x35\x93\xd4\xc9\xdc\x1b\x5e\xb8\x35\xe4\x9e\xd2\x8d\x4e\x68\xe0\xfa\x89\xd9\x7c\x6e\xc7\xa8\x51\x4a\x89\x52\x42\xdc\xc4\x4c\x75\x32\xfe\x7b\x5e\x0b\x15\xb6\x4d\x1b\x09\x7d\xeb\xc5\x43\xe9\xdf\x1e\x75\xbb\x4d\xc4\x80\x59\x1b\xae\xdf\xc5\xc7\x5e\x85\x1b\xa9\xe3\x51\x87\xda\x5e\x15\x35\x5b\xdc\xe1\xf3\xe7\x2b\x8e\xce\x26\x2e\x53\xe6\x24\xa6\xe8\xdf\x7a\x50\xf5\x2f\xb2\xa9\x5b\x81\xd6\x76\x3c\xa4\xa0\x5b\xa9\x5a\xe2\xe6\x9e\xbc\xfb\x12\xbd\x9c\x0c\xca\xe9\x16\x26\xd7\xde\x6f\x8c\xa2\xda\xf2\x7f\x59\xaa\xbe\x95\x22\x64\x12\xcf\x82\x8c\xf9\xeb\x73\x74\x29\xcd\x28\x8c\x34\x93\x0e\xe8\x57\x27\xe5\xd2\xd9\xc6\xa8\xde\x2a\x63\xf8\xc3\x93\x49\x67\x88\x7a\x92\x79\xca\x53\x2b\x87\xeb\xd1\xa6\x21\x42\xe9\x87\x96\xc9\x86\x95\x96\x56\x62\xc3\x07\xd1\xa5\xec\xed\xf7\xcb\xae\xef\xf2\x38\x93\xf5\xcb\x5e\xa6\x9d\x61\x17\x37\x8d\xc0\xf7\xd3\x3b\xb8\xdc\x1d\xc7\x2f\x53\x5a\x46\x14\x23\xf5\x5a\x5e\xcd\x17\x36\xa6\x5f\xbe\xcd\x25\xe9\xe3\xb3\xf3\x5b\x57\xf2\x5c\x4c\x44\xec\x16\x49\x82\x87\x3b\xe0\x14\x37\xb0\x5d\x46\x9c\xa4\x93\xbd\x65\xb9\x96\xd7\x38\xcc\x1a\x9a\xfb\xf1\x8a\x0b\x6c\x8d\xe3\x79\x20\x4b\xde\xbd\x2b\xa9\x2d\x56\x22\x27\xfa\x5f\x6e\xe8\x1e\xac\x3c\x68\xdf\x02\xf4\x44\x8f\xa9\x2c\xa5\xcb\xca\x19\xfe\xd1\x6b\xe9\xf1\xbb\x49\x6d\x30\xe3\x58\xb7\x37\xed\x2f\xeb\x60\x3e\xdd\xc8\x14\x8e\x2a\x82\x45\x16\x72\xc5\x94\xe1\xca\x7a\xd2\x9f\x71\x97\xe9\xcc\xb0\xf7\x2e\x54\xa6\x79\xc4\x35\xf8\xf2\x4b\x60\xd2\xf3\xb7\x6f\x95\xc7\xa8\x61\x51\x47\xac\x76\x33\x0d\x65\x33\xef\x52\xe6\x20\x9b\x0f\x48\xe6\x86\xaa\xff\x03\x75\x31\x88\xa8\x4d\xcc\x0e\x55\x34\x95\xea\xb8\xe0\x73\x37\xad\xde\xec\x85\xbe\xb6\xf0\x4e\x76\x42\xe6\xb3\x1a\x6a\x71\x6a\xc7\xe4\x99\x50\x8b\x66\x1f\x55\x5c\x26\x2c\x5a\xc3\x02\x2d\x70\x78\x4c\x7a\xee\x4f\xb8\xba\x4d\xf4\x29\xbc\xbe\x2a\x88\x9c\xdb\x3e\x3c\xd5\xd9\x37\x0b\x15\x1a\xd3\x96\x35\x6d\xc5\x0a\xb5\xd3\x83\xee\xec\xdf\x86\xea\x1a\x2f\x09\x1b\x00\x4e\xd6\xef\x34\x74\x2a\x44\xb4\xa8\x32\x5d\xba\xec\x52\xbd\x75\x61\xb6\x10\x1c\x95\x91\xe0\xbc\xcd\x8a\x36\x13\x6e\xf0\xa4\xf3\xf9\xb7\x65\x75\x80\x25\xaa\x27\xbc\x67\x82\xc6\x9d\x09\x3c\x9b\x88\x13\x79\xe9\x4a\x8d\x1f\x63\xdb\xb8\x42\x84\xb5\x1d\xb4\x60\x7f\x9f\x07\xfe\xcc\xd7\x1a\xc8\xc4\x4e\x2b\x5d\x2c\xb7\x67\xa7\x0e\x25\xe1\x1c\x60\x18\xed\x7e\x78\x6c\xfa\x1d\x4e\xeb\x98\x26\x30\xd0\xb9\x17\xb5\xab\x87\x1a\xcd\xc4\x55\x74\xf3\x81\xcb\xd4\x29\x72\xe2\xb4\xaf\xbf\xa5\x27\x16\xe8\x4d\xbf\x85\x5c\x43\x8a\xf5\xec\x7e\x43\x36\xa8\xc4\xe1\xd3\xdf\x28\x10\x00\xc8\x23\x7f\xd7\x32\x68\xe6\x17\x06\x76\xca\x6d\x7d\xf3\x62\xcd\xb4\x21\xca\x5b\x62\xf0\xf1\xd5\x5d\xb1\x67\x41\x3d\x46\x0d\x6f\x79\x4c\x83\xdc\xe1\x12\x72\x13\x9d\x6e\x5e\x49\x38\x7b\x35\x6f\x75\xea\xfb\xd8\x15\xa6\x19\xe7\x68\x06\xcb\x33\x3a\x45\x07\x1c\x75\x23\xdf\xdb\xa4\x81\x45\x62\xf9\x1d\x81\x7c\xcc\x7c\x66\x87\xa2\xcd\xe3\xaa\x72\xf7\xff\xfc\x9e\x9e\xf0\x1d\x39\x53\xcf\xdd\xd8\x4f\xdb\x58\x30\xe2\x50\xe6\x55\x79\xd5\x04\x3d\xcf\x78\xa6\xff\x08\x86\xbd\x77\x8c\x73\x2d\xf6\x66\x0e\xb1\x76\xf1\x74\x51\x85\xfb\xeb\x42\xf4\xae\x9c\x4e\xcc\x0f\x66\x71\x60\xc6\xc6\xc7\xa0\xcb\xb4\x11\x88\xd9\xb8\x8b\x74\xb3\x31\xe6\xc4\x6b\xea\x2d\x02\x56\x5a\xc3\x88\x6b\x69\xde\xbb\x4b\x63\x40\x05\x25\xc4\x82\x56\x2a\x5c\x6f\xbe\xb1\x4e\xfa\x7e\xf0\x42\x80\xbb\x3f\xe8\x78\xf1\xae\x23\x6d\x4a\x31\x23\xc0\xf7\xcf\x9f\xab\x6a\xca\xf9\x62\xac\xdd\x9b\x5f\xb8\x46\xc7\xc4\x89\xd7\x76\xed\xeb\xe9\x30\xd0\x83\x1d\x92\x0e\x03\x5f\xac\x0d\x56\x41\x51\x18\xf1\x6a\x7f\x66\x7f\xc9\xb7\xaa\xf9\x2d\xbc\xd0\xcc\x67\xb4\x49\x65\xc0\x90\xed\xc1\x97\x4d\xba\xa7\x5f\x6d\x4d\xff\xed\xb2\x8d\x9c\x12\x6d\x22\xd7\x17\x53\x8e\xaf\x4c\x15\xcf\x7f\x6a\x67\x07\x77\x45\x78\x6b\x4e\x9b\x32\x49\x07\x56\x5e\xf6\xbd\x03\x92\xfb\x56\x42\xac\x82\xb8\xb5\x68\xf4\x5f\x0e\x8c\xd1\x56\x17\x16\xaa\x26\x02\x85\x79\x3a\x53\x8f\x6f\x81\xeb\x0b\xc1\x2e\xb0\xd1\x09\x65\xf2\xf6\x6a\xf0\x16\xcf\x6e\x4d\xc7\xbc\xe9\x5d\x1d\x71\xcc\xfe\xd1\x5c\xb9\x99\x27\xe5\x42\x31\xec\x3f\x2a\xd9\x4a\x05\x95\xe8\x1a\x2c\xce\xa7\xc3\x62\x0d\xb1\xa8\x6c\xd1\x6c\xc8\xb6\xa9\x82\x4e\x06\x12\x35\xea\x0f\xe7\x43\x57\x3d\x79\x72\x01\xb9\x05\x8b\x06\x7c\xc4\xf9\x89\xb6\xf3\x45\xfa\x23\x42\xa6\xa2\x43\x6c\x7d\x96\x50\x14\x15\x61\xbf\x08\x15\x81\xf0\xc0\xad\x46\x3f\x72\x8b\xa2\x10\x87\x0c\xae\xed\xc9\x71\xef\x99\x2f\x0d\x05\x47\xe0\x4f\xe2\x7a\x05\xbb\xb2\x67\x0d\xc7\xc7\x6e\x8f\x4e\x8d\x51\x61\x44\x3b\xf7\xc5\xa1\xe9\x75\x6f\x1c\x78\xf2\xb7\x2b\x74\x29\xb5\xf2\xfb\xd5\x3d\x71\x07\x8f\x7d\x00\x01\xaf\x38\xa8\xd0\x07\x78\x01\x9d\x47\x9a\x3b\x76\xd0\x91\x70\x54\x33\xff\x78\x4d\xa1\x46\x53\xd4\x0d\x55\xf8\xea\xc5\x1a\xbd\x24\x96\xb1\xf6\x39\xfd\x85\xff\x4c\xe6\xd5\x11\x7d\x9c\x04\xf1\x9e\x07\x4d\x55\x68\xef\x36\x31\x78\xf5\xba\xdf\x82\xce\x71\xa1\x58\xd7\xf3\xa3\x16\x94\x75\x7b\x55\xa2\xc8\x44\xe4\x2f\x7b\x5f\x16\x24\x16\x8e\xdf\xdc\x1d\xbb\x61\x43\x71\xf3\xd2\x65\x2d\x95\xe6\x7f\x4e\xd2\x45\xd6\xbd\x5a\xd4\x17\x01\xaa\x6f\xc2\x3c\x31\xc5\x42\x2e\xaa\xe0\x58\x71\x3c\xb3\xe3\x02\xa5\x12\x2f\x31\xa4\x0c\x95\xbf\xb2\x45\x5e\x90\x32\xe8\x79\xf6\xe6\xee\xf5\xe1\xed\x4d\x29\xdc\x7a\xfd\x92\x1b\xae\xbf\x95\xcf\xac\xef\xe1\x5f\x8f\x6b\xd3\x4e\x8b\xb1\x4f\xaf\xad\x55\x27\xa1\x06\xb2\x6d\x75\xf3\xbb\xf8\x26\x59\x4c\xd8\xb4\x81\x19\xf8\x77\x47\x1f\x74\xf5\x33\x0a\x5b\x06\xd9\xd8\x35\x11\xdf\xc7\x7d\xe9\xf1\xbe\xdc\x3f\xa1\x15\xfe\xc3\x2f\x35\x17\x69\xc4\xaa\xd8\x97\x04\x87\x0f\x4f\xe8\x63\x1e\x40\x94\xf2\xe3\x3b\x56\x6a\xcb\x84\x03\x51\xb8\xfd\x63\x22\x3c\xb5\x8f\x63\xe6\xf0\x26\x90\x57\xef\x5b\x5e\x83\x3d\xc4\x02\x14\xd4\x6a\x28\xa8\xb4\x56\xfd\x87\x57\xc8\xb7\x57\xa1\xd4\x2c\x35\x39\x88\x72\x40\xff\xcb\xb4\xa3\x63\x58\x98\x95\x90\xab\x55\xeb\xef\x76\x27\x65\x27\xbc\xa7\x3b\x4c\x6d\x10\x80\x0d\xe4\x08\x5f\xfe\xc1\x2f\xa4\xe6\xb7\x31\xfa\xf7\xa7\x2b\x74\x5b\x0b\xa7\x86\x99\xf0\x4a\x7c\x75\x1c\xd0\x12\x6e\x8d\x4a\x6e\xdc\xaa\xd0\x38\x70\x8f\x32\x46\x4d\x3b\x2a\x8d\x1d\xaa\xd4\xac\x86\x1f\x08\x32\x6b\xbe\xdf\xeb\x70\x23\xe7\xc5\x21\x33\xf7\x93\x09\x8a\x83\x38\xae\xc4\x0d\x07\x4f\xa4\x5a\x99\x85\x8c\xaa\x4b\x1b\x36\x36\x2b\x38\x06\x89\x3c\x39\x7e\x8c\x82\xac\x00\x6b\xa2\x96\x7d\xcf\x1f\x56\x26\xf1\xc1\xb3\x95\x11\xdc\xed\x00\x21\x2e\x5c\x87\x4a\xc4\xc5\x2d\xff\x2e\xd3\xf3\xa8\x22\x00\x41\xeb\x04\xfb\x05\xcc\xf8\xae\xe3\x77\x4b\x74\x54\xaf\xe7\xa1\x4a\x2c\xde\x72\x70\xd7\x05\x6a\x9f\x88\x1c\x12\x85\x06\x1e\x80\xb2\x73\xce\x6a\x4c\x24\xdf\xc2\xae\xa7\x68\x90\xe7\x96\x4f\x90\x49\xa0\x8a\x4a\xbc\x0e\xcf\xaf\x39\x30\x24\xee\xca\x5c\x2f\x11\x9d\xeb\xcd\xce\x1a\x23\x03\xd4\xe4\x29\x93\x26\x4f\x9f\xcc\x11\x66\x2f\x29\x48\x64\x64\x73\x34\x67\xf6\x6f\xfd\x74\x77\x2a\xdf\xb0\xb0\x0b\x93\x8c\xf0\xbe\x36\x55\x65\x0a\xe8\xda\xe1\x07\xf6\x68\xe2\xc1\xc4\x8c\xfd\xab\x9f\x3e\x26\xf2\x00\x75\x1c\x2e\xe6\xfd\xc8\x99\x04\xd6\x8f\xb9\xc0\x90\x04\x90\xed\x90\x6f\x18\x6c\x78\xb0\xe1\x07\x40\x41\xfc\xf2\xa2\x0b\xfb\xba\x93\xc2\x0a\xf4\xf8\x42\x25\xfb\x06\x1e\x1f\x07\x66\x77\x9c\x1d\xa4\x34\xa9\x9c\x8b\x94\x33\x24\xf1\xc6\xe1\xb4\x95\x01\x5a\x75\x1d\x70\xe8\xb9\x98\x33\xb9\x3b\xb4\x66\x81\xf3\x09\x75\x03\x84\x67\x46\x0f\x55\x6e\x3b\xe8\xf0\xf3\xd1\xc9\xf7\xd7\xc8\xd2\xb1\x81\x71\x55\xc9\x44\xdd\xa7\x35\x65\x21\x5a\xc1\xbe\xc5\xc7\x6d\x3c\xf0\x3f\xd4\x9d\x12\x13\x9e\xce\x87\x8a\x93\x6b\xd2\xb7\xb0\x8a\x91\x49\xec\x3e\x68\x63\x6d\xdb\x04\x3c\x96\x94\x41\x3d\x2b\xf7\x23\x17\x6a\x95\x19\x33\x3a\x66\x46\x5d\x67\xf6\xab\xbb\x14\x2f\x04\xec\xf9\xa4\xc2\x77\x1a\x07\xf6\xc8\xc7\xef\xd0\x32\xea\x51\x3b\xe0\x45\xf2\xa4\x96\x6c\xe4\x29\x86\xe7\xdf\x18\xa5\xfb\x56\x78\x35\x18\x9e\xf3\x83\xf7\xa3\xc3\xe9\x0e\x65\xca\xf4\xf8\x3b\xee\x3b\xad\x43\xb8\xed\x58\xdf\xe3\xeb\x9b\xe5\x9f\x2b\xdb\xcd\x42\xa9\x19\x9b\x7f\xf4\xe6\x9e\x5c\x34\x50\xe9\x5d\xf8\x6f\x7a\xf2\xa0\x3e\x22\x8f\x72\x28\xef\x74\x6a\xda\x61\xbe\xbc\x44\x2a\x15\x1c\x8f\xe5\x72\x03\xbb\x05\x0d\xd7\xb6\xa9\xa4\x5c\x3c\x04\xff\xe3\x75\xd4\xa6\x1d\xf1\x68\x64\x5d\x27\x3c\x45\x8e\x7c\xe0\x82\x18\x8b\x55\x27\x0d\x2e\x66\x1b\x7d\x96\xfd\x2f\xa8\xb3\x9f\x7a\x8c\x4c\x7d\xf7\x3d\x05\x17\x62\x25\x34\xd2\xf0\xeb\x1b\x64\x15\xb4\x2a\x80\x64\xfd\x79\x4d\xe1\x13\xa8\xd3\x76\xe2\x0f\x56\x9e\xab\xcd\xd7\xa3\xac\x66\xdb\x57\xce\x56\x52\xe2\x0d\x2d\xac\x87\xb2\x8f\xdd\xc4\x59\x23\xbb\xb9\x6b\x98\x42\xd7\xa2\x3e\x68\x12\x46\xa7\xe0\xad\x56\xf3\x41\x68\xcd\x36\x9b\x90\xac\xe7\xa9\xa3\xf5\x9b\xb4\xe9\x5e\x0d\xca\x30\x68\x7f\xbf\xb6\x5c\x43\xee\xf5\xf8\xd8\x00\x78\x17\xcc\xad\xdc\xf4\x17\x41\x76\xec\x92\xa3\xf0\x6c\x8e\x5d\x24\xfe\xaa\x8d\x5c\xdc\x2c\xdc\xea\x10\x15\xd8\x95\xf9\x63\x76\x84\xd2\x9f\x99\xc4\xab\x61\xd7\x8b\xdd\x3d\xc6\xbc\x24\xd9\xad\x1e\x71\xa8\x6b\xb6\x74\x2b\xd9\xef\x8c\x1a\x2a\xfe\x31\x32\xeb\x98\xf9\x38\xb6\xcb\x29\xbd\xa1\x0c\x67\x38\xda\x59\xa9\x67\x72\xeb\xd6\xa4\x64\x52\xa2\x60\x14\xa5\xc9\x7b\xa1\x4e\x5d\x40\x7d\x6c\xab\x50\x9f\xdc\x69\x57\x91\x36\x93\x0a\x4f\x85\x62\xf8\xe5\x15\xba\xaf\xb8\xe7\x53\xa1\x1c\x50\x0c\xbf\xd2\xad\xb5\x22\x81\x6b\x72\x1c\x30\xdf\xd6\x45\x5f\xf2\xb7\xef\x6a\x33\xe2\x1a\x62\xdc\x04\x26\x16\x68\xc8\x8c\xd4\x92\x50\xc0\xa2\xf2\x50\xbc\xd6\x53\x87\xe4\x17\x59\x89\x1b\xd8\xe6\xf6\xff\xff\xba\x53\x06\x83\x12\xa3\xc8\x34\x90\x17\x93\xea\x7e\xb3\x5f\x27\x6e\x9a\x04\x29\xc0\xe9\xcf\x9d\xa3\xc1\x3c\xb0\x61\x73\x44\x1c\x08\x55\x77\xe9\x34\x65\xec\x90\xd8\x0e\x3c\xbb\x61\x8e\x66\x62\x19\x35\x37\x3e\xe5\xff\x6f\x5c\x7f\xdd\x70\x8e\x36\xb8\xa2\x75\x98\xbb\x65\xdf\x3e\x0a\x97\x74\xa9\x45\x40\x9c\xe8\x81\xc5\x1a\xee\x9c\x61\x24\xdc\x5a\xfe\xe5\xd0\x50\x55\x9b\x89\x26\xd2\x23\x5f\x2c\xb7\x29\xb5\x7c\xf4\x1e\x8b\x61\xc7\x22\xb5\x7e\x66\xae\xc9\xe1\x8e\xb9\xef\x0f\x10\x3e\xe8\x28\xf6\xf5\xc9\xec\x3b\xae\x39\xff\xcb\x51\xcf\x43\xbe\xd2\xf1\xd8\x94\xcf\xf8\x66\x0d\x90\x2a\x6b\x44\xb5\x7c\xfb\xfa\x6e\xa1\x07\x4d\xec\x3a\x66\x0d\x18\x7f\xe6\x47\xde\x39\x54\x49\xe3\xb3\x0a\x93\xa7\x5d\xc5\xcd\xc5\x73\xe7\x1f\xd3\x0e\x01\xf3\x49\x99\x18\x24\x39\x25\x17\x83\x75\x68\xe1\x06\xd7\x68\x31\xac\xca\xac\x50\x38\xee\x15\xea\xf6\x20\x1b\x50\x4d\x95\x8d\xa2\x2f\x22\x18\xf6\xde\xf7\xfa\x32\xfb\x77\xcd\x98\x34\x0d\xc4\x6b\x3f\x72\x77\x0c\xf1\x60\x05\x8e\x71\x7c\x6e\x44\xba\x32\xa5\x28\xe8\x93\x31\xd3\x39\x4e\x03\xcd\x46\x65\xbb\xe0\xd9\xfe\x50\x71\x0f\x9d\x2d\x6b\xb1\xed\x73\x92\xd6\x95\x45\x5d\x76\xf8\x9f\x4a\xc1\x5a\x0a\x6c\x3b\xaa\xd4\x0b\xc5\xf0\x98\xae\xa7\x28\xb4\x1f\x39\xf2\x9c\x1f\xd3\xca\x3b\xf2\xbb\x00\x2e\xa8\x50\x0c\x9f\x52\x9d\x13\x82\x28\x98\xf0\x4e\x25\x9f\x9f\xaa\x99\x74\x70\xc9\x12\xf1\x62\xcf\xdc\x23\xfb\x62\x87\x56\x88\xcd\x9b\xd6\x7c\xdb\xab\xc3\x94\xd0\x64\xa0\x1a\xe2\x3b\xb9\x28\xbf\xad\xd7\xd4\xbc\x82\x58\x80\xfa\x0d\xcd\xd9\xb0\x42\x98\x4d\xf8\xe9\x0e\xbf\xb4\x2d\xf1\x58\xe1\xda\x7b\x02\xa7\xf7\xce\xa9\xf4\xef\xaa\x51\x0f\x4e\x78\x6e\xcb\x82\x94\x9d\x57\x94\x9f\xc2\x3f\x3c\x99\xb6\x71\xa6\x0c\xb9\x95\x3e\xe5\x6e\x32\xaf\x6c\x95\xc7\xb5\x82\x39\x60\x30\x77\xde\xbd\xfa\xdc\x82\x1a\xd5\x58\x08\x35\x7f\xde\x69\xa5\xf1\x56\x9c\x06\xb2\x0b\x9e\x90\x56\xac\x88\xb4\x52\xdd\x87\xca\x66\xdb\x22\xbc\xa5\x38\xd6\xa6\xca\xd0\xe3\x56\x77\xf5\xec\xfd\x6e\x7a\x70\x74\xb9\x40\x5b\x3f\x76\x52\xb7\x78\xf3\x19\xa9\x04\x10\x21\xf2\xab\x8f\x0d\x53\xa9\xf0\xcb\x84\x66\x47\x31\xbc\x6d\xb1\xc2\x1a\x27\x08\xa4\xaa\x97\xdd\x3e\x42\x4b\x50\xbe\x14\x12\xff\x58\xf7\x45\x22\xd8\xe0\xa8\x0e\x6e\x19\x83\x2d\xdc\xa5\x1b\x9e\x20\x56\x83\x4d\xec\x9b\x23\x06\x24\x7f\xac\x50\x28\x86\x79\x77\x98\x12\x83\x99\x87\x05\xbf\x32\xbc\xf3\xa1\xe4\xb4\xcf\x9c\xc5\xaf\xd6\xab\x1b\xd3\x3b\x7a\x9b\x94\x71\x9f\x82\x6b\xb7\x3e\x9c\x40\x95\x70\x2a\x63\x8e\x9f\xd7\xae\x52\x1b\x6d\x64\xf3\xb2\xff\x9b\xe3\x52\x7e\x44\x5e\xe0\x40\x6d\x7f\xc0\xd4\xb6\xe7\x7e\xbd\x8f\xbb\x1c\x7e\xf3\x61\x55\xfd\x97\x8f\x7c\xc2\xc2\x4c\x85\x31\x22\x65\x6c\xe2\xbe\xad\x37\xf3\xdf\x77\x2a\x8d\x93\xcf\x85\xcc\x05\xe3\xef\xbc\x6b\x06\x2a\x65\x14\xaf\xf2\xa6\x4c\xd2\x25\xa1\xb0\x2b\x16\x85\x2f\xf5\x24\x65\xbd\x60\x33\x3f\x93\x0e\x87\x2b\x61\x21\x26\xcb\x8a\xb7\x77\x2b\x7a\x18\x0c\x9b\xa4\x04\x16\xce\xf7\xbd\xa7\xb9\x99\x21\xc7\xe1\xec\x34\xa8\xf5\x8f\x8e\x4a\x1e\x2a\x78\x0a\xc7\x27\xfc\xe1\xed\x7d\x8c\xec\x18\xc1\x89\xf3\xf2\xcc\xa7\xd3\x9f\xbe\x84\x6d\xda\x00\xc6\x62\x76\xe7\x26\x4d\x4a\x66\xf1\x95\xe9\xa7\x1b\x17\xa1\x1f\x3c\xa1\xd1\xe9\xa3\xeb\x1b\x9f\xc7\x2f\x8d\x94\xf5\x8a\x03\xeb\x10\xe5\x0a\x5e\xeb\x2a\x7d\xbd\x01\xd2\xb3\xd1\xdf\xfe\xa3\x46\x63\x2d\xa3\xaa\x24\x2c\x6e\xb8\x5f\xaf\x1c\xfc\x44\xc9\x3f\xfc\xc4\x4c\x85\x0d\x46\xdd\x32\x66\xd1\x2f\x15\x07\xb7\xe3\x4e\x28\x16\x97\x80\xb2\x36\x1f\xe2\x1c\x38\x29\xc7\x34\x84\x61\x1b\x1c\x69\x79\x25\xd8\x7f\xe1\x60\x69\x2f\x15\xb7\xf5\xcf\xed\xd6\x4a\x1f\x62\xf8\x51\xd1\x14\xc4\x3a\x45\xb9\xb7\x87\x0f\x13\x57\x90\x3a\x9e\xfa\x75\x33\xf7\x9c\x1c\xa2\x82\x5a\x13\x71\xf0\x8f\xdc\x3e\x54\xd1\x32\xa9\x4b\x09\xc8\xe2\x83\xe9\xe7\x80\xff\x7f\xca\xde\x3e\x5e\xaa\xaa\xde\x1f\x77\x1e\xf2\x92\x22\x1c\xe0\x78\x38\x02\x21\x22\x22\x01\x73\x3c\x1c\x9e\x49\x4d\x11\x89\x8b\xc8\x10\x12\x12\xa2\xb1\x66\xcf\x9a\xd9\xeb\xcc\x9e\xbd\xb6\x6b\xef\x3d\x73\x86\xd4\x88\x88\x88\x88\xc8\xd0\x88\xcc\x8c\x4b\xc4\x8f\xc8\x6b\x46\x64\x7c\xb9\x66\x66\x44\xc6\x35\xbe\x46\x66\x4a\x44\x7c\x49\xcd\x88\xb8\x5e\xe3\x12\x71\x76\xbf\xd7\xfe\xac\xb5\xf7\x5a\x7b\xcd\xf9\xe7\xfe\x73\x5f\x37\x84\x73\x66\xf6\x5e\xeb\xf3\xf8\x7e\x80\xa4\x2e\xc4\x44\xac\xfe\xc9\x46\xb0\x4c\x19\x38\x12\x27\x30\x2d\x3b\x4f\x6a\xcb\x1e\x3b\x96\x84\x8d\x2a\xf7\x43\xe9\x6b\x24\x94\x4a\xc8\xcc\x37\xbb\xb1\x5d\x3f\x52\x83\x72\x53\xbf\xcc\x15\xd7\xa3\x6f\xd7\xde\x9a\x20\x9a\x59\x61\xaa\x0f\x6f\xcd\xb8\x0b\xf1\x63\x2c\x30\x24\x1e\xe3\x83\xda\x4b\xac\x52\xd7\xb3\x1a\xd1\x60\xe4\x9a\x97\x75\xf2\x6e\x25\x16\xb5\x4a\xdd\xbd\x40\x97\x26\x15\x5e\xdf\xd1\x17\x9a\xfe\x6e\xf2\x67\x77\xfb\x55\x47\x36\x19\x63\xed\x41\xea\x3c\x50\x60\x92\xa7\x68\x28\x8a\x48\x2b\x8d\xa7\x7d\xc7\x1c\xc6\xeb\x7d\x7f\x11\xed\x43\xf1\x6a\xd1\x92\x96\x28\x5a\x08\x45\xd7\x7c\x6f\xe6\xff\xbe\x3a\x3e\x19\x19\x38\x33\x92\xdf\x3e\x5d\xa6\x34\xb8\x61\x76\x8b\xad\x82\x49\xa1\xb0\x9a\xb5\x4e\x37\x7b\xe4\x9b\x4b\x25\x64\xbc\x67\x4e\x33\xd9\x81\x6b\xa6\xf2\xe2\xf3\xe3\x47\x35\x73\x25\x02\x72\x93\x30\x95\xd1\x7c\x43\x5d\x07\xd9\xc4\x35\x73\x16\xb2\x41\x95\x4c\xd4\x11\x53\x87\x25\x83\x4f\x19\xdb\xd4\x80\x51\x0a\x9c\xc2\xce\x4b\xe2\x2c\x4a\x3c\x1d\x07\x11\x0c\x38\xa9\x38\xde\x13\x61\x1f\x50\x7e\xa6\x69\x53\x5a\xf2\x85\x30\x2f\xe0\xf0\xbf\xa1\xb9\xa1\x45\xa6\x0f\xbc\x82\xa8\x9f\x54\xe4\xb0\x11\x27\xaa\xbb\xc3\x64\x29\x3c\xb9\x33\xe7\x58\x5c\xcb\xa8\xdb\xd4\x35\xba\x50\x44\xa6\x0d\x3e\xbd\x5b\x51\xac\x73\x5d\xe2\xf2\xca\x65\xe1\x65\xb2\x27\xae\xe2\x22\x00\x29\x20\xcc\xcd\x73\x94\x5c\x52\x28\xf2\x0d\xf3\x03\x27\x93\x77\xd0\xb0\x48\xc9\x13\x6b\x40\xd9\x96\xfd\xdb\x8b\x71\x26\x28\xa3\xf0\x77\xb7\x8e\x18\xd1\xe7\x17\x74\x23\x97\xf4\x94\x75\xa5\xf6\xe6\x0b\x22\xa9\xec\x1b\x14\xc5\x36\x0f\xc7\xcd\x8f\x3d\xe2\x0a\x51\xf2\xdb\x5c\x37\x34\x73\xe5\xb1\x98\x9c\x42\x2a\x02\xad\x1f\x2c\xe4\x53\x6c\xd8\x4b\x79\x1e\x57\xb7\x4b\xed\x09\x22\xc1\x13\x62\x47\xaa\xf3\x9f\x7d\x43\x9b\xf3\x55\x31\x23\x06\xe2\xf8\x34\x88\x4c\xfb\xd6\xc9\x26\x16\x17\xeb\x88\x15\x9b\x75\x7c\x87\xb6\xb4\x28\x15\x68\x8d\x87\xf6\xa9\xaa\xc3\xa0\x89\x6b\x8c\x5a\x18\x92\x6b\x63\x9e\xf8\x66\x3e\x03\x69\x55\x1f\x74\x7a\x7e\xa2\x99\xb7\xb9\x16\x71\x22\xa9\xcc\xa1\x0b\x13\x80\x86\xb0\x26\x0d\xff\x78\xf3\x79\x95\xc5\xe1\x38\x9c\x23\x70\xe3\x4a\x59\x58\xd7\xa8\x55\xa1\xb5\x5c\x3e\x28\x1c\x92\xa9\x5e\xb3\x62\x7a\x4b\xb3\x40\xbe\xdf\x27\xc0\xe3\x81\xb7\xf0\x6b\x6d\xeb\xd2\xed\x33\x41\x0b\x0a\x0e\x0c\x88\xdf\x35\x06\x09\xd4\x7e\x4f\xcb\x3a\x72\xec\xfd\x10\x11\x47\x28\x73\x4f\xdc\x43\x39\xf2\x3b\x7d\x6f\x56\xce\x97\xc6\xe1\xa2\xab\xf4\x17\x9f\xd9\xc0\xc7\x01\x77\xf8\x86\x59\x55\x17\x18\x7b\xd6\xf2\x97\x87\x58\xd9\x47\xa2\x5a\xd8\x52\xe0\xa6\x8c\x8b\x81\x25\xf5\x9c\x36\x0c\xf1\x18\x8a\xbf\x47\x6f\x66\xf8\x25\xfc\xe0\x4c\x9b\x94\x9b\xd4\x35\x03\x24\x74\x0a\xda\x76\xdd\xa0\x36\xad\xc6\xd8\xaa\xd4\x07\x0e\x4a\x0f\xc9\x02\xc5\x7d\x70\x72\xb3\xed\xbb\x9a\x86\x6f\x98\x49\x52\xd0\x1d\x87\x35\x3f\x7b\x02\x43\x46\xa1\xbf\x93\xbf\x78\xa5\x9a\xc0\xc3\x60\xc6\x87\x52\xf7\x9e\xd4\x10\x18\xb0\xaf\x00\xf9\x49\x71\x26\x07\x5c\x26\x25\x6e\xad\x66\xed\xdd\xab\x17\x6a\x38\x46\x9b\xd6\x73\x06\xad\x61\x16\x93\xa5\xd3\xb7\x69\x1e\xe4\x05\xea\x7a\x31\xa7\x0f\x8a\x82\x5f\xb5\x0a\x11\x64\x8f\x32\x38\xa1\x9f\x7c\x45\x80\x03\x84\xd9\x48\xbe\x37\x8d\x57\x0c\x56\xde\x2f\x16\x26\x15\xa9\x9d\xaf\xc6\x75\x73\x0f\x81\x13\x7c\xb9\xad\x2d\x7c\x50\x39\x7a\xd0\xe9\x0f\x0f\xd3\x72\x7f\x8d\x4f\x4f\x56\xe5\xf2\xc1\x7f\x6b\x6a\x12\xfc\x59\xc8\x25\xfe\x8f\x4f\x68\xcb\x73\x52\xb0\x71\xc9\x6b\xe6\x30\x66\x2f\x57\x3c\xd2\x8a\xd8\x11\x34\xef\xe0\x3f\x5f\xe6\x91\x22\xb9\xfe\x38\xa6\x9a\xb1\x14\xa1\x28\x0e\x5e\x9c\x18\x59\x44\x01\x5b\x44\xd8\x40\x5d\x27\xb6\xf9\x8c\xf2\x8d\x7a\xea\x37\x9b\x92\xa0\xa4\x69\x5d\x3c\x98\xcf\x7b\x4a\xd1\x3a\x8c\x60\xc6\xf1\x18\xf7\xd6\xd9\x82\xc6\xf5\xa1\x5b\x9b\xa2\xcb\xff\xd9\x28\xf8\x7a\x84\x3b\x22\xec\x79\x25\xf9\x9d\x41\x47\xb0\x8f\x1e\x32\xf8\xec\x09\xa9\xf1\x0e\x5e\x97\xfb\x56\x37\xe5\xd0\x9a\x5a\xd0\x8d\xbe\xef\x5a\x65\x10\x51\xc3\xcc\xe6\xab\x22\xbd\xb9\x79\x5c\x53\x0c\x17\xd2\x75\xe2\xb5\xdc\xb5\x28\x58\xf6\x52\xf2\xe4\x4f\x9e\x04\x6e\x4b\xe2\x5e\xdc\xbc\x4c\x9f\x50\x95\x19\x8e\x8f\xc3\x4f\x46\xe9\xab\x4f\xcf\x67\x51\x0d\x97\xbe\xf5\xa9\x41\x22\x31\xb9\xd4\xf2\xa3\xb7\xf0\xe9\x0b\x9a\x7d\x8d\xcd\xd7\x69\x8f\x68\xd0\x3c\xc4\xc4\x64\x3c\xb8\xea\xd9\x2b\x95\x8d\x14\x5c\x0e\x91\x12\x5a\x16\xca\xb8\x5d\x61\x3e\xac\xf5\xc2\x10\x3a\x6f\x76\xbb\xb2\x4f\x70\x2d\xac\x90\x76\x32\x54\xf8\x19\xb9\x3e\xdf\xb3\xf4\xa6\x96\x3f\xaa\xe9\x6c\x62\x03\x15\x05\xfd\x31\xfd\x61\x45\x5b\x00\xd9\x54\x18\x97\x40\xf6\x5d\xbb\x4e\x1d\x5b\x70\xb1\x7a\x03\xc2\xdd\x07\x5f\x96\xc9\x95\x86\x67\x77\xd4\x66\x39\x8c\x29\xc1\xe1\x7b\x66\x4c\xab\x56\x8a\x71\x46\xc0\xeb\x4a\xed\x6f\x20\x87\x78\x08\x08\xd2\x70\xd6\xa7\xe8\x00\x27\x66\x63\x26\xdc\xbc\xd7\xac\xd4\xb0\x42\x20\xfd\x09\x8f\xf6\xae\x4e\xfd\x25\x5a\x38\xf2\x01\x0b\xde\xbf\x35\xae\x95\x8c\x66\x31\xd7\xcc\x8f\x9e\x91\x29\xaa\x02\xde\xc0\x61\x3d\x72\x5e\x96\x29\x93\x66\xe6\x3c\x9a\x9b\x34\x3d\x7c\x1f\xcf\xcf\xd3\x2d\x7c\x20\x43\x87\xff\xaf\x28\x58\xae\x59\xa4\x35\x51\x16\xa9\xba\x11\xeb\x60\x8c\xec\x19\x69\x5d\xd5\xe9\xfa\x8a\x56\x7a\xf3\xad\xa6\x00\x6e\x96\x36\x6a\x54\xd4\xb0\xd3\xe3\x45\x41\xf8\x1b\x87\x4e\x6c\x93\xdf\xaf\x96\xf0\xe7\xdb\xae\xf9\xc0\xc1\xe1\x85\x97\xfe\x9b\xfe\xa3\xb4\x84\xc3\x4d\x64\x12\xa8\x9a\xf7\xbe\xa3\x3c\x1a\x1f\x18\xbf\xf9\xde\xd4\xc9\x0e\x1d\x72\x5d\xc2\x52\x01\xb4\x37\x95\x7a\x3b\xf9\x8c\x70\x8f\xc7\x70\x55\xb4\x0a\xf0\x37\x5e\x7d\x46\xfb\x09\x3e\x43\xaa\xa5\xf2\xf1\x89\xda\xd3\xf0\x1d\x82\x84\xe8\x5e\xea\xe3\x6b\x95\x61\xad\x5d\x93\xe5\xd8\xf9\x20\x39\xcf\x5a\x65\x92\xb2\x6f\x91\x3e\x74\xbc\xb7\x2d\x49\x9e\xa4\x06\xf5\xd9\x84\x5a\x01\xae\xca\xc6\x6d\x8a\x70\xa7\x49\x71\xb7\xca\xd5\x9c\xb1\x31\x3e\xe4\xd3\xa6\xc1\xbc\xf3\xd1\x31\x2d\xca\x3e\xbb\x88\x61\x67\xb5\x77\x97\x42\x3d\xb2\x70\x0f\xe0\x1b\x5e\x12\xc5\x22\x89\x44\x3a\x57\xae\x52\xc4\x3e\x00\x7f\xc5\xd3\xc8\x67\x16\x26\x86\x32\x15\x86\x48\x2e\x1f\xcc\x3e\x9f\xec\x4a\x56\x11\xab\x92\x2c\x78\xb3\xf3\x56\xc6\x77\x92\x50\x68\x13\x56\xdd\x22\xfb\x72\xf0\xa5\xf6\x98\x6f\x54\xc4\xef\xf1\x7b\x5a\x15\xfc\x32\x43\x0d\x64\xf3\x6d\xe9\x57\xa7\x0d\x50\xa6\xde\x00\xe1\x19\xac\xf1\x69\x0a\x8c\x00\xe1\x2f\x52\xa4\x49\x75\xd9\x32\xa3\x84\x6f\x1b\xbe\xa4\xfc\x68\xd5\xbd\xba\x62\x72\x11\xd8\xc5\x7c\x7c\xf0\xfb\x11\x42\x40\x90\xe3\x3e\x83\xf7\xcd\x52\x31\x89\xb6\xc7\x90\xe1\x51\xd6\x1c\xfa\xef\x7a\x6b\xb8\xa8\xac\xc3\x42\x14\x19\x1e\x66\x9c\xb6\x2c\x94\x9c\x2f\x9d\xa2\xa1\x37\x00\xb0\x2e\x65\x38\x5e\x7f\x6a\x84\xd6\x7e\x12\x6c\x17\x5d\x93\x38\x82\x46\x34\x68\x91\xf6\x17\x88\x6b\x62\x56\x85\x0d\x38\x4c\x45\x7e\x30\x47\x59\xdb\x87\x9f\x00\x36\x39\x9c\xd9\xf9\x8b\x01\x8a\x4c\x29\x3f\xc1\x70\x7e\x8b\xed\xda\x84\xe7\xae\x09\xf9\x88\x0a\xf2\xf7\x82\x44\xbc\x74\x45\xfd\xc3\x6a\x41\x1e\xbe\x6b\xb6\x7e\x90\xcd\x23\xf2\xa0\x79\x14\x24\x1e\x17\xef\x51\xa7\x1d\xc4\xb2\x84\x1c\x83\x67\xca\x4f\xda\x4d\x59\x59\x39\xd6\x29\xf7\xa4\x10\x17\xf0\xb0\x65\x81\xf4\x7f\xea\xd4\xe3\x4d\x2a\xdb\x06\xc3\x91\xa9\x74\x6f\x96\x8e\x88\x3a\xa2\x1c\x97\x71\x87\x3f\x5d\xbe\x48\x85\xf2\x7a\x72\x6d\x1c\x64\x1f\xe3\xb5\xf4\x47\x3a\xee\xea\x48\x2c\xc3\x46\x68\xa2\x6d\x28\x4c\xbf\xd5\xb8\xe8\xea\x4d\x1f\x39\xa4\xd4\x3f\xd8\x63\x50\xb6\xa7\xae\xde\x3e\x5c\x2f\xb0\xcb\xb8\x48\x62\x8d\x8b\x69\x07\x15\x59\xcd\xae\x5c\x3e\xf8\xe2\x45\x0d\xe8\x02\x1a\xc2\x02\x34\xf0\xf7\xfe\xf2\x2a\xb8\xd4\x31\x69\x95\x72\x8c\xb9\xf3\x46\x42\x3a\x99\xbb\xb5\x84\xff\xe2\xdc\xbb\x83\x94\x4b\x4a\x19\x6f\xb3\x4e\x0d\x93\xc1\xa3\xc4\x68\x35\x21\x9f\x72\x73\xa7\xa6\x12\x87\x2c\x5f\x30\x99\x82\x97\x3a\x12\x1b\x28\xbf\x08\xf3\xb3\x7c\x6f\xe6\x8f\x4b\xe3\xef\x51\xf2\xc3\x26\x68\xda\x19\x5e\x80\x99\x18\x5e\xf7\x75\xab\xf4\x60\xeb\x60\xc6\xc5\xab\xf8\xb4\x31\x33\xba\x9b\x07\x9e\x7f\xb5\x4b\x08\x3e\x7b\xe6\xc4\x8b\xda\x5e\x8a\xda\x1c\xf1\xd3\x9b\x9d\x39\x45\x1e\xa8\xc9\x5d\x33\x08\xa0\xb0\x5e\x54\x84\xf7\xc0\x23\x44\xdf\x19\x0d\xda\xc4\x91\xa9\x16\xaa\xe7\x50\x81\x88\x01\x5b\xfa\xfd\x67\x93\xb3\x98\x02\xb2\x0d\x10\xd0\xeb\x13\x07\x9e\xbd\xff\x94\x3e\x34\x23\x1e\x01\x98\x6b\xcc\xe6\x19\x77\x42\xb6\x29\x1e\x43\x35\x1c\xa6\x6b\xb8\x55\x1f\x50\xde\x07\x0b\x4b\x38\x78\x4b\x1b\x8b\x9a\xff\x3b\x31\x4c\x84\xad\x08\xdc\x7e\xa5\xa7\x73\x5e\x2d\x6e\x34\x1f\xef\xa5\xd3\x8f\x5a\xaa\x1c\x23\xf7\xd3\x07\xb8\x48\x6f\xf6\xf3\x73\x07\x27\xa6\xe4\x94\xeb\xd9\xcd\x57\xcc\x9b\x5d\x07\x93\xb2\xc9\x67\x5d\x3b\x16\xc8\x64\xaa\x38\x4d\xb6\x29\x84\x04\x28\x73\x3e\xf9\x72\xf2\x8d\x02\x24\x9a\xab\x55\x88\xf4\xf9\xd7\x29\x3a\xa5\xd2\x33\xcc\x0e\x21\x69\xb4\x6d\xae\xe2\x49\x46\x60\x4e\x93\xb5\xd7\x8c\xd5\xa2\x37\xaa\x89\x1f\xa7\x57\x43\xff\x29\x9d\xbb\x6c\x04\xf9\xf6\xe2\x8b\xaa\x34\xaa\xc9\x10\xaf\x8c\xbf\x58\x4c\x16\x10\x9e\xdb\x28\x23\x9b\xd6\x12\x32\x34\xff\x5c\x37\x50\x19\xdd\x73\xc6\xf0\xb2\x61\xc9\x86\xb0\x46\x2c\x17\x19\x95\xc4\x48\x7e\xcb\x6e\x6d\xd9\x52\x2a\x21\x12\x89\x40\x6d\x17\xe2\x00\xc0\xc6\xe6\x86\x9f\xdf\x7f\x40\x81\x19\x63\xcb\x81\x51\xe0\xe2\x83\x9a\xaa\x17\x35\x7c\x37\xe7\x84\xff\x17\x6a\xa0\xec\x66\x4d\x93\xc2\x0b\xdf\x15\xd7\x6a\x99\x16\x68\x9b\x34\xe4\x8a\x62\x6c\xe4\xb6\x26\x73\xe5\xb2\x59\xa0\xcc\xa4\x34\xf2\x13\xfd\xc1\xee\xb1\xda\x45\xb7\xb9\x36\x5b\xd3\xe3\x4e\xf7\x0f\x22\x35\xce\x30\x77\xf1\x5c\x3b\xf3\xa2\x6a\xc1\xcb\x2c\xe2\x2a\xe2\xe1\xbd\xd9\xbc\xa6\x3c\x52\xa6\x0c\x8b\xd9\x66\x14\xcf\x37\x0c\x48\x28\xc3\xd8\x98\x85\xfd\x34\x9c\xce\xd1\xa7\x15\xa0\xb4\x23\xcc\x42\x53\x33\x3b\xb5\xf1\x43\xa9\x44\x0c\xc2\x3d\x93\x21\x3e\x5e\xa2\x21\x53\xfd\x42\x1d\x89\xa2\x36\xb3\xab\x5d\x59\x88\xd3\x52\xc1\x67\xd0\xb7\x7e\x68\xa9\x26\xaa\xc7\x5b\x8b\x88\xaf\x5a\xed\xd2\x1c\x07\x88\x47\x81\x48\x33\x6c\x2e\x4f\x77\xb7\xce\x5e\xd8\xb4\x87\xbc\xe6\xcc\x50\xe5\xd1\xd4\x54\x15\xd6\x6c\x6a\xbe\xe0\x82\xda\x1e\x89\xb1\xf3\x00\x9f\x53\xbc\xe0\x0c\x5c\xc5\x5c\xdc\x37\x78\xc4\xec\xd0\xc2\x8d\x87\x99\x8d\x24\xfb\xb9\xb9\xde\xc8\xcd\x1f\x26\x41\xc3\xcd\x6b\xc8\x09\x9a\x41\x6a\xf4\xc3\xac\x86\x50\xc4\xba\x69\xaf\x20\x1d\x17\x31\x50\xb5\x61\x8f\xfe\x4f\x47\xe8\xab\x86\x55\x13\x02\x9e\x7a\xa6\xa5\xf4\x3e\xed\x86\x5b\xa8\xe1\x12\x04\xb8\x1e\xa8\xb7\x3e\xf8\xa4\xde\x98\x22\x37\x6c\x18\xb8\xae\x6a\xed\xe9\xc1\x22\x12\x72\xff\x6b\x51\x21\xff\xe1\x96\x3e\x32\x50\xc4\x38\xfb\xcf\x73\x4a\x47\x67\xe5\xf2\xc1\x8c\xe3\x32\xf4\x15\xc1\xa2\x1b\xc8\x10\xe1\xcf\xef\xef\xc8\xba\xd2\x35\x91\x43\x98\xa2\x46\x90\xbd\xf7\x94\x2e\xa7\xe7\xba\x96\xe0\x43\x40\x28\xec\xd9\xa6\x28\x4e\x61\x0b\x84\xb0\xb3\xa3\x8f\x68\x86\xb5\x2c\x2c\xa4\x38\x89\xea\xd7\x2b\xb9\xb6\xcb\x42\xb8\x21\xa9\xcf\x3e\xa7\x13\x11\x79\xc7\x1c\x61\x29\xc7\xa9\xfb\x2d\x16\x46\x47\x28\x07\xef\x19\xa1\x8e\xc5\x59\x15\x1e\xf5\x7d\xc7\x25\xdb\xdc\x06\xe7\xf5\x45\x4f\xf1\x83\x44\x41\x59\xd5\xb7\x63\x0a\xe1\x97\x9e\x97\xf5\xb5\x8d\x72\xf9\xe0\x17\x9b\x93\x17\x1d\xdb\x98\x95\x1b\x7d\xd2\xa4\x7f\xce\xc5\xcd\x72\xb7\xd1\x6a\x15\x33\x83\x34\x51\x05\x83\xfd\xb6\x2e\xec\x55\x31\x11\xb1\x92\x16\xf3\x27\x66\xf3\x1f\x73\x37\x02\x97\x28\xaf\x0f\xa5\x92\xe2\xcd\x1a\x90\x02\xf9\x65\xb3\x83\x3f\xc7\x3b\x9e\xd0\x7e\x87\x61\xf8\x4c\x0c\x51\x65\xdb\xb7\x4a\x33\x09\xaf\x12\xd7\xa0\x76\xd1\x37\xa2\x1d\xc6\x46\x9d\x29\x03\x6d\x58\x35\x8a\x17\xc1\x8c\x51\x02\x7b\x43\xaa\x70\xc4\xa9\x86\xd8\xc4\xbe\xc8\x3d\x90\x62\x3f\xaa\x0c\xc3\x1c\x0b\x7b\x26\x05\xc0\x6c\x7a\xe4\x03\xba\xd2\x34\xf2\x22\xb7\xc2\x83\x0a\x82\x9c\x21\xbf\x98\xcb\x07\x57\x9d\x55\xd0\xa8\x7c\x24\x92\xef\xcd\xd0\x63\x9a\xf1\x24\x9c\xe3\x30\xce\xf3\x51\xec\xa8\x27\x75\x80\x9d\x30\xba\x12\x6a\xe7\xa3\x77\x70\x32\xfe\x22\x93\x58\xa0\x7f\x8c\xe3\x99\x64\xee\x10\xbf\xb8\xb7\xf7\x18\x98\x71\xd9\xe9\xcc\x4f\xe6\xc8\x81\x49\xd8\x92\x40\xb1\x00\x79\x39\x7b\xb3\xfe\xe8\x09\xdc\x66\xcd\x84\xef\x5c\x3c\x20\x28\x75\x48\xec\x5b\xf0\x5f\x33\x94\xa3\x6b\x81\x90\x49\x6f\x66\xdc\x6a\x51\x83\x9b\x88\x71\x88\x3f\x18\xb2\x2b\x44\x01\x7e\xc1\xe1\x76\x77\x4b\xde\x87\xef\xe4\xf2\xc1\xa5\x1d\xb2\x54\xe5\xd6\xc9\x26\x75\x3d\xc2\xc1\x72\x7f\x3d\xab\xb0\x55\x18\xad\xe0\xb0\xba\x86\x2f\xf8\xc6\x73\xd2\x2d\x11\x31\x6a\xd3\x1a\x51\xcb\xfc\xcf\x05\xf1\x15\x29\xfa\x30\xc6\x2b\x3c\xcd\xa1\x2a\x8b\xa8\x65\x35\x54\xe6\xd7\x38\xbe\xaf\x9d\x83\x58\x9d\xb8\x2a\x28\x81\x4e\xd4\xcd\xeb\x89\xd0\xc6\x76\x5e\x94\xfe\xcf\xd3\xa6\x87\xb1\xf3\xc8\x60\xe5\xbb\x32\xc2\x0b\xdc\x6c\xcf\x18\x3d\x7b\x13\x6e\x7d\xf1\x25\xc1\x3b\x29\x20\x3e\x32\x5e\x7d\xa3\x52\xab\xc1\x72\x86\x0b\x40\xfe\xa9\xbf\xfc\x96\x40\xb5\x74\x69\xce\xb5\xc2\x63\xc3\xe9\x98\x0f\x2c\x94\x1a\x76\xb1\x9b\x71\xfa\xcd\x87\xa5\x34\x59\x91\x46\x91\xba\xf7\x1c\xff\x9d\x77\x13\x30\x50\x5c\xd6\x5f\x2a\xb2\x97\x19\xf5\x9d\xa6\xe9\x70\xca\x79\x58\x36\x1d\xbe\xed\x58\x7e\xb9\xcc\x97\x46\x48\x5b\xcb\x70\xaf\x7d\x4e\xc3\xb8\xf3\x55\xe1\x60\x8b\x1c\xe8\x95\xf3\xbd\xe9\x7b\x5f\x10\x7c\x42\xd7\x25\x65\x1b\x37\x79\x04\x64\x9e\x5a\xc0\xff\x8d\x44\xbc\x65\x17\x09\x8f\x1e\x10\xc1\x81\x67\x91\xd2\x76\xb4\xdc\x46\x2b\x52\x60\x28\x3e\x25\xd6\xee\xbe\x6b\x20\x8b\x52\x17\x45\x4f\xe3\xe0\x2b\x8a\xe1\xa1\x6d\xfa\x55\x2e\x34\x96\xda\xf9\x52\x32\x09\x4d\x99\xd6\x31\x55\x00\x81\x83\xd3\xf3\x65\xca\x71\xb9\xcb\x51\x14\x94\x1e\x1c\xa1\x4c\x45\x38\x63\xe2\xae\x45\xbd\xd9\x3b\xe7\x6b\xa9\xc0\xe2\x82\x76\x7c\x63\x44\x8e\x68\xd2\x9f\x8e\x2f\xa8\x80\x99\x74\x9a\x7f\xf0\x3b\x51\x03\x24\xf6\x64\xd1\xba\x7f\x41\x8b\x48\x11\x36\xce\x79\x3e\x47\x3b\x7d\x7c\xe2\x50\x95\xe6\x2c\x48\x1e\x5c\x20\x3c\x98\x32\x21\x09\x24\x4a\x3e\xe7\xa6\xc7\xbe\x26\xb1\x2a\xb3\xcb\xfc\xde\x4e\x7d\x49\x86\x8e\x22\xa9\x72\x1b\x1b\xc8\x3b\x39\x8d\xe8\x5c\xb0\x22\xb4\x4b\x6f\xe6\xeb\x05\x99\xbe\x18\xcb\xe5\x83\x81\x9a\x8a\x66\xb4\xb0\x11\x22\x25\xc0\x32\xb9\x28\x74\x7c\x18\xa9\xe1\x3a\x02\x84\x6b\xcb\x00\xfe\xa5\xef\x42\xf6\xca\xe8\x15\x66\xaa\x9a\x48\x97\x8b\x41\x0e\x56\x64\x01\xb4\x56\x5e\x3e\xcb\x2f\x14\xb8\x95\x54\x66\xea\x48\xfe\x60\x91\x65\x50\x93\x5a\xb9\x92\x8f\xb9\x65\xff\x99\x8d\x63\xb4\x50\x9b\x54\x9c\x89\xf9\x92\x4b\x5f\x4d\xb6\x16\x89\x44\x2c\x9a\xa0\x4c\x7e\x87\xec\x54\xbb\x31\x86\xc6\x68\xfb\x8e\x56\xf1\x25\xaa\x3e\x56\xd8\x5e\x99\x7f\xef\x80\xff\x60\x61\x3b\x37\x59\xa5\x19\x8c\x1f\xd6\x34\x37\x0e\x0b\x1d\x41\xfe\x41\x7b\x22\xf1\x2b\x27\x66\x11\xa5\xbe\xf9\x4e\x9b\xaa\x38\x86\x25\x18\x36\x93\xd6\xc6\x8a\x35\x6a\x20\x4b\xf4\x1a\x8b\x9f\x95\x0b\xbc\xb2\x6f\x95\x5c\x8f\x61\x54\x55\x87\xb5\xd9\x7b\x36\x25\xe5\x27\x1c\xb7\x61\x98\x14\xd9\xc8\x6a\xb8\xc4\x4d\x3a\x44\x8c\x7b\x5c\x06\x20\x1c\x0d\xf4\xf2\x3b\x93\x61\x8f\x94\xc4\x50\x33\xfd\x57\xc1\x13\xab\x52\x8e\x42\x87\xf0\x30\xd6\x53\xbe\x09\x32\x70\xce\x45\x35\xd1\xb9\x37\xd6\xf1\x04\xbe\x10\x55\x79\xc1\x77\x55\x8f\x72\xfb\x2a\x44\x08\xce\x67\xc6\xbd\x25\xeb\xf1\x22\x43\x20\xa7\x25\x86\x6f\xe9\xb3\x0b\x93\x45\x42\x85\x32\x8c\x14\xa6\x6e\x7a\xdc\xcd\x97\x47\xd5\x70\x58\x4c\xfd\x72\xae\xb6\x73\x36\x4c\x5c\xc5\x1c\x28\x7c\xef\xe3\x3c\x2a\xd5\x91\x70\x03\x48\xff\xc7\x2d\xf2\x37\xe3\x1e\x07\x79\x8c\xc4\xee\xed\x6f\xb6\xf3\xbf\x7d\x27\x15\x88\xfb\x5b\x99\xbc\xbc\x35\xea\xe1\x5c\x19\x7b\x22\xe0\xa5\x4f\x6c\x48\x86\x88\xae\x19\xb1\xc6\x75\x75\xbb\x62\xab\xab\xc8\x64\xa4\xff\xbf\xfb\xfa\xd4\x6c\x93\x64\xe8\x37\x37\xa8\xeb\xd4\x2a\x20\xdd\x38\x99\xf0\x77\x07\xb9\x6a\xdb\x6c\x8a\x58\x33\x08\x76\xea\x38\x7d\x6d\x4c\x1d\xb3\x11\x8d\x2b\x26\xbc\x30\x4c\xaa\xb4\x35\x47\xf3\x97\x5e\xd3\xb8\x00\x88\x51\x4b\x93\xdd\xcb\x8d\x1e\xa9\x86\xaa\x59\x7a\xa8\xca\xf7\xa6\x3e\x25\x55\x82\x1d\xb3\xc9\x94\x32\xfd\xf3\x76\x5d\x90\x07\x17\x89\x10\xdd\x0a\x5e\x6c\x69\x95\xe9\x5f\x99\x30\xa6\xb3\x76\x1c\xa6\x5c\x13\x9a\xe4\x33\x05\xad\x3d\x0c\x4b\x51\x64\x08\xd5\xbb\xf4\x9d\x2f\xeb\x2b\x02\xcf\x30\x15\x60\xf9\xa8\x9b\x15\x12\x53\x57\xc7\xd4\x49\x90\xab\xce\x6d\x94\x7d\x89\x89\x0a\xa4\x40\x94\xce\x39\x7d\x40\x11\x7e\x35\x90\x55\x16\xf4\xaa\xc9\x07\x64\xbb\x60\x12\xd7\xa3\x0c\x84\xc5\xd3\xf7\xb6\x4a\x45\xcc\x29\x33\x3d\x53\x19\x5b\x06\x7b\x5e\xe2\x17\xa4\x41\xb9\x2d\xf2\xf6\xfd\x32\x78\x57\x49\x91\x2f\xc2\xe1\x83\x1e\x0a\x54\xfb\x68\x1a\xcb\xe3\x6e\xd8\xa5\x12\x24\xf9\x06\x25\xda\xe8\xe4\xa6\xe9\x3e\x9b\x24\x76\xab\x1d\xd7\x9e\x7c\x6e\xf7\xfb\xc8\x22\x5e\x84\xe1\x4a\xdd\x7a\x42\x1f\x69\x03\xf6\xc6\x8b\xcb\x91\x87\xb6\xf0\x7a\xec\x0e\x93\x60\x5f\x09\x91\x93\x56\xcb\x81\x29\x70\x83\x52\x95\xbd\x51\x13\x69\x91\x32\x17\x61\x0d\xff\xf8\xf5\x53\xb2\x14\x2d\x93\x12\x4c\x98\x32\x7b\xd2\x43\x6d\x1d\x3f\xc0\x0b\xd2\xe0\x9f\x3b\x5b\xa2\x5b\x8a\x99\x07\xd0\xe3\xde\xcc\xf7\x14\xbe\xb6\xeb\x11\xbe\xae\x4e\x3f\xaf\x09\xba\x95\x10\x03\x78\x0e\xdf\xff\xdd\x76\x46\x86\xd0\x12\x0e\x7f\x81\x10\x2a\x90\xc3\xe4\xd2\x8a\x36\x75\x8c\x6a\x09\x75\x4b\xd8\x5a\xbd\xd0\x24\xef\x56\xc5\xcc\x12\x43\x8c\xec\x65\xa7\xe3\xaf\x6f\x00\x1b\xcc\x7f\x6b\xa0\xf8\x36\x8c\x91\x22\x9f\xcc\x7c\x42\x51\xd8\x29\xa1\x1a\x15\x9e\x32\x37\x3c\xa6\xbc\x7c\xdc\x43\x0c\x1a\x61\x19\xbf\x3f\x66\x90\x52\x47\x52\x6e\x58\x91\xf9\x5b\xe7\x30\x89\x48\x68\xf6\x91\xed\x3f\x3e\x19\xc6\x4d\xc4\xa5\xf3\x83\xbb\x97\x2b\x55\x67\xe4\x98\x37\x77\xb5\x7c\x92\x46\x47\xa1\x03\x86\x76\x59\xdc\x26\x44\xf1\x11\xf3\x88\x41\x1c\x24\x62\xfe\x3c\x41\x5d\x32\x4c\x02\xad\x78\xea\xcd\xd7\x14\x97\x45\xbf\xc8\xfb\x5a\xb3\x53\xc7\xe2\xa3\xb2\xcf\x43\x71\xaa\xb1\x69\xa4\xf6\xe9\x6c\xa2\xf1\x74\xae\x5e\x2b\x0c\x95\x81\x09\x05\xef\x7b\xc7\xbb\x1a\x96\x3d\xac\x7c\x05\x58\xee\x9f\xbb\x34\xf1\x38\xbb\x88\x8b\x82\xf9\x3f\x70\xde\xe0\xc4\x03\x14\x98\x08\x7f\x9b\x16\x27\xa9\x5f\x36\x31\x13\x3e\x44\xd7\xce\xd7\x06\xc9\x2e\x43\x18\x16\x81\x91\xc4\xdc\x9f\x35\x41\xe7\xd8\x0d\x23\xd1\x91\x97\x38\xca\x38\x77\x1b\x37\xc9\x4b\x9e\xb4\xe5\xc9\x97\x54\xf0\x1b\xe2\x23\x7f\x73\x96\xca\x4f\xae\x22\x62\x2b\x8b\xde\xcc\x6d\x1b\xa2\xbd\x89\x50\x1a\x85\x50\xf3\x78\x3b\xbc\x85\xf0\x07\xdd\x0d\xba\xc0\xb0\x0c\xfa\xef\xd6\x81\x51\xd5\x32\x53\x78\x47\x8d\x7c\xba\x49\x7d\xdc\x23\x86\x6f\x81\x25\x2c\x94\xbc\xbf\xd0\xee\x50\x19\x4c\xcf\x23\x9c\xcf\x98\x51\xc9\x5b\xe0\x30\xda\x8d\x0d\xcf\x15\x79\xcb\xf4\x5a\x54\x99\x19\x3e\xd0\x7e\xe4\x99\xe4\x57\xb5\x69\x1d\x1e\x74\xf0\xec\x13\x31\x06\xc7\x10\xa9\x77\xd0\x66\xdd\x69\xbb\xec\xb3\x98\xad\x73\xd3\x34\x5d\x89\xc2\x8a\x66\xf1\xe9\xfc\x6e\xfe\xc3\x6e\xaf\x3a\x98\xf1\xeb\x76\xe3\xea\x24\x80\xa0\x1a\xb1\xb2\xdf\xb3\x50\x99\x6f\x32\x12\x9e\xf0\x55\x62\xc4\xf5\xd8\x79\x5d\x50\x84\xfa\xc2\x8d\x30\xfd\x29\x6d\xad\x6c\x13\x03\x47\xb3\xb9\xd4\xe6\xb9\xd2\xd1\xd7\x69\x56\x96\x9a\xb5\x7d\xa4\x56\x29\xba\x1e\xf3\x0d\xa1\x9d\x0b\x77\x6b\xf9\xe8\x2b\xe2\xf8\x07\xa6\x27\xef\xbf\x31\x6e\x57\x8b\x10\x53\x5e\x6f\xe3\x15\x4f\x95\xfb\x75\xb6\xde\x17\xc7\x01\x13\x37\x8f\x13\x2f\xbe\x23\x21\x6c\x45\xbf\x90\xcb\x07\x3f\x79\x58\x55\xfb\x89\xd5\xbe\xfb\xb5\x29\xb6\x3f\x26\xf1\xc2\xa8\xfb\xd9\xdd\xda\x7e\x0c\xbb\x42\xcb\x84\xb7\x8b\x97\xb6\xcb\x7f\x73\x7d\x15\x55\xe0\x96\xfe\xc7\xab\xb2\xed\x95\x0e\x90\x71\xb5\xfc\xe9\x11\x13\x93\x29\xbb\x08\x5d\x8a\x27\x04\xde\x9a\xb8\x44\x99\x61\x2f\xa8\x3c\x02\xcb\x42\x0e\xb8\x60\x04\x2b\xb3\xfa\xa6\xc7\xc3\xac\x4a\x3c\x2f\x9e\x20\xdd\x7b\x51\x68\x98\x50\xee\x47\xba\xf8\xed\x18\xcd\x5c\x25\x31\x4e\xe0\xd0\xbb\xbc\xc1\x5d\x44\x3c\xaf\x8a\xec\x26\x11\xfd\xf4\x83\x1b\xe3\x71\x4a\x71\x95\xba\xf1\x9c\xbb\x49\xc1\x8a\xd9\x11\xfe\x24\x7d\xef\x66\xa9\xa9\x15\xd7\x1a\xe9\xef\x1d\x8a\xdf\x13\x69\xf6\x97\xc8\x8e\x1e\xa5\x0f\xba\xc3\x8a\x3d\x4a\xd8\xa9\xd3\xa7\x34\x9c\x13\x6a\x18\x26\x36\x2a\xd1\xc1\x77\x56\xe8\x57\x92\x50\xf0\x72\xe1\xab\xc9\xe9\x4b\x15\x4f\x68\xc4\x05\x34\x02\x7b\xf1\xb0\xe6\x30\x80\x23\x28\x76\x36\xf3\x4a\x72\xd6\x84\xac\x02\x66\x1e\xd2\xe4\xea\x8d\xc7\x95\xc5\xaa\xcf\xb8\x38\xeb\x80\x92\x8a\xd3\x66\x08\x28\x14\xeb\x07\x34\x59\x58\x31\xe1\x2a\x11\xbc\xb3\x53\xd9\x82\x71\xb7\xe8\x5c\x3e\xf8\xa2\x46\xc3\x75\x28\xd8\x8f\x42\x2b\xf4\xf1\xd3\x9a\xb6\x1a\x72\x90\x9d\x74\x01\xb9\xe1\x44\xc2\x05\xcc\x8e\x29\xa9\x67\x2f\x68\x83\x71\x6a\x87\x8d\x94\x15\x2f\xec\x52\xab\xee\x53\x46\x42\x84\x86\xaf\x36\x7c\xca\x6b\x57\xcb\x02\xa5\x81\x5c\xc5\x8b\x2d\xf8\xd9\xa3\x22\x8c\x91\x1a\x29\xf2\x29\xd7\x92\x0b\x7a\x91\x4b\xaa\xd1\x16\x32\xd8\xfe\xd8\xb0\x28\x58\x2f\x5c\x78\x57\x53\x0d\xff\x85\x89\xf2\x09\xe6\x0a\x88\x9f\xf8\x5b\x9f\x57\x17\x54\x36\x2f\x3c\x2f\xdd\xdf\xa6\xbd\x79\xec\x02\xc8\x25\x58\xbc\x29\x99\x9f\x30\x72\x3d\xcc\x04\xa6\x4d\x92\xe4\x9f\x1a\x2c\xda\x50\x9f\x79\x66\xce\xc5\xbc\x57\x9b\xf8\xc2\xd5\x8a\xce\x05\xe0\xab\x9a\x2e\xc6\x77\x5e\xe3\x69\xc8\xab\xd3\x9c\x67\x12\x56\x84\x4d\xc4\x19\x05\x08\xe6\x26\xd4\xe9\x3f\x55\x53\x1c\x09\x72\x9c\x67\xb8\xf4\xb4\xac\x9b\x2b\xc4\xb2\xb8\xdd\x70\x70\xf9\x8b\x72\x86\x93\xfc\x29\xd9\xbb\x2f\xd1\xbd\x7a\x31\x83\x10\xcc\x29\x06\x9f\xd7\x78\x17\x05\x64\xdb\x11\x7e\x35\x1d\x1c\x8a\x8b\x1f\x8b\x94\xa2\xab\x79\x6a\xa4\xee\xce\x69\x54\x22\xae\xeb\xdd\xdd\xed\xca\x2c\xd6\xb7\x12\xdb\xa2\xd1\x6d\x43\xd5\xfd\xfd\x2a\xd5\x82\xd6\xd7\x34\xcf\x88\xed\xd1\x09\x75\x9e\x7a\x86\x76\xe9\xfc\x72\x52\xb2\x38\x29\xef\x6b\x67\x78\x6b\xb7\x24\x2c\x7b\x84\x3c\x61\xdc\x30\x7c\x75\x8f\x02\x06\xc1\x7c\x1c\x97\x0f\x3e\xe3\xb4\x4a\x88\xba\x12\x9f\xb2\x9f\x60\x63\xb5\x5e\xce\x2e\xa0\x06\x72\xcd\xa8\xd6\x92\x6e\x23\x93\x4f\xaa\x96\xbc\xd0\xba\xa4\x2e\x3f\xd3\xaa\x96\xe3\x25\x46\x79\xfd\x97\xda\x3c\xec\x6a\x65\xc8\x54\xee\xf3\x6c\x9c\x08\x92\xf7\xd3\x42\x72\x7b\x19\x95\x31\x0f\x0d\x8b\x03\x2b\x49\x18\xd8\x0c\xd1\xc5\x54\xb0\xeb\x45\x73\x9d\xf9\x6f\x44\x9a\xbb\x35\xe2\x92\x82\xc5\xe5\x6a\x3e\x35\x5b\x2b\x58\xb0\x8d\x19\xb2\xc4\x26\xeb\xf6\xb7\xe5\xc1\x33\x18\xae\xe7\xf2\x41\x6f\x87\xfc\x0e\x65\x4a\x8b\xd5\x3e\x7c\x8a\xe7\x3f\x25\xa3\x40\xd7\xf4\x29\x82\x9d\x9a\x2a\x2d\x95\x7f\x4c\xfd\xf0\xd7\xc1\x6c\x7e\xac\x3a\xc9\xc2\x62\x0a\x12\xf4\x9c\xd1\xcc\x64\xaa\xc8\xb2\x72\xae\x81\x2c\x81\x96\xc8\xbc\x7e\xa0\x55\x2e\xef\x55\xd9\xf4\xaf\x6a\xea\x8e\x20\x0a\xc0\x93\x1b\x64\x6c\xdb\x12\x70\x66\x87\xf2\xc4\x73\xf3\x7a\x59\x78\x59\xa4\x5a\x80\x3a\x76\xcc\x2b\xf2\x2d\x22\x8b\x2b\x4e\xc3\x23\xfb\xda\x31\x65\xa3\x89\x18\x6b\xf0\x0f\xfc\xa7\x9d\xb2\x60\xb0\x4b\xa0\x01\xd2\xd9\xa6\x60\xbc\x70\xd9\xc2\x91\xbc\xec\xf2\x87\xb5\x2f\xe7\x97\xcb\x61\x89\x40\x6d\x31\x3a\xfd\x9a\xae\x65\x87\x8b\xd1\x4b\x49\x5d\x78\x59\x28\x91\xd9\x5c\x08\x5c\x28\x91\xbd\x6f\xb1\x82\xfe\x29\x11\x1c\xc6\x2c\x02\xfd\x48\xa6\x6d\xe9\x60\xf1\x69\xc3\xa6\x10\x6c\xa7\x40\x99\x6e\xb6\x7c\xf0\x53\xa7\xcc\x9c\xd8\xc9\x5f\x13\x3e\xd7\x92\x78\xc3\xf0\xa5\xa7\xb5\xf3\x3e\x72\x2e\xb1\xc3\x7a\x13\x46\xaf\xd9\xae\x27\x55\x0c\x86\x6f\xbb\x7c\x48\xf7\x39\x29\x21\x3d\x7d\xe2\xa4\xf0\x37\xad\x16\x78\xf1\x49\x33\x67\x4e\xc9\xcd\x9c\x96\xcb\x07\xff\xef\x12\x19\x92\xef\x8d\x1a\xb6\xbb\x15\x06\xbc\xc0\xec\x87\xff\x7a\xd8\x85\x44\x3e\x0a\x93\x11\x9f\x2c\x35\xfa\xab\x8c\x63\x62\xf1\xe5\x4a\x6f\xea\xa5\x23\x4d\x02\xcf\x20\xa1\x0b\xc4\xd3\x6b\x5f\xd2\x04\x9a\x6a\x37\xb8\x86\x75\x83\x6b\xf1\x25\xdd\xf8\xd1\x6d\xea\x68\xcb\x42\xb6\x68\x62\x03\xfb\x50\x02\x8d\x84\x59\x8d\x72\x1f\xfd\x5f\x9c\x19\xd6\x54\x99\x79\x5e\xec\x7f\xf2\x57\x8f\xcf\x45\xff\x55\x5d\x71\x87\xff\xee\x4f\xeb\xfb\x36\xc9\x88\x59\x7f\x8f\x68\x9d\xe0\xa4\xf0\x26\x71\xd0\xde\xe1\x27\x63\xd5\xe2\xa2\x6f\x78\xbc\x64\xef\xaf\x00\xcb\x1d\xcb\xb7\x2b\xd8\xf3\xd4\xcd\xb0\x06\xc9\x60\xb8\x0c\xce\x25\xb1\x3d\xd3\xd9\x9d\x9c\x9a\xfe\x21\x1a\x96\x9f\xb6\x5b\x51\x6e\x55\xb6\x5d\x49\xa2\x06\x13\x4e\xf5\x77\x08\x12\x0e\x5f\x80\xe7\xf2\xc1\x88\x53\xb2\x60\x2a\xe2\x02\x23\x61\x52\xfa\xea\xe3\x32\xb5\x79\xd8\xc2\xe1\x09\x14\x93\xc4\x87\xdf\x50\x74\x87\xa8\x85\x18\x59\xc5\xaf\xc8\xeb\x67\xda\x94\x35\x4c\x11\x33\xde\x4a\x85\xff\xe6\x0b\xaf\x69\xc0\x21\xcb\xc2\x65\xc4\x6f\x8f\x20\x79\x9e\x7c\xa6\x5d\x61\x5c\x97\x10\xb6\x94\xf8\x50\x76\x14\xc7\x19\xca\xd7\xf3\xc1\xc9\xd1\x3a\xa9\x95\x78\xa2\xc8\xba\x30\x57\xdb\x62\x3a\x5c\x77\x43\xec\xfb\x53\x3f\x9d\xa1\xec\xb1\xa8\x45\x8a\xa4\x04\x7b\xaa\x7f\xd9\xd7\x1a\x9f\x59\x5c\x75\xac\x68\x44\x9a\xfa\x96\xb2\xdb\xd7\x07\x25\x07\x9a\x1a\x7c\x37\x69\x6b\x9c\xbd\x77\x9e\xfc\xd7\x93\xa6\xab\x92\xf7\xe9\x73\x8b\xdb\x95\x23\xea\x60\x66\xf8\x91\x97\x4d\x6f\x1a\x69\x4a\x84\xbe\xeb\x47\xa2\x04\xa9\x8a\xa9\x50\x48\x51\xd5\xa1\x09\x20\x73\xa6\xdf\x15\x71\x18\x84\x95\x72\xd7\x32\x79\x15\x62\x57\x4f\xe0\x55\x2e\xe3\x9d\x83\x83\x40\x24\x3e\xd5\x51\xd4\x97\x27\xd4\x10\x5a\x41\xe9\xaf\x9d\x96\xa7\x82\x11\x55\xd3\x23\x55\x1a\x33\x38\x31\x9e\x03\x38\x5e\x30\xfb\x05\x55\x61\x44\x62\xed\xa0\xde\x98\x5f\x1c\xa2\x24\x5d\x1a\xd6\x43\x90\x8c\xcf\x2f\x90\x43\x51\xa2\x18\x9c\xfe\xf0\x81\x41\xd2\x04\x2e\x1e\x6c\xba\x2f\xb6\xeb\x8f\xbf\x18\x71\x22\x52\xef\x3d\x14\x37\xa9\xdd\xcd\x34\xf3\xd4\x0f\x75\xa5\x6c\x68\xa9\x04\x85\xe8\x9e\xb1\xfc\x2c\xdc\x46\x99\x10\x70\xe3\x21\x6c\xd8\xfc\x41\xca\xad\xa2\x94\x5b\xc1\xee\xbb\x31\x59\x04\x78\x0c\x63\x4d\x4c\x2c\xbb\x7e\x96\x36\x06\x77\xa4\x66\xcb\x87\x16\xdd\x1e\x9c\x3d\xad\x81\x86\xb1\xeb\x09\xdb\x6f\xbe\xbc\xfa\x9a\xd6\x57\x78\x94\x4b\x99\x70\x2b\xcf\x3d\x6a\xea\xe2\x20\x2b\xb8\xf1\xe3\x86\xf1\x2f\x72\x77\x58\x73\x2a\xf3\xdd\xcc\xaf\xcc\x44\x94\x8e\x58\xc8\xf9\x60\xec\xd3\x32\x2a\x49\x2a\x89\x68\x19\x82\x17\x8f\x8b\x7d\x1f\xac\x0b\xf8\x5d\x34\xcf\x2a\x83\xc4\x58\x07\x14\xf2\xd0\x53\x5a\x05\x68\x35\xaa\x8e\x29\xa6\x88\x1f\x7c\xf8\xfd\x5a\x7c\x73\xa9\xcf\x8c\xbe\x01\x8f\xe9\x9f\xaf\xd5\x84\x79\xfc\x82\xeb\xc1\xb8\x96\x0f\x3c\x3f\x7f\xb1\x09\x34\xcd\xbd\x4b\xf9\x0b\x1d\xbd\x62\x90\xaa\xe9\xc0\x69\x9e\x99\x27\x66\xa8\x72\x7c\x02\x14\x90\xb9\xeb\x74\x72\xb7\x54\x80\x17\xcd\x01\x39\x3a\x06\x61\xc3\xcb\x83\xd4\x80\x48\xe0\x11\x66\x5e\x50\x9c\x1f\x14\xb0\xda\xac\x4b\x06\x46\x35\x1d\x76\x45\x6d\xb1\x5e\x63\x9b\xf8\x36\x46\x6e\x34\xd8\x3f\x3f\x6c\x48\x7c\x1b\x3a\x94\xa2\xfb\xeb\x8f\x8d\x56\x5f\x9e\x81\xb9\xe1\x9d\xde\x5d\xd5\x4e\x0e\x93\x97\xa6\x59\xb6\xed\xed\xa5\x03\x78\x5f\xb6\xe8\x2e\xf1\x76\xdf\xd3\xc6\x23\x07\xef\x35\xc2\x4f\xf0\xc0\xc4\x7e\x3c\x1b\xe6\xf2\x41\x4e\xcc\xf1\xbb\x78\x85\x18\x34\xb6\x0e\x54\x92\xbc\x1f\x7e\x73\x6b\x8f\xd6\xb4\x08\x4f\x79\x31\x8b\xda\x67\x8f\xd4\x32\x3d\xe5\xb0\xf8\x18\xf8\x9b\xbe\xe9\xa5\x56\x25\x5c\xce\xc8\x39\x22\x8d\x64\x09\x57\x7d\xcd\x2d\xc4\x75\xd7\x30\xc3\x6e\xa7\x49\x37\x3b\x7d\x70\x85\xa6\x61\xc1\xd5\x2d\xc5\x0d\x1a\x7b\x54\xab\xd5\xfd\x55\x66\x25\x01\x19\xea\xcd\x7c\x75\xab\x46\xaa\x84\x41\xbc\x1b\x11\x1e\x4e\xec\x95\x91\x6e\xd2\x8c\x5c\x89\x52\x80\x69\x1e\x38\x3a\x44\x9d\xdd\xf8\xd5\x02\x41\x61\xf1\x7d\x5a\x93\x80\xc0\xf5\x3e\xce\x76\xd0\x3d\xb7\x45\x7d\x8e\xbc\xda\xf8\xe7\x2b\xb1\x45\x45\x19\xe3\x84\x65\xe2\xe0\x53\x0a\xcd\xb7\x44\x81\xe6\x9b\x5e\xb8\x78\x80\x5a\xe6\xe6\xf2\xc1\xb5\x27\xb5\x3a\xa7\x54\x82\x8a\x56\xdc\x88\xb7\x6a\x2a\xf5\x55\x40\xb8\xbf\xbd\x49\xc1\xaa\x85\x11\x4a\x6d\xa1\x8b\x17\xf9\x6d\x71\x30\x2b\xc5\x88\xc1\x6c\x7d\xde\xd5\x6a\x35\x4e\xbc\x66\xec\x44\xfa\x95\x43\xea\xa0\x44\x68\xf8\x64\xf2\x4f\xb6\xaa\xbf\x8c\x01\xbd\x3a\xfc\x14\xf7\x5b\xf1\x2c\xb0\x01\x83\x96\x81\x2d\x1a\xa4\xd2\xf3\x8b\x84\x0a\x54\xc5\xe9\x63\xc9\xc9\x40\xc9\xb7\x78\x9e\x0c\xfa\x8d\xd0\x98\x5c\x94\x9b\x5b\x42\x29\xb3\x43\x71\x52\x9b\x3e\x95\x57\xd3\xc1\x23\xd9\x64\x2b\x69\xd0\xaa\x8b\x38\xba\xbe\x49\xf4\x50\x11\x3e\x71\x4d\x54\x87\x87\x7a\xd5\xca\x16\x11\x6e\x5d\x23\x86\x45\xbf\x47\x23\xea\x96\x50\x15\x7c\x8c\xf8\x99\xca\x78\xfd\xae\x54\xaa\x80\x9a\x42\x8e\xfb\x86\x26\x0f\x08\x62\xc4\xfc\x26\x7d\xf5\x09\x0d\x84\x5a\xc3\xac\x51\xa0\xc5\x86\x08\x87\xdd\xc7\x94\xb7\xcb\xfd\xa6\x83\x71\x27\x5a\x14\xb6\x4e\xb4\xd3\x38\xae\x21\xa8\xc1\x47\xde\xe5\x53\x4a\x90\xd6\xf9\x52\x41\xaa\x91\x14\x69\x1f\xb3\xd7\x9f\xee\x1a\xae\x80\x9e\x41\xae\x17\x66\x39\x02\xcd\x95\xfd\xe8\x31\xb5\x12\x0f\x8b\x58\x81\x44\xee\x92\xf2\x36\xae\x83\x9a\xa1\x1f\xb3\xe3\x2b\x60\x42\xce\x97\x57\x60\xf3\x33\x52\x91\x16\x68\x5c\x51\x9a\x5d\x74\x9f\xa6\xbc\x81\x99\x4b\x62\x5f\xa2\x9b\xd6\x6b\x39\x14\xfc\xec\x1d\x20\xb4\xa7\xea\x97\xf1\x72\x7a\x89\x89\xfc\xb2\xeb\x17\x90\x82\x21\x48\x15\xb7\xe8\x43\x44\x8f\x13\x07\x38\xac\xf7\xf5\xf3\x2d\x09\x2e\x03\x7c\xbd\xc3\xdb\x35\x19\x44\x90\xa4\xe2\xee\xa3\x72\xb2\xf8\xe3\xa5\xfc\xd7\xce\xf1\x2b\x4d\x0a\xa6\x99\xb5\x67\x9a\x26\x28\x96\x25\x0a\x32\x67\xa1\xba\x16\x14\xd2\xb4\xd7\xec\x8c\x1f\x4c\x8d\xa8\x43\xdc\xbd\x87\x86\x2b\x57\xd0\x35\x18\x29\xa8\x33\x9e\xb4\xd5\x31\x52\x41\x77\xd5\xb0\x1d\x0d\xc9\xe4\x5f\xb9\xec\xfc\x55\xb2\xf8\xd0\xf7\x3f\xd7\x3d\xa3\x3b\x9d\x20\xa3\x22\x60\xf6\x6f\x97\x14\x64\x7b\xc4\x85\x3d\xae\x05\x5a\xbb\x44\x99\x11\x5b\xf9\xfd\xdb\x2b\x3a\x88\x9a\xd5\x70\x43\x90\x30\xe7\x69\x2e\x38\x20\xe5\x1c\x23\x62\xd6\x6b\x44\xa5\x06\x16\xf7\x37\x8a\xf1\x1f\x62\x9a\x0b\x34\x97\xde\x83\x35\xcd\x5c\xc5\x14\xc3\x6a\x58\x2a\x9f\xad\x7b\x53\x24\x99\x8c\xca\xa2\x80\xc8\x8e\x58\xa3\xb0\xf3\x41\x39\x52\x38\x4d\x0f\x7b\x98\xff\x65\x10\x6b\xf1\xf9\x1e\x77\x97\xca\x81\x40\xb6\x2f\x78\xc7\x47\xfa\xc9\xa9\x8d\x4b\x4b\x90\x50\x66\xaf\x57\xb7\xef\x8c\x11\xce\x92\xfa\xed\x41\xce\xe1\x9a\x8d\xec\x4a\x5f\xb4\xf6\x2b\x76\xe9\x76\x58\xc4\xae\x44\xf2\xd8\xa9\xa3\x96\x0e\xdf\x14\x66\x86\x42\x67\x66\xd9\x0a\xfd\xb0\x51\xd6\xe0\xaf\x30\x53\xdf\x18\x0f\xfb\xa5\xf9\x54\xff\x1b\xf9\x9c\xc0\xe2\x50\x27\xf8\x1d\x4b\xfb\xc7\x9b\xf1\xa9\xb9\x7c\x50\x58\x99\x7c\xcd\x60\x9d\x13\x6b\xef\xa4\x27\xb6\xc5\x18\xc3\xb0\x7c\xf8\xc2\x02\xbd\xe5\x85\xda\x3b\x46\x2b\x67\x7e\x75\x5c\x4e\x6d\x78\xad\xf5\x0d\x55\x23\xc3\x62\x18\x15\xf9\x54\xaf\x30\x45\x33\xc9\x21\x36\x8e\xb2\xf8\xfe\xd1\xea\xc8\x84\x55\x1a\xb9\x7c\xf0\x9d\xb1\xb3\x5c\x13\x39\x38\x86\x7b\xdc\x58\xf2\x6d\x48\x72\xa3\xe0\xcf\x47\x21\x6f\x54\x67\xcf\x8c\x42\x11\x77\x16\xa7\xdc\x3c\x01\x1e\x80\x6c\x4f\x9e\x5c\xdd\xaa\xb4\xcc\x38\xac\x26\x39\x62\xe6\x93\xef\xf2\xfa\xbb\x84\x2c\x97\x94\xe2\xce\x31\x58\xed\x25\x63\x83\x6f\x11\x93\x21\xc3\x4c\x22\x97\x72\x0f\xc9\x1c\xc3\x88\x0b\xdb\x82\xda\xcd\xfa\xb8\x0c\x10\xdd\xd1\x5b\x4e\x93\x76\x55\x3d\x15\x46\xe1\xb1\x13\xe6\x4e\x45\xae\x0e\xdb\x98\x51\xd0\x20\x49\x17\xb7\x28\xb3\x82\x55\x02\x56\x3f\x67\x18\xdf\x8a\x2f\x44\xab\x88\x5c\xca\x06\xf3\xf6\xaa\x9a\xbd\x76\xb9\xce\x88\xc7\x0d\x33\xba\xed\x98\x5a\x5b\xc1\x89\xc2\xe1\x77\xe7\xa4\x58\x1f\x56\x4d\x6e\xe8\x1a\x0e\x55\x5f\x42\xa1\x63\xeb\xff\x2c\x3f\x0d\x4b\x29\x57\x23\x18\xd4\x25\x2c\xe1\x6e\x98\x01\x1f\xe9\x8a\x7d\xba\xd2\x46\x4c\xa4\x4d\xcf\xde\x91\xdc\x7f\x4e\x9a\x29\x42\xf3\xd8\x0b\x93\xea\xcd\x48\x31\xbe\x78\x02\x04\x56\x9f\xfc\xaa\x71\x83\x47\xdb\xaa\xd8\x4d\x99\x56\x31\xd3\x8d\x56\x7a\xd3\xff\x58\xae\xc9\xdf\x20\xdd\xbc\x33\xfd\xd7\xb6\x66\x97\xf2\xd8\xc9\xc2\xc9\xe5\x83\x8f\x32\x45\x11\x93\x14\x3d\x1a\x96\x12\xc1\x4d\xeb\x05\xee\xb0\x61\xa3\x2a\x31\x60\x12\xda\x38\x2d\x24\x0f\x18\x2d\x44\x07\xe9\xc0\x05\x28\xca\x2d\x6c\xe7\x40\x1d\x23\xb5\x75\xbf\x6c\x51\xb9\xb5\x42\xf8\x14\xfe\x67\xdd\x60\x15\x92\x29\xe2\x57\xfa\x77\x0b\xe2\x4a\xab\x40\xc2\xfc\xf1\xb1\xad\xad\x49\x81\x8a\xe8\x55\x6d\xbd\x18\xe7\x6a\x86\x9b\xb9\x39\xef\xdd\xae\x8c\x33\x7d\x4f\x01\x80\xa5\xd6\x2e\xd4\x50\xa7\x0c\xf3\xea\x82\x97\x6f\xe8\x02\xcf\x7f\x77\xcf\x5f\xd0\xa4\xa0\x90\xfe\xe9\xac\x61\x4a\x19\x63\x23\xc3\xc4\x55\x25\x24\xff\xa9\x47\x26\x2d\xc4\xe9\xf6\x5a\x5a\xba\x66\x9f\xc6\xbc\x62\xd4\x2f\x58\x18\x1c\x45\x23\x37\xa5\xcc\x7f\x8d\x1b\xab\x15\x0d\xd8\xbb\xbe\x2f\x94\x43\x6f\xa6\xb1\x4b\x42\x48\xab\x7e\xf8\xf9\xaf\x78\x43\xe1\x90\x0a\xaf\xe4\xf0\x3d\xf4\x8e\x4a\x16\xff\x25\x93\xf4\x55\x47\xa6\x3e\x78\x56\xd1\x92\x8e\x38\xbd\x9a\xf3\x74\xec\x88\x2c\x14\x5c\x6a\xd9\x26\xe7\xe7\xb0\xc8\xf3\x80\x59\x1e\xa6\x9f\x5b\x2e\xc8\x33\x25\x94\x71\x72\xf9\xe0\x66\xcd\x93\xaa\xcc\x50\x44\xf1\x0d\x1f\xc3\xc5\x76\xb5\x10\x75\x7c\x2f\x3a\x63\xdf\xd0\x84\x49\x85\xc0\xa3\xc0\x41\xac\x1f\x17\xcd\xe7\x2d\x50\x93\xf9\xc1\x82\xc1\x0a\xcb\x3b\xfe\xdd\x0b\x24\x9b\x9f\xaa\x92\xce\xdf\x7c\x45\x1f\x7c\x18\xb4\x8a\x63\x13\xed\x60\xc1\x21\x1e\x23\x26\x4d\xea\x0a\x3f\xe4\xba\xad\xc2\xed\xd6\x0e\xff\x1a\x9c\xed\xa1\x9b\xf8\x07\xa8\xd8\x1c\xeb\x9f\x9e\xb8\x54\x77\xef\xb5\x3d\x06\x00\x9b\x46\xec\xd5\xb3\x3c\xab\x15\x18\x14\xb1\x78\xe1\xbf\x67\xca\x38\xbd\x8a\x04\x4d\x32\xdb\xc0\x8a\x97\x8b\xd8\x59\xf7\x68\x90\x1c\xc4\xd9\x5e\x10\x95\xb6\x6c\x1a\xa2\x6c\xb2\xc0\x61\x1f\xfe\xcd\xbc\xe7\xc6\x6a\x35\x4a\x05\x79\x98\x11\xbb\xe0\xb3\xb2\x40\x71\x09\x60\x4b\xef\xea\xe6\xee\xc1\x22\x48\x38\xcc\x65\x2e\x39\xa5\x81\x48\x30\xf2\x7c\x16\x2d\x5d\x76\xbf\xa6\xbb\x24\x50\xe6\x59\xe0\x6f\x1e\xac\x7d\x3b\x19\x31\x51\x51\xc8\x0f\xdf\xf9\x8a\x2e\x7e\x05\xe6\xc7\xf1\x96\x3e\xfd\xd5\x37\x64\x3d\xe7\x0a\xce\xc4\xee\x47\x95\x6d\x11\xa8\x82\xc2\x60\xea\x96\x37\x14\xd0\x2b\x71\xb9\x7b\x27\x3f\xe4\x7b\x87\xf1\x76\xf2\xc3\xb7\x2e\xbe\x75\xf1\xad\xa2\xa4\x78\xbb\x20\x0c\xd8\x4c\x46\x4a\x7c\xdd\xf3\xc8\x11\xa1\xd0\x41\xca\x7c\x12\x9f\x6a\x11\x63\x8a\x49\x33\x67\x74\xf2\x4e\xa2\x7e\x9a\xff\x2c\x18\x3d\x43\x3e\xcc\xe5\x03\x7b\x5d\x12\x43\x0d\x0e\xce\xe6\x84\x26\xe4\x43\x76\x7e\xba\x35\xfa\x80\x80\x10\x2c\x35\x44\x35\x73\xf1\xa8\xc4\xf9\x4d\x9d\x19\x7e\x9f\xaf\x74\x69\xc1\x0c\xd9\x45\x02\x5a\xb5\x5c\x3a\xb4\x3b\xf9\x5e\xc5\xda\x70\x02\x69\xa6\x1e\xfd\x71\xae\x36\x7f\xf4\x59\xa5\x11\xcd\xf3\x5a\x37\xaa\x42\x75\xd8\x15\xb3\xb9\x11\x9a\x46\x27\x75\x88\x1d\xdb\x05\x06\x0f\xc8\x7b\xd7\x8d\x8c\x8a\xcb\x9b\xc8\x11\x9b\x39\xc4\xfc\x56\xcb\x22\x2e\x55\xaa\x8b\xf4\xf7\x34\xbd\x3c\x17\x1b\x0c\x7b\x88\xc5\x97\x24\xf3\xc2\x98\x2b\x64\xd0\xaf\x87\x0f\xba\x74\x5c\xb3\xf9\xa5\xac\x28\xa1\xbc\xfd\xba\xaf\x88\x3f\xc2\x54\xb8\x9b\x64\xd3\x30\xad\x5a\x29\xfa\x46\x1c\x72\xd2\xdb\x17\x45\x03\x68\xde\xa0\x8d\xeb\xd7\xaa\x41\x4d\x04\x56\x6a\x9d\x2d\x58\xf7\x06\xc3\x98\x9b\x5c\x9f\x13\xca\x3b\x0b\x88\x1b\xbe\x57\xbf\x22\xc5\xa8\x7e\xbd\x49\x96\x89\x5d\x53\xc3\xc6\xfe\xf0\x5e\x5d\xdd\xb4\xd8\xc1\x05\x19\xee\x5a\xd4\x9b\x35\x6c\xfe\x31\xea\x08\x04\x93\x52\x35\xb3\x4f\x17\xa0\x30\x5b\xff\xe9\x16\xad\xa9\xab\x13\x6f\x15\x66\x61\x9d\xaf\xc8\x8c\xcc\x7c\x23\x59\xa4\xc5\xa6\xcc\x9c\xc1\x7e\xa9\xa6\xf0\xc0\x1d\xb0\x27\x46\x8b\xb5\xdf\x04\x4a\x32\x05\x5f\x0e\x6c\x01\x52\xa9\x37\xf3\x8c\x02\xcb\x45\x7e\x91\xf0\x91\x65\x6a\xf9\x69\xce\xbc\x5a\x4a\x6c\x5c\x66\x48\x55\x93\xb8\x73\x98\xfc\x61\x9e\xc9\xa8\x5f\x36\x05\x3e\xee\x13\xfd\x64\xe6\xa9\x20\x06\x72\xa6\xa9\x75\x27\x65\x9e\xf7\x9b\x9d\xad\xb6\x8a\xc1\xf8\x22\xec\x38\x98\x29\xf3\xed\xe5\x97\xc5\x47\x65\xca\xe4\x30\x6e\x7f\x61\xaf\x36\xfa\xa5\xc8\x33\x45\x7c\x3d\xb1\x43\x43\xbc\x20\x12\xd1\x31\xd3\x17\xb8\xec\x62\xee\x5f\x19\x71\x9b\xf0\x43\xa9\x57\x03\x4d\x8a\xc5\x71\x10\xe3\xda\x58\xb2\x2c\xb8\xe9\x3e\xb9\x79\xf0\x4c\x5a\x55\xf0\xe8\xc1\x82\xfe\x23\xd4\xce\x0a\x97\x7c\xcb\x6a\x74\x28\xf5\xda\xd9\xf3\xd2\xe3\x07\x2e\x1d\x9a\xa7\x71\x7a\x08\x18\x54\x8a\xed\xf4\x88\x7d\x2a\x21\x0f\x35\x68\x09\x04\x7d\x32\x2e\xef\x3f\x72\x8b\x29\x0d\xdb\x69\xcb\x53\x3e\xdf\xf1\x15\xd7\xf1\x87\xc8\x4b\xd1\x5b\xe3\x52\xb4\xb9\x0c\xed\xaf\x22\x2f\x90\xaf\xee\xc5\x7e\xb6\xac\x5d\x89\xb8\x65\x64\x13\x37\x92\xe5\x0c\x1e\x38\x3f\xc8\x89\x9c\x3c\x25\x04\x66\x97\xb2\xbc\x33\xa9\xeb\x98\xbc\x54\xc9\x0c\xeb\x8e\x6b\xc8\xc9\x90\x64\xff\xb6\x34\x4e\xd6\x96\xe2\x1a\xd4\x9b\x6d\x79\xab\x49\x9b\xd7\x89\x66\x20\x3b\x34\xd1\x08\x01\x73\x81\x5c\xd3\x76\x58\x6f\x4c\x31\xc3\x1d\xa2\xfe\xca\x96\x4a\x0a\x9b\x87\x29\x83\xee\xcc\xfa\xd1\x97\x8b\x48\x3f\x19\x2c\x18\xd2\x63\x55\x64\x88\x81\xf9\x32\x3d\xf5\xd0\xba\x24\xea\x92\xd6\xed\x0e\x4e\x86\x58\xb1\x45\xf5\xe3\x57\x88\x55\x07\x07\xab\xcc\x94\x32\xa7\x39\xdf\xa8\x84\xd0\x82\xef\x79\x54\x18\x21\x76\xc6\x77\xa2\x44\x99\x5e\x62\xee\x7a\x5a\x1b\x0d\x59\x11\x14\x07\xd2\xd7\xfb\x9f\xd4\xa5\xe6\x3c\x28\xbf\x45\xf9\x7b\xe0\x5d\x9d\x9e\x0b\x0c\x08\x41\x19\xcb\xde\xb3\xab\x5d\xaf\x44\xdc\xa8\x74\x4e\x91\x97\x85\xb4\x5e\xd1\xb7\x38\x51\xbb\x37\x93\x5d\xa7\xe0\x20\x54\x19\xce\x89\xab\x93\xad\x8a\x81\x19\xae\x82\x3f\x70\xbc\xc0\xfe\x80\xe6\x6f\x83\x7b\x68\xd1\x8f\x54\xf5\x6e\x78\x4e\x76\x06\x98\x28\xef\xe8\xcf\xeb\x35\x2f\x03\x2f\x57\x40\xb1\xd1\xea\x4b\x17\x06\xa9\xc3\xbf\x32\x17\x40\x3c\x20\x6c\xb8\xf3\xcc\xc2\x08\xee\x2e\x34\xa8\x63\xb8\xef\x7e\x6e\x21\x05\x9e\x4e\xe2\x31\x7f\xc9\x54\xe0\xe1\xc8\x25\x1c\x60\x7f\xd7\x14\x7d\xa3\x10\xde\x84\x84\xae\xc2\xba\xf3\xc9\xc3\x31\xa9\xb3\x53\x3c\xbf\x4f\x24\xa5\x9b\x3d\x86\x84\xb4\xd6\x5d\x45\x79\xa9\xcb\xc8\x2e\x73\x77\xb8\xe0\x9a\x3d\xbc\x14\x2d\x81\xb6\x53\xfa\x2b\x8f\x2a\x18\x7b\x6a\x59\xb4\xde\x94\xe4\x1f\x79\x45\xbb\x2f\xc4\x36\xb8\xc3\x4b\x70\xc3\x38\x25\x2e\x93\x2a\x75\x4d\x6c\x83\xe4\x63\x6f\xe6\x8f\xdb\x15\xa1\x1c\xcc\x98\xaa\x57\x36\x7d\xc3\x35\x4d\xa9\x03\x17\x7d\xad\xe9\xfc\xfe\x6e\x79\x0a\x80\x4b\x14\xeb\x5f\x09\xf5\x20\x37\x4a\x75\x9f\xb8\x45\xf3\xe8\xf4\xbd\x06\x07\xaf\x7f\x7f\x73\x93\x2c\xa3\x4c\xf5\xd9\xb9\xaf\x68\x6a\x21\x60\xdf\x18\xcb\x6e\x38\xaf\x6a\x88\x18\x54\xc1\xae\x80\xae\xed\xb9\xac\x09\xf7\x6c\x4a\x17\xec\xe9\xfd\xb5\x92\xd5\xa0\x2c\x56\x4a\xbf\xd7\x4b\x30\x99\x2c\xca\xb8\xfe\x5a\x98\x35\xd7\x48\x3c\x2a\x36\xfc\xe8\x0b\x0f\xb2\xb4\x82\x05\x5b\x61\xe3\x50\xe4\x70\xfa\x17\xf6\x0e\x91\x6f\x9f\x14\xa2\xc9\x7b\xba\x78\x30\x32\x28\x80\xe7\x9b\xcb\x07\x7e\xa1\x55\xc5\xc0\x81\x3f\x3f\x04\xfa\xff\x56\x8c\x3d\x0d\x13\x23\x87\xcb\x29\xfd\xfd\xdd\x36\x95\x3c\x74\xf7\xa2\x48\x31\xbd\x37\xbb\x50\x13\xec\x00\xfa\xa8\x00\xf1\x67\xaf\xdd\xc2\x5d\xad\x6e\x2d\xd6\x90\xed\xa1\x3e\x5c\xad\x5a\x2f\x2a\xbc\x4f\xbe\x05\x15\xa0\xa2\xd4\x9f\xb7\xf4\x61\xf2\xce\x2b\xad\xab\x0e\x6b\xf3\x56\xc3\xa4\x8a\xba\xd3\x16\x41\x1a\x63\x08\xd2\x61\xbe\x37\x5d\xd9\x34\x50\x19\xfb\xf3\x09\xe6\xa7\x47\x2a\xc7\x8a\x18\x95\xc8\x8d\x30\xf3\xe6\xc3\x6d\xd2\x02\xd6\x57\xd0\xa9\xbd\x99\x73\x5b\xf4\x79\x55\x31\x86\x82\xc3\x41\x3a\xae\x47\x38\x8f\xd1\x68\x87\xff\x40\x8b\x2c\xe4\xa6\x4e\xeb\xca\xe5\x83\xe7\x5e\x52\x6a\x23\xcc\xa0\xa5\x12\x90\xaa\x11\xfb\xfa\x8b\x4f\x5b\x07\x87\x83\x23\x45\x6d\xdf\x07\xa5\x94\xc3\x88\x11\x47\xe7\xcc\xa6\x05\x09\x2e\x4e\x89\xb8\x06\xf2\x28\x24\x83\xb7\xb6\xaa\x29\xc2\xf0\x39\x38\xb5\xba\x73\xa8\x02\xa7\xc7\x45\x52\x20\x16\xf1\x1a\xd0\x38\xe5\x37\xcb\x82\x0a\xbb\x8c\x93\xea\x33\x4b\x06\xab\xbf\xc1\xe3\x9a\x94\x5f\x6c\x8d\xf1\x0c\x1e\x8e\xc1\xd3\x17\x5b\x78\xd1\x30\x87\x56\x89\x4d\xee\xf7\x55\x42\xd6\xe5\x1b\x22\xbd\x4a\x07\x70\xb7\xd9\xd5\x87\x44\x49\x6c\x23\xc1\x79\x4e\x67\x47\xe9\xe9\x19\x63\x47\x64\x92\x8e\x9d\xc3\x92\x1f\xdc\x4b\x0c\xf7\x5f\x51\xac\x5b\x57\x61\x06\x98\xba\x2e\x8d\x61\xe7\x7a\x2c\x2c\x62\x45\x9b\xf8\xbe\x57\x04\x40\x9f\x72\x53\x8f\xcf\x68\x3a\xde\xac\x81\x74\x53\x9a\x5f\x8e\xe5\x09\x6b\x6a\xee\x2e\xcc\xb8\x50\x44\xf6\xe3\x87\x46\x29\xad\x8e\x10\xf8\xd5\x61\xe3\xf7\xef\x17\xdf\x15\x93\x55\x20\x1f\x1c\x3c\x64\x25\x5f\x2e\x71\x11\x32\xb4\x28\xb8\xbf\x5d\xfc\x2b\x27\x2c\x37\xdc\x5c\x3e\xf8\xcd\x28\x65\x05\x46\x09\x88\x69\xa4\xdf\xd4\x32\x34\x97\x7a\x89\x3d\x0a\xaf\x7b\x80\xc7\x88\xb9\x8c\xba\x4a\x15\x97\x5a\x71\x44\x90\xc8\x7d\x56\x10\x5d\x4a\xfb\x1b\x3c\xad\xdd\xef\x83\xca\x76\x78\x3d\x60\x9f\x79\x56\x91\x2f\xaf\x61\x56\x66\x18\x37\x97\xd6\xaf\x3f\xcd\x7f\xde\x6c\x40\x47\x42\xf0\x5a\xd6\x22\x61\x63\xb8\xca\x61\xb0\xb3\x9d\x01\x51\x5b\x58\x12\x7a\x4e\xdb\xa4\xbe\x64\x8d\x40\x81\xed\x69\xad\x5d\x01\x33\xbc\x8a\xd6\xdc\x4a\xa4\x01\xec\x74\xb6\x69\x65\x07\xea\xe1\x11\x28\xb5\x65\xbc\xe6\x80\x4b\x81\x4a\xc4\x35\xf7\x53\x2b\x8f\x2a\x7a\x21\xbe\x61\x60\x97\x77\xe0\x9f\x2b\x26\x47\x26\x06\xf1\x88\x41\x99\x03\xeb\x56\x7d\x8a\x76\xc5\x03\x71\xd8\x8d\x99\x21\xb9\x7c\xf0\xeb\x0b\xc3\xb5\xc4\x60\x73\xb9\x4b\x51\x82\x7c\xe2\x85\x48\x7a\x0d\x09\x14\xe7\x3d\xb7\x68\xb0\xb3\x30\x1a\x16\x39\x11\xfc\x84\x6e\xd6\x57\xf6\x6d\xa1\x21\xfa\xbd\x76\x7e\x74\xc5\x65\x7c\x67\x73\xf2\xaf\x12\x46\x6d\x62\x88\x5f\x3a\x47\x41\x78\x10\xbb\x1b\x73\x61\xa6\x11\x27\x9a\x44\x9f\xcb\x26\x97\x62\xcf\x5c\x7d\x4a\x31\x36\xc3\xcc\xc0\x45\x3e\x84\x4d\x3b\xf3\x84\x7a\x8d\x34\x98\x4b\xdd\xbe\xf3\xca\x24\x57\x1e\x54\xb3\xa0\xb3\x38\x24\xff\x0b\xa0\xc6\x22\x44\x5d\xc6\xbf\x4c\xe3\x4e\x23\x09\xe9\x9f\x76\x49\xb2\x3e\x20\x76\x91\xda\x18\x44\x5e\x25\xab\x3d\x7d\xec\x21\xf9\x11\x8b\xa8\x6a\xc7\x80\x36\x7f\x0e\x7f\x32\x45\xec\x56\x00\x1c\x2d\x45\x1c\x8b\x20\x76\x97\x7e\x9b\x1b\x5d\xc5\x8f\xdb\x8b\xf6\xbc\x99\x5f\x8f\xd4\x4b\x59\x8b\xb2\x78\x42\x9f\x99\x3e\x4a\xc6\xf2\x49\x5d\x53\x41\x63\x47\xc3\xb8\x17\x2c\x6a\x28\x32\xfa\x1f\x0d\x34\x77\x55\xa9\x2b\xc2\x27\x2a\x70\x49\xa6\x4f\x93\x85\x21\x8a\xf5\xd4\x8e\x3e\xdc\xe4\x0f\xca\xa2\x05\x50\xfa\x1f\xaf\x09\xd1\x5e\x46\x4b\xd8\x75\xa9\xd2\xc8\xa6\xff\xfb\x9c\x0a\x5b\xf3\xc2\xc0\xe1\x45\xc8\x84\xcc\x8f\x5e\xe6\x27\xf0\x2e\x1c\x56\x8b\xc0\x1e\xfc\xf8\x66\x7e\xe7\x6f\x05\x75\xd3\xf8\x53\xd9\x07\xae\x8c\x88\x0f\x73\x96\x24\xe0\x79\x1f\x54\x14\xbd\xa7\xe4\xaa\xb8\x8c\x0a\x0d\x3e\x32\xfe\xd8\x36\x3e\xc5\xba\x0d\xf9\x06\x0a\x5f\x59\x18\xb2\xbe\xf6\x64\xd3\x82\xbe\x5b\x6c\xa6\x22\x59\x83\xf3\x7a\x86\x15\x1c\x54\xd1\x62\x5c\x53\x4a\xce\xf3\x68\xa9\xc4\x91\x1a\x51\xcb\x7d\xeb\xe3\x32\xf6\x37\xa8\x0f\xd5\xdf\xb0\xc5\x33\xfe\x77\xfb\xb0\xe8\x0b\xe6\xf2\xc1\xa0\x59\xca\x48\x5b\x68\xa0\x65\xfb\xef\xd0\xdc\x3f\x11\xa9\x23\x5b\xbc\xc7\xb0\x7e\x7b\x55\x08\x85\x33\xec\x31\x82\xc3\x94\x1e\x1c\x52\x94\x65\x8b\xb8\x44\x22\x18\x6a\x89\x4b\x4d\xe6\x16\xf8\x61\x23\xd9\xec\xe6\x97\x7d\x5f\x5b\x44\xdd\x14\xa0\xdf\xae\xc3\xfc\xd1\x16\x89\xcb\x7c\x27\xaa\x97\xae\x5a\x1d\x07\x94\x42\x01\xa2\xeb\x37\xb6\x6a\x21\x08\xa6\xad\xb1\xa8\x5e\xea\x81\x77\xa5\xac\x51\x11\x50\xd5\xd3\x17\x48\x5f\xc6\x1a\x4e\x60\x99\x2e\xed\x50\xdc\x08\x3b\xa7\x74\x4c\x03\x79\xa6\xa2\xa6\xe1\x08\xc3\x55\x59\x10\xa5\xad\xc8\x5b\xcf\x30\xf8\x70\x2d\x97\x0f\xba\x9e\x1d\xaa\x1c\x4a\x6e\x3e\x28\x7c\x8c\xba\x34\x98\x8f\xeb\x09\x6c\x2d\x1f\xb5\xfc\xec\xbe\xd1\xb6\xca\xae\x27\x80\x30\xd5\x9b\xab\x8f\xbc\xa0\x8f\xe9\xa0\xf0\x15\xc5\x7e\x6a\xd6\x56\x6d\x99\x8a\x2c\x2b\x22\x79\x7c\xf9\xe1\xfe\xd1\x8b\x76\xa1\x82\x6d\x6c\x6f\xd3\x5a\x32\x1b\x37\x40\xad\x6c\x91\x70\x23\xfe\x90\x90\xd4\x8c\x27\x13\x3d\xaf\xf1\x7c\xb0\x18\x79\x8a\xb6\x76\x6f\xfa\x13\x47\x06\x29\x74\x0d\xc6\x40\x4b\x30\x53\x5e\x1f\xaf\x13\xcd\x86\x32\xea\xca\x7c\x67\x47\xdc\xa2\xba\x9e\x32\xd3\x49\x7d\xe4\x55\x79\x8e\xaa\x7e\x6c\x22\x78\xef\x58\xdd\xcc\x96\xba\xc2\xce\xf5\x0b\x07\x04\x32\x90\xda\xc4\xa3\x42\x61\x3a\x7d\x6e\x3b\x37\xd9\x98\x8b\x58\xc5\xf4\xbd\x22\xb1\xa9\x02\x3e\xc9\x9c\x1e\xdf\x64\xd1\xe6\x62\xdb\x13\xea\x48\x9f\xd1\xb9\x6d\x8c\x56\xa9\xbc\xc6\xe9\xff\x8a\x67\x1d\x00\xb9\xff\xc3\xb2\xa1\xca\x28\xb4\xec\x5b\xa5\x78\xba\xb3\x63\x46\xfc\x00\x6c\xa4\xa8\xb1\xa4\x37\x1c\x90\x07\xae\x60\x61\x04\xd5\xc7\x6f\x1e\x50\x66\xaa\xcc\xf5\xc0\xb2\x17\xea\xe5\xf1\xc2\x13\x04\xb6\x4b\xfc\xa0\xcd\x3b\x97\x3c\x9d\x10\xe5\xab\x24\xa6\x16\x65\x2e\xdd\x35\x50\xbc\x0e\xcf\x30\xab\xa0\x81\x9b\x39\xfd\x0a\x7f\x7d\xb7\x99\xa8\xea\x84\x67\xcf\x24\x10\xf1\x57\x2b\x74\xeb\x32\x62\xc0\xeb\xec\x4d\xb5\x2f\xd6\xf6\x25\x05\xea\x7b\xa2\xba\x18\x3e\x2d\xb9\x34\x33\x89\x67\x98\x06\x15\x3c\x25\xf9\xa4\x7f\xb9\x35\xb9\xbb\xb0\xa9\xa0\x33\x8f\x7b\x4e\x15\xbd\x73\x5d\x85\xaa\x94\x6d\x61\xca\xf0\x88\x1a\x15\x8b\x87\xcf\x67\x1d\xbd\x1d\xb5\x63\x0b\x8e\xde\xf4\x5b\x8f\x69\xed\x09\x62\xb4\x28\xf0\x99\x99\x3d\x67\x35\xff\x7c\x78\x8c\x82\xdb\x4c\xdf\xe6\x83\xcc\xdb\x56\x85\xbd\x96\x6b\xd1\x1a\xaa\x90\xb8\x11\x9f\xb7\x4e\xa6\x19\x30\x16\xc1\x52\xed\x38\xbb\xf6\x74\xb2\x29\xef\x9a\x2a\x50\x6b\x99\xa7\x8f\xf2\x73\x39\xdb\x57\x9d\x8a\x3f\xd0\xa1\xfb\xa4\x70\x29\x4d\x4d\xab\xec\x48\x21\xbe\x1f\x88\x29\xe3\xf2\x7f\x51\xd0\x4b\xc8\xb3\xc0\x36\x2a\x7b\x93\x32\x6f\xb1\x90\x6d\x22\x30\x82\xdd\x75\xa8\x25\x8a\xa3\xdc\xf9\x13\xea\xdb\xfe\x43\xa2\x9f\xeb\xa8\xd3\xbb\xab\x07\xc7\xc1\xd2\xb7\x4b\xb9\x7c\x70\xd3\x61\x65\x45\x81\x2d\xe2\x72\x5b\x89\x87\x6e\xd4\x46\x64\xc4\x0d\x5b\x3b\xb1\xc4\x4a\xdf\x3c\x72\x74\x53\x19\x80\x8a\xd8\x72\x4c\x82\x26\x54\x63\x21\x08\xb6\x46\x7e\x8b\xeb\xc5\x4d\xf9\x91\x26\x23\x5f\x22\x96\x67\x72\x62\x49\x76\x98\x02\x9f\x22\x46\x85\x27\xf8\xce\x39\xc9\xf3\x5f\x47\x56\x42\x6d\x33\xf5\xe5\xb1\x57\x69\xb5\x17\xb1\x62\x65\xe7\xf4\xd4\x63\xfc\x0e\xe7\x0d\x40\x01\xd5\x07\xf3\xae\x9a\x1a\x86\xef\x00\xb4\xf1\x87\xcb\x93\x3f\xdf\xc2\x65\xf0\xd6\x8e\x37\x86\xcb\x8f\x6b\xc0\x3e\x3f\x6c\xf8\xa4\xfb\xde\x13\xe3\x9b\xa2\x48\xd8\x4f\xc7\xaa\xaf\x0b\x57\xea\x04\xdb\x86\x07\x91\x9c\x33\x64\xff\x3a\x7b\x48\xa2\x1b\x45\xb0\x90\x0c\xd8\x5e\x09\x1a\x99\x3a\x43\x21\x29\x04\x3b\xdf\x69\x57\xe6\x89\x1e\x01\xe9\x45\x8f\xb8\x55\xf0\xe7\x39\xa7\x09\x1f\xfb\x61\x8c\x36\x1a\x1d\x13\x56\xae\x84\x79\xc4\x9c\xe4\xfd\xc8\xd1\xba\x8c\x24\xaf\xdf\xa8\x8e\x66\x6b\x24\xaa\x88\xbf\xa7\x29\xee\x22\x84\xa2\x12\xf2\x95\xb3\xc9\x7b\xf1\xb1\x18\xf5\x62\x3f\xa3\x57\x49\x55\xd0\xb9\xa1\x11\xa1\x2e\x3b\x72\x36\x3f\xb9\x77\x86\x2d\xac\x5d\xe6\x98\x95\x8f\x75\xe9\x2e\x4e\x76\x25\xe6\xd7\x7c\xee\xdd\x36\xc9\x45\x70\xd5\x7c\xb5\x52\x51\x5a\x00\x19\x7c\x8e\x76\x1f\x54\x10\x97\x03\x4b\x5f\xd8\x7f\x2c\x4f\xba\x4a\x5c\x23\x22\xdd\x40\x6d\x22\x6e\x63\xd7\xb3\xa2\x39\x57\xfa\x4d\xe5\xf2\xb9\xa2\xbd\x0f\xfe\x72\x42\xaf\xa0\x58\x19\x7b\x38\xee\x54\x33\x6f\x8d\x96\x75\xdc\xa4\x99\x53\x61\x94\x3f\x47\xf8\x61\x16\x08\xa8\x68\x1a\xc8\xca\xe5\x83\xff\x39\xa6\x11\xff\x91\x1b\xc1\x20\xd3\x47\xce\x49\x07\x41\xc3\x24\x56\xb3\x76\xce\x89\x07\xe4\xaf\x41\xb9\x49\x20\xed\x7e\xff\xb8\x56\x8d\x1f\xcd\x5d\xf0\xbe\x77\xb3\x84\x25\x4f\xea\x80\xa2\xff\x8d\x25\x97\x47\xd1\xe2\x03\xb9\x7c\x70\xe0\xc6\x31\xda\xb7\x72\xfb\x86\x5e\x9c\x2c\x36\xe7\x4f\xe2\xc6\xb8\xbf\x6c\x8f\x62\x2c\x5c\x41\x7e\x89\x27\xa7\xec\x86\x33\x32\x2c\x4c\x9a\x38\x6d\x3a\x7c\xdc\xe7\xb6\x8e\xd6\xea\x9d\x02\x2a\x5b\x04\x79\x24\xa1\xe9\x3f\xf9\x05\x5d\x12\xad\x31\xa1\xce\x0f\xdc\xad\x8b\x78\xe9\x58\xa6\x76\x91\xf2\xd5\xd9\xf1\x57\x87\x28\x24\x8c\xba\x0b\xde\xd5\xf9\xa0\xca\xe2\xb9\xa4\xdf\xe1\x46\x6b\xfd\x93\xcb\xf4\x15\x20\x12\xd6\x5b\xd0\x43\x7e\x69\xa9\xa2\x27\x8a\x91\x85\x99\xcb\x11\xbb\xc1\x77\xb7\xf6\x13\xab\x9d\x7c\x90\x9a\x17\x77\x67\xb4\x18\x16\xcc\xc3\xd7\xb5\xab\xe9\x8f\xd8\x6a\x35\xd5\x59\x4c\x28\x0c\xd0\x6a\x81\x80\xd5\xd3\xf2\x17\xe3\xb4\x90\x98\x35\xa7\x56\xbc\x25\xc3\x75\x19\xdb\x40\x80\xcd\xf7\xa6\x2e\xbb\x51\x4e\x06\xa7\x75\x75\xcc\x80\x32\xf3\x46\x8d\x83\x4b\x5d\x5a\xa3\x7d\xca\xf8\x4e\x38\x30\x4e\x2f\x58\x23\xa5\xb4\xe6\x97\x5e\x58\xa1\x66\x8c\x3a\xe6\x8e\x13\xdf\x7b\x41\x15\xb0\x76\x79\xa4\xfa\xe1\xe1\xe4\x5d\xa6\x0e\xb6\x23\xba\x74\xfa\x8b\x53\xda\x44\xe9\x59\xb0\xfc\x02\x96\x55\x5b\x50\x5e\xa2\x86\x21\x8f\x54\x4c\x90\x96\xce\x6c\x3e\xaf\x4e\x06\x99\x43\xb9\x72\x03\x77\xcf\xd9\xcc\x7f\xda\x6c\x54\x20\x9e\x5b\x91\x1b\xb2\xc0\x7c\x42\x23\xc3\x9b\x7c\x78\xc2\x51\xad\x37\x9a\x4d\xbd\x5c\x91\xc4\x22\xba\xe1\x6f\x7d\xff\x36\xa5\xea\xeb\x31\x2c\xbf\x28\x35\x34\xbf\xac\xb8\xce\x5b\xd4\xe3\xb9\xf7\xdd\x7d\xea\x46\x0c\xec\xdd\xc2\x53\xef\xf5\xbb\x46\xcb\x63\x91\x06\x6a\xe4\x1d\x11\xa6\xcc\xf6\xa5\x4a\x5d\x8c\x8b\x04\x09\xaa\xe9\x75\xfd\x5a\xa5\xdd\xbb\x2a\x37\xf9\x30\x2f\xd4\x41\x72\xbf\x53\x7e\xeb\x19\x03\x78\x0f\x50\xa0\x3d\x42\xdb\xfd\x88\x24\x11\xd1\x1a\x66\x0e\x36\x2a\x4a\x61\xf0\x87\x01\x1a\x8e\xa1\xd0\x8d\x8d\x98\xf0\x7b\xfd\x31\x05\xd2\x59\x2d\xf8\xae\x09\xe1\xcf\xd7\xd0\x4b\x1e\x2d\x84\x2d\x52\x34\xc1\x7e\xfc\x84\x7c\x3a\x5d\x9d\x3c\x2c\xa5\xfe\xd2\x25\xf9\x0c\xe0\xb6\x93\x90\xd3\x5f\x3b\xab\x4d\x29\xb1\x0d\xea\xb3\x58\x32\xcd\xe8\x50\x01\xb8\xa0\x92\x18\x3e\x98\xe7\xf7\xc8\x3f\xf6\x1d\xee\x29\x96\xef\xcd\xfc\x1b\x78\xf3\x0b\x95\x83\x45\xea\xce\x75\xd2\x44\x29\x43\x64\x45\x5a\x1c\x19\xe3\xac\x44\x91\x59\xf5\x5c\x3e\xe8\x54\xb4\x35\x7d\xbb\x86\x89\x25\xf0\x79\x6b\xf4\x65\x08\xb2\x70\x24\xf6\x3f\xe6\x82\xd4\x9a\xef\xa6\xc4\x6e\xd2\x9a\x4f\x3f\xf5\xec\x20\x89\xa0\xb7\xa2\xb7\x3e\xcb\x89\x7f\x3b\x50\x76\x83\xbc\x2e\x25\x45\x59\x15\x17\xa3\x55\xce\xaf\xf6\x8f\x92\xe1\x3e\x2c\xf9\x39\x8a\x44\x5b\x74\x69\x9e\x5c\x61\xfc\x33\x90\x1b\x1b\x13\xfc\xac\x47\x1b\xe5\x20\x0b\xe6\x2a\x7c\x2e\x15\x7d\xb2\x19\xb7\x88\xb9\x0c\xb1\x57\x99\xd8\x56\x85\x27\x5e\x73\xae\xb1\xa5\x54\x85\x8d\x1b\xf0\xec\xf5\xd4\xb4\x71\xfc\x08\xa5\x61\xb4\x9a\x9f\xc8\x4f\x3b\xe2\x88\xe9\x40\x89\x36\x5f\x01\x46\xc2\x0c\x8f\x3f\xf8\xe9\xa3\x22\xfc\xb6\x1f\xfe\x59\x58\x2c\x64\xbe\xb3\x40\x17\xdd\x43\x2c\xf2\x3e\x1a\xb8\xb3\x2d\x41\x2a\x55\xef\xcc\x31\x7e\x39\x50\x0d\x04\x42\x7a\x53\xf3\xf7\xf3\x2d\x67\xbe\x80\xc3\x44\x59\xc2\x4a\x0b\x97\x7d\xef\x21\xbd\xd5\x36\xa2\x17\x9e\xfa\x77\xcd\x19\x17\x19\x42\x4b\x26\x1f\xbc\x79\x86\x23\xc3\xe7\x5a\x94\x91\x62\xb3\x24\xcf\x27\x5f\x55\x19\x38\x35\x0e\xb0\xcd\x64\x95\xe8\x5a\xa6\x56\x91\xa7\xcc\xf4\xb7\x97\xe9\xe4\x12\x64\xf8\x28\xa6\x0e\x65\x1e\x5c\x2a\xe6\x98\x1e\xa3\xbc\x92\x0a\x8e\x70\x21\xe5\x1c\x6a\x76\x3c\xc8\x7c\xaa\x95\x97\x45\x75\x8c\x2a\x98\x8f\x70\x82\x23\xbb\x63\x6a\x1a\xb5\x9b\xad\x3c\xff\x74\x89\x54\x87\x8d\x26\x44\xc1\x4b\x9b\x15\x1a\x01\x34\xb7\xc1\x81\x23\xf2\x0a\x14\x30\x62\x4d\xd8\xae\xcc\x40\x4d\x7a\xbf\x1b\x33\x5a\xd5\x30\xba\xa9\xaf\x3e\x19\x9f\x0a\xc2\x40\x98\xb3\xb5\x8b\xaf\xe1\xee\xf4\x6d\x90\x04\x6b\xe2\x9a\x65\x1e\x5c\x21\x14\x8c\x4c\x44\x05\x9d\xe5\x40\xf2\xb1\x59\xdc\x98\x37\x1e\x80\x7e\x79\xad\xe2\x74\xd3\x05\xf8\xa8\xf4\x67\x1c\xdd\x3a\xc4\xe2\xba\x03\xc2\x63\xe2\xb3\x87\x65\x0b\xe5\xe6\xc2\x6a\xc2\x54\xcc\xa9\xa9\x28\x63\x27\x6d\x6b\x93\x62\x87\x4c\x99\x36\x06\x47\xe7\x27\xaf\xb6\x49\x0b\x05\x59\x66\xce\xd5\x38\xa5\x26\x29\x9b\xd8\xe5\x63\xec\xd4\x1f\xfa\xc7\xa8\x87\x7a\x1f\x5c\xbb\x47\x5b\x46\xe8\x69\xdc\xc3\x30\x75\x12\x9d\xca\x1f\x66\x45\x68\x65\xe2\x52\x5b\xac\x2a\x76\xbe\xa2\x0a\x70\xf0\x3d\xfa\xa7\x67\x49\xb7\x33\x20\xa0\xbf\x7f\x07\x3f\xcc\xf3\xb8\xc0\x60\x13\x75\x77\x4b\x4b\xf2\x4b\xf9\xb6\x45\x2a\xd8\x6a\x70\xbe\xd2\xdf\xa6\xc5\xe5\x4c\x4d\xb5\xfa\x4a\xdf\xf6\x98\xa2\xbd\x8f\x18\x77\x87\xeb\x4d\xad\x3a\x7a\xa5\xb2\x80\x0a\xbb\x29\xe1\x94\x90\x9d\xb3\x24\x99\xae\xb9\x36\x9a\x40\xf1\x42\x15\xf7\x86\x46\x17\x24\x55\x07\x18\xea\xe2\xed\x5d\x3a\x22\xfe\x66\xe0\x0d\x14\xcc\x79\x7b\xb8\x92\xde\xb1\xe1\xc3\x24\x32\x0e\x72\xd7\xbe\xa0\x00\x2b\xb1\x15\x96\xea\x6f\xf5\x28\x9d\x40\x83\x41\xc5\xd6\x9b\x72\x3c\x0d\x93\x84\x98\x27\x3d\xeb\x37\xcf\x12\x9b\x29\x93\x02\x4a\x2b\xdf\x9b\x6e\x39\x2c\x8c\x02\xf2\x0b\x9a\x62\xc3\xc7\x5a\xb4\x29\x3c\xb8\xbd\xc4\x5d\x45\xa9\x14\x3f\xcf\x06\x53\x57\x86\x2f\x3e\x1b\x39\x3b\x82\x19\x3a\x5f\x45\xbd\x93\xb4\xb8\xf3\x40\x0b\xa8\xd9\x4d\xb6\x37\xbd\xe0\xc9\x64\x09\x5e\x26\xbe\x45\x90\x4d\x84\x3f\x58\x74\x35\x07\x5a\xba\x3c\x93\x4b\xcb\x88\xf3\x7a\x65\xd4\xbc\xbd\xa6\x13\x47\x6c\x9a\x60\x59\xf5\x53\xc4\x33\xb8\x0a\x5a\x78\xd0\x26\x9f\xe2\xdf\xa0\x8a\x6c\x52\x12\xc7\xe1\xf3\x2d\xd2\xd4\x83\x43\x6a\xfe\x3e\x76\xa8\xd2\x02\x23\x4f\x61\x30\xa4\x87\x2c\x94\x4b\x1a\x90\x13\xab\x23\x9e\x2d\x52\x1b\xd6\x2a\xa4\xfb\xaa\x13\x76\xf1\x9c\x58\x71\xe9\x78\x0d\x18\x47\x20\x4d\x42\x0f\xf3\xb1\x93\x52\x79\x7c\xf2\xa4\x5c\x3e\xf8\xd5\x71\xbe\x5d\xa0\xa5\xc4\x0e\xe1\xee\x9d\x82\x29\xc1\x51\x3f\xa9\xf5\xfd\x94\x61\x0d\x46\x2e\x08\x4d\xa6\xc7\x4d\xd1\x51\x88\x76\x18\x7e\x45\xd3\x1c\xd0\x4d\x32\x94\x54\x2c\xcc\xc7\xf4\xd7\x2b\xda\x3b\x8a\xbc\xcb\xbb\x23\x94\x49\x5e\xad\x19\x94\xf0\x4e\x57\x7c\xd2\xab\x7e\xf8\x68\x17\x68\x37\xc3\x43\x16\xb6\xe3\xb8\x96\xfa\xe5\xb6\xe4\xfa\x16\xd9\x36\xf5\x6d\x23\x32\x33\x0a\xab\x92\xb1\x63\x47\xea\xc5\xb2\x64\x26\xf2\xdd\xdc\x8e\xc5\x7c\xa0\x7c\x9b\x89\x98\x85\x55\x8f\xb8\x8f\xce\x6d\x57\x0b\x81\x84\x1e\x61\x6a\xdb\x8b\x9a\x31\x9d\x85\x0a\xa8\x8a\x14\xfc\xe6\x4d\x87\xf4\xee\xbc\x6e\x80\xbd\x2f\xbc\xc1\xc3\x87\x75\x5e\xaf\x87\xec\x06\x32\x23\xa5\xfe\xe8\x54\x7e\xa1\x45\x18\x96\x58\xb8\x86\x04\xdf\xbb\x36\x47\xee\x6a\xa1\xfb\x7a\xa0\x9f\xce\x6d\x65\xa4\x12\xd9\x0d\xa6\x4f\xcb\xa3\x57\x47\x9e\xa7\x7c\xc5\xec\xc8\x76\x5e\x57\xdc\xc6\x80\x31\xd2\x9b\xfe\xd2\xf2\xe4\x50\x94\xf0\x8d\x42\x30\xf8\x39\x59\x4f\x03\x1d\x5d\xc0\xa8\x6f\x38\xad\x18\x04\x51\x0b\xb3\x30\x80\xc3\xc1\x39\x37\x5a\xe9\xaf\x68\x03\xc1\x9e\x3c\x83\xa7\xf1\xaf\xb3\x88\x07\x49\xa8\x93\xee\x2b\x26\xbc\x50\x0d\xcc\xd7\x0b\xf9\xde\xf4\xdf\x1f\xe3\x7f\xdb\xc3\x3d\x1e\xb1\x60\xfb\xfe\x93\x85\x83\x45\x01\xe2\x50\x16\xb1\x0b\x7a\xd3\x4b\x35\x83\x68\x03\x11\x46\xe5\x62\x28\xfd\xdd\x31\x9a\xbc\x6d\x12\xe0\x95\xde\xf8\x2a\xff\xb1\xae\xe3\xdb\x82\x64\x19\x7e\xdc\xdf\x1d\x96\x3d\x48\xc9\x42\x26\x66\x9e\xd2\xa8\xfd\x7e\xf3\x95\x4a\xf1\xcc\x8a\xc8\x16\xfb\xb6\x7f\xb6\x29\x7c\x0e\xc4\x2c\x64\x03\x28\x2b\x7b\x49\x2d\x39\xc8\x19\xcd\x95\x5d\xda\xcf\x0e\xd7\xce\x52\xa4\x6e\xc2\x11\xe1\xf7\x6c\x91\x52\x5c\x8d\xa8\x92\xb9\xa9\x4b\x5e\xb2\x69\x33\xa6\x47\xa0\x4d\xcd\xa5\x7e\xc6\xc4\xce\xce\x48\x5f\x39\xf5\xe6\xa3\x92\x2b\x4b\x9b\x80\xa2\x99\xef\x66\x23\xfd\x59\xc3\x42\xd5\xe8\xd1\x66\xef\x79\x59\x5f\x0d\x46\x1a\x0b\x7c\xf3\x37\xf6\xc9\xe1\x8a\xa8\x87\x4e\xc1\x0d\x96\xec\x57\xc4\xf5\x2b\x0c\x41\xbd\x9e\xcb\x07\x6d\x9d\x6a\xd3\x59\x45\xac\x02\xc7\xe6\xb2\xad\xfc\x43\x2c\xa1\x8c\xda\x91\x8a\x6e\x70\xdf\x0e\x0d\xa9\x21\x24\x22\x0c\x14\x57\xaf\x3f\x1c\x1b\x8f\x48\x08\x93\x58\xb5\xf1\x1a\x3e\x9d\x1a\x7c\x88\xe5\x7a\xfc\x7a\xa4\x1e\x39\x9e\x9c\x07\x4e\x9e\x39\x81\x15\xc2\x3c\xfb\xa9\xc7\x5a\x14\x04\x30\x06\x3e\x6e\xea\xf6\x1a\x3f\x91\x26\xad\xe2\x2a\x2a\xc2\x06\xf0\xfe\x33\xbc\x8a\x5b\x84\x58\x91\x6f\xc0\xfb\x8f\xe4\x20\xbf\x8f\xe2\xf0\xf5\xd2\xdd\x8a\xa6\x2a\x38\x96\x40\x04\x18\xfd\x9c\x3c\x24\x55\x64\x17\xc3\x9b\x03\x92\x3c\xd3\x92\x51\x8f\xeb\xd5\xc4\x0c\xcc\x37\x4f\x2a\x33\x67\x0b\xd5\xb8\x3d\xdb\x9e\x43\x0a\xb4\xcc\x2f\xb8\xa4\xc8\xa1\x31\xe9\x65\x26\x07\x5b\xdf\x49\x2c\x4f\x75\xe9\xcf\x6e\x58\xa7\x68\x7a\x5a\x7e\x41\x59\x05\xec\x3f\x2e\x7c\xe0\x49\x19\xbb\xcd\xee\x63\x37\x1f\x1e\xae\xc5\x88\x22\x31\xb8\x1b\x09\x04\x9c\xa3\x53\x92\xd3\x38\x46\x8c\xb0\x54\x72\xa9\xa6\x67\x92\x5e\x35\x6f\xb8\x42\x66\xf5\x4c\xcc\x88\xad\xb2\x65\xbf\xb6\x50\xa7\x5a\xa3\x06\x16\xae\x54\x99\xc9\x37\xc7\xd5\x3f\x42\x3a\xa0\xb6\x37\x53\xe9\x1f\xff\x67\x0f\x35\x61\xc0\xd3\x9f\x7a\x68\x88\x42\xb6\xc6\x38\xea\xaa\x67\x9c\xd0\x15\xf8\x59\x8d\x18\x62\xa2\x96\x7a\x73\xb6\x9c\xa8\xb1\x84\xad\x5e\x1a\xbf\xc8\xcf\xad\x4d\x6d\xc7\x6c\xb8\x7c\x48\xda\x9b\x2d\x7b\xc9\x67\x55\x60\x14\x15\xa1\xa9\xe5\xd3\x9c\xef\x0e\x18\x18\x15\x8d\x30\x88\x84\x21\xe4\xc2\xc8\xc0\xc2\x82\x18\x3b\x48\x93\x86\x29\xa3\x02\xb6\xac\xe4\x94\xf1\xdb\x8a\x0e\x02\x72\x1c\x46\x91\x61\xc2\x29\xcb\xec\x6a\xca\x80\x1c\xa0\x16\xde\x1b\x3e\xcf\x7f\x7f\x51\x13\xe5\x67\x7c\x05\xc5\xb7\x61\x7f\x5c\xc3\x87\xbf\x8b\x63\x1e\x6d\xf8\x19\xdb\x6c\x81\x01\x45\x25\x5e\x1c\x76\x77\xa8\xfa\x40\x00\xa9\xe3\x82\x25\x77\x8f\xd1\x34\x88\x6c\xd3\x67\xdc\x98\xf6\x27\x97\x89\xe5\x21\xcd\x19\x61\xcc\x03\x85\xbe\x37\xae\xd2\x3f\xaf\x87\x0c\xe1\x43\x93\xa9\xbd\x2a\x7b\x35\x8f\x94\x9b\x24\x79\x82\xeb\x77\x0f\x52\x61\xaf\x04\xac\x72\x7f\xe0\xe9\xde\x85\x7e\xa9\x64\xe1\x48\xc6\x21\xf3\x9f\x1d\x6d\xf2\xac\x58\xea\xe8\xe5\x85\x19\x83\xa3\xb4\xe4\x31\x0a\x1f\x31\xfc\xf6\xb3\x5b\x2f\x8f\x03\x29\xb8\x89\x0f\x93\xb8\x38\xee\x50\xab\x6a\x10\xa7\x06\x6c\x50\x08\x17\x24\x02\x9b\xa6\xae\x3e\x1f\xa7\x71\xfb\xfa\x30\x50\x5c\xbd\x32\x2e\x1b\x41\x6c\x2b\xb8\xe2\x1c\xbf\xbc\xd8\x33\x6d\x62\x28\x37\xe7\x57\x97\x68\xfb\xf1\x30\xf5\xf0\x9d\x54\xc6\xd3\xdd\x5c\x1c\x21\xea\xff\xe0\x4b\x7d\x9c\xc5\x02\xb2\xa3\x65\x4a\x66\x8d\xd6\xe7\x61\xc4\xe4\x62\xe0\x5f\xf6\x36\xa5\x01\x8f\x81\x91\x36\xff\xe9\x6f\x2e\xd0\x87\x0e\x20\xc0\x06\x09\x2c\xaf\x95\x61\xdd\xd4\xb4\x35\x2f\xd5\x3b\xda\x34\x89\x5a\x86\x81\x0f\xe3\xc4\x9e\xe4\xe9\xfe\x8a\xfe\xa5\x63\xd1\x62\x74\x16\xd7\x3e\xc6\xe3\x6f\xc1\x2f\x08\x2a\xcb\x9b\xab\x93\x11\x88\x0b\x7d\x92\xa6\x91\x53\xaa\xf3\xa2\x9c\x75\xbb\xb8\x58\x50\x23\x64\xe6\x8d\xf3\x12\xef\xc1\x79\x77\xc0\x82\x95\xa2\x2a\x1e\x4d\xd6\x84\xb7\x1c\x4c\xbe\x15\xd8\x49\x03\xc2\x21\xf3\x6d\x6d\x08\x07\x94\x9c\x08\x93\x76\xdd\x5e\xcd\xb2\xdd\x20\xae\x4b\x99\xaa\x44\x95\x21\x85\xe4\xdf\x09\x23\xaa\x57\xe1\x4b\xbd\xe8\x03\xbf\x7c\x3c\xd1\x85\x1a\x00\x4b\xe2\xb3\xd4\x2d\xef\xd3\x22\x29\x09\x2b\x19\x97\xf4\x08\x23\x81\x07\xdb\x65\x3c\xec\x9a\x31\x3d\xd7\x39\x79\x52\xd8\x3a\x9c\xe8\x97\xb4\xa9\xc7\xb6\xeb\x87\xe5\x5d\xf0\xcf\x65\x83\x44\x2d\x68\x60\x27\x9a\x69\xa7\xbe\xdc\xa5\x10\x59\x88\x67\x98\xa2\x5d\x39\xf2\xd6\xfb\x22\x08\x90\xdc\x80\xa9\xcb\xb0\x31\x7b\xf9\xa8\xe4\xb6\x88\x26\xd8\xd4\xea\x7d\xee\x80\xbc\xd8\xb0\x98\x86\x55\xe8\xeb\x13\x15\xfb\x27\xa2\x28\xdf\xa5\x5e\x18\xa1\xc5\x11\x4e\x55\x10\xb8\xf4\x85\x2d\x4d\x4a\x13\x44\x50\xe0\x56\x69\xbc\x59\x04\x2a\xc9\x1c\x5a\x03\x6f\xe2\xf7\x45\x65\x75\x55\x75\x61\xfb\xbc\xf5\xed\x26\x00\x4d\xa9\x14\xbe\x60\x58\xd4\xa5\x1f\x38\xc4\x13\xea\x9d\x88\x55\x70\xf3\x77\xfb\xb2\x6e\xc9\xea\x38\x5c\x7c\x32\x32\x2b\x1d\xc1\xa3\x90\x6f\x97\x7c\xab\x44\x78\xa4\xec\xcd\xa4\x1f\x1b\xaa\xf7\x3f\xb8\x47\xa0\x6d\xde\xff\x2e\xbf\x13\x33\x3b\x73\x45\x30\x9c\xc9\x3c\xb4\xa5\x35\x31\x4e\xf7\x7c\xee\xa1\x9a\xda\x17\xa8\xfe\xce\x8a\xe5\xea\xbb\xa7\xe4\x04\x1f\xc9\x86\x35\x38\x39\x65\xbc\xfe\x65\x3d\xb0\x01\x8e\xb0\x02\xc9\x3b\xf6\xb7\x77\x25\x5b\xca\xf4\x9b\x81\xb9\x99\xaf\xbc\xa1\x30\xfe\x26\xe7\xf2\xc1\xbf\xed\xbd\x5c\xdc\x48\x10\x4c\xeb\xe8\xaf\x93\x08\x48\x01\xc5\x3a\xe6\xdf\x5f\x25\x9c\xf9\xe3\x4f\x91\xcb\x07\x5d\x2f\xf2\x9f\x30\xb5\x13\x44\xe9\xd2\x73\x97\xc6\x91\xb5\x82\x1b\xb9\x7c\xf0\x8d\x67\x04\x21\xd4\x11\xb6\x4b\x99\xf5\x4f\xea\x62\xb8\x9e\x67\x61\x41\x4a\x7c\xcf\x9a\x2b\xa2\x3f\xe7\xe8\xcf\x8c\xa6\x41\x2d\xda\xdc\x48\x8f\x67\xc9\x16\xe5\x22\x30\x5a\xb0\x44\xf9\xf8\xde\x75\x0a\x01\xc5\x30\x29\xef\xe7\xc6\x0b\x7a\x72\x1e\x7a\xb0\x6c\xf9\xb9\xc1\x09\x46\xba\xc7\x27\x49\x1f\x3d\x19\xa7\x8b\x06\xf5\xc3\x74\x71\x42\x27\x44\x51\xbf\x6c\x0a\xf1\xf5\xd4\xbb\xab\xc6\x28\x8f\x3d\x4c\x10\x1e\x18\x76\x35\xb5\xdd\x33\xdf\xd1\xe4\x35\x4a\x25\x6c\xbb\x91\x86\x7c\xb6\x7c\x50\x81\x44\xd4\x61\xa0\xd4\x9b\x39\xb8\x3f\x99\x64\x4a\xc4\xe3\x58\xb1\x4c\xea\xa5\x48\x01\xb1\xca\x3d\x5a\x6a\x98\x5b\x78\x2d\xd3\x8b\x39\x5a\x45\x9e\xd0\x5f\xca\xe4\x59\xb4\xf5\x36\x48\x11\x17\x39\x2f\xa7\xe6\x69\xa6\xa4\x6e\x25\x56\xf1\x48\x0d\xaf\xe9\x98\x9a\x30\x41\x8b\x99\xe4\x33\x17\xa4\x6f\xd9\xf4\x49\xe1\x5f\x3f\xfb\x44\xf2\x8a\xd5\x60\x94\x40\xec\x58\xb9\x67\xc9\xb2\xb8\x37\xea\xea\x9c\xd6\xd4\x1b\xfd\xe2\x0d\x5d\x54\x1c\x04\xc0\x63\x80\xf7\x17\x17\x24\x1f\x88\xef\x4e\xe8\xee\x86\xb9\xea\xa7\x0f\x2b\x62\x17\x06\xf5\xed\x22\xc3\xd0\x0b\xa7\x3e\xb3\x5a\xb7\x94\x0c\xab\xa0\xc8\x58\xa4\xff\x63\x9a\xf2\x36\x61\x30\x8d\x92\x25\xe7\xed\xeb\x86\x49\x8d\x76\xa3\xa9\xc4\xfd\x83\x86\x84\xae\x61\xc6\x59\xc9\xe2\x21\xdd\x3a\x4a\x57\xc0\xf1\x19\x8b\xdd\x29\xc7\x6c\x91\x4b\x77\x8b\xd6\xc3\x4f\x74\xcb\xe3\x4d\xd8\x5c\x0b\x97\x23\x87\xea\xd4\x9d\x8f\x2a\x0d\x1d\xb2\x85\x7a\x49\xb6\x72\x3e\xb9\xd5\xad\xd2\x02\xb1\x70\x9f\xfa\x7c\x5b\x97\x88\xe1\x00\x65\xae\xd8\x96\x65\x6b\x76\x93\x9c\x0b\x44\x28\xee\xb1\x12\x5e\x8b\x4e\x5d\x71\x06\x33\x4c\x79\x6f\x77\xcf\x7e\x89\x43\xa8\x62\x8b\x34\xed\x34\x32\xd5\x23\x4a\x13\x26\xcc\x9a\x72\xf9\xe0\xfb\xcb\x13\x72\x9d\xd4\x95\xf2\xc9\x63\x2e\x6a\x1d\xa5\xe1\x5b\x4e\x18\x4c\x23\x3e\x48\xb6\x3e\x4b\x21\x5c\x52\xdf\xb2\xb0\xeb\xda\x1c\x90\x9d\x1e\xa1\x88\xf2\x14\x68\x18\x61\x20\x94\x1f\xac\xf1\x04\x71\x57\xc3\x2e\xe2\xe6\x66\x66\xfc\xdb\x43\xd4\x25\x3a\x0d\x2f\x09\x68\x6d\x5e\xe4\x97\x2d\x2c\x06\x62\xe0\x4c\x2e\x1f\x8c\xde\x3d\x4a\x29\xc6\x3d\x46\xca\x7e\xd3\xb8\x2d\xfb\xc0\x8b\xaa\x69\x3e\x00\x91\xd3\x07\x8f\xcb\x07\xe6\xb1\xb0\xbf\xd5\xa3\xc5\x49\x6d\xd0\x12\xb9\xf4\x45\x92\x68\x3f\x3a\xa2\x68\x9a\x13\x16\xd9\xe5\x00\x45\xf4\xe9\x78\x8c\xe1\x57\x62\xdb\xba\xd5\x5b\x06\x8b\xd4\x6f\xd7\x78\xa2\xe5\x4e\x81\x96\x22\x80\x8e\x41\x8c\x6e\xe4\x7d\x3a\xe2\x1f\x10\xb8\x99\x57\xcf\x5f\xa3\x95\x46\xd4\x23\xc8\xd6\xe0\x7e\x13\xf7\xab\x52\x57\x88\xdb\x7d\xa7\xa7\xd4\x44\x7b\x4c\xeb\x96\xaa\xab\x9d\xb9\xac\xd4\xcc\x5b\x11\x8e\x48\xf9\xde\x4c\xeb\xb1\x68\x59\x0d\xd4\x85\xa0\xe5\x4c\x32\x1a\x59\xbc\x83\x82\x82\x62\x68\x5b\xab\x2c\x18\x55\x6b\x92\x9b\x8f\x5c\xa3\xb7\x25\xae\x07\xcd\x13\x61\x72\xdf\xbf\x56\xe3\x20\x84\x45\x15\x13\x2e\x3a\xe9\x59\x83\xa3\xe1\x33\xac\x97\x21\x91\x6d\xde\x96\x7c\x43\xb0\x4b\x34\x48\x58\xa8\x8f\x09\xff\xfb\xcd\xe7\xe4\x11\xe4\x97\x05\x1e\xb8\xbb\x4a\x5b\xd8\xf5\x70\xe6\x7c\xb4\x1b\xff\xcf\x62\x8b\xfa\x62\x79\x4e\x6a\xb4\xcb\xfa\x0b\x59\x8a\x03\x5c\xfa\x3b\xef\x88\xfd\x9e\x49\x9c\x08\xdc\xff\xf7\x1d\xed\x0a\x87\x45\xec\x03\xa3\xce\xdb\x51\x30\x14\x65\x54\x2d\x58\x7c\x6a\xfc\xeb\xe5\xca\x6b\x33\xa8\xcf\xf5\x1c\x7e\x77\x8b\xaa\xb7\x0e\x6c\x57\x3e\x4b\xec\xdc\x33\x21\xf1\x2d\x1a\xd4\xaa\x90\x9c\x83\xac\x0a\x11\xc3\x87\x44\xbb\xf8\xab\xcb\x06\x28\x5f\x0a\xc8\x8c\x1f\x6e\xd5\x70\x05\x00\x44\x12\xca\xce\xe9\xed\x92\x20\xc8\xb7\x64\xb0\xc2\x39\x5d\xd4\x30\x3e\x88\x70\x19\x90\x00\x0f\x1e\xa1\x30\xfb\xc2\x53\x67\x59\x2a\x55\x20\xb3\xfe\x5c\x9b\xd6\xae\xd9\x15\x91\xe2\x5e\x7c\xa7\x69\x2c\x48\xeb\x11\xc8\x25\xdf\x9b\xfa\xfa\x7d\x92\x3b\x5a\x0d\xab\xc2\x26\x81\xda\xf4\x37\xce\x2b\xf2\xda\x14\x6a\xbe\x5c\x3e\x18\x3e\x8f\x5f\xa4\x3b\x8d\x3b\x54\x15\xf5\xf4\x83\x35\x59\xa9\x2d\xa4\x30\x8a\x49\xc6\xa1\xeb\xda\x34\xb0\x33\x65\x62\x92\x11\xfc\xc9\xd4\x93\x83\xcf\xbc\x38\x3f\x66\x67\x78\xd2\xed\x85\x34\x05\xb8\xf4\x6f\x57\x27\xf1\x3c\x80\x76\xf5\x10\x13\xed\x5f\xf2\x53\x8c\x51\x08\x58\xb8\xc8\x97\x46\xd9\x31\x0a\xce\xc8\xc5\x8c\x21\x1b\xde\xd7\xc7\x14\xdf\x2b\xcf\x64\x18\x87\xfd\x7b\xea\x26\x6f\x40\x54\x8f\xf7\x08\xbf\x8a\x73\x52\x7b\x80\xa3\xf8\x3f\x93\x96\x31\xd7\xc4\xac\x42\xaa\x7c\xd0\xb1\xa4\x47\x8d\xe0\x16\xa9\x01\xa5\x25\xa3\xdb\x00\x15\x89\x8b\x91\x8b\xa3\xfa\x66\x23\x0f\x72\x0b\x88\x85\x94\x19\xdc\xc0\x69\xba\x1d\xa2\xc1\x70\xc4\x30\xc9\x0c\x3c\xda\xa4\xa1\xe2\x58\xd8\xc3\x56\x24\xed\xba\x7d\x8e\xb6\x00\x61\x9e\xe9\x33\x37\x31\x18\x32\xc4\x96\x67\xee\xed\x73\xe0\xc6\x5e\x39\x63\xb8\x92\x1a\x9a\xab\x86\x7d\x05\xb9\x3d\x9a\x3e\x39\x7c\x58\x77\x2c\xd7\xba\x5a\xab\x18\xf5\xf5\x7f\x70\x14\xdb\x5a\x5a\x6c\x94\x7d\xc4\x8a\x61\x3c\xfc\xed\x2d\xf1\x32\xb9\x91\x94\x5d\xcc\x7e\xc4\x94\x57\xce\x45\x61\xb2\xfd\xee\xe0\x58\xef\x6d\x66\xf8\x7a\xd2\xdf\x6c\xd3\xbe\x57\xa1\x88\xad\xe4\xbc\x20\xfd\xa5\x4b\x06\xab\xdc\xd8\x95\x2b\x27\xe4\xa1\x95\x5e\x26\x95\x44\x6d\x01\xb6\xd2\x05\x11\x56\x4f\xd3\xb6\x25\x16\xc6\x4e\x74\x50\x2d\x01\xf1\xac\x61\xbb\x8c\x79\x96\x08\x36\xee\xd0\x7b\xef\x06\x76\xa1\xb3\x97\xaf\x72\xcd\x49\x05\xbc\x48\x99\x17\x65\xbd\xec\x4d\x35\x65\xc4\xe0\x5b\x9e\x42\xa8\x0f\x9e\xdf\xc5\x77\x4f\xb1\xec\x5f\xce\x25\xab\xc0\x9c\xf4\xba\x05\xca\x5e\x0d\x73\xc1\x81\xec\x8d\x85\x36\xbd\xd4\xa9\x8a\xa3\x30\x3f\xdd\x44\xa5\x06\x97\x2a\x41\xdc\x6c\x14\x9a\xc5\x4f\xa3\x94\x9d\xd9\x29\x46\x97\x77\x70\xd6\x64\x14\x99\x06\x8d\xbb\x3c\x02\x24\x2d\xcd\xe5\x83\xd4\x08\xc9\x98\x50\xa7\xc5\xa9\x3f\x3c\x14\x99\x13\x78\x98\x79\xf5\x48\x17\xf9\xb7\x9a\x73\x8c\x61\x22\xcb\xc2\x76\x59\x32\x42\x06\x77\x2b\x1d\xa9\x45\xca\x88\x71\xdf\xf0\xec\x65\x3b\xde\xa7\xbe\xdb\x85\x0b\x17\xdd\x35\x21\xaf\x9a\x7b\xcc\x3f\xc7\xef\x2f\xe7\x4b\x41\xd6\x1b\xc2\x15\x36\x72\x0b\x70\xad\xd1\xec\x4b\xf4\x6d\x8d\x2e\x5e\x07\xa3\xbb\x28\x90\xfe\x70\x91\xae\xf5\x24\x80\x8d\x31\xac\x28\x58\x7e\x50\x91\x26\xe2\xfa\x83\xa0\x12\x35\x40\x1b\x8a\xd1\x42\x62\x65\xbc\xf6\x98\x0a\x55\xf0\xc2\xd3\x7e\x66\x7c\xc2\x12\xc3\xc2\x00\x9e\x7e\xb8\xbf\x2c\x77\x0a\xc8\x84\xe7\x83\xdb\x15\xd8\xb4\xef\x99\xe0\x52\x14\xc3\x9c\x3a\x04\x7d\x89\x94\xb0\x47\xaa\xcd\xe5\xdd\xf8\x63\x1a\x23\xb5\xc3\xed\x10\xdb\xc9\x45\xb7\xf7\xa6\xce\x5e\xa6\x31\x6d\xb1\xe3\x17\x2c\x62\xa0\xd8\x8b\x20\xbb\x76\x83\x90\x8f\x23\x65\x9b\x78\x9c\xd1\xfd\xfa\x2e\xb5\x5e\x66\x58\xc8\x24\xfd\xfe\x16\xad\x2a\x54\xf1\x98\x61\x33\xf3\xb0\x8e\xbb\xc5\x2e\xf8\x07\x08\x02\x37\x99\x21\xa3\x8e\x03\xca\x3c\xa7\xb6\x09\x19\x69\x86\x31\x5c\x89\xd4\x11\x61\x9e\x0c\x09\x39\xec\x10\x83\x77\x1f\x57\x01\x76\x52\x0c\x73\x93\x26\x79\x6b\x22\x9b\xeb\x25\x0c\x9d\xa2\x63\x27\xc3\x63\x49\x58\x35\x12\x6d\xcf\xe4\xe7\x5f\x15\x1d\xbb\xe8\x2d\x2a\x47\xfd\xc0\x01\x65\x95\x4a\x59\x25\xc7\xb0\x15\x2d\x65\x1f\x71\x06\x8a\x3a\x36\xf6\x2f\x4c\x3d\xdb\x93\xcc\x97\x26\xb5\x8a\xa2\xbf\x4b\xff\xa2\x3d\xd6\xe5\x2e\xa9\xba\xdc\xef\x7d\x43\xc7\xc3\x5b\x61\xda\x16\x6f\x25\xf8\x60\x36\xb9\x37\x66\x66\xc3\x33\xab\x39\x64\x17\x73\x05\xcb\xc7\x71\xdb\xd9\xdd\xad\xdd\x78\x20\x4b\x8b\x74\xc4\x16\x5c\xa5\x44\xc9\x2a\x4e\x42\x1a\xbf\xbc\x4a\x9b\x2b\xb1\x6a\x44\xf9\xad\x29\xda\xd5\x4e\x24\x54\x13\x9c\x9a\x91\x5c\x1a\x77\x08\xb0\x59\xe6\x67\x4a\x41\x31\x69\x5a\x67\x8e\x03\xee\x1c\xcc\x72\x16\x82\x87\x30\x54\x21\xc6\x5a\xe0\xde\x0b\x04\xd2\x15\x12\xda\xd8\x35\x25\xfc\x41\x3f\x59\x12\xfb\x2a\xb8\x98\xd5\x90\x47\x5c\x18\xa8\x64\x3f\xfb\xe4\x90\x04\x76\x42\x34\x54\xe9\xff\x59\xd2\xe4\xbb\x57\x2c\xc6\x30\xaa\xd4\xbe\xfd\xf2\x7b\x54\x90\xe3\xbb\x1e\xca\xe5\x83\x7d\x2f\x27\xe1\x24\x25\x46\x70\xb1\x0a\x9d\x84\xa2\xfd\x9a\x1a\x3b\x5e\xda\xc8\xf9\xcd\xcd\xda\xa1\x75\x43\x14\x34\x60\x35\xe2\x24\x64\x7e\xfb\x56\x64\x9c\x11\x81\x8d\x0f\xf1\x3f\xf0\x70\x55\x20\x6c\x8e\x8d\x8e\xe7\x16\x0c\xd5\x73\xf9\xe0\x6f\x8a\xad\x0e\x80\x6b\x39\xc9\xf3\x47\x2b\x06\x28\x07\x1f\x84\xba\x5f\x55\x36\x10\x05\x5a\xc3\xb9\x2a\x6f\xa6\x38\x19\xa8\xb5\xfb\x1a\xf5\xa6\x70\xb9\xb1\xa6\xdc\x7f\x9c\x29\xd6\x96\xb0\x77\x09\x3f\xf7\x87\xf7\x25\xa3\xa3\x4d\x6d\x1b\x97\xc3\x16\xab\x60\x45\x0c\xa7\xf3\x4f\xc9\xbe\xb1\x00\x58\x02\x3d\x1c\x75\x6f\xd5\x61\xf0\x28\x22\xad\xb1\xc3\x3a\x93\x80\x95\xa9\xe8\x7e\xae\x9e\x3b\x44\xc4\x20\x57\x11\xd7\x08\xce\xaf\x16\x9a\x5f\x50\xd0\xf6\xa6\xc6\x3d\x9c\x7c\xdd\x15\xe2\x46\x4b\xd3\xf0\x3f\x5f\x2a\x38\x9a\x0e\xb8\xde\xc1\x19\x33\xc7\xc4\x05\x69\x01\x35\x17\xce\x43\xb4\xd9\x8c\x81\x7c\x37\xd6\xa0\xcf\xce\xdc\x2a\x1c\x11\x90\xe5\x29\x0a\x56\xc1\xbf\x9c\xd2\x5c\x59\x5d\x0f\xa8\x2c\xb9\x7c\xf0\xd7\x67\x34\x64\xb9\xef\xb9\xa4\xc8\x25\xdf\xb2\x23\x5f\x8d\x4f\x94\x7d\x7d\x53\xc1\x92\xfa\xca\xd2\x88\xb0\x85\xed\x78\x1d\x92\xca\xdc\x98\xb4\x38\x23\xe1\xd7\x5a\xfa\x8e\xe6\x58\x6f\xd7\x11\xe3\x42\x25\x99\xd7\x57\x69\xf6\x67\x24\x5e\x4f\xbc\x3c\x63\xb8\xde\x64\x56\x85\xae\x29\xf4\x5b\xcf\x1e\x6c\xc2\xc5\xb3\x58\xb0\xee\x0b\x27\x35\x20\x19\xb5\x3d\xd3\xed\xe0\xd8\x86\xed\x4f\x26\x8b\xd8\xfb\x7d\xee\x7a\x24\xf0\x83\xc1\x5f\xb3\xf1\x57\xc7\xa5\x26\x7f\x81\xec\xe5\xa3\x92\x87\xaf\x8a\x3c\x8f\xd8\x48\x59\x7b\x04\x69\x8d\x79\x5f\x27\x9e\x19\xe7\xb0\x55\x5a\x67\x16\x46\x6d\x91\x73\xe6\x1c\x8e\x20\xa5\xb8\x92\xb3\x28\x27\x0e\xfd\x6c\x74\xf2\xbb\x74\x4d\x9e\x2a\x10\x14\xe1\x7f\x3d\x77\x99\x94\x0c\x57\x45\x44\x53\x57\x59\x7a\xf3\xec\x09\xeb\x76\x5e\xea\x9c\xdb\xa6\x98\xad\x24\xb9\x7c\xf9\xde\xec\xbc\xb5\xc2\xa3\xd4\x24\x56\xb1\x40\x18\xcc\xac\xb3\xe3\xb7\xc7\x8b\x26\x04\x1c\x0c\xb9\x68\xfa\xfd\x3e\x1d\x37\x19\xbe\x8d\x32\x31\xa2\xaf\x3d\xa4\x5d\xb6\x9d\x3c\xaf\x87\xa5\x83\x8b\x31\x37\x74\x0d\xb6\xd5\xae\x96\x71\x85\xb8\x82\x87\x4f\xa9\xdc\xce\x07\xe3\x7a\x9a\x88\xad\xf1\x75\xbf\x7e\x18\xaf\x5b\x23\x9b\x10\x93\xd2\x22\x1f\x08\xac\x3c\x10\xcf\x78\x88\x2d\x66\x3c\xc1\x0d\x7b\x86\x6b\x2f\xb1\x9b\x3b\x2e\x0a\x4c\xf2\x6b\x23\x63\xb7\xf8\xae\x84\x2b\xe1\x41\x3e\x17\xe7\x56\x11\x07\x5e\x91\xc9\xc4\x23\xcd\x1a\xf2\xa9\x4d\x8f\x49\x90\xa1\xab\xc8\x9e\xa4\x36\x69\xe0\x1f\xd3\x07\x30\x42\xcc\xb8\x7b\xcf\xc9\x21\xf5\x68\xfb\x51\x2a\x11\x83\xf0\x21\x20\x9b\xa2\x77\x67\x55\x6a\x30\xc4\x51\x0e\xa9\xdc\xf1\x91\xf1\xc7\xb1\x69\xf8\x06\xf4\xe1\xc2\xfb\x5a\x64\xfd\x56\x8a\x4d\xb4\xc4\xed\x5d\xd3\x1d\x0f\x12\x5c\x1c\x0d\xc3\x52\x57\x6d\x94\xef\xad\x81\xac\xa6\x0e\x3c\x7d\x76\x8b\x22\x5e\x5d\xa8\x86\x2f\xe3\x0f\x8b\x24\x46\xa9\x6a\x18\xbe\x65\x61\x45\x6e\x2d\xf5\x3f\xcf\x27\x53\xb6\x98\xa0\x7c\x63\x9f\x82\x09\xc5\xac\x8a\xe1\x9c\xfe\x66\xae\x22\x28\x45\x7d\x16\x16\x07\xdc\xc9\x2e\xf3\x1f\x0a\x9b\xc8\xb0\xa8\x8b\x8b\xe0\x85\x10\xfe\xa7\x99\x3b\x14\x57\x3d\xd5\x9c\xee\x43\xfb\x92\x09\x35\xfa\x78\x1a\x74\xfa\xc2\x34\x39\x1c\xa0\x4d\x28\xe1\xec\xc7\x06\x2b\x43\x0c\x93\x56\x85\x28\xe5\x9a\x33\x82\x31\x4c\x6d\xd7\x23\x5e\xec\x78\x70\xed\xb3\x7a\x97\x44\x8d\x0a\x47\xa6\x3c\xb0\x94\x8f\xed\x4a\x16\x05\x55\x95\xd4\x9f\xe7\xc7\xd1\xa7\xc3\x69\xf6\x53\xbd\x4e\xab\x84\x00\xc9\x2f\xa6\x33\x77\xb4\xf1\xf0\x61\x52\xdf\xc5\xa6\x70\x63\xfa\xde\xdc\x24\xc0\x0b\x89\x29\xd0\x46\x4d\x34\x57\x58\xee\x89\xc9\xf9\xb0\xd9\x0a\xe5\x1a\xc1\xf6\x23\x78\xe4\x95\xa8\x5a\x30\x10\x08\x8c\xfc\xf7\xd1\xa1\xea\x4c\x17\x33\x37\xf6\xcf\xc8\xac\x78\x40\x77\x25\x61\xc4\xd5\x1e\x72\x66\x61\x7c\x33\x19\x2e\x44\x07\xee\xfa\xc7\xf9\xb7\x60\x80\x33\xe7\x12\xf1\xa9\xb5\xab\x46\xe8\xc5\x93\x87\xa5\xde\x52\xe0\xf6\x0c\x55\x98\x26\xc0\x49\x40\x62\x3c\x9e\xfa\xd8\x46\x5e\x06\xdf\x89\xdc\x78\x71\xff\x87\x93\xca\x4c\xd8\x71\x18\x36\x88\x00\x3b\xa5\xfe\xfc\x06\xbf\xe2\x05\x0a\xf4\xb7\x81\xad\xda\x1c\x15\xa3\x4a\xac\x07\xf6\x39\x2e\x0e\x08\xcd\x03\x00\xc0\xd4\x39\xc7\xd8\x56\x4e\xa7\xba\x1e\x08\xa6\x77\x09\x82\x29\x64\xd7\x4f\xec\x8e\xcb\xc9\xc9\x93\x26\xe6\xf2\xc1\x94\x5d\x91\x10\xa8\x49\x2d\x18\xdf\x64\xc7\x59\x72\xfa\x38\x69\x4a\xce\x01\x2a\x4c\xbe\x37\xf3\xde\x97\x46\xa8\x8b\x3c\x8e\x02\x50\x42\xd4\xf1\xfe\x72\x02\x12\xd1\x7f\x78\x3f\xb0\x2c\xe0\x23\xfd\x65\x24\xbc\x43\x4d\x47\xeb\xb5\x62\xfc\xa1\xb0\x15\x16\x9f\x23\x06\x68\x90\x0e\xec\x45\xad\xc2\x5f\x96\x27\xaf\x91\xed\x1b\x16\x46\x2c\x57\xc7\xc8\xe1\x0e\x68\x50\x6d\x77\x3c\xa7\x2b\x37\xd1\x7a\xf4\x23\x7e\xbc\x52\x69\xd2\x71\x24\x89\x9a\x1a\xf1\x2c\x2f\x64\xee\x40\x05\x62\x29\x76\x5c\x59\xfa\x90\xec\xcd\xf9\x08\x9f\xe3\xc9\x52\xff\xdf\xa9\xff\x95\xa6\x47\xa2\x6d\x1f\x34\x31\x0e\xd0\xdd\x09\x67\x8c\x19\x53\xe4\xc3\xe8\xc9\x01\xba\x4b\x6c\x75\x6f\xa3\xbe\xed\xc5\x5a\x46\x0b\xde\x4d\xba\x2a\x79\x0c\x23\xd7\x67\x0d\xde\xd7\x26\x23\xe5\x67\x4e\x68\x24\x66\x03\x90\x0a\x76\x99\xab\xb6\xfd\x7d\x5b\x6b\xd2\xe0\x38\x3a\x48\xd3\xfb\xab\x5a\xda\x91\x17\xe2\x60\x8d\x36\xcb\x50\x0d\x5b\x98\xc5\x67\x13\x29\xaa\x09\x32\xba\xcc\x1d\x21\xee\x02\x28\xc0\x35\x15\x76\xe9\x3f\xf0\xc4\xa4\x18\x9e\x27\x12\xc8\x67\xcf\x28\x8e\x00\x0d\x54\x5d\x85\x5c\x13\x06\x41\xa3\x1f\x1e\xa5\x40\x07\x59\x03\xb4\x05\xf5\x1f\xfe\xf4\x58\x6d\x22\xeb\xbb\x1e\x05\x7b\xff\xb0\x1e\xfd\xe9\xbc\x56\xe5\xe0\x7a\x98\x79\x5c\x63\x25\xb5\xe9\x66\xad\xe2\x22\x16\xb2\x73\x1e\xcd\xb9\xd2\x72\x81\x8c\xd6\xcc\xca\x28\x03\x61\x1c\x55\x33\xb6\xb2\x36\x8e\x37\xb6\x61\x8a\x4a\xe0\x8b\xc5\x48\x24\xd7\x82\x27\x44\x35\x06\x73\xc9\x67\x9e\x89\x99\xd8\x41\x7e\xee\x3e\x55\x86\x9e\x09\x97\xf2\x27\xdb\xe2\x26\xc9\xf5\xb9\x7b\xb0\xe2\xa0\x81\x3c\xde\x27\xc0\x0c\xb7\x7d\xaf\x16\x4e\x50\xbd\x21\x1e\x40\x6f\xfa\xc1\x85\xba\x73\xb9\x5f\x10\x46\x75\x99\x97\xcc\x6b\xb5\x16\xb8\x48\x5c\x28\x18\xb4\x8d\xe5\x3a\xad\xcd\x04\x69\x4d\x1b\x5b\xf0\x2b\xb2\x73\x83\xe4\xd7\xe3\xe8\xcf\xa8\x09\xfd\x38\x97\x0f\xcf\x2d\xee\xe3\xed\x65\x3f\x17\x68\x00\x03\xe4\xd5\x08\xb2\xa3\x0e\xfe\x89\x67\x15\x11\xb2\xdc\xa4\xc9\xc0\x48\xbe\xfb\x21\x45\x6e\x0f\xdb\x80\x90\xe9\xa7\x6a\xcb\xd2\xa2\xdf\x8d\x6b\x00\xeb\xa3\x5e\x32\xdc\xc0\x68\x82\x2f\x95\x8e\x8f\x53\x38\xc8\xb4\x8e\x8a\xa8\x01\x8f\x79\x3c\xb7\x38\xcf\x2d\xf4\xab\x05\xcc\x9a\x89\x73\x4f\xdd\x27\x6b\x13\x4e\x21\x4d\x3d\x27\xd4\xd3\x0c\x5a\x2f\x50\x3e\x41\xa2\xf7\x0d\xed\x23\xc4\x73\x3b\x9a\x05\xdb\x95\x5a\x85\xe1\xb0\x86\x0e\x1f\xa3\x7f\xb3\xa6\xc0\xc0\x28\x9f\x7b\x06\xf3\xfb\x25\x23\x63\xa1\xdb\xe1\x6a\x0e\xc9\xd7\xf4\xf8\x68\x5e\x2a\x2c\xc0\xc8\x54\x17\x1e\x3f\x7e\x34\x22\xb9\x80\xd6\x5a\xf8\x89\xbf\xb6\x52\x80\xbe\x70\xe4\x95\x09\xcb\xb1\x63\x82\xca\x85\x3d\x64\x59\xc4\x68\x26\xc7\x7d\xb8\x55\xfb\x8c\x94\xf1\x51\x4c\x30\x74\x94\x02\x80\x0e\x0b\xed\x3a\x5f\x67\xae\x78\xab\xd9\x26\x0c\xe0\x74\x7c\x64\x7b\xcb\x12\x2d\x9a\xfb\xac\x1c\xf9\xf1\xff\x69\x83\x6c\x27\x1c\xc4\x2c\x48\x31\x9e\xb8\x63\x73\x4f\xc5\xc1\x94\x02\x7c\xe8\x72\xa5\x70\x2e\x61\xab\x99\x86\xf5\x47\x5b\x81\x28\x60\x8b\xa7\x7a\x88\xf6\x2b\x34\xeb\x70\xd3\xb7\xcb\x80\x22\x99\x10\xb9\xb5\x07\xff\x38\x31\x42\x89\x45\xdd\x61\x6e\x31\x12\x0a\x46\xd3\xcf\xf1\xa2\x6b\xea\xd4\x8e\x29\x93\xc3\x87\xf9\x47\x53\xd6\xc5\x45\x64\x97\x55\x89\xc2\xd4\x8c\xf3\xad\x72\xc1\xe6\xcb\x76\xe4\x9b\x66\xff\xe8\xeb\x7a\x61\x7d\xb4\xfb\xad\x56\x75\xb1\xe6\x84\xbf\x16\x58\x77\x0b\x67\xc9\x05\x87\x6b\x1a\x26\x66\x85\x84\x86\xed\x99\xb1\x72\xff\x30\x65\xd2\x8c\xf0\x9f\x6c\x58\x9a\x9c\x5f\x4d\xe4\x37\xb4\xa8\xbb\xbf\xa0\x48\x08\x22\xf5\x51\xad\x01\x2b\xf9\xe1\xa5\xc7\xc5\x58\x4b\xe2\x57\x9b\x74\x19\x1f\xe0\x3b\xc0\x18\xb2\x37\xf5\xb5\x51\x0a\xf6\x9a\x56\x1d\xec\x11\x31\xd8\x78\xee\x49\x15\x8c\x65\x84\x37\x8d\x17\x22\x8f\xb0\x41\xc9\x3f\x84\x2a\xbe\x77\xbe\x04\xf9\x20\xe3\x7e\x9f\xb8\x84\xbf\x3b\x7d\x28\x35\xf1\x32\x2d\xa0\x15\x8c\xbe\x76\x6b\xe9\xaf\x6b\x1a\xe7\x05\x64\x57\x98\xef\x08\x64\xf7\x37\x46\x5f\xa5\xec\xd0\x19\xa9\xa8\xf2\xdd\xa9\x6b\x9e\x51\x56\x68\x6e\x2e\x1f\x54\xfb\xeb\xe1\x0f\xfc\x99\x84\xaa\xd4\x6f\x2f\xca\x73\xca\x00\x2c\xfd\x19\x93\x5f\xd3\x49\xe0\xa4\xc6\x75\xfe\x61\x11\xa6\x89\x2b\xe2\xaa\x63\x51\x08\xe4\xe0\xdf\xfb\x81\x56\x51\xce\x91\xaa\xc3\xab\xd0\xcc\x07\xde\x8d\x2b\x8d\x19\x9e\x42\x3e\xcf\x7c\x69\xed\x80\xf8\x18\x71\x4b\xe3\xd4\xcf\x9d\x76\xed\xe6\x86\x49\x88\x57\xba\x7f\xeb\xd6\x1a\x6d\xc4\x6b\x9d\xc8\x78\x2d\x3d\x7b\xa1\x94\x8b\x52\xc0\xa3\xc1\xfe\xac\x36\x77\xc0\xc2\x4f\x21\x18\xfe\x82\xec\x66\x18\x2e\x33\xcc\xdf\xe4\xea\xf3\x8a\xce\x57\xd7\x64\x06\x81\xaf\xff\xde\x16\x95\xad\xca\x35\xeb\xbf\x6e\x25\x7f\x74\x81\x7a\xa6\x50\x28\x98\xae\xa0\xc0\x4b\xa8\x16\x36\xd9\xf0\x22\xfe\x36\x40\x71\xc9\x23\x3d\x7c\x42\x13\x7e\xf7\xd5\x92\xca\x8c\xc1\x19\x68\xc0\x1c\xb9\xd0\x87\x6e\x27\x36\xd4\x7b\x2b\xab\xab\xce\x50\x3b\xca\xf9\xd0\x4a\xcc\xf0\x14\x0b\x4f\xab\xe1\x57\x57\x99\xa0\x6d\x95\x0f\x76\xdb\xf2\x4a\x96\x28\xb8\xb1\xab\x68\x95\x6f\x5d\x3a\x44\xf9\xcf\x20\x92\x0a\x99\x62\xea\x32\xc5\x7c\xb5\xde\x94\x21\x3f\xf1\xb8\xe2\x9b\x85\x5d\x8f\x51\x61\xb9\x90\xfe\x48\x97\xac\x1b\x4a\x0c\x03\x00\x2d\x40\x87\x65\xd4\xb1\x30\x72\x54\xe5\xd2\xcc\xd1\xcd\x23\xb5\xeb\x8a\x8b\xc4\x80\xa8\x1a\xa9\xbc\xde\x73\x4e\x95\xfd\xac\xc2\x73\xfd\xa3\x96\xdf\x8b\xd4\x8e\x0d\x56\x7a\xb3\x93\x16\x8d\x54\xde\xb4\x6b\xf8\x4d\xed\x7c\xea\xd8\x72\x01\xff\x07\x88\x06\xfc\xcc\x5f\x6c\xbf\x2a\xb1\xb1\x46\x1e\xb6\x71\xa4\xb6\x90\xf9\xdb\x21\x6d\x94\x41\x5d\x8f\x9b\x02\xf0\xea\xed\xab\x6b\xb5\xe6\x17\x5b\x96\xd0\x92\xfa\x68\x9a\xdf\x2e\x1b\xd5\x48\x59\x7a\x52\xa7\xd0\x6b\xcd\xca\x49\xd4\x8d\xbc\xc7\x33\xef\xf6\x8b\x57\xb9\x26\x34\xf7\x72\x51\x80\x5f\xe0\xcd\x5b\xd7\xf4\xa9\xe1\xdf\xfc\x81\x2e\x5d\x86\x59\x18\x98\x79\xa6\xde\xb1\x4e\x26\x21\x60\xff\xe9\xd5\xc3\x7f\x9c\x57\x74\xda\x28\xb3\x60\x8f\xfc\xc1\x15\xda\xde\xc8\x67\x0e\x65\x31\x05\x30\xbd\x70\xbe\x72\xe6\xaa\xc2\x54\x92\xe3\x0d\x3f\xb2\x6e\x90\x78\xf2\xd2\x0e\x31\xf8\xc0\x2a\x2d\xbc\xf9\x0c\x23\x9f\xeb\x1e\x05\xaf\x3d\xa0\xf3\xa8\xab\x55\x6a\x5b\x8d\x48\xcb\x67\xe4\xe3\xb2\x03\x77\x18\xad\x11\xdb\xc0\xd1\xe1\xb7\xc5\xba\x8a\xd8\x35\xce\x0a\x4a\x5f\x3d\x6b\x98\xf6\xa6\x6a\xe0\x5a\x22\x3e\x79\xcb\x6b\x8a\x4c\x3c\xb2\x0d\xca\x5f\xd2\x5e\xcd\xa9\xc5\x24\x96\xe5\xc6\xae\x0e\xe9\x5f\xd7\x22\xed\x48\x46\x38\xdc\x27\x6b\xcd\x57\x56\x8c\xd4\x2a\x81\x5c\xdb\xbb\x63\xb4\x28\xce\xb8\x7e\x9e\xde\x23\x3c\xf1\x62\x4b\x7c\xfe\x3c\x21\xec\xd3\x35\x2e\x99\xf3\x71\xb9\xe1\x78\x24\xd6\xe1\x85\x46\x6c\xf6\x0b\x02\x41\xe2\x97\x3c\x55\xc7\xfd\x2f\xdb\x74\x0d\xc0\x2a\x62\x95\x38\x5a\xa6\x96\xe9\x1c\x82\x12\x66\x12\x39\x97\xde\x7d\x5a\x03\xc3\xf8\x16\x16\x41\xfe\x93\x9a\x0a\xba\x92\x49\x32\xb7\xac\x69\xca\x0f\x26\x72\x49\x24\x1f\xff\xc8\xe3\x91\x28\x64\x89\xb2\x2a\x67\x27\x7e\xfe\xad\x41\xea\x08\x43\xf0\x06\xbe\x29\xbc\xcd\x41\x2f\x1c\x12\xc9\x4b\x0f\xf0\x53\xb4\x10\x15\x2c\x3f\x56\x51\x19\x39\x2a\x89\x80\xae\x1a\xc5\xf0\x36\x15\xc1\xf0\xa9\x79\x30\xf9\xcb\xf1\xea\xbb\x66\x0c\x7b\x90\xd2\xa7\xce\x53\x20\x2b\x0e\x62\x15\xe8\x59\x4c\x2d\xa6\x78\xb8\x47\x71\x19\xa9\x28\x46\xe6\x98\x97\xe1\xf9\xde\xd4\xb7\x4e\xaa\x3e\xac\x10\xdb\x83\xd1\xa6\xe2\xf0\x5a\xe4\xe3\xd9\xd4\x9f\x9f\x4d\x2a\x19\xd4\xc3\x83\xc1\x92\xd0\x8a\x4c\xeb\x53\x0a\xfe\xb8\x5e\xa9\x23\x48\x46\xe9\xc7\xb3\xfc\x51\xa0\x52\x89\x58\xd1\x00\x27\xfd\xd3\x63\x9a\x68\x07\xb5\x6b\x54\x31\x84\xba\xf6\xad\xe4\x51\xf4\x6d\xe2\xf5\x05\x13\xcf\x0e\xd2\xd1\xec\x20\xe9\xc7\xeb\xdd\xcb\x5b\x35\x74\xad\x23\xb0\x0b\xa9\x2f\x3d\x99\x9c\x08\x58\xbe\x61\x98\x98\xe3\x6e\xb4\x71\xec\xbe\x92\xc6\x81\x60\xc4\x71\x26\xcc\x52\xbe\xf8\xac\x01\x42\x8e\x81\x96\x4a\x18\xa0\x85\x8d\x83\xaa\x8d\x3d\x63\xa0\xe3\x08\x61\xfa\xda\xfe\xb1\x8f\x1a\x77\xa3\xc9\xe5\x83\x9f\x68\xd2\xd9\x90\xf4\x39\x5e\xfc\x96\xf5\xba\x3d\x58\x5f\x6e\x50\x30\x58\xfe\xc7\x09\x3d\x0c\xe5\x1c\x62\x51\x4f\x7c\xe5\xec\xcc\x8b\x4a\x57\x8c\x6c\xf1\x66\xff\xba\x4c\x16\x8e\x7e\x78\x54\x2b\x38\x6c\xc1\x82\x86\x26\x9a\x52\x22\x1c\xb2\xe5\xa8\x83\x99\x3d\x67\x9b\x48\x62\x2e\xbe\xdf\xc7\x40\x41\xe0\xad\xd9\x17\xcf\x0e\x52\x47\x0e\x35\x0c\x15\xdb\x47\x3a\x25\xd0\xb4\x8e\x18\x23\xb4\xb9\x2f\xcc\xb2\x2d\x71\x8d\x64\xaa\xae\x6e\xe9\x1d\xf3\xf8\xf3\xfe\x90\x4f\xb8\x68\x61\xfa\xfc\x72\x85\x5b\x51\x47\x61\xde\x5e\x77\x99\xb2\x53\xc3\x16\x2e\x48\x0d\xa5\xd4\x92\x15\x7c\x7c\x35\x0f\x31\xd2\xad\x42\x2b\xb7\x6b\xe6\x66\x60\x6d\xcb\x35\xec\x44\xa8\xe9\x19\x3f\x4c\xe9\x8b\xeb\x98\x95\x7c\x05\xbe\x98\xb9\x76\x69\x14\x33\x50\x98\x5d\xe1\x9f\x7c\x41\x33\x33\xa8\x9b\x34\xfc\xb9\x22\xca\xec\x3b\xc8\xe7\x7d\xb3\xb9\xa5\xbb\x5e\x58\xf7\xd6\xf8\xca\x64\x36\x65\xb4\x46\x65\xcc\x0c\xfe\xd4\xa3\x82\x18\xa2\x29\x76\x66\x92\x22\x36\x50\x27\x0c\xd9\x3c\x1b\xb7\x6c\x19\x22\x3e\x97\xd8\xc1\x72\xf4\x41\x66\xf0\x56\xfe\x28\x8b\x84\x01\x4f\x29\x58\xa4\x58\x0a\x20\xab\x80\x6c\xb0\xef\x7d\x70\x77\x5c\xef\xe5\x38\xbb\x97\x3c\xa1\x68\x48\x56\x91\x65\xe5\x0c\x64\x11\x28\xbc\x83\x3b\x8e\xc4\xac\x87\xee\xee\xf0\xd0\x0f\x39\xa6\x78\x54\x33\x1f\xe4\xa0\x72\xf9\x60\xcf\x60\x8d\xe9\x0e\x82\x37\x7c\xb7\x18\x1c\x3e\xa2\x7b\x97\x88\x2d\x0a\x5f\x25\xfd\x78\x3b\x7f\x2e\x73\x31\xf0\xc5\x94\xa1\xe0\x5f\xc7\x68\xa5\x8c\x4f\x3c\xb1\x4e\xbb\xed\x6d\x05\x43\x43\xe2\x9d\xca\xf5\x5a\xb7\x6a\x11\xbb\xe8\x8a\xbc\x17\xc3\x2b\xb4\xb9\xc7\x0c\x58\xee\x39\xb9\x7c\x30\xab\xe7\x7a\xbd\x0e\x02\x82\x5b\x1f\xbc\xb1\xf4\x0d\x4f\xc8\x3b\x58\x60\xa2\x32\x4f\xad\x6e\x4f\xde\xff\x49\x33\xa7\xcd\x8c\x36\xac\x1f\x34\xa5\xcc\x5a\x03\xca\xc3\x05\x97\x5d\x99\xa4\xec\xc6\x46\x55\x43\xdf\xe0\x53\xb2\x19\x1d\x33\x41\xed\xee\xbe\xfb\x86\xeb\x9f\x0c\x23\x45\xb5\xee\x83\x7b\xae\x10\x37\x50\x70\x45\xd2\x6b\x9f\x54\x24\xa3\x62\xa8\x75\x6b\x20\x0b\x6d\x93\x74\x23\x83\x67\x9c\x37\xf7\x5c\xdd\xd4\xf3\x85\xb7\x5e\x71\x60\x48\x7f\xba\xf3\xbd\xbc\xf0\xf8\x68\x2e\x1f\x8c\x1a\x13\x7f\x97\x69\xb9\x29\xe1\x27\xbc\x62\x8f\xfc\xc9\xbe\x47\x2c\xb0\x11\xca\xf7\xa6\xde\x1c\xa1\x3a\xb7\x44\x23\xc6\x39\x6d\x3a\xc9\xd6\x46\x1e\x15\x73\xb9\x6c\x8b\x46\xc0\xaa\x13\x1b\xc3\x70\x2e\xaa\xc4\x37\xbe\x78\xdb\xff\x4e\x56\x3a\xc6\xf1\x24\x2b\xce\xce\xa7\x04\x87\x15\xa3\x2a\xfc\xe0\xe1\x03\xe4\x1b\x29\xf9\xd8\xca\x59\x58\xc4\xb9\xf6\x0b\xca\xc1\xe7\x40\xe7\x0f\x2d\xba\x3d\xf8\xfd\x05\x1d\xc1\x4d\xaa\x05\x4b\x9b\x84\xa6\x07\x4e\xd4\x26\xfb\x2c\x26\x55\xfe\xd8\x16\xa0\x21\xc4\xa8\xd5\xe0\xc2\x69\x9b\x5e\x92\x0d\x00\xb2\x6d\xec\x79\x0a\x27\x3a\x7d\xfc\xc5\xc8\xc5\xc0\xaa\xf1\x0a\x30\xb5\x7b\xfd\x95\x8a\x20\x8c\x81\x2d\x8b\x5b\xbd\xf5\x66\x1e\x3b\xa1\x30\x26\x89\x55\x66\x04\xbe\x68\xfa\x3b\x4b\x75\x74\x03\x98\x58\x89\x6c\xfb\xd0\x38\xb5\x5c\x21\x16\xf5\xe1\xd2\xfd\xa9\x8d\xff\xe6\x12\x29\x73\xea\x58\xf0\x3e\x0d\x4e\x55\xf6\xc3\x14\x69\x59\x28\x1a\x8b\xa7\xcf\xd9\xf1\x34\x07\x31\xa9\xa3\x1b\x6c\xec\x9f\x2c\xa5\xa9\x21\x85\xf1\x1a\xdb\x85\x2e\x09\x01\xbb\xb8\x2c\x96\xf3\xac\x69\x20\x14\x98\xf9\xca\xf2\x64\x39\x60\x5f\x2f\xa2\x49\xea\x7d\x0a\x37\xaf\x80\x2d\x90\xb1\xfb\xb4\x26\x6c\x5b\xc2\x45\xcc\x88\x41\x13\xfb\xb1\x60\x76\x21\x29\x3a\x53\xf3\x5c\x42\xab\x7c\xcc\x95\x28\x23\x7e\x79\xf6\xda\x3e\xe3\x19\x2f\x72\xe5\x34\xe4\xb3\x47\x07\x2a\xfc\x7a\x04\x57\x3e\x77\x5e\x03\x65\x91\x22\x8e\xa5\x42\x17\x8f\x55\x20\x3c\x7a\x02\x09\x86\x5e\xd4\x79\x30\x1c\x49\x61\x97\xc5\x4c\xe9\xc7\x13\x87\xeb\xa5\x5d\xce\xa3\x2c\xa6\x2d\x7e\x6c\xa9\x7c\xe4\xb4\xc4\x0d\x43\xa2\x59\xfd\x3d\x0f\x0d\x4c\xf4\x9b\xc0\x20\x1c\xa3\xc8\x1f\xf8\x9c\xcc\x9d\xfa\xc9\x5a\xc5\xe5\xd7\xc2\x20\xe4\xf0\xf3\xae\xe4\xf4\x6c\xe6\x74\x51\xfa\x7d\xeb\x62\x32\x1c\x56\x30\x76\x22\x44\x4e\xcb\x11\xb9\x42\x2c\x12\xd7\x45\x1e\x71\x4b\x84\x17\x01\x2f\x6c\xd2\x7c\x8d\x6d\x61\x12\x01\x3e\x6b\x02\x89\xb6\xe6\xe6\x18\x3e\x67\xf9\xca\x57\xb9\x5a\xd9\x6b\xd3\x7a\x24\xf6\xbe\x67\xad\x1e\x71\x40\x63\x24\x22\xe1\x6f\xd5\xa6\x3c\x15\xec\x78\x0a\xfc\x25\x33\x32\x90\xea\x96\x55\x05\xc0\x9d\xfe\x37\x4d\x4e\x55\x10\xed\x08\x76\xc5\x2c\xdd\xd0\x94\xf7\x4b\xa4\xe4\x99\xb9\x92\x45\x29\x37\xdf\x0c\x7e\x77\x50\xa2\x3c\x58\x42\xd0\xfc\xf1\xf5\xa3\xb4\x66\xa8\x10\xa6\x65\x83\x82\x8a\x9a\x28\x63\xd6\xce\x56\x03\xac\x45\x70\x29\x97\x0f\xfe\x72\x46\x91\x64\xa4\x85\x8e\xa8\x79\x68\xb9\x2c\xf9\x69\x2b\x36\xad\x5b\xb8\x58\xc6\x91\x89\xed\xe2\x62\x9b\x7c\xa8\x15\x95\xdb\x9c\x1d\x5f\x88\x63\x7e\xd7\x24\x40\x69\xff\xd7\x11\x15\xd8\xec\x79\xaa\x2f\x64\x76\xc0\x1c\xcd\xe2\xd0\xc3\x8e\x49\x35\x2f\x97\xac\x99\x55\x86\x5e\x53\x3b\xa6\xc1\x16\x63\x5b\x2d\x79\xbb\x11\x13\x62\x09\xe9\x95\x9b\xe5\xd8\x5b\x5f\xd6\x07\xd7\x2f\x4d\x3e\x69\x93\x56\x81\x41\x2e\xad\xc9\x7e\xb0\x84\xef\x40\x51\xc1\xf5\x24\xd3\x28\x35\x7e\x7f\xf2\xe2\x94\x19\xc6\x06\x9e\x10\x3f\xb5\xa9\x4f\x73\xd9\xab\x3b\xa9\xed\x39\x88\xd9\x61\x41\x18\x35\x82\x8f\x9f\x8f\x24\x53\x80\xe9\xc2\x78\x35\x96\x25\xb7\xc8\x8a\x97\x28\x65\x65\x6a\xc4\x5a\x01\xf9\x63\xa8\xc8\xf7\x0d\x6f\xce\x4d\xc6\x1d\x54\x29\xe1\xbe\xb4\x6b\x83\xcf\x6d\x18\xa6\x82\xf3\x00\x2f\x6e\xe0\x9c\xd7\x70\x60\x25\xe8\x75\xe9\x7c\x25\xea\x38\x82\xcd\x17\xf4\xd7\x16\xc8\x1e\xad\x12\xd7\x42\x35\x0d\x22\xb0\x77\xbb\x46\xd5\x23\x76\x58\x03\x35\xe0\x59\x24\x5b\xda\x13\x23\x78\x90\xb6\x48\x09\xe7\xf2\xc1\xd5\x09\x4f\x3d\x64\x01\x8a\x3d\xf8\xd1\x93\xca\xb8\xd8\x30\xeb\x88\xad\x0a\xcb\x56\x21\x38\x37\xe6\x96\xf8\x44\x4d\x99\x0a\xb2\x0a\xab\x3a\x9a\x34\x24\x3d\xdf\x16\x43\xf3\xcc\xf8\xf5\x82\xaa\xe5\x27\x0b\xc5\xec\xc4\xb9\xc9\x38\xc3\x90\x11\xcd\xc3\x32\xcf\x77\x08\x89\x5d\x16\xd5\x46\x99\xef\xbd\xa1\xed\x45\xc3\x38\x86\x23\x33\xc6\xf4\x97\x2f\x99\xa0\x95\x9d\x36\x10\x91\x89\x8d\xfb\xf2\x60\xcd\xec\x58\xaa\xc4\x49\xc6\x57\x65\xe9\x2b\x1e\x6a\xe2\xd4\x12\x03\x33\x57\x38\xe1\x5f\xa3\xc1\x15\xc1\x51\xc1\x8a\xe0\xb9\xe9\x5b\xc7\xc9\x1f\xe9\xda\xb4\x0e\x6c\xd8\xfa\xac\x64\x79\x8a\xab\x05\xe4\xba\x8d\x3e\xe5\x71\xff\xb6\x45\xa0\x3a\x80\x51\x2a\x64\x12\x3e\xd7\x22\xe7\xa5\x65\x8b\x78\x9e\x30\xd1\xed\xcd\xdc\xb5\x46\x07\x0d\xc6\xb5\x65\xea\x4b\xfb\xaf\xd3\x5a\x43\x9f\x79\x7d\xb1\x37\x53\x67\xb5\x9e\x4b\x18\xc7\x2b\xd2\x9c\x93\x47\x29\x60\x09\xdf\x40\x56\xc3\xf1\x60\x83\x9b\x9a\x38\x5f\x4a\x7f\x81\xa0\x5f\xea\x9e\x31\x8a\x25\x5a\xd8\x59\x72\xf8\xc1\x55\x4b\x93\x1f\xb5\x1b\xd7\x39\xac\x3d\xdf\x9b\xfa\x7a\x97\x0c\x7b\x35\xd8\x84\x40\x77\xd2\x19\x68\x68\x16\xea\x7a\x39\x83\xaf\x3b\x21\xea\x0d\xd1\x1c\x64\x5c\x0c\xcc\x6f\xa1\x70\x66\x1d\x48\xfe\xc6\x32\xa5\x45\x6e\x8c\x11\x3c\x3b\x51\x0a\x78\x74\x94\xc0\x5b\x6e\x6f\xab\xd6\x81\x60\x0e\x37\xf8\xe3\x5e\x1d\x52\x23\x30\x2c\x42\x45\x29\x3b\xbd\x5d\xb6\x34\xc4\x76\x3d\x04\x44\xeb\xf4\x8b\x07\xe3\x5f\x51\xa7\xb0\xdf\xfa\x9f\xa7\xf9\x35\xf0\x6d\x8e\x68\x88\x90\x37\xe9\x7f\x7f\x3e\x9a\x5e\x54\x71\x11\x8e\xcc\xda\x19\xc9\x48\x6a\x62\xc6\xef\x52\xba\x6b\x8c\xe2\xc0\x54\x27\xae\x6b\x50\x90\xe6\xaf\x5c\x10\x03\x30\x8f\x70\x30\x7d\xfa\xf9\x73\xed\x6a\xa5\x16\x95\x3b\x06\xec\x04\x82\xf3\x6d\x7a\x86\x17\x10\xa1\x87\x35\xf8\xb9\x61\x51\xd7\x67\x02\xee\x7a\xfb\xd6\xa1\xca\x28\xbe\x4e\x94\xce\x3d\xbd\xab\x53\x39\xfb\x26\x37\xbf\x4a\xf9\x23\xb4\x6d\x0a\xb1\x2c\xd1\x0a\x8e\x7c\x48\xa6\x10\x07\x95\xf9\xa3\x58\xf8\x32\x1f\x4c\x2f\xa5\x3d\xe1\xff\x3c\xb2\x70\xb0\xfa\x1d\xaa\x5c\xb9\x34\x75\xfb\x16\xf9\xc7\x25\xca\xb8\x6c\x6f\xb0\x7c\xb7\x1a\xca\xec\x12\x37\x2d\x4e\x1d\xdd\x14\x57\xb2\x16\x56\x2d\xbc\xfe\xb1\x4b\xb1\x0e\x72\x05\xbe\xb2\x73\x9d\x04\xcb\x81\xbc\x50\x95\x2b\x3f\xe4\x7b\x53\x63\x27\xb6\x2b\x19\x3b\xea\xe2\x45\x9d\x32\x70\xc3\x60\x85\x74\x86\x6a\x1c\x90\x95\x39\x7a\x38\x36\x47\x20\x8a\x7d\x6b\xfa\x4d\x85\xa3\x56\x40\xd5\x82\xcf\x60\xd6\xfe\xdd\x0d\xda\xac\x94\x11\x6c\x83\xe3\x5a\xb0\xe2\x60\xff\xd8\x8b\x89\xe6\xf2\x41\xee\x98\xbc\x92\x53\xa7\x4c\x95\x4b\xb7\xf4\x63\x67\xaf\x52\x26\xa4\xc4\xb2\xfc\x2a\xb1\xa3\x0f\x9a\xf9\x97\xf3\xaa\xd4\x08\xb1\x0d\xe2\x58\x7c\x20\x58\x67\x7a\xb3\x5a\x0b\x0f\x7a\x51\x1c\xf4\x4c\xfe\x4c\x9b\x56\x3f\xa3\x62\x47\x78\x49\x82\xb3\x4b\xe5\x9a\xc8\xab\x53\x3d\x01\x5e\x38\xa6\x19\xd6\x5b\xa8\x51\x67\xdc\xa3\x82\x07\xfb\xdd\xeb\x15\xe8\x0e\x66\x1e\xa0\xa2\x7e\x78\x44\xb3\xee\x9c\xde\x29\xe0\x25\x9b\x5f\x6e\x55\xde\xb4\xb8\x8e\xb9\x7c\xf0\xa9\x4e\x8d\xe1\x0d\x12\xb5\x26\xb5\x8a\x91\x52\xef\x4f\xb4\x85\x64\x54\x37\x8b\x1f\xfc\xa1\xc3\x42\xb3\xaf\x8a\x19\xe1\x11\x2e\x3b\x6e\x67\xff\xe8\x4c\x43\xc2\xce\x64\x16\x28\x2d\x25\x35\x39\xfd\x2b\x2c\x7f\x0e\x69\x72\xa0\x76\xb7\xcf\xa9\x1b\xa0\xdf\x2f\x38\x39\x55\xdf\x25\x06\x17\xf2\xcc\x16\x4f\x2a\xfa\x62\xdd\x80\x21\x08\x7f\xd0\x1d\x17\x14\x54\x8c\xed\x91\x5c\x9d\x56\x31\x9f\xb9\xd4\x5a\x55\xd2\x44\x84\xce\xe9\x4d\xdf\xfa\x8c\xdc\x8d\x4f\x03\xab\xa1\xf4\x77\x34\x12\x22\xf2\x3d\x1a\x53\xf8\x73\xf9\xe0\xe8\x96\x2b\xe4\x92\x0e\x2a\x9a\x42\xe4\xb5\x5e\x25\xe2\x48\xbc\xd6\x4f\x55\xa6\x0e\xab\x4e\x1b\x32\xf1\xc6\x7d\xf1\x9d\x62\xea\x8e\x3e\x35\xf8\xd2\xf7\x27\xa3\x07\xb6\x2c\x60\xb3\xd9\xb6\xd3\x8c\x3b\x59\x70\x54\x95\x9b\xac\x61\x41\x01\x79\xb0\x35\xf9\x43\x0a\x8c\x9b\xd0\xf5\xed\x0c\x30\xfb\x4c\x5c\x87\x73\x36\x95\x44\x5b\x8f\xdc\x9b\x9c\x8e\x96\x31\xab\x22\xbb\x11\x89\xa0\x87\x0f\x6e\x45\xcf\x70\x3d\xdf\x63\xdb\x25\x35\x0e\x98\x0e\x4e\xf6\xe3\xc8\x99\x39\xd8\xa1\x2e\x69\x16\x80\x39\xba\xa6\x4d\xcb\x31\xc8\x12\x40\x9f\x19\x8b\xa3\x81\x1f\xae\x21\xcb\x8f\x05\x0f\x3f\xbf\x4e\x2e\x9e\x89\x4a\x5c\xdf\xcc\x38\x11\x0e\x23\x16\x76\x3f\x9c\x6e\x03\xce\x65\xe1\x8f\x9b\x38\x2e\x06\xbc\xf6\xa5\x19\x31\x48\x18\xb3\xcd\x43\x0d\x18\xfb\xcb\x57\xd2\xb6\x4d\x87\x83\x63\x26\xe0\xe0\x99\x15\x85\x56\x65\x0a\xec\x7a\x58\x78\xdd\xd6\x77\xcb\xe3\x54\xb2\xe0\xf6\x1f\xf3\xfa\x38\x4e\xc8\x03\xe4\x3a\x28\x5e\xbd\xd0\xb7\x3b\x3d\x6f\xd4\x5e\x79\x92\x97\xdb\x53\x3b\x15\x7b\x91\xde\xcc\x99\xbd\x4d\x14\xf9\x6a\x64\xff\x99\xbd\xe5\x12\x05\x99\x47\x18\xd0\x86\x32\xf7\xbd\xa2\x6a\xfb\x81\x33\x69\x30\x6a\x8f\xa2\xf9\x10\x3b\xde\xc1\x01\x7e\x5d\x63\x8c\x16\x18\x29\x44\xb5\x35\xd2\xdc\xfc\x6d\xca\x81\x97\xa2\x7e\xfa\x3f\x17\x87\x28\x4b\x1e\x6c\x10\x64\xc1\xd0\x66\xc1\x30\x5d\x89\xde\x67\xc4\xad\x46\x90\xe0\x35\x8a\x66\xa0\x00\xb4\xe5\xf2\xc1\xa3\xdb\xa0\x25\xcc\xdd\x6e\x63\x56\xa6\xe0\x72\xda\x84\xe6\x49\x8d\xd3\xc6\x4d\x5d\xd3\x62\x01\xc8\x13\x9a\xd4\x4b\x91\xa1\x3a\x5f\x49\xc2\xcd\x3d\x37\x5e\xd7\xec\xc6\xac\x41\xed\xa8\x3d\xcc\xae\x3c\x9f\x7c\x79\x55\x5c\x06\x49\xcc\x55\xd1\x97\xfd\x58\x76\x60\x54\x82\x80\x69\x61\xf8\x67\xc6\x96\x81\x2a\x1d\x0a\x86\xa1\x6b\xb6\x5f\xa9\x66\xde\x02\x89\xb4\xbc\x32\x3f\x50\xc4\x09\x26\x77\x4d\xec\x9a\x31\x0d\xde\xd7\x3b\xe3\x86\xeb\xb1\x9f\xcb\xd0\x0a\x4b\xb5\x67\x2f\xb4\x2a\x49\x15\x15\x09\xd7\xdb\x08\x2e\x38\x7d\x05\x53\x41\xcb\x08\xa6\x6a\xac\x17\xa8\x84\x62\x8e\x64\xf0\xc0\x99\x11\x5a\xa6\x8a\x65\x39\x79\x1a\xb8\x91\x0d\x89\xbb\x3f\x0b\x47\x96\x60\xbd\x99\xe5\xcf\x0e\x52\xd2\xb2\x0b\x89\x3f\xf8\xe5\x43\x57\x29\xed\x72\xf8\x7c\xd4\x55\xc8\xe7\xc6\x0a\x0d\x33\x5a\x2d\xf0\xd1\xe9\xab\x07\xf8\xb3\x2c\xe0\xf0\x34\xc3\x4a\xaf\x3b\x2d\x1f\xdb\xa4\x99\x1d\x5d\x31\x4c\x39\xdb\xb5\x33\x99\xb2\x18\xce\x45\x38\x2e\x31\x8c\xf9\x51\xb7\x70\xcb\xbe\xfe\xae\x2a\x8a\x23\x7e\x6a\xca\x22\x25\x04\xab\x30\xd8\x4f\x3c\x9b\x3c\xf2\x35\xda\x40\xe5\x48\x73\xc5\x3b\x2a\xef\x14\xf3\x09\xdc\xdc\xb5\xf3\xa5\x84\x8f\xcb\x7b\xeb\x60\xab\xa2\x51\x5a\x47\x56\x44\x3e\xd1\xac\x9a\xca\x0c\x15\x7d\x10\xfe\x86\xfd\xd7\x05\xe1\x61\x5a\xa2\x8c\xaf\x1e\x83\xe5\x1d\x02\x6a\xef\x87\x7d\x00\x57\x07\xca\x7c\x7b\x80\xe2\x7e\xcb\xa2\x16\x63\x99\xa9\xca\x00\x78\x39\x8f\x42\xeb\x7f\xea\x65\x25\x45\xd6\x90\x70\xc4\xdb\xff\xbc\x3c\x9a\x39\xe6\x73\x8b\xf2\x57\x65\x64\x28\x31\x0a\x44\x90\x3b\xb6\xb5\x8a\xaa\x18\x33\x62\x91\x55\x51\x10\xce\x4c\x3f\x35\x44\xbb\x4f\x5c\x5e\x6c\xea\x02\xc5\x90\xb3\x8e\x6d\xaf\x01\x05\x4d\xbe\x37\xf5\x89\x73\x4d\x72\x36\x42\x4c\x55\x2c\x34\xef\x4a\x6b\x6c\xfb\x52\x58\x57\x00\xcf\xaa\x55\x8e\xdd\xeb\x66\x23\xec\xba\x17\xc8\xed\x64\x21\xfc\xfc\xb2\x2a\x0d\x8e\x2b\xb7\x0e\x71\x85\x8f\x7b\x5e\x1d\x9c\x40\x9d\x41\x4a\x08\x9e\xd5\x95\xe9\x10\xf3\xa2\x99\x64\xca\x1b\xa6\x4d\x27\x00\x07\xeb\xf4\x01\x1c\xdb\xb6\x36\x31\x01\x88\xd4\x1f\xbf\x6b\xea\x5a\xa1\x04\xca\xdd\x1a\x6f\x05\xd2\xbf\xd8\x71\x45\xf4\xb2\xb9\x0e\x57\x6a\xe6\xdb\x6d\xca\xab\xc2\x0c\xa8\x59\xbc\xb2\xb8\x73\x9e\x26\x08\x55\x66\x38\x96\xa1\x1d\xcd\x85\x34\x72\xb7\x01\x9a\x59\xd5\xaf\xdf\x65\x2b\x2d\x05\xb6\x21\xd8\x1f\x5e\xaa\x0c\xd9\x0d\x50\x56\x20\xae\x29\x84\x4a\xb2\x1b\xba\x25\x92\xd5\xc3\x56\x2e\x1f\x3c\x7f\x63\x93\x26\x79\xe4\xb6\x9e\x14\x35\xcd\xfc\x71\xa7\xa6\x27\xcb\x04\xae\x36\x75\x76\x7f\x5c\x2a\x79\xc8\x0f\xff\x64\xd6\x85\x26\x2c\x6c\x8d\x4b\x8e\x05\xaa\x6a\xb3\x61\x21\x56\x51\x58\x86\x27\x47\x68\xcf\xd4\x60\x18\xb9\x52\x32\x66\xd1\x5a\x2d\xb7\x44\x7a\x97\xbc\xa4\xf8\xa9\x86\xc2\x70\x31\x62\xdc\xa9\x11\x8a\x95\x7f\x3f\xa9\x2d\xe2\x3d\x0f\x19\x15\x00\x8d\x4f\x2d\xc5\x88\x2c\x1b\xfb\x4d\x85\xd8\x3b\xfd\x87\xa8\x7d\x16\xa8\xe0\xe7\xf2\xc1\xad\x02\x52\x1b\x03\xd0\xe1\x3d\x1f\x3e\xa8\x10\x90\xee\xf7\xf9\x61\x7c\x53\x01\xc7\x35\x10\x2b\xa2\x32\x0c\xb7\x96\xd7\x92\xf3\x2b\x93\x56\x71\x33\x9a\x25\xf3\xf5\x0e\x19\x77\x69\x8d\x93\xc4\x7b\xb3\x37\x3c\x31\x4a\x39\xf6\x3e\x9c\x8e\xb0\x8b\xb5\x81\x35\x27\x6e\xf2\xbf\x6e\x6e\x89\x3a\x9d\xaa\x83\xc5\x36\xfa\xd9\x91\x3a\x2a\x8c\x54\x29\x73\x2b\x8d\x88\x3a\x16\xdc\xb0\x5e\xb3\xfa\x64\x18\x55\x14\x37\xad\x55\x4a\x33\x59\x60\xbe\x2b\x2c\x60\xb6\x1d\xbd\x5c\xd4\x83\x18\xc2\xd3\xed\xa7\x12\x72\x36\x8e\xef\x71\xe7\xab\xbd\x73\x94\x29\x39\xf3\xcb\x2a\xdf\x7c\xe7\x76\x7d\x2e\x61\x45\x53\xe1\xd4\xd7\x15\x8f\x3c\x54\x88\x01\x75\x6b\xcd\x16\xd1\x97\x70\x71\x3b\xf8\x39\x9f\x3e\xa3\xc3\x09\xad\x08\x76\xf1\xe8\x53\x9a\x64\x1b\x43\xe0\xa2\x18\xc6\xce\xd3\x9d\xf1\x51\x20\xc6\xfd\x4d\x70\xe8\x95\x59\x45\xb6\x47\x5a\x0e\xac\xd6\xee\x46\xc7\x8c\x88\x59\xf9\x70\x24\xb4\x5a\x2d\x90\xd8\x4a\x38\x7d\xe7\x08\xad\xea\x0c\x0b\xb3\x3a\x9c\xc5\x27\xb6\x0f\x51\x57\x3d\xc8\x35\x41\x63\x3b\xf3\xee\x76\xd1\x7e\xf8\x05\x3e\x4a\x4a\x3f\xf6\xb4\xfc\x9b\x62\x10\x07\x45\xc5\xac\x82\x88\x3d\xd0\x43\x42\x7d\xa9\xf9\xcc\x03\xcd\x46\x82\x06\x52\x93\x1e\x8e\x9b\x04\x13\xf8\x9f\x12\x0b\x37\xf2\x8c\xae\xb0\x41\x9d\x08\x0d\x9c\xf9\x78\x41\x17\xf9\x61\x58\x7c\xf1\x97\x46\xe8\x90\xa8\x18\xe0\x06\xad\xbf\xb5\x50\x71\xe3\xa2\x96\x85\x15\x91\xcb\xcc\xa7\x6c\x45\x69\x2c\xb2\x99\x11\x2f\x7b\xcf\x1b\x71\xb6\xf0\x59\x78\xaf\x9f\x7d\xed\x0a\xe5\x1e\x00\x73\xb0\x47\x1e\xbb\x86\xf4\x3a\x0d\x6e\xd2\xa4\x23\x90\x15\xd6\x54\x82\xae\x19\x8c\xe4\xb2\x7c\xb9\x05\xa8\x44\x6d\x0f\x25\x25\x9b\xbf\x7c\x4a\xb8\x62\x83\x42\x59\x70\x8f\x72\x10\x1d\xe2\x7a\x14\x8a\xdf\xf4\x27\x27\xca\xc6\xa0\x6b\xca\xf4\xf0\x39\xfc\xdf\x35\x4d\x28\x44\xe4\x38\x18\xf1\x8c\x9a\x4d\xf7\x68\xb8\x38\x64\x95\x72\x75\x24\x94\x70\x52\x07\x6b\x12\xc5\x50\xa4\x86\x1f\x06\x72\x24\x66\x86\xe9\x15\xfd\x35\x77\x38\xea\x9a\x60\x5d\xec\x6b\xeb\x88\x91\x02\xe1\xf4\xa1\x5b\x17\xcf\xb9\x7d\x61\x54\x22\xfd\xbc\x4b\x89\x2a\x20\x6c\x97\xcb\x07\xeb\x9c\x36\x55\xa2\xe4\xee\xc5\xb3\x27\x2c\xe4\xc6\x57\xd9\x6c\xff\x76\x15\x5a\x56\x2d\x90\xb2\x4f\x7d\x97\x6b\x1a\xfe\xbf\x35\x3a\x3e\x53\xe8\xe7\x05\x3f\x7a\xe0\x1a\x25\x4b\x39\x66\x98\x6a\x9b\x1a\xb4\xd4\xcf\x95\x21\x2e\x71\x5d\x3f\xd6\xcf\x4a\x7f\x57\xa3\x3d\x42\x27\xcc\xcb\x91\xb7\x8b\x0a\x1e\x96\xc3\x2c\xf2\xbd\x99\xfc\xe8\x76\xad\x9a\x47\xf1\x88\x2e\x33\xf0\x94\x5e\xa7\x94\xa2\x7a\x92\x7b\x3c\x7c\xe4\x8d\xb8\xfc\x2a\xf8\x31\x02\x63\x6c\xb7\x6e\x09\x5f\x8d\x0e\xfa\xbc\x7d\x1a\xdd\x46\x4e\x60\x53\x2f\x6f\xd3\x28\xdc\x18\x59\x9e\x29\xd2\xd5\xdf\x9e\x6b\xd7\x53\x6f\x01\x33\x51\xd6\x0e\x7d\x6b\x68\x53\x88\x16\x93\x89\xb9\xda\xa8\xd8\x0d\x73\xab\xf8\x85\xeb\x4e\x29\xc9\xc7\x61\xa8\x0e\xaa\x96\xdf\x5a\x29\xff\xb4\xce\x30\x9f\x80\x66\x1e\x2b\x5c\xa3\x35\x78\x35\xea\xd9\x48\x54\x41\x51\xbd\x7c\xf9\x1a\x6d\x68\xc4\x85\xc3\xab\xd8\x16\x0b\xcb\xbb\x76\x36\x31\x02\xaa\xc4\x8d\x94\xc5\xdf\xd9\x28\xd0\x43\x3e\x98\x97\x37\x21\x6d\x47\xab\x2c\x1e\x97\x70\xe9\xbb\x60\xf2\x71\x5e\x98\x2e\x86\x69\xbe\xf2\x69\x6e\xed\xd0\x95\xd3\x61\xf0\x01\xf9\xfd\xd3\x47\x75\x60\xaa\x55\x54\x62\xdc\xc2\xc7\x74\xe5\x0c\xcc\xb5\x14\xf8\x4d\xfb\x95\xc7\x2f\xf8\x12\x13\xf0\xe2\xce\xba\x16\xe5\x41\xd2\x4a\xf8\xa9\x3e\x52\x88\xa8\x0a\x62\x1d\x0a\x27\x7f\x99\xc2\xe2\x35\x4c\x46\x5c\xfe\xc7\x7f\x39\xa0\x98\x3b\x76\x76\xe5\xf2\xc1\x73\x2f\xca\xa8\x24\xb8\xeb\x20\x00\x93\xfe\xc2\x0c\x45\xe3\x9e\x14\xb1\xc5\xa5\x86\x82\x7f\x1c\xd3\x66\x0a\x86\xc7\x38\x26\x5a\x08\x1c\xed\x3a\xa7\xcc\x4a\x94\xc7\x94\xdd\x54\x52\x5c\x2d\x1c\x52\xc4\x55\xae\xa6\x5f\xed\x7f\x65\xe2\x76\x2f\x12\x97\x3b\xf8\xfc\x13\x8a\xe4\x9a\x6f\x79\xa4\x4a\x2c\x2b\xcc\x55\x45\x6a\x01\x93\x34\x68\x3d\x24\x87\x98\x15\x44\xaa\xb4\x4e\x3c\x45\x3c\x24\xfd\x95\x27\xa2\xd5\x0c\x0c\x1c\x41\x5f\x6a\xd5\x3b\x4a\x82\x62\x65\x64\x8b\x2f\x6c\xad\xe7\x49\x71\x91\x85\x04\x7d\x10\x7a\x1c\xe7\x79\x6d\x5f\x61\x52\xa3\x22\x2d\xa2\xfe\xbc\x75\x68\x72\xee\x27\x4c\xee\x00\xc3\xc9\x83\x44\x6e\x01\xf5\x8b\xd8\x2e\x62\xee\xd5\x08\x57\xf7\x9f\x1b\xd4\x16\xda\x35\x22\x23\xe1\xf4\xc7\x17\xcb\x66\x06\x1e\xfa\xfd\xbe\x10\x08\xde\xbd\x56\xd9\x22\x90\x9e\x1c\xa3\xb0\x45\x48\x6f\x56\x68\x5c\xf7\xfb\xc2\x17\x37\x98\xb3\x5f\x5f\xd3\xd9\x86\xb8\xe3\x69\xba\x51\xd1\xb2\x20\x5c\x98\x38\xe3\xed\x8f\x5f\x9b\xdd\xad\x98\x30\xa7\xff\xa9\x6b\x50\xd2\x2a\xe6\x26\x41\x7c\x1a\x30\x7c\x9e\x18\x92\x62\xcb\x2b\x72\x63\x93\xd4\xaa\x53\x9a\xe2\x33\x2a\x58\xd1\xe5\xfb\xf2\x45\x7d\x01\x64\x7b\xb1\xc2\x68\x80\x16\x4b\x8e\x84\x90\x7f\x6f\xd3\xa5\xce\x2b\x22\xb2\x04\x0f\x79\x0a\x40\x82\x9b\xaa\x04\x95\x65\x52\x39\x0b\x95\x94\xb3\xf0\xe4\x0c\xf9\xfc\x2a\x26\xb5\x68\x11\xe8\x12\xaf\x6b\xa9\xd0\x41\x9e\x89\xf9\x88\x0c\x7a\xfd\xf5\x83\x94\x39\x55\x8d\x5b\x0e\xa5\x7b\x14\x9b\xf3\x30\xf4\xf3\x12\xe7\xb9\x1b\x35\x9d\x5e\x60\xa5\xe5\xf2\xc1\xa5\x4f\x34\xe9\x62\x30\xee\x7d\x95\xbe\xfd\x79\x05\x52\xe0\xbb\x16\x80\x3c\x9e\xda\x28\x49\x97\x14\x1e\xda\x7b\x0e\x68\x50\x7a\x86\x71\x2c\x57\x9e\x76\x46\x0d\x56\x46\xf1\x76\xf8\xf1\x21\xe7\xf4\xd3\x45\x6d\x61\xc3\x4c\xe4\x5d\x45\xc2\x1b\x5c\x98\xa6\x87\x99\xb1\xfe\xb2\xdc\x81\xa1\xf0\x0f\x32\x47\x86\x2b\x47\xb5\xe4\x97\x71\x62\x60\x9b\x1e\xfc\x72\x6b\xd4\x83\x94\x88\x97\xf3\x50\x45\x4c\x97\xbe\xb2\x45\x1e\xcc\x12\xb2\x3d\xe4\xc2\x28\xa1\x74\x5c\x29\xbf\x91\x6f\x20\x97\x5b\x94\x7c\x6d\x83\xe2\x7a\x5e\xc3\x2c\x6c\x37\x21\xeb\xf4\xdb\xab\x5b\x74\x18\xb2\xea\x0f\x8e\x2f\xbc\x4e\xbb\x9f\xd8\xb2\xfa\x02\x86\xa7\x7f\x50\x52\x77\x2c\x45\xe0\xf4\x33\xec\x21\x6e\xc8\x54\x3e\x28\x27\x46\x05\xe4\xe2\x04\x22\x2f\xf3\xaa\x46\x10\xe5\x8e\x54\xc8\xe2\xfc\x82\xcc\x2f\x77\x69\x35\x1c\x13\xae\x0e\xfc\x3f\x7f\xeb\x34\x7f\xcc\xa4\x1a\xf6\xfb\x1c\xb5\xb0\x52\xc8\x42\x4e\xeb\x9c\x94\x48\x3e\xa7\x1f\x53\xdc\x6c\x68\xe4\x40\x19\xd4\x2e\x53\xc2\xb1\xc1\x90\xe3\x08\x52\xf9\xdf\x6e\x4e\xbe\xe4\x1a\xb5\xc2\xae\x0b\xc7\xcc\x98\x74\x75\xa7\x8a\x79\x75\x0d\x61\xa4\xb2\x63\xbb\x44\x8b\x95\xd4\x38\x7d\xcd\xee\x36\x15\x2d\xc4\x30\x38\xc1\x43\xfb\x72\x4e\x79\x77\x08\xf6\x2d\x98\x83\x31\xaf\x7d\x95\x2f\x5c\x3c\x13\xd9\x95\x5c\x3e\xf8\xfb\x41\xfe\x8d\x67\x23\x97\x00\x83\x33\xec\xfa\xde\x52\xe6\x58\xd4\x77\xa1\x7e\xfb\xc8\x00\x79\x2b\xb9\x8d\x19\x7f\x3c\x93\x6e\x51\x9b\x2a\xca\x95\x0e\x7b\x33\x3d\xb2\xab\x2f\x92\x30\x1d\x75\xbc\xac\x33\x77\x41\x27\x2b\x82\xc4\xbd\xbb\x35\x79\x3a\xec\x8e\x42\x07\xea\x68\x06\x9a\xf5\x66\x4d\x5b\x2b\x60\x00\x2d\xc6\xe1\xd8\x7b\x9e\x94\x95\x7f\x8d\x58\x54\xe2\x21\x82\xaf\xb4\x24\x9b\xe5\x1a\x66\xae\x59\xa0\x75\x6d\x4e\x31\xe4\x39\xc5\xcb\x04\x5b\xa4\x4c\xe2\x22\xf5\xf5\x13\xb1\x36\x89\xed\x47\x09\x22\xf3\x60\xcf\x00\x91\x03\x4a\xc8\xe0\x1a\xe3\xa7\xfa\x6b\xdb\x78\xdf\xf5\x26\x70\xa8\xf0\x67\xbc\x24\x4c\x8e\xd0\x3e\x09\x87\xa9\x7f\x4c\x8c\x17\x12\x46\xb3\x80\x69\xea\x7b\x0f\x69\x23\x1f\xcb\xa2\x75\x61\x39\x91\xcd\x1f\x4e\xe2\x55\x22\x59\x8d\x66\xc0\x6e\xe6\xfa\xfd\x2a\x1c\xda\xc2\x5c\x35\x34\x33\x75\xf1\xd5\x5a\x99\x6b\x71\x20\xa2\x49\x9c\x68\x5c\xb2\x44\x1b\x61\xd1\x1a\xc1\x45\x3a\x61\x56\x54\x78\xb7\x3d\x93\xdc\xf9\xa3\x0e\x91\x86\xde\x73\x46\x39\x9a\x91\x48\x46\xf8\x1f\xee\xed\x14\x4d\x92\x58\xf2\xdf\xa3\xe1\xa7\x19\x71\xa9\xe7\x51\xb1\x5d\x39\xfc\x74\xdc\x69\xd7\x9a\xcc\x03\x82\x47\x6f\xd6\xc2\x00\x72\x5d\xec\x79\x51\xd5\xbd\x62\x85\x3c\xe1\xd4\xc1\x7c\x9d\xb1\xe2\x38\x5f\x8f\xcf\xe8\x98\x9a\xcb\x07\x2b\x2e\xe5\x17\x65\xd2\xcc\xe9\x9d\x50\x01\x4e\x5e\x2f\x8d\x33\x8b\x7e\x44\x3d\x7a\x6c\xa5\xa0\x1e\xf9\xb6\x20\x84\xa7\xee\x1f\x2d\x0c\x4e\xb1\x4d\x38\x97\xaf\x37\xfd\x5c\x51\x57\xf0\x08\x4b\x53\x51\x3c\x6e\xd8\x2a\x97\xe8\xbe\xb2\x44\xcf\x1c\x5f\xa5\x72\xa4\xe5\x94\x23\x73\xd3\x8e\x64\x6d\x07\xc3\x3d\x87\x41\xe1\x0c\xd3\xe2\x1f\x3d\x2b\xab\x9d\x32\xad\x61\x66\xff\xff\x94\xbd\x7d\xbc\x55\x55\x9d\x3f\xee\x79\x90\x14\x91\x67\xae\x80\x88\x48\x88\x26\x9c\xeb\xe5\x02\x97\x07\x09\x91\x14\x51\x91\x43\x88\x68\xa6\xc4\x3a\x7b\xaf\x73\xf6\xba\x67\xef\xbd\xb6\x6b\xef\x7d\x0e\x07\x91\x48\xcd\x07\x34\x72\xcc\x18\x32\x63\xcc\x31\x73\xc8\x71\xcc\x21\x33\x32\x43\x33\xc6\x1c\x72\x18\x33\x53\x87\xc8\x88\x8c\xc8\x21\xc6\x88\xf8\x92\x77\xf7\x7b\xed\xcf\x5a\x7b\xaf\xb5\xd7\xb9\xfd\xf1\xfb\x67\x7a\x0d\xc8\xbd\xe7\xec\xbd\xd6\xe7\xf1\xfd\x00\x77\x21\x0e\x50\xff\xe8\x6a\x9b\xdf\x39\x33\xa7\xf3\xee\x66\xfd\xb3\x92\x28\x3f\xad\xa7\xab\x0b\x4c\xeb\xa6\xea\x49\xdd\xf6\xb1\x70\x9a\xbb\xf6\xa5\xf3\xb4\x56\xc2\xa6\x4e\x8a\x66\xcb\xc6\xf4\x27\x3d\x05\xf4\x84\x2a\x8c\xb8\x8a\xae\x46\xe1\xc9\x07\x94\xdf\x3c\xa7\x67\x56\xa9\x1c\xfd\x4d\x09\xf3\xd0\xb4\x75\x9e\x67\xd1\x26\xe6\x0e\x64\xb9\x3f\x9c\xaf\x78\xc7\xb8\xc4\xe1\x72\xb5\x05\xff\xb8\xb8\x8c\x8c\x7a\xa5\x0a\x3c\xf9\xc1\x2b\x52\x47\x55\x52\x17\xe2\xeb\x8b\x8f\xf2\x90\x7e\x39\xcd\x2c\x58\xf3\xeb\xbb\x34\x69\xe1\xc4\xe1\x5f\x4c\x1d\xe6\x3e\xa3\x6b\x23\x60\xe4\x72\x1e\x61\xce\x7c\x76\x44\x46\x25\x4e\x70\x91\x8b\x8b\x9f\xcb\x96\x14\xd3\xa6\x95\x92\x92\x14\x69\x9e\xd5\x71\x3f\x61\xa9\x42\x99\x85\x1d\xa6\x22\x81\x13\xda\x5c\x07\xf0\x93\x1a\x5c\xb6\x1a\x02\xc7\x9a\x2f\xd9\xf7\x5f\x30\x48\xc4\x73\x97\xf7\x69\xef\x3d\x7f\xb6\x5e\x16\xeb\xa2\x14\x85\x27\x26\xe8\x8e\x82\x41\x40\x69\xe2\x65\x5a\xc4\xeb\x75\x87\x1c\x8c\xea\xa8\x89\xb8\xdc\x76\x14\x5c\x29\x33\x9e\x45\x1c\x64\xa3\x16\x97\x01\x9d\xdf\x3b\x38\x29\x38\x02\xa8\xc7\xa2\x99\x4f\x8f\x56\x89\x89\xc0\x16\xac\x25\xa8\xc1\xa9\x62\xf0\x64\x62\x1b\xc3\x5e\xef\x63\x0f\xa4\xd5\x95\x0d\xb5\xf2\x70\xa5\x30\x20\xb6\xcd\xc5\xe4\xcc\x64\xbf\xb4\xea\xc1\x34\x66\xb2\x40\xc7\x49\xf4\xe5\x82\xc5\x43\x45\x71\x58\xb5\x93\x49\x5a\x6e\xed\xf3\xd9\xcb\x60\xcf\x99\x3d\x0b\x10\x21\xff\xb0\x5d\x97\x7e\x8b\x7b\x33\x07\x09\x04\x6b\xe1\x1f\xee\x9b\xa4\xb5\x8b\x61\x7f\xf4\xaa\xbe\xdc\xb2\xf7\xa5\x88\x8b\x1b\xd7\x98\x07\x8a\x5a\x57\x4f\x1d\xe4\x8a\x8d\x5d\xe1\x57\xeb\xb4\x49\x01\x70\xba\x40\x0e\xec\xb3\x3b\xd3\xba\xdf\x43\xaa\xa7\xcb\x9d\x7a\xe3\x63\x84\x30\xc6\x14\xeb\xb8\x68\x55\xea\xa5\xd5\xb4\xf9\x05\xc8\x4f\xd8\xa4\x08\x28\x12\x9b\x04\x40\x83\x71\x15\x61\x91\xc0\xa2\x0e\x54\x95\x57\x9d\x18\xa3\xdf\x09\xce\x70\xae\x95\xca\xd1\x9b\x2f\xb5\xed\x6d\x02\x14\x32\xe4\x0a\x6c\x6a\xe1\x62\x53\xde\x0a\x16\xfa\xd8\xf4\xeb\x24\x3e\x52\x53\x7b\x34\xe7\x3a\xa8\xd8\x05\x01\x57\x18\x70\x5d\xf8\xae\xbe\x06\xa8\x21\x83\x3b\xd5\x14\x2f\xfc\x50\x83\xd3\xe0\x44\x8a\x89\x67\xa7\xed\xf3\xb3\x0f\xb9\xee\x92\xaa\x50\x2b\x8f\x76\xce\xeb\x50\x77\xcf\x88\x59\x18\xf1\xb2\xa9\xf0\xc8\x56\xd9\x76\xd7\x10\x24\xf3\x5e\x2f\x39\x36\x21\x98\xd1\xc1\x47\xbb\x62\x27\x17\xbe\x98\x99\xf2\xf1\x75\x76\xd7\xc7\x3b\xf5\xb9\x53\x22\x71\x9a\xdb\x75\xf7\xe9\xe2\x17\xb8\x35\x8e\xbd\xec\xbb\x4f\x27\x4c\x53\x10\x5f\xe5\xdf\xe5\x7b\x0f\xc8\x92\xc4\x24\x58\x5e\xdc\x68\xbf\xd4\x7c\x61\x35\xf8\xb4\x67\x5f\xaa\x73\x6d\xe6\x74\x27\x67\x2b\xef\xf1\xa8\x77\x0d\xc2\x58\x25\x62\x7c\x7b\x78\x16\x51\xed\x59\x71\xf7\xee\x65\x04\xb3\x0b\x3f\x53\x22\x91\x4f\x43\x58\xbc\x4e\x79\x53\xd9\x2a\x22\x1b\x31\x2e\x65\xf2\xa7\x0f\xd2\x83\x6a\xa3\x86\x9c\x9f\x8e\xec\xce\xee\x0d\x44\x4f\xcf\x2b\x0b\x9e\xb6\x1c\x96\xe2\xb0\xb8\xe5\xcd\xd3\xd9\x08\x19\xba\x08\xfc\xd3\x4b\x2e\x75\x41\xb3\xbc\x78\x79\xb7\xd6\x3a\x51\xdf\x48\x8b\xba\x38\xdd\x9d\xd6\x7b\x86\x72\x02\x6d\x95\xdf\x5e\x9c\xd8\xd9\x36\x7c\x02\xb7\x7c\xce\x4d\xda\x2e\xad\xe4\x6d\x1a\x87\x9f\xcf\x4d\x4a\x0b\xc0\x3a\xc0\xba\x61\x42\x30\xea\x1d\xd5\xe6\xdc\x0f\x78\x35\x51\xbc\x7d\x5e\x5a\x2e\xd4\x5b\x89\xe4\x9f\xb5\x4c\xd2\x9d\x78\x51\x49\xb7\x6a\x5d\x11\x35\x0c\x3e\xc6\xd3\x6b\xb5\x9b\xaf\xd7\x88\x9a\x09\xf1\x32\x31\x27\x2e\x8c\x3c\x98\x70\xbb\x4b\x3e\xa9\x09\x90\x7f\xe1\xcd\xe3\xd9\xc7\x1e\x9f\xf6\x9b\x43\x50\x76\x11\x80\xcd\x4f\x0e\x12\x11\xc2\x0e\x5d\x01\xf7\xfb\xf1\x24\x9d\x11\xee\x13\x9c\xd8\xf3\x15\x1e\xd4\x4c\xcd\x1a\x04\x37\x13\x3b\xfa\xe6\x73\xda\x6e\x02\xd9\x75\x41\x74\xce\xd1\xd7\x20\x39\xd9\xd8\x2d\x4d\x8b\x5f\x6f\xa1\xaa\x95\x31\x89\xc8\x4a\xf2\x0f\x6e\x1e\xad\x63\x8c\x8c\x3a\xa8\xac\xcb\x95\x6e\x71\xbd\x32\x46\x50\x04\xb8\xf3\xff\x73\xbf\x6c\x58\x7a\x91\x1b\x8a\xe3\x99\xfb\x7f\x4f\x28\xf8\x46\x86\xb1\x68\xcf\x7e\xb4\x54\x66\x31\x64\xe2\x9b\x43\x14\x70\xd4\xe4\xb6\x43\xd9\xe7\x0e\x04\xb8\xd0\x0f\xaa\x21\xf7\xd5\x89\xfe\x63\xc0\x04\x2d\x7b\xda\xc9\xfe\x33\xbd\xa9\xff\xaa\x79\xcf\xe3\x35\x24\x51\x4d\x29\x14\x97\x7e\x34\xfd\xcd\x75\x86\x7c\x97\xb6\x10\xf3\xeb\x7a\x49\x3b\xe4\x99\x74\xcb\xd2\x04\x99\x30\xd9\xf4\x96\xe6\x4b\x79\x77\x0f\x19\x75\x54\x6b\x57\xb1\xdd\xb5\x51\xb3\xa2\xa6\x81\x05\x0e\x0e\x3c\xc7\x7f\xfa\x11\x7d\xd6\x8c\xeb\x02\x1d\xd9\x97\xdb\xb1\x50\x36\x73\x2c\x0e\xa1\xd5\xbd\x3a\x94\x92\x3a\xc2\x1f\xd4\x5f\xc7\xb1\x52\x60\x87\xeb\x88\xa5\x15\x44\xb9\xcf\x1e\xd6\x0d\x49\x1c\x07\x07\x41\xb6\x01\x2b\xae\x50\x24\x9c\x4c\xda\xe0\xbb\x8a\x39\x8b\xf5\xc1\x2d\xa3\x61\xcd\xe2\x73\xaa\xdb\x5f\x51\xda\xe0\x54\x9f\x08\xe2\xf4\x7f\x1e\x49\x9b\x84\xc0\xad\xb4\xe5\xe6\x43\x47\xb2\x9f\xc8\x41\xae\x89\x6d\x24\x4c\xb5\x93\x4f\xe4\xf5\x28\x3b\x7c\x42\x03\x91\x43\xef\xba\x41\x83\x05\x39\x1e\x61\xdc\x79\x0e\xe2\xc2\x1d\x9e\x2c\x47\x6a\xed\x4e\xeb\x3f\x79\x59\x7e\xcf\x9a\x1d\x82\xad\x74\xee\x62\xcd\xbe\x89\xd1\x4a\x05\x03\xd3\xa0\x1c\xbd\x38\x4f\x17\x11\xf0\x30\x70\x5e\x78\x13\xf1\xf4\x38\x99\xba\x0c\x0c\x03\xc7\xa7\x37\x6a\x84\x30\x2c\x5a\xc4\xfc\xdd\x4f\x9d\x26\x6a\xed\x99\xb0\x66\xba\xf8\xe0\x10\xa5\x84\x83\x1d\xd5\xef\xdf\xd4\xc0\x5d\x00\x1c\x17\x55\xe6\x4d\x07\xc7\x68\xe9\x1b\xea\x30\xd1\x5d\xe1\xc5\x8a\x8e\x8f\xa5\x00\x30\xa2\xf7\xef\x96\x72\x17\x15\x6c\xd7\x84\x97\x8e\x1c\xaa\x1c\xb5\x65\xc9\x47\xbd\x52\x39\xfa\xa1\x36\x35\x31\xb0\x1b\x70\xe0\x27\x80\x1e\xcb\x7d\xc5\x93\x3b\x85\xf7\x2c\xf2\xb9\x26\x48\xb9\x2f\x77\xd7\x00\x5d\x58\x9d\x36\x38\xfc\x86\x97\x0f\xb3\xa6\x66\x03\x8f\x4b\xdd\x92\x41\x99\x94\xf4\x39\x7f\x1c\x0f\xa5\xb4\x12\x27\x04\xd2\xe0\xa1\xe0\x4e\x5d\xfc\x95\x48\xb8\xfc\x5f\x1f\xd7\xf6\x46\xa1\x8f\x43\xe1\x43\x90\xb3\xb4\x2d\x07\xe7\x5d\x24\xfa\x0f\x35\xad\x56\xa0\x4d\x37\xf1\xc3\xbe\xb8\xaa\x83\xad\x02\xfe\x79\xc4\xd6\xe2\xe3\x8f\xf3\x9e\x75\xc6\xcc\xb8\x5b\xcb\x3d\x92\xd7\xc2\xb6\x1d\xfa\x16\x4e\x90\x16\x0b\x6f\x48\x43\xe5\x5a\xaa\x00\xa6\x8b\xc5\xfb\xb2\x13\x03\x12\x04\xc4\x42\x26\x69\x21\x8d\x12\xdf\x97\xff\xd2\x7d\xca\x50\x90\x11\xcf\x13\x3c\x8a\xdc\x6d\xa6\x7e\x3c\x61\x35\xe6\x8b\xc9\xda\x47\xe7\xb5\xed\x90\x9d\xb8\x39\x4e\x9e\xc1\xf5\xf9\xec\x59\xc5\x28\x14\x8d\x7e\x5d\xf3\xe7\xac\x52\x69\xf8\x52\x2a\x47\xd7\xba\xd9\x14\x01\x4a\x12\x36\x07\x14\xf3\xf0\x55\x1c\x33\x57\xa1\xcf\x77\xcf\x84\x57\x79\xd7\x3a\x99\x1d\xe2\xfe\xb8\xce\x5d\x65\x8b\xcb\xb5\x4d\x64\x40\x13\xd2\x4c\x7e\x77\x51\x1d\x0d\x71\x7f\x1d\x31\x6e\x7b\xfc\xc0\x10\x05\x62\xc1\x3d\x6e\x37\xcd\xcf\xa6\x05\xc7\xb0\xe2\x90\x95\xe9\xbc\x72\x6f\x89\xbd\x91\xc1\x81\xa8\x39\x47\x73\xb0\x77\xc8\x9a\xa4\xb5\xcb\x2d\x79\x50\xc3\x73\x72\x46\x1d\xc7\x8f\x1f\x7f\x54\xd7\x64\x65\x35\x71\x88\xf2\xff\x15\x48\x92\x5a\x09\xce\x49\x7e\xea\x08\xb5\x0f\xa3\x7c\xd6\x19\x7d\x4b\xb4\xcf\xd8\xed\xa5\x2d\xfe\xcd\x3e\x5e\x94\x61\xaa\xd2\xb2\x51\x33\xfe\x65\xcf\x2c\xce\x02\xbc\x2e\x12\x64\xcb\xcf\x55\x85\x73\x6d\x40\xaa\xd5\xc4\xdb\xeb\xb4\x57\x46\x88\x84\xe0\x61\x23\x90\x2a\x05\xb3\x96\xa4\xa7\xd1\xb7\x24\x7b\x30\x5a\xb4\x58\xab\x88\x48\x7c\x52\xfa\x91\x19\x2c\xdc\xb3\x5a\x45\xb5\x19\x42\x33\x2a\xf7\x95\x9e\x61\xa2\x85\xc1\x0e\xe7\x03\xc7\xbd\x8d\x10\x0a\x5b\x8a\x9b\x1c\x35\x04\x31\xfa\xd6\xcd\xe7\x69\x8f\xdb\xaf\x92\xa0\x5f\x28\x74\x71\xb9\xab\xb7\x1c\x80\x7b\x4c\x35\x86\xbe\xa9\x39\xfa\x06\x16\x0a\x12\x1b\xbd\x53\xa6\x0e\x53\x52\x54\xc0\x3d\x53\xf3\x93\x1f\x4e\xfd\x72\x61\xdd\xd3\x15\x29\x88\x2c\x83\x82\x1c\x4a\xfe\x37\x1f\xc0\xdc\xb2\x74\x89\x29\xb6\x02\xbc\x77\xd5\x9f\xc5\xd3\xa3\x55\xfd\x2c\x24\x7c\xe2\xf2\x27\x0e\x66\xe7\x8d\xbd\xd4\x42\xae\xcf\x3d\xa7\x55\xf1\xfe\xc1\x96\x3c\xc0\x0d\x0e\xef\xcd\xfd\x72\xbc\x4e\x56\x44\x41\xe2\x50\x27\x19\x90\x4b\x1f\x92\x72\x4e\x3e\x76\x09\x6d\x57\x8d\x7f\xe4\x36\xf9\xd9\xa6\x75\x01\x1f\x05\xf8\xa5\xf7\xf3\x57\xe2\x61\x56\x25\x26\xa1\x5c\xb5\xf2\xed\xc7\x32\xde\xaa\x01\x71\x43\x5e\x92\xfa\xe3\xa5\x19\xc6\x74\xa0\xd7\x5f\xa1\xd3\xc9\x1a\x98\xf9\x18\xa5\xd0\xb7\xad\xba\xfe\x02\xaf\x2d\xf9\xeb\xfa\xcd\x71\x7e\x56\xaf\x43\x8c\x91\x64\x68\xf9\xbd\xc1\x7f\xaf\x2d\x4d\x17\x89\xf9\x01\xef\x6a\x2d\x3a\x23\xbe\xc7\x07\x68\x5f\x58\x20\xc7\x58\x0e\x62\x30\x4c\x3f\xf9\x83\x36\xf9\xa4\x0a\xf0\x45\xc4\x10\xed\x99\x91\x5a\x29\x05\x24\x58\x3e\x48\x36\x4d\x19\xa4\xec\xb0\x1e\x1f\x5d\x30\xe3\xfa\xf9\x44\xf9\xcc\x89\x0f\xb0\xf2\x36\x44\x44\x23\xfb\x29\xa7\x5f\x38\x23\xa1\xed\x2e\xe3\x55\x78\x29\x04\x09\xc0\x72\x5f\x0e\x4d\xd2\x79\xef\x5e\x90\x18\xbf\xf6\xe5\xf6\x68\xcd\x29\x70\xc8\xa8\xb0\xd0\xc9\xfd\xf7\x7e\x65\xb1\x1b\x32\xc3\xc2\x8c\x2a\xa0\xbc\xc6\x78\x6d\x56\x65\x43\xc1\x0d\x05\xcd\x82\x17\xd2\x3e\xb1\x86\x7c\xb5\xd7\x6c\xc8\xe1\x65\x40\x9b\x6e\xc9\xc1\x38\xa1\x02\x59\x23\xb3\x8f\xb3\x4e\xc5\x8e\x5e\x8c\xe3\xbf\x62\xa6\x3f\x14\x11\xd5\xb7\xe7\x73\x32\xdc\xd8\x99\x3e\xa1\xe3\xf0\x18\xa9\x00\xdd\x76\x76\x7f\x3a\x35\x75\x61\xe2\xdb\x98\x2b\x96\x8f\xd6\xaa\x58\x66\xda\x2d\x8e\x4e\x3c\xb6\x5a\x51\x92\xe0\x6a\x5e\x20\x4f\x76\x62\x49\x46\x88\x08\xac\x56\x97\xac\x52\x9d\xc1\x4d\x62\x20\x41\x26\x3f\xbe\x53\x2b\x93\x49\xcd\x2a\x61\x21\xc0\x6e\x08\x8b\xbb\xe2\xa2\xf1\x8a\xa2\x3c\x4d\xce\xef\xff\x6e\xcd\xbe\x75\xb7\x92\x68\xdf\xe7\xaf\xea\xbd\x40\xcb\x93\x5c\xc2\xd0\xe8\x97\x2b\x59\x58\xf7\x88\x36\x54\x12\x78\x5c\xf1\xd3\x6e\x61\x62\xd0\x1a\xda\x36\x17\x42\x2a\x5e\xb7\x5c\x61\x2d\x4f\xeb\xec\x9e\x19\xff\xe1\xcd\x26\xdf\x39\x5e\x13\x97\x13\x8a\x8c\xfe\xfe\xa1\x72\x10\x18\x20\x16\x3a\xb4\x51\x27\x89\x9a\xdb\x91\xd7\x94\x63\x8f\x51\x2d\x14\x8a\x0e\x7f\x7c\xb0\x8d\x08\xcb\x3f\x12\x1c\xeb\xff\xd1\xf0\x4c\x9c\x92\xd9\xb6\xf4\x88\x6e\x7a\x23\xed\x09\xbc\x7e\x14\xa8\xbf\xfb\x8a\x5e\x71\x55\x01\x9d\x9b\x40\x7c\x0a\x43\x66\xeb\xb5\x2f\xd7\x8e\xe6\x21\x60\xd2\x01\x69\xb0\x4f\xdb\x15\x52\xa6\xf6\xaa\x12\x97\xae\x1f\x3a\x5e\x02\xea\xfb\xfa\x0c\x6d\x35\xe9\x22\xbb\xe5\x07\xbe\xd0\x85\x5c\xb3\x75\xb4\x1e\x76\xc0\x5b\x18\x1a\xb4\xff\x54\x16\x05\x42\x53\x9f\xd3\xd5\x7e\x7f\xa7\xa6\x54\xca\x6d\xca\x0c\x43\xa9\xfe\x3e\xd6\xa9\x58\x0c\x86\x1c\xd6\x52\x2a\x47\x0f\xee\xe2\xe1\x79\x05\xc6\x6e\x09\x25\xbe\xa5\x68\xd5\x68\xad\x72\x66\x81\x95\xa4\xb9\xb7\x5f\xca\xc6\x32\x93\x82\x10\x03\x24\x37\x6b\x87\x32\x40\xe2\xbc\x9b\x68\xb3\xe6\x0f\x5d\x89\x13\x17\x97\x75\xbb\x66\x59\x74\xdd\x03\x8a\x8b\x62\x10\x30\x64\x24\xfa\xdc\xef\x6b\x1a\xc5\x26\x43\x0e\x12\xd3\xb2\xdb\x57\x7e\x54\xbb\x02\x48\xe4\xba\x6c\x80\x1c\x5b\x94\x49\xc9\xc5\xac\x21\xd2\xcf\x25\x03\x15\x33\x46\x9b\xf8\xbe\xb2\xa6\xc8\x0d\x3d\x2c\x77\x12\xc8\x00\x49\x46\x79\xa4\xad\x97\x78\xe3\x7b\xad\x6d\x33\x62\x28\xea\x9a\x79\x6b\x7f\x1a\x7a\x1a\x2d\xa5\xd2\x99\xab\x49\xca\x25\x7e\x67\x86\x74\xd0\xcd\xdf\xaa\x01\x34\x2a\xd4\x4d\xac\x65\x0b\x67\x1e\x12\x08\x62\xc0\x69\x27\xde\x9d\xff\x70\x48\x53\xad\xb2\x90\xe3\x89\xe5\x9d\x68\xf6\xa7\x72\x98\x43\xe9\x32\xa3\xee\x07\x98\xa8\x2b\x90\x81\xa7\xb4\x41\xa4\x58\xd0\xe2\x2c\xbb\x3b\x66\xf3\x4e\x2b\x74\x7d\x8c\x1d\xce\x37\x38\x79\x33\x87\x3d\x2e\xa6\xed\x66\x5b\xf9\x2f\xdf\xc9\x73\xec\xb4\xa9\xd3\x7b\x7a\xa6\xce\xe1\x1b\xa5\x8b\x56\x0e\x53\xda\x69\x8e\x31\x8d\xae\xe8\x51\x05\x1b\x12\x27\xa0\x5d\x82\x1c\x08\xff\xb7\xdc\x57\x68\x3e\xdb\x1f\x98\x0f\x5c\x5c\x76\x6f\xec\xf0\x52\x2f\xf5\xcb\x97\x5d\xa6\xd6\x36\x77\x6b\x12\x9d\x20\xea\x2f\x55\x69\x0b\x74\xa4\x64\x7b\x50\x65\xb2\x9e\x3f\x63\xa2\xcc\xe7\x4d\xe4\xc3\x0b\x19\xda\xe0\x1d\xd7\x95\x14\xd6\x4b\xb3\x07\xa6\xf9\x86\xd4\x14\xc8\x67\xee\x4b\x93\x38\x29\xa9\xac\x4c\x39\xdb\xc2\xc1\x35\xb7\x49\x44\x7d\xf7\xb4\xee\x52\x39\x1a\xf8\x86\x02\x63\xe1\x48\xc6\x72\x74\xd7\x53\x5a\x2b\x11\x06\x75\xea\xd7\x49\x66\x42\x7b\xfe\x8a\x6c\xdd\x0c\xfb\x22\xb8\x99\xfa\xe8\xe1\x7b\x51\x22\x97\xd8\xc0\x0c\xc4\x0d\x5f\x54\x88\x20\x0e\x22\xac\x82\xeb\xa5\x72\xb4\xbf\x53\x15\x1a\x77\x30\x83\x4e\xe3\xbb\x4f\x6a\xaa\x09\x16\xec\x03\xf5\x72\xf9\xe3\xda\x4e\x09\xc7\x21\xc4\x4e\xfa\xbd\x5c\x6b\xec\x08\xa5\xcc\x0b\xdd\x00\xa6\x73\x91\xb9\x6f\xbc\xf6\x86\x7d\x1f\x33\x90\xe4\x48\x28\x3b\x57\xdc\xa9\xd5\x5f\xd8\x4e\x0c\xae\x87\xaf\x13\x83\x4c\xc4\xaa\x25\xb3\x06\x31\x69\xff\xf2\x33\xd3\xe3\xe6\xa2\xc0\x42\x2e\xc1\x2a\x59\xf8\xb1\x85\x1a\x60\x9c\x1b\x0c\xc4\x07\x23\x77\xff\x11\x39\x3b\xa6\x2e\x86\x02\x13\x0c\x4e\xcb\x7d\x85\xe7\x17\x6a\x2a\xbe\x6b\xe2\x36\x2a\xd9\x8e\x77\x3c\x20\xb6\x06\x8c\xcf\xa3\xe0\x9f\x3c\xfa\xb2\x16\xc2\x51\x1c\x41\x44\x1d\xf8\xda\x6a\x1d\xbd\x15\x06\x16\x46\x3e\xd7\xf0\x89\x36\x3e\x9b\x7d\x30\x98\xc5\x85\x47\xe6\x00\x2c\xdc\x35\x38\x8d\xe1\x5c\xd4\x21\xb7\x79\xae\xec\x90\xcc\x10\xdb\x55\x9e\x15\x8a\x81\xb6\xd0\x43\xb6\xcd\x28\x75\x04\x10\xa5\x80\xab\x99\x1a\xbc\x41\x84\xa5\x46\xf4\x83\x81\x67\xe8\x2f\x55\xb8\xdf\x44\x17\x3d\x25\x7f\x15\xf8\x19\x72\x03\xd2\xce\x0f\xc6\xff\x9d\x8a\x3a\xce\xa8\x20\x02\xf0\xc6\xcb\xfc\x73\xaf\x08\x59\x9d\xf8\x20\xe6\x7b\xfd\x12\xb1\x7c\xef\x99\xd9\x39\x0d\x04\x40\x85\x35\xa9\x6a\xfc\xbe\x2f\x0b\x30\x08\x93\x67\x5f\x56\x5c\x7e\xe2\x5c\x66\xe3\x92\x03\xb0\x3d\xd1\x91\x16\x3f\xaf\x09\xbe\xf4\xb6\xc2\x7a\x46\x0d\xed\x4f\x23\x87\x67\x7a\x10\xbc\x06\x1a\xf0\x6f\xf7\x4a\x3b\x2f\x3f\x20\xb6\xee\x4c\xd0\x97\xff\xfe\x91\xb3\x94\x3c\x5c\x0d\xac\xb6\xba\xaa\x6e\x65\xaf\xb2\x8f\x9d\x96\x26\x00\x13\x7d\x6b\x46\x47\x9a\xbd\x00\x1e\x95\x8a\xdf\xbc\x36\x58\x3a\x62\x19\x6d\xa0\x87\x53\x35\x1e\x63\x93\xba\x26\x28\xf8\xf1\x99\xd6\x11\x36\x5c\x84\x6f\x93\xf8\xc2\xab\xa6\xdc\x97\x7f\x7f\x4b\xf6\x9d\xb6\x30\x62\x9d\x53\x56\xaf\x86\x35\xfb\x03\x43\x95\x0b\x60\xf3\xfd\xce\x59\xa6\xf4\xa6\x72\xdb\xe9\x2e\x7f\x09\x54\x1b\x94\x44\xbe\x1d\xf6\xb7\xae\x78\xd3\x10\xb7\xb9\x24\xdb\x8e\x27\x64\x41\xd4\xa4\xac\xee\x20\x48\x54\xf1\x6b\x5a\xb7\x4d\x91\x70\xc5\x50\x30\x9c\xbc\x68\x98\xea\x34\xc5\x97\x2a\xff\xac\x09\x23\x59\xa1\xef\x63\xe2\x02\xb2\x48\xc6\xe3\xd7\x9e\x18\xa6\xe8\x87\xd5\xc0\x5d\xa4\x2f\xb7\x6a\xa9\x96\x51\x28\xe5\x3e\xc3\xd1\xe4\x23\xf2\x0c\xcc\x48\xe4\x43\x8b\xfc\x58\x2e\x25\x5c\x28\x3a\x3f\xab\x57\x3a\x5f\x29\xb8\xe7\x68\xdd\x48\x45\x08\x0f\x05\x02\xb5\xf1\x5f\x23\xcf\x50\xe6\xa2\x32\x2b\xc7\x7f\x77\xf3\x2a\x3d\x36\x30\x8c\x99\x30\x56\xbb\x7b\xc6\xa8\xf4\xcf\x55\x15\xf9\xe8\xae\x37\xd5\xd1\xb7\x67\xd3\x56\x6a\x4c\x74\xfd\xdd\x0a\xc3\x36\xf4\x80\x9c\x1d\xff\xf9\x9e\x17\x46\xe8\x60\x3f\x98\x34\xf6\x76\x65\xd3\x87\x89\x88\xdd\x7f\x6b\xf0\x1f\xc3\x87\x29\x3f\xa1\x85\x4d\x88\xb3\xd7\x45\x3c\x2f\xf6\x94\xa6\xc1\x84\xa9\x83\x57\x43\x57\xd3\x1a\xb1\x5d\xc5\x5d\xa0\x38\xf4\x4d\xe5\x45\xac\xa5\x1c\xd5\x9a\x9b\x70\xca\x30\x05\xb9\xe5\x8b\xf5\xfc\x7f\x3d\x36\x4a\x25\x24\x87\x35\x2b\xa8\x86\x30\x5d\x43\x9b\x15\x1f\x62\xe8\x90\xc0\x14\x21\xff\x9b\x0e\xad\x03\xa2\x89\xdb\x70\x7e\xdb\x05\x8a\xea\x9a\xca\xce\xb8\x79\xb1\xcc\xc2\x4d\xae\x70\xfa\x99\x01\x69\x93\x40\x51\xbd\xed\x11\xfc\xec\x31\x25\xd8\x39\x1e\xe6\x1e\x1c\xb9\xc6\x8e\xa1\x6a\xcc\x84\xdc\x3d\x6f\xd1\x28\x65\x37\xc3\x02\x3e\xdd\x8d\x7f\xc7\x7c\x3b\x95\x95\xaa\x84\x44\x1d\xaa\xe4\x97\x7d\x90\xed\x65\xa4\xb7\x8f\xe6\xf7\x3b\x79\xbc\xa0\xf5\x08\x38\x71\x5f\xa1\x4b\xf3\x1c\xb5\x43\xc7\x0b\x59\xaa\x95\x9c\xbb\xe5\x88\x26\xa4\x4b\x4d\xd4\x4a\x99\x59\x9f\x39\xae\xf8\xcb\x23\x80\x61\xd7\xde\xe0\x15\x9e\x50\xe3\x29\x31\x6c\x86\x89\xc5\x52\xee\xf5\x43\x1d\xf1\x0f\xb9\xee\xd2\x15\x6d\x71\xe0\xb6\x37\x75\x85\x4b\x9b\x34\x60\xe3\x04\xa9\xe9\xc5\xa7\xfb\x65\xf8\x24\x62\x40\xb9\x9f\xbf\xa6\xc1\xfc\x02\x2a\xb4\xe2\xfb\xf2\xa5\x4d\x3c\xcf\x57\x31\x02\x13\xd0\xf8\x93\x3f\xa7\x69\x99\x59\xc8\xf3\xb0\x9b\xfc\xb6\x93\x07\xe9\x69\x08\x85\xbe\x47\x0c\x42\x43\x31\xa1\x2e\x5e\x3b\x5b\x51\x20\xa1\xd0\xef\xc8\xe9\xc1\x9b\x97\x26\x8e\x1d\xae\xc1\x15\x64\xff\x55\xc3\x02\xf9\xa9\x89\x69\xf4\xce\x1d\xda\xc8\x07\xd9\x06\xec\xa4\x44\x99\xb2\xed\x65\x45\xa2\x3d\x0e\xc5\x88\x38\x1c\x4c\x79\xf5\x50\x3e\x0e\x86\xce\xa2\x1c\x9d\xbc\x50\x41\x2a\x90\x35\x41\x4b\x98\x75\x97\xfb\xf2\x97\xce\x1f\xa7\xb1\x56\x03\x60\xf7\xd8\x64\x2d\x0f\x36\x2f\x2f\x1d\x91\xd9\x7b\x27\x23\x82\xed\x07\xb5\xf9\x05\x75\xb1\x9f\x08\x05\x7e\xe4\xe0\x99\x4a\xe2\x73\x1c\xea\x72\xce\x49\x32\x2f\x0d\x5e\x1a\xa1\x4a\x57\x61\x33\xfe\xc1\xe5\xe8\x4f\x1b\xd2\x01\xb3\xe3\xc5\xe5\xfc\x4f\x15\xfa\x42\x85\x36\xe3\x0f\xfc\xb5\x97\x95\x61\xad\x43\x92\xb5\xc1\x45\x9b\xf9\x95\x41\xd5\x2a\x31\x51\x83\xc4\x8f\x76\xd5\x8e\x61\x22\x6c\x81\xbe\x1d\xe5\xa0\xed\xa1\x91\x8c\x10\x5e\xc8\x30\x7f\x62\x1f\xdd\x75\x66\xd6\x14\x19\xbc\x95\xd2\x00\x39\x6a\xab\xae\x78\x8b\xdc\x2c\xb0\xe1\xdc\xf3\x75\x59\x13\x14\x60\x88\xa2\x89\xfc\xdb\xcc\x05\x09\x09\x12\x7c\x4b\x79\xd6\x7c\x66\xb8\xa6\x55\x45\x5d\xea\x51\xbb\x25\xc6\xf1\x4f\x1f\xcf\xae\x33\x9a\x16\xe5\x23\xa2\xcf\x2c\xd7\xe9\x45\xf1\x4b\x13\x43\x9d\x95\x0b\x14\xed\x38\x8b\xb2\xa0\x64\x10\x66\x84\x9c\xaf\xf7\xcf\xf7\x6b\x7b\x10\xe2\x12\xdf\x4a\xad\x6d\x0b\xdf\x3f\x31\x44\x9d\xbf\x80\xf6\xfc\x92\x1d\x8a\xeb\x07\x00\xe0\xf8\xcf\x15\x7b\xb2\xc2\x4f\x35\x06\x9e\x19\xa6\x47\xa1\x34\xa0\x4d\x0c\x93\x11\x2c\x26\x93\xf9\xb7\x5f\x1d\xa5\x55\x90\x3e\x50\xa4\xa2\x55\xbd\x2a\x58\xc5\xaf\xb1\xd0\x4d\x28\x95\xf5\x15\xda\x12\x2c\x74\xab\x44\xa8\x65\x44\x6f\x1d\xea\x6f\xfa\x91\x88\x95\xe7\x76\xef\x91\xd3\x83\x80\x30\x4e\x70\xd9\xcd\x17\x0b\x2b\x09\xab\x11\x97\xa4\x7a\xae\xdb\x07\x0c\x51\x6f\x0d\x18\x67\x7d\xe1\x40\xf6\xe1\x81\xed\x33\x1f\x0b\x00\x79\x64\xb8\xe6\xc5\xe8\x61\xd6\x40\xa9\x52\x49\x5f\xf1\xe4\x47\x05\x94\xcd\x62\x88\xd7\x4d\x85\xaf\x5f\x20\x7c\x8a\x30\x6a\x57\x9b\xf8\xf1\xfb\xd9\x12\xb3\x42\xfd\x80\x4a\x7b\x98\xbe\xfc\xcf\x77\xe8\xe7\x00\x64\xcb\xa1\x22\x2e\x76\x6b\xc4\x2f\x5a\x91\xf3\xd8\xe2\x80\x8d\x4a\xce\x8f\x2b\x19\x96\x20\x94\xf3\xa6\x8a\xfa\x76\x03\xea\x62\x3b\x2e\x73\xfe\xb6\x4d\xdf\x4c\x10\x26\x7c\x46\x7f\xf4\x9a\xca\x4f\x6f\x20\x9f\x9b\x69\xfc\xcb\x71\x45\x74\xd3\x60\x14\x4c\xeb\x64\x7a\xf2\x47\x6a\xde\xb7\x38\xac\x62\x3b\xd3\x8d\x14\xaf\xee\x91\x67\xb9\x49\x34\xf7\xc5\xa2\x22\xf2\x9b\xa8\x57\x43\x18\x2f\x3a\x97\x0e\x55\x08\x1b\xa8\x0e\x5c\xe5\x19\x55\x55\x97\x84\x97\x82\x1f\xb9\x5f\x11\x72\xaf\x98\x20\x48\x9b\x1f\x7e\xbe\xda\x55\xda\xb0\x80\x8c\xff\xbc\x3a\x49\x11\xe4\x26\x0c\xc7\x6d\x65\xdb\xb4\xe2\x7d\x2b\xad\x0f\x32\x96\xef\xf9\x31\xef\x73\xa9\xc3\x65\x71\x25\xc7\xfc\x8c\xa2\xe3\xd5\x15\x85\x90\x8e\x02\x8b\xda\x24\x31\x13\xcf\xef\xdd\xa7\xb5\x96\x8c\x86\x9e\x58\x95\xe5\x1f\xd7\x3a\xa9\xb8\x03\x16\x13\x46\xb2\x5e\x37\xde\xe1\x14\xd3\x53\x4e\xca\x5e\xba\x89\xc9\x0e\x3c\xb7\x72\xfe\xa0\xf4\x53\x40\x7a\xb8\x62\x99\x2c\x40\x3d\x1a\x70\x6e\x63\x71\xe9\x54\x5e\xbf\x5a\x28\x04\xaa\x52\x7e\xf7\xb6\x44\x92\x89\xd4\x18\x4c\x59\xa3\xed\x5d\x32\x39\x85\x2e\x71\x83\x64\xc9\x59\xfc\xfc\xeb\xa3\x32\x3c\xf2\x06\xb2\x43\xa1\x67\xac\x58\x29\x35\x51\x3f\x56\x4a\x4b\x4e\x92\xc0\x4d\xcf\x22\x36\x72\x03\x8b\x51\x0f\x50\xbb\xd1\xef\xd6\x2b\x99\x81\xd4\x9c\x90\xdb\x5b\x9d\x7f\xa3\x3c\xe7\x75\x5a\x57\xfd\x14\x36\xcc\x55\x09\x2b\xc4\x06\xbb\xe3\x68\xe6\xce\xec\x16\xdb\xa0\x6e\xfc\xa5\xfc\x29\xed\x0e\x96\x68\xfd\x04\xed\x3f\x85\x69\xac\x47\x18\x57\x5c\x8e\x23\x59\xe5\x60\x0a\x7a\xa9\x83\x3e\x70\xae\x30\x55\x1b\x69\x18\xd4\xa5\x0e\x11\x98\xeb\x62\x5e\x0b\xa6\x15\x92\x4a\x70\x95\x07\x48\xa3\xe9\x2a\x30\xbc\x88\xdf\xb6\x6b\x28\x56\xef\x4e\x9c\xe5\x7d\xc4\x18\xc8\xbc\x07\x1f\x0e\x17\xef\xb0\x89\x59\x09\xdb\x04\x34\xda\x0a\xcf\x0d\x95\xb9\x90\x34\x90\xcb\xcd\xcb\x8e\x6c\xd7\x76\xd7\x8c\x78\x1c\xe1\xb5\xd2\xd2\xad\xfc\x5d\x9f\xda\xc4\x44\xd2\x92\x20\xbf\xf9\xe5\x36\x8c\x0d\xc6\x89\x06\xce\x2f\x3b\x04\xac\x18\x0b\x10\xf2\x47\x87\x0f\x55\x98\x03\xa4\x02\x36\xcb\x37\x3d\xa1\xcd\xa9\x90\x5d\x47\xae\x98\x41\x89\xd6\xe8\xaa\x80\x67\xd3\x6b\xe2\x3c\x9b\x6c\x6d\x9e\x89\x74\xf0\x00\xc8\xf8\x8a\x61\x51\x71\xc9\x53\xbc\x99\xb8\x12\x79\x80\xd7\x56\x5c\xb4\x3e\xe8\x90\xeb\x99\x6a\x86\x7a\xde\xb9\x57\x13\xe9\xb0\x4b\x66\xd8\x44\xc4\x46\x96\x46\x70\xfe\x78\x87\x1c\x11\x79\x8c\x56\xa1\xe6\x50\xc7\x01\x9a\xc8\xb0\xd4\xdd\x15\xc0\x8a\x19\xe7\xb7\xf9\xe4\x78\x88\x65\x70\x8a\x13\x56\x2b\x79\x11\x3b\xb4\xc6\x90\x67\xf1\x3e\x60\xe5\x24\x49\x2c\xf0\x83\x24\x23\x0d\xbc\x3e\x1d\x2c\x36\xd4\x81\x55\x6e\xc4\x64\xfe\x30\xae\x23\x6e\x95\x61\xd5\xb7\xed\x3f\xde\xc9\x7e\xe3\x2a\x0a\xe0\xbb\xb6\x87\xba\xdb\x1f\xe0\x6a\x58\x97\x38\x26\x6e\x83\x2c\x17\xb6\x3f\x9a\x2d\x89\x6c\xd4\xd4\x00\xe3\x57\xec\xcf\xbe\xe8\x7a\x68\x58\x8e\xc6\xfd\xcd\x3d\xf5\x4c\x1b\x61\x8f\x40\x5d\xc5\xe1\xa8\x67\x6e\x18\xaf\xbd\x73\x2e\x2c\x0f\x3b\x5a\x5e\x65\x3c\x3a\xf2\xef\x3a\x24\x43\x0a\xfe\xcc\x06\xd9\xa3\xc7\x05\x25\xdf\x51\x14\x7e\xab\xd9\x53\x21\xd7\xa5\xa1\x6b\x24\x08\xdc\x68\xcb\xc3\xfc\xdb\x5f\xeb\xf6\xb7\x49\x7f\xf5\xd9\x11\xca\x28\x9a\x3b\xb1\x94\xca\xd1\x27\x57\x48\x6f\xe8\x5e\x12\x30\x4a\xda\x8d\x2b\x7f\xbe\x5a\xf3\x3f\x83\xf9\x36\x74\x21\xbc\x71\xf9\x64\xbe\xa4\x65\x7d\x66\x60\x13\xfb\xa5\x0a\x76\xd7\xf6\x8b\x3a\x58\xd7\x31\x4e\x19\x82\xf8\x6d\x22\x69\xb9\x31\x07\xb5\x12\x8e\xba\x94\xf1\x99\xf8\x82\xc7\x12\xdd\x29\x17\x2c\x5e\xe2\x3f\xfb\xe2\x63\xca\x2e\xbe\xbb\x0b\x2c\xc5\xca\x7d\x85\x9e\x97\xb8\x90\xfd\x0c\xa8\x96\x2e\x79\x3f\x43\xf4\x5d\x39\x85\x8f\xd4\xcb\xd1\x9c\xd7\x65\xd2\x6d\x11\x0c\x3a\x63\xb9\xdf\x2e\xe3\xe5\xfa\x32\xec\xaa\x8a\xec\x63\x35\xdc\x78\x4d\x81\xfb\x14\xef\x55\x12\x75\x13\x35\x12\xcd\xd5\xe2\x17\x2e\xe5\x53\x04\x07\xa2\xdf\x98\x86\xa6\xc0\x8a\x02\x4b\xa0\x99\x8b\xe5\x0d\xb2\xdc\xb5\x69\x13\x76\xb3\xa3\x66\xeb\xc4\x2b\xc7\xc3\xe6\x14\xb0\x9e\xfb\xad\xa9\xab\xbf\xd0\xb0\x22\xd5\x5f\x4e\xb7\x3b\xb3\x7f\x4d\xeb\x2d\x5a\x02\x39\x84\x0a\xf1\x2d\xd2\x9e\x44\xf2\xcd\xd1\x69\xd7\xe3\x85\x10\x25\x5f\xe9\x3a\x43\xa1\x04\xc6\xcd\x58\x80\x84\xc8\x47\x7e\xdf\x95\x3a\xbf\xdc\xc1\x0e\x32\x13\x46\xd2\xcd\x47\x78\x81\x39\x6d\x76\x89\xb8\xbc\x08\x9b\x74\x4a\xff\x53\x5a\xf1\x91\x73\xf7\x6f\x4a\x13\x14\xe8\x94\x46\x83\x57\xf6\xe7\xae\x17\x08\xab\xa0\x4f\x1c\x1d\xaa\x46\x39\x93\x94\xca\xd1\xb5\x87\xe5\x3c\x2d\x6c\x26\xa1\x67\x9e\x9b\x5d\xa1\x05\x06\xe9\x97\xd3\xf3\x2f\x36\x8f\x44\x7e\xcb\x0f\x30\xc8\xd5\x21\x9b\x17\xa2\x1b\xd6\xc8\x73\x32\xab\xbb\xb3\x1b\xe0\x1a\x7f\xd1\xd4\xca\x42\x17\x36\x3d\x0d\x01\xd3\x2a\xcc\x3d\xaa\x23\x25\xdc\x80\x51\x3b\x35\x0f\xdc\xfe\xbe\x32\xf2\xc1\x3e\x09\x10\x97\x86\xfc\xd8\x3a\xd9\xe4\x34\x90\xcd\x45\x89\x95\x38\x74\xed\xeb\x32\x59\x62\x46\x39\xe7\x36\x7f\xf6\xcb\xb2\x66\xf1\x18\x4d\x9a\x70\x19\x67\x83\xe3\xa3\x94\xa5\x3d\x14\x06\x24\x74\x20\x96\x6b\xbc\x1d\xc5\x08\x1a\x30\xb0\x7d\x85\xab\x1f\x1f\x2b\x61\x8c\xba\x7d\x7f\x74\xc1\xe6\x6c\x98\x00\x24\x6e\x93\xf8\xc9\x62\x2f\xb7\x73\x35\xbf\x05\xe7\x5d\x0a\xba\x62\xe8\x09\x79\xd4\x2b\x14\x14\xdc\xae\xd6\xe4\x44\x69\x18\xd4\x28\xcf\xe5\xb0\xa5\x7a\xef\x65\xd9\x09\xa4\x18\xc6\xf8\x2f\x6e\x50\xc8\xe9\xa1\x4b\x82\x84\x7c\x63\x69\xea\x9e\x15\x64\xd4\xe3\x7a\xd5\x35\x13\x1f\xe5\x73\x34\x17\x2a\x64\x53\xd1\x2b\x16\xaf\x0c\x86\x65\x86\x71\xa0\x6f\xf4\x9b\x67\x05\xf1\xca\x02\x3a\x0a\x44\x9f\xcf\x37\xe4\xc7\xaa\x84\x04\x14\x16\xe0\x1b\xf7\x6c\xd0\x8e\x2e\x65\x01\x43\x2d\x01\x37\x7d\xd1\xd3\x61\x39\x42\x87\x30\xae\x6e\x44\xb1\x7d\x2f\x93\xf8\x6d\x5a\xf1\x03\x64\x88\xdf\xf9\xc8\x26\x45\x89\xd6\x74\x08\x20\x6d\xf3\xaf\xbf\xae\x7b\xe0\x02\x21\x8f\x5f\x46\x6b\x89\x18\x4a\x80\xc9\x0d\x5f\x87\xff\x65\x57\xc2\x23\x4b\x11\xcd\xb9\x25\x79\x7d\x68\x6b\xdb\x29\x44\xe2\xf4\x37\xe4\x54\xd1\x6b\xc4\x2f\xed\x0f\xaf\xc9\x1b\x38\xbb\xbb\xd4\x03\xb7\xe2\x7f\x27\x0d\x15\xd7\x64\x4e\x69\x46\x4f\x57\x37\xfc\x60\x5f\xc3\xfa\x73\x20\x14\xec\x3e\x44\x45\x79\xfb\x09\xd9\x5e\x21\x62\xe2\x4c\xe9\x53\xbc\xbf\xfd\x9f\x83\xb4\x7b\x98\x08\xf0\xbf\x3a\x56\x33\xdf\x40\xae\xa0\x9a\xe7\xa7\xdf\x21\x7b\x25\x07\xd5\xd0\x5a\x7e\x9b\xb2\x59\xe7\xcb\x57\xca\x0a\xbc\xbb\x27\x49\x23\xf9\x37\x97\x67\x3c\x37\x2c\x24\xf8\x04\x7d\xb9\x95\x8a\x14\xba\x1f\x5a\x88\x71\x84\xd3\x33\x37\x2a\xff\xc0\xa9\xe0\xb5\x6b\xc5\x60\xa8\x70\x51\x45\x57\x55\x8c\x7f\x1c\xf1\x1d\xf1\x04\x8a\x97\xad\x54\x88\xd6\x01\xaa\xd5\x04\x0f\x2c\xff\x70\xa7\x7c\xf0\x55\x02\xdf\xa9\xb5\x9f\x5f\xa8\x59\x9d\xf0\xcc\xdf\xcc\xcb\x87\xc7\xfd\xa6\x94\x6a\x70\xe6\x51\x4d\xf9\x8d\x86\x09\x4c\x3e\x5a\x31\x43\x93\x93\x47\x2d\x49\x0f\xcc\xdf\xb0\x20\xe1\x5f\x18\x76\xe8\x0b\xd0\x70\xe1\xab\x3b\xb3\xd1\x94\x62\x3f\xa8\x21\xc4\x4c\x0d\xf8\x3e\xf8\x61\xcd\xa9\x22\xbe\x7c\x92\x3e\xdf\xb3\x4e\x17\x47\xaf\x5b\x88\xd8\xe2\x6f\xb7\x54\x3a\x94\x8b\xe5\x83\xd0\x23\x0c\xfc\xa3\xc1\x8a\xf4\x5f\x85\x52\x47\x24\xda\x2f\x6e\xe7\x05\x7d\x2d\xe4\x70\xef\xfb\x37\x70\xa0\x4e\x52\x2b\x25\x7b\x84\xdc\xa1\xb5\xda\xef\xe5\x7a\x38\x89\x2b\xf2\x03\x53\xe5\x0b\x6c\x12\x17\x3b\x48\x90\x2c\x0b\x5f\x5c\x9d\x58\xf5\xdb\x5c\x71\xa8\xf0\xe8\x9d\xfd\x20\xc9\x12\x83\xaf\xc2\x3b\x2b\xb5\xed\x15\x0a\xb8\xfc\x1a\x9f\xc2\x7d\xf7\x5d\xb1\x7b\x29\xaf\xb8\xec\x9a\xf8\x37\xaf\x5a\xae\x00\x38\x68\x20\x4c\x97\xbe\x38\x5f\x51\xca\x9c\x3d\x33\x39\x98\xcd\xc5\x69\x9f\xc0\x70\x2d\x73\x59\xce\x7d\x23\xad\x92\xe2\x06\x10\x0a\x89\xcd\x0b\xd3\xbc\x58\x25\xbd\x49\x8c\xfc\xc1\x13\xca\x61\x55\x65\x67\x73\x73\x84\x5d\x93\x83\x02\x8b\x67\x42\xa1\x91\x5a\xbc\x77\x81\x12\xf1\x10\x33\xb0\x4d\x5d\x14\x7f\xa2\x11\xaf\x9d\xa3\x05\xdc\x4a\x85\x04\x81\xa6\x9f\x73\xb2\x26\xfc\x2a\x9e\x3e\x4f\xe9\x85\xd3\xde\xe0\x45\xc3\xd5\xc4\x35\xf9\x5e\x24\xf7\x95\x6d\xa3\xd5\xb9\xb0\x13\xba\xc4\x48\x75\xc3\xc6\x2f\xd3\x30\xfd\x21\xb0\x87\x78\x44\xd9\xfa\x01\xff\x61\x71\x6b\xcf\xcd\x22\xf3\xef\x4a\x89\x89\x99\x33\xe1\x25\x4d\x5e\x90\x3e\x98\xd0\x15\x80\xad\xe8\xfa\x65\xba\x1d\x6c\x80\xed\xb8\x55\x4d\xcc\x03\x1e\xe2\xe2\x7f\xa5\x65\x76\xdc\x70\x2a\x9d\x7c\xf1\x8a\xd5\x1a\x02\xc8\xce\xc8\xea\xfc\xb8\x57\x83\xaf\x22\xa3\xee\xa7\xeb\x52\xa9\x45\xec\x2f\x55\xf0\x4f\x94\xda\x1e\xa3\xb4\x5a\x2a\x47\x3b\x24\x41\x0e\xd4\x23\xa2\x8f\xcd\x90\xd3\x0d\x86\xcc\x26\x72\x49\x0b\xc1\x2a\xaf\x20\xcd\xf6\x4d\xa8\xa6\x56\xaf\x1f\xa6\x66\xdd\x00\x16\xe0\xab\x34\x30\x24\x6e\x70\xb9\x1a\x98\x18\xfc\xf1\x84\xa6\xea\x08\xc8\xea\x04\xea\x19\x6d\x39\x49\x47\x96\xf9\x01\xe3\xab\x14\x8e\xd3\xbe\x44\x77\x0a\x65\xc4\x90\x02\x36\xbb\x47\x2a\xc2\xd5\xbe\x4f\x0d\x61\x36\x18\x19\x8b\xf4\x48\xc9\xf5\x5d\x52\x0c\xd1\x46\x31\x63\x4f\x2d\xa3\xe2\x1f\x77\xdf\x2b\x59\x0c\x77\x27\x87\xd3\x9f\x6d\x0b\x29\x9c\xcb\xdb\xca\xbd\xa3\x47\x34\x4e\xbd\x05\xc2\xd1\xc9\x4b\x5e\xfe\xf0\x98\xf4\xea\xb6\xd9\x20\xe4\x6f\x7d\x5a\xa3\x21\x87\xae\x08\x5e\x8a\xd1\x46\x97\xc6\x5e\xa0\x6b\xfc\x20\xb1\xbd\x2f\xde\xfa\x9e\xa4\x15\x62\x15\x69\xf3\xfc\x2b\x10\xba\x6c\xec\x96\x66\xab\xb3\xff\x93\x77\xeb\x15\xb7\x07\x83\x3f\x91\xe4\x9f\xe9\xd5\x19\xbe\xc8\xb6\x71\xdc\x44\xf2\x78\x74\xe7\xb3\x02\x5d\x65\x21\x66\x52\xd7\x45\xb0\x5e\xdb\x78\x3c\xad\xec\x2a\x76\x7b\x5e\xbc\x71\xec\x19\x7a\x5d\x96\x7a\x46\x7c\xf5\x0d\x9d\xdc\xd3\x42\x76\xd2\x7f\xe0\x6e\x0d\x6c\x1d\xda\x36\x69\xa0\xb8\xa2\x54\xfa\xee\x8b\x8f\xe9\xea\x26\x48\xf0\x3b\x60\x63\x3e\xf9\x75\x09\x46\x6a\x28\x86\x3c\xb9\x11\xe3\xf4\xf2\x2a\x40\x01\x15\x95\x5d\x71\xf2\xc2\x89\xca\x0c\xd3\x35\x89\x09\xd3\x58\xfd\x15\xee\xdb\x22\x35\x29\x82\x46\xbb\x95\xdf\x29\xb2\xa0\x26\xae\xc9\x7d\xdb\x42\xe2\x5b\x89\xbe\xc3\x3f\x9b\x72\x54\xea\x62\x23\xbe\xe8\x41\x22\x68\xf0\xd5\xf9\x19\xe7\xab\x0a\x56\xdd\x84\x9e\x6d\xef\x0b\x88\x1b\xa6\x4d\x75\xb4\x4b\xe6\xfb\x16\xdf\x26\x17\x15\xbd\x64\x0b\x31\x46\xf9\x8e\xfa\xfa\xf7\xe4\x66\xa0\x4e\x00\x0c\x92\x1b\xb0\x58\x27\x7c\x78\x42\x7a\x6e\xb6\x36\xbf\x48\x44\xb7\xf9\x30\xf6\xbf\x1e\x3b\x43\xc1\x13\x98\x99\x70\x74\xc9\xc3\xd9\x9f\x19\x82\x64\x02\xf7\x01\x38\x49\x9b\xb2\x85\x81\x4f\xfc\x29\x4d\xb8\xe2\xeb\x77\x09\x36\x48\x62\x8c\xf5\x81\x0a\xcb\x4a\xf0\x2b\xf9\x4d\x3b\x24\x12\x9e\x81\xe9\xd0\xce\x45\x8a\xb5\x51\xc8\x04\x25\x3e\x9a\xbd\x5d\x85\x07\xf8\x1e\x09\xc4\x1a\x30\x0a\x0e\xf3\xc3\xfd\xc9\x10\x3b\xb4\x95\x24\xb8\x5f\x6c\xca\x7e\x38\x93\xab\x42\xf3\x76\xb3\x4b\xb1\x29\x91\x1d\x5f\xfc\xdb\x7f\xf5\x98\xa6\x36\x67\x51\x57\xe0\x94\x73\x53\x03\xe5\x5f\xc1\xc8\x91\x71\xe5\xb3\xfc\x9c\x37\xb3\x45\xaa\x4b\x1b\x28\x03\xc3\x29\x9e\x72\x4c\xb3\xdc\x6d\xe1\x26\x09\xdc\x44\xc4\x2c\xfe\x86\x0f\x5d\xa0\xf6\x84\xa8\xd1\xf2\xc1\x4e\xa2\xf0\xe7\xaa\x9e\x37\x59\x0d\xa7\x80\xbf\x89\xc7\x85\x43\xf3\xcc\x6e\x28\x18\x17\xa6\xd7\x06\x37\x32\x7e\x99\xdd\xca\x3b\xae\x31\x62\x84\x76\x10\x02\x62\xae\xaf\xb0\x74\x22\x97\xa6\x5b\x1c\xd6\x2c\xdc\x3e\x61\xfb\xf0\x30\x5f\x4e\x5d\x9a\x75\xf1\x2a\x2c\x52\xf0\xf2\xbc\xee\xd4\xac\xaf\x27\xa4\x4b\x88\x8c\xf5\x66\xfe\x6f\xcf\x8f\x51\x99\xf4\xa0\xc5\x24\x8b\xc7\x61\x87\x15\xd9\x4f\x02\xe6\x36\x50\x72\x5d\x70\x8a\x6c\xc4\x27\x8a\x77\xff\x4d\x3b\x3b\x78\x0b\x5d\x0f\xb1\x38\xf6\x49\xcd\x80\x21\x6f\x0a\x28\x19\x76\x43\x02\xfa\x8d\xf9\xea\x5c\x4d\xc7\x62\x66\x57\x92\x5f\x36\x4f\x1d\x21\x62\x87\x87\x2a\xa0\x26\xc0\xeb\xbd\x11\x87\x15\xe7\x0a\x86\xc2\xc0\x41\xae\xf2\xa1\x0b\x5f\x53\x4e\xad\x89\xbd\x04\x31\xf1\xd3\xdd\xe7\x68\x5d\x95\x6f\xf1\xfe\x44\x15\xea\xf9\xd9\x2e\x4d\x37\x0d\x7b\x88\x08\xd6\xdc\x5d\x0b\xf8\xc2\x66\x09\x6e\x97\x81\xe8\x98\x98\xfd\xf6\xad\xd0\x24\x2e\x52\x54\x37\xa2\x6d\x4f\x8c\x54\xa2\x84\x4d\x6b\x0c\x8c\x10\xa3\x6b\x76\x4c\xd4\x82\xa8\x4b\x1d\xc4\x5a\xb8\xa1\x6a\x76\x14\x4f\x3a\xa4\x84\x32\x64\xab\xc6\x68\x05\x8b\x63\x73\x4b\x97\x83\x24\x0b\xe8\x2a\xeb\xab\x89\x4f\x2f\xc9\xde\x41\x0e\xa0\x12\x2c\xba\xc6\x50\x5d\xb8\xdd\x0c\xc1\x8a\x8a\x77\x53\xff\xb7\xa9\x1f\x09\x64\x93\x54\xec\x96\x90\xae\xdd\xa8\xb8\xac\x98\xc4\x07\xa5\xe8\xb4\xd2\x7f\xfd\xd9\x34\xbe\x13\x03\xe9\x43\x8b\x47\xba\x35\x26\x07\xd7\x21\x87\xc2\xe7\xeb\xca\x66\xc8\x24\xa8\x46\x5d\x31\x08\x2a\xe6\xc4\x10\xc0\xc4\x1e\x23\x0d\xbe\x2d\x5a\x73\x81\x1c\x69\xba\xd4\x2d\xb5\xcd\x3c\x6b\x47\x07\x27\xb9\x28\xe0\x8a\xe9\xb7\x1e\xc8\x46\x82\x80\x21\x93\x70\xaf\xf6\x84\x7b\xf1\xa7\x2b\x79\xbb\x31\x4d\x34\xa3\xd1\x65\x17\xc8\xa9\x09\xea\x45\x6b\x00\x65\xb4\xe8\x2c\x3d\x7f\xae\x85\x5e\x29\x35\x0d\x5d\xbd\x75\x88\x9a\x88\xe2\xde\xea\x95\xc7\x15\xdc\x90\xea\xc7\x91\xdf\x21\xac\x85\x18\x6d\xf2\x04\xb3\x63\xa5\x4c\x45\x3d\x00\x11\x2b\x4e\x7b\x47\xc3\xe3\xc4\x59\x9f\xf8\x41\x32\xc3\x3e\xad\x91\xf5\xe3\xf0\x10\xb3\x09\xb7\xd8\x77\xda\xec\xa0\xf3\xbf\x7a\x70\x9c\x9e\x0b\x39\xd2\x48\x80\x15\xf2\xcf\x2d\xcf\x7e\xc3\x16\x0d\xa1\xc1\x92\xe5\x52\xdf\xe1\x41\x49\x9b\x08\xa3\x90\xc2\x6f\xe7\x09\xd4\x12\x23\x0e\x71\xb9\x11\x43\xe1\xbb\x52\x27\x77\xce\xec\xee\x52\x39\x9a\xa7\x01\x17\x18\x46\x71\x25\xce\x0f\xde\x45\x77\x28\xe2\x94\xc9\xea\x1c\xf6\xe6\x5b\x53\xfa\xcc\x8c\x99\xa5\x72\x74\xce\x21\xde\x09\x5c\xe6\x07\xb0\x9b\x96\x57\xa3\xb6\x56\x26\xb5\x1e\xf0\x77\xfd\xdc\x5b\x67\xa9\x0a\x8b\x01\x6a\x7b\x1a\x6f\xad\xe1\x4d\xeb\x52\x62\x50\xf5\x87\xe5\xa2\x6d\x8a\x1e\xac\xe3\x10\xce\xb7\x8d\xcb\xdb\x41\x9a\xde\x0b\xf2\x03\x8e\x10\x3a\xf5\x80\xd4\xd2\x88\x13\x54\x44\xac\x74\x2d\x63\xa6\xe0\x82\x5c\xd7\xea\xa1\x6a\x4c\x83\xde\xb9\xb3\xa1\x41\x77\x83\x90\x7b\x58\x09\xf1\xfa\x7d\xdd\xf2\xd6\x59\x5c\x69\x5b\x86\x0b\xdf\x52\xd4\xc1\xed\xd0\xad\x71\xa1\xe2\xe2\x04\xee\x9a\x5d\x5a\xba\x62\x61\x5b\x72\x19\xa3\xad\xcb\x7c\x14\x84\xcc\x14\xb2\xbf\xd1\x1d\xeb\xd2\x0f\x6e\xd0\x66\x22\x83\x61\x75\x28\x93\x99\x80\x21\x8f\xda\x88\x2f\x13\xaf\x5d\x29\x1b\x9d\x5e\xcc\xb0\x03\x37\xb7\x7b\xa1\xa6\xcd\x20\xbd\xa2\x79\x6f\xf6\xcf\xef\xea\x69\x04\x8c\x3c\xe2\x44\x27\x86\x12\x5f\x7b\x52\x2e\xe7\xc2\x8a\x5a\x9a\xb7\xc6\x69\xbd\xbe\xd0\x96\x10\x75\xc8\xb0\x8d\x23\xb5\x38\xc6\x09\x08\x43\x5e\x4f\xc1\x42\xb6\xc8\x16\x7d\xf9\x95\x4f\x0c\x55\xb1\x04\x36\xd7\x40\xe3\xba\x3e\xa5\x4f\x85\x35\xea\xdb\xa8\xc1\x5f\xe0\x35\xcb\xfa\x8a\x97\xac\x4a\xdb\xfd\x46\x42\x17\xbf\x4e\x03\x5f\x86\x2e\x49\xca\xf6\x68\xc9\x54\x15\x0b\xed\x38\x24\x08\x30\x87\x36\xf7\x1c\x1a\xa1\x4e\x91\xb0\x81\x60\x9d\x7d\xf4\x29\x4d\x44\x2a\x19\x22\x8a\xdc\x7a\xab\xc6\xd1\x36\x2c\x44\x40\xed\x05\xba\x8e\x8b\xb4\xaf\x7e\x5e\x22\xff\xd3\xbd\x4b\xa6\x95\x16\x65\x75\xa5\x42\x2e\xcc\xe2\x58\x74\xd0\xd5\xe8\x69\xdf\x53\x8c\x94\xb3\x21\x10\x79\x93\x1c\xdc\xbb\x97\xf1\x08\x76\x49\x02\xe8\x2b\xcc\x3c\xc0\x17\xce\x33\x52\x2b\x19\xf8\xae\xb6\x46\xf8\xf7\x43\x96\x68\x5c\x94\x23\x3a\x9f\xff\x94\x45\xc8\x21\x1c\x84\x78\x78\x51\x0a\x9f\x74\x50\x55\xc7\x29\x7f\x5b\x31\xe2\x24\xae\x91\xce\xa4\xee\xd8\x24\xb4\x09\x31\x03\xcd\xc1\xfc\xb6\x77\x34\xc2\x97\xad\xf8\x5a\xe5\x6e\xbb\x52\xb5\xf1\x35\xea\xa1\xc7\x81\xe1\xb7\x68\x4a\x7f\x55\x2a\xf0\x8f\xd9\xc7\xb2\xa9\x27\x1b\x29\x91\xe7\x21\x86\xdd\x20\xe1\x28\x44\xe5\xd9\xd9\xe1\x03\x32\x19\x01\x4f\x1e\x92\xd9\x41\x17\x2f\x59\x91\xe6\xcd\x2a\x6e\x63\x29\x17\x6f\x3e\x32\x44\x11\xb4\xa8\xc1\x47\x5c\xd3\x90\xb1\x85\xa6\x46\x80\x13\x36\xab\x2a\x68\x7c\x54\xf9\x93\x87\x75\x1d\xfa\x96\x10\x3b\x2c\x56\x1e\x19\xa7\xb5\x12\x80\x9f\x4f\x25\xf8\x0a\x9f\x5a\x73\x46\x7f\xd8\x6a\xf8\x04\x6b\x9f\x4a\x95\x76\x90\x53\x2a\x47\xde\x8d\x72\x4c\x38\x63\xe6\xd4\x99\x5d\xdc\x7b\xf2\x96\x1d\xd9\xc4\x9b\x19\x0f\x8a\x03\x7d\x54\xeb\x6b\x7d\x07\xb1\x20\x39\xb6\x3b\x07\x6b\x5b\x83\x44\x9d\x3c\x7a\xf3\x71\x65\x7e\x4b\xc3\xc0\x6a\x72\xcd\xd6\xdc\x3b\xef\xe9\xc8\x4f\x9c\x0c\x7d\x0b\x9f\xfe\x50\x76\x44\x0d\x1c\x60\xc6\x19\xac\xff\x7d\x25\xd7\x63\x5a\x66\x23\x97\x0b\x85\xea\x5b\xdd\xbb\xe7\x9f\x99\x51\x1e\x8b\x9b\x08\x75\xfa\x6a\x3d\xd9\xe6\xcc\x17\x58\x02\xd9\x91\x77\x57\x6a\xf2\xe4\x16\x65\x9c\xef\x97\x3b\xfe\xa8\x8c\xab\x0e\x57\xb3\x48\x92\xd0\x7f\x3f\xab\x89\x34\x36\x40\xa3\x91\xf7\x45\x9f\x1c\xa8\xe0\x9c\x42\x40\x4d\xf6\x15\x3e\x50\xfd\xc2\x7d\xa1\x6e\x5a\x8e\x9c\x8a\xc2\x12\xea\x86\x7d\xed\xc6\xaa\xf2\x6b\x43\x3b\x20\x80\x2d\x06\x45\xa1\xb7\x15\xcb\x11\x41\x9b\x8b\xbf\x03\xde\x2a\x77\x34\xd3\xe6\xcc\xe9\x2e\x4d\x8f\xff\xe3\xc5\x63\xb3\x98\x99\xc0\xc2\x28\x48\x08\x82\xd9\x73\x7c\xe5\x33\xe3\xd5\xa5\x70\xe7\x94\xec\x23\x2e\x95\xa3\xa5\x13\xb2\x17\xa6\x86\x6c\xc4\x18\xaa\x21\x0d\x3d\xf0\xda\x61\x9d\xd3\x16\x77\xac\xc0\x09\x5e\xbb\x4b\x03\xe6\x58\x84\x21\x43\x73\x0e\xff\x37\xc9\xe0\xc4\xae\x1e\x5d\xfa\xf2\x8b\x3f\xd0\x2b\x15\x03\xfe\x5f\x2e\xd0\x1e\x64\x33\x4f\x35\x64\x81\x95\xd8\x9c\x46\x4f\x0c\x90\x75\x8c\x45\x7c\x50\x57\x82\x7f\xf6\xb1\xb7\xb2\x27\x60\xd6\xec\xce\x99\xc2\x34\xf2\xd7\x26\x8f\x5a\x76\x8b\x4f\xa0\xd1\xd6\x74\x90\x38\xbd\xa7\x07\xf6\xf0\x6f\x29\xaa\xbf\x0c\x35\x84\xf4\xf7\xbb\x53\x95\x52\xc2\x0a\xc1\x03\x2a\xf7\xe2\x26\x21\x5e\x80\x0d\xcb\x25\x37\x87\x9c\xc6\x7f\x6a\x51\x06\xff\x06\xb5\x3d\xe5\x98\x15\x97\x3c\xad\xa8\x47\x4a\x4e\x7f\xf4\x8f\xda\xcd\xab\xa4\x30\xdf\xc2\xf2\x8a\x56\x4e\x5b\x88\xd8\x48\xac\xfa\x44\xa1\x73\x50\x43\xce\x1a\x2d\x8f\x85\x89\xc9\x4d\x5c\x51\xac\xd5\x36\x68\x15\x1b\x19\xf5\x64\x83\x79\xeb\xfd\x3c\xcb\x5e\x95\xf6\xa2\xd1\xa1\x45\xd9\xff\x3e\xce\x2f\xbe\x18\xa6\x3c\xa1\xe9\x59\x5a\x88\x21\xdf\x87\x22\x98\x5f\x97\xe2\xbc\xb3\x94\x65\x4f\x68\xb6\xe9\xe9\xe4\x17\xef\x1f\xa5\xae\xb7\x1b\x89\xdb\x52\x5f\x7e\xd2\x7a\x5d\xc0\x89\xd3\x2c\xe3\x48\xcf\x57\x49\x48\x11\xf9\x86\xa2\xce\x41\x0c\x1c\x36\xaf\xd2\x3c\x50\x9d\x56\x60\x51\x9b\xd6\xb8\x26\x74\x71\xf9\x89\xb1\x7a\xaa\x0f\x1d\xa9\x92\xf3\xf6\x5c\xdd\x7c\x98\x25\x6c\xf5\x72\x74\xdd\xea\x31\x7a\x3d\x6d\xca\xe2\x6a\x95\x36\xf8\x36\x10\x23\x95\x0a\x46\x2e\xb4\x9a\x52\xf9\xc9\x1d\x7f\x86\xde\x3d\xd4\x13\x84\xc4\xf5\xda\x22\xab\x86\xd6\x7a\x8c\x3a\x70\xcf\xa8\x46\x36\xc6\x6b\x30\x33\x48\x42\x95\x28\xce\x7f\x3f\xfb\xd7\xbd\xa1\x59\x83\xb7\xc1\x3f\xdd\xe7\x5f\x92\x7a\x53\x68\x32\x72\xbc\x8b\x9c\xb6\x3e\xb6\x29\x07\x19\xbe\xa1\x78\xdc\xff\x91\x1f\x9b\xd2\x35\x75\xca\xa8\x61\xd5\x89\x22\x0f\xf4\x9b\x1e\x6d\xe2\x56\xb7\x51\x67\xe2\x2a\xd3\x97\x77\x4f\xd1\xca\x01\x8c\xcd\xf4\x69\x17\x27\x5c\x3a\x52\xe1\x1d\xc5\xbf\x9a\x57\x77\xc5\xf5\x0b\x54\x71\x23\xd8\xbe\xe4\xce\x3b\x28\x6b\x5e\xcc\xa8\x90\x71\xb9\x78\xa8\xae\x38\x0b\x3f\x9f\x97\x03\xdf\x72\x27\xaa\x5c\x1b\x01\xb8\x6f\xc3\xe3\x6c\x1d\x94\x26\xd6\xe9\x73\x4a\xe5\xe8\xf6\x87\x34\x3a\x2e\x02\xf9\x0d\x15\x82\xfe\x2f\x77\x28\xf8\x33\xda\x36\x3b\x2f\x5e\xc8\x46\xe9\x41\x5a\xf0\xb3\x16\x28\xda\xff\x26\x69\x60\xe6\x93\x2a\x54\xef\xf3\xd7\xea\x90\x5f\x4c\x38\x9b\x28\xfa\xf2\x2e\x4d\x6c\x90\xd8\xd8\x71\x90\x98\x10\xfc\xf6\x0d\x1e\x7f\x64\x35\x14\x77\x6d\x9b\x3b\xf4\xef\x60\xf1\x24\xfe\xe4\x43\x92\x11\xed\x92\xb5\x96\x8b\x1b\x88\x05\xb4\xe1\x83\x29\xef\x6f\x37\xc9\xbf\x65\xd8\xf7\xa8\xeb\x13\x18\x10\x41\xfc\x9b\xfc\xb2\x8e\xc8\x21\x95\xd0\x45\x36\x2f\x6f\x0a\x9f\x55\x34\x53\x2a\x38\x2e\xb0\x4b\xe5\xe8\xdc\x1e\x7d\x45\x10\x04\xd4\x49\x26\xec\x17\x8f\x15\x6a\x48\x73\x66\x02\xba\x75\x8d\x56\x98\xc4\x89\x36\x59\xa7\xfc\xfc\x36\xbd\xa2\xf5\x61\xd0\xc2\xe3\xcd\x7d\x57\xa6\xd2\xa5\x55\x81\x18\x38\x70\xa5\x6c\x04\x82\x50\xe9\x36\x8b\x1b\xb4\x49\x26\x71\x4d\x82\x92\x25\x15\x9c\xdc\xad\x33\xda\x86\x27\x4e\x82\xfa\xcf\x3d\x70\xbf\x36\xd4\x71\x50\x4d\xee\x55\x0a\xe3\x34\xbd\x01\x5c\xad\xc6\x9f\x53\x8c\x0f\x9e\x9c\xac\xc8\xce\xa2\x8a\x8d\x1b\x3e\x84\xb4\x8b\xc6\xa9\x7a\x30\x40\x9e\x89\x7f\xd7\xec\x91\xe7\x68\xf7\x3e\x60\x88\x32\x93\xb8\x88\x71\xbe\x17\x50\x2d\x34\xf5\x4c\x3b\x74\x0d\x2b\xa9\xe8\xbe\xb4\x41\x43\xd7\x31\x86\x48\x0d\x86\x59\xbc\x85\x99\xbe\x4b\x6b\x87\x3d\xc2\x48\x10\x26\xdf\x37\x3f\x77\x61\x1b\xe3\xc2\xa9\x52\x18\x25\x89\xc7\xf5\xd3\xfd\x5a\x69\x6e\x48\x4f\x7e\x1e\x5a\x57\xef\xe3\x9d\xa0\x4d\x89\x0b\xa5\x1a\xfc\xe0\x97\xda\xf0\x4f\x1e\xf5\x91\xa0\x3f\xb6\xf6\xf2\x2e\x05\xbb\x3e\xcf\xaa\xb9\x2d\xda\xb2\x26\x90\x14\x9e\x69\x8b\xb2\xb7\xb6\xd9\xc2\xbc\x3f\x95\x65\xff\x26\x65\xba\xc9\x28\xf5\x71\x03\xdb\xaa\x0b\xd1\xbe\x1b\x86\x2a\x15\x75\x27\xc7\xd9\x3d\x34\x5a\x2c\xc5\x11\xe1\xb5\xdd\x0f\x15\xc4\x44\x0d\xc5\xa5\x48\x02\x89\x79\x6c\xe3\x30\xa5\xc4\x13\xf6\x34\xf9\xe9\x27\x69\xa2\x36\x18\xb1\x4a\x4b\xf4\xaa\xdb\x1e\xc8\x9a\xb4\x1b\x94\x7a\x98\x71\x5f\xb9\xfe\xbc\xc9\x67\xbe\xaa\xd8\x51\x35\x93\x5f\xfc\x6c\xc7\x20\xb9\xf5\x2d\x95\xa3\x57\xdf\x57\xc6\x17\xd8\x75\x33\x98\xd3\x3f\x8e\xce\x96\x12\x0e\x72\xc3\x2a\x32\x02\x65\x73\x50\x58\xa3\xb9\xe6\x54\x91\x21\xa6\xc4\x62\x7c\xd4\xbb\x3f\x7b\xde\xa6\xcd\x99\x3e\x23\x9d\xc8\xdd\x7b\x7f\x5a\xed\x85\x4c\x1f\x4b\xf6\x15\x7e\x7b\x4a\x36\x36\xf5\xd2\x8a\xd0\x46\xc3\x55\x55\x8d\xc5\x0d\xeb\x75\xd8\xf4\x16\x37\x4d\x94\xd9\xde\xc4\xd8\xc3\x89\x52\xe6\xd2\x2d\x5a\x43\x45\xb3\xa3\xb3\xfc\xbd\x87\x14\x0d\x0b\x03\x71\x1d\xc0\x21\x5a\x1b\xe6\x63\x97\x3b\xd1\x24\x8b\xd1\x82\x94\x6a\xe1\x27\x84\x5b\x4c\x3e\x77\x96\xf6\xb9\x35\x16\xf0\x87\xdd\xca\x4e\x1b\x35\xb1\x45\x5c\x87\xc4\x3f\xef\x6f\x13\x52\x21\xc8\x7a\xd6\xe2\xa1\x78\x6d\x2f\x3f\x5e\xa8\x1a\x5f\x28\x18\xb6\x6e\xd4\x3d\xb6\x88\xc0\xb2\xbc\xb8\x57\x01\x18\x2b\x7a\x87\xf9\x1f\xf4\xc2\xa9\x88\xff\xeb\xe5\x0b\x97\x27\x77\xb2\x73\x2c\x9f\xb5\x5d\xd7\xc6\xe5\xb8\x5e\x53\x1e\x23\xf5\xc4\xbc\xe9\x7b\x9a\x21\x04\x61\xe8\x66\xde\x3d\xc7\x05\xe4\x5f\x96\x69\x15\x26\x72\x83\x30\x23\x7f\xfd\x9d\xad\x1a\x81\x02\x35\x12\xd7\xd5\xfc\xaf\x6e\x54\xbc\xf1\xe3\xba\xfb\xaa\x83\x63\xe5\x63\x69\x13\xa1\x2a\xd4\x25\x5a\x93\x81\x00\xcf\x1d\x63\x07\x2b\x65\x41\xfc\x71\x87\x0c\x96\x07\xdd\x41\x2e\x66\x8a\xbb\x4a\xe1\x7b\x8f\x9e\x1a\x7f\x84\xeb\x96\x4d\x2a\x95\xa3\x6b\x1f\xe0\x1b\x8f\xaa\x1d\x96\x9a\x18\xd5\xc5\x20\x29\x6f\x1d\x15\x1a\x20\xed\xae\x15\x8a\x7d\x08\x90\xd8\x61\xe8\xf8\xb9\x6e\xc5\x85\x17\x55\x08\xdc\x86\x5d\x9a\x14\xde\xb4\xae\x04\x60\xf4\xb5\xc3\xb2\x0a\x8e\x9f\x25\x69\xbb\xd1\x3f\xd6\x44\xc8\x00\x00\x23\xe2\xee\x3d\x6f\xf1\x9c\xe6\xb7\x1c\x2f\xe0\xc6\xf6\x83\x06\x69\x44\x1e\xc4\x87\xea\x22\x5a\xc0\x54\x62\xd6\x3e\x65\x83\x17\x20\x46\xcd\xb0\xc2\x3d\xe5\x36\x6e\x18\x21\xaa\x2d\x9e\x26\xc5\xa2\xb7\x70\xf9\x16\x0d\xf8\x6d\x63\xe4\xa7\x9a\xd0\xf9\x55\x13\xce\xd0\xcb\x38\x3b\x9d\x86\x6f\xe3\x9f\xb1\x7b\x7a\x02\xdd\xc9\x1d\x1b\xa0\x91\xa1\xc2\xf8\x7f\xf8\xd4\xb6\xb0\x79\xf8\x08\xf5\xc3\xb9\xc9\xb1\xff\x5f\x73\xb8\x3a\x3b\x26\x42\x36\x1e\x3d\xa5\xf1\x20\x14\x16\xb6\xd8\xc4\xe7\x4f\xd3\x42\x7f\xc2\x4f\x22\xd4\xed\x14\xe5\x71\x7d\xa3\xfc\xad\x88\x55\x88\x90\x04\xcd\xf5\xbd\xc3\x5f\xff\x42\x46\x7d\x12\xaa\x9b\xc4\x9f\x1d\xc9\x02\xbf\x51\x46\xcd\x8d\xdf\x89\x6c\xd1\x37\x7a\x60\x7a\x5e\x09\xc8\x79\x16\x7b\xdf\xd7\xe6\x09\x40\xcc\xe2\xdb\x8f\xca\x6d\xf2\x64\x54\x90\x1d\x10\x87\xb2\x0c\x26\x30\xff\xd6\x12\x09\x0c\xf2\x30\xe8\x0b\xcb\x85\xf5\xf7\xb6\xa7\x97\xc9\x25\x5c\x6e\x68\x86\x3c\xaf\x4e\xcb\xc7\x76\x15\x06\x21\x0d\xdd\xd8\x11\xd5\x18\x72\x8d\xc4\xf2\xba\x26\xc6\xfb\x8b\x50\x85\x11\x43\x1d\x86\x0c\x5e\x92\xce\x82\x1b\x04\xab\x89\x34\x77\xab\xf2\xae\x7c\x0b\xdb\xc2\x88\xed\xe8\x68\x6d\x11\x76\x33\x2f\x21\xa0\x28\xfa\xe1\x05\x0a\x33\x96\x1a\x04\xd9\xc4\x17\x48\xc3\x9d\x93\x65\xde\x05\xb8\x74\xfc\x87\xf3\x12\x9e\x74\x58\xe5\x1a\x18\xb9\x49\x9a\x2e\xbf\x89\x5a\x22\x6f\x5c\xad\x00\xcb\x4c\x86\x6a\x35\x7e\xb7\x2f\x53\x78\xeb\x7e\xc0\x48\x15\x46\x94\x9b\x34\xdd\x5c\x1f\x11\x3b\x61\x10\x5d\xf0\x6e\x16\x62\x33\x63\x06\x6f\x1b\x4f\x5d\x3c\x4e\x61\x36\xb9\xf1\xb9\x0d\xd4\x36\x68\xef\x83\x8a\xe7\x14\x6c\xd2\xc4\x55\x9c\x7b\xbf\x56\xba\x03\xfd\x2f\xf1\x08\xfa\x8e\xc6\x42\xc1\x4e\x25\xae\xcd\xf8\xec\x99\x93\xaa\xff\x3c\x98\x03\x0c\xae\x6a\xf2\xb1\xc6\xe7\xe7\x4e\xd0\x2a\xd7\x44\x9d\x23\xfe\x0e\x42\x37\xfc\xe2\x17\xf8\x3f\x6a\x5a\x28\x3e\x6a\x67\xbf\xae\x28\x24\xb9\x0d\xc2\xa8\xcb\x49\xac\xf1\x2f\x38\xfb\x65\x1d\xe3\x94\x34\x4a\x1c\x5e\xb4\x7f\xaa\x5e\x2a\x1b\xc8\x43\x06\xe7\x74\x00\xcc\xf8\xab\x77\x2a\x33\x30\x0f\x14\x62\xe1\x8d\x17\x06\xc8\x11\x88\x43\x6a\x96\xaa\x80\xff\xb5\xd9\x1a\x99\x12\xb1\x1a\x49\x76\x53\xaf\xbe\x2a\xa7\xaa\x2e\x36\xea\xa5\x72\x74\x8f\xcb\x87\xdc\xdc\x19\x23\x3e\xbf\x50\xe1\x9f\xbf\x84\xa7\xb8\x2a\xa5\x01\x7f\xf3\x42\x74\x6e\xe7\x87\xb2\x8f\x99\xa8\x2f\x46\xef\x19\xa0\x69\x54\xa3\x0a\x75\xb1\x2f\x44\x71\xe0\xbd\x4d\x3e\x24\x25\xc7\xc2\x76\x19\xe2\x9f\xee\xe1\x7c\x94\xeb\x80\x5c\xa5\x2f\x7b\x36\x0f\x6e\x9b\x8d\xb0\x44\xff\x14\xea\x8b\x9b\x9e\x19\x9e\x45\x5f\xc3\x1a\xe2\x33\x7b\xb5\x83\x69\xd1\xa6\x9b\x24\xcf\x35\x03\x95\xee\x00\x39\x89\x22\xe3\x85\xab\x47\xeb\xdd\x95\x95\xb8\x94\x14\x8e\xbf\xa5\x5c\xb9\xb0\xc2\x4f\x2d\x6c\xf9\x72\x7f\x78\xa8\x43\xfb\x88\x61\x82\x2a\x3c\x61\x2b\x92\x59\x6e\x40\x52\x27\xb7\xb8\xf8\xf5\x17\x09\xab\xd1\xb8\x58\x84\xeb\xb4\x6c\xb3\xfc\x60\x34\x0c\x7c\x0e\x4e\x9d\x35\x5e\xb7\xe6\x35\x38\xb1\x42\xf4\x2b\xa7\x4d\xd4\xbc\x79\x5d\xdc\x9c\xd2\xe4\x0d\xed\xd7\xaf\x1f\xad\x00\x54\x6d\x9b\xa8\xca\x0f\x3f\xb3\x95\x58\x81\x08\xec\x3a\xf2\xcf\x0d\xd2\x59\x6c\x86\x45\x5c\x5c\x72\x50\x3d\x65\xcb\x15\xfe\x66\xab\x7a\xf8\xb5\x1a\x40\x5a\x6e\x5b\x39\x34\x93\x2a\x21\xf4\x9c\xb1\x3d\x2b\xa6\x83\x59\xa2\x65\xf8\xd6\xc3\xf2\x48\x83\x60\x7b\x95\xc4\x35\x10\x9c\xc5\x2f\x7d\xa8\x1c\x77\xda\x50\x85\xc6\x86\xbd\xa3\x6f\xf9\xfd\x90\x07\x61\x81\xe7\xba\x5a\xf3\x1f\xb2\x29\x0c\x31\xe0\xcd\x1f\x1f\xad\x6d\x9f\x40\x4f\xb9\x25\x2a\xf5\x11\xaf\x0c\x93\x45\x95\x9d\x1c\xdf\xb1\xf7\x6b\x47\x09\x4b\xd1\xf9\xdc\x8d\x0d\x29\xb8\x08\x12\x7e\xc9\xa5\xfc\xc9\x36\x7e\xc9\x4c\xda\x74\x3d\x1b\xb5\x44\x91\xfd\xe8\xb6\x54\x03\x1e\x24\x02\x0b\xbf\x7c\x5f\x35\x4e\x09\x19\xe1\x26\xbf\xcf\x6d\xd1\x0a\x57\x8a\x12\xcc\xf1\xc5\x82\x90\x9f\x65\x10\xdc\xa6\x71\xf0\x70\x40\x02\x0a\xb4\x9d\xa4\xb0\xed\xd5\xe0\x11\xa8\x53\x53\xd3\x78\xac\xa1\x23\xcd\x6c\x0e\xe4\x16\xbf\xf8\xe0\x0b\xaa\x30\xa5\x57\xa7\xca\x10\xe0\x94\x13\xc3\xd4\x11\x6d\xe8\xc0\xcd\x58\x3d\x92\x7f\x54\x6a\x18\x21\x13\x24\xa7\xc2\xac\x37\xf5\xe1\x0c\xf5\x31\x40\xc0\xa2\xb7\x34\x06\x99\x49\x3c\x9b\x3a\x08\x44\x1a\xe1\x70\x7e\x49\x71\x2b\xaf\x84\xac\xc6\xed\x15\xf7\xbd\x32\x52\xd1\x54\x6b\xa0\xc4\x79\x34\x3f\x72\xb1\xa2\xce\x6a\xd1\xd0\x6e\x53\x0a\xcd\xef\xd8\x2d\x0f\xed\xcc\xa9\x3d\x33\xa0\xe8\x9a\x3f\x43\xe3\x97\x00\x03\x5d\x1a\xa5\x2d\x7f\x41\x19\x3c\x89\x48\x09\x15\xed\x8e\x77\xb2\xc5\xab\x43\x6c\xcc\xd1\xad\x67\x8c\xd3\xe8\xb9\x16\xf6\x91\x17\x17\xcf\x90\xc0\xd4\xa9\xe6\xe8\x17\x64\x53\xec\xb7\xb8\x38\x26\x40\x5d\x3f\x3d\x59\x98\xe0\x03\xaf\x0e\xf2\xb8\xd7\x29\x61\x87\xdd\x71\xc9\xa8\x17\xfe\x3f\x69\x8c\x57\x26\x24\x36\xa9\x52\xe6\x12\x94\xd5\xb0\xdd\xac\xc8\xf3\x32\x8c\x1c\xf8\xc0\x37\xee\x95\x8f\xba\xc6\x88\xe7\x71\x04\xd7\x7f\x4e\x96\x40\x85\x39\x80\xbe\xfb\xc6\x70\x0d\x54\x80\x93\x31\xee\xe6\x20\xbb\x8a\x44\xcc\x69\xb5\x0b\x19\xe7\x5e\x79\x8a\x9f\x92\x80\x18\xf5\x44\xe9\x34\xf7\xd9\xa7\xe5\x90\x95\xb8\x86\x1d\x9a\x6d\x70\xd3\xc2\xb9\x03\xf4\xf1\x2f\x61\xc9\xaa\x2c\xb8\x5e\x83\xc0\x11\xdf\x4f\x9d\x36\x0a\x77\x3d\x33\x4e\xbb\x2e\x6e\x5c\x36\xe2\xd4\x8c\xee\xcf\x4f\xc8\xf3\x6c\x84\x81\xcd\x8b\xb2\x1b\x97\x88\x1e\x02\xd7\x84\x2b\x7c\xee\xe6\x53\xd2\xda\xb1\x02\x87\xf1\x8b\x4b\xc7\xca\x5b\x62\x51\xc7\xf3\xa9\x8a\x9a\xb9\xe3\xc8\x18\x75\x50\xaf\xd1\x0d\x36\x2e\xcc\x2a\xdf\xd4\x18\x46\x01\xe8\xa5\x9b\x86\x45\x6c\x93\x25\x8b\xf2\x5f\x1e\x90\xbf\xa5\x12\xba\x86\x65\x21\xb5\x2b\xed\x7a\x3a\x0d\x4b\xd4\x51\xfb\xb8\x9f\x5d\xc9\xab\x99\x6b\x68\x7c\x43\xa3\xc7\x56\x29\x53\x16\xea\x06\x56\x7c\xcc\x3e\xa2\xe8\x0d\xd4\x10\xe1\x2b\x8d\x63\x87\x54\xcf\x1c\x5f\xf8\xa8\xe7\xd6\xbf\xa4\x2c\xf2\x80\xa5\x5d\x8e\xb6\x4e\xfe\xbb\xdc\x95\x06\x08\x3a\x2d\x7a\x61\x74\x26\x2b\x1a\x36\x71\x90\x21\xdc\x20\xbb\xee\x3f\x5d\x42\x00\xe3\x54\xfe\x91\x45\xe3\x95\x8a\xd6\xe4\x03\x98\xec\x41\xb8\xaf\x93\x7f\x2b\x64\xfb\xb4\x54\x8e\xce\x1f\x3d\x38\x49\x42\x21\x67\x13\x16\x67\x06\x3a\x5e\xae\x46\x1c\x7e\x35\x73\x47\x77\x28\x89\x08\xbb\x50\xfd\x25\xc1\x7f\xc8\xd1\xec\x31\xb2\x89\x81\x5d\x5f\xcc\xe1\x72\xdf\x7a\x8f\x67\x70\x07\x07\x16\x85\x73\xf3\xf8\x4e\x5d\xf6\xc7\x0b\xe1\x5c\xc1\xf0\xf9\x7b\xe7\x6b\xe9\xc7\x26\x71\x6d\x28\x46\x8b\x5f\x58\x9d\x36\x09\x55\xc4\x54\xc0\xc8\x05\xa3\x35\xc7\x11\x64\x87\x58\xf8\x04\xfd\xfe\xd9\x2c\xed\xb9\x17\x79\x62\xfa\xaa\xef\x88\xd6\xd8\x83\xc5\x75\x22\x01\xe1\x05\xeb\xef\x46\x6a\x20\xf1\xb8\x6f\xb7\xab\x09\x74\xe7\x6f\x9d\x1c\xb0\x77\x35\x72\x51\x0d\xf7\x37\xf0\xcf\xaf\x59\xad\x32\x2e\xdc\x9a\x4d\x1d\xcc\x78\xbc\xea\xcb\x7f\x7d\x89\xba\x94\xa8\x72\x4f\xe1\x52\x39\x3a\xb1\x5d\x43\x21\xd2\x90\x65\x93\x51\x01\x6f\x49\xc7\x46\x61\x6f\x2a\x6e\x92\x1f\xad\xce\x7b\x1d\xaf\x82\x6d\xbb\x54\x8e\x6e\xeb\xd1\x0c\x0d\x00\x5f\x8d\x58\x9a\x37\xee\x0d\xb2\x9d\x6f\x85\x51\x5a\xb7\x5b\x09\xaa\x12\xf4\x56\x15\x12\x85\x1f\x50\x0f\xc0\x16\xd0\x58\x68\xb1\xc2\x20\x35\xc4\x70\x90\x4a\x9f\xe7\x1f\x11\xd6\x5a\xaa\xb6\x4c\xfe\xc8\x0a\xbd\x28\xaf\xe3\x14\x0b\x7f\x96\x3b\x41\x19\x4f\xdb\x18\xf1\x6d\x7c\xb6\x05\xfe\xe4\x5a\x59\x71\xc6\x5d\x7a\x50\xa7\x0d\x1f\x14\x41\x0a\x5f\x1d\x20\x84\x2b\x5c\xde\x03\xc1\x2c\xe0\x49\x7d\xa7\xe5\xd9\xd4\x17\xec\x8a\xe8\x6b\x8f\x67\x03\x4b\x05\x33\xbc\x16\x7e\x5e\xf6\xb9\x17\x07\x0a\x52\x0d\xe8\x5c\xf1\xbd\xd0\x1f\x06\x9d\xa7\xd5\x05\xcc\xe5\xe6\xa5\xed\xea\x68\x6f\x6f\x6d\xe7\x3d\x9b\x28\x19\x66\x8e\x5c\x3f\x34\xfe\xc3\x65\xe5\x6b\x14\x68\xef\xe4\x81\xd2\x34\x3c\x41\x9a\x45\xb7\xf6\x26\xb6\x5d\xd8\x24\x42\xc6\x24\x78\x48\xc7\x29\x99\x98\x89\x36\x2d\x7f\xc9\x76\xd5\xa9\x18\x0a\x4a\xfe\xe9\xc7\x3d\xa9\xcd\xdb\x43\xcf\xb3\x05\x82\x83\x97\x7d\x4b\x57\xa9\xcb\x02\x83\x72\x0f\xcf\xdc\xff\x3e\xad\x2b\x42\x80\xe9\x0a\x47\xdd\x2f\xf1\x4e\x97\xbe\x3b\xcd\xf8\xbb\x8d\x9e\x9d\x7e\x0d\x9a\xba\xba\xe5\x46\xbd\xa1\x11\x3f\x6c\x2c\xa6\xaa\x92\x82\xd5\x7d\x30\x0b\x7a\x9a\x36\x5b\x1c\xac\xcd\xef\x9f\xdb\xec\x6f\x85\xa9\xa7\xd0\xa8\xf7\x4d\xcd\xb8\x97\xd8\x36\xc4\xda\xe8\xec\xe7\x25\x78\x42\x4c\xdd\x3e\x7d\x64\x88\xac\x22\xf8\x7d\x6c\xee\x93\xc2\x8d\x35\x9b\xf3\x0f\xb2\xd7\x7c\xf0\xfb\x82\x21\x0f\x73\xa7\xff\x1e\x3f\x58\x81\x7d\x80\xf8\xc5\x07\x8f\x08\x39\x7b\xe4\xfb\x71\x09\x5b\x69\x95\xca\xd1\xe9\x1d\x9a\x2a\x19\xb6\xbd\xa4\x1d\x8f\x3e\xd5\x2b\x94\x1c\x90\x0d\x6a\xff\x12\xa3\xf9\xc4\x5a\x45\x4b\x7b\xea\x8c\x99\x73\xe2\xdf\xf9\xe2\xfe\xe1\x49\x90\xf1\xf1\xcd\x21\x77\xc9\xee\xcb\x7d\x66\x2a\x3f\xaf\x0b\x19\x11\x68\xd9\xfd\xbb\x25\x9e\xdd\x53\x09\x36\x1b\x34\x46\x0c\xa8\x20\x81\x55\x1e\x84\xfa\x33\xf6\xa6\xd5\xbf\x9f\x30\x05\xfa\x72\x51\x34\x38\xfe\x6f\x97\x2e\x5d\x76\x8d\x70\x90\x3c\xf3\x3d\x7e\xdd\x13\x39\x8e\xf8\xcf\xfe\x70\x58\xdb\x44\x8a\xde\xb9\xf0\xb6\xa2\xfb\x65\x20\x16\x70\x61\xea\xc2\xc3\x1b\xa5\x88\x64\xa0\x33\xa4\xfb\x72\x1d\xdb\x85\x87\x26\xad\x54\x5a\xdc\xdc\x31\x7f\xea\x6c\x59\x15\x5a\x28\xbe\xfc\x26\x1f\xcd\x14\xd7\xbd\x20\x1c\xd5\x40\xf9\xb4\x54\x8e\x5e\x7c\x4e\x77\x6b\x07\x86\x76\x32\x3d\x7a\x77\xa4\x02\x3d\xb2\x28\x0d\xe2\x56\x33\xfe\x8b\x63\x9d\x8a\xa1\x3c\xc3\x8d\xc4\xc4\x71\xd6\xa2\x76\x0f\x28\xe2\xaa\xc6\xff\x57\x3e\xc4\x67\x07\x97\x71\x09\x8f\xe4\x6c\x47\x4f\xee\x91\xc7\x0f\x71\xe9\xdb\x73\x0e\x6a\x18\x17\x8e\xac\x98\xaa\x58\x3a\x45\xb7\x8c\x97\x9f\xb0\x37\x34\x89\x41\xf8\x1c\x39\xff\xe2\x36\xcd\xa7\x89\x04\x16\x71\x13\x8a\xc6\x5c\x0d\xb1\x66\xe3\x5e\xe4\x9a\x8c\x66\x89\x56\x85\xef\x3d\x22\xcb\x0f\x0f\x85\xb6\x3a\xaa\xcc\x0f\x3c\x2a\xb9\x8f\x94\x25\x67\xc3\xb8\x41\xa7\x14\x3b\x9e\x0d\x75\xb9\xe8\xca\x0a\x9f\x59\x78\xb6\x1e\x60\x7d\x5a\xad\x66\x16\x28\xb7\xdc\x77\x8e\x56\x1c\xc4\x37\x41\x2f\x66\xbe\x39\x4e\x15\x24\x47\x2c\x64\x08\xde\xce\x77\x6f\x6c\x23\x02\x55\x09\xf8\xc1\x71\x24\xce\x0f\x5f\xcb\x26\x55\x9f\x11\x17\xd5\x10\xe3\xb6\x8c\x90\x3e\x2f\xbe\x54\x1b\x2a\x22\x16\x58\xa2\xfb\xcd\xb1\x0d\xf2\xa1\xc7\xbf\x17\xb9\x01\x88\xed\xe5\x86\x45\xda\x43\x47\x76\x3d\x21\x8b\x17\x7e\x39\x35\xfb\x5b\x91\x53\x41\xbe\x8f\x4c\x9a\x1a\x3b\x17\xe8\x16\x0d\x5c\x86\x5d\x9f\x26\xee\xaf\x43\xde\x3a\xab\xff\xcc\x3c\x55\xe4\xe5\x95\x8f\x49\x7f\x30\x70\x48\x63\xd4\x25\x46\xbb\xfa\xc8\x87\x1f\x2a\x16\xab\x16\x72\x5d\x55\xa8\x2a\x17\x69\xe2\xb0\x04\x90\xa0\x62\xa0\x1a\xf9\xc7\x86\xa8\x60\x3c\x10\xd3\xba\xa3\x5b\xd5\xe4\xae\x0a\xdb\xab\xab\x5e\x1e\x26\x6a\xa8\x00\xe4\x25\x60\x90\x73\xe9\xd6\x89\x5a\x9c\x66\x26\xe6\x32\x2e\xaa\xbb\xd3\x97\xb8\x06\x47\xe9\x13\xd4\xf1\xd0\xcd\x6d\x21\xf6\x1b\x17\xa8\x32\x5f\x04\xe4\xa8\x5e\xbf\x2d\x5b\xf8\xf1\x0d\x05\xc7\xde\xd5\x1e\x51\x7a\x61\x94\xb4\xd7\xb9\x73\xb7\xf0\xf0\xb4\x38\x54\x8e\x7c\xa5\x47\xd9\xb3\xaa\x22\xdf\x85\x3d\x37\xca\x0e\xc0\x0d\x99\xcf\xc7\x8d\xbf\x7e\x48\xde\xdb\x69\x33\x40\xd2\xf4\x63\xc3\x25\xa2\x05\x39\xaa\x52\xc4\x87\xba\x94\xa5\xa1\xe2\x48\x47\xec\x90\x23\x30\xa8\x4d\xd5\x8b\x7e\xe1\xce\x53\x45\x01\x1d\xff\x8a\x93\x17\xa9\xa2\xad\xb5\x1a\x0f\x67\x7d\x85\x21\x77\xea\xb0\x7f\x9b\xd6\x5c\x2c\x37\xe6\x2f\x31\x45\xa9\x9c\x37\x2c\xf9\xcb\xef\x68\xf3\x05\xb5\xbd\x20\x64\x98\xef\xc3\xd1\x53\xb2\x81\x42\x9e\x87\x11\xcb\xb8\x42\xfe\x6e\x24\x27\x82\x2e\xc6\x2d\xd7\xa8\x63\x35\x42\x8c\x7a\x54\x1b\xcd\x84\x76\xa2\xb1\x1a\x6d\x13\x54\x20\x70\x47\x0a\x10\xe3\x54\xa0\xe2\x19\xd5\xec\x23\x0a\x88\x83\x61\x5f\x24\xc2\xe7\x92\xee\x36\xc5\x02\x70\x14\x93\xb0\xe9\x79\xe7\x67\xef\x50\xc9\x0f\x5a\xc9\x3f\x2f\x5c\x38\x75\x8c\x56\x18\x09\x17\x41\xee\x2d\xfe\xf8\x60\xd1\xb5\xb9\x21\xaf\xcb\x73\xab\xef\x50\x13\x6c\x57\x57\x77\xfc\x21\xc6\x45\xaa\x25\x87\x4b\x1b\xc2\x92\xa3\xf8\xb1\xf5\x19\x51\x43\x4f\x30\xd3\xe3\x9f\x7d\xe7\x01\xed\x59\x60\x81\x2a\x8b\x7e\xb6\xad\xff\xa6\x6a\xd9\x65\x7d\x85\x91\x0f\xa6\x19\x9a\x51\xd9\xb6\x46\xff\xb7\x78\x82\x32\x2b\xe4\xb8\x0c\x21\x1c\x2f\x97\x35\xe3\x9f\x53\x04\xf4\xb1\x4f\x41\x8e\x74\xc7\x09\xc5\xfc\xd6\x6a\xdb\x0b\x7e\x71\x9e\x86\xe0\xa1\xa1\x87\xb9\xd8\x60\xf3\x41\x4e\x34\xf8\x04\x38\xdc\x66\xa4\x53\x0a\x8b\x8f\x64\x8b\x66\x1b\xa3\x6a\x7f\x9d\x55\xe1\x01\x5b\xe1\x10\xd0\x96\x30\x53\x68\x5c\xaa\xab\x4c\xd4\xb9\x84\x6b\x34\xad\xa2\x98\x66\xd2\xb8\x82\x87\x91\xcb\x00\x4d\x8e\xd9\xc3\xbe\xf0\xfb\xce\x6f\x9c\xac\x92\xc5\x0c\x2c\xd8\x44\xf9\x83\x11\xef\x7c\x61\x68\x5f\x8e\x4e\xbf\x5b\x1d\x5b\xb0\x80\xc0\xf1\xbb\x69\x92\x92\xf0\x43\x06\x25\x1a\xfc\xeb\xa6\x66\x1a\xe2\xc4\x31\xdf\x2f\xd9\xa8\xd4\x4b\x6d\xa2\x5c\xb0\x7d\x77\xfc\x1d\x6c\x09\x7c\xee\xe3\x87\xb3\x57\xad\x41\x8c\xb8\xc7\x4c\x04\xfd\xfe\x56\x19\xa1\xbe\x31\x8f\xba\x1c\x55\x5f\xef\x50\x4b\x76\x12\x40\xdf\x18\x1f\xcf\x5f\xdf\xaf\x1b\x51\x27\x0a\x56\xbc\xed\x3e\x34\x4f\xd3\xce\xe2\x84\x40\xa1\xf5\x15\xd7\x63\x23\x35\x1f\x07\x3e\xdb\xe0\x27\xf3\x23\xa6\xae\x7e\xe7\xfa\x01\x09\xe2\x8a\x92\xa4\x3d\x1d\xbe\xef\x1c\x45\x02\xf2\xe6\x90\x30\x2e\x8a\x98\x0d\xd9\xbf\xe9\x94\xb9\x69\x56\x57\xca\x19\x68\xab\xe7\x7a\x0e\x74\x28\x73\x48\xe4\x00\x11\x9b\x0f\x50\x76\xdf\xcf\x6f\x67\x85\x86\x37\x87\x9c\xbd\xf9\x4f\x4b\xb3\x03\xb5\x3a\x6e\x89\xb9\xe3\x29\x6f\x0e\x11\xe1\x12\xe4\x32\xa1\x16\xff\x56\x45\x51\x6b\x47\x1e\x5f\x4a\x44\xfb\x77\xca\x83\xb0\x86\xb8\x56\x88\xe2\x27\x3e\x6a\x87\x7c\xe2\x6e\x68\xdb\x44\xf0\x32\x73\x7f\x1d\xaf\x1f\x84\x56\x13\x23\x01\x0d\x56\xdb\xc3\xcf\x4d\xd0\xe0\x1e\x0e\xb2\x6d\x88\x67\x7c\xc3\xf5\xec\xf0\xe1\xaa\x80\x65\xc0\x45\xde\x72\x83\x8f\xaa\x8b\x6a\x62\x24\x2a\x19\x37\xbc\x31\xbe\xbf\x9a\x46\x58\x55\xc1\xe1\x7a\xd1\xd2\x83\x5b\xe8\x27\x68\xaa\x68\xcf\x68\x55\x69\xbc\x85\x19\x84\xd3\x2b\x8e\x29\x55\xa7\x03\xd8\x81\x2f\x6d\x91\x1d\x0e\x76\xc1\x72\x01\x58\xc2\x32\xac\x3f\xb0\x54\x53\xd9\x61\x29\x66\xcf\x4e\x26\xe0\xe7\xdd\xa0\xc1\xf9\x89\x93\x18\xbf\x06\x03\xb2\x2f\xad\x26\xe4\x81\xa2\xc7\x97\x29\x2a\x6d\x38\x48\xe6\x9b\x03\xf7\x0b\xd6\x08\x65\x35\x78\xed\xc5\xe6\x63\xe9\xca\xbb\x02\x73\xb4\xfc\x53\xba\x97\xac\xc0\xa6\x97\xfb\xf2\xdf\xdb\xad\x98\xa5\x01\xb3\xb9\x1c\x9d\x58\xac\xce\xe7\x19\x53\x43\xd9\xcf\x07\x8e\x51\x3a\xb6\x5e\xca\x32\x3b\xe8\xbd\x4f\xcb\xc7\x68\x22\xb7\x16\xc2\x35\x9c\xe3\x29\xea\xa8\x28\xe0\x42\xb6\xd1\xb9\xd5\x21\xea\x59\x06\x75\xe3\x35\xfb\x55\xea\xc6\xcc\xd9\xf1\xd7\x39\xf3\xe0\x10\x71\xb3\x1d\xc4\xb1\xa8\x91\x7f\xf7\x47\xb5\x5a\x0f\xb9\x66\x13\x11\x37\x23\xfb\x11\x8d\xde\x22\xdc\x95\x10\xab\x73\x52\x44\xe1\xd8\x4b\xfc\x69\x05\x89\xb7\x43\x71\xfd\xbb\xf2\x23\xbb\x9d\xd5\x4e\x4e\x7c\xba\x61\xe5\x08\x71\x65\x91\x89\x1d\xa9\xc8\x65\x9c\xd0\xb8\xd4\x21\xa3\x1e\x96\x28\x45\xe0\x9f\x7c\xa8\xeb\xb3\x50\x60\x2a\xf2\x80\x70\xc7\xc6\x6c\xd4\x68\x61\x3b\xf0\x89\xd0\xb4\x15\x1f\xfc\x95\x07\xe5\x21\x4b\x1e\x72\x36\x10\x6c\x2f\x4a\xd4\x9c\x1d\xb4\x11\x1c\x73\xb7\x76\xa8\x0a\xd4\xa2\xbe\x57\x84\xf5\x87\x2a\x05\x92\x15\x26\x87\xa9\xd0\x1d\xa4\xb5\x59\x0d\xa9\x32\x74\x6f\x2f\x85\x48\x5a\xba\xc2\xb7\x91\x43\xda\xb4\x0e\xf3\xc3\xde\x1d\xab\xf7\x35\x9c\xe2\xc5\x15\x56\x2e\xb2\xf9\x63\xf7\x42\x1f\x1c\xf5\xa2\x47\x5e\xd6\xd7\x4c\xcc\xcf\x82\x3d\x73\xbf\x56\x5c\x43\x20\xb4\xb2\x44\x2f\x3d\xfa\x79\x24\x48\xe3\x34\xc0\x76\xbb\x31\xcb\xfc\x67\xe5\xc0\x8b\x86\x41\x89\x56\xb9\xff\x59\xb9\x2f\xff\xef\xab\x87\x8a\xc3\x94\x84\xe2\x72\x5f\x7e\xc5\x7a\x99\xd6\x3c\xd4\x32\x2c\x6c\x80\xe9\x7f\xfe\x53\xc7\x55\xcc\x4e\x9c\x55\x6a\xbc\x89\xce\xbd\xa2\xb1\xcf\xaa\x21\xb6\x25\x62\xfd\x9e\x95\x57\x80\x71\x66\xca\xf2\x98\x57\x0d\x79\x9b\x3b\x01\xfe\x7c\x02\x0a\x26\x74\xad\x99\x5d\x31\x71\x97\x39\x63\xfe\x94\xec\xe7\x6f\x7b\xb6\x7f\x58\x2e\x0b\xdf\x2a\xc3\x6e\x1d\x2b\x84\xf6\xc2\x3d\x4f\xa6\x35\x90\x6b\x2b\x9a\x30\xb9\x5f\xac\xd4\x67\x39\x55\x5e\x5e\x46\x8f\x28\xaa\x53\x01\xb2\xeb\x7c\x76\xd3\x99\x17\xa0\x37\x5b\x08\xc1\xfe\x76\x8f\xee\x1a\x6e\x62\xe6\x1b\x94\x61\xa1\x3d\x59\xbc\xfd\xfa\x6c\x1f\x4a\x2a\x0c\x59\xc4\xc9\xb6\xc9\xf9\xbf\x1d\x1e\xa3\x87\x1f\xc3\x4a\xe5\xe8\x66\xbe\x97\x1d\x5a\xcd\x14\x38\xab\xdc\x4f\xa6\x9e\x21\x2a\x67\xe6\x22\xd7\xc4\xaa\xcf\xe2\xe2\x03\x29\x76\x8f\x36\xb2\xd6\xb7\xf8\x98\x26\xa9\x9d\x5a\xc3\x7c\x79\xb8\x00\xaf\xc4\x15\x2f\xa4\x84\x9b\x5f\xcb\xfe\xb7\x34\x0c\x44\x0f\xfb\x95\xb5\x3c\x74\x34\xc0\x7c\x19\x42\xc2\xdd\xf7\xa7\xae\x04\x50\x53\x43\x01\x3c\xfa\xfa\xd3\x55\x76\x6b\x39\x3a\x7f\xef\x50\xe5\xe2\x59\x18\x0a\x97\xa9\x96\xfc\x43\x1b\x85\x35\x0b\x48\x11\x03\x39\x82\xdf\xa4\x4d\x17\x8e\xa7\xba\xba\xfb\x83\xe6\xd4\x0c\x33\x14\xa1\xfa\x58\xc0\x87\x92\x20\x96\x88\x68\x3f\xb9\x9b\x7f\xb6\x2b\xae\x50\x0e\x40\x49\xb3\x3a\xe3\x1e\x70\xa2\x53\xb8\x21\xd0\xe6\xab\x2e\x07\x29\x00\x41\xf4\x99\x7d\x2a\xf7\x9e\x05\xc4\x20\x1e\x67\xfe\xf6\xe5\x17\x77\x8e\x56\xa6\x0a\x76\x35\x13\xff\x5f\x7b\x47\xd6\xd4\xbd\x09\xe4\xa7\x98\x7b\x52\xe1\x24\xcf\x8a\x7f\xc8\x0f\x5c\x8d\xf1\xc1\x5d\xc0\x04\xfe\xf6\x63\x93\x35\x62\x13\xd7\x57\x82\x57\xe6\xec\x6e\xf3\x3b\x08\x2b\x36\x31\x92\x4d\x43\xa9\x3b\x11\x51\x08\x90\x1f\x30\xea\x59\x5c\x3e\xec\x7f\xf6\x67\x7f\xe6\x2c\x40\xf4\xf1\xb9\xed\x87\x87\x74\x49\xbe\x4a\xe8\x70\x8c\x91\xf9\x94\xd2\xcb\xc4\xad\x3e\x11\x2a\x2c\xa7\xcd\xe0\xbf\xc7\x47\x36\xf6\xa5\xdb\x4a\xe1\xae\x35\x12\x94\x64\xf9\x95\x36\xfe\x57\xfe\x0f\x07\x34\x1c\xba\xeb\xc7\xbd\x24\xc7\x4b\xdf\x3b\x88\xbf\x47\xf0\xf4\x66\x9c\xc2\x9c\x67\x03\x15\x82\x26\x65\xbe\x30\x25\x2d\x36\xec\xd1\x4a\x9f\x15\x50\xb5\x1f\x6e\x3d\x2a\xff\x2e\x34\xc3\x1a\x6d\xc8\xe0\x7f\xcd\x12\x4d\x18\x82\x0f\xce\xb2\xb8\xec\xc2\x75\x03\x64\x5f\x5b\xc7\xcc\xad\x60\xa6\x88\x79\x17\xcf\x7f\x4d\xac\x90\x51\x6a\x62\x31\x7d\xae\xe6\x90\x4f\x02\x90\x74\x61\xa1\x9b\xac\x4f\x2e\x1e\xae\xd4\x07\x18\x71\x3b\x9b\x2f\x5f\x3f\x54\x39\x51\x84\x83\x1f\x7f\x3a\x34\xcb\xe7\x77\x70\x7c\xbf\x1c\xea\x07\x7c\x0c\x95\x1d\x5b\x07\x23\xd2\x64\xab\x7a\x52\xee\x79\x4b\xe7\x68\x34\x88\x99\xa0\x6a\x7f\x31\x5e\xc3\x7f\x34\x28\x6b\xa9\x6c\x83\xbe\x7d\x5a\xf7\x60\xdb\xd4\x50\xe6\x26\x9f\x9b\xc7\xd9\x92\x8b\xb8\x53\x20\x6a\xf7\x31\xda\xbc\x49\x93\xc3\xe7\x72\x8c\x49\xff\x51\xb8\xc6\x4d\x87\xff\xbe\x47\x4a\xe5\xe8\xce\xa3\xf2\xb8\xcd\xec\xea\x2a\x79\x54\xa8\x78\x5f\xa7\x08\xfc\x09\x45\x76\xa1\x44\xb9\xc2\x94\x97\x0b\xc4\xba\xf2\x4f\x0c\x57\x09\x86\x97\xae\x98\x52\x2e\x95\xa3\xdc\x05\xc2\x0a\x6a\xce\xf4\x2e\x88\x5c\xdf\x5d\x36\x5a\x91\x7c\xb1\x3d\xb5\x86\x2d\xbc\x31\x5f\xb7\xde\x08\xe3\xef\x9d\x0a\x9b\x4c\x5d\x38\x36\x8d\xe6\xa0\xac\x94\x4d\xc0\xd3\xae\xe4\x97\x63\x99\x8d\x42\x65\x46\x54\x0c\x1f\x1f\x97\xe5\xaa\xc6\x75\xb6\x72\x6a\xc7\x46\x43\xe2\x1f\x79\xc5\x52\x09\xe2\x7b\xfb\xad\xb3\xb5\xfb\x0e\x32\x52\xca\x38\x34\xfa\x46\x43\x95\xeb\x5f\x43\x70\x22\x9c\x72\x8b\xa6\xf2\xe0\x37\x89\xef\x2b\xcd\xdd\xfa\xad\xa2\x3e\x04\x77\x34\xde\x32\x75\xf3\x62\x13\x11\x06\x3e\x64\x20\xd6\xf6\x14\xa7\xc3\x5c\xb6\xac\x0c\xe8\xd4\xe2\xa8\x04\xd7\x0d\x76\x2d\x32\xfa\x5d\xbf\x92\x3f\xe3\x65\x7c\x7f\xdd\x57\xbc\xa7\x6b\xa4\x96\xf9\x38\xa2\x71\xc3\x8d\x5a\x8e\xa2\x4e\x05\xb6\x6b\xff\xb4\x54\x31\xf5\x31\x60\xd4\x51\x8e\x7e\x37\x56\x9d\x80\x38\x84\x82\x89\x29\xec\x5d\xf3\x0f\xaa\xf0\x02\xc4\x3c\xde\xf8\x7d\xf5\xc4\x38\x3d\x48\x82\x37\xb5\x10\x30\x89\x1e\x3c\xac\x09\x42\x53\x17\xb7\x40\x72\x90\xcf\xb4\x7e\xf3\x9e\x62\x4d\xd5\x26\xb0\x5e\x78\xf7\x79\x7d\x2d\x80\x7d\x08\x62\xd0\xa7\xd4\x77\xa5\x35\xa4\x11\x2a\xfa\xdf\xb9\xfd\x77\xa8\xae\x02\x8e\x67\xe3\x35\x10\x9a\xe7\x2f\xd2\x66\x02\x36\xb8\xba\x0b\xfa\xdd\xa2\x89\x63\xe5\x32\xbb\x8d\x1f\x97\xff\xc9\x50\x4d\x5f\x61\x0d\x17\x35\x49\x68\x03\xc5\x59\xc7\x74\xad\x49\x5b\xee\x73\x0b\xd5\xa7\xa5\xa2\x7c\xea\x0e\xa4\x87\x97\x47\x27\x69\xbb\x78\xea\xc0\x95\xe7\x6b\xff\xc2\x47\x57\xf3\x51\x2e\x48\x3b\x34\x85\xaf\xc2\xc1\x95\xe9\x23\x74\x50\x3b\x8f\xba\xbe\x3a\xad\x1b\xba\xba\xe2\x94\x58\x5c\xb0\x2d\x7b\x56\x66\x0b\x62\x6c\x61\x95\xcb\x2f\xd3\xd5\xd4\xad\x51\x3b\x5d\x6c\x7e\x63\x60\x1b\x3a\xdc\xac\x61\x33\x31\x06\xfc\xf6\x73\x8a\xfc\x36\xe8\xd3\x73\x2b\xbb\xab\x5e\x38\x53\x01\x3e\xb5\x7d\xb0\xdc\x7f\x8e\x1c\xa5\x22\xbe\x69\xd8\x60\x62\xd5\xf4\xe3\xcd\x13\xb5\x12\xdf\x26\xe0\xcd\x9f\x59\x42\xe6\xfe\xfb\xa8\x1c\x51\xb8\xb4\xe4\x52\xd7\xc7\x2e\xe8\x10\xe4\x3e\xaf\x29\xec\x85\x2e\xaa\x30\x02\x9f\x9a\x97\x7c\xab\x36\xa9\xc2\x62\xb0\x91\x1f\xaa\x15\xa1\xb5\x54\xf2\x87\xbb\xa5\x46\x2f\x76\xa4\x14\xb3\xa6\x30\xa6\x9b\xba\x44\x9b\x82\x26\xd0\x73\xb7\x26\x9c\xc0\x9c\x2b\x87\x27\x69\x13\x33\x99\xc1\xbe\xf4\xaa\x0e\x09\x04\x86\x59\xea\xb1\x97\xbb\xd7\x1d\xc5\x97\x78\xfa\x11\x19\xfc\xde\xdf\x73\xbc\xa6\x8c\xaf\x87\xa3\xaf\xbd\x32\x54\x69\xea\x18\x74\x18\x39\x7c\x5c\x36\x62\xc8\xae\x20\x57\xc8\x5c\xff\xe8\x79\x01\x08\x41\xc4\xe5\xf3\x9d\x0b\x35\xe1\x52\x40\xf4\x60\x9f\x4b\x1a\x45\xef\x75\x8d\x50\xe6\x17\x41\x20\x44\x5c\x73\x6b\xb7\x28\xe6\xaf\x02\x2c\xcf\x5f\xe7\x2d\xcf\x29\x51\xd3\x03\xaa\x2f\x1f\x28\xbc\xb9\x4f\x41\xe0\x11\x5f\xd0\xf6\x5a\x9b\xa4\x26\x9e\xa1\xca\x06\x8e\x51\xb6\x0d\x4d\xae\x65\x1e\xfd\xed\x29\xe9\x7b\x62\x25\x3d\x9a\x3c\x22\x0b\xd6\x77\x68\x77\x96\x04\x30\xa4\x89\xc6\xaf\x53\xfd\xd3\x79\xae\x39\xe7\xe1\x91\x0a\x80\x4b\xb6\x6d\xc5\x55\x9a\x0e\x2a\x58\x9a\xa4\xd0\x88\x41\x5b\xb2\xa8\x71\x04\x62\x9f\x91\x59\x91\xfa\xf3\x7e\xe8\x31\xec\xb4\xc7\xb7\xcb\xdf\x53\xc4\x8b\x08\x4f\x02\x6c\xf7\xb8\xbf\x77\x0e\x21\xea\xb9\xdb\xf9\x12\xfa\x1a\x14\x06\x98\xb9\x98\x13\x78\x20\xa5\x3c\x2e\x5f\x31\x84\x17\xe0\x96\x46\x57\xaf\x56\x07\x5c\xb8\xee\xf1\xf5\x37\xbe\xe3\x6c\xcd\x88\xa9\x4d\x1f\x60\x10\xd3\xa1\x41\x01\x78\x03\xf2\xb3\x5d\xd8\xb8\x4e\x22\xf9\xc2\x7e\xf0\x20\x85\xe8\x55\x55\x99\xdf\xa5\x4d\x81\x34\xe9\x1e\xa4\xc1\xad\xb2\xb8\xce\xe8\x73\xca\x02\xc6\x42\xa1\x8f\x4a\xbe\x87\x51\x5d\x8c\x0e\x4e\xea\xd0\xe2\x11\x76\x4d\xa9\xa4\x9d\x9b\x34\xa3\x43\xe9\x39\x59\x0d\x07\xc9\x14\x3f\xbf\x7e\x8f\xd0\x2b\x69\x12\x70\x4a\xbb\xea\xb1\x0e\xb5\xae\xc5\x2c\x68\x0a\x0e\x72\xe1\xed\xe3\xda\x80\x18\xb3\x0a\x68\x57\xf1\xa6\xa6\xd2\x90\xf5\x54\x18\xd7\x42\x8b\x5e\xc8\x9e\x34\x6e\x80\xca\x15\x62\x0e\xf0\xac\x3e\x0d\xf4\xa3\xf3\xbd\x0f\xca\x53\xdf\xa2\xb5\x10\xb6\x01\x7b\x5e\xd7\x78\xeb\xc0\x1f\x4c\x5b\xd7\x6e\x61\x00\xcb\x68\x08\x03\xff\x72\x74\xda\xbc\xb3\x32\x8d\x53\xc9\x63\xa4\x81\x02\xe2\x27\xda\xb1\xc5\xd3\x23\x55\x62\x10\x55\x10\x43\xf5\xf8\xcf\xe7\xed\xe6\xf3\xf7\xd9\xd3\xf8\x80\x61\xe9\xf1\x36\x59\x00\x3f\x01\x9a\xe4\x9e\x1e\xae\x3b\x54\xb2\x7a\xdc\xbb\x0a\x21\xb9\xd1\x7b\x15\xc0\x0f\xb5\x49\xaa\xa3\x1b\x6d\x9e\xa8\xc9\x63\xde\x1c\x22\x06\x43\x49\xa5\x8e\xc9\x6f\x7a\x4c\x6f\x1c\x6b\x82\xcb\x54\xee\xcb\x7d\x61\xad\x06\x3d\xeb\xa4\x9d\xa0\xae\x1c\xff\xfc\x1f\x6c\x54\x4a\x79\x1b\xf3\xa8\x7e\xeb\x09\x39\xb8\xec\xe9\x99\x3a\xb3\xbb\x1b\x34\x51\x1a\x0f\x41\x0c\xb6\xb1\x5b\x9a\x25\x9b\x93\xc1\xa3\xff\x8e\xa6\x82\x97\x28\x26\xf4\xe5\x7e\xa4\x5d\x00\x92\x71\xf0\xcd\x7d\xca\xd2\xee\x07\x57\x29\x49\x34\x15\x1e\xde\xa4\xa2\xcb\x31\xe7\x83\xd2\xe7\x15\xa1\xf7\x06\x66\x4d\x0b\xdb\x40\xed\x1a\xa0\xd0\x47\xc1\xec\x13\xc6\xd0\xdf\xb8\x53\x1b\x1c\xb8\x58\xd0\x24\x4e\x39\xa8\x38\xff\x91\xb8\x78\x8f\x9e\x7a\xb9\x9f\x39\x8a\x48\x47\xbc\x0f\xd8\x73\x9b\x06\x3b\xa3\xac\x89\x5a\x82\xf9\x10\x5f\x91\x31\x5b\x64\x0c\xcc\xa2\x5b\xb7\xcb\x39\x9f\x87\x19\xc3\x28\x54\xd8\xb3\xd1\x1f\x8e\xa5\x65\xc6\xb4\xc0\x2a\x95\xa3\xc3\x8a\x7f\x8a\x85\x6d\x62\x50\x2f\x10\x4b\xa3\xa1\xef\x0e\x57\xce\xae\x1b\x1a\x06\x04\xa4\x5d\xb3\x55\x69\x71\x0f\x05\x16\x16\x00\xcb\x6d\xcf\x6b\x44\x19\xcf\x43\x82\x7e\x9c\xf4\x11\x17\x5d\xaf\xbd\x0a\xe4\xd6\xe4\x9c\xac\x30\xec\x91\x51\x5a\x6d\xd6\x14\x9b\x99\xa5\x81\x92\x17\x0d\x83\xfa\x42\xa5\x6a\xdf\x93\xfc\x9a\xf4\x74\xce\x02\x63\xfc\x69\xc7\x86\x89\x3c\xe9\xfb\x38\xf4\xb9\xf7\xd2\xfa\x4b\x4f\x97\xea\xca\xa8\x54\x8e\x1e\xe8\x52\x0c\xe1\x60\xd1\x60\x20\x9b\xf0\xe1\xf8\x55\xbb\x94\x17\x6c\x51\xc6\x57\x6e\xdb\x34\x23\x33\x89\x46\xe0\xd1\x63\xe2\xe0\x21\xf2\xf0\x0a\x5a\xd1\xc0\x8a\xb2\xfc\x47\xad\xf8\x3e\x8c\x7b\x57\x2b\x3e\x0d\x02\x32\xc7\x9c\xff\xd6\x39\xb2\x4d\x94\x28\x31\xf6\x08\x17\x8e\x49\xe9\x00\xed\x00\xcc\x5d\x3d\x30\xff\x2e\x5d\x92\xa1\xbf\xb5\x69\x33\x15\x6e\xdb\x95\x62\x50\x18\xfc\x18\xd8\x9a\x7e\xe9\x40\x76\x47\xc3\x88\x69\xe2\x7e\xa4\x9d\x0a\x8f\x2d\x48\x7c\x66\xab\x81\x98\x7b\x4e\x7e\xa7\x3f\x3b\x3b\x91\x7a\x8a\xe1\x1b\xba\xae\x62\x03\x38\xf3\x5c\x67\x3b\xff\xcd\x37\x34\xfe\x49\x68\x18\x18\x9b\xc9\x80\xae\x78\xfa\x31\x89\x85\x83\x39\xff\x27\x5e\x53\x7c\x4b\x19\x69\x10\xf0\x65\x8c\x9f\xff\xd3\x03\x65\xdd\x1e\xbf\x4f\x4e\x13\xd1\x8b\xd9\x31\x7b\xb3\xc1\x84\x9e\x67\xe3\xb8\xf8\x57\xd9\x0c\x1f\x99\x9b\xc5\xd3\x7b\x28\x8e\x17\x22\xdc\x64\x9f\xc7\x9e\x3b\xb3\xf8\x45\xf1\xf0\x21\xfb\xe8\x2d\xf0\xd9\x2b\xff\x2e\x83\x2b\x0e\x14\xd1\x11\x57\x81\x41\x87\x71\x1d\x0d\xbd\xc4\xd9\x47\xd3\x47\xd0\x53\x8a\xef\x5f\xe1\xfb\x8a\x7e\x43\x9d\x98\x2e\x82\x28\x7c\xf9\x00\x5d\xf6\xa4\xca\x79\x05\x71\x7b\xf9\xf0\xfa\xd1\xca\x63\x03\x7f\x96\x54\x4f\x3e\x7f\xfe\x5e\x79\xb3\x6a\xc4\xad\x81\xc9\x7e\xb9\x2f\x77\xf7\x44\x4d\xd1\x87\x32\x47\x38\x8d\xc7\x7f\x7d\xad\x32\x84\x8a\x6f\x02\x11\x6e\x84\x4f\x69\x88\x83\xd4\xd6\x34\x41\xed\x14\x17\x5d\x29\x3c\xbc\x79\x31\xed\xc6\x89\xf5\x7f\xb4\xd1\x64\x35\x74\x2a\x09\xf8\xa1\x78\xd3\x3a\x8d\x27\x13\xa0\x20\x0c\x04\xdc\x62\xe2\xd3\x32\x7a\x37\x29\x17\x24\x2e\x3c\x2f\x80\xb3\xa9\xea\x72\xa9\x1c\x9d\xdf\xa9\xa0\x5a\x24\xfd\xf0\xcd\x3b\x39\x50\x04\x76\x4b\xb9\x91\x87\x46\x29\xe1\x53\x35\xf0\xdf\xb7\x3c\x5b\x3e\xce\x14\x72\x1a\xd5\x3d\x4a\xa2\x50\xf1\xf8\xcf\x3e\x2c\x7f\x94\x90\x9c\xe2\x8d\xda\x25\xdb\x46\x89\x6e\xca\x81\x2d\x46\x22\x1b\x17\xfd\x35\xe0\x75\x0f\xb0\x9c\x4b\xe5\xe8\xb3\x03\x65\x7d\xe5\x10\x83\x51\x8f\x51\x6e\xdc\x09\xba\x19\x6b\xc6\x2b\x28\x9d\x16\x9f\x9c\x68\xd2\x52\x27\xe9\x83\x76\x96\x2e\x54\xfb\x72\xff\xf4\xf2\x85\xd9\x90\x96\x0d\x1e\xd0\x6f\xb7\x05\x90\xdd\x89\xf9\x00\x67\x26\x46\x0f\x0c\x1e\x25\x22\x0f\x72\x32\x0e\x7e\x85\xbd\x15\x0d\x26\x23\xb0\x1a\xe2\xb9\xfd\x6b\xef\x64\xbd\x94\xb2\x61\x53\xd0\xce\xd4\x9b\xbf\x50\x33\xfd\x44\x02\xf5\x5e\x78\x53\x26\xaf\xe9\xb3\xe5\x96\xbc\xdc\x57\xb8\x7c\x17\x07\x98\x5f\xe2\x60\x46\x0c\xe4\xa2\xb6\xad\x50\xc1\x1d\x99\x5d\xbc\x81\x29\x3c\x37\xb7\x4e\x07\x50\x93\xb4\xc9\x06\x0c\xeb\xa5\x9c\xd0\x62\x2b\x59\x9b\x9b\x20\x3e\x5a\x2a\x47\xc7\x16\xea\x2a\x59\x15\x6c\x0b\x6d\xf4\xe2\x42\xce\x5c\x2d\x5d\x13\x17\x50\x4a\xcc\x19\xf0\x7e\xdb\x64\x3e\x75\x69\x2b\x6c\xbb\x4f\x12\x41\x70\x7c\x92\x07\x2f\x18\xdf\x76\x33\x89\x89\x2a\x76\xda\xec\x14\x16\x3d\x22\xa0\xb8\x34\x64\x25\xee\x50\x9d\xdb\xf7\xa4\xac\x19\xaa\xd4\xb6\x81\xec\x58\x2a\x47\x33\x5f\x97\x4b\x6d\x33\x8c\x7f\xc1\x0d\xc7\x34\x12\x0b\xa3\x0d\xec\x2a\x7c\xe4\xf7\xde\xd0\x70\x53\x9d\xda\x8a\xe7\xaf\x13\x85\x12\x74\x17\x44\xb1\xfb\xaa\x23\xd5\xe5\x3d\x73\x13\x5a\xd3\xf3\x66\xe2\xad\x0f\x9e\xa5\x71\xc5\x7c\x7f\xb6\x22\x45\x76\x05\xdc\xbe\xa6\x04\x0a\xdb\xa4\x38\x7d\xcb\x78\xa5\x65\xf1\x03\x14\x32\x04\x1c\x82\xf4\xcd\x7d\x7c\xb3\xe6\xf2\x84\x5d\xc3\x8a\xdb\x6c\xb1\xfc\xf9\xcb\x1a\xc5\x69\xa5\x2b\x11\xb7\xfd\xce\x9e\x33\x14\x44\x09\x47\x5b\x99\x7c\xec\x5e\xf8\xf4\x86\x09\xfa\x53\xa9\x62\xe0\xfe\x28\x1d\x87\x65\x8e\x94\x86\x18\x8e\x32\xea\x3c\xfd\x5d\xb5\xbd\x73\x4d\x51\xaf\xbd\x71\x83\x2e\xc5\xe0\x60\x7e\x5a\xa2\x3f\x3d\x98\x3d\xf6\x89\x34\x5a\x74\xe3\x20\x0e\x21\x5b\xc6\x28\x68\xeb\x28\xa5\xee\xee\x2b\x35\xb0\x80\x23\x16\x58\xc5\xf3\x2e\x48\x4f\x11\x5c\x91\xe8\xa2\xf7\xd2\x3f\x98\x36\x1b\xe6\xd7\x1f\x7f\x47\x66\xd7\xaa\xd9\xb8\x10\xd5\x1a\x17\x56\x9c\x52\x39\x22\x0f\xb7\x49\x6b\xb2\x14\x85\x53\xac\x3d\x93\xc8\x0a\x3b\x98\x23\x4a\xf3\x3d\xf9\xc4\xd6\xd9\xa9\x02\x8e\xaa\xaf\x78\xee\x84\xa1\xca\x40\xc2\xad\xc7\x01\x6f\xd2\x51\x5d\x23\x9e\x09\xea\x69\xfe\x26\x4d\x48\xcb\xe3\x5c\xfe\xe4\x69\x56\x57\xe8\xd2\x4d\x08\x54\x72\xa2\x25\x47\xce\x4c\x86\xb1\x02\x59\x9d\x19\xcb\x5c\xfc\xde\x28\x65\x76\x10\x10\x47\x64\x87\xbe\xfc\x95\x2b\x34\x72\x27\x92\xbe\x45\x0b\x15\x67\x76\x13\x57\xb9\x25\x7a\xee\x1e\x0d\x5d\xef\x53\x3e\x7a\xf9\xda\xbb\xd9\x9f\xe4\x18\x55\x14\x72\xb1\x9c\xe2\xa8\xb5\x5a\x19\x69\x18\xd8\xe3\x80\xbd\xf8\xd3\xff\x6d\x81\x2c\x02\x2a\xd8\xc5\x08\x04\x78\x72\x37\x9c\x22\x7b\x88\x5e\x5a\x89\x1f\x1d\x5e\xa9\xe0\x5e\xa8\x41\x70\xc0\xed\xe6\x1f\x7d\xa7\x43\x0f\xab\x81\x90\xa0\x9a\xf4\x56\x36\xc8\xf0\x5e\x59\xa0\x6d\xa7\x9d\x9f\x2d\x65\x3c\xcc\x78\x76\x36\x70\x09\xbb\x16\x72\x0d\xa9\x58\xff\xe1\x21\xf9\x38\xba\xbb\xa7\xce\x84\x9b\xf3\xce\xb1\x36\x20\x17\x4c\xa3\xf8\x3f\x59\xb3\x50\x53\x7a\x24\x6b\x45\x1a\x2a\xdc\xb5\x5a\x43\x17\x1b\x34\x08\xa8\x3a\xcf\xff\xa3\x86\xe4\x85\x05\x9f\x6f\x49\xaa\x76\xb1\xa7\x31\x51\x3b\x48\xfd\xa2\xe9\x7a\xee\x4e\xcb\x5f\x9b\x24\x0e\x57\xb9\x23\x1d\x9a\xa7\x30\x71\xc9\x94\xb9\x4a\x74\x5e\xf5\x34\xcf\xcb\x33\x67\x76\x4e\x03\x61\xfb\x6d\xb7\x4d\xe8\xaf\xd1\xf1\x98\x0a\x06\xbf\xb8\x83\xd7\x20\x35\xc4\x58\x68\x73\xe4\x5e\xfe\xd3\x0f\xf0\x76\x65\x09\xe5\x7a\x1a\x67\x1d\x51\x84\xad\x4b\xa0\x4c\x7a\xfa\xe3\xfc\xdf\x99\xc4\xaf\x84\x4c\xe0\xe9\xfe\xbc\x37\x81\x5a\x9a\x4d\x8c\x41\x43\xef\xcb\x6b\x79\x2a\x0e\x5d\x8c\x7c\xc0\xa2\x1c\xec\x92\x6d\x7e\x13\xfb\x81\x61\xe1\x64\xb8\xf7\xcb\x0e\x55\x1a\xb6\x8a\x1c\xf8\x3c\xd1\x2f\xd8\xd9\x5a\x51\xea\x12\x5f\x73\x0f\x99\xfd\xa1\x9c\xfd\xb7\xaf\xb4\x0a\xe7\xae\x18\xa1\xc8\x29\x49\x8b\x84\x17\x38\xf7\xfe\x2a\xe4\x79\x6d\x02\xd3\xc5\xbb\x24\x4e\xd3\x55\x61\x25\x39\x6f\x90\x34\x96\xa9\xc0\xc9\xb9\x4b\x93\x28\xaf\x0a\x8e\x90\x2a\xf4\x16\x6e\xe0\x8f\xcc\xb3\xa8\x8b\x4b\x3e\x5e\x13\x3f\x8d\x3d\x0b\x92\x65\x4e\x5c\x68\x43\x59\x48\x8e\x67\x7f\x56\xc2\xea\xf7\x10\x49\xa6\x01\xc5\xea\x33\xd9\x3d\x63\x03\xb9\x06\x0d\x1b\x02\xaf\xa6\x37\x14\xff\x15\x29\x12\xa2\xc0\x5a\x2d\x8c\x59\xa2\x2d\xa8\x68\x05\x33\xb1\xa4\x4c\xc2\xd7\x9d\x2f\xa4\xdf\x7f\x2d\x31\x94\xa3\xf6\xd9\x5d\x32\x00\x34\x79\x9e\x8c\xeb\xf7\xeb\xd3\x95\x47\x2d\x68\x37\x47\xf9\xe8\xe6\x36\x56\x06\x68\xeb\x8b\x22\xe5\x33\x0d\x65\x03\x8d\xdc\x5a\xdb\x2b\x7c\x68\xf2\x48\x65\xc0\xcb\x82\x90\xfa\xd0\xd0\x17\x57\x28\xb0\x69\x13\x05\x28\xae\x62\xc1\xfd\xe0\x35\x4d\xe3\x03\xfb\x75\x11\x2a\x8d\x49\xfd\x7c\x16\xec\x27\xce\xa3\x77\x7a\xd9\xbb\xd6\xb4\x68\xd6\x89\xe5\xe3\x9a\xd8\x46\xcd\xc6\xae\x56\x5b\xac\xda\xaa\x69\xad\x19\x75\x2b\xbe\x7e\xd9\xff\xea\xd7\x1a\x73\xcf\xd6\x49\xe9\x3b\x87\x26\x2a\xf3\x48\xc8\x0c\x7c\x42\xd3\x30\xf5\x03\x90\xb0\x48\x06\x5d\x53\xec\x71\x4a\x17\x85\xdb\xc7\xc4\x83\x76\x0c\x57\x58\x2e\xc4\x07\x37\xbb\x08\x75\xe8\x24\x87\xc0\xb0\x84\xe2\x4d\xa1\x55\x91\x53\x46\x1b\xd7\x90\x01\xa3\xfd\x3f\xce\xe6\x47\x77\x09\x89\x8f\x0e\xfc\xd1\xb0\x4b\x25\xf7\x88\xaa\x76\x8a\x23\xb6\xcb\x77\x64\x23\xd7\x14\x12\x9b\xf9\x23\x97\xca\x93\xe4\x63\x83\xba\xbc\x88\xf9\xec\x3a\x19\x08\x30\x62\x36\x11\xc3\x9e\x4d\x1d\x9c\x67\xb3\x0c\x9b\x66\x46\xca\xe1\x01\xdd\x84\xaa\x8e\xbd\x80\x18\xc4\x77\x44\x4d\x7b\xe1\x0b\x5a\x0c\x41\xb5\xb8\x20\x73\x49\x2a\x3c\x1e\xdd\x7e\x44\xd3\xb1\xa0\x8e\xb0\xda\xca\xed\x1c\xda\x06\xfc\xc0\x5e\x90\x4c\x00\x0a\x97\x1c\x94\x23\x94\x5e\x0a\x29\x2e\x3f\xeb\x46\xad\x73\xc0\x26\x31\x78\x22\xd3\xe3\xcc\x05\x07\x26\x2a\x6f\x04\x19\x16\xaa\xd3\xf6\x3e\x29\x67\xbc\x9e\x1d\x80\x20\x86\x2a\xfd\x5c\xf7\xe8\xaf\x0f\x8e\x54\x96\xee\x28\x08\x10\xb1\xb9\xff\x22\xe3\x67\xc9\xa2\x0e\x97\xfc\xc8\xcf\x39\xa8\x89\x2d\x7b\xc8\x10\x23\xc1\x22\x5a\x37\x5a\x21\x21\xf9\xaa\x46\x4d\x5f\x71\x89\x46\xb1\xb2\x90\x6b\x2a\x13\xb2\xa1\xcb\x35\xc0\xb9\x8d\x11\xb7\xb9\x2a\x4e\x5e\xa4\xb1\x29\x2d\x02\x7a\x29\xfd\x59\x8c\xde\xab\xd9\xe4\xf3\xe3\xca\x37\x17\xeb\x77\x72\x1c\x52\x99\x11\xde\xe5\x29\x7c\xe1\x97\xbb\xb3\xf5\x8b\x85\x91\x09\x51\x97\xd3\xdf\x73\x37\xce\x53\xe8\x6a\x18\x55\x13\x0d\xb8\x62\xe3\x35\x4d\xfc\x03\x84\x1b\x5a\x99\xaa\x2e\xf7\x9b\xc9\x89\x6c\x3a\x58\xe3\x97\xfb\x72\xff\xfc\x81\x36\x52\x34\x43\x43\x6a\x69\xc1\xb3\xbf\x43\x73\x67\x8d\x4f\x1f\x58\xb9\xc1\x61\x39\xf3\x24\xf9\x81\xe2\xe3\xee\xd6\x02\xee\xd9\xb6\xd9\x95\x62\xc7\x5e\x9b\xe0\x57\xf1\xae\x85\x72\x2d\xe4\xd9\x71\x7b\xdd\x3e\x4d\xfa\xce\x2e\xf5\xf2\xfa\x3e\x78\x22\x16\x9e\x99\xaa\x05\x47\x92\xb8\x1c\x76\x5c\xa9\xa8\x20\x53\x17\xb7\x8c\x30\x80\x97\x7a\xd3\x52\x69\x33\xff\xe9\x52\x39\x7a\x57\xf3\x06\x24\x3e\x98\x0a\x08\xb0\x45\x6e\x4a\x45\x2b\xb5\x42\xe6\x87\x58\x98\x1d\x15\xef\x50\xd8\x16\x15\x9b\x1a\xf5\x44\xe9\xe7\x8f\x2f\xb7\x09\xe8\x73\x33\x29\xfe\xe9\xbe\xbf\xa8\x4d\xb7\xdd\x16\x1e\x77\x82\x10\xfe\xc2\x26\xde\xeb\x2f\xb9\x62\xe1\xf2\xcb\x56\x5e\xb1\x64\xc9\x65\xa9\x10\xcf\xce\x14\x7e\xd7\x33\x6d\x5a\x06\x7e\xf7\x84\xa6\x77\xdc\x1b\x9a\x24\x50\x6d\x61\xbe\xf8\x3a\x9f\xd8\x5e\xd3\x02\x06\x7e\x42\x6f\x7d\xaf\xbf\xb9\x22\x13\xc2\xe1\x7d\xbb\x32\x4b\xb1\xab\x2f\x6d\x5f\x8a\xcd\xdf\x31\x5c\x54\x5a\x19\x07\x8b\x11\xab\x95\x2b\x6c\x87\x15\x8b\x86\x3c\xa7\xbd\xf1\x98\x4a\x51\xa4\xbd\x98\x73\x83\x73\x1f\x3f\xaa\xdb\x69\xdb\x7c\x60\x03\xd2\x66\xd0\xc4\xee\xbc\x5e\x31\x09\xb2\x91\x5b\xc7\xbc\xdc\xb8\x75\x2c\xff\x08\x97\x12\xa4\xe8\x00\xe6\xae\x5a\x26\x7d\xc9\x53\xa3\xd8\xdc\xfe\x9e\x34\xc0\x1b\x96\x1a\x80\x67\x6f\x92\x59\xa5\x89\x5c\x01\x34\x2c\x7c\xef\xa4\xb4\x7d\x9b\xd5\x55\x02\xa5\x16\x7d\x14\x1b\x5f\x22\xec\x0b\x5e\x71\xef\xc1\xee\xff\x3f\x10\xd4\xa5\x71\x25\x55\x1e\xab\x29\xc9\x5a\x21\xf3\x4d\xc4\xe5\x4c\xa3\x45\xc7\x46\x88\x7a\xd2\xa0\xcc\xa3\x09\x37\x3f\xf7\x42\x24\x7b\x68\x8e\xc5\x4b\x8d\x11\xf2\x47\xa6\x8e\xe3\x2f\xbb\x49\x7c\xdf\xa0\x4e\x3b\x0e\x42\xf3\x84\x6f\x41\x09\x1b\xff\x4e\xd8\xee\xf7\xe5\xee\xea\xcc\x5e\xaf\x99\xa0\xc3\x17\x17\xb3\xcf\xbf\xd3\x91\xe9\xdd\xc1\x87\x02\x40\x0e\xf9\x9f\x3c\x7d\x86\x7a\x5e\xae\x5b\xbe\x30\xb5\xde\xbe\xa7\x92\x0d\xd4\xd8\xf6\x13\xc1\x9f\xdc\xdb\xc7\xd2\x18\x61\xa2\x76\xcc\xf5\x61\x26\x93\x53\xc8\x17\x41\xf9\xf7\x35\x91\x74\x54\x41\xae\x99\x18\x11\xde\xac\xcc\x00\x5c\xdc\xe4\x4e\xa2\x7d\x85\x2f\x6b\xc2\xfc\xc8\xb6\x89\x88\x5f\x85\xeb\x5f\x39\x5d\xc2\x46\xb8\xd2\xd0\x6e\x2d\xde\x85\x36\x27\x83\xc2\x62\xe8\xf3\x4b\x34\x65\x14\xbb\x74\x33\x6a\xf9\x24\x2b\xf5\x9e\x7b\xf8\x9d\x11\xa2\x9f\xf0\x03\x86\x51\x20\x44\x47\x0a\x13\x80\x51\x23\x34\x32\x94\x66\xa6\x73\x79\xb6\xdf\xee\x9e\x56\x12\xe4\xd0\xff\x7b\x9d\x4f\x7a\x7c\xb2\xa6\x54\x8e\x6e\x9f\xa4\xc2\x8f\x1a\x04\x84\x4b\x66\x1f\xd0\x12\x53\x48\x7c\xe2\xf6\x2b\x9d\x5a\x9c\xf4\x9c\x02\xbd\x56\xc6\xf2\x85\xb3\x3b\xce\x6c\xea\x9b\x23\xcc\x68\x98\x68\x9d\x8e\xbb\x81\x07\xa7\x4b\x43\x6c\x57\xb1\x02\x33\xca\x17\x6d\xad\x40\x61\x2d\x13\xbb\x99\x82\xbc\xf0\xc0\x12\xad\x09\x4d\x65\xa3\x92\x99\x57\xee\xf0\x49\xd9\x0f\x80\xd7\x04\x0c\x3b\x38\xf1\x80\xca\xff\xf1\xce\x61\x49\xf0\xf0\x3d\x2c\xdc\xd8\x72\xdf\xde\x36\x4c\x19\x28\x33\x42\xe3\xe6\xe8\xbb\x36\xff\x4f\x53\x07\x69\xb8\x1b\xf7\xec\x57\x3a\x29\xe4\xba\x09\x0f\x67\xdf\x0a\xed\x17\xfb\x06\xe2\xe9\x80\xf7\xf5\x07\xba\x78\x98\xa1\x1e\x76\x4b\x0e\x71\xb9\xe8\x76\xe1\x52\xc5\xb1\x15\xfc\x65\x38\xde\xe7\xf5\x2a\x2f\xf4\x16\x13\x46\x55\xa1\xa5\x7c\x63\x42\xb6\xac\xf6\x90\x8d\xf8\x97\x57\xe5\x0e\xbf\xf4\xa0\xb0\x79\x21\x01\x59\x8b\xe1\xde\x6d\x9c\x97\x1e\xd1\x26\x82\x64\xbf\x46\xa9\x6a\x43\xab\x64\x85\x30\xc5\x38\xb9\x3b\x7b\xb5\xeb\x94\x61\x94\xe8\x64\xc4\x67\xf7\x5c\x85\x79\xc1\xdd\x81\x4b\xe5\x68\x45\xd7\x30\x35\x2e\x3b\x5e\x50\x2a\x47\xff\xb8\x5c\xfe\x97\xe7\x81\x81\x1d\x98\x6a\xec\x95\x5b\xbd\x12\xf6\x6f\x0e\x55\x9e\x4a\xed\x03\x6d\xd0\x16\x3f\x76\x31\x6c\x1a\x31\x43\x75\x0c\x40\xc0\x6d\xcb\x9f\xbb\x7c\x54\x76\x60\xd5\x99\x7c\xce\x86\xb6\x8a\x37\x71\x8d\x61\x71\x4c\xf2\x5f\xbf\x41\x16\x77\x3e\x46\x8c\x33\x1a\xc5\xbf\x2c\xbd\x27\x7f\x51\x2f\x72\x01\xaf\xf4\x85\x23\x6a\xc9\x14\xf7\xaa\x21\xd7\x94\xee\x19\xa8\x9b\x4b\xda\x04\xa6\x30\xf0\x1e\x3f\xbb\x41\xd3\x74\x6f\x60\xe6\x63\x94\xd0\xcc\xd6\x6c\xe4\x83\x86\x00\x71\x1c\xe3\x13\xef\x67\x6c\xbc\x31\x6b\x88\xa9\xe6\x9e\xa1\x4a\x9f\x10\xb7\x35\xdc\xbc\xea\x58\xaf\x4a\x7c\x85\x55\xf1\x29\x3b\xd4\x52\xca\xb0\x48\x80\xc1\x02\xa3\x78\xf6\x09\xc5\x02\x43\xe8\x8b\x46\x4f\x2a\x1b\x6a\x03\xb3\x20\x65\x84\x7d\xf8\x9e\x10\xe0\xa0\x36\x09\x30\xc7\x32\xdd\xbf\x5c\xeb\x02\x82\x20\x6e\xf3\x05\xe3\x73\xf5\x5c\xf9\x26\xa8\x6d\xfa\x0e\xad\x70\x50\x70\x71\xdd\x2b\xca\xe1\x40\x7e\x00\x5c\xfe\xc2\x4f\x14\xed\x21\x90\x40\x01\x24\xc2\x9e\x09\xca\x63\x36\x6c\xc4\xda\x91\x30\xf9\x3f\x3c\x39\x4c\xc9\xb5\x5c\x7e\x34\x3a\x79\x67\x9a\x05\x2a\xb4\x5d\xc0\xe2\xed\x47\x39\x13\xa6\xc2\x28\xac\xd4\xf4\x88\xd6\x7d\xa3\xc6\xfe\xa1\xc4\xc0\x89\x87\x55\xfe\xdc\xc3\xf2\xf1\xaf\x0d\x6b\x26\x31\x61\xc9\xbe\x68\x5b\xfa\x3b\xad\x76\x11\xd3\xdc\x79\xfb\x55\x3e\xb3\x1b\xb0\x10\xb6\xb1\xc5\x2f\xde\x7f\x9e\x56\x38\x02\x3b\xa7\x5f\xd1\x9e\x73\x5e\xd2\x59\xff\xa1\xeb\x63\x3b\x5d\x21\xdc\x78\xc3\x04\xad\x11\x61\x26\xb8\xcc\xa8\xd0\x8a\xd1\x9a\x2a\x91\x50\x7b\x17\xb5\x68\xfe\xb3\xcb\x15\xef\x52\xbb\x42\xdb\x3e\xc4\x07\x0f\xab\x0c\x4e\xce\x3e\x8c\xbf\xff\x80\xbb\x25\xba\x4c\xdd\x94\x14\xcf\x57\xb4\x04\x50\x18\x58\x94\x07\xda\xc8\x7c\x58\xd7\x54\x51\xc6\x83\x9f\x71\x55\x39\xc2\x38\x95\x97\xfb\xf2\x87\x0e\xfe\x5d\xe5\x85\x4e\xbe\x9e\x3e\x76\x58\xdf\xca\xb8\xb5\xc0\x12\x17\xec\x20\xdf\xf3\x94\x3e\x81\x42\x03\xf9\xa0\xf4\x90\x76\x49\x97\xcd\x96\x7b\x29\xbc\x06\x39\x09\xdb\xb8\xdc\x57\x5c\x70\x58\xe3\x8b\xf1\xd1\xa1\xda\x06\x15\x2e\x7a\x3e\x1b\x89\x1d\xda\xb0\x91\x49\xb2\x32\xd6\xd7\xf0\x09\x78\x69\x25\xb2\x31\x23\xb2\xc4\x8d\x1e\xb8\x23\xe9\x45\x8d\x3a\x08\x32\x7f\xfd\x19\xad\x15\x8d\x2f\xbf\xa8\x0a\xb7\xec\x96\x15\x49\x95\x08\x7b\xc1\x88\xdc\xad\xbd\x55\xea\xe0\x80\x38\x49\x93\x77\xe6\x22\x19\x1b\x18\x32\x60\x1a\xf9\x85\x0f\xb4\x24\x4b\x8c\x00\xd6\x7d\x16\xf1\x12\xe9\xb3\xdf\xbe\xd2\x2f\xbb\x16\x96\x79\xa2\x91\x18\x7e\x42\xbe\x5e\xbc\x26\xa0\x4c\x10\xbc\xc6\x1c\xd4\x95\x2a\x59\x0d\x73\xe9\x63\xaf\x54\x8e\xbe\xf7\xa1\xba\xb6\xa9\xa5\x4b\x4c\x40\x06\x1c\xd3\x3a\xcf\xd0\xc7\x0d\xec\x66\x20\x42\xc5\x69\xe3\x75\xc9\xfa\xb8\xe4\xe4\x2d\xf7\x92\x01\x3a\xbc\xae\x81\xed\xc4\xcd\xb6\xaf\xf0\xef\x5b\x94\x00\x4a\x1d\x6c\xd1\x66\xa9\x1c\x9d\xfd\xa8\x7e\xbb\x12\x8b\x33\xbe\x08\xd8\x38\x5b\xf3\xb4\x4e\x65\x1f\xf8\xd9\xdb\xb8\x22\xad\x26\x0c\x6e\x73\x16\xff\xae\x33\xe6\xb6\xad\x0f\x80\xcc\x5e\xe3\x18\x82\xee\x9d\x12\x6d\x66\x12\x16\x87\xe7\x80\x02\x3f\x29\x74\xf8\x1c\x78\x8a\x92\x4d\x49\x8a\x9f\x1a\xb3\x3d\x5d\x5a\xb9\x99\x1d\xf6\x8f\xce\xe7\xc5\xc2\xb5\x2c\x33\x06\xe8\x2b\x1c\x38\x2a\x4b\x5f\x87\x56\x3a\x4b\xe5\xe8\xd9\xcd\xc3\x95\x57\xe7\x21\x81\xf1\x7d\x6c\xaa\x94\xdb\x62\x22\x11\x46\x8f\xee\xd1\xc6\x0f\x28\x60\x34\x51\xbe\xfc\xd3\x09\x85\x07\xea\x71\xf8\x2b\xd3\xcc\x35\xc0\x12\x0f\xd9\x42\x74\xef\x27\x63\xb3\xd5\x69\x15\x71\x73\xeb\xe8\x1b\xda\x0d\xa6\x95\x20\xf4\xc5\x18\xa6\xf0\xed\x48\x59\xb6\x20\x1f\x8b\x6a\xfc\xe7\x3b\x94\x2d\x18\xe8\x2d\x27\x66\xca\x1f\xe9\xd6\xd7\x60\xa4\x5a\x4d\x94\x6a\x72\x9b\x5f\x53\x9c\xb0\x40\x57\x90\x27\x7e\x71\x2d\x27\xde\x99\x46\xf4\x69\x73\xda\x10\xe5\x4b\x26\xf0\x1a\x6e\x71\x18\x28\x65\x77\xae\xf3\x80\xa0\xba\x82\xa2\x12\x97\xeb\xf9\xcb\xde\x71\x7a\x67\x8c\xe3\x62\x86\x09\x65\xd6\xc2\xaf\xed\x44\x4b\xb0\x81\xc1\x54\x37\x1a\x76\x6c\xa8\x3a\xcc\xe0\xb0\xb7\xc7\x4c\x79\x14\x6a\x8c\x36\x39\xcf\x75\xf9\x1b\x67\xa8\x5a\x21\xb8\x5a\x22\x6e\xc9\x46\xf1\x91\x9e\x2b\x95\xde\x4d\x6e\xcb\xf9\x2f\x1f\x9c\xa5\xe4\x78\x37\x88\x7f\x9b\xc4\xc1\x02\x43\x7f\x9b\x22\x0f\x62\x63\xd7\x4c\x4d\x01\x3a\xd8\xb8\xfe\x82\x81\x54\x06\x78\xda\x1c\x2a\x3b\x1f\xd1\xde\xe4\xfe\x34\x5c\xb3\x3c\xe0\x54\x9b\x14\x56\x5a\xf8\x51\x55\x83\x49\x62\x9b\x36\xb0\xc9\x03\xd7\x3e\x6d\x70\x62\x71\x94\x89\xf8\xa7\xdf\x59\x7f\x96\x72\x91\xc3\xc0\x6a\x6b\x4e\x27\xb9\xc3\x93\x8f\xa4\x52\xd7\xcd\xbc\x22\x81\x0f\xa3\xe2\x6b\x34\xd1\xd4\xde\x50\x7c\x42\xd9\x95\xfc\xa9\xa2\x2c\xf0\x9a\xc4\x11\x66\x7d\xb9\x35\xdb\x15\xf7\x43\xc4\x1c\xb1\x29\x2f\x9c\xf1\x81\x80\xb5\x23\xa1\x73\x1b\xbd\xae\x09\x18\x3b\x88\xd5\x71\xe0\x41\xd5\x0e\xd7\xe2\xff\x35\x86\xa9\x83\x7f\xe8\x0b\x22\xfb\x7d\x5d\xd3\xd7\x14\xf8\xd5\xe8\x9c\xde\x73\xb4\x67\xc7\x5c\x3f\xc0\xc4\xcd\x40\xf8\xa6\x8e\xcf\xf8\x67\xd8\xc4\x29\x95\xa3\x96\x36\xee\x0c\x30\x72\x7c\x81\x3f\xfe\xe9\x1b\x0a\xfa\x0e\x7a\xb5\x4f\xed\x68\x73\xec\x27\x35\x57\xd1\x3c\x3a\x75\x59\x3a\x4f\x62\x20\x68\x23\x39\x35\x3f\x7e\x69\x88\x28\x7b\xa0\x9d\x82\xa8\x36\xb8\x23\x1b\xe2\x6b\x0c\x57\x5c\xdc\x40\xea\x12\xb1\xb6\x2e\x8d\x71\x9e\x3a\x11\xca\x3f\xb6\x22\xbd\x98\xbd\xb4\x6d\x10\x58\xe8\x64\x6d\x78\x8e\xb0\x9e\xe0\x20\x9c\xd1\x6d\x18\x29\xb0\xab\x14\x21\xe1\xd8\x60\x85\x4b\x4f\x5c\xa0\x79\xe6\xb7\xae\xd2\x84\x1f\xa9\x5b\x13\x36\x9d\xe5\xbe\xc2\xf7\x27\x70\x38\xd2\x52\x98\x22\x4f\x1f\xa7\xb3\x08\x02\x0c\x5c\xaf\x30\x8e\x7d\xbc\xc6\x1a\xd7\xd3\xa6\x92\xca\x49\x45\x3f\xcc\x2b\x6a\xaf\x01\x4c\x67\x04\x30\xf1\xde\x7d\x23\xda\x69\x57\xe5\x68\xcd\xa3\xc3\xc5\xa3\xad\x80\x6e\x85\x98\xe7\xec\xda\xa7\xe8\x40\xc0\x4c\x09\xea\xf8\x0f\x9e\x95\xe8\xa4\xa6\x85\x6c\x35\xda\xf5\x15\x6e\x7d\x58\x4e\x21\x0d\xea\x9a\xa1\xc1\x35\x5f\xf2\x83\x9e\xca\xce\x6f\x60\x76\xcc\x1f\xd7\xfd\x62\x8a\x7e\x0d\x66\x15\x3e\xb7\xd9\x30\x94\xe7\x9f\xab\xa8\x6f\x11\x85\xc8\xbf\x6e\xb8\xec\x08\x90\xef\x2b\xd8\xf1\x4f\x15\x15\x84\xa0\xc5\x30\xe6\xa8\xa0\x72\x5f\xe1\x1b\xdb\xb3\x1a\x01\xd5\xb8\x29\xb1\xc9\x5a\xcc\x38\x3a\x2b\x81\x03\xbf\xdd\x79\x46\x5b\x0d\xed\x72\x3f\xe6\xa7\x8b\x23\xb5\x14\x27\x78\x22\xff\x7a\x54\xc5\xc4\xc6\xb5\x89\x6b\xf0\x7d\xbc\xb7\x2b\x35\x6a\x0e\x39\x0d\x2d\xda\x3e\x78\x98\xc8\xd0\xdc\x2f\x0d\x30\xee\x7f\x78\x7e\x90\x08\xda\x5c\x86\x20\xf7\x2d\x4f\x0b\x64\xa1\x5d\x49\x45\x64\xcf\x7d\x38\x91\x03\x92\xba\x98\xf1\x6f\xfb\xf3\x7d\xa2\xeb\xe3\xbf\xe9\xba\x8a\x8e\xc5\xd3\xa8\xd8\xc5\xd3\x0f\x24\x38\x21\x1a\x54\x90\x0d\xd2\x9d\xff\xfe\x8c\x4c\x01\x21\xab\xa9\x32\x01\x97\xbc\x91\x5d\x8e\xc2\xf4\xd4\xa2\xb6\xd9\xaf\x64\xe3\xa0\x40\xab\x56\x4c\x40\x5e\xa7\x1d\x46\xd1\x4c\xe3\x66\x37\x07\xdd\xbf\x75\x42\x6d\x46\x29\x13\x2d\xe3\x04\x05\xf2\x08\x66\xca\xa4\x54\x8e\xee\xbb\x31\xc1\xeb\x77\x41\x25\x7b\x01\x6f\xc3\x2e\xc7\x94\xd5\x70\x3b\xda\xeb\x15\x2d\xe6\x78\x34\xc0\x6e\x40\xd2\x3d\x42\xfe\x12\x45\x01\x3a\x60\xd8\x85\x3d\x41\xf4\xcd\xde\x81\xa2\xce\x85\x15\xe1\x5f\x6c\x55\x8f\xa2\x67\x5a\x9c\x32\xef\x7a\x4a\x36\x39\x3e\x31\x81\xf7\xaf\x5a\x11\xe7\x3f\xb1\x37\x0d\x3d\x6b\x89\x42\xd5\x2f\x2e\x16\x42\x85\x97\x21\x06\xd9\x46\x22\xee\x2f\x53\x4d\x8a\x30\xb3\x29\x64\xd3\x8d\x47\xc6\x6b\x67\x82\x39\x7c\xc3\x93\x96\x72\x1f\xbc\x95\x08\xc7\xba\x9c\x11\x58\xf8\xc4\xe4\xd1\x4d\x7d\xf9\xc6\x12\x85\xca\x37\x6e\xe4\x17\x6c\x05\x0a\xd7\x66\x00\x36\xf7\x28\x90\x13\x33\xe4\xec\xf8\xdf\x3f\xaa\xb8\x51\x27\xcc\xd5\xf8\x09\x9c\xb2\x58\x7d\x74\xa4\x12\x02\xe0\x72\xf3\xa3\x1f\xd5\xda\x18\xca\x0c\x46\xab\x41\x46\x94\xa3\xaf\xb8\x40\x5b\x69\x4d\xeb\xea\xea\x14\x54\xb7\x5f\xcd\xd6\x2d\x4b\x89\x51\x17\x26\x81\x13\x35\x15\x01\x83\xba\x55\x9c\xa8\x34\xe7\xbf\x1a\x28\x5a\x77\xc8\x5c\x6b\xb5\x70\xa3\x54\x8e\x66\xcf\x50\x60\xe4\x6e\x0b\x92\x25\xf4\x9b\xab\xb9\xb6\xc0\x15\x6e\x3b\x41\xfb\x59\xf7\x1c\x2d\xc0\xb6\x18\x09\xd6\xc2\x90\x58\xce\x27\xf7\x6c\x97\x7a\xed\xae\xf2\xf5\x72\xf7\xdc\xa9\x51\x2c\x90\x6b\xda\xe0\x2e\xa1\xfa\xa4\x9e\xbf\x5c\x31\xeb\xe0\xa0\x70\xd8\xdd\xef\x1b\xad\x14\x69\xc8\x52\xf5\xd1\xf2\x9f\x1d\x90\x05\x20\x7d\x46\x84\x87\xdc\x00\x85\xe4\x05\x02\x6e\x86\xd8\x01\xe5\x86\x1f\xd1\xc4\xc2\x19\x36\x49\xd0\xef\x8a\xf0\xfa\x85\xe9\xed\xa4\x55\x98\x83\x98\x43\xd5\xf1\x1c\x50\x19\xbe\xba\x5b\xf3\x9c\x61\xc8\x35\x38\xb1\x6a\xfd\x63\xca\x37\xc2\x0d\x62\xdb\xf1\xa1\x38\x72\x48\x9f\x5e\x13\xdb\xc4\x02\x10\x9e\x3b\x67\x64\x56\x97\xd4\x77\x5b\x26\x66\x53\x9c\x76\xce\xd2\x94\x75\x72\x28\x03\xbd\x49\xd6\x54\xbf\xab\x8d\x90\x0a\x9a\x93\x42\xa6\x62\x96\xb2\x1b\x67\x21\x11\x28\x8b\xa9\xb3\x75\x7f\xa0\x2e\x81\x43\xbf\x77\x9e\xdc\x2c\x4c\x9f\xa1\xe2\x4c\x73\x74\x81\x36\xb9\xb2\x6d\x02\x43\x63\x9e\xce\x47\x9e\xa4\x45\x71\x64\xda\x89\x25\x47\xfe\x9e\x0d\xfd\x68\x3a\x08\x68\xeb\x96\x09\xaa\x1e\xbd\x6d\xc3\x4a\x29\xea\x08\x64\x02\xea\x9e\x31\x5b\xd2\xc1\x6f\x2a\xf2\xc0\x5f\xc7\x71\x01\x1a\x7d\xe3\x11\x2d\x50\xc4\xd5\xb5\x80\xa1\x0a\xa9\xb4\x2d\x1b\x95\xa1\x1a\x0b\x2c\xea\x61\x13\x50\x1f\xf9\xdd\x15\x0d\xb0\x60\xe1\x54\x8f\xe0\xa2\x13\xba\xde\x19\x13\x1d\x6d\xe1\x1b\x6f\x66\x58\x5a\x0c\x35\xb0\x2b\xf4\xca\x36\xf6\x28\x72\x17\x89\x9d\xeb\x43\x42\xc1\x3f\x0c\x2a\x0c\x23\xce\x7e\x5c\x3c\x69\xba\x56\x46\xda\x18\x5a\xe7\xd0\x4d\xb6\x48\xfd\x9e\xd5\x27\xb8\x13\x5a\xe9\x52\x1c\x06\xbe\x61\xb5\x0f\xe9\xbe\xa9\x0c\x59\xf9\x14\x59\x48\xbd\x3c\xbf\x5c\xcd\x38\x88\x71\x9a\x64\xf1\xd3\xb3\xdb\x88\x9f\x36\x28\xc3\x26\xab\xa1\xd1\x9b\x34\x40\x5b\xfc\xf2\xb8\xf0\xdb\xc0\x47\x55\x5d\x26\x54\xe3\xd1\x33\xf7\xbc\x32\x4f\xf6\x54\x16\x7c\xfe\xf2\xed\xd9\x83\x67\x21\xae\xbc\x19\xdd\x76\x60\xac\x14\x8e\xed\x6c\x9b\x02\x7e\xe5\x4a\xf9\x58\xcf\x4b\xdc\x63\x33\xd6\x73\x18\x83\x01\x72\xfe\x3f\x5e\xd5\x66\x90\xc8\x40\xae\x21\x00\x9c\xf9\x9d\x13\x95\x46\x38\x2e\x76\xb8\xb4\xd1\xed\x4b\x35\xb2\x1b\x0a\x54\x83\x8a\x7b\x45\x9b\x49\xc1\xc2\x23\xce\x95\x5f\x52\x08\xad\x15\xea\x03\xf5\x66\xe8\x01\xdd\x98\x26\xae\x60\x49\x0d\x9e\x25\x9c\x9b\xe5\xab\x39\x9a\x75\x45\x68\x23\x37\x6b\xbb\x76\xe7\x6b\x4a\x5e\xb1\x30\x0a\x60\x30\x5e\x3c\x6d\x9b\xe0\xe4\xc3\xfc\x8f\x97\x08\xaf\xbc\x9a\x8a\xf8\x06\x00\x3f\x81\xfb\xf2\x0f\xc5\xb4\xf5\x98\xc3\x91\xc8\x17\x0c\xce\x28\xd1\x7a\x88\xf1\xe5\xcb\x2f\xde\xd1\x46\x5e\x16\xf2\x70\x5a\xaa\x14\xc7\xae\x1b\xac\x40\xeb\xa0\x0f\xbf\x6d\x41\x87\xab\xb2\xd7\xc1\x17\x03\x06\xc6\x17\xf4\xa6\x91\xd3\x75\x5b\xa5\x72\x74\x54\xd1\x4c\x63\xa8\x8a\x30\xd4\x59\xb5\xd5\xaa\xca\x10\x43\x86\x15\xf2\x2a\xee\xa6\x0d\x8a\x47\x14\xb1\x09\x0e\xe3\xdf\x77\xd6\x46\x41\x28\x0d\x90\x9b\x71\x8a\x2b\x4c\xdf\xa3\x18\xd1\xf3\x99\xe8\x5a\x01\xbb\x28\xbb\xd9\xa3\x35\xb3\x2b\x99\x12\xec\xdd\xc2\x1f\x58\x15\xaa\x95\x80\x70\x93\xf7\xc2\xaf\x6e\x93\xe7\x07\xd7\x2a\x42\x05\x61\x5e\xb1\x0d\x19\xc5\x2f\x23\x47\x75\xfd\xf8\xc3\x6c\x16\x30\xd6\x22\x96\x14\x79\x7d\xd7\xab\xfa\x82\x15\x94\x5c\xbc\x2f\x28\x7c\x17\x13\xb6\x6d\xb0\x09\xf8\xcd\x70\x6d\x62\xd3\x74\x71\xca\x19\x58\xb6\x5d\x93\x4a\xb1\x15\x79\x8e\xc2\x4d\x6f\xb4\x6b\x5d\x86\x36\x1c\x05\xd1\x89\xbe\x5c\x4c\x5f\xcc\x9c\x59\xe0\xd3\xfd\xca\x58\x59\xbb\xb5\x42\xb7\x56\x4a\xd6\x35\xc9\xb3\x7d\x47\x51\xbe\x61\x24\xbb\x99\x5f\xf1\x84\x82\x11\xa1\x01\x75\x50\x7b\xf1\xf0\x2f\xf7\x4d\xd2\xe2\x44\x62\x5e\x57\xc3\x2e\x66\x92\x46\xf9\xf2\xa6\x14\x66\xe9\x99\x6d\xbb\xe6\xe2\xdc\x83\x72\xba\x64\xd3\xf6\xf2\xf6\xc6\x7d\xfc\x75\x4a\x4d\x12\x98\x7c\x77\x3d\x38\x41\x7b\x71\xb8\x89\x58\x30\x45\x85\x1c\xe5\xaf\x7d\x5e\x2b\xc0\xa6\x07\x16\x5f\xf1\xcf\x5a\xd1\xa1\x00\x9e\x00\xcb\x2d\xcc\xe8\x72\xa7\x3e\xd0\xa1\x17\xf7\x7c\x76\x19\x3d\xa5\x60\xb6\xa8\x11\xc4\x51\xa0\x39\x4e\x6d\x9c\x0c\x1b\x11\x87\x8f\xd4\xb0\x36\x91\xc1\xbe\x81\x3c\x21\x87\x12\xfd\xfa\x1d\x79\xae\x9b\x59\x6f\xb3\x6f\x2e\xd4\x08\xaf\xc4\x35\x69\xd3\x4f\x08\xaf\xfb\xd7\xe8\xc4\x32\x58\x4b\x60\x53\x88\xdc\x5d\xb5\x40\x03\x9e\x5b\x24\x39\xcb\x5f\xd8\xa3\x49\x61\x20\xe2\x0a\x0f\x6f\x38\xcf\xef\x6c\xca\xbe\x50\x8b\xd4\xac\x7e\xf7\x2b\xd7\x6d\xcb\x5e\x3d\xd0\x33\x02\x2f\xf6\x47\x4f\x4b\x82\xd2\x14\x90\xe7\x3b\x9c\x06\x29\x14\x40\x8f\x7c\xcd\xbc\xe1\x6a\x64\x08\x5c\xa0\x03\x4d\x79\x70\xac\xc2\x85\xb7\x43\x0c\x3a\xd2\x20\xd5\x11\xbf\x90\x4b\x2f\xd0\x8d\x2f\x43\x17\x48\x29\xa2\x6b\x8c\x6a\x73\xfb\x7f\xd6\xf0\xa6\x3f\x39\x43\x9e\x73\x80\xbe\x2b\x77\xe0\x92\x27\xb2\xd7\x9b\x56\xab\x29\x12\xe7\x7f\xdd\xb4\xec\x0d\x03\x45\x6d\x2c\x7f\xfb\xeb\xe9\xb7\x0a\x80\x14\x90\x9b\x71\x74\x84\xa8\xb1\xcd\xb8\xe9\x27\xc8\xe5\x4d\xfe\xde\x37\x05\xac\x88\x80\x85\xb3\x72\xc1\x4e\x3e\xa1\xb3\x6f\x9a\x9c\xb7\xc6\x33\x47\x75\x6a\x1b\x4d\x45\xb8\x25\x0a\xf4\xe0\x92\xd9\x72\xfe\xe2\x12\x70\x23\x8b\x6e\x5a\x29\xe5\x71\xd6\x4e\x87\x6d\xf5\x54\x75\x89\x18\x30\x0a\xd1\xf9\x4f\x3c\xa6\x95\x96\x81\x78\x42\xc6\x6a\xa5\xb8\x74\x9d\xfc\xb9\xd3\x67\x77\xce\xe2\xbd\xeb\xb3\xda\x9a\xde\x26\xb0\xf8\x49\x56\x2d\xfb\x96\x7e\x54\xa9\x8f\x4c\xec\xc1\x34\xb4\x4d\xa2\xbd\x70\xf2\xa2\x61\xc9\x7d\x73\x12\xb8\x4f\xd4\xda\xa4\xd5\xd9\x94\x19\x1c\x42\x19\xed\xe5\x36\xec\xa5\xeb\x88\x0f\x4a\x64\xed\x28\xc8\xb1\x0f\x65\x4f\x86\x4b\xe3\xd6\x9a\x86\xbe\x9d\xc8\x7f\xfe\xf5\x5d\x79\xd3\x02\xcc\x18\x81\xde\x3b\xfe\xc5\x1f\x2d\x0e\x57\x16\x06\x7e\x28\xa6\x94\xe6\x33\x63\xd4\x01\x4c\x98\xd1\x38\x2e\x4e\x59\x2c\x7b\xa1\xaa\x5a\xe9\x3c\x35\x37\x0d\x72\xc8\x6f\x9f\xaf\xfe\x76\x60\xb2\xf4\x20\x0e\x06\xed\x4f\x60\x5c\x6f\x95\x1f\x2e\x74\x53\x07\x8e\xf8\x99\xbe\x20\x04\xea\x97\x90\x20\x80\xb0\x94\xff\xf4\x04\xcd\xf2\x76\xda\xac\xce\xd9\xb3\x04\x56\xe5\x71\xee\x69\x5b\xba\x24\x88\xeb\x1f\x5b\x75\xd5\xfa\x85\x80\x90\xe3\x35\x9e\x2d\x54\x25\xfb\x72\xa3\xf7\xab\x6c\x91\x2a\x07\x7e\xc5\x87\x68\xf7\x22\x1d\x01\xe0\x12\x6c\x8a\x08\x32\xf0\x4a\x39\x0e\x6e\xc1\x25\xb9\xfa\x3e\x29\x9d\x95\xac\x51\x95\xdf\x3d\xfa\x29\x8e\x95\x5f\x44\x98\xdf\xee\x83\xf2\x8d\x03\xd9\x10\xce\x90\xe5\x20\x57\xeb\xa1\x6f\x9b\x3d\x5e\xeb\x51\x2b\xc8\xa5\x8a\x0b\x49\x5f\x71\xe1\xec\x21\x49\x49\x6a\x0a\x68\x49\xee\xcf\x1b\x54\x05\x1e\x37\xc0\x00\xaf\xe8\xcb\x5f\xe9\x8d\x54\x75\xa8\xe4\x8d\xbc\xc4\xd5\xc1\xcc\xcc\x4d\xd4\xab\xf2\x9f\x7f\x49\xeb\x85\x5c\x14\x58\xd8\x41\x62\xdf\xb2\x78\xa7\x20\x05\x85\x2c\x40\xc4\x8e\x9b\xc1\x40\x93\x78\xaf\x02\x57\x4f\x75\x49\x3d\xe7\x68\x7f\x2a\x27\x4c\x40\xbe\x9a\xa6\xbe\x47\x6a\x01\xa3\x16\xbe\xdc\x7f\x36\x46\x8b\xc7\x1a\xac\xad\xc5\xa9\x56\x3d\xa2\x3d\x23\x15\x25\xc7\x90\x79\x2c\xf5\xb9\xac\x0d\x90\x97\xbb\x41\xcd\x3a\x82\x2a\xe6\x3d\xc5\xd7\xde\x0d\x38\x55\xad\xf7\xb9\x6c\xff\x4d\xaa\x3c\x6f\xdd\xf3\x6c\x2a\x08\xb5\x7c\xa1\x5a\xd0\xe6\xbb\xb6\x66\xf7\xf3\xbd\xa8\x8e\x58\x80\xfa\xa5\x16\xdc\xa2\x75\x18\x24\xf0\xc5\xb7\x76\x1e\xd2\x4c\xc4\x1a\x98\x05\x21\x4b\x5c\x08\x0b\x8f\x3c\xa8\x3d\x15\x1b\x24\xc6\xf8\x48\xe5\x73\xe3\xe5\xd7\xf3\x2c\x0e\xe8\xcf\x37\x27\xf1\x8b\x71\x59\xc8\xa8\x87\x32\x9b\xbe\xbb\x0e\x6a\x2f\xb5\x5a\x55\x24\x98\x73\x4b\x96\x24\xfa\x99\xd2\x2a\x34\x7f\xf6\x6e\x61\x76\x5f\x0d\x30\x6b\x22\xb0\x3d\x89\xf6\xed\xd5\x87\x91\xa9\x06\x15\x60\x21\xa2\x5b\x22\x8d\x9c\xcd\x1d\x0d\x39\x02\x55\xb4\x5d\xe3\x96\xa6\x1e\xda\x9e\x15\x7f\x9d\x03\x5b\xd3\x88\x42\x82\xb5\x6d\x0f\xf1\xba\xd1\x0a\x08\x0a\x8e\x0e\x60\x8a\x38\xd0\xbf\xb4\x1c\x57\x43\xbf\x1d\xc7\x7f\xc5\x3a\x7e\x53\x5c\x70\x84\xe4\xcd\xd0\x29\x0a\xa4\x29\x48\xcc\x33\xf3\xcd\x05\xda\x2e\x2e\xb4\x83\x10\xac\x45\x05\xef\xe9\xeb\xc7\xc7\x28\x05\x94\xeb\x53\x9b\x98\x69\x75\x56\x18\xb2\x3e\xbd\x66\xc8\x53\x84\x55\x5e\x5c\x22\x27\xb0\x0a\x0c\x17\xb2\xe8\x0f\x0e\x8d\x56\x9a\xac\x30\x63\xd8\x99\x7f\x6d\x6b\x3b\x33\x34\xe4\x61\x2b\xa9\xc7\xcf\x87\x6a\x43\x8c\x10\x60\xe5\x47\x7b\xe5\x57\xab\x0a\x61\xe5\x68\x9c\x22\x17\x65\x12\x1f\x71\x22\x51\x74\xc7\xfe\x74\x31\x63\x21\x27\xab\xb3\x39\x39\x3b\x1b\x8e\xab\xe5\x2a\xc1\x62\x36\xac\x3f\xe3\xb1\x7b\xce\x51\x82\x3a\xf1\x69\xc8\x8c\x76\x1f\x36\x7b\x95\x26\xab\xc1\x44\x2d\x73\xca\x87\x82\x24\x95\x01\x4c\x0d\x38\x43\xa1\xab\x34\x88\xbc\xef\xd1\x8e\x47\x06\x25\x57\xbd\x16\x5f\xdd\xeb\x05\xd2\xdc\x8b\x7b\xce\xf8\x4e\x9d\xf5\x66\xf6\x2e\xe3\x96\x10\xf3\xfa\xcb\x6e\x7d\xc5\x13\xb2\x52\x82\x81\xed\xcb\x3d\xf5\x9c\xb2\x08\x07\x81\xa2\x68\xa4\xf2\x3c\x19\x35\xea\xbc\x5d\x1c\x1a\xe9\x3b\x2f\x87\x1a\x0c\x05\xc4\x10\x39\xf8\x86\x43\x8a\xd4\xae\x9c\x12\x47\x33\xe6\x8e\x51\x4f\x1e\x98\xa0\xd3\x64\x8c\x93\xfb\xb7\xa5\xba\xb1\x21\x5f\x2a\x08\x4f\x96\xe8\xad\x35\xba\xf2\x1b\x71\x61\x19\x94\x48\x9e\xbf\xdc\x33\x52\xd5\x86\xb1\x7d\x61\xba\x5c\xf8\x8f\x07\x65\x59\x54\xa1\x4e\x05\x06\xe0\xb9\xdb\x1e\x1e\x9e\xe4\x49\xc6\xc9\xaf\xdc\x3e\x71\xa9\x36\xe7\x8a\xef\x9a\x80\xca\x14\x4e\x55\x7c\x47\xbc\x90\x79\x94\x7b\x41\xe4\x7e\xb8\x55\xaa\xf5\x07\x6b\x55\x1f\x95\x37\x55\x73\x97\x38\x00\xe7\x97\x9e\xa4\x79\x4c\xc6\xb9\x92\x91\x3a\x4e\x7a\x43\xfa\x38\x9f\x80\x55\x42\xc6\x01\x70\xc7\x15\xc6\x1b\xac\x70\x08\x44\xf2\x55\x2b\xe4\xdb\x99\x31\x7b\xea\x9c\x59\xa0\x29\xdd\x5a\xd1\xa1\x55\x9a\x6e\xe2\x8a\xf9\x91\x57\xe5\x85\x99\x39\xa3\x54\x8e\xe6\x2d\xd4\xa4\x16\xe2\x5b\x98\x2e\x35\xbe\x3f\x58\x81\x90\x51\x26\xc0\x98\x27\x3f\x20\x6d\xf3\x02\xd5\x62\xf7\x1f\x7a\xb2\x02\x8f\x0e\xe6\x17\xed\xfd\xf1\x1a\x4e\x68\x4d\xc0\x50\x03\xd5\x90\xbb\x16\x25\x96\xbe\x77\x6a\x16\xfd\x1e\xc1\x62\xa8\x52\xbc\xea\xe0\x58\x05\xab\xc7\x30\xc8\xa5\xa4\x47\x6a\xdb\x62\xa9\xc8\x47\x25\x54\x36\xba\xeb\xee\xd3\x92\x1a\x05\xa6\x1e\x85\x85\xd9\x70\x42\x3d\x78\xe9\x94\xa5\x83\x91\xfc\x0f\x14\xc2\x5a\x85\x51\x64\x72\x18\xf4\xc9\x2b\x13\xdf\x3c\x0e\xf0\xfb\x8e\x26\x30\x98\x58\x8c\x0a\x54\x77\xe1\xfd\xd7\x15\xdc\xb0\x85\x31\x4f\x4b\xa7\xaf\x92\x0f\xc7\x26\x0e\x4e\x9d\xd3\x96\x47\x1a\xa1\x88\x98\x42\x6c\xf0\xf7\x6f\xe8\xbc\x61\x57\x65\xd7\x60\x3b\x7b\x4e\xa5\xf1\x55\x39\xb2\x57\xf1\x18\x71\x1d\x65\x40\x90\x5e\xfc\x72\x76\x70\x1f\x60\xe6\xb6\x50\x3d\x5b\x79\x15\xfe\x7c\x42\x13\xa7\xb0\x69\x13\x9b\x53\xf8\x03\x5c\xf1\x21\xcf\xab\xd7\x60\xbb\x2a\xdc\x69\x84\x2e\x6c\xbe\x76\xc3\xf0\xcc\xbf\xbb\x18\x8a\xf9\x83\x5d\x9a\x62\x03\x65\x2c\xf5\x0e\xc8\xdd\xa2\x01\xc5\x01\x9e\xcc\x78\x9c\xfa\xf7\x87\x94\x5d\x33\x0a\x4d\x12\x77\x9a\x87\xda\x9d\xdb\x88\x41\x92\x5d\xf3\x82\x67\x92\x4f\xe7\xb6\x7c\xab\x95\x19\x09\xbc\xae\x6f\x1f\x5b\xd2\x32\xe4\x37\xda\x46\xc9\xb0\x88\x51\x4f\xfc\x23\x7f\x72\xd2\x08\xa5\x69\x07\xa9\x78\x5e\x7e\x76\xb5\xc3\xed\x68\x98\x48\x82\xc5\xff\xf2\x77\x2f\x68\x38\x2b\xee\xd1\x1a\x88\x4e\x33\x77\x48\xd7\x92\xe1\x8a\x24\x7c\x5e\xfe\x83\x2d\x4a\x7e\x46\x6e\x8d\xe3\x43\x67\xbe\xa2\x63\x6b\x45\x91\x77\xdb\x5b\xe9\x0d\x08\x94\x99\x4e\x64\xce\xd5\xaa\x1d\x9f\xfb\xbd\x71\x7c\xd5\xc5\x47\xc7\x2a\xcf\xd8\x6e\x20\x93\xaa\x7a\x96\xdf\x7c\x44\xc1\xc1\xf6\x4c\xed\x01\x9f\xfd\xc2\x77\xc6\x8a\xd4\x63\x21\xa8\x1a\x37\x1f\x56\x95\x5b\xe3\x17\xe8\x02\x14\x37\xfa\xb7\xc1\x43\x32\x7b\xd7\xf8\x4b\xdf\x2d\x31\x37\xd3\x66\x4e\x2f\x95\xa3\x5b\x07\x66\x65\x48\xce\xf3\xa7\x80\xf4\xd8\xb5\x83\x34\xbd\x75\x4b\xe5\x2e\x16\xee\x1a\x30\x54\xf4\x6a\x01\x66\x94\x1b\x32\x17\xee\x32\xf9\x25\xbd\x84\xd3\x63\xf3\xb8\x37\xfb\x33\x66\x70\x59\x04\x91\x72\xaf\x38\x25\xfd\x28\x36\x84\xd2\xfc\x39\x47\xb4\xfd\xae\x70\xbb\x11\xc2\x15\xf9\xdf\x75\x68\xb2\xcd\xd4\x4c\x78\x0d\x79\xfb\x84\x98\x57\x85\x01\x2d\x99\x18\x71\x1f\xd4\xe2\x69\x03\x64\xaf\xc7\x91\xc4\x22\x20\xf6\x15\x17\x0c\x1f\xa2\xa0\x59\x08\x84\x99\x1e\x2f\xbb\xce\x42\x6b\x61\x1f\xd1\x5f\x39\xbd\x57\x99\x43\xd6\xb0\x4b\x02\x04\xd4\xbd\xdc\xa9\xaf\x0d\x56\xc0\xcb\x33\x4b\xe5\x68\x7a\xb6\x29\xf2\x09\x37\x0b\xca\x5f\xf4\xae\xa6\x51\x43\x6a\xa9\xc6\xe9\x57\xc6\xeb\xe8\x72\x26\x26\x7b\x7f\xdb\xa0\x0b\xe1\x33\x16\x7a\x49\x7a\xfe\x7d\xa5\x0d\x74\x8f\xfd\x80\xb8\x04\xb9\x52\xed\xab\x70\xf6\xa6\x6c\x71\x32\xa7\x4b\x34\xb4\xbf\x17\x1c\xf3\xe5\xb8\x8a\x13\x9f\xa6\xfc\x0d\xab\x15\xdd\x2e\x5b\xd4\xbc\x7d\xb9\x47\x0f\xca\x1b\x62\x85\x3e\xef\x97\x0b\x77\x6c\xe6\xbd\xe7\x0a\xbc\xa6\x5d\x22\xa5\x58\x51\x54\x24\xe3\xcf\xe5\x70\x29\x9d\xb9\xab\xd2\x6c\x66\xa3\xba\xbc\x3d\x57\x1f\x57\x94\xd4\xac\x90\xa1\x52\x39\xfa\xa5\x9d\xdd\x02\xfb\x9e\x8d\x1a\xed\x5e\xbd\xc5\x53\x57\xf2\x4d\x34\x0b\x2b\x15\xcc\x80\x5e\xc9\xa9\xef\xb7\x1f\xd2\xb6\x23\x42\x96\x21\xca\x3d\x94\xd6\xa2\x9c\x9d\x27\x05\x25\x2f\xd9\x2a\x13\x47\xa2\xcd\x02\xef\x70\xde\x63\x8a\x0b\xbe\xeb\x07\xa1\x51\x87\x1a\xf8\xae\x3b\x35\xfc\x12\x72\xeb\x49\x9a\xdd\xaa\x2d\xd3\x08\x83\xbd\x01\xaa\x40\xe7\x02\xcf\x76\xd2\xce\x49\x59\x91\xc6\x65\x53\xe0\xd5\xe9\x7b\xc9\xf9\x27\x65\x7b\xf9\xd9\xb3\xda\x55\xb6\x8a\x61\x55\x04\x8c\x00\xb8\xa4\x51\xb0\x6f\x94\x9b\x45\x75\xf2\x29\x44\x5f\xee\x9d\xe1\xd9\x34\x38\xbd\x7b\x3a\x11\x72\x1f\x6b\x5e\x51\x17\x5e\xa4\x81\x12\xa8\x7d\xb7\xad\x15\x0d\xa8\x86\xc5\x69\x2a\x4f\xd6\x16\x3e\xc4\xf7\x3b\xa7\xcc\x4d\xbd\xb0\x2e\x90\x77\xd3\x23\x06\x54\xdd\xe2\xaf\x56\x2b\x46\xcf\xdc\x01\xa3\x54\x8e\xf0\x12\x49\xf2\x07\x40\x46\x12\x27\x8b\xcb\x14\xc1\x19\x0e\xba\x5c\xf2\x88\x3c\x9c\xd3\xa6\x4f\x9d\x06\xc8\x8a\xdc\xc7\x25\xf9\xa9\x34\x07\xe4\xdd\x2e\xdf\xa0\x70\xcb\x50\xab\xe4\x61\x56\x6a\x10\xdc\x8c\x7f\x46\x6e\x3c\x4f\x67\x57\x11\x16\xfa\x16\x56\x04\xce\xa7\x6b\x36\x5f\x71\xb3\x8c\x58\x9c\x7d\x44\x85\x3a\x59\x4c\x7f\x3e\x61\x11\x3b\xcd\x58\x73\x1a\x9a\xc2\x67\x1b\x83\x7c\xb3\x0e\xac\x96\x38\xc4\xaf\x68\xb6\x5a\xbe\x65\x59\x96\xa8\x76\x8a\xa1\xb2\xa4\xab\x81\x77\x2d\x94\x73\x0b\x34\xf1\x3b\x5a\x0d\x78\x35\x77\x4b\x35\xcd\x56\x36\x6a\x2a\xe3\x98\x2b\x14\x69\x56\x3f\x3e\xb3\x70\x2c\xe6\x9f\x18\x95\x8e\xfa\x5c\x4f\xc5\x22\x3c\x71\x5f\x87\xd2\x9a\x98\x0a\x3f\x26\x4f\x1f\xd2\x94\x63\x90\xc3\x6b\xc9\xdc\xb8\x0e\x1d\xff\x6c\x10\x3f\x75\x68\xcc\x3d\x7d\xa9\xba\xe0\xa9\xc6\xf5\x05\x44\xf8\x83\x87\x46\x29\x5c\x0a\x12\x80\xe8\x62\x1c\xf3\xae\x19\xab\xf2\x48\x6a\xd8\x0d\x08\x88\xf2\x6d\x1c\xae\x5a\xff\x87\x10\x9e\xf3\xbf\xbc\x51\x73\x36\xec\x17\x69\xd4\x11\x28\xcf\x01\xdb\x3c\x99\xe4\x5f\x9b\x98\x3d\xea\xdd\x5d\x9d\x09\x68\xfb\xbe\x5e\xfd\xd5\x61\x27\x61\x92\x7d\x79\x0f\x9f\x53\x57\x6d\xca\x90\x1d\xdf\x1e\x8e\x65\xdd\xab\xd5\x44\x78\x8d\x47\x59\x90\x58\xd8\x33\xc5\xda\xda\x42\xf1\x17\xea\xcb\x7d\x67\xbe\xe6\xb8\x81\x71\x9d\xe7\x8b\x52\x90\xdd\x22\x88\xd5\x7f\x5b\x30\xc8\xbf\xb2\x41\x73\x31\x0c\x7d\xe2\x62\xdf\x77\xb0\xcb\x9d\xed\xef\xfb\x50\x86\xba\xaa\x8d\x4d\x90\x53\x2c\x95\xa3\x5d\xdd\xea\xee\x94\x0f\x0a\xca\xd1\x55\xfb\xf9\xac\xfd\x8a\x06\x72\xeb\xaa\x07\xc0\xbc\x6e\x89\xf7\x31\x10\xc0\x34\xf3\x7f\xd1\xd0\xe6\x81\x85\x1d\x1f\xdb\x0d\x9e\xc3\xa3\xc7\x6e\xd4\x3a\x63\x02\xd5\x9c\x58\xb6\xe5\x7a\x9f\xe2\xe3\xbe\xab\xa9\x6b\x22\x0e\x86\x3b\xf5\x78\xe2\xc5\xe0\xe3\x52\xa5\xc5\xff\xb7\xdc\x97\xfb\xe4\xde\xf1\x7a\xd5\x5b\xe7\x44\xdb\x54\x09\xfa\xcb\x81\xd0\xd4\x5e\x83\x8d\x50\x50\xe6\xa2\xce\x89\x5a\x46\x46\x0e\xb1\x5b\x62\xdc\xb8\xaf\x47\x6e\x7a\x2d\xe2\x7b\xc8\x05\x78\x43\x6e\xc9\xf9\xca\x59\x49\x65\xeb\x6e\xed\x1c\xaa\xc4\x24\xee\x8a\x7f\xf4\xa0\x0c\xbc\x55\xba\x46\x3e\xac\xf3\x8a\x5a\x3c\xb1\x60\xb4\xe4\xa6\xfb\xa7\x93\x9f\x1e\xac\x10\x3d\xa1\x58\xfa\xcc\xb3\x5a\x31\xc4\x48\x85\x43\x27\xa2\x03\x9d\x3a\x82\x33\x69\xce\xe9\x29\x3a\xb0\x3d\xd9\x9a\x9f\xa5\xa0\xd5\x1a\xc4\x08\x88\x13\x7f\xe2\x33\x5f\x12\x23\x56\x8b\x0a\x19\xde\xdc\xbc\xaa\x62\x6c\x0d\x68\x1f\x18\x81\x4d\xdf\xac\x4f\xe3\x12\x11\x2d\x61\x66\xf6\xf2\x3b\xf2\x40\x54\x30\x8e\xff\x68\x70\x17\x1f\x9a\xcc\x14\x1c\xaf\xbe\xc2\xe4\xf9\x5a\xd0\x08\xc5\x5c\xa4\x10\xbe\x22\x8b\x10\xec\x78\x98\x01\xfa\x33\xd7\x78\x52\xeb\x60\x68\xc8\x84\x60\xf2\xff\xbc\x2b\xf5\xa8\x66\xc5\x67\xf5\xcf\x42\x4d\x17\xb9\x6e\xc8\x8b\xb5\x7c\xf7\xfd\x63\xda\x02\x39\x0d\x05\xdc\xb6\xb0\xb8\x7a\x86\x38\x71\xd8\xae\x21\xc4\x54\xc2\xeb\xe5\x6b\xc5\x6a\x01\x07\x84\x3b\x17\x40\xde\xfe\xff\xe8\x7a\xff\x30\x29\x8a\x3b\x7f\xdc\xe9\x99\x10\x63\x70\x05\xc4\x15\x11\x11\x11\x01\x81\x59\x61\x59\x61\x21\x86\x08\xa2\x22\x41\x96\x03\x44\x43\x88\xb1\xa6\xbb\x66\xba\x76\xba\xbb\x86\xea\xee\x99\x9d\x0d\x22\x41\x62\x08\x72\xc4\xf3\x63\x0c\x47\x08\x31\x86\x70\xc6\x28\x47\x38\x8e\x33\x1c\x47\x88\x31\x1e\x1a\xce\xaf\xf1\x8c\xa7\xc6\x23\x86\x18\xce\x23\x1e\x31\x86\x18\x63\xdc\xce\xf7\xe9\xaa\xea\xae\x77\xd7\x90\x7f\xf2\x3c\x01\xd9\x9d\xe9\xae\x7a\xff\x7c\xfd\x58\x0e\xe3\x67\x93\xf1\xba\xb6\x30\xbb\xa0\x80\xe0\x26\x5f\x45\xe8\xc5\xca\x59\xab\xb2\x5f\x23\xf4\x48\x90\x10\x94\xff\xa7\x3b\x31\x43\x2f\x4b\x8b\x94\xfc\xeb\xd7\xe8\x50\x35\x27\x74\xbd\x04\x83\xf7\xce\x1d\x2d\xbc\x7c\xec\x96\x9c\x84\xee\x9f\xff\xe2\x2e\xcd\x72\x4e\x88\x0e\xcb\x5e\xec\x9a\x31\xfa\x27\x11\x92\xd2\x04\x5b\x69\xf5\xff\xcb\x49\x69\xfe\xc0\x3e\xcc\x60\x83\x1e\x03\xa5\x2e\xf6\x02\x26\x39\x06\xd7\x9e\x35\x5a\x7b\xce\x81\x4f\xfc\x0c\x0c\x7c\x6d\x1b\xbc\x46\x65\x59\x5d\xfc\x62\xdd\x28\x78\xb9\x74\x1f\xaa\xa8\xfd\x8d\x49\x99\x1f\x5c\x65\xc8\xc5\xac\x44\x69\xd5\x6f\xb5\xf1\x18\x30\x9e\x1f\x04\x5c\xd8\x70\x05\xf1\xb2\xc7\xf8\xdb\x0e\x4d\x88\x0d\xb1\xaa\xee\x27\x97\xc7\xc7\x5b\x86\xe0\x66\x02\xf5\x2f\x6c\x02\x44\xec\x20\x2e\x6c\x39\xf8\xc0\x78\xf8\xe8\x28\x10\x04\x03\x9b\x3a\xdc\xd9\x4a\xcd\xef\x5f\x9d\xa1\x86\xaf\x81\x4d\xbc\x2a\xb4\xef\x1c\x31\x46\x65\xf5\x32\x65\xa1\xcb\x8f\xec\xcf\xc7\xea\xf0\xcb\x00\x3b\xf2\x8e\xfd\xf0\x41\x49\xa6\xb5\x31\xaa\x09\x21\x96\xfc\x85\x8b\xd4\xca\xbd\x17\x43\x71\xa4\xfc\x5d\x0f\x00\xfc\xa5\x70\x5e\x16\xc7\xb8\x77\xaa\xa6\x1b\x8b\xad\x04\x07\x79\xdd\x62\x2d\xd1\x35\x48\x39\x90\x12\x78\xeb\xe6\x8d\xd5\x6f\x53\x15\x0b\x74\x1a\xdc\xb5\x4f\x58\x07\xd1\x2b\x8e\x23\x54\x58\xaa\x9b\x81\xcc\x7b\xa2\xbb\xf9\xaf\xef\x0c\x57\xe3\x61\xb5\x37\x8a\x9e\xb4\xb4\x0d\x32\x8b\x5b\x3e\x29\x5b\x32\x18\x08\x89\x96\x49\x95\xba\xdc\x23\x29\xf7\xe4\x6d\x7a\x49\xee\x54\xe5\x95\x31\xce\x9b\x07\xb4\xea\xcb\x62\x5b\x7d\xe3\x92\xeb\xa3\xfa\x1e\x7d\x40\xe2\xdb\xe9\xe0\x5b\xea\x65\x31\x52\xab\x09\x08\xc3\xbb\x9a\x8c\x51\x2d\x64\x58\x4c\x7d\x0b\x63\xa3\x0b\xb5\xf0\x88\x2c\xb9\x5e\xc9\x7d\x58\xaf\x1d\x6a\x38\x0d\xd8\x6f\x6b\x96\xb5\x61\x8d\x51\x9a\x0a\x3b\x47\x73\x9e\x07\xc0\xfb\x20\xf4\x24\x93\xe3\xd7\x16\x74\xc9\x4b\xbc\xd7\xae\xd9\x91\x56\xbf\xb5\x1a\x9f\x06\x5c\xbf\x0a\x24\x24\x86\x42\x2b\x74\x38\xcf\x26\x5a\x7b\x54\x74\xd3\x0d\x1b\x63\xc7\x8c\xbb\x63\x1e\x8a\x16\x3f\x90\xde\xfb\x46\x47\x2f\x58\x17\x6e\xa8\x69\xc9\x88\x38\x4e\xa2\x25\xfe\x6c\x5f\x0a\x3a\x6b\x86\xd5\x96\xd0\x37\x78\x89\xf4\x39\xc2\x2e\xe1\x8c\x41\x19\x32\x86\x0f\xce\x18\x75\x2b\xc5\x98\xad\x22\x28\xcf\xa7\x8d\x96\x9e\xfc\x8f\x6d\x2a\xe9\xae\x0e\x91\xcf\x69\xe2\xcb\x17\xe9\x1e\x3d\x3e\xe2\xd1\x90\x5f\x8f\xc7\xd7\xaa\xb4\xd4\xd1\x39\x75\x3a\x67\x6c\xad\x14\xd7\x48\x2c\x8c\x84\xaf\xdf\xb1\x6b\x95\x58\x13\x92\x1a\xa0\xf0\x63\x4d\xeb\x90\x68\x2a\xcc\x58\x5c\xee\xa8\x98\xf8\x59\x90\x30\xcb\x0e\x4e\x94\xb5\xf3\x97\xdd\xa1\xae\x37\x75\x09\xa3\x61\xfc\xa7\xb7\x1e\x80\x28\x30\x2f\x60\x9c\x87\xcd\x63\xe1\x5d\x8b\xd3\x84\x66\xc6\x35\x40\x54\xbb\x4f\x32\x9f\x05\xa4\x83\x5f\xa3\x17\x27\x4a\x14\x3b\x97\xaf\xce\xbb\x9a\x41\x29\x5f\xc6\x97\x9c\x54\x06\x7a\xc3\x53\x0a\x0f\x5c\x22\xc8\x33\x11\xf8\xe4\xe7\x4a\x0b\xa6\x0a\xa3\x21\x87\x73\x45\x87\xf6\x68\xb8\xad\xd5\x21\xc6\xfd\xa9\x3c\xf3\xe5\xdd\xd9\xde\x9c\xf9\xe4\x8c\x02\xac\xbf\x19\x09\xfc\x0f\x68\xc8\xe9\x14\x91\x12\xba\x8c\x1b\x41\x20\x48\xd5\x7b\x91\x56\xb1\x32\x3e\x3b\x14\x28\x08\xf7\xb1\x16\x7d\x30\xb7\x96\x48\xdb\x44\xbb\x8e\xb4\x83\xba\xa9\x42\x03\x92\xd0\x38\x8d\xdb\x9e\x04\x88\x03\x2f\x20\x0e\xe2\xb2\xe9\xf2\xe5\xbc\x59\x6b\xb1\x30\x37\x9d\xd0\x4a\xb7\x9e\x9f\xd6\xdc\xcd\xb8\x64\x51\xe2\x5b\x5f\x38\xcb\xd0\xd7\x78\x7e\x20\x50\xf2\xb2\xbf\xcf\xcd\xce\x46\x8a\x5e\xda\x94\x01\xb6\xb0\x74\x5e\x8b\x92\x92\x9b\x38\x4a\xfd\x78\xa7\x02\xd5\x94\x11\x74\xc6\x8c\xc6\xdd\x07\xb4\x0e\x6c\x1a\x70\x29\x80\xbf\x03\xb8\xe4\x69\xb3\x66\x5d\x5d\x9c\x35\x23\xfe\xed\x3f\x5d\x09\x3c\x3b\x82\x00\x7b\x16\x12\xf0\xf0\xfc\x86\x6e\x80\xf6\x4c\x1a\x15\x63\x7e\x57\xcb\x10\x13\x85\x4e\x32\x72\xda\xb5\x56\xe5\x3e\xfe\x08\x2b\xbc\xd8\x1f\x04\x68\xac\x22\x47\xf1\x5e\xf2\xfa\x8d\x17\x40\x00\xba\xef\xc7\xf1\x8c\x27\xb6\xb3\x5e\x6a\x87\x90\xda\x32\x4a\x49\xce\xb9\xe5\x7d\x4a\x84\xde\x0f\xe3\x6e\x45\xb0\xe9\x92\x23\x52\x1e\x01\x71\x15\x26\x65\x0c\x9b\xa2\x69\xdc\xfd\x86\x32\x6c\x40\x3c\x1c\xdd\x02\xa0\x63\x59\x5b\x92\x37\x46\x40\x45\x83\x00\x07\x2c\xb1\x35\x18\xc8\xff\x72\x2f\x98\xea\x5d\xd5\x1d\xff\xd1\xb9\x9a\x6c\x1c\x43\x16\xad\x23\x5d\x5c\xee\xae\xc3\x1a\xb2\x23\x64\xe9\xe1\xcd\x3f\xa4\xd9\x87\xd1\x92\x6f\x86\x4c\xca\x54\xe7\x37\x3f\xaa\x61\x74\xb8\x6c\xad\x68\x0f\xff\x70\x5b\x76\x82\x37\x2d\x11\x80\xfb\xde\x16\xf5\xd8\x69\x3d\x25\x2d\xaf\x9c\x02\x85\x40\x03\x29\xc9\x9f\x6f\xeb\x87\x62\x6f\xc4\x2a\xd2\x72\x39\xfe\xf3\x1b\xf7\x8f\x00\x9b\x4f\x6e\xb3\xaa\x2e\xe4\x2c\xa5\xa9\x28\xd4\x33\x26\xbc\x2c\x59\x42\x58\x10\x7e\x0a\x3b\xce\x55\xb5\x6e\x7c\x44\xce\x7f\x08\x12\x3d\x1c\x62\x12\xa9\xa3\xf3\xa5\x36\xed\x1a\x21\xc6\x48\x05\x09\xe0\x73\xfe\x8d\xb5\x60\x53\xe9\xdb\x0d\x1c\x80\x01\x43\x61\x2c\x20\x3c\x86\x29\xde\x22\xba\x7e\xbf\xc6\xec\xc5\x8e\xa3\xa4\x46\x2f\x78\x74\x38\x68\xec\x6b\x36\x62\x02\xa4\x9e\x3b\x72\x42\x51\x4f\x9d\x26\x23\x2d\xc8\xcb\xc2\xc2\xc3\x00\x8d\x1c\x32\x97\x77\xe4\xbf\xdf\x9d\x6d\x7b\xaa\x14\xb3\x20\xc3\x04\xbf\x08\x58\x7c\x0a\x9d\x5b\xf9\xe5\xf3\x7f\xd8\x0d\x4c\x10\x09\x83\xd6\xed\xb9\x4b\x8f\x00\xa5\x44\x86\x48\x22\x7b\x56\x7d\xa3\xa5\x64\x13\x8d\xd0\xec\x23\xe9\x41\xef\x9e\xc2\x6f\xf9\xc7\xd7\xcb\x4c\xd0\x3d\xb5\xd8\x13\x61\x00\x58\x2f\x3b\xb4\x91\x44\x3a\xa3\xf2\xd8\x08\x3d\xa4\x23\x96\x88\x8f\x44\xcf\xb5\x70\x62\xcc\xf8\x0b\x72\x45\xcc\xfc\xc2\x61\x1a\xf7\x42\x62\x69\xc4\xbf\xfd\x8f\x6d\x9a\xd0\xa6\x43\x9b\x9a\xa8\x62\xe1\xf3\x23\xa1\x65\x51\xb3\xc4\xcb\xa8\xf3\x4f\x6a\x88\x49\xe2\x90\x20\xb5\xd4\x8a\x96\xcd\xbe\x42\xeb\x50\x6c\x93\xc9\x22\x33\xd3\x1b\xf4\xad\x57\x0a\x1d\x49\x04\x6e\xc1\x0d\x84\xf7\x03\x92\x6e\x58\x6b\xfd\x2f\x0a\x9f\xdf\x08\x71\xf6\xdc\xb5\x4d\x3e\xba\x45\x23\xd5\x4b\xaa\x52\x37\xae\xcb\x48\xb1\x27\x5a\x7c\x8d\x5e\x34\xb2\x0a\x95\x52\x7d\xf7\x1e\x10\xe0\xba\xeb\x04\x07\x21\x68\xb6\xfc\xba\xd5\xa3\x34\x54\x65\x1d\x59\xa9\x5c\x5f\xae\x4b\xdb\xa0\xf6\x12\x24\xce\xb6\x7a\xa6\x17\x2e\xd6\x7a\x5a\xe1\x48\x23\xf1\x4f\x13\xde\xd5\x9a\x3f\x4e\x06\x93\x3b\xef\x2f\x9f\xd6\x96\xe2\x81\x64\x5f\x25\xad\xe5\xb7\x9f\x3a\x3f\x93\x39\xdc\x9a\x50\x77\xb9\xfd\xd1\x84\xf6\x25\x6d\x12\x92\x0f\x73\xde\x1d\x6a\x34\x1b\x50\x97\x2f\x61\x87\xeb\xbe\x62\x94\x1b\x9d\x49\x00\xc2\xc4\xdb\xd5\xad\x10\x7d\x80\xea\x11\xff\xf5\xf5\xc1\x32\x9f\xb8\x1c\x7b\x39\x6e\x58\xb6\xde\xa8\x13\x8f\x56\x78\x1c\x8e\x3f\xaf\x2a\x64\xae\xef\x00\x88\x4c\x6a\x91\x90\x3b\xaf\x7c\x7a\xb4\x3a\x7c\xc8\xbd\x8a\x83\x03\x73\x2b\x16\xa8\x7b\x52\x74\xe2\xd0\x27\x04\x18\x73\x9f\x7c\x4d\xd4\x9d\xcb\x6f\x9d\xdb\x52\xc3\x5e\x33\xe4\x5c\x35\x4f\x65\xc5\x9e\xa8\xa3\x17\x6a\x38\xa4\x07\xe6\xeb\x2f\xb4\x56\x63\x94\xa5\xd2\x97\xf9\x93\x4f\x03\x51\x1d\x51\x7c\xf2\xe1\xca\x38\x4d\xce\xa6\x49\x43\xc1\xf1\x15\x0d\xfd\xba\xfd\x72\xda\xdc\x8f\x4d\x3b\x99\x36\x4f\x79\x4d\x6b\xc6\x18\x25\xd5\x04\x19\x96\x74\xa0\x91\x59\x4a\x15\x8c\x5d\x92\x40\xfb\xf2\xff\x2b\x9f\x73\xa9\xc9\x99\xfa\x03\xf9\xbd\xf3\xd4\x1d\x70\x70\x85\xf8\x0e\xe2\x71\x27\xfa\xd5\xbb\xaa\x5c\x2d\x16\x61\x9b\x57\xa8\x77\xab\xde\x56\xa2\x3b\x12\xcb\x82\x81\xdc\x2f\x35\x4e\x10\x0b\xe3\x8a\x5c\x36\x44\xbb\x9e\x52\xa8\xce\x3a\xd2\xaf\xf5\x03\xf7\x68\x22\x72\x98\xd3\x66\x93\x56\xdc\x2d\x0c\x96\xe9\xcc\xb3\x8a\x1c\x51\x3c\x5c\x7d\x44\x97\x96\x92\x39\x60\xb1\x27\x0a\x56\x80\x6d\x2e\xb4\xec\xf8\xc6\x23\x9a\x26\x5c\xc7\x74\x09\xf9\xcc\x1b\x9d\x19\x59\xbf\x0a\x43\xdc\x57\xc3\x28\xae\xbb\x08\x3c\x21\x62\x72\x99\x39\xdf\x16\xc0\xbe\xdf\xd5\x47\x82\x39\x00\xb3\x08\x32\xd5\xc7\x18\x28\xcc\xd9\x39\x14\x6e\x7b\x56\x70\x3f\x4d\x63\xbc\x48\xaa\xb7\x74\x2c\xe6\x85\xd3\x5f\x24\x11\xb3\xf3\xea\x29\xd3\x3b\xa7\xf2\x29\x7e\x37\x70\xaa\xb0\x31\xe2\xb5\xda\x3f\x15\xb2\xa8\xa9\x92\x83\xcc\x6a\x29\x64\xde\x19\x79\x4e\x13\x81\x9c\x02\xaa\x30\x8c\x5d\x2c\x47\x4c\xf9\xad\x60\xa5\x80\x19\x72\x79\x81\x3f\xfb\xda\x54\x7c\x03\xf7\x75\x24\x47\xad\xea\xa9\x4c\xcc\x37\x81\x22\x13\x3f\x3e\x5c\x3b\xed\x8c\x38\x4e\xfc\xa6\x84\xf1\xa2\x11\x94\xa5\xd9\x01\xd7\x19\x10\x05\xc1\x15\xe3\xd5\xc5\x99\x3e\x35\x99\x0b\xe6\xca\x80\x3d\xea\x07\xfc\x8a\x7d\xeb\xec\x2b\xf4\xb6\xce\xc3\xcd\x33\x0d\x7d\x9e\x1e\x95\x31\xd9\xe6\xf3\x2c\x31\x5d\xfa\xcf\xb7\xd5\x13\xe4\x3e\x81\xf1\x37\xdf\xd2\x97\xcd\x5b\xbd\x88\xe1\x20\x9b\xb7\xf2\x3f\x75\x74\xbc\xae\x4f\x2a\x9e\x84\xad\x8e\x93\x5e\x09\x0d\x8c\x9c\xc0\xe6\xd3\x8d\xdc\xd7\x22\x80\xa6\xa0\x8c\xa3\x8d\x73\x85\xe3\xa2\xcb\xf6\xa8\x87\xfb\x88\x1f\x08\x8d\x8b\xdc\x7b\x5b\xc5\x68\x51\xb8\xfa\x4b\x61\x7f\xe3\xf5\xdd\xfa\xf2\x9b\x8b\x31\xce\x2e\xf6\x44\x4f\x6e\x4e\x5b\x27\x17\xc2\x6f\x5e\x7b\x04\x8c\xf2\x91\x17\x20\x5f\x18\x2b\xe5\xf6\x1d\x03\x02\x13\x8d\x62\x4f\xf4\xdd\x35\x2d\x82\xfc\x5e\x25\x75\x91\x3d\xaf\x13\x02\xda\x4d\xe9\x4c\x7d\x70\x5d\x8a\x4a\x5d\xb8\x10\xc6\x94\x1f\x6a\x94\x4c\x8e\x91\x63\x4d\x79\x81\xbe\xb6\x24\xbd\xdc\x0e\xee\x6b\x09\xa5\x57\x3c\x00\xee\x97\x43\xc3\x8a\x2d\x00\x4f\xbf\xdd\x96\xf4\xe4\x49\x93\x16\x9d\x77\x5c\xa3\xcc\x05\xa8\x5c\x16\x68\x80\x9b\xb7\x89\x7c\xb4\x0c\xd9\x36\x2a\x83\x9b\xfd\xbd\x11\x9a\xf5\x07\x71\x84\x92\x7e\xbe\x74\x96\x2a\x00\x3d\xe4\xb6\x88\x79\x45\x93\x1e\xd0\x7e\x1d\xaa\x63\x99\x95\xa7\xbc\x24\xee\x26\x67\x63\xf2\x79\xcf\x98\xc5\xa3\xc1\x8d\x77\x48\x99\x32\x8f\x40\x20\x6c\x34\x52\xc1\xf3\x4a\x08\x5a\x51\x9c\x23\x50\x0e\xc5\xb9\xc2\x21\x16\xaa\xe5\xe5\xe7\xac\x05\x24\x27\xce\xc8\xe6\xaf\xe2\x53\xfd\x43\x00\x43\xc6\xe4\x0d\xb5\xf1\x9e\x86\xda\xb5\x26\xe0\x00\x25\xa3\xba\xce\x03\x23\x60\x31\x1b\x40\x3a\x42\xfe\xd3\x16\xb0\x90\x23\xdc\x64\x92\x8f\x8b\xfe\x74\x0d\xc8\xfe\x56\x3d\x6e\x1a\xf9\x9e\xf7\x82\x85\x60\x0a\x85\x54\x1a\x39\xae\x99\xe3\xc5\x85\x48\xa2\x7d\xbd\x02\x54\xc5\x29\xc8\x95\x23\x5c\x4f\x67\x2b\xea\xe9\x53\x03\xbb\x28\x76\xab\x92\x58\xdf\xde\x91\xbd\xf9\x1c\x33\xce\xce\x24\xd7\x7c\x95\x5c\xf2\xf8\x01\xaa\x54\xd2\xde\xde\x5c\x93\x38\x15\x77\x0b\xa7\xe2\x67\x46\x83\xe9\x6d\x98\x88\xa4\xff\xcb\x81\x6c\xa9\xd5\x24\x8e\x8b\xfa\x33\x3a\xf1\xb7\x02\x5e\x4d\xdc\xb9\xd4\x79\x5a\x99\xbf\x4f\xab\xa2\x6a\x36\x4f\xf2\x89\xe3\xac\xf1\xd8\xd3\xe9\x3e\x95\x2b\x55\x29\x9c\xc1\xb7\x16\x66\x73\x1b\xc3\x0e\x11\x3e\x2c\xbc\x21\xba\xe7\x88\x82\x0e\x72\x92\x48\xe1\xa2\x4e\xf1\x5d\x66\x4e\x99\xc1\x81\x87\xb9\x8f\xaf\xd2\xc1\x84\xb4\x4a\x92\xfa\xcd\x98\xbf\xe0\x02\x20\xb3\xe4\x71\xd5\x3d\xe1\xbb\x35\x49\x6a\xf1\x3a\xd4\xab\x24\x22\xa3\xe2\xed\xee\xdc\xaf\x8e\x32\xf1\x2c\x8e\x1d\xe6\xa2\xef\x4a\x5d\xe0\xbd\x17\xc5\x73\x5e\x1a\xfa\x3e\x2d\xce\x43\x0e\x0f\x1b\xbf\x7c\x1b\xe8\x7c\x50\xd7\x95\x20\x83\x3f\x6c\x54\x7d\xbe\xdd\x44\x41\xe0\x4b\x2e\xf7\x80\xb1\x77\xf6\x25\x5a\xef\x56\x47\x19\xb1\x98\xdc\xef\x46\xab\x73\xc3\x2d\xa9\xb0\xe0\x95\x0c\x14\x3e\x62\xb7\xa8\x1b\x3a\x61\x20\x6f\x68\x7e\xc4\xe8\xf3\x33\xd2\x35\xb4\x2e\x56\xba\x91\x46\x45\x8a\xff\x55\x32\x1b\x9b\x3a\x11\x50\xa6\xa9\x85\x1d\x4e\x4a\xdd\xf3\xb0\xc6\x58\xb6\x09\x2e\xf3\xb5\xdb\xfb\x4a\x11\xc6\xc4\x90\x57\xbf\x67\xbd\x88\x46\x3d\x1e\x41\x1e\x20\x89\xe4\x7f\xdb\x0d\x46\x27\x35\x2b\x11\xbc\x5d\xb4\xa6\x5d\xeb\x9c\x12\x2e\x48\x6e\x47\x59\x7b\x42\x8c\x78\xa8\x82\x58\x5a\x3f\x1b\x73\xb6\xa8\xcb\x4b\xbd\x94\xf5\x62\x7c\xf5\x03\x45\x2e\xb4\x18\x2a\x07\xad\x72\x85\xb9\xff\x6f\x1e\xe8\x3a\x7b\x49\x89\x86\x01\x57\x0f\x74\x1e\x55\x5a\x37\x80\x69\x1c\x2d\x5d\xa5\x20\x54\xd3\x04\xf2\x35\xf7\x97\xf7\xaf\x00\xc7\x25\xc0\xcc\x93\xfa\xda\x2d\x2a\xe9\x73\xf6\x29\xe6\x94\xc5\x87\x9f\xd1\xb6\xec\xcd\x2e\x13\xe6\x07\x67\x24\xc3\x7d\xfb\x2d\x8d\xc4\x42\x2d\x1b\xb9\xda\xca\xe6\xec\x45\xc0\x22\x87\x94\x9a\x52\xa8\xea\xed\x49\xba\x3d\x5d\xc5\x3e\xd3\xae\xbc\x70\xd7\xd6\x11\x7a\xa5\x69\x25\x1e\x2e\x79\xf2\x96\x36\x14\xab\xd5\x30\x4a\x37\xad\xc6\x2d\xef\x09\xf9\x90\x32\x0d\x59\x60\x73\x5f\xf9\x62\x8d\xd6\x52\xe3\x8e\x8d\x6b\x54\xcb\x80\xcb\xc5\x9e\xa8\x68\x2b\x64\x5e\x47\x7c\xb7\xf3\x73\xae\x4d\xf6\x95\x4d\x97\x72\x44\x7a\x7e\xe5\x6d\xc3\xe0\xfd\x0d\x6c\x3e\x95\x7d\x78\xcf\xd0\x8c\xd2\x88\x10\xd3\xfa\xa1\xf0\x80\x2a\x2e\x22\x35\xbd\x86\x1e\xc8\x1d\xdd\x70\x1e\x28\x57\xf9\xd0\x27\xb7\xdd\xd2\xf5\x9e\x89\x9b\x20\xfe\xa2\xf2\x10\x35\xff\xa6\x9e\xd3\xe2\xeb\x6c\x7c\xe2\x84\x3a\x3b\x41\x83\x16\x85\xad\x48\xf4\xfa\xca\x6c\x30\xe4\x5c\x3f\xbe\xd5\x17\xfc\xc7\x42\xcd\xd3\xaa\x85\x80\x26\x16\x0d\x3d\xd1\x8b\x5a\x43\xba\x3a\xc4\x62\x2b\x2e\xf7\x33\x1f\x1a\x09\xc3\x81\x13\x17\x76\xc2\xa2\x39\x7f\xf6\x83\x3a\x4c\xce\x75\xc3\x74\x38\x91\xfb\xfe\x49\xb1\x75\xc0\xe5\x32\x65\xfc\x1f\x09\x5a\x06\x1a\x9c\xad\x0f\x7a\x43\x4f\x38\xe9\x78\xf7\xeb\x80\xee\x40\x22\x65\x73\x3b\x36\x69\x4b\x75\xdc\x90\x59\xf6\x99\x8e\x76\x55\xeb\xb0\x8c\xee\xed\x92\xb7\x40\x4d\xe5\x48\x7a\xf9\xb0\xc1\x2a\x62\x22\x73\x75\x48\x04\x0f\xe1\x79\x1d\x95\x48\x98\x99\x52\x95\x35\x82\xc3\x0e\x5d\xd7\xd0\xb3\x10\x99\x9c\x96\xea\x97\x3e\x2c\x42\xd1\x22\x1a\x12\x17\x41\x9b\x80\x5a\x3a\xeb\xaf\xc9\x3c\xf9\xfe\x73\x6a\xea\xea\x21\x86\x9a\xc8\x43\xd0\xc1\xee\x6b\xe3\xd3\xde\xd1\xa6\x8e\x50\x54\x8b\x46\xef\x49\x37\x76\x4d\x00\xe5\x1b\xc8\x9f\x3e\x01\xd0\x5e\x88\x05\xc4\x24\x35\x24\xe6\xcb\x2f\xbe\xaf\xa9\x4b\xc4\xe9\x52\xbc\x64\x19\x68\x1e\xbe\x06\xec\xe7\x1c\x82\xbd\x04\xcc\xf7\x97\xed\x19\xd5\x33\xaf\x22\x3f\xfb\xcf\x26\x89\xbc\x58\x26\x52\x00\x74\xe3\x49\x35\x88\x98\x30\x8b\x63\xf4\xfb\x4f\x4f\xd2\xae\xb7\x69\x7b\xd4\xa1\x95\xe6\x19\x97\x16\x6b\x00\x5e\x14\x05\xe3\xf9\x27\xff\xf3\x88\xf3\x1a\xc9\xd0\x59\x0a\xae\x15\x36\xdc\x77\xa9\x96\x20\x42\x9d\x5e\x97\xc3\x07\x81\x96\x49\x80\x1c\x09\x1a\x79\x7c\x4d\x5a\x1b\x97\x5b\x1b\x99\xdc\xe5\xba\x9f\x08\x75\x88\x95\xee\x72\xf2\x5f\xde\x9a\x7d\x8c\x36\xf2\xaa\x5a\xdf\xb2\xda\x06\x9a\x8a\x66\xc8\xf1\xc6\x3d\x03\xc6\x7f\xad\xd0\x21\x91\x8e\x54\xb8\xab\x9f\x25\x19\x8e\x4b\x5a\x3d\x42\x35\xeb\x06\xa5\x53\x2d\xae\xc5\xde\x6d\x1a\xbc\x89\xe3\xf8\xe4\x1c\x76\xfe\x22\xc5\x63\x72\x43\x61\x52\xac\x12\xe6\x57\x46\xc1\x25\x58\x1c\x40\x69\x28\x38\x1e\xf9\xfe\xa3\xea\xaf\x2a\x0c\x79\x56\xca\x30\xb2\x98\xcc\xb2\xc8\x0e\x33\xda\x47\x1f\xeb\xd2\xa0\x29\x5c\xf1\x89\x3f\x35\x11\x45\x36\xaf\x4c\xbb\x5a\x93\x6f\x15\x6f\x5c\xb6\x24\xba\xed\xed\x21\x49\xe5\x52\x0b\x13\x0b\xdb\x9e\xb7\xe4\x60\x84\x56\x42\x11\x64\x77\xaa\x1b\x5b\x27\x3e\x91\x64\xf6\x51\x9a\x11\xbd\x45\x99\x97\x9d\x0a\x3f\xab\xed\x83\x11\x97\x02\x89\xcb\xc7\x77\x98\x6e\x50\x4c\x5d\xe4\x67\x68\x07\xc6\x8d\x83\xb3\xa8\xed\xa2\x14\x24\xd8\xbe\x46\x4a\x35\x06\xa1\x25\xea\xa2\xdc\x57\x4e\x65\x3f\x0a\xf6\x2a\x52\x7f\x4c\x16\x0c\x57\x2e\x1c\x0a\x9e\x28\x09\xb8\xce\xb8\xb1\x2f\xd2\x00\xfb\x4d\x07\x35\x12\xb4\xdb\xde\xf9\x97\xe8\xed\xa2\xe3\x60\xaf\x82\x53\xe7\xea\xf2\xc3\x09\x8d\xaf\x8e\x85\x94\x5b\xcf\x40\x7e\xf6\x63\xba\x46\xa9\xc9\x9b\x71\x59\x17\xe7\x3e\x3a\x4c\x8b\x73\xcc\xa3\x8e\x75\x86\xd1\xee\x40\x7e\xd2\x61\x75\x0c\xe2\x4a\x15\xea\x23\x69\x8f\xd6\x0d\x4d\x3b\xd1\x62\xfb\xf7\x6e\xb5\xc6\xe1\xf6\xff\x03\xf9\x21\xa7\xc0\x14\xb0\xe4\x09\x6c\xf8\xa2\xb2\xa2\xd0\x73\xa3\xee\x2b\xb5\xfd\x7d\x9c\xdd\x92\x05\x77\x67\x41\x7c\x57\x9b\xfa\x01\x71\x84\x4e\xbb\xf1\x85\x53\xea\xa6\x31\xec\xa0\x3e\xde\x1a\x5c\xa2\xc9\x27\x94\xb8\x2c\x58\x56\x88\x77\xfd\x14\xad\x24\x65\xc4\x4b\xd6\x3e\xf7\x8e\x4e\x0b\xb1\xde\x66\x08\xd5\x1f\x87\x80\x01\x89\x17\xf2\xc3\x30\x5a\x4d\x25\xbb\x8b\x1c\xc4\xfb\x79\xad\x33\x2f\xc7\x57\x0b\x33\xb9\x8d\xfa\x91\x86\x39\xf7\x70\xc3\x4f\xa4\x85\x3e\x59\xd7\x42\x4f\x83\x70\xf3\x13\x81\x9c\x3e\x6d\x24\x2e\x9e\x8e\x50\x58\x33\x2e\x5f\xa8\x51\xe9\x31\xc3\xbe\x1c\x41\xf2\x76\xfb\xcf\xdd\x8a\xab\x65\x01\x46\x70\xc1\xb9\x23\x69\xf4\x4b\x24\x59\x95\x3f\x38\x58\xc3\x3d\xda\xd8\x13\xde\x78\x45\xcd\xdd\xc6\xe4\x97\x1b\x39\xf2\xd5\x10\xa0\x21\xcb\x1d\x4f\xf9\x86\x21\x7f\xc1\x91\x73\x65\x51\x58\x17\xbb\x98\xc2\x8d\x9a\xbc\xae\xc7\x77\x9c\xe9\x25\xc9\x7d\x7b\x9e\x42\xf2\x70\x2a\xa0\x20\xf0\xab\xce\x6d\xc1\x3b\xd2\x43\xd1\x26\x8e\x43\x20\x48\x36\xff\x9f\x6b\xda\xc1\x52\x15\x9b\x01\x32\x43\x47\x68\x46\x5f\xe7\x29\x01\x91\x69\x7c\xd2\x65\x8f\xbc\x4c\xab\x5b\x3c\x0f\x9b\x01\x31\xb9\xfb\x7a\x92\xc6\xaf\xd2\x94\x9e\x4c\xbe\x79\x91\x1b\x64\x2f\x02\x55\x79\x17\x97\x5a\x7f\xf7\x51\xed\x01\x22\x36\x65\xf2\x84\x09\xf1\x2f\x9c\x17\xa4\x47\x8a\x54\x94\x7e\x7f\xf4\x37\x25\x11\xea\xe2\x93\xce\x8b\xcc\xf6\xe1\x30\x7f\xc7\x17\xde\x89\x6b\x96\x27\xb4\xbe\xcb\xc3\xf1\x7f\x53\x95\xfd\xca\x0f\x1e\x90\x2e\x0a\x0c\x55\x33\x5a\x3c\xf9\x2b\x76\x8c\xd2\xdf\x5c\x80\x19\xa0\xe6\x9e\x98\xa3\x2b\xfd\xe0\x3a\x57\x63\x48\x12\x9e\x51\x7a\x4d\x07\x12\x07\x1c\x7f\x29\x21\x9e\xbd\x47\xb4\xe5\x22\x71\x9c\x80\xeb\x2c\xc7\x7f\x3b\x4d\x49\xf9\x4c\xe7\x46\x79\x85\x8f\xed\x1d\xa1\x97\x21\x56\xa2\x0d\x91\x7b\xbc\xa4\x25\x57\xda\x10\x34\x2a\x15\x78\x3a\xb7\x8f\xd1\xea\x40\xaf\x49\x71\x26\xf3\x47\x5f\x3e\x47\x8c\xfc\x88\x5b\xc3\xac\x8c\x4d\x31\x88\x2c\xdc\xb2\xbe\x25\xa0\xfa\x62\x27\x92\x1c\xa2\x7f\xdc\x21\xaf\x85\xc7\x0d\x36\x5c\x0e\xc5\x1c\x3b\x31\x7b\xc9\xc2\x92\x43\x5c\xa9\x3c\xa9\x47\xcc\x29\x83\x01\xbe\xca\xc6\x7c\x2e\xfd\xb1\x48\x85\xc3\x80\xf0\xcc\x75\xff\x43\x8a\x35\x4a\x80\x9d\x43\xee\xd8\x5b\x5a\x16\xe5\xfa\xba\x40\x2f\x27\x37\xf8\xc0\x45\x7a\x15\x51\xc3\xa9\xce\xc9\xa5\x1d\xed\xd8\xe3\x0c\x46\x8e\xf0\x59\xce\xf8\x4e\x39\x4e\xbf\x03\xd2\x3b\x64\xae\xd7\x4f\x95\x4c\x48\xf4\xf5\x39\xad\x0c\xa4\x4a\x2a\xab\x99\xb7\x37\xa5\x57\xa7\xcc\x45\xc6\xbd\x87\x2e\xca\x16\x0d\x59\x36\xf1\xe1\xd1\x2d\xfd\x00\xf5\x38\x88\x2f\x45\x5e\xbc\x3d\x0c\xac\xf3\x6a\x01\xae\xa3\x62\x4f\xd4\xcf\x94\x5d\xa1\x1b\xb6\xd4\x64\xbf\x3e\xae\x58\x4c\x1c\xd4\xfa\x95\x11\x43\xc1\x54\x9e\xc8\x96\xfe\x86\xb1\xd0\xa8\x81\x71\x0a\x6f\xfe\xa7\x25\x11\x33\x56\x20\x87\x83\xd6\xd5\x77\x7f\xa5\xae\x7e\x48\x67\xd1\x16\x10\x99\xdc\x67\xc5\xe8\xa1\xb8\x08\x5d\x67\x93\xd0\x07\xa2\xb3\x85\x4f\x4e\x1d\x05\x46\xbd\x84\xe9\xd2\x57\xb9\x6b\xdf\xd2\xa4\x11\xcc\xaa\x47\x1b\x0e\xb6\xd2\x31\xaf\xf1\xc7\x73\xe4\x14\x93\x54\x2a\xbc\xa2\x5a\xbd\x46\xc3\x8a\x63\xd2\x2b\x59\x7b\xf2\x95\x3f\x71\x5c\xd1\x50\x1b\x40\x7e\xd0\x18\x32\x1a\x08\xa8\xa3\x32\x59\x0d\x72\xd5\xad\xef\x72\xd1\x82\xe2\x75\x34\xf4\xe2\x2b\x0f\x14\xbc\x5a\x5a\xf0\xc2\x2e\x50\xdf\xdb\xa8\x6a\x33\x44\x8a\x3d\xd1\x0d\xf3\x40\xd2\xae\x30\xcc\x8f\xee\x95\xef\x03\x69\x91\xc0\xc7\x4e\x99\xef\x26\xcf\xd6\x28\x90\xc4\xe5\xfd\x96\x04\xd0\x95\xc6\xa8\x39\x28\x76\x2a\x0c\x59\xad\x1f\xe2\xa6\xc7\x24\xce\x2a\x2e\x60\xb9\x7f\x5e\x44\xca\xd9\x19\x42\xfc\x17\x68\xb2\xab\xe3\x53\x07\x0a\x0b\x9f\xd4\xca\x2f\x2e\xdf\xaf\xbc\x04\xf2\x5f\x5d\x04\x44\x89\x08\xc7\x2a\x78\xa2\x87\x35\x2e\x63\xba\x07\xbb\x42\xb0\x47\x1f\xac\x19\x9c\x8c\xdf\xef\xb8\x23\xfe\xfa\x57\x58\xa2\x0c\xf1\xeb\x57\xf9\xa6\x73\x95\xcf\xa1\x18\x93\x46\xb5\x38\x76\x7b\xca\x6e\xfa\xae\xa9\xa0\xdf\xf4\x9a\x72\x54\x94\xdb\xba\x50\x7c\xdf\xeb\x10\x63\x4d\xb9\x7e\xf8\xd8\xab\x5a\x55\xe2\xa0\x66\x32\x90\x1d\x3c\x4c\xb7\x98\x63\x16\xd7\xe9\x77\xe3\x9a\xe7\xe8\x22\x1d\xd0\x84\x83\x20\x11\x8a\x39\xef\xfe\xe1\x19\x59\xc2\x66\x62\xe4\x3c\x71\xfb\x70\x30\x53\xf6\x48\x95\x58\xc2\x98\xff\xb7\xc6\x25\x7a\xdb\x91\x40\x85\xe4\xb7\x5a\x5e\x07\x52\xc1\x28\x54\xe8\xec\x5f\x1e\xd4\x96\x8e\x94\xa8\x81\xcd\xeb\xb7\x43\xe7\x08\xc1\x48\x89\xff\xfc\x4e\x5b\xc3\xe6\x33\x64\x56\xfd\x90\x04\xb2\x5c\xef\xdf\x01\x84\x4d\xf9\x36\x65\xc0\xe8\xd4\x24\x99\x59\xe8\x79\x69\xb1\xb4\x44\x43\xe7\xbb\x28\x61\x86\x6f\x79\x41\x93\xd2\xb6\x42\x47\xee\x78\x8d\x83\x6f\x6b\xaa\x9f\x16\x9a\xdc\xa2\xe0\x67\x74\x1c\xcf\x2e\x7d\xfd\x1a\xc1\x4e\x09\xb3\x4a\x66\x1f\x5e\x28\x1f\xd5\x87\x23\x9e\x89\xad\x04\x20\x6e\x9c\xd4\x36\xf4\x25\x14\xd8\x8c\x52\x57\x50\x2d\x0b\xb7\x6e\x83\xb3\x23\xa1\xc0\x7d\xf7\xeb\x89\xee\x2f\xc3\x7c\xd6\xd5\x33\x60\xbc\xf6\xdc\x05\x19\x91\xae\xd0\x4f\x78\x66\x7b\x47\xeb\x56\xee\x26\xc3\x41\xe2\x79\x6d\xdc\x55\x56\xc1\x2c\x2e\x42\x75\xd0\xf7\xb5\x9e\x28\x4d\x10\x73\x05\x76\xf8\x5d\x5d\xa0\x04\xf1\xdd\x98\x08\xeb\x9f\xda\x3c\x12\xda\xa3\xe9\x00\x90\x57\x04\xd1\x26\xfe\x67\xcb\x7b\x64\xef\xf7\xa9\x9d\xa2\x8d\x9a\x4f\x6b\x35\xc1\xfd\xc9\x5f\xfc\x54\x1a\xe7\x03\xc4\xb9\xc0\x5f\x98\x01\x00\xeb\xd4\xe4\xea\xb8\xd1\x63\x63\xc1\x46\x40\xa8\xcf\xc4\x5f\x78\xe6\xab\xba\xe9\x5b\x8d\x61\x9f\x07\xfd\x84\x04\xbd\x42\x9f\xec\x52\x8f\xba\x30\xbf\xe6\x37\xcf\x07\x43\x10\x2f\x20\x45\x49\xfd\xce\x4f\x59\x0c\xd6\x98\xc9\x10\xf9\x9a\x85\xaa\x0a\x94\x56\xe8\x83\x4f\x5d\xc0\x65\x08\x8b\x2e\xe9\xc3\x16\x27\xcb\x88\xef\xbb\x62\x9b\xda\x4f\x73\xe1\xc9\xc0\x2e\x3a\x88\x55\xb0\x78\x91\x5f\xd9\x26\xc6\xfb\x4b\xca\x84\xaf\xb5\x85\xf0\xc1\x05\x4f\x41\xc5\x1b\x39\xd6\xe3\xaf\xe3\xf7\x9b\x75\xa1\x47\x66\xda\xd8\x4a\xc8\x2c\x93\x87\x27\x9d\x35\xa3\x8e\x23\x95\x97\xde\x5f\xa3\x11\x5e\x29\xb5\x24\xa6\xad\x30\x6e\x54\x5a\xaa\x35\x68\x58\xec\x89\x46\x3f\xdd\x0e\x7e\x75\x2d\x51\x8e\xe0\x58\xfe\xcd\xa2\xc0\x9a\x1b\xc4\x41\x1e\x25\x05\xf3\x7d\x02\x68\xc4\x0f\xbb\x25\xeb\x8e\x8b\xb5\x90\xc6\x61\xae\xd2\xf4\x70\x68\xb7\xce\x74\x37\x31\xab\x05\x09\x42\xe1\xb3\x6f\x8f\x04\x4d\x23\x0b\x6b\x81\x03\x05\x14\xe7\xbf\xa5\x69\xd9\x99\x44\xde\xf1\xc2\xb2\xba\x1e\xd3\xfd\x00\xb1\x40\x0a\xc9\x06\x83\x34\x1d\x02\xe4\x59\x82\xd3\x73\x6a\x0d\x34\x97\x68\x26\xdf\xeb\xb6\xb3\xa1\xe9\x82\x2c\xd5\x7b\x00\xf4\xb2\x91\x48\x7b\x44\x6f\xb5\x8d\x02\x3c\xf1\xd0\x0b\x58\xd3\xc5\xb0\x7e\x6d\x7b\x4a\xb3\x9a\xe3\xd6\xa9\x72\xc5\x59\xea\x93\xaa\x9a\xbc\x87\xcb\x40\x48\x56\x8d\x55\xe1\x80\x94\xb0\x74\x4a\xd1\xef\x99\xbf\x5b\x1d\xd2\x72\xd8\xdf\xcf\x9d\x95\x7e\xc4\x64\xce\x0a\x90\xeb\x62\x29\xbd\xf9\x59\xe0\x8e\x5e\x62\xc8\x33\xb9\xcc\xfd\x62\xcd\x75\xcd\x74\xc2\x92\x66\x26\x96\xcb\x17\x5a\x04\xdc\x4c\x8c\x2d\x95\xf0\xfe\x63\x52\x22\xf6\x5f\x4a\x0d\x19\x3f\xf3\xba\xe4\x95\x11\x69\x8b\xf2\x97\x87\xb2\x01\xba\x14\x26\xea\x3b\x9f\x5e\x04\x5e\x02\x0d\x02\x87\x2b\xb1\xe6\x37\xbf\x93\x8d\xcd\x55\xec\x79\x38\xb0\xb3\xdb\x88\xdc\xf8\x1b\x00\x18\x77\x5a\x31\xc0\x8c\xa3\x90\xbe\x62\xb5\xcb\x6a\xc8\x8f\xeb\x20\xb0\x09\xce\x4d\xee\x1b\x99\x65\x01\x4b\x12\xb0\x38\xbe\x9f\x1f\xa6\x3a\xe8\x10\xd2\x61\xbf\x33\x56\xba\x57\x67\xd4\x57\xee\x53\xed\xce\x74\x2e\x70\xfe\x55\x29\x9f\xc7\x75\x04\x6c\xea\x48\x23\x48\x63\xc2\x92\xec\xb7\x41\x8c\xdb\x34\x66\xf5\xa5\x0d\xf3\x94\xba\xfd\xb6\x18\x19\xcb\x79\xd2\x05\x87\x21\x69\x5b\x2c\x2e\x72\x6f\x3d\x26\xe9\xf9\x3e\x0f\x95\xd2\x85\x67\xa6\x36\xfb\x47\x96\xc5\xc9\x54\xfc\xc4\x9f\xbe\xf6\x32\x3d\x4f\xa2\x0a\xf2\x4d\xc4\xf8\xbc\x48\x56\xa0\xee\x1c\x55\x20\x7a\xd4\x25\x1e\x16\x4a\x4a\x3f\x7c\x4a\x1d\x22\xc4\xfd\x0d\xe2\xa7\x30\xed\x1c\xb5\xcb\x44\xa6\xd4\xbd\xc9\xa6\xd0\x67\x54\x5f\x31\x95\xf7\xce\x5f\xeb\xca\x1e\xbc\x66\x58\xa1\xbe\x83\xea\x49\x68\x8e\xaf\xe1\x8d\x13\x5b\xb6\x0d\x35\xae\x5c\xc0\xb5\x24\xa6\xaf\x10\x4f\x5a\xf8\xf5\x11\x53\xae\xba\xf3\x4f\x0d\xca\xae\xbb\xc4\xed\x71\x38\x43\x3a\xdb\x65\xbc\xb4\x2e\xad\x40\x6d\x52\x22\xc2\xb9\x77\x53\x8b\xbf\x2a\x76\x1c\x50\x08\xe5\xe7\x69\x7a\x86\x01\xad\x15\x19\xf2\xaa\x49\x87\x6c\xd0\xe7\x84\x6e\xd5\x62\xe4\x5b\xdc\x16\x23\xfb\x28\xbe\xaa\x59\x59\xba\x94\x49\xc6\x53\xb4\xe8\x3d\xcd\x16\x92\x0b\x0b\x52\x2f\x7b\xe6\x0b\xba\x1c\xa7\x43\x5c\x92\x72\x30\x8d\xa2\x91\x0d\x38\x75\xda\x44\x95\x64\x8a\xb1\x79\x8f\xde\x12\x0b\xf7\x61\x3e\x17\x17\xbb\x8c\x05\x00\x61\xce\x7b\x43\x9e\x7d\x9e\x58\x01\xf8\x3f\x52\x6e\xa3\xd8\x13\x9d\x6d\x80\xfe\x97\x58\x58\x8c\x4a\x76\x0f\x01\xa4\x56\xc2\xad\xa7\xf2\xbb\x1e\xd2\x88\x42\x24\x70\xe4\x1e\xb9\xe0\x4c\x84\x63\xbd\x3a\xf6\x38\xa3\xfe\x95\x47\x21\xcd\x00\xfa\x8b\xe5\x3e\xa3\xb9\xa2\xa1\x72\x59\x08\x87\xca\xb6\xd8\x59\xa5\x74\xab\x88\x67\x86\x6e\xe9\x4c\x1a\x8e\x5f\xd1\x38\x10\x7e\x87\x09\x88\xf4\x4f\x3f\x3f\x04\xee\x92\xb8\xa4\xc2\x36\x6f\xac\x5e\xe2\x81\x39\x92\x9f\x0e\x92\x76\x8a\x9e\x8f\x32\x52\xe1\x8c\x89\xaf\x4b\x0a\x59\x5c\x73\x07\x22\x37\xe7\x66\xd4\xa5\x3e\xb2\x69\x13\x5c\x17\xea\xd3\x5f\x7f\x51\xdd\xf2\x2a\xf1\x2a\xfc\xd2\xfd\x7e\x86\xee\x6d\x22\xb0\xab\x5c\x8b\xfd\xd8\x7d\xc3\x20\x9d\xcd\x13\x60\xf1\x7c\xb8\x5e\x48\x6d\xdf\xcc\x5d\xb7\x99\xce\x8d\x8c\xfe\x6d\x84\x0a\x34\x2e\x0d\x6c\xcc\x38\xb2\xaf\x67\x20\xff\x5a\x17\x20\x8a\x53\x33\xa0\x42\x84\xb0\xf0\x09\x60\xdb\xe8\xa0\x46\x33\xe3\x9d\xf0\xfc\x1d\x89\xd0\x97\x90\xcb\xe2\xc1\xf1\xfa\xd1\x1a\x0e\xbf\x5c\x26\xe9\x3c\xfe\x93\xa3\xce\x6f\x24\x53\xdc\x80\xd4\x89\x04\x51\x19\x77\x9c\xd3\xa2\x81\x1d\x86\x6e\xd2\xd6\x5d\xf5\xc0\x85\x60\x1a\xe1\x09\xff\x13\x49\x67\xb8\xfc\x80\x36\xe3\x43\x1e\xb2\x50\xdc\x11\x41\xac\xcf\xff\xeb\xe6\x00\x40\x07\x7b\xc5\xae\x62\x4f\x3f\xd4\x99\x20\x65\xd9\x96\xe5\x87\x9d\x54\x3b\x3a\x3a\xc1\x8a\x5f\xb2\x03\x1c\x21\xf2\x0b\x94\x16\xac\x10\x51\x18\xfc\xaa\x26\x0a\x80\x9a\x82\xf7\x7d\x0c\xe8\x5b\xf9\x0e\x0d\x3c\x7e\x1b\xa2\xf5\xfb\xa1\xf8\x38\xf5\x10\xe3\xf3\xdd\xc1\xb5\x56\xda\x0d\x0d\x52\x98\xc2\x91\x3d\xc3\x20\x5b\x4a\x5a\x88\xe6\x26\xbf\xa7\x82\xb2\x89\x7c\x22\x68\xe1\x1f\x7a\x39\x8b\xe2\x0d\x4a\x95\x33\xb3\x86\x26\x2a\xbc\x80\x44\xbf\x4c\x84\xbe\x78\xbc\xc3\xa8\x4b\xe2\xe8\xb6\x71\x8a\xaa\x86\x14\xe6\x22\x7a\x68\xcb\x10\xb8\x79\x13\xb5\x77\x15\x1c\xe6\x99\x09\x17\xf9\x83\x13\x10\xbf\x1a\x97\x42\x1c\xc6\x20\x7e\xfc\xbb\xe0\x54\x4a\x1c\xbe\x48\x69\x2b\x8f\x69\x65\xbc\x4d\x59\xc0\x93\x7d\xd2\x2d\xff\xef\x08\xb0\xfa\x42\x21\x23\x26\x20\x57\x18\x2b\x66\xab\x6a\x2a\xc0\x0e\xae\x8b\x46\x54\xbb\x14\x15\x09\x0d\x58\x9e\xa0\x95\x06\x72\x93\xba\x2f\xf7\x32\x40\x76\xf9\x2f\xf5\xb5\xdd\x57\xc7\x82\x5f\x1f\x67\x67\xe2\xba\xd8\x22\x02\xe2\x95\xfb\xde\xd9\x02\x75\x3a\xad\x63\xea\x0c\x0e\x77\xd5\xf4\x8b\x84\xa3\x62\xaa\xd6\xf5\xe5\x2e\xb1\x73\xab\xf9\x4d\xd3\xa6\x0e\xad\x48\x5d\x94\xdc\x57\xde\x00\x5e\x41\xa8\x01\x4e\xe4\xec\x6d\x92\x1c\x22\xed\x30\x07\x72\x17\x6f\x6e\xd7\x12\xbd\x97\x0c\xa7\xbf\xe6\x48\xc0\x37\x46\x96\x5f\xec\x89\xee\x3d\x0b\x1c\xa0\x94\x5d\xf2\x88\xb6\x6c\x0b\x03\xb9\xf1\x91\x41\xee\x32\x1d\x87\x56\xc3\x32\x45\x1a\xc5\xb3\xd4\xf1\xee\x16\x65\x71\x7c\xb0\xd6\x9f\xad\x0d\xa7\x71\xdc\x2c\xc5\x6d\x94\x6c\x49\xe8\x24\x15\xf1\x91\x5f\xb3\x9b\x7d\x24\xd1\xc5\x59\xdb\xa6\x2d\x53\xa9\x23\xb9\x86\x3f\x7f\x1f\xf4\x69\xa1\xc3\x3f\xfc\x9b\x9b\x34\xb2\x03\xe5\x62\x04\x29\xd5\xfa\x37\xcf\x29\xc8\x57\x23\xbe\xc0\x1f\x99\xa4\xb5\xf8\x41\x9a\xf2\x61\x29\xfc\x7d\x4d\x1e\xa0\x81\xfc\x64\x39\x97\x1b\x54\x56\x63\xdf\x09\x71\x14\x8e\xbe\xf3\xd8\x10\x99\x81\x02\xcc\xea\xd8\xe3\x0d\xee\x35\x1f\x5c\xae\x25\xef\x7a\x1c\xe8\x03\xea\x09\x83\xc5\x24\xc9\x7f\xf1\x74\xf6\x57\x55\x89\x95\xa0\x3b\x8c\xd5\xe7\x00\x58\x34\x2a\xc5\x05\x0a\x14\x82\x7e\x19\xe2\x9f\x12\x2d\xc5\xb5\x2b\xe1\xec\x30\xbe\x70\xaa\xa0\xa8\x69\x41\x17\xf9\x36\x72\xd3\xc1\xc5\x95\xfd\x2a\x1e\x74\xce\x02\xbe\x1a\xd1\xab\xaf\xe9\x28\x13\xc4\x52\xcd\x42\x63\xf7\x10\x5d\x12\x97\x78\x92\x00\xae\x32\xc7\xed\x9b\x55\xbf\x1f\xff\x64\x0e\xbd\xe9\x3e\x7c\x85\x16\xca\xc3\x38\xb0\xa5\x34\x30\xa5\x7b\xfa\xf6\x36\x1d\x69\xd6\x90\x68\x94\x68\xda\x69\xc0\x2d\xed\x08\x3a\x5a\xee\xec\x1b\x67\xa9\x11\x46\xa3\x45\xea\xc8\xb8\xf3\x1e\xdd\xd5\x26\xee\x28\x05\x3f\xf2\xbf\x5e\x6b\x03\x10\xc5\xf8\xf1\x7e\x78\xfb\x99\x56\x99\xc2\x98\xe4\xac\x35\x72\x14\x5f\xb2\x42\x90\x46\x72\x6b\x4e\xe8\xb8\xc4\x3a\xf6\x42\x9c\x28\x9c\xfc\x6e\x83\x3a\xd8\xa6\x83\x19\x2f\xa3\xba\x66\xeb\x5f\xd8\x4f\x84\xd8\xbf\x77\x3a\x5d\xb8\x13\x2f\xe1\x04\xe4\x1f\x7c\x55\xcd\x37\xb0\x5b\x73\x68\x13\xf3\x5a\xa3\x70\xef\x2a\xdd\x37\x15\x59\xc9\xb3\xfb\xf4\x5b\xa3\xc1\xf7\x8b\x3b\x95\x56\xa7\xa6\xfb\xd4\x8c\xd7\xc2\xa6\xc3\xd5\x98\xf5\x0a\x7b\xcc\x23\x19\x44\x86\x67\x55\x39\x6a\xee\xf6\xad\x50\xb2\x83\x5a\x7e\x10\x96\xb9\x79\xcd\x76\x6d\x63\x53\x4b\x67\x23\x49\x65\x37\xe2\x41\x6d\x28\xc5\xad\xeb\x45\x47\xf0\x74\x24\xd6\x62\x4b\x91\x13\xdf\x27\x88\x15\x7c\x04\xcc\x3d\x4d\x1b\x5b\xa1\x68\x32\x0d\x43\x53\xc4\x94\x26\x68\x02\x6b\xf1\xab\x2d\xc0\x41\x95\x70\x2e\x67\xe1\xf2\xdb\x40\xb4\xc1\x44\x54\x3a\x57\x08\xab\xe9\xb8\xa8\x98\xae\x27\x95\x8b\x1e\xd6\xa6\x72\xa8\x4e\x59\x4a\x3d\xca\x3f\xa6\x76\xe2\x2c\x8c\x1f\xfd\xcd\x9a\x94\x8c\xc5\x50\xa3\x84\xcc\x6a\x1a\xbc\x72\xb7\x6b\xc9\xd0\xe2\x5a\x64\x22\x5e\x89\x8e\x7a\xcc\x08\xe9\x5d\x86\xc1\x10\x27\xff\xcb\x19\x29\xb2\xc8\xef\x30\xd3\x32\xf7\xb9\x4b\xb4\x3c\xe1\xa0\xa6\x4f\x90\xd8\xd2\xc6\x81\x7e\x7a\xdf\x45\xb0\x61\x9e\xbf\x7c\x72\x8f\xca\xfc\x7f\x3b\xfc\x42\x2d\x9c\x95\x83\x24\x8f\xfd\xe2\xf9\xf3\x40\x2b\xc1\xb5\xa4\x5f\xd6\xf4\x1e\x5c\x14\x67\x15\x39\xff\xf9\xde\x3c\x60\x46\x1d\x57\x6f\x04\x8b\xb2\xef\xff\x1d\xd4\x7e\x49\x1c\xf3\x64\x47\x63\x95\xb4\xe7\x5b\x23\x8e\xa3\x94\x2f\xc9\x9b\x63\xc0\x10\x8e\xd5\x89\x89\x5b\x6b\xa0\xef\x3c\x91\xb1\x1b\xa9\x13\x0e\x27\x8c\x3a\x35\xe5\xa8\x38\xe7\xc8\xe9\x59\x4e\x17\x8a\x91\x04\x3f\xae\x81\x78\x6a\xd0\xc5\x60\x26\xe4\xd6\x90\x47\x32\xc2\xf4\xb3\x6f\x50\x35\x10\x77\xed\x86\xb8\x9a\xcf\xac\x69\xa1\x05\x63\xb7\xe4\x34\x25\x99\xec\xb3\x0c\x98\xf4\x10\xc7\xe4\x91\xe2\x59\x35\xb4\xc8\xf8\x62\xe4\x3a\x76\x48\x50\xf6\xb4\x0e\x81\xce\xba\xe2\x55\x8d\x5e\x8b\xcf\xa0\xdf\x9c\xbf\xe2\x54\x52\xce\x0b\xb2\x3c\x6f\x29\x6e\x58\xd9\x96\x7e\x62\x1a\xc6\x01\xe7\x9c\x6b\x45\xd1\x51\x0e\x3d\x4b\x90\x2f\x4f\x1c\x03\x96\x08\x98\xb9\xe2\x7e\xe4\xec\x89\x6d\xb0\xa7\xe4\xaa\x83\xcf\xa6\x03\x01\x5c\xe2\xb3\xca\xab\xde\xd1\x52\x70\x83\x04\xfd\xa2\x2f\x91\x60\x95\x1b\x97\x5c\x1f\xad\xde\xaa\xc4\x1d\xe3\x8f\xe7\xba\x84\x1f\x70\xb9\x50\x39\xef\x79\xd5\x20\x70\xcf\xc4\x06\x8f\x1f\xfc\xfc\x1f\x5d\x00\xfd\xe9\x24\xe1\xa2\x70\xb9\x56\x94\x70\x13\xd0\xd9\x20\x76\x9c\x18\x37\x97\xcf\x77\xd3\x0b\x70\x4d\x39\xf4\x78\x61\x3a\x86\xff\xf9\x18\x14\x8c\x99\xda\xd7\x5d\xb2\xf0\x54\xab\x6b\xce\x64\x35\xc3\xcb\x6a\xdd\xf5\x89\x6e\xaf\x12\x3a\xe5\xe4\xea\xad\xd7\x36\x13\xd8\xad\x11\x71\x86\xa2\x2a\x1b\x9c\x9a\xee\x5d\x5d\xec\x89\x0a\x27\x21\x57\xbb\xe4\xe3\xd5\xa1\xe0\xdb\xc8\x3b\x5a\xd4\xe6\xdc\xdc\xb6\x5d\x10\xad\xf9\x81\x8d\xfe\xfd\x25\x6d\xfb\xc0\xa8\xd7\xa7\x10\x8c\xb7\x75\x89\x88\x41\xe1\xd8\xb7\xb0\x6c\x34\xe0\xf5\x0a\xcf\x3c\xde\xf5\xff\xf9\x25\xdd\xd3\xb4\x56\x74\x51\x35\x15\x09\x35\x0e\xad\x18\xae\xe6\xfa\x20\xe5\x19\xdb\x0f\xe9\x48\x4a\x33\xe4\xe0\x36\xc1\x42\x9d\xb9\x5b\x15\x36\x2e\x12\x2b\x3b\x55\xd8\x9c\xf5\xc4\xc5\xda\x7d\x74\xa9\x57\x51\x70\x92\xd3\x5d\x92\x22\x44\x43\xc7\x2a\x0a\xda\xeb\x59\xf3\x74\x7e\x49\x55\xba\x7e\x19\xe1\x73\xa3\xb5\x6f\xc1\x9a\xfc\xb4\x99\x32\x38\x46\x5f\x02\xce\x14\xbe\x8b\xbd\x30\x7e\x28\xc6\x03\x12\x04\xe9\x48\x29\x8c\x1b\x46\x2a\x7d\xf0\x8a\xc2\x4c\x45\xdf\xbd\x43\x88\x36\xde\x72\x26\x46\x6a\xae\xe3\x45\xf5\x6c\x2b\x94\x35\x91\x69\x73\xef\xbb\x7f\x68\x4f\x85\x3d\x9c\xd6\x41\x5a\xee\x99\x7e\x6d\x3e\x65\xca\x08\x93\x96\x5d\x86\x04\x17\xce\x67\xc4\x37\xa9\xa3\xc6\x26\xd1\x47\xb6\xaa\xb8\x63\x0a\x78\x64\xfa\x77\x7f\x7a\x74\x9c\x5e\x57\x04\xbe\xd8\x6f\x65\xf3\x7e\xe9\x98\x0a\xea\x65\x2c\x70\x49\x53\xf6\x80\x81\x0f\x45\xd2\xe5\xbe\x4b\x2b\x0e\x89\x53\x4f\x2c\x01\x06\x8c\x73\xfb\xb2\x54\xfb\x0e\x29\x2f\x7f\xfb\x6e\x1d\x1d\x8e\xdc\x34\xf3\x9d\x7a\xe7\x12\xad\xe5\xa8\x51\x21\xb4\x9d\xfc\xd8\xab\x26\xea\x8e\x60\x1c\x1b\x44\x99\xac\xc5\x8c\xe2\x06\x81\x20\xbf\x49\x78\xee\xb7\xfa\xed\x1f\x4e\x2f\x5e\xf7\xac\xf8\x6b\x0c\xbe\x01\xd2\x76\x3c\x22\x25\xd6\xe7\x1d\x50\xc0\x7f\x01\x52\x6f\x4d\x2b\x1f\x3f\x79\x26\xe8\x8b\x44\xca\x3c\xbe\x40\x04\x4f\x0f\x23\x09\x57\xd9\xe8\xa9\x3a\xdb\xc6\xa8\xde\x6c\x60\xa9\xa4\x5c\xf8\x7c\x41\xfc\xc7\xdc\x2f\x3f\xbe\x28\x63\xf6\x65\xaf\xf3\xb4\xa9\x02\xb9\x2e\x96\xa1\xee\x81\xec\x73\xb2\x9b\x16\x8e\x4b\x24\x85\x1b\x7e\xfc\xe9\xec\xe3\x2f\x21\x21\x0c\x9c\x1b\xd6\x0f\xae\x7c\x8d\x06\x89\x98\x73\xae\x63\x9e\x5e\x0e\x33\x5a\x95\x3a\xd6\x23\xe7\x09\x52\xfc\xdc\x8e\x9b\xe3\x40\xfb\xd6\x16\xd0\xc6\x39\x50\x1c\x29\xf7\x5e\x1b\xc0\x3b\x11\xa7\xc2\x88\x2b\x28\x8a\x8f\x2f\x1e\x06\xa9\xf9\x0d\x61\xa8\x72\xec\xb4\x84\xc0\x75\x94\x3a\x08\xcf\x30\x3f\xd3\x16\xc7\x8c\xfa\xfe\x64\xc0\x32\xcd\xff\xe3\x41\xf5\x1b\x88\x9b\x10\x64\xe3\xc3\x73\x78\x08\x20\xab\xd4\x85\x7c\x91\x7d\x0f\xd8\x4f\xd3\x20\x51\xf5\xc9\xad\x9b\x2d\x0d\x61\x1b\xc4\xb3\x04\x8e\x38\x3f\xf5\x0e\xa0\xff\x43\xfc\x1a\xf7\x07\xcb\x7f\x74\xef\x18\xc0\x67\x11\xf8\x9d\x96\x53\x35\x7c\x8c\x36\x33\x26\x55\x46\x82\x34\xd0\x0c\x18\x46\x4d\xaf\x70\x1a\x89\xac\x49\xfe\xcf\x4f\xa8\xbc\xd5\xd5\x3d\x65\xda\x0c\xae\xb1\xb9\x76\xf0\xf9\x60\xe0\x11\x04\x36\x6e\xf0\x5c\x7b\x78\x6f\xf6\x27\xc5\x4d\x55\x47\x42\x54\xda\xae\xcf\x04\x26\x20\x57\xd4\xba\x67\xcf\x50\xa3\x85\xe9\xd0\x3b\xd1\x78\x77\xb1\xae\x4d\x6f\x65\x8c\xa9\xf2\x95\xed\x17\xc1\xab\xc0\x68\x8d\x91\xd4\x09\xc1\x40\x00\x37\xc0\x45\xbc\x5c\xea\xf1\x61\xcf\xa6\x47\xe5\x05\xa0\x25\x6a\xf1\xc9\xfd\xdd\xa5\x2c\xfe\x76\x8a\x80\x3a\x5c\xfa\xe6\x78\xbd\x46\xe7\x3e\xf4\xad\xc1\xc9\x78\x06\x70\x66\x11\xc3\x28\xc9\x0c\x77\x3e\xa0\x19\xac\x75\x4d\x25\xc2\x06\xf0\x73\x51\xe2\xfc\xeb\xfb\x98\x09\xde\xfd\x4f\x76\xa8\x38\x19\x5a\x61\x85\xd6\x81\xf8\xfa\x06\x75\x8a\xba\x66\x76\x08\xbd\xd3\x71\x8f\xe8\xc1\xac\xb7\x97\x8f\x21\x00\x83\xb0\x42\x1b\x16\x97\x18\xfc\xda\xeb\x3a\xcb\x95\xab\x71\x8a\x61\xc6\xc8\x11\x4a\x38\xa1\x86\xbc\xc0\x76\x3d\x5a\x43\x10\xe4\xfe\xa3\x9d\x7a\xc1\xed\x4b\x31\xc0\x81\xfc\x33\x9a\x94\x66\x99\x51\x57\xb4\x46\x7f\x8a\x40\x05\x46\xe2\xe2\xed\xfc\x45\x1a\x9f\x2e\x21\x2a\x4b\x85\x3c\x63\x5e\xb7\x7a\xad\xbe\xcd\xd5\xec\xc0\x4b\xff\xf8\x35\x60\xb0\x89\xc5\x2a\xba\xd8\x13\x7d\x68\xa7\x2a\xb7\x5d\xea\x09\xaf\x3d\xad\x23\x6a\x3c\x3f\x0c\x94\xf9\x35\xbe\x9e\xeb\x19\xc8\x3d\x3d\x52\x73\xfb\xc2\xbe\x84\x13\xbd\xa3\xb3\x44\x88\x2f\x1b\xf1\xbc\xf9\x5c\xc6\x81\x57\xd4\x9b\xc6\xa0\xe1\xda\x77\xb3\x5c\xc2\xe0\x0e\xe7\xba\xf5\xe7\x2a\x6e\x2f\xe7\x17\x7c\xf4\x80\x26\x7d\x4f\xc3\x80\xac\x0e\x13\xbc\x83\xf1\xb3\x31\xda\xea\xba\x8e\xbd\x20\x4c\x6d\x16\x5f\x79\x3d\x5b\xbc\x96\x7a\x6b\x67\x22\x4d\x7f\xbd\x0b\xaa\xfa\x38\xa1\x59\xe5\x07\xff\x67\x0b\xa5\xd0\x03\x07\xa5\x43\x44\xfa\xd9\x43\x41\xb5\xef\x89\xfd\x4a\xee\x79\xcd\x94\xbf\x12\x22\x86\xbc\x00\xa7\x0a\xf4\xa3\x6b\x3a\x49\x00\xa0\x5c\x2f\x6b\xd9\xaa\x39\x0e\xaa\xf9\xd2\x00\xab\x70\xed\xe2\xec\x25\x44\x93\x39\x10\xaa\x30\xfa\x7d\x71\x51\xb0\x4b\x53\xdf\x3a\x67\xa4\x72\x90\x62\x00\x2d\x9e\x3f\xf6\x02\x00\x20\x51\x5a\xf5\x03\xb1\xb1\x34\x7e\xda\xa1\x95\x2f\x2c\xe0\xc5\xb6\x72\x93\xbc\xb8\x96\xbe\x9a\xb2\xc3\x79\x72\x23\xb7\x5e\x0c\xca\x96\x1a\x09\xa8\x93\x05\xe1\x1d\xd2\xa6\x57\xa5\xd0\xc7\xbe\xa8\x27\x06\xf2\x33\x5f\xd4\x95\xfd\xc2\x74\xd2\x9a\x7f\x62\xbc\xd6\xe1\x61\x24\xa1\x90\xd1\xdf\xec\x6e\x11\xb6\x4b\x3d\x8b\x2e\xd6\x14\xfe\x7d\xd4\x4c\xec\xdb\x7e\xf5\xb0\x1a\x6d\x10\xae\x4a\x9e\x98\x04\x7f\xbb\x57\x3e\xc0\x3e\x81\xb9\x2c\xf6\x44\xbd\xbb\x2e\x87\x19\x05\x31\x17\xc5\x37\xb0\x05\xee\x36\x7c\xc3\xf9\xf0\x56\x55\x28\x97\x76\x8f\xbe\x3d\x48\x3d\x2a\x4a\x8b\x3d\xd1\xb9\x9b\x24\xba\x18\x99\x55\xae\xae\xda\xbf\x41\x9b\xd1\x86\x49\x73\x9e\x3b\x31\x52\x54\xfc\xdc\x29\x45\x8a\x58\x0f\xe4\x56\x0f\x53\x83\xd1\x59\x5c\xb6\x6d\xc9\x51\xe9\xc1\xc2\x88\xcf\x67\xf1\x43\xbb\x12\x39\x44\x4a\xa5\x3a\xd0\xc4\x19\xa3\xb4\x6a\xa2\x62\x5b\xc8\x52\xf2\x23\x5f\x9f\x21\x07\xe0\xb3\xe2\x36\x34\x1a\xba\x4d\xdd\x5a\x3b\x29\x72\x8c\x05\x8f\xa8\x68\x69\xda\xb4\x26\x36\xec\xd2\xf2\x79\x19\x72\x91\x40\x2d\xa8\x50\x18\xea\x92\x9c\x66\x40\xea\x5c\x09\x88\xc7\x76\xe3\xce\x89\x5a\x38\xa4\xae\x5c\xb4\xb6\xed\xd1\x6e\x10\xf6\x70\x1d\x29\x06\x1c\x3b\x2b\x9b\x2f\x6a\x48\x0e\x43\x0b\x23\x4e\x42\xce\x14\xae\xfa\xc8\xb3\xe2\x7a\xf0\xe3\x2f\x8f\x6e\xe8\xd3\x42\x06\xd9\x56\x03\xc6\xb7\x9e\xd0\x3d\x9a\xe2\xce\x94\x52\x59\x79\x2d\x38\x05\xc8\xb4\xd4\x4f\x76\xf1\xc6\x17\xc0\xd6\x27\x14\x5e\xf8\x5c\x1c\x66\x87\x0e\x81\x0c\x18\x76\x71\xe2\xd3\x34\x60\x2c\xaa\xeb\x25\x45\x22\xa5\x16\x1d\xfa\x00\x48\xa7\xda\x04\x97\x75\x2c\xd8\x4c\xcd\x10\x99\x5b\x7f\x06\x4d\xc1\x97\x7e\xed\x1e\x0d\x87\xe3\x90\xaa\xb4\xe1\xf9\x81\x31\x44\x16\xca\x29\x11\x3c\xba\xef\x9d\xc4\x33\x9f\xd5\xe3\x43\xff\xe3\xa5\x43\x65\x0d\xe6\x59\x7e\xd1\xa2\x0d\xfe\x5c\xef\x5c\x30\x52\x99\x9d\xb4\x48\xdc\xe7\x86\x1f\x4a\x8f\xfa\xd5\x5d\x71\xce\x35\xb6\x9f\xd6\x58\x17\x88\x9b\xb0\x0a\xd1\xe3\xd9\xda\x98\xc3\xc2\xcc\xa5\x41\x90\xd9\xa3\x47\xbf\x5b\xa1\xa9\x40\x7a\x0e\x46\xbe\x9d\xce\xbd\x5f\xdf\x07\xb6\xd2\xee\xf4\x8e\x99\x9d\xdc\x8c\xf4\x64\xbb\x1a\x31\x54\xb9\x75\xaf\xca\x8a\x56\x1b\xac\x3f\x4c\x5b\x28\x20\x0f\x14\xee\x3d\x9a\xfd\xb0\xab\x43\xe4\x28\x77\xae\x7f\xdc\x0f\x68\x26\x44\x24\x94\x97\x97\xa4\xa1\x15\xd7\x01\x0a\xca\xf8\xe3\xe9\x16\xc8\xa8\x97\x24\xa9\x6d\x8f\x01\x81\x1c\x44\x1c\x69\x74\xfb\xea\x79\x40\x68\x82\xc4\x51\xea\xff\xcd\x01\x4e\x9f\x5e\x85\x78\x58\xc2\x54\x7e\x75\x4c\x8c\xaa\xe7\x39\x88\x80\x05\x6f\xae\xfd\x60\xf6\xb4\x95\x43\xe6\x91\x20\x64\x38\x11\xe7\xbb\x78\x83\xaa\x99\x3c\xdc\x70\x9a\x8a\xba\x3f\x90\xa7\x8b\x41\xe3\xc9\xfd\x5e\x51\x90\xe0\xd4\xa7\xf6\xa9\x66\x81\x96\x33\x81\xfd\xee\x87\x01\x08\x54\x2c\xe0\xfb\x7a\x41\xd9\x51\x63\x48\x6e\x6c\x0b\xce\xab\xc0\x2b\x9c\xc4\x89\x99\x77\x15\xb3\xf7\x48\xbf\x61\x86\x2d\x52\x4a\x68\x44\xb9\x7b\x5e\x10\x47\x12\x87\x8c\xf2\x80\x7e\x62\x7c\xba\x0a\xb0\x08\xd5\x6f\x43\x79\x86\xfa\xa5\x55\xe4\xb8\xcd\x2a\x0f\xbf\xdf\x39\xa1\xbb\xaa\xe3\xf8\xfa\xf1\x11\xe0\xd9\xab\x34\x6a\x08\x71\x1c\xa9\x29\x3e\x22\xfd\x55\x4d\xaf\x15\x15\x6d\x2f\x1f\x0e\x5a\x69\xc7\xe1\x3f\x95\x6f\x61\x76\x9c\x97\x20\x2a\x57\xc8\x47\xb7\xb6\x2b\xbd\x14\x25\xae\x1b\x44\x9f\x06\x7e\x42\x5e\xa5\x4a\x33\xec\xd8\xdc\x34\xa0\x23\x9c\x98\x74\x16\x7b\xa2\xae\xf1\x83\x93\x76\x8f\x70\x78\xf3\x5f\x96\xaa\xf0\xcc\x3d\xa8\xe3\x22\xec\x43\x6b\x2e\x13\xef\x28\x99\x17\xfa\xa4\xd9\xa2\x22\xb4\x7f\xc7\x30\x10\xc3\x42\x3e\x85\xef\x19\x30\xec\x07\x81\x53\x1a\xc9\x52\x76\xef\xdf\x74\x1e\xd8\x69\xba\x9c\x40\x31\x7c\x08\x80\xaa\x85\x5c\xfe\xcb\x59\x33\x39\xfd\xec\xa5\x90\x61\x14\x0a\x9c\x41\x10\x32\x0f\x73\xb7\x3f\x8e\xfe\xf4\x70\x28\x90\x59\x7f\x58\x0a\x97\x60\x0e\x45\x82\xbe\x5d\x92\x36\x2f\xbc\x91\x8e\x03\xc5\x76\x9d\xfc\xe9\xe2\x86\x2d\x05\x3d\xa2\x45\x2f\xa8\x60\x1f\xd6\x6c\xee\x01\xc0\x8f\xdb\x85\xbb\x75\xc3\x78\xaf\x2a\xb7\x73\xd1\xb8\x48\x17\x6a\x29\x05\x4e\xd2\xf6\x17\x3e\xa4\x29\x6b\xc6\x4f\x97\x72\x08\x0e\x4f\x02\xe1\x0e\xcd\x3e\xa7\xe2\x51\x96\x6a\x38\x15\x46\xef\x57\x2b\xab\x96\xc2\x7a\x20\xdf\x37\x04\x08\x0f\x95\x42\xcf\x42\x52\x93\x27\xdf\x76\x83\x56\xb1\xd8\x88\xc9\x8a\x2f\xf7\xd8\xa3\x2d\xb6\xd1\x2c\xc0\x2c\x69\x2a\x9e\x5b\xd0\xae\xf5\x7f\xc8\x91\xd5\xf7\xcf\x16\xab\xe7\x53\xe2\x3a\x44\x82\x7b\x9c\x3f\x30\x2c\x9d\xee\xce\x28\xf2\xa8\x79\xee\x13\xc0\x1e\x03\x5b\xd2\x2b\x8f\x33\x7b\xdf\x10\xf5\xc4\x5c\xc7\x29\x2e\xe3\x2a\x44\x03\xb9\x11\x9a\xc7\x45\xa9\x59\x43\x7e\xba\x6a\xcd\x6f\x7c\x51\x87\x7b\xba\xb4\x8e\xe4\x46\x20\xf7\x4e\xbb\xa2\xf3\xc1\x2d\x50\xae\xb0\x28\xcd\x31\xe5\xd6\x8d\x56\xc1\x06\x1b\x52\x07\x31\x06\x36\xa4\xb9\x0d\xcb\x2f\xd0\xea\x56\x8c\x44\x36\x1c\x7e\x9a\x6f\x39\x8b\x13\x97\xa7\xae\x6f\x57\xb6\x0c\xcd\xfe\xd8\x07\x14\xb2\x1d\x64\x72\x1f\xfd\xfc\x93\x83\x55\x58\x64\x4d\x54\x02\x4a\xff\x03\xf9\xe3\x83\x40\x52\x08\x5d\xde\x22\xd5\xd7\x81\x9e\x9f\xf2\x79\x2c\x9f\x56\xfc\xeb\x1b\xad\xc6\xdf\xa2\x97\xe3\x1f\x31\x0f\x7e\x7b\x2d\x09\x99\xc6\x15\x33\xa4\xcc\x3f\xa9\x13\xb3\xe8\x12\x09\x27\xc9\x47\xb7\xb7\xda\x51\x51\x9f\xd4\xe5\x72\x83\x9e\xa5\x3b\xed\x39\x0e\x6d\xa4\x78\xa4\x0f\xd7\x2f\x48\x6a\xdf\x90\xb9\x34\xf4\x12\x2b\xea\xfc\x89\x7b\x54\xf4\xa9\x27\xdc\x9c\x9e\xe8\x15\x06\xb4\xec\xcc\xb8\xe0\x37\xbe\xa3\x44\x6b\xb1\xa5\x50\x0e\xd1\x7f\xdf\x77\xae\x0c\x13\x65\x81\xa1\xce\xbd\xb1\x42\xc4\xf7\x85\x73\x3f\x39\x77\xe9\xf2\xb9\x49\xb9\xd9\xbf\x49\x2d\x49\xa6\xcd\x9a\xc5\x0d\x14\x73\xbf\x3e\xa9\x1b\x03\x79\xc4\xb7\x85\x05\x58\xce\x38\xa6\x43\xc9\x7d\xea\x84\xc2\x3d\x5d\xd4\x53\xb9\xe3\x63\xb2\x57\xa8\x37\xb4\x9a\x89\x3c\xda\x70\xa6\x82\xd8\xac\xa9\x1d\x33\xe3\xef\x3b\x69\xb8\xc2\x9c\xd4\xf8\x6a\xf7\x4c\x08\x5e\xe3\x19\x4d\x13\x97\x30\xb4\x9a\x28\x57\x21\xe3\xd0\x49\xb0\x9b\x42\xbe\x8f\x2a\x02\x89\x7e\x87\x07\x14\x57\xdd\x12\xa9\x84\x22\xb9\x15\x8c\x2e\xd5\xb7\xc7\x71\x89\x85\xb5\xc0\x6c\x26\xeb\xe0\x35\xdb\xd4\x95\x65\xd8\xa4\x75\x89\x0f\x36\x36\xde\x31\x02\x34\xf4\x5e\x40\xe2\xf3\x23\x81\x39\x85\x8b\x3f\x48\x6f\x0e\x71\xcb\x2d\x43\x69\xbc\x44\xe3\x5d\x93\x52\x89\x7a\xa2\x24\xac\x0f\xd6\xd6\xcc\xa1\x5b\xf3\x13\x0f\xd4\x77\x1e\x05\x62\xec\xc4\x13\x6f\x35\x3f\x56\x0b\x56\x0d\x9b\x94\xcb\xb2\xc4\x39\x77\xcf\x45\xfa\xe9\x64\xd8\xf7\xe5\x36\xf5\xe5\x71\x3a\x2d\xdb\xa2\x0d\x57\xf8\x2c\x0a\x3f\xb7\xfe\x6c\x9f\x5e\xb6\x64\xd5\x9f\x7d\x29\xbf\x65\xa0\x60\x21\xbc\x56\x51\x4a\xeb\xb7\xcd\x17\x39\xc4\xa3\x75\x3e\x02\x34\x9e\x9f\xaf\xe1\x5a\xa8\xc7\xcd\x1e\xe2\xc3\xc3\xcb\x90\x4b\x35\xae\x3c\x17\xf4\xf5\x4d\xca\xd2\x5a\xf3\x2f\x9a\x24\xa8\x94\xfc\x95\xf8\xc8\x0b\x75\xe5\x63\x1a\x5f\x1e\x35\xab\xc9\x9d\x38\x21\x54\x49\xae\x4f\x7a\x4b\x98\x61\xdb\xda\xd2\xeb\xc4\xa8\x2a\x25\xa3\xdf\xcd\xd7\x51\x48\xc8\xe3\x1a\x22\x62\x58\x68\xdf\x0e\xb6\xdf\x1c\xff\x15\xfd\xe7\x4e\x3d\x8b\xd0\x9a\xd8\x19\x46\xcf\x4c\x02\x76\x56\x34\xf4\x4c\x01\xe2\x26\x2f\x69\xba\x3e\xdc\x40\x85\x4f\xde\xe6\x8f\x07\x3a\x32\x02\xd2\x58\xec\x89\x6e\x7c\x44\xf9\x6a\x93\x20\x10\xe8\xd3\x42\x41\x5b\xd3\xfb\xd4\xa9\x27\xfa\xd8\xc6\xe4\xf7\xb3\x50\x62\x1f\x23\xde\x8c\xab\x77\x16\x7d\xe3\x48\x16\x8a\x52\x47\x93\x5b\xf0\x20\xf9\xaf\x4e\x11\x01\xf1\x56\xd4\xcc\x50\xdf\x8f\x02\xfd\x1e\x0f\xf5\x93\x24\xca\x7c\xe3\x6d\x95\xd2\x02\x46\xea\x04\x25\xbd\xd9\x9e\x42\xaa\x50\x82\xac\x2c\x41\xf7\xf4\x16\x4d\x37\x9d\x36\x3c\x5b\xca\xa5\x45\xbf\x87\xca\xd2\x33\x3a\x67\x60\xc1\x12\x30\x1f\x55\x10\x3d\x5a\x8d\xff\x64\xce\xa9\x6c\x7f\x63\x93\x8a\x2d\x03\x1a\x51\xee\x46\x2f\xd8\x40\x89\x91\xd4\x89\x25\x45\x6c\xf2\x3d\x9a\x25\x9c\x52\x1a\x10\xbf\xb0\xfc\xee\x05\x2d\xfb\x70\x7e\x00\xee\xef\x1c\x75\x86\xe0\xaf\x3c\x2c\x8c\x3f\xbe\xa9\xfb\xa7\x60\x54\x95\x79\xf9\xb6\xb1\xaa\xac\xc3\xac\x2e\xfe\x70\xc3\xab\x72\xb3\x81\x42\xb9\x68\x98\xfd\x5e\x5a\x3b\x84\x1c\x16\x99\xff\xf0\x30\x95\x39\x02\x8c\x4c\x5b\xa2\xef\x37\xac\x1b\x09\x68\x1a\x71\x23\x19\x42\x59\x8e\xca\xfd\x00\xd6\x96\xea\xaf\x0c\xdf\x98\xa2\x20\x02\x0e\x05\x88\x2b\xe9\x3b\x8f\x89\x3c\xb2\x14\x79\x15\xaa\x6c\x5b\x4f\xaf\x3d\xc3\xe4\x99\xcb\x78\x15\x7d\x37\xac\x70\x13\x1f\x59\x0a\xbd\x7d\xfb\xd0\xac\x8d\x16\x9f\xb5\xd5\x8e\x40\x67\x36\x13\x89\x0f\x11\x1d\x38\x5b\x85\x97\x4a\xe8\xbb\x50\xa9\xce\xf8\xd7\x2d\xc3\x92\x46\x29\x40\xc2\x9b\x3e\xbe\x02\x6d\x1b\xe1\xe0\xa1\x18\xd8\xa8\xc1\xb8\x58\xf2\xef\xde\x52\x4e\x00\x7c\xd7\x9a\x0d\x65\x6f\x6f\x1e\x07\xc1\x08\x2e\xf5\x84\x82\x62\x4b\x8b\xbd\xbb\x6f\xa8\x72\x7d\x4f\x27\xe7\x13\x56\xa8\xf6\x8c\x78\xc8\x34\x43\x86\x02\x01\x56\xfe\xe2\xed\x7f\xc5\x2d\x54\x4c\xc2\x36\xac\x4a\xdf\xa3\xd8\x59\x7d\xf4\x79\xf1\xc5\x56\x50\x06\xa2\x50\xf7\xfb\xf2\xd6\x69\xaa\xb4\x07\x35\xad\x83\x32\xf1\x90\x67\x92\xb8\x2e\x15\xf1\xa9\xad\x33\x2b\x3e\xe6\x17\x45\x3d\x59\xed\x56\xe8\x8b\x32\x66\x62\x62\xc2\x8a\x25\x24\xf7\x40\xaf\x74\x6a\x36\x1c\x88\x49\x6e\xc4\xdf\xef\x13\xb1\x67\x19\x97\xf7\x49\x01\xf1\xdb\xd5\xa5\xac\x86\x5e\x40\x19\xaf\xc5\x3e\x37\xe8\x22\xb0\x39\x2a\x61\x16\xc0\x97\xd8\xbb\x59\x1b\xa0\xd0\xd0\x8f\x1f\x0d\x8f\x66\xee\x5b\x5a\x0e\x5b\x1d\x22\x65\x24\x73\x00\x8c\xc1\xba\xae\xee\xe8\x8a\xcb\x67\xe3\xd7\x1a\xf7\xf1\x6a\x69\xfa\x28\xb2\xc7\x4b\x2f\x66\xdf\x84\x12\x93\xe5\xdf\xeb\x57\xef\x2b\x11\xac\x69\x7c\x61\x71\xd9\xc8\x33\x02\x8d\x93\x34\xba\x7c\xf9\x30\x59\xa8\x73\x4f\x3a\x39\xc5\xc8\xd9\xef\x82\xdd\xa0\xc9\x50\x4d\xde\xa9\xdc\x1f\xba\x55\x24\x44\x66\x00\x9e\x03\x1d\xa3\x76\x9a\x01\x0d\xb9\x73\x8d\x3c\x59\x77\x8f\x6c\x93\xbf\x84\x2f\x71\x8b\x3d\x91\x31\x7b\x74\x6b\x93\x22\x39\x34\xf2\x9b\xee\xde\x24\x91\x29\xdc\x61\x8f\x0a\xfd\x98\xef\x08\xb9\xb9\xe2\xd2\x9b\x74\x11\xe1\x68\xf9\x9e\xf4\x72\xb8\xb8\xd2\x52\xb8\xdc\xa4\x19\x1d\xf1\xda\x5c\x8a\x4a\xcf\x1d\xa2\x49\x30\x84\x6e\x29\xf9\x20\xd1\xa1\x39\x9a\x2e\x9e\x83\x9a\xc9\xd1\x8c\xd8\x53\x62\xf1\xbf\x92\x3a\x34\x68\x86\x55\x1b\xae\xcb\x0a\x85\x4d\xd0\x36\x99\x83\x89\xbe\x78\x4c\xcf\xef\x62\xa5\xef\x27\xf9\xfd\x07\x0f\xaa\x0a\xde\x45\x88\x91\x7a\xb1\x27\xfa\xf3\x7c\x91\xf4\x7b\x26\x2c\x0b\x1d\x87\xd4\x33\x32\x52\x17\xd9\x69\x98\xab\xd8\xe9\x6d\xfe\xe7\x19\x62\xd1\x30\xd7\x12\xab\x6c\x26\x04\x87\x07\xf2\xf7\x48\xc5\xc3\x92\x43\x4d\x3e\x08\xfa\xda\x12\x15\x85\x6b\xfc\xba\x5f\x04\xd2\x60\x60\x13\x16\x08\x29\x1c\xa3\xae\xca\x0b\xbf\x01\x41\xd7\xf3\xd6\x68\xf1\x01\xd1\x8c\x5a\xcf\x39\xa3\xb4\xae\x85\x58\xb8\x81\x1c\x99\x2e\x8c\x69\x9a\xd4\xb2\x49\x7c\x0f\x33\xaa\x51\xa6\xf2\x5d\x01\xc0\xaf\x77\x73\x69\x62\x00\x3a\x6c\x22\x4f\x5a\x6c\x19\xc7\xde\x06\x43\x74\xae\x18\xcf\x87\x0d\x57\xae\x85\x05\xb1\xed\xad\x0e\xa5\x55\xca\x0f\xc7\x6a\x39\x96\x86\xbe\x18\x77\xc1\x99\xca\xdd\xbb\xd4\x01\x07\x65\x5d\xfc\xc0\x3e\xd0\x20\x62\x65\x64\x26\x9b\xba\xc2\x87\xf6\xe9\x17\x30\xee\x89\x83\xc9\x0d\x51\xd2\xf8\xda\xb9\x8c\x1f\x8d\x0c\xab\xff\x73\x54\x30\x3b\xae\x37\xa9\x47\x5d\xd2\xb2\x63\xca\xef\x3b\x2e\x32\x2a\x17\xbf\xed\x28\xf6\x44\xb5\xad\x02\x10\xb2\x18\xb1\x3a\xae\x22\xb0\xc5\x33\x36\x1d\xd0\x16\xc2\xbe\x99\xec\x07\x0e\x6d\xd4\xbd\xc2\x69\x15\x7b\xa2\x5d\xca\x47\xef\x6a\xb3\x65\x8c\x92\x95\x9c\xb1\x2a\x52\x76\x90\xd3\x3b\xb9\x04\xc8\xd9\x20\x6e\xd8\xc8\xe2\xed\x62\xfc\x3b\x2e\x7d\x33\xfb\x3b\x68\x18\xf0\xc5\x37\x8f\x92\x1f\x56\x4e\xb6\x4d\x4f\x68\x08\x3f\x0f\xe4\x4d\x91\x67\x11\x0b\x99\xc2\xb2\xee\x47\x7b\xce\x07\x59\xaa\x9e\xd8\xaa\x15\x06\x5d\x0b\x6a\x58\xea\x73\xdf\xb0\xb9\x8e\x2a\x6e\x4a\x98\xe1\x7e\x5a\xf7\xab\x71\x71\x43\x5f\x52\x1f\x53\xe4\x48\x22\x58\xca\xbf\x3b\x08\x69\x22\x38\x15\x0f\x5e\x7a\x4a\x6c\x35\x6e\x20\x7c\xb0\xfd\xd9\xf1\x29\x74\x64\x0a\xff\x54\x93\x9e\xd0\xed\x66\xeb\xc9\x13\x2c\xac\xdc\x9c\xbd\x1c\xd8\xe5\x74\xfb\x94\x53\xf9\xc8\xc4\xec\x4a\xf9\xea\x59\x5c\xe9\x37\xfa\xdb\xad\x60\xc2\x16\xfa\x25\xc1\xda\xc9\xdd\xf7\xfe\x45\xfa\xdb\x8a\xeb\x29\xf9\xba\xae\xbc\x23\x7d\x94\x22\x7b\x15\x96\x0c\xd7\xe2\x97\x30\xbb\x11\xc1\x6d\xf2\xfd\x2a\x03\xa1\x7e\xcc\x48\xb1\x27\x7a\xed\x9d\x96\xc3\x8c\x2d\x59\xfb\x7c\xd8\x06\x53\x6f\xc8\x66\x02\x5b\x40\xc2\x18\x09\xa4\x42\xb8\x7b\x34\x1b\xe7\xad\x38\x12\x91\x52\xa8\x1c\x98\xbe\x7b\x83\xea\x9d\x8b\x7e\x8d\x7a\x3e\xbf\x54\xfa\x51\x1f\xb2\x12\xa8\x3b\xf2\x3c\xf9\xe7\x73\x04\xf7\xee\x66\x73\x3e\xf5\x90\x63\x4d\xc8\x3a\xce\x7e\x6b\xf1\xb9\xe9\xa7\x14\x47\x30\x7c\x12\x9c\xcd\xb0\x86\x99\x10\xc2\x1e\x30\x26\x2d\xc9\x4a\x7e\xdb\xb8\xbf\x44\x1d\x07\xd9\x52\x7a\x26\x9b\x48\xbc\xf9\xc0\x7d\x0b\x07\x52\x62\x70\xd4\x9b\x62\xb4\xa5\x14\xef\xa3\x7f\x7e\x40\x1f\xdf\x63\x94\xd4\xeb\x77\x46\x0a\x48\xe6\x02\x45\x53\xa3\xba\x5e\x3d\xe0\xb2\x83\x2a\x92\xa2\x9e\x3b\xb4\xe0\x5c\xa5\x15\x58\x2a\xf6\x44\x6f\x3f\x9a\xed\x73\x82\x06\x31\xb1\x40\x06\x39\x72\x58\x11\xfd\xcd\x56\x85\x5c\x62\xc8\xc1\x71\xeb\xa0\x3f\xd8\x67\x0e\x8a\xa2\xec\x66\xbe\x04\x50\xad\xe4\x7c\xe1\xbb\x52\x9c\x27\x4b\xbd\xac\xf8\x22\x50\xa6\x2d\x23\xc7\x17\x3d\xe3\xfa\x1d\x7a\x67\x2b\x9b\xb7\xb8\x32\xe9\x1a\x03\x81\xe0\xa1\x67\xa5\xe6\x34\x8f\x1f\xce\x06\xc8\xe9\x33\x8a\x35\x9a\x4a\x76\x15\x3a\x0f\xea\xba\xb4\xc4\x4b\x89\x52\xf9\x61\x2f\xa6\xe7\xa2\x03\xf1\xab\xf8\x6f\xb7\x6b\x1c\x3a\xe4\xf0\x65\x11\x1f\xba\xfe\xf7\xde\x74\xd7\x92\xe5\x6e\x2f\x58\xa3\x81\xd1\x18\x46\x72\x6b\x13\x45\xaf\x83\x9a\x87\x31\x5a\x41\x49\xcf\xfb\xfd\x25\xa2\xb0\xe1\x35\x01\xef\x5f\xf3\x2f\x8d\xd5\xdc\x23\x6c\x9c\x2e\x1b\x07\xf2\x97\x9f\x93\xfd\xae\x5c\xcd\x33\xd1\xe4\x89\x36\x76\xb4\xc8\x4a\x04\xc4\x0b\x85\xd5\x56\xf4\x7b\xb5\x03\x0e\x79\x7c\xcb\xfd\x00\x50\xce\x24\xf9\x86\xc7\xd3\xf5\xa3\x44\x8a\x5f\x4c\xca\x62\x50\x84\xdf\xd4\xbd\xde\x15\xa1\x4e\x3c\x98\xa7\xe6\x9f\x27\x4f\xb4\x4f\x99\xd4\x86\x5c\x3f\x3f\x6d\x13\xea\xd4\x4f\xa6\x54\xe3\x36\x6b\x22\x1b\x15\xec\x99\x62\x17\x92\xeb\x2d\x64\x19\x2f\x5c\x9a\xa6\xd5\x5b\xda\xf8\xf5\xe0\x0b\x00\x43\xc5\xc4\x9c\xe8\xc8\xa1\xc1\x23\x5e\x1a\xa1\x9d\x21\x65\x4d\x90\x2f\xdc\xd1\xc2\xd3\x08\x12\x41\xc4\x9f\x6c\x69\x11\x5f\x0d\x48\x92\xe2\xf2\x5f\xdf\xaf\xc9\x93\x51\xaf\xc6\x68\x39\x75\xde\xdf\x33\xee\x72\xd5\x3f\x87\x81\x69\x5f\xe5\xdb\xd8\x69\x91\xdc\x35\xf6\x1f\xd2\x8c\xbf\x67\xc9\x53\x5a\x78\x41\xc7\x10\xf8\xd5\x64\xac\x3e\xe6\x21\x95\x26\x85\x48\xd9\xff\x75\xab\x56\x2b\xc0\x6e\x8d\x32\xc4\x88\x20\xc6\x8d\x1d\x2f\xe3\x96\x65\x89\x13\x95\x9b\xa5\xb9\x47\x49\x77\x51\x39\x58\x33\xdc\xfe\x2c\x83\x26\xc0\x9e\x87\x7d\x1f\x63\xb9\x02\x55\x86\x12\x73\x5e\x1c\x0e\x20\x29\x26\x66\x09\x7d\xef\x6b\xc6\x50\x85\xe1\xb5\x93\x17\x7d\x78\xd7\x19\x0a\xdf\x64\x3f\x91\xff\xce\x2e\xe8\x5e\xee\x4a\x9b\xa7\x0d\x4f\xa8\xf4\x23\x6a\xeb\x19\x9e\x32\x9d\xb6\x80\x60\x6a\x2e\x57\x92\x8c\xf6\x5a\x8d\x61\x93\x24\xb2\x1b\xbf\x39\x0e\x44\xaf\x1d\x1a\xd8\x9c\xe5\xf5\x8f\x5a\x1e\xe9\x4a\x71\x6b\xc9\xd0\xb6\xe0\xbc\x05\xc4\xd5\x4d\x64\x61\x57\x68\xf5\xcf\x58\x09\x74\xe9\x29\x13\x38\x71\x38\x31\x3a\x5c\x6a\x91\x43\x2f\x85\xac\xd2\x3a\x36\xca\x3d\xd1\xaf\xe1\x96\xa8\x23\x09\x39\x93\xb5\x18\x56\x25\x66\x35\x1d\xcf\x44\xa7\x4e\x68\x2b\x42\x86\x6a\x22\x5f\x1b\x9f\x58\xa1\x0f\x89\x1c\x07\xa5\xd0\xd9\xdf\x6a\x18\x6a\x0b\xb9\x19\xa5\x9e\xf0\x5a\x35\xfd\xb6\x31\xe3\x9e\x2e\xd3\x9e\x12\x37\xb9\x97\x9a\x55\xdc\x14\x06\x19\xe6\x5e\xc5\x62\xe5\x39\xfe\xda\xd7\xc4\xc3\xa7\x61\x50\xa4\xe5\x62\x20\x56\xae\xff\x76\x1a\xe8\xd0\x9b\xa1\x53\x13\x81\x20\xbf\xa3\x2e\x27\x75\x71\xf3\x8d\x1d\x51\x2b\xe5\xda\x5f\x06\x7c\x0b\xdb\xb4\x71\x95\x9a\x36\xe1\x2d\x50\xda\xf2\xff\xcf\x14\x55\x95\x4d\x9b\xda\xc1\x2d\xf5\x72\x35\xe0\x43\xcd\x5f\x08\x37\xf9\xee\x19\xc8\x37\xb7\xb7\xc8\x4f\xb8\x62\xf8\x29\x9e\xe3\x65\x25\x8d\x37\x60\xda\x94\x3a\xa6\x4d\x1c\x8b\x61\x2f\x9d\x4c\x7d\x6c\x8d\x4e\xd1\x6d\x88\x40\x3e\x46\x3a\x3a\x75\x77\x71\x82\xea\x97\xb5\x59\xad\x1f\x50\xb3\x9a\x34\xa1\xbc\xdd\x7c\xb4\xad\x95\xa5\xca\x0b\xc0\xf7\xde\xca\xfe\x8a\x69\xb3\x66\x4d\x17\xff\xe4\xbf\x6c\xe0\x1f\xe6\x15\x1d\xc2\x0b\x5a\xe3\xd2\x87\x86\x41\x2d\x1f\xcc\x6a\x7c\x02\xf6\xd9\x77\x44\x11\xb3\xcc\x6b\x5a\x9c\x66\x9d\x4d\xce\x57\xee\x14\x4d\xdc\x27\xe3\x0b\x0d\xf9\x64\x47\x87\xe9\xdd\x2c\xf6\x64\x8d\x96\xbb\xb4\x5b\xdd\x4c\x93\x86\xcc\x8f\x3f\xb0\xb3\x4e\x4a\x28\x08\xab\xfc\x04\xd7\x95\x5f\xf1\x70\x5b\x72\x7a\xa8\xf8\xa8\x85\xe2\x07\x1a\x8e\x9e\x98\x55\x19\x64\xbf\xb6\x54\xbb\x00\x61\x49\xce\x68\x0a\xce\xcb\x4a\xf1\xb3\xc6\x05\x47\x1e\x7b\x4a\x81\xb9\xe2\x6a\x2b\x44\x16\x06\xed\x5c\x61\xf8\x07\x90\x02\xea\x87\x2c\x75\xb7\x31\x46\x1e\x56\xb2\x68\x90\xf0\x98\x3b\x1f\x18\x73\x3a\x94\xfa\xa2\x6a\x7f\xe5\x45\x6d\x51\xc5\x25\x6d\x53\xf3\xe7\xcb\xef\x01\xbf\x48\x89\x3c\x70\x85\x87\xa9\xc0\x54\x99\x53\x5d\x06\x8c\x1b\x25\xc3\xbd\x4c\x58\xdc\xa4\x0a\x87\x88\x1f\x3c\x5b\xcc\x3e\x14\xda\x0c\xfb\xe3\xf3\x29\x4d\xc7\x5b\x72\x5c\x61\xf0\x07\x43\x61\x25\x27\xb7\xb3\x67\x2f\x57\x45\x68\x7c\xb8\x93\x71\xeb\x91\xd1\x60\x95\xc3\xa8\x4f\xc2\x8c\x02\xe6\x3e\x89\xcc\xc2\x88\x89\xcf\xf3\xe5\xcd\x10\x67\x41\xad\x0c\x47\x7f\xc8\xfe\x64\xde\xc2\xf1\xa6\xf1\x7f\xff\xa7\x21\x67\xa0\xf0\x72\x04\xf9\xb9\x7b\x75\x19\x62\x8e\xa3\x4e\xc9\xae\x6b\x03\xcd\xf1\x03\x25\x8e\x1f\x64\x6b\xb6\x04\xad\x60\x86\x1c\xcd\xa1\x2c\xdf\x3c\x91\xed\xad\x4b\xd8\x29\xc7\x1d\x64\x47\xc6\xd2\xf6\xe7\xf7\xe9\x8a\x47\x71\x81\x88\x13\xf5\xd4\x3b\xf6\x65\x3c\x07\xb1\xc7\xa8\x58\x97\xcc\xda\xa3\x2f\xf3\xb0\xa0\x10\xa9\x3c\xf3\xa5\x9a\x86\x90\xc7\xc8\x5a\x1d\xca\xbd\x37\x5f\x9a\xb6\x6b\xa6\xde\x25\x4a\xab\x02\xfd\x77\x44\x73\x98\xf7\x03\xc2\xed\x0d\xfa\x8b\x3d\xd1\xea\xa7\x14\xf1\x85\xa8\xbb\x19\xfd\x61\x7d\xf6\xab\xf4\x52\xdb\xf3\x39\xe1\x8a\xc7\xd2\xee\xb7\x80\xf8\x17\x87\xe8\x0c\xe4\x4e\x6b\x50\x80\x80\x21\xcf\x2f\xa7\xfc\x81\xcb\xe6\x68\xa2\xb7\x0c\x55\x88\xa6\x88\x9d\xff\x3f\x8d\xe3\x59\x09\x3d\x2f\x1d\x34\xfe\x61\x89\x6e\x19\x26\x85\x25\x84\xea\x71\xd7\x2a\x60\x8b\x49\x2a\x36\x27\x96\xcb\x8a\xf5\xd6\x45\xd9\xec\xe8\x62\x87\x24\x4b\x97\x6c\xb0\x72\x5f\x87\x02\x70\x5c\x19\x92\x7f\xbb\x6f\x6d\xd2\xdf\x91\x13\x9a\x01\xc7\x2b\x24\x52\xa5\x5f\xb1\xd2\x7e\x3a\x0e\xcd\xd1\x55\x9a\xc8\x53\x09\x05\x81\x83\x7d\x41\x8c\x33\xbe\x35\x1e\x74\x60\x04\x59\x4d\x1e\xc9\x96\xee\xd1\xe5\x2e\x89\x07\xa8\x8d\xed\xf7\xc0\xe1\x4f\x1d\x33\x5f\x0e\x0e\xf2\x16\x1c\x28\x94\x91\x2b\x18\x81\xff\xd5\x97\x14\xc4\x6e\xe2\x70\x69\xfc\xef\x0b\xba\x6a\xac\xb2\x33\x2e\xac\x3d\x36\x0c\x72\x27\x6f\x5d\xc2\x5d\xa8\xce\xbd\x4f\x13\x03\x92\xdc\x66\x3f\xe3\xff\xf1\xa5\xd9\xd9\xef\x2b\xf1\xd4\xb2\x38\xf5\xf6\xe8\x32\xad\x4e\x5d\xed\x7e\x72\x77\x6a\xf4\x7f\xfe\x7f\xc4\xe0\xfc\x85\x27\xc4\x78\x72\x11\xa9\x86\xad\x3d\xf5\x9b\x25\xf5\x48\x9a\xa8\x4a\xeb\xd8\xab\xd2\x62\x4f\x54\x89\x34\x3d\x00\x5c\xe6\x16\xa7\x81\x2f\x3f\x50\x97\x02\xee\x5a\x28\x8e\x5e\x33\x16\x68\x9f\x1f\x5b\x04\xa5\xf9\xf8\x0b\xb6\xae\x6a\x12\x08\x3f\xad\x62\x4f\xf4\xea\xd3\x59\x0d\xf9\x1a\x0e\x18\x8d\x9b\x5e\xff\x4c\xb6\x15\xb9\x3b\x87\x0f\x05\x75\xba\x5b\x13\xe5\x4d\xd7\x63\xa0\xb3\x6f\xba\x35\x9b\x7a\x42\x62\x64\x96\x71\x51\x6b\x6c\x0b\x99\x80\x30\x1a\xf7\x3e\xa0\xce\x11\xf1\xea\xc8\x12\x99\xba\x1b\xb2\x2d\x58\x15\x07\x22\xc9\xfc\xad\x97\x8d\x23\xb8\x89\xb2\xba\xd3\x47\xcb\x3a\x0b\xca\x25\xa2\x96\xe3\xd5\x12\x90\x5c\x53\xfd\x2f\xaf\xf2\xcc\x83\x00\x7e\x8f\xc4\xda\x01\xa8\x8a\x2d\x4c\x47\x05\x1e\x05\xb2\x01\xf9\xcf\x3f\x31\x1c\xdc\xb7\xf8\xa3\xca\x63\x7a\xd3\x83\x4a\xfe\x2f\xc0\xc8\xd5\x41\x6e\x7b\x34\x0b\x43\x1b\x29\x19\xc7\xdc\xdb\x4a\xae\x95\xb4\xae\xcb\x73\x2f\x2b\xa9\x77\x81\x69\xe3\x97\xcb\xb4\xb4\x5d\x7b\x89\x9c\x61\xd7\x9e\xef\xdf\x22\xd5\xca\xe2\x18\x23\xe9\x4d\xb3\x5e\x56\x5f\x1e\x7b\xbd\xb4\x09\x6b\x84\xdc\x4f\x97\x8e\x55\x13\x3c\xe4\x57\x71\x50\x42\xad\x6d\x59\xee\x40\x77\x8b\xdb\x70\xdc\xdb\x60\x79\x0f\x0a\x73\xa5\xa3\x98\x98\x3a\x8a\xee\xf6\x7c\x5d\xa4\xd1\xa1\x5c\x1c\x54\xe2\xaf\x7a\x56\x80\x2a\x2a\x41\x71\xbf\xbb\x3f\x1d\xb5\x63\xe6\xa6\xac\xe9\x63\x6a\x9d\xc6\xaa\x29\x11\xc5\x19\x01\xa0\x75\x8e\x45\xc0\x34\x36\xb7\xef\x59\x4d\x2a\x4e\x78\x55\x89\x2e\x7a\x27\xe0\xf1\x73\xc1\x9e\x06\xe1\x35\xdc\x17\x8e\xb5\xc8\x02\x32\x82\x2a\x58\x8e\x42\x7e\x61\x27\x2a\x43\x66\x28\xd1\xda\x8d\xe5\x8a\xdc\x6f\x3a\x28\x6c\xd5\x66\x35\x7e\x56\x03\x28\x76\x0b\x73\x0d\x12\xde\x72\xfd\xc5\xce\x46\xae\xd0\x83\x53\x03\x24\x6a\x80\xdc\xe5\x67\x89\x51\x03\x43\x84\x4b\x53\xe6\x3f\x3f\x22\xbb\xa2\xaf\x21\x2f\x34\x4d\x92\x31\x21\x7a\x1a\x60\x52\x5d\x1c\x3f\x5d\xc2\x57\x11\x85\xb3\xc7\x8a\x31\x6b\x67\x77\x10\x97\x90\xf9\x7f\x7d\xe9\x62\x18\x53\xaf\x9b\xcf\xf9\xe8\xa9\x72\xde\xc2\xbd\xea\xa0\xcf\x9a\xd9\x31\xab\x75\xe9\x03\xf6\x03\xb2\x25\x8b\x5f\x7d\x97\x86\xe0\x26\x5e\x1d\xb3\xb8\x69\x56\xe9\x62\xf2\x48\x51\x79\x2f\xa5\x66\x15\x35\x50\x33\xc9\x87\xb9\x67\xb5\x49\x02\xf1\x19\xc2\x4e\xa2\x25\x15\x1d\xec\x02\x66\x4f\xfc\xaf\x5a\xc0\x67\xeb\x80\xed\xe0\xcc\xce\x0e\x8e\xbd\x37\xbe\xda\xa7\xa3\x6e\x1d\xa7\xe8\x9b\xc8\x91\xd0\x3d\xe3\xfd\xfb\x41\x6f\x06\xe4\x85\x1c\x15\x10\x79\x1f\xc5\x23\xdb\xe6\x47\xd2\x5d\x98\xd5\xba\x0b\xcb\x7f\x49\xf3\xc1\x08\x44\xce\x4f\xaa\xad\x0b\x0f\x42\x0e\x42\x6a\x8a\x1f\x3d\x37\x4a\x2b\x81\x5d\x1c\x10\x17\xfb\x89\x64\xd3\xb6\xfb\x14\xd1\xbb\x16\x1f\xa1\x79\x23\x55\x2f\xe4\x22\xb6\x3a\x24\xbc\x76\x7d\x64\x8a\x08\x03\xb4\xc4\x81\xe2\x42\xc4\xe6\x86\xdb\xb3\x45\x18\xf5\x04\x44\x21\x3a\x04\x60\xb2\x5e\xdc\xa2\xf0\xce\x3f\x6e\x9d\x9f\x03\xfa\xa1\x01\x23\xd5\xf8\x8e\x5c\xbd\x33\xbb\xc7\x0f\xb0\x87\x2a\xe8\x4c\x56\x2f\xb9\x93\x2f\x8a\x65\xc9\xc2\x56\xbd\x90\x87\xde\x10\x0d\xef\xcd\x73\xe7\x2f\xbd\x69\x7e\xf2\xea\x7f\xfc\xec\x47\xf8\x9f\xce\xe0\xbb\xa7\x8e\x77\xb4\x2b\xcc\x8d\xc0\x65\x14\x5d\x77\x9b\xf8\x01\x38\x7e\x85\x89\x5a\xdf\xc2\x61\x9a\xe7\xf4\x4c\xc9\xe3\x7d\xfc\xf8\xf9\x60\x30\xe3\x27\x38\xba\x5c\xf7\x49\xf5\x0d\x03\x16\x06\xb6\xd0\xaa\xb0\xc5\x0e\x74\x09\x32\x49\x99\x6f\x85\xd2\x51\xc6\x26\x6d\x5e\xb0\x3a\xc4\xbe\x00\x27\xf1\xfe\xf7\x06\x27\x7b\xa5\x3d\x4c\x2a\x76\x89\x32\x9b\x52\x2b\xd5\x51\x28\xdc\x71\x28\x2d\x6c\xab\x08\x20\x23\x8d\x3b\xfb\x61\x09\x15\x20\x22\x41\x89\xc6\xf3\xaf\xcb\x6f\xeb\x96\x1c\xec\x22\xa9\xef\xf5\xd9\x37\xc5\x8c\xe1\x3a\xe4\xd4\x31\x4b\x49\x0e\xff\xf4\x5a\xbb\x16\x57\x48\x20\xa7\xb3\xa7\xdb\x52\x95\xbe\x00\x57\x84\x76\xc9\xa6\x15\xca\x3a\x2b\x23\xad\x70\xd6\x9b\x6d\xf2\x93\x54\xa4\xe7\x66\xe1\xea\x32\xdc\xfb\xf1\x0e\x82\x5f\x07\xd3\x12\x9f\xe4\x56\xe4\x58\x20\x08\x0f\x79\x4b\xeb\x7c\xa8\xcf\x0d\x48\xe4\x34\x76\xd0\xa3\x22\xb4\x11\x53\xe2\x49\xac\xd9\xaa\x4c\x46\x5e\x06\x75\x34\x6d\x06\x50\x90\xb3\x69\xdc\x48\x47\xc5\x9d\x5a\xb5\xc8\xb3\x08\x0f\xd6\xd1\xbb\x07\xc1\xb2\xdc\xc6\x10\xf5\xff\xd4\x6e\x20\xa4\x12\xb2\x32\xe2\x9c\x22\x63\x52\x04\x21\x2e\x72\xd2\x9b\xff\x6f\xa0\x88\x64\x53\xe9\x82\x73\x43\x46\x58\x96\x0b\x75\xca\x17\xb5\xee\x89\xc1\x4a\x08\xb6\xd8\x13\x5d\x7a\x9b\x36\xc6\xe8\x98\x2e\x5d\x26\x7b\x5f\xd6\x20\x94\xa1\x97\xb6\x84\x85\xa1\xb7\xeb\x3b\x4b\xcf\x94\xb7\x75\xfe\x66\x7d\x11\x56\x4e\xec\x49\x0a\x3d\xe3\xb2\x7c\x33\xc2\xf3\x5d\xf4\xf6\xd3\x97\xa9\x61\x28\xaa\x13\x3e\x86\x69\x89\x9a\x13\xc7\x03\x35\x16\x6a\xda\x7c\x54\xb1\xf0\xd5\x76\x85\xff\xad\x67\xe4\x82\xbe\xf8\x1a\xd0\x81\xc1\x75\x9c\x92\xe2\xbc\xd3\xba\x57\x4f\x22\xc9\xf8\x90\x36\xf7\xa0\x8c\x89\xb9\x76\xfe\xf1\x51\x29\x50\xa7\x4c\x7c\x53\x2e\xb7\xfc\x97\x34\x85\x03\x29\x37\x23\xbe\x6f\xf4\xfb\xb5\xe3\x5a\xde\x3f\x76\x5a\x45\xa7\xf3\x76\xa7\xce\x4e\x41\x1e\x71\x49\xd0\x14\xed\x59\xa1\xe0\x88\x78\xb9\x8c\x23\x4b\x31\x57\xc9\xbf\x7b\x53\x5a\x82\xd7\x9c\xf8\x55\x0e\x79\x52\xa5\x7a\x8b\x86\x71\x04\xd1\xa7\xee\x7b\x6b\x6a\x60\x97\x68\x8d\xb4\x8e\x9c\x26\x9e\xa9\xc7\x11\x0b\xe9\x6b\xdf\xd4\xc0\x0b\x88\xe1\x38\x51\x25\x86\x12\xb9\xbf\x9d\xa2\x3d\x11\x9b\x85\x95\x4a\xba\xea\xcc\x7f\xee\xf8\x70\x05\x60\xaa\xaa\xd2\xd9\x2e\x8c\x04\x22\x5d\x8e\x49\x5d\x58\x05\x1a\xcd\xcd\x7a\x7f\x8c\xa5\x8e\x3b\x1f\x45\xf7\x8d\x13\xd3\x91\xeb\x68\xc8\xb8\x0d\x58\xa7\xa1\x6f\x30\x3d\xb3\x29\x7b\x97\xeb\x76\x67\x44\x2f\x2d\x47\xd8\x22\x8d\xf1\x46\x6a\x91\x13\x39\xa4\xdc\x4c\xf4\x6a\xfe\xb6\x0c\xe4\xd8\x02\x16\x9a\x41\xc8\x04\x26\x62\xd4\x3b\x97\xd4\xa0\x80\x70\xab\x70\xef\x60\xdd\x50\x9f\x54\x3c\xce\x26\xe5\x79\x0f\x05\xd9\xbf\x9d\xde\xc9\xd1\x3e\x32\xa5\xfe\xf3\x30\xcd\x03\x1e\x5b\x52\x1f\x98\x73\x29\x79\x40\xbd\x6b\xfb\x79\x99\x22\xa7\xd8\x13\xfd\xdf\x2e\xc0\xa3\x4c\x96\x48\x20\xf2\x4d\x7f\x55\x97\xa3\x32\xab\x34\x19\x17\x44\x97\x2d\x12\x5d\xe3\x75\xb6\xe0\x23\x65\x2f\x62\x73\x9c\x18\xa2\xde\xc8\xcf\xe1\xfb\xeb\xb4\x47\xed\xa0\x4a\xc2\x4d\xf5\x14\x22\x87\xb2\x4a\x4b\x92\x5d\xb6\x41\xc9\x5f\x90\x16\xa4\xb1\xb1\xef\x81\x09\x7a\xef\x66\x12\xcf\x0c\x84\xcc\x63\xa6\xa1\xf9\x88\x4e\x94\x22\xd2\xb8\x2b\x7e\x73\xa0\x98\x46\x16\x65\xdc\x0d\x94\xf7\xeb\x0c\xaa\x3d\xf8\x01\xaa\x8a\x17\xba\x65\x9d\xc6\x38\x88\xa3\x36\x93\xe3\x9b\xdc\x9a\x48\xfd\x2b\x13\x7b\x41\xc8\x84\x3f\xf1\xfe\xcd\xd0\xe2\x97\x59\x62\xb5\x39\x78\xac\x36\x3f\x32\x69\x98\x00\x43\x8c\xff\x06\x10\x50\x8f\xd6\x69\xe0\x71\xd2\xf8\x47\x47\xaa\xa2\x96\xd6\x6a\xd4\x8b\xb3\xdb\x55\x12\x75\x14\xff\xd0\x7f\xdb\x36\x14\xb6\x8b\xbd\x88\x0f\x16\x3f\x33\xfe\x7c\x38\x40\x34\xed\x50\x38\x1e\xde\x3b\x44\x93\x90\xa2\x1e\x0e\xfc\xaa\x62\x09\xe7\xff\x6f\x31\xd4\x62\x62\x16\xf1\x84\x2b\xae\x41\x6f\x53\x49\xad\xea\xe1\x46\x47\x1c\x24\x1f\xd1\xfd\x10\x02\x33\xe5\xd1\xe5\x7b\xf7\xaa\x8f\x86\xc2\xc0\xe6\x54\xa5\x4f\x6b\x00\xb9\xb8\x11\xf1\xa5\x4a\x6d\xfe\xd0\x1e\x2d\x1a\x13\x57\x1c\xc2\x09\x2f\xa8\x53\xed\xd0\x06\xaf\x87\x2e\x98\xa8\x3e\x69\x99\xba\x38\xa9\x4c\xed\xd3\x43\x80\xa2\x44\x58\x29\x72\x98\xa6\x42\x0c\xf0\x72\x2a\x1a\xf4\xc8\x05\x19\x78\x64\xe8\x11\x9f\x7b\x8f\xe7\xbe\x59\xd6\x49\x26\x88\x4b\xcc\x0a\x84\xce\x3f\xde\xa6\xaa\x33\x1a\x06\x0c\x55\x44\x9a\xbd\xf2\x41\x15\xb4\xca\x8c\xf6\xf3\x14\xa3\x66\x3a\xd7\x69\xe4\x8a\x32\x2e\xb1\x10\x49\x1b\xe7\x68\xf3\x83\xa2\x64\x2a\xd1\x20\xa0\xae\xdc\x12\xe4\xae\x2b\x8b\x3f\x5d\x74\xcb\xcd\x4b\x6e\x59\x2a\x2f\x78\xee\x73\xa7\xd4\xd7\xae\x13\xc7\x41\x15\x49\xe1\x33\x1e\xd5\x86\x4b\xe5\x5a\x4b\x7a\x89\xfe\x71\x76\xda\xd0\x33\xd2\xda\xff\xbd\xb2\x49\x61\xba\x20\xe5\x36\xff\xa5\xcd\x00\xa2\x00\x7c\x8d\x3e\xff\x7a\xcb\x99\x66\xa9\x22\xcd\x8d\x2f\x65\x5f\x67\x05\xc9\xb8\x9b\xfb\xfb\x63\xd9\x3b\x2a\x25\x62\xe3\x33\x75\xb9\x66\xae\x64\x87\x2c\x90\x3d\xed\x6b\xcb\xe5\x2c\x1e\x99\x01\x95\x4e\xb5\xf9\xc5\xaf\x0f\x57\xdd\x0d\x58\x36\x7d\x53\x08\xe6\x14\x97\xa6\xb5\xa9\x1e\x8a\x1b\xe3\xd4\x93\xec\x9c\x39\x95\xc3\xd7\xf9\x30\x80\xdd\x23\xad\xd4\xc3\x20\x10\x34\x89\xe8\x33\x93\x2e\x01\x73\xa0\x5e\xda\xba\x9d\x29\x4c\xcd\x26\xf8\x2a\x46\x1e\x8e\x5f\xaf\x1e\x32\xaf\x59\x35\x54\x56\xc2\x1e\xb2\x24\x42\x2f\x42\xc7\x47\xea\x71\x06\xac\x0c\xc7\x2f\xd4\x27\xb6\xc2\xca\x5b\xc2\x7c\x7e\xbb\x55\x99\xf7\x88\x50\xf3\xe0\x51\xd5\x78\x3a\x4d\x16\x37\xd4\xfa\xc7\x58\x36\x5c\xec\x80\x96\x13\x97\x32\x2c\xcc\x0b\xe2\x04\xf2\x73\x4d\x83\x91\xe1\x3a\xc1\x0d\xa1\xfc\x91\xfd\x09\x57\x2e\xd4\x4b\x24\xaf\x22\x6b\xf7\xef\x1e\x01\x8a\xfe\x2d\xbc\xf6\xdc\xd4\xf7\x5a\x60\xa8\x75\x62\xc5\xcd\x2d\xef\xe5\x7e\xb2\x57\x61\xaa\x9b\x89\xe9\x40\xfe\xd7\xa7\x45\xc3\x35\xd7\xe5\xf6\x42\x96\xae\xc8\x19\xa4\xee\x52\xa3\x4f\x2a\x59\x34\x07\xda\x72\xd2\xf5\x19\x87\x96\xd4\x07\x76\xf9\x08\x58\x7f\x33\x5c\x8e\xff\x42\x4e\xb3\x6e\xd8\x9c\xfe\x30\x87\x02\xe9\xd5\xdc\x9c\xad\xc0\xde\x97\x98\x81\x84\x54\x16\x06\xad\x50\x24\x6b\xee\xa9\xd8\xf2\xe8\xef\x1c\xa6\xc9\x34\x04\xb6\xc7\xd1\x09\xf1\x87\xff\xfd\xd3\xd9\xa7\x8a\x91\x69\xcb\xf3\x7f\xea\x7d\x6d\x45\xe9\x22\x3e\x25\x52\x5f\xd0\x9e\x9f\x9d\x65\xd4\x6c\x1a\xd0\x0a\x43\xb5\x24\x2a\x47\x9f\x29\x03\x59\x48\x65\x89\x15\xcd\x5a\xd1\x32\x34\xf3\xa9\x93\x5a\x10\xe6\x16\x6e\x14\x65\xd5\xb2\xd0\x75\xc5\xc6\xb7\xb9\x5b\x33\xa8\xa2\x5c\x4d\x40\x2e\x07\xfd\xf5\xba\x8d\x2b\x16\xac\xb4\xdc\xeb\xef\xb6\x78\x36\x70\x99\x35\x01\x41\x1e\x73\x58\x14\xd7\xba\x00\xf1\xf8\xf3\x33\xe1\x1a\x33\x21\xae\x60\x6a\x2e\x9d\x5c\x92\x89\x21\xcf\xc4\x89\x68\x6a\xfe\x6b\xc7\xf4\x01\x76\x0d\xb1\xc0\xe5\x84\x14\x1e\xf0\xbf\xf2\x2e\x90\xd8\xe7\xff\xdb\x33\x90\x6f\xec\xd1\x80\x2d\x0c\x95\x12\x08\xc7\xe8\x23\x9a\x7b\x0c\xb1\x28\xa3\x75\x0d\xa0\xfa\xeb\xe7\x81\x45\x43\x9c\x46\x8b\x3d\xd1\x57\xf6\x69\x48\xe7\xd0\x09\x90\x07\x64\xe7\xa2\x27\x0f\x14\xb5\xf7\xc0\x73\x93\xa0\x4d\x9e\x49\x98\x2b\x37\xee\x1c\xed\x11\xf4\x63\x46\x32\x7e\xaf\xff\xbd\x44\x57\x86\x27\xf1\xf3\x11\xeb\x9e\x2b\xc7\x0c\x03\x33\x2a\x07\x49\xbf\xe3\x6f\xb3\x11\x40\x6f\xcf\x41\x1e\x44\xb9\x3f\x02\xa7\xe2\x3c\xf5\x86\xdc\x42\xed\x3f\x9e\x3e\x5f\xb5\xa4\x98\xc5\xcf\x39\xae\xc0\x2f\x59\x21\x22\xde\x02\x54\x47\x5e\x82\x49\xce\x3f\xfc\x96\xf8\xd3\x3a\x72\x48\x8a\xff\x32\xba\x3f\xd0\x7d\xea\x02\xcc\xe2\x08\x94\x58\x27\xbf\x39\x43\x09\x06\xb0\x96\x0c\x96\x67\x9a\xcb\x13\x71\x9c\x0e\x35\xc8\xab\xbd\x08\x36\xbc\x4e\x18\x17\x02\xf7\x78\x97\x80\x56\x32\xac\xb4\x74\x4a\xb9\xa9\x0f\x40\x73\x06\x17\x4b\xce\x49\x4f\xf4\xe3\x27\x5b\x6a\x88\x40\x58\xe8\xbc\xf6\xa8\xbe\xe4\xe0\x03\x5d\x2e\xc9\x73\xe7\xbb\x17\xff\xb5\x2a\x9e\x1f\xc7\xc9\xda\x20\xc2\x0f\x4b\x3e\xb1\x48\x7f\x72\x43\x6e\x1c\xa7\xc9\x49\x94\xa8\x43\xb8\x7c\x01\xff\xd5\x85\x67\x13\x0d\x47\xb9\xa7\x89\xff\xf0\xc3\xb6\x3a\x8b\x35\x07\xf1\xe1\xac\xf1\x4d\xe9\xdb\xe8\x62\x8b\xf0\xf7\x67\x94\xf6\x68\x14\x09\x8a\x98\x25\x34\x35\xbe\xb8\x5f\x57\x2f\xc2\x35\x47\xfa\x4e\x19\x23\x65\x70\xe0\x6b\x3e\x1e\x82\xe7\xd7\x55\x01\x5a\x43\x01\x11\x43\x99\xe8\x60\x4d\x5b\xae\x22\x4f\x58\xc4\x18\x47\xf6\x64\xdd\xf7\xf8\x38\x9b\x06\x81\xdc\xdf\x66\x5f\xf2\x84\x0e\x60\x3c\xea\x72\xbb\x6d\xac\x99\xee\xba\x38\x51\x36\xfb\x10\x40\x7a\xc6\xff\x8a\xef\x37\xe2\x07\x79\x89\x36\x7b\x2a\x13\x4f\x06\xc9\x67\x46\x6a\xb0\x3d\x1a\xaa\xba\xb6\xb0\xea\x1a\x20\x76\x19\x57\xaf\x92\xab\x66\x48\x3e\x33\x2b\x91\x80\x89\x3c\xfc\xc9\xc3\x1a\x10\x8c\x11\xe4\x88\x2c\x65\x2c\x1e\x2f\xfe\xfb\xc5\x88\x25\x70\x7c\xe3\xb3\xed\x82\x45\x3b\x0f\x07\x01\xf1\x08\x24\x96\x0c\x02\x98\x5a\x8f\x0b\x6a\x09\x80\xc6\x27\xb6\xe8\xde\xa0\x16\xf6\xe3\xdf\xe3\x89\xdf\x93\xdf\xff\x88\x66\x35\x08\x36\xae\x3c\x56\xe7\x17\xae\x6c\x97\x31\x37\x60\x88\xf2\x9a\x5f\x02\xd0\xf2\x43\xae\xd1\x34\x76\x1c\x07\x57\x24\xde\x32\xda\x3c\x27\xbb\xe8\x71\x89\x69\x63\xc7\xc1\xd9\xa5\x7f\x6e\xc0\xe6\x01\x8a\x7b\x12\xa0\xe2\xcd\x3d\xcb\x96\xeb\x55\x29\x79\xec\xaf\x55\xc7\x66\xb1\x27\xfa\xdc\x6d\x12\xc0\x40\xfc\x20\xe4\x57\xe8\x97\x87\x07\xcb\xd7\x29\x86\x6b\x87\x80\x11\x33\x0b\xcb\x65\x39\xfa\xfa\xfe\x24\x50\x05\x11\x3f\xc0\xad\x86\x72\x77\x1d\x57\x87\xc3\xa1\x4d\xe4\x24\x92\xeb\x5d\x33\xb2\xa3\x63\x5c\xf3\x89\xc3\xc1\x87\x2d\x3f\xe3\x8b\x3b\x5b\xaa\x99\x1a\xf5\x13\x5a\x7a\x7e\xcf\x0c\x85\xbb\xe5\x36\x50\xac\x18\xd8\xc8\x2b\xe2\xbe\x1a\xf7\xae\x88\xdf\xfb\x3f\xcc\x16\x17\x68\x7a\xe7\x94\x19\xb3\xa6\x72\x3b\x6d\x39\xd0\x0c\x3d\xd3\xe1\x23\xee\x68\x87\x40\x19\x15\x97\x51\x87\x7a\x44\x19\x3c\x47\x8b\x5f\x03\xd2\xb0\x28\x10\xed\xf6\xa2\x55\x5a\x7d\x44\x59\x60\x8b\x6e\x63\xed\x26\xd1\xd1\x2f\x21\xd4\x0b\xaa\x02\x05\xaf\xd2\xd6\xf6\xe5\x2d\x4a\xbd\x01\x66\x72\xd9\x7e\x14\x18\x08\xda\x34\x8e\xdb\x7c\xdd\x9e\x7b\x48\x81\x1a\x2b\x16\xef\xb4\x4f\x6a\x32\x4a\xc2\xa0\x40\x40\x2c\xfe\x32\x1b\xce\xea\x51\xc0\xd5\xad\x8c\x0f\x06\xa7\xe4\x49\x1c\xba\x19\xf8\xb1\x65\x5d\x90\x4e\xa9\x61\x5f\x15\x75\xec\xcb\x5e\x61\x8b\x11\xc7\x11\x71\xf0\x7b\x1b\x80\x65\x0d\x13\xa5\x7d\x34\x7f\x90\x1a\xda\x12\x2f\xee\x7e\xfd\xf8\xa2\x88\x98\xfd\x42\x16\xae\xea\x52\x0f\x37\x8b\x0e\xe2\xec\x8e\xd4\x62\x30\x1a\x01\x7a\x7b\x54\x89\x43\x6c\xfc\x8f\x0f\xee\x93\x84\x74\x6a\x83\xc4\xfb\x91\xcd\x32\xc2\x12\x4b\xac\xc6\x7f\x7f\x00\xd4\xc5\xbe\x6d\x32\x5a\x86\xac\xa9\x23\x33\x74\x0c\x9a\xe4\xf3\xfb\xc9\x4c\xed\xf8\x4a\x29\x29\x6e\x21\x17\xba\x14\xbd\xb2\xa3\xe5\x0c\x72\x1d\x35\xc9\x2b\x39\xf8\x9c\x56\xaa\xa7\x9a\x61\xf9\xbd\xa3\x87\xc0\xe9\x10\xe6\x10\xe1\x4d\x5b\x21\xac\xdd\x45\x5c\x83\xdc\x98\xba\x56\x13\x00\x62\x18\x89\xf0\x9d\x1b\x32\x31\x5b\x84\x48\xf3\x1d\xd2\x9f\x6a\xc3\xe6\x1f\x02\xfa\x39\x26\x09\x48\x3f\xf6\x12\x1a\xe6\xa6\x19\x0a\xf6\xaf\xd2\x61\x4b\xa5\xf3\x4f\x7d\xc3\x01\x07\xc2\x45\x9e\xbc\xac\xc6\xa8\xe3\xa0\x82\x23\x98\x4b\x5a\xe5\xdd\xbe\x56\x7c\x70\x28\x4a\xbe\xfc\x2b\xbb\xd5\xf0\x33\xbe\x18\xd4\xa2\x7d\x2d\x1d\x5d\xa4\x51\xce\x91\xc7\xf7\xaf\x52\x90\x79\xd2\x43\x97\x83\xc9\x7c\xc9\x8f\x23\x2a\x69\xe5\x61\xe6\x5e\x79\x0e\x0c\x54\xec\x90\x99\xb6\xb4\xca\x3e\xc6\x80\xf2\x51\x4b\x3f\x69\xfc\x6c\xbb\x1a\x28\x84\x2d\xa6\x7d\xe5\x2e\x40\xca\x6a\xd0\x62\x03\xc5\x85\x47\xb4\x6f\xcf\xd0\xf8\x93\xde\xb4\x18\xae\x23\xae\x3a\xa2\xf1\xad\x9a\x7e\x80\xdd\x64\x51\x67\xdc\xd9\x29\x75\xbd\x68\x9d\x9f\xf3\x62\x4f\xb4\xb4\x53\xa3\xf9\xa4\xea\xfa\x03\xb9\x6b\x34\x06\x13\x27\x71\x20\x33\x71\x36\xbb\xb7\x53\xbd\x65\x17\xf9\x0c\xd0\x19\xf2\x97\xae\x03\x91\x90\x96\x4a\xa4\x95\xda\x51\xb8\x6b\x15\xe0\xfc\x32\x4e\x28\xe7\x8f\xfb\x07\x7d\x69\x84\x41\x0e\xc7\xbb\x6f\x2b\x29\xa5\xa4\x10\x42\x09\x27\xd6\x35\x74\x9b\x93\x40\xea\x3f\xa6\xb1\x94\x4d\x86\x2c\x47\xe0\x3f\x72\xa5\x60\x48\xe6\x5e\x07\xc5\x9e\xe8\x13\xcf\x9e\xc1\xd9\x91\x79\x52\x53\x36\xff\xc1\xe2\x74\xec\x3e\x53\x68\x4d\xfc\x71\x8a\xfa\xf6\x1e\xaa\x67\x04\x1c\x6f\x5c\x72\x21\x98\x1a\xc7\xe5\x13\xe6\xc6\xc4\xfc\xbe\x1d\xce\x76\x14\xb8\x41\x69\x82\x9d\x53\x61\x70\xa2\x26\x5a\x43\x59\x5c\x57\xa5\x06\x50\x96\x31\x52\xcf\xd5\x5c\xd3\x45\x76\x64\xcf\x6f\xd2\x30\xf1\xd4\x71\xb0\x99\xb0\xb7\x1e\x1f\xab\x40\xc1\x25\xae\x6e\x70\xd3\x26\x4d\x52\x97\x61\xae\x92\x9c\x88\xbb\x19\x43\x77\x65\xd1\x3a\x36\xf1\x03\x2a\x0a\x8f\x33\x20\xc2\x72\xdf\x00\x8b\xe4\x3a\xe0\x01\x0b\xda\x02\xcf\x51\x00\x3f\xf3\xe8\x41\x88\x67\x29\x26\xc6\x53\x03\xb9\x51\xfb\x52\xd4\x85\x47\x12\x9b\xb4\xdc\xcc\xa7\xb5\x76\xad\x4e\x49\x02\x81\xfd\xfd\xae\xf3\x81\x28\x61\x20\x21\xed\xd1\x86\xad\x40\x42\x92\xc6\x2d\x16\x47\xb2\xd7\x75\x9d\x9e\x1a\x09\x90\x23\x77\x1e\x8d\xad\xc9\xea\x87\xd7\x41\x45\xa1\x9e\x97\x9f\xb9\x4b\x0b\x35\x7c\x93\x2d\x0a\xe7\x5f\xee\x17\x6d\xce\xdf\x84\x58\x05\xbc\xdc\xb1\xf4\x4b\x94\x50\x4a\x3b\x9f\x3e\x29\x9b\x7a\x3d\x8c\x2d\x3f\x19\x8a\x3c\xfb\xae\x48\xff\x37\x23\x73\x11\xa6\x70\x7e\x7f\xfe\xee\x0b\x41\xad\x6d\x23\x78\x17\x6a\x13\xb3\x2f\xbd\xea\x09\xcd\x16\xd1\x4a\xf4\xbd\x07\xba\x6a\x86\x51\x20\xc7\xc4\x37\x2c\x3c\x83\x43\x3c\xcf\x24\xb9\xaf\x3e\x39\x24\x25\xd6\xa2\x64\x26\xf9\xfb\x36\xad\x6f\x20\xcc\x4a\xe0\x94\x52\x67\x95\x78\x56\xe8\x07\x2c\x4e\x82\x63\x97\x5c\xa2\x3f\xad\x12\x41\x1e\x50\xc5\xfd\xd1\xe1\x71\xd9\xf5\x26\x6b\x72\x97\xb1\x96\xd2\x6b\xd1\x56\x2d\xff\x23\xe2\x34\xf9\x18\x91\x2e\x1f\x02\x68\xda\x02\x1a\x96\x5f\x73\x5a\xd0\x98\x96\x52\x9f\x9f\x65\x38\xa2\x2d\xfc\xcd\x93\x40\x86\x90\x51\xc4\xc3\xd9\x95\x47\xb3\x2b\x17\xa7\xe9\x63\xaf\x4a\x33\xca\xc3\xbf\x39\x47\xe0\x54\xb0\xcb\xd1\xb5\x85\x1b\xc6\x5f\x02\x60\x4a\x25\x44\x7d\x1b\x65\xec\x64\x8c\xfb\xc4\x90\x43\x35\xe4\xa2\x64\x59\xa8\xd4\x49\xab\xa2\x1f\xb8\xe2\x0e\x91\xee\x17\x93\x5e\x17\x57\xd4\xda\xb2\x0b\x70\xe0\x6b\x98\xf5\x86\x82\x7a\x9a\x5f\x35\x46\x2d\x02\x29\x5f\x5b\xef\x82\x1e\x8b\xbe\x47\x84\x83\xea\x04\x45\x94\x9a\x20\x0c\x02\xfa\x23\x8d\x97\x28\x15\x45\x92\x2c\xd1\x98\xa4\xcd\x87\x58\xc8\x7b\x4e\x39\x1f\x32\x6a\x0f\xc9\xad\x7f\x5f\x0d\xc7\x61\xc9\x8c\xeb\xf2\x4f\x8c\x83\xd8\xcc\x1a\x7f\x0b\xd1\xfa\x13\x9a\x56\x4b\x3a\xd0\x91\xfe\x27\x87\x8e\x0d\x07\x2a\x14\xd4\x25\x12\xbf\x64\x6a\xcd\x14\xe1\xde\x7b\x22\x2b\x5d\xdb\xd5\x26\x7b\xd9\x38\x99\xf3\x9a\x74\xed\xb0\x16\x69\x1f\xa1\x57\xcb\x92\x6a\xaa\xf0\xf1\x07\x2e\xd6\xfe\x13\x93\x85\xdc\x52\x8f\xb7\x81\x1f\x7b\x30\x1d\x96\x57\x70\xeb\xa8\xa1\xed\x30\x84\xd6\xbb\x3e\x3f\x31\xc6\x6f\x0c\xad\xab\x74\xc4\xf4\xb4\x67\x20\x7f\xeb\x92\xbf\x26\xbf\xc1\xbf\xb8\x71\x74\xa2\x7a\x59\x95\x38\x1b\x0b\x89\xbd\xee\x7d\xc0\x57\x5e\x1c\xcb\x39\x7b\x2e\x4a\xc9\x58\x2d\x88\x9e\x42\xdb\x52\x68\xf9\x19\x06\xdc\xad\xd1\xf8\xd1\x16\xc8\xe3\x56\x67\xe9\x9c\x15\x40\x3c\xcc\xa3\x2e\x72\x08\x16\x15\xf1\xcd\x00\x68\x4d\x1b\xc2\xe7\x85\xff\x93\x8b\x1e\xd0\xa5\x14\x3c\xc9\x9e\x37\x3e\x35\x42\x2c\x04\x67\x16\xaf\x8e\x3f\x68\xdb\x48\x40\x11\xf5\xbc\x30\x31\x6b\xbc\x70\x97\xce\x7c\xe7\xb7\x9c\xf3\x9d\x79\x85\x76\x7d\xbf\xae\xcb\x4b\xab\x7e\xdc\x5c\x32\xd1\x3d\xef\x8a\x34\xfb\x12\x1a\x50\x66\x36\x4d\x27\x2d\x6c\xff\x61\xbd\x3e\xb1\xa8\x13\x3f\x51\x3a\xd9\xbb\x13\x28\x26\x06\x4d\x89\x5d\x29\xf4\xcd\x87\x22\xe2\x25\x46\x2b\x0e\xe1\x5f\x6b\x23\x70\x84\xcf\x22\xdf\x84\xfa\x92\x31\xce\xd3\x56\x9f\x18\xb1\x44\x56\xe1\xfc\xdb\xce\x85\xbe\xee\x3d\xd1\xe4\x67\xd5\xc9\xc1\xa9\x55\xe8\x3f\x3f\x08\x3e\x93\x8d\x04\x3e\x2d\x7a\xf7\xd8\x50\x50\x36\xa0\xaa\x68\x18\xdf\xb3\xd4\x73\xad\x90\xd0\x21\x88\xab\xe5\xbd\x7d\xc7\x18\xad\x79\xf3\xc2\x32\x32\x83\x50\x35\x30\x03\xc6\xc6\x87\x3e\x12\xff\xdd\xad\xf3\x97\xc7\x01\x22\x01\xce\xd0\x12\x15\x50\x9d\xfc\x86\x27\xd3\xc2\xb4\x8f\xb4\xe0\x36\x0b\x23\xc6\x0d\xcb\x3c\x0a\xcc\xbd\x48\xf2\x83\xb7\x02\x5f\x03\xc4\x58\xe8\x70\xe8\xf4\x80\xf1\xe9\x2d\x40\xc3\x80\x32\x24\xd8\x3d\x83\x76\x8d\x54\x91\x4a\x87\xc5\x45\xab\xdb\x41\xd1\x2c\xea\x14\x1e\x3b\x7e\x3e\x5b\xa3\x40\xf1\x59\x2e\x1f\x0d\xf2\x65\x50\x4d\xda\xbf\x2e\x4b\x30\x71\x69\x3d\xb1\xfe\x89\x16\xd1\x23\x3f\x64\x58\x12\x56\x72\x27\xb7\x8c\xd5\xfa\x97\x32\x3e\x83\x54\xd0\x82\x27\x34\x6b\x2b\xea\x63\xbd\x4c\xcb\xaf\x3e\x04\x97\xcc\x75\x6a\x0a\x36\x5b\xd4\x98\x23\x9d\x64\x71\xc0\xa8\x13\xf7\xb8\x3d\xd1\x4f\xc7\x49\x0d\x46\x62\x09\xee\xf4\xdc\x37\x2f\x84\x93\xba\x30\x00\xc9\x3c\xb4\x35\xd5\x62\xc4\x7d\x05\xf8\x7d\xb9\xff\x69\xb8\xe4\x8f\x2f\x13\xc1\xa0\xfa\x34\xee\x7f\x54\xc2\x46\x6e\x5a\xb4\xe2\xfa\xa5\x73\xe7\xf7\xc4\xc7\xbd\x79\x50\x04\xed\x5b\x60\x99\x6e\x9c\x15\x0c\x4b\x3e\x3b\x66\x41\x12\x7d\x87\x3f\x05\xac\xaf\xc2\xf8\x4f\xe6\xdd\x03\xb0\x49\xb5\x30\xf0\x48\xdc\x25\x16\xc2\x2d\x22\x67\x2d\xab\x61\x54\xc5\xcc\xb7\x09\xd7\x91\x28\x7c\x41\x6b\xa7\x4a\xd8\xa9\xc4\x69\x5f\x4c\x16\x06\x03\xca\x8b\x1f\x50\x0f\x17\x03\x9b\x25\x82\x01\xc6\x9c\x51\x7f\xd5\x7b\x55\xcc\xe4\x2e\xa9\x25\x53\x4f\x87\x48\x69\xb3\xe8\xae\xa7\x95\xf7\x6c\xc7\x0c\x3e\x66\xe9\x1a\x91\xa0\x47\x85\xf7\x2f\xe4\x88\x8f\xde\x2d\x40\x9e\x37\x22\x66\x12\xc8\x4d\xbc\x71\x9e\x2e\x00\xc7\x28\x93\xd3\xf3\xef\x4e\xd1\xf9\xc5\xbc\x45\xac\xf3\x5a\xe9\xfe\x13\x69\x36\xee\x9c\x5a\x2c\xf6\x44\x6b\xc6\xcb\x29\x41\xc8\x5c\xe4\xa4\x93\xf0\x6f\xde\xaf\x97\x8f\x26\xf5\x2c\x31\xbd\xbc\x57\x73\x75\xad\xf0\x51\x86\xcc\x7a\xaf\xbf\x9f\xfd\x87\x75\x62\xa6\x09\xfb\x73\x25\x89\x72\x2e\x97\xb1\xe7\xf3\x03\xb8\x53\x87\x28\x71\x93\x03\x55\x0e\xbe\x77\x5f\x9a\xef\x3c\xbf\xc5\x3a\xf4\xbd\x21\x29\x5c\xec\xea\xce\x62\x4f\xf4\xb9\x05\xba\x1c\xb0\x2f\x74\xcb\xa2\x2b\xa7\x00\xf2\x25\x50\xe3\xdf\xbd\x40\xb5\xe9\xbd\xb8\xc1\x93\x4c\xee\x1b\x53\x54\x70\x34\x79\xfd\xb4\xa0\x5f\x83\x4a\x51\x56\xeb\x38\xc3\x02\xd2\xd8\xbb\x40\x79\x36\x43\x69\xa1\x95\xa3\xd2\xef\xe1\x9a\xa4\xa5\x23\x1f\xb7\x50\xcc\xbf\x16\x10\xee\x79\x85\xb2\x9b\xfa\x39\x25\xa5\x2d\xd0\x39\x33\x7e\x92\xdf\xdf\x28\xb5\x43\x31\x76\x79\x94\x79\x76\xac\x42\x23\x74\x76\xcc\xe8\xe4\x02\x04\xa7\xd4\xa5\x2f\x13\xc0\x5e\xfb\x5e\x9f\xb6\x26\xc3\x49\xc4\x8a\x7f\xd4\xda\xf7\x75\x1f\x32\x1a\xa7\x38\xc9\xa2\x7b\x5a\xc4\x66\xd3\xc6\xa8\x26\xf2\xe6\x9f\xde\xbe\x54\x0b\x80\x02\x80\x44\x68\xca\x78\xcc\xbd\xac\x96\xf8\xa4\x0e\x2e\x76\x6e\xdf\xe9\x96\x1d\x9f\xe9\x84\x56\x9a\x31\xbf\x7d\x00\xf4\xee\x49\x3e\x15\xaa\x28\xb9\x15\x47\x81\x66\x25\x32\xab\x38\xc0\x9c\x65\xc6\xeb\x81\xdc\xd9\xd9\xd1\x59\xc9\xb6\xce\x48\xd8\x38\xf9\xa6\x02\x3a\x5a\xc4\x83\x41\xe7\x47\x00\x4a\xe3\x87\xa6\x89\xe5\x54\xdd\xdf\x70\x01\x0c\xa6\x1c\x64\x23\xa0\x39\x9f\x5e\x00\x56\xf2\x98\xf4\x92\x96\xf3\x11\x3c\xa0\x6b\x06\x22\x97\x78\xc9\x1e\xe5\xc7\x6d\x9a\x95\xca\xac\x59\x57\x17\x67\xcd\x90\x23\xb3\xdc\x4f\x35\xe5\x00\xdc\x47\x9c\x84\x82\x56\x98\xb5\x2a\xed\xdf\x6a\x76\xaa\x18\x35\x43\xec\x3c\x8b\x73\x1d\xdc\x87\x3c\x8b\x91\xf4\x86\xcf\x19\x9c\x05\xfb\x4e\x99\xdc\x88\xcb\xe6\xe8\x96\xcd\xba\x3f\x45\xa2\xab\x7c\xd3\xe2\xf6\xcc\x8c\x94\x1b\xe5\x0a\xdb\xed\x5b\x46\xb4\x83\x79\x6f\xa3\x88\x4a\x24\x51\x26\xb9\xf2\xd4\xc5\x5a\x9c\x0c\x99\xc7\xb5\xe5\xc5\x2e\xe0\x60\x9b\xca\x12\x1c\x1b\x13\x30\x54\x2e\x27\x58\xf8\x68\xcd\xbe\x76\xd8\x74\x63\x27\x31\x62\x1d\xc8\x75\x48\xec\x05\xd7\x38\x94\x43\x19\x63\x10\xf0\xb9\x28\x39\x94\xc6\x51\x77\xdb\x20\x48\xa2\x6c\x38\xdc\x27\x63\x2c\x70\xe7\xf2\x68\x83\xef\x95\x64\xd5\xd3\xd5\x9f\x9e\x56\x13\x85\xea\x12\x7f\xfd\xbe\xb4\x40\xf0\x2a\xb4\xa5\x0a\xf9\x88\x2e\xc5\x1f\x7a\x5e\x82\x2e\xa9\x7b\x8a\x91\x44\xe2\xc0\x97\xb7\x86\xc1\xcb\x49\xbc\x0a\x0f\x3d\xb9\x36\x39\x51\x27\x1e\x0a\x98\x0a\xf9\xd1\xf6\xfd\xc9\x97\x75\x6b\xc8\x4c\x78\xcf\x0f\x7e\x54\x7e\x29\x51\xe8\xff\xfd\x62\x80\x67\xc7\x1e\x0a\x30\x07\x4c\x0f\x6e\xd7\xd7\xdb\xa6\xe2\x2c\x77\x3f\xa5\x2d\x3a\x18\x6d\x78\x71\x00\x16\x17\xfe\xaa\xb6\x4b\x55\x89\x4e\x19\xf5\x02\x5d\x93\x7a\x20\xff\x77\x2f\xa5\xcf\xab\xe2\x40\xb9\xc2\x3b\x23\xe5\x7d\xad\xc0\xf4\x7a\xf0\xbb\xf1\x44\xfa\xcf\xab\x18\x92\x69\x3b\xb6\x03\x86\x2a\x0a\x88\x8b\x8a\x3d\xd1\x4d\x47\xb2\xe1\x06\x11\xd6\x52\xee\x74\xbc\xa4\x0f\x04\x99\x74\x5e\xe2\x47\xee\x12\x43\xb9\x0f\xda\x09\xca\x24\x6f\x9e\xd2\x27\x6b\xa1\xe7\x63\x47\x5a\x60\x1a\x1f\x6e\xd3\xba\x51\xc7\xc7\x0d\x1b\x33\x09\x14\xcb\xcd\xee\x1a\x01\x02\x09\x97\xcd\xf0\x02\xe9\xba\x9b\xef\x3b\xda\x0e\x79\x22\x0b\x17\x4a\xa3\xff\x9e\x68\x9c\x35\x3c\x9d\xad\x78\xaa\x3a\x8a\x3e\xb5\x22\x4d\x6d\x9d\x5d\xc5\x9e\x68\x59\x74\x21\x80\xe0\xd3\x92\x88\xb1\x62\xfe\xb4\xf3\xb8\xae\x5e\xd5\xc7\x49\x08\x52\xfa\x61\xe6\x48\x50\xed\x86\xbe\x43\xe2\x2a\xaf\xf9\x92\x96\xa7\xa9\x99\x38\x88\x14\x26\xaf\xd7\x24\x2a\x1d\x64\x91\x3a\xf5\x03\x5a\x4d\xf7\xd6\xf9\xf7\xda\x40\xab\xc9\x68\x43\x78\xb3\xd7\x97\x0c\x96\xf9\x81\x70\x5b\xd6\xfb\x46\x28\xe7\x53\x9f\x62\x8b\x21\xab\x17\x81\x49\x91\xb1\x51\x97\x1e\xa0\x75\xf1\x44\xa3\x2d\xeb\xb3\x39\x37\xb0\x49\x5c\xc7\x63\x2f\x59\x4d\x27\x15\xf6\xb7\x4e\x29\xd5\xc1\x33\xf8\xfd\xff\x3e\x10\xc5\x9f\x6f\x32\x8c\xbd\x06\x23\xc2\x35\xeb\xb1\xae\x16\xea\x9d\x4b\x42\x57\x8a\xf0\xae\x94\xfa\x7b\x28\x05\x66\xc4\x71\xa4\x0d\x50\xe4\x88\x57\x89\x4b\xd1\x9a\x70\x1b\xfc\xc5\xba\x76\xf0\x34\xb2\x0a\xef\xcf\x6b\x96\x31\x18\xc9\x65\xe5\xe1\x49\x89\x94\x06\xaa\x71\xb8\x7c\xee\xdb\xa3\x5b\xe4\x66\x4d\x5b\x1e\xb0\x2d\x81\xd6\x0f\xe0\x12\xf2\xa8\x27\xf4\x79\x55\xb1\x90\x3b\x5b\xe9\x59\x60\xc8\x33\xbe\xb9\xbd\x65\xfd\x66\x49\xc4\x45\xe1\xec\x5e\x11\x5d\x6e\xbe\x69\xd1\xdc\xc5\xa9\xe4\xe4\x29\x5d\x4a\xd7\xc4\xb2\xc8\x2c\x8c\x3b\x0c\xea\x29\x0f\x39\x4d\x5f\x50\x67\x8e\xbe\xa0\x8d\x1a\x10\x4b\x6a\x80\x6f\xae\x92\x96\xa8\xd4\xac\x3a\x19\xd7\xa6\x43\xbd\x2a\x38\xe2\xb8\x5a\x1b\xd4\x0f\xd6\x87\x94\xb3\x72\xa2\x13\xd7\xa6\xff\xd1\x34\x5e\xdf\xe4\x4c\x4d\xd4\xcc\x25\x71\xa7\xcd\xd5\xd2\xeb\xaf\xea\x7a\x6f\x0e\xf2\xcc\xb4\xac\xcc\x7d\xf5\xbd\x6c\xf1\xde\x40\x8e\x05\x51\x4b\xb9\x21\xef\xa8\x48\x5a\xa7\x92\x61\x11\x6d\x5d\x27\x5e\x98\x45\x65\xbc\xce\xf7\x3d\xad\xb6\x67\x25\xc4\x3c\x64\xc2\x00\x68\xb4\xbd\x9e\x65\x14\x4c\x92\x8f\x6f\xe5\x46\x5d\x25\x9b\xf7\xfb\x49\x2e\x5f\x3b\x22\x3b\x27\xf2\x48\x45\x1a\xcf\xf6\x27\x35\xdc\x5f\x9e\x4f\x94\x7d\x70\xe2\x4b\xfd\xf0\xdb\x60\x7a\x6c\x9a\x42\x3b\x25\xb7\xc4\x03\x73\x39\x47\xb4\x98\xf1\x27\xbf\xea\x58\xf6\x4d\x79\x38\x99\xda\x17\x3e\xf1\x3c\xe8\x16\xfd\x00\x33\x4a\x84\x58\xeb\x17\x4b\x7f\x95\x90\x12\xa7\x92\x3f\xde\x01\x0c\x31\x65\xc8\x55\x11\xed\xc4\xc2\x31\xd9\xc9\xae\xf0\x07\xcd\xe6\xd0\xab\x9f\xd2\x14\x34\xce\x2c\x8a\x7c\xd5\x8c\xec\x87\xaf\x90\x3a\x96\x68\xd8\x77\x4e\xb6\x2b\x30\x0e\xcd\x90\xf8\x27\x2e\xd1\x08\x62\xa2\x9a\xa8\xa7\x0d\xca\xcd\x87\xb2\xb5\x0f\x07\xba\xf1\x99\xf1\x1d\x60\x12\x2b\x02\x51\x4f\xf4\xa3\xe7\x35\x74\x6b\x89\x54\x10\x71\x34\x7d\x81\xef\xbc\xa9\xc9\x0e\x23\x89\x2d\x8e\xca\xa3\x45\x60\xba\x81\x56\x30\xb0\x46\xfc\x93\xe6\xc8\xce\xe1\x46\xd8\x97\xd0\x30\x63\xea\x53\xe2\xc5\xe3\x1a\xf1\xa9\x60\x04\xff\x44\xb3\x45\xc3\xd2\x88\x34\xc1\x9b\x15\xae\xef\xd0\x8d\xba\xea\xc9\x98\x21\x7f\xd3\xc1\x16\x80\xbc\x44\x80\x47\xdf\x18\x0e\x0a\xbe\xc4\x71\x5e\x54\x75\xb7\x2c\xc9\x62\x11\x6a\x1d\x95\x0e\x49\xa8\xd6\x77\x96\x07\x64\x1f\x8c\xbd\x32\x65\x09\x55\xe9\xcf\xef\x6a\xb6\x58\x25\x2e\x72\x8e\x13\xfc\x4e\xee\x2e\xe0\x90\x6a\xda\x88\x88\x17\xe4\xd7\xa5\xcc\x1d\xa3\x71\x12\x7b\x45\x97\x0d\xe0\xa3\xd9\x04\xb4\x59\x98\xbb\x79\x24\xd4\xde\x6a\xf9\x60\x9e\xf4\x9e\x47\x75\xca\x09\x61\xe3\x5e\xd0\x95\xe8\x84\x92\x97\x70\xa3\x9a\xdb\x36\x04\x5c\x75\x9f\x70\x2b\xd3\x43\x00\x6d\x4f\x1d\xea\x96\xb8\x1d\xc7\x9d\x96\xea\x03\x28\x0b\x48\x0b\x5c\x28\x77\x93\xb4\xb5\x15\x16\x16\x5c\x0e\x36\x1a\xb7\x18\xf4\x1b\x1e\xaa\xd5\x78\xbf\x11\xfd\x6a\x95\x66\x00\x44\x12\xaf\xc3\x0b\x3a\xd3\x3a\x06\x71\xab\x26\x5e\xc7\x74\x6d\x4d\xfc\xf7\x1d\x97\x4b\x77\xec\x9a\xa2\xad\x18\x69\x7c\xac\xc5\xca\x98\x15\x3e\x2a\x3f\x3c\xaf\x20\xf3\x4f\xbe\xd9\x5a\x04\x05\x4c\xea\x20\x44\x7f\x7a\x2e\xcd\xb4\x7e\xd8\xd2\x4b\x19\x5f\xed\xd0\x9a\x9b\x3a\xf6\x94\x11\xeb\xdd\x5d\x23\x20\x55\xda\x86\x7c\xe3\xfc\x59\x53\xb5\x65\x19\x97\xb7\x13\x3c\x84\xcb\x34\xb4\x90\x8b\x2d\x12\x20\x45\x1b\x1c\x30\x56\x2d\x1c\xfd\x57\x4e\x53\x4a\x1a\xbc\x15\xf8\x82\xfa\xc8\xb4\xf9\x71\x7a\x74\x7f\xf6\xdf\x05\x21\xab\x12\xce\x26\xea\x4f\x1a\xa8\x79\x1a\x94\xb1\x4e\x58\x85\x78\x04\x81\xd5\xd0\xbe\xfd\xed\x5a\xd7\xd6\x39\x4d\xb6\xaf\x3b\x46\x65\xbf\x96\x47\xbd\x62\xf2\x89\x2a\xef\x64\x0b\x59\x17\xc5\x21\x1e\xda\x02\x0d\xe4\x8e\xbd\xdf\x0e\xf6\x84\x6e\x49\x5a\xdb\xc6\x3f\xfa\xe4\x3b\x20\x03\x5b\x6e\xdc\xdf\xf3\x8c\xb4\xf4\x83\x8f\x26\xf1\x81\xdf\xef\xd7\x76\x02\x60\x64\xe8\x04\xa4\xc6\xc9\x06\x9b\xd6\x08\x2c\xfa\xb2\x80\x3a\xc4\xb4\xbd\x56\x1e\xcd\xb9\x65\xdd\xf5\x3f\x19\x75\x47\x8b\xa3\xe1\xa0\xd6\xf5\x5d\xe4\x05\x7c\x84\x6a\xfc\xe7\x0c\x71\xa5\x66\x74\x77\x5c\x3d\x23\xfe\xed\x47\x16\xab\x23\x1a\xa6\x1c\xe5\x49\x9d\xe7\xc1\xf9\x6b\xfc\x79\x2e\x1c\xdd\xb2\x88\x20\xac\x41\x5d\x09\x99\x2b\x5c\x5f\x4e\xcb\x1a\xcb\x82\x76\x18\x5f\x7c\x04\xb8\x96\x93\x62\x4f\x34\x65\x4e\xaa\xdb\xe5\x28\x6f\x8f\xdc\xa1\xa5\x63\xb4\xf2\x87\x5a\x9c\xc9\x27\x83\x16\x7f\xdb\x6b\x1f\x1e\x96\xc1\x30\x88\xd5\xe8\x75\xa3\x94\x8b\x07\x71\x01\x40\x79\xe5\x85\xfa\xf1\xf1\x7c\x5e\x40\x46\x3b\x07\x89\xfa\xd1\x45\xf1\x71\x91\x2b\x06\x63\xcd\xa6\x96\x0b\xc2\x9a\xd4\x93\xfb\x85\x1b\xe6\xa5\x63\x9e\xaa\xc0\x6c\xf6\x8e\x11\x5f\x85\xeb\xad\x98\x8c\xd4\x04\xb6\x64\xa7\x21\x7e\xf8\xe2\xeb\x6f\x9d\xbb\xf4\x93\x29\x9f\xbf\x17\xee\xa8\x88\x8b\xa5\x7c\x64\xfe\xf2\x6e\xf1\x52\xa6\x5f\xdd\x31\x93\xfb\x55\xed\x2b\x8f\x82\x7d\x55\x0b\xbc\xb4\xb0\x74\x73\x8b\x75\x2d\xb1\x08\x0d\x53\x26\x75\xe7\x06\xb8\x01\xc0\x88\xd3\x54\x8c\xbb\x77\x89\xd4\xb4\x08\x53\x0f\x71\xcc\x72\xa1\x77\xf4\x04\xed\xee\x32\x8e\x87\x3a\x43\xa2\x30\xea\x32\xb3\x55\x58\xfc\xea\x38\x96\xfa\x57\xdb\x46\x82\xee\x7f\x75\x48\x58\x66\x82\x7c\xf6\x49\xf0\x31\x6c\xe2\x09\x05\xd6\xbf\x03\xca\x6f\x0c\x99\x72\x73\xf4\x89\x95\xaa\x3f\xeb\x45\xc4\xc9\x6c\x3f\x6f\x6b\x17\x43\xfa\x9e\x09\xd7\x51\xcf\xa3\x50\xab\xe8\x23\xcb\x01\xa2\x16\x3b\xb8\xc4\x92\x7a\xab\xdb\xd1\x28\xa8\xdc\xa0\x56\xc2\x79\xee\x5e\x7b\x1e\x58\xe5\x53\x01\x18\x39\xad\x89\x8d\xa6\xb0\xef\xd4\xbc\xf1\x87\xe5\x33\x98\x35\x71\x80\xe1\x67\x37\x5c\xd1\xd0\x77\x47\x0e\x0f\x80\x7a\x3f\xfd\xd3\xa9\x6d\xb2\x2e\x37\x6d\x2a\x9c\xc5\xc3\xf1\x60\x2a\x22\xbc\x96\x06\x72\x5f\x98\x78\x41\x72\xac\xb9\x36\xa9\x62\x69\x2b\xc3\xaf\x26\x30\x1c\x1d\x30\xae\x07\x53\x46\x07\xd7\x79\x7b\xf3\xcc\x48\xf5\xa3\xa7\xcd\x9a\xd5\xc5\xfb\x98\xc5\xbd\xe9\x51\x26\x34\xae\xe8\xeb\x3b\xe0\xe3\xf0\xaa\x5c\x69\x68\xfb\x08\xed\x94\x59\xb8\x2f\xf1\x7d\xff\xfb\x9d\x59\xcd\xd3\xf8\xe5\x73\xde\xf9\x19\x8f\xce\xb2\xfb\x74\xbe\xa0\x83\x52\xd3\x8b\x68\xc5\xfa\x36\xd9\xdd\x5c\xb7\x60\xee\xf5\x8b\x78\xea\xac\xb5\xeb\x84\xce\x24\x06\x5c\xb0\xb3\x45\xea\x09\x55\x92\x34\x16\xdd\xbb\x66\x34\xf8\x22\xbe\x49\x1b\xfa\xa2\xe8\x1b\xd7\xb4\xc9\x8a\x89\xd5\x85\x18\xdb\x0f\xd6\x0b\x9a\xc8\xf2\x9e\xf8\x20\xde\x7e\xbb\x48\xfd\x25\xec\xe1\x32\x91\x93\x9c\x4f\x68\xf0\x5e\x2e\x4c\x9a\x08\x1e\xe4\xba\x8e\x6b\xc6\x25\x1c\x39\x2a\x1d\x39\xee\x7a\x43\x03\xd2\x71\xca\x03\x9f\xd4\xff\x76\x4b\x5a\x0b\x37\x70\xe6\x15\x77\x1c\x50\x11\xdc\xa3\x5e\x9d\x4a\x06\x76\xfe\xf2\x37\xb2\x31\xcd\x62\x71\x43\xce\x39\xd7\x85\xb5\x5b\xce\x08\x44\x91\xd5\xe2\x0a\x00\xb3\xe2\x26\x10\x2c\x11\xbc\x8e\x36\xee\x07\x8e\x1c\x98\x99\x02\xca\x34\xe1\x4d\x30\x47\x75\x1c\x88\xca\xda\xa1\x00\xf0\x5c\x8b\xa6\xa5\xd4\x08\xfb\x5b\xac\xe7\x9a\x52\xfd\x27\xf7\xd3\x31\xea\xa6\x63\xc4\x55\xde\xd3\xef\x3d\x65\x81\x86\x74\x47\x75\x4e\xb9\x6c\x8a\x8e\x7c\xfa\x2a\x9d\x98\xcb\x95\x67\x78\x00\xf9\xd9\x7b\xc3\xc0\x0a\x21\xae\xc8\xf9\x1f\xdf\x75\xcd\x70\x2f\xb3\x86\x65\x21\xdf\x19\xe4\x9f\xb9\x56\xbf\xed\x01\xa3\x24\x48\xd2\x4d\x1c\xb2\x2f\x04\xbe\x26\x16\x11\xd3\x65\xf7\xc9\x8b\x80\xc6\x21\xe2\x4b\x04\x85\x08\xb9\x65\x81\xca\xe6\x98\x3b\xc9\x8a\xc9\xf3\x0f\x46\xcb\x45\x1e\xf5\x83\xe2\x75\xc2\x2e\x39\x3f\x2c\x52\xa4\xa3\x40\xc9\xa1\x47\x1b\x5f\xce\x8e\x7e\xa9\x44\xd2\x18\x87\x86\x69\x2f\xd8\xc1\x88\x29\xf6\xf4\x94\x0d\x62\x7f\x33\x8f\x51\x64\x35\x38\xad\x33\xf7\xdd\x75\x62\x45\xb5\x04\x31\x46\xa0\xde\x57\x7b\xf9\x9c\xe4\x7b\x15\x7b\xa2\x0e\x60\xb4\x5b\xa6\xac\xc1\xd3\x43\xb4\xb2\x53\x09\x72\x08\x75\xf9\x7b\x36\x2b\x28\x55\x47\x5a\x61\xed\xbd\x4d\xeb\x55\x89\x29\xc7\x6e\xc6\x85\x6f\xa7\xdf\xb1\xce\x3d\xd4\xd3\xcd\x02\xf0\xf3\x09\x42\x53\x2e\xa9\xe7\x69\x26\x30\x7c\x4c\x26\xa8\x4c\x4f\x82\xa1\x03\x46\xbe\xc8\x25\x07\x4e\xa4\x37\xa8\xcc\x17\x28\xc0\xeb\x75\x41\x8b\xc4\x61\x23\x51\x94\xba\xe2\x29\x8d\x16\xcd\x70\xa8\x09\xcf\x15\x26\xf6\x8d\xd6\x4a\x6d\x79\x78\x44\x43\x1a\xff\xf6\x97\xdf\x1f\xad\x57\xc5\xb8\x82\xa0\x15\x54\xfe\x43\x75\xcd\x78\x54\xf2\xe6\x93\xbf\x1f\xd2\xa6\x8e\x13\xf6\x78\x86\xc2\x5e\x9c\x72\x78\x9c\xfe\xce\x9e\xa1\x80\xb5\x50\xa3\x5c\xc6\xe7\xae\x07\x01\xa2\x1a\x79\x16\x0d\x79\xd9\x91\x9f\xd5\x06\x6e\xb1\x10\xe9\x2e\xf6\x44\x93\x37\x6b\x3a\xcf\x98\x79\x4d\x54\xcd\xf8\x8d\xe6\xff\x70\x4a\xa5\xe4\x4a\x48\x9c\x20\xee\x4b\x3e\x75\x42\x65\x8e\x06\x43\x7c\x25\x9b\x3f\x76\x04\xac\xf2\x91\x67\x62\x16\x47\xf0\xff\x18\x29\xd7\x18\x2c\xb0\x43\x06\x6d\x89\xcd\x87\x34\x3d\x07\x1a\x87\x6a\x7e\x99\x2f\xb9\x76\x18\x44\x24\xd9\x88\x6b\xbe\xe4\xdf\xb9\x58\xcb\xb0\x01\x97\xa3\x95\xe2\x6d\xf9\x6b\x37\xa8\x30\x06\xac\xb7\xf8\xdd\xbc\xeb\x09\x80\x17\x14\x7b\x1f\xfe\xa1\xbf\x7c\x22\x31\xa9\x48\x57\x5f\xf1\xd3\x7d\x67\xbe\x76\x0a\xb8\x3e\x6d\x96\x89\x70\xdb\xa3\x17\x80\x99\x89\xef\xc7\x4d\xb6\xe0\x91\x6d\xbe\x3f\xfb\xf2\x69\x10\x50\xfd\x08\xbd\x04\x50\xeb\x26\xe5\x5b\xa8\x68\xd0\xaa\xa1\xea\xd6\x27\xf3\xa2\xdc\x8e\x07\x35\x34\xb4\x20\xb2\x40\x15\x83\x67\x9e\xd5\x64\x49\x71\x62\xcb\xf7\xe0\xfe\x4b\xf4\x56\xa5\x99\x05\x5e\xfe\xd3\x4e\xa0\x7b\xc6\x9a\xc2\x1d\x3a\xff\x77\x4c\xe3\x76\xa3\x66\xb6\xc1\x31\x2e\x3f\x9e\xad\x0f\x3d\x79\xba\xcf\xb4\xaa\x9b\xb9\x45\x1d\xe5\x52\x5c\x3a\x3b\xa0\x0f\x28\xdc\x76\x32\x3b\x8d\xa9\x51\x07\x9b\x48\xfb\x8e\x85\xb3\xe6\x00\xa8\xbc\x67\x31\xdc\x28\xf6\x44\x57\xbd\xa7\xad\xa8\x12\x6f\xf8\xc9\x13\x26\xc4\xb7\x79\xd1\x36\x6d\x5a\x68\x63\xec\xf0\x06\x45\xb2\x3b\x17\x3f\xa8\x4d\x3d\x3b\x3a\x2d\x91\x33\x8d\x85\xdb\x64\x37\x62\x9a\xa1\xcb\xcd\x46\x79\x2a\xfd\xa8\x07\x66\x75\x0e\xb2\x84\x22\xcd\x5d\xc7\xf5\xd5\xab\xe7\x87\xd2\xac\xf3\xca\x6b\xb5\xbd\x87\xf4\xcd\x10\x44\x00\x0e\x79\xcf\xef\x59\x93\x7d\xc9\x76\xe8\x55\xe2\xae\xd2\x4b\xe5\x9f\xb6\x0c\x06\xa3\x3d\xb7\x44\xa4\xc6\x5b\xd4\xed\x0c\x95\x45\x8b\x57\x71\xe2\x18\xc2\xa3\xf1\xb7\x0e\x83\xb5\x1e\xc1\x61\x80\x3d\x24\xa4\x6c\x8c\xbb\x81\x88\x6b\x99\xa1\xd0\x8a\x7f\xca\xfe\x91\x2d\xb2\x0d\x98\x93\x7a\x04\x8a\xae\x4f\x53\xf2\xf4\x31\x57\x4d\x4c\xb7\xc4\xff\x7b\x8e\xf0\x93\xb8\xc9\xad\x21\xf3\xe6\xa0\x75\x3a\xf8\xb1\x6d\x62\xb4\x41\x3c\x57\x5a\x11\x2d\x5e\xaf\x30\xd8\x0d\x5e\x55\x16\x35\x4c\x47\x95\xe0\xba\xda\x5a\x9c\x5a\x05\x0c\xc8\x1c\x90\x2e\x16\xbf\x78\x8e\x0c\x78\x9c\x76\xf6\x3f\xd7\xea\x0e\x7d\x95\x90\x61\xd1\xdb\xbd\x6c\x0f\xcf\x46\x88\x44\x7e\xf1\xff\x03\x78\xa3\x74\x71\x50\xec\x89\x86\x3d\xaa\x92\x76\x59\x40\x5a\xf9\x33\xfc\x87\x9d\x6a\x22\x52\xa1\x5c\x93\x01\xf4\xb5\xbb\x40\x1c\x42\x01\x29\x83\x5e\xf6\xf1\x40\x95\xd7\x71\xb1\x11\x2d\xbd\x46\x59\xa4\x54\xe2\x80\x79\x04\xcc\x92\x3c\x54\x4f\x3c\xf7\x72\x97\x6c\xd2\xc8\xf1\x35\x8c\x4d\x5b\x4e\x68\x36\x77\x83\x01\x14\xe5\x9a\xa1\xbc\x22\x6e\xbb\xbf\x1d\x82\x30\x6e\x82\x9b\xb6\x63\x8a\x84\x0f\x4b\xb8\xdc\x85\x13\x81\x41\x06\x75\x6b\x0e\xee\x13\xfb\x90\xfc\x17\x17\x67\x76\x61\x8b\x17\x2f\x99\xbc\x58\x70\xa6\xce\xfd\x60\x38\xcc\x46\x71\xe5\x29\x6a\xa2\x3b\x97\x2b\x73\x77\x68\x4a\x9f\x8b\x5e\x57\x10\x9d\x0a\xf2\x2a\xf1\x75\xf0\x3b\x92\xcf\x3d\xe4\x75\x50\xb1\xf9\x7e\xc2\xa3\xfa\xe9\x56\x60\x42\x2c\x3f\xd4\x77\x76\x5f\x00\xd6\x6b\xc2\xc0\x99\x53\x9c\xe6\xbc\xa7\x15\xe6\x2e\xa5\x81\x2d\x61\x74\x85\x3b\x6f\x1f\x96\xfc\x85\xda\x1e\x44\x1f\x7e\x0b\x30\x6f\x54\x84\xfa\xe4\xb0\x11\x60\xea\xe1\x31\x0a\x6d\xea\xed\xbd\x70\xc0\x2c\xe2\xd2\x77\xd7\x65\x5f\xd6\x34\x61\xb4\xc4\x03\x4b\xee\xc0\xe8\x36\xf9\x1f\x13\xb3\x2a\x90\x18\xcf\x0e\xd7\x4d\xc6\x43\x4f\x72\x25\xa7\xbc\xaa\xb6\xec\x0d\xce\x19\xcf\xde\xac\x3b\xa0\x39\x12\x43\x9e\x5f\x43\x0c\x0b\xa2\xe6\x84\xd1\xd2\xea\x32\xa0\x8c\x83\x4d\x8c\x4f\xcc\x18\x01\xa0\x70\x40\x7e\xb3\xd8\x13\xa1\xf7\x74\x2d\xd8\x26\xf2\x02\x2d\xe9\x1d\x5c\x22\x75\x16\xb1\x53\x4e\x5e\x41\x61\xd9\x39\xc0\x6e\x58\x3a\x3a\xc5\x3f\xf1\xa9\x07\xb3\x4f\x41\xe8\x86\xcb\x01\xdb\x3f\xef\x86\x9a\xae\xe5\xb0\x82\x79\x0e\xbc\xa1\x43\xc7\xce\xc5\x77\xd4\x0f\xb8\x9b\x80\xca\x06\x77\xf7\x6b\xd8\x44\xe2\x0b\xe3\x9c\x80\x52\x29\xb4\x18\x4d\x5c\x3b\x34\x9d\xfd\x95\x52\x84\xea\xd9\xe3\x24\x0e\x46\x28\x0c\x15\x7b\xa2\x17\x00\x8f\xcb\xa2\x0d\xcf\xa1\xc8\x4a\x74\xd2\x4a\x9a\x2e\x3b\xc7\xe8\xf1\xa8\xfe\x93\x25\xc3\x32\x03\x64\xe9\xd7\x73\x87\x26\x6d\x9f\x48\xea\x0b\x62\xaa\xab\xd3\xdc\x31\xa3\x9c\x5c\xce\x3b\xe7\x37\xca\xd9\x24\x50\xc1\x94\x55\x08\x92\x72\xbc\x3c\x0a\xdc\xf0\xaa\x98\x11\x76\x77\x5c\xcd\xe5\xfe\xfd\x89\x3a\x68\xcb\x4f\x9d\x07\x7e\xb9\x1d\x60\x71\x85\x6a\x85\xcc\xf9\x1b\x6f\x57\xf7\x68\x7a\x47\x37\x07\x26\xed\x9a\xa2\x49\xc8\x75\x4a\x68\xcb\xbf\x1f\xd5\xfc\x75\x38\x28\x4d\xec\x8d\xca\xbb\x81\x9e\x64\x18\xf8\x44\x02\x31\xf2\xd3\x07\x03\xca\x2e\xc3\xc8\x95\xcf\x73\xf2\xfb\x1f\x95\x05\x13\x1f\x9c\xb7\xdf\x00\x8d\xe1\xca\x94\xb9\x89\xa2\xdd\x39\x41\xfa\xf2\x84\xa4\x2d\x77\xd4\x3f\xa6\x0c\xdc\x8b\xd3\xe2\xa3\x37\xe5\x36\x4d\xe4\x1e\x97\x84\xb8\x33\x7f\x02\xcb\x9f\xcf\x66\xb5\x0a\xa3\x61\x2d\xc9\x5a\xd1\x21\x09\xcc\xa8\x30\x64\x85\x32\xbd\xe7\xbf\x5d\xd7\x0a\x1f\xec\x0a\xcd\x83\x44\x53\x21\xdf\xfb\x10\x90\xb5\xf4\x7c\x69\x46\x16\x1f\xad\xee\x91\x1a\xdd\x5c\x44\x42\x8e\x98\x11\x4d\xea\xb6\x56\x17\x0e\x4e\x77\x12\x0b\xbf\xa7\xc7\xab\x99\x59\x1d\x5b\x98\xd3\xe4\xd3\x06\xb8\xb9\x5f\xe4\xb9\xe9\xdd\x57\x17\x7b\xa2\xb5\x8f\x02\xe5\x16\xcc\x7c\x14\x08\xa5\xfb\xc2\xaa\x37\x87\xcb\x58\xd8\x20\x4e\xfc\xd2\xe3\x1a\xb9\xd8\x13\xbd\xb6\x34\x8d\xf7\x0d\x5b\x81\xa5\xa2\x2f\xed\x01\xab\x22\x1a\x32\x13\xa7\x02\xcd\xb4\xae\x9a\x79\x9b\xb2\x16\x14\xdf\x40\x7e\xc7\x7e\x11\x61\x3a\x67\xce\x10\x07\xd2\x78\xee\x2c\x39\x0a\xa4\xd4\x2a\x35\xf9\x3b\x1f\x3c\x58\x31\xb5\x7c\xe4\xd2\x3a\xd2\x09\x6a\xd1\xc7\x59\x86\x56\xed\x27\x18\xa4\xfc\xff\x1d\x53\x8d\xb0\xaf\xe0\xab\xd1\xc7\xea\xc0\xf0\x97\x13\x41\x8e\x6c\x93\x4b\x6a\x64\xd1\xac\x8b\xd9\x5d\x07\xb3\xc5\x4b\x7c\x50\xab\x84\x25\x6a\x49\xb9\x09\x96\xe4\x4e\x53\x16\x1f\x6d\xfe\x92\x6f\x5b\x0e\x5e\xb2\xcb\xc5\x7d\x65\x06\x7f\x7d\x06\x9c\x1a\x98\x28\xbe\xfc\x9c\xb5\xf9\xdc\x3a\xf8\x1d\x88\x8b\x13\x6a\x90\xf6\xeb\x13\xba\xa2\xd4\xae\x33\x1e\x78\x59\x2c\x13\xaf\xb3\x31\xd7\x95\x49\xf2\xca\xf5\x13\xe5\x34\xaa\x81\x91\x14\x0a\xfe\xe1\x4b\xc3\x80\x8e\x82\x49\x2c\x51\xec\xfd\xe2\xf6\x8b\xc0\x1f\xbb\xd4\x64\x5c\x28\x51\x6a\x8e\xb4\x77\x41\xe9\xc2\x20\x35\x2d\x7a\x78\x2c\x34\xd3\xe6\x03\x77\xa1\x8f\x91\xbf\x67\x1e\x30\xd4\xc5\x0d\x61\xa8\x5b\x58\x09\xa6\xd4\x0e\xe6\x64\x55\xfe\xe0\x57\xef\xbc\x20\xbb\xce\x48\x25\xf0\xaf\xdb\xa0\x50\xbe\x1d\x1d\x71\x71\xf3\xa9\x0f\xc4\xe1\xf4\x49\xc5\xe3\x75\x91\xb0\x16\x8f\x7e\x3b\x42\x53\x36\x17\xd3\x9b\x84\x0f\xb2\xa5\xa0\x9b\xcc\x48\x4c\x72\x72\x95\xaf\x3c\xa0\x2c\xcd\x57\xb7\x82\x34\x7f\x3c\x46\xfa\x83\xda\xc8\xab\xf2\xba\x64\xac\xc6\xf5\x75\xb1\x4b\xe5\x28\x65\x71\x34\x02\xa8\xf3\xb0\x00\x02\x1e\x8c\xb6\xcd\x19\x1d\x48\x1c\xd6\xc5\x44\xf6\x2f\xa3\x00\x28\x8c\x9a\xa1\x28\xc3\x8d\xb7\x8e\x83\xe6\x8a\x0b\x89\xc4\xcf\xe5\xd5\x35\x2a\xe1\x08\x0f\x53\x95\x60\x37\x3c\xab\x55\x2d\x58\x7c\x4f\x09\xe2\x2c\xf0\x77\x10\xff\xc5\x92\xa5\x4b\xe0\xae\xfa\x80\x38\xc3\x37\x86\x3e\xf1\x84\x13\x99\xf7\x80\x2e\x55\x62\x62\xb7\x84\x59\xaa\x7d\x31\xec\x3c\xd9\x03\x10\xec\x59\x42\x19\xa5\x7e\x8d\xa6\xbb\xcf\x42\x87\x98\xb6\x50\x0a\x49\x72\xef\x82\x67\xc5\x81\x5d\x40\x2c\x4c\xa1\x95\xc0\x35\xda\x00\x12\x23\x29\xa4\x17\x5d\x7b\x1b\xb4\x1e\x64\x15\x71\xf1\x26\xbd\xaf\x71\x0c\x09\x33\x19\x2a\xcb\xfc\x95\xdb\x7d\x5a\xc7\x82\xd5\x31\x4b\xfd\x99\x8c\x7f\x01\xc5\xa0\x4f\x78\x09\xf3\x1d\x09\x8a\x6f\xe2\xb8\x9c\x14\x2c\xe9\x4f\xbf\xa7\x36\xba\xa8\x5a\xc6\x2d\xec\xd7\x7b\xef\x1f\xa1\xb5\x9f\xbe\x92\x15\xdc\x0f\x38\x1c\x15\x69\x2e\x1a\x5f\xea\xaf\xee\x12\xbf\x69\xae\x4f\x12\xca\x5d\x74\x48\x6c\x3b\x8b\xcb\x19\xaa\x63\xe7\x0c\x78\xb9\xfc\xe0\x95\x0a\x63\xcc\xcd\x53\x53\x25\x6e\x4d\xab\x2c\xdd\xd7\x14\xee\x3d\x9c\xfd\x74\x42\xc3\x4f\x52\x8e\x6e\x94\xfb\x02\x5e\x2e\xf2\x99\xce\x01\xe5\x97\xda\xd5\xc9\x49\x33\x7f\xd1\xba\x6b\x37\x64\x16\x35\x6d\x4d\xe3\x7f\x2c\x40\xa0\xa0\x12\x91\x21\x2d\x5a\x94\x3d\x42\xa5\x38\xa3\x50\x0f\x11\x86\x85\xfd\xf2\xe0\x67\x15\xb6\x2d\xee\xaa\x8b\x0c\xa5\x40\x83\x4f\x9f\x04\x4e\x4c\xd8\xa4\x15\x8f\xf4\x8b\x78\x55\x5c\x97\xa6\xf1\xae\xf1\xfc\x17\xdd\x3c\x0f\xe6\x54\x29\xd2\x12\xbf\xd1\xb9\x0f\xaa\x88\xc7\x15\xe4\xca\xe5\xf8\xb5\x7c\x6a\x43\xcb\x9a\xab\xc6\x41\x2b\xc9\x18\xef\x81\xb5\x60\x24\x28\x4c\xe9\xa3\x53\x2f\x5e\x02\x22\x77\xe8\xb4\xf0\x85\x73\x13\x5f\x6f\x41\x25\xf4\x62\x33\x48\xdc\x01\xfe\xfe\x18\x90\xaf\x55\x51\x21\x5a\x18\x80\xe5\xca\xac\xb8\x9c\x8a\xfe\x6e\x3f\xd0\x14\xc5\x88\xcf\x95\x8d\x4b\xca\x90\xbd\x4d\x53\x99\xac\xdc\xbf\xf4\x6a\xcc\x43\xda\x10\x83\xdd\xe8\xf0\xc6\x16\x73\xc3\x06\x62\x02\xce\x9f\x9f\x3b\x22\x5d\xea\x57\xf8\x4e\x3e\xdb\x19\x54\xda\x2e\xd1\x0e\x76\x2d\x74\xe0\xf6\x3d\xff\xed\x63\xe7\xc2\xec\xda\x13\x5d\xb9\x4b\x52\x04\xa9\x5f\x85\x1a\x3d\xd7\x69\x26\x44\x16\x35\x43\x21\x25\x30\xa5\xd8\x13\x0d\xde\xa8\xef\x5d\x82\x40\x10\xe3\xf8\x63\x9b\xd6\x97\x3e\xb6\x7e\x08\x2b\xfa\xfa\x3c\x29\x3f\x50\xab\x21\x07\x99\x36\x11\x4e\x4f\x85\x8f\x6f\x95\x13\x8d\x54\xb0\xa0\xd8\x13\xdd\x37\x29\x9d\x8d\x85\x82\x75\xbb\x6c\xc9\x40\xfe\x37\x32\xb0\xfb\xd4\xc1\x2e\xef\x84\x67\x8f\xd7\x7c\xbc\x85\xc0\x05\x80\x88\x45\x8b\x8f\x6b\x54\x7c\x13\x08\x19\x07\x1b\x35\x78\x4b\x85\x61\x0c\xcc\xdf\xf3\x17\x4b\xc7\x59\x3e\x6a\x2a\xf3\xe5\xf0\xc3\x47\x2e\x84\xdd\x2f\x46\xa6\x9d\xcc\x69\xf3\xbb\x83\x56\x4c\x50\x7c\x1e\xc5\x4e\xca\x7e\x30\xfb\xdb\x68\x05\x23\x88\x66\xcb\xff\xb4\x0f\x80\x1f\x1c\xcc\x51\xc1\xc6\x79\xfb\x06\xa7\x7f\x78\x05\xa7\xd1\xef\xd5\x84\x8f\x59\xe2\xc2\x6d\x6c\x6c\x87\xf4\x3d\x52\xe2\x4d\xd6\x1b\x9d\x80\x6c\x13\x10\x53\xac\x15\x0b\x77\x3e\x97\x1d\xe9\xf5\x86\xf1\x5f\x26\x76\xa5\xd9\x35\xce\x4d\xd6\x08\x80\xca\xb0\x10\x3c\x2e\xf9\x31\x6f\x6b\x0c\x1b\xec\xe0\xb8\x33\x91\xeb\x8a\xe8\x3f\x1e\x6b\x07\x6d\xa8\x27\x7c\x1b\x85\x87\xec\xd2\x91\x9a\x62\x1f\x6d\x24\x02\x99\xe7\x3c\x22\x56\xbd\x37\x87\x25\xe4\xdb\x19\x5b\x9a\x5b\x8f\xa8\x58\x53\x47\x4e\xa8\x1c\x10\x7e\xbc\x7d\x18\xc8\xe6\x9e\x85\x79\x64\x2b\x5c\x56\xce\x2a\x04\x89\xe9\x25\x72\xce\x38\xbe\x3c\x30\x55\x64\x4a\x81\xa3\x10\xb0\xd1\x73\x6e\xd7\xf3\xb4\x49\x3d\x2b\x81\xb5\x5c\xa4\x0d\xa1\x4c\xc4\x52\xac\x5a\x61\xe8\x92\x2b\xb4\x7f\xea\xc5\x3d\x0b\x2b\xb5\x2c\x47\x0f\x1f\xd4\xec\x53\x91\x57\x4d\x6a\x01\x63\xfc\xae\x4b\x5b\x4e\x16\x63\x61\x2d\x50\x85\x53\x61\x73\x00\x39\xb3\x62\x24\x3f\x50\xb8\xfc\x84\x84\xc8\x0a\x3e\x99\xac\x07\x3b\x86\x68\x00\x3e\xe9\x07\xac\x65\x8a\x6b\x87\x41\xa4\xba\x83\x3c\xc2\xdb\x8e\x09\xdb\xb3\xcf\x83\xdb\x0f\xa6\x9f\xa3\xe7\x1a\x51\xf7\x2d\xd0\x76\x4d\xc6\x37\xc7\x67\xa1\xc2\x0e\xa9\x25\x60\xc9\xec\x3b\x38\xba\x59\xb5\x29\xb4\x26\x81\xc4\x02\x1f\xf0\xca\xf3\x92\x15\x5e\xf1\x48\xb2\x0c\xbd\xe1\x20\x10\x22\xe3\x06\x1c\x71\x06\x68\x9e\x10\x11\xe7\xfa\x90\xd1\x1a\xe6\x21\x9c\x97\xc8\x43\x1f\xc9\xa6\xdf\x09\x4c\xcc\xcf\xa3\x4b\x77\x88\xf8\xb2\x3a\xa4\x01\x8a\x6f\xce\xde\x75\xd9\x16\xbd\x97\xda\x9e\xd7\x9c\xdc\x01\x2a\xb8\xbb\x57\xe9\x7b\x58\xd4\x90\xae\x6a\x46\xe7\xd3\x10\x7c\xeb\xd1\xa6\xfc\xb8\xa1\xe6\xbc\xea\x3b\x9c\xe0\x2c\x2b\x9d\x9f\x1c\x15\x4d\xf3\x34\x81\x02\xc9\x6f\xeb\x84\x2a\x2b\x8e\x20\xad\x5d\xbd\x46\xef\x84\x39\x55\x40\x2c\x93\x8c\x4b\x1e\xd0\x75\xc0\x4c\x13\xfb\x7e\x39\x74\x44\x22\xc7\x53\x45\xf7\xb4\x04\x05\x0c\x52\x1d\x07\x72\x97\xed\xd3\xea\x07\xe4\xf0\x0a\x73\x72\x06\x08\xfc\xd6\x72\x85\x2f\x43\x6e\xcb\x41\xfe\xdd\xf1\x6c\x5d\xe9\xdb\x88\xd5\x92\x89\xaa\x80\xe9\x45\x77\x3d\xa1\x71\x64\xf8\x5b\x93\x0f\x6e\xa9\xa6\xa3\x5a\xc3\xb4\x96\xa2\x57\xdf\xec\x3d\x13\xf6\x5a\x0c\xdb\xb6\x9c\xd6\x30\xdc\x82\x64\xc9\x59\x48\xc7\x35\xdb\x15\x0e\x73\x4c\x82\x7d\xb1\x27\x3a\xf4\xdc\x85\x99\xb7\x15\x7a\xe2\x6f\x8b\x3d\xd1\xf8\x89\xad\xd8\x50\x91\x0c\xef\x1c\xa2\x3a\x84\x8c\x51\xde\x6e\x71\xe9\x12\xdc\x20\x8b\x8f\x13\x1e\xad\xea\x9e\xd0\xe3\x20\x5f\x29\xb2\xf6\x05\x0f\x02\xb5\x18\xa9\x10\x31\x41\xc9\x7f\x73\x08\xd0\x64\xb6\x05\x03\x7f\x4d\x9f\x78\x7b\xcb\x69\x03\xb3\xac\x9d\x6a\x97\xbe\x33\xf3\x2c\xbf\x81\x6b\x89\x05\x6a\xd7\xa0\x31\x5a\x10\xa9\xc7\x79\xad\x82\x38\xe7\xa2\xc6\x57\xbb\xc6\xa2\x0f\xce\x10\x69\x50\x86\x27\x56\x28\xbd\x94\xd6\x74\x65\x4a\x8a\x3d\xd1\xf7\xc7\x88\x3c\x39\x73\xe6\xd5\x71\xc9\x1a\xff\x9c\x65\xef\x5e\xa6\x37\x5d\x38\xd0\xa5\x0e\x0b\xe7\x2d\x07\x0b\x16\x2c\x05\x95\xf2\x9f\xd9\x77\x6e\x3a\x83\x2b\xc5\x8f\xee\xc2\x2d\x9a\xc2\x92\x70\x81\xd0\x19\x25\xb9\x47\x34\x8f\x4b\x4c\xe2\x26\xbf\x23\xf1\xb8\x5c\xdd\xa5\x9e\x73\x40\x5c\x9c\x38\x24\x18\x3f\xdf\x20\xbc\x10\x6a\x61\xc9\x21\xa6\xc2\xa5\xc4\x1f\x66\x63\xb9\x1d\xee\xc4\xb1\x8f\x71\x32\x30\xdc\x6d\xb5\x83\x71\x34\x72\x4b\xa4\x12\x0a\xee\x72\xfe\x5f\x36\x9c\x0f\x6a\x42\xae\x90\xc3\xcb\x87\x4d\x2b\x00\x16\xaa\x26\xb9\x6a\x06\x3d\x47\xc4\xaa\xf9\xd8\x83\x11\x33\xd7\xfd\xbe\xb2\x2a\xef\x9e\xc5\x8b\xf0\x6b\xda\xc1\x98\xc6\xa5\x15\xec\x61\xf9\x2b\xf7\xf5\xca\x79\x76\x5c\x4d\xab\x18\x7e\x62\x4f\xfa\xb2\x84\x95\xa5\x61\x9e\xa5\xe6\x29\x9d\x1d\x7c\xb4\x56\x3b\x0d\xac\xbb\x18\x05\xd3\x97\x81\xdc\xaa\xe7\x00\x28\x80\x0b\xe8\xc6\xad\xd6\x0f\x9e\x1d\x9e\xa4\xf4\x0a\xc3\xbe\xcf\x41\x80\xf1\x43\xf9\xd2\x88\xe1\x70\x55\xea\x70\x16\x33\x7f\xfa\x43\x2e\x84\xe0\xa2\xa0\x86\x98\x87\x7c\x2e\x63\x93\xdf\x11\xe9\xd0\x19\x97\xa4\x0a\xd7\x73\x8f\x83\xf9\x22\xf6\x90\x43\xfa\xf9\x3f\xfa\xdf\x6b\x81\x36\x7f\xcd\xe1\x27\x95\x27\xdd\x0f\x2d\x1d\xaa\xd6\x47\x61\x12\xf8\xf1\x93\xa3\xb4\x6a\xc3\x25\x7c\xac\x92\x8c\x64\x7f\xf1\xce\xc5\x6a\x09\xef\x90\x7e\x54\xc2\x99\xc6\xad\xf8\xb0\x1e\x57\x59\x8d\x11\x3f\x09\xdd\x85\xd2\x0d\x40\x7e\x1e\x31\x87\x32\x0b\x50\x85\x96\xf5\x0b\x7c\x5f\xd9\xa1\x0d\x7e\xca\x27\x6a\x41\xbc\x81\x51\x15\x7b\x58\xd6\xfb\xbf\x7b\x5b\x5b\x01\x71\x1d\x1b\x49\x1e\x1e\xd9\x26\xe2\xcb\x12\x61\x02\x2f\x35\x08\x2e\x7e\x59\x8a\x29\x52\x2c\xbd\x33\x56\x3d\x08\x2c\x1c\x1a\xff\x3f\x65\xff\x1e\x2f\x45\x71\xe7\x8d\xe3\xce\x25\x48\x08\x72\xe7\x80\x48\x00\x91\x00\x11\xe6\x78\xb8\x5f\x96\x10\x04\x45\x24\xc8\x10\x40\x44\x42\x08\x35\xdd\x35\x33\x75\xa6\xa7\xab\xad\xee\x9e\x73\x09\x41\xbc\xac\xb2\x84\x18\x96\x18\x1f\x62\x58\x43\x0c\x31\x2e\x8f\x71\x0d\x31\x2e\x21\xc6\x35\xc6\x9f\x21\xc4\x18\xc3\x1a\xd7\x45\x97\x18\x96\x25\x2c\x21\x2e\x31\xac\x21\x2e\xa7\xf3\x7b\x75\x7d\xaa\xba\xaa\x6b\xce\x7e\x5f\xaf\xe7\xaf\xc4\xc3\x39\x33\x7d\xa9\xfa\xd4\xe7\xf2\xbe\xa0\xba\x27\x55\x3a\xb3\xdf\xeb\x0b\xc7\x4c\x35\xf4\xb9\x45\xce\x8c\x0d\x06\x54\x9f\x61\x14\x80\xbe\xd1\x13\x9b\xe0\x57\xb9\xf6\x5c\x31\x1a\xd1\x0a\xdf\x52\xc2\xdd\x1e\x70\x14\xfe\x34\x52\x2d\x9e\x12\xd2\x09\xb5\x3d\x99\x8d\x6f\x69\x4e\x8b\xa0\xa4\x57\x8c\xbe\xf9\x72\x93\xd8\x40\x9c\xab\xa5\x4e\x99\xfc\xd5\xb6\x1a\x1a\x05\x34\xae\xef\x75\x5f\x86\x75\xca\x33\x1e\x71\x57\xfe\x3e\x17\x86\xe9\x02\x26\xaa\x9c\x79\xf2\x92\xd6\xe0\x0a\xa1\x73\x1a\x5d\xbe\x6a\x8c\x91\x6c\x55\xaa\x36\xb2\x35\xd4\x4f\x76\x83\xa1\xac\xe4\x55\xe3\x82\xd8\xe3\x33\x25\xad\x0f\xb2\x6d\x90\x96\x72\x06\x56\xfc\x30\x33\xd9\x4d\xc3\x94\x62\x7d\x87\xb6\x82\x36\x3d\xa4\xab\xa3\x59\x88\xeb\x79\x65\xf2\xef\x18\x4d\x09\xc4\x9d\x13\x79\x89\xf2\xb9\x45\xa9\xdd\xc4\x70\x05\x20\x9b\xd9\xe5\xaf\x69\x1d\x3d\xe2\xfb\xc4\x16\xf6\x25\xd9\x9d\xcf\x19\x78\xd7\x2e\x0f\x4b\x3b\x2a\xd4\x6d\x30\x5a\x42\x8f\xeb\x8b\x0a\x17\x81\x7f\x72\xcd\x1c\xd4\x71\xa8\x1c\x31\xec\x7e\xcd\x58\x22\x5d\x75\x69\x9a\x6b\x0f\x81\xd0\x73\xbd\x6b\xeb\x8a\x80\xd5\x97\x20\x59\xbb\xad\x8a\x31\xc6\xe0\x70\x7e\xcf\x3a\x15\x7c\x4a\x01\xcf\x57\x3e\xdb\xae\xcd\x50\x49\x39\xc5\x4d\xac\x5e\xba\x42\x91\x3c\x6b\x1c\xe5\xf0\xbe\xe6\x60\x04\x97\xcf\x6f\x7b\xd9\x42\x5d\x38\x94\x21\xa7\x8b\x47\x89\xec\x83\x6f\xf5\x17\x2b\xd3\xad\xc5\x67\xc9\x84\xf7\xb5\x37\x16\x4a\x8f\xea\x57\xf5\xc1\xa2\x8d\x59\x9d\xb8\xd0\xbf\xf8\xfc\xe2\xe1\xe6\xd4\x02\x9e\x73\x6e\xfa\x4e\xc1\xed\x09\x19\x40\x72\x7a\x32\xbf\x3a\xa6\xee\x84\xba\x85\xa0\x8a\x0b\x65\x82\x39\xcc\x2b\xff\xa9\x03\x9a\x10\x08\x6a\xee\xaf\x67\x27\x2c\x32\x90\x4a\xf1\x0e\x14\x27\xd7\xb0\x23\x49\xcf\x93\x56\x9a\x40\xe0\xd9\x2d\x83\x8c\x42\x36\xb4\xb9\x92\x4e\xc2\x16\xff\xbf\x67\xd3\x03\x9f\xcf\x88\x6c\xea\xec\x2e\x6d\x30\x47\x3c\xcf\x01\x18\x6e\x7e\xc8\x6a\x83\x54\x46\x69\x19\xa8\x28\xd1\x07\xca\xe9\x4c\x0a\xf4\x66\x44\x22\x15\x3f\xe0\x89\xab\xa0\x74\x9b\x37\xab\xa9\x90\x5c\xbb\xf8\x2a\x33\xca\x60\xb7\x84\x12\x63\xd8\x53\xed\x86\x85\x89\x8f\xcb\xa1\x23\x2c\xb5\x8a\x3d\xb9\x27\x9e\x83\xb8\x57\xd5\xc7\xcb\xf9\x01\xe7\x9a\x14\x23\x05\x33\x3d\x9a\x7e\xde\xc0\xd0\x11\x30\x1c\xcb\x3e\xfd\x1e\x04\xb5\x0e\x12\x54\x0b\xc5\xa8\xef\xf3\x57\x68\xc0\x98\xf8\x52\x66\xad\x34\xa5\x15\x04\x1e\xba\x18\x7d\x74\xad\xa9\x68\x44\x38\xc5\x5a\xe2\x40\xef\x5c\x6e\x6a\x8d\x70\xff\xd4\xc4\xc8\xf0\xcc\x3b\xe6\x61\x17\x04\x0e\x24\xaa\xd1\x5f\x3f\x36\x58\x44\x87\x06\x09\xe4\x49\x97\xfd\xeb\x47\x4d\x33\x41\xa8\x86\x3e\x72\xad\xf0\x9e\xa2\x0d\xec\xfa\x44\x6b\xd0\x66\x7f\xf0\xa4\x91\x32\x61\x9b\xa0\x5e\xcc\xa8\x5b\x8e\xa8\xda\x1e\xdb\x44\xe7\x82\xf5\xe4\xbe\xf1\x82\x41\xee\x64\xb8\xb3\x57\xf6\xd0\xe8\x61\x1a\xe0\xb1\x33\x10\x5d\xb8\x9e\xcc\x3f\xed\x33\xc5\xd6\xdd\x60\x4a\x7b\x3b\x3f\xa5\xfb\xac\x18\xa9\x21\x35\x03\x7d\xe4\xd3\x93\xb7\x0c\xea\x5f\xbc\xd3\xe3\x34\x23\x19\x13\x9c\x98\xab\x12\xa1\xba\x6a\x55\xc6\xab\xe4\xbf\xa7\xa6\x23\x77\x03\xb3\x0a\x62\x28\x9d\x7a\x66\x56\xbc\x9f\x9c\x20\xb3\x66\xf2\x52\xeb\xec\xeb\x26\xff\xca\x15\x4a\xf9\xd1\x8f\xdf\x53\x39\x10\x75\x03\xc4\xb8\xb8\x4f\xde\xdb\x95\x40\x2e\x58\x05\xeb\x03\xbc\xce\xb7\x8d\xda\x31\x74\x09\x65\xa9\xda\xb1\xe8\x19\xfd\x20\xe9\xd2\x21\x7b\x20\x3f\x5f\x6e\x78\xa6\x86\x4e\x40\x44\x5b\x56\x39\x7c\xc7\x57\xbe\xe0\xf0\x60\xad\xfd\xea\x61\xd0\x7a\xfa\x84\x12\xbc\x46\xac\x49\x4b\x3f\xfb\x99\x36\x38\xc8\xab\xd8\xae\xf0\x4e\xd1\x12\x63\xf8\x5b\xc6\xd8\x91\xfe\xf0\x99\x1f\x2f\x32\x5e\x48\x80\x02\xd8\x65\x22\xbd\x1a\xa4\xa9\x74\xfa\x01\x43\xba\xe2\xfd\xd6\x77\x34\xdc\x02\x50\x19\x12\x38\xdb\xb1\xf4\x89\x54\xe5\xc6\xbc\x09\xd8\xe8\xca\x0b\xa6\x9a\x7a\x5d\x1e\x8d\x8f\xb9\x86\x8b\x34\x66\xf5\x29\xb8\x33\x7e\x1e\x6b\x34\x97\x4c\xd2\x48\xf9\x62\x6d\x5e\xa9\x6b\x30\xfb\x42\xa3\x66\x51\x49\xb0\x8f\x51\x40\xfc\x32\x12\xd8\xc0\xe8\xc9\x0b\x43\x8d\x1c\x00\x78\x86\xa7\x34\x02\x4a\x89\x61\x10\x9b\x89\x0e\x9d\x54\x47\x1b\x22\xac\x50\x8c\x7e\x63\x84\x74\xca\x65\x77\x20\x87\x8b\xda\xd4\xc0\xac\x83\x0f\x4f\xf3\x0f\x9c\x6f\x6e\x01\x25\x4f\xe2\x9c\x06\x7c\x2d\x0b\x55\xda\xab\xdf\x4d\x4e\xc7\xb9\xb3\xa6\xc7\x1f\x31\xf1\xd0\xd8\x14\xbd\x04\xb1\xae\x26\x21\x80\xcf\x2c\x32\x3b\xdf\x98\x93\xfe\x45\x99\xf8\xf9\x56\x75\x40\x96\x09\xb8\xc1\x3f\xf6\x84\x86\x39\x22\x6e\x45\x5a\xb6\xfd\xc7\x09\x78\x6e\x1a\xe4\x95\x9f\x1f\xcb\x1e\x36\x25\x23\xc5\xf0\x9b\x03\xf1\xae\x34\xa6\x55\x01\xa9\x53\x26\xf4\xba\x79\xee\xf5\xec\xa9\x81\xfa\x81\xcb\xc5\x2b\x3e\xb8\x54\xa1\xb0\x3d\x46\xf8\x7b\x3e\xfa\x7c\xb2\x87\x67\xcf\x99\x1b\x7f\xf4\xc7\x36\x6b\xef\x80\xf3\x5d\x72\x9f\x3a\x6d\xc8\x07\x11\xae\x4b\x0c\x87\xd5\xe0\x97\x35\x1f\x65\x4a\x39\xaa\xec\x9f\x0f\x98\xa6\x19\x88\xb8\x4e\x57\x42\x3f\x7d\xc8\x68\xb5\x33\xea\x63\x2b\x4c\xfc\xf4\xa3\xb7\x07\x18\x8c\x89\x7a\x3d\x74\x05\x12\x3a\x3f\xef\x6d\xe3\xc9\x00\x8e\x4f\x94\x3a\x7f\xbf\x48\x9f\x47\x4a\x09\x2e\xe1\xd8\xf3\xe7\x93\xe9\x78\x10\x17\x3c\xbd\x73\x74\x4e\xf6\xd5\x0a\x5d\x1d\xa4\xb3\x2b\xa5\xc0\x55\x06\x25\xf0\xdc\xe3\xab\x21\x45\x72\x51\x9d\xe7\xe7\xd7\x6e\x57\x4b\xad\x83\x32\x5e\xb9\x66\x9e\xb9\x56\x3d\xa9\x2a\x81\x86\xf7\xfd\x5b\x0d\xf3\x53\x46\x70\x99\x53\x67\xe3\x45\x33\xfc\xee\x16\xf3\x39\x0a\xde\x68\xee\x87\x27\x61\xdd\xdc\x42\xcb\xa8\x5b\x0b\x14\x3f\x79\x4b\x37\x33\x62\xc4\xf1\xb9\x32\xd4\x15\x43\x4c\xb9\x3d\xd8\xa2\x32\x6f\x3d\xfd\xac\xee\xc6\x15\x08\x92\x5d\xf6\xd7\x27\x34\x32\x7a\x50\x28\x46\xdf\x39\x6c\x1c\xea\x55\xec\x94\xc5\xa3\x3f\xdf\xa2\x59\x7c\xd4\x70\x89\xba\xbc\x1f\x37\x7f\x87\xee\xdd\x8f\xac\x2a\xaa\x51\x0e\x1b\xc8\xd8\x87\xe1\x1e\x2a\x61\x50\xf0\x42\x57\xce\xda\xf3\x6b\x4b\x26\x78\x8f\xd6\xb0\x2b\xe0\xeb\x3d\xef\xc0\x1f\xad\xc3\x2e\x71\x90\x93\x98\xa7\x1c\x77\x75\x88\x87\xcd\xa4\x42\x66\xee\x87\x47\x34\x79\x2b\x0f\x5b\x04\x39\x05\x8f\x76\x08\xe8\xcd\xa0\x43\xd2\xbd\xd0\x73\x08\xa4\xb2\x83\x5f\xd4\x4c\xef\xeb\xda\x91\x3a\x23\x9b\x5e\x3e\x35\xe4\x79\xa8\xb7\x1e\x78\xfe\xfe\x87\x07\x68\x17\xc3\x5b\x54\xef\x3d\x30\x48\x1b\xfe\x75\xc1\x6c\xfb\x57\x67\x0c\xd3\xb1\x36\x61\x3a\xc6\x03\xd6\xd7\x5a\x27\x9b\x69\x52\x9d\xc8\xb6\xbb\xd9\xf2\xfd\xb1\x29\xbd\x1b\x6f\x38\xbe\x9b\xf2\x97\x19\xb9\xad\x1b\x90\x82\x5f\x25\x9e\x64\xb9\x4d\x5d\xdd\xa2\x21\xd2\x42\x3f\xe0\x8a\xe5\x1c\xdc\xd0\x19\x18\xe6\x9a\xdc\x8b\x03\xe8\xd6\xd9\xf7\x17\x9b\x84\xdb\x3a\x06\x19\x91\xe8\x3f\x2e\x41\x3f\xe8\x66\xb7\x1b\xd5\x51\x3d\xd4\x59\x2f\xbb\x26\x8f\xd0\xa0\xfa\xbc\x8b\x28\x25\x9b\x32\xfb\x5f\x9f\x68\x1c\x92\xd8\xab\x22\x97\x7a\x34\x74\xa8\x9f\x1a\xf6\xf4\x3d\x07\xfd\x93\x35\x5d\xb6\xab\x1f\x50\x99\x3d\xe7\xb4\x27\x8d\x79\xff\xab\x27\x7f\xcd\xa1\x24\xd1\x08\x9d\xb2\x6e\xfa\x9d\x79\xe5\x0c\x88\xe4\xaf\x62\xd4\xf7\x30\x23\x41\x33\x47\xf4\x8e\xb7\x4c\x48\x45\xdd\x73\x30\xa7\x71\xc3\x70\x39\xbb\xc3\x31\x94\xca\x68\x49\x76\xcd\x72\xb7\xea\x04\x20\xdf\x0f\x99\xc4\x36\x64\xbf\x24\x8c\x36\xf9\xba\x2c\xf3\x96\x43\x66\xc7\xdb\xc3\xb4\xad\x18\x7a\x1e\x0a\xb9\xd4\x6d\xe6\xe5\xf5\x06\xc9\x16\x25\x27\xf9\xe6\x13\x02\xfd\x02\xf2\x2f\xf1\x6f\x9f\x79\x48\x47\xbf\xb8\x44\xec\xe8\xb6\xdd\x26\xf7\x3b\x8e\xe5\x52\x62\x76\xeb\xc2\xff\x8d\xb9\x27\x73\xaa\x5c\x89\xe9\x9f\x5b\x46\xa1\xc3\xf1\x2e\xe3\xf2\xe9\x85\x32\x43\x73\xcf\xcb\x2e\x9b\xaa\xb6\xc3\x8c\xeb\xe2\x63\x26\x77\xc5\x0e\xa1\x1a\x47\xe3\x2b\x16\xf2\x31\x23\x99\x8a\x90\xb3\x5a\xa7\x71\x75\xd4\x1b\x46\x6b\x7d\xc0\x30\xa8\x3a\x00\xd0\x5a\xff\xa0\xa1\x64\xeb\x61\x6c\xfb\x35\x3e\x9f\xe1\x9d\xe5\x73\x33\xe1\xd1\xde\x11\x72\xdc\x28\x6f\xc4\xcc\x99\xab\x54\x2c\xc0\x70\x45\x5f\x08\xf9\xb1\xaf\xa6\x33\xfe\xc0\x22\x22\xe5\x4d\x1f\x0e\x07\x5e\x1a\xa5\x9f\x31\x1c\xd6\x82\xa4\x10\x4a\x74\xc1\xa0\xfc\x0b\x3d\x78\xcc\x84\xc2\x4e\xee\xc6\xe7\x9a\x0e\x30\x52\xf7\xe5\xa6\xbf\xcb\x90\x2f\xa9\xa0\xba\xd4\xbe\xca\x7c\xaf\xa1\xa9\xb0\xd3\x38\xbb\xf6\x41\xc9\xed\xd6\x56\xd5\x16\x99\xd1\x56\x80\x46\x62\xee\x07\xeb\x95\x54\x16\x93\x66\x4e\xf9\x9b\x34\xe5\xe1\x3a\x76\xa8\x0d\x6e\x5e\x99\x17\xce\x18\xb3\x60\xcc\x2a\x84\x4e\x49\xe1\x6d\xe6\xe7\x35\x1e\x8d\xdb\x20\xd0\x97\xfc\x7c\xff\x11\x29\x4c\x13\xc0\xf5\x01\x21\xf8\x94\x70\xf0\xf5\xe3\x95\x24\xa7\x67\xd9\xdf\x1a\x33\x70\x8e\xf6\x49\x66\xe0\x99\x81\xf7\x36\x11\xb7\x78\x5a\x9a\xcf\xaf\x15\x7a\x70\xb2\x81\x3c\xc2\xf4\x03\x92\x63\x38\x4e\x5b\x4f\xa6\x70\x81\x91\x7a\x77\x31\x05\x14\xe5\xec\xf7\x15\x86\xf3\x53\xc8\x28\xc0\x18\x32\xff\xf1\x7a\xff\xa4\xca\xe1\xda\x7b\x06\x07\x1f\x00\xed\x29\xb8\xed\x86\x71\x06\x52\xc7\xe2\x8c\x5e\x29\x16\x7e\x50\x60\x0e\x41\x55\x24\x5e\x36\x60\xf4\xdd\x6d\x58\xfa\xf1\x1a\x30\xc9\x5e\x47\xef\x51\x7d\x1c\x8a\x0b\xc5\xa8\x94\x37\x77\x72\x3b\xaa\xa3\x84\xb9\xdc\xdf\xd4\xc2\xe2\x7d\x1e\x81\x52\x75\x77\x0d\xd4\x1b\xd8\xbc\x78\x9b\x34\xce\x24\xbf\xf8\x3e\x0e\x7d\x05\x1b\xdb\x0a\x9c\xc2\xc2\x92\x2a\xb1\x50\xb3\x2e\x58\xee\x1b\x83\x40\xe2\x79\x5d\x7c\xc6\x57\x50\x17\x56\x94\xda\xe8\xe4\x7c\x25\x9d\x55\xd5\x14\x1e\xb3\x43\x16\x69\xad\xf4\x19\x3c\x27\x3a\xfa\xa0\x46\xa2\xc2\x0c\xda\x75\x99\x37\x6d\x15\x44\xc1\xb3\x4e\x00\x89\xbe\x69\x74\xe4\x4a\xb8\x42\xdc\xa4\xcc\xcd\xb1\x95\xaa\xc2\xe4\x62\xfe\x49\x85\xf9\xd9\xd1\x49\x75\xc7\x48\xd0\x74\xa0\xde\xd6\x92\x8e\x06\x8c\x04\xdd\xbd\x68\xb4\x64\x36\x74\x0e\x16\xe9\xa0\xe3\x20\x4f\x58\xd2\xe4\xbe\x77\x5a\x13\x13\x85\xfe\x16\x77\x68\xe5\xb8\xe6\xcd\xa6\xcf\x9b\xc5\x35\x8a\xa6\x36\x83\x52\xf6\x1a\x44\x17\xe4\x38\xfc\xd7\xd4\xc4\x66\x68\x7e\x88\xa8\xa2\x88\x55\x40\x85\x12\x43\x20\x87\xf0\x44\xba\x43\x4c\xcb\x01\x76\xb9\x51\x18\x91\x93\xc0\x9e\xec\x7f\x9d\x33\x87\xd8\x25\x21\xaf\xeb\x56\xa6\x14\x5c\xea\xe2\x42\xa1\x18\xfd\xff\x5e\x9a\xd4\x9c\x35\xfb\x28\xe8\x85\x93\x9d\xfd\xfd\xe2\xd1\x46\xf4\x12\x64\x05\xa1\xe2\xfe\xd4\x01\xad\x5a\xe8\xe2\xc0\xc7\xfc\x92\xd7\x54\x82\x86\x18\xb1\xdb\x53\xfc\xca\x7f\xd4\x90\xef\x65\x86\xef\x08\x61\xa4\xf8\x96\x80\xa1\xda\xb4\xc3\x05\x5b\x87\xe8\xdd\xf5\xf0\x24\xd6\x20\x57\xcf\x88\x5f\x7a\xd4\xe0\xba\x32\xda\x2d\x08\x5f\xb9\xdb\x87\xc9\xf3\x97\x21\x02\x2a\xf7\xf9\x8d\x06\x0c\x5a\x9a\x73\x0b\x1d\x99\x7d\x6d\x3a\x1a\x04\x31\x9b\x97\x3c\xf9\x35\x7d\x0d\x6d\x9a\x4e\xde\x6d\xc1\xb6\x9c\x29\xff\xd8\x80\x3b\xf3\x01\x0d\x08\x7c\x09\xe4\xcf\xd1\x7b\x4d\x3b\x21\x56\x8f\x2b\x2d\xe9\xaf\x9b\xf9\xc3\xd3\xe9\x62\xfa\x33\x82\xca\xf7\x25\x43\xf7\xba\x2a\x06\x7b\xc5\x68\x82\xc8\x2f\x50\x7c\x42\x81\x91\x77\xee\x88\x2a\x79\x7d\xef\xba\xf8\x73\xdf\x5a\xaa\xa9\x0e\xa3\xa6\x7d\xfd\x96\x30\x5d\xe6\x2c\x06\xae\xc5\xc8\x2f\xf7\xcd\x0b\x5a\xd4\x77\xe2\xb5\xa2\x9e\xf9\x5f\x1b\x4f\xc3\xef\x20\xbe\xaf\x66\x03\xd1\x1d\xfd\x87\xeb\x43\x3c\x2b\x40\x16\xb8\xc1\x66\x06\x2d\x35\xd2\x58\x0f\xbb\xa0\x55\x96\xdd\xf0\x28\xa4\x0c\xa1\x5b\x46\x84\xc1\x91\x9e\xbd\xa7\x9a\x22\xdc\x0a\x15\x84\xcc\xcc\x0d\xe9\xbe\x5b\x39\x64\x50\x7e\x9a\x99\x5d\xfb\xc1\x74\x9c\x2c\x23\xd7\x22\x89\x8d\xe6\x2b\xbb\x34\x3b\x71\xe2\x50\xfe\xc3\x8d\x47\xd2\xa9\x4e\x07\x0d\x1d\x5b\x76\x79\x2e\xaf\x0e\xd5\x08\xf7\xb8\x26\xcb\x93\xdb\x0d\x6e\x1d\x77\xb2\xe4\x91\x5f\x54\x4f\xef\xcf\xbe\x52\x97\x9a\xf0\xaa\x58\xc3\xcc\x7d\xea\x3e\x83\xd5\x88\x5c\xc3\xea\x29\xf7\xe5\xd7\xcc\x9e\x69\x83\xa0\xa4\xa4\xee\xc9\xcd\xd3\xa6\x38\x75\x54\x71\xf9\xc8\x33\x3f\xe5\x52\x2f\x18\x7b\xea\xf8\x82\x09\xdf\x7f\x91\x10\x61\x72\x31\xab\x00\x53\x78\xfc\x0b\x06\x0f\x36\xec\xaa\x19\x53\xe9\xe8\xf8\x63\xfc\x53\x0b\x6b\xb9\xe9\x7f\xb3\xe1\xff\x2b\x1a\xbe\x95\xd8\xbc\xd3\xd3\x93\x69\x1f\x03\x67\xfb\x12\xec\x83\x9e\xc7\xde\x77\x35\x34\x17\x75\xe0\x87\xf7\x1b\xd8\x0f\xde\xaa\x96\x27\xd4\xa1\xa3\x5a\x74\xc1\xbc\xc1\x73\xf1\xc4\x58\x23\xd6\x8a\xc9\x34\xd4\x3f\x3c\x3f\x9f\x71\x9f\x81\xc8\xa3\x8c\xeb\xf9\x00\x31\xe6\xd8\x22\x0d\xc4\x4c\xdd\x10\x30\x0d\x3d\xf9\xb1\x8f\x0d\x4b\xc1\xcb\x7d\x42\xb9\xb9\x5b\xa6\x67\x97\xa1\x7e\x4e\x3b\x64\x3b\x2e\x7a\xb5\xdd\xb4\x78\x62\x35\x2c\x4d\x56\x27\xbe\x62\xbe\x42\xdf\xc7\x9a\x62\xed\xcf\xf6\x25\xfb\x14\x37\x6b\x8a\x65\xb6\x55\xb5\x69\x2e\x71\x1a\x3c\xe9\x8c\xff\xee\xf9\x4e\x83\x69\x21\xec\x44\x5c\x69\x7f\x91\xbb\xba\x65\xb0\xc8\xe9\x6c\x62\x09\x3a\x5f\x4f\x76\xdb\x2a\xa1\xb0\xa4\x6c\xee\x35\xbf\xc6\x32\xe3\x73\xc3\x9e\x4c\xbf\x89\xe9\x8f\x6f\x47\x6e\x6a\x6d\x46\x6d\x86\x32\xa0\x8f\x3a\xa4\x74\xd5\x17\x8e\x6b\xb4\x60\x1a\x57\xb7\xd2\x8d\xf0\xc9\x65\x26\xc8\xdd\x43\x90\x66\xf1\x42\xf1\xa9\x6a\xef\x84\xda\xb8\x34\x35\xfb\xb4\x6f\xbe\xde\xc4\x40\x77\xb1\x15\x68\xca\x61\xb9\xb5\xeb\x87\x6b\x4d\x4d\x16\x10\x2b\x84\x05\x97\x79\xd2\xe0\x7a\x5a\x98\x05\x88\xb8\xf2\x08\x7d\xf4\x1d\x18\x20\x38\xb4\x54\xea\x22\x29\x4a\xc2\xc7\x0c\x5a\x5b\x9d\x74\x62\x5b\xe6\x67\xab\x0e\xa5\xe3\x41\x0d\xe8\x27\xc9\x52\x7e\x5e\x43\xb4\x48\x99\x33\x1e\xf0\x96\x2a\x2d\x01\xca\x85\x42\x7f\xbf\x56\x8c\x93\x91\xcb\x91\x89\xd1\x9c\x75\x9a\x1e\x32\x66\x0d\x0c\xb4\x81\x9e\xbc\x73\x50\x53\xfd\xe1\x13\x3a\x0e\x65\xdb\xd6\x92\x8c\xc6\x70\x2f\x68\xa4\x6b\x9f\x87\x3b\x5c\x8c\x9c\x9a\x21\xd8\x3c\xe5\xa4\xfa\x40\xcc\x90\xc0\x32\x67\x4a\xd3\x0d\x9c\x00\x62\xc8\xf7\xf9\x80\x0b\x5a\x78\x97\x69\x78\x04\xae\x4d\xc7\xa0\xf4\x3d\xfa\xb6\x0a\x0c\x25\x5a\xa1\x01\x87\x3b\xff\xf7\x04\xe3\x48\x68\x60\x06\x76\x6a\x77\x3e\x6a\x20\x81\xb1\xb0\x7e\x8b\xdc\xf3\x9a\x88\x19\x46\xb0\x7a\x5f\x99\x69\xe0\x0c\xab\xd4\x97\x7d\xa5\xec\x67\x0f\xa6\xe3\x5a\x7b\xe8\x90\xd0\x37\x08\x7d\xa3\x5e\x34\xfd\x53\x9c\x72\x81\xd4\x51\x25\x11\x72\x1e\x73\xd8\x34\x4f\xe8\xb2\x68\xa0\x46\x57\x0b\xd7\x29\x50\xbb\x2e\x02\x9b\x7b\x69\x87\x66\xd7\xe0\x97\xb0\x1f\x00\x9c\x68\xf5\xa3\xa2\xb4\xaf\x22\x61\x11\xd5\xbd\xd8\x6c\x46\xb8\x65\xc6\xcd\xe5\x2b\xc2\x51\xc8\xd6\xb2\x2c\x9b\x21\xfe\x52\xbe\xd5\xa2\x5c\xde\x79\x66\x9e\x7e\xcb\xc3\xe7\x0b\xa1\x36\xcb\x0a\x3d\xe4\x5a\xbc\x63\xb9\x60\xe1\x60\x3d\x9e\x56\x82\x2a\x9f\xbe\x2d\x34\xe8\x9a\xf3\x66\xcd\x2d\xcc\x9e\x03\x7a\x40\x7b\x36\xf5\xd2\x86\xe2\x71\xf4\xc2\x6b\x46\xcf\x5a\xda\xfd\x4a\x7c\xfe\xd2\xdd\x6a\xe6\x50\x42\x56\x0d\xf4\xd6\x79\x6d\x7a\x44\x33\x8f\xaf\x87\x7e\x95\x51\xca\x29\x9a\x19\x36\x59\x37\x87\x60\xcd\x8d\xdc\x67\xba\x0d\xf5\xb1\xb8\x6c\x46\x29\x8a\x46\xee\x73\x7d\xe1\xde\x53\x5c\xe6\x27\x55\x8d\x1f\x1f\x62\x9c\x5d\xa6\x90\x62\x73\x5f\x48\x7f\xac\x47\x30\x03\x89\x5c\x35\x28\x99\xb3\x1d\x36\xce\x2a\x8e\xbe\x4b\xd1\x89\xaf\xdc\x3a\xd6\x78\x16\x84\x63\x83\x7c\xee\x1c\x07\x65\xe2\x88\xdd\xe9\x22\xb8\xd4\x05\x12\xef\xf9\xfe\x4a\x21\x0c\x69\xda\x72\xf9\xdc\x1e\x31\xa7\x27\x8e\xc3\x1d\x3f\xf7\xa5\xd7\x49\x95\xd6\xa9\x8f\x3b\x43\xde\x40\xe4\x41\xe8\x39\x0d\x5b\x52\x0a\xed\x0a\x80\x53\x3f\xb9\x02\xea\xd3\x15\x34\x24\x3e\x11\xb6\xb1\x71\x95\x7c\xb7\x18\xf9\x5a\x55\xc2\xd7\xf2\x29\x6d\xa8\x5a\xc2\x55\x5c\xa7\x7c\x14\x4c\xa7\x2b\xf9\x68\xda\x2c\x83\x3c\xee\x79\x53\x9d\xd2\x0a\x45\x26\x04\x37\xfe\xcd\xd7\x74\xb1\x41\x37\x60\x08\x90\x5f\x7f\xde\x3f\xc2\x3c\xca\xbb\xa6\xb0\x12\x77\xeb\x39\xf6\xa0\x69\x6a\xe2\x48\xcd\x4b\xd0\x27\xf8\x9f\xed\x49\xd8\x64\x90\x49\x7c\xe7\x84\x46\x4d\xab\x22\xd7\xc5\xc2\xbb\xb2\xde\x6e\x82\x95\x83\xc0\x49\xac\xf5\x67\x9c\xe4\xaf\xae\x70\xb3\x6b\x63\x2f\x2e\xd1\xdd\x66\x93\xed\x27\xb7\x0c\x4e\xae\x9e\xb8\xc2\xd1\xac\xab\xaf\xd1\xcc\x67\x34\x04\xd6\x72\xee\x9b\xdb\x54\x2a\x5d\xc3\x44\xc7\x4c\xe5\xab\x8b\xc7\x36\x67\x68\xa4\x14\x6a\xc0\xe5\xdc\x3f\xae\x4a\xf5\x85\x6c\x7e\x90\xc4\xff\xf0\x5b\x83\xa2\x81\xec\x06\xf1\x29\x13\x50\xc5\xcc\xde\x4b\x43\xe2\xff\xb7\xaa\xb8\x26\x25\x8b\xb5\xf6\x6a\x73\xa3\xfa\x3e\xe2\xc4\x00\x22\x95\x30\xa2\x95\xf7\x6a\x8e\x29\xa1\x6b\x23\x48\xc7\x87\xe7\x85\x3e\x0f\x28\x54\xc2\x91\xb5\xb3\x7b\xb8\x71\x1e\x34\x80\x11\x93\xfd\xec\x53\x43\x34\x96\x5c\x60\x73\x73\xdf\x9e\xec\x7d\x87\x06\x69\xe7\x4a\xe8\xf1\x9e\xc5\xf2\xf9\x66\x47\x03\x00\x5d\x3c\xde\xdf\xef\x9a\x06\x45\xed\x71\xc6\xcf\x87\x65\xdf\x7b\x41\x26\x37\x01\x3f\x0d\xe1\x2d\xcf\x9f\x6f\x4a\x16\x06\x32\x88\xe7\x87\x4c\x34\x4a\x46\x4a\x6d\x51\xc0\xfe\xf3\x00\x93\x0e\xc1\xa8\x9f\x34\xef\xb6\x9d\x36\xce\x07\xc4\x50\x3b\x6e\x50\x95\xb7\x74\x18\xd2\x78\xa1\x5b\xc5\x88\x49\x2f\x8d\xbf\x19\x69\x02\x77\x3d\x4f\xc9\x63\xb1\x43\x63\xcd\x73\xd5\x86\x76\xa7\x8a\x65\x2f\x9f\x31\x73\x1d\xc7\xc1\x29\xa7\xf2\xdc\x3d\x6c\x84\x99\x83\x0a\x00\x70\x84\xd6\xe9\x7e\x66\x5c\xfa\x46\x9a\x88\x64\xff\xf5\x44\x7f\x51\x0b\x00\x41\x27\xf3\xd3\x73\xc6\x94\x4f\xfc\x01\x58\x70\xe4\x26\x6c\x37\xe0\x5f\xc4\xed\xae\x62\x97\xb8\x3a\xbb\xe4\xf8\x26\x7d\xee\xc4\x07\xd7\x7c\xbe\xf9\x8e\x89\xb2\xe2\x1a\x63\x52\x0a\xac\xdf\x79\x93\x26\x02\x53\x4e\x31\xcc\xff\xe0\x32\x53\xd4\x02\x3b\xb6\xac\xb2\x67\x4b\xcf\x45\x2e\xcd\x0b\x2c\xd5\x3f\x1d\x10\xd3\x8a\x00\x39\xc4\xc8\x71\x88\x66\x39\x2c\xdc\x11\xe2\xef\xb8\xfa\xf4\x00\x79\xe8\xb8\x82\x28\x70\x57\x43\x73\x79\x0a\xb1\x2f\xf6\x44\x66\xcc\x68\xdd\x73\x35\xf4\x08\xbf\x8e\x2f\x6c\x36\x16\x52\x10\xe0\xba\x27\xa8\xcf\x93\x8e\xeb\x84\x70\x5a\x28\x33\x8c\x0b\xc5\xe8\x67\x03\x34\x27\x46\xa7\x50\x8c\x2e\x9f\x38\x14\xbb\x5c\xe1\x9a\x9b\x45\x2c\x45\x8e\x8f\x0b\xc5\x91\xa6\x7c\x19\x2b\x69\xd8\xe3\xa5\x6d\xe9\xd2\xb8\xa3\xdd\x91\xbd\xd0\xf4\xd1\xf9\x13\xa3\x56\x91\xe6\x95\x1c\xfe\x73\xf6\xf5\x11\x1a\xde\x27\xac\xf0\xdc\x0b\xf2\x93\x4f\xcd\x15\x86\x60\xd4\x0e\x1d\x98\x73\xdd\xbf\x0f\x4e\x0e\x1f\xb9\xfc\xe9\x3d\xfb\x38\x28\xc5\x71\x32\x7d\x6e\xd5\x69\x61\x06\xe0\x00\xa7\x57\x9d\x93\xd3\xdf\x1e\x24\x19\x9c\xb7\xad\x4a\x84\xeb\x0c\xf9\xda\x8e\x56\x1d\x75\x78\x6e\x9d\x88\x40\xc4\xc3\x8e\xc0\xa0\x65\x0f\xf7\x51\xe9\x7d\x9d\x38\x0e\x76\x5d\xf0\xdd\xce\xbd\xb5\x5a\xe7\x21\x23\x2b\x20\x16\xb4\x49\xe6\x5f\x36\x48\x27\x4c\xf2\xb1\xee\x57\x37\x0d\xd5\x08\xaa\xac\x06\x64\xf1\x9e\xdc\xb6\x1d\xa6\xc4\xa9\x43\x6a\x86\x27\xfd\xae\x63\xd0\x45\x59\x46\x3c\x4f\x72\x8e\x8b\x3d\xf9\x62\xb7\xa6\xff\xeb\xc4\xd5\x60\x7c\xbd\xd7\x1a\x96\x49\x56\x15\x05\x18\x85\xb2\x10\x7c\xe9\x39\x0d\x2c\xd4\x40\x56\x28\xe6\x27\x5b\x4e\x18\x6f\xac\x8a\x98\x1c\x1e\x64\x1f\xdf\x99\x48\x7c\xf9\x01\x4d\xa1\xbe\x3b\x84\xcd\xb3\xcf\x1b\xf7\xbc\x31\xb0\xfe\x29\x23\xc9\xac\x62\xab\x8a\x85\x0a\x7b\x7c\x00\xdc\xbf\xd7\xb4\x68\x25\x75\x31\x9a\x2c\xf6\x64\x36\xed\x55\xb8\x7b\x17\x54\x4f\x26\x8c\x49\x16\xef\xbc\x39\x33\x39\x6d\xfc\x15\x7d\x56\xdd\x20\x35\xda\x28\x14\xa3\x55\xda\xb9\x5c\xa5\x01\x76\xc4\x17\xb6\x6a\x92\x46\xd3\x67\x8a\x1f\x9e\xd4\xcc\xce\xa1\x2b\xcc\xe0\xed\x6d\x54\x70\x3f\xd4\x6c\x5f\xf3\xab\x37\xcc\x31\x36\xed\x90\x19\xfc\xd8\xe3\x86\x51\x04\x47\x6c\x13\x2c\x10\x74\xc7\x27\xca\xa2\xd8\x01\x1a\x70\xf6\x1f\x84\x31\xf0\xba\x1b\x57\xde\xbc\xe2\xfa\x15\x37\xca\x95\xf8\xaf\xa7\x15\x1a\xda\xc3\xa1\xd3\x40\x7e\x50\x28\x61\x56\xc1\xe0\x0a\x77\xe2\x15\x23\xd8\x13\xab\x16\x7a\x52\x1b\x7d\xcb\xc3\x46\x16\x44\x79\x52\xf7\x1f\xe3\xd4\xd3\x29\x31\x8a\xec\x92\xd8\x52\xb9\x2d\xe9\xc9\xa9\x4d\x2a\x71\x2e\xd9\x4b\x3d\x9c\x39\x33\x79\xac\x96\x6e\xb8\x2e\xb6\x9b\x20\x2e\x99\x07\x37\x6b\xb6\xf5\x98\xf1\x7a\x20\x6f\x2f\x32\x85\x8d\xea\x25\x07\xb9\x42\xa4\x2e\xba\xb0\xc7\xe8\xc4\xf3\xd9\x52\x32\xc1\x58\xbf\xcb\x38\xc0\x39\x61\x4e\xfe\x6b\x87\x6d\x40\x77\xc2\x72\x19\x43\xc1\x18\xbd\x78\xc3\x40\xf9\xe3\xa9\x80\x96\x8a\x6e\xbb\x77\x8c\xf6\x78\xb8\x03\xa0\xf9\x92\xcf\x69\x8e\xb0\x1d\x1c\x73\xaa\xc6\x0e\x83\x47\x8e\xd7\x9f\x2e\x77\xb1\xb0\x9a\x7c\x06\xb3\x0b\x0d\x7d\x92\x39\xda\x7c\x3e\xda\xb2\x4a\x73\xac\x63\x1d\xc4\xb5\xc1\x60\x2d\xfb\xe5\x27\x5b\x8c\x52\xd2\x0f\xc4\x34\x69\x58\xbf\x91\x1a\x0a\x00\xce\x0f\xa1\xc8\x19\xad\x17\x13\x4b\xe2\x53\xa1\x9f\x15\xfd\xfc\x11\xb5\xe6\xa7\xb5\x4d\x9d\x05\xcc\x90\xef\x9e\x4d\x29\x34\x22\xb7\x12\xef\xaf\xbb\x5f\x56\xbf\xeb\x62\xa7\x41\x80\x8d\xb2\xc0\xe8\x3b\xe2\x4e\x62\x51\xa8\x7f\x78\xeb\xe7\x41\x96\x8e\x5d\x1d\x88\x31\xec\xa6\x65\xed\x48\x55\xa3\xe0\xbb\x98\x55\x28\x18\xa9\xc5\x77\x34\xd9\x70\x4e\xb5\x18\xf1\x89\x94\xa8\xfc\xec\x6a\xcd\xd8\x93\x22\x2b\x2e\x0f\x1e\x35\xfc\x62\xa7\xb5\xce\x92\x88\x87\xdc\x57\xde\x48\x78\xab\x8e\xb4\xf0\x89\xbe\xa9\x4e\x3d\x52\x89\x97\xc3\x47\xaa\x03\x64\x08\x96\xee\x81\x53\x17\x26\x53\x1e\xab\xe6\xa7\x4c\x52\xe6\x2d\x52\xc7\xaf\x4d\xc3\x12\x80\x9d\x97\x1e\xd2\xf2\x57\xd2\x2d\x79\x2c\xdf\xdd\x93\xbe\x9b\x80\x3a\x49\x9a\x9d\xf9\xcb\x41\x73\xc6\x5f\x4b\xea\xfe\x1d\x46\xe8\x9d\x36\x7b\xea\xcc\xe9\xb3\x0a\x53\x38\xa1\x6f\xab\xad\xb9\x6f\xd1\xf8\x02\x8b\x3d\xf9\x4d\x26\x7a\xb1\x81\x59\x03\x39\xa1\x9c\x13\x66\x7e\xfb\x9a\x41\xf1\x0a\xaa\x2e\xb1\xc4\x18\xe2\x2f\xf9\x61\xaa\x9c\xd7\x47\xb4\xf7\x9c\x92\x9a\x43\x6e\x40\x44\x27\x2f\x53\x58\xae\x6b\x93\x84\xcd\x0e\x63\xdf\xae\xc2\x6c\x6f\x31\xa3\xae\xd5\x4b\x2e\xe0\xf5\xef\xdd\xcf\x09\x00\x6f\x77\xbe\x33\x5a\xfb\xf8\x7a\xd3\x3e\xca\xdc\x7c\x56\xbc\x31\x42\x3b\x09\x17\xf3\xcf\xfd\xf4\xa4\xa0\xbf\x90\x06\x71\x48\x37\xcf\xc5\x78\x1a\xf5\xc0\xeb\xb2\x84\x20\x75\xc4\x60\x38\x9d\x7b\xf2\x01\x05\x2f\x9e\x33\x83\x63\x33\xcb\x4d\xf8\x56\x2e\xdc\x4f\xa5\x5b\x76\xcb\xfe\x74\x40\xe4\xfb\x84\xf9\x30\x19\x4e\x0f\x01\x6a\xc6\xc8\xbe\x12\x82\x7c\x33\x92\xa2\x27\xd3\x5f\xbe\xaa\xc3\x1c\x81\xb9\xd0\x40\xe4\xd9\x50\xe1\x5a\x53\x10\x0e\x39\x28\xb4\x09\x15\x06\xd7\x8f\x98\x36\x1d\xac\x82\x48\xd2\x7d\xcc\x6c\x7a\x5d\xed\xaf\xe9\xb3\xe3\x72\x23\x28\x04\xc0\x6d\xc8\x5f\xb9\xc0\x34\x3d\xf0\x1c\xce\x84\x94\x45\xfc\x5f\xbc\xf4\xab\xa9\x83\xe4\x10\x78\x69\xe5\x7e\xb3\xd9\xd8\x9e\x0e\x4e\xac\x4a\xb2\x17\xd6\xc3\x5b\xe7\x5a\x01\xc8\x4a\x2a\x24\x29\x49\x32\xba\xcd\x78\x2e\x14\x39\x5c\x7f\x51\x3c\xe3\xfc\xcd\x7b\xe1\xbd\xd2\x38\x94\xc3\x4e\x9c\xf2\x1a\x9c\x86\x9f\xc0\x3e\x23\x5a\xc4\xfd\xea\x23\xea\x1e\x03\x54\xc3\xba\xbc\xd9\xe1\x72\xfa\x22\x1b\x94\x8f\x0c\x61\xba\xf5\xe5\x03\x26\xbe\x95\xd9\xbc\x7b\x0f\x9c\xa1\x75\xcf\xa9\xae\x91\x8b\x2d\xec\xfb\x62\x9e\xde\x93\x99\xbf\x53\x25\x21\x56\x58\xe2\x26\xd3\x8f\x1e\x1e\xa1\x49\x24\xf8\xb8\x50\xea\x82\xff\x2d\xf6\x64\x3e\x79\x52\x45\x8a\x04\x96\x9b\x3b\x77\xbe\xf9\xdd\x33\x6e\xf0\x0f\x33\xa2\x6f\xac\x54\x7b\xcb\xa3\x7e\xd0\xc4\xfe\xce\x95\x8e\x1b\x20\xaa\x30\xa0\x9e\x0f\xd5\x69\x6e\xda\x1e\x4d\x10\x8d\xd4\xc1\x7c\xf8\x07\x2d\x1f\x6e\x5e\x6f\x3e\x69\x60\x47\x0a\x82\x95\x27\xc3\x2e\x49\xab\x19\x19\x5c\xfd\x3a\x71\xc3\x00\x4b\x67\xa7\x86\x52\x90\xb7\x08\xb7\x79\xe9\xaf\xce\x91\x19\xb3\x67\x0b\xe2\x61\x6e\xd1\x5b\x23\xcd\x9d\xc5\x29\x2e\xbc\x62\xef\x5e\x3c\x50\xa3\x68\xc1\x56\x5e\x36\x6c\x58\x4a\xbb\xa2\x81\x19\xaf\x7c\xf2\xee\x4e\xd3\x59\xc7\x4f\xd2\xd1\x65\x87\x40\xa0\x89\xa7\x2f\x51\x76\x54\x13\x3e\xd1\x21\x41\x62\x6b\x90\xbd\xfb\xed\xc4\x75\xb7\x3e\xbe\x69\x4c\xde\x39\xca\xd0\x8f\xe5\x28\x35\x1d\x02\x92\xbf\xf3\x5d\x43\x4b\x0c\x59\xb5\x04\x92\x93\xa9\xf5\xd1\x1a\xd9\xae\xcd\xd5\x9b\x8a\x3d\x99\xfa\xd9\x74\xe3\xa2\x0b\xa3\x2a\xf4\x14\x46\xb5\x18\x0e\x8c\x15\x2a\x1a\x04\x95\xcb\x8c\xc1\x04\x8e\x97\x46\xad\x57\xd0\xff\x77\x5e\x83\x97\x58\x47\xc4\x75\x90\x0b\xc8\x81\xe3\xef\x69\xb2\x7d\x7c\xe4\x18\x7d\xa6\x9f\x86\xac\xf4\xbd\x2a\x72\xe2\x9f\xbe\x71\x6f\x7a\x7a\x5f\x0f\x7d\x54\x42\x5d\xb8\x91\xea\x6e\x66\x97\x5e\x48\xce\x54\x9f\x73\x13\xf8\xb1\xbf\x73\x6e\x82\x0d\x72\xba\xa8\x2c\xad\x96\x18\x7e\x42\x1e\xc3\x75\xce\x3a\x16\x4b\xe8\xe1\xce\xff\x95\x18\xcd\x03\x5d\x9f\x1d\x42\x3a\x08\xb1\x0a\x77\x38\xba\xeb\xb2\xa1\x1a\x60\x28\xc0\xac\x8c\x3a\x0b\xc5\x68\xd6\x68\xf8\xbd\x4a\xe8\xf2\x76\x4c\x34\xbe\xf1\x11\x33\x88\x51\xc6\xb3\x08\xf3\x28\x79\xa5\x53\x31\x3a\x1b\x3c\xe2\x0c\x98\xdc\xd4\x0f\x0f\x58\xbc\x08\x7d\xb1\x59\x32\x77\x2a\x5d\xc5\xd6\x76\xc5\x20\x88\xfe\xfb\x88\xc1\x70\x87\x84\xe3\xd6\xd1\x4d\x33\x46\x0b\xd9\xd2\x00\x6d\xbf\xe6\xeb\x1d\x5f\x3f\x14\xbd\xa3\x1f\x35\x9a\x86\x88\x2b\xf1\x89\xb4\xef\x67\x0b\x92\xad\x57\xe1\x72\x8b\x4b\xba\x55\xee\x38\x49\xe2\x3a\xe3\xf4\x7e\x62\xd2\x3b\xa5\x9d\xcd\xd6\x7b\x13\x35\xe1\x24\x1f\xc7\x7f\xc4\xc3\xc5\xd5\x27\xcc\xd7\x46\x5c\x8b\x78\x8e\x14\x8f\x1e\x7f\x83\xb9\xbb\x7c\x50\x56\x07\x6c\x42\x66\xd0\x54\x6d\x1e\xe3\x06\x84\x61\x90\x2a\x1c\x76\xd6\x50\x1f\xa7\x7e\x50\x10\x5a\xb9\xff\xb0\x42\xa0\x02\x92\x73\x17\x4e\x23\x2d\x63\xed\x42\x8c\xfa\x71\xca\x77\xcd\xde\x26\xe9\xa2\xb8\x34\x97\x8c\xe9\x7f\x39\x96\xbc\x1e\x1c\xd6\xb5\x4e\xd5\xeb\x9e\x31\x69\x67\x34\x39\xf7\x32\x1f\x5f\x6e\x8c\xd7\x68\x32\x61\x8a\xae\x6f\xe8\x55\x35\x81\x06\xec\x0f\x99\xce\x28\x56\x1a\x8a\x13\x92\x4c\xaa\x1b\x95\x34\xc8\xd2\x43\xe6\xb9\xea\x92\x80\x32\xa1\x4d\x78\xb5\x40\xa2\x79\x14\x83\xda\xe6\xd4\xbe\xba\x2d\x05\x34\x12\xf8\xdd\xfd\xe7\x05\xc3\xa7\x96\x4f\x35\x84\x44\xd5\x5d\x07\x8d\xaa\x07\x0b\x68\x7d\xa1\x18\xcd\x78\x4c\x1d\x2c\x36\x8e\xf3\x56\x23\x69\xab\xbd\x32\x58\x1b\x5a\x56\x84\x3a\xc2\x8a\x41\x2a\xd9\xf4\xab\xb4\x9b\x6f\xdc\xd0\x80\x03\x71\xb8\x8b\x6f\x08\x23\x7f\xed\x55\xcd\xb1\x1e\x89\x95\xdd\x93\x1f\x0e\xfe\xc0\x3c\x98\x99\x88\x9f\xa8\xff\xe6\x61\xa9\x0d\xee\xfa\x20\x8b\x96\x61\x0f\xa8\xcb\x98\x36\x6f\xce\x3c\x1e\xdb\xa6\xb9\x4d\x3d\x41\x6a\x55\x71\x90\x1a\x9c\xe4\xe7\xed\x14\x64\x48\x07\x95\x50\x5d\x3a\x79\x66\x7f\x92\x37\x40\x10\xf1\x79\x48\xaa\x94\xda\x09\x22\xf9\xc2\x53\x6a\xf0\x45\x5d\x2e\x96\x96\x3b\x9b\x8e\x0e\xdc\x5a\xd9\xe7\x89\xa5\x90\x30\xfb\xeb\xe7\x94\x61\x97\x8f\x1b\xd8\xe5\x6a\xe9\x05\xea\xe8\xed\x9b\xbf\xad\x0a\xc1\x3c\x62\xf1\xba\x4d\x2d\x52\xef\x0d\xdd\xbb\xc3\xc2\xa4\x81\x75\x96\xd4\xab\x43\xd2\x67\x08\xed\x10\x49\x63\xde\x5e\xa7\xa7\x1b\x16\x08\xc7\x65\x97\xf5\x37\x43\x6c\xb9\x0c\xda\xc7\xb0\x97\x3f\xf4\xa2\x59\x27\x33\x22\xbb\xe0\xdb\x1f\x33\xda\xcf\x01\x0a\xb0\xab\x77\xc7\x2e\x0d\x49\x02\x51\x95\x03\xc5\x32\x35\x03\x46\x58\x0f\x7d\x4e\xc5\x03\xd9\x94\x39\x46\x1b\x88\xfb\x62\xeb\xdd\xe4\x7c\xe8\xa6\xc7\x54\x9f\x92\xa0\xdf\xfb\x1d\x8d\xa8\x1f\x56\x60\x88\x93\xfb\xda\x3e\x5d\xac\x1c\x31\x1f\xa6\xfd\xaf\x6d\x1a\x9a\xd4\x6f\xad\x6a\x0f\x6e\xba\x61\xa8\x86\xa3\x67\x12\x62\x91\xeb\x7e\x49\x13\xba\x62\xc2\x19\x2e\xba\xeb\x81\xe1\x1a\x87\x8e\x72\x03\x45\xe1\x96\xba\x41\xd7\x00\xe1\x9d\x94\x9e\xfc\xbd\x9b\x61\x99\xad\xc2\xae\x8e\x48\xbc\x7c\xb4\xee\xf1\xea\x62\x2d\x4f\x7d\xf8\x92\x31\x65\xaa\xa2\xba\x87\x2a\x2e\x96\xc0\xd5\x2f\x9c\x1b\xab\xd5\xbb\xa1\x6b\x11\xd3\x5f\xbd\x27\xf3\xe7\xed\xe9\x05\x31\x77\x96\x8c\x68\x6f\x5f\x1c\xab\x6d\x78\xae\x4c\x68\x91\x94\x9f\x45\x4f\xee\x54\xd6\x9c\x67\xf2\xb6\x83\xfe\x4a\xb2\xbf\x3c\x6b\x9e\x5f\x1e\x3f\xc3\x21\x5f\xfd\xdc\x7b\x46\x3c\xc2\x1c\xcf\x00\x86\x81\x37\x8c\x32\x86\x8e\xa1\xc8\xfb\x0e\xed\x37\xf4\xf7\x83\xaa\x83\xe3\xdc\x52\xc4\xf0\x05\x97\xb4\xd8\xe1\x84\x7e\x15\xa6\x2c\x8b\x57\x6b\xb4\x27\x0f\x63\x9b\x70\x48\x4a\xf6\x47\x06\xaf\x8b\xd8\x18\x89\x04\xea\x17\xcb\xd5\xbb\x6d\x47\x6e\x08\xba\x89\x37\xbd\x63\x58\x05\x52\xc6\x48\x8a\x10\x90\x6f\xdf\x68\x0c\x0d\x50\xdd\xd3\x2c\xb6\xd7\x9d\x81\x9c\xe3\x06\xda\x8d\x39\x73\x69\x66\x5e\xa1\xc1\x7d\xea\xd0\x46\x17\x6d\x68\xd1\xf0\xc6\xd1\x50\xa0\x5e\x1f\x06\x55\xca\x59\x01\x82\xa7\x37\x77\xba\x4a\xd0\x4a\x94\xc3\xdf\x33\x0f\x1d\x14\xb2\x94\xd4\xa1\x0c\xd9\x54\x8e\x7b\x7a\x2e\x68\x40\xdb\xb6\xb6\x59\xf1\xba\x5b\xb4\x57\x3d\x2a\x2e\xb1\x0e\x8c\xaf\x8e\xa3\xbd\x58\x36\x80\x2c\xcb\xac\xed\x1a\x06\x92\x38\x52\xb0\x3a\xf7\xee\x06\x98\x6c\x25\x42\xee\xbc\x18\x5d\xb1\x34\xd9\xe3\x61\x40\x78\x27\x61\x7c\xb3\x75\x35\x07\xac\x77\xe3\x84\x0e\xfa\xe7\xe7\x7b\xf1\x04\xe4\x9f\xf7\x2d\x03\x3d\x1d\xba\x84\x87\x50\xd9\xec\xcd\xdf\x09\xcd\x81\xc2\x2d\xd8\xe9\x05\x3e\xe8\xe6\x75\x67\x63\xe2\x0a\xfe\x03\x87\xd7\xbd\x6a\x82\x25\x68\x0d\x18\x45\xd0\xe4\x58\x63\x80\x7c\xca\x0e\x65\xc4\x46\xbd\xe5\xd2\xf9\xbb\x4e\xa8\x2d\x1e\x54\xc1\xe1\x61\x1c\x40\x3f\x0b\x4b\x10\x43\x85\xc5\x98\x2b\xa1\xc9\xd7\x3b\x73\x7f\x92\x69\x95\x9a\xae\x3a\xfa\xc6\xb3\xa0\x4e\x78\xa3\x1d\x0a\x39\x72\xb3\xe6\xb8\x6e\x67\x7a\x93\x05\x8c\x20\x47\xa2\x77\x7e\xff\xd2\x95\xc6\x6a\x05\x0b\x5d\xc8\xa2\x7f\x30\x5d\xbd\x20\x9e\x99\x8c\x2c\xc1\x38\xe4\xfa\x38\x88\x4f\x19\x64\x22\x12\xad\x20\x4c\x8c\x93\x76\xce\x57\xd1\xc9\x73\x90\x2b\x74\x8a\xb9\x74\xe9\xe3\x46\xef\x4a\xd0\x36\xf8\x21\x3e\xe3\xdd\xc1\x22\x2e\x06\x0c\xd9\x62\x9e\x31\x60\xdf\x15\x4a\x66\x21\xbe\x10\x5a\x9a\x60\xe6\xff\x3e\xaf\x91\xcc\x92\xf6\xd1\x53\x4a\x94\x70\x56\x21\xfe\x82\x05\xfd\x92\x32\xc3\xb5\x13\xc8\x40\xdb\x7d\xb0\x34\x84\xfb\x04\x90\x21\x24\x39\xf4\x87\xfb\x8c\x42\xd3\x42\x4c\xce\xd9\x33\x03\x4d\x96\x04\x62\x18\x27\x26\xab\x7f\x18\xd7\x44\x21\xac\x30\x54\xaf\x27\xe7\x64\x06\xad\x4f\xae\xb0\x1d\x73\x19\xc4\x7f\xd8\x35\x58\x39\x66\x12\x91\xeb\x2f\xdd\x6a\x7c\x4d\x95\x38\x36\xc3\x2e\x0c\xe6\xdf\xdd\xa7\x81\x72\x9c\x12\x23\x95\x2a\x8f\xa1\x7f\x7b\xc3\xd5\x5a\xe6\xe5\xc4\xdb\xcf\x6d\xee\x1e\xdf\xbd\x0d\x4a\x5c\x16\xc6\x77\x7b\xcb\x56\x23\xf7\x71\xac\x66\xc4\x77\xee\x93\x8f\x9a\x53\x6e\x3f\x74\x12\xf1\xdd\x4b\x6d\x22\x33\x8a\x93\x98\x40\x8a\x47\xe6\xaa\x51\xb3\x9a\x55\xbd\x84\x19\x18\xfa\x6c\x7d\xca\xb4\x9c\x23\x2e\x8a\x0b\x13\x91\x13\x7c\x31\x9f\xcc\x4a\x6a\x3c\x02\xa6\x76\xc2\x63\x0b\x01\xc5\xb2\x06\x39\x75\x5e\x21\x29\x10\x4c\xe1\x61\x68\x58\x07\x94\x71\x65\xaa\xf8\xcb\x9e\xbd\x28\xca\x02\x6a\x11\xe4\xc8\x2b\xcc\x3c\x3f\x5e\x25\x03\x15\x2c\x6c\xf4\xf2\x13\x67\x27\x6b\x06\xc9\x37\xd2\x93\x59\x7a\x2c\x9d\xab\x22\xe6\x52\xc7\xf0\x13\xc9\x7d\x57\x93\x0d\xf1\xa1\xb9\x13\x7d\xe0\x80\xd9\x35\x71\x69\x43\xe0\x02\x01\xef\x7d\xdf\x10\xf5\x3e\x6d\x86\xca\x92\x8f\xb2\x78\x81\x2e\x1c\x28\xa6\x69\xcf\x4f\xd5\x5a\x45\x1c\x94\xaa\x92\xbe\xbd\x07\x16\xf8\x55\xc4\x65\x41\x40\xde\x7f\x41\x39\x74\xf9\xba\x1e\xc7\x7f\x3e\x0e\x05\xe3\xda\x3a\xe7\x96\x6c\xdc\x66\xcf\x5c\x38\x45\x9d\xe0\x32\x74\x9f\x7f\x34\x7d\xad\x25\xe4\xd7\x70\x50\x42\x8e\x14\x41\xc8\x97\xb3\xe9\xf2\xde\x62\xd4\xaa\xe1\x20\x48\x2b\xcc\x65\x7f\xb7\x23\xe9\x8e\x3b\x71\xb4\x8f\xe6\xee\x52\x69\x65\xa1\x20\x09\xc1\x77\x3e\x98\x0e\xef\x6e\x49\x28\x74\x67\x3f\x71\xdc\x14\xa2\xf5\x02\x61\x49\x99\xfb\xd1\xa5\xf4\xab\xa8\x86\xbe\x8f\x49\x9a\x5d\x93\xfd\xd2\x3a\x38\x58\xd7\x84\xac\x81\xf9\x44\x6c\x59\xd5\xd4\x81\xa7\x75\xe1\x2e\x5a\x12\x1a\x71\xd3\x67\x16\x66\x80\x28\xf9\x5d\x8b\x61\x15\x61\x8b\x9b\xed\xf3\xc0\x7f\xf7\x81\x74\x64\x10\x24\x2e\x58\xcf\xdf\x9e\x3b\x58\xa4\x48\x0d\xec\x50\x4f\x70\x7b\x3f\x3e\xdf\x54\xf0\xe0\xc7\x76\xb7\x00\x0d\x44\x7f\x1e\xaf\xce\x50\xab\xcb\x21\x20\x01\xdb\x93\xbf\x66\x9c\x92\xe2\xe2\x5e\xa7\x3f\x34\x54\x5a\x3c\x44\x64\x4b\xb9\x7d\xb3\x21\x0c\x83\x3a\x93\xb1\x7a\xb0\x45\x43\x5d\xca\x91\x61\x7c\x2f\x2b\x4f\xa8\x35\xe7\x90\x12\xc3\x01\x34\x2e\x3f\x71\xd6\x4c\xf4\x4b\x21\x2b\x21\x49\xc9\xcd\x4d\x98\x6e\xb0\xae\x29\x52\x6e\x68\x99\x8f\x8d\x1e\xa6\x77\x1d\x79\x3b\x95\x47\xdc\x55\x6f\x68\x42\xbf\x55\xc4\x11\x7b\x8b\xa7\x1a\xb7\x04\x8a\x35\x85\x62\x34\x2b\xaf\x91\x63\xe3\x22\x44\x07\x02\xdd\x38\xdb\x5c\xa3\x6e\x8d\x85\x5e\x20\x73\xaa\xa8\x76\x56\x19\x66\x58\x69\x84\x5b\xe1\xa2\x06\x7a\xa8\xa2\x2a\xaa\x15\x8a\xd1\xfb\xc7\x8c\x1c\xa3\x93\x08\x42\xfb\x87\xbc\x74\xee\x16\x54\x19\x0d\x2b\x55\x80\x09\x47\x6c\xcf\x18\x33\x5b\xa4\x0e\xad\x10\x2b\x81\xb2\x65\x7f\x74\x5a\x37\x48\x08\x18\xb2\xf8\x09\xf7\x9b\x7e\x83\x35\x2e\x68\x1d\x34\xc4\xf2\x8b\xaa\xa6\x1e\x1d\xd0\x6f\x8a\xd1\xd1\x61\x49\x2c\x04\xff\x25\xc3\x2b\x54\x13\xc5\xe5\xf8\xc5\xa6\x6c\xe7\xe4\x6c\x21\x0b\x45\x2a\x5c\x16\x65\x7d\x93\xf4\x6e\xc0\xd9\x9f\xa2\x3f\x9f\x19\x5d\x86\xfd\x50\x76\x10\xa0\x74\x73\x7d\x15\x42\x94\xd6\xb4\xea\x23\x77\xfb\x25\x45\x95\xaa\x87\xbc\x37\x1e\x19\x1e\x08\xa2\xac\xd7\x8b\x81\xaf\x41\xfb\xbc\x70\xab\xcb\x0f\x7d\x23\xba\x7f\xfc\x95\xf4\xa1\xc4\x07\xee\x3c\x11\x57\x2f\x33\xfa\xea\xba\xf4\x4a\xd5\xe4\x3f\xe3\x3c\xfa\xa3\xc7\x21\xe4\xcf\x98\xab\x0a\xe7\x62\x4f\xee\xa6\x23\xe9\x97\xdd\xa0\x81\xb0\xeb\xf3\x16\x98\x86\xe6\x7e\x08\x8c\xf7\x9e\xfc\x9d\x6d\x49\x5a\x66\xa3\x26\x52\x56\xf6\xe4\x7a\x13\xe7\xe7\xda\x60\xee\x23\x04\x70\x66\x6f\x15\xcf\x13\x95\x00\x54\x9c\xdd\x6c\x8a\x8e\xa1\x00\x3b\x0e\x09\xa4\x9e\xc0\xc8\xfb\xb4\x33\xbe\x41\x1a\x22\x31\x78\xe1\xc8\x30\x55\x29\xeb\x2c\xf0\xb5\xcf\x6a\x38\x84\x39\x62\x26\x9b\xfb\xab\xf6\xc1\x8a\x34\x2e\x59\x1f\x99\xa3\x7b\x0b\xe9\xef\x2e\x61\x86\xbb\xab\xc4\xed\x2a\xa0\x0a\xa3\xbd\x30\xbe\xae\xe8\x4c\x47\x5c\x07\x31\xe2\xa3\x34\x9e\xfe\xef\x23\x78\xe0\xda\x36\xe0\x5b\xe0\x14\xdc\xfa\x8d\x0d\x29\x64\x75\xf3\x01\xe8\x2f\x5b\xc8\xe1\x02\xf4\xf1\xdb\xfa\x5b\x63\xa4\xed\x07\x94\x8b\x67\x72\xfc\xd7\x15\x5b\x4c\xbc\xa0\xcd\x33\x40\x61\x8c\x87\x8f\x02\xc3\x6f\x39\x46\x2e\xc0\x43\xd5\x45\xbd\xfd\x88\xa6\x2a\x85\x9c\x64\x72\x57\x1e\xa9\x3a\x0e\xa4\xc1\x47\xa5\x13\x92\x13\xab\xd5\xe2\x11\x7d\xf9\x53\x4a\x75\xbc\x9d\x56\x7b\x11\xd0\xfd\x9b\x7d\xc6\xfc\x11\x31\x87\x60\x26\x8e\xf5\xc9\x27\xc6\x1b\x49\x53\xd5\xbd\x23\x24\x30\x75\x57\x1b\xe8\xdb\x81\xa2\x21\x97\x40\x6b\x6f\xc8\x16\xcd\xaf\x93\x8f\x33\xa2\xec\x6c\xdd\xd1\xc7\xf5\x3d\xc2\x90\xc5\x7d\xdc\x8e\x19\x52\x3c\x94\x49\x75\xcc\xfc\x6d\x0b\x0d\xea\x30\xaa\x20\xb7\x26\xdf\x5b\x12\x51\x5f\x9f\xa8\xc9\x47\x84\x8c\x80\xf0\x60\x76\x81\xa0\xbe\xcc\x9a\x3a\x73\xc6\x5c\xde\x11\x9d\x6a\xc8\x30\x5a\xd4\xa5\xf5\xf8\x86\xf8\x06\x9a\x38\x77\xac\x51\x91\x69\xa7\x9d\x68\x26\x90\xe7\xcd\xfc\xd9\xb5\xb0\x23\xc4\xf1\x32\x5f\x34\x74\x1c\x78\xb1\x29\x5c\xd4\xaf\x7c\xcb\x8c\x59\x24\x20\x88\x63\x69\x21\x2b\x38\x78\x4c\x93\xc5\x69\x9a\xa6\xe6\x6e\xd9\xad\x9c\x8a\x71\xc8\x15\x15\x34\xb0\x68\x80\xeb\x1e\x05\x99\xa1\x17\x0c\x56\x53\xc9\x41\x36\x8f\x5e\xaa\x7b\x76\x20\x18\xa6\x8b\xcd\x04\x85\x0a\x24\x67\x99\xfb\x77\x68\xe5\x1e\x72\xc3\xb8\xce\xcd\x8e\x0c\x0c\xa2\x89\x47\x24\xfd\xe9\x23\xdb\xd2\x4f\x34\xf4\x43\xe4\x70\x17\x76\x0e\x06\x0e\x9f\xe8\x9f\x7c\xdc\xfc\x42\x31\xba\x52\x51\xa7\xed\x50\x0e\x4d\x32\x6f\xed\xd4\x54\x6b\x60\x86\x1b\x5f\xcb\x86\x23\x1a\xd0\x87\xd1\x3a\x15\x96\xff\x72\xdd\xed\x99\x6f\x3e\x50\xc9\xb2\x11\x3d\xbd\x6d\xab\x0d\x68\x7c\xc8\x84\xf5\x8f\x48\xd1\x9f\x7a\x59\x9b\x39\x30\x52\xa1\xd0\x4c\xfb\x4b\x77\x72\x95\x38\x64\xd2\xf6\xe5\x94\xd6\x72\x98\xd9\xca\x9d\x90\xaf\x9c\x98\xf2\x6f\x77\x30\x70\x01\xb3\xde\xa9\x2b\x94\xe3\x15\x5f\x18\xa7\xb6\x6b\xa3\x26\xd7\xa5\xa0\xc7\x9a\x5b\xdc\x2a\xd5\xbe\x40\xf0\x64\x87\xb0\xe1\xc0\x9d\x1e\x72\x7d\x42\x5d\x02\xdd\xcb\x79\x5e\xfa\x0d\x10\xdf\x0f\x21\xb2\x67\xbf\xb1\xc7\x80\xcc\xfb\x5d\x56\x35\x39\xc6\xa1\xe0\xff\xfe\xb3\xa6\x3d\x3a\x75\x2b\x82\x8b\x76\xdd\xc6\xf4\x82\xae\x38\xa4\xee\xf9\x72\x2a\xb3\xbc\xbf\xe1\xc5\xe0\x20\x9f\xcb\x93\xa0\xa0\x9a\x30\xaf\xd7\x5c\x6b\x16\x57\x1c\x68\x23\x58\x13\x7d\xaf\x1d\x67\xd6\x94\x65\x70\x32\x41\x4e\x42\x14\x3a\xa3\x55\x10\x7e\x95\x70\x61\x98\x42\x31\x9a\x38\x40\x81\xf2\xb1\x26\x76\x91\x1d\xd2\x06\x21\x78\x71\xc8\x92\x4e\x76\xe6\x8f\x07\x93\xb3\xa5\x86\xba\x55\xbb\xf3\x97\x0f\x1b\xc6\x56\x88\x01\xc0\x3d\xea\x30\x68\x6f\x9e\x83\xba\x94\xe5\xfc\xa0\xc9\x13\x8d\x78\x40\x24\x6d\xd4\x3c\x5f\x8a\x03\x0c\x9f\x0b\x52\x2e\x13\x2b\x74\x82\x2e\xc9\x1d\x51\xd7\x56\xc1\xba\x99\xc7\x6f\x8e\xa6\x77\xd0\xb4\x79\xf3\xa6\x17\xe6\xcd\x92\xf9\xef\x4d\xc2\x7c\x18\x58\xab\xfc\x8d\xf7\x7d\xc9\x1c\xcb\x12\x93\xb5\x58\x15\xce\xdf\x5c\x4b\xc7\xe6\x8a\x7b\x5c\x40\x68\x9d\x2e\x85\x45\xa9\xde\x50\xff\x88\x79\x80\xd5\x50\xa0\x1a\x03\x3d\x9b\xb5\x63\xfb\x0e\x1d\x7f\x79\x4e\x42\x50\x7c\x0c\xf3\xfe\x5c\xd1\x20\x68\x39\x88\x55\x24\x37\x3a\xb3\x62\x9c\xa1\xf5\xeb\x38\xfc\x38\x20\x36\x66\xf1\x71\xc9\xd7\xeb\xa6\xdd\x26\xa3\x88\x28\xa4\xf1\x84\x89\x86\x9d\x22\xb6\x5d\x8e\x0a\x96\xf0\xfb\xf1\x2b\xae\x50\x8a\x9b\x71\xe9\x76\xc7\x7d\x26\xa6\x25\x7e\x39\x44\x11\xa7\x9c\xb5\x06\x9b\x91\x58\x89\x46\x85\x58\x43\xbf\x36\xd0\xbf\x36\x16\xc2\xa7\x50\x7f\x8d\x1e\x6d\xdc\x33\x56\xfe\xcb\xb9\xe7\x97\x26\x10\xd1\x6a\x17\x4a\xa1\xa8\x3e\x62\x38\xad\xcc\x6d\x53\x02\x1f\xd1\xd7\x0e\xa7\xb3\xc8\x32\xed\x6c\x4a\x6d\xa2\xdd\x67\x54\xc4\x76\x01\x65\x1b\x7d\x7a\x99\xda\x4d\x9c\x00\x47\x39\x6a\x2d\xf7\xe0\x46\x15\xc3\x2a\x4e\xc8\x2b\x9e\x8f\xdb\xd0\x8f\xbd\x25\x64\x0c\x69\x8e\x98\xb9\xed\x93\x0d\xc0\x26\x75\x1c\xda\x21\x84\xe7\x7a\xb2\x43\x2f\x6a\x6e\x85\x16\xb2\x71\x1d\xe4\x16\x3e\xba\xcd\x18\x9f\x23\xb7\xcc\xb0\xdd\x25\xb2\x5f\x99\xee\x6d\xdb\x0f\xd5\x26\xcc\x88\x65\xf9\xfe\xdb\xfd\xc9\x7e\x77\x6c\xdd\xd6\xe5\x99\x57\xf5\x21\x23\xe2\x04\xce\xf8\xea\x8f\xdd\x37\x44\xc3\x5c\x4a\x9f\xc2\xec\x6e\x83\xd4\xd0\x41\xf8\xd8\x4d\x9c\x0b\x37\xdd\x70\xa5\x71\x70\xd4\xb9\x66\x1c\x1f\x41\x66\x1e\x7b\x57\x19\x5a\xb4\x36\xf1\xf6\xf2\x9f\xcb\xab\x0a\x8c\x7a\x12\xea\xfe\x8f\x0f\x1a\x2a\x1f\x55\x60\x82\x6a\x66\xa5\x99\xdb\x0c\xd3\x69\x9e\xb9\x0b\xd8\xc6\xcf\xce\x69\x6c\x58\xe2\x26\xa6\x1c\x6d\x9d\x9a\xc0\x83\x4e\x05\xbf\xf5\x41\x13\x1a\x05\xf6\xf6\x62\x45\x7f\xa0\xa1\x99\x1b\x84\x8c\x9b\xf1\x89\x8f\x7c\xec\xf9\x31\xe6\xe6\xb2\x24\xce\x42\xfc\x4a\xcb\x32\x15\x48\x43\xdd\x15\xf9\x89\xfb\x92\xf7\xe3\x87\x7a\x14\xbb\x30\x7f\xa8\x09\xe7\xe7\xc3\xa0\xbb\x35\xb7\x11\x3f\x60\xc8\xb6\x01\xba\x9e\xfd\xf7\xdd\xa3\x44\xce\xcb\x7c\xdc\x8c\x93\xfd\xfe\x56\xf5\x5e\x2b\x8c\x38\x82\x43\xb4\x6e\x9f\x1a\x0a\xf2\x52\x10\x60\x5b\x12\x8f\xf7\x67\x43\xe1\x4a\x88\x1b\x42\x34\xa7\x8f\x27\xef\xb5\xcc\xcc\xd6\x6b\xf4\x3f\xfb\x4c\x02\x8a\x15\xff\xa7\x88\x39\x8b\xfb\xab\x99\x86\x8b\xda\xb9\x29\xaa\x76\x1a\x1d\x7c\x5f\x9b\xd2\x70\x85\x76\x7e\xf3\xdd\x4f\x99\x0e\xf5\x41\x32\x4a\xaf\xf5\x1b\xd7\x7c\x66\x0a\x02\x75\x02\x60\x7b\x7e\xe1\x08\x23\xbb\x4a\x7a\x04\x1f\x31\x06\x47\x25\x16\x56\x44\x92\xc7\xfb\x15\xcb\x97\xab\x65\x6a\x21\x16\x60\xae\x55\x77\xda\x28\x39\x71\xa7\x47\x59\x90\x9c\x78\x99\x3f\x68\x60\xf0\x00\x05\x50\xda\xdc\x5c\x15\x6a\x0e\x1d\x24\xb0\xc4\x00\x0a\xed\x56\xeb\xb5\x04\x28\x35\x3e\x41\xfc\xe6\xdd\x9a\x9c\x4a\xa3\x50\x8c\x46\x6e\x34\xa4\xef\x49\x19\x83\x5e\xeb\xd8\xa9\xc6\xe8\x0b\x33\xea\x7b\xc8\xc2\x62\x86\xff\x37\x6f\xa9\xba\x1c\x5c\x94\xee\x1b\x29\x46\x47\x25\x64\x55\x35\x92\x67\xf6\xd0\x82\xb1\x9a\x0a\x26\x77\xb0\x6f\xda\xb7\x6b\x17\x1b\x6d\xfc\x2a\x66\x78\x2a\x58\xf4\x66\x16\x6e\x83\xbc\x6b\x0d\x61\xba\x58\x69\xee\x67\x2f\xa8\xe5\x8b\x3a\x10\xc3\x82\x9a\x90\xb9\x67\xa6\x9a\x89\x76\x90\xa0\x6a\x33\xd4\x01\xe5\xe2\x65\x7d\x54\x5c\xe4\x8a\xbd\x0e\xe4\x76\xd9\xbf\xf5\xd2\x85\x3b\xb8\x19\x17\x8a\xd1\x39\x0d\x77\xcc\x90\xe3\x08\x98\xdd\xbf\xdd\x0d\xd7\xe4\x52\x16\x54\x3b\x38\xeb\x3c\xfe\xed\xf0\x95\x26\x58\x8e\x4f\x1d\x62\xa3\x40\x3c\xb8\xdc\x80\x76\x65\xd6\x69\x63\xdf\x02\xc3\x15\xf5\xb4\x3e\xfd\x84\x26\xf6\xcc\xd1\x9b\xf1\xd7\x6d\x11\x52\xef\xe5\xd0\xb5\x75\x07\xa5\x0f\xd8\xaa\x2a\x69\x34\x35\xe3\x73\xb5\x6d\x9a\x8a\xb5\x83\xea\xfc\x0c\x78\x77\x8c\x46\x3f\x22\x4c\x2e\x8e\x8e\x7b\x8d\x8e\x39\xad\xd7\xc3\x40\x80\x47\xe3\xc5\x73\xda\x6c\x29\x30\x0b\x09\x30\x3b\x17\x89\x0e\x14\x46\xc9\xa5\x71\x4d\x19\x69\x59\x23\x77\xab\x00\x4a\x23\x39\x62\xa4\x75\xa1\x6b\x55\x93\xd8\x78\xd7\x51\xc3\x07\xc2\xed\xb2\xf9\x61\xad\x17\xb5\x53\x8c\x6b\xad\x23\x86\x82\x6a\xa2\xec\x97\x73\x1f\x30\xf6\x1f\x61\x41\x15\x5e\x29\x7f\x7b\xbb\x17\xe9\xca\xa7\xc2\x18\x6b\xdb\xb2\xe1\xda\x88\x93\xb3\x42\xa0\x54\xcd\x5f\xb7\xfc\x4a\x4d\x3d\xca\xaf\xd6\x68\x43\x17\x12\x3e\xad\x51\x78\x53\x9a\xb2\xd9\x9f\xf7\x15\x84\x29\xc2\xa4\xd6\xc7\x30\x4f\xa3\xd3\x74\xb9\xa8\x4e\x2c\xfe\x1d\x5d\x9a\xbd\x96\x83\x51\x25\x8c\xcb\xf2\xaf\x5f\x52\x1e\xfa\xdc\xe3\xa8\xc5\x1b\xac\x55\x2a\x5d\x55\xda\x11\x7f\xe6\xe6\x7e\x6a\x86\x2e\x34\x58\x9a\x9a\x48\xaf\x04\x83\xb4\x75\xcc\xf9\x58\x91\x77\xc2\x9c\x03\x31\xea\xca\x17\x9a\xb9\xd9\x50\x4d\x73\x30\x87\x77\x41\x84\xbc\xa4\xb9\x01\xcc\x6c\x9d\x13\xff\xfe\x7b\x6d\xda\x37\x10\x9b\xe3\xf3\x7f\x3f\x55\xd0\x10\x19\xc3\x0e\x6e\x80\x73\x45\xfe\x32\xc1\x3d\x8e\x0b\x1d\x4e\xca\x2f\x14\xa3\xd3\xd3\x8d\xea\x3f\xfe\xf5\xc4\xca\x2d\xd3\x58\x0a\x7f\x52\x26\x95\xaa\x88\x67\x51\xf0\xac\x51\x5c\x55\x69\x00\x4e\x9c\xf1\xaa\xe5\x97\xf9\xe9\xfd\x66\x90\xb7\x43\x4b\x08\xe1\x64\xcf\x74\xab\x57\xc1\x29\xe0\x42\x0b\xf1\xfb\xcf\x8c\x56\x9d\x19\xdc\x1b\x93\xa6\x0c\x77\x35\x67\xea\xb4\xb6\x59\x85\x2e\x10\x6b\xca\x7f\xf8\x25\x43\xc0\x4b\x10\xf6\xe7\x9d\x34\x21\x3c\x52\x04\x47\x1a\xf5\x64\xac\x7d\xd0\x0b\x99\xd6\x36\xb3\x75\x76\xfc\x83\x5f\x95\x05\xf2\x26\x8c\x23\x61\x99\x72\xf0\x0d\x3f\x3a\xd6\x03\xaf\xb4\xb0\x02\x53\x2f\x85\xd6\xc9\xde\x38\x5b\xdb\x6f\x61\x7c\x56\x71\x0a\xd2\xce\x4d\x5a\xd0\xf7\x0a\xc5\xe8\x4b\x13\x20\x50\x2f\x01\xe6\x95\x4a\x13\xae\x3d\xa8\xde\xe9\x5c\x7e\x1d\xb9\xfe\xdb\x4d\xf3\x58\x1b\x53\x08\x8c\xbb\xfb\xc1\x85\xac\xc4\x1d\x5c\xa0\x5f\x6d\x88\x35\xbb\x0d\x6d\x0c\xea\x62\x7f\x4a\xab\x96\xa9\xe4\x57\x43\xd7\x0e\xd4\xbe\x78\x4b\xd8\x90\x47\x0d\x18\xa9\x54\xe2\xa2\x23\x41\xc3\xd6\x1d\x01\xb3\xc4\x56\x15\x44\x36\x47\x3f\xa0\x9d\xa2\x0e\x46\xc0\x82\x9a\xa1\x95\xfd\xf1\x71\xc3\x30\x77\xfd\xce\x2c\x18\x9d\x7e\x0d\x35\x62\xbb\x42\xe3\x14\x4e\xf4\x68\xf9\x38\xb0\x28\x5f\x22\xcc\x29\x9a\x58\xdc\xab\x8e\x68\x61\x03\x11\x9f\x77\xdb\xff\x69\x9d\x01\xb2\xa5\x90\x08\xc0\x9b\xbd\x78\x42\x80\x3e\x1d\x31\xff\xcf\xb5\x5e\xd2\x92\x49\x6c\x13\x69\x2b\x5b\x9f\xab\xc1\xb8\xc4\xb8\x64\xf2\xcb\x63\x54\xa2\x58\xc5\x3e\xf2\x30\xaa\xe9\x8a\xd1\x3d\xb9\xe1\xdb\xf4\x16\x64\x10\x0a\x4f\xc3\x0f\x9d\x33\xa3\x39\xe8\x25\xc8\x4a\xef\xe8\x71\xa3\x07\x2e\x86\x5c\x20\xa7\x2b\x57\xc4\x67\xc7\x18\x19\x09\x4f\xe8\xb0\x64\xad\xe7\x36\xec\x35\x31\xfe\x1c\x47\xe5\x74\x89\x7f\x5f\xf3\xba\x59\x97\x95\x01\xd2\x0d\xba\x09\x4b\x17\x18\xa8\x9c\xb0\x54\x72\x00\xb2\x13\xdd\x37\x20\x7d\x20\x5b\xa1\x34\x7d\xfc\xe9\x1e\x95\xee\xd1\x49\x16\x75\x5d\x5d\x7d\x3c\xfb\xc1\x85\x5a\x52\xdb\xe5\xda\x44\x38\x89\xe4\xfe\xcb\x83\xc9\xf4\xdc\xb6\xb6\x42\x31\x9a\xcf\x60\x17\xdc\xe8\x74\xc4\xa5\xb6\xba\xe7\xd7\x9e\x1e\xac\x7c\x8a\x44\x17\x2c\x7a\x6f\x8b\x29\x27\xea\xa2\x94\xfc\xdd\xa4\x87\x0c\xba\x37\x66\x02\xca\x3f\xee\x80\x5a\xa5\x1e\x62\xd4\xe6\x5d\xac\x27\x4e\x5f\xa3\x15\x68\x77\x84\xc4\xe7\x1d\xfd\xa6\xb0\xed\x6e\xd2\x4c\xd0\x71\x10\x17\xbf\x55\x98\x0c\x16\x8a\xd1\xf7\x22\x43\x38\x14\x75\x74\x89\xae\x80\x19\xb2\xbe\x7e\x5e\x93\x4d\x0f\x02\x64\xd5\x12\xb3\xe7\xe8\x7f\xc6\x9b\x48\x5a\xea\x61\x96\xc8\x7c\xe6\xfe\x71\xa6\x21\xab\x06\xfe\x44\x62\xc8\xcc\x19\x01\xd1\xde\x31\x82\xec\xea\xf1\x1e\x73\x96\x1d\xd1\x41\x6c\x55\x62\x39\x90\x7b\xb4\xaa\x6e\x34\xb1\x51\xfc\x3a\xef\x38\x60\x1a\xfb\x02\x72\xf5\x9a\xf1\x57\xeb\x39\xb2\x4d\x5c\xe4\x34\x1f\x6b\x74\x19\xa4\xbf\x15\x64\x57\x70\x00\x1d\xc2\x7b\x77\x69\x29\x1b\x2e\x33\xd1\xb1\x5c\xf3\x94\x20\x41\x77\x59\x8e\xb0\x8b\xcf\xb6\x3f\xa9\xa1\xf8\x69\xa9\x84\xa1\x83\x1f\xa1\xcb\xd2\xaf\x93\xc5\x99\x2f\x07\x06\x8d\xb0\x93\x23\xb9\x1b\xd8\x66\xbf\x3e\xa4\xfa\x36\xa4\xee\x31\xe2\x53\x57\xaa\x09\xed\xd2\xe8\x72\x65\x86\x2a\x12\x05\x94\xab\x9c\x1e\xa7\x1b\xe5\x2f\x5f\x3e\x45\xae\x25\x2d\x4c\xfe\x75\xff\x8f\x1a\x9b\x38\xf1\x35\xeb\x65\x8a\x72\xd3\x0d\x86\x13\x04\x45\xd2\xa2\x23\xfb\x15\xc3\xb9\x84\x51\xd2\x9d\x42\x92\x45\x3b\x47\xab\x85\x66\x55\xb1\x55\xf3\x28\xe1\x2a\x0f\xbc\x64\x5f\xac\xa7\xda\x9c\x7d\x27\x50\x18\x7f\xd5\x48\x1e\x47\x15\x50\x8d\xeb\x36\x68\x9a\x5b\x34\x04\xab\x9e\xcc\xde\xcd\xa6\xe9\x39\xe7\xfb\x89\x06\x4d\x9f\x7d\x57\x6a\x69\x39\x71\x9c\x10\x54\x91\xe0\x3b\x2e\x7f\x47\x79\xeb\x93\x38\x66\x33\xea\x31\x22\x7a\xe2\x3b\x0c\x9b\xde\x79\xad\x6d\xf3\x44\xa0\x38\xb7\x1d\x62\x2f\x6a\xd0\x0e\x28\x8c\x3e\xd9\x47\xc5\xd8\x90\x71\x85\xd9\xec\x76\x43\x25\x5a\x38\x5c\x27\x0c\xce\x71\xfb\x15\x85\x77\xee\xb4\x42\x31\x3a\xf8\x20\x00\xac\x96\x23\xab\xe6\xd3\x14\x3a\x24\xe3\x2f\x4b\xe7\x00\x44\x64\xcf\xd9\xea\x7c\x15\xb4\x2c\x8c\x7c\xec\x60\xdf\x77\x64\x4b\x24\xf7\xc6\x2e\x88\x4d\xf3\xf8\x60\x2d\x33\x76\xd0\x50\x2d\x19\x6c\x60\x41\x32\xaf\x19\x66\x7f\x55\x44\x12\xaf\xde\xff\x5a\x37\x4c\x64\x0c\xbe\x4f\x34\x68\x67\x7e\xe0\x54\x4d\xef\x84\x03\x2e\x0a\xc5\xe8\x17\x8d\xe1\x1a\x23\x28\x0c\x08\x0d\x7d\x20\xf6\xde\xf7\xb2\xa1\x8f\x5f\x25\x6e\x0d\x96\xfe\xe0\x00\xbe\xe2\x26\xae\xfe\xa9\x6b\x7f\x8e\xd1\xe9\x48\x15\x1a\x90\x44\xd1\x6a\xbd\x71\xc9\x1d\xbc\x6f\x09\xe7\xed\xcb\x63\x84\x56\x0c\x62\x16\x76\x1c\xdd\x9c\xe3\xf6\x77\x4d\xda\x2c\x07\x35\x0a\x4d\x88\x9f\x1a\xc3\x9a\x6e\x64\x74\x58\xe7\x6e\x31\x27\xeb\x58\x7c\x2f\xcf\xd4\xb2\x86\x57\x69\x40\x43\x16\x47\x04\xd1\x56\x5f\xb0\xd7\x04\x8b\xd6\x11\x11\x6a\xc1\xb9\xb3\x17\x12\x4b\xf8\x80\x94\x45\xc6\xf8\xa5\xa5\x06\x11\x72\xea\x8c\x44\x08\x38\xf3\xaf\x23\x93\x03\x85\xb4\x27\xc0\xee\xef\x4f\x30\xf2\xdd\x3a\x66\x15\xc5\x4e\x78\x7e\x88\xde\x38\x2c\x03\x35\x01\x1b\x25\x58\x89\xd7\xaf\x53\xe6\xcb\xcf\x9c\xdb\x18\x24\x52\x24\xc6\x28\x23\x3e\x27\xfb\x9f\x7d\x71\xa0\xc8\x35\x34\xd9\xdb\x53\x4d\x2e\xb6\x25\x07\xd7\xe1\xf9\x46\xa7\xb3\x9a\x73\x3a\x8e\x73\xbd\x2f\x9f\x4c\xff\xbe\xc3\x0f\x1a\xb9\xf4\x7e\x73\x48\xbd\x7e\x8b\xba\x0d\xec\x72\x1b\x99\xf8\xc1\x74\xf5\x57\x8c\x65\x68\xc9\x36\xd5\xa8\xa3\x5a\x07\x8a\x75\x5e\x49\x3c\xba\x3e\xb3\x5d\x0b\x37\x8e\xc3\x55\x36\x78\x68\xef\xd7\x32\x54\x84\x01\x8b\x32\x8f\x26\x58\xe7\xab\x76\x8b\x2e\x08\x0e\x02\xb1\x59\x46\xbe\xd1\xa2\x25\x46\x4c\xdf\x12\x9b\x37\x41\xba\x3d\x63\x7a\xeb\xb4\x69\x3c\xa8\x6f\x11\xc8\x47\xfe\x12\x5c\xab\x59\x0c\x7b\xc6\x2a\xb5\x61\xe2\x6d\x24\xd5\xbb\xa3\xed\x8b\x85\x22\x37\x61\xc4\x42\xba\x1c\xa4\x16\x07\x3b\x88\x0f\x92\x99\x99\xc6\xea\xa1\x22\x7d\x2f\x69\x39\x73\x34\x78\xeb\x08\x4f\xb9\x76\x4f\x48\x75\xa1\xbf\x7a\x12\x62\x03\xb1\x78\x49\xf8\xe4\x40\xb9\x6b\x1d\x9b\xc1\x26\xfb\x58\x4b\x8b\x01\xe6\x97\xa6\x52\xd9\xe1\xaf\x6a\x4a\x1e\x55\xda\x21\xa0\x69\x47\x8f\x29\xce\xb1\xd3\x2a\xd7\xcf\xc3\xfb\xb4\xb0\xc3\x5f\xb1\x1f\xd7\x59\xbb\xe6\x1b\x53\x81\x06\x72\x6b\xb4\x01\x76\xa4\xe2\x06\xee\x9e\x2f\x44\x8a\x49\x1d\xea\xdc\x3d\xeb\x93\x2e\x65\xdd\xd2\x54\x1d\x37\xbd\xa5\x26\xcd\xf8\x8e\x90\x34\x90\x03\xe7\xfd\x17\x3a\x93\x3e\xbc\x87\xd3\x51\xf5\xfb\x8f\x69\x42\x75\xfc\x7c\x95\x1e\xab\xff\x7e\x54\x73\x9c\x27\x77\x84\xc4\xe6\x7a\xd4\x3d\xd9\x5f\x2c\x35\x3c\x34\x80\xf9\xc1\xc7\x59\x4f\x8f\x53\xa7\x40\x0d\xf1\x56\x75\xbe\xe3\xb9\x2b\xb5\x2c\xcd\xc5\x41\xa0\xbf\xcb\xfe\xfb\x94\x35\xd7\x24\x4d\xa8\x28\xb7\x6e\xb4\xb9\x8b\x4b\x1c\x85\x23\x2a\xcc\x2f\xbc\x6b\x94\x7e\xb8\x42\x02\x52\x47\x56\x57\x02\x41\x9e\x9c\x1d\xac\x2d\xac\x90\x70\x68\x75\xae\x60\xf8\xf0\x30\x8a\x6c\x60\xb8\xa5\x37\xcf\x63\x6b\xb5\x99\x91\x4b\x3b\x0a\x9c\x88\x08\x7b\x62\x49\xa7\xa9\xc9\x8d\x2a\x75\x14\x10\xbf\x2e\x3a\x3a\x4b\xfa\x5c\xe3\xa6\xd4\x16\x84\xc7\xae\x39\xdb\xfe\xf8\x01\x53\x83\xaa\x84\x1d\x80\x0e\xad\x5d\xa6\x71\xd7\x7d\x79\x9a\x0d\x7f\xc8\x74\xa1\x0b\xa4\xa9\x54\xf4\x65\x81\x48\x0f\x18\x38\x9b\x46\xb7\x2c\x52\x2f\x37\xbe\x78\x46\x6c\x71\xee\x0f\x1d\x79\x55\xef\x61\x5a\x34\x60\x7f\xb7\x4c\x9c\xef\x71\x78\xe0\x8b\x6e\xdf\xe1\x41\xa9\xc9\x39\x5f\x23\x97\x6f\x53\x93\x6a\x5a\x2e\x37\xdd\xde\x0a\x03\x0b\x38\x93\x07\x6f\x00\x59\xec\x78\x6c\x84\x51\xdc\x31\x69\x8d\x9d\x1f\xbd\x5d\x73\x24\x07\x61\x75\xd1\xa1\x9f\x79\xd4\x1c\x61\x58\x4e\x68\x0b\xc3\xd8\xaf\x8f\x52\x7f\x16\x54\x71\xdd\xc7\x4e\x83\xe7\x9c\xae\xab\xba\x4c\x5d\xd4\xad\xa4\xb1\x65\x5f\x32\xad\x0e\x3a\x24\xc0\x33\xfb\x4a\x35\xa9\xf0\x5d\xc4\x6b\xe5\x19\x5b\x07\x88\x2d\x21\x29\xca\x99\x71\xae\x29\xb1\x1e\x17\xbe\x5c\x78\xe7\xbe\x8d\x2d\x7a\x95\xa9\x4f\x0e\x76\x4d\x4c\x1b\x52\x32\x1b\x70\xfb\xe5\xbe\x57\xb9\xba\x56\x0f\x49\x84\xc1\x20\xee\x4f\x11\x56\xa6\x6b\x96\xdc\x7c\xe3\xca\xb5\x37\xaf\x59\xbb\x86\x93\xaa\x16\xa5\xb3\x6a\x1f\x0b\x74\x78\x6e\xdc\x8e\xe4\x16\xba\xb8\x20\x5b\x66\xf1\x32\xbd\x53\x0b\xf6\xf5\x7c\x59\xbf\x76\x54\x13\x60\x43\x8e\xe3\x21\xc6\xdd\x3e\xdc\x15\x9a\x53\x79\xbd\x50\x8c\x1e\x38\x62\x66\x32\x78\x8a\x30\x06\xd5\x44\xf7\x38\x50\x59\x65\x0e\x74\xb6\xf9\x98\x13\xf4\xe1\x94\xd1\x57\xb9\x3a\x9e\x80\xeb\x5e\x6b\x85\xe7\x5f\xc6\x6b\xfc\x9c\x2a\x29\x97\x61\xf8\xf4\xd0\xab\x06\x7e\x92\x21\xe2\x88\x59\xd7\x0d\xb3\x95\x62\x8b\xdb\x04\xfc\xca\xad\x5a\x6f\x36\x45\x90\xeb\x7b\x88\x61\x37\x10\x69\xe5\xe4\x71\xea\xd5\x4d\x9b\xa7\x41\xd1\xa2\x47\x0e\xc2\xa9\x01\xff\xf5\x57\x02\x26\x85\x7c\x1f\x6c\xdc\xff\x74\xd0\x54\x93\xf2\x03\x24\xcd\xd8\x7a\xf2\x9b\xda\x07\xca\x77\xcb\xed\xed\x39\xfa\xf2\xbc\x41\x8c\x44\x7e\x80\x44\x56\xf4\xd2\xb0\xe4\xfd\x49\x41\xf3\x3d\xc9\xeb\x28\x73\xf3\xc4\xbf\x3b\x97\x7e\xb2\x1d\x24\xa8\xc2\x8e\xb8\xe2\xb0\xd1\x7b\x67\xa8\x03\x32\xce\x9b\x0e\xa4\x6c\x8c\x41\x3a\xfb\xe3\x65\xad\xe3\xd1\x20\x8c\xd8\x7c\x96\x71\xcd\x84\x74\xb4\xa8\x51\x9f\x6a\x22\x64\xd9\x29\x81\x70\xd2\xa4\x0e\xd7\xa2\xc8\xf4\x7d\xcf\x68\x4e\x10\x3f\x60\xc4\x92\xaa\x25\xb3\x8f\x98\x33\x3c\x8f\x32\xc9\x53\xec\xc9\x5c\xee\x99\xfa\x6e\x02\x73\xbb\x51\x1b\x86\xfa\xd4\xb1\x09\xf8\xf8\x8e\x33\x44\x36\xca\x4e\x7c\xbc\x0a\x36\xde\xd2\x15\x9a\xd3\x55\x9c\x09\x06\xdd\xc4\x8e\xab\xcb\xa8\x78\xc0\xe8\x71\xa2\x1a\x89\xdf\x94\x14\xf2\x8f\xc3\xed\x17\x23\x13\xcc\x9c\x5c\x66\xf6\xb4\xa6\x24\x1e\x47\x57\x8b\x82\x7e\xed\xbf\xd9\x29\xf8\x4e\x19\xfb\x7e\xca\xc3\xed\xec\x20\xb5\xd8\x11\x69\x3a\x13\xb2\x4f\xed\xbe\x46\x23\x7d\xb9\x01\x71\xb1\x1b\xa0\x26\xe2\x57\xde\x7a\x3d\x59\x06\x15\x4e\xf6\xbd\x43\x4b\xa4\x82\x2a\xe5\x88\x57\x20\x4f\x7e\xfe\x3c\xac\xd8\x0e\xde\xc0\xda\xe0\x48\x9a\x38\xab\xe1\x00\x03\x6e\xf9\xb2\x76\x03\x5c\xd1\xc0\xad\x69\x69\xf8\xfc\xc4\x47\xd5\x8e\x20\x75\xee\xd5\xd5\x00\x76\x66\xf6\xd3\x8f\x7c\xd8\x7c\xe1\xdc\x4f\x39\x64\x92\x33\xfc\xe2\x49\xa5\x90\xd3\x81\xfc\x2a\x71\x2b\x41\x33\x0d\x26\x37\x72\x5b\xfa\xdd\xcf\x4b\xd8\x6c\x9f\x7e\x4d\xc3\xd4\x07\x5d\x7c\xe1\xff\xf3\x2b\xea\x67\xa8\x93\x80\x74\xfa\x07\x8c\xe1\xa1\xef\x61\x6c\x55\x81\x50\x3e\xe4\xb2\x21\xa9\x55\x5f\x2f\xc5\x51\xfa\x19\x4d\x64\x3b\xa0\x8e\x1f\xa0\x2e\x54\x28\x46\x3f\x7b\x25\x5d\x71\xb6\x0a\x78\x42\xcb\xa3\x8a\x9a\x52\x93\xbe\x40\xd9\xfc\x65\x83\x15\x64\x27\x71\x82\xf0\x9e\x4b\xd2\x9b\xd4\xe8\x2e\x73\xfb\x32\x63\x3e\x88\x7d\x68\xfd\x45\xbf\xdc\x26\x03\x04\x2e\xe0\x3a\x17\x2b\xcc\x7f\xe1\xdc\x28\xed\xd5\x32\x5a\x49\x39\x0f\xfc\xbe\xdb\x4c\x95\x48\x85\xc9\xa4\x2c\x7a\xfa\xe9\x81\x32\x40\x85\x42\xa3\x37\x7b\xeb\x86\x26\xe9\x5a\x22\x07\x90\xd9\xcf\xf6\x33\x3a\xd3\xa0\x4f\xcc\xbb\x1d\x57\xef\x31\xc7\x43\x15\xd4\x4d\x5c\x2c\xd4\x2b\x72\xd3\x5e\x4e\xf7\x55\x70\x03\x33\x6e\x2a\xd9\xab\x60\xc1\x9b\x4f\xa9\x93\x88\x11\x1b\x4b\x64\x5c\x76\xc6\xbe\x11\x1a\x43\x8d\xf9\x81\xae\x83\xbc\x38\x29\xfa\x82\xaa\x74\x6d\x58\xb9\x55\x93\xac\xc4\xc8\x09\xaa\xe5\x90\xeb\x9d\x2c\xec\x63\xb4\x17\x3d\x8f\x51\x64\x55\x25\x8e\xff\x75\x5b\x4b\xcc\xa9\x55\xa3\x21\x4f\x6d\xf2\x6c\xee\x40\x6d\xb4\xca\x3d\x97\x32\xbb\x67\x03\xba\x08\x77\x5a\xd8\x03\xcc\x72\xfc\x4c\xf0\x90\x61\x5a\x23\xd1\xc5\x0c\x81\x31\x43\x66\xe2\x0a\x03\x8d\x51\xa5\x89\x0d\x42\x4f\xe6\x8b\xaa\x78\x0d\x70\x55\x26\x38\xdf\x6d\xd7\x98\x2d\x48\x0a\x6f\xf6\xec\x52\x94\x76\x3b\xd4\x4e\xc6\xef\x3d\x9e\x52\x1d\x65\xc8\x02\x91\xee\xcc\xad\x23\x87\xe8\xf8\xd9\x06\xe2\x2d\x99\xbc\x7f\x44\xfd\x7e\x03\xb9\x16\x0d\x1b\xf0\xfb\xbf\xb8\x60\xf4\x6a\x3a\x30\xf6\x94\x2c\x4c\xe6\x29\x6d\x88\xe6\x35\xfc\xeb\xda\x39\x13\x90\x30\x03\x69\xc8\x48\x83\xf0\x5a\x53\xb0\x24\x9f\xea\x0b\xd9\xca\xf5\x75\x9c\x28\x30\xf5\xe4\x3e\xf2\x4c\xb3\x81\xbb\x98\x46\x9d\x77\x35\x01\xfe\x90\x05\x55\x3e\x40\xfc\xda\x04\xd3\x1a\x2a\x64\x81\x0f\xad\xee\x3f\x9e\xd1\x9c\xba\xba\x50\xad\x4a\x18\x6e\x70\x93\xb2\xf3\x69\x44\x4e\x15\x33\x17\xb9\x36\xee\x9e\x12\x68\xb3\xee\xcc\xca\x51\x46\x73\x0f\x39\x8e\xa4\xa1\x3e\xd1\x4f\x1b\x4f\x12\x8b\x51\x8f\x51\x0b\x02\x7a\xb1\x27\x7b\xea\xbe\xc1\xda\x1a\x91\xf3\xee\x6f\xae\x55\xbc\x30\x65\x76\x3d\xe7\xa4\x71\x48\x85\x9c\x43\x0b\x47\x49\x47\xa4\xc2\x92\x43\x4a\x5d\x08\x9e\xf9\xf9\x09\xba\xec\x80\x10\x7a\xca\x5e\x65\x8a\x59\x0a\xdb\x07\x71\xc9\x37\x0e\xd1\x47\x37\x14\x26\x29\xb3\x9f\x51\x88\xe8\xf8\xcd\x36\xa9\x9b\xe5\xd7\xee\x9d\xa0\x77\x4d\x97\xdc\x30\x45\x95\x89\x3a\x78\xff\x89\xe3\xfd\x45\x65\x50\x00\xd5\xde\xfe\x65\x0d\x03\x82\x1d\xca\x8d\xed\x7a\xb2\x7f\x1a\x65\x8a\xb4\x13\x18\x38\x46\x93\xc7\xab\x63\x8a\xa9\x21\x5c\xb1\x27\xbf\xfe\xee\xe1\x46\x55\x22\x34\xf3\xdb\x9e\x6c\xd1\x55\x76\x42\x24\x4d\x6e\x7a\x72\xbf\x1b\xa6\xb1\xaa\x68\xdd\xc3\x01\x09\x28\x94\xb0\x99\xf7\x5b\x86\x2b\x89\xc2\x94\xcb\xc9\x65\x5b\x55\xcf\x70\x12\x18\x98\xe1\x3a\x89\x0b\x38\x4e\xa5\xbf\x73\xbf\xae\xc5\x1f\x48\x05\xa3\xe8\x93\x27\xc7\x1b\xc1\xa4\x97\xb0\x16\x9d\xbd\xaf\x49\x6d\xb4\x8c\x2c\x49\xea\xce\xcf\x5f\xad\x1e\x98\xf0\x2b\x2b\x14\xa3\xab\x3c\x05\x9d\x2d\xf3\x19\xdc\x98\xf9\x1f\xd5\xdf\xc8\xca\x95\xab\xa6\xa4\xbf\x28\x55\xc8\xbf\x39\x5a\x21\x1f\xf9\x94\x0c\xd8\x1f\x5f\x6f\x33\xd4\x8e\x68\xe8\xe3\x2a\x75\x84\xa9\xf9\xba\x83\xea\x5a\x84\x69\x6b\xa1\x18\x5d\xb7\x5e\x5b\x42\xd4\xf3\x40\xf6\x3f\x7b\x58\x81\xa3\xda\x75\x1a\x7b\xf4\x56\x13\x79\xb2\xc1\xed\x0b\x24\xd0\x3f\xfb\xe9\x86\x69\x66\x4e\x3c\xd1\x11\xfc\xed\x19\x2d\xa7\xab\x53\x1a\x00\xd0\x26\x3f\x64\x93\xde\xa7\x2d\xd1\x0e\x12\xf0\x06\xe5\x8f\x22\xdd\xaf\x9f\x60\xce\xbd\xcf\x55\x35\x0e\x74\x05\xb1\x12\x44\xbb\x8c\xff\x88\xfa\xf0\x06\xb1\x88\x0b\x2d\x8c\xdc\x5f\x36\xa5\xd4\xf0\x31\x93\xfe\x4f\x6b\x16\x42\xa2\x34\xa3\x75\x1e\x5f\x40\x87\x94\x40\x6a\x23\x4e\x9d\x6a\xcf\x99\x64\xda\x06\xe8\xca\xf0\x35\xff\x8b\xc9\x09\x64\x84\xf8\x66\x62\x17\x5d\x7c\x40\x47\x46\xf8\x42\xb7\xec\x3f\x9f\xd1\x74\xac\xaa\x0c\xe3\x42\x40\xa4\xd9\xd5\x17\xef\x16\x5d\xe1\xd0\x0d\x52\x26\x36\x5f\xef\x14\xa3\xcf\xf8\x64\xe5\x41\xf0\x07\x2b\x93\x2a\x01\xb9\x56\xa1\x18\x5d\xb9\xd1\x00\x7b\xc4\x15\x4e\x25\x74\xa4\x45\x0c\x1f\x3f\xfd\x6b\xdf\x6b\x8d\x52\xa5\x81\xfd\x40\x58\x47\x37\x83\x7d\xfb\x2a\x8e\xb3\xd7\xcc\x55\xca\x7c\x79\x25\xe4\x95\x55\xca\x18\x29\x13\xce\xc5\xc8\x7f\xa0\xbf\xa9\x21\xd1\x6a\x88\xe0\xdf\x7a\x5c\x8c\x0b\x59\x23\x65\x78\x90\x19\xf5\x92\xd0\x90\x2f\x8b\xd1\x66\xa1\x18\x9d\xec\x93\xbe\x2d\x17\xc7\x01\x84\xbb\xe8\x27\xf5\x48\xee\xfe\xed\x46\x33\x9f\xe3\x84\x80\xee\x97\x3b\xb9\xb3\x45\x43\x9c\x04\x8c\x02\xd0\x28\xfe\xa7\xc7\x16\xa5\xaf\x55\xd0\x24\x60\xec\xca\x23\xca\xa3\x97\xe9\xdd\xd3\x00\x35\xe2\x8a\x81\x1f\x05\x86\x6a\x5a\x7b\x68\x57\xb0\xf4\xea\xcd\xae\x3f\xa1\x21\x8f\xa8\xeb\xf2\x3a\x3c\xd7\xd9\x50\x41\xb9\x37\x15\xbd\x9e\xdc\x5f\x19\x62\x88\xd3\x00\x25\x0b\x69\xda\xd9\x1b\x84\x91\x02\x76\xdb\x51\x5d\x53\x3c\x89\x4c\x65\x73\x0b\x25\x5e\x68\xd9\xfa\x78\xdd\x1d\x89\x71\x75\x91\xa4\x83\xf8\xe4\x6e\x83\x18\xa7\x09\xb8\x89\xfd\x3a\x71\x33\xf4\x3f\x96\x60\x37\x60\xa0\x79\xbb\x72\x19\x0c\x28\xdb\xc3\x3a\x6f\x1e\x6d\x5e\x6d\xd2\x1a\x6b\x58\x12\x23\x8a\x86\x12\x19\xc3\xf1\xc2\x24\xae\x72\x25\x59\xfe\x9c\x79\xd4\xfb\x81\x94\x1c\xdb\x27\x24\x2d\x53\x98\xa7\xa3\x42\xa0\x30\x10\x8a\x7c\xf1\x0f\xf7\x3f\xac\x6a\x30\xe5\x87\x5e\xa0\x1d\xc2\x94\x69\x95\x63\xbc\xe9\xf8\x46\x3d\x46\x7c\x2c\x65\xe2\x6e\xda\xa7\x85\x08\x4d\xe3\xe9\xae\xc7\x92\x90\xd0\x06\x4c\xf5\xcf\x3e\x3d\xdc\xc8\x1f\x24\xf9\xac\xe5\x54\xaa\xd7\x8e\x2b\x98\x4b\xbc\x46\xcb\x8c\xae\x5f\x25\x24\xb6\x48\x05\x32\x47\x5e\x6d\x6a\x70\x31\x1c\x7f\x22\xaf\xda\x97\x6d\x83\x28\xef\x51\x4f\x6c\x65\x1e\xfe\xbe\xf9\xd6\x50\xd9\xe3\x5e\xb2\x44\x4f\x95\x37\x7c\x58\xeb\x31\xb9\x60\x88\x92\xc2\xc4\x1d\xdd\xa7\x25\x4f\x9a\x52\xca\x89\xa7\x05\xbf\x5f\x20\xc6\xb9\x60\x6b\xee\x8a\xf7\xd5\x6f\x87\x9e\x90\x86\x8f\xef\x74\xc4\xd3\x49\x64\xa8\x62\xd4\x54\xd5\x5d\xbd\x58\x93\xa8\x88\x53\x30\x10\x77\x3a\xf4\x7e\xff\xc4\x2d\xb9\xad\x50\x8c\x4e\x5d\x1a\xa2\xb1\xa7\x98\x55\x85\x23\x7e\x99\x01\x95\x28\x39\x94\x8f\x5b\x04\x6a\x21\xd7\x66\xa4\x0d\x2e\x6d\x15\xa2\x52\xef\xac\x50\xe3\xcd\x2e\x54\x47\xba\xa9\x54\x36\x7c\x12\x56\x72\xe8\x0a\x9b\xdd\x9e\xdc\xc7\x57\x27\x69\x36\x72\x6b\xea\x69\xec\x35\x94\x3a\x4b\x0e\x71\x05\x09\x24\x37\xec\xe5\xe1\x9a\x62\x11\xc7\x44\x40\xf7\xd5\x06\xc1\xa7\xc2\x12\x86\xba\x9b\xa6\x1e\xb9\x47\x0e\x29\x09\xaf\x2e\x5e\xb7\x5a\xdb\xd4\x43\xb2\xb1\x4f\x18\x00\x86\xaf\xde\x2d\x36\x1c\x2a\x11\x51\x87\x4c\x11\xfa\xca\x55\xe4\xda\x15\x2e\x06\xf0\x09\x43\xfb\x77\xda\x74\x6e\xfa\x24\x2e\xf1\x89\xb3\xea\x2c\xf5\x9c\x44\x89\x29\x33\xce\x70\x26\x70\x31\xb6\x93\xe9\x6c\xee\xda\x5d\xc9\x79\x6f\x13\x6d\x82\x98\x5b\x62\x6b\xd1\x8c\x54\xaa\x1c\x3e\x77\xf3\x54\x83\x84\x49\x5d\xdc\x05\x7b\x29\x1b\x40\xc6\x5a\xb8\x85\xfa\x16\xed\x68\x3a\x56\x06\x3e\xac\x8d\x73\x18\x11\x05\xcc\xee\xd1\x46\xce\x10\x0a\x52\x66\x14\x3a\x23\x45\x6a\x12\xc6\xdb\x96\xe1\x06\x75\x42\xa9\x31\x79\xe3\x49\x7d\x26\xcb\x18\xe6\xbb\x6a\x9f\x69\x59\x04\xca\xec\xc2\xb2\x28\xce\xcf\xaf\x1f\xa7\x23\x1b\x02\x44\x20\xb1\x38\x6a\x20\xf5\x1a\xd8\x0d\x93\x86\xfb\xe3\xe3\xfa\x27\xcf\x94\xbf\x98\x55\x13\x4c\x22\x9d\xa6\x68\x27\x00\x94\xd9\xa7\x95\xe1\x4e\x83\x9f\x48\x33\xb7\x27\x4b\xa1\x75\x3a\x67\x7f\xfe\x42\x50\xe0\x97\x71\x58\x60\xa1\x18\xbd\x62\xe8\x7a\x75\x54\x89\x25\xd9\xcc\x5f\x55\x8c\xc8\x80\x76\xc4\xd9\x72\x3f\x15\xba\x7c\x44\x5c\xbf\x14\x02\x4f\xb9\xb5\x45\x71\xd3\x71\xbd\x50\x8c\x36\x3e\xab\x2b\x2d\xfa\x00\x89\xe6\x93\xcd\x99\x42\x34\x15\x71\x64\x85\x57\xe5\x59\xf1\x0b\xd7\x18\x77\x17\x1f\x0b\xad\x4d\x18\xf6\x13\xa3\x06\x8b\x4f\x2c\x13\x57\xc0\x3e\x7a\xf2\x1f\x6c\x57\x09\x2e\x28\x69\x45\x49\x9d\xe4\x2a\x6a\xda\x86\x97\xd4\x5a\xfd\xb8\xb6\x5b\xe9\x56\xf3\x68\x12\xd6\x82\x71\x9a\x09\xa7\x03\xde\x92\x8e\x13\x9c\x8b\x82\x14\x05\xe7\xb5\x36\x40\x17\x20\xcb\xa2\xf5\x3a\xb5\x79\xfc\x04\xa2\x59\xfe\x9e\xcd\xe9\x7b\xab\x21\x52\xe7\x39\xa7\xa1\x69\xf6\x95\x37\x14\xca\x66\xd6\x2c\x1e\xe5\xef\x7b\x1c\xce\xe1\xeb\x2b\x88\x51\x57\xd3\xfc\x89\x0e\x0a\x7e\xeb\xea\x38\x77\x6d\xf2\x83\x1c\x06\x9b\x38\x60\xc8\x06\x95\xf1\xcc\x6f\xfb\x1b\x12\xbe\x09\x24\x45\x8e\xae\x4f\x0d\xd1\x76\x0a\xb2\x6a\x10\xb6\xce\x5f\x80\x0c\x6a\x6d\x58\x0b\x9d\x76\x2d\xb5\x9a\xfc\x78\xfa\x89\x74\x81\x72\xa4\x2f\x7a\x56\x99\xe1\x23\x93\x5e\x74\x68\x83\x60\x58\xe6\xd9\x5d\x70\x5d\xeb\x50\x62\xe7\xf5\x39\x27\xbd\xac\xa9\xef\xe3\x80\x08\x69\x01\xe8\xbf\x2c\x19\xa3\x7c\x88\xd2\x6c\x9a\x6b\x35\x22\x3d\xf2\xbd\x30\xe0\xe8\xd1\x8f\xad\x30\x5a\x56\x9d\x98\x59\x44\xf2\x5f\x33\xb3\xb6\xf4\x17\x05\x2c\x8a\x73\x8a\xe8\x8e\xe3\xe9\xb6\xd2\xac\xb6\x42\x1d\x24\x49\x7a\xcb\x53\x3f\x36\x53\x0b\x28\x55\x12\xc0\x64\x7e\x69\x6b\xfa\x2b\x69\x29\xe0\x26\x8d\x62\x1e\xf5\x67\x43\x3f\x01\x39\x71\x84\xb0\x12\x43\xbd\x4b\x86\x6b\xbd\x43\xdc\x5a\xa2\x06\x95\xf9\xdc\x21\x6d\xcf\x85\x9e\xe7\x10\x91\x89\xec\xe1\x3e\xab\xc2\x72\x60\x42\xa1\x18\xdd\xba\x27\xed\xba\xf8\x51\x80\xd3\xf6\x9f\xae\xc6\x7d\xa8\x91\x98\xeb\x1a\x5e\x68\xb8\x0b\x73\x0b\xc3\x84\xb9\x90\x1f\x94\x37\x28\xd6\xae\x55\xa5\x4c\x82\x7b\xf3\x6b\x9e\x82\x35\xbf\xc6\x42\xae\x4d\x5c\xd4\x00\x02\x07\xff\xf0\xab\x02\xbd\x45\xe4\x06\x94\xf1\x0e\xcc\x80\x4d\x4a\x0a\x9a\x6a\x8d\xb7\xec\x0b\xa3\x46\xe9\x13\x2b\x9c\xca\x1d\x7b\x72\x23\x1d\x6d\xda\xe8\x79\x54\xc0\xee\x8a\x51\x45\x4d\xa0\xea\x34\x2c\x14\xa3\x1b\x5e\x30\x9d\x3e\xb8\x69\xb4\x84\xc3\x7f\x4b\xeb\xea\xca\xf2\xf8\x6a\x63\xe8\x3c\x6d\xde\x9c\x36\xa9\x95\x3d\xde\xf0\xab\xf4\x43\x57\x32\xd0\xfe\x74\x6f\xfa\x9b\x3a\x30\xf2\x94\x4d\x5b\x36\x7f\xd8\x10\xf3\x13\xda\x5c\x52\xcc\x2f\xea\x7a\xdf\xc8\xd4\x48\x03\xcb\x8e\xd8\x8d\x77\x1b\x76\xea\x71\xd9\x63\x0b\x37\x1c\xb3\xa9\xff\x7a\xd6\x44\xdd\x94\x9c\x64\x6c\x9e\xbf\x6c\xc2\x95\x29\x56\x05\x0d\x03\x2d\xe6\x5c\x37\x5f\x83\xff\xf3\xb5\xd8\x77\x4b\xfa\xb2\x1c\x64\xd5\xc4\xc8\x32\x83\x2e\xa8\xa7\x07\xac\xd5\x62\xf4\xd5\x7d\xb0\xa7\xcb\xc4\xaf\x8a\x1c\x62\x40\xa4\x09\xe7\xc5\x85\x80\xcf\x41\x0d\xfb\xf6\x42\xe0\xef\xa0\xac\xe6\x39\x08\x46\x8e\xd7\xbc\x60\x7c\x5d\x1c\x00\x84\xea\xe0\x2e\x27\x59\xb7\x01\xa6\xb2\x19\xfe\x2d\xcd\xff\x2e\xc0\x0e\xf6\xaa\xd4\x05\xf0\xc2\xda\xe7\xd5\x8c\xd6\x8f\x57\xaa\x9c\xb5\x64\x4f\x19\x26\x9f\x1c\x8d\xac\x69\x72\xe4\xb6\x77\x1a\x29\x46\x68\xdb\x02\x0e\x9b\x9f\xe9\x42\x10\xbe\x89\xd0\x46\x9c\xe0\x68\x41\xf0\xc4\xd9\x74\xc9\x58\x22\x14\x80\xce\x0e\xad\x48\xda\x42\x6e\xe5\xdd\xc9\xa2\xef\x4c\x51\x9c\xfe\x6d\xe2\x24\x23\xbb\xe7\xf8\x98\x5e\x91\xa0\x07\x5b\x8d\xe7\x44\x82\xc0\x11\x22\x15\xe7\x26\x0a\x7d\x72\x46\xea\x58\x32\x85\x79\x3d\x3a\xde\xd0\x65\xe1\x73\x1b\x61\xdc\xd2\xb9\x4a\x4d\xe9\x3a\x30\xae\xc5\x2f\x73\xc7\xb5\x0a\x6f\xca\x91\x84\x5a\x3e\x9f\xdf\x78\x64\x98\x96\x42\xb7\x83\x40\x6f\xbc\xd9\x07\x9e\x95\x69\x64\x60\x55\xa1\xa1\x73\xec\xf4\x87\x92\x6c\xb7\x50\x8c\x32\x73\x67\xfc\xbf\x69\x10\x09\xc5\xab\x5d\x46\x6a\xe5\x33\x84\x1d\x79\x34\x70\x81\xbb\x85\x46\xe0\x05\x63\x0d\x91\x44\x39\xe5\x24\x3a\x60\x14\x14\x8a\xd1\xb7\x06\xe9\x02\x98\x1e\xc3\x3e\x76\x03\xae\x17\x10\xdf\xbd\xd3\x32\x41\x75\x7a\x92\xca\xce\x6f\x6d\x3a\x5f\x5f\x9f\x9e\x3e\x32\x2a\x98\x43\xba\x2a\x7e\xaf\x93\x88\x2f\x6c\xd0\xb4\x1c\xb8\xa3\x4e\x66\xee\xeb\xc3\x54\xf7\x30\xd4\xe4\x32\x0c\x4b\xba\x3a\x38\x20\x73\x5e\x7c\x23\x29\x83\x1a\x84\x35\xad\x8f\x5f\x6e\x55\xe7\x52\x03\xf9\x55\xcc\xcb\xe7\x31\xef\xf6\x32\x8a\x46\x96\xaa\xb9\xb3\x0f\x3d\xa7\x75\x0c\xbb\xaa\x88\x09\xcf\x81\x6e\x75\x64\x84\xc9\xc8\x72\x8c\xd1\x2a\x97\xd3\x97\x42\x31\x62\xab\x05\xe5\x15\xdb\x4e\x4a\x7e\x6a\xc6\xc3\x83\xd3\x00\xa1\xf8\xc5\xfe\x8d\x66\x54\xea\x74\xf9\x01\xe9\xe2\x6d\xf5\xdc\xef\x1a\x02\x26\x25\xb1\xfc\xc5\x9e\xec\x17\xb7\xeb\x38\xb5\xba\xb0\xeb\xe2\xe9\xd1\x5c\x01\x23\x0e\xdd\x12\x46\x1c\xf3\xd6\x93\x1d\xfe\x8a\x0a\x02\x5e\xb5\x4b\x20\xdb\xe3\x87\xde\xe7\x69\x58\xa6\x6b\x02\xc4\x84\xdd\xe8\xab\x2f\x9a\x2a\x99\xc4\x45\x3c\xc0\x8b\x91\xc9\x33\x1a\x12\xb8\x4e\xfd\x1a\x6d\xf8\xb5\x38\xc1\x7c\xb3\xdd\xf0\xb7\x22\x0e\x47\x07\xe8\x1e\xfd\xf7\x2e\x37\x26\xef\x8e\x52\x4c\xba\x47\x13\x55\xae\xb1\xd0\xaf\x5a\xd5\xf8\x09\x44\xcb\x66\x1b\xfe\xae\x3c\x13\x91\xd2\x78\x99\xcf\x46\xa9\x8e\xb4\x70\xdb\xe4\x63\x8c\xce\x05\xe9\x2b\xaa\x11\xb7\x86\xc5\x35\xc9\x80\xf3\xe2\xe3\xfd\x55\x01\x1c\x7f\xde\x33\x6f\x0d\xe0\xfb\xaf\xe0\x86\xf1\xf7\x14\x8a\xd3\x55\x85\x53\x25\x6e\x05\xb2\x9b\x73\xaf\xf4\xc2\x37\xe4\x6f\xfd\xe3\xe3\x05\xc7\x0f\x37\x90\xf6\x45\x99\x3f\xf4\x81\xfa\x74\x1d\x0d\x70\x33\x32\xe9\x47\xe7\xd3\x45\xf5\xa4\xba\x68\xe1\x64\x0e\x1b\x66\x83\x76\x88\x9d\x32\x66\x29\x95\xa0\xbc\xa0\x00\x2c\x46\x2c\xbe\xe4\xa4\x90\xfe\xa1\xa1\xd3\xd9\x81\x24\x6f\x22\x2a\x4c\xd4\xcc\x76\x41\x6f\xf1\xb9\x00\x0e\xa3\x9b\x79\x5b\x92\x2b\x42\x47\x13\x76\x0c\xd0\x5a\x69\xf1\x6b\xfe\xc3\x42\xd1\x14\x0a\x50\xa9\x04\xe5\xd2\xa3\x0f\xa8\xe5\x58\x0d\xeb\xc4\x21\x12\xf1\x9c\x1d\x7e\xaf\x21\xfb\x20\xf4\x93\x61\xa7\x6d\x60\x50\x78\xd5\x43\x61\x76\x9b\x9d\x7e\x09\xee\xc4\x26\x3e\xf2\x3c\x8c\x04\xcc\x3c\xca\x95\x04\x2a\x9f\x4f\xfd\xa3\x31\xf3\xd5\x4b\x09\xb8\x5a\x33\x17\xa2\xd1\xec\x59\x5c\xea\x32\xec\xc7\xd9\x07\xef\x64\xf6\x64\x2e\x1f\x24\x7c\xad\x30\x16\x1d\x83\xc9\xf7\x9a\x7e\x38\x0c\xd0\xc3\xad\x20\x1f\xf8\x77\x6f\x0f\xd0\x6e\x8b\xa3\x43\xde\x3b\xa0\xee\x74\xda\xec\xa0\x5a\xf0\x31\x06\x34\x4f\xe6\x9d\xf9\x9a\x17\x6e\x22\xcb\x50\x28\x46\x4b\xa1\x9f\x52\x58\x63\x01\x98\xd4\x7c\xf5\x0f\xcd\x56\x57\x8d\x3b\x83\xb8\x2a\xe4\x75\x52\xfc\xf8\xbf\x3b\xdb\xd0\x7b\xc0\x7e\xc0\x68\x17\xb6\xa5\x73\x62\xeb\xc8\xb4\xe4\xa3\x5f\xa3\x8c\x5a\xd5\x1a\x71\x53\x44\xc3\xe8\xdf\xe7\x9b\x53\x2c\xcd\x76\x2b\xfa\xd2\x05\x78\xba\x82\x00\x96\x19\x33\x5b\x35\x6d\x85\xf9\xb8\xa4\xce\x5f\x34\x9c\x52\x6c\xec\x04\x48\x32\x9b\x9e\xb9\x08\xfd\x7c\xcc\x85\xcd\xf3\x9b\x0c\x79\x2a\xcb\xc1\x8c\xd8\x58\x08\xc3\x27\xc2\x58\x86\x15\x88\x38\xd1\x38\x26\x93\x93\x3a\x26\x68\x6e\x6a\xc8\x47\x36\x76\xb9\x17\xc4\x1d\x06\x36\xcd\xe7\x02\x76\x12\xd3\xf6\xe1\x05\xa6\xcd\x69\x9c\xc1\x8a\xae\xec\x0f\xb7\xaa\x29\x40\x03\xf3\xee\xb9\xc4\x79\xe7\xda\xde\x1d\x28\x4f\x64\x9e\x5d\x15\x8a\x51\xbe\xa4\xde\xba\x1f\x2f\xca\x2a\x46\xf0\xd6\x73\xfb\xf6\x40\xc2\x7f\x7d\x99\x11\x0b\xa5\x83\xdd\xc4\x37\xd2\x31\x82\x13\xf1\x21\xe7\xfe\xf5\x44\x83\xc7\x8f\x5c\xdb\x49\x6f\xea\xfc\xa4\xb9\x43\x35\xfa\x01\x3f\x90\x79\xff\xe2\x77\xaf\xea\x03\xad\x8a\x03\x0e\x52\x99\xdb\xef\x4b\x47\x90\x39\x73\x65\x60\x6d\x19\x33\x46\x47\xce\x86\x8e\xa9\x23\xd6\x93\xfb\xf4\x6e\xb5\x9f\xca\x0c\xbb\xdc\xea\xe7\x6f\x37\x36\x0b\x09\x48\x2d\x96\xa3\x86\x8e\xb5\x4f\x9d\x86\x94\xa1\x9a\x29\x0e\x15\x68\x48\xf0\x07\xce\x26\x68\x52\xa5\xf1\xde\x1b\xf4\xd6\x20\x8d\x3c\x0a\xfb\xf1\xb9\xf7\x54\x48\x2a\x85\xdc\x21\xef\x99\x83\x3a\xd9\xc0\x0d\x78\x70\x4b\x86\xa3\x8f\x6f\xd4\xe1\xdd\xfc\x7d\xe4\x5b\x0c\xa5\x29\xc2\xed\x54\xf8\x59\x11\xd5\x4e\xa7\x6d\x0a\xa4\x17\x48\xc1\xc7\x6e\x5c\x3e\xa9\x62\xe3\xe2\x29\x53\x4e\xd7\x17\xf3\x8c\xcf\xe4\xd3\x2f\x75\xe6\x3c\x69\x7f\x94\xbd\x7d\x87\x51\x64\x97\xcb\x54\xf9\x7f\x67\x47\x1a\x0a\xc1\xd3\xe6\xce\x91\x5f\x57\xd3\x70\xe7\x36\xd5\x3a\xc6\xd1\xed\x8b\x74\x61\xbc\x32\x66\x7c\x56\x15\x7d\x72\x43\x8b\x06\xd8\x68\xe0\x82\x8f\x2d\xca\xd7\x41\x96\x3c\xac\x5e\xa5\x4b\x1b\x80\xad\xf9\xe4\x6e\xc3\xd3\x19\x33\x12\xa0\x0a\x4e\xba\x8f\x73\x17\xab\xd6\xad\x47\xeb\x1e\xad\x17\x3a\x44\x37\xac\x27\x7f\x9d\xa1\x3a\xe2\x62\xc4\x1c\xa1\x38\x93\xd9\x75\x46\x73\xbe\xf7\x90\x21\x24\x78\xef\x38\x75\x67\x28\x0c\x28\x37\x1a\x04\x08\xd4\x87\xf2\x57\x19\x03\xd7\x35\x53\x8a\x5a\x21\x71\xdb\xbb\xc6\xf3\x6a\x0b\xaa\xa2\xfc\xb8\xab\xbf\x49\x1f\x61\x36\x66\x02\xd2\xf0\xb9\x47\xd4\xfe\x10\x8c\x6c\x8e\xc0\x7b\x41\x84\x61\x54\xf7\xc3\x66\xff\xf5\xec\x1f\xde\xd6\x07\xeb\xcc\x85\x50\x98\xad\x6b\x10\x26\xcf\x41\x95\x10\xfc\x05\x1b\x2b\x35\xd8\xb9\x44\xc5\x9c\x3f\x2d\x9d\x88\x3d\x1c\x90\x6e\xc8\xa7\x8e\x0c\x93\xdc\x10\x10\x9a\xd5\x3a\x02\x73\x1e\x4f\x52\xde\x86\x86\x59\x8b\xe6\x5e\x52\x6f\x17\xbb\x0e\xa9\x54\x03\xe1\x7b\x9a\x5f\xff\xb8\xaa\x50\xe2\x54\x93\x5f\xe3\x47\xfa\x6b\x43\x5a\xea\xa0\x38\x3e\x46\xeb\x5a\xd2\x4b\x78\x7a\x5b\xdb\x0c\x98\xaa\xbd\xb4\x57\x29\xb8\x71\x58\xfc\x96\xf5\x90\x9a\xac\x25\x75\x6c\x8a\xb7\x45\xed\xeb\x5b\xf4\xca\x35\xe8\xaa\x70\xfd\x68\x0e\x08\xed\x3b\x42\xc3\x88\x61\xe2\x96\x18\x76\x5d\x78\xbb\xb7\x1e\x4b\x1f\xae\xc9\xfc\x42\xbc\xc2\x11\xc6\x68\x57\x60\x19\x44\x6f\xf1\x4f\x63\xb4\x51\x8e\xef\x87\x0c\x0b\xb7\xbe\x17\x57\xea\x16\x1a\x16\x64\x29\x3d\x99\x33\x0f\x0a\x79\x20\xa0\xac\xc6\x5f\x50\x3f\x2b\x70\x58\x8e\x53\x70\x71\x07\x5f\x03\x2f\x39\x57\x68\xf4\x82\xf8\x27\x53\x4f\x5f\xd3\x94\x9f\x78\xbd\x34\x59\x87\xdf\x90\x3e\xca\x52\xcc\xc1\x84\x61\xf5\x4f\x8d\x51\x1a\x90\xa1\x0c\xca\xf6\x6a\x45\x67\xde\x4d\xef\x42\x97\xba\xb8\x93\xf8\x5c\xad\x83\x57\xad\x17\x1f\x1e\xa4\x0d\x4b\xc1\xb6\x2f\x3b\xf6\x21\x81\x40\x0e\x75\x61\x96\x4f\x3f\xd0\x5f\xe4\x6e\x08\x7c\xbd\xdf\x7e\x34\xbd\x27\x66\x49\x89\x9f\x78\x11\x2e\x7a\xd7\xe0\xdf\xa1\x92\x83\x01\x35\xd0\x7c\xb3\xb9\xcc\x91\x71\x2a\xae\x32\x52\x0a\x5d\xe4\x34\x1d\x19\x77\x5e\xdb\x1b\x0c\x9b\x37\xd7\x36\xae\x35\x44\x4e\x1c\x0f\xdc\xc6\xe2\xc4\xf3\xdd\x48\x7b\xb5\x25\x68\xbd\xc4\x9b\xe7\x17\x27\xf5\x37\x8b\x7c\x98\xb5\x65\x5e\x35\x98\x42\x73\xdb\xda\x0a\x75\x05\x0b\xcd\x8c\x69\x53\xaf\x74\xee\xcc\xf8\x41\x38\x47\xfe\x57\xb3\x0c\x75\xb8\xd6\x1a\xe9\x6e\x52\x89\x51\x5a\x73\xba\x7a\xc5\xcd\x65\x7e\x7e\x0e\x92\xd2\x1b\xb0\x83\x5c\x0d\xcb\x94\x7d\x7c\x7a\xb3\xd1\x13\x13\x15\x08\xbc\xd1\x6f\x6d\x35\x39\xd5\x30\x1b\x87\xd7\xd2\xbd\x5c\x16\x1f\x35\x68\xd7\x7c\xd8\x31\x7a\x6b\x18\x4b\xa9\xd1\xc3\xaa\x4f\xd8\x9d\x42\x6b\x4f\xdc\x36\x38\x29\x04\x91\x2b\x7d\xd8\x36\xad\x36\x4d\x63\xee\x08\xb1\x9f\x1c\xe0\x99\x3f\x5e\x30\xb4\x2b\xe2\xe2\x3e\xe8\x12\xc3\xee\xef\xdd\x9b\xde\x16\x09\x9d\x35\x0d\x26\xc8\x8f\x71\xff\x9f\x84\x94\x39\x38\x4b\xc7\xd1\xe4\x2b\x8b\x60\x97\x4e\x6b\x6b\x8b\xdf\x3a\x07\xb1\xed\xbb\x6c\xa4\x5e\xdd\xd6\x43\x57\xa5\x67\xd9\x31\x37\x68\xd8\x2d\x8a\x60\x22\x1a\xfd\xea\x32\xa5\xc9\xce\xc2\xf8\xfe\x6e\x6a\x6d\x4e\xbe\x84\x07\xe8\x31\x26\x07\x26\x0e\xd7\xb2\x06\x17\xd8\xbe\x7b\xe0\xa7\x8b\x31\x61\x61\xa2\x62\xe4\x5d\x34\x00\x98\x61\x7c\xd2\xd0\x50\x5a\x24\x5e\x67\xab\xa2\x15\x3b\xa4\x1b\x95\x30\xdf\x8e\x99\xdb\x37\x18\x3e\xbd\xb4\x14\x32\x77\x4a\x53\xe3\x24\x8f\x4e\x42\xbd\x78\x7d\x1c\x50\xb4\xb4\x98\xe6\x0d\xae\x72\x03\x33\x01\xdd\x4e\xd4\x79\x66\x44\x63\x8d\x80\xc2\xea\xc8\x4d\x15\xb8\xf9\x29\xa7\xd3\x22\xa6\x66\x3f\xae\xb9\x39\x53\xdc\x65\x52\xc4\xa9\xdb\x55\x27\x41\x97\x4c\x9f\xef\x63\x29\x95\x41\x1c\x70\x02\x6b\xf6\xc4\x33\x5a\x8f\x93\xe1\x0a\xe2\x00\xed\xdc\x97\xde\x50\xb3\x0a\x4d\x6e\x24\x1a\xbf\x7b\x84\x8e\x21\x65\xfa\x9a\xae\x9d\xd4\x74\x7f\x90\x8f\x4b\x60\xa7\x97\x7b\x75\xa7\xd6\xd2\x49\x5a\x99\x2d\x4f\x1b\xc2\x6b\x1e\xb6\x02\x64\x85\x0e\x02\x0d\xf5\x5c\x47\xd9\x50\x38\x13\x4e\x04\x53\x53\x02\x04\xe7\x57\x0e\xd3\x3a\x09\x82\x94\xc7\xc3\xb2\xf1\xf9\xbc\xb9\x6f\x23\x2b\x79\x20\x2f\x8f\x56\xfa\x93\xbc\xb7\xd7\x62\x2a\x15\x8a\xf1\x09\xaf\x2b\xbf\xd0\x36\xce\x28\xa1\x4a\x25\x82\xd3\x93\xaf\xfc\xa6\xee\x66\x11\x1b\x2d\xb0\x64\x5b\x2f\x33\x7d\x89\x1c\x4e\x2c\xe5\xf7\xbb\x71\xa9\x0a\xe0\x5c\xc8\xc5\xad\x34\xf7\xc8\x1f\x5a\xa6\x65\x0d\xa4\xee\x71\x88\xf7\x7e\x6f\x52\xd3\xa3\x24\xc2\x2b\xc2\xfc\x80\x0d\x77\xc3\x8e\xf1\x38\xa4\xb0\x0e\xfa\x17\xd9\x4f\xee\x32\x73\x33\xae\xb5\x02\x53\x9f\x59\x6b\xcd\xfe\x4f\x58\x4f\xfc\xd1\x17\x19\xf9\xde\x74\x99\xef\x65\x6f\xec\x9f\x64\x2c\x0d\xc2\xb9\xf6\x6f\x0f\x31\x3c\xde\x89\x8b\x1c\x69\x6b\xf8\x9a\xe0\x61\xa2\x80\x04\x21\xc7\x7d\x65\x3f\xb0\x6a\x78\xfc\x6b\x37\xac\x35\x61\x62\xed\xd3\x87\xe8\xb5\x9d\x45\xca\xfc\xd0\x3d\xd6\x6d\x4c\x80\x29\xf3\x13\x0e\xfa\xfd\xcb\x35\x10\x1d\xb1\x71\x92\xcf\x6d\x57\xa9\x37\x66\x54\x74\x25\xc6\x3e\xa7\xca\x2f\x8c\xfc\x5e\x60\xf8\x79\xd2\xa2\x1c\x38\x3d\x86\x2d\xcc\x95\x03\x7c\x1c\xc8\x01\xf1\x9d\x33\x05\xae\x17\x14\x7d\xc5\x4f\xfb\x1d\x81\x73\x69\x45\x68\x77\x10\x5d\xb2\x74\xf1\xa1\xab\x8d\xb7\x88\x92\x86\x40\x02\x63\xc7\x7d\x13\xca\x0e\xea\xa5\x7b\x7a\x45\x9f\xc1\x32\xa1\x24\x36\x29\xc3\x58\x39\xfb\xf0\x7c\x6d\x6e\x1f\x72\x5e\x41\xa1\x18\xbd\x6e\x2a\xdd\x55\x5c\x3e\x14\x03\x50\x32\xda\x24\x7d\x4e\xc4\x64\x82\x67\xb2\x77\x1f\x6b\x7a\xc2\x35\xe9\x84\xb4\x70\x82\xaa\x04\x6d\x18\x95\x64\xee\x78\xc2\x58\x1e\xad\x33\xa6\x89\x89\xd4\xd4\x05\x9a\x06\x74\x9d\x58\xd2\x0e\xf6\x73\x6f\x28\x89\xbd\x90\x34\x45\xde\xe5\x63\xd2\x9f\x68\x33\x52\x0e\x40\xed\x74\xef\x04\xcd\xd6\x11\xe3\x3a\x80\x13\x14\xde\x90\x35\x13\x44\x72\x3f\x7d\x51\x27\xa8\x86\x01\xb8\x24\xe4\xee\x39\xab\x81\x69\x19\xed\xb0\x13\xc2\xed\xeb\xc6\x11\x55\x25\x0d\x59\xb2\xef\xd8\x31\x2a\x5d\x5e\xa4\xbf\xaa\xfd\x62\xfa\x79\x73\x19\x0d\xcc\xc4\xe1\xfd\xfb\xf9\xc6\x7d\xa1\x00\x89\x7f\xfa\x1f\x8d\x2f\xc6\x70\x85\x4b\x43\x89\xc5\xf4\x9d\x16\x93\x4a\x1e\x70\x13\x47\xd1\xaa\xdb\x7c\xd6\xec\xb6\x54\xb8\x43\x35\x57\x77\xcd\xa1\x5d\x06\x1f\xce\xa1\x90\xd2\xe6\xae\xb9\xd7\x18\x33\xc5\x57\x1a\x68\x48\xf7\x6d\x03\x34\x16\x21\x43\xe5\x32\x81\x39\x7b\x74\xd7\xc3\xc9\x99\x4e\x5c\x52\x28\x46\x7f\x30\x32\x4e\xc4\xea\x52\x8c\x33\xfb\xdf\xed\xa6\x30\x2a\x23\x15\x52\x72\x64\x45\x9f\xfb\x7a\x8b\x86\x31\xa6\xdd\xb2\xed\xde\x93\xf9\x63\xa7\x50\x88\x74\xb4\x29\x56\xb6\xcf\x29\x93\x39\xcf\xd3\x27\x08\xaf\xad\x9a\x98\x4d\x3d\x74\x02\x22\xc4\xb2\x0a\x36\x75\x1c\xde\xfa\xca\xf5\x5f\x0c\xd5\xe6\x92\x6a\x7c\x40\x9a\xd9\x73\xf4\xfe\x09\x43\x5d\x21\x80\x03\xfd\x4b\x4f\xe8\x9e\x70\x0c\x1e\xc4\x23\xe3\x0c\x56\x14\x0b\x2b\x22\x99\x5e\xb0\xad\x99\x58\xea\x22\x8e\x28\xe5\xf9\xe4\x5d\x9a\x47\x3b\xb5\x02\x54\x01\x26\xdf\xb0\x07\x0d\x91\x3a\x16\xf2\x58\x1b\x7f\xe4\xf5\xdb\x46\x68\x00\xab\x00\x33\xdf\xc3\xcc\x87\xee\xca\xec\x71\xe9\xd7\xec\xa0\x0e\xd8\xb0\x6f\x9f\xd1\x36\x2c\x17\x1d\x8e\x6c\x3b\x8d\x20\xf1\xb0\x6d\x93\x94\xd3\x55\x6e\xf7\xba\x64\x43\x59\x61\xa9\x69\x43\x1d\x3b\x62\xa8\xb9\x88\x19\xb7\x54\xa2\xf8\xe9\x91\x31\x5a\x23\x0c\xb3\x4a\x13\xec\x2b\xf3\xd3\x67\xd3\x75\x0f\x0a\x02\xca\x5c\xdc\xe5\xf7\x3a\x50\x5c\x39\xd3\xa0\x32\x61\xd6\x90\xcc\x8a\x6c\x7f\x48\xd3\x3c\xea\x90\x00\x06\x28\x3c\x52\xdc\x7d\x50\x8b\xf9\x71\xa5\xce\x8f\x8f\x37\x27\x36\xd9\xbc\xb9\xd2\x1b\x27\x5b\x7f\xca\xe8\x51\xd5\x3d\xcc\xa8\xd8\xbd\x99\xc6\x33\xe6\xbb\xa1\xd4\x93\x4e\xa7\xdf\xd9\x64\x10\x98\x69\xe8\xda\x00\xfb\xca\xd7\x8f\x2b\x4b\x24\xda\xac\xc1\xfe\xcd\xf3\x03\x35\xf8\x2b\x8c\x7f\xe8\xa3\xba\x7a\x23\xa8\x5f\x46\x53\x5d\x5d\xad\x3a\xfe\x02\xbe\x94\xe6\xed\x87\x5e\xfd\x4a\xde\xfc\x89\x7f\xf2\xf8\x0a\xd5\x8b\x60\x21\x74\x75\xb2\xcf\xf4\x37\xc2\xf4\xbc\xb9\xb3\x61\x8d\xfc\x4a\xc3\xb1\x29\xce\xf4\x42\x05\x01\xb4\x34\x94\x7b\xbe\x3a\xc6\xd8\x80\xf1\xb3\x95\x38\x83\x27\x37\x18\xa3\x26\xec\x36\xe5\xbd\x85\x3d\xda\x68\x16\x23\xb7\xa3\xca\x6d\x76\xa3\x99\x9e\x59\x18\x35\x08\xee\x48\x74\xae\x72\x3f\x36\xb4\x9a\x6d\x82\xea\x34\x81\x1f\x9e\x39\xac\x16\x3a\x1f\x00\x14\xa3\xef\x3c\x63\x1c\x94\x7c\xab\xdc\x68\x98\xe7\xfa\x24\x90\xa5\x5c\xb6\x3e\x5a\xd7\xf3\xae\x7b\xf1\x33\xe6\xb8\xe5\x56\x45\x31\x84\x8d\x7a\xdf\x63\x0a\x1c\x42\xb4\xfa\x35\x73\xff\xfe\xab\xb4\xa2\xaf\x49\xd8\x34\xf7\x37\x33\x15\x23\xbe\x9d\x07\x05\x50\x0a\x32\x9a\x3b\x58\xe5\xe6\xdd\x7a\x6e\xfe\xd6\x81\xe4\x4a\x6a\xfc\xa9\xcd\x7a\x49\x18\x03\x81\x28\x03\x75\x79\x95\x93\xef\xfb\x1c\x14\xb0\x15\x07\x78\x5c\x99\x8f\xb3\xd1\xa9\x5b\x43\x8c\xe3\xdb\x39\x47\x89\x3f\x97\x17\x97\x7d\x58\x07\x0b\x35\x1f\x6e\x99\xef\x5f\x18\xa5\x20\x0e\xcd\x96\x17\xc7\x04\xf9\x95\x38\xf1\xa9\x1c\x7d\x7b\xa7\xe9\xdc\x6a\xdb\x8e\xdc\x6a\xf9\x62\xbb\x90\x2d\xac\x22\xb7\xc2\x57\xf7\xff\xd9\x35\xd6\x28\xd9\x1b\xd8\x0f\x48\x45\x68\x40\xb5\x16\x8a\xd1\xc7\xdf\xd7\xba\x30\xc8\x42\x9c\xd7\xfd\xe6\x78\x48\x2a\x8b\xab\xe2\xcb\xb8\x7e\x45\x7c\xb3\x57\xd9\xe9\x34\xcb\x8d\x8f\x2e\x87\x7b\x22\xdb\xa4\x2e\x23\xc7\xcf\x9e\x30\x1a\x71\x33\x64\x47\xf8\x07\xaf\xa6\xd7\x38\xc7\x4b\xcb\x7f\xfc\xd5\x13\x26\x6a\xa7\x81\x79\x60\x07\xa4\xd1\x7c\xe1\x60\x5a\x41\x80\xb7\xca\xce\xbf\x4f\xb5\xca\x6d\x6c\x39\xbc\xf5\xae\xe9\x6e\x8b\x2e\xc1\x0c\xdd\xe5\x23\xfb\xde\xb2\xf4\x66\x68\xa7\x35\xce\x65\x91\x85\x4d\xeb\x93\x1a\xbc\x93\x76\x42\xdf\x2f\x7f\xd7\xfb\xe9\x3b\xe2\x5e\xf2\xbc\x2a\x99\x39\x0a\x9e\x37\xf2\x40\x74\xa9\xd8\x93\xb9\x67\xb1\x1a\xf5\xcf\x99\x3e\x2f\x7e\x22\x5f\xd9\x6e\x4e\xb5\x5c\xae\x66\x6b\x0b\x00\x7f\xee\xc9\x17\x84\x16\x16\x2d\x95\x1c\x31\x49\x3c\x78\x10\x54\xfa\xd6\xfa\xd5\x0e\x1c\xe8\xa1\x62\xbc\x3d\xb2\x97\x14\x03\x8a\xfd\xcc\x5d\x86\x58\xde\xf4\x39\x6d\x53\xe7\x4d\x9b\x31\x75\xc6\xac\xd9\x62\x3b\xe6\x3f\xbf\xc5\xe4\x47\xf3\xb9\xa1\xa4\xc8\xf5\x31\xc1\xeb\xd2\x54\x4e\xba\xba\x65\xc3\x85\xe9\xa7\x48\xc3\xc0\x0f\x18\xf1\x64\x73\xfd\x0f\x07\x20\x4f\x9f\x39\x2f\xa8\xa6\xc8\x5d\x27\xe0\x4c\x59\xcc\x83\x1b\x15\x7d\xe1\xe8\xb6\x4e\x75\x02\xd7\x70\x23\x35\xae\xfe\x64\x64\xca\x38\x04\xd8\x11\xa0\xb8\x25\x9d\x46\xd3\x06\xc5\x1b\x0f\xd3\xf4\x28\xb0\x27\x53\x79\x2e\xfd\xbc\x2a\x0c\x44\xa4\x79\x9e\xf4\x7f\xdf\xd5\x6a\x7b\x56\x09\xc5\xd3\x3f\xb3\x22\x31\xa0\x83\x01\x25\x6f\x32\x5d\xfe\x76\x12\x9e\x82\x50\x47\x38\xe4\x27\x98\x8d\x31\x5e\x93\x53\x96\x70\x94\xa6\x7a\x83\x44\x16\xda\x8e\x2d\x39\x2d\x3e\x7a\x1c\xce\x18\x1f\x59\xc0\xc9\xc9\xdc\x3a\x4a\x53\xe5\xe2\x4b\xf2\xb1\x17\x34\xd9\x15\x3f\x20\x75\x39\x6b\xce\x7f\xf1\xa2\x9a\xc0\x26\xbe\xab\xfc\x90\xfe\xa3\xa1\xe3\x68\x91\xa0\x0b\xb4\x6f\x64\x16\xba\xf8\xb4\xe6\x71\x41\xdd\x4a\xc8\xd1\x2f\xbb\xde\x32\xf6\x60\xc8\xac\x2a\x92\x60\xac\xec\x2f\x1e\x1a\x28\x92\x3c\xd6\xe5\xc3\xf9\x97\x3b\xd4\x9a\x3c\x92\x2e\xa4\xe0\x7c\xd1\xaf\xef\x85\x41\xe1\x6d\x42\x61\x57\xb3\x15\x69\x3d\xa4\x4b\x53\xd8\xa1\x05\x47\xe3\x85\x95\xe9\xdc\x25\xe8\xc0\x6e\x40\xb0\x48\xd4\x8c\xb0\xb8\xfb\xb5\x31\xbd\xa3\x20\x54\x04\x78\xde\xb0\x61\xaa\x87\xc8\xc1\xf5\x14\x8e\x20\x63\xb4\x1f\xdb\x69\x62\x2d\xfa\xcd\x67\xd3\xe2\x7f\xfc\x54\x78\x36\x32\xa5\x00\x12\x99\xcb\xe8\x31\xcd\x1f\xb7\x8e\x5d\xc2\xc9\xbb\xb9\x25\x13\x06\x2b\x5f\x3f\x96\x48\x81\x32\x95\x49\x70\x61\x92\xf8\xe9\x7a\x87\x46\x69\x1a\x3e\x36\xf1\x1d\xa4\x8b\xd5\x2e\x5b\x3c\xc2\x4c\xb1\xba\x64\xfc\xf8\xf2\x8b\xe9\x0d\xd9\x81\x1d\xa7\x50\x73\x69\x07\x34\x4f\x72\x43\xbd\xf1\xda\xe0\x82\x6f\x66\xcc\x9a\x0f\xd1\xc7\xef\xfd\x88\x91\x80\xb2\x5a\xd7\x24\x60\x3e\xa5\x7f\xf3\xfc\xa2\xe4\xcc\x6a\xd8\x4d\x84\x8c\xfc\x15\x0b\x94\xfa\xad\xc8\xc0\x87\x08\x88\x20\x66\x52\x9b\xb7\xff\x1b\x83\x34\xf4\x02\xf1\x79\x8e\xb5\xda\xf0\xde\x16\xf6\xf6\x52\xc9\x63\xee\xde\x26\xba\xb5\xc0\x4c\x08\xfe\xd0\x3e\x5b\x3d\x44\x5e\xc1\x10\x5d\xef\x2c\x73\x69\xb2\x89\xa0\x4f\x2c\x99\x12\xcf\x4a\x6b\xa1\xde\xed\x13\xf2\xad\xd1\x6d\xe7\x54\x25\x69\xaa\x13\xec\x31\xfa\x5b\x04\x4b\x8b\x07\x55\x60\x7d\xca\x4d\x7f\x73\x19\xb1\x02\xc3\xc8\xaa\x42\x69\xc8\x8f\xc0\x52\x4b\x3a\xa0\x75\x11\xe4\xba\xa8\x46\x7c\x43\x24\xed\xb6\x27\x75\x08\x90\x1f\x14\xac\x50\x76\x4e\xf2\x4b\xdf\x69\xca\x47\xe7\x40\x3e\xfa\xc3\x21\x86\x66\x30\x08\x0e\x89\x24\xfd\x83\xc3\x24\x24\x3f\xde\xae\x42\x8b\x69\xfc\x19\x03\x15\xcf\x3a\x88\x34\xf0\x15\xbd\xc8\x2f\x3f\x9d\xac\x04\xc2\x39\x2d\xe9\x85\xe2\xec\xd7\xb6\x11\x23\x00\x02\xcf\xfd\xf1\xa2\xea\x11\x70\x3c\x1a\x11\xf8\x9b\x9e\xdc\x75\x6a\x46\x18\xe8\x82\x36\xb9\x37\x4e\xa9\xe1\xf7\xec\xd6\xe9\xf1\xbd\x4e\x0b\x0c\xba\xa4\x83\xdc\xa4\xa7\x72\x9d\xf2\x3c\x20\x1d\xba\x63\xf2\xf7\xe6\x42\x14\xb3\x89\x8f\x4a\x20\x80\x9f\xfb\xf6\x96\x89\xc6\x09\x1f\x67\x55\xbd\x15\x4d\xb9\xb1\xab\xd4\x1d\x39\xd4\x0a\x01\xd6\x5e\x5f\x6d\x44\x06\x04\xd1\x9f\x6f\xbf\xb7\x8f\xab\x94\x60\xda\xcc\x69\xf1\xef\x7f\xd4\xa8\x71\x39\x6e\x53\x48\xea\x5c\x02\xa3\x8f\xc2\x8d\xc8\x6f\x22\x52\x67\x7f\xd0\x4f\xd3\x00\x47\x25\x52\xe2\x64\xbf\xec\x9b\x3b\x93\xd7\xe0\xd1\x8e\xa6\xd6\xcf\xe6\x89\x57\x68\xc7\x59\xa1\x18\x4d\x32\xf8\xe2\xb0\x91\x00\x15\xfa\xda\xab\x02\xb6\x8f\x03\x22\x51\x22\x1b\xb6\x2b\xe8\x21\x25\x4d\x57\x35\x28\x3f\x44\x9f\x8c\x8a\xae\x40\xe6\xd4\xa3\xda\x8f\x5d\x54\xa9\xc0\xfc\x36\xaf\xb5\xbb\xa8\xcd\x1d\x0d\xb2\x47\xde\x56\xd1\x60\xc6\xd4\xb9\xf3\x66\x17\x8a\x51\x47\xdf\x81\x5a\x57\xaa\x93\xf7\x22\x66\x29\xc7\x35\x8b\x34\x3d\x9e\xcc\xea\xc5\x9a\x48\x37\x0b\x05\x62\xab\x27\x3b\xfc\x5a\x25\x6a\xc3\x7d\x13\xbf\xbb\xc9\x28\xd7\x19\x6d\x50\x0b\x69\xa0\x88\xec\xd6\x23\x46\x9b\x9d\x7b\x9b\x90\x84\x2f\x98\x3b\x78\xd1\x90\xb9\xe0\x25\x25\x40\xbb\xff\xf8\xf4\x55\x86\x4c\xa8\x6a\x45\x16\x8a\xd1\x3d\x87\x87\xa4\xd0\x53\x9c\xa2\x11\x45\x4e\xfa\x1b\x4b\xb8\x8a\x1a\x84\xb2\x04\x53\xf1\x94\xa7\x1d\xf9\x5d\xf5\x12\x95\x75\x46\xe6\xd6\xe7\x54\x4c\x40\xb6\x9b\x82\xe2\x79\xc3\x14\x64\x61\x4a\xd3\xda\xe8\xb8\x60\x8a\x84\x55\x18\x16\x03\xda\x9d\x25\x23\xde\x5a\x9c\x15\xa5\x58\x5c\xbf\x3d\x9a\xe0\x02\x48\x58\x97\x8d\xe1\x99\x2f\xea\xd9\x05\xd7\xfe\x8a\x3f\x6d\x9a\xe1\xc9\x13\xc6\x55\x6c\xd2\x27\xc8\x50\x43\x23\xa2\xd4\xe5\x07\xc0\xe6\x83\x26\x65\x7d\x5d\x93\xda\x6d\x9c\x4b\x49\x41\xb6\xdc\x94\xa3\x06\xc5\xc2\xc6\x77\x84\x28\x90\x04\x9d\xec\x2f\x9f\x32\xfb\x4a\x18\xc9\xef\x7e\xf0\x3c\x0f\xbd\x85\x75\xd4\x0f\x68\x8d\xc7\xa4\xb2\x43\x4d\x61\xa7\xe8\x5a\x63\x54\x44\xea\x75\x12\xa7\x93\xa2\x55\x1e\x6d\x6c\x31\x2d\x91\x5c\xe1\x7f\x92\x9d\x3d\x31\x4d\x86\x46\x3e\x37\x9d\x0d\x92\x51\x6d\x3a\xcc\x6c\xda\x0c\x10\x35\xaf\xb5\x1e\xaf\x8c\x1b\x0c\xba\x9a\x4b\x3b\x20\xb3\x8c\xde\x7c\x1d\x30\x68\xd3\xa6\xc7\xbf\x77\xa2\xaa\x94\x3c\x90\xee\xec\x74\xe2\xa4\x0a\x9f\xed\x88\xd3\x2d\xbf\x70\xd8\x8c\x01\x8c\x38\x42\x12\x61\xd0\xb5\x66\x3f\x90\xfb\x76\x40\xcb\xe0\xf6\x83\x4d\xa6\x1e\xa1\x2f\xe3\xee\x6d\x42\x92\x23\x3e\x5a\xeb\x75\xea\x82\x50\xc0\xe5\x6f\x9b\x35\x0b\x9f\x0f\x71\xc2\xdd\x2f\x5b\xae\x32\xf3\x73\x10\xe8\x14\x47\xd3\x97\x96\x19\x61\x9e\x3b\xe6\xc8\x04\xfe\xe9\xd1\xbd\x02\xc4\x3d\xa9\xb2\x14\xfd\x6e\x4c\xfa\x54\x95\xa6\x2c\xe6\x13\xbf\xfb\x02\xa4\x28\x25\x14\x04\xa0\x79\xfc\xbb\xd5\xa9\x1e\x18\xe9\x16\xc1\xe4\x9f\x2e\xa6\xf3\xa4\xae\xb0\x44\x1c\x82\x5d\x22\x60\xe9\x49\xc1\xf3\x64\x3f\x21\x99\x47\x3b\x04\x5f\xe7\x2b\x03\x34\x0d\x71\xe4\x22\xc1\x28\xce\x8c\x5a\x94\x9e\x43\x55\xa8\x63\xd7\x51\xaf\xe3\xf9\xec\xa4\x7d\x5a\xf3\x11\x71\x82\x78\x66\xa3\xa1\xd1\xe3\x63\x4e\x70\x15\x2a\x34\x1f\x38\xa8\xf2\x4d\x04\x3e\x70\xd1\xa0\x07\xa1\xa0\xa6\x9e\xe0\xf8\xcf\x38\x37\x20\x59\x5d\xae\x17\xdf\xff\x07\xfa\xab\x35\xe3\x42\xd3\x6d\xe8\x7a\x78\xbb\x2b\xa8\x6b\xd3\x04\xd8\x33\xce\x20\x76\xd7\x28\xb3\xd1\x14\x4b\x9f\xef\x15\xb2\x06\x91\xa8\x82\x5d\x8b\x60\x69\x84\xd9\x36\x84\x5f\x8d\x83\xdd\xc2\xb4\xb9\x85\x62\x34\x10\x04\xe7\xa4\x2d\x43\x01\x41\x19\x5f\xec\xc9\x9d\x39\x68\xba\x47\x63\x4f\x91\x75\xef\xd7\xa4\x4e\xfc\xc4\xd5\x36\xf3\xe9\x97\x92\xde\xfa\x8c\xe9\xb3\xf9\xd0\x4c\x98\x18\x96\x71\x07\x10\x42\x37\xf6\x13\xf8\x19\xbb\x4e\x18\xcc\xf6\x72\xab\x35\x5b\x58\x07\xa3\x06\x80\x16\x1e\x3c\x60\xe8\x95\xe1\xae\x12\xe5\x9e\xac\xd0\xaa\xf8\xcc\xb6\x96\xa6\x20\x2d\x56\xce\xdc\x56\xf5\xea\xe2\x5a\x35\xfe\xd9\xa7\x06\x5d\x21\xbf\xc0\xe3\x2d\x9b\x77\x84\xf5\x82\x43\x4a\x98\x05\x04\x60\x90\xf9\xfc\xfc\xe6\xaa\x1d\x5b\x01\x58\x24\x46\x91\x81\x3b\xe6\x92\xf1\x84\x23\x2c\x8b\x3d\xb9\x7f\x29\x69\x6a\x6c\x02\xc0\x9b\x7b\x7f\x40\x72\x24\xce\x9c\xc6\x7d\xf7\x6e\x3d\x97\x04\x8f\x32\xd5\xcb\xdb\x8f\xed\xbc\x4a\xa3\x2f\x34\x89\x59\x66\xfd\xea\x40\x8d\x89\xce\x27\x96\xd9\xab\x2f\x34\x79\xe2\x30\xec\xfb\x89\x2f\xc4\x87\x0c\x84\x51\x09\x93\x76\x18\xe8\xaa\x52\xb1\x27\xbb\x6b\xdf\x10\x5d\x14\x2c\x4e\x98\x79\xbe\xf6\x88\xca\x16\x66\xcf\x9d\xce\x6d\x03\x73\xd7\xec\xd7\xe7\xf1\xb4\x02\x40\x87\xfc\x9c\xa3\x69\x46\xdc\xf4\xd9\x62\x56\xf0\x90\x20\x56\x96\xc2\x12\xaa\xe9\x84\x85\x6c\x34\x2a\xbd\x1b\x25\x1b\x14\x37\x83\x87\xb2\xe3\xb7\xa7\xe3\x4f\x9c\x55\xfb\x55\x4a\x15\x10\x72\xd2\x1b\xd0\xbb\xbc\x6d\xcd\x27\x3e\x59\x58\x7a\x4b\x53\x03\xf0\xe6\xf1\x2d\x69\x5f\xc4\xa4\x52\x1e\x7e\x58\x1d\xea\x15\xcc\x02\x4d\xe1\x3f\xf7\xfd\x27\x5a\x34\xec\x95\xe5\x20\x96\x60\x46\xa6\x5c\x80\xa5\x7c\xb3\x6b\x4b\x85\xd8\xdc\xa7\x1c\x0d\xb8\x51\xa7\x52\x5e\x2a\xba\xf3\xa8\xda\x30\x5d\x71\xfa\x0c\xa4\xf8\x9f\x1b\xf1\xc4\xa6\x1d\xae\x24\x38\x14\xa3\xf7\x1e\x31\x04\x4a\xe3\x2f\x67\x94\x7a\xe2\x18\x7c\x73\xed\x28\x25\x61\xd6\xd4\x9a\xcf\x7d\xe5\x70\x7a\xb1\x06\x55\x4e\x9c\x11\xc5\x2c\x7a\x5e\xd3\x8f\x74\xc2\x78\x7f\xf1\x94\xb5\xcb\xd5\x2d\x59\x78\x22\xf9\x6f\xf7\x0d\xd7\x7a\x80\x8c\x56\x50\x00\x5e\x93\x99\x87\x87\x7d\x48\x3e\xd3\xf1\x85\x62\xf4\xc1\x61\x10\xc9\x6f\xee\x46\x7a\x2d\x90\x1f\xd3\x67\xb4\xf6\x01\xcd\x86\x21\xb9\x81\x5a\xbc\x96\x96\xe6\xf1\x37\xff\xee\x5e\xe1\x55\x4b\x43\xd7\xc7\x0e\x65\x85\x62\xf4\x83\x8d\x10\x52\xa4\x35\xeb\x03\x9b\xc6\x99\xe7\x9a\x4b\x6a\x06\xee\xc1\x7f\x45\xb3\x7c\x0e\xeb\x20\xcd\x94\xbb\xf7\x79\xad\xad\xdc\x5c\x06\x44\x3f\x39\xa9\x2b\x1e\x38\x35\xca\x4d\xe7\xb2\x8f\x5c\x54\xb0\xe3\x52\x7b\xa1\x18\x5d\x18\x06\xa1\x84\x83\x9d\xf8\x4c\x26\xfe\xb5\x1b\x1e\x32\x7a\xc8\x90\x9a\x43\x8d\x9d\xcd\x8f\x87\xbf\x01\xdf\xe4\x0e\x2e\x24\x13\x7d\xf3\x8c\xac\xdf\x11\x68\x66\xf5\x64\x06\x0e\x82\x0c\xc5\xa5\xb4\x16\xff\xf7\x0f\x0f\x9b\xd9\xb0\x8f\x25\x02\x3d\xb7\xe3\x40\xaf\xbe\x6a\xb2\x1d\x35\xf9\x18\x7c\xd6\xc4\xeb\x6f\x59\x15\x5f\xc3\x2d\x6b\xd5\xfd\xe3\x5e\xcb\xa0\xbc\x76\x06\x82\x64\x7f\x6e\xd4\x20\xa3\x7b\x45\x7d\x9f\x8f\x44\x41\x16\x72\x9b\xa6\x45\xe1\x31\x4e\xa2\x00\x6c\xeb\xfc\x3e\xa0\x21\x7d\x7d\xe8\x07\x0c\x81\x8e\x58\x7a\x15\xdc\xf1\x8e\xea\x2a\x58\x55\x54\xf7\x52\x5d\x85\xec\x87\x0e\x98\xeb\x99\x91\xb2\x14\x25\xcf\x7e\x57\x1b\x3a\x71\xb8\x25\x0f\xe7\x9f\x59\x01\x7b\x94\xd1\x20\x81\xe2\xff\xdc\x88\x54\xc8\x9d\xc2\x95\x86\x7f\xb7\xc1\x44\xc9\xb9\xb6\xd0\x9f\x0c\x0c\xcc\x7a\x15\x23\xdb\x17\x8d\xf8\xb1\x4b\xd5\x30\xa5\xcb\xd1\x35\xda\x37\x6b\x88\xfa\x4e\x4f\x48\x41\xe4\xf6\x3c\x31\x2c\x15\x3f\x19\xaa\x83\xd0\x55\xa9\xa4\x00\x6a\x35\xda\xed\xe8\x24\x74\x7f\x41\xb2\xe4\xfc\x2a\x29\x14\xa3\x89\x23\x07\x8b\xe2\xd4\xb5\xfd\x2a\xaa\xc1\x67\x9f\x79\xd1\x48\x19\xed\xd0\x09\xe4\xea\xc8\x7f\xb8\x8f\x3a\x9f\x4a\x38\xe0\xcd\x87\xcc\xc9\x86\xb0\xb2\xa3\x55\xb7\xb0\x02\x95\xcb\x2e\xd1\x01\xa1\x03\x5e\x18\xaa\xd3\x78\x03\xd9\x5b\xb3\x4a\xea\x82\x78\x84\xf3\x5c\xb5\x54\x3a\x08\x87\xd9\x8f\x7d\x4a\x13\x76\x64\x3e\x3c\xfd\x7e\x0d\x0d\x0e\x55\xa5\x16\xb7\x39\xe0\xb0\xdf\x7b\x61\xed\xdf\x08\x2e\xce\x85\x62\xd4\xe8\xaf\x42\x94\x04\x8c\xf2\x12\xe5\xce\xb5\xa3\x7b\x4d\xf2\x01\x77\x5a\xec\xc9\x4f\x36\x48\x1c\x25\xc4\x18\x67\xd7\xf2\x95\xf8\xa1\x13\x4a\x3d\xc7\xc5\xa4\x52\x2d\xd1\x90\x49\xa2\x63\xee\xfc\xdb\xc9\x9d\x4d\x9b\x19\xd7\xc7\x33\xf2\x09\x55\xce\x0e\x2d\x18\x48\x7d\x7e\x5f\xfa\x0a\x6a\xa4\x3e\x85\xe8\x8b\xf5\xac\x66\xea\x5c\x0f\xeb\x25\x30\x0e\xcc\x7d\xb6\x4f\xca\x01\xdf\xe6\x36\x53\x27\xfb\xa7\xf4\xe1\x03\xe2\x56\x84\x59\x77\xee\x9e\xf7\xd2\xfd\xac\x3a\x72\xa8\xcb\xe9\x1e\xaa\x4f\x75\xd9\xab\x46\x00\xe4\x42\x53\x46\x33\xeb\xeb\x30\x8d\x28\xac\xa2\x0e\xb1\x4c\x23\xb4\xe8\x8e\x61\xfa\x29\x57\x47\x2c\x41\x46\x66\xbe\xbd\x52\xa4\xa2\x61\xc9\x91\x02\x0f\xd1\xe1\x2d\x26\x6a\x66\x5a\x9b\xd8\x87\x5f\xbb\xa4\xa1\xb7\xf9\x58\x0f\x60\xb7\x7c\xe7\xad\x4c\x08\x65\x16\x76\xa8\x9b\x88\xfd\x0f\x3d\xa6\x1c\xa5\x5c\x8c\x9a\x88\x6c\x99\xe9\x6f\x68\x0a\x9c\x0a\xcf\x18\xdd\xaa\xb2\xab\x90\x53\xa2\x73\x5f\x5b\x6d\xf0\xfa\xa8\xcb\xb5\xe4\x44\x05\xfa\xae\x26\x1a\x36\x7d\xea\xcc\xe9\x73\xa6\xce\xe6\x96\x12\xf9\xbf\x6a\x31\x3a\x15\xd4\xa3\x0d\x90\x14\x17\xdf\x75\xe9\x7d\x25\xf5\x88\x88\xbc\xf4\xc9\xd7\x36\x9b\xc3\x50\x1f\x39\xd2\x1e\xfd\xbb\x0b\x35\x77\xbf\x30\x10\xc0\xae\xf4\xdd\xfd\x62\xa2\xe0\x6b\x33\xec\x07\x8e\xa8\x55\x1a\x3b\x0d\xd6\x3b\x72\x6a\x98\xf9\x12\x14\xfe\xf0\x80\x81\x1a\x64\x8a\xe7\x03\xb7\x8d\x81\xe3\x77\x75\xe8\xfb\x54\x0b\x44\xd7\x77\xfe\x7f\x98\x9a\xaa\x33\xf2\xae\x76\x45\xca\x95\xe1\xd7\xaf\x92\xe6\xde\xdc\x1d\xeb\x3e\x24\x6f\x07\xe0\xc5\x4b\xd5\x3e\xc7\x21\xa3\xfc\x87\xa7\x5b\x55\xb0\xa1\x1e\x43\x1c\x4d\xfe\x93\x57\x35\xf5\xb4\xfa\x8c\xd6\x39\xdc\xcd\xe3\x3f\x1d\x25\xa6\xc2\xa7\xaf\x5f\x6e\xa4\x9f\x69\x83\x3a\xa1\x1b\x20\x26\x01\xce\x57\x6a\x6e\xec\x3c\xd6\x13\x29\xb1\xb9\xb9\x2a\x74\xa4\xac\xb0\x5c\x16\x33\xbe\xfc\x98\x07\x04\x6a\x06\x79\x6b\x82\xe6\xc5\x95\x9b\xf4\x78\xef\xe4\x33\x5e\x4a\x7e\xff\x24\xac\xff\x3a\xb5\x31\x43\x01\x34\xa3\x73\x2f\x0f\x30\x07\x66\x21\xf3\x85\x27\xb5\xb3\x52\x21\x53\x5d\x4d\x72\x27\xf3\x8b\xcb\x4c\xbd\x56\xe1\x2d\x1c\x7f\xcf\xd0\x05\xd0\x60\xb8\xe5\xfa\x95\x71\xe8\x74\xa1\x5a\x59\x13\xa0\x80\xf7\xf1\x33\xbf\x36\x34\x5b\x25\xcb\x48\xaa\xc0\x9d\x31\x48\x99\x8c\x70\xd3\x40\x5e\x98\x14\xdf\x86\xcd\xbf\xa4\x8a\x7b\xe1\xa8\xe4\xbe\xf2\xb2\x1c\x67\x63\x29\x46\xf2\x9a\x28\xa9\x8b\x71\x1a\x12\xbf\x92\xfd\x81\x52\x0f\x2f\x77\x15\x8a\xd1\x2d\x1b\x3f\x24\x9e\x3f\x02\x18\xdb\x3b\x9a\xb2\x2f\x05\x72\x73\x66\xc4\x18\x75\x7a\x10\x9b\x04\x88\xc1\xb4\x6d\xf1\x23\x06\x83\x94\x04\x55\xd1\x12\xf9\x71\x56\xb5\x56\xac\xaa\x16\x51\x57\x0d\x31\x7a\xbf\xa4\x12\x32\x2c\xf4\xb5\xaf\x3c\x61\xc8\x77\x85\x5d\xe2\x78\x7e\x68\x8b\x80\x93\xc6\xc7\x0a\x02\xdf\xa1\x68\xe9\x99\x61\xba\xea\xb2\x86\x10\xde\xd0\xd4\x89\x0b\x7d\x35\xc4\xef\xc9\x2f\x5e\x68\x50\xec\x04\x00\x5e\x39\xb1\x45\x44\xd0\x66\x6f\x40\x15\xec\x07\xc8\x15\xa1\x22\xba\xe7\x9c\xb2\xc0\x0f\x4b\x85\x62\x14\x8c\x33\x9d\x9d\x7d\x8f\x58\x24\x81\x81\xe7\x2e\x1a\x16\xac\x42\x8a\x40\xb8\xf3\xb5\x8e\x35\xc2\xbe\x53\x06\x0a\xa4\xaa\xeb\x76\x2f\x4a\xfa\x86\x60\x0d\x0a\x72\xc6\x5a\x9d\xd9\x68\x9a\x81\x45\xc3\xe6\x6b\x33\x18\x90\x54\xc3\xc0\x83\xcb\x7c\xd4\xf0\x45\x71\xc3\x3a\xc0\xd6\x79\xbd\xb2\x7f\x9d\x09\xfe\x17\x99\x21\x6f\x72\x5e\x2e\x74\x96\x4a\xa1\xc3\x75\x1d\x73\x87\x9e\x57\x2b\x66\xda\xbc\x79\x73\xf8\xd1\x7e\xfb\x46\x15\x9f\xe3\x2c\xcb\x21\x2e\xf4\x16\x2e\xed\x32\xd6\x37\x72\x6b\xb2\x96\xd9\xfc\xb2\xea\xfc\x4f\x07\xf1\xa5\x1d\x1e\x2c\x60\x8f\x17\x13\xf1\x27\xff\xcb\xc3\xd0\xef\x5f\x7e\xe3\xd2\xeb\x9b\x9a\x3d\xe7\x04\xa2\x43\xf8\x97\x73\xef\xf2\xad\x86\x1e\x3b\x62\x82\xca\x9f\xdb\xa1\xd9\xaf\x04\xf1\x1e\x0e\x44\x27\xe3\xcc\x04\x03\xa1\xcd\x2d\xb3\x44\xd8\xca\xfc\xb0\x9f\x21\x86\x45\xca\xc2\xc3\x3b\x73\xeb\x93\xe9\xf2\xd6\xa1\x1d\x98\x81\x40\xae\x60\x36\x5d\xed\x0c\x75\x0d\x20\x06\x7f\x2e\x7f\x3a\x6f\xcc\x9b\x90\x6b\x61\x47\x3e\x99\xeb\xde\x33\x7c\xad\xa4\x14\x83\x42\x45\xdc\xe9\x69\x5d\x8b\x2a\x71\x08\x47\x7d\x8d\x4c\x5f\x4f\x89\x24\xa6\xfc\x50\x7b\x5e\xbc\x64\xaa\x89\x24\x03\xb6\x7c\xfe\x54\xb2\xd0\xe7\x4d\x07\x95\xe4\xd3\x82\x56\x24\x08\xc8\xfb\x41\x09\xab\x50\x9c\xb4\x26\x74\x1c\x92\xa2\xb4\x67\xaf\xdc\x98\x94\xb5\x9d\xa8\x09\x60\x9e\xeb\x18\x92\x7c\xfa\x75\xd7\x75\x14\x8a\xd1\x2f\xae\xd5\x94\x66\x50\xc0\xb3\xd1\xdf\x3f\x0a\xd1\xf4\x7a\xae\x02\x91\xfd\x6f\x4d\x4f\xcc\x0f\xa8\x55\xe3\x6b\xed\xe9\xa7\x0c\x55\x10\x46\x02\xe2\xf7\x36\x08\xef\xc9\xcc\xc8\xf7\x57\xaf\x3c\x7e\x6c\x8e\xe1\x87\xed\x23\x07\x4b\xc3\x89\x93\xcb\x92\xf0\xd2\x4e\xea\x2a\x8b\x9f\xb7\x51\x3d\x6a\x0f\xb9\x7c\x42\x72\xe4\x90\xa6\xd6\x1f\x30\xec\x56\x80\xe9\x71\xba\x9f\xca\xa7\x19\x0a\xcb\xbc\x23\x3c\x61\x90\xd6\xd6\x74\x40\xdc\x6c\xcd\x76\xe5\xbf\x35\x9b\x37\x98\x36\x1f\x4b\xc7\x95\x99\x33\x64\x83\x4f\xac\xdf\xc1\x0c\x12\x85\xf1\xcb\x29\x1e\xaf\x35\x3b\xb6\xb5\xa8\xcf\x77\xa8\xcf\x8f\xd4\x6c\x78\x1e\x7e\x99\xdb\x01\x2b\xe4\x5e\x2e\x12\xa8\x0a\xea\x08\xe5\xab\xdc\x6f\xb2\x57\x99\xe7\x28\xd1\x87\x9f\x87\x0d\x97\xea\x6a\xc8\x6c\x47\x7a\x25\xe6\x17\x6d\x68\xf6\xb0\x0e\x25\x30\x29\xf7\xdb\x77\x34\x1e\x25\x4b\x66\x5c\xaf\x6f\x1b\xa2\x8b\xe2\x75\xc1\x61\xc5\x8e\xe8\xcc\x6a\x64\x61\xe1\x48\x54\xec\xc9\xfe\x7e\x94\x01\xaa\x29\xf9\x01\xb2\x1c\xa9\xeb\x9b\xf3\xde\xd6\xa0\x49\x21\x71\xf8\xd8\x2c\x37\xf1\x3e\xdd\x83\x0f\x8a\x5a\x9e\x1d\xfc\xe7\x59\xf5\xc4\x66\x4c\x9d\x33\x8f\xe7\x33\x77\x2d\x1c\x9e\xca\x87\x3c\x8c\x5c\x48\x4f\xee\x6e\x0c\x53\x38\x05\xcd\x5d\x3d\xf7\x82\x26\x94\x4b\xbd\x80\xd4\x61\x96\x93\xfb\xe8\x0a\xd8\x28\xd7\xdf\xb2\x66\x49\x53\xd0\xda\x73\x52\x5b\x3a\x0e\x92\xb0\xf9\xa3\x77\xab\x67\xe2\x50\x2a\x51\x30\xf7\x97\x13\x9d\x46\x9e\xa7\x64\x3e\xb5\x45\x25\x63\x25\xd4\x8d\xa0\xf1\x5b\x1b\x34\xc4\x28\xba\x78\xb0\xfe\xc6\xe4\x64\x53\xda\xad\xcd\xe4\x9e\xcd\xc2\xde\x08\xbb\xb8\x1e\x67\x07\xc4\x50\x2c\xf6\x09\x40\xf4\xc5\x02\xfc\xcf\x17\xc4\x10\x20\xb4\x85\xe5\x56\xee\xdd\x87\x05\x48\x27\x20\x56\x8d\x8f\xc5\x07\xbe\x78\xad\x11\xd9\x1c\x52\xa6\xcc\x25\xa8\xe0\x8b\x9e\xbd\x6e\x6c\x70\xcb\x83\x80\x25\x9c\x33\x57\xc7\xa2\xe5\xec\xe3\x9a\x54\x51\xbc\x69\x0a\x01\xed\xe0\x0b\xee\xb6\x65\x2a\x83\x9e\x31\xa3\x30\x8d\xd3\x07\x44\x73\x49\xa0\x51\xa3\xeb\x06\xe9\xcd\x4e\x82\x85\x2d\xe2\xbf\xf5\x4f\x0f\x3b\x48\xbd\xdc\xab\x60\xd4\xb1\xcd\x43\x44\x4d\x93\x36\x7d\x53\x7e\x02\x15\xa6\x30\x67\x51\xa5\xb3\xd9\x41\x44\x24\x15\x3f\x5e\x9a\x20\x3b\x1a\x90\xc3\xdc\x29\xa0\x77\xf1\xf5\x61\x57\xbe\xe5\x8f\xbe\xa2\xe6\xf1\x48\x17\x85\x7d\x00\x02\x62\x89\xf7\xbe\x9f\x30\xa9\x47\xd4\x75\x01\x2f\x25\x32\x8f\xff\xf3\x90\xd9\x98\xac\x63\xee\x65\x0d\xa3\x29\xeb\xd5\xf4\x3f\x97\x90\x5b\x63\xa1\x27\xce\xaa\xec\x3e\xa6\x01\x80\x59\xe8\x82\xd5\xd6\x81\xc3\xd2\xa2\xd8\x25\x72\xad\x9e\x33\x48\x05\xa5\xb0\xee\x09\x4d\xaa\xee\x67\x5b\x8c\xc2\x8a\x58\x20\xc9\x9a\x79\x75\xbf\xda\xdf\x65\xca\x82\xaa\x45\x85\x27\x42\xee\x1f\xfa\xa4\xa9\x08\x75\x9c\xb8\x77\x7d\xc9\x1b\x20\x22\x2f\x47\x31\xc5\x1f\xb4\xa2\x7f\x93\xe8\x75\x80\x2d\x21\xd6\xc7\x97\xcf\x56\x53\x0e\xc2\xa2\xe5\x72\xb2\x8e\x5b\x26\x6a\x37\x1a\x3a\xa0\xc2\x9f\xfb\xfb\xc0\x2c\xc8\x1d\x14\x10\x03\x2e\xf7\xf4\x7c\x5d\x14\xca\xe5\xae\xa7\x99\xdf\x0b\xf3\xe2\xe5\xb8\x5c\x66\xb8\x4b\x9d\x1c\xdf\x5a\x61\x5e\x06\x57\xfd\xf0\x81\xfa\xb5\xf2\x21\xad\xb1\x43\x21\x31\xc8\xdf\xf0\xba\x21\xe0\x4b\x3b\xa4\xa2\x5a\xf6\xb7\x0f\x8f\x31\x93\x06\x6a\x20\x69\xfe\xb4\xc8\x68\xa1\x84\x8e\x83\xc5\x4c\x3e\x7a\xc1\x69\x2a\x7a\x03\x9e\x05\x0b\x78\xe4\xf1\xe7\x34\x1d\x86\xb0\x0c\xe4\xa7\xd5\x79\x43\x72\x06\xb9\x44\x2a\x72\xc8\x1a\xb4\xf8\x9c\xca\x72\xba\xc2\x0a\xe5\x99\x69\x31\x7a\x60\x25\xec\xa3\x95\xa8\x4e\x4a\xe0\x40\x10\x27\xb2\xf4\xf9\x96\xa4\x56\x20\x35\x9d\x01\x9a\xdd\xdd\x9e\x7e\x07\x01\x0b\x71\xa1\xcc\x68\x5d\x69\xea\xf4\xe4\x0e\x5c\x30\x41\xdb\x62\xa0\x07\x04\xbf\xec\xa1\xc3\x22\x26\x79\x14\x0c\xb4\xb2\x33\x57\x69\x46\x34\x0c\xd7\xb1\x6b\xd3\x10\xce\xc9\xb1\x07\x0c\x19\xba\x92\x4f\x9d\x30\x2e\x18\x65\x89\x86\x86\x0c\x37\x2a\x18\xa7\x0e\x2f\x90\x6c\x30\x61\x12\xdc\xf9\xde\x53\x85\x47\x76\xcc\x48\xd5\xa2\x09\xb9\x69\xbe\x45\x84\xb9\xdf\xd8\x55\x4a\x77\xa4\x84\x1c\xa7\x8a\x5c\x5b\xd6\xbe\xd5\x6b\x3f\xac\x9d\x9b\xb4\xd6\xe4\x81\x9f\xb9\x30\x61\x8c\x19\x0b\xb8\x22\x94\x9c\x8b\x16\x7b\x72\x63\xe7\x6a\x42\x12\xc4\xe7\x90\x26\xb1\xdf\x3a\xa6\x6a\x46\x99\xd4\x0d\x18\x15\x78\xff\x5f\x31\x15\x39\x67\xcc\xe6\xac\xf1\xf8\x5a\x3f\xb6\x57\x6f\x8a\x12\x89\xa7\x1a\x70\x50\xc5\xe2\x32\xe3\x16\xb9\x99\x17\x9e\x68\xc2\x1d\x75\x24\x90\x88\xfc\xba\xed\x06\x0c\x41\x70\x30\x64\x7f\x64\xca\xf6\x64\x34\x71\x35\xef\xa3\x1f\x49\x02\x63\x15\x2b\x61\xbe\xe8\x37\x33\xcd\xe2\x1f\x05\x55\xc9\x05\xf9\xcb\x98\x51\xda\x26\x25\x98\xd5\x53\xb2\x72\x2f\x6f\x30\x4d\xa2\x02\xcc\x14\x80\xf7\xc3\xa7\x34\xe8\x1d\xe9\x84\x90\x73\x8f\x9a\x91\x32\x12\xc7\xf1\x87\xdf\x57\xc7\x70\x19\x3b\x62\xe6\x32\x7f\xb3\xc9\x22\xc3\x1d\x50\xd1\xe6\x3f\xbc\xcf\xc8\xe9\xb9\xb2\x79\x8a\xa5\xe0\xf5\x31\x0c\x78\x5a\x67\x43\x73\x22\xfb\x9b\xfe\x4a\x16\xc8\x22\x0d\xe2\x90\x6e\x94\x00\x6f\x1f\x38\xae\xf1\x02\x54\x7a\x12\xbd\xbf\xd3\x44\x56\x73\x42\xba\xc2\x94\xdc\xa6\x90\x88\x84\xbb\xd5\x4f\x7a\x40\xfd\x00\x94\x96\x0e\x9b\x18\xd0\x52\xeb\x94\x49\x93\xe2\x25\x74\xeb\x25\x65\xf2\x85\x9a\x67\x10\xd7\x2d\x57\x0b\x69\xda\x5c\xb1\x90\xa2\x8b\x17\xb4\x14\x0f\x11\xd5\xc7\x8a\x0a\x7d\x92\x9a\xb7\x4e\x12\x2f\x9a\x85\x9a\xf9\x3b\x61\xf4\x8e\x90\x72\x73\xe2\x4c\xb8\x4f\x7d\x8e\xb0\x7d\x91\x7f\xf2\xb3\xbc\xc1\xb6\x41\x5d\x1c\xd6\x0a\xd8\xd2\x51\xc6\x09\x48\xeb\x25\x3e\x5e\xe3\x0b\x27\x9f\x37\x94\x78\x12\xdc\x53\xe2\x08\xdd\x93\xed\x7a\x0c\x72\xbb\x15\xa4\xdc\xb4\x2b\xb3\x6b\x1e\x84\xf3\x1a\xec\x17\x33\xcf\x8f\x32\x90\x73\x5d\x8c\x20\xbb\x57\x9e\xf5\xcf\xb6\x6a\xda\x28\x1c\x6f\x26\x95\x62\x73\xad\x5b\xd4\xa3\xac\xa2\xd0\x15\xea\x36\x3f\x6e\x19\x22\xcb\x4a\xe4\x91\x40\x68\x1a\x66\xfc\x07\x60\x72\xfb\x09\xcc\xdc\x12\x66\x9a\xa8\x7f\x7e\xf2\x1b\x42\xf5\x0a\x75\x92\x7a\x18\xbf\xf0\x3b\x27\x0e\xd2\x02\x77\x8d\x70\xbd\x8d\x05\x07\xa5\x64\x4f\x10\x32\x80\x3f\x34\xde\x86\x6a\x62\x15\xb5\xc3\x76\xdc\xa0\x72\x70\x4a\x5d\x03\x03\x09\x53\x68\x4e\x4d\x10\xf4\x9c\x6f\x3f\x60\x7a\x34\xfb\x46\x97\x3b\xf3\x3f\x8a\xd1\xdb\xd6\x3a\x33\xbe\x89\xf7\x9d\xf4\x4b\xf4\x78\xff\x9b\xcf\xaa\xa2\x3d\x0f\x69\x86\x75\x61\xb3\x9b\xca\xb4\x77\x4c\x61\x8d\x00\x77\xc4\xe9\x86\x2c\xe8\x77\x1e\x9f\x6a\x14\x90\x14\xd9\x16\xf2\x03\x89\x36\x35\xdf\xea\xaf\x1e\xd3\xf1\x68\x0d\xcc\xc0\xfc\xf9\x87\xaf\x19\x62\x84\x38\x31\x77\xe8\xe7\x1a\xf3\x7d\x57\x08\x66\x0b\x2a\xca\xd4\x31\xc9\x1d\x73\x84\x45\x74\x0d\x1b\xa4\x11\xb2\xc0\xe2\x31\xb3\x72\xa2\x56\x29\x78\x18\xd5\x20\xfb\xfa\xbb\x91\x23\xd2\xc1\x9b\x94\x42\xc9\x0d\xfe\xae\x9b\xec\x4a\xbf\x17\xcf\xcb\x9d\x43\x94\x7d\x56\xd0\x25\x77\xc5\x8a\x8b\x30\x2a\xb9\xbd\xb8\xfa\x13\xf2\x67\x57\x9e\x4a\xe7\x21\xd8\xf1\x25\x56\x2c\xd7\x75\x49\xad\xd5\xd0\x65\x98\x67\x4a\x40\xe4\xfd\x4c\xd9\x68\x96\x50\xa7\x2c\xb2\xae\xc3\x62\xf5\x79\x8c\x0a\xa9\xb8\xaf\x1a\x33\xc9\xf8\x66\x70\x5c\xaf\x42\x3a\xf2\x13\xcd\xc5\xbc\xe4\xc4\xe9\x3f\x4c\x72\x33\x0f\xbc\x00\x39\xf4\xf2\x9b\x6f\xd1\x92\x90\x4f\x1f\x31\xd5\xe5\x30\x0a\xa4\x7e\x5b\x66\x99\x76\x54\x95\x10\xe1\x65\xda\x0b\x82\xc5\x26\xf5\x92\xa2\x9b\x04\x36\x60\x09\xf2\x12\x1e\xf7\xa4\x77\xa0\x63\x7a\x1b\x66\xfc\xad\x7f\xf0\xa2\x30\xe1\x71\x1c\x8e\x14\xcb\x1c\x7a\x57\x9d\xa5\x25\xec\x07\x80\x2d\x8f\x3f\x3f\x77\xc9\x70\x5d\x74\xa5\x17\x43\xf6\x0b\x1b\xf4\xd1\x8d\x83\x2b\x2a\x9c\xdf\xf8\xf4\x47\x8c\xa7\x12\x32\xd8\x4d\x66\x0e\xf0\xe3\xee\xe6\x83\xcc\xb5\x13\xaa\xf5\x58\xc3\xde\x18\x26\xf4\x89\xf0\x6d\x63\xe6\x78\x1d\x3d\x02\x06\xb4\xcd\x6a\x60\x1f\x8c\xd2\x29\x59\x9d\x86\x0e\x0e\x82\x34\x79\xf3\xcc\x29\x53\xbe\x69\x0a\x8f\x10\x10\xc2\xa2\xfc\x54\x23\xec\x62\x0b\xd5\x71\x82\x4d\x9c\x7e\x99\xee\xda\x87\x4a\x55\x03\x71\xb2\xc3\xb0\xa5\xb0\x69\x45\x4e\x47\x33\x9f\x5c\xa9\x9e\xfe\x8c\x39\xfc\x98\x11\x07\xc1\xe9\xc7\xd2\xd5\x9e\xed\x5a\x62\x74\x92\xbe\xc1\x45\xaf\xc2\x0b\x25\xae\x07\xcb\xab\x75\xbc\xae\xe3\xca\x7c\x4c\x1c\x70\xa8\xb9\x0b\x4e\xf7\xc2\x3a\xd4\xee\xa1\x2e\xac\xd1\x8e\xb2\x7b\x5f\x6e\x5a\xca\x16\x66\xae\xec\xd6\x5d\x3e\xdf\xf0\xe8\xc3\xb6\x90\x31\x91\x89\xd1\xbd\xef\xf0\x69\x4f\xe1\x7a\xbb\x1e\x17\x5a\x81\x00\xac\x98\xaf\x9c\x3c\xa0\x4a\x17\xe4\xcb\xcd\x3a\x68\x58\x5a\xc0\xa6\x41\xa8\x13\x17\x1a\x42\x6f\x3c\x7d\xbf\xef\x9e\xbb\x42\x64\xf8\x90\x0d\x46\xcb\x0e\xab\xe4\xc2\xe1\xa6\x50\xda\x8d\x79\x2d\x46\xc3\x0c\xb4\xdd\x38\xe5\x25\xbf\x61\xa2\xc6\x0e\xb6\x43\x3f\x60\xa4\x57\x6a\x61\x4f\xfe\x8a\x57\xd5\xf6\x9b\x35\xb3\x8d\x77\x2b\xb7\x5c\xa6\xf5\xad\x08\x8c\x30\x32\xb7\x04\x86\xde\x39\xd7\x56\xea\xc6\xb6\x72\x6f\xcb\x0d\x59\xad\x59\xd7\x61\x3f\x64\x0c\x5b\xfc\x6c\xde\xff\x64\xfa\x8f\x3b\x50\x97\x8b\xfd\x52\xc8\x2a\xca\xa0\x66\xbe\x9b\x5e\xcf\x0e\xa6\x2e\xb1\x53\x27\x52\x74\xc9\x50\x1b\x6b\x20\x27\x14\x45\xec\x7f\x1c\x6b\xaa\x3d\x2b\x2e\xf5\x89\x4a\x71\x57\x8e\xd4\x5c\xe4\x42\x62\x43\x5d\x47\xd6\x9b\x82\x6f\x05\x09\x81\xea\x5a\xaa\x9e\xcd\x9c\x99\x20\xe0\xf4\xdb\x41\xb0\xd4\x6e\x09\x7d\xcc\xa1\xc3\xaa\x46\xb2\x37\xeb\xfa\xce\x60\x89\x0e\x73\x1b\x32\xd2\xc8\xd6\x50\x32\x40\x65\x1e\x24\x26\x93\x6e\xe3\x2b\xf9\x9d\x37\x14\x68\x21\xa8\x12\x4e\xaa\x61\x15\x20\x20\x64\x1f\x7a\x50\xeb\x57\x62\xe8\xcc\x0e\xb5\xd5\x4d\x39\x92\xdc\x91\xd9\xff\x90\x9a\x99\x69\x99\x6c\x34\xfe\x65\x29\xba\xc1\x25\xd7\xe2\xd0\xba\x72\x99\x14\xe5\xa2\xac\xce\x95\x68\x73\xdf\x37\x66\x03\xf1\xc1\x20\x35\x11\x17\x3d\xaf\x8f\xa0\x30\xd7\xa7\x29\x14\xa3\x85\x9e\x49\xa5\xb6\x2b\x58\x74\xe3\x73\xe5\x7e\xe9\x83\x3f\x74\x49\x7c\x2e\xb1\x24\xb3\xbf\xec\xb8\x46\x66\x0e\x91\x70\xfd\xcd\xde\x79\x7a\xb8\x3c\x4b\xfd\x80\x85\x56\x90\x90\x57\xba\x9e\x6d\x56\xa8\xc5\xa2\xb2\xfb\xd7\xbd\x2a\x0d\x81\xc0\xeb\xeb\x8d\xad\xec\x8f\x9c\x11\x9a\x58\x9f\x6c\x25\x41\xea\x36\xc4\xb0\xe2\xf7\xad\x2a\xae\xcb\xa1\xd8\x82\xbd\x90\xd7\x21\xd7\xe5\xb9\x06\x62\xf1\x9d\x47\x8f\x0f\xd1\xd6\x7c\x82\x53\xfc\xe0\x76\x78\xaf\xd3\x67\x71\xb9\xab\x3d\x7d\x07\x6b\xe3\x86\x06\xe5\x7d\xf4\xdc\x9f\xda\x4c\xb4\x21\xb6\x42\xae\x21\x09\xc8\x8a\xeb\xa7\xaa\x17\xee\xc7\x29\x6a\xfc\x51\x99\xd6\xf4\x3e\xb1\x88\xef\x62\x46\xfd\x29\xad\x1a\x3e\x61\xd6\xec\xf4\x86\xeb\x42\x5c\x3f\x71\xca\x7c\x9d\x9b\xd2\x4f\x75\xba\xe7\xcd\x2c\x14\xa3\xe1\x02\x04\xb3\x26\xe0\x74\xd5\xff\x3f\x65\xff\x1f\x6f\x45\x55\xef\x8f\xe3\xee\x1f\x92\x19\x22\x3f\x0f\x07\x44\x44\x42\x44\x60\x1f\xcf\x39\xc0\xf1\xa0\x66\x84\xa8\x68\xc8\x26\x40\x25\x25\x74\xed\xd9\x6b\xef\x59\x67\xcf\xcc\x1a\xd7\xcc\xec\xf3\x23\x32\x52\x42\x23\x2f\x79\x8d\xc8\x6b\x5e\xdf\xc6\x35\x23\x23\x2f\x79\xcd\x6b\xe4\x55\xaf\x1a\x11\x6f\x23\xdf\xe6\x35\x33\xf3\x1a\x99\x11\x19\x97\xb8\x46\x66\x9c\xe9\xfb\x98\xd7\x5a\x6b\xd6\x9a\xb5\xf9\xfe\xf1\xf9\xaf\x10\xce\xd9\x7b\x66\xad\xd7\xcf\xe7\x0f\x4e\x21\x5a\xb3\x46\xc1\xf0\xed\x41\x3f\xe9\x54\x6b\x4e\x3a\x7a\xdb\x3c\x5e\x10\x6e\x57\x2d\x2b\xcb\xf8\x3e\x69\x63\x3a\x19\x05\xc0\xc7\xd5\x7b\x4c\x9c\x6d\x83\x18\x70\x8a\x0d\xdd\x1a\xc0\x18\x7b\xc8\x12\x32\xd0\xbf\xf7\x4d\xf6\x0f\x44\x6f\xb1\x87\xfd\xc4\xe6\xf4\x94\x7b\xfa\xda\x31\x77\xfe\x55\x86\xba\x0d\x68\xbc\xf1\xd7\x58\xfc\xf0\x7d\x26\xc0\x8d\x46\x5e\xb5\xc2\x78\x19\x27\x46\x19\x53\x6a\x46\xb3\x4c\x3c\x90\xc5\xe3\x07\xfa\xa9\x6d\xa2\x3e\xb1\x91\x60\x40\x7e\x57\xf3\x8c\xb3\xb1\xe3\xf3\x00\xfe\xc9\x5a\xbb\xd6\x55\xd9\x36\xaa\x69\x01\xfc\xbb\xa3\xb3\xea\x12\x75\xe8\x87\xca\xc3\xb9\x7b\xe7\x8e\x13\x15\x6d\x00\x0c\x41\x71\xe8\x0b\x3b\xd7\xaa\x87\x54\xc3\x3c\x1b\x25\x5f\xe8\xbc\x67\x25\x14\x37\xb4\x39\x7f\x6f\xe8\x7a\x43\xd6\xcf\x43\x5e\xd0\x0f\xab\x03\x38\x57\x27\x6f\x37\x1d\x7c\x9b\xe9\x30\x10\x5d\xaf\xd5\xd4\xa0\x94\x01\x7f\x7c\xe8\xa4\x51\xf2\x43\xf9\x51\x98\xb4\xa0\xff\x61\xd0\xfb\x43\x16\xb9\xbe\x18\xdb\xa6\x44\xd8\xfd\x06\xcc\x9d\x61\x07\x79\x00\xa6\x15\x3d\xd4\xa9\xcb\x0d\x49\x65\xc7\xe1\x54\x94\x6f\xed\x30\x81\x27\x55\x4e\xf1\xe2\xef\xde\x7e\x4b\xc9\x4a\xb8\x51\x18\xb5\x6a\xdf\xe5\xbf\x32\xbf\x65\xa4\x01\xee\x20\xd2\x80\xec\xb6\xa3\x59\x38\xa2\xcb\xe7\x24\x37\x6c\xe2\x8f\x73\xe5\xd5\xf3\xb8\xf3\x4c\xee\x0f\x7b\xc5\x6e\x9e\x63\xd0\x6f\x39\x96\x3d\x1b\xd4\x19\x74\x7d\x62\x05\x62\x98\x2a\xd0\x1c\x5d\x0b\x2f\xe8\x2e\x95\xe3\x7f\x59\xcb\x2f\xc8\x62\x87\x5a\xa2\xe8\x2a\xbf\xd6\x32\x26\x13\x5e\x3d\x3c\x7b\x9f\xa4\x69\x59\x57\x48\x60\x53\xf8\xb4\xbf\x5c\xc4\x5f\x40\x93\xaf\xb4\x4b\xe5\x78\xcd\xcb\xaa\x67\xa8\xa6\x0f\xf4\x53\xaf\x1b\xad\x2d\x05\xb8\x8e\xdf\x2a\x36\x51\x1c\x7c\x45\x3d\x80\x26\xe7\x2c\x26\xef\xf5\xa8\xfa\xf5\xa4\x89\x3c\x0a\xbe\xa1\xe3\x77\x9f\x63\xfc\x58\xc6\x08\x2c\xe8\xcc\xa6\xec\x81\x3b\xa7\xf7\x9b\xc3\x7c\x00\x58\x65\xab\x9d\x31\xb7\x1a\xd2\x59\xa0\x60\x0e\x7f\x31\x79\x48\xe7\x6b\x3d\x46\x1d\x53\x56\x27\x02\x64\x7a\x78\x47\x8a\x3b\x76\xd1\x50\x46\xc6\xf4\x43\xbd\xea\xfb\xd4\x90\x4b\xb8\xbb\x42\xe1\xb2\xd5\x13\xcc\x4a\x49\xdc\x83\xd7\x1f\x50\x93\xbe\x3e\x1c\xea\x44\xdc\xc2\xcb\x47\x0c\xd2\x8c\x67\x31\x5c\x15\x62\x35\xc9\x3f\x5e\x91\xd7\x24\x55\x6d\xca\xc2\x52\x00\x1a\xa0\xd5\x8e\x52\x39\x7e\xea\x60\xf6\xe0\x83\xe3\x4a\x86\xc5\xfb\xf2\x12\xcd\xc7\x14\x09\x40\x5b\xee\xcd\x83\x06\xa6\x85\xfa\x2a\xec\x8c\xdf\xd4\x22\xb5\x12\xe0\x54\x6d\x2c\x46\x45\x31\x45\x20\x9e\x9c\x22\xdc\xa3\x5b\x19\xb9\x24\x35\x19\xfb\xa6\x36\x4d\xf4\x49\x72\xc9\xe1\xb7\x7f\xfc\xa0\x06\x36\x23\x03\x19\x11\x82\x3d\xb7\xca\x19\x85\x57\xe5\x10\xc3\xfc\x07\x9e\xca\x96\x35\x51\x80\xc5\xdd\xca\x3d\x33\x60\x7e\x8f\xc8\xb3\x88\x03\x2d\x5f\xbe\xbe\x4c\x83\x2d\xd1\x0a\x07\x4a\x4f\x5e\x9c\x0d\xcb\x83\x34\x0a\xed\x12\x65\x84\x6f\xd7\xb9\x32\x59\xfd\xd4\x0f\x9b\x35\xe2\x09\xd7\xcb\x6d\xb3\xf4\x8d\x09\x0a\x6c\xb8\x9a\xd7\x75\xaa\xc7\x91\xe4\xb0\x54\xaf\xf5\x9c\x11\xa7\x89\xbf\x3a\x28\xda\xf5\xb3\xf6\x64\x3f\x7f\x13\xac\xa0\xf9\xee\x68\xeb\xd6\xf1\x5a\x75\x4d\x42\x22\x75\xfa\xff\xa4\x0d\x63\x2d\x87\xb8\xe2\x31\x59\x06\x2e\x45\x9b\x64\xf3\x7e\xf0\x7f\x17\x29\x34\x1e\xd2\x14\x66\x3f\x7b\x79\xf6\x1f\x62\xaf\x0a\x6e\x7e\xb2\x3f\x2b\x5e\x30\xfb\x34\xf1\x6e\xfb\x44\xa1\x5d\x9f\x25\xb0\x47\xd4\xf5\x41\x49\x65\xb8\x78\xe7\x62\xdd\x20\xde\xc5\x21\x01\xc5\xbf\xe2\xf2\x75\x02\x87\x89\x82\x40\x88\x03\xe6\x6e\x10\x3b\x9d\x06\x71\x42\xbe\x85\xce\x57\x35\x0a\xd6\xb9\x0b\x17\x26\xff\xf2\x33\x1d\x3a\x1d\x28\x0c\x6d\x2e\xdc\x9a\x7b\xe6\x98\xc6\x41\x8e\x2c\x09\x79\xbc\x6e\xf7\x38\x7d\xc8\x8f\x84\x4b\x6d\xee\xe7\xdb\xa7\x64\x4a\x57\xe0\x2d\x3b\x38\xe4\xff\xa7\x3c\x9c\x5b\x39\x64\x3a\xba\x00\x3e\x0b\x4a\xa7\xae\xbd\xa6\x64\x27\xf7\xd7\xe4\x21\xf4\xb3\xb3\xb5\x25\x7b\x60\x51\x31\x5e\xcf\xc7\x35\x3e\x23\x5c\x4a\x03\x93\x25\x37\x5c\x38\xa7\x83\x97\x6c\x57\x5e\x99\xdc\xe0\xa5\x2f\x19\x12\x24\x55\xec\x85\xa9\x06\x39\x5c\xb8\xff\x79\xdc\x68\xc1\x42\x54\xab\x09\xab\xc4\x0f\x8f\x57\x7b\x52\x1b\xdd\xac\x05\x96\xbb\x66\xaa\xe3\xb3\xb0\x33\xb9\xad\x3c\x9f\x7e\xf6\x8d\x6c\xc2\xab\x25\x47\xbf\x9a\xaa\xd6\xb6\x57\xd4\x91\xee\xa7\xcc\x81\x30\xf3\xd1\xd5\x66\x77\x0b\xf3\x02\x2c\xa6\xd3\x05\x4d\xcc\x07\x09\x21\xe2\xf8\xbd\x57\x4d\xf7\x5b\x10\x3b\x95\x9c\xa6\x67\x39\x59\xb0\x74\x35\xd4\x17\xb8\x45\x72\xae\x70\x74\x3d\x7f\xb6\x81\x8f\x71\x35\x68\x48\x67\xbf\x77\xba\xf9\xd3\x5b\xdd\x4f\x4b\xe5\x78\xe4\x03\x66\xf4\xac\x51\xe6\x2a\x41\xb1\xfc\x3f\x1a\x76\xa4\x91\x57\x77\x22\x51\x9f\xe4\x6f\x6f\x37\x59\x36\xc8\xb2\x45\xcf\x9c\xd2\x4c\xfe\xcb\x90\x75\x15\x7a\x92\x4e\x2a\x97\x9d\x1b\xbd\x44\xbd\x03\xe4\xfa\x0e\xe8\x0c\x42\x24\x88\x9f\x50\x0f\x66\x5e\xd7\xdc\xf9\x3d\xc0\xae\x9a\x7f\x8b\x08\x03\x14\x73\x83\xa5\x4a\x5e\xdb\xae\x58\x36\x76\xc0\xba\xe9\xc6\xd7\xc6\x69\x33\x7f\x5e\x7c\x27\x9f\x7a\xc4\x0b\x06\xfe\xcc\xb6\x6c\xcc\x2a\x28\x5d\x7e\x1e\xd6\x3d\x02\xb1\xb0\x89\x2c\xac\x18\x21\xc7\x6f\x38\xc4\x03\x10\x10\x7a\x6f\xca\x66\x2c\xe4\x56\x04\xaa\xa3\x7d\xae\x51\xfc\x23\x1f\x3b\x0e\xcd\x6c\xfd\x72\x7b\xf6\xe9\x4b\x24\x37\xf9\x1b\xe2\xfc\x7f\x70\x74\xf6\x07\xfb\x1d\x2e\x8c\xe1\xe2\x25\x33\x14\x58\x75\x16\x27\xb7\x27\xc7\xfc\xbc\x96\xb7\xff\x17\x27\x5b\xb5\x76\xf5\x0a\xfe\xd8\xa9\x97\xf3\xe6\xa1\x19\x39\x9e\xf4\x0e\x8e\x0f\x0a\x86\x04\xc8\xa5\x97\xe3\x69\xfb\xb3\x77\xca\xa1\x5e\x3d\xa9\x28\x43\xc4\x67\x22\xc9\xab\x99\xfe\x2c\x5f\x6b\x73\xa7\xa3\x9b\x23\x88\x55\xab\x7b\x55\xa2\xe6\xfa\x8f\xca\x1d\xe5\x1c\x43\x05\xb7\x1a\x55\x50\x69\x30\x62\x21\x8c\x16\xd2\xe3\x32\x38\x43\x5d\x3b\x1a\xda\x98\xf5\x13\xf0\xd3\xf8\xfc\x5b\x63\x14\x15\x20\xf5\x6a\x7a\x6b\xac\xc1\xea\xc5\x0e\xc1\xcd\x34\x15\x17\xef\x7c\x67\x82\xd6\x64\xd6\x9c\x08\x7b\x16\xdf\x34\x8d\x98\x6c\x7a\x8e\x78\x0d\x8e\xe7\xbb\x7f\x6f\xda\x6f\xf9\x00\xdb\xfa\x17\x41\xc7\x59\x4a\x1c\x47\x2e\x15\xf2\xff\x65\x38\xb2\x09\xbe\xb0\x9c\x17\xac\xd4\x16\x2f\x20\x24\xeb\x58\x49\x17\xfa\xe2\xb4\xec\x75\x72\x31\x6e\xa4\x83\x8f\x4f\xdf\x62\x4e\xf9\xdc\x28\x48\x35\x8c\x8a\xbd\x87\x4f\x53\x9e\x83\xb5\xe4\x4f\xf0\xa1\xa9\x46\xc5\x94\xf4\x97\xfd\x1a\xc2\x26\x87\xc7\x6b\xb5\x23\x72\x22\xce\xf7\xcb\x5d\xf3\xbc\x78\x7b\x36\x03\x63\x1b\xb8\x18\x27\x3f\xa2\x1e\x56\x3f\xae\x7a\x38\xa8\xa2\xc1\x24\x7c\xdd\xff\x9a\x92\x85\xee\x80\x7f\x7f\xf2\xeb\xd9\xe3\xb5\xa0\x5b\xa0\x80\x4f\x7d\x45\x73\xf9\x23\x5e\x95\xf2\x94\x73\xc3\x21\x63\x1f\xe1\x20\x22\xbd\x6a\x72\x64\xda\x59\x19\xfb\xf6\x4b\xe7\x64\x4f\x73\xa9\x1c\x5f\xbf\x5b\x31\xec\x61\xde\xbf\xb7\xcf\x84\x72\x30\x16\xc1\xe2\x58\xf8\x76\x1e\xdc\xab\xfc\xac\x59\x8b\x5c\x65\xee\x17\x27\x69\xd4\x2b\x2e\x2b\x08\x21\x6d\x8f\x6f\x82\x39\x89\x17\x8a\xdd\x55\xbc\x61\x56\xba\x78\x8f\x82\x8c\x34\x7f\xae\x10\x9b\xce\xbf\x54\xe2\x34\xf3\x9f\x5a\xc1\x23\xc7\xbc\xee\x05\x73\x25\x19\xf2\x90\x1c\x94\xbb\x15\x5a\xe5\x2a\xac\xf3\x34\x0c\x16\x1a\xa2\x9c\x37\x93\x3b\xf3\xc9\xb4\x7b\xe8\x18\x94\xa0\x8e\xdc\xfc\xe7\x8d\x69\xd8\x82\xf9\xe2\x69\x16\x47\xbc\xa4\xa6\x61\x75\x51\xda\xcc\x51\x73\x26\x07\xb9\xda\xf1\xb8\x6d\xbc\x11\x26\xe6\x41\x05\x17\xff\xbd\x32\xd9\x8c\x5f\x24\x44\x29\xe9\xf0\xdf\x56\x2a\x39\xf8\x20\xe4\x72\x0c\x3f\x78\x5e\x28\xb7\x91\x24\x84\x5b\x42\xe4\x63\xe1\x33\xc6\x88\xdd\xf5\x29\x0b\x91\x90\x54\x2c\xac\x3c\x68\x68\xab\x0a\xeb\x0e\xee\x90\x24\x37\x13\xe7\xad\x53\x87\xd8\x43\x61\xc4\x20\x3b\xe4\x17\x1e\x9d\x6d\x1c\xff\x28\xb4\xfb\x39\x5d\xd7\x6f\x45\x25\xbd\x5a\x33\xf7\x02\xae\x8f\x6e\xe6\x36\xaa\xd9\xbf\xb9\xc3\x88\xde\x3e\xa3\x35\x12\xa2\x0a\x71\xb8\x6e\x33\xc4\xe8\xaf\x33\x13\xd6\xc0\x00\xf2\x1b\xff\xea\x54\xd3\xcd\x43\x7a\x3d\x26\xd5\x9c\x01\x86\x58\xd0\xd9\x29\x8a\x80\x57\x6f\x31\xab\x28\x56\xe7\xd3\xbc\xf8\x77\x2f\xf3\x5c\x7f\x29\x75\x93\xa6\xbe\x75\x2d\xb5\xf6\x01\xe3\x57\x82\x19\xbd\x68\x80\xbe\x5b\x33\xf7\x3a\x24\x70\x84\x79\x5c\xfc\x95\x17\xb2\x21\x04\x75\xf4\x65\x3d\xce\xe3\x3f\xef\xd3\x87\xc5\x37\x47\x44\x16\x69\xab\xd7\x8b\xe9\x4a\x6a\x07\x37\xc6\xd8\xa7\x08\x85\x56\x51\x8f\xbf\x32\x77\x9c\xc6\xe3\x55\x07\xa7\x7d\xae\x36\x99\x4b\x45\x35\x8a\x4e\x33\x7b\xc3\x9b\xc8\x71\x00\xe7\x20\x3b\xe8\x2d\x5a\x81\xe6\x46\x41\x88\x2c\x9b\x57\x0d\x13\x77\xb6\x1b\x45\x4d\x5f\xc4\x04\x95\xb9\xd9\xa6\x15\xb3\xa8\x15\x17\x52\xd8\xdd\xa9\x52\x18\x1d\x42\x0d\x5d\x45\x7c\xc3\x78\xf5\x0d\xfa\x69\x52\xb3\x42\xa5\xf6\xa5\xfb\xf9\xac\x79\x49\xab\xf8\xff\x5e\x43\x50\xcf\xa1\xb4\x81\xab\xe2\x08\x15\x7e\xfd\xa0\xb1\x00\xa5\x8c\x4b\x0d\xc5\x13\x67\xab\x58\x1f\xc1\x04\xef\xf5\xa5\x9a\x49\x09\xae\x0a\x73\x55\x8e\x11\x7f\x4a\x73\x24\x93\x44\x27\xd8\x6b\x5c\xad\x09\x0c\xeb\xd1\xdf\xa4\x4e\x51\x6f\x08\x70\xbc\xba\x63\xce\xb2\xd7\xb2\xf3\x01\xcb\xf3\x4e\x30\x1f\x28\xf6\xcd\x32\x20\x8f\x11\x14\x78\xb2\xc1\xfc\xc0\x01\xad\x87\xc4\xa8\x0a\x3a\x9f\xb9\x8b\xc6\x66\x21\xc8\x36\x1e\xaa\x50\xc7\x41\x76\xab\xa4\x7b\x8e\x3e\xa4\x29\xf2\x87\x8c\x50\x18\xa6\x4d\x35\xf4\xad\x03\x92\x94\x26\x30\x72\x7a\xce\x50\xea\xe8\xea\xe9\xee\xc1\xd5\x70\xce\x72\x0a\x98\xce\x9c\xf5\xa4\xb6\x5f\x40\x8e\xc3\x27\xa4\x73\xef\x16\xd3\x3c\x0d\x82\x54\x2a\xc7\x7f\x7c\x52\x3d\x5b\x0b\x45\x21\xf7\xb4\x4a\xfe\xc1\xa6\x3d\x3c\x06\xae\xc2\xd2\x5c\x69\x38\x3f\xa7\x9b\x53\x6e\x96\x11\xbf\x41\xbc\xd2\x2a\x1b\xd9\x48\xb3\xe2\x7e\x7f\xb3\x84\x59\x06\xf0\x1c\x0a\xbb\x0f\xf2\x34\x2c\x46\x88\x3c\xe2\xdf\xbe\x42\x7d\x3e\xee\x88\x5a\x2a\xc7\x93\x6a\xc6\x90\xac\x19\x79\x5c\x93\x5d\xd8\x64\xbf\x7f\x86\x76\x06\x58\xc8\xd0\xa0\xae\x58\x58\xf8\xc8\x3e\xcd\x28\xa2\x43\x9b\x6f\x3c\x38\xa4\x12\xe1\x10\x62\xa8\x4e\x87\x60\x7c\xdd\xd6\x9c\xa0\x49\xbe\x34\xb1\x97\x84\x5d\x28\x13\x6e\x58\x6d\x4c\x84\x1c\x14\x04\x8c\x52\x57\x08\xb9\x3d\xf7\x4a\x56\xac\xbf\x49\x3c\x5a\x67\xa8\x4a\x9b\x02\x1c\x20\x4f\xd8\x69\xf7\x09\x72\x5e\x54\x71\x5a\x79\xff\xb9\x1b\x35\x3b\x48\x1a\x85\x0e\x11\xd6\xdf\xc5\xcd\x4b\xa6\x1b\xfd\x1c\x43\x24\x34\x14\xb9\x87\x0b\xbf\x38\x89\xc7\xa7\x4a\xf2\x8e\xa1\x5e\xbf\xe9\x89\x49\xad\x8d\x60\x9a\xd4\x3e\x3e\x99\xbf\x50\x3c\x60\x61\xe6\xf3\x8d\x50\xe1\xb5\xd3\x45\xed\xc8\x9d\xec\x4b\xe5\x98\x1d\xe3\xeb\x85\x25\x34\xd2\x54\xc2\x73\x13\xfb\x34\x60\xa3\x4d\xb8\xc8\xb5\xbd\xc2\xc0\xc3\x44\xa1\x90\x0e\x4f\xc3\xeb\x35\x37\x69\x23\x10\xec\x05\x40\x7b\x2a\xac\xbe\x45\x05\xdd\x0a\xb2\x1a\x52\x9d\x3f\xf7\xb3\xed\xed\x5e\x86\xa5\x02\x36\x38\x75\x3e\x79\x7e\xfa\x05\x3d\x54\x03\x5e\x0d\xce\x59\xd1\xdb\x34\x5a\x9c\x4b\x6d\xe8\x7b\xd8\x50\xac\x71\xb1\x17\x49\x5b\xda\x1f\x77\xf0\x95\x4e\x10\x55\x5c\x90\x11\xc3\x25\x6e\xd6\xde\x3b\xd3\xa0\x30\x25\x2d\xae\xd0\x4f\xeb\xbf\x2f\x2d\xd1\x9b\x48\x9a\x3e\xe4\x9f\x1f\x6f\x92\xb3\x5d\x04\xaf\x92\x9f\x96\x71\x5e\xf6\x22\x87\xb6\x00\xa5\xc7\xff\xbe\x47\x4c\x4d\x22\x61\x83\x93\x6f\x5f\x61\x44\x53\x8c\x40\xc0\x87\xd3\x0f\x0e\xaf\x31\x65\x12\xa5\x18\x29\x05\x40\x44\xfc\xd8\xf1\x2c\x03\xda\x15\x5f\xf6\x8d\x77\x55\x58\x0f\x6d\x26\xe4\x54\xe2\x3f\xd4\x5a\x97\xee\x91\x04\x71\xc4\xe7\x1f\xd5\xba\x4b\x1a\xb1\x10\x73\x8d\xb9\x9f\x8e\x57\xf7\xa6\x9b\xfb\x4c\xf8\xdc\xc0\xed\xcc\xb5\xd9\xa0\xe7\x22\x4e\xa0\x4a\x9e\x9e\x99\x37\x6e\x1b\xa9\x6b\x0f\x00\x38\x97\x5b\x88\x8e\x08\xe7\xf4\x67\x67\x4d\x21\x66\x21\x22\xe0\x24\x0a\xf1\x3b\xfb\x83\x66\xbc\x7f\x9a\x7c\x91\xfd\x5c\x98\xe7\xa1\xa9\xba\x4c\x71\x93\xd7\x69\xc5\xdc\x13\xd9\xe2\xa8\x82\x06\x53\x95\xb9\x6c\x71\x34\x61\xbe\xe1\x2a\x2f\x77\xe5\xf0\x3a\xcf\xd3\xc4\x40\x02\x4c\x78\xc4\xbd\xbe\x63\x86\xf1\xc3\x2b\x88\x06\xb6\xf4\xb0\x57\x3b\xbf\xbb\x34\xe1\xaa\x0a\x58\x71\x5f\xb1\xe2\xb2\xf8\x8f\x33\x55\x6c\xe3\x73\xc8\x20\xa3\xbb\xb7\xc9\x70\x3f\x0a\xa8\x8b\xa9\x27\x1b\xd5\xff\x30\xcc\x0d\x42\x1b\xbb\x52\xac\x14\x1f\x9b\xa4\xfd\xe4\x30\xeb\x30\x54\xf8\xf6\x55\x1f\x12\x7d\x4c\x0d\x6c\x9c\xbd\x13\x33\x35\x00\xce\x97\xbf\x7a\xbc\x40\x05\x20\xd6\xe0\xb7\xd1\x3d\xc5\x74\xd4\xf5\x84\x99\xe9\x70\x7e\x5e\xb3\xcd\xa8\x45\x51\x20\x34\xde\x1f\x9c\x3e\x41\x27\xca\x8b\x77\x5f\x2a\xc7\xef\xbd\x37\x4a\x3c\x56\x2f\x39\xd2\xc9\x77\xfb\xfc\x5c\x65\x8a\x1f\xd5\x4b\xe5\xf8\xc6\xcb\xb3\xe5\x5c\x1d\x33\xe4\x56\x32\x79\xfd\xc2\x4b\x3e\x08\x3f\xa6\x2b\xe9\xec\xfa\xdb\xd3\x8e\xc6\x8f\x58\xa6\xa3\xf9\xe8\x81\x89\x5a\x46\xe9\xc7\x8c\x7b\x83\xc3\x21\x7f\xe1\x11\x69\x20\x49\x9c\xe4\xff\xff\x6f\x8d\x27\xcf\xe5\xb4\xa9\xe5\xbb\xe1\xe2\x29\x47\xd5\x9b\x0b\x83\x26\x0e\x91\xee\x31\x3f\x5c\x38\x60\x20\x91\x6b\xc8\x0b\x93\xdc\x28\x81\x52\x7d\x22\x0c\x2d\x46\xac\x82\x18\xd2\x82\xd7\xa9\xc7\x0c\xcb\x0a\x87\x4a\xd1\xef\xe2\xc6\x75\xfa\x13\xe4\x5e\x3b\xd0\x7d\x5f\xf3\x6c\x3a\xc0\xa5\xa1\xe6\x52\x5d\x9c\xf5\x92\x66\xd8\xc6\x30\xec\x93\xab\x11\xc7\xa4\xe6\x7e\x5a\xcc\x6e\x6a\x7c\x54\x97\x40\x37\xb3\x0e\xbf\xba\xc7\xf4\x36\x21\x8c\x2a\xb5\xa8\xe1\xfc\xdd\xb3\xcc\x79\x5b\x95\x20\x00\x14\x49\xc0\xe6\x52\xe5\x97\xdd\x33\x0f\xca\x81\x45\xe9\x3b\x46\x5e\xf2\x2d\x4e\xad\x64\xd3\x5f\x23\xc9\xcd\x56\x63\x30\x6b\xc0\x52\xbc\x64\x8f\x7a\x7f\xdc\x3c\xcf\xc1\x81\xa8\x5d\xd0\xa9\x46\x35\x21\xf5\x92\x78\xe4\xbd\xe7\x79\x4d\xfd\x00\x11\xd6\x24\xb8\xbf\x54\x8e\xad\x07\xd5\x4a\x07\xdc\xd3\x15\x0b\xe5\xa3\x97\xeb\xfa\xa4\x8c\x70\xbe\xc8\x88\x51\x2a\x18\x54\x85\xdd\x6e\xee\x94\xfb\xcf\xd2\x9b\x39\xa8\xb3\xcc\xdd\xd4\xae\x53\xce\x36\x13\xb5\x98\xe6\xea\x7b\xa4\xdb\x2f\xd4\x0a\x04\x86\xbc\x3a\xe6\xc0\x88\xdc\x6b\x87\xcd\xcd\x9d\x45\x5d\x17\x7b\x42\x1d\x28\xff\xc5\xa5\xc6\xe1\x61\x88\x38\x02\x38\xd1\x79\xa1\x32\xf2\x38\x81\xb1\xdd\x96\xd9\xc6\xc2\x19\x31\xf0\x44\xe4\x99\x64\xc7\x4d\x67\x89\x46\xcd\x0b\x19\x17\x69\x6c\x85\xb8\x1e\x10\xf5\x03\x01\xd4\x8d\x8b\xe0\x0a\x15\xbe\x34\x74\xb6\x7a\x82\xa8\x0f\x07\xe1\xe0\xb9\xad\x2c\xc0\x1d\x1e\x1f\x8c\x5f\xc7\x69\x4f\xdc\xfe\x44\xde\x89\x6f\xad\xcd\x3e\x35\x86\xdc\x74\x10\x9e\xc2\x6b\xf2\x95\x29\x2d\xf1\x90\xf0\x2a\x32\x3e\xb3\xa6\xc2\x2f\xbe\x39\x12\x93\xbb\x42\xfb\xcb\x6d\xda\x22\x25\xc4\x9e\xda\x75\xd7\x66\x9b\x4e\xa8\xd8\x87\x4d\x18\xaf\xfe\xff\x7d\x7b\xf6\xa8\xa6\x60\x24\x21\x49\xc9\x7b\xd0\x0b\xd7\xa6\xcb\x90\x0a\x64\x8c\xf8\xdf\x65\x6b\x19\xf2\x31\x48\xfc\x93\xa6\x96\x56\xc2\x08\x68\x23\xf9\xa5\x6d\xba\x37\x21\x0b\x22\x7e\x5f\xaf\x7d\xd0\x68\x86\x6d\xe4\xa7\x90\xed\x1b\xf8\xd8\xaf\x64\x21\x56\x25\xc8\xd2\xcc\xcc\x8b\x97\x3c\xa4\xaa\xa7\x1a\x4b\x2a\x6f\xc2\x71\xaa\x13\x5f\x54\x9c\xc4\x9a\x90\xed\xe8\x32\xec\x6e\xbb\x16\x88\xc3\x2c\x02\xfc\x9a\xc3\x6d\x5a\xdf\x13\x79\xa4\x36\x28\x01\x54\x3f\x7f\x45\x5d\xcc\x5a\xe4\x55\x4b\x0c\x91\x40\x28\xb8\x8d\x32\x92\x6b\x3f\x23\x61\x3a\x3c\xc8\x6d\x5c\xa2\xee\xa5\x8f\x58\xd2\x10\x43\xf8\x7d\xe6\xda\xec\x5b\x68\x52\x07\x85\x44\x50\xa6\xe3\x7f\x9f\xa2\x25\x55\x5e\xc3\x24\xf5\x4b\xd1\xd8\xdb\x13\x8f\xb2\xd4\xa1\x24\xf7\x8b\xa3\x9c\xcd\xbd\x02\x87\x98\x69\x6c\xfe\x62\x77\xc7\x69\x6a\xaf\x9b\x1c\x9a\x09\xf9\x6c\xd9\x05\xbb\x1c\x5e\x16\xf2\xd7\xbb\x70\x8f\xb4\xdc\xd3\x0f\xeb\xbb\xbd\x06\x64\x84\x51\xda\x90\x3e\xd4\x85\xc7\x17\x99\x3c\xdb\x7e\xcc\x84\x47\xe6\x0b\xf3\xd5\xeb\x68\x78\x50\xd9\xe7\x3f\xf7\xba\x62\x2c\xd4\x89\x07\x90\x35\xad\x42\xb8\xf3\xdd\x09\xa2\xf1\x62\xa1\x9d\x91\x00\x3b\xf3\x5e\xfe\xe1\x06\x69\xe4\xd5\x81\xca\x93\xfc\xb8\x69\x17\x4f\x33\xbe\x53\x6a\x24\x94\x8e\x33\xde\x54\xde\xef\x35\x07\x25\x4f\x74\xfb\xe9\x9a\x9a\x87\xd5\x28\x95\xe3\x2f\x0c\x9c\x2e\xab\xaf\x24\x0b\xc1\x9c\xe7\xb9\x7b\x8d\x57\x6c\x63\x96\x42\x39\x73\x65\x93\xfd\x01\x5e\x50\xa9\xd3\xff\x46\x85\x72\xee\x47\x56\x03\x38\xa2\x43\x77\x6a\x3a\xa8\x98\x09\x3f\xc9\xfc\x6f\xa6\x99\x0c\x69\xc6\x88\xdc\xd0\xe6\xe3\xb7\x0d\x11\x6f\xc6\x45\x08\xe5\xef\x8a\x5f\x9f\x69\x4e\x2e\x2a\x95\x41\xe9\x89\x95\xfb\xd1\x9d\xda\xf1\x46\x55\x62\xa5\x9e\x04\xf9\xef\xdd\x69\x5a\x56\x11\x69\x21\x10\x57\x8d\x96\xc3\x72\x30\x6b\x88\x0e\xb6\x7f\x49\x9b\x99\x1a\xf1\x00\x2f\x89\x4e\xbb\xdc\xd4\x6d\x0e\x49\x98\xa4\x2b\x2e\x7e\xd9\xb5\x49\x87\x97\x07\x36\xe6\x0b\x9b\x4b\xfb\x0c\x32\x1f\x09\x10\x27\x6b\xc1\xf4\x70\xff\xbb\x0a\x95\x44\xb4\x13\x5e\xf8\xfa\xa6\xf6\x94\xaa\xd2\x12\xff\xff\x4f\x6f\xbb\x76\x05\x7d\xcc\x4a\x96\x43\x7c\x9f\xcf\xbf\xce\x7d\x96\xf7\xf7\xdd\x42\x5d\x25\xff\x87\x69\xd9\xc2\x17\x31\xf7\x84\x16\xfe\xc5\x09\xef\xa6\x53\x5e\x34\x94\xea\xc3\xbc\xff\xa8\xb2\x77\xf0\x28\x24\x1a\xaf\x54\xa5\x2e\xf1\x44\xcc\xca\xff\xfd\xc0\xd9\x46\x6d\x92\xfa\xa2\x26\x2f\x5a\x40\xb0\xff\xe1\x1e\xbd\x9b\xa8\x71\xaa\x1f\x1c\xa8\x4e\xdb\x14\x74\xee\x59\x20\x22\x98\x35\xd9\xd4\x96\x10\x15\x6a\xfe\xdd\x11\x13\xb9\xa9\x7b\xe4\x5b\x49\x4f\xac\x69\x52\x8e\x99\xa9\x8d\x4b\xe0\x1d\x09\x9c\xc8\xd4\xbc\xc1\xa5\x8a\x18\xe2\x64\xe6\xc2\x85\xdb\x35\xe3\x61\x02\x78\xb2\x6d\xcf\x67\x7f\xf7\xbc\x4e\x61\x4d\x54\x18\xd6\x77\xf7\x51\x10\x0a\xe5\x14\xc7\x38\x57\xc8\xf5\x25\x27\xe5\xa6\xc7\x33\xdd\x1d\x46\x21\x27\x25\x8f\x7b\x23\x7b\x03\xd4\x83\x95\xd5\xe7\xd8\x76\xfe\x3a\x57\x88\xd2\x25\xff\x7f\x66\x19\x5c\x37\x6e\xcc\x80\xb1\x94\xa7\xc9\xd7\xa7\x1b\x42\x94\xac\x1e\x25\x9d\x99\x38\x73\xd7\xd9\xed\x5a\x28\xf6\x48\xa8\xe9\xd5\xe4\xae\x5a\xc2\x83\x54\x3d\x69\x1a\xa1\x9f\x93\x93\xce\x7b\x0e\xf2\x20\x75\xa9\x1d\x31\xcb\x96\x7f\xba\x4e\x5b\x9b\x5a\xb0\xaf\x97\x59\x99\x5c\x65\x34\x44\x2e\x4c\x1d\xc5\xba\xe5\x38\xe3\xe2\xf9\x57\x03\x86\xda\xc9\xd6\x71\x4b\x8c\xdc\x19\x0e\x3a\x58\xba\x80\x17\xd6\x18\xd5\xed\xa0\xcf\xa2\x20\xc5\x02\x0d\x17\xae\xcf\x9b\x4e\x7d\xfd\xa0\x5c\xc9\x8b\xa3\xca\xd0\x18\x91\xf3\x58\xca\x84\x1d\xce\x4f\x9b\x96\x0d\xb5\x01\x72\x7d\x86\x82\x2c\xb1\x6b\x6e\xbb\x36\x22\x46\x80\xc2\x2f\x95\xe3\x60\x86\xae\x21\x80\x08\x83\x0e\x37\x7e\xfa\x30\x1f\x76\x5c\xa1\x8f\xb9\x9e\xd9\x62\x8c\xf4\xb1\x27\xf5\x4f\x55\xcb\xf3\xfd\x9d\xa6\x58\x71\x52\xf9\xf2\x88\xf7\x61\x4d\x6b\xbc\xee\x20\xee\xa0\x5b\x18\x7d\xab\x49\x11\xb3\xc0\x07\x56\x3a\x33\x14\xc6\xef\xc8\x46\x00\xd7\x22\x27\xdc\x4e\xe4\x66\x2c\x53\xb7\x60\x7e\xc7\xfc\x52\x39\xfe\xda\x5e\x15\x63\xeb\x0c\x0d\x26\x91\x94\xc3\x18\x0b\x37\xb6\xab\x72\xa8\x77\x6e\x4f\x2f\xc0\xdf\x3e\x72\x4b\x5a\x9e\x13\xe8\x6e\x54\x5f\xfd\x65\x31\x78\x5c\x75\x4d\xa9\xfb\x82\xe4\x07\x74\xec\x30\x3b\xf2\x21\x84\xd8\x09\xb4\xf8\x1b\xa3\x8c\x0a\xce\xc7\x30\x86\xb3\x30\xc3\x2e\xf5\x04\x25\x28\xdf\xfb\xfa\xf8\xcc\x2a\x9b\xc8\x4d\xf6\x5f\xb8\xf4\x6a\x69\xde\xdc\x05\x3c\x24\xde\x33\x55\xc1\xb1\xc0\x49\x40\x90\xb0\x79\xed\x56\x5f\xd7\xae\x8f\x5b\x03\xdd\xbd\xfb\xbe\xb7\x54\xdd\x84\x98\x65\x93\xa4\x35\x8e\x38\xa9\xe4\xd1\x1d\x42\x60\x9e\x51\x97\x70\x47\xbf\xd8\xda\x3d\xc5\x78\x9b\x3e\xc7\x97\x4a\xda\xc4\xb6\x03\x86\xdf\x17\x4e\x6d\x7c\x01\xe0\xb9\xec\x7a\x63\xce\x68\x37\x11\x0b\x81\x21\xaa\x1a\xea\xf8\x8d\xf9\xea\xc5\xcd\x2b\xcd\x07\x51\xad\x9d\x2d\x73\x46\x48\x9d\x60\xe8\x7e\xc3\xe2\x09\x5a\x0e\x77\x1c\xae\xee\x9a\x7c\x9e\x39\xf6\xd8\xf4\x01\x3a\x88\x78\x42\x5d\x25\x9e\xa2\xfc\x27\xa5\xae\x42\xcb\x7b\x1a\xbf\xa8\x5d\xbb\x21\xa0\x92\xa2\xda\xdb\x06\x33\xe5\x50\x24\xe1\x37\x95\x50\x7c\xb3\x23\x9d\xdd\x39\xe9\xec\x2e\x17\x3e\x28\xa0\xd4\x41\x10\xb9\x7e\x9a\x35\x8e\x6b\xc6\x77\x55\x9c\x62\xbe\x93\x67\x36\xdc\x34\xa7\x7d\xd2\x63\x75\x6e\xa9\x1c\x7f\x22\xcf\x7f\x9e\x6f\x13\x87\x06\xd4\x17\x62\x8f\xdf\xda\xa4\xbb\xfa\x11\x97\x7f\xc1\x24\x6d\x5c\xbe\x65\xb4\x7e\xc5\x01\x81\xf6\xdc\x46\x5e\xc2\x03\xe8\xd6\xab\x97\x7c\xcc\xb8\xbf\x71\x7c\x8a\x6f\xb2\xde\xfa\xd5\xe6\xed\x0b\xdd\xd9\xc9\x99\xa5\x7a\xb4\x13\x92\xd6\x56\xbd\xad\xbe\x24\x76\xb0\x15\x32\xea\x11\x2b\xf9\x35\xcf\x75\x2b\xfd\xc8\x7e\xe4\xb5\x20\x94\x8a\x63\x95\x79\x98\x4f\x69\xcb\x4c\xee\xb4\x51\x9a\xc0\x9f\xca\x00\xf1\x8a\xe5\xfc\x10\xe3\x01\x1f\x79\xc2\x8b\xf7\x46\x5b\x6c\x55\x7d\xea\x05\x12\x1f\x55\x88\x0f\x18\x73\x65\x34\xe8\x61\x41\x71\x92\x65\x0c\xd3\x0c\x64\x03\x0a\xb6\x55\xc9\x3f\x2d\x4d\x6e\xc1\x2d\x58\x18\x57\x05\x25\xa5\xe0\x72\x95\x48\xe9\x31\x03\x9d\x63\x72\x6d\x3b\x96\xf0\x7b\xcc\x48\xad\x06\x6b\xe6\x95\x3d\xc6\xae\x8f\x97\x41\xb2\x52\x1d\xd1\x76\xba\xce\xb1\x83\x5f\xfd\xb4\xad\x9e\xa8\x4d\xa9\x43\xc0\xf5\xdb\x05\xf9\xcc\xa3\x63\xe5\xaf\x95\x7b\xd6\xe4\xb7\x6e\x79\x43\xa3\xbb\x72\x92\x59\xc0\x6d\xda\x8b\x73\xee\xd1\x8d\x34\x90\x33\xc8\x55\xe0\x9f\xa8\x69\x7a\x41\x68\x68\x48\xc4\xa1\xc2\x49\x86\x8d\x46\x68\x53\xd7\x0f\xa8\x7e\x93\x87\x73\x1b\x63\xd3\x25\x8a\x85\x1e\x16\x1c\x90\x78\xca\x85\x82\xd6\x09\xf3\xe8\xe4\x20\x1c\xbd\xc3\x98\x23\x44\x8e\x23\x81\x53\xd7\x4c\x4f\x11\x0b\x7c\x4b\xf8\xa1\xd7\xb4\xb5\x8e\x13\xb9\x1e\x49\x3e\xd7\x97\x35\x7b\x66\x78\xe8\x10\xe2\x45\x3e\x5d\x35\xd0\x66\x54\x13\x44\x58\xa7\xe5\x9f\xbe\x37\xa3\xf5\xa2\x79\xe3\x7c\x6a\x33\xef\xdc\x6c\xe4\x55\x93\xfe\xd1\xab\xf3\x47\x90\xfb\xfc\xe6\x33\xcc\x50\xce\x90\xa6\x11\x78\xd9\x22\x43\x6a\x8d\x21\x4f\xce\xae\x92\x2a\xf2\x63\xda\x54\x28\x0a\x52\xe3\x4d\x26\x94\x34\xaf\xa0\x4e\x15\xb7\x04\xa6\x22\xdb\x62\x68\x67\x51\x90\x46\x95\x35\xd6\x93\x7d\x82\xe9\x82\x51\x5d\xae\x27\xff\x67\xdb\x09\x74\xee\xf9\x8a\x61\xd9\x5b\x13\x75\x5d\xce\x4c\x92\x5b\xf1\xbe\x36\x0e\xc2\x41\x58\x47\x88\xc1\x51\x19\x15\x2a\xc1\x60\xab\xd5\x8d\x7e\xed\x0c\x13\xba\x11\x08\x18\x4f\xfc\x43\x83\x25\x5f\x71\x90\xd5\x90\xeb\xec\x3e\x15\xf7\xbb\x92\x0c\x1c\xe3\xc3\xfc\x80\x2c\xc7\xfd\xc2\x7c\xea\xda\x9d\xa6\xef\xb0\x17\x22\x65\x2a\x90\x5b\xff\xfc\xc8\x94\xb8\x9b\xfc\x84\x25\xed\x7c\xee\xb1\x04\x4c\x1b\x92\xf7\xbc\xec\x59\x25\x6c\xa2\x0f\x40\x73\x53\xef\xd5\xc6\xf8\x36\x16\xea\x89\x43\xa3\x55\x61\xd0\xa4\x75\x40\x65\x15\x1a\x53\x84\x29\x27\x6c\xf1\xe4\x54\xe7\xf8\x66\xa3\xd8\x89\x64\xa5\x17\x1f\xbc\xcb\x60\xe1\xd3\x7e\xee\x5c\x14\x7f\x5a\x11\xdc\x7d\x06\x4a\xdb\xff\x73\x48\x65\x27\x1e\xec\x71\x8b\xfa\x7d\xee\xac\x21\x93\xbb\x5f\x0b\x31\x2f\x37\xd2\x12\x6f\x84\x36\x8a\xc7\x5e\x8d\xc1\x43\x94\xdf\xf6\x65\xc3\xf8\x34\xa0\x4d\x82\xc3\x39\x72\xf3\x1a\x2f\xdd\x38\xd3\x7c\xd0\x30\xd3\x6b\x05\x77\x14\x3e\xba\x54\xf9\xd8\x62\xda\xf2\x9f\x2f\xef\x9b\xa2\x75\xd3\xb8\xd1\xf2\x17\xb6\x5f\x7c\x96\x91\xe1\x38\xcd\x26\xb0\x89\x2f\xb3\xe9\xc9\xbb\x94\x9a\x5f\x88\xf5\x6f\x39\x4a\x6b\x46\x18\xf2\x02\x17\x98\xb4\xb9\x9b\xde\xd3\x05\x9d\x30\x82\x59\x41\xfc\xc9\x83\xd9\xc1\x1b\x0b\xfb\x09\x87\x42\x17\x7e\x11\xb7\x19\x9f\x02\xf9\xbc\xb5\x2f\x86\x53\x27\xa5\x92\x0f\x2d\x6c\xcd\xe2\xcd\x8f\xf0\x15\xf5\xaa\x10\x31\x8b\xba\xad\x90\xec\x3c\x0f\x1f\x57\x23\xd6\x1c\xd4\xb7\x2c\xff\xb9\xd7\x98\x1b\x12\x3f\xad\xa4\x5e\x1c\x9f\xce\x42\x7a\xe7\x26\x07\xf9\x85\x37\x34\x1e\x15\x69\x02\x74\x7c\xb8\x50\x99\xa6\x54\x39\x34\x5d\x2d\x6d\xac\xef\xac\x19\x27\x4f\xb4\x0b\xe8\x3f\xe4\xc3\x7a\xea\xa3\x86\xa8\x77\x77\x67\x29\xc4\xc8\x15\xc1\x70\xfc\xfd\x6a\x68\x1e\xf4\x27\x7f\x32\xfb\xc2\xf4\x25\xa3\x5a\x8b\xbf\xd7\xe2\xbb\x35\xe1\x18\xc4\x35\x34\x73\xe1\xf4\x71\x19\x9e\x00\xb6\x11\xa4\xa6\xff\xeb\x68\xaf\x06\x4a\x0d\xd0\xe9\xb9\x6d\xba\x3a\xf7\xc2\xb3\x1b\x79\x16\x2e\x61\xcf\x46\x9e\x25\x42\xee\xc0\x03\x5a\x8b\x46\xbd\x90\x2f\x6b\x93\xff\xe2\x4d\xd6\x30\xaf\xf2\x29\x40\xcd\x75\xd2\x9d\x42\xf2\x88\xd4\x24\x02\xfb\x59\x66\x6c\x6a\xa9\x17\xda\x7c\xb8\xb7\xf1\x21\x01\x03\xa6\x5e\x80\xbc\xb0\xf5\x3c\x5f\xbd\xaf\x5d\x3b\x43\x9a\x3d\x63\x52\x2f\xf5\x1a\x40\x19\x06\x62\x55\x7c\x76\xfb\xf6\xf8\x49\xda\x40\x7a\xb0\x86\x88\x4e\xbb\xd8\x7d\x55\x96\x31\xeb\x12\x8b\xd1\x80\xd6\xc2\x13\xe1\xa9\x0e\x18\xf0\x24\x50\x64\x61\x7c\x7a\x93\x1b\xb7\x4f\x69\x66\xc0\xf0\xf7\x43\x8b\x8c\xbd\xab\x43\xfb\x15\x22\xb9\xb8\xfa\x54\x85\xc2\xa7\x91\x76\x76\x5e\xde\x91\xbd\x12\x0b\x7b\x3a\xe6\x09\x47\xe5\xab\x37\x9a\x95\xbe\xa4\x7d\xf2\x4a\xdf\x11\x3a\x5e\x21\x8d\x40\xb4\x29\x37\xe2\x99\x33\xb5\xe8\x8a\x88\xf9\x9d\xe2\x97\x0c\x4b\x04\x40\xf6\xa7\xfc\x87\x8f\x1f\x17\xd5\x12\xe5\xa2\x5e\xb9\x9f\xcf\x6d\xc1\x3f\xa6\x5b\xae\x7c\x74\x50\xd5\x4a\x1d\xf3\x3a\x93\x16\xa2\xf0\x5f\x5b\x53\xed\xd2\x00\xf9\x18\x35\xb0\x3e\xb6\x2c\x4c\x18\x38\x3b\xd3\x6f\x21\x8f\x8f\x5a\xb2\xef\x7e\x72\xa8\x51\x5f\x22\xe0\x04\x02\xc1\x9d\x7b\x49\x2e\xd0\x78\xb0\xde\xb9\xda\x3a\xac\xf0\xc6\x8b\x1a\x1f\x8e\x38\x15\x9d\x70\x53\x5c\xa0\x49\x4d\x85\x36\xa3\x51\xdd\x96\x15\x42\xe7\xf6\x71\x22\x76\xf4\x65\xfc\x55\xd7\xaf\x35\xfb\xea\x24\x09\xf2\x5d\xcc\xdf\x7a\x4f\xd7\x74\x4e\xc0\x7a\x2b\xff\x9d\xbd\xc2\x1d\x97\xb2\x2a\xb7\x7d\xbf\xf8\xd8\x69\xe2\x20\xb2\x70\x10\x7a\x86\xd5\xeb\x0d\x89\x68\xea\x10\x2f\x0b\x30\xc9\x2f\x18\x61\x9c\x3b\x4a\x53\x59\xf0\x7c\x30\xd2\xc8\xcd\xc8\x21\xb5\x0e\xc9\x73\x8e\xff\xed\xf8\x04\x4d\x78\xc8\xc1\x41\x0a\xc1\x78\xf3\x7e\xd3\xbd\xa6\x1f\x31\x29\xf6\xf7\xb3\xab\xb2\x80\x4a\x1a\x85\x20\xb3\x5e\x28\xec\x15\x48\x12\x57\xe4\xc8\x72\xfc\xed\x23\xe6\x58\xb3\x4e\x3c\x9c\x2e\x93\x3e\xbf\x43\x73\x4e\x25\x0e\x67\xbd\x9d\xfd\xc8\x68\x8d\x6b\xce\x2b\x4b\x3c\x3f\xfb\x28\xa4\x35\x1d\x52\x8e\xdd\xc5\xbb\x36\x98\x54\xc3\xbe\x28\x08\x1d\xa1\x1b\x14\xff\xda\x4f\xdb\xbf\x0a\x4a\xb7\x95\xd7\xbf\xac\xf9\xab\xd9\x42\x61\x2b\xb7\x7d\x5f\x5a\x4e\x0d\x91\xd6\x43\x77\xc7\x5e\xcd\x99\x58\x4a\x6e\x9c\x79\xbd\x8a\x42\xa8\x56\xc3\x96\xbe\x7d\x2d\x3f\x94\x8d\x25\x55\xa1\x20\x7b\xc2\x15\xeb\x11\xcd\x3a\xb1\x46\x98\xcb\x17\xd2\x7f\x76\x4c\xe5\x73\x4f\x73\x7f\x1d\xfb\x3e\xcf\x69\xab\xa2\xd0\xc6\xba\x70\x4a\xf5\x4e\xb1\x67\x22\x75\x9b\xaf\x2c\x0f\x54\xb2\x41\xa4\x7b\x41\xb7\xfc\x29\xf7\x2d\x55\xad\x45\x13\xb3\x40\x74\xc3\xf9\x7f\x31\x78\x86\x15\x6c\xd1\x74\xb7\xf5\xe0\x7a\x93\x7d\x49\xa3\x8a\x83\x5d\x04\xa2\xd6\x5c\x6e\xe9\xbc\x37\x5b\xb5\x0f\x9c\x28\x6d\xc9\xde\x78\x5c\xd8\xab\x35\xa9\x90\x29\xfe\xf3\x7c\x23\xf8\x72\x88\xce\x89\xfb\xd8\x5f\x1b\x00\xbd\x10\x63\xaf\x84\xa4\x00\x73\xe1\xcd\xd7\x8d\x1e\x26\x69\x40\xf8\xa4\xa2\xad\xa6\xf1\xf4\x94\x00\x9f\xa6\x9f\x98\x14\x9e\xb0\x23\xcb\x9f\xe6\x8f\x93\x59\x2e\x88\x9c\x10\x89\x79\x40\x61\xcc\x3a\x7d\x54\x50\x03\x1e\x16\x7f\x6e\xc5\xcf\xae\x30\xef\x11\x28\x3a\x71\x02\x45\x73\x8d\x89\xe1\x4c\x52\x97\xb8\x64\x03\x2f\x8b\x85\xa1\x83\x91\xa8\x87\xda\x9f\x17\x33\xe9\xa4\x56\x85\xa9\x74\xda\x10\x2d\x1c\x6b\x5e\x74\x0f\x55\x51\x7a\xd1\x3f\x53\x19\x9b\xdd\x6e\x72\xcb\xb8\xc1\x35\xba\x8b\x66\x88\x9d\x52\x39\xfe\xda\xa1\x09\xfa\x29\xa6\xac\xca\xf9\x13\xc3\xb9\xf7\x8e\x9a\x5d\x35\x51\xdb\xb4\xf8\x14\x5b\x6b\x40\x5a\xa5\xc8\x2e\x59\x61\xbc\x02\x44\x52\xcd\xef\xda\xdb\xfa\x6d\x0a\xb8\x3d\x71\x6e\x9b\xa6\x26\xe0\x22\xd6\x88\xa0\x97\xda\x77\x71\x5b\x36\xdc\x37\x49\x40\x19\x9c\xa1\xc1\x4d\x13\xb4\xb0\xe1\x59\x76\x49\xd0\xcb\x0a\x3f\xba\x44\xbd\x20\x9a\x7c\x3a\x75\x3b\xfa\xb7\xa5\x99\x59\x76\xd7\x7d\x52\xc9\xde\x09\x89\x4b\x19\x96\x91\x22\x17\x9a\x3d\x94\x2b\xd5\x6e\x72\x97\x76\xa7\x3f\xa6\x09\xda\xad\xb9\x73\xb7\xa6\xe5\xb1\x15\x9e\xa7\xde\xd4\xed\x77\xb6\x60\xc1\x5c\x5e\x8d\xe4\xcf\xd1\x96\x7e\x0c\x73\x79\xdb\x97\xdf\x30\xda\x63\x30\x09\x98\x5b\x2a\xc7\x1f\xbf\xd0\x40\xf1\x63\xea\x3b\x92\xf4\x98\x0f\x1e\x31\xac\xc9\x48\x35\x75\x2c\xcf\xbf\xbc\xcd\x64\x68\x70\xb1\x72\x98\x6a\x54\x1e\xd6\xf4\x4a\x3d\x47\xae\x74\xf3\x17\xbf\x24\x70\x9c\x38\xb0\x40\x41\x26\xf9\xcb\x13\x9f\x30\xb2\x0f\x46\x91\xdc\xaf\xe6\x17\x1e\x69\xd3\x82\x7b\xb5\xea\x60\x6e\x45\x52\x1e\x2e\x6c\xed\x98\x64\xdc\xee\x10\x33\x82\x38\x29\xb3\x70\xfe\xb3\x86\xda\x2c\x09\x18\xf6\x11\x91\x8e\xf7\x3d\x77\x9a\x8e\xeb\x81\x15\x05\x12\x23\xf7\xc3\x47\x4c\x05\x43\xd2\x24\x0e\xae\x63\xc9\x98\xd7\x8c\x12\x2b\xa8\x5e\x87\x29\x4c\xcf\x4a\x75\x43\x18\xa9\xd5\x04\x0c\x73\xd5\xd2\x56\xfc\xa0\x10\xad\xca\xdd\x2c\x58\xd0\x4b\x70\x0d\x7b\xc0\xd1\x5a\xfc\xe4\x24\x9d\x28\xac\x26\xb8\x70\xdb\x66\xdc\xcf\x1f\xe0\xa5\xd4\xf3\x3a\x64\x39\x71\xfe\x49\xfc\x0f\xc1\x1a\xc1\x25\xb0\x83\x29\xdc\x3f\x4a\x78\xe3\xd8\x24\xb4\x6c\xc4\xfd\x22\xbe\x76\x50\x85\xe6\x8a\xc3\xe9\xbd\xb0\x2d\xf2\x26\x6b\x2b\x59\xb0\xbc\x80\x11\x9a\xf8\x05\x5d\x3d\x66\x52\x14\x62\xc1\x1c\x3e\x5d\x78\xe7\xe8\x18\x71\xe0\xea\x84\x63\xf5\x4a\xe5\x38\x5c\x6e\x44\xa6\x20\x88\xe4\x8a\x24\xbf\xfe\x78\x0a\xe8\xad\x47\x84\x8b\xef\x16\x2e\xde\x6f\xe4\xf9\x01\x1f\xb3\x30\xdd\x75\x6f\xda\x3d\x59\x09\xa4\xb7\x98\xca\xff\xf7\x7e\xcd\x25\x20\x79\x90\xb9\x87\x54\x44\xc0\x3c\x95\x96\x87\x73\x33\xf6\x64\xbf\x8a\x43\x2c\xec\x29\xf2\x50\xe1\x4b\x86\x9b\xe9\xcd\x11\x02\x32\x03\x3f\xf4\x37\x1e\xd3\xe0\xa6\xd8\xa1\x62\x66\x14\x2f\x78\x43\x3d\xbf\xb0\x65\x72\x52\xb4\xe3\x09\xda\x3f\x63\x78\x88\x36\x83\xa4\xde\x8d\xe9\xb3\xd9\x6f\x3c\x48\x59\x23\x15\x13\x88\x9f\xea\x50\x83\x9a\xd4\xff\x3b\xf9\x12\x17\xd8\xa6\x9d\x3c\x14\xea\xbc\x5f\x11\x53\xaa\x89\xe3\x0d\x69\x19\x1a\x4a\x7b\xde\xfa\x28\xf3\x70\xe3\x2a\x81\xaa\x9c\xff\xf7\x8f\x18\x5b\xfd\x2c\x76\x52\xcc\xed\xbe\xf9\xf0\x38\x79\x12\xa5\x1e\x24\x40\x68\xbf\x70\x1f\x3c\xc0\xd2\x95\x9e\xf4\x9c\xd4\xd6\x9e\x5f\x5b\x24\xc5\x04\x16\x24\x05\x6c\x61\xc9\x4e\xdd\x47\xd5\xf7\x81\x60\x15\xbf\x72\xcc\xf8\x7c\xd0\x4d\x7a\xd8\x11\x97\xcf\xdf\x38\x2e\xcd\x42\xac\x86\x19\xbf\x39\xc3\xf9\x4f\x1a\xde\x47\xc0\x0c\x11\xf7\x3d\x7f\xab\x2d\xa0\x78\x7c\x27\xf6\xdc\x2c\xd5\x0a\xd7\x69\xa9\x1c\x9f\x75\x28\xdd\x0a\xd5\x18\xca\x4a\x07\xdf\xdb\x26\xca\x22\x53\x8c\xbc\x30\xff\x98\xba\xf2\x49\xa1\xc8\xd5\x0c\x3f\x21\xcc\x1a\x68\xad\x56\x2a\xc7\x85\x5b\x78\x45\x9b\xa4\x2b\x4f\x6c\x48\xa7\x2f\x35\xfd\xf3\x9a\xd8\xa1\x3e\x1f\x1e\x3d\xbd\x88\x5f\x27\x64\x59\xd8\x07\x2e\x61\xf2\x56\xd6\xbc\x2b\x9f\x5d\x6f\x77\xa9\x1c\x5f\xbc\x5c\x3d\xba\x06\x65\x98\xcb\x09\xe4\xcf\xb9\xfe\x6c\xad\x93\x86\xf1\xe9\x09\x8c\x9b\x46\x1d\x33\x21\xc0\x21\xd4\x2d\x6a\xc8\xb9\xbf\x5b\x05\x38\x5a\xa7\x30\x84\xcd\x7f\xef\x3d\x13\x6d\x12\x06\x73\x58\x05\xfa\x8c\x8b\x05\x10\xe6\x52\xcd\x1a\x04\x3e\xd1\x87\x16\xab\x3b\x23\x55\x38\x21\xbb\x7d\x71\xdd\x18\xad\x73\xb0\x23\xbe\xb4\x18\x69\x58\x54\x52\xa5\xc7\x94\xfb\x7d\x75\xac\x16\x1b\x43\xc4\xf7\x98\xf7\x2e\xcd\xb6\x12\x3d\x92\x29\xf4\x87\xdd\x53\x5b\xe2\x89\x15\x0a\x95\x45\xfe\x35\x2f\x58\xce\x8f\x52\xf2\x9f\xbc\x2a\x91\xd8\xfd\x62\x97\xe6\xa5\xd7\xf0\x30\x90\x36\xd7\xbe\x9e\x5d\xb6\x83\x36\xd8\x10\x10\x12\x0f\xaa\x74\x27\x8c\xb2\x20\xdd\xfd\xe0\x80\x0e\xb8\x40\x2e\x88\xbf\x0d\x17\x0e\x3e\x69\x6c\x25\x28\x03\xe4\xbf\x6f\x27\xcd\x3e\x20\x6e\x73\xcf\x1c\x4d\xbb\xf7\x1a\xd5\x98\x68\xc5\xd1\x47\xb3\x9f\x82\xd6\xe6\xf4\xf5\xc1\x83\x1e\x77\x77\x9b\xbe\x4a\xe0\xe6\x83\x7c\xbb\x58\xdd\x69\xb8\xef\x2d\xe4\xfd\x7c\x9b\x6d\x96\xe4\xcc\x4b\x15\xac\x72\xff\xac\x71\x52\x2c\xea\x38\xdc\x41\xe7\xb6\x50\xb3\x2e\xe2\xfe\x96\xc9\x8f\x3a\xfd\xbe\xf1\xd9\x3a\x90\x88\x51\xeb\x45\x9a\x40\x27\xfc\x07\x3e\x46\xba\x6c\x8b\xfe\x63\xbc\x2a\x76\x10\xf8\x18\xec\xc9\xc6\x1e\x49\x53\xcb\x4c\xb0\xd7\x1d\xca\x9e\x43\xda\xef\xa5\x24\xe9\x6f\xaf\xd5\x6f\x64\x55\x04\xe8\xcd\x8a\x13\xda\x0f\x25\xea\x69\x23\xc6\xe9\x63\xa9\xbe\x48\x6c\x8c\xd7\x4e\x56\x3b\xab\x12\x8b\x5a\x66\x34\xb9\xf3\xf7\xeb\xda\x4e\x9e\x08\x7b\x85\x3f\x1f\x3d\x55\xd4\xff\xfd\xa5\x72\xfc\x81\x7b\x46\x8a\xa7\x26\x6a\x95\x8d\xd7\x6b\x8e\x98\x98\x0c\xc1\x3a\x36\xbe\xa5\x2f\xfb\xf8\x1b\x0c\xbb\xbc\x3b\x2f\x95\xe3\xbe\xc9\x0a\xaa\xb5\x70\x41\xcb\x15\x5e\x3d\x5f\xdb\xf2\xd6\x19\xd6\x0a\xd2\x82\xaf\x29\xbf\xfb\x34\x08\xeb\xc8\xe5\x6a\x5c\x4f\x65\xcf\x4e\xd7\x3c\x39\x88\xbd\x7b\x69\x8a\xab\x69\xd0\x86\x3c\x00\xf3\xe6\x0a\x76\x43\x88\x42\x9c\x05\xcd\x2e\xe3\x21\x8a\xb8\x6e\xe4\x11\x31\x7f\x2b\x3c\xf5\xc2\x34\x4d\x01\xa1\x6e\xc3\xf1\x33\xab\xf8\x1f\xdf\xdd\x82\x48\xee\xf7\x84\x1d\x65\x79\x87\x3a\x44\x01\x0a\x09\x03\xe0\x45\x39\x76\x0f\x9c\xd9\xdf\xba\x2d\xc5\x55\x10\x4f\x06\xf5\xcf\xb9\xfb\x0d\xed\x02\x1f\xa7\x13\xba\xf5\xef\x67\x53\x61\xc3\xc3\xfd\xe2\xfe\x5f\x35\x56\x85\xb9\x1b\x64\x95\xba\x55\xc8\x67\x84\x0c\x81\x39\x5d\x7c\xea\x55\x9a\x3f\x44\xe4\x55\x21\xec\x7c\xe8\x29\x6d\x0e\xda\x8f\xb1\x2f\x26\x96\xdf\x19\xa5\x32\x4b\xf2\xad\xfe\x1e\xab\x41\x79\xbf\xdd\xba\xf9\xc9\xdf\x3a\x94\xf1\x90\x44\x55\x1c\x48\x75\xfa\xbf\x8d\x36\x34\x01\x08\x66\x0c\x89\xfb\x00\xaf\xe8\x82\x07\xa6\x6a\xf5\x7e\x88\x88\xd3\xb2\x46\x5d\x76\xb7\x2a\x23\x02\x14\x55\x89\x28\x2f\xd6\xdf\x65\x84\x5a\x9b\x61\x2c\x82\x49\xee\x6d\x43\x72\x5a\x93\xdf\x94\x8b\xe2\x1b\xfb\x24\x68\xcf\x75\xa9\x30\x35\xdc\xfe\x8c\xe9\xf1\x50\xe3\x30\x58\x41\x32\xf8\x2d\x07\xdb\x95\x56\x21\xcb\x6e\x85\xfc\x9e\xab\x99\xf4\xf9\xb5\x7a\x69\x60\x00\xca\x95\xe9\x69\x57\xe8\xb4\x2e\x22\x72\x6d\x33\x79\x08\xbf\xcc\x69\x12\x7d\x99\xff\xc9\x66\x5a\x10\x06\x2e\x8c\xa2\x3f\xbb\x4b\x95\xd6\x21\x0a\x07\x91\xa7\x5c\x28\xe3\xff\xab\x04\xa0\x1b\xba\xb5\xde\xe9\x3d\xda\x91\xb4\xb9\x5f\x42\x72\x26\x5e\xbe\x63\x8c\x0e\xa6\x73\x41\xa9\x2a\x3f\x41\xe4\x7a\x86\xb9\x0d\x79\xa9\x1c\xdb\xa7\x66\x6b\x3c\xea\xfb\x34\x48\x17\xc0\xf9\xef\x6e\x31\x81\x00\x21\x1c\x6d\x51\x28\x7f\xf1\x16\xfe\xed\x3e\x16\xd8\x95\x41\xad\xf0\xf8\x29\xd3\x2d\x27\x34\x30\xc7\xe3\x29\x51\x81\xfa\x59\xea\xf5\x5d\x23\xd3\x18\xd8\xdd\x09\xcb\xea\xef\xec\x9a\x20\xb2\xaf\x36\x0a\x83\x56\x66\xde\x51\x8d\xf6\x4d\x23\x3f\x5d\x0f\xbf\x6e\xf4\xef\xd8\x4b\x5a\x5c\x29\xf0\xf6\xbb\x27\x84\xe2\x04\xd0\x93\x41\x33\x7a\x6a\x47\xbf\x01\x05\x63\xd4\x67\x44\x64\xe1\x13\x61\xfc\x6e\xdb\xaf\xb9\x4a\x12\x78\x86\x6d\x8b\x5b\x05\x4e\x45\x07\xf5\xb9\xf6\x76\x0d\x40\x4c\xdc\x4a\xc4\x02\xcc\x7d\x9c\x86\xf3\x2f\xdc\x3d\xdd\x8c\x35\x4c\xe8\x55\xea\x72\x6d\xaf\xdf\xd4\x8a\x83\xaf\x7b\x64\x08\x0b\x33\xce\xef\x6d\x35\xe6\x48\x98\x59\xb8\x8a\x03\x41\xbf\xce\x7e\xfc\xf5\x86\x54\x1d\xf6\x9a\x84\x51\xa8\x9d\xd3\x49\x76\x53\x0b\xd0\x7c\x40\xc0\xa7\x43\x4f\xce\xd7\x50\x7b\x8c\xf8\x3e\x3c\xc4\xc2\xed\x0f\x0b\x3f\x0c\x46\x70\x0d\x1e\xc8\xa7\x77\x89\xbb\x87\x65\x06\x8e\x4f\x7e\xc4\xfc\x12\x61\xc4\x80\x3f\xc6\xe5\xfe\xce\xce\xa7\xaf\x1f\x07\x7e\xa9\x1c\x3f\x70\x5c\xf0\xf8\x9a\x98\x0d\x02\xe7\x33\x76\xb6\x66\x6f\x7d\x95\x04\x21\x23\x56\x28\x7a\xbd\x24\xe0\xfc\xef\x2c\x0d\x61\x6e\x81\x7b\x72\xec\x1d\xd7\x87\x57\x16\x48\x51\x8a\x12\xe8\xee\xbb\x84\xa0\x1e\xc3\x69\xbf\xba\xe6\xa9\xd3\x75\x78\x76\x52\xf6\x75\x8d\x6d\x15\x7e\x71\x10\x01\xaa\x56\x39\xb6\x2e\x31\xd4\x2b\x00\xa2\xab\xcc\xee\x86\x1e\x4c\x3b\x43\x97\x98\x5a\xa6\xf1\xbc\xa5\xfc\x0a\x75\x75\x76\x66\xac\x3f\xde\xd0\x7c\x6b\xd3\xfe\x9e\xdb\x9b\x3d\x34\x59\x1f\xc6\x31\xe4\x85\x1a\xcd\x3e\x37\x34\x6b\xac\x46\x31\x06\xb4\x70\xf2\xf2\x9e\xda\xa8\xe3\x8b\x5d\xe2\x01\x9d\x2d\x7f\xf6\x41\x43\x55\xca\x97\x3d\x5a\x71\xda\x64\xcd\xd9\x3a\x12\x96\xae\x79\x7a\x97\xca\x49\xe7\x5a\x14\x9c\x5f\xcf\xb8\xd3\x9c\xdb\x82\xd5\x17\x9f\x9d\x0e\xdc\x33\x49\x43\x4c\xd4\xa8\xa7\x4d\xf5\x86\x73\x3f\x79\x38\x0d\x6c\x28\x0a\xb5\x4a\x32\x72\x34\x3c\x29\x4d\x4e\x44\xfb\x9b\x69\x0f\x64\x81\x16\x44\x9a\xf0\x73\xdf\xb9\x3b\x5b\x3a\x90\xb0\x43\xe8\xcd\xff\xc3\xd8\x71\x7a\x24\x0a\xa9\x45\x81\xa8\x71\xe6\x26\xe1\x8c\x87\xc2\x88\xc9\x12\x21\xff\xfb\x1e\x35\x60\xab\x45\x8e\x23\x04\x97\xcb\xc3\xb9\xa7\xb4\x90\x43\x19\x72\x84\x26\x43\xee\x76\x43\x80\xc4\x4a\xda\x71\x90\xd4\x1b\x58\x69\xca\xfe\x55\x18\x11\x91\xe8\xf6\x3e\x95\x85\x39\x83\x6b\xb4\xc1\xee\x27\x4d\x92\x7a\x52\xe5\xab\x77\x9f\xc8\xb0\x0f\x36\x87\xa7\x29\x20\x3f\xc3\xb0\x8a\x39\xf0\xcc\x44\x8d\x4f\x03\xe0\x9c\xb4\x35\x7f\xba\x4d\x73\x78\x1e\xb0\x98\x0c\x45\xb9\xe7\x36\x67\xb3\x6d\xd7\x82\xb9\x9d\x9d\xdc\x15\x33\xde\xb9\x6d\xb2\xc6\x21\xd6\x75\x79\xe1\xbb\x4c\x7b\x42\x1d\x88\x0b\x3a\x16\x40\xec\x2e\xec\x39\x72\xa6\x11\x93\x42\x46\x7d\xea\x10\x39\x2f\xc9\x7d\x7d\xba\x81\x4c\x47\xb0\x4b\xe6\xd5\xe5\x67\x9e\x35\x4a\xc1\x9e\x6e\x71\x28\x59\x67\xcb\xa0\xdb\x15\xdb\x8f\x7f\xda\xa7\xf1\xfa\x89\x53\xb5\x10\xe8\x87\x17\xd7\x1b\x86\x8c\x81\x1b\xd5\xeb\x8e\x12\x7a\x3b\xb2\x21\xdd\x95\x0b\x91\x63\x11\x09\xae\x1c\x30\x81\xb0\x80\x8f\x17\xc5\xd9\x38\xc3\xa8\x0a\x31\x54\x21\x88\x9b\x6e\xf2\xe0\xb2\x44\x3d\x6c\xcb\x46\x3e\x98\x03\x01\xfe\xbf\xd3\x18\x99\xd3\x20\xc4\x8c\x2b\x9e\x14\xc9\xab\xc6\x64\x04\xb3\x00\xf1\x15\x42\xc7\x52\x73\xa4\xd8\x50\x1b\xd5\xdc\x7b\x07\x53\x14\x4a\x77\x6f\xf2\x0c\x3b\xd4\x7b\xa9\x53\xc4\x67\xb6\x2f\x1a\x1b\x96\x90\xb8\xdc\xe3\x03\xf2\xe7\xfe\x3b\x5a\x64\x3e\x90\xca\xf6\xc5\x9b\xae\x32\xa0\xf8\x38\xc0\x4c\xa5\x8d\xef\xae\x54\x76\xa6\x60\xa1\x7b\xca\x64\x8d\xad\xce\xdc\x20\x64\x94\x37\x7c\x7f\xeb\x36\xf6\xa8\x04\x7a\x75\x3e\x0a\x79\xb5\x53\xcb\x32\xc8\x07\xf6\x55\x79\x38\xff\x29\x63\x18\x65\x61\x17\x87\xd2\x9e\x2e\xfe\x4a\xcd\x84\xe8\x40\xe9\x1f\xb8\x62\x9e\xfa\x8d\x53\x95\x74\x0a\xd6\x46\x24\xb9\xbf\xda\x5a\x58\xb4\xb1\x2f\xc0\x46\x37\xed\xd5\x38\xd8\x9c\xb9\x0c\xd3\xf9\xe2\xd4\x19\xca\x89\x23\x6a\xa8\x42\x6c\xe3\x51\x0d\xe2\xe8\x44\x50\xed\x6c\x59\x91\x4a\xb3\x82\xe4\x55\xee\xfe\xf9\xe6\x3d\x76\x71\x20\x36\xa8\xef\x9e\x6a\x1e\xb6\x1a\x43\x44\xce\xcb\x56\xed\xcc\xa6\x6d\xe4\x38\xc4\xc0\xbd\xe5\xff\x6d\x5a\x36\x3d\x0a\xfe\x10\x09\x15\x13\x73\xd5\x01\x93\x7a\xdd\xc4\x8e\xf4\x74\xc8\x3d\x7d\xc8\x54\x09\x4b\x2e\x24\x9f\xa0\x14\x7e\x3d\x94\xb6\xfc\xbe\x46\xb4\x88\x7f\x31\x5d\xd5\x43\x15\xca\x67\x27\xff\x79\xf9\x54\x6d\x19\x53\xc5\x3e\xac\xab\x2d\x5c\x02\x51\x44\x6e\x55\xf6\xbe\x36\x83\x07\x2f\x01\x1e\x81\xbf\x6a\x78\x2a\x51\x56\x21\x82\x52\x7b\xfb\x32\x43\xe5\x10\xd4\x0c\x06\x79\x44\x1d\xfb\xa8\xa9\x24\x51\x95\xbb\xb1\x3d\xaf\x0a\xad\x2c\x62\x85\x94\x71\x39\xcf\xe1\x5c\xe1\x2e\x4d\x56\x9f\x08\x00\x6f\xf2\xd7\x7f\x7e\xa0\x2d\x2b\x51\xa5\xf6\xf5\x17\x6b\x1f\x9a\xb8\x2e\xf1\x44\x21\xd7\xf3\xa0\x22\xc8\xf6\x25\x67\xbc\x81\x23\xdd\x6a\xe5\xdc\x99\x8a\x17\x82\x1d\xe9\xd5\xfc\xf6\x5c\xb3\xb6\x0e\x22\x47\xde\xb6\x78\xdb\x71\x8d\xae\xe6\x70\x01\x80\x93\x57\x9f\x6d\x04\x80\x30\x24\x1e\x12\x72\xa3\xe2\x85\x7c\x80\xa5\xde\x31\x49\x66\xc9\x6f\xd3\x1c\x35\x06\x23\x5d\xb9\x6c\xd7\x8b\xd9\xd1\x54\x3f\x77\xa0\x8e\x7f\xb7\x3f\x1b\xd9\x84\x0b\xb1\xd2\xe3\x9a\xb7\x6b\x9c\xb6\xf6\x08\x42\xd4\xe0\x52\x3e\xa7\x3e\xa0\x21\x72\x58\xc4\x27\x83\x6d\x7d\x06\x0e\x10\xac\x57\xc0\xb4\xfc\xcd\xd1\xb2\x4e\x04\x00\x2f\xfc\x8c\x7b\x5e\xc9\x66\x0e\x0f\xf7\x07\x40\xd1\x91\xb4\xd6\x4f\xfb\xad\x3b\x45\x2f\x14\xb5\xb0\x2d\x2a\x4f\xc9\xca\x4f\x5e\x68\x75\x20\xdd\x8a\x37\x00\x2a\x95\xb4\x97\xcb\x7b\x38\x05\xf3\xca\x56\x4f\xdd\x78\x91\xad\x08\x3b\x35\xc2\xb8\x54\x62\x85\x11\x37\x08\x85\xf8\xc8\xed\xb6\x91\x85\x30\x4e\x09\x12\x1b\x07\x26\x18\x15\xb6\x78\xa3\x83\x9c\x77\x52\x5a\xc1\x88\x8b\x83\x13\x79\xf9\x7e\xd8\xf0\xd8\x45\x75\xee\x20\x02\x5f\xe3\x95\x97\x35\x02\x60\x54\xab\xe1\x10\xbe\xf1\x4f\xa6\x0b\x41\x3b\x07\x71\x4b\x94\x78\xc3\x6e\x55\xc0\x92\x2a\x46\xa5\x72\xfc\xd3\x65\x26\xf4\xa8\x29\xf7\x68\x85\x65\x42\xbd\xc4\x42\x15\xcc\x3c\xcc\x57\x31\x5f\x9a\xae\x77\xe5\x0e\x09\x2a\x11\x03\xbc\xe1\x04\x4d\x77\xc0\x95\xb8\x80\x59\x6b\xf9\x08\x7a\x85\x4d\x1c\xe2\xfb\x02\xb7\x0e\x39\xb4\x67\x83\xf0\x34\x8e\x58\x93\x34\xb9\x5c\xeb\xe7\xc7\x72\x98\xb0\x8d\x1d\x62\x51\x9f\xd3\xf5\xe2\x93\xe7\x9a\x43\x67\x17\x79\x29\xdd\xe5\x97\xbd\xd9\xa7\xea\x85\x4d\xae\xaa\x44\xd7\xa9\x7b\x82\xb8\xc1\x79\x7e\xdf\x96\xb1\x19\xe6\xb3\xd0\x4c\xd8\xbd\x41\xd6\x7c\x75\x34\x94\x7c\x48\xb8\x54\x3d\x15\xcd\xbe\x9b\x78\x2d\x06\xd7\xf9\xcf\x18\xbe\xf4\xfd\x18\xf9\x49\x77\xc8\xe3\xf6\x56\xc3\x5e\xc8\xa6\x51\x72\x4c\xf8\x9c\x32\x79\x02\xf5\xc7\x94\xd9\xbc\x43\x93\xde\xfc\xd6\x13\xb1\x22\x79\x08\xfe\xaf\x65\xba\x1e\x45\x13\x33\x54\x4f\x0a\x6c\x2a\x1c\x41\xfb\x51\xf2\xa4\x0a\xfb\x15\xa6\x0b\xc4\x1a\x75\xe5\xbd\x8f\xac\x35\x1b\x7a\xec\x79\x38\x90\x82\x93\x8f\xee\xce\xb0\xea\xd5\x7e\xa2\x30\x4d\x98\xdb\x2c\x47\x15\xa2\xc9\x7b\x17\xce\x3c\xac\xf8\xe2\x56\x86\x2f\x9e\xdb\xbe\xd6\x5c\x69\xc0\x0e\x86\xdf\x83\xf8\x4e\x63\x2a\x06\xc6\xde\x15\xe4\x84\x32\x1b\xfd\xfa\x68\x8b\x21\x6f\x85\xdf\xf3\xa4\x9c\x3b\x7b\xac\xe9\xa0\x05\xf0\x0e\xf1\xa0\x6e\x7d\xe0\x04\xe0\x56\x38\x10\x53\x1e\x1d\x97\x9d\x0b\x8b\xe5\x64\x6d\xb6\xd1\x6d\x33\x6c\xd9\x60\xe1\xa1\x7b\xdf\x17\xa6\x65\xd4\x57\x42\x44\x84\xa5\x79\x7e\xd0\x58\x59\x71\x8f\x11\x18\x54\xc7\xdd\x7c\xf9\xc1\x65\x8d\xe2\xe6\xbd\xfc\x49\x2e\x1e\xcc\xce\x6a\xd4\x06\xdd\xa1\x80\x77\x59\x11\xaa\x4e\x0e\x85\xc8\x42\x9e\xa3\x49\xbb\xe4\x7e\xbe\xd4\xa0\x71\xf9\x0c\xe3\x80\x37\xcc\xf9\x9f\x4f\x35\x77\xf5\xc8\xb2\xc5\xc3\x99\xa2\xfd\x26\xf0\x69\xfd\x40\x5e\x41\xc1\x6c\x52\xb7\x71\x10\x96\x98\xb4\x4a\xba\xea\xf9\xec\x09\x1e\xa4\xc0\x0f\xd5\x48\xbe\x8b\xd3\x13\xdc\x31\xaf\x17\x5a\xd0\x30\x5b\x6e\xf5\x93\xd0\xa6\x91\x44\x44\xc7\xff\xd8\xc1\x63\xd2\xa5\xd4\xa1\x1e\x90\x9b\x8b\xa7\xef\x54\x5d\xa0\x4b\x23\xe6\x69\x1a\x1d\xf1\xcf\xf7\x2b\x0b\xe4\x85\x5d\x5d\x40\x87\xbd\x5c\x74\xe6\x20\xf7\x0d\xa8\xa9\xfc\x45\xef\x6b\x50\x2a\xec\x82\x55\x7b\xbe\xfc\x92\xfa\xc1\x5d\x2d\xbb\x4d\xff\x80\x29\x32\x94\xf4\x6d\x9c\xc8\x2b\x68\xb2\xc9\xa7\x3b\x7f\xe5\x19\x66\x62\xe5\xcb\x7a\x31\x06\xb3\x34\xbf\x43\x1b\xa3\xe6\x60\xa9\x1c\x37\x76\x8d\xd2\x0b\x9f\x52\x39\x3e\x62\x28\x08\x0b\x40\xa9\xd2\xb9\x7f\xcd\x97\xa0\x50\xec\x70\xd7\x85\xdc\xaf\xae\xe5\x31\xa9\x2f\xaa\xd6\x81\x62\x08\xd5\xcc\xbf\x86\xa6\x45\x65\xc0\x25\x38\x39\x75\xf3\xe0\x31\xcd\xa3\x75\xc0\x67\x98\x53\x68\xca\xc3\xb9\x39\x1d\xd9\x8f\x10\x46\x28\xe9\x2b\xd4\xdc\xf1\xd6\xf5\x63\xf5\x7e\xb8\xc6\x37\x7e\x85\x57\x0d\x3c\x02\x62\x21\xb1\x1c\x2c\xba\xb5\x78\x76\x5e\x0d\x23\x42\x86\xfa\x20\x5f\xc3\x11\xbe\x68\x6d\x9b\xce\x85\xc4\x35\x62\x11\xc4\x45\x18\x8f\xbc\xc3\x53\xec\x2a\x6c\x25\x17\x89\x0d\x96\xae\x10\x1e\x65\xe5\xe1\xdc\xf3\x77\xb6\xd0\x7a\x31\x0a\x52\xa0\xdb\x47\x1e\x51\x44\xa6\x41\x4f\x8e\xbe\xf7\xdc\xab\x5d\x6d\x9b\x58\x0d\x2e\x79\x59\x68\x7b\x41\xdd\xa3\x73\x07\x90\x87\x3c\x74\xae\x76\x7e\x7f\xb0\x69\x8e\x51\x68\xf9\xa0\x55\xc5\xb1\x69\xad\xd8\xb7\xe7\x36\xa9\xfc\x0f\x7a\x6b\x2d\x29\x61\xe7\x1a\x0d\x4b\x81\xab\x11\x57\x23\xcd\xfd\x61\x34\x7f\x99\x2b\x50\xa8\x0b\xdb\x3c\xa3\x0e\x4a\x3f\x02\xd0\xc5\xc0\x5a\x9e\x01\x57\x46\x41\x40\x52\x9a\xd4\xc8\x0b\xd3\x7b\xd6\x79\x41\x27\xd0\x63\x7c\x13\x53\x64\x49\x74\xff\x27\x5f\x54\x02\x1c\xa2\x12\x36\xeb\x98\xbb\xf7\x4d\x37\x9a\x86\x0a\xf2\x08\x82\xc1\xa6\x16\xf1\xe8\xc6\x4c\xc4\x03\x29\xd1\xa4\x8e\x18\x78\xdb\x50\x07\xed\x15\x0a\xda\x73\x17\xb7\x6a\x01\x47\x0e\x27\xa1\x08\x69\x8e\x51\x7c\xc3\xb4\x9a\x53\x1d\xe3\xbf\xed\x37\xa7\x7f\xb0\x21\x61\xa2\xa4\x1b\xbb\xc1\xb0\x31\xa4\x51\x45\x66\x89\xfc\x75\x53\x79\x24\xb0\x11\xab\x5a\x94\x13\x05\xe7\xbd\x64\x58\x4e\x22\x9f\x78\x59\x33\xce\x2b\xdf\x35\x20\x80\xf3\x4a\x0b\xf8\xe6\x35\xf7\xc7\x77\xda\xb5\x95\x86\x1f\x85\x9a\x57\xe9\xa2\x25\xea\x65\x0d\x82\x0e\x49\x3e\xb8\x43\x1d\x7e\xce\xb6\x11\xaa\x72\xe5\x59\xfa\x83\x43\x01\x15\xd2\x66\x85\xa7\x8b\xe9\x8b\x9c\xb7\xa0\x17\x90\x8d\xc7\xf9\xcd\x0f\xa9\x0f\x20\xd4\x72\xfc\x8f\x97\xeb\xe5\x5c\x12\x6c\xe0\x28\xff\xf1\x0e\x01\x8a\xb3\xb1\x64\x87\xaf\x18\x30\x8b\x4d\x27\x94\x5d\xd9\xe9\x1d\x52\xd9\xac\x89\x84\xc4\x71\xfe\xb8\x61\xdf\x67\xa3\x28\x40\x82\xe0\x2b\xaf\xc4\xdf\x1f\xd5\x98\x9e\x11\x63\xd8\x0b\xc1\x32\xf8\x9a\x1d\xe6\x88\x21\x50\xfb\x91\xfc\x85\xdb\x0c\x6e\x91\x58\xcc\x0b\xbb\x9a\xe2\xc5\x71\xfa\xbd\xb9\x5f\xce\xd4\x57\x55\xdc\xac\x91\x2a\xa4\x82\xfc\x31\x43\xeb\x9f\xb3\x21\x79\x16\x86\x8a\x69\x8c\x98\xcd\x61\xaf\x8e\xa5\x3c\xe3\x70\xa1\xb4\xc9\xdc\xf9\xa0\x26\x22\x8e\x80\xc7\x26\x15\xc3\xdd\x46\x7b\x4d\x3d\x18\x6d\xf0\x24\x37\x5a\xda\x04\x4a\x97\x31\x08\xec\x17\xf9\x26\xf3\x57\xfe\x67\xe1\x5f\x42\x27\x9b\x8c\x63\xdf\x4f\x25\xb5\xe4\x59\xbb\x7e\xb4\x51\x1a\x0c\x10\x07\x0b\x17\x56\x47\x2b\x4f\x19\x47\xbc\x3d\xbd\xd5\xa8\x6c\x40\x7b\x5c\x0c\x61\x8a\xeb\x3c\x83\x7c\xee\xfb\x88\xa5\x65\x55\x7e\x5f\xcb\x55\xb2\xb0\x1c\x16\x02\x36\xc0\x1f\x9b\xa1\xf5\x73\x5f\x99\x6b\x5f\x36\x7e\x65\x14\x46\x2c\xdd\x52\x3c\x53\x35\xb5\x45\x41\x51\x4c\xcc\x1e\xde\xec\x54\x19\xf6\xe6\x08\x05\x44\xde\x02\x78\xe7\x2b\x1f\x55\x18\x7b\x07\x4c\x20\xcc\x70\xfa\x1d\x01\xab\x5b\x75\x59\xf9\x9a\x65\x32\x94\xff\x69\x8f\x7a\x2e\xdd\x9d\x9d\xa0\x91\xb4\x67\x5b\x3a\x62\x08\x22\x5d\x39\x76\x8e\x61\x69\x14\x84\x50\x9f\xa8\x42\xf4\x24\x0d\x18\xc9\xad\x17\xe4\x59\x3a\x6b\xb2\xba\x66\xc8\xb2\x28\x27\xe9\xe6\xff\xf2\xa0\xfa\x07\x06\x29\xf3\x6d\x0d\x35\xcf\x59\x8c\x43\xa9\x01\x4f\xe5\x24\x13\x99\x02\x62\xd4\x21\x49\xcd\x95\xfe\xc1\xd1\x5d\xa3\xaa\x70\x0b\xde\x19\xdf\x6e\x02\x30\x52\xcc\xd1\x4e\x8d\x0a\x07\x02\xdd\x2c\xf2\x44\x18\xc9\xcf\x35\x68\xe9\x3e\xa3\x1e\x8d\x3c\x2b\x6d\xdd\x76\xf6\x1a\xe2\xf2\xc2\x3b\x57\x1c\x95\xf3\x1f\x35\x86\xb0\x34\xb0\x68\x3f\xa4\x58\x9e\x70\xfa\x8e\x4d\x11\x7d\x1b\x0d\x2e\xb5\x71\x0b\x8d\xa8\x30\xd9\xd7\xed\x02\x2b\xd0\x45\xbd\x79\x92\x86\x98\x20\x01\x2f\x04\xe2\xc7\x2f\x4e\x97\x1c\x94\xb5\xa8\x40\xe6\x7b\xd7\x4e\x35\x23\x07\x71\x49\x15\xe4\xec\x05\xa8\xf1\x7b\xa1\xea\x6a\xaa\xd4\x83\x79\x80\xda\x28\xae\xbc\xcb\xb0\x8e\x23\xbe\x43\xdd\xe4\x10\xca\x3c\xf1\x65\x43\x0b\x85\x1b\x7a\x25\xad\x7b\x57\x07\xdc\xc5\xe2\xa7\x2e\x51\xef\xa6\x81\x19\x2f\x60\xe6\x3e\x66\xa6\x12\xd6\xc8\x9e\xae\xfc\xbc\xc3\x2d\x86\xe3\x35\x50\x23\x13\x32\xaf\x3f\xba\xf5\x34\x6d\xe2\x5e\x2a\xc7\x1f\x3c\xc9\x9c\x55\x7a\x21\x4b\xab\xc9\xdc\xfe\xf5\x0a\x3d\x83\xb4\xb5\x69\xee\xda\x2d\xa7\x29\x52\x4c\xf2\x83\x26\xac\x35\xc4\xea\x18\xc3\xe0\xca\x00\x57\xbd\xc8\xe7\xd3\xa5\x95\x51\xbd\x62\x26\xff\xe1\xe2\xd9\xc7\xb2\xd9\xdf\x8e\xea\x11\xf6\x68\x08\x7a\x2b\x2a\xfb\x4f\x34\x2c\xfb\x50\xb5\x0f\x25\x9f\x97\x7b\x65\x3f\xb0\x29\x5b\x03\xcc\x92\xd3\x88\xaf\xef\x33\x85\xd7\xb1\x6c\x31\xef\x7b\x4a\xc8\x14\x84\x8c\xc0\x02\x6c\xcc\x5c\x29\x77\xe5\xb4\xb0\xac\xf3\x3f\x9c\xc9\x67\x07\x57\xa0\x0a\x23\xd8\xd1\x80\x22\x79\x72\xad\x41\xc0\x4f\x8a\x86\x74\xad\x36\x7e\x43\xf6\xbf\x0a\xe1\x26\xa1\xd8\xb0\x66\xad\x86\x7f\x48\x32\x0f\x17\x31\x2c\x4c\xbc\xd7\xe0\x10\x31\x52\xaf\x4b\xfd\xc6\xf2\x70\x7e\xe9\x2d\xaa\x15\x99\x77\x3e\xb8\x89\x7d\x75\xb3\x86\x65\x21\xcc\x62\xa8\x26\xa9\xf5\x85\xd2\x0c\x3d\xf0\x80\x84\xa9\xc7\x35\x47\xcf\x30\x3c\x83\xdd\xc8\xb2\x45\xeb\x36\x65\xb3\xaa\x99\xf1\xcd\x11\x71\x48\x85\x11\xb0\x90\xf9\xe9\xee\xb4\xec\xf5\xb1\xf8\x25\xf1\x7f\x0e\xa9\xf0\x41\x1d\xd2\xd4\x8d\x09\x73\xb7\x3f\x39\x5a\xb4\x8f\x3a\x76\xed\xa6\x0c\x09\xae\xbf\x2a\x96\x58\x17\xaf\x4b\x2d\x6d\x11\xe1\xf5\xc6\x3e\x9d\x9a\x6f\x51\xee\x7e\xe4\x6e\x55\xcb\x2e\xcc\x68\x95\x83\x0a\x86\x73\x6f\x1b\x3e\x3b\xe0\x1a\x00\xa6\x74\xf2\x68\x3f\x5d\x3c\x1f\xb2\x4f\x2a\x03\x7f\x71\x2d\xf2\x80\x80\x3e\x0d\xfe\x7c\x1a\x0a\xa7\x75\x0e\xf4\x56\xaa\xb8\xb3\x3a\xff\x92\x39\xe5\x52\x79\xbe\xa9\xbf\x2d\xc0\xdf\x5f\xed\x3c\x43\x9b\xeb\x58\xd4\x75\x69\x15\xde\xb0\xf0\xe1\xba\x6d\x9d\xae\x4a\x17\xd5\xc1\x12\xf1\xc8\x0a\xf5\x87\x3e\x15\xcd\xd4\xfd\x9b\xd5\xb7\xb1\x69\xc4\x1c\xbe\x85\x28\x7c\x6b\xb6\x36\x61\xa5\xac\xa3\x54\x8e\x4b\x2b\x4c\x71\x71\xe6\x77\x9c\xc8\x74\xb4\xb0\xec\x14\x5e\x4f\x5c\x3a\xe8\x43\xd7\x2f\xd4\x5c\xae\x7b\xc1\xa8\x90\x1c\x07\xd7\x95\x8d\x51\xee\x43\xaa\xc4\xaf\x12\x5c\x2a\xc7\x6d\x4b\x8d\xb9\x75\x88\x7d\xa0\xb3\xc5\xaf\x6a\x92\xbe\x3e\x0a\x45\x85\x36\x5c\xf8\xc0\x88\x6c\x79\x17\x60\xa7\x56\x62\xd8\x21\xc8\xb3\x30\xf7\x97\xf8\xd1\x13\x46\x8d\x80\x88\xc3\x28\x4a\x69\xfd\xef\xdf\x92\x0d\x68\x8a\x43\x2e\xaa\xa5\xc5\xab\x95\x7f\x2e\x1e\x6c\x01\x49\x7d\xff\x56\xd3\x3c\x72\x90\x91\x70\x28\xe9\x34\x55\xc4\xfe\xd9\xd8\x69\xe6\xfd\xb4\x53\x36\x90\xbc\xe2\xbf\xa9\x66\xa3\x6f\x3f\xa9\xe2\x12\x43\x5e\x5d\x16\x34\xf1\x3f\x6d\x35\xa5\xfc\x1d\x62\xc9\xdd\xf2\xc9\xb3\x8c\x21\x08\x43\x56\x43\xe0\xaa\xce\xd5\x3c\xad\x22\x0f\x38\x81\xbc\x4b\xbb\xb5\x62\x7a\x61\x51\x8b\x3a\x28\x94\xef\x68\x9b\x41\xe8\xea\xea\x06\x05\x3b\xc9\x69\x69\x7f\x7d\x9c\x26\xe7\xe4\x12\x4f\x6c\x2e\xfe\x53\x57\x58\x27\x75\x5b\x9e\x89\xdc\x6f\x8e\x18\xfb\x47\xcc\x9a\xc4\xc2\x29\x85\xed\xad\x99\x0a\xd4\xc7\xc1\xc4\x40\xee\x56\x21\xfa\xb3\xcb\x8d\x38\x88\xc3\x30\x55\xe7\x2b\x1c\x1f\x2b\xb4\x25\x42\x86\x42\x5c\x17\x64\xd3\x4b\xaf\xe7\xb9\xe1\x0a\x6c\x91\xb0\x81\x1c\x5d\xdf\x69\xb8\x70\x9d\x21\x35\x57\x61\x40\xd3\x15\x75\xf4\x93\x8b\x47\x69\x25\x1d\x44\x84\x2b\x6f\x91\x31\x9d\xc2\x0e\x33\xff\xd8\x4d\xc6\xa0\xc1\x66\x18\x03\x80\x41\xcc\x3a\xbe\xf1\xa8\x22\x4f\xeb\xbe\xf3\x85\x0b\x7c\x0e\xeb\xb9\xda\xba\x34\x62\x4c\xfb\x9e\xb9\xdf\xcc\x30\xbb\x5d\x26\x9d\x82\x73\xbf\xbf\x38\xeb\x3b\x52\xb3\x89\x50\x35\xc8\x1e\xcd\x45\x3b\xd2\x93\x1b\xb1\x96\x6c\x93\x1b\xde\xae\x62\xb9\xd8\x11\x86\x84\x0f\x82\xf3\x8f\x1f\x6b\xd7\x0d\x2c\xe6\xce\x91\x9f\xac\x54\x8e\x4f\xbf\x5b\xec\x15\x88\xe3\xf0\xc5\x77\xbc\x6d\x8b\x2e\x96\xe3\x25\x49\x86\x43\x4a\xdb\x35\x8c\xa7\x4b\xb8\xb7\x57\x79\xb8\xf8\xf1\xf5\xba\x0a\x86\x8f\x92\xb7\xc5\xf7\x3a\x85\x59\xa3\xb3\x57\xa5\x46\x23\x16\xda\x20\x92\x91\x02\xda\x72\xa7\x5d\xaf\x97\xe1\x49\xeb\x15\x04\xbc\xf4\x84\x89\x82\x66\xce\x8d\x9b\x5c\xdd\xa7\x1c\x5f\x1e\xa7\x2f\x21\xd4\xd2\x46\x7c\xd3\x74\xcd\xcf\x8f\x46\x5e\x88\x88\x17\x74\x64\xb8\xa9\x6f\x1d\x3d\x53\x1b\x6f\x45\x0e\x6e\x22\x56\xd5\xd1\xf2\xd6\x2d\xe3\xb4\xee\xd7\xc3\x75\x54\x85\x0c\xfb\xf3\xc7\x5b\x64\x6a\x84\xe7\x4c\xba\x86\x3c\xd4\x7e\xa6\x11\x3f\xb0\xd0\xfd\x96\x71\xe1\x7f\xe3\xec\x9d\x51\x6a\x5a\xdc\xd4\x6c\x4c\x87\x26\x27\x0f\x9e\xcd\xc9\x23\xba\xe4\xa4\xb4\x08\xad\xb4\x9e\x8d\xfc\xa8\x23\xda\xae\x37\x64\xc2\x93\x36\xff\x6a\xbb\xe1\x9e\xd1\xc9\xa1\x15\x57\x6c\x30\x5d\xd5\x6a\x35\x2c\x9d\x59\x07\xf7\x4d\xca\xa4\xa7\xe4\x19\xa6\x8a\x27\x85\x47\x47\x64\x11\xcd\x91\x10\x55\xff\xc6\xde\x16\xd9\x16\x18\x1e\x89\xd5\xf7\x3a\xc3\xe3\xc1\x77\x50\x3d\x4a\x19\x58\xcf\x3e\x20\xfc\xbe\x35\xd9\xe4\xf8\xb8\x66\xbb\x60\x89\x5c\x94\x94\x3f\x82\x89\xc3\xf7\x60\xb5\x08\xce\x48\x8d\xf7\x26\xc9\x4f\xbe\xe9\x26\x51\x5c\xfc\x65\x9a\xa2\xd8\xbb\xad\xd7\x69\xda\x80\x30\x56\xed\x98\x07\xb4\x8a\x8a\x3a\xc3\xc4\x75\x49\x9d\x21\x31\xb2\xcc\xaf\xbc\x5c\x55\x42\x0d\xa2\xf1\x77\x0b\xcd\xf9\xfc\xb3\xac\x46\x2c\x72\x69\xb3\x01\x8a\x29\x47\x9e\x9f\x6d\x3e\x89\x90\x2b\xd5\x9c\x88\xfe\x58\x98\xac\x81\x5a\x78\xd5\x81\x43\x1b\x74\x7c\x86\xf3\x67\x9c\xa2\xe1\xa1\x48\x60\x31\x02\x0a\x70\x02\x9f\x92\xff\x70\xcc\xaf\x6e\x25\x0a\x2d\x9b\xdb\xac\x15\xee\x37\xed\x0e\x1a\xd8\x0f\x89\x25\x25\xd2\x1a\xb3\x35\x6f\x01\x86\xc5\x94\x71\xf7\x36\x8d\x55\x05\xec\xbb\xa4\x0a\xbd\x49\xfd\xd5\x7e\xc4\x5c\x40\x09\xe4\xfb\xde\x34\xd4\x25\xa2\x0a\xf1\x68\x53\x17\x9c\xfa\xd9\xeb\xda\xf3\x42\x5e\xa0\x6c\xac\xd7\xd6\x34\x4b\x48\xcf\xb2\xf9\x29\x9d\xd8\xa1\x19\xc2\x88\xe1\xeb\xf5\x0f\x6b\x28\x75\x5a\x27\x8e\x07\x32\x0b\xa3\x0f\x98\xd0\x59\xae\x0d\x9b\x64\xcc\x29\x3d\x52\xf3\x99\xa3\x77\xda\x6b\xea\x4b\x35\x30\x17\x15\x29\xf6\xdd\x31\x51\x9f\xb3\x3a\xd5\x92\x1b\xb1\x2a\xc7\x7f\x2d\xd5\x14\x4b\x68\xe5\xfc\xfa\x20\x3c\xb1\xd9\x07\xa5\x4d\x19\xb2\x70\x29\x64\xa8\x09\x38\xf6\xe3\x9a\xf3\x61\xd4\x00\x45\xab\x52\x39\x5e\xda\xdb\x9e\x19\x19\xe8\x51\xa5\xa1\xa9\x01\x5b\xd8\xc1\x15\x06\x57\x2a\xfe\xdd\x88\x59\x66\x03\x89\x9d\x00\x85\xa2\x9b\xcd\x5e\xf4\x3f\x1a\x88\xc9\x80\x84\x11\x52\xae\x42\x85\x4f\xb7\xf1\xe4\xb8\x0c\xc6\x01\xe6\xce\x60\xe1\x2b\xd9\x5f\x85\x6c\x17\x79\x01\xf5\x4e\x64\x9b\x9e\xdf\x66\x8a\xcd\x21\x29\x93\x35\x5c\x0c\x46\x9d\x26\x6e\x8a\x4f\x41\xad\xf5\xb3\x46\x13\x2b\x75\xc0\x52\x59\xdf\xc2\xad\xa1\x59\x0e\x22\x26\x26\x51\x78\x91\x66\x82\xc5\xf8\x14\x92\x1b\xd0\x2e\x31\xc8\xbf\x81\x87\x1a\x02\xa5\x94\xff\xd4\x11\xfe\xbe\x7d\x87\xc3\x1e\x96\xdd\x37\x59\x6b\x58\x5a\xfa\xf4\x9f\x74\xf2\xbf\x6e\x23\x48\xf3\x39\x67\xb5\x10\xb3\x72\x2b\x28\x08\x44\x6d\xd1\x6d\x08\x91\xd5\x80\xaa\xc7\x4a\x7d\x58\xf2\xaf\x0a\x6b\x36\xa8\xe4\x00\x7c\x3c\x5e\xb5\xe7\x4f\x9f\xa2\xfd\x39\x43\x8e\x8b\x82\xe4\x1a\x15\x7e\x5b\x54\xd7\x88\xd6\x44\x6c\x2a\xee\x17\xf0\x00\x9f\x08\x4f\xb5\x78\x13\x5f\x19\x96\x56\xe2\x20\x44\x51\x12\x7d\xf4\x61\x8a\x55\x53\x8f\x08\x66\x70\xe9\x1a\x7a\xa1\xe6\x18\xec\xa3\x30\xc4\x20\xa3\x95\xfb\xcc\xce\x6c\xbd\xef\x10\x97\x84\x27\xb2\x8b\x2f\x62\x03\x7b\xc5\x31\x5b\x32\x60\x04\xc7\x32\x12\xd9\x5c\x72\x64\xb9\x36\xfa\xeb\x43\x60\x25\x91\x7b\xe0\x70\x6b\x29\x97\x22\x25\x5f\x79\x3c\x6d\x0e\xba\x7a\x92\x16\x20\xf4\xb2\x2f\x16\x7b\x55\xda\x2f\x91\x0e\x7d\xea\xbb\x06\x91\x65\xe1\x20\x80\x30\x1f\x9f\x7f\x5c\x83\x84\x13\x97\x38\x88\xc1\x68\xf7\xc3\x3b\x35\xfd\x7d\xcc\x75\xc1\x40\x6a\x92\x3f\xec\xed\x06\xee\x82\xd6\xf8\x2a\x47\x49\x4e\x2f\xf7\xd2\xad\x22\xae\x85\x49\xb7\xd4\xa7\x34\xcd\xb9\xf6\x5d\xfb\x72\x7e\x7c\xae\x40\xf0\xb6\x7e\x7b\x4f\x0b\xc2\x05\xd4\x3a\x84\xf7\xd2\xee\xa6\x39\x6c\xf6\xb8\xd6\x1b\xc0\x7d\xd6\xb7\x08\xf5\xa7\xd9\xa1\x3c\x9c\x7b\x78\xac\xf0\xd3\x8c\x18\x88\xf2\x96\xca\xf1\x6f\x0c\xf9\xd0\x26\x0d\xe5\x4c\x22\x7f\xfe\xcc\x89\x3a\x1e\x1e\x31\x17\x56\xd5\x30\x16\x9a\xf8\xa4\x26\xc7\x4b\x99\x53\x2d\x95\xe3\x0b\xef\x10\x2a\x97\x0e\x61\xa1\x1c\xff\x15\x1e\x7e\x41\xb8\x02\xe3\x10\x33\xae\xe4\xf0\xff\x96\x65\x4b\xb7\x3e\x64\x35\x02\x49\x3f\x95\x85\xed\x94\x2d\xe7\x65\x83\x57\xe0\x20\xf0\xca\x3c\xa1\x9d\xea\x4f\x9f\x4c\xc7\x43\x4d\xac\x0b\x70\xfc\x7a\x93\xc6\x19\xf5\x40\xb2\xa3\x1c\x7f\xde\xa0\xd8\x27\x25\x78\x4a\x4a\x8d\x9f\x31\x26\xe2\x96\x15\x09\x61\x8a\xfc\x7b\x77\x4b\xb5\x94\x01\x98\xe4\x16\x26\x3c\x6a\xd2\xad\xb9\x0b\x37\xef\x8a\xfe\xe1\x24\x18\x8c\x24\xff\x61\xc5\xca\x15\x33\x4a\xe5\x38\xb7\xfd\x74\xad\x96\xf6\x93\x57\xf0\x93\xbb\x33\x67\x8c\x04\x60\xd0\xab\x06\xb9\xb9\x70\x82\x76\xcd\x6b\x30\xdd\xe7\x4d\xfa\xbb\xe3\x4d\x4c\xa4\xf2\xb7\x2d\x5e\x33\x36\xa5\x0d\x20\x3b\xca\x28\x3f\x5f\xd4\x6b\x52\x3a\x92\x02\xa0\x82\x25\xa6\x6d\xc4\xc5\x66\xf3\xe5\x85\xe0\x1e\x28\x9e\xc2\x97\x66\x9b\x7a\xc5\x21\xe5\x8d\x27\xbe\x45\x7d\x97\xc0\xb2\x19\x26\x19\x05\x95\xc2\xcc\x78\x92\x76\xcf\x3c\x14\x32\x8d\xaf\x71\xdf\x4e\x95\xad\xdd\xd0\x02\xe7\x90\x4f\x9c\x3a\x59\xcb\xeb\xd5\x28\x08\x99\xce\x99\xf8\xc8\x56\x4d\x57\x0f\x3b\x7a\x35\xbc\xeb\x5d\xae\xf5\x2a\xd7\x85\x81\x8f\x25\xf4\xe6\x8a\x27\xf9\x41\x5d\x92\x74\xa2\xc4\xe2\x3c\xcb\x5c\xdd\x6c\x39\x05\x35\x44\xec\xdb\x9e\x2d\x4e\x30\xce\x8c\x18\xf7\x1d\x3d\xc5\x88\x72\xc4\xab\xd7\x49\xc8\xd3\x66\xee\x32\xcd\x83\x19\xa8\x0a\x43\xba\xf0\xed\x9e\x35\x2a\x7a\x01\x7f\xb6\x38\x73\x73\xcb\xf6\x32\x14\x14\xf6\xdc\xe6\x77\xda\x8d\x96\xc7\x8a\x02\x69\xe8\xf1\xc1\x36\xc3\x11\x31\xaa\xd7\x39\x03\x24\x55\xba\x1c\xb7\xbd\x45\x6d\xa3\x46\x99\x2b\x16\x90\x85\x2f\x3d\x94\x2d\xc0\x2c\x9b\x30\x64\x65\x77\x60\xbb\xda\x0c\x13\x1c\xec\x38\xf2\xdf\x5b\xf7\x64\x1f\xa0\x64\xa0\x88\xff\x5e\xfc\x87\x50\xe5\xab\xae\xce\xb9\xf3\x40\x15\xb5\xf0\xd1\xb9\xa3\xc4\xdb\x85\xf0\x9a\x9c\xaf\xdc\x6b\x19\x8d\x87\x3a\x5f\xa9\xcc\x19\xa1\x2d\x19\xb0\x17\x60\xaf\xc2\xb0\xf0\xc7\x29\x6c\x7b\x40\x1f\x5c\x54\x31\x73\x85\x01\xcb\xf7\x0d\x3b\xbf\x30\x02\x6f\x47\x21\xaa\x9c\x7f\x6c\x9a\xc1\x00\xa5\x72\x18\x7a\xad\x81\xee\x0e\x06\xdd\x0a\x15\x7c\xe5\xfc\x9f\xee\xd7\xa6\xe2\xa8\xc2\x5b\x85\x5b\x76\xeb\x77\x9b\x97\x19\x67\x8c\x30\xf6\x76\x08\x08\x1c\x69\x82\x28\x7e\x49\xd4\x1a\x17\x94\xba\xc0\xe1\xf5\xe2\x99\x1a\x00\x9a\x21\xab\xc1\xe7\x90\xf1\xb5\xcb\xd2\x1e\xbd\xc3\x6d\xdd\x17\x5d\xa0\x81\x2d\xfa\x22\xde\x22\xe7\xf6\xde\x6d\x08\xdd\x63\x14\x80\x1d\x1c\xff\x12\xb5\x3b\x27\x6a\x12\x01\xfd\x19\x3e\xe6\xa4\x65\x9a\x11\x35\xa5\x21\x8c\xd8\x4a\xe5\x78\x78\x93\x01\x35\x25\x8e\x1c\xc9\xfc\xfb\x32\xfe\x4d\x3c\xe0\x37\x0c\x17\x3f\xba\x95\x57\x72\x3d\x20\xae\x95\x3c\x8c\x1f\xcc\x36\x76\x33\x80\x98\x50\x56\x5e\xc5\x45\x06\xdd\xdb\x86\x80\x26\x5e\xc8\x82\xf9\x33\x8c\xd3\x1b\xa0\x13\xe4\x82\xf8\xcc\xc9\x66\x74\x93\x26\x42\x00\xd4\x7c\xf4\x3d\x25\x5e\x4f\xad\x52\x39\x76\xb7\x8f\x94\x15\x13\xb8\x1c\xbf\xaf\x41\xd0\x2b\x0c\xa3\x50\xea\x35\xff\x7e\xb6\x34\x6b\x00\xa7\xf0\x52\x39\xbe\xdd\x18\xa5\x45\x81\xd4\xba\x1d\x2e\xcc\x18\x91\x0d\x0b\x0b\x3a\x3b\x81\x1e\xc0\x97\xfd\xab\xaa\xa6\x99\x06\x97\x63\xe5\xdb\x80\xb7\x5f\xd4\x28\xdf\x20\xf5\x8d\x59\x2b\xe4\x62\xc6\xe8\xb4\xb6\xb0\x80\xb4\x33\x72\x8f\x46\xf1\x62\x51\x80\x78\xfb\x91\x5b\x7d\xca\x09\xc7\x81\xf0\x5c\xe3\x79\x35\xe3\x46\xc3\x82\x9a\x2b\x3f\x33\x43\x85\xb3\x4e\x41\x69\x07\xbc\x36\x0d\x0f\x48\x86\x25\xe4\x78\x66\x1b\xaf\x32\xa4\x3b\x52\xa9\x1c\x5f\x29\x49\x64\x0e\xe1\x2d\x60\xe1\x07\xbb\xd4\xca\xc0\x77\xe0\x91\x4c\x36\x8c\x81\x50\x1d\x07\xa2\xf7\x78\xec\xae\x31\xea\x66\x07\x21\xa5\x49\x40\xbe\x73\xfa\x19\xa2\xac\xe5\x5b\x7c\x73\x97\x83\xf6\x67\x3f\xe1\x47\x53\x1b\xbc\xe7\xfa\xd4\x34\xf2\x46\x35\x16\xf8\xc3\x71\x63\xaf\x4d\x02\x50\x7e\x92\x4b\xdd\xc2\x5f\xf7\xab\xe7\xcb\x87\x2b\xb0\x70\x3a\x47\x63\x09\x39\xd4\x6a\x70\xc0\xe6\x1b\xc2\x28\x54\x5c\xba\xe4\xf2\xbc\xbf\x5b\xb7\x65\x17\x62\xf4\xc9\x0f\xbe\x6f\xba\xaa\xa6\x9a\xe4\xfc\x7a\x52\x0a\xe7\xaf\x98\xa2\x35\xaf\x98\x1b\x46\xfe\x70\xbb\xde\x22\xb8\x28\x00\x59\xa4\x78\xf7\xad\x5a\x97\x4d\x69\x23\xf9\x65\x3b\x57\x6b\xa3\xb3\x88\x79\xc8\x15\x92\x35\x71\x79\xbb\x6a\x67\x02\x3a\x18\x0d\xf9\x8c\xba\x78\xc0\xa7\x20\x55\x58\x1c\x19\xab\xaf\x63\x39\xc4\xad\xc0\xaf\x78\x63\x8d\x91\x3b\x04\x67\x47\xcc\xf0\xbf\x37\x52\x00\x62\xa9\x57\x25\x42\x63\x6f\xdb\x88\xb3\x8d\x46\x01\x05\xb2\x25\x54\x29\x7c\xc4\x49\xa6\xaa\x4b\x52\x44\x47\x4e\xc8\xc7\xf2\xcb\x62\x4d\x6b\xa0\x42\x59\x8a\x42\xd8\xfb\x68\x9b\x36\x01\xf6\x34\xcf\x8b\xc2\x92\x25\xa6\xbc\x12\x4f\x73\x70\xa6\xdf\x8d\xcd\x24\xca\x40\xc4\x0c\xe6\x1e\x83\xd3\x4f\x38\xe3\x40\x0e\x1f\x45\xed\xea\x53\xc9\x3c\xe9\xee\x18\x43\x41\x20\x6b\xe2\xc2\xb7\x5e\x54\x1f\xb5\x8e\xdc\x8a\x23\x78\xa5\xbf\x9d\xaf\x11\x88\x64\xfc\x87\xd8\xff\x8e\x31\x54\xe7\x53\x18\x87\xbb\x3b\xc4\x17\x5d\x38\x4e\x5b\x24\x07\xb8\x82\x1c\xc8\x29\x2f\x1a\x61\x5d\x9a\x7e\x09\x60\xc2\xf0\x22\x3e\x2b\xfe\x98\x83\xfb\x93\x24\xa8\x4a\xa2\x3f\x6c\x1b\x6f\x84\x2b\x81\x7d\x3c\xf9\x7d\xf3\x32\x07\xdc\xa5\x36\x3f\x69\xc9\x44\x6d\xec\x50\xc1\x0c\x39\x64\x48\x6c\xfd\x1f\x18\x6d\x76\x2a\x4d\x8c\x1c\x2c\xad\x86\x7e\x65\xe8\xce\x23\x9f\x3a\xb4\x8e\x43\x01\xca\xe3\x39\xe8\xb6\x7b\xd5\x21\x3f\xb7\xdf\x86\x49\xca\x0d\x47\x55\x97\xa6\xfc\x3e\x4b\xe5\x78\xfb\x5b\x26\xae\x84\x55\x23\x9c\x31\x15\x1c\x2e\xb4\xdd\x9f\xed\xc9\x2a\xb4\x3a\x58\x8f\x40\x8c\x1f\x30\xb2\xc3\x85\xc7\xef\x32\x22\x9e\x4d\x5d\xd9\xaf\x5d\xdf\x37\x51\x63\x2b\xf8\xc9\x25\x27\x01\x67\x63\x7e\x5b\xf3\x77\x8e\x3c\xc4\x5c\xbe\x19\xa1\xaf\x88\xa6\x8a\x51\x89\x28\x2c\x74\x8d\xd2\x9d\xf0\x69\x95\x7b\x33\x35\x0d\x21\x66\x8d\x17\x46\xa5\x56\x77\x61\xd3\x7c\x55\x21\x0f\xd2\x28\xb4\x4b\x94\x11\xec\x09\x55\x9f\xba\x21\xeb\xe7\xe0\x5a\x0a\x20\xbd\xf2\x4d\xd3\xd0\x62\x61\xaf\x18\xbc\x2e\x1f\xad\x91\x53\xfb\x29\x6c\xf4\x92\x6f\x7b\x41\xb7\xb6\xb2\x6a\xf1\xd1\xcf\x6d\xd9\xc2\x13\xde\x82\x05\x17\x24\xa9\x0b\x34\xa2\xa6\xf2\x15\xde\x32\xa4\x9f\xac\xdc\xd7\x46\x4c\xd6\xd7\x00\x17\xce\x51\x0c\x10\xe8\xbb\x0d\x18\x12\xaa\x31\x28\xbb\x53\x61\x9c\xe1\xdc\xc2\x17\xb5\x97\x8e\x2a\xc9\x7f\x17\xdf\xf9\x03\x73\xb3\x61\x39\x29\xe2\xab\xd4\x85\xb9\x20\x17\xb5\xd8\xaf\xab\x64\xb8\x1c\xda\xc9\x87\xdb\x37\xf6\xb5\x69\x25\x99\x27\x90\xdb\xc9\xa5\xbc\x91\x8d\xd1\xf9\x0a\x41\xc8\x97\xb5\xd3\x46\x6b\xbd\x18\x82\xdd\x44\xe1\x27\xf7\x6a\x05\x81\x43\x69\x95\x60\x2e\x01\xd1\xb9\x3e\x7b\x6d\x42\xe2\xf2\x3d\xec\xbf\x0a\xeb\x41\x2e\xdd\x06\xba\x6d\x2f\xb5\x6b\x3a\x0a\x35\x5c\x0a\x2c\x92\x7c\x14\xf8\x05\xe5\x75\x46\xe6\xab\xd0\xa6\x80\x42\x8d\x79\x4d\xbd\xa1\x46\xcb\x52\xb1\xf0\x61\x4f\xd3\x13\x02\xbd\x2e\x6e\xf7\xb6\xe4\x3e\xa9\x9d\x8e\x2d\x82\x1c\x31\x48\xfa\x9f\x16\xe8\x8b\xeb\x62\x86\xab\x1d\x7c\x3f\xc0\x46\x1a\x23\x31\x07\xa3\x21\x6e\x6e\x98\x5b\x3d\x4d\x63\x9a\xc3\x9f\xd4\x36\x0a\x01\x41\xd4\x04\xbc\xfd\x70\x61\xde\x7c\x3e\xcf\x5c\x15\xf2\xf9\xa4\x3c\x1c\xf1\x5e\xc3\xd2\x1f\x0d\x72\x95\x3d\x6b\x8f\x26\x95\x0b\xe8\x15\x28\x4b\x9d\xb4\x71\xcd\x5a\x16\xc5\x61\x37\x3f\x8f\xb4\xd2\x94\x8c\xa4\x33\x67\x9f\x63\x36\x6d\x3e\x07\xa8\x9a\xc3\xa8\x9e\x5e\xad\xa9\xc0\x55\x07\x43\xac\x59\xbd\x43\x2a\x1e\xc0\x34\x08\x9e\xf9\x17\x85\xa5\xdf\x35\x1e\xf7\xd4\x17\x4a\x77\x85\xdd\x47\xcd\xf6\xa9\xbf\x42\x95\x96\x29\xbd\x29\x5b\x65\x71\x55\x00\x11\x62\x0b\x68\xa9\xa6\x5e\x99\xe4\x41\x50\x74\x3a\x34\xc9\x28\x28\xa4\xf7\xc9\xaa\x15\xc3\xc5\x2f\xbe\x2c\x95\x07\xb8\x35\x03\x10\x16\xd7\x69\x2c\x22\xad\xb2\x78\x46\xb5\x1e\x5d\x0b\x2f\x00\x1d\xd5\x35\x06\xda\xc4\x07\x71\x6f\x4e\x3f\x7d\x55\x57\x57\xb6\xb4\x69\x43\xfe\xd5\x6d\xbc\x1a\xee\x97\x86\x1b\xbf\x7b\xfb\x4c\xad\xb3\xa8\xd6\x5b\xe7\x9f\x2f\x56\x8d\x36\x83\x6b\x32\xca\xa9\xd3\xbb\x53\x5a\x90\x40\x41\xe4\x84\xe9\x94\x24\x7f\xfc\x99\xf4\x6c\xd5\x93\xae\x2c\xbe\xeb\xf9\xf4\x0f\x86\xf8\xd7\xce\xef\x32\x1a\x83\x28\xa8\x20\x4f\x30\x09\xee\x3a\x66\xac\x39\x3b\x2a\x1d\xa4\xc5\xd0\x23\xde\x30\x56\x1d\x80\xee\xae\xb9\xdd\x0b\x00\x2d\x7c\x8b\xa7\x61\xec\x49\xc3\x26\x60\x0b\x23\x93\xc9\x5b\x5b\x75\xc7\x50\x9f\x84\x60\x10\x7c\xa8\x57\x77\xa2\x15\x2b\x51\x0b\x55\x21\xed\x7d\xe9\xd0\x44\x3d\x80\xeb\x85\x49\x6e\xf8\xed\x74\x4a\xe5\x21\xa4\xc5\x4f\x7f\x6c\xfa\x8d\xfd\x26\x38\xb0\xbe\xc6\xe1\x3f\x8b\x17\xcf\x5c\xdd\x32\x3f\x7f\xf4\x12\x7e\x0f\xb0\x93\x72\x91\xef\xe9\x9e\xa0\x07\x2e\x47\x6d\x68\x67\x5c\x6b\xcc\xcf\x75\xc9\x24\x28\xd8\xbf\xb2\x98\x37\x6e\x8b\x11\x88\x19\x15\x3f\x31\xc3\xe0\x35\xcf\xed\x5c\xd0\x2b\x51\xfd\x05\x27\x6d\x3a\x10\x00\xb9\x46\x6f\x97\xb5\x39\xc3\x01\x75\x9a\x1c\x7f\x7b\xca\x5c\xfd\xf3\x04\xd4\x89\x24\x9d\xba\xf9\xa2\x09\x50\xc2\x56\x28\x95\x5f\xf3\x79\x8d\x2d\x18\xe2\x81\x10\xe6\xd1\xe5\xf8\xb9\x6b\x95\xca\xf6\x7c\x18\x1b\x7c\xa9\x47\x43\xc9\x46\x0c\x4c\x41\x0b\x27\x8f\xd4\xf8\x89\x0e\x19\x1a\x42\x8c\x1b\x89\x2c\xdd\xd0\xa6\x31\x78\x68\x10\x92\x30\x12\x82\x92\x9f\x79\x76\x92\xae\xa5\x12\x62\xe6\xe1\xa4\x56\x6d\xc0\x9d\xff\x3f\x3b\x05\x15\x0b\x37\xb1\xc7\x6d\xdf\x86\x0b\x95\x95\x9a\x21\x39\x62\xa5\x1a\x0e\x05\x4e\xa2\xf0\xa5\xe3\xd9\x3d\x08\x80\xe6\x5d\xb1\x90\x36\x1b\xb8\x39\x6f\xa4\xcf\xb2\xc6\x3b\xf6\x55\x4e\x56\xcc\x5d\xb8\x44\xf2\x3c\x99\x3d\x04\x9f\x1e\xa9\x02\x0a\x07\x12\x94\xe3\x11\x93\x35\x67\x88\x26\xf6\x22\x78\x78\x57\x1d\x36\x2a\xde\x24\x09\x0a\x8b\xfc\xfc\x9f\x3a\xb5\xed\xa4\xa7\x33\x37\xf3\xa5\x1e\x2d\x3a\x25\x31\xab\x14\xd8\x49\x3b\xcc\xdf\xf0\xaa\x29\xd2\x8b\x24\x39\x6c\xa8\x14\xf8\xa8\x9f\x4b\xc6\xe4\xbe\xd0\x93\xfd\x85\x49\x11\x9d\x0a\xff\x07\x61\xb6\x16\x00\xe5\x0d\x96\xf1\x69\xc5\xf7\x64\x1b\x87\x94\x1e\x9a\xa1\xee\x9e\xdb\xa3\xee\x26\xf8\x08\x26\x29\xe5\xe9\xe5\x2d\x7c\xde\xc8\x0b\x11\x23\x80\x6a\xe6\x42\x8f\xba\xcc\x5a\x92\xf9\xa1\x3a\x2b\xf4\x3e\x94\xcd\x52\x36\xe1\xe8\xe1\x78\xd1\x03\x26\x3d\x84\x35\xb8\x1b\xbf\x80\xe5\x3e\xf2\x58\xb6\xae\xab\x20\xaf\x01\xb5\xa6\xfe\x30\x6f\xeb\xd6\x2c\x16\x31\x08\x28\xf0\x5a\xb1\x3a\x35\xcd\xf0\xac\xd5\xdd\xa6\x78\xe6\x64\x7e\xd7\xb9\x8c\x10\xd7\x09\xb8\x24\x8d\x22\x68\xa0\x5f\x7b\x6e\x57\xec\x1a\x29\x2e\x72\xc0\x71\xc6\xd3\x34\x4f\xb2\x66\xe4\x78\x98\xf1\x5c\x16\x1f\xdc\x6f\x38\xe4\xd9\x08\x46\x17\x7c\x4d\x72\xb3\x30\xf4\x0d\xb1\x2c\x72\x6f\x79\x6a\x94\x96\xa4\x80\x6d\xd2\xfb\xb8\x90\xd0\xbb\x39\x42\x2c\x2b\x4b\xd3\x7e\x89\x01\x02\x00\xe1\x1c\x31\x25\x7c\x77\xaf\x50\x3e\x89\x92\xf2\x16\x62\xca\xc3\x45\x03\x5a\xc5\x1c\x8c\x3c\xee\xc9\x0f\x99\xb0\xfa\xbe\xde\x38\x7b\xd4\x12\x2d\x57\xfe\xba\x37\x55\xfb\xc0\x28\x4a\x4e\x40\xcf\x14\x7d\x78\xe8\x21\x2f\x09\xd9\xb9\x2b\x3d\x1e\xe3\xae\xa6\x49\x29\x14\x3f\x78\xa8\xa5\x56\x96\x82\xe9\xfb\x9a\xda\xef\x92\x3b\x87\xe4\x47\xfc\x74\x79\xf6\x80\x74\x88\x79\x42\x7c\xea\x71\xf5\x1b\x43\xd4\xe4\x6b\xb2\xc2\x8f\xef\x13\x63\x25\x07\x63\xa8\x0f\x4e\xdf\x65\xe2\xe4\x22\x76\xc2\xbd\x59\xe1\x33\xd2\xf9\x86\x83\x9e\xc0\xda\x35\x5e\xf5\xe0\x78\x19\xbe\x6c\x52\x21\xca\x9f\xe6\xca\x50\xb9\xf9\x45\xba\xcb\x79\xfb\x7a\x95\x89\xfa\x6d\x12\x62\xcd\x46\xab\xb3\x23\xdb\x7a\x4a\x89\x50\xa9\xe6\x79\xbd\xb1\xec\xb7\x90\x67\x61\x69\x66\x38\x5c\xf8\xc5\xd6\x16\x4c\x06\x48\x46\x0a\xf4\xfb\xd2\x0e\x13\x84\x4d\x3c\x8b\xf8\x12\xcd\x1b\x57\x34\x19\xcc\xee\xce\xce\x12\xa8\x12\xc0\xc2\x7e\xbb\x66\xd7\x87\x74\x5c\xeb\x6f\xef\xd1\x10\x64\xa8\x0f\x31\xc1\x6f\xfb\xb7\x11\x53\xb5\xb5\x3b\xf2\x70\xab\x5a\x96\xdd\xc1\x4f\xea\xb2\xc1\x20\x24\x83\xb8\xa9\xe5\xf7\x3f\x38\x63\xb4\xc1\x09\x63\xb4\x3f\xf9\xf8\x7f\x9d\xaf\xe1\x3b\x7d\xcc\x27\xcc\xd5\xaa\x0a\x1b\xfd\xc4\xf3\x38\x2a\x22\xff\xa1\x19\x86\xad\xb1\xeb\xe2\x2a\x01\x98\x12\xaf\x4e\x16\x2e\x3b\xc3\xcc\xbf\xc2\x16\x8a\x03\x5b\x77\x2b\x67\x66\x2e\x75\x2f\xbf\xf1\x85\x5b\x4c\x59\xc0\x1a\x5f\xb2\xbc\xfb\x0a\x3f\x1e\x1f\x0b\x02\x6a\x25\xbf\x0a\x9a\x88\xb3\xde\xc8\x46\xbe\x90\x32\xcb\x2e\xf9\x08\x9a\x52\x2e\xa0\x7b\xe5\xa8\x6c\xa1\x54\xa5\x51\xc8\x08\x8a\x06\xb2\x23\x99\xdc\xaf\xf5\xc5\x2f\xc3\x16\x98\xc1\xc6\x5f\x8b\x55\x8d\x19\xf1\x68\x7b\x72\x8f\x3e\x2a\x52\x8a\xd4\x7b\x0d\x80\x22\x62\x36\x75\xf4\xe0\x5d\xb8\xbf\x4d\x33\x81\xa8\x44\x3a\x75\xf6\x1d\x35\xe2\x0a\xa9\x2b\x5f\x4a\x61\xe9\x03\xd9\x23\x17\x79\x01\x6a\xa6\x08\xc3\xc2\x6f\x3a\xd4\x3f\x43\xe1\x4c\xe4\xfa\x17\x41\x61\xf4\xe1\x65\x2d\xd5\x67\x88\x03\xcd\xea\x70\xeb\x06\x21\xdf\x8d\x42\x14\x84\x8c\xfa\x36\xd7\xdd\xdf\x7f\x28\xf3\xbe\x83\x90\x8f\xea\xde\xa8\x18\xdb\x9e\xa8\x52\xc1\x4c\x42\x79\x7f\xb5\x58\xfd\xa3\x2a\x06\x55\xb0\xe4\x1f\xdd\xb0\x67\xb4\xc6\x2e\xa7\x9c\xea\xf7\xab\x7b\x55\x05\x83\x08\x5f\xe9\x15\x07\xc7\x9e\xae\x4d\xb5\xf8\xa5\xa8\x77\x9a\x9e\x6a\x98\x11\x47\x80\x15\x8a\xab\xe7\xf2\x3d\xd7\x75\xc9\xb7\x62\x5e\x46\xe6\xb4\xbe\x52\x91\xf2\xc2\x26\x66\x41\x03\x0d\xea\x42\xa8\xf1\xd7\x76\xab\x10\x61\xa3\x10\x1c\x16\x53\xdf\xc0\x3b\x0d\xd3\xa4\x4a\xc0\x1b\x6b\x31\x54\xb8\x77\xb3\xfa\xa8\x42\xea\xf3\x81\x75\x26\xcf\x06\x05\x9a\x01\x73\x6e\xf3\xde\x14\x38\x55\x23\x2d\xf3\x86\xfc\x37\xde\x56\x05\x47\x03\x07\x81\xa3\xa3\xb6\xf3\xff\xb3\x56\xdb\xb9\xd0\x3a\x38\xf0\xbe\x31\x6d\x8a\x11\xc6\x52\xe1\x03\x1e\xa8\x1e\x9c\xab\xd2\x6e\x95\xa1\x7e\xaf\x44\x23\xe8\xc7\xd6\x3d\xc2\x07\x19\x78\xc0\x77\x28\x4b\xb7\xd5\xb7\x5d\xcf\x87\x67\xab\x90\x67\xd9\x58\x33\x15\xcb\x7d\x6b\xbe\xa6\xfc\x89\x03\x52\xe7\xf5\xf0\x21\xed\xae\x70\xc3\x75\xc8\x8e\x97\xde\x64\xcc\xe8\x30\xa0\x31\x64\xaf\x38\xb7\x67\x4c\x86\xc1\x92\xbc\xe8\x78\xef\x76\xc1\x74\x45\x21\x77\x2a\x8a\xbf\xbb\x53\x9b\x46\x79\x21\x06\x62\x76\xc4\xc9\xa0\x5f\x5e\xa3\xbe\x19\x78\x25\x53\x6e\x4f\x56\x70\x5e\x34\xb6\xb3\x55\x8c\xc4\x2b\x1b\x38\x68\xca\x40\x80\x5a\x39\x5f\xf7\xff\xef\xc1\x54\x70\xc3\xab\x52\xa9\x46\xd8\xfe\x90\xa1\xdc\x1b\xb1\xa4\x58\x90\xa4\xd3\xfc\xec\xe9\x46\x39\x87\x1c\x87\x32\x0b\x69\xf5\xd1\x84\x67\x0d\x2d\x00\x52\xc5\xb2\x1c\x8b\xdd\x0d\x0a\x55\x69\x11\x76\x73\x2b\x71\xb4\xf0\x63\x83\x38\xed\xa3\xd4\x83\x9e\xeb\x97\x9d\x62\xd8\xf3\xa0\x86\x6c\xbb\x73\xec\x90\xe8\xef\x43\x54\xf7\x10\xef\x95\x1e\x71\xf8\x8d\xff\x38\x26\x30\x5f\x90\xe5\x93\x7d\x21\x2f\x7b\x6c\x36\xd8\x4c\xaa\x86\xf8\xbb\xb3\x53\x16\xbf\x8f\x1c\x1d\x71\xf5\xaa\xe9\x5f\x31\x40\x02\x45\xcb\x29\xcc\xdd\xab\x54\xef\xa3\x56\xd5\xfb\x9f\x18\x6b\x95\x7e\x8c\x84\x15\x70\x6e\xd7\xee\x51\xf2\xf3\x32\x8b\x8f\x43\xa7\xbf\x34\x3a\x2d\x66\xea\x72\xf5\xff\xd7\xf7\x0d\xb0\x1c\x00\xae\xb8\x90\x92\xfc\x3e\x1b\xb6\xa4\xb7\xed\xe6\x16\x1b\x97\xe1\xc2\x92\x5b\xc6\x26\xff\x72\xf9\xf2\x15\xfa\x8c\xe5\xe4\x17\x05\xf1\xcc\x47\x8a\x5c\xb8\xe9\x7e\xd3\x74\x8f\x35\xe6\xf4\xfb\x99\x58\xb3\xe6\x7e\x13\x62\x5f\xc7\x2c\xa3\xb2\x32\x5c\x5c\x1d\x9a\x1b\x62\xe4\x90\x1a\x91\x94\xf2\xfc\x23\x2f\x69\xfd\x1b\xf8\x90\x8b\x26\xf6\xdf\xee\x34\x5e\x31\xed\xf7\xc4\x0a\x37\xf7\xcb\xfc\x19\xda\x15\xc7\xb8\xe1\x22\x9d\xaa\x9b\x3b\xcd\x78\x57\x20\x46\x4f\x6a\x11\x9f\xe9\x17\xaf\xdb\xa8\x80\xdb\x08\x74\xa3\xcf\x38\x9a\x12\x4a\x68\x55\x92\x01\xaf\x7b\x9c\x27\xdd\xab\x99\x9a\x96\xc4\xe7\xd6\x78\x97\xfe\x71\xe4\x45\x9e\x47\x1a\x54\xaf\x2d\xfe\x34\xc2\xf4\x38\xa9\xa2\xe4\xa6\x8b\x84\xb5\xed\x11\x81\x0e\x5f\xfd\xb1\x95\xab\x93\xef\xf1\xd2\x5b\xe3\xb4\x7d\x4f\x20\x85\x8b\xf3\x67\xe4\x55\x54\x24\x8c\x6b\x76\xa6\xea\x6b\x85\xaf\x3b\x8a\xff\xe7\xe9\xd0\x88\x39\xed\x53\xcd\xac\x81\xaa\x35\x04\xce\x27\xbc\x13\xca\x1f\xee\x55\x5f\x1d\xa3\x28\xf9\x71\x8d\xbd\x6d\x46\x17\xe4\x55\x09\x2f\x64\xa2\xdd\xaa\xeb\x4d\x29\xbd\x1c\x48\x7d\xd9\x66\x7e\xcb\x56\x85\x98\x09\x5d\xc9\xdc\x6f\x5e\x57\xf1\xc9\xa5\x21\x69\x0a\x86\xf4\xd8\x4a\xab\x1f\x90\x14\xf2\xca\xdd\x28\x3a\x18\x1c\x04\x20\x3f\x92\x3f\xcd\xb0\xaa\xf1\x28\x73\x61\x7d\x20\x96\x1d\x9f\x3c\x38\x46\x63\xed\x20\x5e\xdd\xe6\xbe\xfb\xb8\xea\xa9\xdc\x16\x96\x57\xee\x47\x97\x64\x59\x5e\x0b\x17\x88\x73\x9a\x4d\x47\xd7\xec\x4f\x29\xb5\xa8\x9e\x0a\x50\xd6\x3a\xb5\x9e\x8a\x58\x21\x71\xa5\xfd\xf7\xc6\xd5\xd9\xf5\x0a\x62\x62\x78\xda\xb8\xa4\xc5\x22\x23\xa0\x52\xdf\x38\x46\xe3\x85\x68\xe3\x00\x66\x96\xf0\xdd\x5f\x30\x94\xfd\xda\x4d\xe4\x44\x8a\xb4\x3b\x5c\x98\xf1\x82\x86\x9d\x8b\x42\x0e\xab\x9d\xd6\x61\x8a\xe2\xd2\x7e\x2e\xab\x77\x70\x9d\x82\x10\xd9\x83\x3e\x0d\x6d\x1c\x90\xa4\x10\xbf\x7f\x84\xae\x4c\xc3\xf8\xe3\xcb\x93\xd7\xb3\x9d\x0a\x61\x24\xb0\x4f\x08\xbb\xfa\x45\x5e\x0c\x81\xfb\x89\x57\x87\xdb\xf8\xf8\x58\x03\x36\x61\xd9\xd8\x15\x9c\xbf\xef\xdf\xc9\x1f\xe8\x6a\xa4\xc9\x5f\x17\x5e\xba\x57\x15\x47\x5d\xf3\x4a\x5d\xdd\xc9\x8f\xf9\xdb\x85\x5a\x23\x40\xb4\xfd\x4e\x6e\xc4\x55\xc2\x88\x03\xb3\x7a\x86\xd5\x75\x9f\x41\x4a\xb4\x69\xe0\x93\x90\xbb\xb3\xf3\xdf\xff\x95\x63\xfc\x74\x75\x76\x2c\x9c\xbf\x20\xf9\xa2\xbf\x9d\x9e\x85\x9c\x13\xd8\x7a\xc5\xc7\xe6\x9a\x08\x02\x20\x38\x4b\xd9\xb1\xdc\x37\x36\x67\x7f\xd3\xbc\xae\x54\x85\x52\xbc\xd3\x3f\xed\xd2\xb5\x5c\x89\x4b\x19\x77\x07\x98\xa9\xec\x50\xd8\x09\x44\xdc\xbf\xa1\xb9\xac\x18\x28\xfd\xa2\xe6\xbf\xe2\xfb\xc8\x41\x96\x4d\x40\x5e\xfb\x23\x97\x1b\x82\x05\xfe\x09\x39\x1e\x2f\xdf\x35\x52\x84\x55\x8c\xa0\x26\xfd\xd1\x2c\x03\x35\x6b\x03\xcd\xb5\x54\x8e\x7f\xbe\x7e\x94\x38\x10\xa1\x65\x03\x36\x3b\xf7\xc7\xcb\xc7\x6b\xfc\x9d\x54\x11\x2c\x9e\xf8\xa8\x3a\x87\x61\xe4\x44\xc9\x3f\x47\x6b\xb2\xe9\xbe\x2f\xf2\x08\x95\x15\x72\xe1\xec\xbb\xc6\x66\xfe\xeb\x02\xd8\xf2\x2e\x39\x55\x81\xd5\xc2\xcc\x30\xa1\xb8\xfc\x1e\x15\xfe\xe8\xb9\x15\x46\x74\x29\xba\xc2\x8c\x5e\x33\x9a\x08\x45\x0c\x58\x6b\xf6\x4d\x34\xcb\x1d\x1b\x0b\x56\xc1\xc4\xee\xb4\xda\xa1\xfd\xb2\x54\xc9\xf5\xae\xe5\x5f\xfd\xba\xa4\xa0\xe2\xdb\x9f\x8b\x94\xc1\x5f\x14\x44\xa5\x72\x7c\xd1\x93\x9a\x7a\x64\xbd\x54\x8e\x4f\x37\x6a\xbd\x90\xd6\x31\x30\x83\x38\x98\xe3\xb2\x9b\x78\x81\xbe\x2c\xe9\x81\x93\x7a\x4b\x3b\xcc\xff\x7d\x38\xfb\x4f\x6b\x11\x4b\xee\xa6\x94\x03\xba\xdb\xb4\x79\x01\x85\x36\x88\x29\x9b\xab\x7a\xdd\x19\x46\x4c\x70\x09\x27\xa7\xe9\x80\x66\x74\x71\xa6\xde\x63\x40\x39\x98\x08\x0e\xc3\xf9\x97\x76\x4e\x36\x1b\x4d\xcc\xd2\x62\x26\xe7\xad\x6e\x99\x15\xb9\x15\x2c\x10\xd6\xb9\xeb\x1e\x97\xfe\x2f\x35\x2c\x9d\x7b\x8f\x5d\x98\xbd\x3f\x49\xd6\x29\xd5\x28\xe5\x69\x3e\x7e\x69\x5f\x3a\xb0\x48\xba\xf1\x34\x9b\x8e\xbb\x75\xba\xd1\xe1\x55\x31\x63\xd8\x67\x18\x00\x88\x72\xf6\xf0\x5d\x01\xc3\xf1\x19\xe4\x94\x52\x39\xee\x5d\x34\xc9\xb8\x8f\x73\xe7\xf7\xf4\x48\x59\x94\xf9\x1b\x15\xdc\x01\x16\x9f\xc8\xab\x96\x50\xc9\x46\x4e\x0d\x10\x9c\x47\xb4\x96\x8d\x24\x69\x37\x89\x98\xbf\x7e\x4a\x05\xc6\x3e\xe4\x79\xb0\x2d\xca\xff\x6d\xcd\x94\xcc\x18\x19\x5b\x51\x48\x75\x7c\xe3\x67\x47\x8c\xd1\xe6\x51\x51\xdd\x86\x62\xed\x07\xa3\xb3\x61\xa6\x4e\xf9\xc2\xed\xd6\x29\x86\x26\x48\x0a\x49\x96\xe8\xb0\x8f\x1e\x1c\x25\x3e\xb7\x43\x40\xa3\x7c\x38\x77\xd1\x31\x2d\x64\x5b\x16\xaa\x40\xc2\xf8\xa9\xf6\x79\x6d\xcc\x10\xd7\xc3\x1d\x30\xc0\x84\x2e\xf2\x64\xf2\xcf\xdd\xde\x9e\x7d\x68\x36\x6a\x2a\x61\xcc\xc2\xaf\xef\x36\x52\x40\x47\xa5\xa3\xd6\xc1\xc9\x8a\xd9\x01\xe5\xad\xbe\x9e\x8a\x6a\x35\x78\x50\x2b\xdb\x35\xed\x1b\x3b\x09\x39\x15\x04\xfa\xf8\xfb\x8c\xc1\x11\xd7\xb7\x94\x70\x80\xdc\x60\xa7\x06\x84\x91\x8e\x84\xbf\xbd\xc3\x58\x7a\x53\x05\xb3\xca\x7d\xef\x29\x03\x43\x01\xc2\x1c\x96\xd4\xaf\xce\x1d\xbc\xd6\x30\x56\x8a\x3c\xa9\x40\xb5\x64\x94\x11\x3b\x90\xd5\x90\x9c\xe6\xa2\xc5\xd4\x3c\x21\x08\x29\x20\x01\x92\x6f\xf6\xdc\x3b\xd9\x07\xd3\x47\x89\x17\x9e\x28\x37\xe6\x77\x3d\x61\x3a\x2f\xf2\x75\x86\x90\xea\x7a\x6e\xa5\x5e\xeb\x92\x3a\xaa\x12\xe8\x02\x87\x9f\x30\x35\x2d\x93\x5f\x21\x3b\xe8\x3d\x23\x26\x6a\xd7\xde\x77\x10\x8c\x07\xb9\xfe\xdc\xcf\x8a\x9a\x96\x2b\x43\x3e\x97\xaf\x8f\x5f\xbf\x38\x8b\x9b\x93\x78\xfd\x96\x37\x59\xbb\x3e\xad\x7b\x83\xc1\xd4\x94\x73\xc2\x41\x43\x70\xac\x63\xb0\x23\x89\x0c\x82\xcc\xbd\x6e\x6d\xbb\x9e\x98\x18\xb6\xb1\x27\xfd\xe1\x0a\x63\x9f\x34\xde\xb6\x1c\x7d\x89\xc8\xf8\xb0\x3c\xdd\x49\x7b\x96\x1c\x8f\x03\x0f\x6b\xe5\x1c\xc1\x75\x10\x3f\xc9\x8d\x5d\x24\xaa\x0c\x07\xe3\x06\xbc\xd5\x7f\xd9\xdb\xea\x2e\x8c\xbd\xaa\x54\xe5\xcc\xc7\x46\xcb\xd9\x20\x8e\x83\x53\xa5\x9d\xf7\x5f\x54\x47\xd6\xb2\x29\x81\x17\xdb\xbd\x4f\x23\x98\x0f\x60\xd7\x87\xce\x04\x2a\xf0\x0f\xbc\xa7\x01\x3b\xc1\x78\x21\x1e\xf1\xb6\xf4\x9e\xc1\xc0\x5b\x18\xdf\xab\x15\x31\x73\xe7\xcf\x07\x01\x9b\xb3\x46\x6a\x3e\xa2\x24\x20\x80\xb6\x4d\x75\x31\xae\x3a\xa0\x49\x45\x83\xa6\x28\xd0\xcd\x2f\xe6\xcd\xe9\xcd\x11\x62\x21\x66\x15\x64\x35\x20\x8a\x7d\x6a\x87\xa6\xa5\x1c\x85\x0e\xa5\xfc\x49\xfc\x75\x86\x86\x49\x23\xae\x4b\xc4\xdf\xff\x8c\xc6\x51\xf2\x11\x2b\xcd\x4b\xde\xc7\x7f\x5c\x92\x96\x1f\x04\xb7\x4a\x29\xde\xb7\x49\x49\xa0\x61\xd8\x74\x1e\x5e\x69\x20\x6e\x40\xac\xd0\xf0\x9a\x7c\x60\xec\x99\x66\x82\x70\x1c\xec\xd5\xe1\xa8\x43\xc8\x7e\xf4\x01\x3e\x6c\x59\xca\x75\xfe\xe4\x60\xc0\x36\xec\x0a\x6c\xcc\x70\x87\xc4\xaf\xbb\x06\x7e\xd2\x42\x8c\xa9\x65\xfb\x5f\xf7\xf1\xa2\xf9\x63\x8e\x82\x90\x04\x5a\x64\xac\x38\x91\x18\x87\xfc\x7c\x99\x9a\xa1\x04\xfd\xc8\xd5\x75\x1c\x46\x08\x15\x63\xd0\x26\x87\x8b\x24\x9a\x97\x6f\x4f\x4b\x53\x54\xa4\x17\x99\x85\x8f\xcd\x57\xeb\xb2\x1a\x76\x74\xcd\xbf\xcb\xa6\xb5\xc8\x37\x67\x1f\x54\xe1\x23\x97\x67\xf7\x5a\x16\xff\x9d\x59\x7a\x77\xee\x9b\x1e\xaf\xd4\x50\x95\x5b\x21\x97\x34\x18\x58\x03\x79\x49\xef\x07\x10\xca\xae\xbb\xcc\x2d\x19\xab\x0a\xa9\x2a\x8e\x88\x82\x67\xfc\xb4\x9d\x16\x04\x15\xcd\x45\x3b\x6e\x7b\x5f\xcd\xcd\xfb\x68\x80\x7d\xbb\x65\x6e\xbe\xe5\x14\x15\x6b\x42\x16\x85\x76\x2d\x72\xa4\xdb\xd1\x07\x5f\xe0\xc7\x34\x4c\x5a\x5a\x20\xd4\x72\xa2\xfd\x47\xb7\x18\xd0\x3b\x52\x73\x04\x32\x2d\x3e\xc8\xb1\xd6\xa5\xeb\x08\x13\x7e\xbd\xf2\xc1\x8c\xde\x66\xc4\x09\x1b\x35\x30\xa8\x13\xc2\x50\xf4\x14\x43\x93\x25\x08\x51\x48\x02\xe0\x1e\x0a\x48\xd7\x8f\x36\x6b\x8c\x3c\xe4\x40\x65\x9c\xbf\x6e\xa3\xe6\xd1\x45\xc3\x90\xba\x42\xd0\x22\x77\x69\xd5\x9c\x48\x85\xb6\x8a\xb1\xbf\xdc\xa7\x4e\x8c\x8d\x43\x9c\x24\xfa\x01\x3e\x75\x2b\x3c\x7d\x52\x7a\x45\xea\x7c\x65\xbb\x7a\x1f\x7f\x5d\xf3\x67\x7e\xec\xea\x15\xc9\xaf\xbd\x7a\x91\x91\x56\x22\x2f\x69\x9f\xc0\x07\xea\xd5\xb5\xe3\xf4\x5e\x9e\x84\x5c\x11\x3d\x7f\x78\xb1\x52\x74\x67\x44\x6b\x6a\x72\x6f\xaa\x77\xd0\x44\x16\x6e\x68\x07\x65\xe4\x11\xc3\x08\x1b\x6c\xcc\xa1\xba\x5d\x7c\xb9\x18\x25\x52\x86\x49\x3d\x29\xba\xce\xa9\x66\x66\xfa\x49\x32\x82\xad\xe7\x3a\x4d\x30\x81\x3a\x24\x04\x7e\x68\xfc\xe3\x37\x67\xe8\x69\x06\x18\xb7\xe0\x6b\x69\x9e\x91\x2b\x6d\x0d\xae\x4e\xfd\x41\x4e\xe2\x2f\xc7\x5f\x9e\x6c\x98\x04\x23\xe6\x10\xcc\x44\x03\xb5\xe3\x9d\x16\x9f\x12\x2a\x05\xb1\x72\x9f\x9c\x32\x56\x16\x63\x16\xf1\x1d\x61\xfb\x9d\x63\x47\xf4\x71\x39\xec\x25\xe3\xe7\x35\x2b\xc1\xf9\xbd\xa1\x36\xbd\x2e\x7c\x79\x8b\x39\x34\x8f\x92\xfb\x24\x86\xe6\x1f\xf0\x74\x56\x33\xc6\x3e\x9f\xd3\xdf\xb6\x5a\xa1\x9c\xba\x3a\x93\xdf\x3a\x7b\x91\x10\xf8\xa4\xcd\x3a\x65\xb4\x2a\x8c\x56\xbe\xca\xf5\x74\x4b\x57\x21\x1f\x79\x38\xc8\x3a\xe9\x9c\xf5\x92\x21\xbb\x8a\x45\x63\x75\xce\xb2\x36\x49\x07\xe2\x53\xb7\x74\x9e\x78\xd5\x93\xe6\xba\x8d\x61\x5e\x06\x42\x0c\x1b\xf1\xbc\x40\x83\x30\x8a\xaa\xfd\x68\x30\x03\xd5\x0f\x46\xf3\x6b\xb5\x18\x54\x4d\xaf\xd4\x54\x4d\x6b\xd9\xe1\x78\x13\xdb\xa0\x4f\x98\x12\x27\x8f\xbf\xa9\xfc\xa7\xe1\x79\x8e\x98\x39\x56\x9c\x04\xe2\x85\xa5\x8a\x83\xbc\x46\xa9\x1c\x3f\xdb\x33\x45\x7b\xc7\xdc\x1b\xae\x9f\xba\x28\xed\x9a\xbe\x60\x14\x52\xc4\x05\xec\x36\xdf\x24\x4e\x09\x55\xc4\x9c\x77\x81\x66\xd7\x10\xff\xd0\xa8\xf7\x25\xd2\x5d\xee\x3d\xc5\xa0\x2c\xaa\xb5\x3c\x4e\x5e\xdb\xe5\xf7\xce\x9c\x6e\x14\x70\xcc\x02\x3e\x0a\x6f\x80\xe5\xd4\xf1\x86\xfd\xd9\xb9\x4c\x15\x0d\xf2\xfa\x7b\xfd\x7e\xa5\x32\x6b\x27\x31\xb5\x18\xed\x31\xb5\xbe\xeb\x30\x6d\xe2\x9d\xd0\x75\x8b\xb4\x02\x2b\x69\x8e\x05\x1e\xe4\x9d\xd7\xc4\xe0\x38\x62\xdc\x23\x25\xf7\xe3\xc5\xfc\x4f\xea\xc8\x15\xe4\x81\x0f\x0a\xe6\x58\x25\x62\xb0\x81\xfe\xe6\xd6\x49\x5a\xab\x8f\x00\x3f\xa2\x76\x7f\x74\xb1\x91\xfc\x1c\x24\x50\x24\xc9\x4f\x9f\xb9\x67\xaa\xde\xb2\x20\x1f\xde\x97\xfe\x03\x0a\xcf\xcf\xd2\x56\x29\xb4\x42\x87\xf4\x46\xeb\x8e\x65\x7a\x60\x47\x5e\x00\x62\x69\x16\xb4\x17\x8f\x3e\x65\x0e\xdb\x83\x00\xa7\x63\xcb\xb8\x67\x5d\x9a\x4e\x1c\x5d\xf1\xb6\x78\x7a\xaf\x0a\x24\xfd\x49\x62\xb4\x60\xcf\x52\xcc\x1f\x6f\xd7\x22\x49\x53\x00\x81\x10\xe7\x62\xcf\x7c\x55\x73\x61\x52\xd3\x3b\x4d\x29\x3b\xb0\xec\x7e\xc4\xc2\xa1\xe4\x11\xde\xbf\x4b\x85\x30\x8f\xd4\x31\x83\x30\x9f\xbb\xf0\x91\xec\x31\xaf\x44\xc4\x01\xf5\x1d\x79\xcc\xef\xce\x94\x7b\x18\x25\xd5\xf7\x0f\x57\x18\xe2\xa5\x5c\xa3\x22\xb5\xf5\xbf\xda\x31\xc8\x60\x3e\xb6\x42\x16\xb9\xb2\xa2\xe9\x99\x9d\x3d\x53\x73\xc5\x3a\x63\xe6\xeb\x66\xf5\x0e\x30\x1c\x81\x7d\xb8\xfc\xbd\x6c\xca\xae\xf4\x51\xd6\x70\x51\x96\xf9\x58\x2c\x55\x04\x72\xc0\xe6\xc8\x81\x62\xc7\xf6\xf1\x1a\x8d\xdd\xa9\x4a\x49\xed\xfc\xe7\x6e\xd5\x0a\xb6\x8e\x52\x39\xbe\x72\xbc\x58\x0d\xb3\x70\x30\x95\xed\x9e\x7e\xca\xb9\x99\xdf\x4a\x41\x1e\xd6\x3a\xe1\x40\xef\x6f\x2b\x0d\x6f\x71\x14\x58\xd4\x41\x99\xdd\xed\xa7\x2f\x31\x8c\xbe\x09\x37\x68\x2d\x8e\xbc\x50\x1d\x3a\x7c\x73\x44\x9a\xc8\xc1\x5e\x2a\xfb\x74\xdf\x01\xe3\x1e\x53\x2e\xc8\x18\xef\x35\x18\xaf\x28\x0a\x6d\xca\xc8\x10\xe6\x3f\xf5\x8a\xb7\xa6\x9a\xb5\x7e\x15\xbb\x9e\x86\x60\x2b\x6e\x70\x0c\x7c\xb1\xe7\x19\x0f\x35\xf7\xa7\x03\x53\xcd\x12\xa3\xdf\xd0\xd5\x19\x38\xa8\x92\x82\x4f\x31\x4f\x85\xc3\xb9\x6f\xed\x4e\x73\x33\xa9\x6a\x6e\x2b\xf9\x6f\x8c\x34\x15\x38\x87\xb0\x27\xdd\xcb\xb6\x36\x4d\x08\x04\xae\x12\x8b\x6b\x3d\xc3\x50\x60\xe7\xb5\x2d\x0c\x20\x25\x9e\x9b\xbb\xe8\x62\x75\x45\x2b\x38\x08\xe5\x02\x11\x24\x29\xee\xe1\xbd\x07\xd8\xf0\x96\xe3\xc2\x7b\xd9\x1a\x9d\x51\xcf\x23\xa6\x1f\xd2\xc0\xfa\xd3\x35\x48\x03\x87\x4e\x30\x41\x15\xb7\x06\x2d\x87\xbb\xb2\x0d\xe7\x2e\x32\xf8\xc0\x37\x47\x24\xc4\x22\xfc\xdd\xb0\x27\xfb\x08\x87\x88\xd3\x30\x42\xed\x52\x8d\xe1\x52\x25\x81\x4b\x02\x0e\x14\xf8\xe7\x99\x2a\xda\xf9\x11\x0b\xa2\x4c\xb0\xfa\x7f\x87\x38\x93\xe7\x72\x51\xad\x98\x45\x46\xef\xb5\x5a\x02\x22\x61\xab\xb6\xd2\xca\x8b\x27\x6a\x04\xfd\x3e\x6c\xf1\x60\x08\xc9\xe9\xc8\x29\x06\xfe\x31\xe9\xc2\x78\xd7\x2c\x86\x0e\xa3\x37\x6b\x8a\x10\x9a\xf6\x8c\xf2\x04\x40\xa5\x72\x9c\xeb\xd4\x46\xba\x34\x90\x66\xde\xf1\xe0\x25\x69\xd7\xec\x75\xf4\xc9\x8d\xd9\xb2\x58\x1b\x8c\xda\x18\x7a\xc6\x97\xde\xd5\xa6\xbb\xc8\xab\x92\x2a\xb2\xb8\x96\xcd\x73\x4f\xb4\x19\x21\x4c\xe8\xd5\xc5\x07\x97\x6a\xba\x16\x52\x82\x10\xdf\x31\xa9\x25\x23\xf6\x63\xdc\x80\xe1\xb5\xeb\x9b\xa2\x7f\x35\x01\x7b\x97\x3b\x93\x8d\xcc\x4c\x2e\x40\xf2\x11\xcd\xb1\xb3\x43\xd3\xb1\xa0\xe9\xa2\x27\xf9\xd1\xff\x7d\x8c\x57\x1a\x2b\xc0\x08\x52\x57\xfb\x6b\x3f\x9c\xfd\xa5\xa8\x16\x62\xe6\xd1\x74\xc9\x31\x5c\xf8\xd5\x3d\xda\x3c\x05\xb3\x26\x12\x08\xae\x11\x9e\x71\x89\x30\x0a\x6d\x31\x45\xdf\x69\xe8\x25\x31\x1a\x79\xd5\x10\xf6\x20\xfc\xcd\x6d\x38\xd2\xaa\xfc\x20\x88\x2b\x2b\xb5\x0d\x7b\x05\x09\xa7\xcb\x7c\xef\x21\x3d\xe1\x24\xb5\x42\xa9\x1c\xbf\xfc\x7a\x1a\x45\x6d\xd0\x22\x9f\xf0\x5a\x9a\xe4\x06\x35\x19\xa6\xf8\x9d\xeb\x3f\x08\xff\xf2\x82\xae\xe4\x67\xfd\xf3\x2d\xd9\x50\xc9\x7d\x83\x86\x44\x5c\xe2\xa3\xd5\x5f\x4e\x6e\xd9\xfc\xe8\x9a\x3e\xd5\xc7\xd5\xb5\xa8\xd2\xa8\xee\x20\x6d\x5b\x5a\xf8\x97\xbd\x9a\x30\x1b\x22\x7c\xdf\xfe\xfe\x46\xa3\x74\x66\xa8\x8e\xab\x83\x5c\xfe\x6d\x84\x9a\x53\xcc\xeb\xe8\xe9\x86\x91\xe5\x31\x43\x38\x1f\xa3\xaa\x68\xb1\x73\x9f\x7f\x52\xab\x03\x70\x9f\xae\x38\x95\xeb\x9d\xae\x08\x7a\x08\xec\x9f\x8a\x37\xb6\x9b\x26\xc3\xb4\x09\x02\x4e\x02\x40\x30\x75\x1b\x57\xc6\x5c\xc2\x70\x50\xf5\x4e\x30\x5f\xf8\x82\xe1\x4d\x6e\x63\xe4\x84\xb6\x40\xf0\xe4\xbf\xf2\xba\xaa\x6a\x60\x29\xd8\x22\x1c\x52\xfc\xc4\x93\x9a\x24\x3b\x6a\x7a\x58\x37\x0c\x99\x24\x3c\x19\x7c\x3e\x80\x82\x61\xda\xff\xdb\x39\x3a\x75\x48\x73\x64\x22\xfa\xd4\x8b\xe9\xb2\xa1\x2b\x63\x66\x3c\x5c\xbc\xae\xbd\x4d\x5c\xcf\x8a\x83\x4b\x21\x76\xb0\x6f\x8b\x5c\x7b\xfc\xf5\x71\x7a\x94\xe0\x25\x72\x79\x38\xd7\x33\xdb\xd4\x9b\xa8\x13\x8f\xa7\xae\xfc\x5b\x6c\xb4\x28\xfa\x9c\x46\xa9\x5f\xa8\x29\x6e\xe9\x4b\x8f\x9b\x87\xc1\x0e\xf1\xbc\xa3\xea\x3d\xb8\x91\x13\x92\x24\xd2\x0b\x98\x47\xc4\x26\x64\x20\x20\x2c\x14\x3f\x27\xf7\x6d\xc3\x2b\x8b\x61\x17\x89\xed\x40\x71\xe0\x51\xe3\x94\x20\xa7\x21\x05\x0e\x8a\x0b\x7b\xce\x35\x6a\x1f\x0e\xeb\x39\xd1\x10\xf3\xb2\xa6\x2e\x46\xec\xb8\xc9\x7d\xf9\xce\x66\x53\xf8\xbd\x0f\x07\x9a\xa8\xe8\x05\x87\xb3\x09\xa9\x81\xbd\x2a\x72\x9c\x6c\x3e\x9e\xbe\x59\x83\x69\x52\x2f\x84\x49\x79\xee\x58\x85\x0f\x64\xae\x45\x01\xd1\xe4\xdc\xe2\x8d\x33\x74\xde\x63\x2d\x62\x0e\x6f\xd8\x7a\xde\x15\x93\xc1\x90\x3a\x80\x92\xfc\x4a\x5b\x8b\x66\xaa\x68\x5e\xa9\x70\x24\x2d\x9e\x37\xca\xe0\x13\x51\x86\x91\xd0\x2b\x84\x91\xc9\xc1\x7b\xcd\xb1\x3c\x6b\x62\xe2\x38\x28\x89\xa1\x10\x5c\x3e\xb6\xd9\x00\x95\x49\x35\x68\xc9\x85\xfe\xd0\x55\x59\xa4\x1d\x72\x03\x6b\x4e\x2b\x06\x23\xff\x4f\xf7\x29\xa2\x6f\x15\x83\x4e\xe5\x09\x8e\xfd\xea\x51\x2d\x1b\x18\x56\xc7\x55\x11\x63\xae\x9d\x01\x51\x39\xf9\xfe\x5d\x3d\x99\xd5\xd9\x6c\x63\xcc\x21\x76\xb1\x30\x23\x8d\xd7\xbc\x65\x8e\x29\x42\x22\x30\x15\xb1\x37\x33\x9d\x13\xfa\x61\x2b\x7e\xe5\x33\x53\x0d\xb5\x32\x0e\x3e\x99\xab\x15\x02\x1b\x76\x0b\x09\x1d\xc4\x0d\x6d\xfe\xfc\x88\xe6\xd6\x4b\x92\x3f\x99\xb4\x5a\xb3\x43\xd6\x47\x6c\x1f\xb9\x23\x3b\x61\x87\x1b\x51\xe1\xf5\x79\xa9\x4a\x1d\x07\x31\x01\xb3\x79\xcd\xd0\x11\xea\x07\x37\x17\x08\x85\x77\xaf\x69\x09\x93\x49\xf7\xcf\xff\xdd\x39\x5b\xb4\x79\xae\x80\xfb\x8d\xdc\x3d\xa9\xa5\xca\x8c\x2c\x01\x01\xb7\x77\xa7\x9f\xfe\xe6\x88\x96\xca\xf1\xa8\xe3\x1a\x7c\x31\xc9\x75\xfd\x9c\x69\x10\xbf\xf1\xea\x18\x4d\xd1\xcb\xe2\xf4\xdc\x4f\xdd\xdf\xae\x31\x07\x5d\xc4\xfd\x05\xc5\x80\x6e\xfa\x43\xbc\x0a\x5b\xa1\x8c\xf6\x8a\x4b\xde\x4e\x7f\x9f\xc7\x75\x0a\xae\x37\x54\x44\xeb\x28\xb4\x61\x49\x27\x1d\xab\x73\x0f\x1a\x8f\xcd\x8e\x5c\x74\x62\x5d\xb0\xa5\x8f\x2b\xc0\x4c\xc6\x70\x5d\x7c\xa2\x4f\x3e\x91\xbd\xbf\x2e\xf5\x88\x85\x8c\x29\xe5\x9d\x07\x4d\x39\xcb\x7e\xe2\x05\x8d\x41\xfd\x14\xe4\xcb\x4f\x6a\x15\x35\xb2\x1a\x9c\x28\x96\x5b\x37\x99\x87\xc5\x95\xd2\xcf\x12\x44\x97\x86\x74\x0e\xb3\x07\xf4\xae\x3c\xb9\x3f\xfb\x56\xba\x7b\x2f\x28\x75\xce\xeb\xea\x82\x4a\xe7\xcd\x11\x5c\x67\x6d\x7e\x67\x67\xa9\x1c\x8f\x3c\x35\xfb\x81\xe6\xf7\x74\x75\x99\x36\xd3\x85\x1d\x0f\xb4\x67\xbe\xba\x04\xd4\xc1\x2f\x9b\xd2\xad\xa6\x49\x28\x0a\xa9\x4b\x2b\x82\x7e\xb2\x7f\x9d\xaa\x89\x2a\x38\x0c\x75\xfd\xe1\x03\x9b\x4c\x7d\xf7\x20\x62\xc8\x93\xe3\x8b\xfc\x4f\xae\x35\x91\xd6\x51\xc8\x90\xd3\x21\x15\x28\xca\xf7\xf2\x6e\xcf\xa6\x5c\x4d\xde\x19\xaf\x6d\xf2\x68\x14\xf0\x15\x44\xbf\x61\x2f\x55\x63\xf8\xe6\x88\x87\x1c\x3e\x66\xb9\x67\x97\x30\xef\xb7\x91\xee\x15\x59\xf8\x57\x65\x6b\x12\xd8\x49\x15\x7a\x8a\xe1\x95\xb7\xa0\x63\x61\xb7\x98\x2b\xfc\xe5\x9e\xb3\xcc\x3b\x00\xa5\x5a\xc8\xd5\xec\xe1\x83\xdc\xf8\xcc\x79\x46\xbd\xe6\x52\x8b\x21\x21\x50\x64\x66\xfc\xad\x63\x85\x14\xd6\x40\xc8\xb3\x72\xf2\x6b\xb6\x6a\x2c\x95\x12\x0e\x6d\x0f\xec\x56\x7a\xef\x6c\xd3\xa6\xae\x8e\xcf\x29\xfd\x90\xb0\x2b\x53\x35\xe4\x51\x13\xb3\x9a\x43\xfb\xc5\xa9\x99\xd0\x66\xe2\x2c\x11\xb3\x6c\x09\xad\x29\x18\x9b\x6d\x4f\x60\x96\x84\x7a\xf6\x1b\x43\xaa\x29\xea\x5a\xb8\xb0\xbb\x54\x8e\xcf\x9f\x6f\x50\x24\x89\x94\x31\x85\x4e\x3c\x5a\xaf\xe4\x9c\x60\x86\x35\x26\xaf\x69\xa2\x47\x7e\x90\x7e\xcb\xfc\x78\xc3\x24\x94\x80\xb1\x3e\x3c\xc3\x8b\xb7\xeb\xb3\x9f\xa4\xaf\xd3\xcb\xbe\x65\x86\xdd\x60\x85\x61\x3c\x24\x63\x57\xee\x34\xc3\x98\x51\xf9\x53\xf4\x43\xf2\x7d\x6e\xac\x89\x5d\x01\x2b\xf6\xaa\xd0\x04\x2d\x5c\xf6\x58\xbb\x3e\xf9\x6c\xea\x68\x8a\xfc\x03\xdb\x84\x22\x9d\xc5\x92\x6c\x90\x32\xbd\x5f\x15\xe3\xce\xc5\xc8\x6b\x98\x5e\xac\x17\xe4\xf9\xcc\x10\xd5\x19\xd0\xf6\xc1\x07\x7d\xb8\x70\xf5\x41\xd5\x09\xda\x60\x06\xcf\x87\x65\xc5\x0f\x76\x6b\x4c\xd2\x24\x11\x7d\xad\xdb\x00\xae\x47\x8d\xc8\xe9\xd3\x27\x0e\xb9\x59\x9b\x34\x98\x32\x46\x55\xad\xe5\xcc\x7f\x6c\x43\x36\x09\x54\x1c\x24\xf0\x13\xf1\x87\x1f\x14\x3a\xcf\xbe\x8f\x64\xf7\x9c\xbf\x4a\x93\x9c\xf5\x28\xab\x06\x21\xa3\x2e\x40\xdf\x56\xaa\x52\xe7\x5c\xc9\x3c\xb9\xec\xc0\x59\x3a\xb1\xf9\xd2\x25\x73\xca\xad\xf8\xd4\x1d\x59\xd2\x56\xf2\x50\xc3\x40\x60\xea\xb3\x7f\xf5\x91\x67\xf4\xe3\x12\x84\x88\xc8\xf0\x77\xfb\xfb\x86\x8d\x99\xc7\xd5\x65\x2f\x2c\x95\xe3\xb7\x5e\x32\x14\x7b\x09\xb3\x1c\x5e\xe9\x15\x88\x32\x90\xa4\xc9\xe9\x8a\x71\x35\x3b\x9d\xb9\x50\xdc\x85\xc9\x2b\x54\x09\x75\x73\x84\xbc\x90\xc0\xaa\xbe\xf0\xfb\xbd\x67\x1b\x4d\x56\x85\x58\x36\x8a\x06\x32\x94\xac\x3b\x46\x8c\x16\x41\xd3\x42\xbe\x20\xc4\xe6\x6f\x7f\x5b\xfd\xc8\x1a\x43\x20\x6c\x09\xa3\xfa\x57\xb3\x9f\x17\x55\xdc\x54\xef\x66\x7c\x9b\x9a\x11\x29\xb4\xb6\xb4\xf7\x3b\xbc\x41\xc5\x67\x97\x32\xa6\xdb\x7f\xe7\x76\xd4\xcc\xda\x2e\x08\x19\x2f\xed\xe4\xb0\xb9\x3c\x59\xbd\x5c\x09\xc3\x81\xc2\x72\xf7\x46\xad\x97\x82\x10\x99\x04\xd5\x29\xfc\x4b\x2d\x26\x36\x18\xcb\x41\xf6\x5b\xb4\x34\x5b\xba\x79\x3e\x3b\x21\xa0\xea\xa6\x11\xe9\x83\xaf\xc2\xee\x1a\x5d\x3c\x46\x86\x01\x6e\xd4\x02\xa5\xe2\x79\x1d\x13\x45\x5c\x66\x24\x08\x49\xa6\xc7\xfa\xe1\xab\xa6\x37\x68\x13\x3b\xd4\x97\xfd\xd4\x96\xa3\x06\x61\x88\x34\x89\x73\xa2\x8c\x9e\x1b\x7b\xad\x6e\xff\xc9\x92\x96\x3f\x79\xb5\x9f\x5c\x9f\x3d\x53\xb4\xdf\x4b\xbb\xb5\xdc\xe4\x4b\xb4\x55\x54\x15\x83\x22\x79\xa9\x1c\x5f\xa2\x09\x69\x86\x0c\x7b\x55\x6e\x4e\xf9\xe6\x87\xb5\x88\xe5\x85\x0c\x55\x90\x57\x55\xae\xb0\xf2\xfd\x1d\xd1\x45\xd4\x1d\xe2\xfb\x18\x06\xbd\x79\xb2\x9f\x77\xce\xe7\xae\x4a\x7e\xda\x7f\x2c\x19\x2f\xda\xa8\x20\xa3\xe8\x32\x6b\xfd\x94\x13\xf4\x87\x6a\x0f\x52\xbc\xa4\xc8\xcb\x7d\x30\x18\x82\x42\xfb\x27\x8e\x01\xa0\x42\x2e\x01\x59\x7d\x88\x86\xb9\x95\x07\x32\xa2\xee\x94\xef\x77\xe3\xd3\x0e\xcf\xc8\xc4\x13\xb1\x6c\x37\x5f\x72\xfc\x89\x53\xd4\xee\x42\x33\xfd\x2e\x95\xe3\x79\xbb\x45\xd4\xb3\x00\xa7\xe7\x71\xa4\x40\x71\xdd\xdc\x56\xaf\x50\x96\xb6\xfb\xcf\xf4\x2a\xfb\x21\x0e\xf9\x30\xc1\xee\xf1\x9d\x37\x99\xee\x70\xdc\xf1\x67\x08\xf4\x42\x5e\x90\xdd\x0e\xa9\x01\x8d\xef\x9f\x0f\x69\xbb\xed\x90\x61\x1c\x96\x02\x17\x71\x19\x97\xda\x2d\x86\x6b\x2d\x8d\x18\x09\x5c\x91\xea\x6f\x7d\x2f\xfb\xa8\xeb\xb4\x9a\xb1\x74\xcb\xbf\xbe\x38\x6d\x01\x92\x97\x63\x36\x2e\x87\xdf\xe1\xdf\x9f\xc3\xb3\x02\xd2\x04\x6a\x62\x6e\xec\xc3\xfa\xfd\xad\xd7\x89\xb6\xe5\xcd\x15\x6a\xa6\xbe\x18\x72\xfd\xe4\xf2\xda\x00\x29\x80\x4d\xd7\x97\x05\xff\x22\x69\xbd\x95\x60\x43\xf2\xa3\x7f\x90\x37\x40\xf3\x76\x0a\x02\xbe\x7b\x68\x8c\x2c\x1b\x84\x37\x22\x48\x27\xec\x1f\xa3\x55\xdd\x18\x05\x70\x12\x0f\xce\x4f\xbf\x57\xf5\x04\x92\x17\xaf\x6d\x17\x33\x51\x07\x94\x6f\x93\x80\x4a\x5e\x30\x1e\x24\x23\x91\xeb\xdb\xe2\x92\xfe\x6e\x4a\xf6\x00\xce\x17\x32\x4f\x9c\xe8\xf6\xdd\x59\xed\x46\x2e\x8f\x3c\x22\x04\xe5\x9c\x67\x15\x93\x7a\x10\x14\xb3\xae\x7b\x65\x92\x11\xe0\xba\x16\x2e\xec\xed\x98\x73\xd3\x4d\xc9\xb7\xfc\xdd\x3a\x93\xa0\xea\x72\x01\xba\x6f\xee\x30\x76\x15\x28\x29\x6c\x49\x28\xb6\x0e\xc5\x49\x5b\xce\xd2\xe9\x6c\xa8\x81\x59\x29\xa4\xa5\x8a\x06\x44\x2c\x7c\xe7\x4d\x0d\x6f\x4b\xb9\x16\x30\x5c\x95\x77\xd7\x65\x68\x2f\x32\x2f\xfa\x7b\x74\xdf\x68\x86\x1d\xe1\x89\x96\xdf\xa7\xc9\x1c\x50\x4e\x06\x2f\xac\x3c\x06\x2f\xbe\x74\x59\x35\xb2\x24\x6a\xdc\x7c\xf0\x0b\x5e\x68\xf1\x81\xb3\x30\x69\xa6\x3c\xad\xfc\x6d\x8f\x6a\xbe\x7f\xbe\x0f\x4a\x33\x5a\x82\x3a\xbb\x73\xb4\xda\xab\xf2\x3f\xfc\x3b\x17\x8e\x2e\xad\xb2\x41\x87\xdb\x43\xd5\x21\x5d\xb3\xe4\xf2\x3b\xd4\x47\x4d\x8a\x2c\xa0\x0f\x37\x85\x50\x15\x8a\xf8\x1e\xfb\x17\x8e\x59\x12\xbb\x2e\xf5\xfa\x21\x30\x49\xbc\xc0\x25\xb3\xb2\x00\xab\x4a\xf2\x84\x07\x21\x7d\x66\xb3\xff\xde\xc7\x34\x53\xd5\x40\x26\x9c\x39\x8b\xf9\xae\xfe\x32\xae\x5c\x02\x05\xe2\x5d\xa2\x6c\xbe\x39\x22\x12\xc6\xf5\xde\xe2\xec\xeb\x1f\xc2\x8c\xf2\x12\xa0\x7b\xa6\x81\xbf\xe1\xcb\x63\x47\xa1\x65\x8e\xc4\xda\xe6\x0c\xd5\xeb\x02\xe5\xb2\xf3\xbe\xf4\xf3\xb8\x78\x40\x0c\x97\x3f\x13\xea\x66\x97\x52\x60\xba\x54\x8e\xaf\x7f\xcb\x3c\x9d\x40\x29\x98\x03\x33\xac\xe2\xb4\x87\x74\x75\x3e\x69\x5e\x27\xd4\xa1\x3e\xb8\x2b\x5b\x63\x60\x2f\x84\xc0\xe1\xe1\x88\xc1\xed\x87\xa1\x55\xde\xd7\x32\x52\xdd\x13\xee\x42\xf1\xce\x36\xed\xf8\x26\xf1\x14\xa8\x38\xd9\xd3\xf3\xcb\xb1\x9a\x83\x90\x80\x20\x7c\xfc\x4d\x89\x13\xa5\x16\xb7\x0f\xdb\xf8\x98\x26\x89\x95\x19\xfc\xe5\x4e\xf2\x27\x6a\x9d\x2a\x75\x34\x91\xc6\x7c\xdf\xa9\xe7\x19\x39\x26\x29\x2b\x1c\xe4\x55\xb9\x36\x62\xf6\x25\x7f\x5d\x9b\x13\xc2\xb2\x1b\x83\xaa\x42\x6e\xfa\x6c\x53\x5d\x45\xd8\x0a\x95\x87\x0b\x1b\x4f\x3d\x9b\x1f\x01\xfd\xb9\xb4\xe0\xf3\x4e\x7b\x29\x1b\x4c\xe6\x75\x75\x5c\xb0\x40\xbe\xe2\xdf\x2e\x69\x61\xe4\xba\x24\x48\x99\x35\x9f\xbb\x4a\xbd\x1e\xd0\xc7\x50\x3e\x41\x71\xb5\x87\x0f\x3d\xaf\x23\x8e\x43\xb8\xa0\xb9\xbc\x23\xbb\x97\x08\x11\x33\x90\xb2\x86\x91\xea\xf2\x23\x46\x7b\xe2\x50\xab\x21\x0c\x66\xe2\x2d\xbb\x78\x66\xff\x78\x64\x61\x4d\xda\x73\xb8\x58\x9a\xa1\xe9\x3a\xa0\x06\x16\x70\xca\x5c\xcf\x22\xd5\xda\x35\x18\x72\x31\x13\xfa\x65\xc3\xf9\x9f\xee\x33\x1b\xe7\x3a\x0d\x09\x0a\xb1\x60\xa9\xbf\xcd\x37\x6c\xa5\x8f\x31\x21\x05\x6e\x1e\x8a\x3f\xce\xd6\x0c\x07\x91\x83\x49\x1d\x70\x53\x3f\xde\x67\x9a\x80\x46\x8c\xab\x75\xc6\xbf\x3c\xda\xea\x11\xc9\x7b\xd6\x2f\x5e\x95\xbd\x7d\xd3\xe5\xa6\x38\xbf\xd3\x50\xbc\x07\x78\xa5\x28\xb2\x0a\x8f\x16\xa7\x68\x28\x2b\xbb\x65\xb5\x95\xff\xf9\x12\x35\x66\xef\xea\xe9\x85\x2d\xaa\x11\x72\x18\xad\x60\x16\x06\x99\x15\xec\xa9\x9b\xb4\x6d\x3b\x62\x49\xe1\x0d\x0b\x75\xcb\x70\x9b\x77\x48\x10\x62\x4f\xee\x76\x72\x4b\xef\x37\x94\x52\x04\x2e\xdf\x0c\x54\xbf\x58\x6e\x2c\x0d\x48\x43\xfa\xc5\x7d\xef\x90\xce\x04\x00\xb9\x32\x8e\xfc\xaa\xd8\xaa\x47\x93\x3a\xc8\x72\x1b\xd6\xfb\x96\xe1\x45\xc6\x5b\x1f\x15\xdc\x67\x6f\x36\x62\x4b\x10\x44\x58\x4a\x9b\xe6\x5f\xd0\x44\xc2\x38\x6c\x3b\x5e\x7a\x54\xbd\xdb\x90\x11\x57\x74\x24\xa7\x77\xa8\x34\x66\x51\x87\x7a\x83\x32\xca\xbe\x66\xa8\xbb\x22\x1f\xb1\xd0\x45\x80\xbe\x2b\x95\xe3\x15\x3b\xb2\xef\xb7\x6b\x61\x4f\x27\x9f\xf5\xfe\x7d\x9f\x6e\x8d\x6b\x35\x42\x44\x00\x09\xf6\xc2\x7d\xa2\x79\x60\xd4\x1b\x90\x5f\xf4\x9a\x38\xfb\xee\x38\x26\x2f\xe3\x26\x9a\x9b\xf2\x42\xda\x00\x3b\xa0\x58\xb0\x68\x9b\xee\x0c\x0e\x73\xce\x24\x5a\x8d\x6e\xe3\xbf\xa0\xe1\xd1\x7e\x07\xf3\x1e\xe3\xc1\xcd\x7c\xac\x3a\xaf\xab\x03\x3c\x65\x0b\x4f\xa6\xab\x0c\xef\xdc\xcc\x4a\x2e\xb7\xfb\xa8\x50\x63\x4a\xba\x6f\xed\xd7\xaf\xb9\x47\x23\x35\x66\xa7\x63\xd7\x6d\x6a\x59\xf0\x84\xb0\x4b\x15\x41\xe4\xe3\x9b\x0d\xf1\xcf\x5a\x8d\x0b\x4f\xc7\x7f\x35\xbc\x60\x43\xea\x38\xa5\x1a\xc3\x72\x08\x76\xde\x7d\x2d\x82\x00\x01\xf5\x52\xdf\xe2\xe1\xc2\x87\xfa\x52\x3a\x86\xe3\xa4\xe4\xd3\xe0\x48\xfa\xa8\xa8\x1f\x25\x97\xa3\xb0\xdc\xf8\x45\x88\x38\x81\x4f\x3c\x39\x78\xdf\xac\x19\x53\x5b\x1d\xb8\xa3\xe5\xc2\xfd\xd3\x53\xed\x46\x2a\xaa\xa6\xe6\x6f\xb9\xaf\xe6\xb3\x91\x7e\x10\xb9\x88\x58\x36\x39\xa1\xe5\x69\xee\xe0\xe3\x3a\x05\xa3\x12\x35\x38\x23\xef\xd2\x7b\xd5\x47\xa8\x51\xda\x32\x04\xc8\x1f\xd6\xce\xae\xc5\x92\x97\x0b\x17\xa8\x77\xba\xa1\x3b\x5d\x0b\xb1\xc7\x61\x83\x2f\x4c\x37\xd1\x74\x41\x98\xea\x9f\xe5\xff\x71\xb1\xa1\x30\xc0\xb1\x76\x69\xf6\xdf\x32\xd9\x98\x90\x10\x16\xda\xbc\x74\xbc\x64\xa3\xa1\xbc\x51\x49\xee\xa5\xda\xb0\x16\xde\x9f\xc1\x03\xfa\xd5\xa8\x2f\xc3\x27\xc9\x7f\x48\x09\x93\xd5\x2a\xc4\x6c\x63\x26\x3d\xa4\xc2\xda\x82\x85\x5d\x49\xc3\x64\x2c\x9d\x17\xf6\xf4\x94\xe6\xcd\x9f\x37\x9f\xa7\xfe\x19\xf7\x9e\xd8\xa9\x4e\x51\xc7\x9f\xdf\x3b\x3a\xbb\x07\x2b\x95\xe3\x9e\xbd\xc6\xd6\x39\x09\x84\x9c\xa9\x17\x08\xe6\xdd\xdb\xda\xd2\x1e\xb1\xd0\x93\xfc\xd9\xa7\x7b\x8c\x08\x87\xbc\x2a\x0f\xda\xf1\xee\xd1\x3c\xaf\xac\x66\xd8\x2b\x5d\xdd\xd2\xf9\xc7\x0f\x1d\xd7\x04\x0a\xb0\xeb\x0b\xcc\x70\xe1\xc7\x9d\xaa\x73\x6e\x22\x2b\x8a\x40\xc5\xf3\xcc\xa3\x67\xb6\x14\x90\x7c\xdf\x26\x34\xdb\xf3\x47\xee\xd3\xb0\x11\x28\x24\x49\x83\x19\xa0\x1a\x86\x88\x9e\xff\xbf\xdb\x0d\xd5\xdb\x24\x47\xa2\xd6\xe2\x32\x1f\x38\x2a\xfe\xfa\x8c\xd6\x48\x88\xb1\xd4\x98\x39\xbe\xd8\xe8\x92\x89\x07\xaa\x86\xc2\x0d\x89\xcd\xcc\xde\x6b\x05\xbe\xcb\x6d\xbd\x7c\x8c\x92\x7b\x62\xb2\x9e\x1b\xec\x36\xa5\xc5\x22\xb9\x93\x89\xfb\xce\xd0\x65\x89\x40\x70\x5d\x2f\xb4\xbe\xbf\x43\xd8\xde\x53\x87\x34\x69\x55\x93\xff\xfe\xe6\x61\x93\x2f\x91\xf4\xb9\x04\x57\x85\x30\xcb\x0d\x2f\xea\xf6\x93\xc9\x57\xab\xf0\x4a\xa1\x78\xf6\x5b\xbc\xd2\x43\x81\x6f\x23\x07\x70\xb6\x9b\xce\xeb\xff\xff\x07\xfa\x68\x7d\x74\x4b\x8f\x89\x39\xa1\xc7\xad\x22\x93\xa0\x7c\xce\x5d\xe6\x7b\x03\xdd\x08\x94\x1c\x2d\x18\x2e\xfe\xa3\x21\xc5\x68\x31\x54\x4d\x45\x19\xb6\xbc\xa4\x39\x98\x3a\x5c\xf5\xfe\xbd\x7c\xbb\x56\x58\x93\xa4\xad\x55\x35\xe6\xd3\x8b\x46\xca\x64\x0e\x64\x8e\xe2\xb5\x53\x33\xfd\xb7\x59\x0b\x9e\x39\x5d\xbd\xed\x20\xf2\x40\xa2\x9d\x70\xdb\xf0\xc2\x83\xc6\x62\xd8\xa5\x81\xf4\x98\xc8\x8d\x7b\x71\x8c\x6c\xe5\x48\xdd\x93\x6e\xb9\x7f\x7e\x4c\x57\x7b\x8e\x58\xa9\x0e\x2c\x87\xe1\xe2\x75\x9a\xc6\x52\x3f\x72\x1a\xfc\xf2\xdc\x7e\x6d\xf6\xab\xbb\x98\x61\x67\x50\x30\xee\x07\x17\xf1\xdf\x40\x93\x2f\xe8\xd0\x41\xce\x10\xde\xbc\x52\xbd\x3c\xce\x9a\xb5\x61\xe6\x33\x5c\x98\xfa\x7c\xda\x84\x20\xaf\x21\x23\xff\x2b\x2f\x9d\x96\xfc\xe4\xab\xae\x5a\x25\x53\xeb\x8a\xfd\x2a\x4b\x36\x1d\x54\x25\x2e\x49\x62\x80\xfb\xaa\xa9\xef\xcd\x3c\x0a\xf0\x19\xf8\xe9\x5b\xb7\xa8\xe3\x58\x45\x2e\xf2\x84\x54\xb0\xcc\x86\xfb\x1f\xcc\x9e\xe4\x28\x55\x36\xc8\xfd\xed\xa8\x01\x2a\xe3\x30\x4b\x38\x43\xc2\xf2\xed\xc7\x33\x78\x3a\xee\x5a\xd8\xd3\x95\x7c\xcb\xdb\x77\xb5\x89\x68\xe9\xd5\x18\xae\x6a\x3e\x5d\xc5\xcf\x8d\x3d\xcb\xe8\x9e\xa0\x49\xaf\x63\x2f\x35\x66\x7b\xfd\x7e\xc3\xac\x97\x9b\xbf\xc0\x94\x83\xf7\x66\x57\xde\xa2\xb9\x63\x24\xe5\x64\x39\xfe\xe0\xa6\x6c\xe1\x72\xae\xb4\x1f\x9f\xbb\xf6\x74\xad\xe2\xe6\xe5\xd1\x0d\x53\xc6\x69\x08\x37\x85\xf6\x7e\xbb\x25\x46\xf9\x38\x24\x6a\x67\x9e\x1f\x36\xf0\xa8\xc9\xe1\xc1\xc2\x1a\x2f\x7e\x72\x83\x06\xaa\x21\x42\xcc\xe2\xbe\x7b\x8c\xa9\x3e\x66\x8c\x84\x54\x33\x88\x2f\x7c\xf2\x49\xb3\xa1\x0c\x49\x0d\x55\x11\x0f\x8b\xb7\x1e\xe2\x13\xa6\xc5\x34\xf0\x88\xc2\x1a\x9f\xfb\x8a\xb6\x60\xa5\x43\x0e\x6d\x96\xca\x71\xb0\x24\xfb\x70\xab\x08\xec\xfa\x39\x06\x90\x3f\xba\x0b\xde\x50\xbd\x1f\xdf\x89\xa4\x0d\x78\x69\x97\x64\x81\x78\x01\xf0\xec\x44\x44\xcf\x6f\x7b\xd6\x2c\xed\x9b\x38\x10\x8b\x94\xfc\x19\x1b\x34\x91\x20\x24\x64\xea\x16\xb7\x6b\x49\xaa\x99\x04\xb0\x3a\x78\x04\x96\xca\x71\xdb\x23\xa9\x1a\x43\x1f\x35\x13\xe6\x70\x7e\xd7\x63\x86\x4a\x41\x14\x10\x0f\x07\x1c\x48\x14\xdf\xb7\xd2\x58\xd6\x83\xe5\x9d\x00\x48\x1f\xb8\x7c\x8c\xae\x9a\xd0\xe4\x65\xc8\x4f\x16\x69\xa3\x38\xc4\xac\x0c\x4e\xaf\xe7\x21\x4d\x00\x32\xc8\xc0\xc9\xcb\x8f\x9a\x46\xcb\x42\x2d\x0e\x2e\xc5\x0a\x43\x88\x21\xe9\xd6\xe4\x6a\xf0\xa7\x5b\xcd\xbd\xf1\xa0\x47\x6c\x94\x51\x6d\xcb\xfd\xe4\x7e\x3e\x94\x59\x4e\x03\x6e\xfe\x90\xd5\x6e\x9f\x66\x82\x69\x42\x36\xc8\xd3\xf2\xb2\x15\x67\x9a\x8f\xc0\x45\x1e\x5f\x81\xf2\xe7\xf0\xb5\xcd\x29\xbc\xfe\xba\x95\x8b\x33\x95\xed\xc2\x43\x06\x86\x14\x79\x08\x26\x09\x69\x15\x55\xb8\xed\x0e\xf8\x2b\xa5\x2b\x30\xad\x33\x04\x2a\x40\x66\x5b\x34\xbb\x47\x63\x35\x52\xbf\xc4\x90\xd7\xe0\x01\x94\x6a\x4d\x82\x8f\x82\x00\xfe\x47\x79\xb8\x58\x99\x62\x72\x82\x1c\x87\x66\x9e\xc7\x85\x93\xdb\xcd\xd4\x8c\x25\x40\x2b\xff\xdf\x2b\xb4\xc5\xa7\x65\x45\xbe\x72\xe8\xfa\x8f\xe5\x86\xf5\x8c\x2f\x41\x89\xa2\xa4\xce\xfd\x6c\x86\x0a\x00\xd4\xe6\xca\x95\xcd\x4e\x43\xf7\xac\x67\xbe\x7c\x7b\x7d\x9a\x47\x15\x23\x01\x0f\xf5\xf9\xd1\x23\x45\x6a\x75\x1c\xa1\x9c\x93\xbf\xf9\x79\xb3\xc7\xf1\x50\x60\x98\x7b\x97\xae\x57\xe9\xa9\x16\x39\x8e\x84\xf4\x27\xaf\x69\x66\xad\xe5\x5d\x84\x51\x46\xb9\xa4\xf0\xbd\x26\xbf\xfb\xa9\xdc\x05\x6c\xc6\xbf\xb7\x29\xed\x06\x6c\xce\xc7\x1d\x73\xbd\x49\x03\x74\x61\xdb\x29\xa8\xd7\x85\x6f\x2c\x36\x7d\x7a\xa1\xd8\x97\x52\x84\xd5\xcb\x15\xcc\x02\x27\x65\xc3\x78\x5f\x82\xf4\x09\x94\x11\x3b\x66\x2d\xfa\xff\xe2\xcc\x0a\x27\xc9\x2c\x17\x3f\xf2\xa8\xaa\xf6\x6f\x8e\x88\xd5\xe0\xd3\xe9\x3f\x5e\xac\xb7\x95\x9e\x85\x2c\x04\x3b\x1b\x66\xf8\x52\x55\x70\x3d\x92\x17\xfd\xa9\x15\x86\xb6\x42\xe4\xba\x98\x09\x81\xd9\x03\xf7\x4a\x41\xa3\x92\x4b\x82\x50\x8c\x12\x0b\xf3\x06\x4e\xd0\xca\xc3\xf1\x8a\x9d\x03\x26\x8a\xa9\x02\x88\x11\x19\x18\x73\x03\x46\x47\x82\x9b\xb4\x21\x18\x46\xb9\x87\x5f\x56\xac\x6a\x37\x0a\x70\xe4\x66\x00\xa1\x55\x4d\x78\xb9\x89\x78\x50\x15\x27\xf7\x1b\xef\xf2\x70\xbb\x1a\xd5\x6a\x58\xc3\x53\x17\x06\x6e\x31\x5a\xf4\x1a\x37\x0a\x97\xf9\xe2\xf1\x2d\xd9\xcf\xbb\x50\x57\x5d\x48\x7e\xf2\x5d\x87\x55\x25\x0d\x9a\xce\x99\x18\xe0\x69\x93\x6c\x6e\xe5\xde\x51\x2a\xc7\x3f\xbb\x53\xda\xfb\xd6\x91\xf0\x39\xff\xf4\x4c\xa5\x78\x1b\x58\x34\x6c\xd5\x69\xf8\x5b\x45\x91\xe7\x10\x27\x46\x99\x98\xad\x0b\xf7\x8c\x57\xb8\x0b\xad\x71\x2a\x7c\x6e\x40\x31\xf4\xcf\xd5\xf6\xfe\xf9\x49\xeb\x34\x02\x6a\x53\x87\x36\xe6\xbe\xca\x4d\x3e\x4b\x97\x21\xa9\xf1\x95\x92\x7c\x66\xcf\x9a\x90\x26\x2f\x50\x35\x95\xa2\x2c\xb9\xd9\xc2\x86\xac\xc2\x30\x6a\x94\x38\x7c\xb4\xf0\xfd\x3b\x0c\x7d\x17\xea\x0b\x71\x8e\xcf\xbf\x3d\xb3\xe5\x2e\x61\x06\x88\x37\xb3\xf8\xec\xd6\x5c\xd5\x90\xfe\x61\x9e\x7f\x44\x5f\x1e\x52\x0a\x96\x21\xd1\xf6\x56\x59\x94\xe4\xc9\xbf\xea\x65\xe3\x48\x05\x59\x0d\xd8\x4b\x20\x2b\x4d\x29\x9b\xd6\xe8\x30\x78\x50\xca\xaa\xa6\x74\x4f\x43\xc3\xb2\x1b\xd8\xfd\xb2\x5f\xbc\x51\xc9\xea\x55\x71\x4d\x0b\xb8\x43\xf3\x8d\x53\x0f\x86\x79\xdc\xe9\x0e\xd8\x86\x6e\xb7\x1a\x05\xa3\x26\x22\x8e\xf2\xa8\x2c\x5e\xf2\xb6\x18\xcc\x5b\xd4\xa3\x2e\x97\xd5\xce\xcd\x9c\x9f\xfd\x20\x55\x0c\x51\x42\x1c\xca\xc3\xfb\xd4\x94\x20\xb0\xb1\x03\xe9\x39\xfe\xf1\x4c\xc3\x92\x03\x35\xb1\xe4\x06\xc4\x87\xdf\x35\x20\xeb\x4d\xec\x85\x91\x90\xbd\x49\x9a\x93\xda\xab\x1a\x21\x84\x61\xdc\x48\xad\x94\x5f\x34\x03\x22\x63\xa4\x4a\x99\x84\x7e\xe6\x0c\x2a\x7d\x88\xbd\x00\x8b\x31\x5b\xe1\x17\x8f\x8e\x56\xcd\x09\xf1\x39\x93\xe9\xab\x03\x06\xbb\xc6\x89\x70\xc9\xb2\x05\x09\xb8\x3c\x5c\xf8\xa7\xa9\xdc\x17\xf0\x9a\xe5\x4b\x2f\x5d\x69\x06\xbf\x81\xf5\x9a\xe3\x67\x2d\x04\x4c\xb0\xb2\x4b\xfd\xd7\x0d\x67\xea\xda\x8d\x40\x1a\xce\x94\xe7\x85\xad\x06\x8e\x15\x16\xfe\x0d\x0e\x7c\x2c\xfc\xe5\xc1\xec\x89\x8d\x9c\xe4\x76\x9c\x90\xd6\xf2\xda\x55\xfc\x96\xaf\xc4\x35\x0c\x52\xb9\xc3\xc5\xff\x1f\x65\x6f\x1f\x6f\x45\x55\xef\x8f\xbb\x1f\x42\x43\xe4\x19\x44\x44\x24\x44\x41\x60\x9f\x0e\x07\x38\x02\x19\x0a\x12\x2a\x22\x9b\x10\x09\x89\xc8\xb5\x67\xd6\xde\x7b\x9d\x3d\x33\x6b\x58\x33\xb3\xf7\xd9\x47\x33\x2f\x99\x19\x97\xc8\xcc\xcc\xc8\xcc\xcc\x88\x88\xf8\x92\x21\xf1\x35\x22\x32\x22\xaf\x99\x97\xd4\xcb\x35\x32\x32\xae\x71\x89\x6b\x5c\x22\x32\x22\xcf\xf4\x7b\xcd\x67\xad\x99\xb5\x66\xed\xd3\xef\xf5\xfa\xfe\xd5\x2b\x90\x73\xf6\x9e\x59\xeb\xf3\xf8\x7e\xb8\xf7\x2d\x0d\x8c\x4c\x6d\x0c\x33\x7d\x08\x52\xf7\x57\x15\xc7\x46\x66\x0a\x0b\xcc\xbf\xef\x90\x51\x2d\x70\xc0\x3f\xba\x04\xc4\x9b\xde\x2c\x16\xe2\xe7\x37\xb2\x12\x52\x0c\x93\xf2\x77\xec\xd3\xbc\xba\x93\x99\xd8\xa9\xc5\xfc\x5f\x2c\x0d\x7c\x05\x19\x1b\x2e\x5d\x2a\x7f\xf3\xf4\x69\x53\x67\x75\xcc\x2e\x14\xc3\x19\x4f\xea\x88\x4b\xc7\x6c\xa6\xc6\x8a\xb9\x83\x56\xb2\x91\xc6\xae\x1f\x7f\xae\xbc\xf3\xfa\x98\x96\x82\xcd\xf3\x29\x4b\x00\x5d\xbf\x9c\xaa\x48\xc8\x03\x18\x8b\x9b\x47\x7e\xff\x7a\x79\x6e\x69\xa9\x0b\x1b\x5c\xab\xf5\x52\x65\x16\x6b\x63\x1b\xba\x83\xe2\x79\x7c\xbb\xbf\x1c\x86\xcc\x5f\x58\xd7\x82\xa4\xf4\x71\xb7\x20\x5b\x64\x2f\x7b\x47\x9e\x88\x8f\xb4\x04\xd6\xbd\xaf\xf2\xc3\x34\x1f\x23\xa6\x0b\x78\xf7\xe6\x06\xad\xd4\x23\x06\x73\x10\x33\x53\x93\xf1\x66\xff\x91\x5a\x3d\x55\xa9\x0a\x4a\xc0\x8d\xdb\x62\xdd\x37\xc7\x0f\x8c\x5a\x3c\x1a\xce\xf5\xbc\x2e\x65\xb0\x6c\x20\x8d\x67\x7b\xcb\xc3\x15\x1d\x8f\x86\x49\x04\xef\x39\xef\x8c\x4d\xe6\x21\xc4\x41\xf1\x36\xf4\xd2\x47\x2f\x16\x75\x36\x28\x9f\x27\x14\xb4\xe8\xcc\x18\x33\x5a\x8c\x45\x13\x9a\x59\xfe\x81\xb7\x34\xcd\xa2\xc0\x46\x0e\xf1\x41\xdd\x54\x4c\x60\xae\x79\x4b\xa3\xf7\x70\xb0\x6d\x9a\x82\x3f\xf4\xda\xd4\x48\x91\xb3\x6e\x7a\x33\xa7\xf7\x4c\xd0\xce\x38\xef\x6f\x5b\xba\x8f\xfe\x77\xb7\x38\xa6\x04\x9e\x80\xd2\x7e\xbc\x5b\x83\x43\xbb\xd4\xb7\xc0\xbd\x52\xc8\x2a\x4d\x58\xa5\xe9\xc7\x74\x37\x6d\xca\x62\x9d\xc8\xfc\x98\x59\x5a\xe1\x2e\x04\x6c\x71\x62\xad\xbe\xec\xf0\x48\xbd\xb4\x8f\xc3\xf8\x7f\xef\xd0\x18\x1e\xd8\x12\xe8\xbd\xcc\xf8\xbd\xba\x0d\x8a\x41\xb0\xdf\x14\xe5\x6f\xf6\xf7\x9a\x04\x84\x8d\x4d\x30\x42\xe0\xb2\x20\x7f\x7f\x9b\x9f\x85\x85\xa8\xd1\xa3\xca\xe4\xd0\x09\xaa\xee\x14\xa8\xc1\xf0\x2d\xe4\x96\x01\xba\x04\x9e\x15\xb5\x77\x31\xdf\x1e\xa6\x3e\xd7\x9c\x93\xed\xf9\xac\x76\xbf\x5a\x28\x86\x8b\xb6\xf1\xc0\x33\x6d\xf6\x8c\xd9\x85\x4e\xd0\xe5\xff\xc5\xdd\xda\xc4\xa2\x81\x1d\x9f\x24\xae\x8b\xf5\xfc\x10\xd1\x60\x04\x46\xd5\xa4\x0d\x8e\x7c\x59\xdd\xa9\x69\x4c\x33\xec\x98\x1a\x26\x37\xf7\xbd\x83\x9a\x9c\x95\xd8\x94\x4d\xdf\x18\x07\x76\x98\xe7\x83\x56\x7a\x66\xce\x4b\x3c\x5e\x2c\xc1\x15\x46\xdd\x2a\x2d\x71\x39\xa9\x7b\xb3\xba\x91\xbb\x82\x67\xe8\xcd\x75\xbe\xc0\x91\x80\xb7\x3b\xa4\xa5\x2c\xca\x0f\x79\x44\xd1\x60\x75\xbc\x86\x18\xb6\xe6\xc7\x6c\xd6\x5a\x4a\xca\x6c\xb9\xfb\x39\xb4\x72\x78\xaa\xc9\x61\xf1\xd4\xf2\x9a\xc3\x23\xfb\xd8\x44\x73\x38\xec\xbe\x8b\xe2\x1f\x06\x3f\x65\x9c\xa2\xc0\x0c\x06\x89\x20\x43\xbb\x5a\x8b\xf0\xa4\x52\x05\x30\x0d\x14\xd3\x23\x65\x37\x41\xb8\xf9\xc7\x28\xb7\xa5\x15\x33\x63\x5f\xda\xdc\x4f\x9e\x55\xa4\xd5\x7d\x9f\xcb\x72\x84\x53\xb7\x0f\x11\x79\x25\xaa\x1e\x63\x10\xc4\xb3\xaf\xeb\x18\x4c\x57\x59\x33\x84\xff\x39\x57\xfe\x66\x3b\x2a\xc4\x07\xaf\x91\x87\xce\x8d\x2e\xaf\x58\x3b\x86\xd7\x96\x38\x1c\x01\x99\x36\x89\xc2\x6f\x38\x6e\x9f\x2e\xb0\xea\x07\x2c\x69\x18\xc3\x9e\xd5\x72\x8b\x82\x62\xb6\xd8\x0f\x77\xf2\x21\x15\x97\xb4\x0f\xc7\xb1\xe4\xb7\x5f\x53\x00\x5b\xe9\x3d\x67\x34\xb8\x9e\x65\xc5\x8e\xa9\x99\xd3\xab\xf4\x08\xe2\x63\x8b\x17\x9b\x02\x7a\x27\x7a\x13\x67\x82\x9c\xb4\x57\x89\x65\x25\xd3\x95\xff\x98\x20\xe5\xb2\x00\xe8\xfb\xd9\xc9\xe9\x1f\xd9\x85\x7d\xaf\x2f\x84\x5d\xfe\x8e\x36\x89\xf8\x00\xdc\x85\xc9\x55\x0f\xf9\xd7\x3a\xa8\xa9\xda\xbb\xd4\x24\x81\x2d\xd6\x16\x1f\x56\x70\x80\x0d\x1a\x58\x02\x6d\x1f\x9e\x9d\xac\xd3\x73\x41\xa0\xdf\x80\xb2\xeb\xe6\xb9\x83\x95\x4a\x8d\x80\x2f\x74\x6e\xb7\xe6\x62\x14\x95\x09\x8c\x6a\x17\xef\xfb\x3b\x35\x46\x0d\x75\x3c\xe4\xf8\x94\x67\xe8\x74\x12\x5b\xfa\xd0\x28\x3d\x1c\xd6\xb1\x23\x4a\x9a\xec\x2a\x2d\xca\x00\x29\x43\x55\x67\x0e\x97\x1f\x52\xac\x6a\xab\xb4\x11\x0f\xf9\xf3\xb5\x97\xa5\x12\xa4\xaf\x68\x48\xe4\x7e\xba\x5b\x3f\x8e\x65\xcc\x1d\x97\x79\x78\x78\x61\xc0\x18\xfd\x50\xa1\x78\x0a\x01\x2b\xee\x1b\x3b\xff\x99\x15\x6b\x1f\x98\xef\xcc\xc1\xd5\x7d\xf8\xb8\xc1\x08\x3f\xff\xfe\xc7\x93\xb3\x60\xb7\xd5\xa3\x2f\xfc\xea\x2e\x85\x82\x16\x94\x30\x33\x02\x8b\x82\x36\x61\x6f\xfe\xdd\x61\xfa\xd1\x03\xad\x5c\xee\x24\x79\x3d\xf1\xf1\x37\xb5\xee\xc2\xe7\x46\xf4\xb7\x1c\x4a\xc7\xb1\x3a\x61\x7e\x40\x3d\x62\x70\x52\xf1\xf2\x45\xc3\x54\xa2\x2a\xf4\x55\x85\x62\x78\xdf\x71\xfd\x50\x79\x3e\x0c\x2c\xa3\xbb\x50\xec\x90\x44\xe0\xa6\x02\x6e\xc8\x4e\x5e\xa4\x01\xb0\x02\x17\x33\xee\xca\x0b\x81\xe5\x15\xc5\x6f\x0e\x14\x05\x84\xe3\xfd\x4f\x4a\x4a\x6b\x40\x2d\x62\xf2\x4d\xfa\x67\x1f\x8e\x7d\x5f\x8c\x1a\x05\xf5\x8b\xf0\x3d\x8b\x14\xa0\x1f\xb2\x51\x4d\x69\x68\x0c\x4d\xdf\x14\x79\x1e\xb6\x4b\x56\x53\x1c\xa9\x8f\x1e\xbc\x58\xb9\x45\x8e\x01\xfa\xfd\xa2\xf2\x99\xaa\xdd\xfc\x2a\xb2\xa2\x27\x1b\x5d\x86\x47\x26\x6b\x15\x41\x60\x27\xfe\x84\xd9\x03\xcb\xd3\xaf\xd8\x41\xf5\xa6\xf8\xab\xb7\xd7\xeb\x2a\xf7\xb6\x8b\x9c\xbe\xd0\x50\x9f\xee\x1c\xa4\x40\xc5\x38\x1b\xd4\x7d\x21\xfd\x5d\xba\x02\xcf\x27\xf1\x80\xbc\x37\x3f\x63\xbb\xdc\x46\x59\x31\x5f\x25\xf3\xef\x73\x74\x3e\x9a\x8f\xc5\x9c\x19\x6a\x88\x4b\x2d\xb9\x4a\x21\xad\x32\x9f\xee\x3b\xb2\xe0\x8e\x9e\x1d\xaf\x73\x7d\x4b\x89\x67\xb8\xa7\x44\x2d\x0b\x81\x1a\x99\xbd\x6f\x90\xba\xad\x87\x26\xe9\xcf\xa7\xc7\x6b\xf7\x9f\x99\xd8\xa8\x22\xa2\x72\xde\xc2\xb3\x9a\xaf\x8a\x47\x03\x96\xa8\x5c\xcc\x3b\x34\x20\xf9\x7d\x57\x17\x8a\x61\xff\xad\x69\xc8\x54\x03\x45\x21\xa9\xe2\x53\x47\xc4\x4a\x08\xae\xf7\xed\x95\x29\xd2\x22\x96\x8a\xb8\x19\xa4\xe0\x7b\x4d\xe2\xb9\x16\x6a\x42\x72\x7a\x3c\x9f\xc0\x0e\x4b\xc0\x36\xca\xfe\xe9\x31\x85\x63\x5c\x8e\xdb\xeb\x57\xce\xca\xaa\xb8\x02\xb4\xd8\xf6\x95\x9a\x94\x1a\xc3\x35\x01\x2c\xd9\x7d\x58\xff\xab\xe8\xf9\x03\x07\xf2\xd9\x87\x04\x77\x80\xab\x25\xa5\x63\xc5\xf8\xed\xba\xf9\x9f\x67\x04\x51\xf5\xca\xf7\xde\x93\xb6\xa6\xe0\x1c\x16\x14\x2f\xf0\x2d\x1e\x7b\x28\xfd\xc4\x7d\xe4\x79\x2d\x96\x3f\xbd\xf9\xf3\xaf\x92\x0f\x61\xbc\xa4\x13\x16\x2e\x18\xa1\x40\x43\x4d\x10\xad\xe5\x6e\x30\x2f\xd7\x93\x6d\x94\x4f\xe2\x6d\x54\x36\xdb\x3f\x89\x5b\x5d\x88\x37\xd2\x1a\x5e\x64\x52\x52\xd2\xdf\xd3\xa3\x38\xd1\xfa\xc4\x8a\x95\x7a\xf3\xf5\x09\x42\x56\x93\x3a\x7e\x35\x2a\x8c\xc2\x27\xb7\x8e\xd5\x8a\x3a\x4a\x6b\x56\x53\xd9\x5a\xdc\x93\xc2\x5d\x27\x64\xec\x96\xbb\xf4\x44\x59\x35\xc8\x80\x35\x25\x8c\x4c\x0f\x69\x4e\x2a\x25\xda\x80\xa5\x42\xaa\x7b\xc8\x1c\xdc\xa5\xe0\x92\xa3\x7a\xc2\xf7\x5b\xde\xd4\x48\x3e\x99\x2f\xdc\x1a\x1f\x6d\xf9\x34\xff\x76\x66\x84\x96\x5f\x0c\xee\xef\x35\xf3\x3e\xc9\xe8\x05\x60\x76\x0b\x73\x3f\xfb\x6f\x17\x24\xcf\xbb\x84\x13\xbc\xd0\xf0\x0e\x0d\xef\x50\xc7\x4e\x22\x5b\x9c\xd9\x78\x6c\x40\xfc\x6f\x00\x31\x95\x6d\x3b\xa3\x1b\x16\xcd\x9c\x35\x3b\xde\x58\x38\x93\x2f\x56\x44\x5b\x2c\x4b\xe5\x6e\x8d\x2c\x71\xe1\x81\x0f\x80\x53\x7f\x8b\x50\x70\x76\xf4\xa2\x61\x6a\xec\x84\xe7\x1a\x9d\xbe\xd5\x93\xb5\x4d\x07\xf1\x8d\x6a\xd4\x99\xa8\x9d\xe8\x4e\x4d\xe0\xc1\x65\xd8\x45\x4c\x34\x55\xe7\x46\xab\xc6\x13\x15\xca\xc7\xf3\x7f\x69\x13\x36\x2b\x81\xc3\x79\x21\xe1\x98\xcd\xc3\xd4\x17\x8b\x0d\xa0\xd7\x84\x8d\xa7\x75\xeb\x45\x03\x2c\xc2\x44\x52\xfc\x58\x79\xb8\x94\x28\x55\xdf\xf4\x4b\x5a\x29\x40\x38\xe6\x34\xce\xa6\x99\x93\xfb\xa1\x29\xb0\xb0\x53\x98\x21\x5f\x70\xfe\x49\x89\x54\x36\x6a\x85\x62\x78\x99\xae\xdf\x04\xb3\x3e\x81\xb9\x3f\xbd\x53\x53\xe5\xa1\x3e\x72\x69\x1d\x69\x3e\x8d\x67\xda\x55\x7f\x52\xee\xfd\xcc\x0f\xfd\x7a\x27\xd9\x94\xa1\xaa\xdd\x72\x64\xbe\xb0\x4a\xb1\xd2\xc3\x94\x3b\x7e\xc4\x5f\xb0\x72\x94\xe7\xce\x05\x82\x96\x16\x7d\x20\x6b\x9c\x36\x57\x86\xf2\x3d\x66\x42\x84\x9b\x65\x52\x71\x2a\x89\x98\x5c\xe5\xda\x78\xb5\x7b\x0d\xf8\x4d\x7d\xc0\x6d\xc1\x27\x7b\xd4\x71\x70\xc2\x4d\xf8\xf0\x05\x3c\xce\x7d\x08\x59\x2d\xe8\xe6\xec\xe2\xbc\x2a\xb3\xe5\x11\x18\x19\x17\xc3\xe9\x9a\x17\x16\xb2\x18\x46\x7c\xb0\x53\xec\xcd\x76\xf7\x08\x2f\x02\xa3\x6a\x6b\xca\x23\x17\xf0\x0f\x67\x62\xbe\x7e\x7a\x79\x8f\x3c\x4d\x0e\xc6\x5c\x37\xae\xbb\x9f\x32\x13\x88\x52\x22\x47\x5c\x3e\x72\x74\xb0\x12\x9f\xa2\x8b\x5c\xec\xcd\xec\x1f\x27\x3b\x57\x1b\x73\x4d\xb2\xc9\x79\x45\x70\xab\x81\x60\xa1\x95\x2d\x69\xfa\x30\x5d\x24\x16\xe3\x97\x99\x67\x6c\x77\x3a\x1e\x20\x22\x06\x05\x77\x6f\x1a\x97\x2a\xe8\x91\x63\xb6\x38\x59\x67\xef\x6d\x93\xf7\x75\xfa\x8c\xd9\xaa\x4a\xd6\xb6\x57\x15\xd3\x60\xce\x26\xbb\x62\xd3\x08\x15\x9e\x4e\x2a\x09\xc2\xe7\xc0\x66\xbe\x66\x98\x67\x63\x6e\x36\x29\x4e\xd7\xf3\x77\x6b\x70\xfe\x28\x4d\xcf\x49\xbc\x04\xf6\x5c\xac\x1c\x2e\x54\x57\x30\xf2\xf9\xd5\x75\xfe\x86\x97\x32\xca\x8f\xab\x32\xf9\x7e\x54\xa1\xbb\x61\xa0\xe9\x23\x7e\xa3\x36\x2e\x4a\x97\x58\x15\xee\xd4\x1a\xdd\xed\xbb\x1d\xfe\x09\x6f\x43\xa6\x89\x6c\x65\x08\xb1\x5f\x83\x4b\x2a\x64\x54\x3e\xc9\xb2\x1f\xbb\x4c\xbf\xc6\x96\x80\x3d\x89\x51\xc4\xa5\x9d\xf2\x76\x59\xc8\xf3\x0b\x36\x71\x02\x78\xaf\x99\xff\xd4\x0d\xd8\x90\x85\x58\x3c\x59\x7e\xf1\xb1\x8b\xb5\x84\x5c\x17\x92\xc3\xe1\xf7\x57\x0f\x57\x34\x5c\x1c\xe0\xcd\xc2\x93\xde\xac\x28\x7c\xf9\xd4\x01\xf8\xb5\x48\x9c\xff\x47\x39\xf7\x0d\x1a\xc4\x02\xc1\x8f\xb7\x6b\xb4\x08\x58\x31\x0b\x28\xe0\x4b\xbb\xd2\x5f\x2e\x70\xb0\xed\x5a\xb4\x29\x2d\x5b\x4c\x4d\x9f\xbb\x8c\x19\x35\x08\x0d\x84\x37\x75\xe6\x83\x6f\x5f\xa5\xf5\x2b\x0c\x61\xab\x2f\xaf\xf0\xb3\x0f\x0d\x8f\xe3\xdd\xcc\x94\x1e\x9b\x40\x14\x99\xa4\x8e\x19\x90\x96\xb3\x7b\x07\x5c\xac\xcc\x7e\xa1\xc4\xaf\x13\x31\x67\x23\x29\x23\x4b\x9b\xbf\xfa\xdc\xf0\x37\x5b\x75\xc7\xa0\x1f\x18\x37\x58\x5a\xfe\x28\xd8\xcc\x70\xe2\x05\x72\x65\xdf\x04\x3b\x17\x13\x89\x29\x65\x68\xbe\x20\x49\xdb\x25\xc4\x2a\xd1\xef\x28\x21\x2f\x96\xa5\xcf\xdf\xf1\x6a\xca\xfb\xdb\x2e\x59\x1c\x06\x70\x54\xe1\xba\xf7\x50\x06\x8a\x59\x1f\xd9\xda\x47\x55\xd1\x2a\xee\x97\x99\x79\xb0\x45\xc3\x08\x32\x58\x82\x2c\xec\x58\xac\x38\x1b\x7b\x06\x17\x77\x2d\x14\xc3\x05\xcb\x78\xe4\x5a\x46\x1b\x56\x0a\x7d\x9a\xfb\xd1\x1b\xe2\x56\x3a\x66\x8a\xdc\x97\x7b\xb2\x2b\x29\xd2\x51\x05\xb5\x94\x1f\x27\x5e\x96\x26\x57\x4d\xd5\x05\x6e\xf9\xdb\x17\xc5\xfd\x13\xb0\x4d\xc2\x09\x93\xb4\x5e\x1c\x39\x95\x5a\xe0\x05\x25\x46\x7d\xaa\x19\x1d\xdd\x35\x7a\x90\x93\xc2\xea\x17\xc3\x81\xfb\x5b\xec\x09\x9c\x58\x56\x36\xf3\xa3\x7e\x7c\x6a\xb8\x1c\x31\xb2\x56\xbe\xb7\x73\xa1\xa6\xde\x67\x91\xa8\x07\x11\x4b\x97\xac\x71\x55\xf2\xba\x71\x8f\x1a\x50\x36\xf6\x4b\x07\x53\x64\x24\x58\x5f\x33\x5e\xca\xf4\xe3\xda\xd1\x85\xc5\xb8\xa1\x3e\xaf\xec\xf2\x1d\xc9\x03\x31\x03\x35\x03\xde\xbd\x42\x11\xd6\x20\x26\x08\xd2\x85\x3f\x1d\xd3\x5a\x67\x23\x66\xc6\xc8\xde\xdc\xd1\xc1\xf2\xe9\x33\xbd\x4a\x0b\x7f\x76\x44\x66\x48\x3f\xe6\x6a\xe6\xaf\x7e\x50\x57\xa5\x20\x96\xc9\x30\x6c\xd1\xc2\xbf\x4d\x95\xbd\x72\x5a\xb0\x7d\xae\xbe\x53\x4e\xf8\x6d\x99\x87\x1f\x12\x03\x7a\x0b\xa7\x04\xd1\x26\x3e\x25\x07\x41\xb3\x67\xb6\x64\x8c\xe5\x7b\xe5\xd9\x60\xaa\x83\xd6\x3f\xae\x55\x8a\xac\x80\x58\xdc\xa6\xbb\xf8\xba\xc2\x68\x02\x47\x0e\xf8\xe3\xbb\x7c\x41\xd4\x44\x81\x81\x3c\x95\xa8\x19\x7e\x65\xa3\xfc\x17\x75\xda\x44\x15\xbe\xf2\x59\xd8\x35\x5c\xc1\xb4\x79\x89\xac\x5d\xb6\xfc\x98\x2e\xbb\x5d\xc3\x9e\xc0\x5a\xde\xb9\x2a\x9e\xc5\xe2\x32\xe6\x86\x0b\xe1\xcf\xd7\x2b\xfa\x2f\xc8\xf1\x2c\x60\x1f\xf1\x74\xfd\x5b\xab\xe5\xcd\xf9\x01\x2b\xc5\xa6\xcf\xbf\xdb\xaf\x03\x66\x30\xab\x08\xe7\xb1\xed\x27\x07\x29\xe3\x05\x3e\x38\x75\x27\x4b\x69\xa3\x40\x2a\x97\x87\xe3\xef\x4b\x37\x0a\x7c\xa5\xcf\x1b\x11\x65\xab\x5f\x96\x41\xa6\x8e\x13\x82\x7e\xa6\xe3\x0d\xad\xb3\x75\xa3\x3a\x06\xbe\x71\xf8\xcc\xd1\x96\xbf\x43\x0d\x31\x52\xc9\x6d\x59\xc3\xd1\x40\x4b\xc1\xc9\xbb\x65\x56\x36\xe2\x6d\xcd\xf3\xcb\xad\x30\x64\x26\x2e\x18\x8b\xcf\x5e\xac\x60\x10\x34\xdd\x9c\xee\x74\x15\xea\xb8\xac\x8f\xc5\x47\xee\x5d\xa7\xe4\xa3\x37\xb1\x0d\x73\x4d\x54\xe2\x73\x98\x5b\x3a\x34\xa8\x78\xb7\x6b\x21\xc2\xb7\xc4\x99\x9f\x2c\x68\xc1\xcc\x95\x10\x87\x87\x8a\x05\xc4\xc7\xef\x94\x85\x16\x23\xdc\xea\x39\x3f\xe1\xe5\xa4\x94\x9e\x3d\x0d\xce\xdd\xdc\xe7\x94\x21\x50\x8c\x92\x09\xab\xcf\xf3\xe9\xbc\xba\x16\x2d\xf6\x66\x86\x56\x15\x59\x31\xca\x38\xd5\xfe\xd0\xc3\xe9\xcf\x09\x2e\xbd\xa2\x1a\xcf\xad\xda\x98\xfc\xc2\xf6\xf6\x8e\x42\x31\xfc\xeb\xe0\xe1\x12\x69\xaf\x22\xba\xbf\xfd\xb2\xbc\x65\x3e\x22\x0d\x94\x72\x03\xcd\x15\x3a\x93\x1f\x64\x50\xe8\x82\xbe\xca\xe4\x17\x6c\x22\x0f\x4a\xbc\x9f\x3d\x26\x24\xc2\xa2\x6f\x5c\xf8\x80\x70\xbb\x87\x4d\x8e\xe6\xdf\x46\x7c\x64\x45\xf9\x50\x8c\xa2\xae\x16\x52\x49\xae\xd7\x34\xaa\xc4\x80\xfe\xf8\xfc\x91\x8a\xe4\x12\x8a\x92\x0b\x86\x38\xb1\x64\x68\x3a\xf2\x00\x64\x20\x51\xc7\x7c\xe5\x25\xbd\x39\x51\x74\xf5\x3e\x32\x75\xac\xfa\x23\x6b\xb8\x15\xdc\xf1\xc5\x6a\xd2\xec\x4f\x9b\x39\x33\xaa\xd2\x7b\x94\x01\x51\x89\x42\x25\x1c\xbe\xb3\x5b\xdf\x8a\x45\xf9\x03\x10\xa2\xa2\x09\xbb\x60\xf4\x08\x45\x34\xa4\xcc\x08\x76\x4c\xc1\x87\x1c\x30\x5a\x91\xab\xb3\x09\xfc\x79\x72\x15\x97\xad\xe1\x51\x70\x7e\x60\x22\x17\x03\x88\x05\xb8\xd5\xff\x3b\x37\xd1\xf9\xe9\x98\x96\x52\xad\xba\x6e\x6e\x7f\xd1\x46\xc1\x79\xb8\x62\xb2\x86\xf6\xe6\xeb\x96\x78\x40\x71\xfe\x13\xb2\x5c\x63\xb8\x02\xb0\x1c\x5e\x63\x4c\x7b\x5b\x3d\x8a\x8e\xcf\x10\xac\x6f\xee\xda\xc0\x51\xad\x37\x52\xcb\x2c\x61\xa6\xee\xe7\xe7\xee\x48\x97\xfa\x5e\x10\x7b\xde\x7c\xf6\x55\xdd\xe3\x2a\x86\x9b\x67\x6e\xbb\x40\xbe\x56\x0b\x3b\x44\x48\x8f\x66\xf7\x95\x46\xa9\x83\x38\xc2\xdb\x6d\x51\x49\xee\x58\xaa\x9b\xac\x5a\x26\x23\x15\x9c\x02\xd3\x7d\xfe\x2a\xd5\x44\x3e\x66\xe9\x45\xcf\xe4\x6b\x87\x14\x3d\x54\x14\x94\x6d\x95\x88\x9f\x5f\x7f\x9f\xd4\xd1\x24\xa0\xe7\x7e\xc7\x5c\xf9\xdf\x57\x11\x76\x3c\x43\x71\x0a\xcb\x3d\x3a\x60\x8c\x72\x55\x7c\xc4\xb0\x53\xa3\x8a\xc0\xea\xad\x3b\x86\xa8\xaa\x11\x53\xa7\x14\x0b\xc5\xa5\x7a\xab\x67\xd1\x46\xe2\x69\x91\xed\x3f\x22\xd5\x19\x61\xe6\xc1\xa8\x21\x7c\x6e\x74\x0b\xc2\xcd\xb5\x70\x77\x42\x29\x9f\xbb\x48\x0e\x00\xa7\x4d\x53\xd4\x75\x7b\xf3\x9d\x8f\xca\xf0\xcf\x40\x86\x29\x3c\x2d\x3b\x6b\x8f\xb4\x2c\x5c\x72\x7f\xde\xa4\x4d\x5f\x85\xba\xb1\x10\x9a\xea\xe6\xb6\x65\x05\x5a\x2e\x17\x18\x16\xca\x30\x5c\xec\xa4\xfd\x4e\x19\x97\x1a\xc8\xe3\x8d\xc6\xb2\xb3\xe9\xfa\xd7\x42\x22\xea\xff\xfc\x5a\x0d\xe3\x86\x4a\x24\xc6\x95\x2d\x79\x32\x5d\x13\x95\x19\xc6\x89\xdb\x97\x48\x37\x73\xd6\xc9\x73\xda\x45\x63\x09\x8d\xcc\x99\x1d\x83\xd5\x69\x0d\x47\x9b\xfd\xe2\xcd\x21\x0a\x54\x06\xf1\x30\x9c\xd9\x34\x5f\x47\x09\x58\x16\x3f\x9d\x79\xb2\x3b\x9d\x09\x13\xf1\x92\x94\x1e\xc6\xbb\xb5\x0e\x86\x6f\xd6\x79\xcd\x96\x59\xb8\x57\x55\xc1\x04\x26\x0b\x17\xd7\x3d\x2a\xe4\x70\x5c\x6a\x11\x23\x36\xe8\xfe\xf4\x60\x8d\x8f\x08\xea\x5e\x7c\xeb\xb8\xe1\xdc\xc5\x0a\xdb\x8e\x45\x27\x3a\x1e\x0d\xce\x3c\x4f\xa1\x43\x60\x30\xe4\xb1\xb8\x9a\xe4\x57\xde\x94\x17\xdc\x20\x3e\x32\x13\xe9\xbb\xcc\xd7\xae\x55\xfe\x11\x32\x18\x29\x13\xa0\x3b\xf4\xe6\x37\x68\xc6\x5f\x18\x79\x4d\x01\xfe\x1e\xd4\x25\x1f\xb7\xd0\xc3\x89\xbe\xcc\x15\x37\x69\x8d\x34\x32\x40\x92\x9d\xf7\xbd\xcf\xb8\xf2\x44\x83\xed\x43\x52\x37\xde\xfc\x9a\xb6\x98\x47\x40\x45\x11\x0b\xe6\x03\x6f\xf0\xc4\x77\x0b\xcf\x3f\xf1\xcd\xee\xed\x4a\xea\x96\x2a\x55\xeb\xc9\x8f\xcc\x57\x49\x58\xb6\xa0\x9c\x67\x32\x8f\xea\xec\x0c\xe2\x11\x31\xf0\xf9\xe5\xd9\xf4\x02\xb2\xb3\xd3\xef\xcb\xdd\x2a\xfc\xed\xd3\x9a\xce\x6d\x19\x72\x6a\xd8\xd6\xa1\xe1\x1d\xa0\x81\xa2\x4c\x38\x8e\xfc\xcb\x59\xbe\x13\xfe\x40\x53\x91\xdb\x7f\xf1\x4e\x41\x31\x31\x0c\x62\xc6\x86\x1d\x53\x9f\x90\xf3\x10\x6c\x09\xa2\xb5\x7e\x29\xaf\x7b\x4c\xd7\x2f\xe5\x45\x6b\xb2\xbf\xcb\x67\x05\x51\x90\xc7\x4c\xde\x81\xfd\x60\x01\x6f\x60\xa7\x73\x39\x82\xa8\x7d\x3f\xab\xd5\x61\x55\x6a\xd4\x44\xd7\x7f\x70\x96\x36\x6f\x65\xea\x8a\x6d\x8e\x3b\x44\x99\xb1\xd4\x09\x74\xfd\xf9\x77\x59\xe3\xd5\x18\xb7\x74\xd9\xd2\x09\x53\xe2\xd7\xa2\xbc\x1f\xbc\x51\xa8\xa2\x80\xd1\x4b\x95\x2b\x7f\x7f\x68\x59\x3a\x6d\x34\x10\xf7\x6b\x0c\x87\xe9\x48\x10\x4a\x2d\x3e\x3b\xfa\xd2\x3b\xe9\x97\x51\x0a\x84\x7b\xfd\x4d\x0f\xf3\xa8\xb4\x8c\x38\xb8\x8a\x98\x3a\x26\xfb\xa2\xa6\xa7\xd0\xc0\xc8\x4d\xb4\x62\x32\x74\xbf\x3c\x39\x81\x2b\x84\xeb\x7b\xb3\xc7\xae\x4a\xbf\x5d\x9b\x70\xfc\x7c\x95\x8f\x5e\xae\xab\x5f\xa2\xbd\x7c\x9f\xd8\xf1\x8a\x30\x57\x7e\x60\xa2\x96\x0f\xcb\x65\x6a\xd5\xfa\x14\x6d\x99\xb9\x53\x5b\xbb\x9b\x8c\x94\x39\x3c\x25\x3f\x6f\x92\xbe\x19\x08\x3c\x0f\x5b\x5e\xb2\x19\xe8\xcd\xd1\x87\x64\xf5\x65\x23\x8b\xd4\xa2\xdf\xff\xe0\xc3\x97\x2a\x82\x20\x2d\xc8\xcd\xcc\x97\x34\x2f\x27\xd0\xaa\x49\xfc\xb2\xce\x1f\x3d\x24\x3e\x48\x88\x58\x08\x4e\x69\xf8\x5d\xcd\x87\xa3\x14\x34\xa5\x4f\x50\xe6\xa3\x0f\xb6\xd8\xeb\x7a\x5c\x13\x54\x8c\x08\x56\x0d\xd0\x2a\x04\xdc\x2d\x8e\xd5\x84\xf1\x3a\xe6\xc8\x0f\x18\x27\x9c\x84\xff\xa6\xa9\x9c\x7a\x50\x78\x8b\x10\xf1\xc7\x67\xd3\x0f\x2e\x70\x7c\x16\x88\x80\x99\x3f\x23\x73\x40\xc5\xa2\xa0\xec\x94\xf9\xc2\x48\x75\x74\x13\x7d\x3a\x43\x88\x0b\xf4\x66\x43\xf3\xff\xcf\x30\x1e\x6a\x87\xbd\x9d\x7c\x66\x71\x63\x60\x21\x5f\x05\x0b\xed\x5c\xae\xa3\xf2\x4c\x42\x39\x1e\x38\x9e\x0a\x0f\xd4\xd4\xa9\x0c\x2b\xba\x75\x42\x69\xf7\x64\xfa\xb0\x5b\xb4\x2e\x24\x3b\x32\x0f\xb9\x72\xb0\x02\x88\xbd\x2a\xe6\x6e\x55\xb7\x95\xd2\xb1\xcb\x23\x2c\xb0\x0a\xb5\x2a\xf2\x89\xad\x4a\xef\xe5\xbc\xe3\x49\xaa\xaf\xd0\x96\xc5\x5b\x76\xe2\xe3\xa3\xf5\xa4\x43\x18\x38\x88\xc2\x98\xf7\xc5\xe1\x1a\xd3\x37\x16\x24\xee\xcd\xac\xba\x93\xf3\x24\xe6\x19\x06\x0d\xb8\x61\x8a\x7e\xca\x88\x06\xda\x8a\xae\xb7\x90\x9c\xed\x37\x4e\x3f\x80\x60\x79\xc5\x27\xde\xf9\x0f\xcc\xe7\xd3\x7b\x14\x78\xae\xe8\x98\xb2\x9f\x18\xdd\xfa\x94\xb8\x81\x53\xee\xdb\xaf\x72\xb8\xbe\xf4\xb7\x99\x25\x23\x15\xa8\x3c\xc1\x3b\xd8\x78\x4e\x96\xdb\xb4\xac\x0f\x37\xae\x10\x18\x9b\x12\x16\x9d\x4a\xf6\xb2\x91\x23\x94\x9b\xe5\x70\xd1\x12\x38\xed\x6b\x97\xa9\x82\x71\xed\xd3\xa2\x3f\x2b\x54\x47\x35\x94\x11\x62\xea\x67\xbf\x7b\xdf\x85\xa2\x16\x35\xa2\xe8\x76\xea\x02\xf9\x56\x85\x8d\x3d\xa7\x44\xdc\xf3\x92\x66\x2d\xdf\xd6\x26\x5e\xc4\x55\x47\x95\x34\x6a\x10\xec\xf8\xc4\xe3\xc9\xe3\xe9\x33\x42\xdd\xc4\xa8\x52\xda\x87\x9e\x8a\x26\xd6\x1b\x43\x12\xe3\xe8\xd7\x29\x4b\xde\x80\xbf\x1a\xbc\xab\xc5\xc9\x97\x82\x90\xad\x0c\xa8\xdf\xf2\xd3\x9f\x73\x46\x7b\xbb\xf8\x9c\xff\xc3\x74\x5b\xac\x80\x39\x82\x5e\xa3\xad\x42\x46\xa9\x0c\xc4\x64\x5a\xff\xe4\x10\xf1\x58\x4c\xb1\xca\x8a\x7e\xea\x63\x43\x75\xc0\x67\xc9\x88\xee\x8f\xf2\x99\x72\xef\xcb\x6b\xf6\x56\x18\x95\xbd\xbe\x5a\xfd\x87\xce\x5e\xa6\xc5\x9b\xb5\x01\x61\x8a\x10\x78\xf6\xf8\x43\x7d\xd1\x64\x13\xba\x48\x7b\x1b\xef\x6d\xc7\x2f\x0a\xec\x12\x1d\xaf\x7c\x86\x7f\xd1\xe0\x93\xa0\x7b\x2e\x2c\x88\x73\x3f\x1a\xac\xa8\x17\x50\xfe\xc5\xfe\x6c\xc5\xd8\x7c\x5a\xc3\x8c\x7b\x5f\x4d\xbc\x7f\xa4\x32\x2f\x88\xb2\x11\x72\x6a\x9c\xb7\x77\xe1\x09\x0d\x60\xe2\x53\x17\x20\x98\xc2\x57\xe0\x99\x5d\x63\xb4\x4a\xdb\x27\xb1\x9e\x2f\xd4\x5c\xd9\x65\x43\x14\x71\x45\xb3\x02\x18\xf4\x1b\x5e\xbd\x44\x01\x0f\x38\xd1\x93\x50\x7a\xa2\x55\xdb\xae\xf9\x7f\xe4\xbe\xdc\xb6\x54\x78\xe5\xde\x31\x5c\x7e\x63\x64\x73\x7b\xad\x5a\x55\x0b\xda\x2e\x30\x95\x20\x06\xbf\x73\x3c\xfd\xf1\x7d\x6c\xbb\x94\x21\x90\x5d\x84\xb3\x1e\x4c\x56\xd8\xae\x3e\xaf\x81\xe3\x20\xbc\xe8\xa8\x42\xeb\xb0\xa2\x5a\x12\xae\xea\x9d\x5b\x87\x2a\x9a\x11\xb6\x8d\x7d\xa8\x95\x6e\x7b\x23\x59\xc2\x47\x39\xbd\x50\x0c\xc3\xf5\xd2\xd1\x02\x97\x64\xc5\xf6\xef\x8a\xbf\x36\xc3\x6e\x32\xdb\x5e\x1a\x2a\x7b\xcb\x2a\x75\x6b\x18\xbb\xc2\x2a\xf2\xec\x49\x2d\xfb\x37\x1d\x93\x18\xc8\xc7\x7d\x20\x13\xce\x2b\x8d\xd3\x12\x03\x71\x7c\x8e\xa6\x4b\x3e\xc2\xf3\xa3\xd2\x7b\x8c\xa8\xba\xfd\x27\x14\xe6\x1f\x2a\xa3\xce\x32\x8e\x7a\xcb\x42\x31\xec\xdd\x28\x5d\xac\xac\x2e\xe5\x99\x4d\xda\xd6\xa2\x18\xe0\x08\x2d\x59\xe8\x2a\xb3\x93\xc5\x66\xca\xa7\x46\xad\x4a\xad\xd8\x49\xe2\x6f\xc3\x15\x31\x6a\xbb\x84\x40\x12\x19\x8a\xde\xcf\x56\x75\x5e\x20\x48\xca\x03\x93\x73\xc8\x82\xe4\x63\xf8\x96\xea\x7e\xf9\xad\x07\xe5\x20\xa0\x14\x4f\x3b\x8a\xbd\x39\xf7\x9e\x11\x5a\x67\xe1\x72\xe1\xe5\xdc\xc7\xce\xe3\x93\x8e\x79\xf3\xe7\x45\x3f\x79\x49\x56\x7e\xeb\x3a\xb2\x84\x90\xc2\xc6\xc9\xbc\x22\x74\x19\x2d\x73\x28\x25\xb2\x88\x07\x6c\xfc\xad\x0b\xc7\xcb\x99\x8c\x85\x8c\x1a\xb7\xd2\xd0\xe1\x14\x57\x2e\xd3\xab\x1a\x5b\xe8\xe9\x88\xe8\xf9\x9d\x36\xb1\xec\xe5\xdc\x0b\x4d\xa7\x67\xb1\xf2\x2e\xac\x80\x80\x30\xf0\xf7\xab\xe9\x77\x89\x62\xf0\x64\x4b\x61\x98\xfd\xc7\x6a\x8d\x0a\x2a\x9c\xb0\xc5\xef\xbe\x52\xf1\x58\xf0\xa2\xb2\xc0\x15\xe4\x94\xdb\x06\xa6\x63\x70\x39\x88\x21\x01\xfa\xf7\x63\xb3\x74\x25\x45\x93\x3a\xd8\x13\x58\x66\xa8\xdb\x7e\x3d\x67\xbc\x16\x2d\xbd\xa8\x76\x26\x25\x81\x68\x11\x83\x8b\x1d\xbe\x56\xc4\x56\xe2\x70\x1a\x5e\xf7\xbc\x6c\xd9\x90\x8a\xba\x18\xb8\x2d\xe5\xb8\xc9\x71\xa9\xbd\xb9\xed\x93\x14\xa9\xf1\xa8\xd7\x05\xdd\x1d\x26\x41\x8d\xb6\x82\x39\xf9\xd5\x73\xaa\x9d\x15\xf5\xe1\xe4\x84\x33\xb7\xf7\x6d\xdf\x53\x87\x55\xca\xbc\x83\x90\x00\x0a\x8b\x02\x93\x18\xa4\x75\xcf\xd1\x9b\xdd\xd7\x7d\x51\xfc\x58\x4d\x2e\x0a\xfa\xf5\x7b\x07\x89\xb2\xb1\x2b\xf0\x38\xa6\xe6\x77\x96\x2e\xf8\x0b\xda\xb6\x75\x5e\x45\x87\xa7\x56\xeb\xb1\x1a\x9c\x83\xdb\x44\x6c\xfc\xf0\x6b\x0a\xfd\x4b\x21\x8a\x64\xdf\xbd\x42\xb8\xbe\x60\x2e\x47\x9c\xfb\xc0\x56\x89\x73\x00\xff\x42\x65\x46\xf8\xc0\x09\x2d\xe1\xc0\xb8\x5e\x6c\x87\x71\x3b\xff\x49\xcb\xb0\x85\xba\x21\x3d\xbc\x20\x15\x49\x4c\xda\x70\x7c\xee\x78\x9b\xcc\x76\xb3\x53\x46\x4f\x56\xc6\x02\xc4\xf1\x0b\x15\xcc\x60\x8d\x69\x62\x58\xfb\xa5\xa4\x65\x72\x8f\x9f\x8c\x1f\x93\x27\x74\x02\xae\x54\x5e\x87\xcf\x50\xb9\x0c\x48\xdf\xef\xad\xd4\x45\x75\x66\x4f\x07\x50\x58\x2e\xbb\x43\x9e\xe1\x9a\x43\x8d\x1a\x0d\x38\xec\xee\xc6\x87\xb5\xc8\xb4\x36\x20\x2e\xc4\x3c\xbe\x0e\xbb\xd4\x17\xee\xcf\xa8\xc2\xd4\x89\xdb\x8d\xda\x50\x21\x96\x4f\xe5\xff\xea\x96\xdd\x3a\x8b\x20\xde\x21\x64\xbe\xfc\x12\x4f\x08\x6b\x83\x58\x1c\xf2\x3f\x76\xea\xd6\xfa\x4e\x85\xb3\xe0\xe4\x03\x9b\xff\x16\xd7\x08\xb9\x91\xd4\xb1\x63\x54\x5b\x2d\xc6\x3f\xfb\x78\xba\xd8\xa8\x23\x07\xe8\x07\x89\x10\x6a\xa6\x4b\xb3\xfe\xb5\xb1\xe7\xa1\x4a\xb2\x34\x6c\xee\xd2\xd8\x0d\x42\x4d\x53\x90\x87\xc8\x8b\x2a\xb8\xc3\x64\x7c\x96\x94\x2b\x6d\xd0\x02\x17\x2a\x31\x42\x2d\xec\x0b\xb5\xe9\xfc\xc7\x5e\xbd\x58\xaf\xbf\x63\x1d\xbb\xec\x97\xea\x0a\xb5\x9e\x0b\x78\x15\x7b\xf3\x85\xc9\xbc\xea\xb9\x95\x52\xa3\x4a\xd4\xf5\x65\xd7\xb2\x74\x14\xe1\x58\x10\x95\x94\x94\x1f\x7b\x82\x9f\x94\x5b\x09\x63\x94\x15\x8a\x61\x79\xa7\xe2\x9f\x17\xdd\xb0\xbc\x39\x58\x02\x1f\xef\x02\x75\x70\x45\x2a\xcc\xc1\xd1\x5f\x00\xd4\xbe\x36\xee\xa2\x38\x73\xc7\x66\x01\xab\xd2\xdf\x05\x10\xb7\x1e\x3f\x60\x83\x5e\x1a\x96\xc8\xd3\xb4\x29\x15\xec\xbb\x8f\x2b\x0a\x5f\x76\xc9\xc2\x36\xf2\xb9\x00\xfc\x47\xdf\x52\x8c\x4c\x39\x0e\x87\xd3\xe3\xa2\x5f\x35\x69\xf0\x00\x51\x08\xf0\xea\x3b\x53\x38\x95\xe0\xd6\xa8\x8d\xe2\x21\xf5\xaf\x86\xf3\xd3\xb9\x24\x60\xd8\x16\xa3\x72\x68\xd6\x3f\x7e\x44\x1b\x47\xd1\xc0\x8d\xd1\x1c\x99\x47\xa7\x8e\x50\x68\xab\x06\x08\x2f\x80\xbb\xf6\x0f\x5f\xe3\xbf\x75\x9e\x45\x4a\x00\xd3\xf9\xc8\x93\x72\x2a\x5d\x61\xa8\x54\x52\x63\xc2\x7f\xdd\xad\x82\x10\x02\x50\xc4\x0a\xbf\x74\xa7\x9c\xa9\xd7\x29\x0c\xfb\x64\xfe\xed\x3e\x9d\x3e\xe9\x00\x5c\x71\x19\xf1\x14\x8f\xb8\x63\x5b\xd3\x17\x6b\xda\x35\x9d\xc0\x07\xe1\x9a\x2c\xeb\xe6\xe8\x8c\x64\x96\xb8\x9b\x64\xde\xad\x48\xfd\x32\xac\x72\x06\xa2\xbf\xfd\x90\x4c\x0f\xbe\xb2\xc0\x0e\xbf\xfe\xa4\xd6\x63\xb4\x4d\x13\xe3\x89\x73\xab\x74\x7e\x06\xb3\x3d\x71\xb0\x73\x5f\xbf\x49\xc3\xcc\x24\xed\x29\xa7\x0b\xe5\x1f\x5c\x90\x2c\xb1\x4b\x04\xc5\x4b\x95\x63\xd6\xa4\x46\xeb\x2c\x0f\x14\x85\x5b\x79\xaf\x9d\xd7\x27\x9b\xa1\x19\xd7\xc0\x9c\x66\x82\xf2\x42\x4a\xd4\xc4\x96\xba\x36\xde\xb1\xf1\xd2\x96\x09\x59\xfc\x97\x80\x18\xab\x5e\x18\x7f\xa2\xa8\x42\xc8\x6e\x6a\x89\x96\x33\x60\x97\xfe\x15\xc9\xd8\x30\x1b\x00\xe0\xd8\x3d\x5e\x76\x85\x6b\x03\xec\xc1\x07\x86\x00\x70\xfe\xb5\x9a\x24\x92\xe3\x37\x30\x73\x25\xa2\xf4\xe2\x31\xba\xe9\xb1\x2f\x1b\xa0\xcd\x9a\xd1\xa6\xe2\x58\x2b\x24\xd3\x17\xb5\xab\xea\x90\xb8\x8e\x08\xd7\xd5\x0e\x43\xcd\xef\xaa\x4e\x2c\x0b\x55\x62\x8e\x40\xb1\x37\x9b\x7d\x2a\x3d\xc0\xf3\x29\x07\xea\x8f\xde\xa2\x69\xc3\xf9\x4c\x88\x0a\xc7\xd8\xe2\x87\x34\x8d\x2a\x54\x13\x3c\x4d\x71\xb9\x5e\x39\xa4\x5d\x2e\xec\x78\x41\xdc\x7d\xad\xd8\xa4\x4f\x99\xcc\x20\x51\x37\xda\xbf\x30\x46\xda\x83\x6d\xbc\x59\x28\x86\x83\xbb\x94\x4d\x0c\xb2\x48\x99\x32\x87\xfb\xcc\xed\x34\x47\xa9\x39\xce\xf1\x90\x6f\x21\x47\x44\x8f\x5f\x69\xcd\xb3\x8b\x9c\x1a\x4e\xaf\x0c\x16\x6f\x69\x51\x57\xb3\xa9\x42\xc3\x98\x2d\xb5\xe5\xa7\x75\x14\xa2\x3f\xd9\x74\x4a\xd7\x04\x31\x6a\xd8\x8f\xc5\xed\xbb\xcb\xa3\xa5\xb7\x4d\xcb\x84\x27\xd7\xf5\x76\x8b\x2f\x01\xf1\xfc\x04\x44\x95\x39\x73\x56\x87\xa7\x82\x9d\xba\x80\xf1\x1b\xa2\x41\x5d\x8a\x38\x4c\x07\x2e\xcb\xf1\x33\xf2\x09\x34\x88\x89\x0b\x0c\x03\xe1\x11\xde\xef\xd8\x35\x97\x69\x3d\x68\x50\x89\xfe\x4e\x9a\xa2\x1c\xcf\xca\x00\x15\x54\xa2\x84\x08\xe8\xcc\x9d\x72\x8e\x29\x6c\xec\xc3\xa7\x2e\x90\x83\x71\xd7\x42\x60\xf5\xda\xf2\x05\x0f\x2b\xfa\xb9\x0d\xab\x50\x0c\xdf\x52\x05\xa2\x6a\xd8\xf5\x89\xc1\xcb\xfe\xdc\x30\x4b\x6a\x75\x43\x1a\xba\xeb\x49\x09\x6e\x9f\xde\x06\xda\x3d\xed\x2a\x19\xc3\x8f\x9a\x43\x28\xaa\xc7\xbf\xc4\x07\x13\xb7\x22\x8b\x94\x82\x78\x8f\xf2\x49\xc5\x3f\xd4\x07\xb0\x15\x84\xc3\x8b\x34\x99\x96\x06\x31\x69\x23\x1e\x23\xbe\xb9\x39\xf9\x10\x0d\x0e\x5e\xfc\xe4\xf5\xad\xfe\x25\x02\xc3\x96\x3d\xa7\x45\x83\x8e\xb6\x19\x62\xd4\xd2\xfb\xc8\x04\x55\x39\xc2\x0b\x2c\xbf\x4f\xf8\x56\x6e\xd0\xde\x11\xca\xd8\xd3\xf3\x19\x72\xb9\xcf\x69\x76\xc6\x04\x65\xa3\x5d\xc1\xfc\x4d\x64\xf7\x6c\x4b\xe2\x0c\x27\xb2\x65\xae\x50\x64\x4d\x4c\x8c\x2c\x31\xad\xc9\x3e\xb1\x8c\x17\x4d\x25\x54\x2e\xf3\xaf\x9e\x5d\x76\x4c\x2d\x48\xbc\xd8\x1a\xf3\x95\x4d\x3c\x23\x2e\x8c\xe2\x88\x8a\xe9\x99\xf9\xf6\x00\xf1\x0d\x18\x07\xaa\x7d\xe3\xd5\xa1\xf1\x1f\x30\xc9\xf4\xcb\x7f\xf6\x31\x31\x2e\x62\xa8\x01\x66\xd8\x90\x32\xd7\xbc\xce\xff\xd4\xc5\xcc\x21\x06\x4f\x97\xbd\xd9\x5b\xce\xea\xc2\x57\x2c\x21\xef\x3c\x70\x5c\x73\x95\xc1\x0e\xf2\xb1\xdb\x47\x67\x3e\xe0\xe1\x41\xa9\x6f\x52\x28\x86\xdf\x78\x4c\xab\x1f\x91\x70\x84\x08\xe7\xcc\x57\xb4\x8f\x80\x75\x12\xfd\xb2\xd5\x9a\xd8\x5d\x2c\x67\xc7\x57\x9c\xaf\x3c\x3f\x58\x3c\x51\x3e\xe9\x82\x6f\xd4\xbb\x5e\xf3\x50\x75\xa6\x14\x9c\xa8\x37\x8d\x9e\xcd\xf3\x53\x79\x47\x7b\x53\x13\xf9\xbe\x17\x85\xd6\xc4\xac\xe5\xe9\x19\xca\xac\xc5\x02\x60\x46\x7e\x51\x9d\x3f\x5b\x8b\xd8\x25\x98\x0f\x4d\x78\x39\x1d\x0b\xea\x98\x95\xa4\x9c\x40\x6f\xe6\xc2\x25\x43\x1d\x95\x00\x20\xae\xf4\x94\x71\x2a\xfc\xdd\x76\xb1\x90\x0b\xbb\xf8\xa6\xf1\xda\x55\x6f\x30\xa1\x63\xa5\x5a\xc4\x1c\xad\x5e\x24\x42\x85\x5f\x85\x8e\xb0\xbc\xff\x22\x39\x3e\xed\x28\x14\xc3\x87\xeb\x9a\xdb\x06\xb2\x5d\xcc\x04\x92\x23\xdc\xfb\xbc\xb2\xc7\x04\x95\x86\x98\x4b\x91\x1d\x78\xed\x08\x75\x08\x13\x58\x89\x2a\xc4\xd1\x51\xba\xa8\x54\x9d\xf8\xf1\x2c\x2e\xf3\xa5\xc3\x5a\x0c\x06\xe0\x3e\xf3\xe2\x3b\xfa\xd2\xd1\xd1\x7a\x2a\xf1\x03\x16\x0b\x8d\xe7\x7e\xbb\x44\x17\xec\x2f\x63\x03\xae\x2c\x5c\x17\x63\x65\x52\xd2\xd8\x48\xd1\xb3\xc9\x0c\xdb\xd1\xe2\xf5\x08\xfb\x42\x4e\x64\xfe\x9f\x0e\xc5\xf1\x25\x10\x52\xa6\xb9\x67\x7a\x14\x2b\x7c\x58\x9e\x15\x8a\xe1\x87\xca\xad\x4e\x50\x3e\x66\x62\x32\xf0\x95\x92\xc4\x95\x12\x5f\xe9\x2d\x87\xef\x56\x14\x4d\x30\x27\x67\xa6\x63\xc5\x86\xc5\x09\x00\x90\x35\x5b\x66\xa7\xf9\xc9\xa3\x75\x01\xd7\x12\xa0\x33\x08\x8c\x78\x8b\xbd\x99\xdf\x6b\xae\x13\xb6\x68\x54\x32\x17\xbe\x31\x5a\x92\x5d\x5b\xc0\xfc\xb9\x9b\xc3\x74\xd6\x70\x48\x97\x8d\x2b\x00\x22\x14\xa3\xcb\x19\x7c\x37\x59\xb8\xd9\x6a\x06\x76\x4f\x95\x38\x6a\xdb\xb7\x55\x11\xd7\x81\x09\x77\x00\xb9\xed\x77\xc7\xd4\x71\x27\xb3\xf9\x48\x70\xe3\x16\x7d\xaa\x13\x38\x3e\x23\x89\xce\x6c\xe6\xbd\x2f\xb6\x68\xfe\x49\x9a\x2b\x90\x99\xee\x7f\x4c\x53\x71\xf3\x90\x18\xe1\x48\x90\xdc\x43\xdd\x8a\x16\x35\x16\x74\xb2\x0b\x57\x68\xbf\xbb\xe9\xb2\xc0\x9b\xe2\x0b\xa9\xd3\x70\xfb\x2c\x1d\x12\xe1\x89\x19\x4b\xc8\xb6\xf0\x25\x02\x69\xe3\xb0\xc3\x5b\xcf\xd3\x4a\x3c\x20\xaf\x20\xae\xf2\x11\x95\x30\xdb\xdf\xd2\x8c\xe1\x68\xe0\x98\x62\x5b\xfa\x2f\xe3\x04\x19\x18\x35\xa2\xd2\xf2\x59\x8d\xe5\x57\x89\xfa\xd9\xb8\x42\xc8\x4f\xd0\xa7\x29\xa8\x2e\xab\xfb\xde\xc5\x5a\x4c\x8c\x6a\x66\xce\xf8\x5f\x71\x5a\x26\x12\xe8\x42\x86\x68\x4a\x1d\x26\x65\xbe\x1d\x40\x0d\xa7\x8f\x60\x86\x2b\xc2\x86\x26\xf1\x00\xb2\x51\x0e\x38\xd0\x7c\xd1\x36\xf5\x6d\xc7\xc8\xe8\xcf\x0c\x10\xd2\x89\xa2\x51\x2c\x2c\xeb\xd3\xf5\x8c\x2f\xa0\xf2\x17\x1c\xd4\x4d\x08\x02\x68\x11\x98\xb2\x3b\x9b\x77\x67\x4b\xe9\xe4\x02\xf5\x2c\x96\x95\x12\xad\x28\xb7\xfa\x8b\xde\xc9\x37\x47\x2b\x98\x52\x46\x7a\x7a\xf8\xdc\x7e\xfa\xa3\xc3\x14\x9e\x59\x19\x11\xc6\x91\x85\x65\x61\xcf\xee\x83\xc0\x1f\xc4\xd4\xdf\xdc\x24\x37\xb7\xa8\x44\x19\xb4\x49\x0c\x5b\xb1\x44\xe3\xbf\x6d\x1a\xa3\xa5\x14\xe1\xae\x2a\xbe\x58\xee\x86\x7d\x3c\xab\x70\x69\x4c\x01\x89\xb9\xb6\x9f\xee\x14\xca\xfb\x69\x7e\x9a\xff\x38\x58\xc3\xb0\x45\xfd\x4b\x85\x32\x48\x8a\x10\x4d\xe7\x8e\x15\x82\x86\x82\xe0\xa4\xc4\xb4\xa9\x67\x46\xaa\xa4\x56\xe2\x59\x88\x7b\xff\x84\x7f\x38\x30\x38\x8e\x25\xf5\xb8\x35\xce\xcc\x0c\x5b\xbc\xa5\x7c\x46\xeb\x98\x79\x44\xe4\xe8\xd0\x1d\x2c\xcd\xf0\x28\x33\xaa\xb8\x0f\x85\xb8\xde\xec\x2c\x0e\xa4\x02\xbb\xbb\x69\xfa\xc2\xed\xc2\xcd\x0a\x0d\xa3\x1b\x33\x83\xc0\x0e\x30\xa4\x6f\x2a\x93\x66\xa8\x5a\x79\x1e\xb9\x77\xb5\x5c\x81\xa0\x0a\x65\x34\x85\xab\x5b\x3a\x46\xb3\x65\x45\xb1\xf6\x4c\x76\xcf\x64\x2d\x91\x04\xcc\xa8\x22\x2f\x1e\x2b\x65\x1f\xad\x6a\xff\x94\x58\x96\x18\x4d\xfc\xeb\x68\x8e\xef\x2b\x47\x95\x8f\x0f\xfa\x3d\x50\x2a\xfd\xf8\x79\x65\x86\xd6\x0c\x58\xa9\x89\x0a\xc5\x70\xab\xab\xa6\x01\xe4\xc3\xd7\xb9\xf4\x94\xb0\xc8\xc7\x36\xb5\x88\x17\x97\xe0\x4b\x5f\x56\x0c\x66\xa3\x7c\xed\x98\x04\x54\x68\x73\x9b\x37\xb7\xe8\x02\xb9\x94\x45\xe5\x3e\xaf\x36\xf1\x53\x5a\xef\x39\x53\xf8\xcf\xee\x98\x21\x9f\xf6\xec\x96\x86\x38\xcf\x59\x90\x85\x5b\x10\xa3\x56\xa0\x8a\x59\xbd\xbe\x71\x84\x02\xbb\x8a\x02\x50\x74\xee\xa2\x5f\xf5\xa4\x9b\xee\x94\x6a\x6d\x42\xa9\x58\xa6\xab\x2f\xb7\xc9\xdb\xd4\x31\x33\x46\xe6\x3f\x77\x4f\x4a\xe0\xb6\x4e\xa4\x65\x5d\x66\x46\xd7\x38\x2d\x3f\xb1\x1a\xad\xa7\x18\x67\x61\xd7\x91\x8b\xe2\xb2\x0b\x99\x30\xd5\xf9\xba\x86\x02\x43\x20\x8e\xc6\x71\x04\x1b\x94\xc6\x1e\x59\x66\x23\x65\x8e\x72\xf7\x11\xd5\xc0\xcb\xb6\x03\x87\x70\x63\x8b\xe8\xe5\xfc\x58\x03\x90\x94\xb1\x4d\x1c\xe2\x09\x3d\xa8\xfc\xd5\x07\x14\xcf\x57\xc1\x52\x23\x46\xac\xa2\xfe\xd7\xac\xa4\x62\xd6\xea\x28\xca\x4f\x5e\xb5\x4e\x14\xa0\x6e\xf8\x95\xd5\xda\xcc\x05\x63\x0e\xc8\x80\x04\xb5\xa5\xc5\x62\x95\xbb\x04\x42\x96\xbe\xef\xc4\xf4\xff\x97\x9d\xde\x7c\x5e\x54\x85\xdb\x3b\x06\x29\xf3\x63\x68\xa0\x56\x3f\xa8\x1d\x28\x6e\xb0\x95\x48\x06\xfc\x25\x9b\x7e\x21\x5d\xb4\xea\x78\x14\xe4\xac\xe5\x21\xf1\xda\x64\xa6\xb4\x90\x07\x0c\xfc\xff\xbb\x20\xfd\x83\x69\xa9\xce\xa1\x6d\xa2\x4b\x5e\xbc\x54\x1b\x3a\xa2\x1a\x62\x3e\x52\x49\xd1\xeb\x9f\xd0\x31\x06\xac\x82\x13\x6e\xe4\x8b\x5d\x5a\x26\x66\xc4\xc6\x48\x64\xe2\xa8\xe0\x18\xb4\x62\x98\xa2\xff\x45\x62\x8c\x63\xa6\x2b\x3b\xaa\xb5\xbb\x88\x75\xb2\xfb\x6d\xd3\xf7\x5f\x0e\x8a\x6d\x7b\x3e\xed\x28\x26\x44\x3e\x75\x85\xf7\x41\xf6\x27\x67\x79\x2e\xbe\x31\x00\x6c\x47\x66\xff\x6e\x6d\x1c\xd7\xed\x33\x44\x99\x49\x1c\xc4\x9a\x62\xfe\xf2\xe1\xa7\xe5\xb9\xb4\x08\xf2\x3c\xaa\x9c\xcb\xdc\xbb\x38\x9f\x1f\x6c\x32\x1c\xe0\x16\xa1\x58\x30\xff\x8d\x45\x03\x15\xcc\x31\xc7\xe1\x3e\x90\xa4\x69\x0f\xd7\xa3\x34\x7d\x76\xa8\xc2\xc8\x47\x7e\x95\x77\xb5\x37\x3c\x22\x4b\x38\xa7\x45\x15\x33\xb3\x7a\xdc\x60\x85\x06\xc1\xdb\xe6\xec\x87\x94\x02\x1d\xdb\xc8\x33\x82\x28\x93\x45\x7f\x33\x51\x55\x94\x8e\xc1\xcd\xf9\x6b\x5d\xf9\xbd\xca\x28\xb0\xfc\x82\x4f\x2d\x2c\x0c\xc5\xb2\x47\x8f\x27\xff\xc6\x84\x94\x00\x73\x9f\x1f\xee\x97\xea\xf0\x25\xbf\x50\x0c\xaf\x3c\xa5\x0a\xc6\xe0\xe8\xde\x09\x84\x45\xf6\x77\x1b\x53\xfb\xa2\x3a\x85\x9d\x53\xf6\x5c\x7e\xa8\x42\x0e\x8e\x29\x82\x9f\x5f\x73\x01\xfc\x09\xf0\xf0\x77\xab\xcb\xaa\xa4\xcd\xf8\xca\x82\x41\xca\xcc\xd6\x83\x5d\xd5\x23\x9a\xb4\x7c\x1d\x79\xbe\x25\x5e\x5c\xfe\x13\x0f\x0c\x8e\xab\x94\x28\x9a\xf0\x00\xf4\xce\x40\xc9\x5c\xa9\xa9\x72\xd0\x9f\xde\xab\xe8\x67\x46\xad\xb3\x65\x25\x72\x55\xbf\x3e\x94\x3e\xc0\xf1\x00\x30\xba\x7e\x30\x94\x5c\x7c\x5c\xae\x7d\x01\x9d\x23\x02\xc7\x5b\xeb\x55\xeb\x35\xdb\xf7\xd4\x4a\xfa\x8b\x3d\xfc\x30\x2e\x40\xbc\xa2\xe9\x2a\x49\x9a\x00\x56\x2d\x41\xee\x58\x34\x54\x99\x41\xd3\x80\x8f\x14\x32\x3b\x43\x99\xa7\x1a\x84\x2f\xa0\x7b\xb3\x37\x4c\xbd\x44\xe9\x20\x1d\x53\xb8\xa6\x8b\x97\x3e\xfd\xd5\x41\xca\x4b\xb7\x6a\x60\x5b\x35\x5a\xd1\xc2\xc1\x9e\x47\x6c\x0e\x78\x09\xff\xfd\x1d\x0d\x97\x1b\x38\x1e\xa8\x69\xa6\x48\xd7\x07\xc7\xa4\xc3\x43\x25\xba\x6c\x60\xda\x95\x60\xf4\xf6\x96\xf8\x37\xad\x20\x68\xa9\xde\x37\x54\x97\x1d\x77\xfc\xd8\xf1\x32\xfa\x40\xef\x3d\x2c\x6f\x6f\x17\x72\x02\xc4\x00\x65\x9b\xf9\xdb\x76\x69\xbc\xe7\x44\x5d\x7a\xbe\x72\x2a\x2d\xbf\xf4\x1e\x31\x82\xfc\xf6\x29\x4d\x46\x98\x7a\x49\xc0\xce\xfc\x5e\x51\x93\x77\xb1\x53\x8d\x33\xda\xf4\x33\x3c\xc5\xcf\xb3\x89\x62\x8e\x9b\xad\xad\xd1\x78\xa6\xf1\xb3\x9c\x7f\x5c\xc2\x15\xf8\x97\x16\x25\xe0\xbd\x3d\x49\x67\x47\x68\x8b\x5d\x4d\xa6\xae\x2d\x9b\xb1\xe3\x13\x50\xf3\xe6\xbd\xe9\x73\x8e\x1c\x5a\x99\xd0\x7e\xd4\x57\x29\x94\x4e\x00\x54\x02\x1c\x38\x3f\xcc\x57\x66\x4a\x2e\xc1\xdc\xb5\xeb\x85\x75\x1a\xf7\x9a\x31\x52\x47\x56\xbc\x66\xce\x2c\xd0\x34\x83\x03\x27\x3e\xce\xa8\x94\xc4\xfc\xe9\x6f\xeb\x94\x5d\x1a\x54\x62\x49\xe2\x6c\xf7\xa4\x61\xea\xad\x37\x38\xfd\xb9\x37\xfb\xd9\x35\x0a\x6c\x55\x92\x32\x4f\xe9\xf3\xe0\x3a\xc1\x0d\x8e\x3f\xcb\xfc\x62\x81\x32\x07\xa1\xb6\x90\xfe\xfa\xc4\x53\x62\xf3\x44\x4c\x04\x60\x96\x4c\xd7\x84\xb1\xca\xb1\x0e\x38\x29\x2e\x5d\xa6\xfe\xec\x01\x45\x23\xd3\x8c\x32\x39\xaa\x08\x0a\xd0\x79\x31\x00\xca\x22\x0e\x16\xf5\x7d\xee\x1a\xcd\xff\xca\x23\x95\xaa\xef\x61\xe9\x15\x7f\x78\x99\x42\x12\xa3\x25\x65\x7f\x1b\xfe\xf7\xa2\x74\x1d\x63\x10\x3f\x56\x63\xff\xc1\x6a\x7d\xac\xe4\x23\x23\x1e\xf7\x0f\x7a\x80\x7f\xb1\x89\x0d\x5c\x30\x61\x50\x74\xc9\x50\x3e\x10\x9f\x57\x26\x35\x6a\x43\x5d\x9a\x79\x6e\xd5\x44\xbd\x76\xe4\x9a\x92\xad\xe6\x47\xd9\x43\x53\x93\x90\x6c\x34\xa1\x50\xbe\xbc\xdf\x00\x51\xd0\x83\x2a\x57\xb8\xb0\xbf\xa6\x56\x63\x89\xb7\xc9\xf3\xdb\x7d\x0b\x65\x75\x54\x41\x25\x46\x54\x76\x7f\xce\x59\xa2\x22\x91\xcb\x01\xb7\x71\xec\xe9\xd2\x44\x2e\xa2\x8e\x58\xb0\xd2\x65\x6e\x1c\x7a\xdf\x24\xed\x17\x07\x36\x71\x02\xbb\x0f\x08\x46\x38\x68\x17\x87\x99\xcc\x6a\x9b\x1d\x3d\x95\x37\x56\x0f\x16\xd9\x8d\x5a\x98\x23\x5e\x42\x23\xaf\x28\xf2\xb8\x18\xb1\x2a\x46\x42\xf2\x2f\xb3\xd7\x54\xe4\x39\x95\xed\x63\xe6\x53\x8f\xab\x63\xe7\x99\x85\x62\x58\x7a\x36\xb9\x5f\xcc\x07\x72\xd3\x47\xb5\xca\x89\x61\xc7\xc4\x16\x04\x2f\x39\x3d\x65\xf7\xa8\x4c\x9d\x8a\x20\x01\x67\xd6\xe6\x35\x79\xb0\x2a\xf6\x29\x23\x46\x5c\x89\xcc\xd7\x5c\x8c\x2a\x48\xcc\x18\x7e\xa1\x89\xe5\x99\x8c\x70\x5e\xa6\x59\x28\x86\x87\x56\xa6\x67\x3b\x86\x5b\x85\x4e\x26\xf3\x97\x47\x35\x68\x7a\xb9\x8c\x01\xfd\x9a\x10\x84\x27\x72\x56\x41\x61\x3e\x75\x4c\x5c\x07\x41\x95\x38\x92\x8d\x7e\x5c\xab\xc3\xaa\xc4\x51\xcb\xb8\xcc\x33\x3a\x60\x1d\x8c\x78\x85\x7a\xdb\xb4\x5d\xba\x66\x55\x39\xc0\x96\x04\x26\x67\x3f\x3f\x67\x84\x02\x6e\xab\x47\x35\xb0\x0f\x75\x5c\xee\x3b\x27\x54\x89\x3f\xe0\xc5\x83\x1a\x43\x6f\xee\x89\x49\x2d\x66\x00\xb1\xb4\xf0\xe3\x25\x71\x22\xa6\xcf\x8c\xfe\xcb\xab\x8e\xc9\x37\x8c\x02\x93\x44\xa7\x02\x7e\x2d\xbe\x5f\xc1\x1f\x33\x04\x2a\x0f\xce\x0c\x05\x0f\x84\x58\x0d\x45\xe9\xec\xef\xe1\x24\xad\x80\x76\x50\xf4\x73\x00\x0a\xab\x4f\xc9\x3e\xff\xac\x22\x83\x8b\x9c\x5a\x81\xd1\x52\x49\xa8\xe4\x85\x2f\x8d\x54\x87\xb4\x65\xca\x7c\xe1\xcf\x9a\x79\xb7\x62\xa9\x9c\x90\x4a\x79\xba\x7e\xef\x3d\xa3\xa5\x42\x88\xdd\x32\xef\xfb\x57\xfd\xd9\x13\x13\x8b\x98\x1d\xae\xba\x5f\xdb\x5a\x44\xa7\x53\xcc\x4f\xc7\xde\x97\x4c\x20\x4b\x4d\xf9\xb6\xc3\x41\x33\x64\xd2\xa8\x81\x11\xaa\x83\xa2\xff\x7e\x96\x90\x61\x9c\x17\x55\xe8\xca\x65\x7d\xea\x45\xde\x58\x2e\xc1\x01\x50\x06\xe4\xc9\x9f\xb3\x48\xe9\x87\x5d\xc4\x97\x07\xd9\x21\xf7\x28\xed\x26\x45\x96\x14\x01\xfc\xdc\x3e\xbe\x80\x58\x4c\x03\xe2\x11\xe4\xc4\x03\x89\xdc\x76\x05\x82\x02\x78\xc9\xb8\xb4\xf3\xb7\x69\x9b\x02\xe4\x5a\xb8\x4f\x23\xf5\xcf\xbd\xa6\xe5\x12\x44\x12\xe9\xa2\x83\x4f\x8f\x96\x84\x95\x96\x07\x9c\xfd\xc2\x03\x32\x5b\x76\x51\xa3\xc6\x91\x6b\xcf\x3c\x29\x93\x78\xe0\x04\x5e\x20\xda\xc2\xcc\xdf\xf6\x0d\x10\x79\xac\xc2\x17\x20\xcb\x34\x11\x75\xe4\xf8\xa4\xe0\xd3\x12\x32\x0c\x1a\x1f\xd9\xfd\xc3\x52\x93\x03\xd1\x9e\x76\x54\xb5\x7b\xd7\x83\x8d\x98\xfe\x02\xdf\x7f\xc0\x49\x75\x8a\xe0\x80\x06\x37\x4f\xe6\x67\xd7\x73\xd4\xcb\x0d\x55\x64\x97\x5a\xed\x52\x7b\xf3\x1d\x73\x92\x5a\xc3\x32\x5b\x73\xe2\xd7\x36\xea\xb9\xd7\xa3\x4c\xa0\xc5\x5e\xba\x3b\xdd\xfc\x50\x30\xd1\x0d\x1c\x05\x6c\x96\xf9\xfc\xfe\x81\xa2\x52\x8f\xcf\x71\xae\xed\xa1\xe4\x31\x97\x48\x6b\x3e\xf2\xd6\xc8\x45\x22\x71\xcc\xc0\xf3\x59\x0b\x56\x27\x57\xdc\x98\x8e\x8a\x5d\x49\xce\xdd\xb8\x1e\x1e\xa1\x0b\xc6\x92\xca\x69\x66\xb2\xaa\xf5\x19\x77\x71\x4d\xa4\x23\xb6\x2c\x55\x14\x49\x90\x5a\xd4\xff\x7e\x8b\x40\xb7\xdb\x25\x12\x13\xe7\x3e\x7a\x4e\xd5\xe9\x50\x31\x46\x99\x95\x9d\x29\x01\x2f\x5f\xd0\xea\xb2\x7f\xd5\x00\x12\x88\x09\xe0\x57\x66\xba\xc6\x9d\x0b\x1c\x83\x0b\x91\x48\x79\xd1\xdc\x6d\x2d\xda\x94\x65\x20\xd0\xc5\x71\xb3\xbc\x42\xc3\x1d\x05\xac\x1e\x55\x6c\x42\x24\x7c\xa7\xb2\xe5\xa3\xf1\x18\x2d\x73\xe9\x82\x74\xe5\x7b\xa7\xf0\x18\x9e\xbf\x2e\xbd\x28\x2a\x95\x8c\x3e\x90\xd9\x99\xef\x0d\x4c\xaa\x86\x99\x6d\x1d\xd1\x3f\xfc\xd3\x4b\x0a\x16\x1a\x7b\x2e\x01\x82\x15\xdc\x91\xc7\xc6\x8e\x50\x5e\x29\xc8\x3e\x38\x5c\x3c\xee\x83\x6d\x7d\x39\xc4\x42\x99\x79\xe4\x21\xb1\xce\xc6\xcc\x4f\x4a\xec\x6e\x65\xbf\xe4\x32\x0c\x06\x0b\x84\xb3\xe1\x3e\x3d\x81\xc7\xa5\x0f\x21\x8b\x28\x88\x99\x6c\x66\x8d\x5e\x6a\xb0\x12\x62\x9a\x0e\x6b\xb6\xff\xb9\x74\x84\xec\x98\x3a\xb3\xbd\x9d\x3f\xc0\xe6\xe3\x02\xe5\x57\x25\x65\x48\xd9\xdf\x57\xe0\xc4\xb8\x89\x0b\xd4\xc5\xa2\x72\xcf\x0f\x3e\x8f\xab\x53\x71\x84\x7f\xab\x1f\x24\x19\x25\x36\xa6\x51\xcd\x6e\x63\x9f\xa3\x90\xb3\xd7\x4d\xe5\xb7\xa4\x8e\x58\x93\x17\xb0\xff\x3b\x3e\x2e\x60\x2d\x82\x03\xa0\x38\x6c\x18\xa2\x8c\x11\xea\x98\x47\x99\xa7\x1e\xbc\x38\x35\x3f\x0c\x2c\x2f\xfe\xbb\xdc\xd6\x1d\x17\xb7\x0a\xdc\xf0\xdf\x98\x2f\x6b\x94\xc9\x5a\xc0\x4c\xe2\x55\x85\x71\x4d\x1c\xb9\xe7\xf7\xd3\x35\xab\xcc\xc0\x88\xe1\x0f\xe1\x99\x65\xaa\xac\x1e\xb7\xcc\xdc\xb5\x4a\xf9\x94\xc8\xa7\x01\x44\xf4\x7f\xd5\x14\x24\xb8\x57\x16\x87\x3e\x2e\xd4\xbc\x29\x3c\x62\xbb\x1e\x75\x54\x66\x4c\xb6\x63\xbc\xc6\xfd\xa4\x94\xfb\x23\x86\x3f\xbd\xb3\x45\x9a\x13\xc8\x29\x53\x0b\xc5\x70\x67\xe7\xa5\x4a\xc5\x15\x53\xf5\x92\x12\xfc\xd5\xbc\xb6\x38\x04\xa5\xc5\xd8\x07\x32\x7f\xed\x26\x99\x17\x95\x89\x4d\x78\xea\x45\x25\x0d\xa0\xea\x7b\xeb\xd0\x74\x9d\xa7\xcd\xe5\xbb\x02\x46\x3c\x93\xf0\x3d\x14\x0c\xf2\xde\x18\x27\xcb\x8c\x2a\x6d\xf0\x5b\x38\x6d\xfc\xa8\x78\xae\x97\xbe\x61\x85\x62\x78\xe1\xae\x41\x8a\x74\x52\x54\x69\x86\xf9\x7d\x2a\x99\x65\x06\xdc\xbb\xc7\x4b\x3c\x5b\xde\x10\x58\x75\xac\xae\x44\xbe\xd5\xa3\xa1\x15\x91\xc3\xd1\x3d\x3c\xaa\x5c\x64\x6a\x52\x09\x36\x66\x15\x81\x25\xc9\xfc\xe8\x94\xb6\x96\xe7\x76\x51\x30\x0c\x1f\xf5\xa8\x0c\x72\x0c\x9b\x18\xdb\xbc\x3e\xd9\x5a\x12\x4c\xd9\x2a\xf5\xdc\x2a\x1f\x1d\xe5\x46\x97\x15\x46\x3d\x35\x9b\x95\x00\x31\x00\x57\xff\x6a\x49\x52\x45\xbb\x24\x2a\x59\xdd\xc3\xbc\xc7\x5f\x74\xfb\x82\x3b\xc0\x75\xde\x1d\xa6\xb4\x15\x1e\xb5\x60\x6f\x13\xee\x5a\x22\x6b\x80\x06\x23\x3e\xa6\x65\xd0\xff\xce\x59\xaf\xb5\xa2\xc9\x98\xc9\xd1\x2c\x30\x1f\xfe\x91\xce\x12\x44\x9e\xd7\xc6\xf7\x26\x51\x37\x7e\xe7\xfa\x81\xa2\xdc\xb3\x85\xb2\x60\xce\xef\x27\x55\xeb\x3a\x0a\xc5\x70\xcb\x19\x95\xb8\x9a\x48\x09\x9d\x78\x70\x58\x9c\x79\x13\x1a\x44\x74\xb2\xcd\x55\x12\xc3\xeb\x13\xc6\xb0\x43\x81\x31\x88\x7c\x62\x00\x9b\x8c\xf4\x4b\x3f\xe5\x72\x60\x25\x0a\x98\xa5\xd5\x49\x5e\xae\xe0\x56\xf5\xef\x5f\x5c\xfb\x1e\xed\x46\x79\x35\xe4\x1b\x55\xdc\x40\xca\x22\xb6\xfe\x46\x72\x86\x2b\x01\x53\x7d\x3b\x9e\xd0\xd4\x9c\x90\x47\x0c\xe1\x0d\xf5\xb3\x03\x42\x95\xde\x75\xb1\x65\xc5\xb3\xd4\xdc\xfc\xc9\xaa\x5e\x39\xa8\x37\x44\x9f\x73\xec\x60\xcd\x27\x98\x79\x35\xe2\x68\xb8\x82\xdc\xf9\x8a\xea\x50\xd4\x44\xd7\x79\x31\x10\x7e\xfc\x39\x9e\x5f\x97\x52\x96\xcc\x15\x27\xf6\xd7\x16\x9c\x94\x4a\xf9\xa2\xce\x91\xbc\xa8\x5f\xb8\xe0\x66\xd8\xc3\x8f\xe6\xff\xd7\x70\x61\x9c\xf7\x17\x4d\x62\xd2\x60\x14\xf9\x05\x3b\xf0\x2c\x62\xf3\x2c\x06\xd3\xe6\x8f\x6b\xa4\x21\x1f\x63\xa7\x80\xe2\xc3\x9f\xed\x1c\x3b\x3e\xf9\xb0\xd2\xa3\xa7\x25\x05\x1e\x5a\xa7\x8c\x5e\x71\xac\x7a\x90\x39\x75\x48\x57\x51\xb0\x44\x26\xbe\xa8\xbf\xa0\x7f\xf9\x0c\x05\x9e\x57\xb8\x05\x55\x95\x06\x31\x7b\xc7\x43\x8a\x96\x82\xb0\xb5\xb3\x05\xef\x38\x73\xa2\x2e\xbd\x31\xd4\x68\xf4\x83\xb6\x16\x0f\xe1\x92\x85\x6d\xd1\x06\xae\xad\x2b\x84\x18\x65\x20\x99\x39\x72\xde\xc5\x4a\x46\xae\x23\x8f\x7f\x41\xa8\xb2\x3b\xb6\x71\xcc\xfd\x52\x30\xbc\xf3\xfb\xe0\x37\xdf\xbe\x3f\xfd\x4b\x2b\xd8\xa1\x06\x31\x63\xa6\x45\xdb\x39\x6d\xea\x8e\xca\x04\x09\x22\xf7\x1f\x3a\x25\x08\xd7\xf3\xc4\xb2\x62\xfe\x0e\xc9\xf6\x23\xfa\xaf\x0b\xef\x39\x72\x89\x56\x22\x11\x89\x89\xcb\x0e\x91\x42\x87\x46\x35\x0a\x2c\xb9\xad\x4a\x0d\x46\xeb\x38\x36\x7f\xbd\x3a\x2f\xf0\xc0\xa8\x04\xc8\xdc\x6c\xed\xa4\x1c\xaf\xd3\x46\xf4\x82\xd6\x6d\x9a\xa0\x3d\xcc\xe8\x09\x24\xda\x9b\xd2\x11\xf1\xfa\x37\x5b\x70\x81\x66\x60\xf8\x31\x26\x25\x33\x69\xa1\xf0\xcb\xa9\xa2\x26\x56\xef\xdd\xb4\x7d\xca\xfc\x1e\x06\x0f\x6b\xfb\x6b\xfe\xbe\x26\xea\x4b\x59\x3b\x7b\xea\x5a\x15\x19\x66\x60\xc7\xa3\xbc\x9e\xce\x8f\x12\x81\xcb\xa5\x81\xe5\xf3\x82\x6b\xc4\xf5\x6a\xea\x60\xb5\x42\x31\x3c\x32\x54\x90\xba\x51\xa9\xc4\xb7\x57\xe0\x7e\xf7\x6c\x4b\x61\x2a\x74\x9f\xf1\xba\x51\x7a\xb3\x6b\x60\x4b\x8c\x47\xa7\xee\x1f\xaf\x5d\x51\xb7\x2f\xfa\xde\xb5\x93\x5a\x16\xc8\x06\x68\x94\x44\xef\x8f\x95\xa0\xf4\x79\x78\x91\x26\x9f\xed\x35\x8d\x2a\xb5\x68\x85\x78\x71\x2a\xce\x7c\xe1\x98\xc4\x79\x1b\x55\x64\xbb\x51\x5f\x54\x25\x2e\x54\xd0\x07\x1e\x1e\xa1\xec\x03\x98\x83\xcd\xf8\x90\xbf\x32\x56\x95\xd5\xb2\x2c\x18\x66\x7d\xef\x70\x8c\x59\x73\x4c\x3e\x1a\x8a\x62\xde\x03\xed\xc3\x94\x25\xb4\x6b\x51\xc2\x31\x20\x1f\xbe\x3f\x5d\x25\x4f\x14\x0b\xe1\x5f\x38\x13\xf4\xe7\xc6\x11\x47\x7a\xc1\x57\x7c\x4b\x66\x7d\x46\x91\xc9\xf5\x4d\x35\xee\x21\x72\x88\x8d\x2c\xb1\xf0\x5b\xfa\xf4\x20\x65\x02\xc0\xe7\xa2\xf3\xb7\x68\xb7\x9c\x12\x8e\x93\xe6\x38\x82\x3f\xde\x23\x4f\x72\x25\x68\x16\x8a\xe1\x9c\x7d\x3a\x21\xa2\x44\xb8\x1e\x87\x32\x97\x1e\x2e\x4e\x44\xd3\xf3\x25\xa6\xfe\xb7\x5b\x86\xc4\xcf\x07\x36\xfd\x7c\x91\x76\xcc\xd5\xde\x24\x23\x36\x8e\xb1\x0e\xb1\x20\xd9\x84\xcb\xb4\x22\x8d\x01\x36\x25\xba\x40\x7c\x78\x79\xe8\x2d\x1d\xa4\x61\x30\x8c\xbc\x78\x0b\x92\xfb\x5d\x5d\xa7\x42\xd8\x25\x6a\x02\xc5\x89\x4f\x82\x3b\xba\x78\xba\x58\x8c\xe4\xea\xf0\xc3\x02\xed\x39\xcf\xa9\x21\x16\x83\xc4\xf3\xf3\x5e\x4c\xa7\xd6\x2e\x9a\x90\xd1\x33\xee\x1b\xe9\x97\xda\x31\x13\xca\xc5\x3c\x77\x97\x29\xdc\xe6\x22\xa3\x15\x99\xb9\xee\x7a\xdd\x58\xd0\x4f\x50\x5c\xb9\xbb\xc7\xea\x51\x18\xb4\x56\x84\xed\x79\xee\x8a\x35\xe9\xa7\x67\x53\xc7\x67\x18\x59\xea\x06\x74\xf2\x23\xf2\x18\x73\xb5\xd3\xf8\x6f\x56\x95\x55\xa1\x19\x28\x7a\x7c\x3e\xe6\xdd\x7a\x4e\x82\xf3\x3a\xe1\x32\xfc\x75\xa9\x22\xf8\xc8\x68\x85\x21\xdb\x8e\xaa\xa6\xf2\xe6\xa4\x92\x81\xb2\x39\x33\x7a\x9c\x96\x01\x19\xf6\xb4\x9e\x28\x73\xcb\x92\x74\x26\x33\x69\x82\x24\x7a\xf4\x58\x7a\xe0\x92\xda\x7b\x43\xfd\x21\xf2\xd3\x7f\x6b\xbb\xe1\xc0\xf2\x89\x8d\xfc\xc0\xe6\x48\xf1\xfc\xbc\x63\x49\x5e\x0b\x2c\xa5\x7a\xcd\x2f\x5f\x76\x91\xfc\xc4\xd1\xc5\xbd\x74\xc9\x45\x71\x8f\x24\x3a\xbe\x0f\x2a\xd6\x55\x46\x95\x30\x14\x25\x98\xdb\x7b\x94\xe5\x1f\x65\xd4\xe7\x98\xe0\xfb\xef\x54\x98\x6d\x72\xa1\x1d\xde\x35\x47\x1d\xdf\x10\x3f\xc9\x90\x87\xb3\xf2\xe2\x96\x82\x26\x5f\xff\x9e\x58\xad\x07\x45\xcb\xc2\xa6\xb0\xd1\xbd\xc2\xd4\x99\xcf\x35\x31\x8f\x95\x77\xee\x97\xaf\x2b\x84\x39\x46\x41\x2f\xe8\x96\x0d\xe3\xb4\x58\x82\xca\xc8\x17\x67\x23\xfe\x87\x9f\xf0\x35\xb2\x14\x23\x5e\x12\x00\xb2\xd3\xee\xd5\xfc\x5a\x90\xad\xb9\xfb\x7d\xf4\xe9\xe1\xea\x2e\x39\xf0\x31\x28\xd7\x87\x8f\x3d\xaf\x0b\xb1\xb3\x1a\xf6\xa5\xbd\xf6\xc8\x6d\xaa\xe4\x6f\xc9\x33\x18\x29\x09\xea\xec\x15\xef\x68\x4d\x19\x6e\xc4\x82\x03\xbf\x7e\x5c\x86\xd3\x06\x46\x35\xcc\x25\xf1\x0f\x1c\x91\x2f\x0c\x7e\x11\x24\xcb\xdf\x54\xd3\x1f\xa1\x49\x59\xac\xbe\x11\x15\x07\xf9\x9b\xf8\xfd\x5e\x80\xc1\xfe\x1d\xc6\xe6\xe1\x29\x45\xea\x1d\x76\xee\x06\xec\x64\x42\xcf\xd1\x74\x5e\xc4\x80\x40\x6c\xa5\xfe\xef\x4e\x55\xe5\x87\xa3\xb1\x20\x24\x7c\x6a\x79\x2b\x41\x90\xd5\x09\x6e\xf0\x4e\x72\xde\x63\xfa\xc6\xcd\xc4\xa8\x4e\x99\x40\xe8\x2d\x39\xa1\x83\xc2\x7d\xa3\x2a\xda\xac\x66\x59\x8b\xf5\xa0\xf8\x22\x9e\xee\x07\x0f\x68\xd8\xd0\x20\xea\x12\x7c\xb1\xc8\xdb\xbc\x57\x16\x84\xa0\xc7\x23\xc4\xc9\x21\xc5\x5f\x3a\x75\x54\x52\x4c\x36\x4a\x98\x31\x85\xae\x99\xbf\xae\xbd\xc5\x18\xce\x45\x6b\x85\x4f\x60\xba\xae\xf8\xaf\x0b\x2e\x53\x26\x2a\xc4\x6c\xb5\xc5\x23\x87\x35\xd6\x81\x15\x38\x95\x44\x69\xe6\x53\xd7\xeb\xbc\x54\xc9\x3f\x11\x24\x82\xf3\xdf\xd4\x1b\x6d\x00\xfe\x61\xc6\x73\xe9\xbb\xba\xb4\xe1\x40\x15\x25\xa1\xfa\xcc\x26\x49\xfe\xf5\x6c\xe2\x57\x6b\xd0\x06\xea\xc1\xf9\x83\x9b\x34\x80\x12\x87\x49\xa9\x1d\xc8\xcd\x4f\xf2\x26\xed\x86\xaa\x8a\xcc\xe9\xcd\xdb\x63\x35\xf5\x5c\x8c\x7c\xfe\xee\xc2\x5b\x35\x00\x28\x98\x59\xd4\x1c\xda\xe0\x06\x2a\xe1\x6f\xe6\x0a\x45\x80\xa6\x1b\xbd\x55\x0e\xe8\xfa\xfa\x4a\xdd\x4a\x0b\x49\x3f\x8a\xfc\xc4\xbc\xf6\x2c\xb9\x95\x89\xcb\x09\x51\xfd\xc6\x6a\xd7\x98\xfb\xfd\x2a\x09\x70\xd3\xde\xa1\x2d\x23\x8d\x62\x38\x5b\xeb\x67\xc0\x2d\xde\x44\x4d\xf1\x8a\x16\xae\x19\xa5\x27\x66\x03\x7b\x82\xaa\x33\x43\xe7\xf2\x44\xc5\x34\xa8\x56\x88\xb4\x7e\xfd\x4d\x97\x2b\x0b\x3c\x30\xef\x6f\xc1\x93\x7c\xf1\xa8\x4c\x5e\x92\x8e\x55\x28\x86\xc5\xb6\xf4\xaf\x9e\x3d\x7b\x6a\xe7\x8c\x99\xa2\xc4\xac\x0b\xa3\x25\x1f\x75\x8b\xf5\x47\x6e\xe2\xaa\xf4\x8b\xf4\x30\xd2\x65\xbc\xae\x7e\x55\x07\xea\x3b\x0e\x98\x4f\xc1\x81\x79\xb0\x43\x06\x58\x5a\x41\xa0\xd1\x9e\x7b\x4f\xbf\x91\xaa\x1a\x92\x3a\xe0\xfd\xf2\xe1\xd1\x0a\x33\xbb\x8e\x1d\xae\x36\x03\xfa\x24\xc5\xde\xdc\xb3\xe3\xb4\xd8\xec\xf8\xa4\x40\x59\x05\x39\xa4\x27\xc6\xbc\x7b\x8b\x15\x0b\xa5\x06\x4a\x40\x1f\x77\x68\x6e\x37\x7c\x20\x21\x70\x9c\x7f\x53\x5c\xba\xab\x98\xf5\x50\x38\x3c\x1f\x06\x80\x26\x07\xda\x94\x59\x4a\xcb\xf1\x0f\x6f\x4f\xd0\x6b\x88\xc0\xe6\x6f\xc9\x4d\x21\x20\x57\x3e\xc2\x27\xfe\xb7\x55\x89\xeb\xb6\x4a\xbd\x84\x13\x17\xb5\xf4\x2e\x2e\x66\x89\x09\x57\xee\x99\xb3\xbc\xc6\xba\x15\x10\x70\x50\x33\xcf\x7f\xae\xe5\x9f\x44\x4d\x66\x82\x08\xe8\xd4\xf6\x82\x0e\xaa\x20\x47\x38\xe9\x40\x09\xf3\xfe\x27\x06\x24\xf0\x52\x78\x4d\x57\x69\x96\x55\xc2\x9c\xd1\x10\x05\xff\x5d\x27\x74\xcf\x24\x91\xb1\x38\xff\xec\xb1\x03\xe9\x3b\xeb\x57\x31\xc3\x9c\x31\x9e\x79\x63\xb5\xee\x96\x19\x78\x42\xdf\xf0\x2f\x6b\xf8\x79\xab\x22\xa7\x82\x78\x0e\xfb\xda\x28\x1e\x45\x97\x73\x95\x20\x8d\x10\x3c\xb9\x6f\xdc\x5a\x83\x95\x12\xdc\x5a\x9b\xb2\xda\xaa\x32\xf0\x86\xea\xcd\xfd\xac\x3f\x7f\x05\x2b\xc4\xf2\xb9\x25\x5e\x9d\x3e\xae\x9c\xd2\xba\xc8\xa7\x6f\xb6\xe9\x5f\xba\x8c\xc1\x58\x8b\x4f\x3a\xe7\x3c\x9f\xac\x4d\xec\xa0\x55\x1f\xe0\x9b\xf3\x15\xf3\x13\x6a\x51\x03\x05\xdc\xea\xf2\xab\xab\xd4\xf9\x7f\x1d\x33\xc0\xdb\x67\x9f\x3c\xac\xd4\x37\x5c\x59\x29\x9c\xbc\x47\xf1\xc7\xae\x46\x09\xa7\x18\xbe\xd5\x26\x27\x05\xa0\x2e\x23\x6b\xbb\xf6\xdd\xba\x4d\x1e\x37\xb9\x83\x6f\x73\xfb\x03\xa3\xb5\x33\xc1\x29\x9a\xfc\xc8\xe4\x47\x0e\xd4\xc5\x6b\x01\x6c\x50\xa6\xac\x50\x25\x4c\xf8\x9b\x76\x9c\x55\x46\xad\x81\xe7\xf3\x70\xe6\x3c\xd7\xb2\x47\xc6\x0c\x3b\x66\x60\x8b\xd3\xb3\x79\xd2\x50\x51\xe7\x48\x89\xb6\x62\x6f\xa6\x6d\x89\x02\xd0\x12\x56\xb3\xe2\x9b\x14\xbb\xe4\x33\xb2\xa9\x63\x0a\xef\xf5\x5f\x9e\x94\xde\x47\x08\xc0\x16\x1d\x2b\x35\x0b\x67\x11\x0a\x62\x3a\x4a\xf8\xe7\x17\x34\x12\x39\x61\x15\xe2\x10\x94\x50\x1f\xb3\x3b\x2f\xd0\x86\x7e\xa4\x0c\x5a\x76\x85\x62\x78\xff\x9c\x64\x96\x81\xc1\x29\xff\xd2\x35\x1a\x14\x27\xfa\xd8\x8c\xd4\x84\xe6\x54\x8e\x1e\x1c\x2c\xde\xab\x65\x21\x97\xb3\x21\x3f\xaa\x2b\x5b\x53\xc7\xc7\x8e\x19\xd3\x69\xde\xd0\x0a\x3e\x83\x38\xbc\xf9\x13\xe1\x9e\xec\x92\x67\xe0\x9a\x4e\xb1\x2d\x60\xa7\xae\xd6\x92\x64\x5c\x8b\x45\x1f\x44\x3f\x8a\xdf\xd5\x05\xc6\x84\x20\x6e\x42\xe0\xff\xfe\x76\xfe\xb1\x01\xb1\x00\xcb\xf1\x62\xf8\xdc\x70\x45\xf4\x16\x7e\xe9\x44\x37\x91\x8a\xaa\xc1\x91\xfa\xe5\x2e\x0d\x31\x8c\x9d\xa6\x57\x6d\xa6\xd2\x43\xf6\xf6\x43\xc3\x94\x0c\x89\x6c\x61\xf0\x96\xbf\x7d\xb9\x2c\x49\xcb\x0c\x55\x04\x4e\x31\xc3\xde\x10\x6b\x5a\xc2\x78\x61\xf5\x87\x65\x5a\xed\x54\xc5\x1e\x72\xa3\x22\x56\x2c\x47\x64\x4c\x1e\xb5\x5d\xa9\x42\xb9\xe6\x14\x2f\x02\x9e\x1a\xa3\x38\xcf\x59\x65\x2a\x28\xe9\xbf\x78\x52\x53\x16\x43\x2c\x11\xef\xf8\xf3\x4d\x7d\x30\x40\xf8\x35\xb8\x51\xc1\xe9\x75\x61\x4b\xc8\x25\xfe\x87\xb2\x87\x20\xb6\x8b\x39\x3c\xf1\xad\xa1\xba\x4c\xbf\x6c\x53\x33\xbf\x9f\x2c\x3f\x2f\x60\xe6\x0c\xae\x38\x9f\x3f\xff\xe1\x16\xf1\x14\x3b\x10\x00\x68\x78\x63\xb7\x0f\x50\x16\xcc\xc8\x25\x3e\xb2\x48\x0f\x64\xec\x25\x79\x05\x29\x41\x4d\xb1\xc2\x1f\x32\x60\xa8\x88\x44\x2e\x2e\x07\x96\xb0\xe2\xcc\x6c\xd1\xb8\x0d\x2e\x76\x90\xe5\x8b\x3a\x25\xf3\x8d\x6e\x2d\x61\x5a\xdc\x78\x01\x62\xea\x27\xef\x56\xc0\x8d\x52\xcf\x36\x9c\x77\x93\x8e\xbd\xa9\x72\xf3\x5f\xa4\x38\xdd\x99\x2f\x28\x3c\x7b\x86\x91\x0d\xe7\xe9\xb6\xb3\x7c\x78\x3c\xad\x1d\x18\x7b\x23\xa6\xca\x93\x5f\xc2\x5c\xcc\x24\x3b\xec\xa0\xee\xc5\x5d\xa9\xfa\xa2\xad\x6f\xfa\x5a\xe9\x64\x53\xea\x57\xad\x66\x32\xac\xce\x6b\xc0\x67\x0b\xfc\xef\x53\xe0\xc7\xcb\xc6\xf1\x9c\x44\x1c\x2f\x56\x33\x1c\x73\x4c\xae\xed\x7c\xcc\xba\xd4\x72\x65\xf4\x4e\x79\x8a\xa3\x58\xdc\x20\x5c\x4f\x3a\x3b\x2a\x7d\xe9\x2d\x5a\x2a\x35\x93\x2e\x2e\x7b\x81\x98\x91\xc4\x83\x6e\x2e\x9f\xfe\x0d\x53\x68\x07\x4a\x59\xb8\x62\x6f\xe6\xec\x0a\x4d\x9e\x9c\xef\x85\xb8\x83\xf8\xc9\x41\xa2\x51\xa0\x75\x22\x5e\xf5\x79\x0f\x0e\x48\x3e\xd2\x47\x0a\xc5\xf0\x8d\x4d\xf2\x23\x56\xa9\x0d\x4a\xb0\xd1\x67\xc8\x1c\xd4\xf6\x4d\xf0\x24\xb9\x4a\x7f\x36\x7b\x70\xa4\x9a\x79\x60\xb9\x20\x18\xcc\xff\xa3\x29\xdc\x7a\x3e\x62\x0a\x27\x3a\x33\x74\x44\x7a\x72\xe7\x09\x1a\x6a\xe6\xbb\x63\xd2\x43\x4a\xcf\x40\x8e\x49\x1c\x54\x27\x08\xa8\xf1\x62\x52\x74\x69\xcf\xa0\xf8\x0d\xf8\xc8\x02\x1d\x97\xec\x89\x3d\xe9\x37\x5b\xe1\x2f\x8e\x6f\x10\xa2\x7f\xd4\x7f\xbe\x74\xe4\x82\xa8\xfb\xe1\x37\xe4\x90\x86\x61\x62\x97\x02\xc6\xb7\x43\xb9\x79\x9a\x70\x53\x82\x26\x16\xef\xa6\x63\x38\xbf\x2a\x8b\x9b\xaa\xd0\x52\xae\x6b\x1d\x8f\x91\x51\x8f\x1a\x4b\x05\x64\x17\xce\xd2\xb3\x0b\xf6\x1d\x64\x63\x0f\x8b\x5e\x2b\xdf\x7f\xec\xc8\x64\x6d\x44\x53\x4a\xf0\x99\xdf\x0d\x1f\xa9\x3e\x29\xcc\x00\x02\x05\xb1\x64\x83\xb6\x2a\xe4\x6d\x49\xa2\xc2\x33\x7b\xd7\x48\x2d\x36\x19\x35\xb1\x25\xfd\xe0\x4d\xc2\xf0\x86\xbb\x0b\x2a\xc0\xb9\xf3\x36\x27\x0b\xac\xb2\x5f\x6d\x49\x12\xb5\x1e\x25\xe5\xa2\x66\x15\xdb\x70\x26\xcf\x8e\x13\x94\xa8\x00\xc0\x24\xf0\x6c\xdd\x49\x5a\xca\x82\x2e\xd9\x88\xa5\xc6\x32\x6f\x5e\x2b\xbf\x58\xa3\x8a\xa3\x6a\x30\x7e\x4f\x23\x5d\x39\x39\x66\x81\x67\x29\x7c\xe6\x70\xc7\x26\x65\x8d\x9f\xb8\x49\xdd\xb8\xf4\x03\xe1\x0f\xcc\xe4\xed\xce\x2c\x00\xd3\x7c\xea\x2a\xed\x2c\x21\x46\x0b\x0d\xd2\x40\xd1\x63\x90\xd7\xf3\x99\x39\xc9\xfd\x28\x47\xf1\x3b\xfa\x46\x43\x9f\x8a\x05\x0b\x7c\x86\xe0\x79\x87\xbf\xcb\xb7\xaa\x7d\x03\xb7\x97\x0f\x92\xfe\xae\x0d\x56\x7c\x54\x8a\xfb\xbf\x3f\x4d\x68\x11\xe0\x64\x38\x26\x29\x9f\x56\xfc\x44\x3c\x6a\x90\x98\xa0\x72\xf8\x3c\x1e\x63\x2c\x2e\xda\x13\x7d\x1f\xef\xd1\x8b\x64\xb5\x08\x07\x67\xed\x66\xb9\xc4\x24\x4e\x90\x50\x28\x4e\xfb\x9a\x39\x20\x2a\x11\x07\xfb\x53\x5a\x5c\x80\x32\x3b\x4e\x28\xbb\xec\x38\x49\xc6\xb7\xf8\xd4\xe3\x8a\x51\x27\x12\xae\x89\xdf\xda\xc0\x0f\x0f\xb1\xac\x44\x85\x94\x5f\x9a\x35\x0f\x6a\xfd\x41\xd2\x94\xc2\x3d\x68\xbc\x91\x66\x4d\x59\xb1\x03\xf6\xc0\x55\xff\x64\x10\x0b\x2a\xc0\x2f\xcd\x49\xda\x10\xd0\x40\xca\xbc\x6b\xb1\x26\xa2\x2b\xd0\xee\xa0\xe1\x31\xb9\x53\x71\xd3\x43\xd1\xbf\xff\x64\x97\x74\xb9\x6a\x6b\x95\x6f\x78\xf9\x2a\x6d\x0c\xc4\x3b\x53\x00\xf8\x7f\xe8\x68\x8b\x2f\x8b\xc7\x55\x85\xb9\xe8\x7f\xf6\x2e\x53\x1a\xab\xbb\xd4\xf3\x0b\x2d\x3f\xfe\xdc\x0b\x1a\x47\xc6\xa7\xc0\x84\xe5\xd0\xb1\xed\xe3\x62\x35\x46\x8e\xaf\xe1\xfa\xec\xc7\xef\x54\x4d\xe6\xea\x98\xc5\xa6\xd8\x53\xc6\xc8\xb4\xdd\x4d\x9c\x6a\x00\xc2\x41\x23\xf6\x0f\x8a\x6b\x60\xea\x52\x78\x49\xd9\xf7\x32\xfe\x67\x33\x67\x4c\x2b\x74\x74\x4c\x9f\x0e\xda\x51\x77\x6b\x26\x94\x94\x79\x38\x96\x9e\x5e\xaa\x4b\xbe\x28\xe0\xd2\xef\x6a\x0e\xee\x8c\xbb\xa6\x89\x60\xf2\x91\xf6\xa4\xde\xee\x98\xe6\x15\x8a\xe1\x47\x46\xea\xfc\x9d\x20\x7a\x62\x3c\x70\xbe\x3c\x5e\x21\x2a\x60\x56\x52\x7b\x93\xde\xcc\xda\xf5\x8a\x70\xa7\x25\x54\xc5\x0a\xc5\xf0\xca\xa3\xba\xf1\x67\xa5\x82\x3d\x3f\x26\x14\xe7\xde\x18\xaa\xab\xac\x52\x8e\xfd\x8f\x42\x61\x38\x69\xd6\xe5\x7d\x74\x97\x73\x52\xcb\xc1\xa3\x1b\x2f\x72\x01\x7d\x76\x5b\x62\xbb\xb2\x51\x91\xf8\x2d\xb5\xd2\x71\x26\x5c\xa0\x53\xf9\x62\x8d\xce\xdf\x5f\x2b\xe3\x57\xd9\xa2\x40\xd9\xe7\x5a\x02\xc5\xde\x4c\xf1\x84\x36\x13\x76\x5d\x8c\x2c\x91\x52\xf3\x9f\xd1\x06\x5b\xd1\x71\x13\xa0\xe2\xec\x88\x01\xe9\x87\x00\x3a\xe5\x0d\x9c\xcc\x25\x6f\x57\xc4\x05\x3c\x10\x68\x04\xa3\x29\x4d\x80\x36\x70\xc0\xe2\x57\x14\x59\x59\x3a\x74\x08\x30\xd2\x0a\x36\xe9\xc6\xa6\x81\xa2\x9a\x37\xcc\x6e\xd6\xf4\x15\xa3\x96\x56\x64\x6f\x7d\xd0\x38\x46\xd1\xa0\xac\xd1\x32\x2c\x69\x57\x6d\xd7\xbc\xf0\x71\x85\xf0\x23\xc3\x39\xb4\xd9\xcf\xec\xd6\x76\xf9\x0c\x74\x94\xe2\x43\xf2\x73\x9f\xfb\xdc\x4f\x9f\x56\x28\x86\xaf\x1c\x55\x08\x17\xe0\x35\x80\x39\x41\x22\x7c\x5d\x1f\x62\xfa\x18\xac\x2b\x83\xe8\x79\x42\xfd\xf9\xfd\x7d\xe9\x77\x44\x89\xc5\xa7\x84\x54\xa3\x10\x99\xd8\x60\x38\x96\xc6\x37\x57\xa7\xff\x55\x35\x16\x0b\xcb\x0c\x7a\x59\x31\x70\xc4\x16\x75\x2a\xad\xd8\xcc\x0b\x1f\xd4\xad\x8f\xbd\xc0\x8e\x75\x8a\xb3\xf7\x3f\xa7\xec\x92\xa3\xf0\xb4\xe8\x3e\x79\x21\x26\xe9\x5b\xf4\x87\xef\xd5\xdb\x42\xbb\x04\x8e\xc1\xd0\x79\xfe\xf9\xf8\x58\x05\x78\x1a\x34\xeb\x18\xcc\x0c\xd4\x01\xd4\x6f\x98\x8a\x25\x08\x1c\xa3\x4a\xb8\xdd\xcd\x7d\xdd\xe9\xc9\x14\x48\x2a\xf3\xbc\x98\x1e\x35\xd7\x0e\x29\x46\x1e\xd4\x33\x68\xa3\xe5\x1b\x0f\xd2\x9c\x96\x31\x63\x94\xc5\xc9\xef\xe0\x79\x1a\xcf\xb0\x8e\x99\x87\x51\xa2\xe5\xb0\x60\xe1\x28\x15\x05\x1b\xa5\x31\xa9\xb0\x7f\xf7\x43\x83\x44\xf7\xe2\xe3\x0a\xe0\x12\xc3\xf7\xb5\x27\x69\xbe\x06\x5b\xe0\x2f\xbe\x2d\xc9\x4d\x57\x21\x98\xe5\x64\x6f\x5d\xaa\x9e\x19\xfe\x96\xa2\x1a\x61\xf5\x12\x65\x5f\xc7\x88\xe7\xc7\xde\x85\xf9\x15\x47\xe4\x36\xd6\x47\x5c\x19\x8e\xa5\x4f\x71\x8d\x32\x8c\xc4\xbe\x18\x22\xc4\xd2\xc3\x02\xee\x87\x1d\xc4\xf5\x85\x7b\x9f\x93\x2d\x4b\x8d\xf6\x58\xb4\x5e\x28\x86\xde\xd3\xfc\x3f\xab\x92\x58\x0b\xfb\xa9\x2d\xf2\x3f\xe3\x02\x9e\xd1\x93\x78\xed\x59\x05\x47\x0c\x96\xb5\x1c\x82\x3c\x6e\x33\xc7\xf6\x9b\x2d\x1c\xed\x9c\x97\x95\xfe\x18\xd0\x92\x6b\xe7\xa7\x53\x23\xf4\xb8\x14\x56\x5f\xc2\xbb\xae\x7d\x91\xf4\x47\x77\xaa\x85\x62\xf8\xd5\xbd\xba\xf7\x47\x54\x12\x13\xb5\xf9\x09\xbf\xfb\x00\x5f\xb8\xce\xa7\x81\x85\xeb\x88\x99\x4a\x18\x0d\x8d\xf5\x8a\x8e\x0d\x02\x3a\x22\x24\xae\x79\xe7\x64\xe2\x62\x34\x6a\x4e\xa2\xa7\xf5\xc8\xab\x0a\x75\xa7\x52\x61\xb1\x1d\x7b\x6f\xf6\xd8\x56\x85\x1a\xca\x7d\x05\xe1\x3c\xbc\xfb\x82\x3e\x82\x27\x8b\xed\xe8\xd6\xee\x4e\x8e\x46\x1d\x5b\x85\x62\x78\xd9\x3d\xb1\x2a\x1e\xc7\x11\xf4\xe6\xcb\x73\x75\x7e\x76\xc0\x08\x66\x42\xdd\x2c\xdc\xfd\xc8\xf0\xf4\xb4\xa9\xca\x6d\x4d\xf2\xef\xdd\xc3\x0f\xe2\xa4\x0f\xdc\x7e\x75\x8c\x5f\xff\xfd\xb6\xe4\xd7\x15\x66\x4f\x03\xb4\x8a\x62\x36\x5a\x0e\x04\x4b\xff\x67\x1b\x34\x2d\x13\xc2\xb0\xe1\x5b\xc2\xc7\x39\xb7\xe3\xa4\x8a\x35\xa8\xf0\x27\x33\xfd\x94\x64\xe7\xd4\x08\x30\x7e\x15\x2d\x8e\xcd\xaa\x43\x5d\x09\x39\x15\x62\x22\xd5\x8d\xeb\x98\xd6\x7b\x11\x9f\x57\x86\x7c\x88\x7d\x42\x33\x48\x09\xbc\x2a\x66\x31\x9f\x38\x37\xfb\x49\x45\xce\x37\x70\x4c\x8e\xf8\xfa\x8c\x02\xeb\x73\x03\xcb\x2a\x81\x3d\x69\x6f\xf6\xac\x33\x50\x94\xc9\x62\x97\xd7\x9b\xfd\x3f\x5a\x27\x1a\xd5\xcf\x35\xee\x50\x75\xd7\xfa\xf4\x6f\xae\x30\xe4\x56\xe3\xf1\x71\xbe\xd3\xe7\x33\x9d\x59\xc2\x47\xe1\x45\x0d\x40\x5d\xb2\x28\x35\xc1\xc1\x82\x27\x89\x29\x8e\x96\x2a\x1b\x38\x01\x33\xdd\xd8\xa5\x69\x99\x93\xb2\xe8\xff\x33\xdb\xe6\x6b\xf3\x8a\x1e\xcc\x62\xc3\x8a\xef\xf6\x5c\xa5\x3d\x39\x30\x81\x89\xd2\xba\x1e\xf3\xae\x7c\x64\x6c\x43\x1f\xd8\xc5\x15\xb8\xf8\x10\xa7\xeb\xba\x65\x98\x4d\x7c\x80\x35\x86\x27\x46\xaa\x9b\x50\x03\xe3\x98\xd1\xf4\xdf\xcf\x69\xbd\x22\xae\x02\x9c\xcc\x4a\xa4\x71\xae\xbd\x40\x30\x36\x68\x9d\xfa\x8e\xfa\xde\x2f\x1c\x93\x5c\xe7\x1a\x20\x78\x33\x57\xed\xe0\x8f\x74\x6d\x80\xc1\xb1\x28\xfb\x1d\xc5\xae\xdf\x26\x56\x03\x05\x35\x0c\xba\xa2\xa3\x37\xe8\x13\x28\x5e\x3d\x45\x69\xe6\x82\x9b\x94\x36\xdf\xc7\x0d\xc4\x4c\xaf\x4a\xa0\x8f\x6f\x6e\x1b\xd3\xda\x82\x4a\x97\x91\xf0\xea\xb3\x5a\x26\x45\x26\xe8\x3a\x84\x43\x16\x8f\xd2\x0e\x21\xaa\xe0\xa9\x53\x26\x4e\x84\x87\xd0\x4f\x6a\xd1\xba\x6a\x7b\x6d\x2a\xba\x24\xc8\x40\x26\xb6\xa3\x8c\x30\xf9\x50\xfa\x39\x73\x41\x52\xd8\x39\x8c\xdb\xae\x2a\x04\x13\xdb\x83\xe2\x78\xc2\x58\xb9\xa2\x75\xab\xe0\xfc\x2e\x67\x3b\xee\x60\xcd\x4c\x92\x8a\xf3\x39\xe6\x29\x75\x19\x0f\xec\x49\x1e\xb7\xff\xfc\x90\xe2\x93\x4b\x9c\x9a\x2a\xfd\x98\x3b\xf9\x40\x4a\xb7\x4a\x30\xd2\x7f\xf7\xb4\xa6\xe6\x5b\xf6\x63\x0d\xd5\xcc\x35\x63\x53\xfe\x97\x06\x0b\xdc\xc0\x12\xc2\x5b\x97\x3f\xac\xf9\x79\x60\x86\xb9\xcf\x7e\x73\xa0\x7c\x49\x0e\x75\xdc\x6a\xd3\x8b\xe1\x62\x15\x2d\xd5\x9b\xd4\xa9\xd1\xba\xef\xe1\xb4\x6e\x43\x6f\x7e\xd0\x86\x14\x19\xc0\xa7\x2c\xd1\x7d\x78\x45\x59\x3c\x4c\x9b\x3d\x7b\x3a\x24\xa6\x25\xcb\xa4\xfb\x31\x95\xb6\x4d\xe1\xba\xe1\x0a\x77\xd6\x27\x6b\x03\xec\x73\xa3\xa2\xcf\xcf\x1a\xa8\xe4\x3d\x28\x0f\x1e\x3b\x27\x23\x5d\x89\x51\x31\x06\x10\x3f\x68\x8f\x86\x43\xe1\xf5\x07\x37\x91\x8d\xfa\xd3\xb3\x4b\x65\xed\x04\x78\x45\xd5\x29\x76\xc4\x2e\x45\x46\x30\x2a\x60\x81\xd8\x10\xdb\xcf\x1e\xe3\xf1\x3c\x1e\xb9\x45\x9f\xee\x67\xeb\xa5\x2f\x1b\x36\x6a\x9e\x9f\x32\x47\xcc\xbe\xfb\x68\x9a\x48\x06\x2e\x01\x06\xf6\xfa\x64\x2c\xad\xde\xac\x29\x1c\x59\xd4\xc3\x5c\xd4\x41\x4c\x37\x67\x6f\x69\xf1\xb5\x73\xb1\x4f\x38\xab\x0f\x56\xec\xdf\x3b\x35\x3c\xcd\x0f\x22\x06\x10\xb4\x6f\x5f\xa5\x7c\x6b\xea\xe0\x66\x4a\x33\xf8\xc5\xae\x64\xe4\x8a\x6a\xea\x68\x67\xcb\x9b\xf2\xf2\xd0\x20\x19\xb6\x74\x08\xfe\xf3\x1d\x28\x45\x61\x57\x3c\xf5\x80\xfd\x05\x64\x91\x0d\x62\xb6\x4f\x29\x8b\x7a\xed\x17\xd6\x88\xfa\x07\x39\xc2\x0c\x10\x1d\x48\xf4\x03\xaa\x89\xf6\x67\x7e\xf1\xd8\x44\x7f\xb3\xa3\x50\x0c\xe7\x3f\xa0\x51\xaa\x0c\xe8\x48\x4c\xbe\xfe\x87\x21\xef\xc3\x13\x2e\x51\xa1\x90\xc8\xb2\xb0\xc5\x33\x49\x74\xa0\x17\x6e\xe6\xe3\xa6\xdb\x02\xc3\x10\x26\xcc\xbd\xf9\x8b\xce\xc8\x14\x55\x0a\x58\x25\x70\x4c\x2e\x52\xbe\x68\xac\x52\xb2\xfb\x3e\x20\x3b\x35\x8e\xd8\xb9\x24\x70\x22\xcb\x2e\x14\xc3\xb6\x47\xf5\x11\xb0\x57\xd5\xc8\x0d\xae\x7b\xa1\x48\xd9\x16\x7c\xf3\xf5\x5d\x69\x44\xa8\x4d\xa2\x37\x5e\x07\x4a\xa8\x4a\xab\xbb\x71\xaa\x1c\xf7\x70\xfa\x38\x9f\x9d\x7c\x77\x5f\xba\xe5\x8a\xa5\x89\xfa\x28\xc9\x73\x37\x97\x75\x95\x33\x9b\x7b\xf2\x42\x4c\x7e\x7e\x9f\x02\x40\x71\x9a\x66\x8a\x5e\x30\x65\x5d\x3a\xba\x4d\x2b\x74\x72\xed\xf8\x0b\x47\x6a\xd3\x42\x4c\x44\x5f\x99\x9b\xd8\x31\x5c\x19\xfa\x59\xa8\x09\xa6\x9d\xc5\xde\xcc\x89\x25\xca\x34\x10\x9b\x3c\xde\x84\xb7\x0c\x4f\x3f\xbc\x26\xae\x57\x51\xea\xe1\xe5\x4e\xce\x97\x0f\x01\x3b\x3e\x31\xc4\x0d\x7c\x64\x53\xab\x1c\xbc\x85\x88\xe3\x8b\x3d\xdd\x47\x97\x8f\x57\x81\x72\x36\xe5\x88\x05\xfd\xf9\x4c\x79\xab\xc5\x8e\x88\x25\xfa\xb4\xb9\x1f\xef\x52\x78\x63\x44\x48\x20\x42\x3c\x3b\x3c\x2a\x7d\x25\x7b\xaa\x41\x9a\x5a\x93\x9b\xbf\x48\x46\x73\x80\x73\x46\xf7\xf1\xde\xf1\xba\xdf\x45\x05\x76\xf0\x89\xf6\x40\xee\xbb\xa3\x75\x30\x0e\x6a\x46\x45\x27\x37\x63\x71\x3a\x75\x9f\x68\x1f\x39\x62\xb5\x17\x6e\x7a\x5b\xbe\x4d\x8b\x94\x71\x12\x76\xa2\x9f\x5b\x5c\xa9\x89\x78\xd7\x91\x11\x00\xb8\x93\xd7\x3a\xfb\xab\xb2\xc0\x8e\xce\x5a\x1d\x59\x01\xcf\x59\xff\x7d\x50\xdb\xe4\x72\xd1\x69\x0d\x7f\xd6\xb5\xe2\x72\xa5\x4c\x71\xb1\xd1\x07\xff\xfe\xee\x2e\x8d\xe7\x86\x84\x1a\xb0\xb8\xca\x37\x3e\xa0\xd5\x5b\xbe\x8f\x1d\x81\xbe\xcb\x8f\x39\x27\x7b\xb7\x4a\xd0\x8c\x9e\xe6\x9b\x4f\xe9\xd0\x16\x06\x5b\xb5\xe4\x4b\x2d\xd4\x7e\xa1\x47\xad\x40\x00\x97\x60\x4c\x72\xe5\x3a\xd5\xfc\x45\x9d\x9e\x0d\xd5\x25\x12\x7c\x62\x58\x38\x5e\x02\xdf\xbb\x5b\xb0\x1a\x18\xb5\x5d\x9f\x13\xb5\xfa\x5f\xaf\x89\x81\x61\x1f\x33\x3b\x66\x4a\x14\x7b\xb3\x3f\x5b\x25\x67\x2e\xdc\xfa\x2c\x0a\x8c\x07\x76\xf7\xa1\xc1\x45\x4a\x01\x1f\x53\xf2\x2d\xf0\xbc\x47\x94\x5c\x08\x3d\x68\xee\x3f\x3a\x34\x11\x31\x98\x30\xc7\x55\xd1\xfc\x77\x14\x45\x60\xe4\x18\xc8\x23\x96\x05\x7a\xa2\xbf\xd9\x37\x52\x8f\x1d\x81\x3f\x65\x42\xa1\x18\xae\x13\x52\x4c\xe0\x3a\x04\x23\xcd\x31\xfd\xb4\x99\x38\x18\x1b\x30\x6a\x58\x88\xd8\xd2\xf9\x7b\xe5\xa2\x16\x49\x3a\x33\xea\x12\x38\xe4\xe9\xf2\x0e\x55\x92\x2c\xfa\x9b\x18\xd8\x9d\x25\xba\x9c\x7a\xd3\xa1\x4e\xd3\x8e\x99\xa5\xdf\x54\x9c\x64\x51\xe0\x57\x01\x0e\x2f\x72\xf2\xf3\x2f\xc9\x17\xe7\x49\xd1\xa9\xf0\xbd\xe3\x2e\x55\xc7\xa1\xd4\xaa\xab\xed\x50\x6f\xee\xa7\x17\xe8\xc2\xc6\xc4\x0e\x38\xc6\x99\x07\xb0\xf1\x7b\xfa\x4e\xb5\x34\xa6\x55\xe5\x3b\xce\xf2\xcc\x56\x61\x9c\x53\xf0\x5f\xcf\x69\x4b\x6b\x1a\x70\x7c\x99\xb2\x48\xce\x8f\xd1\x66\x48\x33\xdb\x0b\xd3\xda\xdb\x05\x66\xec\xc6\x3d\xca\xb0\x9b\x01\x20\xac\x07\x5a\xa9\xd7\x27\x69\xba\x0c\x4e\xd3\xaf\x26\xd3\xd4\xcc\x7f\x95\xd5\x08\x83\x39\x35\x20\xb3\xfa\x80\x0c\x98\xb4\x66\xa1\x2a\xb5\x41\xd3\xf7\xd3\x8b\x55\x4e\xba\xe3\x05\xb6\x1b\x13\x5e\xbf\xd6\xa6\xdb\x89\x59\x16\x4e\xc0\xf9\xbf\x59\x9d\xee\x74\x00\xa8\x61\xe0\xbe\xa4\x26\x5e\x3f\xaa\x85\x0a\x6c\x63\x1f\x34\xbf\x7a\x64\xbd\xb0\x50\x61\x2d\x82\x5c\x65\xac\xac\x17\x45\x00\xc5\x38\x86\xd8\xa0\xe6\x04\x3a\xc6\xc7\xf8\xee\x02\xbc\x4f\x94\x3a\xe5\xe1\x59\x43\x94\x1e\xdc\xf3\x61\x08\x92\x0f\xce\xf6\x51\x34\xb8\xa2\xd9\x80\x85\xfb\x25\x6d\x4a\x66\x65\x44\x58\xe0\xf7\xe6\x97\x8d\x4d\xd7\xcc\xc4\xf7\x78\x0f\xf2\x33\x4d\x21\xa3\x8e\x98\xf0\xb6\x8f\xe2\xd0\xc3\xfb\xe2\x22\x83\xd5\x41\xd6\xa0\x50\x0c\x7f\xae\x09\x3e\x1a\xd4\xa2\x7c\x4d\x1f\xfe\xef\x62\x59\x3c\x56\xb0\x83\x19\xb2\x48\x4f\x8c\xa8\xeb\xcd\xec\x38\x19\xd3\x51\x29\x85\x1a\x66\xe3\xea\x64\x78\x00\xaa\x46\xe1\xbd\x2b\xe0\xc8\x15\x6e\xa0\x8e\x70\xfc\xac\xb7\xa0\x3a\x33\x87\x26\xcb\x80\x5e\x22\xc8\xaf\x5a\x98\x0b\xd5\x7d\x7d\x57\xfa\x7d\x02\xa7\x82\xf5\x59\x9a\xe6\x07\x6a\x7a\x92\xe0\x4f\x18\x75\xa5\xdf\xbc\x5e\xd1\x6e\x42\x0c\x99\x14\x5c\x2d\x5e\x5c\x3d\x58\x19\x6a\x31\xae\x37\xfc\xb9\x91\x2d\xfd\x2f\x40\xa3\x65\xe4\xcf\x23\xc5\xce\x32\x70\x50\x03\xaa\xc8\xf0\x3f\x77\x8c\xd7\x0a\x20\x40\x07\xeb\x9f\xf2\xed\x23\xfc\x81\xb5\xcd\x9c\x7d\xcd\xcc\xe8\xb8\xec\x9c\x25\x1c\xac\x41\x88\xaf\xe5\xc9\xec\x5f\xaa\x75\x54\x10\xcd\xe0\x3d\xef\x0f\x79\x85\xbb\x00\xfb\x8c\x92\x84\xf2\x75\xf1\x4a\xf9\xc6\x4c\x6c\x58\x88\x29\x7d\x60\x78\x62\x6f\x3a\xa8\x48\x06\xb4\xe0\x9b\x7d\x70\x86\x4c\x5d\xb3\xda\x81\x4d\x9d\xfd\xd2\x69\x45\xbf\x2d\x80\xdd\xd6\x7a\x4d\x11\x98\xd8\x36\x01\x18\x0b\x3f\x36\xaf\x68\x68\x2c\x97\x58\x34\xde\x95\x64\x7e\x77\x95\x52\x5f\x11\x2f\x8a\xb4\x10\x22\xfa\xf1\xd2\x13\x99\x9c\x98\xf2\x2d\x4d\x69\xc7\x09\xec\x92\xe8\x26\xc3\xaf\xde\x37\x28\xa9\xb2\x62\x4d\xdf\x69\xac\xad\x91\x6e\xca\x99\x85\x9b\x05\x13\xd5\x89\xe9\xc5\xce\x48\x9a\xdc\x4c\x7d\x82\x56\x71\x32\xc7\x6b\x50\x26\xfc\x3c\x65\xf7\xbc\x7c\xfb\x58\xad\x84\x42\x54\x03\xc5\xff\xf1\x3e\x45\xc2\x13\xbb\xd8\xe1\xdf\xe2\xd8\x73\x42\xeb\x13\x09\x50\x6e\xee\xea\x39\x17\x25\x95\x0b\x10\xcf\x33\xa3\x14\x2b\x46\x0f\x95\xb9\x46\xd0\xbe\x27\x94\x61\x6a\xe0\xf3\x41\x5f\xf6\xe1\x17\xe4\x4d\x11\x8e\x45\x02\xe1\xb9\x71\xa8\x7c\x71\x26\xad\x40\x74\xe9\x2e\x6b\x46\x48\xd4\xb2\xb8\xf4\xca\xa7\xa6\x8e\x6c\x09\x94\x62\xf9\xb7\x77\x78\x0b\x68\x31\xee\xe1\x3f\xfa\x36\x0f\x1e\x33\x67\x46\xe1\xb2\xc4\x67\x8f\xf3\x77\x0e\x51\x98\xdd\x15\x30\x23\xeb\xcd\x4e\x7b\x50\x10\x7a\xd2\xa6\x73\x6f\x2b\x6b\x4c\x0c\xd2\x92\x7f\xe8\xb8\x4c\x85\xbb\xf9\x2d\x77\x20\x67\x1d\xeb\x4b\xe6\x9c\x70\x09\xf4\xec\xe5\xda\x37\xb4\x05\xf9\x49\x6e\xdf\x36\x1d\x91\x41\xdc\xb2\x68\x53\xe9\x5b\x32\x03\xd6\x49\x1d\x13\x52\x6f\x39\x20\xbb\xef\xd5\x8b\x32\x83\x60\x3f\x01\xd5\xe4\x9e\x3c\xa2\x51\xaf\x2a\x80\x05\x68\x35\xce\xdc\x76\x96\x3f\xb9\x65\x34\x6a\x9f\xb0\x05\x25\xdf\x35\x1d\x23\xb5\x6a\x55\x2c\xbd\xc2\xa7\x4e\x26\xcc\x44\x83\x6b\x75\x47\x0d\xe7\x8a\x25\x3a\x28\xb3\x1e\x17\x89\xd0\xec\x6c\x54\x5c\x94\x5d\xd2\xd3\x03\x78\xe3\x8f\x8d\xe2\x11\x67\xe6\x8c\xb6\x99\xed\xd1\x1f\x2c\x3d\x3d\x4c\xa5\x72\x57\x31\x27\x5b\xe5\xb6\xcd\xd7\xe5\x0f\xa8\xcd\xb9\xf5\xf7\xec\x4c\xa5\x63\x3f\x6a\x0e\x45\x6b\xb3\x68\xb9\x4a\xae\xc0\x35\x71\xec\x73\xb3\x8f\x2a\x38\x64\xcb\xa3\x71\x74\xda\xbd\x4d\xe7\x69\x60\x61\x42\x97\x9d\x73\xfa\x0a\xad\x42\x76\x4c\xc4\x50\x1d\x77\xa5\xb4\x8b\x32\xc6\x19\x0d\x91\x10\x5b\xb2\x86\xde\xc9\xd8\x1e\x99\xf9\x0c\x71\xd6\x5c\xc6\xd9\x99\x7e\x68\x55\x52\xa9\x72\xe0\x14\xef\x9b\x46\x8f\x1b\xa2\x20\x9c\xaa\x3c\x0f\x64\xbe\xe7\xc8\x61\x84\xea\x03\x06\xf5\x73\xbe\x7a\xa7\x5a\x8b\xfb\x98\x45\x9d\x0f\xb8\x20\xbf\x2e\x0d\xb2\xa9\x7e\x9c\xc2\xea\x2c\x81\xae\x21\x9e\x32\xfe\xcb\x7e\xf3\x88\xbe\x0d\x0b\x1c\x0f\xc7\x96\xf3\xd9\xf3\x37\xbf\x47\xfb\xeb\x3e\xbc\x45\xb2\xbb\x0e\xa4\x3b\xe0\x99\x1c\xd8\x1e\xbe\x70\x4a\x71\xfc\x47\x36\xd0\x4f\xb3\x8f\x2d\xb9\x42\xbb\xe2\x36\xe6\xd2\x9a\xe9\x9b\xb7\xa4\x47\x4c\x46\xc0\x8d\xbf\x18\x1e\xdc\x35\x38\x39\x04\xc4\x11\xa2\x51\xed\x73\xe5\xe9\x28\x23\x43\xf8\x7b\xc1\x5e\x63\x8a\x06\x4a\x03\x4c\x14\x07\xe4\x73\xb2\xca\x03\x37\xe9\x60\x1e\xa1\x88\x19\x5e\xb7\x54\x86\x53\x37\x76\xd7\xe8\xcd\x5c\x39\x70\x9c\xf2\xb6\x2c\xf0\xd5\x6b\x79\x16\x7f\xcf\x26\xb3\x22\x5a\x57\x46\xc9\xb9\x33\x6d\x8a\x2d\xaa\x85\x0c\xc1\x05\xea\xcd\x7e\x66\x5f\x72\xdf\xfc\xd8\xed\x3a\x7c\x4e\xa3\xed\x09\xfd\x6a\x88\x9f\x0f\x6f\x6f\xd9\x60\xba\xc8\x49\xf4\x15\x56\xdc\xad\x79\x54\x13\x27\xf0\xb1\x27\xc4\x7f\xe7\x9f\x52\x18\x0a\xa5\x2e\xa1\x79\x05\x6b\xd4\xbb\x47\xa8\xc7\x2e\x11\xa0\x0c\x3f\x2b\xb0\xe1\x20\x62\xa1\xf3\x3a\x2f\x3b\xc1\x5f\x53\x57\xc0\xf5\xfa\x33\xa7\x16\x2b\x42\xd7\x18\xbb\x22\xf3\xbc\xb5\x5e\xe6\x99\x8e\xa9\xb3\xda\xdb\x41\x1c\x6f\xae\x42\xf1\x44\x0e\x68\x88\x1d\x58\xc3\x0f\xaa\x87\x0d\xea\x44\xff\xc3\x67\x51\x53\x36\x69\x7a\xcf\x3e\x43\x0d\x75\x02\x92\xf9\x78\x8f\x0e\x58\xc0\x7c\x60\xc0\xa3\xf5\x7b\x0e\x0f\x52\x91\x75\xd1\x17\xfb\xd1\x81\x51\xca\x76\xd0\x71\x7c\x54\xf1\x4a\x16\x81\x89\x58\xce\xd2\xf8\x2b\x62\x1a\x23\x6e\xee\x59\xc5\x4b\xc6\xc4\x8c\x56\x62\x8d\x97\xcc\xa6\x31\x17\x89\x26\xce\xf3\xf8\xe6\xe9\xe3\x63\x63\x30\x14\x8e\xd9\x31\x99\x57\x98\x2c\xe4\x24\x67\x3e\xb7\x7d\xfb\xa0\x38\x89\x5b\xb4\x09\xcd\xcd\x82\x75\xff\x8c\x0b\x13\x37\xcc\xe1\x2c\x85\xcc\x15\xbd\x37\xae\xcb\x17\xfe\x65\xae\x8c\x23\x55\xd4\x6c\x20\xa6\x1a\x28\x8d\x5c\x39\x24\x15\x47\x80\x4e\x56\xcb\x2b\xad\x12\xea\x42\xd0\x12\xe5\x3a\xfa\x49\xa9\x4f\xbf\x47\x09\x87\x3d\xb3\x54\x47\x9d\xa8\xa8\x28\x71\x17\x89\xec\xb6\xdd\x2d\xf8\x23\x9b\x88\xea\xb9\xd8\x9b\xd9\x7c\xad\x66\x41\x8f\x51\x2c\x6d\x10\xfe\xe1\xf4\x60\xd1\xd7\x08\x93\x46\xa0\xb3\x8c\x49\xe6\xe2\x29\x11\xfd\xa5\x47\xc5\xb6\x2c\x49\x0b\xd9\x75\x57\x69\xab\x73\x87\x06\x95\x2a\xbf\x3b\xd9\x25\x2f\x25\x3f\xc7\xa0\x54\xf9\x2a\xdf\x78\x54\x9b\x18\x51\x24\xa7\x4d\xd9\x6b\xe6\x24\x7c\x94\x06\x48\x8e\x49\x9a\xc9\xf5\xdd\xe9\xf7\xd3\x44\x55\x4d\x52\xe7\xfc\xee\x41\xf1\x5f\x16\x18\x2b\x81\xde\xe6\xc7\xba\xf9\x02\xfa\x46\xe2\x54\x18\x31\xaa\xca\x27\x79\x60\x74\x32\xf0\x6d\x9a\x38\xde\x8c\xfe\xb8\x9f\x14\xdb\x23\xd1\x63\x5a\x51\x16\x60\x36\x8c\x2a\x01\x27\xef\x35\x3b\x65\x42\x64\xc4\x71\xa9\x51\x85\x15\xfa\xac\x87\xc6\x69\x89\xcf\x22\xba\xe3\x45\xfe\xe3\x8a\x2d\xcc\x8c\xc4\x79\xfd\xe6\xfe\x2d\x48\xed\xf8\x3d\x7d\x77\x94\xb2\x65\xc5\xa4\xc2\x5d\x6f\xfb\x0d\x8e\x4f\x43\x95\x94\x44\x1a\xac\x76\x2a\x36\xa7\x30\x58\x85\x80\xd3\xb1\x90\x4b\xd5\x2e\x8f\x3e\xe3\x91\x63\xfc\xda\xf8\x55\x5c\x8e\x2a\xd3\xf0\xa9\x37\x35\xe8\x69\xd2\xd8\x70\xc5\xa8\xdc\x8f\xae\x4f\x97\x5f\xc8\xb4\x05\x53\x27\x71\xe4\xcf\x5f\x27\x65\x76\xa7\xcf\x98\x5d\x28\x86\xdb\x0e\x4c\x6a\xbd\xd5\xf1\xf0\x49\x4f\x41\x3b\x77\x25\xe7\x9e\xf8\x8a\x21\xfe\x0f\xda\x45\x5d\x0d\xa2\xe6\xd1\xa3\x78\x70\x98\x82\x74\x20\x56\x85\x8b\xbe\xe4\x9b\x9a\x3c\x82\x8f\x7c\x15\xf4\x9c\x99\xab\x10\x77\x2d\x2c\x48\x46\x6b\x34\x92\x51\x83\xf8\x0e\x06\x4f\x5e\x4e\x54\x5b\xb1\x43\xe8\x12\x0a\x24\x81\x82\x23\xb8\x6f\x98\xca\xea\xf4\x19\x01\xeb\xe6\x3b\x97\x24\x00\x54\x07\xb7\x40\x4d\x32\x43\x6f\x52\xb4\xdb\x41\x78\x18\x02\xf6\x4f\x95\x39\x08\x65\x84\x2b\xcb\xf2\xe9\x03\x19\xad\x37\x60\x70\xf9\xe3\xa7\x9e\xbb\xfd\x45\xad\x9a\xa3\xcc\xe3\xd0\xcc\xec\xa4\xeb\x87\x28\x2b\x85\x58\x3b\xe5\xad\xd5\x8a\x25\x11\x75\xf8\x79\x0e\x1f\x3c\xa1\xb8\xdb\xaa\x5b\xd9\x1f\xeb\xb8\xd0\x2a\x72\x44\x15\xb6\x4e\x96\x7e\x7e\x95\x78\xb1\xdc\xf2\x2f\xe6\x0b\xd4\x02\x65\x3e\x04\xa8\xdc\x9b\xa1\x8a\xc1\x61\xdc\x29\x2a\x9d\xca\x9f\xe8\x96\xc2\x47\x44\xb9\xa1\xd9\xc7\x54\x19\x74\xe2\x19\x8c\x40\xd0\x15\x09\xe0\x17\x5c\x2b\xaa\x70\x0b\xc6\x65\xdc\x6a\xd1\xb3\xf6\x2d\xed\xc3\x63\x64\xf3\x0f\xff\x57\xdd\x6f\xbd\x8a\x88\xf0\x94\x7f\x65\xcd\x04\xed\x32\x58\xe5\x3e\x8f\xec\xbd\xe7\x5a\xb5\x7d\xb8\x1e\x70\x74\x65\x0f\xf0\x32\xbb\x80\x4a\xb4\x8e\x0b\xd1\x5d\x22\x94\x57\x21\xf9\xe1\xe5\x61\xca\x66\xcc\x0a\xec\x12\xac\x47\x73\xf7\x1f\x1e\xac\x48\x4e\x10\x5c\x2e\x14\xc3\xe9\xed\xaa\x32\x72\x10\x15\xa1\x65\x4c\x84\x05\xa5\x37\x5c\xc0\xc8\x81\x39\x01\x0d\xfb\x9b\xfd\xa5\x8c\xaf\xa3\x4f\x60\xc2\x0d\x65\xb9\x9c\xb5\x90\x53\x51\xde\x74\x66\xf9\xa3\x9a\xfc\x12\xe9\x4e\x64\x16\x3e\x33\x9a\x57\x1e\xd3\xa6\x4e\x87\x6a\x22\xf3\xab\xe1\xc9\xaf\xb1\xcb\xad\xaf\xb3\xd7\xd2\x09\xa9\xb6\x1d\xf8\x02\xde\x90\x6f\xbc\xa6\x33\x9b\x2b\x81\x55\x4e\x90\x11\x0f\x68\xc6\x9a\x88\x55\xa2\xa7\xe7\x20\x49\xee\xcb\xe4\x1e\x91\x0a\x82\xad\xad\x64\x66\xbb\xaf\x33\xcc\x1d\x13\xf9\x12\x12\x6a\x54\x93\x08\x6f\x51\x68\xa1\x57\x9f\x96\x9c\x4c\xb7\xd5\xd2\x6f\xed\x50\xa9\x7a\x30\x03\x98\x1b\xf3\xde\x1e\xa2\x1e\xea\x0a\x9f\x2b\x0d\xd2\xc4\xdf\xaf\x69\x9b\xd9\x9e\x74\x91\x07\x4e\xca\xae\x78\xe6\x0c\x10\x08\x3d\xf1\x72\x1f\x3c\x74\x05\xa3\xb5\x72\x96\xf6\xa8\x3c\x03\x10\xea\xfc\x14\x7f\x64\xdb\x70\xb5\xa6\xf3\x91\x50\xb3\xcc\x8e\x7c\x31\x5d\xf8\xfb\x51\x23\x64\x35\x39\x2f\xcb\x4b\xe4\x33\xb2\x47\x36\xf0\x03\x74\x1b\xf2\x03\x66\x46\xbd\x4d\x78\xa1\xb2\x67\x45\x4c\x18\x59\x86\x1f\x5d\xa7\xb5\xb0\xd2\xe0\xe5\xd2\xa9\x32\xa6\x35\x90\x65\x61\x18\x76\xe4\xde\xea\x89\x21\xe8\x9e\x11\x00\xe4\x31\xfc\x6a\x8f\xcc\x10\xb3\x20\x2d\xbd\xf6\xb4\xae\xf5\xe6\x00\x1c\x5b\x90\x5d\xc6\x6e\xd4\x4d\x9a\x04\xa0\x34\xfa\xf2\x87\x36\xea\x0a\x85\xdc\x26\x4b\x60\x51\x33\xe3\x67\xa5\x3f\x72\xc5\x0a\x62\xa8\xe9\x75\x5d\x5a\x01\x82\x91\x47\x9d\xd8\x21\xe5\xe0\x16\x55\x37\xca\x8d\x3e\x12\xef\x80\x36\x0f\xd6\x86\x29\xb4\x26\xba\x98\x97\x0e\x28\x6f\xb6\x0d\xde\x6c\xee\x85\x58\xd0\xb8\x44\xe0\xcb\x7c\xe2\xb5\x81\x0a\xc4\xa1\x5e\x28\x86\x9f\xb8\x4f\x43\x82\x3b\x3e\xc3\x58\x7c\xfe\xdc\xcf\xae\xe7\x01\x64\x9e\x53\xa9\x51\x96\x62\x55\x4c\x7b\x42\xba\xa3\x82\xfb\x6a\x2e\xb3\x50\x33\x3f\xf4\xab\x98\x35\x88\x27\xfc\x6c\xc2\x4f\x2a\x64\x69\xe4\x38\xb8\x3b\x49\x30\x4f\xbc\x20\xcd\x2a\xa7\x4f\x85\x69\x92\xa2\x42\x51\x41\xe5\x32\x14\x85\xff\x98\x7f\xb1\x12\x87\x6c\xc1\x10\x81\x24\xda\xdd\x3e\x2c\xf9\x63\x70\xb8\x10\xbc\xea\xbb\x16\x6a\x97\x10\x46\x49\xd2\x32\xf4\xdb\xa6\x2e\xdc\x4b\x12\x85\xd8\xec\xaa\x85\x97\x69\xd1\xc8\x22\x3e\x62\x09\x03\xba\x37\xb7\x72\x6f\x12\x02\x7c\xac\x87\xa0\xf0\xeb\xfb\x86\x28\xec\x70\x97\x72\x09\xe8\x09\x6f\x29\x92\x3b\x75\x50\x50\x84\xc3\x7a\xea\xb0\x42\xd6\x26\x65\xe0\x76\x72\x91\x9e\x9f\x68\x0d\x60\x83\xb2\x9a\x1c\x12\x67\xbe\x70\x5f\x7a\xf2\xf6\x3e\x81\x44\x0b\xf7\xcc\x85\x07\xee\xc6\x92\xa0\x09\xc6\xf0\xcb\x3b\x74\x44\x3d\xaa\xe1\xc4\x51\xfd\xb5\x95\xaa\x06\xb0\x21\x7c\xe2\xde\x77\xbd\x96\x69\xb8\x2b\xbd\xd8\xfc\x85\x1b\x14\x7d\x0f\x44\xfc\x6a\xa1\x18\xfe\x6c\xa3\xa0\xb4\x44\x31\x01\x31\x3e\xa3\xdc\xa3\x68\xe2\x52\xcb\x14\x8c\xac\xdf\xf5\xe3\x8c\xb4\xdb\x00\x4a\x95\x1d\xd2\x4f\xdd\x69\x0a\xc7\x89\x5d\x9a\xc4\x59\x15\xb4\x79\x91\xc3\x17\x2e\x71\xdb\xed\xbd\x1d\x1b\x55\x34\x61\xa2\xf1\x81\xbd\x03\x95\xcd\x17\xe0\x04\x1e\x39\x92\x1e\x5f\x74\x76\x88\x85\xd3\xcc\x6d\xf2\x7c\xf9\x0c\x23\x2f\x48\xd0\x2e\xd9\x4f\xbd\x3e\x4c\x25\x02\xe2\x38\x38\x8e\x72\x95\x51\x6c\xe0\xd4\x08\x38\xc7\xe4\x17\xf4\x97\x69\xb4\xe6\x60\xcb\x2a\x14\xc3\xfd\x87\xb4\x60\x41\x3c\x0e\xbe\xe4\x73\xe6\xcb\xde\xec\x93\xc1\xc8\x07\x56\xe7\x95\x75\x14\x98\xd8\xc0\xdc\x25\x42\x5c\x54\x0d\xfb\xbc\x0f\xdc\xfa\xa8\xce\x5a\xc7\x1e\x31\x93\xce\x38\xf7\xc7\xa3\xfc\x9f\x94\x18\x72\x4c\xee\x07\x91\xdb\xb5\xfb\x12\x25\xde\xd8\x84\xc1\x64\x22\x91\xc3\x2c\xf3\x01\xeb\x7c\x62\x95\x50\x6c\x03\x66\x9e\xd6\x0e\x51\x83\xf8\x46\xac\x74\x9f\x7f\xe0\xb9\x11\x7a\xf6\x13\xf5\xec\x97\x1e\x54\x44\x51\x6d\xd7\x42\xf1\x65\xcd\x3c\x75\x40\x93\xc4\x62\xd4\xc3\x46\xe0\x53\x79\x61\x33\x1b\xee\x1d\xa9\x25\xab\xc0\xaf\xf2\x5a\xb3\xf3\x26\x95\x06\x64\x11\x93\x94\x61\x50\x76\xfe\x0e\xb9\xff\x07\xe8\xbe\x6b\x11\x23\xd6\xb2\xff\xea\x2e\x9d\x58\x64\xd3\xd8\x4f\x21\x73\xf1\x3b\xe9\x00\xd0\xc0\x16\xa8\x55\xc9\x61\xfd\x27\x5f\x1b\xaa\xf4\xdc\x92\x5e\x3f\x34\x36\x3d\x02\xf9\x68\x21\x57\xb1\xf6\x25\xad\x3d\xa8\x32\x8c\x7c\x19\x8c\x86\x29\x67\x2c\xce\x42\x90\x82\x34\x38\xbc\xe8\x10\xf8\x52\x3b\x7b\xf3\x93\xba\x93\x64\x42\xa0\xdd\xaf\x2b\x2f\x5b\x2e\xff\xf8\xd2\x1d\x7c\x56\x5e\x22\x70\xbb\x40\x4b\xf0\xd0\x0b\xca\xae\x91\x73\x93\xa2\x3f\xc6\x8b\x24\x4e\xda\x23\x4e\xc5\xc2\xa0\x7d\x8a\xcd\x18\x1b\xf0\xc9\xfc\x48\xa9\x22\x6d\xa5\x00\x55\x63\xba\x79\xef\xea\xe1\x28\x64\x80\x58\xdd\xe6\x4b\x95\x41\xbe\x5f\x0d\x3c\x02\xd6\xa9\x62\xea\x99\xfd\xb7\x0e\xf9\x5c\x6d\xe4\xc4\x06\x11\x37\x3c\x9b\x24\x8a\x72\x14\x2a\xc2\x5f\x4c\xd5\x08\x39\xc8\xa8\xc5\x47\xc5\xe2\xf2\xc0\x85\x65\xb8\x12\x3d\xff\x16\xe1\x80\x09\xea\x6d\x27\xae\xda\xc2\x17\xfb\x29\xa4\x69\x0b\x35\x62\x32\xf5\xf2\x39\x32\x30\xd9\xdc\x2e\x2f\xb3\xb1\x83\x47\x9c\x06\x05\x05\xf5\x8d\xf7\x68\x53\x67\x64\x70\x39\xac\xf0\xd3\x7b\xf8\x53\xe0\x06\xf8\x10\xf7\x2e\x7f\x5b\xfa\xe8\x76\xc2\x88\xec\xd1\xa9\xca\xd8\x30\xa5\xaf\xb2\x82\x2b\xec\xde\x14\x20\x07\x3b\xba\x6c\x6a\x6f\x6e\xf4\x12\x2d\x93\x21\xab\x19\xf8\x7c\x30\xfb\xce\x01\xfe\x11\x3b\x3a\xb9\x49\xc0\x94\xbd\xc2\x40\x85\x53\x54\xf3\x63\x77\xe8\x6c\x0d\x61\x1f\x97\xfd\xd3\x3d\xda\x1a\x00\x19\x35\xec\x63\x1c\x2b\x00\x9d\x55\x7c\xd8\xb9\xfa\x45\xa1\x18\xfe\xcf\x5b\x29\x47\x18\xb5\x6c\xc8\x6d\xda\x28\x03\x63\x67\x67\x1b\x2c\x26\x73\x9b\x34\x8d\x31\x93\x3a\x34\x56\x36\xc9\xb7\xaf\x4f\x9e\x51\x07\x3c\xa3\xcc\x1b\xa7\x24\x01\x84\xf3\xd9\xa6\x2e\x54\x30\x24\x14\xf1\xce\xba\x37\xdf\x50\x9a\x19\x1f\x75\x43\x74\xbc\x52\xa3\x07\x59\x81\x51\x6b\x0a\x40\xc9\x4d\x47\x94\x01\x76\x15\x83\xea\x71\xf6\xcf\xbb\x26\x37\xf4\x35\x2d\x96\x1e\xa2\x7a\x95\x7e\xc7\x1c\x65\xd2\x47\x51\x99\x2b\x09\x64\xbe\xde\x5f\x1e\xf8\x32\x71\x90\x63\x10\x15\x55\x96\xfd\xc3\x46\x1d\xb3\xe3\xba\x16\x91\xe6\xe6\xd9\x1f\x95\xb4\xbb\x6c\x13\x96\x06\x9f\x66\x6b\x8f\xe8\x4c\x63\x09\xe3\xdd\x12\x5e\xa9\x55\xe3\x76\xdf\xb8\xcb\xfc\xcc\x77\x34\xd0\x38\xb1\x2c\x42\x9d\xe4\x83\x3c\xd2\xae\x98\xa7\x18\x06\x76\xa1\x2e\xbd\x60\x68\x0b\x30\xdd\x0c\x62\xf9\x9f\x6c\xb0\x52\x99\x1d\x11\xa1\x3d\xc5\x8e\x24\xc5\x13\xf2\x90\x5e\x3c\xf5\x0a\xc9\xbb\x1a\x6e\x96\x28\x62\xd0\xb4\x1a\xe7\x69\xfa\x9b\xa8\xc7\x65\xd4\x16\xdd\xae\xa5\x2d\x75\xca\xa8\x4f\x45\xc9\x4c\xd7\x6b\xc3\xe2\xae\xc0\xa5\x8e\x47\x4a\x16\x0c\xc4\x73\xb7\x1c\xd0\x1b\x01\x3f\x6a\xc8\x63\x58\xff\xd2\x5d\x23\xc4\x3f\x03\x72\xa5\x9c\x8f\x64\x3e\xf3\xb8\xb6\xc8\x07\x03\x58\x10\x45\x10\xec\xba\xbc\xb3\x31\xe6\xb9\x58\x98\x8f\xdf\x7f\x3b\x40\xf6\x4d\xd4\x26\x0e\x30\x76\x0a\xc5\xf0\xf9\xab\x14\xec\x06\xa3\x5c\x2f\x3c\x33\x5c\xc3\xd5\x21\xd7\x65\xd4\x65\x04\xf9\x9c\x7e\x18\x9e\x7b\x51\x46\x26\x6e\x5f\x17\x4e\xdf\xa2\x69\x5c\x56\x84\xdc\x7e\xe6\xcc\xa4\x4b\xe2\xc2\xf0\xe6\x25\xba\x4e\xce\x15\x77\xea\x1c\xc7\x84\x55\x96\xbf\xec\x1e\xd9\xa1\x06\xb5\x96\xa3\x73\xbd\x72\xf6\x71\x37\x11\xe8\xee\xec\xd4\x17\x65\xe1\xdf\x45\x03\xe6\x20\x8b\x78\x51\x44\x9c\xc2\x34\x90\x97\x85\x6d\xec\xa4\x33\xec\x2f\x4f\xa6\x61\x19\xa8\x5c\x46\x84\x53\xa3\xf4\x88\xfe\xce\x53\x8a\x02\x2a\x06\x89\x45\x28\x27\x37\x55\x07\x2b\xd4\x19\x5a\x8e\x6a\xea\x77\x75\xa9\xce\xc9\x50\x9f\xf5\x17\xb6\x52\x36\x71\xa0\x86\x6b\x8a\x9e\x62\x9e\x45\x89\x82\x02\xce\x7d\x4d\x91\xff\xae\x52\x0a\xa9\xfb\x37\xf7\xc9\x11\x91\x17\x7d\x43\x5b\xd1\x8b\x29\x6a\xc8\x92\x4a\x80\xb9\xc2\x44\xeb\xd0\xe2\x5b\x7b\x5b\x4d\x4e\x13\x58\xea\xa9\xad\x43\x94\x8c\x85\xb8\xb9\x4b\xff\x05\xb2\xed\xeb\x2c\x5c\x03\x68\xf5\x17\x74\xc9\xc6\x1a\x4e\x0c\x8a\x8a\x47\x78\x16\x12\xbc\x9f\xe8\xe7\x1a\xd9\xf4\x1b\x77\x2d\x14\x6b\x98\x65\x7e\xb1\x6c\xa2\x5e\xb4\xe2\xd8\x3b\x52\x3b\x38\x7f\x7d\x3c\x09\xd4\x01\x48\xe8\x4c\x1f\x9a\xde\x26\x36\xb1\xe5\x7b\xc4\xd1\x00\xa1\x9b\x76\x0e\x11\x07\xc6\xb0\x82\xc4\x63\xfa\xe9\xd1\xfc\xc2\x10\xcf\x12\x79\xf6\xd0\x19\x79\x8a\xaa\x84\x51\xb0\x9a\x81\x26\xef\x9e\x39\x43\x52\xd9\x9a\xc3\x9d\x56\xac\x4f\xb2\x84\x5b\x45\x85\x62\xf8\xad\x7b\xe3\x69\x80\x41\x19\x87\x3c\x67\x7e\x69\x2a\x32\xdd\x84\x26\x10\xdc\xde\xdc\xf7\xda\x94\x7a\xc7\x47\x4e\x8d\x36\xbc\x9a\x2a\xa0\x36\x76\x01\x37\xb0\x2b\x76\xd3\x96\xa1\xdf\x55\xa3\x35\xb0\x47\xc0\x9a\x42\x85\x34\xfd\x1f\x56\xd7\x28\xf6\x0c\xb4\x81\x53\xc9\x32\xbb\x74\x52\xc2\xdb\x9e\x48\x60\x42\x34\x52\x81\x17\x61\x66\xc7\x03\xf7\xb1\xc3\x94\x6a\xa9\x9b\xd8\x42\xa3\xc4\xa9\x2a\x74\xd6\x2a\x65\x00\xc9\x0c\xe9\x60\x9d\x5c\xdc\xc6\xf9\x00\x51\x9f\xf3\xfc\x22\x59\x7f\x20\xdf\x67\xb1\xfb\x43\xe6\x1f\x9b\x87\xc8\x56\x57\x88\x54\x84\x2b\x25\x7d\xc1\xa5\x81\x32\xc8\x7b\x75\xab\x9c\x55\x01\x85\xfc\x5b\x2f\x6b\x68\xc8\x26\x55\xf4\xba\x6f\x90\xa9\xc0\xab\xad\x6d\x89\xd8\x4b\x96\x28\x0c\x10\x64\xa2\x1a\x64\xeb\x71\x6f\x8e\x6d\xe9\xa7\x98\x8d\x6c\xec\xf8\x02\xf0\x99\x1f\xf6\x18\x3f\x45\x25\xcc\xa1\x53\xbd\xd9\x71\x77\xea\x7b\x45\xe4\x73\xb5\xe9\x98\xa0\x7a\x54\x58\x68\x45\x9d\x09\xb4\xdf\xc7\x43\x4d\x0e\x8f\x38\xa6\xa7\x38\xcf\xe6\x36\x28\xe7\xaf\x73\x36\xdf\xa4\xf4\x66\x1e\x5f\xa4\xf3\xe4\x6c\x97\x3a\x52\x5f\x6e\x40\x9b\xc6\xf2\xa2\x0d\x47\x20\xa3\x32\xcf\x2a\x65\x15\x02\xa7\xa2\xe8\xb3\x2f\x5a\xad\x0d\x58\x02\xbf\x4c\x70\xd4\x44\x0b\x18\xf4\x75\xab\xf8\xbc\x07\xc5\x9e\xba\x5d\x67\x63\x72\x3c\xa8\x8f\x0a\x7f\x84\x9f\x1c\xd7\x64\x59\x91\x81\x4d\xea\x10\xc4\x5b\x69\x38\x07\xef\x7b\x91\x2b\x39\xdf\x41\x3d\x8f\x94\x65\x2c\xdb\x70\xde\x45\x32\x35\x41\xaf\xf3\x5f\x9a\x49\xaa\x41\x9c\xb5\x01\x36\xb0\xe3\xd3\x58\x9c\x63\x8e\xc2\xd5\xa2\x65\xb9\xc0\xc8\x6f\x57\xd5\x4f\x10\xc3\x55\x18\x09\x14\x8a\x61\x4d\xeb\x61\x91\x0b\xd2\xc8\x3d\xf1\xf8\xf6\xf2\xb1\xaa\xec\x88\x8b\x9a\xb1\x60\x78\x7e\x5c\x97\x7c\x74\x81\xd3\xe0\x92\xf4\xb9\xdd\x6f\x6b\x1a\xbd\x84\x61\x70\x17\x96\x83\xd1\xab\xf8\xa8\xeb\x06\x8b\x94\xcb\x54\x5d\x9d\x66\xbb\xaf\xd5\x94\xab\x30\xb6\xe2\xc4\x7e\x65\x5d\x7b\xcb\xc2\xc5\x84\x6b\xfb\x84\xe7\x56\x69\xd6\x49\xc4\x27\x25\xe4\xd4\x44\xe5\x96\x0e\xfe\x8d\xbc\x74\x80\x89\x52\x92\xe7\xa3\xd6\x05\x3c\x9b\x70\x85\x16\xac\x8d\xbe\x48\xe5\xb9\x4b\xdf\x19\x9e\x52\x3d\x31\x84\xce\x4d\xee\x87\xaf\xa6\xa3\xb2\x83\x7d\xe4\x34\x51\x35\x48\xa9\x0d\x6e\x78\x4c\xc0\x79\x2d\x5a\x82\x12\x9b\x4c\xd5\xa6\xc0\x2e\x31\xb1\x54\xae\xb3\x47\xe9\x16\xdb\x56\x2c\x3e\xba\x7d\xa8\xe8\x3e\x66\xc0\x54\x32\x7b\xc9\x24\xad\x92\xf5\x3c\x64\x4e\x51\x89\x42\xf9\xf9\x8f\xc4\xe0\x0f\x98\xd9\xf3\xa6\xfa\x1b\x6f\xf2\x8f\xb4\x94\xf1\xf0\x96\xfd\xf5\x29\xe1\x00\xc7\x50\xa2\xb8\xf7\xdd\x55\x5a\xa1\xc4\x50\x89\x20\x45\x56\x75\xfb\x0c\x19\x4b\x18\x62\xfc\x4a\x64\xff\x53\xa3\x17\xcc\xec\x00\x2b\x5f\x71\x55\xdf\xb3\x4c\xe5\xb4\x76\x27\x78\xeb\xec\xfa\x30\x35\x91\x2c\x89\x5e\x1f\x3e\xee\xc0\x92\x46\x9c\x77\xe2\x08\xf3\xc5\x33\xad\x5c\x06\xa9\x3c\xfb\xcc\xa1\x3e\xac\xdf\x31\x73\x11\xe3\x3b\xb5\xdc\xaf\xe6\xa8\x5d\x0a\xc3\x8d\x42\x31\xfc\x76\xf7\x85\x22\x87\x80\x25\x66\x06\xb5\xcb\x8c\xd0\x83\x9c\x1e\x52\x02\x5d\xc7\x8c\xb5\x65\x9c\xde\xcc\xc0\xa8\x04\x29\xf0\xff\xdc\xc0\x83\xda\xdc\x13\x71\x5f\x12\xf9\x7e\x16\xbd\x3a\xae\x25\xf4\x42\x3d\x41\x9c\x4a\x72\xa3\x06\xae\xd6\x42\xad\x8b\x1c\xe2\x55\x15\x35\xa1\xd9\x07\x93\x91\x81\x09\x0b\x39\xd9\x27\xde\x37\x57\x9b\x05\x21\x56\xe3\x67\x44\x61\xe6\xfb\x1a\x02\xc4\x22\x76\x09\xb8\xd9\xd0\xa8\xb0\xe5\x7c\x08\xa3\xa8\x89\x16\x8a\xe1\x23\x52\x28\x88\x4f\x05\xe4\x48\x7b\xec\x0b\xb2\xeb\xef\x98\x36\xa3\xd0\xe4\x6d\x47\x96\x8d\x54\x56\x1c\xd4\x32\x09\x66\xc0\x51\xd8\xbd\x3e\xfd\x05\xab\xa8\x4b\x53\x92\x76\xb3\x9a\xc0\xc5\xec\x59\x33\x39\x6a\x67\x89\x46\x8b\x70\x31\x8b\x42\x26\xaa\x88\xd9\x53\xee\x4b\x52\xf6\xd0\x33\x5a\x81\x8a\x6f\x6c\x6f\xf9\xc9\xb3\xf8\x4f\x7e\xff\xd4\x16\x39\x72\x6c\x20\xcf\x8f\xed\x6b\x7a\x73\xd9\x65\xca\x20\x5e\x9d\x0b\x2f\x3b\x3b\xa5\x91\xde\x75\xd4\xb1\xe7\xc7\xd9\xb1\xc5\xeb\x2d\x1b\x4c\x1e\xa9\x54\x2f\x2a\xb2\x3f\xdb\x75\x46\x73\x25\xf1\x39\x7d\x23\x96\xe2\xc8\x5f\x39\x40\xd6\xad\xd3\x3a\x01\xfb\x8b\xb4\xd1\x09\x0c\x8e\x39\x91\x6f\xd2\x5e\xf9\x5f\x5b\x04\x17\x8a\xe1\x8f\x5f\x18\x9e\xdc\x00\x5c\x28\x61\x93\x51\x6a\x43\xf5\x3b\x56\xe7\x12\x19\x18\xd0\xe7\x71\x27\x97\x9f\xa8\x75\xb8\xb1\xd3\x85\x80\xf6\x35\xe7\x8f\xd7\xfa\x48\xc2\xfa\x40\xc1\x5d\xa4\x89\x97\x74\xb4\x0b\x7d\xd7\xdc\x62\x91\x4a\xe4\xa4\xa0\xe0\x37\x5d\x40\x08\xf8\x6d\x63\x94\xb9\x97\x41\x03\x86\x2a\x29\xb2\x6b\xfe\xb5\xf4\xcd\x22\xb6\x8b\x99\x47\x63\x15\x49\xce\xb5\xf8\xa4\x66\x0b\x84\x9c\xa6\x88\x2d\xd9\x92\xa6\x80\xec\x22\x93\x61\xaf\xaf\xda\x33\xf7\xd2\x11\x75\xdc\xc8\x67\x73\xd1\x8f\x28\xac\x18\xa5\x60\x9d\x0c\xea\xf8\x88\x83\x8c\x60\xa1\xf2\x90\xaa\x67\x44\x60\xa7\x36\xea\x8c\x22\xa1\xc0\xfa\xf0\x70\xd8\xa6\xba\x4a\xdb\x41\xa5\x02\xf2\xfe\xe1\xd2\x71\xfa\x86\x96\x3b\x7e\xf2\x53\x3a\xed\x38\xaf\x34\x2a\x01\xb1\x60\xad\x7c\xc7\x5b\xa2\x98\xb3\x28\x35\xa3\x3f\x38\x7a\x9a\x57\xe0\xb7\x10\x46\x9a\xd8\xa9\x49\x7c\x4f\xf8\x73\x4d\x6c\xb2\xc4\x28\x12\x8c\xa9\xcc\x77\xa4\x86\x59\x25\x00\x7a\xef\x85\x7b\xf4\x50\x8d\xc5\xab\x3c\x5b\xd6\x29\x20\x9e\x14\x09\xcf\x7d\x43\x19\x66\x55\x2c\x7e\xfe\x32\x5f\x50\xa8\xd1\xbc\xd5\x28\xc4\x65\x4d\x6f\xfe\xfa\xd1\x0a\x6f\x9a\x7b\xbf\x24\x6c\xdb\xf5\x7b\x14\x1c\xab\xe7\x61\xbb\xc4\xcb\xb5\x41\x87\xa5\x05\x4a\xb0\x56\x1d\x3e\x2b\xb0\x6d\x30\x52\x84\xce\xe9\xc1\x55\xda\xe9\x06\x1e\x33\x89\x31\xd7\xf9\x36\x27\x41\xb9\x74\x51\x55\x39\x68\xfc\x3d\xda\xeb\x60\x58\xf2\x49\x33\x57\x5b\x43\x94\xfb\x3a\xb5\x13\x8a\xdc\xdc\x33\xc3\x75\x7d\x30\xab\x8e\x4c\xca\xb4\x38\xf8\xcd\x4d\xe9\x9a\xa3\x8e\x2c\x58\xa7\xe3\x54\xab\x7f\xe3\x7e\x8d\x64\x54\x45\x84\xd9\x08\x2c\x2f\x78\xea\xbb\x76\x4e\x6c\x23\x86\x3c\x6c\x61\xcf\xe3\x4f\xe8\xb5\x87\xf8\x41\x58\x5e\xc5\x9e\x87\x2c\xea\x10\xe8\xd4\xa2\x74\xbf\xe4\xee\x4b\x5b\xea\x7d\x00\x41\x88\x6c\xbb\xfb\x7a\xcd\x84\x9e\xd8\x1e\xb6\xca\x62\xed\xb2\xbf\x4b\x69\xac\x88\x43\x19\x17\x21\xcf\xbc\xf7\x3c\xc1\x45\x31\x18\x82\x5c\xf7\xf8\xea\x54\x25\x5b\xc3\xe0\xb3\x0a\x37\xe6\x88\xb6\xf6\xc1\x1e\xaf\xc5\x45\xb4\x79\xef\x2c\x31\x3e\x46\xb0\x89\xc9\x5f\x69\x5e\xac\x8c\xdf\x85\xb3\x38\xb4\xfa\xbd\xf9\x7b\x87\x72\x7d\xdd\x05\x04\xd9\xc8\x31\xa9\x4b\x03\x4b\x25\x06\xe4\x67\x9c\x55\xa1\xc4\xb1\xd2\x56\x62\x22\x37\xf4\x62\x3d\x21\x1b\x98\xaf\x91\x7a\xb7\x69\x2a\xcb\xd8\x24\xa8\x0f\xe2\x6c\xe6\x13\xaf\xca\xfb\x5f\x27\x1e\x82\x25\xdb\x4f\x3a\x05\xe2\x9c\x98\x15\x81\x60\x0b\xff\x38\x7e\x9c\x56\x44\x34\x21\x90\xaa\x75\x5e\xee\xd9\x25\xe9\x37\xce\x1d\xfe\xa2\x3e\x25\x9e\x79\x5c\xb7\x46\x97\x47\x60\x46\x15\x25\xa6\xd4\xe1\x81\xe5\x72\x18\x13\xd5\x3e\xd1\x13\xff\xf5\xf3\x4a\x8c\x02\x65\xa6\x62\x6f\x2e\xb7\x48\x5f\x74\x83\x1c\x38\x1f\xcd\x5f\xda\xa3\x2d\x17\x69\xa9\x64\xc5\x88\x39\x49\x57\xbb\x8a\x27\xdd\xc2\xb2\xc0\xa4\x96\xab\xd0\xf5\x7f\x74\x81\x6e\x9b\xdd\x48\xa4\xb9\xb3\xb7\x2d\x50\xd4\x47\x49\xa5\xea\x0b\x57\x80\xb5\x0a\x72\xa2\xc2\x70\xb3\x1a\x2b\xe7\xdd\x7f\x50\x0e\x93\x02\xd7\xc5\x29\x41\xec\xcc\xc6\xb2\x8a\x81\x26\x42\xd8\x04\x1a\xd1\xaf\xe9\x02\xb4\xd4\x76\x2d\xac\x60\x4e\xfe\x77\xd3\xd0\x94\xb8\x4c\x85\x4f\x41\x5e\x5a\x7e\x85\x4b\xbd\x29\xae\x50\xb1\x5b\xb2\x64\xe9\x94\xf8\xab\xa5\x8a\xb2\x7e\x4f\xa7\x1f\x13\xf1\x2c\xe4\x98\x5e\xba\x2e\x0b\xff\xf4\x64\x4a\x17\x9c\x09\x16\x59\x16\xbb\x17\xc6\x71\x6c\x42\x74\xf0\x97\xaa\x9e\x6e\x9d\xb3\x0a\xc5\xf0\xeb\xab\x74\x27\x09\xa7\xe6\xa5\xd9\xdf\x99\x7b\x84\x8c\xcc\x12\xdc\xf0\x1a\x18\xd7\x0a\xc5\xd0\xb6\x14\x76\x95\x43\x1b\x30\x5f\x9d\xba\x5c\xba\x6d\xb2\x56\x8d\xeb\xe9\xe7\x49\x9b\x8d\x00\x66\x2b\x33\x9f\x54\x64\x50\x91\x07\xe8\xf5\x0c\xdb\xa6\xe8\x28\x52\x04\xc9\xc7\xa8\x89\xee\xfa\xd7\x2b\x38\xa0\xf1\xca\xe8\xff\x5c\xbb\xf5\x9f\x5a\x23\x41\x51\xdd\x7d\x4e\xc2\x7d\xa0\x80\xf9\xdc\xe3\xf2\x31\x55\xa9\x8d\xf9\xd4\xb6\x37\xbf\xe6\x01\x0d\x37\x83\x99\x1f\x58\x31\xfe\x57\xc1\x4a\x3d\xa6\xeb\x83\x62\xdb\x96\xb9\x69\xd0\x09\x29\x62\xa0\x5a\x31\xe5\x3f\x5e\xd7\xff\x5d\x60\x12\x1a\xeb\xc0\x65\x6e\x6e\x97\x4d\x68\x42\x94\xd6\x4b\x87\xdb\x27\x0c\xd7\xc2\x3e\xf7\xc8\xcb\x04\x1c\xbd\x5c\xb8\x8d\x06\x5c\x58\xad\xa5\x16\x78\xcd\xe4\xf1\xce\x89\x9d\xe8\x4f\x6a\x9d\x3e\x17\x65\xf5\xe2\x51\xc8\x57\xef\x69\xa1\xd1\x3a\xf1\xb7\x0c\x8f\x6c\xd0\xaa\x4c\xa7\x12\xa5\x05\xc8\x2a\x7c\x3d\xbf\x57\x58\x8f\x05\x3e\x37\xa0\x4f\x7f\x8f\xaf\x66\x55\x6f\xb7\xc0\x43\x20\x26\x9c\xbb\xe9\xb8\x6a\x75\x58\xe1\xb7\x24\x9f\x79\x6a\xa4\x22\x4d\x64\x59\x85\x12\x35\xb9\x23\x4b\xee\x33\x73\x34\x2f\x47\x64\xa3\x5a\x7a\x3b\x93\x31\xef\xd4\xb6\xbf\xd4\x47\x8a\x0b\x74\xe6\xea\xc1\xf2\x14\x4b\x02\xcd\x29\x39\xe7\xa8\x46\x2d\x56\x0c\x17\xc9\xce\x18\xac\x21\x5b\x48\x82\xe2\xe0\x96\xf2\xbb\x92\xde\xaa\xc2\x70\xea\x1a\x5f\x62\x6a\x78\x92\x94\xb2\x5c\xee\x97\x6d\x43\x95\x6a\x0d\x31\xbe\x4c\xcb\x3d\x7f\xa2\x85\xb3\x63\x61\x0e\xcd\x3d\xad\xf9\x30\xd8\x51\x33\x63\xc6\x1c\x84\xcc\x1d\x2a\x2b\xd9\xa5\x35\xec\xd9\x28\x7a\x7b\xef\xd9\x23\xf7\x78\xb4\x50\x28\x86\x9f\x3a\xae\x28\x27\x51\xbb\x84\xa0\x20\xcd\x7d\xfa\xa9\x3e\x55\x9a\x13\xe9\xfe\x4c\xe7\x96\xa1\x4a\xe3\x36\x75\x66\x07\x08\x1b\xe7\xef\xea\xd4\xcc\x7e\xbc\x6a\x03\xfb\x38\x25\x5d\x9a\x1f\xaf\xe1\xb0\x28\x28\x6e\x22\xce\x5d\xcb\x8d\xd3\x98\xf2\x75\x82\x1d\x07\x49\xf3\xc4\x29\x1b\x74\x8b\x89\xa0\x52\x4d\xd4\x04\x4f\x27\x57\xde\x47\x51\x96\xfd\x66\x38\x42\xcb\x41\xf1\x37\xb8\x7b\x6e\x32\x5d\xad\x38\x09\x09\x6b\xf6\x62\xc1\x8d\x70\xb1\x11\x58\x42\x65\x3b\x7c\xfa\x26\x09\xcf\xa7\x81\x92\x4d\xdb\x5f\x95\x32\xea\x4e\x54\x98\x5f\xbf\x45\x2e\x85\x68\xc0\x37\x49\x97\xe9\xe2\x4d\x15\x22\xfc\xe7\x8b\xbd\xb9\xff\x78\x2e\xbd\x25\x64\xd4\x4e\xe2\x8e\x26\xa0\xb1\x9f\xa7\x7c\xdc\x6d\x30\x1c\x7b\xba\xff\x64\xa3\xde\x7a\x06\x2c\xaa\xb8\x2a\x49\x15\xb9\x76\xf8\x70\xed\xb6\x8b\x95\xd4\x6a\x67\x8c\x76\x9c\x0d\x46\x1b\xa8\x1e\xc3\xa0\x73\x13\x4a\xfa\x38\xd5\xa9\x50\x31\xb0\x8c\x9e\x95\x73\xf6\x22\x19\xef\xa3\xf8\xba\x6c\x21\x4f\x14\xcb\x63\x24\x4f\xb1\x37\xfb\xca\x54\xcd\xd6\x22\xf0\x7c\x86\x2c\x82\xa0\x7d\x12\x65\x52\x9b\x33\x21\x79\x6a\x51\x94\x72\x11\xf3\x89\x87\x5a\x28\x9d\xf9\xf7\x6b\xee\x57\x0e\x8e\xfe\x51\x2d\x56\x51\xf8\xe9\x6e\x05\x4f\xac\x44\xe0\xcc\x9e\xf6\x91\x1a\x6e\x3b\x6a\x8c\x61\x68\x54\x5e\x24\xdf\x58\x99\xf2\x3d\xe9\xbf\x9d\x55\x35\x42\xa2\x46\x0c\xea\xf8\x01\x52\x18\xdc\xa8\xaa\x12\x4f\xcb\xb5\x82\xd3\xb5\x50\x93\x96\xcb\x09\xbe\xcb\xeb\x90\x3f\x2f\x60\x41\x25\x00\x3e\x59\xe6\xc6\xe1\xe9\xea\x70\x5a\xdb\xf4\xf6\x18\xe1\xbd\x69\xa0\x44\x51\xcd\xe6\xe3\xed\xcb\x47\x69\xb4\x5b\x10\xdc\x80\xaf\x1e\xbe\xb8\x52\xf1\xa2\x62\x82\x18\x13\x1e\x39\xa6\x60\xa2\xb0\xc7\x40\xe7\xf2\xcb\x5b\x34\x2f\x05\x6c\x59\x71\xa3\x9e\xf9\xfb\x49\xf9\x34\x3c\x87\x36\x0a\xc5\xf0\xed\xed\xe9\x23\x56\x83\xb7\xa7\x0a\xe1\x7f\x68\x1d\x8c\x17\x0b\x4b\x11\xb3\x08\xea\x8b\x19\x9d\xfd\x6d\x4f\x8a\x0b\x83\xf8\x78\x7d\xd0\x3a\x41\x99\x43\x29\x41\xd5\x2f\x8f\xd1\x80\x15\x1c\xa8\xc9\xc5\x46\x57\x3f\xae\xef\x8c\x0d\x4c\xea\x31\x3e\x30\xd3\xa1\x6d\xe2\x84\x79\x15\xef\x43\xff\x31\x4b\x63\x3c\x04\x98\x31\x62\x59\x28\x8e\x9b\xed\xdb\x14\xba\x60\x03\x3b\xd0\x7b\x64\xbf\xef\x2a\x66\xac\xb4\x24\x5c\xa9\x32\xe7\x5d\x2f\x83\x6c\x8d\x58\x60\x81\xe6\x15\x8a\xe1\x6d\xdb\x55\xa3\x64\x8b\x32\x64\xd2\x38\x3b\xde\x3f\x39\x26\x61\xc4\x26\x00\x77\xaf\x49\x5f\x90\xb5\x01\xc4\xff\x12\x82\xa2\x87\xaf\x19\x72\x1f\xdb\x36\x5a\x2f\xd3\xb8\x88\x00\xbf\xa9\x37\x8c\x93\x87\xa5\x0a\x6f\x3e\xf3\x14\x9f\xd5\x2c\x43\x55\x1b\xa9\x82\x50\x43\x3b\x65\x6b\x8b\x2c\xe5\x8a\x8c\xde\xa1\x20\x37\xaa\x41\x05\xbe\x22\x99\x34\x58\x19\x9e\xd4\x69\xb3\x50\x0c\xb7\x6e\xbc\x58\x01\x2b\x7a\x3e\xe8\x4f\x88\x82\xf3\xee\x07\x46\x28\xaa\x62\x36\x0d\xbc\xd8\xe0\xf6\x99\x15\xc3\xe2\x97\x8f\x19\x0b\xdc\x78\x36\xfe\x9d\xc9\xfc\x83\xde\x68\xd1\x52\xa2\x3e\x10\xfd\xa8\xab\xe6\x73\xc9\xc6\xa5\x8c\xd4\x5b\x5c\xd9\x33\x9b\xb7\xb7\x58\x6d\x33\xec\xfb\x1a\x2f\x68\xe6\x29\x59\xb8\x47\x19\xb2\x0a\xf0\x3b\x18\x0b\xbd\xeb\x35\xd5\xe0\x9f\xa1\x1e\x54\xe2\xbc\xaa\xe1\xfb\xb5\xd5\x03\x87\x3b\x44\x2f\x76\xf9\xc2\x96\x80\x28\x16\xa8\xd0\x2b\xe7\x3f\x7b\xbd\xaa\xa9\xe6\xd6\x88\x13\x35\x43\x55\x14\x55\xcc\xe7\x1e\x92\xb5\x77\xec\xdb\xff\x8c\x86\xe7\x63\xc8\xf7\x63\x93\xb7\xf0\xca\xd2\xe5\x0a\xf7\xd6\xf3\x31\x6b\x59\xbf\x67\x66\x2a\xb2\x04\x12\x9e\xdb\xf2\x9f\x8d\x7f\x8d\x3f\xca\x69\xed\xb3\x5b\x50\xf3\xe1\xbb\x35\x01\x7a\xbe\x90\x95\x8a\x80\xf9\xe2\xf2\x58\x8f\xd2\x34\xf9\xf6\x77\xa0\x3a\x84\x04\x44\x5d\xec\x4a\x9e\x39\xbc\x5c\xaa\xe0\x29\x11\x38\x7c\xff\xe9\xf4\x06\x02\x24\xf9\x85\x53\x8b\x40\xac\x7c\x6e\xae\x62\xbb\xa0\x72\xe0\x2a\xac\xc5\xe4\x03\x5c\xd8\x92\x76\x6f\xac\x98\x5b\xb9\x88\x51\xae\x9f\xb5\xed\xad\x71\xca\xd5\x34\x6a\x25\x6e\x72\x98\xfa\xe2\x3f\x1c\x39\x58\xd9\x61\x53\x50\xb3\xc9\xbc\x27\x2b\xd5\xe1\x30\x92\x9f\xff\x1b\xae\xe6\xd7\x4a\x6c\xa3\x8a\x88\x51\xe5\x8f\x49\x7e\xd8\xfd\x43\x65\x4d\x69\x51\x00\x20\x87\x9b\x1e\x4e\xaa\x84\x19\x33\xda\x0b\xc5\xb0\xff\xf3\x7a\x24\x67\x7e\xac\xc9\x9e\xb9\x56\x33\xa1\x15\x1e\x5a\x62\xda\x38\x57\x2b\x68\x40\x9c\x0d\xa6\xd0\x8f\xdd\xab\x40\x41\x9c\x8a\xb8\x78\xf9\xb6\x13\x4a\x0d\x0d\x9b\x14\xc1\xf7\xed\xcd\xfd\x7c\xb4\x80\x5f\x50\x0a\xa1\xf5\xd6\x17\x54\x29\x3d\xc3\x42\x76\x7c\x1b\xf3\x1f\x3e\x24\xe3\xf7\x44\x2f\x8e\x66\xef\x59\x92\xbe\x2b\xb3\xa6\x76\x0a\x2b\xfb\xde\xec\xa7\x97\xa4\xad\x2f\xc7\x4f\xc1\xdd\x85\x62\xf8\xc9\x97\xb5\x31\x21\x36\xa8\x0d\x9e\x0f\xe1\x9b\x55\x65\x66\x19\x00\x1c\x3b\x6a\xda\x17\xee\x97\xb6\x71\x16\xae\x37\x5b\x08\x3f\xd9\x6f\x67\x65\x5f\xd7\x40\xac\xe0\x53\x06\x0d\xd9\x47\x97\x0d\x88\x4b\x6a\x80\x9b\xbc\x67\x94\x2e\xa9\xe3\xc8\x11\x39\x77\x50\x98\xcc\xa3\x54\x11\xfc\xbc\x64\x9d\x37\xee\xa4\x3e\x74\xb3\x11\x43\x8e\x51\xe5\xe4\x94\xf8\xe5\x77\x33\xf1\xcf\x1b\xd8\x51\xf1\x2b\x97\xcf\x1d\xa6\x4c\x98\x0c\x2b\x00\x2c\x44\x78\xc5\x28\xe1\x68\x50\x45\x2e\x61\x54\x29\x28\x8a\x33\x46\x28\x44\x68\x64\xc3\xf4\x0a\x0a\xff\x43\x83\x07\xc9\x38\xea\x70\xa0\xf8\x7b\x8f\x6b\x3c\x6b\x62\xc6\xb6\x3d\x7f\x19\xac\xec\xd1\x40\x00\x12\xe0\x4d\xe1\xc6\xb3\xda\x6e\xb1\xdb\x8f\x8a\xca\xb8\xfa\x98\xf4\xc4\x95\x7a\xa7\x4b\x9c\x12\xc3\xa0\x32\x6f\xfa\xca\xfc\xeb\x43\x53\xd3\xe7\x71\xf6\xec\xf8\x56\x5e\x3c\x57\xd9\xe1\xb8\x38\xaa\xf0\x79\x3a\x7d\xe9\xb0\xc2\x45\xc3\x8e\x47\x20\xaa\xe4\x6f\xdb\xaa\xdc\x9c\xc0\xa8\x45\xb9\xe6\x93\x2b\x94\xfa\x3a\xea\x30\xb2\x0f\x0e\x55\x99\x51\x8e\x50\xd1\x4f\x8c\xd0\x9e\x4a\xbf\x27\xae\x34\x68\x21\x70\x5a\x4b\x7a\xd8\xbb\x37\xa7\x9f\x57\x07\x08\x20\xc1\xb8\xe6\x3c\xcd\x8d\x9e\x2b\x67\xf0\xe2\xe0\xe7\xc7\xd2\x95\x74\x05\x3b\xa0\xde\x7f\xee\x3e\x9e\xc2\x16\x10\x33\x50\x45\x81\xb2\xb7\x77\x0f\x55\xe3\x64\xd4\xa8\x14\x8a\x61\xbf\x67\x07\xc5\x9f\xde\x10\x3a\x80\xd9\x67\x77\x68\x55\x0b\x22\x5e\x4c\xf7\xf9\xd1\x72\x55\x61\xca\xaa\x83\x41\x48\xf4\x8f\x7e\xbc\x54\x71\x04\x0b\x0c\xc6\xef\xfb\xd0\x81\x5a\xa9\x80\xfd\x06\xc6\x82\xca\x1c\x2e\x3a\xac\x6b\xd2\x97\x3c\x62\x12\xc4\xb8\x73\x7d\xf6\xa5\x7d\x29\xdf\xcc\x06\xff\x4d\x9f\x78\x4e\xc7\xd1\x33\x6c\xf8\xd8\x8c\x95\xd1\xdb\xb7\xe8\xd9\xb8\x44\x7c\xaf\xd6\x54\x43\x63\xb8\x6c\xf2\xe8\xd6\xb6\x0f\x33\xe1\x4a\x90\x99\xc6\x39\x02\x50\x9e\x13\x07\x48\xf3\x3c\x4b\x3e\xf1\xaa\x24\x57\xb6\x80\x16\x7b\x33\x6f\xec\x9b\xa0\xbf\xcc\xf6\xbe\x56\x67\xb9\x9f\xef\xd1\x42\x38\xb5\x48\x54\x41\x57\x6b\x54\xed\x4f\xc3\x1b\x56\x68\xcb\x72\x6e\x92\xaa\xb2\x4a\x7f\x73\x42\xd5\xbf\x28\x63\xd6\xc4\xf5\x42\x31\x1c\xd6\x2d\x73\x7c\xd0\x06\x0b\xcb\x4b\x1e\x6d\xb1\x97\xa3\xd2\x53\x26\xbc\xcb\x97\x4b\xb6\x6b\xa6\xc1\xd5\xbb\x77\x81\x90\xca\x45\xae\x9b\x02\xac\xe6\x7e\xac\xd1\xef\x71\x1d\xb3\x26\x75\xe2\xab\x7e\xfe\x3a\xc9\x8c\x61\xad\x56\x59\x2f\x86\xb2\x37\x42\xca\x04\x3b\x77\xde\x55\xaa\x2f\xad\x8d\x98\x30\xbd\xcd\x8e\x7f\x42\x4c\x72\xb8\x4e\x80\x5e\x55\x0c\x79\x3a\x3d\x81\x21\x26\xad\x91\xf4\xe8\x30\x77\xef\xdc\xf4\xc1\xa8\x55\x91\x15\x6b\xf2\x4b\x63\xdc\xce\xc4\x07\xda\xc3\x8e\x07\xdc\xe5\xf0\x1f\xab\x54\xe1\x5a\x70\x93\xe3\x9f\xaa\xff\x41\x5d\x47\x12\x78\xe9\x42\x7c\x61\xa6\xd9\xaa\x9d\xcf\x47\x03\x97\xcf\xe5\xe7\xab\xe8\x43\x45\x2c\x8b\xc4\x61\x0b\x65\x35\xd3\xa0\x56\x59\xb9\xc0\xff\xa9\x69\x32\x4e\xac\x30\x54\x4f\x54\xf1\x3f\x77\x4e\xde\x95\x0a\x41\x8e\x0f\x01\x6a\x86\x46\xef\x2a\xd1\xa6\x41\x7d\xb1\x62\xcb\xce\x7d\x2e\xe6\x94\x1b\x5c\x69\xbb\x37\xf3\x19\x87\x27\x8d\x25\x24\xca\x52\xf2\x73\x0d\xd2\xbc\x4c\x3d\x5a\xf6\x1b\x88\xc5\xdb\xea\xc9\x8a\xe6\x1a\xf1\x3c\x41\x50\xff\x91\xa6\xaa\x67\x12\x14\x3f\x00\x34\x3f\x7d\xae\xcb\x01\x6b\xd6\x52\xf9\x2b\xb7\x67\xb0\x5c\x2b\xa2\x0a\x6e\x91\xf2\xca\x0d\x7c\x5a\x89\xbe\x55\xec\x59\xea\x01\xcd\x5f\x7d\x44\x13\x52\x60\x54\xa8\x44\x0b\xd5\xc8\xdc\xb4\x35\x7c\x4f\x7b\x2b\x62\x15\x64\x11\x5f\x85\x52\xcf\xd5\x04\x62\x30\x2b\x71\x69\x98\x74\xb2\x7f\xaf\xb0\x92\x9a\xb7\xec\xf6\xdb\x6e\x9a\x17\x07\xfe\x8f\xed\x54\x8a\x1f\xbf\x2a\x20\x85\x99\xa3\x87\x06\x2b\x6a\x38\x0e\x86\x3f\x1c\xf2\x2a\x2f\x0b\x96\x05\xdc\x93\x2c\x7b\xf3\x6a\x5d\x21\xcd\x8b\xca\x31\x90\x28\xae\x1f\xd4\xe6\x9d\x15\x86\x61\xfa\x12\x4f\x4b\xff\xb4\xf5\x9f\xf6\x94\xfc\x3f\x98\xe8\xca\x42\xde\x0f\x58\x8d\x78\xad\x16\x45\x2b\x37\x6a\xd2\xdf\xb8\x2c\x88\x04\x0b\x5f\x6e\xf1\xd8\x33\x90\x81\xca\xe2\x14\xb0\xc3\x69\xb0\x28\x07\xba\xe3\xbe\x02\x60\xe6\xf1\x81\xca\x94\xd1\x0f\x4c\xae\xac\x95\xf9\xc2\x99\xe1\xca\xf9\x67\x56\xc2\xb6\x3d\xa5\x94\xb2\xb4\x0c\x46\xe0\xe1\xf7\xa7\xea\xed\xb5\x99\xa0\x1c\xf2\x2b\xc7\xc8\x1e\x2f\xf6\xb4\x88\x7e\xc3\xe7\x97\xa5\xff\x51\x03\xb1\x72\x74\x90\xa3\x7b\xfe\xb7\x93\x7d\x9a\xa4\x08\x19\xb4\xde\xdc\x53\x0f\x6a\xc8\xb9\xc0\xb3\x88\xed\x29\xc6\xdf\xbd\xd9\xdc\xcb\xf2\x83\x22\xaf\x0a\x5a\x75\xd9\xb9\xcf\x6b\x7b\x5f\x65\x5f\xb2\x63\xbc\xb2\xae\xa2\x42\xe9\x6a\xc9\x80\xf4\xc5\x8d\x4a\x43\x94\xe8\xf4\x3c\xb3\xf0\xc2\xf8\x3f\x87\x30\xfd\x9d\x0e\x79\xb2\x28\xf2\xab\x30\x21\x7e\x7f\x3f\x95\x9b\xe1\x79\x28\x88\xbe\xfe\x37\x16\xea\xde\x1a\x00\x74\x34\xf9\x82\xf5\xf7\x7e\x9a\xec\x90\x0c\xc8\x38\x38\x42\x4f\x77\x53\x55\x21\x84\x2a\x13\x22\x7f\xbd\xb9\xc3\x52\x47\x9d\xaf\xfa\x4f\xee\x51\x00\x5d\x0e\xf1\xec\xa8\xea\x13\x12\x10\x06\xf1\x19\x27\x9f\x7f\x75\x91\x84\x93\x62\x65\x48\x9b\x99\xb9\x7c\x80\xcc\x4c\x85\x62\x38\xf1\x8d\x56\xe4\x40\xe2\xe2\x92\xff\x74\x56\xd7\xf6\x70\x2a\x09\xd0\x2f\xff\xc1\x30\x59\x0c\x19\xa8\x65\x31\x94\xfb\xc8\x46\x39\x71\x37\x31\xa8\x37\x95\x01\x25\x90\xfb\xea\x4a\x6d\xc8\x4f\x19\xd5\xb6\x53\xd9\x3f\x3c\xa4\x2c\x75\x08\x38\x15\xc1\xb5\xdb\xfd\xa2\x9c\x89\xe0\xa8\xb9\x0b\xf7\x67\x35\xa0\x9a\x4d\x18\x87\x46\x25\x31\xe8\x4d\x21\x6b\x86\xa3\x46\x3c\x9e\xb1\xde\xd4\xa1\xf4\x25\xae\x30\x36\x28\x86\xf7\x9f\x1b\xaa\x4c\x10\xbc\xd8\xd4\xee\xe9\xf3\x34\xd3\x60\x6a\x59\x88\xc5\xe0\xee\xbb\x2c\xc5\x65\x87\x5a\x16\x18\x93\xc4\xcf\xfc\xc0\xf3\x5a\xc4\x87\xc4\x9b\xa0\xbb\x3e\xbe\x8e\x1f\xc1\x5b\x29\x4c\x5b\x3f\x70\x95\x52\x84\x38\x3e\x76\x1c\xbe\x1a\x3e\xa1\xe9\x3d\x42\xdc\xe3\xf1\x37\xd3\x7e\xd5\x65\xca\xc1\x77\x2a\xad\xf0\xe8\xe5\x5b\x35\xf9\x0e\x54\x41\x3d\xc4\xe9\x33\xa2\xe4\xcb\x7b\xe5\x23\x60\xc8\x76\xc1\xe8\x32\xfc\xac\xa3\x49\xcf\x10\xdf\x8f\xea\x3c\xe8\x5f\x5e\xd2\x7d\x1e\x7c\x6e\x6c\x2f\x1a\x8f\x31\xc7\xc5\xfc\x1d\x59\xd8\xe3\x38\x9c\xe8\x8f\x9b\xdc\x0c\xb5\x30\xcf\xf6\x7c\xcc\x4c\x64\xb7\x04\xb7\x71\xab\xb4\x4d\xbb\x85\xb1\x2b\x62\x48\xfb\x84\x74\x51\x10\x78\xfc\xf2\x85\x97\x5f\xc0\x7f\xdb\x87\x84\x2c\xad\xc0\x18\xde\xf0\x82\x62\xf4\x27\xec\xc0\xc0\xe4\x2a\x77\x51\x98\xf4\x23\xc8\x05\xe8\xce\xad\xba\x63\x1c\xc3\x2a\xb2\x2f\xf3\xd7\x6d\x7a\xbf\x8b\x84\xd5\x65\xf8\xc7\x19\x5a\xec\xa6\x20\xf2\xd2\xc7\xf0\x3f\xdc\xb2\x5b\xe1\xc2\x56\x91\xe3\x60\x0b\x02\xce\x81\x9e\x2b\xb5\x47\xed\x98\x41\x5f\xdb\x83\xec\x75\xa7\x35\xa6\x52\xb9\x4c\x99\xd0\xa3\x3b\xb5\x46\x1a\xa2\xb6\x75\x14\x8a\xe1\x0f\x06\x72\x74\xc7\x8d\x94\x79\x55\xec\xa8\x55\xfc\x15\x67\xf9\x21\xbc\x81\x63\x2d\xf2\xef\xef\x96\xcf\x6a\x3a\x97\x97\x16\xe3\xd1\x3f\x6a\x33\xcb\x3a\x66\xa4\x4c\xe2\x83\x90\xbf\x51\xe8\xb2\x2f\x47\x35\x9e\x85\xeb\x4f\xc8\xea\xd9\xa6\x7c\x08\xf8\xfe\x83\x2d\xfc\xcd\xa8\x8b\x8a\xe9\xd6\x0f\x0a\xbe\xc8\xd2\xc0\x27\xf2\x1e\x87\xcb\x56\xb5\xc4\xaa\x32\x61\xc2\xb3\x37\x37\xfb\x85\x91\xda\x1b\xc1\x31\x51\xf6\xd9\xd7\x75\x22\x4e\x23\x99\x8c\x8f\x3a\xce\xe3\xe9\x0d\x5c\x0b\x8c\xe7\xce\x13\x7b\x64\xc0\x6f\x20\xc2\xd9\xc0\x1b\x47\x09\xd1\x4f\x46\x97\xe0\x96\x75\x6c\xee\xd6\x49\x72\x7e\x5a\xa3\xbe\x8a\x87\xcc\xae\x1c\xa3\x59\xb3\x62\xb0\xf0\x87\x35\x52\xff\x7e\x52\xd7\xda\x22\x25\xcc\xfc\xa6\xce\x07\x29\xb7\x09\xbc\x16\xc3\xa8\x06\x07\xe4\xeb\x26\x3f\xe1\x37\x21\xee\xf3\x20\x5c\x76\x87\xbe\xaa\xad\xc5\x02\x46\xf9\x6f\x39\xb6\x83\xdf\xb4\x9b\x1d\x93\x1a\xd5\x56\x31\x91\xde\xcc\xa3\xeb\x5b\x2c\x05\x2b\xc9\x52\x35\x5c\xb5\x3d\x01\x7b\x22\xc7\x54\xb1\x1c\x99\xd3\xcf\x29\xb6\x4e\x18\xa8\xac\x1c\x66\xfc\x4d\x4b\x1b\x41\x72\xc7\x04\x8e\x5a\x5d\xfa\x81\x70\xc4\xb8\x64\x32\x88\x2d\x5f\x69\x2f\x8e\x68\x50\x15\xa3\x07\x1b\xb1\x36\x14\x0c\xa8\xa6\x1e\x55\xea\x3f\x8b\xc2\xe8\xc3\x1c\x9b\x12\x28\x15\xee\x3d\x99\xfd\xdb\x5a\x86\x43\xa2\x1b\xf9\xff\x28\xfb\xfa\x70\xab\xaa\x3a\x7f\xce\x4b\x44\x88\xc8\xeb\x15\x11\x09\x09\x91\x84\x73\xbd\xf7\x02\x97\x8b\x11\x09\x22\x22\x22\x87\x41\x43\x23\xc6\x5c\x67\xef\x75\xce\x5e\xf7\xec\xbd\xd7\x66\xed\xbd\xcf\xb9\xf7\x0e\x11\x92\x91\x99\x1a\x21\xe3\x98\x99\x43\x64\x0c\x31\x64\x46\x64\x8c\x31\xa6\xc4\x38\x66\x64\x0e\x99\x99\x91\x99\x99\xe3\x38\x0e\x99\xe3\x10\x63\xdc\xdd\xef\xd9\x6b\xad\xbd\xd7\xda\xdf\x73\xe7\x8f\xdf\x3f\x3d\x4f\x02\xf7\x9e\xb3\xf7\x5a\xdf\xd7\xcf\x8b\xbc\xae\x7f\xb9\x49\x9d\xcf\xee\xf6\x85\xf3\xe3\x7f\x74\x13\x38\xe3\xc4\xf5\x03\x8c\x92\xbe\x38\x77\xcf\xab\xf0\x8f\x49\x40\x04\xc2\x2b\xfe\xe3\xb5\xcf\x64\x3b\x52\x1b\xd5\xf1\x90\xb8\xc1\x47\x77\xa5\x09\xb4\xce\x87\xf6\x59\xe1\xc1\xc5\x62\xbc\xdb\xb4\x84\xcc\x55\xf6\xdf\x6e\x3d\xae\x11\x78\xe3\xe3\x39\x79\x3f\x54\xd0\x08\x10\x51\x21\xb8\x38\x7a\x9e\xc6\x84\x08\x2c\xcc\x5f\xeb\xea\x06\x58\xc9\x58\xb4\x99\x32\xc4\xaf\xdd\x97\xcc\xa4\xf0\xc6\x50\xe2\xb5\xfe\xf6\xa8\x7a\xd9\xa5\x92\x8a\x1f\x1d\x2b\xa0\x7c\x0e\x3f\x65\x12\x9a\xf5\x4f\x55\x38\x18\xf5\x83\x94\x0e\xf8\x6f\xbb\xb3\x7f\x48\x3d\x9c\xba\x8a\x8d\x7a\x69\x12\x78\x7b\x21\x0b\x92\x18\x3c\xf6\xf9\x73\xb5\xc9\x68\xc0\xe9\x84\x2e\x0e\x59\xa9\x1c\xfd\x70\x15\xf4\x9a\x6a\x70\x87\x7a\x31\xc3\xfc\xde\x18\xd8\x6b\xf2\x07\x25\x89\x08\xe5\x2e\xd1\xa9\xaf\x24\x0e\x76\xb1\xae\x49\x7a\xed\x25\x8a\xb9\x93\x3a\x4a\x14\x4e\x6f\xcb\x56\x33\x4d\x46\xe4\xe6\x5a\xed\xc6\x6f\x1d\xad\x25\xe8\x90\xb4\x4a\xd7\xe7\xee\x7a\x5a\x67\x18\x85\x71\xa1\xc2\x75\x46\x5e\x99\xa6\x03\x8a\xae\xb8\x62\x76\xf2\x43\xb5\xfb\xf2\xe1\x55\x9a\x8e\x9d\x85\x5c\xe4\x21\x21\xc6\x5e\x38\xa9\xe9\x87\x31\xec\xd6\x79\xa7\x54\xf8\xdc\xc1\xec\x9d\xe0\xfe\x31\x02\xcb\x27\xc7\xd1\x13\x81\xe4\x4e\x22\x8a\x20\xdd\xba\x0a\x6f\x5c\xae\x41\x33\xa9\x5b\xeb\xd5\xf8\x5c\x85\x25\xa7\xb3\x03\xb5\x80\x08\x74\x43\xfe\x82\x95\xf0\xde\x04\x98\x35\x08\x6e\x8a\x49\xf7\xb7\xc7\x48\xfd\x3a\x77\x63\x98\xd8\x93\x15\x6f\xda\x02\xd5\x5d\x70\x1d\x27\x86\x6e\xc5\xb9\x67\x74\xd5\x00\x92\x08\x9c\x7e\xf7\x5d\xb5\xd1\xd5\x85\x94\x7f\xf9\xb6\xaa\xad\xa4\xea\x25\x1f\x5d\xce\x79\x5d\x64\xbf\x8a\x70\xd8\x2a\xdc\x0d\x50\x96\x15\x8c\x8c\x44\x5d\x38\xed\x36\x0e\xb5\x4b\xf3\xe7\xce\xb9\x9c\xbd\xbe\x3c\x55\xa3\xac\x73\x28\x21\x8f\x54\xcb\x4f\x65\xdb\x80\x00\x1b\x96\x4b\x6d\x5a\xeb\x1f\x8a\x32\x9c\xdf\x2b\xaa\xcc\xd2\xca\x38\xe1\xb6\x24\xfb\x87\x0f\x68\x92\x52\xb2\x5c\x7d\x12\x68\xb3\x62\xb3\x86\x67\x8b\xf1\xdd\x04\xa1\xcc\x57\xba\xc2\xc6\xac\xd5\xb8\xe3\x0b\xa3\x40\x52\x24\x35\xa9\x39\x11\xbd\x7e\x46\x49\xfb\x70\xe0\x7e\xee\xad\x47\x44\xbe\x59\x8b\xcd\x26\xa5\x29\x6b\xe3\xd5\x91\xd2\xa6\x20\x59\xec\x97\x07\xf3\x4f\x9c\x48\xe1\x32\x28\xb0\x33\x99\x62\xea\x3b\x69\x57\x52\x45\x15\xed\x62\x8d\x06\xe8\xc5\x01\xc4\x50\x8d\x0e\x20\xc5\xa6\x6b\x83\x7e\xa1\x71\x1c\x90\x30\x9b\x19\xc0\x47\x44\xea\x59\x0f\xe6\x7f\xb7\x5e\xe4\x4d\x64\x93\xba\x80\xf4\xde\x7e\x63\xf6\xc7\xc4\x5d\xbf\x29\x19\xfa\x17\x8d\x39\x4f\x47\x71\x7b\xd8\x08\x84\x0f\x78\x7f\xa9\x1c\xfd\x76\x4d\xfa\x76\xab\x36\x4d\xae\xfe\x7f\xcc\x94\xc2\x2c\xd8\x16\xd6\x1d\xf1\xef\xf8\xd7\x1d\xe0\x8d\xf4\xa7\xac\xdf\x61\xbb\x41\x95\x6c\x84\xb6\x17\x50\xa9\x11\x50\x9c\xfc\xd0\x5c\x8e\xb2\x4c\xaf\xfb\xa2\x6a\xe8\xf2\x9f\x3b\x8d\xff\xf7\x69\x28\x98\xd6\xd1\xd7\x53\x31\x71\x87\x39\x6f\xf1\xec\xa5\xc9\x21\x5b\xf2\x98\x14\x7e\x32\x90\xed\xc9\xe4\xbb\xe3\x4d\x5d\xf7\xa8\x8a\x13\x67\xf9\xdc\xc9\xb6\x51\x32\xad\xa0\x40\xe0\x9f\x8e\x68\x13\x44\xcd\xda\xed\xaa\x17\xc1\xd8\x07\x05\x03\x99\xc9\x6f\xf1\xd1\x09\xfa\xcc\xde\x90\xfe\x31\xd1\x47\x4c\x51\xbe\x5d\x1d\xf8\xb8\x4e\x18\x49\xde\xe1\x3f\x75\x00\xb7\x01\x4e\x74\x91\xdb\xee\xe8\xc1\x45\xd9\x39\x96\x13\x1a\x56\xdc\x37\xa2\x7e\xb9\x3a\x1d\x2c\xfc\x5d\x45\x3c\x6e\x0b\x23\x16\x54\x85\x1e\x73\x11\x1d\xd2\x64\x02\x88\x43\xa4\x11\x56\x73\xbf\x9a\x05\x18\xa5\xce\xb9\x1c\x04\x76\x43\xe3\x83\x20\x9d\x38\x3c\xae\x61\xa9\xd2\x95\xbd\x21\xdf\xdc\x3f\x2a\xa9\x99\x30\x17\x9f\xff\xd2\x25\x69\x41\x5d\xc5\xbc\xf5\x5c\xaa\xad\x3c\x38\x12\x9b\x3f\x51\xe3\xfa\xec\x57\xf1\x84\xed\xa6\x39\xbb\xe4\x4a\x64\x6d\x71\x58\x1f\x98\xff\x90\x80\x0c\x60\x57\x4e\xcd\x0b\xdf\x7d\x3b\x03\x6c\xe1\x73\x52\x22\x17\x7f\xe0\x78\x21\x49\x80\x2e\x0f\xe6\xd9\xbd\x30\x09\xf7\x72\xa0\xb5\xc8\xa5\xd1\x1a\xb8\x96\x96\x8a\x52\x71\x16\xce\xff\xe3\xee\xb1\x5a\x32\x6d\x50\x21\xfa\x73\xf7\x49\x55\x34\x74\x76\xc9\xba\xed\x9f\x34\x55\x0a\x0b\xf9\x7a\x4c\xec\xd9\x04\xd5\x4b\xa9\x13\xff\x16\xa9\x82\x75\x60\x0f\x4c\xbc\x46\xa0\xdc\x39\xff\x7b\x24\xb4\xa0\xf7\x7d\xa5\xdb\x90\xfb\x7d\x9f\xb8\xcd\x6b\xb8\x61\x4d\xfc\x5f\xd6\xbf\xad\x50\x2d\x48\x20\xe1\xbe\x76\x4f\xf6\x0d\x63\xce\xf8\x62\xf1\x67\x68\xe5\xb9\x17\xcf\x3e\x0a\xce\x1c\x75\x03\xc3\x46\x84\x09\xdc\xe3\x9a\x2b\x07\x0b\xfd\xf3\x94\x32\xbf\xc1\xb0\x49\x02\x8d\x65\x12\xcd\xbd\x15\x1c\x69\xdf\x0f\x19\xf6\x93\xef\x7b\xa7\xdc\x3b\x4a\x49\x5e\x26\x71\xc9\xb9\xff\x52\xc4\x09\x9e\xe7\x23\xfb\xd1\xd4\x3b\x3b\x6e\x69\x52\xb4\xc4\xcd\xb6\x72\xd9\x0e\x1a\x71\x6b\x14\x68\x29\x80\x51\xfe\xde\x0b\x7f\x35\x43\xce\x37\x2c\xca\x82\x52\x80\x19\xa7\x4f\xbc\xb9\x4a\x89\x70\x6a\x93\xf1\xe8\xfe\xbd\xca\x61\x2a\x8c\x53\xc8\x98\xad\x62\x78\x1d\x84\x4c\xec\xfb\xa3\xef\x3d\x22\x29\x9c\x16\x0a\x0c\x0b\x69\xc9\x3d\x7f\xd5\x74\xe5\x15\x51\x8b\x3f\xfa\x33\xbd\x13\x5b\xf3\x08\x9f\x09\xac\x1a\xd0\xd4\x02\xb0\x27\x18\x06\x0f\xbd\xae\x82\x46\x23\xee\xce\x6b\x22\x60\xe5\xf3\x0f\x68\xd1\x04\x39\x1e\x22\x35\x31\x3b\xf8\xe0\x49\x30\x44\x55\x95\xb6\x7b\x74\x74\xd2\x92\x55\x6c\xec\x94\xca\xd1\x87\x1f\xd3\xc6\x46\xa1\x83\x5c\x99\xe1\x6f\x80\x9a\xa7\xbe\xcf\x15\x61\x34\x44\x44\xbe\x7e\x5b\x1a\x08\x1b\xfa\x00\x3c\xb7\xea\x54\x02\xd1\x0b\xb8\x56\x2f\x1f\xf9\x7f\xfc\x9e\x56\x6b\x5d\x3b\xad\x4d\xf7\xed\xd4\x64\xbc\x30\xe2\xe2\x5c\xf9\x2d\xcf\xa6\x4f\xde\xe4\x9b\xa5\x76\x0f\x74\xb4\xa1\xed\xa1\x4a\x02\x06\x3d\x33\x52\xe7\xbf\x48\x18\x74\x42\x8a\xfc\x7d\x87\x46\x60\x67\x48\xfa\xc6\xe5\xeb\x20\xc6\xfa\xa8\x56\xd3\x0c\x90\xda\xee\x82\xfc\x1c\xbb\x5f\x34\x88\xbe\xb6\x77\xe8\xc7\x88\x09\xcd\xf4\xe5\x8f\x8f\xd1\x1a\x61\x5f\x38\xe7\x5d\x37\x4c\xf3\xe0\x0a\x7d\x8b\x51\xea\x08\x1d\x92\xcb\xb2\x94\x29\xab\xbf\x46\xb0\x8b\x87\xb2\x0d\x7b\x19\xb8\xbb\xf6\x23\xb7\x2e\xc3\xb0\x5a\x3c\xac\xdb\x3c\x0b\x86\x6b\x2f\x0c\x30\x1b\x12\x47\xb9\xe1\x70\xb6\x66\xab\xa1\x0a\xb6\x6d\x02\x94\x5d\xf6\x8f\x13\x57\x65\x15\x75\x4d\x9a\x34\xa2\x25\x10\x96\x1a\x5c\x7a\x30\x49\xda\x77\x4a\xc5\x91\x35\x61\xc5\x26\x46\xa9\x1c\xfd\xf4\x7e\x15\x9c\xe3\x47\xa5\x9d\x94\x23\x7b\x81\xc1\x70\xa5\x41\xb8\x1e\x89\x18\xd4\xe5\xcf\x7b\x5e\xd3\x7d\xc6\xac\x4a\x99\x23\x0d\xa4\xff\x4a\x14\x6b\x36\x76\x4b\x9d\x3d\x2d\x8f\xab\xf2\x9a\x7a\x3b\x03\x98\xb8\x88\x6f\xae\xe9\xa6\x56\x3d\x73\x9b\xa4\x8a\xe5\x47\xdb\x41\x74\x8b\xdb\xbe\x38\xb6\x18\x89\x10\x46\xf1\xf6\x27\x41\xe1\x15\xf7\xef\x9c\xa2\x97\x14\xf3\xa5\xed\xd9\x1f\xd2\xa0\xb6\x87\x33\xe3\xd5\xe2\xb5\xb2\x0a\xc2\x0e\xd7\xde\x16\x0c\x9b\xcf\xdf\x94\xf6\xb6\x26\x0b\x5b\x10\x9f\x63\x94\xa6\x84\x8f\xb8\x73\xfc\x55\x27\xd3\x70\x55\xd3\x60\xf6\xd1\x3f\x80\xa9\x4f\xe2\x22\x2f\xc6\x4d\x17\x6d\xcd\xbe\x75\xd9\xe5\x80\x7d\xe5\xe7\x80\x32\x65\x62\x56\x23\xeb\xae\xea\x72\xcd\xdc\x10\xb1\x54\xab\xae\xf0\x2b\x4f\x93\x96\xb9\xd8\xa4\xae\x10\xa0\x1b\x2c\xac\x78\x17\xd2\x6d\x1a\xd8\xa6\x9e\x83\x93\xda\x33\xf7\x58\x15\xb8\x8a\x5b\x18\x05\xa9\x8e\x77\x71\xfc\x56\x6d\x55\x81\xa5\x32\xd8\x13\x72\x57\xee\x84\x76\x40\x3c\x0e\x53\x0e\x39\x13\xb3\x3e\x52\x83\x04\xe0\x06\x16\x1b\xc6\x0f\xcf\x3b\x57\x03\x79\xbb\x94\xa1\xe4\x93\x47\x1f\xbc\x4c\xf9\xe0\xcf\x2b\x95\xca\xd1\xc8\x9d\x13\x75\x1d\x04\x62\x13\xa9\x75\x1e\x0c\x64\xa3\x6b\xfb\xdc\x8e\x0e\x39\x51\x7b\xee\x84\xda\x70\x21\x83\x51\xb7\xdf\x69\x69\x49\xda\xc7\x8c\x96\xbf\xbf\x52\xb1\xc5\x26\x77\xf9\x28\x71\x1c\x9a\x24\xb0\x4c\x86\x04\x89\x64\x58\xaf\x90\xc2\xbf\xd2\xb6\x5b\xd7\x8f\xbd\xef\x68\x8e\xcc\xb8\x57\x8a\x34\xd4\x80\x22\x59\x9c\xc4\x5d\x09\xe8\x7c\x43\xc2\x0e\xd7\x70\xe9\x42\x37\x19\xf1\x16\x5c\xb8\xce\x40\x5e\x10\xb2\xc4\x89\xb7\x6b\xa4\x68\x88\x3c\xd4\x3a\x64\x1b\xcc\x5f\x6a\xa5\x07\xd0\xa7\x0d\x75\x00\x6f\x33\xd3\xd2\xdf\x21\xf2\x37\x45\x37\x6d\xcd\x88\x0b\x35\x45\x78\x9d\xa4\x45\x6c\x7a\xb1\x8b\x91\xb6\xf8\xcd\x4d\x3e\xad\xaf\xbe\x7d\x2e\xea\xc3\xcf\x70\x6e\x93\xa6\x03\xe5\x9a\x8c\xf0\x9f\xb5\xbb\x2a\x5a\xae\xa5\x57\x5e\xbd\xf2\xea\xd5\x57\x25\x45\xf4\xe7\xef\x51\x23\x63\xa9\x2e\xcd\x25\x11\x2f\xcf\x5e\x53\x97\xb8\x81\x55\x62\x71\x54\x4d\xe4\x61\xaf\xba\x5f\xfb\xc8\x88\x49\xdf\xeb\xb6\x47\xb3\xe7\x54\x3a\x3c\x4b\x35\xca\x1e\x2b\xfd\xee\x1b\x79\xa0\x8b\xbf\xfb\x1b\xa6\x7a\x5d\x66\x13\xb1\x2a\x0f\xfe\x87\xb4\xf9\x67\xdc\x9c\x06\xd4\x2d\xd5\xa8\x60\xee\x5d\x7e\xa3\x3c\x12\xd8\x36\xa8\x93\x18\x8f\x6f\x3f\x1f\x94\x7b\xcd\x92\x27\xe9\x5e\x7c\x08\x1e\x8d\xd1\xb6\x6e\xc2\xa8\xab\x70\xb5\xd4\x8e\x5a\x46\x6d\xca\xb0\x8e\x77\xd8\xf4\x98\x96\x10\xa9\x8d\x0d\xe1\xa5\x3e\xac\x07\xac\xff\x90\x5d\x4f\x71\x05\x85\x5f\x3e\xdb\x62\xce\x82\x19\xe7\xa5\x0a\xda\xe2\xf1\x39\x80\xd4\x88\x19\x27\x35\x8a\x8e\xf1\x67\x2f\x67\xef\xce\xc2\xf6\x79\x09\x3c\x7f\xea\xaa\x6c\x7e\x63\xa1\x8f\x4d\xbf\x4e\x74\xe3\x85\xe2\x9c\x5e\x0d\xc3\x47\x65\xd9\x27\x7c\xd6\x5f\x18\xd5\xa6\x95\xe3\x82\xde\x2c\x9f\x9b\x31\x5d\x73\x13\xa2\x76\xe8\x72\x15\x39\x4e\x2c\x19\x31\x2e\xf9\x7d\xab\xa9\x22\x3f\xcc\x9e\xaa\x7b\xc7\xa4\x9d\x7a\xee\x33\xc0\x98\xda\x42\x89\xe5\x5e\xbe\x76\x34\x1d\xf7\x5a\xbc\x76\x54\x7c\xf4\x7f\x07\x40\x0d\x7f\x63\xa8\x2c\x08\x46\x0e\x9f\x08\xa3\x9e\xd8\x77\x8f\x7d\xa4\x65\x59\x4a\x99\x34\x04\x8a\x08\xbc\xb5\x16\x72\x6b\x38\xd9\xc4\xff\xcf\x25\x13\x74\x1e\x27\x76\x7d\x51\xd3\x15\x7e\xde\x07\x71\xbb\xd4\xd6\x64\x13\x72\xa7\xd7\xb4\x68\x0a\xdb\x9a\x37\x41\xe1\x97\xc7\x55\x1f\x43\x06\x50\x53\xd3\xcf\x2e\x5e\x10\xa9\xf8\xdc\xd3\x55\xea\x9e\xc7\xcb\xf6\x49\x93\xb5\x4f\x52\x65\xc8\x0f\x58\x68\x04\xa1\x38\x9b\xb9\x2b\x8e\x4f\xd5\x50\xd5\x98\xd5\x5a\x62\x4c\xee\x47\x92\x6b\xcf\xb0\x30\xaa\x48\xc4\x56\xf2\xdb\x46\x88\x09\x54\x67\xfb\xdc\x05\xf1\xff\xdf\xf3\x9a\x72\x43\x21\xba\x63\xd5\xd3\x0f\x67\x0b\x59\x93\xf8\xc4\x16\x68\xe5\x54\x73\xfb\x67\xd3\x45\xb0\x5d\x77\xf5\xea\xf2\x55\x6b\x97\x2c\x2b\xaf\xd3\x46\x91\x67\xdf\x07\xf4\x44\x71\x42\x9d\x29\xaf\x11\x9f\xe1\x62\xcc\x35\x15\x8b\xce\x36\xc0\x28\x60\xa8\x81\x6d\x41\x73\x45\xcf\x28\x03\x28\x8b\xa7\x4c\x58\xb2\xfc\xeb\x0b\x1a\x91\x97\x98\x9a\x8a\xd7\x4a\x4b\xed\xb4\x79\x41\x75\x9f\x98\xf7\x97\xae\x8e\x43\x8f\x90\x08\xcb\x86\x66\xef\x14\xf8\x24\x61\x9c\x22\x65\x54\xff\x9f\x17\x54\xae\x6b\xef\x8e\xbf\xff\x9f\xdf\x00\xab\xd2\xd0\xad\x4b\xbb\xc8\xe2\x5f\x69\x56\x0f\x55\x9c\xc4\xb4\xc1\x42\xbb\xb0\xda\x2e\x2d\x47\xbe\xaf\x4b\xb6\xe6\x37\x3e\x30\x59\xab\xc2\x7b\x39\x40\x4e\xdb\x53\x1f\x9e\x00\x33\x0e\x33\x95\x16\xce\x87\xcf\xa8\x0e\x35\x7d\xac\x5b\x55\x5c\x9b\x37\xbf\xbd\x93\x2b\x36\xfc\xc3\xb3\x19\x4c\x21\x46\x5c\xa8\x7b\xfc\x51\xa8\xaf\xc0\x02\x7d\x0f\x72\xf1\x18\xcd\x32\x06\xb1\x84\x4e\xf9\x57\x7b\x5b\xd9\xab\x7c\xb7\x95\xa8\x69\x7f\xef\x55\x0d\x02\x12\x4a\x5a\xda\x07\x76\xa4\xd3\x6d\x92\x98\x6d\x47\x7f\xdc\x32\x56\x46\x54\x2f\xb4\x91\xd4\x8b\xc9\x7d\x74\x58\x0b\x6f\xa1\xae\xc8\x4f\xf9\xdb\xcf\xa8\x04\x31\x80\x49\x8d\x53\x17\xfe\xe1\x66\x85\x89\x33\xc2\x20\x7e\xed\x03\x1a\xb9\x05\x57\x90\xc1\x5b\xe1\x67\xc4\xcb\x2b\x5d\x81\x1c\x13\xfb\x7e\xa8\x01\x6e\xf3\x9f\x95\xfe\x64\x1e\xa3\x7c\x3e\x27\xb0\xb3\xd7\x3d\xae\x7a\xbe\xd0\x15\x1a\x6d\xa5\x72\xf4\x8b\x5d\xea\x39\x13\x26\xe4\x79\x73\xdf\x69\x07\x92\x5d\xc8\x4d\x95\x42\xf2\xcd\xdb\xce\x85\xd1\xcb\x4d\x50\xa2\x67\x6d\xc9\x06\xf4\x1a\xe1\x54\xd2\x4c\x40\x2f\x3c\x29\x7d\xe3\x2a\xa1\x29\xa8\x8e\x85\x27\xbb\x01\xeb\x9a\xd1\x40\x28\x08\x09\x3a\xc0\xb3\xd0\x0e\xd4\x46\xbe\xcf\x1b\xaa\x04\xbb\xdc\xf5\xa6\x86\x47\xa0\xfd\x12\x6d\x9b\xbb\x64\x35\x1c\x96\xf4\x73\x31\x40\x19\xdb\xce\xda\x09\x20\x16\x01\x66\x80\xf7\x5a\x64\x9e\x86\x46\xe6\xdc\x33\x53\x5a\xbb\xcf\xdc\xa0\x41\xe0\x18\x1d\x70\xe3\xe7\xb9\xf6\x15\x51\x90\x5c\x05\x58\xb0\xa0\x87\x95\xf2\x68\x22\xb2\xd3\x36\x28\x1a\xc0\x88\xe7\xe1\xc4\xeb\x34\x77\x4e\x57\xda\x25\x60\xa7\xd2\x12\x2e\xe7\x8e\xd0\x2a\x8d\x8b\x71\x20\xc0\xfc\x5d\x87\xdb\xf4\xd3\xcb\xc5\x4d\xe4\xc9\x6f\x6a\xba\xa3\xbd\xd4\x12\x18\x9f\xcf\xdd\x05\xd3\x4b\xc8\x52\x7d\xe5\xfc\xdc\x55\xe2\x9d\x35\x29\xab\x8b\x32\xbc\x3c\x6f\x7c\xa6\x4e\x16\x2d\x77\xf4\x0b\xa9\x3a\xeb\x87\xac\x2a\x53\xf1\xfb\x1f\x39\x47\x3e\x3d\x1a\xba\x86\x78\xe3\x3f\x18\x90\x15\x31\x66\xc8\x16\x52\xdd\xdf\x7b\x47\x85\x90\x80\x56\x90\x61\xd0\x12\xc3\xb6\x54\x4e\xce\xef\xba\x71\x82\xf6\x1e\x42\xc7\xc3\x52\x52\xf9\xbc\x0d\x6a\x24\xe2\x84\x4c\x60\x9d\xe3\x3f\x38\xb9\x4f\x4c\x26\x31\xaa\xf1\x3b\xf3\xa1\xfd\xe3\x04\x3d\x3f\xf4\x0c\xe4\xcb\xc4\x1f\xad\x03\x7e\x8e\x5c\xe0\x45\xea\xed\x1f\x7a\x1c\xf8\x34\x72\x8f\x4f\x99\x3f\x3e\x04\x20\xbd\x26\x0d\x2b\x0a\x16\x5c\x78\x73\xd5\x39\xda\xd7\xf1\xda\x4b\xe5\xe8\x47\xfb\x66\x68\xd8\x6f\xb9\xe2\x20\xad\x7c\xe7\xe2\x46\xa0\xc0\x5c\xc1\xae\x61\x25\x16\x01\xc5\x0d\xde\xfb\x44\x22\xf0\x4b\xe5\xbf\xdc\xaa\x59\xe6\x23\x17\xd5\x75\x4f\xb0\x5b\xb6\x6b\x02\x95\xc4\x0e\x13\xda\xd1\xd1\xb5\x1a\xcf\xa3\xa1\x75\x80\xdf\x78\x5b\x93\x0e\x60\xa1\x5b\xaf\x86\x36\x7f\x37\x7d\xf7\x40\xb7\x33\x83\x72\x35\xd0\x24\x99\x56\x56\x68\xf4\x5f\x94\x91\x39\x5a\xb2\x09\x06\x93\x7a\xaa\x31\x59\x9c\xb8\x2c\x0b\x7c\xec\x5a\xd0\x51\xea\x9c\x8f\xe4\x1d\x54\x1c\xe2\xff\x1a\x06\xc5\x9d\x24\xaf\x37\x19\xeb\xe6\x7e\xab\x15\xee\x4d\xcc\x5c\xe1\x0a\xb1\xfe\x94\xc6\x24\x14\x79\xef\xb7\xa3\x75\xad\x67\xee\x5f\x52\x2a\x47\x4f\x2e\x12\x87\xb4\x41\x68\x72\xe4\x72\x1f\x78\x44\x3d\x3f\xa1\x4d\x24\xfe\xfb\x6d\x3b\xa5\x8d\x16\x11\x33\x90\x52\x39\xfa\xfc\x01\x55\x89\x38\x1a\x79\x22\x77\xd9\x3a\xcd\x45\x90\x86\xb6\x59\x12\xfa\x66\xc3\x56\x81\x3b\x8f\xbd\x80\x9b\x05\x48\x51\x20\x50\x3f\xd6\xa9\x5b\x4b\xc7\xad\xb9\x89\x2f\x4b\x38\x86\x85\x1b\xa9\x64\xfc\x33\x42\x55\xb9\x74\x6d\xe8\x5b\x01\xda\xa8\x9d\x83\xed\xcb\xa6\x35\x87\x5a\xd4\xe9\x33\xe9\x9f\x01\xc1\xc4\xaa\xcd\x79\x6d\xf2\xf5\x06\xaf\xa5\xf3\xcc\xf8\x57\x94\x23\xb4\x2f\x3b\x51\xe0\x61\x84\xb3\x99\xf4\x32\xec\x1b\x8b\xc0\xa0\xdb\xc6\x66\x2d\x2d\x2d\x73\x8f\x8c\xcc\xb6\x63\x8c\xa6\x4a\x9f\xe9\x89\x3c\x29\x0a\x0e\x1b\x19\x75\x64\x22\xe2\x27\xe0\xd6\x57\xa5\x0f\xda\x6a\x5a\x11\xb4\xa7\xdc\xe0\x3c\x55\xa8\x22\xbf\xae\xcb\x1c\xe5\xdf\x33\x4c\xcd\x63\x69\x9c\x67\x17\xec\xce\x7e\x7e\x33\xac\xd2\x90\x19\x1b\xe3\x8e\x46\x65\xd2\x6f\xbd\xdc\xb2\x89\x0a\x02\x3b\xb1\x12\x2f\x7c\xe0\xad\xd4\x8d\xaa\x82\x2a\x76\x3f\xef\x49\x46\xb5\x69\x59\x41\xd2\x15\xa2\x73\xd7\xaa\x5d\x61\x07\x5f\xe3\x5e\xfc\xf4\x54\x0d\xf0\xc3\xbd\x54\x60\x3d\xb7\x67\x4d\xfa\xa1\x5d\x6e\x9c\x5a\xb8\x55\xe3\x9e\x25\xd2\x6f\xb2\xc8\xa1\x33\x00\x04\x0c\x37\x70\x42\x2e\xfb\xcb\x6d\xe7\x68\xb0\x49\x0e\x65\x1d\x73\xef\x58\x6d\x02\xec\x63\x7e\xe8\x5e\xd9\xaa\xf1\x5f\xb1\x70\x77\x59\x50\x05\xa9\x99\xcb\xfb\x20\xdb\xee\x97\xf3\x8f\xfb\xf6\x6b\x7d\x13\xc3\x0d\x44\x78\xc8\x28\x90\xd7\xb2\xff\x30\x74\x91\xcb\x49\x91\x09\xd4\xe2\xba\xfd\xe2\x16\x65\xa4\xcf\xc6\xa5\xd7\xc8\xa3\x3a\xb3\xec\xae\x39\x2a\xbf\x37\x50\x40\x0c\xb1\x46\x3d\x3a\x49\x33\x2c\xb6\x6d\x6e\x75\x56\x1e\xcc\x93\x11\x6d\x5a\xae\x40\xae\x6f\x30\xe2\x89\x16\xe2\xc1\x11\x1a\x0e\xd8\xa0\xd4\x13\x62\x0b\x4e\xa4\xe4\x2b\x1c\xed\x00\xe6\x2e\x04\x96\x2b\x62\xed\x9e\xda\xa4\xe6\xdf\x77\x54\x1c\x50\x3f\x60\x28\xc0\xb5\x54\x52\x3e\xf7\x83\xb5\xa9\x16\x26\x66\x69\xe8\x18\x71\x99\x66\x7d\xcb\x70\x53\x44\xa9\xf0\xe9\xd1\x49\xcc\x15\x7f\x31\x1a\x71\x12\xe0\xc7\x88\x4f\x2a\x76\x22\xbb\x55\xec\x39\xae\x98\x86\xb6\xc6\xd4\x5b\xb2\x5a\x9c\xc8\x64\x6d\xcf\x2b\xbf\xbb\x8f\x4d\xd2\x46\x1a\xb6\x4f\xaa\x92\xe3\x58\x2a\x47\x5b\x58\x7a\x30\x43\x6e\x07\x9f\x3b\x0f\x28\x14\x21\x37\xb0\xb0\x93\x8c\xc6\xef\x9e\x26\xd6\xf9\x0b\x04\x2b\x7b\xeb\x2b\xa0\x61\x25\x06\x66\x29\xf4\xf5\x03\x00\x8c\xd9\xb9\x70\xe1\x7c\xd9\xaf\x16\xe6\xdf\xa4\x5e\x11\xd7\x14\xb5\x93\xa9\xdc\x7d\xdb\xe1\x44\xcb\xad\xc9\x4a\xa8\xb0\x60\x66\xab\x2f\xbc\x1d\x17\x02\x49\x6b\xfd\xdf\x40\xda\xdd\x60\xc8\xf1\x24\xda\xb8\xb8\xe9\xe0\x44\x0d\xfc\x94\x10\xfe\xf9\x72\x5c\x1b\xd6\x60\xe4\x07\x82\xf7\x47\xa6\x8f\xd7\xb6\x07\xd4\x0c\x79\xf1\x12\xfd\x6c\xea\x04\x55\x8e\xe9\x12\xbd\x57\x0f\x87\xed\xbb\x41\x99\x29\x3f\x7b\xfe\xba\xc3\xd9\x8f\xd6\x40\xed\x4a\xd8\xe1\x66\x06\x84\x1d\xa4\xce\x38\x3f\xb3\x4f\xe4\xd3\x9a\xaa\x86\xc5\xca\xeb\xc8\x22\x0e\xa5\xe5\xb3\x48\x88\x97\x9c\x3c\x02\x62\xb9\x11\x71\x53\xba\x74\xd0\x2d\xed\x22\x43\xe6\x51\x29\x8d\xfe\x83\xdd\xea\x1a\xb9\xb8\x29\xf4\x32\x06\x0b\x7f\xfb\x32\x2c\x43\xc4\x5c\x4a\xb0\xa5\xf0\x23\xba\xe3\x28\xa5\x71\xf2\xe2\xf5\xde\x3f\x2c\x9f\x9c\x7e\xc7\x96\x85\x71\x74\xe9\xe2\x6c\x5c\xe8\x45\x75\xc4\x02\x24\xc4\x79\xe3\x3c\x76\xf8\x29\x88\x65\x61\x8d\x74\x03\x5b\x78\x70\xe7\x74\x7d\x3e\x18\xa0\x90\xa1\x21\xcc\xc8\xff\xe5\xc9\xec\x6f\x31\x09\x90\x94\xac\xbe\x91\x90\x31\xea\x16\x32\xac\x3a\x4a\x10\xb0\xd1\x82\x67\xce\x4b\x01\x77\x2d\x23\xf9\xdc\xcf\xe7\x81\x21\xb9\xd9\xc0\xcc\x4f\x29\x64\xed\x5d\xd9\x03\xaa\xdb\x0a\x8a\x63\xf0\xba\x06\x4f\x71\xb1\x51\xe7\xb1\x70\xdd\x99\xec\xc7\x75\x29\x0b\xac\xf8\x20\x26\x53\x9a\xdf\xcc\x9c\x0e\x6f\x25\x75\x49\xe8\x03\xce\xf7\x89\x3b\xa0\xa2\x51\xa5\x42\x82\x0c\x7f\x2b\x7f\xa9\x06\xdd\x6e\x8a\xc5\x57\xa9\x1c\x6d\x3f\xa9\x94\x02\xc5\x6f\x67\xfa\x44\x2b\xfa\xcf\xad\xd2\x9a\xc9\xae\x20\x97\x64\x38\x44\x3f\x3c\x34\x56\x4f\x65\x81\x90\xfe\x7c\x01\x86\x06\x6e\x8b\x21\xb7\x2e\xc5\xfc\x7e\xa9\xeb\x8b\xb9\x6a\x4f\x79\xb0\xb8\xbe\x9a\xc5\x03\xd6\x19\x6a\x18\x16\x76\xeb\x34\xb3\xa6\x88\x1e\x6e\x00\xc0\x05\xf6\x7d\xe2\x10\x3f\x20\x86\x28\x9d\x7e\xfa\x92\x6a\x14\x2a\xd8\xc5\x55\x09\x76\x28\x7c\x64\xea\x18\xed\x94\xf7\x09\x14\xc2\xe9\x97\xb4\x85\xaa\x14\xd2\xe7\x6a\xaf\x2f\x4e\x57\xbb\x17\x01\xc8\x7f\x77\xdf\x18\x4d\x41\x6a\x61\x27\x0f\xae\x8b\x81\x8a\xbf\x47\x6d\x62\xa4\xe9\x21\xb7\xe6\x65\x9d\xbf\xe8\x1a\xc9\xb8\xb1\xf0\xbb\x55\x19\xe3\x69\xdf\x23\x46\x28\xfa\xca\xc2\xf7\xee\x03\xa6\xe0\x98\xb0\x64\x3c\x3d\x7f\x79\x76\x2e\x65\x84\xc9\x20\xb8\x79\x73\x76\x4e\xe9\x31\xd2\x27\xdb\xdc\xa7\x9f\xd2\xb5\x79\xf9\x6c\x90\xd7\xbc\xd7\x02\xfd\x14\xad\x4d\x94\x15\x5a\xf3\x95\xb1\x4a\x0b\xd0\x4b\x6e\xe8\x4f\xf7\xb6\xa9\x1d\x80\x9d\xa9\xd3\xdd\x9b\xcf\xd5\xa6\x0c\x24\xbe\x1b\x89\x8b\x7d\xc1\x68\x11\xaf\x31\x42\x7f\x76\x6f\xaf\x30\x75\x7c\x55\xd9\x82\x0f\xa4\x43\xd9\x39\x2f\x01\x4f\x01\x86\xc5\x44\xe0\xbd\x3b\xa1\x8f\x4e\x25\x4c\x2f\x8b\x29\xbd\x1c\xd6\xe2\x44\xc4\x66\x30\xbf\x7a\x8c\x66\x44\x6f\x09\xdb\xa4\xc2\x84\x1e\x00\xec\x34\xb0\x9b\xee\xbb\x46\x1e\x00\x71\x88\xd8\xd8\x35\x30\x27\x9c\x47\x3f\x7f\x48\x77\x27\x95\x16\xf0\x93\xda\xd4\x70\xdf\x41\xbd\x44\xd7\x11\xdb\x64\x67\x08\x13\x09\x70\xe2\x5f\x4e\xb4\x00\x6f\x5d\x01\x92\x12\x42\x34\xd1\xdf\xae\xcd\x82\xdc\x91\x81\x4c\xec\xf4\xf3\x1b\x9d\x0d\x79\x5f\xdf\xa4\x32\x6a\x83\x06\xb8\x54\xe3\x8e\x4e\xf1\x97\xbf\xff\x72\x6d\xa9\x42\x2b\xc4\xb0\x50\xd8\xc7\x6d\x93\xb4\x6a\xa8\x12\xf7\xce\x62\x2e\xff\xe3\xe7\xa1\x2f\xb7\x30\xe6\x11\x38\x00\x89\x3f\x7f\xd7\x95\x7a\xb7\xbc\xbc\x61\x94\xd4\xb9\x2d\xdb\x9f\xbb\xd4\x09\x88\x7f\x97\x16\x29\x0a\xff\xf8\x7c\xda\x25\xd6\xc3\x20\x73\x70\x4e\x2f\x86\x75\x56\xdc\x5d\x71\x4f\x0f\xce\x14\xba\x60\xeb\x24\xf9\xec\xcc\x16\xef\x8e\xaf\xbe\xa4\x4d\x0e\x9a\xd8\x6e\x60\xb1\x71\xa6\xb6\x59\x2a\xff\xe5\x01\x71\x18\xae\x0a\x89\x29\xed\x7e\xf3\xd3\x1e\xcb\xd2\xf3\x3f\xc8\xe9\xf9\x83\xc5\xc6\xc3\x63\xd5\xcc\x55\x1e\xf7\xe8\xab\x47\x00\x8d\x93\x61\xc7\x26\x2e\xcf\xdd\xca\xe2\x6c\x00\xb0\xbc\xb8\x5a\x55\x32\xe9\xbb\xab\x4d\x87\xa7\x2e\xbb\x7e\x36\x3f\xde\x5c\x3e\x5c\x53\xc8\x63\xa1\x23\xb7\x83\xc5\x1b\x46\x8f\x91\xf1\xcb\xa6\xae\x8c\xd0\xf3\x5f\x69\xc1\xe3\xb2\xb4\x22\xcc\x85\x8f\x4b\xa7\x62\x8c\x92\x31\xcf\x4d\x56\xf6\x33\xcd\xe7\xae\xbb\x89\xf7\x8c\x05\x34\x29\xfa\xe0\x3e\x38\x77\x38\x12\x21\x7f\x8d\x45\x6c\xe2\x79\xba\x48\x4d\xc1\x9a\xa8\x65\x61\x97\x36\x52\x6f\xbd\x63\xd3\x87\x36\x61\xc8\xe6\xa9\x6f\xed\x06\xd2\xbb\x18\x49\xd0\x6c\x71\xc9\xa2\x16\x01\x36\x13\xb3\x04\x31\xf2\x2f\xed\x59\x67\x97\xf6\x52\x39\xfa\xfa\x7a\xb5\xea\x51\x42\xeb\x7c\xae\x38\x5d\x25\x35\xd2\xaa\x6e\x1e\x5d\x1e\x88\x23\xbc\x4e\x24\xbb\xe4\xd3\x5d\xd1\xa6\x29\xca\x20\x27\x7e\x85\xff\xbe\x02\xac\xb2\x49\xcd\xe5\xe6\x7c\x09\x6a\x31\xff\xee\x09\x00\xa6\x66\xb4\x17\x1b\xc9\xa4\xf1\x9e\x53\x80\x77\x41\x7d\x99\x0a\x0b\xa7\x14\xd2\xa8\x93\x9b\x22\x7f\xe6\x69\xc5\x75\xf0\xfb\xfd\x00\x3b\xad\xb3\xfe\x37\x3d\xd1\x5d\x2c\x98\xd3\xd9\xdd\x91\xb4\x4f\x85\x2d\xcf\x4d\x6d\x6d\x02\xa5\x09\xa1\x80\xb7\x0d\x76\xa5\x3c\x69\xec\xb5\xca\x3c\xdf\x35\x2c\xfb\x03\x2c\x52\xb3\xe2\x6f\x52\x25\x36\x96\x0a\x1d\x7f\x67\x4b\x34\x67\x48\x02\x03\x89\x02\xb2\xd8\x73\x02\x92\x48\x1b\xc9\x86\xb2\xe0\xdf\x9c\x1d\xf1\x30\x1a\xd6\xf0\xec\xcb\x5a\xe2\x57\xd7\xa1\xec\xcf\x40\xdc\xf8\x52\xe8\xe2\xee\x78\x50\x9d\xb7\x52\x06\x2d\xfb\xf5\x7d\x60\x86\x80\x5d\x9a\x3d\x6c\x85\x8f\x0f\xa8\xb6\xb6\x4b\xf8\x4e\x77\x6d\x82\xea\x9c\xd8\x21\x49\xe4\x2f\xdc\xb6\x7a\xa2\x36\xd8\x45\x0d\x12\x24\xf6\x6d\x5f\x39\xae\x69\x59\xb9\x81\x24\x8b\x17\xbe\x70\x52\xd5\x0a\x06\x8b\xdb\xaa\xfb\xe1\x6e\xc1\x35\x30\xb2\x13\xea\xfb\x60\xe1\xd0\xb1\x49\x30\xb9\x34\xa4\x0b\x56\xf4\x26\x03\x83\x45\xae\x52\x9a\xe8\x38\xe5\x2d\x60\xe4\xc0\x1d\xbf\x64\xe6\x2b\xdc\x24\x45\x3f\x38\xbd\xad\x3c\x98\xdb\xf7\x8a\x6a\x61\x6c\x14\xd6\x2c\x19\x1b\x56\x54\xc4\x16\x6b\xa9\x80\x6a\xe4\x3e\xb0\xad\x65\x04\x4d\xdd\x9a\x52\x99\x79\xfa\x34\x54\xb9\x4e\x4a\x6f\xe9\xb6\x79\xc4\x53\xdc\xbe\xae\xf9\x3d\x1d\x7a\x70\x7c\x6e\x29\x74\x4d\xf3\xbc\xfe\x44\x7e\xfe\xa8\xf8\xc4\x26\x46\xb6\x5f\x2a\x47\x93\xee\x02\x82\xd4\x5c\x32\x49\x18\xe0\x27\x9b\x99\x7c\xfd\xa0\x9a\x39\x34\x70\x80\x19\x12\x2e\x2e\x4f\x1c\x49\x82\xa0\x17\x8a\x3e\x7a\xca\x33\x62\x4a\xbd\x2a\x34\x2c\x8d\x3c\x93\xbb\x68\xda\xa4\xf4\x1e\xb4\x22\x2d\x8e\x4e\x01\x85\x8a\x2d\xa7\x61\x32\x0a\xdd\xee\xe9\xd4\x3f\xdf\xc2\xe2\x18\xbc\xdf\x86\xfd\x12\x0a\x83\x54\x5a\xf6\xb6\x47\x92\x0f\x17\x10\x21\xee\x72\x42\x33\x05\x0a\xa8\xc9\x07\x04\xcf\x1e\x13\x21\x49\x9a\x5e\x0b\x1a\x66\x34\xf7\x5e\x75\xfe\xcd\xb0\x42\x5c\x97\xd4\xb9\x9f\xea\x39\xdb\x5a\x29\xff\xfc\xa2\x3f\xbe\x16\xae\x7d\xc5\x79\xf5\xe5\x35\x0e\x1e\x4e\x8f\x6c\x1d\xc7\x2f\xf0\x5f\x01\xe8\xdb\x0f\xc2\x14\xa6\x73\xfd\xcb\xaa\xb4\xf0\x38\xde\x54\x8a\x8e\x44\x77\xcc\xcb\xfe\xab\x3a\xc6\x5e\x82\x54\x45\x63\x20\x65\x85\xb8\x84\x0a\xd9\x90\xe8\x7a\x8d\xd3\x47\x1a\xc4\x26\x62\xdb\xde\xa3\x71\x0f\x0c\x0b\x1b\x96\xdb\x8f\x4a\xe5\x68\xed\x30\xa8\x7b\x26\x30\xa4\x42\x4e\xf7\xdd\xfb\x40\xd3\x4f\x02\x45\xaa\x1c\xaf\x95\x38\x56\xe8\xd6\xb8\x43\x47\x34\x5a\xf0\xe0\x4a\xdd\x9d\x2d\xeb\x94\x7b\x37\x6b\x95\x62\x80\x1c\x9e\xc2\x9b\xbb\x01\x64\x2d\xae\x6c\x31\x4a\xe4\x56\x73\x5f\x17\x0d\x5c\x69\x49\x22\xa4\x0d\xa3\xdb\x39\x87\x41\x64\x45\x76\x55\x74\x04\x89\xa8\x41\xfe\xe8\x3b\x70\xb1\x26\xc5\x10\xcb\x83\xb9\x29\x9b\xb2\x69\xd5\xf7\xb8\x29\x6b\x16\xb7\x57\x98\x67\x2a\x11\x5a\x2e\xe0\x04\xa2\xfb\xa2\xd1\x49\xbf\x11\x47\x23\xce\x07\x3c\xa2\x08\x52\xc2\xba\xe4\x8f\xab\x80\x39\x9e\x04\x97\xc7\x6f\xed\x2b\xa3\x81\x77\x3c\xb7\x63\x34\x91\x34\xb4\xcb\x8f\xb8\x0c\x9e\x21\xca\xfd\x11\x4b\xe5\xa8\x1b\xcc\x46\x52\xf5\x2b\xfe\xf5\x3e\xf1\x3c\x24\xc2\xf3\xcd\x65\x32\xb4\x28\xba\xef\x02\xd3\x17\xda\xac\xd0\xfe\x0c\x0f\x9e\x1d\x06\xc6\xe7\xd4\x36\x67\xdf\x7c\x73\xfc\xb1\x56\xbd\x9b\x96\x9d\x98\x97\xde\x69\x64\xfa\xf5\x4b\x13\x33\xad\x6b\x0d\xd5\x84\xd4\x50\xfe\xef\xae\x17\x09\xd6\xe4\xac\xea\x84\x16\x70\x8c\x69\x76\x45\xc6\xc6\x30\xf1\x40\x65\x79\xa9\x38\x87\x3d\x0f\x69\xbb\xd8\xdc\x33\x8f\xb4\x69\x7b\xc9\xd0\xe4\x36\x9b\xc2\xc8\xfd\x2f\x3b\x80\x32\x26\x37\xb7\x93\x67\xe1\x64\x15\x7a\x01\xbb\x5c\xb9\x11\xfb\xb3\x9b\x62\x10\x82\xb6\x66\xc0\xef\x22\xc9\x8b\x21\xa3\x7f\x07\x28\x03\xe2\x62\xa5\x4a\x0c\xe4\xa6\x2d\xd2\xed\x47\xc0\x64\xdb\xc3\x46\xfc\x57\x64\x8e\xf9\x9f\x0d\xd0\x5e\x85\xba\x22\x39\xbd\x9b\x1f\xab\xcd\xc4\x88\x5c\xe7\xdd\xb1\x5e\xa3\x07\x76\x71\xdf\x95\xdc\x87\x27\xa8\xaa\x7c\x08\x5d\xb6\x7f\x71\xb5\x1f\x64\x23\x03\xf3\xb1\xf8\xb2\x60\x06\x38\x26\x8e\x48\xcb\xf0\x2c\x3f\xac\xad\x03\x11\x0b\x88\x6d\x63\x7e\xb1\xfb\x7b\xb4\x99\x9d\xb0\x32\xb0\x4b\xe5\xe8\x8d\x11\x62\x67\x76\xc5\xb2\xf8\xb7\x7c\x7c\x20\x7b\x9b\x9a\xc4\xb6\x09\x72\x80\xe2\xf1\x78\x39\xa0\x76\x48\x2d\x4e\x74\x3c\x9a\x5c\xb5\x0f\x34\x85\xa1\xe7\xa5\x54\xe2\xb5\x01\x10\x85\x71\x3c\x8c\x0c\x4b\x08\x66\xc8\xc4\xff\x10\x13\xf9\x2e\x40\x2e\x1f\xfd\xe4\x3f\xff\x36\x68\x71\xfd\xba\x7c\x09\x95\x1d\xd9\xdf\xd5\xd9\x31\x67\x7e\x47\xa2\x91\x99\xff\xce\xeb\x8a\x66\x21\x0e\xd4\x9a\x69\x02\x13\xb0\x0a\x35\x61\xa1\x7b\xa3\xe6\xb7\x5b\xa7\x5e\xbf\x4d\x1b\x0a\x69\x32\xfb\x7a\x6d\x21\x86\x1d\x1c\xf0\xcc\xb2\xfc\x8c\x6e\xf2\x45\x5c\x3f\x10\xba\x9d\xf7\xb4\xa9\x91\x00\x4a\xad\x55\x26\x8f\x14\xa1\x05\xdb\xb8\x21\x06\x28\xb9\xdb\x9f\xcd\x7e\xb1\xee\x14\xf6\x75\xcb\x11\x08\x99\xc1\xae\x99\xa0\x2e\x4e\xdd\xaf\x2a\xfc\x7e\x61\x19\x17\x9d\xdb\x7d\x11\x28\x0a\x1c\x1a\x60\x7b\x36\x1c\x7d\x0e\x16\xdc\xf6\x8b\x5c\x4d\x6a\x13\x33\x11\x67\x38\xc4\x30\xf3\x44\x2a\x3d\xd9\x3a\x83\x3a\x84\xd1\x10\x20\x62\x6f\x38\x24\x05\x2b\x43\x57\xca\xa7\xac\x7b\x5d\x3b\x76\x72\xc9\xc4\x67\x22\x93\x9f\x07\x68\x1a\x6a\x13\x43\x48\xbb\xb9\x7d\xe2\x95\x7b\x21\xab\x71\xa0\xdf\x43\xdb\xd2\xa0\xeb\xa0\xb8\xb5\x23\x53\x61\x11\xeb\x71\x18\xb5\xd8\x46\xf1\x95\xdf\x01\xe9\xa2\x9c\x98\x87\x94\xca\xd1\x5f\x66\xaa\x3e\x41\x88\x3f\xb4\x42\xa9\x76\x8e\x04\xb2\x0f\xae\x18\xca\x20\x26\xc1\xd6\x85\x15\x15\x75\x75\xfb\x51\x85\x33\x22\xa3\x17\x01\x05\x91\x31\x12\xa0\xa4\x1c\x28\x4c\x79\x3a\x3d\x7a\x16\x8d\x6f\xd7\x3d\xb6\xd6\x81\x71\xa9\x6a\x5b\x58\xbd\xe6\x1e\x7b\x6d\x8c\x76\x8a\x18\x89\x93\x79\x9e\x81\xd6\xd3\xf7\xb1\x1b\x10\xbe\x53\x92\x4d\x60\xcf\xde\x73\x33\xb7\x18\x37\x84\x2d\x01\x17\x9a\x5c\xa5\x20\x32\x4d\x51\x9f\x4c\xee\x82\x15\xb3\x61\x13\x37\x95\x45\x9d\xf6\x10\x10\xbf\xc2\x2e\x71\xfd\xd0\x46\xc0\xe1\x27\xf7\xcd\x5d\x70\x08\xe1\x07\xf1\xaf\x95\x08\xbc\xef\xdf\x07\x20\x12\x36\xa7\x00\xc8\x22\xe9\x74\x0f\x94\x14\x4e\x43\xb6\x78\x6c\x95\xbb\xa0\xaf\xb2\xc0\x03\x09\x00\x7d\xfe\xc1\x69\x20\x68\x6b\xa6\xc7\xc9\x46\xe5\xd6\xd7\xa1\xf0\x3f\x2f\xd2\xc5\xcd\xd9\xb5\x5f\x45\x54\x5b\xaa\xe0\x0e\x16\x3e\x35\x45\x9d\x12\xe2\xdb\xc8\x21\x2d\xc1\x34\x7f\xe1\xa3\xe7\xb6\x44\x5d\x99\x7a\x73\x6d\x77\xa5\xdb\x0e\x7a\xb1\xbe\x92\x3b\x3f\xaf\x7c\x4d\xf8\x92\x73\x94\x86\x14\x74\x10\xab\xe3\x80\xc7\x75\x9e\x4e\x7f\xbb\xb3\x0d\x96\xf5\x54\x14\x6f\x67\x01\x78\xbe\x43\xf8\x74\xb5\x4b\x3c\xf2\x15\xaf\x5e\xf0\x7f\x9e\x15\x11\x25\x3f\xf7\x52\x36\xe8\xf6\x22\x97\x66\xc7\xe2\xd1\x9d\xef\xca\xae\x88\xb7\xc3\xe5\xe8\xaa\xbb\x2e\x04\x1d\xa9\x92\x9d\x56\x72\x04\x2f\x2e\x6e\xd3\x46\x7c\x0d\x6a\x87\x09\xc6\xe5\x5f\xab\xd9\x8e\xd6\x26\xae\x41\xb8\x92\x63\x56\x82\xfd\x37\x6f\xb5\x58\xf2\x39\x88\xbf\x4e\x71\x20\x2e\x5d\x01\x0e\x04\xe5\xf2\x63\xd2\xa8\xe3\xcd\xff\xc3\xf3\x2a\x95\x38\x2a\x47\x85\x5e\x90\xe8\x95\xa9\x5d\xe2\x03\x30\xe3\x1d\x0d\x9c\xaf\xf1\x9b\xee\x9c\x24\x85\xf8\x6c\x61\xa3\x15\xbf\xea\xce\xed\x09\x28\x47\xce\x90\xa2\x5b\x7a\x81\x4d\x30\x76\x48\x95\xb8\xc8\x96\x67\x3a\x77\xf6\x48\x50\x28\xa0\x6a\x52\xce\x7e\x6f\x0f\x28\x67\x19\xf1\xa4\xba\x76\xfe\xe7\x23\x35\x4a\x60\x68\x63\x21\x21\xf7\xb5\xbd\xaa\x87\x94\x4a\xc0\xe2\x97\xc5\x47\x7f\xf6\x01\x35\x5c\xf5\x11\xce\xc0\x0b\xbf\x3d\x05\xc8\x7c\x0b\x04\x7c\xb4\xeb\x74\x7a\x76\x5d\xa4\xf4\xb6\xa2\xdb\x34\x4d\xe3\xa6\x45\xe3\xe8\x12\x7f\xaa\x75\x47\x35\x93\x86\xb8\x8d\x1f\x33\x4f\x91\xc0\xda\x9d\x52\x39\xda\xe0\x65\xdf\x68\x15\xb9\x82\x29\x22\xf0\x6f\x85\xc6\x54\x88\xea\xe0\x3a\x5e\xa9\x44\x23\x5d\xd7\xe2\x91\xdb\x2e\x94\xdf\xcf\xdf\x0a\xe4\xee\x91\x64\x41\x44\x2b\x9e\x55\x01\xfa\xe2\xee\x0e\x9e\xfc\xcf\x5e\xaa\x05\x5c\xe4\x5b\x84\x4a\x0d\xda\xe2\x95\x80\x02\xec\xe0\x38\x6e\xf3\x9b\xb6\xd1\x03\xd2\x34\xbc\x0d\x97\x2a\x86\x67\x4d\x4f\x67\xfa\x18\x39\xfa\x45\x28\x7e\xfc\x36\x88\x10\xe6\xf8\xe8\x44\xf9\x2a\xb7\x55\x14\xef\xa5\x25\x1b\x43\xd4\x20\xad\x9a\x1f\x4f\x1d\xcd\x9e\x64\x1b\xfb\x16\x85\x13\x41\x57\x6d\xfe\x2b\xba\x66\x73\xce\xbc\x0f\x18\x0f\x70\x2c\x22\x4b\xe4\xc5\x73\x93\x97\x6b\x0a\x5e\xc4\x36\x4b\xb8\x5f\xd4\xa4\x8d\x71\x30\xdc\x62\x3b\xbd\x7b\x39\xeb\x31\x20\x1b\x4a\x69\x42\x88\xfe\xe7\x99\x22\x5c\xdc\x60\x49\x0a\xc9\x83\x9a\xc1\x0b\xa3\x88\xf3\x11\x0a\x7f\x38\x06\x5d\xeb\xc0\xdc\x29\x7f\xd7\xf5\xe9\xe9\x59\x50\xe2\xd0\xe8\xb3\x57\x7e\x10\xbc\x01\xc7\x13\x9a\x19\x43\x70\xb5\x8a\xb3\xba\x45\xf5\xc1\x49\x10\x7c\xa7\xd6\x54\xb1\x98\x30\xbd\x50\x99\x9a\x4f\x7f\x15\x0b\xf9\x5f\x7d\xf1\xb4\x18\xd3\xb9\xa1\x83\x59\x62\x32\xbb\x07\x30\x7c\x2c\x8c\xec\xc0\x4a\xb1\x0c\x7f\xdf\xde\x06\x59\x13\xc9\x58\x97\xcc\x12\x3f\x2e\x74\x03\x1a\x1a\x96\xe8\x33\xb6\xde\x04\xe3\x5b\x1c\x08\x93\x67\x1c\x75\xbf\x96\x25\xba\x09\xfb\x96\xa1\x18\xfd\xb9\x1f\xdd\x26\xa2\x51\x05\x19\xf5\xa6\x18\x66\xe6\x6e\xde\x74\x8e\x26\x15\xc3\x81\x1d\xb9\x1d\x37\x41\x91\xa8\x20\xb0\x53\xbe\x50\xee\x44\x94\xfd\x40\x35\x5a\x42\x71\x30\x93\xd7\x33\x7f\xe5\x23\xc0\x17\x2a\xae\x84\xe2\xd6\xc1\x97\x91\x9b\x97\x72\x2f\x99\x0a\x9a\x53\xa1\xb4\x8e\x5b\x5d\x31\xad\xd3\xe3\x93\xe7\x6d\x69\x3e\xb4\x85\x4a\x0f\x20\x0b\x60\xdb\x14\x23\xcc\xdc\x81\x69\x63\x95\x77\xad\x2d\xc7\x27\x5f\x9f\x0e\x56\xf5\x16\x23\x5c\x11\x8a\xe3\x15\x6e\x7c\x11\xd4\x94\x8c\x7a\x58\x0a\x1e\x9f\xf5\xa0\x8a\x00\x71\x9f\x61\x18\x48\xf8\x77\xe5\xee\xbf\x75\x12\xac\x52\x58\x3d\xc1\xc9\xf6\x6d\x80\x40\x3e\xde\xdd\x26\x9d\x78\x64\xb6\xb5\x0c\x2e\xa5\xca\xac\xd4\x70\xbc\xf1\xa6\xf1\x19\x69\x4a\x66\x0a\xfb\xe3\xea\xe8\xac\x84\x43\x83\xda\x75\xbf\x89\x6a\x78\x48\x3f\x87\xe2\xe6\x75\xea\xe5\x36\x48\x83\x57\x9d\xdf\x5f\x37\x46\x76\xb3\xa8\xe6\x52\x5f\x6c\x42\x3e\xe2\x01\xf6\x9e\x34\xe9\x92\xec\xbd\x1f\xcf\x11\xf3\xbd\x75\xc4\x08\x28\x23\x29\xc5\xa9\x07\x88\x77\xd4\x30\x65\x35\x7c\xb1\x9f\x62\xe8\xf2\xdf\x39\x08\x6d\x76\x03\x37\xae\x2e\xd2\x11\xed\x65\x8b\x75\xf3\xe3\x14\x3c\x3b\xa3\x7d\xb4\x6c\x7e\x39\x46\xb9\x54\x8e\x96\xce\x00\x36\xf1\xd4\xac\x22\x6e\x85\xcf\x23\xfb\xc9\xa3\x93\x34\x3e\x84\x89\xe3\x9f\x85\xdd\x40\xbc\xac\x07\x4e\x5c\x08\x22\x42\x85\x54\x08\x06\x32\x6f\x87\x81\x27\x00\x71\x0d\x2b\x99\xe4\x15\x66\x4c\x1e\xaf\xcf\xab\x2a\x15\x91\xba\x77\xef\x38\x47\xfb\xf8\xbc\x25\x2b\xce\x19\xa1\x4a\x1a\x8f\x32\x97\xd6\x18\xf2\x2c\xfe\x41\x1e\x07\xf2\x10\x5d\x5d\xe2\xdc\xe6\x7f\x32\x43\x44\x43\x86\x4c\xbe\xd8\xcf\xbf\x01\xf6\x50\x8e\x30\xec\x97\x55\xcb\x26\x28\x96\xeb\xd9\xd4\x41\x41\x62\x13\x33\xf9\x31\xa0\x28\x69\x18\xa1\x2f\xcd\x06\xf9\xd3\xfa\xd0\x49\x25\xbd\xd7\x59\x2a\x47\x9f\xea\x90\x04\xaf\x38\x49\x0b\x8c\x50\xdc\x6f\x8e\x79\x44\x63\x47\xc4\xbf\x78\xc2\xbd\xd9\x9b\xd7\xd9\x35\x3f\x69\x37\x7f\x3b\xa2\x25\x7f\xf1\x57\x60\x48\xcc\x46\xf3\x69\xb0\x78\xa8\x21\xe2\x4a\xe8\xf5\x7b\xd6\x66\x63\x98\x13\xfa\x38\x74\x86\xd4\x29\xba\x60\x98\x18\x31\x74\xcf\x2b\x95\xa3\x27\xd6\x29\x4c\x44\x7f\x8a\x99\xfe\xfe\x6a\xd5\x53\x0b\x25\x04\x11\x48\x7f\xba\x13\x08\xc9\x54\x24\x89\x59\xcc\x5c\x3e\x7f\x42\x53\x69\xb0\x91\x1f\xd7\xa0\xff\x52\xd1\x3c\xaa\x6d\x8c\xb9\xe2\x55\xee\x6b\x47\x5b\xbe\x2a\x51\x38\xfa\xc1\xdc\x13\x1a\xfc\x2c\x08\x1d\xca\x19\xd7\xc5\x8f\xdc\xa7\x7e\x7e\x85\xf1\xce\x2d\xda\x06\x7e\x52\x03\xbb\x41\xc8\x94\xdf\xd3\x97\x9f\xcb\xbe\x48\xbe\x69\x4f\x58\x17\x71\xc3\x1a\xec\x4d\xdb\x03\xa7\xbf\xbd\x54\x8e\xe6\xf4\x82\xe4\x83\x98\x43\x5d\x62\x20\x11\xec\x3e\x33\x59\xc3\x4b\x87\xd2\x56\x16\x0c\x0d\x1d\x14\x04\x98\x25\x64\x83\xeb\x16\xa9\x2f\xe3\x92\x9a\xc5\x05\xae\xb6\x8d\xd1\x35\x9c\x6d\xd4\x24\xf1\x5f\xb5\x1f\xcb\xbe\xe2\xb8\x13\x97\x70\xea\xdc\xc2\x1d\xff\xa7\x29\x9c\x44\xdb\xd5\x94\x71\x10\x61\x3c\x54\x2d\x19\xa1\x62\x43\x7c\x5a\x64\x6c\xc0\x8b\xc4\xd0\xd0\x45\x9c\xee\x24\x11\xa1\x7b\x9f\x52\x7f\xb9\x4e\x02\x43\x20\x30\x3f\x3b\x5c\xa1\xf2\x2a\xd8\xc8\x38\xf8\x7f\x69\x6b\xb6\xc1\xa8\x62\x66\x12\x37\x49\x9e\x0a\x70\xd6\xbd\x5f\x8c\x1d\x57\x84\x35\x0b\xeb\x9a\xeb\x93\x4e\x88\x4b\x7b\x5d\x40\x29\x3f\x61\x67\x3d\x04\x16\x5e\x4e\x05\xb1\x1a\x95\xca\x88\xaf\xac\x9c\xd4\x12\x64\xdd\x44\xc5\xa8\xff\x11\x8d\x74\x43\x1c\x1a\xf0\x80\x51\xdc\x7a\x28\xdb\x77\x59\x21\x92\xdc\x16\x95\x0e\xd7\x7a\xe7\xc8\xaa\x21\x7e\xd9\xe2\xac\x5f\xf5\x32\xb0\xfe\xe3\x9d\xe2\x10\x86\xa7\xf7\x4d\x9d\xac\x6d\x47\x5a\xae\x5b\xf7\x5d\xe3\x65\x60\x40\x2e\xd6\xbe\xfa\xcf\x9e\xd6\xec\x8a\x69\x53\xc8\xab\x4f\x7e\xa1\x4d\x39\x33\x54\x74\x5c\xd3\xb8\xe3\xc0\xdf\x9a\xbb\xe2\xcb\xe5\x2d\x91\x88\xe6\xf2\x60\x61\xfc\x9b\x13\x74\x16\xa2\x81\x93\x6a\xe1\x5b\x7b\xd2\xc3\xd1\x24\x71\x3a\x18\xfe\x90\x48\x63\x57\x9b\xc8\x4a\x34\x70\x8a\x37\x3e\x09\xd1\xb0\x26\x66\xc2\x70\x56\xd4\xa3\xff\x78\x42\x87\xde\x93\x4a\xfa\xf3\xbf\x7b\x12\x0a\xcc\xb0\xc0\x15\x30\x71\x99\xeb\xee\xb9\x0f\x4c\xc7\x06\x70\x50\xc1\x35\xda\x90\x06\x39\xaa\x22\xbd\x74\x2a\xd8\x3a\x06\x8c\xd4\xb1\xdc\x7a\xce\xda\x0e\xb8\xd8\xb8\x2f\x20\x76\x0a\x87\x19\xb5\x4d\x75\xf7\x1c\xaf\x4c\xfc\xa4\x3a\xcc\xfd\x60\x0c\x90\x72\xc1\x01\x06\x47\x75\xce\x98\x73\x61\xaf\x6b\x9b\x52\x16\xf3\xd6\x63\x69\xed\xcf\x70\x4d\xff\x47\x73\x74\x02\x83\x11\x20\x61\x5b\x94\x3f\xbf\x91\xbe\xce\xc0\xc2\x19\xb6\xc1\xde\x45\x9a\xc5\x5a\xc8\xcd\xd1\xf9\x1d\x1c\xd7\xb2\x9d\x77\x68\x80\x25\xa3\x62\x72\x11\xb4\x6d\xc4\xe6\x19\x3a\x19\x47\xdd\xd5\xa3\x84\xc9\x90\x4f\x5a\xb1\xda\x85\xe5\x5b\x94\xa1\x56\xfa\x66\xf2\x9f\xd9\xa1\x56\x49\x76\xbf\x2b\xc0\xc9\x0d\x30\x17\x9d\xdf\x99\x8c\x74\x67\x1f\x1d\xaf\x89\xcf\x05\x71\x92\x8a\xbb\xfc\x99\x97\xb7\x60\x84\x1a\xc4\x50\x0e\xc2\x83\x85\x4f\x3e\xa9\x4d\x70\x89\x5f\x25\xc2\x9b\x7e\x6d\xaf\xfa\x79\x0e\xc6\x71\x1e\xe0\x09\xf1\x0b\xc7\xc7\xaa\x91\x4e\x6a\xd7\xd9\xb1\x16\xc2\xce\xfc\x20\xf1\xb6\xfe\xaf\x47\xd4\xfc\x58\xe8\xa7\xf8\xdc\x59\x92\xfb\xf1\x3e\xf6\x0a\xe8\x2b\x25\xfd\x97\xe7\xf3\x7f\x7c\x60\x5c\x02\x54\x4d\xd8\xb6\x6b\xae\x8c\xe6\xdb\xe9\xe3\xa2\xdc\x9c\x84\x5f\x92\xcd\xbb\xb2\x5f\x54\x9b\x9f\xcb\x61\xe5\x43\x3d\x0b\xfe\xff\xb4\x9f\xae\xba\x6e\x8d\xf0\xeb\x88\xd6\xbd\xa8\x40\x1d\xa8\x9f\x47\x85\x1b\x5e\x4c\x24\x9b\x0d\xc4\x0c\xcc\x24\xd9\x7f\x0c\x20\xbb\x58\x84\x5b\x89\x1b\x09\x72\x3d\xb7\x6a\x19\x80\x47\xd9\xa4\x1a\x50\xb8\x8c\x7b\x70\x93\x26\x47\x60\x61\x22\xc4\xe6\xbe\xb1\x1a\x1c\x44\x61\x30\x8a\x45\x29\xf2\xe7\x71\x50\xbe\x56\xbd\x83\x6f\x9c\x69\x51\x0d\x0a\x70\x2d\x31\x2c\xcb\x7f\x61\x6d\xfa\x52\xdd\xf6\x84\x14\x92\x9b\x77\x24\x6d\xeb\x6b\x16\xd1\xdb\xfa\xdc\x12\xb0\x9e\x35\x29\x1f\xf3\x8b\x2b\xf9\xed\x0d\x70\xe1\xc6\x3c\xca\x12\x71\x57\xfe\x2e\x8c\x7d\x80\x92\x43\x1c\x9a\x51\xc5\xc8\xfd\xe3\xd3\xd0\xa3\x12\x57\x85\xf4\xbb\x50\xba\x5b\xb7\x5d\x81\x51\xdc\x16\xb1\xbf\xc2\xe7\x6e\x6a\xd9\x26\xd6\xe5\x8d\xcd\x07\x3d\x62\xd7\x61\x23\x56\xc3\x8c\xaf\x4a\x4b\x36\xa9\xf2\xf1\x7a\xed\x05\x4d\xd3\x5e\xca\x2b\x08\x70\xc1\xb7\x04\x2c\xa3\xf4\x51\x86\x6c\x07\xf9\xad\xf8\x97\xdf\x0f\x17\x2d\x77\x67\xcf\x1c\x0e\x14\x19\x2c\x0e\x7f\x0b\x3c\x08\x46\x51\x20\xdc\x31\x93\x67\x7c\xf1\x5b\xd9\x0b\xcd\xe5\x56\xf9\x17\xfc\xe6\xcb\xea\x93\x58\xc4\xd6\x1c\xa7\xf2\x3f\x7b\x12\x4c\x92\xe2\xfb\xa4\xb1\x43\x87\x9d\xd2\x64\xbd\xdd\x9a\xd8\xf0\x1c\x9d\x99\xc6\x3d\x97\x07\x4a\x45\x38\xff\xf6\x0a\x18\xda\x43\xb3\x3f\x09\x2c\x2b\xa6\x68\x71\x14\x87\x81\x6f\x58\x1c\x07\xf7\x0f\x27\xc1\x86\xbe\x46\x5d\x92\x00\x95\x0f\xcd\x50\x9f\xc0\xb3\x43\x61\x17\x5c\x6b\xcb\xbe\xf4\x5e\x5a\xb1\xb1\xef\xc7\x9d\x93\x4c\x23\x13\x98\x52\x09\xae\xf2\x4f\xfd\x60\x4f\x02\x7c\x30\x43\x43\x00\xce\x3f\xe1\x6a\x5e\xb4\xa9\xce\x6e\x39\x9a\x51\x04\x0a\xfe\xa8\x3f\x69\x3c\x3f\x2a\xb9\xdf\x35\x6e\x53\x17\xfd\x52\xa0\x60\x4a\xcc\xea\x0f\x2c\x87\xcb\xad\x56\x6c\xe1\x03\x50\xec\xd5\xbc\x74\x74\x03\xd5\xf5\xc3\x00\x48\x8f\x3a\x38\x39\xce\xb9\xbb\x81\x36\x27\x0d\x83\x5a\xe8\xba\x52\x2c\xf9\x85\x29\x40\x39\x42\xae\x95\x04\x97\x34\xfe\x40\x0f\x4d\x7f\x3f\xac\xa1\x98\x8d\xfd\x80\x0a\xa4\x20\xcf\x07\x4f\x3e\x39\x5b\xd3\x04\xb2\x03\x22\x7b\x27\xa9\x93\xdd\x72\x1c\x7f\x38\x12\xe4\x25\x2a\x4a\x70\x89\xc0\xfc\x7d\x43\x43\x6f\x32\x8a\x4c\xcc\xb3\x41\xfb\xad\x9a\xee\x2b\xa1\x36\xb7\x9b\xfd\x78\xf1\x6c\x79\x61\x02\x61\x2d\x92\x3f\xef\x61\x35\x41\xf0\x18\x32\x02\x62\x88\xce\x71\xd5\xc1\x6c\x88\xaa\xd9\xc4\xf1\xfc\x24\x57\xae\x8b\x24\x60\x27\x74\x84\xae\xd6\x03\xd7\xa7\xd9\x3b\x08\xeb\xda\xf8\x7b\xd3\x4a\xe9\x9e\x4d\x5d\x3f\x20\x41\x28\x31\x54\x23\x26\x80\x65\x17\x41\x25\x97\x36\xa8\x1f\x10\x39\xd6\xbe\xf7\xdd\xec\x85\x92\x88\xae\x72\xf4\x87\x47\x35\x0e\x28\x46\x4e\x9a\xbb\xbe\x3b\x01\xc2\x81\xab\x94\x39\xbe\x80\x8e\x1a\xfb\x35\x41\xba\x38\x61\xed\xde\x96\x8d\xdf\xa8\x7d\xa8\x55\xe2\xf1\x39\x3a\x36\x36\x90\x99\xeb\x17\x2f\xb5\x94\x50\x28\x08\xe5\x6f\x3a\x74\xb9\xb2\x90\xa8\x86\x5c\x01\x38\xb3\x74\xbc\x77\x9d\xe6\xd5\x84\x91\x27\x74\x2c\xa2\xa7\x7a\x34\x89\x56\xcd\x1b\x2c\x7e\x4b\x5f\xbc\x4c\xfd\x59\xfc\x20\x43\x3b\x1d\xca\xe5\x36\xf6\x26\xde\x21\x21\x0b\xb0\x2f\x61\xd6\x53\x07\x5a\xed\x4b\x49\x20\x28\x08\xbc\xdd\x9b\xbd\x3e\x99\x99\xb0\x1a\x71\x09\x92\x0e\xda\x83\xd3\x45\xb1\x2e\x27\xef\x3c\x70\x2c\x99\xa0\x0a\x8b\x4a\xc8\x1c\xcc\xfd\xe3\x72\x6f\xef\x11\x25\x6e\x7c\x68\x1a\x82\x66\x14\xfd\x7e\xa9\x8a\x75\x89\x91\x78\x85\x57\xdf\xb9\x3b\x86\x41\xfd\x90\x0a\x0d\xf9\x1e\x44\x4c\x30\xbe\xb4\x57\x13\x84\x71\x0d\x1c\xa7\xa2\xb8\xdd\xe1\xf7\xfe\xcb\x03\x17\x68\xec\x7d\xb7\x5e\x62\xd4\xb6\x75\x72\x5f\x71\x24\x70\x80\xf2\x2d\x2a\xfd\x23\xbe\x3d\x42\x03\xbe\xdb\x3e\x6e\x8a\x89\x6e\xf4\x8b\xa2\x12\xb1\xec\xc5\x15\x6c\xeb\x5b\xc0\x7c\xde\x84\xeb\x69\x92\x2e\x3c\xf2\xb7\xac\x01\x81\x00\x73\x9b\x04\x9d\x32\xf6\xd7\x87\x87\x40\x61\x06\xfd\xa5\x2a\x69\x24\x92\x6c\xa4\x5b\x93\x58\xc5\x7e\x40\x1a\x82\xd5\xf8\x29\xe0\x50\x64\x21\xc7\xc3\x4c\x91\x8a\x7f\x3e\x90\xfd\xd1\x15\x64\x31\x4c\x5c\xb5\x62\x88\x36\x6f\x56\x65\x4e\x77\xa9\x87\xcf\x5c\xc6\x89\x2e\xf1\x63\xd8\xb6\xb1\x3e\x5a\xff\x5f\xc0\xed\xe3\x43\x32\xee\xbd\x20\x53\xfc\xc9\x3d\x70\x9a\xd3\xc0\xdc\xc0\xa7\xb7\x97\x8f\x82\x7e\xf6\x02\xb0\x2d\xb1\xd0\xc6\x90\xd8\x36\x28\xfe\x73\x93\x95\x72\xbc\x89\x78\x7d\xb1\x5e\xc3\xc5\xe0\x3e\x6e\x24\x98\x58\x1e\xdd\xa7\x29\x99\x98\x18\x73\x9d\x63\xfe\x6f\x7e\x7e\x7b\x4b\x0d\xdf\x20\xae\x58\xb2\x0f\x16\x28\x58\xbd\x38\x98\x11\x53\xd7\x46\xbd\x4f\x64\xa1\x25\x6e\x7f\x40\x1c\x7e\x2e\xef\x5d\x35\x5e\xcb\x42\xa6\xef\x09\x1c\x5f\x7e\xa0\xa7\x65\x2f\xa7\xd4\x70\x72\x57\x2e\xcb\x82\xc7\x4b\x62\x48\x73\xf7\x6a\x5d\x72\x88\xf7\x47\x5c\xdd\xf0\xa5\x65\xef\xff\xbf\xaa\xf7\x14\x14\xb2\x02\xf8\xc4\x7a\x24\x08\xfc\x4a\xc8\x6a\x56\x7c\x43\x64\x9b\x77\xd9\xce\x71\xe9\x32\x4a\x7b\x89\x73\x3a\x26\x80\xea\x5b\x8e\xb5\xc6\x82\x51\xaf\x81\x79\x37\xc4\xbb\x9a\x01\x5e\xda\x2c\x95\xf2\xe8\xfd\xa6\xde\x40\x7f\x73\xb7\xea\x44\x71\x35\x2e\xd8\x38\x5b\x64\x30\xf7\xa7\x43\x6a\x42\x33\x40\x5c\x54\x2a\x47\xbf\x6e\x80\xab\x47\x02\x2c\x62\x61\x7e\x09\xe0\xb0\xbb\x62\x57\x2e\xc9\x9f\x1d\x12\x95\xbf\xba\x7d\x65\x7b\x52\xfe\xaf\x3a\xa3\x69\x93\x53\x47\xea\x84\xe6\x9a\x1a\x80\x0f\x09\x47\xd3\xf8\xe7\x77\x6e\x15\x4c\xc4\xb5\xbc\x66\xff\xe6\x0a\x55\xac\x98\x48\xb8\x81\x15\xae\x38\x03\x10\x56\xb6\x43\x79\x3d\xcd\x97\x17\x4b\x47\x69\x01\xb7\x1c\x5d\xb7\x54\xdc\x92\xc0\x22\xd2\xdb\x53\x10\x93\xf2\xe7\x6e\xcf\xfe\x94\x1a\x69\x28\x47\xc2\x7f\xde\x03\xaf\x90\x9b\xd0\x24\x44\x6b\x76\xf5\x9c\xf7\x83\xd8\xe7\x27\x9b\xe4\x94\x27\xf9\xa9\xc3\x69\x1d\x8c\x8c\x16\xbb\xcf\xfc\x5d\x97\x89\x4f\xe6\x52\x97\x61\x3f\x4e\x1a\xf2\x85\xbc\x57\x6a\x88\x49\x5f\x2d\x0e\x95\x79\xe8\x05\x40\xb2\x09\xd3\x85\x73\x74\xf7\xbd\x4a\xba\x51\x43\xa9\x45\xfb\x56\x81\x42\xdb\xa3\x41\x22\xce\x59\x7d\x19\x16\xe1\xd8\x4b\x8e\xed\x97\x67\x4a\x47\x15\x9b\x86\x9c\x83\x9d\xf7\xe7\x01\x46\x11\x23\x35\xe2\x2a\x64\x47\xf4\x8e\xe6\x45\x2c\x27\x19\xbe\x45\xf8\xf2\xe6\xa1\x39\xea\x8f\xa4\xb1\x7a\xc2\x92\x19\xb8\x44\xf7\x66\x94\xa2\xc3\xb6\xa0\x72\x74\x64\xd8\x5e\x86\xe5\x20\xce\xed\xc9\xfd\x69\xf3\x14\x8d\x70\x63\x42\x34\x64\xf4\xd5\x37\x33\xd2\x7b\x70\xfa\x74\xf2\x14\x20\x5a\x21\xc7\xe3\x1d\x6d\x7e\xcb\x3e\xa9\x97\x1c\x37\xc2\xfc\x33\xfc\xfb\x51\x75\x31\x6a\x8c\x70\xc2\xc0\x79\x7b\x80\xc9\x80\xed\x63\xf1\xef\x4f\x00\xe6\x45\x33\x0e\x98\xfd\xba\x42\x4a\xee\xbd\x4f\x65\x1f\x3a\x4f\x20\xb2\xfe\xba\xec\x21\x11\xc7\xe6\x76\x77\xcb\x1e\xa5\x70\xf9\xf3\x60\x82\x89\x6a\xd8\x0f\x90\x9b\x70\x2a\xa3\xfe\xd3\x17\x82\xd8\x34\x80\x5b\x0d\x4d\x86\x1f\x84\xcb\xb5\x38\x0b\xb3\xd9\xac\xc2\x81\x24\x13\x34\x09\xe1\x26\x46\x75\xc1\x15\x2a\xe6\x87\xcf\xc9\xfc\x2b\xae\x51\x69\xd3\x06\x11\x5a\xe0\x2d\x6d\x5d\x71\x4a\x6f\xd6\xf9\xc3\x41\xcc\x8e\xfb\x4e\x8f\xb6\xb6\x80\xcf\xcc\x02\xad\x38\x72\x39\xb3\x20\xe5\xcd\xce\xd9\x97\x0d\x40\x6e\x68\x8a\x79\x56\xf4\xc5\xc5\xca\x05\xd5\xa3\x36\x09\x88\xd1\x2a\xb4\xf1\xe9\x57\x47\xc4\xff\xea\x86\x35\xa5\x72\x74\xf6\xbd\x5a\xbf\x1e\x84\x4c\xa8\x0a\xfc\xe9\x11\xcd\x98\x11\x49\x4d\xad\xcd\xa9\x06\x7b\x23\xae\xf0\xf9\xc5\x9b\x79\x23\xb8\x78\x36\xa5\x29\x0a\xe3\x6e\xd0\x9d\x49\x74\x18\xff\xa0\x8b\x66\x9e\xab\x0d\xb9\x7c\x5d\xc5\x2c\xd7\x95\xfc\x22\x9f\xda\x69\xd9\xf7\xd5\xe3\xe3\xb4\x92\x90\xb9\x58\x4c\xf1\x6f\x09\x54\xdc\xe6\xac\x53\x19\xd8\xae\xde\x7b\x7e\x46\xf6\x04\xdc\x83\xf7\xbd\x71\x4e\x7a\xaf\xa8\x2b\xea\xbb\xe1\xbd\x9a\x00\x27\xa3\x9e\xa8\xd6\xe2\x2f\xf2\x8b\x53\xaa\x54\x43\x0d\xd2\xd0\x47\xa9\x47\x16\x6b\x48\x6b\x64\xdb\xd8\xe0\x5e\x54\xdf\x09\x94\xf6\x41\x57\x29\xfe\xf1\xe3\x1f\x4b\xb9\x4a\x36\xd7\x4a\x8a\x7e\xb0\xef\x22\x50\xd7\xb8\x75\x7f\x48\x23\xc3\x2f\x1d\x4e\xe8\xcb\xb6\xcd\x8d\x6d\xcb\x83\xf9\xd3\xbd\xfa\x2f\x76\xcd\x0a\xe2\x32\x27\xbf\x5e\xaa\xae\x65\xe7\xc2\x9e\xce\x52\x39\x3a\xb0\x5d\x0e\x8d\xa5\x18\x57\x72\xe1\x36\xbc\xda\x0a\xef\x6e\x5a\xd8\x76\x64\x85\x3a\x1c\xa8\xf0\xa5\x4c\x68\x39\x20\xec\xaa\xe8\x56\x6b\x86\xb0\x1f\xd9\x35\x5c\xfb\x58\x44\x2a\x35\x44\x37\xac\xba\x40\xc3\xdb\x59\xb4\x65\xb2\x9d\xff\xfa\x5d\xda\x8b\xac\xf8\x46\x98\xa8\xfc\xbf\x77\x96\x36\xcf\x0b\x99\x83\x5c\xbf\x5e\x2a\x47\xf3\x27\xe8\x0a\x0c\x42\x8a\xa2\x54\x8e\xaa\x9b\xa1\x84\x00\x57\x36\x91\xfd\x74\x6e\xec\x5b\x13\xe3\xff\xba\x72\x65\x8b\x27\xf2\x51\x88\xc5\x36\x0c\xec\xfb\x54\x32\x88\x2e\x7a\xb8\xc5\x01\xc5\x09\x6d\x94\xe4\x84\xcf\x8c\x54\x6d\x00\x32\x38\xeb\x20\xa1\xbc\xfe\xfe\x34\x48\xc7\x0d\x4a\x12\x2f\x85\xdc\xe6\x7b\xb2\x51\x31\x34\xc3\x1a\x6d\x68\xc4\xe5\xe8\xba\x9b\xc4\xa9\x11\x0b\x83\xf8\xca\xfd\xe4\xf6\xb4\xac\x0c\x4d\x4e\x3e\xfc\xfe\x08\x4d\x9f\xdb\x0c\x25\x92\x60\xf9\xe6\x71\xfa\xec\x3e\xf9\x3c\xaf\xac\x01\x37\x96\xf8\x06\x12\xf4\x89\xc1\x62\xc7\xe3\xd9\x13\xe9\x21\x37\xb0\x1c\x97\x7a\x08\x78\x70\xe5\x7e\x78\x70\x5c\xd2\xf0\xf1\xb2\x4e\x5e\xdd\x6e\xf0\x9c\x9a\x18\xd7\xb1\x9b\xd2\x12\xae\x19\x0d\x8a\x59\x8e\x55\x4e\x9e\xc6\xf8\x1d\xe9\xa0\xc7\xc1\x19\xa2\x64\xbe\x3a\x79\x9c\x1e\xd3\x84\xdc\x44\x34\xce\x6c\xe5\xfc\xa7\x92\xf9\xf9\x7a\xfb\x28\x59\x6d\x2d\x6f\x5f\x15\x7f\xbb\xbf\x3e\x30\x56\x4b\x8e\x92\x26\x9a\xb3\xb4\xf5\x64\x85\x06\x96\xc4\x93\x17\xa2\xe1\x50\x02\x91\x39\x72\xea\xb8\xf2\x66\x7d\xb9\x1d\x47\x43\x52\x93\x9c\xdb\x68\xe2\xf5\xe2\x85\x5d\x1b\xfa\x96\xec\x27\xaf\x78\x1b\x60\xc2\x88\x93\xd8\x0f\xe7\x16\x0f\x1f\xaf\x87\x96\x34\xdc\x11\x8d\xaf\x2e\x14\x41\xf9\x8f\x7a\xb4\x4f\x67\x56\xd7\xac\xc0\x17\x9a\xba\x85\x17\x57\xb7\xb2\x8d\x84\x59\xed\x60\xee\x0f\xcb\x12\x2b\x02\x26\x14\x87\x4b\xe5\x68\x9e\x66\x93\x13\x84\x03\x62\x4c\xbb\xf9\x46\x15\xe1\xd3\x02\xf8\xc1\xfb\xa6\x0d\x95\xb9\xb3\xa0\xbf\xa2\x3c\xa6\x42\xb1\x83\xff\xbb\x29\x2b\x74\xff\x8d\x00\x0b\x83\xb7\xdc\xb6\xcd\xd9\x12\xa1\x89\x7c\xd1\xb6\x5e\xfa\xae\x78\xc5\x2b\x85\x71\x77\xf2\x93\x37\xbf\xa5\x9c\xe4\xac\x16\xd6\x52\xfe\x1b\xdb\x34\x8b\x24\x5c\x43\xee\x40\x8b\x5f\x6c\x71\x20\x10\xa5\xe4\x47\xed\xd0\x2f\x5d\x83\x59\x32\xd5\xe8\xf7\x00\x6a\x0c\xd9\x89\xd3\x67\xee\xee\x17\xc7\x6a\xb1\x2d\x10\xbe\x70\xf9\x3d\x07\x87\x5c\xcd\xca\x35\x7f\xa7\xe6\xf9\x4c\x6d\xd2\xc0\x62\x6f\x9a\x9b\x6a\x4d\xcb\xa8\x54\x32\x01\x85\xc9\x7e\xc8\xd1\x4b\x01\x46\xc0\x13\xce\x5a\xa9\xe3\xee\x37\xc6\x4c\xd4\xbe\x29\x32\x55\x0d\xf9\xc1\x2d\x00\x45\x87\xa5\xac\x6d\x34\xff\x92\xb4\xf6\xad\x21\xa2\x09\x41\x14\x76\xaa\x8c\x16\xba\x4d\x21\xec\xea\x62\xbe\x64\x3f\xb1\x3a\xfb\xe3\x6a\x8c\x36\x25\x7f\xf6\xba\x83\xad\xd1\x15\xbb\x46\xb2\x4c\xfb\xed\x21\x38\x5c\xa7\x89\x2e\x4a\x74\xcd\xfd\xd9\x8e\xad\x54\x92\x60\x96\xcf\x9f\xd4\x45\x14\x0d\x9e\xa8\xb4\x9b\x7f\x1e\xd8\xd2\x56\xc2\x7e\x1a\x26\x84\x91\xbd\x87\x35\xc4\x34\xf5\xb9\x5a\x4c\xd2\xfa\x76\xdf\x03\x3a\x18\xe4\x54\x48\x20\x6f\xf0\xb7\xde\x00\x4e\x09\x0e\x49\xe6\x32\xc3\xd7\x4c\xd2\xf6\x51\x16\xd6\xb4\x9d\xa2\x87\x36\x67\xcb\xbe\x0c\xd8\x5e\x0c\xc7\xb3\x10\xaf\x3f\x9b\xea\x39\xf3\xd9\x27\x1f\x45\x0a\x51\xd0\x62\xc7\x51\x71\xe2\x3f\xd6\xd0\xd5\x6a\x73\xbf\xdd\xa5\xc1\x44\x9b\xb4\xd4\xe4\x14\x84\x42\x61\x92\xb2\xc4\x62\xba\x53\xf9\x56\x30\x06\x14\x7b\x75\xf9\x84\x5e\x18\x05\x57\x1a\x36\x75\x2a\x04\xc5\x6f\x4c\x56\x93\x63\x03\x55\x31\x38\xd8\xe1\xcf\x67\xb5\x60\xee\x96\xd6\xd9\xc8\x24\x0e\x51\x3a\xe6\xd1\xb5\x07\xce\x4e\x8e\x20\xa7\xc1\x46\xff\xfc\x74\x76\x1c\xd2\xb4\x48\xe0\xe2\xfe\x16\x64\x31\x3e\x93\xcd\x2d\x8c\xf6\xcb\x21\x12\xbc\xd3\x8f\x1c\xd0\xee\x51\xb5\x2a\xa5\xed\xa2\x1d\xb3\x94\xe1\x41\x0f\x37\xde\xfd\xfd\x1d\xd9\x33\xd5\xd9\x25\x74\x12\xfe\xe9\x75\x90\x85\x18\x09\x34\xa5\xfb\x6f\x77\xab\x7c\xc9\x37\x1b\x3c\xb4\x6e\xde\x9b\xde\x15\x93\xea\xb1\x6d\xdd\xb6\x89\x5a\xe5\xc9\xa5\x77\x24\x3e\x70\xc4\xd1\xec\x50\x84\x88\x2e\x3b\xff\x95\xc3\x20\xb0\xf4\xa7\xab\xc1\xbc\x3b\xa0\x80\xfc\xf2\xfe\xde\xdb\x0b\xc9\x67\x15\xce\xfb\x14\x92\x59\x8f\x66\xe3\x42\x80\x48\x13\xb9\xc2\xc4\x97\xb7\x89\xbf\x7c\x59\x2b\x4e\xe3\xee\x92\xb3\x27\x45\x84\x5b\x92\x1f\x8a\xe0\x6a\xf7\x27\xa3\xae\x59\xb7\xa9\xb9\x59\xd7\x02\x2e\x6e\xb4\x6e\xdc\xf8\xf4\xac\x18\xea\xb5\xe7\x6f\x02\xd2\xb0\x88\xd8\x62\x69\xf6\xf9\x3b\xb2\x22\x2d\x86\x15\x77\x7d\x48\xdc\x86\x74\xbe\x58\x78\xf3\xf2\xec\x0f\xe0\xe4\xaa\xf8\x89\xe4\x96\x68\xa0\x9e\x00\xd5\xa5\x97\xe0\xe7\xf6\x0f\xa9\xcc\x28\x5b\x8b\x15\x5b\xd3\xf2\x7a\xfe\x9c\x6e\x9e\x48\x17\xb5\x29\x37\xd4\x4a\x86\xe0\xe0\xbe\x39\x59\xe3\x2f\xa3\x06\x22\x36\x6f\xa4\xc5\x33\xda\xb1\x28\xfb\xc1\x16\x2c\x10\xbf\x24\x1a\xdc\x33\x51\x7b\xb0\x5c\xb5\x70\x40\x8c\xca\x2e\x39\x26\x12\xca\x75\x16\x72\x88\x12\x84\x8d\xae\x6b\x68\xff\xc2\x0e\x68\x0d\xc7\xe5\x44\xfc\x79\xc7\x9e\xd2\xad\x2d\x7c\x12\x24\x6f\xef\xbc\xc3\xef\xd7\x02\xb1\x61\x21\x86\x8c\x00\x73\xe9\xf2\x44\x54\xab\x30\xbc\x4b\x97\xb2\x72\x32\xab\xff\xc2\x17\x1f\xca\x9e\xc1\xb9\x9d\xe2\xdc\x4c\x6f\x8c\x93\x25\x8d\x53\x29\x39\x48\x6e\x83\x0a\x6f\x9c\x54\x4b\xfd\x7e\x2c\xac\x35\xfb\x33\x3f\xf0\x3d\x10\xdc\x1e\x26\xa0\xa1\xfc\xb1\x43\x8a\x69\x59\x31\x5a\x82\xdd\x81\x95\xbc\x4b\xb1\xb1\x5b\x5a\x28\x1f\x6e\xf1\x98\x9a\x61\x18\xd4\xe5\xca\x28\xc2\xa5\xa2\x78\xee\xd6\xec\xb9\x11\x0e\xf3\x62\xa5\x63\xa0\x44\xad\x34\x3f\x38\x0e\x2a\xea\x70\x4b\x32\x29\x23\xd0\x79\x3f\xfc\x53\x3e\x64\x97\x08\x9f\xd7\xdb\xdb\x86\xa8\xbd\x79\x9b\xf2\x13\x2d\x73\xf8\x36\x36\x6b\xd8\x42\x8e\xd0\x3d\xcf\xaf\x79\x4c\x9b\xae\x50\xa7\x82\x98\x80\x24\xf4\x2f\x4a\xbf\xbe\x00\x2e\x65\xbf\xfe\x07\x4e\x00\x30\xde\xc2\x05\x52\x2e\xbf\x48\x80\x92\xba\x49\x7c\xcf\x4e\xb7\x7c\x85\x07\x46\x40\xfb\x54\x96\xfa\xc5\xbf\x00\x10\xd7\x26\xad\x95\x68\xd3\x55\xe1\x2c\x77\xdd\x06\x61\x3e\x79\xad\xb1\x2c\x4e\x43\xe6\xc5\x7e\x06\x1b\xb2\x7b\xbd\xd8\x97\x2c\x27\x6e\x0d\x27\x9a\xc6\xf9\x65\xd3\x3e\x00\x3f\x51\xc0\x88\x11\x64\xc9\x41\xd1\xcd\xab\xa4\x39\xab\x83\x6c\xbb\x14\x77\x0a\x7c\xd9\xfc\xab\x47\xb3\xef\x2e\x74\xd3\x75\x97\x48\x85\xe2\xed\x3c\x36\x42\xb1\x17\xd0\x00\x66\x15\x44\x7a\x91\x4b\xe2\xac\xf1\xed\x65\xa3\x65\x3d\xe4\x87\xb6\x10\x25\xda\xb6\x22\xbd\xd3\xb4\x19\xf7\xc7\xf5\x81\xec\xcd\xf4\x42\x2e\xea\x54\x1e\x2c\x1c\x7e\x41\x7c\xac\xb2\x8b\x35\x43\xf1\xdc\x97\x5e\x6d\x15\x74\x57\xf3\xe6\xf7\xbd\x02\x94\x89\x19\x8d\x83\x4a\xe2\xae\xfe\xf9\x09\x6d\xb2\x99\x24\x3e\x67\x6e\xa6\x7c\x59\x54\x55\xdd\x9d\x13\x3f\xa7\xd0\x17\x76\xc5\xd1\x8f\x37\x6b\x99\x04\x9b\xd2\x87\xf8\xec\xc7\x54\xa2\xea\xea\x2e\x95\x23\x63\xa4\x68\xc0\xad\x7e\x8f\x1a\x4c\x34\x30\xbc\x16\x7e\x08\xd8\xd7\xa4\xb8\xa4\xdc\xfb\xba\x2f\x48\x42\x4c\xdd\x0a\xfa\x69\xeb\x9a\xf4\xbf\x5e\x97\xef\x55\x97\xa5\x2a\xfc\x2a\xca\x6e\xf9\xec\xb0\xc2\x90\x0b\xad\x4e\x86\x81\xe0\x6a\x62\x83\x98\x89\x15\x53\xee\xf7\x7b\x54\x8c\x60\x9c\xb1\xd9\x62\x68\xda\x01\xe5\xf2\xfc\x66\xea\xbc\x57\x78\x09\xb0\x3a\x84\x1d\x31\x7f\xc7\x23\x80\x92\x13\x57\xbb\xe0\x7f\xf2\x19\x61\x41\xc5\x33\x2c\xf5\x31\x2b\xd9\xfd\x8c\x18\xb2\xef\x29\x5e\xa3\x9d\x24\x5f\x44\x80\xb8\x4f\x6b\x2f\x95\x23\x02\xfd\x08\x93\x1c\x28\x4a\xe0\x95\xbb\xe4\x1e\x88\xbb\xc8\xe8\x0e\x32\x7d\x89\x40\xaf\x5c\x47\x97\x07\xf3\x81\x39\x46\x97\x75\xe4\xe5\x70\xd7\xf5\xa0\xf5\x17\x82\x35\xc9\xed\x3b\xb4\x47\xfd\x93\x38\x38\xf3\xc0\x63\xbd\x7c\xb6\xec\x1c\x6c\xc4\xf9\x7b\xb9\x1b\x81\x21\x71\xd3\x4a\x7c\x5f\xf6\x4e\x86\x0a\x37\x7e\x90\x4a\x50\x14\x97\xe7\x27\xea\x01\x94\x6f\x42\x85\x47\xf5\xa7\xd7\xea\x7b\xf0\xb8\xdb\xe4\xbf\xfa\x63\xc7\x54\x42\xe1\xcc\x02\x0c\x17\xb2\x83\x85\x65\xb7\x01\x96\x95\x43\x02\xd6\x9f\xa5\x8f\x4d\x94\x10\xe4\xeb\x3c\xea\x06\xc8\xc5\x42\xa6\x2b\x77\x89\x66\xf2\x69\x87\x7d\x21\xef\x28\xe3\x97\xfe\x97\x2e\x7d\x3e\xe7\x1a\xdc\x0a\x29\xfa\xe6\xc3\x10\x5e\xc5\x12\x1a\xd7\x27\xe6\x28\x74\x95\x90\x8f\xd7\x8a\xe0\xe2\xb8\x87\x26\x6a\x79\xd1\xc4\xcc\x21\xae\x40\x51\x7c\xbe\x47\x1b\x14\xb9\x58\xae\x2e\xe2\x6a\x70\x15\x6c\xe7\xcc\x54\x22\x64\xd7\x31\xb0\x16\xb2\x88\x8b\x12\xfa\x43\x5c\x04\x8f\xd7\x6a\xce\x3e\x82\xa8\x27\x17\x2e\x77\x5e\x02\x24\x08\x42\x8f\x43\x18\x19\x27\x1b\x26\x6f\x69\xdd\xb1\x69\x30\xb4\xf8\x42\xa7\x4e\xbb\x9a\xcf\x5d\xae\x99\xe9\x39\xea\x49\xff\xb0\x4d\x6b\x94\x43\x57\xce\x11\xbe\x22\xad\xbf\x2b\xb4\x2f\xee\xd7\x9f\x01\x63\x1b\x17\x63\x33\x05\xf3\x7e\xe9\x2e\x08\x39\xa2\x1e\xf5\x91\x9d\xec\x6b\xbe\xe5\x8d\xd7\x5a\x2c\x3e\x4a\xe2\x34\x83\xf0\xf2\xb1\xba\xfc\x9d\x10\x40\x2c\xce\x7e\x1d\x14\x8d\xdc\x89\x30\xb5\x4a\x29\x7c\x65\xd1\x04\xfd\x48\xe2\x7e\x81\x35\x1b\x2c\xde\xbe\xe7\x82\xd6\xee\x08\xfb\xca\x33\x23\x37\xe5\x71\x90\x22\x3b\xda\xbb\xe5\xe8\xc9\x1f\x29\xc2\xd9\x9a\xd0\xed\xe5\x06\x90\x3c\x4d\xdd\xb0\x7d\x82\x36\x9e\x26\x5e\x68\x4b\x9e\xf5\x9f\x6f\xcd\x02\x6a\x43\x5c\x45\x43\x36\x13\x13\xdf\xd1\x76\xae\x1b\x43\xd2\x48\xbc\xf8\xa2\xef\x76\x64\x1b\x92\x5e\xe4\xa1\x21\x79\x1b\x85\x5b\xe6\x00\x1d\x23\x64\xd4\x45\x74\xf9\xe2\xb1\x51\x49\x53\x36\xaf\xa7\x54\x8e\xf6\x07\xea\x5d\x52\x2f\x4e\x86\x7c\x02\xf3\xbd\xdb\xd5\x0b\xf0\x3d\x8c\x0d\x4b\x9c\xe5\xbf\xed\x80\xda\x29\x41\x13\x27\x4e\x36\x85\x9d\x01\x48\x67\xd4\x41\x01\x95\xab\xc6\x1c\x5b\xa1\x34\xf9\xfd\xc4\x48\x31\xb7\x5c\x42\xc4\x60\x46\xe6\x25\x61\xd4\xc2\x2a\xe1\x88\x70\x09\xbe\x3a\xb4\x6c\x9c\x3e\x51\xad\x31\xe4\xc4\xed\xdd\x3e\x4d\x71\x81\xa1\x66\x7c\x3a\xe5\xef\xfa\xb6\xf4\x96\x4b\xf7\xa5\x3c\x90\x5f\xfc\xa4\x38\xb8\xeb\x12\x82\x0b\x30\xf0\x54\x8a\x13\xc9\x2f\xfe\x3b\x05\xe2\x8b\x13\x9d\x44\x2e\x3e\x05\x05\xb4\xab\x04\x49\xd4\xd1\x1d\x40\x2c\xd3\x25\x46\xdd\x8d\x7b\x5e\xde\x61\xb1\x03\xe7\x69\xb9\xa2\xc1\xbb\x6d\x15\x58\xae\x58\x21\x55\x67\x35\x4f\xc6\xd5\x60\x44\xcb\x02\xe2\x27\xbc\xb8\x9b\x35\x07\x81\x80\x85\xbd\xc4\xb6\xf9\x51\xf6\x5f\x57\x2b\x12\x8b\x0a\x77\xcb\x67\xdd\x0f\xc0\x30\xd0\x74\x5b\x45\xeb\x8a\xbd\x0f\x8e\xd3\xfa\x04\x9b\x08\xcb\xfb\xdc\x1f\xa6\x40\x30\x95\x90\x82\x91\x4b\xa2\xb8\x9e\xee\xbb\x1f\x02\x8a\x1d\x24\xf9\x12\x9b\xa6\x82\x62\x97\x73\xc0\x38\x1c\xf5\xaa\xdb\x21\xff\xc9\x13\x8c\xdc\x44\x5f\xf4\x47\x53\x55\xc5\x22\x4c\x99\xde\x04\x2e\xc9\x15\x9b\xa2\x20\xe1\x96\x17\x50\x43\x0a\x59\x26\x44\xd5\xdc\x77\x6f\x55\x8e\x82\x2e\xd5\x9e\xb7\x7d\x87\x2e\x3c\x1e\x04\x16\x6e\xc6\x7f\x7f\xcc\xca\x16\x95\xdc\xb9\xc9\x4c\xf4\x93\x1a\x0a\xb0\x73\x5e\x47\x3b\xc7\x73\xbc\xba\x48\x73\x0c\x0c\x6d\x51\xa9\x3f\x32\x4e\xcf\x8e\x71\xfd\xee\xf3\xec\x18\x1d\x99\x96\xfd\xf1\x36\x45\x12\xf3\x16\xd1\xbd\xaa\x66\x23\x6e\x43\x4e\xf6\xac\xfd\xd3\xc0\x29\x75\x4d\x64\x63\xd1\x67\x27\x65\xd3\xf1\xdb\xdf\xaf\x93\x8e\x58\xd0\x9a\x5b\x8b\x78\xb9\x8a\xa9\x16\x6e\x92\x80\xef\x2f\x67\x0f\xd3\xe4\xfa\xa9\x89\x99\x34\x1f\x2c\x58\x2f\x4a\xce\x02\xc7\x17\xc7\xa5\xf5\x6b\xe0\x30\xfa\xdc\x0f\x9e\x73\x59\xff\x74\x30\xbd\x28\x7e\x10\x26\x31\xf2\xdc\x5e\x91\xa9\x4d\xe2\x23\xe6\x20\x47\x7e\xa3\x2f\xde\x77\xbe\x8a\x39\x12\x3e\xa5\xf7\x79\x9f\xed\xd1\x6c\xc6\x10\xab\x86\xf1\xe7\x9c\x5e\x1c\x9d\xb6\x3d\x58\xc4\xa8\x3e\xfb\x1c\x79\x95\x58\x83\x70\x24\x63\xe4\xec\x17\x57\x7c\x61\x77\xfb\xdc\xf8\x33\x5f\xbb\x19\x8c\xca\x43\xc7\x93\x04\xff\xf2\x06\x55\xb8\xd1\x30\xa8\x51\x15\x3f\x0a\x9e\x90\x03\x2b\xad\x45\x04\x3a\x9c\x0f\x16\xf6\x2c\x57\x1b\xa3\x3a\xf2\xbc\x16\x61\x9f\xe2\x67\x77\x03\x55\x92\x80\x54\x6d\x2e\xb2\x1f\x7f\xec\x1f\xbf\x9c\xe0\xf0\x42\x37\x60\xfd\xdc\x66\x26\xce\xe7\xc3\xd3\xed\xc9\xa5\x35\xee\x85\xb9\x62\xf1\x64\xd8\x34\x68\xd2\x25\x79\x03\x00\xc4\x05\x7b\x54\x8c\x3e\xee\xbf\x64\x68\xcd\x61\x11\x39\x7e\xbd\x52\x3f\x09\x48\xb0\xf0\xbf\x75\xe3\x59\x49\x32\xe3\xdb\x87\xfd\xa6\x4a\x70\x1e\x36\x09\x0a\x44\x13\x51\xbc\x36\x12\xc2\xf6\xd7\x05\xd4\xa8\xeb\x2f\x2e\x3f\xba\xd8\x42\x9a\x76\xe4\x97\xfe\xdf\xa7\xd2\x5b\x68\x23\x4b\x9b\xf7\x2e\x7a\x49\xbe\x57\x14\xf8\x8e\x00\x4c\x6e\x9f\x30\x2e\x8b\x21\x10\x35\xc1\x06\x06\x62\x45\x03\xb3\xfe\xc0\x52\xbe\x58\x5f\xbe\x67\xb2\x22\xa1\x39\x2d\x7b\xbc\xe7\x1f\xd7\x7a\x3e\xc6\x90\x5b\xc3\x89\x93\x51\xae\xfe\xba\x92\x00\x09\xab\xf1\x0f\xfb\xe9\x8b\x60\x48\x6b\x23\x93\x8f\xa7\xe2\x3f\x1c\x73\xdb\x44\x10\x23\x16\x2c\x14\xfd\xdf\x95\xb7\xea\xdb\x91\x54\xf6\xec\xb8\x26\x53\xc2\xc9\x64\x54\xcc\x92\x96\x03\x2b\x7b\x46\x2b\x15\xe9\xed\x1c\x7d\xe7\x84\x6e\x21\x65\x30\x39\xd6\x1c\xcc\xfd\xa7\x0b\x61\xa8\x0e\x6e\x5a\x28\x11\x13\x2a\xcc\x5b\x0e\x51\x69\x8c\xd7\xd0\x5a\xbc\x58\xb9\x45\x9c\xc1\x35\x16\xd1\xdd\xde\xa6\x6c\x49\x55\x4d\xe2\xb2\x8a\xef\xb1\x17\xce\x01\x82\x10\xd8\xf7\xe3\x24\x29\x95\x83\x6f\x7e\xf8\x02\x59\x3c\xc4\xfd\x04\xaa\xc1\x85\xf6\x60\xe1\xd3\xb3\xb4\x51\x1e\x0f\x99\x85\x57\x9e\x52\xc0\x4c\xec\x78\x16\xf2\xf9\x00\x4b\xc5\xe6\x59\x80\x0d\xca\x91\xd0\x1a\x73\x3f\x7f\x68\xa5\x56\x63\x24\x5a\xd5\x85\xf5\x52\x69\xb6\x49\x99\x8f\x45\xe6\xfb\xb7\x75\x6a\xaa\xe9\xd2\x38\x56\x4d\x3d\x22\xbe\x3b\x32\x2c\x82\x13\x49\xb7\xc1\xfc\xb6\xa9\xea\xcd\x75\x2e\x5c\x38\xaf\xb4\x30\x6e\x90\x7f\x37\x02\x54\xd9\xd8\xae\x6a\x2a\xd2\x32\x96\xdc\x15\x64\x9f\x11\x36\x43\x21\xe9\x2e\x3a\xc8\x15\x8a\x50\xe3\xeb\x03\xf5\xe2\x0d\x47\xa0\x55\x52\x13\xb3\x6a\x68\xa7\x8e\x06\xd7\x8b\x16\xf1\xaa\xb8\x53\xd6\x76\x4f\x45\xff\x98\x0e\xb3\x09\x2c\x1b\x5b\x98\xe3\x5c\x3e\xfd\x4a\xc6\xde\xda\xc4\x8e\x78\x0c\x4b\x5d\x28\xa5\xc2\xf7\x03\x76\xd2\x2c\x3e\xbf\x03\xb6\xbf\x81\x10\x61\xcd\x9d\x75\x4a\xfd\xaa\xf9\xf3\xa5\x7a\x65\xfc\xa5\x97\x1e\x4a\x61\x52\xed\x95\x16\xd5\xf3\x8b\x8e\x8c\xd5\x9f\x3b\x11\x4a\xaf\x6b\x25\x44\x2a\x4e\x89\xa1\x84\xe4\xe5\xe6\x6e\x1e\xab\x2c\x6c\x6b\xa9\x14\xef\x8b\x10\x37\x9b\x28\xe6\xc9\xa5\xec\x56\x4d\x3f\xda\x60\x02\x7b\x90\xbb\x78\xdf\x04\xc5\x04\xd7\x4e\x7c\x6e\xde\xb8\x09\x7a\xd2\xa9\x10\x01\x75\x18\xcc\x1f\x7f\xb0\x65\x12\x8d\x02\x5c\x4b\x27\xd1\x3b\x6f\x04\x1a\x11\xa9\x5d\xee\x37\x5e\x7e\x7f\xeb\x33\x95\xf8\xf6\x24\x48\xf7\x74\x69\x10\x63\x4e\x3c\x15\x52\xa8\xc6\xc3\xe7\xab\x10\x4c\x43\x1f\x37\x49\x55\x9b\x01\xe4\xdf\x99\xa7\x19\x13\x60\x99\x23\x8a\x77\xf6\x89\xf3\xb0\x0a\x37\x48\x86\x65\xf7\x9d\xad\x1a\x78\x9c\xd8\x34\x48\x25\x2e\xda\xef\x1d\xa7\x75\x58\x2e\x6e\xf2\x8a\x3b\xff\xf2\x53\x60\x95\x46\xa9\x29\x29\xbf\x51\x8f\xf8\x25\x4b\x89\x6f\x51\x5d\x40\xe1\x57\xcb\x00\x6a\x86\x08\xf2\x08\xc7\x17\xfe\xe2\x56\xd8\xe9\x11\x61\xe3\x2d\x4b\xa7\x05\x8b\x27\x6a\xb3\xf4\xbe\x12\xee\xc3\x8e\xc7\x5f\xff\x8f\x97\x89\x08\x72\x2d\xf5\xeb\xb4\xe1\xd7\x21\xe2\x2e\xfa\x95\xa7\xa5\x2b\xca\x4c\x81\x26\x0c\xa7\x65\xab\x77\x8d\xc2\x27\x5b\xeb\xf7\x42\xec\x1d\x61\x38\x59\xfa\xed\xd9\x97\x2d\x88\x1d\x62\x58\x08\xdb\x3e\x76\x75\xb7\xf8\xc1\x7c\xef\x06\x30\x4f\x12\x41\x43\xcc\x6a\x8b\x57\xae\xc8\x7a\xfd\x56\x19\x75\x03\x12\xb7\x96\xad\xb5\x75\xce\x11\x08\xcc\xd2\x0a\x54\xe9\x47\x8c\x38\xc8\xd5\x71\xa3\x97\xae\xfe\x20\x38\x4c\x75\xea\x54\x90\x5b\x1f\x92\xaf\x7f\xf6\x6e\xd0\x83\x50\x3f\xb0\xfb\x65\x0d\xbc\xb9\x98\x26\xb3\x8b\x17\x76\xf0\xe9\xd1\x1a\x59\x88\x61\x87\x1a\x0c\x05\xc4\xe0\x87\xf0\x85\x67\xcf\x05\xbf\xd3\xc4\x92\x60\x61\xef\xca\x46\xb4\xce\x2e\xee\x33\x6e\xc9\xd9\xf7\x9e\x2a\x30\x1f\xc6\xac\xc2\x61\x85\xbc\x01\x3c\x78\x0f\x90\x9f\xe5\x30\x54\x91\xa4\xcf\x3c\x7f\x76\x52\x72\xd9\x28\x2e\xb8\x0b\xbf\x3b\x98\xfd\x2e\xd8\xa5\x61\xcd\x12\x72\xdb\x9f\xa9\xb6\x40\x21\xeb\x89\x31\xea\x9f\x5f\x03\xc0\x35\x6c\x12\x03\x89\x61\x00\x9c\x80\xd7\xf6\x48\xcb\x06\x8b\x78\xc2\x62\x24\xff\xca\x6a\x09\x38\x65\x94\x5f\xae\xdc\xac\xa2\x3e\x8b\xa8\x11\x43\x5c\xba\xc2\xa0\x95\x7d\x14\xbd\xc8\xa8\xe3\x20\x11\x3c\x29\x1c\x7a\x2c\xad\xdb\x3a\x3a\x3a\x39\xea\xf2\xed\x6c\xe4\xea\x11\xb1\xcb\x6f\x4f\x08\xcc\xb7\xbc\x29\x9e\x01\xb7\xf1\xe7\xdf\xe5\xe3\xd3\xd5\xd0\x9f\x9b\x37\x10\xb7\x66\xca\x91\x76\xbd\x5b\xd5\x26\xc4\x2f\x95\xff\x02\xc4\x9a\x39\xdd\x40\xe0\x29\xaa\xef\xea\xca\xf2\x06\x4b\x92\x5b\xee\x87\x3b\xb2\x4d\x44\xea\x65\xa0\x6f\xa3\xee\xb2\xda\x34\x68\xbf\x5f\xc7\x41\xfc\x4e\xf9\x41\x37\xdf\x02\x4d\x51\xfb\x82\x84\xcf\x5f\xb8\x0f\x58\x30\xf8\x71\x14\x54\x1c\xf7\xdf\xdf\x2e\x59\x11\x16\x36\xea\x1c\x39\x10\x3f\xa3\xa5\x4f\x29\xc1\x89\x1a\x16\x45\xd8\x4e\x2d\x54\x35\x11\x49\x44\x1e\x87\x3d\x93\x72\xe6\x1a\x5c\xfb\x23\xdd\x01\xec\x7d\x20\x2d\x02\xb0\x9f\x6c\xcd\xa6\xbf\x2a\x7e\xdf\x47\x6b\xc8\x35\x13\x01\x8a\x9c\x0d\xd4\x8c\x0d\xee\x58\x2e\x6a\xd3\xdf\x74\x81\xee\xd6\x46\x18\x38\x39\x14\xc2\x01\xe0\xe4\x80\x5d\xa8\x99\x93\xfb\x63\x31\xbb\x7b\x60\xa8\x86\x39\x34\x32\x5b\x0f\x1d\x7b\x10\x94\xf5\xb4\x89\x98\x29\x2d\xb8\xa2\x65\xef\xa8\x2a\x95\x51\xc3\xd2\xa2\x7c\x71\xe5\xab\x60\x4c\x82\x18\x23\xe9\x74\x3b\xff\xd3\xaa\x2a\xb4\x7a\xe6\x72\xba\x5c\xc7\x01\x40\xad\x19\x52\xee\x65\xce\x03\x2d\x56\xa6\xac\x86\x93\x34\x57\xb9\x5e\x57\x1e\x64\x75\x2c\xad\x17\xef\xb4\x54\x65\xb5\x80\xd7\x75\xb9\x1f\x55\x26\x6b\xd8\x14\xcf\xa2\x99\x85\x4f\xe1\x86\xbb\x34\x29\xd7\x6a\x49\x98\x1b\xbe\x30\x03\x2a\x0c\x27\xb0\x25\x9a\xa8\x0a\x45\x6d\xfb\x00\x00\x17\xa5\xe8\x8d\xfd\x77\x68\xa8\x3e\x2e\xb5\xc5\x0f\xe5\x9d\x63\x00\x55\x82\x53\x58\x52\x83\xb4\xdc\x81\x19\x0a\xdb\xe1\x12\xa3\x8e\x6d\xce\x59\x33\x05\x15\xa1\xf0\xe3\xbd\x80\x73\x42\x38\xbc\x50\xcc\xc5\x57\x6c\x4d\xc0\xf2\x57\xa4\x2e\x29\x07\xd6\xc9\xee\x49\x70\x16\x72\xa3\x8e\x40\x9a\x01\x13\x88\x4e\xe5\xe6\x50\xe8\x05\x4e\xbc\x0e\x6d\x60\xf9\x2b\x9e\x59\x05\xd2\x33\x0a\x12\x9f\xbb\xd9\x3b\x81\xa7\x23\xa3\x3e\x77\x5e\xd3\x4d\x45\x1e\x5e\x35\x46\x83\x60\x06\x82\xe9\xfc\xf8\x03\xe7\x68\xe3\xa7\x3e\x1e\x31\xee\xde\xac\x8c\xd2\xea\x1a\x0e\xa7\xb0\x65\x51\x7a\xeb\x88\x9d\x11\xa0\xca\x6f\x78\x53\x05\x2b\x3e\xb4\x34\x08\x76\xc5\x0c\xbc\xb8\xb2\x67\x82\xd2\x52\xd4\x4c\xcf\xf2\x37\xf4\x65\xd3\x35\x97\x91\x66\xc4\x0f\x52\xec\xfe\xe9\x55\xaa\x7d\xc3\x7d\x2d\x29\xef\x6f\xee\xcf\x66\x6c\x64\xe3\x3e\x14\xe7\xfc\xec\x76\x60\x6c\x1f\x14\xd2\x37\xb0\x97\xa5\x77\x34\x1b\xe7\x69\x07\xba\x8e\x33\x87\x34\xff\xfa\x2c\xc8\x5d\x33\xea\x09\x7d\x20\xbf\x50\x83\xb6\x7a\x36\xea\x97\x58\x5f\xf2\x3c\xb4\x01\xf1\x44\xf4\x2b\x5e\xbd\x37\x7b\x0e\x6c\x5c\xc1\x26\xce\x00\x29\x7f\x5a\x1c\x2b\x73\x8e\x6f\x90\x54\xd7\xe6\xcc\x7e\x15\x0c\x71\x9f\x85\x42\x51\x2b\xbf\x7b\x19\xf0\xbb\xa9\xc6\x75\x7c\x8a\x58\x18\x3e\x26\xfb\x41\x6c\xe2\x4a\x3e\x4e\x6e\x9e\x38\xb4\xd4\xc5\xa5\x26\x11\x0e\xd7\x79\x40\xfd\x13\x5e\xf8\xba\x3e\x6a\xfe\x73\x27\xcf\x51\xa5\xa3\xdc\x3c\x7c\xe5\x54\x56\x5b\xc8\xad\x51\xa3\x14\x58\xe4\xff\xd0\x16\x7a\xdf\x1b\x00\x5a\x89\xfa\x45\x76\xe0\x51\x24\x78\x75\x88\xc6\x04\xfb\xa9\x3f\x8f\xf1\xbc\x44\x0b\x84\x3e\xe1\x82\x40\x9c\xa2\xb7\xeb\x39\x40\xfb\x43\x8d\x46\xa2\xec\x5d\xb8\xe3\xe8\x28\x2f\x81\xd2\xc6\x19\x61\xd4\x62\xe5\x85\x8e\x92\x79\x74\x61\x64\xbb\x58\x7d\x2e\x47\x99\x9c\x32\xe3\x01\xb5\x52\x2d\x65\x88\x6d\x39\x53\x7a\x3a\xf8\xc8\x46\x8c\x6b\x89\xe4\xff\xfb\x24\x58\xf1\x35\xb0\x40\x8b\x4b\x95\xa9\xd3\xc0\xed\xd9\xab\x12\xbe\x20\x24\x42\x65\xa5\xd0\x76\x42\x21\x9c\x2a\xc4\xe5\x77\xff\x7f\x57\xa4\x05\x05\xb7\x4d\x8d\x96\x4f\xba\x50\x93\xda\xb3\x1b\xc9\xc4\x2c\x1b\xc4\x2f\xce\x4f\x13\xd9\x94\x61\x14\xa4\xff\x8b\x5c\xd3\xb0\x88\x6d\x32\x31\x5a\xf9\xf5\x1b\x93\x60\xee\x71\x53\xb5\xbc\x27\xae\x57\x5e\x4e\x32\x5e\x8a\x99\x58\xf6\x7d\xda\x52\xd7\xf6\x8a\xeb\xae\x6e\xa9\xb3\x26\xde\xa1\x72\x82\x49\x6b\xa5\x72\x74\xcd\xca\xa9\xa0\x4a\x23\xe0\xc6\x1e\x79\x18\x0e\x53\x16\x76\xf0\x1a\x74\xd2\x62\x35\x68\xf3\x1d\xec\xb6\xb0\x42\x0a\x7f\xda\x94\xbd\x5d\xfd\x94\x85\x15\xe4\xeb\xe4\x8d\xfc\x5f\x80\x12\x91\x61\x87\x15\xb9\xa8\xb8\xb0\x5d\x4c\xb2\xae\xae\x30\x64\xf1\x89\x51\xf2\xaa\xdf\xe8\xd0\xf0\x32\x7e\xbf\x1d\x3a\xc9\x3a\x6e\xde\x23\x2d\xec\xc6\xa6\x04\x75\xac\x3a\xa3\x4b\x40\xdb\xc8\x23\xa6\x34\x2a\x28\x5e\x2e\x4f\x31\x71\x13\x73\x0e\x9e\xa5\xb6\x8d\x49\x5b\x68\xf3\xe2\x96\x65\x76\xee\xa7\xb3\x34\xad\x50\x25\x55\x95\x31\x5c\xb8\x1d\x50\xbe\x1a\x58\xcc\x7a\xca\xd1\x63\x15\x08\x92\xe7\xe6\x4b\xa9\x52\xdf\xe3\xc1\x45\xe2\xdb\xc7\x37\xae\x74\x45\xdc\xb9\xb8\xc2\x99\x1f\x7e\x8e\xcb\xf3\x13\xb5\xca\x38\xce\xb3\x54\xf2\x0f\xea\xc0\x1e\x00\x1b\x75\x3f\xc0\xd2\x8d\x25\x79\x03\x1d\xf7\xea\xfc\x6f\x32\x30\x20\xdd\x05\xaf\xdc\xad\xaa\x05\x37\xe4\xca\x97\x09\x0d\x97\xf3\xa6\x8f\x24\x22\x74\xac\x86\x88\x18\x53\xdc\xf4\x9c\xe6\xd6\x45\xdc\x80\xe7\xb5\x05\x1e\xc8\x0c\x8e\x89\x8d\x21\x0a\xaf\x83\x7b\xc4\x8d\x5f\x4b\x6c\xac\xb1\x0d\x8a\xf3\xb7\x24\x0b\x4d\xea\xc4\xbf\xf8\xc0\xab\x69\x22\xea\x47\x2d\xbd\x44\xfe\xcc\x53\xf2\x73\xc5\xad\xa8\x68\xe7\xf3\xcd\x6e\x65\x00\x88\x07\xf4\x44\x7c\x3a\x43\xdd\x08\xf8\xed\xe7\x5f\xe5\xc5\xcd\x9a\xb5\x34\xe1\xff\xe9\x21\xa0\xad\xe8\x52\x3f\x40\x76\x8d\x6f\x97\xe2\x0f\xf6\xe9\x23\xd9\x1c\xea\x62\x52\xb3\x2a\x94\xa5\xa9\x2d\x77\xdd\xea\xb4\x97\x0e\x4a\x4b\x91\x5b\x6f\xb9\xbd\x67\xed\x00\xb2\x4f\xd4\x36\xb9\xa3\x5f\x7c\x86\x23\xf7\xdd\xb4\x1c\xa8\x56\xf5\x01\xc3\xb6\x2d\xfa\x5c\xb3\x16\xda\x88\x95\xca\xd1\x3b\xd3\x27\xc1\x82\xd4\xc3\x89\xc7\xca\x97\x23\xa5\x54\x6b\x6b\x6a\x4a\x4b\x96\x2b\xfe\xb7\x70\x19\xb8\xe6\x76\xd1\x0f\x31\x64\x12\xb1\xb3\xbf\xf4\xa6\x09\xa0\x7c\x93\xf2\xb2\x2f\xdf\xab\xd9\x19\x91\x60\x20\xfe\x95\xb6\xf0\x07\x2c\x5c\xb4\x37\xbd\x4d\x4e\xd0\x1a\xb7\x3e\xb4\x0b\x7a\x02\x89\x95\x3f\x47\x9f\x9d\xbb\x42\x24\xe1\xd5\xf1\xf9\xb3\x49\x20\x3e\xd8\xc6\x2d\xea\xb8\x99\xa8\xc1\xcd\xd8\xf3\x33\xb6\xab\xf5\x85\x49\x7c\x87\xf8\xbe\x96\x26\xa2\xaf\x4c\xd6\x66\xbd\xf6\x80\x85\x89\x00\x6f\x15\xbe\x0c\x52\x37\xde\x18\x12\x8f\x0f\x11\x79\x25\xf6\xbf\x79\xa8\x13\x18\x56\xfc\xc4\x9e\xf1\x77\x1a\x09\xb7\x8e\x1d\x8f\xb8\x7e\x9d\x94\xca\xd1\x13\x67\xc0\x73\x22\x12\xb4\xd2\x37\x0e\x34\xad\xa1\x1f\x90\x44\xa8\x76\xb0\xf0\xbb\xe3\xca\x80\x95\x63\x55\xce\x1b\xa6\x6a\x22\xe4\x06\xa4\x54\xa5\x0c\x93\x9a\xb0\xed\xcd\x55\x77\xea\x6f\x9f\x03\x6c\xe3\xff\x3c\x72\xb7\x54\xc4\xc4\x48\xb8\x9a\xe7\xe7\x2e\x07\x82\xc8\x18\xd5\x42\x29\x55\x90\xbb\xf0\x29\x50\x93\x23\xdb\x96\xc1\x3a\x4e\xd3\xff\xac\x09\x5b\xd1\x94\xe0\xff\x68\x94\xcd\x0e\x73\x3b\x92\xca\xe1\x5f\x97\x83\x52\x28\x34\x09\x87\x7c\x8b\xe3\xb7\xef\xa6\xb1\xfa\xc0\x8f\x4b\x15\x45\xa5\xc9\x53\x40\xb5\x51\xb5\x43\xec\xaa\x07\xf3\x3f\x47\xc0\x42\x1d\xdb\xb4\x39\x7b\x46\xa9\x1c\x3d\xad\x99\xdd\x77\x76\x73\xcd\xbf\x52\x39\xfa\xc4\x4e\xe0\xfe\x42\xed\x7a\xd2\x18\xbf\xa8\xa4\x37\xda\x17\xcc\x8f\x1f\xcf\xc1\x99\x69\x2b\x8f\x03\xae\x84\x76\xb7\xc6\x97\x74\x11\x33\x28\xe7\xc5\x95\x23\x7f\xcc\x64\x7d\x8f\xc0\xb0\x2f\xd4\xe9\x64\x16\xba\xf5\x1d\x3d\x22\x73\xd4\x91\x00\x67\xfc\x76\x13\x20\xbb\x07\x94\x19\x96\x1e\x8e\x8b\x97\xdc\x36\x4a\xfe\x3a\x47\xec\xc5\x3f\xb1\xe8\x7c\x6d\x91\x1e\xd6\x4a\x01\x43\xd5\x2a\x91\x3a\x1d\xd1\xa6\x47\x75\x91\xba\x54\x79\xfd\xb5\xf4\x76\xd7\x5d\xcd\xa4\xb7\xb8\x6e\x4e\x0b\x2d\x3c\xa0\x06\x15\xbe\x61\xc5\x65\x6f\x28\x1f\x07\x86\x42\x4e\x89\x1b\xcc\x5d\xdb\xa5\xbd\x2b\x0b\x33\xc6\x9f\xcd\x17\xd7\x01\xe7\x51\xee\x93\x2c\x38\x07\x63\x57\xea\x63\x4d\xc5\x42\x61\x5a\x0a\x16\xc3\x2e\x83\xeb\x30\x44\x2f\xcf\x03\x7e\x14\x2c\x94\xcb\xb2\xdc\x9d\xcf\x2b\xf8\x0b\xd5\x79\xb8\x9b\xc5\x16\xd0\xe8\xaf\x60\x56\xf2\x10\x36\xa9\x67\x11\x5b\x68\x5e\xbd\x3f\xe2\x49\xa7\x74\x1d\x42\xcc\x46\xd8\x35\x89\x6f\x58\xb8\x15\x0c\x77\xef\x14\x05\x8e\x0f\xf4\x66\x7e\xba\x05\xe7\xce\xd4\xf3\xd4\xe4\xb8\x58\xdc\x7d\xbe\xee\x52\xb6\x7a\xf5\x9a\xd9\xfc\x46\x24\x1d\xe7\xec\xc5\x00\x9d\x85\xb1\xad\xf4\x00\xbf\x79\x40\xd3\xdd\xb2\xe2\x06\x97\xff\xe7\xb6\xd5\xa0\xd6\x6a\x5f\x20\x87\x20\x7f\xb3\x37\x95\x50\x1d\xd0\x4d\xcb\x7b\xfa\xa6\x68\xcd\x92\xd9\xba\xde\x79\xfc\x1d\x15\x39\xaa\x88\x31\x6c\x6b\x1b\xa5\xc2\x82\xad\x0a\x21\x9c\x06\xbc\xe4\x2b\xcc\xe9\x99\xa0\x1c\x95\xb5\x10\x7a\xe6\x2d\x38\xfa\xa7\x5e\x42\xe3\x8e\x83\xd5\xa3\xd7\x67\xff\x3c\xee\x80\x33\x15\xc7\xdc\x83\xa2\x52\xaf\xda\xb8\x4f\x36\x2d\x17\x3c\xad\xd1\xe8\xfb\x02\x86\x5c\x39\x75\xfa\xc1\x9e\x2c\x4c\xb9\xbd\x5d\x9c\x8a\xf7\xbc\xa8\x4e\x98\x8f\x59\x2d\xc4\x71\xc0\x5d\xfa\xd2\x34\x90\xf1\x9c\x0a\x35\x09\xca\x68\x2d\x76\x3c\x0b\x36\xe5\x4e\xe8\xa7\xcb\xd7\xb3\x5f\x57\x44\x68\xea\x79\x34\xae\xb9\xfc\x4b\x45\x33\xc9\x3f\xd0\x3f\xef\x4e\xd3\x58\xc8\x5a\xe8\xe7\xb9\x3f\xdd\x06\xd5\x3b\x7c\x62\x72\x35\x11\x8e\xfb\xf9\x74\x3b\x14\xc5\x27\x0e\x0a\xe4\x5c\xa1\x78\x65\x47\x2b\xbc\xd2\x27\xb2\x7b\x2c\x3c\x31\x43\xb3\xdd\x4d\x46\x29\xf9\xef\x3e\x00\xf5\xce\x94\xf6\x94\x38\x6c\x07\x66\xa5\x61\x2d\x31\x75\x1f\x21\x31\x7a\xa4\x82\xa5\x0c\x6c\x1c\xb6\x26\xdd\x23\xf9\x5e\xb4\x1a\xc4\x3f\x87\x67\x91\xdb\x76\x69\x14\x45\xcf\x63\x88\xf8\xc8\xe6\xe9\x24\x67\x8f\x51\x3e\xe7\x2e\x2e\x95\xa3\xc2\x14\x35\xc2\xe8\xe8\x16\xa6\xc7\x17\xaf\x4e\x7f\xbb\xc5\x8d\x18\x3e\xd8\xa5\xb9\xc2\xd8\x36\x27\xb6\x73\x48\xc3\xc8\x31\x5a\x81\xd0\x68\x79\xb2\xdf\xef\x98\xa4\xdf\xb8\x39\xb3\x93\xcb\x5a\x2a\x47\xef\x3d\xa3\xc6\x72\x36\x75\x6b\x25\xd4\x44\xd2\xc8\x34\xff\x87\xad\x8a\xda\x5c\xa5\xcc\xe1\xe8\x78\x78\x4d\x86\x05\xad\xe2\xf3\xfc\xad\x09\xec\x47\xc7\x3e\xf8\x56\x6d\x5c\x43\xa9\xe3\x4e\x7e\xfe\x41\x28\xfd\x51\xad\x62\x16\x17\x0f\xe2\xcf\x4f\x9c\xc8\xc6\x7d\x1a\x06\x6e\x28\x2c\x68\x92\x15\xdf\x92\xa3\xe9\x6d\x33\xb9\xe9\x40\x72\x5b\x3e\xf5\xd2\x0c\x98\xf3\x6c\xa9\x54\x98\x7d\x40\x33\x9e\x15\x99\x43\xf0\x85\xca\x51\xcf\x5d\x80\xcd\x42\x43\x31\xdf\x12\xcd\xef\xcc\xdd\xfc\x10\xd8\xd8\x2d\xf5\xa8\xcb\x3d\x7e\x0b\x18\x7f\x12\x87\xc6\xe9\x4d\x22\xf9\x7f\x6d\x2a\x88\x2f\x17\x84\x6a\xf9\x14\x6f\xbe\x0b\x45\x55\x03\x0e\x6e\x90\xb5\x52\xfe\x16\xc0\xfc\x0e\x2c\x1a\xe7\x19\xb1\xa6\x32\x3a\xb2\x39\xa5\x46\xaa\x41\x22\x9e\xbf\xae\x4b\x03\xf2\x20\x51\x17\x3d\xb1\x57\xbd\xf7\x2a\xc3\xa1\xc6\x34\x2d\xce\xda\x9c\x1e\xbc\xae\xf6\x85\xf1\x4f\xf8\xc4\xab\xc9\x9e\xa5\x81\xed\x38\x66\x89\x63\xfc\x11\xe8\x56\x15\x06\x1c\x5e\x2c\x75\xa3\x16\x4c\x9f\x08\xc2\x19\x12\x8a\xd3\x85\x3f\x00\x18\x36\x57\x25\xe3\xbd\xf1\x1f\x7a\xcf\xd6\x16\xc0\xa5\x72\x74\xee\x1d\x9a\x68\xac\x8d\xc4\xbe\x70\xfa\xe3\x1a\x57\x90\x49\x8c\xcc\xbf\x01\xc9\x1c\xee\xc8\x4e\x14\x53\xac\x3c\x98\x8f\xba\x20\xa9\xd8\x8e\xcb\xa0\x04\x94\x75\x04\x14\x3d\x7e\x13\x7b\x12\x08\xf4\xd4\x93\xe2\x09\x60\x3f\x40\x15\x9b\x08\xec\x6f\x74\xcd\x54\xe0\xd9\x49\x2b\x74\x00\x37\xb2\x73\x80\xdb\x4e\xb6\xd8\x75\xe3\x54\xa2\x27\x7f\xea\xa0\x86\xde\x30\x36\x86\x44\x7c\x64\x9e\xda\xdf\xca\x06\xa8\x0a\xa3\x75\xcc\x38\x46\x41\xee\x68\x5e\x3b\xda\x6a\xa2\xce\x50\x9f\x0c\x5f\x7f\x33\x4e\x0b\x40\x1c\xd4\x84\x5c\x51\xcf\xe6\xae\x9d\xa2\x1e\x73\x37\x67\xf3\x3c\x70\x99\x46\x8b\x15\x5a\xee\x71\xcc\x99\x0a\x3c\xf5\x42\x37\xee\xb4\xc5\xdd\x3c\x05\x64\xde\xed\xf8\x2d\xa6\x6a\x96\x85\x4b\x17\xa5\xe5\xc7\x2c\xcd\x46\x21\xfa\xec\xe6\x0b\xf5\xee\x9f\x18\x7c\x98\x00\xb1\x46\x1d\x60\xfb\x92\x68\x35\xc9\xed\xcb\x23\xa7\x55\xa1\x48\xab\x55\xee\x77\x25\x36\xd0\xef\x8c\x6e\x19\xbb\x2c\xe4\xd9\x75\xde\x0b\x67\xcb\x12\x4d\x70\xa7\xa3\x0f\x5f\xa6\x6a\x09\x8c\x6a\x5c\xf7\xb9\x3c\x98\xeb\x9f\xa2\x52\xbb\x45\x6a\x16\xd7\x69\x4d\x1c\xa8\x7e\x34\x1a\x9a\x0b\x33\x47\x82\xf4\xa2\x6d\x6b\x81\xa0\x19\x1a\xf0\x18\x75\x44\xfe\xb2\x35\x5c\x2d\x57\x7a\x4a\x01\xb7\x8f\xa7\xb7\xcd\x24\x9c\xf3\xf9\xa3\x57\x21\xe7\xd3\xb0\xfa\x95\x16\xc5\xca\x6e\xf5\x5a\x3b\x3b\x35\x0b\xda\xc1\x62\xb7\x68\x82\x4b\x2b\xb0\x43\x7c\x8f\xab\x50\x69\x8b\xb0\xc2\xee\xe3\x1a\x00\xcd\x42\xdc\x50\xf1\x77\xe3\xa0\xb3\x06\x91\x32\x2e\x67\x1d\x96\x74\x07\x61\x89\x23\x6b\x80\xb3\x5f\x00\x57\x97\x86\x4c\xce\x89\x7e\x63\xa9\x0a\xc0\x41\x8c\x70\xfd\x23\x9d\x18\x33\xf5\xb0\x28\x5f\xba\xe6\x95\x2c\xca\x9d\x2f\x46\xee\xd0\x95\xd6\x0c\xcb\x25\x1b\x43\x7e\xc3\xaf\x5f\x0c\x0c\xba\x70\x33\xa0\x4d\x97\xd3\xbf\x74\xad\xbb\xc2\xcd\xbb\xd4\xb8\x01\x31\x8e\x2f\xfb\xc8\xed\x9a\x50\x01\x17\x42\x16\xbb\x93\x67\xb2\xf8\xbc\x5a\x8d\x13\xcf\x55\x03\x71\x8b\x99\x3d\xeb\x0d\xda\x4c\xed\x69\x9e\xee\x02\x9c\xb5\x74\x4d\x68\x81\x19\x39\x09\xda\x25\x77\xf7\xdf\x1f\x1e\xa3\xf1\x05\x50\xd3\x2e\x95\xa3\x37\x9f\xd3\x30\xf8\x16\xc3\xba\x85\xf0\x60\xc1\x9f\x2a\xea\x88\xa5\x04\x05\x96\xcd\xd5\xd4\xa3\xaf\x75\x01\x5c\x28\x72\xeb\x4a\x5e\xfe\xcd\x95\x6a\x37\x56\x25\x7d\x7c\xb4\x7d\xec\x42\xd0\x0b\xa2\xd6\xa1\x51\x6e\xd6\x83\xaa\x11\xc3\x8e\x13\x47\x1c\x8d\x80\xf3\xe1\xe1\x70\x4f\x43\x5c\x39\x5c\x3c\xf5\x9a\x6e\x9d\xc8\x2b\x70\x7e\xef\x26\xae\x03\x1b\x01\x52\x61\xb8\xc1\x55\xba\xd2\xa3\x3b\xf3\x49\xed\xea\x73\x9b\x86\xf8\xd5\xc0\xab\x3f\x76\x84\x2e\xad\x1c\x70\x63\xb5\x4d\x2d\x98\x87\x5a\xc8\xb0\x44\x76\xfc\x47\x9b\x52\x69\xa7\x71\x8b\x95\xbf\xec\xa8\x38\xbb\x57\x3b\xba\xab\xda\xbf\xcf\x4b\x23\x92\xa7\x1b\xbb\x14\x76\xac\x4d\x4b\x88\x3e\xaa\xa3\x6b\x0e\x3d\x0e\x65\xf8\x50\xb5\x9a\xc8\x5d\x5e\xbd\x02\x68\xef\xf4\x27\x3d\x7a\xe3\x79\xd5\xf7\x99\xd8\x10\x59\x2b\xf7\xb5\xcb\x15\x62\xd7\xd3\x01\x28\xe5\x0d\xe7\x65\x28\x27\x01\x0b\x39\xba\x5b\x08\x28\xf6\x3f\xae\xd9\x82\x84\xb5\x0a\x97\xc5\xbe\x70\xab\x7a\xef\x1e\x15\x70\xa3\x75\xd9\xee\x41\x74\xcf\xd4\x4d\x81\x45\x87\xdb\x74\x79\x4e\xee\xf0\x15\xa7\x99\x19\xaf\x27\x9e\x1b\x7c\x95\x2d\xf6\x7c\x5f\xdd\x26\xc0\x32\xcb\x42\x07\x65\x0c\xb4\xab\xbd\x93\xb4\x06\xd5\x30\xb8\xda\x6b\xf2\x45\x2e\xb9\x17\x24\x50\x8c\x1d\x49\xb9\x2b\xa2\xbb\xe0\x3a\x1d\xb9\x26\x62\x92\x04\x9e\xfb\x78\x55\x23\x76\xf5\x7b\x2c\x8c\x3f\xda\xdf\xac\xcf\x9e\xa9\x00\x31\xb2\x31\x9b\x5d\xff\x5c\x04\xd6\x41\x42\x46\x24\x2e\xe2\x45\x96\x3a\x06\x54\xd6\x7c\x87\x24\x46\x1c\xe5\xc1\xfc\x8b\x23\x5b\xca\x57\x0f\x2b\x5b\xcf\xfc\xb9\xab\xc6\x69\x84\x8d\x94\x44\xba\x14\xd8\xba\xb1\xb0\x22\xb6\x44\x3a\xad\x7c\xef\x4e\x35\x8c\x42\x71\x06\xfa\xde\x38\xa8\xa1\x26\xcf\xcb\x03\xed\xa0\x90\x4a\x58\x36\xb2\x48\xf8\xfd\x1a\x69\x11\x48\xe3\x63\x21\xf2\xdc\x7f\x1e\x4b\x7f\xba\xeb\xf2\x43\x5f\x78\x6a\x1a\x14\x68\x69\x35\x9d\xfd\x5b\xd5\x2b\xd8\x43\x28\x21\x6d\x78\x3e\xc3\x7e\x32\x42\xfe\x28\x39\x05\xf7\x36\x68\xb3\xea\xd1\xb4\xba\x7d\x4c\x81\x7c\x29\x43\xa5\x72\xe4\xdf\x07\xac\xdd\xb8\xc5\x59\x02\xe5\x2c\x7e\xa2\x43\x75\xdf\x76\xbb\xd7\xa2\xca\x5e\xb8\xc8\xca\xd6\x3e\x16\xda\x08\x74\x8f\xb7\x03\x39\xdc\xae\xb9\x5d\xb2\xde\x7d\x1a\x12\x99\x6d\x44\x9c\x44\x9c\xac\x7f\x27\xb4\x95\xe0\x66\x1c\x72\x55\xf4\x51\xa6\x85\x53\x3e\x0a\xbe\x70\x4b\xca\x72\xee\xe5\x82\x0e\x6a\xa3\x7a\xe3\x0c\x68\xa5\x96\xfa\x5f\x72\xdb\x30\x0e\x98\xff\x65\xb7\x18\xc2\xdb\x12\x8e\x39\xf3\x40\x1a\xab\xe6\x2d\x58\x10\x3f\x8b\x19\xb6\x06\x03\x43\xa1\x8f\xf8\xc1\xfb\xcb\x23\x13\x35\xc8\x8b\x87\x19\x9f\x01\x96\xca\xd1\x47\x66\x65\x01\x55\xc8\x2e\x05\x16\x6a\x32\x34\x94\xb2\x55\xee\xed\x5e\xb1\x0a\x5a\xca\x68\xdd\xd2\x4c\xf2\xa3\x6f\xc2\x08\x4f\x91\x2d\x9f\xdf\x43\x0f\xa9\xab\x18\xba\xbe\xc1\xb7\x07\xf9\xf6\x22\x34\x48\x32\x2c\xe2\xe2\xd4\x2c\xf9\xfc\xcd\x6a\x55\xa0\xcb\x17\x2c\x7e\x30\x3d\x1a\xfd\x7c\xc7\xf9\x99\x35\xfa\x00\x93\x09\x34\x52\xee\xdb\xcb\xb4\x28\x87\x78\x25\x14\xad\xb1\x35\xc0\x34\x32\xea\x36\xe5\x23\x8f\x1f\xbc\x38\xb5\xd9\xb2\x5a\xe5\xde\xcd\x29\x0c\xe2\xd1\x67\x34\x0e\x09\x46\x8e\x23\x49\x4c\x83\x93\xd5\x39\xe5\x96\x82\x5f\x7a\x17\x44\x2c\x83\x11\x2f\x88\xd3\x4a\xb4\x65\x97\xf4\x89\x49\xfa\x30\xde\x84\xad\x4b\xbd\x6d\x1b\xc4\xe0\x81\xed\xbd\x95\x71\x3a\x25\xc2\x43\xfc\x3f\x17\xbe\x72\x5a\x34\x95\x55\xca\x84\x9c\x44\xfe\x35\x55\xa9\x30\x9f\xdf\xd8\x37\x2a\x29\x18\xa1\xd9\x8f\xf5\xfd\x57\xf1\xce\x7d\xfa\x68\xda\x35\x85\x81\x76\x91\x6d\x81\xc6\xa5\x01\x95\x17\x03\x38\x54\x6e\x02\x12\x07\xc4\x75\x31\x93\x95\xc9\x08\x60\xcb\x6a\x50\x14\x04\x88\xd8\x52\x5f\xf6\x07\x07\x34\x33\xb7\xc0\x4a\x38\xcc\xd1\xd2\x11\x63\x75\x15\x1e\x91\xd6\xf2\xef\x5f\x0c\x06\x7e\x56\x18\x04\xb6\x6a\x52\xb6\xbd\xa6\x48\xdc\x0d\xda\xb2\xbe\xd8\xb6\x2d\x1b\xc0\xb9\x9b\x35\xd1\xc0\xc2\xfb\x66\x81\xbe\x2e\x64\xf1\x37\xd1\x14\xc0\x0b\xc5\x59\xe3\x34\x9a\x08\x95\x49\xac\xd0\xd8\xa1\x4f\x78\xeb\xa1\xcd\x33\xcd\x2c\x40\x9a\xf3\x18\xad\xc6\x0d\xbe\x32\xe2\x78\xcf\x0c\x25\x48\x12\x32\x3f\xb4\x35\x40\x63\xf1\x83\x97\x03\x42\x10\x6a\x24\x3c\xde\xe2\x7b\x26\x01\xed\xf4\x50\x38\xe8\x08\x41\x99\xe2\x2d\x0f\x03\x97\x4c\xbb\x82\xdc\x8c\x32\xc8\x92\x0d\xca\x27\x19\x91\x52\x39\x9a\xf0\x86\xfa\x28\xd8\xf3\x50\xc6\x8e\xeb\xc3\x56\x36\x00\xf5\x86\x2e\xa1\x0c\x08\x05\x5d\xf3\xd2\x05\x5a\xe3\x31\xc4\xa4\xb3\xd8\x7e\x6c\xbc\xbc\xeb\x44\x6a\xa5\x08\x15\x04\x7f\x5d\x0b\x82\x18\x23\xcd\x4a\xf2\xfa\x97\xce\x4a\x3e\xec\x27\x4a\xe5\xe8\x8d\x3b\x60\x9f\xeb\x53\xbb\x91\xa0\x1a\x5f\x99\x0c\xd7\x40\xc8\x4f\xb2\x70\x31\x38\xa5\x65\x1d\x8b\xb7\x0e\x32\xcb\xfd\xcf\x23\xa2\x69\xbb\x2e\x64\xc2\x89\xdc\x5e\x99\x9e\xa6\x00\x35\x5a\xf2\xc6\x8f\xee\x69\xb5\x18\x61\x89\xb6\xf7\x1f\x27\x64\x31\x55\xa2\x0d\xec\x7d\x4a\x94\x3a\x1c\x54\xc0\xab\x12\x09\x55\xb9\x73\x3f\x14\xd7\x69\xa8\xc2\x61\xe1\xf2\xf4\x4d\x55\xb8\x1f\xc7\xd8\xa7\xd4\x88\xbe\x86\x5c\x0d\x73\x94\xff\xcb\xa8\xf3\x5a\x8a\x0c\xe4\x26\x6e\xd6\xf7\x3d\x23\x42\xf4\xb5\xc6\xea\xd0\x0e\xd4\x02\x37\xba\xe9\x45\x05\xa2\xb0\x31\xaa\xf2\x62\xf0\xd5\xec\x4e\xb8\x56\xea\x91\xf4\x81\x6c\xdc\x7f\x78\x04\x88\x6b\x34\x0c\x2c\xb9\x6b\xbc\x00\xec\x82\x18\x32\x12\x10\x16\x99\x37\x41\x6b\xe1\x0c\x6c\x52\x97\x70\x4e\xe1\x87\x9e\xd1\x34\x6c\x59\x0a\xe7\x29\xae\x9d\xa9\x79\x6a\x34\x55\xd4\xbf\x78\x14\x3c\xea\x36\x6d\xc6\x7d\x64\xaa\x46\xba\x6c\xab\x2e\xf2\x12\xba\x41\x6a\xba\xb4\xea\x24\x58\x8d\xb5\x4b\x93\xa8\x9c\xf7\x78\xfa\xdb\x50\x4d\x7f\xc2\xc1\xad\x52\x29\x3a\x99\xb3\xc6\x9f\x79\xff\xfd\x1a\xcd\x97\x56\x2a\xb6\x18\x6b\x2e\x97\x1e\xc2\x71\xa4\xf7\x04\x14\xf5\xb3\xe0\x4d\x5b\xa1\x70\xea\xe4\xf3\xc5\x3d\xb7\xab\x06\x1d\xf3\x83\xf1\xd1\x4d\xe2\xc2\x5c\x83\x5d\xb7\x5f\x2b\x49\x9e\x57\x67\xa2\x1a\x72\xd5\x94\x1f\x36\x54\xc4\x44\x0d\xec\xc6\xcd\x6d\xf4\xe1\xc9\xd9\x84\x21\x5c\xb3\x72\x7d\x1a\x37\xb8\x42\x98\x49\xf8\x47\x3b\xbc\x7e\xbc\xc6\x69\xf2\x49\xc0\x33\x59\xf4\xb1\x55\x1a\xe5\x32\x60\xd8\xad\x05\x16\x4e\x0d\x41\x82\x59\xc0\xce\x54\x51\x8a\xa4\xde\xea\x37\xa7\xb6\xe8\x63\xc4\xb5\x5e\x22\x7d\xf5\xc9\xc9\x89\x58\x04\x37\xa0\xe7\x7e\xb8\x13\xc4\x97\x6e\x5a\x24\xc0\xa5\xf8\x5a\x89\x20\xdb\xd1\x91\x0d\xcf\xc8\x0d\x08\xaa\x48\xb7\x37\x51\x55\x5d\xbd\x03\x2a\x4a\x11\x3b\x55\xd9\x2a\x1e\x1d\xab\xbb\xa6\x8b\x4c\x53\x7e\x06\xfc\x50\x31\x91\x4a\x78\x99\xf1\x29\x99\xa8\x6d\xca\x7c\x8b\x10\xe1\xd9\x92\xf3\x76\x01\xa5\x5c\x54\x49\x01\xad\xa2\x07\x7d\xf6\xfd\xa0\x8e\x71\xad\x38\xfb\xb9\xa9\x06\x72\x74\xdb\x7a\x30\x42\xea\x48\xf6\xd5\xc1\x23\x13\xb2\x87\xd6\x14\x06\xc4\xc5\xb0\x1d\x06\x3f\x64\x58\xe9\xf4\x60\xd6\x6b\xea\x9f\x25\x5c\x18\x5e\x4e\xdc\x79\x5c\x43\x8e\x06\xa1\xe0\x7a\xac\xef\x95\x08\x2e\xe2\xea\x16\x95\xf9\x7f\x9b\x07\x27\x01\x82\x92\x21\x82\xdb\x57\x5e\x53\xa7\x6a\x6e\xcf\x9c\x05\x0b\x16\x94\xe2\x0f\xd6\xbf\x4e\x74\xc2\xd7\x50\x8d\x23\x5a\xf8\x65\x9b\x82\x89\xd6\x48\x68\x93\x38\x60\xa9\x9c\xb1\x72\x0d\x58\x44\xa1\x81\x01\x07\x05\x68\x60\x40\x1a\xa4\x6c\x5b\xaf\xea\x2b\xfb\x62\xbe\x00\xe3\x87\xe4\xea\x97\xa1\x68\x51\xe2\xa0\x77\xc1\x62\xcd\xa6\xbd\x81\x59\x09\xd5\x6a\x2c\x6e\xd4\xb8\xe6\x5d\xfe\x8f\xbb\xe0\x5b\x61\x04\x67\x05\xcf\x0b\x5f\x2b\x4e\x85\x67\x36\x55\x50\x91\x5a\x8b\x6f\x1d\x9f\x08\xda\x86\x44\x05\xea\x3f\x81\x66\x17\xaa\x71\x67\x36\xde\x13\x34\x26\x41\xc9\x2e\x25\x80\x2f\xa7\x1e\x5f\x3f\x0d\x01\x00\xd5\x14\x4c\x58\x5c\xfd\xb8\x26\x98\xc9\x11\x2a\xfc\x18\x4d\x1d\x3e\x46\x63\x5e\xcd\x17\x96\xaa\xe7\x3f\xad\xfe\x2e\x76\x6b\x36\xf1\xad\xb8\x28\xfe\xcd\xa2\xec\xf7\xc7\x24\x90\xfc\x59\xf5\xfe\x87\x2d\x95\x94\x42\x6c\x32\xca\x8f\x4a\xe1\x37\x4f\x8a\xb7\x7b\x3d\x36\x2c\x97\xda\xb4\xc6\x27\x06\x53\x4e\x65\x03\x3c\x47\xc5\x73\xc9\xbf\x95\x0f\xeb\xc0\x0f\x1b\xf3\x3c\x7f\x3e\x24\x5c\x52\x3b\xe9\x7f\x8b\xef\x61\x9a\xd9\x32\x97\x1e\xf0\x51\x43\x2a\x1b\xdd\xf1\x80\xfc\x3c\x0c\x63\xa1\xd3\x94\x3b\x3b\xc8\x72\x17\x50\x68\x92\x4a\xaa\xd3\x9e\x4d\x51\x1b\xa6\x68\x3c\xe5\xd0\xb7\x89\x23\x2e\xf0\x71\x8d\xb9\x1f\x07\x2e\xc1\xdb\xcd\xf7\x4d\xcb\x56\x23\x52\x96\x2b\x35\xbd\x98\xd5\x2e\x65\xd2\xc8\xc6\x90\xf0\x43\xfa\xee\xee\x99\xe0\x4e\xd6\xb8\xc5\xe9\x10\xfc\xf0\xcf\xf4\x9d\xab\x8d\xe5\x32\x95\x78\x2e\x7c\x0b\x70\x42\x88\x4f\x02\xa9\x04\x11\xad\x9b\xa1\xe5\xc5\x90\x98\xd2\x3d\x3c\x3f\xed\xa8\x2a\xf6\xbb\xba\x38\x48\x62\x09\xd3\x54\xe6\x2c\x86\xb9\x0a\x5a\x34\xfe\xb9\xec\xc3\x37\x71\x25\x4c\x98\xf0\xd6\x71\xc1\xac\x59\x85\xfb\xc2\x56\x81\xe3\xbf\x79\x1e\xd0\x21\x6d\x4a\x4d\x2b\xae\x64\x93\xe5\xdb\xf0\xa9\xa2\xf7\xec\xec\x0c\xac\x52\x39\x3a\xb9\x21\xb1\x94\xc4\xa6\xe8\x5d\x72\xcb\x6e\x85\x08\x79\x49\x80\x9f\x53\x2a\x47\xce\xe3\x00\x9d\xce\x50\x8a\x9f\x9d\x79\x66\xac\x36\x76\x0d\x2c\xee\x06\x9b\xdf\xf7\xd6\x44\x5d\x47\xae\x64\x13\x47\x78\x44\xe5\xf3\x5a\x2d\x63\x22\x6e\xbb\x97\xef\xbd\x59\x1d\x46\xea\x20\x8b\x17\x1a\xbf\x9c\x2c\x5e\xa3\x18\x0f\x96\xca\xd1\xa6\x8e\xb1\x3a\x8a\x41\x5c\xad\x9b\xb6\xab\x7f\x6a\xd8\xc8\xf1\x4a\xe5\x68\xe3\x4b\xe3\x55\x47\xa8\x2a\x91\x4b\x46\x81\x8b\x6f\x52\xbb\x9a\x7c\x8d\xcd\x2b\x54\xce\x6d\x22\x26\x38\x85\x8b\x0f\x00\xac\x0c\xb1\x65\x6b\x9c\xbf\xa6\x5b\x4b\x3a\x1e\x0d\x04\x0d\xf6\x2b\x3b\x79\xd4\xb1\xb1\x5b\xea\xec\xca\x4e\xbc\x9f\x14\x83\x9b\xaa\x8d\x1a\x54\x2e\x28\xfe\xbe\x01\xf0\x8b\x2c\xbb\x37\x59\x30\xe5\x5c\x4d\x3c\x8d\xef\xc0\x49\x95\xf0\x5f\xd4\xa6\x61\x7f\x18\xe7\x5e\x97\xca\xd1\x9e\x4d\xd0\xeb\xd2\x22\xb8\xa1\x78\x20\x85\x1f\xad\x55\xa1\x37\x81\x1b\x3b\x49\xb1\x10\xdd\x01\x5c\x50\x3c\xcc\x44\xb5\x55\x78\xd9\xd4\x84\xf2\x89\x5d\x09\x85\x3b\xd0\xb3\x60\x20\x6d\x63\xfe\xe0\x64\x53\xb0\xed\x3e\xe5\x1d\x6c\x6a\x80\x8b\xdc\xc6\x07\xc1\x1c\x8e\xb8\x35\xd5\x4b\xac\x7d\x4d\x62\x18\xcb\x57\x5d\xb9\x56\x9b\xc9\xff\xf5\x63\xa0\x9e\xa7\x9e\x87\x99\xfc\x62\x79\xe0\xf2\x69\x22\xce\xda\xd3\x7a\xb5\x59\x69\x7f\xdd\xdd\xd1\x99\x99\x63\xbe\xb9\x4b\x09\x75\x36\xb5\x22\x2e\xdf\x79\x54\xb7\x1f\xb0\xe3\x30\x5b\x5c\x51\x95\xca\x45\x96\xf0\xd2\xe7\x20\xb1\x68\xb4\x36\xc6\x88\x63\xf8\xdd\x6f\x40\x0d\x7b\xe1\x8d\xc4\x27\x7c\xf3\xd4\xdf\xee\xbc\x74\x1e\xaf\xfb\xc7\x29\xa4\x11\xd7\x5f\x49\x9e\x54\xcf\x1d\x6a\xc4\x1a\x30\x1a\x56\x6c\xec\x24\x2a\x7d\xf9\x59\xc7\x87\x34\x1b\xe0\x75\x46\x71\x9d\x1a\x84\x1b\x1c\x32\x70\xce\x49\x35\xe5\xb7\x6b\x2d\xd4\xf1\x77\xe4\x8c\xc2\x0f\xe4\x8c\xe2\x9b\xc7\xa0\x4b\xbe\x1b\x06\x38\x45\x52\x5f\xb6\x12\xcc\x29\xab\x55\xae\x4e\x2f\x55\x42\xd8\x03\xe7\xaa\x12\x47\x33\x37\x8c\xff\xe9\xf8\x37\xd4\xd1\x6d\xd0\x84\x03\x45\xdb\x32\x6a\x75\x26\x76\xd2\x1a\xf6\x07\x07\x27\x6a\x4c\x2a\x17\xa7\x46\x97\xc5\x29\x42\x56\xac\xb4\xc4\x60\xd4\x6f\x35\x48\xfd\xe5\x8d\x2a\x36\x34\xb1\x94\x2a\x9a\xbf\x02\x4a\xc5\x2d\xec\xe0\xa9\x3d\xda\xb9\x01\x9a\x55\x8b\x22\x5b\x10\xf5\x3e\xb6\x42\xe3\xb9\x12\x86\x6d\x2e\x51\x35\x58\xc8\x1f\x05\xfb\x08\x46\x4c\xd4\x2f\xa5\xc4\x5e\x51\x5d\x7c\x85\xc6\xf7\xf6\xc2\xa7\x32\xf4\x0a\x43\x34\xb7\xb9\xbb\x27\x80\x75\xb4\x8d\xb1\x26\x33\x67\xdd\x0e\xb8\x5d\xbc\x65\x16\x93\x86\x4e\xe0\x8a\x26\x6a\xa1\x4a\x18\x50\x26\x6a\x9a\x47\xf7\x6b\x95\x25\x95\x8e\x7c\xfb\x5e\x83\x85\x41\x90\x58\xbe\x7c\xf2\x61\x65\x4a\xcf\x75\xcd\xf3\xfd\xb6\x48\x17\xc8\x48\x55\x75\x2e\x5a\xaa\x63\x7b\xe3\x78\x5d\xec\x59\x07\x65\x45\xba\xe7\x27\x3d\xf2\xcd\xcf\xa9\x4d\x65\x40\x4d\x7d\xd7\x16\xac\x53\xca\xd3\x3c\x5a\xab\xb1\x6a\xf7\xc9\x64\xc4\xe6\x08\x9a\x5f\xf4\xc0\x09\xe5\xa1\xd0\xde\xa2\x82\x98\xff\x37\x28\xfe\x29\xdc\x37\xe2\xa7\xf0\xc9\x93\xd0\x46\xa7\x46\x03\x82\x92\xb5\x08\xaf\xcd\x9f\x53\x1d\xac\x86\x92\x1b\xcc\xe1\x71\xaa\x41\xe5\x96\x75\x01\xc3\x88\x2f\x18\xc7\x3f\xaf\xbe\x97\x89\x2b\x41\x89\x11\x53\x98\x62\xe5\x77\x3d\x03\xf6\xe5\x7e\xca\x8b\xca\x7f\xb1\xb7\x05\xc2\xa4\xf0\x4d\x33\x47\x00\x62\x15\x72\x3c\xca\x83\x99\xca\x26\x85\x69\x2a\x34\xf9\x49\x03\xbe\x46\xe3\x7f\x1b\x5c\x1d\x59\x94\x62\x27\x46\x6b\x7a\xd3\x44\x58\x95\x14\xaf\x78\x3c\x4b\xe5\xe3\xa3\x53\x43\x41\xe4\xc5\x22\xfb\x3b\xeb\xd2\xb0\x29\xc4\xa6\x34\x37\xbf\xdb\xa1\x04\x48\x1c\x90\x13\xf9\xc7\xa9\x9b\x44\x3c\x09\x3d\x1f\xc7\x2f\xee\xd4\x7a\xc0\xac\x16\x22\x47\xa2\xa4\xfe\xc4\x43\xd9\x6d\x48\x8d\x4a\x61\x2a\x67\xb9\x02\x27\xcc\xe7\x4a\xfe\x8b\x8e\xa7\x4b\x8b\xfe\x8b\x5b\x6f\xfc\xde\x81\xb1\xba\x12\xa9\x6c\xf4\x96\xce\x03\x8a\x34\x21\x93\x56\x50\x11\xee\xd0\xfa\xb1\x50\xe0\x39\x58\xa9\x1c\x6d\xbf\x49\x13\xda\x42\x36\x76\x4d\xc4\x89\x50\xb9\x9d\xcf\x4f\xd2\xfa\x3e\x37\x60\x94\x0b\x6b\xf2\xd5\xa4\x37\x0a\xe4\x5f\x13\x39\x48\xda\x7a\x72\x03\x9c\xe5\xaf\x69\x25\x3f\xf2\x83\x44\xbd\x6b\xa4\x99\x7e\xab\x0a\x6a\xd5\xe7\x1f\xaf\xb4\x3f\x1d\x83\xb4\x82\x96\x56\x8c\xd7\x66\x66\xa2\x6c\x2b\x95\xa3\xb5\xa3\xa0\x7d\x23\x6e\xf0\xc9\xae\xc0\x84\x90\x57\xd3\xd3\x5e\xc3\x7a\x47\xf8\xe0\xb3\xd9\x9b\x52\x63\xb8\x06\xbd\x55\xdb\xd5\x53\x2b\x55\x28\x73\x53\x97\xec\xa7\x81\xeb\xaf\x1b\x30\x8c\x13\xf8\xd1\x3d\x36\x48\x1a\x15\x3f\x40\x86\x9d\x38\x4a\x16\x76\xdd\xd1\xa2\x12\xc9\x5d\xcd\xe5\xd3\xeb\x04\x26\xc5\xfd\xb8\x8e\x02\xcc\x88\x5b\x09\x59\x4d\xf6\xec\x71\xeb\x37\xd8\xd5\x6a\xf9\xed\x70\xf5\x32\x39\xf6\xaa\x6c\xd2\x2d\xe5\x45\x2b\xc0\x1d\xa1\x01\x05\x36\x60\xc4\xf3\xf8\xf0\x5a\xb5\x5e\x65\xc0\x24\xb5\x42\xbf\x82\xdc\xc4\x58\xf6\xbf\x47\xc0\xe5\xb4\x8b\xec\xc4\xd0\xf6\x6a\xbb\xc5\x56\x95\xfb\x50\xa5\x0e\x97\xf9\x7d\xcf\xf1\x07\x54\xba\x96\x13\xbd\x5b\x85\xca\x2f\x99\x03\xf2\x00\x45\x86\x25\x1f\xee\x05\x60\xe9\xeb\x10\x97\xcb\x13\xa4\xcc\x89\x4b\xf7\xb4\x0c\x7a\x30\xf2\x53\x5c\xf8\xed\x03\x3a\x36\x4c\x08\xc9\x17\xa2\xfd\xaa\x32\xa1\x15\x0d\xc9\xf4\x7a\xba\x3d\xe9\x9a\x17\xf7\x34\xc5\x8b\xde\x02\xb6\x43\xc8\xf3\x38\xbb\x57\x89\x88\x14\x3e\xb6\x43\xd5\xcc\x55\xca\x84\xe9\x76\x74\x68\xb8\xe2\x00\x31\x24\x3c\x63\xe1\x11\x5f\xf9\xac\xb2\x6f\x6d\xa6\x9e\xfb\x77\xbf\x03\x1a\x41\x8b\x86\x3e\x72\xcd\x64\x08\x4f\x01\xfd\xb4\xbd\xbd\x5d\x96\xd6\xf9\x8e\x3d\xe7\xc1\x2e\x5b\x9c\xb4\xb8\x7f\xf8\x8a\xe6\xe8\xcc\x30\x32\x79\xb9\x55\xde\x01\xf1\x89\xfc\xc5\x27\xe5\x6e\xe1\x13\x7d\x50\xa8\xae\x22\x4b\xbe\xe2\xa8\xa7\xf4\x75\xbb\x8f\x59\x43\xc4\xe0\xe0\xc9\xec\x3f\xe9\x6e\x4f\xb1\x24\xef\x36\xc0\x8e\xbc\x49\xaa\x81\x12\x8f\x1e\xee\xa9\x28\x54\x8b\x8f\xb6\x3e\xb3\x39\x28\x38\x2b\xf1\x85\x37\x30\xa7\x53\xf9\x38\x90\x75\x56\xe1\x53\xdd\xaa\xce\xb2\x42\x87\xd8\x44\xba\x27\x0c\xe6\x27\xde\x3e\x14\x7d\x44\x90\x90\xb7\x9c\x1c\x02\xcb\xad\x54\xcc\x8a\xb7\x74\xb4\xd8\x55\x02\x4f\xb6\x42\xe7\x63\x90\xd6\x8b\x2c\xe4\x64\xff\x52\xfe\x53\x79\x2d\x89\x85\xac\x81\xfb\xe5\x87\x2b\x4e\xf8\x00\x38\x5f\x5c\x06\xa3\xa5\x7f\xbf\x03\x28\x34\xf9\x01\x46\x02\x99\x5f\xf8\xe3\xa3\x9a\x8a\xbb\x8e\xed\x58\x79\x26\xcd\x72\x2c\x74\x32\x9b\xdd\x0d\xa7\x5a\x6d\x9c\x89\x9f\xac\x32\xfe\x6e\x2a\x54\xb7\x11\x3a\xf8\xc9\x7d\xfe\xaf\x57\xd2\xdf\xe8\x20\x8d\x34\x55\xb8\xe1\x32\xcd\x72\x8e\xf8\x1e\x76\x7d\xde\xd6\x9d\xde\x77\xae\x36\xe3\x75\x75\xcb\x98\xfc\xf0\xa7\x80\x3a\x54\xad\xdf\x0b\x12\x1d\xcd\xb8\x4e\xbe\xfb\xf9\x31\xb2\xc5\xc4\x66\xcd\x16\x2b\x8d\x27\x35\x95\x15\xca\x70\x4d\x6c\xf0\x1f\x9f\xa1\x79\x8b\x23\x9f\x4b\xbd\xf2\x82\xba\x38\x12\x00\x35\x43\x57\x56\xb2\x27\x8b\x53\xb5\xbc\xe7\x38\xad\xfc\xcc\xfc\xc1\x65\xaa\x28\x09\x71\x95\xfb\x2f\x4c\x03\x56\x89\x16\xb6\x3d\x39\x07\x2c\x47\x72\xb2\xec\x78\x58\x90\xed\xf2\xb7\xec\xd5\x2e\x1e\xa9\xf1\xe1\x4d\xae\x7f\xa4\xda\xd4\x56\x79\x94\x7d\x5f\xef\x18\x0d\xc5\x8d\xc5\x96\xf5\x89\x35\xc0\x4e\x95\x03\xea\xb1\x2f\x63\xfe\x1b\x47\x67\xc2\xe0\xeb\x63\x83\x8a\x8d\x5b\xb6\x88\x18\x3d\x0d\x74\x9a\x5c\x4a\x50\xce\x09\xee\xde\x90\xfd\xc3\xde\xd0\xe1\x7d\x32\x07\xe6\x2e\x3a\x76\x76\x7a\x79\xf8\x50\x68\xf8\x89\x0b\x40\x87\x5c\x23\xbe\x30\x56\x92\xf3\xd3\xd7\x37\xab\xfb\xd8\xb4\x90\x2e\xa9\x7c\x3e\xa0\xf2\x48\x51\x9f\x20\x99\x0f\xe4\x6f\x33\x15\x56\xbc\x73\x41\x7b\x67\xfc\x06\xa7\x3d\xa7\xad\x14\x18\x75\x85\x47\x67\xfe\xf8\x0a\xed\x91\xf5\x71\x81\xd8\xc1\xfc\xa3\x87\xc7\x6b\xc7\xc0\xb6\x39\x29\xa9\x1c\xfd\xf6\x15\xb5\xbf\xd7\xc7\xce\xb9\x61\x7b\xc5\x7e\x6a\x0d\x57\x4a\xab\x6b\x7f\xf2\x93\x7b\xda\x34\x92\x4f\xa0\x97\x13\xe3\xef\xfd\x00\x8c\x0c\x74\x28\xbb\x86\xe3\xcf\x67\x13\x48\x1d\x31\x6c\x83\xe8\xf0\x31\x0b\x14\x72\x18\x35\xb0\x5c\x2d\xbc\x35\x49\xb5\x2d\xfd\x71\xc8\xfa\xe4\x99\x8b\xc1\xe5\x14\x9e\x5c\x42\xfe\x06\xd8\x72\xbd\x2e\xce\xa2\x8d\x2a\x54\x6e\x33\x4a\xcb\xb3\xe1\x8a\x63\xe2\x7d\xe2\x38\xdc\x13\x41\x16\xf2\x4f\x68\x68\x7d\x33\x14\x89\x82\xbd\x9c\xad\xac\xeb\xd4\xc6\xbe\x4b\xea\x59\x73\xa1\xff\x78\x54\x0d\xb3\x70\x2a\x21\xea\xbd\xab\xac\xab\xe6\xc6\x05\x6f\x61\xf6\xf4\x36\x6d\x56\xa8\xeb\x4d\xe7\xa6\x6c\x15\x43\xc1\xa5\xc8\xad\x95\x56\xc6\x21\x44\xdf\x11\xdc\x72\x48\x83\xb8\xe9\x6f\x31\x77\xbd\x28\xcd\x6d\xdc\x10\xb4\xbd\xc7\xa7\xc0\xcc\x65\x05\xf2\x40\x7f\xee\xf2\x96\x5e\x84\x93\x41\x32\x5c\x90\x8a\x66\x63\x66\x60\x29\x93\x30\xf2\x20\x14\x19\x08\x42\x26\xe8\x14\xd1\xb1\xc5\x60\x25\x68\xe2\x8d\x21\xb7\x09\x4e\x94\x12\x4e\xdd\x0f\xea\x28\x8c\xed\x34\xd7\x5c\xe4\x4d\xd4\xc0\x20\x1a\x33\x2b\xff\xf9\xd7\xa0\x28\x20\x8e\x4b\x33\xb9\xe9\x3a\xf8\x4e\xc6\xd9\xb6\x4a\x98\x93\xba\xde\xde\x5c\x85\xfd\x09\x31\x12\x3d\xc3\xc2\x9d\x27\x15\x5c\xb4\x8a\x4d\xa9\x6a\xaa\x5a\xa1\x8f\x1c\x10\x81\x37\xd1\x42\x8d\x23\xf9\x1b\x53\xc4\xa0\x08\xf9\x15\xec\x07\x82\x57\xb9\x56\xba\xd8\x52\xdb\x2c\xf9\x41\xbf\xf0\x13\x3c\x3e\x4f\x17\x6f\x0e\x5d\x83\xc4\xad\xc4\xb4\xee\x0c\x37\x6a\xed\xd2\xd9\x0a\xbe\x5b\x2a\x47\xfd\x8f\x42\x85\x1c\x07\x0b\xde\x58\xee\xd0\x4e\x20\x2c\xe7\x05\xc4\x21\xbe\x93\x8a\x43\x5c\xf8\x36\xac\x72\x91\xeb\x7b\x94\x69\x66\xe0\x85\x5f\x6d\x85\x58\xe0\x7e\x29\x6f\x94\xfb\xd9\x21\x10\xd1\x69\x73\x76\x6f\x2f\x7f\xe7\x5b\x5f\x3d\x4b\x36\x4c\x4e\x5c\xd8\x0d\x07\x35\x43\x95\xc3\x87\x67\xa7\xf6\x9b\x2b\x87\xab\x7c\xd1\xd3\x3e\x9f\x53\x5d\xfc\x99\xd9\x28\xbe\x31\x64\xc8\x25\x86\x6c\x01\xf2\x17\x6a\x80\x5e\xa3\x1f\xb9\xc8\x11\x03\xfe\xbf\x92\x93\x02\x33\xc4\xb6\x2c\x74\x5e\x98\xac\x65\xbe\x6a\x95\xcb\xb3\x45\xe7\x2c\x57\x9d\x3c\x47\x9c\x07\x89\x38\xde\x96\xd5\x2d\x89\x4a\x8e\x7a\x0b\xeb\x57\x65\xdb\xd3\x8a\xe8\x23\xa2\xf5\x70\xb3\x8e\xdd\x74\x97\x79\xea\x50\xf6\x21\x73\x81\x63\xec\x63\x7d\xff\x38\xf5\x99\xf1\x32\xe8\xb8\x66\x42\x52\xe6\x1b\xb0\xb7\xd3\xaa\xa1\x4e\x1c\x2d\xfc\x5d\xb5\x7a\x82\x42\xa0\x35\xb4\x72\xe2\xe4\xeb\x2d\x8a\xb1\x46\x3d\x75\x3b\xfe\xc0\x64\x90\x84\x50\xe8\x9a\x8c\x3a\x28\x48\xa4\xcb\x86\xf5\x8c\xd5\x17\x12\x84\x23\x8c\x0a\x9f\x65\x17\xb4\x36\x82\xda\x40\x7d\xb0\x38\xc7\x83\xb7\x06\x07\xb8\x4f\x10\x51\x8a\x6d\xb6\x40\x53\x78\xc8\xc3\xac\x64\xd8\x89\x2e\x55\xe1\x62\x30\xac\xe5\xd8\x18\xe5\x32\x3e\x98\xff\xfe\x4d\x40\x31\xc3\xf1\xe4\x82\x50\xfc\xe4\x8f\xce\x50\xc3\x4d\x2b\xe4\x92\xb6\xc0\x01\xb9\xab\x23\x45\x53\x27\xed\x4f\xb4\x47\x15\xe1\x34\x0c\x98\x30\x2b\x1c\xcc\x7f\x71\x16\xe4\x25\xf5\x62\x23\x48\xa5\x99\x73\x6f\x0d\x57\x35\x09\xee\x13\x40\xd9\xa9\xbd\x13\xe4\xff\x0f\xb8\x3a\x7a\x1a\x46\x7e\xb3\x1f\x98\xca\xb9\x26\x97\x8a\x4a\x2b\xe5\x28\x3a\x3a\x4d\x1b\x16\x23\xd7\xc6\xfd\xad\x3c\xfe\x73\x86\x8b\x44\xdb\xd9\xdd\xe9\x67\xcc\xd8\x8a\x37\x4c\xd0\xbc\x1b\xb1\x4d\x2a\xbc\xc8\xe1\x28\x9d\xe2\x15\x6f\xaa\x48\xe2\x31\xe2\x20\x31\xa5\xf7\xe6\x49\x75\x6f\xaa\x0b\x61\xce\x5d\x3e\x41\xfb\x41\x0e\xe7\xde\xf2\x01\xc7\xae\xf5\x92\xf2\x6c\x23\x9b\x3a\xa5\x72\xf4\xdf\x6f\xab\x19\x97\x61\x13\x37\xa0\xae\x5c\xb1\xe7\x47\xef\x01\xba\xc7\x6e\x8d\x49\x33\xe0\x4a\xb7\x88\x7f\xd7\x4b\xf2\x53\xfc\xdf\x0e\x77\x88\xaf\x45\x98\x24\xd8\x73\x74\x4f\x7c\x24\xbe\xea\x8a\xc8\x41\xa5\xd0\xfc\x76\x57\xfc\x6b\xec\x9a\x18\x35\x28\x4f\x53\x9f\x05\xfe\x05\x73\x3b\xe5\x2e\xbe\x38\xf7\x51\xf1\x3a\xae\x0f\x8d\x3a\xd7\xcf\x4a\xbe\xe4\xb6\x28\xfb\x6e\xb1\x83\x59\x8d\x93\xa1\x79\x1e\x5a\x7c\x39\xb0\xcf\xa1\xed\x43\x14\x07\xb9\xb6\x45\xaa\xa4\x6a\x60\xe6\x50\x1e\x31\x0a\x3f\x58\x9c\xde\xc6\x50\x67\x84\xe6\xc9\xa8\x64\xbb\xc6\x4d\xc4\x38\xcd\x5e\xeb\xba\x6a\x8c\xe0\x46\x1c\x09\x05\xa1\xfc\x9f\x02\x80\x38\x11\xee\x71\x02\x11\x34\xb3\x5b\xe3\x69\x78\x02\xf0\x71\xe4\x6d\x39\x8d\xd5\xac\x89\x37\x8f\xd7\xc2\x5a\x03\x49\x4c\x4e\xfe\xcc\x8c\x6c\x09\xe4\xe2\xa6\xdf\xc4\xb8\x3e\x84\x80\x5c\xbe\x5c\x1c\xc2\x7a\x4c\xb4\x39\xaf\x1e\x02\x13\x21\xcc\x1c\xe4\xf6\x2b\x6d\xec\xc1\xdc\xdf\xbf\xa3\x8f\x54\x88\x61\x89\x12\xb3\x70\xef\xee\x69\x90\xe3\x5b\x86\xea\x87\x67\x3d\x00\x05\x72\xaa\xb6\x58\x17\x88\xa1\xca\x0b\x03\x60\xd2\x48\x1d\x4c\x5d\x59\xf7\xe5\x7e\xf9\x8e\x7a\x44\x71\x86\xe1\xc0\x89\x09\x47\xa1\xf0\x79\x40\x1a\xbc\xd1\x4d\x10\x78\xce\xfd\x00\x9f\x10\x1a\x82\x2c\x9d\xff\xc6\x30\x68\x89\xee\x79\x7c\x53\x26\x3b\xa1\x6f\x3c\xab\x59\x19\x12\xbf\x22\x04\xc4\x2f\xd0\x66\x4a\x7e\x58\xf1\x03\x89\x33\xfd\xe0\xb3\xd0\x0a\xcd\xb6\xa9\x2b\xc6\x45\xf9\x92\x0d\x3a\x6e\xe9\x52\x3f\xa7\x54\x8e\xbe\x7d\x50\x51\x39\xc3\x0f\xb6\x1c\xca\xdf\xef\x02\x35\x94\xc4\xc5\x18\x86\x74\xd7\xdf\x7c\x89\xb8\xf6\x4b\xdc\x80\x71\xe5\x17\x3e\x32\x41\x73\x5a\xea\x9c\x46\xdc\xaa\xf3\x06\xf9\xed\x86\x74\xfa\xed\x2c\x79\xa8\xc6\x07\x40\x8b\xd7\x8d\x4a\x43\x2d\x47\x91\x6c\x5e\x29\xaa\x47\x0e\x8c\x8a\xbf\xa0\xd9\xa1\x1a\xc3\x26\xf2\xe3\x40\x1e\xd0\xec\x1c\xff\x85\xc5\xe9\xf4\xc6\xa1\x89\x49\x5c\xe1\x17\xdb\xe1\xe2\x04\x85\xd2\x9d\x33\x9a\xd2\x06\xa6\x49\x54\x4c\xf2\x75\x10\xc4\xa8\xc9\xaa\xa5\xe9\x9a\x33\x57\x50\x65\xbf\x71\x14\xe4\x16\xc4\x6c\xc2\x75\xb9\xc5\x40\xfb\xaa\x36\xad\xf3\x25\x2e\x72\x0d\x31\xba\xed\xf6\x5a\x64\xed\xb1\x5a\xc4\xbe\x04\x76\x46\x02\xb6\xc4\x9f\xd9\x67\x17\x6b\x92\x7e\x16\x95\xab\xd4\xf6\xa7\x54\x89\xfa\xa1\x4c\xad\xf8\xca\x0e\x85\x77\x6f\xd0\xa0\x05\x96\x5f\xbc\x73\x98\xdc\xc4\x85\x35\xc4\xa7\x92\xa3\x76\xcd\x04\x39\x85\x83\x0e\x86\xf2\xaa\x65\x33\x20\xf6\x88\x2b\x59\x48\x62\xc5\x9d\x53\xd3\x31\x07\xc6\x81\x4e\xf2\x59\xf9\x1c\x64\x2f\x7a\x01\x6e\x24\x20\x2b\xd9\xb1\x0c\xdc\xa3\xb9\xa7\xa1\xb8\x51\xfc\xc3\x22\x45\x61\x6a\x62\xdb\x8e\xab\x6a\x97\x27\xcf\xf8\xd7\xd5\x12\xc1\x38\x8f\x43\x02\x0a\xb9\x53\x8a\x9d\xab\x47\xe9\xfc\x98\xa3\xd0\xb8\x9d\x35\x68\x98\x14\xdf\x4b\xc6\x80\x09\x8c\x8d\xfa\x69\xb5\x2a\x01\xca\x3f\x79\x52\xeb\x05\x68\x10\x50\x27\xce\xb6\xf1\xaf\xbf\xa2\x37\xfb\xd8\x90\xc7\x1d\x61\x2c\x82\x24\xf3\x57\x21\xac\x17\x5f\x02\x3c\x9d\x31\x07\x8a\xf1\x40\x02\xc0\x42\xc2\x24\x4d\xc6\xc5\xcf\x3d\x0c\xd1\x9c\x1c\x2d\x24\xff\x74\xc1\x32\xb0\x61\x61\x48\x0c\xa9\xb3\x17\xf9\x05\x28\x58\xb0\x70\xe1\x02\xce\x52\x2c\x8f\xd4\x48\x63\xb8\xc6\xa9\x3d\xf9\x1b\x5b\x20\xcb\x98\xb3\xa4\x8d\x64\xc8\x5e\xb8\x19\x80\x54\x08\x6d\x22\x45\x92\xdb\x69\x8a\x8d\xe9\x52\x86\x84\xf3\x61\xf6\x00\xfd\x64\xbd\x6e\xa6\x9b\x72\x50\x4b\xe5\xe8\xee\x75\x80\xe2\x80\x5a\xc1\x33\x85\xd9\x6f\xc1\x44\xe1\xc2\x29\xe0\x7b\xc1\x8c\x3f\xb0\x88\x51\x57\x37\xed\xe9\xb6\xc9\x4a\x66\xbf\xc5\x42\xfd\x23\x2f\x9e\xad\x2c\x3f\x38\x0d\xff\x8f\x97\x4c\x6a\x6d\x66\x88\xb4\xaa\xda\xf3\x5c\xa2\x43\xef\x54\x29\x4b\x1c\xdc\x73\xef\xd3\xec\x8e\x3d\x46\xb9\xbb\x3b\xaf\x3a\x5e\x7f\x5b\xf4\x67\x95\xd0\xac\xe1\x40\x96\x4f\xdd\xe3\x34\x44\xb9\x15\xca\x5d\x41\xe1\x43\x9a\xe1\xa8\xa0\xe8\x09\xed\xf8\xcf\x42\x16\xa5\x17\xca\xb3\x94\x7f\xf3\x58\x8b\xda\x87\x2f\x85\x09\x8a\x53\xde\xd2\x68\x30\x81\x09\xc5\xa6\x07\x8b\x53\x46\x03\xe5\x79\xe2\xa6\xee\x59\x27\x00\x6e\x1e\xd1\x4c\x99\x9e\xdf\xde\xa1\xe9\x5b\xd2\xd0\x0d\x10\x2f\x7f\xde\xde\x99\xfd\x91\x26\xa5\x8c\x27\xa6\xe8\x47\xd3\x27\x6a\x22\x23\x55\x91\x8c\x79\xa1\xd6\xe1\x02\x41\x5d\xdf\xc6\x81\x44\xc6\xfd\xe2\xf6\x96\xcd\xba\x20\xe2\x44\x1b\xe6\x9c\x0f\x92\x60\x60\xa9\x31\x4a\x34\x75\x07\x24\x21\xf0\x36\x38\xa9\xc0\x7b\x4e\x89\x8a\x74\x29\xa9\xd5\xc4\xc3\x1f\xbd\x35\x7b\xc6\xeb\x9c\xdb\x29\x9f\x73\xf1\xfc\x97\xdb\xf4\xf7\x1b\x97\xf3\x49\xfa\xfb\xce\xbb\x8a\x76\xa8\x5b\xf0\x01\x25\x83\x4d\xd0\x1a\xa6\x9f\xba\xca\xab\xe5\x04\x84\xfd\xf3\xe4\xc2\x3b\xe0\x4b\x1f\x86\x2b\x1e\xc7\x21\x81\x90\x41\x10\xc0\x8c\x9e\x6d\x63\x33\xf3\x1c\x22\xd4\x6b\xdf\x19\x95\x84\x30\x4b\x00\x02\x76\xc8\x2a\x9c\x56\xc5\x81\xcb\x1f\xde\x7c\x6e\xcb\x01\x48\x16\x67\x77\xb6\x6b\x1a\x3b\x94\x05\x56\xb2\x58\x3c\x77\x06\x70\x39\x43\xae\x29\xcb\x18\x77\x0d\x34\x85\x4c\xd8\x81\xfb\xf6\x4f\x4d\x7f\x5a\x2f\x6e\x12\xdf\x6a\x19\xf5\xae\xdb\xa2\x43\xb6\x91\x4d\x12\x60\x40\xfe\x81\x36\x48\xd4\x0b\x10\xf3\x67\x6b\x7e\x96\x83\xc5\x73\x2a\x33\xe0\x21\x42\xce\x50\x35\xe9\x9c\x59\x1a\xa5\xb7\x6b\x1e\xc7\x51\xaf\x01\xac\x2d\xea\x1b\xb4\x29\xb7\x14\xce\x25\x1a\xcd\x23\xae\x44\xf8\xb3\x1c\xec\xd3\xa5\x42\x1b\x94\x4f\xb6\x66\xbc\x38\xd1\xcd\x88\x27\x39\xd2\x92\x26\x77\xd1\x6a\xc5\x8b\xe3\x2a\x12\xd9\x78\x7d\x7d\xb7\xea\xc0\x88\x51\xd7\xd5\xee\xf3\x1d\xf7\x4f\x50\xc2\x26\x1a\x82\x20\x6f\x3c\xa8\xcd\x09\x89\x10\x25\xaa\x3f\x0d\x2a\x38\x23\x20\x0d\xc1\x77\x90\x18\xe3\x09\xa7\x74\xc1\xfe\xf9\x3d\xa5\xee\x05\xbc\xa6\xbe\x39\x9b\xad\x53\x49\xba\xcc\xa5\x1f\x39\x7a\x6c\x86\x49\x21\x88\xaf\x7b\x1e\xd2\xf9\xa8\x36\x72\x79\x9b\xb1\xb7\x1d\xe8\x63\x50\xc4\xcc\xa1\x54\xa6\xe7\x77\x88\x9c\x7e\x85\xc5\xa3\x5d\x7e\xd4\x91\xd4\x83\x89\x8b\x04\x14\x76\xaa\xd0\xca\x35\x2e\x93\xfe\xa0\xf4\x66\xcb\x4e\x96\x0a\xbf\x2d\x99\x2d\x4f\xdf\x28\x0e\xfc\x92\xb0\xc6\x85\x40\xa3\x31\x5b\x5a\x8c\xb5\x1c\x2f\x50\x28\xe7\xc3\x92\x09\xe9\x31\x9c\x88\x10\x16\x3e\x75\x0a\xa0\xdd\xdd\x1a\x71\xb1\x88\x34\x22\x3b\x2e\xeb\xcb\x3e\x3b\x97\xba\xca\xeb\x20\x51\x87\x28\x3c\x6c\x67\x3f\xad\x18\xfa\x29\x3d\x98\xdc\xc1\x2d\x0a\x74\x8f\x99\x5f\xcf\x6a\xd5\xbf\x17\xac\x22\x1c\xbe\xa6\x4e\xac\x19\xf3\xd7\xdc\x91\x7d\xda\x3e\xe6\xdb\xb2\xcb\x5a\x8e\xff\x1f\x01\x3d\x83\xfb\x2c\x09\x9b\xdb\x1f\x5f\xde\xe2\xe1\xd3\x2d\xb1\x59\xf9\xe1\x00\x0e\x6a\xd8\x88\xd5\x33\x6e\x3a\x05\xfa\x96\x3a\xfd\x35\xdd\x9a\x2f\xb7\x78\x7b\x92\x03\x99\x1b\x88\x85\xc0\x60\xf1\x9c\x67\x15\x19\x72\xfe\xa5\xdc\xe0\xe2\x6c\xe9\x8a\xb1\x06\x07\x8c\xda\x38\x6c\x71\x23\x29\x4c\x7e\x69\x0a\xe8\xa3\x5c\xb3\x16\x6a\x2a\xb5\x87\x8e\xab\x25\x26\x57\x6f\xab\x12\x23\x35\x61\xff\xfb\x71\x60\xf9\xd1\xc4\x26\x76\x67\x1b\xa9\x40\xd8\xec\x77\xc0\x53\xb4\x70\x03\x31\xd3\x45\xe6\x00\xd6\x29\x61\xb9\xe5\xdb\x95\x73\x2a\x83\x0e\xe5\xd1\xe7\x26\xb5\x69\x18\x4b\x03\xb3\x38\x39\x72\x51\xd2\x9f\xdd\xaa\x92\x20\x72\x35\xf1\xa6\xfc\xad\x9a\x31\x9a\x20\x19\x53\x56\x2a\x47\x17\xc9\x31\x70\xe7\x7c\x89\x96\xe3\xc3\xc3\x7b\xc6\x64\xa8\xb8\x71\x07\xbf\x5a\x63\xa3\x79\x88\x95\x16\x74\xc5\x7f\x73\xcb\x8b\x40\x69\x15\xc7\xb5\x09\x4a\xe5\xde\x2e\x3f\xac\xe3\xb8\x42\xee\xfd\x94\xff\x75\x05\x40\x30\xe3\xac\x90\x3e\xe1\xfc\xd6\x71\xda\xd8\x01\x99\xa1\xa0\xc3\x84\xeb\x45\xb6\xe1\xa6\x97\x3c\x63\x8e\x80\x7c\x02\x86\x53\xd4\x4a\x6e\xe7\x36\x8d\xea\x80\x58\x3a\xed\x2a\xe0\x09\xe2\xce\x1a\xa1\x1f\x08\x6a\xe8\x03\x2c\x2b\x35\xf5\xd7\x52\xed\xf9\x61\x2b\x7d\x07\xb4\xdd\x6a\x29\x3b\x1f\xdb\x2a\x70\x0f\xba\x44\x67\x06\x6b\xb4\xaa\x4d\x09\x20\x65\x2d\x56\x1f\x7d\x37\x2d\x09\x3d\xa1\xf9\xfb\xa7\x29\x69\xfc\xa6\x76\xb5\xa5\x90\xea\x9e\x06\xfc\x53\xbd\x40\xac\xf7\xfc\x4c\x4f\xf0\x59\xe9\x01\xd8\xb9\xb0\x9b\xbf\x9d\x2b\x6f\x82\x34\x66\xc3\x0e\x53\x93\xc3\xc2\x45\x45\x08\xc6\xac\x60\x92\xe0\x1e\x56\x2d\x85\x8c\x37\xea\x27\xb0\xf1\xee\xc3\x40\x45\x03\xb1\x64\x86\xfc\xd5\x36\x6d\xd0\x80\x1a\x71\x1e\x2e\x47\x5f\x38\x73\x01\x28\x22\x7d\x8f\x30\x14\x50\x96\x00\x4c\xef\x07\xe3\x5e\xe2\x33\x84\x6d\xb5\x28\x8e\xfe\x77\xc5\x48\xfe\x33\x17\xb6\x73\xe4\xc6\x46\x57\x1f\x94\x07\x42\xc4\x21\xcf\x34\x2f\x2d\xee\x40\x1b\xd7\x85\x8f\xdd\x07\x2b\xbc\x9e\xb9\x72\x52\x35\xa8\x49\x52\x25\x16\xbb\x7c\x7a\x73\xe9\x96\x99\x20\xda\x09\x2f\xab\x21\xfc\x23\xe6\x3f\xdf\xa6\x0d\x91\x90\xef\x63\x5f\x4e\xb8\x0a\x03\xa7\x01\xfe\xc0\x45\x9e\x87\xcd\x44\x23\xfd\x77\xa6\xb6\x44\x41\xb6\x2d\x20\xb2\xc5\xdc\x7a\xe8\x8a\x98\x28\xaf\x63\xf9\xb1\x3b\x80\x88\x89\xa0\x46\x5d\x16\xff\xc8\xe7\x26\x28\x29\x89\x50\x83\x12\xaf\x62\x40\x10\x51\x48\xf8\xf8\xa5\x72\xb4\xa0\x5b\x9b\x14\x22\x46\x30\x0f\x24\x3f\xbf\x1e\x54\x5a\x52\xc7\x39\x9a\x76\x89\xc6\x09\x6b\x5a\x44\xb4\x27\x1f\xd7\xe6\x4b\x41\xc8\xea\x38\xfe\x19\x9f\x04\x76\x41\x29\x0e\x36\xe1\xd6\x7e\x61\x1d\x84\x47\x37\x70\x7a\x92\x66\x08\x44\x54\xe9\x5a\xea\x06\x0c\x0f\x01\x2c\x1a\x9b\xcf\x3e\x06\xea\xa6\x8e\xb4\x95\x48\x47\x10\x24\x18\xab\xff\x38\xd4\xea\xdb\x67\xd8\x42\x9a\x33\xf7\xf9\x2d\x13\x74\x51\x26\x01\x43\xe2\xf8\x37\x20\xd8\xcb\x97\xf7\x8c\x18\x09\xce\xf5\xe9\x57\x27\x82\xec\x9c\xec\xee\xfe\x7e\x5c\xc6\xf5\xc7\x27\x52\xbb\x2d\x37\x69\x9d\xda\xcd\x55\x88\x6d\xf3\xd2\x45\x67\xc6\x6e\x87\xf2\x01\xae\x59\xf2\x08\x5f\x8f\x88\xb6\x6c\xef\x6e\x11\x0d\x0d\x1b\x33\x4e\xa5\x99\xb7\x68\x6c\x12\xae\x9d\x38\x1a\xf1\xcd\xd1\x17\xa6\x8a\x19\xf3\x5a\xcc\x87\xab\xea\x17\x94\xb5\x09\x84\x85\x6d\x62\x50\x4f\x56\xec\x63\x9f\x9b\x05\xde\xbb\xe3\x59\xd4\xed\x1f\xca\xa1\x20\xdf\x73\x63\xa2\x91\xce\xbd\x09\x24\x2a\xba\xb2\x58\x9f\x71\x2d\x98\xc7\x35\xb8\x6e\xd1\xf6\x9f\x26\x6d\xba\x5c\xe2\x9a\x3f\xdf\x1b\xff\x1f\x5f\x7f\x1f\x26\x45\x75\xe6\x8d\xe3\xf6\x4b\x88\x22\xc2\x80\x23\x20\x22\x41\x24\x88\x4a\x8f\xc3\xf0\x36\x10\x96\x00\x22\x22\x22\x43\x00\x91\x10\x45\x4e\x57\x9d\xee\x3a\xd3\xd5\x75\xca\x53\x55\xdd\xd3\xa3\x8b\x48\x08\x21\x4a\x0c\x8f\x21\x86\x18\x96\x35\x88\x86\x18\xc2\xcf\xf8\x18\xd7\x18\x35\x84\x10\xd7\x18\x62\x88\x21\x86\x65\x09\xf1\x31\xae\x51\xd7\x75\x5d\xe3\x12\x42\x98\xda\xdf\x55\xf7\x39\x55\xe7\xd4\xe9\xd9\xef\x3f\x5e\x97\x33\x4c\x77\xbd\x9c\x73\x9f\xfb\xe5\xf3\xb2\x26\x19\x2a\xa3\x12\x8b\x8b\x80\xcb\x16\xa5\x77\x60\x11\xe8\xad\xfd\x5d\x45\xde\x95\x9a\x04\x56\x00\x29\xd5\x4f\x36\xc9\xc8\xed\x34\x59\xc5\x65\x1f\x75\x65\x0b\xa8\x86\x4d\x16\x25\x42\x32\x99\xf8\x7f\x12\x8e\x59\x46\xb1\x93\x40\x26\xd0\x04\x9d\x90\x09\xed\x70\xe1\xa8\x9a\x7b\x6a\x90\x8e\x12\xec\xe6\x16\x97\xbc\xcc\xcc\x7e\xe9\xcd\x74\x27\xc2\xc1\x55\xdf\xa3\x35\x35\xfb\x0d\x77\x2c\x91\x44\x07\x2e\xed\xa5\xea\xfb\x64\xef\x78\x48\xea\x81\xb2\xc0\xf3\x08\x72\x0a\x9e\x8b\x85\x53\x7b\x78\xbd\x2e\xa6\x65\x52\xc9\x6b\xc8\xcd\x68\x4d\x9e\x88\x83\x9a\x25\xe4\x76\xf5\xf0\x21\x47\xb4\xff\xea\x16\xb6\xab\xc4\x29\x73\x39\xa9\xab\x2c\x85\x4c\x6f\x93\x32\x62\x86\x05\x83\x9b\x81\xfb\xc4\x5c\x44\x35\x86\x80\x17\xba\xe4\x0d\x0d\x14\x41\x6d\xb8\x57\x45\x0a\x32\x77\x56\x73\xca\xa9\x63\xd0\x50\xe3\x07\x6f\x79\x4b\xf2\x42\x19\x00\xd0\x2f\x74\x15\x00\x3a\x75\x85\xcc\xf1\xf8\xde\xf4\x88\xf3\x53\xf1\x8e\xbc\xbd\x23\xfd\xb0\xfd\x46\xc0\x48\x9a\x8e\x16\x7e\xeb\x01\xd9\x81\x77\x10\x08\x0b\x87\x5b\xac\xe1\x7a\x8e\xcb\x7d\xe3\xc3\xd5\xb3\x87\x28\xc9\x4f\x14\x17\xc2\x1f\x3f\xa1\xc5\x2e\xe2\x27\xbd\x81\x69\x72\xd6\x37\xa5\x00\xe6\x33\xad\x5b\x65\xe7\x25\x1e\xab\x16\xba\xc2\x49\x03\xb4\xf4\xc9\xf3\xa8\x41\x62\x57\x89\xf0\x1b\x9a\x76\x00\x87\x73\xf8\xd1\x59\x11\x07\x82\xcc\x7c\x9e\xbf\x2d\x52\xf9\xc4\x1f\xbe\xa6\x49\xaf\x61\xdb\x46\x29\xc9\x81\x43\x07\x79\x16\xe4\x13\x1f\x71\xa9\x98\x3f\xef\x90\x28\x75\xd4\x34\x4f\xca\xf5\xb6\x28\x83\x23\xa5\x11\x9a\x5f\xf1\xb4\xee\x9c\xe9\x94\x81\xa4\xd6\xd5\x97\xeb\xda\xa2\x01\x16\x7b\x7c\x0c\xb3\x02\x68\x1f\x5d\xf7\x8c\x06\x17\xa4\xb6\x09\xbe\x29\xbc\x22\x78\xee\x55\x45\x68\x83\xda\x1c\xf7\x91\x99\x7a\xa2\x49\xc1\x2c\x3a\x97\xeb\x30\x1f\xc9\xbd\xc7\x41\x84\x4b\x51\x6f\x33\xe2\x78\x57\x2d\xb9\xc1\x12\x69\x22\x93\xe4\xce\xdf\xda\x96\x8e\xb9\xb8\x6e\x63\xdf\x2f\xb8\xc8\xa8\x44\x85\x65\x33\xfa\x27\xbb\x77\x82\x7c\xa9\x77\x04\xc8\xf1\x49\x09\x68\x28\xef\xbc\xa2\x79\x83\x06\x45\xc4\x50\x25\x5d\xea\x7e\x75\xa3\x3c\x1c\xfc\x86\x4b\x0c\xae\x5b\x10\xbe\x76\x6c\x88\x38\x30\xaa\x6e\x00\x41\x39\xfc\xe1\xac\xe4\xd9\x23\xbb\x20\xd7\xf0\x7e\x4d\x2d\xa0\xc8\x15\x15\x79\xb5\x77\x4f\xbb\x5e\x6c\x75\xb6\x0b\x5a\xc1\x51\x47\x08\x7b\x07\x2e\x41\xe0\xf6\x72\xe7\x42\x19\x11\x5d\xaf\x61\x58\x14\x39\xc8\x6e\x88\xf6\xe0\x15\x4b\x9a\x67\x59\x26\x6a\x08\x2e\xc7\x7d\x6f\x72\x1f\xfc\x79\x8e\x4f\x14\x0f\x3e\x50\x81\xd9\x30\xdc\x49\xc3\x19\x3c\xd1\xd4\xca\x5c\x34\x7c\xba\x67\x21\x17\x27\x53\xb6\xd9\xa5\xc0\x81\x96\xdd\x58\xf8\xf9\x58\xe4\x8f\x6d\xef\xe9\x2c\x9a\xb8\xdd\x9c\x3a\xe7\xea\xa5\xd4\x89\x9d\x84\xa6\x31\xad\x99\x12\x78\x96\x74\xdb\x59\xb0\x54\x03\x0c\x63\x9f\x07\x62\x98\x4f\x7d\x5c\xd3\xe3\x34\x2c\x54\x75\x09\x75\x3c\x8b\xb8\xa2\x7f\xf1\x7c\x31\x1d\xbd\xa2\xbd\xea\xfb\xa9\xdd\x93\x19\xf4\xa4\xec\x8c\x94\x28\x60\x5f\x7e\x38\x5e\x81\x09\x07\x76\x89\xc3\x11\x32\xff\x25\xd0\x25\x1d\xd3\x3a\xdb\xa3\x27\xaf\x22\x1b\x6b\x04\x9b\x90\xcf\x0d\x7f\xfc\x22\x15\x58\x09\xaa\x45\x10\xd3\xcd\x16\xed\x72\x19\xae\x12\x27\xb5\x91\xff\xe1\xc0\x38\xd9\x26\x45\x0e\xe2\xee\x99\x4d\x47\x5e\xcf\x2a\x4d\x74\xc6\xb6\x89\x43\x89\xe8\x71\xf1\x2e\x7b\x51\x00\x61\x44\x9b\xe4\x82\x1d\x7c\x95\x38\x54\xac\xeb\xcc\xcc\x43\xe9\x0f\xa9\x53\x56\xa9\x22\x78\x78\xf1\x54\xbb\x77\x1f\xef\x5e\x2f\xa4\xcc\x6f\x14\x70\x8c\x57\xd8\x37\x2b\xfd\x50\x3d\xe2\x20\x9f\x21\x15\x5b\xb6\xf3\x05\x45\x3b\x24\x88\xfe\xe8\x8d\xf7\x94\x4c\x13\xc0\x16\xd1\x45\x04\x2f\xcb\x76\x95\x2a\x76\x96\x6b\x7f\x59\x8c\x98\xbd\x58\x77\x3a\xf3\xeb\x6d\xe9\x51\xb2\xc0\x41\xf5\xc3\xe7\x0d\x27\x1c\x68\x5a\x19\xb6\x8d\x39\xc7\x4f\x88\x69\x2d\x5f\x2e\x1c\x36\x2c\x6c\x7b\x18\xa9\x95\x57\xee\xbd\x39\x5a\x5b\x9a\x51\xee\x68\x1b\xf6\xdc\xaa\x14\x44\xb4\xce\x85\x70\x72\xaf\xdd\x3b\x44\x49\xc0\x78\xe2\x6f\x74\xea\xec\x35\xcf\x67\x81\x27\x60\x6d\xb9\xc2\xca\x24\x0a\x98\x54\xb1\x83\xff\xcc\x56\xfe\x9e\x24\x01\x74\xdf\xc5\x0a\x28\xde\xa4\xb5\x14\x0d\xff\xee\x43\x92\x39\x48\x2d\x25\xef\x79\xe2\xe8\x45\x6a\x97\x0d\x74\x6e\xf9\xb4\xff\xf0\x06\x65\xa0\x8f\x71\x35\xaa\x1a\x76\xe5\xd3\x6f\x14\x05\x9e\x61\xd5\x89\xdf\xcb\x03\x25\xec\xf1\x5d\x3b\x78\x92\xea\x23\xbb\x12\xfd\xcd\xcd\xbe\x86\x3d\x8a\xf9\xcc\x5d\x7d\xf9\xab\xb3\xba\x0c\x0f\x50\x25\x3d\x18\xe7\x75\xf5\xe5\x82\x8e\x61\x6a\xa9\xe6\x71\x6a\xd5\xbe\x81\xc2\xf4\xd6\xb0\x82\x0a\x53\xf0\xe4\xb9\xff\xd4\x48\x0d\x0c\x19\xc4\xab\x8a\x55\x7a\xd9\x5d\x3c\x6f\x15\xfa\xd5\x1c\xd9\x9e\x9b\xab\xd1\x7d\x38\x73\x8c\xbf\xc5\xc9\x4c\x45\xa8\x92\x2a\x86\x84\x61\xe1\xbb\x0a\x73\x1e\x36\x1f\xf0\x6d\x72\xd7\x6a\xbd\x78\x0f\x83\xb2\x0d\x2f\xa0\x0e\x74\x68\x13\x95\xc0\xf1\x62\xf1\xfc\xee\x39\xfc\x89\xcd\x9c\x34\xb9\x03\xac\xbb\xd6\xbf\xa6\x39\x0a\x06\xcc\xc4\x82\x23\x37\xd8\x14\xec\x5c\xca\x30\x62\x40\x3f\xcf\x8f\x9f\xa3\x96\xdf\x2e\x86\x86\x4b\x6e\x8d\x96\x91\x95\x29\x2b\xf3\x7e\x53\x62\xb0\xd3\x50\xba\xd0\xa8\x54\x42\x24\x3a\x78\xfe\x41\xa3\xa6\x91\x2a\x2a\x8b\xd4\xe4\x4f\x76\x4b\x3a\xa1\x29\x74\x85\xd7\xbc\xc1\x2f\x68\x1e\xb7\xf1\x85\x54\xbc\x4d\x8c\xa7\x6e\x70\x4a\x76\xd2\x27\x3b\xbd\x5d\x57\x12\xaf\xba\x36\x96\xf8\xa5\xdc\x86\xc7\x2e\x11\x85\x0b\x57\x1d\xd1\x8b\xee\x5f\xd6\x92\x60\x31\x79\x32\x94\x6f\x6b\x5f\xd4\xdb\x97\x26\xf1\x84\x74\x46\x57\xf8\xfe\xbe\xd1\x7a\xd6\x50\xe6\xf4\x02\x91\x1f\xff\x61\xac\x6c\xeb\xd9\x81\x10\x8d\x8a\xd7\xd2\x49\x5f\xb4\x17\x91\x17\x1f\xd3\x7d\xd9\xb7\x3f\x1a\xa5\x06\x5e\x5c\x23\x86\xdc\x4d\xe1\xb7\xc6\x6b\xdc\x48\x44\x1c\x1f\x7b\xc2\x84\x23\x73\xee\x0e\xad\xb3\x1c\xf8\x56\xec\xcb\x09\xed\xab\xe5\x2f\x6a\x30\x44\x2e\x18\x99\x68\x36\xdc\xb8\x7e\xac\x96\x3f\x37\x3b\x07\xe6\x1e\x1d\x2d\x61\x5b\xc8\xa8\x38\xb4\x6e\x63\xb3\x0c\xd2\x91\x92\x49\x3c\x60\xb0\x22\x88\xc9\x30\x6c\x87\xe8\xfe\x8c\x85\xf2\xe7\x20\x70\xcc\x8f\xa4\xfa\x89\x41\x22\xdf\x74\x4c\x88\xd2\xdf\x94\xb6\x96\xbc\x9f\x96\x61\x0b\x84\x74\x18\xc1\x30\x8d\xcc\xa1\xe9\x97\xab\x5d\xfd\x38\xae\x36\x75\xd4\x9e\x9d\x20\x17\x2f\x78\x76\xc2\x9b\x6d\x1d\xab\x2a\xbe\x93\x5e\xd1\x5c\xf9\xdb\xbd\xa3\xd4\xbd\xe7\x63\xaf\x60\xa3\x42\x37\xb5\x41\x78\x26\x7b\x72\xb3\xd2\x2c\xe6\x5d\x44\xee\x6b\x9b\x3b\xf6\x5e\xb3\x84\x1e\x89\x67\xe7\x39\x77\x89\xe0\x00\x32\x58\xc0\xe1\x3c\x85\xfb\xda\xd1\x5e\x88\x0f\xcb\xc5\xe3\x55\x11\x1c\x2a\x6a\xb0\x57\xf7\xc8\xc8\x6b\xe3\x32\xf1\x41\xe4\x9d\xb7\x1f\xc2\xcf\xf6\x6a\x63\xb6\x18\x96\x1c\xcf\xb9\x33\x1d\x1b\x14\x73\xb1\x2a\x29\x03\xeb\x31\x7c\x6a\xbf\xd6\x5f\xf0\xc5\x61\x9b\xf9\xdc\x69\x59\x95\x94\x30\x82\xce\xc7\xa3\x53\x27\x68\x01\xc3\xf6\x49\x31\x3a\xee\xa9\x53\x30\xa9\x6d\x23\x16\xd3\x75\x06\xcd\xd5\x90\x00\x81\x67\x45\x0f\x82\x8f\x2a\xae\x13\xe8\x72\x40\x9f\x01\xca\x2e\x37\x64\xab\xcc\x53\x1c\x5c\xb6\x49\x99\x08\xca\xd5\xb7\x9f\x96\x56\xca\x9e\x22\x37\x96\xfd\xaa\x26\x66\x48\x5d\xec\x24\xd6\xe0\x99\x79\xeb\xe4\x0d\xd4\x11\x90\xd5\x33\xf4\xa5\x2b\xf4\x92\x08\x57\x8b\x76\xa3\x3f\x04\xfc\x35\x87\xf9\xc6\xac\x10\x13\x5a\x6b\x00\x3d\x19\x7a\x52\xeb\xd7\x24\xf2\x83\x1c\xbf\xb4\x52\x91\xd3\x67\xb8\x08\x21\x32\x5c\xd1\x2d\x14\x98\x8c\x3b\x02\x22\x74\x11\x98\x06\x95\x2d\xd8\x12\x60\x39\xe3\x15\xad\xde\x77\x5d\xce\x0d\x13\x1b\xfc\xf9\x95\xaa\x13\x48\xca\x41\xee\x71\xb9\xaf\x02\xd7\xc2\xa8\xc6\xfb\xdb\x5b\x9d\x74\x48\xf0\x51\x95\xd8\x0a\x64\x3d\xbb\x73\x75\xd2\x34\xae\x41\x86\x96\xd9\x77\xe8\x13\x5a\xae\x5b\x25\x0c\xdb\x6a\x7e\x98\x9f\xef\xab\xca\x57\xb8\xe8\xe0\x1a\x2a\x74\x85\xe5\xf5\x9a\xbd\x02\x37\x37\xbf\xd4\x95\x45\x49\x09\x19\x40\xdc\x80\x57\xff\xd5\x97\x64\xd6\xc0\x14\xd7\xa0\xf2\x4b\x1a\xd0\x05\x3b\xc8\xf6\x1b\x82\x50\xfb\xb7\x1e\xbe\x99\x96\x50\x83\xdf\xe4\x9c\xd9\x3c\xc7\x9c\xd9\x0e\xc8\xa7\xdc\xa0\x33\x5a\x57\xc5\xf7\x71\xd5\x15\x73\xe7\xf0\x91\xcd\x43\x8a\x04\x79\x85\x95\x2c\x88\x37\xd1\xaa\x9d\x49\xb4\x69\x9b\x32\x13\x32\xa9\xc3\xe3\xb5\xc0\xcf\xa5\x9b\xc5\xa3\x53\xc4\x2c\x9e\x56\x28\xe2\xa0\x5f\x58\x3c\x25\x45\xed\x41\x19\xbc\xa9\x66\xfc\x28\xcf\x73\xab\x8e\x19\x93\xa6\xf1\x2b\xfe\x94\xa9\x15\xad\xb8\x26\x52\xca\x68\x19\x8d\xb3\x75\x50\x80\x03\x37\x24\x8a\x93\x7b\x76\x8f\xd1\x6a\x4c\x64\xde\x11\x20\xe6\xc7\xf5\x4b\x78\x9b\xad\x0d\x35\xa2\xc5\xc8\xec\x06\x57\x0a\xfe\xcb\x49\x8d\x6b\x1a\x10\xdb\x2f\x90\x04\x43\x70\x88\xf7\xc8\xe7\xcd\xbf\x36\x7a\xfa\x5f\x7c\x7d\x50\x12\x33\xa2\xcf\xce\x4c\x4c\x07\x92\x2b\x6c\x31\x3a\xcc\x8c\x5a\x2b\xe7\x11\x36\x82\xf3\x70\x8d\x06\x7e\x08\xec\x12\x9c\x4d\x42\xb8\x79\xe3\xb3\xc2\xce\xd5\xe6\x31\x8e\x4b\xee\xfd\x6e\x94\xce\x63\xa3\x46\x85\x0b\x18\xed\xcb\xf6\xe3\xca\xcd\x02\x57\x81\x37\xe6\xbe\x37\x69\xa8\xda\x93\x11\x07\xd1\xa7\x26\x5c\xaa\x9f\xdd\x40\x8c\x4d\xa6\xaa\xb9\x9f\x7e\xf8\x49\x2d\xd7\x33\xeb\xc8\x21\x0d\x64\xf1\x64\x54\x82\xfa\x72\x73\x12\x34\x99\x4f\x53\x7c\x88\xdc\x34\xad\xb1\x20\x86\x64\xbc\x39\xfc\xc2\x71\x05\x34\x66\x51\x2f\x25\x4c\x9e\xf9\xdd\x0e\xad\xde\x47\xbe\x6f\xe1\xba\xa7\x8a\x79\x64\x0e\x3c\x21\x33\xfe\xba\x50\x0d\xbd\x3a\x2b\x4f\x91\xa9\x85\xc9\x93\xaf\x99\x3c\x1d\xc6\x94\x87\x2f\x54\x65\x25\x6a\xb8\xc1\x99\x66\xc5\x7d\xcd\x63\x14\xea\x70\xf2\x1e\xef\x06\x5d\xb6\x2c\x01\x2d\xfa\x44\x50\x4e\xc3\xeb\x4e\xe9\xce\x0b\xca\x33\xef\x66\x42\x82\x29\x3a\x8d\x6a\xf1\x9c\x72\xc8\x01\xbe\x4f\x7d\xda\xe0\xcd\xa1\x25\x5a\x93\x87\x24\xa2\xb3\xd9\xdf\x6d\xd3\xf0\xd4\xc4\x8c\xa9\x84\xff\x7d\x40\xb1\x59\x43\xaa\xd6\xdc\x6d\xb3\xe5\x51\x57\x0c\x18\x27\x4c\x86\x5f\xaa\xc9\xf3\x80\x11\x1a\x65\xf8\xb5\x1d\xfa\xf6\x6e\xd4\x31\x20\x71\x34\x7a\xf7\x3d\x8a\x5f\x89\x8d\xea\x36\xf6\x3c\x07\xd4\x2e\xc2\x7f\x7b\xb1\x49\xf1\xa5\x86\x13\xdc\xfe\xd8\x6e\x7e\xce\x2d\xe0\xcc\xe2\x68\x1f\xfd\xdd\x1a\xce\x71\xb8\x05\xb4\xe2\x92\x58\xf7\xa5\xfd\xba\x32\x79\xb9\xc6\x3b\x43\x2a\xdd\xeb\x62\x8d\x40\x82\x1d\xcf\x62\x24\xe9\xc4\x66\x6f\x6c\x97\xef\x9c\xa7\x7d\x1c\xe3\x70\x42\xb7\xcf\x10\x08\x26\xd1\xce\x99\xf2\xa4\xc2\x32\xa4\x26\x86\xc6\x81\xf3\x60\xf2\xba\x91\x9d\xd8\xb9\xb4\xdf\xc5\xeb\xd4\x05\xd7\x5d\xdb\xd4\xb2\xfa\x63\xaf\xae\x37\x0d\x07\x17\xa9\x89\xd9\x52\x66\xf4\x4a\xce\xcf\x5a\xc9\x82\x6a\x93\xe8\x55\x76\x45\x2f\xcf\xf0\xaf\x0d\x6c\x3f\x60\x3c\xa6\x7f\x79\x90\x1e\xf3\xaa\x2e\x72\x08\xef\x7c\x87\xcf\x9d\x94\x89\x75\x81\x1a\x46\xe0\x12\x1c\x93\x3f\x33\xd4\x6d\x52\x96\xac\x22\x27\xee\x59\x53\xcd\xac\x77\xda\xe4\x69\x5a\x50\x0f\x7f\x7f\xac\x55\x7b\xd8\xbc\x01\x1b\x3c\x28\x23\xc9\xe4\x8e\xb6\x69\xbc\x46\x38\xb5\x29\xfd\x02\x5d\x64\x83\x43\x17\x41\x8e\x27\x95\xb8\xfe\xb2\x4d\x3e\x69\xc3\x82\x3e\x4e\xd8\x36\x6c\x68\x0a\x81\x0b\x65\x55\xe6\x07\x5b\x2e\x52\x84\xd3\x1c\xe2\x53\x26\x30\xec\xa7\xf6\x6a\xd5\xac\xc1\x02\x9f\x38\x31\x62\x30\xbf\x61\x8d\xe6\x07\x66\x21\xa7\x6c\x21\x22\x8b\xe7\xdc\x7c\x85\x0a\x64\xd6\x45\x23\x25\xf7\x6b\x0d\xae\x66\x11\x4f\x34\xf5\x96\x97\x24\xdb\x9c\xc6\x53\xd3\x07\xe6\x5c\xa4\xe4\x3a\x36\x76\xfc\x58\x01\xe6\xdc\x9d\x62\x7a\x8d\x1d\xb0\x3e\xd4\xdf\xf4\xcf\x2d\x19\x83\x1a\xd4\x29\x17\xba\xf9\xf2\xbd\x7e\x8d\x06\xa9\xc4\x76\xa9\x80\x5c\x70\x10\x8f\x9b\xd2\x99\x59\x87\x63\x32\x41\x6c\x9f\x94\x9b\x76\x46\x43\x78\xda\x36\x2e\x27\xce\x26\x9f\xad\xf1\x25\x3b\xcf\xc6\xdd\xc8\x31\x99\xca\xc5\xfc\xe1\x2e\x41\xfd\xa3\x75\x5e\x79\x0d\x1f\xab\xbb\xcf\x63\x27\x9e\xc3\xac\x9f\x24\xb3\x2b\xec\x40\x73\x18\x32\x91\x47\x8e\xc8\x9f\xc7\x2e\x0c\x30\x21\x6f\x9b\xa8\xe5\x2f\x81\x5d\x43\x9e\x5f\x28\x46\x69\x2f\x90\xb0\xe5\xd6\x3e\xf9\xe6\x15\xda\xf1\x26\x34\xe0\xfb\xe1\xe3\x5e\xa0\xe9\x4d\x7b\xb4\x51\xc4\xc8\x49\x60\x52\xcb\x96\xa4\x62\xbc\x8f\x85\x55\xda\xa7\x5a\x78\xc6\xd1\x1d\x98\x65\xee\x90\xf6\x34\xbf\xfd\x65\xd7\xcd\xbb\xf6\xba\x68\xed\x5c\x74\xbf\x34\xa2\x2a\x37\x41\xb1\x33\x87\xd7\xf1\xe0\xe5\x06\xcc\xa5\x1e\x2e\x05\xa2\x5e\xad\x9a\x02\xa2\xcd\xfd\x91\xc2\x6f\xae\x51\xd1\x70\x36\xb7\x04\x8c\xbe\xb0\x74\x4e\x4a\xd4\x48\xc8\xd1\x43\x16\xe8\x1c\xd0\x75\x24\x1c\x93\x61\x93\xef\xf4\x1f\x3c\x37\x52\x59\x6b\x05\x5c\x43\x76\x10\xd3\xf4\x73\x5f\x7f\xe9\x32\x2d\xee\x58\x88\x81\xf6\x73\xaf\xf2\x80\xbf\xb8\x7b\xbc\xd2\x82\xaa\xd2\x32\x43\xae\x45\x8c\x66\xc8\xef\xaa\x7c\xab\x16\x8a\xdb\x78\x86\xb4\xbb\x53\xa9\xcb\x24\x7b\x6b\xc0\xc8\xf4\x11\x58\x71\xb0\xf4\xcd\x09\xdb\x34\x81\x0a\x2b\xb1\x8b\xc8\x7a\xbe\x0e\x55\x29\x5b\x7e\x2c\x44\x9d\xdd\x38\x58\x67\x25\x62\x21\x12\x2f\xef\xe9\xe0\x70\x5d\x72\x06\x9a\x23\xa2\x84\xbb\xf7\xc9\xe6\xe0\x19\x40\x3a\x08\xe8\xd4\xe7\x1f\xd3\x98\x01\x98\x79\xd4\x81\x11\x3a\x8f\x91\x77\x2f\xd7\xc6\xb5\xd4\x20\x50\xe9\x7a\xcd\xa6\x19\xd9\xd7\x35\x74\x1a\xaa\xa3\x0a\x2f\xc7\xf8\xb6\xfd\xa7\xd1\xbc\x79\x9b\xd8\xba\xf1\xf6\xdf\xbf\x1c\x15\x95\x20\xf1\x6c\x8c\x60\x3b\xfd\x51\xeb\xd6\x15\x88\xe3\xb9\x84\xc5\x01\x20\xb7\x62\x7d\x32\x8d\xae\x81\x93\x19\xb7\xe8\xec\x4d\x26\x30\x2c\x68\x76\x02\xbd\xec\x34\xaf\xc1\x62\xff\x7c\xf8\xf2\xb3\x73\x2e\xd3\x5f\x0e\x43\x86\x8f\x19\x34\x02\xe2\x7e\xd1\xc3\xf3\x79\xbe\x52\xa6\x30\x2f\xfc\xc4\xac\x0b\x44\xa8\xb6\x85\x6a\xee\x5d\x0f\xca\x36\xb9\x81\x6d\x5c\x04\x9a\x7d\x53\x41\x79\xb7\xe6\xf6\xe9\xd1\x6a\x22\xf9\x9b\x7b\xfb\x98\xd6\xb4\xa9\x12\x96\x8a\x0f\x95\x4d\xb1\x60\x21\x80\x54\x72\x4b\x9e\x4b\xff\x41\x50\x61\x88\x38\x0a\x99\x74\xf0\x2b\x23\x94\x4e\x6d\x45\xe9\xd3\x86\x77\x76\xc8\x85\x4c\x98\x49\x1c\x6c\x45\x1f\x39\x66\xe0\x28\x2d\x05\x8c\x8e\x6f\xc1\x16\x0e\x3f\xed\xf2\x51\xcc\x0a\xea\xa0\x22\x76\x54\x1d\xed\x5d\x13\x65\x6a\xe5\x5b\xa8\x1e\x7d\xd8\xab\xb3\x74\x45\x27\xcc\x2a\x89\xf0\x79\x7d\x79\x12\x67\x3c\x9f\xe8\xa8\xf6\x95\xcf\x5d\xa2\x7c\x1e\x49\x54\xce\x62\x98\xd5\x23\xd2\x88\xb2\x86\x14\x42\xc6\x65\x47\x35\xc7\x0a\x30\xcb\xb8\x3a\x9e\xb3\xe7\x3e\xfb\x82\xd2\xf4\xe7\xb8\x88\xae\xf0\xec\x81\x26\x32\x2b\x54\x4b\x77\xbe\xa9\x49\x7f\x06\xcc\xb4\x39\x2f\x28\xf3\xf3\x05\xcd\xaa\xd5\x38\x86\x67\x67\x3f\x33\x3f\x5d\x32\x70\x05\xcf\xfe\xa8\x0e\x57\xae\xd7\x3e\x87\xf8\x0d\xa8\xb0\xe1\x0d\x5e\xd5\x39\xb2\x39\x3e\x88\xa6\xe3\xe6\x71\x69\xd0\x56\x37\xad\x61\xc7\x23\x54\x0b\x10\x3f\x7a\x4a\x37\xff\x36\x51\x6c\x9a\x9e\x3d\x67\x77\xd3\xdc\x26\x88\x22\x88\x54\xb5\xcb\xde\xf6\x4a\xff\xf2\xdc\xfc\xb7\xcf\xba\x7c\x4f\xcf\x2b\x71\x4f\x2c\x31\x7e\x9b\xa1\x1d\xc7\x7c\x3a\x17\x7f\xeb\x80\xf1\x5a\xd7\x99\xc8\x28\x91\xfb\xcb\x47\x09\xae\xcd\x4c\x09\x8f\x84\xbb\x1e\x4a\x80\xb5\x93\xa7\x14\xba\xc2\x9b\x8e\x6a\x62\x4e\x18\x19\xd1\x81\x24\xba\xf0\x5f\xe9\x54\x46\x66\x2c\xa8\x56\xe0\x9d\x8e\x1d\xd7\x44\x2d\x99\xca\x4b\x48\xbc\x54\x8b\xa4\x86\x45\xa9\xed\x09\x0f\xc5\x7b\xdf\x94\xad\x0b\x1e\xc0\x78\x66\x9d\xf9\xd4\xa8\xf4\x07\x16\x0a\x62\xb7\xb8\xe3\x85\x56\x67\x6c\x7a\x90\xf9\xf2\x52\x09\x19\x9d\x12\xed\xe1\xb0\x78\x68\x88\x0a\x9b\xb4\x0a\x5d\xe1\x95\xc7\x14\x5d\x49\x5a\xe4\xdc\x8a\xd0\x3c\xa1\x0b\x37\x47\x35\x4a\x02\xf6\xea\xcb\x86\xaf\xf3\x73\x79\x25\x0d\x6c\x1a\x78\x89\x23\xd5\x3d\x3d\xd2\xdb\x19\x08\x4e\x71\xde\xd3\xb3\x49\xe6\xa1\x51\x95\x00\xc5\xf0\x90\x25\x2d\x22\xb7\x89\xf2\x13\x98\xcf\x86\xaf\x9e\x54\xee\x3c\xf0\xab\xc8\xe1\x73\xa0\x63\x63\x14\x21\x46\x0f\xdb\xa8\x22\xb7\xe1\x4d\x1f\x2a\x5a\x2e\x75\xe2\x98\x36\xf4\xf8\xc2\x17\xad\xb4\x3d\x47\xe0\x10\x90\x0a\xf3\x1b\xfd\x41\xdd\x7f\x94\x1d\xa1\xa6\x0a\x9e\x4f\xfc\x20\xee\xf1\x5f\xae\x0d\x0b\x11\xc3\x0e\x8a\x16\xa5\xcc\xec\xd8\x20\x5e\x4d\x80\x74\x3d\xe6\x1a\xac\x1d\x27\xd3\x07\x9a\x90\xd3\xf2\x44\xf3\x21\x9d\x06\xdc\x7b\x54\xe3\x43\x92\x1e\xde\xc7\xea\x7c\xec\xe2\x84\x74\xde\x4c\x4b\xb9\x23\xab\x05\x72\xcf\x23\x65\x47\x6a\x3e\x65\x0e\x1c\x4c\x07\xa9\xe8\x01\xd1\xba\x84\xa8\x9e\xde\x2b\x9f\x6c\xd5\xb0\x82\xb2\x3a\x47\x3b\x66\xc7\xed\x6f\x98\xc9\x84\xcc\x91\xcb\xbc\x4c\x6d\x93\x53\x10\xb3\x57\xec\x48\x7a\x2e\xed\xd3\x3a\xa3\x9f\xe4\xe2\x1e\xa4\x50\x96\x80\xf3\xef\xf1\xb7\xce\x17\x35\x5f\x74\xf2\x86\xd3\x87\x35\x51\x05\xfd\x46\xa1\x4c\xa3\xed\x09\x73\xb4\x2f\xbe\xd4\xec\x7a\xe0\x94\x7d\x2b\x6e\xfa\x5e\xff\x2c\x3f\xcc\xaf\xeb\x71\x31\x87\xd7\x67\x9e\x3e\xa6\x89\x31\x62\x4e\x10\x97\xd3\x91\xb9\x0b\xfb\x11\x9a\x88\xe5\x0d\xf6\x75\x48\xe8\x2a\x6b\x46\xdf\x1b\x2f\x8a\xa3\x59\x18\xbb\x6e\xdf\xae\x74\x12\xd5\x89\xdd\xff\x6c\x90\x19\xb1\xcf\x88\x41\x6d\xa0\x50\x67\x4f\x9e\x81\x8d\x03\xf2\xb4\xd3\x95\xd6\xf2\xc9\x97\x9a\x74\x55\x58\x6c\x7d\xfa\x31\x0d\xcc\xce\x50\x09\x59\xf1\x21\x13\xfe\xbb\x90\xb4\x30\x88\x4f\x7a\x31\xcf\x72\x72\x2f\x68\x00\x74\xd7\xa2\x3e\x4f\x40\xb1\x60\x9f\xe4\xef\x7b\x39\x79\x65\x31\x0c\x95\x25\xfd\x24\xaf\xd2\x48\xf5\x93\x4e\xcf\x4d\xbf\x88\x5a\x60\x47\xe7\x63\x31\xc6\x1b\xfe\x72\xa5\x06\x31\xe5\x07\x79\x3f\x0c\xc9\xbc\x37\x46\x4c\x39\x81\x9f\xab\x0c\x6f\xf2\x4b\xb7\xab\x1c\x6a\x93\x70\x1a\x63\xb8\x45\x73\x4f\xa9\x62\x13\x18\x84\xe5\x42\x57\x58\x55\x1a\xc2\xc4\x01\x27\x6a\x68\xe1\x57\xda\x87\x88\xd4\x9d\xfb\xc5\x40\xb1\xd7\x31\x28\xf9\xb7\xb3\x0a\x5d\xe1\xc5\x36\x3f\x4c\xa2\xcf\x13\xfa\xe2\xd1\x3f\xbb\x75\xa1\xe0\xfd\x38\xc8\x37\xc0\xfb\xff\xd1\x3d\x89\x98\xb1\x29\xd5\x81\xc2\xd2\x47\x69\xbc\x6d\x20\x26\xcc\xb9\x39\x47\x9b\xe6\x61\xd4\x88\x92\x09\x43\x74\x4d\x4e\xb4\x69\xe3\x66\x55\xa6\x3f\x5e\xda\xaf\x37\x99\x36\x61\x16\x4b\x5d\xf7\x65\x8a\xef\x72\x30\xe4\x0d\x2a\x60\xad\xd0\x15\x0e\xd7\x24\xe6\x7c\x64\x44\xdf\x1b\xf7\x87\x16\xb7\xca\x3a\x1c\x7b\x06\x32\x41\xe7\xf9\xb7\x3d\xf1\xd3\x02\x87\x01\xc0\xbd\x7d\xa5\x57\x61\xe7\xb8\x8c\x38\xe5\x22\xad\xc0\x54\xf6\xb2\x93\x3a\xce\x35\x70\x62\x1d\x8b\xdc\x39\x5a\x67\xb4\x8c\x98\x41\x04\x27\x3a\x8e\x29\xd7\x6b\xca\xb5\x06\x72\x89\x8f\xec\xe4\x70\x39\x71\xab\x42\xd5\x61\x34\xca\x3e\x7a\xd6\xca\x01\x6d\x8d\x80\x0d\x5d\x5f\xe6\x85\x39\xda\xbd\x32\x54\xc6\x66\x32\x75\xfc\xce\xcb\xfc\x11\x5d\x8f\x29\x2b\xab\x98\xc8\xd1\xe3\x78\x7d\xbe\x9c\xd4\x08\x66\x48\xed\x7e\x66\xc9\xdc\xa6\x1a\x25\x5a\x41\x51\xf4\xe0\x2d\xa5\xbb\x66\xa9\x6e\x46\x81\x4f\x1d\x0e\x2b\xba\x6b\xb5\x34\x6a\x9d\x0e\x3c\xed\x8b\xe7\x6b\xe3\x00\x17\x33\xe2\x93\x92\xd8\xd5\xff\xf8\xa2\xda\x03\x73\xb9\x66\xcf\x86\x43\x49\xdf\x83\x80\xfd\x48\xb4\xc3\xf3\xab\x55\x7d\x1a\xc7\xa3\x1c\xa5\xbc\x78\xd3\x08\x3d\xeb\xc1\x4c\x10\x8d\x2f\x1f\x9b\x92\x04\x87\x61\x61\xf8\xab\x81\xfc\xd0\x9e\xe7\xa4\xbc\x0c\x32\x87\x76\x6a\x08\x6c\x8e\xc6\x87\xa5\xac\xd1\x12\xa8\x61\x80\x72\x27\x3f\x59\xde\x66\x7a\x78\x86\x6d\x94\xc0\xf9\xfe\xf4\x16\x7f\xd0\xcb\x88\xd3\x6b\x45\xb5\x99\xac\x08\x8e\xaf\x19\xae\x05\x61\x1a\x98\x10\x4b\xf2\x37\x6f\x49\x37\x26\x18\x35\x2a\xb8\x84\x6d\x3b\xe9\x92\xca\x90\xd1\xf2\x44\xaa\xbc\x8f\x0a\x74\x2c\x0c\x06\x3f\x7f\x36\x1e\x82\x21\x13\x57\xb9\x41\xfb\x95\x9b\x87\x89\x85\xee\x61\xc4\x62\x33\xca\xec\x9b\xda\xc5\xd8\x20\xd2\x0f\x17\x63\x4f\xd5\x78\xd9\xe5\x62\x53\x2d\x1a\x5a\xef\xea\x22\x1c\x31\x8b\x7e\xc8\x19\xb9\x8b\x2a\x81\x4f\x7b\x69\x2d\x0a\xad\x5d\xe1\x8e\xe3\xbc\xa6\x5c\x10\xb8\x54\x9a\x95\xff\xea\x31\x25\x1b\x43\xdd\xd8\xe3\x9e\xd2\x58\xf3\xf6\x45\xae\x8b\x51\x2c\xe5\xd3\xd5\x97\xdd\xfd\xb8\x3c\xc1\xeb\x88\x15\x3c\x2b\xd1\x9e\x0d\xbf\xb8\x6a\xa8\x02\x6d\x60\xdd\x14\xd4\x5a\xaa\xcf\x49\x0a\x1d\xe2\xc9\x74\x42\x14\x1b\x5c\x4b\xbf\xf3\x3a\xc6\x15\x9b\x60\xce\x4b\xdd\xbe\x6c\x90\x78\x82\x3c\xcb\xcc\x5e\x6a\x29\x3a\xb8\x3e\x6c\xd6\xa3\xbb\xf4\x31\x29\xd7\xf8\xe5\xeb\xbe\xbe\x71\x88\xa2\x85\x0b\x32\x45\xe7\x4e\x54\xfa\xe7\xd1\x2b\xe4\xd5\xf2\x6b\x1d\x1a\x3a\x92\x4b\x33\x70\x49\x9d\x31\xab\x74\x09\xf3\xb2\x3c\xe3\x33\xfb\x0f\x0e\x51\x04\xaa\xbc\x52\xf4\x17\x5f\xda\xac\x59\xed\x10\xaf\x02\xa6\x95\xe1\x78\x45\x43\x18\x46\x14\x4e\x72\x1a\x6c\xd0\x26\x64\xe2\x94\x15\x31\x26\x77\xfa\x75\xfe\x38\x6e\x74\x48\x89\xf3\x78\x34\x17\x62\xd7\x42\xac\x8a\x0c\x1c\xf8\xc4\x10\x58\xad\xae\xf0\x3b\x1b\x15\x08\x52\x9d\xab\x15\xe7\x0b\xbb\x87\x4a\xa1\xdf\xc4\x59\x65\xfa\x26\xa9\xed\x00\x82\x39\xcd\xcd\xcd\x67\x27\x68\x67\x3d\xad\x73\x50\x4d\xb2\xd9\x96\x8c\x52\x84\x77\xb8\x41\x2f\x54\x19\x1b\xdc\xf4\xc5\x56\xa3\x1d\xc4\x68\xda\xb4\x2a\x9b\x2f\xca\xa7\xe3\x05\xc5\x3a\x6a\xc4\xb8\xc7\xdc\xb7\x8f\xeb\x76\x0c\xb6\x9d\x80\x6a\x96\x6b\xc6\x66\x7c\x23\x36\xc4\x70\xf1\x2a\xe1\xf3\x5d\x13\xd3\xd4\xfc\xd5\xd2\xdc\x0f\xf9\x56\xca\xf5\xe1\x95\x0d\x12\x45\x2a\x9c\x58\xcb\xef\xa5\x8b\x68\x93\x70\x35\x88\xcc\x6a\x29\x42\x37\x19\xd0\xca\xf9\x4f\x1d\x97\xf8\x79\xbb\xd9\xeb\xfe\x6f\x4b\x64\x08\x21\x76\x43\xce\xfb\xc3\x87\x47\x25\xb9\x20\xea\x6d\x62\xc2\xdf\xb7\x4b\x39\x4a\x1d\x1f\x01\x70\xf2\xeb\x8f\x2b\xf0\x8e\x68\x25\xf3\x00\xd3\xb9\x4f\x81\x7c\x23\x26\xd0\x27\xaf\x2a\xa2\xd6\x9c\xd2\xc5\x47\x69\xe1\xa3\x6f\x8a\xf3\x98\x16\x8b\x98\x01\x40\x7b\x8f\x90\xe3\x29\x07\x0e\x74\xa7\x0b\x5d\xe1\xed\x23\x39\xff\xef\x26\x62\x30\x0a\x6e\xf7\xfa\xca\xf8\x7f\xa7\x35\xe4\x74\x6c\x38\x80\x84\xf6\x61\xfe\x1c\x09\x84\x76\x4b\x0a\x81\x32\xfb\xff\x66\x29\xf8\x39\x82\xca\x0e\xf5\x38\x7e\x36\x77\xef\x76\xf5\x79\x25\x05\x3c\x4c\x83\xee\xba\x44\x61\x56\xeb\x40\xa7\xb0\x7b\xbe\x26\x65\xa7\x28\xc0\xc5\xb0\xc4\x75\xae\x2c\xe5\x50\xc9\xc7\xcc\xa1\x20\x7e\x70\xfe\x87\xba\x37\xa8\x53\xc2\x20\x6c\xcc\x8f\xe5\x15\xbb\xf9\x61\x7f\x2d\x62\x81\xa7\x34\xdc\x33\x3b\x16\x28\x84\x64\xec\x04\x90\x1f\xe6\xef\xcb\xf2\xf0\x7b\x2d\xa0\xdf\x92\x0e\xd6\x0b\xca\xa0\xa5\xd0\x80\x76\x4d\x5f\xfe\xb3\x2f\x4b\xf6\x62\xd0\x84\xc4\xce\xdf\xc5\x15\x64\x0a\x8b\xfa\x59\x5c\xd9\x61\x67\x39\xed\x67\x85\x65\x58\xb8\x42\x0d\x8b\x80\xf3\x63\xb2\xc4\xfe\xd4\xae\x0d\x20\x40\xb7\xc6\x11\xb2\xe8\x22\x5d\xfc\xd6\x68\x45\x35\x55\x1d\x26\xfc\xe3\x04\xbe\x28\x40\x47\x90\xcb\xc5\x64\x46\x6d\x4e\xbf\x73\xaf\x4a\x7c\x4b\x6d\xec\xe5\x6f\x55\x66\x76\xb8\xc7\x8d\xbd\xa3\xbe\xbf\x55\x12\xf3\x79\x23\x2e\x2a\xa2\x75\xac\xda\xcf\x26\x0e\x57\x24\x31\x6a\xe0\xd3\x2d\xa6\xe8\xbf\xed\x00\xa9\xf0\xe8\x4b\x97\xcf\x5f\x51\xe8\x0a\x47\xec\xfd\x84\x72\x38\x57\x8b\x9c\x99\x92\x2e\x7a\x97\xb6\x2a\x56\xe7\xbe\x2f\x42\x53\x38\xa1\x33\xbd\x54\x8a\x8d\x0a\xad\xa5\xfa\xeb\xe1\xb0\x89\x69\x55\xcb\xaa\xed\xf5\x67\x6d\x93\xbb\x63\x8f\x4a\x56\x70\xca\xb1\x3a\xdd\x61\x81\x83\xeb\xaa\xd8\x09\x31\x26\xeb\xe4\x75\x68\x5d\xcf\xd5\x29\x2d\xcd\x99\x0f\x5f\xa6\xe5\xb7\x4e\x19\xcc\x51\x40\x4d\x50\xc4\xb6\x17\x96\x0c\x55\xb4\x38\xab\x02\x70\x34\x53\xe1\x92\xbb\x8c\xfa\x98\xbf\xdd\x49\xfb\x93\x2d\xd8\x20\x8a\x49\x47\xee\x96\xc7\x9b\x26\x43\xa8\x22\x96\xfb\xea\x87\x85\x5a\x01\x32\x00\x8c\xfa\xd9\x27\x74\xf0\xbc\x17\x17\xf8\x61\xcb\xa9\x11\x4d\xa1\x52\xd4\x03\x99\x9a\x29\x57\x7c\xc7\xd4\x49\xd3\xa0\xd3\x35\xf5\x30\x5f\x56\x9e\x8d\x1a\x5c\x11\x2f\xbc\xf0\x6c\x13\xed\xb0\x5d\xa0\x09\x7e\x3e\x56\xf8\xe1\xa2\x32\xea\x05\xe5\x97\x70\x9b\xa3\x3a\xd7\x39\x26\x70\x23\x01\x42\x73\xff\x15\xda\x69\xca\x8c\x80\xf8\xfd\x11\xa1\x32\xe3\x1d\x9e\xab\x75\x4c\x51\x6d\xb9\x33\xbf\x12\x8c\x82\x05\xc8\x8c\xbb\x4e\xb9\x3d\x1a\xf1\xc4\x0b\x98\xcb\x08\x08\x6b\x83\xa5\xd4\x5d\x8a\xf8\x46\x54\xd4\x89\x3a\x6d\xdb\x83\x0a\x3f\x3f\x10\x92\xd0\x99\xa1\xa3\x92\x65\xbc\xac\x2b\x5a\xc6\x03\x8a\x9a\xb3\x09\xf1\x5c\xf8\x14\x91\x8a\x64\xff\x7f\xc7\xd2\x0f\xd8\x0d\x62\xd1\xe6\xbe\xcc\xc4\xed\xe2\x45\x31\x30\x27\x0b\x37\x1f\x51\x88\xc7\x81\xeb\x72\x56\xde\x9d\xcb\x75\x41\x0b\x60\x3b\x41\x0f\xa4\xf5\xc0\x50\xe9\x49\x1f\x7b\xee\xf4\xbd\x98\xfc\xd0\xc1\x7e\x1c\xbf\xa6\xbc\x9d\xce\x04\x2a\x84\x55\x34\x60\xc1\x8a\xd7\x92\xd5\xc6\x90\x54\x84\x08\x87\x8f\xd2\x1d\xa1\xa9\x0b\xfc\x45\x5e\x07\xdc\xf2\xdc\x45\x0a\x12\xb7\x44\x41\xc0\x04\x2a\xed\xaf\x6b\x07\x31\xb2\x41\xeb\x39\xb4\x17\xa9\xd6\x51\x06\x75\x4c\x20\x84\x4c\x7e\x40\xb7\xf7\xaa\x56\x71\x54\x22\xda\x5e\x2c\x40\x63\xe5\x5b\xc4\x1e\xc1\x55\xe4\xf3\x80\x9d\x79\xe5\xa0\x62\x24\x42\xa1\xeb\x14\xde\x79\x56\x83\x17\xc5\x56\x76\x50\xea\xf6\x1d\x94\x13\x3c\xa5\xfd\x01\x55\xf2\x6d\x8f\x89\x15\x6e\x21\xa3\xc2\x87\x2a\x99\xbd\xa1\x62\x81\xd5\xf0\x7c\x80\x7b\x86\x4b\xb6\xb4\x88\xe3\x8c\x18\x15\x0e\xc1\xe8\xcb\x5f\xde\x3d\x5c\x59\x50\xac\x82\xfd\x24\x23\x1a\x7a\x54\xbe\xdf\xa9\x1d\x93\xa6\xcc\x68\x8f\xfe\xa0\xbe\x23\xdd\x3c\x77\xb0\x8f\x9c\x06\xb2\x02\x35\x4d\xeb\xcb\x7e\xe1\x49\x21\x0d\x14\xbd\xfe\xe6\x44\xef\x88\x06\x48\xaa\x63\xc7\x17\xed\x80\x05\xad\xa2\x9c\xc0\x4e\x2d\xb1\x88\x5d\xeb\xca\x3b\xb2\x49\x8d\x8b\x71\x84\xbf\x3c\x34\x4c\x91\x1c\x36\x7c\xce\x48\xcf\x6c\x9d\x2d\x11\xc0\x35\xcc\x3c\xab\x48\xeb\xaa\x86\xf0\x83\xbc\x2b\x32\x79\xda\xcc\xb6\xc9\xa0\x81\xf1\x8d\x76\xa9\x0c\xd2\x4d\xe1\x25\x8d\xeb\x11\x2a\xac\xd4\x71\x19\x2d\x81\xb0\x4a\xee\x89\x71\x7c\x07\x94\x85\xac\x6f\xd6\x7d\x42\x06\x64\x37\x70\xe2\x2b\xc8\x3d\x56\x4a\x1a\x52\x53\xc0\x9f\x2d\xf3\x4f\x2b\xb5\x22\xd1\x46\xb1\x18\xf6\x07\x1a\xd6\xce\xc6\x60\xff\x17\xb7\x10\x36\x6b\x3c\x2e\x03\x05\xb1\x08\x57\xf6\x4a\x9d\xa9\x65\xd1\x3a\xfc\x2d\x2f\x1d\x66\xdf\xaa\x60\xf3\xa9\x29\x78\xa0\xb9\xf9\x0f\xc9\x43\xd8\xb0\x94\xea\x79\xda\x4e\x3d\x34\xce\x98\xce\xfb\xb6\x8f\x74\xf7\xe7\x67\x1e\x15\x29\x42\x15\xf4\x56\x2d\xb0\x60\x9b\x18\x5c\x84\x97\x97\x4a\x9b\x17\x6a\x2c\xc8\xc0\xa7\x0e\xad\x72\xfc\x5c\xf6\x67\x59\x09\xf8\xb3\x30\xe7\xdc\xa6\x53\x93\x21\xa1\x94\x72\xaa\x37\xeb\x9c\xad\xd4\xec\xb7\x05\xa3\x99\x0f\xc0\xff\x34\x56\x82\xc4\x7c\x46\xaa\xdc\xbf\x3c\x5e\xa9\x43\x26\xc8\xdd\xed\xda\x34\x28\x5b\x3c\x89\xf8\x4f\x5d\xfa\xb6\x54\x22\xb0\xb9\x63\x94\xef\x6f\xb4\x66\x1e\xe4\x19\x5c\xf3\xa8\x2f\xbf\xec\x01\x55\x11\x33\xaa\xe8\xb8\x84\x5f\x6e\xae\x9d\xc6\x4d\x55\x18\xb5\x6d\xde\x54\x4a\x6f\x91\xef\x8e\x52\x45\x10\x0d\x9f\x94\x20\xc0\x66\x56\xb0\xc1\x22\x51\x37\x39\x66\x24\xfc\xe7\x16\x1e\x02\x3a\xda\xa1\xec\x81\x79\xe4\xdd\x25\x7d\x78\x15\x30\xe2\x55\xf9\x39\x77\xdd\x58\x6d\xc5\xf1\xae\x90\x10\x15\x7d\x67\xe5\xd0\xb4\xd6\x33\x94\xd2\x53\xcf\xe1\x18\x46\xdc\x88\x8e\xc5\x07\xec\xe1\x5a\xbe\x8f\x6c\x30\xd4\x0b\x17\x3a\xe9\x5c\xa6\x4e\x29\x90\x49\xf4\x76\xc7\x78\x0d\x30\x53\xa2\xac\x22\xda\xb9\x97\x8c\x1f\xa9\x76\x23\x13\x10\x0b\x6f\xe6\x1d\x1f\xa7\xbd\x96\x7e\x8e\xdc\xf0\xf2\x55\x82\x37\x1b\xf8\x05\x5a\x82\x36\x90\x20\xf3\xac\xbe\x57\xa7\x3e\x1a\xd8\x8d\x25\x97\x72\x07\x07\x37\x69\xd0\xba\x88\x41\x6f\x22\x3c\x3d\x6b\x88\x12\x25\x60\xec\x93\x59\xaa\x77\xf5\x2d\xe2\xba\x09\x35\x29\x9c\xb0\x56\xed\x3c\x22\x03\x1b\x0c\x95\xa2\x82\xe7\xec\x4b\x43\xa5\xbf\x6d\x52\x21\x2f\xa8\x29\xd0\x0f\x0e\xf9\x17\x2e\x85\x68\x52\xf3\x28\x80\xfb\x27\xc5\xc4\x83\x79\xc3\xd3\x57\x8e\x91\x47\x62\x3c\x44\x1e\xcd\x6d\x89\x53\x03\x86\x1d\x1f\x8e\xaf\x9b\x1f\x56\xe4\x3c\x50\x94\x73\x47\x37\xf9\xc8\x07\xe9\xd7\x52\xc1\x8d\xb8\x9e\x79\x4e\x48\xf0\xcd\xbb\x61\xc1\x0a\xa8\x9e\xfc\xa1\x22\x1f\x76\xca\xd8\x8b\x45\x6b\xbf\x3d\x41\x15\x27\x02\xdd\xce\xcc\x1e\x8d\x59\xe3\x93\x6a\x31\xe6\x17\xcd\x59\x2f\x1b\x08\x75\x8c\x78\x91\xb9\x69\x7b\x3a\x67\x0e\x1c\x5c\x75\x6d\xda\x10\xd2\x8b\x10\x51\xcf\x6c\xe1\xfb\x80\x0b\x2f\x46\x8b\x72\xa8\x66\x39\x51\x44\x76\x25\x81\xf7\xfd\xb4\xd6\x64\x41\x46\xc4\xc2\x84\xd4\x64\xa3\xe2\x29\x05\x1a\xd6\x36\xe2\x3c\x87\x7c\xd7\xce\x26\xef\x67\xa7\x8c\xc5\x69\x75\xed\x7e\x35\xc4\xda\x94\x1b\x22\xe5\xee\x7a\xe6\xd2\xff\xfd\x06\xf8\x7d\x9f\xd4\x00\x63\x81\x67\x89\x0c\x65\x8a\xf4\xf9\x32\x1b\x24\x4a\xc2\x3f\xd4\xae\x00\x55\xdd\x40\x28\x88\x66\x7f\xc4\x14\x65\xbf\x28\x57\x8e\xf2\xe4\xd3\x03\x45\x4e\x0d\xe7\xc0\xb0\x9a\x3c\xdf\x1c\x0a\x21\xe0\xfc\x33\x83\xe3\x0d\xe2\x52\xe0\x5f\x64\x26\x6c\xd6\x2d\x7e\x68\xd1\xc6\xd5\x58\xaa\xfb\xf4\x63\xf2\xc5\x1a\x84\xeb\x91\xae\x5e\xab\xf3\xa0\x19\x02\xe5\x53\x99\x08\xac\x92\x36\xed\x06\x6a\xd2\xf5\xc9\x7a\xa5\xf4\x58\xb1\x84\xaa\x04\x3a\x74\xfd\x29\x52\x1e\x38\xa5\x90\xf3\x82\x2a\xac\xfb\xae\xb5\x1a\x39\x0c\x24\x9f\x38\xda\xf0\xc8\x24\xbe\x62\x57\x08\xb0\xc9\xfc\xdd\x9a\x7c\x03\x46\xb5\x86\x60\xb8\x73\xbf\xc0\x7b\xce\x4d\xf6\xa5\x81\x68\x9c\x94\xff\xeb\x98\xe4\xa7\x1e\x8e\x5b\xd9\x6b\x77\x0e\x51\xc2\x1f\x77\x5e\xb3\xe6\xcb\xb3\xa4\x42\x4c\x07\x73\xd9\x92\x7c\x97\xce\x42\xc4\xc8\xe7\x02\xb1\x99\x7f\x9c\x25\xd3\x51\xec\x19\x28\x26\x63\x85\x8b\xa5\xe9\x1e\x77\xac\xcc\x8e\xd6\xfa\x44\x81\x38\x7c\xc3\x3d\x7a\x48\x43\x86\x6f\x0b\xac\x7f\xde\x39\xab\x49\x52\x83\x44\x41\x0c\xab\x0c\x3b\x3f\xd4\xc6\xc1\x2e\xb5\x69\x99\xf4\xca\x09\x79\xee\x7b\xe3\x35\x8c\x18\x94\x0c\x2c\x25\xe8\xd9\x97\x3d\xb8\x4c\x4f\x61\x6d\x1b\x8b\xdd\x1a\xee\xe1\x96\x74\x85\x25\xdc\x70\x50\x2f\x90\x9e\x55\x2c\x6d\xa5\x93\x80\x62\x4b\x56\xe5\x32\x5e\x4b\xb6\xeb\xbe\xa2\xc4\x36\x19\x76\xe0\x98\xbf\x7e\x87\x40\xc8\x92\x2a\x65\x4d\x0b\xed\x47\xb2\x3d\x54\x0d\x8a\xca\x02\x7d\xe0\xa8\xe6\x77\x4a\x99\x89\x51\xd0\x23\xec\x7f\xa3\x52\xfa\x96\x81\x1a\x86\x80\x61\x5c\x51\x28\x20\xb9\x5b\x6c\x5d\x9d\x8a\x21\xcf\x93\x14\xd5\x3c\x3a\x9b\xde\x5b\xd8\xac\x0b\x84\x32\x84\x0b\xb2\xf6\x12\x95\x75\xda\xec\x44\xd6\xd3\x2a\x29\x12\x81\x2a\x5b\xbb\x40\x39\x2a\xb1\x8f\x19\xa1\x12\xea\x53\x7b\x4b\x13\x30\x0b\x18\x75\xb1\x6a\x76\x3d\x75\x9b\x6c\x81\xc4\x72\xd6\xc2\xe3\x63\xc2\x36\xb5\x3b\x82\x15\x39\x8c\xb5\x9a\xee\x0a\x68\x04\xc2\x98\x01\x7a\xa5\xe7\xaf\xe1\xaf\x21\x1e\x8a\xa6\xdf\xf4\x9f\x8f\x27\x77\x52\x62\xb2\x4b\x17\xbe\xb5\x52\xee\x9c\x32\x76\x2d\xc4\x38\x89\xfd\xf3\xf3\x15\x79\x2c\x87\xd6\x05\xf2\xa8\x2f\x13\xce\xbf\x4c\x0b\xf6\xac\x02\x13\x09\xa5\x41\x14\x9e\x38\x74\x6e\xf4\xbb\x1b\x96\x16\xba\x06\x5f\xac\xed\x40\x90\x85\xe6\xb2\x49\x1b\xef\xd5\x98\x5c\x9c\x23\xd0\xd5\x97\xfd\xbc\xaa\xcf\x57\x75\x6d\x20\x71\x0b\xc2\xd0\x0b\xcf\x36\xa9\xa7\x7a\x60\xab\xea\xc5\x15\xf3\xbe\xf5\x2a\xca\xd7\xa3\x76\x02\xc2\xa8\xbd\x16\x7b\x2e\x97\x28\xe3\x80\x82\xb2\xe6\x78\xe8\x5b\xc8\xe7\x50\xa2\xf0\x13\x7b\x46\x28\xed\x16\xf0\x7c\x4a\x44\xe2\xd1\x69\x39\x66\x63\x95\x24\x93\xc8\x27\xfd\x5e\x46\xf4\xf2\x2b\xfc\xf1\x51\xdd\x5e\x0b\xe4\x1f\x53\x6a\xfc\x95\xe3\xba\xd4\x34\x60\xe5\xb9\x85\xeb\x37\x1e\xfb\x64\x53\x39\x80\xee\xe8\x07\x6e\x9b\xfd\x23\x97\x2b\x2a\x04\x8e\x17\x78\x51\xa5\x8d\x8a\x36\xdc\x6f\x6e\xd4\x00\xe1\xd8\x53\x76\x38\xf2\xb5\x2f\x3b\x70\xf9\x79\x22\xb5\x2d\x74\x85\xc1\xb6\xe4\x16\x88\xa7\x37\x84\xc3\xdb\x3f\x4a\x07\xc3\x69\x53\x45\xc8\x1f\xa0\x60\x6e\x18\x29\xc7\x98\xf0\xfc\xfa\x6d\x49\xd1\xe3\x3b\x2a\x13\x6e\xe0\xd3\xc9\x03\xe4\x04\x7d\x78\x80\xf7\xbd\x1e\xeb\xf8\x20\xc8\xb1\x7f\x56\xfa\xa4\x9e\xd6\xfe\x2f\xaa\x37\x4c\x93\x3e\xaf\x38\x18\x8b\xfe\xd2\x91\xb3\xc2\x58\x02\x1b\xc8\x84\x29\xde\xfd\x27\x78\x0e\x45\x9c\x12\xf2\x03\xa1\x3c\x98\xad\x3c\xa4\x2f\x05\xee\x9d\x15\x7d\xc6\x20\x5b\xd1\x9c\xa6\x01\xd0\xd7\xe0\x79\x5e\xbd\x56\x6e\x58\x29\x4f\x0c\xa7\xda\xdf\xbd\xa0\x63\x9e\x5d\x8b\x56\x29\x13\xce\x53\x59\xf7\x0d\x6d\xe8\x17\xbd\x6c\x88\xa9\x7f\x3e\xa9\xc1\xdc\x14\xcd\x2b\x4e\x8d\xce\x7e\x4c\x68\x0d\x95\x28\x2b\x61\x12\xdb\x7f\x9d\x9e\xab\xcb\x3d\x20\x1b\xb3\xc4\x3e\xee\xcd\x1d\x4d\x3d\x70\xa7\x2d\x71\xca\xef\xcb\xfe\xf2\xbd\x78\x4c\x52\x80\xd4\x3d\xfa\xc8\x5f\x9d\x88\x9f\x5e\x29\xd6\xd8\x35\x56\xc9\x23\xa2\xa3\xbd\x6d\x66\xf4\xcf\xbe\xf7\xb8\x3a\x47\xe5\x54\x26\x80\x49\x87\xe5\x09\xfc\x03\x62\x5f\xb8\xae\xf0\x17\x8b\x74\xe2\xbb\x13\x2b\xe4\x65\xd9\xe3\x8a\x06\xbb\x8f\x82\x22\x02\x08\x45\xfe\xb6\x43\xc3\xd5\x9f\xfb\x18\xae\x10\x62\xd2\x44\xe9\x0b\x1c\x30\x5f\x99\xfb\x84\x0d\xd1\x39\x00\x50\x7f\xa1\x2b\x44\xdb\x44\xf2\x8a\x6c\xe1\xad\x45\x0e\x35\xb1\x5f\x7d\x54\x11\x2b\x27\xf7\xec\x43\x83\x45\xa2\x6e\xdb\x82\xbc\xfb\xfc\xf6\x58\xe3\x49\xd8\xe1\x42\xa6\xb1\x74\x29\x6f\x35\x5e\xd7\xab\x32\xa5\xf3\xf7\xe7\x05\x00\xb5\x46\x18\x31\xa9\xb4\xfb\x08\x2f\x1f\x9d\x5c\x33\x22\x29\xa1\xbc\xec\xea\x89\x17\xc8\x19\xc2\xcc\x42\x57\xf8\xd8\xba\xe6\xb1\xa3\xc8\x83\x7f\xf3\x7a\xbc\x90\x7d\xcc\x6a\x04\xd7\xa3\x07\xfe\xf6\xd4\xf4\x26\x9d\x3c\x53\xf8\x54\xfd\x4b\x8b\xde\x2e\x00\xe5\xf8\x44\x96\x29\x63\x9d\xbe\x58\x4b\x0b\x0d\x3f\x81\x79\x65\xbe\xfc\xaa\x52\xba\x24\x6e\x74\x99\x0b\xcf\xd1\xf2\xff\xc0\xb3\x30\x4f\x93\xc3\x77\xde\x96\xcd\xac\x32\x43\x3c\xc5\xc8\xbb\xc3\x79\xc0\x09\xa2\xc5\x60\x1f\x56\x95\x9c\xa3\xd2\x5a\x4c\x91\xcf\x6e\xd1\x4c\x15\xa8\x2d\xe1\x83\xfb\xd6\x6b\xbe\x26\x88\x99\xd8\x51\x2d\x8d\x7e\xae\x9c\x21\x77\x90\x46\xa0\x34\x1f\xf2\x23\x5e\x52\x7c\x12\x69\x91\xf7\x4a\xbe\x7b\x82\x0f\x80\x16\x32\x6a\x13\xc5\x18\x2b\xbf\xe8\x98\x3c\xed\x2b\x18\x3b\x29\x03\xa7\x5f\xef\x55\x73\x28\xbe\x58\x73\x83\x5f\x49\x5f\x9d\x8f\x19\x23\x3e\x65\xb1\x91\x63\x78\xb1\xe6\x9e\xe4\xa0\x32\x72\xa8\x4a\x6f\xfd\x3b\x9b\x3f\xa3\xeb\xa0\xb7\x76\x83\x06\x2a\x91\x98\x6d\xa1\x3a\x73\xb7\xe2\xc3\x53\x82\xa1\x44\xf8\x5f\x4a\xc3\xd3\x67\x01\xd7\xaf\x7a\xbf\x43\x08\x1d\x59\xa2\x9d\xfc\x7b\xcd\x4c\xc0\xf3\x51\x39\xf6\x93\xcc\xcc\x5e\x25\x8c\x02\xa2\x8c\xbd\xd0\x15\x56\x9e\x4d\x87\x97\x72\xe0\x78\x16\x8d\xb3\xcd\x7b\x95\x73\x97\x38\x9e\x20\x25\x42\xf7\x40\x73\x8b\x29\xd2\x6a\x31\x7a\x61\xa6\xe8\xaf\x37\x14\x48\x8c\x49\x0d\x9f\x89\xd6\xf0\x2d\xc7\xe4\x3b\xf4\xa2\x22\x1a\xb0\xfc\x7c\x8a\x58\x3e\xa1\xab\x35\x82\x42\x18\xd7\x52\x5a\xb3\x5e\xcf\xfc\x8b\xb1\x9a\xd6\x3b\x0f\xc9\x6a\xdf\xc6\xc8\x4c\x9a\x9d\x0b\x37\xeb\x2a\x15\x9c\xca\x0a\x3e\x41\x43\xcf\x68\x73\x07\x90\xcb\xec\xef\x28\x0a\x3f\xfd\x5e\x9c\x74\x5b\x94\x35\xf5\xcc\xb2\xb7\xec\x8c\xc9\x40\xd8\x0e\x4c\xde\x9c\xba\x2b\x89\xe5\xbe\x15\x9b\xda\xe4\xbf\x3c\x52\xa1\x8a\xd9\xc8\x29\x07\xa8\x9c\xc0\x64\x6f\x7c\x35\x16\xe6\xe7\x3d\xc7\x4f\x1e\x1e\xaa\x64\x4c\xc5\x80\x37\xd3\x88\xe2\x1a\x5c\xa1\xdc\xce\x23\x7f\xf1\x19\x29\x0d\xdd\x03\xbe\x0a\x4d\x89\xef\x89\x71\xf2\x19\xb9\xd4\x26\x06\x16\xd5\xd7\x25\x4f\xc8\xcd\x8a\xa3\x77\xc8\xf8\x39\xfd\xfd\xd3\xff\x9f\xee\x22\xd1\xd1\x5e\xe8\xd4\x62\x4b\x74\xa2\xd5\x84\xaf\x63\xe6\xee\x37\xc5\x53\x41\x3e\xa3\x5c\xa5\xe3\xbf\x06\xf6\x63\x57\x89\xca\x38\xae\xc0\x6f\x9e\xa8\xad\x5c\x8b\x94\xfc\xf8\x97\xcb\x98\x3a\x46\xb7\x85\x00\xe0\x25\xf7\x2a\x1a\x5a\xa8\x26\xfc\x31\xa6\x74\xc8\x80\xdb\x09\xd0\xd3\xb6\xb3\xc2\xf8\xcb\xac\x52\x07\x34\x3b\xfb\xb2\xaf\x0a\xec\x93\xcb\xb0\xc0\xfb\xc1\x9c\x71\xee\x69\xc5\x38\x9e\x83\xe1\xda\x8e\xa7\x8f\x37\x6e\x90\xce\x33\xdb\x39\x2f\x36\xfd\x0e\xc7\x63\x8b\x6f\x75\x0f\x55\xf4\xb3\x08\xb7\x73\xcc\xba\xa6\x2e\x96\x2d\x5c\x4e\xa3\x6f\x7f\x5f\x63\x0c\xfa\xc8\xa9\xe0\x58\xd1\x20\x5b\x1d\xa3\xfd\xd6\xa2\x41\xd9\x12\x21\xe8\x0e\xad\xa8\xab\x53\x06\xb6\x08\xfc\x60\x39\xf5\xb0\x66\xcb\x1a\x05\x6f\x3b\x01\xb1\x65\x07\x4c\x94\x3b\x56\x80\xfe\x60\xc5\x9d\xbf\x4b\x41\x69\x13\x0e\x7f\xcc\xdc\x3e\x3d\xa9\xa9\x0b\xe0\x24\xdd\xb9\xa3\x45\xec\xbf\x92\x5f\xa8\x8b\x73\xe4\xb5\xa2\x7c\x39\x5c\x65\x01\xc4\x32\x34\x51\x2f\x40\xf8\xc6\x8a\x92\xe7\xbd\x2f\x9f\x58\x05\x95\xc1\xb2\xac\x2f\xef\x2e\x50\xdc\x64\x10\xe1\xe4\xc4\xe5\x13\x62\x84\xa2\xcb\x08\xae\x45\xab\xc1\x79\x43\xd1\xbc\xa3\x3e\x1f\x13\xad\x5e\xc7\x77\xef\x4d\x94\x95\x51\x13\x7c\x37\x37\xe4\x5c\x4d\xc8\x84\x61\xa7\x97\x24\x44\x9f\x60\x18\xbf\xb1\x05\xc4\x03\xf1\x4e\x48\x19\x3e\xff\x76\xab\xa2\x5d\x6e\x97\x5c\xe2\xf2\xda\x63\xda\x6e\x39\xaf\x98\x31\x2d\xfa\xc9\xa7\x79\x9b\xb4\xb0\x18\x23\xa7\xb0\x8c\x60\xc6\xd4\x63\x6b\xd1\x1b\x0a\xca\x08\x33\x5c\x05\x6b\x48\xf8\xa8\x4f\xad\x53\x00\x50\x76\x20\x9a\x8d\xbf\x9c\x23\xb7\x2b\x32\xa3\xb7\xc4\x0d\x11\xb2\x6d\x6d\xaa\x5a\x8b\x4d\x1c\x0e\xd7\x8d\x67\x35\xef\x2d\xe3\xe9\x8c\x45\x3d\x00\x56\x8a\x76\xe8\xcc\x97\xb4\xca\xb6\xc7\x67\xb8\x0a\xec\x2a\x71\x60\x1c\x7b\x50\x70\xa3\x10\x13\x18\xcb\xdc\x7f\xad\x97\x24\x02\x81\x30\x78\x7e\x69\x4a\xe0\x0b\x45\x85\x3d\xb4\x99\xb3\xdf\xd2\xac\x3a\x3c\xd0\x05\x17\x0f\xf7\xf7\x63\x74\xac\x10\xb5\x13\x53\x98\x8b\x87\x69\x06\x44\x0c\xdd\x21\xf9\xa3\xe1\x5f\xba\xb5\x1c\x2a\x70\x44\xa8\xc8\xfd\xb6\xa8\xd3\x7e\xa8\x17\x4b\xd3\x84\xb3\x1e\x92\xcf\xd5\x09\xaa\x45\x3e\xfd\xbb\x6c\x90\x46\xca\x98\x2c\xf6\xe3\xc2\x13\xf2\x18\xa6\x2e\x14\x54\x17\x3c\xae\x11\xa0\xa1\x1d\x80\x92\xaf\xff\xfe\x58\x05\x5a\xc5\x7d\xfe\x60\x6d\x5f\xb9\x50\xfd\x66\x16\x8b\xe8\x7e\x72\xa3\x80\xcf\xf1\x63\x22\xdc\xb7\x49\x2f\x15\xc0\x0b\x43\x58\xe2\xc3\x89\x97\x53\xb8\x53\xfc\x08\x05\x9d\xe7\xad\xdb\x87\x28\x4a\x5c\x45\x40\x05\xe4\xd6\x9c\x0b\xff\x3f\xaf\xd0\x15\x66\x1f\x56\x48\xbe\x82\x39\x1a\x2e\x59\xaa\x0b\xe7\x62\xdb\xe4\xa2\x90\xdb\x3b\x47\x2a\x15\x80\x0d\x36\x9c\x09\xeb\x64\xaf\x99\x12\x95\x8f\x92\x55\xbe\xeb\xef\xed\x90\x4c\x34\x9d\x6d\xaa\x72\x4d\x9f\xd5\x9a\x6d\x25\xa8\x46\xc4\x99\xbe\xe5\x4c\xab\x22\x00\xee\x19\xc8\xe7\xd3\xa4\xcc\xb5\x49\xb3\xbc\x2a\x74\x6d\xa2\xa4\x54\x5b\xc6\x5c\xa0\x37\x16\x57\x8e\xce\xaa\x79\xaf\xa7\x41\x35\xc8\xe4\x7d\x6b\xa6\xb8\xbe\x66\x5a\x36\x2a\xe3\xe1\xa0\x68\x13\x23\xda\x26\xe2\x7c\x9e\xfd\x56\xb2\xb5\x0d\x30\x64\x7d\x68\x43\xf2\x83\x06\x28\x8d\x5f\xbd\x34\xfd\xe2\x28\xb3\x91\x63\x52\xd5\x90\x6b\xe4\xde\x0b\x15\xcc\x32\xb5\x45\xa1\x9a\xb9\xfc\x39\x88\x65\x36\x76\x0a\x1d\xb1\x98\xef\xbf\xcf\xbd\x4a\x35\xe9\xba\x3a\x1d\xb8\x9a\x4e\xf8\x2f\x6f\x6a\x42\x52\x95\xa9\xcd\xcd\x0d\xe3\xf6\xda\x58\x0d\xd4\xca\xa2\xba\x97\xb7\xd1\x2f\xdd\xa9\x15\x92\xa4\x8c\x18\xf6\x7d\x81\xf1\xdc\x31\x38\x09\xf8\x15\x6e\x80\x54\x3f\xc8\x81\xbc\x8b\xb0\x63\x02\x69\x53\x09\x6b\x9f\x5b\x2e\xa8\xb8\x14\x84\x4c\xfb\x72\x5f\x3c\xd5\x2a\xb1\x09\x4a\xd3\x20\x73\xdb\x33\x71\xaf\xb1\x88\x9b\x44\xfd\x72\xd3\xb7\x29\x72\xd7\xc8\x11\x26\x2f\x5f\x3f\x2d\xa6\xc7\x8c\x06\xd1\xb9\x37\x59\x9b\x81\x4f\x9b\x32\x33\x1e\x43\x9d\x3f\x92\x1f\xf1\xd0\xdf\xac\xc6\x1a\x35\x21\xd6\x66\x18\x35\xd4\x26\xf2\x3e\xc8\xd4\xdf\x53\x54\x7b\x5c\x1b\x43\x0a\xf0\xfe\x52\x2d\x5d\x44\x4e\x60\x54\xfa\x85\x17\x65\x7e\xdd\xaa\x9b\x17\xfa\x84\x61\x39\xb2\xd8\x7a\xab\xcc\x03\xa1\x58\xf1\xa8\x03\xc2\x0f\x40\x53\x58\x7d\xa9\x92\xa9\xd5\x9b\x9b\x98\x99\x5f\x0c\x18\xa9\xec\x0d\x12\x2d\x22\x16\x8b\x3f\xe5\x47\x2e\x93\xf3\x5d\x83\x36\x75\x6f\xff\xe6\x28\xdd\x48\xe4\xfb\x36\x8e\xd2\x04\x68\x6e\xdc\x7c\x3a\x3d\x10\xf4\x08\x2e\xdb\xd4\xb0\x34\xab\xa0\x99\xdc\x77\x13\x8e\x5d\x6a\x06\xd2\x84\xe6\xdf\xa6\x0a\x39\x6b\x00\x33\x5e\xd1\xdc\x9c\xfe\xc6\xf2\x56\x25\x6a\x89\x62\x3b\x7a\xb6\xff\xb0\x30\x19\x94\xd6\x51\xb2\xe1\x6e\x6d\x53\xa4\x7a\x14\x53\xb0\xed\x79\x09\x4a\x33\x50\x0d\xd9\xa4\x1f\x7a\x7f\x1e\xaf\xd4\xd4\x41\x0b\x93\xa7\xc7\x23\xbe\x4f\x9d\xd0\x8c\xc3\x70\x6c\x0f\x95\xff\xc2\x55\xc3\x14\x50\x8b\x29\x0e\xe3\xcc\x57\xb7\x5e\x24\x92\x0a\x16\x1d\xae\xbd\x28\x71\x56\x39\xe7\x40\x7a\x0c\x6d\x51\xa1\xcc\xa3\xaf\xe5\xdc\x9b\xe9\x83\x70\x4a\x7b\xdb\xd4\x29\xf1\x3a\xbd\x60\x25\x3f\x65\xbd\x0a\x61\xc2\x35\x63\xe2\x9b\x6a\x45\xcb\xed\xee\x33\xce\x26\x99\x9b\xce\x6c\x03\xcb\x87\xdb\xf2\xda\x84\x4c\x70\x70\xe3\xae\x7b\xb8\x68\xea\x88\xe8\xe7\x4b\x97\x2e\x5b\xa1\x17\x36\x57\x28\x34\xaf\x0a\x2a\x16\x91\x0a\x62\xe8\x9c\xa4\x3e\x67\xdf\x8a\xaa\x86\x66\xa2\xfa\xed\xdb\x95\x40\x0d\x0a\x55\x02\xf5\xd2\x68\xd7\x4e\x49\x83\x3a\xb4\x1a\xab\x8a\x87\x17\xee\xe2\x77\xdc\xd1\x31\x6d\x12\xd7\x4a\xca\x8f\x59\x75\xb9\xbc\x1a\x5a\xf5\x68\x95\xda\xb8\x09\xdc\x1c\xfe\xab\xa3\xe8\x8b\x98\x26\xe3\xb3\xfb\xbd\xfb\x54\x93\x19\xcc\x30\x14\x21\x73\x7a\x35\x53\x16\x87\xf3\xdb\x81\x0b\x97\xb4\x41\xbe\xa3\x69\x78\x19\xb1\xfe\x30\xbc\x9b\x81\xf7\xea\x1e\xf7\x5e\x35\xf0\x3c\xec\x40\x60\x97\xcf\xeb\xb7\xbe\xa2\x33\x27\xd5\xc2\x73\xb3\x1f\x48\xfa\xaf\x38\xa8\x36\x3d\x40\x63\x9d\x02\x7d\x41\x3e\x23\xd4\xe7\xa6\x45\xf3\xc7\x68\xa9\x19\xae\xba\x36\x29\x11\x49\x8c\xfd\xf8\x29\x6d\x18\x72\x47\x00\x82\x00\xc2\x7f\xe8\xac\x62\x77\x67\xe3\xa8\xae\x44\x1e\x4c\xdb\x73\x3f\xeb\x94\xb4\x27\x10\x2f\xbf\x5e\xd3\x24\x2b\x05\x4e\xa2\x23\xaa\x6f\xe3\x1b\x3e\x68\x72\x9f\x76\x39\x66\x49\x76\xbc\x86\x69\xc3\x30\x33\xca\x6c\x39\x2a\x58\x5c\x5d\xf6\xc0\x33\x17\xc4\x19\x24\xb0\x33\xc2\xab\x67\xa5\x17\x4c\x95\xd8\xc8\x51\xc4\x36\x5f\x2c\xc9\x95\xa6\xe0\x2f\xc3\xeb\x4f\xea\x53\x3b\xb0\x0e\x13\x5f\x73\x97\x23\xc7\x55\x86\x2a\x41\xff\xeb\xb5\x32\x61\x76\x10\xab\xe1\xe8\x5c\x93\xe9\xc9\xbd\x4f\xa6\xef\xb2\x84\x9d\x06\xc5\x2a\xbd\x33\xdc\x76\x3c\xdd\x95\x0b\x5c\x3e\x05\x19\x30\x57\xe5\xe6\xd8\xb4\x0c\xad\x8f\xec\xaf\x06\x0c\x4b\x12\xb6\x02\x16\x56\x94\xe1\x8d\x57\x5d\xa6\x9d\x15\x00\x7f\x73\x4c\x9e\x98\x08\x4e\xc1\xe5\x9a\x01\x73\x11\x11\x9b\x06\xc9\x08\xff\x9d\xd6\x7e\x14\xff\xec\xb8\x01\x9b\x7f\x40\x6b\x83\x70\xd9\x08\x3e\x65\x9a\xfd\x84\xae\x0a\x65\x97\x02\xe1\x9c\x9f\x3b\xb3\x3f\xe5\x31\x42\x8a\x45\x2e\x0b\xfa\xd5\xe3\xba\xa3\x37\x22\x4e\x22\x37\xd1\x63\x7f\x52\x0b\x89\x81\x87\xfb\x9d\x43\xf7\xd6\x92\x59\x42\x54\xce\xcb\x1e\xdc\x1b\xa5\x0b\x53\x80\xb4\xb8\x2b\x3b\x52\x99\x62\x41\xbe\x2c\x84\x70\x73\xd7\x09\xb0\x1b\x65\x26\x71\x10\x23\xbc\x37\xd6\xd8\xd8\x2a\x0f\x16\x99\x7c\x86\x1f\x7f\x8b\x07\x1f\x4e\xa7\x87\xed\x36\x77\xb5\x86\x0e\x03\xa4\x23\x57\x0a\xfc\xde\x9e\x24\xf9\xe9\x86\x0e\xe7\x32\xc5\xd9\xd5\x65\xb4\x2e\xf0\xc3\xd9\xb1\x03\x47\x2a\xf5\xa7\x13\xcb\x57\x81\xcc\x57\xe6\xe3\xe7\xea\x8c\xa2\x98\x8e\x9b\x9d\xf0\x94\xd6\xdf\x9d\x26\xfa\xbb\x43\x37\xe8\xd6\x91\x60\x65\x28\xca\x80\x8b\x56\x0d\x8e\x57\x94\xc9\xef\x38\x7b\xf9\xfe\x84\xa1\x5e\x02\xad\xca\x75\x21\xaf\x92\xeb\x84\xe1\x58\x1a\x27\xfb\x22\xaf\x69\x57\x60\x83\x09\x47\xbd\x70\xd2\x4b\x4a\x83\x08\xb9\x56\x92\xb3\xe6\x6e\xd1\x6c\xdd\x3c\x17\x31\x26\xfc\x38\xfa\x72\x43\x5f\x1c\xa6\x80\x30\x59\x85\x7b\x13\x65\x47\x6a\x9b\xd2\x24\x5c\x26\x03\x86\x21\xef\x8c\x1d\xae\xc7\x5b\x21\x5c\x9b\x5b\xfc\xb2\x30\xaf\xb1\x89\x61\x41\xed\x3f\xba\x3d\xee\x23\x31\xee\x4b\x1c\xee\x79\x40\xd3\x5a\xf6\x29\x33\xac\x14\x6c\x32\x7f\x75\x4b\x7a\x59\x83\xde\x6c\xbc\x5d\xd6\x9f\x90\xd7\xec\x23\x56\xc6\x7e\x94\xe2\xbe\xa6\xb1\x2b\xb9\xe5\xaf\x68\x04\x84\x07\x07\xca\x0c\x16\xa9\xf9\xd0\x4f\x34\x29\x5c\x03\x3b\x3e\x13\xba\x3f\xe1\x9f\x5e\xbc\x54\xdf\x28\x8e\x57\xc2\x8c\x89\x30\x18\x76\x73\x6d\x83\xc2\x0d\xbd\xd8\x2f\xe2\x32\xad\x11\xc5\x92\x2d\xdb\xf6\x98\xb6\xcf\x20\xd7\x8e\xe1\x04\x23\xd7\xe8\x06\x99\x09\x13\xaa\xae\xb5\x52\x8b\x30\x56\xae\x73\x80\xf7\x77\xce\xd5\xf1\x29\x62\xde\x0a\x2f\x67\xcb\xb8\xf8\x0d\xd0\xc0\xe4\xb2\xd0\xbb\x74\x0d\x7f\x9f\x51\x07\x05\xdc\x61\x30\x3c\x7b\x5c\xf1\x5c\x2c\xb2\xc0\xf5\xb9\x56\xde\x82\x8f\xc4\x09\x3f\x7d\xd2\xcc\x19\xed\x40\x7f\xec\xd9\x2a\xf8\x77\xb6\x41\x21\x9f\x88\x7e\xb8\x79\x4d\x13\x96\xba\x8a\x1c\xdf\x8e\x11\x47\xf9\xa9\x2d\x72\x57\x59\x01\xb3\x55\xd3\x88\xcc\x4f\xdf\x97\x0a\x61\x66\x2c\x08\x87\xde\x4a\xaf\x90\xaa\x70\x58\x51\x7d\xde\x87\xb6\x5e\xa4\x08\x1f\xb8\x51\xfd\xca\x3b\x5e\x99\x86\x66\x86\xc9\x68\x03\xd9\x3e\x89\x9d\x2e\xfe\xe9\x3d\xd1\xa8\x25\x3d\xd1\x4d\xe5\xbe\x7c\x22\xa9\x03\x69\x15\xce\x9c\xd1\x3b\x65\x57\xe7\x0e\x52\x0a\x94\xcb\xfd\x68\xad\x00\x32\xa3\xaa\x6b\xd9\x9c\x31\x9e\xbb\x73\xa3\x22\x95\x84\xaa\x98\x21\x0e\x46\x3f\xff\xd0\x70\xb5\x02\x5c\xbc\xf8\x6a\xc8\xad\xa2\xa8\xfd\x6c\xfa\x99\x25\xd3\xa2\x78\x9a\xf2\xf3\x3d\xb2\x8a\xa0\xd1\x76\x6d\xaa\x04\x5e\x9e\x2b\x53\xc9\x69\x93\xa7\x15\xba\xc2\xdf\xbf\xac\x49\x5d\x82\xa4\xaf\x38\x0b\xf2\xa3\x1e\x6b\x12\xf2\xa9\x12\x18\xd1\xc3\x3d\xfc\x62\x7a\xaa\xd7\x67\x83\x31\x6a\xee\xde\x37\xf8\x1a\x98\x47\x98\x4b\x79\xb3\x7a\x82\x90\x89\x58\x8c\xaa\xa9\x7e\xc0\x30\x0d\x6d\x4e\xdd\x98\x1e\x07\xf1\xb9\x4d\x61\x75\x76\xd3\x80\x39\x5c\x04\xa8\xd0\x15\xb6\xb6\x8e\xd6\x63\x64\x4c\xe4\xe4\x33\xbf\x27\x76\xc9\x3b\xad\x80\x99\x7f\xe6\x5f\x46\xcb\xc3\x1f\x6e\x52\x70\x87\xa0\xa9\xdc\x97\xf7\xa7\x36\x49\x1a\x91\x4a\xac\x07\x90\x7b\x75\x71\x3a\x59\x22\xbd\x30\xcb\x45\xfd\x8c\xed\xf3\x17\x4c\xd2\x05\x2d\x39\xdd\x8a\x1f\xbe\xde\x86\x74\xdc\x9f\xda\x19\xbb\xdf\xbc\x9f\xce\x9f\xaa\xd8\x67\xd4\xa5\x36\xf1\x51\x4c\xc3\xfd\xf6\x1a\x79\x57\x6e\x11\xde\x41\xfe\x31\x39\x5c\xf1\xb1\x61\x39\x14\xfb\xa0\x2e\xd5\xd5\x97\x1d\x33\xa1\x35\xae\xce\x8c\x40\x85\x1b\x5d\x2c\x55\xd7\x2b\x48\xb1\xd0\xc9\xbb\x73\x14\xbf\x20\xe2\x62\x30\x31\x03\xc5\x95\x81\xba\x43\xa9\x83\xb9\x3f\x45\xee\xe6\x97\x25\x71\x45\xad\xf3\x73\x7f\x57\xd2\x69\x67\x0c\xa3\xc0\x60\xc8\x17\xfa\xe7\xd9\xfa\x0e\x41\x5c\xa2\xd4\xc3\x36\x10\xdc\xde\x99\xaf\x8f\xef\x89\x53\xe1\x4f\xce\x3e\x34\x54\xdc\x26\x77\xfa\xe7\xf3\xfe\xbf\x5f\x2e\xf3\x15\x52\xe5\xde\x84\xa0\xe1\x7c\xd7\xe3\x2d\x8a\xb0\xaf\xf0\xd4\x9f\xc9\x2e\x51\xf2\xb4\x20\x5a\x06\xc0\x84\x14\x07\x76\xee\xd6\xd3\x23\x94\x25\xcd\xd9\xb0\xf1\xc3\xf9\xd8\x80\x11\x6a\xbb\xd5\x01\x54\x30\x6f\x51\xe5\x73\x23\x15\x34\x3d\xc3\xd8\x04\xc3\xfe\xe5\x5b\xfb\x53\x73\x80\x43\xe0\x37\xb2\x6b\x0c\xa5\x50\x78\xd9\x55\xba\xde\x26\x6f\xe8\xa6\x1c\x66\xde\x3b\xa1\x53\x4c\x7c\x4f\x88\x5e\x66\x36\xad\x9d\x94\x36\x78\xd7\xbb\x47\x7a\xcb\xa2\xbb\xd6\x34\x7b\x43\x31\x60\x35\xf3\xcc\x47\xf2\x66\xcb\x0c\x39\x7e\xa1\x4c\x44\xb7\x2f\xf7\xe4\xbb\x43\x55\x3d\x32\x87\x8f\x4b\x7f\xf4\x94\x7c\x04\xc5\xc0\xa8\x88\xfc\x88\x9e\xd2\xe4\x53\x13\x76\x6e\x7e\xf9\xca\x38\x97\x11\x74\xce\xbe\xfc\xaa\x07\x85\xce\x88\x4d\x00\xdd\x95\x19\xf5\xa0\x52\xf9\xd5\xb0\xa8\x94\xb3\xb9\xfc\x58\xed\x3c\x23\x55\x54\x01\x3f\x9e\x64\x3a\xff\x8b\x89\x29\xef\x5c\xe2\x90\x18\xdc\x35\x64\xb6\xe2\x55\x8d\x6c\x13\x19\x06\x71\x48\xf4\x9b\x9d\xfb\x95\x0a\x9c\x78\xf0\xcf\xf3\xb7\xae\xe4\x01\x3c\x91\xbf\x01\xe9\x9b\x93\x82\x11\x12\xa5\x58\x06\x75\x21\xdf\x7f\x6f\xba\xcc\xa8\x90\xed\x63\x16\x2f\xd3\xfc\x97\x37\xa6\xb5\x89\xaf\xe0\x3d\xb6\xbf\x8c\x51\x14\xb1\xa2\x5a\x8f\xff\xeb\xee\xc1\x7a\xee\xef\xfb\x76\xf2\xe0\xb2\x9f\x9d\xa8\xc5\x65\xc0\x3b\x3b\x65\x91\x50\x3d\xb1\x5b\xa4\x4f\x76\xac\x9a\x33\xf7\xfd\xa6\xdc\x80\xc5\x9a\x58\xd9\x7d\xaf\xaa\x32\x82\xcc\xb3\x30\xc7\xb4\x3e\xbc\xa0\x45\x51\x59\x46\x1e\xf4\x51\x1a\x42\x66\xc4\xf3\x89\x1b\xd8\xc2\x5a\xff\x6f\x1b\xf4\xe6\x17\x04\x56\x33\xa8\xf2\xb9\xe0\xd5\xe7\xca\x26\x75\xaf\x85\xe0\xc0\xfc\xf2\xfc\x11\xca\x4e\x74\xca\x8c\x13\x52\x21\xe5\xff\xd2\x43\x23\x54\xac\x2a\x72\x88\x8f\x18\xc7\xe3\x64\x66\xbc\xaf\xd0\x90\x1b\x55\x37\x7a\x27\x5c\x32\xa8\xe3\x1c\xdd\x62\xd7\x14\x76\x2e\xb9\x73\xf7\xa5\x75\x49\x4a\xa4\xc8\x73\xaa\xa6\x8e\x55\xb6\x6f\x93\xf2\xf9\x7e\x10\xe5\x48\x05\x01\x81\xbd\xef\x54\xfa\x36\x1b\x94\x55\x80\xe0\x2f\x7a\x88\xef\xee\x90\xa3\xa8\xc9\x1d\x6d\x93\x3b\x00\xd3\xfd\x82\xbc\x4f\xab\xe1\x52\x83\x11\x38\xe4\xa2\x7b\xd9\xbc\x8f\xc7\x3f\xea\x12\x27\x2e\x77\xee\x9e\xcd\x77\xc0\xf5\x88\xc3\x6c\x7e\x37\x32\x0d\xf2\x8d\x1e\x45\xc1\x47\x9e\xd7\x8f\x76\x51\x7e\xb8\x38\x7b\x4b\x81\x1f\x00\x34\x2e\xfc\xcd\x96\x24\x3a\x13\xd5\x43\x7e\xa7\x16\x9c\xa3\xd5\x15\xc0\x58\x3e\x4e\x35\x3b\x67\xa7\xc7\x23\x53\x67\x4e\x13\x27\xd5\xe1\xf5\x0a\x6e\x1b\x1b\xc4\xe4\x8c\xb9\x3f\xac\x82\x66\x62\xe1\x5a\x45\x34\x09\x35\x19\x95\x65\x26\xed\x4e\xbf\xa6\x2b\xa6\xb7\x0b\xab\xa3\xec\x05\x73\xc7\x6a\x29\x8e\x49\x50\xec\x08\x99\x58\xfb\x3e\xa5\xa5\xa6\x89\xcd\x00\x9c\x12\xa6\xe6\x8c\x58\xb4\x29\xe5\x8a\x12\x99\x83\x1a\xe8\x50\xfa\xfa\x88\xc1\xcf\xed\x02\x63\xb6\x24\x2a\xae\x78\xac\xdb\xd6\xa2\xd7\x88\xd1\x69\xce\x97\xf5\x4d\x5c\xa8\xb5\x00\x43\x46\xd1\x20\x8c\x5e\xd9\x83\x27\x2f\xd2\xbe\xc7\xe6\x1d\xf7\xec\xd4\xe7\x9a\xec\x3d\x59\x4c\x94\xef\xcb\xfc\xe6\x1c\xde\x2d\xb0\x53\x5a\x24\x99\xd5\x0b\x2f\x90\x65\x48\xb9\xd0\x15\xfe\x79\x90\xb6\xd0\x69\x22\x78\x30\x60\x5c\xba\xb5\x50\x0a\x1c\x13\x71\x47\x5d\x22\xcc\x14\xba\xfa\xf2\xb3\x7b\x84\xf2\x09\x35\x19\x29\x07\xb8\x57\x69\x69\x2d\xda\xa0\x08\x39\x58\x20\xe4\xf0\x7f\x4f\xea\x10\xb8\x2a\xf6\x49\x15\x80\xe6\xd1\x97\xde\x71\x56\x99\x68\x72\x48\x45\x3c\xd0\x38\x53\x1a\xaa\x50\x40\x4b\x04\x45\xcf\xe7\x9d\x4e\xcd\x50\x98\xd8\x65\x46\xaa\x49\x40\xfa\xde\x1a\xfe\x1c\x56\x80\xde\x8c\x17\xc3\x0a\x37\x4f\x48\xaf\x0e\x46\x1a\xc8\xd4\x5a\xd5\x99\x9d\x47\xd2\x0f\x00\x99\xa8\xea\x89\xa6\x8a\x4c\x4d\x4e\x70\x4d\x82\xc2\xb5\xc8\x31\x9a\xbb\xed\xd9\xff\x9c\xaf\x09\x0a\xbb\xd8\x80\x60\x17\x2b\xb2\xfe\x67\xcf\x08\xfd\xe8\x4c\x6a\x85\xe7\x56\x6b\xa0\x70\xae\xab\x21\x56\x31\xdc\x89\x73\x4a\xb1\x08\xb0\x60\xc0\x78\xfe\xd8\x51\x6a\xc8\x2b\x62\xe6\x53\xe5\x82\x7f\xc0\x64\xf7\x6e\x4a\xa1\x2b\x9c\xb8\x5b\xeb\xb7\x20\x06\xb2\xcd\x4d\xba\x60\x99\xf7\x3b\x75\x43\x49\xbb\xc1\xd1\x30\x37\x77\x68\x76\x1c\xb8\xc8\x02\xc4\x1a\x71\xab\xe1\xbd\x62\x4a\xcd\xd5\x0b\xaa\x00\xbf\xfb\x55\xcf\x45\x2a\x88\x92\x09\xb9\xae\xae\xbe\xcc\x6b\x8b\xd2\xeb\x1e\x31\x5f\x74\xe4\xd0\x55\xe9\xf8\xdb\x40\x4e\x05\x63\xaf\x1f\xff\xb1\xdc\xd1\x36\x38\x60\x40\x19\x6b\x86\xa8\xed\xfe\xcb\xe5\xaf\x6b\x25\xad\x17\xfb\x29\x6b\xbe\x71\x28\x25\x8c\x53\xc3\xbc\xf9\x56\xd6\x10\x1c\x45\x1c\xab\xab\x87\x9d\x0a\x33\xdb\x40\x45\xc2\x43\x6f\xef\x40\x31\x95\x6d\x2b\xb6\x41\x36\x70\x54\x93\x49\x24\x60\x77\x19\xb7\x90\x3f\x3c\xd1\xa2\xe8\x13\x89\x8e\xcf\xac\x9a\x42\x1f\x35\x8a\x8c\x2b\x39\xf4\x9d\xab\xf5\x39\x03\x30\x5d\x89\x57\x7c\xfe\xc6\xe3\x4a\x1f\xd9\x26\x25\x0e\xfe\xea\xcb\xf6\xcc\xe2\x07\x04\x08\xa4\xd8\x08\x12\xaa\xce\xdd\xcd\xf6\xf3\x71\x45\xb6\x55\x33\x30\xea\x46\x46\xc5\x83\x0e\x8c\x22\x7b\xf4\x86\x86\xfe\x9d\x2c\xd0\xb1\x85\xd9\x5a\x6b\xd9\xf3\xc0\x60\x82\x9b\xd1\x67\x7f\xb5\x56\x2b\x15\x2d\xe4\x49\x1d\xd1\xb9\x1d\xe9\x55\xcf\x79\x40\x28\xd1\x8e\xed\xea\xcb\x5e\x31\x8e\xdf\x8c\x45\x3c\x9f\x32\xee\xf6\xf0\xcc\x91\x64\x74\xd5\x8d\x9a\xa9\xae\xaf\xed\x91\x7d\x74\x5f\x3f\xab\xc3\x7f\xd5\x5e\x4f\x91\x7a\x1e\x04\xa5\x28\x48\xbe\xb3\x4c\x76\x10\xe2\x23\x22\x49\x22\x86\x3d\xdc\xaa\x80\xdc\x7c\x18\x6a\x41\xfe\x3f\x76\x9c\x7c\x7d\x81\x53\x27\x0e\x27\xce\x6d\x31\x5b\x12\xed\x90\x92\x40\x51\xf5\xbd\xda\x4c\x6c\x30\x94\x19\x4c\x57\x07\xbf\x5d\x5c\x23\xf1\xd4\x2b\xb3\xfc\xd5\x4b\x65\x03\xa2\x4a\xfc\x66\x3f\xff\x87\x5f\x54\xd2\x8f\x2a\xb2\xed\x82\x67\x20\xee\x47\xf2\xaf\x42\x34\xd9\x26\x80\xc0\x0c\xbf\xf5\xf0\xa5\x5a\xc5\xe0\x04\xc0\xe4\x65\x71\x28\x7a\xf7\xe9\x8b\xd2\xb2\x48\xe5\xc0\x26\x60\x85\xc0\x1e\xd0\x32\x48\x6e\xd5\x2b\xb6\x7e\x3e\x53\x54\x8a\x2a\xdb\x0e\x12\xb5\x5b\x73\x63\x72\x16\x55\x41\xca\x7e\x98\xad\x1b\xfb\x62\xcf\x40\x2e\x48\xc2\xf1\xbe\xd4\x77\xce\xe5\xd1\xbc\x4e\x99\x9d\x60\xc2\xfb\x32\xd7\xed\xd6\xea\xed\xe8\xa4\xe2\x58\xb3\xae\xf0\x6b\x7b\xc6\xea\xab\xc9\x24\x3c\x9f\xb0\x63\xbd\xf1\xcc\xfc\x63\x1a\xb4\x14\x33\x0a\xe9\x0b\xc8\x3a\x6c\x49\xd8\xe3\x1e\x66\x35\x3e\x5f\xeb\x78\xae\x3f\xd3\x00\xa1\x13\x76\xdd\xbb\x7c\x96\x39\xcf\x41\x3e\xb5\x89\xee\x4f\xde\x97\xb9\x62\x9c\x86\x1a\x12\x08\x72\xc1\x82\xbb\x52\x08\xc6\x31\x1a\x08\x1d\x94\xbe\x75\x17\xc8\x62\x02\xda\x12\xad\x4f\x2b\x66\x38\x3d\xae\x4d\x39\x37\xfa\x3e\xdd\x53\xd9\x60\xa4\x5a\x05\x94\x1c\x0c\x8f\x3f\xf7\x96\x28\xe4\x83\x32\x2a\xaa\x58\x22\xfa\x76\xab\x24\x88\xa9\xc7\xe0\x8b\x1b\xb4\x32\x1a\x55\x70\x3c\x42\x1a\x34\x78\xa8\x82\x64\x72\x4c\x58\x5d\xd9\x91\xad\xaa\xf5\x10\xeb\xa6\x8c\xa8\x4e\xfa\xe7\x1d\xd0\x49\xe7\xb6\x0d\x59\x5b\xf8\x76\x49\x51\x31\xf2\x11\xaf\x50\x2a\xaf\x68\x22\xb6\xa4\x6c\xc5\x2a\xe1\xdb\xb7\x4b\x2c\x91\x0d\x6d\xd8\x63\x3b\x5b\xd5\x09\xb5\xc5\x28\xad\x42\xc6\xf6\x99\x17\x14\x7e\x5e\x54\x56\x47\x9f\x7d\x76\xec\x08\x65\x5e\xeb\x94\x69\xe0\xf9\xa2\x4f\x91\xfb\x99\x26\xd2\xc0\x2d\xb7\x09\x58\xfa\xc3\xd1\xdb\xf9\xb8\x2c\x45\x26\xcf\x9c\x32\x15\x54\x60\x56\x0f\x51\xfa\x4c\x60\x0e\x91\x5f\xbe\x70\x58\x3d\xe9\x14\x21\x43\xf8\x76\xe4\xb2\x02\x8a\xe2\xda\xa8\x51\x8f\x41\x9e\xb9\xef\x8a\xfe\x16\x54\x70\x46\xa2\x21\x98\xf9\xf7\xcd\x1a\x02\x85\xa1\x12\xf2\xa1\x60\x97\x35\xfd\xa5\xeb\x93\x81\x08\xa7\x0c\x27\x68\x99\x31\x3a\x74\x12\x63\x26\x17\x6c\xfe\xce\x5b\x65\x65\x51\x62\x18\x5b\x0a\x23\x68\xa9\xe2\x50\x4f\x38\x6c\xf2\x9a\x49\xb2\x67\xe9\x80\xbd\x72\xe7\x0e\xed\x24\xb1\x90\x1f\xef\x86\x73\xa7\xa6\x7f\x87\x6b\x98\x35\x38\x83\x25\xf3\xf5\xb7\x5a\x94\x0c\xa0\x8c\xed\x42\x57\xf8\xd7\x05\x1a\x1b\xc0\x47\xb1\x37\xdc\x23\xa3\xd4\xc6\x9b\x1e\xc4\x47\x8e\x51\x25\xfd\x70\x1d\x76\xce\xe5\x9c\x34\x56\x58\x14\xb0\x28\xcb\x6b\x96\x34\x9a\xf3\xe6\x28\xb5\x9d\x6f\x23\x07\x7c\x3e\xe2\x7d\x71\xce\x76\x6d\x16\x89\x18\x6b\xa4\x74\xef\xf3\xf6\x6a\x69\xb9\xc8\xca\x4a\x7d\xb1\xe7\x14\xdf\xc7\x55\x6a\x72\x8b\xc8\xec\x39\xf7\x0f\x16\x35\x5d\x7b\xc1\x04\xc4\x46\xf6\xe5\x5e\x95\x6d\x1c\x55\x74\xc4\x03\x61\x54\x6b\x6f\x7f\xee\xb6\x1c\x29\x25\x42\x53\x71\xa3\x12\x95\x2d\x82\x9c\xb8\x80\xcc\x7c\xf8\x90\x10\x7e\xa0\x9e\x4f\x9b\xf3\x9c\x47\xdf\xe7\xd7\x71\xad\x85\x7c\x0c\x76\x92\xb9\x17\x9f\x93\xa7\x9c\x61\x51\xdc\xad\x44\x87\x5c\xa7\xaf\x87\x3b\x5c\x4d\xb0\xf7\x03\x97\x0a\x50\x55\x0c\x42\x87\x83\xae\x3a\x57\xb7\x78\x33\xc0\xd0\x9e\x9f\xa9\x3f\x1d\x23\x8c\x3f\xdb\xdb\xa7\x44\x0b\xe1\xc5\x1d\xba\x77\x8b\x28\x85\xe2\x44\x39\xfb\xc6\x41\x85\x08\x82\x7d\x3f\xf6\x83\xbf\xec\x90\xd4\xd4\x32\x2a\xcd\x26\xb4\x6b\xb4\xe3\xc9\x8a\x36\x38\x16\xe9\x52\xa6\x67\x9b\xa6\xf8\x88\x1d\x13\x3b\x46\x43\x30\xb6\x6f\x7f\x21\x8d\x6a\x89\x33\x2a\x4d\xa3\xba\x67\xee\x65\x7a\x69\x17\xa5\xdd\x50\xdd\xc9\x5d\x38\x63\xdb\x50\x25\x23\xf0\x84\x23\x59\x67\x5e\x51\x63\xc1\x31\xfe\xe1\x57\x07\x64\x64\xed\x98\x36\x69\x4a\x07\x60\x1c\xee\x9c\x93\xfc\x5b\x9b\x54\x45\x76\xd0\x7b\xb6\x55\x6d\x18\xde\x11\x60\x60\x4c\x87\x5f\xc9\xca\x0c\xe1\x7f\x81\x02\x49\x32\xa6\x87\xd4\xd7\xbd\x6d\xb4\x6e\x96\x8d\x5c\x5f\xf8\x2a\xf6\x65\x6e\x5d\x9a\x8e\x45\x3d\xc8\x41\x0e\xd2\x1e\xc9\xef\x27\xaa\x76\x99\x31\xe9\x1a\xf6\xc0\xf0\xf4\xc3\x6a\x60\xdb\xf7\x88\x56\x9b\x67\x7e\x23\x9c\x61\x6d\x8c\x4a\xd1\x5f\x35\x34\x5b\x3a\x4e\xd9\x8b\x91\xcd\xc3\x86\xa5\x71\x34\x51\x10\xeb\xcf\xc6\xf4\xf2\xe9\x57\xd6\x9b\xc6\x10\xdc\xdf\x8e\x15\x9b\x06\xcc\x3f\x55\x7c\xb5\x3d\xf0\xd7\x80\x7e\x9d\xbf\x5f\x67\x4d\x09\x7b\x08\x41\xd1\xbe\x61\x97\xa6\x32\x48\x98\xe7\xc7\xbd\x55\xa4\x19\x5f\xd8\xa4\xd8\x40\x57\x9b\xb1\x60\x63\xe6\x83\xfd\xca\x24\x84\x08\x5d\xbd\xdc\xba\x9a\xcc\xe5\x80\x28\xee\x61\xc4\x5b\x8a\xb9\x5f\x6e\xd3\xbf\xcd\x91\x6a\x4c\xff\x76\x44\x6a\x6e\xd0\x2b\x1c\x4c\x6c\x65\x68\x92\xaf\x3e\xa9\xbb\x8c\x73\xe7\x20\xa0\x4c\xdc\xb6\xac\x55\x04\x4e\x0f\xab\x36\xec\x6f\xdc\x7b\x89\x56\x18\xb8\xc8\xe1\x92\x56\x70\x03\x4f\xbf\x90\x0e\x5b\x81\x43\xa8\x63\x22\xd0\x9d\x17\xff\xe4\x57\xb3\x15\x49\xb6\x2a\x05\xab\x43\xa8\xf1\xff\xb3\x77\x84\xd2\x68\x0f\x18\x2d\x12\x6a\xd3\x32\x18\xaa\x4f\x3c\x9d\xc2\x45\xd8\xd8\x88\x92\xc6\xcf\x6e\x50\x8c\x29\xa3\x4f\x32\x89\xe7\x73\x21\x82\xbe\xcc\xb8\xe7\xe4\x53\x63\xd8\x73\x09\x8b\x75\xa3\x72\x3b\x5b\xa5\xa8\x5f\x07\xb4\x60\x16\x5b\xc3\xc4\xce\x34\x31\x03\xa8\x09\xe4\x59\x47\x96\x48\x93\xc8\x18\x84\xd4\xb4\x91\xfe\xba\x39\x95\x1d\x27\x69\x7a\xf8\x7c\x0b\x8f\xb3\x02\x5a\x13\x7d\xe0\xe7\xe6\x28\xed\x70\xcc\xfc\x5e\xd5\xcb\x65\xa7\xb6\xef\x8a\x54\x5a\x31\x65\x4e\x2d\xe0\xba\x70\xf3\xf8\xe8\x2b\x7d\x09\xee\x66\xcd\xe9\x02\x1b\x41\x74\x9a\x60\x6e\xb3\x95\x06\x6e\x49\x81\x30\x5c\x57\x45\x58\xb2\x53\x35\x02\x35\xad\x52\x0f\xf7\x04\x42\xc2\xa5\x2f\xf7\xc2\x07\xfc\x7e\x8c\x86\x11\xa3\x16\xba\x8f\xf0\x43\xae\xcc\x68\xdd\x86\xc8\xbf\xfc\x88\xde\xc3\xb5\xb1\x52\xe0\x65\x6f\x7c\x5a\x4d\x9c\xa6\x82\x4d\xdd\x02\x6d\x3e\xc8\xad\x18\xe3\x89\x44\xfe\xbe\x83\x72\x57\x30\x54\xc1\x9c\x82\xf1\x2f\xf3\xe5\x92\xf0\x19\x75\x89\x01\x15\xc9\x2f\xb3\xaa\xb9\xa0\x41\xcb\x70\x8c\x44\xbf\x59\x3d\x5a\xd1\xca\x42\x8c\x9b\xf7\x65\x1e\x38\x2d\x63\xad\xa2\x46\xd4\x99\x6e\x41\x24\x26\x3a\x99\x9f\xcd\x12\xaa\xb7\x56\x15\x2b\x98\xa0\xec\x2d\x47\x64\x92\x3e\x63\x26\x40\x05\xb7\x69\xda\xbf\x8c\x38\x06\x71\x6d\x2c\xa4\x4b\xf3\xf9\xf5\x83\x93\xcb\x0c\x78\x78\x5c\x32\x5e\x35\xcd\xb5\x68\x19\x39\xb0\x62\x4f\x1c\x51\xe8\x5b\x22\x5d\xcc\xcc\xc8\x8e\x52\xaa\xcf\x12\x43\x9e\xcf\x02\x43\x74\x6c\xfb\xb2\xe5\x63\x5a\xde\x87\x1d\x8f\x80\x9b\x15\xaf\xd3\xc9\x47\xda\x2c\x2e\xc0\x22\xb5\xce\xbe\xf3\x58\x93\x93\x06\x60\x9a\x79\x6b\xf4\xfa\x75\xa3\xf5\x82\x09\xfb\x54\x44\xe4\xe8\x6a\x27\xdd\x9f\x8e\x02\x0e\x26\x65\xab\x48\x99\x45\xa9\x80\x0e\xad\x93\x0e\x18\x86\xa5\xd8\x88\x6d\x7a\x89\x8b\x66\x2c\xed\x5a\x11\x5d\xc7\x9a\xb7\xe4\x06\x2f\x05\x4e\xf4\xfa\x89\x27\xc8\xb6\xd9\x8f\xed\x91\x7b\xc9\x0d\x6c\xbb\xc8\x33\x00\x68\xa1\xff\x75\x99\x2c\xf8\xbd\xa6\x82\x7f\xde\x24\x31\x2f\x24\x06\x76\x04\x57\xe5\xbe\xfd\x3a\x97\x83\x98\x28\xa1\xe8\x0d\xbf\xbf\x25\xce\xd1\xaa\x82\xce\x1c\x5e\x2a\x60\x88\x51\x8a\xca\xb5\xa8\xf2\x9f\x9b\x15\xbf\x51\x10\x0f\x2b\x74\x85\x93\x06\x25\xa0\x9a\x68\xad\x87\x3f\x69\x11\x55\x2c\x2f\xda\xe3\xbd\x8f\xb7\x28\x02\xcb\x9e\x07\xa8\x92\xbe\xdc\xc2\xd1\xcd\x68\x0b\x4f\x1a\x01\x9f\xb7\x67\x90\x08\x96\xf1\x54\xd2\x4e\xb4\xe6\x96\x2e\x5d\x56\xe8\x5a\xa3\x76\x27\x4c\x10\x83\x82\x7a\xe2\xf0\x49\x65\xca\x88\x13\xd5\xfd\x87\x9f\x19\xa7\x95\x19\x7e\x73\xfc\xe8\xcb\x96\x47\xa5\x0f\x8e\x69\xed\x93\xda\xdb\xdb\x45\x95\x7e\x7c\x83\xde\xa1\x62\x15\xc2\x09\x14\x50\x58\x5d\xb3\x5f\xd5\xcf\xf4\x04\x86\xfd\xcc\x7b\xa3\x1d\x05\x14\x55\x23\x26\x00\x35\x64\xef\xfa\x7f\x9e\x51\x24\x08\x90\x8d\xaa\xc8\x81\xed\x9e\x1d\x3e\x69\xb4\x3a\xad\x5c\xb6\x7c\xd9\xd5\xf2\xef\xa2\x8f\xfe\xf6\xc2\x24\x3f\xa7\x15\x45\x7a\x31\x5b\x1b\xaf\x75\x8f\xc5\xf7\xc6\x51\xe7\x9c\x67\x65\x06\x05\x74\xc2\xa6\xec\xf2\xa1\x75\x1c\xd9\xbb\x0a\xb3\x32\x62\x2a\x34\xfd\xc6\xf7\xe4\x91\x10\xd5\x7d\x35\x44\x1c\x90\xe5\xcd\x6d\x54\x0c\xa4\x3c\xec\x22\x86\x04\x0e\x2d\x2c\x99\xc3\x52\xd7\xf3\x69\x2e\xc6\x7c\x62\xff\x70\x25\x95\x52\x91\x92\x99\xec\x19\x9e\x25\x15\x29\x4f\x4d\x4e\x29\x52\x63\x75\xc4\x2c\xee\x47\x94\x3b\xb3\x56\x61\x61\x61\x6e\x1a\xf3\xa3\xfb\x93\x65\x39\x63\x3a\x48\xa0\xbc\xd1\x64\x7f\xc4\x70\x82\x36\xe8\xcb\x7c\xbe\xa3\x45\x91\x3f\x20\x50\x09\x1e\x79\x56\x9b\x22\x23\x56\x98\x22\x42\xc0\xf3\xb3\x47\xaa\xed\xff\xc0\x56\x25\x80\xbb\xb8\x30\x56\x61\x3e\xa3\xcd\x83\xb3\x7d\xec\x32\xb9\x6a\xe3\x21\x55\xd3\xa1\xbb\xef\x54\x1a\x59\xeb\xd0\x1a\xad\x04\xbd\x0e\xf6\xbd\x8a\x4a\xde\x38\xef\xc0\x30\xf1\x16\x6c\x9c\xb8\x2d\x85\x3f\x5f\xdc\xa4\x34\xee\x98\xb4\x54\x12\x3d\xca\x4c\x4d\x41\x79\x95\xb8\x77\x6d\xa1\x2b\x7c\x66\x98\x02\xb7\x8d\x4e\x35\xc4\x83\xf6\xda\xf1\x4a\x77\xc1\xa6\x1c\x34\xf1\xcd\x55\xfc\x8b\xb9\x11\x0b\xe0\x18\xa1\x75\x74\x58\x81\xff\x51\xe6\x23\x61\x12\xfc\xf7\x6d\xa2\x35\x8d\x7b\x90\x41\x9b\x96\xda\xd3\x26\x3f\x75\x3c\x17\x73\x0f\x2b\x4e\x46\x98\xb7\x45\xee\x1b\x9f\xd2\x4a\xd3\xc3\x1c\x37\xf5\x02\xa5\x66\x2a\x74\x85\xf6\x33\x49\xa3\xb4\x8c\x7a\xf5\x0c\xb9\x5b\x73\x50\xc2\x20\x15\x91\xa0\x33\x2f\x3f\xa3\xc9\x99\x22\x56\xe5\x08\x4d\xde\x12\xca\x0d\x1f\xae\x01\x15\x02\x89\xf6\xfb\xdd\x53\x43\x44\x24\x22\x3e\x11\x03\xdf\xe5\x87\x85\x09\xbe\x50\x59\xcf\x4f\xd1\x00\xc2\xdd\x51\x59\xab\x15\x17\x5f\xb1\xb4\x9c\xd7\xa6\xf5\xa4\x7f\x3c\x71\xbd\x84\xb6\xf4\x70\xf3\x86\xd1\x52\x77\xb9\x86\x9a\x61\x36\x5b\xaf\x92\x6d\x24\xb7\x8c\x80\xd0\xb2\x3c\xfd\x18\xea\xc4\x8f\xb6\x42\x4c\x8c\xdf\xfa\x12\xdf\xf7\xcb\x89\x61\x45\xdb\x29\x39\xbd\xfe\xf0\x80\xae\x11\xc5\x7c\x6c\x0b\xf5\xbd\xb7\x34\xc8\x5d\x31\x68\xc4\x1a\xe6\xf7\x17\x45\x63\x60\xda\xa4\x99\x33\xa7\x01\xdc\xad\x71\x48\x6e\x7b\x00\xd8\x91\x12\x11\x6e\x81\x4f\x3c\x3e\x56\x85\x7c\xb9\x88\x94\x9b\x49\xbb\xd3\x37\x69\x93\x7f\x6c\xd0\x6a\xe2\x0a\x9b\x1d\xdd\xaa\x98\xb4\xa0\x6e\x6a\x2b\x66\x23\xd9\xf3\x1f\xd3\x6e\xc3\xa6\x81\x19\x37\x74\x16\xbc\xa0\x58\x9f\x53\x56\x47\x8c\xe3\x18\xfe\x3e\xaf\x77\x82\x3d\x8b\x08\x81\xa2\xae\xf0\x85\x96\x8b\x15\xe1\x2a\x66\x04\x55\xa1\x4b\x0c\xac\xc0\x91\x5a\x07\x1a\x57\x09\xa7\xb3\x4f\x8a\x47\xe2\x3f\x1e\xad\xa9\x22\xb6\xcd\x88\x4f\x94\x0f\x4f\x49\xdd\x1e\xcf\xc2\xb6\x0f\x1c\x6e\x69\xf4\xfe\x66\x3e\x9d\x1b\x9b\xd8\x0d\x20\x33\xee\x0f\xa0\xfe\x87\x61\x57\x68\x45\x91\xe7\x63\xe6\xf4\xf7\x6f\xb3\x0f\x6e\x55\xbc\xb2\xdb\x70\x1b\xb4\x1a\x73\x33\xe6\x8e\x51\x0a\x6f\x60\x4b\xeb\x2b\x6e\xe8\x03\x52\x41\xdc\x6d\x92\xe7\xc9\x4f\x9f\xad\xb9\xfc\xc4\xb8\xaf\xfe\x2e\xf8\xb6\x91\x17\x24\x49\x08\xd7\xc6\x18\xf7\x38\x97\x99\xb8\xae\x49\x6d\x39\xb7\x6a\x7a\x3a\xab\xb5\x88\x2f\x70\x6e\xbf\x1d\xa0\x4d\xa8\x7c\x0f\xdb\x25\x21\x2f\x92\xdb\xfc\xa2\x54\xca\x23\xb1\xbc\x75\xee\x0d\xc5\x5a\xa9\x08\x0e\x01\x5c\xb6\x28\xf3\xb9\x57\x75\xd3\x2d\x10\xe6\x16\x7a\x99\x3f\xb9\xff\x42\xa5\x00\x98\x39\x25\xb1\x16\x7d\x48\x0e\x33\x27\xcf\x9c\xd1\x19\x7d\xd2\xff\x68\xa2\x6b\x3e\x23\xc8\x16\x7c\xdf\xcc\x4f\x34\x3d\xcc\x1a\xb5\x91\xcf\xa1\xeb\x50\x69\xcc\x51\x14\x45\x2b\x55\xb8\xb2\xdc\x84\x7e\x90\x17\x82\xbd\xb5\x62\x59\xb8\x4a\xb3\x22\x61\xd8\x68\xd8\x62\xaa\x9e\xdb\x65\x69\xca\xb4\x84\xab\xe7\x65\x7e\x37\x50\xc9\xd9\x03\x0f\xd7\x30\x60\x80\xf2\x93\xc7\x5e\xe4\xa4\x20\x75\xe4\x8e\x80\x37\xf4\xcf\x3b\x47\x4b\xb4\x8a\xc6\xd5\x55\xb3\x29\xe8\xff\xec\x56\xfe\x6e\x6d\x78\xb8\x20\xc9\xb1\x58\x1c\x2a\x2e\x32\x70\xa1\x88\x78\xee\x9a\xfd\x8f\x31\xf2\x84\xef\x0e\xbc\x00\xfc\x09\x86\x9e\xd5\x34\xaf\xb1\xe3\x60\xdf\x57\x85\xe1\x32\x5f\x7a\x41\x66\x0c\xdd\xc8\x00\xe5\xd9\xae\xf0\x43\xcd\x86\xae\x08\x62\xdb\xe5\xc4\xfc\xee\xdf\x5f\x4c\x2f\x23\x10\x92\x86\x20\xf0\x4a\x31\xdd\x89\x71\x90\x87\x44\x6b\x27\xbd\x12\xbf\xf6\x9e\xcc\xdd\x6d\x52\xc4\xcc\x47\x66\xac\xdb\xc7\xde\xe4\xb7\x5d\xc4\x25\xc2\x7d\x3f\xdf\x7e\x58\xcb\x83\x51\xe0\x49\x6d\xb4\x7c\xfe\x1c\x9d\xbc\x1e\x38\x66\x6c\xfd\xba\xf0\x59\xa8\x45\x0a\x37\x21\xc7\x0c\x8c\x28\xdb\x6a\xaa\x9e\xef\x58\x3c\x54\x59\xc8\xb6\x8d\x21\x44\x76\xbe\x99\x24\x8e\x88\x55\x94\xe6\xd4\xde\x6e\x29\x04\x66\x29\xc3\xf5\xcc\xc6\x67\x34\x1f\x1e\xe6\x50\xce\x87\x95\xff\x26\xeb\x2b\x1e\x9c\xe0\xe5\x18\xa5\x63\xc3\x5f\xe4\x4d\xd4\xd5\x81\x0a\x44\xff\xc4\x73\xfc\x6d\x83\xb2\x13\x8b\x3d\xbf\x73\x8f\x1d\xb8\x28\x4e\x94\x0b\x55\xea\x44\xfb\x9e\x13\xf8\x32\x85\x05\x4a\x44\x02\x54\x43\xa1\x2b\xdc\x6f\x5f\x20\x32\x42\x01\x32\xcc\xbd\xb3\x3a\x49\xfe\x3a\xa7\x46\xb7\x6a\x1f\x94\x5d\x54\xbf\x49\x92\x3e\xf3\x95\x76\x1d\x4e\x13\x0b\x10\x71\x9a\x09\xa4\x4c\x77\x4d\x17\xca\x40\xc4\x33\x02\xa0\x55\xfd\xa8\x33\x71\x3e\xaa\xf0\x34\xff\xa6\x95\xe9\xfd\x15\x38\x75\xc4\x84\x3d\x77\xee\x99\x8f\xd2\xdf\x82\x6d\xc4\x27\xd2\xea\x90\xc3\x7c\x7b\x84\xb6\xc0\x6a\x31\xce\x20\x73\xe9\x83\xb1\x9e\x4f\x4d\x68\x03\x67\xae\x79\x90\xa7\x4d\xc8\x4d\x0f\x54\x9e\x7f\x4b\x51\xa2\xa1\xcc\xe4\xf8\xbc\x35\xa3\x15\x34\xba\xed\x13\x9f\x2b\x72\x64\x5e\x7f\x52\xe7\xb9\xb0\x1a\x16\xa2\xba\xd9\x45\x8a\x77\x24\xad\x03\x00\x20\xf3\xdd\xd5\x17\x48\xda\x16\xc4\xa2\x17\x66\xe9\x9a\x27\x9e\x97\x42\x64\x3e\x7d\x28\x69\x49\xd5\xeb\xf5\xe8\x43\x6e\x9b\xd3\xa6\x47\x51\x05\x0e\xd5\x1f\x79\x34\x3f\xee\x56\xe1\x4c\xce\x48\x35\x7a\xa4\x86\xa3\xfb\x66\xa7\xf4\x2f\xb3\xdf\xbf\x6b\xa8\x2a\xa3\xc4\xa0\xea\xcc\x0e\x3a\x27\x59\x0d\xe5\x62\x93\x07\x41\xfe\xb2\xb3\xea\x18\xc6\xa1\x35\xf1\x58\x45\xc2\xdd\x76\x54\x79\x88\x8e\x4f\x7c\xc4\x87\x44\x77\x08\x1d\x48\x03\xc3\x43\xcd\x7f\xf9\x95\xf4\x13\xa9\x52\x2f\xb0\x55\xcd\x9b\x35\xaf\x28\xfd\x1d\x60\x5a\x00\x81\xa3\x57\x5b\x00\x9c\xb8\x00\xc7\xd4\x2f\xdf\xe7\x4d\xcb\xd8\x08\x16\x5c\x50\x01\xce\xa0\x19\x0b\xd1\x1a\x66\x36\x72\x93\xa4\x11\x6d\x8d\x23\x4e\x95\xf2\x52\xf8\xf6\x5d\x0a\xb2\x13\x37\xa8\x13\xdb\x72\x67\x9f\x39\xa9\x8a\xd1\xb3\x0a\xf6\x45\x5a\x56\x7a\x59\x1e\x87\x35\x62\xf8\x54\x1c\x87\xb9\xe7\x7b\x15\x40\x2b\x2a\x95\x04\x0a\x70\xf9\x7b\x1a\xa0\xd5\xc7\xae\x28\xb6\xda\xd6\xa6\x7f\xd5\x4b\x9d\x98\x90\x75\xce\xbb\x52\x91\xad\x1f\x3d\x99\xc3\x1f\xb5\x4a\xc3\x27\x95\x61\xf8\x1f\x5b\xe4\x45\x04\x86\x85\xcb\x45\x00\x37\xff\xe0\xe9\x56\xe5\x21\xd7\x88\xe7\x53\xa3\x02\x0d\xd7\xe1\x8a\x9d\x54\x60\x73\xf4\xa7\x22\x81\xce\x35\x81\x85\x6d\x50\xa1\x2b\xcc\x29\xce\x69\x25\x46\xe3\xf1\x04\x3e\xa3\x2b\xe2\xb2\xc4\xcf\x29\xb7\x6b\x6c\x3a\x5e\x36\x82\x32\xf5\x6c\x54\x8b\x21\x4e\xd1\xe3\xfe\xe9\x5c\xa9\xc0\x69\x93\x42\x57\x78\x5e\x29\x89\xbe\x56\x9b\x5a\x54\x7e\xf3\x90\xa2\xf3\x0b\x5a\xcf\x01\x3f\x50\x32\x75\x5f\x35\x19\xf4\x7d\xcc\x0d\x9b\x8f\xea\xb3\x65\xea\x8a\xd6\x5c\xf8\x51\x4f\x3f\xb2\xf2\x8e\x8f\xa2\x57\x2a\x9a\x77\x23\x2c\x05\x6a\xc3\x28\xf2\x05\x24\xe4\x0a\xf9\x82\x1c\x5c\x6f\xf2\x2c\x59\x30\x4c\x29\xff\xa2\x13\xcf\x8f\xca\xd1\x0f\x85\xdb\x88\x8d\x6b\x18\xec\x1f\xc4\x66\x5a\xb5\x44\xb1\xb3\x60\xd5\x46\x9c\x7a\xfd\xcf\x52\x0d\x21\x25\xda\x93\xe1\xb9\x93\x62\x61\x13\xd0\xc0\x8a\xde\x5a\x75\xa3\xa4\x73\x20\xd3\xc4\xcd\x54\xba\x89\x0f\xc9\x77\xed\x62\x46\xc0\x3f\x87\x2d\xb8\x54\xfb\x8a\x0a\x62\x48\x78\x66\xc0\x94\x6a\xf5\xbb\x9a\xb1\x16\x47\x48\xf4\x67\x46\x99\x39\x75\xb0\x25\xae\x18\x30\x29\x73\x31\xb9\xdc\x1b\x8b\x75\x72\x10\x49\xb1\x36\x9f\x19\x20\xcd\x05\xb0\x02\x22\xc8\xdc\xa2\x89\x6a\x1a\xc8\x31\x89\x09\x15\x03\x6f\xde\xe4\x7e\xbc\xb7\x3f\xdf\x58\x5e\x8b\x5c\xd8\x91\xa2\x9d\x89\x23\xf8\x9a\xf7\xf5\x21\x27\xc3\x42\xfa\x2a\x3c\x78\x52\x29\xc6\x80\xf2\x81\x5d\xd1\xb9\xba\x6b\xcb\x25\xda\x22\xe2\x22\x29\xb1\x8c\xcf\x5f\x9e\x19\xa7\x80\xc7\xab\xc2\xb8\xaf\xe9\xf9\xfc\x76\xb3\x70\x10\x80\xc6\x3d\x8f\x5a\x6b\x36\xa8\x2a\x19\x06\x71\x09\x9f\xa1\xe5\xfe\xef\x20\x5e\x35\x57\x69\x8d\xc0\x01\xb5\x65\x8f\xe2\xe8\xa2\x5a\xb1\x2d\xfe\x20\x0d\xef\x13\x93\xaa\x66\xec\x5b\xe6\xc8\x22\x55\xe9\x1c\x19\xb1\x37\xf9\xe2\xd7\x55\xdd\x30\xce\xa2\x5f\xb3\x56\xa6\x0b\x4d\xaa\x90\x7d\x99\xf7\xb7\x27\xe5\x4d\x15\xf7\x34\xa5\x7e\x3f\xd4\x1c\xc5\x7d\x5c\x75\x85\x2f\x71\x76\xd6\x6c\xdd\xdf\xb6\x73\x3a\xff\xcd\xc2\xdd\xea\x51\x45\x59\x54\x6c\x85\x3f\x3b\xa0\xe8\x5c\x39\x02\x7b\x95\x7d\x5b\x33\x1c\x63\x88\x28\x4d\xd3\xdd\xf3\x2f\x8a\x03\x58\xf4\x2a\xcb\xc9\xb0\x27\xfb\xe3\x73\x64\x78\xf3\xa2\x47\xab\x98\x33\x3e\x29\xac\x08\x3c\x0a\x42\xc0\x1e\x57\xf4\x9e\x2a\xcc\x38\x02\xd3\x04\xe0\xe2\xff\x51\xe6\x51\x0c\x1b\xc8\x36\x88\x2f\x02\x64\x5f\xf6\x2b\x7b\x5b\xd4\xf3\x8c\xdc\x51\xe8\x0a\xcf\x9c\x51\xb4\x13\x3b\xb9\x6a\xfc\x8f\x8e\x2a\xc0\x59\x0c\xaa\xc3\xef\x3e\xac\x81\x28\xc0\xb8\x0c\x22\xd5\xfb\xc7\x87\x28\xb3\x11\x97\xf7\x92\x5e\xd6\x55\x60\xa2\xf2\x01\xfb\x96\x43\x0c\xae\xc4\x77\xb3\xa6\xb9\x08\x7e\x05\xdd\xdd\x70\x5c\xbd\xa2\x19\xf9\xc7\xa0\xfa\xfe\x94\x45\x3f\x36\x5e\x11\x01\xa4\xd4\x2c\x36\x60\x3d\x0e\x6a\x55\x54\xfc\x60\xf8\x2c\x76\xf4\xd1\x56\x1e\xe8\x56\x58\x98\xd8\x8a\x39\x4d\xf6\x3b\x8b\x79\xa2\x76\x3d\xb5\x55\x2f\xc1\xec\x5f\x5b\xd4\x41\x72\x0d\xdb\xd4\xe5\x9d\xaf\xf5\x03\x46\x27\xdf\x3c\x7d\x7a\x13\x00\x2e\xfc\x83\x46\x8b\xed\xe8\xe0\xac\xca\x97\x0f\xc8\x76\x30\x55\x74\xfd\x32\x8f\x3e\x94\x04\x9b\x80\x29\x27\x67\xfe\xca\xce\x74\xa7\x11\x1b\x16\x8d\x3e\x4b\xfb\xc2\x7f\x9c\xdb\xbf\x96\x02\x3c\x35\xb8\xf9\x7d\xf7\x2b\xad\xef\xc0\xf7\x08\x1c\x4e\xd7\x0c\x90\xa2\x1b\x6e\xd3\x64\x2f\x7f\xde\x72\xf9\x47\x35\xe4\x01\x55\x37\xdc\x34\x56\xe4\x52\x08\x2a\x82\xec\xf3\x9b\x14\xb6\x7e\xd0\x13\x30\x21\x84\x11\x3e\x26\x52\x62\xcf\x8d\x8e\xbd\x68\x29\xfd\xc3\x2e\xb5\xfe\x70\x39\xce\x2a\x7c\xfa\x90\xec\x75\x27\x52\xc2\xa9\x06\xfc\x1f\x26\x69\x48\x18\x9e\xe6\x0b\x65\x21\x38\xf9\x9e\x1c\xa7\xbe\xab\x12\x43\x81\x90\x4c\x71\xf6\x29\xd0\x1c\xec\xf1\xd9\xc6\x4f\xcf\x51\x00\xae\xc4\xac\x63\x1c\xe5\x1d\x99\xaf\xf5\xf0\x85\x10\x93\xb3\x62\xc0\xe0\x5d\x47\x15\x9f\x4c\x86\x62\xc5\xd5\xfc\x75\x1f\x2a\x52\x57\x41\x14\xa0\x60\x11\xff\xc7\x46\x0d\x58\x5d\x47\xb1\x91\x67\x6e\xcb\x76\x19\xea\xea\x8c\x3a\xe5\x52\x00\x5d\xa8\xdb\x1e\xd7\x12\x32\x54\x8f\x21\xcc\xee\x81\xf4\xdd\x7b\x16\x65\x3e\x00\x28\xe3\xb8\x92\xb5\xde\xe7\x71\x65\x3e\x35\xb1\xba\x86\xc3\x27\x1e\x54\x46\xd7\x88\x99\x04\x01\x27\x72\xce\xa9\x56\x51\x68\x30\x8c\xcc\x46\xc1\xc7\x0e\xb7\x33\x98\x38\xf0\x02\xf1\x08\x8b\x2c\x5a\x22\xe1\x37\x77\x0b\x45\xde\x9e\xe8\xef\x16\xe5\xe5\xc3\xac\x12\x9b\xc3\x00\xbe\x32\x46\x48\x74\x61\x64\xfb\x56\xf4\x35\x10\x08\x2e\xd9\xa2\xb8\x06\xc7\xd6\xda\x5d\x7d\x99\x7b\x36\xe8\x16\xb8\x60\x9a\xc1\xfb\x33\xbf\xdf\xa9\x69\x34\x30\x5a\xb7\x71\x43\x05\xb3\xe4\x3a\xc7\x2a\x85\x66\x75\x6a\x1b\x88\x70\x64\xde\xd9\x22\x07\xf8\x25\x3b\x28\xd4\x31\xaa\x60\xe1\x96\x6b\x9d\x56\xa7\xf1\xc8\xf3\xb0\x17\x8b\x58\xf5\x7e\x38\x5c\xcf\x11\xed\x06\xb0\x9a\x66\x3f\x2e\xb4\x80\x7c\x2e\x34\x9f\xfb\xda\x96\x74\x8d\x68\x32\x8a\x13\x7d\x80\x78\x27\x97\xde\xd5\x3d\x41\x3c\x1c\x73\x4d\xb3\x13\x16\x6b\x1d\xee\x1a\x66\x8d\x28\x37\xe0\xe3\xab\xd7\x5a\x55\x76\x3e\x06\xab\xa9\xe8\xe7\x77\xb7\x68\x42\x11\x0c\x1b\x7e\x42\x99\x3e\x36\x4e\x49\xd3\x3c\x0f\x57\x79\x53\x3f\x5b\x58\x23\xe3\xa0\x8d\xcb\xd8\x31\x39\x61\xfe\x0e\x6d\xd2\xcf\x02\xcf\x8a\xd5\xf4\xc2\xd7\xe6\x2b\xa6\x9d\xa4\x87\x3b\x16\x85\xff\xdc\x2e\xb7\x78\x67\x7b\xbb\x3c\x99\x66\xdd\x95\xd2\xb7\x0e\xaa\x6e\xcc\x4e\x3b\x6f\xb3\xa2\x6d\x49\x03\x8f\x44\xe9\x15\xf4\xb7\xb7\x0c\xe4\xa7\x59\x54\x07\xc5\x13\x21\xe3\x6d\x5d\x8f\xba\x48\x1c\xad\xf3\x6e\x8f\x52\xa5\x15\x18\xae\x63\x1b\x76\xce\xf7\x46\xaa\xd7\xe0\x07\x2c\x51\x6d\x3f\x3d\x51\x66\x26\xbe\x62\xe0\x9e\xc9\x97\x78\xc7\xa3\x3b\xf0\xc0\x55\xa5\x0d\x0a\xe7\xbb\x4b\xe9\xa5\x50\x46\x55\x81\xab\xc9\x5e\x94\x95\xdd\xbc\x22\x74\x68\x32\x9f\x3a\xca\x97\x07\x38\xda\x47\xf7\xb5\xf8\x03\xb9\xd5\x18\x29\x95\x84\xe0\xe8\x8a\xd9\x3a\x48\xa6\x6c\x25\x90\x9c\x83\xab\x46\x28\x0b\x53\xea\x12\x45\xf7\xf5\x0f\x5b\xb4\x26\x7a\xec\xb7\xce\x01\xa8\xbf\x7f\x60\xa8\x88\x98\x3e\xae\x47\x51\x13\x92\x80\xad\xc7\x94\xbd\x81\x0d\xc8\xd9\xc2\xce\x97\xe4\x93\xb3\xa9\x53\xe6\x4e\xa5\x7d\x99\x2b\x9e\x89\xf5\xa8\xf8\x2c\x29\xf3\x85\x53\x8a\x93\x6a\x35\xda\xaf\x45\x1a\x70\x39\x83\xdc\xcb\xa7\x14\xb0\x20\xad\xba\xd8\x8e\x61\x18\xe7\x69\xea\x98\x2e\x76\x30\x28\xa6\xf0\xaa\xe0\xd5\xa3\x3a\x2a\xc7\xa0\xf0\xd0\x00\x0d\x00\xd0\xe0\xcc\xac\xf4\x33\xb2\x49\x29\xa6\xa9\x84\x9b\x77\xa7\xb3\xb2\xe9\x6d\xf1\x8c\xf4\xd2\x0d\xe9\x43\x6f\x72\xc7\xf4\x49\x53\x66\x4c\x99\x34\x63\xc6\x14\x51\x26\xdd\xb7\x59\x68\x78\x93\x1a\x47\xea\xff\xe2\x21\x81\x7c\xa5\x4a\x0c\xc8\x0f\x38\xad\x54\x53\xd4\x31\x30\x83\x39\xdd\xe1\xa9\xf2\x8e\x2d\x6c\x13\x83\xba\xbc\x13\x9a\x1d\xfa\xb2\x82\xce\x72\x89\xcd\x2b\xd4\x6f\x6c\x68\x89\x37\x02\x57\x81\x2f\x74\x85\x9f\x9f\x34\x54\x81\xf9\x06\x65\x0b\x56\xda\x8d\xbb\x35\xf4\x93\x45\x0c\x8b\x9f\x10\xe1\xbc\x50\x5a\x99\x0b\x64\xef\x4a\x9d\xde\x6e\x23\x23\xc1\x9f\x65\x5e\x4f\xb7\x32\x2a\x16\x4a\x61\xff\x32\x77\xd5\x04\x70\xc6\x42\xd5\x22\xef\xe4\x5e\x75\x62\xac\xb6\xb4\x90\x63\xfa\x5a\xb7\xeb\x9e\x77\x47\xa8\xcc\x49\xc7\x57\xf6\xe2\x23\x53\xb5\x7a\x85\x40\xfb\x96\x33\xd4\x36\x3c\xa4\x0a\x6f\x56\x78\x19\xfc\xde\x6e\x35\xc5\x2f\x06\xbe\xf0\xbd\xc6\x66\xba\x1b\x5d\x0a\x1c\xf3\xea\x66\xab\x46\x3c\x69\x50\xfc\x2f\xd6\xad\x03\x95\xd9\x65\x5a\x6d\x5f\x2a\x81\x4b\x3b\x5c\x81\x39\x57\x62\xcf\x2a\xd1\x5b\xab\xc9\x74\x2f\xec\x5d\x97\x5e\xc8\x36\xf6\x31\xd7\x20\x59\xdd\xcb\x33\x9b\xeb\x10\x14\xc6\x8b\x57\xe9\xa4\x23\x2c\x94\x28\x72\x4f\xae\x51\x46\xec\xc8\x47\x0c\x3b\x15\x5a\x2b\x74\x85\x37\x1d\x4c\xbf\x0d\xc8\x67\x64\x63\x29\xfc\xb4\x26\x7b\xee\xb4\x09\x94\x87\x48\xd3\xa6\xbe\x98\xae\x99\x7c\x54\xc3\xcc\xe9\xc7\x1d\x2a\xf7\xf3\x87\x34\xc0\x96\xeb\x62\x64\xc7\xf0\xf8\x23\x0a\x03\xa3\xc1\xe5\x54\xe3\xca\xf9\x9f\x7b\x79\xb5\x17\x38\x25\x44\x18\x97\xbc\x28\xcd\x55\xc0\xe3\x02\xff\xd1\xf6\x0c\xef\x5d\x5f\x4b\xab\xd5\xc0\x01\x9c\x80\x5e\x4d\xfd\x75\xb5\xda\x21\x28\x12\x21\xc9\xf2\x99\x57\x84\x31\x0a\x2e\x27\x7d\xe3\xfd\xbd\xe3\x65\x0b\xc8\x21\x35\xcc\x3c\x80\x88\x35\x0d\xa0\xae\x1c\x3b\x2c\x3e\xca\x04\x9e\x0e\xae\xa6\x7d\x39\xff\xcc\xf9\x98\x24\x0e\xd3\x76\x3e\xc9\x5e\x2b\xb8\x89\xea\x90\x9f\xbd\x4a\xdb\x65\xc4\xb7\x62\x8b\xab\x9b\xde\x57\x76\x30\xa8\x00\x41\xe6\xb6\x6e\xe1\x08\xe5\x2a\xab\xc8\x41\x65\x1c\x0f\xc9\x7d\xfb\x7c\x91\x63\x45\xa5\x52\xb8\xe9\x01\x51\x4d\xcc\x5b\x72\xc3\x8a\xf9\x37\x2f\xff\x6c\xfc\x7c\x2f\x1a\xce\x63\x8c\x17\x18\x46\x14\x63\xf8\xfd\xff\xba\x43\x98\xda\x21\xd5\x99\xf6\xdf\x76\xb6\x28\xdf\xe7\x83\xed\xee\xc8\x6e\xfe\xc1\xcb\x03\xcf\x56\xf4\xbd\xc3\x27\x84\x62\xbc\x8d\x3d\x4f\xd0\x6c\x83\xf5\xf2\x2e\xa6\xcf\x48\xf4\xc8\x66\x2f\xd0\x74\x66\x5c\x52\xd1\x7a\xd9\x99\xe7\x0e\xca\xc1\x33\x43\x10\x4f\x8d\x0f\x86\xaa\xe5\x0e\xe1\x90\xba\x8f\x95\xe4\x4f\x0d\xa1\xee\x1f\x4e\x13\x35\x40\xc9\xc6\x70\x92\x74\xec\x56\x2c\x14\x50\xfc\x7e\x4e\xcd\x69\xad\xc7\xad\x07\x27\x96\xac\x2c\x74\x85\x13\x26\x35\xa9\x06\x71\xe1\xaf\x59\x8b\x74\xef\x4b\xd3\xc4\x8e\x2d\x90\xdb\x7d\xb9\xc7\x5f\x55\x86\x5d\x42\x1a\x25\xfa\xfa\xde\x75\x0a\x14\x13\xd7\x88\xaf\xc4\xaa\xfc\x36\x41\x3f\xa3\x0e\x16\x1e\xdd\x7d\xd9\xaf\xcb\x20\x6b\x83\x30\xd4\xd6\x85\x69\x6e\x9f\x48\xa4\x1a\xcd\xa1\x28\x37\xe4\xa0\x80\x12\x54\xab\xc8\x11\xc0\xe2\xd1\x6b\x15\x76\x2b\x17\xc6\x9b\x23\x77\x54\x54\x8b\x80\xf2\xe4\xb9\x0a\x71\x06\xdc\xb9\x60\x69\x67\x8f\xab\x62\xe5\x80\x4f\xe0\x8b\x26\xfb\x8b\xc7\xb4\x16\x3a\xad\x46\x2b\x35\x69\x1d\x7f\xff\x6d\x15\x29\x62\xdb\x51\x96\xd3\xd5\x97\x5b\xb4\xbf\x3f\xcf\x86\x2a\x18\x93\x08\x1e\xdc\x2b\x6b\xd2\xf7\x1b\x53\x2f\x9b\xb9\x8c\x99\xf7\x4f\xa5\x0f\x60\x33\x28\xf2\x93\xf9\xa7\x3b\x52\x7e\xf5\x31\xb7\x29\xfa\xf8\xff\x96\xfa\x58\x0d\x8f\x28\x87\xd1\x4e\x8d\xee\xe4\x60\xc4\x8a\xb1\x45\xe0\xef\xdb\xd2\xbf\x04\x30\x6b\x95\x8b\xf5\x18\x4f\xc8\x9d\xe9\x15\xa6\xb4\xb7\x2b\xf6\xfb\x03\x75\xa3\x92\x2a\x4e\x64\x80\xeb\x6d\x63\x94\xc8\xc6\xb8\x7b\x53\xfa\x06\x7f\xb8\x55\x5a\xfb\x46\x11\x91\x38\x4d\x63\xf1\xec\xbf\x68\x2c\x04\xca\x4c\x2c\x0a\x85\xbe\xcc\x85\xc3\x5a\xc5\xde\x76\xca\xaa\xb8\x7f\x66\x66\x4d\xd3\x8b\xa2\x6e\x9c\x51\x5e\x36\x51\x6e\x2b\x1b\xd5\x40\xd9\x3b\xfc\xca\x07\x8a\xa1\xa9\xaa\xda\x61\x0d\xd7\x05\xc6\x91\x19\x9b\x8f\xbf\xb9\x48\xcd\x7f\xcd\x82\x45\xa9\x80\x6e\x57\x76\xa8\xf2\x17\x34\x70\x4c\x39\xb5\x7d\x57\xac\x62\x83\x05\x06\xe1\x11\x2e\x73\xfc\xf8\x79\xae\x34\x3c\xde\xa9\x41\x2a\x6c\x5e\x1a\xf1\x3a\x36\x3b\x69\xed\x25\xcd\xbf\x2e\x18\x81\x2f\x46\x05\xe7\x3d\x95\xdc\x8a\xdd\x50\x6e\x25\xf7\xef\xbd\xba\xdc\x6b\x94\x48\x7a\x29\xba\xc2\x9d\x42\x01\xc0\x0b\x58\x99\x5b\x97\xfe\xf6\xd5\x98\x36\x28\xb4\x54\xff\x59\x31\xe7\x98\xde\x09\x5d\x39\x38\xc3\x57\x4c\xd4\x50\x06\x28\x06\x91\x15\x4e\xa9\x1e\x3a\xd4\xc3\x46\x10\xfb\x82\xbc\x39\x72\x94\xd2\x81\x70\x4c\xec\x19\x8c\xb8\x09\x30\xfe\x11\xc5\x95\x0f\x83\x09\x24\xe7\x39\xf4\xe5\x06\x6f\xd1\xf4\x9a\x10\x6b\xd8\xc8\x31\x95\x21\x42\x6e\xf8\xdc\x04\x17\xb9\x78\x71\xf4\x64\x2f\x7c\xef\xa2\xa4\x0b\x54\x4a\x61\xea\x6e\x79\x3c\x49\xd5\x1c\xa1\x11\x72\x75\x8f\xdc\xe2\x53\x26\x17\x5c\x21\x14\x3f\x67\x8d\x52\xa7\x19\x06\x0d\xb8\xcf\xde\xda\x71\xca\x64\x1b\x7b\x1e\x66\x85\x8a\x03\xee\x0a\x7d\xb9\x1b\x36\xea\x72\x43\x55\xc4\x2a\x00\xb1\xe2\x90\xdc\xf7\x35\xb6\x54\xe0\x90\x58\xc4\x3e\xff\xe9\xac\x8a\xee\x83\x82\x31\xba\xba\x4b\x8e\x36\x29\x09\x42\x4b\x67\xe0\x1c\x79\xae\x81\x88\x75\xa1\x2b\xfc\xe4\xb9\xba\xc8\x8f\x4d\xcb\x02\xb4\xf1\x7c\x91\x1f\xfa\x37\x21\x93\x70\x45\x5e\x78\x74\x9f\xa9\xf1\x7e\x4c\xa2\xa2\xca\x69\x10\xf9\xcd\x8a\xc4\x68\x09\x11\x5e\xbc\x04\x4b\x2f\xd1\x2e\xdf\x84\x36\x4e\x6c\xd4\xf7\xc3\x75\xa3\xd2\xa2\x54\x2b\xae\x5e\x4a\x1d\x61\x63\x10\xfe\xed\x85\x94\x32\x5e\x60\x0a\xfd\x90\xe7\xee\xd7\x40\x65\x5c\x04\xdc\x2d\x74\x85\x8d\xc3\x72\x18\x44\x14\x01\xa2\xdc\x57\x85\x5a\x58\x0d\x5b\xc4\xb0\x85\x41\xf3\xd9\x93\xfc\xc8\xbc\x16\xb9\x51\xf0\x3c\xb9\x53\xae\x46\xee\xfb\x21\x79\x6f\x2f\xf0\x66\xce\x12\x34\x1f\xdb\xb6\x2a\x46\x34\xef\xb8\x1c\xed\xda\xd1\x91\x92\x3d\xb3\x44\x03\x27\xd8\x88\x38\xc9\x2e\xcd\xed\x0f\x9b\x15\x0d\x7d\xea\x34\x9f\x6a\xf9\xf2\x59\x5d\xdc\xde\xa8\xc4\x12\x72\xaf\x8d\x56\x63\x95\xcf\x8f\xad\xcc\xef\x27\x68\x2a\x6e\x54\xf0\xee\xc2\x37\x4f\xe8\x03\x2c\xa7\x14\x55\x44\x86\x04\xe2\xff\x66\x75\x73\x9b\x9c\x38\x65\x1e\x1c\xf3\xd3\x1e\xd2\x8d\x06\x8a\x89\x53\x63\x78\x60\xa3\x66\x0c\xdd\x30\x4d\xad\x09\xb3\x7a\x97\xce\xf3\x8c\xbd\xc9\x96\x1d\xd6\xa6\x3e\xe0\xd8\x9b\x3c\xb0\xcc\x72\xf7\xc2\x54\x5e\xe8\xe3\x72\x14\x7e\x8e\xec\xb8\x30\x99\xab\x49\x08\x4b\xf8\xfc\xec\xf4\xa7\x95\xb1\x07\x00\xf8\xf8\x7c\xfe\x44\xaf\x62\x26\x82\x0d\x22\x92\xc1\xfc\xb2\x0e\x5d\x05\xad\x64\x07\xd1\xf3\x89\xe7\x7b\x37\x6a\x6e\xd0\x51\x41\x9c\x28\xe7\xe4\xfe\x3a\x5d\xce\x59\x6d\x5b\xb9\xef\xd6\xd7\x34\x37\x60\xcc\x6a\xc4\xe0\x12\x05\x5d\x7d\xd9\x3f\x1e\xd1\x8d\xa9\x68\xfd\x6a\x68\xec\x65\x9d\xf5\x1a\x36\x09\xa0\x67\x26\x6a\xf0\x96\xfd\xe7\xce\xf2\xec\xb5\x48\x40\xcd\xd0\xe3\xd3\xc6\x5f\x6c\x18\xa5\xdd\x86\x49\xa0\x31\xc5\x8f\xb8\xbb\x4d\xd1\x65\xa1\x81\x14\x3d\x2b\x77\x5e\xaa\xc0\x55\x91\xd1\x8c\x1a\xdd\x5b\xe4\xcb\x7f\xd9\x75\x2b\xaf\x5b\x1e\x65\xd6\xd7\xc7\xcc\xc2\x41\xcf\xa8\xe2\x4c\xac\xc1\x73\xd1\x2f\xad\x97\xd1\x19\x66\xeb\x94\x72\xc4\x47\xee\xc8\x6c\xad\xcc\x45\x65\xa6\x39\xef\xf7\xe5\x07\x1f\x4d\x76\x71\x0f\x51\x9a\x44\xd9\x6d\xe3\x93\x9c\xae\x04\xf2\x8d\x87\x14\xfb\x80\xc9\xc0\x1d\xcc\x76\xef\x4d\xc7\xff\x0a\x62\xb6\x46\x47\xcb\x6c\xfe\x40\xdd\x3d\x1c\x74\x1e\x06\x1f\x9c\x9f\xf8\x50\x14\xba\xc2\xfc\xfa\x56\x85\x4d\x89\x1c\x07\x0b\x23\xef\xaa\x2b\x5a\x34\x01\x6f\x94\x05\xfb\x75\xdc\x78\x2c\x81\xc8\x95\xe0\xff\x7b\xb8\x96\xac\x61\x04\xaa\x2d\xe1\xf4\xa2\x32\xa0\xb6\x6a\x88\xf9\x1e\x37\x1e\x3f\xd9\xa9\x8d\x33\xb9\xb1\xb3\x42\xd5\x18\x7f\x26\x0d\x09\xc4\x36\x36\x7c\x26\x34\x76\xf4\xec\x78\xd4\x24\xa5\xb3\x8e\x6c\xc4\x38\x55\xbf\x7d\xa1\x22\xc8\x4a\x91\x1d\xab\x58\x65\xcc\x43\xba\x62\x98\x63\x21\xdf\x47\x4e\x8c\xa3\x8e\x0a\x89\x9b\x0f\xea\x27\x93\x19\x47\x83\x95\x9a\x82\x2c\xa8\xf2\x26\x02\xc9\xf7\x74\xea\xda\x7f\x8e\x81\xcd\x64\x85\x3e\xfb\xa4\xd6\x59\x47\x25\x02\xda\xa9\x72\x4b\x1d\xd8\x35\x4e\x5b\x43\xac\x8c\x88\x03\x89\x14\x60\x59\xa0\x09\x9b\xff\xac\xd2\x77\xc3\x35\x64\x0a\x94\x85\x0e\x16\x86\xde\x1f\x87\x86\xdd\x61\x5d\xa8\x00\x33\x98\x83\x0c\xde\xb6\x1d\xfc\xae\xc0\x62\x07\xcc\x81\xd9\x95\x66\x2e\x17\x4a\xd0\x75\x99\xda\xa5\xa6\x9a\x7c\xc3\xdb\xfa\x04\xad\x5a\x25\xbe\x8f\x71\x33\x99\x22\xd3\xfd\x80\x1e\x2f\x40\x7f\x30\x8e\x42\x03\x14\x8c\xe9\x94\x76\x51\x5d\x66\xae\x78\xa5\x99\x83\xc8\x25\x52\x39\x26\x69\xe1\x93\x97\xea\xb9\x2a\xc3\x16\xb5\x4d\xa1\xc8\x18\x56\xb6\xcb\xde\x44\x11\x31\x45\xbc\x38\xb7\x7f\x94\x22\x93\x0b\x90\x40\xcc\x7d\xba\x32\x2d\x0a\x8a\x02\xd5\x85\x2e\x5b\xa6\xe5\x2a\xad\x40\x02\x05\x93\x62\xe2\x58\x3c\xec\x61\x4d\xc6\xc6\x29\x63\x3b\x41\xdf\x42\x8e\x31\x6f\x93\x28\xab\x51\x59\x08\x5f\x67\xff\xd9\x69\x12\xaf\x95\xba\x43\xb9\xcf\x4c\xb8\x4c\xe9\x8b\x61\x5c\x29\x18\x0d\x97\x11\xea\xab\xee\xd6\xb9\x5b\xb4\xd1\xbc\x8f\x6d\xec\x5a\xd4\x11\x7e\x6e\xf9\xdb\xb5\xa9\x2a\xb0\x6b\xf8\x92\x9e\x37\x60\xa4\x56\xf5\x95\x93\x92\x2f\x7f\xe7\x32\xb9\x8f\x4b\x8c\x6b\x82\xf3\xc5\xb6\x2c\x9c\xd8\xf4\xe2\x03\x87\x78\x55\xce\x90\x4c\x2f\xa3\xec\x68\x59\x34\x58\x2a\xee\x2f\x33\x55\x23\xe0\xe2\xe8\xc5\xc5\x96\xe7\xd9\x1f\xac\xbf\x44\xd9\xde\x89\x54\x07\x8b\xe5\x8d\x2e\x79\x40\xd1\xba\x66\xa8\x62\x11\x06\x7d\xb1\x1d\x1b\x2f\x8e\x8f\xac\xee\x26\x79\x9f\xfc\x1d\x79\x79\x53\xe0\xbe\xca\x62\x0c\xca\xfc\x93\x42\xe3\x88\x06\x8e\xdf\x54\xba\xe5\x6e\x7d\x4b\xc9\xda\x02\xe6\x05\xfc\x48\xd8\xb1\x4b\x69\x36\x22\xa7\xc2\xcd\xfe\xfa\x72\x8f\x3d\xa7\x8c\xa4\x18\x0d\x3c\x8e\x9e\xca\xec\x3e\x3b\x5a\x5b\x26\x3e\x01\xb6\x55\x0c\x7c\x7a\xe6\xd4\x27\x93\x3f\x8c\x15\xde\xbd\x0a\x6a\xa0\xa6\x3c\xea\x82\x59\xe9\x8e\x3e\xf6\x12\xbf\xd0\xec\xaa\x75\x32\x6d\x8d\x52\xef\xe8\x65\x7f\x6d\x92\x5e\xab\x0b\x10\x47\x94\x97\x43\x57\x24\xb3\x67\x83\x26\xe4\x14\xb0\x1a\xa9\x25\x10\xd4\xf0\x0b\xad\xe9\x0d\x57\xa1\x0c\x23\xd5\x80\x2e\xfb\xee\xf2\xa4\x3d\x63\x93\x78\x24\x9c\x1b\xa8\xd8\xba\xa0\xc0\xf3\x79\xa8\xce\x9e\x3f\x40\x31\x2a\xf1\x05\x75\x3a\x73\x9f\x66\x7e\x64\xa1\x5a\x62\xc1\x94\xe9\xd8\xa5\x44\xf7\xa0\x54\xb2\x89\x53\x81\x07\x8e\xcf\x1d\xaa\x3c\x70\x2c\x4c\x09\x6a\xca\x9c\xcb\xc6\x65\x64\x93\x5e\x28\x6a\x6e\xdf\x94\xb2\x89\x73\x2a\x51\xe1\x37\x2a\x1d\x7f\x7d\x44\xea\xc9\xcd\x49\x9c\xfd\xb1\xa2\x52\x04\x73\x66\x04\x27\x29\x67\x2f\x1c\x97\x46\x05\xbb\xd4\xa1\x51\x99\x86\x6b\xe9\x73\x3a\x9f\xa9\x29\x12\x20\x2e\xa9\x40\x49\xfc\xdc\xd1\x21\xa2\x24\xc0\xc9\x8c\x74\xdf\x48\x61\xc9\x65\x18\x70\xf4\x16\xba\xc2\x37\x9e\xd1\x4c\xf1\x68\xa1\xce\xa2\xa8\x2b\x82\x62\xe6\xbb\xe7\xe8\xaf\x39\xee\xf3\xc4\x13\xec\xec\xfe\x03\xbc\x8b\x40\x1c\xe4\xba\x8c\xba\x2c\xe6\xa9\xdc\xfb\x74\x9a\xb5\x6e\x05\x9e\x87\x89\x93\x72\x5f\x0e\xc3\x6d\x0a\xb3\xb5\xbd\x6d\x7a\x14\x2b\xbc\x41\x12\x6e\x50\x57\xf1\x78\xdf\xd0\x1c\x4a\x2d\x22\x8c\x66\xfb\x32\x7f\x7d\x5b\x29\xad\x6c\x04\x50\xce\xec\xec\x81\x0a\x7a\xc4\x02\x4c\x65\xf8\xd7\x83\x82\x46\x85\xed\x32\x43\x69\x72\x58\xee\x23\x45\x1f\x9d\xa8\x50\x8b\x67\x77\xca\x41\x9a\x6d\x01\xeb\xa6\x77\xb9\xe6\x43\x26\xd5\x80\x73\x6d\xe7\xb4\xa6\x99\xa7\x3c\xd8\x85\x77\x3c\xcd\xd7\xe8\x0a\x52\xc4\x2c\x16\x4f\xde\x71\xe4\xc2\x54\xa2\x25\x24\x8e\x66\x3f\xad\xd9\x31\x39\x82\x8c\x22\x22\xea\x26\xce\x9b\x29\x5c\xdf\xcf\x69\x9a\x9f\x3e\x86\x27\xa3\x37\x11\xc3\x22\x29\x06\xdf\xec\xed\x43\xa5\x12\x49\x2c\x9e\x90\x99\xb1\x57\xf6\xc4\xaa\x98\x30\x59\x2b\x1c\x7c\x5a\x5e\x1d\xdf\xc1\xe0\xbd\xb3\x6b\xaf\x9e\xa1\x04\x8e\x0f\xb0\x64\x78\x00\xd9\xc1\x32\xe7\xbc\x02\x66\xb1\x9f\x78\x98\x97\xca\x0b\x49\x0f\x4e\xd8\x70\x7d\xb9\x5f\x0c\x1b\x1a\x67\x8f\x9c\x7b\x0d\x45\xe7\x7f\x3f\x29\x5c\x43\x19\xad\x0b\xa4\xe8\x88\x76\xc5\x88\xcb\xf1\x89\x49\x81\x97\x19\x9e\x5e\x73\x89\x56\x33\x99\x0e\xf6\x4c\xc4\x11\xd2\xe1\x9f\x77\x5f\xa9\xd5\x87\xcc\x06\xc7\x3e\x9f\x5b\x0b\xa4\x13\x8b\xbb\x4f\x6b\x4d\x1e\x8b\x30\x64\xa4\x94\xce\xb3\xdb\xdb\xb5\xe4\x23\x00\xbb\xa8\x58\x3f\xef\xfb\x0f\x6b\x2d\xaf\x2a\xad\xc4\xfe\x74\x99\xd9\x2c\xbd\x66\x68\xc9\xc7\x4e\x1b\x50\xbd\xb2\x4c\xd0\x14\xae\xe5\x72\x1b\xf1\x49\x72\x61\x87\x44\x0e\xf3\x09\x5a\x6a\xc5\xe2\x97\x34\x1c\x40\x0d\x3b\xa2\x71\xb0\x64\xab\x0e\x64\x8e\x82\x96\x9f\x48\xa8\x4d\x52\x66\x09\xd8\x01\x7f\xaa\x42\x57\x78\x89\x5a\x2d\x4c\x01\x4e\xf6\x98\x39\x7a\x94\x60\x2e\x65\xf2\x93\xb2\xc6\x49\x4d\xec\x8d\x56\x8b\x02\x05\x38\x8d\x03\xd7\x0a\xd7\xce\xbf\xb6\x29\xe5\x7b\x60\x87\x8c\xb2\x2e\x6a\x88\xd3\xe6\x93\xb3\x35\x31\x1b\x0b\x0c\xb2\x00\xd0\xf6\xac\x3a\xb7\x47\xc4\x66\x94\xa7\xac\xe1\xdd\x1f\x28\x52\x2c\x34\x5a\x4d\x84\xd5\x29\xaf\x14\x1e\x7f\x85\x73\x7b\x4a\x94\x42\x8f\xc4\x90\x13\xd4\x41\x1b\xc4\x5c\x15\xb3\xc4\xdc\xaa\x2f\x73\xe9\x93\x5a\x15\x2b\x00\xb8\x9c\xae\x37\x53\xf3\x54\xf7\xa2\x03\xc2\x37\x10\x8b\x6b\xf1\x9b\x45\x5b\x75\x9e\x5d\xc4\x4c\x81\xc3\xfd\x64\x81\x6e\xfc\x5d\x2c\x12\xdf\x17\x05\x43\xbc\xbc\x3e\x36\xba\x25\x05\x2f\x87\xc1\xe7\x17\x36\x5d\xac\xa4\x9e\x95\xa0\x81\xa5\xe0\x4e\x18\x8c\x56\xda\xf3\xc4\xb7\xa0\xcf\x11\xfe\xe9\x81\xd4\x70\x38\x11\x10\x74\x63\x62\x83\x2d\xf8\x05\x8b\x16\xa5\x57\x50\x77\xc0\x84\x96\x4b\xee\xbb\x6b\x53\x04\x6b\x20\x4c\x84\x7f\x51\x0c\x2c\x3d\x6c\x24\xba\x6e\xb9\xf3\xc7\x28\xa4\x5b\x08\x55\x89\xc2\x45\xb9\x4d\x6b\x8c\x00\x39\x27\xee\xc9\x0e\xd8\x90\x44\xdd\x0a\x51\xfb\xa9\x2b\x8f\x5e\xca\x17\xcf\xff\xe6\x3a\x94\x79\x7f\x33\xef\x4e\x4d\x6f\x9b\x39\x0d\x1a\x89\x8f\xb5\xa6\xee\x1a\x8b\x7e\x64\xae\xef\x03\xbd\x4f\xd4\x48\x44\x81\xb2\x9f\x3d\xa0\x21\xfb\x30\x76\x45\x97\x7a\xf7\x80\x66\xbc\x33\x1f\xe4\x87\x93\xd7\x68\x35\x2b\x75\x38\x2e\x20\xf7\xa5\x67\x95\x2e\x67\x50\x2d\x72\xcb\x8b\xdc\x9d\x83\x45\x9b\x54\xc8\x74\x76\x85\x5f\x63\x32\x67\x91\xfe\xec\x6f\x3c\xa9\x8c\xae\x18\xf1\xf8\x5f\x7f\xbc\x7b\x54\xda\xbb\x23\xdd\x7e\x78\xa7\x98\xbe\xd0\x6a\x00\xa3\x79\xd8\xe9\x33\xc6\xa5\xdc\x02\x05\x06\x2d\xfa\xcd\xf6\xfb\x15\x93\x4f\x5c\xc3\x82\x02\x72\xf2\x25\x19\x74\x2c\x6a\x58\x9e\x0f\xda\x39\x71\xb9\x33\x44\xa8\xad\x99\xc4\xe1\xa8\xe4\xcc\xfd\x2b\x65\x26\x5c\x21\x66\x94\x0a\xf0\x94\x76\xf5\x29\xe5\x44\xed\x51\x10\x82\xeb\x34\x3d\x04\xf1\x57\x98\xc5\x7d\x6f\xbf\x45\x56\x8c\x36\xf5\x9a\xcc\xca\xf2\xe8\xa8\xae\xb7\x00\xa2\x19\x31\x50\xfe\xce\x96\xe1\x2a\x08\xd7\x42\x7e\x95\x9a\xdd\xb0\xae\x87\xdd\x3f\x5c\x11\x4d\x81\x78\xe0\x8b\x8e\xee\x2c\x5d\xbc\x8a\x1a\x81\x44\xb1\x43\x10\xba\x75\xe0\x50\x91\xdb\x2b\x12\xf6\x39\xb6\x56\x0f\x92\xd1\xfb\x0c\xa4\x16\xc9\xcb\xd3\xd3\x2f\x08\xf8\x09\x1c\x12\x92\x3d\x67\x98\xae\x7a\x41\x5d\xca\xfc\xa4\x38\xcd\x0f\x3c\xcc\x3b\xca\x2b\x10\x43\xdd\xb8\x26\x36\x56\x78\xaa\x57\x3b\xfc\x18\xf6\x14\xad\xea\xdc\xca\x81\xad\x22\xd9\x61\x65\xd5\x56\x3b\xb3\xf3\x0d\xfe\x06\x69\xd1\x26\xbc\x33\x7f\xff\x47\xcd\xfa\xa1\xdc\x1a\x70\xdd\x44\x6e\x99\xb1\x02\x1c\x74\xf4\x1d\x48\x7a\xf8\x0e\x2c\xb0\x00\x5e\xdb\x35\x47\x46\x6b\x05\x24\x63\x94\x81\x2a\x15\x7f\x2f\x7f\x7c\x4c\xc7\x85\x5b\x51\x79\x0b\x10\xd8\x25\xbc\x01\x4d\xaa\x70\xf7\xb0\x80\x2e\xdd\xcb\x8f\xc5\x79\x55\xa2\xda\x05\x55\x34\x10\x0d\x9f\x91\xc1\xa6\x15\x25\x9d\xaf\x60\x03\x3a\xa6\xf1\x1e\x40\xcb\x40\x05\x28\x54\x34\xb1\xea\x87\xf0\xc0\x87\x9a\x2f\x23\xae\xc7\xfa\x4d\xd9\x0d\x03\x94\x10\x5b\x2d\x32\xc4\xd5\x72\x3e\xb6\x6b\xa8\x94\x31\x4b\x10\xf8\xf7\x64\xc7\x68\x99\xbb\xe7\x91\x22\xb1\x89\xdf\x10\x91\xe3\xe4\x83\xba\x32\x93\x4d\x70\x6c\x21\x9e\xbd\xaf\x75\x48\xbc\x53\xdd\x40\x48\x83\x79\xaf\xf3\x27\xe3\x20\x66\x50\x1f\x2c\x06\x42\x4f\x00\xd2\x16\x08\x84\x3c\x74\x0e\x3e\xbe\x46\x2a\xab\x79\x4a\xde\x97\xd9\xb1\x70\x98\x3a\x46\xb8\x6e\xf5\xd5\x5d\x85\xae\xf0\xe3\x1b\x84\x1a\x02\xe2\x1c\xaf\xe5\xeb\x14\xc9\x08\x8b\xb8\x8d\xa8\x20\x81\xd1\xc5\x36\xf9\x8b\x3a\x32\x2a\xd8\xb1\xc0\x94\xf1\xd1\x07\x86\x2a\x43\xe0\x72\x00\xf3\xc0\xeb\x96\x69\x68\x12\x52\xc6\x8c\x20\x2e\x04\x18\x15\x76\x4f\x71\xdf\xfe\xc2\x22\xc4\x6c\x5c\x4d\x55\x44\x8f\x6a\x47\x05\xb2\x6d\x5c\x8e\xad\x49\xb2\xed\x8f\x0f\x55\x15\x15\x38\x01\x3e\xf3\x93\x4d\x12\x30\xe7\x2a\x83\x87\xec\xf2\x63\x23\x95\xce\x2b\x67\x04\xc7\x69\xc1\x2e\x53\x16\x07\xb4\x4c\x81\x7e\x9a\xfd\xc1\x7b\x12\x58\x4c\x75\x60\x71\xb8\xee\x65\xdd\xfd\xdd\xe5\xe2\x67\x31\xdd\xf5\x6b\x67\x87\xc4\xbf\x13\x2c\xec\x70\xf4\x66\x45\xd3\xc1\x00\x8e\x9d\x0c\x82\xd6\x78\xd8\x74\xa0\xb7\xdb\xae\xda\xee\xff\xdd\xb8\x11\x4a\x6e\xe6\x63\xe6\x32\x12\x43\x3f\xcf\x8e\x93\x19\xda\xd4\x0e\x38\xf6\xfe\xe7\xfd\x64\xc0\x52\xe5\x22\x4c\x7b\x5f\x53\x8e\x20\x14\x98\x36\x8f\x23\x2b\xd7\x4b\x9a\x01\x6d\xca\x7f\xb3\x4f\xaf\x57\x08\x03\x2e\x43\x75\x40\x2a\x7e\xdb\xd2\x70\x19\x81\x85\x98\x4f\x53\xc2\xb6\x4f\xae\x19\xaa\x22\x09\xc4\x56\x78\x74\x8e\x52\xaa\x17\xab\x6d\x3e\xb7\x18\x6a\x9d\xab\x1f\xaa\x34\xa1\x1a\x94\x0f\x36\xb9\xd3\xb8\xe0\x8d\x1c\xc7\xca\xf0\x9c\x16\xb1\x64\x6d\x9b\x51\xca\x39\xca\xdb\xb6\xc6\x81\xce\xf1\x15\x67\xcc\x70\xe3\x04\x89\xf4\x9f\x39\x03\xb8\x02\xf9\xf3\xd7\x35\xa1\xb2\x59\xe0\x72\xbf\x57\xce\x92\xce\xde\xf9\x8c\xa2\x7a\x64\x23\x07\x36\x61\xe6\x4b\x42\xa1\xdc\x8a\x2a\x64\x5e\x95\xfc\x52\xe3\x5a\xd7\x28\x80\x82\x79\xfa\x74\x7b\xd8\x0c\xcc\xe4\xa8\x80\x47\x34\x3f\x4c\x93\xa1\x3a\x4f\x47\x60\x13\x1f\x38\xad\x9d\x6c\x81\x4b\x90\x95\x60\xc6\xef\xd4\xb8\x1a\x45\x1b\x57\x89\x67\x89\x35\xf8\x7c\xfb\x70\x89\x69\xf1\x52\x78\xf4\x57\xa4\x3d\x17\xf1\x24\x3b\x37\xe4\x3c\x91\x84\x7e\x35\x9f\xf3\xba\xf7\xab\xfe\xdf\x8e\x68\x32\xe6\x97\xbf\xa1\x08\x2f\x53\x1b\x70\x58\xf9\xb6\x87\xd2\x8f\xb4\x18\xd8\x36\xf6\x5d\x46\x69\x49\x30\x24\xf2\x19\xb5\xb7\x05\xfe\xdf\x3c\xad\xf9\xcc\x89\x38\x05\x72\x7c\x44\x1c\x51\x04\xac\x10\x26\xfb\x65\x3b\xa8\x02\x7a\xff\x67\x0f\x6a\xc6\x4e\x75\x5a\x70\x03\x5f\x99\x2e\x3d\xcf\x69\xea\x85\xa5\x94\x11\xdb\x6b\x92\x35\xcc\x5f\x30\x5c\x23\xd8\x47\x3b\x4a\xd0\xb3\xc3\xdf\xb4\x2b\x04\x45\x5c\x46\x16\xc8\x8c\x75\xf5\x65\x6e\x3f\xf7\xe2\xa6\x93\x39\x41\x50\xe4\xbe\xb5\x53\x29\x8e\xc1\xb3\x86\x2b\x2c\x2e\xfa\x50\x7b\xbf\xd8\x40\x26\xb4\x4c\x40\x3c\x74\xec\xac\xf4\xaf\x91\xef\xf3\xb1\x25\xcc\xfa\x3e\x53\x53\x14\x53\x02\x06\x48\xec\xe8\x52\x7e\xbc\x57\x57\x9e\xe7\x2a\x72\x5d\x7d\xb9\x39\x7b\x74\x67\xf8\x2a\xb2\x63\xa8\x65\xa6\xf1\x9c\x2e\x2d\x50\xad\x52\x27\x2e\x03\xbb\xdf\x4d\x0e\xb1\x2a\x4a\x9a\x6c\x33\x27\x6a\xaa\x25\x51\xa2\x63\x09\x9e\x59\x74\xbc\x2e\x58\x9a\x6e\xdb\x0a\x7b\xdf\x06\x3c\x50\x7d\x36\xf6\x8e\xa5\x48\x1a\x3b\x51\xa2\xec\x11\x54\xe8\x0a\x5f\x9a\xa4\x3a\x94\x46\x05\x86\x78\xff\xf9\xa3\x23\x14\x3c\x37\x43\x06\xe0\xf0\x39\xdc\x71\xfc\x73\x23\x94\x87\x8e\x89\x53\x64\xd8\xb0\x38\xbc\xe2\x0e\xcd\xbf\xad\x11\xd5\x8e\x09\xa8\x66\xfe\xe2\x64\x34\x66\xd3\x62\xa1\x2b\xfc\x89\xa2\x90\x19\xd8\xc4\x62\x88\xcb\x41\x14\xb4\x09\x61\x95\xd8\x36\xc4\x07\x78\x41\x2d\xc3\x64\x66\xe1\x21\x4e\xfd\x5c\x73\xd5\x65\x8a\xcc\x0d\x72\xb8\xcd\x9b\xde\xf7\xdd\xb2\x40\xd7\x3a\xa9\x26\x84\xda\x7c\xf7\xd9\x51\x92\xb9\xd7\xf4\xb7\xd9\x87\x35\x95\x17\x97\xd1\x84\xda\x2c\x24\x42\xf1\x20\x79\x32\xf4\x5a\xa0\x51\x3a\x7f\x49\x0c\xee\x35\x58\x40\xf8\x10\xef\x53\xdb\x9b\x8e\x58\x22\xb9\x5e\xf4\xb8\xea\xd3\x55\x04\xdb\x58\xfe\x52\x36\x1c\x50\x2c\xeb\x18\x2d\x11\x21\xc4\x13\x3e\x7c\x38\x26\xe2\x39\x3e\xcf\x87\x43\xb4\x4c\x93\xb7\xe5\x9e\x27\xb0\x53\x4f\x8e\x92\x6d\x5d\x3b\x41\xdd\x5d\x7b\x78\x48\x9c\x9c\x40\x06\x57\xe8\x0a\x57\xbd\x91\x3c\x91\x22\x6b\xea\x59\xe7\x7e\x38\x75\x98\xba\x10\x5c\x8b\x8f\x77\x6f\x59\x75\x61\xf2\x7c\xd5\xe9\x7a\x46\x81\x4b\x8b\x71\x18\x6c\x8f\xb5\xaf\x7e\x42\x8b\xe1\x76\x85\xd6\x38\x07\x49\x04\xc8\xe2\x2b\x63\x64\x45\x66\x61\xe6\xd0\x6a\x83\x99\x44\xb5\x60\xbe\xe0\xb4\x5c\xe2\x0e\xae\x7b\x2e\x72\xa1\xe0\xbe\x50\x43\xa7\x54\xb1\x61\x20\x51\xe2\xec\xee\xd7\x99\x5f\x34\x55\xae\xe9\x54\x46\xfa\xa8\xea\x0a\xd8\x7a\xee\xe6\xd9\x3c\x65\x9b\xd7\x76\x53\x54\xe7\xdf\xea\xf0\x17\x7c\x2d\x66\x3e\x60\x28\xa2\x7f\x73\x6e\xb1\x45\x55\xd7\xe0\x20\xf2\x25\xf7\x0a\x99\x38\x98\x6c\x7c\x7e\xbd\xa6\x3a\x81\xeb\xfd\x8b\xa5\xfc\x6c\x82\x4e\x2f\x8c\xe3\xca\x7f\xbc\xa6\xab\x16\x56\x91\x6f\x58\xc9\x82\xde\xd8\x73\x81\x5c\xd0\xd1\x76\x1f\xfd\x56\x1a\x76\x43\x44\x93\xe8\x9e\xd1\x5a\xcb\x07\x3b\x1e\xe6\x93\x9b\xcc\xef\x16\xa4\xff\x06\x0b\x03\xed\xcc\xf7\x3f\x94\xa0\x33\xaa\xea\xa0\xfe\xed\x5c\x85\x02\x1a\x94\x8b\x8d\xb8\x22\xb8\xec\x83\xe1\xca\x04\x8c\x46\x27\x6e\x9c\xa8\xdc\x78\x34\x76\xd6\x89\x6a\x1c\x28\x65\xc2\xdf\xb7\xe8\x37\x3e\xb3\x03\x4e\xef\x6b\xda\x87\xa6\x9a\xf6\xd0\x87\xfc\x4a\x5b\xfa\x3a\xa7\xc4\xe0\xd0\xa7\xb6\xf3\x8f\x5e\x45\x18\xc7\x6c\x14\xba\xc2\x9f\x3f\x35\x46\x7b\x72\xd1\xe9\x01\x14\x8a\x38\x07\xb8\xf2\xa0\x2e\xab\x52\x45\x84\xb7\xf6\x42\xff\xb0\x7e\x65\x33\xf8\x95\x3d\x22\xc4\xd5\x6e\x42\xdd\xd8\x83\xb9\x53\xa2\x95\xf7\xd0\x25\x6a\xfa\x7f\xd3\x82\xab\x65\x17\x31\xba\xca\x55\xce\x45\xea\x88\xa9\x5e\x64\xc4\x84\xa2\x2c\xfb\xf7\x42\x39\x63\x09\x65\xd8\xe9\x55\x4b\x8a\x17\x97\x09\xe5\x04\xca\xed\xa2\x1e\x19\xad\x39\x10\xdb\xdc\x72\x5a\x80\x37\xf3\x83\x5f\xbb\x54\x81\x7d\xb2\xa0\xda\xb4\xa3\x5b\xf6\xeb\x20\xbb\x6a\x15\x57\x29\xe3\x06\x4b\xdc\xfe\xe3\x06\xcd\x1f\x24\xc1\x4b\xc5\xfe\x20\xaf\xb4\xf6\xa3\x11\xc0\x21\x01\x87\x07\x8d\xd2\xfe\xd6\x26\x15\x6c\xc7\xb2\x14\xf7\x58\x0a\xeb\x01\xd7\x08\x58\x59\xe4\xfe\xef\x96\x74\xea\xd1\xd1\xde\x5e\xa8\xe2\x2a\x37\x31\x82\x77\xd5\xd9\x9d\x32\xeb\x28\x31\xca\xe1\xb5\xdb\x34\x5c\x70\xd1\xa6\xf5\xc4\x3b\xb3\xab\x2f\xbb\xec\xb0\x3e\xa4\xb7\x2b\x89\x59\x49\x92\xb6\x65\xaf\x7e\x3b\xfd\xba\x19\x72\x45\xa3\xe9\xee\x95\x17\x24\x51\x0b\xa6\xf3\xb9\x63\xb2\xb8\x8e\x72\xd1\x42\x19\x0b\x19\x9c\xec\xce\x4e\x51\x48\x3b\x7e\x1d\xb3\x18\xd8\x3f\x7c\x80\x4e\x61\xf1\x7c\x2c\xd2\x8a\x4c\xeb\x4a\x1e\xd7\x57\x5a\x88\xc4\x3b\xa5\x63\x89\xdc\x44\x53\xa6\x15\x1a\x18\xb1\x02\xb5\xe1\x78\xa5\x4f\x69\x86\x9e\xdc\x6b\x02\x39\x7c\x74\x7c\xe5\x71\x4d\x01\xc7\xa6\x0d\xce\xa3\x99\x39\xbc\x45\x14\x96\x0c\xce\xce\x68\x3f\xf5\x28\x6d\x02\x05\x88\x05\x20\xac\x95\x49\x5c\x99\x06\x1d\xea\xdc\xf9\xad\x43\x65\xa4\x49\x2e\x75\xd9\xf2\xe4\xa7\x14\x8e\x0f\x38\x67\x0e\xbb\x4a\x09\x49\x6d\x40\xb0\xf6\x65\x0e\x29\x5a\xa1\x1e\x2e\xf3\xe9\xfd\xca\x1e\x0d\x28\x54\x76\x00\x49\x2e\x18\x6c\x0b\x5f\x90\x81\xc6\x24\x7c\x07\xc3\x46\x98\x66\x6a\xc3\x91\xc0\xf6\x03\x16\xfb\x19\x66\x2f\x29\x0e\x4d\xbe\xdd\x27\x06\xb4\x4f\xc3\xef\xbc\x2e\x2f\xab\x8c\x88\xc9\x4d\xff\x73\x3b\x93\xc2\xae\x0c\x56\x35\x67\x36\x2a\xd2\xd5\x98\x51\x83\xd0\x00\xbe\xf3\x33\x67\xd3\x83\x0e\x30\x48\xe0\x62\x33\x4d\x2c\x8c\xf0\xeb\xaf\xc8\x2f\xab\xd8\xd8\xab\x40\xa4\xfa\x55\x9b\x32\xe4\xa2\xd0\xfb\x19\xb6\x58\xeb\x6a\xc5\xa7\x4c\x4c\xf2\x9c\xe6\xa8\xd9\x42\x0c\x32\x8d\x7e\x73\x68\xbc\x66\xd1\x11\x10\x93\x7b\x1a\x8a\x99\xbc\x71\x44\x95\x22\x2d\xaa\x5a\x33\xd9\x0f\x26\x68\x1d\x59\xe2\x60\x26\xc4\xa2\x99\x56\x1d\x01\x3a\x45\x36\x73\xc7\x6b\x38\xbb\x5e\x52\x2d\xa2\x62\x3d\x36\x07\x89\x0e\x02\xfa\x51\xf2\x54\x51\x35\x4a\xff\x57\x6e\x57\xf5\x22\x0d\xca\xe4\x95\x1c\xd7\xa0\x18\x51\xe2\x83\xa1\x7f\x8a\x6c\x31\x11\xd8\xb7\x46\xf5\x2d\x11\xdc\xc0\xbe\xfc\x97\x5a\xaf\xd0\x4e\x35\x40\xb5\x89\x1e\x55\x3a\xb9\x7b\x64\xd1\x95\x5a\x60\x8a\xfd\x7b\xfb\x91\xac\xc9\x3d\xd2\xa9\xa5\xfb\x5c\x52\x4e\x5c\xce\x75\xcb\x54\x72\x06\x01\x65\xf3\x25\x9a\x7e\x00\x32\x12\xb0\x51\xf6\xe5\x07\xd3\x41\xd7\x67\x34\x88\x4a\x4a\x54\x49\x9a\xb1\xd9\x89\xc7\x2f\x14\x9f\x27\xc6\x5d\x22\x19\x79\xba\x2d\x1d\xc1\x48\xb5\xd4\x8f\x35\x5a\xe6\x9d\x16\x5d\x93\x95\xf2\xa1\x19\xc7\x4d\x7e\x6c\x92\x7e\xd6\xd5\x48\x8d\xf7\x54\xc2\x23\xbb\x15\x45\x9b\x3a\x15\x5d\x95\x4b\x4e\xf2\xc8\x74\xed\xbc\x05\x37\x2c\x59\x32\xef\x5a\x30\xbb\x55\x46\xc0\xd8\x41\x06\x0c\xc1\x7e\xfe\x81\xe2\x77\x81\xa2\xb3\xf7\xd8\xd3\x17\xc4\xa5\x15\xe7\x4f\xe5\xe9\x20\x85\x54\x43\x85\x94\x44\xf8\x6f\xbd\x52\xca\xca\x56\x91\xe0\x07\x47\xa7\xef\xd9\xa3\x0e\x2a\x46\x69\x49\x1a\xcc\xb9\x6b\x2c\xdf\xe5\xa4\xea\xda\xc8\x10\x6c\x9c\xcc\x9e\x97\xd5\x41\xab\x49\x7c\xb9\xd2\x6e\x5d\xd2\x3f\xa2\x8d\x8a\xb7\x10\x5e\xe5\x0e\x16\x2f\x41\x80\xa3\xc3\x1f\x9f\x4d\x22\xa1\x57\xbb\x06\x28\x72\x63\x86\x6b\x41\x16\x23\xd1\x78\xfd\xf4\xeb\xc3\xd5\xa6\x7e\xe0\x15\x5c\xf8\x6f\x57\x5f\x7e\xdb\x7c\x79\x55\xa0\x77\xc4\xa2\xeb\x85\x12\xf7\x9b\xe3\xd3\x8c\x0b\xfb\x0a\x70\xbd\xc7\xcd\x6e\x57\xf9\x1b\xde\x15\x77\xec\x18\x41\xb5\x28\xb0\xe6\xf9\xdb\x56\x36\x09\xdb\xf9\x8c\xda\x3c\x93\xb9\x75\x61\x1a\x46\x57\x8e\xb2\x78\x66\xfa\x2a\xac\x3e\xff\x79\xcd\xc8\x1b\xf0\x2f\x7c\x68\xfa\x8d\x51\x32\xa7\x27\x3e\xb2\x89\xe8\x63\xfe\xe1\x35\xb9\x16\xa6\x70\x04\x58\xf8\xaf\x1a\x7a\x80\x45\x9b\x91\x9b\x16\x5c\xbe\x76\xb8\x4a\xd0\x89\x9e\xb9\xe0\xca\x67\x36\x29\xb3\x93\xc0\x21\x0e\xd8\x1d\xc0\xfe\xfe\xc2\x09\x95\x2a\x03\x64\xda\xec\x05\x8f\x4b\x88\x2b\x51\x08\x24\xb9\x25\xce\x70\x3d\x99\x9c\xcc\x1d\x3d\x72\xbf\x5c\x27\xd5\x45\x9b\x91\x73\x19\xfc\xae\x66\x82\x67\x11\x5c\x12\xde\x34\x9d\x25\x39\xa7\x89\x9b\xc8\x4a\x82\xf6\xc7\xb6\xa1\x69\x38\x7b\x94\x6c\x4f\x3f\x30\x56\x39\xe9\x40\x23\xad\xa9\xab\x9f\xfb\xd4\x7e\xdd\x03\x02\x39\x65\x29\xf3\xbb\xf8\x5e\x45\x8e\xde\xf3\x31\xa3\x04\xda\xc4\xb9\x2f\xea\xc8\x41\x8c\x8b\x89\x18\x60\xeb\x6a\x8e\x58\xf8\x2c\x65\x3a\x7c\x36\xec\xd6\x28\xe6\x7e\xd0\x6b\xa3\x44\xff\x3e\xbb\x5e\x08\xc3\x2e\x27\xbe\x02\xcb\xc8\x94\x46\x69\x1e\x18\x81\x07\x72\x38\xb1\x7e\x44\x78\xf7\x87\xc9\xb3\xb5\x9a\x65\x73\x73\x4f\xad\x4d\x0e\x82\x29\x53\xa3\x35\xb2\x78\x6f\xb2\x69\x29\x4b\x54\xf1\x7f\xb0\x5c\x41\xf1\x31\xa1\xa6\xd1\x97\x3b\x73\x58\x2e\x8d\xb2\x4d\x8b\xa0\x31\x0f\xdd\x93\x0b\xcd\xcb\x9b\xc2\x22\x87\xef\xa6\xc3\xfe\xbd\xae\xd2\x55\x57\x00\xda\xeb\xc6\xa6\x6c\x7d\x78\x8a\xd2\xf3\xaa\xde\x8a\x02\x41\x39\xa1\x02\x73\xf8\xd5\xf4\xa3\x90\xcc\xdf\xf8\xbc\xfd\xf3\x1c\x3e\x8a\xbf\x9e\xda\xa6\xe7\x73\x0a\x41\xdc\x28\xbf\x67\x87\x4e\x3f\x61\xbc\xcc\xca\x7f\xf2\x59\xed\x8d\xb2\x20\xa1\x57\x64\x1e\xf6\x47\xa4\x06\x8b\x2c\x8a\x68\xa0\x0c\x13\xbe\xd8\x36\x42\xa9\x87\x41\xca\x3c\x8e\xac\x2b\x75\x97\x48\x81\x9a\xed\xea\xcb\xfc\xfe\x6d\x0d\xa4\x49\x44\x41\xcc\xc3\x7e\x7e\x8d\xa6\xc1\xc0\x73\x11\x5e\x4d\xbf\xb3\x40\x45\x88\x34\xc0\x5f\x0a\xb6\xf0\xab\x1d\x7c\xda\xb0\xc2\x8d\xae\x43\x55\xf8\xca\xee\x59\xa0\x21\xe8\x02\x9f\x96\x19\x72\xad\x18\x4b\x7a\x8d\x35\x5a\x2b\x3f\x45\x33\x5e\x00\x22\x73\xd7\xef\x6a\xb2\xae\x0e\x8c\x8a\x80\xb8\x1d\x3a\x24\xfb\xc8\x1e\x0d\x6c\x2f\x7a\x32\xff\x67\xc2\x30\xa5\xe9\x85\x4c\xc2\xdb\x5a\x97\x3f\xa9\x88\x8c\x04\x51\x9a\x65\x17\xba\xc2\x0f\x7a\x53\x02\x9f\xe0\xfc\xf2\x52\xab\x82\xc7\x73\xca\x40\x20\xca\x1c\x6a\x53\x65\x74\x62\x51\x7b\xd1\xb9\x29\x2a\x78\xb6\xa9\x53\x26\x75\xcc\x00\xbe\x65\xcf\x00\xa5\xc3\x10\xe5\xb6\x02\x6e\x78\xf1\xb1\x74\x42\x60\x42\x09\xc6\x95\xe1\x62\x05\x80\xad\x76\x3f\xa8\x01\x40\xdc\xbc\xbf\x48\x66\x91\x93\x3b\xa7\x01\x05\x75\x97\x66\x8c\x89\xfa\x23\xec\x6d\xd8\xaf\x0b\x6c\x60\x48\xeb\xb8\x4a\xfb\x98\x31\x6a\x07\x51\x0c\x5e\x7c\xc0\x1d\x79\x18\xc6\x14\x3f\x3d\xa6\x4d\x0e\x28\xab\x12\x61\xa0\x03\x6d\x57\x7c\x34\xfd\xaa\x2a\x01\x33\x89\x67\x89\xda\x70\xc2\x93\xc2\x2b\xc2\x71\x9a\x39\xb9\x13\xe7\x08\x23\x7d\xd7\xa2\x8c\xbb\x0d\xf5\x65\xf7\x29\xd2\x6e\x55\x62\x73\xd7\xa0\xf8\xd0\xba\x77\x1b\x2f\x8e\xbb\xb9\xe7\x7c\xf6\x81\xb5\xd2\x6c\x8f\x36\x5b\xcf\xfd\x6e\xce\x27\xb4\x04\x10\xd5\x10\xb1\x89\x53\x4e\x3c\xd7\xf2\x5b\xf7\x68\x46\x28\x98\xf7\xbf\xc5\x84\x39\xfb\x8b\x39\xb1\x96\xa3\xe3\x23\x8f\x13\xa4\x8f\x6b\xce\x80\x04\x39\xdd\x09\x06\x0f\x62\xd5\xf5\x8b\xe5\xfb\xb2\x48\x2d\xfa\xab\x7b\xc7\x72\xf4\xea\x4d\x88\x11\xa7\x79\xe4\x7b\xf2\x99\x74\x74\x33\x7a\xb1\x61\x51\xcf\xa6\x35\x54\x21\x08\x12\x03\x48\xb3\x17\xdd\x9b\x0e\x2a\x9e\x4d\xaa\xfc\x6d\xfe\x41\xb1\x28\xb0\x48\xd9\xc2\x4c\x02\x80\x72\xfe\x99\xf4\x9f\x75\x23\x62\xf3\x96\xcf\xd9\xd9\x72\x33\x04\x6d\x40\x81\xab\x3b\xe9\xb0\x67\x06\x2e\x75\x7c\x15\x44\xfa\xab\x7d\x5a\x72\x59\x47\x8e\x29\x3a\x70\xb9\xbb\x17\xf3\xd9\xf6\x12\x5c\xa2\xcc\xa7\x30\x58\x8f\xdb\x22\xe1\xd0\x91\x69\x16\x12\x4c\x09\xfb\x55\x35\xfe\xa7\x63\x4d\x5e\x95\x70\x78\xf0\xcb\x7e\x4b\x33\x2c\x35\x50\x14\x3d\x40\xb7\x64\xca\x20\x65\x7b\xc7\xf0\xc7\x01\xea\x50\x81\xb2\x32\xf2\x11\x50\x42\x57\x0a\x03\xa8\xb6\xe9\x60\x6e\xfc\xb7\xb7\x15\x80\x83\x85\x95\x66\x64\x6e\xe7\x74\xdd\x7d\xb3\x8c\x1c\x51\x3e\x3d\xbb\x53\x83\x69\x07\x9e\x24\x1e\x4c\x5a\xa3\xf0\x01\x7a\x0c\x21\x7d\x73\xee\x47\x52\x88\xba\x88\x0d\x14\x78\x8a\xfb\xc4\x35\x1f\xc9\xb0\x5b\xc2\xcc\x41\x8e\x89\x61\x74\x62\xad\x49\x0e\xd7\x69\x6d\x93\xa3\x2b\x7e\xaa\x27\xfd\x98\x26\x4f\x9d\xd4\xd9\x3e\x55\x20\x6d\x1e\x15\x90\xe9\xeb\x09\x72\x9a\x39\xfb\x59\x67\x9d\xe0\xd7\x1b\x06\xb6\x31\x13\xae\x0c\xd9\x47\x35\xfb\x05\x83\x51\x2f\x4a\x6c\x6d\x5b\x08\x21\xf1\x53\xec\xc6\x2d\xfd\xc0\x15\xa5\xa7\xf7\xb1\x8f\xfa\x31\xd9\xb5\x92\x4a\x3f\x3b\x6d\x95\xd6\x31\x77\x1c\xdc\x93\xf8\x6c\x1d\x3f\xdd\x34\x23\x32\xb0\x27\xa6\x80\xf9\xaf\xcc\xd6\x7b\x5a\x4e\xd9\xa6\x55\x7e\x0b\xdc\xc4\x37\xfb\xd1\x5e\x69\x2b\x15\xd8\x0a\xf8\xf2\x29\x1d\xbd\xec\x98\x89\xb7\xe3\x55\x3b\xa5\xc0\xb4\x1f\xb7\xd1\x33\xbd\xf7\x2b\x2c\x05\x1b\x19\x15\xae\xb7\x19\x7d\xcb\x55\x92\x19\x84\x7b\x8c\x42\x57\x78\xe3\x5c\x75\x2c\xe3\x05\xb1\x2e\xe5\xd3\x8a\xfa\x87\x45\x84\x20\xd5\xb5\x8a\x1a\x0b\x28\x1c\x14\x41\x01\x2a\x33\xc1\x19\xe7\xa4\x54\x48\xb8\x96\x8e\x9e\x6a\xdd\x70\x46\x3f\xba\x4b\x04\x09\x4e\xc9\x7d\xcf\xf1\xce\xf4\xcd\x2b\xa2\x42\x2e\x3b\x79\xe1\x38\xed\x79\x0a\x7f\xf9\x14\x52\x2e\x57\x3a\xf7\x32\xad\x6e\x45\xc2\x1f\x56\xb6\x36\xc3\xbd\xa5\xff\x3f\x5f\x6f\x1f\x27\xc5\x51\xe7\x8f\x67\x7a\xc6\x88\x04\x08\x10\x9e\x43\x08\x20\x01\x04\x66\xdd\x5d\x16\x58\x62\x24\x04\x08\x21\x84\x30\x08\x84\x3c\x48\x90\x9a\xee\x9a\xe9\xda\xe9\xee\x6a\xaa\xbb\x67\x76\x36\x98\x43\xe4\x30\x41\x12\x63\xbe\x1c\x62\xe4\x62\x2e\x72\x88\x11\x09\x62\x8e\x70\x31\x72\x88\xfc\x30\xc6\xc8\x25\x5c\x8c\x11\x91\xcb\x45\x8c\x24\x22\x22\x46\xbe\x11\xd9\xf6\xf7\xea\xaa\xea\xae\xea\x9a\xbd\xef\x5f\x9a\xdd\x65\xa6\x1f\xaa\x3e\xf5\x79\x78\x3f\xb0\x4d\x53\x81\xd4\x5a\x30\x7b\xfa\x45\x71\x22\x27\x1e\x82\xb9\x0d\x63\xaf\x96\x3a\x39\xac\xcb\x54\x91\x0c\x74\x80\xe3\xd5\x18\xd0\xe9\xc3\x6b\x07\x44\xdf\x35\x77\x6e\x8a\x00\x3b\x7b\xad\x82\x09\x04\x3e\xf2\x4a\xf5\xa4\x69\x99\xdb\xe4\x88\xb7\x02\x8c\x2a\x74\xfc\x80\xf0\xc6\xcd\xe3\x87\xb8\x06\x70\x94\xcd\x51\xe3\x9a\xcc\xc2\x5d\xfd\xe3\x94\x2a\xaa\x1d\x69\xda\xfe\x93\xb3\x8a\xd4\x10\xb4\x58\xe9\x68\x22\x37\x96\xc4\x9f\xb9\x87\x7b\x37\xa3\x4e\xbf\xce\xc4\x18\xa3\x3b\x99\xa7\x8c\x1b\xa9\x10\x17\x28\xf3\x0e\x7b\xb6\x69\x62\x7a\x12\x40\x1d\x4c\x7a\xd0\xa3\xd4\x3e\x23\xd9\x59\x94\x50\x95\x3d\xa6\xef\x9e\x93\x28\xb3\x98\x23\xdd\x0e\x8e\x55\x07\xfc\x41\x3c\x15\xcf\x68\x27\x95\x84\x12\x10\x3b\x06\xda\xe4\xe6\x39\xec\x10\xbe\x13\x7a\x0d\x87\x70\xf6\xa5\xe3\x92\xe4\x34\x8c\xaa\x34\xfa\xb0\x6e\x6c\xe8\x2d\x94\x09\xb0\xf9\x68\xe1\x07\xbb\x94\x39\x14\x15\x36\x89\x22\x61\xf8\xda\x85\x51\x12\xd6\x85\xf4\x40\x9f\xcf\xde\x7e\x51\x31\x14\x84\x45\xe0\x60\x87\x82\xce\xf9\xf1\x92\xe9\x97\xfe\x82\x35\x01\xd2\x2b\xbc\xf5\xff\xc0\x20\x31\x5a\x0d\x50\xdc\x80\xbc\x4d\xe2\xa2\xe8\x26\x08\x4a\x25\x18\x10\x46\x01\xa2\x6f\xf1\xdf\x16\xa8\xd4\x5d\xcf\xc3\x3c\xc7\x1d\x7a\x86\x8b\x42\x14\xa9\x6c\x28\x5d\x92\x67\x36\x48\x89\xa3\x15\x78\x9c\x69\x9e\x51\x24\x0b\x3c\x0b\xe9\x09\x08\x6b\xd7\x7b\xfd\x78\x3e\x13\xbb\x85\x65\x73\x0f\xc6\xc2\xd9\x51\x8d\xeb\xf3\xbe\xa2\xf6\x32\xd7\xca\x9f\x6b\x22\x07\xd0\x8c\xf7\xcd\x67\xd8\x99\x79\x27\x15\x52\x53\x1f\xd9\x97\x86\x4c\x91\x07\x0d\x73\xe7\x4e\x4e\xbf\xc6\x06\x0b\xca\x9c\x72\x1c\x41\x40\x95\x67\xe8\x3a\x7a\xfe\xb8\xaa\x59\xca\x9c\x1b\x12\x0a\x47\xf6\x5f\x2e\x8e\x94\x74\x12\x80\x93\xb7\x41\xca\x3b\x55\x3b\x35\x48\x25\x45\x01\x2b\xf6\xab\xef\xd6\xfe\x3a\x4f\xc9\xde\xf9\xc4\x82\x2d\xad\xd5\x0a\xc2\xb3\xc8\x53\xb1\x70\xdc\x22\xd6\x0e\xa3\xf5\x44\xde\xe1\x02\x21\xdd\xda\x97\x6f\x12\x45\x0f\x75\xb9\xa8\x61\x52\xe1\x40\xc8\x21\x13\x94\x14\x81\x22\xe3\xa8\x80\x9c\x9a\x6d\xf6\x51\x08\xaf\x6e\x10\x67\xa9\xb9\x16\x49\x9f\xa3\xa5\x69\x7a\x94\x5e\xe7\xdc\x6d\xaa\x60\x8c\x81\x39\x15\x21\xfc\xd2\x4b\x62\x7b\xae\x01\x75\x8f\xa2\x9c\xf6\x5c\x60\xec\xcc\x19\x53\x9a\x5b\xa6\xe5\x0b\xe1\x8e\xfd\xca\xf1\x56\xf2\x21\x89\x25\x67\xbe\xf5\xf8\x54\xcf\x04\x14\xf5\xca\x5e\xe9\x4d\xa5\xc0\xa1\x4f\x69\x34\xfd\xf9\x68\xe0\x8f\x6e\xee\x6c\x2f\x1a\xb0\xd9\x68\x9b\x35\xb9\xc0\x2b\xef\x8c\x62\x69\x06\x3b\x5d\xc0\x1c\x7b\x59\xd4\xf9\xe7\x61\x49\x73\xbe\x86\x12\xe5\xe2\x0f\xbd\xa7\x90\xb3\x61\xa7\xcf\x8d\x4f\x5b\x46\x0f\x97\x0e\xab\x58\x19\x24\xde\x54\xdf\xe1\x0d\x41\xcf\x87\xb6\xcd\x13\xc9\xab\xcf\x0c\x90\x7b\x6d\x16\x6d\xa9\x67\xa7\x4a\xf6\xd3\xd4\x67\x30\x1e\x0f\x3e\xf4\x8c\x92\xd6\x82\x40\x0f\xbc\x80\x6b\x78\x26\xd0\xac\x2f\x9c\x1c\xec\x28\xaa\x5b\xac\xe2\x7d\xf6\x0a\x29\x6f\x03\x88\xb3\x40\xc3\x4d\x6f\x28\xaa\x31\x1f\x6f\x67\xc3\x9b\xbe\xdb\xe5\x26\x8a\x07\x02\x8b\x8d\xe7\xbf\xcd\x85\xaf\x4a\x98\x94\x20\xf5\x28\xd6\xfe\x3c\x51\xc5\x93\x00\xee\x18\x4d\xb3\xb6\xdf\xbc\x28\xca\x70\x1f\x76\xc8\x62\xa0\x99\xf6\x9b\x54\x39\x36\x86\xe5\xe1\xdd\xf2\x8f\xdd\x24\x82\x51\x8d\x0a\xf3\xa7\x63\xfe\x67\xf7\x49\x88\x49\xab\x0a\x25\x23\x7f\xed\x07\x92\x47\xbd\x01\x81\x61\x31\x19\x6c\x6d\x84\xa4\x66\x5e\x8e\xe2\x34\xd3\x97\xcc\x7c\x44\x51\x54\xf3\xd8\x2c\x4c\x6e\xf5\x7d\x4c\x51\x2a\xf7\x4d\xc0\x5d\xb0\xc2\x0e\xb3\x7f\x72\xf2\x50\x64\x7c\xf4\x91\x9f\x5c\xce\xa7\xdf\xd8\xf1\x09\x60\xe3\x97\xec\x70\xc9\x17\x8c\xda\xa0\xd3\x40\x36\xa0\xda\x3f\xde\x97\x20\x21\x00\x80\x4b\xe9\x95\xcf\x99\xf0\xdc\xbb\xef\xcd\x76\x76\x1a\xcd\xc7\xb8\xd1\x68\xe2\xdc\x99\x74\x63\x14\x7a\x3a\x30\x40\x4f\xfd\x7a\xed\xe7\xeb\xa4\x0b\xd2\x21\x87\x93\x65\x5a\xc5\x56\xae\x02\x66\xb2\xf8\xa5\xa5\x4a\xbd\x16\x90\x0a\x2b\x51\x93\x7a\x66\xaf\xcf\xec\x79\x97\x71\x92\x7c\xc3\xc0\x7e\xc8\x90\x24\xcd\x9b\x91\xa7\x3e\x55\x7d\x67\x51\x81\x94\x25\x4b\x97\xe4\x0b\xa1\x76\x92\xc3\x79\x4d\x50\x81\x9e\x0b\x01\x91\x7d\x4c\x4f\x1d\xbb\x5a\xd2\xed\x68\x6a\x8f\x2e\x2a\xab\x8c\xa2\x6d\xec\x30\x45\xaa\xe8\x09\xce\xde\x26\x51\xc0\x81\x83\x3c\x0e\x8d\xd3\xfe\x3e\x52\xf4\xcf\x65\xf4\xb8\x76\x53\xab\xc2\x83\xa8\x7b\x08\xd6\x90\xde\x95\x52\xcb\x3c\xac\xe0\x91\x67\x34\x37\xf3\x7e\xe9\x92\xf5\x32\x01\xc1\x2a\xe5\x5d\xe4\xd3\x3e\xfe\x32\xc5\x8f\xc5\x33\x01\x11\x27\x85\xce\xbb\xd3\x29\x6e\x63\xd6\x7c\x5c\xb2\x7c\x07\x25\x48\x09\xeb\x94\x84\xa4\x5d\xd1\x36\x5c\x3e\xc9\x16\x2f\x9e\x1c\xdf\x43\xbe\x10\x0e\x7d\x43\x2e\xbe\x08\x0e\xca\x66\x62\xe7\x39\x4c\xf6\x31\x8b\xe9\xb3\x94\x3c\xfb\x74\x4f\x03\x52\x2e\xb1\xdd\x9d\x41\x4b\x93\x2a\xa0\x8e\x24\xe2\xc8\x07\x23\x54\x7d\x21\x58\x4b\x8a\x8f\xa0\x5d\xed\x3f\x05\x06\x4a\xf0\xb2\xbf\x9e\xa2\x20\x2b\x90\x55\xe1\xde\x11\xb9\xb1\x6f\xa7\xcb\xdb\x9a\x89\x7c\x58\x03\x51\xe8\xa7\x67\x92\xc0\x0d\x6e\x52\x50\x55\xb0\xd3\xa5\xa2\x75\x74\x2a\xf1\x5a\x3f\x35\xd7\xb3\x0c\x8f\x75\xf7\xef\xda\x3d\x3c\x39\x76\x55\xaf\xd8\xf0\x71\xee\x04\x08\x3c\x17\xb1\x2d\x9a\xeb\x5a\x29\x32\x99\xd6\x19\x31\x73\x3b\x8b\xdb\xc4\x0c\x47\xa7\x3d\xa6\x11\x03\xc5\x4f\x30\x1d\xf4\xe4\x16\x3c\xa8\xca\x3d\xfb\x9c\xb8\xdd\x9d\xfb\x50\x57\xfa\xfa\x31\x9d\x53\x02\x8b\xf9\xaf\x9c\x37\x44\x6b\xc9\x33\x71\xad\x07\xb1\xf7\x1f\x7e\x30\x38\xfe\xb7\x8b\x19\x6b\x8e\xbf\x9a\xaf\x9f\x53\x90\x9a\x80\x7a\x4e\xf1\xc7\x9f\xdd\x76\x78\x52\xfa\x20\x37\xeb\x1e\x1d\xf8\x7a\x7c\x58\x94\x8e\x13\x3f\x19\xd1\x97\x1f\x6f\x25\x4c\xa8\x19\xc5\xc2\xd9\xe9\x5d\x50\x8a\x33\xb8\xcc\xc3\x4d\xea\x91\x40\xbf\x37\x76\x1d\x9b\x7b\x46\x54\x34\x80\x37\xe7\x37\x91\x21\x52\xe3\x91\x32\xb7\x79\x16\x9f\x19\xa8\x00\x2f\x80\xe3\xe0\xc0\xd1\x21\x13\xdf\x62\x3c\x80\x3f\xab\xe1\x1b\x59\x45\x48\x52\xe1\x7b\x5a\x6f\xa5\x75\x13\x10\x36\xe2\xcf\x7c\xf1\x71\x05\x1e\xd3\xce\xab\xd8\x8e\x97\xd5\xe5\xe3\xf9\x3c\x77\xff\x85\xb2\xec\x74\xc0\x54\xe2\x59\x3b\xfb\x67\x6b\x95\xfc\xb6\x1e\x9d\xfd\xb4\x2b\x1b\x9e\x39\x12\x6b\xe0\x62\x3a\xc7\xce\x5c\xb5\x41\x69\xe3\x5a\x51\x09\xcb\x47\xc2\x4b\x6e\x0d\xbf\x3d\x5b\xe9\x03\xbb\x2e\xc1\x80\x6a\x0a\xb0\x54\x70\x8f\xc2\xd0\x60\x5e\xdb\x8c\x6d\x42\x1f\xee\xfb\x4a\xbe\x63\xe1\x5a\x5e\xc7\x89\x87\xa3\xf6\x8b\xb7\xd3\x97\xcb\x91\x89\x2c\x19\x5a\xcc\x95\x07\xa3\x9c\x91\x53\x45\xf7\x31\x3b\x8b\xfc\xdd\x50\x37\x3d\x0b\x12\xe9\x48\x7f\xbb\x43\xc6\xbd\x01\xc2\x55\xf5\x33\xbd\x85\xa7\xd7\x34\xaa\x76\x9b\x5e\x5d\x77\x3d\x21\x99\x90\x09\xd9\x80\x5c\xeb\x68\x01\x1e\x67\x39\xff\x0f\xcf\x0f\x95\x3b\x4b\x72\x4f\x6c\xee\xdb\xa3\xa4\x1a\xac\x84\x49\xa3\xe6\xd8\x4f\xde\x13\x27\x42\x91\x32\xf4\x38\xd3\x7f\xfa\x86\xe1\x4a\x72\x07\x7c\xd1\xdd\x7c\xc8\x15\x79\x55\x5a\xc1\x70\xd9\x99\x6b\x1d\x79\xca\xa5\x9b\x48\x97\xbc\x85\x72\xf7\x5d\x54\x43\x20\xd6\x2b\x71\x72\xa4\x7d\x47\x71\x6c\xb5\x41\x85\x2b\xbc\x96\xb6\x89\x83\x84\xb2\xfb\xf9\xa6\xbe\xe3\xb2\x22\x76\x89\xf4\x8a\x43\xb1\xdb\x4c\xf7\x7b\xcf\x40\x11\xb8\xc4\xf8\x76\xc3\x07\xe9\xed\x51\x87\x80\x0d\x6e\xc5\x99\xf6\x49\xa5\x69\x1e\x3d\x1c\xbe\x02\x7e\xfb\xa4\xa0\x30\xc8\x7d\xe4\x4c\x79\xad\x92\xa1\x10\x66\xd4\xc4\x0e\xb5\x1f\xe5\x86\x48\x58\xe1\x52\x49\xda\x8b\xa5\x90\xdb\x04\x22\x83\xa9\x0d\x1e\xd8\x26\x81\xda\x21\x31\x02\xfa\x70\x07\x2b\x9e\x77\x16\xb2\xdd\x84\x65\x1c\x4e\x31\x64\x10\x78\xd9\x0e\x1c\x3a\xfa\x9c\xd0\x25\x0d\xe5\x21\x88\xd1\xb7\x1b\xb7\xa6\x94\xf5\xaa\x90\x94\x39\x3d\x2a\xf3\x83\x55\x43\xa5\x77\x48\x88\x8c\x4d\xab\xf5\x56\x7f\x27\x92\x85\x1f\xef\x11\x39\xbc\x93\x08\x0c\x7e\x42\x09\x7e\x26\x64\x27\x3d\x83\xef\x67\xb7\xce\x56\xf9\xa8\x81\xc3\x1f\x74\xae\xf7\x68\x71\xe9\x15\xe0\x99\x36\xa2\xe8\xa8\x59\x92\xde\x9e\x0e\x1d\x2f\x68\x1c\x16\xae\xd8\x2a\x4e\x27\xec\x72\x0d\xb6\xee\xcc\xf3\x8f\x35\xa8\x46\xf9\xd0\x76\x31\x49\x5c\x9a\x34\x63\xa5\x94\x64\x83\x86\x11\xaf\xf6\x60\xf1\x6a\x69\x8c\xc6\x7c\x95\x4a\xe7\x14\xf2\x80\x05\x3c\x9e\x96\xfe\x44\xf2\x3b\x86\x4c\xbe\x30\x4a\x90\x27\xb5\x4b\x32\x04\x90\xd0\xd6\xad\xf6\xcc\x29\x46\x8c\x58\x4e\x60\x15\xcb\x0c\xb0\xbb\x4f\x2a\x35\x5f\x94\x36\x24\x2d\xeb\x67\x9e\x68\x1c\x7b\x15\x8b\x92\x21\xf9\x4b\x8b\x14\x55\x36\x3a\x79\x9d\x5c\x8b\x71\x65\x9f\x61\x14\xa0\xfc\xed\xd1\x31\xec\xc0\x06\xc3\x8b\xec\xde\xd9\x4a\xf8\x8e\xf2\xe2\x98\x42\xfb\x8d\xd6\x6b\xe4\x16\x89\xed\x72\xba\x62\xdf\x91\x22\x46\x94\x09\xd0\x61\x29\x60\x0c\x04\x6d\xc0\xae\x81\x29\xa6\x0f\x93\x41\xcb\x6e\x59\xcc\xa2\xe8\x62\xe8\x9b\x90\x58\xc0\x31\x78\xa9\x19\xfe\xf5\x85\x84\x4e\xa9\x9b\x8d\xe2\x8a\x53\x94\x01\xb8\x1d\x10\x03\x92\x84\x10\xd6\xe7\x9d\x94\x9c\x89\x01\xea\x7c\x42\xb9\xa7\x49\x71\x80\xf1\x3c\x80\x2c\xc0\x24\x2c\xa3\xb8\x3e\x67\x87\x18\xed\x4e\x6b\x69\xa2\xfc\x1d\xed\x9b\x5a\xfa\x5f\xc5\x15\x76\x22\x2d\x96\x99\xae\x70\x92\x5d\x48\x4c\xe0\x7a\xac\x93\x35\x66\xb4\x02\x2b\xc7\x96\x61\x71\x12\xaf\xf6\xec\x2a\x99\x78\xe1\xe1\x80\x30\xc2\xe2\xde\x8d\xe9\x75\x8b\x03\x3f\x8f\x4b\x79\x9f\xf1\xba\xa3\x05\xf5\x83\x8b\xec\xe1\xcd\x81\x5d\x81\x87\x75\x69\xf0\x9e\x1b\x38\x4a\xac\x35\x71\x17\xbd\x45\x2e\x5d\x93\x7d\xf3\xc3\x7b\x0f\xa7\xaf\xde\x20\x41\xd9\x4b\x04\xb1\xcd\xd7\x85\x61\x7c\xe0\x70\xfd\x59\xf6\x66\x05\x91\xa7\x5d\x62\xe0\xe9\x15\x93\x61\xac\xb4\xff\x69\x56\x0c\xb1\x00\xa2\x34\x92\x98\x4b\x31\x91\x28\xab\xcc\x07\xd4\xb0\x96\x22\xdd\x1f\x38\xaa\x8c\x25\x2d\xca\xfb\xa8\x33\xc0\x5c\x6c\x4f\xfa\xe4\x70\x09\xe5\xe1\x63\x1b\xf8\x48\x8f\x15\xfd\xb2\x87\x9a\xc5\x42\xe5\x3d\x39\x1a\x20\x07\x49\xc2\xeb\x33\x9a\x5a\xa3\x37\x78\xe9\x69\x91\x91\xe9\xd4\x96\xa9\x3b\xfb\xce\x4a\x09\x87\x87\x5d\x97\x0e\x32\x73\x83\x1e\x4b\x67\x51\x3e\xb0\x2a\x14\xee\x92\x6b\xd9\x37\x48\x2e\x49\x26\xd3\xa5\x4c\x79\x0f\xfd\x1b\x4a\x34\xc8\x31\x7a\xe1\xbe\xa3\x62\x4c\xd9\xe8\x07\xfe\x8c\x2c\x91\x11\x94\x59\x21\x32\x52\x55\x9b\xa3\x6e\x7a\x4e\x9d\xd7\x1c\x59\x69\x1b\x3a\xd0\x47\x6b\x02\xe8\x53\xcd\x0f\x6d\xd4\x53\x12\x84\x90\x09\xce\xf7\x99\xa8\x00\x13\x80\x53\x81\x29\xd9\xcc\x87\x0f\xa9\xa8\xdc\x1a\x72\x84\x53\xe1\x43\xe6\x60\x89\xca\x46\x50\x47\x00\x58\x27\x32\x73\xf9\x98\xd4\x68\x08\xea\x80\xea\x26\x14\xba\x33\xdf\x34\x92\x8c\x46\xd7\x71\xbe\x10\x6e\xed\xa4\x01\xd6\xa5\xbc\x3c\xde\x9f\x3a\xcd\xa1\xd2\x41\x11\x10\x20\xa5\x13\xda\xff\x79\x70\xb8\x72\x39\x2e\x40\x71\x9e\x97\xf9\xd8\x95\xec\x58\x5d\x16\x18\x94\x6e\x90\x5b\xb2\x4e\x0a\xbb\xb8\x52\xa7\xe9\xe2\xbf\x9d\x11\x05\x4a\x19\x47\xc9\x46\x73\x49\xdc\x05\x30\x3a\x02\xde\xbe\x2a\x84\xdf\x5f\x2a\x32\x2a\x83\x4d\xec\xd5\x7e\xe0\x90\xb7\xb8\xa4\xb5\x09\x3d\xe0\x42\x50\x69\xa4\x7f\x7f\x6b\x43\xd2\x6a\x36\x9d\xd8\xc9\xe4\x2b\x5c\x92\x79\x8e\x05\x8c\x14\x30\xe8\x19\x57\x7a\xeb\x01\x29\xd2\x41\x55\x6d\x75\x7a\xd9\x95\x01\xcf\x32\xb4\x59\x23\x58\xeb\xc4\x27\x10\xc4\x97\xfd\xa9\x73\x12\xb5\xcf\xb0\x11\xa1\x49\x46\xee\xa3\xc7\x93\x1a\xb6\x9a\x4a\x5a\xef\x38\xa7\x74\xb5\x63\x73\xd6\x42\x77\xe6\xa9\x95\xdc\x5a\x1e\xd4\x28\xea\x30\x5f\x08\xdb\x9a\xaf\x49\xfd\xf9\xcd\xbc\xf8\xbf\x5a\xe1\xae\x50\x76\x03\x75\xf6\xa3\x72\x35\x5b\xd8\xcb\x59\x04\x01\x15\xf2\xc9\x4d\x7e\x68\xb0\x14\x5a\x0c\x48\x7c\x50\xa1\x5d\xf6\xcc\xc4\x37\xc6\x2b\xa5\x19\xf6\x74\x13\xda\xf4\x88\x53\xb4\xe1\xaa\x43\xa4\xcc\xb4\x62\x02\xdd\xac\x00\x0b\xe4\x0b\xe1\x8c\x57\x86\xc5\xa7\x6b\xe3\xf0\xa0\x8f\x12\xb2\x0d\x1c\x14\xfd\x58\x91\x2a\xfb\xf3\xfd\x42\x7a\x1a\x26\xd6\x0f\x67\x67\xc5\x5e\xf8\x65\xc2\x81\x03\xeb\x2e\xa5\x2b\x27\xcf\x84\x0c\xfb\x76\x88\x03\x19\x09\xe4\xac\x02\xc8\xe2\x46\xfe\x36\xe0\x94\x6b\x40\x12\x58\xd4\x7e\xb9\x28\x0d\x2f\x85\x36\x4b\xcd\xea\x3d\x3a\x22\x4e\x5d\x3a\x56\xd9\xb1\xf5\x32\x20\xbe\xa9\x00\x1c\xfb\xed\x4b\xfa\x4c\x81\x4b\x61\x26\xef\x9e\x8a\x5b\x2c\xd8\xc5\x0e\xb7\xa7\xce\xfc\xec\x9e\x81\x72\x6a\xe5\x07\x54\x19\xf7\xf7\xad\x83\x24\x5c\x5d\x0d\x5a\x3a\xa6\x1a\xd7\xd9\x96\x12\x83\x29\x2d\x83\x55\xe8\x50\x8f\xa2\xa4\xf8\xf8\xf5\x3b\x0d\x86\x90\x3e\x16\x68\xaf\xee\xec\x64\x45\xf5\xd4\x0c\x6c\x66\x8e\x56\xe8\xce\xfc\x68\x73\xfc\x68\x1d\x58\x63\x72\xcf\x6f\xbd\xdc\x90\xba\x79\xc8\x80\x44\xa2\x62\xbe\xdb\x6f\x48\x0f\x59\xfd\x94\x7c\x21\x5c\x74\x6a\xa0\x44\x84\x64\x72\x17\x85\xee\x4c\x79\x4e\x12\x7b\x9a\xdb\xa7\x52\x58\x75\xbb\x9a\xe9\x60\x02\x3d\x0e\x7d\x7d\xf0\x44\x02\x0b\x71\x1b\x1d\xc6\xb2\x4b\xda\xae\x49\xc1\x45\x01\x97\xb3\xb0\x25\xa1\xda\x1a\x60\x53\xb7\xcc\x8a\xaa\xa4\x54\x6b\x46\x0b\x32\x69\x5a\x1f\xe0\x16\x77\x3e\xd0\x2b\x9c\x48\x94\xd9\x7d\x5e\x94\x3f\xb0\x0a\xac\x20\xfe\xf0\x07\x86\x29\x32\x4b\xa0\x88\x98\xf9\x65\xf6\xcf\x5c\x94\xdc\x85\x2c\xf9\x8a\x3e\xa7\x7d\xb7\x38\x5f\x70\x95\xae\x3b\x31\x19\xfd\xd0\x78\xae\x79\x81\x6d\x1b\x50\x5f\xae\xe0\x54\x3a\xda\x63\xab\x6e\xbb\x48\x8f\x21\x65\x93\xdf\x52\xa4\x89\x71\xcd\x02\x36\xf3\x8e\x8a\x0b\x86\x8f\x1c\x96\xe5\xee\x0d\x48\xa2\xab\x67\x86\x64\x99\x77\x25\x25\x0a\x03\x79\xa0\x4c\x20\xb7\x2a\xfb\x97\x7e\x42\x50\x02\x10\xbb\x51\x4c\xe4\x42\xf3\x10\xda\xe1\x59\xbc\xac\xe1\x57\x2d\xed\x6c\x51\xce\xeb\x32\x51\xc5\x04\x5e\x05\x90\x84\x66\x30\xff\x98\x98\xc3\x83\x44\xfb\xf1\xbb\x2b\xaf\x96\x52\x55\x44\xe3\xdc\xef\x4e\xf3\x21\x85\x0b\x21\xa3\x0d\x75\x67\xfe\xa9\x35\xc9\x43\xfd\x86\xd2\x20\x9c\xdd\xa1\xd8\x45\xf0\xce\x1b\xbd\xd5\x4b\xe3\x59\x58\x5e\x08\x49\xe0\x01\x0b\xda\x14\x1c\x26\x8d\xad\x3d\x3f\xf6\x74\x9d\x38\x4f\xe0\x52\x1d\xd9\x15\xb0\xef\xb1\x14\x2f\x68\xe9\x9c\xc9\x73\x64\x5e\x50\xe6\x1b\xf7\x24\x37\x57\x07\x89\xc4\xc1\xf9\x61\xd7\xc5\xff\x42\xfa\x73\x49\x47\x30\x73\x8b\x64\x1f\x49\x60\x8d\xcb\x08\x64\x8b\xd5\x1e\x55\x3f\xe2\xb1\x50\xe8\x0d\x4c\xa6\x42\x7a\xec\x87\xd9\x9d\xc9\xbb\x0a\x84\x07\x53\x59\x5d\x36\x12\xfd\xb7\x07\x15\xee\x31\xb6\x54\x4b\x90\x70\x84\x52\xe3\x82\x22\x26\x02\xdc\xfe\xa9\x7e\x8d\x4e\xa7\x94\x08\xc6\x21\x90\x1f\xe2\x4e\xf3\xb4\xa5\x48\x9b\x33\xb5\x8d\x62\x01\x76\x00\x02\x25\xe5\xcd\xec\x6b\xce\x90\x34\x75\x1f\x26\xce\x94\x4b\x1e\x14\xd9\x62\x07\xa8\x03\xc7\x37\x29\x6a\x38\xfb\x66\xe2\x2d\x4c\xbd\x86\x32\x17\x2e\x24\x41\xa4\x1e\x74\xe5\x0b\xe1\xe5\x1d\x22\x9f\x68\x6d\xcb\x47\xff\xe8\xf0\x83\x22\x6f\x70\x4d\x68\xb9\x8d\x3e\x17\x8f\x5c\x52\x1b\x23\x20\xe0\x2c\xde\x42\x77\x6e\x5a\x35\xfd\x54\x5b\xa6\x4c\x6b\x6e\x8e\xe3\xde\x50\xc9\x9a\xd4\xb3\x59\x79\x1d\x5d\xd9\x23\x2f\x28\x0d\xe5\x68\x89\xf1\x8e\xdc\x7f\xbe\xdd\x30\x89\xef\x80\xba\x1f\x03\x61\x1e\x2e\xf6\xe0\xb0\xc7\x4c\x21\xe3\x54\xef\xde\x83\x2a\x04\xd0\x2e\x46\xef\x89\xee\xdf\xa9\x8b\xaf\x97\x8e\x61\xdd\x8c\x16\x72\x39\x70\xf2\x35\x04\x2d\x83\xb7\xf3\x2f\x2a\x7c\x95\x1a\x20\x04\xc9\xe3\xfa\x7f\x1f\xa4\x76\x28\x63\x35\xfc\x07\x56\x88\x53\xde\x25\xd0\x40\x3a\xe0\x22\x82\xd9\x4f\x9f\x57\xf5\x81\x8a\xbe\xc7\x12\x92\xdc\xf5\x17\x12\x89\x65\x2b\x35\x77\x56\x14\x6d\x5d\x50\xa7\x42\x5f\xe1\x7f\xec\x17\xc5\x7e\x53\xdb\x8c\x96\xe8\x0b\x5e\x5f\xce\x13\x35\xec\x38\x48\x1a\xc7\xe4\xbe\x70\xf9\xba\xc6\x67\x56\x45\xb0\x96\x48\x15\x2c\xdd\xa6\xba\xb3\x07\x84\xda\xd0\x73\x3a\xef\x0f\x14\xf8\x78\xc5\x81\xb5\x18\xc4\xf9\x8f\x6d\xd7\xab\xeb\x83\x10\x45\x8f\xea\x69\xc5\xde\xbd\x06\xca\x30\x31\x35\xff\xeb\xa2\x58\x66\x10\x17\x2d\x48\xbd\xfc\x33\x1f\x59\xa7\x0c\xaf\x31\xe6\xe9\x99\x76\x53\x7b\x63\x46\x64\x25\xcd\xf2\x0b\xa3\x87\x3a\x3d\x92\x6c\x0b\xe1\x86\x83\xdc\x15\xdb\x04\x06\xa6\x46\xcf\xd5\x23\x6c\x02\xbf\x84\x60\x03\x49\x99\xed\x5f\xc6\x4a\x42\x60\x90\xf8\xa8\xc4\x69\x45\xd1\xf7\xff\x65\xa3\x88\x2e\x24\xd6\xd0\xf9\xec\x3a\xd5\xec\x00\xe8\x26\x5b\x12\x23\x2d\x15\xb3\x44\x2a\xd0\xe7\x34\xc3\x21\x97\x6f\x50\x82\x52\x50\x86\x3d\xb5\xf5\x33\x53\xb7\xaa\x78\x26\xce\x7e\x99\x22\x1f\xd1\xdb\xce\xab\xa5\xac\x0f\xa9\x35\x5f\x13\xc7\x10\x5d\x71\x8f\x84\xb4\x81\xdc\x2b\xe1\xd2\x10\xee\x87\x40\xdb\x6d\xac\xfc\x79\x6c\xb1\xac\x5e\x89\x8a\x2c\xd9\xf9\xb7\x05\x92\x7d\x37\x20\x54\x90\x3f\x7c\x78\xf9\xf5\xca\xfa\x4a\x38\xe5\x31\x6b\x5e\x1b\x7f\x41\x89\x22\xc8\x29\x8b\xe0\xd9\xbe\x97\xc9\x2e\xdc\x89\x3c\x0f\x59\x0d\x85\x49\x6e\xc9\xe9\xf4\x37\xc4\x9a\xe6\xb2\xe6\xcb\x2f\x36\x29\x7a\x08\x84\xa0\x2a\xb0\x78\xbf\xf5\xfb\x27\x92\x92\xa2\x12\xc8\xaa\xbb\x75\x4d\x06\x7c\xb3\x81\x45\x14\x9d\x6f\xd8\x24\x68\xe3\x56\x03\x8c\x48\x9b\xb8\x53\xc4\xd2\x12\xeb\x1e\x7d\xba\x55\x7c\x52\xe0\x9a\x10\x54\x01\x75\x91\xd1\xf6\xcf\x62\xc8\xb4\x22\xa4\x09\xee\xd7\x8f\x70\x09\x4d\xd7\x05\x84\xd5\x41\xe3\xe6\x89\x70\x6f\x82\xaa\x6c\xa3\xf1\xb0\x02\xe3\x28\x09\x91\x8e\x61\xab\x87\x35\x54\x43\x89\x70\xdf\x23\x73\x24\xc9\x98\xc0\x31\x80\xd4\x07\x09\xc7\x49\xa0\x01\x07\xea\x06\x66\x86\x54\xb9\xcf\x6c\x96\x1c\x13\x2d\x64\x17\xe9\xa3\x38\xb5\x44\x96\x2a\xa0\xcd\xd3\xcc\x94\x13\xaa\xc4\xaf\x6e\x3a\xa2\x88\xca\xde\x75\xa5\xea\x66\x43\xa2\x12\x23\xe1\x8b\xad\xdc\x24\xe7\x9e\x6c\x80\x94\xfb\x90\x82\x81\x64\x96\x3b\x1c\x2e\xb3\x4a\x59\x41\x46\x50\x2c\x26\x41\x3f\xb3\xfc\x74\xdf\xe4\xf3\x68\x38\xd4\xfe\x79\x63\x3f\xfe\xe9\x89\x20\xc4\xf5\xaf\x0f\x88\x9f\x3c\x8e\x82\x20\x9b\xe9\x97\x47\x0b\x63\xef\x8a\xfa\xa6\xc3\x1f\x96\x04\x62\xa4\x66\x62\x0a\x5a\x15\xac\xda\x4f\xb4\xca\x92\x81\x54\x73\x58\x07\xf1\xd7\x95\xf7\x0e\xe2\x85\xa4\xe3\xe0\x4e\x29\x20\xaf\x7f\x26\xbd\x97\xcb\x26\x70\x90\x0d\x7c\x2e\x7b\x11\x47\xcd\x81\xf3\x15\xad\x8e\x84\xcf\xf6\xf2\xc5\x91\xd2\xd7\x52\xf0\x7a\x53\x4a\xd1\x71\xe5\x8a\xc1\x52\x17\x8d\xba\xd0\xb2\x40\xf5\x8d\x2b\x04\xed\xb5\x8d\x46\x84\x41\xa3\x14\x99\x68\xdf\x02\x8e\x0f\x64\x63\xae\xda\xab\xaa\xac\x17\x04\xac\xc5\xdb\x7b\x43\xb2\xad\x80\xeb\x4a\x32\x85\x1b\x45\x3a\x8f\x1c\x9d\x20\x66\x29\x4a\x41\x4c\xbf\x9a\xcd\xa2\xae\x8b\xf5\x0a\xf4\xf3\x1e\xea\x62\xe9\xe5\x7d\x97\x14\x84\xa1\x4e\x20\x74\x92\x63\xe2\x82\x29\x16\x6d\xcb\x8c\xf6\xbc\x8b\xf9\x1c\x01\x75\xb1\xb8\x7e\x8b\x55\x03\x0c\x9f\xf9\xc4\xde\xc1\x72\x3e\x7a\x63\xdc\xe2\x0a\x9b\xee\x63\x40\xce\x85\x81\x13\x05\xae\x89\x8f\xb1\x9d\xc8\x64\x47\x68\xcb\x60\xfe\x7d\xe2\xc9\x56\x11\x29\x23\x07\x01\x29\xc0\x76\xe7\x66\xed\x97\xea\x23\xe0\x94\xa1\xe3\x23\x56\x3a\x77\x67\x6f\xde\x3c\x28\x35\xba\xa0\x86\x00\xf9\x42\x78\xd3\xa2\x24\x96\x04\x4e\x83\x06\x9d\xf6\xd5\x17\x93\x05\x58\xa4\x95\x4f\x3a\x01\x9b\xdc\x8f\xcb\x0a\x04\xae\x6b\x71\xdd\xff\xcd\x5d\xa2\xf7\xd2\x34\x6d\xe6\x0c\xda\x3a\x7d\x6e\xba\x88\x49\xa0\xe4\xe6\x0b\xe1\xb4\x2d\x22\x5c\xe3\xc0\x67\xcd\xb4\xec\xdf\xdf\x4c\xe7\x03\x65\x0b\x3a\xce\xe4\x26\x29\x28\x3e\xf4\x8c\xc4\x88\x73\x7c\x64\x03\x9d\x86\xb8\x33\x2f\x5c\xc3\xab\x48\x9f\x91\x18\x74\x1a\x37\xb2\xbd\x65\xfb\x47\xe8\x61\x2b\x0a\x12\xe1\x27\xe6\x2b\x38\x1c\x1c\x94\xe3\xd8\xd5\xbf\x2a\xc5\xe3\xa2\xe8\x94\x5e\x7e\x3b\x49\x5a\x5d\x66\xaf\xf5\xd0\xaa\xf4\xd5\x16\x09\xf2\xa3\x18\x48\xe1\x05\x34\x23\x6e\x1a\xa7\xc0\x33\x51\x29\x19\x02\x14\x1a\x78\xfc\x80\xc1\xf6\xc2\xc5\x1d\x0d\x98\x3e\xe2\x25\xa3\xef\x9f\x3d\x29\x59\x2e\x05\x8e\x23\xa5\x07\x5a\xf6\x18\x5b\x70\x40\x8f\x12\x4f\x8a\x6d\x57\xbf\xc5\x4c\x04\x52\xff\x8f\x91\x14\x4d\x46\x0a\x53\x35\xd2\xef\x2b\x2a\x3e\xda\xcd\x39\xb9\x47\x74\x3e\x02\x8b\xab\x2b\xe6\x96\x6d\x50\x79\xad\x3a\xb0\x2c\xa6\xf7\x9a\xf9\xf0\xa3\x8a\xf8\x87\x05\xea\xdc\x1d\xa0\x3b\x73\xff\x3d\xff\x9b\xaa\x2d\x9b\xc5\xd7\xc6\x0f\x97\x94\x0a\x98\xfd\xbd\x88\x3e\x6b\x36\xa7\x84\x5a\xaa\x88\x9a\xd0\x44\x9f\xfb\xe7\xc7\x46\xa8\xf5\xa4\x15\x95\x42\x3c\xf4\xaf\xdf\xaa\x16\x4a\xc8\xc8\xe3\x52\x89\xff\xfa\xb6\xe7\x44\x77\x77\x66\x53\x5b\xf4\x81\xa3\xe6\xa5\x41\x73\x45\xe0\x54\xbc\x46\xc9\xfe\x5c\xdf\x49\x62\xd5\x5b\x81\xce\x24\xbb\x4f\x1c\x50\xa1\xf1\x84\xe0\x62\x2c\xf7\xc0\x72\xc6\xc2\x07\xca\xa0\x09\x43\x46\x1e\x8a\x17\xfc\x02\xe5\xb8\xb2\xb1\x8f\x09\xf2\x7c\x6f\x72\x8d\x1e\x57\xf6\x86\x74\x9e\xa6\x03\x82\x8a\x45\xd8\x28\xc6\x9d\xf9\xd7\xdd\x6c\xb7\x2e\x03\x7e\x40\x0c\x50\x6f\x8a\x22\xde\x19\x69\x68\x0a\x5c\x8a\x6d\x0a\x3f\x76\x7c\x5c\x43\xde\x8c\x8d\xa0\xc8\x21\xea\xa2\x16\xdc\x54\x14\x9b\xcb\xc1\x65\x0b\x55\x68\xdb\xff\x6c\x3f\x45\x5c\x29\x36\xf8\x8f\xd1\x06\xb7\x36\x29\xa5\x92\xed\x46\x45\x29\xf2\xcc\x38\x5b\xce\x3c\x7b\x93\x42\xa2\x83\x09\xdc\xa5\x72\xf2\x5a\x29\x47\xf0\xb1\x93\xb2\xe3\xf9\xfb\x59\x6e\x00\x58\xb8\xfb\xd6\x45\x8b\xa4\x81\xf1\xfd\xfd\x46\x34\x1c\xe1\x5d\xd0\xe1\xe8\xa4\xec\xef\xce\x72\xf5\x33\x0c\x3a\xb9\x4c\x73\x97\x22\x70\xd6\xd4\xd4\x14\xb7\xc9\x3f\x7c\xb4\x9f\x54\xea\x46\x9b\xb6\xf9\x88\x48\x45\x08\x36\xa2\x28\xf3\xee\x5b\xc9\x89\x56\x0c\xea\xf9\x42\xf8\xc5\x79\xbc\x5b\x14\x65\x80\x4c\xb6\xe2\x97\x2f\x49\x5e\x8d\xa6\x0d\x1c\xae\x8f\xfe\x4f\x9d\xaa\x7b\x1a\x31\x12\xd9\xf2\xf1\xeb\x15\x4f\x01\x93\xd4\x3d\x8b\x2e\xf3\xc6\x76\x67\xd7\x28\x16\x19\xe7\x40\xdf\x97\x46\xcf\x99\xb7\xbb\x7a\x50\x35\xe6\xb7\x77\xc2\x19\x2a\x9f\xe2\x44\xb6\xde\x98\x32\x25\x69\x99\x94\x40\x67\x7c\x10\x4f\x3b\x73\x4d\x7c\xb8\x78\x81\xe5\xc7\x35\x49\x66\x8d\xa5\xca\x49\xdb\x36\x76\xa0\xc1\x5b\xef\x4f\x1f\x96\x41\xea\x41\x05\x34\xf4\x08\xb5\xea\xfc\xfe\xd2\x80\x8f\x92\xdc\xbb\xb5\x9b\x16\xa4\x97\x58\x97\x19\x44\xa1\x43\x6c\x9b\x79\xd3\x13\x95\x24\x5b\xee\xea\xfe\x7b\x7f\x49\x01\xd2\x27\xd8\x29\x73\x47\xa9\xbd\x86\x90\x46\x0c\x1a\xe0\x90\x59\x6f\x67\xba\x9f\x5e\xc6\xd8\xb0\x81\xd3\x83\x1a\x40\xee\x8e\x15\x4a\x39\x4d\xa2\xec\x88\xdd\xef\x4b\x8b\x45\x57\x95\x7a\xf6\x30\xe8\x48\xbf\x6d\x92\x23\x11\xf0\x61\x94\x2f\x47\x17\xf5\xd5\x83\xb2\x3a\xb9\xeb\x5a\xfc\xef\x3f\xfe\x3a\xcb\x16\x1c\x60\x53\xf1\xf1\x2b\x1a\x60\xde\x04\xea\x31\x71\xf4\x8b\x8f\x71\x7e\x28\xb6\x70\xb5\x8e\xab\xd2\x79\x31\x5f\xf2\xec\xd6\x11\xe1\x5e\x27\xff\x29\x09\x7f\x78\xb8\x1e\x05\x13\xb6\x21\x96\xcc\xbf\x2e\xf9\x45\x85\x60\xab\x21\x23\xd0\xbe\xdd\x2b\x29\x41\x2d\x10\xcb\x0f\x69\xdd\xef\x8b\xe8\xc8\xdc\x85\x0a\xe1\xca\x0b\xd2\x97\xe8\x26\x34\x02\x66\xd7\xbb\x3d\xbc\xee\x7f\x0b\x1e\x6c\xde\xd7\xb4\x5e\xd5\xfd\xb6\x39\xf2\x9a\x1e\x9e\xb7\x76\xf4\x7c\x28\x0b\x69\xb7\x09\x86\xd2\xe3\x01\x31\xa1\xb5\x3b\x77\xdf\x44\x71\xb4\x7c\x46\xce\x5b\xb5\x52\xbf\x34\x95\x3f\x68\xf2\x62\x8b\x58\x91\xdc\x8e\x24\x52\x5b\x09\xeb\x08\x1a\x80\xbe\xaf\xc1\x8a\x32\xd4\x54\x06\xf6\x0c\x3f\x2e\x8e\xe0\x3a\xac\x8a\x5c\xe3\x1a\x4d\x3c\x30\x3b\xd0\x99\x3d\xf1\xc4\x7d\x8a\x3b\x3e\xc3\x00\xb4\x9f\x4e\x5f\x18\xf7\x81\xf3\xa9\xb8\x46\xbc\x3d\x8f\xef\x53\xe0\x16\xd8\x8f\x0d\x0e\xdc\x3d\x22\xdf\xa1\x08\x69\x7e\x0d\x83\xdb\xfb\xf2\x8c\xca\xb0\x20\x05\xa0\x2e\xdf\x31\x88\xef\xc2\xc0\x91\x1b\x0f\xd9\x5f\xbc\xa3\x94\x5c\x5e\x40\x50\x49\xd0\xdb\x07\x3e\x34\x2c\xce\xf7\x1b\xb9\xf8\x5f\xec\x4a\x47\x3a\xa0\x0b\x76\x59\x66\x66\x69\x70\x9c\xea\x41\x42\x27\x04\x84\x0a\x2b\x86\x27\x5a\xfb\xf0\xab\x03\x54\x01\xe4\x88\x2f\x75\x10\xa7\x51\x02\xe1\xf6\x85\xdc\x66\x9a\x50\x86\x79\x38\xfb\x2d\x51\x2f\x01\xbb\x08\x3c\x0f\x18\x38\xae\x3e\x1e\xd8\x2e\x89\x64\x00\x47\x37\x19\xc9\xef\x5b\x12\xe3\xc1\x40\x9e\x1f\x90\x62\xec\x7d\xab\x9d\x9b\x24\xfd\x0e\x54\x91\xec\x0c\x69\x8f\x14\xa7\x41\x99\x30\xbb\x86\xe1\xfb\xe2\x24\x0a\xe8\x3e\xd2\xd9\x21\xa3\x8d\x7f\x99\x39\xf9\xdf\x1e\x2d\xde\x0f\x5d\x91\xc4\x56\x07\x27\x0b\x76\xce\x74\x45\xb0\x1d\xd4\xea\x42\x5e\xfc\x4e\x77\x34\xab\xe5\x82\x0a\x9c\xe0\xe5\x97\x62\xec\xc1\x2a\xb4\x7c\x79\xf5\xe6\x26\xad\x56\xd6\x3c\x85\x0c\x31\xf6\xdf\xc3\x7d\x58\xe8\xbe\x0d\x58\x29\x53\x88\xbf\xf6\x11\xeb\xcd\x80\x3e\xc1\x14\xac\x9f\x19\xba\x9c\xdd\x06\x34\x02\xb6\x02\x58\xb3\xfe\x09\x45\xb3\x6b\x7a\x33\x0f\x79\xdb\x9a\xd2\xeb\xd3\x82\xc4\x4e\x7c\xa4\xe2\x70\x7d\xdd\xab\xf1\x62\xb3\xa9\x63\x64\xb8\xeb\x08\x7b\x2c\x33\xa8\x44\xff\x27\x36\x2a\x63\xd1\x58\x8d\x71\x4a\xbe\x10\x7e\x7d\x95\xaa\x66\x68\x44\x95\x5b\xdc\xea\x35\x0e\x88\xf5\x2d\x4b\xda\x65\x07\x4c\x52\xda\x32\x86\x09\x05\xa0\x5a\xbb\x4b\x12\x9f\xf0\x09\x2a\x61\x47\x0a\x9d\xe1\xbf\xb6\x29\x4d\x75\x86\x8e\x88\xb3\xf4\xdc\xf5\x5b\xd2\x0f\x9c\x36\x62\x79\x87\xe1\xdc\x2e\x55\x4b\x3b\xb6\x74\xe1\x4d\xa7\x87\x88\x58\x8c\x2d\x33\x67\xb6\xe6\xa9\xfa\x7b\xee\xb6\x0d\x71\xdf\x80\x70\xa9\x81\xef\x12\x99\x0a\xc0\xa7\xc2\xda\xfd\xa3\xd5\x01\x57\x1c\x3b\x07\x4e\x62\xdb\xe9\xee\x24\x46\xf0\xe5\xff\x7d\x57\x1a\xdf\x5b\x16\xae\x25\x1a\xb7\x7f\x5a\x91\x9e\x54\x4f\x9d\x4e\x1f\xfa\x92\xa7\x94\x66\x38\x24\x7a\x74\x03\x9c\xb2\xf1\xb9\xf7\xfa\x4b\x27\x05\xf3\xb1\xcf\x3e\xba\x7e\x8c\xb2\x8e\xa9\x6c\xb7\x6f\x02\x27\x6f\x45\x95\x11\x9d\xc1\x95\x4f\x28\xaf\x93\x76\x25\xe3\x8c\x21\x3b\x79\xe9\x88\x74\xf6\x87\x02\x59\xf1\xe0\xe4\x63\x2c\xc9\x4d\xdb\xb5\x59\x32\x93\xa3\x04\x1d\x83\x56\xd4\xb1\x4a\x38\x01\xf1\x66\xbc\x79\xf5\x70\xa9\x39\x50\xae\x02\x22\xd7\x1d\xc3\xdf\x67\x7f\xef\x43\x8f\x63\x52\x2f\x5d\x10\x8f\x8d\x81\x9f\x79\xc1\x9d\xb9\xf2\xc5\x84\xb9\x01\xeb\xf1\x46\xde\xb4\x9d\x9d\xc4\xb4\x99\xe8\x79\xc8\x75\x51\xfc\xab\x4f\xbe\x22\xe2\x97\x33\xc1\x8f\x0e\x75\x53\x6c\x3f\x37\xb0\xdd\x0a\x2b\x4f\x5f\xd9\xc9\x82\xf0\x1d\x18\x3a\xb2\xbd\x65\xa6\xdf\x49\x86\xdb\x9c\x87\x3c\x9d\x66\xd3\x6c\x64\x50\x6b\xba\x5a\x14\x4a\x06\x1b\xca\x2d\x1b\xa7\x80\xe3\x8c\x2a\xd6\x81\xcf\xa5\x36\x1e\xbd\x52\x55\xb4\xa1\xc2\xf9\x0c\x54\xba\xf6\x75\x61\xbf\x47\xcf\xdb\x01\x9b\x95\x06\x3a\x25\x8d\xf1\x5a\x7a\xd4\x2b\x0d\x23\x93\xe8\xe1\xc5\x1a\xf8\xbf\x7a\x48\x82\x77\x42\x83\xaa\x04\x32\x85\x9b\xec\xfe\x67\x24\x93\x00\x40\x02\x8f\x1e\x07\xdb\xe6\x8c\xad\xa9\xdd\x56\x48\xf8\x41\x97\xb4\x9a\x9b\x0e\x26\xa7\x2a\x91\xf7\xec\x6d\x6f\xb1\xc7\x3f\xbf\x8e\x0d\x1c\xfd\x26\x39\xeb\xc6\x6e\x66\xcf\xee\x56\xa7\x8a\x08\x76\x62\x77\xa5\xc9\xeb\xd3\xb9\x84\x0b\x08\x30\x70\xa7\xd4\x4c\x0c\x15\xa9\x73\x2e\x1f\xc5\x46\xe8\x9f\x99\x94\x8e\x01\x2d\xad\x4d\x2d\xad\x6c\xae\xa2\x7d\xf3\x48\x6a\xbc\x0e\x10\x0b\xa3\x87\x7a\x8f\x51\xb3\x1f\x42\x1b\x40\x29\x1c\xfa\xad\xcf\x48\x8c\x01\x97\xaa\xa7\xfc\xe5\x89\x44\x67\x58\xa2\x6c\xf5\x12\x43\xda\x2a\x15\xdc\xe8\xd6\xa6\x1d\x4f\xa7\x22\xed\xfc\x8a\xb2\x7d\xcf\x0c\xe1\xc7\x25\xf6\x12\x9b\x32\xca\x3c\xc9\xae\xee\x90\xd2\xd0\xba\x83\x9d\x3a\x93\xa5\xfe\xa6\x04\xa4\x2e\x62\x52\x17\x1b\x31\xdc\xbb\x5c\xca\x60\xb0\x67\x46\x69\xea\x5f\x9b\x64\x5f\x6c\x02\x01\x25\x01\x68\x57\x31\x9d\xcd\xfc\x22\x54\x84\xa4\xc1\x4d\x2c\x2c\xdd\xa8\x24\x5e\x4e\x09\xd8\xc8\x8a\x32\x81\x58\x4d\x34\xfc\xe4\xb1\x14\x32\xb7\x14\x78\x54\x59\x82\x32\x28\x95\xc3\x13\x14\xbd\x44\xd1\x3c\xfc\x7b\x4e\x62\x93\x43\xbf\x26\xa0\x2a\xd9\xfc\xa3\xe2\x62\x81\x0d\x3c\x6e\xd0\xfc\xe7\x9d\x03\xe4\xb6\x2a\x34\xe8\x6e\xdf\xd0\xcc\x1b\x61\x6b\x02\x08\xbb\xf8\x2c\xf1\xf9\x13\xf2\xc0\x07\x44\xa7\x3e\x24\xdc\x53\xcb\x7a\x99\x9d\xb9\x85\x1a\x13\xb1\x8e\xcf\xa4\xeb\x57\xab\x68\x32\x64\xa5\xd0\x64\xb9\x6a\x2f\xa1\x89\xc5\x84\x4f\xbf\xb6\x44\x3a\x2d\x9a\x29\x19\x39\xba\xd2\xd9\xbb\xd9\x69\xb1\x08\x02\x83\x1b\xaa\x3d\xdb\x25\xfe\xb2\x23\xf0\x7c\x54\xa2\xc5\xd4\x58\x4b\x02\x36\x62\x52\xa1\xa4\x6c\x1a\x10\x73\x23\x9f\x48\x5f\x0f\x6d\x23\x9b\xb2\x09\xe4\x7f\x1f\x93\xb3\x84\x84\x78\x74\xa0\x2a\x88\xab\xac\x6f\x8b\xf4\x54\x46\x32\x5e\x31\x83\x6d\x6d\x89\x87\xb3\x99\x49\xf3\x14\x95\x1c\x16\xcb\x93\x0e\xd8\xc2\x23\x03\xa5\xb7\x66\x71\x5c\x47\xe6\xf3\x8a\x6d\x22\x76\xa9\xb6\x74\x2c\x8f\x32\xf8\x0d\x65\x1a\x88\x5d\x13\x79\x7e\x94\xc6\xc6\x8e\xba\xe4\xb1\x74\x78\x71\x30\x67\x47\xa6\x07\x5e\xa3\x8f\x2a\xaa\x5e\xc0\x29\xd3\x16\x95\xe7\xd7\xb9\x6d\x73\x38\x68\xac\x3a\x6e\x8d\x91\xf4\x99\xae\xbd\x92\x43\x04\x7d\x64\x25\xc4\x31\x1c\x7b\xa7\x28\x08\xfa\x20\x16\x65\xfe\xf3\xa5\x01\x92\x46\x05\xb7\x66\xcb\xec\x5c\xc9\xde\xb1\x5f\x77\x79\xc3\x53\x0b\x8a\xd7\xf0\x83\xc7\xe6\x9e\x3f\xf4\xac\xeb\x9c\x3e\x4a\x29\x00\x08\x54\x60\x04\x5b\xce\x24\xca\xea\x84\x26\x82\x49\x40\x1d\x78\x42\x95\x4f\x62\x2a\xb5\xe1\xc1\x91\xe9\x4f\x2d\x81\x7a\x2c\x51\x90\xf8\xac\x5e\x52\x92\x11\x9a\xb9\xd2\x35\x72\x13\x17\x8a\xf4\x09\xb4\xa1\x63\x70\x46\xf6\xf8\x15\x22\xd8\xc4\x43\xc2\xe8\x5e\xaf\x2d\x8a\x60\x36\xa1\x66\xd2\x8a\xe4\xd3\x67\x92\xa2\x1d\x38\xe5\x86\x6a\xf4\x82\x62\x56\x55\x46\x55\xe8\x24\xc6\x6e\xaf\x26\x5d\xce\x19\x33\xa6\x47\xd7\xf3\x56\x9b\x6a\x5f\x55\x42\x3a\x43\xa3\x65\x36\x6d\x55\xb0\x54\xc0\x42\xa5\xa6\xc4\xaa\x3a\x3a\xc2\x27\x73\x2c\x90\x03\x49\x95\xdd\x4b\xf6\x96\x3e\x0a\xad\x86\x0e\x31\x61\x22\x9c\x90\xb9\x30\x3d\xa5\xb1\x69\x27\x36\x51\xbf\x1c\xab\x30\x25\x25\x6b\x6e\x7e\x7a\x1e\x3c\x2a\x31\x75\x39\x73\x9c\x11\x15\x0e\xc5\x6c\x61\xa8\x63\x87\xd1\xfd\x72\xc1\x99\xf4\xee\xa8\x22\x0f\x49\xb2\xb3\xd5\x3d\xa2\x38\xb2\xa8\x7d\x9b\x85\xba\x92\x2e\xce\xfe\xb7\x94\xf2\x81\x5a\xe6\xd3\x85\x39\xfa\x7d\xa5\xcf\x1b\x10\x2f\xe0\x1a\x1e\x99\x3f\xee\x89\xe1\x51\x56\x60\xb3\x83\xfd\xc2\x2a\x31\x97\x8a\xb2\x94\xb8\x8e\xa4\x0d\x86\x96\xf6\x6b\x1b\x38\x89\xf1\x2a\x8c\x4a\x7f\xee\xc5\xd7\xd6\x96\x02\xce\x75\x67\x9f\x59\x22\x22\x42\x97\x89\x7c\x07\x51\xd5\xf2\x01\x13\xc5\x8f\xeb\xcc\x70\x32\x7a\xb6\xa7\xde\x11\x60\xd2\x38\xe0\x87\xcb\x25\xd6\x91\x85\xcb\xb8\x0a\x68\xd4\xe8\xfd\xbe\x4c\x46\xc2\x36\x55\x50\x0f\x87\xac\x55\xfb\xfa\x96\x35\x99\x14\x69\xdc\xdd\xe7\xb0\x2c\xd1\x04\x5d\x4c\xfa\x2a\x3b\xee\x3d\x69\x06\x81\x03\x9f\x0a\xef\x86\x57\x29\x07\x93\x4f\x40\x15\x5a\x1c\x9b\x7e\x9d\x32\xb5\xa7\x46\x25\x0c\x27\x42\x46\x2b\x23\x2f\x9f\x79\x10\x84\x63\x2f\x2a\x17\x65\x42\x2e\xb7\x1c\x8e\xbb\x98\xac\x75\xdf\x8c\x7e\xf0\x61\x49\x41\xbb\x65\xe6\x8c\x99\xec\xe9\x57\xd9\xb2\x29\x45\xd5\x15\xc3\x6f\x65\xbf\xff\x81\x8a\x30\x47\x7a\x4c\xb1\xd4\xae\x3e\xaa\x0c\x3e\x61\x89\x62\xd3\x19\xf5\x6d\xdc\x79\xc5\x23\xd2\xc4\xb6\xeb\x25\x9a\x9f\x71\xd8\x39\xf2\xa8\x58\x10\xc0\x4b\x05\x9e\xee\xcc\xe9\x57\xa5\xba\xc4\xf7\xa1\xed\x32\xfd\xb5\xee\x6c\xeb\x1c\x11\x10\x4b\xd1\xf1\x4c\xa3\x1f\x9e\x3e\x46\x12\xf8\xf1\xa1\x43\xbd\xbd\xd5\x11\xf9\x1f\x3f\x18\x2c\x8d\x78\x09\x34\x71\xc0\x5d\xa8\xbe\x74\x40\x68\xb7\x7b\x89\x76\xbb\x37\x5e\xec\x52\xd3\xf8\xb8\x57\x2a\x7f\xbc\x4a\xd7\xf7\x9a\x49\x92\x38\x10\x75\x98\xe3\x86\x83\x37\xb2\x70\x9b\x9f\x0f\x62\x62\x46\x43\xdf\xe3\x5f\xde\x4c\x77\xd9\x2d\xfa\x1f\x3d\xc8\xa1\x56\xa4\x79\xb9\x4b\xb0\x07\xf5\x80\xea\x0e\xd3\x1b\x7e\xf5\x32\x0b\xf7\x77\x00\xcb\xae\x57\x50\x6c\xba\xf8\x2d\x11\x18\x2d\x5c\x6b\x38\xc1\x06\xdf\xc4\x39\xf8\x16\x0d\x46\xf9\x42\x38\xfb\x45\x65\x1b\x63\xcb\x4a\x08\xf8\xf9\x89\xe9\x9c\x11\x20\x83\xad\xc5\xbf\xac\x57\xad\xc6\x75\x61\x7b\x1d\x6e\x5f\xc1\xaa\xcd\xe5\x04\xbb\x66\x3d\x5f\x43\x0e\xf7\xbf\xc8\xdd\xff\x74\x7f\xa9\x75\xc2\xda\x4b\xd9\x6b\x77\x8e\x51\xb3\xed\x4a\x0d\xd4\x69\xf6\x23\xb6\xfa\x1f\xfa\xb0\x43\xc3\x03\x3a\x0d\x1e\x8c\x90\xb0\xf9\x08\xe3\xe3\xcc\x21\x18\x18\x35\x8a\x28\x48\x37\x65\xc7\xad\xe8\x2f\xe1\x18\x08\x95\x1c\xcc\x7e\x6d\xa0\x04\xf2\x26\x04\x55\xd9\xd8\xfd\xe0\x2e\xd6\x38\x6a\x9b\xd2\x4a\xc7\x97\xb9\x69\xad\x49\x0b\xc1\x96\x0d\x6e\xb2\x53\xb7\x8b\x14\xaf\x06\xea\x29\xcd\x41\x3c\x52\x52\xac\xa3\xad\x7d\xe9\x97\x03\x15\xe2\x32\x9b\xbd\xb0\xc9\xf5\x0d\x27\x93\xcd\x6a\x10\x9a\x2d\x4e\xd8\x3a\x80\xe7\xf0\x8e\x01\x2c\xe4\x31\x24\x52\xc7\x59\x06\xde\x68\x6b\x9a\x11\xfd\xe7\xc5\xd6\xf4\x76\x03\xc4\xae\x4f\x6e\x6a\x40\xeb\xfc\x92\xcf\x6c\xad\xa0\x48\x90\xce\x2b\xf3\xf0\x6c\x2c\x6d\x1a\xfb\x9f\x52\xc1\xb5\xa7\x24\x8c\x27\x45\x84\x77\x67\x9e\x58\xd9\x80\x9e\xa0\x9e\x99\x31\x1e\xeb\xe1\x67\xb8\xb6\x0f\xa4\x3c\x15\xf6\x40\xd7\x49\x8e\x6f\xf4\xdc\xa1\x3f\x1d\x7e\x40\xf0\x62\xa8\xa6\x38\xea\xc1\x58\x7b\x6d\x67\x3a\x10\xfa\xc8\x66\xbd\xf4\xb0\xd7\x78\xf6\x96\x5a\xa6\xb4\x52\xfd\xd3\x2f\x5f\x92\x5c\x84\xa1\xed\x72\x2c\xe3\x7f\x3d\x28\xde\xb1\x09\x81\xe5\xd3\xcc\x21\xf3\x81\x34\x2c\xb7\x51\x57\x20\xfb\xbf\x5d\x3a\x29\x2e\xd7\x0c\xca\x65\x96\x5e\x7e\x68\x56\xfa\x4a\x6a\x30\x26\xa9\xe7\xcc\x43\x23\x1b\xea\x44\x2a\xb3\x38\xb9\xc6\xba\x41\xff\x70\x24\x49\xda\x0d\x58\xcc\x17\xc2\x8e\x7d\x7d\x92\x0b\xa5\x89\xc0\xad\x47\x14\xbf\x11\xe8\x03\xcb\x42\x3a\x60\x63\x8d\xf4\x43\xb9\xab\x4f\x0f\x7a\x5e\xc8\x86\x1e\xb7\x3d\x9f\xd0\xc9\x5e\x82\x0d\xa3\xd4\x99\xda\x69\x75\xe7\x7a\x8d\xe2\xc6\x42\x04\xc1\x92\x0e\xbc\xe8\x0c\x1a\xfc\xa0\xe2\x0d\x01\x49\x19\x10\x20\x17\x1c\x99\x3b\x2e\x0c\x49\x5c\x75\x6c\x94\x8a\xce\xbf\x38\x2c\x6b\xad\xea\x41\x54\x91\xa9\xe5\xdb\xf8\xd7\x59\x59\xb9\x9c\x3a\x04\xa7\xdd\x81\x57\x4a\xc6\x88\x32\xb2\xe8\xf1\xde\x57\xf1\x90\xca\xfa\x15\x3f\x09\x13\xc1\xa8\x28\xa7\x65\xf9\xe0\xa1\x1d\x12\xbe\xdb\x76\x2d\x5c\xa7\xab\x2d\xfc\xe6\x0b\xc9\xf6\x81\x20\xc8\x17\xc2\x59\x67\x95\x11\x2b\xd4\x21\xaa\x0a\x10\x7c\x76\x5c\x3f\x91\x71\x12\x58\x0c\x7c\x0e\x14\xbf\xd2\x49\xc0\x67\x3a\x24\x74\xd1\xe6\x6e\x92\x58\xa6\x04\x7a\x81\xe5\xe7\x0b\xe1\x92\xf3\x57\xf3\x6d\x2e\x99\x5a\xef\x57\x78\xb9\x41\x8c\x4c\xcd\x6c\x19\xab\xcc\xe4\x5d\x14\xa3\xf8\x37\x36\x0f\x90\x02\x63\xdd\x67\xc3\xc0\x7f\x78\xea\x06\x75\x7d\xf9\xf5\x1e\x35\xac\x1e\x59\x25\xd4\xca\xf8\x1b\x41\x8d\x1a\x1a\xda\x37\x3f\x60\x39\x0a\x74\xbc\x80\xda\xd7\x7e\xb1\x97\xe4\xa8\xc1\x38\x2a\xdd\xda\x5b\xe7\x1b\x1c\x22\x66\xd0\xb4\x7f\x8b\x26\xa9\xc9\x9b\x54\xab\xb9\x3b\x93\x6f\x56\x31\x15\x96\xc5\xdb\x8e\xd5\x9b\x44\x72\xb9\x26\x80\x88\xe0\x2e\x69\xbb\xad\xd9\x92\x44\xd7\x0e\xd2\x24\x45\xd7\x0f\xb5\x31\x29\x8f\x5b\x3c\xd4\x38\x17\xcc\xce\xdf\x20\x2a\x4c\x37\x7a\xa7\x54\x30\xd3\x63\xa2\x91\x54\xfc\xf0\x46\x75\x97\x94\xfc\xbc\xce\xea\x1e\x0a\xdf\x78\x5a\xcd\x88\xb1\x45\x5b\x03\x14\x83\x90\x5d\xd8\x9a\x8c\xb2\x4c\x88\x62\x15\x9d\x35\x4d\x57\xa7\xd8\x1e\xd1\x07\x9d\x3e\x34\x4c\xee\x3e\x44\x3f\x26\x31\xa4\x68\xf1\xb6\x74\x8a\x54\x23\x28\x11\xe6\x0b\xaf\x79\x54\x84\xac\x1a\x04\x2e\xa6\x73\xb6\xf0\x25\xee\x3f\x69\x62\x07\xb3\xc2\x3d\x78\x23\x1d\xdb\x5b\x67\xf4\x98\x29\xfc\xe4\x39\x76\x22\x4c\x9d\xd1\x9e\x2f\x84\x7a\x95\x2b\x5e\x05\x96\xc0\x38\x75\x67\x4e\x9f\x91\x38\x7d\xba\x0e\x62\xaf\xcc\x5e\x8a\x9f\x6e\x91\x20\xcb\x42\xc0\xf1\xf9\xd8\xfd\xc1\xf7\x14\xfd\x51\x60\x59\x80\xeb\x3b\xd1\x8e\x89\x3f\x4a\xe9\x1b\x52\x49\xe6\xb8\xdc\xfa\xd7\xed\x49\x08\x04\x36\xca\x17\xc2\x3c\x9b\x70\xe7\xef\x66\x2e\xd5\x0a\xb4\x7b\x75\xaa\x2e\xa2\x2d\x48\x1a\xb7\xdf\x7c\x54\x45\xd8\x5b\x51\xf0\x23\x31\x7b\xbd\xef\x12\x95\x3a\x4d\x90\x10\x83\xd3\xc0\x39\x96\x97\xdd\xe2\x9b\x16\xf4\x91\xee\x35\x42\x39\x66\x2b\x7c\x96\x32\xa6\x86\xe1\x94\xcf\xa2\xdd\xb1\x7d\x80\x3c\x3e\x06\x4c\x5f\xfc\x5a\xc5\xcb\xda\xac\xbb\x90\x14\x71\xac\x0c\x9d\x39\xf7\x9c\xd2\x83\x72\x5d\x08\x2c\x8e\xbf\xcf\xfc\x4d\x2a\x78\x03\x87\x42\x94\xa2\x4d\xd3\x36\x50\xc0\x1c\x30\xf1\x4d\x9c\x37\x10\x28\x3b\x38\xca\xc0\xa3\xf5\x39\x72\xf9\x40\x7e\x66\x97\xac\x20\x5a\xb7\xac\xce\xfb\xd4\xe8\x7e\x12\x76\xdf\x8e\x7e\x44\x0e\x48\xbd\x38\xe4\x78\xd4\xc0\x5d\x41\x49\xea\xd8\x29\x63\x76\xd6\xd0\x75\xde\x72\xa3\xe0\x18\x9a\xd1\x71\x6b\x37\x29\xa4\x49\x42\x00\x53\x5a\x62\x05\xe4\x6f\x36\x0d\x96\x0a\x25\xe0\xd3\xd6\x4a\x14\x8f\x5b\x8f\xaa\xfd\xfc\x32\xe8\x42\x0e\xdf\x85\xd9\x96\xb3\x6c\xb1\x17\xb1\x47\x73\xf0\xf0\xf0\x26\x71\x60\x97\x20\xe0\x7a\x6f\x99\x3f\x2a\xb4\xc5\x62\x50\xc7\x81\x1f\x0f\xc1\xbe\x3d\x5d\x19\x22\x56\x21\x49\xb4\x29\x7e\xf0\x01\xcf\x91\xb1\x2f\x4f\x6b\xb5\x7b\xfa\x0d\x4e\x17\xdf\x8e\xcf\x06\x06\x5a\x6e\xbd\x2a\x49\xa3\xfb\xc8\x66\x2b\x6c\x9d\x8a\x6d\x0d\x3a\x03\x52\xe7\x9b\xa4\x73\x7f\x1a\x26\xe0\x41\x27\x36\x92\x56\x8b\x90\x66\x05\x8f\xe2\x13\xe0\x78\x36\xe2\xf8\xeb\xcc\xea\xf7\xd3\xd9\xb0\x8e\x40\x23\x77\x2f\xd7\xce\x66\x5f\x79\xda\x12\x6d\xc8\x7a\xb3\x3f\xbd\x98\xb2\x8d\xa7\x8a\xf5\x99\x5d\x5a\x7c\xac\x05\x71\xbb\x4e\x7b\x53\x30\x32\xca\x38\x8a\x41\x33\xe6\x89\xec\x15\xfb\x6a\xf6\x7a\x20\xb6\xaf\xc3\x34\x65\x0e\x1f\xdd\x34\x5c\xaa\x83\xf4\xc0\x83\xd2\x70\x2f\xb7\xf9\x4c\x22\x4d\x94\xf7\x20\x60\x08\x97\xdc\x42\x56\x54\xe4\xef\x01\x0e\x70\xe4\xb9\xe3\xaf\xc7\xa9\x4e\x76\x50\x98\x71\x67\x7f\xf7\x90\x80\xe1\x51\x5a\x60\xab\x82\x94\xa1\xf6\xc3\x06\x63\x3d\x68\xe7\x78\x6f\x79\x39\x01\x94\x43\xa1\x24\x27\xeb\x85\x24\x51\x17\x92\x34\x1b\xb4\xcd\x8b\x25\xc4\xb4\x63\x40\xe2\x41\x8b\xe2\x09\xc7\x6d\x8d\x7b\x56\xa0\x03\xea\x3e\x66\x51\xe9\x13\x45\xee\x18\x0c\xa2\x7d\x18\xfd\xdd\x09\xc5\x5b\x85\x2a\xae\x54\x81\xc5\x23\xc2\x4f\x56\x29\xcd\x48\x64\x97\x20\xc1\x2e\xb6\xe2\xa9\x79\x78\xdb\xa2\x41\x42\xdb\x5d\x9a\xcb\xbf\xf3\xa2\x6a\x20\x8e\x71\x0c\xda\xff\xc1\x3b\xca\xda\xc4\x0e\xb4\xe2\x6a\xfd\xf0\x5e\xa5\x5a\x07\x86\x50\x3c\xc8\xee\xe8\x9d\xe8\x23\x52\xba\x1f\x0a\x68\x73\x7e\x99\x20\x48\x05\xb4\xbf\x4f\xff\xf8\xb3\x8a\x38\x4d\x31\x20\x10\x04\x7c\x42\xb7\xe2\xb4\x40\xde\x16\x25\x93\x00\x2d\x9c\x97\x1c\x01\xf5\xa8\x5c\x0f\x2d\x4b\x55\x96\x05\x54\x73\x86\x3d\xa3\xaf\x6f\x14\x07\xbc\x01\x48\x23\x3a\x75\x8f\x84\xfe\xb6\xd9\x78\x23\x73\xe8\x71\xd5\xc3\xb4\x04\x69\x83\x37\x6e\x1e\x1f\x3a\xca\x32\x6f\x50\xc4\xd4\xe1\xf5\xc3\xfb\x58\x91\x7a\x6b\xdd\x04\xc4\xf7\x64\x70\xcc\x83\x8a\x3c\x62\xcc\xba\xdf\xbd\xff\x7a\xa9\xe5\x6d\x73\xd5\x85\xf4\xce\x73\xf6\xc5\xc6\x74\x5e\x74\xac\xb3\x3c\x76\xef\xd2\xeb\x24\x62\x9f\x8e\x05\x1b\x81\x8f\x0d\x73\x63\x95\xc3\xa7\x65\xe6\xcc\xe6\xfc\xcc\x16\x36\x19\xfd\xd8\x48\xb1\x28\xcb\x75\xdb\x01\x1e\x7b\x49\x39\x5d\x69\x47\x51\xdd\x3f\xd6\x87\x76\xfa\xb0\xcd\x5e\xf0\x2c\x1c\xc7\xf6\xf6\xcd\xe9\x20\x25\xb3\x51\x52\x73\xf9\x70\xc3\xb1\x91\xea\x69\xea\x18\x54\x74\x98\xaf\x9a\xef\xf6\x4f\x5e\xa9\x0b\x48\xbe\x10\x6a\xaa\x1d\x06\x74\xbc\xd8\xe1\xa3\x3b\x37\x7c\x8f\x32\x01\x0e\xba\xcc\x0a\xae\x52\x0c\x9e\xc8\xfb\x9e\xe2\xdd\x89\x22\x34\xb8\x38\xef\x17\x14\x80\x53\x7c\xf4\x30\x92\xe9\x95\xc6\x48\x09\xc5\xe4\xab\x61\x30\xfc\xe4\x5e\xee\xbf\x64\x62\x0b\x7a\x80\x7a\xfa\xfd\x6c\x23\x7b\x2e\xcb\x60\x15\x1b\x4e\x1d\x44\x27\x5c\x7b\x3a\x2d\x47\xbe\xc7\x3b\x6b\x15\xa6\xf4\x9d\x5f\x08\xf4\x35\x81\xc4\x34\x0f\xef\xca\xa5\xef\xa7\x62\x46\xc7\x62\x17\x4a\x61\xd1\x72\x73\xb6\xb3\xf3\x67\x71\x9d\x04\x52\xe7\x2b\xf3\xfa\xb9\x8f\x29\x67\xb0\x0e\xf2\x3a\xb6\x7a\x56\xd9\x3b\xb6\x51\x58\x1f\x1b\x72\xa3\xe1\xde\xe3\x4a\x89\x4c\x90\xcb\x81\x04\x0f\x28\x40\x4b\x1b\x38\x26\xf0\x7d\xc0\x30\xd5\x51\x94\xf9\x8f\x51\xf1\xbc\x9c\xe1\x2f\x69\x3e\xb3\xf9\x21\xb5\x62\x72\x03\xee\xe4\xc2\xc2\xea\x1d\xab\x64\x8b\x38\xfe\x92\xbe\x4d\x06\xc8\xd5\x20\xa6\x74\xd8\xdb\x2e\x4b\x6e\x75\xb0\x2c\xf4\xf3\x5e\x94\x84\x42\x74\x13\x31\x8b\xb5\xdf\xbd\x29\x52\x21\x2a\xba\xce\x74\x10\xb3\x1f\x7d\x59\x89\xf1\x26\x40\x4e\x2c\x0b\x5c\x69\x93\x72\x45\xa8\x5b\xb1\xcb\x6a\xe6\xaf\x07\x94\x0d\x8c\x7d\x93\xed\xa4\x67\xef\x4b\xa2\x5a\xad\x9e\x34\xf0\x67\x58\x2c\xb6\x97\x09\xf0\x3c\x82\x31\x6b\x53\x5c\x71\x5c\x45\x39\x47\x6b\x80\x11\x86\x33\xff\xbd\x8b\xad\x8c\x05\x00\x3a\x9e\x6e\x4a\x55\xcd\xb6\x45\xf1\x29\x6b\xdb\x81\xc3\xc0\xe8\x7f\x9a\xdd\x5f\x4a\x6d\x98\x74\x90\xf6\xbb\x27\xd5\xcf\x8f\x4e\x48\x8e\xcd\x09\x96\xa8\xf0\xc9\x22\x85\x20\xf1\xe4\xa9\x3e\x3b\xdd\x35\x00\x9e\x87\xca\x0e\xe7\x9e\xa8\x39\xf5\xde\x25\x89\xe9\x2c\xa4\xf2\x1e\xb9\x8f\x6e\x90\xe6\xef\x26\x01\x1e\x4c\xe4\x72\x9f\x5f\xcb\xc2\xe4\xad\x3c\xf1\xd6\x5a\x97\x08\xc4\x2b\x62\x70\xc0\x65\x93\xd4\x83\x1a\xd7\x12\x37\xd2\xec\xd7\xc8\x70\x91\xf0\x37\xb4\xa1\xce\xcf\x1b\xad\xbc\x1b\x07\xa0\x80\xba\x2e\x27\x27\xdd\xf9\xa7\x92\x8e\x45\x19\x18\x1c\x94\x3b\xc8\x92\x06\x61\xc0\xf7\xe9\x6e\x0e\x2e\x89\x9c\x91\x15\x52\x51\x0e\xb3\xe9\x94\xda\xb1\xf1\x62\xb5\xd5\xdb\x07\xc9\xe3\x34\x62\x71\xb2\x57\x67\x9f\xf8\x92\x5b\x67\xe4\x0b\xe1\xd7\x5d\xa5\xaf\x83\x2d\xa4\xd7\x69\x7d\xcc\xd6\x51\x51\x32\x4e\xaf\x43\xcb\xf7\xe8\xf9\x70\xcb\xd1\x86\xdc\x9a\xf2\xee\x3d\x7e\x4a\xe7\x95\xc3\x9f\xea\x8f\xd8\x98\xdb\x99\xb1\x48\xd9\xa6\x18\x1d\xe9\x41\x42\x24\xfc\x36\x11\x28\xcc\x28\x07\x36\x1b\x0e\x9f\x05\x97\x55\x16\x2b\x88\xcd\xfc\x32\x23\xd6\x25\xa7\xb3\x85\xaa\x52\xd4\xfd\xce\x3b\x42\xa2\xab\x26\x85\xe3\xcc\xa1\x3d\xff\xcf\x20\xb2\x6c\x49\x77\xf6\xec\x42\x05\x00\x88\x1d\x54\x36\x85\x07\xd7\x23\xcf\xa5\x4f\x9c\x1a\x20\x04\xf6\x68\xfe\x95\x43\xbd\x55\x70\x94\x93\x1e\x80\xdf\x7c\x5e\xdc\x40\x3d\x10\xb1\xf8\xb5\xc7\xd3\xd1\xd4\x0c\x7c\xdd\x44\xde\xff\xe2\x31\xf6\xc4\x7d\x12\x2b\xab\x3d\xba\xc6\x3f\xec\xbb\x41\x3d\xb9\x38\x0b\x5b\x5d\xbb\x5b\x8c\xa1\x52\x4c\xe3\xda\x02\x9c\x83\xf9\xc8\x06\xb6\x6f\xa0\x53\xc5\x51\x76\xfa\x8c\x62\x12\x51\x8e\x09\x96\x99\x39\x87\x15\xdb\x43\x64\x30\x00\x4e\xee\xb3\xc5\x21\x82\x73\xeb\xa5\x78\xe7\x7f\xb8\x47\x44\x90\x19\xd3\xb9\x1d\x33\x39\xa3\xac\x73\xe0\xf3\x05\x9a\xf9\x85\xc1\xfa\xe2\xb7\x41\x87\x96\xbb\x8d\x0a\x0c\x0d\xc9\x76\x60\x17\xad\x58\x21\xf6\x6d\x59\x3e\x34\x28\xb2\x74\x85\xe5\x32\x47\x4f\xa6\x17\x71\x11\x38\x95\x28\x68\x49\x8c\xa4\xcc\xaf\x39\xff\xa9\x18\x10\x0a\x5c\x0e\x1f\xda\xa1\x30\xba\x3c\x04\x52\x34\xd1\xee\xec\xaf\x56\xb3\x20\x4c\x80\x8b\xa8\x82\x31\xed\x80\xb7\x49\x9a\x60\x5d\xc0\xe9\x42\x45\x26\x90\x6b\xed\x57\xd3\x3d\xcf\x8f\x9d\x11\x68\xb1\x33\xcf\x95\xc4\x4d\x70\xd1\x13\x7c\x33\x43\xb2\x90\xe7\x9c\x4f\x1a\x03\xf6\xc5\x3a\xba\xae\x0b\x1d\xae\xba\xd0\x3a\x4f\x75\xb9\xf5\x63\x8f\xae\x0c\x9e\xcf\xb3\x15\x0b\x70\x58\x98\xb6\xe9\xa6\xf4\xab\x85\xc0\x63\x50\xc5\x9f\x2a\xd3\x34\x17\x92\x68\x81\xd2\x86\x53\x66\xf5\x59\xd5\xdb\x2c\x11\xf7\xd8\xba\x34\xbd\x36\x01\x71\xb0\x65\xf4\x00\x3e\xcf\x4e\x7a\xf0\x3a\xe9\x30\x04\x8d\xc1\x41\xbb\x7b\x49\x72\x30\x15\x11\xd3\xea\xcd\x16\x8f\x0b\x31\xdb\x8a\x94\xb2\x67\x0e\xac\x16\x65\x20\xc5\xe0\x02\x1b\xd2\xb1\x41\xf4\xaf\xc8\x61\xa9\x52\xb7\xb0\xe7\x21\xfa\xae\x4e\x56\x95\xbe\x9b\x4b\x6d\x80\x38\xb0\x32\x1c\xbe\x5e\x71\xf7\x0b\x88\x6f\x26\xe4\x0e\xef\x71\x05\x33\xd5\x3c\xa5\xb5\x7d\x2a\x5b\x8d\x9b\x16\x28\x8e\x83\xd8\xe2\x54\xde\x86\x2e\x4e\xf6\xbb\xbd\x38\x0d\xc4\xa5\xda\x40\x22\xcc\x0d\x68\x63\x6b\xf2\x4e\x50\x42\x20\x3a\x25\x9e\xef\xaf\x28\x10\x06\x16\x28\x7b\x94\x54\x5f\x08\x3f\xf1\xbe\x58\x24\x35\xe4\x94\x08\x1d\x55\x69\x3f\x3e\xcd\xde\x39\x93\x1b\xa3\xef\xfc\xce\x3e\xb2\x7a\x3f\xef\x02\x6b\xd7\x0d\x64\xe1\x80\x70\x74\xfb\xec\xa3\x6c\x75\xdf\x12\x78\x3e\xa1\x7e\x6e\xd1\xeb\xcd\xee\x95\xe9\x16\xb6\x8d\x1d\x06\xc1\xa1\x86\xf4\x67\xd3\x4b\x66\x1a\xd5\x8d\xe5\xf9\xdd\x5b\x57\x0c\x14\xaf\x86\x99\x98\x51\x4d\xaa\xa5\x4a\xbf\x89\xf8\xc8\xf3\x63\x8c\xbb\x7e\xe1\x7a\x01\x72\xf4\x2c\x60\x23\xd5\x40\xb3\x5b\x1b\xf3\xb2\x94\xcb\xa1\xb8\x07\x53\xdb\x22\xd2\xb3\xbc\x05\x63\x0c\x50\x66\xc6\x61\x89\xc4\x42\x6c\x1c\x30\x59\x8e\xec\x1f\xf7\x5f\xc5\xf7\x32\x65\x63\xbf\x77\x42\x69\x89\x63\x03\x52\xeb\x9b\xf0\x4b\x6f\xb3\xb7\x35\x1f\x1a\x98\x88\x5e\x40\xd8\x55\x1c\x2a\xf7\x78\xa9\x9b\x1b\x87\xd1\x64\x57\xec\x64\x2f\xb2\x65\x1a\x1b\x00\x75\x67\x1e\x70\x45\x90\x28\x72\x4b\xf3\x7c\x21\x7c\x64\xb9\x2c\xa8\x0c\x6d\x0e\x0d\x0b\x8f\x32\xcd\xd6\xfc\xbd\x80\x60\xcf\x14\x69\xc7\x47\x1f\x53\x46\xde\xc0\x76\x13\x93\xb7\x15\x82\x11\x09\x1a\x45\x14\x73\xd7\xee\x63\x9f\xb9\x04\xfb\x2c\xd2\xc4\xa7\xd6\xe2\x26\x49\xa5\x8c\x50\xed\x8f\x44\xf7\x07\xac\x52\xb4\x7d\xa9\x0a\x0a\xf3\xdf\x7a\xfa\x31\xd9\x85\xaf\x4c\xdb\xc3\x4b\x25\xc1\x21\x40\x0c\x44\x39\x7a\xb9\x59\xa1\xe8\xf5\xb8\x16\xa5\x77\x75\x6b\xc1\x7b\x12\x87\x9c\x02\xeb\xe9\x39\x15\x86\x7b\x47\xa7\xf7\x35\xc2\x44\x6d\x8e\xcc\x1a\x24\x8f\x45\xaa\x94\xb2\x4e\xcd\x66\x76\x4a\x30\xbe\x80\x38\xcc\x62\x56\xfb\x7d\x49\x56\x66\x21\x01\x65\x79\x1c\x39\x98\x3c\xae\x4e\x68\x35\x1c\xf6\xd7\x6e\x62\x28\xef\xc5\x51\x60\x58\x38\x87\xab\xda\xea\xd8\x8d\x96\xcb\xe8\xf3\x6c\x72\x74\x07\x01\x9e\x83\xeb\x80\x78\x15\x1e\xba\xaf\x5e\xae\x94\x03\x16\xf0\x62\xc7\xb2\xdc\xac\xf3\xaa\xb2\x76\xbc\xf0\xd7\x6e\x1f\x1a\xaf\x32\x48\xa8\x9b\x9d\x64\x71\x32\xff\x5a\x25\x0a\x40\xaa\xa2\xce\x01\x14\x5b\x8e\x8b\x79\x3a\xaa\x34\x44\xdd\x33\x86\xd2\x9c\x04\xd4\x17\x81\x6b\xfe\x7c\x6a\xe7\x50\xf5\xa8\x4c\xb4\xc1\x96\x1a\xe9\x3d\x01\xac\xc4\xf0\xed\xc0\x22\xb6\x96\x6e\x0b\xb0\x53\xee\x32\x71\x10\x6f\xb7\xb5\xcf\x28\xaa\x39\x36\x2a\xf3\xa9\x46\xb8\xee\xac\x78\x39\x16\x08\x38\xd2\xf9\xb3\x47\xd2\x34\x06\x82\xf4\xd8\x5a\x20\xf3\xe7\x21\x49\x3e\x55\x46\x92\xa4\x59\xce\x5a\x25\x8b\x8b\x71\xf2\x2c\x8d\x75\xbd\x26\x0e\x70\x52\xb0\x87\xe8\x11\xdd\xda\x3f\x0d\x15\xb4\x90\x8f\xca\x80\x1b\x64\xd3\x1b\x3a\x76\xa3\xd8\x3b\x5d\xa8\x01\x94\xf0\x64\x57\xd2\x4b\xc0\xc5\x6a\xbe\x10\x3e\x9b\x4b\x58\xa7\x9e\x0b\x63\x43\x99\xbd\x97\x25\x33\x21\xb9\x5f\xf3\xaf\x9a\xc4\x2c\x07\xf2\xe6\x9b\xbb\x28\x5d\x45\xd5\x90\x6f\x1a\x04\xd4\x78\x91\xf5\xa3\x5e\x29\x90\x09\xd0\x4d\x2e\x02\xb7\x60\xf4\x18\xb1\xa4\x81\x55\x05\x3d\x59\xff\x64\xc6\x2b\x12\x24\x26\xb2\x79\xe2\x1b\x7e\xee\x3e\x09\x1f\x4e\x90\xa3\x23\x97\x6d\x22\xed\xdb\xbe\xd8\x98\x36\xa8\x33\x1e\x4a\x54\x84\x5e\xf5\x8e\xf4\x02\x05\x0e\xe9\x2a\x2d\x5d\x2f\xa1\x2a\x70\x2a\xb8\x2a\x73\x45\xc3\x59\x93\x24\x98\xae\x13\xc4\xa2\x30\xd9\x7b\x25\x30\xbe\x09\x2d\x26\x10\xf7\xd0\x45\xc5\xf6\xbb\x3d\x31\xbb\xe6\x49\x47\xff\x0f\xa4\x33\xc0\xc2\x65\x76\xe8\x9f\xd8\x36\x3c\xd6\x1a\x9c\xb7\xbc\xc1\xe6\x72\xb6\xa4\x26\xa9\x57\x1c\x5c\xb3\xa0\x51\x8e\x75\x66\x46\x1e\x54\xb2\xbf\x84\x84\x13\x17\x0a\xd9\xb1\xbe\xea\x9e\x43\x15\x54\x18\x9a\xac\xe5\x05\xa5\x18\xc6\xd1\xfa\x8e\x7e\x4b\x4f\xa7\xe3\x0b\x85\x31\x40\x73\x74\xaa\xac\x5d\x2c\x8f\x29\x01\x1d\x74\x6e\xbd\x20\x9d\x28\x38\x28\x9b\x15\x08\x5d\x96\xb8\x64\x7e\x64\x48\x47\x38\xf5\x2a\x8f\xde\xd4\xe4\x53\xd7\x29\xe9\x4c\xe0\xe4\x3d\x64\x55\x13\x5a\xf1\xaf\x8f\x71\x79\x1b\x02\x1d\x43\xea\x64\x67\xbf\x77\x2c\xb9\xa2\x0e\x80\xf2\x85\xf0\xba\x05\x1c\x27\x8c\x2d\x03\x41\x42\xa7\x7d\x07\x36\xa6\xbd\x93\xa2\xb3\x9a\x35\x54\x06\xed\x97\x94\x21\x91\xef\x05\x45\xe4\x99\xd1\xc7\xf4\xe9\x4c\x3e\xb7\x09\xd3\x06\xc9\xde\x43\xe2\xd5\x5b\x18\x57\xe2\xd5\x34\x78\x7e\x12\xb7\x7c\x53\x8d\xf0\xdd\xda\x57\xc6\x2b\x92\xd5\xc8\x81\x79\x03\x30\x51\xf3\xec\xf4\x6d\x4a\x0d\x0a\x62\xec\xc5\xb5\x2f\x4b\x34\xc6\xe8\xf0\xa0\xf2\x57\x99\xa7\x96\xf6\x15\xa1\x24\xda\xc1\xbd\x16\x0f\x96\x88\x17\x36\xb5\x23\x67\x21\xa4\x69\xbc\x62\x9f\x4d\x20\xd4\x65\x13\xeb\xd1\xa7\x15\xc9\x72\x82\x3c\x1f\xeb\x04\xf8\x5c\x6f\x69\xc5\xc9\x24\x9a\x38\xb0\x41\xe1\x56\x7b\xea\x25\xa5\xf0\x0a\x58\x69\x1d\x3e\xda\xc9\x8e\x99\x09\x77\x82\x0a\xcd\x57\x7f\x70\x22\xb9\x6a\xbb\x4e\x45\x87\x46\x2a\x6d\x4f\xcf\x06\x96\x95\xf7\x71\x8d\xe7\xe3\xb9\xbb\x97\x8c\x96\x71\x8a\xb7\x4b\xde\x09\x22\x77\xbe\xf1\x4a\x95\xa8\xe8\x02\xc2\x68\x3e\xd1\xea\xdc\xb7\x39\xc9\xb9\x4d\xda\x20\x89\xff\xdd\x3f\x9e\x56\xc4\x35\xa0\x17\xab\xc7\xad\xbc\x32\x8d\x19\xf3\x19\x9b\xbf\x71\xc0\xff\x99\x29\xec\x26\x6b\x04\xfb\xd1\xb2\x2f\x6b\x82\xdd\x6a\x37\x8e\x5b\xff\xaf\xab\x52\x22\xad\x78\xa0\x7a\xe2\x85\xa4\x27\x32\x21\x0a\xf3\x57\x2e\x17\x9b\xca\x81\xcc\x36\x2c\xfb\xc5\xa7\x84\x58\x57\x07\x70\x80\xdf\x28\x4b\x33\x7b\x98\xd4\xda\xeb\x74\x2d\xcc\xb8\x28\xd9\x3f\xb5\xfd\x6f\xde\x74\x74\xa5\xdd\xdf\x26\x59\xc5\xa2\x32\x85\xb6\x67\xe7\xfb\xe9\x77\x3b\xad\x3d\x1e\xf5\xcd\x56\x7c\x88\xa3\x34\x90\xd7\xb2\x47\xb9\x97\x4a\x1a\xc0\x37\x45\xd1\x2e\xc2\x9e\xdf\x58\x4d\x68\x0f\xec\x51\x67\xdf\x3e\xf5\x7a\x4f\xe2\xd6\x37\xc6\xb1\xa3\xaa\xbd\x2d\x6f\xb3\xcc\x33\xfa\xf4\x25\x4a\x1d\x38\x21\x06\xa3\x67\x87\x9f\x4c\xff\xa6\xad\xa9\x9d\x13\x43\x7e\x3b\x5d\x15\x81\xb4\x7c\xda\x6f\x8f\x83\x4a\xf7\xeb\xaa\x1a\x32\x21\x81\xcb\xfa\x91\xda\xc4\x9b\x58\xc6\x3d\x1f\xb0\xe6\xe2\xd7\x57\xa7\x54\x60\x5c\xe0\x20\x98\x50\xbb\x9e\x7f\x4b\x81\x75\x63\x5c\x61\x39\xd4\xb8\x97\x1b\x78\xc7\x74\x83\xaf\xdc\x26\xc9\x14\x13\xcc\xa1\x03\xda\x67\xce\x0d\xac\x49\xfd\xb8\x1a\x26\x74\x97\xdc\xf5\x3e\x83\x23\xb4\x7c\x9c\x2a\x04\x6b\xc7\x25\x24\x16\x30\xb8\xa2\xf4\x2a\x2e\x8e\xca\x06\x29\xb4\x48\x9a\x38\x3e\x96\x15\xa1\x64\x1a\xfa\xb3\xc1\x9b\x45\xee\xe0\x37\xca\x6d\x67\xce\x88\xee\x64\xb1\x48\xf7\xca\xbe\xf9\xec\x53\xa2\x53\x2d\xf1\x7e\x7d\x68\x53\x1f\x3a\x6b\x58\xcc\xbf\xbd\xfb\x0d\xa5\xfd\x11\xf8\x42\x9c\x21\xf3\xbd\xd5\xec\x06\x66\xb4\xcd\xa0\x2f\xed\x19\x96\x90\xde\xb2\xbc\xe1\xfb\x2d\x2b\x9e\x9e\xe5\x0d\x44\xe8\x60\x30\x5f\x08\x77\x9e\x97\xbc\x98\xe8\x61\xc5\x0b\x23\x6d\x8f\x6a\xbc\x46\x65\x9b\xa5\xa1\x41\x66\xbb\xc3\x4a\xcc\x3a\x20\x06\x2d\x9f\xba\x73\xf7\x75\x72\x92\x24\x20\xdc\x3a\x60\xc6\x15\x92\x17\x0b\x01\x8e\x87\x62\xc4\xf6\xb3\x2b\xfa\x49\x44\x73\x5a\x0b\x1c\x3d\xcc\x15\x0e\x40\x17\xd7\x2b\xcc\x7c\xea\x21\x76\xd9\x05\x02\x2d\x69\x89\xbd\xa6\xd8\x72\x4c\xe5\x7c\xe5\x6e\xed\x3b\xd2\x02\xf0\x80\x05\x08\x2b\x33\xfe\x7c\x76\xb8\xba\x8d\x3c\x54\xb4\x20\xeb\xc1\xfc\x8f\x9b\x8c\x6c\x67\xb6\x4d\x8d\xfe\xfe\x6f\xaf\x26\x41\x05\x44\x41\xa5\xb7\xa2\xf0\x5d\x24\xb8\x12\xeb\x45\x69\xbd\x2e\x0a\x18\x62\xf3\x0c\x5a\xea\xe5\x26\x5b\xfd\xf9\xad\x11\xa0\x9b\x01\x55\x67\xce\xde\xaf\x8c\xc1\x8a\x01\xb2\x7c\x3e\xfc\x5c\x7a\x58\x52\x75\x22\x98\x0d\x08\x6e\x5e\x9c\x44\xfe\x96\x19\x54\x75\xf0\xe2\x3d\xaa\x5d\x1b\x74\xe3\x84\x3c\xdb\x76\x32\x3d\xed\x81\xc4\x81\x9e\x8f\xd3\x84\x07\x6d\xbc\xc2\xfa\x82\x65\x9c\x84\x89\x9b\x1f\x54\xf8\x00\x81\x1f\x85\x12\x21\x06\x7d\xf7\x26\x05\x69\x6b\x33\x09\x74\x77\xd5\x10\x41\xbb\xab\xa6\x50\x0c\xf6\x9b\x32\xd5\x98\x0a\x79\xe5\xa6\x90\xd8\x20\x84\xd5\x81\x99\x71\x3b\x24\x25\xa9\x46\xcb\xdb\x6f\x3c\x29\xf3\xcd\x49\x85\x36\x39\xde\x15\x73\xdc\x92\x25\x0f\xe8\x6f\x6a\x56\x06\x4e\x51\xdc\xa0\xd5\x47\x75\x7f\xa2\xf4\x18\x65\x99\x61\xb0\x25\x31\x96\xa1\x7d\xd4\xa4\xe4\xbd\xe9\xfd\x54\x02\xd1\xc1\x44\x73\xd7\xad\x93\x52\x21\xcb\xc3\xd2\xa1\x38\x73\x6d\x7a\xc7\xb4\x4d\x95\xd3\x55\x6a\x05\xb7\x5f\x19\x82\x42\xcb\x8f\x25\xd8\x1f\x66\x98\x79\xaa\xe4\x4c\x99\xc3\x31\xc6\x35\x73\xe8\x95\x64\x6d\xb6\x30\x21\x73\x77\x8f\x5c\xf6\x46\x47\x36\x53\xfb\x79\x71\x47\xfa\xf3\x01\xb3\xd2\xa3\x5a\xc5\x5f\x56\x2c\xa5\xa1\xa3\xe3\x80\x80\x32\x72\xca\x49\x0f\xbc\x6b\xe2\x50\x19\x9a\x4e\x40\x62\x6d\xd0\x9d\x31\xd7\x36\x60\x41\x8c\xc4\xa5\xa2\x3b\xfb\xd5\x91\x92\x37\x69\x62\xd1\x1f\x9a\xdb\x92\xe5\x4b\x98\x2c\xc6\xff\x75\x04\x74\x18\x51\xb1\x04\xc5\x13\x3a\x71\x49\xa4\xf6\xdd\xca\x78\x03\x7a\x3a\xb0\x24\x71\x9a\xcc\x77\x27\x2a\x40\xc5\x20\x01\xcf\x7d\xe2\x8d\x1e\x0d\x63\x12\x3c\x90\x36\xe6\xe4\xe8\x34\x95\x63\xc9\xe4\xdb\x65\x2d\x55\x5a\x99\xdc\x70\x72\x90\xa4\xed\x61\x83\x64\x74\x37\xf5\x5c\xca\xa8\x17\xd2\xfb\x3d\x74\x46\xd4\x4c\xba\x19\xe5\x83\xbc\x7f\xb6\xdc\xb8\x46\x02\x77\x7b\x3e\x77\x64\xc9\x7c\xa1\x9f\x32\x36\x0e\x6c\x4c\x38\x93\x38\xfc\xa7\x45\xaa\xe9\x6d\xbd\x88\x8d\x3a\xb3\xac\xcd\x05\x5b\x26\x26\xdf\xe5\x7a\x75\xdd\xc4\xc0\x01\x56\x9d\x8a\xe3\x37\xda\x67\xef\x96\x14\x09\x4d\x50\x67\x49\x51\xcb\xd1\x78\x14\xc0\x28\x38\xd9\x27\xde\x52\x98\xf0\x20\x30\x20\x31\x00\x6b\x2e\x71\x68\xc5\x0e\xab\xd1\xb2\x11\xc7\x64\xff\xcc\x25\x49\x8e\x8f\x2b\x5b\xc4\xff\xb0\xfd\xc5\x06\xd3\x10\xcb\x37\x63\xd2\x79\xf6\x39\x86\x66\x60\x3e\xf6\x5c\xf4\x8c\xa9\x37\x7c\x66\xb3\x22\x8c\x03\x0c\x02\xbd\x24\x66\x15\x37\x29\xc0\x2f\x3f\x5a\x80\xc0\xe1\x91\x35\xfb\xad\x95\x92\x86\x33\x76\xa0\xcf\xbc\xde\x32\xbf\x9b\xce\x19\xa9\xd0\x82\x45\x12\x93\xf4\xda\x25\xad\x34\xe8\x94\x30\xd1\x39\x5a\xf3\x6f\x0a\x4f\x0c\xbb\x90\x0f\x41\x33\xc6\x79\xc1\xf2\xaa\xa2\x86\xfa\x1b\x6d\x54\x32\x48\x64\xd0\xe4\x2c\xce\xb5\x86\x6e\x6b\xf0\x2f\x2e\x21\x0b\x32\xf0\x40\xf6\x6b\x07\xd2\xbf\xa5\x6a\xd0\x31\xf3\x21\x37\x4b\x11\x94\x22\x90\x0f\x58\xd9\x89\xf0\x8b\x39\x49\x88\x44\x9e\x1c\x22\x5f\x60\xb2\x5b\xf9\x45\xa8\x62\x62\x03\x4a\x2d\xf5\xec\xef\x37\xaa\xeb\xae\x9c\xd0\xab\xbb\xb3\x7f\x51\x10\x3c\x1d\x81\x53\xe6\x9c\xc2\x6e\x6d\xa5\x12\xe2\x6c\x6c\x40\xc2\x2c\xa0\xb3\x48\xf1\xd8\x30\x51\xd9\xa4\x4a\xcc\xb1\x10\x61\x36\x33\x50\x12\x4b\x84\x34\x3e\xb7\xef\x15\x1a\x07\x36\xf2\x75\x13\x4a\xb6\x16\xdd\x99\x29\xe7\x55\x5b\x69\x0b\x3b\x28\x26\x3f\x6b\x2f\x5e\xc1\x96\xd4\x5c\x8b\x1a\x69\x49\xff\xf0\x9b\x1d\xc3\x1d\x19\x0c\x08\xf3\x3e\xe6\xff\xa7\xd0\x9d\xbd\x77\x96\xc8\x4d\x5a\xa6\xb7\x45\x1f\xd5\xc1\x99\xf1\xb7\xc4\xe3\x05\xf1\x28\x3f\x7e\x40\x7c\x16\x1d\xc9\xf9\x00\x51\x86\x36\x3d\xd8\xbe\x32\xa7\x1f\xb5\xe9\xcc\x07\x2e\xc3\xb4\x0f\x92\xa4\x66\x20\x70\xe8\x17\xfe\x5c\xb1\x7b\x41\xb6\x8b\x89\xcf\x96\x30\x8d\xbf\x3f\xef\x33\x54\x42\xf5\xb2\xf5\x1a\xc7\xe6\xe5\xc5\x54\x2e\xcc\x5a\xa5\x85\xee\x6c\xbf\x41\xc9\xbb\x2f\xa6\x26\x0c\xe5\xe9\xc2\x7a\x85\x8a\x2b\xa6\x6b\x89\xcb\x3e\x4d\x78\x2d\xe8\xe4\x67\xb0\x62\x37\xbc\x7b\xd2\xd5\x12\x97\x29\xaa\x4a\x43\x58\x94\xa6\x9c\xf2\xa7\xff\xbe\x57\x72\xc4\x4e\x9f\x41\xd1\x8d\x92\x7c\xbf\x6f\x22\x2a\x8b\x60\xe4\x5b\x28\xcd\x66\x90\x24\x9d\xc4\x52\xe0\xb0\x70\x54\x75\x53\xf5\x4d\x1c\xb0\xf2\x21\x37\x72\xaf\x38\x96\x2b\xc8\x31\xb8\x0d\x48\xa7\xa4\x6e\xe6\xd7\x5d\x26\x89\xf9\x85\xde\xa2\xa3\x6d\x20\xaa\x64\x19\xc4\xe5\x7d\x76\xcc\xda\x41\xca\xf1\xc0\x12\x84\xd1\xe7\x54\x69\xbb\x52\xe0\x24\xe6\x13\x2f\xaf\x95\xe4\x73\xa2\xe4\xdf\xa1\x8a\xaf\xb9\xe0\xe4\x00\xa1\x52\xc8\xa1\xd8\xe1\xdd\xe7\x15\x61\x34\x64\x21\xf9\x9d\xfe\xea\xc4\xa8\x1e\x72\xd2\xe8\x8f\x10\x6f\x15\x6b\xbb\xad\xe4\x00\x9d\xe0\x9b\xf9\x42\xf8\x85\x73\x52\xb5\x89\xb9\x36\xf5\x93\x37\x28\xdf\x03\x6c\xd4\xe3\x4c\x99\x34\x4b\x83\x06\x1e\x84\xe8\xa5\xec\x1f\xcb\x2d\xb5\x1c\x1f\xe9\xc8\x8d\xcd\xdd\xbf\xda\xd1\x5f\xde\x25\x84\x72\x16\x67\x8e\x1d\x2c\x75\xf7\xed\x22\x36\xb8\x24\x42\x66\xea\x5a\xb1\x11\x98\xa6\x8d\xac\xfe\x78\xd7\x4d\xb1\xc7\x5a\x42\x7d\x39\x78\x94\x25\xfc\x2b\x40\x53\xec\x23\x7b\xf6\x1e\x6e\xf9\x69\x05\x54\x01\x44\x66\xf9\x7e\xe8\xa5\x74\x12\xd3\x81\x1d\xe8\x29\xa6\x08\x53\x0e\xa6\x23\x82\x03\x75\xe8\x79\x80\x70\x91\xe9\x8f\xcc\x57\x75\xfd\x8a\x1e\x62\x3e\xf0\x14\x66\x3a\xea\x8d\x64\x6b\x04\xc5\xc6\x61\xf4\xf1\x97\x25\xf7\xdf\x7c\xcb\x74\x2a\xfd\xc2\xcd\x41\x98\x99\x24\x7d\x16\xea\x01\xf0\xf5\x03\xe9\x25\xed\x04\x4c\x56\x9b\xc6\xc5\x9f\x0f\x13\x9f\xe9\xb3\x81\x90\x77\xa1\x6f\xf2\x20\xa7\xb7\xe4\x0b\xe1\xd7\x57\x4b\x63\x6e\x17\xea\x08\x58\x5c\xfa\x33\x37\xe9\x55\xb1\xf4\x2c\xde\x81\x0f\xeb\x24\xb9\x8d\xb2\xd9\x50\x8c\x66\xf6\x3e\xa7\x4a\x44\xd7\x20\xa1\xc6\x7d\xef\x5c\x91\x62\x0a\x78\xd8\x42\x46\x42\xb2\x7d\x77\x87\x94\x13\x13\x5c\x62\x1a\x60\xd9\x37\x5f\x1a\x9a\xd2\x36\x60\x94\x71\xc6\xfe\xfb\xf0\xdb\x83\x52\xc8\x37\x4f\x8f\x42\x61\xa1\x5b\x23\x52\xef\x36\xda\x18\x30\xa0\xd3\xc8\xc7\x45\x3c\x00\x51\x16\x9c\x2f\x84\x7f\x7a\x5f\x01\xa3\x14\x0d\xca\x42\x75\x65\xbc\x6f\x6b\xd2\xaa\x4a\x35\xd6\x33\xef\x11\x55\x50\xd1\x31\x6c\x40\x2a\xbc\x5a\x3c\x3f\x47\x12\x0f\xe6\xdc\x2b\x9e\xf9\x3d\xb7\xae\x7f\xca\xea\xa7\x90\x2f\x84\x43\x7b\x29\x72\x1b\xd8\x0d\x98\x0b\x3c\x6f\xf1\xe6\xbe\xe8\x4a\x9c\x1f\x87\x02\x98\xd9\x64\xb2\xb7\x24\xda\x5b\x44\x26\x60\x0a\x08\x4b\xd8\x74\x89\xf5\xad\x96\x4a\x9b\x0d\x02\x3a\xec\xcf\x76\xf6\x66\xc8\xbc\x65\x7e\x93\x5c\x53\xe5\x26\xdd\xc3\x7e\x7e\x6b\x95\xad\xb7\x38\xf8\xde\x30\x5a\x0d\x5f\x65\x64\xc3\x58\x07\xb6\xa9\x49\xc2\x1a\xd0\x68\x44\xf8\x32\xca\xde\xf3\x02\x9f\x03\x53\x54\x43\x21\x74\xdf\x50\x0b\xe6\x28\xaf\x37\x26\x47\xe5\x4a\xb8\xe6\xa1\x06\xd0\x57\x07\xd4\xfd\x58\xb0\xfa\x23\x03\x55\xc1\xac\xa4\x5d\xd6\x9d\x09\x8e\xaa\x26\x84\x88\x4e\xd7\x19\xe6\xe4\xbf\x4e\x72\xd4\x23\x57\xe1\x8b\x2e\xed\xb7\x6f\xab\xce\x35\x20\xd1\x2e\x7e\xfe\x25\x2e\x43\x0b\x90\x15\xb7\x50\x7e\x38\x42\x20\x0c\xd8\x59\x89\xfc\x7a\xbe\x0c\x6a\x15\x6e\xba\x94\x9d\x16\xa6\x2f\x70\x4d\x80\x69\x51\x41\x4b\xa5\x8c\x22\xbd\x4a\xfb\xef\xfc\xf2\xc6\xf2\x16\xdd\x12\x82\x3c\xec\x30\x40\x46\xf6\xaa\x4b\xd2\xe1\x83\x6c\x7a\xf8\x6a\x27\xde\x51\xf0\xd3\x16\x08\xca\x26\x75\x23\x48\x0a\xae\xdd\xa7\xa5\xee\x0b\x25\xe4\x31\xc4\x5d\xb6\x7c\x36\x8d\x9a\x63\xa9\x30\xb0\x7a\x08\xea\xe1\x57\xde\x54\xe0\x48\x26\x72\x00\xcd\x2c\x79\x9f\xfa\x9a\x89\x4a\xd9\x89\x09\x37\xe7\xef\xce\xfc\x70\xb9\x2c\x56\x6b\x04\x9e\x4f\xcb\xdc\xb1\x0b\xae\x96\xc5\x96\x68\xe4\xbc\x47\x61\x1c\x44\x2f\x0d\x36\x4d\x86\x9d\xb4\x4f\xb1\x3a\xfd\x52\xa7\x36\xcb\x20\x80\x37\x42\x11\x54\x4c\x44\x70\x45\xaa\x9b\xb5\xea\x14\xb9\x66\x42\x0e\x88\xcb\x85\x5f\x7c\xd0\xe0\x25\x63\x43\xc2\x7c\xb8\xaa\x92\x15\xa0\x93\xb0\xf3\xb5\xa7\x76\x0c\x92\xf0\xd6\x7e\x15\x41\xa7\x42\x5b\xf1\xa3\x2f\x25\xf1\xd0\xf3\x4a\x0d\xf1\xf0\x7b\x92\x67\x47\x85\x02\xc3\xa2\xb7\xb0\xa3\x59\x62\x60\x42\x9f\x82\xdf\xa3\x03\x3c\xfa\xa6\xd2\x10\xa5\xd6\x26\xb6\xc7\xa7\x88\xd9\x3b\x5e\x95\x6b\x46\x44\x19\x6c\x74\x4d\xfc\xac\x5d\xee\x4d\x39\x86\x45\x7f\x9c\x9b\xf0\x8c\x94\xf6\xd6\x1d\xca\x9d\xb9\x6f\xdc\x00\x69\x2e\x01\x88\x4f\xe9\xc0\x3f\xec\x93\x84\x39\x4b\x56\x07\x9a\x7c\x5f\x5a\x02\x6b\x46\x0b\x9b\xcd\xbf\x38\x4f\xf4\x0e\x3e\x4e\xd3\xd8\x27\x86\xa5\x3b\x44\x3e\x09\x6c\x57\x55\x09\xd4\x96\xb4\xaa\x4c\x39\xda\x3f\xa1\x9e\x74\x2f\x31\x3e\xc7\x22\xec\x18\xb8\x11\xdd\xb3\xf3\x94\xe4\x1f\x62\xc5\x3d\xcc\xd3\xa2\xf7\x59\x06\x34\x0a\x74\x14\xc5\x13\x67\x78\xc8\x7c\x21\xdc\x7d\x51\x9c\x5a\x3d\xe8\x6c\xee\x5c\xa4\xf6\x20\x20\xa0\x05\x3f\x5b\x65\xcf\x5d\x50\x3b\x63\x3a\x32\x20\xdf\xb8\xff\x7d\x4a\x95\x60\x23\x04\x8b\xa2\x66\xfa\x21\xe9\x34\x02\x25\x54\x07\xb4\xd4\x79\x7d\x8c\x74\x32\xbb\x79\x0b\x56\x1b\x21\x02\xd9\x31\x3b\xd5\x7c\xd5\x61\xf6\xff\x14\x29\xc7\xe3\xd3\x12\x82\xcb\x04\x30\x51\xa2\xcf\x5c\x52\x65\x07\x08\x2e\x7b\x8a\x1a\x6e\xf8\x07\x5f\x12\xa1\xa7\x46\xed\xd2\xbc\x78\xf2\x95\x8a\x92\x02\xa8\xc7\x51\x25\x73\xd5\x59\xd9\xd3\xce\x33\x51\xf4\xda\x1e\x38\xa9\xf2\xe0\xd7\x04\x88\x24\x79\xe6\x87\x25\xbd\x26\x2b\x88\xb6\x74\xf6\x0f\x97\xe2\x86\x31\x76\x21\xe1\x39\x40\xf8\xc2\xd2\x8f\x4a\x67\xbd\xed\x42\x1f\xf9\x3d\x08\x18\xe4\x3a\xb6\xb0\xda\xfa\xbe\x80\x20\xdd\x8c\x9d\x1e\x5e\x61\x1f\x89\x3d\x1f\x3a\x89\x02\xab\x36\x53\xc9\x46\x8a\x16\xac\xb1\x73\xe6\x37\x8f\x2b\x95\xa8\x65\x31\xa8\x28\x85\x0e\x8e\x78\x5f\xd4\x86\xac\xbb\x13\x9d\x65\x3a\x41\x54\x72\x74\xe6\x63\x6c\xd0\x60\xcd\x6c\x9f\x91\x2f\x84\x5f\xde\x93\x64\xd2\x16\xe5\x24\x64\x2f\xec\x52\x28\x54\xc0\x0a\x12\xed\xeb\xdf\x16\xc5\x9c\xb8\x12\x00\x2a\xdf\x2b\xb0\x18\x37\x2b\x6a\x23\xd0\xa8\x01\xc2\x04\x67\x4e\x19\x0d\xd8\x32\x50\xb3\xe2\x8e\x55\xb8\x4b\x6a\x20\x96\x10\x3d\x10\xf2\x1d\x4c\x5a\xfc\x9e\x2e\xd5\x42\xd0\x60\x92\x42\xd1\x33\xfa\xd2\x48\xd5\x27\xa2\x0a\x3d\x06\x5f\x88\x3f\x7a\xf0\x22\x49\x6d\x05\x07\x2e\xf5\x82\x88\x1e\xfb\xdb\x5d\x03\x24\x52\x47\xc0\x74\xa2\x32\x60\x98\xa2\xfd\x0c\x8a\xc8\x81\xbe\x24\x11\xd4\x9d\x1d\xf3\x82\x84\x41\xcd\xe7\x0b\xe1\xb7\xc6\xa9\x87\x0d\xb0\x2c\xe8\x94\x61\x8c\x1c\xfe\xa6\xe4\x20\x0e\xab\x88\x19\x42\x74\x67\x51\xd3\xc0\xd4\xbf\xbb\x91\x3a\xb1\x3c\xbd\x50\xc9\xd5\xb1\x6c\xde\xad\xbd\xff\x84\xe8\x1e\xc2\x68\x39\x64\xc7\x4b\xfa\xa2\xc0\xd7\xcd\x80\x2e\xf8\x3f\xcc\x16\xe1\xc5\x26\x51\x16\x3b\xc1\x68\x58\x37\x28\x31\x4d\xd1\x1e\xdf\x26\x89\xc4\x02\x0b\x78\xa6\x83\x2a\xb2\xea\x6c\xc6\xe4\x6a\xe2\xb0\xd3\x44\xc5\x78\x62\x91\x1d\xb9\x37\x3d\x74\xf0\x74\x60\xb3\xa1\xd6\xee\x8b\x0a\x91\x95\xee\x95\x73\x47\x1a\x73\x31\xcc\xe5\x9c\xc3\xb9\x63\xaf\x97\x9a\xb8\xd1\x99\xdc\x48\xd1\x19\xd8\x34\x20\x55\x7e\xe9\x26\x65\xe0\xec\x1a\x20\xca\x7a\x3f\x56\x00\xf9\xbc\x18\x36\x13\xd8\xa0\xa7\x91\x7d\x77\x53\x7a\x8f\x55\x90\x11\xb3\x13\x16\x2a\xba\xb1\x36\xb2\x8a\x01\xa1\xee\xa5\xe2\x89\xbc\xba\x3d\xbd\x5a\x08\xa6\x3e\x66\x32\xee\x39\x7b\xd0\x91\x78\xbb\x9d\x75\x1b\x13\xf6\xdc\x7c\x25\x43\xb1\xb1\xa7\xe3\x5a\xb4\x60\xd8\xfa\x7c\xee\x92\xa8\x76\x5a\xa7\xe5\x0b\x61\xee\xc4\x20\x79\x82\xeb\x51\xed\x89\x7c\x21\xbc\x66\x56\xba\x60\x0e\x1c\x5a\xba\xd1\xf9\x32\x9f\x18\xfe\xb6\x59\x46\x48\x38\x4c\x6e\x28\x73\xea\xa1\x6b\xa4\xf6\x05\xb1\xe3\x3c\x70\xe8\x07\x63\x94\x5d\xa5\x37\x0a\x52\x68\xfb\x7d\x45\x23\x10\x78\x1e\xfd\x01\x1b\xf3\x17\x47\x88\xaf\x5c\x13\x40\x18\x1d\x93\x02\x66\xc0\xbb\x40\x9f\xbe\xa8\x9a\x60\x97\x28\xb0\xb8\x10\x0e\x3b\x27\xe4\xd2\xcc\x8f\x47\x7f\x3b\x41\xc2\x34\x4b\x82\x7e\x54\x06\xe3\xf1\x7e\xa9\x5a\xa5\xd0\x9d\xf9\xe0\x80\x2a\x86\x18\x10\x41\x27\x2e\xcd\x67\xc8\x8f\xbb\xa1\x97\xa6\x96\xae\x7a\x5b\x72\xa3\x81\x0e\x61\x58\xce\x85\xdb\xd9\x71\x35\x17\x3b\x3e\x01\xba\x9f\x2f\x84\x4f\x5e\x48\x98\x28\xb8\x08\xe2\xa4\x72\xc4\x06\xb6\x43\xa6\xf2\xc2\x80\xb1\xc0\xff\xb0\x53\xe9\xc4\x5a\x3e\xf2\x03\x03\x32\xac\x6a\x77\xe6\xad\xbd\xd2\xb0\x17\x95\x01\xa1\xb6\xa5\xfc\x23\x3f\x72\x4e\xf4\x15\x02\xcb\x47\x36\xf0\x21\x93\xaa\x7c\x67\xa7\xb0\x6f\x06\x8d\x86\xe7\x19\xb4\x39\xfd\x1a\x4d\xec\x43\xcb\x63\x2e\xb2\x12\x80\x4e\x92\x22\xb5\x63\xd1\x8c\xec\x8f\xb7\x29\x48\x0a\x1f\xf8\xb4\x59\xc8\x23\x6f\xb6\xd7\xb8\x09\x4a\x9c\xf4\x4d\x6c\x21\xbd\x07\xdd\x35\xed\xa4\xdf\x90\x23\x23\x2e\x3c\x12\x5e\xf7\x7e\x4a\x39\x6a\xee\x5c\x79\xda\x50\xe8\xce\xdc\xf2\x68\xba\xb6\x84\x01\xc1\x2e\xa4\x2e\x53\x7c\x6d\xcf\xbb\x87\xbd\xcb\xdb\x2d\x2a\xa3\x25\x70\x70\xbd\xce\x7c\x54\x69\x59\xb3\x76\xa7\x8a\xfd\xec\xbf\xe5\x7a\xb5\x54\xb0\x50\xba\x92\xce\xd9\xa3\x53\x9e\x3e\x20\xca\x79\x69\x95\x33\xf8\x71\x41\x0d\x24\xd8\xee\x41\xef\xe0\xf6\x97\xc6\x29\x2b\xd1\xf1\x51\x39\xb0\x10\x50\x54\xf9\xc9\x63\xd2\x10\x88\x8e\xc2\x5f\x7a\x8f\xad\xbb\x2a\xf2\x74\xc8\x9c\x4c\xb3\x7b\x26\x29\xdc\x16\x82\x8d\x40\x87\x09\x14\x2b\x37\xe9\x95\xf4\x1f\x50\x57\x39\xe0\xe3\xd8\xf6\x3b\x3b\x92\x4f\xee\xb9\x43\x3a\xcd\x74\xd6\x4c\xe2\x4a\x18\xd0\x85\xac\xe5\x1f\x5e\xa3\xa8\xe5\xd1\x39\x75\x2c\x09\x18\xd7\x6a\xbf\x54\x48\x56\xb8\xe4\xc7\x4a\x6d\xe1\xf3\xad\xd7\x48\x5d\x21\x0f\x72\x6f\xa8\xcc\xb9\xe5\xc9\xd6\xf6\x31\x4d\xaa\x06\x3f\x97\xfe\x2a\x37\x4a\x85\x2c\x7a\x24\x88\xe1\xf6\x77\x8b\x8a\x96\x30\x76\x60\x5d\x14\x8d\xc7\x64\x32\x99\x4d\x01\x47\x74\xf3\x3d\x7c\x44\x59\xc9\xd0\xf1\xa1\xa3\x8b\x81\xd7\xa1\x0e\xc9\xba\xa8\x8c\x1d\xc4\x75\x20\xb3\x87\xc2\x91\xd2\x59\xe4\x06\x45\x8b\x02\xae\x93\x54\xf4\xf3\xfb\x64\xac\xb5\xc5\xc0\x72\xda\x8a\xa7\x53\x9a\xb5\x04\x38\x3e\x4d\x9d\xba\x6e\x52\xe8\x62\xc8\x80\xb1\xfa\x8e\x36\x75\x07\xd7\x5b\x43\x44\x0f\x50\x14\x5f\x1e\x19\x2b\x75\x74\xa1\xe3\x30\xc1\x4a\xed\xa3\x17\xfa\xf0\x84\x85\x69\x40\xe6\xc6\xbc\xaa\x60\x4a\x59\xdb\x80\x0e\xc3\xb4\xdd\x5b\x07\x48\x7d\x23\x13\x13\x46\x5c\x7b\x49\x01\xa2\x00\xc7\x40\x1c\x3c\xa8\xdd\xfe\xca\xb5\x3d\x64\x54\xc9\x20\x2b\xab\x8d\x1f\x22\x3d\x67\xd9\x57\x4a\xfb\xda\xa1\xe4\xbd\x4e\x6d\xa1\xab\x2a\xbb\x38\x16\x3e\x46\x55\xde\x15\xf8\xc6\x3d\x12\x98\x24\x20\xb1\xb8\xc5\x25\x06\xe5\x8c\xbe\x71\xee\xdc\xb4\x56\xcd\x91\xab\xe2\x4f\xbd\x21\xfa\xcb\x9b\x76\x8b\xb2\x10\x7b\xb4\x31\x90\xbb\x4d\x12\x2d\xf5\x5c\x4c\xcf\x96\xec\xdc\xc3\xc9\x76\x6a\x9d\x96\x8f\x7e\xb2\xea\x42\x3f\xa9\xd0\x8c\x9e\xf2\x77\x7b\x8b\x74\x03\x17\x2d\x54\x86\x8d\xa2\x3d\xf6\xe6\x01\x82\x2a\x5b\x89\xa3\xce\xb3\x1b\x1b\xe8\x4e\x94\x2b\x96\x80\x1e\xa7\x2a\xea\xd6\x34\xad\xa5\xd8\x62\xda\x9f\x5c\x72\x44\x49\x88\xeb\xb6\x0b\x7c\x93\x97\x1e\xe1\x9e\x89\x92\x00\x00\xab\xbc\xc3\x35\x1d\xc9\x91\xe3\xc6\x9e\x97\xe1\xef\xcf\xab\x16\x47\x54\x6b\x2a\x96\x6a\x7c\x67\x81\x22\x41\x0e\x3d\x0f\xc6\x9c\xb2\xec\x3f\xf0\xf1\xfa\x7c\x4c\x02\x3b\x0d\xab\x3e\x97\x9e\x03\xe4\x63\x6f\xbe\x9b\xc7\x4b\x86\xf6\xd8\x73\xf8\x24\x77\xc2\x09\x05\xfd\x14\x78\xc8\x81\x5e\x3c\x8d\x0c\xb7\x6f\x89\x71\x6d\x80\xd6\xec\x1a\x38\x2a\xaa\x94\xb8\x19\xcd\x94\x10\x18\xc4\x89\xbb\x7a\x94\x30\xf6\x19\x8a\x26\xf3\xeb\x13\x6a\xad\xc6\xf5\x33\x68\xbe\x40\x5e\xe5\xb9\xa9\xed\x9a\x20\x31\x80\x9a\x39\x2e\xd1\xda\x20\x20\x51\xf2\xcc\xbe\xbb\x50\xf2\xc2\xec\x74\xb1\x27\xbc\x30\xfb\x0d\x53\xa3\x8c\xc1\x84\x8a\xe9\x3e\x9d\xb1\x8d\x95\xf9\xcb\x74\x13\xe3\xc6\x9a\xf7\xad\xdd\xc2\x7a\xd8\xd1\xf3\x85\xb0\xe5\xac\x58\x98\x0e\x66\x71\x55\x9f\x3e\x46\x49\x2c\x75\x13\xf0\xd6\xad\xe8\xff\xfc\x6d\xd2\x60\x19\x68\xa1\x47\x95\x21\x25\x63\xb4\x1e\x48\xff\xf3\x22\x24\x1e\x56\x51\x48\xda\xda\x5d\x29\x89\x0c\x9f\xd0\x36\x5b\xf4\x48\xee\x6c\x56\x27\xa3\xc5\xa0\x22\xac\x2e\xc7\x2e\x56\xda\x05\x24\x28\x27\x25\xc2\x1f\x8f\x29\x73\x4c\xe0\xd4\xe3\xee\x66\x78\x5a\x01\xf1\x58\x40\xaf\x70\xf8\xe3\x97\x94\x49\xaf\x89\x39\x46\x22\x86\xb2\xcf\x6a\xf0\xe9\x0a\x7c\xe4\x70\x5b\xa5\xf7\x66\x4b\x2c\x9b\x80\x10\xe8\xe8\x89\x32\x77\xab\x62\xdf\x6d\xc2\xa8\xe2\x64\x81\xfd\x91\xed\xaa\x34\x9e\x1b\x58\x71\x95\x3c\x54\xe9\xd5\x96\x70\x40\x1d\xfa\xd9\x74\x39\x73\xf5\x2e\x89\x94\x11\x10\x8a\x24\xc9\x8d\x3d\xcb\x16\xb1\x09\x2c\x16\x62\x2e\x2e\x12\x8b\xd8\xb3\xb0\xef\x20\xbd\x22\xda\x4f\xeb\x8b\x69\x0f\x22\x50\xd4\x79\x03\x32\x9d\x1e\xfd\x7f\xcf\xa4\x2f\x25\x3e\x2b\x39\x62\xe3\xdc\x52\x45\x01\x96\x50\x9b\xb2\x22\xf0\xe2\x3f\xd1\xde\x7b\x49\x5c\x07\x74\x7c\xe4\x5b\xb2\x8e\x87\x56\x65\x52\xdf\xf9\x65\x89\x1f\x90\x74\xac\x6e\x5a\x3f\x90\x6f\xc2\x80\x32\x9b\x78\xe3\xfb\x67\xa7\xd3\xdf\x6a\x40\x0f\x11\x40\xc7\x70\x1c\x56\xa5\x3d\xab\x80\x2b\xcb\x01\x24\x04\x59\x16\x88\x97\xc4\x45\x23\x01\x3f\xb9\x10\xa7\xd4\x00\x87\xaf\x1b\xaa\xa6\x84\x1e\x13\x1f\x0d\x3f\xed\x48\x9d\x4f\xec\xf8\x40\xe7\x10\x84\xda\x0b\x92\x62\x31\xa8\x5b\x0c\x0c\x96\xfb\xf8\xb1\xa4\xfb\xd7\x21\x59\x12\x76\x67\xef\xe7\x58\x5a\xcf\xc4\x35\x5a\x6d\xdc\xb9\xeb\x7a\x29\xa8\x3a\xb4\xad\xac\xbe\x8c\x81\x39\x81\xee\x45\xc2\x5c\x2b\x2c\x8e\xe5\xbe\xfc\xd8\x41\x3a\x90\xf3\x92\x6f\xaf\x90\x54\x8d\x09\x2a\x42\x06\x89\x5a\x2f\x16\x6d\x89\x72\x74\xc4\x91\xf6\x9d\xad\xb2\x9e\xb6\x08\x70\x6f\x5d\x27\x17\x69\xe5\x7c\x07\x74\x3c\x28\x8f\xd4\x3f\xa7\x28\x81\x98\xa8\x6c\x42\x2f\x86\xca\x5d\xb9\xfa\xea\xf8\x0c\x5d\x11\x0f\xa8\x77\x8d\x56\xd2\x78\x02\x7c\x58\x66\x72\xf7\x31\xbd\xe3\x3f\x96\x2b\xa0\x46\x60\x03\x45\xd9\xa1\x7d\x61\x83\xde\x9c\x07\x7c\x64\xc1\xc9\x79\x07\x3b\x30\x3a\x5d\x73\x2b\x4f\x73\x85\x95\x58\xf1\x36\x7a\x0c\x97\x1f\x94\x10\x50\x65\x07\x13\x4e\xcc\x7c\x5d\x4b\x97\x0f\xa0\x54\x02\x88\x78\x3d\xf9\x94\x66\x3f\x28\x4a\x85\x1f\xb4\x2c\xe8\xe7\x2d\x44\x87\xed\x17\xf6\xa7\x6f\xaf\x0a\x2c\x48\xea\xa9\xd4\x3d\x9c\xbd\x20\x31\xc2\xed\x92\x31\xfe\xed\x5d\x2c\x94\x2f\x46\x9e\x07\x1a\xcd\x80\xd6\x6e\x4d\x1f\x80\x26\x60\xaa\x4f\x5a\xef\x4e\xb6\x10\x96\xf1\x4e\xb5\xa8\x11\x26\xec\x61\x63\xab\xa9\xd3\xf3\x85\x70\xc9\x13\xaa\xc2\xb2\x4e\x27\x4b\x42\xba\x57\xd3\xe7\x24\xea\x78\x3e\xe0\x2d\x21\xed\x85\x7b\xd8\x53\x2c\x59\x38\x88\x85\x1d\xc2\xdf\x1e\x4c\x52\x19\x8e\x7f\xbe\x62\x98\xc2\xb7\x40\x24\xd6\xd5\x08\xdf\xfd\x40\x60\x06\xab\xb8\x61\x85\x0f\xb9\x27\xfd\x2e\xbb\xaa\x08\x18\xe9\x72\x27\x73\xdb\x63\x4a\x30\x27\xa0\xc6\x24\x70\xc2\xb3\xc7\x55\xe7\x46\x3f\x2e\xaa\xf9\x7e\x6b\x99\xd6\x34\xbd\x99\xe2\xa6\x3a\x25\x04\x86\x89\x09\x3f\xc1\x3e\x38\x92\x96\x6f\x42\x9e\xc7\x40\x7d\xd9\x61\xaf\x88\xd5\x52\x46\xb6\x8d\x74\x6a\x8c\x91\xfb\x2c\x49\xee\x7f\x6a\x13\xb5\xe2\x1c\xf1\xb6\x8c\x38\x20\x55\x58\x67\x63\xdf\x62\x51\x41\x23\x05\x3c\xd9\x09\xad\x15\xb1\xab\x0c\xae\x45\xc7\xf0\xe4\xa3\xe9\xc2\xd2\x40\x9e\xc5\xcc\x14\xb8\xe2\x8c\xb6\xa6\x5f\x02\xe5\x70\x4d\xd9\xcc\x37\xdb\xd1\x00\xaf\xb1\x28\xde\x99\x75\x8d\x8b\xb3\x55\x6a\x36\xd0\x2b\x49\x38\x1f\xd5\x5b\x3c\x94\xd8\xa5\x33\xfa\x57\x03\xcd\x51\x3d\x14\xba\xc0\x61\x05\x35\x6d\x66\xed\x5d\x2a\xe9\x7a\x36\x51\x31\xd1\xdc\xda\x50\x01\x9e\x5a\x16\x1b\xe9\xf7\x7e\x31\xdd\x4e\x8f\xcf\xa7\xb4\x50\xcc\xfa\x83\x4a\x4b\xb0\x4c\xa0\x84\x8e\x37\x24\xfd\xdc\xc0\x06\x0e\xf2\x98\xb6\xc6\x48\xa5\x6f\x6e\x40\x9d\xd5\x98\x6c\x76\x7f\xf6\x3d\xa9\x9d\x9b\x90\xf6\xa2\x74\x75\x4d\x6f\x75\xc4\xee\xf9\x7c\xe0\x3f\x66\x17\xdb\x90\x77\x22\xc3\xb0\x1a\xa9\x0e\xd7\x2f\x14\x8e\x63\x65\x0b\xf7\x68\x6b\x39\x30\x3d\xef\x99\xce\x45\x23\x46\x1e\x18\x9c\x42\xba\xd5\x13\xa5\xc4\xdf\x9c\x11\x51\xba\x13\x31\xaa\x5e\x1c\x20\x7e\x75\x59\xd0\x4b\x02\xba\x37\x4f\x5f\x14\x52\x78\x0c\x9f\xba\x5c\xfc\xa4\x8d\x9a\x17\x65\x9f\x7a\x2b\x59\x34\xba\xec\x0a\x9c\x79\xfb\x55\xa5\x91\xc1\xb4\xe7\x39\x73\x26\xca\x82\xee\xdd\x34\x40\x4e\x16\x59\x81\x97\x99\xc9\xd1\xdf\xb2\x97\x01\xd7\xd7\xa0\x88\x3e\xde\x55\xfd\xd5\x8b\xaa\x1f\xb6\x55\x89\x57\x72\x66\xfb\x8d\x03\xa4\x64\x12\xbb\x54\x7b\x43\x53\x2c\x58\x4b\x80\x59\xd7\x87\x7f\x3d\xad\xa6\x80\x54\x7e\x9d\xfe\xee\x4f\x17\x07\xf1\xfa\x53\xc7\x0e\x03\xc2\x32\x55\x4f\xfd\xc6\xde\x71\xae\x1a\xfd\xe7\x86\x2b\xd9\x55\x93\xa0\x54\xe2\x66\x2e\xff\x3e\x56\xd1\x29\xc4\x16\x35\xc8\x88\xb7\xdb\x2f\x8f\xc9\x61\x3e\xba\xc8\xa6\x78\xe1\x5f\xb9\x59\x2c\xfc\x4a\x13\xeb\x58\x7c\x6d\x9c\xa4\xae\x0c\x0d\x43\x16\x22\xcd\x3e\xbe\x58\x31\xda\x4b\x44\xf5\x7b\xa0\x9c\xcf\x7b\x51\x3c\xf7\x3a\x70\x2a\x34\xd9\xd3\x2e\x1f\x16\x75\xe6\x84\x3a\xc3\x03\xbd\x51\xe5\x1a\xc6\x81\xe7\x22\x1d\x71\xb1\xf8\x69\x45\x25\x7b\xa5\x78\x39\xcc\xdc\x29\xc3\xb9\x6d\x12\xd4\x83\xd9\x1e\x32\x3b\xec\xe0\xe9\x86\x41\x2e\x66\x6c\xfa\xf0\xc7\xdc\xcf\x76\x6e\x0c\x96\x65\x7e\x1e\x5a\xcb\x5e\x05\xc0\x0d\x89\xcd\x9b\x3a\x57\xef\x14\x61\xc5\x25\xd0\x46\xac\xb1\x93\x9d\x2f\xd9\x61\x94\x80\xa3\x73\x23\xba\x63\x8f\x2b\x6d\x03\xa3\x9c\xd4\x00\x5a\xc7\x82\xf4\x9b\xea\x0c\x52\x1d\xed\xdc\xf5\x47\xd2\x1e\x09\xb4\x7c\x63\xf3\xfd\xae\xa3\xc3\xd2\x78\x0e\x59\x47\x6c\xfb\xab\x4a\x60\xa4\xc4\xf7\xb8\x54\x7d\xc5\x49\x32\x2f\x2c\xd9\x86\x86\x9d\xe3\xe5\xfc\x0a\x82\x4a\x10\x15\x94\xdf\x5b\x77\x83\x52\x32\x98\xdc\xd0\x5d\x7d\xbd\xfb\x46\xaa\xeb\x5c\xe7\xfc\x86\x23\x63\xd3\xc0\x1d\x44\xf7\xc5\xd3\x4f\x28\xf4\x2f\x04\xcb\x98\x75\x4d\xe9\x00\xfe\x78\x28\x1f\x3d\xb6\xcd\xe8\x80\xdd\x99\x13\x6f\x4a\x5c\x5d\xa8\x5b\x80\x24\x44\x7b\xed\xe0\xab\x6a\xed\x5a\x45\x92\x99\xe8\xa2\x47\x25\xeb\x04\xec\x78\xd1\x32\x89\x1e\xc9\x9d\x47\x1b\xf4\x89\x63\x20\x1a\x3b\x6a\xc6\x4e\x54\x09\xd5\xc8\xd1\x4d\x3e\x74\xfa\xfe\xbe\x6b\x95\x4a\xcf\xd3\x11\x25\x5e\xb2\xfc\xe3\x81\x15\x23\x18\x04\xd3\x46\x9d\xd0\xa0\x28\x4c\x39\x45\xdf\xb5\x9b\x63\x69\x3c\x17\x38\x75\x6c\xc5\xf7\x32\x64\xde\x35\x71\x84\x4b\x55\x19\x0f\xac\x53\x0a\x4b\x84\xb9\xd7\x36\x5d\x71\x2f\x2e\xe8\x2b\xb2\x92\xe8\x39\x67\x9f\x56\xd4\xcc\x80\x85\x4a\x98\x38\x08\xa8\x83\xf7\xdc\xe2\xc7\x78\x0c\x2c\x06\x1e\x97\xfb\xf8\xcb\x02\x55\x23\xc8\xb2\xb8\x8a\xf2\x95\x2f\x8d\xae\xa9\xad\x19\x9f\x04\xb4\xfc\x4f\xba\xa4\x7d\x36\x33\xe0\xea\x52\x58\x77\xb0\x65\xc8\x56\x54\x0f\xbc\xd9\x80\x3a\x85\x9c\x5b\xcc\x4e\xaa\x3d\x0a\x6e\x8d\x21\xab\xf9\xbb\x6c\xdd\xa3\xf4\xf9\xb0\x17\x1f\xa8\xe1\x6b\x73\xd2\x6f\xa4\x65\xe6\x34\x66\x3a\xcd\xc7\xe2\xb0\x37\xbb\x4f\x2b\xda\x4f\x8c\x18\x37\xfe\x9d\x84\x71\x33\x75\x66\xbe\x10\x7e\x7e\x1b\x97\x59\x81\xa5\x28\xe7\xe0\x8e\xbe\x77\x9d\x1e\x20\xfc\x34\x12\x12\xe9\x2d\x7b\x54\xe9\x4d\xe2\x08\x7f\xf3\x93\xc7\x44\x9a\xd8\x78\xde\x6a\xdb\x96\xb2\x41\xb1\x09\x69\x7e\x92\x79\xf6\xb0\x02\xed\xb0\x5c\x13\xf0\x7b\x3e\xad\xd0\x63\x60\xb9\xee\xfa\x31\xd8\x26\x5a\x33\x8f\x0f\x19\x20\x01\xfd\xa3\xd2\x2b\xfa\xc8\xb5\xcd\x62\xc2\x45\x4f\x97\xcc\x76\x65\x50\x42\xed\x90\x61\x8c\x33\xd5\x46\xf5\x52\x25\x14\x81\xcb\xa1\x0c\xd9\x93\xad\xa2\x06\x76\x01\xd1\xa1\x65\xc9\xc6\x7e\xf7\x9e\xe3\xbe\x83\xc0\xa7\xf3\xc2\x8c\xb6\xa2\x2f\xcf\xe3\xb9\x75\x47\xd6\xd6\xae\x57\x8e\xd0\xba\xa3\x78\xad\x64\x5e\x59\xa0\x3a\x27\x54\x91\x0e\x63\xdc\xd0\xa7\x07\xb1\x14\xa6\x40\x0d\x48\x54\x92\xf5\x9a\x11\x72\x8b\xda\xf3\x20\xf1\x19\xbf\xe0\xa7\x0b\xd8\xa3\xee\xc0\x45\xba\xab\xcf\xaf\x4d\xde\xa6\xe7\x27\xb3\xa5\x75\x8b\x04\x57\x93\x37\xa3\x55\xc0\xce\x67\x8e\x4a\x48\x1a\x2a\xf0\x1e\x6d\xb4\xff\x58\xc7\x2a\x96\xc5\xb0\xe4\xc3\x32\x16\x72\x0c\xff\x38\x49\x51\x9e\xf7\xc7\xfb\x54\x1b\x2a\xbd\x12\xfe\xb6\x49\x0e\xf7\x58\xb7\x00\xb2\xb9\xfc\xe8\xf7\x77\xa4\x1f\x07\xb4\x21\x89\x0e\x12\xa6\xef\x37\xe6\x3d\xe5\x61\x11\x50\x16\xbf\x1d\x75\x46\x1c\x15\x10\x78\x7e\xaa\x44\x7e\x54\xe1\x83\x3a\x13\xe2\xc9\x53\xe6\x4f\x43\x04\x68\x09\x36\x0e\x9b\x76\x8f\x16\xaa\xd4\x72\x3b\x20\xf3\xef\x8a\xe5\x57\xec\x51\xc3\x30\x41\x85\xfe\x13\xd4\x8c\xc1\x05\x4e\x8f\x09\x43\x6e\xfc\x06\x91\x8e\x98\x0c\xe4\x9b\xeb\x77\x0f\xb7\x6b\xe3\x0c\xba\x7c\x21\xbc\x72\x07\x7b\xad\x15\x07\xd3\x78\xfb\xb9\x53\xaa\xc8\xa7\xc4\x30\x43\x9d\xc9\x5d\x45\x09\x48\x03\xf8\xfc\x65\x25\xc7\x00\xce\x6a\x20\xe4\x1c\x6d\xc9\x6b\xd7\xc4\x01\x75\x83\xee\xdb\xc6\x5b\xae\x90\x42\xd5\xc2\xd7\x0e\xa8\xfa\xb7\xb4\x64\x64\xdd\xea\xad\xad\x1f\x8e\x7e\x36\x25\x5f\x58\x29\x04\x46\x30\x85\x2f\xc2\x86\x8a\x5c\x7b\x49\x31\x11\xc4\xbe\x19\x9d\x82\x71\x64\xd9\x2c\x9b\x7f\xe8\x6b\x02\xe4\xfb\x80\x5e\xc2\xff\x6c\x8e\xa7\x4c\xcc\x3a\x31\x7a\x2a\xc7\xf7\x29\x77\xc6\xe6\x33\x31\x75\xe2\x4e\xa2\xa0\xb8\x03\xcf\x42\x94\x5c\xa7\x36\x5f\xbf\x3c\x9a\x07\x2c\x36\xf8\xd1\x1c\x89\xc3\xee\xd7\x09\x31\x21\x6f\x56\x6b\x1d\x21\x17\xe8\xc0\xc4\xc0\xb2\x81\xfa\x17\xb6\x8f\x54\xf2\x2b\xcf\x47\x36\xa6\x4d\x4e\xba\xde\x5b\x86\xa8\xcd\x53\x03\x07\xc5\x58\xcd\x38\xdb\xec\x4b\xc6\xd1\xb4\x39\xb5\x4a\xea\x34\x17\xeb\xa9\xc1\xc6\x26\x09\x34\xaf\x43\xc7\x0f\x18\x27\x33\xb3\x7f\x9b\x78\x97\x56\x5d\xa7\x2e\xd7\xda\xae\xde\x8a\xf8\x12\xd5\x0d\xe6\xa0\x89\x2f\x9d\x63\xa1\x8c\x11\x27\xa9\x52\xdd\x4e\x11\x6a\xf2\x45\x4c\xe2\x69\xc1\x37\x9f\x10\xd6\xf1\x92\xa7\x66\xd8\x3e\x50\x25\x2f\x51\x2d\x43\xfa\xf1\xdd\xb9\x4f\x1f\x60\xc7\x52\x3b\x93\x1e\x8e\x7e\xb4\xbe\xf7\x75\x6a\x09\x0c\xbd\x34\xec\x61\x74\x3a\x96\x3b\xd0\x47\x6b\x02\xe8\xc7\x6e\x85\xa3\x76\x48\xbd\xf2\x4a\x14\xa6\x42\xb6\x5e\x6f\xbb\xeb\xf6\x79\xb7\x46\x37\x71\xba\x3a\x54\xad\x4d\x01\x4b\x77\xc3\x47\x9d\x61\xea\x41\x40\x20\x0b\x10\xe1\xd6\xf3\xca\xa9\x07\x4b\x38\xf9\xe5\x0d\xcd\xe2\xe1\x4e\x8c\x4f\xa7\x89\x43\xd4\x9b\xe1\x08\x2e\x1c\xb7\x83\x7f\x7a\xfa\x86\x86\xad\x5b\x05\x5d\x3d\x08\x3b\x5f\x75\x85\x52\x87\x61\x62\x19\x7c\xf9\x64\x3a\xf7\xab\x09\x70\x40\x74\x93\x8b\xb6\x69\x07\x0e\x4b\x0b\x02\x5b\xd8\xf3\x58\x7d\xf1\xe6\xa1\xd8\x22\x90\xb6\x19\x98\xb4\x7c\x76\xfb\x96\x21\xa2\x18\x4d\xf1\x01\x3a\x5f\x57\x26\x9e\x41\xd1\x46\x8c\x1e\xcd\xd2\xca\xde\x92\xb8\x50\x35\xfa\xd0\x22\x80\x15\xda\x55\x79\x9c\xed\xcf\x05\x81\x63\x10\x48\xa9\xc6\x5a\xf7\x19\xb5\x62\xb7\x5d\x56\xa5\xbc\xf3\xbe\x34\x13\x87\x04\x7b\x2e\x23\xaf\xe7\x1e\x3e\x21\x97\x3c\x55\x60\x21\x0e\x84\x38\xb7\x39\x99\x60\x81\x72\x6c\x79\xf3\xa7\x41\x02\x49\x21\xac\x7b\x8e\x9e\x50\x5c\x96\x4c\x42\x25\x01\x68\xab\x29\xbb\x71\xb4\xaa\xdb\xa3\x57\xea\x1c\x6b\xd6\x9d\x1b\xbc\x65\x98\xfa\x00\x28\x0e\x7b\x4a\xbe\x10\xfe\xe7\x6c\xc5\x0f\x0c\x13\x26\xf5\x4b\xed\x6f\x6e\xcc\x17\xc2\x11\x8b\x44\x61\x59\x46\x69\x39\xa8\xec\x17\x95\xa2\x19\x20\x5e\x34\xff\xcf\x7c\x91\xc2\x57\xb0\x0b\x2d\x9b\xc9\xae\x98\x45\x75\x9e\xca\xcd\x8d\xb8\xd9\xd2\xf7\x14\x0b\x12\xdf\xc4\x81\x07\x1c\x23\x81\xcd\xe2\x7d\x8a\xc1\x08\xb0\x40\xdd\x43\xa0\x47\x1b\x89\x31\x6f\x24\xbc\x5d\xdd\x48\x79\x76\xdc\x5d\x1c\x58\x44\xc0\xcb\x2f\x27\x81\x28\x94\xff\xfe\xaa\x1a\xce\x6c\x40\x2a\xc9\x4c\xbd\xf7\xd6\x24\x5a\x38\x48\x82\x3d\x69\x39\xa9\x9f\x50\x86\x8e\x4f\x25\x9c\x73\x13\x46\x8a\x3a\xda\x42\x6b\x02\x44\x07\x09\x97\x9e\x54\xab\x63\x82\x5c\x37\x41\xb3\x4d\x7d\x45\x61\x90\x47\x47\x03\xcb\xe9\xc2\x83\x2b\x24\xa0\x17\x74\x3c\xa6\x79\xb7\x6a\x3d\xeb\x7e\xcc\xc7\x96\x85\x6b\x4c\x71\xc5\x19\x2b\x6a\xaf\x80\x40\x59\x96\x3c\x73\xcd\x2a\x69\x62\x8d\x2d\x0b\x90\x44\x0e\xfb\xab\x45\xb1\x82\x6b\x10\x56\xf2\x7c\xa6\x90\xf9\xf1\x28\x49\x6d\x06\xfa\x04\x77\x81\x2a\x36\xa8\x00\xff\x0f\xd7\xa5\xe1\x1c\xa0\x03\x74\x72\xa4\x42\x3a\x19\x1b\x73\x7a\x20\x4f\xc4\x5c\x97\xc4\x02\x5e\xdd\xda\x23\x8f\x8a\xcd\xe1\x22\x9f\x72\x00\xe8\x7d\xbd\x76\x58\x61\xc3\x60\xc3\x88\x93\xa5\xec\x5f\x72\x2c\x04\xdf\x5a\x2a\x61\xe6\x68\x92\xbd\xe7\xac\x6a\xbb\xe4\x44\x05\xb5\xe2\xd2\x35\xe3\xf2\x10\xa9\x5a\x2d\xba\x18\x3a\x80\xe7\xbb\x37\x5e\x1e\x28\xa1\x7b\xb9\xc0\x6f\x98\x5f\x24\x1e\x3a\x75\xe2\x8a\xde\xc4\xf7\x1e\x17\xab\xbb\x8e\xfc\x2e\x13\x54\xee\x8f\x3e\x62\x54\xd3\x20\x39\xe9\x06\x3e\xc1\x38\x0a\xb3\xbf\x5a\xa4\x54\x48\x0e\xb0\xea\x1e\x97\x46\xdb\x7e\x1f\x3b\xae\xa8\xa3\x10\x4d\x78\xeb\x8f\x89\xa8\x8c\x6c\xd6\x25\xfe\x9d\x7b\x0d\xcf\x38\x21\xf5\xe6\x40\x4c\xc3\x2a\xd7\xab\x4f\x3a\x58\x97\xa1\xc3\x71\xb8\x4d\xbc\xae\x6d\x5b\xd9\x60\x25\x61\x43\x86\x59\x89\xde\xed\xbf\xbc\x9a\xc4\x9b\x72\x90\x18\x7f\xfd\x51\x95\x5e\x75\xa3\x78\xc0\x74\xa6\x3e\xcb\x0d\xc9\xa9\xef\x71\xbe\x10\xde\xb1\x28\xbd\xa7\x29\x2b\x5c\x4f\xdc\x28\x3d\x05\x18\xd7\x11\x14\x81\xc8\xd5\x32\xae\x42\x3c\x58\x13\x60\x1f\xb0\xa9\xff\xbe\x0d\xec\xc9\x78\x2e\x60\xc8\x33\x6d\x40\x97\x22\xd0\x0a\x09\xc1\x04\x79\xf1\xa5\xf5\xdd\xaa\xb0\x80\x5c\xd7\xe2\xc6\x7c\x5e\x0c\x92\x05\x4f\x09\x4a\xa2\xd4\xe1\x0c\xdf\x59\x10\x2b\x78\x44\x9f\xca\x9a\x74\xbf\x78\x9b\x53\x43\x81\x0b\x2d\x4b\x26\xf2\x1f\x1d\x28\x0b\x94\xd5\xea\xb4\xbf\x14\xfe\xcf\x0b\x8a\x14\x09\xaf\x85\xc2\x7e\xdb\x14\xcc\x17\x75\x76\xe2\x41\xef\xd9\xae\x86\x03\xd7\x86\x44\x47\xc0\x8a\x45\x88\xcb\xe3\x95\x66\x61\x80\x2c\x43\xc8\xba\x75\x69\x9c\x76\xda\x59\xc3\x84\xb1\x93\xe2\x42\xef\xb6\xa3\xd2\xb4\x38\x2e\x55\xf8\xa3\x6f\x52\x38\xda\x15\x08\xdd\xd8\xd4\xa5\x3b\xf7\xf0\x5a\xc5\x1e\x14\x05\x16\x02\x0e\x9a\x2c\x79\xdb\x64\x16\x2e\x15\x64\x3e\x1b\x94\x99\x26\x41\xbc\x8a\xb4\x4a\x35\x69\x72\x04\x4c\x7d\x60\xd8\x39\x95\xa4\x4d\x48\x74\x1c\xf2\x99\xc9\x96\xe5\x12\x03\xbd\x86\xf3\x0c\x1c\xf2\xa9\x17\x64\x90\x8c\x5d\x64\x1a\x94\x3f\xd9\x96\xde\xf0\x1e\x0e\x7c\x53\xc5\xc7\xcf\x1e\x11\xdb\x88\x5a\x81\x5d\x0c\x62\x04\x68\x76\xa3\x92\x14\xe8\x04\xf9\x48\x47\x9e\xed\xf1\x14\xe7\xb5\x7d\x9c\xeb\x88\x48\x7e\x4d\x00\x2c\x6e\x21\x3c\x42\x69\x67\xb8\x80\xf8\x1e\x85\xdf\x15\xba\x73\x8f\xbe\x2a\x79\x87\x04\x4c\xa6\x90\x4d\x72\x5e\x6b\x66\x2b\x79\x6a\xcb\x94\xb6\xe9\x94\x0f\xd8\xb6\x4e\xfc\x2d\x8c\xdf\x38\x7d\x44\x07\x9f\x12\x9d\xd6\x3c\xa4\xe4\xb6\x9f\xac\x52\x95\x98\x2d\x0b\x82\x72\xc0\x81\xf9\xd9\xcb\x87\xa4\x1c\x39\xd0\x19\xb2\xe1\x86\x49\x32\xe1\x8e\xc3\xf3\x99\x35\x5c\xf6\x6f\x23\xd3\x51\xbb\x66\x22\xdd\x8c\xee\x5c\xed\x16\xae\x3f\xa9\xce\x76\x6c\xda\xf8\x61\x0d\x9c\x27\x4f\x71\xd5\x75\x5a\xbe\x30\x3c\xc7\xe7\x18\x7c\x30\x7f\xbb\x70\x05\x68\xf8\xd4\x39\xe7\xc5\x2d\x26\x86\xce\xa7\x68\x15\x62\x41\x27\x3f\x53\x56\x95\x1c\x30\x52\x31\x5e\xc5\xc4\x63\xed\xbe\xec\x03\x27\x07\x4b\xe0\x9b\x4e\x6e\x74\x4a\xb5\x1d\xb7\x4a\xbf\x41\x65\x69\x3f\xac\x7c\x6a\xa8\xd4\x27\x27\x54\x99\x27\x36\xcc\x1b\x25\xa1\x44\x6c\xa6\xab\x1a\xab\xd9\xdd\x33\x54\x96\x60\x73\xa0\x94\xd9\x1f\xdf\xa8\xca\x18\xba\x16\xae\x73\x37\xea\xbb\x36\x2b\x5c\x40\x31\xb0\x65\xd1\xf1\xc2\x21\x76\x92\xdd\x96\x18\x3e\x65\x96\x3e\x3d\x48\x9e\xcf\xf8\x20\x28\xd2\xe4\x29\x37\xf7\x0d\xf5\x65\x04\x8e\x9f\xd0\x33\x32\xdf\x3d\xaf\xb8\x1c\x60\x9c\x6a\x54\x6b\x7f\xee\x50\x41\xc0\xa4\x4a\x2b\x10\xca\x96\xaa\x2f\x94\xc4\xc7\x63\x8f\xc3\xb0\xd2\x47\xf4\x91\x08\xf4\x30\x91\x1b\x13\xe1\xb1\x2e\x3e\x45\x34\x11\x2c\xe5\x0b\xe1\xd4\x89\x0a\xd8\x12\xea\x3e\xab\xab\x79\xb7\xe2\x9b\x12\x3a\xc0\x27\xa0\x4c\x71\x7c\xe1\x57\xae\x10\x48\xb4\x99\xad\xd3\xa2\x07\x37\xf9\x7d\x05\x11\x41\x7d\xe1\x68\xc2\xae\xdd\x71\x8c\x55\x00\xc0\xf2\x21\x71\xb8\x24\x43\xee\x91\x8d\x82\x8c\x01\x8d\x00\x10\x43\x8a\xd7\xd9\xf5\x03\xd3\x2f\x02\xd8\x2c\x55\x15\x59\x9c\xd5\xcc\xbb\xaa\x8e\x6f\x12\x40\x81\x98\x5d\x26\x57\xc4\x0b\x8a\x8e\xcc\xa4\xda\x39\xb2\x87\x2c\x96\xd6\x47\x0c\xec\x3d\xb4\xbf\x08\x63\xba\x89\xd9\xa2\xcc\xfc\x78\xfd\x08\x09\x0a\x69\xc1\x32\xf0\x65\xb7\xb8\x29\x17\xd2\x67\x87\x01\x7c\xc0\xc0\x39\x95\xb7\x98\xfb\xcb\x12\x82\xaa\x2c\xba\xa6\x8b\xac\xbe\x52\x7c\x6c\xc9\x73\xb1\xcc\xee\xdc\x75\x1b\x44\xbe\x0a\xe4\x81\xed\x4b\x5d\x52\xce\x15\x3d\x27\xae\x0f\x9d\xbb\xf2\xac\xd8\x97\x4d\xad\xd3\xa7\x46\xcf\xe0\x0d\x05\x60\x55\x02\xa0\xb1\x29\x96\xa9\x0c\x1a\x24\xb3\xe8\xa9\xee\x2f\x0d\xd2\xe7\xe5\x21\x5e\x11\x33\x9f\xf1\xee\xe6\x7e\x12\xe2\x83\xfa\x6d\x2c\x56\x80\x79\xc0\x40\xd0\x6b\xe2\x80\xa9\xaf\x29\xa8\xce\x32\x11\xbe\x09\xb9\x8f\xae\x60\x91\x7a\x21\x24\x48\x37\x71\x5c\x31\x5d\x7a\x49\x6a\xd3\x61\x9f\x91\x8d\x19\x52\x3c\x78\x9b\xbb\x96\x77\x81\x8a\xf4\x5c\xb2\xeb\x5e\x50\xe9\x5f\xba\xd9\xc4\x32\x15\xea\x99\x36\x4b\xac\x52\x13\xd9\xf9\x42\x38\xf0\x26\x05\xf3\x1f\x10\x2f\x10\x5e\x52\x9f\xb7\x44\xd4\x20\x41\x11\xca\xbd\x95\x5d\xdb\x6f\xa8\xf5\xd0\xc1\x70\x1a\xc9\x72\x3f\xbd\xa4\xea\xd6\xfb\x26\xb4\x41\x74\x5c\x01\xa6\x0e\xae\xfd\x73\x55\xac\x37\x96\x27\xd3\x24\xb9\x57\x72\xfa\xb6\x37\x47\xd9\xc9\xe5\xbd\x42\x59\x32\x1f\xed\xb2\x4c\xbf\x91\xc9\x12\xf1\x2b\xa9\xa0\x76\x32\x89\xc6\xd3\x64\xc1\xa3\xaf\x2d\x91\xac\x16\x30\x72\xfc\x7c\xd1\x02\xb4\x5f\x71\xf8\xc6\xeb\x64\x71\x1f\x0a\xd7\xf0\x53\xff\x74\x69\x3a\x36\x38\xa8\x0c\x29\x11\x3e\x81\xcc\x15\xc5\x67\xd7\x00\x89\x76\x7c\x9c\xa9\x7c\xec\x90\xd2\x90\x01\x81\x0f\x13\x0c\x01\x19\x2f\x4a\xd4\x4a\xa0\x43\x49\x7a\xb9\x3b\x97\x1f\x29\x36\x07\x87\xdc\x50\x74\xd1\x73\xa2\xcc\x26\x7e\xfc\x8a\x27\xf4\x13\xcb\xd8\x73\xb1\x6f\x71\x96\x67\xa6\x69\x41\x5f\xe1\x62\x64\xe5\x0b\xe1\x5d\x3b\x93\x06\xa5\xeb\x36\xa0\x4a\xb2\x4b\x99\x37\x62\xfe\x6e\x6a\x3e\x67\xcb\x3e\x04\x93\x1f\x65\x8d\xb9\x96\x99\xed\x54\x44\xec\x53\xdb\x59\x97\x7c\x29\x32\x0c\xd8\xa0\x6d\x99\xdd\x71\x63\x7a\xed\x07\x2e\x89\x2e\x8a\xf5\x48\xde\x99\x22\x5e\x3c\x0e\x7c\x8b\x72\xc4\xb4\x57\x87\x24\xbd\x10\x1b\xb8\x69\xe1\xfd\x15\x6a\xde\x03\x0d\xe4\x63\x92\x60\x1a\xdf\xed\x4a\xc7\x5d\x02\x3d\x3d\x60\x3d\xaa\xec\xdf\x8f\x72\x3f\x4b\x48\xed\x22\x5f\x96\xf8\xbf\x1e\xb6\x68\xe4\x5b\xfe\x8a\x92\x94\xd5\xa0\xe3\x61\x27\x0d\xed\xd7\xe6\x3c\xa8\x70\x34\xf3\x9e\x89\x48\xac\xec\x9d\x09\xfa\x4b\xc2\x2a\xcc\x15\x76\xaa\xd2\xfc\xaa\xe3\x20\x6e\xd6\x66\x7f\xbf\x93\x25\xe9\xb1\xbf\xa2\x64\xbb\x3c\x4e\x30\xd3\x98\x33\xf7\x7f\x6b\x4a\x55\xc9\xa0\x85\x8c\x74\xfe\xd9\x27\xc4\x08\xa8\x51\xfa\x31\xfb\x9b\x55\xec\xd8\xb1\x90\x8d\x04\x2f\xf1\xe5\x75\x0a\x6f\x09\x51\x8d\x5c\x3d\x2e\x7f\xfe\x4b\xbb\x46\x1a\x73\xb8\x01\x35\xb2\x2c\x84\xcf\xf5\x56\x00\x85\x18\x93\xbc\x8f\xe9\xff\xf2\x19\xf6\x5d\x9d\x2c\xb0\xcd\xb9\x65\xf1\x6d\x77\x14\xee\x88\xf7\xc2\x8f\xac\x11\x8d\x8f\x22\x01\x31\x67\xfe\x38\x3b\x51\x19\x72\x50\x43\x19\x9e\x5b\xab\x08\x90\x11\x68\xd4\x30\x8e\x01\x4f\x34\x72\x9e\xee\xa7\x52\x2a\x98\xef\x7f\x1c\xd7\x72\xd7\x9e\x18\x22\xa9\x32\x38\x0e\x4c\xf8\x1f\xb9\x6b\x39\xc4\x7d\x19\xb6\x21\x66\xaa\x35\x7f\xea\x90\xea\x6a\x44\x80\xce\x34\xff\xe6\xbc\xa9\xea\x2c\x3b\x0a\xe6\xf7\xc3\xeb\x53\x63\x60\x40\x74\xc6\x65\x6a\x5a\xaf\x48\x04\x41\x60\xac\x09\x00\xa1\x5e\x06\x51\x9c\xeb\xb5\x55\xd1\x5c\x2d\x95\x90\x01\xaa\x88\x4b\x0f\x84\xab\xcf\x8a\x43\x29\x3a\xeb\x99\x25\x5a\x28\x39\xc3\xcc\xc8\xd3\x24\x3d\x9f\x4b\x43\x56\x75\x2b\x28\x36\x86\xe8\xf0\xe9\x26\x11\x62\xda\x19\xa7\x9d\x8a\xfb\x3d\x97\x3e\xd0\x67\xe6\x63\xa0\xf9\x47\xd6\x0e\x60\xa3\x66\x3a\x29\x88\x3d\x39\x87\x4c\x1f\x20\x75\x0f\xca\xbc\x2d\xb1\xa8\xb7\xda\xbe\x64\x60\x8b\xf8\xfc\xd3\x7e\x3d\x52\xea\xb2\xd3\xda\xe5\x77\xeb\x55\x37\x09\x4e\x00\x49\xa4\x17\xd6\x49\xb4\x2e\x40\x0c\x26\xa5\x3c\xfe\xc1\x44\x92\xa7\x6d\x5a\xbe\x10\x8e\x51\x24\xfb\x4b\x98\xd8\x90\x70\xc0\xfe\xec\x41\x8a\xdc\x02\xaa\x40\x8b\x0b\xee\x7e\x77\xbb\x4a\x06\xb0\x5d\x82\x6d\xe4\x71\x4f\x52\xad\x5e\x62\x79\x55\x89\xfa\x55\xb8\x84\x8a\x46\xe4\x0b\xe1\xfd\x2b\x15\x11\x02\x0b\xd4\x78\x69\x98\xbb\x57\x53\xcd\x00\x08\xf4\x38\xc8\x2c\x7c\xea\x39\x11\x8a\x9a\x9b\xda\x69\x06\xd9\xe7\xec\x70\xf6\x90\x0d\x5c\x73\xf8\x38\x3f\x49\x5c\x3f\xfe\x4a\xe2\xea\x13\xa8\x9b\x24\x2c\x8d\x17\x03\x2d\xc0\xda\x4b\xda\xea\xfd\xe2\x91\x51\x71\xed\xe8\xcc\x6b\x3a\x35\x44\x12\x26\x02\x79\x07\x57\xb1\xe7\xa3\x7c\x21\xbc\xea\x80\xc2\xc4\xb5\x11\x60\xe9\xa6\x44\xe5\x78\x59\x12\x76\x00\x9e\x9f\x2f\x61\x1c\x3d\x85\xe3\xaf\xc8\xf9\x3f\x29\x22\x83\x15\x9f\xb9\x9b\x07\x29\x62\x75\x45\x0f\x92\x2a\x24\xc9\x7b\xfd\xe7\x86\xe6\x22\xdd\x15\xf1\x3c\xe6\xd8\xe2\xc6\x62\x0e\x24\xb2\x45\xda\xc9\x0d\xec\xad\x2c\xad\x83\x22\x96\x2d\x75\xde\xee\xc5\x15\xe0\x08\x60\x58\x9d\xef\xcd\x97\xb6\x34\x8e\x79\x04\xda\xa7\x5e\x1c\xcc\xcb\xc1\xd8\x40\x3d\xf6\x83\xbb\x4f\xd9\x91\x2e\x24\xd1\x6a\x02\x8e\xce\x8b\x8f\xfb\x17\x89\xd9\x37\xd3\x39\x59\x28\xde\x41\x07\xa6\x36\x7b\x37\xf3\x01\x62\xf2\x82\x4f\x4b\x48\x98\x80\x38\xd0\xa7\x47\xf5\x10\xa5\x44\xc7\x35\x27\x66\x16\x85\xbf\x1c\xc6\xfd\xaa\x09\x53\x82\xcd\x2e\x7b\x45\x54\xce\x53\xa7\xcd\xa4\xd2\x89\xda\x73\x7b\x14\x0a\x2f\x84\xdc\x86\xe5\x50\x49\x35\x0c\xa4\xee\x9d\x6c\x55\xef\xde\x25\x35\x2f\x08\x28\x23\x3d\x5f\x08\xb7\x8d\x92\x74\x90\x08\xd0\x2b\xd1\x6a\xa4\x49\xdb\x23\xeb\x86\x4a\x20\x00\x42\x64\xdf\xc6\xbb\xd6\x0e\x92\x7e\xd7\x15\xe5\xe8\x6c\xf8\xd1\xd5\x2a\x04\xfc\xeb\x8d\xe2\x07\xd5\x97\xd2\xa1\x91\x91\xd4\xf4\xd8\x5d\xa4\xd0\x9d\x39\xf8\x81\xd2\xf3\x09\x88\x81\x3c\x93\x77\x3d\x26\xf4\x96\x22\x63\x6c\xb4\x97\xfd\xc3\x33\x8d\x4d\x9b\xba\x90\x57\x5c\x39\x47\x41\x55\x47\xc1\x18\xd2\x36\x91\x60\x92\x7a\xb9\xb8\x69\xe8\x79\xf4\xb0\x1d\xca\xbd\x47\xe8\x64\x99\x4a\x04\x65\x36\xec\x1e\xad\x7e\x0f\x45\xc4\xc9\xbc\x37\xed\x1b\x57\xb0\xcc\x6a\x01\xb2\x7c\xec\xa4\xb8\x9b\x2f\x1c\x54\x78\x73\x48\x07\x45\x9c\xc6\x3f\xff\x59\xb1\x77\xa6\x16\x6c\x6c\x66\x71\x44\x31\xae\xb1\x30\x61\x04\xd9\x70\xff\x7a\x85\x9d\xe4\x13\xec\x94\x61\xd2\x76\xdc\xb4\x5d\x92\x2d\x47\x15\x58\x43\x6c\x9f\x6c\x9e\xdd\xa0\x49\x53\x89\xa7\x09\x8b\x66\x89\x3d\x14\xb8\x26\xb4\x18\x12\xfc\x06\xc5\xad\xd1\xc2\x1e\x57\x5f\xb8\x6d\xab\x3a\xaa\x31\x19\x0c\x51\xa4\x96\xff\x35\x7a\xa2\xfa\xfa\xab\xd0\x8a\x02\x44\x0f\x75\x45\xdf\x0b\xc9\x52\xaa\x94\xd5\xf9\x71\x68\xbe\xa3\x48\x60\x01\x62\x10\x5c\x4c\xa4\x0f\xbe\xd1\xd9\x47\xe4\xcf\xd1\x99\x7b\x49\xb0\x6f\x99\x8d\x0b\x76\x7c\xe4\xd0\x18\x90\x2f\x84\xdf\x5b\x2a\xda\x2e\x35\x10\x94\x65\x8b\xb9\x2f\xcf\x16\x46\x9b\x25\x20\xaa\xec\xa7\xe7\x70\xef\x1b\x88\x0c\x68\x89\x9f\x3f\xcf\xe1\x4f\x55\x64\x40\xcc\xdc\x82\x4b\x93\x14\x11\xb5\x28\x63\x61\xda\x89\xb4\x14\xfa\xef\x26\xe6\x1f\x35\x07\x5a\x65\xd2\x83\x51\x73\xee\xf6\xe7\x44\xe7\x7e\x6a\x73\xde\x80\x65\x46\x72\xd1\x6e\x7c\x99\x7b\xd0\x03\x82\x3a\x02\xe0\x00\x4a\xcf\xbb\xac\x0c\x01\x81\x17\xdb\x61\x8d\xb9\x4f\x96\x2c\xb1\x78\x29\xfe\x85\xaa\xec\xd3\x56\x42\xec\x4c\x39\xb3\x63\x88\x34\x18\x74\x91\x0f\x2c\x8e\x28\xce\xf5\xe2\x90\x47\x09\x6c\x45\xf3\xd7\x3d\xae\x72\x0a\x1a\x55\x61\x35\x9a\x7d\xf6\x8a\x41\x69\xa4\x0c\x7f\x62\xb7\x3e\x28\x78\x57\x14\xbe\x1a\x5d\xe9\x8d\xec\xa3\xf2\x0b\xb1\xe9\x34\xe4\x89\xda\xc3\x8f\x4b\xbe\x86\x24\xf0\xcc\x7c\x21\xfc\x91\x34\xc8\x34\x29\x70\x18\x33\xc9\xaf\xe3\xbb\x39\xda\x03\x10\x9f\xc3\x87\x72\x5f\x38\x2d\xd6\x77\x07\x9d\x1b\xd6\xf3\x85\xf0\xd2\xce\xf4\x22\x8e\x0e\x0a\x62\xa1\x0a\x5b\xa0\x0c\xd6\xfd\x86\x84\x08\x27\x10\xf8\x4c\xbd\x2f\xb3\x60\xb7\x2c\x60\x58\x8c\x65\x18\x33\x1f\x63\x8c\x56\x3e\xb3\x69\x84\x67\x64\x3f\x7f\xe5\x58\xf5\x3b\x9b\x7a\x10\x47\x5f\xbb\x34\xfd\x52\x03\xa1\x1d\xfa\x9d\x4d\xca\xf1\x15\x90\x28\xd9\x11\x64\x0f\xdc\x8f\x73\x17\xa0\x9f\x88\xbf\x66\x1f\x28\x49\x5d\x20\x4c\x02\xba\x76\xb4\x21\xbe\x52\xca\xfa\x98\xce\xff\x58\x2d\x73\xef\x46\xba\xfd\xa3\xba\xbb\xa5\x25\x15\xdc\x6e\x59\x22\x1e\x7e\x19\xd8\x45\x8b\x0d\xca\xc2\xdf\x0a\x87\x6b\x40\xec\x7c\x21\xdc\xf4\x58\x7c\x0a\x3b\x3e\xc1\x51\x7a\x80\x28\xdc\xa4\x3b\xd7\xfb\xd4\x68\x25\x2f\x74\x1c\xe4\x29\x90\xae\x31\x1b\x59\x95\x33\x0f\xfa\x49\x6b\x34\xbc\x53\x54\x94\x3a\xb6\x53\xb8\xc8\xa6\xd8\x43\x8a\xda\x0b\xd1\x75\xfd\x9f\x17\x87\x2a\x05\x04\xd2\xe3\x26\xe5\x8b\xc7\x15\x6c\x1c\xed\x96\xc2\xa4\x00\xcd\x96\x9e\xfe\xa8\x12\x78\x7c\x48\xca\xc0\x67\x1e\xbf\xe2\x79\x7c\xbe\x53\xb6\x30\x07\x0c\x63\x34\x55\xc2\x2e\xdb\x00\x23\x8f\x6a\xb8\xb4\x2e\x4f\x5f\x0f\xae\x26\x54\xe3\x8c\xd6\xa6\x00\x27\xa3\xc3\x90\x19\xd7\x7c\xab\x9a\x7e\x5c\xd4\xfb\xd8\x25\x88\x8f\x93\x58\x91\xb6\xe2\xe4\x47\xa5\x1e\x34\xae\x78\xd0\x8a\x02\x6e\xc3\xea\x7a\x6d\x8e\x2a\xf3\x61\xe3\x6a\x8c\x3d\xcd\x64\xb6\xcb\x1d\xb9\x28\x66\x42\xb6\xb3\xca\xeb\xd2\x97\x57\x45\x1e\xe0\x4d\xff\x6f\x3c\xa5\x28\xc1\x40\xe8\x27\xf6\xc0\x73\xdf\x48\xa3\x49\x1d\x7e\xd1\x8d\x36\x80\xd9\xb1\x0a\x44\x63\x46\x1e\x11\x1c\x3b\x73\xbe\x78\x51\x49\xa6\xa2\x82\x85\xb7\xe5\xb2\x6d\x02\x98\xe7\x53\xc9\x23\x5a\xc6\x4c\x9e\xa2\x00\x8c\x61\xac\xbd\xb4\xec\x7c\xb2\x54\x09\xad\x0d\x73\xc3\xc7\xa6\x1f\x71\x89\x20\x68\xd8\x20\xdd\xb6\xde\x3a\x4b\xa1\xa6\xc0\x12\x72\x90\x2f\x4a\xa0\xdc\xba\x11\x03\x1d\x55\x26\xa5\x10\x1e\xda\x22\xa5\xec\x96\xc5\xa0\xde\x99\x9f\x5d\x1e\xc0\xf3\x56\x4f\xc7\x35\x0e\xba\x78\xfa\x4d\x3e\x9c\xf6\xb1\x5e\x31\x31\x0f\xdb\xda\xb6\x73\x42\xb1\xb7\x4b\x45\xa1\x85\x27\xdf\x13\x9e\xd2\xc5\x18\xbe\x71\x61\x61\xfa\x08\x36\x81\x6f\x82\x1a\xa8\x73\x06\x99\xe2\x85\xbb\x5a\x48\x93\x4b\xe0\xe1\x70\xce\x2a\x05\xb1\x41\xa7\xaf\xa4\x48\x05\x5b\xa7\x0c\xea\x09\xa5\xc0\x6b\x80\x10\xdf\x27\x08\x7b\x29\x39\xd7\x61\x6f\x49\x23\x8c\xc0\x41\x96\x94\x37\x3c\x37\xfd\x5a\xb9\xf5\xdf\x90\x2a\xdc\xbf\x49\x1e\x8d\x97\x1d\x2e\xe9\x78\xc5\xc1\x34\xd9\x86\x04\x5c\x47\x7c\xd8\x58\xe1\x64\x6c\x06\x0d\x7e\xe5\xdd\xd9\xaf\x86\xaa\x59\xac\x17\xd8\x1c\x03\xa2\xfd\xe3\x2b\xd2\xb7\x05\x9e\xce\xa2\x4a\xe6\x13\xf3\x54\x71\x14\x23\xd6\x2f\xf9\xe5\xe8\xf1\xca\xaf\xb8\x37\x7f\x43\x94\xcf\xfc\xd3\x4a\x95\xe8\x8a\xfd\x22\xb0\xac\xd8\x2a\x41\x51\x99\x82\x80\x70\x2b\x53\x6d\xe9\xc1\x06\x1c\x91\x07\xd7\x04\x30\x56\x90\xd6\x0e\x0a\x61\x32\x44\x1a\xda\x47\x99\x37\x17\x89\x40\x1d\xd5\x73\x61\x78\x4a\x6c\xfa\x04\xfa\x4c\x71\xcf\x42\xc0\xcd\x08\x64\x21\xe3\xb5\x67\xd4\xc7\x46\x65\x67\xd9\x6e\xec\x2c\x4a\xce\xb6\x4c\x4f\x66\x98\x25\x51\xcb\x80\x83\x60\x8c\x5a\xcf\xf4\x51\xcc\x59\x4c\x14\x7b\x7a\x68\x8f\x98\xe9\x00\x5c\x84\x3e\xf2\x1a\xa1\x5d\xda\xe0\xb3\x12\x3e\x0b\x04\x7a\xc0\xdc\xc1\xb3\xff\x34\x7a\x9c\x1a\x36\x81\x05\x74\x13\xb1\xb9\x81\x90\x7a\xfd\xe4\x7a\x59\xdc\xa8\x0c\x1d\xbf\x51\x13\x75\x5a\xeb\x00\xf9\x4b\x18\xf3\xff\x97\x8a\xcd\x8b\x0f\x81\x1d\x63\xca\xd6\x8f\x1b\x22\xb5\xa1\x1d\x5c\xa5\x43\x4f\xfa\x34\xe6\x3e\x2d\x4a\x4a\x9b\xb6\x30\xbb\xb5\x89\x52\x5e\xea\xc1\xaa\xac\xd8\x9c\xf9\xd3\x15\x22\xaa\xb4\xb6\xb5\xf2\xb6\x4e\xe6\x03\x3f\x79\xcd\x1d\x0d\x6e\x73\xdd\x99\xe7\xfa\x48\x3a\x53\xec\x8b\xaf\x95\x44\x02\x5c\x10\xcf\xf9\x72\x9b\xfa\xa7\x03\x65\xcd\xac\x4f\x66\x6a\x32\x5f\x1f\x25\xb8\x56\x54\x67\x73\xc1\xdb\xe9\x76\x42\xa0\x9b\xb0\x5c\x0c\x52\x61\xf2\xdf\x9e\x53\x5f\xa9\xcd\xce\xd4\xb0\xa9\x97\xdc\xb4\x4f\xbc\x7f\xa3\x6f\x2a\xf6\x62\x3c\xa5\xdb\x0b\x73\xa9\x2a\xc7\xac\xc1\x92\x28\xa1\x67\x22\x37\x36\xbd\xfa\x55\xa7\x74\x42\x45\x21\xc7\x0f\xa8\x7c\x46\xe6\xd8\x51\x69\x8d\x11\x50\x2b\x02\xbd\xc2\x18\x20\xab\x4e\x48\x8a\x97\x18\x78\xb4\x77\xf8\x25\xa6\xf1\x95\x9f\x2a\x8c\x0f\xe8\xb8\x6f\xb4\xa0\x34\xce\x9c\x4e\xe7\x4e\xc7\xb8\xbf\xa7\x84\x05\xfd\xf9\xa9\xc1\x12\x30\x26\x3a\x8d\x21\x61\x23\x9d\x4d\x3b\xfa\x48\x40\xc6\x42\xd8\x7b\xaf\xaa\xc1\x9a\x4c\x80\x78\x94\x79\x69\xa5\x52\x68\x01\x87\x11\x16\x73\x33\x96\x32\x7e\xf8\x02\x4c\xa1\x12\x4a\xe4\xba\x52\xdc\x54\x15\x59\xb4\xf6\xf9\xea\x15\xd2\xfb\x45\xd8\x42\xf4\x70\xcb\xf4\x7d\x3d\x1d\x95\x3a\xb0\x07\x5d\xb3\x47\xc9\xe5\x47\xb5\x01\xc9\x4d\x21\xfa\x6c\xa3\x0f\x78\x48\x6a\xb0\x97\x01\x93\xca\x1d\xd4\x9c\xde\x9d\xa5\x22\xea\x81\x45\x1f\x0e\xdf\x95\x0e\x73\xc0\xb2\x60\x39\x66\x0e\x84\x70\xa4\x24\x10\x62\x01\x5a\x0f\x68\x23\x87\x28\x18\x13\x02\x1c\x81\x31\xe9\xd6\x9e\x78\x50\x4a\xe8\x03\xdb\xe5\x98\xf7\xf1\xae\xda\x54\x72\x4a\x16\xd2\x39\x8d\x51\x9b\x7e\x50\x45\x79\xd3\x66\x35\x7b\x07\xe0\x49\xf6\x8e\xa5\x95\xa0\xed\x3f\x97\x14\x96\x4d\xf4\xa5\x7f\xe8\x4d\xb1\xf2\x70\xd1\xd3\x03\xc2\xb1\x18\xeb\x97\xaa\x53\xd8\x0e\x79\xd6\x9c\x33\xdb\x04\x1b\xb1\xa5\x3d\xfa\x17\x9b\xa4\xe9\x95\x81\x3c\x17\x30\xbc\x59\xf4\xb5\x1b\xdf\x63\x08\x0d\x03\xd7\xb8\xeb\x42\x9f\x37\x25\x61\x70\x58\x2c\x22\x69\x3e\x96\xbb\xff\xbd\x94\x4e\xd3\xbc\xe5\x93\x0b\xa9\xec\xf4\xe6\xbd\xaa\xd3\x2e\xf4\x63\xf5\x3b\x5b\x71\x56\xe1\x18\x3f\x9a\xd4\x9d\x56\x82\x27\xf2\x71\x19\xf5\x50\xbd\xe7\xfa\xf4\x1e\x9a\x92\x58\xa4\x30\x27\x3a\xc6\x0d\x8f\xdf\x17\xdb\x15\xb3\x5a\x2c\xfc\xe2\x1c\x31\xc3\x37\x82\x12\x0e\x88\xbe\x46\xea\xa8\x6c\x19\x3d\x90\x6f\x6b\xac\x07\x04\xf2\x1d\x9f\x6b\x51\xd4\x23\x69\x55\xcf\x54\xfa\xb5\xff\x7c\x47\x41\xbc\x97\x4a\x9e\x0f\xca\xb1\xbb\xe8\xee\x25\x42\x59\x00\x10\xd4\x85\xa9\x5e\x6b\xfa\xf8\xc0\x42\xf6\x68\xea\x8c\xa9\xf9\x42\xb8\x45\x5d\xd9\x04\xea\x26\x85\x27\xa4\xb4\x3c\xb2\x63\xa7\xb3\xba\x75\x39\x36\x80\xea\x97\x16\x3e\x33\x48\xa9\xcc\x09\xe0\xfa\x0c\x39\xab\x49\x61\xd3\x78\x1e\x65\x9a\xc7\x46\x6c\x6d\xe7\x24\x65\x44\xe0\x72\x71\x07\x8a\x0b\x59\x9d\x04\xa7\x0a\xed\x14\x8d\x6e\x4d\xdf\x3e\xe4\xdc\x23\xde\x63\x73\xee\x51\x72\x0c\x40\x09\x01\x71\x33\x62\xec\x33\xfd\xe2\xaa\xc5\xd1\xd9\x09\x31\xb9\x43\x2c\x4c\xc9\x4e\x90\xfe\x75\x55\xa8\xc4\x41\xba\xae\xef\xbc\x3c\x90\x07\x68\xe0\x79\x41\x22\x07\x7c\xe5\xd8\x74\x36\x56\x83\x4c\xf6\x28\x33\xe5\x70\x7a\x26\x07\x1c\xe0\x63\x4b\xd1\x05\xe8\x37\x3a\xfd\xf4\x6d\xbf\xda\x63\xa4\x2a\x85\x62\x37\x22\x42\x60\x39\xb0\xa8\x4a\x75\xf6\xe9\x97\x15\xee\x4b\xac\xbc\x44\xef\xf9\xd9\x0d\xa2\xbf\xb2\x26\x80\x5e\x2c\xc6\x9b\xf9\xf0\x41\xa9\x62\xc3\x35\x0b\xd0\x8a\xad\xb7\x21\xf1\x26\x03\xdf\xa7\x22\xcf\xd1\xd6\xa4\xbb\xf8\xbd\xf4\xfd\x54\x2d\x60\xa0\x2a\xf6\x7c\x2c\xda\x08\x61\xd3\x6c\xa9\xe3\x12\x70\xe1\x80\x77\x15\x06\x4e\x11\xfb\xbe\x05\x63\x14\x75\x45\x89\x99\xc5\x28\x98\x24\x78\xb8\xec\x7b\x53\x94\xde\x2f\xee\x84\x31\xf4\x4b\x3b\xfd\xfa\xc7\x6a\x6a\x6b\x3d\x70\x98\x5b\x71\x63\x73\xe5\x0f\xcc\x3b\x23\xbf\x84\x80\x46\x45\x82\xdc\x82\xf1\x22\x83\x00\x4e\x94\x29\xea\x27\xd2\x51\xc1\x41\x7a\x05\x5a\x8d\x22\x84\xb9\xbe\xe3\xae\xe1\x09\x3e\x21\xd0\x31\x20\xe1\x90\xa2\xb7\xae\x60\x81\x96\x3b\xd6\x51\x27\x32\x77\xa4\xb4\x47\x81\x0a\xfd\x0a\xff\xf6\x04\x57\xab\x8c\x7d\x24\x68\x28\x39\xdf\xae\xd8\x6d\x4e\x53\xec\x36\xb3\xfb\x2f\x8b\xf9\x63\xbd\x11\x06\xfc\xbb\x03\xaa\xdf\x7a\xb1\x88\x7c\xc6\xb3\x8a\x03\x52\x2f\x8e\x2a\x2a\x5a\x6c\xde\x90\xfd\x47\xc9\x3a\xcb\x00\x6c\x7e\xf8\x46\x31\xdd\x49\xaa\x60\x62\x80\x54\x3b\x34\x37\xe5\x4d\x45\x44\x1c\xfb\x74\x2e\x4b\xd1\xd4\x2f\xcb\x01\x94\x00\x54\x96\x6a\xa5\xcf\x2d\x95\x04\xe6\x6d\x97\xa6\x18\xda\xca\x76\x45\x5a\x80\xa5\x9c\x61\xcb\x20\xee\x58\x80\x84\x31\x1a\x38\xa9\x0c\x0e\x83\x62\x8f\xb5\xf7\xf1\x57\x98\x95\xef\x22\xdc\x28\xbf\xbf\xad\x73\x88\x52\xf6\x42\x97\x53\x3a\xaf\xd9\xc9\x1e\x50\x09\x43\xea\xbd\xf9\x66\xeb\x75\x6a\xd4\xd3\x7d\xae\x6a\xc2\xce\x9c\xe7\x77\x0e\x94\x83\x1b\xf2\x99\x97\xda\xf7\x16\x2b\x9d\x1a\x0b\x38\x71\x87\xf7\xa7\x4f\x73\x43\x78\x50\x2e\x73\xe7\xb6\x7b\x2f\x49\x06\x03\x3e\x70\xa2\xba\x9a\x4d\x79\x33\xf7\xcf\x53\x58\xa2\x1e\x4d\xa8\x04\x4f\xf8\x86\xc3\x6a\x03\xa4\x0a\x1d\x8e\x60\x0c\x07\xbd\xce\xfa\x67\x79\xe4\x78\x2e\xe2\x0f\x71\x99\x2a\x75\x0b\x81\x5f\x8f\xc7\xdc\x64\x48\x7a\x1d\xb5\xd0\xf4\xdc\x86\x76\x51\xe8\x79\x5d\xbd\x37\x2d\x80\x30\x8d\x39\x26\x3d\x3f\x4f\x62\xfd\xc8\xd0\xf8\xdb\x5e\x50\x9f\xb8\x13\x7b\xa6\xbd\xdb\x9f\x5d\x60\xcb\x94\xe6\xb6\xe6\x29\x33\xd9\x80\xf7\x13\xc7\xc4\x89\x51\xa5\x28\x2f\x5c\x65\x8d\x83\x95\xdc\x71\x6f\x5a\x2b\xfd\xc3\x25\xdc\x38\xe3\xde\xa8\xea\x10\x27\xd9\x5f\x07\xc9\x0d\xc2\xc0\x63\x6d\xa7\x3b\x4f\xaa\x36\xcb\x71\x83\x37\x2c\xcc\x12\x1e\xc7\xb2\x95\x59\xf6\xde\xfb\xd2\xc9\x6c\xe0\x41\x0e\x40\x9c\xbb\x43\x10\xd8\x4a\xc8\x61\xce\x26\xea\x32\x24\x63\x15\xd8\xb4\x01\x6c\x2f\x0d\x1e\xcc\xfe\x7a\xbf\xb8\xd9\xe8\x36\x7d\x50\xe1\xc1\xe5\xd0\x9c\x61\xca\xab\xf7\xa2\xf7\xca\x98\x74\xff\x71\x44\x65\xea\x05\x1e\x28\xf3\x98\x1b\xbe\xfa\xaa\x64\x73\x83\x71\x25\x0a\xd2\xbb\x17\x88\x2b\x2e\x47\xdf\x44\x5d\x72\x78\x3b\xd3\x62\xea\x09\x59\x6b\xb7\xb8\x1a\xfa\x7d\x89\x62\xd9\x8c\x83\x49\xab\x72\xda\xf4\xb4\x9a\xe9\xb2\x2b\x15\x24\x15\x34\x98\x00\x96\xb8\xcb\xa9\x4f\xa6\xa0\x01\x98\x7a\xcd\xfc\xa1\x43\x11\x4e\xa7\xcf\x36\x9c\xf6\x50\x72\x32\x23\x14\xad\xe2\x05\xaf\xb3\x48\x50\x83\x96\x95\xd7\x03\x9a\x45\x69\x61\x4f\xd4\x2c\xd6\xca\xd1\x9e\x51\x12\x05\x12\x50\xd8\x65\x3c\x22\x5a\xf3\x0a\x1b\x80\xcc\x43\x30\x45\xbb\xd1\x3e\xdd\x31\x52\xd9\x4b\x65\xc4\x9a\xdf\x9c\x39\xdd\xaf\x33\xc9\x58\x9a\x5b\xe9\x39\xeb\xad\x14\xdd\x73\xdd\x42\x0e\xd2\x69\xe4\x78\xd1\x64\x2b\xb3\x86\x49\xc5\x06\x4e\x54\xf1\x51\x19\x95\x1d\xdc\xba\x12\xea\x3e\x20\x8c\x27\x98\xbd\x6a\xb4\x88\x98\x63\x3b\x30\x1c\x2b\x3d\xb7\x75\x63\x25\x56\x09\xf2\x7c\x12\x78\x7e\x29\xb0\xf2\x85\xf0\xc7\x9a\xec\x75\x51\x46\x0e\xe4\x94\xf5\xdf\xf0\x9e\x9b\x04\x02\x88\x2e\xf4\x87\x4a\xd8\x2b\x21\x87\xa7\x95\x99\xd2\x07\x12\x42\x15\xf8\x71\xb0\x6d\x7a\x8c\x4d\x04\xb9\x52\xca\xad\xc0\x8b\xc5\x50\xb3\x5b\x26\xa5\xe3\x30\x43\x91\x36\x52\x58\xa7\x4b\xb8\xf3\x12\x01\x81\x11\xbd\xf6\xfd\x63\x25\x72\x1c\xb4\x83\x8f\x45\xd7\xf0\xdb\x1d\xc9\xf2\xaa\xa1\xb4\xf7\x7a\xa6\x4b\xd6\x9c\xc0\x35\x8b\xdf\xe8\xe8\x4d\x0d\x12\x41\xbc\x38\x2a\x1e\x10\x37\x54\xa2\xfc\x9d\xe8\x7b\x6f\xb9\x9c\x1c\x7f\x14\x59\xf7\x9d\x53\xaa\x06\xb7\x03\x0c\x44\xa9\x2d\x89\xa2\xf1\x21\x95\xa4\xef\x78\xcc\xcb\x88\x13\xfd\xfe\xe1\x9d\x18\xdc\x5a\x26\x88\xc5\xa8\x0b\x17\x25\xaf\x51\x86\x00\xa9\x2f\x4a\x56\x74\x15\x9a\xf9\x42\xd8\xe7\x88\xd0\x8b\xa6\x66\xff\x69\x9b\xec\x7e\x0a\x61\xda\x2a\x32\x6c\x5a\x1a\xed\xf5\xe5\xfe\x32\x91\xcf\x30\x2c\x1e\x37\xae\x7d\x5f\xf4\x5e\x90\x43\xbf\x47\x47\x8c\x60\x43\x9a\x53\xdd\x06\x0f\x3a\x3e\xab\xf3\xdf\x5d\x72\xb5\x84\x11\xb4\xa2\x05\x76\xb7\xa6\x8c\x6d\x41\xec\x6f\x9c\x9d\xf6\xf6\xf0\x1e\xf3\x74\x06\x53\xf9\xc4\xeb\xac\x4e\x2a\x41\x42\x18\x70\xee\x0e\x8d\xa7\x49\x7c\x28\x11\xfd\xd5\xc1\x59\x8a\x79\xa0\x8b\xf9\xc0\x3f\xdb\xb1\x30\xfd\x62\x5b\x66\xce\x6c\x66\x70\x86\x0f\xbd\x91\xfe\x0d\xac\x32\xe7\x9c\x6e\x6d\xe8\x13\x13\x7a\x38\x27\x19\x72\x49\xcd\x00\x8e\xdf\xa7\x0e\xcb\x12\x48\x3d\xa7\x29\x68\x5f\xc9\x89\xcc\xa8\xbd\x85\xb6\x58\x32\x8b\xdf\x67\xef\xda\x06\x16\xe0\x83\x68\xe3\x8c\xc4\x62\x02\x1e\x1f\x50\x7d\x6c\x7a\x7a\x77\x54\x60\x54\xd5\x7b\x15\x44\x77\x48\x02\xdc\xfc\xe1\x25\x65\xfa\xcd\xfc\x6c\x3d\xce\x87\xcd\x9c\x7f\x4c\xc4\xe2\xa8\xa8\x2a\x3b\xbc\x84\xcc\x1c\x3a\xc0\x39\xd7\x80\xb1\x95\x32\x85\x47\x47\x49\x69\x08\x0d\xe6\x6a\xff\x6c\xe6\x8d\xfd\x79\x58\x30\xca\x30\x6e\x95\x05\xfd\x84\x83\x7d\x29\xaa\x78\xcc\xe8\xc6\xd4\xc4\xb9\x99\x89\x55\xe6\x0d\x80\xac\x86\xca\xf0\x52\x9b\x6a\xc9\xce\x44\x97\xe9\x16\x5d\x3c\x56\x58\x66\x20\x49\x6c\x65\xcf\x4e\x8e\x2d\x0e\x02\x79\x46\xf6\xff\xf3\xf5\xff\x71\x52\x14\x77\xfe\x38\xee\xf4\x4c\x8c\x51\xe4\xc7\xb2\xac\xb8\x2a\x12\x44\x20\xc0\x6c\x96\x05\x56\x20\x6a\x10\x56\x45\x44\x06\x01\x09\xf1\x88\xa1\xa6\xa7\x66\xba\x76\x7a\xba\x86\xea\xee\x99\x9d\x3d\x45\x62\x0c\xf1\x0c\xe1\x88\x21\x5e\x62\x0c\x31\x04\x3d\xe3\x19\x43\x08\xe1\x88\x31\x84\x23\x1e\x31\xc6\x20\x21\x84\x10\xc2\xf1\x35\x1e\x21\xc6\xf3\x88\x47\x90\x33\x1e\xdb\xf9\x3e\xba\xaa\xba\xeb\xd5\x35\xfb\xfe\xfc\xc9\xee\x32\x3f\xaa\xab\xea\xf5\xeb\xf9\x63\xbf\x66\x22\x51\x25\x5c\xd1\x8a\x9f\xb4\x5d\x7d\xc3\xc0\xb1\x12\xe5\xcc\x35\xc0\x58\xd1\xb5\xa8\x58\x0c\xe3\x84\x03\xdd\xe5\x70\x1d\x31\x90\x1c\x18\x77\xed\xd6\xba\x1b\x1e\xb2\x1b\x40\xfd\xea\x27\x6d\x00\x71\xed\xe7\x51\xb6\xe1\xb3\xf0\xe8\x34\x26\x8c\x94\x27\xdd\x23\x28\x4f\x59\xa4\x4b\x7f\xeb\x09\x9d\x05\x5a\x8d\x2d\x61\x53\x37\x76\xc9\x01\xae\x8d\x3d\x8b\x32\x3e\xa8\x1c\xd3\xa7\x86\x1f\x66\x73\xfd\xfe\x33\x23\x46\x08\x77\x43\xc6\x4d\xe3\x59\x78\x49\x2b\xa1\xdb\x15\x5a\x6e\x45\x1d\x69\x5d\x98\x9a\x94\x1f\x0a\x70\xa4\xa2\xe7\xb3\x37\xb9\xf3\x3d\x8b\x61\xe4\x61\x10\x1c\x33\xb7\x0a\xfb\xa0\xec\x42\x54\x43\x65\x0b\x15\xfa\x21\x7c\xf9\xf4\x29\xb5\xdf\xb9\xe9\x03\x7f\xca\x57\x75\x5d\xa3\x65\x49\x6e\x71\x90\xde\x4a\xea\x7b\x2f\x6a\xc2\x59\xd3\xc5\x75\xbd\xf4\x84\xba\xb0\x1c\x54\xe3\xbe\x0a\x91\xe0\x13\x3a\x02\x3d\x72\x8a\xd4\xc5\x82\x43\xfc\x14\xd3\xe4\x4d\x91\x69\x5a\x84\x3a\x24\x91\x76\xfc\x1c\x18\xd1\x97\x50\x7f\x35\xbc\x6c\x73\x41\x6f\x8b\xae\x58\x53\xa1\x1e\xb6\x23\x2f\xcc\xd4\xe6\x7b\x93\xbf\x9f\x3d\x75\xd6\xb4\xeb\x3a\xae\x9b\xd9\x21\x93\xd6\xaf\xcc\x03\xb7\x28\xd7\x3b\x2b\xd3\x1a\x4f\x4a\x36\x82\x9e\x2d\xad\x84\xd9\x80\x34\x67\x2b\x9d\x6e\x01\x55\x11\x45\x1e\x41\xd9\x5c\x70\x9f\x9c\x09\x73\x24\xa8\x5b\xa5\xa2\x2a\xfb\xde\x26\x00\x75\x20\xae\x4b\xeb\xe1\x4f\x7f\xdf\xae\xb1\x01\x6b\xc8\xf4\x91\x17\x81\x6c\xd3\xd5\x7b\x81\x6c\x65\xdc\x46\x4c\xdf\xd6\x26\x4e\xda\x52\xec\x62\xc4\x4c\x4b\x6c\x9b\xcc\x0d\xcf\x68\x9a\x19\x94\xb2\xba\x6c\xe9\x04\x8f\x5d\xa4\x8e\x1a\x29\x93\x0a\x97\x00\x1a\x02\x84\x26\x19\xc6\xd9\x22\xb2\x45\xc0\x09\x5e\x32\x46\xc2\xd8\x11\xf9\x3c\x19\xc3\x1f\x51\x81\xb0\x8b\xfb\x27\xa7\xef\x7c\xfb\x52\x25\xea\x43\xb2\xb9\x60\xb2\x76\x7b\x78\xd4\x37\x2d\x59\xfc\xa7\x6a\x6b\x35\xe9\x1e\xea\x3b\x5e\x43\xa2\x59\x93\x99\xf6\xaa\xb7\x80\x7a\x72\xcc\x46\x5b\x73\x30\xb9\x66\xbc\x49\x8f\x2b\xc8\x99\x52\xe7\xf3\x80\xf3\xc3\x75\xaf\x4d\xb7\x2e\xa4\xc2\xc2\xdf\x6e\xdb\xa0\xf0\x33\x05\x08\x07\xaa\x5e\xa4\x3b\xf7\xd7\x88\x50\x5c\x14\x13\xad\x43\x17\xe8\x8d\x48\x1c\x59\x94\xa5\xe6\x9d\x1e\xe1\x68\xa3\xa3\xdc\x40\x2a\xa3\xe9\x90\xcc\xea\xe8\x8a\x30\x12\x53\xb6\x6b\x59\x0a\x75\x4c\xec\x78\x82\x8b\x2a\xa7\x6b\x5b\xb6\xe8\x79\xab\x4d\x4a\x84\xfa\x6e\xac\x68\xd3\x22\xd5\x24\x85\x90\x14\x48\x22\x3e\xa7\xe9\xbc\x17\x29\xc3\xa4\xe4\x84\x81\x53\x3c\x84\x9b\x1f\xd4\xee\x4b\x86\xd6\x10\x75\x5f\xa6\x4e\xcc\x10\x51\x71\x3e\x45\xa6\x25\x26\x8a\x57\x78\x51\xa3\x94\xd8\x9c\xdd\x9f\x9e\xf0\xd0\x50\x79\x28\xfc\xbc\x1c\x3b\xa6\xd7\xa9\x5d\x83\x1c\xc1\xbd\x08\xff\x74\xc1\x3e\xad\x13\x32\x43\xef\x84\xbc\xd5\x25\xfb\x7c\x55\xea\x70\x3d\xb0\xe0\xfb\x73\x61\xbe\x67\x0a\x93\x95\xa0\xb2\x45\xd0\x7b\x16\xd1\x02\x07\xfd\xea\x7b\x66\xe2\x29\xa0\x31\xcd\x04\x64\x38\x17\xdc\xfb\xa0\xbe\x96\x42\x05\x07\xc9\x79\x65\xfa\x4b\xda\xb0\x90\x63\x24\xa2\x98\xfd\x8f\xab\x92\x4f\xab\x8a\x59\x15\x7b\x5c\xb3\x50\x52\xed\x83\x9e\x83\x09\x6f\x6b\x4c\x44\x58\x38\xf6\xb2\x54\xfd\xa5\x75\x9b\xaf\x59\xef\x05\x11\xb2\xcf\xe1\x69\xf3\xce\x2b\xa5\xf4\xb4\x53\xc3\x36\x95\xe7\x3b\xf5\xc6\x46\x0d\x77\xc7\x88\xcb\xc7\x8a\xb9\xe0\xa7\x2f\x68\x8d\x59\x21\x6b\x15\xa3\x6f\x3a\x9f\x80\x45\xa2\x2f\xb0\x53\x1b\x35\x35\x2f\x13\x55\x91\x49\xbc\x46\xd4\xbd\xf8\xd4\x96\xe4\x5d\x6f\xf9\x8e\x1b\x46\x69\xa6\x11\xc2\x0f\x2e\x48\x76\x75\x7a\x69\x9e\x77\x24\xb6\xf5\x34\x4d\x43\xfa\x89\x1d\xd1\x96\x83\xfb\x36\x2a\x66\xc1\x6c\x6e\xb9\xfe\xe4\x95\x71\xc9\xe5\x72\x46\x63\x8a\x69\xd6\x41\x11\x77\x92\x8f\xc8\x37\x1f\x6a\x91\xb5\x1d\x2b\xab\x2e\xec\x0f\xfa\x45\xf2\x13\x15\x74\xfc\xab\xbe\xf0\x94\x64\xf7\xe2\x12\x46\x49\x08\xf1\x91\xb7\x54\xd9\x65\xd1\x0a\x75\x71\x9f\x8f\xc4\x63\xd9\xf3\x96\xf2\xf4\x85\x84\x98\xf4\x77\xbd\x64\xd6\x1e\xee\x39\x46\x4c\x2b\xd9\x66\xcf\x7c\x7a\x83\x24\x5f\x53\x5b\x1a\x6c\xbc\xd1\x9d\xdc\x33\x36\xae\x13\x57\x43\x67\x7e\xcb\x68\x49\x7c\x01\x41\x2c\x33\x3e\xba\xe7\x52\x25\x03\x19\x6e\x92\x2f\x79\x1a\x0d\x81\xe6\x31\xf3\xf8\xf2\xca\xa5\x78\x7b\x82\x1a\x5a\xa0\x19\x4d\xb9\x5e\xed\x5d\xdd\x0d\x19\xdb\x7e\x01\xcb\x20\x33\x57\x53\xe0\x2a\x10\xd7\xe5\x80\xe4\x08\x34\xbf\xe1\x45\xa5\xae\x57\x00\x5f\x3b\xf5\x6a\x71\xbc\x1a\xca\x83\x9e\x52\x53\x23\x7c\x98\x86\xee\x77\x51\xc3\x15\xc9\xff\x05\x43\x95\xfa\x98\x17\xb9\x5a\x2d\x66\x1a\xf7\x52\x84\x25\x79\x79\x1d\xb9\x57\x2c\xb6\x4d\x1d\xb1\xd8\xc6\xbe\xe7\xda\x95\x58\x74\x93\x53\x4f\xea\xb3\xdd\xc9\x6d\x5b\xa2\x42\xec\x23\xfd\x2f\xe3\xc1\x15\x93\x8f\x4c\x66\x3f\x3e\x23\x59\x75\xe4\x09\x7f\x77\xe9\x7e\x92\x4c\xec\x1e\x05\x96\x04\x79\x14\xc1\xaa\x33\x37\x9c\x00\x64\x36\xe4\x25\xdc\xf9\xee\x3f\xae\xdf\x45\xfc\xce\x8b\xcd\x94\x32\x57\xca\x92\xc4\x26\x32\xe0\x07\x53\x57\x0f\x93\x97\x23\x36\x3d\xe6\x87\xe9\xce\xe6\x67\x74\xbf\x48\x56\x23\x35\x2a\x15\x45\xfe\xf4\xb0\xd6\xa3\x72\x5d\x6a\x46\x58\x2c\xa9\x99\xb8\x63\x96\x0a\xfe\x16\x72\x13\x00\xe4\x77\xdf\x94\x09\x46\x12\x97\x8c\x8f\xc4\x1b\x01\xf5\x03\x32\x60\x66\xde\xbd\xca\xee\xc2\x45\x44\x37\x42\x08\x2e\x79\x42\x93\xf8\x6f\x54\xc3\xe2\x47\x25\xa8\x17\x76\x83\x27\x81\x22\x6d\x3a\x63\x63\xb1\x45\xd6\x98\x79\xc4\x58\x24\x62\x9a\x9a\xbd\x53\x46\x1e\xec\x12\x29\x76\xf0\xc1\xc7\x74\x91\x23\xb1\x65\xf8\x72\x90\xfd\xf1\xf1\xf6\x2b\x15\xb0\x81\x9d\xd5\xe3\xe3\xb7\xb5\xfd\x32\x9e\x18\x1e\x2e\xea\xe2\x9a\xe8\x3d\x02\x73\x50\x9d\x0a\xc6\x07\xed\x80\x75\xf9\xec\x0b\x9a\xbc\xa6\x85\x88\x6c\x5c\x5c\xbb\x52\x4a\xae\x32\xd3\x22\x1e\x36\xf9\x0e\xb9\xfa\x5c\x93\x50\xa0\x4d\x99\x9a\x20\xa7\x1e\xd9\xd5\x0e\xb2\xdc\x3c\x23\xd8\x06\x49\xbb\x41\x56\xab\x22\x0c\xd5\x41\x76\x7c\xdb\x6b\xaa\x50\x62\xb8\xc8\xc3\xa6\xca\x72\x66\x3f\x0b\x54\x79\xa9\xef\xe2\x3a\x29\xf2\x81\xf6\x59\x6d\x60\x63\x61\xbb\x2a\xab\xb4\x81\xcc\xfa\xd7\x92\xdb\x69\x0d\x6a\xb8\x44\x73\x0d\xf8\xce\x10\x0d\xc9\x22\x5d\xbd\x75\x41\xc6\x74\xb5\xaa\x7b\x3f\xb1\xb0\xb8\xb5\x25\x75\xc5\xbb\x20\xb9\x90\x13\xdd\xa9\x32\x0e\x1b\x8b\x0e\x02\xd1\xa0\xa2\x87\x59\x45\x1a\x42\x8c\x1a\xdd\xc4\xd5\xa8\x22\x47\xb6\xbf\x83\x29\xc6\x65\x20\x95\xf5\x12\xae\x7f\xde\x79\x51\x00\x7e\x0c\xb9\x04\x6c\x8c\xf4\x26\x27\x01\xab\x92\x19\xb6\x31\xff\x9c\x26\xa9\x11\x6e\x49\x3b\x16\x19\x4c\x7d\x73\xa8\x60\x5d\x4c\xef\x9a\x45\xc2\x2f\xd3\x77\x40\xd4\x5d\xcb\x91\x5b\x6e\xba\x3b\x76\x3f\x9c\x64\xb5\x3a\xb8\xd2\x8f\xbd\x66\x61\x81\xe0\x91\x67\x44\x92\xc0\xc9\xca\x5c\x14\x2a\x9b\x0b\x66\xef\x8d\x37\x00\x4e\xc8\x0c\x15\x9e\xd3\xf3\x5f\x9e\x05\xc9\x16\x73\xfb\x19\x5d\x1d\xc1\x29\xe0\x8a\x13\x0d\x7a\xe6\xb1\xe4\x93\x2e\x61\xa6\x89\xa2\x0f\xa4\x7e\xab\x75\x65\x5c\x4a\x9d\xac\x47\xb3\x79\x9c\xad\x72\xd2\x35\xe9\x8f\x7b\xab\x17\x6c\x19\x2d\x13\x49\x57\x07\x79\x05\x57\xb5\x00\x9f\x04\x8a\x85\xe5\xce\xd4\xe1\x7a\x22\x56\x16\x7e\x64\xe1\xf2\xd7\xb6\x2a\x11\xe5\x2a\x4f\x24\x86\x48\xd2\xf9\xfc\x9b\x16\xdf\xb4\xe2\xe6\xa5\x37\x2d\x8a\xf8\x61\xa3\x8b\xe2\xc1\xde\x81\x1a\x54\x19\x3b\x05\xf3\x0a\x62\xd6\xe0\x61\x9e\x97\x36\x0e\xa8\x8f\xe0\x22\x22\x18\xf3\xde\x3e\x88\x9d\xe6\x4a\x88\x3c\x5a\x0c\x7d\x44\xdd\x7e\x0e\xbc\xd1\x3f\x09\x5c\x80\x5c\xc4\x68\xb6\x4e\xea\x3c\xfd\xfb\xfe\xf5\xda\xb5\x47\x2b\x79\xc4\x31\x35\x32\xcf\xfe\xf4\x02\x69\x72\x83\x0b\x05\x99\xfb\x3d\x72\x0b\x64\xd5\x22\x87\x20\xc6\x33\xc5\xff\xd9\x23\x62\x40\xd7\xcc\xce\x70\x17\xf3\x16\xdc\xb5\xcf\x80\x11\x93\xe5\x7b\xe0\x1a\x78\xf5\x41\xf1\xca\xb3\xbb\xa6\x4f\x9d\x21\x26\x30\xd7\xb7\x27\x83\x70\xc9\x6f\xc8\x61\xee\x7c\x2f\x99\x6f\x96\x6c\x5a\x13\xca\x62\xc1\xc6\x8d\x97\x82\x7e\x55\x36\x17\x5c\xdc\x06\x64\x7b\x7c\x66\x5a\x48\x2a\x4b\x67\xdb\x05\xb4\x3c\xea\x1b\x36\xa5\xe6\x3f\xd9\xac\x4f\x33\x9d\xb2\x10\xdd\x55\x39\xda\xf1\x9d\xd2\x77\xc1\x13\x96\xf8\xd5\x0b\xc7\x81\xdb\x0c\x15\x8b\x84\x55\x06\x11\x15\xfc\x59\xeb\xe5\x10\x61\x72\xdb\xe2\x29\xd1\x76\x0d\xcb\xd1\x16\x71\x28\x2b\x88\x8b\x30\xbd\xfb\xb8\xf2\xf0\x47\x40\xd2\xc6\x1f\xab\xf0\x52\x75\xe2\x59\x4a\x5c\xfb\x77\xaf\xa8\x28\xe1\x3b\xbc\x4b\xc3\x0d\xe5\x9b\xf2\xac\x0f\xb5\x43\x4d\x0c\xc0\x51\x4a\xfd\xb0\x47\x3c\x8e\x2a\xa3\x35\x5a\xe6\x37\xee\x7b\x17\x82\x4a\x7a\xd6\xec\xf0\x39\xbc\xae\xeb\xbf\xa2\x6a\x15\x33\x09\xc9\xe8\xd5\xd4\xbe\xea\xc4\x73\xb0\xeb\x46\x46\xeb\xc1\xba\x8d\x6a\x33\x98\xd4\x29\x62\x86\x1d\x53\xa0\x0c\x77\x5f\xa8\x3d\x79\x1a\x49\x57\xfe\x6c\x85\x38\x3f\x1c\xae\xdd\x47\x2a\x11\x53\x37\x93\x3f\xae\x4d\x20\x49\x89\x14\xb8\xef\x43\xf8\xd9\x7f\x75\xaf\xfa\xa2\x36\x2a\x52\x6e\x7f\xc2\xfb\x1c\x5f\xee\xba\x0c\xd2\x34\x50\x64\xbe\x1f\xfe\x6e\xe4\xb9\x78\xe5\x1d\x0b\xaa\x39\x74\xee\x04\x62\x5d\x16\xa3\x5c\x32\x3d\xf5\x87\x8b\x5a\xb4\x04\x85\x9f\xec\xcb\x86\x8c\x06\x5b\x82\x38\x26\x62\x4e\xec\xa7\xfe\x99\xf6\x38\x9d\xb4\x10\x8b\xa4\x75\x76\x1e\x55\x4b\xed\x77\xf0\x7b\xe6\xc4\x5a\x20\x01\x8e\x98\xe7\x70\x29\x66\x91\x7e\x3e\xb9\x7f\xf2\xff\x2b\x7b\x6a\x9e\x4b\x07\xd7\xf4\x88\x25\x24\x8e\xc9\x88\xf0\xaa\xe4\x49\xdb\xef\xae\x4f\x1e\xaa\x02\xad\x47\xe3\x62\x63\xd2\xdd\xc9\xd5\xad\x63\x5c\x2e\x84\x39\x31\xd7\xa0\xfb\xd8\x7b\x9a\x7b\xab\x1f\x77\xb1\xf6\x3f\x0d\xe2\x37\x11\x32\xb5\x7c\x55\x86\xef\x04\x32\xe7\x84\xdf\x18\x3f\x7e\x24\x99\xf6\x7e\x22\x62\x3e\x1e\xdc\xa4\xe9\xe3\xf9\xcc\xa1\x7e\xc4\xcf\xba\x91\x89\xb6\x42\x81\xb8\x89\x2f\x34\x90\xde\x73\x4a\x73\xa3\x63\xd4\x1d\x2c\x2b\x4e\x55\x9e\x4a\x6e\x55\xdf\x71\xb1\xe7\xc5\x96\xad\x03\x99\xf7\x4d\x8a\xaf\xd2\x22\xea\x07\xe7\xe4\xa7\x77\x83\x86\x17\x76\x3d\x46\x79\x35\x45\x4e\x26\xbf\x4a\x0c\x23\x7e\x1d\x8c\x91\x78\x6c\xaf\xf0\xe1\x4c\xfa\x07\xf9\xc4\x88\xcd\x24\x55\x9b\x38\x1c\x3e\x64\x9c\xb6\x54\x35\xea\x36\xb2\xb9\x60\x6c\x27\xb8\xd1\x18\xed\xc5\xa6\xd0\xd6\x4d\xdd\x59\x50\xa6\x2a\x22\xec\xea\x07\xbe\x7b\x82\xb8\xae\x1c\x2a\x67\x07\xd7\xee\xd3\x12\x04\x52\x66\xc4\x8b\x05\xbc\x0c\x63\x28\xb0\xcd\x6c\xd0\x02\x65\xb4\x96\xcd\x05\xe3\x34\xc5\x2b\xc2\x0d\xc1\x44\x48\x1e\xf2\x7c\xf2\x25\x39\x17\x54\x58\xb0\x70\x30\x5e\xe6\x94\xaa\xf8\xa7\xcf\xe8\xb8\x6e\x66\xf8\xc3\xb7\x9e\x90\x71\x17\x85\x99\x10\xb6\x6d\x40\x15\xfb\xe8\x76\x15\xc7\x18\xb4\x19\xf8\xcc\x3a\x80\xe4\xb0\x85\xcb\xbe\xb1\xa7\x5b\xb7\x29\x2d\x49\x09\x2a\x15\x6c\x8e\x2c\xd1\x1e\x0f\x15\x76\x3c\x0b\x35\x14\x3a\x87\xbb\x8a\xd1\xce\x9a\xbd\xa2\x88\xc3\x35\xc9\xd6\x4a\x7d\xb5\x47\x44\xec\xa5\x38\xbb\x14\x73\x7d\x37\x21\x55\x73\xe7\x06\x9d\x3c\x5d\x21\x9e\xa4\x75\x8c\x5c\xaf\x8b\xae\x3a\x1e\x32\x6d\x1c\xc1\xc7\x32\xef\x07\x82\xa8\x55\x1b\x89\x06\x3e\x19\x0f\x14\xff\x1c\x31\xbf\x12\x53\x98\xe0\xe5\xbc\xe4\xbc\xfa\x12\xd8\xd8\x73\x51\x54\x7a\xf1\xbe\x14\xbf\x3b\x1e\xb8\xb0\x05\xaa\xaf\xca\x1f\x67\x2e\xdf\xae\x0d\x4d\x18\xc1\x4e\x41\xf2\x5d\x9f\x19\x9f\x5c\x46\x2b\xdc\xac\x1a\x87\x7f\xaf\x66\x3a\x25\x58\xdb\x42\x19\x61\xd5\x61\x5d\x6e\x45\xea\xc6\x88\x4a\x76\xfc\xd3\x0a\x04\x4d\x39\xed\xee\xf2\x2d\x8a\xa6\xc0\xa5\x68\x91\x87\x55\xf3\x21\xf8\x15\x50\xfd\x45\x25\x61\x2b\x9b\xfa\xe7\xa7\x92\x6f\x52\x8e\x2a\x5f\x21\x24\x78\xfb\xd8\x36\x00\x6a\x75\x4a\x50\x2d\xa9\x38\x46\x7b\xd2\x61\xde\x08\x37\x49\x6a\xd5\x9b\x5a\x92\xe1\xe3\xc8\xbf\x23\xf5\x4f\x6f\xe8\xc3\xbb\x02\xa9\x91\x82\x8f\xec\xa8\x2a\x4e\x6d\x78\x51\x6c\x18\x21\x98\x1e\xfe\x64\xa5\xa1\xbb\x3b\x33\xdc\x11\xe9\xce\x7e\xfa\xc6\x11\xf2\x52\x20\x1e\xe3\x61\x32\x9b\x0b\x96\xb5\x4c\x54\x27\xdd\x6d\x98\x16\x95\xea\x82\xa4\x09\x4c\x9f\xf9\xd0\x22\xcd\x90\xda\xf1\x30\x93\x2d\xe6\xe3\x37\x6a\xdb\xae\x4e\xb3\x9e\x45\x98\x34\x00\x0e\xfe\x76\x46\x0d\x5e\xcd\xa2\x00\xbd\xad\xdc\x35\x4a\x15\x6c\x89\x82\xe8\x6b\x5b\x44\x6e\xf0\x31\xe2\x60\x81\xdd\x4e\x6f\x3c\x7c\x45\x42\xf3\x47\x0b\x39\xff\xfb\xd8\x55\x20\x29\x73\x71\x13\x1e\xca\xe8\x5b\xa2\x93\x1f\x4a\x0c\x7b\xf2\xe3\xaf\x3d\xab\x7c\x46\x00\x57\x74\x20\xbd\xed\xd8\x20\xd6\x17\x9e\x87\xf1\x60\x94\xd8\x8f\xec\x1e\x05\xe2\xb0\xeb\xb3\x12\x96\xe0\xca\x83\x2f\x69\xb5\xad\x6d\xe3\x92\x72\x8d\x0a\xae\x95\xf0\xe1\x12\x76\x38\x24\x6b\xc0\xf8\x82\x24\xcd\x17\x19\xed\xe7\x2f\xf1\xf1\xe1\x20\x0b\xf6\x59\x95\x11\x59\xfa\x5f\x2c\xc1\x79\x1e\xc3\x48\xe6\x15\xa9\xdf\x6c\x6b\xaa\x69\xdc\x2a\x61\xc8\x6c\xf0\xee\xe4\x27\x57\x5e\xa5\xad\x85\x9c\x92\x47\x75\x45\xea\xc5\x15\xb0\x2a\x76\x39\xb9\x94\x3f\x87\xca\x5e\x00\x04\xf1\x6d\xcf\x17\xdd\x86\xd4\xb3\xcf\xf2\x41\x55\xf6\x2e\x3e\x8d\xf6\x04\xf6\xbb\x59\x51\x75\xbf\x8a\x34\x15\x96\xcd\x05\x13\xf7\xe8\xc6\x68\x55\x86\xc3\xcc\x22\xb6\xcd\x49\xfd\xe1\x1e\x60\xd4\xec\x33\xde\x4e\xe3\xc1\xf7\x7e\xad\x43\x4d\x9d\x30\xa2\xc9\x30\xf8\xe4\x52\x68\x1c\x2a\xfd\x23\x72\xc1\x52\x96\xdc\xc3\x65\x87\xd6\x23\xe3\xe0\xf2\x7e\xa5\x66\x84\x2b\x2a\x3a\x1c\xd3\xac\x56\x62\x2f\x21\xf9\x01\x3f\x78\xbc\xc9\x18\x00\x23\x3f\x82\x85\x6e\xdd\xda\x02\x69\x9c\xcc\xaf\x86\xb7\xea\x7f\x1e\x00\xc3\xdb\xaa\xcf\x58\xc2\xfc\x61\xf8\x68\x1d\x79\xe8\x70\xc5\x56\xd1\x3d\xb1\xc7\x26\x3b\xb0\x45\x6c\x17\xf2\xc8\xaf\x68\xed\x87\xb7\x8f\xab\x37\x76\x50\xb5\x2a\x70\x1b\xe9\xbd\x1b\x93\xd7\x6e\x11\x35\x70\x21\x69\x50\x96\xfa\xd8\x78\xd1\x32\x9e\x4f\xf3\x79\xee\xf0\xae\x58\x37\x13\x9e\x56\x59\x62\x8d\x60\x06\x7b\xc3\xa9\x9d\xcf\xab\xae\x63\x33\x5f\x2d\xf5\xd0\x2c\x19\x4a\xa4\xae\x83\x71\x53\x41\x6f\x71\x73\x8b\x7b\x7e\x26\x8d\x0f\x8d\x51\x41\xb9\xfc\x09\x50\xce\x8f\xe9\x52\xbd\x2b\xbb\x02\x0e\xeb\x37\x1e\xd0\xc6\xbe\xc4\xa5\x0e\x4a\x4c\x4a\xff\x34\x56\xdd\x13\x45\x5c\xa9\x34\xfb\x3c\x7f\xf9\x71\x80\xe3\xb6\xb8\xbc\x99\x83\x38\x61\xe0\xe1\x33\xba\x0a\x85\x93\xb8\xcf\x8d\x13\xdb\xa6\x24\xfe\xa0\x41\xed\x32\xc9\x56\x91\x5d\x1e\x94\x64\xb1\xff\xc2\x36\xfd\x3e\x65\xe2\x7c\x9e\x38\xaf\x4e\xdf\xb4\xd9\x51\x0b\x39\x37\x90\xfe\xee\xdc\x98\xdd\x90\x0f\x13\xb5\x8c\xb4\xb8\x30\x99\xef\xa2\x02\xbf\x27\x16\x68\xd4\x2c\x07\x4b\x0d\x94\xe0\xc0\x33\x40\x67\x66\x66\xa4\x33\x63\x7c\x74\xbb\x3e\x1a\xa3\x05\xd7\xf3\x8b\x45\xf9\xdf\x1e\x7f\x48\x6c\x86\x5b\x59\x18\xa0\x31\xd0\xb1\x9b\xf7\x8a\x68\xe3\x55\xad\x86\xcb\xe5\xc4\xc2\x97\x7b\x65\xdf\x15\x80\xec\x57\x08\x1f\x41\x82\x88\x3c\x1a\x4c\x95\xc3\xf5\x8d\x6b\xa1\x2f\xae\x8c\x9f\x77\x09\x78\x2a\x06\x9f\xdd\xaf\x4e\x72\x74\xf4\xb2\xb9\x60\xd4\x01\xf1\xe6\x33\x3b\xa5\x9e\x42\x78\x14\x8f\x8f\xbe\x54\xe6\x30\xbe\xbc\x1d\x91\x26\xdc\x97\x6f\xd2\x09\xfa\xd2\x70\xd8\xa9\x6d\xc2\x1c\x07\x97\x4b\xbb\xf2\x3b\xb0\x17\xa6\x80\x7d\x61\x2c\xbd\x76\x86\xcc\xd5\x1c\x4f\xb2\x49\x3e\xbe\x48\x55\x79\xb8\xaf\x8a\x19\xa9\x48\xf1\x82\x01\x63\xf5\xb9\x16\xa8\xdc\x57\x93\x7d\x8d\xfb\x36\x6a\xbb\xdf\x22\x5c\xdc\x9c\xd7\x43\xe3\xce\x6b\x86\xf9\xc8\x45\xcc\x4f\xf6\x9d\x0c\xef\x5e\x4d\xf9\x95\x83\xad\xf9\x8a\xca\x41\xc5\xd0\x79\x72\x83\xd8\x48\x44\xfc\x01\xc3\xea\x1a\x0a\x0a\x84\x30\x09\x48\xef\x69\x8e\x16\xbe\x8d\x3c\x01\x9c\x0b\x3a\xd7\xaa\x42\xaa\xc8\x84\xd9\xc8\xbf\x9d\x1e\xae\x04\xcd\xa2\xae\xc0\x7d\x73\x93\x83\x6c\xd7\x27\xae\x8b\x07\x1b\x64\x1b\x4f\xbe\x76\x55\xd4\x9a\x50\x81\x1f\xa2\x86\x6e\xc8\xe8\x80\x60\x86\x44\x47\x34\x02\x6a\xbe\x0d\x8c\xa6\x0b\x96\xa8\xed\xc3\x67\xd3\x3a\xef\x2a\xfd\xf2\x2c\xe0\xb0\x70\xab\xca\x7a\x2e\xf5\x4d\x06\xad\xde\x2b\x72\xfb\x00\xb7\xd8\xf1\x02\x56\x7d\x2b\x65\x0d\x94\xdc\xf2\x4f\x01\x1a\x6c\x05\x7b\xa8\x6a\x51\x16\xf9\xe6\x5f\x7c\x56\x1b\x44\x56\xab\x2c\xdc\x20\x52\xa4\xc6\xb8\x72\xb8\x78\xd9\x9b\xec\x3c\x72\x08\x72\xe0\xe0\xeb\x27\x9b\xc0\xb4\xd4\x97\x1c\xbf\xe0\xaa\x83\x4d\x73\xa8\x12\x43\x66\xec\x3a\x93\xee\x7c\x03\xa8\x14\xfa\x0e\x68\x77\x65\x56\x6d\x1d\x22\xcb\x16\xe1\x5b\xf2\x81\x02\x14\x95\x0c\x2b\xa0\x70\x29\x36\x1e\x8a\xf1\x88\x35\xee\x01\xa7\x6e\xfa\x79\x9a\x1b\x12\x27\x37\x47\x05\xf3\x63\x43\x92\x51\xa4\x97\x3a\xd8\x4d\x46\x11\x23\x37\x46\x57\x1e\x2c\xa0\x4a\x78\xb9\xab\x40\xf3\x95\x31\x9a\xf0\x86\x10\xf8\x8a\x35\xd3\xfb\xcf\x8e\xd1\xf2\xff\x3c\x51\x98\x80\x6a\x36\x17\x6c\x5f\xa5\xd1\x2a\x6c\x54\xc1\xd1\x7f\x7f\xff\x11\x15\xac\xf2\x42\x84\x33\xbe\x56\x9e\x6a\x07\x3d\x4d\x8f\x11\x53\x40\x04\x0d\xf7\xb5\x64\x49\x9f\xa7\x61\x48\x6a\x06\xdf\xa7\x66\xee\xd1\xf6\x59\x78\x39\xe5\x09\xf7\xea\x14\x4c\xc0\x49\xe7\x92\x6d\x61\x21\xae\x6d\x0f\x46\x8c\x49\x91\xe7\x64\xdb\x36\xbc\x4f\x80\x7e\x6d\x7e\x3d\x60\x98\xd6\xb0\x0f\x5b\xf2\x47\x0a\x9a\xa5\x83\xef\x59\xd2\x34\x30\xf3\x21\x03\xb8\xf4\xb9\x50\x73\xf9\x5f\x16\xca\xfa\x8d\x38\x25\x89\xa5\x34\xfe\xf0\x9a\xba\x63\xf9\x5c\x49\x58\x45\x1a\x73\x5f\x1b\x2e\x6f\xb4\xb0\xc4\x90\xf7\xd6\x8f\xb6\xeb\xd9\xa3\x49\x4b\xc2\xe8\x5d\xd2\x05\x5a\x5e\x04\x4e\xbe\xd8\x69\xb8\x56\x03\x4a\xa5\xde\x05\x1c\x4d\x8a\xe1\xb9\xb5\xb2\x45\xc6\xbb\x1a\x4b\x26\x8c\x00\xd9\x85\x59\x26\xfc\x44\xdf\xf1\xba\xa2\x3e\x87\x67\x3c\xb8\xaa\x57\x29\x01\xa0\x7c\x36\x17\x6c\x3c\xaa\xa5\x68\x9c\x04\x15\x5f\x83\xa9\x2e\x4f\x85\x3e\x2e\xca\x28\x1a\xb4\x37\x44\x78\x91\x2a\x65\x65\xa8\xe6\x9a\x9e\xd1\x35\x1c\x8a\x68\xe1\x30\x2a\x6f\x12\x2e\x6f\xd9\x5b\x7a\x6e\x9b\xdf\x54\x5e\xfc\xfa\xa4\x46\xef\x46\x49\x18\x6b\xea\xec\xc3\x00\xc4\x67\xd3\xba\x70\xf6\x9b\x77\x4e\xb7\x7e\xac\x60\xe4\xd0\xa8\xc3\xf9\xe0\x73\x31\x4a\xae\x2b\x11\x45\x2f\x58\x07\x64\x29\x9d\x22\x72\x84\x8a\xfd\x6b\x73\x94\xef\x4d\xb3\x0d\xab\x51\xbb\x11\x40\x98\x18\x72\x4a\x12\xa4\xf2\x17\x9d\xee\xca\x68\x91\x9b\xd0\xc5\x07\xf1\x97\x0f\xeb\xec\xf9\x28\xfd\xcd\x7c\xba\x98\xfc\x15\xf3\x6d\x2c\xb0\x8c\xdf\x59\xdb\x3c\x59\xf1\xb9\xb2\xbb\xe0\xa1\x7c\x6e\x81\x88\xa2\x0c\x15\x88\x00\xee\x2d\x5a\xda\x0a\x2a\x28\x93\xb2\x68\xcf\xfd\xf7\xb1\x48\xcc\x87\x95\xa0\x79\x42\x6a\xce\x05\x52\x62\xdd\x42\xcc\x86\xae\x85\xa9\x4d\xe7\xb5\x27\xe2\x85\xf5\xfe\x14\x8f\x8a\x1e\x68\xf0\xbf\xf3\xae\x8a\x7e\x25\x95\x58\xf4\x13\x3e\xf7\xe2\xb6\x68\x35\x2b\xd5\x84\xe3\x72\x2a\x3d\x46\x23\x7b\x61\x9b\xe0\x5a\xbc\xdf\xfe\x73\xc6\x08\x40\x84\xae\x56\x11\x5f\xe6\x03\x7b\x40\xc8\x32\x3d\x52\x8b\x0c\x40\x5b\x86\x6b\x0b\x65\x21\x56\x52\x54\xd4\xf4\xf5\x8f\x82\xbd\xe3\xcb\x36\x50\xea\xd1\x7c\x12\x1b\x18\xb1\xba\x93\x39\xc2\xee\xb7\xe3\x2f\x41\x0a\x89\x5c\x3e\xfd\xe4\xf2\x16\xf0\x29\xc3\xd5\xe6\x9f\x66\xd9\x1e\x20\x9c\x48\xc2\xca\xa9\xca\x47\x43\xdd\x27\x81\xa6\x0f\x65\x02\xfa\xfa\xfb\x27\xb4\x1b\xba\xa2\xc9\x75\x06\xf7\x6b\xb7\x94\xc7\x7c\xa7\x2c\x32\x8b\x5f\x8f\x8e\x25\x30\xf2\x75\x1c\x45\x76\x7a\x4c\x5c\x3a\xcb\x4c\xe4\x45\x28\x7d\xe3\x47\x8b\x34\xf4\x08\x6a\x1e\xc3\x3d\xb8\x08\x4a\xff\xa0\x0a\x66\x26\xcf\xcd\x7e\xb6\x1e\xd4\xac\x16\xad\x4a\x0c\xc1\x95\x4b\x92\x1f\xdd\xb5\x88\xe6\xf7\x60\x9c\x95\x92\xa5\x55\x81\x6f\x4c\xff\xcf\x92\xf8\xe2\xb1\x71\x25\x9b\x0b\x6e\xd8\x1b\x77\x99\x4a\xbc\x6f\x39\xc2\x52\x02\x1a\x08\xb6\x12\xb7\x1f\x01\x7d\x5c\x86\x1d\x62\xf2\x45\xa5\x77\x03\xd1\xf7\x46\xa5\x8a\x3c\x4b\x28\x7c\x3e\x37\x46\x27\x32\x30\x57\x98\xae\xdc\x7e\x34\xb9\xa0\xd3\x66\x5f\x37\x5b\x62\x09\xd3\x5d\x3b\x75\x8d\x6e\x87\x0f\xbc\x45\xe5\x78\x6e\x57\x5c\x39\x15\x7c\x60\xc7\x7d\xdb\x11\x05\x3e\xaa\x84\x57\xdd\x94\x1e\xb5\xe1\xb2\x79\x29\x2c\x91\xfa\xcc\xbd\x1a\x13\xc1\x2f\x09\x2a\xcb\xbc\x75\xad\xe0\x36\x72\x49\x41\xba\x38\x1a\xdf\x3e\x35\x98\xe4\x78\x43\xa2\x04\xd3\x9b\x2f\x52\xd7\x3d\x23\x6e\x99\xb7\x7a\x8c\x5e\x05\x85\x9a\xc8\x17\x29\x73\xa1\x6c\x8d\x5a\x18\x09\x02\x4f\xe6\x8e\x23\x02\xab\x7d\x53\x3f\x66\xa4\x49\x59\xe5\x8d\x11\xb0\x57\x54\xe1\x95\xff\x6a\x39\x2d\x34\x2d\x1c\xb5\xef\x53\x7d\x0f\x8c\x80\xd5\x20\xa7\x06\x06\xab\x76\xe9\xc4\x65\xce\xaf\xe6\x0b\x78\x66\x2a\x38\x31\x82\xde\xc9\x11\x9c\x63\xae\x02\x07\xc9\x6e\xe2\x15\x0f\x64\x56\x8f\x8e\xbf\x13\xae\xf0\xcc\xeb\xf8\x82\xd1\x90\xa3\x10\x1b\xc0\xf2\x53\xf5\xf0\xf1\xf8\xcf\x1b\xbe\x97\xcd\x05\xe7\x85\x49\x28\xcf\x33\x78\x3a\x1d\x03\xa6\xc7\x6b\x06\x9b\x26\x66\x1e\x22\x4e\x44\xdd\x33\xfe\xed\xa1\x36\x80\x9a\xb0\x6b\x48\x44\xea\x70\xf9\x1f\x02\x8e\x30\x42\x26\x90\xf7\xf8\xef\x56\x9b\x84\x41\x07\xf8\x2f\x6c\x56\x83\xcf\x19\x9d\xd9\x5c\xf0\xe1\x6a\xfc\x97\x75\x0c\x4d\xdc\xe9\xc9\x21\xf2\xfd\x2a\x22\xc0\xdc\xdf\xa7\x23\x7c\x0a\x42\xb3\x57\xba\x3c\x67\x88\x96\xb4\xfb\x4e\x1e\xd9\xdc\xc6\x3b\x02\x12\xfc\xd3\x0b\x1a\xbc\x47\x5a\x60\xcb\x7e\x69\x65\xa1\xc4\x9b\x79\xc8\xe3\x10\xb1\xfb\x2f\xd0\x6e\x68\x64\x72\x87\x3a\x89\xae\xec\x2f\xc2\xce\xbe\xcd\x2b\xfc\xd4\x6e\x2d\x1a\xfb\x0e\x0a\x77\x4f\x94\x6d\x67\xb7\x8c\x50\xc9\x72\x6c\xa7\xbb\x7f\x9b\xde\x58\x34\x91\x6d\xcb\xc1\x55\xaa\x47\x55\xc3\x36\x2e\x61\xa7\x80\x12\x6b\xfa\xfc\xc1\x76\x20\x20\xa9\x94\x0c\xc4\xd8\xed\xdb\x4f\xa8\xc4\x87\xb7\x8d\x4e\x6c\x01\x5c\x09\xc7\x23\x59\x33\xac\x33\xc3\xc7\xbc\xfb\xcc\xb0\xf8\xa7\x1e\x27\xfe\x0c\xa4\xd7\x4c\xd0\x54\x1c\x22\xcd\x53\x7e\xf9\x0e\x7b\x49\xad\x00\xa3\x7e\x89\xe3\x46\x7a\x8e\xeb\x98\x71\x93\xd6\x38\x33\x4c\x20\x01\xfe\x61\x41\xdc\x80\x10\x8a\xc8\x27\x02\x20\x21\x5d\x2c\x8a\x46\x74\xfa\x07\x67\x35\x86\x7b\x44\xce\x11\x0f\x6b\xfe\xc6\x36\x05\x76\x44\x70\x37\xcf\x7a\xf0\x52\xd5\xe0\xe0\x29\xc1\xf0\x3e\xe9\xd7\x45\x4a\x88\x61\xcf\xe3\x97\xe3\x97\x81\xd0\xa4\xeb\x33\x8e\x4b\x0f\x7a\x8f\x5e\xab\x55\x4b\x25\xe2\x21\x7b\x10\xed\x99\xdf\xcb\xce\x39\xee\x23\x22\x03\xca\xcc\xde\x15\xdf\xe3\x36\x6f\x2f\xec\x1c\xa3\x1b\xe9\x99\x42\x1d\x42\xdc\xb3\x77\x6b\xad\x26\x07\x97\xa8\x17\xc1\xc9\x84\xaa\xd0\xfa\x17\xb5\x56\x23\xf1\x64\xeb\x3e\x78\x77\x2b\x18\x16\x93\x32\xb6\x89\xc5\xb5\x5b\x07\x52\x7f\xcd\x68\x46\xf7\xe1\xd5\xcb\x10\x71\x63\xc9\xb1\xf4\xd2\xeb\xd5\x81\x9e\x3e\x2b\x21\x83\x72\xeb\x01\xdd\xc6\x95\x09\x96\x44\xd0\xb2\xba\x5d\xaf\x4d\xb1\x47\x64\x85\x3f\x90\xb9\xe4\x3d\x8d\x49\xc8\x87\x64\x9e\x3c\x7b\x99\x69\xe3\xe2\xd5\xa9\x87\x27\x25\xb8\xdb\x69\x52\xda\x25\x11\x5c\x69\xf9\x81\x11\x40\xb0\x59\x32\x2e\x8d\x2e\x4d\x0d\xd8\x35\x2d\x5c\x91\x87\x37\x63\x3d\x21\x9e\xf1\x7c\x64\x93\x62\xec\x9a\x31\x65\xdc\x38\xad\x38\xf4\x06\xe9\xba\x1b\xdf\xb8\x70\x74\x54\xc4\x21\xae\xb7\xee\x51\xa1\xed\xc8\x95\x1d\x9f\x50\x9b\xdc\xa1\x62\xf3\x78\x0b\x80\xa6\x2a\x8d\x98\x6e\xe1\x5f\xaf\xd9\xa6\x8a\x2d\xaa\xab\xfb\x6f\x6f\xb6\xa9\xad\x54\xa5\x87\xed\xb9\x97\xe3\x05\xea\x98\x39\x9b\x8b\xc0\x0a\xdd\xf5\xec\x4d\x05\xae\xf8\x66\xc2\xc4\xcb\x28\x1b\xad\x09\x95\x21\xd3\x17\xfa\xac\xa9\x65\x9a\x38\x17\xf7\xda\xc5\xa8\x22\xd3\xca\xeb\x27\x00\xbb\x1c\xbf\x6c\xd1\x1a\x44\xe6\xfe\xe5\x01\x4d\x37\xc2\x2f\x11\x8f\xd4\xa4\x08\xe9\x27\xc1\xb7\x16\xc2\x9e\x92\xd7\x30\xff\x29\x40\xf3\x70\x1b\xa6\x25\xb9\x9d\xef\x1f\x2f\x80\x41\xd3\x66\x72\x5c\xd1\x8f\x5e\x89\x3b\x05\x0e\x65\x90\xb2\x73\xc7\x09\xfd\x02\xcc\x63\xdb\x95\x24\x37\x97\x81\xee\x3d\x75\x6a\x34\x1a\x9d\x5f\x23\x01\x95\xcb\x70\x2d\xdc\x24\x91\x7d\xdd\xc5\x2a\x4b\xaa\xd0\x42\xa4\x0e\xf1\x68\xaf\x48\x09\x27\xca\xf9\xbb\x9d\xcd\x05\x7f\x98\x1c\x29\xc0\xfa\x8e\x98\xcc\xa6\xae\x58\x07\x66\x24\x1e\x23\x91\x26\x79\xea\x57\xcf\x8a\xff\xef\x57\x19\x95\x9f\x20\xb8\x51\x22\xd1\xab\xc8\x2c\xf3\xbc\xe3\x09\x43\xab\x6b\xf9\x6e\xaa\x2b\x04\x62\x26\x7d\x58\x61\x29\xb8\xf7\x13\x0f\x00\xd6\x23\x5a\x9f\x83\x52\x96\xb4\x6f\xcc\xac\x78\x53\x6d\x43\x5c\x97\x59\xc3\x0f\xbd\xe4\x5d\xcb\x85\x28\x2a\x24\x12\x1b\xae\x1c\x96\x8c\x03\x8b\x44\xb6\x5a\xf7\x69\x36\xcd\x45\x46\xa5\x85\xe3\x9d\xcf\x34\xb9\x3b\x46\xba\x79\xa9\x0f\x05\x91\xcf\x7a\xe4\x5c\xc8\xbb\x55\x6f\x68\xe5\x11\xb5\x7d\xe8\xe9\x6c\x34\xf6\xab\x74\x1f\xd9\x79\xbf\x12\xae\x40\xe1\xe9\xb1\x50\x02\xc7\xa5\x76\xad\x89\x48\x97\x7a\x67\x0c\xbc\xde\x8a\x38\xeb\x7a\x0d\xa1\xba\xf0\xb9\x13\x57\x69\x49\xad\x13\xf1\xfc\x25\xd0\xa4\x5d\xde\x04\x91\x57\x3b\x3f\x16\xd5\x03\xc3\x80\x4a\x62\x9d\x8f\xb0\xf6\x8a\xba\xef\x66\x69\xd5\xa2\x8e\xc1\x03\x17\x5d\x1a\x3f\x57\x9e\xf9\xad\x7b\x45\xa5\xff\xbe\x53\x44\x44\x88\x3e\xa5\x8b\x73\x92\x6b\xd6\xd9\xdd\xd9\x19\xcd\x74\x26\x2e\x02\x82\x07\xd4\x67\x42\xc1\xc0\x28\x6a\x5c\xf5\x1a\x35\x65\x3f\x27\xdc\x1d\xdd\xaa\xba\xf6\x1d\xdf\xf5\xe5\xc8\xac\xf1\x88\x9e\xc9\xdb\x22\x21\x0f\xfe\x01\x14\x2c\x0d\xea\x33\x17\xdb\x45\x2e\x8a\x74\x44\x3a\xd4\xb8\x2e\x76\xdd\x88\x0e\xb9\xe5\x94\x2e\x81\x10\x26\xb7\x1d\xd2\xe4\xfe\x4a\xd5\xa4\xf5\x7c\x16\xbe\x4c\xea\xb9\x45\xc3\x40\x1e\xec\xf3\x5e\xf4\x0f\x4e\xab\x8e\x61\xdd\x82\x9e\x22\x99\x75\xc7\x34\xd3\xde\x30\x5b\x40\x6c\xb0\x76\x55\x66\xd3\x78\x6d\xbf\x09\x4a\xd1\x1c\xae\xc9\xb2\x4e\x35\x98\xab\x88\xa7\xeb\xa3\x5f\x93\xb3\x67\x0b\x9a\xea\xdc\x30\x66\x30\x04\x40\x72\x8a\xf5\x6f\x8f\x24\x77\x0c\x45\x65\xbe\x63\x62\x2c\x5a\xfa\xd7\x13\x92\xda\x29\x1e\xb6\x71\xd5\xa2\xce\xe0\x8d\xe7\x6f\x3d\x0e\x61\x30\xa8\x1f\x54\x68\xb7\xdf\xa2\x7d\x27\xd3\x8b\xa0\xe1\xa9\x7f\xeb\x69\x81\x50\x38\x29\x61\x68\xdc\xb6\x6d\x24\x4c\xfc\x31\x12\xae\x8a\xc6\xed\x9a\x3b\x30\x23\x35\x64\x0b\xaa\x51\xd0\xd5\x25\x5d\xaf\x10\xc3\x45\x5f\x7a\xca\x7c\x7e\x32\xc4\xc9\xb1\x32\xf6\x24\xcf\x3d\xfd\x7f\x9a\x3d\x5e\x95\xd1\x2a\x75\xe3\xbc\x38\x3d\xf6\x00\x10\x76\x65\xd4\xc4\x42\x9b\x3c\x78\x23\xa3\xd2\x04\x2c\x54\xd6\x23\x39\x75\xfb\xd9\x24\x41\x71\x5a\x97\x88\x62\x5b\xba\x5a\x92\xb0\x60\x11\xba\x9d\x2b\x3f\xa8\xe4\x18\xa9\x4d\x4d\xe4\x73\x6b\x96\xe4\xf0\xfb\xca\x40\x2d\x2c\xa9\x54\xc3\xe4\x5c\xb2\xae\xd3\x13\x56\x68\x1d\x00\x8e\x60\x15\x03\x8a\x91\xda\xa4\x3a\x52\xf7\x89\x0e\xe2\xf9\x71\x7a\x41\x2b\x80\xcc\x3c\x85\xed\x96\xe3\xaf\x02\x72\x4a\x58\xe8\x1d\xfd\x7d\x15\x22\x59\x44\x5b\x46\xa8\xbb\x0e\xa4\x9f\x7f\x5b\x27\x7d\x70\x43\x24\x89\xf2\xaa\xbc\x04\xbb\x21\x05\x8c\x2b\xfc\x11\x1f\xdd\x37\x02\xf6\x89\x05\x60\xc6\xb8\xe4\x75\x8d\xfb\x26\x10\xc5\xfc\x23\x7c\x7d\x6c\xb2\x4c\x0e\xf3\x0e\x71\x32\xd0\xde\x16\x78\xf8\x18\xe6\x7d\x21\xe3\xc0\x54\x1d\x64\xc0\x18\x29\xd0\x41\x4f\x9e\xf1\xeb\x27\x34\x01\x60\x5a\x23\x58\x66\x6a\xc1\x58\xc5\xc0\x8f\x4e\xde\x29\xe0\x06\x80\xb1\x17\x91\x06\x8d\x4b\x56\x0d\x03\x3d\xda\x3e\x9e\x6b\x7f\xb1\x2a\xa9\xdf\xa4\xe0\x12\x0e\x3b\x30\x0a\xbb\xc0\xf4\xad\x0f\x33\x53\xc2\xba\x66\xae\xd5\xfb\x3e\x12\xdc\xae\xa0\xbc\x9f\xd9\xcd\xff\x6b\xf8\xdb\xa5\xf3\xc0\x39\x5b\x78\x32\xfe\x90\xe5\x0e\x9e\x77\x65\x94\xb3\x50\xbf\x88\x59\xec\x80\x0c\xce\x36\xd7\x8e\x1e\xc8\x94\xda\x75\x21\x90\x06\x71\x4a\x51\xb0\xca\x0c\x7b\x3d\x2e\x45\xfb\x88\x05\xee\x98\xe3\x17\xb5\x81\x16\x83\x09\x1b\x84\xbf\x03\x25\x60\xc9\xf6\x85\x1a\xc4\xfb\x9b\x66\x61\x9c\x75\x15\xeb\x0b\xbb\x80\x4d\xc7\xb8\xe8\x0a\x8f\xa6\x7f\xf7\x1a\x18\xc4\x20\xe6\x35\x4a\x11\x75\x39\xf5\x25\xcd\x0b\xd3\x77\x71\x64\x26\x99\xca\xbf\xa0\xc6\x49\xb0\x84\x08\xab\x19\x47\x3d\x9f\xd8\xb2\xe0\x75\x7e\xad\xd8\xd8\xc9\xce\xd2\x11\x30\x1f\x78\xad\x05\xcc\xc3\x28\x13\x68\xad\xf4\x75\xa3\x93\x40\x34\xbf\x2a\xc9\x94\x3d\x8f\x69\x29\x3c\xf2\x6d\x4f\x72\xff\x56\x6d\xd2\xe5\xff\x18\x46\x85\xc6\x14\x96\xe7\x69\x90\xf9\xda\x28\x38\x93\x60\x05\x9b\xd6\x38\x90\xf8\xd8\x3c\x71\xb5\xdd\x7e\xd7\x4d\x8b\x6e\x8a\xb6\xc1\xdf\xbf\xa5\x83\x9c\x19\xa3\xf5\x44\x7e\x94\xfa\x8a\x36\x0a\x37\x91\xd3\x31\x65\xe2\xc4\xf0\x73\x9e\x3e\x19\x09\xee\x3a\x38\x16\x9e\x34\xfe\xf3\xe4\x07\xb5\x17\xb5\xcb\xc8\x11\x3a\xa3\x2a\xcf\x9e\x72\x0c\xd0\x23\xd4\x68\x2a\xf8\xe4\xcb\x9a\x53\x00\x8f\x3c\x88\x00\x02\xd9\x80\x71\xeb\xaa\x61\x6a\x44\x29\xb2\x93\x5b\x36\x80\x3e\x6c\x95\xf9\x22\x8f\xbb\xea\xbc\x22\x6c\xb1\x28\x2b\x4c\xdf\xb7\x4b\x24\x28\xbc\x4c\x47\xcc\xb3\x18\xf1\xb8\xc9\x4d\xfa\xce\xd5\x4a\xde\x2e\x0c\x56\x42\x12\x3b\x79\xca\xdf\xda\xa4\x3e\x39\xf7\x4b\xc8\x4a\xc1\xb3\x1f\x75\x88\x8e\x64\x57\x57\x47\x77\xb8\x10\xfe\x26\xdd\x87\xdf\x2d\xbb\x52\xc7\x39\xf8\xeb\x2b\x7a\xc6\x50\x52\xb2\xc7\xe9\xb6\x67\x34\xef\xd7\x58\x2d\x67\x4a\x9d\xcb\x40\xa7\x8e\xac\x4c\x3e\xba\x30\xe3\xc3\x02\xff\x4a\x23\x5d\xdb\xdb\x66\x4c\x6e\x3e\x30\xc2\x7d\xb4\x39\xfe\x06\xcf\x7b\x83\xea\x39\x8a\x43\xff\xbe\xb3\xcd\xe6\xf5\x0c\xc5\x67\xfc\xef\x1f\xd1\x14\xfe\x0a\x68\x50\x79\xb4\x3f\x6f\x02\x23\xb3\x2a\x86\x53\xd1\xf4\xec\xd5\x1a\x74\x92\x27\x70\x62\x2c\x7c\xdf\xcb\xad\x20\x35\x70\x19\xae\x22\xc2\xcb\x8a\xee\xf5\xad\xca\x10\x0b\x4e\x89\x0e\x9d\x1e\x2a\xeb\x29\xbf\x52\xe5\x1a\x20\xe9\x7d\x73\x55\x4a\x17\xb9\x4f\x87\x15\xff\x2b\x63\x9a\x56\x52\x30\x0a\xe3\x7c\xfb\xbf\x0f\xeb\x65\x54\x05\x11\x67\x8a\x00\x1c\x5c\xbe\x62\x18\x08\x4e\x0e\xef\xc5\x64\x5e\x07\xbb\x9b\xdb\x85\x52\x3e\x45\x4b\xff\xb9\x6d\x34\x58\x00\xca\x3c\x57\x69\xf3\x18\x1f\x19\x0a\x3a\x1d\xb5\x6c\x2e\xf8\xc7\x73\xba\xa2\x3c\x47\x07\xca\xc6\xdc\xc8\x73\xe3\x40\x9b\x92\x7a\xff\x0f\x26\x43\xbb\x90\xe7\xca\xde\xca\x30\x6a\xc6\xde\x3d\xba\x4e\xe3\xf5\x10\xc7\x1b\x54\xc9\xd4\xd8\x7b\x4c\x17\x5e\x75\xbd\x2a\x75\xb8\xaa\x24\x4f\x99\xdf\x19\xa2\xef\x11\xbb\x28\x46\x4e\x3c\xf6\xd2\x0d\xc9\x8b\xa4\x44\x98\x2d\x78\x95\xa9\xaf\x4c\xd5\x3d\x02\x3d\x12\x57\x3b\x29\xb7\x55\xf7\xec\x67\x9c\x59\x2e\x36\xf9\xff\xcd\x4d\xa6\xc6\x05\x5c\xe4\x78\xac\xe6\xaf\x10\xbc\xdb\x02\x1c\x42\xc3\x3d\xc4\xa2\x2b\x7d\x20\xbd\xe2\x89\x76\x18\x9e\x75\xfc\xe0\xab\x67\x95\x74\x55\x8d\xb0\x12\x71\x48\xb3\x70\xc6\x2f\x35\x87\xb5\x32\xc6\xd5\x68\x0b\xfd\x71\xb7\xa4\x8c\x53\x26\xcb\x3c\xe3\x6b\x47\x06\xc9\x79\x4c\x29\xdc\x61\xbc\x7a\x40\x97\x2c\x43\x52\xca\x3a\xfd\xdb\x23\xcd\x68\x06\xce\x7d\x97\xb6\xf0\x37\x6f\x54\x72\xd5\x76\xb3\xfc\xdc\xe9\xa7\x45\x79\x3f\x9f\x56\xb8\x30\xb5\x8c\x93\x7f\x7c\x41\x1f\x59\x17\x08\x95\xc7\x7f\xf5\x23\xe2\x6a\xe3\xce\x7d\xb9\xe0\xa2\x31\xb0\x3b\xed\xcb\xc6\xff\x38\xa0\x06\x54\xc5\xcc\x94\x58\x69\xe3\xcc\xc2\xd1\xf0\xf0\xaa\x6b\x8a\xdf\x51\x93\xe3\x1b\xba\x84\x23\x89\xc7\x35\xe7\x9b\x6c\x93\xc3\x9d\xe6\xc4\x86\xbc\xe9\x0f\x6f\x89\xcf\x7d\x2f\xcd\x43\x81\xbf\xd3\xe2\x6e\xef\xf1\x1d\x84\x6b\x00\x48\x7e\xdb\xe1\xf8\x70\xf5\x72\x52\xea\xfa\xb5\x3a\x36\xd0\x31\xad\x78\x4c\xb8\x62\x12\xb0\xb7\x24\x25\x4b\x10\xbe\x1e\xd8\xdf\x94\xf1\x57\xb8\x15\x8a\x80\x90\x7f\x63\x0c\xc8\x68\x30\x76\x90\xe9\xc9\x0a\xd1\x78\x60\xa5\x86\xc2\x0d\x4f\xa3\x34\xdc\xe5\x1b\xf0\xe1\x2d\x5a\x40\xf0\x5d\x97\x20\x81\x10\x0e\x2a\x4f\x8f\x04\x2f\x6c\x96\xb9\x6a\x66\x2e\xf8\xe0\x02\xcd\xcb\xdb\xc6\x55\x4f\xea\x07\x7d\x2a\xa3\x4a\xbd\x22\x62\xe1\x5f\xd7\x9a\xac\x9a\x4c\x5c\xf5\xfc\x78\x5f\xb5\xb6\x5d\x0e\xf2\x94\x0a\x71\x84\xe9\xb3\x04\x92\xdf\xd9\xad\x26\x51\x56\x23\x9b\x0b\xfe\xf8\x90\xec\x6b\xf3\x79\x29\x17\x3e\x4f\xef\xd5\xa4\x97\x71\xc4\x7d\xa8\x2f\xd7\x48\x24\x88\xd9\x54\x02\x0a\x83\x2f\xcd\x13\x89\xc4\xdd\x96\x0f\xae\xf0\x9b\xde\x1b\x03\xe1\xf0\x0d\xdc\x4c\x69\xb8\xf3\xdd\x61\x60\x23\x72\xe1\xef\xd4\xd5\x05\x30\xca\x2d\x22\x07\xb9\x0d\x1c\x5e\xa6\x5b\x17\x88\x0c\x88\x83\x0c\xa4\x42\x48\xaa\xed\xb8\x38\x0b\x0b\xfc\x12\x6c\x54\x14\x56\x48\xf7\x5b\x9b\x9a\x5c\xec\xc5\x7e\x4b\xfc\x80\xfa\xa2\x9f\x95\xbe\x66\xb3\x1e\x12\x3c\xc2\x64\xef\xe0\xfc\x10\xed\x24\x15\xc2\xfc\x4d\xe4\x76\xfb\x7a\xc4\xa7\x98\xbf\xe0\xe6\x15\x4b\x73\x8b\x6e\x5e\xce\x0d\x7a\xe7\x42\x23\x3d\x95\xe0\x3f\x2f\xb5\xda\xfc\x52\x89\x4f\x07\xb2\xb9\x60\xda\xba\xe4\x0a\x57\xfc\xc8\x22\x26\x60\x63\xb4\x4b\xd4\x29\x70\x3f\x8c\x38\xed\x37\x9e\x5b\x29\x2e\xa1\x69\x5d\x33\x25\xc4\x30\xfd\x51\xe0\x8d\x9f\x27\xfc\x7d\xb2\xb9\x60\x42\xbb\xbe\xcf\x71\x0d\x11\xce\x89\xe1\xe5\x68\xf0\x9c\x66\x82\xe6\x98\x4c\xa8\x4f\x71\xdc\x74\xf8\x4c\xb7\x4d\x95\xd8\x67\x2b\x96\x82\xc9\xf4\x81\xd9\x00\xb7\xbf\xe7\x35\xd6\x95\x55\xf5\xd3\x5e\x64\x96\xc3\x68\x1d\x6c\x7c\x4c\xdc\x38\x48\x74\xb5\xd7\x1b\xc0\x07\x9b\x54\x08\x3f\x53\x17\xd5\xda\x61\x1b\x4c\x34\x05\xe3\x03\x3f\xf5\xa4\x6e\x9a\xec\xbb\x1e\x57\x08\x93\x69\xe0\x3f\x3d\x03\x4c\x6f\x88\x53\x88\xbb\x86\x1f\x3d\x2b\xee\x90\x79\x0c\x3b\x85\x44\x56\x31\xe3\xf4\x08\xd0\x63\x73\x64\x1f\x60\xbf\x05\xac\x8f\x89\x29\xd5\x13\x33\x37\x6f\xd1\x6f\x31\xc7\x35\x09\x76\xcc\xc8\x6a\x29\x3d\x7d\xbc\x72\xf5\x41\x79\xf0\x3e\xcf\x6e\x18\x55\x8f\xaa\x75\xd7\x25\x42\xb0\x98\x47\xd1\x1f\x77\x0e\x07\x8d\x23\xca\x61\x01\xa9\x25\xad\xc9\x20\xee\x9a\x16\xa5\xf6\x60\xb2\xa4\xb3\xc7\x24\x93\xf3\x2a\xf2\x18\x31\xcb\x49\xdc\x65\xea\x17\x5f\x4e\x76\x21\xf2\x22\x84\x1b\xcf\xdf\xa2\xae\x21\xec\xb8\xbe\x14\xa1\x35\xfe\xbc\x7f\x34\xa8\x64\xfb\x88\x09\xce\x92\x31\x61\x88\xea\x8c\x5b\xbe\xeb\x62\x88\xe6\x49\xbd\xf8\x7a\x24\x2b\x51\xc5\xc8\xc3\x05\x69\x09\xf4\xb9\xa7\x35\x6d\xb6\x35\x3e\x92\xec\x91\xfb\x5f\x1a\xa7\xdd\xa4\xc8\x71\x39\xcf\x48\x34\x52\x24\x6b\xeb\xd3\x3b\xdb\x21\xa8\xae\x86\x6c\x02\xb2\xcd\x54\xe1\xca\x26\x61\x03\xd9\x65\x95\x96\xa1\xb5\xc3\xb2\xc7\x3e\x7d\x76\xf8\x72\x63\xba\x01\x56\xdc\xa6\xae\x38\x27\x73\xb6\x40\x70\x16\x4f\x09\xf8\x0e\xea\x7d\x71\x10\xb7\xb6\x2a\x62\xe1\x7d\x2f\x4e\xeb\x4d\x00\x3a\xab\xe4\xee\x83\x77\x67\x69\xa8\x3b\x9a\xe7\x6a\x21\xd2\x03\xe4\xa1\xd7\xb4\xde\x06\x87\xd4\x89\x69\xf2\x3f\x6e\x49\x9e\x7f\xae\x8e\x45\xfa\xe5\xe0\x8b\x6f\x9e\x9d\x07\x87\xc1\xd2\x85\x77\x1d\xdf\xde\xae\x65\x57\x16\x71\x62\x94\x5f\xda\xbd\xfe\x92\x38\xca\x87\xff\x7e\xaf\x17\x78\x9e\x12\x1b\x57\x2a\xa2\x4f\x72\xc5\x52\xe9\x30\x88\x4b\xa5\x04\xd4\xe7\x85\x07\x80\xb0\xbf\x53\x44\x9e\x2f\x5d\xbd\x8d\xf2\x13\x02\x73\xb9\xac\xe7\xa6\xa6\x5c\xb3\xe3\xb8\x84\x0e\x61\x96\xa7\x0e\x7c\x3d\xb6\x24\xf9\xf4\x9d\x06\xf7\x8c\xd7\xf3\xb5\x25\xef\xaa\x0e\xf9\x8c\x99\x1d\xe2\xae\x7b\xac\x25\x8e\x60\xd3\x66\x4c\xe7\x46\xda\x9b\xc7\x80\xdc\xdd\x43\xdc\x3b\x25\xf9\x4a\xf5\xad\xba\xb4\x28\x33\x31\x83\xe5\x68\xa6\x78\xfd\xb0\xe8\xcb\xfb\x36\x12\xd1\x72\xcd\x3d\xaa\x2a\x98\x36\xbb\x7b\x1a\x37\xce\xda\x95\xbc\xbb\xbb\x67\x45\xf5\xd3\x27\x1e\xd2\xc4\xb0\x10\xcf\x12\xe5\x56\xae\x2d\x1e\x05\xa8\x4c\x85\x12\xef\x7a\xf0\x07\xfa\x1d\x60\x95\xc4\xdb\x5c\x61\xb2\x30\xf9\x9c\xca\xb7\x7a\x71\xb1\x88\x99\x4b\x1d\xd9\xaf\x4f\x7f\xe7\x61\xa5\xd3\x27\x3c\xa4\x9a\x16\x7f\xd2\x56\xbd\x34\xf5\x9d\x58\xe9\xc9\xf8\x44\xa0\x78\xb1\x09\x97\xf5\x4f\xed\x8c\x57\xd7\x0a\x13\xbf\x60\x7d\x6b\x13\x4a\xd5\xc6\xd2\x91\xef\xd8\x4b\x70\x5b\x94\x7c\xd7\xc2\x42\x90\x6c\xf9\x33\xf1\xfc\x39\x2c\xf1\x20\xf5\xa8\xe3\xb0\x2a\xaa\x4a\x5c\x78\x5d\x4c\x8b\xc6\x3c\xa8\x29\xf2\x23\xb7\x2c\x9b\x6e\xef\x6e\x81\x88\x76\xe2\x99\x16\x12\x68\xbc\xaf\xbe\xd5\x54\xf4\x31\xbf\x1a\x49\x8e\xf0\x48\xfd\x0e\x30\x90\x2c\xda\x58\xf4\xba\x7a\x0e\x27\xcd\xf0\x6c\x9b\x08\x26\x91\x0c\x1d\x1f\x3a\xac\x58\x34\xdc\x04\x3a\xfd\xa6\x86\xb3\xe1\xee\x16\x35\x5c\x90\x12\x79\xf3\x0e\x69\x4c\x99\x1a\x66\x5e\xa4\xd3\x31\x7a\x73\x5c\x94\xb8\x7e\xb1\x19\xe6\xfa\xdc\x48\x40\xe5\xb7\x3d\x89\x9e\x3b\x77\xbe\x19\xf5\xe0\x8a\x7b\x27\x78\x67\x57\x2b\xd0\x7a\x09\x33\x5e\xc1\x3d\x49\x3d\xb8\x6e\x84\x3c\x05\xe1\x1e\x96\x39\x9f\xf1\xa5\x97\xae\x00\xef\xd0\x1c\x4e\x0e\x1c\x52\x02\x65\x16\xe0\x7b\xa4\xee\xed\x15\x47\x22\xef\x9b\x65\x89\x64\x4d\x67\xb4\x06\xc3\xb4\xd9\xdd\xdd\xd9\xeb\xba\x05\x7c\xe7\xf3\xad\x12\x70\xc8\x27\x27\xd9\x5c\xf0\x87\x4d\x57\x80\xee\xa6\xc7\x70\x85\xb8\x50\x62\x79\xed\x46\xe0\x0c\x85\x5c\x0b\x8b\x22\xc4\x1a\x3e\x42\xe6\x32\x0e\x35\xa3\xd3\x98\xfe\xcd\x73\x40\xc3\x8f\x31\xe2\x21\xe1\x7d\x72\xa5\x04\x91\x2d\xb7\x50\x78\x9d\x97\x2c\x40\xae\xa5\x7c\xc2\x23\x40\x32\x97\x9d\x69\x05\x29\x4a\x05\xc7\x4c\xe6\xce\x93\x57\x0d\x96\xb5\x0b\x4a\x49\xf8\x30\x6e\x3e\xdf\xaa\xea\x4a\xd0\xfd\xcc\x54\xa7\x5e\xd3\x94\x9e\xe0\x66\xe1\xf7\x74\xbf\xaa\x5b\x26\x16\xf8\xe0\x1c\x3d\xd3\x0a\x1b\x9a\xc0\xe4\xff\x94\xba\x73\x3c\x94\xe7\x20\xb6\xb5\x2f\xc6\x5b\xa8\x46\x9b\x08\x14\x93\x1f\x51\xea\x4d\x9c\x6f\x90\xd1\xc4\x8c\xea\x5c\x56\x3a\xc6\x7c\x4f\xe5\xa7\x26\x7b\x07\xe5\x1e\xee\x6c\x62\xb3\x0a\xfc\xc6\xe1\x3a\xb4\x93\xf9\x26\xa7\xa2\x49\xec\xc5\x84\xb7\x47\xca\x67\x46\x9c\x6c\x01\x8b\xbc\x3e\x37\x90\x5e\x57\x80\x1a\xbb\xd8\x24\x7c\xee\x1e\xfc\x76\xa7\xee\x38\xcc\x25\x40\x94\x47\xe9\xba\x8b\x65\x69\x4a\xb9\x66\xec\xd2\x20\xc9\xe9\x12\x0a\x36\xa9\x0b\xdb\x2f\xd7\x4f\x21\xb7\x07\x17\xa1\xf3\x53\xcf\x4c\xd2\xd2\x59\x0f\x33\x32\x68\x97\x3f\x98\xde\x03\x73\x20\x4f\x9a\x34\x04\x2d\x5b\x60\x49\x5c\xa9\x8a\x5e\xe8\xa9\x75\xc9\x6b\x26\x02\xdb\x98\x8d\xb8\xb7\x34\xfb\x90\xba\x51\xf2\x7e\x73\x83\xe6\xe7\x73\x74\x5b\xbd\x3c\x6b\x50\x87\x98\xf2\x8a\x1b\x33\x39\x19\x54\x26\x4a\xa2\x60\x70\xe1\xdd\x97\x83\x05\xa5\x1e\xe6\x96\x18\x51\xeb\xf7\xe8\x4b\x5a\xf5\x2b\xdc\x8b\x64\xc4\xa9\xf4\x8e\x00\x13\xaa\x2a\x61\xe1\x57\x2c\x7b\x60\x9c\x45\xf2\x0c\xd9\x9e\x80\x00\x9c\x1a\x1f\x03\x2b\x1b\xd4\x07\xc5\x78\xc7\x6a\xa5\x3a\x4c\xc2\x12\xf4\x67\xbb\xb4\xb4\x0e\xe3\xa8\xa2\xdf\xa9\x65\xa6\x51\xaa\x9c\x10\x75\x4a\x67\xdf\x4b\x2e\xa8\xe5\x23\xa7\x14\x5e\xa5\xea\x62\x58\x5a\x03\x96\x02\x0c\xd5\xc3\x5b\x0f\xaa\xb4\x7a\xc2\x44\x6e\xc0\xf8\xe8\x1c\xd5\x0e\x42\x4e\x21\x01\x22\x9e\xab\x21\xa7\x4d\x46\xeb\xc2\x90\x7a\xca\x2b\xca\xdb\xca\xa4\xbe\x63\x36\xe5\x0c\xc1\x3f\xbc\xde\x06\xb7\x72\xd4\x4d\x0c\xdf\xf3\xef\xf7\x03\xff\x14\x53\xe8\x04\xea\x47\xe8\x7f\x5e\x53\x12\x95\x02\x7b\x7f\xfe\x3c\xfc\xfc\xbe\x69\xf2\x26\xe3\xf0\x95\x6a\xe7\x54\x6d\xb3\x39\x07\xb2\x75\x95\x7d\xa9\x2d\x1d\xfe\xe7\xef\x69\x6c\xf7\xa2\x4d\xeb\xf2\x57\xbf\x79\x38\xbe\xb2\x6c\x0a\x49\x7c\xff\xbb\x52\x8d\x44\x64\x18\xe3\xa9\x48\xf8\xf8\x8c\x0d\x97\xc8\xb4\xb2\x12\x6e\xbe\xe5\x9b\xda\x20\x6b\x01\x5b\x28\xee\x33\x1d\x79\x5a\xa5\x66\x0e\x16\x6c\x86\xcc\x8a\x73\xda\x7a\x13\x4f\xea\xdc\xa7\x36\x1c\xd6\x7e\x45\x7d\xe9\x96\x90\xea\xda\xae\x61\x58\xb1\x6d\x87\x77\xbe\xec\x67\x2c\xd2\x50\x04\x3e\x2b\xe1\x08\xb7\x5d\x6d\xd7\x93\x9c\x82\x1f\x39\x48\x0c\xa4\xff\x65\xd5\x28\xcd\x04\x68\x31\x77\x43\x08\x5a\xbc\x51\x10\x64\xc1\xc9\x29\x22\x15\x5b\xfd\x1a\x68\x51\x43\xcf\x8b\xaf\x3f\xa2\x10\xa8\x42\xbf\x58\xbb\x51\x1e\xdb\x06\xdc\x0c\x5d\xd7\xe7\xa8\xc1\xf4\x3d\x5e\x13\x36\xdb\xb3\x24\x72\xe7\xe6\x73\xa2\x8e\x77\xe2\x91\x14\x7b\x4b\xed\x10\x0b\x23\x9b\x4b\x4d\xa5\xee\x7c\x38\x32\x82\x25\x4e\xf3\x58\xb8\xa3\xaa\x89\x5c\x4f\xef\x94\xd6\x02\x8f\xbe\xd7\xaa\xed\x1c\xb9\xe0\x43\x66\x35\xf5\x05\x5c\xec\x44\xb8\xc5\x01\x63\xdd\x51\xdd\x9f\xde\xc3\x8c\xe1\x42\x5c\x4f\xac\x7a\xac\x0d\xe2\x7f\xbd\x46\x16\xf3\xaa\x3d\x37\x60\x3c\x7b\xa3\x26\x05\x55\x2c\x52\x56\x90\x6e\x9c\xc6\x2f\xfa\x93\xbf\x2d\xf9\x4e\x85\x3b\x5a\x84\x19\xe0\xaf\x37\x8f\x00\x83\x76\x64\x71\x6d\xe6\xd4\x67\xde\x80\x25\x16\xe6\x8e\xea\xd9\x5c\x70\xe0\x7a\xbd\x69\x46\xeb\xd2\xd3\x20\xfd\x3b\xcd\x8a\x3e\xcf\x28\x2a\x44\x5a\xca\xe9\xc5\x8f\x48\x78\x80\x8d\x48\x25\xe2\x75\xfc\xc3\x5e\xf5\xde\x55\xca\x39\x95\xb9\x01\xe3\xea\x56\xb0\xc9\x91\x70\x8b\x33\x3e\x39\x07\x50\x28\x68\x3e\x1f\xe1\x01\x56\xbf\x2b\xaa\x9d\xa5\x5c\x2a\x11\xd6\xce\xbd\x0f\x2a\x0d\x29\x46\xc2\x2f\x35\x00\x4a\xb8\x8a\x40\x26\xa6\x7f\x0c\x14\x5d\x39\xba\x48\xb8\x88\xae\x6e\x1e\x5a\x94\x23\x54\xe1\x7d\x73\xc0\xec\x19\x79\x8c\x54\xa8\xc3\x39\x56\x5b\xac\x2b\x00\x28\x8c\xd5\x71\x89\xc0\x0e\x88\x31\x43\x83\x23\xe6\x7d\x97\x38\xd8\x75\xa5\x3c\xe3\xa2\x16\x30\x92\xaf\x62\x29\x12\x49\x8d\xe4\x7f\xb2\x50\xa5\xc2\x91\xab\xe2\x2c\x7e\x17\x58\x3e\x98\xd4\x29\x12\x56\x91\x2d\x94\x05\x1b\x41\x1c\x72\xa4\x6c\x66\x7a\xee\xe4\x28\xb9\x24\x76\x21\xeb\xf3\x21\xc1\x81\x43\xe0\x00\xd0\x8a\xa0\xea\xa7\x6f\x07\x0d\xa7\x1a\x62\x44\x8a\x74\x3c\x13\xf7\x9c\x5d\xce\x3b\x0b\x13\xb5\x49\xa7\xb5\x6e\x0d\x23\x15\x0c\x86\xe6\xc1\x82\x8c\xae\xf3\xc8\xa9\xf7\x22\xaf\xbe\x75\x49\xf2\x1b\xce\x12\xd8\x37\x99\xc8\x67\x1e\x18\xab\x71\x89\x48\x98\xe6\x47\x45\x80\xf1\x9b\x8b\xa0\xb5\xa1\x87\x99\x83\x4d\x21\x51\x94\xb9\xb8\x2a\xbe\xeb\x5d\x55\x6e\x6f\xcd\xbf\x7f\xfa\xa2\x26\x4e\x90\x89\x0b\x3e\x53\x78\xa7\x1e\xa9\x4c\x55\xc4\x98\x6b\x86\xa6\x7e\x72\xa3\x4a\x0d\x1b\x82\x91\x6b\x9c\xd5\x42\x80\xc2\x49\x64\x56\x8c\x57\x9d\xb5\x12\xf1\x6d\x82\x1c\xa2\x3a\x6b\x3f\x1e\x2e\xae\x9f\x15\x04\x7b\x8e\xd0\x41\xbf\x6e\x97\xf8\x51\x2f\xf5\x99\xd0\xcd\x36\x5e\xaa\xaa\x32\x54\xd2\xa4\x05\xcf\x27\xfc\x3c\x1f\x9e\x90\xa4\xf2\x15\x98\x5f\x1a\x14\x14\x74\xfa\x3d\x71\x85\xad\x40\xae\xd9\x64\xa8\x94\x66\xef\x35\x4d\x42\x38\x0f\x21\x1a\x1d\x5d\xf7\x82\x9c\x02\xa2\x70\x59\x79\xdb\x21\x7f\x56\x04\xaa\x69\xb3\xbb\x67\x65\x73\xc1\x37\x97\xa8\xf3\x84\x7c\xee\x22\xf3\xdd\xcd\xca\xfd\x43\x58\xe0\x7c\x69\x7f\x2b\x64\xe3\xd8\xbe\x2b\x88\x9b\x8b\x8e\xc5\x7f\xd9\xd5\xcd\xa5\x6c\x76\x14\x86\x83\x32\x46\xd4\xe3\xfb\x81\xdb\x84\x25\x3b\xf7\x07\x3d\xd9\xf6\xe2\xfd\x4e\x2c\x49\x19\xe9\x3f\xbc\xd9\x0c\xa9\xb1\x71\x9f\x4c\x75\x5f\xee\xd5\xe4\xe6\x2c\x4c\x58\xc4\x4a\x3e\x06\x5a\x19\x2e\xe9\x93\xb1\x21\x31\x73\xdf\xa7\x39\xf6\x85\x97\x62\x64\x0e\x9a\xda\xb6\x21\x3e\x14\xbe\x87\xa2\x7a\x76\xef\x36\x80\x8e\x74\x19\xe6\x43\xcc\xb4\xb2\xdf\xa3\xe5\x30\x27\xfa\xcc\x5a\x39\xdc\x2a\xc7\xa0\xe2\xfe\xeb\x45\x1d\x66\x23\xbf\x64\xf1\xbe\x70\xf8\xd3\x37\x2e\x50\x27\xdd\xe1\x1e\xbd\xd1\xbd\x72\xc9\x52\x00\x4d\x36\x6d\x2c\x8c\x49\x26\x77\x26\x1b\x91\x94\x4d\x19\x9f\xcd\x05\xff\x7a\x52\x1c\x8a\x02\x76\x3d\x22\xb5\x6f\x8e\xae\x55\x79\x79\xf7\x2c\x9e\xe6\xf1\xb7\x5c\xd6\x2a\x6d\xde\xa9\x43\x6d\x5a\xf2\xf9\x03\xfd\xf4\x2e\x4d\xf9\x88\x91\xbc\xef\x20\x5b\x4e\xd7\xd3\xd3\x56\x8d\x00\x07\xb2\x40\x29\xcf\xe6\x2f\xcb\x27\xa3\x1b\x2d\x16\x23\x81\x1f\x11\xfe\x8c\xa3\x23\x65\x5a\x93\xc4\x8b\xf4\x42\x0f\x12\xcc\x75\x60\x03\x74\x78\x0c\x84\xad\x59\x83\x98\xf3\xb6\x3c\x33\x7e\x90\x12\x71\x10\x61\xd7\xaf\x3b\xc0\xae\x88\xf3\xa2\x5d\x31\x40\x9e\x33\x4e\xe3\xb1\xa3\x1a\x41\x72\xa6\x9f\xfe\x2b\x04\x32\x84\xb7\x95\x2d\xa1\x73\xee\x7b\x2d\xe1\x1f\x2f\x5e\xbc\x04\xe2\xff\xdf\xf7\x76\xb2\xe7\xef\x56\xa8\x8d\x1d\xb7\x2c\x8b\xa4\xf0\x8a\xfc\xd3\xb3\xa3\x60\x53\x53\x12\x15\x39\x49\x71\x83\x4a\x1d\x2d\xbf\x42\x6c\xb1\x3a\xfc\x77\xfd\x87\x07\xe1\xb8\x57\x70\xb4\xb3\xd3\x29\x4d\xce\xd4\x21\x25\xce\x16\x89\x69\x1e\xcf\x1f\x8a\x3b\x4f\x4e\x7f\xb8\xb6\x97\xac\x87\xb2\xa2\xbc\x44\x56\xec\xe2\x27\x0b\x42\xfa\x6f\x59\xa4\x84\xa2\x2f\x7b\x1e\xa4\xb9\x05\x12\x56\x6c\xbe\x2d\x95\x10\x8c\x2d\x9d\x97\xc3\xc2\x08\x33\x0a\xdd\x7b\xae\x7f\x28\x26\xcd\x85\x4b\x19\x81\xe5\x47\xab\x75\xae\x33\xec\x7a\xd2\x3e\x26\x55\xd3\x1a\x57\x1e\x09\xe3\x9e\x70\x53\xdf\xbd\x49\x67\x68\x3b\x16\xf2\x3c\x24\xe7\x17\xe1\xeb\x7e\xe2\x35\xa8\x5d\x60\x12\xe1\xfe\x76\xec\x08\x60\xcf\xc8\x3f\x4d\xff\x7e\xef\x08\xd5\x55\x23\xd1\xba\x7d\x64\xac\xfa\x32\x7a\x0b\x35\x68\xbf\x58\xd1\xe7\x0a\xfc\x32\x7d\xf3\x59\x3d\xb9\xab\x22\x26\x66\x98\x22\x3b\xdc\xfb\xb2\x8a\xb6\x25\xdf\x46\xdc\x62\xe9\x23\xaf\x37\x59\xc6\xbb\x91\x4f\xcb\xda\x0e\x35\xff\xf0\x61\x97\xf7\x13\x9b\x92\xfb\x16\xd7\xb0\x13\x5b\x7a\x7c\x63\xbd\x6a\x69\x58\xd3\x9a\x1e\x5f\xaf\x66\xaf\x41\xc3\x27\x88\x63\xbe\x6c\x7a\x8e\xc6\xb7\x20\x8e\x85\xf2\x24\xf6\xf0\x7c\x79\x88\x34\x2f\x52\xf4\x0e\xce\x57\xdf\x18\xef\xb1\x22\xef\x6e\x6e\x3b\xa5\xaa\x47\xe1\x99\x04\x08\x09\x43\x2e\x87\xf9\xa8\x89\x93\x7e\xff\x0f\x82\x16\x05\x72\x4c\x0e\x8f\x0c\x7e\x31\x4e\x65\x8c\x36\xee\xe3\xa4\x83\xcc\xdf\x3f\xaa\x41\x2a\xaa\x88\x80\x09\xd6\x67\x1f\xd6\x92\x62\x46\xeb\x51\x11\x1f\x5c\x75\xb1\xde\x39\xa9\x48\x8c\xb9\x2c\x8f\x9e\x00\x18\x64\x4b\x62\x34\x67\x3a\x3a\x66\xa9\x97\x32\xe2\x35\xf8\x5c\x33\xe8\x1f\x5c\xe9\x5a\xf4\x0c\x56\x6f\xd3\x76\x33\xb5\x0b\x52\xbf\x27\xf3\xc9\x93\xca\x08\xa4\xca\x91\x6a\xe9\xcc\x76\x55\x47\x87\xa9\xb9\x00\x00\x26\x2b\xe1\x5f\xbc\xa2\x13\xc5\x9c\xb2\x18\x86\xf0\xd6\x89\x0f\x66\x61\x75\x54\xe3\xb9\xf4\xca\xd1\x2a\x73\xa9\xf8\x6e\xb8\x71\xa0\xf6\xf3\xb4\xe1\x60\x54\x27\x9c\x22\xb2\xb9\x20\x7b\x5e\x15\xec\xe5\x86\x5f\x86\x34\xd3\x7d\xc9\xd6\x50\x2c\xa9\xd9\x68\xee\xd5\xa5\xfe\x75\xa1\x7a\x1d\xdc\x87\x2b\x55\x9b\x14\xe5\xc5\xf1\xfe\xd3\x40\x33\x1a\x33\x99\x8a\x1a\x7b\xd6\x36\xb5\xcb\x88\x6c\x97\x89\x4b\xfa\xff\x5a\x74\x4f\x78\x6e\xac\x20\x27\x3a\xc6\x18\x78\xaf\x4a\x31\x28\xa1\x3e\x15\x3c\x78\x91\x86\x22\xc4\x28\x0a\x54\xe9\x07\x56\x03\x85\x85\x3a\x46\x9e\x78\xfc\xa9\x91\xcb\x93\xd3\x95\x58\x5f\x5a\x70\xb3\xa3\x55\xfc\xdc\x54\x20\x3b\x42\x78\xbb\x76\x22\xb0\x01\x0d\x0f\x4a\x6c\x50\x79\xf0\x2d\x9d\x8f\x44\x69\x34\xb2\x7e\x75\xf7\x50\x40\xe5\x0f\x33\xaa\x77\x4e\x8f\xd1\x36\xad\x4d\x2b\x79\x82\x14\xa8\x3c\x65\xcc\x02\x83\x3d\xe1\x34\x04\x85\xf3\x7f\xb3\x73\x2c\xe8\xa7\x89\xe2\xa4\xe9\x41\x7d\xe2\xe2\xcb\x60\xc5\xe1\x11\xc7\x8f\x5b\xf8\xdb\xc7\x89\x04\xb1\x20\x2a\xfe\xa3\xac\x5d\x4b\xba\xe4\x21\x13\xfd\xfb\x77\xf2\x91\xaf\x45\x35\xfc\xca\x1e\x76\x0a\x92\x13\xe0\xdd\xa3\x8d\x5a\xa9\x87\x1c\x5d\xe2\x26\x33\x64\x9f\x86\x8a\x62\x28\x2f\x57\xe7\x33\x05\x8d\xa9\xb7\xc6\x17\xae\xdd\xfc\x30\xfe\x60\x5e\x1b\xd8\xfc\x76\x18\x53\x3c\x2c\x8a\xbb\x49\x2f\xc9\x5e\x3e\x6f\x46\xcb\xd8\xfc\x8d\xb3\x5a\x1f\x31\x76\xb6\x95\x5e\x27\x95\xd7\xa5\xdb\x25\xb2\xed\x3a\x6a\x08\xcc\xc7\xb3\x1f\xe0\x3f\xbb\x6e\x06\x47\xba\x4d\xd6\xeb\x0e\x5e\x54\xa3\xd8\x78\xcb\x40\xe7\xae\xd2\xee\xd6\xa2\xed\x63\xce\x15\x15\x37\x81\x91\x7f\xad\x4d\xae\x3a\x07\x8b\x43\x9b\xf3\xe5\x6f\x83\xf0\xc1\x64\x7d\x6d\xa0\xe7\xd5\x0e\x2f\x23\x06\x25\xe0\x8c\x8f\xdb\xea\x77\x36\x22\x1e\x10\xb1\x4d\xaf\x1d\x2b\x55\x3b\x72\x4b\x97\xde\xbc\x6c\x49\x6e\x71\xcf\xcd\x8b\x97\x87\xcb\x7a\x72\x65\xe4\x98\xea\x31\xe4\x70\x68\x60\x6a\x8f\xd1\x02\x87\xc5\x4c\x8a\x2f\x7c\x7c\xb1\xca\x23\x4c\xe4\x5a\x49\x88\xe1\xaf\x36\xeb\x3a\x98\xa0\xbf\x96\x79\x2f\x4e\xa7\x6d\x9c\x8f\xbc\x25\x1e\xd5\x10\xbf\xa2\x6c\x0e\x6c\x0d\x32\x2b\x42\x96\x10\xd7\x56\x71\x63\x08\x18\x29\x16\x7d\x6c\x67\x73\xc1\xf3\xc7\x93\x68\xd9\x5e\x6a\x39\x8e\xce\xbd\x9f\xb3\xb8\x49\x52\x0e\x35\x22\xe4\x34\x2f\x88\xc7\x3a\x4d\xd3\x30\x9e\x11\x7b\xb1\x9a\x75\xa6\xb4\x45\xad\x10\xad\x45\xce\x81\x99\x0f\x3d\x0b\xe9\x72\x6e\x95\x44\x90\x80\x59\x1a\x74\xd1\xc2\x76\x35\x3c\x35\x82\xab\xfa\xbc\x25\xce\xd8\x4d\xd9\x69\x7c\x32\xbb\x66\xac\x66\x44\x66\xd1\x6a\x15\xc4\xec\xc6\x62\x28\x13\x10\x19\xed\x07\x1b\x3b\xc5\xa3\xa4\xd5\x2a\x75\x23\x43\xdc\xa5\x7a\x63\xcf\x55\xc6\x38\x99\xd4\xa1\xa6\xb1\xbf\x74\x8f\x10\xa8\x95\x5f\xcf\xd0\xfd\x7a\xbc\x04\x1a\x7a\xfa\x72\x15\xa5\x0b\xb4\x1e\x26\xb0\xc1\xc1\x55\x4a\xa5\xca\xc2\xcd\xe0\xc1\xcc\xd2\x55\xc9\xa7\x34\xab\x33\x86\x58\xc6\x62\x32\x0b\xf7\x27\xff\xa6\x8c\x19\x47\x86\x22\x6b\x0a\xef\x08\xf1\x8c\x6f\xfa\xdd\x10\x48\xce\x9d\x3c\xc3\xd5\x39\x6e\x8d\x02\xa3\x32\x93\x32\x12\xcd\xd8\xf3\x0b\x81\x1d\x3c\x96\xfe\x21\x37\x2b\xf9\x4d\x2a\xc6\x60\xb9\x5d\xb1\xe0\x73\x91\x84\xc7\x2e\xf8\xc1\x89\xa6\xb1\x0b\xb7\xd9\x8f\xb0\xc5\xe9\xef\x82\xe9\xe8\xb4\xd9\xb3\x66\xf1\xec\x61\xc8\xa4\xb1\x7a\x82\x40\x8a\x94\x39\xf0\xfe\x36\x1e\xf5\xa0\xb2\x80\x69\x09\x22\xca\xce\x71\xc0\x72\x8a\x3f\xb2\xf0\xa7\x13\x03\x0d\x18\x4a\xf3\xf9\x06\x11\x62\x0b\x03\xc6\x07\xe6\x24\x37\x36\x36\x7d\x54\x10\x02\x2d\x72\xc1\x46\x3c\x00\xa2\x92\xe7\x17\x1a\x51\x42\x7c\xe6\x8c\x8e\xac\x45\xc5\x62\xcc\x24\xf0\xde\x4c\x9e\xec\x72\x83\x7a\x34\xee\xad\xc8\xe2\xd3\xad\xc7\x2a\x03\xe9\x5f\x77\x68\xb7\x38\x95\xd6\x96\xc1\x5f\x1e\x17\xe5\xe7\xbc\x46\x3f\x0a\xe3\x4c\x18\x52\xde\x78\x0a\x88\x61\x10\x5a\x43\x8e\xc3\x7b\x7b\x27\x4e\x25\xbf\x8f\xeb\x3b\x25\x21\x0e\x16\xe9\x8a\x7e\x73\x9f\x26\x3d\xe6\x97\x50\x1e\xcb\x71\x63\x14\x52\xe8\xe9\xa4\xd6\x57\x01\xe1\x3a\xa5\x83\x72\xc5\xfa\xd7\x6a\xd2\x1d\xd4\x27\x2e\x41\x0e\x8a\xed\xb6\x07\xd2\xcf\xed\xd4\x0f\x14\xb2\xc3\xf4\x47\x68\x28\xf6\xf6\xb7\x69\xfb\x16\x57\xa5\x11\xc3\xc7\x5e\x90\x56\x12\x4e\x23\x2c\x6f\x05\xe0\xee\x50\xb7\xd6\x7d\xb5\x50\x3e\xdf\x10\xe5\xc0\xc0\x58\x95\x3e\x21\xd3\x22\xb8\x16\x59\xd6\x1b\xeb\xaf\xd4\x9d\x84\xa4\x5c\x8d\xa4\x7f\x2e\xd9\xa2\xbb\x64\x7a\x61\x4e\x89\xeb\x11\x9e\x73\xfb\x2a\xd1\x11\x2b\x30\xc4\x5d\x9e\x52\xff\xf2\x65\x75\x73\x71\x01\x8f\x68\xcf\x5c\xae\x49\xf8\x0a\x66\x91\x48\xb7\x2e\x79\x4b\xed\xfa\x02\x23\x45\xfe\xd9\x1e\x9f\x00\xac\x0f\xb1\xe3\xb1\x26\xe5\xc2\xf4\x53\x27\x63\xb1\xa0\x19\x50\x4a\x2d\xff\x28\x2c\x54\x2d\x21\x40\x2e\xdd\xfe\x07\x8c\xcf\x6f\x93\x6d\x7e\x0e\x32\xe5\x90\xc0\xaf\x2d\x8c\x47\x6d\xf9\x84\xbe\xe3\x97\x36\x69\x53\x12\xdb\xcf\xcb\xb6\xd1\xf7\x41\x13\xb5\x80\x6b\x44\x74\x04\x7f\xd9\x05\x66\x4a\x75\xe2\x99\x7c\x62\x80\x56\xe8\xf9\x7f\x1f\xa9\xf8\x92\xc9\xfa\xda\x58\x2d\xc3\xb7\x30\x65\xe2\xd9\x19\xb9\xc3\xd0\xee\xa2\x68\x13\x53\x5e\x41\x2b\x9e\xd2\xda\x06\xb1\x1b\xa8\x52\x85\x9e\xb0\xe7\x1a\xb0\x0c\xae\x87\x7c\x11\xfe\xf5\x7a\xe0\xd5\x71\x12\x65\x44\x1c\x93\x42\x3f\x34\xe3\x61\x71\x26\x2b\xc8\x33\x2d\x19\x08\xb6\x8e\x1f\x99\x6c\xaa\x56\x69\x18\x32\x17\x6b\x2d\x11\x1b\x23\xd7\x8b\xb4\xd3\x72\x7b\x05\x26\x69\xde\xcd\xcb\x9b\x06\xb1\x4f\xf7\xc3\x1c\x21\xcc\x2b\xc3\xb3\x3c\xee\xcd\x51\xa0\x35\xe8\x9a\x24\xd6\xe2\x3a\xbf\x3d\x2e\x53\x4d\xaa\xfb\x49\x0c\x18\x9f\xda\xa7\x89\x10\x33\x4a\xcb\x76\xc3\x51\x84\xdb\x4f\xce\xd0\xee\x60\x14\x96\x0d\xca\x3e\xcb\x38\x3f\x57\xa5\x3f\x61\x61\xc8\xbb\x6f\xa2\x93\x98\x99\xfc\x1c\xb0\xd6\xf2\x6d\xce\x91\x4d\xef\x7e\x21\xfe\x48\x93\x3c\x5d\xa8\x77\x20\xfd\xbf\xfd\xba\xea\x21\xe6\x5d\x7a\xbe\x19\x1f\x78\x5c\xb7\x3b\xf4\x59\x98\xa4\x24\x55\x79\x56\x74\x25\xb7\xe1\xb4\x99\x9d\x91\x03\xdc\x83\x13\xe2\x0a\x9a\xf2\x18\xf3\xf0\x39\x81\xb0\xeb\xe2\x36\x5b\xe9\xcb\x17\x8b\xdd\xbe\x8c\x83\x17\xf9\xa9\x7e\xf8\x75\x80\x36\x0b\xaf\x1d\x87\xb7\x14\x26\x9c\x55\x6a\xb0\x68\x0d\x34\x42\x59\x00\xa8\xc1\x0c\x15\x24\x30\xfd\x9e\x17\x35\x71\x1c\x53\xa2\xf0\x52\xe3\x16\xa8\x15\x9c\xd1\x39\x33\x69\xfa\xbb\x16\x28\xfa\x93\x8a\x24\x00\xa7\x26\xaf\x8f\x74\x2c\xeb\x48\x70\x3a\x76\x9f\xd1\x6c\x6a\x89\x53\x16\xea\x09\xe9\x54\x9b\x0e\xae\xa3\x75\x5c\x90\x33\x48\x63\xb4\x06\xf1\xaf\x22\x22\xac\x48\x82\x3d\x17\x24\x23\x41\x83\x32\x5e\xf8\x72\x03\x0a\x7e\x2b\xff\x74\xfd\x65\x7a\xca\x88\x99\xb8\x78\x8d\x6f\xaf\x57\x89\x62\x09\xf5\x73\x77\x8f\x91\xbd\x1a\x29\xb0\x5a\xc5\x88\x83\x17\x62\xc0\xd3\x0f\x87\x24\x3f\x0e\x8a\xc8\x4a\x03\xa9\xec\x7a\xf1\x6c\xe6\xf9\xb2\x64\x1e\x48\xdf\xb1\x44\xbb\xf8\x89\x6d\x0b\x16\xed\xf0\x57\x80\x90\x2b\x19\xc4\x61\xcb\x18\xf0\x12\x8c\x68\xfe\x8d\x8f\xc4\xb8\x2f\x51\xb1\xc7\x77\xe4\x73\x17\x0d\x89\x36\xed\x6c\xae\xdf\x70\xd9\x1c\x0d\x57\x86\x4d\x3f\xda\xa6\xa9\xbf\xbd\x02\xa9\xa2\x45\xd9\x1d\x36\xd8\x24\x4d\x50\x8a\x73\x53\xb0\x4d\xc2\x15\x10\x5e\x75\x33\x34\xcd\x72\x8c\x5c\x50\x87\x5f\xf5\xa0\x3a\x4f\x33\xaf\xeb\x98\x36\x2b\x7c\xd5\xc7\x26\x4b\xc7\xa7\xb0\x96\x62\xd4\x21\x66\xb8\x3d\x7f\x32\x03\x56\xc7\x1c\x95\xb2\xe9\xa5\x11\xe1\x6b\x2e\x5c\x08\xc5\x19\xda\xdf\x6e\x2a\xed\x31\x72\x23\x85\xc4\xb4\xc3\xe4\xa0\xa2\x83\x8f\x16\x32\x55\xad\xdc\x70\x30\x2e\xc4\x66\x33\x7f\x37\xb9\x55\x7f\x76\x9c\x9d\x94\xfe\xd8\x49\x69\x85\xcc\x1d\xe2\xc3\x4b\xbc\xa6\x42\xd8\x1a\x9f\x78\xbc\x1f\xfe\x77\xaf\x80\xc8\xeb\x94\xb0\xad\x10\x4e\xa3\x9f\x1d\x22\x8b\x49\x5b\x74\xc2\x76\x0d\x55\x5e\x3e\x0e\x50\xaa\x1a\x78\x34\xb9\xd7\x6b\xc4\x94\x06\x90\xd9\x5c\xb0\xf2\x88\xba\x0c\x9d\xa6\x46\x8f\xf1\xe4\xdc\x58\xc1\xc2\xc2\x28\x61\xe3\x75\x0c\x90\x61\x67\x76\x74\x73\xeb\x91\xaf\x78\xba\xb8\xaa\x8b\x12\x90\xcc\xf4\xe3\x2f\xea\xa3\x12\x86\x91\x27\xf8\xf8\x93\xec\x21\x51\x30\x9e\x36\x3b\x9b\x0b\x5a\x5f\xd0\x54\x76\xb9\xee\x21\x30\xe4\xdd\xae\x15\x05\xbe\x53\xc7\x36\x57\x9e\x12\x8d\xb4\x69\x05\xfd\x02\x28\x4b\x2a\x4e\xea\x8e\x3e\xe9\x13\x70\xd3\x1d\x37\x2d\x5a\x74\xd3\x82\xe8\x25\xdf\x69\x8b\x04\x47\x71\x1f\x77\x89\x56\xfd\xe9\x11\x00\x0e\xcf\x28\xaa\x88\xf1\xc6\xb7\x36\x6b\x58\x06\x87\x78\x52\xc8\xc3\x78\xe7\xf0\x95\xda\xc3\x57\x16\x20\x3c\x38\xbf\xb2\x3d\xbe\x7a\x89\xcb\x37\xd7\xe7\x6f\x8c\x7f\xd2\x71\x5d\x58\x82\xa5\xfe\x64\x25\x77\xd0\xb4\x59\x12\x1c\xf5\xcf\x9a\xcf\x6d\x58\x63\xba\xd4\xe1\x05\xbd\xba\xf8\x69\x8f\xde\xc4\xf7\x1d\x8f\x29\x99\xc7\x5f\xbf\x9b\xbc\x83\x67\x4d\x8f\x88\x2f\x6f\x9e\x14\xfb\xfc\x0e\xe2\x86\xa7\xe7\x0b\x43\xf5\x6a\x95\x38\xe1\x41\x54\x6d\xbf\x57\x97\xb4\xc2\xa8\x50\xe4\xe6\xc1\x1c\x27\xfb\x12\xd0\x0c\xf3\x2b\x82\x5a\x9e\xf9\x44\x1f\x68\x93\x33\x54\x94\x12\x7d\xaf\x2e\x4f\x62\xe6\x4b\x98\x98\x83\x26\xc9\xc6\x81\xa7\xaf\xd6\x53\x56\xdf\xd6\x6a\xec\x9f\x2e\x15\xc8\xb8\x65\x1e\xf2\x88\xeb\x85\x17\x81\xde\x73\x7a\xe7\x74\x72\x96\xd5\x21\x9f\xde\xb3\x1a\x6b\xcc\xc4\xb6\x1d\x29\x6b\x6d\x7d\xa5\x55\x4b\x6b\x05\xd1\xa8\xfb\xfa\xe4\xf6\xae\x53\xe6\x59\x91\xe5\xb3\xb9\x56\x75\x9f\x75\xfa\x6a\x30\x7a\xf8\x48\x90\x63\x9b\x3e\x43\xfc\x06\x30\x6e\x9b\x25\xe9\x1a\xd4\xc6\xf2\x67\x99\x9e\x7b\x46\x81\x76\x26\x9f\x16\xca\xdc\x66\xca\x04\xc9\xa5\xc1\x25\x64\x93\x7e\x81\xe0\xbb\xf5\xed\xe4\x93\x2b\xe0\xc8\x26\x34\x1a\xc7\x7e\xf7\xa0\x96\x5d\x62\xee\x03\x2e\xb1\x03\xf4\xf1\x08\x6b\xce\x3b\x8a\x9f\x3b\x93\x5c\xaf\xbf\x93\x9d\x95\xdd\x5a\x71\xd6\xd5\xd9\xd9\x19\x73\x05\x1b\x27\x93\xef\x40\x6b\x98\xc5\x1a\x71\xe9\x1d\xcf\x68\x7a\x98\xc8\x14\xbe\x92\xc1\x5f\x1c\x71\x4e\x5d\x52\x72\x48\x91\x98\x48\x72\xd7\xbe\x18\x00\x00\x71\xb4\xa5\xb3\xb9\xe0\xbe\x39\x63\x41\x03\xb1\x52\xa5\x2e\x66\x59\xe2\x44\xfd\x04\x21\x77\xbc\x30\x68\x53\x38\x03\x3f\x71\xf5\x9f\xd6\xc4\x4a\x90\xed\x63\x99\x84\xa6\x0e\x69\xfe\x93\x88\x55\xe4\x6c\x62\xd7\x92\x44\xcd\x82\x11\xab\x70\x3d\xa0\xc3\xe7\x21\x10\x98\x44\x1a\x65\x5b\xc7\x00\xe2\x1d\xf6\x30\x83\xc4\xbb\xbb\x5b\x46\x02\x04\x08\x0b\x4b\x53\x3e\x07\xbe\xe3\x74\x2b\x40\x6e\xd9\x36\xa3\x94\xc3\xe5\x52\x9b\x00\xa4\xab\x8a\x6d\x1b\x7b\xfc\xa2\xcb\xe6\x82\x33\x2f\xaa\x2a\xc6\x26\xae\xd7\xc0\x40\xcc\xb7\x75\xb2\x1e\x57\x59\x49\x75\x76\x8c\xdf\x2b\x45\x41\x5a\x0d\x57\x76\xdc\x0e\xb9\x11\xeb\x54\xd2\x0d\x07\x52\x07\x1f\x04\xdf\x1b\xd5\x28\x93\xb2\x11\xa9\x5f\xf4\xaa\xcf\x84\x2a\x08\x44\xa3\x6f\x6e\x83\x0a\x02\x22\x09\x4a\x17\xce\x8e\x94\xaf\x61\x8a\x42\x4b\x36\xab\xcc\xb9\xe0\x65\x9c\x32\xb4\x2e\xbc\xc4\x81\x6e\x0b\x1e\xb6\xa3\x0e\xc2\xd9\x9e\xe4\xb5\x88\xb8\x87\xab\x80\x8b\x28\x1d\xcf\x8f\x3f\x2f\x12\x27\x64\x73\xbc\x47\x36\x17\xdc\xa3\xd5\x1f\x55\x4a\xf8\x00\x2d\x8c\xad\x19\xb7\x43\x37\x86\xac\x10\xbb\x11\x61\xd6\x8e\x9f\x1b\x0b\x68\x36\xcc\x6c\x14\xfd\x26\xbe\x42\x66\xe9\x97\x55\xa2\xe2\x21\xa9\xa1\xb6\xe2\x31\x9d\xdb\x5d\xc3\x05\x59\x7d\x65\x56\xbe\x3d\x0c\xec\x1e\xfe\x44\xff\x36\x4b\x33\x5d\x42\x7d\xdc\x63\x58\xc4\xbb\x89\xab\x00\x32\x1e\x11\x31\x39\x5a\x05\xca\x23\x8c\x98\xbc\x93\x53\xe7\xb4\xcb\x13\x99\x65\x87\xd6\x6d\x5c\x28\x29\x9d\x94\xf7\xb5\x01\xbc\x24\x76\x5c\x81\x5b\xe0\x71\xb2\xef\x78\x9c\x6c\xf8\xb6\xad\x76\xd5\x2e\xe0\xe7\x41\xf3\xbd\xd8\xf4\x48\x4d\x80\xac\xd6\xd7\x80\x5c\x37\x35\xcb\xdc\xaa\x2f\xf8\xd3\xea\x16\x90\xe0\x78\xc8\x24\xfc\xca\xba\x73\x77\x0b\xe8\x8f\x99\xd4\x29\xf0\x52\xe4\x9b\x27\xae\xd5\xae\x64\xc7\x63\xc8\x86\x34\x7c\xf9\xd1\xff\xf6\xb4\x1a\x24\x08\xe5\xe0\x6a\x58\x15\xf1\x17\x6f\xdb\x1c\xa7\xb4\xd3\x66\x26\x5d\x54\xde\x92\xba\x4f\xc4\xf1\x90\x53\x22\x32\x52\xad\xd8\x0d\x68\x80\x1c\x31\xc3\xbf\xd1\x3f\x76\x5f\xae\xa7\xfa\xc4\x8c\xed\x5d\xfe\xb6\x44\x77\xee\xaa\x88\x19\x61\x6e\x20\xbd\xfd\x40\xdc\x84\x66\xd4\x8c\xc8\x49\xfb\xcf\x00\x29\x2e\xca\xa1\xaf\xae\x00\x96\xcf\x81\x9a\x9b\xb6\x4d\xeb\xd9\x5c\x30\xf0\x60\x12\x84\x40\xf3\x98\x15\x30\x2b\xf2\xf9\x3c\xb4\x15\xfe\xc0\x11\x38\xd6\xac\x20\xd3\xe2\xb7\xfa\x2e\x90\xce\x54\x48\xa1\x2e\xe4\x1c\xd7\x68\x40\xe0\x3a\x62\x51\x78\xff\xf1\xc5\xad\xea\x43\x83\xb9\x7d\x5f\xbb\xbe\x87\xeb\x91\xf2\x5e\xf0\x09\x4f\x1c\xec\x9b\x18\x76\x10\x18\x02\xac\xb9\x65\x50\xc4\xaa\x58\xd6\x5b\xae\x1e\x24\xe7\xd5\x4c\xdd\x0f\xaa\x1b\x14\x61\x46\xdd\x2a\x8a\xb9\x1e\xe9\xb9\xbb\x45\x37\xe2\x0e\xca\x18\x81\x1e\x1d\x4f\x3b\xed\x22\xe9\x43\x4e\x81\x56\xf4\xc1\xfa\xb7\x7b\xf5\x11\x97\x23\x9a\xed\x1c\x6f\xce\x8f\xeb\x2d\xef\x29\xee\x2e\xa9\xf0\xb2\x13\x03\xd5\xab\xb0\x04\x0b\x5f\x38\x5c\xac\x47\xc1\x06\xa6\x15\x5c\x10\x7e\x18\x17\xbc\x39\x56\xdf\x14\xd8\xc1\xa6\x95\xe8\x65\xcf\xdc\x72\x79\x0c\x9b\x68\x86\x56\x9d\x39\x3e\x4c\x16\x51\x35\x54\xa9\x8a\x42\x7a\x2e\x8b\x1f\x8d\x07\x8c\x2a\x07\xd2\xbf\x1e\x9a\xe8\xfe\x84\xc7\x51\xdc\xac\x57\x74\x01\xb4\x3c\x72\x63\xf8\xf9\xaf\x5e\x68\xf2\x38\xa7\x4c\x11\xdd\x06\x32\x9d\x8f\x47\x2a\x33\x48\x48\xcf\xfa\xa7\x54\xbf\xca\x0e\x33\x0b\x1e\x94\xae\x5f\xa0\xf1\x15\x2c\xcc\x51\x6c\x02\x76\xd7\x7b\x40\xb3\xef\xef\xc8\x77\xa0\x8e\x41\x0c\x3f\x06\x32\xe4\x4d\x45\x61\x74\x88\x49\x81\x07\xd9\x40\x2a\xd8\xa1\xe4\x55\x27\x86\xb9\xc9\x3f\x03\x18\x08\x72\xc3\xf4\x14\x3a\x4d\x7f\xfb\xb0\xce\x3c\x95\xca\x4c\x51\x5a\xf7\xf5\x02\x98\xdd\x59\x14\x08\xc7\x67\x52\x93\x34\xbf\x52\x8b\x54\x1b\x88\x15\xdc\xe6\x71\x73\x66\xbd\x70\x5e\x17\x6e\x4e\x52\xc2\x5e\x86\xf7\xf4\x37\xdf\x8a\x5a\xfa\xc4\x94\xf6\x32\xff\xf3\x92\xa6\xc7\x8f\x5d\x8f\xd6\xa5\x4f\xb5\x7f\x30\x46\x88\xb8\x6e\x34\x33\xdc\xde\x79\x8d\x9a\x2e\x23\xdb\x26\x79\x9f\x79\xcd\x12\x13\xc6\xb7\xa0\x33\x29\xb5\x89\xd0\xcb\x3c\xaa\x79\xec\xf6\xa2\xbe\x41\xf5\xf5\xc7\xae\x1c\xa1\xfc\xf5\x22\x57\xed\xff\x12\xe2\x53\xd9\xdb\x19\xae\xd8\xcd\xd8\x28\xe3\x3b\x53\xb5\xe1\x68\x0d\xb3\x06\x75\x84\xa6\xe6\x40\xc6\x18\x2a\xcb\x5e\xca\xf2\xfc\xe3\x18\x8b\xe7\xa9\xcf\x98\x67\x98\x4b\x30\xa5\x7f\x3a\x55\xe3\x67\xf4\x79\x0c\x09\xb1\xdf\x28\x1b\x7b\x7b\xb3\x6e\x83\x14\x26\x6b\x48\xfe\x49\x7f\x36\x17\x1c\x7c\x33\xa1\x8c\xef\x91\x70\x87\xdc\x71\x11\x50\x3a\xa1\x26\xf7\x1e\x90\x9a\xe2\xa9\x2f\x1d\x53\x25\x6d\xd5\xe6\xea\x7d\x29\x36\x2b\xce\x83\x66\x76\xf2\x80\xba\x5f\x93\xe5\x2c\x31\xea\x3b\x05\xa1\x98\x91\x7e\x7f\xbb\x38\x1e\xb7\x32\xca\x31\x5b\xa9\x37\x1f\x1d\x26\x43\x9e\xeb\x92\xbc\x40\xdb\x75\x3f\xa6\x3e\x43\xd6\x64\x9c\x5f\x1b\x95\xf5\x1d\x4a\x37\xd4\xa6\x5e\x36\x17\x5c\x5d\x8b\x45\x23\xf2\xcd\xc4\x61\xe3\x2b\x2f\x83\x26\x32\x6b\xc8\x26\x50\x30\x17\x18\x53\x32\x6a\x93\x22\xd8\x82\x23\x2f\x4e\xd8\x8d\x33\x61\x37\x6e\xcc\x7c\x13\x34\x9e\x89\x2d\xec\x73\x32\x33\x35\xf1\x90\x30\x7e\x08\xcb\xa8\x30\x7c\xfb\x45\xad\x27\x4f\xbc\x28\x5d\x36\x6e\x3e\xaa\x63\xdc\xf2\xc4\xc1\x52\xce\x76\xca\xdd\x97\x44\x39\x3a\xca\xe6\x82\xff\x5e\x0a\xe7\x41\xc8\xc3\x12\xf2\x96\xfe\xfa\x6b\x5a\xbf\x80\x61\x45\x82\xfd\xfe\x66\xad\xbe\x36\x39\x2e\x93\xb8\x96\x3c\x3c\x17\x6b\x56\xa8\x61\x7e\x19\xc1\x70\x76\x44\xc2\x1f\x0e\x62\xb2\x1f\x39\xff\x94\xe2\xa1\x76\x76\x65\x73\xc1\xde\xfd\x5a\xda\x47\x19\xae\x50\x39\xe6\xca\x8c\x7a\x54\x93\x37\xe5\x73\x7b\x69\x73\xf7\xa1\xf5\x49\x7c\x8a\x4a\x51\x44\x60\xa1\xb6\x82\xc3\xa6\xed\xed\x52\x5c\xd7\xb3\x1c\x62\x66\x73\xc1\x77\x17\x41\xa5\x31\x6e\x2a\xd8\x71\xb1\xd6\x29\xcb\x4e\xe7\xda\x8b\xc0\x74\xcb\x90\x90\x07\x0f\xd7\x11\xf3\x60\xf7\xf7\x62\x4d\xbd\x4e\x90\xfb\x32\xab\xef\xd5\xa6\x37\x3c\x44\xc4\x8d\xd0\x8c\x33\x19\x48\x8b\x62\xcf\x42\xc2\x9e\xb5\xfd\xad\xe4\x77\x43\xae\x8b\x2b\x79\x5b\x58\x65\xeb\x97\xe1\xfd\x33\xb4\x76\x3f\x13\xde\x7a\x43\x0e\xb5\xaa\x9f\x39\x92\x23\x9e\xcd\x05\xa3\x3d\x1d\x06\xb6\xc6\x27\xac\x11\x75\xab\xdf\x7f\x46\xed\xd2\xe9\x5d\x53\xbb\x67\x73\x57\xe2\xfe\xb7\x44\xc3\xef\xe6\x4a\x05\xc0\xd5\xd2\xdf\x7a\x9c\xdf\x2d\xe1\xcb\xf4\x2c\x17\x27\x2c\xf8\xd8\x54\x91\x92\xf4\x20\xc7\x01\xb2\xd2\x46\x6a\x8b\xca\xb6\xa9\xc3\xcd\x9a\x53\x9b\xdf\x50\x43\x04\xdf\x71\x3d\x6e\xa5\xcb\x37\xf7\x8c\xc9\xea\x37\x88\x5f\x00\x51\xfd\x71\x7a\xe8\x30\x55\x0f\xf1\x36\x5e\x30\x66\x3d\x70\x01\xb0\xb0\x59\xce\xe6\x82\x4b\x7a\xb4\xfd\x21\xc5\xf7\x07\xbb\x89\xd3\x3f\xdb\x34\x12\xbc\x9b\x68\x64\x70\xe2\xc2\x81\xf8\xb2\x98\x31\x95\x77\x8b\x3e\xf1\x40\x32\x7f\x9b\x1e\xeb\x73\x66\x96\x78\x60\xe5\xa6\x4d\x9d\xd5\x35\x3b\x9b\x0b\x66\x3c\xa7\xab\xcd\xd3\x2a\xef\x33\x88\x44\x75\xee\xfa\xd1\x5a\xbe\xe2\xe0\xa8\xf9\x9c\x99\xb6\x41\xf4\x56\x96\x62\x97\xb8\x1e\xe7\xdb\xe9\x0f\x3f\x07\x18\x57\x0e\xf5\x28\x17\x08\x12\x83\x65\x63\x25\x88\x4d\x15\x22\xea\xc6\x8f\x0c\x95\x2a\xe8\x4c\xd0\x46\x8d\x6b\x65\xbc\x08\x2b\x4e\xf1\xff\x0e\xac\x17\x7f\x92\xf7\xfb\xfb\xf9\x7d\xfc\xb5\x97\xb5\xfb\xd8\xf6\x95\x1b\xce\x27\x56\xb7\x69\xbc\x20\x9e\xd0\x65\x73\xc1\xf3\xcf\x35\xa9\x40\x14\x7d\x17\xa8\xb9\x66\x56\x5d\x2c\xde\x69\x3e\xb5\x85\x9d\xf1\x47\xad\xcb\xf4\xeb\xa0\x12\xc1\x13\x97\x4d\x92\xd3\x67\x8f\x56\xab\x42\xfa\x34\xe3\xbe\x01\x2d\x2d\x6c\x69\xda\xb5\xf5\x61\xf9\xb2\xb9\xbb\x96\xdc\x1c\xfe\x59\x7d\xd3\xe0\x94\x27\xd1\x56\xb9\x45\x93\xfc\x48\x70\x20\x73\x81\xab\xcf\xda\xfb\xaa\xd8\x29\xc8\xa2\x90\x5f\x2e\xb5\xf3\x9a\x60\x11\xc3\x11\xa3\xec\xe0\x89\x64\x1b\xcb\x45\x75\x21\xfc\xf4\xf4\x31\xe9\x1e\xe0\x97\xc4\xb2\x1b\x0f\x7d\x39\xf9\xa7\x93\x64\x04\xf8\xaa\x03\x87\x98\x9e\xd0\x7a\xcc\x64\x6e\x69\x55\xe1\xc5\xce\xba\x16\x92\x99\xea\xe5\xb3\x46\xea\xd5\x28\x0f\x93\xe7\x98\xd6\x01\xa2\x6e\xc4\x33\x3b\xb7\x56\x1b\x2b\x84\x2f\x16\x21\xbb\x3f\x94\x69\x57\x9c\x80\x66\xca\xfc\xf7\xb5\xd4\xaa\x48\x4a\x7c\x76\xc0\x37\xce\x1f\x1f\x8f\xff\x6f\xde\x6f\x1a\x86\xa4\xda\x76\xe8\xfa\xfa\x05\xea\xe7\xb9\x14\x86\x30\xb0\x4e\x99\x1a\xee\x5f\x30\xa3\x64\x31\xbe\x65\x6e\x72\xb3\xd4\xa8\x87\x59\x44\x18\x78\x6f\x54\xe2\x7a\xc7\x8e\x29\x80\x33\xf7\x0f\xd1\xb4\x62\xa8\x4f\x2a\x28\x21\x6a\x70\x47\x67\x2b\xdc\xd1\x02\x26\x13\x2e\xc5\x5d\x0f\x49\x39\xff\x30\xe5\xe2\xa7\xe9\x06\xf0\xa7\x09\x19\xe8\xce\x11\x20\x3f\xcd\x23\x2e\x4f\x99\x3e\xb2\x51\x84\x8f\x8f\x59\x7c\xa0\x07\xaa\x88\xfb\x80\x9a\x86\xec\xb0\xf3\x27\xd3\x71\xb7\xca\x63\x08\x63\xfc\x1a\x10\x35\x73\xf0\x9f\x8b\x92\x4b\x63\x85\x37\xa7\xc4\xa8\xa4\x6e\x06\xae\x28\x55\x6a\x87\x15\x43\xf0\xea\x96\xb8\xa1\xe0\x24\x84\x25\x7e\xbd\x47\x6d\xb0\x69\x33\xa6\xce\xea\x9c\x91\xcd\x05\x4f\x6a\x7a\x1b\x25\x86\x6a\xb2\x0b\x92\xda\x3e\x3a\xd9\x24\xa8\x23\x0f\xb3\x52\x78\xa5\x25\xa1\x3d\x03\xa9\xcf\x2c\x57\x9e\x48\xa2\x6c\xf9\xc7\x8d\x60\x44\xc6\xa8\xd3\x4c\xfb\xfd\xea\x03\x42\xa4\xbc\xc7\xcf\x13\xc7\x21\x65\x0a\x9c\xce\x86\xdd\x1b\xa7\x6a\x96\xdf\x34\x59\x4e\xf7\xac\x83\x02\xc9\x8e\x89\xb9\xfb\x60\xea\x70\x77\x42\x71\x24\x3c\xfb\x3c\xd2\xfd\x6b\x5e\x95\x68\x45\x44\x38\x6a\x22\x9b\x0b\xcc\x47\x87\xca\x5a\x0b\x95\xc5\x3d\x93\x1a\x53\x8b\x13\x75\xc6\x1a\x91\xf2\xf5\xdf\x36\x00\x06\x8d\x90\xf4\x49\xef\xdc\x90\xbc\x6a\x7a\x91\xe3\x23\xd6\x90\xd2\x2a\xf3\x87\xeb\x57\x4d\xc1\x77\x3d\xd6\x88\xa8\x2c\x5f\xaf\x8d\x00\x7d\x67\xd3\x17\xb2\xa6\x17\xbd\xa5\xc0\xa2\x79\x6e\x9c\x9d\x6a\xac\x12\x6d\xe8\x85\xa8\x8a\x62\xcc\xcf\x28\x1d\x33\x84\xfc\x42\x9c\x02\x65\x2a\x9b\x87\x83\x95\x47\x0e\xd7\x59\x38\xd5\xaf\x4b\x26\x97\xa2\x1a\x32\xbd\x70\x7f\x7c\xe1\x12\x93\xb8\x61\x6e\xff\xca\xba\xe4\x9f\x37\xa8\x1f\x95\xee\xa9\x8b\x76\x26\xef\x2f\x5c\xa5\x62\x30\x39\x70\x31\x10\xe1\x75\x1c\x5a\x43\x51\xcb\x2a\x35\xff\x71\x4d\x35\x8b\x72\x98\x7f\x2e\xf8\xf8\x26\xdd\x58\x03\xb1\x2a\xbf\x16\x78\xf5\x72\xcf\x3a\x91\xdc\xd6\x89\xc8\x59\x6e\x5d\x7f\x29\x48\x2d\xb2\xb9\xc0\xb8\x40\x93\x15\xc1\x26\xc3\x11\x13\x3f\xfd\x7f\x87\x35\x38\xa7\xcf\x78\xeb\x9b\x67\x97\xbc\xca\xe8\xd2\x46\x7a\x82\xde\x23\x49\x6d\xc6\xb9\xe2\x08\xf9\x88\xac\xb0\xb8\xe5\x94\xa8\x81\xd4\x8f\x8e\xe9\x57\x21\x17\x37\x16\xe9\xf8\xe7\x57\x29\x33\x5f\x0b\x36\x6a\x0a\x2d\x97\xf2\xfb\x36\x5b\xf5\x1d\xd3\xcb\xe6\x56\xc7\x3b\x1c\x15\x9a\xc6\x85\x99\x8e\x97\x54\xd9\x61\xb1\x3c\xf2\x40\x82\x95\xba\xf4\xa1\xa4\xd5\x27\x76\x6a\x84\xd1\xa8\x6b\xd7\xc4\x30\x4b\xb7\xbf\xa0\xab\xad\xda\x76\x74\xed\xaf\x9b\x24\xbe\xa2\x85\x58\x85\x3a\x42\x92\x60\xc0\xb8\x6a\x72\xf2\xf6\xac\x11\x8f\xf2\xbd\x1b\x9f\xd0\xf6\xb1\xfa\x28\xc4\x25\x25\x07\x79\x4a\x4a\xe1\x9d\x5d\x6a\x24\x27\x0d\xb6\x96\x27\x72\x71\x5e\x5f\x7d\x65\x6c\x1c\x3a\x50\xa1\xd6\x14\x3a\x5a\x03\xd0\xf7\xf7\x18\x29\x0b\x62\x49\x66\xc1\xbb\xba\x80\x7c\x05\x87\x99\x4d\x24\x6e\x6b\x5c\x7d\x1c\x54\xa7\x8d\x4a\x9e\xda\xc4\x8c\x9c\x5f\xe7\xbc\x2b\x0e\x95\x87\xb1\x83\x4a\xe2\x15\x8d\x4f\xbd\xad\xc9\xee\x60\x0f\x39\x0d\x64\xf9\x09\xee\x7d\x66\xe3\xbd\xf1\xb7\x9a\xce\x87\xf5\x99\x1b\x57\x69\x7a\xb5\x84\x71\xd9\x4b\xb9\x07\x27\x6c\x57\x1d\x25\x04\xe1\xbb\x5f\x98\xa3\xd2\x64\xec\x33\x7e\x6f\xfc\x61\x1f\x10\x01\x43\x5c\x88\x2d\xb8\x74\x16\xc0\xd9\x92\xc8\xaa\xe0\x5e\x91\xa6\xaf\x20\x8e\x29\x44\x46\xc3\x9f\x7e\xf1\x9c\x26\xea\x2f\xe8\x8b\x58\x98\xf7\x06\x9f\xee\x51\xef\xd8\xd5\xd9\x79\x1d\x6f\x78\x6d\x17\x10\x95\x09\x8b\x96\x86\xab\xb0\xf0\x7a\x5d\xc4\x8e\xc3\x21\x84\xa5\xda\x63\x73\xf4\x2a\x31\x2c\x28\x44\x91\xc3\x49\x65\x8b\x76\x82\xc1\x2e\xce\xfb\x65\x1e\x0e\x2b\x2d\xc9\xd7\x14\x16\x48\xd1\x3c\x6b\xdf\x43\xea\x2b\x4f\x9c\xd9\x29\xb0\x3d\xed\x6f\xb5\x82\x56\x58\x51\x18\x21\x70\x51\xd8\xe2\x95\x90\xb6\xbe\x78\xf1\x92\x65\x53\xf8\xad\x18\xae\xc0\xb2\x25\xc1\xca\x15\x3a\xe0\x24\x72\x6c\x1f\xb7\x5a\xd7\x0a\xf0\x90\x3c\x05\xc1\xe7\xc0\xbc\xb5\x82\x88\x53\x0c\x4b\x88\xf0\xed\x7a\x2f\x1c\x0e\xbe\x50\x95\xb7\x1e\x33\x33\x8f\x8d\x80\x22\x24\xb6\xb8\xe2\x36\xad\xd6\x04\xec\x51\xa5\x8a\x48\xc9\x99\x32\x08\xed\xed\xc7\xcf\x27\xaf\x43\xca\x24\xcd\x1b\x7b\xaa\x47\xe7\x5a\xa8\x40\x80\x95\xd9\xeb\xed\xba\x5b\x5f\x91\xf7\x3b\x64\x85\x7e\xfa\x96\xff\x4f\x3a\xd5\x92\x9b\x07\xd2\xcf\xdc\x0d\x7a\x03\x15\x4a\x3d\x4b\x68\x91\x19\x99\x85\x2a\x9e\x62\x86\x23\x60\xdb\x9c\x5e\x5d\xed\xb3\xea\x45\xe7\xab\x7f\x8f\x7a\xd4\x61\x39\xcb\x5d\x2c\x32\xe3\x76\xb4\x3b\xfa\x3c\x95\x3a\x36\x76\xc5\x63\x7d\xbf\x36\xd8\x34\x89\x47\xfa\xb1\x1c\xe1\x6f\xe8\xd4\x01\xab\xbe\xc0\x2d\x87\x5b\x77\xf2\x51\x20\x5e\x8e\x49\x49\xa8\xc3\xa7\xee\x7f\x4f\x9b\x2c\x73\x1f\x03\x91\x79\x1f\xe9\x53\x20\x60\x6e\x43\x33\x30\x4f\xdb\x87\x0e\x37\x78\x93\xc9\x0e\xe9\x51\x6c\x30\x8b\x03\x8a\x1a\x07\x3e\xa8\xbe\x4c\xc4\x25\x68\x7a\x96\xdf\x58\xad\x1e\x19\x43\x65\xec\x02\x09\x1c\xe3\xb7\x4b\xe0\x70\xd5\x29\xe2\x30\x38\x85\xef\xb6\x4c\x53\x9e\x8f\xa5\xd9\x64\xa9\xf1\xd0\x71\x95\x0a\x98\x1c\xbe\x90\xb9\xaf\x49\xf4\x28\xcc\x63\x24\x31\x6d\x1c\xe0\xf7\xc4\x4a\x71\x7c\xd1\x53\xbf\x09\xa0\xa3\x9e\x69\x91\x92\x00\xb6\xaf\x69\x6b\x0a\x9d\xdc\xc2\x5c\xc4\x85\x9f\x17\xe2\xf8\x84\x8b\xc5\xa6\x7b\xf9\xab\x6f\x36\x91\x86\x5c\xea\x33\x8e\x96\x6b\x8a\x3f\xb6\xe6\xb4\x9d\x27\x61\xfc\x91\xe7\xff\xe5\x37\x2e\x95\xcb\x23\x28\xf1\xc1\xba\xb3\x4d\xbd\x65\x4e\x71\x89\x27\xe0\x77\x4d\xd5\x4a\x69\x5c\xf5\x3d\x99\x79\x19\x7f\x5e\xa8\x60\x38\xa4\x39\xe9\xac\xbd\xad\x43\x8c\x6a\x7c\xcc\x13\xde\x02\x9b\xdf\xbe\x56\x8b\xeb\xc5\xc1\x85\x82\x33\x6b\x16\x80\x8a\xbb\x8c\x85\xc0\xff\xd6\x7e\xc5\xd1\xe4\xad\xa7\x31\x93\x80\x6e\x82\x2d\x89\x18\xc6\x55\xbb\x75\xf0\x2d\x8e\xaa\x19\x83\xee\x8d\x53\x77\x1b\x81\x9e\xb9\x11\xb4\xa9\xed\xef\x60\x9f\x8f\xea\x72\x03\xa9\x2d\x56\xf2\x1e\x29\x50\x59\x4b\xee\xf4\xe2\x55\x98\xd6\x39\x5b\x9f\xcf\x7c\x60\x8f\xa6\xb1\xc7\x30\x2a\x4b\x2c\x4c\xfb\x8b\x4d\x35\x2e\xaa\x88\xd4\xe6\x34\xd0\x85\x11\xc4\x9b\xe6\x9b\xed\xdc\xf1\x26\x2f\x54\xdc\xdf\xcf\x39\x74\x3c\x42\x7c\xe4\x1e\x31\x38\xba\xcb\x21\x26\x6e\xde\x56\x15\x0d\xbe\xd0\x4b\xf3\x92\x56\x93\x5e\x61\x8c\xd6\x33\x58\x3b\x72\x06\xcb\xfc\xc3\x6e\xa9\x89\x45\x69\xd9\xf5\x28\x13\x79\xff\x2f\x8b\x52\xe0\x90\x1f\x20\x23\xbd\x55\x71\x31\xab\x04\x2a\xf8\x3d\xaf\x35\xef\x3c\x8f\x21\xde\xbd\x13\xb0\x8d\x0d\x1a\x7d\xb7\x8a\x18\x71\x15\x7a\x2a\xf5\xc4\x4e\x40\xb9\xb3\x18\xb1\x05\x0b\x61\xfd\x95\xed\xa0\x69\x51\xf5\xf3\x36\x01\x86\xed\x99\x61\xc3\xc1\x34\x11\xdb\x1c\x51\x93\x1b\xc8\xe0\x8d\x90\xae\xcf\xf8\x4d\x74\xe9\x13\x5a\xec\xa2\x05\xcc\x22\x1e\xce\x95\xf3\x60\x8a\x14\xab\xd0\xa4\x86\x88\xa6\x6a\x76\x3e\xb2\x9b\x35\xff\xde\xb7\x47\xbd\x39\x61\xd8\x46\xc2\x64\x71\xc7\x11\x1d\x3e\x52\x8f\xca\x8a\x0b\x96\x6b\xda\xba\x8c\xd6\xc2\xe4\x23\x3e\x96\xdf\xbb\x28\xbe\x40\x19\xee\xcd\xe6\x82\x43\xdb\xc7\x80\x72\xc6\x22\x4e\x13\x6f\xc4\xf8\xe9\x69\x31\xdf\x31\x2d\xc4\x57\x9c\x09\x0e\x03\xbf\xb7\x9e\xd1\x3c\xf4\x62\xa0\x0b\x6f\x19\xa4\x73\x0f\x0f\x97\xc7\x41\x30\xd1\x39\xc6\xe7\x94\x07\xc4\xc7\x49\xb8\x43\x24\xc0\x20\xfc\xe5\x1f\x1d\x51\xef\xa9\xe6\xf0\xac\x47\xc5\xb6\xb9\xd9\xad\x62\x93\xc8\xf4\x30\x7d\xfe\x8c\xf8\x50\xf3\x69\x5f\xd3\x07\x3e\x5f\x1d\x1e\xc7\x9a\x78\xd2\x30\xe5\xcd\x26\x02\xb0\x29\xdd\xc5\x8c\x5f\xbc\xa7\x22\x62\x9e\x21\xc7\xf5\x10\x18\xa4\xa5\x37\xbf\xa8\x3c\x3d\x3d\x2b\x9b\x0b\x9e\x35\x86\x82\xae\xec\xcc\x6c\x2e\xa0\x9a\xcf\x7a\x81\xb8\xa6\xef\xba\x4a\x72\xc6\xf8\xce\x24\x50\x4b\xe8\xd5\x72\xf0\x8d\x93\x31\x46\xa7\xc2\x2d\xb2\x15\x76\xe3\xbf\x96\xe8\xf8\x4c\x3e\x93\x10\xc6\x9a\x03\x99\xae\x7d\x5a\xb8\x0e\x4b\x6d\x26\x27\xef\x9f\x1f\x9b\xb0\xf4\xea\xc5\xa6\xd4\x23\x48\x7d\x04\x90\x75\x08\x63\x71\x43\x7a\x20\xdd\x73\x12\x4c\xeb\x63\xe7\xf6\x19\xbb\x34\xeb\x30\x1b\x71\x72\x9c\xdc\xdf\x8b\xde\x94\x73\x52\x46\x44\x7b\xe6\x61\xed\x26\x90\x82\xb4\x52\x19\x7c\xab\x5a\x6f\x4e\x73\x6b\x64\x0b\xa8\x46\x0a\x52\xb5\xe6\x48\x35\x12\x6d\x70\x0a\xae\x89\xaa\x42\x48\x66\xdf\x89\xc1\xaa\xc0\x08\xbb\x7f\xc1\xd9\x68\x4e\x1c\x96\x38\x22\xf1\x98\x79\x0c\xd8\x0c\xd9\x3c\xf2\xb4\x3b\x57\x34\x97\xa2\xc8\x8d\x95\x83\xf0\x22\xdd\xf1\x15\x31\x6c\x51\xbb\x80\x59\xa4\x1c\x37\xd1\x51\x37\x46\x9d\xf6\x9a\x04\x9b\x30\x9b\x58\xd2\x1e\x6f\x96\xce\xce\xee\x6c\x2e\x78\xf2\x5d\x4d\xdf\xc4\xb1\x1b\xc2\x14\xf5\x83\xe3\x81\x57\x63\x1e\x39\x05\x2a\xe1\x2a\xc6\x96\x53\x80\xfb\x8f\x6c\x44\x40\x49\xd2\x3d\x6f\x18\x0c\x31\x3c\x37\xcc\x3d\x90\x10\x98\xe4\x97\x36\xdf\xf5\xf7\xbf\x26\xdb\x06\xbe\x69\x62\xcc\x65\x7a\x33\xdd\x43\x40\x7f\x9e\x09\x27\xc8\xd4\xa2\x1d\xfa\x6c\x84\x11\x53\x89\x1b\xa4\xe6\x1c\xd7\xf0\x42\xc4\x33\xad\x28\x11\xfa\xcd\x84\x26\x45\x8f\xa2\x50\x7c\x0e\x2f\xe6\x03\x40\xee\x1e\xb3\x2a\x8e\xc5\xbc\x83\x9e\x97\xdb\x06\xc9\x44\x79\x58\xf8\xe2\xc2\xb8\xc9\x43\x22\xb9\xb8\xe0\x27\x35\x2d\x47\xe1\x06\x5e\x72\xd6\x3a\x7d\x8e\xb8\x39\x16\x8a\x26\x4f\x36\x17\xdc\x7a\x0a\xaa\x51\xe5\x99\xd8\x5d\x2d\x1a\x99\x9d\x56\x89\xd4\x15\x0d\x3f\xd2\xdf\x2e\x4a\xfe\xd6\xa6\x75\x8e\x3f\x93\xfb\xfc\xe9\x73\x23\xc0\xf8\x96\xe4\x39\x96\x0a\x81\x96\x96\x45\x19\x6f\x5f\x84\x7f\x7c\xff\x54\xbd\xd3\x6d\x0a\xbe\x49\x98\xfa\x66\x96\x0d\xd7\x7c\xab\x38\x7b\x10\x0c\x74\xff\x36\x47\x8e\x6e\x68\xdd\xe1\xdd\x30\xf9\x4c\xab\xf7\xea\x43\x42\x44\x9c\xa8\x69\x55\x99\xaa\x32\x5d\x8f\x4b\x43\xa0\x0a\x76\x3c\x7e\xb4\x33\x0b\x57\x88\xc0\x3e\x9f\xe1\xc2\x20\x79\xd7\x4a\xe5\x0d\xee\x0c\x02\x97\xbf\xe7\x05\x15\x8e\xca\x24\x06\x61\x5e\x38\x4b\x08\x59\xdc\x11\x19\x41\xeb\xe9\x46\xf7\x29\xa5\xe5\xd4\xc0\xe5\xb0\x62\x26\x4e\xde\x67\xb2\xa8\x4f\x9f\x6b\x81\x88\x1d\x3f\x9a\xdb\x4e\x5b\xd0\x06\x90\x81\x45\x82\x22\x93\xb8\x60\xe3\xd9\x64\x46\x95\xc7\x52\x6d\x3e\xf3\xe9\xc3\xd0\x8b\x88\x57\xf8\x3c\x2b\xfa\x2f\xad\x19\xc7\x97\x0c\x17\x64\xf5\xbf\x6b\x9c\xfa\x00\x2e\xc6\x92\x8d\x7f\xdb\xf8\x36\x48\x67\xc4\xd5\x38\x5b\x4f\xd7\xfb\x92\x47\xba\xab\x33\x1b\x1d\x85\x85\xe3\xa0\x46\x5e\x98\xb3\x85\x4f\x65\xd4\xb1\xe1\xe0\xc2\x23\x1e\x09\xff\x74\xdc\xe8\x98\x51\xc0\x63\x48\xe6\x94\x78\xde\x0b\xef\x5a\x7a\xdb\xb2\x9e\xdb\xe6\x87\xab\x17\xfe\xe7\x4e\xc0\x71\xe4\xce\x41\xd9\x5c\xf0\xc5\xa7\x35\x78\x32\xad\x73\x50\x8d\xa2\x74\x69\x8c\x7e\xa9\x08\x5a\x89\xe3\xe1\xad\x63\xa4\x57\xfd\x6d\xb7\x34\x09\x1f\xa7\xd6\xad\x07\x3e\xb6\x11\xd6\x30\xb3\xf0\xfa\xb6\x44\x03\x9c\xcb\x0c\x73\x15\x99\xef\x6b\x72\xf0\x0c\x23\x41\x84\x48\xaf\xf5\x86\x82\xfd\xc8\x73\xf0\x1f\x2e\xd2\x87\x70\x8e\xc7\xe2\xb6\xac\xf1\xd7\xa7\x47\x35\xeb\x9e\x74\x64\x73\xc1\x1d\x40\xb5\xa7\xe1\x97\xa8\x6b\xa3\x1a\xe1\x24\xba\xfa\xf8\xa4\x88\x69\x89\x61\x5c\xce\x9a\x8d\x2a\x23\xd4\x03\x1c\xc2\x8f\x8d\x4f\x2e\x0a\x00\xd2\x71\x10\x74\xea\xc4\xe3\x50\xd6\x9c\x9b\x5a\x07\x1f\x0c\xae\xd6\x3e\xae\xd0\x02\x00\x46\x56\xc6\x3b\x7d\xad\xf1\xe3\x21\x26\xa9\xc6\xf0\xd6\xdf\x01\x39\x3e\x17\x3b\x2e\x89\xfa\x93\xe4\x0d\x40\x25\x96\x0e\x52\xd9\x5c\xd0\xb9\x2d\x69\x55\x97\xb7\x91\xcf\x09\xf5\x83\xf5\x0c\x33\xf7\x6f\x88\xd0\xd2\x15\xca\x18\xad\x87\xab\xbb\x60\xab\xf2\x62\xab\xf8\x0e\xff\x34\x76\xd3\x99\x1c\xd8\x1e\x51\x96\x3d\xc2\x15\x6d\x73\x03\xe9\x0f\x2d\x18\x95\xec\x16\x44\xde\x73\x99\xcf\x17\x92\x51\x51\x26\xa3\x12\x79\xc7\x97\xf6\xf6\x47\x15\x14\x89\xf9\x05\x6a\x57\x2d\xa0\xd4\xd5\xa2\x75\x00\x14\xbf\xc4\xb8\xf3\x18\xd0\xc4\x2d\x10\x0f\x31\xae\x26\x67\xcc\x7b\x04\x3a\xda\xb3\x1a\xd7\x7c\x32\x16\x4c\xbe\x2c\x71\xbc\x9c\x92\x67\x61\x69\x64\xf5\x1f\x2f\xb6\xc0\xc9\x82\x29\x66\xaa\xa9\x91\xc3\xb5\xc4\x0f\x45\x08\xa8\xe0\x4b\x4b\x54\x4d\x40\x1d\x2c\x71\xbe\xc6\xaf\x5e\x81\xaa\xd0\xa8\x80\xd7\xf8\x32\x75\x2d\x6c\x92\xd2\x7b\x10\x83\xdd\x05\xf0\x25\x8c\x3a\x26\x1f\xf8\x1b\xf4\xb4\x8e\x24\xf1\x38\xb0\x4c\x40\x6c\x53\xbb\x1e\xd3\xfd\xac\xa2\x18\x93\x41\x8b\x5b\x81\xa4\x82\x9c\xe6\x70\xb9\xa8\x7e\x69\x74\x8c\xaa\xc4\xf3\x6d\xf9\x99\x3e\xb7\x41\xcb\xcc\x10\x61\x5c\x0a\x4f\x30\x86\x66\x2a\x1c\x63\xde\x06\xaa\xa8\xc6\xd6\xf5\x6a\xb9\xba\x62\x27\x86\xcc\x98\xbb\x2f\x89\x5e\x69\x7c\x36\x17\x7c\xb8\x47\x8f\x61\x36\xc1\xc5\x68\xcc\xf0\x62\x9f\x76\x94\x7d\xdb\xf3\x59\x3c\x8b\xfd\xda\xbc\xe4\xd2\xf7\x9a\x1f\xce\x97\x65\x24\xbd\x4d\xb3\x4f\x0e\xeb\x5b\x37\xd6\x02\x48\x5d\x32\x56\x49\x05\xb1\x08\xaf\x67\x5c\x66\x03\x09\x2b\x52\xe2\x02\xdf\x03\xe9\xeb\x86\xaa\xdb\x75\xda\xd4\x99\xb3\x66\x87\x2f\xe0\x8c\x6b\xa2\x01\xc4\x80\x29\x01\xcb\xbb\xfa\xbc\xee\x1e\x6c\x53\x17\xd7\x88\x99\x14\x72\x75\x74\x1e\xb3\x34\x8d\x1e\xc4\x68\xf8\xf7\x0f\x0c\x87\x3b\x90\xb3\xac\xf7\xd8\x1a\xce\x92\x51\xe4\x71\x93\xf1\xd8\x7b\x76\xe2\xb6\x76\x30\x54\x36\x09\x47\x1e\x57\x90\xa4\xb8\xa5\x2e\x3b\xd1\xae\x6d\x60\xe6\x11\x1c\x69\xf1\x07\x73\x87\xc8\x10\x25\x28\xf3\x63\x6a\x7a\x6c\xea\x9c\x26\x37\x16\x93\x26\xca\x4b\x18\x75\xb1\x29\x81\x01\xbf\xdb\x17\xe7\xab\x75\x9e\xcd\x5c\xb8\x57\x55\xe0\xc0\x08\x25\xf8\x8f\x6a\xf2\x92\x2d\x23\xdb\x76\x3d\x46\x2b\xfc\x83\x28\xe7\xb4\x2a\x30\x85\xcd\xf3\xa1\x59\xb0\xc3\xd2\x92\x4b\x53\xca\x12\x56\xc5\x59\xb9\x63\x8e\x0a\xdb\xa6\x4d\x2a\x48\x00\x3e\x32\x3d\x9a\x3a\x30\x97\xad\x8b\xac\xcb\x0e\xb2\x38\x5b\xa1\xac\xc9\x1f\x2d\xfd\x77\x4b\x35\x68\xaf\x85\x22\x81\xa8\x7d\x2d\xa3\x12\x38\x99\x38\x68\xce\x7f\x6d\x38\xc8\x47\x05\x48\xc3\xd8\x6d\xc1\x94\xaf\x21\x24\xbb\x53\x2f\xb4\xaa\x72\x6e\x90\x9a\x79\xc7\x18\x31\x13\x63\xdc\x0c\x31\xf8\x4d\xaf\x3e\xef\xa7\x91\x13\xcb\x47\x24\x33\xff\x26\x46\xfa\x63\x29\xb1\xaf\xcf\x03\xf2\x41\xc8\x76\x48\x99\x2a\xf7\xfc\x60\xc3\xc3\x6d\xe0\xc6\xc1\xb8\x1f\x47\xd7\x70\xea\x52\x4d\x38\x3b\x4c\x38\x7d\xd6\x90\x20\xed\x13\xb3\x5a\x40\xa2\xea\x7a\x02\x75\x96\xfa\xea\x2a\xbd\xc9\xc8\x19\x33\x12\xda\xf5\xb1\xd7\x47\x46\x51\xaa\x6a\x13\x53\xd2\xc2\x83\x43\x2b\x92\xb8\x4a\xdf\x71\x4d\x5a\x69\xf6\x40\x30\xee\xde\xa0\x67\x6b\x11\xc4\x7a\xf5\x5a\x35\x04\x27\x65\xb5\x85\x16\xbf\xd6\xa6\xe4\xc0\x6d\x28\xfe\xd6\xfe\x2e\x18\xcd\x87\x17\x7f\x4d\xc8\xc6\x7f\x72\x82\x16\xa0\x1c\xd7\x23\x9e\x1f\x09\xe9\x87\x6f\xd6\x37\x1c\x48\x82\x62\xc4\x44\xf7\xfc\xef\x5e\x88\x37\x7b\x01\x88\x0c\x07\x77\x4a\x3b\xe9\x2a\x62\xc8\xb6\x39\xca\x37\xd8\xdd\xab\x8d\xb3\xaa\xb4\x8c\xdd\x0a\x92\xfd\xe0\xe0\xd3\x0b\x54\x5f\x03\x9b\xd4\xa1\x95\x30\x40\xdc\x26\x72\x27\x63\xb9\x64\x19\x77\xf0\x89\x8e\x3b\x2e\x6a\x8c\xd4\xdd\x2a\xe2\x32\xdd\x41\xdb\xc1\x66\x9b\x35\x1c\x8d\xa8\x8c\x17\xa4\x46\xfc\xb4\xe9\xd3\xae\xe3\x43\xa0\xc7\x93\x5b\xca\x42\x44\x8a\x80\x1e\x3d\x35\x32\x9e\x45\x81\x0e\x9a\x71\x7a\x07\x64\xf4\xf9\x42\x02\xd3\x18\x58\xa5\x58\x33\x83\x38\x11\xde\x23\xae\x8c\xc5\xa8\x84\x1c\x1a\xcd\xda\x6b\x93\x00\xb3\xd7\x17\x02\x39\x57\x17\x12\xeb\xcb\x4b\xf9\xe0\xdc\x92\xe4\xb3\x9f\xd1\x11\x91\x48\x7e\x39\x1e\xda\x1a\x70\x05\xd9\xe0\x0b\x9b\x47\x44\x81\x9d\x3a\xa5\x2c\xe7\x5f\x0d\xa4\x77\x3d\xa1\xfb\x93\x61\x81\xfa\xe7\xa3\xc9\x0d\x47\x45\xe6\xd5\x2c\xed\x39\x49\x02\xa7\x90\x54\x1a\xf8\xf9\x9e\x08\x9c\xef\x25\x98\x9d\x85\x9a\xee\x0f\x81\x58\x81\x8a\x76\x6a\x66\x59\x46\x13\x27\x96\xfd\x9c\xa0\xae\x59\xb8\x4e\x9f\x2d\x73\x8a\x07\x2f\x6e\x91\xa9\xab\x0b\x15\xb7\xff\xfb\x50\xf2\xf6\x24\x55\x32\x98\xac\xfb\x92\x1e\xb5\x8a\x05\x5c\xc5\xa2\xe3\xf7\xc6\x0c\x8d\xb0\x46\x1d\xcf\x8a\x08\xd3\x99\x16\x25\xc6\x50\xc0\x70\x0c\x7a\xcf\xf0\x21\xf2\x06\xa9\x09\xa0\xc2\x17\x67\x00\xa9\x45\x0b\x33\xe2\x5a\x82\x98\xb3\x61\xfd\xa0\x22\xbd\x02\xeb\x35\xcf\x49\x46\x52\x94\xe7\x83\x10\x1c\x7b\x2c\x1d\x2a\x6a\x36\x4c\x35\xe4\xd0\x9a\x08\x90\xd1\x67\x99\xbe\x59\x08\x2e\x2d\x40\xb6\x4d\x0a\x70\xc6\x9a\xfa\xf7\x67\x35\xc6\x2e\xe6\xea\x83\x92\x61\x3e\x7d\xee\xd5\xda\x3d\x53\xa4\xcc\xf3\x1d\xc4\x3f\x80\xc0\x5f\xb9\x00\x6a\x52\x50\x6c\xeb\xab\xc6\x8a\xef\x8f\xc2\x07\x91\xcd\x05\x67\x83\x38\xd4\x5d\x97\x9d\x15\xfe\xc7\x8f\x74\xc4\xed\xd0\xd9\x5d\xdc\x8a\xe5\xfa\x2b\x5b\xe0\x0d\x83\x6d\x31\x14\xab\x03\x56\x89\x50\x05\xe2\xef\xf0\xeb\x1b\x55\x1f\x38\x9a\x7e\xbe\xba\x14\x28\xca\x79\x7e\x41\x5c\x02\xc9\x3b\x31\xbb\x60\x84\x6a\xf7\xf5\x47\x97\xb7\xfd\x68\x32\x4c\xe6\xfd\x42\x09\x03\x75\x91\x69\x3d\x57\x6a\xc5\x01\x35\xcb\xa8\x10\xa5\x02\x03\xe9\x3f\x1f\xb9\x34\x8a\x5d\x02\xe3\x9d\x1e\xd2\x0a\x72\x7a\xe4\x96\xb3\x45\xca\x38\x2b\x30\xb5\xf6\xca\x76\xe5\xd6\xaf\x7f\xc2\xe0\x2a\xcd\x54\xb9\x6a\x23\x27\xa6\x48\x66\xda\x9e\x1b\xa1\xc6\xe5\x31\xe2\xa5\xf3\x0d\x4d\xc5\x05\x23\xab\xa1\x99\x75\xef\xbb\x00\xc0\x4e\x19\x6f\xec\x65\x56\xbe\x08\x89\x5f\x62\xd8\x79\xbc\xed\x6a\xb5\x5d\x24\xdc\x5f\x0f\x2c\xdf\xda\x1f\x3f\x4e\xcc\x75\x70\x2f\xda\x0a\x19\xb9\x5e\x44\xff\x08\xfe\x6f\xa5\xfa\x39\x14\xca\x4c\xfd\xc7\x61\x15\xef\xb9\xae\x31\xa7\xef\x82\xde\x5b\xdd\x0a\x93\x00\xe0\x47\xfe\xc0\x10\x59\x15\x88\xb1\x7f\xf7\x3e\x71\x63\xcd\xa3\xae\x17\xb1\xc5\x82\x7b\x36\x0a\xb5\xb2\xee\xae\x6c\x2e\x78\x5a\xa8\x32\x64\x6d\x54\xcf\x62\x87\xaf\xbe\x10\x93\x09\x66\x43\x07\x87\xbe\x30\xb4\x0a\x3b\xb1\xb1\x8b\x35\x46\x1f\xf3\xb0\x43\x1a\xb8\x06\x58\x33\xc1\xd7\x00\x0f\xc7\x8e\xc7\x09\x46\xcf\xe1\xe4\x7c\xdb\x21\x95\x0a\x72\x90\x85\x70\x85\x38\x05\xc4\x4f\x55\xf4\x28\x26\xf5\x2a\x18\x95\x1f\xf3\xec\x5b\x67\x88\x2e\xda\x2d\x0c\x39\x65\xd1\x92\xbf\xfa\x81\x04\x04\xaf\x8a\x99\x2b\x76\x7f\x00\xda\xe0\x84\x0f\x41\x52\x47\x97\xaa\x00\x4d\x7d\x8f\x4f\x81\x79\x03\x66\xab\xc6\xbb\x9e\x16\x51\xd7\x9e\x7b\x5b\x73\x00\xc0\xd8\x96\xdd\x9c\x8f\x9e\x4c\x46\xf5\xae\xee\x6c\x91\x52\x2f\xeb\xa9\x5a\xe9\xf2\x9e\x98\xdc\x56\xe2\x2d\x2b\x25\x33\xfc\xfd\xd1\x7a\x85\x15\xeb\xc7\xff\xe6\x19\x28\x74\x5d\x64\xc8\x8c\x0d\x38\xff\xb4\x18\x18\xa5\x00\x1b\xb7\xcc\x8e\x78\xb3\x71\x83\xbf\x60\xcd\x49\x85\x89\x31\xfd\xa6\x02\xfb\x8a\xdd\x9a\x8c\x3c\x66\x04\xd9\x51\x97\x6e\xd5\xd3\x63\xb4\x98\x46\x0b\x64\x4a\xc2\x91\xec\x9d\x5e\xb5\xbb\xb9\x27\x4a\xfd\x6d\x00\x96\x21\x7d\xd9\x06\x46\x2c\x4b\x6d\xfe\x24\xf6\xdf\x9b\xdc\x33\x0e\x62\xa8\x81\x1c\x8e\x2b\x50\x4f\xfc\xab\x33\x06\x91\x75\x96\x2c\xbd\x60\xcf\x5e\xa0\xe8\x8e\xb8\xf3\x5f\xfa\x03\x8f\x88\xe0\xda\x83\xa8\x05\x58\xad\x03\xe9\xdf\xce\x6d\x85\x85\x8e\x87\x5d\xe9\x47\xf8\xe7\x07\xaf\x82\xd8\x49\xbb\xf9\xea\x7b\xb4\x1d\x34\x84\xea\x88\xdf\xb9\x63\xe2\x00\x96\xd0\x9d\x4f\xed\x58\x09\x3c\x14\x6b\xbe\xc3\x9d\x74\xc2\xb7\x79\xf6\xbc\x5a\x0b\x8f\x85\x27\xaa\x10\x21\xad\x53\x27\xa7\x02\xe6\x29\xf5\x85\xa0\xd0\x85\x7b\xd4\x61\xab\x61\x96\x47\x9c\x1e\x33\x90\x7e\xf6\x31\xc1\xef\xb9\xcd\x29\x7b\xb4\x42\x9a\xee\x98\x7f\x56\x5e\xb8\x16\x09\xef\x92\x8b\xee\x1e\x0e\x96\xc9\xe5\x20\x84\xf4\x5f\xd6\xc5\xbb\xb0\x6a\x27\x54\x56\xd3\x97\x3f\x00\xa4\xe3\x6b\x92\xf4\x97\xfa\xea\x02\xd0\xf4\x08\xef\x92\x22\xea\xcb\xe6\x82\x99\x2d\xc9\x52\xd3\x25\xcc\xb7\xb3\x65\x2b\xfc\xb4\xbc\x56\x52\x55\xa9\x7b\x12\x08\xe1\x99\x1e\x2a\xf1\x7e\x53\xaa\x75\x0b\x20\xe2\x79\x94\x71\xe8\x6a\xf0\xd4\x3a\x0d\x36\x95\x37\xc5\x64\x34\xd9\x4e\x62\x60\x0c\xa6\xc8\x25\x91\xb7\x46\xea\xec\xa9\xe1\x60\xc8\x20\x9c\xe7\x9e\xe8\x19\xa3\x25\x0e\xd2\x8b\x21\x0c\x16\x62\x58\xfd\xd5\xd7\x41\x3b\x83\xb2\x72\x18\x3e\x79\x38\xbb\x7d\x39\x10\xac\x42\x15\xcc\x9a\xd5\x89\xdc\xbb\xc1\xd8\xd4\xb4\x7c\xbb\x28\x68\x3a\x0b\xdf\x50\x9b\x75\x9a\x54\x41\xf9\xa7\x0d\x9a\x92\x11\xb1\x93\xf2\x08\xc1\xb9\x4d\x6a\x71\xba\xb3\xd3\xe3\xc9\xe0\x5b\x91\x14\xfb\x4c\x6e\x95\xb5\x56\x52\xbf\x6f\xcf\x2d\xbe\x35\xca\x42\x3a\x0d\x5d\xd8\xab\x40\x84\xab\xaa\xec\x21\xcf\xb8\x5b\x74\xc1\x6f\x41\x15\xc2\xa1\xef\xfa\x85\x70\x31\x30\x8a\xaa\x5a\xc8\xf1\x04\x73\xf2\x6a\x0f\x34\x08\xab\x84\xa1\xc8\xa6\xea\xaf\x53\xd5\xea\x48\x2b\x0d\xfd\x28\xfd\x7c\x9c\x24\x5b\xd9\xa8\x41\x8b\x45\x7e\x7f\xb9\x00\x04\xcd\x6d\x23\x4c\xc4\xbb\x7b\xa9\xdb\x34\x17\x12\x9e\x14\xc9\x78\x6e\xee\x83\x86\x53\x61\x59\x2f\x5b\xf3\x3f\xdd\x00\x2c\x11\xa0\xea\x64\x6a\xcb\xb6\x6b\x12\xfd\x4b\xdf\x21\xde\x20\x5f\x3b\xf5\x3b\x29\xd2\x8f\x3c\x0f\x99\x56\x18\xa5\xbb\x1f\x93\xb6\x09\xc4\x96\x4a\x4a\x03\xe9\xc9\x19\x11\x47\x23\xf2\xa0\xc8\xa4\x5e\x1e\x2f\xe5\xb4\xa8\x83\x98\x69\xf1\xd3\xdd\xf1\xa0\x56\x24\x55\xb8\xe8\xa8\x74\x30\xd8\x21\x73\xfc\xa5\x9c\xc3\xa0\x52\xcc\xc5\x87\x34\xc4\x1c\x65\x85\x70\xd5\xf8\xcd\xb7\xeb\xad\x31\x20\x96\x26\xc3\xb4\x88\xe8\xb3\xe7\x82\x9d\x4f\x6a\xc4\xce\xe6\x82\x1f\xad\x02\x0b\xed\xdb\x36\xf6\x04\xfc\x35\xb5\x7e\x9e\x06\xa3\x45\x75\x21\xf8\xb2\x68\x87\x86\x08\x6e\x30\x62\xc6\x4c\xd3\x65\xa3\x45\x3f\x1e\xb1\x8a\x6e\xcd\x32\x90\xfa\xe9\x9c\x2b\xc1\x9b\xb9\x56\xd3\xd1\x1d\x7d\x8b\xac\x3a\x30\xae\x86\xe5\x97\x00\x87\xa5\xaf\xb9\xb1\x55\x35\x77\x60\x2d\xb8\xe1\x4d\x51\x7f\xe6\xed\xf0\xd7\x42\x14\xcf\xd8\xba\x3a\xae\xbb\xf3\x8c\x40\xa1\x88\x1b\x56\x6b\x65\xd0\xec\xeb\x66\x73\x1b\xa2\xcc\x7b\x3a\x86\xda\xb4\xfd\x42\xac\x4b\x6b\xfc\xe1\x6d\x9d\x18\x4b\x18\x8b\xa7\xad\x23\x8e\x8c\x73\x14\x20\xca\x77\x0a\x91\x59\x40\x22\x17\xfd\x27\xe1\xe6\x9b\x5d\x8c\xfa\x11\x23\x14\x32\x9c\x77\x27\x43\xbc\x67\x21\x4f\x88\x3f\x5d\xf4\x74\xf2\xc6\x23\x2e\x43\xd8\x26\x42\xbc\x45\xdd\xa2\x7f\x3c\x3c\x3c\x4a\x55\xdc\x32\x61\xbc\x81\xe6\x1f\x02\xd3\x3c\xcc\x2a\x58\x34\xa3\x52\xdf\x38\x3c\x4a\x4b\x89\xa9\x90\xc0\xfd\xe6\x4b\x2a\x24\xf8\x1d\x85\x0e\x5e\xdf\xae\x9e\x21\x5e\xb9\x80\x2a\x0a\xed\x71\xe0\x09\x30\xe9\x62\x7e\x54\x7d\x5d\xb3\x48\xa9\x0b\x54\x00\xa2\x28\xe5\xe4\x75\x1d\xdb\x1a\x97\x8b\xa0\x8e\xe4\xe1\xa4\xbe\xfa\xae\x7a\x45\x9b\x38\x05\x57\xb4\xc9\x3f\x50\xd3\x1b\xee\x76\x45\x16\xae\x07\xf3\x0a\xf3\xcf\xbd\xed\x9b\xae\x95\xe5\x93\x93\xac\x6d\x86\x8a\x08\xeb\x4a\x33\x25\x0b\xb4\xf9\x22\x2c\xe2\x7d\x67\x01\xd1\x03\x71\x5b\x42\xd9\x65\x28\xde\xdb\xde\x94\xf0\xf8\x26\x76\xe5\x36\xf9\x57\x4d\x0c\x1d\xf7\x55\x31\xf3\x88\x2b\x3d\xdb\xbf\xc7\xe4\x14\x9b\xa3\xd7\x04\x62\x6e\xec\x13\xe2\xc2\x5d\x24\x7d\x94\x9b\x84\x6e\x7e\xf6\xb0\x86\xe1\xc2\xb8\x2c\xfd\x61\x8c\x5f\x3e\x91\xdc\xb6\x0e\x65\x9e\x55\xc7\x6e\xd4\x94\x5b\x70\x41\x02\x15\xe6\x09\xf4\xa8\x3b\x04\x9a\xba\xf9\x55\xae\x6a\x11\xfc\xe4\xac\x84\x3e\x48\xb9\xb8\xb4\xf5\x94\x2e\x0c\x56\xc3\x2c\xa2\x6b\xdc\xd0\x15\x9f\xb1\x3a\xf7\xc1\x57\xfc\x8c\x4f\x7b\xa3\xb4\x87\x56\x15\x17\xc7\xc6\x2f\x8f\x8e\xf6\x47\x57\xd3\x0c\xe8\x5a\xed\xab\x14\x7d\xe6\x10\xde\x84\x17\xb5\x71\xbb\x25\xaf\x5b\x86\x1c\x53\x20\x32\x33\xed\x2f\xc6\xcd\x4b\xbb\xd4\x84\x45\x39\xc2\x92\x9f\xc3\x99\xe8\xc9\xdd\x76\xe1\x50\x15\xc3\xa4\x24\x68\xf8\x85\xfb\x3a\xf4\x4c\xdb\xb5\xe4\x42\x1f\x1d\xab\xc1\x39\x5d\x93\xc3\xae\x05\x33\xe6\xb1\x77\x75\xc2\x83\x47\xb2\x22\x47\x37\x7e\xb5\x05\xb0\x66\x90\xc9\xa1\xab\xc6\xd7\x03\x51\xe0\xf6\x52\x5b\xde\x70\xdf\x9b\xab\x42\x97\xef\xd4\x45\x4c\xe1\xc8\xa4\x67\xc0\x34\x08\xb3\xa2\xf4\xb3\x2a\x6b\x0f\xa7\x40\xdc\x92\x2f\x28\xae\xc1\x99\x43\xd0\xdd\xb9\x2c\xbe\xdc\xb8\x87\x12\x83\xba\x3c\x71\x04\x1c\x25\x7f\x10\x02\xc7\xd6\xf8\x98\xf4\x82\xab\x29\xfd\x83\x71\x6d\x09\x91\x14\xee\x3c\xc6\x19\x24\x99\xf7\x9d\x00\x39\x9a\x83\x4a\x25\x71\x78\x32\x57\x8a\xd8\x35\x1f\x39\xa8\x20\x60\x7b\x61\xec\x79\xaa\x55\xc2\x1a\xfc\x42\x24\xf3\xea\x77\x0a\xec\x53\x6e\x62\x0f\x75\x1c\x6c\x03\x2d\xea\xf4\x82\xb3\x20\x87\xab\x60\x46\x12\x61\x3b\xbd\xf4\x21\x51\x8e\xce\xa7\x4d\xc7\xfe\xf7\xce\x04\xed\xb2\x11\x79\xe9\x20\x2d\xdd\x1d\x17\x83\xbc\x3c\x4f\x6b\x38\x16\x2d\xf5\x86\x83\x6f\xed\x70\x9e\x42\xea\xd1\x7b\x54\x7a\xdf\x00\x6d\xec\xed\x8b\x22\x78\xbc\xf0\xef\x11\xdf\x77\xdb\x99\xcb\xa3\xe6\xfc\xe2\xc5\xfa\xd6\x6c\x3b\x36\x02\x3c\x6d\xe6\x8b\x02\x75\x93\xa4\x0a\xd4\x19\xf1\x70\x94\x08\xd9\x87\x81\x6a\x14\x37\xf7\x72\xa5\x37\x67\x76\x03\x40\xd8\x77\xcc\x9e\xc9\x1b\xc8\x6f\xa8\x96\xba\x87\x6d\x5c\xb5\x62\x2c\xce\x23\x27\x34\xc1\x0f\xd4\x88\x85\x9c\x0d\xf4\x88\x56\x52\x59\xc8\x29\xe1\x48\x11\xed\xb1\x07\x5a\x00\xfc\x8a\xfa\x82\x2c\x76\xe3\x01\xa0\x86\x6c\xd2\x6a\xf8\xb3\xb1\x6f\xaa\x2e\x6c\x04\x63\xc6\x91\x78\x7d\xfa\x27\x5b\xd4\x6f\xf3\xc8\x45\x09\x65\xa3\x65\xde\xd0\x28\x71\xa0\xbc\xab\x1d\xfc\x76\xb8\xe4\xe4\x12\x56\x71\xa4\x99\xca\xf6\x1b\x25\xcc\x92\x77\x8f\x33\x95\x6d\x6d\x10\xf3\x2c\xec\x31\xc5\x89\x9a\xf8\x30\xa8\x2c\x18\x29\x89\xb4\x26\x3d\xf7\xad\x2b\xb4\x48\x2e\xda\xef\xb2\xa1\x9b\x32\x27\x24\xcf\xb2\x4d\x1b\xd2\x04\x3b\xf8\xd4\xa4\xe4\xaf\xc2\xb3\x20\xda\xda\xc1\xef\xb6\xb5\x44\x0f\x13\x57\xb1\x13\x19\xa2\x4e\x6f\x17\xe7\xbc\x46\x6a\xf2\x27\x5f\x33\x2e\x03\x74\x5e\xd7\xcb\xda\x88\x09\x97\xf8\x01\x63\xc7\xb6\x64\xb0\x37\xc3\x53\x61\x7a\xc4\xf4\x3d\x59\x35\xf1\x1c\x7e\x6f\x1b\x10\xeb\x31\x4d\xe4\x46\x90\x37\x63\xd5\x8d\xc9\x1b\x0f\xfb\x8c\x0a\x38\xed\x1f\x40\x55\xec\x56\xc5\xad\x75\xed\x4b\x9a\x20\xaa\x00\xc8\x73\xe2\x98\x70\xb4\x99\x24\xd1\x00\x8c\xd4\x90\x27\xbd\xaf\xc3\xf7\xf9\xf7\x36\x51\x69\xe4\x69\xa1\x91\xcd\x05\xb7\xf7\xab\x4d\x57\xf2\x31\x63\xc4\xb6\x91\x68\x17\x5f\xa0\x61\xe6\xf9\xb7\x15\xab\x79\xfb\x62\x9d\xf3\xdc\x15\x8d\x63\x7f\xa9\xdc\x41\x4a\x5c\x4d\xa1\x73\xf5\x68\x50\x67\x4a\x11\xfc\x58\xfc\xe4\xe8\x55\x32\x59\x96\xee\x0a\x4d\x69\xe7\xcc\x21\xd0\x11\xcd\xb6\x49\x04\xcf\x4a\xf5\x6a\xfd\x41\x54\xad\x32\x8a\x4c\x4b\x10\xb6\x8e\x82\x3c\xa0\xe4\x23\x86\x1c\x4f\x42\xea\xc7\xd8\xc9\x06\x55\x89\xd2\x82\x30\xd0\x6b\xd6\x42\x59\x74\xfd\xa5\xca\x96\x25\xdc\xd7\x7f\x29\xaa\xab\x58\x71\x44\x83\x61\x1b\x81\x01\x25\xf2\x08\x17\x1d\x90\xbc\x81\xf0\xd3\x5c\xf1\x18\x60\x16\xfa\x25\x09\xc1\x08\x3e\x39\x4f\x13\x06\xa9\x61\xc7\x1f\xcc\xfa\xb6\xfc\x60\xb2\xaf\xe9\x21\xa7\x1f\x39\x89\x11\x6e\xfa\xbe\x3d\x9a\x22\x36\xf5\x5d\x17\x69\xcd\xcf\x2f\xee\xd5\x6d\x47\xa3\x3e\x56\xea\x1a\x20\x5b\x55\x41\xae\x34\xf6\xda\xbf\x40\x9b\x9f\xfb\x95\x3c\x95\xff\xe3\xed\x25\x91\xf9\x94\x4d\x6a\x42\xa2\x29\x73\xdf\xbd\x91\xc8\x40\x81\xd4\x48\xc1\xe7\x0a\xd9\xe1\x1f\x7f\x13\x08\x46\x77\x76\x4c\xeb\xe4\x26\x61\xbf\x38\xa6\xed\x63\x5c\x40\x82\x40\x28\xbf\xd4\x17\x5f\x03\x12\x48\xd0\x81\xf3\x90\x66\x93\xe9\xfa\x71\x4a\xff\xcc\x66\x40\x15\xd3\x45\x87\x06\xd2\x9d\xcf\x00\x8f\x40\xd3\x97\xca\xf1\x57\xc0\xc9\x94\x44\xab\x05\x8f\x5c\x20\xbe\xcc\x32\x2b\x3c\x19\x20\xf5\xfc\x82\x3e\xae\x44\x15\x54\x8a\x29\x36\x07\x96\x6a\x0a\x90\xbe\xeb\xd1\x0a\x66\xf2\x4e\x4e\x5f\x70\x4c\x25\x0c\xd3\xa6\xcf\xce\x4e\x9b\xf9\xe1\x69\xdd\xe1\x2f\x2e\x3d\x20\x2c\xde\x96\x93\x4a\x73\x1d\x9b\xe9\x5e\x34\x0e\x7c\xc4\x9a\x64\x82\x34\xed\x95\x5d\x0f\x5e\x01\x4e\x8c\x70\xf4\x00\x9a\x4c\xc6\x83\x0b\x14\x24\xd5\xe9\xe8\xcd\xe6\x02\x73\xab\x06\x38\x44\x4e\xa1\x82\x98\x84\x49\x64\x36\xf6\x89\xe2\xe7\x0e\xca\x68\x3f\x64\xdf\x1e\x7f\x0a\x28\xcb\x71\x73\x9f\xdc\x40\x2a\xab\x01\x6d\xb0\x83\xcc\x28\x79\xfb\xd9\x69\x80\x26\x77\xa6\xcd\x9e\xcd\xc5\xf2\x53\x7f\x5c\x0d\x64\xb8\xaa\x84\x11\xcf\x17\x97\xe2\x9c\x1e\xfd\x9a\xab\x91\x70\x3f\xc5\x7a\x24\xf5\x45\xba\x9b\x60\x18\x32\xe3\x5f\xff\xfb\x5a\x15\x66\xf3\x88\xf1\xbe\xdd\x73\x63\x55\x3b\xcd\x0f\x2f\xb3\xe1\x19\xa5\xe2\xea\x42\x21\xf1\xdb\x17\x01\xe1\x68\x9b\x83\x54\x83\x6f\x1f\x91\x91\x4e\x88\xb2\x87\x1f\xf2\xf5\xe7\x64\x0b\x44\xda\xd5\x64\x73\x01\x54\x5f\x9e\x16\xe3\x5a\xd2\x1f\xd5\x6e\xd4\x3a\xa3\x9e\x98\x70\x05\xa5\x8b\xc4\xeb\xce\x57\x96\x1b\x8f\xdf\xa8\xed\x22\x49\x27\x97\x4e\x19\x3b\x8a\xc9\xe3\xce\x29\xbc\xc4\x95\xca\x9d\x72\xe4\x7b\xc7\x62\x15\x63\x3d\xe2\x40\xe7\x1a\xfb\x91\x4b\xe5\xe5\xe8\x54\x70\xb8\x0e\x6d\xc0\xe9\x8d\xf9\x79\xa1\x46\x93\xfa\x8f\x9e\x48\x36\x86\x72\x90\xee\xc2\x85\xc9\x16\x57\x58\xb6\x72\xc4\xb5\xea\xb6\x91\x87\x45\x27\x65\xb9\xc5\xa8\x5f\xb2\xa8\xcf\x7f\xfa\xf3\x1e\x75\x2a\xbd\x26\x0b\x56\x63\x71\xa7\x9e\xe2\xb0\x12\x8e\xfc\xd9\x16\x14\xc4\x2b\x0a\x3d\xda\x6c\x51\xe0\xc7\x97\x8c\x51\xcf\xa7\x8c\x6c\x8e\xc3\x33\x3e\xb6\x1d\xf4\x91\xa4\x1b\x24\x7f\x4c\x77\xbc\xab\x8b\x8d\x49\x2c\x41\xfc\xc1\xd3\xbf\x3d\x93\xbc\x65\xfb\x71\x45\xa2\x5a\xd5\xb2\x5d\x36\x0b\x32\xb2\xc3\x12\x31\xfc\x28\x9d\xeb\x74\xa6\x75\xbd\x11\x9f\x77\x63\xc5\xa3\xa3\x00\x4b\x11\xe0\xc5\x32\x39\xc0\x08\x99\xd6\x3d\x75\x46\xd7\xcc\x6c\xf8\xe3\xb5\x82\x83\x98\xbd\x59\xe8\x84\x25\x23\xe2\xe9\x4d\x2a\x13\xf3\xac\x70\x85\xa1\x19\xfc\x91\xbd\x40\xa7\xad\x42\x12\x5e\xce\x69\xf2\xac\x5a\xb1\xba\x45\x85\x02\xc8\x97\xb4\x9e\x10\xf3\xf9\x21\x12\xfb\x72\xea\x5c\xe8\x8c\x07\x89\x69\x5b\xa4\x9f\x24\xe0\xb1\x8c\x11\x07\xe1\x66\x9f\xd1\xaa\xb0\x2d\x4c\x7d\xf0\x98\xc2\x50\x15\x22\x45\xab\xe7\x8a\x40\x96\x15\x71\x36\xb0\x0a\xa5\x64\x3c\x4c\x0b\x7d\x3e\xe5\x92\xa9\x7d\xdb\x6e\x6d\xf8\x48\xf3\x02\x4d\x1a\x3d\x9c\xcf\x00\x95\x07\x86\x4d\x9f\xb1\x48\x80\xf4\xa3\x2f\x5d\x0a\xb1\xdc\xb9\x60\xe6\xf9\x16\x88\xe2\x0b\xd3\x41\xde\x07\xb1\x94\x83\x49\xaf\xef\x36\x5b\x05\xff\xc4\xb9\x5a\xbb\xde\x3c\xde\x70\x76\xb0\xcf\x24\x96\x28\x93\x7a\xaf\x45\x3e\xeb\x12\x71\x6d\x24\xf1\x96\xc6\x96\x43\x71\x8b\xde\xe2\x66\x44\xf1\xa0\x28\x73\xc3\x3c\x71\xca\x72\x75\x31\x66\x1d\xd2\xaa\x75\x95\x48\x64\x11\x6b\xfc\x68\x5d\x1c\x11\xcb\x18\xb4\xe3\x53\xaf\xb4\x8a\x43\x72\xab\x0f\x27\xdb\x97\x77\x88\x63\x7e\x53\x09\x11\x6e\x32\x98\xb9\xfd\xa4\x62\xec\x0d\x96\x70\xb5\x00\x9d\x1d\xdf\xb3\x28\x23\xfd\xa2\x47\x74\xeb\x51\x51\xe3\x2c\x88\x44\xdc\xb8\x80\xdb\x6a\x51\x32\xde\x81\x18\x81\x63\xca\x6f\x1a\x3a\xc5\x98\xda\xdc\xc5\x5c\xcc\xeb\xb7\x9c\x4b\x40\x2b\x85\xe4\x49\xca\x5f\x07\x54\x77\xe4\x88\x3f\x9b\x0b\x5e\x7e\x06\xb8\x30\xc6\x48\xa9\x1b\x0c\x09\x67\xe1\xc6\x39\xa9\xc9\x37\x82\x36\x14\xad\x47\x99\xd7\x13\x0f\x45\xb7\xb3\x67\x46\xd6\x6e\x07\x4f\xea\xe4\x5f\x27\x62\x61\xff\xcf\xf2\xe4\xaf\xb8\x53\xb8\x70\x82\xbd\xcc\x1e\x05\x66\xc4\xf9\x3c\xf2\x88\x29\x30\xed\x9f\xdd\xa3\x7e\x23\x64\x37\xa2\x76\xe6\x8c\x36\x29\x79\x55\xc5\xa6\x10\xa3\x49\x6d\x7a\xa2\x55\x49\x56\x40\x52\xc5\xd1\x53\x40\xaf\xdd\xaf\x54\x84\xd4\x44\x7a\xcb\x92\x71\x00\x99\x57\x64\xc8\x1f\xcc\xaa\x31\x55\xda\xa6\xb3\x21\xa9\x4d\x4a\x28\xd6\xd6\x31\x26\xb7\xe9\xea\x3b\xd2\x4f\x2c\x72\x51\x4c\x9f\x72\xd4\x27\xf3\x40\x20\x34\x6a\x8f\x00\x35\x4c\x64\x0a\xd0\x5e\xcd\x01\xcb\xe1\x97\x4a\xc2\x5c\x88\x6b\x51\x1c\x91\xa6\x5b\x92\xcb\x26\x9a\x65\xcf\x3d\xa4\x63\x98\x15\x40\x2a\xfa\x8c\xb7\x4b\xab\x54\x54\xad\x0a\x3d\xfa\x30\x98\x1e\x68\x97\xe4\x2b\xc7\xa4\x3e\x43\xa2\x55\x91\x5e\xa5\x1b\xec\xf0\x83\x98\x00\xa0\x0f\xa4\xbf\xf0\x9e\x4a\x2c\xfc\xaa\x85\x51\x4d\x1a\xff\x0c\x3b\x0b\x3d\x76\x84\x49\x78\xf0\x2f\xb2\xb3\x13\xd6\xcf\xdc\x4a\xd9\xf8\xda\x2c\x79\x2c\xe7\x2f\xe7\x1b\x67\x3b\x50\x0a\x76\xfd\xbc\xcf\xf2\xe2\x96\x1b\x7e\x21\x30\x48\xc0\x2c\x32\x48\x18\xb9\x1e\xb0\x9c\xb9\xef\x06\x23\x2e\x96\xb9\x6d\xb0\xff\x45\x2d\x87\xa4\x75\xc7\xa3\x75\xc9\x72\x76\xe7\x0c\x97\x69\x92\x74\x1b\xca\xe6\x02\xf2\x82\xba\x1a\x5d\x87\xd6\xf3\x14\xb1\x82\x08\xd3\xef\x1d\x6b\x4b\x70\x48\x1d\xa5\x6f\xd7\xf6\x8a\xde\x1f\xe0\x8e\x1d\x32\x17\xfd\x70\x00\x66\xae\x98\x84\x4f\x76\xdf\x36\x71\xb0\xae\xeb\xe8\xe2\x2f\x0d\xf4\x83\xa3\x36\x6b\x6a\x67\xad\x55\x39\xf3\x83\x31\x87\x31\x61\xbc\xd4\x4c\x40\x65\x4c\x65\x51\x90\x7a\x39\x2f\x5a\x3e\xb7\x5a\xc8\x21\x15\x30\xd3\x1e\x30\x5a\x6e\xd4\x5d\x70\x68\x5d\xfa\xb0\x65\xae\xb8\x07\x94\x8e\x1c\xd0\xa3\xc2\xc4\x4f\x56\x6a\x5d\x7d\xe2\x76\x28\x06\xfb\xdd\x00\xa4\x6b\x53\xb3\x2c\x46\x76\xc5\x4d\xa0\x67\xe4\xba\x88\x88\x46\x5d\x30\x19\xb8\x10\x55\x30\x72\x22\xb1\xe5\xc6\x1b\xc9\x94\xc1\x77\x0a\x98\x31\x8e\x3e\x8c\x32\xcc\x83\x4d\x8e\x62\xae\x24\x76\x44\xda\x20\x1b\xdf\x54\x31\xb7\x97\xcf\xb0\xc3\xb0\x98\x6f\x05\x3b\xc3\x42\x52\x8d\x68\xc0\xd8\x71\x22\xe2\x90\x85\x37\x8f\x68\xff\xdd\x79\x44\xb6\x9e\xa5\x3c\x45\xf8\x77\x67\x66\x35\x91\xfd\xa4\x03\x7f\xf4\xc9\x56\x9f\x18\x5f\xd7\x21\xbb\x8d\x41\x58\xd7\x29\xf3\xb8\xe8\x62\x2f\xc6\x75\xb7\x8e\x71\xb9\xa9\xd5\x96\x33\x14\x46\xb2\x8c\xa1\x53\x71\x11\x98\x57\xc8\x34\x6f\xfa\x45\xad\x4d\x40\xe2\xf0\x14\x7f\x59\x93\xee\x75\x28\xab\x44\x2e\xdd\xc1\xd6\x07\x34\x5d\x5f\x07\x67\x2b\xd2\x40\x2e\xf8\xe2\xcb\x00\x67\x82\x51\x78\x24\xc2\x37\xfa\xe9\x06\x75\x16\x6b\xb8\x84\x22\x60\x60\xee\x28\x30\x74\x34\x2d\x5c\xf0\x79\xc7\xeb\x2f\xfd\xea\xb3\x96\x10\x97\xfe\x37\xfe\xfa\x5e\x93\xdd\x2e\xb7\xeb\x91\x10\x89\x4c\x75\x4c\xb2\x1d\x89\xfb\x44\x6f\x6d\x10\xbf\xcb\x1f\x3e\xdc\x96\x04\xfe\x87\x69\xa7\xc0\x6d\x65\xce\x81\x5d\x57\x28\x30\xec\x0a\xec\x4a\xaa\xfb\xa9\x24\x62\xa2\xcc\x50\x2f\x31\x71\x79\x0a\x81\x73\xc3\x21\x07\x34\x12\x36\x6e\x50\x47\x78\x2a\xa4\x3f\x7b\x48\x7d\x57\x9b\x14\x63\xf6\x00\xdb\x73\x59\x52\xfd\x82\x8b\x5f\x2c\xb9\x39\x9b\x0b\x5a\x2f\x06\x4e\xa1\x61\xfd\x11\x16\x1f\x17\x8b\x28\x15\xa6\x8b\x2e\xe9\xe3\x49\x42\x2d\x79\x5b\x97\x49\xb8\xf7\x4b\x1c\x08\x24\x69\xf0\x7f\x52\xa8\x7e\x97\xc0\x91\xd1\xd3\x2b\xc5\x34\xc2\xb4\xc5\x9e\x48\xcd\xd9\x03\xf4\x8a\x7a\xf9\xd2\x7f\xd5\xd6\xa7\x2d\x98\x99\xc4\x95\xe8\x98\xcc\x0d\xeb\xb4\x2a\x23\x4c\xe3\x38\x69\x19\xb1\x82\x60\x88\xff\xec\x4c\xbb\x9a\x58\x35\x5b\x15\x2c\x03\xa5\x9f\xc7\x21\x2a\xc1\x94\x17\x9b\x06\x40\xa6\xb0\xfd\xe6\x8f\x63\xdc\xc9\x24\x3c\x12\xb1\x41\x55\x72\x32\x57\xcc\x6b\x49\xfc\xdd\x24\xf1\x79\x7e\x0a\x8a\x61\x8f\x14\x04\xf1\x7e\xf7\xe3\xfa\x0e\xab\x54\x6d\x1c\x8b\x71\x18\x3d\x41\x52\x23\x69\xc6\x74\x41\xa9\x35\x1e\x9a\xaa\xb8\x87\xbc\xc6\xe7\x42\x8a\xe7\x86\xc9\xb4\xb8\x12\x3b\xe0\x77\x5e\x19\xb1\x2b\x59\x2d\x52\x51\x9a\xb7\x75\x04\xdc\x8c\x45\x12\x26\xbc\xd7\xde\xa2\xcf\xa2\xc2\x40\x2e\x86\x5b\x2b\x6b\x5a\xf7\x32\xa2\x59\xcb\xc6\xa1\x6c\xac\x9c\x6e\x8f\x4b\x67\xcf\xe7\xd7\xd0\xbc\x43\x97\x46\x19\xb4\xb8\x4a\x3f\xf8\x84\x4a\xed\xc3\xeb\x5f\x0c\xd9\x64\xf3\x31\xd3\x73\x8b\x36\x8a\x59\xe3\x73\x45\x24\xc1\xd2\x1c\x7d\x10\x1a\x48\x45\x6c\xb7\xf0\x37\x7b\x33\xda\x38\x0b\xd9\x0a\x71\x78\x07\x90\x39\xa7\x13\x2b\x18\x71\x18\x58\xfa\x85\xf1\x13\x9b\xf2\x9d\x92\x83\x07\xf5\xb5\x78\x75\x08\x30\xe5\xc5\xf5\x70\x0d\x3f\x7b\x7d\x3b\xe8\xba\xf2\xee\x3d\x6c\xa2\x6c\x9b\xdb\x32\x68\x18\x3e\x92\x7c\xd3\x8a\xef\xda\xa4\xe2\xca\x8e\x56\xf2\x4d\x3f\x7a\xf4\x52\x19\xae\xb1\xd0\x83\x4b\xbd\xcf\x02\x13\x00\x0b\xa9\xb2\x2e\xf8\xce\x68\x71\x42\x71\xa5\x6a\x53\x6e\x48\x6a\x7c\xfc\x69\x15\x1c\x6d\x64\x96\x51\x01\x11\x57\x66\xa4\xa9\x93\xed\xc9\xab\xa5\x44\xed\x42\x1e\xb3\x92\x80\xdc\x44\x19\xe7\x8d\x2f\x25\x77\x5f\x77\x76\xba\x68\x39\x0f\x6d\xd3\xda\x8d\x0c\x39\x6e\x11\x33\x28\x72\xf8\xc9\x17\xe4\xc7\xa7\xd2\xe8\x3e\xd3\xb9\x40\x34\x73\xe7\x21\x66\x62\x9b\x72\xf9\xf1\xe4\x57\x1e\xb9\xf6\x8a\xc1\xa3\x96\x24\x07\xbc\x07\xac\x81\xc3\xab\x56\xe8\xb2\xa5\xfe\x7f\xaf\xa8\xb3\xcc\x48\x89\x3f\xde\xaf\x1f\x4e\x7e\x43\x8f\x6b\xa0\x0b\x1a\x08\x28\x78\xb7\xab\x5a\x39\x0c\x2a\x7e\x95\x5b\x49\x92\x2a\xbf\x99\x97\x0e\x1d\xdd\x14\x22\xdd\x08\xe9\x7a\xe3\xfa\x11\xe0\xbf\xda\xdc\xaf\x70\xc0\x78\x72\xc1\x15\x7a\x32\x65\x63\x60\xb3\x38\xbb\x3f\x61\xa7\xeb\xe2\x35\xbc\xdf\x1d\x46\xc0\x97\xcf\x0f\x89\x7f\xc5\xcf\xf8\xcb\x8b\x75\xb9\x43\x5e\x26\x14\x89\xd4\x9a\x09\x1e\x3b\x16\xb7\x4c\x1a\xa8\xa9\x91\x99\x7a\x63\x07\xd0\xfe\xa2\xb6\xdd\xa8\x53\x1a\x19\x5e\x8c\xd9\x96\x7c\x82\x15\xe4\x14\x34\x37\xd4\xf4\xa1\x33\xba\xff\x82\x4d\xcc\xc8\x3a\x65\xe9\xbd\x2a\x6a\x09\x8e\xa2\xf0\xaf\xcf\x3c\xd4\x75\x99\xbe\x37\x2a\xd1\x9a\x5d\x3c\x47\x1b\xdb\xe3\xd8\xff\x3f\x16\x72\x32\x86\x6d\x6a\x32\xad\x62\x58\x8a\x2f\xad\x5c\xaf\xf3\x32\x51\x18\xc2\xa3\xff\x4a\xaf\x87\x34\x54\xa1\xb0\x67\xe4\x16\x5f\x95\x58\x72\xdf\x96\x18\x1e\x3b\x9a\x32\xdc\xfb\x28\x14\x05\xc2\x65\x0e\x69\x0f\xfe\xed\x31\xa8\xbe\x6c\x72\xf1\x87\x60\xf7\x3d\xda\x6c\x96\x35\xec\x58\x8d\x6f\xe8\x31\x7d\x3a\x2e\x04\x59\x82\x19\x67\x78\xe8\xc8\x7e\x1c\x39\x65\x37\x8b\xf8\x05\x5a\xa9\x36\x77\x70\xef\xda\x20\xfa\x3a\x15\xea\x72\x08\x69\x19\xf3\xe1\x25\x8f\x92\xe9\x0f\x78\x80\xd1\x20\x0c\x15\x53\x77\x6d\x1f\x15\xaf\x65\x1e\xb2\x50\x1a\x3b\x80\x79\x4d\xb5\x8a\xa2\x33\xf8\x99\x4d\xba\x71\x1d\x4f\x58\x44\x1f\xaa\xef\x95\xe4\xe6\xb5\x30\x4e\x80\x33\xcf\xb4\xa9\xd6\x28\x0a\x63\xc6\x9f\xe7\x69\xe6\xf3\x5c\x0a\x81\x27\x1f\xc1\x77\x67\x8d\x02\x7d\x1a\xc6\x62\xa5\xfb\xcc\xaa\x09\x23\x94\xa0\x92\x1d\xb5\x22\x0b\xe7\xd4\x1d\xcb\x55\x44\x02\xa3\x43\xe4\x09\x5d\x53\x67\xcc\xe4\xc2\x2b\xdd\x87\xaf\x10\xd2\x77\x7e\xd5\x0c\xaf\x44\x6d\xf2\x3a\xc4\x8e\x63\x22\xee\x8b\x78\x4a\xe9\x99\x53\x21\xdb\x99\xb2\x46\x47\x36\x17\x7c\x7c\x8f\xc6\x7c\xa4\x0e\xf1\x28\x13\xf7\x4c\x50\x3f\xac\xb1\xee\x84\xc0\xb4\x1e\xe8\x47\xbf\x2c\x89\x27\x37\x2d\x5b\x76\xd3\x5d\xd1\x66\x7a\xf2\xfa\xa1\xd1\xfd\x24\xe9\xe7\xc6\x90\xa7\x80\xc9\xbd\x8d\xdc\xb0\x8a\xc1\xc8\x13\x48\x07\x63\x59\x07\x24\x84\x73\xe9\x65\x7e\x47\x7f\xf8\x9c\x18\xa1\x2f\xc5\x96\xb3\xc6\x27\x2e\xac\x8a\xae\xe9\xd6\xc9\x44\x91\x89\x67\x5c\xcf\xdf\x76\xa1\x4a\x68\x3b\xba\x3a\x67\x85\x5b\xe8\xd5\xc5\x93\xb5\x1b\x25\xb6\x68\x17\x5d\xcc\xe4\x17\xbc\x61\xf1\xd5\x4d\xef\x62\xdb\xd8\xf4\xfc\x28\x33\x1f\x48\x7d\x71\x39\xc8\xbe\x89\x83\x2b\x42\x14\xea\xe3\x96\xaa\x09\x0a\xb0\x69\x7e\x81\x40\x59\x67\x6f\x2a\xe3\x3c\x75\x00\x92\xd6\x98\x03\x12\x76\x64\x67\xd7\xa0\x86\xcb\xbd\x5e\x1f\x3f\xae\x6e\x1a\x47\xa1\xc3\x83\x1f\xf5\xe8\xc8\x23\xc1\x46\xe1\x5d\x24\xde\x5d\xf9\xa1\x02\x2d\x11\xd0\xb9\x0f\xbe\x75\xbe\x55\x26\x11\xc0\x47\x34\x5c\x9f\x9b\xd7\x26\x53\x3c\x97\xda\xb4\x22\xdb\x0f\x00\x06\x63\x60\x90\x57\x73\x1a\xb2\xec\x6c\x5c\x72\x42\xc5\x04\x9b\xd6\xb1\xcd\xd5\x4a\x8e\xbc\xae\x70\xd9\x61\x6c\x0e\x2e\x7f\x2e\xf6\xc5\x65\xb2\xc4\x3c\x7b\x81\x94\x4f\xa4\x15\xea\xe2\x3e\x31\xdf\x48\xef\xb9\x40\xf6\xe0\x19\xf5\xb9\xe5\xcf\xb5\x5e\xdc\x22\x34\x39\xda\x59\xb5\x08\x27\x1c\x8b\xd4\x37\xb9\x9f\x17\xbf\x6f\xfb\x5f\xbc\x8e\x1f\x98\x38\xd3\xbf\xbe\xe8\x3b\x3c\xdb\x1a\xcb\x7f\x3e\x16\x79\x63\x3b\xfb\x66\xe5\x0b\xb8\xb3\x30\xe3\x46\x59\x03\x08\x09\xc0\x4c\x0f\xe8\xf6\x23\x52\xe0\x53\x7b\x67\x95\x94\xd1\xb4\x08\x8f\xc7\xdf\xd6\xac\xca\x66\x77\x76\xca\xfc\xf4\xdf\x1f\xd1\x55\x96\x9c\x48\x25\x6f\x20\x65\x6e\x8c\x53\x73\x82\x9a\x31\xbe\x9d\x00\x1f\x3a\xbd\x33\x5b\x21\x8e\x2f\x68\xc4\xdb\x35\x42\x53\x11\x23\x4f\x48\x86\x3e\x39\x0b\x10\x42\xa1\x56\xed\xad\x07\xd4\xa6\xca\xe3\x48\x1b\x6c\x20\xd5\xb2\xe5\x0a\x2d\x12\x55\x29\xe3\x51\x48\xb4\x3d\xde\x98\x05\x30\xd1\xa6\x45\x45\x45\x36\x59\x08\xe8\x67\x6f\xb3\xf3\xcd\xe0\x94\x33\x4f\x69\xaa\x86\x9e\x87\x2b\x55\x25\x64\x99\x79\xff\x89\x26\x79\x28\xf9\x07\x42\xec\xf5\xc2\xb9\xa2\xaf\xd2\xed\x59\x9c\x4a\xa3\x49\x60\xb9\x11\xac\xee\xff\x4f\xd9\xdb\x87\x49\x51\xdd\xf9\xe2\x76\x75\x4b\x8c\x22\x0c\xef\xe3\x88\x80\x84\x00\x02\x3d\x19\x06\x18\xc0\x70\x15\x11\x10\x11\x69\x02\x04\x91\x25\x86\xd3\x55\xa7\xbb\xcf\x74\x75\x9d\xe6\x54\x55\x37\x33\x21\x86\x10\x5f\x08\x21\xae\x21\x84\x35\x86\x18\xd6\x78\x89\xab\x5c\x63\x58\xe2\x12\x43\x8c\xeb\x12\x25\xc6\xb8\xc6\xb0\x2e\x71\x89\xcb\x12\xe2\x12\x43\x88\x1a\xe2\x2a\x61\x2a\xbf\xa7\xce\x39\x55\xe7\x5b\xa7\xf8\xdd\xe7\xb9\xff\xe4\x79\x22\x30\xd3\x5d\x75\xce\xf7\xf5\xf3\x22\xd5\xfc\xaf\xdf\x1b\x47\xe3\x22\x25\xf9\x42\x30\x69\xd5\x55\x60\xdd\x86\x51\x7a\x89\xb2\x73\xab\xce\x23\xf3\x4d\x53\x6e\x6b\x8d\x96\x55\x10\x45\xe4\x3b\x91\x31\xc9\xf5\x77\xb4\x81\xc0\xdc\x8d\x6d\x62\x02\x3d\x52\x63\x40\x29\x59\x24\x3a\x8e\xec\x5d\x2e\xb9\x6b\x68\x72\x99\x20\x71\x1e\x99\xc7\x16\x83\xc6\xb0\x0c\xc6\xf3\x13\x36\x89\x49\xc3\x72\xe2\xf5\xe6\x6f\x44\xcc\x16\x84\x15\x55\xae\x7d\x74\x2f\x08\x11\x84\x99\x0c\x89\x34\xf8\xc4\x7b\x1a\xae\x1a\x95\x2b\x16\xb2\xe4\xca\x3e\x3c\xce\x7f\x19\x99\x0c\xe9\xd8\xbf\xd0\x3e\x3f\xfb\xc0\x01\x30\xb1\x20\x0e\x47\x1e\xdb\x5b\x78\xd1\x92\xbf\x91\x13\xea\x7b\xf2\xb7\x91\x0b\xe8\xac\x2e\xd9\xae\x2d\xd7\x49\xd9\x4f\x01\x12\x33\x9a\xac\x26\x5e\xef\x93\xba\x54\x5b\x0d\x9f\xd8\x5b\xf5\xe4\xeb\xe9\x46\xb5\x5a\xb4\xb5\xce\x7e\xe8\x14\x18\x09\xd5\x8a\xc8\xf3\x44\x4a\xcf\xdc\x7d\x3a\x79\xee\x28\xc3\x65\x0a\x95\x1f\x7e\xd6\x2f\x19\x28\x2b\xbe\x53\x46\xac\x27\x36\x1a\x0f\x06\xbe\xac\x80\x2b\x15\x62\x61\x08\x12\xfb\xe5\xa2\x36\xbd\x9c\x13\xeb\x1f\xf1\xa9\x5e\x55\x2c\xb1\x32\x2a\x46\x39\x70\x76\xab\xbe\x32\x72\xf8\xbf\x11\xd4\x96\x1f\x6a\x7e\x82\x52\x56\x27\x9d\x61\x8d\xa3\xbd\xc9\x9f\x33\xad\x73\x4a\xe7\xac\xae\x76\xb9\x8e\x7b\xb7\x7d\x20\xa8\xf6\x4c\xae\x62\x32\xef\x7e\x68\x5b\xc1\x68\xf8\x4d\x39\x88\xfd\xe4\x1e\x30\x82\xf5\x8b\x26\xe2\x00\xff\xec\x81\xf9\x31\x6e\x31\xcd\x90\x7e\x71\x95\x52\x09\x2e\x71\xef\x11\x64\x8c\xd7\xeb\x06\x17\x39\x1e\x4d\x03\xd0\xb2\x85\x97\xe2\xeb\x89\x48\x18\x3c\x6f\x7a\x45\x53\xc4\x43\x1e\x92\x2f\xfe\xeb\x9d\xf1\xdf\x2d\xb1\xf0\x2a\x0f\xdf\xd2\x0a\xce\xa1\x59\xe5\xe6\x7f\xd1\xd3\xdd\xa4\x19\x80\x88\xd6\x9e\x46\x36\x57\x57\x8d\x03\x92\x42\xd4\x67\x62\x75\xf2\x9e\xd3\xa6\x6e\xa8\x3e\xb4\x08\x06\x6a\x5a\x2d\x45\x4c\xba\x65\x30\x94\x65\xd4\x94\x25\x72\x8f\x43\x4b\x08\xec\x3b\x33\x2f\xac\x1c\x16\x35\x75\x0e\x62\x16\xf8\x93\x01\xdb\x01\xc9\x85\x94\x39\x19\x6d\xc2\x76\xa0\x66\xd1\x08\x6b\x70\x3b\x2c\x8f\x19\x10\xa9\xa4\x7c\xbe\xb4\xe6\xb5\x14\xac\x18\xbb\x82\xcc\x20\xd5\xb4\x7e\x9e\x13\x75\x56\x95\x38\x96\x90\x1f\xcd\x6e\x18\x2f\x52\x60\x05\xd9\xa5\x3a\xa9\xf3\x9e\x39\x50\x46\x4c\xb8\x08\x16\x50\x39\x77\x96\xfa\xa5\x6e\x95\x83\xf4\x66\xbe\x06\xa6\xfe\x8c\x0a\x48\x6d\xf6\xa9\x13\xc9\x8f\xc2\x57\x3e\xa2\x26\x14\xf2\x06\x74\xa2\x86\x42\xa0\x8e\x30\xc6\x91\x50\xde\xdc\xb4\xa3\x6d\x20\xb2\xba\x61\x11\x05\x29\x44\x93\xbd\xe4\x24\xb6\xd4\xee\xb6\x17\xc5\xb0\x3a\xf1\x92\xc6\x03\x72\x0b\xa3\x65\x9f\xaf\x7f\x06\x9f\xd2\x34\x05\x39\x53\xcc\xc4\x72\x46\x9e\xfd\xc1\x89\xc1\xf1\x98\x8f\x3a\x12\x58\x15\xcc\x70\xa0\x5d\x74\x58\x36\x89\x5a\xf4\xde\x89\xea\xbf\x33\x5c\x97\x20\xfd\x60\xc8\xc1\xb8\x90\xaa\x21\xf8\x8e\x37\x3a\xa2\x6c\x59\x4c\x61\xd2\x1d\xbb\x71\x34\xc0\x6b\x70\x45\xbc\x34\xbd\xf4\x04\xc0\x86\xf8\x12\x01\xd8\xd5\x12\xbf\xac\x26\x1c\x72\x1a\x2f\x1c\x93\xf3\x0d\xc4\x1c\x89\xa8\xbb\x79\x5f\x8b\x6c\xcd\xca\x0e\xf2\xf8\x12\x3f\xf8\xee\xd1\x64\xef\x39\xad\xc3\x8b\x05\xc0\xfe\xf7\xc4\x2b\xe1\xb2\x25\x5e\xca\xca\x27\xf2\x75\x40\xc9\x2a\x11\x5b\xa4\xe0\xdc\x70\x95\x0e\x4c\x54\x0f\x5b\x9e\x37\x1e\x04\x62\x84\xb6\xef\x78\x82\x63\x0f\x01\xac\xf3\x16\x0d\x00\xeb\xeb\xb0\xff\x1b\xf5\x1e\xa0\x8f\x0a\x88\x67\x76\xd9\x70\x5d\xf3\x85\x44\x2c\xda\xcc\x88\x03\xa0\xe4\xc5\xa6\x87\x98\x18\x2f\x64\xff\x13\x54\x65\x55\x52\xaf\xfb\x7c\xaa\x74\x78\x3a\x18\x69\x23\x86\xba\x71\x83\xe6\x0b\xc1\x7b\x0d\xc0\xc6\x43\x1e\x71\x4b\x48\x4e\xda\x82\x27\x34\xe5\x17\xd4\xe0\xa6\x8b\x52\x23\xd3\xc8\x1a\x40\x0b\x0a\x97\x38\x40\x2b\xdb\x58\xa5\x29\x9b\x51\xc4\xac\x68\x38\xfa\x97\x39\xa2\x57\x5b\x18\x0b\xc5\x6f\xd4\xb1\x98\xc4\xc3\x5c\x2a\x46\x8c\xa6\xbf\xfb\x16\xd0\x79\xc0\xc4\x95\x7d\xc3\xa7\x1e\x01\xde\x88\x16\x11\x22\x6c\x7d\xd9\x41\xf3\xa0\xed\xa4\xd4\x2f\x12\xed\xfd\xd7\x1d\xf5\x2d\x85\xa8\x92\x4a\x5e\x7f\xe8\x80\x4b\xfc\x30\x50\xf3\x5f\x52\x3b\x27\xca\xea\x26\xb1\xf8\x62\x39\xa8\x6d\x9c\xa8\x5d\x22\x5a\xe6\x29\xe9\x42\xf3\xdd\x2f\x8d\x13\xdd\xc3\x3c\x6a\xdb\x10\x38\x95\xbb\xeb\xa0\xdc\x4e\x32\x33\xfc\xb2\xa6\xa0\x37\x3f\xff\xa0\xe6\x89\xeb\x31\xe4\x94\x7d\x1b\x0e\x4e\xe7\xef\x03\x36\xed\xa0\xcf\xcb\x5c\xb7\xb7\x15\x44\x24\x92\x80\x72\x18\x9d\x6f\x27\x1f\x31\x67\x12\x86\x51\x5b\xc2\x5d\x3f\xd4\x39\x0c\xb6\x66\xe0\x5f\x7e\xa8\x0e\x6c\x24\xc5\x94\x3b\x1a\x50\xcd\x7a\x72\x1c\x5c\x0d\xdc\xbc\x74\xb2\x2a\xc0\xe0\xe8\x2c\x73\xdb\xc3\xca\x17\x99\xab\x6d\xfc\x68\xcb\x10\xc8\x1c\xf1\x4c\x41\x1d\xc9\x3e\x7e\x91\x86\xca\x60\xc4\x43\xc4\x11\xba\x7d\xe1\xaf\x9c\x3b\x5f\xbc\x0e\x54\xe3\xbc\xa1\x42\x70\xe3\xe6\xb8\xcb\xf1\x59\x19\x56\x80\xb9\x9b\xd6\xea\x06\xd2\x25\xe1\x50\x1f\xfc\x42\xd9\x82\x95\x4a\x3c\xf4\xff\x75\xb1\xf6\x8b\x91\xeb\xc3\x79\x46\x6e\xe9\xdc\xab\xc1\x5d\xa6\xb4\x56\xc4\x2c\x45\xd2\x30\xbe\xb3\xec\x52\x59\x19\xd5\xf2\x85\x60\xf0\xa2\x48\x5e\xa9\x56\x23\x9e\x90\x0b\xcb\xd8\x23\x01\x26\x42\x12\xcd\x04\xd9\xf1\xd7\x8f\xb4\x29\xae\xae\xae\x57\x17\xfc\xf8\xd5\x41\x70\x09\x81\x2d\xde\x07\x78\x1b\x40\xd4\xb1\x7d\x5e\x33\x7d\x12\x10\x9c\x5d\x9b\x36\xf3\x25\xc1\x99\xcb\xad\x58\xa7\x29\x1f\x98\xeb\x7d\x22\x35\xfa\xc4\xe1\x72\x34\x4d\x90\x06\x27\x06\x02\xef\x82\x35\x43\x81\x28\x30\x6d\x60\x5b\x00\x32\x1f\xee\x16\xe7\xfc\x46\xdf\xb3\x81\xeb\x76\x5f\x76\xed\xd2\x36\x65\x88\xc6\x52\xf7\x63\xf6\x51\x9d\x88\x35\x9b\x9b\x5b\x05\xff\x25\x3d\x28\xb0\x63\xd1\x66\x4d\x7a\xa4\xac\xd3\xa4\x2d\xf8\x24\x5d\xaa\xaf\xe4\xa6\xec\xd3\x31\x09\xe2\xa1\xc7\xfb\xd5\x5c\x6e\x99\x36\xa3\xac\x70\xa5\x4c\x01\x4c\x9c\xb9\xfb\x12\xfe\x0b\xb9\xd8\xd2\x4d\xcf\x0e\x8c\xcb\x0e\x17\x73\xb1\x89\xec\xfe\x07\x06\xc1\x4e\x53\xe2\x1c\x7e\x3f\x4a\x85\xd3\x26\x65\xb6\x65\x0a\x1e\x64\xdf\x52\xfd\x26\x23\xc6\x92\x9c\xd7\xcc\xd6\x1d\xe3\xb5\x20\x89\xf9\x8d\xa4\xe9\x61\xdf\x15\x2f\xa7\xbf\x9c\xef\x90\xf5\xdc\xde\x98\x7f\xfe\xd1\x29\xbc\xba\x19\x36\xd1\xbc\xe3\xf5\xd7\x88\x80\xbb\x02\xd7\xb9\xf2\xdc\xe2\xcd\xfa\xdf\xf5\xe2\x51\x50\xfd\x70\xb2\x39\x59\xef\x23\x97\xe4\x85\xad\x14\x31\xe5\x4a\x6d\xf9\x13\x43\xd5\x70\x0f\x74\x65\x86\xbd\x0c\x88\x63\x02\xe3\x0b\x0e\xc0\xdc\xab\x3d\x12\xbf\xc8\xe3\x2c\xd7\xc0\x95\x02\xbb\xe3\x1e\x10\x9f\xb4\x14\xad\xa4\x9e\x3b\x20\x7d\xf2\x89\x25\x2a\xac\xa1\x97\x88\xf5\xff\xad\x88\x75\x53\x46\xa0\x5f\xd8\x87\x9f\xd2\x44\x1e\x30\x23\xd4\x92\xc5\x4d\xa6\x9f\x26\xcb\x61\x31\x52\xf2\xa4\xda\x66\xf0\xcb\x79\x29\xfc\x37\xe6\xf4\x76\x5e\xe9\xfc\x62\xb5\xe6\x57\xe3\x13\x4b\x6a\xed\xe6\xc8\x2a\xe5\xbd\x01\x4f\x7e\x86\x2d\x8f\xeb\xf4\x69\x33\xc2\x53\x65\xec\x7f\x14\x10\xeb\x18\x47\x8f\x04\xbf\xda\x26\xfd\x60\x7c\x26\xd9\x4c\x99\x42\x49\xba\x68\xf9\x42\x6c\xe9\xf1\x7e\xc9\x37\x12\x39\xc5\x43\x6a\xb9\xf1\xf8\x6e\x40\xec\x0e\xab\xe7\x49\x1a\x12\x0f\x79\x9e\xef\xc4\xda\xd5\x5d\xaf\x08\x9e\xf8\x0a\x0f\x37\xf0\x05\x6c\xdf\xea\xbb\x74\x65\xd2\xf0\x26\xc9\x3e\xee\x5f\xdb\x92\x1d\x74\xc4\xcb\x71\x63\xf8\x4f\x6e\xe6\x76\x39\x60\xc2\x0d\xcc\x04\x68\xdb\xd8\x30\x56\xbc\xb9\xf9\xc4\x75\x70\x4f\xa2\x57\xbf\x0b\xcc\xe2\x6b\x44\xe0\x20\x8d\xdb\xbd\x78\x44\x5b\x41\x24\x6a\x68\x3a\x97\x01\x4f\x32\x44\x6c\xf0\xfe\x8f\xc8\x69\x2a\x27\xea\x89\xd1\xcd\xe2\xfb\x3e\x9e\x6c\x2e\xa9\xeb\xe0\x92\x97\x77\x51\x95\xfb\x24\xd5\x28\x0b\xff\x3f\x2e\x23\xf7\x82\xd6\x6d\xbf\x3f\xa7\x9d\x59\xe4\x78\x02\x49\xaa\x26\x11\x57\x77\x49\x4f\x50\x45\x70\x39\xa0\x49\x9c\xd5\x88\x15\x86\xb6\xe9\x52\xdb\xfb\x70\xc7\x00\x59\x98\x17\x8b\x98\x4b\xbb\xce\x59\x3b\x2a\x95\xf7\x88\x5b\x01\xe8\xf5\xcc\xa6\x95\xaa\xe1\x28\x22\xd9\xc6\xe4\xc6\x2c\xd1\x89\xdc\xae\xcf\xca\xca\x4a\x39\x73\xf6\x84\x46\x9d\x24\xd1\x8b\x0c\x16\x8c\xd1\xe9\xa6\x32\x9a\x04\x23\xcf\x28\xe4\xa2\x5b\xa1\x69\x31\xfa\xae\xf6\xf1\x5a\x04\x71\xac\x78\xf6\x99\x7c\x84\x7b\x4e\x0c\xd6\x16\xc8\x7c\xde\x7a\x72\x29\xf0\xb6\x95\x12\x4d\x1c\x35\x37\xaf\xae\x46\x48\x35\x1f\x15\x11\x43\xa0\x4c\xcb\xcd\x39\xa6\x48\xbd\x98\x24\x14\x32\xee\x7f\x48\x5c\x1c\xaf\xc2\xc2\x54\x1b\x5c\xd6\x02\xda\x78\x14\x5b\xfc\xbd\xa9\x45\x4a\x4b\xf8\x12\xf1\xe8\xd2\x7a\x00\x3a\x6f\x62\x8b\xd6\x88\x83\x1c\x8f\x17\x7e\xc1\x59\x01\xa8\x37\xb1\x8d\x8b\xfc\x50\x97\x51\xb3\x2a\xd1\x79\xd9\x2e\x63\x28\x5c\xa2\x08\x7b\xa4\xf0\x8b\x7e\xed\xad\xb4\x93\x58\xd4\x67\x7c\xeb\x98\xca\x1e\x65\x2a\xd4\xb5\x96\x2d\xe8\x33\x0e\x9e\xd0\x18\x88\x3e\x13\x9b\x92\xbe\xdc\xd2\x2e\x6d\x40\x43\xab\x55\x44\x2c\xaa\x4a\xa4\xd1\xc7\xdb\x40\x87\x2c\xa5\x38\xd5\x2d\x19\x74\x52\xd1\xc3\x19\xb1\xac\xb4\x32\x6e\xf6\x91\x4e\xa0\xa8\x8c\x2c\x8e\x79\xce\x4e\x90\x5a\x91\xdd\xbe\xc3\xb1\xe9\x3c\xb3\x6c\x5b\x2a\xf2\xfe\x2d\x18\x3b\x50\x51\x23\xf3\x8b\xc7\x74\x02\x49\xd3\x46\xba\xe8\xc3\x65\xbb\x34\xd9\x88\xc8\x5c\xf2\x25\x75\xd4\xcd\x0a\x22\xc2\x2c\xe7\x9d\x16\x51\x5b\x4d\x10\x16\x38\x9f\xed\xd0\xd4\x85\x18\x75\x36\x08\xa9\x43\x7e\x5f\x6e\x96\x08\xbc\x12\xc3\xa2\x70\x47\xaf\x40\x91\x0d\xe4\xb8\x25\xca\xe4\x88\xd7\xf8\xf2\x62\xb0\x02\xb3\x6d\x1c\x51\x13\xd7\x3e\x91\x1c\x58\x56\x90\x70\x8a\x35\x9e\xde\x36\x02\x80\xc2\x9c\x72\xde\xc5\xac\x21\xff\x51\xf1\x9e\x08\x77\xc5\xdd\x97\xc3\xa6\x38\x2b\xfb\x00\xdf\x21\xdc\x62\x07\xd9\xdc\xf3\xaa\x2f\x37\xe2\x0e\xdd\xe3\x94\x30\xbb\x47\x4a\xd5\xad\x9c\x08\x35\xfe\xb1\x9c\xb6\x9f\xde\xa1\x3b\x76\x87\xa1\x57\xea\x70\xbe\xff\x56\x32\x1e\x88\xbe\x88\xc4\x3b\x98\xdc\xe8\xc1\x12\x45\x8a\x99\x30\x5e\x0a\x76\x1a\x40\x10\x30\xec\xd3\xc2\xff\xb8\xe3\x19\x75\x04\x6c\x5c\xe2\x77\x36\xb7\xf4\x60\x72\x30\xda\xd9\xd1\x35\x39\x6d\x6a\x9b\x7d\x69\x3e\x70\xaa\xe8\x61\x02\x4b\x9f\x99\x9e\xfc\x60\x1e\xb6\x71\x83\x23\xba\x64\xe9\x69\x3c\xa8\xa8\x24\xd3\xf2\x1c\x2d\xf8\x17\x8d\xb5\x10\x73\xb0\xe5\x50\xef\x23\x67\x07\xc1\x93\x5e\x17\xd3\xab\x71\x27\x80\xfa\xbd\x8d\xcd\x4a\x2d\x41\x19\x9d\x74\x4e\x75\xdc\x96\xf0\x88\x7a\xe0\x94\x92\x07\x26\x2c\x1a\x85\xde\x0d\xe4\x35\x18\x2e\xf9\x2e\xa7\xf1\xec\xd1\xf6\x9e\xd8\xb1\x7c\xa6\x36\xd2\xd9\x0f\x5e\x17\x8d\x5d\xac\x84\xc7\xa3\xc3\xc5\xc7\x80\x0c\x0f\xcc\x59\xdd\xab\xa4\xda\x34\x75\x3c\x86\xd3\xb3\x8f\xec\x57\x9f\x1c\x9e\xb8\xcd\xd4\x12\xc2\x14\x85\xe0\x95\xf7\x81\xb6\x1a\x92\x10\xdf\x4c\x37\x48\xa5\x26\x13\x93\xce\xcc\x04\xf0\x43\xbc\xf0\xa6\x7a\xb1\x90\xdf\x35\x0f\xa8\xd1\x23\xdf\x2e\xed\xbb\x6e\x08\xe8\xe7\xbd\x12\xc1\x5c\x93\x27\xb7\xfc\x35\x6d\x23\xe1\xba\xc8\x75\x89\xa4\xee\x07\xdf\x7b\x1e\xe0\x7a\x89\x44\xf0\x34\x56\x27\xaf\x4f\xd1\x17\xfb\xde\x75\xa0\x73\xaf\x20\x26\x57\x62\xb9\xf6\x85\x4a\xbb\x13\x85\x57\x76\xf9\x22\xd5\x74\x59\x0c\x35\x08\x27\x12\xeb\x4d\xd7\xae\x3b\xf5\xf9\x1f\x3f\x26\xe5\x78\x58\x9e\xbd\xb1\xae\x1d\xa4\x0a\xf2\x28\x89\xd4\xe0\x83\x1e\x63\x20\xb8\xcc\x7c\x0a\x73\xbb\x64\xb4\xf0\xb5\x01\x0f\x3f\x9f\x7e\x55\x76\xec\x11\x8e\x3d\xbc\xd7\x1f\x8c\xd1\x80\xc8\xc8\x26\x25\xca\x9c\x08\x0a\x1d\x9e\xa3\xaf\xed\x6d\x89\xce\x90\x40\x73\x72\xf9\x43\xa7\x55\x7f\x9a\xc4\xf5\x64\xbd\xfe\x87\x13\x1a\x62\x8d\x95\x91\x13\xc1\xa7\x04\x11\x7d\xcb\x58\x30\x94\x23\x2e\x46\xae\x10\x1f\xbb\xfe\xd1\x78\x5d\xc6\xd2\x8e\xae\xc6\x93\x72\xa3\xba\x90\xda\x36\xf6\x3c\x48\xb4\xd6\x5c\x50\xb8\x4c\x40\x18\xeb\x82\x43\xe3\x34\x65\x46\x9f\xc9\x36\xfa\xad\x93\x3a\x04\xa7\x6e\xd3\x1a\xf2\xa2\xbb\xf0\xfa\xe6\xe4\x9d\xb7\xa8\x83\x3d\xb7\x1a\xa7\xaa\xec\x19\x0d\xb9\x87\x1c\x64\xf7\xb8\xd1\xbf\x37\xf6\x81\x13\x6e\xfb\x1b\x7c\x5e\x2a\xed\xb9\x4f\x13\x42\xc5\xb8\x2a\xc8\xb7\x7f\x9e\x07\x50\x36\x72\x4c\x19\xf4\x07\x88\x4f\x93\x30\xd3\xe7\x00\xb6\x2f\x8f\x81\xe0\xeb\x5a\x8d\xca\xd7\xf2\xf0\xf3\x83\x21\x0b\xad\x21\xe6\x87\xd9\x8b\x47\x89\xf5\xfa\x0a\x52\xc4\x2c\x41\xb7\x08\x06\xbf\x32\x18\x8e\x47\xca\x62\x3a\x99\x9b\x79\x48\x87\x77\x44\x32\xbd\xf3\x9f\x4d\xbe\x79\xea\x7b\x36\xa5\x55\x81\xd4\xfe\xe5\xc4\xf8\x06\x4c\x9f\x3e\x2b\x3c\x0b\xa3\x2f\x11\x6b\xd4\xdb\x10\x8f\x24\x46\xfb\x44\xc0\x49\xaa\xf4\xb8\xc4\x24\x7c\x1a\x66\xbc\xf4\xac\x0e\xc8\x40\xcc\x2b\x61\xdb\x8b\x64\x98\x9f\xd6\x84\xc9\x18\xf2\xb9\xa8\x79\x70\xc5\x39\xfe\x89\x6c\xec\xe4\xbb\xf4\x61\xff\x90\x31\x23\x65\xe8\x11\xec\x19\x0b\xd7\x38\xbd\x3a\xb6\x23\xbf\x79\x1b\xd0\xdb\x2c\x23\xe2\xb8\x70\xec\xb4\xe5\xa0\xf8\xf4\x35\xca\x6d\x19\xb2\xb3\x76\x02\xc1\x53\xea\x3b\x96\x10\x5f\xed\xd2\xb0\x5c\x25\x29\x82\x11\x89\xaa\xcd\x39\x10\x07\x29\x62\x11\xbe\xbb\xd9\xa9\xd1\xdf\x28\xa7\x18\xf2\x59\xd6\x55\xf3\xaf\x00\x55\x55\x6c\xdc\x2d\xcb\xa3\xbc\x54\xd8\x5c\x82\xfc\x64\xfb\x58\x39\xad\x3d\x20\x1b\x45\xb4\xf8\x8f\x1f\x1b\xad\x1d\x74\xd7\xc5\x61\x69\x08\x98\x6a\xa3\x9e\x8e\x3c\xa5\x58\x5d\x58\xb2\x76\x9c\x07\x50\x0e\xca\xaa\x3d\x09\x38\xd9\xdb\x42\x8a\x33\x7f\x3b\x2e\x53\x06\x98\x90\x7d\xb9\x7e\x7b\xae\x06\xcc\x46\x29\x40\x93\xb6\x2d\xea\x55\x56\xf3\x3d\x24\xac\x6f\x76\x03\x73\x94\x8a\x5a\x5f\x04\xd6\x52\x55\xab\x38\xd4\x83\x44\x1f\x63\xc0\x09\xf5\xac\x84\xe6\xa8\x5b\x21\x31\x0d\xf8\x76\x47\x77\x56\xaa\xdb\xb4\x07\x63\x89\xb1\xcb\x54\xef\x88\x8f\x6b\x9d\x9b\xdb\x7c\x1b\xf8\x0b\xd9\x5c\xd2\x92\x07\xb4\x9f\xbf\xa8\xb4\x8d\x89\x3e\x05\x0a\x86\x9f\xd1\xd0\x95\xd8\xf1\x98\xac\x58\xb4\xbf\xfa\xa5\x9d\xf1\x97\xee\xec\xe4\x3c\xc8\xad\x29\x15\x5b\x29\x3a\x15\x9d\x9d\x0f\x3a\xb4\x06\xc8\x46\xa4\x26\x3d\x84\xb7\x1c\x85\x4a\xd5\xa9\x68\x39\xbc\x5b\xb1\x39\x61\xa7\x69\xfc\xe2\x01\x20\x96\x64\x23\xb3\x5a\xf4\x19\x1f\xe1\x7d\xbe\x5f\x5c\x49\xb8\xb4\x16\x0b\x61\x6e\x88\xb3\x7f\x09\xa9\x19\x41\x70\xbe\x6d\x40\xdc\x16\x49\xc7\xfc\xa3\x87\x40\xe7\xe5\xa5\xa6\x80\x7d\xb9\x9b\x1f\x4b\x86\x0f\xbf\x6e\x21\x4f\x0e\x23\x32\x4b\x36\x00\x29\x06\x07\x71\x2b\x44\xe3\x53\x6f\x29\x4d\x60\x96\x30\x83\x74\xc0\xa6\xa1\xee\xf3\x2f\x10\x00\xb5\x84\x72\x05\x7b\x1e\xaf\x90\x72\xe5\x7a\x32\x9c\xd5\x88\x2d\xfb\x91\xc1\x6b\x74\x87\x40\x4f\x78\x51\xf0\x0c\xb1\x74\x62\x32\x93\x55\x48\x99\x2b\xad\xc9\x05\x06\x77\x36\x6c\xeb\x1f\xdb\xf6\x77\xe5\x0b\x81\x01\xba\x36\x5c\xab\x7b\x44\x4c\x45\x2e\x52\xcb\x63\xea\x45\x02\xea\xd9\xb1\x3b\x86\x80\x71\x64\x13\x59\x1c\x34\xd3\x97\x9d\xf4\x88\xae\xe3\x24\xc5\x02\xc4\xc7\xb2\x0e\x40\xe1\x58\xe4\x7a\x44\x48\xbf\x64\xb6\x38\x40\x08\x90\x3a\x1e\x8e\x04\xd3\x7e\xf4\x9c\xf6\x00\xb0\x2b\x93\xb5\x75\x40\xf7\x33\xe2\x06\x95\x91\xa2\xd1\xed\xa7\xdb\xe4\x45\x8e\x10\x47\x1e\x0f\xa6\x2e\xe6\xa8\x9d\x7f\x39\xa6\x02\xa2\x45\x18\x96\x84\xa8\xa1\x2b\x93\xed\x93\x6f\xa1\x86\xe7\x52\xa8\x99\xd9\x97\xfd\x43\x63\x48\xf4\xe4\xba\x21\x95\xe2\xac\xa5\x8e\x6d\x13\x44\xe3\xcc\x16\x6d\x8d\xd4\xac\x60\x26\x35\xd3\xb2\xf3\x24\x24\x68\x81\x6b\xa2\xba\xa8\xde\x9e\xbe\x74\x8c\x8a\x0d\x1c\xfa\xc4\x52\x52\x5e\xc6\x58\xcd\xbd\xa5\xe4\x3b\x96\x3b\x99\x15\xc3\x6e\xc4\xf8\xe4\x63\x43\x65\x51\x25\x7c\x50\x8b\x48\xd2\x15\xfe\xfb\x5c\xf2\x5c\xf4\x50\x56\xc5\x09\xae\x42\x76\xe6\x32\xe5\x4b\x47\x21\x5c\xfa\x3f\x96\x47\x6c\x51\xc1\x57\x2d\x04\xb7\x1c\x53\xaf\xb3\xc8\x08\x2e\x71\xc4\x5f\x21\x18\xa6\x7d\xb6\x69\x53\x66\xcd\xee\x92\x8b\xd8\x66\xbf\xf8\xc7\x57\x31\xb8\x15\xc6\x4f\x17\x41\xfb\x16\xdb\x96\xe6\xaf\x19\x4b\xa2\xd3\x51\x43\x5a\x4e\xb5\xbc\x06\x8c\x3d\xb0\x1d\x96\x06\xd2\xc2\xe0\xea\xf3\x5a\x6b\x4a\xfd\x52\x09\xc5\x33\x99\x9c\x71\x3c\x19\xb3\x4a\xd4\xb6\x69\x53\x6d\x63\x8c\xef\x32\x75\x0c\xc3\x88\x21\xb6\x39\x85\xbe\xec\x13\x07\xe1\x2e\xd6\xb4\x85\xee\x77\xb0\xdc\x02\xad\x4a\x84\xf6\x08\x3e\xba\x26\xc5\x52\x8e\x74\xed\xe4\x50\xd4\xf8\xf4\xeb\xc0\xec\x81\xd6\x8a\x92\x90\xbb\xa1\xfb\x8a\x66\x6a\x7d\x17\x9b\xae\xcd\xd4\x15\xa6\x29\xb3\xa2\xeb\x6c\x8c\x3e\xad\x59\x87\x53\x8f\x3b\x3c\xf2\xf2\xe6\x1a\x70\x5d\x7b\xa8\xef\x48\xc5\x93\xec\x2c\x99\x0b\x45\xa1\xeb\x02\x23\xc9\x1f\x7b\xc9\xef\xe0\x55\x50\x0f\x5f\x0b\xaa\x83\x32\xf5\x50\x12\x88\x57\x24\xe6\x05\x81\xf9\x6e\x51\x6b\x46\x6a\x4d\x11\xc2\x3e\xb3\x48\x35\x8c\x25\x54\x64\xb8\x8c\xe0\x94\xe2\x97\x75\x0d\xef\x20\x77\x52\x31\x68\x26\x33\x75\x0a\x24\xf7\xfb\xa5\x52\xf8\x5d\xff\xfe\x19\x79\x4c\x9b\x34\x6f\x71\x13\xd7\x8c\x25\x35\x2e\x4a\xbe\x5d\x12\x44\xe7\x20\xdf\x02\x64\x7d\x62\xcb\xa8\xf0\x2f\x7f\x69\xae\xbe\xbd\x92\x3e\x99\xc1\x37\x81\xcc\x2f\x22\x55\xbe\x9e\x30\x9e\xdd\x9b\x74\x5a\xb1\x51\x91\x32\xcc\xdc\x09\x17\x7c\x16\x2b\x97\x0f\x02\xc2\x46\x1b\x88\x49\xf3\x85\xe0\xb3\x1b\xfb\xcb\xd6\x95\x3b\x6b\x05\x3f\x07\x0c\xc5\x3a\x36\x29\x43\x82\xe4\x3d\x63\xb5\x9c\x59\xa3\xa6\xcb\xcb\xe9\xbe\xcc\x47\x01\x80\x97\x4f\x42\xb8\xde\x60\xbe\x10\xac\x78\x74\x30\xb8\x24\x75\xc4\x84\xc5\x45\xbd\x94\x72\xf6\xaf\x44\xd7\x23\x7b\xdd\x3d\xea\x94\x24\x7e\xef\x56\x4d\x79\x9f\x44\xf5\xd9\xbf\x6e\x19\x9c\x90\xff\x11\x8a\xc4\x5f\xe9\x52\x03\x1f\x64\x9a\x5c\xbd\x5c\xfa\xed\x65\xfe\xd4\x0b\x39\x56\x98\x4b\x9b\x9b\x02\x19\x72\xe8\xbc\xb8\xe9\x79\xec\xae\x17\xb8\x89\xf2\xb9\xc4\x72\x14\x73\x9f\x2e\xce\x02\xbc\xfd\x41\xf1\x77\x3d\x46\x8a\x62\xc5\x7c\xb1\x06\x73\xac\x20\xdb\x16\x89\xe2\xe2\x8e\xc8\x1b\xb1\x94\xc2\x84\x65\x5f\x7a\x37\xf9\xb6\xdb\xa7\x75\x4c\x97\xe3\xf6\x7f\xdb\xae\x5a\x3a\x6c\xa5\x06\x04\x93\x16\x6b\xa0\x0e\xea\x7a\x75\x1a\x65\xe0\xbe\xcc\xa0\x3b\xb5\x47\x6d\x93\xba\x2b\x81\x31\x99\xb6\x07\xe3\x19\xbb\x67\x56\xa2\x12\xf9\xea\x83\xba\xdc\x1e\xf3\xb0\x2d\x16\x80\x7f\xed\x18\x0c\x26\x65\xb8\x29\xb9\x0c\xa7\xf7\x81\xba\x01\x39\xe5\xa6\x10\xdd\xf8\xd5\x2a\x68\x11\x4b\x60\xe5\xf9\xa2\x66\xa2\x51\x43\xdd\x94\x11\xaf\x27\x6a\xfe\xb6\x3c\x9d\x24\x65\xb8\xa4\x5c\xf3\x1d\x2b\x09\x93\xcb\x4d\xd8\x7c\x61\x33\x91\xba\x98\x24\x7e\xb1\x25\x21\xa7\x86\x6d\x93\x0a\xdd\xb4\xa9\xeb\x52\x2a\xfc\x2e\xaf\x0f\x78\x1d\x75\x59\x67\x32\xfd\x76\x4d\x4d\x03\xce\x32\x0f\xdc\x23\xa9\xad\xa2\x10\xb5\xdf\x17\x97\x7b\xb1\xef\x7a\x44\x90\x4d\x8c\x8f\xbc\xa4\x0d\xbd\x18\x72\x5c\x1b\xc5\xab\x14\xe3\x85\x4d\x92\xfa\x53\xc7\xa6\x6f\x4b\x1f\xb9\x3e\x63\xdc\xb3\x03\x64\x48\x8e\x90\x7b\xd9\xe7\x7b\xc1\xac\x54\xaa\x3f\x86\x1f\x95\xf6\x97\x52\xa3\x2c\x6c\xa7\x6c\x59\x46\xb6\x0f\x1d\xa1\x87\xe8\x48\xa5\xce\x18\xa7\x6a\xe8\x8e\x76\xbe\x98\xfa\xed\xb8\xcb\x95\xe2\x7e\x18\x09\xb6\x5f\x02\x47\x5f\x28\xd2\x7b\xbc\xa3\xa4\x9e\x66\x83\x50\x5b\x7a\x67\xf4\x65\x6f\xd1\xde\x25\x61\x68\xbd\xda\x5d\x04\x7f\x61\xea\xdf\x91\x5a\x9d\x32\xa1\x8b\x15\x7c\x7a\xcd\x10\x90\xb7\xb9\x9e\x1f\xff\x4e\x1f\x7d\x6a\x50\x74\x95\x2d\x5c\x13\xc2\x65\xc1\xbd\x07\x14\x8b\xcd\x8c\x94\x4c\xfb\x34\x47\x95\xa2\xcf\xca\x36\x62\x62\x1e\xf0\xc6\x21\xdd\xe3\xcf\xb6\xe3\x3d\xe7\x3b\x92\x8e\xed\x7a\xa8\x98\x2f\x04\xdf\x39\xaf\x8d\x2a\xda\x65\xfb\x11\x1d\xd7\x6f\x3d\xac\xcf\xfd\x84\x91\xb3\xb4\x21\xcf\x9c\xdf\xa8\x4e\xba\x4b\x4b\x31\xd4\xa7\xd0\x97\x1d\xb6\x19\x54\xe5\xc4\xe1\x0a\xe2\xc6\x43\xf7\x24\x13\x1b\x10\xcc\x8a\x3e\xe2\x45\x81\xa4\x3f\xd3\x32\xf6\xa4\xde\x40\xe6\x69\xa9\x41\xd0\x44\x9e\x59\xb1\x68\xf8\x64\x6e\xb8\x44\x06\x21\xe4\x88\xb0\x94\xb9\xea\x09\xf5\x61\x10\x83\xe6\x9f\x46\x66\x33\xf8\x9c\x7e\xb1\x4e\xb1\x83\xe4\xdc\xfa\xda\xf7\x00\x03\x94\xff\x46\x61\xb3\x70\xde\xd2\x56\x89\x96\xa5\x06\x9e\xb9\xe5\x2d\xd1\x01\x44\x26\x8e\x2c\xb6\x8c\x41\x8f\x89\x13\xbc\x48\xe0\x47\xc3\x68\xac\x15\x9f\x15\x5a\xc7\x12\xf4\x96\x99\x7a\x69\x7c\x00\x37\xf0\xd2\xe5\xaa\xfb\xb5\x21\x0f\x89\x78\xfd\x99\x9e\xed\xfc\xc1\xe5\x0b\x0e\xde\x40\x6a\x45\xe4\xa4\x48\xc6\xb9\xfe\x27\x80\x6a\x77\x85\x78\xa9\xce\x2e\xb3\xa3\x2e\x1e\x59\xd1\x27\xb6\xc8\x48\x85\xa3\xc9\x70\x13\x6d\x59\xa1\x19\x50\x5f\xe6\xe0\x7c\x48\x08\xf6\xed\x3a\x2f\xd7\xfb\x72\x6d\x60\xb5\x5b\xa3\x42\x0e\xed\xda\xad\x2a\x27\xe2\x1a\x72\xcd\xd8\xe2\x6a\xc2\x92\x56\x30\x71\x67\x96\xd8\x1b\xca\x62\xe2\xe8\x1c\x95\xb5\xc2\xee\x9f\x4f\x19\x04\x77\x31\xb7\xe5\x8c\x90\xe2\x5f\xca\x3f\xf2\x1b\xe7\x92\xd8\x58\xc7\xe7\xfd\xfb\x05\x24\xbf\x9e\x2c\x0a\x70\xc3\x67\xf8\x2d\x9e\xa4\x5a\x7e\xae\x97\x6e\xc3\xa6\xf0\x89\x73\x17\xa6\x55\x4a\x43\x64\xe5\x37\x5d\xa7\xbc\x81\x99\x7a\x36\xa1\x36\xdc\x73\x01\xa3\xc5\x57\x3c\x35\x62\xde\x40\xb8\x64\xe4\x2c\xb0\x21\xa8\x11\x0e\xa0\xcb\xfc\xe1\x65\x8d\x85\x2f\x2c\x1a\xe4\x31\xf3\x01\xa0\xb1\x22\xc5\x2c\x33\xa7\x1f\x15\x15\xcb\xd4\xd9\xb3\x67\xb7\xe7\x0b\xc1\xf4\x07\x81\x75\x3e\x15\xa8\x97\xec\x61\x4d\xac\xa7\x07\xdb\x36\x4e\x28\xc9\x67\x3e\xd0\x86\x08\x5e\x85\x61\xe4\x61\x27\x36\x6a\x7f\x77\xb9\xbe\xce\xb2\x30\x8b\x47\xb2\x02\x81\x92\x6d\x1f\x05\x54\xbc\x67\x77\x71\x24\x49\x65\xca\x90\x44\x9d\xe1\x0a\xf0\x61\xf5\x70\x4c\xfc\x71\x1c\xde\x09\x66\xd0\x70\x18\x73\x6b\x94\x09\x75\xcd\xd1\x93\xb4\xf7\x81\x5c\x2f\x76\x13\x31\xda\x0e\xaa\x16\xbe\x44\x04\x88\x6c\xe2\xc2\x2b\x00\xd4\x99\xb8\x36\x6c\x6f\xb2\x68\x75\x8a\x45\x5c\xe3\x16\xae\x02\x47\x92\xa9\x8e\xd5\x48\x5f\xc8\xc5\xae\x14\x5a\x99\xde\x22\x7b\xa0\x26\xc6\x1c\x12\x6d\xbc\xf0\xbc\x1e\x1a\x1a\x28\xea\xb2\xfb\x32\xb3\x25\xe9\xa9\x60\x61\xd7\x45\x11\xf1\x78\xbf\x16\x69\x85\xb5\x70\xbc\x08\xca\xec\xd8\xa6\x8f\xf3\x35\x94\x52\xf6\x1f\x94\xa9\x41\x03\x28\x70\xf6\xe5\xca\xaf\xa6\x4c\xea\x30\xe5\x6f\x9a\x3f\xad\xef\xac\x11\x9f\xa7\x86\x6c\xdc\xa0\xb6\x40\x15\x65\xbe\xa8\x59\xc2\x21\xd7\xf5\x63\x28\x7d\x8e\x02\x14\xb2\x28\x2e\xf8\xa0\x78\x80\x26\x94\xd9\x4d\x7d\xe6\x60\x49\x78\xcc\x7e\xe3\x6c\x4a\x41\x16\xcb\x71\xc1\x67\x5f\x4d\xe9\x04\x08\x55\x35\x31\x2f\xc8\xcd\xd7\x9c\x97\xa7\xce\x8e\x9d\x11\x04\x3f\xf0\xa1\x27\x92\xc7\xd9\xc1\xa4\x5c\x29\x52\x56\xa1\xd4\x92\xbf\xa3\xe5\x0d\x6d\x09\xb8\xa1\x42\x8a\x04\xcc\x2a\x8b\x53\x86\x01\xa6\x8b\x74\xc9\xe6\xd1\xe7\xe0\xae\x41\xb0\xe7\x17\xc5\x87\xd1\xf9\x26\x50\x3c\xe2\xc6\x18\x7f\x7e\x7a\x94\x5e\x60\x50\x37\x61\x34\x67\xfc\x6e\x57\xf2\xaf\xe0\x7a\x1d\x31\x2b\xd1\xba\x7d\x5c\x3a\xda\xcc\x9a\xd2\x35\x8b\x0b\xef\xfc\xaf\x4d\xca\x86\xac\x37\x35\x6c\xc8\x3e\x74\xf0\xaa\x54\x90\x4e\xe0\x60\xb2\xcb\x57\xeb\x1a\x1a\x42\x37\x46\x5c\x99\xb0\xb8\x9d\xf2\x66\x72\x89\x39\xc1\x43\xac\x17\x39\x13\x92\xf9\x3e\xfb\x36\x4b\x11\xfc\x8b\x36\xae\x45\x59\xe8\xc0\x96\xf8\x08\xd6\x88\x9a\x4e\x04\xaf\x0f\x4d\x5e\x1f\x49\x11\x15\xef\xe5\x87\x3a\x21\x14\x17\x91\x17\x5d\x16\x6b\x95\x6a\xc9\xba\xc3\x06\x23\xac\x90\xee\x7b\x24\x7e\x1e\x16\xdd\x90\x8a\xeb\x81\x70\xb1\xce\xaf\xc0\x88\xd9\xa9\x2c\x97\xfd\xc4\x12\x6d\xd5\x10\xb6\xd7\x91\x01\xd7\x55\x5d\x0a\xea\x20\xb9\x4e\xea\x31\xfe\xfb\xa8\x21\x51\x52\x77\xbc\x7c\x99\x44\xab\xed\x7d\xa7\x2f\x8f\x2a\x07\x4f\x34\x65\x57\xb5\xe8\x22\x47\x91\x55\xa3\xf1\xf0\xa4\xb6\x74\x55\x18\x3b\xd8\x1b\x9f\xd7\xd4\x92\xc3\x54\x2e\xd9\xb1\x99\xdf\xee\xd0\x4f\xb0\x30\x94\x89\x2c\x92\xb2\x53\x1e\xd3\xc2\xe2\x06\x13\xbb\x6e\x64\x80\x3e\x2e\x12\x37\x40\x8c\x11\x31\xc0\x31\x76\x2c\x57\x33\x15\xe9\x91\x2c\x46\x0c\x4f\x3f\xa0\x99\xe9\x0a\xf5\x21\x49\x40\xe9\xa9\x40\x34\xb1\x05\x43\x69\x45\x13\xc3\xc1\x4e\x37\xed\x89\xfb\xae\x87\xdb\x93\x7f\xca\x17\xa9\x31\x16\x71\xed\x45\xbc\xdc\xc8\x2f\x70\x1a\x84\x51\x47\x7a\x1a\xeb\x2f\xb0\x0d\x88\x2f\x4c\x88\xc6\xc9\xd9\x79\x73\xc0\xcc\x1e\xb9\x26\xb5\x01\x69\x32\xfb\x99\xe9\x63\xb4\x43\x56\x0a\x5f\x62\x6f\x22\xe1\xf5\x6a\xe4\xea\x52\x0f\xb5\x28\x4b\xcc\x17\x83\xb1\x3b\x80\xfd\x10\xe2\x73\x5b\xbe\x1a\x9d\xf9\x5a\x8a\x73\xed\x51\xa1\xae\x17\xcc\x5a\xa4\x69\x50\xcc\x92\x4f\xe3\x9f\xc7\x83\xd3\xed\x73\x93\xfc\x42\x9f\x31\xe6\xe1\xe4\x8f\x72\x10\x63\xb4\x19\x79\xb0\x2f\x57\xbf\xbf\x82\x7a\x5c\x0f\x99\x55\x5e\x05\xdd\xf8\xcc\x30\x58\x21\xa1\x3a\x32\x05\xc4\x2c\xfb\x8d\x4d\xfa\xed\x27\x9e\x34\x60\x90\xe7\x66\x22\xa0\x6f\xb3\x5a\x67\xfb\xf4\x2e\xae\x97\xfc\xbb\x37\x92\xcf\xc3\x45\x96\x85\x6a\x9a\xde\xa9\x31\x56\x6d\xa1\x38\x17\xe5\xa3\xa7\xc0\xb4\x18\x79\x61\x45\x20\xa0\x6e\x63\xcf\x48\xe0\xaf\xef\xc5\xb2\xe2\xc6\x0f\xe6\xc7\x1e\x7c\xd4\xac\x10\xc1\xda\x5c\xf4\x4a\xf2\x12\x70\xdb\x00\x61\xa7\xbe\x7f\x28\x70\xe5\x17\x98\x97\xeb\xd6\xa5\x34\xe0\xe3\x13\x55\x68\x4f\xac\x7f\x6a\x2e\xb6\x1b\x1c\x27\xe0\x34\x52\xd7\xd0\x01\x2a\x03\xd3\x96\xea\x58\x35\x31\xe9\x95\x52\xf6\x07\xd7\x8a\xab\x84\x7c\x8b\x14\x6d\x81\xfa\x59\x77\x58\x4d\x0d\x50\x44\x8a\x58\xb8\x1d\xe2\xd3\x98\x90\x4c\xcb\xbc\xd3\x39\x52\xcb\xc8\xc4\xe1\xd3\x33\xd9\x37\x19\xf3\x0c\xbd\x11\xa7\x45\x54\xb4\x7b\x04\xf2\xff\xd4\xb1\x38\xf1\xb8\x84\x37\xee\xc7\x7a\x07\xc8\xba\x9e\x4a\xb7\x44\x63\xd5\x8b\xea\x3e\x54\xa8\x87\x6d\xe8\x81\xf9\x8d\xeb\x2e\x0c\x90\x8b\xc4\x09\x8c\xeb\x5f\x69\xd5\x4b\x18\xe2\x4a\xe6\x81\x31\x60\xa1\x5e\x1b\x54\xe3\x9a\x34\xe8\xd8\x0e\x43\x83\xa0\x47\x8b\x5e\x27\x78\x02\xac\x25\x48\x77\x0d\x97\x79\x27\x95\x9b\xde\xa1\x4e\x6e\x37\xf5\x1d\x64\x0b\x63\xb3\xa0\x0c\x9c\xec\x4a\x8c\x3a\x9e\xd4\x88\xc8\x2c\x08\xe2\x3c\x53\xa6\x8a\x4b\x15\x6c\xd1\x54\x56\x2a\xb8\xc7\x31\xab\x7c\x31\x37\x0e\x74\xad\xc3\x6c\x31\x80\xe7\x7c\x50\xd7\xe3\xcb\x62\xe1\x90\xd7\xd6\x06\x2a\x00\xc6\x45\x0b\xc1\xbf\xdb\x31\x31\x95\xfd\x1a\x24\x2c\xec\x84\xb2\x5d\xbe\x98\xf0\x08\x6e\xba\xe2\x45\xec\x79\x3d\x59\xdb\xd8\xe1\xf7\xb6\xc2\xb3\xc4\x2b\x97\xf5\xbb\xdb\xf4\x57\xe1\xa1\x98\xa4\x95\xfb\xf4\x2b\xf1\x44\xbe\x01\x10\x3b\xc1\xbd\x5d\xea\xa1\x55\x89\x4d\x6b\xd8\x13\xca\xa8\xfd\x25\x14\x78\x45\x05\x55\x2b\x0c\x29\x4d\xdd\x60\xe1\x42\x51\x57\x34\xb9\xf1\x62\xa1\x2f\x73\xfd\x22\x91\xb7\xd6\xfb\x54\x50\x41\x72\xb7\xf6\x6b\x81\xd3\x7b\x0e\x37\x39\x36\x5d\x88\x8e\xac\xf0\x18\xf2\x70\x99\x98\x69\x26\xd2\x75\x17\x70\xe8\xe0\x08\xe2\xa9\x3b\xc4\x93\x5e\x83\x39\x7d\x2d\x7e\x51\xdf\x59\xa9\xb5\xbd\x18\x31\x29\x61\x9b\x73\x7a\x55\x0a\x8e\xb0\x13\xb1\x5a\xf1\xd0\xe7\x60\x37\x31\x8b\x87\xa9\xa5\xd7\x2a\xee\x87\x07\xf5\xfe\xae\x7d\x4e\xdc\x8a\x06\xa1\xb6\xb0\xbf\x36\xee\xba\x47\x0e\x38\x7a\x38\xc9\x26\xbb\x46\x13\xa0\x42\xe2\x12\x88\xfe\x36\xd9\x1d\x4f\xb8\x56\x23\xc0\xda\x36\x4e\x51\xcc\xfa\xb2\xdd\xe7\x00\x01\x16\x71\x13\xf8\xcc\xdf\x8e\x6d\x81\xcd\xa5\xa8\xb0\x97\x8d\x4c\xfe\xea\x89\xc8\x46\xed\xd7\x5c\x90\x30\x73\x37\xd3\xa7\x04\x76\xa4\x56\x99\x59\x78\x18\x74\x8d\x75\xc6\x67\xea\xd9\xaa\xc6\xb8\xab\x33\x6c\xe1\xb0\x16\xa0\x4c\xd0\xb3\x73\x43\xb5\x8e\x56\x48\xcc\x46\x18\x95\x1f\x95\xf4\x9a\xcc\x8c\x71\x43\x99\x1b\x5b\x45\xc8\xe6\x2f\xcd\xe6\x4a\x13\x7d\x46\xf6\x69\x9d\x6b\x2d\x64\xb8\xa2\x40\x3c\xf8\xc1\xc1\xa0\x84\x8e\xe7\xf9\x87\xf6\x24\xf4\x44\x6d\xdf\x95\x12\x4b\xd9\x6f\x3c\xa3\xd5\xd2\x7e\x51\xa8\x19\xc6\x73\xcc\xcc\xf3\xc7\xaf\xd2\x4a\x8d\xf0\x66\xf1\xb9\x81\xec\xcc\xaf\x3d\x3d\x2c\xca\x2e\x48\x86\x70\x21\xf9\x66\xbc\x07\xa8\x3d\x6e\x8f\xeb\xe1\x5a\x04\xbf\xf9\xb3\x07\x06\x53\x1e\x97\x70\x0d\xbe\x37\x52\xd3\xc2\x46\x3d\xd1\x2a\xf3\xba\xb5\xd0\x22\x42\x1a\x63\x29\xaf\xde\x43\xfb\xb5\x7f\x49\xe3\x96\xae\xe5\x1e\xad\x9c\x6b\x60\xd6\x53\xa4\x56\xa4\x86\x92\xf9\xe6\x5a\x35\x3e\x9e\x3a\x53\x74\x3c\x85\xbe\xdc\xec\x67\xe1\x2c\x24\xfc\x84\x2c\x6c\x2f\xf9\x4a\x7a\xd3\xa5\x6a\x6b\x63\x53\xb3\x5a\x11\xbe\xda\x51\x04\xbb\xfb\x75\xa8\xc1\x5d\x47\x84\x47\xa8\x85\x1d\x31\x7a\xb8\xea\xa3\x04\x47\xe9\xfa\x23\x6a\x28\xc3\x87\x7b\x61\x9a\x92\xcc\x93\xcc\x92\xbb\x92\x27\xd8\xc4\xb6\x2d\xc5\xc5\xf5\x9a\x6d\xdb\x9b\xad\x09\xfa\x59\xde\xc5\x35\xe2\x49\xb8\xe7\x9d\x01\x38\x1b\xa8\xa7\x24\x3e\x56\xf6\x87\x25\x40\x87\x12\x4a\xb3\x61\x3c\x1a\x77\x42\xeb\xc5\xa9\x5f\xae\x44\x5b\x92\xa5\xf3\xf4\x5e\x57\xce\xcf\xf9\x79\xc8\xfc\x79\xba\x06\xa9\xe1\x4f\x2e\x46\xa5\x65\x3e\x0f\x15\x42\xb9\xbf\x2d\x4f\xed\xa5\x67\x92\x07\x2d\x32\xd4\x27\xa6\xd8\x4d\x06\x0f\xdb\x57\x82\x79\x8f\xf0\x2c\x70\xeb\x38\xb6\x6c\xfc\xd9\x1a\x35\x7d\xf0\x7c\xdb\x77\xa0\xcc\x2a\x72\x80\x55\x48\x9d\xfa\xd2\x70\xe5\xdd\xf7\x45\xec\x5c\x4e\xb9\x50\x8b\xc2\xc8\xac\xd7\x76\xeb\xa8\x56\x84\x6c\xa5\x4f\x9f\xd7\x24\xef\x59\xad\xe7\x42\xf4\x99\xcc\xe1\xd5\x09\xe3\x0a\x5a\x17\x95\xff\x74\xc9\x52\x08\x43\xa6\xb4\xee\x32\xbe\xb3\x37\xb9\xbf\x71\xc9\x86\x76\xb1\xf9\xf8\x09\xd0\xde\x93\xd0\xde\xb0\xb3\x08\x9e\x38\x16\xb1\xbc\x04\x4b\x26\xbc\x45\x73\x46\x01\x71\x21\xcc\xd5\xcc\x83\xbb\x9e\x92\xbd\x13\x76\x5c\x31\x35\x6c\x7d\x3f\x82\x0c\x35\x8b\x94\x17\x8e\xce\x62\x8d\xae\x5d\x41\xac\xce\x45\xcd\xf8\x39\xf9\xba\x34\xd5\xba\xa1\x68\xf9\xb6\x8b\x6c\x04\xa4\xf2\x8c\x60\x68\x5c\x95\x39\x0e\x8a\xee\xf8\x7f\x9f\xd7\x98\xe4\xcc\x2f\x8b\x74\x8c\x2e\x99\x9c\x2c\xbe\xa9\x23\x26\x1c\x2e\x72\xc2\x0a\x34\xa5\xf0\x32\x09\x0c\x95\xeb\x75\x86\x4d\x22\xb5\x50\x72\x7f\xf3\x7e\x92\x13\x19\x89\xd4\x5f\x28\xc4\x67\xfd\xfb\x34\x20\x69\xb2\xf3\xce\x4c\xe9\x92\xf6\x27\x5c\x4b\x95\x08\x23\xc6\x77\x9e\x51\xb9\xc6\xf2\x85\x39\xe7\xb1\xd7\xb4\xe2\x4c\xe8\xa8\x4b\x70\xf0\x2c\xb9\x6c\x35\x6d\x1a\xff\x94\x2f\x6d\xbf\x02\xd6\x2d\x49\xb9\x6b\x63\x57\xa0\xd3\xa3\xa9\x6f\x09\x13\x25\x1e\x84\x0f\x6e\x17\x49\xb6\x60\x7a\x94\x2b\x9a\x07\x2d\x8f\x01\xf2\x32\x0f\xad\x69\x83\xc8\x8d\x63\x87\x6b\x67\x38\xda\x95\x67\x3f\xb1\x45\xcb\x3d\xd4\x71\x22\x39\xbf\xec\x25\x8f\xc6\xa5\xaf\x59\xe1\x98\xb7\x01\xcf\xa7\xeb\x27\xcc\x95\x2b\xf8\x6d\x98\xf1\xa4\x34\x18\x58\xb4\x60\xe1\xc2\x9b\x17\x2c\x99\x1f\x55\x12\xe6\xe9\x56\x38\xc2\xaa\x26\xe4\x69\x26\x6a\x68\xf2\x22\x2e\x13\x0e\x27\xe7\xe3\xde\x87\x46\xc0\x98\x88\x78\xdf\x26\xca\xfd\x93\x2b\x87\x80\xdb\xe0\x4a\xa0\x7b\x9f\xb1\x79\x71\xab\xf6\x21\xbb\x39\x79\xa1\x3d\x5f\x08\x6e\xd2\x76\x1e\x18\xb9\x61\xd3\xa4\x8c\x27\x82\xc2\x11\x9d\x09\x8c\x3c\xe8\xca\xd2\xdc\xa3\x2f\x0d\x37\x90\x1a\xe9\xc5\x51\x50\x74\x6c\xf1\xd2\xb1\x24\xd5\xe7\x0b\xc1\xa4\xce\xe4\x29\xf1\x1d\x9b\x54\xa3\x7f\x60\x5c\xa5\x6c\x83\x9b\x17\x40\x5b\x91\x7e\xc9\x7e\xb6\x53\x52\x78\x32\x9f\xd3\x4c\x53\x1a\xd4\xf6\x1d\x4f\x94\xba\xe1\x6f\x7d\x7c\xb0\x0e\x01\xb1\x7a\xca\x3e\x62\x16\x9f\x50\x04\xf7\x5f\xaa\x69\x93\x55\x90\x6d\x87\x49\x9d\x87\x9a\xdc\xd6\x75\xb2\xe9\x2a\x95\x88\xf0\xbc\xec\xcb\xdd\xf7\x86\x6e\x2b\xcd\xe2\xa1\x69\xf0\xca\xa8\x01\x00\x57\xc9\x29\x5e\xc5\xbb\x60\x02\x2c\xf9\xc2\x7a\xdb\x9c\x95\xfc\xdc\x65\xe4\x55\x30\xc4\xaf\xdf\xbc\x54\xc1\xf0\x3b\xbb\xa6\x71\xd1\x29\x4d\xa6\xbf\x8a\xdc\x4a\x8d\x30\xa5\x98\xd2\x67\x5c\x7f\xf2\x72\x85\xa6\x09\x6f\xc6\x95\xda\xb6\x87\xf9\x0c\x45\xe6\x20\xaf\x9f\x1b\xa7\xbd\xc4\x32\x87\x6c\xa4\xc2\x76\xdb\xfd\xa2\xa6\xa9\x08\x4d\x44\x37\xe6\x75\x65\xc9\xc8\xb8\x15\x37\xb9\x9e\x4d\xd7\x49\xb5\x63\x28\x7e\x2c\x6c\xc1\x0c\xcd\x56\x66\xf6\xec\x58\x8d\xef\x8e\xab\xb4\x42\xa5\x86\x6c\x82\xc4\x20\x51\x00\xf6\x34\x60\x73\x89\xda\x16\x66\xd4\x8e\x84\x12\xfe\xa1\xa8\x11\x51\x2d\xa2\x76\xba\x77\x6c\x82\x37\xa3\x41\xa4\x4e\x74\xee\x96\xbd\x57\x42\xb6\xf4\xfc\x95\x93\x15\x8c\x98\xb3\x34\x35\x4c\x54\x95\x36\x90\xe9\x26\x44\xd5\xfe\xb2\x52\xd5\x3c\x35\xdf\xc5\x7e\x2d\x61\xfd\x8e\x8f\x27\x81\x94\x12\xaa\xee\xf5\x5c\x60\x7b\xfd\xb3\x00\xec\x5e\x7d\xbb\x8c\x38\x4f\x23\x78\x24\x10\x3d\x15\x97\x27\xe6\x30\x52\x0f\x71\x9b\xa7\xbe\xec\x5f\x77\x0e\x82\x05\x8a\x94\x20\xff\xcd\x4e\xe5\xeb\x2b\xde\xcd\xd7\xc1\xa8\x87\x11\x61\x2d\x1e\x6c\x3e\xa3\x15\x50\x1c\x8b\x84\xd3\x1a\xc2\xc1\x8f\xb5\x52\xd7\xf5\x30\xb6\x13\x4f\x61\xe5\x41\x00\x41\x60\x0c\x8b\x16\xfa\xd3\x1b\xb5\x71\x22\x43\x4d\x5b\x70\x13\xce\x6c\x87\xa8\x6e\x5a\x97\x87\xe8\x9c\x16\x6c\x88\x87\x6c\xa0\x74\xf3\xa5\xd7\x92\x95\x00\x6d\x4a\x11\xe1\x07\xf6\x24\x8f\x56\x98\xf3\x25\xb8\x3b\x5b\x97\x42\x13\x15\x52\xaf\x0b\x6a\x58\x30\x65\x87\xb6\x2a\x40\x8e\x1f\x06\x0a\xbe\xa3\x2e\x49\xa9\x94\x1b\x2b\xd8\xac\x38\x3d\x71\xda\xfe\xed\xdb\x71\x5c\x2a\xf9\xa9\x67\xf4\x77\xa7\x34\x0a\x10\x46\x96\xd8\xfc\x15\xfa\x8c\x6f\x68\x7f\xc8\x47\x4a\x91\x94\xc2\x45\x4f\x29\x89\x13\x88\xd4\xce\x96\xb5\xbd\x43\x89\xfa\x4c\x38\xc6\x47\xd7\xa6\xd1\x2e\xb0\x0a\x75\x5a\x97\x8a\x04\xbc\x7b\xf9\xce\xfd\xad\x8e\x8e\x12\x8c\x04\xf5\x8c\x27\x4f\x26\x81\xd3\xa8\x8a\xaa\x44\x93\x8e\x3c\xa3\xae\x6e\xc4\xc7\x39\xa1\xb5\x0b\x35\x2c\x47\x36\x22\xb8\xde\x53\xd4\x24\x83\xc4\x20\x4f\x36\x1b\xbf\x03\x53\x39\xec\x34\x62\x93\xa7\x6c\xc6\x88\xa9\x4f\xd2\x86\xcb\x18\x39\x31\xb1\x6c\x45\xcc\xe4\x15\x5c\x78\x62\x5b\xee\x03\xf3\x2c\xdf\xe5\x92\x8e\x7d\xb9\x59\xcf\x03\x28\x83\x53\xa5\x62\x01\x5d\xe8\xcb\x5d\xfe\x50\x9b\x8a\x48\x69\x4d\xe7\xe1\x5d\x72\x22\x21\xb0\x55\x7d\xd9\x4f\x5c\x2b\xd8\x84\x2b\x22\xd1\xd7\xc4\x4d\x9e\xa6\x05\x20\x64\xc9\x4e\x52\xc6\x98\xe3\x3b\xa0\x0a\x13\x66\x5c\x46\x82\xeb\xb5\x06\xff\x74\xc9\xd5\x5a\x43\x1b\x66\x6d\x8d\x7b\x6e\x7c\x4a\xfa\xd8\xae\x10\x60\xad\xf0\xb9\x7d\xf0\x92\x14\x90\xe3\x55\x36\x87\x21\x9e\x4a\x5e\xa9\x1a\x65\x58\xc2\x27\xbf\xb0\x5b\x15\x83\xd5\x84\x99\x76\x66\x63\x69\xa4\x5e\x46\x09\x43\xed\xc8\xc2\xe4\xa0\x26\x56\xef\x35\xb1\xdd\x88\x53\xf8\xa7\x4f\x26\xac\x0b\xa4\x07\xdc\xd7\x96\xf6\x8f\x2e\x16\x67\x07\xe7\x32\x3b\xe2\xcd\x88\x47\xd2\x15\xff\xfa\xa5\x9a\x78\x6e\x24\xbe\x44\x52\x69\x26\xbb\xb4\x92\xaa\xfb\xba\xb1\xe9\xb9\x51\x61\x55\x7a\x51\x7d\xa2\x12\x35\x65\xd7\x62\x9c\x3e\x05\x47\x68\x76\x58\x7a\x82\x69\x71\x66\x5a\x17\x80\xc2\xe3\x72\x04\x3c\xfb\xe8\xc9\xb1\xda\xd5\x6d\x12\xc7\xad\xf6\x68\xb3\xe6\xc2\x51\x4d\x93\x1d\xd7\x68\x99\xa1\x7a\x25\xf6\xb1\x59\x35\x31\x32\xcc\x6a\xd0\x48\x13\xf9\x6f\x17\xea\x92\xa7\xd2\x11\x5d\xea\xb0\xde\x93\x10\xd3\x94\xc9\xae\x55\x7a\xd6\xdd\xbc\x74\x61\x61\xf9\xad\x51\x3a\x32\x3a\xc6\x0b\x78\xd3\x8d\x4b\xc3\xff\x9b\x3d\xb9\x2c\x85\x1d\x76\x64\x4b\x38\xf7\x21\x65\xd3\x16\xf6\xe6\xc1\xb7\x4f\x27\xa7\xe9\x45\x54\x2c\x12\xcf\x4b\x32\xd6\x3f\x7c\x44\xd3\xeb\x9a\x39\xa5\xa3\xa3\x23\xaa\xb5\x27\x6c\x81\xa3\x31\xde\x9e\xf9\xc4\x15\x0c\xf9\xec\xd5\x5e\xb2\xdd\x28\x61\x0b\x0b\x46\xca\x05\xb0\x0f\xcd\x47\x74\x6f\xfa\x18\xed\x17\xd5\x3c\x87\xce\xa9\x2d\x7a\xb5\x29\x54\xf5\xfb\x3c\x1d\x3c\x64\x56\xfd\xba\xc4\xac\x57\xb6\x0f\x91\x3d\x6c\xd8\xda\x89\x49\x5a\xf8\x83\xbe\xb0\x4b\x94\xe0\x8b\x10\x37\xb1\x8c\xfb\xde\xe2\xf6\x84\xb6\x8c\x27\x35\x0a\x3f\x3c\x46\x5f\x11\x99\x55\x3b\xbe\x08\x15\x30\x13\x29\x22\x47\xfa\x37\x66\x4f\xe5\x74\x83\x2d\xde\x84\x47\x88\xbe\x53\xcf\x68\xd3\x2e\x8f\xb2\x5a\x8c\xf7\xbd\x7e\x96\xb8\x46\x16\x62\xa2\xf5\x9e\x7f\x51\xb2\x16\x33\x11\x5f\x63\xa7\xe5\xd5\x4e\x1a\xd0\x3b\x6f\x03\x58\xba\xaf\x79\xb1\x4d\xab\x5b\x18\x46\x31\x44\x21\xb3\x79\x4b\x32\x1c\xd8\xbe\x63\x56\xf2\x1e\xa9\x49\x0b\xd9\xec\x0b\x73\x20\xcc\x94\xc5\xf2\x6c\xbb\xdb\x81\xd1\x7a\x98\xe5\x25\x14\x3b\xd3\xd8\x09\x7b\x41\xb7\x9a\x2f\x04\x5f\x7e\x06\x38\x2f\xb3\x78\x15\xa3\xb7\xb0\xf7\xee\x4a\x66\x6e\xdf\x95\x8a\x08\xc1\xc5\x8b\x35\xd7\x80\x52\x09\xb3\x18\xf1\xfc\xac\xa3\x49\xa8\xd6\xc2\xa6\x5e\x58\xc9\xcb\x91\xf8\x77\x97\x6a\xef\x92\x51\x27\x56\xd5\xc8\x0c\x1d\x29\x6a\xa7\xf9\xc8\x21\x6e\x25\x6a\xcc\xea\xfa\xd1\xc4\xac\x8e\x3d\xc6\x61\x80\xa2\xae\xff\xc4\x94\x38\x37\x76\xf3\x91\x58\x86\x39\xc9\xa7\x2d\x19\x15\xb1\x20\xf2\x2a\xcd\x82\xd6\xa6\x8e\x14\xc2\xcf\xdc\xad\x29\x9f\x93\x5a\x9d\xba\xa2\x35\xeb\x33\x7a\x80\x87\x51\xad\x07\xd5\x6a\x62\x02\x37\x62\x83\x3e\x46\x22\xd8\xb1\xc2\xf2\x46\xfc\xb3\xd9\xa0\xd8\xa5\x0e\xe6\x72\x6a\xe1\xef\x2a\x3f\x19\x4f\xaa\x8b\xb4\x07\x5c\x7b\x26\x69\x52\x18\xc9\x94\x9a\x31\x1a\x6d\x4a\xe7\xa1\x96\x5e\x62\xef\x02\x54\xbd\x2a\xf1\xbc\xf0\x01\x16\xfa\xb2\xe3\x77\xc6\x09\xb7\x92\x56\x96\xc9\x3e\xa4\x25\x99\x0a\xea\x25\x31\xca\x25\x3b\xee\xb4\x12\xfc\xbf\x80\x31\xd3\x55\x53\xb4\xc9\x42\xd1\x17\x03\x5e\x5e\x08\xf5\xdb\xd0\x3f\xfa\xcd\xb3\x3a\xc3\x9f\x76\xf9\xc9\xa1\xda\xe1\x11\x13\xeb\x5c\xd7\x49\xf1\x65\x17\xc4\xe3\xb1\xf6\x55\x6a\x02\xc1\xe9\x88\xb5\x48\x03\x85\xcb\x0f\x3c\x08\x8a\x69\x3e\x10\xba\xe4\x69\x50\xba\xda\xa4\x26\xa8\x65\x99\xc5\x03\x52\x4e\x27\xb1\xf0\x79\xa0\x21\x78\xaa\xdc\xad\x48\x58\xc1\x64\xd6\x57\xe4\x12\x52\x46\xc1\xb0\x3c\xfe\xc8\xf8\x11\x00\xbb\x6b\x13\xa8\xd8\xf9\xc1\x60\x0d\x7f\xcf\x90\xe3\x0a\x69\xb0\xa8\x19\x9a\xa0\x41\x69\x5d\xe2\xc8\x25\x59\xf8\x0b\x3f\x73\x24\x22\xc3\x97\x22\x79\x8c\xcc\x6f\x17\xa5\xcb\xd7\x3c\x11\x0a\x43\xc6\x0b\x30\x56\x72\x6f\x5a\x3e\xee\x1d\x78\x52\x59\xc6\x63\x94\x7e\x67\x99\x33\x9a\x76\x96\x8d\x9c\xb2\xe6\x58\x99\x59\x79\x74\x28\xa4\x77\x5a\xbe\x14\x06\xcb\x9c\xdb\x9f\x12\x93\x37\x19\x96\x19\x25\x3c\x2f\xef\x6a\xfa\x3b\xc8\x26\xa5\x76\xe0\x98\x99\x39\x7d\x36\xf9\x46\xa6\x4e\x6d\xef\x9c\x21\x04\x6e\x73\xeb\x2b\x83\x41\xd1\xd8\x40\x36\xe1\xbd\xf8\xe7\x35\x21\x0a\x3e\xe8\x10\xcc\x99\xcc\xc7\xcf\x68\x35\x52\xc5\x67\xae\x25\x1d\xfe\x9b\xed\x57\x81\x29\xb2\x53\x41\x9e\xc7\x17\x66\xca\xdf\x7e\xab\x82\xd1\xd8\xc5\x54\xc1\xb3\x6c\x8c\x94\xdb\x47\x0e\xe6\xbd\xa9\x51\x9e\x23\x12\x57\xb9\xc7\xc1\xdc\xdc\x40\xec\x25\xfb\x72\xd7\x1c\x18\x2c\x5f\x9f\xd0\xce\x13\x92\x70\x2f\x2c\x89\xcf\x69\x83\x84\x45\xe7\x8f\x56\x0d\x49\x7c\xdc\x4f\x4b\x82\xe0\x37\xef\x03\x03\x5f\x8e\x19\xe1\x51\xe5\x62\xc8\xff\x26\x76\x51\x28\xbe\x64\x07\x88\x18\x9a\x5f\x8c\x7a\x90\x8d\x6c\xe2\x55\xa0\x73\xd4\x37\xdb\x92\xa9\xaa\x58\x1c\xef\xc9\xf7\x9b\x4c\x55\xfb\x35\xc2\x06\x5e\xef\x87\x4d\x38\x0e\xe3\x31\xef\x07\xbf\xdf\x2e\x48\xad\x37\xf9\xc4\x29\xa3\xb4\xe1\x47\x6e\xf1\x48\xbd\x5b\xf5\x1d\x93\xd8\x61\xa8\xd7\x53\xca\xa6\xe9\xa3\xa1\x80\x1f\x17\x92\xd7\x8b\xd1\xbf\x6d\xd7\xed\xaa\x6a\x75\x86\x2b\xd8\x71\x49\x43\x06\xe7\xec\xd6\x9d\x9a\xb3\x12\xaa\x87\xfd\xa8\xbc\x45\x27\xef\xd2\xc6\x36\x98\xb2\x32\xf4\xdb\xfa\x23\x80\xa9\x30\x4c\xe0\x2e\xf7\xc8\x5b\xda\x04\x98\x36\x1d\x31\xd2\x36\x5a\x1f\x49\x68\xb3\x58\x3e\x1f\x54\xff\xe4\x35\xb0\xc3\x63\xa2\xbf\xc9\x7e\xe6\x4d\xfe\x1d\xf2\xcb\x10\xf3\x1c\xc9\x12\xd5\x6b\x84\xd7\x9e\x4f\x76\xcc\x8c\x46\xdc\x87\xad\xb6\xf6\xed\x6c\xe4\xba\x11\xd4\x3f\xd7\x7b\x91\x16\x3f\x99\x78\x4f\x97\xbe\xa2\x19\x0f\xf8\xac\x86\x1c\xb7\x1a\x4d\x9e\xc2\x2f\xfe\x9b\x7b\xa0\xa9\x60\xad\x2e\x7d\x98\xfa\x8c\xff\xe9\x7f\x99\x3c\xe4\x36\x97\x63\x6d\x5c\x2a\xe9\x17\x0c\x37\x53\x01\x9f\xd5\x5b\x00\xe5\xd6\xe3\x88\x4c\xe3\xc4\x18\x55\xf2\x38\x88\x31\x6e\xbe\xc7\xc3\xc5\xe3\x39\xd5\xfd\x10\xdb\xf6\x39\x21\x5a\xcc\x3f\xd7\x76\x0c\x01\x52\x46\x1e\x29\x4b\xcc\xef\x07\xf3\x74\x4e\x85\x1d\x77\xd6\x45\x31\x4c\xcc\xdf\x60\x35\x88\x4b\x59\xaa\x6e\xc9\x4c\x9d\xab\x81\xc5\x6d\xec\x38\x93\xb9\x8a\x7f\xd4\x45\x7f\xe1\xc8\x10\xf0\x0d\x4a\xd4\xc5\x98\x57\x51\x8f\xf6\x1b\xaf\x05\x12\x46\x4a\x17\x34\xa3\x31\xfe\x6e\x92\x2e\x0b\xa6\xea\x8a\x41\x8e\xaa\xb9\x6c\x52\xe3\x2b\xc7\xcd\xc0\x88\xb8\x46\xdc\x4a\x0d\x89\xcc\xfc\x60\x0c\xdf\xe7\x16\xe6\x9e\x40\x91\x3f\x16\x28\x0c\x21\x6e\xe6\x0b\xc1\x75\x52\x05\xe9\x96\xd8\xe4\x3e\xb7\x72\xb7\x08\x43\x7c\x6f\xb6\x02\xee\xcd\xa4\x0b\xa2\xc4\x97\x8a\xb5\x5c\x70\xac\x5f\x0a\x3b\x22\xa4\x18\xf9\xe1\x3e\xf4\x94\xa6\x46\x2c\xc6\x87\x72\x94\x9c\x1d\x3a\x72\x58\x52\x3c\x84\xc8\x65\x5f\xee\xee\xe3\x71\x9b\x54\xa3\x31\x4e\x66\x90\x94\x9f\x99\x31\xbd\x23\x5f\x08\xee\xdc\xa6\xb5\x38\xa4\x82\x18\xd1\x38\x03\xbb\x5e\x8c\xab\x37\x87\xe6\x79\x09\xb6\x24\xd9\x9c\xdb\xc4\x75\x88\x59\xf1\xab\x93\x81\x01\xf4\xbf\x3d\xab\x4c\xc4\x6d\x82\x24\xea\xc6\xc0\x9a\xf2\xcf\x06\x52\xa1\x09\x8d\xc2\xec\xb1\x01\xfa\xe4\x87\x79\xbe\xe4\xde\x65\xdf\xf2\x14\x50\xdb\xa5\xa6\x89\x53\x35\x53\x66\x7f\x0b\xf0\x23\xad\x91\x32\x87\x2a\xff\x63\xff\xfe\xf2\xad\x0b\x41\x85\x7f\x79\x17\xae\xc1\xc2\xce\x56\x9e\xfc\x19\x4f\x5d\x50\x33\x8c\xa7\xc0\xec\x91\xfa\x08\xc8\xd0\x32\x05\xcf\x8d\xaf\xe1\xb2\x97\x5d\x14\xd7\x8a\x88\x41\x81\xbc\x11\x93\x52\x62\xb9\x1e\xe3\x16\x31\x72\x47\xd2\x77\x54\x4f\xdb\x61\xd9\x1e\xed\xef\x83\xcf\x6b\xdb\x34\x5a\x2a\x11\x93\x48\x59\xbc\xe0\xdb\x2f\x8d\x04\x2c\x01\x94\x76\xaf\x7c\x69\x8b\x62\x9c\x70\x5f\x02\x9e\xe8\x9f\x7b\x45\x8a\x18\xfb\xa5\x12\xf6\xe0\xfe\xe8\xe7\x4b\xc1\x16\x37\xbc\x24\x32\x12\xdd\x3b\x07\x98\x0a\x35\x30\xf3\x04\x45\xe2\xf8\x6b\x69\x20\x74\xf8\xc7\xf2\x99\x05\x4d\x80\x23\x70\xb1\x49\xb9\xab\x68\x70\x1a\x88\x5c\xd4\x4b\xa4\x57\x2c\xb6\x96\xdd\x21\x82\x1d\x62\x42\xac\x64\xdd\x81\x64\xcc\x77\x50\x4d\x62\x23\xb3\x97\x9d\x10\x77\xcc\xc3\x66\xc5\xe1\xa9\x5e\xf8\xfc\x18\x23\x97\x29\xea\x79\x11\xd9\x16\x32\x4d\xe2\x00\xa3\xea\xec\xae\x87\x92\x3f\x94\xfa\xf1\x6a\xec\x3b\xef\xea\xa2\x1c\xb6\x2d\x16\xd1\x39\xa7\x53\x93\x55\x40\x0d\xca\xc4\x46\xf5\x09\x4b\x3c\xca\x45\x94\x49\xe4\x4b\x2c\x8b\xbb\x57\x3d\xb2\x69\x9d\x33\xa6\x4c\x9f\xca\x2d\xbe\x3f\xf9\xb6\xe8\xbb\x17\x78\x15\x42\xeb\x24\x7e\x27\xed\x4f\xc7\x27\x88\xda\x90\xaf\x61\x30\x35\x46\xe0\x53\x50\xee\xfb\x25\x3b\xe9\xbf\x14\xb5\x00\x41\x1d\x52\xae\xc8\x22\xa1\xcf\x38\xbb\x26\x35\x16\x12\x18\x28\x29\x63\xeb\x3c\x36\x18\xca\x2a\x44\x71\x62\xf5\xb5\xc0\xb5\x8a\x59\xdc\x3b\x54\x7d\xb1\xaf\x4c\x4a\xfe\x50\x5a\xaf\x53\x07\xc7\x70\x14\x63\x68\x43\x6e\x7e\x6c\xbf\x46\x1c\xbf\xc6\xe7\xd4\x00\x67\xe6\xf9\x0c\x8a\x19\x4d\x3d\x0a\x80\x58\x36\x75\x5d\xa1\x3e\x79\xed\x00\xdd\x99\xdd\x71\x65\x18\x28\x8d\x4c\x06\xf9\xf6\x19\xb3\x67\xca\xc9\xa9\xb1\x7f\x8e\x56\xc9\x57\x90\x45\x9b\xd1\x64\xa1\xf1\x3c\xe0\xbe\x50\x9b\x58\x02\xec\x98\x1b\x37\x45\xa5\x86\x5e\x2a\xf4\x02\xee\xb5\xa0\x2c\x29\x87\x8d\x6e\x9b\x0b\x15\xd8\x85\x58\xd1\xbb\x2d\x31\x24\x12\xf1\x19\x19\x07\x8b\x38\xd0\xba\x8b\x43\x31\xe4\x45\x9a\xdf\xad\x9a\x27\xdb\xef\xad\x54\xa1\x89\xe3\xce\x16\x7e\xae\x23\x15\x93\x78\xf6\x32\x27\x48\x16\x25\x75\x4a\xf9\x2c\x3c\xf8\xc9\x9d\xea\xa7\xe1\x9e\x0a\xbf\x3a\xea\x32\x2f\x98\x9e\x7c\x4e\xbe\xe3\x11\x79\xa4\x33\xbf\xde\x7e\x49\xf8\x9f\xd6\xad\xcb\x17\x82\xff\xd1\x5a\x45\x6e\x8d\x18\xf7\xfd\xdb\xcf\x43\x67\x0c\x53\x66\xb3\xab\xef\x4c\x7e\x24\xbe\x7d\xe2\x78\xc3\xab\xdf\x4d\x61\xa2\xad\x88\xcb\xf8\xc9\x56\x0d\x9a\x01\x55\x81\xf8\x7d\x1a\x73\x67\xb2\x0a\x77\xa8\x58\x27\xae\x1d\x20\xae\xfc\xad\x94\x32\xa8\xfe\x91\xbb\x6d\x2c\x80\xa3\xf8\x96\x25\x32\x4d\xf6\xfc\xb8\xe4\x77\x5a\x2f\x9c\xf7\x25\x6a\x6d\x3c\x90\x80\xad\x0b\x0d\x97\x7c\x21\x58\x7b\xa7\x2e\x83\x80\x2c\xe2\x08\xa9\xfe\x42\x70\xae\x01\x20\xcb\xbe\xa6\xe9\x67\x7c\xad\xbf\xa6\xc8\x47\x1d\xca\x24\x94\xbb\x54\x57\xc5\x28\x6d\x62\x31\x1a\x1b\x2d\xbd\x45\xba\xda\x67\xcd\xe6\x2b\xa7\xd5\x2d\x51\x4f\xe7\x58\x84\xf2\x1e\xd9\xb8\x6a\xbe\x26\x9a\x6d\x73\xea\x38\xaf\x47\x8d\x53\xaa\xb4\xb3\xb0\x87\x59\x4d\x66\xb7\x75\x77\xb4\x02\x58\xa0\x13\x96\xfd\x11\xfd\x2a\x98\x78\x5e\x7d\x71\xa1\xe3\xc1\x2f\xfc\x87\x5a\x74\xf2\x10\x66\xb8\x44\x59\xac\xf2\x77\xcb\x1a\xb0\x9b\xe4\x1f\x6d\xea\xc3\x97\xc9\x9c\x5a\x0a\xeb\x98\x5f\x68\x67\x8d\x23\x46\x24\xe8\xea\x9d\xc1\xba\x92\x45\xe4\x84\x29\x9e\xcf\xae\xa1\x80\x0c\x1e\x1e\xbe\x7c\x21\xf8\xdb\x4e\x95\x23\x3c\xc4\x98\x98\xfe\xe2\xad\x4a\x50\x01\x6a\x51\x67\x3f\xb4\x52\x92\x91\xb8\x78\x2f\xbf\xd3\x5b\xee\xd4\x41\xe4\x40\xf6\x27\xc2\xf7\x6f\x06\x2a\x05\xa8\x56\xf4\x6d\x24\x0c\xb2\x8d\xff\xa3\x5c\xf0\x1d\x17\x8a\xbd\xff\x7c\x8f\x5a\xb7\x94\x6c\x3f\xdf\xc4\xa8\x1a\xc9\xc9\x57\xde\xd5\x0f\x10\xf7\xb2\x93\xf3\xb9\x67\xfb\x6b\xa0\x73\x12\xf6\x73\xf2\x83\xac\xda\x0d\x34\xcf\x2a\x48\x40\xe6\xbe\x7b\x72\xa0\x0c\xcd\x40\x16\x64\x8f\x3e\x98\x66\x8c\x36\x93\xbc\x95\xcc\xd7\x8f\xa8\x0f\x59\xec\x49\xc4\x98\x01\x83\xe3\xca\xb0\xe8\xe3\xe8\x00\xcc\xbf\xef\x8a\x28\x8d\xb9\x69\x12\xc6\x43\xcf\x01\x23\x3e\x86\x1c\xb7\x4e\xa5\xd7\x53\x66\xef\xa8\x84\xc1\x5b\xa2\x28\xba\xf4\x9c\x38\xd2\xb1\xad\x1d\x67\xc0\x57\x52\xb0\x5c\x0f\xbb\x5e\x04\xd0\xfb\x8f\xd5\x90\xfe\x46\x4b\xe1\xa1\xbd\x78\xe5\x55\xa9\xaf\x4c\x4c\x64\x29\xcf\xc3\x3f\xee\xfa\xa8\x96\xa0\x59\x4d\x00\x0f\xf5\xaf\x32\x3c\xa7\x52\xdb\xc4\x22\xb1\xed\x9e\x6b\xa0\xa4\xf9\xa6\x81\xb0\x99\xac\xe7\x0b\xc1\xe1\x27\x46\x26\xd3\x80\xa6\x69\xfd\x5f\x2d\xda\xc1\xa7\xd8\x63\x3d\x62\xe4\x82\x97\x6a\x44\x29\x46\x6a\xc4\x41\xb2\x69\x0a\xae\xac\x68\x88\x7d\xea\x7b\x15\xb1\xdd\x89\x15\x41\xb3\xdf\xdd\x3c\x18\x8c\x90\x65\x2b\x12\x6c\x3f\x38\x2e\xfe\x54\x79\x31\xd3\xe0\x40\xec\xd4\x20\x61\x6e\xff\x09\xda\xdd\x0b\x73\x11\x65\x17\xc0\x2a\xe4\x06\xec\x8d\xec\x97\x48\x8d\xcb\x4d\x1e\x66\xd2\x52\xbc\x23\x2c\x5d\xb2\x4b\xc6\xc4\x23\x19\x87\xa4\xdd\x0c\x7f\xb1\x49\x54\x36\xf3\xb0\x57\xc1\x6e\x5c\x6d\x1a\x6f\x79\xe2\x6e\x5a\x7e\x2d\x5a\x5b\xdf\xdc\x7a\x65\xea\x6e\x9a\x42\x9d\x99\x47\x84\x09\x27\xa4\xf0\xa5\x34\x0b\xec\x33\x06\x1e\xd4\x70\x46\x7e\xb1\x28\x6b\xe8\xe0\xeb\xbb\xd5\x25\xee\xec\x98\x3a\x23\xdf\xd9\xc1\xf9\xec\xb9\xe1\xef\x89\xba\xbf\x82\x2d\x9e\xac\x73\x83\x0f\x24\x4f\x52\x15\xb9\x75\xd2\xe3\x56\x23\x4c\x61\xf0\x05\xcd\x81\x85\x78\x2e\xb6\x4b\xd1\xea\xe1\x92\x87\x81\x9d\x87\xeb\x62\x8f\xe3\x0d\x16\xbc\xab\x12\xe4\xd4\xce\x29\x1d\x1d\x9c\x06\xb6\xd8\x86\xfe\xa7\x45\xcc\x8b\xfd\x19\x67\xe2\x81\x2f\xc3\xa5\xd4\xe1\xbc\x19\xa4\xf3\x66\xd8\x52\x42\x70\x5c\x76\x5f\xa9\x15\x08\xbe\x79\x15\x0c\x11\x67\xd6\x03\x4a\xe8\xc6\x22\x65\x62\x93\x34\xa9\x38\x6b\x3f\x70\xfd\xff\x8b\x3f\x96\x34\xd0\x48\x76\x14\x33\xef\x02\xb6\x49\x15\xd2\x40\xb6\x08\xb7\xc5\x52\x0b\xd0\x7b\x11\x11\x20\xf7\xc9\x8d\x22\x49\xdc\x2e\xc0\xb0\x99\xe7\x1e\x91\x59\x1c\x5b\x36\x82\x1a\xeb\xd3\x1e\x01\x0b\x14\xee\x97\x29\x00\x27\xb7\xbf\xa7\x71\x4b\x6c\x8c\xa5\x72\xdf\xe3\xa7\x62\x1c\xac\x49\x3c\xe8\x0d\x96\x59\xbd\xb2\x7f\xf4\x93\x44\xd0\x99\xb5\x2c\x56\xd8\xc7\xbc\x4b\x52\xf8\xcc\x2b\x00\x6e\xd5\xad\x50\xdf\xe6\xd6\xa5\xc1\x2d\x87\xe2\xf8\x6f\xda\x18\xfa\x3f\xbd\x09\x56\xfd\xfc\x4b\x7d\xab\x01\x66\x08\x48\xd8\x89\xe7\x0b\xc1\x0f\x56\x6b\xb8\x01\x29\x31\x0d\xa0\x62\x53\x35\x59\xc2\x2a\xae\x0b\x5c\x7d\xf0\xc2\x1a\x38\x82\x61\xc8\xe4\x0e\x67\xc1\xdd\xc7\x34\x34\x2d\x43\x4e\x35\x6a\x60\x96\x1c\x88\x23\xbb\x89\x58\xc4\x15\xbc\x72\xe7\x70\x50\x0d\x34\xb0\x4d\xeb\x72\xf4\xf0\xdb\x6e\xcd\xe0\x97\x5c\x10\xec\x68\x3c\xf9\xa0\x2a\x34\xb8\xe7\x82\x45\x9b\x62\xe8\xb3\x76\xba\xfa\xd9\x4d\xbe\x1f\x77\x62\xf0\xc7\x9d\xba\x54\x39\xad\xd7\xa3\x4c\xf8\x4a\x0e\xc8\x7e\xe2\x92\x2f\x8a\x9d\x5e\x50\x70\x87\xa5\x57\xbe\x10\x9c\x59\xac\xcb\xff\x38\x1e\x23\x45\xdf\xa3\x2c\xaa\x4c\xae\xd7\xb8\xa4\x35\xea\x10\x13\x81\x59\x44\x5f\xf6\x1f\x98\x5a\x76\x4c\xe3\x73\x84\xe3\xc9\x22\x13\xb9\xdc\xb3\x38\xf3\xa9\x37\x07\x02\x25\x2b\xc4\x61\xdd\xb7\xac\xd5\x08\x88\x13\x4c\x9b\x9a\x42\xeb\x30\x87\x86\x6b\x40\x9f\x0a\x65\x5e\x98\x22\xcd\xaa\x64\x80\xcd\x99\xab\xad\xb3\x39\xf2\x28\xea\x95\x32\xcf\x9f\x06\x53\xb8\x1a\xb7\xda\xf1\x84\xd4\xef\xac\xb5\x9a\xf9\x9b\xdd\x23\x65\xae\x98\xa4\x69\xdc\xec\xd6\x12\xe2\xe1\xc6\x93\xbd\x00\x2e\xe7\x47\xfa\xe1\x63\xdf\xbe\xc0\x04\x02\x99\x9e\x2b\x29\x40\xff\x7e\x7f\x1c\x93\x50\x7a\xa0\x92\xdd\xfc\x34\x10\x5b\x90\x12\x1f\x42\xcd\x62\xdf\xfc\x11\x60\x5c\xc7\x6f\x8b\x49\xc4\xd1\x62\xb3\xa0\xb7\x5a\x8d\xab\xcd\x84\x4f\x63\xe7\x4b\x6a\x4c\xe2\xc1\x5b\xf5\xd3\xd7\x44\x8e\x58\xef\x23\xe6\x09\x01\x88\x31\xc7\x55\xb6\xf1\xf5\x9d\x5a\x30\x50\xa3\x60\x0b\x79\xa9\x66\xbc\xb4\x31\xde\x1b\x95\x7c\xf0\x61\x9d\xc6\x6b\x79\x41\x1d\x6d\x1e\xd2\x96\x8c\x9d\x33\x62\xd1\x8a\x7b\x7b\xa1\x8f\x3b\x57\xc5\x33\x3e\xd5\x9e\xe2\x3c\x5b\x0a\xc7\x1d\xfc\xfd\xa3\xda\x71\x47\x3d\x36\x8d\x08\x98\xb9\x8f\xbd\x9a\x7c\x97\xd8\x91\x17\xe1\x93\x9a\x40\x52\x89\x34\xc4\x4a\x39\xf8\x8f\xa5\x22\x72\x76\xd3\x62\x78\xf1\xb1\x1c\x8e\x84\x25\x51\xd8\xf7\x5d\xab\x41\x13\x91\xe3\xd2\x1a\x1f\x09\xfd\x66\x52\xab\x56\x83\x7a\x84\xc9\x4a\xdc\xf8\xf7\x43\xea\x9b\xcd\x6a\x9f\xcd\x09\x39\x77\xac\xd5\xb9\xea\x84\x3b\xd4\x36\x70\xe4\xfb\xee\x1d\x02\x5d\x33\x34\xdd\xef\x02\xad\x17\xa5\x66\x85\xd3\xdb\x72\xdd\x4b\xb4\x47\x85\x8a\xc4\xc1\xf1\x22\x39\x3b\x68\xb5\xa8\x6a\xb9\xd1\xb3\x04\x31\xdd\x31\x0a\x70\x1a\x69\x64\x50\x99\xa1\x6f\x82\x31\x3e\x2a\x0b\x58\xc3\x4a\x6d\x32\x50\xa2\x4c\xf4\xf7\xc1\xc8\xeb\xa4\x28\x3d\x6e\x60\xc7\xc7\xf9\x42\xf0\x4b\x6d\x27\xce\x70\xd9\xb7\xa5\x4d\x6d\x5f\xe6\xbf\x9e\xd2\x26\x19\x0c\xd9\x65\xe4\x45\xf0\x85\xcc\xbd\xe3\x52\x66\x70\x8e\x4b\x62\xde\xcd\xa3\xda\xac\xd2\x35\x2b\x94\xda\xb2\xa0\x1f\xf9\x58\x22\x9a\xf1\x25\xc1\x42\x40\x91\x8b\x06\xbd\x3c\x4f\x7e\xf9\x98\xd6\x81\x8b\x9e\x54\x8e\x08\xff\x7d\xe3\x20\x08\x61\x66\xc2\x84\x65\xfd\xcb\x9a\xa6\x6d\xd8\x67\x73\x30\xcb\xf1\xc3\x1a\xfe\xbf\x22\x1c\x6f\x83\xc9\xda\x29\x15\x3e\x9b\x12\x0e\xe5\x5e\x34\x56\xab\xb0\x6a\xe8\x02\x8c\xa9\x6b\xa6\x44\x0a\xf5\x98\x9b\x11\x1a\x7f\x3a\x28\x85\x7e\x7c\xd6\x23\x02\xc3\x17\x7b\xaf\x04\xe7\x82\x59\xd8\xac\x40\x66\xdb\xfb\xc3\x81\xdf\x08\xc3\xa6\x94\x4e\xce\xae\xdb\xa3\x09\x95\x93\x1a\xef\xfd\x33\x97\x8d\xd4\x8d\x7f\x6a\x45\xd7\xa3\x52\x4b\xac\x2f\x77\xdf\x12\xa9\x84\x12\xc5\x0e\xe3\xc7\x8e\xbe\x06\x88\xf5\xf1\x8d\xbb\xe7\x24\x7f\xcd\x44\x19\x07\x87\x4c\xd1\x06\x4e\x55\x52\x97\xc3\x92\x75\x9e\xca\x80\x25\xca\x4a\x98\x44\x66\x91\xef\xcf\x91\x62\xc4\x88\x31\xcc\x01\x33\xb1\xf6\xdf\x16\xfd\x6a\xdb\xd1\xe7\x5d\xf4\xac\xa6\x37\x49\x04\xff\x4a\xa2\xa2\x1e\xf3\xe2\x74\x25\x98\xbd\x9f\x3f\x96\xfc\xfb\xd8\xf2\x81\x9f\x4d\xe6\x9d\x76\x1d\x74\xdb\x8b\xaa\x09\x67\x73\x63\xf9\xf6\xa4\xb2\x5a\x0d\x7b\x8c\xca\xf5\x4d\xda\xee\x60\x49\x1b\x98\x0a\xfa\xa6\xcd\x8b\xb7\xe0\xb0\xf0\x17\xc9\x2f\xa5\xcc\xab\xf0\xf5\x35\x68\x53\x72\x23\x5f\x4c\x44\xfc\xba\x54\xf5\xeb\xdc\xa4\x63\x39\x08\x76\x24\x68\x66\xcb\x80\x2b\xf4\x20\x56\x8e\x58\xce\xc1\x5f\x7b\x93\xc5\x09\xc4\xd9\x03\xdf\xe7\xbb\xc7\x8a\x16\x73\x45\xd8\x3a\xc9\xaa\x6a\xf2\x1b\xa0\x95\xa6\x48\x28\x8a\x5c\xf6\x56\x8a\xc3\x68\x09\xe9\x9e\xe0\x4b\x06\x80\x8d\x08\x63\xe4\xf0\xb1\xde\xf4\x76\xb2\x7e\xeb\xf6\x19\xea\xc1\x09\xf9\xca\xdc\xc0\x03\x03\xe3\x6f\x4c\x85\x2e\xa4\x51\x9e\x97\x7c\xf1\x53\x67\xcf\xea\x90\x49\x67\xf9\xbc\xb8\x76\x9c\xde\x3e\x33\xfc\x25\xef\x4d\x4f\xbe\x5a\x07\x37\xa3\xfa\x70\xc5\xb2\x60\xd5\x33\xf1\xbe\xa9\x88\xf9\x79\xfb\xd6\xf3\xd0\xef\x51\x19\xdc\xfd\x7e\x8d\xfc\x20\x3d\x36\x71\x84\xf9\x7e\xee\x23\xad\xc9\x65\x73\x33\x7a\xdf\x7a\x81\xb7\xe4\x12\xc9\x5d\x2a\x14\x56\x2c\x58\xb5\x60\xc9\xca\x68\x26\x3d\x7d\xbf\xa4\xfb\xc8\x80\x1c\x7c\x6b\x5b\x14\x60\xc3\xc3\xc3\x1b\xb3\x65\x2b\x45\x66\x9a\xe7\xbb\x1c\x0a\xf3\x43\xf5\x1d\x39\xfe\x26\x18\x7a\xa7\xec\x2a\xb1\x30\xa1\xe8\xcb\x3e\xde\x2e\x7e\x0a\x77\x29\x10\x40\xd5\x23\xc3\x12\xeb\x85\x0a\x8e\x2c\x8a\xe7\x3d\x20\xc7\xab\xc4\x35\x89\x49\x2c\x6e\x76\x3f\xec\xa5\xe4\xcb\x5c\xef\x63\x5f\x5e\xae\xec\xef\x8f\x68\x13\x7e\x47\x3a\xf3\x04\x2b\x0f\x27\xc3\x48\x59\xf0\xda\xe3\xbc\x74\x60\x8f\x96\x54\xb1\xeb\xdb\xd2\x70\xb7\x7d\xad\xce\x5b\x29\x51\x56\xc3\x96\xdc\x7c\xdb\x8b\x54\x9e\xea\x9a\xd6\x3e\x9d\xb7\xcb\x87\xe7\x82\xba\xb9\xc2\xe2\x97\xd5\x97\xb9\xbd\x4d\xe5\x86\x1a\x13\xc3\x92\x63\xfb\xf4\x79\x77\x5c\x8f\xac\xd9\x31\x30\xfa\x21\xb1\x8a\xc5\xeb\xad\xd0\x82\x8b\x53\xca\x7c\x91\x4b\x06\x2d\x4d\xbb\x14\xd4\x2b\xd4\x89\xb3\xda\xd8\xa7\x13\xf2\x59\x0c\xd5\x90\x13\x76\x9a\x85\x3e\xe3\x9b\xcb\x93\x99\xa3\x59\xa1\xc2\xd5\x28\xf3\xd3\x89\x3a\x26\xcf\x77\x62\x81\xbe\xec\xf3\x4c\x4f\xf9\xae\x8f\x6c\xae\x62\xc7\x63\xee\x8f\xaf\x4d\xf0\x06\x96\xcf\x9b\xac\xa6\xdb\xe1\x4f\xef\xaf\x89\x02\x14\xb9\x84\x80\x28\x77\xf3\x4a\xc1\x98\xf0\x3b\x1e\xb5\xbc\x7f\x6c\x55\xdf\x83\xb3\x5b\x8b\x2c\x92\x2b\x1b\xfd\x66\x0a\xaa\x5f\x47\xeb\xb9\x04\x90\x3e\x20\x39\x31\x4e\x15\xcd\x8d\x88\xb9\x6c\x0c\xef\x8a\x4f\x71\x83\x0a\x58\xfc\x74\x09\x1d\x67\xb8\x8e\x62\xed\x70\xe3\xc8\x2e\xfe\x5c\x6c\xec\xe4\xa7\x4e\x4f\x6d\x23\xc7\x1e\x1b\x91\x3e\x8c\xb2\xf4\xef\xb7\x13\x78\x56\x20\xb3\xea\xf3\xff\xfa\x6b\x01\x56\xca\xdf\xc0\x17\xf2\x36\x49\x0d\x9c\xfa\x32\x93\x1f\xd6\x6a\x4d\x8e\x6b\x91\xd9\x23\xd7\x76\x24\x05\x9e\x74\xe2\xa3\x94\xf9\x46\x2f\x90\xf9\xc4\x48\xc8\x8a\x0c\x7c\x70\x58\x02\x39\xc0\x4a\x58\x48\x1f\x18\xf4\x18\xa0\x2b\x7b\x58\x54\x36\x8f\xdc\xa9\x3b\x39\x3a\xd8\x8e\x94\x1a\x5f\x15\x97\xdd\x77\x2b\x52\xb3\xa4\x13\x8c\xd4\xaa\x2c\xec\xa9\x82\xaf\x1f\x11\x25\xc4\xad\xd4\xc1\x3c\x66\x9c\x6a\x85\x3d\xaa\x18\x65\xcb\xee\xe5\xb1\xb6\xc1\xd1\xf3\xed\x54\x8c\xf4\xf1\xf7\x0f\x00\xf7\x6d\x7a\xf8\x7b\xd6\x2f\xd5\x0c\xae\x68\x44\x64\xea\xcb\xac\x79\x54\x55\x97\xdc\x92\x8a\xdf\x14\xe3\x97\xdd\x1a\x53\xd1\x43\xa5\x12\x66\x91\x65\xd6\x3b\xdd\x60\xb9\x2a\xa6\x31\x6e\x82\x6e\x9b\xb9\x47\x80\x04\xea\x25\xc2\x9b\x5f\xee\x12\x92\x1d\xfe\xba\xe6\x8b\x6d\x31\xec\x20\x9b\xab\xbf\xf1\x54\x74\xf7\x19\x0d\x18\xef\x0b\xe3\xc7\xe8\x1d\x55\x77\xe9\x35\x6b\x8d\x38\x11\x72\xcf\x38\xf7\x88\x78\xc2\x53\x67\x77\x75\x88\xaf\xf1\x4f\x6a\x2c\x47\x3d\x94\x9a\xea\xf5\xbe\x2c\x41\xd6\x9c\xfa\x26\xc4\x0e\x7f\x3d\x17\x0a\xe7\x38\x1e\x71\xa4\xba\xfc\xb2\x05\x7d\xd9\x21\x5d\x22\xa2\xaf\x28\xdc\xba\x80\x93\x46\xb9\x86\xaa\x00\x70\xb6\x43\xae\xe1\x83\x29\x12\xb9\xcf\x6d\x75\x04\x78\x21\xfb\xc1\x22\x05\xf1\xf2\x9d\xf0\xbe\xe8\xd7\x63\xf0\xea\x11\xe0\xbd\x8b\x7f\x2f\x19\xe5\x39\xf7\x00\x44\x03\xb9\x9e\xf0\x9d\xe0\x5f\xf8\xbe\xd3\xc9\x69\xaf\x4d\xea\x55\xe2\xe4\xdd\x0a\xaa\xa0\x2a\x94\x7f\x39\x77\x7f\x32\x9c\xc5\x01\x29\x3b\xc5\x1a\x2e\x8b\x99\x54\xf5\xf3\xee\xd1\x81\x80\x87\xc6\xc2\xf4\xb4\x7b\xaf\x86\xff\xc5\x8d\x1e\x38\x61\x30\xfe\x47\x33\xe4\x26\x2c\x6c\x41\x98\x4b\x8a\xb6\x84\x08\x1b\x57\x69\x3f\x83\x23\x17\x49\x89\x44\x43\xcc\x77\xda\x94\x2c\x9d\xcf\xdf\xf4\x0f\xaf\xd5\xd7\x26\xa6\xed\x5b\x11\x86\x33\x98\xf2\x64\x32\x61\xf4\x50\x3f\x5a\x73\x5e\xb2\x06\x38\xa1\xf2\xb5\x7b\x9e\x4b\x6b\x72\x89\xba\xeb\x54\xee\xc1\xc8\xac\xe4\x0b\xc1\x3f\x6b\x7a\xec\x12\x9f\x20\x6e\xfb\x99\x1c\x60\x0e\xd8\x18\x8b\x12\x7f\xee\xb3\x5a\x80\xad\xa0\x5a\x51\xe0\xfa\xf5\x01\xc2\x15\x67\x35\xdc\xa1\x80\x8c\xd6\xb1\xe9\x49\x08\xd7\xf4\x33\xe9\x29\x0a\xae\xa0\x9a\x62\x7a\xff\xac\xfb\xa3\x7a\xf6\xb1\xc4\xbb\xd4\x7f\xdb\xc2\x6d\xc3\x41\xdb\x25\x42\xa3\xac\xd5\x3f\xda\x3b\xe2\x42\xdd\x0f\xcf\xef\xaf\x55\xb4\x4b\x5b\xc3\x8e\x55\x53\x1e\x64\xc6\x2b\x0f\x26\x95\xb2\xcb\x15\xaf\xe4\x73\xc0\xeb\xb7\xd6\xc5\x0e\x99\x9c\xa8\x10\xbe\xcc\x3b\x9e\x52\x88\xba\x32\xb5\xad\xda\x05\x2c\x5f\x26\xec\xd1\x84\x7e\x62\xf3\x31\x79\x7a\x37\x8c\x92\x64\x58\x8c\x12\xf6\x3f\xb9\x49\xb2\x0a\xab\x87\xbf\x8d\xd7\x4f\x9f\x9f\xf3\x61\xf9\xb2\xc3\xcf\x3a\xe5\x0d\x60\x9d\xbe\xc1\x13\x46\xff\xf9\x42\xf0\xd8\x79\x4d\xa4\x41\x58\x81\x28\x19\xe8\xe0\xdb\x53\x34\xef\x67\xc2\xb8\xd3\x89\x62\xf5\xdc\x34\x78\x10\x38\x0e\x54\x8a\xbd\xae\x58\x12\x87\x08\x1b\x40\x6f\xb3\x87\x0e\x88\x08\x69\x11\x97\xaf\x2e\xf9\xfd\xcd\x75\xef\x15\x9f\xdf\xe1\x80\x78\x1e\x6b\xff\xdb\x12\x41\xaa\x81\x2b\x44\xce\x3a\xdf\x9d\x38\x28\x51\x3e\x35\xc3\xb6\xe0\xd7\x93\xda\x94\x11\x40\x7a\x05\xb1\xcb\xbb\x5c\xbe\xa1\x3a\x16\xc7\xfd\xd4\xb5\x1a\xcd\xb1\x81\x99\x4c\xc1\xc1\x6a\x41\x43\xc8\xcf\xa3\x4e\x93\xa4\x57\x27\x2b\x2f\xf9\x88\x96\xe7\x6c\x2e\xab\x45\x90\xe3\x02\xf8\x5e\x6e\xd6\x33\xf1\x20\xba\xce\xbf\xbd\xea\x8a\xbe\xbc\xff\x6a\xad\xeb\x60\x9c\xa8\x9a\x80\xf4\xe6\x8a\x6b\x3b\x93\xd5\x8f\xcf\x30\xf2\x4d\x16\xb6\x2e\x9e\xcf\x1c\x9c\x74\x70\x8e\x40\xd2\x7f\xd6\x2c\x1d\x39\x93\x43\x74\x1a\x99\xef\x1a\x3a\xed\xc9\x89\x90\xb7\x5f\x12\x98\x90\xfc\x82\xba\x4b\xec\x74\x50\xce\xdd\xfb\xd0\x88\x0b\xb5\x24\x3c\x91\x2e\x9e\xa2\x6b\xc7\xf8\xd2\x3b\xa9\x7a\x5c\x0a\x6a\xe3\x06\x96\xef\xf4\xb3\x2d\x03\xa3\x8a\xc9\x95\x29\x37\xf7\x91\x01\x2a\x13\xdb\x94\x4a\xef\xb2\xcc\x7b\xe7\x93\x9b\x30\x5a\xf4\xcd\x0a\xd1\x1e\xd3\x68\x27\xe6\xfd\x21\x06\x95\x63\xc6\xb6\xab\x61\xb9\x90\xdf\x12\x88\xa2\x43\x56\xff\xf8\x97\xad\xe3\xc4\x25\x4d\x02\xb3\x4c\x7b\x6b\x28\xa9\x8f\x1a\x6c\xe9\x4d\x01\xf2\x1a\xc4\x8a\xa2\xf8\xd8\x73\xa9\xed\x65\x99\xa1\x58\x52\xef\x8f\x0b\xaf\xd4\x4f\x9b\xe3\x09\xf1\x51\x8e\x5c\x39\xbf\xad\x15\x08\x5c\x11\xa0\x3f\x51\xe8\x33\x76\x3e\x14\x7f\x3f\x87\x54\x55\x1c\xf8\x88\x46\xb1\x77\xeb\x84\x11\x4f\xbe\xe8\x37\x96\xc5\x85\xaa\x50\x01\xbe\xa6\x05\x98\x0b\xda\x89\x55\xc7\xd9\x6d\x22\xb1\x37\xb9\xab\x46\xf0\xcd\x86\xb8\x2c\x40\x23\xf1\x94\x1e\x92\x2a\x16\x86\x09\xf5\xf3\x1a\x23\x21\x8c\xe5\x76\xe4\xbd\x6e\xbc\xba\x0b\x48\x32\x32\x8a\x2c\x97\x08\x03\xc1\xec\xda\xad\x52\xf1\x57\x72\x60\x38\xc0\xe7\xa1\x41\x51\x0b\xe2\x12\x8b\x70\xd5\xa9\x3e\xe3\xd1\x57\xdb\x40\x83\x2b\x54\x69\x40\xa2\xfd\xee\x43\x6a\x80\x6c\x29\x4e\x46\xf0\x2f\x77\x68\xdc\x17\x21\x63\x21\xdb\x8f\x9f\xbc\xac\x1b\x7c\xd4\x04\x84\x4a\xe4\x9f\x13\x9a\x74\x2a\x32\x4d\xca\x2c\x25\x02\x6a\x7c\xec\x04\x80\x5a\x50\xbf\x18\x29\x08\xf4\x19\x5f\xd8\x2f\x4a\xd9\x4f\x3a\xb2\x1f\x58\x6d\xc3\x35\x98\x2b\x8c\x22\x5b\x25\x8e\xb7\x07\xf3\xff\x9f\xd9\xc7\x94\x06\x12\xb0\xcd\x09\x16\x3e\xa1\x11\x3e\xfc\x9a\x88\x35\xbc\xe5\xdb\xb2\x5d\xa5\x36\xe9\x73\x13\xb3\x70\xd6\x8c\x04\x08\xee\x66\xda\xa4\x78\xd2\x44\x80\x9c\x14\x4a\x8b\x7a\xdd\xf3\x89\x79\x29\xc2\xb8\x74\x74\xe0\x17\x7c\xc6\x2b\x1a\xd4\x0f\x7b\x98\x57\x6b\x62\xa2\x1e\xf4\xbb\x13\xec\xd1\xea\xd8\x24\x25\x3e\x24\xce\x6c\x3d\xa9\x0b\x44\x84\xcf\x4f\x3a\xaf\x7c\x89\x25\x17\x31\x35\xcc\x17\x31\xd9\x86\x71\x59\x54\xf5\xcf\xcc\x17\x2e\xd5\xd9\x62\x4e\x15\x29\x45\xd4\x5c\x4a\x7d\x0d\xd7\x88\x5f\x93\x26\x63\xbf\x05\x1a\x0f\x5e\x4f\x3d\x2c\xb8\xc2\xe4\xf2\xd2\x9d\xc9\xd8\xee\x62\xbb\x94\x37\xb9\xaa\x89\x5b\x21\xf5\xb8\xf5\x2e\x0f\xd5\x2e\x74\xec\x45\x28\xfa\x9d\x65\x0f\x6b\xe6\x30\xb4\xa9\x09\x84\x66\x26\x6d\x4a\xfe\x15\x9f\x83\x50\xf8\x32\x2c\x12\x90\x9b\x3e\x51\x54\xa3\x2b\x2b\xb4\x56\x77\x29\x44\xc7\x1d\xda\xa6\xb2\x20\x77\x80\xd9\x10\x3e\xb7\x1b\xae\x53\xdb\x5e\x13\xdb\xb6\x6f\xa7\x85\x1f\xb2\x4b\x0e\xe9\xd2\x99\x9c\x60\x2d\xc4\x1f\x16\x0e\x8d\xcb\x4d\xdf\x6e\xcf\x17\x82\x37\x2b\xc0\x72\x13\x39\xc8\x4a\x48\x0b\x65\xbf\xf2\x1e\x68\x1c\x11\xe1\xb3\x9f\xcc\xcf\x9e\xd6\xdd\x8a\x69\xdd\xc6\x02\xec\x15\xec\xd8\x36\x08\x0a\x24\xcb\x10\xe3\x3c\x21\xaa\x25\x0e\x53\x2c\x21\x9b\xc3\xe5\x46\x8d\xd2\x2a\xdd\x5a\x18\x75\x71\x2c\x4c\x7e\xed\x01\xe0\xcf\x4f\xc5\xa5\xca\x2c\x1d\x25\xd0\xfc\xb7\x53\xbb\x4a\xf2\xcb\x50\xf8\xbf\x1a\x36\xe3\xd0\x71\x6d\x37\x88\x99\x59\x09\x6f\xbe\x1b\x21\x20\x73\x17\x1f\xd3\x55\x91\x1c\x4e\xf3\x4d\x73\x6c\x8d\x9f\x76\xeb\x33\x20\xd3\xaf\x15\xc3\x1a\x91\xc7\xf6\xaf\xd5\x41\xbd\x42\x3c\x89\x43\x3b\xd2\x99\x82\x31\x46\x63\xfd\xab\x4b\xe0\x01\xd9\xc8\xa6\xb5\x7c\x21\xf8\xd3\xfb\x1a\xa5\xb4\x83\x53\x4a\xe5\x26\x66\xc6\xa4\x41\xe1\x7f\x9c\xbf\x32\xf1\x6e\xae\x50\xde\x4c\x36\xea\x05\x13\x92\xbd\x6c\x48\x02\x75\x49\x7d\x21\x14\xbe\xe3\xdd\x08\x9d\xed\x9a\x15\x6c\xf9\xf2\xdd\xfc\x48\xbb\xaa\xae\x5f\xab\x11\x09\x50\xca\xec\xbb\x2e\x39\x0e\x2d\x86\xcd\x03\x3f\xe8\x8a\xb2\xe3\xa8\xae\xbc\x5c\xe3\xb7\x7f\xe0\xa9\x88\xe1\xeb\x62\x26\x98\x07\x39\xef\xb0\xe4\x41\x0b\x47\x98\xe0\xdf\xde\xd6\x68\x47\xb3\x67\x76\xc6\x42\x64\x73\x34\xca\x2e\xb1\x30\x93\x83\xa1\x9b\x56\xf5\x97\x85\xb7\x50\x4f\xf8\x49\x87\xbe\x83\xab\xa1\x72\xfc\xa2\xdd\xc7\xe2\x44\x59\x46\x24\x5f\x08\xee\x7c\x5f\x79\x4a\xf9\x25\x38\x2c\x1f\xa5\xcf\x37\x88\x15\x21\xee\xaf\x07\x68\xc3\x3a\x66\xdd\xc2\xcf\x6f\xd3\x06\x69\x8a\x62\x23\xa1\x36\x5b\xe8\x33\x96\x9c\x8a\x63\x7c\x37\x64\x0f\x66\x9b\x67\x93\xa1\x87\xf9\xae\x4b\x90\x13\x06\x4d\x04\x94\x19\xff\xf1\x2d\xe0\xcf\x85\x6c\x93\x3a\x52\x0b\x6d\x5a\xd7\x18\xbd\x04\x29\x11\x2f\xef\x89\x7f\x2c\x73\xc5\xd7\x77\x4a\x53\x5b\xda\x6b\xc3\x0c\xe3\x5e\xa7\x44\x56\x6c\xbe\x94\xca\x0c\x5c\x94\x8c\xc1\x33\xe4\x4c\xf3\xd4\x13\xc9\x93\x5b\x46\xa2\xea\x2d\x04\x1f\x9c\x07\x98\x2f\x54\x0f\x5b\xfe\x58\x41\xed\xaf\xd0\x43\x00\x33\x80\xbd\xce\xbc\xd5\x9a\x16\x0f\x01\x43\xc0\xec\x7f\x68\x9b\x76\x1b\xf1\x1d\x98\xe0\x9f\x7d\x7e\x6f\x4a\x2c\xb7\x82\x22\xb1\x99\xcc\x6f\xf6\x6a\x1b\x12\xa7\x12\xa6\xef\x48\xfa\xfc\xed\xb3\xc3\xc0\xd4\xab\x49\x6c\x4b\x0e\xb8\x72\xc5\x33\xa3\xb5\x3b\x8d\xea\x75\x46\xeb\x8c\x88\x35\x60\xf8\x77\xae\x02\x4e\x12\xd2\xaa\x8c\xc3\x2d\x04\x45\x2b\x7f\x2b\x75\xab\xb4\xe1\xa6\xa2\x4f\x5f\xf6\xf7\x8f\xa9\x5f\x2b\x5a\x43\x52\x2a\xf1\x77\xf8\x89\xe7\x00\xe2\x51\x2a\xc9\xe6\xc8\xd9\xe1\x70\x28\x53\x22\xae\x29\xc7\xee\xee\x91\xe1\x60\x92\xe2\xfa\xf5\xc8\x94\xb7\x2f\xb3\xed\x01\x95\xd8\xa5\x9c\x8a\x3e\x2f\xfc\xea\x59\xe0\x83\x6b\xd3\x1e\xfe\xef\xfa\x7b\xf1\xf1\xec\x45\x14\xac\x34\x86\xcc\x11\xb1\x81\xd6\x23\x27\x1f\x1e\x32\x66\x9e\xd1\xd5\xfb\x4c\xea\x33\x54\x56\x0b\x77\x73\x4a\x72\xd8\xe2\x4c\x90\x12\x84\xc6\xf4\xc3\xe3\xe1\x8b\x5f\xba\x74\xd9\x0a\xa8\x1b\x03\x22\xc8\x3b\x3b\x86\x24\xe4\xf9\x08\x6e\x84\x95\xaa\xf3\xa6\x40\x96\xdd\xc4\x2f\x97\x3a\x51\xc3\x4f\xab\x46\x97\x36\x30\x63\x32\x92\x65\xde\x56\x7e\x33\xd4\x21\xa9\x36\xf1\x9f\x5e\x53\x2d\x3b\x8a\x0c\xcf\xf7\xbc\x04\x75\x34\x4a\x1c\xcf\x2f\xbf\xbd\xf1\xcc\x3e\x35\x8c\x6a\x50\xbb\xea\x36\x51\x19\x87\x7f\x14\xcc\x7d\x42\xf4\x3d\xd2\x63\x80\x33\x60\x5f\x56\x77\x6c\x6a\xbe\x2b\xfc\xf7\x97\xb5\xc6\xd9\xb6\xb3\x33\xfc\x67\x67\x4f\x48\x55\xc6\x9e\x3a\x66\x45\x2a\x74\xa8\xcf\xec\xd3\xb8\x2f\x58\x40\xf5\xf9\x43\xfc\x6f\xcd\xbc\xc3\xf4\x4b\x25\x9b\x38\xd5\x88\xbc\x8d\x5b\x54\xbc\x70\x4d\x9f\xc9\x65\x6c\x5f\xe6\x37\xcf\xa7\xd5\xd3\x04\xa2\x79\x59\x3f\x7d\x90\x1c\x96\xc5\xb2\x42\xc8\x3a\x1a\x9f\x94\x3a\x79\xd7\x64\x18\x3b\x92\x8a\x6d\x0a\xb0\x7a\x7e\x19\x23\x35\xca\xdc\x6a\x8f\x9c\x21\x8c\xb7\xd5\x3b\xf4\xeb\xd4\x89\x22\xc3\x93\x20\x19\xe5\x41\x3c\x1c\x77\x4c\x57\xbf\xa4\xdc\xdf\x30\x3c\x59\xfc\xee\x1b\x3f\x7c\x54\x8d\xac\xca\xed\x62\x82\xf9\x89\xb9\x0a\x2a\xc7\xe7\x45\x09\xd0\xe4\x9c\xf7\x54\x6a\xe5\x8c\x99\xf0\x14\x0d\x5c\x9a\xf0\x31\x30\xa5\x77\xf4\xaf\x9e\x8e\xdf\x0d\x65\x3c\x93\xf7\x6c\x1e\x02\xe7\x27\x1c\x2f\xc9\x89\xe2\xef\x8b\x63\xb8\xde\xc7\x2e\x47\x5c\x0a\x55\x21\x63\xc6\x56\xe0\xcf\x0a\x00\xc8\x1b\x53\xa5\x85\xeb\x5f\xd8\xa3\x7f\xd5\xf6\x64\xca\xa9\x46\x7b\xc0\x42\x5f\xf6\x97\x67\x2e\xac\x84\x4f\x1d\x09\x2f\xc7\x8b\x93\x0b\xed\xae\xe9\x72\xc1\xfa\xdc\x25\x6a\x0a\x85\x2a\x8c\x3a\x54\xa7\x1c\x07\xe7\xae\x55\xb1\xc1\x63\x82\x3c\x66\x3c\x37\x40\x3d\x91\x12\x97\x6d\x5b\xf3\x28\x70\xae\x40\x42\x09\x38\xeb\xbf\x39\x04\x0c\x68\x50\xcc\x1e\x19\xdd\x3a\x02\x3c\xbe\xba\x8d\x94\xfb\x47\xf6\xdc\xab\xc9\x2f\xe3\xd7\xeb\x52\x62\x4f\x76\x32\x3d\x93\x86\x83\x5d\x44\xec\x9a\xc0\x15\xab\x96\x71\x80\x42\xfe\x86\x38\x42\xf3\x9f\xaa\xcf\xbb\xbf\xf0\x22\x74\xd4\x8e\x8c\x4c\xa7\x5e\xa4\x8b\x99\xb9\x1e\xc7\x9f\x8b\x43\x7b\xc7\xf6\x01\xe0\x0b\xae\x0f\xff\xc5\xfd\xd7\x8a\xfe\x74\x1e\xff\x9b\xd1\x97\xeb\xc8\xe9\x0e\xab\x18\xf3\x02\x30\xb8\x06\x00\x09\x6b\xb4\xe8\x4a\x69\xc5\x91\xda\x48\xcd\xa4\xcc\xc1\x0c\xc0\x17\x32\x63\x95\xb9\x65\x37\x40\x6a\xf7\x19\x3f\x7c\x52\xb9\x66\xb9\x3a\x9a\x33\x18\xf8\xc8\xd0\x04\x56\x39\x82\x64\x67\x8b\x8f\x42\x1a\xa5\x19\x51\xe4\x2f\xef\x55\x38\xaf\xb4\xc6\x5f\x66\xcc\x5a\x11\xf7\x6f\xc1\x30\xc4\x1a\xeb\xdf\x94\x2b\x60\x7e\xf5\xc3\x1f\xff\x83\xc5\xe0\x2c\x50\x26\xc6\xa3\xf5\x67\x06\x41\xdb\x6b\xf1\x50\xff\xec\x0d\x94\xed\x20\xf5\x3c\xb9\x0e\xba\x46\xa3\xbb\x55\x90\x5d\xaa\x93\x7a\xbc\x9c\x0c\x94\x21\x64\xb3\x5d\xd5\x2d\xeb\x5a\x15\xf0\xdf\x01\x02\xf6\xb9\x96\xa3\x8a\x26\x9e\xae\xd9\x33\xcb\x0c\xb0\xdd\xe3\xdd\x2c\x57\x90\xda\x24\x17\x50\x02\xaa\xd9\x97\xe9\x3d\xf7\xff\x23\xb5\xc3\x51\x14\x9a\xd4\xce\x26\xe8\x94\x87\xb8\x17\x57\xc6\x3a\x26\x7e\x62\xa1\xe4\xc9\xa7\x14\x4f\x22\xc3\x17\x90\x2f\x04\xe7\x9e\x6b\x03\x95\xa3\x74\x84\x53\x5d\xe2\x8c\x65\x52\x75\x4b\x16\xe4\x3c\xed\x18\x8b\x87\x44\x95\xa6\x8b\x1b\x42\x38\x96\x6b\xe4\x68\x2b\x5e\x13\xdb\xb8\xc8\x94\x27\x57\x66\x56\xf7\xd0\x24\x55\x91\x34\xc4\x20\x66\xe4\xa3\x9a\xa7\x33\x15\x13\xf0\xe0\xa4\x35\x14\xcc\xb7\x05\x1a\x9b\x4f\xec\xfa\xdd\x01\x91\xa8\xae\x54\xa2\x0a\x36\xbc\xa8\x59\x9b\x35\x89\xd7\x8b\x59\x58\xb3\x29\xf9\x31\xb6\x21\x79\xf6\x2b\x38\x2c\xf9\xb1\xa3\xb4\xec\xaf\x59\xa5\x29\xc0\x0a\x04\x64\xd4\x22\xd5\xe6\x0c\x8a\x8a\x11\x1a\x05\x82\xa0\x0c\x10\xf1\x2e\x76\xa2\x63\xbf\xa3\x55\x18\x5c\xcf\x63\xbe\x23\x84\x8e\xd5\x84\xf0\x6a\xa9\xfb\xb5\x54\xd8\xd3\x47\x0f\xfd\x53\x4f\x81\x9f\xe4\x97\x4a\xd4\xe6\x56\xf3\x3f\xdb\x29\x40\x3d\x0b\x9a\x94\x5a\x49\xa5\xc9\x9d\x6d\xca\x44\x24\xad\xb9\xd1\xae\x5c\x82\x78\xa3\x1e\xec\xd9\xae\x76\x49\x88\x61\x94\x2f\x04\xfd\x1e\x92\x60\x0b\xc4\x0f\x9f\xba\x69\xdf\x7a\x59\x2d\xc3\x90\xeb\x52\xc5\xda\xe9\xcb\x6c\x1e\xa9\x21\xba\xb0\x84\x09\xfe\xe3\x1e\xf1\x51\x3f\xe1\x63\xc2\x80\xb8\x7a\x5f\x76\xfd\x03\x40\x60\x81\x08\x95\xd0\x64\x15\xf4\x25\x1b\xda\x7d\x35\x30\xc3\xa4\xec\x70\x3e\x5c\xa6\x9d\x25\x0f\x18\x9f\xe6\x99\xc8\x8d\xa5\x62\xee\xdd\x1e\xa7\x88\x69\x79\x0e\x52\xfa\xc3\x5b\x9a\x89\xb1\x5f\x74\x85\xe8\x91\x7c\xd5\x23\x4e\x02\x2f\x29\x87\xb2\x1a\xf5\x5d\x51\x30\xad\x7c\x57\x39\x86\xb7\x87\xf5\x52\xe6\xdf\xba\x93\xf9\xd0\xa3\xc8\x8d\x4c\xc0\xff\xb6\x13\x28\x3e\x63\x87\xbb\xa4\xbe\xa4\x8c\x56\xab\x08\x58\x99\xfc\xe5\xdc\x18\xed\xb8\x87\x3f\x87\x4b\x20\xc4\x35\xe7\xd4\xeb\x34\xf1\x7c\xd3\xc4\xf5\xa8\xeb\xbd\x64\xb8\xee\x8f\x81\xc4\x4a\x8f\xa7\xe6\x2b\x6d\xde\x8e\xdf\xbc\x34\xb1\x16\xce\x6a\xb8\x26\x5b\xb8\xcf\x89\x31\x5a\x63\xf1\xd0\xb8\xd0\x01\x96\xb0\xc1\x87\x1c\x69\xcd\x5f\x66\x98\x73\xc3\xf9\x8c\xe3\x9d\x47\xb5\xe7\x80\x62\xc3\xb1\xec\x8c\x8d\x09\xc3\x48\x8f\xfa\xc2\xc6\xeb\xec\x00\xd9\x27\x34\x89\x23\xf6\x2d\x5b\x4a\xd0\x44\x32\xce\xa9\xe1\x35\x3e\xfe\x96\xd4\x74\xa3\xcc\xab\x84\x4d\xf1\x96\xfe\xb2\xe3\xb4\x38\x0a\xf9\x6b\x47\x95\x76\xbf\x0f\xb0\xc6\x99\xfd\xab\x92\x4f\x6d\x66\x67\x7b\xe7\xf4\x28\x88\xff\x4f\x07\x88\x75\x8c\xd6\x88\x8b\xe1\x6d\xbc\xe8\xd5\x81\x40\x56\x8c\x03\xbd\x9f\x9d\xa2\xab\x7e\x21\x3b\x5f\x8c\x1a\xb8\x6c\xdb\xdb\x40\x72\x86\xda\x36\x46\x65\x1f\x2b\x99\xf9\x51\x63\xd4\xcd\xf1\x6c\xec\x11\x93\xa6\x8d\xb0\xb5\xc4\x5d\xa4\x4c\xda\xd9\x1b\xbf\x3e\xae\x69\xfe\xd3\x62\xb1\x87\xc4\x7a\x54\xd9\x39\x8b\x74\xb6\x4a\x1d\x31\x8f\x6f\x07\x79\x2d\xba\xa6\x15\xc0\xd9\xa9\x23\xd5\x12\xde\x1d\x37\x1a\x3b\x7c\x83\xcc\x89\x39\x2b\x99\xaf\x13\xab\x82\xd6\xa1\x9a\x0a\x23\x2e\x72\x9d\xc8\x42\x5f\xee\x0b\xf7\x5f\x09\xb2\x6c\x33\x75\x79\xff\xcf\x79\xc0\xc5\x49\x0f\x73\x57\x75\xa8\x4b\xd2\x24\xae\xc9\xd3\xc9\xc5\x27\xdb\xb4\xfe\xc2\xc2\x2c\x66\x23\x5d\xbf\x4e\x35\x53\xd3\x3a\xa2\xbd\x71\xa1\x2f\xdb\x3d\xf7\x4a\xfd\x66\x73\xcb\xbd\x08\x27\xf1\xca\x7e\x28\x96\x29\xc2\x71\xf0\xe8\xe9\xe4\x94\xa3\x42\x4b\x45\x9f\x95\x65\xa9\x17\x5f\x96\xdc\x4d\x77\x40\x72\x81\x5b\x21\x35\xe2\xb9\x3e\x6f\xbb\xcf\x09\x45\x89\x35\xc8\xad\x78\x24\x0d\x6c\xc8\xfe\x66\x0d\x20\x97\x93\xb2\x83\x6c\xfe\x2d\x5f\x5e\xa6\xd9\x75\x10\x87\x84\xc5\x98\xf2\x24\x5c\xab\xdf\xcf\x92\x47\xdc\x68\xa1\x32\xfe\x51\xf5\x6d\x3a\x67\x76\xb5\xcf\xe8\xe0\x3f\x14\x98\xa2\xfb\x2c\xc6\xc7\x35\x00\x08\x2b\x82\x79\xf0\x0c\xbd\x42\x93\xb8\x0a\x1f\x26\xad\xf5\xc8\x4d\x49\xee\xa2\x03\x6a\xfa\xda\xcb\x27\x7b\xd6\x7d\x90\xdc\xc3\x1a\x02\xe8\x25\xd2\xe8\xa2\xf3\xe2\x52\x96\x24\x36\xc2\xf8\xde\x5b\xc9\x37\x22\xe4\xca\xf8\xee\x5d\x54\xe0\x5d\xa2\xf0\x2a\x33\x12\x31\xc5\x73\xcb\xc7\xa8\xa7\x65\xe1\x92\xec\x0e\x8d\xaf\x1c\x4b\xbe\xa7\x1e\x5c\x45\x9c\xad\x2c\xdf\x56\xac\xb3\xbf\x54\xee\x9c\x2b\x61\x5d\xc4\xc1\x62\xa3\x1b\x40\x59\x79\x03\xd7\x4f\xe7\xe8\x8f\xf0\xb7\x4d\xb5\x75\xf3\x43\xaf\x22\x1f\xb0\xb3\x6a\xa8\xf2\x97\x6f\x82\x52\xee\x53\xc0\x35\xdd\xad\x51\x09\x0b\xce\xf4\xe9\x22\xf1\xd4\xf1\x2a\x31\x6a\x2f\xf3\xaf\x6d\xea\x7d\x71\x14\x18\xbf\x92\x77\x9e\x1f\x0d\x98\x1c\x0c\x9b\x5e\x23\x95\xad\x3f\x22\x60\xd2\xf9\x5b\x68\xdd\xc3\x0d\x25\xd3\x13\xf4\x6e\xd7\xf6\xe4\xd8\xab\x68\x82\x9f\xff\x59\x57\x42\xe5\xb8\x27\x6a\x0e\xb6\x2a\x01\x4d\x0f\xa7\xac\xae\x72\xc5\xce\xa1\xc9\xc6\x88\x48\xfb\xa6\xd3\x17\x5d\x2e\xaf\x5d\xc4\x1e\x9b\x70\x18\x84\x6c\x17\x55\xa1\x88\x90\xbb\x7f\xa0\xac\x5e\x6d\x9b\x49\xa2\xf0\x88\x7e\xea\x47\xdb\xd4\x8c\x2b\x07\x23\x7f\xe8\x1a\xed\xa8\xd4\x5c\x5a\xa3\x36\xf6\xdc\xb4\x42\x5e\xf6\xf7\xfb\xd4\x2a\x9b\x51\x28\xc7\xf4\x86\x01\xa5\x46\xa0\x28\xca\xe3\x86\x36\x35\xf6\x18\x8d\xa5\xb3\x3e\xbe\x70\x78\x72\x2b\x14\xd9\xc5\xf4\x19\xbf\xd9\x9b\xc4\x9b\xf7\x50\x56\xbd\x00\xa0\x63\x62\x5d\x8b\xdb\xa8\x1c\x41\xdd\x5a\x34\x9f\x87\x32\xc3\x4d\xa9\xd5\x71\xeb\x06\x8d\x7c\x65\x39\xc8\xd1\x44\xda\xeb\x03\xc0\xc4\xa4\x62\x56\x30\x2b\x72\x82\x41\xf6\x0c\xe0\x1e\x9b\x36\x95\x5a\x99\xbf\x0f\x94\x9c\x6d\xda\x21\x32\xfb\xa2\x74\x9e\xae\xd1\x32\xc7\x85\xe4\x2e\x3b\x90\x90\x7f\x44\xf5\x3a\x46\xb2\x82\x0f\xb2\x6b\x93\x5b\x4e\x0c\x39\x69\xc1\xe2\xfd\x9a\xa6\x1e\x65\x1e\xb2\x68\xd3\x51\x80\x98\xd7\x8f\xf7\x8f\xce\xdf\xd4\xce\x7c\x21\xd8\x51\xd7\x5d\xa3\x6c\xdf\xf4\xf8\x0a\x53\xe6\xe4\xaf\xec\x50\xdf\xd6\x43\xa4\x89\x1c\x2c\xdd\x19\x7b\x13\xa4\x27\x61\xe4\x38\x5f\x77\x40\xf7\x5d\x1c\x91\xf8\x3f\x2d\x25\xad\x6f\xf4\xb9\x83\x04\x60\xf1\xf4\xee\xd2\x9d\x92\x1c\x54\xe6\xd5\x8c\xbc\xfb\xb7\xef\x1e\x02\x33\x3f\x8b\xa0\x39\xac\x33\x05\x5a\xe4\x0b\x32\xe1\xdf\x74\x68\xb9\xa0\xa1\x4e\xed\x08\xbf\xea\xb3\xcf\x69\xd8\x7e\xec\xc6\x3c\xe0\xc7\x8e\x88\x8f\xc6\xc5\x77\x18\xee\xc6\x66\x24\x2b\x5a\x58\x0a\x72\x34\x23\x0d\xce\xa2\x7d\x07\x4c\x30\x90\xef\xf1\x10\xcd\x6f\x9f\x96\x97\x4d\xdb\x2f\x4a\xd0\xc5\xeb\x0b\xc1\x30\x95\xcb\x40\x16\xfa\x32\x5f\xf5\x92\x97\x2c\x29\xf6\xab\xf5\xed\x5f\x38\xac\xa8\xf4\x61\xf3\x18\xfc\x70\x4f\xca\x90\xc7\x11\x86\x3c\xa7\x98\xd0\x7b\xba\x0d\x13\xa7\x8c\x58\x78\xe1\x80\x26\xd6\xe9\xe4\x2b\xf7\x1d\x86\xcb\x3c\xd3\x45\xdb\xd5\x59\x0f\x6b\x48\x0e\xda\x8c\x93\xe0\xf7\x2e\x55\x01\x23\x32\xb4\xe2\xc7\xfc\x73\xef\xa9\xf6\xde\x26\x55\x31\x4f\xbd\x55\xcd\x0e\x5c\x3f\x45\x81\xde\x66\xe9\x3c\x66\x16\xd6\xe5\x09\x7f\x52\xa3\xbb\x57\xb4\x60\x37\xd4\xa8\xfa\x16\xc1\xe7\xd6\x2a\xb5\x40\x54\xcf\x17\x82\x9f\xac\xd1\xdb\x08\x99\x0b\xe5\x5a\x64\xd1\xfb\xda\xc3\xa2\xb4\x2a\xbd\x75\xf6\x3f\x39\x41\x1b\x33\x4f\x8e\x82\x66\xea\xb6\x3e\x39\x34\x79\xc5\x8a\xbe\xcb\x95\x1e\x62\x38\x78\xb0\xfb\xa8\x2a\x2a\x2d\x5a\x23\x8e\x18\x3d\x27\xc7\x0b\xaf\x3f\x06\x66\x01\x8c\x70\x99\x31\xe3\xd4\x2a\x11\xcd\x57\x36\xb1\x68\xa7\x8c\x7f\xea\x56\x99\xd2\x25\x8c\x80\x79\x7b\xf6\x67\x1a\x2a\x1d\x87\x01\x12\x4d\x96\xf2\xd3\xc1\x63\x13\xe1\xeb\xb0\xc5\xa6\x60\xfe\x60\x91\x8c\x49\xad\x6e\xcb\xad\xd0\xd5\x8e\x4a\x78\xeb\x89\x53\xae\xf8\x29\x74\x54\x76\xfe\x5d\x40\xc3\x8f\x61\x69\x06\x94\x79\x5d\xd3\xf0\xb3\x30\xb2\xe5\x52\xbf\xfe\x62\xf2\xcd\xa2\x06\x41\x0e\xe5\x61\x48\xf5\x3b\xc7\x3d\xbd\x9e\x72\x2c\x25\x9e\x78\x64\x75\x5c\xa8\xd6\xd1\xfa\x54\x1d\xfb\xbf\xa7\x88\xbb\x5d\x47\xbc\xe1\xbf\x62\xa1\x1c\x19\xc9\x1a\x93\xd7\x97\x8f\x0a\x98\xd6\x6d\xc8\xad\x10\xa7\xec\x51\x27\xa1\x33\x7d\x74\x51\xf2\x33\x62\xd7\x43\x45\x9b\xb8\x52\xda\x54\x34\x9f\x3f\x95\x02\xc1\x85\x8a\x07\x53\x69\xe3\x3e\xa8\xd3\x62\xd2\xb2\x43\x7a\xc5\xa0\x64\xf5\xba\x36\xed\x76\x95\x7c\x16\xab\x36\xe5\x46\x3d\xd1\xa6\xa5\x1e\xe4\x58\xd8\x97\xc2\xc6\x46\xe7\x71\x15\x6d\x2a\x88\xd9\x98\x17\x4c\x9d\x17\x09\x18\x08\x16\xd1\x27\xff\x66\x8b\x3c\x38\xc2\x36\x9c\x97\x76\xff\xa8\x81\x7d\x1a\x61\xb3\x26\x5b\x3e\xe3\x06\xcd\x83\x48\x8a\xe3\xf7\xc6\x60\xcd\x8e\x63\x29\xeb\x50\x46\x5c\x64\xc7\xa7\x7a\xb4\xee\xf9\xea\x5b\xe5\x5a\xbc\xc2\xfe\x9c\x26\x9e\xe3\x60\xdf\x0b\x1b\x04\xe9\xb6\x79\x02\x6c\xe1\x31\x6b\xf0\xc1\xd7\xaa\xfd\x6a\xcc\xc0\x81\xe0\xa9\xab\xb6\x62\x2e\xb4\x98\xa3\x5e\x05\x47\x76\x7b\xb9\x71\x00\x5a\x8a\x08\x2b\xa1\x0d\xe1\xef\xf9\xcc\x76\x8d\xe4\x5c\x41\xac\x1c\x59\xa2\xcc\x5d\xac\x32\x88\xb4\x8f\xe0\xe9\xed\x13\x17\x89\x17\xbc\x92\xa1\x52\x89\x48\x4e\x59\x70\xa7\x1c\xa0\xdd\x8a\xc3\xf7\xae\x52\xff\xf6\xa3\x5a\xa2\xa2\x5c\x7d\x19\x47\x40\xb7\xec\x13\x9b\xd4\x0b\x04\xc4\x95\x49\x2a\x55\x16\x69\x93\xc3\x3f\xd7\xbf\x34\x0c\x46\x9d\x71\x93\xf9\x77\x0b\xff\x64\xe7\x48\x20\x6c\x44\xfd\xf5\xbe\xd0\x00\xf8\xd6\xa2\x61\x60\xd4\xec\x58\xd8\x76\x6b\x5c\x5d\xe8\x6f\xee\x9b\xa4\xdd\xa3\x06\x66\x55\xdf\xc5\xce\x05\x59\x3b\xc3\xc0\x06\xc4\xc1\x4d\xb7\x8e\xea\x31\x22\x28\x78\xee\x22\xb0\xc2\xa8\x15\x19\x32\xc5\x8a\xff\xcb\x67\xc0\xc4\x8b\x58\xc8\xa9\x72\xa3\x8d\xcb\x5b\x86\x01\x9c\x3f\x43\xcd\x22\x66\x62\x89\x71\xfd\x74\x11\xcc\x9a\x88\xd5\x04\x2f\xf7\x07\x4b\xd5\xef\xed\x46\x66\x35\x81\x57\xc9\x8c\xbc\x53\x81\xf4\x00\xc3\x3f\xd8\xb7\x67\x34\xd0\x37\x21\x26\x2a\xa7\x5a\xf4\xec\xb7\x5b\xff\x2f\x37\x39\x92\x6a\xfd\xe6\x46\x39\x28\xb1\x04\xff\x96\x0b\xc6\x9f\x1b\x20\xa5\xe0\xeb\x42\x9c\xb8\xd0\x97\x9d\x9e\x7c\x2f\x53\xa2\xf7\x12\x64\x5e\xd3\x49\x9f\x5c\x83\x28\xe6\xf2\xfc\x25\xd0\xfd\x8b\x28\xf7\x41\x10\xbc\xb4\x9f\x17\x53\x35\xbc\x48\x91\xad\xc7\xc1\x58\xaa\x82\x78\x0d\x98\x79\x61\x49\xf2\x9c\x95\x18\x5e\xef\xf3\xe3\x24\x7f\xd9\x18\xcd\x58\x21\x92\x42\x0e\xff\x34\xf8\xf4\xd1\x2b\x60\x05\x29\xc4\x6e\xdd\xa8\xd9\x18\x75\x4c\x6d\xc5\x4a\x84\xeb\xdc\xf5\x7f\x4d\xbd\x75\x4e\xa3\x12\x1f\x23\x3b\x06\xbc\xde\xb0\x43\x2d\x22\x53\xb8\xec\xe7\x6e\xdf\x1d\x99\x3d\x30\x21\x79\xcb\x19\x9d\x27\x86\xc8\x88\x28\x3c\x12\xb8\x50\x66\x21\xf8\x8d\x46\x24\x47\x45\xcb\x37\x39\x71\x41\xaa\x89\x2d\xf4\x92\xef\xaf\x89\xec\xaa\xa4\x53\x28\x14\xe7\x4d\x6f\x25\xd5\x96\x3d\xc2\x27\xe8\xc6\x03\x5a\x1b\xe1\x31\x5f\xd9\x16\xfd\xf8\x4d\xc9\x18\x13\xc6\x96\xf9\x42\x70\x53\xff\x2b\xb5\x48\xd7\x40\x5c\x5e\x44\x4e\x8c\xbe\xb7\x4e\x0d\x28\x67\xce\xca\x17\x02\xb3\x37\xf9\xe9\xf9\xc4\x8b\xd7\x8e\x72\x98\xb7\xf0\x89\xc1\x70\x64\x12\xc1\xbb\x83\xf1\xba\x8a\xbd\x89\xeb\x7c\x31\x1c\x75\xa0\xbb\x0e\x8d\x52\x84\x01\x64\x7b\x69\x12\x7d\xee\xca\xb9\xba\x9f\x00\x16\x8b\x67\x39\x7b\x79\x7f\x65\x8b\x7c\xe2\x75\xbf\xec\x08\x04\x49\xee\x73\xe3\x06\xc8\x3e\xaf\x5a\x41\x5c\xa2\xf6\x01\xcd\x7c\xd9\x6d\x86\x61\x58\xa6\xb8\xef\xcf\x4d\x08\xa1\x36\x68\x95\x3f\xd7\x73\x97\x6a\xd3\x1b\x93\xa1\x1a\x47\xe0\x89\x07\x35\xf1\xac\x2a\x30\xa6\xce\x9e\xdd\xc9\x1b\xd2\xdf\xbe\x2b\x6d\x26\xea\x4c\x8a\x17\x67\xce\x2d\x06\xd1\x8c\x30\x4b\xd4\x1d\xd9\x4d\xcf\xc5\x83\x11\x46\x62\x5f\xe4\x21\xa3\x94\xc8\x10\xc7\x80\x84\x31\xe9\xa3\x9a\x1f\x80\x30\xa0\xcf\x5b\x28\x16\x51\x5d\xd5\xd0\x22\xbf\x8d\x48\x2d\x62\xec\xbf\xbc\x73\x20\x80\x4b\xd1\x66\xf8\xa1\xe6\x9d\x50\x37\xa4\x33\xb5\x09\xfc\xe8\xb6\x14\xb0\x68\x46\xbb\x28\x6c\xbe\x7f\x2c\x92\x13\x73\x3c\xe4\x17\x51\xbc\xdf\xbb\xf1\xe5\x64\x57\x5a\xc4\xb6\x97\xf7\xd4\xda\x42\x1e\xc8\xb7\xb6\x4a\xf0\x2a\xf2\x88\x5b\x22\x92\x98\xb2\xf5\x78\x24\x14\x5d\x8b\x58\x98\xd9\x75\xdb\x62\xde\x58\xf8\x5f\xb1\xd4\x97\xfa\xaf\xad\x82\x4d\xcb\x61\xa6\xa9\x48\xd8\x9b\x68\x4d\x71\x89\x1b\x2f\x87\x3f\xcd\x3c\x9b\x7c\x42\xbe\x57\xa3\xae\x27\xca\x83\xdc\xd4\xfb\xe2\xce\x62\x2a\x67\x0e\x1b\xfb\x1b\x80\x0a\x1b\x36\x10\xe1\xcf\xf8\x99\x66\x16\x3f\xa3\x43\xba\x16\x08\x57\xf0\x59\xc9\xc5\x4e\x95\x21\xd7\xa1\x3d\x88\xb9\x55\x39\x0e\x5a\xb6\x20\x18\xb8\x56\xab\xd2\xb9\x96\x5e\x89\x60\x89\x4d\x37\x1e\x9c\xa3\x69\xf2\x53\x56\x6f\x0f\x3f\x66\x4a\x6f\x77\x6d\x72\xfe\xd4\x8d\x1a\xa8\x5a\x41\x56\x2f\x4e\x30\x98\xb3\x7f\x9c\x0e\xd8\x72\x94\x7a\x15\xfe\x1a\x28\x28\x49\x3c\x2a\x96\x79\xc6\x07\xc7\x35\xce\x31\x87\x64\x4a\xd7\xf8\xd5\xd0\x02\x40\x4a\x18\xf3\xcc\xf8\xd6\x42\xad\x23\x88\x56\x1e\x31\x0e\x21\x77\xc5\x83\x1a\xf8\x1b\x33\xaf\xa2\x7a\xf2\x0d\x2f\x69\xbc\x2e\xc7\x23\x9e\xd2\x67\xc9\xae\x9f\x24\xa5\x22\x51\x91\x14\x09\xd0\x14\x33\xfe\xe3\x3e\x28\xa4\xe0\x10\x13\xf1\x7f\xf0\xf8\xca\xe1\x20\xc2\x97\xbc\x0a\x17\xfc\xe6\x1d\x80\x77\x32\xae\xaa\x8b\xed\x29\xdc\xe3\xa6\x16\xcd\x27\x95\x91\x5e\xea\xa0\x0b\x68\x3e\x19\xeb\xcf\x28\x40\xb5\xe9\x42\x9f\xa6\xe5\x92\x54\x8f\x3d\x4e\xaa\x0f\xa6\x3d\x9c\x8c\xee\x55\xc2\x7c\xb7\x92\x20\x44\x07\xd3\xc6\x68\xe4\xdb\xa6\x94\x7c\xe9\x33\x5e\x3b\x2f\x42\x5c\x09\x23\xcf\x8f\x30\x37\xd6\xd8\x56\x38\x07\x41\xe1\x3d\x43\x4d\xa1\x74\x66\x8c\x38\x24\xee\xe8\x4d\xbe\x5d\x82\xe8\x0e\xa3\x77\xff\xe5\xa0\x10\xcd\x17\x82\x01\xf7\xe8\x3b\xf6\x5a\xe4\x35\x23\x66\x16\x99\x9f\xbe\x9e\x5c\xa0\xcd\x6a\xef\x92\x93\xa2\xfe\xf7\x03\x37\x9c\x9a\x10\xc8\xe4\x9f\x6d\xca\x9a\xe4\x81\x50\x36\x92\x71\x13\xdd\xdb\x16\x17\x3b\x66\x05\x36\x75\xb3\x36\x6b\x4e\x0a\x52\xcf\x41\x54\xe9\xeb\x5e\x54\xbf\x92\x61\xb3\xc7\x8c\x2c\xc1\xde\x64\xd1\xd2\x18\xf1\x75\x4c\x5f\xf6\x9f\xfb\x8d\xd4\x6b\x61\x61\xb2\x26\xed\xed\x32\x5f\xd1\xc8\x82\xd2\x60\x4c\x1e\xf7\xa7\x76\xe9\x3a\xfa\x56\x3c\x39\xcd\x15\x73\xe2\xf9\xde\xe0\x38\xc8\xb1\x50\x0c\x6a\xcf\xde\xf4\x2a\x90\xae\xf2\x65\x7d\x33\xbf\x25\xf9\x04\x3b\xbb\xa4\x34\x7c\xf6\xab\xcf\xeb\xa9\x58\xaa\xc0\xc9\x1d\xda\x53\x0b\xaf\x48\x34\x43\xda\x6a\x76\xca\x60\x79\xa9\x5d\xa8\x9e\xfa\xd4\xb3\x60\x73\x5a\x44\xfc\x17\xfd\x60\x62\x6b\x5c\x5b\xa6\xf0\x0b\x53\x1e\x84\x82\x81\xa4\x8e\x09\x1f\xd7\x68\x5e\x71\xc8\xf3\x88\xe7\x5b\x31\x21\x36\x7b\xdb\x22\x01\xbd\x9e\x87\x6a\xc5\xf0\x58\x02\x4a\xc1\xd0\x14\xd5\x83\x93\xd6\x24\x63\xec\xd4\x7b\x3a\x9b\x8c\xe0\x92\xec\x79\x1f\x1d\x93\x3c\x3a\xc8\x75\xc3\xa6\xde\x31\xd5\xef\xed\x58\x09\xd5\x45\xfd\x62\xbe\x10\x3c\x3c\xf6\xe6\xff\x17\x75\xae\xe4\x03\x48\xad\x96\xda\xe5\x38\x92\xd8\x55\x3e\x83\x98\xa9\x8d\xcd\x30\x3f\x90\xc2\x78\xf7\x4e\xcd\xc3\x1e\x31\x54\xcc\xcb\x8e\xf1\xaf\xc7\xae\x00\x41\x08\x5b\x36\x06\xba\x5d\xc6\xfc\x4b\xa1\x43\x50\x11\x39\x7c\x43\xff\x59\x4d\x65\x17\xdb\x6e\x04\x76\xb9\x4c\xc9\x03\x4c\x9d\x36\x35\xfc\x60\x8b\x1f\x52\x8a\x7c\x1c\x7c\x89\xcc\x8a\xc2\x93\xee\xdf\xae\xc9\x1d\xe2\x5e\xdf\xa5\x26\x4a\xc8\x30\x0c\x3a\xa7\xa1\x8a\xc2\xe4\xdb\x64\xc4\xc3\x72\x82\xf8\xaf\x77\x0e\x6f\xa6\x66\x86\xe2\x8f\xb6\xed\xd7\xf5\x72\x6c\x12\x4f\x1e\x3f\xb2\x04\x3a\xcc\x16\xfd\xaa\x28\x7a\x6e\x94\x1a\xdf\x0b\x19\x72\xaa\x25\x9f\xc5\xd4\xd9\xad\x97\xb4\x6a\x15\xb0\x17\x76\xf6\xa2\xbb\x36\x77\x0b\xc0\xe8\x0d\xb6\x9d\x5f\xe1\x21\x96\xc6\xe0\x5c\x71\x52\x95\x4d\x28\x32\x37\x32\x32\x0d\xe8\xa2\x3d\x73\x2a\x07\x38\x3e\xa8\xc9\xaf\x3a\xd2\x0b\x3e\xf3\xa9\x65\x83\xc0\x9c\xb7\x2e\x79\x57\xcd\x03\x40\xe7\xd2\xb2\x88\x1b\x59\xdb\xb4\x3f\xc9\xef\x59\xf8\x33\xae\x95\xaa\x13\xab\x95\xe4\xb7\x8b\xbc\x7c\x21\xb8\xec\x4d\x7d\x8b\xee\x78\x8c\xf2\xee\x3b\xda\x1e\xf6\x19\x95\xfe\x62\x5d\x77\x1b\x65\xb6\x75\x23\x4d\xc1\x50\x8d\xbe\xe5\x2a\xd6\x17\x39\x4a\x0e\x9c\xa3\x1d\x9b\x14\xfe\xca\x13\x0e\x6a\xeb\x16\xc7\x15\xfc\xd4\xe9\xb3\x39\x14\x45\x24\xf6\xfc\xad\xc4\xa6\x2e\x6e\x70\x6f\xf3\xe8\x07\x3c\x77\xbf\x8a\x59\xdd\x54\xbc\xa7\xcc\x22\x36\x04\x04\xda\x06\xb5\x39\x0a\x26\xf8\xf7\xf3\xc9\x74\xd1\xed\x33\xe2\x5a\xc4\x8c\xbd\x32\x32\xc7\x1f\x8e\x1f\x41\x05\x87\x95\xf7\xc5\xed\x5a\xe5\x6d\xcb\x69\x41\xf8\x62\x9f\x9d\xa8\xe2\xb9\xc5\x5d\x75\x49\x83\xe7\xbc\xe1\x4b\x34\x64\x5e\x7e\xaa\xb0\x30\x31\x46\x8a\xdb\xb9\xc2\xf3\x2d\x3e\x59\xd8\x9f\x93\x5d\x6d\x9d\xda\xc4\x93\x72\xd6\x99\xbb\xe7\x69\x72\xe4\x0c\xa3\x68\x8f\x96\x7d\x6e\xbf\x3a\x9b\xbd\x7e\xd9\x22\x16\x77\x2f\x5f\xb8\x5f\xca\xb4\x84\xb9\x94\x38\xe5\x04\xcc\xc8\xf8\xcc\xf9\xd1\x60\xec\xcb\x3c\x72\x01\x00\xdd\xbd\x72\x7b\x98\xf0\xc2\xd9\x0b\x62\xb8\x2e\x75\x6d\x4c\xd8\xac\x45\xd9\x08\xc4\x10\xad\x88\xdb\x36\x68\xfd\x4f\xf4\x2d\x65\xff\xd3\x39\x29\x19\x6b\xb9\x79\x36\xb5\x65\x8f\x62\x3c\xf5\xb6\x4a\x06\x53\xdb\x67\x4c\xe5\xb7\x69\x8b\xc6\xed\xa6\xc2\xd9\x2a\x70\x3b\x93\xbf\xab\x42\xa9\x4d\xc2\x16\xdf\xad\x09\xbc\xe4\x35\x9b\x3e\xa2\x25\x67\x66\x5d\xa0\x34\xca\x7e\xff\xae\xe4\xdf\xab\xa1\x9e\x92\x4d\x9b\x31\x5e\x31\x16\x5b\x1d\x0e\x76\x5c\x26\x62\x45\xca\x6d\x79\xc3\x13\xfb\x45\xe1\x1d\x98\xbf\x05\xd9\xc8\xad\x38\x44\x28\xb1\x26\x02\xf5\x9e\x6b\x35\x9d\xb2\xb0\xd4\x57\x19\x7c\xd9\xc1\xf8\x16\x44\x78\xfd\xeb\xd4\xa6\xb8\xe6\xbb\x36\xa9\x81\x6c\xfa\x87\x87\x34\xa9\x24\x20\xe4\xcb\x23\xfd\x24\x25\xcd\x64\x21\x3f\x6c\x6b\x98\x9b\x27\x4e\xde\x46\x61\x43\x95\xfd\xd3\x06\x6d\xfc\x18\x96\x1b\x3d\xf2\xc4\xdd\xa7\x36\x17\x65\x3f\x7c\xd4\x97\x6d\x87\xa2\x3f\x7e\xc4\x33\x9e\x7c\x44\xbd\xae\xd9\x5d\xed\x5c\x72\xef\xd6\x7b\xae\x80\xe3\x98\xc5\x8b\x27\x47\x1f\x3a\x5f\x08\x56\x2e\xd7\x7d\xc0\xb9\x09\x49\x54\x38\x4f\xec\xaf\x4d\x64\x1c\x54\x55\xec\xa9\xcc\xad\xab\xd2\x56\x3c\x91\xb8\xdd\xe2\x65\x71\x44\xed\x45\xd1\xdc\x71\xeb\x83\xba\xcb\x3b\x8a\x5c\xd1\x4c\x4d\x5b\x8c\xf9\x76\x34\x79\x7c\x6a\x3b\x60\x62\xb5\x17\xdb\x6b\x3c\xb0\x6e\x6b\x51\xe0\x4d\xac\x58\x24\xc1\x77\x96\x82\x41\x1b\x9f\x58\xf3\x70\xfb\xa7\x25\xa9\xa2\xc2\xf2\xcd\x28\xdf\xe4\x16\xbc\x9a\x8c\x4c\x0d\x6a\xfb\x75\xcf\xa7\x7e\xf4\x2c\x8c\xb5\x4f\x88\xd9\x4c\x11\x39\x55\xe6\xd7\x3d\xe9\x61\x6a\xbc\x59\xd2\x9e\x91\x50\x29\x91\x30\xb1\x15\x40\xd8\xd0\x15\x6e\xa6\xaf\x3d\xa2\xa9\x4c\x50\x5a\x53\x5b\xf5\xeb\x16\x2a\x2a\xcf\xb4\x19\xb3\xc2\xdf\x70\x74\x13\xc4\x9b\x62\xd7\x95\xbb\xfe\xec\xdf\x6c\x8f\x5b\x88\x7a\x15\x52\x09\x3e\x7c\x51\xf2\x61\xce\x9e\x3a\x35\xda\x21\x7e\xf6\x31\x68\x79\xe2\x34\xb0\xe4\x33\x64\x3b\xcf\xe8\x34\xc3\x92\x5c\x27\x08\x06\x8e\x71\x97\x13\x6f\xde\x8b\xa8\x27\x42\x3c\xac\x6e\xd5\xf8\x9f\xa6\x89\xdc\x38\x9c\x5f\x72\xbf\x6e\xdd\x82\x59\x35\xd6\xdb\xf8\x70\x11\x38\x6a\x63\xcf\x4b\x38\x06\x18\xe4\x9c\x4a\x2c\x45\xcc\x41\xff\x7d\xb9\xbb\x34\xaa\x51\x83\x98\x1e\x65\xd2\xb7\xde\x20\xbb\x07\xc2\x7f\x12\x06\x50\xe3\xf0\x18\x45\x5c\xc7\x7e\x2a\x39\x7e\xe7\xdd\xe4\xd8\x01\x70\xcd\xe5\x0e\x31\x3c\xb8\x7f\x7d\x6a\xb8\xf6\x6b\x71\x53\x52\x5c\xff\x65\x33\xf4\x3e\x73\x3d\x8e\x41\x0f\x96\xdc\xaf\xeb\xf2\xd4\x30\x43\x4a\xf2\xe8\xb2\xe7\xe2\x57\x87\x4b\x80\x03\x95\xd9\x65\x6b\x26\x1f\xa8\x99\xc7\x4e\x89\x32\x61\x5c\x22\x4e\xd5\xd3\xcb\x86\xc9\x06\xc2\x23\xf9\x79\xc8\xe6\x1e\xf4\x5c\x2c\x67\xc8\x49\xf1\x27\xb7\x49\x11\x5b\x15\xa0\xf6\x75\x0f\x88\x92\x4b\x34\xf9\xfb\xe5\xcb\x23\x2e\xf0\xad\x44\xab\x74\x63\x3d\x0e\x7f\xed\x5d\x1c\x19\xf1\xbb\xb5\x13\xf4\x8e\xc8\x71\xf0\x85\x84\xcc\x82\x73\x27\x81\x10\x3a\x71\x5d\x5c\x23\x0e\x8a\x94\xdb\x46\x69\x82\xc2\x78\x43\xd8\xce\x4b\x0f\xdc\x01\xd7\x6a\x08\x90\x68\xbe\x11\x47\x9d\xec\x82\xfb\xf4\x35\x74\xd3\x8a\x68\xde\x8f\xf7\x13\x72\x0c\x5d\x1c\xcc\xf8\x90\x46\x01\x34\x91\x1b\xa9\x7e\xdf\x36\x12\x6a\xeb\x4b\x34\xb2\xf1\xad\xbd\x1a\xb6\x96\xdb\xb2\x23\x9e\x30\x95\xff\xdb\x7f\x17\x15\x42\xac\x6e\xa7\x5c\x9d\xb2\x57\x06\x00\x4e\x53\x27\x0e\x12\xbb\x6a\x76\x51\xf2\xe8\x4e\x9d\x01\x3d\x2b\x3f\xb3\x56\x0d\x54\x4a\xbe\x23\x0c\xdc\x06\xed\x4b\xb4\xc8\xbe\xed\x12\xbe\xfc\xc9\x3e\xfe\x18\xb4\x53\xf0\x1b\xd8\x21\x7c\xe6\x75\xd7\xf8\x14\x0d\x9e\xf5\x88\x39\x1f\xff\x82\x57\x3e\x94\x9c\x4f\xf4\xa0\xa2\x4d\xab\x34\x9d\x84\x83\xc7\x24\x4f\x06\x99\x82\x0b\xce\x03\xce\xa3\x67\x93\x6a\x20\x0e\x75\x3d\x86\xd2\xce\x56\xc1\x9a\x03\x3a\x34\x05\x95\x4a\xd1\xb5\x7f\xa1\x4d\x6c\xe3\x3a\xdb\x67\xf2\x59\xd9\x6f\x3d\x79\x66\x6f\x58\xb1\xe8\xe6\xa5\x37\xad\xe4\x5b\x63\x1e\xb4\xb3\xaf\xa8\x25\xb5\xc9\xb1\x69\x57\x03\x19\x03\x8b\x91\xde\x5e\x41\x04\x99\x76\xbf\x26\xa5\x59\xe3\xd0\x0d\x25\x13\x7a\x60\xa1\x86\xab\xe0\x02\x1e\xb2\x0b\xab\xf5\x13\x9d\xf0\x82\x0d\x1e\x43\x56\x44\x7b\xc8\x94\x4f\x03\xc1\x76\xd9\x17\x05\x7f\x79\x0e\xc4\xcf\x0a\xe3\x40\x5b\xfe\x4a\x16\x9d\x6e\x01\x7f\x40\xc2\xe0\x13\x4c\x1b\x27\x1a\x8f\x1b\xc5\x5f\xbc\x80\xa4\xd4\xca\xca\x50\xb8\xff\x21\xf5\xba\xf4\xa9\x1c\xd8\x05\x4d\x06\x6c\x52\xe4\x6b\x32\xbe\x70\x7e\x4f\x4b\x38\x3d\x8e\xc5\x68\x2d\xa2\xcc\xaf\xda\xa7\x79\x45\x31\xce\x68\x11\x87\xec\xbc\xfa\xa1\xc8\xa2\x36\x76\x4d\x69\x5b\x34\x69\x8e\xa6\xfa\x17\xb1\xfc\x48\x72\xe7\x3b\x60\xb8\xd0\xb0\x58\xee\xbb\x15\xd3\x17\xe4\x02\xb8\x92\xbe\x61\x47\x72\xfc\x68\x49\x24\x4c\x7a\xd0\x3a\x58\x2e\x08\x89\x67\x02\x6d\x31\xe3\xc6\xfb\xa4\x9e\x1e\x07\x54\x48\xee\xca\x53\xd1\x74\x97\xab\xfa\xf3\xb0\x7b\xcb\x7e\xd0\x9b\x4d\xe3\x9a\x7e\xd9\xbb\x97\x0f\x8b\x5a\xaa\xe5\xf3\x20\xd2\x78\x91\x42\x8f\xa3\x62\x8a\x58\x60\x7c\x6b\x9f\xe8\x01\xb8\xbb\x0c\xf1\x64\xe7\xb6\x5c\x23\x69\x49\xe3\xc2\x48\xcb\x4d\x03\x3b\x46\x0a\xf3\x91\xf1\x6f\xae\x9f\xe6\xed\xd1\x40\x8c\x84\xe5\x84\x58\x3f\x5d\xa6\x39\xc4\x32\xc2\x29\xe2\x22\x8d\xcd\x18\x37\x38\x31\x2b\x25\x02\x7c\xb0\x6d\xae\x5a\xe0\x44\x6b\x6f\xbe\xdd\x3e\x21\x1f\x99\x4d\x1c\x62\x86\x1f\x3e\x38\x68\x8b\xe5\xbe\xc7\x85\x61\x33\xdb\x1f\xbc\xda\x49\x08\x42\x71\x28\x58\x0a\x53\x31\x5f\x77\x91\x0b\x73\xd6\xe4\xa6\xf8\x50\x9f\xb2\x52\x6c\xff\x32\x8a\x7d\x58\xbf\xfa\x1a\xb0\x9a\xf4\xb1\xeb\x09\x7c\xdd\x4e\x21\xb3\x9b\xbf\x95\xba\x26\xc7\xd2\xc6\xaf\xe4\xd1\xfb\xd4\xc1\xf7\x9d\xba\xed\x97\xcb\x62\xdc\x85\xde\xd2\x84\x19\xb9\xea\x25\x93\xf6\xe9\x4b\xa7\x24\x1b\xbb\x1a\x2d\x72\x16\xc5\x6f\x5b\x00\xa0\xa8\x41\x1a\xd1\x56\x61\xf2\xc4\x94\x33\x9e\xeb\x47\x7a\xa0\xc6\x82\xe3\x91\x12\x46\x5d\x34\x8f\xfc\x69\x8d\x5c\xae\x79\xf7\xf8\x4c\xd0\x3e\xc5\x47\xb8\x43\x03\xc2\x54\x48\x83\xeb\xdb\x15\xfa\xb2\x5b\x01\x66\xa4\x8e\xa5\x24\xea\x0b\xbb\x25\xb2\x02\x9b\x3e\xe3\xb6\x37\xc1\xcc\xbd\xc9\xb7\x3f\x6b\xf6\x8c\xae\xf6\x19\x1d\x22\x87\xf5\x3f\x9b\x4c\x42\x45\xca\x88\x4b\x1b\x49\xb1\x94\xd7\x86\x47\xfa\x97\x0d\xcc\xb8\x21\x4e\x40\x1f\x52\xc7\xc3\x42\xc5\x62\xe4\x65\xd7\x68\x55\xff\xbd\x24\x60\xa9\x61\xe7\xf7\x35\x40\x6d\xa5\x8e\x0d\x88\xd2\xb9\xee\x9c\xee\xa6\xe1\xd0\xa6\x13\x2d\xae\x8c\xce\x96\x64\x8e\xee\x26\x48\x2c\x69\xd5\x4f\x18\xb1\x33\x2e\x6f\x4a\x18\x10\xe3\x73\xf3\xb6\xc6\x31\xd5\x8b\xf6\x53\x7d\x99\x3d\x1a\xe6\xc3\x64\xc8\xb2\x71\xc4\xfd\xce\xdd\x71\x78\x30\x40\x04\x99\x55\x11\x22\xb3\xff\x7c\x48\x73\x46\xac\x60\xd7\xe6\x5e\xf5\xaa\x12\xbe\xe6\xad\x16\x75\xb5\x51\x91\x43\xeb\xa7\xad\x06\x5e\x13\xd8\xe5\x03\x83\xad\x13\x2f\x8b\xda\xc8\xf0\x1d\x5f\xbc\x4a\x03\x02\xc6\x42\x73\x71\x05\x37\x7c\x8d\xca\x4d\xcd\xf0\x08\x2e\x79\x44\xb2\xe2\x19\x2f\xaf\x82\x96\x37\x93\xc9\x52\xd0\x21\x2f\xa4\x6f\xf0\x77\x23\x53\x53\xf4\x3a\xf6\x08\x57\x82\x16\x07\xf5\xef\x5e\x05\x25\x05\x45\xf5\x22\xe5\x80\x8d\x4f\x6f\x07\x84\x33\xdb\x26\x0e\x25\x3c\xcd\xaf\xbf\x48\xa3\xff\x50\x97\x1b\x42\xf2\x65\xfb\x94\x7c\x21\xf8\x1d\x48\x04\x36\x86\x2e\x2b\x07\x9f\x82\xf3\x06\x0f\xdb\x09\x86\xc5\xdc\xf7\x2e\x11\x09\x8d\x63\x5e\xce\xab\x0e\xd9\xe3\x4f\xe0\x3c\x00\xdf\xe0\x22\x13\xc2\x2c\x83\xb7\x89\x99\xdd\x6d\x7c\x29\xad\x8e\xf0\xff\xbc\x2f\x52\xc9\xad\xc8\x29\x57\x7d\xd7\x2f\x32\xea\x81\x26\x26\xf3\x99\xa1\x20\x59\x25\xc9\x19\x8f\x24\x8f\x4b\x37\xaa\x7c\xac\xd1\x2d\x5c\x13\x0a\x7d\x99\x8b\xda\xd4\xc7\x28\x51\x56\xe4\x86\xa9\xc6\xd2\xb9\x2a\x06\x86\x15\x7e\x8d\xd3\xc9\xf5\xb4\x34\xa1\x18\x7f\xa7\x99\x33\xc2\xea\x24\xf7\x99\x67\x63\x07\x03\x01\x44\x53\x64\xd7\x5f\x3b\x12\x9a\xad\xdc\x2f\xa5\xbf\xdb\x2d\x15\x64\x93\x12\xf4\xc2\xfd\x5a\x9b\x26\xf0\x49\x1c\xb9\xdc\xfa\x9b\x97\x44\x8c\x5c\x28\x30\xaa\xe0\x17\x64\x96\x75\x80\x16\x08\x39\x55\x81\x59\xde\x28\x8e\x34\x71\x50\x91\xd8\x22\xa0\x1c\x5b\xac\xed\x6f\xa9\xcf\x62\x5b\xb0\xff\xd4\x62\x20\xe2\x92\x74\xf2\x72\x65\xfa\xbd\xa8\x9e\x16\xf7\xfb\x0e\xdf\xe4\x4f\xf6\xa7\xb5\x63\xbc\xa8\x11\xfc\xc5\x9a\xf8\x72\xfb\x58\x31\x9f\x82\xad\x63\x47\xea\x45\x9f\x27\x48\x33\xb2\x57\xfc\xd0\x11\x1d\x1b\x8c\x6a\xae\xe6\xb2\xfb\xab\x67\xb5\xe0\x2b\x2c\x43\xe3\xcd\xcf\x11\x6d\x60\x65\x22\xc6\x08\x0f\x4d\xfc\x56\xbe\x52\x6a\x01\xed\xf3\xec\xf6\x4e\xbe\x8c\x7d\x04\x0a\x7e\xc6\x52\xd5\x4c\x8b\xe3\xb4\x2e\xd4\xba\xfb\x8c\x7f\xde\x26\x8a\x13\xea\x7b\x7c\x11\x1f\xb5\x2e\x64\x8b\x06\xd8\x43\x3d\xae\x8c\xfd\xc6\xcd\xd2\xc3\x65\xde\x82\x05\x2b\x97\x2c\xe0\xbe\x93\x6b\xb4\xe7\xee\x38\x7e\x3c\xb6\xcd\xbc\xbe\xb5\x4d\xaf\xb8\x48\x98\x63\xa4\xe0\x88\xb9\x57\x43\x0f\xd4\xa5\x15\xbf\x1c\x78\x57\xb7\xa9\xab\x8f\x5d\x13\x09\x83\x97\xe0\xe9\x01\xe2\x70\x2c\xf4\xc1\x4a\xa7\x7d\xd9\x88\xa8\x2e\x4a\xcd\xda\xae\x3f\x9d\xd0\xd5\x28\xf9\xbc\x35\xcc\x56\x77\x0f\x81\xa7\x22\x2c\x4b\xf9\xe1\x5b\x2f\x34\x36\xf3\xb7\x62\x66\xf6\x94\xfc\x14\xe8\x2c\xb7\xfc\x3e\x50\xa4\x10\xa7\x8c\x99\x40\x70\x8d\xda\x03\x5a\x19\x47\x12\xd4\xf2\x85\xe0\x73\x27\xda\xe2\x2b\x61\xa5\x58\xd2\xdd\x2b\xdb\x94\x85\x79\xaa\x70\xcb\x7d\x6e\x13\xe0\xa2\xfb\x45\xe9\x86\x1d\x29\xc4\xfe\x3d\x48\x7c\xc4\xb5\x91\x63\x09\x9d\xd0\x3b\xd6\x8c\xd6\x2a\x19\x6a\x93\x12\x66\xaa\x5d\xe8\xcb\x0e\x51\x4c\x6c\x5b\x5c\xbb\x0f\x5f\xd7\x0a\x0b\x72\xe4\xe0\x9e\xbc\x5b\x23\x7c\x5b\x98\xf9\xe3\xe0\xe4\xa0\x9e\x2b\x7b\xb1\x24\xec\x3d\xfb\xc9\xfb\xda\xb4\xf3\x80\xec\x1e\x37\x42\x4a\x1a\x6f\xe5\xae\xd6\xb3\x40\xcd\x77\x88\xa4\x14\xc8\x63\x96\x6b\x05\x2e\x30\x89\xe7\x2b\xdc\xe9\xf3\xf3\x11\xce\x77\xfb\x4e\x19\xe4\xc0\xd1\x5a\x4f\xed\x21\xbf\x97\x38\x50\x46\x33\xf7\xc5\x01\xc9\xe8\x44\x4a\x11\x05\x6b\xab\x54\xa2\x66\x58\xb4\x0a\xc1\xac\xe7\x06\x00\xc5\xab\xee\x7c\x21\xf8\x5f\xaf\x8b\x5a\xe4\x66\xc7\xc3\x4c\x48\xaa\x65\x4e\xaf\x03\x6b\x85\x46\x17\x87\xe5\x77\xa9\x13\xe0\x21\x56\xc6\xf2\x56\x65\x27\x0b\xb9\xcd\xfc\x7c\xc2\xb0\xb9\x72\x55\x7a\x7f\x91\x03\xd6\x98\x5c\x25\x48\x40\xea\x96\xac\x01\xf8\xc6\xa2\x4b\x6d\xdf\xc3\x76\x0f\x67\xa1\x5c\xd2\x10\xf5\xef\x92\x05\xf3\xf9\x46\x63\xd7\xa0\x04\xca\x8e\xf0\xb9\xe2\x51\x1b\x2e\x2e\x1d\x54\x45\x9c\xfd\xb4\x47\xc3\xab\xb3\x7c\x21\xe8\x5a\xa6\x4f\x77\xf9\xfe\x29\x92\x97\xcb\x7d\xb9\xa2\x2a\x94\xe9\x1d\xf9\xba\xcd\x85\x44\xb3\xdd\x25\x8d\xcd\x89\x1d\x2c\x5c\x44\x65\x29\xf5\xe6\x43\x70\x81\x21\xad\xe4\xf2\x85\xe0\xd6\x85\x83\x40\xc5\xc3\x75\xcf\x0a\xc1\xd7\x4b\x8a\xbf\x53\x05\x54\xec\xcc\xe0\xc3\xa0\x57\x24\x6e\x85\x3a\xd8\xe5\xf8\xe7\xec\x07\x87\x55\x38\xc4\x3e\x13\xfb\x9d\x37\xc7\xe9\xb0\x61\xde\xc7\x49\x7d\xaa\x4f\x16\x45\xcf\x3a\xcf\x46\xbe\x50\x1e\xd6\x31\x55\x9f\xbb\x47\x89\xa8\x11\x00\x29\x9f\xbb\x3c\xee\xb2\x5c\x9c\xe2\xe8\x1a\x1b\xd6\x6a\x52\xad\x8e\x10\x8b\x8c\xb5\x3e\x03\xf2\x90\xae\xbf\xeb\x21\x62\x47\x48\xe2\x17\xef\x57\x1d\x1f\xb1\x44\x4b\x34\x73\x51\x1c\x1f\x4c\x96\x22\xe3\x19\xab\xe7\xe8\xc9\x42\x68\xe6\xc8\x3e\xeb\xc4\xb5\x60\xb0\xaa\xd6\x3f\x41\x67\x87\x36\x2b\xa6\xcc\xe5\xdb\x44\x31\xa3\x6a\xd4\xe1\x84\x99\x30\x2c\x76\x5e\x0f\xd8\x49\x33\xe9\x58\x92\x74\x5f\xfc\x58\xac\x0b\x88\x5d\xae\x9e\xab\x43\x8b\x5d\x8f\x45\xee\xdc\xcb\x16\xf4\x19\x97\x5d\xaa\x3f\x15\x33\xfc\xbf\xb2\xcd\xbc\x79\xd5\x30\xbe\xa3\xce\xfb\x75\x13\xb9\x6a\xe3\xf4\xd7\x33\xc0\x33\xd7\x46\x09\xcf\x3e\xff\xce\x01\xa0\x1d\xe4\x6f\xfd\xf6\x27\x74\x74\x7f\xa4\x5a\x39\x5e\x8a\x12\x73\xa1\x89\x42\x90\x5d\xa2\x6d\xb3\x7b\x70\x14\x9b\xb2\x2b\x76\x48\x28\x30\x41\x4e\xb7\x4a\x55\x37\x2e\x91\x92\xbf\xc8\x75\x91\x9f\x18\x17\xfc\xa2\x4b\x97\x68\xb3\xc4\x1d\x70\xe3\x25\xc3\x97\xae\x13\xd1\xa5\x18\x16\xb8\x52\x15\x66\x67\xfb\x28\x40\x3d\xb3\xeb\x38\xe5\xe3\x9e\x9d\xf0\xba\xd4\x58\xc4\xa8\x2c\xf2\xfd\xb2\x6d\x50\xc1\x9f\x70\xcf\x08\xfe\xf9\xae\xda\xdd\xaa\xbd\x6e\x57\xad\x81\xfa\xe4\xaf\xaf\x11\xd7\x43\x55\x31\x7b\xb8\x74\x57\x32\x52\x33\x54\xaf\xa0\x78\x12\x2a\x6f\xc3\x1f\x5f\xbe\x1a\x88\x41\x34\x70\x58\x5b\xa5\x17\xcf\xd7\xbd\x22\x3e\xe6\x7c\xee\x5a\x19\xbe\xd0\x8e\x77\xb5\x2a\x0a\xb3\x06\x31\x95\x5a\xbe\xf1\xf5\xde\x94\xcd\x67\x55\x8e\x15\x8c\x0d\x9b\x45\xfa\xc7\x1b\xea\x91\xf8\x6c\x5f\xe6\x9d\x39\xba\x2e\x3d\x63\x61\x4f\x19\x4b\xec\xde\xd3\x3a\x5e\xeb\x38\x9d\xa6\x34\x5b\x49\x49\xb3\xb6\xc4\x87\xb9\x5a\x2e\xea\x43\xc3\xca\x29\x68\xef\xdc\xa0\x76\x04\xe9\xc9\x01\x8b\xf4\xb0\x63\xe5\x41\xfa\x79\x0d\xac\xc1\xa8\x5d\x4a\x6e\xf8\x8c\x6e\x29\x64\x11\xf6\x54\xd2\xc2\xce\xf8\x7e\x90\x1c\x01\xe4\x65\xc9\x94\x79\x66\x80\x94\x3d\x45\x8d\xc8\xe4\xfb\xcc\xdb\x03\xe3\xdf\xc9\xb8\x1c\x44\x5f\xb6\xe5\xdd\x64\xae\xee\xc1\xb6\xe7\x8a\xda\x2a\x0e\x65\x33\x77\x5d\x01\x90\xa5\x2c\x5f\xe3\x36\x26\x12\x91\x69\xdc\xf5\xbc\xe6\x4e\x53\x61\x42\xaf\x51\xf0\xc3\x5f\x13\x62\x92\xf9\xe5\xa4\x5c\x4e\x4d\x59\x8c\xe7\xfb\xab\x04\x6e\xf9\x4e\xac\xd2\xf3\xd7\x7e\xf1\x7a\x05\x47\xb8\x86\xa0\xc7\x03\x3d\x3d\x6e\x20\xdb\x17\xea\x59\xa3\xdf\x1e\x20\x13\xb0\xd0\x00\x2b\xf4\x65\x47\xec\x4e\x1e\xca\x48\xe6\x5a\x1a\x96\x08\xab\x99\x3f\xee\x8c\x45\x3e\x58\x3b\xec\xf8\x37\x0e\x55\xae\xe5\x25\x90\x5a\x5e\x58\xa5\x81\x12\x91\x6d\xbb\x1e\xa3\x35\x08\x3e\xbb\xbd\x43\x53\x11\xb4\x50\x85\x4e\x56\x5f\xed\x8b\xc3\x41\x8d\x89\x62\xdb\x99\xe1\x6f\xc4\x35\x16\x1f\x17\x05\x6b\x76\xc1\x1b\x0a\x87\xa1\xed\xe0\x99\x61\xd7\x64\x84\x5b\xa1\x66\x2e\x2e\x69\x33\x29\x9f\xd5\xa9\x1b\x89\x8f\xfe\x6c\x5e\x3c\x6b\xa0\x65\x1a\x85\xd3\xef\xbf\xab\xf2\x7b\x91\x9b\xc7\x70\x3c\xab\xb6\xe0\x61\xd4\xf7\xb8\xe9\x71\x70\x66\x27\x8c\xf6\x0d\x82\xb9\xe4\xdd\x33\xeb\xd4\xf4\xa4\x8c\x1d\x59\x3c\xf2\xa4\xff\xa7\xba\x1e\xaf\xa5\x17\x29\x07\x20\x6c\x3c\xae\x32\x7b\x13\xdb\xd2\x31\xe4\xde\x8d\xfa\x26\x86\x93\x4f\xb8\x48\xea\xf7\xce\x03\x46\x39\x43\x75\x7e\x77\xde\x78\x5a\x1d\x8c\xc8\xdf\x2e\x5f\x08\x46\x01\x66\x36\xaa\x53\x9b\x96\x79\x19\x90\xdb\xa8\xef\xf6\x6c\xe2\x60\x20\xf7\x31\xf3\x65\x51\x2f\x2d\x63\xfc\x04\x3f\xb7\x65\x28\x80\xad\x83\x2e\xf6\xcc\x41\x39\xb5\xa5\x84\x01\x3a\x4f\xf6\xf1\x1d\xba\xf5\xca\xd4\x99\x72\x32\x18\x3c\x07\x34\x12\x21\x1e\x7d\x91\x50\x18\xcc\x73\x90\x00\x33\x2b\x70\x02\x75\xe9\x1e\x7d\x51\x4c\x1d\x69\x09\x84\xb5\xc6\x88\x4b\xb5\x92\xb0\x8c\x16\x00\xd8\x91\xc7\x75\x9d\x1b\x56\xa4\x1c\xf1\xcd\xa1\xfd\x67\x9d\x56\x30\xa3\xe0\xa9\x43\x7d\xbd\x65\xc3\x01\xc7\xc0\x69\xd0\x98\x5f\x7c\xd3\xd8\x01\xd1\xe1\xc3\x82\xe8\x6c\x7c\x6f\xe9\x30\x55\x4f\x96\x2b\x5e\xbe\x24\xa9\x1e\xb9\x95\x43\xd5\x7c\xa9\x41\x30\xc7\x4b\xe7\x5f\x1a\x03\x2a\x50\xc4\xb8\xc0\x49\x6a\xf8\xf0\x86\xc2\x08\x34\x90\x4b\x6c\x82\x1b\x10\x9a\xf7\xb0\x31\x34\xf1\x43\x8a\xbe\x59\xe5\x47\x6e\xf6\x7c\xf5\xa5\xa0\xb3\x73\x78\xa9\x18\x50\xf3\xae\x52\xb7\x42\xc2\xe3\xbb\xb1\x7f\x72\xdc\xdf\xa4\xac\x7a\x01\x5a\x72\x6e\xc3\x58\x09\x97\x11\xaa\x14\x7d\x39\x97\xe9\x2f\x7a\xe6\x2c\x89\xbd\xfb\xeb\xfb\x9a\xea\x69\xa9\x84\x1d\x4b\x22\x18\x7e\xf0\xb6\x18\x02\x09\xe8\x39\x71\xa3\x26\x2d\x37\xa2\x9f\xaa\xea\x5c\x24\x06\xb0\x53\x5e\x04\xae\x11\x98\xb2\xb2\xd8\xce\xad\xde\x2e\xb1\xf1\x9e\x2f\x95\x95\x4e\x1f\x52\x57\xc3\x67\xc2\xd1\xe6\x86\x67\x24\xec\x9b\xba\x2e\x89\x07\x24\x73\x5f\x01\x43\x50\xca\xb0\x2b\x34\x95\x32\x37\x5e\xa7\x9b\x57\xa0\xa8\xe0\x34\x2e\xda\x21\xad\x8d\xa9\xe3\x8a\xdf\xf7\x95\x4e\x91\xad\x81\xa0\xd1\x66\x75\x62\x4a\x84\xe1\xa6\x74\xe7\xc9\xfc\xf8\x70\x7c\xec\x3d\x08\x6e\xdc\xfb\xb0\xb6\x62\xf4\x70\x9d\xd3\xeb\x12\x63\xcb\xdc\xd3\x12\x95\xe4\x38\x78\x43\xf4\xac\xb2\xbb\x0f\x01\xe1\x91\x0a\x12\x12\xf4\x7d\xc6\xe4\x8d\xc9\xe6\x6d\x5a\x97\x74\x65\xfb\xd6\x6e\x18\x4f\x85\xef\x1f\xaf\x78\xf6\x9d\x57\x7f\x50\x41\x65\x3f\xf6\xc7\xf9\xe3\x59\xd5\x50\x47\x26\xbd\xea\x56\xde\x65\xc7\x85\x3f\xf3\x01\x23\x36\x13\xbc\xa6\xba\xbd\x69\xd3\x3b\xf2\x85\x60\xb1\x46\xd3\x13\x7a\xd5\x31\xca\x61\x28\x4b\x9e\x3f\x8f\xd4\x2e\x68\x2a\xf0\xc7\xb3\x60\x8e\x0c\x09\xcf\x39\x8d\x9c\x5e\xf7\x23\x23\x63\x63\xef\x46\x55\xf9\x76\xa3\x1a\xd4\x1d\x32\x06\x8f\x4d\x96\x1c\xb8\x89\x1d\xad\xe4\x30\x66\x0d\x49\xb0\xc4\xa2\x31\xfa\xc7\xf6\xab\x12\xe6\x63\x32\x3d\x8f\x5a\x1e\xe3\x72\xc6\xf3\x5d\x4c\xe6\xa2\x4b\x55\x2b\x56\x43\xac\x4c\x1c\x29\x4e\x68\x6c\xbc\x07\x02\x36\xdd\x22\x11\x94\xf7\x67\x5a\x80\xe5\x17\x66\x0d\x2a\x3a\xc7\x1b\x06\x8f\xd3\xaa\x40\xc4\x7d\x4a\x52\x75\xee\x86\xc1\x49\xe6\x91\x3c\xd8\xd9\xfd\x3b\xb5\x84\x46\xcc\x8a\x6c\x3a\xdf\x7d\x59\x04\x71\x0e\xa2\x04\xa3\xb7\xa1\x2f\xea\x72\x23\x7c\x2b\x12\x2f\xde\xef\x5e\xa6\x3e\x6a\xd1\x2f\x95\x90\xcd\x5b\x07\xeb\xba\x84\x74\x24\x65\x72\xf7\xf3\xc8\xbe\x24\xb2\x02\x0a\x55\x89\x99\x5f\xf8\x08\xd7\x77\x5c\x2e\x2f\x99\xef\xf0\xcc\x7a\x5a\x5b\x6f\xc6\x03\x40\x11\x48\x7e\xb4\x5b\x64\x8d\xe5\x2b\x97\xa4\x16\x58\x63\x5e\xd2\xf0\x48\xd4\x8d\xa5\x8c\x8d\xfb\x3d\xd1\xc7\xd0\xa6\xd8\x33\x4d\x6e\x6b\x4d\xcc\x04\x9c\xb2\x6f\xc7\xa3\xa3\xf9\xfb\xd5\x1f\x9a\x61\x21\x62\xc7\xa2\x20\x7d\x99\xcd\xf6\x50\xa8\x17\xc5\x01\xc6\x61\x74\x38\xd0\x09\x1c\x1a\x08\x73\xbd\x7c\xf8\x81\xbf\x7d\x1c\xd8\x11\x8a\x99\xd7\x48\xcd\x96\xbd\xc6\xb7\x63\x82\x79\xbc\x62\x59\x5f\xf6\x4f\xbb\xc7\xab\x8c\xdf\x6c\xb6\xcb\x16\x80\x38\x1e\xb6\x6d\x52\xc6\x8e\x89\xdb\x4d\x2e\x05\x92\x6d\x6c\x8e\xa7\xd3\xa4\x07\x25\x7a\xab\x9f\x2c\x4a\x2e\x01\x4a\xcc\x57\x26\xec\xbc\xb2\xf8\xc2\x5e\xe0\x56\x52\xd7\xe4\xe7\xe6\x49\xad\x01\xbe\xba\x06\xd3\x06\x63\x86\xa4\x28\x75\x4e\x8f\x2d\x97\xdf\xd7\xa4\xfb\xb9\xe0\x75\xe4\xaf\x72\x50\xc3\x7b\x98\x44\x69\x53\xe5\xb2\xeb\xae\x92\xb5\xb2\x59\xa9\x51\xc7\x4a\x2b\x63\xfc\x9d\x26\x0a\xec\x71\x11\x70\xee\xaa\xb8\x46\x79\xe3\x63\x87\xf7\x78\xff\xb4\x3b\xf9\x9d\x67\x76\x69\x88\xc6\x6c\xcb\x49\x71\x7e\x6e\xc4\x8e\xc7\x38\xd4\x57\xd1\x1b\xe6\xbf\x15\x37\x37\x0d\x62\xa7\x4d\x73\x56\xea\xa0\x06\xdf\xea\x91\xcd\x47\xf6\x3b\xdd\xc3\xb4\xb2\x43\x3a\x8d\x9e\xb9\x56\x4d\xa9\x3c\xc6\x67\x39\x2e\xe5\x43\xd6\xdc\x8d\x63\x87\x81\xf1\xa5\x63\x45\xfa\x7d\x7d\x99\x27\x9f\x4d\xde\xde\x1a\x72\xab\x92\x6b\xb4\x6a\xb3\x0e\x7f\x47\x0d\x69\x3e\x91\xbd\x0d\x50\xca\xfc\xde\x22\xae\xe6\x0b\xc1\x77\x35\xf2\xa0\x50\x3d\x16\xae\xf5\xbc\xb6\xb9\x7a\x8a\xfe\x03\x71\x6c\x2f\xf6\xc1\xa9\xf8\x09\xfb\x36\x1f\xec\xbd\xf9\xb0\x52\x2b\xaf\x8d\x4d\x17\x0c\x63\x54\x26\xe8\xec\xe4\x30\x73\x7b\xbf\x06\x48\xa0\x31\x0c\x27\x7b\xd7\x1d\xda\x26\x87\x9a\x55\xdc\x13\xfd\xfa\x9c\xb9\x3f\x4e\xa2\xd8\x86\x22\x58\x5f\x3d\xa9\x2e\x55\xd5\xf1\x79\xdc\x6f\xd3\xa4\x2c\x6a\xc4\x64\xb4\x18\x91\xf4\x5a\x1f\x53\x33\x8f\x09\xb3\x3a\xc3\xff\xf4\xa5\x39\x71\x72\x71\x4c\x0a\x7e\x7a\xe6\x48\xdc\x98\x94\xb8\x93\xde\xd5\xa2\x7e\xce\x2f\xf0\x19\xad\xe3\xb4\xa5\x4c\x76\xe8\xbc\xd8\x6e\x45\xc8\x8d\xf0\x82\x65\xdd\x56\xd1\x8d\x0b\x54\xbc\x30\x73\x5c\x7b\xfa\xf2\x38\xf8\x0a\x42\x5a\xe5\xa8\x68\x17\x39\x7e\x3b\xf5\x40\xbb\x26\xc6\x9f\xa5\x87\x4f\x1f\x32\x97\x1d\x1d\x2a\x23\xa6\x6d\xa3\x22\x65\x91\x2b\xf0\xa2\x3d\xf1\x67\x30\x7d\xd7\x95\xcc\xb8\xef\x0a\x8d\x81\xfc\xea\xe5\x0b\x52\xb9\x63\x24\x00\x41\x95\x38\x4f\x26\x5f\x08\xbe\xfa\xa0\x88\x93\x26\x0a\xbb\xf4\xe0\x7b\xc3\xd5\xfb\x6e\x20\x3b\xec\x29\x41\x9f\xfc\xab\x8d\x50\xee\x35\xda\xf3\x0c\xb7\x44\x09\x66\x62\x86\x6b\x5c\x3e\x9b\x7f\x94\x8f\x17\x55\x25\x6a\xd3\xa6\x9c\x14\xbf\x36\x54\xbb\x55\x61\x02\x89\xea\x84\x11\x23\xd5\x0d\x69\x4f\x28\xb5\xbc\x0f\xc4\x11\x71\x8d\x32\x81\xc6\xcc\x1c\x78\x2a\xb5\x08\xab\xdb\x11\x0f\xe0\x99\x37\x06\xc4\xb5\xb3\x54\x71\xce\xb4\xc0\xac\x8c\x2c\x21\x1d\x3a\xe6\x12\x00\x5f\xa7\x5e\x5c\x80\xfd\xfc\xb0\x56\x75\xa0\x3a\xdf\x37\x17\x82\x9f\x36\xf4\x95\x79\x03\x3b\x5c\x03\x3d\x7c\x35\xbf\xda\x23\x9e\xe9\xd4\xd9\x61\x71\xd4\x97\xdd\xfd\x52\xfc\x52\xb9\x76\x56\xb0\x66\x96\x6a\x19\x3a\xa7\x31\xde\xd0\xaf\x3b\xaa\x4e\x6c\x91\x3b\xcf\xe6\x8a\x0f\x5f\xa5\x55\xab\x0c\x27\x16\xef\xd9\x1d\x27\xe4\x57\xf4\x5d\x0f\x09\x5e\xc2\xde\x16\x15\xe5\x4b\x0c\xe3\x66\x05\xe3\x18\x1b\x70\x44\x9f\xc9\x36\xb0\xeb\x91\x32\xe2\xec\xe2\xf0\x93\x39\xc0\x60\x51\x50\xe1\x0a\xc1\x3d\xed\x09\x74\x3f\xaa\xd5\x45\xe3\x33\xd7\xd1\xf7\xd8\x8e\xeb\xd7\x30\x53\xb0\xc7\x86\x98\xf0\xe6\x17\xf2\x9f\xa4\xaf\x73\xd6\xcf\x17\xf7\xe5\x26\x6a\x95\x10\x97\x2b\x28\x04\x63\xee\x83\x18\x51\xc7\xc1\x1e\xd4\xa1\xce\xad\x53\xfc\xea\x89\x09\x79\xb3\x71\xf7\xa8\x75\x6f\x85\xda\xd4\x44\xbe\x9b\x1a\xbe\x66\xaf\x1a\xaf\x82\x73\x0f\x02\x5b\x93\xe0\xb4\x35\x18\xb4\x82\x16\x65\x5c\xb3\x27\x53\x3b\x99\x0c\x32\xc4\x73\xb1\x1d\x21\xdb\x72\x9f\x1c\xde\x0a\x74\x15\xdc\x0a\xa1\x4e\x4c\xa8\xc9\x7e\x6c\x92\x7a\xe9\xfc\x94\x8d\x00\x43\x7e\x56\x9b\xd6\x2e\x72\xe9\xef\x9e\x8d\x17\x2e\x3d\x7c\xc8\x9d\xfd\xff\x28\xfb\xf7\x38\x2b\x8a\x3b\x6f\x1c\xe7\x5c\x44\x34\x82\xc3\x6d\xc4\x01\x91\x28\x2a\x2a\x67\xe4\x3a\xa0\x21\x88\x88\x48\x08\x32\x78\x09\x12\xa2\x86\x3a\x7d\xea\x9c\xae\x99\xee\xae\xb6\xba\xfb\x9c\x39\x23\x21\xac\x17\x42\x8c\x1a\xa2\xc6\x25\xac\x21\x2c\x21\xc6\xe5\x71\x13\x1f\x62\x5c\x83\xc6\x10\xd7\xb8\xc6\x25\x4a\x88\xcb\x12\x62\x88\x8f\x21\xc6\x18\x63\x0c\x31\x84\x18\xa6\xf7\xf7\xea\x4f\x55\x75\x55\xd7\x99\xfd\xbd\x5e\xdf\x7f\x9e\x67\xa3\xce\xcc\x39\xdd\x55\x9f\xeb\xfb\xb2\xb5\x6a\xac\x44\xf9\xa8\x3a\x10\xc4\xfc\xdc\xb6\x97\xc4\x08\xd8\x25\x7d\xb8\x02\x53\x60\x5e\x5b\x9d\xe1\xb4\xfa\xc4\xd5\x6a\xa9\x8a\x62\xfe\xfb\x3b\x35\x17\x38\x14\x22\x39\x6b\x04\x56\xf8\x4e\x4d\x98\x80\x33\x97\x79\x98\x39\xfe\x44\x3a\x55\xb1\x25\x2a\x6e\x20\x7f\x92\x41\xfd\x0c\x48\x28\xe7\xe5\xf9\x2b\x36\x6a\x36\xfd\x94\xa3\x39\x93\xcf\xbd\xe7\x09\x03\xc8\x26\xcc\x4b\xc4\x6d\xbd\xf4\x48\xf6\x57\x46\x5e\x48\x1c\xd8\x99\xc7\xe3\xec\x34\x2d\x55\x08\xcc\x38\x57\x1f\xcc\x90\xa9\xa7\x81\x0f\xc6\x2d\x69\x3a\x0f\xad\x16\xdd\xa8\xe2\xb5\x43\xc5\x6c\x30\x0a\x1d\x29\xca\xf6\x95\xb9\xa6\x78\x1e\x2f\x1c\xcc\xa8\xfc\x11\xc3\xdd\xda\xa2\x6e\x19\xc9\x35\x46\xdf\x73\x9a\x3e\x00\x8e\x92\x0f\xfc\x15\x5b\xdd\x6f\x6c\xd9\x49\x5d\xe0\xce\x10\xb2\xbf\x88\x69\x99\xad\x50\x7b\xc4\x24\x6c\x84\x28\xa4\x6a\xfc\x5b\x9c\xbc\x6c\x94\xde\x61\x10\xa7\x09\xa1\xc9\x7e\x3c\xfb\x89\x66\x4c\x57\xe8\xd2\xb8\x6f\x44\xc6\x69\xde\x7c\x12\x1f\x1a\xa3\x2d\x7b\xa3\x72\x0f\xb6\x40\x28\x2c\x77\xf3\x6b\xe9\x63\xae\x02\x88\x22\xf7\xa9\x2d\xa3\xf4\x8e\xb2\x42\x22\x17\x54\x7c\x35\x20\xf7\xdc\xd6\x89\xe7\x6a\x5d\xbc\x03\x86\xb0\xf9\xbf\xee\x57\x3f\x61\x56\x11\xf1\x3d\x3d\xd9\x05\xad\x1b\x39\x21\xf1\xc1\xfe\x3e\x72\x05\x5f\xa0\xf7\x34\x5d\x59\xa1\x8e\x1d\x62\x53\x0a\x71\xf3\x60\xbb\xe6\xdf\xd0\x4c\x8a\x73\x18\xb2\xc5\x3f\x6f\xa1\x88\x31\x37\xf2\x45\xaf\xdf\x73\x58\x44\xe8\x4e\xe0\xc6\x15\xa6\x9a\x3e\xef\xa4\x82\xe5\x22\xea\x7d\xc3\x7c\xa5\x8c\x42\xc5\x55\x2e\x1c\x78\xd1\xe4\x85\xa2\x00\xe6\xaf\x70\xc0\xfc\x8d\x9a\x86\x73\xe4\x72\x5f\xf5\xca\x2c\x73\xe4\x5f\xc7\x5e\x88\xb1\x00\x1b\xc6\x77\xdc\x63\x7e\xf2\xc0\x4e\x55\x33\x7e\xb7\xda\x94\x31\xe2\xda\x5b\xd2\x1b\x2a\x5e\xa9\x95\x4a\x18\x08\xbe\x85\x23\x62\xbc\x60\x58\x32\xbc\x37\x52\x94\x2b\x00\x55\xe2\x8a\x64\x85\x3d\x0f\x4f\xd2\xea\x57\x52\x8e\x3c\xd4\x52\x1a\x17\xd6\x69\xd2\xcc\x36\xf1\x38\x21\x2a\xda\x65\xec\x9d\xb1\xeb\x53\x06\x47\x56\x0a\x57\x9c\x73\x4e\x0b\x50\x29\x24\x49\x74\x93\x0f\x3b\x3f\xff\xd4\x33\x74\x31\xcf\xc5\xc8\xe1\xe1\xed\xfa\x15\xf1\xca\xad\x7c\x68\xb9\x04\x48\xaa\xf9\x87\x4f\x0c\xba\x5e\x17\x05\x7a\xfe\x9f\xab\x9a\x4a\x03\xd8\xe5\x24\xe9\xed\xf1\x03\x23\x45\x39\x86\x3d\xc0\xa1\x42\x01\xb3\x68\x89\x8a\xcc\x2e\xe5\xb8\xc0\x78\x76\x45\xfd\xc3\x88\x59\x76\x94\x54\xd7\x77\xce\x32\x45\x2a\xaa\xc4\x23\x21\x4e\xbf\x62\xe1\xff\xbc\x94\xd6\xb0\x0c\xdf\xaa\x6d\xe1\xbe\x37\x4e\x9b\x8a\xf3\x0d\x23\x10\x34\xd6\x67\x1b\x09\x9c\x54\xcb\x7c\xc9\xbc\x2a\x73\xf3\x7b\x85\xa7\xd5\xbc\xe3\xba\xd4\x40\x85\x41\xce\xb8\x60\x8b\xaa\x9c\x2b\x1a\xab\xa2\xf0\xcb\x9b\x3a\xd4\x9a\xa1\xd5\xc7\x2f\xe8\x51\xa7\xa5\x07\x57\x81\x41\x71\xe5\xa3\x2a\x95\x0a\x0b\xf4\xd6\x85\x5b\xee\x45\x83\x0f\x1d\xd2\xc8\x4a\x4e\x29\x18\xe3\x17\xfa\x8c\x26\x2e\x62\x9e\x4c\x0f\x67\xec\xc9\x3e\x42\x31\xce\xd6\x70\x43\x23\x95\x56\xd9\x8c\x59\x49\x53\x9d\x7f\xae\x3f\x2d\xdd\xfb\x22\x8d\x66\x57\x40\xfb\x05\xd8\xd2\x8a\x1c\x9f\xfb\x89\x17\x3b\x1e\x53\xda\xd1\x7e\xcb\x92\xb8\xf8\xb1\xb7\x84\xb5\x36\x09\x23\xa1\x64\x7a\xd9\x93\x4a\x71\xb0\xdc\x42\xf2\x3f\x73\x9b\x61\x53\xe3\x20\x45\x77\x7f\xbf\x5d\xd7\x02\x51\xe2\xd9\x03\xb9\x8b\x97\x9b\x33\x7e\x16\xc9\x90\x72\xf7\x1e\x35\xc0\x9d\x31\x3d\x08\x33\xee\x71\xaf\x9d\x30\x28\x2a\x98\x05\xd4\x2b\x85\x54\xfc\x5f\x62\xac\x33\x71\x89\x32\x0f\x00\xcc\x7b\x98\xd7\xc2\xba\x4d\xe5\x36\xa5\x10\x4d\x34\xa4\x6f\x30\xaa\x13\x2c\x14\xb4\x0a\xaf\xbe\xc4\x47\xbe\x36\x2a\x73\x98\xc4\x9f\xe7\x9a\x22\xbc\x55\x86\xc0\x0e\x95\x07\xa0\xb7\xa7\x18\x1b\xe1\x88\x51\xa1\x62\x76\xef\x7d\x46\x4b\x06\xa7\x56\x2e\x2b\xdf\x7a\x42\xf5\x03\x3d\x91\xc3\x07\x62\xf9\xeb\x0c\xe5\xb3\xc0\x8e\x82\x90\x7f\x3a\x75\x8a\x2f\xf7\xcd\xcf\x64\x31\xbe\x64\xe1\xb3\xe8\x0f\x26\x19\x06\x1b\x49\xaf\x24\x67\x48\xf9\xcf\x2d\x36\x8b\x15\xab\x57\x32\x48\xa6\x2d\xd4\x65\xdf\x7c\x1f\xf6\x21\xd7\xad\xd3\x35\xda\xc1\x83\x94\x2f\xdd\x1e\x7b\x41\x5d\x6e\x5a\x56\x53\xde\xd3\x7d\xcd\x38\x03\xf3\x2d\xeb\xaf\x9f\x34\xb9\x76\x15\x7c\x71\xc9\xa3\x1e\x86\x23\x7d\x70\x84\x66\x95\x83\xa8\xbe\x0c\x39\x55\xc3\x33\x02\xe4\xa7\xd4\x1d\x5f\x72\xcf\xf0\xf4\x23\xcd\x06\xb6\xcb\xd8\x1e\xd3\x6b\xcf\x72\x50\x3a\x85\x79\x7b\xaf\xe1\x97\x46\x6a\x36\x77\x30\x12\x46\xb9\xf1\xc3\x87\x78\x41\x22\x58\xc6\xc2\x9a\xb0\x78\xef\x96\xac\xc4\x62\xd9\xa1\xd4\x2d\xe3\x54\x51\xd8\xa0\x53\x2d\xe7\xb3\xc5\x45\xc8\xc1\xba\xf7\xd2\xf8\x47\x35\x55\x01\xe2\xc2\x39\xdc\xb8\x4e\x45\x64\xc4\x48\xa5\x07\xc0\xab\x85\x7f\x7b\x36\xbd\x7c\xee\x20\x53\x98\x0f\xef\xd0\xd0\x40\x24\x24\x65\xc4\xc5\xff\xea\xef\x1b\x95\xb9\x17\x62\xe6\xe1\x90\xfb\x14\x7d\xdf\x90\x6f\x29\x63\x87\x8a\x85\x6d\xfc\x91\xc9\xba\xd3\x9b\x70\x96\xba\x73\x85\xd9\x96\x72\xd9\x20\x20\xb2\xee\x7f\x5b\xab\xdc\xa9\x8b\xf9\xd6\x6c\xff\x89\x73\xb3\x32\x88\x42\xf9\xca\x08\x1f\xaf\x6b\x6a\xbb\x0d\x4a\x03\x0e\x47\x2c\x4e\x5e\x6f\x4a\xc0\x91\xa4\x05\x12\x07\xfa\x93\xaf\x1a\x22\x4d\x30\x30\x17\x50\xc2\xdf\x3e\xdc\xa1\xcf\xf1\x98\x18\x56\xca\x67\x7f\xf2\x06\xb3\x7f\x68\x60\x56\x8d\x24\x05\xf8\x41\x93\x8f\x88\x98\x96\xbe\x2e\xdf\xa0\xa2\x8a\x95\x64\xbc\xae\xa2\xfa\x63\x0e\xae\x91\xc0\x81\x1d\xb4\xe4\x59\xbe\x6c\x88\xba\xe3\x0a\xa0\x1a\x39\xd4\xf5\xc2\x61\xd9\x8b\x57\x8d\xb0\x23\xf3\xf3\x0f\x5e\xca\x16\x7d\x55\xc6\x15\x5c\x14\x82\x2e\x7e\xf8\x09\x4d\x9b\x97\xb9\x41\x89\x45\x9e\x10\x32\x2d\x8e\x5c\x73\xba\x46\x40\x00\x14\x58\x6e\xd5\xcb\xe9\x4a\xbd\xe2\x60\x39\x5d\xfd\xdd\x11\x9e\x22\x7a\x89\xd5\x5b\x46\xf0\x9d\xbe\x6f\xd8\xe0\xe1\x3e\x6e\x9d\x2a\x75\x43\xce\x3d\xad\x4d\xdc\x7d\x37\x29\xcc\x60\xb2\x92\xdb\x76\xcb\x99\x1a\xc0\xa3\xc2\x61\x3b\x0e\x28\xae\x77\x0f\xe4\x7e\xad\xe9\xbd\xcd\x9c\x33\x75\xf6\x9c\x69\x25\xc0\x84\x0e\x55\xb7\x3c\xb9\xf9\x6a\xe5\x73\xd3\xb2\x2c\x5c\xdc\x47\x2c\x6c\x42\x5a\x31\x8b\xad\xb2\xa1\xbb\x88\xaa\x90\x2f\x75\x47\xb8\x81\xc2\xef\x3e\xe0\x05\x6d\xe7\x8c\x69\x73\x93\xf7\xf8\xca\x0d\x1a\x20\x0f\xc1\xec\x78\xff\x76\x15\xea\xe6\x4c\x9f\x2e\x0c\x00\x56\x67\x3b\xa0\x72\x8f\x2f\xa6\xf5\x86\xe1\xef\xb2\x76\xb3\x4c\x91\x5c\x90\xaf\x1d\x56\x1e\x50\xa8\x85\x71\x99\x9b\xd6\xc1\xf3\xed\x32\x2a\xd9\x95\x1d\x2b\x5b\x30\xbf\x24\xd0\xb0\xae\x5b\x0f\x6b\x8a\xa0\x38\x0a\xa1\x54\x32\x2b\x97\x6f\x7e\xc0\x47\x0b\x8b\x22\x4e\x28\xca\xfe\xdb\xf5\x6f\x4e\xc9\x06\x47\x46\xb8\x5c\xcb\x20\x02\x7f\x85\x77\x8a\x1c\x90\x78\x23\xf1\x2a\x01\x6d\x55\x1c\xbe\xa7\x4d\x68\xf7\xdb\xc2\x3f\xea\xcb\x5a\x26\x0b\x70\xa5\xcc\xa7\x45\xbf\x5d\xd7\x62\x6d\x0d\x7b\x7a\x89\x97\xca\x2d\xab\x64\x77\x81\x7e\xd0\xb4\x6c\xd0\x69\x44\x3e\x09\x42\x21\x7c\xfb\xe7\x58\xf3\xf7\x74\xa9\x83\xbd\x20\x39\xb3\x2b\x9e\x30\x84\xbe\x91\xd3\x2b\x34\x32\x87\x6e\x57\xd5\xb8\xef\x20\xb8\x0c\xf9\xe8\x88\xda\xf9\x35\x6c\xa2\x8a\xdd\x53\x6e\xd2\x04\x51\x10\x24\xbc\x62\xdb\x24\x83\xeb\x49\xa3\x24\x9c\x82\x41\x89\x27\xb7\x08\x02\xee\xf2\xb1\xfb\x0c\xac\x38\xc3\xc8\x95\x05\xfe\x72\xdf\x1c\x64\x57\x84\x34\x48\xee\xd8\x0b\xfa\x62\xda\xf7\x01\x88\x51\x1c\x73\xbf\x36\x2e\x27\xae\x4e\x4d\x98\x79\x3f\xcf\x2d\xd7\x13\xaf\x66\x6b\x0b\x89\xad\x2b\x8d\xca\xd3\x66\x18\xa5\xd2\x9d\x7f\xbf\xcc\xf0\x38\x17\x62\xd8\xfd\xb2\xc5\xc8\x8d\xdd\x61\x44\x1e\x52\x31\xc0\x5c\x03\xf9\x63\xc7\x47\xea\x6e\xbf\xe2\x60\xae\x7b\xd6\x54\x97\xa3\x01\xb6\xa2\x10\x4b\xa8\xfc\xaf\x5e\x55\x11\x2b\xb4\x23\x16\xa8\x19\x7f\xfe\x0f\xfd\xfc\x14\xdd\xc0\x40\x63\x6e\x20\xbf\xd0\xa8\xa0\x41\x7b\x0c\x33\x31\x0e\xf9\xc9\x09\x21\x3d\xeb\xd5\x11\x9f\xd4\x36\x0d\x31\x7a\xc4\xa2\xc0\x4e\x05\x6c\x07\x0a\x9f\xad\xf3\xde\xe6\x4a\x6e\x2a\x2a\x34\x46\x7a\x94\xd0\x38\x8c\x02\x14\xdb\xe0\xe5\xc3\x69\x51\xdd\x59\xd1\xd0\x41\xf9\x7f\xe2\x3a\x43\xa5\x2b\xf8\x01\x6e\x95\x92\xed\x91\x8b\x72\xbf\x69\x21\x6e\xc2\xb8\x49\x47\x82\x81\x7c\x0f\x7c\xe6\x78\x83\xa9\xb0\xdd\xc0\xac\x84\x1d\x12\x4a\xbd\xec\xc2\x53\xa3\xc6\x89\x12\xa2\x4e\x2a\x41\x56\x73\x36\xb7\x24\x9e\x68\x1c\xcc\x94\x2a\xd3\x79\xf1\x1a\xf0\x9a\xfe\xfd\x21\xdd\x24\xd1\xb3\xb0\x93\xee\xf5\x8a\xb3\xdf\x31\x46\x4e\xb7\x46\x84\xb9\x32\xaf\x17\x2f\x69\x57\x58\x15\x10\x52\x91\x29\xf4\xaf\xf7\x64\x6f\x6a\x93\x7a\x35\x6c\x5a\x2a\x14\x1e\x50\x2e\x34\x33\x66\x26\xe1\x3e\xf7\xca\x21\x35\x10\xec\x25\x2c\x40\xda\xec\x7c\x67\x8f\x9a\xef\xce\x05\xa2\x42\xe1\xe2\x9d\xba\xa1\x83\xef\xf3\xe8\x72\x6c\xbf\x61\xa6\xca\x0b\x62\x1d\x2f\x30\x75\xc9\x87\xc4\xdf\x70\x9c\x52\x77\xdc\xf6\x12\xef\x8c\x3b\x3b\x93\x1e\xf7\x93\x47\xc7\x68\x38\x78\x9a\x3e\x8d\xdc\x3f\x1b\x96\x50\xba\x7a\x76\xa9\x3b\xfe\xaf\x7d\x46\xcd\x81\x3d\xca\xc4\x5b\x2a\x5e\xf7\xd4\x85\xc6\xc5\xd6\x15\xc7\xcd\xe0\xfc\xb5\xdb\xdb\x8d\xde\x5c\x4a\x0f\xe6\xae\xd7\xc2\x80\x1b\x31\x3e\xab\x19\x61\x38\x52\x06\xb8\x82\xe5\x9f\xce\xfd\xf0\xc8\x70\x55\x74\x47\xa5\xee\xf8\x43\x9a\x30\x47\x05\xd7\xb1\x43\xfd\xe4\x83\xc0\xfc\xa2\x48\xf6\x8f\xd3\x4e\x62\xad\x46\x74\xf3\xa7\x67\xee\xce\xaa\xd2\x25\xd5\x98\x03\xda\xc7\x63\x56\x99\x9e\xb3\xdc\x8e\x8e\x37\x36\x73\x76\xf0\x33\x7a\x95\x65\xd3\x96\x86\xf2\xf4\x07\x0d\xee\xbf\x8d\x5c\x9f\x53\x47\x21\x28\x7c\x68\x87\xee\xb4\xa6\x93\x22\xe7\xf6\x0d\x2a\xc0\x0b\xdd\xdc\xc7\x8e\xa5\x85\x98\x1f\x25\x15\xfd\xa7\xef\xe6\x9b\x9d\x1b\x51\x8b\xec\x65\x7e\x9d\x01\x3c\x4f\x0a\xe5\x7e\x0c\x7a\xa2\xdc\x39\x65\xdb\xa6\x41\x94\x85\x48\x39\x0a\x85\xe0\x03\x2c\xfc\xbf\xd3\x63\x6e\xee\x22\x47\x00\x7a\x8a\x8b\x37\x98\x0e\xc4\xac\x8a\x2d\xb9\xd7\xdb\x35\x4b\x03\xcd\x71\x49\xf9\x52\x77\x7c\xda\x2d\xe3\xff\x97\x84\x28\x06\xc5\x9a\x38\xbf\xd0\xce\xd5\xc5\x6e\x7e\xf6\xa4\x61\xad\x9f\x9c\x56\xd1\x84\xa2\xf5\x63\xb4\x86\x8b\x97\xc0\x10\x4d\xee\xbd\xc1\x98\x2e\x84\x36\xf8\xd4\xa8\x81\xea\xe7\x26\x9d\x6d\xd4\xbf\xb6\x8b\xbc\x2c\x9f\xf1\xf6\x5b\xd4\xa4\x1c\x3a\xa7\xa4\x38\xe5\xf3\xf0\x8d\xcf\x08\x85\xd4\x06\x62\xdc\x74\x3d\x5f\x36\x80\x14\x4a\x24\x18\x76\x45\x7b\x43\x73\x52\x92\xfc\x68\x20\x2a\xfd\x3d\x65\x83\xca\x9e\x96\x96\x12\xae\xfb\xe7\x8d\x26\xc0\xd0\x47\x84\xc9\xd3\xb5\xb8\x4b\x49\xe3\x51\x7d\xab\xf9\x8d\x57\x95\x94\xbc\xdd\xa2\x07\x59\xec\x9a\x65\x14\x7e\xe5\xf3\x41\xde\xd2\x0c\xf6\xbb\x5e\x52\x20\x35\xe9\xa0\xab\x1d\xe1\x3b\xbe\x95\x26\x4a\x9f\xa6\x7e\x2d\x67\xad\x6f\xd7\x5a\xac\x10\xd7\x58\x0a\xb5\x38\xef\x3d\x03\xa6\x50\xa9\x5f\x82\x6a\xf5\x4b\xca\xc2\xdb\x3f\x26\x9b\x0d\xf3\x1c\xe2\x01\xa9\x5c\x18\x03\xef\xba\xc9\xec\xec\xc2\x24\x3a\xf2\x11\xc3\x79\x9a\xf0\x7a\x88\xc2\xa4\x85\x2b\x75\xc7\xdd\xed\x23\x45\xfb\xc8\xac\xc8\xe1\x56\xaf\x03\xc5\xa1\xed\x23\x15\x7d\xa1\x4f\x7e\xf2\xcf\xf4\x4b\xaf\xfe\x6a\x15\x0e\xf1\x83\x6f\x98\x7d\xa6\x45\x93\x5e\x0c\x10\x09\x3f\x39\x71\x86\xc6\x6a\x56\xb6\x00\x60\x0a\xb0\x23\x3b\xd8\x9b\x35\x6d\x1a\xff\x94\xc5\x05\x87\xf9\xe7\x59\x42\x5d\x1a\xe0\xbe\x88\x0f\x5e\x7f\x30\x26\x33\x4a\xb2\x70\x90\xfa\x2e\x1d\x32\x28\x01\x28\xe8\xc5\x95\x14\x20\x7e\xec\x2d\x4d\x88\x0c\x33\x97\x37\x24\xeb\x9e\x37\x67\x31\x90\x45\xf8\xdc\xaa\x78\xb7\x4e\x30\x0d\x31\xe6\x1b\xbd\xc2\x1d\xba\x73\x27\x65\xd2\xbc\xea\x8f\xb6\xa8\xc4\x42\xc4\x34\x31\xb1\xdc\x5d\x5a\x47\x5f\x27\x52\x22\xbc\x78\xef\x26\x55\x8f\x76\xcd\xed\x84\x71\x45\xe1\x45\x83\x48\xd0\x4c\xaa\x1d\x71\x9b\x9f\xb8\x28\x9b\x5c\xb8\x5f\x92\xac\x39\xcd\x89\x80\xa9\xdc\x1e\x84\x94\xa5\x86\x7c\x53\x96\xf2\xd6\xed\x0a\xb5\x64\x89\x7f\xd5\x97\x4d\xa8\x15\x54\xa9\x34\x79\xda\x92\x17\xbe\x36\xa4\x43\x9b\xc6\x58\x76\x56\xa1\xf0\x1c\x03\xd2\xe2\x52\x16\x4a\x4e\x4f\x61\xdc\x13\x06\xdc\xbe\x33\xcb\x03\x2b\x16\x36\x19\x83\x1a\x82\x5c\x0a\xa0\x28\x80\x14\xbe\x53\xd7\x8c\x2e\x90\x57\x4b\xd2\x51\xee\x86\x97\x55\xce\x03\xc1\xa8\x3c\xf5\xda\xe4\x1b\xe6\x68\xfe\x52\x77\x7c\xa7\x62\xe6\x20\x3d\x74\x16\x22\x43\x06\xcc\xe2\x66\x02\xaa\x86\x3e\xa6\x3c\x56\x7a\x71\xeb\x8c\xf4\x56\x8d\x4d\x12\x58\xc8\xab\x10\x0f\x1c\x09\x4a\xdd\xf1\xba\xc5\x86\xbf\x27\x49\xee\x5f\x3a\x40\x28\x0e\x1d\xa6\x6d\xea\x51\x6f\xda\x86\x0f\x4c\x53\x21\xa1\x97\x25\xa9\xa0\x4c\x29\xc0\x59\xf3\xaf\xec\x56\x04\x53\xa6\x31\xd9\x72\xf7\x1c\x1f\xa1\x2d\x2c\x9b\xa5\xee\x78\xc3\xa4\x96\x8c\x19\x06\x92\xda\xba\x61\x49\x96\xd7\x50\xa3\xb4\x92\x84\x76\xb7\xa5\x9d\x2d\x2e\xbb\xe8\x54\xd1\xbd\x25\xcf\xf1\x8c\x83\x7c\x44\xb0\x02\x05\x52\xaf\x2f\xbf\xd0\xb8\x3f\x55\x07\x75\x5e\x7c\x99\xbc\x91\x9f\x78\x88\x67\x81\xb0\x69\x51\x7e\x47\x7e\xfc\x72\xf6\xb9\xd4\xb3\xb3\x8c\x4b\xdb\x0d\x2a\x29\x8b\x6a\xb2\x69\x3a\xd1\xcf\xe3\x81\x9b\x74\x5d\xd2\xab\xa8\x70\xe4\x78\xfa\x8a\x1c\x62\x52\x2f\x06\x72\x07\xba\xce\x36\x4e\x55\x70\x6b\x84\x1c\x02\x86\x53\xbc\x31\xcc\x9d\x38\xd0\xae\x2a\xa7\x86\x56\x58\xc7\x65\x03\xbf\x20\x05\x04\xc4\x00\xa4\xde\xae\x6a\x55\x51\x7d\x6c\xc8\x3e\xdb\x1e\xcc\x02\xdc\x1c\xb4\x9d\x7e\x64\xd5\xff\x22\xbd\xc5\x87\x42\x1f\xdf\xae\xe2\x9c\x45\x1d\xaa\x3c\xcd\x0b\x73\xce\x31\xbd\xc7\x7d\xcc\x42\x29\x93\xf1\xe5\xb7\x84\x6c\x8b\x57\x73\x48\x60\x8b\x61\xc2\x1b\x6b\xcf\x34\x4f\x04\x37\x73\x86\x3f\x36\x75\xab\xec\xa2\x6a\xd8\x8b\x60\x55\xf2\x68\x2c\x9d\xf2\x7d\x09\x0b\x29\x5c\xb2\xaf\x4d\x87\x85\xc0\xfe\x27\x7f\x74\x5a\xa3\xb5\x5b\x87\x2d\x93\x54\xd4\x6b\xf9\xee\xc5\x29\x8f\xab\x66\xa4\x86\xca\x8c\xe0\x54\xed\x35\x4f\x56\xc8\xd7\x1c\x92\xba\x94\x47\x2a\xba\x5b\x78\x6c\x05\x27\x9d\x90\x96\x91\x65\x41\x1f\xbb\xf5\x39\x21\x18\x1f\x31\x9f\xc9\x29\xd3\x29\x9a\x21\x7c\x83\xd1\x50\xd7\x36\xee\x3e\xa0\xb8\x71\xcd\x56\x4f\x92\x6b\xdf\xd2\x94\x16\x93\x8b\x5c\x3e\xa6\xa1\x3a\x48\x8d\x32\x0e\x45\xcd\x9d\xb3\x57\x47\x7b\x28\x75\xcc\xf0\xed\xd3\xe4\x2f\xe8\x9a\x55\xea\x8e\x7f\xb8\x2a\x2d\x50\xad\xde\xa4\xef\xb8\xf3\x3e\xd3\x27\x27\xe9\x66\x2d\x2a\x67\xd2\x03\xb9\x5d\x86\x3c\x98\x8d\xbc\xd4\xd7\x3c\xee\xdf\xc8\xaf\xe4\xa5\x73\xe7\x02\x2f\xca\x53\x0b\xdf\x90\x32\x17\x0b\x56\x76\xfc\xeb\x9d\xd9\xf5\x08\x78\x06\xb5\xe0\x08\xf3\x53\xf6\x8c\x13\x49\x96\x6b\x21\x64\xda\xca\xdd\xc7\x47\x99\xc0\x8d\xe4\xf3\x3d\xfd\xae\xb1\x05\x46\x8c\x84\x62\x51\x10\x2d\x16\x38\x73\xc4\x42\x62\x11\x9f\xab\xf3\xe4\x76\x0d\x35\x97\xc3\x9e\x27\xa4\xf8\xbb\x07\x0a\x5d\xc7\x8c\x0a\xd8\x82\x57\x9f\x02\xde\xe6\xbd\x60\xd2\x50\xa8\x2b\xfa\xff\xf3\x17\x9b\x9a\xea\x73\x2f\x95\x19\xff\xde\x7e\xc3\xaa\x8b\x91\x32\xe6\x85\xfe\xa6\x43\xa7\x6b\x73\x3f\x3f\x39\xc8\xbf\x0b\xd3\x83\xd1\x18\x84\xde\xd9\xf1\x0c\xef\x2b\xae\x00\x38\x4c\xf6\x21\x1e\xdd\xda\xf5\xff\x45\x29\x77\xa1\x52\x1a\xcc\xf7\xa9\x29\x53\x48\xbc\x24\x76\xaf\xbc\x41\x63\xe5\xda\x0c\x57\xa0\x58\x98\x7c\x38\x4b\xef\xa2\x1e\xcc\xc1\xe2\xfd\x6b\xb2\x2d\xb8\x17\x96\x61\xd4\x91\xfd\x80\x1d\xc5\xec\x14\xd5\xa6\x91\xb0\x9b\x36\xbf\x26\xe9\x34\xa6\xa8\x4e\x19\xb3\x30\xcb\xe1\xfb\xe1\x92\x16\x77\x2c\x86\x6a\x72\xce\xf9\x90\x31\xb1\x8f\x3c\xcb\xc1\x48\x4e\xec\xef\x69\x33\x84\xd8\x23\x56\xc7\x83\x70\x2c\x72\x23\xc7\x19\xe6\xf3\x8e\x12\x3b\xcb\xef\xbf\x49\x07\x57\x07\xa4\x26\x44\xa1\x67\x1f\x36\xa6\x7f\xc9\xff\x80\xe2\x76\xdb\x4e\xd3\x3f\x27\x00\xf9\x55\x7e\xa9\xec\x36\xb1\x1f\x75\xb1\xf4\xdf\xcf\xdd\xfb\xa4\x4e\x2b\xc0\xa2\x1e\xce\xaf\x58\xab\xb8\xf7\x51\x2b\x8f\xed\xe4\x1b\xb2\xe5\xac\x83\x25\xe0\xf5\x59\x5d\xb7\xaf\x06\x1f\xea\xc5\xfd\xfc\xb2\x84\x0c\x01\xf7\x9f\x73\x1d\x0b\x97\xec\x18\xad\x8d\x00\x19\x0e\x83\x5e\x52\xea\x8e\xaf\x34\x1a\x68\xa9\x5a\x23\xf3\x63\xcf\x2a\x13\x12\x8c\xea\xc2\xbe\xb3\x30\xc9\xd8\x34\xdb\xd8\xf1\xe5\x64\xe9\x82\x1e\xb3\xa7\xef\x01\x36\x30\x57\x38\x2a\xfc\x66\xbd\x90\xf3\xc0\x15\x10\x5b\x4e\x2a\x08\x3f\x7d\x06\x5e\xb9\x65\xf0\x95\xeb\x18\xf2\xbf\xa8\xab\x3a\x4d\x7e\xfb\xde\xbe\x5b\x29\xba\x26\x7d\x30\x50\x46\xee\xc9\x1e\x70\x16\x79\xd0\x16\xfe\xe5\x29\xe3\x93\x13\x85\x83\xfc\xe3\x91\x89\x2a\xff\x52\x87\xb4\x3a\x17\xe4\xc2\x65\x6d\xda\x6d\xc2\xa0\x1e\x9b\x7f\x6f\x9c\x31\x59\x67\xc4\xd2\x96\x8e\xb9\x85\x9e\x56\xf6\x7b\x88\x89\x9d\xdf\x95\x47\x46\x89\x13\x57\x63\x38\x0c\xa5\xdd\xfe\xd7\x76\x67\x8f\x34\xaa\x27\x39\x74\x10\x37\xc3\xc6\x0a\x73\xe3\xe4\x0b\x70\x3d\x97\x85\x1c\x52\x6c\xd7\x6b\x42\x1b\x59\x76\x2f\x72\x50\xa9\x3b\x9e\x63\xf8\x03\xa1\x4a\x1d\x79\x21\x68\x92\xf2\x08\x39\xb9\xa8\x80\x43\xb5\x28\xe9\xf5\x34\xf4\x54\xf1\xe3\xe7\x64\x83\x44\x92\x44\x1d\x04\x89\x27\x75\x32\x1b\x28\xbc\x15\xaa\x63\xe7\x50\x17\xf5\x12\xf0\xbb\x2a\xfc\x75\xa3\x02\x04\x6b\x7a\x9a\xf1\x87\x5f\xd7\xc4\xf2\x09\xae\xe9\x7f\x32\x37\x6a\x9a\xc6\xc4\x0b\x9d\xe4\x2f\x82\xe3\xde\xc4\x13\x46\xec\xe0\x84\x5c\x6e\x99\x96\xff\xea\x41\xd3\x67\x39\xaa\xd9\xa2\xae\xf9\x5a\xa8\x79\x2b\x60\xd6\x03\xcf\xbe\xe3\x11\xee\xc1\x7f\x3d\x75\xa8\x17\x06\xb8\x1e\xf4\xa2\xa6\x79\x22\xe3\x35\x2f\x6a\xba\x01\xc0\xae\x07\xc5\xf4\x05\x06\x33\x0b\x16\x8b\xe2\x32\x1d\x79\xd4\x1c\xb5\x29\x5e\x60\xee\x8b\xaf\x69\xf3\x31\xee\x99\x44\xf8\xcd\x68\x57\xd2\x7c\x7d\xb0\x4e\xca\xfd\xc7\xdb\x2d\x76\xa1\x24\x4c\x07\x86\xf9\xdd\xf3\x75\xf4\x2f\x05\x7f\xbb\x78\xf3\xee\xd3\xb5\x7f\xc8\x1d\x5c\xcb\xf7\xff\xef\x98\x54\x9e\x0a\xbe\xfb\xb8\xfa\x55\x3e\x43\x84\x43\x33\xa3\xc5\x46\x7f\x3d\x5b\xbe\xef\x93\x57\x7f\xd8\xf8\x64\x36\x72\x5d\x2c\xb4\x87\x65\xbd\xf4\x83\x49\x13\xb4\x41\x64\xd0\x22\x60\x50\x9c\xb9\x4d\xdb\xd0\x3b\xc8\xea\x4d\x32\x0b\x94\x90\xe7\x19\xae\x8d\x55\x64\x25\x1f\x16\x42\x5f\x9d\x19\x4a\x6f\xa8\x82\xd2\x29\x6a\x7d\x81\x92\x74\xb0\x74\x7f\xb4\xbd\xa7\x29\xa7\x85\x4e\xb8\x33\x27\xbd\xd4\xae\x65\x82\x0c\x6d\xf1\xf7\xc6\x72\xd8\x41\x8d\xa6\xdc\x1b\xe4\xee\x79\x49\x03\xa1\x87\x08\xbc\x69\x72\x9f\x70\xc6\x6a\x23\x48\x18\xcf\xf3\x90\x9c\xfb\xe1\x24\x13\xd9\xe8\x59\x0c\x73\x2e\xec\x40\xe1\x92\x4e\x63\x9a\x26\x75\x99\x64\x6c\x2e\x8e\xd1\x86\xcd\x16\x76\x71\x88\x19\x97\xe4\xf8\xcd\x39\x0a\x85\x13\xb4\x84\xaf\xe2\xf0\xe7\x34\xa6\x33\x23\x75\x5c\x2a\x03\x6d\x6a\xd4\x8e\x56\xf1\x5b\xd8\x67\x7d\xd5\x30\xfd\x08\x41\xd4\x89\xa6\x72\xec\x5f\xde\x6d\xda\x4e\x23\x56\xe1\xe1\xe7\x88\x46\xd0\xf4\x2c\x04\x0d\xf6\x1f\xc6\x8c\x96\xd5\x5f\x58\xaa\x31\x49\xf0\xcb\xaf\xbd\x5d\xb5\x9c\x35\x30\x4a\xbc\x2b\x9c\x62\x9e\xf3\x00\x79\x21\x85\x45\xb6\xb9\x2a\xbc\x76\xdc\xc8\x0c\x17\x94\x67\xef\x33\xd7\xa6\x26\xa2\x20\xf1\x9b\x1b\xf3\x6e\x46\x32\xd4\x71\x38\x62\x9e\x88\x55\x35\x44\x41\x8b\xc3\xff\x7f\xfc\xaa\xb9\xed\x22\x5e\x2d\x25\xd6\x0d\xdc\x3e\x3a\xf3\x6f\x67\x4e\x03\xfc\x43\xe1\xbb\xe7\xa7\xa1\x8d\x3a\x55\x9d\x61\xcf\x34\x76\x31\x65\x50\x83\xe5\x3e\xb5\x4a\x21\xbe\xd2\x57\xdc\xf2\xdd\x46\x3d\x38\x52\x6b\x0c\xca\xd8\x49\xda\xde\xeb\xcb\xda\x25\x49\xbd\x1d\x4b\xdd\xf1\x6f\x8a\xa6\x7c\x2c\x78\x91\x0d\x86\x22\x29\x7c\x7d\x8c\xa1\x50\x82\x6a\x35\xe5\x30\xf5\xa3\x58\x69\xe7\x36\x35\xf7\xe0\xbd\x15\xc3\x48\x86\x3a\x8e\xa8\xb8\x52\x06\xe3\xb3\x9a\xba\x59\xc4\x82\x90\xea\x34\xc6\x9b\x9f\xc8\x8e\x9d\x2a\xd8\xa5\x16\x43\x21\xd7\x74\x34\x3f\xe4\x97\x9f\xd4\xcc\xd4\x69\x03\x5e\xd8\x63\x8b\x95\x30\x05\x97\x7b\x6a\xf9\xb1\xff\x38\x96\x0e\x48\x51\x95\x49\xd8\xc4\x88\xb5\xa7\x6b\x83\x43\x02\x86\xf5\x8f\x49\x05\x56\xbe\x7d\x85\xa2\xcc\x79\x5d\xcd\xb9\x7d\xe4\xfa\xb6\x03\x7c\xf4\x81\xc2\x6d\xeb\x55\x8e\x02\x71\x48\x00\xbe\xca\x0a\x6f\xa7\x61\x00\x85\x88\x17\x84\xb0\xa7\x15\x81\xe8\xaa\x8b\xc4\xd2\x8d\xba\x65\x46\x1b\x49\x1d\xa6\xa6\x47\xfb\x86\x29\xa4\x43\x0d\x33\x1b\x31\xdd\x47\x64\xe3\x09\xd3\x03\x22\xc0\x61\xc8\x7d\xae\xe0\x34\xfd\xeb\x10\xdd\xd5\x97\xa3\x7f\x62\x67\x92\xb6\xf6\x21\x15\x3e\xcd\xf9\xb3\x56\x89\x56\x90\x67\x09\x92\xed\xc8\x07\x47\x8b\x8c\xc6\x77\x30\xa2\x42\x2d\x5c\x6f\x08\x8e\x59\x49\x80\x23\x1e\xcc\x9e\x20\xcb\x8e\x64\xe7\x19\x59\xb6\x51\x96\x4a\x0f\xd9\x6a\xf6\x2b\x7b\xf9\x02\xcd\x21\x60\x43\x98\x1b\x7a\x1d\x5f\xce\x7a\x34\x14\xe1\x77\xef\x79\x46\x5c\xa4\xbd\x17\x04\x83\x61\xc3\xcf\x5f\xa7\x38\x53\x3c\x86\x7c\xae\x9d\xff\xf2\x32\x75\x92\xa4\xf7\x9f\x5b\x46\x6b\x05\x32\x77\xd5\x00\x08\x8b\xe1\x8e\xa0\x4b\x51\xf3\x71\xf6\xc8\xe3\x86\x38\x34\xac\x3e\x91\x21\x8b\xff\x80\xe1\xce\x5c\xa7\xa1\x6c\x59\x86\x0c\x31\x1b\x5a\x12\x08\xf2\x58\xee\xcc\xc7\xb2\x4f\x93\x02\x10\x9c\xd4\xb1\x44\xe8\xac\x36\x84\xff\x03\x9b\xff\x68\xfc\x78\x4b\x19\xcc\x51\x8f\xe9\x44\xba\xd3\x58\x16\x55\x48\x80\x51\x20\x69\x39\xcb\xf7\x48\x0f\xb6\xa4\x46\xe4\x4e\xeb\x85\xf9\xda\x10\x3b\x40\x95\x0a\xaf\x31\x7e\x64\xd8\x89\x44\x81\xcd\x09\x38\x03\xf9\x19\x46\x1d\x13\xda\x98\x32\x9e\x0c\xe2\xc3\xfd\xc6\x06\x95\x57\x40\x9a\x02\x56\xfe\xab\xe7\x6b\x3c\xa7\xc8\xf1\x30\xe3\xea\x7a\x82\x57\xd4\xf3\x1c\x5f\x81\x7f\x3c\x29\x47\x19\x09\xec\x3a\xd1\x84\x11\xe2\xaf\x56\x55\xd4\x6b\xa0\x10\xb3\x2a\xa3\x20\xac\x5b\x98\x3f\x44\xa8\x42\xca\x93\x75\xcb\x5b\xd9\x39\x5d\x99\x61\xd4\x1b\xda\xe0\x5c\x20\xe1\xa0\xd7\x1c\x49\xe7\x74\xb7\xc2\xdc\x59\x09\xf0\x7e\xf1\xb8\x2e\xd7\x17\x71\x45\xc4\xc2\xce\x8a\x1a\xa6\x86\x36\x76\x03\xec\xd4\x39\xeb\x2a\xf7\x95\xad\x06\x8d\x22\x48\x4a\x03\x9e\x23\x1d\x43\x27\x72\xd6\x4c\x83\x2e\x99\x5b\x72\xb7\x31\xdd\x15\x21\x5d\x60\xc7\xce\xf3\x5b\x74\x9e\x03\x5b\xc6\x94\x4d\x86\x2b\x61\xd0\x74\xcb\x94\x6b\x50\xaa\x0e\xe4\x13\xcf\x4c\xd2\xd0\xcb\x1e\xaa\x90\x56\x7a\x5d\x71\xd8\x66\xde\x8f\xac\x60\x34\x49\xf3\xc8\xe3\xfc\x84\x5f\xec\xe8\x50\x20\xe7\x46\x4b\x17\x72\xc6\x84\x16\x85\x3d\xcc\x7c\xa9\xb7\x96\x2b\xbc\x66\x1c\x67\x1a\xf1\x1e\x32\x7f\xe7\xb4\x41\xf0\xf8\x25\x17\xc9\x0d\x6e\xa1\xbc\x52\x5b\x15\x29\x29\xfc\x70\x92\x96\x0f\x03\x8c\xd8\x20\x40\xa4\x17\x37\x9d\x26\xde\x1d\x05\x9c\xe1\x4f\x76\xb4\xa5\x21\xc5\xe2\xbf\x29\xbe\xf1\xed\x54\xde\xdd\xa6\x9e\xae\xf4\xf5\xe8\x23\x5a\xab\xce\xa8\xd0\xe5\xce\xf7\xbc\xad\x61\x7b\x50\xd3\x93\x43\xf6\xa2\xb5\xd2\xf4\x31\x41\x5e\x45\xec\x7c\x0a\xbd\x26\x97\xc9\xe3\x46\x2d\xfc\x21\x1c\xbb\xc8\x00\x27\xd9\xc4\x21\xbe\x0f\xda\x4c\x96\xf4\x1b\x2c\x94\x34\x47\x2d\x5a\x05\x85\x53\xe0\x36\x2d\x58\xc7\xdf\xd8\x42\x43\x28\x60\x5f\x9b\x96\xa5\x68\x03\xce\xc9\x48\xcd\xd9\xbb\x27\x72\x08\xb0\xca\xaf\x5e\x96\xf6\x17\x60\xb4\x3e\x90\xfb\x7b\x97\x68\xcf\x81\xa7\x97\x04\xd2\x4f\xbe\x61\x74\xcc\xd4\xc5\x52\xa4\x7d\xff\x7d\x5a\x14\xee\x29\x75\xc7\xff\x4f\xec\x4b\x6e\x94\xcf\x27\x49\xbb\x37\x4d\xd5\xea\x2e\x8b\x61\x0c\x52\xed\x85\x63\x0b\x52\x56\xb5\x57\xc3\x3a\xae\x2e\xbf\xf0\x6d\xb3\x3b\x09\x42\x12\x46\x9c\x55\xcd\xd7\xd8\x78\xc1\x48\xed\x25\xa1\x2a\x77\xdd\xff\xf4\x01\xa3\x09\xc1\x41\x40\x44\x1b\xa6\x1e\xd0\x4f\x45\xb5\xbe\x8c\x7a\x35\x58\xde\x01\xbd\xfa\x59\x83\xc7\x65\x27\x2d\xab\xdc\xd3\xc7\xc7\xde\x54\xc1\xa7\x2f\xd2\xd7\xd6\x67\xef\x12\x68\xdc\xa8\xae\xcb\x20\x14\x9e\x36\x10\x4f\x3e\x0e\x19\xb5\x6c\xec\xc2\x1c\x9b\x73\x89\x0f\x3d\xce\x6b\x4f\xdc\x67\x45\x01\x8f\x25\x85\x1f\x1c\x34\x7a\x5a\x17\x81\xce\x21\x8f\x5a\xff\x14\x1a\xd8\x1c\x81\x7b\x08\x6c\xe2\x0b\xef\xae\xef\x3e\x93\x9d\x20\x44\x9d\x22\x49\x18\x7d\x6c\x5f\xe7\x19\x66\xb1\xe8\x38\x3c\x96\x77\x76\x18\xce\xae\xb4\x4f\xef\xe3\xe2\x29\xfd\xdc\x02\x20\x4a\x6a\xf5\xa1\x86\x0b\x59\x68\x73\x8b\x18\x69\x03\x5b\xec\x3b\x28\x68\xee\xdd\x2b\xae\x5a\xbe\xe4\x8a\xab\xaf\x4a\xb5\xe7\x5f\xdd\x6c\xf6\x74\x90\x33\xe0\x33\x5c\xbd\xf1\x34\x51\x97\xbb\x50\xaa\xdd\x3c\xc9\x70\x7f\x6e\x20\xaf\x82\x44\x43\x00\x17\x91\x3e\x6a\x76\x2b\xd8\x2b\xa1\x5a\xea\x64\xf4\xfa\xdb\xa6\x95\x9b\x83\x91\x26\x43\xb6\x74\xea\x78\xb3\x2d\xab\x3a\xc4\x92\xe6\xbc\xf9\xbf\x3d\x6e\x68\x21\x23\x3f\xcd\x5f\x9d\x52\xb7\xee\x16\x8d\xd2\x78\x6b\x24\x84\x29\x0a\xe3\xb4\x2b\xec\xd0\x88\x48\x54\xe6\xf7\x77\xcb\xe6\x23\xf9\x8f\xb9\xf6\xfc\x4f\xbf\x25\x95\xd8\x6f\x05\x91\xef\xe4\x9f\xed\x78\x5b\x58\xed\x50\x37\xa0\x2e\x85\x82\xd4\x20\x74\xfd\xa2\x8f\x3f\x2f\xea\x70\x89\xed\xe2\xb9\x8f\x8d\x16\x87\xcb\x47\x21\x23\x72\xf9\x51\xf8\x6d\x07\x0f\x1b\x40\xce\xf7\x2c\xdc\x40\xf0\x11\xdf\x18\x22\xb6\x6b\xc9\x71\x03\xda\x70\x71\xc3\xbb\x83\x4c\xd2\x39\x71\x68\x6a\xa9\x3b\xfe\xf4\x26\x63\xe4\xe1\x13\x8f\xc0\x1c\x38\xa9\x74\xb8\xda\x65\xe9\xfa\x30\x09\xec\xba\xf7\xe2\xb9\x53\x34\x68\x0e\x63\xb8\x16\x39\x08\x04\x36\xe3\xef\x6a\x7a\xab\x15\xea\x72\x47\xa1\xee\xf8\x5a\xdf\x38\xa8\x28\xe8\xc5\x21\x3f\xec\x4b\x0d\x55\x04\x5e\x75\x48\x62\xd3\xb9\x8f\x9a\x5b\x60\xdf\xa1\x2e\x12\xa8\xcf\xdc\xf3\x07\x0d\x67\x38\xc7\xc1\x02\x0a\x34\x50\x5c\x76\xfb\x68\xbd\x29\x06\xdf\x8e\xe4\x87\x1e\x7d\xb5\xe5\x5e\x63\x16\x94\x23\x56\x03\x6d\x15\x38\x89\x27\x3d\xa4\xe1\x43\x34\xe5\xfd\xc2\x54\x47\x93\x70\x77\x88\xcb\x5d\xa7\xf3\xcf\xcf\xcf\x7e\x8b\xa4\x40\x70\xa4\xa1\x44\x71\xf1\x0b\x86\x57\x63\x14\xca\xc6\x43\x4e\x5d\xcf\x3f\xa1\xa6\x6d\x21\x23\xbe\xdc\x1f\xdd\x36\xd5\xb0\x02\x27\x1e\xa0\x25\x52\xa9\xd3\x8f\x0e\x35\x74\x6d\x2e\x99\x25\xe5\xb0\x1f\xe2\x14\xf8\xab\x10\x8c\x69\xd2\x2d\xe6\x2f\x5f\x33\x94\xfc\x18\xad\xa7\x20\xee\x9d\x13\xb5\xca\x09\x8c\x3d\x4a\xdd\x31\xa9\x8f\xc9\xfa\xe5\x8a\x28\xf2\x0f\x3b\x75\x1a\x88\x07\x9a\x2a\xf9\x99\xfd\xe3\x45\x52\x23\x35\x54\x31\x67\x18\xf1\x3d\x9a\x2e\x48\xaf\x07\x13\x04\x7e\xc3\x2e\xdf\xdb\xae\x35\x77\x15\xcc\xa0\x83\x81\x88\xba\x6f\xc5\xa8\xcc\x27\x9e\x9a\xb4\xeb\xf1\x29\x4e\xb6\x8b\xff\x34\x0f\x3b\xbf\x9f\x30\xc1\x0c\x02\x82\xa8\x21\xb0\xae\x3f\x7b\x2d\xe3\x26\x01\x64\xdf\x24\x51\x2e\xd6\x14\x54\x1d\x5c\xc7\x9c\xdb\x11\xdf\x35\xd7\x08\x71\x8a\x67\x1a\x1f\xec\x52\x68\xa1\x88\xb4\xf4\x4b\xdf\x78\xed\x6c\xa3\xe9\x93\x7a\x73\xb8\x22\xb4\xe6\xb6\xb6\x4f\x32\xb2\x73\x88\x9d\xac\x9f\x44\x7c\xf0\xf8\x68\x83\x2e\xc5\x07\x24\xff\xb8\x51\x48\xf9\x51\x87\x88\x2e\x30\xf7\xd9\x75\xca\x41\x8d\x78\x49\x9d\xd8\xb2\x94\x28\xec\xdb\x67\x30\xd0\x61\x74\xed\xdb\xd4\x93\x1d\x50\x61\x91\x61\x42\x5e\x06\xd2\xb3\x5c\x3a\x3e\x30\xc9\x34\x64\xc4\x28\x3d\x90\x13\xde\x15\xb5\xbc\x8d\xab\x70\xdf\xee\x1b\x66\xc2\x2a\x5c\x1f\x91\x9a\x87\x99\x48\xa2\x7b\xde\x50\xcc\x35\x30\x06\x2e\x3c\xf0\xbc\xa1\xde\xe8\x44\x1c\x32\xd9\x1d\xff\x7a\xa9\xa2\xe6\x5d\xd0\x2a\x15\x79\xfe\xd1\xb4\xa2\xa1\x14\xa2\xe5\x57\x57\xa9\x1b\xdb\x60\x24\x79\xdb\xc9\xc7\xbc\xfe\x1d\x11\x2d\x23\xe6\x52\x80\x16\xe7\x76\x6d\xd0\x30\xe4\x56\x04\xed\x39\x90\x43\xd7\x64\x86\xb2\x42\x14\x61\x9b\x58\x12\xb9\x98\x81\xcc\x14\xcc\x90\x5f\xca\xf6\xbf\x65\x8c\xd8\xd4\x41\x87\x37\xa7\xdf\xa2\x76\xd2\x60\x0d\xa0\x15\x24\x13\xab\x6a\xde\x5b\xc7\xfc\xd0\xae\x32\x60\xa6\x91\x57\x89\x64\x7e\xce\xed\x3d\xa1\x6a\x29\xa7\xc9\x88\x05\xcf\x7d\xe7\x09\x43\xad\x34\x62\xd2\xf3\xf4\x44\xa7\xb9\xf1\xa0\xae\x1f\xaa\xe1\xd1\xd2\x69\xe7\x9a\x77\x28\x2d\xe0\x90\x43\x42\x31\x3e\xcc\x4f\x66\x86\x9e\x0b\x6d\x88\x32\xe7\xf3\x4f\x19\x13\x52\x46\xac\x24\xe6\xf3\xdf\xbf\xe9\x39\x75\x05\xeb\xd8\x0b\x23\x26\xd4\x2f\x0e\x54\xda\xe4\xbd\xa4\x8e\xe0\xd2\xcf\x3b\x60\x6c\x10\x05\xfc\x96\xff\xa1\x09\x47\x4c\x2f\x5b\xe6\x46\x0e\x12\x1f\xf0\xcb\x53\x46\x69\xd0\x62\x27\xe4\xa2\x9a\xf9\x8a\x56\x0c\x0a\x99\x7b\xb1\xcc\x3e\xe9\x44\x9b\x26\x4f\xe4\xf1\x36\xfb\xec\x47\xf9\xab\xbe\x52\xb6\x5e\xdd\x03\xf9\x59\x86\xd3\x47\x10\xd5\x6a\x49\xb2\xe7\xdd\xfa\x86\xd3\x8c\x0d\x8d\xe7\xd1\xc8\xb3\xa4\x04\x7b\xbc\xf8\xbd\x0f\x9b\x2d\x47\x1d\xb3\xa4\x79\xd2\xf1\x46\xdf\xd8\xa7\x09\x15\x5a\x96\x18\x3c\xe6\xff\xfa\x30\x7f\x48\x4b\xa3\x0a\xb1\x08\x62\x30\x02\xfe\xe1\x23\xa6\x94\x15\x77\xc4\xee\x1e\xc8\x1d\x39\xae\x7b\x5e\x34\x53\x8b\xfe\x31\xc7\x79\x1d\x21\x11\xeb\x92\x48\xba\xca\x9c\x11\x48\x8e\x51\xf7\x40\xfe\x5b\x0f\x19\x53\x0c\x9b\x86\xb4\xc6\x90\x6f\xf3\x65\x5e\x1e\x19\xa2\xf8\xbd\x18\xfb\xb2\x06\xdf\xbf\x49\x48\x9e\xd8\x49\x83\x24\x05\x18\xce\x39\xd4\xa6\x0b\xb6\x55\xe1\x7a\xde\x7d\x91\x96\x0f\x91\xd3\x2b\x54\x45\x8b\x68\xa5\x8a\xb8\xb4\x95\x36\xf3\x62\x8f\xb6\x67\xd2\x4b\xb2\x5d\x26\xb5\xd6\x8d\x1c\x5e\x81\x14\xaf\xbf\x7b\x9c\xac\x11\x02\x88\xcf\x42\xab\x12\xf0\x85\x5f\x7a\xce\xa8\xa0\x52\xef\x48\x10\xc1\x2f\x8c\x98\xc2\x93\xec\x12\xcc\xfa\xa9\x86\xc2\xca\x7f\x2a\x7f\xae\x79\xc5\xaa\x38\x08\xa8\x61\xcf\x98\xff\xf3\x07\x06\xf3\xa2\x81\x2b\x04\xc6\x03\xe2\xf1\x7c\xfd\x03\xcd\xcc\x89\xab\xd6\x94\xba\xe3\xa7\xbb\xd2\x38\x57\x76\x80\x48\xbe\xc8\xd0\x36\x68\xd8\x18\xc2\x32\x1f\x8a\xbd\x3c\x43\x3d\x18\x0f\xb1\x3a\xee\x45\x50\xb8\xdc\xfd\x7c\x87\x26\xe4\xc6\x1c\x68\xd4\x15\xe4\xe3\x63\x79\x29\xe9\x68\x39\xdc\xc2\x29\xf7\xb3\xfb\xd4\xeb\x4a\xca\x1c\x28\x16\x7f\xbb\xc9\x54\xcb\x0e\x82\xa4\xd7\xe3\xe4\x97\xcf\x69\x12\x3a\x2e\x71\x84\x4a\x62\xbd\x47\x53\x95\x89\x92\xa6\x9b\x80\xa0\xe0\xed\x9a\xa6\x46\x14\xf8\xd8\x0b\x84\xb0\xcc\x52\xc7\xdc\x4c\x0b\xb7\x21\xd8\xa8\xff\xe7\x83\x06\x05\xd3\x46\x0c\x85\xa4\x89\x06\xa5\x60\x2e\x98\x94\x96\x34\xbd\xb6\x3e\xc6\x9d\x7e\xbb\xfa\xac\x5d\xb3\x85\x76\x57\xc1\x9b\x2f\xf0\xcb\x98\xd1\x80\x02\x11\x65\xea\x1e\x1d\x0c\xca\x28\x3f\xa0\xb9\x63\x1d\xe9\xdc\x9d\xe8\x7a\xd2\xb9\xf5\x4f\x19\x62\x75\x52\x12\x33\xa4\xa5\x3a\xa9\x60\x2a\xab\xc5\xaa\xc6\xdd\x04\x75\x39\x91\xee\xc7\xef\x97\xaa\x35\x1e\x13\xdb\xbc\xdd\xdb\xd4\x67\x28\x23\x26\x34\x63\x73\xd7\x6e\x33\xa4\x66\x3d\xa1\x32\xcc\xd5\x3d\xff\xaf\xb1\x3e\xc6\x0e\x91\xd6\x73\x5c\xf2\x6c\xf5\x50\x35\x6b\xf0\xe0\x33\x76\xc7\x37\x3d\xa6\x18\x02\x0d\x02\xba\x34\x8a\xd3\x71\xf2\xab\x86\x81\x31\xa9\x4a\x97\x88\x37\x47\x99\x92\x5f\xcc\x85\xbf\x52\xec\xbe\xdd\x68\xd8\x93\x37\x0d\xa3\x54\x7e\x64\x3f\x5a\x11\xbe\x43\x0d\xe4\x92\x4b\x9a\x14\xb4\x03\x8b\xeb\xee\x34\xb4\x35\x67\x4a\xfd\x8e\xe7\x0d\x0d\xb4\x0b\x40\x77\x9b\xff\xad\xdb\xde\xd0\x64\xd1\x19\xba\xb5\xd4\x1d\xff\x75\xf1\x08\xbd\x08\x4d\x9e\x5b\xc7\x1b\x0a\xcf\x2a\xd7\x9f\xda\xc8\xd8\xbb\x49\xcd\x0f\xeb\x0e\xaa\x90\x5e\x54\xef\x45\xfd\xa5\xee\xf8\xca\x7c\xf6\xec\x79\x49\xa8\x06\x01\xe0\xc1\xd6\x5d\x0d\x43\x05\xcd\x91\x59\x33\x77\xb3\x36\xf9\x81\x09\x69\xa9\x3b\xde\x3b\x66\x70\xb7\xee\x50\xd9\x61\x5e\x33\xa9\x05\x4e\xd5\x9b\xb4\x08\x5c\xeb\xf5\x77\xdc\x9f\xb4\xb4\x90\x38\x65\xd4\x02\x0c\xce\x8f\xde\x35\xd9\x4c\x55\x18\x34\x53\x70\x36\x52\x15\x2f\xac\x4c\x18\xac\x5b\x54\x1f\x63\xf7\x43\x86\xe7\x20\x8a\x3c\xcb\xe6\x69\xe1\x2a\x43\xc0\xaa\x86\x88\x97\x02\xba\xca\xcf\x68\xca\xc5\x34\x39\x8b\xbc\x9c\x7a\xf2\x7d\x95\xa6\x7d\x46\x45\x0a\x05\x45\xaa\x8b\x0c\xe9\x5b\x1c\x06\x02\x29\x39\xf5\x1e\xa5\x20\x54\x49\x9a\xd2\x89\xec\x34\x71\x41\x6a\x7c\xd8\x1b\x9e\x6f\x9e\xd6\xba\xa4\xdb\xed\xee\x4f\xe1\x7a\x33\xa7\x97\xba\xe3\x9f\x1d\x49\x6f\x73\x80\xb4\xf9\xc9\xce\xf2\x19\xda\x5a\x2b\xaa\x04\x3e\x46\xc2\x71\x29\xff\xf4\x12\x61\xaf\x98\x94\xb2\xb9\x7f\xd0\x88\x56\x0e\xa9\xeb\xe6\x9d\x85\xb7\x96\x29\x05\x05\xdc\xd2\x3e\xe4\x0e\xae\xe1\x92\xf0\x01\x49\x92\x15\xf2\x30\x8d\x02\x61\xdd\x70\xee\x93\xda\x56\x11\x85\xa4\x0a\x11\x75\x6c\xde\x74\xa2\xa5\x0d\x70\xab\x81\x6e\xff\xfd\x53\xb3\xdd\x48\x48\x6a\xa6\x59\x70\xe1\xe9\x37\x07\x91\x14\xe6\x5a\x32\x43\x2a\xb0\xdf\x4a\xfe\xe9\x95\x57\x9a\xa3\xa8\x45\xe5\xec\xef\xee\xc7\xf0\xcb\x75\x15\xb4\x6f\xde\xd4\xb2\x7a\x60\x58\x4c\x66\x0a\x9f\x7f\x67\x9c\x36\x15\xe6\x28\x18\x98\x88\x01\xd9\x63\x96\xc1\x6d\x40\x2e\x71\xa4\xf8\x49\x6c\x0d\x51\x69\x84\x38\x49\x27\x04\xbf\xf1\xcd\x1d\x3a\xa2\xba\x89\x6a\x11\x06\xfd\xf3\x9d\x97\x8d\xcd\x44\x57\x87\x60\x06\xba\xda\x3f\x6b\x37\xf4\x26\x93\xfb\x47\x80\x7a\x0d\xd9\xe7\x7f\x16\x2b\xd8\x38\xd3\xd5\x34\x56\x4e\x34\x22\x1c\x71\xb9\x9a\xc0\x45\x8f\xb6\xeb\x99\xdb\x07\xb7\x75\x7e\x46\x36\xef\x32\x92\x35\x09\x61\x61\xc0\x9f\xc6\x5d\x0f\xaa\xb0\xde\xc4\xa2\x0e\x1e\x28\x0e\x5b\xd3\xa1\x58\x23\xad\x58\xb3\x52\xbb\x89\xb4\xab\x63\xe2\xc8\x49\xf5\x2f\xd7\x67\x01\x55\xe0\xd1\x95\x3c\x90\x0f\x69\x15\x2f\x72\x30\x83\x9b\x17\xde\xd9\xa1\x55\x9e\xb7\x46\x84\x69\x91\x30\x7e\x70\x8d\x71\xd1\x49\xaf\x10\x71\x1b\xc8\x3d\x70\x58\x33\xc3\xbe\x74\xce\x1c\x00\x50\x4d\xd0\x0c\x36\x9c\x3a\x28\x18\x14\x3f\xc9\x0c\x7d\x89\x30\xaa\x56\x45\x51\xff\x2f\xf6\x70\xf9\xd4\x6c\xbe\x5a\x7a\xce\xd6\xd9\x6b\x16\xa9\xe0\x8a\x93\x0a\x41\xd6\xfb\x79\x05\x77\x1d\xc6\x41\x69\x29\xf5\x32\x79\xf7\x46\x8d\xd2\x5b\xc6\x38\xb4\x69\x9d\x0f\x2a\xe6\xcc\x37\x33\x53\x9d\x8b\x99\xef\x5f\xc4\x33\xc3\xf4\x39\x97\xce\xed\x04\x43\xfb\xc2\xf0\xd5\x46\xf8\x62\x34\xf2\xf9\xe1\x8d\xff\x6e\x40\x6b\x7b\x6d\xea\xd0\x8a\xf0\xa2\x4b\x9f\xd9\x2f\x54\x58\x02\xa7\xc2\xf8\xe4\xa5\x86\x3f\x02\x6d\x68\xaa\xaf\xf2\x70\xed\x59\x94\xfd\xaf\x6c\xcc\x3c\xe4\x55\x70\xff\xc5\x1a\xf7\x34\xf7\xf1\xfb\x0d\x55\x9f\xa4\xd3\x49\xe7\xa2\xc5\xb1\xca\x8b\x8a\xa0\x50\x2b\x52\x4f\x5b\x62\x7a\x1a\x00\x0e\x74\x30\x8c\x76\x97\xa1\xa0\x54\x93\xed\x8a\x50\x51\x5b\x73\xb6\x71\xa0\x2b\xb8\xc4\x30\x4a\x4a\xfd\x9a\xd4\x5e\xa9\x9c\xae\x6f\x2b\x21\x2f\xcc\x3e\x87\xf7\x32\x8b\x3e\x76\xd5\xd5\xdd\x52\x79\xf9\x67\xf7\x19\xd3\x6b\xc4\x4a\x2c\xa9\x43\x64\xa6\xc1\x6f\x2a\xa4\x3d\x2a\x43\xf3\xfe\x47\x6d\x40\x9b\x52\xe6\x92\x42\x79\xab\x12\xca\x08\x4d\x7b\xf3\x81\xdc\xd3\x9d\x86\xdb\x96\xef\x33\xda\x07\xbe\x67\x4e\x93\x67\x94\xfc\x67\x97\x19\x44\x16\xcc\x48\x6a\x48\x34\x74\x94\xb1\x35\x45\x5e\x54\x45\x16\x77\x50\x81\x00\xb5\xcb\xd8\x69\xd8\xd4\xc3\x4d\x2b\x0a\x43\x7d\xb5\x5a\xb8\xf9\x88\x26\x33\x0b\xd2\x56\x76\x29\xc0\x7c\x00\x71\xea\xdb\xe6\x5c\xdb\xf5\x91\x97\x44\x40\x9e\xe1\x5f\x71\x8c\x84\x86\x82\x90\x6b\xc0\x2d\x6e\x53\xd1\xae\xea\x24\x2d\xb8\xc4\xb3\x36\xae\x93\xd2\xb5\xe0\x07\xa8\xbb\x01\xbe\xa9\xad\xcf\xb8\xf9\x75\xf2\x47\x82\x6d\x1d\xc6\x49\x0c\x48\x52\x86\x88\x1a\xff\x3f\x1f\x31\xfa\x61\x18\x1e\xca\x2d\xda\xe7\x4e\xf0\xd7\x3c\x7d\xea\xb4\x4b\x67\x4f\x9d\x0d\x45\x75\xf1\x23\xa2\xad\x0e\xfc\xb4\x74\xcd\xef\x7f\x57\xbd\xc6\xec\x78\x50\x83\x3e\x39\x28\xaa\xd9\xe2\x7b\x2c\xe9\x19\x23\x92\xa4\x57\x73\x30\xcf\x0d\xd0\x10\xff\xd6\x4f\x3b\xa4\x7e\x0a\x7c\xfd\xeb\xdf\xbb\x28\x7b\x51\xa9\xeb\x62\x16\x20\x6f\x50\x17\x8f\xe2\xf0\x07\x85\xdb\x21\x8d\xa0\xe0\xbf\xb3\x53\x13\x75\x95\xd5\xa1\xa6\x9a\xfd\x1c\x7c\x1b\x07\x7b\xa5\x19\xf2\x52\xf4\xa8\x28\x6a\x61\x2f\x84\xb4\xa1\xaa\xe6\x2f\xbd\x3d\x52\x29\xf3\x86\x32\x98\xbd\xb8\x64\x9c\x86\x3a\xb3\x18\xe6\x2c\x5d\xfe\xa5\xfe\xb6\x3e\xfd\x52\xb3\xba\x80\x8d\xdd\x67\x20\x28\x5d\xec\x96\x95\x4f\xd1\xa4\x27\x33\x15\x54\x1d\xb3\x32\x57\x2c\xcb\x3f\xb6\x6b\xb8\xa8\x8a\xbc\x5e\x3e\x7b\x39\x7f\xc7\x04\x6d\xc9\x5c\x6d\x41\x9f\x15\xf6\x9e\x18\x6b\x94\x99\xa1\xf0\x06\xfe\xaf\xcb\xb2\x17\xb6\xdf\x46\x34\x03\x1c\xf8\xe2\x12\x75\x61\x2d\x6e\xcb\x78\xc2\xd1\x19\x13\xc9\xe3\x81\x15\xc2\xe8\xc7\x75\x6f\x3a\x61\x7e\xfc\x44\x85\xb3\x1c\xbc\x08\xee\xdc\x6b\x8b\xb3\x47\x11\xd0\x01\xd5\xe4\xd0\x43\x7d\xb7\xa1\x63\xac\x36\x03\xb5\x22\xb7\x8c\xf9\x2e\x3c\x3f\xb0\x64\xb4\x96\x88\x70\x5d\x60\x64\x72\xf5\x85\xd9\x5f\x58\x4b\x9e\x94\x47\xe5\x80\x72\xf5\x91\xb3\xcc\x12\x3c\x82\xcd\x8b\x54\x97\xcc\x3f\x30\x4a\x87\x80\x62\xab\x57\x0e\x59\x0a\x6f\x0e\xd5\xf4\xc0\x49\x45\x82\x8d\x6e\xdc\x6c\x64\x3f\xdc\x27\xe8\x91\x03\xb9\xfb\x15\xc2\xd6\x46\xba\x86\xc3\xc2\x29\x6a\x6c\x06\xab\x25\x61\xf5\x93\x3b\xf9\x79\x5e\x29\x5e\x2f\x75\x6d\x54\x75\x72\xf2\x7d\x1a\xcf\xb1\x29\xec\x61\x8a\xb7\x1c\x36\x5e\x25\x11\xbd\xe1\xa7\xb7\x0c\x62\xb9\x2b\x60\x8b\x79\xba\x5f\xd3\x8f\x9c\x36\x8d\xbb\xba\x5d\xfc\x96\x82\x6a\x39\x42\xf4\x21\xfe\xcc\x76\x43\xc3\x86\x30\x89\xa2\xca\xad\xeb\x34\xb7\x70\xa0\xcf\xd5\xd0\xd1\x39\x77\xac\xe7\x35\xf4\x2c\xc8\xbe\xb3\x95\xd8\x11\xb6\x6c\x73\xa3\xf0\xb5\xcb\xd4\x4b\x25\x35\x8f\xc8\x35\xd9\xe2\xa7\x34\x7b\x1a\x9b\x84\x99\xcb\x97\x2b\x9c\xc8\xc6\xed\xe9\x73\x74\x54\x07\xa7\x88\x2a\xf3\x52\x2e\x53\x9e\xfb\xf6\xd2\xd3\xe5\x55\x72\x7d\xae\xd5\xf0\xc8\x0b\xe9\x8d\xec\x9c\x76\x29\x88\xc8\x14\x75\x1b\x52\x17\x39\x60\xa8\x97\x73\x42\x1e\xa8\xf8\x3e\x4d\xbb\x1b\xdb\x36\x99\x32\x5d\x81\x0f\x3e\xd6\x62\x5f\xf1\x89\x05\x2a\x33\x24\x85\x6f\x88\x58\x6a\xb9\x71\xe5\x7c\x4d\xc6\x11\x03\x4b\x97\x87\xcb\x3b\x16\x18\x15\x41\x9d\x92\x4a\x5a\x11\x14\xaa\x6b\xf9\x24\xee\xfa\xe4\x77\xa9\x5a\x69\xe6\x73\x46\x03\x41\x23\x66\x61\xe9\xd6\x5c\x58\xb9\xfc\x0c\xad\xa0\x45\x81\x4f\xc1\xdf\x24\x79\xe1\xc1\x83\x67\x9b\x29\x4a\xf7\xe5\x83\x50\xf5\xe9\x21\xea\x6a\x97\x23\x61\xc9\x37\x6b\x98\xfa\x87\x33\xa6\xce\x9a\x9d\x64\x86\x7c\xd7\xfe\xf4\x06\xf4\x63\x8d\x3b\x5b\xbc\x6f\x98\xb6\x7e\x63\xc8\xb7\x89\x55\xea\x8e\x5f\x19\xa5\x11\xe9\xa3\x72\xc4\xca\x50\x61\x4e\x38\x28\xfc\x21\x52\xdb\xbb\xa4\xb8\xab\x8c\xd6\x23\x62\x95\x46\x00\xff\x2e\x8c\xd2\xe4\x60\xd4\x2e\xcb\x57\x10\x96\xd4\x88\x37\x5f\x38\x96\xbd\x3c\x21\xa5\xbd\x17\x83\x16\xc0\x82\xfd\xda\x2f\xa1\x1c\x77\x92\x6b\xae\x4c\x4f\x88\xcf\x50\xa9\x3b\x5e\xb6\x5b\xf5\x05\xc8\xf7\x35\xe9\x8d\xc2\xc2\x29\x42\x24\x04\x0c\x3b\xe1\xc7\xcf\x34\x14\xf1\x38\x40\x88\x8f\x99\x7f\xe4\xf0\x20\x6e\x53\x8f\xc2\x64\xbb\xe8\xae\x18\xad\x11\xc0\x42\x24\x7a\x87\xdc\x85\x46\xff\x6d\x31\x12\x12\x4b\x8c\x1d\xde\xc8\xcb\x4c\xc7\xb5\x34\xc6\x7a\x2d\x7b\xf4\x3a\xb1\x42\x21\x66\x17\xaf\x7b\x8d\x73\x9f\xae\x21\x15\xd0\xa7\xd6\xdd\x5e\xe7\x1a\x0d\x64\x83\x51\xa1\x1b\x92\xfb\xc7\x5d\xc6\x52\xa9\x5a\x0d\x6c\xca\xd2\xed\xfe\x9b\x8f\x68\x1f\xdd\x46\x24\xa9\x86\x93\x9f\x9b\xa1\x19\xb1\x4d\x07\x0f\xf3\xdc\xcc\x1e\xcd\xf5\x36\xdd\x69\x97\xba\xe3\xf1\x1c\x58\x0b\x33\x18\x4f\x37\x37\x1f\xbb\xcb\x04\xd6\xb2\x66\xc0\xdd\x27\x5b\xe6\x33\xf3\x8e\xaa\xf7\x03\x30\xce\xe4\x3c\xf0\xbe\xed\x6f\x2b\x0d\x19\xbf\xba\xd4\x1f\x1d\xc8\xdf\x7c\x8c\x07\xe1\x2b\x80\xf0\xa1\x2f\xf0\xe6\x7d\xa0\x51\x29\x88\x85\x3d\x3e\xd1\x2b\x7c\xe1\x31\xb5\xac\xe2\xb1\x71\xde\xe4\xb3\xb5\x2a\xd0\x43\xe1\x20\xc2\x4a\xdf\xde\x96\xfe\x94\x38\x61\xab\x97\x28\x24\x72\x52\x5b\x05\x21\xb5\x7a\x5b\xd2\xf7\xf0\x53\xcd\x4d\xbb\x57\x41\x82\x81\x1c\xbf\xbf\x3f\x7b\x3e\xea\xc4\x71\x50\x8d\xf7\x43\x77\xf7\x8c\xcc\x88\x9b\x72\x38\xd5\x49\x27\xce\xd4\xfe\x29\xf5\xed\x66\xa9\x41\x52\xa5\xb1\x9b\x77\xaa\x01\x05\xee\xb3\xb0\x9f\x74\x4a\x1f\x9f\xa7\x1e\x6c\x95\x32\x0c\x4b\x40\x5e\x7c\xfc\xee\x79\x85\x20\xaf\xf3\x02\x61\xdf\x4a\x4d\x11\x19\x27\x4d\x1f\x7f\x46\x6e\x98\xe2\x8e\x22\x17\xe9\xcf\x79\xeb\xd6\xf1\x32\x0d\x82\x30\xab\x39\xea\x2a\x1d\x1a\xad\xf5\xa6\xa5\x90\x26\x51\xbf\x7b\xa0\xf0\xdc\x0d\x12\xb0\x11\x60\x89\x21\xbe\xf3\x29\x7e\x13\xaf\xb1\x6e\x68\x00\x6f\x7c\x20\x3f\xfb\xb2\xe1\xe2\x5e\xb9\x88\x17\xbd\xdd\x9a\x4f\x12\xf5\x05\xfb\x5e\x86\x89\xf5\x4b\x8d\x10\xcc\x42\x62\x39\xa9\x66\x6b\xdd\x19\xa5\x8d\x70\x7c\x02\x81\x3b\x5e\x97\xcf\xc6\x96\x6a\xe4\xf1\x06\xbe\xb0\x71\xaf\x1a\x39\x61\xb7\x8c\x18\x43\x41\x20\x6e\xf7\xdc\xb5\x9a\xc7\x43\xf2\x3a\x3f\x31\x5f\xa9\x8b\xf5\xb6\x6c\x49\xf3\xdf\xf2\x74\x9a\x44\x5d\x0e\x5c\x92\x3f\xf3\xfb\xdd\x86\x33\x54\xd3\xa7\x61\x52\xeb\x83\x1d\x46\xbc\x55\x2c\x04\x6e\x00\x0a\x1c\x4c\x64\x47\xaf\x17\xd1\x03\xc3\xb6\xac\xd8\x3d\x95\xcf\xdb\x6e\x14\x08\xc4\xe2\x9d\x47\x55\xdf\x67\x47\x49\x37\x11\x6f\xab\x8c\x4e\x6b\x52\x6a\xa5\x7f\x3d\xdf\x34\x64\xf6\x10\x37\x6e\x17\x75\xd8\x2b\xa3\x34\x27\xdb\x56\x47\xa9\x36\xb3\x08\x8d\xb8\x81\x83\x2c\x85\xae\xdc\xde\x6e\x14\x25\xd2\x3a\x3c\x77\xf9\xfb\x2a\x70\x2b\x5e\xd8\xa8\x74\x47\x60\x53\x5d\x58\xf3\xe6\x1b\xda\x8d\x0a\x26\xb0\x05\x3e\xf8\x87\x53\xf8\x17\x5b\x42\x1b\x99\x29\xc4\x74\x63\xba\x14\x34\xe0\xf9\xa5\xb3\xd3\xd1\xab\x2e\xce\x16\x01\x51\x68\xd9\x97\x24\x1f\x65\x50\xca\x74\xfe\xc9\x67\x86\x8b\x0f\xcb\xad\x5a\xe2\x8b\x8d\x19\x30\xae\x34\x10\x93\xeb\xc6\xf1\x6d\x06\xca\x00\x3b\x6e\x14\x1a\xf3\xdd\x25\x37\xa8\xcd\x7a\xab\xc7\x42\xa1\xe3\xe5\xd3\xb5\x21\x2d\x05\x9b\x86\x8d\x52\xd5\x25\x75\xeb\x68\x7a\x86\xb2\xa1\x68\xdb\x81\xf5\xa0\x41\x18\x71\x1d\x71\x8d\xeb\x3e\xc3\x53\xae\xd7\xc3\x12\xc0\x43\x66\x9c\x67\x14\x46\x4e\x38\xf8\x36\xe7\x60\xdd\x68\xc2\xb9\x0d\x26\x22\x4c\x72\xda\x0b\x7f\x99\xa1\x24\x1a\xc1\x89\xfe\xd3\xcf\xa8\x08\x55\xc3\x1e\xae\x27\xa9\xf9\xd6\x63\xc3\x45\xc8\x22\x62\xf9\x7f\xdf\x3d\x62\x18\x34\x5d\x22\x0d\x0b\x5f\xae\x6a\x18\x99\xa8\x1c\xf2\xa4\x79\xd6\x08\x5d\xb0\xa8\x42\xaa\x55\xcc\xc0\x10\x6b\xa0\x78\x2f\x3f\x99\xa5\x25\x49\x73\x1a\xd2\xd6\x8c\x73\xd5\x8c\xb4\xce\x68\xd2\x94\x3b\xde\xbe\xe4\xf4\xf4\x1d\x83\x60\x7d\xf7\x40\xfe\x68\x8b\x6f\x1e\x34\x02\xe2\xf4\x6d\x3d\xaa\x1a\x4e\xde\xc3\x70\x3b\x78\xd1\x8b\x9c\xb8\x5d\xcf\xa4\x33\x93\xef\xd2\xf3\xaa\xb2\xc6\x09\x33\x20\xce\xdc\xaa\xd5\x06\xc0\x17\x71\x12\x73\xca\x30\xfd\x93\xa6\x02\xeb\xa2\x26\x77\x1b\x1c\x7d\x54\x33\xeb\x45\x5e\x0d\x4b\x86\xfc\xc8\x62\xf6\xd7\xd9\x49\xe9\xe3\x29\x45\x96\xdc\x8c\xc5\x59\x3c\x0f\x81\xe6\x32\x7e\x65\x86\xba\xf4\x95\x28\x64\x34\xea\xd3\x8a\xe7\x25\x1b\xd3\xc8\x57\xa7\x30\xba\x1c\x39\x2b\xad\x1d\x9b\xfa\xb0\x2b\x77\xf9\x66\x73\xdf\x84\x7b\x75\x21\xa7\x7f\x38\x67\xac\x71\xab\x7d\x31\xdb\xd8\xa7\xd9\x7b\x58\x28\x08\x70\x18\x62\xd0\x0c\xe4\x2c\x3f\xb4\x5d\x73\x10\x93\x23\xf7\x52\x77\xfc\xe7\x58\x03\x1c\x53\x17\xc9\x8d\xee\x6d\xc7\x46\xc8\x74\x43\x19\x07\x69\x3f\xf8\x94\xe2\x7d\x55\x5b\x29\xb4\xeb\xef\x69\xd7\x20\x4b\x98\x61\x1a\x36\x7d\x9e\x86\xcf\x29\xf3\x80\xb3\x9c\xd6\x6b\x94\xd1\x4a\x2a\x58\x78\x8b\x11\xec\x14\xe9\xfa\x3b\xe7\x8c\x12\x25\x7c\x1d\xb3\x40\x3a\x0d\x14\x4f\x63\xd9\x39\x26\x72\x9c\x32\x23\xa1\x24\x86\xcb\x27\xfe\xa3\xeb\x46\x69\x4d\x28\xf2\x9a\x34\x4a\x9e\x51\x67\x45\xf7\xbd\x6a\xd2\x88\x77\xdc\x3b\x75\x61\x13\x12\x5a\x49\x40\x4b\x3e\xc3\xd4\x0f\x54\xbe\x9f\x3e\x7b\x16\x68\xa0\xbc\xaa\x41\x2c\x75\x8d\x86\xc3\x43\x79\x42\xb9\x46\x9e\xb1\x77\x6f\x32\x9d\x1a\xab\xd8\xab\x24\xe9\x46\xb4\x4c\xff\x3a\x4b\x8c\x9b\xa6\x95\xa6\xcb\x1d\x6e\xee\xfd\xfb\x55\xb2\x8e\x3c\x8b\x8a\x84\xcd\xb1\x96\xb9\x2e\x35\xdd\x6f\x68\xb1\x3e\x77\x66\x95\xff\x2a\x9f\x86\xd8\x0b\x61\x78\x12\x1f\x78\xd9\x00\x41\x44\x65\x87\x80\xda\x3c\x0f\xb7\x7f\xed\x13\x6e\xbc\x4e\xc4\xc4\xbc\xad\x70\x62\x95\x4e\x3a\xe5\x36\xe1\x03\xb9\x2b\x3b\x14\x9d\xd2\xc3\x0d\x73\xa8\x1f\x8f\x38\xac\x49\xc6\x37\x51\x08\xcd\xdb\x79\x9a\xc3\x1d\xf1\x84\xb1\xd6\x40\xee\xd9\x83\x63\xb5\xee\xbc\xa4\xe5\xab\xb1\x33\xb2\xe1\xbf\x01\x5e\x7a\xb5\xe4\xcd\x5a\xa9\x39\xc5\x07\x3b\x0d\xc4\x4e\xc4\x18\xe0\x6c\x92\x12\xf0\xc5\x53\xd5\xa7\xbf\xb4\x44\x18\xef\x56\x9e\xd9\x92\x86\x2d\xe4\x05\x29\x4b\x6b\x1d\x8f\xa1\x7c\xff\x0a\xdb\xd7\xc3\xe9\x25\x15\xc6\x77\x1a\x42\xdf\x01\x80\x3e\x8c\x31\x7e\xd3\xaf\x75\x00\xa8\xcf\xe7\x17\x2c\xfe\xe7\xd5\x9a\x34\x9f\x0b\x52\x12\x30\xc3\xca\x7d\xfe\xd8\x98\xf4\x15\x50\xa5\xe4\x13\x8f\xd9\xa0\x5b\x56\x73\x1d\x5f\xa8\x32\xef\x3d\x98\xbd\x14\xa4\x22\x74\x9d\x07\x8a\x73\xb4\xde\x56\x08\xc1\x49\x8d\xc8\xfc\x39\x2f\x18\x38\x59\x20\xfd\x88\x11\xdb\xc9\xba\xde\xae\x65\x61\x07\x4b\xb3\xa1\x81\xfc\xf2\xc3\x42\x35\x85\xe1\xb4\x56\xfb\xe9\x3b\xda\x78\x95\x73\xb1\x4a\xdd\x71\xe3\x5d\x0d\xef\x12\xe1\xa0\xc2\x05\x49\x73\x13\x4f\x33\xfb\x36\xda\xa8\xc8\x63\xfe\xee\x10\xe5\x58\xc1\xca\x2d\xfb\xc3\x81\x9d\x9a\x6b\x24\xdc\xbb\xf8\x42\x43\x4f\x2a\xb4\x89\x08\xe7\x71\x6d\xf9\x58\x2d\xc8\xf9\x24\x04\xd1\xaf\xe4\xcf\x7c\x61\x93\xc9\x27\x92\xb2\xe6\xf9\x07\x76\xa9\x54\xe8\x75\x92\x4e\x1b\xb6\x93\xdf\x59\x6a\x7a\xe4\x65\x42\x48\x61\x01\x77\x08\x2a\x5d\xd9\xf4\x19\x88\x26\xa8\xfe\xf1\xc6\x21\x46\x6f\x4d\xa4\x37\xd5\x9a\x55\xe9\x9c\x29\x20\x82\x5a\x11\x3f\xb5\x4a\x53\x7e\xa0\xe5\xb2\x68\x27\x72\x43\x8e\x66\x73\x49\xd7\xa5\x1c\xeb\x33\xb1\x6d\xac\x76\xdf\x6a\x0e\xa9\x11\x4e\xdb\x2f\x7c\xf3\x71\xa1\xd6\x85\x59\x59\x13\x85\x2a\x5e\x3d\xc6\xd8\x7b\xa0\x80\x26\xfd\xa0\x30\x2d\x7a\x72\xa9\xfa\x00\x49\x3f\x26\xba\xf6\x62\xdf\xc6\xd6\x91\xbd\x43\x40\x64\x07\xd6\x71\x5f\x7a\xc7\x00\xc3\x47\xe5\xac\xbb\x65\xae\xe7\x51\x0d\xb1\x83\x11\x93\x68\xa9\x73\x32\x02\x34\x76\x28\x9a\x93\xbf\x1e\x32\xff\x60\xba\x7b\x81\xee\x9a\x75\x8c\xd1\xc6\xad\x81\x4f\xbd\x80\x53\x65\x7f\xdd\x71\xb6\x5a\x11\x50\xe6\xd2\xa0\x55\x06\xe7\xd0\x4b\x23\xf5\xc6\x8d\x7b\x88\x1e\x7a\xb4\x05\x79\x97\x74\x74\x1c\x22\x7a\x9e\x81\x71\xa8\x44\x7c\xc5\x1e\xaf\x2b\x8b\x31\x98\xd7\xac\xe8\x6b\x87\xc2\xc5\xed\xc3\x55\x1f\x05\xcf\x70\xd9\x22\x95\xf5\xaa\x11\x4b\x42\xb5\x87\x03\xe8\x52\xfe\x66\xe8\xdf\x3b\xb4\x91\x54\xca\x1c\x6d\x21\x7f\xe3\x81\x37\x79\x9e\xab\x22\x4b\x82\xfc\x41\x3f\xb4\xc5\x85\x0a\x59\x76\x4a\xc4\x2c\x2c\x7d\x42\x3d\xe0\x2a\xe3\x08\xa3\x52\x77\xfc\xdd\x67\xf9\xe7\x5e\xc8\x50\x4d\x5b\x6b\x0f\x14\xfe\x30\x21\xfb\x26\x1d\x14\xd6\x09\x52\xe6\x8d\x03\x85\x6d\xda\x10\xde\x43\x1c\x43\xc9\xc7\xf9\xdf\x99\x65\xca\x82\x41\x74\x0b\x10\xc7\xe0\x17\xef\xd0\x84\x4d\x80\x24\x23\xe2\x4a\xf7\x4b\xa6\x2e\x16\xf5\x85\x40\x47\xee\xf8\x0e\xad\x95\x09\x23\xab\x17\x26\x04\x15\x4d\x5a\x84\x5b\xb7\x27\xff\xf8\xb1\x49\xd9\xa5\xf0\x65\xa2\x52\xff\xb2\xd1\x4c\x34\xb8\x0e\x8a\xa8\x1f\xbe\x78\xa7\xa9\xa1\xcf\x35\xa1\xc4\x45\xbd\x64\xff\x70\x71\x68\x31\x67\x20\xf5\x0d\x31\xb4\x8f\xb1\x8b\xbc\x8a\x34\x22\xdd\xc9\x3f\x19\xf2\x7d\x4a\xbc\xd0\x15\x89\x71\x6c\x5f\x16\x3e\x57\x41\x04\xe4\x42\x8c\xd9\xef\x07\xf3\x0d\xf4\x9c\x45\xc3\x10\xfe\x33\xf9\x7a\xec\xb6\x2c\x76\x7c\x26\x87\x38\x9d\x71\xb7\x06\x43\xc7\x4d\xe0\xbd\xc3\xa1\xfb\xf4\xed\x2d\x83\xf9\x08\x89\x71\xdb\x49\xbb\x78\x21\xf2\x09\x2f\x04\xc4\x70\xe1\xf1\x83\x46\x8b\x5f\x03\xce\xf0\xc5\x3d\x3d\x50\x18\x1e\xdd\x91\xe6\x3d\x64\x25\x99\xec\xd3\x8f\x6b\x45\x12\xa3\xc2\x2f\xb8\xb0\x5c\x6c\x9a\x90\x03\x07\xbf\x10\xee\x4d\x51\x28\x2e\x84\xad\xca\x53\xd9\xf7\x44\xaa\xfc\x32\xfd\x5a\x13\x24\x44\x9e\x74\x0b\x6d\x5b\x6a\x7c\x05\x9b\xf8\xb2\x66\x9f\x34\x4a\xa8\x72\x33\xc2\x83\xfb\x47\x9f\x34\xbd\x7d\x53\x97\x9e\xdc\xb0\x5b\x3e\xac\x8d\x78\x50\x3d\xc9\x6d\xad\x4a\xeb\xa7\xad\x31\xe2\x00\xc3\xb8\x42\x5d\xe1\x2f\xfe\x1b\x79\x6f\x68\x23\xa3\x26\x55\xb8\x75\x8f\xde\x2f\x01\xa9\x4e\xf8\xd1\x7f\xa6\x98\x5d\x98\xf6\xdb\x24\xf4\x48\x6f\x76\x33\x5e\x1c\xd9\xa9\x29\x72\x47\x60\xe8\x52\x5c\x6e\x30\xf9\x40\xd9\x58\x94\xbd\xf9\x3f\x76\xa9\xfe\xd6\x6b\xfd\x1a\x0f\x70\xc4\x72\x69\xd9\x55\xab\x3e\x71\x7d\xcb\x32\xf0\xb6\x2d\xed\xc6\x19\x4e\xf9\x04\xfb\x9f\xcd\x1e\x02\x07\xc3\xf6\x57\x06\xde\xbb\x46\x9d\xa5\x2a\x60\xcc\x6a\x2d\xba\x81\x85\xe1\xa1\xda\xf7\x68\x21\x31\x7e\xf5\x49\x93\xc9\xe0\xfa\x0e\x06\xc4\x23\xbf\x69\xc3\x5e\x34\x23\xb0\x15\x05\x69\x3f\xb3\x6c\x86\xe6\x32\x39\x13\xd8\x81\x2f\x7d\x4b\x34\xec\x15\xe4\xf3\xe9\x4d\xee\x26\x4d\x11\x87\x91\xa0\x17\x5e\xda\x67\xe6\x65\xc3\xab\xcf\x40\x7b\x8d\xfb\x65\xcb\x79\xe7\x8f\xc6\x69\x3c\x0a\x6a\x11\x2c\x68\xc0\xc5\x19\x23\x4c\x22\xbd\x47\x42\x5a\x46\x1c\x2c\x90\x34\x27\x1d\x1b\xd2\x5c\xee\x4a\xad\xb4\xf8\x4f\xa3\x5a\x1d\x63\xe4\x1e\x73\x45\xbb\xa8\x18\x90\xe7\x91\xb2\x46\xd3\x8b\xbf\xa0\x9c\x83\xca\x44\x27\x09\x6e\xd6\xd4\xca\x02\xe2\x60\x30\x92\x8c\xc7\x6f\x19\x9d\x99\xed\x22\x4e\x9e\xca\x9d\xd9\x76\xb6\x56\x18\x24\xff\x7f\x6f\xcb\x94\xe1\x47\x4f\x0a\x60\xd7\xa5\xc9\xd7\xff\xd5\xd4\x91\xea\x0f\x33\xf9\xcd\x16\x9c\x9a\x3d\x0c\x21\x62\x35\x1c\x4a\xcb\x95\xc2\x85\x86\xb4\xb6\xa0\x34\x8b\xbe\xc1\x3d\xac\x09\xb1\x32\xec\x85\x90\x79\xbe\x79\x8b\xe6\xab\x42\x02\x16\xf9\x42\x8b\xf5\xaa\xb9\x7c\xbf\x41\x1b\x1e\x66\xc9\x25\x87\xf4\x76\x41\x97\x2a\xd5\x7b\x88\xe7\x72\xa7\xe3\xff\xde\xa0\x5a\xff\xaa\x0d\x80\xe1\xcb\xd7\x1a\x24\x00\xcc\x92\xb6\x24\xe5\xa3\x1f\x5d\x62\x6a\xc6\x06\xe0\xef\x05\xc3\xfc\xab\x26\xab\x51\x2e\x87\x23\xa4\x68\x9c\xb1\x9b\xdb\xb4\x4a\xa3\xca\x09\x52\xb9\xdd\xc3\x95\x9c\x1a\xf0\x35\x87\x4f\x32\xe8\x09\x54\x28\x9b\xc6\xf5\x61\xca\x41\x1b\xeb\xc4\xd8\xbf\x6b\x56\x7c\x2d\xa4\xb8\x89\xd9\x5f\x37\x63\xda\x4c\xb9\x70\xfc\xc4\x12\x4d\x0e\x22\xf2\x48\x20\xb1\x03\x53\x0c\x37\x94\x80\xd4\x3c\x90\xd0\x02\x35\x90\x33\x0f\x18\xd0\xef\x32\xf2\x2a\xd4\x93\xb2\x3f\x85\xfc\xcb\xd9\x4b\x82\xc1\xf7\x14\x70\x39\x6a\x88\xb2\x62\x4b\x9b\x88\x50\x41\x48\x5d\x4e\xfb\x7d\xe6\x3a\xd5\x31\xd4\x49\x40\x40\x55\x86\xdf\x81\xef\xbd\x9d\x5d\x53\x20\x0f\x85\xd4\x01\xf1\x82\x96\xa1\xc0\x05\x53\x54\x71\xc0\x09\x3a\xfc\x46\xbf\xc5\x9d\x04\x93\x1f\xef\xe9\x51\x17\xe5\x06\x05\x36\x24\x41\xab\x63\xcc\x8f\xef\x4c\x7b\x39\x1f\x93\x54\x43\x77\xfe\x18\xfd\x35\x97\xe5\xe3\xce\xed\xd2\xfc\x32\x01\x24\xe2\xf1\xba\x06\xc0\xe0\x97\x75\xb4\xc4\x2d\xe4\x35\xf9\x16\x31\xbe\xdd\x40\xd3\x84\x0c\x59\xbd\x62\xc3\x98\xbf\xf0\x70\x76\x8d\x68\x53\xe6\x22\x20\x55\xa8\xb2\xee\xea\x67\x0d\x72\x0a\x8a\x2c\x14\x44\xc2\x0b\x23\xdd\xf8\x5c\x35\x9f\xdf\x8e\x45\x58\x9b\x01\x17\x6f\x19\x31\x4a\xa2\x18\x15\x80\x2a\x3e\x65\x93\xa1\x75\x4b\x82\x1a\x8b\x3c\x4d\x9f\xa3\x58\x78\xc2\x10\xc0\x8e\x82\x80\x1a\x9a\xb5\x57\xac\xe5\xc9\xf5\x7a\xb0\x91\xef\x8e\xa7\xbe\xaa\x26\x0e\x65\x62\x23\x8d\x3b\x37\x90\x7f\x78\x77\x36\xba\x97\x29\xed\x75\x91\xc2\xed\x16\x36\xed\x52\xc3\x3c\xf0\x9a\xc3\x19\xe7\xea\x93\xc6\x65\x2b\xec\x39\xb3\xa7\x09\xbc\xd2\x8f\xee\x33\xec\x24\x30\x12\x55\xf9\xef\x96\x8c\x54\xd3\xbe\xf4\x25\x9f\x33\x41\x8b\x94\xb8\x26\x4b\xb0\x5b\x47\x9c\xae\x5d\x1b\x48\xb0\xb9\x29\xf7\x65\xc1\xc2\x1e\x65\xa1\x8d\x99\x27\x60\xbb\x69\xa0\xcb\xff\xcf\xeb\x86\x09\x2c\xa9\x49\xe6\xf7\x6b\x65\xa3\x53\x61\x00\x3f\x77\x04\x9e\xf3\x3b\x23\xb2\xd7\xca\x8d\x02\x87\xb8\x06\x4e\xf5\x0f\x9b\x39\x20\xe4\x02\x98\xde\xe4\x8a\x7b\x34\xd7\x39\x2f\x64\x5c\xb3\xb4\x78\x4c\xab\x8e\x52\xc3\xe1\x9c\x65\x08\x71\xa4\x02\xb2\x12\xc2\x58\x1f\x67\x88\xc4\xe2\x20\x64\x91\xc5\xed\x13\x84\x1e\x7a\xf0\x84\xb1\xcc\x8c\x42\x87\x78\x69\xe9\x54\xbc\x7b\xa1\x39\x7e\x73\x42\xc1\xd6\xda\xba\x9f\x57\x7b\x4d\xee\x75\x3c\x62\x9f\xa6\xd3\xe5\x44\x01\xb4\xd0\xc5\x75\x53\xb4\x98\x65\xd3\xc0\xb7\x79\x33\x5e\xe8\xa8\x28\xf7\x05\xac\x69\x14\xe5\x1e\xd6\xa8\x2f\x30\x15\x72\x1c\x48\xd3\x6f\xef\x19\x95\x7c\x80\xa5\x4b\xaf\xd7\x6f\xc7\x6d\x23\x04\xfc\xc7\x41\x01\x57\xc7\xf8\xc3\x73\x1a\x36\x06\x48\x59\xfc\x36\xff\xfc\xd0\x58\x7d\xef\x44\x9d\x0a\xe6\xf2\x8a\x85\xb1\x6a\xfc\x50\x23\x3d\x2d\x2b\x8a\xf6\x7b\xc6\x8a\x42\x17\xa3\xd0\x0e\x81\x8d\x0f\x3b\xae\x37\x99\xee\xed\x94\x2e\xba\x6f\xd3\x64\xd4\x70\x9f\x45\x42\x51\x0f\x0e\x14\xee\x7a\x6e\x94\x3e\x3b\x43\x15\xd8\xf5\xde\x77\x44\x0d\x86\x1b\x36\x09\x5d\xcd\x37\x62\xa0\x18\x6a\x93\x01\x97\x7a\x35\x0a\x30\x8c\xf8\x1b\x63\x46\x6a\x42\x74\x21\x77\x36\xea\x3c\x32\x42\x44\x51\x1c\x90\x10\x4a\xf2\x6b\xd7\x99\xaa\xfe\x8d\x32\xe5\xa2\xa6\x79\x5a\x35\x10\xf9\xbe\xef\xa4\x48\x07\xbe\xdc\x2b\x6f\xd0\x94\xb1\x23\xcb\x46\x1e\xd2\x21\x1f\xf9\x69\x4a\x75\xb6\x05\xc9\x1b\x9f\xa5\x7d\x46\xe2\x55\x9d\xa8\x2f\x39\x11\x57\x2c\x36\x75\x1c\x1a\x92\x86\xfa\x2b\x9f\xdf\x86\xee\x8f\x77\x96\xba\xe3\xbb\xd6\x2a\xe5\x27\x9d\xad\xfb\xcb\xe5\x63\x8c\x84\x4b\xf9\xf7\x59\x7b\xa8\x5d\x69\xe0\xfa\xfa\xd6\xfc\xb6\x76\x83\x53\x23\x84\x4d\x5c\xdc\x2a\x16\x1a\x9f\x5b\x95\x16\x81\x34\x14\xeb\xf2\xcf\xad\x6c\xd3\x87\x6a\xfc\x3d\xff\x63\xcc\x3f\x6d\x19\xc1\x6d\xfb\xfe\x38\x7e\x12\x1b\x18\xf9\x50\xef\x3c\xa6\x15\x6e\x0d\xc4\xaa\x28\x09\x3d\xf1\xdf\x8e\x6a\x2f\x2e\x29\x44\xe0\x9a\xdc\xf5\x1c\x8f\xb8\x2e\xa9\x70\xa3\xec\x2f\x8c\x1b\xa7\xed\x24\x82\x00\x59\x76\x14\xe0\x90\x0f\xa3\x5f\x1d\x95\xee\x80\x2e\x9d\x09\xc3\x8f\xe5\xab\xc6\x88\xc7\x5c\x21\x40\x35\x92\x2a\x8e\x93\x5e\x36\x6b\x6f\x07\x2c\x43\x53\xb1\xe7\x6b\x0d\x5a\x86\x50\xf9\x0f\x14\x71\xeb\xe5\x47\x75\x7f\xec\x72\x99\x6b\xbc\xc5\x3b\x6c\x53\x57\xdd\x45\x41\x52\xb7\xf3\x1f\x4c\x8a\xc8\x2b\x8e\x65\x03\x50\x33\xaa\xd1\xc0\x41\x75\x82\x24\xde\x76\xa0\xe0\x0b\x76\xb7\x4d\x6a\x36\x0e\xc2\x92\xd4\x7b\xca\x2d\x7d\x51\xdb\x46\x84\x1c\x0f\xc6\x05\xdd\xbc\x76\x75\x2e\x4a\x19\x30\xd4\x15\xca\x15\x91\x81\xc6\x54\x18\x8b\xe4\x89\x9a\x3a\xf1\xff\xb5\xd6\xc4\x1e\x85\x92\xc7\x9b\xff\x86\x61\xf9\x18\xa0\x94\xdf\x9e\x3f\xd4\xaf\xca\xf4\x48\x33\xa7\xce\x3f\xf8\xb2\x49\x21\xa5\x62\xe1\x5d\x3d\x9e\x9d\xe1\x4d\xe5\x04\xe0\x53\x5f\x16\x92\x1b\xae\x1f\x0a\x47\xe2\xc2\x8c\x35\x42\xb6\x84\xc3\xe8\x21\x3c\xfc\xe0\x58\x36\x02\xcf\x9c\x31\x3b\x2d\x08\xe7\x1b\x1e\x19\x40\x80\xe7\x13\xcd\x2b\x76\xab\xab\xd9\x2a\xb2\x93\xdb\x97\x3f\xc3\x28\xd0\x4a\x73\xa6\x89\x25\xf2\xb7\xb5\xd1\x1c\x06\x90\x30\x6c\xbe\x8a\x53\x0c\x21\x11\x1b\x3b\xd8\x33\xe4\xa8\x3e\x3f\xc4\x34\x1e\x80\xdd\x14\x2f\x8b\x8a\x17\xee\x35\xa6\x85\xc8\xea\xc5\x21\x06\xd3\x70\x5e\x8c\xfe\xe6\x1d\x65\x7c\x62\x27\xf7\xe5\xf7\xed\x86\x9e\x38\xf6\x90\x13\x36\x85\x4c\x55\xee\xef\x1b\x06\xed\x2d\x01\xf4\x0c\x2f\xf3\xeb\xe3\x46\xc8\x47\x6a\x53\x10\x33\xf7\xf7\x9b\x38\x35\x10\x7e\x13\x46\x38\x03\xf9\x78\x98\x84\x47\x44\x7c\x0a\x5b\xb8\xcb\x50\xa8\xb3\x1c\xe2\x96\x53\x7f\xc0\xcf\x19\x96\x99\x36\xea\x47\xac\x42\x23\xe1\xf1\x51\x58\x7b\x19\x7f\xd1\x16\x0a\x2d\x1b\xc1\xda\xa8\x70\xdc\xa0\x63\x5a\x51\xa8\x9b\xb1\xe4\xeb\x5a\xca\x2f\x3b\xd4\xea\xe5\x77\x62\xff\x6b\xaa\xc3\xa6\x3a\xfb\xf2\x17\x1a\x20\xb4\x82\x1d\x52\xe7\x04\xe1\xe2\x67\xea\xe9\x77\xb1\xf8\x4c\xfb\x9f\x8c\xe7\xd9\x60\x00\x34\x14\x45\x4d\xf1\x82\xe7\xb2\x87\x75\xba\x68\xd1\xb7\xb7\x88\xbc\xb2\xb0\x4a\x1d\x42\x05\x7f\x74\xd1\x39\x4a\x21\x14\x8e\xed\x6e\xe5\x2f\x85\xeb\xfa\x16\xec\xb6\xb7\x15\x59\x28\x6a\x1d\x5f\xb0\x59\x63\x34\x7c\x74\xc3\x4d\xe9\x48\xa7\xec\x1c\xa7\x57\xea\x01\x75\x48\x25\x5d\x50\x3c\xb4\xc7\x44\xda\xc3\xa8\xb4\x99\x7a\xd1\x3f\xf0\xb2\x66\x51\x45\x7d\x0c\xa5\x28\x40\xf4\xa6\x99\x50\x41\xa7\x42\xb0\x34\x58\x29\xe2\x3e\xd3\xf4\x0b\x59\x21\x01\xa5\x01\xfe\xf6\x97\xae\xe5\x4f\xd8\x72\x30\xab\x41\x0b\x7e\xd7\xde\x8c\xbc\x78\x08\x1a\x26\xf1\x5f\x0c\xa5\x66\x97\x54\x60\x50\x28\xee\x5c\x57\xa7\x21\xad\xc1\x6a\xc8\x93\x83\x0a\xa8\x27\x7f\xb0\x4c\x75\xaa\x2e\xae\x90\x50\xa1\x4d\x6e\x5a\xa0\x79\x6e\x3b\xb4\x51\xea\x8e\x6f\x3d\x6a\x74\xa5\xb6\x3c\x8f\xb9\xab\xc6\xa8\x42\xa8\x0b\x96\x8a\x65\x64\x43\xd2\xf9\xf7\xe7\xcc\xad\x4a\x24\xed\x15\xf2\x43\x2a\x19\xc8\xb1\x1c\x27\x8f\xdc\xac\x4d\x76\xa3\xb0\x8c\xac\x5e\x6e\x3b\x6b\xe8\x1b\x03\x01\x0b\x7e\x55\xfc\xa5\x96\x8f\x46\xa4\xab\xed\x2b\x5d\x9a\x93\x2a\x02\xd6\xfc\x47\x4e\x55\xd5\x11\x2c\x72\x50\x35\xc4\xcc\xa3\x7c\x73\xf7\x54\xfb\x38\x33\x24\xf9\x55\xae\xec\x15\xff\xaa\xa2\x19\x65\x86\x49\x5e\xa9\x91\x20\x0c\x10\xe1\x62\x1c\x3f\x9c\x92\x72\x73\x5c\xc8\x15\xef\x3d\xa1\x13\x94\x69\x1f\x01\x60\x47\xe1\xc7\x87\xd3\x88\x5f\x43\xae\xd6\xc5\x5f\xfd\x60\x3a\x0a\x08\xe1\x0d\xad\x5c\x6d\xcc\x93\x69\xc3\x03\x29\x23\x88\xf7\xef\xbf\xcc\x07\xc4\x5e\x14\x32\x92\x36\x99\xf9\x3f\x69\x7f\x35\x88\x5c\x17\x68\xf0\xf1\xeb\xc7\x8c\xc1\x38\x76\x50\x53\xc0\x4f\x2f\xbe\x49\x2e\xe3\xa2\x72\x59\x9c\xff\xb1\x93\x27\x68\x39\xba\x55\x71\x35\xff\x88\xa9\xf4\xca\xa9\xeb\x82\x78\xf1\xae\x21\x7f\x64\x53\x96\x1a\x17\xe6\xfd\x67\x78\x9d\x5f\x25\x50\xc0\x9c\xf6\xc6\x44\x3d\x2f\x13\xaf\xcc\xb0\x65\xeb\xe8\xd6\xc2\xad\x15\x13\xd7\x0e\x62\x38\xd2\x91\x77\xfb\xea\x0e\x5d\xb8\x84\x80\x61\x94\x0a\x10\xbf\xd2\x0e\xba\x65\x63\xac\x2c\x22\xf2\xb7\x1b\xcc\xcc\x72\x14\x60\x11\xb9\x0a\x77\x4e\x16\x68\x00\x1c\x84\xa0\x86\xd4\x0f\x05\xd0\xdf\x9e\x3d\x4b\x5b\xd1\x86\x61\xeb\xa3\x79\xff\x59\x8d\xce\xe3\x00\xf8\xa2\x70\xee\x86\x74\xc6\x6a\x0d\x02\xc0\xbb\x61\x9e\x81\x5e\x21\x35\x1b\x84\x43\xfb\x4b\xdd\x71\x63\x41\x8b\x03\x86\x85\x83\x40\x0a\x2b\xde\xf5\x62\x16\x9e\x50\x0e\x6b\x83\x4c\x45\xf2\xb7\x79\x63\xf4\x36\x88\x54\x08\xc7\x9f\x14\x66\x6c\xec\xd0\xca\x4a\xb9\x00\x9f\x2a\x9d\x4b\x36\x2f\x6a\x91\xee\x88\x3c\x3c\x88\x0a\x66\xe1\xbe\xf9\xe7\x7a\x9a\x78\x04\x12\xbb\xff\x96\x2f\xfb\x59\xdb\x50\xf6\x0b\x05\x5a\x54\x4f\x40\xdb\xee\xe7\x85\x96\x72\xbf\x2a\x75\xc7\xb7\x79\x9a\xff\x29\x0f\x68\xfc\x5f\xfc\xf9\xf9\xec\x64\x9c\x94\x5d\xa8\x08\xb3\x7f\xf8\xff\xad\x32\x35\xa6\x65\x83\x9b\xd4\x9f\xd1\x75\x66\x64\x16\xb2\x07\xd2\x31\xe4\x33\x0b\xf8\xac\xf5\x1a\xda\xf4\x88\xad\x37\x55\xb9\x9f\x6c\xd1\xf4\x48\xa9\x17\xda\xc9\x87\x3a\xf9\x26\xbd\x5e\x77\x44\xde\xc9\x6d\x11\xfa\x28\x30\x94\xc6\x82\xed\x75\x53\x7a\xf5\xad\xfe\xa4\x1d\xbb\xf7\x5b\x86\xba\x9e\xe3\x74\xa6\x35\x6e\x7e\xcb\x76\xf3\x7a\x85\xd8\x11\xe7\x36\xb7\xa8\x6c\x84\x43\xcc\x5c\x1e\xf1\x2b\xb7\xab\xc7\x57\xc7\x36\xb4\x91\x7c\xdf\xf6\x19\xc3\x77\xb7\xe6\xc0\x46\x96\xa7\xea\xce\x38\xd5\x1b\x9e\x0b\xd8\xa8\xb7\xdf\xe0\x0d\xec\x27\x1c\x87\x71\x2b\x50\xf9\xd6\xc8\xa9\x9a\x38\x29\x43\x9e\x65\xf3\x89\x6c\xc7\x8b\xd9\x16\xeb\xd3\x62\x29\x97\x1f\xa2\xe1\x38\x2c\x46\xab\x00\x0b\xeb\x7c\xd9\x98\x11\x30\x8c\xc5\xe6\x65\xb1\xa9\x8a\x85\x9a\x34\x05\x0b\x16\x6f\x7c\x97\x1f\x9a\x65\xd8\x4b\xfe\x1f\x0e\x0d\x2b\x7e\xe1\x89\xec\xe1\xd0\x50\x1e\x3e\x4d\x45\x3f\xce\x30\x50\xa9\x96\x4d\x9c\x0a\xc3\x62\xa5\x90\x9f\xe4\x18\x2a\x05\xb0\xa6\x6d\x3d\x64\x85\x8b\xde\x90\xf2\x37\x41\x80\x6a\x5c\x27\xe5\xc6\x3d\xd9\x30\x33\x7b\x76\xe7\xac\x99\x62\x28\xf5\x1b\xcd\x33\x1f\x39\x0e\xb7\x1e\x5e\xab\x93\x3a\xa5\x69\xaa\xd0\xd8\x1e\xf5\xa4\x70\x05\xa8\x63\x66\x71\x74\x61\xee\x97\x6b\x04\xff\x02\x59\xbd\xa8\xc6\xdb\xc9\x2b\x8f\x67\xbf\x90\xd0\x93\x11\xd3\xc6\x13\x4b\x5a\x9c\x0e\x2a\x32\x35\xcf\x9a\x71\xb6\xd6\x52\x06\x11\x6b\x31\xec\x8f\x8f\x8f\x30\xce\xa7\xeb\xe3\x8a\x5c\xed\xe4\xde\x69\xd7\xf6\x63\x36\x66\xb8\x4a\x59\xeb\x7a\xe7\xe3\xca\x98\xdf\x0d\xe0\xe8\x3e\xcb\x95\x5e\x4b\x37\xd0\xde\x66\x8b\x77\x5c\xe1\x9b\x33\x84\x67\x4a\x2a\xad\x02\xdf\x73\x74\xa7\xe8\x93\x25\x27\x36\x3f\xa7\xdf\xe0\x25\x92\x20\x90\xee\x01\xf9\xea\x6a\xfe\xa8\x9c\xa4\x1f\x12\x03\x9b\xea\xb3\xaa\x35\xe4\x2e\x92\x02\x9b\x77\xc9\x2d\xfc\x40\xf9\x34\x08\x4b\x37\x52\xe6\xc0\x7f\xfe\xd9\x57\x35\x21\x0a\x1b\xf4\x90\x20\x92\xde\xd5\xaf\x85\x27\xcb\x8a\x7c\xe4\x59\x1c\xad\xb2\xf0\xf9\xec\xe9\x71\x30\xaa\x0d\xe6\x7d\x50\x6c\xdb\xaf\xcd\xae\xa3\x10\xb2\x59\xf2\x0b\x3e\x3b\x29\xcd\x1f\x75\x97\xb4\x44\xb6\xc9\x8b\xcf\xd4\xa4\x62\x18\x09\x42\x9d\xbd\xf2\x87\x97\x54\x49\x20\x2c\x4d\x92\x27\x61\xdf\x67\x3a\x22\x06\x12\xf3\x72\x6c\xff\x14\xa3\x49\x62\x01\xf5\x3c\xec\x24\xd5\x79\x8b\xa3\xf4\xcb\xbc\x23\x02\x7f\x7e\x5e\x0b\x7d\x6b\x81\x04\x8e\xf3\xf3\x53\xea\x8e\x3f\xd8\x9c\x96\x3d\x3e\xd1\x9c\x05\x0b\x0f\xaf\x34\x8b\x44\x14\x8a\x43\xba\x78\x5f\x8b\x43\x86\x13\x81\xc4\x83\x08\x4d\xe3\x8e\x8e\x12\x2f\x93\x5b\x89\x0b\x57\xc0\xad\x2f\x68\x6a\x37\x8e\x13\x09\x72\x59\xfe\xb3\x4b\x8d\x83\x81\x2a\xc0\x2e\x87\x32\xe8\xc2\xa3\xc6\x7d\x21\x56\x48\x5c\x51\xb5\xc4\xff\xdc\x7e\x96\x99\x84\xa5\x98\xac\xa8\xb8\x5f\x9b\xdb\xaa\xaf\x86\xbd\x0a\x96\xd7\xaa\xf0\xf6\xb2\x89\xc6\x1f\xa8\x9b\xe2\xcb\xa3\x27\x6a\x8b\x9c\x26\x6e\x68\x6d\xfb\x96\xa9\x9c\x5c\xb2\x88\xba\xc4\x03\xd2\x7e\xba\xc1\xb8\x7b\xa2\x21\x3b\x16\x55\x88\x54\x4d\xc9\x7d\x6a\x51\x36\xdb\x96\x29\xe8\xe4\xd1\x28\x80\xaf\xce\xbb\x34\x67\x9b\x40\x4d\x63\xc4\xf7\x62\xb9\xb5\x87\xc6\x28\xcb\xe2\x5e\x6d\xd6\x11\xae\x37\x05\x2b\x5c\x1c\x08\x3a\x6b\xfe\x8c\xd3\x74\xbd\x7d\x1a\x02\x1c\x13\x08\x01\x2b\xf9\x45\xb2\xb1\x4b\x02\x3f\x09\x09\x40\x24\x1b\xa3\x99\x26\xa0\x4a\x4b\x88\xc8\x3f\xb4\xd3\x3c\x1b\xd8\x13\x00\xa3\xb3\x5e\x1c\xa5\xd5\x02\x65\xc2\x45\x41\x06\xe6\x69\x4a\x25\x51\x80\x23\x37\xa3\x7f\x8c\x8d\x01\x12\x62\xa8\x8a\xc2\x8c\x5b\x67\xe1\x2c\x43\x38\xb0\x4c\x03\xbe\xb2\x2f\xcc\x5b\xd6\x32\xe6\x71\x49\x28\xeb\xda\xc2\xeb\x46\x4c\x0c\x50\x9d\x32\xa9\x75\x98\x6b\x3b\xa8\xf1\xab\x48\x18\x22\xd8\xbb\x0e\xe4\x8f\x3e\xc7\xab\x61\x9b\xf0\x71\xf3\xe7\xd6\xeb\xcc\x35\x9d\x96\xbf\x58\xb3\xf7\xa5\x21\x01\xb1\xd9\x7c\xfb\x89\x91\x19\x74\x35\x88\x70\xe5\xee\x98\x7f\xba\xf8\x27\xa0\xe1\x05\x39\x62\x53\x4f\xb6\xdf\xc5\xac\x0e\x28\x4f\xf8\x74\x07\x36\x66\x0f\x6f\x0f\xea\x45\x2c\x54\x63\xb5\x5c\xff\xa6\xd1\x99\x9f\x26\x15\xbe\x54\x1b\x77\x9a\xa2\xea\xc0\x10\xfb\xeb\xc2\xed\xde\xc5\x1e\xf5\x51\xc4\x53\xf0\x45\x7b\xb2\x45\x24\x6c\x1d\x9c\xc1\xfc\x8c\x26\xb3\x16\xd3\x36\x87\x32\x59\x8a\x74\xbc\x35\x4a\xc3\x7e\xf1\x6d\x74\x77\x3c\xa6\x2f\xcb\xd6\x47\x81\x85\x07\xe7\x2e\xe7\xdf\x79\x55\xa7\xc0\x06\x24\x90\xf4\xe2\xc2\xc1\xa5\xc6\x72\x03\x85\xa8\x04\xea\x7e\x96\x34\x97\xce\x6f\x7e\xc4\x04\x99\x3b\x5c\x89\x3c\xa9\x1f\xdf\xd8\x95\x86\xe8\x72\x4f\xeb\x5f\xfe\x27\x21\xdd\xe0\x63\xae\x09\x3a\x90\x5b\x3c\x59\x5b\x2f\xf9\xa8\x21\xcc\x99\x4e\x14\x27\x9a\x91\xa6\x8a\x21\x81\x09\x93\xc8\x78\xe3\x16\x6d\xf9\x88\xca\x8c\x50\x07\x43\xe1\xf4\x99\x7d\x3c\x1c\xd2\xb2\x43\x6a\xaa\x9d\xff\xd8\xc6\xf1\x7a\x7f\x84\xbd\x5a\x72\x8f\x94\x51\x5e\xe9\xf9\x89\xda\x88\x24\xe4\xd4\xb5\xec\x6b\xb9\x6f\xbb\x31\xd5\x68\x24\xaf\x50\xe2\x7a\xab\xd7\xf1\x33\x1c\xf1\x3d\xc6\x91\x09\x2d\xdf\x00\x8c\xcd\x41\xd4\x1d\x7a\xd7\x23\xed\x86\x9c\x0a\x0a\x25\xb4\xeb\xba\xf7\x39\x57\x69\x11\xae\x62\x6f\x90\xc6\xf3\xaf\x9d\x0a\x97\x51\xa1\x42\xb9\xe6\x3a\x47\x73\x18\xa4\x8d\xe4\xf7\xac\x99\x68\x0c\x17\x03\x82\x6d\x63\x5b\x76\xfb\xf9\x06\x7e\x95\x4b\x50\x43\xb7\xff\xef\x1d\xe6\xbb\x0e\x49\x6a\x0c\x5a\xb8\x6c\xd8\x59\x66\xb0\xaf\x63\x16\x92\x72\x8a\x9b\xf5\x35\x15\xaf\xc0\x42\x55\x52\x21\xc9\x0f\xf6\x6f\xd6\x34\x13\x49\x95\x73\x65\x37\x70\xef\xf6\xd2\xd5\x91\x65\xb5\x26\xf7\xff\x5a\xa6\x01\x50\x05\xd4\x85\x8f\x77\x1f\x3a\xd5\x10\x4c\x42\x41\xc8\x67\xc4\xaf\x1c\xe1\xa7\xed\x0a\xcc\x04\xaf\xfd\xa6\x1d\x06\x6a\x01\x59\xbd\xa9\x43\xd4\xcf\x76\x28\xd5\x2f\x4f\x4b\xce\xc5\x95\x86\xb6\x11\x68\x34\xb8\x94\x7a\x82\xe0\x9d\xdb\xbf\x53\x93\x67\xa0\x91\x93\x94\x55\x02\x8c\x98\x9f\x70\xfb\x19\x46\x55\x42\x90\xc7\xf7\x48\xf9\xe9\x1c\xc3\x53\xba\x4e\xb8\xdc\xb6\x54\x42\x77\x69\x3e\x46\x55\xbe\xa2\x8c\x4b\xda\x2f\x4c\xaa\x23\x9f\x11\x4f\x4e\xec\xc8\x3d\x26\x51\xaf\x82\xa9\xcc\x6f\x95\x4e\x21\x11\xc6\xd5\x3a\x4b\xdd\xf1\x8f\x98\x82\x68\xdb\x48\x36\x56\x3f\x57\x16\xee\x17\xf4\x21\x2d\xeb\x3d\x7d\x7f\x36\x11\x51\x06\xde\xfa\x00\x99\xbb\x50\xf3\x20\x9f\x31\x73\xea\xb4\x69\x5d\xa5\xee\xf8\x1b\x47\x8d\x3b\x10\x85\x24\x63\x0b\x1d\x5f\x57\x36\xbd\x8e\x93\x36\xe4\x82\xd3\xb2\xaf\x94\x5a\xa1\xd8\x9c\x2e\x59\xab\x22\xb0\xa0\x7f\xc1\x14\xfd\xa3\x07\xf4\xf5\xa0\xb8\x67\xc9\xd3\x7a\x76\xa9\x66\xa6\x43\x19\xc3\x16\xef\xf6\x72\xd5\xf9\xda\x8c\xad\x69\x39\xc4\xe2\x1b\xcd\x8f\xb0\x11\xe2\x5c\x02\x15\x33\x29\x3a\x6e\x32\x05\xd3\xac\xa4\xa4\x4b\x97\x02\xdb\x2e\xe3\x2b\xab\x19\x25\x60\x12\xe4\xa7\x18\xe3\x14\x5a\x4b\xa7\x84\x3f\xdc\x39\x36\x13\x84\x90\x2b\x84\xf3\x0a\xcb\xde\xcc\x36\x87\xe5\x88\xeb\x15\xe4\xbf\xe4\xa5\x0d\xc2\x5c\xe0\xd4\x17\x9e\x3e\x64\x74\x86\x08\xe8\xf3\xa5\xee\xf8\xee\xfb\xb3\xcf\x2d\xc9\xcb\x00\x9a\x99\x38\x91\x6f\xc2\xae\x4b\xe2\x21\xa0\x30\x76\x18\x0e\x6a\xc8\xe7\x91\xa7\xa2\xf9\x0f\x57\x23\xa1\x74\x18\x77\xbd\xaf\x2d\x65\x89\x57\xe1\xb2\xf3\xb9\x4f\x19\x62\xc1\x15\x86\x92\xcb\xcc\x6f\xdf\x5b\x6b\xc7\x68\x6b\xf7\x6a\xc4\x04\xdb\x38\xff\xf4\xba\x16\xaa\x2f\x68\xde\xcb\x0d\xfb\xd2\x95\x9a\x1c\x1b\xe6\x88\x92\x99\x4f\xf2\xb7\x72\x7d\x88\x58\x2f\x6f\xd7\x6f\xba\x5f\x87\x4b\x12\x01\x95\xff\x93\x61\x68\x82\x7c\x1f\x31\x68\xf1\xb9\xec\xd2\x87\xb7\x18\xf5\x89\x0d\xa6\xc9\x7c\x8c\x54\x6c\x7f\x55\x92\x6f\xa4\x20\x74\xe1\xf2\x87\x78\xd1\xf6\x71\x9a\xbc\x74\x79\x47\x7e\xbb\x49\x83\xb7\x91\x30\x12\x55\x77\x1c\x3c\x2e\x6a\x48\x8b\x32\xa8\x58\xc7\x1d\xd6\x70\x12\x88\xb7\xd1\x53\x86\x6a\xcb\xf8\x80\x0a\xfb\xec\xf8\x27\x8f\x4c\x30\x82\x2d\x00\xb1\x49\x5d\x72\xfd\xab\xcf\xa8\xa9\xed\xa7\x5b\x3a\xc3\xaa\x61\x22\x53\xc6\x0e\xc1\xa0\xeb\xc7\xa3\x54\xf1\xde\xf7\xb5\xf9\x4c\xc4\xbd\xb8\x07\x0a\xaf\xbc\xaa\x09\x08\xa0\x40\xa7\x32\x16\x97\xee\xcb\x56\x2c\x41\x88\x42\x3c\x18\xe3\x30\xf7\xe7\xd7\xb5\xc2\x8e\xfa\x91\xc3\x81\xe7\xc5\x49\x8f\x9a\x3a\x4e\x48\x38\xa9\xc4\xff\x30\x4c\x90\x45\x93\x4b\x5c\x81\x3b\xf9\x2f\x2f\x6a\xdc\x77\xc2\x4a\xe0\xbe\xcb\x57\xee\x1d\x8f\x29\xbc\xe2\x9c\x4e\xc0\xd8\x45\x3b\x15\xd5\xb9\x91\x5c\xd4\x17\xfa\x0c\x7a\xb9\x8d\xa4\x9b\xfe\x63\x8b\xd3\x5b\x34\xab\xd4\x95\xfc\xad\x11\x6d\x06\x64\x47\x28\x2c\xe9\x60\xa2\x1f\x1c\xd1\x26\x39\xa0\x2f\xc7\xa7\x0f\x63\x6c\x43\x24\x9b\x06\xd2\xf0\x2d\xfe\xcb\x36\x1e\xd3\xaf\xa7\x11\x07\xbf\xb4\xa8\x90\xda\x6a\xdd\x44\x34\x5e\xca\xda\xf6\x36\x71\x22\x92\xcf\xc1\xff\x52\xe1\xbf\x1f\xc9\x8e\x6d\x2c\x87\x78\xa1\x48\x3c\x6a\xe2\xf4\xa5\x31\x9a\x90\x2d\x2d\xd3\x7e\x5c\x4f\x2a\xa4\x55\xc2\xde\x9a\x91\x72\xe4\x21\x4e\x72\xf9\xec\x4a\xad\x2b\x14\x77\xa3\xd4\x1d\x4f\x5e\xa2\x64\x08\x6c\x78\x17\x27\xdd\x9e\x46\xe6\x5e\x54\x96\x91\x79\xdd\x1e\x4d\x01\x97\x21\x0e\x74\x9e\x36\x9f\x07\xc0\x39\x33\x40\xe2\xe2\x2b\xb7\x9b\x82\x43\x5e\x85\x4b\xca\x3f\x25\x6e\x71\x52\x3b\x47\x0e\xa4\xce\x39\x0b\xb5\x9d\x5c\x54\xa9\x70\xb8\x47\xe1\xe8\x43\x46\xff\x81\x25\x6c\xfa\x94\x27\xcf\xd2\xe5\x1c\x18\x72\x91\x47\xf4\x15\x42\xfe\xab\xb7\x68\x18\x7d\xc4\x70\x83\xb3\xca\x0a\xff\xda\xd6\x26\x7b\x32\x97\x78\xfc\x7b\x7f\x78\x8d\xee\xe2\x06\x06\x68\x7c\x85\x50\xb8\x96\x8d\x1c\x2c\x4c\xbf\xa1\x79\x73\x41\xfe\x13\xfb\xfc\xfe\x3d\xca\xd3\xbf\x09\x5a\x6e\x1e\xd1\x8c\xb5\x7e\x55\x37\x51\x43\x75\xec\x50\x5f\xf7\x7d\xcb\xff\xd3\x3b\x3a\x9e\x9f\xbb\x60\x96\xba\xe3\x95\x4b\xcf\x34\x92\x68\x7f\xbf\x93\x9a\xb3\x7f\x6f\x89\xea\x1e\xeb\x83\x98\x5a\x16\x8a\x6d\x2a\xc7\xa7\x48\xc2\x8f\x55\x78\x98\x62\xc2\x6c\x64\xa0\x78\x6e\x31\x7b\x51\x3d\x1a\x4a\xd5\xb6\xfc\x8e\xfb\x78\x65\x3b\xfd\xd2\x4b\xa7\x97\xba\xe3\x79\xdb\xd5\x2b\xeb\xc7\x15\xe2\x38\x10\x9d\xce\x5f\x3b\x3a\xad\xce\x90\xd7\xe4\x22\x5f\xdd\x03\xf9\xdb\x1e\xd2\xb4\xb7\x98\x65\x93\x10\x5b\x10\x1b\xce\x7e\x5f\x93\xbe\x48\xee\xef\x84\xe3\xea\xbb\x54\xa2\x32\xf1\xb8\x45\x40\xfa\x10\x4f\x77\x8c\xd8\x8d\x2d\xea\x49\xbe\x53\xee\x53\x8f\x69\x76\x47\x18\x85\x5c\x3a\x60\xe6\xd2\x73\xd4\x61\x60\xd4\x0b\x09\x66\xb8\x55\x19\xdc\x5d\x3f\x5a\x93\x0e\xa1\x0d\x0f\xcc\x2f\x06\x72\x3b\x85\xcc\xa8\x8b\x7c\xb1\x75\x4f\x7e\xe9\xb3\xd7\x9d\xad\xd5\x74\x52\xae\x38\x5b\xba\x8d\xee\x3a\x5d\x9b\x1f\xc2\xfe\x2e\xf7\xa5\x50\x99\x87\x23\x2f\x6b\x8a\xf2\xa6\x09\x4e\x87\x12\x86\xa7\xd2\x17\x87\x08\x19\x2b\xec\x54\x4b\xd8\xf5\x1d\xda\xe4\xc1\xfb\x9d\xd7\xf9\x10\xda\x6e\xfa\x98\x11\xaf\xaa\xa6\x3f\x77\xb7\xa9\x66\xc0\x85\xba\xf1\xb0\xa1\x00\x18\x58\xe0\xab\x2c\xf0\xac\xe3\x5f\xd5\x74\x96\xa9\x43\xa1\xa3\x88\x47\xa8\x9b\x54\x86\x75\x0c\x24\xb9\x8f\xae\xe2\x0f\xe5\x8a\xaa\x54\x86\x4e\x52\xe2\xdc\xcd\x62\xa6\x48\xdc\x54\x65\xe7\xe7\x86\x36\x92\xb0\x01\xa2\x5e\x68\x8b\x0e\x61\xd8\x1e\xcd\xf6\x29\xb9\xa8\x65\x2c\x44\x22\xae\x36\x44\x90\x6c\xd4\x2f\x7d\xb4\x72\x8b\xcc\xb4\x82\x99\x74\xdd\xc9\x3d\x5c\x1e\xa3\x75\xb7\x96\x13\x09\x85\xe0\xdc\x1d\x0f\x9a\xf6\xcf\xb3\xa7\x8b\x23\x5e\x1c\x3f\xad\x65\x4e\x5c\xc1\x61\x88\xc4\xd3\x19\x2a\x3a\x09\x4d\x9f\xb8\xaa\x79\xc5\x62\xae\x29\x93\xbf\xf8\x11\x63\x98\x88\x7a\x45\xdb\x1c\xbf\xc2\x57\xfd\xa5\x2b\x91\x17\x59\xad\xa2\x0b\xb9\x7d\x43\x34\x93\x69\xce\xb9\xcd\xfd\xf3\x7b\xd9\x96\x3e\x20\x15\xe4\xf5\x52\xee\x1d\x64\xc8\x91\x8d\xd0\x56\x08\x36\x37\x4d\x2b\x5c\x7e\x50\x5b\xcf\x63\xe0\xa1\x82\xf8\x7b\xbe\xd3\x10\x64\x0e\x23\xb7\xec\x48\x37\xf9\xc2\xf0\xe5\x67\x68\x83\x77\x87\x94\x41\x6f\x88\x7f\xed\x2b\xdf\x57\x44\x79\xd4\x07\xe4\x64\x4d\x44\xdd\x46\x34\xe4\xc3\x97\xc2\xd4\x67\xb2\x8f\xa2\x41\x59\x68\x8b\x98\xf5\xa7\xdd\xba\x9d\x05\x4e\xf1\x06\x77\x68\x81\x1b\x7b\x94\xb9\x30\x80\x8e\x1f\x7a\x42\xea\x2a\x61\x97\x70\x51\x93\xc2\xde\xcb\xd2\xec\x54\x63\x52\x2b\xfc\x9a\xad\xc2\xfa\xa4\xcf\x77\x90\x27\x4b\x32\x6f\xaf\xa1\x7f\x1b\x11\x27\x4c\x79\x10\x3f\x7d\xb4\x5d\x7f\x8f\x44\x8c\x04\x93\x7f\x75\x4a\xa7\x26\x56\x39\x73\xda\xb4\x52\x77\xbc\xc8\x18\x6f\x56\x93\x76\xd7\x81\x05\x1c\xbf\xa9\x67\xce\x48\x67\x88\x65\xfe\x12\xff\x7b\x94\x66\x45\xcb\x22\x17\x96\x0b\x2b\x26\xff\xff\x13\x44\xe4\xab\xd7\x91\x86\xcd\x82\x4b\x39\x07\x46\x46\xe5\x21\x07\xcd\x01\x83\x90\x6a\x66\x12\xc7\x93\xff\xe8\x45\xc6\xac\x4e\xe0\xcc\x05\xbc\xe4\x9e\x87\x45\x16\x88\x1c\xce\x7e\x2b\x6e\xba\x6e\xb4\xf6\x32\x99\x00\x73\xc6\xbb\x2a\xea\x20\x55\x49\x60\x4b\x22\x63\x61\xdc\x3a\x2d\x6a\x94\xe6\x4e\x03\x41\xae\xa9\x87\x0d\x49\xc3\x14\x84\xe6\xf5\x2a\xbd\xc7\x1b\xa7\x69\x3d\x73\xc4\xea\x98\x38\x0e\x1f\x07\xc6\x37\x1f\xd7\x5c\x76\x5c\x9f\x08\xbb\xd2\xa9\x6d\x86\xbc\x8e\x83\x2d\x01\x9b\x2d\xfc\x70\xb9\x51\x73\xd0\xf0\x62\x56\x06\x72\xc1\x19\xc7\x75\x7d\x71\x21\x41\x53\xb0\x16\x65\x00\xb1\x11\x13\xe8\xfb\x27\x34\xbc\x2d\x0a\x51\x2f\x90\x21\x7e\xfc\x48\xb6\x1a\x69\xa4\x4b\x9e\x2b\x35\xfb\x6d\x0b\xf9\x20\xec\x98\xfc\xf3\xe9\x6f\xe9\x84\x6e\xec\x73\x9e\xc3\x33\xef\xa6\xb0\x16\xc4\xd5\x4f\xbc\x1b\x4c\xf6\x9b\x47\x52\x11\x98\xeb\xe6\x6b\x4d\xad\x07\x05\x83\x00\xd8\xbf\x65\x78\xca\xd9\x24\xf0\x91\x47\x2c\x39\x67\x5d\x76\xbe\x31\x86\xb7\x11\x61\xa0\x32\x20\xae\xe0\xdf\x18\xbf\x53\x57\x38\x21\x95\xd2\xfe\xd3\x5f\x1a\xa5\xa9\x43\x49\x93\x99\xdc\xfe\xa3\xa3\x35\x32\x1c\x4e\xcd\x67\x7e\xbb\x3b\x0b\xff\x0c\x90\x53\x97\x14\xa0\xd6\x06\xe1\xfc\x58\x0d\x5e\xfb\x48\x48\x75\x4f\x8b\xfc\xa6\x09\x12\xcc\xe5\x59\x98\x4b\x6b\xe4\xbe\xf8\x94\x21\x38\xe0\x05\xa8\x75\xd3\x98\x7b\xfd\x39\xa9\x54\x58\x16\x48\xe1\xe5\x5b\xd5\x2b\x01\x89\x14\x3e\xeb\x08\x1f\xd7\xc5\xc1\x22\x87\x8f\x8e\x8b\x4b\x8c\x35\x6b\x0f\xc6\x5c\xd8\x21\x3e\x6d\xed\x19\xda\xc5\x4d\xfe\xbc\x25\x87\x89\xb9\xaf\xbd\x64\x68\xbc\x50\xea\x08\x39\x88\xf3\x47\x98\x90\x45\xd4\xc7\x63\xc3\x6d\x5b\x4f\xd7\xb8\x5e\x49\x98\x8c\x27\x39\x3a\xef\xb6\x8c\xc4\x0d\x18\xc8\x3d\xfa\x6e\x96\xea\xc1\x70\x2d\x2d\x15\xcd\x47\x3b\x7b\xbe\x81\x19\xa5\x95\x16\xa1\xd8\x77\x55\x63\xd5\x9b\x95\x00\x3c\xac\xec\x7b\x90\x56\x46\xc7\x7f\x79\xf0\x54\xd1\x8e\xc0\x44\xfe\xfa\xa9\xed\x2d\x97\x9a\xf7\x71\xc3\xd6\x98\x6e\x62\x8e\x03\xd2\x9c\x32\x50\xfd\xe2\x5b\xba\x6e\x39\x27\xb7\xe6\xda\x57\x66\x4d\x89\xb1\xc7\x29\x67\x85\xdf\x57\xc7\x99\x47\x3b\xa4\xac\xc9\xf3\xf0\xb7\xa7\x18\xf3\xbb\xa8\x99\x0a\xd7\x7f\x61\xb1\x7a\xbc\x8c\x53\x2c\x66\x19\x22\xf2\x3e\x92\x66\x3f\x7c\xf1\xbe\xbe\x43\xcb\x74\x42\x93\xc5\x12\x66\x23\x9f\x79\x53\x4b\xf0\x3e\x47\x46\x15\xc7\x77\x8e\x33\x43\x10\x84\x64\x28\x3c\x36\xcf\x32\x84\x8f\x93\x1a\x9f\x83\x0e\xf6\x9d\x2a\x0f\xb8\x83\x5c\xd1\xd1\xbe\x30\xcc\xbc\xfa\x75\x4a\xe4\x68\xf5\xaf\x5d\xd9\x7f\x79\x6b\x44\x25\x87\x36\x3e\x5d\x38\xfb\xb8\x94\xc9\xf6\x38\xf7\xb9\xbe\x4c\xd1\x83\x3d\x21\x5d\x51\xf8\xde\x5a\x21\x13\x13\x82\xbe\x2b\x44\xed\xd5\x07\xc6\x18\xe1\xac\xcc\x87\x78\x47\x84\x0a\xe1\x35\x34\x0a\x02\x7d\xf2\xf7\x40\xcb\x68\x02\xde\x97\x02\x3c\x2f\xb2\x47\x69\x71\x33\x90\x25\xd7\xb2\x53\xd5\x1d\x9a\x3e\x0d\x60\x71\xe0\x67\x9d\xfc\xc8\x99\x43\xb2\x3b\xb9\x1a\xf1\x6a\x8c\x58\xb6\xde\x81\x17\xef\x7a\x43\xbd\x85\x19\x5c\x1a\x36\x6e\x6e\x33\xec\x3f\x91\x13\x12\x97\x32\x18\x93\x88\x69\xfe\xb0\x15\x1a\xff\x93\x26\x8d\x48\x7c\x70\x9e\xe6\xb3\x58\x0e\xac\x88\x89\x17\x71\xfb\xb2\xb4\x21\xaf\x65\x96\x60\x7f\x58\xad\x0e\xae\x1f\x71\x98\x78\xe1\x99\xe7\x0d\x35\x50\xc4\x18\x01\x3b\x0b\xb8\x27\x03\x6d\xa6\x17\xbc\x17\x24\xbd\x2b\xfc\xec\x5f\xa7\x1a\x0b\x84\x90\x26\x99\x54\x1a\x7f\xe7\x37\x1b\xfb\xa7\x4e\x03\x0f\xf4\xf0\xd6\x51\x3a\xa9\x4b\x10\x5b\x73\xbd\x97\x19\x30\xb4\xa4\xff\x94\x48\xda\xe2\xcd\x33\x54\x9b\x05\xe7\x67\xc3\x93\xa3\xb5\xfb\x18\x5a\x76\x85\x26\x01\xf2\x8a\x22\xd7\xc9\xbe\x9e\x12\x73\x10\x1d\xb7\xbf\xc9\xfb\x8c\x6b\x80\x6e\xa3\x29\x20\xe4\x0b\x7b\xd5\x8b\xe7\x9c\x6e\xb8\x3d\x5b\x56\x19\x58\x24\x20\xc7\x05\x04\x49\x88\x13\xa4\x90\x2f\x5c\x97\x56\x93\x1e\xc4\xdc\x0f\xf5\x1b\x75\x11\x72\x48\xc5\x78\x08\xb9\x32\x8f\xf8\x8b\xb1\x4c\x5c\x1d\x93\xd5\x9b\x2d\x69\xd2\x26\xf9\xff\x79\xca\x64\x93\x11\x24\x24\xdb\xe3\xbe\xfb\x35\xe6\x4a\x25\xe2\x0c\x0d\xe8\x7a\x3e\xd8\xca\xe7\x04\x15\xca\x5c\xc2\x3d\x46\x07\xf2\x9b\xee\x1b\xa7\x2d\x1e\x3d\xe4\xe8\x6c\xd2\xab\x17\x1b\x2e\x09\xe5\x4a\xe4\x04\xc9\x5d\x37\x3e\x7b\x6c\xd0\xb2\x5c\xec\x45\x3c\xb2\xfd\xe7\xa9\xad\x98\x4b\x49\x26\xcc\x4d\xe8\xd1\xfa\x4d\xbe\x51\x6f\x19\xff\xbd\x37\xff\xb4\xf4\x21\xcc\x2d\x75\xc7\xd7\xf5\x19\x5b\x5e\xee\x81\xcd\x2d\x0d\x39\x57\xa5\xb0\xcb\xf8\xa3\x9c\x65\xc1\x37\x79\xc3\xf7\x9a\x44\x28\x8f\x3a\xb4\x16\xa5\xa5\xcf\x9d\x13\xf4\xe0\x19\x48\x28\x5a\x52\x2f\xfe\xdb\x45\xed\xc9\x8f\x2c\x5f\xbe\xc2\x84\xcc\x7c\x48\x23\x69\x8a\x66\x10\x24\x89\x4b\xdd\xf1\x40\xd7\x38\x2d\x84\x41\x59\xa2\xf8\xe0\x77\x4e\x1c\xa9\x3a\xe7\xaa\xa8\xf7\x7f\xbf\x5d\xcd\x04\x9b\x14\x78\xa3\x2f\x76\x9e\xa3\xd2\x0a\xf6\x90\x43\xfa\x09\x94\x1a\xd9\x6d\xd2\x8f\xdf\x6f\xe9\xb6\x83\x94\xb2\x7d\x9b\x62\xa3\x5e\xca\xc5\x81\xce\x1e\xa5\x17\x8b\x21\x23\x35\xe0\x90\x15\xd7\x1e\x3c\x5b\x8b\x32\x60\x2f\xd8\xaa\xde\x35\xcd\xc4\xaf\x3a\x0e\x52\xd2\x6e\xbf\x8b\x53\xb9\xa7\xc8\xe5\x95\xcf\x4f\x87\xaa\xb2\x2f\x08\x19\x01\xc2\x38\xc4\x8f\xbf\x0f\x33\x98\xfe\x7c\xbc\x19\xf7\x1e\x15\xe0\x55\x5a\xab\x09\x8d\xd7\xdc\x27\x8d\x65\x4d\x88\x59\x20\xd6\x72\xf9\x9d\xaf\xa5\x12\x02\xb3\x92\xb3\xf2\x98\x30\xc1\xe8\xf5\x48\x35\x09\x95\xdb\x57\x18\x42\x7b\xcc\x55\x61\x2a\xf7\xfe\xb7\xc6\x19\x79\x0e\x31\x4f\x60\xd9\x8a\xf6\xc3\x46\x56\xa3\x2e\x92\x48\xe4\xc2\x98\x77\x95\x2f\x51\x13\x1a\xa1\xaf\xaf\xe6\x19\x67\x11\x72\xb3\x0a\xbc\xab\x1c\x6d\x4e\xc9\x50\x59\x4e\x19\x7e\xd0\x61\x68\x7b\x20\xaf\x86\xbc\x6c\xb9\x93\xfb\xc4\xea\x6c\x45\x04\xc9\xca\x67\x49\xf3\x28\x3d\x25\xae\x9e\x62\x74\x57\xd8\x09\x2b\xb4\xe1\xc9\xd6\x69\xf2\xfd\x1a\x4c\x10\x01\x95\x58\x68\x20\xfe\xdf\x6d\x86\x08\x4d\x83\xf2\x7d\xee\xec\x19\x06\x44\x55\x78\x78\x8b\x6e\x6b\xa5\x81\x2e\x40\x95\x8a\x40\x2c\xf3\x3a\xea\x83\x36\xdd\xae\xa7\x66\x57\x50\x72\x95\xfe\x3e\x46\x7b\x0e\x0d\x24\x26\x2b\xf1\xa6\x51\xda\xbc\x1d\x31\xca\xe7\xa6\xf1\x2b\x6b\x54\xbe\xb5\x11\xd1\x85\xb2\x8a\x75\x83\x9c\xc2\xc5\xf7\xc4\x6a\x70\x98\xfa\x39\x4a\x9c\x52\x95\xb2\x52\x95\x52\x78\xdd\xef\x69\x94\x21\xa7\xe9\x59\x76\x39\x62\x50\xd7\xbd\xf0\x50\x36\xc6\x87\x36\x75\xfd\x80\x7a\x49\xd0\x52\xa5\xc3\xb4\x85\x86\xf9\x13\x01\xb8\x88\xd0\x53\x39\xb4\x51\xdf\xe7\x51\xaf\x82\xb8\x01\xdf\x06\x03\x60\xd3\x40\x1a\xbd\xf2\xa4\x63\xa2\xa6\x81\x0e\x90\x5f\x9a\x71\x13\x94\x44\x17\xd1\x94\x63\x72\xed\x6b\x35\x9d\x23\x80\x2f\xc7\x93\x0e\x0b\x13\x42\x46\x69\x2f\xd8\x27\xcf\xe0\xbf\x90\x9b\x3b\x73\x69\xbf\x13\x5b\x27\x1b\x55\x86\xf0\x39\x33\x77\xf1\xdf\x3c\xc1\xf3\x66\xe4\x84\x0c\xa5\x12\x2e\x62\xff\x71\x8a\x01\x61\x95\xba\x76\x10\xf4\x73\x7f\x54\xbb\xbd\x99\x5d\x73\x01\xc5\x6d\x28\x3a\x81\x0a\x5b\x28\x68\x3c\xe5\xc9\x9a\x5e\x3f\x68\xfb\x09\x59\xf4\x99\xc7\x34\x11\x00\x1c\x70\xe5\x54\xa8\x57\x79\xa5\x97\xc4\x67\xce\x71\x15\x74\xaf\xc2\x88\xd5\xc3\x55\x5d\x95\x14\x55\x67\x2c\x32\x66\x4d\x21\x0a\x71\x30\xc8\x17\x8e\x2f\xd7\x56\x3d\x9c\xd8\x0a\x31\xff\xc8\x91\x76\x2d\x47\xf1\x8e\x53\xc8\x0b\x74\x2f\x9b\xa2\x82\x72\xd0\xb4\x6c\x8a\x3c\xe4\x34\xf9\x80\xdb\x5c\x79\x4f\xd1\x44\xa3\x22\x9f\x51\x70\x22\x2b\x0c\x99\x67\x9c\x07\x3b\xa9\x14\xf9\x68\x6d\xdc\xa2\x51\x5a\x83\x6f\xd9\xa4\x17\xc2\xf8\xbc\x87\xb5\x30\xca\x35\x5f\x85\x1a\xd2\x1f\x67\x64\xc3\x68\x57\x97\x88\x4f\x4f\x3b\x1a\xf2\xcc\xa2\x1e\x05\x37\x67\x1e\x4f\xb7\xe7\x4d\x51\x74\x47\x78\x9d\x7f\xad\x6f\x5c\xaa\x03\x6d\x3e\xac\x71\xd3\xa6\x66\x0b\x67\x5a\x26\x5e\x52\x2d\x96\x5c\xd4\x1c\x64\x90\x57\xe8\x2d\x73\x14\xc4\x92\x66\x85\xb5\xa2\x3f\x3b\x0c\x62\x16\xac\x4e\x09\x72\x52\xa9\xf9\xff\xde\xd8\xc2\xdc\x92\xc0\x4f\x48\x6e\xc5\x0f\xbf\x93\x86\xe0\x19\x53\x67\x27\xd5\xf4\x16\x18\xee\x3b\xd8\x2b\xcd\x2e\x75\xff\x8f\xb2\xb6\x2d\x53\x8d\x1a\x9f\xbf\x60\x83\x1a\xfc\xd1\x6a\xa9\x3b\xde\x3d\xc1\xb4\x5b\x46\x15\xee\x6b\xcf\xc7\xf1\x95\x0f\x84\xcc\x1d\x57\x50\x82\xb9\xe3\xfa\x5b\x4e\x6f\xc8\xd1\x52\x60\x13\xbf\xd4\x1d\xbf\xb0\x55\x01\xef\x9b\x24\xec\xb7\x51\xef\xcd\x5a\x77\x3a\xb1\x2b\x1b\x53\x3d\xca\xdc\xe4\x8d\xf0\x96\xef\x57\x06\x5c\x39\xf2\x5c\x14\xf4\xca\x3e\x69\xf7\xdd\xd9\xbb\x57\x47\x16\x71\xa4\x3c\x4a\xee\x63\xcb\x74\xdd\x62\xec\xc1\x06\x32\x5f\x7f\x4a\x6b\x4b\x23\x66\xd9\x48\xf8\xc3\xbf\x68\x40\x1f\x51\x99\x91\x4a\xad\x04\xdd\x1f\xff\x85\xb7\x2c\x50\xa8\xbb\x4a\xf2\xcc\x01\x36\x9f\xca\xc4\xfd\x61\xdf\x79\x3e\x0d\x2e\x4e\x7e\x7b\x88\x6a\xa5\xe5\xcb\xaf\xbf\x58\xe5\xbb\x4c\xea\x5b\x50\x31\xa5\x28\x79\xaf\x22\x4b\x86\x87\x0d\xf9\xfc\x86\x4d\x25\xe0\x26\xf7\x97\x05\x1a\xed\x19\x3b\x0e\x87\x68\xf2\x20\x19\xd7\x57\xaa\x28\x0f\xb6\x3c\x5a\x76\xe8\x88\x75\xc1\xe1\x86\x2d\x96\x37\xb4\x47\x78\xed\x57\x4b\x01\x08\xfa\x1f\x9c\x60\xea\xf3\xbb\xc8\xb2\x69\x46\xc1\xed\x49\x15\xd6\xa6\xcf\x4c\x82\xcb\xf3\x13\xb4\x81\xaf\x8d\x1a\x32\x0a\xed\x37\xb1\x84\x02\x3f\x20\xa6\x58\xf7\xce\x3a\xd3\xe8\x90\xc1\xda\x47\x3c\xef\x4e\xc3\xfc\x58\x73\xcf\x85\xd7\x7f\xc6\xdb\x1a\xd6\x82\xd6\x09\x0e\x79\xbf\x10\xdf\xf8\x7e\xf6\x55\x56\x51\x60\x11\x0f\x69\xd2\x39\xe7\x1d\x53\xe3\x92\x26\xd5\xc7\x25\xf9\xf7\xbb\xb2\xdf\x3f\x40\xbd\x36\x72\x48\xda\xd6\x5c\xbf\x62\xa0\xf0\xce\xf9\xa3\x0d\xed\x1b\xee\xcb\xb5\xfd\x75\x7d\x48\x8f\x5d\xb8\x90\x97\x9f\x18\xa3\x0d\xf9\x42\x1a\x31\x54\x83\xce\xfd\x0a\xe3\xf8\x86\x4d\x1f\xbc\xe5\x79\xc3\xfd\x7f\x36\x99\x5c\xa6\x72\x28\xa1\xeb\x07\x3e\x48\x2f\x71\x80\x5c\xad\x2e\xb2\xc4\x1a\x23\xd5\x2d\x9b\xee\x1b\xd0\x16\xd7\x67\xd4\x4f\x49\x45\x85\xa1\x9d\xba\x8d\xa1\x9c\xa8\x5b\x13\x35\x3f\x0b\xea\x59\xd8\x17\x72\x00\xc5\x6b\x0d\x61\x07\x07\x57\xd3\x12\xe3\x22\x6d\x3d\x07\xd2\xf3\xa5\xee\xf8\xaa\x8d\x9a\xf0\x0c\x6e\x94\xba\xe3\x93\xef\x4e\xcf\x0e\xa7\xf8\x8d\x7e\x4b\xbd\xc6\x73\x32\x1a\x17\x6f\x18\x72\x39\x0e\x6a\x34\x39\x8c\x24\x39\xec\x9f\xdc\xd2\xb2\x80\x08\x24\x82\xf2\x6f\x37\xa8\x9a\xc0\xe5\x9b\xdd\xfc\xac\x71\x66\x3c\x03\xfd\x53\x31\x5d\x1a\x28\x16\xec\xb3\x8d\xda\x3b\xc0\xbd\x84\x11\x38\xac\xe2\x8e\x7f\xaf\x4b\x13\xe4\x24\x5e\x25\x4a\x7e\xf1\xe5\x6f\x4d\x30\x0a\x20\x1c\x85\xd8\x43\x32\x70\x14\x06\x0e\xa8\xfc\x35\x73\x46\x29\xc4\x08\x5a\x99\x27\x0e\x19\xf5\x62\xb5\x4a\x1c\x02\x2a\x1a\xd0\x2b\x1f\xea\x37\x60\x34\x0c\xd7\x00\xdf\x2f\x3e\xcc\x1e\x0d\x23\x18\x12\x17\xea\xc3\x9e\x6a\xe6\xcd\xc1\x42\x94\x6f\x12\xbf\xb9\x4f\x05\x8e\x26\x76\xc2\x20\x23\x63\x77\xec\x11\x53\xed\xa7\xca\xb5\xf9\x4b\xdd\xf1\x1d\xa1\xc6\x1b\x40\x3d\x34\x09\x55\x70\xdc\x9f\x5b\xca\x8b\x8f\x15\xc9\x15\x6a\x72\x17\x63\xf8\x64\x6f\xbe\x65\xd4\xf0\x18\xf8\x11\x59\x85\xc3\xbf\x3f\xa6\x1b\x0d\x59\x48\x2c\xe0\xdf\x5c\xdf\x82\x56\x84\x09\x0b\x4c\xe0\xbe\x60\x7a\x57\x27\x1d\x2f\x66\x3e\x62\x21\x1f\xcf\xe4\x1e\x78\xcd\x34\xa7\x66\xa4\x2e\x83\xe7\x57\xf6\x18\x37\x8e\xd6\xe0\x93\x09\x51\x23\xe3\x2f\x33\x0c\x04\x34\x1e\x8c\x4e\x39\x5f\xa8\x2d\x25\x87\x26\x14\x6c\xfb\xe2\x49\x6b\xc6\x88\x0a\x1d\x2c\xd2\x02\x1b\xf1\xf5\x40\xe1\x82\x97\x84\xb1\x95\xa6\x81\x5c\x1c\x3a\xe3\x2c\x5d\xc4\xa0\x95\x5f\x5e\x58\x7c\x37\x9f\xc9\xae\xe0\x7c\xba\xe9\xc7\xf9\xff\xbc\x06\x25\xc9\xf0\xa3\xfb\xb2\xd7\xa1\x89\x83\x10\xb3\x0a\x12\xba\x14\x1f\x5b\xab\x89\x71\x62\x27\xe0\x03\xcd\x0f\xaf\x1c\xaf\xa1\x5e\x7b\xcb\x36\xd2\xdd\xe0\x07\xf2\xab\x8c\x45\x82\x4d\x7a\x90\xd5\xab\x51\x9b\x4f\x32\xfa\xbd\x20\x2a\x57\x22\x2c\x0a\xd6\x27\x47\x89\x49\x25\x62\xbd\x62\xec\x57\xb8\xb7\x47\xc5\x56\x89\x89\x05\x52\x4f\xfc\xa4\x4e\xb7\xc4\x3e\x16\x7e\x25\xaa\x06\x79\x75\x7f\x9b\x56\xe2\x0a\xc9\x93\x05\xde\x14\x23\x10\x46\x61\x60\xd9\x78\x50\xe4\xf3\x37\x35\x06\x38\x07\x63\xa2\xe4\x77\x6c\x60\x46\x2a\x71\x5d\x5c\x21\x1c\xa9\x04\x99\xe8\x97\xd3\x52\x58\x73\x2f\x6d\xd1\xfe\xca\xfd\xfb\x16\xe1\xb0\x43\x70\xcd\xa1\x3a\x19\xac\x70\xe9\x92\x6c\x93\xd4\x83\x1d\x12\xc0\xa2\x46\x9f\x0b\xad\x7f\x58\x20\x2c\xe6\x4e\x9b\x05\x73\xee\xcb\x74\xd4\x62\xe4\x05\xd8\x01\x4d\xf5\xa7\xcb\xfa\xc3\x83\xa9\x79\xa9\x02\x1a\x65\xf9\x0f\xaf\xd4\xa4\xb5\xa3\x90\x54\x23\x5e\xb8\x16\x3f\xff\xbc\xb1\xbc\x02\x37\xf6\x52\x77\x7c\xd3\x2d\x26\x47\x0e\x31\xe1\x09\xb7\xea\x83\x31\xfa\x4b\x0a\x93\xa3\x04\x5d\xd1\xa2\x7b\x46\xa9\xc9\x4e\x6a\xad\x30\x72\x92\x86\x2c\x43\xc4\xe3\x15\xf3\x25\xf5\x0b\x8c\xde\x87\xd5\xa5\xea\xbc\xb9\xc3\xb8\xd9\x90\xe7\x47\x51\x98\x94\xdf\x34\x12\x00\xc6\x8f\x5d\xa6\x91\xb1\xc5\x8e\xed\xda\x95\x99\xf5\xb6\x83\x84\xcd\x7d\xa1\xef\x8d\x0f\xc9\xb7\x75\x4e\xa9\x3b\x3e\xa5\x5d\x59\x42\x04\xb6\xae\x73\xf3\xea\xa9\x69\x31\xdc\x43\xa1\xbc\x69\xae\xfe\xb0\xf6\x4d\x92\x53\xcb\xb7\x25\xd9\x4f\xdb\xbe\xfc\x3c\xb3\xca\x0e\x10\x98\x3e\xb7\x40\xed\x87\xa9\x52\x68\x76\x29\x79\x82\xdf\x7f\x39\x9b\x47\xc0\xf2\xd0\x10\xdb\xff\xe4\x5a\x4d\xa5\xc3\x66\x51\xad\x26\xbe\xd9\x6d\x87\xb3\x4d\xa9\x1b\x05\x83\x1e\xf4\xe2\xad\x1b\x45\x80\xc1\xd8\xc7\x72\xe7\xb9\x7c\x4b\x7a\x8a\xfd\x8f\xb4\xc2\xdb\xcf\xbd\x21\x1b\x3d\x89\x07\x83\x8f\xb2\x93\xea\x42\x6c\xbe\xe5\x4c\x9d\xd9\x52\x72\xa9\x07\x88\x1e\xae\xae\x52\x5a\xd6\x1a\x9a\x99\x6c\xf4\xa3\xdd\x0a\x5c\x4d\x95\x2c\x56\x7c\xf1\x2a\xf5\x62\xbb\xb8\xa1\x57\x71\xfa\x09\xfd\x96\x12\x9f\x6f\x4f\x0b\xaf\xcc\x1f\xa7\x01\x4a\x2b\x38\xe9\x80\x39\xcd\xb9\x7b\x20\xbf\x7b\x5e\xf6\x30\x4f\x9b\x33\x6d\x9a\x80\x98\x5c\xcc\x0c\xb4\x1e\x62\xa1\x87\x19\x87\xd7\x1e\x78\xd9\xd4\x99\xa8\x23\x0f\xa5\x59\xb4\xf0\xf5\x45\xc6\xc1\x74\xb1\x57\x11\x6b\x78\x18\x14\xfd\x54\x1b\xdb\x04\x36\x76\xea\x3c\xc2\x9f\x7e\x4c\x65\xdf\x9e\xc8\x83\x38\x93\x9b\xdb\x9e\xfd\x65\xe9\xb0\x20\x04\x7f\xf4\x78\x71\xa8\x72\x1e\x23\x75\xe4\xc0\xec\x39\xb7\x7f\x07\x2f\xc2\x93\x68\x99\xfc\x67\x3f\x5d\xa0\xae\x5b\xc8\x10\x77\x3e\x29\x84\x0f\x99\xa2\x5a\x0e\x0d\xf9\x5e\xe7\xa6\x17\x54\x5d\x52\x63\x18\x25\x75\xd5\xe5\x63\x4c\xcd\xca\xb2\xec\x64\xbe\xb3\xac\x5d\x24\x84\x96\x0c\xf4\xcd\x49\x3c\xa2\x37\x18\xf2\xf9\x32\x3a\x7e\xad\x2b\x23\xff\x8b\x9a\xd0\x2f\xbd\x6c\x98\xa6\x39\xa0\x46\x9c\x9a\x4e\xde\x37\x4e\x57\x7e\x77\x88\x94\x29\xff\xc5\x6b\xbc\xfd\xfd\x38\x72\x50\x60\x67\xf1\x5f\x03\x39\xfb\xf9\x41\x74\x49\x88\x62\xe9\xe6\xff\xdd\xd3\xe5\xb6\x7b\x3d\xda\x70\x70\xa5\xc6\xc3\xc5\xa5\x47\xb4\x7e\x00\xbb\x04\x79\x1e\xaf\x5a\xf3\x7f\xb9\xef\x4c\xed\x60\x49\xef\xb4\xe4\xe0\x03\x82\xec\xf8\x68\x11\xf2\x32\x1a\x59\x3f\x7f\x48\xd5\x90\xd3\xe7\xce\x01\x67\xaa\x25\x8b\x4d\x6e\x94\x57\x85\xc1\x32\x7f\xae\xe5\xcd\x63\x33\x63\x7c\x86\xc4\xf4\xaa\x50\x1a\xaa\x77\x0c\x0c\xd4\x1d\x81\x9d\xf8\x92\x6e\x74\xdf\x07\x24\xe0\x52\x77\xfc\x8f\x71\x8b\xad\x64\x00\xb6\x87\xa9\xdc\x4e\xee\x57\x4c\x55\xd6\xd8\x4d\x0a\xd1\xdc\x6f\x5e\xd3\x48\x55\x28\xa4\x9e\xdc\x9f\xe0\xe7\x05\x2c\x93\x25\x65\x62\x72\xc2\x6e\x7f\x3c\x5b\xa1\xb1\xc8\xc7\xcc\xb0\x04\x29\x9c\xb3\x3f\x43\xed\xb6\x28\x08\xd0\xe7\x1e\x5d\xa7\x51\xb4\x50\x4d\x3c\xfd\xa7\x57\x9b\xab\xaf\x88\xd3\xca\x1b\xdc\xa4\x7a\x0b\x87\xee\x5c\x8d\x3d\x7d\xbb\xf4\xeb\xa7\x46\xa6\x39\xd0\x22\x8e\xcb\xb1\x45\x4f\x86\xea\x6e\x39\xa4\x8c\x9d\x52\x77\xbc\xde\x37\x24\xb9\x18\x6e\x48\x42\xde\x55\xc6\xb7\xd1\x65\x40\xa4\x4a\x16\x9b\x2a\x37\xb4\x41\x84\x9c\xb0\x59\xea\x8e\x1b\xbc\xf6\x29\xdd\x98\x14\x89\xb4\x55\xdb\xb6\xc8\x36\x6b\x23\x2f\x86\x02\x3b\x09\x8a\x14\x04\x50\xde\x38\x61\xfa\xb9\x23\x46\x2b\x51\xd9\x30\x7e\x1d\x28\xdc\xbd\x21\x63\xe8\x28\x8d\xd1\x2a\xf0\xfa\xbf\x78\x74\x9c\xde\x33\x85\x24\x08\xd3\x81\x54\x61\xe5\x6e\x1d\xae\x21\x4c\x20\xe3\xf7\x5e\x13\xda\x34\x91\x2b\x4c\xbf\x2e\x7f\x78\xac\xbe\x69\x2f\x05\x18\x89\xe2\x6f\xe9\x54\x49\x90\xab\xca\x39\x6a\xe1\x36\x0d\x8f\x97\xf4\xcc\x1e\x72\x31\xb0\x20\xee\x98\xaf\x2e\x49\x72\x2f\x1d\x44\x54\x14\x3f\xf7\x21\x55\xba\x26\x4d\x91\xe3\xd0\x3a\xb1\x94\x3b\x61\x7c\xd9\x65\x9a\x8f\x30\x78\x71\x76\x0f\x14\x49\xdc\xa1\xbc\xaa\x5a\x46\x61\xb9\x39\xbb\xb2\xf9\x28\x8c\x58\x2f\x09\x6c\x4d\x0a\x6b\xa1\x61\x35\xec\x33\x5a\x16\xb5\x67\xee\x75\x9f\x9f\xa8\x25\xc8\x4b\x8a\x72\xf9\x23\x53\x77\xa8\x0f\x12\x05\xbc\xd5\xce\xfd\x40\x18\x90\x8a\xb5\x30\xc7\x1f\x9e\x7c\x91\xb6\x20\xf4\x2c\xde\x98\x43\xa4\x3d\x7b\xd2\x48\x25\x88\x55\x96\x5d\xcd\x86\x31\x2a\x0e\x56\x10\x63\x4d\xe8\x88\xcf\x7c\x76\xb4\xa8\xf4\x2d\xac\xab\x65\x2d\x78\x76\xa4\xa8\xdd\x1d\xd4\x04\x6d\x30\x20\x9c\xe6\xb3\x1d\x48\x0d\x73\x05\x23\xde\x9f\xf4\x77\x98\xd2\xb9\x0e\x09\x70\x9d\x2a\xdd\x2f\x6a\x6b\xa6\xd2\x38\xa3\x35\xba\x6a\xaa\xd1\xbe\xb8\x33\x3b\x53\x71\xaa\xdf\xf5\xe8\x96\x4f\x60\x88\x27\xa1\x2e\x5f\x6d\x1f\xaf\x51\x31\xc3\x96\xf1\xf7\xa3\x77\x1a\x78\x97\xa4\x8a\x84\x8e\xa3\x6d\x7f\xea\x79\xda\xc5\xd7\x37\xf1\x78\x89\xa3\x8c\xc4\xc4\x20\x1f\x0d\xe5\x8f\x1e\xf7\xa5\xe1\x30\x0e\x98\xa6\x11\x8b\x2c\xfe\xd0\x7f\xb8\x92\xff\x68\x15\x3b\xd4\x83\x0b\x30\xd3\xf0\xbe\xb3\x6c\x44\x65\x3f\xf6\xed\xd7\xf9\xe3\x5d\x11\xd5\x1c\xc0\x61\x73\xe9\xb4\xa5\x9a\x54\x20\xec\xe1\x92\xbe\xa3\xeb\x21\x03\x60\x8d\x9a\x1c\x97\x0d\xdf\xe2\xbf\x3f\xd0\xfc\x7c\x30\xab\x71\xfe\xcc\xa5\x1f\xf0\xd7\x5a\x65\x28\xaa\x44\x8e\x1c\xc4\x23\x81\xb6\xb8\xde\xc7\x58\x0c\x3d\x0b\x5d\x43\xc7\x9b\x87\xd4\x26\x65\x22\xed\x8a\x0b\x6d\xf7\x19\xb8\x5c\x9f\x86\x29\xd6\xe3\xab\x06\xe5\xb0\x1a\x81\xa4\xa6\x84\xd6\x1c\xbf\xbb\xa3\x61\xce\x6f\xb0\x45\x44\x3f\x5c\xbc\x4d\x0b\x94\xe0\xa0\x9d\xfc\xbd\x2b\x63\xa3\x63\x43\x0e\x62\x42\xa6\x2b\x37\xfe\x71\x85\x16\x07\xde\x21\x1c\xed\x97\x9f\xd1\xf7\x9f\x24\x24\x08\xd4\x23\x0b\x6b\x46\x65\x7a\xb9\x4a\x64\xc9\x25\x7a\xfe\xc9\xbc\x31\x27\x4c\xba\xad\x4c\x02\x89\xdf\x7b\x68\xd0\x94\x20\x79\xa6\xcf\xcc\x13\x50\x4a\xe4\xfa\xdc\x44\x69\xcd\x3d\x6a\xc7\x63\xe9\xd6\xa7\x2b\x8f\x08\x64\xbf\xdd\x0c\x88\x25\x56\x2f\x9d\x8e\x6e\x28\xcd\x7d\x1c\x9f\x79\xcc\x18\x10\xd8\xc9\x6b\xf2\x94\x2c\x5f\x34\x4d\x37\x80\xc4\xa0\x23\x07\xdc\x99\xb7\x0d\x55\x47\xcb\x8a\x02\x24\x0d\x8f\xa0\xf6\x70\x96\x6a\x71\x16\x05\x01\x66\x41\xa9\x9c\x1c\x8a\xe1\x13\x0d\xb0\xb2\x8f\x51\xaf\x40\x20\xfd\x61\x2f\x4f\xbd\xe5\xc8\xea\xc5\x61\x92\x7a\xfb\xca\x86\x86\x9c\xe3\x08\xb0\x6a\x3c\x41\xd3\x7a\x16\xc6\x86\x20\x1a\xf8\x1b\x03\x7e\xc0\x70\x19\x25\xc7\x3e\x24\x42\xdb\x43\xd6\x4f\x27\x76\xb5\xe9\x73\x2f\xd0\xb4\x2f\x7c\x9b\x03\xd6\xb2\x1a\x1b\x30\x2c\xf9\xe5\x12\xcd\xea\xb0\x89\xc2\x30\xa8\x13\x87\x2b\x20\xee\x9a\xa1\x4c\xc3\x43\x8d\x85\x7f\x4f\xdb\x38\xbd\xc4\xe1\xc6\x90\x72\x2e\xfa\x3b\x0d\x2a\xec\x22\xd1\xc1\xc7\x54\xdb\x2f\x82\x57\x6f\x85\x36\x20\xcd\x6f\xb9\x7f\xbc\x36\x0f\x08\x7c\x0a\xab\x39\x55\x1c\x6c\x9f\x67\x1c\x7e\x2f\x08\x31\x4a\x0d\x5a\xef\xfd\xa0\x83\x47\x5e\xd8\x40\xb7\x54\xb2\xbb\x6e\x37\x6e\x3d\x38\x36\xc9\xf8\x71\x66\xd1\x14\x30\x73\x71\x99\x56\xc4\x35\x29\xb6\x55\x06\xf3\xb3\x96\xda\x74\xb7\xcc\xd5\x1c\x1d\x51\x99\x32\x21\xb6\x76\xed\xa9\x9a\xad\x40\x84\xa0\xbc\x86\xb8\x34\xd3\x93\x41\xd0\x8f\x1c\x89\x9d\x3a\x54\x56\x8e\xcb\x95\xa8\xb7\x95\xd9\x71\xa7\xb0\x94\x5c\x48\x23\xa7\x92\x01\xf5\xe5\x17\xc6\x67\x9a\x31\xa7\x4a\x1c\x21\xcf\x5d\x44\x6f\x9d\x6f\x1e\x31\x69\x3e\x62\xfe\x0d\xa7\xc7\x58\x1a\x7b\x49\x89\x09\x44\x27\x74\xff\x28\xfd\xf2\x37\x38\x6a\xba\x38\x75\xa9\xd1\x57\x44\x41\x2f\x8f\x65\xf7\x6a\x5d\xc8\xec\x69\x25\x6e\xe6\xfa\x95\xf5\x83\xd3\xa4\x53\x41\x9b\xf8\x17\xc6\x5c\x4b\x60\xee\xa4\x60\xf0\xf7\xa7\x4c\xd2\x46\x9a\x4e\xe4\x96\x49\x4b\xdb\x92\xbf\x64\x7b\x76\x0a\xe3\x63\xcf\x0b\x9a\x4e\x1d\x79\x24\xed\xf5\xe2\xcf\x2f\x54\xd3\x80\x88\x95\xba\xe3\xd5\x8b\x8c\x86\x36\x09\xbd\xfc\x25\xc7\x3b\xfa\xd2\xff\x98\x81\x00\xe2\xaa\xcd\x86\x2a\x3e\xb6\x28\x43\x0e\xce\x0c\x35\x67\x2b\xb7\xd7\x19\xb3\x61\x44\xb6\x44\x89\x1e\x61\x07\xb6\x99\x7b\xcd\x2e\xbc\xea\x44\x38\x79\x3b\x02\xb2\x9e\xfb\xf5\x5c\x83\x37\x4e\xe5\x76\x2f\x7f\xf0\x16\xad\x33\xa4\xbc\x37\x8e\x9f\x5f\xd5\x61\xf4\xcd\x01\x08\x22\x88\xa9\xc0\x29\x53\xb2\xdb\xd0\x99\x73\xc5\x31\x7e\x6e\xb2\xd6\xd8\x45\x21\x49\x6e\x7e\x7c\xf2\x5c\xc3\xe8\x9d\x38\x42\xc2\x00\x4e\x72\xdb\x0b\xd9\x07\x8d\x3c\xe2\x92\x20\x14\x43\x72\x59\xf4\x06\x27\xd4\x45\xe8\xa1\x5e\xad\xd4\x8b\xb9\x77\xf7\x05\x73\x75\x6f\x26\x3f\x12\xd4\xc8\x81\xc2\x4b\x13\x35\x70\x44\x09\xa4\xe6\x61\xdf\x50\xd6\xdc\x9d\x83\x10\x79\x65\x70\x63\xcf\x9d\x6f\x80\x5f\x10\xa3\x91\x57\xe1\x2e\x3f\xd1\x2a\xd9\xc2\xe2\x94\xd0\x33\x59\xa8\xb7\x24\x05\xa4\x83\xdd\x52\x77\x7c\x6b\x98\xcd\xda\x21\xc3\x28\x88\x98\x5c\xc2\xe5\x7f\xd6\x99\x09\x74\x41\x48\xc2\x48\x26\xbf\xc2\xa8\xb9\xe3\xb5\x7f\x69\xfa\x92\x0c\x14\xfd\x47\xe1\xd0\x97\xae\xea\xf3\x19\x57\x35\x68\x39\xb1\x3f\xbd\x81\x17\x30\x49\xd0\xa9\x45\x88\x55\x92\x40\xff\xf3\xc5\xaa\xbd\x85\x55\x0d\x67\x04\x40\x18\xcf\xdf\x99\xbd\x48\x19\x75\x0b\x61\x18\xb3\xc5\x68\x4f\x49\xd8\xe4\x1a\x66\x00\xf4\xfe\xcc\x1a\x6d\xec\xc2\x48\x92\x90\x92\x5f\xbc\x69\x88\x06\x3e\x43\x3e\x09\x69\xab\x3e\xfc\xc6\xd7\xb2\x58\x70\x46\x69\x80\xeb\xd8\x91\x2f\xde\x00\x2c\xdf\xa9\xa3\x9e\x1d\x52\x93\x1a\x0d\x13\x37\x64\x1f\x7a\x95\x45\x5c\x63\x10\xa8\x3d\xf1\x5f\xa6\xf0\x37\x77\x25\x0a\x6d\xea\x10\xae\x17\xfe\x90\x41\xac\x23\x9e\x87\x19\xcc\x78\x52\xd5\x91\x2f\x6d\x57\x79\x67\x16\x67\x1f\x95\xba\x85\x59\x37\xb2\x2c\x2c\xcc\xba\xe3\x9b\x0c\x75\x1b\x64\x74\xbc\xb9\x0d\xcf\x6b\xc7\x13\x31\x14\x32\x4a\x21\x44\xad\xd4\x6e\x8a\x43\xdc\x00\x06\x07\x93\xdb\xcd\x8d\x52\x10\x6a\x0b\x9a\xc2\x79\x47\x5a\x32\x90\x95\xa2\xac\x0a\x97\xac\xe3\x07\x20\x79\xf9\xc8\x0b\x31\x1f\x73\xed\xbc\x47\x81\xe4\x5c\xcc\xac\x8c\xff\x35\xbe\x3f\x05\xc9\xf5\x80\x98\x40\x12\xd5\x6e\x31\x3c\xdb\xc1\xdb\x85\xd3\x55\xe2\xdf\xea\x3a\xfd\x0e\x0a\x82\x74\x33\x38\x90\xbf\xd6\xcb\x46\x99\x72\xe4\x38\x02\x3e\xe6\x6d\x37\x79\x78\xac\x86\x91\x80\x41\x17\xbe\xb1\x54\xb3\xbd\x4d\x41\x81\x3c\xc4\x4e\x38\x60\xba\x2b\x71\x56\x92\xa8\x3e\x3b\xe7\x4f\x31\x63\x1f\x94\x9b\x83\x8e\x38\x6f\x9b\x94\xbd\xe3\x3d\x88\x38\x52\x0c\x71\xd3\xc6\x89\xc6\x41\xc2\xb8\xc4\x70\xbd\x9e\x36\x53\xc5\x86\x29\xa7\x88\x42\x50\xae\x16\x55\xf9\x26\x43\x03\xd3\xa5\x41\xe8\x34\xc5\x98\x69\xc1\xa2\x31\xca\xaf\xc2\xd1\xe2\x7b\x71\x9c\xb1\x74\x94\x12\x2c\xdd\x03\xf9\xe2\x32\x9e\xe4\x97\x2b\x03\xa2\xf8\xfb\x73\x95\xea\x32\xca\x5a\x52\x3f\xaf\xb1\x18\xb0\x17\xca\x16\x66\xe6\x4b\xc3\xc5\xb1\x70\x50\x2d\xc9\x17\x1f\x79\xc7\xe8\x82\x22\x3f\xd5\x67\x7d\x66\x7b\xf6\x72\xd0\x1a\x69\x20\x86\x32\x8e\x8d\xf3\x34\xa6\x0a\xaa\x31\x6e\xd3\x5b\xf8\x7a\x55\x5d\x7a\x16\x05\xb6\x15\x85\x21\xb7\xf7\xd1\x74\xa1\x1f\x11\xd8\x00\x17\x81\x6d\xef\xe5\x23\xb4\xe4\x63\x27\x4f\x3c\x79\xa7\x1f\xb5\x8d\x84\x41\x19\xe9\xa7\x12\x67\x57\xf8\xdc\x54\x13\xe8\x4e\xac\x5e\xf9\xc8\xce\xb8\x41\x79\x7d\x10\xdd\x30\xf7\x51\x73\x61\xc3\x77\xff\xcd\x94\xd6\xf5\x9b\x67\x05\x22\x32\xe9\x86\x84\x8b\xe3\x0a\x03\x4e\x60\x51\xc6\x22\x9f\x83\xab\xe2\x5f\xef\x35\x71\xdb\xe0\xec\xc4\xcf\x65\xb1\x2b\x7b\x2e\x1d\xe2\x52\xcf\xc2\x8e\x43\xe1\x36\x67\x4b\xa6\xff\xb0\x45\x59\x46\xbc\x26\x72\x75\x40\x79\xfe\xae\x1b\x5a\xe0\x3b\x40\xb6\x94\xc2\xb8\xb9\x65\x3b\xf8\x19\xb9\x92\xd4\x89\x23\x87\x02\x73\xcb\x1d\x6a\x4b\xd1\x2a\x3a\xfd\xd7\x8e\xd1\x19\x65\x14\x24\xc0\xa2\xdf\x38\x66\x38\xb4\xda\x94\x85\x5c\x08\x91\x7f\xab\x77\x56\x64\x13\x3f\x92\xab\xfa\x5a\xd5\x74\xe8\xf3\x7d\xaa\x3c\xbc\x72\xcb\x0d\x05\xa0\x80\x97\x1a\xbc\xca\x3b\xb0\x7a\xb8\xec\x8c\x3d\x2b\x39\xa0\xeb\xb6\x69\x1e\x42\x51\x99\xff\x8a\x9e\x9d\xc6\xe3\x0e\x19\xc6\xbc\xe5\x8e\x0f\x5c\xa6\xb0\x69\x04\xf8\x57\xa5\x47\x4d\xa9\x47\x3f\xb9\xc8\xb0\x06\xff\xd4\x33\xba\x12\x43\xd2\x54\x70\xa9\xb5\x6f\xbf\xa6\x4e\x23\xf1\x84\xfe\x53\x71\xb9\xc6\xf3\xad\x32\x82\xbd\x0a\x6f\x75\xbe\x34\x49\x29\x64\x23\xd8\xdd\x8e\x7b\x4b\x83\x3d\x92\x20\x94\x5b\x94\x7c\xdb\xf6\x76\x2d\x7b\x41\xd0\x16\x56\x04\xf9\xdf\xdf\xa3\xee\x52\x0d\xb9\xb8\x13\x02\xe2\x03\xed\x53\x8c\x50\xe2\x05\xc8\x0b\x29\xc0\x35\xcc\xd3\xb3\x62\x67\xfa\xb2\x7d\xa7\x15\x1e\x36\xde\xd0\x33\x04\x01\x18\x89\x41\x8a\x0f\x4e\x35\xba\x54\x17\x33\x62\x21\x4f\x8d\xcc\x0a\xc7\x42\xa3\xa0\x47\xcc\x13\xcc\xd9\xfc\xbf\x9d\x9f\xfd\x77\x75\x1a\x62\x89\x04\xf9\xf6\x1e\xf5\x80\x20\xbd\x15\xa6\x3f\xa4\x0d\x17\x50\xbd\x0e\x39\xef\x1b\x86\x8d\xbf\x4d\xa1\x35\x49\x39\xee\xd1\x3d\x5a\xd9\x84\x02\x1b\x34\x84\xe5\x0e\xe7\x0b\x13\x44\x1b\x8f\xb8\xa2\x0d\xd4\x04\x6b\xa6\xf2\x49\xcb\x15\xbd\xa8\x57\x73\x48\x29\xbc\xfb\x46\x36\xb6\xf5\x62\x12\x1a\xd2\x46\x45\xdb\x58\x0a\x21\xe6\x06\xc2\x59\xee\xc2\x77\xb2\x3d\x90\x4f\x19\x6c\x8d\xad\x96\x1d\x5e\xf1\x33\xf7\x6b\x13\xa0\x90\xf1\x51\x42\xfe\x03\x6d\xc0\x3e\x7b\x2e\x78\xd4\x7e\xec\x7c\xa3\xbe\x02\xb1\xc9\xa6\xfc\xee\x5d\x61\x76\x52\x76\xe9\xac\x19\x82\x71\xeb\x08\xe9\x87\xc0\xb2\xa9\x23\x95\xb1\x6e\xad\x1b\x2a\x9f\xa4\xc2\x0d\x49\x93\x8a\xe3\x47\xe3\xb2\x36\x37\x51\x67\xa5\xd3\x1f\x24\x18\xad\x99\x67\xd8\x14\x79\x21\x29\x85\x1c\xca\x9a\xfc\xe5\xf7\x1f\x33\x18\x12\x98\x31\xca\x04\x30\x65\xda\x98\x6c\x41\x44\x1b\xd8\x0b\x32\x48\xaf\xb3\x8d\x2d\x4f\x40\xfa\x42\x8c\xa5\x09\x58\xf1\x94\xd7\x34\x0c\x87\x4d\xc5\x22\x2f\xdf\xb6\xcf\x60\x41\x20\x8f\x83\x14\x72\x5b\x26\x6a\x85\x14\xb2\x38\x87\x3f\x77\xef\x5e\x65\x0f\x05\xb4\xb9\x0b\x97\xb4\xb4\xb7\x21\x0e\x04\xc6\xa3\xb0\xf8\xa5\xd6\x49\xe7\xec\x74\xd2\xf9\xfc\x70\x6d\xaa\x5b\xea\x8e\xa3\x2d\xba\x6c\x40\x4a\xa9\xd9\x9c\x96\x52\x75\x50\xef\x85\x8a\xed\xfb\x7b\x5a\x20\x20\x28\x10\x09\xe4\xcf\x07\x78\x0b\xd1\x80\x02\x14\x66\x60\x1f\x3a\x5f\x35\xbc\xc8\xa1\xb0\x2d\x9b\xbd\x60\xbc\x36\x69\x0d\x23\xe6\x11\x8d\x0a\x19\x7f\x79\x98\x71\xbf\xeb\x98\x05\x58\x72\x2e\x8a\xb3\x6f\x30\xb0\xe7\xd4\x11\xac\xf7\xd2\xb3\x86\x53\x3a\xdc\x3a\xb8\xd6\x7f\xbe\x8c\xa3\x50\x96\x25\xad\x86\x46\xbb\x2c\xec\xea\xcc\xde\x77\x6e\x1c\xc0\xbb\xa4\xb6\x35\xa6\xfb\x95\x57\x73\x24\x33\xb5\x58\xda\xc8\x53\xbf\x4d\x05\x5b\x73\xf1\x0b\x13\xb5\x5d\x50\x80\x2b\x2d\x3d\x78\x71\xe2\xf6\x16\x63\x48\x98\x0e\x71\xb3\xc2\x9f\xec\x53\x1e\xd7\x20\x04\x95\x81\xd1\xce\x5c\xa8\xd9\x9d\x12\x0f\x27\x87\x2c\xf9\x6a\x4f\xbd\xaa\x03\x0f\x42\x2e\x7f\x38\xe5\xb1\xec\x47\xa7\x1e\x06\x00\x14\x7f\x1a\x9b\x87\x64\x77\xf7\x35\x46\x23\x1f\x0e\x6c\x8b\x75\x61\x59\xa1\x81\xab\x88\xf5\xda\x51\x58\x21\x1e\xad\x83\xf0\x42\xe7\xe0\x4e\xeb\xbc\x0d\x7f\xe0\x1c\x75\xa6\x80\x90\x04\xa5\xdb\xe9\xc7\xd4\x3f\x2d\x53\x57\xf0\xc3\x0f\xee\x31\xd1\x9e\x5e\xa0\x61\x11\xf3\x17\xbd\xdd\x22\x7c\x5d\x63\xc8\x0d\x38\xab\xa0\x78\xe6\x36\x03\xd0\xe4\x24\x95\x2a\xc4\x95\xf8\x67\x1d\xaa\x12\x0f\xa8\x83\x3c\x4d\x90\x64\x65\xd1\x08\x0c\x95\x3a\x09\x70\xca\x4b\xc9\x7f\xb0\x47\x77\xc8\x89\x84\xc2\x58\x1c\x1f\xc8\x1a\x66\xde\xcc\x17\xcc\x1b\xb6\x66\x1f\x87\x47\x43\xc0\x0d\x70\x81\xac\x93\x34\x2b\xf8\xd0\xe6\xeb\xa4\x8e\x4d\x26\x83\x36\xf2\xe0\xe8\xc5\xef\xf6\x0c\x4a\x89\xe6\x88\xa2\x79\xa7\xf2\xae\x28\xf2\x50\x55\x2d\xad\x3e\xb5\xcd\x78\x46\x4e\xe4\xd5\x52\x62\xe8\x8f\xce\x57\xcf\xdd\x43\xc8\xc5\x80\xf4\xf0\x3b\xb4\xf5\x19\x28\xe4\x00\x9c\xe8\xeb\x13\xcc\xd8\xd4\xe4\x0f\xb3\xf8\x86\x2a\xc8\x23\x9f\x51\x2a\xfe\x36\x7d\x5c\x2e\xd1\x02\x29\x67\x99\x1b\xba\x75\xb4\x4e\x8d\xf2\xa3\x90\x1b\xd2\x04\x47\x4c\xf1\x29\x4e\x94\xe5\xdf\x6d\x9d\x6d\x4a\xd1\x56\x08\xe2\x89\x7d\xca\xe1\xf6\xec\x08\x27\x75\x91\x2e\xec\xbb\xd3\x00\x26\x07\x16\xb7\x3b\x4f\xe9\x12\x8b\x1f\x33\x4d\x12\x60\xe4\x20\x4e\x50\xe1\x73\xcf\x69\x25\x11\xa5\xa1\x47\xb9\x54\xa6\xb5\xf1\x6c\x6d\x16\x13\x52\x17\x59\x2d\x53\x8a\x7f\xd9\x92\xad\x31\x1b\x92\x79\x28\x67\x55\x43\x26\x99\x6d\x54\x5d\x0d\xb2\x86\x1e\xd2\x6c\xde\x67\xce\x49\x3e\xeb\x59\xcf\xf1\x61\x34\xf2\xa9\x43\x6b\x58\xad\x3b\xf3\x77\x6c\xce\x26\xec\xd4\xbd\xb3\x95\x91\xf1\xc7\x45\xfa\x9a\xc7\x43\xc2\x5a\xa8\xba\xce\x14\x82\xa0\xcd\x14\x85\x99\x1f\x7d\xe4\x43\xe2\x7d\x31\xd8\x1f\xee\xe8\x34\xdc\x5b\x05\x5d\x47\xc0\xdb\xaf\x7a\x58\xee\xf5\x1c\xa4\x97\x25\x5d\xf3\x8c\x76\x8c\x84\xb2\x00\xc8\x8d\x7a\xc8\x28\xff\xfd\x10\xa6\x63\xc4\x12\x9f\xe1\x6b\x65\x23\xaa\x44\x0e\x84\x71\x9e\xba\x7e\xa2\x91\xc5\x2b\x98\xeb\x9a\x40\x9a\xbd\x73\xbf\xa6\xc2\x60\x73\xc5\xb4\xc2\x55\x53\xd5\xa9\xe7\x42\x7d\x10\xa7\xc7\xa9\x98\x06\x4e\x33\x5a\x53\xf5\xf9\xa1\x69\xb7\x55\xa1\xda\x5c\x21\xf7\xcd\xcd\x67\x1a\xa5\x16\x86\xfa\x9b\xaf\x30\xfe\x74\x5c\xa3\x93\x32\x58\xee\xc2\x9f\xfa\xf3\xa3\x63\x35\x2d\x89\x32\x09\x23\x49\xa5\xf8\xca\x09\xde\x22\xcc\xb8\x74\xea\x6c\x98\x02\x17\x8e\x2e\x14\x3e\xb0\x92\xca\x2b\x63\xe6\x8d\xf1\x19\xfa\x90\xb9\xa2\x39\x56\x7d\xe2\x90\xb9\xb6\xf3\xf8\x7c\x16\xc2\xfc\xf0\x15\x26\x53\xdc\x4d\x5a\x14\xf0\xca\xd8\xb1\x23\x1d\xb7\x3b\x94\xf0\xe1\x0f\x7b\xc9\x0c\xb3\xb8\x4e\xa4\xdd\x4c\x3c\xe3\x41\xc5\x7e\x20\x70\x59\xbf\x70\xc2\xa0\x57\xfa\x3e\xa3\x7d\xa0\x33\x2b\xa4\xe6\x06\xf2\xd3\x9e\x32\x04\x5f\x99\x97\xe4\xeb\x41\x58\x1f\x53\x39\xb1\xaf\xb4\x12\x7b\xb8\x3f\xc2\x4e\xaa\xc5\xf8\x91\x67\x95\xc6\x19\x71\x4a\xdd\xf1\xf8\xfb\x55\xf7\x41\xa3\xb0\x44\xab\x25\xe1\x27\xf8\xfd\xf7\x0c\x82\x4a\xc4\xc5\x31\x62\x67\x98\x22\x26\x94\x98\x90\x9a\x4c\x85\x4f\x73\x67\x1d\x98\x62\x94\x80\x0e\xae\x13\xa1\x15\x6e\x3a\x2a\x1f\xfb\x5f\x39\xdb\xea\x1c\x6d\x54\x32\xdd\x9c\x26\x9b\xfd\xae\x5f\xaf\x6b\xdb\x11\xe2\x26\xcf\x1f\xaa\xa5\x55\xcf\x9f\x2e\x9f\x41\x4d\x8e\x24\x67\xbc\xa5\xe2\xde\x8c\x39\xdc\x14\x8f\x3a\xc9\xfb\xfa\x45\x59\xb5\x7d\xa0\x11\x22\xf4\x1b\x8b\x53\x9e\x35\xbb\xfc\xc8\x0b\xe5\x7e\x33\x5f\x7b\x4f\x13\x0d\xa4\x0d\x21\xf5\x92\xdb\xf7\x54\xab\xc6\x76\x00\x63\x32\x41\x17\xfc\x8f\xfb\xb3\x2b\xb6\x39\x5d\xc9\xbf\x0c\x5b\x18\x3a\x45\xf6\x6e\xbb\x16\x7b\xac\x28\x69\x0d\x11\xa7\x10\x7f\x6a\xde\xe9\x0d\x39\x1b\x11\xf2\x54\x85\xd1\x87\xd2\x67\x45\x83\x96\xe5\x7a\x6e\xe3\x65\x23\xb5\xb2\x8a\xb9\x20\x00\x99\xdb\xd6\xa5\x5e\xa8\xc5\x85\x13\x34\x5c\x7c\xb1\x6d\xe7\x70\xf9\x58\x1c\x0a\x17\x6e\x05\x33\x36\x90\xb7\x46\x48\xb4\xeb\xc3\xd6\xab\x86\x0c\x56\x60\xba\x8b\xf2\x54\xcf\xe4\x00\xb3\x90\xa3\xd5\x44\x81\x3f\xff\x71\x15\x79\x2e\x97\x73\xcd\xff\xd0\x84\x1f\x93\x8f\xc7\x64\x08\xbf\x77\x95\xc9\xe7\xf0\x48\x2a\x9f\x4b\x1f\x4a\x37\xcf\x9d\x3d\x9d\xf2\xfe\x5f\x33\x64\xb8\x4c\x7a\x11\x0f\x1e\x7b\x3f\xe0\x97\xf7\x2a\x6d\x8c\x76\x69\xd9\xe4\x7b\xd6\x09\xa3\x9e\xab\xa6\x6f\xb9\x8b\xef\xcc\xde\x45\x07\xa3\x2a\x77\x0f\x31\xcf\xe7\x97\x74\x7e\x1b\x8f\xd0\x80\xc7\xff\xc8\x13\xd9\x88\x42\x82\x20\xc2\x32\xb4\x3f\xa2\x0c\x52\x09\x92\xcb\xe4\xd3\x0c\xcf\x12\x1b\x39\x4e\x03\x35\xa5\xce\xe5\x49\x37\xb5\x78\x6d\xd4\x93\xb7\x99\x6e\x30\xb7\x6b\x12\x14\xb5\xa8\xc9\x4f\xcc\x4f\x85\x13\xbe\xcf\x88\x85\xb9\x14\x55\xbf\x89\x06\xeb\xa1\x0e\xc9\x0c\xf9\x3e\xf4\x84\x41\x06\x66\x20\x7c\x0b\x45\xc9\xe2\x2d\xca\x7a\x26\x44\xa4\x31\x08\xee\xfc\xe7\x6b\x5a\x98\x16\x41\x44\xa4\xe8\x7b\xfe\x6b\xef\x68\xee\x0d\x2e\x50\x44\xfe\xe1\x90\x98\x0d\x3a\x40\x24\x8a\x5f\x7c\x75\x62\x4b\xa3\xd8\xe4\x53\x42\xb9\xef\x5f\x34\xef\xac\xf4\xb7\x78\xc8\x6d\xf5\x4c\xc9\x8d\xd9\xdd\x42\x8c\x62\x38\x94\xe0\x85\x78\xe1\x92\x16\x75\x05\x3f\xe9\x9f\x24\x36\xd0\xb0\x7c\xab\x52\x16\xb9\x7c\x31\x32\xf3\x76\xd3\x8c\x25\x09\xa9\x21\xd5\xe4\x2a\x07\x0a\x9f\x5c\x28\x30\xda\x42\x0a\x6a\xaa\x22\x4c\x80\x4f\x66\x66\x37\x7d\xf7\x2c\x73\x8b\x67\x51\xd7\xc7\x61\x72\x22\xf9\x40\xa5\x71\x30\xfb\x4a\x92\xd8\x26\x35\x0e\x8f\x6d\x36\x96\xa2\x88\x85\xc4\x22\x3e\x52\x33\x38\xba\x67\x84\x28\x5d\x11\xf7\x31\x8b\xbf\xfb\x84\x58\x18\x10\xe6\xf0\xd1\x16\x0c\xb6\xae\x33\xb3\x02\xe3\xa2\x72\xf9\xbe\x0f\xe4\x88\xb4\x8a\xa5\x3d\x60\xee\x4d\xae\x52\x76\x0d\xf5\x48\xd8\xd2\x86\x0d\x14\x57\x5c\x64\x38\xac\x61\x16\x02\xde\x9b\xd7\x02\x85\x5b\x0c\x8b\x87\x32\xa3\xb4\xd7\x69\x4a\x76\x94\x8a\x51\xe3\x1d\x55\xfa\x39\x18\xea\xcd\x67\xf6\xa6\xe5\x47\xa0\x7b\x23\xe4\x9f\xde\xa5\xbc\xcd\x3a\x5b\xfc\x30\xcf\x3f\x72\xb6\xd6\x5c\x10\x5c\x6f\x51\xf7\x8b\x57\xed\x32\x88\x80\x34\xe4\xf2\x34\xf0\x9d\xa9\xa7\x81\xad\xa3\x72\x40\x2a\xdc\xe4\xa8\x70\xb5\x51\xbb\xa2\x6a\xcd\x46\x92\xca\xfe\xfb\x07\x07\x21\x5a\x86\x21\x4e\x5b\xe4\xae\x77\x95\x03\x38\x95\x2a\x91\x77\x74\x09\xdb\x12\x1f\x34\xd5\x82\x52\x77\xfc\x79\x43\x0a\xac\x4a\x1d\xdc\x34\xf8\xec\xdf\xf3\xb5\x09\x94\x83\xea\xb0\xfa\xca\x3d\xb6\x47\x13\xd7\x76\x51\xc0\x6d\x66\xf2\xf7\x4d\x56\x83\xa9\x88\x11\x90\x0a\xf3\x8c\xd6\x9b\x54\xab\xc4\x8a\x1c\xb1\xb1\xb9\xe1\x7d\x85\x94\xa1\x28\xc9\x31\xf1\xbc\x76\x43\xc3\x0b\x33\x0f\x79\x15\xdc\xaf\xab\xb3\xe4\xae\xd9\xfd\xff\xa3\xeb\xeb\xe3\xa4\x28\xee\xbc\x9d\x97\x18\x34\x88\xbc\x2c\xeb\x8a\x80\x88\x04\x08\xec\xac\xb0\xe0\xf2\x12\x43\x00\x11\x11\x95\xd9\x43\x44\x82\xa8\xd4\x74\xd7\xcc\xd4\x4e\x77\xd7\x50\xdd\x3d\xb3\xbb\x31\x48\x0c\x41\x43\x0c\x31\x86\x33\xc4\xe3\x88\xc7\x21\x31\xc6\x23\x86\x33\xc4\x18\x43\x0c\x67\xd4\x10\xcf\x23\x84\x10\xe2\x11\x35\xc4\x78\xc6\xf3\x88\xa7\x86\x87\x33\x6e\xe7\xf9\x74\xfd\xaa\xbb\xaa\xab\xc9\x7f\x09\xc2\xee\x4c\x77\xd5\xef\xf5\xfb\xa2\x28\xfb\x74\x34\x10\xcf\xe3\x07\x57\xcb\xf8\x59\xc0\x4c\x94\x32\xc1\xcf\xba\x25\x9a\xa3\x82\xd3\x0b\xcf\xc7\xb6\x2b\xd8\x14\xda\x20\xfc\x4c\xdc\xbd\x63\x8c\x7e\xa5\x9d\xc4\x46\x3d\x37\x78\xac\xa2\x9b\x47\x41\xb6\xf0\xd0\x33\xb1\xcc\x62\x89\x5b\x54\x2a\x3b\x8b\x5d\xda\xd8\x0f\x79\x8c\x50\xe1\x21\x9d\x3c\xeb\xd3\xd6\x28\x2f\x30\xb2\xa1\xbf\xe7\xf5\x89\x49\x16\x67\xf7\x0d\x53\x17\x9e\x91\xc6\x99\x7b\x4b\xf1\xdf\xa8\x33\x5a\xa7\x2e\x08\x4c\xff\xeb\xfc\x96\x64\x77\x22\x94\xaa\xbf\x3d\x5a\xa0\x70\x2d\xea\x71\xe8\x58\xf0\x9d\x17\x85\xce\xa2\x5d\x42\xae\x8b\x4c\x4e\x01\xf9\xf4\x83\xf2\x39\xb9\xc8\x69\xa2\xf0\x99\x7b\x1a\xc7\xa3\x81\x5d\x21\x1f\xfd\xed\x07\xa0\xa1\xaa\xf0\x0d\x78\x49\xee\xbc\x73\xa3\x4d\x15\xf3\x87\xb8\x4b\x91\xa8\x3a\xbf\x73\x9d\x1e\xbd\x4c\x62\x78\x0a\xea\x3d\x77\xc5\x26\x65\x57\x8c\x58\x89\xda\xfc\xfe\xbf\x77\x85\xa0\x41\x31\x52\x01\xc7\xe7\x42\x31\xf8\x8c\x76\x8f\xbc\x2a\x61\xb1\x73\xf6\x86\x67\x81\xc3\x34\xf1\xef\xae\x0c\xff\xef\xe8\xf1\x5a\x80\xa1\x61\xbd\x11\x4f\x43\x32\x7b\x36\x2a\xd6\x16\x84\x53\x25\x55\x4a\xe0\x82\x0e\x48\x3b\xd7\x13\xc7\xad\x71\xa6\xdf\x56\x3d\xf1\x91\x7a\x34\x3a\xe9\xeb\x05\xc7\xfe\x59\x5c\x0f\xf8\x1b\x2f\x2b\x60\x27\xe2\x15\x90\x63\x16\x18\xa0\x12\x3e\x39\x58\x66\xc8\xcb\x2f\xe7\x2a\x46\x7a\x01\x3f\x51\x83\x45\x38\x98\x54\xaa\xa5\x68\x92\x9a\x79\xae\x57\xbe\x73\x0e\xf0\x25\x75\xae\xed\x7a\xcd\xbd\xc2\x00\x1e\x73\x59\x24\xe0\xcd\xfd\x41\x6a\x9d\x10\x37\x02\xae\xe6\xfe\xf0\x81\x86\xab\xa1\x60\x40\x56\x0c\x8e\x29\x28\xbf\x92\xc5\xa5\xb9\x83\xea\x46\x8d\x76\x44\xab\x8e\x2b\xb6\x6e\xd2\x06\x79\x8d\x26\x8d\x58\x41\xcc\x12\xdc\xa4\xe2\x40\xfe\xd2\xc1\x9a\xf6\xb0\x8f\x2d\x0b\x31\xa1\x41\x16\x45\xe7\xfe\x9d\xfa\x1b\x73\x0c\xcb\x8f\x69\xba\xb9\x05\x13\x74\x3b\xd5\xd8\x7e\xe9\xcf\x13\x92\x31\xb4\x41\x3c\x95\x48\x1c\x5c\xb2\x5c\xbe\x6c\xf0\xa9\xc0\xaa\xea\xce\x7b\xef\x29\x6e\xbe\x98\x19\xd8\xc4\x6e\xa1\x84\x9d\xfe\x42\x31\xd8\xd2\x39\x54\x1c\x6c\x17\x73\x6d\xcb\xf0\xa3\x9c\xd0\x0c\x8b\xab\x61\x91\x68\x62\x0b\xd8\xd3\xfa\x2b\x5d\x3f\x5b\x69\x15\xb8\x84\x1f\x5f\xab\x3d\xf1\xa4\x8c\xc5\xc8\xf4\x2d\xd0\xf1\xbb\x6d\x79\xfc\xce\xfc\x4a\x8c\x37\x9d\xb6\x31\x52\xae\xa4\x0d\x5a\x83\xb5\xdc\xbb\xbb\x92\xb9\x5d\xe9\xc8\xa2\x5a\x75\xcc\xeb\x2d\x49\x10\x66\x14\xec\x72\x6c\xa8\xa8\x86\xc3\xac\x2b\x48\x86\x77\x1f\x4d\x5e\x2f\xdf\xf1\x88\x15\x55\x12\xc3\xf7\xeb\x8f\x98\x5a\xaa\x17\x75\x66\xc2\x04\xc5\xae\xa9\x04\x56\xe6\x50\x0b\xec\xde\xa5\x65\x4d\x61\x05\xc4\xb7\x6e\xbf\xcd\xca\xb0\xeb\xe3\x32\x67\xb7\x8c\x7b\x47\xe1\x17\x50\xc6\xf8\x6c\x2b\xfc\x84\x5e\x77\xca\x27\x82\x5b\xa7\xb8\xf1\x24\x68\xcf\xd2\x61\xf1\x6b\x8c\x99\x6b\xb9\x7f\x59\x98\x2c\xcb\x4c\xe4\x44\xfa\x43\xf2\x14\xcc\x39\x5b\x81\x1b\x94\x3d\xec\x14\xaa\xd4\x05\xb0\xd2\x40\xf6\x4f\x6f\xc8\x6f\x87\x40\xad\x56\x84\xb8\xd9\x1a\x6e\xc4\x25\x26\x65\xb4\x91\xc8\x2d\x7f\xd8\xa3\x8b\x90\x18\x35\x2a\x48\x05\xb9\xfe\xcd\xba\x9a\xec\x9c\x59\x51\x49\x71\xc5\x2e\x61\xd2\xc5\x55\x7d\xea\x11\xa4\xe2\xd2\xba\x40\xb4\xd6\x19\x6a\x72\x91\xe9\x6f\x6a\x38\x42\x21\xf0\x22\xde\xcd\x59\x87\xd5\x94\xe8\xc3\x8e\xf1\x27\x0a\xb8\x70\xfa\x9c\x08\xcd\x32\x90\x9b\x3f\x5a\xc7\x9f\x31\x8b\x36\x92\x00\xd0\xdc\xae\x03\x9a\x78\x99\x6f\x95\x63\xf0\xeb\x40\xf6\xce\x97\x86\xa9\x8c\x3a\x44\xf8\xba\x66\xf1\x5c\xd1\x4f\x3a\xc2\xff\x3a\xf3\xe3\xbd\x00\xad\x9c\xbc\xc0\x42\x1d\x1f\x4b\xbb\x56\x58\xf0\x36\x97\x92\xb0\x05\x8b\xda\xc2\x5f\x6f\x50\xd5\x4b\x90\x4d\x9c\x4a\x95\x33\x9d\xb3\xbf\x7b\x55\x77\x53\xb2\x2c\x1a\xb9\x97\xb6\xdf\x23\xab\x3f\x96\x26\x24\xfd\xe9\xb5\x64\xe6\xf3\x85\xc8\x51\xf0\xa9\x6e\x59\x61\xfa\x1d\xfc\x47\xed\x6f\x87\x0a\xde\x22\x4e\xad\x50\x0c\x76\x3c\xab\x28\x34\x57\x28\x5f\xa3\x5c\xb9\x29\xc5\x39\x28\xf9\x16\x76\x8c\x78\x11\xfa\xf2\x38\xb1\xde\x47\x96\x29\x9c\x4a\x62\xe3\xbf\xdd\x02\x53\x54\xaf\x33\x8a\xb8\xbe\x64\x66\xf9\x64\x6d\x05\xe9\x44\x0d\x6f\xb6\x5f\x2d\xdf\x08\xe3\x9b\x85\xe0\x37\x1b\x74\x99\x11\x00\xac\x04\xaf\x9c\x38\x4f\xc5\x9c\x14\x83\x8b\x9f\x18\xa3\x54\x3e\xb5\x3e\x9a\x26\x6b\xcd\xd5\x56\xa4\x14\x33\x8f\x9f\x08\x99\x02\x2e\xba\x53\x0a\x7e\x20\x09\x21\x0d\xae\x1e\x2f\xc3\x5c\x89\x0a\x4d\xe6\xec\x6f\x76\xc8\xb4\x8f\x7c\xaf\x0a\x6e\x7c\xb9\xdd\x5a\x08\x8a\xec\x7e\xf9\x23\x7d\xee\x88\xe2\x00\xeb\x97\xc0\x71\x33\xf8\xf5\xdb\xaa\x9f\x6f\x84\x3a\xca\xcc\x98\x27\x07\x6d\xfc\x8a\xe4\x27\x4c\x4c\x5e\x91\x42\x89\x5b\x6f\x08\x00\xfc\x9e\x35\x17\xea\x4d\x5d\x8c\xa1\x0a\xbc\x7b\x65\x62\x24\x26\xaa\xf2\xc1\xed\x17\x46\x29\x7a\x40\x1e\xc7\xfa\xdd\xbc\x3f\x3e\x62\xfd\x55\xdd\x7a\x26\x78\xa0\x1b\x4e\x33\x52\xab\xb0\x3d\x8e\x7c\x3c\x33\x3a\xdb\xbb\xe6\x4c\x0b\x3f\x6b\xff\x6b\xaa\x0e\x8f\x30\xc0\xe6\xd3\x87\xc5\xc9\x30\x6c\x62\x1b\x39\x26\x89\x1d\xd0\xf3\xb3\xee\x91\xdd\x64\x0d\x3b\x26\xb2\x2c\xa5\xce\x1e\xdf\x1f\xcd\xa6\xa1\x84\x44\xf3\xb4\x53\x4a\x7d\x16\xb6\xcc\x8e\x27\x6a\x9b\xcc\xf7\x8e\x0b\x33\x81\x08\x3d\x5a\x28\x06\xe6\x3e\xcd\x20\x02\xb9\x35\xec\x95\x90\xf0\xd2\x1d\xc8\xf4\x79\xb2\x04\x12\xe2\x6c\xc8\x03\x87\xad\x91\xcf\x28\xba\x6d\x91\x98\x0e\xac\x84\x16\xdc\x1b\xbf\x32\xcf\xe7\x83\x8d\xb6\xb3\xb5\xc6\xc9\x71\x9b\x02\x35\x3c\x90\xfd\xe7\x96\xf8\xaf\xcf\x9a\x39\x2b\x3c\x3d\x17\xee\x11\x9f\xd5\xae\x63\x47\xb8\xd4\xe5\x87\xcb\x73\xc9\x54\x88\x55\xfe\xf2\x3b\x53\xd2\x6d\x95\xaa\x37\x15\x94\x2f\xce\xbb\x4f\x3b\x88\x06\x62\x96\x58\x69\x66\x16\xae\x4d\x36\xa7\x55\xca\x9f\x7f\x1a\x83\xf1\xf5\x73\xc7\x69\x45\x23\x72\xdc\x32\x65\xb6\xba\x97\x1b\x7c\x50\xab\x7b\x2c\x8c\x18\x36\x23\xd4\xf2\x0f\x9e\x8e\x53\x40\xa4\xca\x5c\x28\x06\xb7\x3c\xae\xc5\x7b\x4a\xcd\x78\x5d\x9e\x69\xec\x52\xd4\x30\x68\x6f\xa1\x18\x4c\x3e\x7b\xb4\x76\x83\x19\x46\x8e\x12\xb1\x27\x2d\xd4\x10\x5e\xaa\xc3\xb5\xb0\x64\xfb\xbd\x96\x64\x40\x88\x33\xfa\xa5\x33\x76\xa8\xa0\x7c\xcf\xa8\x82\xf0\xfd\xff\x74\xc7\xe1\xc6\xe2\x13\x9d\xa9\x8f\xcb\xcb\xd4\x8f\xb8\x6b\xf1\x40\x9e\xde\x7a\xbe\x22\x1f\xc0\x2b\xcf\x75\x4f\xeb\x9e\xe6\x16\xe1\x08\x19\x91\xd4\x7e\x3b\x48\x33\x1a\xc0\xbd\x31\xe5\xa3\x67\xb2\xa2\xa6\x4c\x3c\xd2\x8f\x01\x4f\x7b\x54\x53\x56\x73\xfd\x4a\x85\x53\xd2\xa1\x7f\x3d\x3e\x71\x8c\x76\xbb\xc0\xab\x7d\x6a\x81\xb1\x52\x81\x7b\x82\xad\x4f\x77\xeb\x61\xa9\x11\x69\xaf\x1d\x9d\x36\x5a\xa9\x34\xbd\xb0\xd9\x15\x66\xd2\xe2\x39\xb7\x1c\x4a\x72\xd9\x93\xc8\x1a\x0d\xc2\xf3\x54\x42\xbe\x9a\x89\x19\x73\xe3\x09\x4d\x54\xcf\xb2\x68\x33\x06\xac\x4d\x96\x84\x0a\xc6\xd4\x9a\xef\x57\x43\x65\x4e\xc6\xbd\x1e\xd8\x56\xfc\xeb\xb6\x91\x22\xaa\x81\xe6\x8d\x11\x49\xb3\x8c\xd6\x80\x71\x25\x8b\xf4\xf7\x23\x66\xc6\x90\xc0\x25\x9a\xf9\x8e\x85\xfa\x68\xb9\xec\x46\xc7\xf6\xd9\xeb\x34\xd8\x73\x95\xfa\x2e\xe4\x2c\xfe\x86\x2e\x7f\x34\xf9\xf6\x80\x55\x00\xa0\xcb\x5d\x33\x13\xa2\x01\x0d\x1a\xa1\xab\xbf\xfc\xa0\xe6\x6d\x04\x1c\xbd\x60\xea\x23\x29\xd2\x7f\x95\xaa\x4a\x47\x9f\xdb\x2c\x03\x92\x47\xa9\xea\xc0\x48\xd6\x68\x40\x73\x46\x5c\x8f\x7a\x1c\x6f\x2f\x03\xe7\xa3\xbd\xba\x40\x94\x45\x6a\x38\x5a\x4c\xe7\x56\xde\xae\x88\x1e\x51\x2b\x32\x28\xba\x73\xfc\x88\xb8\x7c\xc3\x4e\x24\x7b\x33\x90\xf9\x76\x75\x84\x9a\x3a\x70\xc4\x14\x6c\xce\xd3\x21\x8e\x6e\x9d\x78\x48\x84\xd5\xac\xf5\xd2\x19\x51\xdb\xbc\x3d\xff\xf2\xfc\xe1\x2a\xf1\x4e\x2c\x75\xf3\x99\x23\x3a\xd0\xc4\x35\x22\x55\x8d\xfc\x3d\x0d\x65\x1a\x24\xc9\x51\x9b\x35\xf4\x32\x65\x9e\x5f\x41\x96\x34\x4c\xfe\xe1\xe9\x14\xf8\x96\xb2\x58\x09\x3f\xfb\xb1\x13\x97\x68\x6f\x89\x39\xdc\x8a\x3c\x51\x13\x4f\xcd\xcb\x29\x1d\x55\xe3\xb2\x2b\x50\x26\x1c\x0c\xcf\x24\x13\x2c\x3f\x78\xb3\x6e\x9f\xe5\x71\xaa\x18\x16\xc2\x3a\x17\xb1\x88\xe3\xcb\xb9\xaf\x6e\xd8\x50\x05\x5f\xd1\xc4\x6d\xb8\x13\x50\xac\xed\x34\x90\xbd\xa2\x4b\xdf\x95\x7b\x8c\x8a\xd1\xdc\x37\xdf\xd1\x79\x41\xc2\x04\x02\x86\xbd\x77\x94\xf5\xc7\xe0\xc2\xd4\x1d\x5c\xdb\x37\x3e\xa9\xc1\x26\xf9\x97\x01\xcf\x60\x4e\xf8\x2f\xef\xd3\x7c\x8c\xdb\xbb\x62\xa9\x81\x0f\x1d\xd1\x12\x33\x36\xaa\x5c\x36\x95\x08\x0c\x7e\xe6\x47\xeb\xf5\x1f\x8f\x3c\x38\x0e\x53\xd7\xae\x0d\xff\xc2\x47\x57\x26\x0b\xc0\xcb\x3b\x3b\x84\x49\x72\x5b\x47\x9a\x93\x44\x9d\xc8\xa5\x25\xbf\xf9\x6c\x55\x5a\xd5\xa0\x8e\x09\x0a\xd4\x5c\xe8\xf5\xbe\xb4\x07\x02\x2f\x3f\xe6\xf2\x4f\x7d\x3b\x14\xf8\x37\x3a\x62\x19\xba\x76\x72\x6b\xdc\xf5\xf1\x81\x41\x0c\x4b\x9e\xdd\x0f\x25\x6e\x8f\xef\x7a\xc4\x00\x5d\xfe\xe2\x4e\xe5\x3c\x3a\x51\xc5\xf0\x90\x66\xcf\x0d\xe2\x37\x02\xea\x70\xff\x22\xc1\x03\x45\x65\x82\xc2\xf7\xfd\xc7\x4e\x2d\xab\x57\x09\x2e\x8b\x98\x34\x6b\x30\x0c\x75\x4a\xbe\x5d\xe7\xc5\x52\xff\x93\x3a\xa3\x12\x9b\x00\x25\x02\x38\xdd\xea\x21\x3a\x15\x22\x8a\xf6\x91\xc7\x58\x6e\xe4\x0a\x19\x55\xc5\x48\xa7\x38\x90\x9b\xb8\x48\xaa\x75\xcc\x9c\x56\x28\x06\x33\x9f\xd1\xd5\xce\xca\xc2\xf5\x5d\xce\x9c\xae\x19\x92\xac\xf0\x2b\x8c\x0a\x1b\xc7\xcc\x3f\x6c\x53\xe2\x0b\x26\x15\x50\x4a\xbc\xab\xaa\x10\xde\x70\x15\x35\x08\xf5\x79\xa3\x75\xd1\x3c\x45\xa2\x87\x7a\x20\x44\x9e\x29\x6e\x90\x1f\xaa\x8b\x97\xdb\x37\xd5\xb5\x71\x2e\xb2\x51\x25\x46\xb6\xe7\x3e\xb4\x6a\xec\xdf\xae\x09\x60\x4e\xbf\x77\x55\x8a\x75\xd5\x20\x42\x46\x41\x60\xdd\x16\xad\x54\x22\x93\x2f\x7c\x13\x82\xf6\x85\xc9\x2f\xdb\x55\x98\x15\x8d\x8b\x2a\x2f\x42\x91\x5a\xe7\x6e\xff\xc1\x6d\xaa\x8a\xad\x6f\xdb\x44\x98\x8c\x06\x2b\xde\xd4\x04\x41\x31\x72\x63\xb0\x4a\x76\xf2\x6c\x4d\x83\x09\x00\x89\x42\x21\x3b\xff\xfa\x47\xe2\x50\x19\x3e\x9b\x9d\x6d\xa3\xb5\xbf\x8d\x9d\x02\xaa\x44\x3c\xbe\xe0\xe4\x21\x45\x0f\xc2\xf1\x08\x60\x5f\x80\x7d\x3e\xe2\x09\xcd\xf2\x05\xb1\xbe\xb8\x22\x0f\xfe\x34\x41\x91\x07\xac\xfa\x82\x11\xf9\xe9\xd3\xb1\x70\xae\x4b\x0b\xc5\xe0\x63\x0e\x64\x8a\x15\xc8\xe9\x47\x8e\x24\x1a\x4f\x7b\x3d\xf9\x98\xf8\x0a\x14\xd6\x2e\x7f\x6d\x81\x6a\xf7\x7a\xe4\xba\xf1\x9a\x73\xed\x46\x0d\xa2\x83\x3c\xee\x59\x29\x66\x68\x1b\xd7\xb7\x24\xca\x13\xc7\x15\xd2\xe5\xbf\x62\xca\xd0\x92\xd6\x71\xd9\xb7\xa2\x95\xf6\xc3\xf9\xc4\xea\xd8\x01\x0d\x95\x96\xbd\xc9\x1a\xb8\x62\x61\xc7\xe4\xd0\x66\x6d\x52\xd0\xba\xe1\x42\x05\xff\xe5\x56\x29\x55\x87\x7e\xc1\x62\x90\xe9\xb8\x92\xb2\x7a\x8a\xde\x94\xb9\x74\x95\x62\x79\xe2\x92\x3a\xf7\xfc\x7c\x43\xb3\x9d\xf6\xdd\xf0\xd3\x0a\x28\xfa\x0d\xed\x5a\xc5\x5d\x45\x7d\x98\x69\x52\x09\xd3\xc5\xcb\xbf\x9a\x30\xab\x50\x6c\xe8\xcd\x8c\x53\x63\x7e\xdd\x33\x04\x47\x23\xb7\x62\xbc\x0a\x6b\x62\x15\x02\x0e\xc2\xb9\x6f\x2b\x60\x99\x32\x97\xe5\x2a\x06\xad\x8a\x4d\xa9\x57\xc5\x08\xa4\xaa\x32\x0f\x2f\x3a\x5f\x9d\x90\x87\x4d\xf7\x3f\x0a\x09\x2a\x8f\xda\x25\xbe\x8c\xe0\x62\x26\x4b\x15\x84\x3b\x05\x91\x8a\xcc\x8d\x6f\x29\x6a\x35\xf5\x0a\x43\x26\x91\x0a\x68\x7f\x3c\x31\x22\xf1\xe9\x3b\xa7\xc3\xb4\x9e\x2c\x8d\x3b\x51\xbc\xce\x4f\xa9\x09\xdd\xb0\x45\x2b\x67\x3a\xdc\x8e\x30\x8b\xc2\xc5\x7a\x68\xbd\xb2\x70\x10\x60\x18\xde\x14\xad\x50\x0c\xb8\x2c\xdf\x26\x0e\xf1\xc3\xb6\xf7\xeb\xbb\x24\xd7\xdb\x8e\x8f\xee\x27\x9e\x1d\xad\x70\xbd\xd3\x08\x87\xec\xf6\x7b\xe3\x0a\xc0\x52\xa8\xbf\x03\xb9\x5f\x9c\xd6\x34\x2f\xea\xc8\xc0\x61\x0d\xa4\xcf\x87\xda\xb4\xba\x8f\x03\xdd\x38\xc3\x06\x6e\x2d\xbd\x57\x80\xc0\xdc\x3e\x3b\x4c\xec\x31\x08\x2c\x7f\xd3\x7a\x45\x10\xa3\xcf\x74\x54\x49\x85\xcc\xb6\xf7\xe5\x42\xa3\xc9\xc5\xcf\x44\x30\x0b\x7e\x27\x06\x3f\x8c\xb8\xb5\x42\x31\xa8\xbf\x06\xbd\x59\xf8\x4e\x28\x27\x52\xf3\xd7\x38\x64\x3d\x4f\xde\x85\xc5\x8c\x60\xd3\x46\x4e\x6a\x25\x94\xbd\x7f\xa9\xfa\x6c\x8c\x14\xdc\x3a\xfb\xdf\xdd\xc9\xf7\x8a\x44\xd3\x73\xf7\x44\xe5\x73\xd7\x90\xa7\xd2\xb6\x32\x03\x65\xad\xa6\x46\x8d\x68\x71\x90\x3d\xe7\x09\x35\x83\x94\x19\x38\x48\x66\x6e\x78\x38\xce\x09\xc0\x76\xb8\x08\xb8\x1c\x85\xe5\xd4\x42\x8e\x72\x53\x73\x1b\x8f\x49\x7b\x8f\x4a\x02\xd4\x75\x54\x6a\x97\x23\xd7\x45\xbe\xa5\x2b\x42\x05\xbb\x67\x8f\xd5\x0a\x29\xe4\x57\x7c\xa6\x76\xc1\x2f\x4d\x53\x6a\x7e\xe4\xba\xd8\xa9\x70\x0c\x6e\x97\xa6\xc0\x1d\xfb\x48\x91\x48\x5f\xfe\x4f\xbb\xe5\xa5\xa1\x0d\xe1\x4e\x78\xc1\x6b\xf0\x35\x16\xb0\x4a\xd8\xd8\x38\xf1\xa9\x5c\xb4\x43\x17\x20\xf4\x9a\x18\x3b\x53\x79\xe5\xfa\xe8\x9a\x21\x51\x4d\x2e\x28\xaf\x5f\x3a\xaa\xe9\xd7\x10\xd3\xc2\x7d\x9a\x7e\x4d\x75\xb0\x62\x37\xd7\x43\x9a\xc8\x31\xa9\xea\xfb\x9b\xbd\xfb\x98\x0e\x33\x27\x30\x5c\xe2\x2b\xb0\xe7\xde\x12\x63\xd1\xde\x3a\x74\xc3\xb9\xef\x6e\xd5\xf7\xcc\xe2\xef\x03\x1f\xfd\x4e\x19\x15\x4b\x84\x71\xf2\x7d\xe6\xd7\x75\x19\xc0\xb9\x6b\x07\xdf\x03\xf1\x6b\xfb\xc9\x29\xda\x12\xce\x65\x08\x5b\x44\xdc\xf7\xf0\xa1\x6c\x59\x11\x0d\x4e\x4a\x8c\x56\x2c\xae\x4c\x91\xbd\x1b\xc4\x8d\x0b\x8b\xc3\x53\xad\xda\xbe\xdb\x47\x95\x30\xe0\x79\x00\x12\x0d\x3f\xf6\xb7\x56\x8e\xd1\x42\x29\x17\x1f\x97\x6e\x1a\x99\xff\xed\x4d\x1e\x6b\x5a\x83\xfa\x66\xde\x29\x39\xb5\x32\xa8\x5d\xa7\x0e\x67\xa3\x8a\x81\xef\xfd\x77\x0e\x11\x45\x9e\x6d\x53\x3e\xa4\xce\x37\xf6\x29\x0d\x1d\x43\xe5\x32\x31\xc4\x15\x1d\x78\x55\xc3\xdd\xc6\xec\xcd\x73\x24\xfa\xff\xf2\xce\xb0\x9b\xcf\x5d\xd2\xad\xd8\x84\xd6\xeb\x56\xdc\xfe\x0e\x64\xf6\x5f\x97\xfc\x31\x9d\xd3\xa6\xcd\x80\xb2\x7f\xbe\xa5\xe8\x74\x91\xb0\x6b\xe2\xa3\x85\x8f\xbf\x93\xc4\x05\x95\x88\x55\x42\xbc\x93\xd0\x17\xd4\x23\x9e\x3c\x03\xe9\xc0\x10\xe8\xff\x85\x30\x82\x28\x5c\x8f\x9c\x2a\xf2\xbc\x33\x60\x68\x86\xbc\x91\x8c\xdd\x4d\xca\x6a\xb1\x5a\xe9\x40\x76\xf9\x22\x7d\x47\x42\x99\x49\x1c\xe4\x51\x26\x1a\x93\x75\x4f\xa4\x7e\x3f\x00\xc1\xc3\xdb\x64\x9f\x14\xa3\x67\xe6\x11\x17\x80\x05\xeb\xc7\x89\x6d\x43\xf5\xb2\x06\x97\xeb\xc8\x4c\xba\x37\xf2\x4a\xb2\x2c\x20\x39\xad\xd8\x24\x37\x6c\x0e\x6e\x7a\xb4\xe9\x54\x91\x4d\x2c\xee\xf3\x37\x90\x5b\xbb\x5d\x46\x54\x9b\x58\x16\xa1\x0e\x4c\x7e\x82\xfe\x93\x1a\x4f\x81\x7b\xf8\xc6\xae\x06\x5f\x54\xa8\xfe\x2e\xb5\xc2\xf8\x1a\xb4\x9c\x14\xb7\xd4\x40\x0c\x0c\xf7\x73\x9d\x6d\xa3\xe4\x90\x29\xe5\xd2\x90\x3f\xf7\x7d\x0d\x2e\x8d\xfa\x04\xb6\xb8\x50\x0c\x8e\xcf\x8b\xd3\x90\x87\x55\xd7\x96\xd9\x8f\x2a\xc8\x40\xc7\xc4\xa8\x01\xe5\x75\xee\x6b\xda\xf5\x34\x80\xbb\x2e\x06\x23\x9b\x26\x5f\xa2\xb5\x85\x55\xf0\xca\x88\x3c\xad\x78\xeb\xf1\xc9\xb3\xb4\xa9\x1f\xb2\xeb\x88\x54\x22\x3a\x63\xa6\x7d\xfd\x45\x1a\x3e\x60\x2a\x3f\xdf\xe2\x94\xe7\x97\xea\xe0\x44\x9b\x88\x21\x64\x31\xf8\xf1\x84\x11\xca\x30\xcd\xa9\xf8\x5c\x9d\x28\xf8\xde\x36\x35\xad\x59\x56\xa1\xce\x1f\x43\xf8\x99\xe7\x75\xca\x33\x6d\x23\x46\x3c\xb0\x2e\xfd\x5f\xcd\x45\xc5\xc5\xbe\xf8\x25\x8a\x8e\x71\x7d\x94\x92\xca\x52\x88\x19\x85\x54\x77\xf9\xb4\x69\x05\xd7\xa3\x06\xdf\xa7\x9f\x37\x6a\xa4\xfa\xfd\xda\xa7\x72\xde\x7f\xa1\x18\xdc\xb4\x55\xc2\x3b\x6a\x84\x91\x3e\xec\xd4\x64\x2c\x0d\x7e\x7e\xb6\xe6\x24\x8c\x11\xb3\xce\x54\x1c\xe4\xfe\x6e\x45\x12\x8e\x5a\xc6\xa6\xc8\x1b\x69\x79\x8a\xec\x76\xbd\x6e\x26\x0e\x01\xdc\x26\x2f\xd7\xff\xfa\x76\x9c\xfc\x0c\x1f\xab\x4b\xeb\x1d\x23\x95\x82\xda\xf4\x5d\x0f\x1c\xed\x82\xf6\x3b\x15\xaa\x42\x5f\x1d\x60\xfb\x77\xb5\x8e\x57\xc6\xfa\x75\xc4\x38\x14\x22\x75\x5c\x07\xbf\x2f\xdf\x06\x77\x5b\xe2\x23\x9e\x7c\xf3\x84\xe6\x8f\xc5\xb8\xd6\x86\x1d\xa3\x2d\x3e\xb5\x7d\x88\x28\xe0\x4b\xc2\xc3\x2c\xff\xf9\xa1\x5a\x4f\x89\xdc\xba\xc8\xb8\xff\x17\x68\x20\x38\x2f\xbc\xf3\xf1\x26\x21\xf7\xe2\x56\x11\x09\x4a\x61\x39\x0c\x8b\xd4\x45\x6f\x5f\x18\xdf\x33\x94\x9a\x57\xbe\xa0\xb5\xd3\x26\x6d\xf2\xfd\x6c\x64\x8a\xfd\x19\x85\x20\x60\x73\x2d\x34\x2e\xf4\x96\xfb\xe8\x9b\xd0\x97\xf3\x0e\x8d\x4b\xcc\x0e\x19\xa9\x84\x0b\xd6\xcf\xe1\xf5\xe1\x53\x3d\xfe\x80\x0a\x79\x69\x3a\xdc\x4a\x34\xfc\x11\xdf\x6f\x83\xd9\x4f\x15\x71\x17\x1e\xd0\x8a\xcb\xdf\xfe\xa4\xb2\x87\x00\xd6\x2a\x43\xfc\xfc\x65\xaf\x98\x1b\xe3\x65\x5d\x23\x6d\xba\x7a\x75\xb7\xde\x5b\xba\x25\x82\x1c\xb1\xba\xdb\x3f\x31\x3e\x0e\x16\xa6\xca\xec\xaa\xa7\x45\xbe\xf5\x75\x3e\x70\x8b\x72\x58\x23\xc0\x23\x8b\x34\x30\x94\xe9\x23\x4f\xcb\xe3\xe3\xa9\x0a\xdb\xb9\xc3\xdb\xb4\x81\x81\xaa\x40\xcc\x0b\x81\x60\xcc\x2a\x65\xc8\xcd\x55\x00\xb9\xce\xf5\x2f\x4a\x1a\x21\x86\x11\x9b\xff\xba\x60\xf4\x4b\x93\xb4\xbb\xd3\xa0\xa6\xd3\x87\xc2\x5e\x5e\xab\xd8\xb6\xab\x98\x05\x64\x59\x14\xb4\x21\x6e\x7b\x27\xfe\xe2\x36\x56\x20\xf4\x07\x1e\x4d\x14\x87\xb2\x94\xfe\xe6\x8e\x33\x38\xfd\x43\xa6\x3b\xa6\xaf\xac\x31\xb2\xbc\x6a\x74\x56\xce\x5b\xa9\x0a\x16\xd6\x30\x97\x5e\x2b\x0e\x64\xba\x66\x5e\xaa\x60\x35\xfa\xab\xa6\xef\x20\x46\x4d\x07\xf5\x21\x65\x98\x12\x7c\xf3\x45\xcd\x2e\x03\x5b\xf5\xb0\x4b\x04\x48\x1d\x2a\x8f\xd3\x25\xf4\x17\xa6\xe2\xc7\x9a\x5d\x8a\x8d\x90\x6d\x93\x0a\x43\x31\x7b\x3e\xf7\xc6\xa8\x94\x28\xb8\x15\x21\x2a\xff\xf1\x31\x58\xec\x76\x73\x3b\xaf\x84\x0a\xf2\x97\x83\xb8\x04\x29\x53\x3e\x40\x59\xfd\xbc\xf2\x27\x7e\xa1\x18\x64\x56\xc5\x15\x79\x99\xf4\x86\x87\xe4\x0b\xcf\xcb\xe2\x48\x2c\x03\x15\xf5\xbe\x53\x1f\x68\xd2\x75\xc8\x8d\xc1\x55\xdf\xdf\xa6\xc3\xf5\x38\x85\x28\xca\x31\x7f\x1e\x0a\x37\x7c\x39\x0e\x7f\x1a\x5c\x99\xfc\xcb\xca\xba\x96\x08\x22\xdc\xb0\xa7\x64\x8a\xac\x2a\x42\xca\x99\x93\x9a\x3c\x50\x95\x30\x09\x88\xcc\xee\x7a\x44\xbe\xc3\x8f\x29\xb7\x64\xf5\x49\xed\xe1\x85\x7d\x8c\xe8\xb6\xdb\x66\x0f\x16\x45\x9d\x80\x69\x9f\xec\x10\x6e\xd0\x8c\xba\x6e\x64\x95\x5d\x1c\xc8\xcc\xe9\x4e\x16\x68\xb1\xde\x57\xe6\x16\x6d\x2e\xcb\xa7\xb2\x4e\x58\x40\x87\x97\x60\xe7\xfb\x31\xa6\x8f\x96\xcb\x89\x01\xdc\x87\x14\x5b\x94\x2a\xa9\x54\x0b\x6e\x1d\xd4\x32\x72\x99\x96\x64\xe8\xe5\x7e\x31\x52\xf4\x71\x20\xfb\x8f\xdb\x94\xe5\x8a\x83\x59\x85\x7f\xf6\x4f\x0f\xd2\x76\x24\x11\xfd\xbb\x03\x6c\x5b\xf2\x87\x74\xd2\x2c\x76\xe2\xc9\xe2\x35\xc3\xb5\x14\x8f\x19\x57\x26\x80\xe8\x9d\x5f\xaf\xeb\x42\x32\x44\xbc\x14\xd1\x62\x20\xf7\x1b\x4f\xbe\xd0\x06\x61\x15\xf8\xe7\x9f\xbf\x47\xfe\x29\xa3\x00\xfc\x1d\xc8\x3d\xd4\xa5\xf9\xc6\x61\x46\xc0\x93\x41\x64\x98\xf7\x35\x2f\x2f\xe2\x21\x56\xf0\x90\x1b\x2d\xca\xcf\x3b\x0d\xe3\x9c\x65\xa8\xdf\x64\xc8\xe3\xa9\x3b\x46\x02\x4c\xdc\x1e\x9f\xec\xd9\x73\x78\xf8\xdb\xa2\x91\xf7\xb9\x8b\x78\x14\x01\xc6\x6f\x4b\x18\xab\x12\xc1\x3c\xca\x7e\xeb\x44\x9b\x1a\xd4\x9b\x09\xa2\x81\x39\x5a\x6e\x3e\x3b\x67\x74\x86\x0f\xf9\xe0\xae\x24\xc3\x19\x51\x4b\xcc\x83\x92\x21\xff\xb6\xd6\x64\x6f\x32\x09\xe6\xe8\xd9\x6b\xde\x9c\xe0\x68\x32\x24\xd0\x25\xa4\x86\x2a\xbd\xa3\xd5\x98\x89\x11\xe3\x4d\x49\x3c\xf2\xfe\xdf\x1d\xc2\x91\x85\x54\xaa\x15\x46\x93\x5d\x55\x0e\x2b\xa0\x27\xd7\xe2\x5a\xc5\x7d\xe0\x9d\xbd\x5a\x7a\xdb\x99\x5c\xf9\xf9\x7f\x5a\x15\xfb\x07\xf0\x15\x09\x3a\xdf\x18\x99\xe8\xa0\xb0\xc7\x71\xd7\xc5\x81\xec\xc2\x77\x64\xf8\x70\x8d\x6a\x13\xb1\x7e\xec\xe0\x0a\x6f\xaf\x07\xf2\x13\xba\x34\x72\x38\xd7\xaa\x8e\x8e\xf5\x8b\xcb\x65\xc9\xd8\x1f\x76\xd1\xf1\xcb\xfc\xed\xa6\x11\x89\xdf\x05\x4b\x9a\xe0\xd0\x89\x68\xe3\x45\xcb\x20\x48\xc4\xa7\x5d\x77\x6f\x4b\xbe\xe8\x72\x18\x6f\xa2\x45\xee\xe9\x17\x34\x06\x94\xe3\x20\xa8\x83\x65\xa0\xf9\x1d\x83\xc1\xcb\x0d\x0e\xe2\x1f\xec\x21\xa1\xba\x73\xa5\x05\x5e\x44\xe1\xcf\xf9\x99\xd0\xf9\xa3\x0c\x39\xbc\xe0\xdd\x54\x85\xf1\x4c\x98\x3b\x78\xcb\xcd\xf9\x41\xf9\xf5\x8b\xc4\xe8\x8d\x61\xc7\xa8\xf2\xde\x35\xf8\xf9\x11\xf9\x90\x29\xb7\x8f\x58\x79\x9e\xaa\x95\x51\x1c\xc8\xfc\x57\x8f\x4a\x43\xeb\x51\x92\x5c\xfd\x5c\x5d\x47\xcb\xc6\x42\x8e\xf6\xa2\x07\xe1\x33\x2d\xa1\x51\x6d\xb3\x47\xb3\x87\x10\x1a\x5a\x38\x62\x51\x4e\x32\x65\x77\xdd\xb0\x90\x49\x5c\x0b\x35\xc2\xae\x67\xb2\xb6\x79\xe1\xc0\x38\x01\xcf\xcb\xfe\xf1\x41\x7d\x4e\x4c\xc4\xd6\x30\xb7\x1b\x52\x55\x61\xf1\xa2\x05\xa9\x23\xfb\xa7\xee\x56\xe5\x3b\x39\xca\x5e\x34\xb7\xce\x92\x07\xaa\x86\x9c\x12\xea\x43\x6e\x95\x83\xc0\x67\x1c\xd3\xa8\x98\x18\x39\xb1\x6f\xd0\x7d\x79\x4d\x42\xb0\x03\x77\xd8\x1d\x69\x54\x74\x6e\xd6\x15\x29\xd2\x8a\x19\xf6\xdf\xd1\x66\x2e\xff\x25\x01\x72\xeb\x14\x5b\x95\xe0\xff\x06\x09\x4c\xb0\xef\xd5\x69\xa4\xae\x9a\x59\xd6\x1b\xe7\xa6\x26\x52\x4b\x8f\x37\xa7\x8c\x57\xf4\x3c\x3c\x5f\xe0\xa3\xb5\x06\xe5\x73\xaf\x0d\x57\xb2\x7c\xdd\x82\xe3\x30\xef\x56\x65\x8e\xeb\x56\x9b\x18\x44\x3f\xc6\x3b\x23\xd5\xbf\xcc\xdb\x09\x3e\xf2\xcb\x5e\x34\x41\xaa\x01\x80\x00\xf5\x2d\xd5\x51\x4a\xa1\x82\x5c\x6e\xbd\x27\x47\x42\x87\x15\xc3\x92\x0a\xe5\x67\xfa\xc7\x6f\x5e\xa4\x0e\xda\x53\x3d\xca\xfa\x7a\x7c\x46\x99\x1f\x9e\xef\xca\xb1\xf3\x44\x51\x50\x16\xf5\xf9\xcd\x9a\xeb\x57\x99\x61\xb7\x1a\xe5\xc5\x07\x1d\x05\xe1\x8e\x6a\xe1\x4f\x18\xf6\x76\x7c\xca\x6d\xd4\x5b\x28\x06\x77\x68\xcd\x6b\x8d\xb0\x30\x65\x69\x03\xaf\xd9\x7b\x14\xaf\x73\xdb\x77\xab\x35\xcc\x55\x7a\x8b\xc1\x53\x13\x23\x67\x05\xee\x32\x0d\x00\xd0\xe7\x4e\xa5\x48\x43\x26\x16\x50\xa1\xef\xec\x3d\x2f\x7e\x0e\xb3\xa6\xf3\x54\x7a\x7b\x4a\xed\x4a\xc8\xc8\x42\xcd\x7c\xe8\xb4\x5e\x19\x83\xfd\x88\x1c\x09\x0e\x64\xde\x7d\x41\x19\xec\x54\x10\x71\x5c\x2f\x1a\x41\xfd\x72\xbc\x4a\x04\x45\x06\xc4\x2e\xd0\x93\xf8\xf9\x20\x5d\xe0\x3d\x4c\xd4\x22\xf7\x3d\xbb\x3f\xa5\x98\xc2\xa4\xf3\x5d\xee\x52\x9d\xef\x4d\x9c\x2a\x2c\x6a\x86\x1c\x52\x58\xc4\x12\xb7\x76\x4a\x4e\x72\xab\xd4\xb2\xb1\x2a\x4b\xd4\xde\xa9\x35\xde\x42\xca\x5b\xf5\x3c\x25\x1b\x85\xc8\x09\x23\x61\xcb\x0e\xcc\xb8\xaf\x2d\x91\x94\xc9\x54\x67\x19\x6c\xbf\x4e\x3e\x16\xce\x59\x65\xd1\xbc\x2b\xf7\xb9\x55\x3a\x1e\x83\x09\xf6\xff\x40\x66\xfd\x89\xf3\x15\x61\x20\x16\x26\xfa\xfe\xb1\x1a\x91\x0b\x37\x30\x43\x15\xcc\x0d\x21\x06\xf2\x23\x2d\x8d\x6e\x81\x91\xe7\x59\x38\x5e\x31\x0c\x64\xff\xde\x6b\x51\x40\x87\xcc\x8e\x6c\x9b\xf3\x19\x8d\x62\x58\x82\x7f\xc9\x67\x6c\xb7\x3c\xa0\xeb\x85\xb9\xc8\x8e\x78\x5f\xf9\x8f\x6a\x9c\xa1\x3a\x32\x19\x3e\x03\x21\x23\x77\x68\x8a\xa2\x56\x56\xa5\xae\x62\x5f\x95\x3b\xd0\x48\x7e\xf2\xe9\x33\xe7\xf0\xf0\xe3\x45\x38\xd2\xcc\xd8\xe3\xea\xac\xd2\x71\x8d\xc8\xea\x9f\x7f\xc4\xff\xb7\xfb\x8c\x66\x3a\xb1\xb0\xf2\x7e\x53\xa9\x5e\x84\x1f\x57\xbc\xbd\xdb\xf2\xba\x42\x6d\xa1\x96\x09\x8b\x21\x19\x34\x3e\xdb\x7f\xa1\x32\xd8\xf1\x70\x01\x95\x3d\xcc\x1c\xf0\x94\xce\x3d\x31\x4e\x59\xd4\x11\x6c\x99\xa0\x7e\x6b\x6a\x70\x0e\x3e\x17\x2e\xf9\xac\x12\xcd\xd8\xce\x6b\xd1\x16\xec\xc4\xa9\x54\x23\x74\xf2\x8f\x14\xa0\x66\x8f\xdf\xc0\x0e\x00\x07\x2f\x9b\x3f\x38\x59\x7e\x9c\x1c\xa3\x7c\x2d\xe4\xa5\x35\xce\x37\xb4\xeb\x36\xb2\x52\x55\x3f\x2a\x37\x0a\xef\x0d\x11\x75\x6a\x89\xc1\x4c\x39\xeb\x8d\x56\x76\xdc\x56\xd8\xbc\xc3\x8e\xea\xc5\x5e\x58\xed\xdc\x40\x2a\xb6\xef\xa8\x25\xe0\xa4\xf5\xea\xa6\xa3\x22\x0a\x93\x47\xee\x85\xb9\xea\x42\x46\x39\x9c\x28\x25\x26\x98\x5b\xf8\xa6\x6c\x72\x90\xa4\xb3\x07\x07\x9e\x90\x9f\x20\x42\x73\x85\x5f\xf9\xf6\xb7\xcf\x17\xbf\xc3\x17\x70\x87\x81\xec\xb0\x3b\x15\x58\xab\xd9\xe3\x03\x06\xe5\xe2\x96\xf1\xda\xc1\xb4\x38\x42\x07\x4c\x8c\xdd\xe8\xed\xcf\x7a\xf4\xa2\x54\x19\xe1\x55\x25\x8a\xfb\x8e\x17\x92\xac\x03\x13\x79\x08\xc4\x42\xce\xe4\x50\x73\x62\xf5\x18\x2d\x8c\xd6\x7d\x4f\x28\xd5\x03\xba\xe1\xaf\x53\x5a\xcf\x10\x96\xc3\x87\xd5\xa1\xd8\x86\x20\x83\x6b\x81\x71\xa5\xec\xcc\x57\x86\xc0\x0b\x02\x8f\xf3\xf0\xaf\x06\x55\x05\xe9\x4d\x9d\x4a\x0f\xdf\xd1\x2e\x1c\xaa\xc7\x70\x8e\x9c\x11\x06\x49\xc1\x75\x1a\x65\x11\xb4\x16\x01\x43\x72\xb7\x97\x12\x33\xf4\xca\x94\x01\xc1\x32\xfb\x83\xa7\x87\x2a\x23\xa4\x0a\xf0\xd7\xda\x0e\xa9\x44\x5b\xe2\x44\x2a\x90\x97\x0e\x51\xae\x8b\x6f\x10\xe4\x28\xb3\x9a\xcc\x9f\x97\x2b\x4a\xf2\xbe\x09\x6c\xfc\xfb\xdf\x4b\xf8\x5a\x35\xb0\x13\x2d\x04\xa6\x2c\x87\x64\x6b\x58\x88\xd8\xe1\x5b\xb5\xc6\x0f\x15\xa5\xbe\x51\x2b\x13\x06\x5b\x80\x4d\x6b\x15\x50\x70\x54\xab\x2e\x1e\x26\x0e\x4a\x58\x5c\x0b\x37\x88\x7c\x6b\x9b\xa6\xf1\x54\x25\x96\xc9\x70\x24\xc0\xfa\xd8\xbd\x23\x53\x15\x33\xec\x4a\x9e\x3e\x02\x1f\x64\xc1\xb2\x2b\x97\x14\x97\x87\xbf\xf4\x35\x21\x77\x75\x25\x72\xc2\x80\xe1\x72\x18\x97\xbf\x5d\x51\xba\xc1\x4d\xd7\x40\xe0\x59\xf9\x5c\x7f\xf2\x07\x57\xb0\x37\x15\xf7\x86\xff\x62\xeb\xf1\xe4\x5b\x01\x8b\x51\x58\x7a\x5c\xfb\x80\x86\x26\x8f\xac\xc8\x33\xff\xf7\x7a\xea\x7d\x55\x7c\x6c\x82\x62\xc0\x4e\x05\xd1\x63\xd2\xba\x28\xd9\x7a\x35\xe9\xb0\x30\xe0\x00\xc8\x3b\xd8\xbe\x5d\xd3\x5b\x35\x1b\xc4\x10\x82\x3b\x87\x5f\xd6\xb6\xbd\xc8\x41\x15\xb0\xcd\xe7\xa5\x73\xf6\x3f\xc6\x25\x13\x80\x61\xf9\xa5\x33\xe2\x72\x7f\xf6\x74\x92\xbc\xd7\x6c\x36\x3b\x4c\x44\xac\xbe\x12\x23\xb8\x1c\xf6\xe7\x06\x85\x03\x97\x29\xed\x1d\xa6\x8a\x97\x20\xfe\x76\x72\x3f\x6d\x97\x19\x84\xb3\xd0\x38\xcb\x6b\x3a\x6f\x2f\x6e\x99\xad\xd0\x40\x89\x53\x41\x75\x0a\x52\x50\x63\x8e\x08\x5c\x0b\xa9\xf3\x2d\xdf\x57\xb7\x2a\x04\x20\x43\x78\x57\xfd\xd7\x70\x08\xac\xc4\x75\xf9\x02\xf2\xee\xd1\xf2\xf7\xf7\x50\x17\xd7\xc3\x2a\x2b\xdb\x90\x95\x20\xb1\x0b\xc5\xe0\xae\x07\x15\x9d\x18\x86\x22\x9b\x9f\xcc\x37\x56\x8c\x88\x3b\x20\xb7\x8a\x4c\xde\x2d\x87\x55\xd7\x69\xf9\xf9\x6d\x4a\xcd\x3e\x85\x02\xbf\xf6\xe2\xbf\x95\x2f\x22\x71\xde\xdc\xef\x5e\x1b\xeb\x56\x51\x1d\x17\x6c\xd2\x8b\x4d\x03\xb8\x45\x49\xbb\xd2\x76\x79\x25\xb1\x4d\x5c\x57\x48\x17\xfc\xe2\x65\x4d\x0c\x85\xdb\xa6\xc5\x09\x60\x41\xa7\x7c\x24\x9d\x97\xb7\xcf\xe8\xe4\x68\xf8\x4f\xcf\x54\x25\x84\x1c\x5a\xa7\x50\xec\x5c\xd6\x80\x68\x84\x3c\x2e\xf9\x1f\xfe\x11\x7e\xe0\x22\xe5\x8b\x61\xab\x82\x10\x53\x09\xb0\x57\xd7\x35\xc7\xd6\x19\x22\xab\xdf\xb5\x04\xf2\xc9\x62\xd4\x34\xb0\xa7\xf8\x0e\x67\x06\x86\xc2\x7d\x5b\x19\xf6\xac\xbc\xca\xde\xf2\xac\x2c\x7f\x91\xeb\x72\xbd\x60\xa1\x30\x76\xfd\x84\xe4\xd2\xc1\xad\x12\x6e\x6f\x23\xc8\x12\x89\x67\xf4\xb1\x5b\xe3\x61\x7a\x1a\xfb\x92\x5f\x37\xf8\x22\x3d\x3e\x38\x62\x52\xcb\xeb\xd8\xef\x9f\x4c\xde\xc8\x8e\x0e\x41\x2c\xc9\x7c\xeb\x78\x62\x3c\xc0\x5b\x97\xec\xfc\x35\x32\x33\x55\x7c\xc7\xad\x72\x6c\xd5\x66\x2f\xae\xff\x4d\x44\x0a\xc5\xa0\xeb\x90\x2e\x90\xe8\xbb\xd8\x15\x28\xd7\x3f\x9d\x4c\xee\xe2\x2d\xea\x54\xc2\xef\x6e\x4a\xc8\x58\xcb\x3b\x70\x7c\x79\xf9\x58\x28\x06\xd3\x97\x6a\xf0\x4a\xf0\xf0\xe6\xe1\xf9\x85\x6d\x1f\x4b\x65\xa8\x92\x45\x0c\xc4\xab\x78\xfd\xce\x3e\x3d\x5f\x0b\x1a\xd8\x8b\x56\x6e\x99\xc1\x1f\x28\xa1\x9c\x61\x87\x53\x59\x7f\xf6\xfa\x47\xb5\xaf\x62\x51\x03\xf9\x22\x5d\xaa\x04\xdb\xd1\xeb\x85\x0d\x34\xe1\x04\x1d\x56\x28\x06\xbf\x7a\x54\x9e\x5f\x13\x45\xaa\x55\x03\xd9\xb7\x07\x0d\x16\x45\x37\x47\x47\x05\x9d\xcb\xf8\x6d\x29\x5c\xaf\x8d\xa2\x15\x4f\xb3\x6f\x3e\xa3\xae\x88\x0c\x86\x91\xe0\x3b\x7c\x6b\xaf\x42\xfc\xc7\x00\xea\x89\x6d\x36\x72\x6d\x4f\x9d\x01\xdf\xe9\xc6\xb8\xba\x00\x6d\x93\x95\x7e\x39\x25\xf8\x91\xbf\xf4\x84\x7c\x24\xb1\x1b\xbb\x70\xbe\xa0\xa5\x1e\xcc\xaf\x4b\xe6\xc3\xf9\xa4\x05\xb3\xd8\x07\x66\xbf\xde\xa5\x7a\xda\x22\x0e\xfe\x0c\xc6\x6c\x52\x70\x07\x54\x78\xa7\x59\x8b\xce\x38\x62\x76\x85\xa6\xcf\x3f\xaf\x4d\x39\xaf\x62\x7e\xe1\x79\x44\xff\x63\x56\x2c\xf6\x31\x12\xa2\x98\x99\x19\x2d\xba\x02\x47\xc5\x8a\xa8\x4e\xe2\xe4\x7f\xa7\x77\xac\x82\xa6\x32\xce\xb0\x41\xcb\x2c\x3d\xaa\x2c\x68\x54\xff\xc9\x59\x9a\x16\x22\x2a\xf9\xd2\xcb\x3d\xbb\xe7\x6e\x7d\x77\x6e\x97\x29\xf3\x50\xc9\x12\xbe\x50\x99\xaf\x66\x47\xeb\x85\x0d\xb5\x6d\x1c\xe3\xda\xf3\x5d\xcf\x6a\xdb\x79\xe2\x71\x2f\x63\x51\x4e\xcf\xbf\x57\x63\xb4\x34\x31\x9f\x16\xf1\x24\xdb\xc7\x46\x26\x88\xde\xb1\x84\x7f\xfe\x06\xed\x83\x21\xc7\x92\x9c\x13\x10\xb8\x79\x5d\x55\x91\xc0\x4d\xe2\x79\x4a\xe3\xb0\xfe\x03\x9d\x1e\xe8\x19\x55\x1b\x41\x47\x9d\x7b\xeb\x98\x36\xbf\x0a\xbf\x0f\x60\xaa\x91\xa9\x6c\xe2\xb0\x6b\x63\xc6\x45\x98\x8b\x03\xb9\x6f\x4d\x96\x47\xc4\xb0\x90\xcf\xab\x8e\xdc\xfe\xbd\x42\x4d\x02\x3b\x11\x3c\xf2\x86\xdd\x52\x57\x01\xa8\x93\x69\xe9\xd9\x8e\xa3\x6a\x57\x84\x6d\x95\x9e\x9b\xbd\x54\xf1\xdf\xad\x85\x3f\xd7\xa9\x70\x58\x41\xf0\xdb\xf7\x93\x21\x21\x6c\x28\x22\xe1\xe6\xf6\x55\x50\x74\xd5\x11\x43\x2e\x11\x10\xd8\xdc\xff\xb6\x27\x37\x60\xeb\xc2\x56\xc7\x47\x67\x2c\x12\x16\xdd\x19\x27\x59\xa3\xd6\x57\x28\x06\x9f\x5f\x23\xb3\x2e\x0f\x12\xcb\xde\x51\x14\x8f\xcd\x06\x68\xb7\xe6\x6f\x7b\x4b\xb1\xe0\x22\x8c\x7a\x35\x8e\x45\xfb\xc4\xfb\x83\xe0\x8f\xc2\xbf\xf3\xf1\x36\x45\xe8\x84\x73\x21\x83\x9b\x6f\x95\xbd\xf9\xe5\x97\xab\x0a\x45\xb7\x1c\x6b\x53\x86\x19\x0c\xab\x73\xa4\x9c\xf3\xba\x1c\x2e\xf4\x51\x1f\x50\x53\x03\x99\x47\x36\xeb\xd3\xb5\x68\x1e\x0b\xc8\x38\xbc\x2f\x8e\x1e\x55\x9c\x1a\x35\xe5\xdc\xed\x32\x2e\x34\x90\xe5\x0b\xbe\x66\xf6\xe1\x21\xba\x5a\x61\x85\x44\x12\xcc\xc1\xd4\xc3\x1a\x83\xb2\x1e\xed\xa1\xae\x5f\xa9\x2a\xbc\x22\x93\x8f\x11\xf7\xbf\xa1\x53\x13\x2a\x88\x89\x73\x97\x3b\x75\x4a\x42\xaa\x9a\xc4\x4a\x0b\xc5\xff\xe1\x01\x78\xbf\xcb\xb9\x16\x7a\x34\x55\xd8\xb6\x45\x1b\xae\x86\x2f\x05\xd0\xa1\xbc\xbe\xb8\xa5\x2d\xf9\x11\x67\x4d\xeb\x14\xf9\xff\x17\x0f\xca\x0d\xa6\xab\xf2\x1a\x17\xde\xab\x09\xce\xf8\xac\xce\x38\x65\x2d\x16\x2b\x79\x68\xc7\x27\x79\x39\x14\x2f\x14\xaf\x28\xfb\x0e\xdf\x0f\x8d\xe3\x7f\x3e\x0e\x79\xe3\xa6\xf5\xce\x2e\x99\x78\x9a\x39\x73\xde\xd4\xe8\xe5\x25\xc6\xff\x67\x3f\xa1\x3f\x59\x4e\xd4\x00\x0c\xf1\x09\x33\x45\x55\x73\xb1\x30\x69\xce\x59\x6f\xc1\x93\xb8\x21\xe1\xd0\xbc\xf1\x85\xa1\xca\x78\xa9\x09\x36\x3b\x3d\x67\x27\xbf\x4b\x95\x58\x56\x72\xd0\x9e\x3d\xb2\x7f\xb8\xb2\x03\x8b\x6d\xfe\x9b\x9b\xa1\x3c\xea\xc6\x88\xb9\x54\x95\xa2\x3e\x52\x1d\x26\x57\xc2\xbd\x11\xe8\x7b\x6b\xbd\x4d\xaf\xd5\x7d\x16\xb9\x26\xb7\x9d\x8a\xd1\x3a\x26\x4e\x07\xef\xaf\x1d\x87\xfd\xe9\x75\x7d\xae\x47\xfa\xb0\xe2\xdb\x97\xfb\xef\x5e\x59\x5b\x97\x29\xf5\x5c\x0f\xd7\xc3\x07\x34\xb0\x3e\x59\xd6\x4d\xb2\xe1\xd5\x64\xce\x91\x40\x7c\xcf\x0b\x8f\x5d\x7e\xe2\x0a\x45\xe4\x00\x57\xfc\xf0\x36\xfc\xab\x36\xbb\xc3\x66\x05\x83\x1e\xe5\xe3\x1f\xe8\x38\x00\x31\xe7\xe2\xd5\xde\xa8\xbb\x65\xb9\xda\x8f\xb8\x61\x48\x71\x20\xef\x1c\x90\xa3\x5d\x61\x2f\x51\xdf\xa7\x8a\xb0\x1b\x91\x52\xc7\x17\xa6\xc8\xa2\xcc\xa1\x8c\x9a\x94\x0b\x44\x4d\x3b\x22\x13\x6d\x8f\x71\x59\x89\x03\x16\xae\x69\x6d\x4b\x09\x86\x14\xc5\x30\xe4\x43\xc3\xd3\x81\x10\x0c\xf1\x82\xc2\x69\xad\xa1\x0a\x03\x88\x90\x1e\xbc\x61\xb6\x50\x01\x88\x51\xc5\x61\x4e\x3e\x9e\xac\xff\x2b\xa4\xc4\x90\xe5\x21\xa6\x68\x3f\xbf\x3e\x5e\x98\x2b\x62\xe4\xa4\xb1\x13\x57\xac\x18\xa9\x2c\xee\x1a\xd8\x05\x94\x4b\x31\xb8\x6c\xa3\x9e\x3c\xb9\x1a\x38\x8b\xb2\x63\xf6\x8b\x9d\xf2\x12\x3a\x65\xe5\x34\xb7\xed\x85\x3e\x66\x39\xad\x62\xac\xc2\x0b\xea\xf1\xe1\x43\x96\x44\x1e\x3f\xa3\x9c\x61\xdf\x12\xec\xb1\xcc\xf9\x6f\xa5\xdf\xa5\x15\xf3\xd9\x6e\x78\x4f\x19\x1b\x29\x96\x99\xdb\x35\x4d\x2c\xea\xe0\x3e\x9b\x6b\x9f\x44\x40\x99\x83\xed\xf0\x18\x6f\x58\xb0\x6c\x45\x31\xca\xc7\x95\x69\x3a\xab\x7f\xe6\x34\xf1\x35\xf3\x5f\x6c\xd5\x65\xcf\x99\x5f\xa9\x88\x21\x67\xe6\xdc\x67\x3e\x22\x6e\x2d\x8f\xfe\xf5\x51\x09\xbb\xf3\x1a\x9f\x33\x64\x86\xad\x49\xa6\xec\xd9\xd3\x79\x5d\xcb\x17\x22\x81\x6c\x81\xea\x5c\xca\x36\x71\x61\xf3\xd7\xef\x91\xd3\xdc\xe9\x73\x66\x77\x16\x8a\xc1\x15\x2b\x87\x45\x6f\x8b\xc4\xe6\xec\xdf\x53\xf4\x01\x58\xd8\xf9\x42\xd5\x7a\xe3\x1e\x6d\x76\xd3\x17\x4f\xa8\xf2\x9f\xd8\x95\x92\x98\x6d\x70\xa3\x7d\x70\xd2\xfb\x63\x3e\x4e\x3a\x65\x94\x82\x0f\x65\x7a\x8e\x26\x1f\x0b\xd7\x45\x73\xdb\xa7\x4e\x9a\x14\xfe\xe3\xab\x56\x8d\x49\x77\x26\xe1\x33\x8a\x90\x8f\x79\x77\xb8\xf4\xc4\xe1\xfe\xaf\xb9\xef\x6b\x32\xe6\xcc\x77\xb9\x43\x9e\x44\xa4\xe6\xee\x7f\x4a\xc9\xe1\x86\x28\xf3\x33\x37\x29\x00\x24\xd7\x43\x16\xb6\x85\xb0\x55\xf6\xf3\x63\x61\xa7\xc8\x59\x48\xe1\xaf\xe7\x95\x40\x4d\x42\xd9\x89\xad\x88\xe3\x5e\x73\x48\x2e\x81\x1c\x0e\x8e\x4e\x00\x0e\x7e\xb1\x50\xb8\xc5\x50\x02\x0d\x64\xd0\x28\xeb\x53\xbb\x78\xf9\x01\x35\x6a\xfe\xea\x43\x6a\x3b\x11\x7e\x38\xc1\x36\xcc\xec\x7f\x7c\xa8\xf8\x1a\x55\x82\x1b\x02\xd9\x77\xe7\xca\xf3\xc5\x6f\x67\x4c\x74\xff\xd9\x43\xfb\x34\x9c\x96\x00\x95\x08\x0f\xcd\xfc\x17\xd6\xfc\x6d\x13\x96\x54\x9d\x94\xb9\xbc\x05\x0e\xcf\x75\xa8\xa9\x14\xda\xd7\x1c\x57\x50\xb2\x58\xd8\x7d\x05\xff\x2b\x5d\x8c\x0d\x9f\x7f\x96\xef\xd6\x35\xf9\x60\x06\xe6\x94\x51\x93\x78\xdb\x0b\x2a\x10\x89\xd5\xa0\x05\xcf\x3c\x69\xc5\xef\x7a\xc6\x2c\x3e\xa8\x99\xb4\x49\x83\x4b\xa0\xba\xac\xdb\xb3\xdf\x7d\x58\x91\x3c\x25\xdc\x90\x9f\x13\x5f\xb2\xe6\xa0\x64\xe8\xe7\x1e\x48\xfc\x07\xbe\x30\x45\x1b\x6c\x61\xd6\xe3\x47\xfa\x8f\xb9\xd5\xda\xa6\x6d\x52\x13\x17\x4c\x2a\x0a\x82\x0b\x5b\xe3\xaf\x59\xe5\x9e\x4e\xfb\x35\x81\x1a\x81\x23\x88\xfb\xe6\xec\x5f\x57\x47\x32\x33\x36\x71\x04\xd2\x21\xf7\x4d\x47\x37\xd8\xeb\x8b\xf9\xb5\xbf\x5e\x05\x09\xd9\x77\x5c\xdf\x30\xb0\xeb\x0a\xb1\x93\xe0\xce\x2b\xd2\xd6\xb1\x16\x31\x3c\x51\x58\x7d\x64\xa2\xd6\x80\x18\x02\x95\x1a\xfe\xc7\x2f\xbc\x96\x52\x5f\xae\xca\xde\xfe\x42\x31\xfc\x75\x30\xf1\xaa\x50\x66\x7e\xea\xb0\x22\xc9\xc0\x87\xb8\x7c\x26\xf8\xb5\xae\xf8\xfb\xcf\x99\xc9\x09\x71\x0f\xbe\x28\xd7\x7c\x36\x1f\x93\x99\x8a\x85\x5c\x99\x08\xab\x89\x53\xe3\x06\x47\x77\xce\xe5\xaa\x17\xbd\x62\xd8\xb9\x90\x11\x80\x12\xe7\xdb\xef\x8f\x8b\x07\xa3\x9a\x96\xf1\xb8\x50\x0c\x20\x2a\x3e\xd0\x97\xb2\x5d\x83\x2f\x38\x43\xed\x04\xa1\x72\xfd\xae\xe4\x7f\xab\xf8\x24\x5a\x4c\xe6\x7e\xd5\x3a\x52\x11\x96\x43\xe1\x3b\xa9\x12\x3e\x6d\xf8\xd8\xbd\xb2\x78\x77\xc2\x32\xbd\x18\x8c\x1f\x7e\xbe\x12\x2b\xb9\x50\xe1\x1f\x5f\xd2\x79\x45\x46\x0d\xb4\xb3\xf8\x2f\x08\xae\x9f\x96\xcc\xb3\x1e\x66\x4e\x1f\xaa\xa9\xac\xe3\xdc\xa9\x2c\x54\x42\x9d\xb3\xd2\x23\xcc\x47\x93\x68\x95\xb5\xa2\xe0\x59\x34\x5e\xa9\x1d\x7c\xbb\xc4\xc7\x95\x17\x3e\xac\x7f\xcf\xbe\x88\x4d\x90\x79\xb2\xa4\x98\xad\x10\x0f\xac\x42\xb2\xef\xde\xaf\x9f\x22\x81\x33\x87\x8e\xf1\xc3\x93\x35\xad\x39\xcb\x2f\x34\x31\xaa\x61\x47\xce\xf2\xaa\xa7\x40\x02\xf0\x4a\x30\x2f\xd0\xa7\x5f\xf7\x69\x28\x02\x0b\xf9\x8e\x51\x15\x89\xa4\xf3\x6d\xb8\x0e\x15\x8b\x32\xce\xd6\xe5\x6c\xcd\x85\x09\x4c\xa2\x47\x6a\xbc\xdc\x3a\x67\x8b\x76\xa2\x3d\x0f\x19\xc2\x29\xae\x6b\x76\xc2\x5a\xae\x01\x1a\x92\xab\x8f\xb6\x68\x89\x06\xa6\xd5\xe7\x28\x5c\x4e\xb7\x8e\x18\x78\xfa\xbf\x57\xbd\x40\xe5\x31\x61\x86\x24\x25\xb9\x74\xec\x02\x65\x33\x6a\xdb\xd8\xa6\x4c\x88\x95\xbd\xa9\x29\xdc\xd6\x30\xb3\x91\xe3\x56\x11\xff\x8e\x91\x09\xcf\x12\x65\xdd\xc0\xb8\xbc\x83\xc5\x3b\xd5\xec\xfc\x9e\x18\xa6\xd6\xe4\xab\x61\x39\x19\x7a\xa8\x4d\x2f\x1f\x10\x8b\x39\xab\x79\xfb\xe5\x33\xc8\x41\x0a\xc0\xdf\x95\x42\x19\xae\x64\xf9\xc2\x67\xf4\xdf\xe7\x6b\x1b\x6f\xec\xc5\xa2\xac\xb9\xd3\x6f\xc0\xf1\x5b\x89\x99\x5f\x43\x89\xe9\xd4\xc1\x85\xf2\x76\xd0\x92\x87\x48\x24\xe9\x93\x7b\x1f\x64\x56\x0a\xbe\xa3\xba\x99\x45\xbc\xab\xf1\x33\x85\x41\x05\xa9\x38\xe1\x8b\xe5\xbf\xe7\x31\xc1\x85\x2b\x53\x66\x73\xa7\xb6\xf0\x01\xbc\x7a\x40\x05\xb1\x83\xb6\x40\xa1\x18\x3c\xdb\x9d\x72\x27\x93\xdb\x7f\x00\x08\x3c\xa5\x3d\x01\x0f\x3b\xa6\x2b\x4a\x5e\xd4\xab\x68\xe5\xf8\x4e\x09\x83\x70\xd0\xcf\xa7\x41\x34\xb5\xc3\xc6\x2e\x16\xe8\x08\xff\xcb\xd2\xd7\x12\x56\xdb\x1c\x86\xc6\xdf\xef\x2d\x8a\xdd\x51\x8f\x6f\x0b\x47\x8a\x2b\x5e\x1c\x11\xc7\x2b\xe4\x38\x7d\xd1\x8b\xbe\x72\x5b\xab\x56\xbd\xd4\x05\x0b\x3f\xdb\x33\x51\x9e\xd1\xfe\xaa\x1f\x15\x26\x57\xcd\x4f\x26\x26\x5a\x2e\x8b\x99\x1a\xba\x5f\xeb\x56\xa2\x69\x4d\xf6\x3f\xcb\x67\x90\xc4\x00\x57\xd1\xdc\x6f\xee\xbb\x44\x99\x9a\x79\x88\x58\xe0\xf4\x98\x0c\x2b\xcd\x29\x8a\x63\xae\xc0\x6f\xe4\x6e\x3f\x99\x22\xf9\x7a\x20\x31\x10\x71\xfe\xf3\x63\x37\x0b\x30\x02\xb5\x88\x47\x0c\x18\x86\xf7\xae\xd0\xe0\x8d\xbe\x17\x33\x70\x33\xcf\x4c\x18\x16\x1d\x7b\x05\xcd\xda\xda\x25\xe8\x67\x18\x55\x90\x52\xb5\x66\xee\x0a\xa4\x96\x5d\xcc\x0c\xca\xfe\xa0\x53\xc1\x4f\xc7\x94\xdd\x42\x31\x38\xf9\xc2\x08\x05\xeb\xe2\x79\x94\x42\x0c\xc1\x9a\x4b\x64\xc9\x42\x84\x01\x7b\x20\x0a\xba\xbf\x74\x74\x89\x1d\x8b\x38\xeb\x7c\x90\x00\xe6\xb3\x95\xf5\x52\x5a\x88\xf1\x22\xeb\xb1\x03\x70\xaf\x16\x22\x4b\x28\xf7\xe7\x47\x8c\x4a\x7e\x77\x61\x8f\x03\xd5\xc8\x6f\x34\x77\x66\x93\x40\x99\xcc\x63\xd6\x35\x8b\x95\xfa\xbc\x63\xd6\x4c\x2e\xbe\xf8\x9e\x7e\xa4\x2d\x6b\x6a\x13\x22\xfe\xda\xc3\xf0\xcb\x17\xc7\x48\xb8\xfc\x0c\x2d\x42\x94\x79\x5c\x89\x9e\xfc\xf7\x36\x41\x8a\x34\x31\x90\xe5\x32\x3f\x7f\x58\x66\xaf\x0a\x43\xd0\xd4\xbc\x2e\x9f\xac\x09\x60\x2b\xf1\xcc\x73\x5b\xe4\xc1\xef\x9c\x59\x98\x51\x98\x1e\xfe\xca\xcf\x2e\xd6\xb8\xe2\x0d\xcc\x9a\x55\x6c\xd9\xd2\x28\xad\x65\x69\xb4\x30\xb7\xb0\x80\x0d\x9c\xd8\x13\x37\x7c\x09\xd9\xdb\x5c\x7e\xb4\xbc\xa7\xdc\x58\x83\x5f\xfe\xfd\x4f\x48\xf8\x39\x55\xc5\xf2\xbf\x7d\xbf\xb6\x1c\xb0\x11\xf3\x44\x46\x2c\x8d\xd3\xc8\x87\x40\x7f\x73\x15\xfb\xef\xd9\xa3\x65\x0e\x94\x6e\xf6\x23\xda\x15\xfd\x53\x38\xd1\x8b\xda\x75\xe8\x9b\x83\x8c\x68\xac\x31\xf0\x8c\x0e\x72\xb4\x89\xd5\x27\x96\x32\x07\x34\xb5\x21\x8f\x32\x46\x22\x9d\x81\xff\x58\xae\x60\xc5\x7c\x8e\x70\x2e\x53\x56\xa8\x02\x45\xaa\xf3\x7d\x59\xbb\x46\x34\xa1\xf0\x69\x0c\x53\xfd\xb0\x10\x57\x05\x0c\xbe\xf6\xbe\x3e\x6f\x0f\x63\x33\x06\xc7\xca\xdc\xa7\x35\xa5\x7b\x5a\xe7\x8e\xd3\xc2\xad\xeb\xf6\xeb\x20\xdc\x5f\x8f\x1c\x9c\x34\x5d\xff\xa7\x0e\xa1\xf0\x4b\xdc\x68\xd3\x96\xf9\xe2\x34\x8d\x48\x89\xb8\xd9\x34\xc8\x32\xfc\xc7\x52\x65\x7d\xc2\xab\x45\x1e\x33\x0f\x6d\x54\x24\x82\x28\x13\x52\x00\x87\x17\x8a\xf5\x35\x65\x75\x9e\x3e\xf9\x22\x6f\x2e\xf4\x59\xd7\x56\x7d\x35\x0c\xbc\xb7\x44\xce\x73\xf8\xd6\x3a\xff\xd1\x2e\x08\xdd\x2b\x90\xd7\x97\x30\x26\xf9\xf9\x7e\x19\xca\x4c\xe6\x3b\x35\xde\xd8\xcd\x13\x8a\xfd\x76\x89\xf5\x51\x87\x84\x95\xd8\xd8\xf1\xca\xae\xd2\xf1\x88\x07\x69\x29\x3b\xdd\x49\x1e\x2a\x62\xd7\x91\x21\x5c\x6d\x56\x54\x35\x31\x31\xec\x55\x1d\x61\x3f\x18\xcc\xde\x7e\xbe\x8a\xaa\xe4\x88\x88\x8b\x9f\xfe\x48\x54\x4a\xf2\x0f\x32\x26\xd0\xa5\xea\xc0\xdc\x2a\xac\xed\x7f\x5b\x56\x8c\xd8\x90\x65\x47\x29\xa1\xf0\x94\xc2\x29\xa2\x4d\x40\xf5\x1d\x3b\x06\x12\x7a\x0b\xfa\x29\x20\x0c\x93\xdd\xd9\xf1\xe5\x29\x89\x0b\xa1\x52\x02\x6f\xea\xb1\x99\xca\xac\x04\x11\x66\xc2\x88\x22\xfb\x96\x2e\xf7\xe8\x44\xe8\x4c\xd0\x10\x19\xbf\x4c\xaa\xe2\xcd\xea\x08\x83\x54\xe6\xe8\xb9\xc9\xf5\xbb\xef\x88\xce\x42\x1f\x10\x75\xde\xa3\xbb\xac\x20\xc7\x91\x7d\xc6\x55\x3d\x32\xf4\x74\xa8\xa4\x8e\x92\xec\xb2\xc3\x37\x27\x67\x90\xbf\x3c\x3b\x89\x5a\x84\xa9\x13\xa9\x24\x7c\xb5\x73\x67\x97\xa0\x97\xb0\x68\x53\xa8\x3e\x1c\x6d\x85\xb3\x73\x3d\xb6\x90\x43\xb0\x0a\x22\x7a\x50\x86\xc4\xcb\x67\x4e\xe3\x93\xc3\x4f\x9f\x96\x13\xfa\x1a\x62\xaa\xae\xda\xe8\x71\xf2\x8d\xe1\x06\x0e\x8f\x56\x78\x73\x2d\xcd\xef\xc2\x63\xd4\x77\x23\x67\x89\xcc\xce\xf7\x13\x4b\x36\x13\x87\x97\x7a\xd9\xb3\xc3\xa2\x6a\xd5\xc0\xa6\xcf\xc0\x8b\x60\xd1\x5e\x7d\xf9\xc9\x22\x2c\xcd\x4f\x57\xc8\x12\xd4\x24\xae\x41\x7d\x86\xa2\xf5\x7f\x67\x5b\x04\x10\xb5\x50\x1f\x3f\xd3\x37\x8a\x9b\xbc\x9c\xda\x38\x1a\x55\xad\x3c\x6b\x98\x82\xa9\x41\x8c\x34\x0a\xc5\xe0\x2f\xcb\x74\x15\x20\x9e\xd8\xf9\xf4\x04\x94\xe1\x7e\x79\x52\xea\x29\x9e\x41\x63\xfd\x5f\x37\xaa\xaa\xc5\xc4\x15\x18\xcb\xcc\x7f\xde\x2e\x3f\x6f\x1f\x62\x54\xd9\xce\x65\xff\xef\x5e\xa8\x9e\xae\x23\x25\xcc\x3c\x64\x52\xd1\x16\xb2\xb7\x86\x2b\xd2\x55\x06\x71\x61\x8e\x81\x34\xf7\x2e\xe4\x55\x2d\xec\x45\x02\x39\x7d\xfb\xe5\x2b\xac\xf2\x36\x6d\x20\x33\xec\x25\xad\xe9\xa0\x4d\x2b\x76\xe2\x6d\x1d\x9f\x3c\x45\x0d\x64\xf9\x98\x07\x62\x3e\xf4\x13\x1b\xc0\x45\x8a\xf7\x78\x89\x91\x12\x6c\x96\xf2\x67\x8d\xd7\xda\x39\xe4\xf8\x44\x9b\xad\xb7\xdd\x3f\x46\xaf\xa3\xb8\x45\x75\xe4\xdc\x13\x3c\xa9\xed\xf4\xa7\xcf\x99\xd9\x09\xf1\xe6\x8b\x3b\x15\x45\x37\x40\x3f\xdc\xdc\x2e\x21\xeb\xb5\x30\xf6\x4f\xf8\x40\x01\x75\xa0\x3e\xc5\x79\x25\x58\x28\x39\x04\x73\x0a\x1c\x53\xf1\xd9\xdd\xe3\xb4\x0b\x6e\x59\x04\x8e\xa6\xdc\x7d\x8c\x9f\x3f\x56\xab\x27\x2b\xd4\x23\x8a\xec\x6b\xd0\x63\xb5\x24\x94\x2d\x90\x6f\x72\xf6\x78\xa6\x74\x9f\x8c\xbe\x56\x58\xfc\x14\x8a\xc1\x2f\xb7\xc7\x27\xc6\x26\x56\xaa\xa5\xed\xd2\x88\xcd\x3d\x94\x38\x72\xcc\x9a\x79\xef\xf1\x16\xe9\xac\xa8\xac\x3a\xf2\xb7\x3d\xa6\xfa\xf3\xc3\xd8\x76\xc6\x41\xb9\x1d\xf7\xf4\xde\x73\x20\x37\x62\xb2\x22\xc8\x41\x78\xc8\xcb\xe4\x94\x92\xd1\xa5\xd4\xab\x02\x5d\x20\x73\xe1\x23\x63\xd4\x21\xbd\x57\x4d\xc5\xd8\x2f\x4f\xd6\x59\x50\x8e\x14\x5f\xcd\xbe\xdc\xa1\xbd\xd4\xcb\xc4\xce\x29\x97\xed\x52\x0c\x13\x68\xb3\x94\x36\x97\xcf\x7e\xfd\x89\xa1\x0a\xa6\xd3\xe4\xd4\x84\x6d\xcb\x21\xe2\x5f\xc9\x88\x9d\xd2\xa8\x1f\xc8\xae\x77\x54\x5b\x49\xb7\xea\x97\xcb\xd1\x84\xb0\xa5\x11\x05\x17\xae\x73\x24\x46\x84\x41\xaf\x92\x28\xa9\x5f\x0a\x4f\xe2\xb6\x8d\x9a\x91\x01\xf4\x6b\x06\x0a\xfb\xc6\xa9\xac\xc4\x9b\x9d\xd3\xd9\xe4\x37\x23\x9e\x0b\x16\x57\xef\x9e\xd4\x96\x59\xc8\x88\xbc\xbb\xc3\xce\xae\x43\x4b\x7d\x7e\x5c\xfc\x0e\x64\x4f\xaf\x01\x19\xef\x9b\xaa\xfc\x3d\x2e\xbd\x5d\xc1\x48\x35\x38\x82\xaf\x38\x90\x79\x65\x74\x32\x3b\x45\x92\x10\x31\x54\xf2\xdf\x94\xfa\xa3\x84\x71\xa4\x9a\xff\x8d\x0f\x74\x0e\x85\xef\xc8\x5f\xfd\xa3\x97\xce\x13\xb5\x54\x84\xf6\xd8\xbd\xfa\x52\x2d\xaf\x78\x98\x39\xd8\x0b\x4b\x58\x04\xfe\x1a\xfc\x1b\x3d\xb4\x4d\xf5\x90\x11\xae\x58\xe1\x2d\xbb\x6a\x70\x72\x4a\xd3\x0e\x1e\x75\x43\xef\x51\x4c\xc8\x19\x17\x50\x08\x5f\xc4\xcc\xb7\x44\x7b\xee\x5b\x16\xe6\xc8\xd1\x56\x2b\xb5\x23\x8d\x57\xb8\xc5\x85\x32\x4d\xda\x54\x26\xaf\xe0\xcf\x2f\xe9\x1b\x4b\xee\x45\x80\x18\x89\x14\xf6\x72\xc6\x41\x7d\x02\x5c\xf7\xc3\xb2\x47\xd0\xb8\x1e\x1f\x0a\x5d\xd8\xf5\xd4\xf1\x8c\xb0\x43\x8a\xd6\x7a\x7d\x8a\x17\x94\x6b\x5d\xe6\x1a\x16\xc7\x61\x6d\xd3\x99\xc4\x61\x15\x57\x89\x03\xeb\xe4\x3b\x65\xf0\xb2\xfc\xb0\x6a\xcb\xfd\xcf\xdb\x3a\xfa\x11\x39\x0e\x8e\xf7\xb4\xa3\x2c\x0d\x05\xd2\xcb\x01\x05\x0d\x6c\xf5\x89\x6c\x9e\xbd\xfe\xd6\x73\x45\xd1\x12\x3e\xa8\x21\x9d\x7a\xe4\x9c\x3d\x93\x6f\xf0\x72\xd9\xb3\xb5\xaf\x4a\x5c\x1b\xe8\xff\x00\xb4\x7c\xbf\x23\xd6\xfc\x68\x22\xc6\xf3\xca\x75\xed\x3a\x1e\xc2\xb2\x44\xb3\xfe\xa9\x56\xed\x3f\x55\x69\x1d\xf2\x4d\x6e\xe3\x34\xcd\xdc\x8a\x78\x46\x35\x22\x39\xe5\x2f\x0d\x74\x17\xb0\x46\xd8\x2a\x9a\xf0\x29\xf2\xd6\x62\xc9\x1d\x0b\x7f\x66\x0a\xcf\xd3\x35\x4f\xdd\x20\x5a\xc8\xa9\x70\x3a\x51\x66\x5e\x6b\x9b\x12\x80\x85\x24\x77\x95\x70\x7d\xb3\xcc\xd3\xf3\x15\xb2\x2c\x2d\x11\x0b\x83\x42\x8e\x1e\x0e\xaf\xdf\xa9\x34\x7b\xd8\xc2\x95\x78\xfc\xf1\xfe\xc3\x62\x7d\x40\x4a\xa5\x48\xd5\xb0\x57\x7b\xd6\x6e\x9d\x7a\xe1\xb3\x0e\xfe\x70\x4a\xc3\xbe\x3b\x18\x56\x1b\xa2\x01\xec\xf4\x46\xa9\xd3\x32\xe0\x8d\x35\x30\x08\x4d\x05\x5f\xdb\x25\xa3\x21\x06\xe3\x14\x3d\x43\x1c\x5c\xa3\xf9\x4c\x12\x37\x72\xb4\xcc\x7e\x70\xa2\x55\x1d\xd4\x78\x8c\x63\x1e\x79\x10\xb9\x63\xa5\xc4\xc6\xa4\xbe\x7c\xa6\xfd\x3e\x0d\x33\xe0\x84\x75\x8e\xcc\x3b\xf7\xef\xb8\x48\x79\x38\x65\xec\xb8\xb8\x40\x19\xc1\x42\x36\x3d\xd7\xb2\x44\xc0\x7b\xb9\xb1\x25\x82\x85\xd0\xad\x41\xdc\xa9\xd6\x98\x2f\xef\xe6\x92\x2b\x2e\x50\x51\xb9\xea\x5c\x2f\x3f\x6f\x21\x54\xa3\x80\x82\x2b\xa0\x72\x19\x11\x58\x04\x6c\xec\x8e\xd5\xc2\x66\x15\x0a\xc5\xe0\x5b\x63\xc7\x69\x71\xc9\xa4\x0e\x76\x09\x52\x11\x41\xfd\x5b\xb5\xed\x41\x1d\x63\xa3\x2a\xa4\x1f\xb7\x68\xe4\xff\x3a\x62\x28\x7c\xef\x96\xe0\xad\x0d\xad\xc7\xc9\xd6\xc6\x55\x95\xeb\xd6\xaa\xd8\x86\xc5\xb6\x73\xa0\x69\xd6\xa9\xb4\x2d\x0c\xc7\xdc\x28\xa3\x7b\xb8\xca\x6b\xf2\x88\xcd\xe1\xb0\xdf\x78\x56\x5c\x3c\x62\xdb\x82\xda\xf9\x83\x65\x8a\xbb\x01\x71\x28\x90\x23\x8a\x03\x99\xcb\x1e\x16\x63\x35\xca\x4c\x8c\xfc\xde\xa8\x71\x5f\x3a\xf4\x02\xf1\xc2\x7d\xe6\x45\xb2\x9f\x1c\xa0\x14\x18\xef\x88\xbe\x90\xf9\x76\xc2\x32\x26\xdb\x3d\x25\xde\x1d\xcd\xe4\xae\x71\x99\x07\xf3\x6d\xd1\x83\x48\x39\x95\x4d\x5a\x11\x89\x2a\xf0\x5c\xc1\x6d\xf2\x06\x29\x98\xf7\xbe\x12\xe0\x7b\xee\x5a\xac\x95\xe8\xdc\xf1\x07\xe0\xc2\x5f\x5e\xa1\x6d\x9e\x85\x28\x07\x04\x8e\xb2\xb4\x39\x63\xfc\x48\x24\x0f\x3d\x6b\xc0\x15\x84\x96\x86\x77\xf9\xcf\xee\xd1\x51\x95\xe5\xc8\xe0\xf1\x82\x27\x55\x6f\xbf\x06\x89\x73\xd9\x2f\x3e\x10\x43\x56\xdf\x2a\x13\xc1\xf6\xce\xfe\x68\xaf\xaa\x1a\xea\x34\x09\x17\x47\xc8\x7f\xee\x84\xd0\x77\xc1\x15\xc4\x07\xdd\xd9\x2f\x75\x0a\x33\x6e\xae\x60\x1e\xfe\xc9\xf9\xab\x34\x84\x11\x72\xdd\x3a\x65\x91\x00\x5f\x70\xc5\x8b\x32\xc7\x51\xdf\x13\xb1\x35\xb7\xa0\x45\x77\x02\x73\x0d\x4e\x63\x8c\xb0\x05\x27\x1a\x49\xb2\x04\xb1\x4a\x34\x4d\x6b\xce\xbe\xb3\x47\xdb\x1b\x5a\x25\xe4\xf0\xee\x04\x92\xf9\xd4\x8e\x64\x5b\x44\xea\x96\xd0\x4e\x1e\xc8\xbd\x7b\x5c\xf6\xae\x9d\x9c\x5a\xd8\xfd\xac\x02\x0a\x61\x46\x8d\x67\x86\x0d\xf7\x68\xa0\x3b\xd3\x64\xd8\x75\x63\x69\xe6\x81\xec\xe9\x07\x92\xf7\xd0\x40\x8c\x6f\x3a\x13\x42\xa7\xe7\xcc\xd7\x54\x17\xaa\xa4\xde\x87\x98\xe9\xa6\x65\x48\xf2\x77\x79\xa9\xd1\x7e\xc9\x8a\x8d\xad\xfe\xfd\x4e\xd9\xd1\x78\x8c\x4f\xae\xf3\xe7\x76\x09\x6b\x17\x28\x8e\xc4\xdd\x7f\x65\xec\xa5\x6a\x30\x74\xb0\xe1\x11\xc3\x4f\xa1\x44\x73\x3f\x7e\x3e\xee\x0b\xfa\xf9\x22\xeb\x4b\x8f\x0d\x16\x57\x9b\x70\x49\xba\xcc\x1f\x1f\xd3\x6a\x5b\xea\x7a\xe1\xc9\x85\xa7\xbc\x47\x4b\x05\x7c\xd9\xd0\x1e\xe6\xe3\x63\x43\xd5\x7c\x06\x1a\xb5\xeb\xe6\x9d\x27\x8b\x4c\xfe\x8d\x16\x6b\x20\x57\x69\x1c\x21\x0a\xb9\xdd\x0f\x6b\x66\x25\x16\x13\x35\xe6\xfd\x77\x2b\x92\x35\xd4\xf4\xc1\x2c\x32\x77\xd7\x0e\x5d\x18\xc7\x71\x7d\x4b\x6c\x3f\xf3\x17\xbc\xac\xa3\xac\xca\x56\x24\xbd\x34\x90\x39\x52\x52\x9c\x2e\x1b\x98\xf1\x4f\x9d\x69\xbb\x5f\xf3\x42\x8f\xc5\x85\x3b\x44\x59\x94\xfd\x4a\x39\x8e\x28\x06\x7c\x8c\xed\xef\x89\x0a\x0a\x59\x61\x16\x94\x2d\xee\xb7\x58\xf2\x0b\x35\x89\x57\x85\xa2\xf0\xfb\x87\x35\x93\x0a\x6c\x73\x05\x5c\xe4\xd1\x58\xdd\x29\x33\x5c\xf3\x5f\xab\xd3\x58\x10\x3d\xf3\x67\x45\x7c\x04\x11\x88\x55\x99\x99\x0f\x08\xcd\x53\xde\x6a\x17\x83\xaf\x83\x15\x45\xe1\x4a\xcb\xd7\x45\x3f\x06\x72\x3f\xdb\xaf\x48\x5e\x38\x26\x51\x27\xf0\xd9\xcb\x34\xd5\xf7\x6a\x5f\x9d\xfb\x0b\x45\x46\x55\xb9\xf7\x36\x6a\xf0\xf0\x30\x9f\x44\x72\xa1\xf0\x57\x3e\xd0\x7c\x49\x2b\xc4\xb6\x89\x58\xd6\x0d\xe4\x7b\x8e\x0d\x57\x46\x06\x7c\x4e\x55\x28\x06\xab\xb7\xca\xd5\xb1\x10\xe1\xee\x4f\x3e\x29\x87\x3a\x05\x6c\x63\x56\xc1\x8e\x11\x2f\xaf\xea\x9b\xcf\x93\x02\x2f\xbc\x6b\xf8\xb9\x56\xf4\xe2\x5e\x03\x5b\x1c\xf1\x0d\x71\x78\xfb\xcb\x52\x33\xb1\x37\xa5\x27\x94\x19\x77\x8f\x62\x34\x40\xdc\x6a\x14\x57\x27\xc3\x60\xaf\xab\xb3\xe3\xf2\xf0\xb7\x7c\x62\xb0\x42\x3d\xb5\x95\xf1\x46\x70\xc7\xb2\xc1\x51\x6e\x6c\xf2\x8f\xf8\xf9\x69\x23\x94\xd9\x5b\x98\x05\x21\x2a\xdf\xb6\x49\xc1\xa4\xb8\x06\xe0\x4a\x73\x57\x9e\xa5\x61\x78\x19\x58\x7c\x40\x45\x7f\xe3\x3e\x15\x26\x44\x2d\x6e\x49\xfe\xf7\xa3\x75\x97\x0e\xa7\x4c\x58\xe4\x35\x98\xfb\xd3\x69\x98\xb1\xe2\x06\x66\x1c\xcc\x0f\x13\x9a\xeb\x97\x8e\x54\xb4\x2c\x84\xf0\x0c\xff\xc0\x73\x8f\xeb\x85\xbe\x6f\x72\xaf\x00\x81\x9f\xbe\x77\x66\x0b\xf0\x42\xa8\x07\xa8\xd2\x48\xf9\x61\xab\x58\xeb\x53\xa3\xc6\xef\xfd\xd0\xb2\xee\xf3\xc0\x37\x98\xa0\xbd\x9f\x6f\x57\x58\xaa\xa6\x6f\x44\x0a\xea\xc5\x81\xac\x3f\x57\xfe\xa7\x1e\x5a\x52\x89\x9b\x9f\x55\x2c\x13\x3c\x46\x1c\xa3\x8a\x19\x4f\xbe\xdf\x98\xa2\x3b\xd7\x3b\xdc\x40\x36\x02\xa7\x5e\xf0\x48\xac\x5e\x69\x5a\xf1\x50\xec\xf9\x53\x67\x90\x91\xe3\xa5\xd1\x3d\x4f\xeb\xab\x71\xdb\x46\xbc\x8d\xe4\xa7\x68\xda\x9a\x64\xfe\x12\x32\xa0\xe1\x1d\x55\xa1\x3f\x0f\x6b\x96\x8e\xb1\x90\x32\xcf\xe2\xc3\x75\x83\x42\x5a\x0e\x33\x28\x16\x0f\x3a\x73\xcb\x6a\x3d\xf9\x32\x64\x59\xd8\x12\x63\xdd\xe0\x87\x87\x15\x99\x48\x70\x59\x28\x78\x18\xd9\xbc\x29\x5d\xb3\x39\xc2\x71\x60\x53\x58\xa6\x3e\xb0\x5a\xdb\x2f\x55\x91\x10\x91\x09\xb6\xbc\x28\xec\xe8\xab\x94\xd6\xc1\x60\xef\xee\x35\x8a\xd6\x20\xe2\x0a\xe5\x91\x51\xe5\xec\x48\x15\xc2\xa2\xb1\x4e\x46\x71\x20\x77\xf7\xad\x10\xf9\x6f\xb8\x6a\xc1\x0d\xc5\x65\xe1\x87\xb8\x51\x6f\x22\x50\x53\xac\x37\x3f\xd8\x13\xbf\x0f\xa3\x4a\x22\x03\xd7\xcf\x74\x6b\x8c\x68\x9f\x35\x30\xb1\xf8\xbe\x2d\x4a\xc7\x43\x4f\xc8\x6d\x12\x52\xc6\xb3\xd9\xc5\xaf\xcb\x0f\x3c\xc9\x55\x17\xd9\xf9\x11\x65\x39\xfc\xa8\x11\x07\xc4\x14\x77\x69\x1e\xf8\x55\x04\xee\x36\xc5\x60\xe3\xae\x24\x74\x80\x32\x01\x1d\x28\x8d\xd1\x63\x1f\x71\xa1\x1b\x13\xbb\xd9\xff\x59\x91\x9c\x2e\x96\x91\xd5\xc4\x02\x7e\x2b\xcb\xeb\x4d\x3d\xb2\xcd\x43\x1e\x32\x90\x63\x91\xf0\x13\xfd\xfa\x76\xd9\xc2\xd8\x84\x21\xc7\x44\xca\xf8\x39\x73\xab\x22\x81\x59\x17\x5e\x07\x33\x04\x12\x66\x11\x61\x1c\xea\x94\x19\x71\x62\xb2\x56\x7a\x39\x2e\x72\x3c\x2a\x04\x7b\x93\xa9\x60\x59\x1b\xfc\x6b\x87\x0a\x08\xeb\x27\x95\x35\x35\xe8\xd8\xf0\x3f\xfe\x5c\x97\xf6\x5e\x6a\x5c\xba\x24\x61\x1a\xba\xee\xb1\xe4\x69\x2e\xf5\xf5\x23\xc7\x23\x8e\x98\x60\xbf\xf1\x88\xa2\x2e\xa4\xcc\x31\xbe\xf8\x8c\x06\xc0\x12\x60\x51\xd8\x56\x75\xef\x96\x8a\x83\xbd\x04\x85\x07\xae\xa2\xbc\xf2\x93\x7b\xf4\x59\xab\x70\x50\x6a\x44\x72\xf1\x77\x3e\x0f\xdf\xf0\x06\x0f\x95\xcb\xe1\x1b\xda\x21\x31\xf1\x98\xf5\xa5\x9e\x48\x7e\xf6\xc5\x2a\x00\xf7\xa6\xee\xa9\xc9\xbf\xc1\x05\x25\xcf\x4a\x38\x01\x75\x14\x8a\xc1\x2c\xb9\xb1\xc2\x24\xbc\x9b\xdd\x43\x86\x2b\x2d\xa0\xed\xb9\xdc\xae\xe7\x6b\x77\x2a\x2f\xde\x77\xeb\x04\x0a\x89\xfc\xd2\xd3\xaa\x31\x06\xe1\x39\xfd\xbd\x5d\x97\xa8\xc3\xe0\x26\xe6\x2a\x68\x7a\x85\x7c\xf5\xdc\xe4\xe3\xf3\x9d\x9a\x43\x9b\x11\x8b\xfd\xd8\x46\x68\x8f\x16\x32\x62\x56\xb0\xe4\x8a\x04\x9f\x7d\x58\x1b\xbd\xd8\x34\x02\x70\x88\xd1\x4b\xde\x7a\x24\xf9\x3e\x9b\x7d\xb4\x43\x55\x26\x78\x7a\x8d\x20\x3a\x82\xd3\x54\x7e\xcd\xee\xf8\x5e\xba\x7d\xca\xbd\xcc\x5d\xbe\x53\xc2\x26\x4d\xe5\xcd\x0f\x0c\xd7\x5d\x36\x50\xc2\x0d\x3e\xb7\x6e\x8f\xaa\xbd\xdc\x0b\x69\xf3\xae\xe7\x65\x59\xdf\xb0\x39\xc7\x60\xc2\xd2\x94\xa7\x9c\xeb\xdb\xdc\xed\x3d\xec\xa3\x7e\xc1\x92\xa5\x79\x0d\x3b\x0e\x36\xfb\xce\x08\x73\xdc\xba\x46\xc1\xa3\xf8\xa6\x49\xc0\x8a\x3f\xf7\xca\x36\xa8\xf4\xae\x66\xa8\xaa\x8e\xa5\xb3\xeb\x03\x31\xcd\x8b\xbc\x68\x82\x37\xd6\xeb\x10\xc5\x12\x89\x25\xa4\xf2\xfd\x67\x43\x9f\x77\x55\x6f\xa1\x9b\x41\x8f\x9c\xbb\x63\x63\x52\x76\x1c\x95\x28\x8b\x62\xea\xd5\x9a\x9a\x9b\x41\x2d\xdf\x2e\x41\x1f\xa8\x9f\x85\xcb\x1e\x51\xba\x76\x07\x17\xd6\xf9\x88\x81\xde\x42\xee\xf0\x13\x29\x93\x03\x6a\xc7\x02\x9c\xb9\x0b\xee\x4d\x2e\xf5\xfa\x28\xab\x9d\xc1\x2b\x3f\xe8\x59\xae\xef\x62\x3c\xca\x1c\xdc\x07\x8b\xe7\xf9\x07\x93\x61\xd3\x77\x85\x00\xde\x9b\xc1\x08\x35\x95\x78\x88\xf0\x17\x33\xe5\xc4\xc5\x0a\x6e\xd6\xe3\x6b\x30\xbd\x1e\xdb\xda\xa2\x80\xc5\x7b\x94\x07\x3f\x64\xad\x1c\xd8\xdb\x7c\x2f\xae\x73\xe3\xff\x41\x9b\x3e\x82\x56\x6e\xdc\xd6\xb5\xdd\xa7\x89\x5b\xd0\x66\xc1\xa0\x11\xc0\x3a\x7b\xec\x0a\x5d\xb5\xaa\x52\xf5\xa2\x12\xe8\xd5\x63\xc9\xda\xb4\xc4\x7c\xc7\x0d\xfb\x6a\xf1\xd0\x78\x32\x2b\x9e\x12\xfb\x74\x95\x59\x38\x58\x8c\x43\x62\xf6\x6e\xae\xf5\x1e\x4d\xc9\x8f\x43\x17\x39\x73\xee\x33\x2c\x9a\x4a\x30\x26\xbc\xb3\x2e\x9e\x98\x92\x2b\x85\xff\xb0\xec\x2d\x65\xfc\xe5\x38\xb8\x37\x92\xaf\xe2\x23\xdd\x07\x0f\x28\x50\xe7\x1a\x65\xd4\xa8\xc2\x40\xe3\xf7\xc2\x65\xbc\x5b\x6e\xa0\xb3\xbf\xda\xa2\x0d\x39\xa8\x8d\xa3\xf5\xea\xce\xa7\x54\xa4\x94\x65\xa1\xba\x0b\xd5\x45\xee\x7b\x6f\x5e\xac\x45\x22\x13\xb3\x98\x38\x0a\x9d\xc1\x5f\xca\xca\x41\x60\xa8\x1c\x3d\x96\xe2\x81\xe4\x0d\xb6\x11\xe1\x9e\x85\xae\x18\xc8\xde\x71\x5a\x1b\xc8\x3a\x7e\x49\xa0\x70\xc7\xb6\x69\xff\x49\x78\xbe\x16\x07\xf2\x5b\xe6\x27\x7f\x2a\x87\x7c\xc9\x08\x97\x79\x6e\xfb\x30\x47\xc5\xe5\xf1\xa9\xcb\x88\xfb\x63\x08\x52\xdd\x8f\x29\x47\x37\xdd\x27\xaf\x28\xf3\xad\x84\xb1\xe4\x4f\x35\xb6\xb3\x30\x6d\x89\x26\x8b\x3f\xbe\x5d\x75\xf9\x72\x3d\x46\xfb\x20\x92\xe5\x0f\x24\x3f\xf9\x8c\xc2\xcc\x28\x4a\x7c\x7c\x5f\x34\xae\x46\x0c\xe8\x22\xf9\x1b\xb2\xfa\x52\x93\xd3\xe9\x79\x6e\x7d\x7e\x87\x6e\x87\x41\x89\x21\xc6\x52\xd9\x2b\x26\xc2\xcf\xea\x66\xb4\x4c\xf8\xbe\xe1\x97\x2b\x54\x9b\xc3\x4a\x15\xc5\x94\x8f\xff\xde\x22\xdf\x4f\x85\x85\x25\x2d\xe7\xf7\xbe\x3e\x05\x0a\x3e\x8e\x0c\x21\x25\x5f\x90\x04\xbe\xbd\x08\xce\xce\x0d\x98\x0b\x0f\xf3\x9a\xff\xed\x93\xba\x92\x77\x99\x38\x24\xda\xd0\xf3\xc1\xda\x1d\x2b\xf4\xb9\x66\x99\x21\xe9\x9b\x02\xcc\xbe\xb5\x4f\xb5\x6a\x65\x41\x24\xf7\x7e\xcd\xeb\xc9\xb4\x11\xf3\x5a\xa2\x8b\xfd\xc7\x57\xa3\x10\x6b\x54\x41\x23\x6c\x20\xfb\x78\x09\x92\x15\x6d\xf2\xb2\x29\xf3\xed\xd5\x72\xdc\x1b\xf6\x3e\x06\xdf\x54\x4a\xa2\x56\x79\x85\x82\x20\x44\x11\xc0\x2f\xf7\xfb\xa7\x54\xcb\x33\x46\xb0\xf4\x64\x58\xb9\x74\xb8\x2a\x9f\xe3\x70\xe1\x8c\x81\xfc\x67\xfb\x05\xf8\xc0\x2f\x21\x86\x54\x4b\xa2\xfb\x0e\x8f\x52\x9e\x35\xf5\xeb\x24\x21\x1d\x35\x64\xbb\x2e\x80\x64\x51\x1e\xf8\xa1\x8e\xe3\x1f\xe7\x8f\x1d\x0a\x07\xc7\x16\xfb\x77\xb3\x50\x0c\x86\x96\x5a\x54\x8e\xa9\x4d\xa3\x8b\x36\x67\xbd\xf2\x29\xab\x04\xf4\xcf\x07\xf2\x63\x7a\x75\xc9\x1d\xe4\x52\x27\xea\x85\x46\x6f\x3d\x57\x54\x89\x00\x07\x7f\x49\xbb\xac\x42\xf7\x4a\x28\x2d\xbf\xff\x14\xa4\x4a\x86\x89\x63\x20\x61\x8d\x15\xfe\xbb\xcf\x8f\x4e\xf1\x6e\x63\x9f\x15\x40\x48\x55\xef\x49\x79\x5e\x11\x14\x75\xee\xd9\x1d\x67\x4b\x42\x99\x63\xa4\x2a\xb7\x4f\xbe\x99\xd4\xc6\xb3\xb0\xc7\x23\x53\xf0\xee\x15\x30\x3e\xbe\x9e\xd4\xaa\x88\x58\x54\x52\xcd\x82\x57\xe7\xcb\x7f\x53\x66\xc4\x8c\xdf\x74\x7e\x01\x8c\x11\x0a\x37\x50\x83\x60\x2f\x55\x27\x66\x7f\xa3\x4c\x91\x6a\xa8\xe1\xdb\x1c\xa5\xdc\x6d\x2a\xc0\x4a\xe4\x98\xbc\x22\x1f\x9e\x95\x5b\x82\x04\x10\xe2\xf2\x73\xc5\x00\xd6\xe7\xc5\x59\x71\x20\x33\x6b\xa8\x2e\xb8\xc4\x87\x2b\x91\xa7\xfc\x6d\x9b\xdb\x9b\xe9\x4d\xa5\xe8\x9c\xcf\xa0\x8e\x9c\x3d\xfa\xa8\x26\x26\x4c\x7b\x41\x5c\x40\x7c\xff\x69\x4f\xc2\x55\xb9\x8e\xd4\xaa\xd4\xc4\x7d\x85\x62\xb0\xcd\x1c\xa1\x8e\x1f\x1d\xb7\x0c\xf3\x82\x4b\xe6\x0a\xec\x27\x62\x9e\x83\xb9\xc1\x49\xf0\xd0\xf3\x2a\xac\xc8\xad\x61\x8b\xf7\xef\x4e\x56\x36\x11\xb3\x67\x77\x46\x76\x39\x1b\xac\x21\xa2\x01\x13\x64\x96\x60\xf0\x69\x8d\xfd\x2e\xf0\xc2\xa6\x60\x3d\x66\x7f\x0e\x9a\x3a\x85\xc5\x94\xb9\x9e\x8d\x1c\xa7\x70\x1d\x2e\x97\x53\x55\xdb\x3f\x28\x28\xdd\x12\x46\x06\x94\x4e\x3f\xf5\xfe\x06\x8d\x95\x1f\xea\xb7\x34\xd5\xce\x2a\x62\x25\xca\x22\x90\xc6\x40\xee\x2e\x4d\xe9\x9d\x8f\xbd\xdd\x33\x49\x50\xdf\x57\x57\xa6\xa0\x16\xb7\x5c\x08\x26\x08\xd9\x2e\xd7\xf0\x19\x13\x7c\xfb\xcc\xef\x0f\xb4\xe9\xa9\xaa\x1e\x0b\x8a\x6f\x7d\x4d\x3e\x77\xdb\x77\x39\x08\x87\x33\x28\x5e\x55\x00\x0b\x1e\xc6\x75\x40\x35\xe5\xce\x9b\x2d\x49\x71\x8e\x15\x13\xc4\x5f\xd3\x6c\x53\x2a\x61\x13\x29\x9a\xa9\xe2\x11\x1e\x2e\xc2\x3f\x5f\xde\x9d\x08\x77\x4b\x96\xc6\x25\x7a\x55\x3d\xa2\x99\x67\x86\x0e\x13\xe5\x37\xc3\x4d\xca\x6a\x40\xb0\x7e\x76\x82\x1c\xbb\xd3\x9a\x85\xaa\xd4\x46\x51\xd5\xf3\x85\x55\x52\x52\xd1\x0f\x63\x11\x9a\xdb\xa2\x70\x54\x1d\xca\x04\x86\x3c\xef\x3d\xa8\x17\xca\x8c\x51\x2f\x1a\xed\xff\xdb\x59\x09\x48\x76\x03\xb3\x28\x86\x1d\xdb\x29\x07\xe4\x0d\x82\x9b\xe1\xa3\x2d\x3c\x9b\x9c\xc7\x98\x8e\x91\xd6\x3b\x1e\xc8\x2d\xc8\xc2\x6b\xb1\xb1\xeb\x46\xf8\xa9\xec\x03\xcf\x0e\x57\x69\x60\x1e\x58\x64\x5c\x36\x38\x79\x36\x9b\xc8\xaa\xa9\xfd\x6e\xe6\xde\x83\x72\x99\x5b\xb6\x7c\x18\x15\x2a\x42\xa0\x1f\x7a\x2f\x6e\x09\xed\x3a\xf7\xb8\xfa\xce\xdc\xe4\xcb\x69\x10\xe6\x47\x59\x31\xb7\x79\xa6\xe6\x2f\x44\x2c\x0b\x55\xa2\xb1\x6b\xc6\xd1\xaa\xc4\x32\xc7\xfb\xf3\x63\xf5\xa3\x87\xcf\x8b\xde\x91\x0d\x6a\xba\x7f\x76\xb4\x56\x9c\x51\x64\x1a\xc8\xf5\x44\x49\x70\xdd\x06\x69\xe5\x42\x63\x98\xf5\xcd\x87\xe5\x86\x8a\xa4\x8f\xf9\xa8\x29\xe3\x64\xac\x0c\x8b\x61\xcc\x52\xb0\x94\xdc\x47\x36\x28\xc8\x4d\xab\x50\x0c\x3a\x96\xc8\x88\x78\x99\x98\x1f\x8d\x9d\xa7\x82\xfe\x7d\x87\x7b\xc9\x17\x83\x65\xcb\x34\x96\x02\xa7\xd1\x88\x1c\xf4\xfb\x97\xb4\x49\x1a\x38\x61\x31\x31\x18\xfd\xd7\xfd\xda\x52\xda\x30\xc2\x84\x1a\xff\xf3\xe7\x6f\x95\xdf\xcd\x4e\x21\x85\x32\xbf\x19\x2c\xb4\x41\x9a\x18\x47\xfa\x45\xff\xa2\xc9\x04\x76\x75\xb5\x5f\xde\xd9\x59\xe0\x1e\x22\xf9\xc6\x83\xaa\xa4\x77\x6f\x1d\xf5\x41\x48\x1c\xc8\xbe\x7b\x40\xb6\xf2\x65\xc4\x9d\x54\x2b\x8a\xb2\x9e\xcd\x35\xb6\x82\x91\x83\x22\x93\xe4\x48\x45\xf8\x9f\x34\x16\x23\x97\x54\xef\x48\x52\x42\xc6\x26\xfb\xab\x1e\xec\x01\x08\xee\x95\xb6\x61\x49\x5a\x3b\xaf\xf9\x6f\xeb\x91\xbf\x96\x12\x70\x4c\x79\xf2\xa0\xb0\x23\xe6\xdc\x34\xda\x90\xd3\xdb\xcf\x2d\x93\x15\x51\x99\xf6\xa6\x88\x3c\x47\x47\x28\x4b\x83\x06\xb2\x88\x19\x96\x92\xf7\x1f\x4a\xa8\x93\xbb\xc2\xdb\x24\x73\xff\xbc\x38\xe7\xd5\xf9\x78\x2f\xca\x79\x0f\x0e\x51\x1d\x60\xc2\xf4\x25\x28\x7a\xe3\x4f\xc8\x62\xbc\x07\x35\x08\x5f\xb0\xaf\x3c\x2b\x59\x32\x94\x89\x28\x7a\xe3\x29\xc4\x22\x45\xcd\xd9\xc1\x4d\xb7\x8e\xea\x50\x79\xe5\x3e\xf4\xaa\xca\x0a\xc2\x26\x87\x1c\x07\x1f\x2f\x27\xc1\x3e\xee\x3a\x3f\xbc\x68\x8c\x24\x7d\xea\x33\x99\x13\xba\xbc\x34\xe8\x2a\x08\xd9\xe6\x03\xfb\x35\xc2\xb5\x11\x09\xb6\x0f\xe4\xfe\x72\x54\x15\x4b\xa3\x36\x80\xca\xe7\x2d\x51\x46\x3f\xae\xeb\xdb\x22\xfa\xdc\xb8\x4a\x6a\x20\x78\x55\x94\x52\x73\xfc\xdc\x69\x6d\xfb\x18\xa3\x1e\x08\xb2\x3a\xc4\x94\xeb\x5c\xb0\xc4\x2e\xb8\xd4\xf7\xaa\x98\x39\xca\xf0\x33\x18\xf5\x56\x72\x24\xd9\x0c\xd3\x2f\xb2\x93\x06\x0f\xb9\xbd\x8e\xb2\xf7\xc0\xc8\x15\x9e\x56\x7f\xd2\x4e\x65\x9f\x5f\xa1\xae\x85\x1a\x0a\xac\xfe\xea\xbb\x15\x19\x39\x56\xf1\xb9\xaf\x30\x87\x61\x1e\x97\xe7\xcf\x44\x00\x07\x58\xd5\x50\x6d\xde\xea\x2e\x76\x84\xf8\x49\xb6\xe5\x44\xf2\x70\x57\x44\x51\x98\xff\xf4\x23\x71\x42\xf1\xaa\xa4\x50\x0c\x86\x28\x55\x47\x1d\xf9\x42\x67\x67\x43\x97\xfa\x93\x9d\x8a\x85\x5c\xce\x3e\x18\xc8\xfc\xf3\x53\x3a\xbc\x2a\xcc\x1a\xa2\xa4\xfa\xb7\x51\x12\x8f\x62\xe3\x5e\x62\xa4\x7c\xb1\xb3\x27\x8f\xa7\xf2\x14\xc6\x2c\x1a\x05\xdc\xfc\x2c\xdc\xe4\xe9\x73\xda\x67\x74\x81\xad\xf3\x7d\xf2\x81\xe0\x5e\x03\xc7\x86\xee\xf7\x2a\xc5\xb7\x45\x7d\x53\xe0\x93\x7f\xaa\x99\x53\x4e\x6f\x9f\x11\x39\x44\x66\xdb\x37\x09\xce\x36\x63\xb8\x81\x19\x2c\x89\x32\xd7\xbd\xa0\x3e\x01\x07\x7b\x9c\xc3\x96\x19\xfc\xb8\x5c\xec\xc5\x28\xa1\xa8\x32\x78\x37\x01\x94\xe5\x29\xee\xa3\x4c\x1e\x54\x6b\x12\xb2\x78\x0d\x9b\x59\x3d\xe5\x1c\xfe\x27\x33\xb9\xae\xf6\xd7\xc5\x04\x31\x96\xc0\x89\xa7\xfd\x97\x2a\x96\x77\x0e\xb2\x31\x50\x7b\x56\x9c\xad\xd4\xc5\x0c\xd9\x40\x98\xfa\x8f\x97\x40\x97\x71\x49\x44\xe7\x4e\x65\xe6\xc1\xf5\xe4\xbd\x0c\xef\xf2\x19\x6c\x75\x32\x93\xa6\x69\x3a\xdf\x16\xee\x45\x8e\xc9\x34\x9f\xff\xec\x0f\xef\x51\x26\xaa\x20\x8c\x74\xb1\xc6\xc5\xe4\xaa\x8a\x84\x3a\xdc\xa4\x46\x0c\x28\x56\xee\x19\xa5\x8e\x7f\xbb\x97\x77\x4f\x5d\x06\xea\x9c\xfc\x21\xda\x7b\xa1\x7e\x58\x11\x3e\xc1\x32\x28\xbe\xe5\xae\x5d\x95\xd8\x28\xa6\x14\xc7\x41\xbf\xa6\xd0\x6d\x51\xcf\x21\x35\x25\xe6\x0e\xe4\xb3\x77\x0b\xb8\x06\xa3\x8e\x67\x89\x65\xfc\xe2\xb3\x34\x6d\x36\x46\x1a\xc8\x23\x2e\x92\x1c\xde\xfc\xe0\x5b\xdb\x94\xaf\xe7\x79\x96\xea\x01\x5c\x51\x64\xea\x4b\xd4\x05\x19\x9d\x5b\x15\x1d\xba\x32\x8e\xa0\x21\x73\x57\xe8\x2b\x3a\xbf\x1e\x4f\x05\x7f\x5a\x95\xe7\x29\x02\xb3\xc4\xe7\xc9\xdf\x14\xf1\x39\xc4\x62\x2c\xfc\x17\x97\x2d\x86\x41\xc1\x0d\x1e\x66\x96\xc2\x26\xba\x72\xa7\x34\x9f\xef\x41\x06\x2d\xa5\x30\x11\x77\x6c\x56\x1a\xf2\x2a\x62\xc8\xf0\x30\x93\xbb\xa5\xec\xc9\x56\x7d\x1e\x10\x56\xe3\xed\x85\x62\xd0\x3e\x31\x19\xa9\x39\xb9\xc3\x8a\x30\x77\xb9\x6b\xb5\x9d\x0d\xb2\x59\x52\xe7\x38\xfb\x55\xd5\x90\xb4\x8a\x84\x9c\xf1\xcd\x43\x64\x3c\xc1\x3e\xa3\x75\x8c\x1c\xa8\x7e\xef\xac\x5f\xa4\xa4\xc2\x74\xd3\xf5\x97\x3c\x1c\xf6\x15\xa8\x41\xc0\x09\x47\x3f\x12\x93\x47\x8d\x50\x38\xae\x25\xe2\xb9\x5c\x7a\x68\x79\x87\xd6\xfe\x3a\xc8\xea\x73\x3d\xc1\xd7\x9f\x7c\x62\x64\x22\x9f\x01\x51\x83\x6b\x68\x2b\xf0\x6c\x23\x8c\x7b\xb6\xa0\xd7\x9c\xa3\x60\xc5\x6b\x0c\xf9\xaa\xa4\xd0\xbe\x17\x52\x13\x61\x86\x91\x8b\xc5\x58\x6d\xdc\x61\xdd\xb9\x08\xc6\xb6\x51\x41\x75\xb5\x24\x7f\xcf\xea\x98\xc3\xb7\xb6\xbb\x53\x63\x01\xa7\x59\x25\x31\x39\x7f\xea\x7a\x8d\xa2\x6d\xd5\x66\x74\x4e\x03\x39\xd0\xdb\x47\x8f\xd7\x43\x2c\x40\x6c\x92\x96\x8e\xe7\xdc\xaa\x08\x30\xa8\xc3\x92\xdc\xa1\x11\x2a\x5c\xbf\x52\x15\x4a\xd9\xb3\xc6\xca\x19\x8b\x87\xb9\xf7\xb1\x8a\x11\x9b\x3b\x4d\xe6\xe4\x2a\x65\x8c\x80\x6a\x67\xee\x57\x5d\xf1\x8d\x6e\xd8\xba\xc3\xff\x40\x76\xc2\x22\x6d\x8f\xda\xe4\x92\xcd\x7c\x0c\xfb\x6b\x25\x34\x9b\x18\x74\x9c\xc2\x6e\x66\xbc\x9c\x56\xd3\xa6\x93\x16\x63\xca\xaf\x3c\x21\x2d\x42\x48\xb9\x50\x0c\x36\x75\xa9\xec\xaa\xb0\xff\x81\x2b\xfb\xfd\xad\x43\x14\xcc\x53\x18\xd8\xfe\xf0\x98\xc6\xdc\x14\x2d\x7a\x95\xd4\xa3\x2c\xf5\xbb\xf7\x64\x48\x20\x9e\x8b\xad\xf0\x37\x58\x0b\x5b\xb4\x16\x18\x18\x64\x99\x41\x3d\x50\x0e\xdf\x44\x60\xbe\x15\x56\x93\xab\xab\xc3\xa4\xac\x47\x35\xea\xf6\x9c\x5d\x09\x7b\x4c\x50\x03\xec\x56\x60\x56\x16\x02\xc9\xb0\xcf\x6b\x94\xb5\x0a\x76\x7c\xe2\x88\x2d\x5d\x6e\xf1\xab\xda\x13\xa5\x1e\x8a\xcc\x3e\x7f\xa5\xc0\x05\xb9\x8f\xb0\x60\x8a\x67\x3e\xb6\x4f\xeb\xf9\xb8\x3b\x96\x8f\xfb\x61\x0b\x2f\xea\xda\xcd\x13\x12\xa2\x99\x36\xf2\x38\x1d\xec\xe0\x7c\x9d\xb5\x8a\x5d\x13\xf1\x45\x46\xd0\x79\x44\x44\xb1\x05\xcb\x17\x2c\xbd\x6a\x65\xa4\xf6\x92\xed\x50\x8c\x3b\x2d\x0c\x6e\x9e\x99\x59\x8f\x0a\x8f\x82\x2a\x36\xaa\x7c\x5d\x1a\x7c\x77\xb9\x02\x85\x24\xd8\xe2\xc1\x31\x98\xfe\x9a\xe2\x30\xca\x30\xee\x17\x05\xe0\x27\x27\xea\xa6\xc1\x8c\x5a\xc4\x41\x7c\xd6\x20\x7e\xf3\xe3\x1a\x95\x94\xcb\x7a\x93\x08\xef\x34\x68\x91\xa2\x9e\xcc\x30\xaa\x15\x08\xa0\x63\x7e\xb0\x49\xe9\x6c\x2d\xdf\x06\xb7\xc3\x6b\xef\x3e\x4f\xda\xf8\xf0\xbd\x73\xcf\xfb\x29\xff\x70\x52\x89\x8c\x1b\x9e\x7b\xe1\x62\x65\x46\x86\xb1\x49\xed\x54\xf6\xfe\x88\xd0\x56\xbc\xc6\x43\x16\x01\x71\x81\xcc\x2b\xc7\x74\x3d\x64\x66\x60\xcb\x72\x85\x48\x66\x94\x02\x6f\x71\x5a\xa5\x8a\x46\x45\x95\x54\xfc\xc9\x49\x7d\x3f\xe8\x3b\xdc\x78\x2b\x8a\x41\x77\x6c\x82\x4a\x05\x85\xf9\x2d\x77\x8f\xf6\x42\xb9\xce\xb1\x00\x54\x1d\x9a\xa9\x4b\x6b\x29\x80\xbb\x0f\x34\x2c\x47\x13\x13\xa7\x82\x98\x87\x13\x56\xe6\xd9\x23\x6f\x8f\x55\xa5\x22\x2a\xbe\x2e\x87\x3a\x90\x79\x7c\xac\x10\xe9\xc2\xac\x04\xee\xbe\xe1\xcb\x3b\xf0\x9a\xe6\x56\x4b\x2d\x6c\xd2\x64\x68\xcb\x78\x3b\xf4\xe1\xa8\x63\x60\x87\x43\xec\x45\xfc\xec\x78\xa6\x45\x51\x28\x00\xce\x7d\x78\xfb\x17\xc0\xa2\xaa\xb0\x14\x7b\xa9\x1d\x58\xfe\x53\x53\x54\x1d\x19\x64\x18\x7e\x44\xbd\xbc\x66\x9e\xd4\xd1\x69\x9f\x1d\x3e\xa4\xae\x09\x9a\x9c\xbb\x5f\x72\x3d\xe4\xc4\x3e\x7d\xc1\xaf\xbc\x61\xc9\x49\x0e\x7f\xcf\xfe\x4b\x9a\x29\x05\x76\x80\x94\x1b\x6c\xd7\x6c\x06\xb0\xd3\x20\x8c\x3a\x61\x83\xc0\xd7\x30\x00\x99\xf8\xc4\xda\xe4\xdf\xea\xa1\x06\xb6\xfa\x34\x33\x82\xfc\xda\xd7\x22\xb2\x42\xd8\xb8\x2a\xc5\xce\xa6\x53\xaa\xc5\x02\x0f\x5f\xdf\x5d\xdf\xaa\xc4\x60\x5c\xe7\x5a\xe5\x50\xa0\x5c\xba\x50\x13\xc0\xe7\xa5\x3c\x5f\xa2\x7c\xff\x51\x9d\xbc\x6f\xc3\x0a\x25\x78\x62\xb7\x64\xa5\xb3\x66\xac\x6d\xbf\xb7\x45\x3c\x56\x85\x86\x58\x28\x06\x83\xa6\x25\x8f\x93\x5b\x72\x01\xf8\x9a\x7c\x33\xe7\x6d\x89\x73\x4c\xfd\x0c\xda\x7c\xa5\x83\xba\x7a\xb2\x29\x10\x30\xc1\xd2\xb5\xf1\x9b\x9b\x5e\x98\xc9\xd7\x45\xb3\xb5\x57\xe0\xc7\xb3\xfb\x57\x46\xc9\xf9\x0b\x71\x11\xe2\xcb\x95\x27\x87\xa4\xc0\x4d\x75\x8b\x44\xb3\xa6\xec\x82\xf7\xcf\x8b\xdb\x54\x68\xe7\x0b\xfb\x24\x0b\x30\xbd\x78\xce\xcc\x5b\x96\x52\xa3\xf1\x88\xe3\x0b\xed\x83\xcc\xaf\x5e\x1a\xaa\x54\x2e\xa4\xc1\xe7\x1d\xbb\x1f\x55\xe4\xf9\x01\x5e\x24\x6a\xcb\x60\xa5\x86\xe5\x62\xc4\xf3\x95\xbd\x5d\xee\xd7\xbd\x0a\xfe\xc2\x26\x61\x4c\x2b\xac\x1f\xa2\x54\x54\xe1\x9f\xfc\xdd\x3b\x6d\x4a\x17\xe6\x31\x6c\xe3\x42\x6c\x24\xf7\xa6\x96\x8d\xaa\xa8\xc2\x65\x09\x21\xe2\xfd\xe0\x84\x40\x36\x20\xc2\x9b\xe0\x9e\x5b\x53\x0a\x07\x2e\x11\x08\x95\xcc\x65\x1b\x95\x26\x2a\xfc\xf9\x3c\xf2\xee\xdb\x27\xeb\xf3\x12\x31\x4d\xb5\x3e\xcf\x7c\x3d\xab\xec\xdf\x2c\x0b\xf6\x3e\xbc\x97\x1e\xb9\x22\xf9\x20\xa5\x34\x0f\x1f\x87\xf7\x2f\x1d\xa5\x27\x51\xcc\x90\x15\x45\xb9\xe7\x5a\x35\x0c\x5c\x13\x11\xd5\xeb\xef\x7b\x53\xb4\xad\x35\x62\x61\xef\xa8\x6e\x04\x06\xf2\x9f\x38\x21\x73\x46\x03\x33\x93\x18\x61\x4e\x37\xf7\x28\xd3\x69\x6e\x1e\x04\xf7\x69\xea\xb2\xa1\xea\xb6\x00\xe8\xa7\xe7\x09\xc5\xe6\x32\xb6\x11\x00\x76\x33\x7d\xcf\xc4\x51\xbe\xc2\xb5\xfe\xe2\xa9\x56\xf6\xbb\x4b\x15\x95\x6d\x46\x4a\xbe\x13\x01\xcd\x06\x72\x77\x1c\x14\xc4\x14\xec\xf1\xe9\x73\xa1\x18\xd4\x46\xab\x98\x63\x9f\xa1\x42\x31\xf8\x6d\x6f\x9b\xca\x3d\x70\x12\x22\x03\x63\xe6\xc1\xa7\x59\xe9\x45\xb5\x4c\xe6\xaf\x5b\x93\xb0\x34\xd3\x17\x2b\xe3\xcc\x2d\x79\x8d\x73\x46\x1d\x13\x70\xad\xe2\x9f\x1e\xd8\xaa\x0e\xbc\x6c\xdb\x77\x84\x89\xe6\xbc\xe4\x8f\xbc\x7c\xc6\xe5\x82\x43\xfd\xf8\x66\x7d\x0d\x61\x91\x4a\x2c\x63\x32\x4e\x73\x46\x8d\x3c\xc7\x04\x63\xe8\xee\x97\xa5\x98\x5a\x8a\xd2\x13\x7c\xf7\x6d\x08\x41\x1c\x15\x15\xad\xda\x79\xb9\xb9\x2a\x79\x62\xfb\x30\x62\x1d\x91\x94\xe4\x0f\x5b\x94\x8d\x02\x66\x0d\xe4\x00\x70\xfb\xec\x86\xba\xf9\xa1\x75\x62\x00\x1c\xf3\x57\x40\x6f\x2b\x2c\xa8\xda\x48\x1d\x91\xdd\x5e\x55\xe7\xe6\x94\x21\x58\xb5\xb6\x1f\x11\xb3\xd4\xf0\xf3\x00\x1f\x20\x73\xb3\x19\x35\x8b\x8e\x17\x76\x76\xfc\xc1\x6c\x9e\xa2\xdc\x1c\xec\xba\xd0\xe8\x6d\x19\x2a\x3f\x5d\x05\x53\x56\x81\x3d\x48\xe6\xea\x89\xb2\x4b\xab\x53\x8b\x80\x72\xd4\x33\xcb\xe2\x36\xa4\x8b\x6b\x50\x65\xe6\xcd\x8b\x4f\x9a\xc5\xf7\xf7\x71\x3d\x81\xd6\x0e\x15\xaf\xcd\x31\x2c\x1f\x00\x6f\xb9\x87\x9e\x80\xbb\xee\xf1\x66\x3e\x58\xae\x11\x0e\x5c\x83\xf9\x1e\x71\xfa\x22\x57\xe6\xb3\xb7\xab\xf7\x80\xab\xab\xf0\x1f\xf3\x93\x36\x79\x2a\x2b\x08\x1c\x75\xf7\x4e\x56\x99\x32\xc4\x16\x83\xe5\xec\xbe\x3c\x00\x72\x3f\xb5\xa0\x78\xe3\xb2\x45\x57\x45\xf9\xc4\xba\x67\x8c\xb2\x4c\x2b\x95\x90\x43\x12\x6e\x87\x03\x99\x9f\x2e\xd7\xf9\x7c\x06\x71\xe5\x4a\x2b\x7b\x76\xeb\x30\x25\xef\x79\x88\xf0\xd7\xf7\xca\x41\xc5\xd7\xc5\x87\xd1\xdc\x71\x31\xe3\x99\x74\x0d\x47\x6e\x0d\xbf\x44\xab\xd4\x88\x6b\xe1\xbe\x24\x68\x31\x3b\x6c\x5c\x32\xc9\x94\x2c\x0a\x43\xb4\x60\xdd\xdb\x23\x15\x7e\x89\x89\x71\x84\x24\xc9\xbc\xbc\x46\xe8\xe8\x01\x3a\x95\xb8\x40\x08\xf8\xfd\xc3\xad\x52\x5b\xa5\x96\xf8\x8e\x4f\x3e\xa9\xb5\xeb\xcd\x5a\x13\x31\x93\xab\x2b\x0b\x5b\x47\x4d\x83\xa4\x4c\x19\x26\x15\x47\x85\xf6\xfc\xf1\x79\xa1\xd5\x88\x6c\x3f\xc2\x96\x66\xaf\xee\x15\x86\x60\xd1\xb8\x3e\x7c\x6f\x97\x6f\x3e\x57\x84\xfa\xb0\x01\x37\x0e\x40\xfd\x76\x2d\x65\x18\x45\x12\xdc\x53\x4f\xca\xe7\x57\xe9\x00\x59\xb3\xcf\x9c\x2b\xd3\xcd\x44\x6e\x17\x9c\x39\x6b\x78\xdc\x9b\x22\xdf\x52\xae\xc9\x4d\x59\x99\xae\xb9\x84\x42\x6e\xde\xbc\x14\x41\xd5\x32\x63\xc1\x80\xe3\x9a\x62\x6e\x98\xbc\x50\x04\x0c\x59\xf3\xb4\x4c\x1d\x16\xb1\x63\x1d\xc7\x81\xec\x41\xe9\x90\x55\x49\x70\x11\x46\x4d\xb8\x34\x5d\xd7\xa4\x27\x6b\xb9\xee\xc7\x34\xf3\x07\x54\xea\x03\x1c\xcd\xb2\xc7\xcf\x11\x67\x2a\xfc\x7c\xd7\x74\x27\x23\x56\xc4\x80\x04\xb0\xdd\xc1\x0e\x0d\xb3\x4c\x2d\x62\x60\x1b\x3b\x51\x92\x3a\xbe\x4d\xce\x21\x7d\x87\x63\x25\x1b\x3b\x93\xbe\xd1\xd8\x71\x88\xcf\x1f\x74\xee\x9a\x2b\x20\xc2\x2d\xf4\x8d\x2a\x62\x58\x1a\x3c\xdd\xb8\x5c\xf6\x3c\x55\xdf\xf3\xe3\xb9\xd4\x65\xcf\xb4\x94\x08\x72\x0b\x2b\x98\x8f\xd5\x31\xf8\x87\x8e\x29\xf8\x28\x13\x9c\x7f\x23\x63\xa4\x60\xba\x02\x8f\x32\x89\x6b\x58\xd4\x15\x5b\xa0\xcd\x0f\xc7\x8f\xd5\x2a\xab\x8f\xf5\xbc\x89\xad\x0a\x1a\x37\x49\x91\x9b\x2b\x37\x0f\xd3\x67\x4d\x13\xfb\xef\xec\xd1\x45\x9a\x84\x19\xb7\xdc\x15\x83\xde\x5d\x2f\x09\xe5\x10\xc2\x7b\xe8\x8f\xed\x84\xc3\x7a\x35\xc3\x7d\x9c\x93\x16\x3e\x8c\x4d\x2f\x28\x9e\x44\x0c\x6a\x5a\xf9\x81\xbe\x22\x88\xcd\x75\x64\x0a\x06\xdb\xc4\xc9\x72\x4d\xeb\x3b\x12\x3d\xce\x89\x5d\xc7\x64\xd9\x3c\x09\x73\x84\x91\xcd\x52\x08\x23\x1c\x29\xdb\xe4\xb7\x6c\x85\x24\x70\x8d\x51\x53\x3d\xac\xb2\xe7\x94\x87\x46\x3b\xe5\x9b\xba\xa3\x77\xf0\xd8\x76\x8d\xfb\xcd\x68\xd3\xab\x8a\x55\xdd\xd5\xbb\xf5\x62\x11\x19\xd5\xd8\xf7\x3e\x73\xd1\x52\xa9\xbf\x4d\xc3\x42\x6e\x84\x97\x8c\x08\x0d\x82\x1d\x07\x09\xd1\x05\x5e\x35\x2d\x11\x92\x85\x8b\xb0\x81\x20\xac\x67\xc7\xbd\xa3\x8d\xd2\x5c\x17\xdb\x25\x0b\x0e\x74\x6e\x98\x29\x43\x2d\x61\x61\x2a\x49\x2d\x04\xcf\x96\xd9\xa6\x8a\x9c\x8a\x0f\xfe\x9f\x5d\x32\xe3\x01\xc1\x80\xff\xb2\xce\xad\xd2\x97\x1c\xa7\xa9\xa7\x8f\xb7\xe8\x72\x42\x26\x41\x42\x04\x86\x28\xba\xaf\xdc\xf4\x94\x9f\xfa\xbf\xec\x4b\x06\x64\x0b\xf5\x23\xe6\x03\xc0\x46\x06\x96\x6f\xad\xbf\x40\x1d\x8c\xf8\x65\xa5\x2b\x1a\x3e\x44\x21\x63\x83\xd6\xd3\x4f\x5f\x54\xb8\xc5\x75\x8c\x45\xad\x90\x59\xad\x74\x4b\x15\x1f\x33\x46\x2c\x0b\xc1\x2e\x33\x73\x96\xee\x94\xc6\x3c\x2b\x92\xc8\xb8\xe2\x4d\x98\x6b\xaf\xc6\x4e\x8d\xf6\x90\xe4\x60\xad\x33\x79\x9f\x68\x43\x68\x03\x35\xb7\x8b\xe2\xc0\xaf\x0b\x73\x85\x81\xec\xcb\x5d\x3a\x7c\xd7\xae\xfb\x1c\x03\x0e\x86\x2f\x0f\x95\xe1\xdf\x94\xfd\x0a\x01\xb6\x69\x70\x9b\x66\x7f\xcf\x75\xb7\x5c\x4f\xcd\x12\x4f\xcb\x51\x61\x8f\x3a\xf7\xdc\x79\xb6\xa6\x68\xd4\x67\xa1\x66\xc4\x98\xff\xee\x15\xf1\xe1\x2b\x4c\x9f\xc5\x17\x7d\xcb\xf4\x57\xe1\x33\xec\x60\xcd\x2a\xef\xd3\xb3\xb5\x6e\xcd\xa8\x52\x6a\x81\xa8\xc7\x5d\xef\xc4\x9f\xc4\x57\xe5\xfa\x73\xb7\xac\x52\xe6\xce\x36\x81\x4a\x39\xfb\x52\x5e\x5d\xb4\x72\xf3\xb0\xf0\x1b\x37\x77\x0f\x4f\x72\x3d\xa0\xae\xbe\x77\x97\xcc\x07\x9a\x42\xdf\x38\x4d\xe0\x0c\xf4\x50\x69\xcc\x9d\x3c\x3a\x36\xf9\x0c\x39\x98\xa8\x8c\x19\xa7\x4a\xf1\xd7\xff\x29\x0d\x83\x67\x12\x53\x38\x51\xe6\x1b\x9e\xc0\xd3\xd9\xe0\xa8\xd4\xa3\xed\xb0\xb8\x14\x93\xe8\x90\x56\x7b\x09\x33\x34\x86\x3d\xc4\x81\xf7\x3c\x54\xfc\x60\xb0\x3c\xc4\x76\x9f\x57\xa5\x16\xad\x44\x85\xe7\xe8\x23\xba\x39\x06\xc3\x4e\xc5\xab\xc6\x48\xc2\xcf\xbf\x95\xe2\xe9\x43\x3c\x0d\xae\xdd\xa9\x8c\x61\xa9\x5f\x82\xa8\x97\xb9\x63\xb8\x2e\x67\x65\xd4\xa2\xe9\xc6\x13\x3b\x15\x2a\xab\x53\xa1\xa2\x5a\xfb\xf6\xfc\xf8\x48\xd4\x3b\xc2\x38\x99\xfb\xcc\x56\x08\xb4\xcb\xaf\x9f\xd1\xc1\x23\x7b\xe6\x8f\x8a\x03\x79\xd8\xfb\x72\x3f\x29\x9f\xbf\xce\x83\xad\x7a\xef\xc8\x6a\x51\xac\xcb\xb6\x0f\xd2\x27\x5c\x8e\xe9\x1b\x5e\x24\x92\x14\xfc\x70\x8f\xb4\xb6\xe2\x89\xb4\x8f\x43\x9d\x01\x69\x90\x9f\x37\xb1\x55\x3c\x53\xab\x5c\x60\xb8\xe2\x5b\x71\x31\x30\xe6\xcd\xf1\x4a\x3b\xec\xd4\xc2\x44\x63\xa4\x05\x52\x6e\xdf\xa9\xe9\x7f\xa4\x51\xe5\x41\x5b\xa7\x92\x68\xfb\xea\x98\x95\x28\x3f\x60\x99\x93\x8f\xe9\x2c\x56\x5a\x0f\xef\x39\x84\xd8\x9b\xee\xd5\xbb\x1e\xde\x36\xc2\x80\x39\xef\x2f\x96\x31\x87\xd7\x37\x0d\x54\x01\x2b\xb8\x5c\xf9\xed\x0b\xf5\xf2\xce\x46\x91\xbe\x61\xa6\xa4\xe9\xff\x7a\x91\x46\x37\xef\x6c\xfe\xe5\xee\x94\xde\x04\xab\x48\xf4\xf1\xd1\xed\x1a\x9a\x80\x61\x2c\xad\x70\xc3\x1f\x3f\xb1\x53\xeb\xa0\x41\x07\x3e\xde\x88\x3d\xff\x9e\xc4\x49\x21\x75\x8a\x39\x44\xc3\x9a\x83\x3a\x33\x8e\x24\x1b\xbf\xfb\x14\xd4\xc1\x65\xc4\x0a\x65\xec\x01\xe0\x65\x20\xf7\xe5\xd3\x2d\x6a\x33\x59\x8f\x5a\xa3\xdc\x0e\x71\xc4\xea\x8c\xd8\x90\xcb\xd9\x91\xe4\x05\x6b\xa0\x58\x6a\x25\x9f\x1d\xab\xd9\xf9\x20\xc7\xb4\x84\x40\x52\x7e\xe2\x04\x45\xa2\xd9\x42\xb6\xf8\x79\x2b\x56\x42\x81\xb1\x38\x0c\xa8\x82\xac\x9f\x5d\xc8\xe2\x19\xbf\xe3\x88\xf9\x65\xb0\xe0\xb1\x89\x5a\x14\x40\x36\x72\x4c\x5a\xa7\xbe\x45\x5d\x55\xc9\x36\x7f\x79\xff\x38\xb9\x12\xa6\x0c\xa0\x08\xfa\x7a\xac\xfe\xbe\xae\xed\x69\xd7\x19\xae\x82\xf2\x07\x1c\x9e\xe7\x02\x48\x2d\x57\x5e\x93\x32\xb3\xcd\xcf\x5e\x35\x59\x2b\x07\x1c\x0c\x44\xeb\xf4\x60\x2a\x77\xcf\x4c\x08\x53\x4d\xc4\x13\x6b\xe6\x1f\x9f\xd2\x40\x36\x75\x6c\x88\x6b\x23\x88\x70\x5f\x36\x13\xb2\xf6\xc4\x25\x25\x0b\xa8\xf0\x9f\x5b\x2c\xeb\xf8\xe9\xbc\x8e\xdf\xb0\x15\x44\x50\x17\x33\xea\xe8\xcc\x9c\xe0\x2f\x3b\xf4\x05\x1a\xc3\x5c\xbd\x19\x8e\x44\xe6\xb7\x6f\xc3\x47\xeb\x9c\xdd\xd1\x19\xfe\xb0\xeb\x4d\xf9\x9e\x54\x8b\x8f\x7e\xe5\xf5\x79\x8c\x88\xfa\xe6\xd8\x50\x85\xc3\x6b\x85\xdd\x8f\xf2\x1a\x06\xbd\x2e\x91\x67\xa0\xdb\x78\xe1\x46\x2d\x50\xd6\x11\xe8\x01\x06\xb7\xdc\xa7\x6a\x03\x34\x84\xe8\x56\xe6\xcd\x6d\xe7\x8b\xca\x16\x3b\xa0\xdc\x31\x90\xd9\xfb\x84\xb6\x66\xc2\x4c\xa8\xe0\xc4\x8d\xd7\x77\xcf\xbe\x50\xa9\x38\x01\xff\xef\x61\x5b\x70\x5b\x7f\x35\x5e\x53\x84\xf3\x6d\x9b\xb3\x19\x21\x65\x6f\x38\xac\x7a\x36\x20\x3e\x94\xc8\xbd\x38\x37\x05\x1a\x8e\x9c\xa8\x85\x0b\xec\xf7\x0e\x2b\x86\xb7\x98\xd9\x85\x62\x60\x6e\x82\x4f\x6f\x23\x87\x94\xb9\xc0\xfe\x40\xb6\xba\xb2\x4d\xed\x0b\x12\xef\xea\x1c\x6d\x17\x1a\x13\x31\xa1\xd2\x59\xf3\xb4\x96\xdc\x68\xd3\x01\x07\x9a\xe0\x97\xab\x74\x37\x3d\xab\x2c\x28\xa7\xd9\x67\x4e\x6b\xf5\x3e\xa7\x94\x03\x88\xfd\xe6\xfb\xd4\xd9\x49\x64\x65\xfd\xdc\x14\xcd\x32\x9f\xb2\x5a\x84\xf2\x3b\x35\x79\x48\x5c\x29\x88\xca\xed\xe3\xf7\xa9\x1e\x98\xae\x50\xe2\xc8\x6f\x16\x2e\xda\x55\x6c\x85\x79\xed\xb1\xc1\x1a\xc1\xae\x4a\x3d\x1a\x69\x00\x7d\x65\xb9\xe2\x3a\xc3\x50\x19\x29\x1c\xb1\x37\xf7\x69\xfb\x00\xae\xd6\x42\x9b\xa0\xfe\x1c\x7e\x80\xc9\x13\x85\xdd\x26\xb5\xdc\x2a\x6e\x90\xf4\xa6\x3b\xff\xfe\x08\xa5\x0e\x6d\x46\x5d\x5a\xee\xd6\xd6\x0b\x94\x2a\xa7\x41\xad\x06\xef\x65\x78\x39\xbf\x78\x45\xaa\x1e\xb4\x7d\x87\xac\xf3\xc5\x8c\xee\x3b\xbb\xe5\xfe\xaa\xc1\x39\xdf\x7f\xa7\x41\xf5\x5c\x9f\x55\x30\xeb\x03\x69\xa0\xd1\x83\xc7\x2a\x75\x2f\x65\xa9\x2d\x49\xf0\xb5\xc3\x83\x45\xb3\x85\x40\xcb\xe4\xbe\xb3\x64\xf5\x3c\xb3\x6b\x0e\x6f\xef\x15\xc3\x6e\xc3\xc2\xc8\x29\x18\x3e\x3f\xd4\xef\xee\xd5\x9d\x11\x31\x32\xa3\xc0\x9f\x9b\xff\xa0\x62\x15\xca\x62\x1c\xc9\xe3\xda\xfc\x99\xb7\xf2\x51\x59\x93\xed\x53\x24\x03\x79\x77\xc4\xcf\xf9\x68\x53\xcf\x4d\x04\x39\xd2\xb5\x3f\xf3\x8a\x76\xbb\xb4\x72\xef\x9f\x83\xa1\x4a\x79\xe3\x72\xbc\x79\xf6\xae\xeb\x44\x5e\x62\xc8\x89\xf5\x79\x83\x9f\x2d\x84\x03\x54\xc6\x1c\xc0\xfb\x75\x0b\x6e\xd3\x32\xda\xc0\x76\x89\xe3\xf2\x96\x38\xc9\xa3\xe1\xf8\x25\x6c\x25\x44\xe5\xd6\xbe\x95\x72\xbf\x00\xb5\xa8\xf6\x42\x31\x38\x74\x7f\x0a\x08\x6d\xd4\xa2\x6b\xf3\xe8\x5b\x11\x2a\xde\x13\x66\xc1\x97\xee\x12\x28\x19\xe2\x20\xc7\x10\x87\xbf\x7c\x58\xd6\x5c\x00\x0b\xac\x33\x02\xf0\xa8\x9f\x68\xce\x93\x06\xb5\xb1\x2b\x68\xe7\xcc\x1a\x2f\x4f\x03\x02\xff\x1e\x37\xe5\x43\x97\x79\xa7\x3f\xf2\x6c\x70\x01\x0f\x3c\x90\x9f\x33\x3a\xce\xfd\x0d\xac\x0a\xfe\xfd\xe8\xbe\x64\x15\xc7\xcd\x57\xb8\x61\x25\x5c\xdd\xec\x9f\xa7\x25\xa3\x2f\x35\xcd\xe8\xad\x3c\xff\x7a\x72\xf9\x2b\x04\x46\x7b\x54\xa6\xdb\x2f\x07\x29\x44\x91\xb0\xc2\x72\x00\x62\x27\xde\xfb\x6f\x9c\x56\xbd\x60\x12\xae\x9d\x39\xef\x08\xbc\xde\x05\x56\x42\x65\xf9\xf4\xd9\x9a\xb0\x0c\x6d\xc4\xb4\xfc\x07\xb4\x15\x43\x19\x39\x1e\x72\x63\xbd\x05\xd2\xaa\x8a\x93\x70\x6d\xd6\xdc\xe8\x21\xe7\x2b\x55\x2a\x0d\xcf\xc7\x4f\x37\x24\x5f\x70\x13\xe3\x5a\xa4\x1f\x90\xfb\xfb\xf1\x50\xb7\x76\x53\x0f\xd5\x69\x43\xa1\x38\xe7\xde\x9b\x32\x42\x8d\x68\xd4\x67\x5c\x67\x39\xf7\xd8\x06\xf9\xb2\x3b\x67\x28\xb6\x59\x03\x99\xff\x38\x12\x4f\xc8\xad\x9a\x8e\xd5\x08\x9e\x51\xbc\x96\x5d\xee\x13\x55\x55\xb5\x46\x7f\xab\xa1\x8a\x19\xae\x5b\xc8\x88\x75\x49\xfe\xf9\xee\xe4\xa3\xe5\x4d\x01\x94\x55\x73\x66\x2b\x77\x14\xf9\x60\xe3\xf9\x8d\xeb\xa4\xb7\xbb\x00\xa6\xa9\x02\x09\xc3\xee\xd4\xa8\xd9\x3e\x17\x8b\xaf\x9d\xd1\x98\xec\xf7\x5b\x53\xed\x59\x18\x9e\x1c\xea\xbb\x02\xba\xb8\xf9\x0a\xdd\x87\x05\xd7\x11\x8b\x82\x73\xde\xad\x9f\xd1\x16\x45\xec\x9d\xaf\xbe\xa1\x3b\xb8\xf9\xa8\xaa\x6b\x6f\xd1\x0e\xe5\x8c\xfc\x75\x48\xf2\x0d\xd2\x72\x39\xec\xc8\xa1\x9c\x9d\xb8\x3c\xf2\xb1\x28\x63\x06\x72\xd4\xc1\xdc\x67\x25\xee\x9f\x16\xc2\xa7\x77\xf4\xf9\x28\x8c\x84\xc1\x26\x38\x39\x33\xd6\xba\x77\xd7\xf9\x2a\x52\x7e\xc7\xc6\xa4\x13\x09\xf1\x10\x2b\x78\xc8\x05\x4d\x57\x3d\xa5\x9c\xff\x92\x32\x05\xb3\x88\xe3\xa9\x84\x85\xdc\xa0\xc5\xf0\x4b\x6f\xaa\x72\x6d\x8c\xcf\xce\x1c\xae\x5e\x77\x53\x4c\x6c\x86\x6a\xca\x0a\xc8\x4a\x34\xf4\xc1\x2b\x1b\x64\xb0\x0c\x93\x70\x47\xa1\x18\x1c\x5d\x92\xd2\x9c\xf1\x18\xb5\x20\x9f\xd7\xda\x46\xaa\xba\x14\x95\x0a\x66\x42\x74\xc1\x76\xda\x94\x41\x65\xa5\xaa\x92\xbc\xf2\x8b\xaa\x67\x98\x85\xc5\xaa\x75\xf9\x6a\xda\x4a\x29\xf6\xce\xe4\x85\xf2\xca\x67\x2f\xd6\x0e\x49\xbc\x8b\x76\x2a\xa0\x59\xf0\x9f\x5b\x14\x60\x2f\x65\xd8\xe5\xea\x0e\xd9\xcb\xa6\x9d\xaf\xf0\x97\x38\xf2\x33\xb7\x5e\x41\x74\x32\xe4\xd4\x60\x52\xf8\x91\xee\xc9\x5a\xfd\x0f\xf3\x9c\x3e\xc0\xa7\x68\xf4\xf9\xb9\xc9\x24\x25\xf6\x67\x31\x4b\x6e\xd2\x0a\x5d\x9d\x85\x8f\x81\x22\xca\x77\xf6\x87\x9a\xfd\xbe\xef\x26\x36\xbf\xb7\x1e\xd0\x1a\x56\x0f\x23\xbb\x44\x91\xa7\x4a\xa2\xfd\x55\x03\xcb\x94\x88\x65\xc5\x1b\xb5\xec\xbf\xaf\x91\x11\x2c\xfc\x2f\x85\x62\x70\x6a\x93\xca\xda\x02\xe5\xab\xcc\xfb\xb7\x6b\xc3\x07\x5a\x08\xf3\x63\x2c\x07\x99\x7b\xf7\xb5\xe1\xa2\x47\xc3\x3d\xbe\x49\x44\x5e\xca\x2e\xdb\x0d\x80\x59\xf0\x9d\x9a\xb4\x84\x36\xb9\xf0\x4a\x71\x20\xf3\xdf\xed\x32\x8e\x1b\x7d\x75\xe6\xab\x1a\x15\xc1\xa7\xb5\x59\xc0\x8c\x69\x5e\xb5\xc0\x04\x05\x22\xfc\xc1\x23\x5e\xd6\xb4\xd7\xeb\x18\xe6\xd7\x72\xef\xf1\x9b\xa3\x2d\x4a\xf8\xac\x20\x26\x28\xe9\x7f\x7a\x54\xb3\xef\xe4\xf8\x1e\xcc\x04\xb2\x70\x94\x60\xc5\xb8\x4d\x64\x59\x60\x1f\x14\x9c\x3b\x53\x17\x54\x64\xd8\xf0\xf8\x9b\xe0\x1d\xea\xbf\x3d\xa2\x31\xd5\x48\x98\xad\x23\x75\xfb\xe6\xd3\x30\xb6\xbf\xa1\x0f\xd5\x08\x53\xe7\x92\xe7\xc2\xf5\x9c\x3e\x7b\x0e\xf7\x6e\x3a\x2e\xf5\x7b\xfa\xfb\xf9\x21\xfc\xcc\xb8\x33\xec\xb8\xc3\xa0\x07\xa1\xe7\xe8\x7c\xed\x04\x60\xab\x5c\x40\x75\x2e\x40\x18\x55\x5d\x99\x2f\x3c\xae\x8f\x79\x9c\x9a\xdb\x01\xdf\x36\x3b\x51\xca\xcb\xfb\x4c\xea\x4b\x07\x1b\xdf\x6e\x51\x46\x69\x56\x78\x89\xa0\x19\x7f\xfd\x79\xa8\x05\xae\xb2\xeb\xc2\x00\x3c\xdb\xde\x16\xd7\x02\xd4\x42\xca\x38\x3c\x58\xa2\x2a\x78\x18\x8c\x16\xb0\x41\x1d\x6a\x73\x0b\xf3\xfc\xf4\xd5\x49\x9a\xbd\x83\xfa\x23\x85\xfa\xe4\x35\xda\x3c\x5c\xd7\x91\xb4\xa9\x43\x5c\x61\x9c\x92\x3d\x3c\x58\xe8\x9b\x7b\x61\x55\xec\x71\x40\x4f\xe6\xab\x1d\x2d\x52\xa9\x59\x11\x24\xfa\x52\xa0\x2d\xf4\xe1\x34\x7e\xd0\xad\x4d\x52\x88\x67\xc9\x41\xc7\x91\xd9\x12\x01\x49\x52\x26\x5e\xf9\x8f\xbf\xad\x20\x4e\xa9\x6d\x87\x2f\x9f\x7f\x88\x9e\xad\xb1\x43\x04\x8a\x4c\x44\x33\xff\xf9\x46\x72\x03\x55\xea\xa9\x9f\x49\x8d\x24\xbb\xfd\x98\x76\x4c\x19\x69\xe0\x26\x12\x03\xe7\xdc\x9f\x87\x0b\xa9\x05\x12\xed\xb9\xf3\x8b\x3e\x50\x8c\xd8\x2d\xa0\x82\xbd\xfe\x8c\x30\xef\xb5\x10\x20\xf4\x2e\xfe\x20\x29\xcf\x3a\x13\x86\x6b\xbf\x36\x93\xf7\xa9\x56\x45\xcc\x25\x0e\x25\x51\x49\x1d\xf4\x49\xa0\x4d\xcd\x21\x85\x62\xb0\x73\xb9\x0c\x90\x61\x0d\x02\x6e\x27\x8b\x0f\xb6\xa5\xe2\x4d\xd4\x5f\x3d\xb5\x33\x19\xa0\xa9\xeb\x62\x4f\xc9\xc2\xdd\x57\x05\x57\x1d\xd4\x9c\x0b\x18\xe6\x5e\xb8\xc0\x47\xe1\xdd\xd2\xb5\xa3\xe5\xa9\x9a\x94\xaa\x55\xef\x7c\xff\x6f\xa5\xcf\x74\x5d\x11\x7c\x7b\xd3\x18\x95\x56\xc7\x85\xfe\x81\xb8\x16\x1d\xe1\x15\xef\xc9\xd6\xac\xce\x68\x6c\xee\x52\x28\x06\xdd\x53\x92\x2f\xb2\x4c\xca\x08\x5c\xd6\x92\x9f\x68\xc3\x16\x59\x75\x21\x47\x57\x0d\x0f\x56\xef\x13\x8e\x84\x4e\xd9\x67\x91\xde\xe8\x0f\xfb\x15\x13\x79\xee\x67\x10\x3e\xdb\xfc\x7c\x25\x11\x13\x13\xf3\x3f\x74\x1e\x8e\xdf\x0b\x2e\x97\x0b\xc5\xe0\xc3\xfa\xd8\x0e\x64\x57\xa3\xd3\x9c\xf9\xd9\x51\xa5\x57\xc0\xbe\xc9\x37\xd1\xfc\x4a\xe6\x86\xb5\xea\x29\x36\xec\x9b\x80\x81\xca\x45\x48\x3e\xb2\x53\x53\x23\xc5\x1c\x70\xc3\xeb\xc3\x1f\x0d\x86\x14\xb0\xfc\x9a\x05\x61\x77\x14\x3e\xab\x42\x31\xd8\x26\x89\x7f\x14\xc4\xa5\x0b\xe3\xe4\x5c\x2c\xd2\xe3\x49\xcb\xb3\x1e\x19\xa6\x04\x6f\x1b\xf1\x6d\x6b\xbe\x77\x4f\x5c\xde\x12\x23\xc5\xb7\xcb\xfc\xf9\x1d\x05\xdd\x4a\x25\xd7\xba\xfc\x3c\xf8\xd0\xde\x56\x28\x06\x6f\x6e\xd6\x16\xf7\xc8\xa8\x01\xb0\x6d\xcc\x49\xb9\x3d\x98\x9c\x58\xc3\x2f\x58\x29\x3f\x8c\xef\xf4\xf8\xc0\x54\x79\x41\xa3\xde\xf7\x23\x86\xfa\xdc\x5a\x7c\x61\xde\x18\x74\x9e\x1c\xff\xb8\x85\x62\x70\x01\x1b\xd3\x3c\x13\x62\x41\xa6\xac\x49\x25\x0d\x90\x87\x71\xf4\x78\x73\xfe\xd2\x56\x05\x5c\x6c\xa9\xc6\xa7\x4f\x3d\x16\x89\xcf\x78\xbc\xa7\xf8\xe1\xec\x0b\xb5\xe6\xd7\x31\xa9\x50\x11\x0a\x7e\xf4\x81\xdc\xc0\xf0\xcd\x83\x88\x8c\xdb\x0f\x9d\x27\x1a\x03\x24\xf6\x03\xff\xf4\x4c\x9a\x7f\x6d\xf4\xc5\x51\xf1\xff\x5e\x1e\x9d\xba\xe9\x25\x8a\x98\x19\xd1\xc2\x7e\xfd\xea\x48\xad\x2f\x16\x28\xda\xec\xf1\xeb\x20\x2a\xf5\xf8\xac\x2f\xac\x26\x57\x2f\x6c\x55\x6f\x59\x9d\xba\x24\x7a\x77\x53\x97\x88\xc2\x42\xc2\xb8\xc3\x3f\xde\x77\xf7\xdf\xcc\xc8\x5c\xe1\xec\x7b\x43\x53\xc3\x6f\x12\xf6\x17\xb0\x45\xcb\x6f\x56\xa0\xf0\x36\xb1\x08\x5f\xc2\x84\x47\x01\x92\xdc\x59\xdd\xb0\xdf\x5d\xdd\x20\x28\x61\xa5\xbf\x59\x11\xc2\xf7\x8d\x1a\xf6\xc2\x4f\xdf\xab\x19\x63\xb8\x42\x62\x1b\x2a\x95\x7f\xdc\x1b\x27\x0f\x87\xb3\xed\x93\x86\xf8\xa3\xa4\x64\x9f\x8f\x0b\xc5\x60\xba\xb2\x78\x29\xa1\x3e\x97\xdb\x77\x0d\xe4\x1e\x5a\xa6\x65\x0d\xaf\x22\xa2\x66\x32\x6b\xdc\x3e\x51\x15\xa7\x37\x80\xa7\xc7\x1f\xd8\x12\xc5\x22\x13\xfc\x31\x3d\x1a\xfd\xaf\xe2\x40\x76\xec\x42\x78\xfd\x9f\xe2\x96\x67\xe1\xbf\xf8\xa1\xa2\xe1\xc0\xd9\x38\x7c\xed\x9b\x99\xbf\x57\x19\x4c\xfa\x56\x89\xb7\x10\x1f\x7d\x30\x6d\x6f\x21\xa7\x31\xb9\xeb\x35\xa0\x29\xe8\x68\x83\xdd\xec\x65\xf7\x6b\xba\x24\x3e\x73\x08\xd7\xbe\x80\xce\x6d\xf4\xa8\x8b\xf4\x37\x69\x59\xd8\xa9\x60\x98\x78\xe6\x7a\x3f\x50\xf0\xad\xfc\x14\x70\x2c\x12\xdf\x28\xac\x57\xd0\x71\x4d\xca\xf8\x17\x9d\x36\x58\xc1\x4b\x96\x00\xc1\xd2\xd2\x26\x2f\x38\xee\x35\x08\xaf\x21\xf2\xb7\x9d\xd2\x70\xd2\xd4\x67\x5e\x84\x1b\xfb\xca\xca\xe4\xe9\xef\xa1\x3e\x73\x00\xd4\xc3\xa7\x3a\x2d\x9a\x3f\x6d\x58\x75\x89\x75\x50\xe6\xbe\xd7\x92\x17\x63\x76\xc7\x1c\x91\xd5\x5f\x5d\xab\x79\x35\x31\x8c\x6a\x5e\x95\x51\xbf\x12\x95\x3b\x7b\x0e\xca\xcf\xda\x44\x04\xca\xe9\xec\x9f\xdf\xd6\x9e\x12\x43\x46\xcd\xa4\x4d\x47\x28\x88\xfc\xdb\xc2\x64\xea\xb5\x91\x15\x1e\x2e\x24\xcc\x4a\x78\xab\xf0\xe6\x9d\xc2\x2c\x04\xf9\x82\xc1\xb4\x7b\x63\x9c\x5b\x1a\x88\x87\x96\xc9\x7b\xa4\x70\x99\xea\xb6\x70\xe5\x52\x41\x8d\xa7\xd4\x74\x3d\xbf\x5c\x0e\x03\xde\x76\xc5\x0f\x03\xd5\xeb\x91\x63\x7a\x66\xca\xe1\x61\x0a\x63\x0f\x2e\x5d\xb0\xe1\x88\xac\x38\x1d\x5c\xb1\xb0\x58\xff\x64\x56\x6b\x64\xef\x7a\x58\x4a\x01\x53\xc6\x7c\x43\x7b\xc8\x34\xc2\xad\x06\x93\x3a\x22\x00\x88\xeb\x81\x04\xee\xcf\x7a\x04\x1e\x9d\x72\x6d\x40\x71\x34\xb7\x69\x0a\x99\xeb\x7c\xe4\x56\x65\xc6\xcb\x5f\xe2\x8d\xd3\xa2\x7c\x8d\x3a\x38\xc1\x8f\x0d\x3e\x5e\x8a\xaf\xb8\x4b\x52\x3c\xfb\xfc\x47\xc6\x82\x7a\xc6\xf5\x5c\x56\x32\x65\x1b\x92\x1f\xb4\x35\x5e\x34\x81\xe8\x13\x6f\x0e\xdb\x1a\xc9\x0f\x46\xec\x12\x58\x6d\x09\x1c\xf1\xd7\x9f\x57\x78\x0e\x88\x31\x62\x40\x92\xcc\xfd\xe9\x31\xf9\x74\x71\x2c\x95\xf4\xe2\x20\x85\x25\x89\x99\x4d\x00\xe6\x38\x48\x43\x56\x37\xab\xd4\x16\xe0\x25\xf3\xb0\x22\x08\xe4\x33\x46\xf8\xbb\x3b\xf1\xc2\x05\x2a\x9c\xdc\xae\x57\x91\x2b\x4a\xdb\xec\x97\x96\xc8\x62\xa9\x8c\x5c\x8f\x43\x5d\x44\x45\x73\xfb\x06\xd5\xe0\xc7\x71\x48\x09\x85\xdd\xe6\x17\x8f\x68\x5e\xc3\x84\xc1\xbc\x4f\xc2\x27\x16\xe7\x93\xe1\x75\x3a\x38\xc5\x8b\xa9\xfb\x4f\x9e\x90\xdf\x6b\x7a\x67\xfb\xb4\xe9\xd3\xb8\x5e\xea\xed\x9a\x78\x4a\xc9\xef\x2b\x45\x16\x89\x03\xd9\x7f\xd9\x0a\x2b\xb5\xc5\x67\xa0\x76\xbf\x1a\x1f\xf0\x7e\xa2\x7a\x08\x7f\x61\xb0\x52\x5d\x3b\x88\x57\xdc\x57\x67\x13\x95\x7f\xdd\xc2\xbd\xb0\x91\xda\x5f\xd6\xc9\x6b\x5c\x1e\x14\x6a\xed\x59\xba\x13\x01\x6d\x3a\xae\x87\x48\x84\x79\xfb\xca\xc9\x36\xbd\x80\x23\xae\xb0\xa1\xcc\xee\x7f\x4b\x91\x47\x33\x0c\x5c\x07\x13\x31\x0e\xea\x2b\xd4\x87\x28\xf3\x9d\x66\xa1\x18\x64\xf7\x8f\x50\xde\x08\xf1\xaa\x65\x9f\x83\x09\x56\x1e\x10\x0e\x4a\x84\x95\xfc\x74\xef\xf1\x9b\xf5\x0a\x6f\x95\x32\x9b\x86\xe7\xe1\x3e\xe1\x54\xb3\x4c\x48\xac\x08\xfc\x62\xe6\x37\x1a\xee\xa0\x87\x92\x48\xfb\xf6\x92\x2d\x82\x3b\x54\x45\xbe\xea\x1d\xf4\x5c\xb7\x86\xb1\xac\x22\x66\x23\x03\xfb\x7c\xec\x1e\xcd\x14\x3e\xa6\x11\x71\x50\x05\x11\x27\xaa\x36\x9b\x0f\x68\xda\x1e\x8e\x45\x6a\xd1\xdd\xd8\xb1\x2f\x9e\xae\x19\x56\xd2\x7f\x38\x1b\x28\xaf\x91\x54\xc2\xf7\x31\x67\xa7\xd6\x5f\x5a\x5e\x95\x07\x5c\x98\xe8\xfe\x4e\x49\xfa\xd3\xa7\x09\x00\x5b\xf0\xd5\xc5\xf2\x11\xad\xf3\x29\x18\x60\x9e\xaf\x99\x32\x55\x10\x33\xb1\x08\xb1\xf2\x40\xb7\x8d\x06\x8e\xca\x4d\xdd\xab\xae\x49\x35\xbb\x73\x37\x9c\x2f\x32\x6e\x0d\x37\x09\xc4\xcb\x7b\x16\xc6\x67\xd2\x65\xaa\x7e\xc0\x3f\xec\xd4\x32\x94\xe5\x97\xdc\x28\x43\xbd\x38\x7f\xb8\x38\x25\xeb\x7c\x12\x15\x54\xc1\x57\x57\xb5\x29\x4b\x49\xe0\x3a\x44\xdc\xc9\xdc\x37\x0e\x28\xd8\xad\x4a\xea\xb3\x1d\x78\x58\x8a\x5e\x08\x7f\xd8\xd4\xb2\x20\x77\xed\x5b\xba\x56\x00\x2b\xc9\x24\x93\x9d\xda\xd5\xa2\x96\x7a\x36\x71\xc1\x4d\x28\x7b\x4f\xaf\x22\x09\x60\xd2\x98\x27\xbe\x79\xe7\xd4\xe6\xdf\x1a\xfb\x9d\xa1\x6f\xce\x7f\x5e\x93\xd0\x74\x84\x77\x0f\xe4\xc1\x3f\xbc\x3e\x32\xb9\x93\x0d\x2b\x9b\xf0\xd5\x05\xcf\x2b\x8c\x60\x62\xd4\x00\x37\x54\xd5\xb2\xbc\xc7\x48\x42\xe9\x3c\xfb\xe1\xbb\xb5\xed\x01\xb1\x70\xa4\xd7\xd3\x26\xbd\xbf\xfb\xf9\x4a\x5a\x83\x98\x9a\x29\x8b\x49\x8e\x77\x69\xc8\xc1\x43\x7b\x23\xd9\xcc\x3a\xd8\x73\x0d\x54\xc7\x40\xb0\xd4\x6f\xed\x6e\xc5\x43\x9f\xc3\xe7\x0a\xc5\x60\xf1\xd9\x82\x6f\xcd\x70\x58\x4a\x3a\x0a\xe4\x2a\x3f\xb6\xda\xa2\x86\x92\x30\x3b\x81\x3a\xc3\x37\xd8\xc5\xca\xda\xdf\x24\xc8\x49\xe1\xf8\xf2\xc6\x3d\xba\x48\xba\x65\x4a\x6f\xe7\xbf\x07\xeb\x3f\x0b\x3b\x85\x2e\xbd\xe4\xfd\xe8\xd3\x9a\x0f\x43\x15\x3b\xd4\xc6\x8e\x20\x01\xe4\x2e\x51\xb2\x29\x6a\xa6\xde\x6f\xcf\xf6\xe1\xe2\x1b\x81\x93\x14\x05\xf3\xcb\x0d\xd2\xfc\x28\x4d\x52\xcd\xb1\x8e\x21\x0a\x27\xa2\x2f\x6c\x39\x3c\x4d\x73\xdf\x41\x61\x6f\xa0\x37\xef\x93\x15\x02\x88\x62\x59\x6e\x25\x8f\x05\xd1\x04\x33\x72\x78\x74\xf2\x3b\xd6\x88\x65\x29\x98\xec\xdc\xb9\x6b\x2f\xd5\xca\x35\x8a\xbc\xb8\x1a\x8b\xe9\x20\x99\xc9\x2b\xe0\xcb\x4e\xef\x52\xd7\x3c\xf9\xeb\xf7\xc3\xf0\x67\x46\x67\x7b\xe7\xec\x2e\xfe\xd4\xde\x99\xd2\xaa\x4c\x0c\x1a\xd8\xa2\x75\x01\x8d\xca\x7c\xf2\x41\xf8\xdb\xb8\x81\x85\xfd\xe0\xe2\xd3\xe2\x4f\x7a\xc3\x27\xc8\x63\xcc\xee\xc3\x23\x94\x7b\x89\xf9\xbd\x0c\x7f\xee\x0b\xb3\xc7\xe9\x07\xdc\x0a\x6f\xa6\x49\x2d\x2b\x4a\xc2\xf9\x4f\xbd\x21\x6b\xf0\x26\x65\x96\x60\x5e\x87\x3f\xf7\xaa\x87\x47\x28\x0d\x09\xe8\xd9\x16\x8a\xc1\xf0\x8d\x1a\x22\xca\x2f\x59\x58\xd8\xd6\x05\xde\x78\x55\xe5\x89\x91\x1a\x7c\xea\x9b\x1f\x1f\xad\x3d\x54\xd3\x41\xf5\xf0\x6b\x0a\xa7\x5b\xef\x76\x45\x0c\x59\xd5\x16\x6b\x73\x52\xda\x87\x4d\xc4\xa4\xa9\xc1\x67\xce\xd5\xb5\xa0\x19\x46\xdc\xf6\x30\x98\xb3\x5c\x17\xa4\x8c\x96\xc8\x79\xeb\x45\x61\x2c\x87\x5d\xc3\x07\x0f\xd6\xcf\xbf\x99\xc2\xb0\x89\x1e\x4c\x64\x44\x67\xdf\x05\xa2\x08\xb5\xa8\x4d\x93\x79\x01\xbf\xa0\x68\x23\x22\xa7\xc2\x27\xbd\x7c\xd9\xbd\xa6\x4d\xe1\x4e\x50\x17\xec\x79\x84\x62\xe6\x94\xd3\xaa\xd4\x1e\x87\xcc\x15\x8a\x41\xf5\x29\x28\x7f\x57\x2e\xb8\xee\xaa\xe5\x9f\x0a\xff\xde\x6b\xcf\xb6\x2a\x2d\x2f\x27\x61\x61\x04\xea\x59\x5b\x27\x27\x27\xb1\x7c\x46\x6f\x53\x86\x0b\x36\x35\x31\x67\x5d\xc2\x92\xed\x40\x5d\x5f\x55\x33\x5a\x8b\xd4\x22\x7e\xba\x49\x7e\xca\x3a\x97\x57\x44\xa5\xb0\xb5\xe6\x82\x36\xff\x34\x4f\xe3\xf5\x32\x3f\xac\x69\x40\xc7\x17\xca\xa2\x2f\x28\x9e\x9f\xa8\x89\x18\x8e\xa0\x36\x9f\x6b\xd7\xab\x7c\x5a\x8b\x2e\xd2\x57\xc6\x6b\xb4\x67\xde\x01\x52\x4d\xd5\x20\xf3\xd4\x5e\x05\x54\x8f\x98\x32\xa4\xce\x7d\x28\x80\x27\xc5\x47\xbe\xfc\xc8\xf7\x40\x41\x53\x98\x3d\x2b\x15\xf5\xbc\xe3\x5a\xd7\xd7\x91\x50\xda\x08\xae\x1b\xaa\x99\x84\x63\xc6\x30\x03\x30\x56\x74\x18\x5b\xb4\xd5\x05\x18\xb7\x9a\x6a\x64\xae\xee\x19\xa7\x14\x72\x9e\xcf\x40\x8b\x2f\xf9\x59\x66\xbc\xa8\xe8\xcd\x61\xc4\x20\x78\xe7\xad\xd6\x84\xde\x85\x43\xb8\x8e\xc9\xe4\xf1\x49\x76\xbb\x5b\x81\xe3\xfd\x03\xa6\x2c\xc4\x90\x4d\x1c\x50\xf8\xbd\x6a\x4d\x6b\x82\x5e\xab\xbc\xc9\x2d\x27\xa6\xe8\x69\xcb\xc3\xae\x87\x1c\x40\xe0\xe9\x01\xf4\xd8\x21\x6d\xb9\x18\x66\x38\x45\xbc\x23\x47\x15\x35\x8c\xb0\x44\x4f\xff\x88\x5f\xee\xd6\xfd\x3c\x69\x83\x84\xf7\x4a\x54\xf3\xbf\xdd\xa5\xd1\x94\x90\xa5\xac\xc0\x82\x53\xa7\xa0\xef\xf3\x2d\x8f\x21\x37\xa2\x0f\x5c\x74\x50\xd6\xd1\x26\x29\x97\x89\xe1\x5b\x91\x0b\xea\x8e\x29\xc3\xa2\x6f\xee\xb3\x0a\x28\xf8\x04\x9e\xe6\x47\x8c\x7b\x89\x27\x10\x9c\x99\xc1\x75\x39\x3a\xac\x30\x8c\x1d\x0e\xa5\xe5\x60\x58\xcd\x50\xd5\xc0\x7c\x64\xca\x25\x1c\xff\xab\x43\xd9\xb4\x61\x62\x54\xc3\xcf\x35\xa6\xae\x39\x32\x12\xec\x39\xc8\xc6\x6e\x84\xb2\xe6\xcd\xe1\x87\x27\x68\xb3\x37\x4a\x5c\x0f\x36\x43\x10\x91\x2f\x5b\xa2\x0b\x5a\x80\x8d\x9b\xe8\x9a\x8c\xfb\x92\xc7\xa1\xab\x53\x68\xcb\x3e\x3e\x2d\xf9\x1f\x3a\x67\x0b\xe2\xde\xed\x79\x65\xd1\x4c\x2b\xd5\x04\x88\x22\xdb\x36\x3b\x79\x0d\x4b\xc8\x2e\xf9\x8c\x38\xc9\x3e\xf9\xc0\xfb\xe3\x94\x8e\xd2\xf5\xa8\x7d\x86\xb2\xc8\xdf\x74\x06\x24\x76\x83\xe0\x66\x0c\x44\x78\x63\x82\x0c\x14\xc4\x31\x78\x59\x13\xbe\xa1\x1b\xde\xd0\x7a\x3e\xec\x35\x31\x94\xdf\xc5\xe0\xeb\x0d\x55\x41\xaf\x60\x23\x07\x01\xa8\x30\x7f\xe7\xfc\x8f\x44\x89\xab\x56\x28\x06\x33\x1e\xd5\x25\xa6\x38\xe0\xca\x50\xcb\xc8\xcc\x8f\xd6\x8e\x72\x54\xfe\x8c\x97\xb0\x72\xce\x2c\xec\x95\x28\x2b\x01\x55\xd6\xbf\xe6\xb8\xa3\x1a\x08\x11\xf5\x09\xc9\xd0\x55\xca\xec\xdf\xe0\xe0\x55\x4e\x39\x19\x3d\x34\xca\xcd\x30\x35\x0e\x0f\xcb\x93\x9b\x47\x2a\xb3\x2c\x97\x5a\xbe\xc7\x95\x87\x82\xc3\xd5\x51\x0a\x8d\x41\xac\x3e\x25\xb2\x64\xda\xab\x43\x95\xf3\x0a\x58\xe3\x4c\xeb\x1b\x3a\x95\x8c\xb8\x49\x5e\x7e\xf6\xe0\x5e\xe1\x69\xe0\x31\x80\x31\xdc\x74\x96\x2e\xe2\xe7\x4a\x59\x9e\xee\x7a\x3c\x3d\xaa\xd3\xf0\x6f\x7b\x87\x93\xaf\x16\xf0\x3b\xb0\x9c\x80\xf2\x7c\xf2\xb2\x91\x5a\x55\x59\x17\x7a\xa7\x5d\x8f\x8c\x14\x77\xd5\x0d\x4f\x44\x25\x76\x2c\xcc\x8c\x1e\xa2\xa0\x1a\xaa\xb4\x0e\xb6\xf4\xb9\xde\x51\xba\x46\x60\xaf\x18\x6c\xfc\x60\xad\xc6\x2b\x06\x89\x94\xa8\x18\xb8\xb6\xae\x61\xae\x11\xcf\xb5\x70\x8c\x9e\x63\x97\xa8\x92\x48\xcb\x96\x75\x4f\x8d\x1e\x8f\x9a\x6e\x1e\x57\xbc\x28\xb0\x43\x94\x49\xd9\x40\xf6\x3b\xdd\x52\x7d\xef\x0c\xd1\x6e\xf8\xe1\x54\x09\x11\xf1\x10\xf8\x60\x6b\xe2\x63\x52\x09\x1f\x3b\xf0\xc0\xd3\x5e\x06\x67\x7d\xa0\xdd\xa2\x58\x10\x37\xca\x9c\xe7\x7c\x20\x15\x1c\x0c\xc2\xd6\xa5\x15\x1c\x72\x3f\xdb\x20\x2f\x9a\x87\x7b\xbd\x30\xf1\xf2\x8c\xdc\xd5\x23\x2f\x72\xcc\x52\x4e\x99\x72\x5a\x5a\x51\xe5\x33\xc7\x8d\xac\x94\x35\x2f\x36\x28\xb8\xb0\x13\x37\x3e\xa7\x75\x9a\x93\x89\xa9\x87\xea\xbc\x44\xe4\x6f\xfd\x27\x33\x15\x4e\x52\x58\x4a\xf1\x3f\x7d\xaf\x43\x97\xce\x76\xb8\xb2\x65\xf4\x6e\xef\xda\xa8\x83\xe1\xac\xf8\xb8\x7e\xb2\x07\xc6\x74\x4b\x61\x92\x9b\xfa\x3e\xd7\xb5\x28\xc8\x33\xe4\x54\x5c\x55\x93\x29\xf8\xc3\x12\xc1\xcb\xe1\x3b\x44\xfe\x47\xdf\x3b\x20\xc7\xcf\x73\x45\x32\xba\xe8\x51\x39\x7e\x30\x3a\x60\x7f\xfe\xf5\x47\x65\xf6\x90\x0e\x43\xe1\x63\x78\x6f\xc3\x38\xad\xf7\x0d\x0b\x4a\x62\x11\xc5\x60\x28\x73\xd9\x8e\x78\xd8\xa1\xa1\x28\x26\x6c\x8d\xa5\x1a\x6a\x7e\xa4\xc0\x91\xf9\xc4\x3e\xc5\x33\x97\x96\x5c\x2e\x5d\x09\x9f\x6e\xf4\x04\x0d\x4f\xe0\xd7\x31\xdf\x9a\x28\x60\xa8\xdc\xa1\xa7\x20\x12\xd5\x70\x1f\x9f\xb7\x72\xd4\xfd\x6d\xeb\x2f\x50\xa6\x91\x46\x8d\x0f\xae\xc5\xe8\xaf\x7b\x8d\x42\x36\xf4\x3d\xca\x55\x67\x90\x65\x71\x9f\xbb\xdc\xd3\x13\xb4\xe9\x0b\x23\xfd\x1d\x53\xe7\x46\xf3\x82\x6f\x2c\xd6\x4c\x2d\x10\xf3\x88\x41\xea\xb1\x14\x48\xe6\x3f\x17\x6b\x17\x9d\xf4\x46\xf5\xea\xc1\x43\x91\x37\x0b\xd8\xac\x0b\x8f\xd2\x2c\xbe\x2f\x6d\x90\x49\x5c\x37\x72\x08\xcf\x3c\x35\x11\xbe\xe2\x4a\x0b\x99\xc4\xb5\x50\xa3\x50\x0c\x68\x97\xa2\xff\x15\xd6\xf4\x6a\x40\xdd\x3b\x44\x23\x7a\x32\x02\x4e\x7e\x11\x55\x75\xb1\x22\xd0\x5f\x26\x0c\xf3\x4d\x70\x89\x11\x9b\x2b\xb4\x87\xbf\xf3\xae\xb5\xc9\xd0\xd7\x24\x02\xd3\x9d\xfb\xf6\x49\xc5\xac\x96\x34\x60\x2a\x7e\x74\x97\xd4\x7f\x4e\xbb\x9c\x65\xf7\xed\xd3\x50\x96\x44\x18\x8d\x06\xbf\x98\xa7\xcd\x95\x9d\xb2\xa5\x1e\xa7\xd7\x17\x6a\xf3\x9b\x3e\xbb\x44\xad\x88\xa5\x93\xff\xd2\x29\xf9\x61\x7a\x7c\x93\x53\x56\xbf\x7c\x40\x41\x11\x51\x1a\x66\xd1\x7f\x19\x9c\x6c\x70\x2d\xec\x79\x70\x94\xa0\x48\x8c\x22\xe5\xe7\xde\x4b\x29\x6b\x61\x55\xd1\x72\xb6\x84\xc4\x54\x11\xf7\xb7\xb8\xfa\xfd\xe1\x51\x22\xf0\xc0\x19\x82\xbf\xd2\x89\x0f\x28\xd8\x6d\xd7\x45\xae\x4b\xa2\x05\x70\xb0\x58\x03\x86\x71\x25\x67\xb8\xa6\x91\x53\x7a\xb6\x79\xaf\x2e\xdc\xe2\x7a\x53\x1b\xdc\x9d\xc7\xfa\x20\xf5\x44\xea\xc8\xab\x0a\x32\x68\x66\xc7\x11\x1d\x79\x48\xc3\x70\x25\xa6\xb9\xd9\xb1\x7b\x93\x05\x5d\x1f\xae\xa1\x30\x72\x38\x25\x8e\xcb\x16\xd8\xb5\x53\x43\x65\xc5\xd0\x07\x2b\x38\x3d\x1a\xd7\x5a\x34\x32\x78\x9d\xd7\x02\xe1\x45\x00\x73\xe2\xfc\xca\x43\x5a\x4d\x11\x2b\x9f\x64\xdd\xc5\x9a\x93\x16\x62\x4e\x04\xad\x0b\xb6\xaf\x11\xce\x0a\xd8\xaa\xf3\x01\x71\xf0\x8a\x66\x5a\x06\xac\xb1\x88\x62\xb3\x41\xc3\xf9\xbb\x88\x98\x53\x9b\x5c\x2a\x2d\x73\x3b\x7c\x06\xc5\xca\x0d\x30\xc5\xc5\x81\xcc\x6f\x4f\x68\x53\x13\xf0\xd7\x8f\xdd\x7d\x1f\x5f\x1b\x6d\xa0\x7b\x7d\xce\x79\xcb\xe4\x3b\x3f\x22\xaa\x63\x04\xb7\xa8\x4b\xc3\x27\xc4\xfe\xa3\xf0\x13\x6e\x3b\x2b\x05\x96\x2f\x85\x2d\x4d\x94\x56\x4a\x47\xe4\x41\x8d\xa9\x26\x25\x45\xf6\x0c\x39\xa6\x5b\xe0\xb5\x55\xbe\xd6\xa9\x11\x55\x49\x78\xa4\x38\xe0\x35\xf8\xc6\x56\x2d\x47\x57\x89\x03\x24\xd6\x48\x06\x74\x88\x46\x94\xe4\x6e\xcd\x96\x50\xb1\x8a\xa2\xc6\x81\xb1\x0a\xe7\x51\xc0\x7b\x83\x6f\x3c\xac\xa3\x70\x6d\x0e\x34\x17\xaa\xf0\x4b\x14\xe7\xea\x2a\x2a\x01\xe1\xf0\xdd\xae\xa1\x8a\xac\x17\xe5\xe2\x6b\xd9\x2f\xac\xe5\x1f\xb2\x70\x25\xb2\xeb\x88\x54\xd2\x7c\xa0\xae\x86\xae\x22\x48\xa3\xad\x4a\x97\x77\x46\x23\x55\x48\xde\x19\x85\x76\xaf\xf1\xc3\xb7\xc3\x5a\xe1\x5a\x87\x84\x8d\x9c\x8e\xcf\xf8\x61\x49\x09\xa1\xc4\x31\xb1\x8a\xc3\x3e\x24\x0c\x98\xa5\xd6\x93\xd8\x5c\xef\x78\x20\x49\xb9\xea\x43\x4e\x0d\xe3\x33\x31\x9c\xf2\xd6\x78\xf9\x70\x3a\xdb\xbb\x80\x69\xfe\xdf\x63\xc7\x29\xb5\x7a\x83\xb8\x94\xa5\xc9\x7f\x75\xb8\xfe\x85\xab\x89\x6f\x11\xe4\x10\xb9\xd9\x7c\xbb\x24\x78\x4d\x88\x55\xd2\x72\xa8\xf7\xb7\x4a\x89\x67\x18\xa4\x5d\xfc\xda\x90\x28\xca\x0b\x3d\x8c\xec\x67\x0e\xa5\x39\x1c\x1c\x24\x26\xe4\x05\x4b\xa5\x8b\xf5\xa7\xed\x18\x49\x43\xa9\xdc\xe1\xcd\x1a\x34\x84\x52\x33\x1a\x6a\xff\xe9\x78\x82\x60\xec\xc1\xb0\x31\x3c\xc4\x9b\x16\xa9\x70\x00\x8e\x6f\x82\xf4\x71\x97\x32\x62\xc3\x61\xb8\x72\xf8\xe1\x3b\x67\xae\x22\xea\x06\xa9\x26\xb8\x6c\xec\x10\x65\x73\x17\xa6\x90\x2d\xdb\xe5\x74\x20\x2c\x40\xe5\x0a\x2a\xd3\xbc\x3b\x7d\x70\x22\x40\x48\xf6\x13\xed\xba\x28\x62\x78\xb0\xb9\x32\x1f\x0f\x95\x3f\x3f\x18\xef\x39\xfa\xa8\x94\x17\x08\xb6\x64\xf5\xc0\xd1\xc0\xae\xc7\x49\x05\x30\x01\x38\xb6\x4d\x1d\x7e\x46\x61\x91\x7f\xd1\xb7\xce\x95\x47\xa2\x64\x51\x23\x4c\x4e\x8b\xbb\xc4\xc8\xc7\x17\x80\x8f\xec\xc2\x43\xc9\xa7\x0b\xeb\x07\x08\xcd\x0f\x28\x5e\x32\x1e\xaf\x0d\x6d\x98\xa3\xf3\x9b\xde\xbe\x41\x3e\x31\xa3\x4a\xac\xf0\x89\xdd\x3b\x56\x04\x32\x4f\xb0\xba\x33\xbf\x7b\x51\xb1\x63\xb0\x10\xe8\x35\x86\x15\x97\xf7\x96\x14\xca\x70\x26\x29\xef\xfb\x6d\x65\x97\xc7\xc0\x03\x6b\xf9\x83\x69\xbe\x9e\x87\x0c\x1f\xe6\xb0\x3c\x40\xde\xb8\x26\xd5\x3c\x78\x0c\x95\x50\x84\x9b\xcd\x9f\xdb\x2b\x05\x96\x4d\xe6\x57\xd2\xfa\xbe\x1a\xe3\xd4\xad\x52\x06\xfe\xf7\x85\x62\xf0\xce\x34\xa8\xa7\x56\xd0\x52\x42\x18\x3f\xf3\x81\xf4\xab\xe4\xe3\xe8\xcc\xff\x5b\xa4\xce\x95\x88\x25\x6c\x71\xd6\x0d\x1a\xa6\x0e\x21\x0b\xb3\xb9\x17\xc2\x5f\xc6\xc9\x77\x34\x63\x4e\xc7\x2c\x0e\x86\xcd\x2e\x02\x9d\x8d\xce\x19\xe1\xcf\x7b\x67\x9c\x6e\xaf\x6f\xf2\x55\x21\x68\xfe\x65\x17\xc9\xdf\x3f\xa3\xc0\x67\x42\xa7\xe4\xef\xe7\xee\xde\xd0\xe3\xfe\xd3\x10\xe5\x7c\x53\xea\x86\x67\xfe\x81\x07\x54\x46\x36\x4f\x3d\xf2\x35\xe4\x5f\x96\x2f\xbf\x1e\x6f\x1c\xa2\xd3\xfe\xea\x13\x9a\x4a\x88\x10\x81\x19\xc8\xf7\xbd\x34\x4e\x4b\x00\x61\xb8\xd3\x64\xee\x7e\xa1\xf9\xe3\xb9\x55\x54\x27\x4c\x13\xc3\xcb\x15\x5f\x54\xb2\x04\x8f\xc3\x85\x62\x50\xd1\x74\x23\x04\x9f\xc1\x05\x58\x6f\xee\xc1\xa3\x1a\xd1\x5a\x38\x32\xf2\x97\xf0\xad\x7a\x72\xab\x84\xd7\xf9\x04\x4c\x77\xcf\x84\x28\xba\xf1\x35\x4d\x5d\xc0\xf1\xc2\x6e\xb4\x1a\x63\xbf\x33\x3f\xfb\x40\xbe\x3e\x54\x43\xb5\xb0\x4c\xcb\x9d\x7c\x19\xc2\x79\xc5\xa2\xa5\xd8\x12\x95\xeb\xd1\xbd\x3c\x4c\x14\x8a\x76\x29\xc2\x64\x0f\x64\xe6\x96\x15\x48\x08\x98\x81\x17\x83\x0f\x0f\xd2\xa6\x01\x18\x09\xc7\xc9\x73\x4f\x09\x51\x36\xa7\xaf\x4a\x39\xd0\x75\xed\x10\x61\xb4\xcb\x00\x12\x13\x74\x2d\x97\x23\x10\x0b\x35\x0b\xd8\x29\x53\x66\x08\xfa\x65\x30\x67\x29\x54\x91\x0e\xf5\x28\x23\xd4\x77\x41\xeb\x34\x2b\x35\x55\x29\x47\x25\x46\xaf\xea\xd3\x6d\xd2\x79\xcb\x96\x69\x2b\x38\xb0\x5a\x56\x14\x33\x3a\x67\x10\x8e\x52\xdc\x3f\xc1\x51\x58\xaa\x88\xdb\x03\x80\x0c\x97\x66\x7d\x7c\x4c\x1b\x5c\xfa\xac\x41\x1a\xd1\x02\x3c\x38\xd4\x9b\x9a\x7b\x1a\xd8\xe4\xe6\x32\x1c\x27\xf0\xe3\x97\x87\x46\x11\x0f\x45\x7e\x10\x99\x3b\x8f\x24\xdf\xbc\x89\xeb\xd4\x8d\x8c\x3a\x6f\x56\xb0\x43\x75\x62\xa0\x52\x58\xfd\xbd\x3b\x51\xc0\xd3\x7d\x2f\xc1\x1e\xc9\x0f\xd1\xb4\x85\x3c\x46\xea\x75\x58\x92\x45\xb3\x8c\x62\x55\x13\xa7\xc3\xc8\x75\x71\x8c\x92\xca\x1c\xde\x3c\x4c\x54\x96\x0c\x7b\x54\x68\x44\x67\xfe\xfe\x88\x46\x1e\xe1\x76\x53\x11\x6c\xf0\xc4\x76\xbd\xe9\xf5\x1d\x52\x8e\x2a\xc5\x08\x5b\xf8\x86\x2e\xcf\x12\x86\x72\x91\x0e\xbc\xf9\x29\xa1\x7c\x94\x94\xaf\xfc\x85\x2e\x51\xd1\xa4\x2c\x02\x27\xfe\xd7\xb8\xc4\x86\xda\xf4\x0d\x98\xac\x67\x1f\xa8\xa7\x9c\xf5\x3c\x2c\x91\x7e\xb9\x6b\xdf\x19\x93\x24\x7c\xa7\x0a\xa0\x2f\x2b\x51\xb1\xb3\x6b\xa6\xd0\xc2\xc9\x5c\xdc\x7e\xbe\x12\x94\x51\x18\x69\xb7\x1c\x4e\xae\x64\x3c\xfe\x84\xce\xa0\x36\x78\x62\xa7\x26\xd4\x48\xec\x88\x39\x79\xf3\xf3\x2d\x2a\x80\xcf\x20\x06\x05\xdd\xf9\x57\x0e\x0e\x55\x26\x8c\x8c\xf5\x15\x8a\xc1\x85\x87\xa0\x6c\x11\xbe\x70\x7c\x7f\xad\xa9\x16\x88\x74\x2d\x3c\x4b\x1f\x19\xa7\x38\xf6\x96\xa8\xcf\xa1\x90\xf6\x20\xc9\x3f\x6b\xa4\xa0\xd0\xf9\xcf\xbc\xad\x1a\x49\xf9\xae\x10\x49\xfb\xaf\xee\xf3\x45\x3d\xcb\xcc\x26\x82\x33\x52\xdb\x12\x35\x03\x8c\x80\x15\xd9\x3b\x7a\x48\xa3\xae\xe8\x48\x82\xf7\x14\xf1\x17\xdc\x2b\xda\x42\x02\xcb\xad\xd3\x6b\xe2\x0a\xcd\xe4\xdd\xe0\x8f\x6f\x4d\x2e\x30\xc4\xea\x3b\x9a\x12\xe9\x0f\x98\xec\x83\xc1\xe3\x75\xa0\x75\xa2\xea\x9c\x68\x32\x1f\x0c\x91\x18\xbb\xf2\xd0\x21\x25\xd1\xd1\x06\x7c\x85\x71\xda\xf4\x69\xf6\xb4\x69\xd2\x80\xef\xac\x18\x04\x86\xfd\x8f\x45\x8a\xc2\x7f\xd8\xab\x68\x83\x39\x2a\x90\x25\x77\xfc\x65\xfd\x76\x82\x3d\x11\x8b\x03\x73\x76\xc4\xad\xe7\x8b\xca\x0f\x88\x7c\x9c\xc5\xb7\x49\xa1\x3a\xc1\x5e\xf5\xcd\xc9\x5a\xeb\x4b\xeb\x91\x5e\xc2\x86\x83\xf1\x04\xc9\xa8\xfa\x11\x02\xff\xd6\xc5\xd0\x59\x74\x13\x6e\x52\xa6\x17\xfa\xc1\x7d\xa7\xe4\x6c\x82\xa4\xc7\x8a\x2f\x1e\xd2\x1a\xd9\x4a\x25\xac\x93\x48\x03\x5b\xc0\x52\xce\xbe\x7e\x6c\xa4\xa2\xfe\xc6\x18\x71\xc3\x66\x39\xfc\x2f\xcf\xee\x93\x70\x72\x3e\x3f\xca\xce\x5a\x25\x84\xec\x12\x3c\xe4\x7d\xc2\xd3\xbd\x09\xe8\x8e\x1d\x2b\x5b\x55\xc1\x18\xcc\xcf\x39\xef\x31\xf3\x37\x0e\xd2\x68\x8d\x3e\x62\x10\x2e\x33\xff\xb3\x2d\xbd\xfb\xc6\x4c\xa0\x4e\xa2\x28\x59\x5e\xa8\x0a\x08\x5a\xc8\xa9\x80\x31\xd8\xbc\x71\x71\xc6\x30\xb1\x2a\x81\x36\xf5\x60\x8a\xa9\x68\x12\x23\xb6\xfa\xf1\xb6\xeb\xf4\x24\x83\x63\x54\x44\xff\x37\x58\x61\x35\x19\x8c\x36\x63\x60\xcd\x77\x84\xce\xa4\x43\x9b\xe0\x68\x30\x90\xfd\xa1\x28\xd7\x90\xe3\xa1\x0a\xbf\x10\x00\xf3\xbf\x59\x13\x37\x73\xc2\x1a\x9d\x3f\xf8\x43\xdb\x2e\xd4\x7f\x39\x4c\xf4\xf9\xa3\x3e\xe7\x25\xf8\x79\xc5\xfe\x30\xc9\xcb\x22\x69\xc3\xb8\xc1\x22\x11\x21\x2b\x4c\xae\xeb\xc0\xbd\xa2\xd0\xc0\x2c\x0e\xdc\xbc\xf2\x98\x3e\x17\xee\x12\xa8\x21\xc4\xea\x37\xc5\x81\xec\x9e\x37\x44\x3e\x26\x0e\xe6\xfa\x89\xdc\x7e\x6b\x63\xdb\x10\xf1\x05\xc0\x5d\xbb\x18\xe4\x87\xca\x02\xae\x9f\x38\x15\x5e\x6c\xb2\x23\xf1\xa1\x30\x20\x14\xbf\xb6\x42\xbc\x7f\xc3\xe0\x82\x74\xd9\xd3\xf7\x0e\x57\x16\x9a\xdc\xee\x33\xfc\x7b\x17\x68\xda\x97\x4d\x64\x81\x50\x51\x76\xd8\xb9\x63\xb4\xff\xe2\x71\x64\xaf\x4c\x8f\x63\xc7\x27\x99\x34\x93\xa1\x46\x7e\x66\xa2\x0c\xe6\x97\x77\xcc\xe0\xba\x49\xd9\xf6\x11\x8a\xa6\x9b\x13\x0b\x86\x7f\x46\xd3\x52\xed\x9c\xd9\xde\x39\x67\x9a\x70\xd5\x69\x8e\x6b\x53\xbb\xba\x98\x48\xcd\x6b\xae\xc3\x4f\x09\xe9\x28\xd4\xa0\x4c\x20\x01\x1e\x35\xd3\x42\xb6\x9c\x32\x07\x70\x05\xfc\xb8\x82\x2c\x67\xa8\x21\x58\x43\xab\xc6\xca\xbb\x36\x7d\x4e\x47\x27\xc0\x5c\xc2\xff\xd2\xf9\x28\xbc\x93\x1b\x99\x5f\xf1\x51\x2c\x52\x74\xf5\xe0\x51\x7a\xf6\xae\xd7\xad\x68\x08\x95\xbb\x6b\x4f\xe4\x78\xe7\xe0\x0a\xf5\x48\xb4\xa7\xc9\x9e\xbf\x45\xae\x83\xdc\xf0\xed\x7e\xb8\x0d\xfe\xe6\x4a\xcc\x1c\xaa\x8c\x02\x72\x1f\x12\x26\x8d\xc2\x20\x32\xfc\xbe\xe4\x4d\xad\x54\x5e\xe7\x23\xb0\x47\x54\xa9\xb3\xa2\xda\xf0\x9d\xba\xf5\xff\xe9\x7a\xfb\x78\x2b\xaa\x7a\x7f\xdc\xfd\x10\x11\xa1\x1e\x0f\x70\x78\x10\x11\x51\x11\x91\x7d\x3a\x1c\x79\x34\x22\x44\x40\x44\x61\x23\x20\xa1\xa2\xb1\xf6\xcc\xda\x7b\xd6\x39\x33\xb3\x36\x6b\x66\xf6\x66\x93\x19\x19\x91\x79\x8d\xb8\x5c\x22\x33\xe2\x72\xc9\x2f\x91\x91\x79\x91\xcc\x6b\xa6\x46\x86\x0f\x3f\x23\x23\xf2\x9a\x19\x19\x19\x99\x99\x99\xd7\xb8\x64\x9c\xb9\xbf\xd7\xac\xcf\x9a\x59\x6b\xd6\x9c\xfe\xe5\xe1\x9c\xbd\x67\xd6\xfa\x3c\xbe\x1f\x30\xf2\xa0\xe6\xcf\x7f\x96\xe9\xe0\x0e\x2c\x50\x84\x61\x70\x9d\x56\x61\xf1\xca\x33\x61\x11\xe4\x7f\xbc\x4f\x01\xad\xda\x41\x25\x6e\xfa\xae\x79\xe7\x5c\xed\x02\x05\x3e\x43\x76\x12\xcc\xcb\x1b\x65\xf4\x6f\x50\x1f\x10\x6e\xb9\xe5\x4f\x69\x1f\xa4\x55\x17\x3b\xec\xf0\xf7\xb3\xcf\x8e\x0b\x55\x2e\x8b\x12\x3d\xc8\x31\xab\xe1\xcf\x9a\xc8\x37\x2c\x87\x93\x7d\x0a\xff\xa5\x58\x77\x07\xae\xa8\xa8\x5f\x3c\xad\xd8\x2f\x01\xdd\x56\x3c\xf2\xbf\x57\x54\xed\x04\xa7\x82\xa2\xdb\xb9\xee\x90\x42\x24\x09\x80\xf4\x2f\x8a\xc7\x69\x0f\x27\xe5\x6f\x45\x71\x06\xec\x2b\xdc\xb5\x11\x06\x71\x80\x18\x09\xe7\x0f\x90\xf9\xd6\xa7\x41\xcd\x8a\x4e\xb5\xd0\xd9\xfb\xfc\x2a\xdd\xd9\x00\x23\x31\xe0\x7b\x76\x46\x72\x02\x66\x82\x4d\xc2\x97\xac\xe4\x4f\x18\x45\x51\xd5\x3e\x94\x7f\x69\x1b\xbb\xa5\xe9\x42\x72\x72\x94\x25\xbf\x1e\xb7\x5a\x4a\x84\x9d\x66\xbc\xa7\x43\xa4\xeb\x36\x68\x0d\xc0\x18\xff\xed\x37\x84\x07\x3f\x18\x17\x87\x5f\x12\xb2\xd9\x57\x21\xa7\x42\x4d\x82\x12\xe4\x7b\x57\x8f\x56\x88\x63\x23\x60\xc4\x8f\xf9\x9d\xc5\xe9\x9b\x35\x18\x20\xc6\x6e\x09\xf1\xe9\x2d\xb4\x7b\x6b\x24\x31\x09\x75\x5e\x9a\x99\x4b\x7d\xb6\x9e\xa4\xd1\x80\xcf\x96\xf8\x2a\xe8\x68\x87\x32\x57\xb1\x15\x87\x90\xdc\xc3\x62\xcf\xba\x22\xd9\xa1\xe4\x0e\xe9\xa2\x2c\x76\x00\xf3\xeb\x28\x6e\xe7\x1e\x1f\xa4\x01\x4f\x29\xab\x20\xc3\xc2\x0d\x55\x91\xa8\x30\x57\x51\xff\x8f\xb1\x97\xa5\x72\x88\x57\xa8\xab\x7d\x75\xdb\x5d\x2a\x87\x3f\x1c\x73\xbe\x7a\x5a\x70\x7f\xb6\xc4\xd7\x9c\xd4\x38\x55\xd1\x31\x81\x8e\x83\xbc\x9e\x36\x69\xe4\x82\xe5\xa2\x1b\xec\xaf\xdc\xca\xdf\x21\x29\x07\x93\x67\x4e\x2e\x95\xc3\x0f\x6f\x92\x86\x91\x81\xa3\x64\x9d\x5b\xc4\x70\xd8\xa6\x00\x65\xaf\x1f\x52\xfa\x78\xc3\x6a\xaa\x00\x85\xc2\xa1\x4d\x4a\x13\x1d\x54\x40\xa8\x2d\xbf\xe3\xc1\x74\xfc\xbd\xbc\x7b\xd2\xb4\x99\x5d\xc2\x6a\x69\xfd\x1b\x8a\xb8\x71\x60\x83\x23\x73\xb9\x2f\x37\x7f\x9f\x24\xf4\x74\x66\xa1\x86\x0f\x2d\x49\xa7\xd0\x16\x0d\x7c\x2b\x99\x40\xcf\x54\x77\x61\x36\x6e\x12\xb5\xa2\xcc\xff\x69\xdb\x39\xca\xda\xde\x75\xb8\x96\xff\x17\x5e\x52\xbc\x9c\x62\x05\xa1\xe8\xd5\x6c\xb9\x48\x6b\x62\x7c\x62\xdb\x42\xbb\xef\xd0\x83\x7a\x63\x66\xa3\x75\x09\xad\x21\x5c\x7b\xaf\x8e\x6a\x13\x06\x7a\xe1\xd4\x57\x35\x6b\x0a\xea\x9a\xd4\x46\x62\x2e\x7c\xec\x15\x45\xf1\x02\xbb\x30\x61\x3b\x98\x39\x9a\x26\x89\xae\x06\xbf\xf3\x8f\x68\xcc\x5a\x51\x9e\x88\x62\xe7\x77\x1a\xa4\x8f\xf2\xec\xcf\x41\x65\x90\xc8\x37\xac\x56\x54\xf6\x49\x1c\xd7\xee\xdb\x77\x99\x56\x41\x32\x02\xaf\x08\xf7\x27\x1f\x91\x1f\x70\x5f\x2c\xd1\xc0\x45\xd0\xa0\x12\xae\xf4\x0c\xd7\x9f\x01\x13\x7a\x54\x85\x5f\xb9\x8a\x12\x65\xb5\x2a\x04\x62\xfe\x63\x85\xca\x03\x24\x3e\xa8\x0e\xfe\x7e\x52\x1a\x32\x83\x5c\x33\x4a\xe0\x61\xe5\x11\xdd\x47\x82\x23\xe3\xf9\xe1\xca\xfd\x72\xb3\xe6\xe0\xc7\x87\xc5\x09\xcf\xf2\x37\x7b\x34\x17\xac\x69\x53\x3b\x27\xc7\x12\xda\xeb\xb5\x11\x2b\xf6\xfd\x44\x89\xe3\xce\x75\xed\x6a\x50\x69\x60\xc6\x3f\xf9\x43\xaf\x2a\xc4\x35\x46\x7b\x2d\xfe\x6e\xf6\x69\xc2\x35\xc8\xed\x45\x4c\xf5\xd4\x2d\x5e\x75\x91\xec\x16\x98\xe8\x1e\x57\x0e\x3c\x27\xae\xa3\x0d\x3f\xb6\x3a\xce\xb5\xde\x15\xe4\x21\x8c\xc4\x4c\xf5\xda\xad\xe7\x69\xdf\x1f\xd2\x2b\x2f\xa2\xa0\x92\x18\xad\x00\x1e\x89\xfc\x61\xf9\x13\x67\x69\xf1\xd8\x0f\x4c\xec\xfa\xc9\x36\xf5\xce\x11\xb2\x08\xae\x62\x33\x0a\x4a\x22\x67\x2e\xe9\xd0\x43\xd9\xda\x00\x24\x0c\x1e\x1c\x33\x58\xd4\x92\x2e\xc7\xf5\xe7\x2e\x7d\x1b\xf2\x2b\xaa\x63\x46\x7c\x52\xe5\x00\xf8\xc7\xf5\x5f\x4c\x99\x43\xb9\x78\x0d\x2f\x08\xce\x16\xf2\xe9\x2e\x6e\x7a\xfc\x76\xf6\x15\xbe\x74\x7c\xa8\x22\x73\x52\x41\xae\xb0\xfc\xc8\x5f\xd6\xae\x15\x17\xb4\x1e\xd8\x80\xd0\xe2\xa1\xa0\x34\x56\x69\x1c\x9a\xc4\xf3\x0c\xee\x6d\x5d\xb0\xf3\x17\x68\x6f\xc5\xa7\x2e\xa1\x69\x4b\xaf\x9c\x7f\x52\x9e\x50\xcf\x8a\x71\x7b\xde\x6c\x59\x1e\xbb\xb8\x86\x1b\x5c\x87\x6c\xe9\xb9\xca\x12\xc0\xab\x53\xd7\x23\x1c\xcf\x07\x70\xb7\xc2\x83\x8a\x83\x40\x8d\x23\x8c\xc3\x19\x27\x32\x6a\x57\x5c\xbe\x5c\xa1\xaa\xca\xc5\x87\xc3\x99\x3c\x5f\x9e\xa5\xd2\x8a\x6d\x55\xdb\x73\xcc\xc9\x91\x7a\x05\xc6\x70\xa5\x25\xb0\xe2\xd5\x77\xd3\x31\x00\x40\xc9\xa4\x81\x63\x1d\xd2\x97\x6f\xd7\x1a\x26\xc4\x08\x48\xed\xf1\x33\x3a\x47\x73\x1f\xac\x51\x9a\x38\x5d\x96\x17\xe8\x77\xb0\x4a\x99\x03\x49\x33\x7f\x64\x80\x12\x8b\xd5\x95\x71\x14\x5c\xbf\xb1\x4e\xbe\x1d\xda\x94\x4e\x5f\x3f\x9f\x01\x27\x60\x01\x08\x6d\x97\xca\x61\xf9\x71\x58\x1d\x5d\x8b\x6c\x9e\x72\x95\x14\x75\x7c\xb7\x32\x97\xb0\x1b\x44\x15\x49\xbc\x71\xe3\x60\xf1\xc4\x19\x97\x3b\x6b\x59\x3a\xca\x35\x48\x7a\xc2\xcd\x0f\xa7\xbf\x46\x35\x6a\xfc\xc4\x5f\x16\x46\xb4\xc9\x9a\xb0\xda\x59\xe9\x24\xa5\x72\xb8\x61\x30\x28\x79\x0b\xf7\x87\x13\x9a\x72\x2d\x37\x79\x84\xf8\xfc\xf4\x49\xc5\xd9\xcb\x21\x09\xae\x2a\xdc\xb7\x4c\xf5\xd1\xa1\xb4\x37\x56\x77\x9f\x7b\x42\x4c\x5a\xb9\x73\x49\xf4\x27\x8f\xef\x48\x67\x13\x2c\x9d\x4a\xcf\x5d\x9d\xa4\xf3\x26\xea\x2d\x95\xc3\xaf\xad\xcb\x82\x79\x63\x54\xdd\xcd\x0b\xa5\x60\x9e\xdf\x0a\x58\xa5\x25\x81\xba\xe1\xfd\x9a\x5e\x10\xc7\x99\x1b\xd4\xe9\x77\x68\xdd\xb7\x23\xe5\xa7\x81\xd4\xe3\x3e\xe4\x75\x0d\xab\x81\x59\x15\xb8\xc3\x20\x14\x95\x7b\xff\x89\x73\x14\xb2\x80\x0f\x8a\x63\x85\x96\x79\xa6\x08\x2b\x54\xf0\xa3\x8f\xdc\x3e\x24\x71\x42\x51\x1a\xfc\xfc\x09\x85\x62\xd4\xe4\x22\x6a\xe1\x48\x57\xaf\x54\xf9\xa3\x76\x05\x59\xf4\xb1\x33\x34\xe1\x3c\x8c\xcc\x58\x59\x98\xdd\xa3\x8b\xea\x05\x71\x81\x9b\x7f\x7e\x1f\x7c\x26\x6e\x91\xcc\x8b\xa0\xb6\x07\xe2\x4f\x19\x87\xfe\x6b\x26\xe9\x90\x27\xe6\xc6\xba\xa4\x6d\x2b\x33\xe3\x5b\x93\x48\xdd\xe0\xc2\x97\x1f\x48\x81\xac\x84\x4c\xfc\xd1\x95\xe9\xfb\x28\x28\x01\xb1\x18\xca\xf6\x75\xf2\x5a\x31\x5c\x0d\x6a\x58\x96\x38\xe1\xfe\xc6\x50\x15\xda\x9f\x80\x84\x8a\x2b\x8e\xff\x13\xc2\x36\x3f\xa5\xeb\x1b\x63\x94\x21\x8b\x41\x33\x32\x0a\x7d\xb9\x73\x1e\x6f\x4b\xfe\xaf\xb0\x8a\x0a\xdb\x16\x2a\x5b\xa0\x06\x12\x02\x30\x8f\x3e\x2f\x1b\x61\xcc\x91\xc4\xfc\x73\x93\xf1\x09\x67\xe5\xf2\x8c\xee\xeb\xe0\x0b\x94\xdf\xdf\xc0\x6e\xc9\x41\x59\xa1\x92\x8a\x26\xa4\xc4\x95\x2b\x3d\x3f\xb1\xc7\x2c\x2e\xea\xe9\x47\x44\x30\xf6\x80\xe2\xc1\x6c\xfe\x6b\x42\x97\x9f\x21\x03\x0b\xf5\xe2\xfc\xe2\x67\xb4\x8c\x6f\x73\x5a\x25\xbc\xc3\x33\x7b\xda\x15\x46\x53\xaf\x4b\x9b\xd1\x03\x7b\x32\x0f\x49\x7a\xe5\x35\xf3\x97\x2c\xb9\x32\x0e\x95\x97\xdd\x95\x91\x82\x71\x71\xbc\xf3\x3f\x76\xb7\x32\xf7\x6e\x51\xb7\xd6\x42\x50\x6d\x9d\x38\x91\x51\xaf\x23\xbd\x38\x4e\x04\x57\x3e\x93\x24\x02\x1b\x64\x4f\xba\xef\x93\xa7\xc6\x27\xbd\x0c\x6a\xed\xfc\x00\x11\x92\xf8\xbe\x26\xff\xb5\xc7\xe5\x20\x8f\x8f\x8e\xcd\x51\x82\x93\x89\x4d\xea\xe1\x96\x12\x47\xc3\x6f\x6c\x82\xbf\xf2\xf8\xd4\x29\xfd\xda\xff\x51\xd5\x5b\x37\xdf\xb7\xa1\x31\xe3\xa5\xc2\x05\x07\x95\x79\x19\xc7\x15\x40\xa9\x90\xff\xc2\x32\x85\x1c\x5e\xb7\x39\x90\xe9\x7b\x2b\xd2\x77\x05\x30\x61\xfc\x04\xde\x39\x46\xe6\x83\xd8\x04\x73\xf9\xd2\x70\xe5\x3d\xe9\x64\xad\xc0\x53\xb1\xe4\x97\x3c\x91\x1f\x9e\xe9\x1f\xc5\xaa\x2e\xbf\x71\xab\xe2\xba\x4f\xaa\xbe\x55\xf2\x30\x74\xd2\xa5\xa1\x92\xce\x82\x15\xfa\x64\x71\xc3\xbb\xe9\xa9\x55\x4f\xe0\xf9\x51\x4a\x0b\x97\x6e\x90\x27\xdb\xb7\x18\xa9\x42\x67\xb4\x7d\xbb\xd8\xf0\xf8\x01\x62\x8a\xa6\xe5\x37\x57\x6b\x23\x75\x2e\xe5\x29\xca\x93\x71\x0f\xca\x9f\xd5\xa4\xb1\xff\xc3\xc9\x1d\x4a\xd1\x62\x58\xd4\x46\x50\xb1\x7d\x51\x9b\x5a\x56\x31\xe6\xa0\x59\xb1\x07\x1a\x58\x1d\xa5\x1f\x21\xbe\x16\x83\x5d\x42\xf1\xae\xa2\x02\x6a\xc1\xb6\xcd\xf5\xbe\xae\x3d\x06\x79\xb5\xdc\xc0\xac\x8e\x8d\x5e\x25\xaf\xfe\xb6\x6d\x88\xb4\x35\x51\x1e\xcc\xf9\x8f\x9c\xa7\x15\x1a\x00\x2b\x95\xc4\xb4\xf7\x1d\x04\x90\xe7\x95\x0e\x66\xc4\xc8\xca\xd3\x7f\x71\x8e\xf4\xd7\xa5\x51\x26\x7d\xb6\xae\xc5\x25\x1b\x23\x17\xc7\x0b\xf7\x42\x79\xb7\x3c\x45\x3e\xf2\x38\x04\xa4\xb0\x7c\x94\x7c\x74\x0e\x46\xc2\x37\x2a\xff\xf4\x92\xa4\x71\x44\x95\xac\xe4\xc9\x35\xe6\x24\x15\x5a\x3c\x6f\xc5\x65\xe9\x7f\x91\x8d\x78\x1a\x6f\x35\x46\xe2\x8a\xb2\x69\xf2\x2b\xba\xfa\x58\xa5\xd2\x52\x0c\x90\x66\x99\x69\x5c\x4d\x2f\x07\xed\x88\x60\xa4\x01\x77\x2c\x55\x4a\xcb\x0e\x0c\x5f\xec\xd3\xb7\x4c\x4b\xc3\xfc\x7a\x5b\xd4\x04\xdd\x87\xf4\x0f\x38\x3d\x5a\xce\x3a\xea\x36\x6a\xd5\xb8\x96\x17\xcf\xb6\xd7\x6f\x90\xf0\x12\x90\x5e\xcb\x3f\x73\x3a\x16\x7c\xc6\x1e\xe7\xdb\xd9\x2f\x02\xae\xe8\x86\x25\xd7\xac\x98\x3f\x2f\xf3\xd3\xa7\xdf\x36\x58\x7c\x34\xee\x5c\xd2\x57\x9c\xfa\xca\x50\x25\x83\xdb\x36\xf7\xc1\x8e\x7e\xf2\x2d\xb3\x35\x29\x46\xce\x2e\x10\xe5\x47\xdf\x8b\xfd\xa9\xdb\xfb\xe9\xc2\xbb\x48\x6f\x1b\x97\x39\x10\x8c\x67\x6c\xac\x18\xb3\xe4\x1e\x9a\x90\xa1\x9c\x39\x98\x25\xe2\x6d\x45\xba\xec\x62\xbd\xa4\xe3\x6d\x46\x76\x22\xf2\xb5\xd7\xd2\xc1\xc3\x8e\x32\xb4\xd0\xc4\xfb\xe4\x01\x2d\x15\x53\x97\x8f\xd4\x85\x4f\x45\x37\x08\x4d\x94\xe6\x61\x87\x1a\x8c\x9b\x3d\x8a\x4c\xd0\x31\x2e\xb6\x11\xb0\xed\x0a\x32\x7a\xa3\x7f\x7d\x4b\x3e\x7d\x7b\x2a\x8c\xf8\x88\xb8\xa0\x69\xc4\xff\x57\xa7\xb6\x73\x0a\x5c\x86\xa3\x6c\x60\xf8\x89\x0a\xee\xcc\x35\x72\x0a\x13\xa3\xa4\x63\xb0\xcb\xc8\xfd\xc3\x92\x38\xe9\xab\xd4\xb7\xc2\xaf\xae\xd3\x1c\xc4\xa3\xea\x57\x38\x1e\x6c\x9a\x04\x2f\x7f\x29\xa5\xec\x92\xac\xc9\xfe\x99\x83\xd3\x4b\x1a\xcc\x1a\xd1\x21\x4f\x1b\x98\x8f\x3a\xac\x0b\xeb\x40\x17\x1a\x7d\xa9\x51\x93\x86\x29\x53\x31\x54\xe3\xf0\x64\x4e\xa5\xfa\xcc\x03\xe2\x5c\x11\x8f\xcf\x0f\xff\xdf\xea\x74\xdc\xc5\x08\x00\x48\xe1\x8f\xc2\xd1\x0a\xe7\xca\xcc\xb0\x3d\x72\x1b\xee\x4a\x19\x65\xd5\x11\x13\x86\x4b\x6f\x0f\xd7\x1f\xb9\x5b\x13\xd3\xcb\xaf\xde\x09\x5b\xb6\xc5\x88\x11\x5c\xba\x0a\x8c\x30\xd5\x69\xd1\xb1\xad\xca\x38\x82\xf3\x94\xa2\xc7\xb5\x66\x43\xb2\x48\x24\x0c\xc7\xad\xf6\x46\x37\x89\x3d\x06\x0d\xf4\xf2\xe6\x96\xc3\xb2\x03\x9c\xdc\xd9\x35\x8d\xef\x2c\xe6\xc2\x97\x5f\x58\x5e\x31\xff\x3a\x0e\xd1\xd0\x3c\xc9\x67\x74\x75\xc1\xaa\x64\xf8\x89\xc1\x22\xe3\x90\x28\x5c\x87\x3f\x7a\x5e\x8c\x5d\xfd\x56\x54\xbf\x84\x3f\x7f\x46\xf9\xf2\x88\x43\x21\x79\x45\x7d\x64\xa8\xac\xb3\x95\x3a\xa1\x4d\x06\x4f\x97\xfa\x88\xbb\xd0\x86\xb7\xaf\x51\x5c\xf3\xa8\x70\x87\xb8\x5e\x23\x5f\x4f\x9e\x39\xbd\x8b\xc7\xaf\x72\x5f\xe1\xd4\xcb\x23\xf5\x7a\x92\xd5\x84\x05\x66\xf8\xd5\x63\x5a\x1d\x84\x5b\xd4\x15\x7a\x79\xc5\x8f\x6f\xd2\x29\xdd\x6e\xac\x50\x5b\xf8\x4e\xfb\x68\xed\x02\xe0\x75\x75\x2c\x8f\x7f\x7e\xeb\x4a\xbd\x56\x42\x8c\xbb\x77\xf0\x6f\xfc\x93\x57\x86\xa8\xa8\x24\x23\xba\x3a\xd1\xa3\x7d\xee\x84\xb6\xc4\xc7\x0c\x8b\x7d\x5f\x7b\x86\x3f\x67\x50\x66\x4a\x4a\x43\xee\xcd\x89\x30\x06\x35\x5b\x7c\xd3\x69\x5a\xaa\x68\xac\x81\xa3\x3e\x3a\xfa\x39\x3f\x97\xeb\x48\x5b\xe5\xc6\xe6\x56\xec\x8a\x97\x2d\x15\x24\xf4\xce\x3f\xbb\x53\x59\x96\x79\x36\x72\x01\xbc\xb5\xa6\xa2\xb1\x03\x90\x69\x0a\xeb\x7c\x89\x69\x7a\xea\x0d\xd9\xfc\x4c\x9e\x39\x95\x1f\x25\x57\x51\x8a\x73\x30\x33\x80\x77\x85\xef\x55\x18\x59\xd8\xf5\xa8\x10\x77\x0a\xff\xf5\xce\x0c\x31\xbe\x0a\x24\x5a\x64\x43\xbf\xf4\xa3\x13\x72\xd6\xe0\x37\x52\xfa\x0e\x9b\x26\xc9\xe3\x63\xe2\xa8\xb1\xe3\x59\xc6\x58\x2a\xbf\x52\x8d\x61\x97\x6b\xa5\x84\xbf\x86\xcd\x37\x87\xc8\x56\xb0\x2d\x9b\xb8\xf0\x8e\x4e\xa8\xc3\xe7\x21\x57\xf6\xfe\xbf\x18\x01\x0b\xb1\xf9\x51\xa2\x67\x89\xe7\xff\x39\xbb\x14\xcf\x3e\x7d\x1b\x22\xc4\x61\x6b\x01\x8a\xda\x3d\x28\x90\xcf\x39\xa5\x94\x3b\x81\xc3\x45\x82\x9f\x9e\xa6\x31\xe8\xa2\x5e\x0c\x58\x02\x5c\xfa\x59\x2c\x1a\x6e\x3b\x2d\x15\x79\x70\xd4\xcc\x3c\xb5\x4c\xbe\xef\x1a\xb5\xcd\x0a\xe6\x8b\xf2\xc2\x6c\x4d\xe5\xd2\x47\x86\x4f\x8c\xc4\x2c\x24\xd7\xde\x91\x56\x2e\x49\x44\x20\x72\xd6\x40\x4d\x3d\x8c\xe0\x66\x3c\xce\xed\x2b\xdc\xb1\x51\x37\xbc\x02\x58\xb4\x90\xe5\x18\x30\x0d\xd0\xb2\xcb\x69\xe0\x5b\x7c\x5b\xa4\xd2\xd9\x5f\x3b\x92\x44\xa1\x26\xce\x00\x03\x8a\x67\x2e\x91\xb9\xc3\x41\xbe\x95\x3a\xa7\xd5\x05\xba\x7a\x5a\x95\xa1\x40\xbd\x09\xb5\xdd\xe7\x48\xb0\x84\x99\xe4\xac\xf7\xc6\x28\xb5\x80\x67\x11\xb7\x06\x30\x27\x49\xbc\x7e\x69\xa5\x0c\xdf\x36\x46\xd5\x4c\x8e\xd9\xea\x6a\x9e\xc2\x55\x60\x4e\xe7\x36\xb5\x25\x5d\x4c\x77\x37\xc7\x32\xde\x65\x27\xf7\xac\x42\x95\xa2\xbd\xd0\xf7\xc2\x30\xd1\xdf\x30\x86\x98\x82\x2d\x2b\x7e\x4a\xd1\xec\xaf\x04\x0e\xaf\x2b\xbf\xbb\x46\x65\x75\x37\x62\x87\xc9\x1d\x2f\xa9\x4a\xf1\x3e\x16\x64\x23\x9e\xad\x2a\x47\x14\x1a\x11\xaa\x08\x9b\x50\x2e\x15\xf4\x6e\xe2\xf5\xe7\xd5\x09\x83\xf1\xec\x0d\xcf\x88\xa6\x00\x23\x47\x7d\xd0\xc5\x4b\x8f\x28\xb4\x54\x0a\xb6\xba\xc1\xe6\x91\xfa\x95\xac\xd8\xd8\x81\x4c\x55\xf8\x89\xb6\x6c\x88\xdd\x2e\x04\xe3\xe4\x4f\xb7\x6b\x1e\x6e\x36\xec\x6d\xc1\xe8\xaf\x1d\x54\xf3\x97\x09\x81\xeb\x4c\x82\xcf\x3f\x7b\xc7\x39\xe2\x6a\x31\x07\xbb\x62\x3a\xf5\xbb\x3d\xb2\x96\x36\x33\xc3\x80\xc2\xf4\x1d\x9a\xac\x11\x31\xb1\xc0\x77\x15\x5d\xcd\xda\x76\xca\xa4\xee\xe9\x53\xc1\x89\x65\xea\x34\x19\xbc\x6c\x02\x23\xd5\x7d\xb7\x0d\x55\x0e\x65\x2b\x06\x7f\x86\x3b\x9e\xd3\x1e\x09\xae\xd5\x92\xe4\x5d\x38\xe7\x7e\x88\xca\x1e\x5f\x92\x84\x6f\xec\xd6\xb8\x95\x81\x6b\x22\xb0\xfe\x8d\xc1\x3a\xe7\x9d\x91\x1c\x1c\x87\x67\xe8\xc4\x91\x7f\xaf\x4a\x77\x5d\x1b\x10\x26\x68\xca\xef\xbf\x4f\x1b\x9c\x26\x62\x4c\xf0\x21\x8a\x13\x1e\xd6\x44\xaf\x91\x83\x6c\x1b\x59\xa2\xa2\x8b\x1e\xff\xc6\xb7\xcf\x55\xe3\x80\x03\x02\x95\xb2\x30\xeb\xd4\xd4\x5c\xea\xb4\x89\x59\x35\x00\xe0\x6d\x38\xe3\x05\x55\x41\x84\xa3\x9d\x21\xdb\xec\x7d\x07\x92\x8a\x0a\x72\x1b\x9f\x7e\xec\xae\xdf\x80\x5c\x1d\x3a\xaf\xaa\x22\xc4\x1c\xd2\x51\x78\x6e\x97\xea\xef\xec\xd2\x06\xf2\x39\xac\xa6\x78\xe9\x46\x65\x5e\xd9\xc2\x35\x1b\x89\xdf\x99\xfb\xfa\x01\xdd\xe3\x89\xdf\x8d\xa8\x1a\x86\xd0\xf5\x3d\x5f\x99\x4b\x30\x82\x6c\x2e\x3d\x38\x45\x1a\x7a\x3b\xd4\x33\x50\x3f\x62\x94\xff\x3e\x70\xbc\xf6\x1c\x6d\x4c\x40\x90\x2d\x43\x99\x7c\x46\x3e\x4f\x1a\x64\xd8\xcd\xf9\xff\x9d\xa8\xaa\xd5\xa9\x4d\x6d\xfe\x23\x9a\x5c\xa2\x49\x04\xe3\xf3\xf7\x0f\xc4\x1e\x00\x2e\x48\xf3\x15\x4e\x1e\xbe\xa8\xa9\xb7\xd3\x01\xa0\x53\xd2\x11\xf5\xdc\x03\x42\x3d\x91\x7a\x7e\xc9\xc3\x08\xc4\xfe\x0a\x3f\xd9\x9a\x64\x91\x69\xd3\xf8\xde\xa8\xb1\x53\x11\x8a\x22\x4c\x78\x56\x86\x5f\x59\xa5\xad\xa9\xb0\x0d\x4e\x3e\xd1\x01\x0b\x7f\xbd\x22\x89\x7e\x98\x0b\xe9\xe5\x3e\x70\x87\x46\x29\x41\xb1\x58\x7e\xfe\xf0\x44\xf9\x46\xa9\x61\x04\x75\x04\x5b\xcc\xa9\x0b\x15\xc1\x7c\xe4\x73\x23\xd3\x4e\x4b\xda\x4c\xf1\x15\xf5\x27\x43\x5d\x7b\xde\xc5\x42\xf4\x63\xd1\xb6\x98\xac\x6f\x30\x6c\x12\x61\xf8\xb5\xf4\x8c\xb3\x45\xb4\x26\xb8\x0a\x21\xa3\xf1\xe6\x20\x91\x71\x39\xd6\xe1\x7d\x5b\x95\xcd\x22\x66\xeb\x29\x9f\x75\xdd\x3c\x68\xb8\xf2\x69\x04\xd5\x10\x30\x37\xf9\x85\x9a\x6f\x7a\x94\x09\x3c\x5f\x18\xaf\x0c\x3a\xa5\x68\xdd\x11\xe6\xd5\x11\x17\xeb\xcf\xff\x5b\xb7\x1c\x10\x4c\xef\xee\xec\x9e\xc2\xd1\xf1\xdd\x82\x80\x60\x21\x97\xfb\xf8\xfe\xf6\x01\x81\x80\xc4\x1e\x11\xbd\x75\xe1\xd2\x75\xba\x31\x26\xc0\x2f\x41\xb9\xfb\xdf\xc6\xc7\x5f\xbb\x41\x6a\x54\xf8\x98\xe7\x4e\xbd\xd4\xa1\x04\x30\xdb\xc6\x16\x72\x1c\x90\x73\xf4\x8f\xb4\x8b\xea\x07\xb5\x4a\x16\x12\x69\xa0\xf0\xf1\xa1\x69\x14\xd3\x24\xae\x7a\x15\xbe\xff\xf6\xa1\xca\xf4\xc7\xc1\x71\xb1\x53\xf8\x9f\x33\x24\x8a\x87\x91\x52\x39\x1c\x68\x6a\x32\xb8\x26\xea\x77\x07\xfb\x97\x55\xc2\x38\xd7\x43\x29\x0d\xab\x99\x9b\xd3\xaf\x96\xdb\xbc\x00\x97\x6c\xfe\xad\x90\xb7\x92\x69\x79\xa9\x1c\xae\x1e\x2a\x3f\x58\xf4\x67\x26\xe1\x28\xfe\xbe\xfc\x79\x9a\xc2\x21\xef\x4c\x03\xc3\x0f\x64\x4b\x55\x1c\x7b\xe7\xd9\x71\x94\x11\x36\x4f\xe1\x89\x5d\xda\x53\x46\xbe\x6f\xc7\xb0\x9c\x3f\x69\x93\x6e\x93\x20\x9b\xd6\x82\x78\x39\xbd\x6f\xf7\x90\x54\x92\x16\xe2\xff\xcb\x66\xc0\x8c\xe9\x46\xe4\xf9\x6c\xbd\x85\x9d\x8a\xd7\xab\x08\xad\x36\x5e\x1d\xa9\x56\x1b\x8d\x34\x35\x7f\xca\x34\x55\x87\xca\xc5\x00\x62\x1d\x37\x27\xfd\xe5\x6a\x98\xb1\x96\x70\x7d\x4c\x3c\x38\x77\xa4\xe3\x07\x72\x61\xc3\x16\x7e\xf1\x3e\x05\xe1\x35\xb9\x84\xdc\x92\x45\x01\x15\x77\x43\x87\x4a\x0f\xb2\x91\x0f\xdd\x42\xb8\xe1\x58\xfa\x9d\xb6\xa2\x77\xd2\x0f\xdf\xea\x2e\x01\x1a\xae\x52\xdb\xa6\xcd\xe8\x7f\xce\xd5\x04\x01\x7c\x81\xec\xe6\xa3\xce\xf3\x17\xea\x80\x05\x86\xb1\x0f\xad\xd1\x80\xd5\xe7\xeb\x7f\x47\xea\x97\x75\xaa\xf0\xae\x7f\x3c\xa6\x6d\xc1\x08\x57\xa0\x07\x29\xf4\xdb\xee\x19\xa6\x80\xaf\x7d\xdc\x8c\x6a\x10\x5e\xfd\xdc\xfd\x4a\x3f\x56\xf6\x5c\x0a\xf7\xd0\xdb\x8a\x09\xa4\x1f\x38\x15\xe8\x2b\x8b\xeb\x15\x82\x1b\x6e\x20\x23\x88\x31\x6c\x05\x77\x87\xa6\xd8\x1f\x30\x5a\xc7\xc0\x56\x8e\x6e\xc7\x1f\xee\xd7\xbe\x61\x9d\x18\x58\x0c\x7a\xdd\x77\xd3\x9f\xe3\xf2\x0f\xcd\xe8\x14\x70\x83\x33\x1f\x1d\x2a\x15\x20\xd5\x25\xe1\x24\xcd\x30\xaf\x6a\xd3\x66\xe2\x8d\x7b\xc3\x7e\x45\xee\xaf\x97\x0f\xb5\xa7\x3f\x93\xfe\x1d\x53\xbb\xa6\xc5\xf1\xf7\xa1\x93\x43\x34\x79\x1e\x8e\x4a\x2b\xfc\x4d\x2b\xe8\xbd\xa0\x0e\x8c\x01\x38\xe3\x93\x47\x89\x2d\x39\xab\x05\xc2\xba\x2a\x4f\x34\x1d\x87\x58\xd5\x9d\x9b\x13\xf0\xa5\xc4\xcf\x9e\x4b\x4f\xb7\x10\x8c\x5b\xb3\x19\x2a\xf7\xc5\x85\xfa\x15\xab\xdb\xd4\x41\x06\xfc\xa0\xfc\x77\xe6\xb4\x2b\x33\x02\xd7\x8c\x9a\xb4\x72\x5f\xa1\x31\x03\xca\xab\x9b\x30\x8b\xa2\x61\xa1\x7b\x9c\x9e\xfb\xf9\x4f\xf1\xbd\x78\x1c\x50\x5f\x24\x45\x17\x58\x66\x3e\x93\x7f\xf6\x26\xc5\x16\xda\xc2\x1c\x0b\xf0\xe3\x5d\x72\x8f\x45\x6a\x2e\x65\xaa\xc4\x47\x71\xcc\x81\xa1\xb2\x0a\x67\xb4\x96\xf0\x5b\x86\xb7\xcb\x06\x34\x2a\x93\x21\x26\x7c\x75\xf0\x3f\x41\x6b\xcb\x79\xcf\xf9\x75\xb8\x4c\x57\x09\x1b\x8f\x72\x5f\x7e\xe3\xb8\x73\xa4\xda\x6a\x8c\x1b\x6b\x9d\x31\x5c\x51\x1e\xc4\x1e\x2f\x72\xc4\xa6\x68\xea\x66\x79\x72\x2b\x01\xc3\x28\x88\x7b\xd7\xa3\x5b\x41\x74\xd0\x22\x35\xab\xe4\x63\xcf\xa7\x5c\x30\x06\xb8\xe7\xcb\xc0\x15\x8b\xab\xc4\x65\x15\xf5\x3e\x30\x23\x8d\xb6\xf1\x68\x83\x60\xdf\xeb\x45\xad\xfe\x22\x7d\x68\x5d\xa1\xcd\x4f\xb0\x1b\xc4\xab\xfc\x67\xeb\x32\xe9\x36\xa8\x0f\x0b\xc5\x5c\xfb\x36\x35\x0c\x11\xa7\x12\x30\x88\xe9\xff\x5d\x91\x1c\x1e\x86\x0c\xcb\x21\x0a\x92\x3a\xec\x50\x4c\x87\x2b\x8c\x23\x84\x2d\x4a\x79\x73\x33\x6d\xdb\x20\x51\x7e\x47\x31\xfe\xf2\xe7\x64\xce\x98\xd2\xd5\x95\x20\x5c\x73\x9f\x78\x04\xfe\xd9\xd2\xab\xf8\x15\x39\xde\xd6\xa1\xac\xd2\xc0\x22\xd4\x6f\x41\x67\xa0\x69\x86\x54\x08\xf3\x2d\x13\xb5\xc4\x60\xe7\xee\xbb\xd3\xaf\x17\x55\x08\xb5\x51\x0a\x7c\x77\xc6\x40\x45\x53\x33\x68\x22\x3e\xed\xca\x1d\xbf\x22\xb9\xf9\xb8\xa1\xdc\xfc\xc2\xee\xb3\xb4\xc9\x3a\x5a\x8f\x7a\x3d\x9f\xf3\x58\x94\x96\x3a\x3f\xdf\xd2\x48\x81\x16\x72\x6b\x16\x22\xa0\xa2\xca\xe1\xfa\x0b\x34\x05\x65\xec\x72\xc5\xf7\xa4\x57\xd9\x64\xb7\x8b\x14\x26\xb6\xae\x80\x35\x2d\x2f\x4c\xdf\xa9\x6a\x14\x51\x0d\xea\x44\xff\x91\x7f\xe9\xef\x0c\x4a\x50\x8d\x75\x2b\x3e\x9d\xdf\x7d\x57\x97\x08\x43\x7e\x20\xd2\xe9\xa7\x8a\x32\x46\x53\x46\x6a\xc4\x15\x1e\x5b\x7f\xed\x49\x7a\x9f\x1a\x52\x1c\x32\x72\x57\xcf\x93\x3e\xde\x54\x25\x1e\x7d\x7a\xb4\x9e\x4a\x84\x88\x56\x39\x3c\x9d\x97\xbf\x05\x3b\xbc\x61\x11\xf0\xd6\xe5\x37\x29\x44\x35\x02\x0d\x45\x7e\xe8\x7e\x75\x3a\xe9\x79\xb1\x83\xc4\xcd\x1a\x1e\xa3\x8a\x7a\x63\xba\x09\x5e\xad\xaf\x51\x7d\x1f\x9b\x62\x97\x75\x63\xfd\x6c\xd1\x61\xe0\x04\xfa\xfc\x99\x35\xd9\x45\x5b\x6c\xc1\x51\xe8\x9b\x23\xef\xac\xa6\x51\x95\x41\xd6\xf1\x0e\x59\x0c\x31\x17\xdf\xaf\x00\x8f\x9c\x0a\x49\x5c\x56\xa7\xef\x95\x7f\x51\xb1\x91\xd1\x5b\xf2\x41\xbb\x77\xcb\x1d\xba\x40\x12\x98\x81\x81\x4f\xc8\xb7\x34\xc1\xe1\x06\xf6\x71\x14\xa5\x04\x30\xf0\xe4\xf1\xf4\x76\x24\xe0\x7c\x76\xe0\xbc\x27\x29\xfa\x0f\xcb\x34\xa4\x09\xd7\x17\x87\x92\xb5\x30\xf3\x40\x3a\x39\x4d\x9e\x39\xbd\x5b\xcc\x5c\x87\xb7\x2b\xb6\x85\xd4\xe1\x0f\xb2\x73\x70\x52\x69\x3a\x41\xf4\x62\x6f\x99\xa4\x83\xb3\x58\x50\xab\xd9\xe2\xc9\x87\x87\xbb\xd3\x15\x44\x0f\x71\x9c\x56\xda\xc9\xe8\xad\xd1\x30\x83\xb9\xc6\xad\x05\x9e\x85\x7d\x12\xdb\x7a\xae\xd8\x33\x42\xc1\xb9\x21\xcf\x2f\x19\x16\x31\x7a\xe1\x22\x1c\xea\x4a\xba\x91\x69\x9d\x53\xf9\x42\xf5\xb5\x73\x54\xa6\x97\xc9\xa7\xb8\xf9\x59\xef\x25\xff\x6e\x3a\xe0\xfe\x47\xee\xd4\xec\x5b\x02\xd7\xb3\xa8\x0f\x35\x7c\xf8\x8d\xf1\xb2\xd4\xa3\x9c\x9f\x11\xfd\x94\x87\x8f\x0e\x4d\x72\x74\x32\xf5\x2c\x95\xc3\x1f\x09\x87\x9d\xb9\xb0\x95\x49\xf8\xc7\x82\x7b\xc1\x8f\x54\xf4\x1a\x5f\x3a\x72\xb6\x08\x60\x1e\x18\x09\x96\xc3\x29\xa3\xb4\xec\x48\x0d\x9e\xcb\xbd\x58\x2d\x7f\x7f\x82\x8f\x14\xf8\x8f\x52\x39\x7c\x4f\x77\x1a\xc7\x2e\xb1\x91\x8d\xc1\xbe\x68\xe9\xfc\xbe\xfc\xcb\x47\x21\x09\x37\x30\x67\x90\x7d\x3a\xa3\x7d\xe8\xd4\x91\xcf\x08\xf5\x85\xc6\xc5\xcb\x5a\xff\xd4\xa0\x51\x71\x24\xc8\x6a\x67\x6b\xae\x85\x3e\xa3\x41\x42\x43\x9a\xb5\xfb\x5c\xad\x15\xa2\xbd\xe0\xfd\x0b\x91\x68\xcb\xb2\xf4\x73\x6e\x12\x17\x33\xe9\x54\xb0\xf9\x25\x39\x57\x34\x2c\xc2\x90\x62\x74\x73\x43\x5e\x8b\xdc\xae\x4f\x4a\x0e\x71\xb9\x7c\x0b\xd4\x20\x3f\xbc\x63\x78\x9a\xe9\x26\xff\x77\xd7\xbc\xa1\xca\xb4\xd9\x20\x26\x36\x61\xe4\xd6\xd0\xbc\x1e\x04\x32\xf0\xb2\x04\x9a\xf2\xc9\x3d\x8a\xde\x26\x35\x7a\xb1\x28\xc7\x9e\x6f\x9c\xd7\x6f\x39\x96\x98\x0d\xe5\x6e\x3c\x94\x1e\xc3\xf7\x62\xd7\xc5\x66\x2b\x4d\xcc\xfc\xeb\x1d\xfd\x79\xce\x01\x45\x23\xb7\x57\x23\x53\xb8\xa4\x97\xda\x88\xa4\xef\xca\x85\x9b\x95\x25\xb6\x50\x2e\x2f\xf7\xe5\xcf\x78\xe6\x3c\xe5\x1b\xab\x1a\x1f\xe2\x8b\xfd\xc3\x95\xa8\x05\xaf\x25\xb3\xf5\x1f\x6e\xd2\x69\x18\xc8\x17\xbe\xef\xd7\x2c\x55\x40\x05\x16\x0d\xe2\xb0\x99\x7f\x50\xdb\xbd\x0b\xdc\xbe\x58\xb1\x5e\x7e\x5c\x13\x06\x8f\xb2\x87\x13\x37\x67\x47\xab\x52\x27\x86\x05\x9e\x0f\xc2\x26\x4f\x17\x05\x55\x29\xf0\xfc\xe8\xd0\x7e\x6e\xb4\x44\x97\xf7\x28\x38\xa5\xbf\x6d\xc8\x50\x0b\xa8\xc7\xed\x6f\xc1\x47\x73\xc2\xc1\x6c\xfe\x11\xea\xe2\xc5\x99\xe3\x87\x28\x8a\x86\x1e\xb1\x89\xc1\xcd\x9c\xae\x79\x53\x96\x17\xbe\x45\x55\x2c\xfb\xf4\x25\xc3\x55\xae\x0f\x30\x2d\xa1\x72\x3c\x30\x41\x37\xcc\xf7\x2d\xe4\x0a\x6f\xe0\x51\x27\x87\x4a\x08\x9a\xd2\x63\xee\x6a\x83\x0b\xbd\x9c\xbb\x94\xb2\x20\xca\xbe\xbf\x9e\xa1\x8d\x61\x1b\xd8\x8d\x5d\x93\x0b\xab\xa6\x25\xb1\xab\x5a\xba\x3c\xfa\x13\xb6\x52\x0e\x77\xb8\xa4\x68\xc7\x83\x3a\x5e\xda\xb6\x63\xa9\xe3\x67\x1f\x93\xe6\x40\x8c\x7f\xd9\xcd\x5b\x34\xe4\x25\x57\x6a\x15\x7b\xe9\xda\xfa\xa4\x1a\xc7\xd9\x89\x6f\xb1\xf7\xe0\x48\x15\x7d\x4d\x0c\xc5\xd0\x37\x3c\x7a\x7f\x06\x28\xe6\xba\xd8\x8e\xf7\xee\x4f\x5c\x27\x1f\x7e\x50\xaf\x31\x04\x1e\xc1\x85\xc2\x60\xb9\x16\xb5\x05\x97\x29\x7c\xe4\x26\x65\xea\x45\x13\xbb\xaf\x01\x0f\xeb\x81\xca\x97\xba\x69\x47\xd6\xc3\x3a\x7a\x39\x76\xa3\x67\xab\x6f\x7a\x97\xbe\xa3\x4c\x6b\x63\x3e\x0a\x27\xa3\x68\x28\x2a\xee\xaa\x85\x4d\xf1\x44\x9c\x2d\x10\xf5\x6f\x44\x0e\xb1\x15\x13\xc8\xdc\xe2\x0d\x43\xc4\x41\xd2\x44\xb5\xd6\x0c\x51\xa8\x02\x1e\x71\x79\x07\x18\x92\x49\x42\xa1\x01\xbb\x98\x91\x6a\xec\xb1\x9a\xef\xd8\x25\x6b\x35\xee\xd1\xc5\x93\x47\xfd\x29\xad\x32\xf4\x7c\xe2\xa0\x78\x9b\x19\x6e\xbf\x5d\x8a\x9b\x58\x9d\xa5\x72\xf8\x17\xcd\x55\xc5\x44\x2d\x5b\x0a\xb8\x4e\xbb\x2e\xbd\x20\x9e\x3c\x0d\xda\xec\x7c\xbb\x9e\x18\x18\x0b\x40\x60\x03\x50\x0c\x93\x27\xca\x67\x66\xd3\x06\x4e\xd0\x70\x1f\x7b\x45\x15\x96\x72\x11\xdf\xa8\x55\xe5\x3e\x67\x02\xb2\xfb\xa5\xdb\x34\x94\xd8\x6a\x53\x5f\xec\x0c\xda\x1e\x4b\x4e\x9d\x61\x65\xde\x5c\xfe\x1b\xef\x0e\x49\x3a\x24\xec\xf9\xa5\x3a\xe2\xb2\x1b\xc5\xa9\x23\xce\x14\xc9\xd1\xa0\x7c\xbf\x8d\xf6\x8a\x49\x16\x37\x73\x93\x6b\xa4\xad\xb7\x5d\xac\x17\xcc\x81\xd3\xaf\x9d\x65\xdb\x1e\x85\x87\x8f\x58\x35\xe0\xc0\xef\x5e\xe1\xc0\xb3\x82\xbb\x36\x70\xc3\xa7\x97\xcf\x55\x54\x11\xfc\xcc\x47\xfe\xd3\xce\xa1\x22\x10\x73\xc1\x67\x27\x46\xe4\x16\xc9\xf3\x19\x40\x29\x8b\xe5\x1a\xce\x79\x55\x51\x2c\xb1\x01\xac\x5e\xf8\xbf\x33\xda\xe2\xe0\x53\x41\x62\x79\x59\xf8\x78\x43\x7a\x0b\x57\x49\xf4\x7f\x0f\xae\x1e\xa2\xec\x22\xb8\x53\x71\x54\x2b\x7c\xf7\xbd\x8c\x2e\x30\x72\x6b\x42\xb9\x71\xf5\xf3\x82\xc9\x6d\xa1\x3a\x6c\x18\x6f\xee\xc8\x58\xae\x12\x91\xea\x0b\xb9\xb1\x80\xf5\x5b\x86\x5c\xc4\x88\x69\x5a\xca\x5d\x98\x22\x0b\x31\x52\x8f\x42\xd2\x86\x9d\x9a\x30\x4c\xe2\x91\x21\xbe\xeb\x96\xb1\xfc\xbb\x46\x7f\xb7\x68\x91\xb8\xf4\x1d\xb3\x54\x80\x81\xdb\x13\x00\x03\xf5\x06\x8d\x0b\x64\x22\x12\xe7\xdc\x70\xc7\x15\x62\xce\x85\xa2\x26\x93\x97\x69\x17\x6e\x14\x87\x80\x61\x57\x35\x6d\x65\x03\xe4\x50\x66\x7a\x57\x77\xf4\x21\x7e\xb6\x3d\x5d\x62\x58\x08\x79\x1a\x89\xb8\x24\x0c\x87\xf8\x78\xa7\x54\x67\x44\x60\x52\x3b\xb6\x6b\xef\x91\x06\xf1\x7b\xcc\x5f\x7a\x5a\x31\xbc\xa6\x95\x0a\x54\x61\xb3\x6e\xca\x78\xe8\x12\x5a\x4f\x1b\xbd\x7c\xa8\x7b\xa8\xb4\x24\x52\xd3\xd0\xcf\x17\xa4\xf7\x0a\x15\x46\x91\xd9\x44\x71\x15\x9d\x1c\xf5\xe2\xc5\xa7\x04\xfd\xd4\x08\xec\x7a\x6c\xd3\xcf\xd4\xb3\xe1\x05\xb6\xd8\x27\xdf\xd0\x05\x93\x87\x6b\x19\x5a\xaf\xcf\x0a\xbe\xf2\xbc\x60\x92\x0b\x9d\x85\xac\x0f\xd8\x23\x6d\x8a\xd4\x90\x89\xa3\xba\x79\x6b\x5b\xba\x8f\xe8\x75\x69\x13\x5a\xbf\xb1\xaf\xa4\x87\xd9\xe3\x40\xc1\x2d\xf7\x62\xcf\x3f\xd3\x74\x55\xbc\xcd\x7e\xfe\x7a\x5c\x04\xd7\x02\x1b\x96\xe1\xe1\xb3\x67\xc1\x94\x7d\xde\xfc\xa5\x57\x2e\x5b\xb1\x78\xfe\x92\x15\xdc\x2e\x48\x9b\x02\x46\x05\x50\x95\x24\x29\x22\xf7\x6d\x57\xf6\x99\x0e\x62\x5c\xb0\x65\xe8\x7a\x85\xaf\x81\x89\x89\xa3\x6a\xe4\x7b\x8a\xf4\x4c\x2d\x60\x2e\x6e\x29\x27\x69\xdd\x8e\x8c\xdc\x84\x81\x99\x8b\xcd\x4e\x8e\xf5\xfc\xce\x60\x38\x32\x4b\x91\x87\x4c\x38\x83\xbc\xdb\x5f\x7b\xf8\x92\xf4\xe5\x42\x2c\xaa\xc1\x79\x8c\xd6\x9f\xee\x84\x2b\x52\x28\x00\x07\x33\x83\x80\x29\x6c\x61\xd8\x2a\xf8\xe6\x0b\x51\x13\x11\x12\xa7\x91\x0f\x6b\x6d\xb7\x0f\xe7\x91\x27\xc6\x47\x97\xc9\x7e\x0d\x45\x51\x61\x74\x51\x6b\x06\x11\xf3\x13\xf3\xd2\xdd\x1a\x98\x24\x25\x0c\x19\x8b\xf2\x8d\x3b\x28\x8f\x94\x63\x18\x81\x6d\x63\x5e\x5d\xbf\xd7\x7d\x96\xe8\x71\x10\x73\xe0\x94\x51\x45\x70\x81\x30\xb4\x16\x9a\xa9\x2b\x95\x89\x43\x4c\x47\x86\x3a\xf6\xa5\x49\xba\xb8\x0a\x67\xe1\x27\x12\x90\x0f\xb5\x2b\xfc\x0f\x86\xb8\x4a\x0c\xef\x92\xb7\x8c\xce\xd6\xe7\xcc\x4f\x44\x17\x8a\x74\x9c\x0e\xd7\xab\xc6\xf4\xa1\xdc\x6f\x27\x4e\xd4\x02\x9f\xd7\x4b\x1b\x5e\x6f\xab\x3f\x43\x87\xf0\x57\x0a\x56\x5e\xe8\x15\x43\x8f\xf0\xf7\x50\x99\x18\xb8\xa8\x5a\x8d\xbd\x92\x0a\x37\xef\x1c\xa7\x05\x62\xca\x6a\xc8\x87\x49\x94\x04\xc9\x34\x57\x8f\x56\xa1\xa6\x8b\x16\x2d\xbf\xac\x9c\xb2\x5f\x1d\x90\xae\x55\x48\xcd\xe5\x62\xd7\x20\x37\xe6\x2c\xd1\x08\x6f\x35\x0c\x40\xb0\x73\xbb\xd2\x33\x2b\x8b\xb8\x66\xc0\x87\xe3\xe9\xb4\x35\x67\x3d\x94\xe6\x2b\xa8\xa9\xca\x21\xfd\x54\x9b\xb1\x59\xa4\x87\x9b\x43\xc1\xdd\xfe\xc3\x7e\xed\xc0\x98\x0e\x71\x09\xef\x3e\x28\x8b\xe1\x27\x53\x5e\xd6\xc5\x13\xea\xd8\x35\xa3\x3a\x97\x2f\xe9\xf6\x0c\x95\x4f\xb4\x4e\xec\x1a\x23\x0e\x48\x9d\x7c\x7b\x85\x06\x39\x42\x81\x1d\xa4\xe8\xfe\xf9\x0f\xe6\x55\x59\x66\x07\xf1\xc1\x73\xb1\xb5\x57\x27\x52\x3a\x75\x01\x05\xbb\x45\x0c\x82\x02\x1b\x8a\xaa\xe8\xcf\xfe\xf8\x98\xb6\xa3\x71\x84\xf2\x71\xe1\x66\xcd\x45\x07\x12\x28\xff\x70\x4f\x57\x85\xd5\x27\x88\xdc\x70\xea\xc9\xb1\xf3\xb4\xd8\xb0\x2e\xbd\x0d\x2a\xde\x7c\xe0\x7c\xad\x01\x25\x3d\x28\x8d\xd5\xca\x77\xd6\x85\xe1\xbd\x9c\xec\xf1\xb9\xde\xc0\x84\x49\xd1\x48\x28\xef\x1d\x07\xe4\x20\x9e\xd6\xf9\x3d\xe5\x43\x9a\x03\xe9\x56\x12\x9b\x0e\x75\x4d\x2f\x0d\xbf\x2c\x76\x6f\x8b\x05\xd1\x04\x96\x2c\xb7\x6e\x81\x94\x3b\x31\x70\xfc\x4b\xc6\x1e\xcf\x38\xe9\x31\x03\x9b\x62\xe5\xb9\xf8\x2c\x2d\x19\x92\x9a\x15\x37\xc5\x7f\x7c\x45\xc7\x42\x23\xc2\x01\xe8\xb0\x49\x5c\xf4\xea\xd9\xa2\xb4\x0a\x7c\xea\x82\xff\xec\x6d\x37\x01\xf8\xeb\xca\x4c\x5d\x55\x28\xbc\x0c\x45\xc8\xa2\xf2\xc2\x2b\x97\x2c\x99\xbf\x7c\xee\x0d\xcb\xae\x8e\x3f\xe3\x05\xb3\xd2\x47\xa5\xc6\x90\x4b\x7a\x53\xca\x10\xde\x4a\xc5\xaf\x01\x73\xd4\xa6\xfc\xcb\xea\x09\xc5\x02\x9b\x6b\x9b\x28\x6f\x64\xd7\x29\x79\xb3\x11\x23\x9e\xcf\x61\xbb\x5c\xdb\xf3\x25\x99\x08\xab\x36\x6a\xf2\x58\x73\x63\x51\xbe\x14\xe4\xfb\xd8\xe1\x55\xd1\x25\xc7\x94\x65\x06\x45\x9c\xec\xb8\x4d\x9f\x9d\x05\x86\x81\xb1\x19\xb3\x1b\x7e\x7b\x54\x43\x2b\x63\x6c\x72\xbf\x2c\x11\xb8\xd6\x28\x2c\x8a\x3a\x66\x1c\xcc\xcc\xc3\xe8\xd4\xae\xf4\x3b\x99\x1e\x55\xfd\x82\x7a\x31\x6b\x62\x52\x6f\x37\x59\xc6\x1d\x3b\xff\xf4\xdb\xb2\xc1\x8c\x7a\xc6\xf0\xd9\x55\xf0\x42\x96\x20\xea\x10\xc3\x22\x4a\x2e\xdc\x70\x96\x8c\xc6\x56\xc0\x18\x69\xf1\xa7\x92\x9f\xfd\x96\x6e\x80\x44\xb0\x20\x55\xf5\xe5\xf7\x29\xfa\xfa\x15\x06\xa4\x8a\xfc\xe9\x51\x49\xed\x43\x2f\x51\x46\xcd\xf9\x17\x6e\x1b\xa1\x57\xef\x06\x06\x7e\x7f\xf8\xde\x7a\x28\x0d\x16\x23\xe2\x26\x87\xf5\xd2\x9d\x8a\xdb\x28\xae\x53\x57\x34\x7a\xef\x5f\xa6\xcc\x65\x53\xa0\x98\x53\xba\x3e\x47\x94\xd0\x63\x92\x5f\x71\xd6\x3e\x18\xa7\x55\xa0\x20\x2d\x7c\xe9\xe0\x39\xea\x1b\xaf\x54\xf8\x9f\xfe\xfb\xbd\x52\x85\xda\x46\x01\x17\x62\x53\xd7\xc7\x23\xe0\x93\x56\x70\x8d\xb8\xc2\xed\x25\x18\xa0\x9a\xc9\xba\x20\x8f\x76\xab\xab\x85\x78\x07\xb6\x7e\x90\xfd\x7e\xf4\x48\x3a\xcb\x35\x39\xb6\xdd\x44\xc9\x10\xea\xd9\xd5\xa2\xfc\xad\x31\x55\xba\x23\xf7\x0d\x4d\x7e\x6c\xf2\xb4\x49\x5d\x5d\x5d\x80\x16\x7a\x7d\x84\x6e\x77\x9e\x10\x3d\x79\xe9\x3f\xa7\x2d\x9d\xbc\x5c\xe4\x79\x28\xd0\x6b\xcf\xdc\xcf\x66\x0d\x12\x07\x9e\x0f\xb5\xbf\x58\x94\x90\x87\x1a\x76\xb1\x28\x21\xa2\x1f\xb8\xf8\xc5\xf3\x54\xd1\x17\x3b\x10\x32\xf8\xc9\xf6\xa4\x70\xe3\x23\xb2\x86\x06\xb3\xae\xa8\x70\x79\x6e\xa2\xae\x7e\xcb\xe7\x73\x82\x8c\x79\xfd\xeb\xe9\x90\x47\x2a\x0c\xc5\xaa\x5b\x72\x73\xf1\xc6\x0c\x78\x11\x73\x31\x32\x84\xde\x4b\xb8\x7a\x87\xe2\xa8\x89\x02\xd7\xe4\x2f\x3a\x97\xdb\x0e\xf1\xdd\xb0\x28\x31\xe0\xa8\x7c\xfc\x65\x85\xb8\x66\xc6\xde\x5d\x3d\x5a\x8e\x70\xc0\xd6\x38\xfa\x19\x3f\xdf\x9f\x4e\x2c\xdd\x5d\x62\x57\x31\x7c\x4e\xba\x24\xbe\x04\xde\xc5\x13\x55\x19\x68\x34\xd0\xfb\x5e\xc5\x1f\x93\x39\x51\x4f\x31\xec\xd6\x11\xca\xac\xd2\x03\x0f\xc3\x78\x50\xb6\x45\x3e\x7e\xe4\xc6\xd2\xdc\xbc\xf8\xfa\xb1\x1c\x0a\x05\x9d\xfc\x53\xfe\xdf\xcb\x92\xeb\x51\x37\x60\xe7\x26\x24\x7e\x6c\x50\xc9\xe3\x31\xc5\x97\xe1\x93\x8f\x63\x39\x54\x5a\x68\x7e\xcc\x9e\x24\x7f\xdf\xb8\xf5\xc8\xb3\x7c\xe2\xa3\x49\xe3\xa2\x87\xf6\xbb\xae\x36\x65\x8d\x08\xc4\xa4\xc2\x4f\x76\x25\x40\x41\x8a\xb2\x6e\x13\x1b\xde\x84\x32\x97\xfb\x15\x31\x4a\x1d\xfe\xa1\x7e\x74\x54\xb5\x56\x61\xc8\x06\xaa\xca\xf7\x4e\x69\x39\xd5\x35\x19\x32\x55\x43\xb0\xf0\xcf\xed\x0a\x5a\x10\x9b\x24\x59\x0b\xff\xf7\x11\xe5\xc3\xc5\xc0\xcc\x76\xc1\x01\x6e\x22\xe8\xa3\x57\xb5\xeb\x94\x79\x97\x5e\xa6\xea\x10\xe6\x3f\xb4\x43\xd9\xed\x28\x64\x80\xdc\x8f\xc6\xa4\x6b\x2f\xe2\x9a\x78\x1d\xc7\x4f\x68\xf6\x1a\x3b\x92\xa8\xdb\xe4\xbb\xb7\xff\xda\x2a\xfd\x04\x1a\xc4\xc5\x2d\x2e\xe9\xae\x3f\xa7\xbb\xcf\x82\x04\xea\x50\x1b\x7b\x3e\x90\x69\x9e\x74\x15\xe3\x05\xf0\xbc\xe5\xcc\xbe\x07\x93\xdf\x30\x65\xda\x54\x9e\x9c\x4f\x40\xb0\x58\x60\x07\x1c\x7f\x2b\x1a\xf1\xdc\x63\x5a\xa7\x12\xf8\x04\xb1\x7e\xd1\x43\x05\x7b\x8b\x84\xe9\x79\x7e\x54\xf2\x66\xb1\x75\x7f\xad\x2a\x9b\x3c\x41\x1f\x2d\x95\xc3\xf5\x75\x45\x74\x0e\x3b\xd8\xa5\x8d\x52\x39\x2c\x6f\xd2\x34\xb0\x68\x53\xf8\xfd\xfd\x8f\x26\x90\x5e\xc1\xc4\x57\x25\xc9\x6d\x4d\x30\xcc\xc3\x7e\xac\x7d\xb4\xbd\x21\x9f\x08\xe8\x52\xf3\x02\xee\xaf\xcb\x46\x4a\xf2\x45\x06\xdf\xfa\xdb\x7a\xfa\xa5\x3b\x04\x33\x3f\x55\x7a\xde\xc8\x14\xcb\x57\xca\x3c\x00\xa6\xfe\xd7\xaa\xe4\x39\x37\x38\x3d\x65\xcd\x5d\x9a\x47\x30\x72\xf9\x48\x5a\x7f\x4e\x81\x9f\xdc\xcb\xf5\x80\x27\xec\xbe\x48\x0e\x04\xb0\xb2\xde\xf8\x47\xa7\x70\x75\xb5\x89\xd1\x9b\xac\x51\x9b\xd7\xb5\x29\x27\xc6\xb6\xa3\xdc\xfd\xc5\x77\xd2\x75\xc0\x47\x2f\x2b\xb9\xd4\xc5\x5c\x8b\xf5\x51\x58\x24\x97\x96\x0b\x11\x81\xcc\xcb\x3d\x53\xdf\xc1\x00\x5a\xc4\x85\x0f\xcf\x1f\xfa\xd6\x9b\x74\xc9\xc8\x96\xe7\xc7\xfa\xaf\xf9\x17\xdc\xcc\x40\x29\xde\xc7\xe6\x2a\xcf\x2b\x3c\x4f\xcc\x38\x1d\xfb\xc7\xab\x14\x21\xa2\x19\xd1\x13\xb8\x65\xa0\x66\xa8\x13\x85\x6d\x5e\xfd\x08\xcd\xbb\xfb\x46\xc9\x56\xb9\x46\x1a\xea\xd5\x2b\xcf\x96\x77\x1e\xbb\x26\x6d\xc6\x38\x99\x35\x9a\x8a\x36\x18\xc8\x5d\x06\x94\xc8\xdf\x1f\x4a\x0e\x45\x15\x65\x09\x43\x7b\x75\x43\x1d\xdb\x0c\x0c\x43\xf3\x99\xcb\x13\x4d\x39\x3a\xdd\x14\x41\xd9\xfc\xd6\x89\x74\xbb\x76\x79\x6c\xe9\xf3\x95\xe3\x10\x7a\xaf\x66\xc8\x35\x39\xf3\xae\xd8\x1a\x0d\x03\xc5\xc5\x81\xed\x92\x75\x4a\x3b\x61\x4c\x3c\x4f\xbb\x2e\xae\x89\x3d\x83\x91\xba\xb0\x14\x2a\xe6\xee\x92\x83\x2f\x8a\x82\xe8\x2b\x76\x0d\x8d\xcb\xfe\xc0\xe5\x4c\xd4\xc2\xfd\x55\x40\x7b\x5f\x85\x9c\x0a\x23\x66\x2d\x33\x85\x2d\x76\x56\x94\xf9\x7d\x2d\x3a\x30\xd0\x56\x97\x4f\xa6\xef\xab\x4f\xeb\x90\xc9\x66\x76\x42\x64\xba\xb1\xbc\xec\x5a\x91\x67\xdf\x7c\x40\xeb\x02\xa3\xd6\x06\xf9\xe0\x0e\x1a\x3e\xfb\x12\x7c\xaa\x65\x51\xc6\xe1\xe1\xfe\xda\x2b\xd2\x87\xab\x27\xf0\x7c\x62\xc4\xfe\x12\x2b\x5e\x57\xca\x48\xe4\xf1\xc1\x42\x6e\xa0\x1c\x76\xd4\x30\x9f\xde\xfe\x71\x9a\xd8\xfb\x5b\x4d\xc4\x60\x7a\xf4\x5d\xa6\x19\x98\x7a\x5e\x54\x46\x40\x17\x7d\x40\x81\xea\xf8\x96\xa2\x76\x6d\x4e\xd2\xb9\xb2\xdc\xa5\xb2\x26\xca\xc4\xee\x89\xca\x79\x8e\x85\xad\xde\x94\x38\x19\x8b\xef\x31\x50\x4b\x39\x25\x5f\x7f\x53\x15\xbf\xf3\x02\x1b\x45\x15\xe0\x77\xef\x90\xac\x07\x87\x7a\x7e\xc9\x47\x76\xd4\x5e\xc2\x8a\xb3\xdc\x57\xf8\xc0\x3a\xc5\xab\x84\xdb\x3a\xf4\xe5\x16\x2d\xd0\xfb\x08\x4f\xe1\x3f\x85\xc3\x34\xc9\x50\xee\xcd\x44\xfc\x16\x34\xb2\xe7\xbb\xda\xe0\x20\x6e\x2f\x6e\xd9\x79\xae\xa2\xa1\x42\xdd\x1a\xb7\x3d\x97\x37\x6c\xff\x1d\x90\x40\xe6\xb2\xc0\x50\xff\xbc\xc3\x3d\x5f\x91\x50\xc1\x26\xf1\xac\x6c\xe6\xd8\x28\xb3\x82\xcf\xb8\x8f\x01\xaf\x60\xa7\x9e\x01\x58\x80\xb9\x1c\x21\xa1\x0c\x3f\x1e\x1c\x25\x06\x6b\xd8\x64\x54\xf9\x65\xbe\x09\x73\xcc\x25\xb8\x99\x51\xbc\x7c\xfa\x81\xf4\x70\x22\xe5\xda\x15\x4f\xe6\xba\xb5\x05\x9a\x67\x50\x26\x1c\x6b\xf3\x6b\x4f\x6b\x25\x27\xa7\xbe\xc6\x03\xc5\x2f\xee\x83\x38\x6c\x12\xcf\xa0\x01\x03\xd9\xd4\xdc\x7c\x45\x4c\xbb\x81\x3c\x9f\xd7\x14\xc5\x5b\x4f\x4a\x09\x56\x3f\x2b\x93\xf0\x49\x4d\xec\xd3\x27\xf5\x18\x9c\x65\x3e\xaa\xae\x4d\x90\x1f\x75\x79\xa5\x72\x68\x5c\xa4\xc8\x83\xd9\x88\x38\x29\xab\xab\x7d\xdb\xb5\xa5\x4f\xb7\x18\x7f\x2c\x5e\xa6\xcd\x6b\xaa\xd5\x28\x23\xfb\x20\xf3\x29\xa6\x80\x0f\xac\x81\x2f\x96\x88\xb6\x46\x55\xd0\x81\x06\xbc\x80\xeb\x48\xc3\x55\x9b\xc0\xd7\x77\xc2\xb8\x02\x57\xab\xc4\x88\xfa\x3c\xa8\xf2\x87\xaf\x14\xe5\x33\x0d\x98\xa0\x02\x6c\xdf\x22\xef\x96\x4d\x2a\x0c\x47\x69\x8a\xdb\x68\x8d\x7f\x2f\xd3\x83\xf9\x8c\xda\xf1\x23\xf8\x4f\x65\x7b\x67\x50\xa7\x8e\xc5\xea\xe8\xc9\x11\xfa\xbc\x85\x0f\x90\x7d\x12\xa3\x67\x8a\x1f\x79\x1b\xea\xfd\x2a\x0d\x98\xc0\x16\xf7\xe5\x3f\x0c\x0e\xf2\x9c\xee\xa1\x1f\x99\x7b\x56\x69\xc3\xb2\xc0\xf5\x78\x96\xd5\xe4\xbf\x5f\xb8\x4d\xbf\x71\x30\x70\x14\xd8\x87\xe2\x47\x66\x9c\xad\x14\xe0\x26\x7f\x24\xd6\x41\x11\x66\x2d\x6c\x58\xd8\xd5\xf0\x2e\xcb\x97\xf6\x15\x4e\xdd\xa1\x0a\xa4\x04\x06\xf2\x82\x78\x81\x3f\x7f\x8a\xfc\x81\x0c\x83\xc1\xc4\xf8\x76\x25\x14\x20\x8f\x5b\x0a\xde\xb3\x45\xa3\x4b\xc7\xfc\x72\xd5\xed\xb0\xf0\x91\x8d\x67\x2b\xe1\x6a\x7d\x94\x7d\xc7\xbe\x09\x2f\xcc\x8b\xa2\x3b\x9f\x36\xe7\xdb\x56\xcb\x08\xd5\x43\x0d\x6c\xb7\x78\xac\x43\xb3\x65\xb1\x9f\x2c\x53\xe1\xfa\x5e\x25\x01\x9d\x76\x3d\xbb\x37\xd8\x3c\x48\xd9\xb0\x61\xe1\x09\x96\x63\xfb\xd3\x59\xde\x26\x06\x76\x3d\x65\x07\xf0\x2f\x0f\xca\x40\xe4\x54\xb3\x5c\xa4\xbe\xba\xc6\xa8\xa1\x36\x72\xcd\x94\x51\xc3\xc6\x57\x3e\x28\x42\x2a\x87\x22\x16\x9e\x78\xbb\x2d\x45\x2e\xe3\x5d\xc9\xbf\x1e\x87\xc2\xff\x5a\x90\xeb\xe8\x2b\x0e\x3e\x24\xdb\x7a\xaf\x89\x71\x5d\x35\x72\xea\x2b\xce\x9e\x90\xce\x7e\x93\x67\x4c\x17\xe4\xdb\x85\xd7\x41\x36\xab\x62\x4f\xb8\xf7\xde\x70\x2a\x7d\x23\x1d\x10\x35\x0b\xbf\xb9\x48\x81\x4b\x52\x5f\x2e\xd6\xc2\x2f\xdf\x9a\x5e\xfb\x4c\x9e\xe9\x5b\xfd\x21\x3b\xaf\x1b\x97\x94\x89\xd8\x94\x7b\xa3\xf0\xbf\x36\x6a\x31\xc5\xc2\xa0\xa5\x13\x0e\x79\x35\xbd\x12\x0d\x58\x05\xf5\xab\xfb\x57\x98\xb2\x4f\x07\x54\x50\xd6\x12\x52\xd3\xab\x3b\x47\x49\x62\x5f\xd6\x31\x6d\xf6\x33\xe9\x5a\x29\xe8\x74\x3b\xfb\x99\x3a\xe7\xde\x85\x63\x27\x34\xbd\xb9\xfc\xdc\x9d\x2a\x58\x80\x51\x2a\xc6\xe8\xf4\x91\x98\x3d\x82\x11\x08\xcf\xf6\xe5\x87\xad\x11\xe3\x19\xce\x96\x0f\xcf\x3b\x21\x98\x35\x0c\x7b\x3e\xa9\x09\xec\x5d\xe1\xa1\x71\xb2\x3f\xab\x32\x8c\xb9\x7b\x1c\xaf\x7c\x06\xb6\x2b\x91\x45\x46\xaa\xcd\x32\xe6\x56\xb8\xad\x14\xd4\xd8\x3f\xae\xa6\x35\xfa\xeb\x88\xd9\x84\x33\xc6\x00\x42\x94\x2e\x9a\xde\x3f\x5b\x0f\x4f\x89\x67\x9c\xc8\x20\x7f\x9f\xa5\x0c\xf0\xa8\x4d\xfc\x4a\x00\xc8\xe9\x93\x3b\xda\xd5\xc6\xca\x07\x3b\xe0\xfc\x07\x46\x28\x22\xa1\x98\xf9\xc4\x26\xeb\x85\xfc\xcf\xc8\x29\xe7\x6a\xd5\x92\x49\x0c\x82\x58\x4b\xf0\xf5\x7f\x78\x52\x39\xca\xb8\x8e\x18\xf2\xb9\x55\x3c\x44\x97\xea\xad\x49\xe1\xd4\x3d\x63\x66\xf4\xf3\x8e\xef\x97\xf9\x85\xfb\x98\xa6\x96\xea\x2f\x5f\xa7\xb4\x26\xca\x99\xfb\xf2\xed\x1a\x2f\xba\xea\x63\xd6\x79\x89\x95\xac\x7e\xff\xb8\x1d\xde\x21\xad\x13\x37\x36\x89\xba\xb0\x0d\xae\xdd\x02\xae\xb3\x52\xee\x2b\xd4\xe6\x68\x4b\x5f\xee\x6a\xcc\x23\x6b\xf8\x85\x9d\x9a\x47\x1d\x71\xa8\xb0\x72\xe5\x2d\xc9\xf7\x4f\xb4\x27\x79\x42\xe0\xdc\x38\xca\xad\x1b\x66\xc7\x8b\x57\x66\x84\x2a\x8a\xef\x7f\x3c\xc1\x24\xad\x0d\x08\x8e\x71\x4e\x17\x8e\x4a\x54\xbe\xa1\x70\x8b\xbf\x7e\x78\x74\xa9\xba\x35\x8c\x19\xba\x83\x7b\x54\x46\xa0\xe7\x23\x97\x8f\x8d\xc2\xef\x6f\x53\x94\xc0\x28\xe5\x43\x8b\xfc\x5f\x5e\x12\xfc\xf0\x80\x03\x9e\xee\x7a\x5e\x5f\x58\xd8\xb6\xc0\x67\x6e\x7f\xed\x2c\x25\xff\xf3\x7c\x78\xee\x3b\x32\x7a\x5b\x62\xe0\x36\xf0\x84\xd0\xff\x8b\xc7\x32\xfc\x71\xaf\x7e\x5b\x99\x56\x22\x21\x99\x9f\xfb\x82\xe6\x8d\xd5\x44\x80\x78\x07\x62\xe8\x7f\xfa\xff\x94\xc0\x08\x58\x5a\x5a\xd4\x45\x34\xb8\x72\x74\x2c\xf4\x5f\xc8\xef\x83\x1a\x8e\x83\xda\xab\x51\xe7\x63\x89\x1d\xc6\x91\x6a\x72\x6c\xaa\x9d\x15\xa5\xb8\x5e\x14\x3b\x98\x30\xa6\x4c\xe5\x0b\xbf\x18\x0c\x8d\x4f\x85\x50\x1f\x1b\x96\x4b\x6d\x5a\x83\x19\xe2\xc1\x24\xf6\x54\xe9\xba\x8c\xd2\xf9\x09\xf8\x00\x57\xba\xc8\xa7\x2a\x00\xeb\xac\xa1\x1f\x8c\xeb\xa8\xa8\x2e\xfe\xff\xcc\x74\x74\xe3\xc8\x71\x31\x34\x78\xae\x98\x60\x9c\x1d\xac\x32\x9e\xff\x4f\xdb\x5a\x4b\xb8\x1d\x65\x09\xa7\xe6\xfb\x73\x46\x2a\x99\x93\xb8\x69\x36\xd1\x05\x6d\x9a\xbe\xb5\xd5\x12\x13\xde\x47\x85\xd9\x56\x83\x18\x02\x08\x7d\xec\x88\x22\xcd\x65\x30\x1c\x75\xe1\xbc\xc2\xb8\xbd\x43\x11\x8f\x0c\x4c\x53\xe8\xa8\xbd\xb3\x33\xa3\x15\x6e\x23\x26\x2c\x71\x0b\x37\x69\x90\xe7\x2a\xb2\xbd\xe4\x6e\x1e\x3f\x3d\x46\x8f\x57\x40\xd6\x4a\xcc\x43\x73\x7f\xdf\x21\xd3\xe6\xe4\x99\x33\xa7\x46\x37\xf2\x49\xe5\x34\x06\x9e\x57\xe5\x7b\xda\x43\x5a\x1c\xa8\xd7\x19\xef\xfe\x45\x4a\xcf\x7d\xfa\x6d\x5d\xad\xcc\xe5\x5e\xb9\x42\xfe\x6e\xcf\x70\x45\x8f\x0c\x37\x94\x33\x91\xff\x84\xe6\x38\x50\x67\xb4\xc6\x90\x03\xab\xc4\x07\xba\x34\x97\x0a\x5a\xe1\xbe\x17\x29\x58\xc7\xa6\x17\x65\x74\x9f\xdc\x5d\x72\xa8\xcb\xc3\x4e\x7e\x8f\xe2\x39\xc6\x85\xe8\x7d\x3e\x7a\x2a\x5e\xdc\xa5\xad\xfc\x31\xf3\x11\x71\x6d\x11\x5a\x8b\x5f\x10\x21\x07\x3c\x71\x85\x9b\x7b\x5f\xa1\x4d\x5b\xee\x34\x08\xb5\x79\xf0\xe7\xed\x55\xf8\xf8\x9c\x74\x41\xd0\x43\x2b\xb0\x20\xb9\xbe\x1d\x4e\xef\x72\x9f\x91\xba\xca\xb4\x7a\x63\x7d\x3a\x48\xd8\xa8\x42\x85\x79\xcc\xfc\xc1\xe9\xb7\x8e\x6c\x1b\xd7\x04\x0b\x2b\x6c\x7b\x31\xf6\x5b\x74\x3d\x9f\xf8\x41\x3c\xfc\xbc\xec\x64\xe2\xed\x55\xb3\xa9\xc3\x2d\xc5\x79\x70\xfa\x0f\x8d\xfd\x13\x95\x77\x3c\x40\x00\x2f\xaa\xb0\x05\x0e\xa9\x15\x25\x4c\x7e\x16\x97\xce\xd6\x65\x3d\xb8\x30\xa1\x88\x07\xe5\x3d\x9a\x75\x6b\xc0\xa2\x98\x20\xe6\x1d\x7f\x32\xe3\xa7\x57\xc3\xae\xf4\x7c\xf9\xce\x7b\x13\xf4\xda\xbe\x1e\x80\xe2\x42\x76\x0e\xba\x7a\xb7\xde\x3f\x04\xae\xcf\x5a\xb1\x7f\xed\xdf\x2c\xa5\x18\x0f\x4c\x6e\x07\xd3\x78\x8b\x1f\xf6\xd2\x4a\x6a\xf7\x7a\x4d\x54\xc3\x59\xe1\xb8\x89\x8a\x01\x12\x65\xc2\xd4\xed\x33\x2f\x96\xd2\x15\x11\xb5\xa9\xeb\x7b\xb8\x11\x33\x6f\xf4\xf2\x6c\xcd\x61\x89\x8c\x33\x39\xed\x31\xf3\x8b\xd6\xae\xd3\x85\xc8\x9c\x7a\xac\x96\x3d\x5f\x73\x49\xb4\x71\x8b\x11\x7f\x3d\x9f\x21\x27\xcd\xc8\x83\xf0\x22\x97\x51\x94\xe2\x89\xe7\x7e\x35\x49\x80\xe4\x02\xe1\x4b\x9f\x1b\xf7\x4e\xfa\x8e\x57\x70\x83\xeb\x1f\x29\x93\xd4\x5f\x68\xe7\xd6\xc4\x3e\x66\x0e\x71\xc5\xa0\xe6\xef\x2b\x95\x69\x2a\xad\x89\x95\x73\xee\x89\x8d\xe9\x1b\xcf\xc7\xec\x7c\x82\x01\x3c\x00\xaa\x22\x37\x1a\xd1\x0d\xea\xe5\x94\xe0\x03\x1d\x67\x29\x8f\x27\xfa\x97\x3f\xba\x57\xcc\xa7\x1c\x64\x73\x32\xf8\xe3\xdb\x92\x50\xec\xb3\x96\xda\xc5\xec\x8c\x89\x8e\xcc\x0f\xdc\xa8\x89\x79\x44\xbf\x07\x35\xec\x1a\x31\x5e\x6c\xb0\xe6\x0f\xe8\xd5\x69\x2f\xf6\x1c\x9c\x68\x24\xfe\xe7\x9b\x9a\xde\x51\xd4\x55\x43\x44\x7a\x7d\x9c\xee\xff\xc7\xa9\xa5\xb1\xa4\xd3\x47\x6f\x15\x92\x25\xc4\x73\x31\xa3\x0a\x65\x28\x3f\xe0\x29\x7d\x19\xca\x37\x7a\x70\x32\x67\xaf\x4f\x0f\xdb\x5d\xca\x4c\xcf\x67\xd4\xc9\xaa\x75\x15\x7a\x57\xa6\x3f\x7e\x2f\x31\x5d\x54\xaf\xc7\xf7\x2c\x5c\xf5\x9e\x1c\x7e\x21\xa7\x54\x0e\xbf\xee\xc3\x4a\xee\xba\x32\xc7\x47\x5d\xb4\x2c\x9d\x75\x08\x89\xcb\xd0\x9d\xf9\x0f\x26\xb9\x2e\x7a\x0e\xc7\xde\xd1\x1a\x32\xea\xd6\x4a\xd1\x21\x88\x71\xc9\xcb\x1f\x6d\xcf\x4c\x78\xca\xe1\xd7\x43\x1d\x51\xca\x6f\x61\xf4\x80\x81\xcb\x72\xd6\xe3\x09\xdc\xd5\xe1\xda\x9c\x7c\x00\xb3\x6d\xf6\xb0\x54\x77\xcf\x57\xb6\x51\xe1\x74\x42\x11\x6c\xf3\x03\xb3\x07\xa4\x7d\x73\x97\x1e\x95\x05\xd1\xe4\xc9\xa5\xe8\xf3\xa0\x8a\x56\x69\x63\x47\xeb\xd7\x57\x0d\x94\x48\x6a\x2e\xf7\x92\x5f\xfe\xd6\x58\x75\xfc\xc6\x03\x63\xa6\xff\xd9\x13\xea\xac\x39\xe4\x0a\xae\x77\xae\x79\x0a\x2a\xae\x2b\xd7\xfb\xd8\x88\xd5\x68\x0a\xdf\x93\xda\xf9\xd1\x77\x2c\x87\x83\xb5\x26\x11\xd9\x48\x6c\x56\xfd\xc3\x9a\x6c\x11\x1f\xac\xca\xf1\x7a\xee\x99\xa5\xc2\x03\x9d\x6f\xcd\xc2\x72\x45\xd7\xd1\xc3\x8e\x87\xed\x46\x62\xd2\x94\x3f\xff\x22\x19\xb1\x70\x03\x73\x05\x92\xdc\xc2\x2d\x1a\x34\x22\xb0\xab\x29\x0a\x6f\x5f\xee\xf0\x1b\x9a\x0a\x04\x8d\xbd\xa2\x8a\x3d\x2f\xc8\x97\xa0\x02\x2d\xef\xd0\xcc\x5b\xb1\x4d\xbc\x34\x90\xa5\xb8\xe1\x94\xaa\xec\x80\x05\xc6\xe4\x9e\x27\x95\x82\xa6\x17\x27\xa0\x95\xfc\x45\xc7\xd3\x71\x87\x56\xa2\x2c\x1b\x43\xb8\xc2\x8b\xdf\xcd\x60\xfb\x6b\xb0\xa3\x0e\xc7\x74\xcb\x72\x61\x72\x17\x97\xb6\xe0\x86\x49\xd1\x4f\x1d\x39\x28\x7d\xc3\x78\x92\x06\xd7\x71\x3d\x52\x4f\x1d\x25\xf9\xbe\x29\xb4\xf7\xa6\xb7\x94\x6e\xcc\xc6\x98\xcf\x2d\xc2\xf5\x63\xc7\x2a\x40\x30\xe2\x0a\xfe\x8f\x86\x94\xbc\x0b\x42\xf3\x3c\x62\x06\x7c\xa0\x19\x87\x85\x1b\x36\x43\x96\x5f\x86\xdd\x66\x4a\x71\xa2\xf8\x99\x63\x72\xd1\xda\x83\x8c\x5e\xa2\x54\x3f\xb9\xad\xed\xe3\xb5\xd2\xd1\xb6\x4b\x7e\xa3\xbf\x85\xd2\x2f\x1e\x06\xc2\xfb\x5c\xe4\xf6\xe2\x6c\x83\x5e\x98\x50\x89\x27\x74\xc8\x13\x00\xe5\x4b\xf2\x63\x33\x62\x87\xf0\x9b\x95\x5a\x5d\xb1\xf8\x06\x5a\x7e\xa9\x1c\x06\x6f\xa5\xf7\xd9\x53\xba\xe1\x88\x7f\xea\x5e\xcd\x01\xc1\x42\x2e\x71\x10\xcf\x09\xf2\x59\xb4\xb3\x78\x48\xcf\x38\x91\xba\x54\x0e\xff\x54\xd1\xcc\x0b\x90\x87\x45\x27\xfb\x15\xa6\x28\xe1\x04\x9c\x62\x1b\x7e\x77\x9c\xec\x6e\x2d\xe4\x10\xdb\x4f\xe1\x1f\x6a\xcf\xa4\xef\xa0\x67\x09\x99\xeb\xe2\xa6\x77\x75\x8b\x68\x0e\x38\xe4\xbe\x7b\xbc\xb2\x7a\x4a\x1a\x1d\x04\xa6\x54\xb5\x0c\x3f\xf7\xd4\x70\xa5\xab\x63\xd8\xf3\x4b\x35\x86\x81\x9a\xf6\xc3\x43\x9a\xcd\x3b\x77\xc6\x24\xb5\x78\xd9\xd1\x97\xeb\x3c\xa6\x79\xe8\x45\xfd\x5e\x74\x94\x1f\xe8\x50\x0c\x93\xeb\x75\x86\x2d\xec\x7a\xa2\x9b\x2b\xb4\x1f\x90\x2c\x9f\xba\x05\x72\xa7\x9a\xc1\xbc\x16\xb9\x41\x39\x9b\x83\x37\x01\x26\xf1\xd0\x15\x6d\xea\x60\x81\x45\x19\xfd\x47\xb7\x2b\x02\x4f\x36\x32\x89\xe2\x86\x9b\xff\xd4\x61\x45\x41\x83\x31\xd2\x00\xcf\xc8\x7c\xed\x39\x55\x4e\xd9\x8e\x22\xdd\xca\x53\x9a\x10\x9f\x29\xc0\xe6\x85\x8e\xfd\xc9\xcd\x72\x7b\xd4\xe9\xfd\xa5\xbb\x33\x0a\x46\xbc\x98\x07\x95\xb5\x2f\xcf\x1b\xa9\xb4\x01\xb0\xbf\x91\x21\xfd\x67\x57\x68\xcb\x2f\x69\x6c\x23\x86\xdd\xbb\xc6\x68\xf2\xa7\x28\xea\xaa\x12\x02\xda\xe1\x55\xf1\xb1\xc3\x0c\xd5\x81\x51\xec\x0c\x55\x1c\xc1\xb9\x31\xa9\x3e\x2d\xb8\x43\x00\x92\x69\x1d\x27\xaa\xdc\x77\x2f\xd2\x72\x3c\x96\x02\x96\x85\x49\x5b\x54\x29\x7a\x79\x91\x7e\xb3\x49\xdb\x30\x53\xcf\xa0\x4d\x45\xe7\xbf\xf0\xa7\x17\x61\x68\x51\x47\x3e\xc1\xae\x2f\x7e\x2c\x0c\xc3\xce\xd5\xe6\x20\x34\xc6\xf6\x8b\x39\xc8\xf3\xbe\x7c\xd1\x60\x7b\x57\x0e\x3f\xba\x79\x98\xa2\xf8\xe6\x79\xd8\xad\x89\x66\x12\x9d\x31\x44\x29\x75\x49\x3c\xcf\xcd\x1b\xa7\x24\xb6\xdf\x68\x95\xca\xe1\x0d\xa7\xd3\xf3\xf1\xa8\x05\xe1\xfd\x04\x17\xaa\x90\x26\x67\xcf\xde\xa3\xaa\x75\x83\xf9\x63\x5f\xfe\x6f\x27\xd3\x59\x43\x80\xd6\xf8\xa4\x44\xe4\xb0\xdc\xa1\x17\xf5\x9d\x0b\x69\x24\x35\x4e\xdf\xbb\x7a\x8e\xe8\x11\xd3\x0e\x98\xbb\x3e\xbb\x43\x61\xfe\xc5\x6a\x03\xd1\x4f\x7d\xca\x3e\x5f\x2d\x32\x9c\x20\x73\x79\xc2\x27\x0e\xf7\x6b\x24\x98\xf4\xf4\xa7\x6e\x93\x37\x9e\x0f\x3c\x40\x2e\x95\x47\x89\xf0\xa5\xe4\x80\x1b\x54\xdd\xd0\xde\xec\xc2\x69\x41\x26\x65\x51\x50\x81\xd6\xdd\xd7\x9a\x5f\xc4\x48\x4f\x80\x5c\x04\x0d\xe0\xe5\xba\x90\x83\x57\xc7\x06\x11\x08\x6c\xfe\xf2\x47\x4e\x80\x93\xbb\xb0\x65\x26\x5a\x92\x3f\xcc\xe8\x84\x06\x06\xd0\x42\xe3\x0b\xb3\xf6\x41\x2d\x2c\x79\x0c\x61\x5b\x20\x54\xaf\x5e\x3a\x3f\x3c\xa5\xb5\x71\x16\x6d\x46\xed\x81\x58\xe7\x9b\xdb\x85\x55\x83\x89\xeb\xbc\x15\x2a\x8b\xd5\xdb\x02\x62\x3b\x99\xca\xa9\x12\xaa\x92\xe2\xd4\x88\x85\xea\x73\x67\x0f\x92\x5a\x79\x94\x2f\xa4\x7f\xbf\xb1\x43\x45\x08\x79\x5e\xc0\x10\x37\x3e\xee\x2b\x0c\x18\x3f\x4a\x01\xd6\x30\x1f\xa9\x2a\x89\xe1\x3f\x4e\xa5\xaf\x1d\x6d\xba\x09\x7f\x3e\xbf\x4f\x93\xa1\xf4\x2c\xda\x14\xd4\xa6\xdc\xf3\xaf\x42\xea\x5b\x82\x9b\xe2\xab\x17\x47\x6b\x18\x1f\x52\xb3\xfc\x12\x72\x7b\x6d\xc1\x5c\xcc\x7f\x50\x33\x5f\x88\x9a\x34\xca\x10\x03\x3e\x4a\xf4\x61\xff\x74\xfb\xb9\x32\x31\x61\xcb\x5d\x1b\x10\x4f\x31\x5c\xc8\x5f\x38\x65\x64\x4c\x7b\x59\x36\x37\x03\x2b\x67\x02\xf7\x5a\x09\x2a\xa8\x17\x31\xe5\xff\x85\x5b\xce\x12\xa5\x02\xe2\xb8\xc2\x72\x58\xda\x2a\x87\xb3\x5e\x2f\xe1\x8b\x14\xf9\xef\xd7\xee\x55\xa4\x6c\x88\xdb\xa4\x54\x05\x27\xcc\x1b\x91\xce\x30\x74\x5d\x94\x90\x61\x24\x50\xac\x80\x41\x6e\x69\x45\x3c\x6d\x23\xfd\x10\x01\xd7\xde\x95\xbc\x41\x93\xab\x31\xbf\x78\x08\x84\x2a\x16\x1b\x57\xa1\x66\x26\x27\x5d\x77\x68\x9c\xfc\xb0\xc4\x0f\x12\x5e\x6a\xea\xfb\x7f\xe6\xf1\xb3\xd5\x85\x0c\x0f\xd0\xf3\x97\x88\x01\x05\xf2\x2c\xce\x5e\xaa\x03\x55\x29\xff\x2f\x23\xb4\xf1\x92\xbd\xde\xc2\xc4\x11\x2e\x80\xe5\xbe\xc2\x57\x67\xe8\xd4\x63\x53\xd5\x9b\x7e\xff\x9b\x8a\x1a\x88\x1d\xe5\x29\x3e\xc1\xfd\xf6\x7b\x7a\x36\x22\x5e\x6c\x6e\x1a\xbe\xba\x54\x0b\x3d\x81\xef\x50\x53\x46\xbc\x0b\x57\x6a\xb0\x02\x9b\x37\xbf\xbc\x67\xee\xbc\x57\x06\x63\x2e\x3f\x5f\x2a\x87\x78\xe2\x99\xc9\x17\xee\x9e\x59\x2a\x87\x8b\xb6\x49\x33\x5b\x26\x4b\xc5\xf0\x4b\x13\xa0\xcf\x58\xca\x3d\x40\x85\xe5\x62\xee\xcc\x36\x18\x9b\x78\x41\x1d\x33\x6e\x9f\xce\x33\x6d\x6b\x83\x76\x4a\x69\x05\xd5\xa8\xc0\xa7\xf0\x38\xb1\xe7\x36\xcd\xf6\x03\xb9\x9c\xad\x0f\xf5\xc1\xc3\x2b\x2f\x54\xba\x22\xae\xb5\x41\xdd\xec\x19\x28\xb8\x1d\x5a\x94\x26\x35\x97\x54\xe3\x31\xe6\xef\x3a\xe0\xc4\x2e\x27\x7e\x3c\x4d\x6f\xd3\x3c\x3f\x90\xdb\xa2\xae\x90\x52\x1b\x54\x1d\xa3\xb5\x1f\x4e\xec\xf9\x11\x13\xd1\x9f\x78\x2d\x5d\x0f\x22\x62\x8a\x39\x5a\xf3\xf4\xb9\xca\x27\xae\x12\x6c\x9b\xea\x6d\x28\x1c\x79\x29\x63\xf8\x83\x0d\x01\x8f\x29\xec\x6a\x87\xd1\x98\x8b\x0d\xec\x79\xc4\x17\xb3\xfc\xc2\x57\xe7\x26\x9d\x6a\x95\xa1\x38\xa7\xde\xbc\x47\x63\x18\x05\xbe\x65\x63\x8e\xf6\xe4\x38\xc1\x7b\x13\x3f\x23\xda\x10\x79\x3a\x3f\x48\x9b\xec\x7b\x7e\x60\x0a\x39\x9e\xbd\xe3\x34\x5a\x88\x15\xa0\x2a\xf2\xa1\x33\x91\xbb\x96\xf6\x97\x93\x59\x77\x25\xc8\x94\xf1\xf9\x5f\xde\xa1\x6a\xa8\x8a\xfa\xb9\xaf\x30\x7c\x8a\x64\x89\xa2\x75\xa5\x72\xe8\xce\x95\x19\x79\x6a\x97\xd0\xff\xcb\x4f\x7f\x4c\x93\x23\x0f\xb8\x22\x75\x03\xa2\x5e\xb8\x64\xff\x79\xaa\x3c\x51\xa9\x89\x63\x8d\xd5\x38\x9c\x6c\x7d\xe4\x5c\x25\xe3\x7a\x6b\x03\x64\x27\xee\x92\x1c\x36\xda\xae\x60\xe7\x5d\x05\xa2\x3a\xe9\x1d\xc5\xfb\x8b\xd4\x2c\xb8\x82\x5f\x64\x52\x03\xaf\x73\x3a\xa7\xa1\x9e\x3a\x4b\xd4\x5b\xc9\x56\xe3\x7b\x77\xc4\xc0\x0b\x54\x73\x69\xec\x9f\x79\xd7\x3d\xd0\x2d\x5f\x45\xeb\x9c\xeb\xcc\x4e\x48\xdf\x7a\x53\xdd\x2a\x7c\x5b\x73\xe9\xb6\x68\xe0\x29\x82\xa5\x4b\x5f\xb9\xd0\xed\x0f\x3b\xab\x3f\xf8\xaf\x08\x2a\x7b\x14\x95\x10\x13\xdb\x9e\xbe\xdc\xf7\x07\x09\xaf\x0f\x9b\x18\xbd\xbc\x38\xc8\xcd\x48\x2e\x76\x0f\x51\x88\x7d\xb9\xc5\xed\xf2\x95\x80\xa2\x6f\xa9\x1c\xde\x26\x20\xca\x81\x5b\xb7\x83\x9a\x88\x4c\xe8\xc4\x20\x51\xc9\x45\xe1\x64\xcc\xe1\x76\x25\x61\x72\x41\x89\x52\x39\xfc\xf0\x52\x75\xff\xe4\x63\x57\xe0\x93\xc9\xa3\x12\x51\x64\xb4\x2a\x98\x95\xea\x08\x9b\xb4\x6e\x11\x21\xd8\x3c\xb6\xa8\xcd\xfd\xad\x28\xfa\xb7\xe4\x24\x22\x5c\x7e\x52\x16\x8e\xc8\xf3\x28\xf3\x63\xfe\x34\x69\xd3\xf9\x3f\xc8\x89\x62\x26\x97\x12\x8d\x1f\xf8\x6f\x7c\xa5\x7f\xc6\xa2\x67\xec\xcb\x8d\xbc\x73\xa8\x64\x3f\x2b\xda\x9a\xc5\x5b\x0e\xc3\xfb\xe5\x2a\x31\xd1\xdb\xe1\xb5\xc0\xa5\xaf\x68\x28\x26\x46\xd7\x06\x94\x08\xd9\xad\x60\xaf\x78\xec\xa8\x41\x7c\x0e\xb9\xc9\x3d\x26\x61\x0a\xb1\x83\x10\x20\xd1\x98\xc2\xb5\x45\x0e\xe5\xe1\xf8\xc3\xab\x63\x57\x5e\x43\x60\x58\xc2\x21\x07\x32\x05\x61\xbc\xbf\xe5\x93\x8c\x43\x6b\x32\xfe\x11\x4e\x2c\xc8\xfb\xdc\x45\xe9\x86\xb8\x7b\x1a\x6f\xef\x8c\xa1\x9a\x44\x64\x2c\xc8\x0b\xc2\x40\x52\x40\xe8\xf3\x9a\x8b\xb1\x18\x64\x72\x5b\xc1\xde\xfb\xce\x53\x94\x0c\x5a\x98\x65\x00\x11\xc3\x66\xf5\xa3\xba\x47\x0c\x35\xa2\x16\xfe\x30\x71\x88\x52\xce\x72\xbd\x7c\x5e\x9c\x5a\xaf\x5e\xaa\x05\x2c\x6a\x93\xe8\x3c\xf4\x87\x00\x2e\x9e\x69\xa7\xb7\x18\x35\x24\x94\x17\x7f\x5d\xcd\x42\x7a\x88\x1b\x8b\xf4\xe5\x4e\x9d\xca\x58\xdd\xc5\xda\x66\x7f\xed\x96\xf3\xbd\xa9\x53\xba\x4a\xe5\xf0\xf6\x4d\xaa\x61\x66\x50\x07\x3d\xb8\xdb\xe6\x69\x39\x9e\x32\xdb\x4c\x0c\xa8\x0a\x7f\xd0\xf2\x1c\xe8\x6c\xc6\xf9\xc4\x3a\x9c\x7e\x42\x81\x6d\x33\x62\x58\xaa\x36\x54\x9e\x9c\xa5\xcd\x20\x38\x9d\x8b\xff\xf7\x59\xeb\xb5\x4a\x21\x60\x5e\x90\xf0\x34\x56\xee\xed\x50\x0a\x41\x64\x97\x30\xb7\x94\x29\x95\xc3\x6b\xc7\x77\xc8\xad\x62\x1a\x4c\xb2\xea\xa8\xbc\x63\xd5\xa8\xa9\xf2\x03\x13\x3c\xd2\x76\x8c\xd6\x35\x8f\x9c\xa8\xe8\xec\x2c\x95\xc3\xd7\x47\x8f\xd4\x9f\xb2\x19\x18\xbe\x40\x3f\x7d\xf1\x22\xdd\x51\x78\x1d\x18\x40\xe6\x4f\xdd\x9e\x84\xd9\xcb\x05\x1d\xfa\x2e\xdd\xff\x98\xf2\x3c\x29\xb0\x80\xdf\x69\x4f\xc7\x08\x8a\x7a\x3d\xde\x5c\x48\xd6\xc6\xb3\x47\xf5\xc7\xc5\x44\xbd\x9d\x1f\xb7\x4f\xf8\x1a\x20\x83\xd8\x70\x3d\xf3\x93\xde\xf8\xa0\xf8\xae\x36\x3f\x8f\xff\xad\xcd\xc9\x3d\x54\xc5\x3e\x8c\x2d\xc2\xb9\xdd\x0a\x96\x77\x9d\x81\x6d\x5b\x60\x79\xf7\x1f\xd5\x99\x85\x76\xd4\x6b\xc6\xac\xcf\xcf\xaf\x91\x91\x37\x50\x96\xb8\xf9\xdf\xef\x39\x53\x62\x66\x78\x13\x32\xbd\x72\xb1\xde\x00\xd4\xbc\x7e\x25\x33\x0f\xb5\xf7\xbb\x6c\x12\x6d\x62\xee\xcd\x69\x0a\xf5\xc2\x30\xb0\x2d\xf7\x6a\xff\xef\xe1\x0e\xe5\x6b\xa4\xec\xa7\x1f\xd3\x9d\x74\xad\x80\xaf\x43\xd3\x53\xec\x0f\xbf\xac\xa8\x05\xda\x81\x53\x11\x5b\x9d\xd5\x8f\x43\xa1\x3c\xd7\x0e\x70\xaa\x76\x78\x7d\x8c\xbe\xef\x75\x7d\xe4\x01\xf0\xb3\xd0\xb3\x4f\x41\x16\x32\xea\x00\x65\x3c\xdc\xf3\xd4\xb9\x5c\x14\xa0\xe4\x06\x4e\x25\x13\x5c\xc2\xd3\x26\xe0\xc6\x91\x5d\xfa\x18\xf2\xb3\x7e\x4b\xc5\x8f\xe4\x15\x3a\x27\xaf\xa0\x05\xe0\xfe\x96\xc7\x14\x8a\x7f\xd4\x5f\x81\xe5\xcf\xb5\x15\xe8\x2b\xc1\x37\xbb\x1c\xf6\x8a\x48\x8c\xd7\x06\x04\x0a\xfe\xf0\x17\xf7\xc9\x7e\x67\xbd\x45\x7c\x97\x28\xa3\xd4\xe2\x39\x23\x34\xc5\x99\xc9\xb0\xac\x80\x6d\xe5\x97\x2c\xa9\x49\x6d\x64\x42\x65\xe1\x97\x37\x69\x28\x29\xe4\xf5\x8a\x18\xf5\x49\x0d\x40\xd5\xd9\xd9\x09\x53\xf1\xf0\xc6\xf7\xd2\xd1\x83\x0f\x95\xe3\x59\x1b\x2c\x5d\x4f\x9c\xa5\xb5\xe3\x98\xf4\x88\x06\x44\xec\xd9\xb6\x8c\x48\xa7\x88\x69\x42\xee\xfa\xd2\xfb\x64\xb4\xab\x47\xb1\x37\xca\x45\x2b\xf3\x2a\x5e\x36\x3a\x1b\x66\x74\xff\xbf\xf5\x48\x02\x57\x9f\x31\x3d\xd3\xa8\xf9\xc7\xe4\x79\xeb\x6d\xa5\x58\xbd\xab\xb6\xeb\xb9\x2b\x6a\xf8\x20\x38\x8c\xde\xaa\x49\xd2\x38\x75\x9b\xc6\x1e\x9c\x3f\x69\xd7\x17\x61\xdc\xba\x30\xb6\x0e\x7d\xee\x80\xbe\x30\xf1\x19\x15\x4b\xb2\x41\x53\xa4\xad\x30\x41\xa5\x72\x78\x8f\xe2\x72\x17\xff\x1c\x40\xa8\xbc\xff\x0d\x0d\x99\xc1\x50\xd3\x85\x5e\xea\x6f\xef\xea\xae\xbf\x88\xb5\x4a\xb8\x15\xef\xd4\x72\x3f\x3d\x00\x63\x89\xa5\xd4\x0b\x1a\xc8\x6e\x05\xea\xd8\xfd\x3b\xed\x43\xd2\xdd\x2f\x32\xb8\xb6\xf1\xb2\x8b\x54\xd7\x41\x30\x21\x96\xfb\x91\x37\x57\xf4\x3b\xaa\x83\xcb\xc9\xb3\xcd\x1f\x0f\x29\x40\x32\xe4\x1b\x00\x4f\x2b\x1c\x79\x55\xa0\x72\x7c\x86\xdd\x9a\x6f\x01\x95\xea\x12\x4b\x96\xbe\x36\xaa\x63\xe0\xf6\xdf\xf4\x0a\x9c\xfb\x6b\x38\x27\x0e\xba\x87\x0f\xdf\x9f\x0e\x0b\x3d\xc8\xe8\x85\x2c\xb6\x5e\x09\x1e\x9b\x26\xca\x59\xac\xdb\xc9\x35\x9f\x8b\xa3\x3a\x35\x5d\x20\x46\xe2\x5d\xe6\x9f\x43\xb8\x70\x33\xba\x4b\xd3\xb8\xf0\xf1\x9f\x47\xeb\x8b\x3b\xb7\x11\x55\x0b\x89\x08\xe6\x85\x47\xb4\x0c\xc4\x50\x20\x7e\xd8\x0f\x6e\x83\xba\x6b\x31\x62\xbd\xdc\x8f\x35\x37\x7b\x95\x72\x54\x29\xf3\x03\x00\xe1\x15\x67\x2a\x71\x01\xd5\x39\xeb\x82\x5f\xee\x09\x0b\x3b\x14\xc4\x3b\x53\x91\xe4\x23\x35\xd6\xbe\x89\x5d\x2f\xae\x20\xb6\x6b\x47\xa4\x4e\xb0\x81\xc5\x49\x1b\x3f\x2f\x69\x7e\x26\x4f\xbe\x3c\xfa\xd7\x9b\xaf\x3b\x2b\xbe\x3b\xd5\x2a\x94\x9f\xdb\xdf\x4d\x8e\x63\x35\x60\xa5\x72\xf8\xef\x63\x05\x7b\xd2\x75\x89\x22\x3a\xf5\xa7\x53\x82\xbc\x89\x5c\xb3\x89\x6a\xa0\xd5\xfd\xd9\xe7\x40\x6f\x68\x2e\xf5\x60\xd5\x90\xce\x11\x67\xbd\xa5\xb3\x05\x02\x57\xce\x1f\x8a\x4b\x5e\x3b\x1f\x8e\x28\x62\x7e\xab\xb4\x80\x51\x37\xb3\x7a\xcc\x5d\x72\x86\x32\xa3\x08\x62\xb5\x9c\xf3\x0e\x09\x17\x97\xa8\xbb\x88\xbe\xc5\x98\xd9\xca\x28\x88\x38\xc4\x47\x0a\xd4\xa5\x70\xe3\x21\x01\xea\xb5\x48\x15\x16\x62\xc5\x4f\xf4\x28\x03\x7d\xaf\xc2\x35\x47\xa3\xa3\xb6\x6c\x5f\xc6\x9a\x85\x8f\x65\x61\x88\xbd\x6d\x94\x0c\x25\x9e\x61\x51\x6a\xd7\x08\xe3\xe7\xb6\xb8\x74\x87\xb6\x73\x37\x1d\xc2\x04\x92\xa7\xaf\x60\x1e\x49\x17\x88\xd0\x1b\x94\xfb\x8a\x1f\x7f\x52\x47\x91\xad\x53\xaa\xaf\xf0\xd2\x89\xf0\x45\xe7\x61\xdb\xe7\xf6\x53\xff\xf5\xaa\xb2\x70\x61\x38\x50\x65\x5f\x2f\xb9\x4d\xd7\xc3\x07\xd8\x3a\x1c\xd1\xbf\x54\x33\x02\xc7\xa8\x29\xe2\xd5\x55\x2b\xa4\x3b\x05\x49\x96\xb8\xdb\xd6\xa4\xaf\x9d\x4f\x1c\xea\x5b\x2d\x6d\xbf\x79\xc7\x63\x9a\xd4\x0b\x9f\x05\x17\x37\xec\x1d\x25\x55\xb7\xb2\x82\x46\xdf\xe9\x6c\x57\xb0\xa8\x24\x5e\x8b\x8e\x30\xe5\x2d\xe8\xbe\xbc\xd4\xc2\x88\x95\xa0\x32\xca\xfd\xf4\x55\x4d\x7c\xce\x46\x41\xcd\xe2\x9b\x00\xc1\xa6\xfa\xd0\xfa\x76\x25\xe5\x62\x13\x8a\xcd\x0f\xbb\x9a\x0e\x8f\x6b\x92\x06\x31\x83\xd8\x8b\x2c\x3f\xf9\x8a\xd4\x1a\x1f\xc1\x09\x29\xfc\xf0\x95\xf4\x8c\xdf\x33\x90\x8d\x7d\x1f\xb1\x34\x8e\x2a\xff\x7c\x87\x3e\xcd\x8f\x07\x54\xf1\x1a\x22\xfc\xf6\x23\xaa\x9b\x0c\xf2\x70\x95\x80\xc7\x52\xee\x5d\x01\xc8\x76\x31\x07\xee\x7e\x9e\x5d\x24\xcf\x17\xc7\x65\x80\x48\x65\x26\xa7\x0d\x7f\x4a\xe6\x0c\x2e\x2e\xdb\x04\x1b\xa8\xbe\xfc\x62\x05\xeb\xe8\x33\x14\x80\x6b\xd9\x06\x1d\x59\xc9\x90\x67\xf1\xda\xf9\x67\x6b\xe4\xcd\xe9\x09\x18\xf1\x84\x35\x01\x68\x4f\x7c\xea\x81\x98\x5a\xc9\xa2\x8b\xcb\xdf\xd1\x62\x4d\x56\xa1\x1e\x55\x53\x36\xa6\xae\x0a\x35\xcf\xd5\xee\x4d\xd1\x0d\x6b\x01\x7c\xe1\xd6\x14\xf9\x82\x91\xd9\xc0\xcc\x27\x00\x2b\x0e\x87\xbe\x30\x54\x52\x06\x55\xb6\xf2\x2f\x9e\x91\x5b\xcd\x5e\x8b\x3a\x98\xa8\xcc\x8b\x9c\x7b\x18\xf8\x04\x57\x26\x13\x73\xbd\x0f\x5c\xbe\x2b\xbd\x2d\xb6\x41\x9d\x11\xa6\x81\xe9\xe7\x8a\x67\xe9\x8e\xe0\xdc\xe4\x49\x5c\x93\xef\x6a\x0b\x2e\xae\x7a\x8f\x45\xab\xb7\xce\x95\xe9\xac\x45\xb0\xa0\xe5\xce\xd5\x94\xdf\x1d\x03\xdb\x8c\xb6\x52\x14\xca\xb5\x5b\xe4\xff\x64\x88\xb8\x50\x26\xff\xbb\xe2\x04\x5a\xc3\x60\x6e\x5f\x0e\x27\xcc\x96\x03\x62\x87\x70\x31\xcc\x7f\x1d\xa1\xeb\x83\xb0\xa8\x35\x22\xdc\x6b\x0d\x9a\xc9\x6b\xef\x87\xf4\xd4\x44\x22\xdb\x54\x34\x07\xaa\xba\x8d\x7c\x9c\x50\x7a\xbc\x41\x8a\x69\x90\x22\x06\x1d\xfd\xdd\xf9\xb6\xcc\xb2\x16\x89\xb2\x6c\xf8\xe9\x65\xe7\x88\xe2\x05\xe0\xeb\x90\xb4\x2f\xd0\x7c\xb2\x63\x21\x6e\x81\xaf\x7d\x7a\x84\xde\x3b\x72\xb9\x00\x71\x27\x7f\xa3\x40\xbc\x3d\x5f\xd9\x03\x84\x5f\x1f\x73\x9e\xd6\xb2\x82\x82\x49\xb2\x16\xca\xdf\xf2\x9c\x9e\x12\xa3\xe6\x1d\x8a\xba\x4f\x77\xc5\xb3\x74\xe9\xbb\xcb\xc3\x55\x63\x75\x46\x60\xd6\x17\x1e\x91\x17\x45\xff\xf1\xa4\xca\x02\xf3\x7d\xc4\x37\x39\x4a\x8a\xf9\xc0\x32\xa1\x83\x42\x6b\xb8\x05\xd3\xd3\x1f\xcc\x4d\x07\x10\x87\xf4\x5a\x88\xd8\xb4\x91\xaa\x5b\xc2\xdf\x3e\x36\x4c\x9d\x5c\x06\x75\xe2\xd6\x40\x4a\x67\x8d\x06\x41\xae\x57\x09\x1f\x3c\x12\xe1\x78\x5f\x18\xa6\xdb\xbc\x20\x5e\x4d\x40\x85\xf8\xe9\x39\x5a\xaf\xca\x0c\x0b\x73\x84\x6e\xdc\xa1\xe7\x37\xdf\x3a\x54\xd1\x94\x8e\x52\x9d\x18\xb4\x9d\xd2\x0c\x02\x6d\xd4\x14\x92\xa6\x1c\x7c\x50\x18\xb6\xaf\x43\x8d\x53\xd2\x1f\xab\x2f\x6f\xac\x54\x71\x4c\x8c\x61\x43\xcc\xbe\x8b\xab\xc7\x6a\x09\xc8\x26\xa6\x18\x7d\x3f\xf3\x62\x8c\xc1\x8c\xb5\xaf\xc4\xbc\xbc\xb6\x5f\xce\x55\x2b\x98\xb9\x9e\x8f\x89\x3a\x77\x1d\xac\xb0\x8f\x3d\x6a\x80\x7b\x57\xee\x76\x3b\x7d\x46\x68\x03\x33\x0b\x14\x8f\x45\x22\xbf\x7a\x00\x54\xc7\x57\x01\xa5\x38\x1d\x2f\xfe\xdf\x6c\xbd\x68\x44\x55\x31\x2a\xcf\xef\x7c\x47\x7a\x70\x82\x57\xc7\x88\x22\xac\xac\x96\x07\xb6\x4d\x1a\x48\xf9\x74\x85\x39\x03\x46\xc6\x21\xcd\xcc\xd8\x79\x16\xbc\x81\x5a\xba\xc6\xac\x1a\x38\x31\x0e\xb9\xd0\x7b\x9f\x3a\xde\xf4\xe3\x8c\xf1\x8c\xae\xf1\x14\xab\x68\x8a\x7b\xf5\xeb\x4c\x67\x82\xbc\xa8\x06\x68\x02\x5d\xa5\x53\x53\x7a\x44\x0c\x36\xe6\xfc\xc8\xdc\xf1\x5c\xac\xa7\xef\x13\x31\x4f\xce\x7f\xfc\x39\x55\xff\xbc\x1a\x60\x81\xa1\xcc\xff\x9b\xa6\x35\xd3\x4b\xeb\x75\x6c\xa7\xb4\x66\x86\x3d\x28\x27\x8c\x4e\x60\x72\xfe\x57\x71\x0a\x83\x58\x44\xb9\x76\x2c\x17\x46\xda\xa7\x8c\x6c\xab\xca\xf3\xbb\xe5\xed\x61\x6a\x1c\x02\xad\x09\xfe\x14\x0e\x0e\x4d\xaa\x0b\xcf\x0f\x32\xcd\xf7\x2d\xef\xe8\x96\x2c\x34\xee\x8b\x28\x88\x22\x95\x3c\x6c\x57\x4b\xa6\xf0\xe1\x80\x0b\xfb\xd3\x37\xd2\x9b\x88\x06\x31\xb2\x7e\xa1\xe1\x96\xd5\x6a\xbb\x06\xcc\x41\x88\x78\x27\xae\x93\x87\xd1\x41\x1e\xcc\xf2\x0b\x87\x5e\x3e\x2b\xfa\x61\x2b\x65\x08\xdb\x7d\x85\x5e\xcf\x57\x7c\x71\xb3\xf2\xff\x7d\x86\x18\xfa\xda\xd1\x5d\x26\xd5\x2a\x98\x09\x1e\x52\x4c\x1f\x5c\x3e\x6a\x11\x0b\x8e\x2b\x8e\x8c\x6d\xfe\xd3\x1e\x5c\x38\x1e\x14\x07\xbd\xd4\xae\xa0\x4b\x9d\xba\x80\x66\x5f\x33\x06\x66\x18\x57\x91\x3a\x23\xc8\xcd\xf8\x17\x17\x9e\x3e\xaa\x28\xdb\x50\x07\xc3\x6c\xbe\x2f\xbf\xa9\x47\xb1\x05\xe6\x52\x34\x31\x81\x66\x41\xc6\xf2\xd3\x44\x52\xeb\xf8\x03\xef\xc9\xda\x04\xaf\x8b\xca\xd3\x52\x39\xdc\x5e\x15\xf6\x32\x28\x70\xe3\x6b\xbf\xfa\x0c\x99\x80\x7a\x28\xb8\xdc\xc5\xf9\xbe\x38\x37\x3d\xce\xab\x06\xb6\x7d\x19\x8f\xd1\xbf\x9c\x95\xbe\xf6\x16\xaa\xd7\xf9\xbe\x33\xf1\x3a\x9e\x32\x54\x07\x1c\x89\x8d\x5f\x6e\x9c\xa5\x28\x0a\xa3\x5e\xc4\xb8\x10\xc3\xbd\x23\xc6\x28\x53\x2c\xbe\x49\xd0\x8b\x8b\xce\x23\x1d\x89\xca\xad\x8f\x52\xfd\xf2\x6f\x26\xaa\xaa\xfa\x86\xc5\x4b\xb1\xdc\xbe\xbb\xa5\x06\xb1\x6a\xba\x5f\xf8\xe3\x68\x45\x09\x9a\xda\x1c\xd7\x9e\x48\x74\x8c\x7f\x01\x22\x64\x13\xdb\x76\xbc\xed\xe0\xc7\x6b\xdf\xc4\xa4\xc9\xe3\x30\xf4\xb0\x6d\x74\xfa\x1d\xac\x0d\x90\xef\x33\x1a\x0b\x1f\x35\x57\x24\xbf\xde\x54\x8d\x9b\x73\x7f\xe9\x10\x74\x57\xdb\xc3\x4d\x0b\x33\x10\x72\xb8\x60\x43\x3a\x89\xf9\x42\xd6\x45\x1b\x87\xcd\x59\x07\x97\xfa\x4a\xc3\xa7\x00\x8d\x3c\xbb\x4d\xb9\x0c\xd4\x0c\xc0\xfa\x68\xbb\x06\x68\x73\xa8\x89\x1d\x58\x5d\x90\x97\xd3\xc5\x95\x8d\x51\x03\x0b\xfc\x65\xe1\x49\xc5\xf7\xcd\x8c\x6a\xa4\x52\x39\xfc\xd5\x20\xd5\x6d\x07\x23\x1f\xc4\xc1\xfb\x8a\x1b\xbb\xd3\xf7\x8b\x1b\xc5\x81\xac\x79\x00\x5d\x5a\xc9\x46\x15\xfe\xe5\xd3\x61\xa3\xb6\x57\x73\x3c\x45\x1e\x8e\x01\x39\x6f\xde\xad\xb1\x55\x90\x60\x69\x58\x4f\x8e\x50\x84\x73\x8c\x5e\x64\x22\xe2\xc5\x78\xf0\xd7\xc6\x0e\xd3\xbe\x54\x15\x66\xcf\xb9\x41\xdb\x65\x1d\x65\xda\x1c\xed\xb7\x7d\x83\xa6\xab\x20\xa0\x1e\x69\xed\xeb\x7f\xbc\xa3\x0d\x5e\x39\x1c\x2a\x16\xde\x3f\x75\xa7\x00\xc1\x23\xcf\x22\x2a\xe0\xe1\x89\x09\xe9\xcb\x61\x13\x87\x2f\xfc\xb0\x17\x3f\xe3\xef\xae\x90\xa5\x65\x4f\xc0\x77\x3f\xf9\xb3\x86\x2b\x5b\xe5\xd8\x4c\x04\x6a\x84\x47\x5f\x18\xae\xac\x23\xdc\x1a\xc3\x9e\xe7\x20\xb0\xfb\xfb\xfc\x2e\xf8\x14\x29\xe1\x44\x3e\x02\x7f\x52\x9e\x71\xdf\xc2\x94\x29\x92\x48\xf9\xfa\x00\x65\xf6\x1f\xd5\x29\xcc\x15\x4b\xac\xcf\xed\x53\x6a\xe1\xc4\x9e\x39\x7f\x93\x9b\xf1\x73\x68\xc5\xdd\x60\xe1\x1f\x0b\xe5\xc5\xa8\xf0\x7f\x7e\x99\x62\x89\x54\xc7\xc8\xc0\x5c\x76\xbb\x2f\x37\x43\x10\x07\xae\x0c\x7c\x8b\x4b\xab\x8b\xb6\xed\x7f\x61\x2b\x5c\x5a\x8e\x5d\x0f\xbb\x15\x86\x5d\x17\x2b\xaa\x5c\x85\xed\x9b\xd2\x6f\x42\x50\x9c\xe2\x68\x77\xc1\xa0\xf4\x5f\x23\xaf\x4e\x98\x44\x5f\x6c\xdc\x28\x3f\x1f\xb7\x9a\xa3\x77\xa4\xdb\x14\xaf\xce\x88\xeb\xf7\xab\x38\x53\xb8\x22\x49\x7f\x2d\x9a\x99\x4d\xf7\x5c\xa7\x61\x1b\xb8\xd1\x78\xbc\x58\x3a\xe2\xb7\x8b\x6f\xa5\xd0\x6c\xfb\x0a\xbf\xb1\x63\x65\x01\x5a\xb7\xf1\x25\x89\xcc\x71\x47\x27\x54\x4a\x57\xfa\x36\x5f\x03\xa7\x22\xdc\x98\x77\x34\x5b\x03\xe4\xe0\x34\xfe\x39\xbc\x71\x82\xd2\x94\xd3\xc0\x16\xf3\x17\x72\x9d\x22\xd9\x57\xc1\x1e\xbc\xe8\xc2\xf5\x1b\xf5\xea\x06\x6c\xb2\xb0\x27\xde\xea\xe9\x29\x32\x10\xd4\xec\x80\x4b\x6e\x16\xc7\xbd\xad\xb4\x8e\x96\x72\xe8\x73\x7b\x86\xe9\xdb\x7e\x01\x2a\x7f\xe4\x0a\xcd\x2f\x76\x6d\x80\x18\xd6\x00\xe1\xbb\xad\xf4\xf9\xea\x9e\x34\xad\xab\x2b\x46\xba\xfc\xe9\xa2\x21\x0a\xb6\x8f\x99\x8c\x56\x78\x35\x73\xef\x0c\x79\xc4\x09\xb7\xe0\x65\x04\xbb\xd0\x14\x15\x17\xad\x1e\xae\xf7\x5d\xae\x2f\x52\xd0\xd2\x09\xba\x04\x03\xbf\xfa\xd1\xd1\x78\xdf\xea\x33\x45\x91\xee\xb3\x80\x07\xd2\xe2\x3b\x3a\x4b\x8d\xd7\x04\x75\x94\x68\xb6\xe5\xbe\x6e\x6b\xff\x04\x7b\x88\xa5\x94\xf8\x0b\x3b\x17\x7e\x00\x5e\xee\x14\x9e\x1a\x8a\x31\x69\xd4\xe5\x8d\x39\xf8\xf6\x14\xeb\x96\x80\xd9\x51\xb7\x16\xc3\x67\xfe\x67\x86\x7c\x7d\x0d\xec\x79\x30\xbc\xcd\x97\x94\xee\x3e\xb6\xff\x11\xc5\xc6\x43\x8f\xca\x7d\xa6\xdf\xe4\x82\x2e\xb3\x06\xfc\xb3\x15\x52\x14\xc9\x5e\x58\x39\x4a\x19\xa0\xea\x55\xd8\xc5\x8f\x6a\x48\x18\x17\x8b\x61\x56\xee\x6d\xcd\x9b\xae\x09\x62\x73\xa2\xe7\x19\xf2\x9e\x22\x51\xb2\x36\x40\xd1\xaf\x1a\x78\xe7\x10\xad\x88\x82\x96\xfe\xa3\x13\x87\xa6\x99\x1a\xe2\x4c\x3f\x74\x44\xdb\xb9\x32\xea\xd6\xaa\x41\x6c\x6e\x7f\xcb\x5e\x6d\x52\x85\x5d\x2f\xde\x8a\xc0\xbf\xf8\xc4\x11\x6d\xb7\xe0\xd2\x80\xeb\x45\x46\x11\x7c\x52\x87\x78\xd7\x26\x66\xa5\x2a\x69\xe0\x52\x95\x52\x0e\x35\xfc\xf5\xa3\x9a\x47\x0a\xc3\xc8\xf4\x2d\x31\x63\xdc\x3b\xb0\x43\x85\xad\x7f\x6c\xe9\x65\xfc\x65\x95\xca\xe1\x81\xed\xc2\xd2\x8f\x61\x10\x61\xc8\x37\xf6\xa7\xbf\xf1\x04\x51\x1d\xaf\x7d\x41\xd3\xec\x11\x21\x51\x01\xc3\x38\xba\x78\x3e\xb5\x13\x17\xb5\x62\x45\x83\x87\xd5\x18\x6e\x59\x51\xbc\x16\xc1\x67\xd3\x61\x98\x67\x76\x4f\xef\xec\xe6\x6e\x25\x7b\x36\xc8\x63\xe1\x02\xb3\xe5\x5e\x01\x20\xc2\xa2\x02\xc2\xa5\x72\x38\x7a\xf0\x28\x59\x34\x39\x99\x78\x58\xcc\x03\x30\x64\x72\xd7\xe5\xd1\x0f\xed\xd9\x05\x63\xe9\xc5\x81\x67\x67\xff\x75\xee\xd2\x75\x8a\xfe\x02\x6d\x82\x6d\x57\xb1\xfd\x2e\x39\x08\x63\x1c\xaa\xab\xe8\xae\xec\xbd\x3b\xc6\x45\x80\xbe\x45\xa9\x1c\xb6\xdf\x9e\xbe\xae\xdd\xd3\xa6\x76\x5e\x2e\xd8\x7c\xfb\xad\xc1\x09\x31\x9c\x97\x51\xc7\x4e\xc3\x90\xea\x1a\xf7\x9f\x0d\xa9\x8e\x6a\xc6\xd2\x86\x8d\x1b\x58\x08\x38\x08\x51\xc7\x9b\x3b\xcf\x56\x78\xef\x30\x25\xfa\xf6\x24\xd9\x8f\xb2\xa8\xc2\x99\x7d\x48\xf0\x71\x5c\x15\xfa\xbf\x6d\x8a\xd2\x01\x60\x83\xcb\x7e\x96\xfb\x72\x3f\xdf\xda\xa6\x0c\x0b\x03\x8e\x36\xcd\x5d\x7d\x72\xac\xac\xdc\x88\x61\x91\x1a\xca\xaa\x33\x07\x9a\x97\xb8\x81\x3c\xe2\xd2\x18\x55\x71\xf3\x46\xf9\x56\x2f\xef\xea\x2a\x95\xc3\xf9\xbb\x60\xd0\x69\xb5\xea\x3c\x7e\xbd\xb0\x26\x0d\x01\xa9\x62\x12\xef\x73\xd2\xbf\xe8\xda\x5b\x15\xc3\x8a\x80\xd8\x26\x4c\x0b\xdb\x1f\x57\x88\x74\x1c\x83\x0e\xe5\xf0\x95\x4b\x86\xa9\x7c\xa6\xa8\x4c\x06\x79\xa7\xfc\xf5\xd3\xe0\x13\x04\x42\xdd\xa0\xf2\xe8\x05\xda\x65\x22\x26\x2e\x55\x02\x96\xea\x18\x76\x6e\x93\xbe\x39\x53\x66\x72\xce\xae\x3d\x4e\x4e\x82\x02\xcf\x67\xc8\x26\xd9\xfd\x6f\xee\x33\xe3\xe0\x1a\xdf\x88\xdc\x5e\x9c\x5a\x47\x17\x6f\xa8\x66\xcc\x68\x9c\xc0\x25\x9e\x23\x22\xdf\xd6\x05\x63\xf4\x0a\x3e\x6a\x05\x09\xa7\x63\x00\x0a\xb9\xfa\x86\x4c\x32\x4d\x94\x52\x3d\xec\xcb\xcf\xd5\x88\x94\x86\x45\xe3\xcd\x64\xe1\xe0\xba\xb3\x95\xac\x05\x43\xde\x41\x7b\xe5\x69\xe5\xa5\xc9\xc0\x0d\xfd\xfb\x4e\x02\x8c\x61\xb7\xe6\x05\x3b\x85\xe7\xc4\xe8\xd1\x7c\x1c\xa4\x1e\x4a\x8b\x03\x97\xe3\xc5\xec\xcc\xdb\xfc\xc6\x1c\xbd\x34\xaf\xc7\x32\x10\x85\x6f\x4a\xe4\x67\x93\x2a\xf4\x88\xc2\x63\x5a\x3d\x53\x09\x58\xcd\x46\x8c\x37\xb7\xe1\xb1\x7b\x44\x44\x99\xd2\x39\x79\x06\x8f\x28\x6f\xcb\x7b\xec\x63\x1b\x37\x88\x47\x68\x0c\xe1\x9a\x23\x96\x7e\x55\x04\xab\xc5\xdc\xee\xdb\xf5\xaf\xca\x69\x42\x62\xe0\xfb\xcd\xf7\x64\x0e\xaa\x5b\xc4\xb6\x49\x5d\xdd\x2b\xfd\x5c\xf3\xda\x6a\x5a\xd4\x49\x26\x86\x5f\x1b\x37\x4a\x36\x5a\x59\x85\xd9\xdf\xdd\x06\xcb\xaf\xab\xa8\xa0\x50\x34\x32\x31\x21\x37\xf5\x29\xa8\xc9\xae\xb2\x02\x75\xae\x94\xc3\xbe\x86\xc0\x14\xfd\x60\x7c\x68\x7f\xa5\x81\x3d\x7d\x0e\x19\x16\x27\xc0\x18\xd4\x8f\xdb\x1f\x32\xe4\xa6\xa8\x2f\xf7\xef\x2f\x28\x0a\x9f\xae\x15\xc3\xd0\x17\xb7\x67\xc0\x31\x35\x96\xa8\x44\xe7\x4b\x9a\xea\x85\x19\xf8\x24\x6a\xce\x5b\xa2\x85\x2a\x7e\xfe\x19\x79\xf6\xa6\x76\xce\xe4\x80\x9b\xff\xbd\x57\xd9\xc3\x19\xbc\x02\x80\x35\xc6\xac\xac\x61\x13\xf6\x09\x57\x17\xe0\xb0\xd1\x82\xad\xc8\xd3\x73\x6e\x84\x52\x99\xff\xc7\xed\xca\x4a\x87\x3a\xd8\x44\xbc\xba\x3c\xe3\xed\xf4\x73\xe9\x09\x5c\x42\xc5\x8a\xae\x78\xcb\x5b\x70\x34\xe6\xc6\x83\xaa\x8f\x3f\xa3\x75\x17\x16\x62\xb1\xf9\xea\xc5\x9a\x48\x40\x3c\x71\x21\x5e\x3c\xc9\xc9\x1d\xd5\x4c\xa3\x1c\x30\x62\x83\xd5\xa7\xbd\x51\x80\xd9\xa3\xdc\x18\xf0\xe3\x7f\xfd\xe0\x58\x2c\xc7\x06\x15\xb0\xfc\x15\x37\x69\xc0\x7e\x4e\x05\x14\x3f\xe1\x7d\xeb\x86\xa8\x63\xa8\x58\x83\x34\xf7\x81\x13\x69\xc6\xb8\x49\xe0\x02\xf4\x2b\x6c\x33\x7a\x92\xc6\xbd\x4c\x8c\x05\x05\x76\xaa\x5c\x51\x5c\x56\xa2\x44\x9c\xd7\xf8\x87\x80\x98\x03\xdf\xa1\xcb\x27\x69\x3a\xaf\x93\xa7\x89\x7c\xf8\xd2\x5b\x8a\xfa\x65\x60\x47\x05\x7d\x67\x94\xab\x42\x49\x33\xf2\x30\xf2\xb3\xf6\x8e\x9f\x3d\x34\x5c\x69\xae\x2b\x42\xec\x1e\x52\xdf\x9f\x36\xc5\x1d\x8b\xa4\xcf\x44\x1f\x63\x7a\xa7\x3c\x19\x81\x4b\xec\xa8\x91\x8c\xde\x8c\xc3\xcd\xdc\x44\x25\x6d\x58\xc2\x39\xb9\x30\xf5\x1d\x85\xdf\x5e\xe7\x6a\xcf\x7d\xc5\x45\x6f\xa9\x58\x3b\x87\x70\x3d\xd8\xdc\x5d\x37\xa5\xef\x1d\x72\xb0\x6b\x82\x59\x19\x6f\x7b\xa7\x3d\x12\x43\x9f\x3d\x30\x31\x8c\x3e\x66\xf1\x85\x0e\x25\x54\x33\x6e\x15\x2c\x12\xfa\xcc\xe7\x3e\x28\x52\x2f\xa9\x97\xca\xe1\x4a\x33\x33\x75\xf7\x02\xe2\x27\xbc\xd6\x6f\xcf\x52\x1a\x74\x04\xa6\xd6\xd7\xdc\xd6\xa6\x88\xa0\xf0\xbe\x38\xec\xaa\xab\x23\xf8\x98\x7d\x5c\x2a\x87\xdf\x7b\x4c\xc8\xbf\x10\x9b\x7a\xb8\x91\x62\xb8\x1d\x3c\x2a\xc6\xd8\x4d\xe2\xaf\xc7\x8c\x8f\xfa\x04\xaa\xe3\x77\xef\xa4\xe7\x12\xbe\x41\xfa\x11\xfa\xc9\x7f\xfb\x6d\x61\x05\x4e\x41\x85\x23\xbc\x40\x93\xbf\x70\xc4\xeb\x0b\x1c\x71\xe5\xc6\x56\x3b\x54\x56\x1d\x72\x6b\x89\x23\xd1\x96\xfc\x30\xf1\x28\x85\xe5\xa6\x23\xe8\xd0\x3f\xd0\x50\xf2\x3d\x88\xc0\xd0\x59\xc2\xbd\x56\x4d\x4c\xb6\xd9\xb6\x9d\x48\x62\x8f\x7f\x4a\x01\x64\x28\x3a\x88\xae\x06\x83\x46\xcc\xac\x20\xdb\x8e\x33\x80\xaa\xd3\x6d\x23\xc2\xf7\x0b\x1d\x8f\x68\x70\x4f\x2a\xd2\xf2\x7f\x8c\x4d\x86\x81\x15\x0e\x6c\x93\x66\xf5\xef\x2a\xf7\xd5\xb3\x51\xa5\xe5\xf6\x46\xe5\xda\x95\xab\x14\x26\xa2\x81\x39\x7d\xff\xcc\x65\xfa\xc6\x5a\xc8\x43\x83\x32\x5d\xb8\xed\x55\x28\x6f\xe7\x31\x0e\x9f\xd3\xef\xcc\xb9\x77\xca\x89\xbd\x49\x3c\x2e\x72\xc4\xb9\xde\xf7\x1c\x3d\xaf\xdf\xe2\x9e\xf0\xfa\x9d\x2f\x38\x57\xc0\x01\xe6\xba\x89\xc8\x00\x84\xc8\xf2\x53\xea\x22\xa2\x6e\x73\xf3\xf0\x30\xd0\x66\x65\x55\xc2\x3c\x1f\x86\x6c\xff\x7a\x77\x47\x36\x46\xc0\xd4\xeb\x77\x13\xc6\x68\x5f\xad\xc1\x9b\x0b\x40\xe4\xf2\xe5\xe3\x57\x67\x0f\x16\x35\xb8\x09\x74\xb9\xcb\x77\x0b\x24\x9c\xeb\x33\x0c\xeb\xba\xc2\xff\x77\x40\x96\x79\xbe\x15\x35\x4f\x22\xc1\xaf\xdd\x2e\x27\x45\x16\x62\x0e\x75\x79\xbf\xf3\xcb\x77\xe5\x40\x19\x36\x26\x32\x59\x5c\xbb\x68\x8c\x72\x30\x18\xa9\x66\x50\x28\xf9\x2f\x8f\x91\xbc\xb9\x66\x54\x06\xa0\x6c\x0f\x32\x69\x81\xd6\xda\x07\x6e\x6f\x8c\xc0\x5c\x71\xb7\xf6\xe4\xcd\x28\xcc\x22\xc5\x06\xb0\x73\xa0\x32\x9b\x0a\xd6\xaf\x8f\x95\x2a\xd6\xec\x57\xb4\xf0\xb8\x1e\x60\xf4\x3f\x81\xa5\x79\x93\xe6\x67\xed\xd9\xb4\x19\xd3\xb0\x72\x68\x9a\x54\x94\xa8\x42\x73\x77\xe1\x3a\x05\x93\xe9\xa9\xa7\xb3\x38\xe7\x76\x5d\xc8\xcf\x34\xb1\x2b\x77\xaa\xeb\xf6\x43\xbe\xaa\xd9\x28\x56\x8c\x5f\xd7\xa5\xe8\xfb\x57\xa8\xcd\xd5\x0f\xfa\x72\xd6\x2a\x5d\x37\xc3\xc0\xe0\xa7\x05\x1f\xe2\x6b\xfb\x92\x8c\x42\x39\x1d\x73\x65\x43\xa5\x3c\xd5\xa2\x3b\xfe\x44\x51\x9e\x60\x5c\x27\x30\xe1\xe4\xd5\xda\x20\x6d\xf9\xeb\x72\xaf\x00\xcf\x8b\x9a\x6f\x9e\x83\xf2\xc7\xd3\x6f\x01\xaf\x23\xb1\x0d\x7e\xe1\xd2\x3b\x65\xba\x71\x69\xc5\xce\x36\x61\x2f\x8c\x19\xae\x90\xd9\x3d\x0b\x29\xc7\xe4\x7f\x36\x0f\x4f\xcd\x20\xeb\x0a\x44\xe1\xa3\xdb\xe4\x30\x17\x26\x34\x61\xed\xc8\x99\xc9\x0d\xc4\x5c\x65\xed\x83\x07\x14\x75\x7c\x5c\x23\x9e\x8d\xa2\x44\x18\xc7\xa7\x0f\x1d\x93\x3d\x53\x37\xef\x63\x73\x37\x28\x06\xd3\x75\x64\x90\x2a\x31\x4a\xe5\xf0\x2e\x45\x8e\xcf\x89\x0e\x23\x75\x11\x61\xc2\x4d\x2d\x5c\x7f\x6c\xb0\xf8\x9b\x9a\xe5\x97\xca\xe1\xb5\x27\xe4\x47\xf3\xea\x26\x1f\xbe\x5d\x21\xfe\x4d\x13\x9b\xa0\xd6\x89\x7b\x84\xf3\x20\xc6\x00\x5b\xf8\xec\xf6\xfe\x11\xb3\xbc\xf4\xaa\xbe\x02\xff\xfa\x4a\x4f\x38\x7e\xdc\x76\x34\x3d\x4c\xab\x60\xe6\x07\xeb\xd7\x13\x15\x47\x9e\xfb\xe9\x11\x5d\xf8\x16\x8c\x3e\x45\xa5\x31\xe4\x3d\xad\x33\x40\x7e\x22\xc9\x74\x78\x00\xa8\xd4\x5c\x9b\x68\x7d\x64\x82\xde\x39\x9b\x75\xb2\x39\x8f\x61\x44\x62\xdd\xf3\xdb\x62\xab\x34\x2f\xe0\x0a\x98\xb9\x97\xee\x87\x1c\x73\x75\x80\x7d\x5f\xc5\x21\x17\xaf\xbd\x08\xd6\x04\xcb\x2d\xd4\xcc\x48\x90\xe4\x3f\xb9\x51\x9e\x23\x64\x18\x81\xc3\x2d\x99\xd4\x1d\x15\x5b\xa2\x47\x70\x1f\xbb\xbc\xac\x12\x0d\xf2\x2f\x1a\x8a\x75\x78\x93\xc2\x19\x08\x6f\xcc\xcb\x8d\x06\x32\xf1\xda\x00\xf9\x00\xea\xb9\xff\x35\x99\xe5\x9b\xc2\x07\xff\xb1\x41\x92\x4d\xae\x7a\x33\xe5\xee\x79\x5b\xa9\xde\x1b\xb1\xcf\xea\x43\xfe\x85\x6a\x60\xe4\x9c\xc8\xfe\xf4\x10\x16\xe4\x85\xee\x0c\xaa\x62\x10\x82\xff\xcd\x46\x45\xe5\x4e\xd9\x18\xe5\xaf\x9b\x06\xcf\xef\x3a\x14\x30\xcc\xb1\x7b\xf1\xf3\xa3\xeb\xe0\x84\x2c\x99\x3f\x7f\xde\xf2\xe8\x0b\xdc\xba\x5a\xd6\x53\x35\x44\x00\x5d\x54\xf8\xca\xee\xf4\x72\xa9\x4e\x3d\x3f\xaa\x18\xf5\x3e\xe8\xce\x59\x72\x65\x86\xe4\xef\x09\x17\x3f\x2a\xe0\x8c\x4d\xe2\xf6\xc2\xb0\xf2\xd6\x71\xba\x37\x26\x28\xdd\x27\x8d\xf3\x7d\xca\x5a\x0a\xfb\x8c\x2f\xb9\x73\xe7\xdf\xa3\x68\xac\x50\x46\x5d\x9e\xc7\x6e\xdd\x95\x94\x73\x60\x6e\x5c\x2a\x87\x4f\xee\xef\x67\xfd\x0e\x25\x20\xf4\xce\xcf\xbc\xab\xf1\x73\x6c\x9b\x18\x24\x66\xda\xf5\x69\xb8\x1b\xe4\x22\xbb\xe5\xc5\xa6\x20\xbb\xf6\xa5\x6f\x1d\xf1\x3d\x6c\x57\x05\x5b\xf7\xfe\xc7\x14\x88\x23\x72\x0d\x0b\x2b\x96\x3a\xb9\x6f\x4e\x52\xfc\x98\x92\xf2\xae\xdc\x97\x3f\xb8\x3d\x19\x10\x95\x18\xc7\xf8\x7f\xe8\x88\x58\x77\x54\x90\xa1\x46\xb8\xfc\xc3\xa3\x95\xdc\x89\x89\x07\x4a\x33\xc5\x5b\xb6\xa7\xaf\x96\x2a\x0e\x01\xdf\xd9\x3d\x0d\x07\x81\xb8\xb1\x7d\xa2\xe0\x78\x17\xfe\xb1\x53\x77\x25\x70\x91\xab\xe9\x84\xb7\x96\x28\x51\x8e\xf0\x69\x7f\xa9\x1c\x7e\x7a\x45\xfa\x49\x4d\xe9\xe6\x66\x1d\x62\x8b\xf9\xc9\x57\x53\xca\x90\x75\xce\xe1\x0a\x9f\x5d\x06\xc7\x6e\x39\x48\x3a\xf4\x15\x87\x69\x42\x48\x0d\xcc\xa2\x8f\x2e\x00\x91\x5b\xd3\x65\xad\xe1\x19\xfd\x94\xb5\x85\x5b\xdb\x32\x56\xe3\x98\xd4\xa2\xbb\x03\x0e\x92\xf7\x3d\xa5\x05\x2e\xae\xce\xce\x7f\xc3\x23\xe3\xcf\x96\x21\x47\xb4\x03\xb9\x65\xe7\xea\x29\xac\x4e\x7b\xb1\x1b\xaf\x15\xb6\xdc\xaa\x24\x7c\x46\x1c\xe2\x22\x3b\x2e\xc4\xdf\x3a\x94\xe4\x4e\x8e\x32\x0e\xc7\xbd\x99\x5c\x8c\x96\x72\x35\xc3\x2b\x8f\x28\x90\x77\x5c\x57\xae\x66\xee\x97\x3b\xb4\xad\x94\x6d\x50\x8b\xda\x82\xde\xfb\x86\x22\x11\xea\x50\x33\xd9\xc0\x15\xac\x13\xd0\xaa\xd8\x50\xda\x6f\x00\xb9\xb2\xe4\xa7\x5c\x0c\x03\xf3\x8f\x08\xb8\x6a\x4f\xc0\x13\x4b\x88\x34\x02\xb2\x4f\x03\x46\x3c\x27\xc6\x99\xdd\xb1\x3f\xd6\x60\x67\x14\x74\xb0\x7e\xbc\xf1\x02\xed\xbc\xf8\xa4\x14\x95\xe3\x1c\x8f\x12\xbf\xfd\x21\x27\xe4\x25\xae\x05\x44\xa0\xc4\x47\x3e\x95\x5a\xc8\xb8\x31\xd5\xfe\xe7\x83\xfa\x3f\x83\x0a\x76\xbc\xb8\x61\x68\xfc\xa6\x40\xc3\x31\xfa\x2c\x63\xee\xd6\xd6\x13\x51\xfc\x76\xdd\x78\x39\x38\x60\x88\x12\x4f\x6d\xbb\x89\x5a\xfc\xb7\x5d\x7f\xbf\x82\x71\x88\x0e\x1b\x2f\x96\xae\x7a\x07\x7e\xfe\x5c\x64\xdb\x75\xc4\x7a\xa3\x6f\xe1\x2e\x14\xdf\xbe\x49\x7c\x80\xdf\xa3\x65\xd2\xf0\x57\xd9\x34\x86\xb7\x2e\x82\xfb\xb5\x38\x7a\x59\xb6\xa3\x80\x6f\x2f\x3f\x23\xad\xeb\x43\x0d\x1f\xd5\xa8\xdb\x9f\x3c\x5c\x6e\xa8\xf6\xe6\xe3\xd3\x05\x8a\xa2\xec\x56\x2d\xb0\xb5\x5c\x93\x9b\x10\xc2\xe6\x2d\xf4\x07\x65\x96\xea\x6e\xc2\x35\xd0\xec\xb8\x91\x43\x85\xa5\xa3\xf8\x02\x9f\x7e\x4d\x96\xeb\x93\x52\x66\x6e\x6d\xb2\xe0\xe2\x42\xd4\x0c\x11\x4f\x88\x2b\x9d\xa5\x79\x5d\x20\x93\x0b\x8f\x27\x7a\xc8\x5f\x58\x90\x9e\x74\x58\x94\x0f\x87\xbd\xfe\x26\x1d\xf9\xbd\x9b\xb4\xe5\x1a\x4a\x06\x9a\x85\xd2\xb6\xf4\x2c\xba\x49\x59\xaf\x07\x62\xaa\xe9\x50\xf0\xa6\xb0\x35\xac\x06\xb6\x5d\xaa\xc6\x8c\xf9\xf0\x0a\x4d\x32\x43\x28\x58\x25\x73\xfb\xc9\x4b\x34\xed\x2b\x16\xaf\xfc\x9e\x1c\xad\x48\xa8\x3a\xd4\xf6\xb9\xe3\xf9\xcf\x4e\xeb\x02\x6c\x66\x82\x40\x7f\xdf\xed\xb2\x4a\x0c\x1c\x27\xfa\x21\xee\x4d\x43\x52\x12\x5e\x62\x5c\x97\x1b\xb0\x5b\x1b\x40\x51\xd7\xb7\x44\xd0\x5a\xd0\xce\x73\x80\x8d\xdd\xd2\x34\x55\x5c\x71\xc6\x1d\xe9\xce\x76\xdc\x65\x3d\x3d\xbc\xf2\x1e\xb5\x5e\xc7\x96\x7b\x44\xba\xe4\xe6\xae\x7a\x09\x32\x31\x5e\xc7\x9d\x9a\x38\xbd\xe3\x2d\xf9\x6a\x6b\x51\xd7\xe2\x26\x16\xb0\x05\xf4\xd8\xf9\x0a\x9a\xd2\x8e\x8a\xcb\xcc\xc3\xfe\x89\x4c\xfa\x36\x52\xce\x7c\xfe\xa9\x3c\x4c\x2a\x6e\xa8\xfb\xb4\x99\x62\xa8\x14\x37\x1d\xd2\xb5\x86\xc5\x70\x95\xba\x02\x5f\xb5\x6d\x81\xd2\xb5\xb8\xc4\x41\x36\x0f\x5c\xcb\xee\x13\xb0\x2b\xc4\x90\x6d\x63\x3e\x80\x0b\xbf\xff\x82\x36\x83\x0c\x18\xe3\xac\x58\xc1\xb9\xbf\x61\xf7\xd0\xd4\x08\xce\x8a\x5f\xf8\x35\xbb\xa5\x86\x81\xa3\x6a\x52\xfc\xdb\x4e\x99\x8c\x2b\x28\x6a\xff\x1f\x51\x4c\x84\x03\x8f\x1b\x1a\x1d\x4f\xff\x56\xa6\x01\xee\xf3\x6d\x8f\x2b\x53\x33\xd4\xf2\xb2\x3e\x3a\x5f\x18\x07\x8b\xdc\x05\x36\xf6\x19\x8e\x85\x74\x8a\xf3\x58\x06\x1a\x68\x12\xa9\x77\xff\xe7\x35\x8a\x56\x49\x13\x25\x8e\xd3\x83\x66\x25\x59\x27\xb0\xb9\xae\xe9\x53\x8f\x6a\x17\x06\x7b\x7e\x7f\xb7\x2e\x77\x51\x87\x24\x58\x4e\xea\x2a\x95\xc3\xef\xbd\x31\x44\x34\x1a\x0e\x65\xc8\x26\xeb\x45\x9b\x7b\x77\x8f\x6a\x3c\xc7\xdd\x7a\x64\x6d\x63\xf5\x48\x86\x34\x52\xa4\x44\x72\x17\x3c\x2c\x6c\x12\x30\x73\xc1\xbb\x25\x7e\x46\x4e\x51\xc9\x05\x94\x9a\x2c\xa8\x46\x9f\xbc\xf0\xda\x08\x1d\x7f\xe4\x62\xe0\x13\x17\xfe\x30\x36\x05\x6a\x13\x39\xbe\x54\x0e\x27\x4d\xca\xb8\x6a\x62\xc6\x49\xd9\x90\xe5\x5f\xd3\x9c\x34\x4c\xec\x20\x37\xc6\x95\x2d\xdd\x94\x06\x75\x38\x86\x01\x33\xdc\x0c\xa8\x23\xb7\xb4\xa8\x45\x51\x66\x58\xa4\x8e\x6d\x54\xa3\x02\xfc\xb0\xa2\x4d\x8b\xc1\xc4\xeb\x8d\xb7\x32\xff\xb2\x54\xab\x2c\xe3\xe6\x87\x6f\xdf\xaf\xdd\xd2\xa1\xd5\x70\xb4\x22\x54\xa9\xe6\x34\x86\x2b\xa7\xd8\x86\x61\x0c\x07\xf3\x86\xbf\x7b\x4b\x99\x24\x51\x87\xb8\xa4\x97\xc3\xe2\x2c\x8d\x68\x32\x79\x26\x04\x17\x51\xe4\xce\x19\x0b\x97\x69\x11\x66\x1e\x8e\xc1\x34\xb7\xde\x33\x44\x3d\xe9\x04\xc0\x5a\xe1\x85\x0f\xa7\xbf\xb4\x49\xbc\x1a\x03\x68\x8e\x98\x2a\x2f\x7a\x50\x4a\x59\x47\xf1\x5f\xcc\xb9\x3f\x6e\x6a\x8a\x12\x34\x56\x66\xcd\x7d\xeb\x2d\xcd\x3e\x15\x33\x03\x93\x46\x02\x7b\xfe\x8c\x3e\x37\xc1\x8c\xd0\x40\x68\x27\xf5\xbe\xa1\x74\x4f\x1c\xb2\x1e\x5d\xca\xb5\x67\x24\xcd\x23\xf1\xf8\x80\x72\x50\x51\xb6\x64\x15\x1b\x41\x47\x69\xbe\x76\xae\xba\x82\xbf\xea\xaa\xcb\xe4\xde\xaf\x54\x0e\x17\xbd\xa9\xd0\xeb\x5c\x9f\x98\x98\x7f\x23\x04\x23\xcf\x8f\x2d\xfa\x27\x7a\xb3\xb0\xb7\x29\xac\x1f\xa9\x88\x00\xf9\x4d\x8c\x95\x04\xbb\xe4\x45\x2d\x3c\x03\x55\x2a\x9e\x2e\x8d\x7d\x46\xe3\x39\x22\xbb\xd7\x13\xcf\xf7\x25\xad\x20\xc5\x0d\x64\x07\x28\x71\x54\x2d\x7c\x42\xe9\x0a\x50\xc5\xc3\x3c\xbb\x84\xff\x77\x86\x62\x9d\x60\x93\x28\x4e\x3c\xb7\x15\xda\xa5\x46\x54\x43\xf9\x3e\xe2\x85\xcf\x80\xe3\xfd\xb3\x00\x84\x79\xe1\xd3\xbb\x35\xfb\x69\xdc\x24\x7e\xca\x60\xaa\x38\x51\xd3\xd3\x44\xae\x8b\xd7\x41\x48\x87\x07\xb3\xeb\xd0\x10\x65\x3e\xc9\x07\x6b\x7c\xa1\x7f\xf3\x58\xf9\xb4\xd3\xcb\x5d\xbe\xd8\xdd\xa2\x55\x17\xbe\x4f\x59\x14\x0c\xea\x1c\x8c\xf5\xbd\xfb\xe4\xf7\xc3\x35\xca\x9b\x99\x8f\x6e\x10\x34\x32\x0e\xa9\xe6\x79\x63\xf4\x8b\x59\x1b\x61\xbb\x25\xea\x8a\xbf\xee\x4f\xf6\xaa\x84\x3b\x94\x7f\x2d\xd4\xa1\x99\x00\x91\x11\xb1\xe2\x84\x9d\xb5\x19\x10\xec\x92\x42\x63\x9f\xa2\x22\x19\xa3\x33\x73\x83\x37\xa7\x2f\x01\xd7\x7d\x81\x73\x5c\xd9\xac\x11\x44\x9b\xd8\xf5\x5b\xc4\xb3\xe2\x25\x61\x63\x85\xae\x20\x8d\xab\x98\xc1\x15\x29\xac\x39\x30\x42\x85\xe2\xb9\x86\xe2\xf3\x96\xcb\x1d\x13\xaa\xed\x84\xf1\x53\xff\xda\x42\x05\x52\x63\x0b\xa9\xf9\x0b\x0f\xca\x63\x13\xb8\xbd\xe0\x25\x11\x3e\xf1\x5e\x92\x4b\x38\x56\x3f\x3c\xf3\xa8\x7e\x17\x0d\xea\xc6\x0a\x02\x7b\x87\x0e\x4e\x08\x8c\x33\x4b\xe5\x70\x4f\xb5\x3f\x47\x4d\xb1\x7e\xbc\x6f\x86\xca\x8e\xe7\xee\x8d\x10\x29\x3e\x27\xb1\x23\x9e\x91\x05\x39\xdf\x30\x71\x4c\x26\xcb\x13\x7c\xd9\x15\xca\x17\x3e\x7e\x97\x32\x6d\xc6\x86\xe5\x92\xb5\x40\x67\xca\x7f\x60\xa0\xa6\x4b\x8c\x2a\x1a\x5e\xb3\x2f\xdf\xf1\x8e\xc2\x64\x66\xa8\xc6\x01\x5c\xc5\xab\x43\xd5\xde\xda\xf5\xea\xc4\x10\x14\xd1\xc2\xf7\x76\xe9\x7b\x20\x8e\x05\x8a\xee\xf3\xa4\x52\x39\xac\x3f\x2f\x8f\x02\x90\x92\x79\xa2\xa9\x8b\xf5\x21\xa3\xb0\x42\xcd\x0d\x1d\xa5\xa8\xd6\x50\xaf\x1f\x03\xf3\xca\x71\x19\xfa\x2d\xea\xf9\x0a\x21\x26\xff\xde\x78\xdd\xee\xcf\x23\x35\x58\x73\x8a\xa5\xde\xff\xbe\x98\xa4\x65\x16\x48\x21\xcb\xf0\xe8\x4d\xe9\xa9\x8e\x8b\x7d\xe4\xb6\x90\x15\xa4\xfa\xfe\xf0\xef\x07\x92\x2d\x8d\x67\x74\xc6\x74\xf0\xf7\xbd\x99\x06\x26\x51\xbe\x38\x08\xef\xdb\x18\x8f\x62\x7a\xa4\xdd\xe2\xd7\xe6\x2a\xda\xef\xc8\xf6\x89\x11\x95\x54\xbb\xa6\xa9\x56\xef\x78\x6d\x00\x1d\x6c\xee\x4b\x07\x15\x55\xd8\x75\x3c\x8a\x87\x5f\x1e\x25\x43\x44\xaf\x4b\x70\x23\x85\x88\x1e\x02\xea\x4e\xa5\x85\x88\xb1\x56\x66\x2e\xf0\xf4\x0b\xe9\xbb\x17\x95\xb8\xb0\xff\x68\x9b\x23\x8f\x7e\x05\xdb\x35\xc2\x65\xf6\x87\x29\x6b\x14\xea\xd6\xa8\x98\x07\x7c\x6b\xa1\x98\x61\x71\x75\x69\x5e\x0c\x6d\x68\x4f\xc7\x81\x26\xf2\xc5\x44\xa1\x2f\xbf\x73\x6c\x72\x81\x4a\xfc\x35\x14\xaf\x7f\x58\x68\xeb\x79\x1e\xd8\x0a\x97\xca\xe1\xc4\xdd\x32\x71\x37\x2d\x92\x54\xa6\x85\xff\xe9\x18\xa2\xec\x4d\x70\x62\xff\x34\xef\xf1\xf3\xb5\xf6\xc8\xb2\x50\x35\xaa\x99\xe5\x9c\xe6\x3f\xc7\x66\xf9\x2a\xa0\x21\xc5\x4f\xed\x0b\x79\xf9\xfd\x7a\xa9\xed\x7b\x51\xa9\xd0\x57\xf8\xdb\xf1\x74\x87\x8a\x3c\x0f\x3b\x15\xbb\x05\xda\xa7\xe9\x21\xee\xa7\xc6\x64\x74\x3c\x7c\x86\x0c\x30\xc8\x2e\xdc\x12\xc2\xdc\xca\x6f\x12\x03\x43\xc1\xc1\x41\xca\xd7\x6f\x53\xc8\xec\x92\x8e\x51\xdc\xfc\x8a\xa2\x6f\x23\xa6\xe3\xed\x8a\x6d\xd8\xe4\xcb\x27\x4f\x8f\x1e\xe9\x22\x0d\xd0\x66\x5e\x82\x7d\x14\x77\x68\x53\x26\xa6\xbf\x74\x22\x5f\xcf\xd3\xd7\xe3\x42\xfc\xa8\xc4\x70\x8d\x0b\xf7\xc3\x3c\xfc\xbc\x57\x13\xd7\xa7\xba\x70\xf4\xfa\x81\x2f\x43\x88\x47\x9c\xba\xcd\x4d\xf9\xa3\x8f\x59\x7c\xeb\x4c\x39\xf7\xef\x2e\x95\xc3\xe5\x8f\xa4\xdb\xc5\x40\x80\x77\xc2\xc3\xf7\x48\x09\x23\x0f\x1b\x0c\xfb\x88\xb5\x14\x6e\x60\xed\xe0\x68\x3d\xa5\x45\x4f\x4f\x12\xd8\xff\xb2\x50\x82\xc5\x38\xdd\x39\x37\xbe\x91\x11\x7e\x6d\x08\x73\x6a\xfe\x05\x43\x5f\x61\x0b\x28\x13\x89\xbf\x2e\x3d\x53\x5c\x24\x03\x40\xf7\xf9\x8b\x3b\xe4\x5b\x70\x71\xd3\xb3\x68\xc0\x69\xb4\xc5\xfd\xff\x6c\x30\x2f\x0a\x90\x7c\xe7\x02\x3d\x89\xd9\x22\xeb\x15\x17\x2a\x1d\x16\x72\x5d\x1a\xb8\xc0\xf0\x2a\xf4\x8c\x56\xd2\x21\x46\x9e\xe0\x42\x3c\x27\x34\xe2\x18\x35\xb0\x19\x00\x63\x2a\x7f\xcd\x1a\xed\x54\xd9\xb4\x56\x8b\x91\x18\xf9\x8f\x6c\x81\x53\x75\x8d\x67\x23\x07\x55\x90\x19\x23\x84\x1f\x3c\x98\xcc\xd7\x91\xad\xe8\xad\xe7\x46\x1d\xd0\xed\x6c\xbb\xba\x78\x90\xea\x3e\xdd\xa6\x7c\x28\x8e\x22\x09\x37\x1d\x16\xe2\xec\x1c\xfa\xcd\xe3\x72\x6e\x68\xba\xc7\xfe\x70\xbc\xa1\xb8\xf5\x36\xe5\x06\xa1\xf5\x0e\x71\xa3\x78\xf6\xb3\x5d\xf0\x13\x18\x0d\x6a\x70\xe0\xff\xef\x0d\x65\x6a\x40\x1b\x84\x8f\x02\xc7\x2e\xd3\x0c\xc8\x91\x5d\x8d\xb7\x0d\xbf\x65\x32\x13\x74\x0b\x14\x74\xba\xf7\x78\xb9\x31\x52\xdd\x19\x13\xd7\xc7\xb5\x58\xd7\xb5\x2f\x37\xba\x5d\xcb\x72\x41\x85\x21\x97\xa4\x48\xac\x67\x6c\x48\xc0\xc3\xf1\x92\x32\xfa\xaf\x9f\x5a\x3a\x4c\x89\x85\xae\x61\x39\x88\xf5\xf2\x9d\xe8\x82\x83\x19\x5f\x4c\x91\xe1\xfa\x72\xdf\x9a\x00\x2f\xc5\xc2\xc8\x5c\x1b\x20\xee\x28\xc6\x63\xc0\xda\xbb\x15\x75\xf7\xa8\x4e\x23\xa7\xd4\x1e\x5c\x4d\x0e\x73\x32\xfd\x10\x9f\x1e\x41\x27\xf5\xad\x1d\x1d\x0a\xf3\x91\x2b\x8b\xc2\x7d\x0c\xef\x3d\x26\xbb\x6b\x16\xd8\x38\xbb\x8d\xd8\x73\xb0\x5f\x99\x5b\x68\xc3\xfc\x8b\x00\x2e\xbf\x92\xb8\xb4\xc6\x90\x49\x1b\x4a\x25\xb0\x60\x62\xfa\xa4\x07\xb8\x8a\xc4\x5e\xa2\x43\x51\xe4\x60\xc8\x8d\x75\x42\x0b\x7b\x1e\xd4\x58\xe8\x88\xab\xb9\x92\xf4\x10\x3d\x9c\xb3\x42\x94\xa6\x0e\x62\x82\xbf\xfe\xcc\x89\xe1\x99\x8f\x19\x4f\xbc\x26\x75\x0e\x53\x70\xda\xc8\x26\xd5\x96\x48\x47\x53\x6d\x79\x86\x0d\x4a\x38\xfa\x7c\xbf\x66\x64\x5e\xb7\x03\xb7\x16\x3b\x50\xfe\xfd\xa4\x6a\xd6\x0c\xf7\x0e\xea\xef\x79\x0f\xe8\x92\x83\x75\xca\x60\x17\x1b\xfe\xea\xb4\xe4\x75\xd6\x90\x5d\x61\x88\xf8\x0a\x70\x3f\x37\x7e\x8e\x74\xf3\x52\x45\xc8\x0b\xe6\x6b\xe7\xa8\xc4\xe0\x3a\xd0\x8a\xae\x9e\x76\x4e\xda\x23\x36\x8a\xf5\x7f\x7f\x4c\x9b\x74\x03\xbc\x4c\x8c\x3b\xf2\xfb\x07\xaa\xa6\xf5\x98\x5f\xa2\x4b\x7b\xa4\x58\x1e\x56\xed\x56\x76\x68\x80\x6d\x97\x32\x07\xd9\x02\xf6\x38\x44\x93\x96\x57\xf4\x7c\xe3\x49\xb7\xdd\xce\x1f\x78\xf4\xb7\xf3\x56\xa8\x03\xd0\x61\x7b\xe0\xc5\x35\x89\x6b\x52\x6e\x9c\x5f\xf8\xdb\x08\x5d\x8c\xd0\x34\x89\x64\x67\x17\x7e\xb3\x5d\xf1\x3c\xb4\x10\x33\xa9\xeb\xa2\x56\x9c\xc9\x9f\xd5\xb4\xfa\x2d\x8c\x62\x84\x78\x71\x4a\x8f\x56\x58\x44\xa5\x01\x04\xfa\x1d\x17\xc1\x50\x6d\x01\x8b\x2e\x69\x6a\xa8\x76\xe7\x52\xc5\x86\x26\xa8\x50\x66\x72\xc3\x52\x1e\x5b\x5f\xbe\x37\x36\x70\xe2\x3b\xee\xfc\xe0\xee\x4c\xeb\xdd\x13\x30\x70\xbc\x89\x3e\xfb\xea\x31\xe9\x48\x52\xa1\x4c\x13\xcc\x0f\xa7\x6f\xd1\x05\xcd\xb8\x7b\x73\xbc\x1f\xb1\x5f\xd2\x3c\x1d\xa7\x8b\xb7\x30\x6b\xaf\xa6\x35\xd7\x05\xfa\x06\x61\x2c\x1b\xcb\x4f\x5f\xf4\x23\x7e\x70\x46\x87\xd2\x9a\x90\x52\x9d\x50\x17\xc3\xa5\xf9\x95\xa6\xfd\x5b\xe1\x29\x27\x76\xc1\x5f\x7f\x40\x87\xf4\xb1\xde\x44\xee\xec\xd7\x9a\xce\x84\x8d\x5d\xae\x7c\x10\x4b\xb5\x14\xff\xe5\xe1\x91\xd8\xe5\xb6\x29\x76\x54\x7d\xae\x60\x81\x22\xf2\x52\x3c\x43\xee\xe9\x4c\x58\x4a\x7e\xeb\x7e\x95\x64\xcd\x01\x39\xe0\x8e\xda\x97\xbf\xca\x1a\xab\xbd\x48\x6a\x63\xee\x4f\x86\x4d\x3b\x76\xa6\x7b\xe2\x01\x39\x36\x23\x0a\x5a\xa1\xd8\xd6\x80\x8a\xf1\x1a\x3e\x2c\x16\x4e\x95\xfb\x06\xa7\x9f\xeb\xd4\xc9\xbc\xcc\x0f\xbf\x70\x97\xb6\xca\x06\xb9\x64\x47\xe4\xc9\xf0\x7f\xa7\xa5\x9f\xc9\x94\xa9\x93\xa6\x76\x4d\x2d\x71\x46\x66\xf1\x13\x0f\xcb\xb1\x5e\x2f\x75\x3c\xea\x50\x9b\x3b\xc4\x44\x7f\x79\x66\x67\xe2\xeb\xc0\x5f\x60\xfb\x5d\xb1\xd5\x3c\xaa\x0a\xd2\xc8\xcb\x2f\xea\xc8\x5f\xb3\x86\xfd\x4e\x21\x8c\xfe\xb5\xed\x8a\xe1\xc1\xd4\xee\x14\xc6\x7a\xfc\x76\x59\x20\xa0\x3a\xb5\x6d\x1e\xf7\x3e\x9b\x97\x95\x39\x76\xa3\x0a\x81\x27\xde\x79\xcf\x5c\xa2\x35\xa1\xac\x41\x84\x45\x91\xbe\x48\xf8\xd9\x8b\x49\x01\x7e\xf9\x87\xb8\x3d\xf3\x99\x9b\xd2\x1f\x92\xd2\x9a\xc2\x5c\xfc\xda\x4d\x49\x48\xb1\x14\xfd\xcd\xf0\xd3\x07\x87\xa9\xc0\x57\x5c\x4f\xe6\xf6\xab\x34\x3d\x67\x2e\x12\x26\xa2\x56\x71\xca\xad\x7a\x39\x25\x24\x2e\xbd\x18\x2c\x71\xe9\xab\x8a\x40\x03\x68\x8e\x15\xa6\x56\x75\x1d\x45\x44\x5c\x51\x7e\xb9\xc7\x3a\xb4\x6e\x83\x00\x8e\xab\xaf\x68\x57\x15\xdb\x64\x0e\x4d\x2b\x0c\xec\xa8\xab\xc2\xb8\x1e\x97\xc0\xe4\x0d\xe3\xeb\x1b\x47\x2a\xd8\x19\xe6\x13\x57\x05\x59\xdd\xb3\xf3\x9c\x38\x45\x98\x81\x21\xd2\x79\x71\xde\x4a\x18\x07\x2f\xa6\xb6\x6a\xcc\x99\x9f\x0a\x13\xba\xd2\xdc\x2b\x97\x2f\xc8\x34\x5e\x9f\xbf\x5d\x81\xf8\x3b\x0e\xa9\x31\x80\x72\x86\x63\x76\x67\x06\xb5\x5c\x02\xa7\x11\xcb\x72\xfd\xeb\x34\x29\x36\x3c\xbd\x2b\x7a\x58\x67\xdf\x03\xbf\x68\x1e\x75\x2a\x8c\x36\xbd\x5e\xa2\x7c\xe6\xc3\x63\xce\xd3\xd8\x8f\x41\x3d\x25\xbe\x9f\xdf\x7d\xdf\x10\x85\xe0\xee\x11\x83\xc0\xca\xdc\xd4\x72\xaf\xe0\xf7\xf0\xda\xe6\xe3\xdb\x46\xaa\x33\xc2\x15\xe5\xcb\xe2\x9f\x57\x2a\x87\x5d\x3b\xce\x4d\x5a\x4e\x9a\xb5\xba\xcf\xad\x7a\x5d\x69\x2d\x6d\x1a\xb3\x1e\x10\x53\xc0\x85\x4d\x0e\x20\x8e\x62\xdf\x21\xa6\xf9\x20\xe0\xa6\x57\x47\x75\x21\xa8\x57\x0e\xef\x7d\x2a\x23\xbb\x00\xc5\xd3\x98\x45\xc9\xa1\x6d\x62\x85\xa3\x9c\x9b\x3c\x4a\x9e\x88\x2a\xe2\x7c\xe6\x9e\x17\x34\x85\x49\x9f\x21\xd7\xf4\x20\x2a\x16\x2f\x34\x75\x6f\xf4\xc0\xb3\x70\xf2\xb7\x9a\xa0\x0a\xb7\x77\x16\x78\xf2\xc2\xab\xb0\x7e\x29\x2d\x65\xd8\x20\xae\xa1\xa3\xf2\xc2\x0f\xbc\xa2\xc0\xd9\xaa\xdc\x94\x3d\xde\x74\x5c\xf0\x96\xde\xd6\xd0\x06\x85\xaf\x07\x8b\x6a\xa4\xd9\xd1\x37\x31\xee\x8d\x0e\xbd\xae\x07\x73\xe6\xb2\x0c\xd2\x3e\xb0\xa5\xb7\x42\x61\x85\x36\x75\x37\xa9\xe1\x53\xf1\x78\xfb\x8a\x4b\xde\xd2\x3b\x0f\x8c\x98\x1d\xcb\x43\x3f\x2f\x24\x72\xeb\xa8\x26\x36\x9e\xf7\xbe\x22\xdc\xbf\x91\x0b\xc8\xaa\xe2\xe0\x07\x13\xd5\xe3\x80\x9b\x3e\xa5\x1d\xfe\x5e\xd1\x62\x73\x72\x1b\xa0\x61\x1c\xb3\x33\x6b\x68\x23\x88\x5a\xce\x03\xba\x2d\x6a\xe0\x54\xe0\xd9\xfc\x70\x5b\xd6\x01\x80\x77\xe1\xc0\x45\xbc\xf0\x0c\x7d\x2d\xdb\xe0\x2b\x5b\xf1\xa5\x73\x7f\x9f\xab\xdb\x4d\xd8\x9e\x74\x55\x2e\x0e\x5c\x22\x0b\x38\x17\xc5\xcd\xd6\x3b\xef\x29\x33\x2d\x62\x73\x07\x91\xf0\x97\x2b\xe0\x78\x5e\x1d\xd8\xd5\xb4\x51\xcf\xf1\x21\x0a\x53\x99\x3b\x7c\x72\x22\xef\x4e\x61\x4a\x51\xb1\x69\xd3\x2d\x81\x53\x78\x6e\xf3\xa3\x52\xdb\xca\x8d\xbb\xbb\xfc\x43\x1d\xe3\xfa\x2b\xe2\xa1\xa8\x96\x69\x64\xf1\x7d\x3a\xf6\x85\x7a\x62\xb4\x28\x30\x3b\x7f\xd3\x86\x75\xf5\xa0\x62\x13\xcf\x4a\x96\x0d\xa7\x36\xc8\x1b\xdb\xb4\x88\xef\x72\xca\x6a\x1e\xbf\xdb\x16\x47\x68\xe2\xa3\x1a\xa0\x65\x66\xcc\x56\xb8\x4e\xc8\x25\xb1\x84\xc4\x55\xe3\xd2\xe7\x08\xaf\xf3\x19\x76\x62\x09\xb8\xbb\xef\x4a\x7f\x02\x07\x23\x8f\x33\x66\xc5\xa0\xf7\xc8\xc6\x74\x30\xea\xa5\xd5\xd8\xf3\x2a\x7f\xd3\xfd\x9a\x25\x0c\x82\xd3\x19\x9e\xfb\x70\x66\xdf\xeb\xd7\x50\xf2\x3b\xdf\x7a\x4c\x37\x2b\x76\x6b\x58\x90\x9b\xc1\xa4\xe5\xe1\xf4\xf9\x9a\x3c\x73\x66\x97\x68\x91\x5e\xd4\x06\xcf\x51\x09\xdb\x19\xa7\xcb\x81\xda\x87\x6d\x60\x16\xb7\x1a\xf9\x3f\x2f\xd4\xcf\x2c\x11\xfd\x5c\x7e\x12\xf0\x6a\x4b\xd7\x2c\xb9\x32\x13\x33\x2f\x39\xa9\x1a\x30\x91\x3a\xa4\x9e\xd5\x13\x64\xe3\xe8\x59\x94\xfa\xa2\xe3\xca\xb7\xef\x48\x7f\xb5\x8a\x1d\xdd\x46\x3f\x61\xd7\xe4\x66\x6d\xd4\x44\x24\x02\xc6\x27\x54\xe1\xae\x4a\xfa\xb3\xd3\xa6\x1b\xef\x08\xff\xf3\xee\x31\xda\xa5\x89\xad\x1e\x13\x5e\xce\x83\xc7\xcf\x8c\x4f\x04\x05\x29\xef\xef\x1c\xcd\x90\xa1\xa9\x5b\xb3\xa8\x0d\xab\x99\xf0\x63\x2b\xe4\x16\x5d\x6c\x2c\x33\x5f\xfe\xd5\x51\x32\x59\xd6\xad\x16\xa4\x28\xf0\x26\xd1\x4a\xf1\x1a\xa0\x20\x55\x4b\xbd\xe2\xb5\x13\x94\x6e\x90\x51\xbe\xb1\xfb\xfd\x7e\x8d\xbb\xea\x19\xa8\x0e\x92\x83\xe1\x31\x9d\x10\x85\x5a\x6e\xdc\x03\x15\x8d\x1d\xca\xcd\xc7\x88\x55\x5a\xa5\x72\xf8\x99\x5b\xe1\x8e\xcf\x37\x9b\xea\x06\x37\xfc\xf5\x66\x3d\xf0\xda\x44\x20\xce\xf8\x4b\x18\xbb\x33\x7d\x3e\x69\xe0\x33\x54\x8b\x6f\x5d\xf1\xf3\x1a\x07\xd8\xc7\xb6\x9d\xcc\xc1\x8a\x93\x1f\x56\x84\x06\xb0\x89\x63\x99\x8d\x70\xf7\x1b\xda\x45\x73\x7d\xc2\x62\x18\x6a\xbe\xb2\x41\x33\x17\x46\x75\xe4\xc2\x1c\x93\x07\xb1\x03\xdb\xf4\x21\x2a\xf3\x49\x4a\x2d\x2e\xfc\xf3\x29\x5d\xf5\x0a\xf6\x74\xd0\x5f\xb4\xda\x46\x2a\xbd\x34\xf6\x88\x89\x5d\x43\x74\x76\xe1\x0d\x8f\xa4\x8f\x90\x89\x6a\x38\xaa\xdf\xa5\x3e\xf9\xe7\x1a\xca\x02\x3f\x60\x0d\xe1\x52\x14\x7e\xb6\x23\x5d\xda\x23\x06\x3e\xa1\xc5\x59\x4f\x49\x8c\xb8\x03\xf2\x9b\x6b\x6f\x97\xed\x7c\x6c\x1d\x03\xed\x48\x53\x62\xcd\x10\x51\x9c\xba\xf2\x4f\x0e\x1d\x99\xbc\xef\xac\x54\xc1\xd8\xf7\xa0\xc4\xab\x53\xc6\x27\x22\x75\xd0\x04\xcd\x3d\xf9\xb6\xba\xae\xa9\x73\x21\x38\xde\xcb\x3f\x64\xa7\xcf\x50\x83\xfa\xd8\x13\x35\x41\x6e\xf9\x73\x17\x68\x19\xad\x41\x7a\x69\x23\xfd\x90\x97\xbe\xa6\xef\x94\xe3\xef\x11\xd7\xc8\xcd\x77\x87\xa8\xc0\xea\x5e\x11\x80\x73\xaf\xbf\x25\xff\xbc\x97\x98\x2e\x6e\x41\xb0\x28\x83\xc8\x76\x69\xbe\x8b\x59\x2d\xb3\x0a\xc8\xbf\x7f\x9c\x60\x15\xc2\x72\xb4\x2f\xff\x87\x5d\xb2\x1e\x6b\x52\x6a\x0a\xe1\x9c\xc2\x6d\xf7\x69\xc4\x3c\xea\x71\x17\x44\x9e\x38\xc7\x6b\x67\x96\xab\xde\x62\x48\xd8\xe1\xc0\x1d\x49\xdb\x81\xdc\xde\x52\x39\xcc\x5d\x07\xcf\x75\x81\x9d\xf2\x4d\xcb\x1d\x3b\x2d\xc7\xc9\x53\xa7\x96\xca\xe1\x73\xaf\x65\xb6\xdd\x0d\x1c\x57\x28\x93\x66\xa8\x85\x23\xf1\x0d\x61\x40\x80\xb6\xc8\x07\x81\x1d\xe2\x79\x88\xf1\xb4\xf5\xb3\xd7\x34\x10\x37\xf1\xea\x81\x8f\x63\xce\xdb\xb7\x47\x68\x02\x2a\x94\xb9\x42\x79\xaa\xf8\x2f\x9a\xd6\x6e\x15\x23\xc1\xb3\x0c\x4b\x9b\xce\x11\x39\x8f\x45\x65\x9c\x09\x04\xdd\xf6\x37\x14\x5b\x70\xec\x12\xd7\x0b\x6c\x54\x2a\x87\x57\x3f\xaa\xc0\x41\x14\xc1\xfc\xdc\xca\x50\xd1\xd1\xc3\xd1\xf1\x2f\x95\xc3\x17\x76\x0e\x51\x2f\x45\x15\x09\x79\xba\x9d\x9a\xc8\x17\x6e\x70\x07\xcc\xe8\x59\xdf\xb7\x43\x51\x5b\xf2\x2d\x97\xf3\xa4\x40\xf6\xe0\xa0\xc2\x1c\xb7\x91\x80\x31\x8f\xb9\x5f\x4e\x8a\x2d\xb5\x8d\xb9\x71\x5b\xfa\xb4\xf6\xa2\xa0\xea\x08\xec\xa1\xec\xfc\xef\x5e\x29\xed\xa0\x91\x32\x63\xff\xc7\x49\x61\x81\x00\x0a\x77\x01\xe7\xaf\x5d\xf9\x9a\xc6\x32\x41\x5e\x6c\x52\x58\x30\x5e\x16\xc0\x5e\xd7\x64\xdc\xd2\x47\xfc\xa0\x4b\x06\x9c\xad\x36\x0d\xcd\x52\x39\x5c\xfb\xba\x2e\x16\xcd\xd5\x31\xc4\x6b\x74\xae\x10\xbc\x34\xcc\x2b\xbe\xf9\x2f\xca\x12\xc6\xc4\x3e\x22\x51\xa8\x08\xbf\xb8\x48\xf7\x50\x65\x35\xcc\xb8\xb7\x7d\xfc\x42\xbe\x36\x46\x26\xa8\x0a\x30\x15\x32\xf1\xe1\xcc\x37\x87\xa4\x7a\xcc\x26\x2c\x95\x0b\x79\x20\x9b\x96\x56\x32\xec\x10\xa4\xcb\x3f\xdc\xbb\x4b\xc7\xb6\x79\xc9\xde\x3d\xff\xc3\xc1\xe9\x67\xd4\xc2\x28\xd6\x42\x2f\x7c\x5f\x3b\x85\x5e\x93\x24\xda\x6e\x13\xcf\x4a\xf6\xf5\x93\xbb\x4b\xe5\x70\x9b\x9d\x2c\x8e\x6b\x41\x06\xa0\x96\x9f\xa3\xf9\xa4\x36\x31\xaa\xc7\xfd\x05\x59\x39\x4e\x39\x8a\xb1\x19\x79\xe6\xcb\xcf\xd9\xab\x4a\xa1\x0b\xa2\x0c\x1c\xaa\x26\xd3\x3a\x14\x66\xf4\xab\xc3\xfe\xf4\x3b\xc9\xe8\x13\x55\x48\x5c\xde\xf6\x1d\x96\xc3\x4d\xc3\x12\xee\x5f\x9b\x16\x01\x08\x95\xd8\x76\x10\xc3\x68\x76\x69\x44\x0f\x18\xfa\x0b\x37\x89\x45\xca\x2c\xbc\x49\x03\xdb\xd4\x5f\xc3\xec\x87\x65\xc6\xb1\x30\x31\x71\xad\x06\x9c\xad\x0b\x06\x24\xd3\xac\xc9\x53\x27\x95\xca\xe1\x3e\xc9\xa3\xb7\x38\xdf\x35\xf7\xe7\x45\xca\xda\xce\xb6\xe3\x01\x66\x7e\xeb\x0c\xad\x86\x20\x6e\x54\x46\x81\xf0\xe0\x1d\xdd\x0a\xb5\x91\xa1\xf5\x1c\x46\xc4\x43\xf4\x9a\x7b\x15\xfb\x3e\xe4\x5b\x98\x07\x7c\xe8\xc7\xf3\x5f\xeb\x51\x28\x6c\x94\xf6\x0a\x06\xe9\xbc\x45\x17\x40\x0c\x05\x49\x86\xa5\x0c\x7b\x5e\x86\x14\x54\xf8\xcb\xf1\xa1\x4a\x99\x15\x30\x0e\x04\xe6\xb3\xf9\x36\xf9\x53\x67\xcc\xe8\x16\x66\x32\x85\x0d\x3e\x8c\x52\xe7\x3b\x0e\x38\x3c\x25\x8e\xf9\xb3\x5e\x83\x7b\x75\xf9\xe5\x9d\x9c\xdf\x33\x5d\xb3\x1c\x71\x90\xc7\xc8\x65\xaa\xc0\x61\xe1\xfc\x47\x15\xd6\x91\x8d\xd6\xa7\x66\xe1\xaf\xaa\xfe\x4d\xa8\x45\x01\xe3\xc6\x66\x8f\x50\xbe\x2c\x57\x71\x96\x33\x8d\x75\x77\x8c\x55\x4a\x0c\xea\x10\x0f\xeb\x6f\xb5\x2f\x8f\xdc\x24\x22\x79\x0a\xdf\xa2\x2f\x7f\x70\x8a\x86\xaf\x64\xc4\xc1\x48\x31\xeb\x2b\x9e\xf5\x14\x54\xb1\x88\x3b\x84\x96\xca\xe1\xea\x35\xc9\x25\x9a\x3e\x2d\xa3\x03\x5c\x64\x6f\xca\x19\x5e\x83\xda\xc8\x27\x36\x8e\x4f\xc2\x6c\xed\xb7\x51\x13\x7b\x1e\x8a\xf5\xc6\x97\xce\x0f\x1f\xec\x56\xc8\xe3\xae\x09\x52\xb9\xe5\xbe\x22\xd6\x86\x0e\xa8\xca\x10\x91\x33\xe8\x35\xc2\x96\x69\x45\x8c\x3a\xc8\x0d\x7e\x78\x94\x92\x24\x0c\x83\xd3\xa0\x64\x84\x9e\xd6\x3e\x32\x5b\xd8\xc7\x84\xc5\xc2\xc5\x79\x7d\x45\xec\x01\x4f\x3d\x3a\xb2\xe1\x23\x23\x14\xf4\x87\x85\x40\xa5\xb7\x30\x67\x0a\x54\x0c\x2b\x58\xc0\x49\x70\x57\xde\xa6\xee\xe5\x61\xff\x13\x9d\x90\x0f\x9e\x90\x01\x62\xf2\x4c\x45\x0f\x39\xdc\xb9\xe7\x62\xbd\xc2\xc5\xa9\x39\x4e\xdc\xff\xe5\xc6\xcd\x55\xca\x42\x44\x5c\xaf\x12\xf0\x64\x5e\xec\x1c\x9b\x5c\x52\x54\xa3\x51\xd3\x77\x4a\xa1\x69\x53\xa7\x6e\xc3\x8a\x3a\x5f\x7c\x50\x77\x6f\x42\xd5\x2a\x4c\x0f\x17\x77\xe8\x81\xb8\x41\x84\xb7\x7b\x5f\x71\xf9\xe9\xb4\x89\x0a\xae\x13\xcf\xa0\x75\xbe\x38\xc9\x80\x45\x8b\x9f\x5b\x00\xea\x11\xf3\xa2\x7f\xd4\xc0\xfd\x40\x2e\x8a\xd3\x74\xe9\x19\xea\x24\xa2\xb5\x47\x2e\x92\xb9\xd9\xa2\x8c\x11\xfe\xd1\x97\xee\x4c\x83\xc4\xeb\x38\xb0\x1b\xc8\xf3\x21\x5d\xa1\x94\x5e\x65\xfe\xd8\xf3\x32\xba\x10\xa7\xce\x78\xda\xe5\xd5\xea\x9d\x8a\x6d\x94\x1f\xf4\x06\x36\x07\x1a\x4e\x90\xd6\x3d\x8c\xa8\x08\xa9\xc2\x21\xcd\xb6\x1d\xf9\x56\x54\xcd\xf5\xab\x70\x72\xcd\x73\xc3\x54\x7e\x2d\xc3\x9e\xa0\x3a\x7f\xb3\x21\xbf\x91\x81\x98\x10\xfc\x9b\x35\x1b\x82\xc8\x35\x57\x97\x97\x45\x0f\x79\xe8\x11\xd9\x34\x70\x04\x49\x35\x50\x62\xc4\xaf\xc6\xcb\x81\x2d\x6e\xe1\x12\xad\xc7\xce\xfc\xc5\xb6\x01\x31\xfb\x22\x30\x09\x4f\x9c\x6f\xbe\x3c\x44\x2d\x14\x8c\xf8\x14\xde\xf8\x9e\x2c\x20\xa0\x0b\xec\xcb\xfd\x23\xaf\xec\xfd\xa8\x4d\xb8\x8e\x1b\x3f\xdb\xdf\x59\xad\xd9\xee\x20\xbb\x6e\xa5\x31\x51\xb9\xcf\x6b\x0b\x0c\xc1\xad\xa8\xab\xd1\xb2\x72\x77\x6a\x08\x29\xff\xf3\xe4\xf1\xfa\x9c\x97\xfb\x5f\x26\x5b\xa6\xe2\x72\xa6\xfb\xa1\x70\xc5\x9b\x78\x53\xf3\x90\x2f\x6b\x69\xc2\x21\xf4\xd7\xb7\xa9\xa2\xd9\x94\xd6\xa3\xc7\xbf\xa2\x0d\xd2\xa5\x67\x30\xe4\x1b\x16\x0f\xf9\x37\x8f\x93\x59\x86\xf3\x38\x54\x9f\xf9\xb3\x57\x69\x88\x20\x17\x4f\xba\xec\x92\x4b\xa2\x5f\xb0\xed\xc4\x30\xed\x13\x61\xc0\xe9\x15\x47\xab\x9b\x77\x5a\x22\x7e\xa9\x45\x03\xc6\xd5\x49\xcb\x7d\xc5\xeb\xe7\xaa\x49\x92\x73\x3a\xf9\x5a\xbd\xd4\x26\xff\x17\x17\x30\xaa\x33\xea\x63\x10\x32\x0d\x1b\x95\xb8\x1d\xc1\xfc\x8d\xe4\xd9\x7a\x7d\xe2\xc2\x37\x6a\xdc\xc4\xc3\xd6\x5a\xde\x6a\xc0\xe1\x24\x62\xce\x53\x5e\xa5\x7b\x01\xf2\xd3\x29\x06\x32\x53\x34\x61\x96\x1a\xf6\x2f\x2b\xb9\x51\x15\xc7\x47\x8c\x0a\xe4\x85\x7f\xc6\x18\x04\xf8\xeb\x39\x43\x5c\x55\x60\x08\xdb\x40\x34\xef\x5b\xdd\xaf\xbe\x48\x6c\xbe\xf3\xd0\xeb\x5a\xf3\x14\x30\x37\x9e\x9e\xe4\x56\x3c\x75\x81\x5c\xe8\xf7\x32\x44\xdc\xfe\x44\x79\xbe\x5d\x95\xa8\x4e\x97\x52\x6e\x1d\xf0\x83\x27\x95\x16\xc8\x47\xb1\xd0\x75\xe1\x49\x08\xeb\xa5\x05\x9d\xcb\x3b\xe7\x76\xea\x95\xcf\xf8\xe3\xc2\xd2\xa2\xe5\xd4\x91\x6f\x01\x2b\xea\x81\x8b\x06\xf2\x3f\x9c\x52\x2a\x87\xff\x7d\xab\xce\x74\x77\x69\x83\xcb\xbc\x24\x11\xeb\xaa\x5d\x00\x99\x58\xcc\x3c\xd5\xa0\xf4\x15\x01\xe8\xc2\xeb\x7c\x86\x5c\x0c\xb5\xdb\x13\xf7\x4b\xff\x16\x33\x9b\x46\xa7\xbc\x24\xf6\x18\xb8\x1f\xad\xa6\xb3\x47\x0c\x57\x4a\x23\x97\xd4\x03\x3b\x86\x76\x14\x96\x28\x98\x95\x7a\x67\xd0\xc9\x33\xda\x9a\xb1\x4a\xfb\x8a\x91\xed\x5b\x9c\x70\x9e\xfb\xea\x69\xf9\x83\xf8\x42\xc4\x21\xbe\xcf\x05\x1b\xc2\x5b\x4e\xf2\x0f\x60\x63\xb7\x34\x43\x7f\x56\x97\xbe\x99\x3e\xfc\x93\x67\x4e\x9d\x2e\x04\xd6\xb4\x12\xba\x82\x71\x6c\x34\x39\x71\x97\xe2\xa8\x87\xbd\x3a\xe1\x9c\xfd\x64\x6f\xfe\x0f\xcd\xd7\x2a\xa8\x73\x6b\x64\x51\xc9\x3f\xf7\x1a\xa4\x78\x10\x15\xe7\xb5\xde\xd5\x87\x34\xcb\x5e\x6a\xf7\xc7\x92\x2a\x7e\xfc\x8a\xe1\x6a\x0e\xc0\x8c\x70\xed\x90\xce\x52\x39\xbc\x6c\xb6\x12\x06\x41\x83\xf4\x9d\x47\x55\xf3\x83\x04\xa0\x73\x42\x13\x40\xa0\x0e\x16\x1e\x05\xf3\xd8\x25\xda\x5f\x81\x72\x66\x14\x9a\xf4\x8f\xf2\x79\x2d\xdd\xf9\x16\x71\x7b\x63\xb6\xc6\x80\x01\xda\xea\x44\xa0\x1b\xf8\x50\x7a\x50\x97\x3e\x29\xc5\x4c\xd8\xb5\x7d\xf0\x11\x45\x31\xdb\x41\x76\x14\x21\xc2\xc7\xb7\xa6\x23\xaa\x45\x99\x87\x2b\xc8\x10\x02\x06\xe1\xbc\x37\x63\x0c\x92\x03\x5b\xca\xf0\x67\xcf\x8c\x4e\x7e\x4c\x95\xf8\xeb\x6b\x51\xd0\x50\xcd\x28\xa6\xb5\x0d\xd5\x07\x8f\x1c\x38\x5f\xec\xac\x2b\x8a\x17\xc8\x5d\xc3\x5d\x0a\x9d\x3d\x20\xe0\x36\xe3\xf2\xa8\x84\x2e\x76\xdd\x9f\xac\x3d\xd6\x67\xeb\xd3\xe2\x80\x07\x63\x33\x44\xe2\xc2\xe0\xee\xa7\xbb\x3a\xd4\x66\x42\xec\x7a\x38\xce\xa8\x6b\xab\xba\x70\xa8\xd8\x80\xb1\x1d\x33\x21\x9d\xa4\xb0\xe7\x23\x3e\xb8\x77\x92\xf0\x96\x5b\x75\x1a\x12\x80\x61\x93\x78\x0a\x56\x9c\xf7\x54\x3a\x46\x09\xf7\xe3\xf8\x4a\xcf\xdc\x3b\x4c\xab\x50\x6c\x4e\xb3\x08\x1b\x9b\x32\x1b\x29\x01\x51\x13\xe3\xdf\xd7\x37\x6b\x13\x62\x87\x30\x71\x40\xe3\xf2\xc4\xae\x6b\xf1\x91\xcf\x6b\x58\x8c\x0b\x39\xa2\x40\xc4\x0d\x0b\x07\x70\xc1\xbf\xf2\xdc\x39\xd1\xbf\x5d\xb2\x44\x5d\x8f\x17\x7e\xb5\x42\xe8\x9f\x23\x4f\xef\xad\xfb\x72\xf7\x6c\x97\x74\x6b\x4f\x32\xcb\xc3\x3f\xec\x55\x4a\x59\x8c\x0c\xe0\xa6\xff\xb8\x4d\x35\x84\xf6\x02\x80\xf7\xc1\x2f\x7f\x78\x92\x66\x00\x43\x00\x3c\x29\x46\x42\x68\x51\xe2\x03\xe7\xf1\xb8\xa5\x2c\x5e\xb4\x13\x29\x67\xd7\x62\x56\x3a\xf1\x65\x59\xf6\xc4\x86\xe0\x32\x86\xfe\xe0\x2e\x39\xac\xb4\x55\x20\xcf\xf7\x35\x38\x83\x64\xa6\xc1\x04\xfb\x9e\x59\x6d\x32\xbc\x35\x08\x6e\x96\xca\xe1\xec\x4e\x79\xef\x7b\x10\xd7\x92\x2d\x7e\xfa\x70\xfa\x86\xb5\x70\x32\x86\xf9\xea\xc3\xf2\x9f\x07\x3e\xb2\xa2\x87\xf4\xa4\xb6\x25\xf2\xf8\x48\x40\x2a\x76\xfd\xa5\x4d\x73\x44\x04\xe8\xff\xa4\x4c\x2c\x5f\x07\x12\x44\x42\x8e\x35\xf3\xee\x0a\x3f\x99\xa2\xed\x5d\x66\x4c\x8d\x47\x1f\xfe\x9e\x51\xd2\x68\x32\xfb\x3f\xef\x9c\xa3\xe1\x67\xa6\x42\x85\x3f\x4e\x43\xc0\x8a\x4e\x33\xfe\xa9\x6c\xe1\x79\xca\xa4\x81\xd8\x19\xbc\x5c\xe1\xd5\x8d\xc3\x95\x21\x07\x4a\x4c\x6d\x4b\xe5\xf0\xb1\x5b\x35\x5e\x0a\x71\x62\xa6\x63\x2e\xa7\xcb\xa1\x5a\xa4\xea\xc7\x28\x3b\x41\x61\xbf\x96\x21\xcf\xa5\x26\xf7\x87\xe0\xf2\x6e\x03\xe0\xcf\x6f\x24\xb6\x83\x14\x7e\x6f\xe1\x63\x53\xb4\x9a\x94\xfa\xc4\xb0\x80\xee\x1d\x1f\x8d\x11\x0f\x8e\x50\x0a\x01\x86\x7c\x5c\x4b\xb4\x89\x73\x4f\x2c\x4d\x5f\x4f\x86\xf9\xa2\xcf\x00\x9a\x68\xf4\xbb\x2d\x53\x19\x40\x18\x06\xaa\xa8\x16\x4e\x3f\xbd\x3d\x3d\x82\x9f\x12\x4f\xa2\x4f\x6e\x90\x71\xd4\xc6\x0d\x7d\xc5\xdb\x57\x78\xe6\x2e\x38\x90\x2b\x88\x43\x59\xdc\x19\xbf\xfc\xfa\x30\xfd\x9d\xb8\x30\xb2\x79\xe0\xb8\x14\x07\x01\x4b\xd6\x14\x60\x61\xe0\x34\x5d\x7a\xde\x23\x35\xf8\xaf\xc5\x73\x35\xd8\xf9\x15\x4a\x2d\x77\xd3\x5c\x65\xd4\xc0\x89\x22\xfc\xd3\xdf\xfb\x82\x62\xe1\x45\x5b\xd4\xe6\xc0\x9e\xcf\xbc\xa1\x40\x81\x51\x32\xd2\xca\x59\x73\x54\x4b\x2c\x1b\x33\x20\x3e\xe5\x17\x3e\x99\x3e\xb3\x36\xa9\x8a\x74\x59\x5c\xb4\x79\x4c\xea\x9d\x04\x9e\x57\xea\x45\x96\x6a\x01\x71\xe3\x16\x19\x95\xaa\xc4\x06\xf0\x77\xe1\x83\x87\x35\x23\x43\x64\x12\xda\x4f\xdb\x19\x56\x67\x28\xbe\x5b\xc4\x60\x34\xea\x50\x41\x3a\xc1\x28\xaa\x0a\xd7\x4e\x1d\xb9\x2d\x6e\xa1\x1d\xfd\xdd\x27\xee\x1d\xab\xf5\x95\x2e\x72\x6b\x69\x21\xaa\xdc\x95\x13\x32\xc8\x63\x0f\x27\xfc\xe5\x6f\x4d\x1b\xae\x24\x26\x27\x45\x79\x1c\xfa\x7c\xfa\xd2\x11\xe0\xbe\x61\x18\xcc\x15\x6f\xdb\x97\xbd\x93\x09\xdd\x2b\x3c\xf1\x00\x74\x88\x0b\xe7\x2f\x9b\xcf\x21\xce\xe3\x65\xd5\x3b\x79\xe6\xff\x4f\xd9\xdb\xc7\x5b\x51\xd5\xfb\xe3\xec\xd9\xfb\x12\x2a\x22\x1c\x10\x10\x11\x91\x50\x4c\xd8\xc7\xc3\x91\x27\x89\x0c\x11\x09\x15\xd9\x04\xa8\x64\x6a\xae\x3d\xb3\xf6\xde\xeb\xec\x99\x59\xe3\x9a\x99\x7d\xce\x3e\xa1\x19\x11\x91\x11\x19\x19\x79\x8d\xbc\x64\xa4\x5c\xbe\x46\x64\xc4\xd7\xbc\x7c\xcd\x8c\xcc\x8c\xcb\x25\x22\x23\x24\x22\xae\x91\x91\x91\x79\x89\xcc\x3c\xe3\xef\x35\x9f\xb5\x66\xd6\x9a\xb5\xcf\xfd\xe3\xf7\xa7\x20\xe7\xec\x3d\xb3\xd6\xe7\xf1\xfd\x70\x15\x80\xde\x8d\x29\x5a\x4b\xef\x91\x44\xa1\xe7\xd2\xfd\x0a\xe1\x0b\xac\x4e\xe2\x12\x61\x35\xdf\x7a\x16\xaf\x43\x8c\xda\x4d\x55\x8d\x70\xd9\x3a\x0d\xc8\x4b\x7c\x31\x7b\x88\xbe\xd8\x36\x22\x33\x6d\xa2\x89\x28\xda\xd5\x3d\xc3\xc5\x63\xb5\x61\x36\xda\xe0\x5a\x23\xc6\x3b\x8a\xb4\x8a\x8b\x7a\xad\xf8\x16\xba\x75\xd9\x5a\x47\x97\x3d\xd0\xe2\xac\x87\x6c\x1f\x22\x55\x61\xf0\x51\x45\xf9\xb1\xe5\x22\xd9\x9e\xea\x10\x8d\x2a\x01\x1f\x80\xde\xb9\x49\x43\xf3\xd6\x28\x11\xf0\xfe\xbe\xfc\x7b\x7b\xe4\xd9\x2a\x87\x1c\x23\x1b\x7d\xee\x46\xf9\xa5\x2a\xd8\x0f\x28\x75\xa1\xed\xda\xc3\x84\x29\x19\xee\xe1\x0b\x8c\xf5\x87\xb3\xe3\x0f\x87\xfa\x75\xda\xf0\xeb\xa4\x5f\x4d\xef\x3f\x6d\xd7\x22\x4c\x37\x72\xad\x94\x4c\x04\x63\xaa\x2b\x35\x46\xbc\xef\xd2\xee\x32\xb2\x6d\x6c\x71\x2a\xe7\x2f\x6f\xd5\x38\x5f\x0c\xc5\x8d\x31\x65\xc2\xc0\x28\xf7\xfe\x4a\x0a\xd2\x36\x31\x69\xa0\x32\x0f\x6e\xe5\xc7\x84\x11\x44\xa2\x37\xa1\x3f\xbb\xfb\x7a\xda\x54\xcc\xd2\xd2\x79\x93\x4b\xc5\x52\x94\x3f\x7c\xa1\x56\x35\xda\xc4\x42\xcd\xc4\x6b\x24\xdf\x3b\x51\xf8\x71\x86\x8c\xbb\xc3\x25\xd1\xf8\xa3\x8a\x1a\x2d\x37\x69\x88\x93\xc1\xaf\x06\x64\x8f\xa4\x15\x06\x89\xf1\x52\xe7\x5a\x99\x52\x67\x74\xb6\x4f\x07\xad\x89\xb3\x55\xa3\x67\x30\xf4\x81\x36\xd2\xf8\xcc\xf1\x09\x5a\x25\xe5\x9b\x93\xf5\x06\xae\xcf\x78\x38\xd2\x9a\x62\xea\x02\x72\x07\x0a\x17\x6b\x3c\x8f\xba\xf3\xc3\x40\xd2\xba\x2f\x79\x7a\xb8\x22\x62\x53\xa6\x2e\x86\x8d\x65\xe1\xb2\xd7\x65\x90\x8a\x4b\x86\x7e\x2a\x56\x47\xb1\x97\x60\xa1\x43\x01\x78\x18\x7d\x79\x01\xbf\xa8\xed\x57\xf1\xc9\xf1\xc1\x43\xd9\x14\x5c\x16\xd4\xb6\x0e\x4d\x53\x06\xe8\x60\xa9\xe8\xdc\xc0\x8d\x32\xe4\x83\x7d\x8a\xb6\x63\x38\x3d\x52\xef\x94\x30\xc7\x2b\x9c\xd1\xfa\x6d\xe2\x5a\x04\x8a\x12\xee\x71\x39\x6d\xa7\x1a\xf3\xa9\x25\x14\x53\x77\xed\x1a\x91\xfc\x83\x8c\x94\xc3\x9d\x0d\x29\x15\x19\xc4\x5d\xd0\x89\xfb\x35\x24\x32\xf5\x03\x81\xd7\xc8\x7d\x79\xf7\x58\xf5\x40\x2d\x5e\xbc\x6c\xb2\xfc\x51\xc5\x52\xb4\x6f\x74\x8a\x97\x5e\xbc\x38\x23\xee\xd7\xf6\xba\x92\x72\x9a\x4c\x28\x33\x6e\x7b\x53\x7e\xd6\x7b\x42\x62\xd6\xa1\x0f\x9b\xbf\x4d\x0b\xd2\x7e\xd3\xac\x51\xd0\xdc\xe1\xcb\xe0\xf8\xed\x4d\x5a\xd2\x32\xe2\x88\xd3\x9b\x10\x36\x78\xe4\x20\x1f\x92\x7d\x38\xc4\x70\x4a\x85\x16\x7a\x99\x82\xeb\x6c\x7c\x6c\x7b\x0b\x63\xa4\xc5\x7c\xeb\x8a\xe7\x8d\x67\x54\x3a\x5a\x85\xb8\x24\x20\x00\x8d\x1d\xad\x0b\x95\xc5\x75\x33\x0f\xef\xc1\x15\xd9\x7b\x4c\x2b\x84\x29\x83\xca\xe8\xad\x1e\x3d\xf9\xa4\x96\x73\x80\x61\x03\xaa\xd7\x5b\x8a\x9b\x42\xd9\x46\x66\xdd\x41\x04\x9a\xbd\xd7\x8e\xab\x92\x72\x5c\x56\x35\xf1\xd5\xf9\xde\x3e\xf9\x74\x3b\x3b\xa7\x4c\xeb\x84\x76\x6c\xa5\xa8\x41\xa0\xc3\xb4\x60\x88\xd3\x57\x08\x3b\x74\x24\x6a\x7c\x7a\xa0\x92\x16\x0d\xc9\x9c\xc3\x9a\x9b\x2f\xd7\xd8\x87\x8a\x49\x7a\x7c\x7f\x21\x90\x77\x1b\x37\x00\xf8\xf5\xbe\xdd\x1a\xbc\x19\xf9\x35\xe2\x56\x03\x2e\x22\x27\x82\xe1\x43\x1a\xa6\xb5\x42\x99\x48\xad\x91\x71\x23\xff\xbc\xc2\x5d\x93\x07\xb9\x5d\x8f\x29\x84\x6d\x46\x30\x28\x19\x0c\x5e\xde\x02\x73\xf2\x49\xd9\x16\x84\xab\xae\xc7\xb4\x12\x14\x9b\x21\xe3\xb4\xf9\x5c\x7d\xe3\xc8\x16\xaa\xf7\x87\x96\x2d\x29\x96\xa2\x15\xa7\x75\x23\x93\x20\x80\x2e\x0d\xc8\x66\x03\xc7\x69\x7f\x49\x35\xbe\x68\x6e\xf0\x56\x0d\x60\x67\xd6\x08\x6e\xa4\x75\x83\x71\x7c\x47\xf6\xc0\x76\xd1\x3a\xf6\xd3\x0e\x74\xd1\x0b\x02\x55\xcd\x0b\x95\xdc\x15\xef\x68\x22\x16\x38\x71\xeb\x12\x39\x61\xcb\x21\x79\x1c\xe2\x66\x08\x94\x2c\x44\x9a\xfe\xf9\x00\xf9\x6e\x2a\xed\x9d\x30\x51\xbf\x71\x4d\x8b\xf5\x2d\xf1\x53\x4f\xb1\xfc\x5b\x9a\x6e\x93\x5f\x27\x90\xa0\xf8\xd7\xef\xbd\x46\x8c\xcd\xc2\x32\x17\x2a\xe1\xb3\x64\x85\x2b\x6c\x85\x4c\x04\xf2\xfc\x32\x4f\x2a\x9c\x55\x15\xa1\xaa\xdc\xf2\x2d\xb2\x4a\xa8\xd1\x00\xdb\xc0\xa0\x05\xab\x08\xbe\xd6\xcc\xbb\xc2\xc4\x14\x22\x65\x03\xd9\x21\x77\xa5\xcc\xfd\x71\xb1\x5c\x79\x00\xef\xe1\x52\x65\x3a\xc0\x8a\x49\x7d\xfd\xdc\x8a\xac\xb7\x89\x4d\x1d\x2c\x54\x34\xf3\x7f\x7b\x50\x5f\x86\x50\xb3\xce\x39\xd7\xff\x67\xa9\x32\x5b\x89\x5b\x52\x08\x21\x1f\xdd\xa9\xb0\x6c\x43\x87\xd8\x04\x6a\x62\xf8\x17\xbd\x7b\x39\x6e\xad\x34\x69\x29\xa1\xcc\x42\x2a\x7a\x60\x7f\xaf\x6e\x8f\x10\xc7\x1c\x6c\x09\x0e\x4f\x7b\xc7\x30\x91\x71\xa8\x9d\x4e\x3b\x72\x13\xc7\x2b\xb3\x3e\x4c\xaa\x2a\x78\xf7\xcb\x73\x04\xc0\xde\xe6\x6d\x41\x29\x1a\xb2\xb0\xc5\xf2\x36\x00\x05\xa4\x64\x2a\x71\xf7\x09\x55\x65\x58\x48\x69\x97\xfa\x72\x6f\xdd\xc1\x53\xfb\xcd\x88\x99\x54\xf9\x1d\x85\x19\xdb\xf9\x17\x5a\x4c\xcb\xa1\x43\x02\x5f\xdd\x45\x7c\x72\x57\x7b\x36\xe8\x2f\x59\x36\x39\x5b\x69\xe8\xc5\x39\x3e\xaa\xb5\x6d\xc4\xac\x61\xcd\x0d\xfc\x96\xa7\x74\xd6\x3c\x62\x02\x5f\x9c\xdf\xb4\x5f\x73\x30\x05\x12\xbc\x4f\x1d\x1c\xc4\x47\x5c\x24\xd0\x19\x13\x54\x2f\x12\xc0\xc7\xc4\x01\xee\x62\xe1\x9a\xb0\x30\x3e\x61\x71\xa4\xdf\x17\x68\x3c\x28\x8c\x12\x86\x4f\xb4\xb6\xed\x7c\x85\x40\xa7\x7e\xbe\x7f\x59\x2c\x48\x89\xaa\x88\x4d\xe1\x63\xa2\x46\xbf\xba\xbd\x73\x1a\x28\x24\x3f\x9e\xc0\xa4\xba\x31\x03\xe4\x3a\x8f\x5a\x7b\x77\x0c\x93\x0a\x5f\x75\xd1\xe6\x3e\xb6\x57\x29\x4b\x6d\xea\xc2\x4d\xcf\xd7\x1f\xcd\x3e\x88\x2a\x69\x60\x97\xdb\x70\x0f\x5a\xde\xa6\xc2\x01\xa8\x80\x74\x7d\x7b\xe1\x79\x4a\x6e\x72\x61\x12\x17\x6a\x4c\xa7\xf8\x56\xd5\x27\x77\xf3\xcd\xc9\xaf\x6b\xd9\xae\xca\x47\xac\x12\x8a\xf7\x91\x2d\x78\x26\x0c\x56\xa7\x42\x81\xe2\x9e\xd1\x67\x3c\xbf\x5e\xeb\x5e\x43\xb7\xce\x13\xdf\x32\x4f\x07\xba\x7a\x58\xba\x6a\xef\x3f\xa0\x56\xe3\xcc\x02\x1b\xe9\xdc\x93\x8b\x78\x4d\x7b\x23\x72\x95\xe5\xb8\x71\xf6\xf6\xd6\xea\x23\x99\xb6\x7c\x7a\xbb\x62\x53\x4d\x5d\x2b\x24\xf0\xed\x4c\x57\x5f\x93\x80\xe7\x85\x07\x17\xeb\xb3\x9a\xb4\x10\x1c\xa0\xf6\xf6\x76\x12\x88\xfd\x84\x31\xe0\x51\xdd\x17\xd5\xc6\x7e\x00\x8b\x08\x91\xb6\xe2\x22\x72\x56\x59\x6c\xdd\x6a\x8c\x70\xe3\x89\x7a\xaf\xa2\x64\x8e\x19\x72\xca\xca\x39\x99\xdd\xa9\x08\xd7\xda\x54\x95\x81\x37\x96\x3f\x26\x57\x70\x35\xec\x83\x90\x2e\x5f\xd8\xbd\xe7\x25\x5d\x64\xce\xc2\xac\x1b\x23\xc6\x87\x5c\x77\x9c\xba\x58\xf9\xfe\xa1\x50\x21\xcd\xd6\x2d\xd5\x9a\x2c\xaf\xa1\x7c\x28\x87\x9c\xa6\x73\xff\x3b\xda\xc6\x17\x3b\x69\x83\x91\x3f\x23\x45\x29\x89\xab\xc6\x9e\x51\xf7\xa5\xd5\x21\xae\x00\x6f\x60\xfc\x29\x7e\xe2\xe7\xb1\x66\x46\xdc\xfe\xbf\xee\x1f\xa3\x65\x48\x04\x01\xa9\x1b\xb2\x5f\x61\xfd\xc3\x72\x7c\x5c\x41\x5c\x94\xf1\x23\x2f\xf1\x1f\x45\x59\x15\xb9\xa4\x37\x41\x73\x5e\xfb\xdc\xc5\xca\x62\xd5\xe4\xd9\xc2\xb6\xb0\xa2\xc8\x54\x98\x3b\x91\xdf\x4e\xe2\x70\x41\x22\xbe\x5e\x5b\x71\xb6\xee\x6c\x9f\x66\x97\x04\xe7\x6e\xdc\xf4\x86\xe2\x40\x11\xe7\x4d\x6e\x71\x66\x7c\x63\x3b\x8f\xb2\x2a\x22\xc4\x1d\xa9\xec\xf8\xba\xdd\x2a\x43\x96\x78\x53\xdf\x3f\x5b\x82\x35\x2c\xec\x40\x1a\x4b\x97\x33\x43\x07\x8b\x80\x8d\xe2\xc0\x0f\xb3\x92\x81\x73\x86\x65\xab\x3a\x18\xc2\x3d\x3f\x52\xc7\x15\x76\x23\xc6\x73\x6e\xf4\xea\x33\xaa\x3c\x18\x38\xe9\xc4\x31\xa4\xf9\x62\x8b\x54\x56\x7d\x72\x86\x84\x73\xfb\x35\x32\x9b\x95\x89\x5d\x46\xb4\x58\x8a\xac\x37\x46\xa8\x99\xb1\x41\x84\xb3\x91\x31\xf0\x3e\xc9\xcc\xa5\x45\xa0\x45\xce\x51\xbc\xbe\x50\xd3\xa6\xca\x73\xcf\x7f\x71\x46\x76\x20\x76\xd5\x4c\xa1\x2a\xf1\xbb\xf9\xf2\xdc\x09\x6c\x3f\x87\x1e\xfe\x70\xcb\x90\xb4\xf4\xe6\xc2\x4c\x5f\x6b\x1f\xa9\xcc\x93\xa8\x34\xb8\x8f\x0e\xef\x1d\xa5\xc0\x29\x18\xc6\xf1\x29\x2d\x73\xe0\xe9\xf4\x40\xd6\x81\x55\xcc\xb8\xe4\xda\xf7\x0f\xcb\xf0\xdd\x85\x1a\xa8\x5e\x43\x56\x2f\x44\xd5\x53\xa7\x74\x5f\xef\x06\xf1\xa9\xa0\xfb\x16\x86\x3c\x26\xb7\x54\xc4\xb7\x41\x80\x5d\xe9\x89\xfe\xfa\x40\x22\xca\x81\xdd\xde\xb8\x23\x39\x67\x95\xd6\xe3\x02\x49\x14\x0a\xca\xb6\x89\xd9\x17\x52\xc5\xcc\xc9\xb4\xff\xf9\xaf\xbc\x9c\x5e\x2e\xda\x90\xf5\x50\x34\xed\x46\x5d\xdb\xce\x49\x70\xd2\xc6\xe2\x83\x52\x52\x50\x1d\x84\xe7\xbb\x1f\xba\x58\x99\x3e\xf1\xfa\x41\x0f\xe2\x23\x26\x66\xbf\xbb\x28\xe5\x60\xce\x1d\xfd\xf1\x75\x99\x53\xae\xea\x98\x2e\xce\x7a\xae\x32\x54\x67\xdd\x06\xa4\x41\xfc\x60\x72\x37\x7c\x9e\xdf\xdc\xaa\xec\x1b\x91\xed\xc0\x6e\xee\x37\x27\x25\x66\xd5\x61\xc5\x52\x34\xe9\x29\x45\x75\x1d\x23\xae\xb8\xf4\xef\x85\x6c\xb1\xd2\x4d\x82\x9a\xc5\x50\x37\xb2\x85\xb6\xdb\x98\xd3\xf2\xad\xf3\x5d\xb3\x8c\x2a\x4f\x1c\x52\x44\x60\x6a\xad\x4e\x1b\x63\x5a\x56\xcf\x0d\x62\x25\xb5\x56\x6e\xd2\x01\x79\x4b\x9b\xb8\x51\xc3\xca\x3d\xc9\x9f\x6a\x4f\xb4\x23\x53\xb1\xdd\x5f\x45\x1a\x85\xc6\xc6\xc8\x2d\x9a\xa1\x10\x3b\xce\xff\xcf\xd3\x23\x54\x5b\x85\xf4\x4d\x5a\xf3\xe4\xd9\xa4\x26\x06\xf0\x5a\x7e\xed\x40\x89\xd2\x36\x11\x01\x29\x0c\x25\x08\x76\x53\x06\x10\xa2\xfb\x34\xeb\x34\x86\xb9\xbc\x90\x40\xbd\x47\xbf\x5b\xa5\xca\xb8\xf3\x85\x6a\xa9\x2f\x37\xff\x55\x55\xb4\x80\x1b\xeb\xe5\x10\x3b\x3f\xc3\x7c\xab\x26\xfe\x3a\xc6\x85\x1a\xa9\xda\x41\x2e\xaa\x26\x84\xb2\xbe\xfc\xbe\xbb\xa5\xc2\x44\x2d\x8e\x17\xe3\x1f\xef\xc7\x44\x23\xb1\xe8\xeb\x5b\xcb\xfb\xb4\x85\xc4\xf7\x90\x2b\x5a\xf9\x45\x73\x05\x23\xc0\x6d\x10\x46\xa5\x68\xa0\xb1\x6b\xb3\xb2\xbc\x47\x56\x18\xff\xd9\x26\x4b\x99\x13\x2c\x59\x26\x23\xc0\xdf\xf6\xb4\xb8\x6f\x98\xb5\x64\x7c\x3a\xe5\xd4\x79\xca\xfc\x89\x81\x0d\xc0\x38\xc5\x64\x9c\xa1\x2e\x62\xe2\xba\xda\x93\xbd\x90\x38\xb1\x60\xb3\xe6\x36\x13\x39\x91\xa5\x8a\xcc\x5c\x0d\x37\x5d\xb3\xce\x1b\x9a\x9f\x14\x84\xea\x43\xc8\x5c\xae\x8b\x6e\xfc\xa9\x2c\x26\x07\x88\x31\xc2\xe3\xd7\x33\x73\x87\x89\xc7\x8e\xdd\xa2\x20\x81\x45\xa7\xf6\x29\x52\xc4\x49\x9e\x88\x9e\x5b\x32\x4c\x15\x74\xb1\x41\xbd\x86\xad\x56\xde\x52\x43\x55\xf2\x3d\x67\xc7\x30\x51\x89\xfa\xa6\x8d\x88\x10\x44\xb9\xb9\xad\x2d\xa9\xbd\x4b\xe9\x77\x7b\xf7\x25\x5d\x73\x05\x06\xdd\x3c\x77\xbc\xb7\x57\xce\x36\x5a\x9d\x06\x8c\xe3\x9a\x81\x9b\x8b\xaa\x55\xc9\x01\xca\x3d\xb9\x59\x0b\x05\x71\x52\x92\x65\x37\x0e\x78\x70\x74\x28\x13\xb2\x90\xa3\x9f\x92\xac\xff\xa6\xea\xe3\x77\xfd\x1c\xa1\x3e\x8b\x5d\x30\xb9\x3c\xae\x99\xf7\x51\x9b\x36\x9a\xb4\xa1\xea\x8d\x1b\x0b\xe6\x8d\x57\x62\x88\x1d\xb7\xd0\x2d\x11\xce\xf8\x5c\x5b\xe6\x22\xc1\x63\xfd\xa3\x25\x45\x00\x42\x95\xe8\xb0\x3d\x52\x34\x5c\x38\xb7\x94\xbf\xb3\x3f\x9f\xcc\x5e\xbd\x22\x35\xcd\xd0\x23\x92\x32\xf4\xe8\xfd\xda\x72\xd7\x27\x08\x14\xa6\xd2\x31\x48\xbe\xd8\xd3\x92\x8f\x05\xd1\x5e\xec\xe0\x3f\x78\xbf\xb2\x9e\xaa\x37\x6d\xb5\x8c\xc9\xb5\xed\x51\x04\xc2\x29\x77\xfb\x58\xa6\x68\xfd\xf8\x35\xda\x9d\x34\xb7\x7b\x8e\x0e\x4b\x7e\x09\x87\xa3\x41\x5d\x3a\x6c\x4b\x7a\x73\xa7\xcf\xe8\x8c\x8f\xdc\x81\x8b\x5b\x06\x1c\x99\x5e\xad\x14\xcd\x5e\xac\x29\x15\xd0\x72\xb9\x49\xfc\x84\xc1\x59\xf8\xac\xe6\xa6\xcf\x9d\x3b\x13\x3b\x93\xe1\xf6\x38\x25\xc8\x58\xd8\x8b\x3b\x4f\x37\x80\x29\x93\xcf\x25\xf3\x7f\x74\x2c\xe5\xee\x05\x34\xe9\x7e\x26\x4c\xd4\xf5\x16\xcb\x41\x2a\x8e\xb0\x48\x19\x04\xe2\xb8\xd6\xe3\x6a\x56\xdf\x6b\xe8\x92\x4a\x24\xc0\xdc\x93\x22\xff\x37\x5b\x13\x29\xc6\x8e\x97\xf2\xb2\xa2\x5f\xf4\xa6\x89\x83\xf9\xa4\xe5\x00\x9d\xac\x69\x1b\x6e\x1c\x04\x76\xc2\xe8\x89\x46\x1f\xd6\x79\xd7\xd2\xff\xf3\x99\xb7\x35\xa1\x70\xb7\x41\xa4\x35\xfb\xd7\x46\x28\x16\x08\x3d\x98\x99\x84\x23\x47\x8d\x8f\x5f\x93\x01\xf3\xc3\x7c\x78\xc5\x49\x99\xf8\x90\xef\x23\xdf\x87\x83\x13\x5f\x95\x85\x95\x64\xd1\x42\x5c\x13\xf8\x44\xdc\xbd\x61\xea\x63\xda\x6f\x87\xe2\x85\x8b\xdf\xf5\xe5\x7f\xbd\x2b\xbd\x02\x65\x64\x2a\xed\xfd\x47\xd6\x0c\x57\xab\xef\x64\x8e\x51\x18\x3d\x6d\x94\x16\x09\x9c\x24\xca\x1b\x83\xe6\xea\xce\xb9\x0d\x8e\x89\x18\xa3\xec\xa5\x80\xb1\x50\xea\x33\x3a\x2b\x3c\x28\x70\x5c\x45\xb1\x14\x35\x9f\x97\xb5\x81\x05\xa8\xcb\xc5\x86\x2a\xdf\x60\x81\x6e\x96\xa8\xa6\xb7\xaf\x4f\xcf\x8b\x83\x93\x6d\x69\x2e\x38\x94\x46\x31\x8b\x3a\x2d\xcb\x8d\x73\x56\x73\xa0\xd7\x3c\x1a\xda\xb8\x15\x74\xfa\xe2\xe3\x3a\x13\xad\x42\x41\xaa\x4b\xa0\x09\xa7\x09\x81\x09\x8f\x51\x1f\xf1\xbe\xba\xd1\xa9\x4f\x6e\xdc\x80\x51\x3b\xb1\xd7\xaa\x6f\x97\xaf\xd0\xc6\x08\x50\x68\x17\xbd\xad\xe9\xd6\xbb\x16\x41\x29\xb5\xab\x2f\xb7\x6a\xb9\xb2\x94\xf3\xfd\x50\xac\x39\x2f\xdf\xa5\x2c\x3f\x19\xc6\x50\xb3\xe6\xf6\x2f\x91\x35\x74\x8d\x54\x6b\x45\x26\xb8\x55\x7d\x13\x64\xb8\x73\x40\xd5\xac\xd4\x97\xfb\xc8\x34\x5d\x17\x1a\x83\xec\xb3\x00\x1a\xbd\xef\xa4\x0c\x23\x15\xd4\xa0\x0c\x0a\x87\x68\xdc\x83\x69\xbc\x68\x80\xfa\xd4\x22\xa6\x09\xc6\x85\x7e\x1c\xe5\x3c\x9a\x98\x83\x8f\xb8\x55\x45\x17\xdb\xa1\x53\xe6\x50\x1c\x56\x53\xb4\x5a\x19\x49\x88\x98\x85\x49\x7b\x14\x43\x46\x6a\xd6\x33\x12\x01\xf9\x67\x6b\xda\x18\x0e\x54\x12\x40\xd1\xf2\x8b\x0f\x48\x92\xba\x0f\xae\x55\x83\x34\x27\xa2\x26\x76\xb0\x2b\x81\xe4\x7d\x79\x47\x83\x6e\x06\x94\x26\xdf\xff\x8c\x90\x9e\x33\x19\xb6\x48\xe2\x6e\xfd\xc7\x9e\xcb\xb4\x2a\x17\x59\xd8\x69\xf6\x23\x1a\x6d\xfc\x54\x4b\x92\x42\xaf\x4b\xcc\x8d\xae\xbb\x43\x6b\x2f\xca\x34\x0c\x92\x39\xf6\x1f\xd6\x27\x08\x5d\x24\x1c\x8f\x7f\x32\x6e\xa4\xaa\xd3\x04\x38\x69\xd1\x2c\x76\x77\xea\xe2\x2e\x48\x0c\x3c\xa2\x5f\x5e\xa1\x94\x7e\xc8\x4a\xcc\xa9\xaf\xaa\x68\xd2\x6c\x98\xd1\x8a\x4d\x83\x7e\x54\xf0\x0b\xe7\x8c\x4c\x8a\x5c\x60\x37\xc3\x8b\xfb\xaa\x26\xf0\xe3\x10\x37\x0c\xc4\xb0\xa6\xf0\xe9\x05\x0a\xa4\x16\xdb\x36\xe7\x85\x2c\x1f\x2b\x47\xba\x6a\x3f\x68\x9c\xb5\xa2\x4d\x19\x45\xf9\xc4\x82\x68\x57\x70\x06\xe9\x1a\x42\x0e\x6d\x24\x5e\x0e\xdd\x97\x0b\x18\x98\xeb\x07\x88\x1b\x99\x6c\x5d\x2d\x9f\x8f\xec\x0f\xe2\xf4\xf9\xed\x6d\x2d\xa3\x25\x9b\x32\x2c\xc2\xed\x57\x67\x2b\x5b\x25\x52\x87\x6d\x74\xf4\xc1\x76\xfe\xf3\x17\xd8\x09\x4f\x3d\xff\xa9\xf5\xfd\x0f\x27\x78\xdc\xcc\xed\x50\xea\xf7\x80\x2f\x8c\xfa\x8c\xd5\x1b\x95\x11\x0e\x22\x81\x62\x6d\x68\x04\x4f\xc9\x92\x02\xbb\x26\x6b\x7a\x89\x6a\xe5\x0f\x5e\x96\xb2\xb7\x36\x08\xb1\xc3\xf6\xad\x56\x38\x57\x85\x9c\x97\xa2\xc6\xa6\x6c\x69\x01\x6a\x9d\xf1\xc9\x00\x22\x2f\xa4\xf6\xdb\xd7\xa8\xf0\x6d\x50\x90\xc9\xf5\x32\xcd\xc0\x8e\xfa\x75\x9a\xed\xff\xaf\xdb\x23\xdf\xe0\xb4\x64\x96\x51\xb8\xb7\x85\x4e\x88\x58\xe2\x77\xf0\x2f\x83\xd2\x5c\x69\x52\xbd\x5c\x8c\x36\xbc\xa1\xb5\x0e\xd4\xe5\x06\x30\xbc\x95\xbe\x78\x5b\x16\xa0\x69\x22\x86\x8a\x65\x1c\x68\xd0\x71\x63\xda\xe3\xd9\xe2\xaf\x73\x86\xf8\x5f\x54\xb7\xad\xd7\xb7\xcb\xd1\x58\x37\x62\xb8\x46\x85\xed\x67\xfe\x0b\x3b\x86\x66\xf0\x4a\x71\xe8\x6a\x1f\x9b\xe5\x3d\x24\x12\xe6\xd5\xd9\xba\x06\x66\x35\x14\xb3\x76\x31\xef\xfa\xc7\xab\x1c\x15\xb1\xac\x86\x6c\x64\xab\x25\xf8\xbf\x8d\x4f\xb5\x4b\x41\xa8\xec\xec\x09\xe7\x67\xc0\x24\xdc\xcc\x30\xfe\x2d\xf3\x54\x74\x3d\xdf\xda\xe4\xbf\xb4\xa5\x2d\xf9\xa5\x13\x95\x1f\xfa\x5b\x45\x43\xb2\x82\x6c\x9f\x54\x20\x82\x3f\x39\x48\x4e\x21\x7a\x51\x99\x21\x62\x2b\xba\x63\xd1\xf1\xb5\x3a\x14\x39\x0e\xf1\x3e\x71\xab\xa9\x16\xc5\x37\x2f\x1b\xa1\xde\x56\xec\x9b\x14\x7c\x5a\x8d\xd7\x67\xeb\x46\x40\x66\x9c\xfa\x38\xd2\xad\x78\x85\x46\x46\x64\xb4\x28\x42\xce\x3f\x6d\x1e\x2f\x2a\x94\x06\x2e\xe5\xad\xa6\xb9\x5a\xe6\x7b\x62\x71\xbf\x96\x99\x42\x48\x50\xf1\x62\xd9\x94\x0d\xad\xc2\x2f\x30\x0e\x4a\x2d\xfa\xa5\x6f\x0a\xbd\x07\xca\xac\x24\x0e\xe6\x0e\xcd\x1a\xa1\x4e\xf3\xcd\x50\xfc\x45\xe1\x3d\xed\x17\x28\x0d\x70\x0d\x95\x89\x4d\x82\xf8\x5e\x41\x5d\xf5\xf9\x6d\x9a\xa1\xb4\x99\xee\x31\x9f\xd4\x7d\xd3\x2a\x01\x66\xdd\xa0\x5a\xc0\xbf\xec\xd1\xa3\x52\xd5\x96\x02\xa1\x60\xa2\x32\x26\x8b\xe3\x7d\x15\xc3\xc8\x3d\x3a\xf0\x2a\x47\x5a\xcc\x17\xae\x8c\xad\x8e\x8c\x97\x67\x9f\x37\x38\x4d\x25\x13\xe6\x97\x4e\x67\x8b\x04\x1a\x06\xe5\x90\xf9\x89\xe3\x77\x61\xf5\x0a\x59\xc3\xb7\xcf\x00\xf4\x67\x8f\x36\x88\xa8\xa1\x20\x50\x34\xdf\xb7\x69\x6d\xb2\x5f\x27\xc9\xf2\x27\x7a\xb3\x2b\x7b\x5f\xcb\x8c\x94\xf9\xf4\x07\xe0\x4b\x6f\xcf\x92\xd2\x24\xad\x20\x52\xe3\x27\xef\x64\xd6\xad\x6e\x1d\x34\x82\xee\x6a\x13\x09\x0d\xc7\xcf\x8f\xcb\x8c\xf7\xe5\x9a\x5b\x47\x2b\xf4\x0b\xd4\xc0\x36\xb7\x78\x82\x76\xe5\x7d\x8b\x75\xb3\xed\xb8\x74\x4f\x42\x6e\xfe\xff\x3e\x2f\xab\x07\x0b\x39\x50\x61\xc7\xbf\x6a\xd1\xca\x2c\xa2\xb2\x0b\x23\x37\xae\x79\x08\xd6\xe2\xc9\xd1\xc1\xfc\x33\x59\xb8\xca\x90\x95\x48\xe0\xe4\x6e\xe9\x95\x51\x1b\x1c\x6f\x12\x0e\x67\x29\xfa\x81\x3d\x5c\xad\xdf\x98\xa8\x3e\x0d\x76\x85\x14\xca\x07\x06\xc9\xa5\x0d\xe5\xce\x23\x8f\x04\xc2\x86\x32\x5a\xbf\x57\x54\xb9\x21\x09\x20\x1e\x17\x96\x76\xa4\x4f\xd3\xec\x87\xb8\xf0\xa5\xb7\xce\xd5\x72\x53\xa7\xb0\xba\x09\x5d\x97\xc4\xbf\x3c\xff\x82\x66\x16\xea\x41\x18\xe3\x24\x93\x11\xb7\x9f\x97\xa1\x83\x82\xc6\xcf\xed\x3c\xbb\xd9\x88\x55\x31\x34\xbe\xb7\xbd\xa8\x6a\x29\xca\xf6\x76\xfb\x41\x99\x9b\x6d\x4a\x39\x2b\x28\x1a\xbb\x41\xe1\xae\xba\x16\x12\x02\x20\xf1\xb3\xfb\x6d\xd0\xa2\xad\xcd\x10\x20\x4b\x78\xd4\x5c\x36\xf0\x9c\xe4\x9f\xc1\x3b\x1c\x3a\x56\x5b\x2b\x39\xd8\x0d\xfb\x35\x2c\xfd\x7b\x23\x3b\x36\x0e\x3d\x41\x9e\xff\xe9\x15\xd9\xe5\x8b\x1d\x58\xad\xe8\xd9\xdc\xbd\x57\xb4\x62\x16\x1a\xc4\x0a\x91\xed\x8b\x9a\x62\xd1\x3c\x4d\xd0\x87\x51\xf0\xce\xe5\x01\xef\xea\xd5\xc3\xd5\x83\x2a\xfa\x8e\xe8\xb4\x42\x65\xb5\x68\x37\x94\x2f\x90\x2b\x9f\xe5\x47\xeb\x5a\xa1\x4e\x24\xf2\xf1\x25\x6f\x4a\xda\x18\x52\x94\xef\xfe\xb2\x37\x75\x8f\x74\x90\x6a\x3f\xde\x97\xff\x8c\x36\xad\xb7\x51\xe8\xc2\x96\x3e\x45\x05\x84\x0b\xb3\x1f\xbc\x86\x61\x76\x24\x06\x98\xff\x71\xb9\x80\xb2\xd3\x1a\x66\xdc\x62\x33\xff\xc8\xf3\x72\xae\x68\x73\xdb\xd3\x25\x4b\x2e\x56\x0e\x3d\xc1\x7e\xab\x25\xab\xf1\x1b\xc5\x9c\x0f\x35\x90\x0d\x56\x54\x20\x64\x7b\x97\xae\x85\x0e\x98\x44\x3e\xea\xcb\xef\xd2\xb0\x70\x38\x40\x76\x5c\xd7\x88\x06\x21\x5b\x6d\x2e\x3b\xa3\x6b\x4a\xa1\x20\x4c\x3b\x92\x49\x07\xb3\x0d\xe5\x8c\xf6\x4e\x81\xe5\x99\xda\x3b\x4a\x7b\xbf\x3e\x66\xbc\x2b\x30\xc6\x8f\x51\xb4\x4c\x6c\x1a\x37\x44\xd1\xc4\xb7\x34\xad\x17\xda\x34\x69\x20\x15\x73\xf3\x67\x9d\x56\xba\x6d\xda\xdd\x5e\x2c\x45\x1f\x53\x60\x51\x0e\x62\x55\xc2\x87\x5d\xf3\x66\x8b\xeb\x44\xd3\x5a\x6d\xc9\x42\x19\x0f\xc0\xef\x76\xeb\x38\x45\xf3\xc2\x29\x33\x4a\xb8\x3a\x70\xde\x57\x8c\x16\x1c\xd3\x44\x4c\xc8\x04\xe5\xef\x8a\xe4\x5f\xa8\xe5\x45\x7e\xcf\x73\xb2\x38\x93\x41\x61\x86\x22\xc4\x8e\x11\x57\xf4\xb8\x5e\xc3\x15\x96\x51\x0d\x39\xc8\x57\x71\x85\xdf\x5c\x94\xac\xe2\x28\xad\x73\x70\xe7\x87\x96\x2d\x89\x6e\x5b\xa8\x6e\x8e\xc0\xfd\x04\xca\xa2\x8f\xcc\x51\x10\x4f\xac\x85\xc7\x79\xc3\x0e\x55\x96\x1b\xec\xb4\x8b\xa5\xe8\xeb\x73\x75\x71\x14\x2c\xe6\x63\x72\x29\xf4\xe0\xf8\xec\x8b\x9d\xd9\x39\x5d\x48\xfd\xd9\x97\xa5\x7d\x43\x68\xaa\xc0\xea\x91\xca\xa4\xba\xca\x30\x76\xcb\x1c\xaf\xda\x97\xfb\x63\x43\xe7\x1e\xf4\x00\x61\x54\x8c\x5f\x1e\xd4\x06\xd3\x36\x75\xb1\x9d\xac\x31\x7f\x10\xb4\x25\x2d\x16\xd8\x99\x09\x70\xc5\xdf\x5e\x9a\xe8\x2a\x48\x0e\xe4\xc6\xd1\x9b\xb4\x32\xae\x8c\xef\xbd\xac\x60\xaf\xa8\xed\x07\x69\x97\xb6\x6f\xb3\x02\x11\xa1\xd4\xe5\x6d\xd1\x7a\x4f\x32\x12\xed\x7a\xdc\x5d\x1f\xd1\xbd\xa7\x1a\xc4\x06\xf6\x03\x2f\x56\x1e\x16\xf3\xdd\x38\x53\xde\x13\x0a\xcf\xdc\x6d\x2b\x95\xe1\x8c\x1d\x12\x4b\xf0\xd4\xf7\xee\x57\x50\x3c\xa4\x0b\x36\x08\xff\x6f\x8b\xc6\xa1\xa4\x76\x98\xb1\x61\x7d\x76\x46\xb6\x1e\xaa\xbb\xb8\x9b\x6f\x8f\x07\xbd\x9a\x25\xb7\xa2\x9a\x83\x5c\xbf\x7f\xd3\x29\x63\xe3\x1c\xfe\x49\xab\x14\xd9\x1c\x5a\x02\x1d\xfa\xd3\xea\x24\xb5\xdc\xc0\x2c\x01\x06\xff\xfd\x39\x1d\x1b\x10\xf0\xd8\x9b\xbb\xfd\x69\x89\x94\xa7\xdd\xad\xb3\xdc\xdc\xe5\x8f\xa6\x67\x04\xbb\x4a\x93\x95\xfb\x94\x42\xa2\x4e\x70\xfb\x5c\x04\x29\xf7\xd9\x95\xf2\x32\x5f\x35\xf3\x2a\xde\xe4\x44\x0f\x4d\x91\xa3\x56\x3e\xc6\x50\x46\x60\xe7\x89\x50\xea\x53\x93\x08\x76\x40\xfe\xb0\xa1\xf1\xd8\x64\x0f\xff\xdc\xd9\x3a\x17\x15\x12\xab\x98\x2e\x2e\x54\x78\xdf\x16\x41\x36\x05\x77\x80\xe8\xdd\xc5\x1a\x94\xc3\x8e\x0f\x2e\x9f\x1e\x7d\x79\x8c\x26\x38\x66\xe3\x32\xf1\x4d\x12\x08\x82\xd7\x2f\x47\xc8\xe9\xc7\xb4\x99\x33\xe3\xb0\x38\x51\xe3\xc3\x83\x46\x9c\x58\x6e\x45\x5f\xd6\xe4\x2b\xcb\x18\xe8\x6a\x3c\xd6\xe6\xbe\x3d\x5b\xb8\xf1\x0a\x2b\xca\xc2\xe7\xa6\x69\x78\x69\x80\x0c\x71\xe0\x62\xae\x6c\x28\xdc\x2e\x07\x4c\xf8\xa2\x0f\x0e\xe6\xc9\xbe\x8a\x79\xe7\xf9\xe3\x4d\xd9\x54\x56\x43\x0d\xe4\x22\x75\xcf\xf9\xd8\x1b\xd9\x4f\xe4\x10\xdf\x07\x4d\x70\x58\xde\x2c\x39\xa2\xe9\x03\x21\x33\x0c\xc5\xad\xce\xff\xf4\x58\x36\xca\x04\x28\xec\x25\x28\x63\x28\x62\x0c\xbe\x71\x98\x38\x0a\x5d\x61\x03\xbb\xc2\x1c\xf9\x35\x6d\x90\x2b\x9c\x55\x39\xf2\x25\x5a\x75\x5c\x63\x0f\x9a\x26\x75\x1c\xca\xcb\x45\xe2\x27\x22\xf8\x85\xb5\x6f\xb4\xd4\xcc\x81\xf4\xdc\x28\x8c\xeb\xd0\xf3\x8d\xd5\xac\x86\x88\x59\x02\x60\x53\xc8\x3d\xaf\x93\x5e\x50\x62\x01\x62\x1c\x7a\x41\x8b\xa0\x62\xea\xad\xca\x9e\x5e\x71\x97\x56\x2c\xd7\x30\xb6\x53\x70\x60\xa1\xfb\xe0\x70\x91\xb7\xdc\xb0\x82\xc0\x6a\x11\x46\x14\x27\x77\x5e\xa2\x8c\x28\x40\x2c\x2b\x68\x75\xc7\x7d\x78\x91\x54\x49\x08\x90\xdb\x8b\x5c\xa2\x20\x6e\x0a\x1d\xa7\x26\xc9\xc2\x40\xe8\x9b\x71\x65\xad\x56\x1a\xd3\xaa\x43\x3a\xca\xa8\x99\xb6\x95\x85\xea\x82\xa1\xe2\x77\x98\xa9\x84\x47\xee\x27\x91\xaa\x48\x84\x19\x09\x60\x7a\x58\xb8\x5c\xc3\xf8\x32\xec\x22\x0b\x69\x12\x3b\x37\x1f\xe5\xa8\xb4\x65\x2d\x53\x89\xbe\xbc\x73\xe0\x62\xed\x82\x26\x28\x0c\x29\xe4\x38\x6e\x5b\xb6\x27\xe5\xa2\x61\x76\x7f\xe3\xbe\x9d\x43\x65\x80\x77\x11\xb7\x74\x88\xee\x5d\x9c\x59\xc5\x30\x3e\xae\x8a\xde\x12\xb8\x95\x9b\x90\xed\x34\xeb\xe9\x56\xb1\xb6\x28\x6d\xe3\x3a\x67\xc0\x52\xfd\xd8\xa9\x34\x3f\x78\x3c\x0a\x5c\xba\x2f\xad\x21\xbb\x54\xad\x9f\x4d\xaf\x69\x14\x81\x84\xc8\x24\x36\xcf\xe7\x9e\xce\x96\xda\x66\x7b\xb9\x1d\xb5\xf7\x37\xf1\xab\xd5\x86\x2a\xa5\x47\x13\x02\x77\xe1\x52\x4d\xfc\x11\x87\x8c\x7a\x18\xa5\xee\x95\x23\x0a\x32\x00\x20\x56\x07\xe3\x8b\x2f\x4f\x84\xd7\x69\x63\xb7\x38\x75\x6a\xea\x29\x7f\xe6\x42\x79\x96\xba\x75\xe1\xcd\xe8\x6d\x8e\x78\x2f\x2e\x20\x95\xa0\x65\x5b\x9f\xaf\x07\xd9\xdc\xd4\x09\x05\x20\x1c\x87\xf9\x9d\x4a\x09\xe4\x51\x02\x83\xce\x77\x6f\x6d\x51\x71\x34\x31\x8e\xcb\xe3\x76\xce\xcf\x37\x16\xef\xd0\xfa\x64\x64\x93\x0a\x65\x2e\x41\x3c\xb0\xed\xb4\xe5\x42\x04\x37\xe4\xc2\xbe\xba\x42\x91\x23\xf7\x30\x82\xd2\xa3\x70\xbf\x18\x19\x17\xb1\x15\xa6\xd5\xe0\x8b\x8f\x29\xcd\x60\x9c\x99\xcb\xc2\xb6\x20\x37\xef\x35\x45\x0a\xd8\x6a\x20\x37\x3e\x1e\xf0\x6d\x26\x0e\x6a\x53\xce\x0d\xb6\xb9\xf3\xef\x4f\x3b\xe4\x66\xb3\x12\xba\x16\xe2\x3b\xf2\xb8\xb5\x4c\xcf\xc1\xbb\xf7\xc9\x7d\xb6\x86\x7a\x8c\x7f\xe5\x85\x0f\x8f\x69\x29\xb0\x21\xfb\x73\x24\xc5\x8f\x57\x2a\xd5\x65\x9c\x6c\xa1\xbe\x78\x79\x0c\x27\xe9\x36\x41\x2b\xfd\x82\x71\x13\xb4\x80\x69\x81\x0f\x1c\x1c\x25\xa9\x1e\x3e\x76\x9f\x36\x96\xa6\xa1\x2d\xfa\xc0\xc2\xb5\x9b\xf8\x5b\x9e\x8f\x88\xdd\x8f\xc1\xca\x90\xa1\xca\x5c\x0c\x59\x90\x69\x97\x6a\x6c\x44\x0e\x9b\x4f\x3a\x4b\xe3\xca\x55\xba\xa2\x8e\x8d\x9a\x7e\x66\x93\x32\xdf\xce\x56\x18\x15\x24\xa4\x3c\x73\x37\x1c\xcc\x60\x9b\x7c\xca\x02\x82\x40\x78\x72\xb0\xae\xa3\xda\x2e\x46\x32\xf9\x9f\x4f\xc9\x06\xb2\x2e\x44\xec\x64\x2c\xf4\xec\x3a\xb5\xee\xe0\x12\xde\x82\xa3\x32\x7e\xa2\x62\x18\x0e\xa7\x34\xda\xfb\xfc\x05\x5a\x41\x0a\x47\x47\x34\x22\xef\xce\x51\xc4\xc0\x43\x06\xdb\x31\x51\x32\x6d\xd9\x9b\x1d\xe3\x57\x51\xaf\xc7\xa8\x23\x42\x60\xf6\x52\x0f\x19\x28\x21\x44\x36\x51\x11\x03\xc2\xe0\xbd\x1c\xfa\x09\xfa\xec\x9b\xeb\xd2\x10\x53\xa3\x15\x05\xcb\xf7\xaf\x5d\xba\x40\xac\xe3\xd9\x4d\x29\x63\xf8\xf9\x2d\x3a\x57\x52\xba\xca\x71\xaa\x56\xbe\x38\x4e\xe2\xb0\x41\x46\x38\xff\xf2\xeb\x2a\xd3\x8f\xba\xad\x05\x5e\xa1\xb2\x8f\x27\xee\x85\xe8\x1e\xa5\x13\x7a\xb0\x43\x61\xe7\x86\xd0\x07\xe5\xde\x18\xa5\xec\x3b\x6c\x4f\x75\x16\xf8\xac\x2d\xcb\x48\x13\x39\x1e\x22\x55\x57\xa5\xde\x15\x0a\x0f\xeb\xc0\x51\x27\x21\x2c\x1b\xc3\x34\x8f\x7f\x93\x5b\x7a\xc3\x49\xf8\xee\x0a\x4d\xb7\xaa\x46\xa9\x87\x31\x7c\xdf\xdc\xda\xbb\x95\xc1\x01\x75\x50\x40\x39\x50\x84\x09\xa6\x42\x85\x61\x52\xad\x71\xe7\x86\xc2\xdc\x83\xb2\x8e\x2f\x2a\xed\xd1\x7b\x3b\xd2\x2c\x30\x75\x2a\x8c\xf7\x3e\xb1\xa5\xc5\x79\x80\xd3\xaf\x1b\x58\x54\x14\xc6\xd8\x67\xf4\x72\x11\xb9\xae\x22\xd4\x7a\xcb\x03\xda\x8e\x1e\x37\xb0\x1b\x62\x11\x08\xfe\xd5\x93\x3a\x5e\x57\xcf\x2a\x96\xa2\x39\x4b\xf4\x3d\xa5\x1f\x70\x06\x1a\xd4\xb3\x3f\xd3\xaa\xc3\xb8\xfe\xa1\x49\xd7\x72\xad\xa6\x5d\xee\x80\xb2\x1d\xb6\x08\x4a\x70\x12\xcf\xba\x8a\x2d\x3a\x66\x3e\x6f\x6b\x1f\xdc\x9c\xad\x9a\xb0\x53\x46\xbe\x4f\x70\x02\xc5\xcc\x7b\xdb\x04\xf3\x2e\xc0\x08\xc6\xaf\x17\x6a\x8c\x52\x1f\xf7\xa4\xfc\x88\xe7\xff\xb7\xd9\x14\x20\xa5\x5f\xd9\x79\x4e\x92\xac\xae\x8a\x4f\xd2\x06\x2d\x73\x20\x16\x97\x24\x1e\x4a\x35\x50\x7e\x39\x40\x19\x9a\xc5\xef\x90\xf8\xdc\x00\xed\xfa\x21\xa3\x44\xe7\x93\x30\xcc\x41\x37\x0a\xea\x89\x25\xb5\xfe\x94\x1d\x04\x6c\xe6\xab\x2f\x6a\xfe\x59\xc8\x17\xf1\x2b\x1b\x1f\xbf\xb2\x44\x0b\x3d\xf1\xa5\x49\xc4\x52\xfe\xe0\x2a\xa2\x4f\x38\x2e\xd1\x01\xa7\x19\xcd\x79\x90\x7f\xaa\x9b\x6a\x21\xf3\x6b\x38\x43\x3a\xfd\xd4\x40\x61\xce\x89\x02\x94\x68\xe0\xc7\x5f\xf1\x61\xc5\x0b\xaf\xdb\xaf\xdf\x03\x4b\xf8\xe5\x8a\xda\x12\x22\x75\x0a\xd6\xe2\x2b\x57\x9e\xaf\xcc\x46\xba\x28\x03\x3f\xb1\xf8\x67\xbc\xdd\xa9\xec\xbc\x91\x0b\xfb\x80\xaf\x8e\xd6\xf9\x67\x80\x50\x08\x04\x9d\xf3\x13\x8a\x42\x68\x99\xd2\x3a\x70\xe2\x81\x95\x72\xc5\x18\x25\xae\xa2\x30\xa8\x51\x96\xa2\x7e\xfb\x8c\x2b\x4f\x5c\xa8\x27\xa6\x8c\x84\xfe\xf5\xeb\xc4\xc2\x1e\x70\x12\x71\x79\x36\xf7\xae\x6c\x09\x68\xda\xc4\x0d\x40\xca\x4f\x86\x99\xed\x1a\x73\x9a\xa3\x44\x78\x4b\xb2\xba\xa6\xdf\xa1\xd0\x95\xfe\x84\xbf\x7e\x58\x21\x2a\x2a\x32\xa5\x1f\x1c\x34\x41\x56\xb4\x36\x98\xc8\xa3\x16\x8d\xef\xbe\xdc\x8c\xd3\xe9\x15\x9c\x59\x9c\x15\xff\xba\xf7\x4f\x49\x39\x01\x26\x4a\x39\xe1\xdf\x8d\xd2\xd0\xee\x97\x15\xbf\xa2\xfc\xcc\xb2\xdc\x89\xa2\x32\x23\x56\xb5\xe8\x88\x89\xc1\x5d\x0a\xad\xdb\x97\xde\x9a\xb7\xcf\xd7\xc4\x31\xaa\x4d\x2f\x20\x19\x30\xaa\xb1\x61\xcf\x78\xed\x29\x83\xf4\x54\x66\x85\x98\x7f\x65\x46\x56\x7a\x2c\x10\x5c\xf9\x1f\xf5\x2a\xe2\xcb\xe2\x74\x42\x88\xf8\xad\x82\x05\xf0\x71\x95\x5a\x6e\x13\x15\x4b\xd1\x8e\xa7\x85\xc7\x59\x03\xb3\x64\xc2\x9f\x7b\xab\xa1\x3d\x75\x02\x08\x3f\x2e\x6d\xff\x85\x29\x52\xc3\x82\x28\xc4\x8b\xfc\x46\x0d\xef\x16\xb2\xaa\xb2\xd4\x38\xfc\x9a\x36\x46\x26\x7e\xd0\xc4\x9a\xbe\xec\x88\xf5\xfc\xd3\xf8\x26\xc1\x6e\xc0\x65\x4d\x8c\xff\xd6\x66\xde\x1e\x23\x0d\x62\xe3\x6a\x12\x49\x7f\x6e\xcb\xaf\x0c\x3a\x4e\xc9\x34\x78\xa4\x36\xa7\x42\x41\x40\x82\xd0\x12\x14\xb4\xa9\xcf\x66\x23\x19\xb6\x7d\x2c\x66\xba\xe7\xbc\x94\x2d\x64\xcc\x94\xe6\x7b\xb3\x97\x31\xc9\xa9\x54\xe0\xd9\xde\x34\x56\xba\x1f\x50\xf0\x1b\x3f\xab\x4d\x51\x5d\xef\x09\x28\xf4\xeb\x93\x8e\xe8\x73\xb3\x20\xe4\xca\xf9\x53\x8a\xa5\xc8\xdf\xae\x8d\x12\x20\xba\x25\x7a\xfe\xb3\x9e\xd6\x50\x45\x8e\xa7\xec\xd1\xf6\xd7\x04\xde\x11\x10\xd9\x55\xee\x99\x5a\xa8\xbf\xc3\xff\xf4\x66\xe4\x72\xf8\x0d\x1c\xaf\xeb\x06\xe9\xd4\x3b\xe4\x8b\x8f\x70\x46\xe3\xec\x81\x68\x50\x22\x55\x10\x8d\x1a\x78\xb1\x5e\xeb\x57\xf8\xc9\x46\x76\xe2\x95\x5b\xd9\x3a\x41\xc5\x4b\x51\x93\x40\x91\xae\xdf\xbc\x8e\xb7\x15\x68\x6c\x0d\x3b\x30\x5e\xb9\xbe\x2b\xdb\x40\x39\xd4\xb7\xb1\xc3\xdd\xce\xb3\xe5\xca\x79\x92\x6b\x36\x6b\xd6\x55\xb0\x8d\xb3\xe5\x68\xa6\x9b\xe3\xf9\x57\x75\x64\x3b\x4b\x5a\xa9\x70\xd1\x5f\xfd\xe3\x44\xf7\x8c\x1b\x9a\x96\x16\xe2\x16\x46\xed\x2f\xc8\x1f\x18\xb8\xc0\xac\x3d\x79\x52\x06\x6b\xda\x0e\xfd\x48\x7e\xcf\x26\x75\xf3\x99\x65\x49\xf4\xe5\x2f\xd5\xc6\x2d\xa6\xd0\xa4\x06\xdb\xf7\xff\x5c\x2a\x27\x03\x15\x70\xe2\x61\xad\xf4\xe6\xbc\xb1\x75\x58\x5a\x35\x87\x4e\x62\xd6\xa5\x43\x13\x2c\x64\xe3\x26\x67\xa8\x26\xb7\xf1\xc2\x25\x12\xe3\xd3\x45\x6b\xae\x4f\x55\x04\xc2\x37\x5e\xbd\x40\x7f\xd6\x81\xdd\x4c\x5a\xbd\xab\xa4\x41\xb8\x8b\x14\xce\x4c\xfe\xa2\x37\x74\xf8\x55\xe8\x06\xac\x99\x70\xbb\xff\xb6\x26\xb3\xe6\xc2\x29\x6b\xe6\xc6\xed\xfa\xe6\x99\x05\xa9\x3b\x51\xf6\xdd\x7a\x8d\x73\x93\x76\x8d\x27\xc9\xdc\x07\x57\x88\xa0\x10\xb0\xb0\x5a\xb5\xb9\x9e\xf4\xd9\x2f\x6a\x4b\x19\x6a\xd6\x71\xfa\x05\x86\xee\x93\x65\x2a\xe7\x48\xc9\x2a\xb4\x74\xa3\xbc\xc2\x71\x13\x53\x8d\xc3\xe0\x5f\x47\x2b\x75\x6d\x32\xbd\x12\xdb\xed\x2b\xdf\x56\x9c\xd1\x00\x15\xf0\xc5\x67\x15\x5a\x1b\xb3\xb1\x18\x79\x4e\xbc\x4f\xe3\xcd\xda\xa8\x9a\x5c\x8c\xc9\x57\x64\x7b\xba\x4a\xff\x9a\xb3\xc3\x7b\x05\x59\x8d\xe1\xb8\x4c\x48\x33\x2f\x3a\xad\x30\xd1\x13\x0b\x39\x9a\xba\x72\x5c\x35\x34\xdd\x6f\x61\x94\x11\x46\x7d\xf2\x80\xc6\x14\x06\x4e\xa5\x06\xea\x30\x86\x9c\xad\x59\x3f\x4d\x17\x2a\x75\x03\x36\x66\x73\x51\x19\x54\x4f\xb3\xcb\x85\xc2\x5a\x85\xcb\x5a\x0d\x7c\x58\x9a\xae\xf4\xb2\x95\x65\x85\xd8\x8e\x83\xea\x80\x67\x87\x8d\xfb\x1d\x1a\x45\xde\x47\x8e\x97\xba\x23\xf6\x15\x3a\x34\x6b\x41\xf0\x52\x0b\x9a\xe2\x63\xcd\xbc\x4b\x45\xdb\xb9\xd0\x4b\xe6\x07\x57\xb4\xc3\x89\x5c\x13\xdb\x69\x9f\x37\x60\x96\xac\xa0\x8a\x7e\xd0\xe4\x6a\xa8\xcb\x96\xf4\xe5\x5f\x5b\x25\x1b\x24\x8f\x98\xf5\x7e\x54\x06\x96\xae\x90\xbf\xb0\x46\x43\xd8\xbb\x9c\x3b\x51\xde\xb0\x6e\x44\x7c\x47\x21\x5b\x45\x9b\x07\x0f\x57\x66\x3c\xdd\x95\x50\xcc\xb3\xc7\xdd\x3d\x4a\x74\x5a\x8e\xc7\xa5\x1b\x24\xb4\x06\x3f\x3f\x52\x69\xae\x1c\xae\x16\x16\x40\x9f\x7c\x64\xe0\xc8\x7e\x8e\x16\xf4\xd6\xaf\x3c\x3d\xaa\x1f\x9e\x13\x00\x60\x0a\xe3\x9e\x54\x90\xcd\xd4\x75\x03\x54\xf5\xcb\x20\x6b\x5e\xea\xcb\xdb\x4b\x38\xc2\x06\x26\xae\x5e\xa2\xd0\x15\xff\xb3\x07\xb4\xa9\xb6\x40\xcb\x0b\xe5\x98\xd9\x7b\xd3\xfb\x60\x72\xc1\x61\x63\xa1\x86\x1b\xa6\x94\x75\xa3\x26\x07\x01\xcf\xbe\x55\x08\xe8\xc5\xb5\xaf\x3e\xd3\xfb\xdd\x81\x2b\xba\x5b\xc7\x7f\x42\xbe\xa9\xa5\x4f\xcd\xf7\x2c\xd7\xe4\xdf\x90\x1f\x70\x0e\xc6\x4f\x4e\x4a\xde\x47\x80\x55\x10\xc2\x73\x1a\xff\x04\x79\x98\x75\x53\xc6\x79\x91\xf9\x57\x36\xf1\xc9\xcb\xd4\x19\x9d\x70\xcf\xee\x97\x83\x58\xc0\x77\xe2\x38\x6b\x10\x30\x0b\x28\xf5\x15\x16\x68\x46\xad\xdd\x88\xe3\x55\xc5\x30\x73\xfe\x56\xd9\x5e\x26\xe4\xff\xf8\x97\xdc\xbe\x86\x2f\xbd\x16\xa1\xa0\xc1\xc5\x13\x61\x1a\xbf\x79\x8b\x3c\x54\xa1\x1f\x72\xe8\x60\xbd\x9c\xcd\x82\x60\x5a\xe1\x3b\x50\x31\x67\x1f\xc6\xa7\x66\x64\xdf\x12\x57\xc9\x66\xfc\xb1\x17\x86\xf7\x68\xf0\xa2\x10\xee\x02\x9f\x55\x8e\x5c\xae\x6d\x0a\xe2\xaf\xea\x20\x56\x0f\xbd\x64\xdc\x6f\x69\x7b\x17\x52\x4d\x91\xe0\x2f\x3d\x2e\xb8\x57\x71\xb1\x05\xf9\x68\xe6\xd9\x19\x9f\x6a\xee\xb6\xf7\xca\xc0\x21\xe2\x50\xc6\x91\x1c\xa2\xf6\x1d\x0f\x28\xd5\x69\x1d\x7b\x81\x00\x4c\x1a\x13\x8f\x64\x2b\x2e\x64\xdb\xdc\x24\xed\xf9\x23\x3a\x7a\x11\x56\x1d\xf8\x1a\x48\x80\xc5\x25\x8c\x06\xe0\xd5\xd0\xa2\xf1\x97\x3b\xb4\x57\x0e\x64\xca\x2a\x3f\xeb\x93\x6f\x66\xbf\x7c\x17\x6b\x17\x01\x31\xf9\x3f\xa6\xbd\xa3\xa9\x12\xc7\xc5\xb1\x6d\xf3\x3e\xd6\xd7\xec\x40\x03\x46\x44\x8c\x89\x8e\xce\xd3\xba\x1d\xea\x06\x8c\x94\x61\xfd\x97\x4c\x05\xae\xd5\xce\x63\x37\xb6\x5c\xec\x5b\xfc\xb6\x44\xf8\x9d\x16\x0a\x3c\x73\xb8\xf2\xe0\x27\x0f\x71\x80\xd3\x32\xdc\xe0\xc5\xbb\x06\x02\xdc\x24\x58\xeb\x2e\xae\xd2\x80\x24\x11\xa0\xe2\xa5\xca\xeb\x00\x54\x36\xa6\x1c\xd3\x30\xe3\x34\x59\x61\x0c\x1f\xc4\x73\x8f\x4f\xaa\x2e\xa9\x10\x33\x71\x4d\xfb\xb3\xe6\x7b\xc8\x88\x29\xcc\x57\xfa\x0a\x97\x0e\xe2\xf3\x01\x9b\xf2\xb5\xff\x23\x9a\x08\x3c\xc3\x55\xe2\x08\x1a\xde\xa3\xcf\x69\x4f\xd5\xe4\x8b\x6f\xbe\x5c\x1b\xbc\x40\x9b\x7f\x23\xc1\x2a\x16\x65\xeb\x7f\x1c\x19\xa6\x44\x5b\xdb\xa6\x40\x7a\xeb\xe1\x32\x97\xc5\x45\x71\x87\x6b\x52\x47\x79\xcf\xb9\xdf\xee\xd1\x05\x21\x01\x7f\xc8\x8a\xc4\x2d\x26\x16\x20\x89\x83\xe0\x4d\x86\x06\x16\xb6\x1d\xc9\x6a\xce\x35\xc6\x6b\xb6\x17\xd8\x01\x5d\x5e\xea\x26\x94\xd5\xa5\x1b\xf9\xc3\xbf\x8e\xda\x36\x46\x55\xee\x61\x9e\xbb\x79\x42\x36\xe9\x13\xd6\xef\xb8\xe1\xc6\xfd\x12\xdc\x69\x87\xfa\x7b\x7d\xec\x72\x9d\xbd\xe8\x0a\x5b\x95\x64\x22\x71\x66\x64\xf6\xd0\x90\x20\xd9\x35\x17\x3e\x3c\x44\x89\x48\x34\x40\x1e\x6d\x40\xae\x3c\x2d\x00\xbe\x88\xf9\xd8\xe5\x81\x67\xe3\xf8\x16\xc0\x9a\x6d\x73\xc9\xb8\x68\xff\x7d\xca\x02\x58\x71\xae\xce\x3d\xca\x51\xd3\xf1\xff\xbf\xa4\xb4\x4c\x2d\x3c\x86\x8d\xe3\x27\xe3\xc6\xd0\x82\x8d\xcc\x27\xae\x11\xd6\x88\x8e\xc7\x28\xb7\x4f\xe9\x2b\xdc\xab\xcd\xbc\x54\xb3\xa3\xf8\x33\x6d\x9e\xad\x90\x9e\x95\xa1\x6a\xce\x3d\xac\xd0\x18\x69\x0f\x18\xde\xaf\xdd\x78\x9e\xba\x0a\xf2\x8a\xa5\xe8\xbb\x27\x86\x29\xba\x42\xcc\x84\x42\x21\xf7\xa1\xc5\x32\xa6\x50\x2f\xb4\x45\xd6\xcb\xdf\x98\xfd\x30\x65\x16\x06\xbc\xe8\xe0\x5a\x41\xcf\x2c\xb9\x44\xeb\x8e\x98\xcb\xb9\xc0\x2a\xe8\xcd\x19\xc8\x97\xd8\xcb\xe2\x9b\x4b\xb9\x0c\xdb\x79\x73\x06\x8b\x9c\xc0\x60\x6d\x52\x60\x0b\x38\x13\x4f\x88\x75\x04\xe9\xba\x7b\xe0\x1b\xb2\x29\x28\x23\x66\x62\x9b\xba\xad\x08\xc0\xe1\x2c\x63\xc7\x81\xf9\x0b\xbc\x5e\x9b\x95\x64\xc8\x14\xf9\x1d\x9b\x47\x68\x71\x47\x00\xb4\x87\xd9\xd9\x5e\x02\xbb\x01\x68\x65\xbb\x38\x64\x82\x5a\xfa\x8b\x93\x17\x29\x43\x05\xdb\x6e\xf5\xbb\xff\xfc\x9a\xf4\x08\xdb\xa1\xbe\xf1\x8a\x76\x95\x79\x92\xf5\x10\xa4\xc9\xd1\xaf\x26\x7c\x63\xc0\x04\xc5\xbf\xe1\x9a\x67\xe5\x10\xde\x26\x0e\x89\x9b\x46\x16\xc2\xd5\xbc\xaf\x43\x3b\x97\xa8\xd1\x48\x0a\x7d\xe3\x9b\x3b\x54\x9b\x40\x26\x58\x49\xd1\xd7\x47\xf0\xeb\x88\xaa\x0c\xc3\xf8\x07\x42\x6f\xfe\xa1\xac\x31\x8e\x45\x04\xf5\xf2\x1b\x9a\xea\x4f\x03\xf9\xc4\x6e\x66\xcd\x53\x57\x5f\xa6\x71\x99\xba\x69\x62\x7f\x11\xff\x08\xaf\xc1\x5f\xfb\x0d\x0c\xdd\x93\xf8\x77\xde\x38\x52\x01\x12\x55\x02\xe5\x90\xfc\xf6\x80\x6c\x1b\x3b\xaf\xe6\x0c\xdf\x94\x47\x6d\xec\x9d\xaf\x91\xf0\xc2\xb2\x03\xca\x31\xb8\x58\x0d\x5d\xce\x1f\x9c\x75\x85\xec\x4f\x71\x33\xbe\x60\x1b\xac\xb4\x2c\x0b\xbd\xee\xf8\x40\xbc\x7a\x2c\x09\xce\xdd\x70\x41\xee\xf4\x32\x52\xf8\x41\x6a\x5d\x6f\xa8\xa2\x61\x4d\xb0\x8b\x2a\xf5\xe5\x46\x56\x64\x7d\x6b\xe3\x46\x5c\x3e\x28\x5f\xe1\xde\x21\x0a\xbe\xde\x06\x75\x33\xce\x8b\x7a\xe6\x1a\x09\x7e\xc3\x55\x00\xa0\x7f\xea\x45\x45\x08\xda\x64\x18\x24\xf9\x4a\xd1\x29\x97\x07\xef\xc4\x61\x0b\xd2\x01\x54\x5a\xd1\x13\x67\xeb\xb5\x3c\xdf\x27\xf0\xd1\x0d\x19\xd8\x5f\xc0\x8b\xff\xe6\x8f\xb6\xfc\xe5\x82\x6c\x77\x48\x43\x1f\xc0\x29\x49\x45\x7d\xd6\x6c\xd4\x02\x7f\x15\x11\xd7\x17\x92\xa5\xdf\xec\x10\xc3\xb1\x20\xc0\xc9\x52\x28\xf7\xe5\x2d\x5a\x8a\xae\xa1\x3a\xaf\xb9\x72\x5f\xaf\x8d\xc8\x0a\x56\x89\xb3\x53\xd8\x7a\x9e\x72\x7f\x10\x94\x4c\xdb\x66\xe8\x33\x66\x45\x47\xfd\xa9\x39\xca\x76\x32\x74\x05\xc9\x28\xf7\xcc\x96\xc1\x52\xaa\xba\x58\x8a\x1e\x1a\xa7\xa0\x69\x78\x46\x0b\xfc\xa4\xba\xcc\x3d\xc6\x63\xcc\x6d\x88\xb9\x2a\xa3\x31\x3f\x62\xb7\x56\xda\xd9\x18\xd5\x45\xd9\x37\x54\x07\x69\x52\xcf\xb3\x13\x89\xa5\xfc\x85\x2f\xf4\xb7\xa3\x06\x6e\x28\xb4\xa1\xb5\x2e\xc5\x02\x83\x04\x81\x83\xdc\x29\x2d\xc1\xeb\xde\x55\xfc\x6e\xd6\x89\xe5\x22\xcf\xe3\x73\xe2\x15\x6f\x0d\x15\xb5\x22\x37\x50\x81\x2e\x7e\xf5\xc1\xf4\x44\x17\x7d\xa0\x3d\xde\x3a\x50\x1b\x4c\x86\x20\x5f\x25\x16\x06\xf7\x2c\xd2\x2a\x33\x54\x4f\xd9\xfa\xab\x5f\xe4\x31\x07\x23\x9f\x08\xeb\x56\xe3\x88\x94\x55\x83\x77\x92\xbb\xfa\x18\xaf\x80\x02\x98\x22\xda\xc4\xf3\xf8\x52\x61\x79\x41\x9e\xaa\x72\x00\xab\xc1\x8f\x7b\xda\xc6\x85\xfa\x26\xed\x96\x05\x4b\x54\xb3\x5b\xf5\xdd\x13\xb8\x48\x64\x1f\x92\x2f\x0e\x36\xd6\x8a\xb2\xc1\xaf\x1f\x54\xd4\x4e\xa9\x8b\xfc\x80\x1b\x36\xc0\x4b\x9d\xf5\xe8\x48\x95\x6a\x1e\x30\x92\xda\xb2\xbf\x6f\xcf\xf9\x9a\xec\x00\x17\xaa\x8a\xbe\xf9\xba\x74\xcc\xc1\x0d\xec\x06\xa1\x30\x85\xc9\x86\xf0\x6b\x07\x88\xe1\x3d\xf5\x03\xe1\x9a\xb9\x5a\xe1\xc7\x4f\x9d\x0e\x78\x89\x61\x9a\x52\x4f\x15\x85\xd5\x14\x7d\x1c\x2e\x1d\xab\x90\xb6\xed\xd6\xf1\xc6\x97\xcf\x68\xde\x72\x00\xa5\x4e\xfd\x34\x0e\x68\xa2\x42\x35\xca\x1c\x14\xf8\x9a\x2c\xd1\xbc\xed\xc3\x44\x08\x8f\xbf\xbe\xf0\xcb\xce\x6d\x9a\x96\xad\x6b\xa7\xb5\x0b\xdd\x8b\xfc\xf1\xad\xba\x66\x38\x32\x85\x63\xec\xd8\x79\xba\xc7\x86\x85\x99\x2b\x2e\xe1\x57\xf6\x69\xa8\xdb\xd0\xf1\x44\x61\x15\xfd\xe7\xb3\xd2\x59\x0a\xab\x0a\x3c\x9b\x9f\x52\x39\x12\x0d\x42\x43\x1f\x36\x6d\xdf\x3e\x3b\x81\x46\x55\x30\xc3\xae\x05\x9e\x53\xb9\x2b\x1e\xd6\x30\x25\x9c\xfb\x9c\x48\xe3\xe4\x7f\x38\x41\x5f\x7f\xc4\x4d\x5a\xb2\x80\xec\x58\xa5\x6b\xfc\xe2\x14\x64\xb8\x5e\x23\x65\x39\xa1\x8f\x01\xcb\x05\x1d\xdc\x45\xca\x76\x22\x80\x2b\x0e\x79\xf0\xcf\xaf\xc9\x04\x49\x6d\x12\x57\x4c\x35\x80\x45\x3c\x27\x5b\xa9\xcc\x18\xf1\x7f\x6a\xd9\x87\x0e\x50\x46\xe8\xab\x5f\xce\xea\x5a\x2e\x2f\x81\xae\x65\x6e\x84\x52\xb6\x31\x5a\x8f\x8f\xe7\x67\x2b\x8a\x80\x23\x0e\x93\xb3\xb7\xe3\x6c\xbd\x6f\x67\xf0\xfd\xb8\x58\x8d\xb1\xa9\x30\x54\x85\xc2\x56\x61\x0e\xdf\x78\x54\xf3\x77\x46\xbe\x85\xee\x49\xf0\x39\x8a\xd1\x88\x69\x13\x8e\x65\xcd\xe7\x44\x69\xd6\x65\x5e\x59\x06\x22\xc5\x0d\xa3\xfb\xa1\x89\x08\xc7\x99\x1f\xcc\xe2\x8d\xef\x6d\xc4\xb6\x09\x74\x53\x9d\x0f\x67\x3b\x3e\x5a\xf6\x03\xe0\xdb\x00\xa2\x94\xbb\xed\xfe\x6e\x47\x62\xd0\x0c\x33\xbd\x44\x81\xe6\x05\x55\x34\xa2\x41\x30\x6f\x9a\x3f\xf8\x88\x26\x3e\x6f\x35\x52\x21\x13\xe3\xbe\xd5\xf2\xdf\xd4\x31\x76\x79\x15\x9d\xdf\xb6\x70\x94\xfa\x54\x83\x5a\xfc\x08\x45\x6e\x7f\x43\x03\x58\xd8\xf0\x1f\x50\x5c\x5f\xf4\x66\x86\xce\x93\x7c\xb4\xe8\x4b\x97\xc9\x5b\x7f\xd5\xcc\xe9\xf1\x2f\xfe\xe0\x7a\x55\x5f\xd8\x4d\xfa\x7e\xe3\xf3\x9a\x7d\x4d\x85\x51\x87\x77\xc9\xb7\x9f\xd0\xa9\xe4\x9e\x4d\x05\x27\xaa\x70\xbe\xe6\x6e\x51\x26\x66\xd3\x4c\x60\x88\xf9\x47\x35\x17\x50\x3f\x24\x42\x7c\x7f\xb9\x9c\x3c\x79\x50\xdf\x4f\x14\x7e\xeb\xe0\xcd\x43\x3c\x60\xcb\xde\xb0\x56\x76\x53\xac\x85\x56\x9e\xfb\xfc\xb1\x6c\x8c\x89\xab\x6f\x0b\xbc\x61\x7c\xe4\x26\x68\xc3\xdc\x6d\x4b\x14\xd1\x8a\x1a\xb5\xa9\xa5\xd2\xbe\xce\xbf\x2c\xcb\x80\x21\xae\xd9\xde\xcf\x62\xa1\xcf\x78\x7c\x83\x2c\xd4\x2b\x94\x89\x29\xc8\xd5\xaf\xb5\x34\xf9\x5c\x32\x30\x3a\x51\x50\x74\xe0\x19\xe9\xe5\xd7\xf2\xcd\x07\xb4\x7a\x30\x20\xb6\xed\x80\x2e\xb5\x9c\x59\xfc\xf8\x99\x04\xef\x80\x82\xb8\x31\x81\x96\xe0\xf0\x76\x4e\xc0\x5e\x1e\xb2\x3a\xf1\x6b\xc5\xeb\x9a\x1e\x23\x34\x48\xb2\xc9\x0a\x4d\x14\x0c\xb9\x7e\x77\xaa\x7a\x9f\x1b\x34\x44\x89\x06\x61\xe0\x7b\xb4\x0e\xea\x07\xaf\x58\x92\x53\xe4\x62\x58\x93\xca\x71\xf3\x29\xf9\x85\xad\x44\x85\x30\x7f\xb8\x71\xb6\x28\x44\x61\xa0\xfe\xb1\x86\x66\xae\xec\xc6\xad\x4a\xea\xfb\x14\x3d\xbd\x5f\xa5\xe2\x56\x20\x60\x72\x2f\xfd\x02\x5a\x27\x3f\x53\xc0\xb8\x5f\x07\x94\x1e\x83\xdf\x94\x57\xc3\x23\x8c\xd2\x5e\x12\x7f\x87\xef\xed\xe4\x33\xce\x6b\xdd\xa0\x46\x5d\x45\x71\xff\x2f\xda\xac\x9e\x8b\xe5\x72\x3e\xc3\x3d\x6f\xa7\xd3\x74\xe4\x93\x8c\x3f\xf2\xab\x97\x89\x8a\xd0\xed\x21\x58\x6c\xe0\xf3\x1f\xdf\x38\x24\xc9\xd6\x82\x79\x98\xeb\xbc\x5d\x70\x4c\x19\xf2\x6b\x45\x8f\x51\x5a\x01\x81\xc9\xb7\x2e\xd5\xee\x0b\x0e\xad\x7e\x2d\x9b\x2e\xbf\x51\x87\xa9\x07\xa4\x17\xbb\x3e\x47\xd5\xe5\x0f\xbb\x2d\x1e\x15\x18\xb4\xa1\xe3\xbf\x24\xf7\xcb\x97\xd0\x40\xb6\xcd\x09\x0f\xeb\x9f\x1b\xae\x6a\x02\x88\x0d\x7d\x5f\xee\xe7\x6f\x2a\xcc\xda\xd0\xe1\x63\xa3\x0f\xae\x49\x6f\x1a\x05\x0d\x9c\xb6\x01\x2a\xe9\x8c\xba\x3d\xc5\x52\xf4\xe7\xb5\x1a\x75\x06\x57\x89\xcf\x01\x49\x42\xa0\xe0\xd1\x97\xd2\x82\xd5\x83\x1e\xfa\xf8\xdc\x36\x55\x6d\xc5\xc5\x5c\xbf\xfc\xa1\xc7\x74\xca\x79\xcf\xe4\xae\x2e\x78\x92\x2f\x3f\xa7\x41\x54\x1a\x98\x35\x15\x8d\xc1\xdc\xca\x33\x8a\xa7\x64\x8f\x49\x19\x49\x14\x75\xca\xf3\xd2\x02\xaf\x81\x21\xb4\x0c\xd9\x28\xb1\x91\x3e\xb5\xa9\x43\x33\xde\x08\x06\x3e\x9c\x7d\x3f\xc8\x0f\x18\xf5\xfb\x9b\xd9\xec\x9f\x26\x9f\xc7\xcc\x29\x5c\x65\xd8\xf8\x6c\xbb\xbe\x1e\x43\x01\x98\x3a\x72\x68\xd6\xa7\xf5\x9d\x88\x4d\x19\xb1\x10\x28\x28\xc3\x21\xfe\xe8\x43\xe3\xe5\xb8\x02\xbb\x38\x20\x66\x6b\xab\xbd\xe4\x8a\x56\x5a\xb2\xa6\x73\xfa\xc3\x33\xe7\x8a\xc4\xc8\xca\xfc\x51\xfc\x61\x87\x0c\x2c\x35\xd6\x6c\xb8\xa8\x58\x8a\xbe\xd3\x59\xd4\x72\x8d\x0a\x2d\xee\xc7\x37\x25\xbf\x63\x4c\xfa\x44\x59\x3d\xae\x0c\x8a\x5c\x93\xb4\xb8\x9c\x54\xa1\xc7\xc8\xb4\xfd\x93\x1e\xe1\xf8\x74\x06\xf4\x9e\xbe\xdc\x6e\x59\x70\x87\x0c\xce\xde\xb9\x6d\x72\xdc\x8e\x7a\x29\xc3\xea\xee\xaa\x2f\x37\x6e\x87\x9c\x3b\x80\x29\x68\x4b\x34\x5f\xf5\x80\x20\xcf\xc7\x25\xad\x40\xed\x9d\x62\x9a\x01\x39\xb5\x09\x14\x3f\xed\x19\x09\xf9\x9f\x2f\x50\x4a\x69\xea\xab\x44\x84\x6b\x7b\xd3\x7a\xc7\x0c\x55\x9f\x90\x0b\x56\x8c\x57\xe2\x33\x86\xf2\xae\xe5\x21\x4d\x28\xeb\xae\xe1\xbe\xcf\xe5\x49\xf8\xcc\xf4\x63\x07\xb2\xa1\xc7\x0e\x53\x9a\xf7\xab\xbb\x94\xc8\x87\x33\x91\x67\xc5\x22\x19\x75\xb1\xe5\x92\x40\x95\x6d\xdd\xfa\xcc\x28\xa5\x5f\x64\x0c\x23\x9b\xf8\x5c\x8a\x32\x5f\x7d\x55\x53\xfa\x0c\xcb\x58\x3f\x30\x4f\x76\xa6\xd7\xdd\x06\x4e\x75\xdb\x72\x3e\x5f\x5f\x16\x84\xcd\x06\xf6\xfb\x99\xaf\x17\xee\xd4\x96\xdb\x1e\x22\x2e\x6c\xb7\x21\x55\xa3\xc7\xd3\x47\xc8\x9a\x72\xfd\x1a\x3d\x35\x5a\xf5\x84\x62\x44\x50\x1e\x3f\xba\x5d\x8e\x33\x6a\x9c\xbc\xdd\x76\x97\x42\x76\xb2\x89\xcb\x45\xb2\xf3\x7f\x7f\x49\x31\x18\xa6\x36\x31\xb9\x41\xd4\xcf\x1e\xd7\x6e\x45\xe8\x82\x95\x90\x2f\xdb\xc3\x41\x97\xc9\xdc\x81\x5c\x97\x36\x93\x01\xf7\xed\xcf\x48\xe0\xa2\x45\x7c\x0f\x71\xb3\x5e\x59\xe6\x7e\xfb\x40\x5a\x52\x94\x5b\x8e\x79\x9f\xb1\x57\x90\xa5\x6b\x14\xd4\x12\xf8\x8a\xde\xf1\x92\x71\xbd\x19\x32\xde\xe2\x65\x8f\xee\xcc\x1d\x82\x62\xcd\x30\xaa\xa3\x6e\x14\x77\x09\x4b\xe7\x6b\xb3\xb8\x4a\x25\xd1\xf0\x17\x18\x2b\x63\xae\x36\xb0\xf0\xa9\x6d\x11\xcc\xc4\x8c\x72\x98\x66\xfb\x64\xd3\xb8\x0e\xe5\x7b\xbb\x2f\xac\x55\x24\xa7\x5a\x6b\x95\xb9\x02\x2d\x22\x4c\x71\xb9\x6d\x40\xee\x84\xe2\xb7\x2c\xcc\xde\xa0\xf2\xfb\xfa\x9c\xec\x2f\x2a\x22\x86\x51\x32\x26\x98\x23\xeb\x51\x97\xb2\xa0\xd6\x8d\xe3\x96\x32\x3e\xe0\xe1\x4b\x6d\xe2\xf2\x80\xa9\x9a\xe8\xf4\x8d\xee\xdd\xc3\xb3\x38\x6d\x51\x29\xfd\xf4\x90\x3c\x03\x48\xa4\xf0\x52\x5f\x6e\xeb\x76\xb1\xa9\x30\x6b\xd4\x46\x20\xb9\x0c\x03\x83\xcf\x4c\x51\x94\x31\x88\x23\x12\xdc\xe7\xce\x56\x40\x76\x94\xd5\x8b\xa5\xe8\xaa\x1d\x3c\x40\x02\xbb\x1d\x5e\xd7\x3f\x9f\x4a\x63\x93\xcf\x57\xae\xaf\xda\x92\x2b\x30\x0b\xc4\x26\x9d\x47\xb5\x2c\x85\x9a\xfe\x64\x1c\x67\xc2\x8b\xa7\xa9\xc0\x07\xbf\x86\x3c\x11\x8b\xc6\xd6\xf8\x27\xbd\x96\xc4\xb5\x93\x0c\x24\xcf\x6d\x97\x8f\x08\x31\x8b\xd7\x37\xc9\x5a\x90\x8d\x91\xfa\x06\xad\xaa\xf3\x9f\x5d\xa5\x49\x83\x91\x72\xd9\x4e\xb7\xb3\x46\xcf\x8c\x6c\x52\xf6\x6b\x48\x5b\xd7\x9f\xff\xaa\x66\x49\x25\xf8\xe2\xc9\x4c\xcc\x38\xfd\xa0\x7c\x60\xa8\x1d\x0c\xba\xee\x08\x34\xa9\x15\xd2\x50\x28\xb2\xb9\xd7\x06\x9c\xaf\x7c\x7f\x93\x56\x5d\xd2\xcb\xdb\xf2\x62\xef\x08\x25\xa2\xf9\x26\x4e\xee\xf1\xa8\xdd\xd2\xb6\x16\x6e\xf0\xbf\x3c\xa8\x19\x17\xd2\xd0\x13\xe8\x57\x59\xe5\xe2\x55\xca\x3e\x23\x2e\x62\x42\x16\xf7\x90\xf5\xa7\xcf\x82\x3f\x2a\x71\xf0\xd5\x20\x51\xa4\x31\x0f\x57\xab\x04\xd8\xec\x85\xe5\x8a\x31\xf9\x8c\xa9\xc5\xa9\x53\xaf\x04\xa0\xaf\xb1\xf3\xae\x54\x4d\x22\xae\xd1\x22\xe3\x99\xe1\x49\x75\xe9\xfa\x1e\x12\x03\xc9\xbe\xdc\x53\xcf\xc9\xf8\x5b\x0d\xdd\x80\x28\x1a\xac\xf9\xaf\xaf\x6e\x59\xfc\x35\x30\xf3\x91\xb2\x22\x2a\x98\xb3\x13\x66\x21\x48\xd5\x73\x00\xee\xdb\x96\x52\xb6\xd2\x50\x9c\xfb\x3c\x39\xa2\x2b\x81\x83\xe2\x60\xbb\x98\x4c\xfc\x90\xf1\xac\xb7\x28\xb4\x2c\xc2\xd9\x63\xf9\xdf\x3e\xc4\x3f\xf7\x72\x46\x3c\x75\x1f\x51\xba\x5d\xb6\xd7\xd3\x3a\x8a\x9e\x70\xe9\xea\xba\x4b\x90\x6a\x49\xea\x88\x7a\xef\x4e\xf9\x59\x9c\x38\xaa\xf0\x46\xf5\x6b\x13\xc4\xf2\x3a\x2c\x97\xa9\x59\x4f\x4e\xe9\x74\xc5\xc9\x2e\xc1\x6e\x00\xea\x79\x06\xbf\x5a\xdd\x88\x11\xf8\x8a\x77\x9e\x9d\x10\xa4\xdd\x0a\xe3\x0b\x91\xdc\x4b\x87\xf8\xfb\x42\x4e\xb1\x14\x79\x2b\xc6\x2a\x08\x6e\xbf\x46\xb8\xba\xb5\x4c\xc7\xe3\xce\x3e\x47\xc4\x57\xd4\x13\xff\x8a\xde\x5e\xfe\xd9\x6b\x88\x89\xcf\x5e\x68\x9f\x97\xed\x19\x27\xd9\xb6\xe8\x35\x91\x31\x5e\x6b\x36\x40\x33\xc7\x0c\x42\x64\xb7\x27\xc6\x52\x8f\x1e\xd4\xe7\x40\xae\x85\xb8\xe9\x75\x34\x2f\xba\x48\x1d\x9f\xb1\xa2\x43\x19\xe6\x93\x22\xa1\x5b\xfe\xbc\xdd\xa6\x56\x05\x76\xc8\x95\x46\xe6\xde\x2f\x41\xe5\x57\x76\x02\x4e\x42\xb1\xfb\xf6\x43\x26\xde\x45\xee\x1f\x23\xf9\xc9\x70\x60\xf4\xcc\x04\xd2\x7a\xf8\xe1\x0c\x67\xa2\x22\x8c\xa5\xa3\x6f\xbd\x93\x26\xa3\x26\x0d\x5b\xca\xc3\xf9\x1b\xcf\x55\x79\xcd\xa5\xbe\xdc\x0d\x35\x19\x6b\x1a\xb4\x3b\xe3\xe6\x65\xbc\x33\x46\x69\x50\xc1\x32\xb2\xa1\x84\x8a\xa1\xa7\x14\x36\x29\x72\x94\x8a\x63\xf5\xc1\xc1\xe9\xdf\x4c\x8e\x9f\x73\x73\x1e\xcf\x77\x4b\x50\x10\xb7\x98\x2d\x75\x6b\xe1\xca\xd9\x1a\x3f\x8a\x3a\x3e\xe8\x28\xb5\xe4\xd3\x3f\x71\x2e\x5f\xb1\xd4\xbe\xb0\x7d\x59\xfb\x2d\x2d\x06\x23\xf9\x67\xef\xe7\x17\x9c\x83\x82\x78\x17\x96\xfb\xf7\x13\x3a\x89\x0f\xb9\x56\x1d\x67\x08\x8a\x77\x3d\xc4\xcf\xf2\x2d\xe0\x63\x29\xec\x90\xa3\x85\x1d\x0a\xef\xde\x43\x2c\xe0\x38\x98\xa8\xed\x69\x19\xd5\xab\x94\x95\x11\x3c\x9d\x52\x5f\x7e\xde\x78\x5d\xd3\x94\xf8\xd4\x4d\xc7\xe4\xe7\x1c\x52\x8c\xd7\x01\x8b\x03\x26\xb0\xb9\xff\xb3\x56\x47\x65\x03\x6f\x37\x99\x9e\xde\xf4\x9a\x72\xa3\xea\x44\x8c\xc6\xfb\x72\xcf\xcc\x6e\x51\xab\x8f\x3b\x5f\x81\x2c\xcb\x77\x8c\x53\xb9\xe4\x7e\x68\x0b\x56\xd4\x2d\x33\xa4\x51\x9b\xa5\x16\x8b\xbf\xde\xac\x51\x1b\x18\x2e\x62\x87\xb8\xb0\x0e\xe7\x1f\xe5\xa9\xdd\xa3\xf5\x3e\xd5\x15\x35\x6a\x5f\xee\xfe\x8d\x3a\x51\x28\xbe\xfe\xc2\x6e\x2f\xfa\xf0\x5e\xc5\x1f\x4e\xe5\xd5\x7f\x51\x9b\xdd\x57\x18\xc6\x72\x3d\xb9\xa8\x43\x77\xbc\x11\xa6\x4b\x82\x5b\x74\xfe\xcb\x1a\x97\x10\x31\xd6\xb4\x33\x36\x63\x05\x77\x0a\x0f\x3d\xa1\x4b\xee\x09\xa1\xb2\xab\x0f\x19\xaf\x75\xa8\xdd\xc4\xf5\xeb\x4d\x15\x7f\x6e\x94\x46\x2a\xf4\xb1\x1a\xf6\x91\x87\x51\x1d\x6e\xf0\xe8\x89\x9a\x55\x1e\x0d\x30\x2c\x6b\x05\x9b\xab\x30\x7c\x8f\x46\x5f\xc2\x09\xf7\xf7\x40\x97\xec\x0f\x59\x58\x2d\xc3\xf4\xe2\x92\x75\x1a\x62\xa7\x46\xec\x54\x07\xdd\xb8\x74\x9e\x6e\xbe\xcb\x1a\xa4\x41\xa5\x1d\xf6\xda\xc3\x6a\x95\x01\x53\x13\x4e\x23\xb8\x5d\x60\x26\x27\x55\x19\x02\x85\x7d\xe3\x8b\x67\xf4\x1d\x0f\x35\xeb\x02\x30\x76\xf3\x1d\xd9\xfe\xc8\x37\x6b\x36\xf5\x7d\x5e\x43\xca\xc7\xf2\xf1\x33\xd9\x63\xd2\x15\xb6\xf4\x99\x81\x30\xaf\x0c\x18\x4a\xf4\x16\x9e\x38\x2e\xd5\xc8\x61\x8d\x68\x5c\x2a\x13\x7d\x71\x26\xf7\x17\x9a\xa8\x24\x1a\xc4\x7a\x04\xce\xfb\xcc\x50\x9d\xcf\x5d\x21\x6e\x8a\x05\xc8\x8f\x7d\x4e\x7e\x7b\x1b\xb9\xd5\x50\x50\xf9\x72\x4f\x3e\x95\x3d\x3a\x50\xc2\xc7\xb1\x59\xf4\x5b\xc6\x02\x9e\x80\x4a\x66\x40\xcb\xbc\xdc\x2b\x7c\x7e\x8f\x94\x05\xf0\xa1\xe8\x19\xba\x92\x7b\xcb\x5f\x87\x98\x4d\x7c\x55\xd0\xb9\x50\xd2\x4e\xae\xc9\x42\x93\x20\x3b\xd1\x4a\xdb\xae\x5a\xb7\xd6\xa8\xef\x91\x84\x8c\x96\xdb\xb2\x72\x84\xba\xe7\x81\x09\x0e\x64\xeb\x67\x0f\x5e\xa4\xec\x86\x5d\x70\x04\xe5\x53\xdb\xe4\x97\xde\xfe\xa2\x2c\xa9\x12\x22\x06\x6c\x4d\xff\x31\x2e\x6b\x65\x34\x81\xef\x2a\x8b\x33\xf8\x20\x1b\xce\x54\xb1\x14\x75\x3e\xc2\xcf\x84\x09\x16\x8e\x71\xe9\x7d\x42\x17\x79\x76\x31\x20\x32\x93\x39\xf5\x17\xee\xd0\x75\xf8\xb1\xe3\x03\x33\x32\xe9\x3d\xf6\x6b\x6e\x49\x15\x52\x05\x9f\x4d\x1e\x88\x5e\x8e\x94\x26\x34\x3e\x12\xd5\x5a\x80\x05\x2d\xe7\x33\xc7\x86\xaa\xb8\xf9\xb8\x08\xef\x2b\x5c\x7d\xb9\xec\x76\xe1\x8d\x31\x4a\x3d\x8e\xef\x7a\xb1\x2d\x4d\x72\x01\xd2\x7b\xcf\xe8\xb3\x67\xcb\xb1\x41\x57\x0b\x30\xce\xd8\xac\x01\xbc\x78\x29\x67\x23\x37\x48\xc8\xe0\x25\x31\x90\x9c\xd6\x09\x07\xf2\xdd\x13\xe7\x2b\xc3\xc3\x20\x00\xc3\x9f\x1a\x80\x17\x37\xaa\x9c\x63\xdf\x42\xf7\xc4\xcf\xe1\x2b\x77\x9f\x93\x9c\x9e\x29\xc5\x52\x79\xa8\xb2\xf4\x42\x41\xfc\xef\x0a\xd3\x86\x5c\xa4\xa4\x0e\x64\xb7\x52\xee\x3e\xbb\x4e\x7e\x87\xce\x99\x2d\x69\xfc\xa7\x4f\xeb\x02\xe1\xbe\x6c\x65\x73\xcb\xa2\xec\x00\xba\x8e\xdc\xd0\x75\x49\x9d\x36\xb2\xc6\xa6\xf9\xbf\x96\xb3\x75\x51\x8d\x88\xb7\x6d\x5c\x2c\x3a\x13\x55\xb2\xac\x58\x8a\xa6\x1e\x97\x40\x0c\xaf\x46\x6c\xea\x53\xaf\x06\x02\x5b\xff\x79\x2c\xb3\xd1\x59\x70\xdb\xe4\x12\x34\x4e\x1d\xba\x13\x1f\xf2\x6b\x89\xd5\x64\x7e\xca\xa6\xa1\x22\x5c\x79\xa8\x29\xd2\xea\x2a\xc5\x16\x87\x85\x65\xa2\x8a\x89\x77\x3d\xc6\x4d\x38\xe7\x85\x2c\xf0\xcd\x5a\x68\x83\x58\xbc\x4c\x22\x7f\x19\x22\xe7\x04\x4e\xd0\x00\x01\x9e\x2b\x74\x4b\x23\x16\x37\x3d\x01\x18\x97\x8a\x7d\xeb\x67\xee\x56\x66\x84\x19\xb0\xc2\x8c\xe4\x29\x34\x90\x4d\xac\x04\xf3\x6d\x4c\xd0\x98\x10\x34\x0c\x80\x82\x26\xd0\x1e\x5f\x9c\x92\x7d\xac\xb4\xdb\x4d\x1e\xeb\x51\xbd\x72\x37\xeb\x34\x5d\xec\xe7\xf3\x8a\xe4\x67\x9c\x4a\x18\x06\x21\x91\xc2\x88\x37\x34\x71\x0e\x94\xe8\xc7\xdd\xbe\x3d\xbb\xaf\x70\x4c\x14\xda\xa4\x52\xc9\x14\x36\xf9\x35\xda\x2a\x10\xd9\x36\xed\x16\xa4\xff\x0f\xb5\x2b\xcc\x1f\x0f\x0a\x1f\xb8\x93\x77\x1c\x94\xcb\xb8\x7a\xe8\x80\x86\x44\xfe\xce\xe7\x95\x9a\x07\xb9\x55\xb1\x0b\x8e\x2e\x7a\x3c\x09\xf5\x34\xf4\x38\x85\x7a\xce\x66\x7d\xb0\xe4\xfb\xb0\xf6\x4a\xd5\x3f\xa3\x9f\xf4\x2a\x7e\xe4\x7c\x3a\x0e\x21\xfb\xcd\x3b\xe4\xfb\x30\xa9\x03\x66\xd7\x1c\x11\x56\x58\x24\x6b\xb1\x26\x0c\x62\x00\xdd\x1d\xfd\x76\x9d\xec\x49\x67\xce\x02\x9f\x3a\xe3\x77\x95\x64\xb1\x46\x3d\xca\xc4\x1e\xbc\x70\xf6\x8b\xc3\x64\x06\x4a\x88\xff\x0f\x2b\x56\xfe\x5c\x85\x35\xe3\xa8\xbc\x5b\x87\x15\x73\x55\xbc\x52\x5f\xee\x3b\xbb\x85\xda\x1e\x62\x18\xac\xd6\x4b\x7d\xf9\x6f\x8d\xd0\x09\x49\xd4\xc3\xb6\x44\xd7\x76\xf7\xb6\x74\xb2\x71\x0c\xae\x60\x50\x60\xe5\xe1\x7a\xd7\xf2\x2c\x1c\x8b\x51\xbe\x38\x35\xfe\x76\x42\x71\x7d\x4d\x10\x8b\x60\xc7\x26\xe8\x8f\x85\x9b\x06\x4b\xf0\xd0\xc7\x5a\xc6\x4a\xef\x3d\xaa\x03\x13\x42\x37\x40\xc4\xa5\x21\x5f\x0f\x44\xf3\xf7\xa8\xd9\xd7\x71\x28\x8f\x58\x8d\x67\x15\x42\x59\xe8\x38\xa2\x7d\xeb\xcb\x5f\xb7\x5f\xf3\xbd\xbd\x7a\x6a\x87\xd8\x20\xd6\xc6\x4a\xe9\x7f\xdc\xaa\xb8\xf7\xc8\xc4\x44\xb8\x29\xb4\x04\xd1\xfd\xc7\x9d\x23\x92\x3a\xcb\xac\x27\x82\x73\x00\x8b\xdd\x95\x7d\x1e\x9d\xd3\xf8\x1e\xf1\xb8\xe2\x29\x51\x27\x16\x64\xcf\x42\x79\x20\x6f\x10\xae\xf7\x03\x7c\x8f\x8d\x5a\x94\x27\x72\xdf\xdb\xcc\xc7\xd2\xb7\xb4\xdf\xd2\xbe\xa4\xa5\x7d\xb8\x5b\x32\xd8\x9a\xa1\x3c\x07\xd1\xb6\x2d\xf2\xc9\xf4\xa2\xf8\xda\xb6\x17\x4b\xd1\xec\x41\x5a\xd2\x43\x36\x8c\x5b\x38\xb8\xe0\xdc\xfb\xc4\xee\x07\x35\x05\x8f\x29\xff\xd6\x58\xc5\x31\xdb\xf3\x30\x8f\xfe\xd0\x34\x8f\x38\xac\x2b\x1e\xdb\xa1\x19\xc4\x89\x89\x0f\x6f\xee\x56\xe6\x5d\x5c\xb5\x1a\xae\xcb\xbf\x1e\xe1\x0d\xf0\x2d\xd7\x2f\xb8\x36\xfe\xef\xf1\x27\xe5\xf5\xe9\x9c\xea\x07\xc5\x8a\x4d\x29\x20\xbc\xda\x54\xf9\xfd\x10\x4e\xeb\xdb\xae\xa6\x51\xc9\xcd\x34\xc4\xd6\x09\x8a\xeb\x8b\x0e\xa4\x33\x10\x0b\xd4\xca\xac\xfd\xf2\xa9\x57\x88\xcd\x4f\x48\x61\xac\x64\x05\x51\xa6\x34\x14\x9f\x79\x46\x5e\x2e\x0f\x31\x46\x7c\x55\x61\x7e\xb3\x82\xba\x33\x6b\xc4\xf3\x70\x37\x82\x7a\xf7\xac\x88\x37\x63\xd7\xd5\x90\x0a\x2c\x7b\xff\x02\x5e\xb8\x5c\x95\x68\x06\x05\x2b\x78\x65\x33\x4f\xc8\xab\xe5\x2e\x56\xfa\x35\x0f\x80\xb8\x26\x5f\x23\xf5\xac\x90\x22\x6b\x15\x3b\x8e\xd7\xad\x79\xf7\x82\x03\x29\xc5\xb3\x17\x91\x64\xf3\x42\x57\xbc\x4f\xef\xb1\x40\x1b\x87\xba\x9c\x55\x95\x3d\x5e\x9f\xba\x7c\x9c\x9e\xf3\x98\xd6\x69\x5e\xb1\x4b\xeb\x46\x89\x43\x5d\x20\x3b\xca\xe7\xf6\xc4\xd3\xb2\xfe\x89\x23\x36\xc1\x89\x6a\x72\xee\xdf\x34\x7f\x5b\x8e\xa1\x4f\xc8\x44\x0f\x3f\x99\xcd\x16\x57\x4f\x9d\x2a\xc4\xe0\xee\x5d\x95\x6d\xb2\x6d\xe4\x75\xa1\xfe\xcc\x79\xbf\xd4\x33\x46\xce\x3b\x75\x6a\x6c\x54\xd5\x80\x14\x20\x7c\xcf\x75\x21\xa3\x07\xbb\x86\x8b\x5b\xed\x56\x8b\x82\xa2\x1e\x7f\xa8\xdc\xdc\x6c\x4d\x52\xa1\x34\xe8\x97\xe1\x55\x59\xa3\xd1\xa4\x10\x09\x6a\xa2\x5e\x98\x16\xa9\x89\x01\xba\x59\x91\x91\xdf\xd9\x2d\x82\x3d\xb6\x00\xf7\xc4\x1d\x3c\x7e\xfa\xb6\x22\xde\xcd\xfd\x63\x00\x0c\xb4\x99\x1f\x19\x28\x46\x60\x33\x67\xe9\x40\x05\x62\xdb\x1c\x6e\x10\x6c\x90\xa5\x5a\x99\x22\xd6\xca\x56\x9c\xbe\x4d\x61\x2d\x00\x2a\x8c\x35\xe1\xbc\x45\xcb\xf9\xaf\x29\xdb\xe0\xdc\x18\xbd\xf7\x80\xe4\xf4\xb7\xc3\xc4\xc7\x7b\x52\xf5\xa8\xf4\x31\x13\xcd\x79\xf9\x98\xb0\xb1\x40\xae\x49\xf8\xf3\xdb\xb7\x5e\xb7\x29\x80\xaf\x8f\xa4\xeb\xe3\x59\x33\x64\x51\xdc\xdd\x82\x0a\x2e\xcc\x69\xd3\x34\x4c\x4d\x33\xf4\x90\x2b\x34\x4c\xa3\xe9\xf3\xb3\x8f\x40\x9a\x3a\x7e\x73\xcf\x04\xed\xb0\xf5\xb7\x92\x36\x46\x56\x14\x98\x09\xd7\x70\x4a\x02\x5b\xee\x17\x33\xc6\x6b\xbd\x03\x72\xc1\xbf\x4b\x65\xc1\xff\xe8\x0d\x7e\xb3\xb1\xb0\x19\xea\xcb\x3d\x71\x42\x53\x3a\xe1\xf8\x2b\x9d\x9e\x66\x05\xca\x80\x2d\xb4\xc5\xa8\xd1\xd8\x63\x9d\x23\x22\x45\x71\x6a\x1c\xa0\x56\xad\x18\xae\xc6\x21\x64\x91\xaa\x13\xff\x7f\xff\xb0\x13\xcf\x8e\x4a\x85\x98\xa1\x1d\xc4\x61\x7d\xd1\xdb\xfc\x18\xdf\x26\xc0\x70\xa9\xec\x9d\x22\xe8\x99\x98\x66\xee\xd5\xe0\x2a\x2c\xf4\x6b\xc9\xd8\x26\xf7\x91\x97\x74\xa7\x3f\xc7\xb3\x71\x20\xdd\xa8\x27\x75\x28\xce\x2d\x71\x2d\x93\x5f\x3c\x54\x6b\x0e\x4a\x7d\xb9\xfd\x8a\x8e\x85\x8a\x91\x6d\x68\x08\xb1\x6e\xe2\x56\x13\xf7\xa2\x52\x5f\x01\x3f\xa8\x68\x26\x82\x59\x29\xac\x67\x46\xaf\xcf\x8a\xda\x73\x53\xc2\xb7\x06\xa8\xab\xf2\x80\x61\x87\xd7\x14\xd1\xef\x0f\x66\x85\x11\x1c\xd4\xb4\x49\x3a\x80\x91\x3b\x53\xe3\x2d\xde\x24\xdb\xa4\x8c\x19\xcf\x6b\x49\x05\xfa\xfc\x68\xc5\x4b\x07\xa6\x2f\xf9\xce\x45\x72\x1d\x93\x72\x15\xf3\xaf\x6d\xd3\xf8\xc7\x44\xce\x9d\x66\x6f\xd2\x9f\x34\xa0\x99\x12\x49\xe8\x0d\x9a\xdf\x6e\x7c\xc4\x38\x07\x7c\x8a\xe6\x27\x6a\xd2\x90\x05\xa2\x84\x7b\x62\x1a\x3f\x26\x9e\xcd\xd9\x9b\x79\xa1\x21\xa4\xc8\xf6\x44\x77\x76\xc8\x20\x10\x30\x52\x43\x81\x43\xad\x2e\x45\xea\x2e\xdf\x76\x9f\x52\xca\x22\x02\x35\x55\xb1\x14\xad\x7d\x53\xfe\x71\xdc\xc4\x97\x29\x57\x60\xf8\xde\x46\xa9\x26\x0e\x46\xef\xb9\xb1\x3b\xf8\x95\xef\xc6\x28\x51\x73\x1d\xb4\x46\x71\x97\x28\x5b\xa1\x02\x24\xcc\xad\xbc\x9b\x7f\xea\xa9\x57\xb5\xc7\x87\xdb\x18\xa3\x35\x16\x15\x6a\x86\x69\x47\x18\xfd\xa5\x5d\x03\xc9\x7b\xb6\xb4\xcf\xfb\xd7\xfb\xb4\xb7\x4b\x03\xbf\x4e\xcb\xc4\x26\x93\x15\xc9\xf4\x68\x6f\xa4\x5a\x8a\x13\x50\xf4\x85\xda\x6c\xbb\x02\xba\xb1\x70\x9c\xec\xc4\x05\xfc\xbf\x9a\x44\x0f\x0b\xe5\x22\x2a\xf7\x84\x21\xc3\x85\x45\x18\xb8\x65\x27\x75\x50\x55\x31\x40\x8b\x2f\x34\x9c\xce\x4f\x9f\x91\x23\xe5\x59\xc5\x52\xb4\x74\x95\xd8\x24\xc4\xc9\x07\xe2\xed\x86\xae\xf4\xa1\xfa\xb0\x3a\x78\xff\x10\x5d\x8d\xc4\xe5\x2d\x5a\xd4\x7c\x4e\xf3\x85\x31\x85\xfd\x8e\x24\x97\xdc\xc1\xb9\x4a\xc5\x05\xa8\x1b\xd7\x88\xeb\x10\xa5\x08\x79\x77\xa2\x36\xe1\x25\x01\x17\x85\x75\xb8\x19\xd3\xe3\xa3\x95\xbd\x24\x38\x6c\xa4\xc2\x55\x93\x46\x2a\xab\xbd\xd0\xf7\xe2\xbc\x9d\x90\x98\x3e\x35\x5a\x41\xd1\xd8\xe0\xbe\x15\xbd\xf7\xf1\x6c\xe5\x1b\x50\xde\x21\xbc\xbc\x40\x17\x92\x0a\xb9\x84\x07\xaf\x01\x7e\xa4\x90\x86\x48\x6b\x32\x98\x75\xbb\xb6\x25\xc4\xdd\x3e\x50\x1f\xb9\x60\xcc\x25\x1a\xb0\xd4\xc1\x8c\xef\x98\xe1\x36\xed\x3e\xa8\x33\x0b\xfd\x20\x45\x79\xe7\xdf\x7a\x56\xe7\x8e\x83\x2a\x0e\x1c\xb6\x68\xd1\x6a\xb5\xbb\x08\x44\x79\x9f\x9b\x31\x56\x86\x02\xec\x9b\xc8\xc3\x71\x27\xf2\xaa\x16\xdb\x50\x10\x32\x0b\x35\x13\x00\x5a\xef\x4a\x85\xbd\xca\x65\xf3\x64\x4e\x58\xfe\x30\xbf\x1f\x01\xb5\xe3\xc3\x33\x59\xf4\x69\xc8\x66\x18\x59\x3c\x3d\x97\x67\x48\x1d\xed\x56\xeb\x75\xe3\xcb\xb3\x35\x34\xbb\xcf\x17\xdf\x42\x70\x67\xf9\x8d\xc2\x63\x1d\x07\x35\x1b\xd7\xb0\x93\xbe\xc4\xc3\x29\xb4\x01\xb9\xaa\x62\xea\x57\xc7\x29\x77\x3e\xfe\x11\xf7\x6b\x44\x8e\xb8\xf0\x2e\x56\x28\x4b\xfd\x4d\xe3\x87\xfd\xd6\xd0\x11\x52\x9b\x58\xe5\x56\x5d\x36\x4e\x01\xcb\x86\x0c\xac\x8a\x96\xf7\x66\x9f\xbd\x1b\x42\x2e\x15\x42\xff\xeb\x34\x17\xfb\x06\xa1\x36\x4c\xf5\xc5\x9a\xeb\xaf\xab\xe5\xf1\x73\x38\x6b\x3d\xfa\xda\x0b\x23\x45\xcf\xc7\x18\xf6\x80\xb3\xca\x21\xcb\x7d\xf9\x6f\x6c\xcf\x66\x67\xcf\x46\x01\x71\x43\x07\x38\x40\x92\xaa\x6d\xbe\x26\x18\xfb\x80\x54\x28\x96\x22\x7f\xdd\x05\xea\x36\x1f\x8a\x32\xf9\x94\x36\x6d\xd7\xee\x2c\x75\x30\xe7\x7a\x2e\xdd\x9f\x3d\xb3\x75\xe2\x56\x2d\x21\xb7\x55\xea\x33\x7e\xb0\x59\x69\x4a\x10\x03\x83\xbb\xfc\xc8\x81\x4a\x24\x61\x42\x4c\x2f\xb7\x46\xe1\xa3\x9a\xd4\xe1\x40\x98\x27\x8f\xf1\x32\x80\x96\xe3\xd8\x9d\x58\x21\xbf\x3d\x21\xfb\x71\x1c\x33\x41\x49\x17\xd8\x48\xd1\xac\xf2\x1a\x57\x0e\x84\x87\x68\x73\x50\x3b\xec\x09\x59\x22\x57\x55\xb8\x6d\xa7\x86\xcd\x0b\x02\x64\xd6\x05\x08\x63\x5d\x59\x71\x99\x88\xcf\xc8\xd8\x31\x7a\xd9\x17\xb2\x80\x51\xea\xa4\x74\xdb\xab\x9e\xcd\xd6\xf4\x55\x1b\xf9\xfd\x6a\x27\xe4\x7b\x07\x8e\xcc\x48\x13\x29\xe9\xeb\x7b\xf6\xf9\x4a\x82\x43\xae\x6f\x27\x28\xb9\x9f\xac\xd4\x84\xa5\xb8\xa3\x17\x9f\x46\xdc\x3d\x52\x8a\xa7\x97\x5b\x35\x68\xff\xed\x76\x45\xc7\x83\x71\x0b\x31\x7f\x4f\x6a\xdc\xe0\xba\x54\x1d\xee\x45\xaf\xeb\x29\x8c\x3b\x18\x88\x42\xca\x5c\xa3\xe8\x6b\x70\x65\x95\xfc\x86\x75\x32\x6e\xc4\x45\x17\xc7\x86\x77\xae\x51\x7c\x6d\x50\x90\x98\x6a\xe7\x06\x4c\x50\x7c\x35\x69\x58\xad\xc5\xf1\xf5\xfb\xda\xba\x2b\xb4\x43\xbf\x58\xc7\x4c\x44\xb4\x25\xd7\x47\xcd\x86\x8c\xe6\xd0\xd5\x58\x84\x5b\x68\xc7\x3f\x73\xc2\x1e\xe5\x99\x9a\xc8\xb5\x88\x8b\x1a\xc0\x23\x2c\x5c\x78\x87\xb2\x1d\x35\x29\xc3\x26\x62\x20\xbb\x5e\xf8\x24\x1f\x1f\x16\x97\x79\x94\xb5\xf6\xa0\xf9\xff\x9e\xa0\x68\xd4\x21\xb7\x5e\x2c\x45\x7f\xd8\x79\x81\x9e\xaf\x80\xce\xc3\xc9\xb1\xb7\xbd\x7c\x91\x42\x4b\xef\x47\x27\xc4\x58\xb6\x57\x12\x07\x69\x03\x33\x5f\x08\xe1\x64\x7f\xf1\x47\x15\xa3\xa0\x2a\xb5\x2b\x49\x3e\x3e\x3c\x5b\xda\x5c\x00\xf9\x4f\x3b\x3d\x74\x55\x96\x4a\x6b\x93\x0a\x0e\x88\x03\x76\x31\x7a\xe6\xb9\xe2\xa8\x86\x56\xae\x85\x7e\x80\x59\x7c\xfe\xe5\x0f\xfc\xe0\xea\x73\xc4\x3d\x8e\x9f\x72\x54\x3d\x32\x4a\x81\x1e\xf8\x58\xf5\xbd\x66\xaf\x6a\xab\x2c\xec\x63\x21\x11\x96\x7b\x7c\xa3\xc4\x23\xe2\xb8\xb4\x1e\xf8\xf0\xf9\x0a\x9a\x43\xe2\xe7\xa2\x2b\xf7\x67\x26\x8e\x9e\x4d\x80\x77\x53\x8a\x86\x2c\xb9\x58\xcb\x66\x7e\x2d\x2b\x70\x11\xfd\x63\x56\x9b\x5a\xc7\xda\x04\x4a\x3c\xe3\xe2\xc7\x95\x51\x39\xa1\x6e\x50\xa7\x0d\xbf\x0e\x91\x73\xd3\xd2\xec\xd0\x16\x0b\x8b\x03\x9c\x90\x5b\x21\x76\xfd\x68\x8b\xaa\x79\x8f\x91\x1f\x72\xdb\xa8\xbf\x2b\xf1\x93\x94\x19\xaa\x11\x65\xf3\x6e\xbc\xfb\xa6\x3c\x3c\x09\x3a\xa7\x4b\x93\x83\xc1\xbe\x07\xe8\x04\x3b\x09\x4a\xb9\x5f\x2c\x94\x1a\x17\x35\x8c\xac\x56\x00\x58\xfe\xa3\x77\xb7\x08\x9c\x52\xb7\x5a\xa3\xb6\x05\xd4\xf4\x9e\xb7\x94\x5b\x82\xab\xd8\xb5\x50\xca\x4b\x32\x6e\xd7\x58\xe5\x65\xa7\x9b\x0f\xc8\x0a\x3d\xf7\xf3\x51\xdc\x0d\x0c\xdd\xd3\x8a\xc6\xff\xf1\x18\x5d\xf3\xd8\x91\x26\x28\xbf\x38\x73\x9e\xba\x27\x84\x67\xf6\x99\xfd\xfa\x64\x82\xd9\x56\xe2\x19\x83\xe7\x5f\x28\x72\x1b\x77\x62\xd2\x8f\xe6\xcd\x4c\x68\x9f\x32\x1c\xb6\x7c\xff\xc2\xe5\xf3\x15\xe1\xb5\xd0\x15\x92\x81\xfe\x2e\x7d\x69\x0f\x5e\xa4\x42\x97\xc9\x18\x38\x3b\xfb\xc5\xab\x24\x09\x9d\xe5\x53\xad\xa4\x71\xae\xcd\x21\x98\xb7\xf9\xdf\x2f\x4a\x85\x6d\x50\x2a\xa5\xf0\x1f\xa3\x27\x68\x3f\x30\xb4\x09\x72\x89\xb6\x7a\x3d\x4f\xe8\x76\x05\x8c\x73\xe8\xe2\x54\xbe\x67\xc3\x38\x85\x0c\x1b\xf4\x5b\xf3\x5c\x33\x3a\x49\x3f\xad\x31\xe4\xa5\xe5\x42\xd7\x81\xda\x36\xed\x2e\x96\xa2\xbe\x1e\x2d\x55\xd7\x43\xdb\x8e\x23\x52\xb4\x6d\xae\x22\x5d\xe1\xc1\xd2\x2e\x3a\x38\x34\xfb\x6a\x9a\x18\xb1\x54\x48\xf0\xbb\xb3\xcf\x15\xfd\x03\x0a\x6a\xf1\x4f\xf8\xcb\x10\x4d\xa8\x0f\xb9\x55\x3b\x59\xd9\x4e\xdf\xab\xd2\xbb\xc1\xae\xae\x2f\x5f\xb4\xda\xbb\xb5\xb1\xbb\xd4\x9f\x9a\xd4\xdf\xc8\x22\x77\x94\x7b\x6b\xd9\xd8\x2d\x4e\x17\xc1\x7e\xf2\xf1\xcc\x90\x20\x20\x3e\x57\x41\xfe\x74\x99\x27\xfb\xeb\x6e\x59\xba\xfc\x86\x65\xca\x72\xe0\xce\xcb\xb2\x01\xa2\xc2\x3d\x80\x33\xa6\x48\x5f\xdc\xa5\x8d\xb4\x08\x13\x1c\xd2\x3e\xe3\xc8\x4b\x93\xf4\x52\xdb\x8c\xab\x85\xfe\xe4\x7f\x7a\x96\x6b\x6b\x9c\x4a\x25\xfe\x4f\x28\xd9\xbf\xb5\x49\xe1\x6c\xf9\x0d\x1c\xf0\x09\xd8\xf1\x37\xd3\x79\x66\x85\x25\x88\x96\x2f\x0a\x4b\x54\x1c\xa7\x25\xbe\xe9\xba\x73\x9b\x1c\xd2\xfa\x21\x83\xc0\x1b\xd0\x22\x22\xb0\xf6\xb9\xb2\xa6\x19\xf1\xb8\x2e\x01\x04\x9b\x50\x3e\x8b\xa2\x27\x35\xfa\x73\xc8\x14\xad\x4b\xe3\x8f\x3b\x75\x87\x0a\x16\x24\xb2\x50\xb9\x8a\x32\x4d\x9e\x31\xb5\x38\xfd\x6a\x28\x7b\x07\x68\x67\xcb\x8b\xb3\x1d\x70\xbb\x8e\x1f\xd4\xd9\x00\xbd\x58\x84\x84\x97\x3c\xc5\x80\x2e\x8c\x5b\xc0\x47\x5e\x56\xd6\xaf\x4d\x4e\xd8\xcc\x8d\xd1\x0e\x57\x35\x24\x16\x4e\xe4\x44\x7f\x3f\x5f\x91\x52\x07\xd7\xb0\x52\x9f\x11\xbc\xac\xfc\x61\x40\x39\x22\xe3\xed\xa3\x82\x34\x9a\x40\x2d\xa2\x0b\x75\xeb\x83\x1a\xa5\x01\x0d\x03\xa1\xa0\x3e\x60\x8d\x4c\x09\x2e\x26\xd5\x5a\x99\xf2\x5e\x39\x6a\x9e\x1a\x21\x09\x15\x44\xdd\xf3\x1f\xd3\x4c\x24\xa8\x1d\x64\x44\xf1\xfa\xf2\xd1\x9a\x56\x49\x61\x60\xb5\xc3\x55\x5c\x7b\x54\x2b\x46\x31\xaa\xd8\x58\x7c\x22\x23\x3a\xcd\x37\xdd\x9d\xd3\x8b\xf1\x77\xbf\xeb\x0d\x7e\xca\x39\x0a\x8e\x54\x13\x62\x4d\xbe\x79\x84\xb7\x01\x0b\x31\x43\xb6\x95\x91\x25\xea\x59\x37\x38\xa9\xb9\xf9\x3c\xe0\x9b\x0f\xcb\x6f\x59\xa1\x21\x2b\x56\x48\x25\xa8\xc1\x5f\xfd\x8f\x02\xef\x66\xc4\x4b\x50\x81\xb9\xd7\x36\x6b\x02\x60\xdc\x77\xbd\x1f\x66\x45\xee\xdd\x9d\x23\xf5\x6b\x5e\xe6\x02\xfc\xc6\x37\x9e\xd1\x90\xab\xd8\x26\x26\xf5\x82\x04\x79\x65\xdc\x55\x18\xa5\xff\x1a\x1b\x0b\xca\x4c\xfe\x71\x7d\x8f\x35\xf3\x6a\x91\x37\xaa\xa7\xd2\x2a\xd7\xb6\x69\xab\x5c\x72\xe5\x62\x65\x69\x5b\x85\x2e\x4e\x4f\x9e\xc7\xd6\x2b\x65\x62\x5c\x80\x61\x52\x75\xb9\xe5\x7d\x7b\x4f\x76\xb7\x90\xea\x3a\x4c\xe6\x26\xb1\x9a\xb6\xc3\x1a\xd5\x20\x9a\x6b\xce\x72\x82\xaf\xb1\xb1\x65\xad\xc8\x82\x22\xf2\x3c\x4a\xc0\x73\x00\xd2\xc7\xf4\x87\x74\x6e\x55\xf2\x23\x04\x0a\xbe\xf8\x74\x76\x4c\x5f\x6d\x77\xda\xfb\x15\x34\xbe\x77\x50\x7a\x62\x1b\x4d\x95\x1d\x71\xee\x6b\xb2\x26\x67\xed\xe5\x76\x02\xbf\xf8\x97\xae\x16\x20\xe2\x26\xa3\x92\x0a\xc5\x0c\xdf\x25\x77\x36\x20\xe1\x99\xec\x9e\x7e\xbf\x43\x96\x9e\x26\x72\x2c\xec\xfb\x19\xca\xc5\x67\xd6\xf2\x13\x7b\x23\x66\xd4\xc9\x74\xdb\xdb\xb2\x99\x37\xae\xdc\xa1\x50\x99\xbc\x4b\xf5\x83\x63\xc2\x66\xa4\x58\x8a\xce\x2f\x2b\x7b\x2a\xfe\xd0\x94\x15\x7a\xdb\x01\x9e\x51\xb9\x3f\xaa\x58\x4b\xbe\xfc\xb8\x3a\x5e\x4d\xec\xf1\x47\x3d\xa6\x4d\xdb\x48\xd5\x4d\xf0\x40\x85\x6b\xa7\x28\x83\x42\x8c\x03\x22\xc8\xa9\x2b\x9f\xcc\xce\x79\x10\x37\x46\x8a\x3e\xbd\x27\x1d\xe4\x74\x7b\x3d\x2d\x87\x6f\xf6\x2a\xf9\xb4\xcb\xa1\xcf\x97\xb2\x85\x59\xfb\x78\x64\x02\xc9\x7b\xae\x1a\x31\xea\x05\xfe\xf9\xe7\x63\x1b\x57\x13\x56\xf4\x13\x13\x74\x51\xe1\x06\x5f\x42\x8b\x11\xcb\x77\xf7\x29\x0b\xc3\x10\xd6\xdb\xb9\x71\x23\x15\x94\xaa\x97\x96\x78\xd7\x2e\x94\x27\xbc\xb7\x86\x14\xad\x41\x63\xdd\x12\xdd\xcd\xaf\x21\x4c\x4f\x44\xfa\xcf\x7d\xfd\x79\x59\x9a\xe0\xa0\xd6\x0f\xaf\xa9\x70\xb3\xd6\x87\x5e\x35\x73\xca\xf4\x99\x1d\x45\x48\x09\x85\xfb\x0c\x1e\x83\xea\x09\x6f\xb7\xf7\x19\x6d\x05\x36\x2b\xa9\xaa\x0f\xbe\x96\x2d\xa0\x28\xeb\xdf\x76\xf3\x0a\x59\xce\x0a\xc1\xf8\xb4\xe0\x6f\x1e\x53\x5c\xd3\x6a\x38\xa3\xd2\x66\x74\x6c\xce\xc6\x98\xa9\x53\x3a\x3a\x3a\xb8\xfe\xd3\xbe\x01\x8a\x67\x2c\x41\xbe\x09\xb0\xcf\x9f\xed\x1f\x29\x85\x39\x82\x8c\x84\xfb\x9a\x17\xf5\x07\x47\x82\x54\xff\x0c\xbe\xcd\x95\xc7\xa4\xd8\x1a\x8b\x3b\x9c\xb9\xc7\xc5\x9b\x0f\x9a\x36\x37\x40\xcf\x7d\x43\x1b\x56\x32\x52\xa5\x2c\xd9\xf7\xf7\xe5\x26\xec\x57\x6c\x66\xa1\x4b\x85\xb9\xe3\xe9\x5d\xe9\xc7\xf2\x48\x76\xb6\x36\xfa\x0d\x8d\x1c\x49\x92\x2d\x52\x9f\xf1\x97\x41\x6a\xf0\x67\x0e\xb1\xe2\x18\x0b\xef\x64\xc1\x26\x95\xf7\xd1\x88\x3f\x44\x02\x04\xf9\x8a\x95\x3d\x87\xe0\xa5\x29\x95\x23\xf2\x7f\x7d\xb4\x45\xbb\xcf\x22\x16\x12\xce\x2b\xf9\x5b\x57\x2b\xde\x3e\x35\x4c\x00\xd8\x6c\xfc\xfb\x02\x2d\xd6\x39\x1e\x17\xfb\xc5\x16\x47\x3a\xfe\x60\x05\x2f\x3a\xaf\xbf\x45\x7c\x8c\xe5\x47\x32\x0a\x30\xa1\x9d\xe8\xf2\x1e\xbe\x5b\xb6\x78\xf7\x84\x98\x30\x0a\xa5\xc2\x3d\x9b\x35\x68\x21\x78\xb1\xa5\x8f\x36\x3f\xbb\xc5\xb2\xd3\x25\x94\x09\x60\xe0\xe7\x9e\x12\x13\x4a\x0e\xff\x35\xae\x3f\xa5\xe4\x46\xec\xd0\x84\x62\xf3\x50\x83\x6f\xa2\x90\xed\xd5\x90\x1b\x3a\x58\xd8\x35\xde\x7d\x3c\xfb\x16\xc2\x76\xd0\x8f\x88\x03\xd0\xca\xdb\x07\x27\x91\x94\x2f\xb3\x2e\xe7\x41\x72\x09\x62\xf5\x0c\xc9\xed\xbc\xbb\x27\x69\x51\x19\xbb\x71\x8b\xdb\x0a\xbb\x8e\x9e\x30\x74\xe3\x10\xec\x5a\x82\x91\xbb\x65\xc9\x25\x4a\xf7\x8c\xb8\xf6\x55\x4b\xf5\xfa\xe2\x03\xb2\x14\x0b\x19\xef\x92\xf3\xdf\xdd\xae\xa0\x9a\x9b\x4e\x99\xda\x7c\x57\xbf\x74\xa8\x74\x39\xa6\x3d\x80\x2e\x5c\x92\xbd\xb8\x01\x0d\x59\xab\xd3\x5c\xe1\xa2\xd7\x65\x26\xe9\xc2\x2c\xf4\x91\x8d\xe3\x42\xf0\xef\xed\x97\x28\x58\xf5\xff\xd5\x69\xa5\x9c\xad\x02\xba\x31\x13\xd3\xc7\xae\xf5\x6a\x87\xec\x10\xdf\xab\x61\x28\xa8\xa5\x57\xdc\x63\xfb\x35\x35\x4c\x46\x69\x9d\xbb\xae\xcb\x60\xe8\x0a\x91\x80\xb8\x3d\x21\xf1\x45\xbb\x74\xee\xf9\x0a\xd1\x50\xb2\x59\xa2\x9e\x89\x1a\x74\x2e\x11\xb9\x81\xca\xed\xbc\x05\x8a\xb7\x14\x84\xe6\x68\xd0\xa0\x8c\xe8\x01\x30\x30\x2f\x2d\x48\x24\x2b\xb7\xca\xfd\xb6\x86\x00\x4a\x04\xe1\xc0\x85\x02\xee\xc5\xe5\x15\xed\x21\x90\x20\x01\x77\x7f\x60\xe5\x28\xad\x5b\x71\x13\xd1\x92\xef\xca\x2a\x09\xfb\x2d\x98\xcc\x5f\xbe\x90\x85\xa5\xba\x14\x92\xf1\xf8\x67\xb4\x2e\xb8\xc9\xc5\x86\x65\x01\xdc\xbe\x46\x9b\x3f\xc6\x5f\x2c\x19\x5b\xfc\xdb\x8d\xda\x05\x4b\xe5\x4b\x4b\x7d\xc6\xff\x39\xae\xbb\x19\xb9\xc4\x09\xb9\x9b\x53\xf4\x89\x47\x94\x3e\x2f\x74\x81\xef\x11\x9f\xc7\xc7\xef\x6e\x53\xea\x0d\xcf\xe7\x2e\x91\xf9\x49\x8f\x4b\x6e\x2a\x00\x21\x0d\x43\x6e\x04\x7b\x6b\x84\x11\x97\x4f\x77\x64\x1d\x34\x70\xbc\x56\x6c\x32\x64\xd6\x45\x45\xb9\xf5\xed\x6c\x68\x12\x08\xde\xa0\x99\x8c\xe2\x91\x22\x26\xdc\x14\x82\x4b\xe3\xe6\xb4\x89\x0c\x6e\xda\x88\x25\xda\xaf\x85\x4f\x0c\xc9\xfe\xac\x00\xdb\xd8\xab\x49\x50\x61\x61\xd5\x41\xed\x97\xf9\x04\x25\x9e\x61\x50\x63\xed\x5c\xa0\x89\x31\x84\x8e\x97\xec\xaf\x0b\xd3\xb6\x65\x0b\x42\x2f\x11\xbe\xd3\xaf\xce\xa3\x3b\x79\xe6\x99\x7a\x55\x87\xb0\x2c\xce\x5f\x73\x4c\x5a\xc8\x5f\x75\x55\xb1\x14\xbd\xa4\x38\xd4\xf9\x9c\x16\x10\xbf\xa9\xff\x7a\x7b\x64\x7a\x74\x9c\x66\xa6\xbb\x28\x1e\xd3\x5c\x86\xb8\xb9\xf9\x14\x75\x78\xf7\xa9\xa1\xf2\x2a\x38\xc4\x05\x44\xc7\x90\xe7\x26\xf5\x7f\x79\x5a\xf1\x3a\xf9\x19\xbd\x19\xde\x4d\x45\xac\x2f\x2f\xde\xa9\x0b\xcf\x33\x27\x99\x57\x0c\x3a\x9c\x7d\xa6\xa1\xcb\x35\x9a\x93\xc4\x6c\x1c\xdc\xc7\x5b\xec\x79\xd4\x29\x0b\x5f\xf5\xfc\xc9\xbd\x0a\xa0\x59\x9c\x39\xe1\x14\xf7\xf8\x06\x65\xe7\x1f\xc2\x0b\x8f\xc2\x27\x87\x49\x75\xbb\x94\x8c\xd2\xa9\xf0\x5b\xb9\xba\x25\xdc\xea\x57\x6e\xe7\xbf\x8f\x2f\x60\x79\x23\xf6\xca\xe1\x71\x2a\x24\x77\xf1\xe2\x25\x93\xe1\x87\xc8\x4a\x66\x7b\x30\x4c\x76\x36\x7e\x52\x73\x4f\xd8\xfc\x01\xbf\x86\x3c\x9c\xfe\xcb\x39\x95\xf8\xd3\x12\xea\x8e\x87\x3f\x1f\x8f\x82\xf1\x1d\x3d\xb3\xca\x16\xee\xb0\xa6\x5d\x33\x39\xf9\x69\x4a\xf1\xbd\xfb\xd9\xb1\x5a\xe1\x22\x4c\x4d\xc5\xf9\x36\x5e\x09\xd4\x2d\x28\x3f\xfc\x44\xb0\xfd\x3f\x3c\x66\x84\x0a\x75\x40\x4e\x99\x1f\x93\xdc\xef\xf7\xf1\x12\x16\x3b\x9e\x4d\x9b\x18\x68\x81\x4f\xec\xfe\xdf\x24\x02\x39\xe2\xa9\x28\x6c\x8e\xbb\x99\xc0\x5e\x1b\x93\x1f\x50\xe6\xb2\x36\x6a\xf2\x82\x1e\x7e\xc1\x87\x1b\xe7\x2b\x5d\x3e\xf8\x14\x73\x8d\x8d\xc2\x62\xc5\x44\x3a\x11\xa1\xe2\xd2\xa4\xf6\x5c\x6d\x44\x59\x8b\x8b\x45\x98\x47\x44\xd7\x9f\x92\x07\xab\xcc\x88\x5f\x07\xe9\xf1\xdc\xf3\x9a\x37\x70\x37\xc3\x7e\x60\xc7\x4f\x87\xc3\xfc\xde\xaf\xf9\xff\x22\x97\x38\xc8\x4e\x35\xc9\x96\x3e\x9a\xde\x16\x44\x58\xa6\x32\xdb\x70\xbf\xbe\x7b\x6d\xf0\x49\x00\x08\x0c\xf8\x9a\x28\x95\x89\xdc\x32\x66\x0c\x25\x9b\x8e\xbe\xdc\x15\x57\xf0\x3b\xbc\x4c\x36\x60\xff\x33\x77\x84\x7a\x88\x6e\x9d\xbc\x18\x20\x0c\x11\x5e\xc5\x5f\x06\x75\x7d\x1b\xf1\x5d\x4a\x9f\x71\xc9\x02\xd9\x42\x05\x21\xe8\x96\xaa\x7b\xb1\xed\xba\xb6\xa9\x6d\x52\x27\x55\x35\x6b\x5f\x21\x76\xb4\x66\x8d\xe0\x06\xdf\x3e\xdd\x7b\x87\x36\x39\x0b\x6d\x18\x5a\xc7\x7f\x77\x72\xa1\xf2\x4e\x28\x80\xb6\x85\x2b\x6c\x45\x6e\x60\x55\x69\xd7\xdc\x7f\xad\x93\x74\x36\x0b\x3b\x34\x0e\xc9\x24\x59\xbf\x47\xc7\x34\x50\x9d\xa8\xd6\xc4\x58\xe8\xb0\xad\x98\x85\x63\x17\x4a\xb6\x42\x34\x54\x56\x23\xc2\x61\x61\xe5\x5a\x55\x91\xb6\xda\xe0\xc1\xdb\xb8\xe0\x84\x6a\xe1\x46\xba\xc1\xbb\x52\x96\x0e\x87\x2a\x0a\x28\x94\xf9\xd8\xc5\x71\x36\x81\xdd\xc7\xda\x74\x80\x57\x87\x99\x35\xa8\x87\x69\xd6\xcc\x71\x3f\xe5\xa4\xea\x4e\xf9\xe6\x5b\xf2\x7b\x4e\xd2\xf7\x4b\xd1\x18\x43\xb3\x2f\x40\x3e\xd4\xd1\x11\x59\xdf\xc2\x24\xf3\xc2\x64\x7a\x12\x7d\x5f\x9a\x8f\x7a\x20\x8e\x9d\x0d\xa2\x1b\xc4\x4c\x11\x98\xa8\xa2\x6c\x7e\xcf\x1d\x5a\x05\x03\x64\x93\x44\x9f\xea\x0f\x6f\xc8\xef\x6c\x11\x9f\xf7\xcf\x7c\x40\xe7\xaf\x4e\xdf\xa0\xa5\x6e\x7b\x72\x5b\x1f\x95\x6f\xa1\x9b\x83\xf7\x0a\x97\x96\xf5\x8f\xed\x9a\x1c\x26\x06\x91\xf8\xc0\x38\x45\xce\x13\xd5\x61\x3c\x53\xea\xcb\xff\xe2\x51\x45\xd2\x3d\xf4\x7d\xaa\x0a\x3c\xac\xd2\x6a\xdd\x90\x39\x94\xd8\xfc\x16\x5d\x7f\x34\x7d\x21\x76\xd2\xc0\xf4\x19\x6d\x8b\x05\x78\xad\x81\x38\x83\xd9\x58\x6a\x89\x4e\x8c\xda\x42\x39\xa9\xf3\x31\x19\xd8\x1a\x20\xd3\x2a\x4c\xa9\x6e\xba\x5c\x82\xa3\x7a\xb8\xac\xe5\xc5\x2f\xa4\xed\x57\x0d\x3b\x99\xb3\xf2\xd8\xc1\x8b\xb5\x90\xd7\x70\x89\x26\x82\xf6\xda\x16\x6d\xe0\xca\xb8\xfe\x0b\x84\xb9\x75\x6d\x7c\xd3\x5d\x62\xb8\x4a\x13\xb9\x69\xe3\xb9\xcb\xe5\xeb\x08\xb0\x59\x73\xb9\x4a\x55\xfc\xf9\xbe\xa3\x30\x16\xa7\x76\x74\x14\x3d\x70\xd1\xeb\x2b\x7c\x60\xe9\x38\xad\x24\xb7\x34\xbd\xd3\xdc\x7f\x29\xec\x52\x10\x9c\x63\xc8\xe5\x3e\x22\xd1\xbf\x3e\x78\x7e\x06\x6e\x40\xdc\x6a\x05\x30\xc9\xc6\x89\xf9\x7c\x3f\x7a\x13\x72\x7d\xd4\x8a\xd1\xfd\xc8\x12\xd5\x08\xd8\x37\x29\xf4\x7b\xf9\x8f\xdf\xae\x54\xc4\xb0\xa1\xe8\x33\x82\x37\xce\x55\xa5\x19\x4a\x11\xdd\xaf\xea\x43\xf8\x42\x83\x3b\x7a\xf7\x0a\xce\x38\x9e\x3e\x3d\xae\x52\x4e\xa6\x6f\xd8\x21\x89\x54\x56\xe1\x03\xfb\x2e\xd1\xa3\x97\x1d\x9f\x35\x97\xdb\xa0\x89\xe0\x5c\xd5\x8e\x3c\x71\x49\x90\x92\xc1\xf2\x3b\xd7\xa4\x65\xe4\x8c\x22\x08\xe6\x19\x8f\xc8\x99\x00\x4a\x34\x09\x8c\x5d\xed\x6d\x4a\xa0\x12\xe7\xa7\x2f\x77\xaf\xe6\x18\x9a\x8a\xe2\x03\x52\xf5\x96\xd9\xe9\xc7\x26\xa0\x6c\x05\xf1\xfb\xa9\x23\xf2\x17\x10\xbb\xca\x7d\x6f\x0b\x83\x4e\x69\x00\x26\x1b\x99\x8a\x1b\xcb\x7b\x46\xab\xe9\xce\xc3\x2e\x88\x21\xc7\x7f\xf3\x65\x69\x76\x63\x2b\xf6\x2e\x51\xf3\xb8\x76\xe0\x28\x65\x1c\x16\x54\x8a\x7e\x7a\x46\x9e\x01\x6e\x5b\x92\x40\xbd\xa2\x61\x77\x5d\xa0\x66\x97\xeb\xae\x93\xd5\x44\x29\x32\x3c\x7e\x4e\x2b\x94\x05\x21\x09\x28\xa7\xa6\x4f\xd8\x2c\x91\x4d\xb4\x65\x70\x63\xec\x5b\xad\xbd\x00\x9f\x21\x6c\x13\xd1\xda\xd0\x87\x35\xba\x0c\x75\x2d\x64\xe3\x29\x5c\xcd\x26\xe9\xd1\x0e\x8c\x4e\x4f\x8d\x1b\x34\x8a\xa5\xc8\x69\x1b\xad\xbd\x55\x0b\x27\xc6\x55\x9f\x6b\xd3\x60\x0b\x1c\xc0\x27\x2a\x9d\xdc\x5f\x37\xf3\x30\x50\x27\x66\x9d\x56\x2a\xc5\x52\xf4\x3f\x4b\xd2\x9f\x3e\x89\x9f\xdc\xf3\xe6\x0e\x15\xf9\x22\x60\x84\xab\x43\x47\x5f\xd8\x36\x54\x41\xc9\x38\xd0\x2a\xde\x39\x51\x83\x29\x13\x57\x2c\x0b\x73\xcf\xb8\x9a\xff\x2a\x65\x4c\x37\x62\x70\x8c\x99\xff\x7f\xea\x3a\xc8\x67\x22\xab\x15\x6e\xd5\x07\x85\x40\x0b\xc3\x5c\x2c\x2e\x1a\x7b\x9a\x0f\x18\x6e\xa6\x2e\x31\x15\x6b\xd2\xdc\xba\x57\x75\xb7\xe3\x06\xc1\x82\xd5\x1d\xff\xdc\x4f\x0e\x95\xdf\xd2\x4a\xa8\xed\x8b\x59\x5a\x95\x36\x81\x6f\x1e\xff\x9f\x8d\x97\x74\x9b\x75\xe6\x63\xbb\x22\xbe\xfe\x4d\xab\xb3\xa5\x0d\xec\x1d\xf8\x96\x49\x5c\xcc\x97\x17\xe8\x75\x1a\xc1\x95\x04\xd1\x76\xdb\x89\x51\x99\x00\xd7\xc4\x88\x15\x01\x39\xd6\x97\x3f\xba\x5a\x28\x36\xab\x2a\x06\x2b\x15\xac\x11\x76\xc0\x4f\x27\xf7\xf0\xce\x91\x0a\xbb\xc2\x4d\xcd\x22\x4a\x7d\xc6\xd6\x2d\xaa\xce\x36\x0b\x44\x12\x2a\xac\xd8\xc9\xd7\x2f\xcb\x61\xb3\x6f\x8c\x3f\x22\x03\x0f\x15\x81\x27\x5a\x71\xaa\xff\xf4\x26\x5a\xe0\x19\x8a\x50\x60\x50\x63\xc4\xe6\xe6\xe3\x6b\x26\x66\xbf\x2e\x65\xa4\x4a\x84\x1f\x5c\x7e\xee\x49\xfe\x95\xaa\x71\x51\x6c\x73\x34\xdc\xc2\x1d\x23\x65\x87\x5b\x51\xe7\x1a\x46\xaf\x62\x00\x0d\xa8\xc4\x96\xa5\xc4\x65\x42\xce\x0c\xdb\xb8\x9c\x74\xa6\xd1\x1b\x73\x15\xe4\x3c\xf2\xfb\x31\x8e\x3e\xb6\x42\xa3\x31\x90\x06\x01\x27\x09\x48\xb4\x7f\xb6\xb5\xbd\x56\xd3\x0f\xb0\xe3\x8b\xf2\x21\x57\x3f\x9c\x58\xdf\x14\x1d\xe4\xa2\x2a\x0f\x6c\xab\xe6\xa8\x1e\xe8\x65\x93\x72\x33\x8b\xf7\x0f\x54\xd1\xa6\xbe\xc9\xb8\xba\x73\x5c\xf5\xbc\x70\x99\x66\xac\x84\xfd\x20\x64\x09\xe4\x78\xac\x2e\x94\x49\x59\x80\x12\x4e\x6c\xee\xf4\xc8\xec\x53\xc6\x80\x1b\x13\xc0\xb7\x05\x43\x54\x18\x4f\x19\x6e\xfa\x7d\x42\x3e\xe4\x3a\x6a\xc7\x8d\x61\xc2\x3f\xbb\xb7\xa2\xe0\x1f\x41\xd4\x27\xfe\xe9\x13\xf7\x5e\xa2\x35\x99\x16\x66\xc5\x0a\x69\xe0\x84\x3d\x11\xff\xc8\xdf\xec\x96\xc7\xae\x73\x5a\xe6\xe8\xbe\x3e\x2d\x8b\xec\x25\x5e\x52\x27\x64\x0a\xc2\xa5\x4b\x2e\xd0\xbf\x85\x74\xf6\xcc\x9f\x77\x48\x29\xd3\x30\xcc\x74\x13\x4d\x85\xaf\xaf\xd7\x9a\xaf\xd0\x35\x6b\x65\x9a\x58\xfe\xe5\x2d\xed\x0d\x26\x82\x4c\xe2\x27\x7f\xfb\x3e\xb5\x00\xb0\x88\x99\xce\x34\x16\x2b\x14\xf0\x99\xe2\x7b\x97\xfa\x0a\x17\xed\xd6\x01\x8c\x8c\xab\xd5\x8a\x91\xea\x1f\xdf\xca\x56\xb6\x9d\xed\x33\xa7\xf3\x69\xd9\xef\x7b\xb2\x7d\x04\xc7\x8d\x73\x24\xf2\xf6\x81\x43\xd5\xf1\x01\xff\x6a\x53\xdb\xe5\x53\xad\xb7\x33\x55\x10\xe0\xab\x9d\xe9\xe6\xab\x9b\xa8\xca\xc9\x43\x1f\x86\x20\x54\xbc\xc1\x05\x89\xc5\x80\xf7\x88\xea\x34\xe3\x33\x1d\x12\xd2\x61\x59\x62\xfa\xf1\xdf\xeb\x39\x22\xee\x26\x5a\xa6\xbd\xaa\xc7\xed\x5a\xfd\xbd\xf4\x78\x98\xa5\x93\xf6\xc2\xd0\xb1\xad\x7f\x4b\xe2\x3c\x2d\x6e\xf9\x0d\xcb\x95\x5b\x0e\x04\xbb\xe8\x84\xc2\xf5\x44\x41\xcd\xc6\xc2\x5b\xbc\x76\x74\xa2\x96\xa1\xb9\xb3\x6d\xcb\x8d\xed\x62\x69\x01\x53\x05\xcd\xbc\xdc\x1f\x0a\x0a\xfb\x85\x54\x5d\x8f\x0a\x1b\xc6\xbf\xcf\xd1\xc0\xfa\x61\xa5\x82\x6c\xda\x0e\x1f\xae\x70\xc7\xe9\x71\x5a\xb3\x65\x52\xd7\x2a\x42\x2f\x2e\x16\x13\x7f\x9e\xaf\x8c\xe2\x30\x0b\x48\x05\x82\x64\xa1\x57\x99\x21\x81\x16\x03\x60\x3a\xff\x76\x47\xf6\xdd\x87\x3e\x4f\x8d\xd1\x1f\xe7\x64\x9f\x93\x85\x3d\x62\x2a\x4b\xae\xfc\xb0\x89\x9a\xa0\x68\x9d\x88\x4f\x70\xf4\xe0\x10\x15\x72\x58\x2c\x45\xf9\x0d\x9a\x08\x01\x0d\xcb\xb6\x94\xd5\xcd\xaf\x52\x5c\x28\x88\x8b\x19\x97\x56\xdc\xca\xc7\xf1\x16\x5f\xbb\x45\xa7\x4f\xea\xc3\x23\x0b\x33\x20\x3b\x0a\x41\xfd\x7d\xc7\x74\x6f\x5b\x37\x44\xdc\xb9\x25\xda\x39\x40\x9d\x51\x50\xb3\xee\x11\x31\x1e\x61\x77\xf3\x28\x8c\x3c\x8f\x61\xe1\xac\x56\x8a\xfe\xa1\x29\x45\xa2\x06\x22\x36\x44\x29\x58\x3b\x8e\xbb\x03\x32\xb7\x8d\xdd\xe2\xac\xcc\x6a\x60\xee\x43\x12\x4a\x51\x07\xd7\x3a\xe3\x43\x9a\xfd\x6c\x99\x04\x01\x66\x12\x44\x76\xe0\x25\xa9\x68\x33\x6d\x46\xb1\x14\x5d\xa5\x59\xc2\x75\x37\x93\x92\x44\xee\xb8\x3e\xff\x64\xf6\x87\x76\x76\xcc\xec\x98\x51\x9c\x76\xd5\xd5\x53\xf9\x29\xde\x7a\x8c\x9f\xe2\xa5\xb8\x2a\x66\x2e\xd1\xe1\xcb\x65\x36\xfd\x98\xd2\x1c\xe6\x9f\x07\x86\x40\xfc\x53\x6e\x9e\x5f\x2c\x45\xa3\xb7\xeb\xd3\x61\x62\xdb\x42\x09\xbe\xfb\x99\xf3\x95\xa8\x06\xed\x91\x70\xe3\x39\x3a\x48\x7b\x60\xa6\x88\x31\xf0\x6e\xf2\xcb\xa6\xc9\x6d\xbf\x8b\x11\x6b\x9d\x75\xf7\xe5\x3f\x37\x8d\x7f\x66\x9b\xf8\x89\xc4\x41\x6e\xe1\x26\x69\x13\x06\x64\xcc\x66\x57\xa2\xc2\xe8\x8a\xff\xe5\x37\xdb\x24\xa0\x9d\x7a\xf0\x0f\xe5\xfe\xf9\x9a\xe8\x42\xad\xc0\xf3\xb8\xec\xbe\x48\x03\x3b\x1e\x97\x57\x9b\x21\x62\x33\x0a\x6e\x0a\xf9\xb7\xef\xbf\x50\x1d\x18\xf2\x04\xab\xd4\xba\xd7\xce\x1a\x2e\x95\xf8\x94\x3f\x1f\x2a\x75\x39\x2a\x65\x52\x2c\x45\x17\x8e\x4f\xc5\x3a\xb9\x4e\xc7\xef\x6e\xd4\xa5\x93\x1a\x71\xeb\x5f\xcd\x18\x5a\xdf\x74\x8d\x3a\x5b\x2d\xfb\x04\xdc\xa4\x8d\x8f\xf4\x68\xb2\xfb\xcd\xb8\x98\x4b\x31\xcd\x47\x0b\xe9\xc3\xaa\xc1\xb8\xfe\xe3\x87\xe5\xeb\x8a\xbf\x0e\x22\xbc\x14\x8b\x22\x4f\x17\x44\x86\x02\x82\xa3\x76\x1e\x50\x96\x91\x26\x0d\x5d\x93\xd8\x89\xf9\xe3\xcc\x83\x22\x12\x23\x66\x22\xa1\x85\x58\x40\x6c\x4c\x72\x80\x16\x2f\xd6\x89\xc1\xd1\x05\x5b\x14\xb7\x70\x55\x92\xfd\x03\x0f\xaa\xaa\x63\xb4\x46\xca\x04\x00\x7c\x43\x57\x6b\xd4\xaf\x64\x6b\x29\x42\x78\xce\x5d\x38\x4c\x05\x64\x5b\x88\x40\xeb\xbf\x45\xf9\xae\x88\xd9\x04\x09\x65\x84\x47\xaf\x90\x5b\x72\x86\x1b\x71\x1d\xa0\x77\x3f\xff\x9c\x96\xe6\x26\x1b\xab\x5e\xa4\xfb\xb7\x4f\xc9\xde\x5d\x9b\x02\x96\x32\xee\x7e\x04\x9e\x48\xb3\x7a\x9f\xdd\x32\xd7\x74\xab\x49\x6a\xf9\xfa\x1c\x0d\x6b\x82\xfc\x1a\x24\x35\xcf\x93\x23\xf0\xcf\x8d\xd1\xd7\x61\x4d\xe4\x06\x42\x08\x39\x9d\x14\x4b\x25\x0f\x07\xb5\x42\xd6\x37\xdc\xad\x5d\xe1\x6e\xe4\x78\xc9\x29\x19\x78\x9f\x06\x05\x02\xda\x04\xe4\xfb\x01\x8a\x62\x60\xc5\xa6\x61\x42\x13\x3d\xb0\xb4\x05\xa0\xc5\x02\x54\x15\x9e\x9f\x6f\xbd\x28\x2b\x36\x4f\x4c\xe6\xff\x7d\xab\xb6\x7f\xb2\xc3\x4a\x25\x59\xf0\xfe\x6a\x63\x16\x7b\xdf\x8d\x9a\x6e\xbf\xec\xc8\x42\xed\x56\x45\xe6\x06\x3a\xff\x6f\x8f\x57\xbc\x49\x68\xc8\x5c\xc1\x85\xb9\xe1\x68\x5a\x88\xbb\xd5\xec\xe2\x7d\xc8\x08\x25\x1f\x85\x71\x10\xb1\x57\xe8\x7a\x12\x01\x91\xba\x16\x47\xec\xb4\x9f\x40\x4e\x3a\xc8\x98\xb6\x50\x50\x1b\x31\xf1\xd5\xd9\xda\x17\xcb\x0a\x9f\x26\xc0\x8c\xd8\x8a\x57\xe5\xcc\xe3\xe7\x8a\x36\xd6\x72\x41\x30\xb8\x70\x73\x4d\x53\x3f\x82\x85\xa6\xac\x7f\x8d\x95\x0f\x2a\x36\xc2\xc8\x25\xbe\xc0\xe1\xe7\xdb\x0e\xa9\x5c\x39\x57\xf8\xca\x46\x9f\xd3\x6c\x56\x6a\xa1\x8f\x49\x56\x53\x28\x3a\xbe\x41\x69\xbc\x28\x97\x2e\xce\x7d\x7f\x96\xb4\x9c\x0d\x4d\x95\x79\xae\xe4\x4a\x64\xe3\x1e\xe4\x5a\x8c\x9b\x01\x5e\x73\xb6\x72\x4f\x14\x3a\x7a\xfe\x3f\x18\xef\x64\x97\x05\x94\x99\x35\xa5\x79\x7e\xdf\x19\x39\xda\x86\x12\x9c\x57\xa5\x1e\xdf\x0f\xee\x76\x25\x4c\x49\x78\x84\x64\x50\x21\xfe\x10\xb1\xba\x70\xab\xc4\xc5\x82\xa7\xf0\xdf\x87\xe5\x09\x00\xd5\x09\x31\x36\xfd\xfb\x0e\xc5\x9b\x33\x64\xc4\xb7\xb8\x8d\x03\x5f\x38\x0c\x1a\x20\xc5\x58\xa1\x9c\x98\x69\xf1\x57\x33\xf5\xea\xab\x3b\x8b\x57\x41\xae\xe1\xe7\x44\xc4\xb1\x65\xc5\x52\xf4\x2f\xe3\xf9\x14\x22\xbe\xc5\x5c\x75\x3b\xf7\xdb\x7d\xca\xe6\x9d\x8b\xc2\x42\x45\x70\xc7\x1a\x6d\x92\x00\x47\x33\xa3\xb3\x58\xa8\xcf\x4b\x6f\xad\xdb\x8a\xd1\x33\x9e\x7b\x39\x5b\xdc\xd5\x9a\x1e\x35\x19\x01\x3b\x37\x21\xcb\xbc\x66\xc7\x39\xc9\x41\x73\x8a\xa5\xe8\xa3\xcf\x2b\x5c\x09\xe0\xd5\x42\x1f\x53\xea\xcb\xdf\xd9\xa5\x01\xf0\x51\x2f\xe6\xf3\x03\x59\x56\x9f\xb5\x29\x1b\x08\x82\x54\xc7\x26\x77\xa7\x98\xcb\x3a\x61\xb5\xca\x25\xa8\x7e\xf2\x88\xcc\x48\x15\x86\xb1\x45\xe3\x0f\xb0\x74\xb5\xac\xf7\x71\x0f\x38\x1a\x8a\x36\xf6\xb3\x4f\x66\x84\xf6\x82\x44\x20\x25\xf7\xad\x11\x3a\xf3\x00\xf9\x09\xf3\xe0\x65\x7b\x88\x08\xd3\x36\x46\xdc\x9d\xe5\xec\x47\x87\xaa\x6f\x15\x6a\x80\xbf\x30\x4d\x23\x05\xd5\x1c\xe4\x66\x65\xcb\x56\x0d\x95\x47\x2b\x4e\x92\xa9\xb6\x57\xe2\xc6\xbc\x6e\x94\x5e\xf8\x5a\x7c\xf8\x14\xb1\xb5\xf2\xa3\xf3\x5a\x44\x84\xc1\xa1\x4f\xaa\xd7\x88\x71\xb7\x89\x6f\x6e\xe0\x71\x61\x1e\xce\xf2\x72\xfe\xaa\x23\x3f\x68\x58\xad\x09\x07\xee\xdc\x75\x0b\xa4\xad\x10\x8c\x82\xda\xcf\x28\xad\x2c\x60\xe1\xe3\x87\x3e\x7c\x2e\x7f\xdd\x93\x9a\xfc\xf0\xbd\xec\x8d\x10\x3d\x4f\xaf\xad\x4a\xe7\xfb\x3b\xb5\xf8\x1c\x12\x93\x00\xe1\x1c\x6e\xcc\xf0\x19\xf2\x19\x32\x0e\xfc\x8e\x3e\xa4\x10\x1e\xac\x2e\x4e\xbd\x79\xbf\x66\x0f\x6a\x52\xb7\x62\x13\x53\xf8\x04\x54\xee\x4e\x85\xe0\x7c\xde\x6f\x2e\xd3\x98\x71\x9c\x68\x4e\x7c\x47\x2c\xc1\x2f\x1c\x23\x01\x2e\x7e\x8d\x78\x4d\x60\xf2\xe8\x73\xe9\x35\xab\xb2\x11\x71\x66\xe7\xd5\xc5\x69\x33\x3a\x3a\xd3\xcd\x9d\x7f\xd7\x25\xae\xca\x94\x05\xfd\xb2\x96\x9c\x77\xee\xe6\xc4\xe5\x1a\x68\xde\x5c\x91\xec\xbe\xb6\xb1\x5a\x37\x65\x55\x71\x80\x58\x62\x75\x95\x9b\x31\x42\x5b\x94\x53\xb7\xda\x45\x04\x86\x34\x89\x6e\x48\x8a\xd6\x52\x17\x68\xc7\xe6\x10\x45\xf6\x9d\xf8\x9e\x8d\x9a\xd0\xbd\x3d\x7a\x36\xff\x10\xd7\x81\xe9\x92\x40\x01\x9f\x33\x78\x84\xc2\x20\x80\x1c\xc1\x23\xfa\x91\x0e\x19\xea\x2b\xc8\x0f\x8a\x15\x4a\xe3\x77\x73\x60\x8f\x62\xde\x41\xbb\x93\xdd\xcb\x0f\x8e\xa4\xd1\xb7\x8b\x28\xe3\x42\xe3\x0b\x95\x36\xf1\x70\x7c\x93\x11\x2f\x81\xb6\x9e\x1a\xa2\xe3\xe0\x3c\xd0\xe8\x81\xd6\x03\xb8\x78\xff\xf2\x60\x36\x11\x37\x51\x8d\xd2\x7e\x31\xf4\xdf\xd4\x44\xf6\x6c\x4a\xeb\xa9\xce\x60\x61\xec\xba\xa1\xa2\xee\x6a\x82\x06\x0d\x9c\xba\x8f\x9c\x6e\xc9\x74\xa6\x8d\x88\x93\x8c\x48\x8c\x6d\x1d\x82\xd3\xc6\x35\x25\x55\x45\xc9\xf5\x0a\xac\x1e\x71\xdc\xa8\xbc\x59\x03\x36\xa5\x45\x81\xc9\x93\x6a\x63\x65\xfa\x27\xd3\x3b\xe0\x97\x5f\xf8\x82\xd6\x71\x36\x5d\xe4\x10\x53\xc4\xb7\x42\xf3\x94\xa6\x66\x8e\x81\xe6\xdf\xcc\xaa\x99\x1b\x0f\xee\xb9\x40\x2e\xd4\x5a\xa5\x1b\x2c\x79\x08\x78\xfb\xcf\x43\xe5\x77\x5e\x18\x99\x81\xca\xd2\x32\x15\xa2\xa6\xc6\xfe\xbb\x52\x71\xa5\x06\x76\x05\x1b\x2e\x7f\xe2\x80\xd6\x3b\x09\xba\xad\x08\xc6\xe5\x59\x1a\x12\xa5\x52\x21\x36\x91\x05\xb1\x71\xe8\x41\x4d\x68\x15\xb1\xa0\x29\x6c\xe6\x72\xb7\xbc\xa1\xd8\x9b\xc8\x69\xfa\x72\x65\xc3\xd3\x2c\x96\xa2\x5d\xc7\x94\x06\x19\x99\x0c\xaa\x67\xe0\xbf\x2e\xde\x24\xbb\x73\x5a\x0e\x42\x88\xcb\xf9\xef\xbc\xa5\x48\x10\x93\x06\x49\xfc\xa5\x8c\xd7\x35\x1d\xa7\x00\x39\x19\x51\xad\x03\x9b\x35\xd8\x0c\x23\x0d\x2c\xac\x0d\x0a\x0d\x6b\xb0\x6c\xf7\x8a\xa5\xe8\xe2\x53\x9a\x26\x0c\x75\x40\xd3\x8e\x34\x92\xe0\x96\x7f\xe2\xd0\x08\xb5\x53\xab\x82\x23\x14\xa8\x11\x1e\x4f\xcb\x38\x0f\x25\x9b\x93\x79\xd7\x8c\x52\xab\x2b\x55\x8c\xc0\x78\x77\x96\x9e\x99\xb0\x2b\xfa\xde\x21\x3a\xd6\x87\x01\x11\x92\x6f\x90\xbe\xb1\x51\xd7\xaa\x70\x03\xc6\x67\x81\x5c\xc3\xaf\x58\x68\x13\xc9\xa4\x8e\xad\xf6\xe5\x35\x02\xcb\xed\x7c\xd3\x15\x7e\x7a\x96\x43\x52\x60\x52\xfe\xba\xfb\x25\x62\x8e\xb8\xca\x1a\xc9\x49\xd5\xda\xbd\xd3\xba\x87\x12\x4b\xed\xa2\x8c\xbf\xcd\x53\x4f\x1f\x05\xca\x1a\x67\x10\x3f\xb0\x3e\x0b\xee\x71\x29\x23\xb6\x5f\xef\x57\x4e\xe6\x5c\x8d\x40\xcb\x15\x74\x6d\xe2\x26\xde\x5f\x79\xe4\xea\x6d\x9a\x9f\x08\xc7\xf2\x6e\xe7\x4f\x6d\xba\x7c\x73\xc8\xf4\x3e\x66\xca\x5c\x45\xc6\x28\xf4\x03\xea\x20\xce\xd6\xeb\x6c\x57\x30\xa5\x26\xe5\x43\x6c\xc8\x42\xdb\x14\xad\xb7\x1e\xde\x5e\x15\x4b\x51\xd7\x93\xf0\xcb\x8a\x4b\x90\x1d\x77\xd3\x2e\x37\x04\xd6\x78\x4b\x83\x34\x93\xd6\x1a\xf1\xf8\x1b\xfc\xd6\xdb\xf2\xf0\xbf\x4f\xc5\x48\xcd\x1d\xab\xb1\xf7\x9a\x71\x1d\x9f\x22\x3f\x8c\x59\x2b\xd3\xbd\x5e\x5d\x51\x21\x8a\xd6\xad\x57\x16\x34\x58\x60\xc9\x4f\x3c\xc5\xd7\x16\x89\xdf\xf9\x6e\x7e\x2a\x16\x22\xa6\xb2\x42\x7f\xfe\xa4\x22\xa8\xef\x51\x9b\x56\x49\x2f\x54\x42\x67\x05\xca\x23\x71\xca\xc8\xf7\xc5\x3c\xb9\x53\x71\x20\xb4\xa8\x19\x24\x20\xd1\xdb\x04\xd1\xe6\x36\x92\x4a\x25\x74\xb8\x17\xe9\x31\xd9\xc7\x66\x18\x50\xe1\x4f\x13\xbd\xb2\x27\x8b\xa7\x77\x30\x00\x27\xa3\xb1\x13\xb2\x43\x75\x0e\x35\xf6\xb5\xb5\xf5\x6d\x5e\x36\x90\x95\x09\x0d\xb0\x59\x4b\xae\xea\xf7\x8c\x6c\xc1\x39\x7d\x6a\x7b\xe7\x74\x3e\x50\x7b\x62\x90\x0a\xf2\xf6\x03\x7e\x85\xc3\x48\x90\xe0\xcb\x2c\xf4\x00\xfd\xb0\xe5\x50\xf6\x85\x74\x85\x16\x31\x09\x4f\xe8\xf1\xdf\xff\x70\xab\x14\x4f\xf3\x5a\x1d\xc7\x67\x9f\x68\x13\x05\x26\xac\x6e\x85\x35\xb7\xf1\xa7\xf5\xc2\xa5\x8d\x91\x44\x2c\xdc\xda\x99\x26\x5b\xa6\x96\x5a\xeb\x76\x67\x13\x61\xe8\xa2\x6e\x24\xf6\x1e\xd1\xaf\x76\xaa\x58\x6d\xbf\xae\x46\x97\xeb\x9e\x15\x50\x07\x0e\xd4\x2f\xf5\xe5\x3e\xbd\x55\x64\x4d\xda\x8d\x99\x8d\x7d\xf8\xc3\x63\x0f\xe9\x83\x47\xcc\xe2\x4e\x5b\xe0\x69\x82\x27\x35\xdd\x34\x1c\x3f\xab\xa4\x52\xba\xe5\x6d\x5d\xec\xb6\x5a\xe5\xb8\x12\x51\x60\x1f\x7f\x51\xe1\x72\x87\x4d\x4e\xbc\xf8\xf9\x00\x05\xf8\xa3\xb2\x44\x3e\xf5\x6c\x36\x20\xc6\x1d\x86\xa8\x91\x0f\xbd\x9c\x3d\x27\x4d\x61\xf3\x93\xbf\xbf\x4b\xe9\xce\x6a\x28\x10\xe0\xa2\xf5\xb3\x34\x26\x76\x58\x0d\xfd\x44\x4b\x25\xb7\xf9\x31\xe9\x48\x9b\x79\x68\x73\x1e\xd6\x44\x47\x61\x3f\xab\xac\x15\xf2\xbf\x54\xc4\xd9\xcc\x90\xaf\x26\x5e\xdf\x2d\x41\x2a\x35\xec\x32\xd5\xe3\xf6\xb6\x01\xda\x4a\xc3\xc3\xae\xcd\x9d\x26\x8d\x13\x8a\x69\x8f\x4d\x79\x1a\x31\x42\xa5\x83\xf5\x3d\x64\xe2\x4c\x0f\xb5\x7a\xb0\x36\xdc\xc5\xcc\x26\xae\x34\x9f\x39\xfb\x32\xad\x00\xa5\x56\x13\x90\x8a\x7c\x87\x1a\x7d\x88\x65\x9f\xcb\xcc\x99\xe0\x5b\x2a\x26\x71\xcb\xde\x96\x48\x50\x21\x3b\xae\xb8\xec\xba\xc8\x37\x85\xcb\xee\x20\x51\x4a\x2d\x46\x01\xb2\x89\x4a\xe8\xf9\xcb\xf3\xca\x91\xc4\x5e\x8d\x41\x44\x01\xdd\xc0\xc2\xcd\xa7\xd3\xb2\x69\x26\xe8\xe1\x14\xc6\x4b\x56\x85\x45\xbb\x33\x30\xed\x3f\xdd\xa8\xcc\x25\x30\x82\x2e\xff\x43\xcb\x96\x44\xb7\x35\x74\x9a\xb4\x89\x2c\xec\x17\xa9\x9d\xd2\x2d\xfe\x39\x38\x5b\x66\x06\xd8\xc6\x26\x75\xc0\x5f\x4c\x8c\x3d\x45\x39\xfe\xdc\x48\xc5\x1b\x71\xd6\x74\x38\xf1\x5b\x15\x2d\x0a\x1b\xc1\xa2\x29\xba\xe8\xe0\x45\xda\x63\xb7\x11\x0b\x7d\xb9\x21\xff\xe5\x33\x5a\xf7\x85\x59\x0a\x99\xcb\xbf\xff\xf5\x61\x4a\x83\x27\xec\x92\xf2\xc6\x1a\xbd\x61\xf3\xe2\x82\x91\x2f\xdd\x9e\xdc\xda\x26\xba\x3c\xd2\xc5\xbb\x0f\x80\x89\x3c\xad\x28\xf0\x16\x6b\x30\x5c\xea\xcb\xdd\xc5\xdb\xa2\xe2\x02\xb0\xdd\x6f\xa5\x0b\x3f\x35\x91\x47\x82\x45\x18\xf1\x0d\x9d\xf1\xbc\x84\xed\xbb\x14\x8e\x70\x9f\x90\x50\xfd\x08\xf2\xd5\x65\x59\x61\xbd\xa5\x49\xd1\x11\x87\xf4\x0b\x2c\x2e\xe0\x60\xa2\x56\x9d\x8a\xe5\x94\x4e\xe7\xed\x5a\x3b\x56\xe9\x36\x50\x2b\x0b\xef\xf1\xf9\xd9\x44\x2e\x4c\xc4\x55\x74\x55\x61\xdd\x2a\xbe\xac\xb9\x27\x24\x50\xe9\xe6\x3e\xba\x27\x7b\x2c\x18\x31\x6b\x78\xb2\x2a\x4b\x9b\xbf\x75\x69\x46\x96\xae\x42\x04\x5c\x26\xfa\x89\x06\x97\x9f\x3e\xbd\x7d\x6a\x27\x67\xbe\x1b\xdb\xd6\x8c\x53\xca\x9b\xd0\x6d\x91\xd9\xeb\xcb\xdf\xf1\x46\x76\x7f\x5b\xc3\xd0\x41\x08\xde\x94\x7c\x96\x1f\x5d\x7e\x4e\xf2\xd4\x3f\x5a\x2c\x45\xc7\x56\x65\xb3\x13\xac\x41\x79\x01\x37\x45\x63\x40\x96\x19\x4a\xf6\x6d\xf9\x01\x27\x34\xc7\x1e\x62\x72\xc3\x7f\x38\xfa\x17\x4e\xd4\xd7\x68\xbe\x8f\x99\x0c\xd9\xf9\x9f\x2d\xd2\x5a\x77\xcc\xca\x5c\x00\x02\x12\xf6\x7d\x86\x74\x6b\xe5\x11\xe0\xa6\x43\x69\xac\xf4\xf0\x04\x65\xba\x34\xb4\x37\x23\x12\x64\xd6\x78\x75\xf0\xc9\x17\xe5\x61\x6f\x20\x33\x84\xa9\x85\x71\xd1\xdb\x72\x3c\x82\x2d\x27\x74\x2d\x5f\x99\x5e\x44\xdf\xef\xd1\xc6\xd8\xc8\x76\xec\xa6\x78\x1a\x2b\x5f\x57\x98\x9b\x56\x37\x34\xf5\xfa\x3b\x18\x35\x51\x51\xff\x67\x01\x76\x49\x13\x37\x8a\xa5\xe8\x6b\x8b\x15\x39\x6b\x8f\x32\x04\x9a\x02\xbc\x4f\x1e\xc0\x34\xe4\x38\xd4\x25\xbc\x8b\xf9\x91\x26\xc5\x0b\x23\x28\x91\xd4\xfe\x31\x6b\xbc\x8a\x86\x5a\x52\x5a\x36\x39\x9b\xf7\x8b\xa5\x68\xcc\xd0\xb4\x19\xb0\x88\xf4\x71\xdc\x2b\x2c\xb4\x31\xbc\xca\x1f\xaf\xd3\x54\x5e\x01\x20\x21\x66\xb3\x7c\x8d\x75\x6a\x94\xfe\x7f\x84\x88\x4b\x1e\xe6\xd0\x8b\x8a\xe1\x73\x22\x47\x16\xdd\xf9\x6c\x3a\x97\xae\xc3\xe9\x4f\x6b\xcb\x3d\x5b\xb5\x3d\xb5\x49\x5d\xea\x88\x87\x9c\x3b\xf3\xd2\x05\x72\x18\xa9\x2b\x49\x7e\xea\x00\x8f\x46\x4b\xb9\x38\x70\x12\x89\x2f\x93\x6c\x8b\x2a\x10\x93\xdf\x58\xae\xab\xd0\x34\xa9\xcb\xa3\x60\xb4\xeb\xf8\xf9\x5a\x9f\x56\xc7\x3c\x85\xdf\x36\x42\x92\x5f\x3c\x08\x8d\xe8\x01\x8d\x41\xcf\x9c\xc4\x5e\xb6\x70\xfe\x08\x5e\xc5\x4c\xed\xe8\x2c\xfa\x01\xe5\x90\x9c\x37\x83\xec\xb1\xb7\x91\x83\x32\x69\x7b\x46\x65\x82\xb2\x94\x49\xc7\xb8\x7a\x6c\x6a\x3b\x3e\x4a\x81\xe9\xc4\x7d\x93\x0c\x1f\xff\x7e\x5c\xdb\x85\x93\xaa\x4b\x2a\xc4\x94\x86\x93\xc6\x9c\xed\xaa\x67\x04\xa9\x12\xbe\x09\x9d\xfb\xb2\x4e\x5a\x9e\x3e\x15\x2c\x87\xfa\x0a\x6c\xbc\x92\xe5\x6c\xec\x10\xbf\xc6\xa1\xec\xb7\x9c\x94\xd7\xc8\x4d\x84\xf9\x73\x7f\xde\x72\x89\xd6\xe3\xd8\x36\x71\x13\x19\xd8\xe4\x93\x2e\xaa\x5c\xa4\x5c\x41\xdf\x6c\xe5\x52\xf8\x03\x85\x79\xbb\x70\x04\x2f\xf5\xe5\xeb\x27\xb9\x59\x58\x69\xd1\xfc\x65\x37\x97\xe6\xdd\xb0\xe8\xfa\x96\x6a\x76\xe5\x5e\x55\xbc\x5f\x79\x34\x7b\x9e\x52\x5c\x2a\x54\xa5\xef\x69\x03\xa4\xc3\x2e\x52\x4b\xbd\x7b\xb4\xae\xbc\xbb\x46\x82\xa4\xc5\xce\x7d\xe1\x81\x31\xea\x42\x9f\x98\xea\x3c\x26\x3a\xa2\x2c\xf8\x20\xee\x38\x02\x5c\x60\x0c\xd5\xf4\xf3\x6a\xc4\xb2\x30\x37\x02\x8e\x5e\x19\xad\x81\x32\x3d\x86\x51\x82\x07\x2d\xbc\x47\x91\x65\xe8\x0a\xfd\x80\x40\x5e\xf8\x70\xa7\x02\x6d\xa0\x0e\xa7\x5c\xf6\x19\xef\x58\xb2\x68\xe8\xc6\xd0\xfa\x7c\x6c\x88\x0e\x4a\x37\x43\x96\xdc\xe2\xc2\x17\x66\x67\x8f\xb3\x45\x6d\x1b\x89\xc9\xec\xc9\x17\x47\x29\x82\x2c\xdd\xaa\x21\x91\xb1\xfc\x69\x99\xb0\x6a\x58\x1d\x58\xbd\x39\x90\xa7\xf4\x65\x01\xe5\xd3\xaf\xdc\xdf\x0b\x3c\x21\xfa\x62\x87\x96\x7b\xee\xe8\x30\xb5\x2f\x17\x07\xe8\xc0\x2a\x4d\x51\x4f\xb2\x3a\x44\x85\x78\xd7\xf8\xec\x61\x45\xc0\x1f\xec\x2d\x96\xa2\x8b\x3b\xb5\xbf\x61\x38\xf1\x77\xdc\xf0\x2c\x2f\x1f\x16\x5e\xbb\x74\xf9\x82\xd2\xd2\xf9\x49\x39\xda\x7e\x26\x4d\x27\xa8\x1c\x16\x4b\xd1\x53\x6e\xf6\x00\xa7\x5e\x1e\xea\x30\xdd\xd8\xbf\x49\x91\xb8\x74\x48\x95\xa5\x0e\xa1\x83\x9e\xce\x46\x91\x99\x1d\xc9\xa1\x39\x6f\xa3\xf2\x56\x6a\xcd\xf8\xf3\x2e\xd5\xc0\x75\x95\x0a\x66\xe2\x5b\xfe\xf7\x3c\xa9\xce\xd3\x8d\x18\x53\xb7\xed\xd1\x6f\x56\x08\x8e\x54\x67\xca\x91\x9a\xf1\x62\x76\x6e\x5b\x25\x2e\xf8\x0b\x40\xe5\x9d\x7c\xec\x2d\x6f\x69\x13\xc8\x90\x81\xa4\x79\xba\xe9\x5e\xa4\x88\xc1\x55\x6d\x11\xbb\x26\x2a\xb6\x63\xdc\x8b\x9d\xe3\xb9\xf3\x9f\x9a\xf7\x5e\x19\x1b\x28\xad\xfb\xd8\xb6\xf9\x4d\xc8\xd6\x77\x3f\x9f\x23\xa7\x91\x9d\xf1\xa7\x2d\x2c\x99\x38\x5c\x29\x38\x4d\xec\xfa\xfc\x8e\x7f\xee\x29\x31\xcf\x67\xc8\xc1\x8a\xf8\xb3\xf1\x5f\x5a\x7d\x8b\x7b\x02\xae\xc5\xde\x9e\xde\x10\x45\x71\xa5\x9b\x61\x24\x3c\x9b\x8c\x89\x2f\x8e\xcc\xc8\x1f\x99\x35\xa0\xd6\x82\x08\xce\xc0\xf3\x94\xbf\x12\xf4\x59\x29\x74\xd2\x44\x34\xa9\x3a\xec\xf5\xf2\x7d\x57\x19\xc6\xf5\x76\x51\x56\x97\x1e\x94\x8d\x9a\x2b\xe5\x0b\xde\x3d\xa3\x55\x39\xc4\x17\x02\x01\x62\x28\x75\x4a\x59\x6a\x56\x28\xc8\x38\x40\x88\xc8\x1f\x5f\xa8\x39\xd0\x84\x0d\x64\x0b\xe5\x84\x24\x68\xed\x1e\xc9\x55\x34\x6e\xb8\xa1\x25\x6e\x5e\xaa\x74\x9b\x71\x8d\x9b\xd4\xe5\xc6\x8c\x91\x5a\x09\x88\x04\x6e\xcd\x38\xb3\x47\x41\x0f\xd8\xe0\xdc\x54\xea\xcb\x7f\xfd\x71\xd9\xe5\x59\x71\xd0\x57\xd1\x1e\xf9\xeb\x56\x68\x70\x09\xb7\x49\x5d\x2e\x66\x1f\x7d\x5b\x38\x79\x5d\xeb\x56\xb1\x8d\x05\x1b\x2c\x1a\xa3\xcc\x86\x43\xd7\xa7\x36\x30\x73\xa2\x69\x13\x74\xff\x7a\x6a\x85\x26\x97\x15\x89\xbe\xf4\x94\xa6\xaf\x42\x2a\x41\x5a\x27\x3e\xa9\xb0\xe0\x79\x5d\x52\x2c\x45\x77\xcc\x95\x48\x8d\x9a\x30\x17\xe3\x04\x24\xe3\xe4\xc6\xec\x83\x45\x66\xdd\xa5\xdd\x36\xb6\xaa\xc9\x9e\xab\xcf\xa8\x6f\x17\xee\x26\x58\xc0\x5f\xcd\x8d\x32\xc0\x4e\xbd\x7a\xda\xd5\xc5\x19\xd3\xe2\x3f\xfe\xcf\x9e\x2c\x99\x11\x05\x36\x72\x03\x62\xea\x4a\xb6\x85\xcb\x1e\x19\x91\x7c\xc0\xb0\x82\xcc\x20\x64\x62\x3b\xff\x0f\x4d\x4e\xc5\xb3\x43\xbf\x96\x9e\xe5\xfb\xa6\x68\x41\x30\xfe\xe1\xc4\x83\x09\xb7\xc8\xe4\x3f\x7e\x76\xa4\xd6\x83\x30\xde\xb5\x47\xf5\x43\xfa\x87\xbb\x2c\xe8\x4f\x7a\xc3\xf8\xe7\x1e\x4d\x99\xb2\xc7\x0c\x7d\x2c\x2b\xf1\x1f\x1c\x16\xea\xd1\x20\x46\x0d\xd1\x39\xd2\xb6\x1e\x5c\x92\x42\xcc\xe5\x8d\x7d\xb7\x2a\x7a\x88\x80\xd4\x2d\x45\x9d\x42\x19\xa6\x42\x80\x7d\xfd\xd9\x17\xc6\x64\x4a\xd3\xa5\x4b\x14\xa4\x7e\x9f\xb1\xe7\x29\xdd\x49\x09\x55\x74\x9d\xe6\xfc\x86\x39\x7c\x4c\x7c\x3b\x4a\xa0\xaf\x71\xe0\x75\xb5\x6f\xc3\x85\x58\x49\xe2\x11\x62\xfc\x4a\x6b\x14\x05\x71\x2b\x20\x66\xd1\xc6\x96\xa2\x53\x9f\x7f\xf8\x88\x2e\xc5\x6f\x2a\x72\x6a\x1f\xdb\x2c\x8d\x1f\xec\x44\xd9\x3d\x7f\x42\x9b\xa2\xc4\xdd\x5d\x12\xf8\xbf\xc3\x6d\x87\xf9\xa6\x5f\xc8\x7f\x8a\x85\xd7\x59\x13\x14\xdb\xbc\x59\x49\xc3\x6c\x2c\xbd\xbc\x25\x7c\x98\xc4\x83\x61\x33\x5f\xd7\x4c\x35\x24\xc6\xa2\x12\x32\x97\xc4\x27\x2b\xc1\x24\x8d\x1d\x2d\x3c\x41\x03\xec\xd5\x90\x4b\x3d\x1a\xda\x19\xa5\x9f\xb3\x3a\xc5\x9c\x3d\x08\x18\x29\x87\x81\xd0\xdb\x79\x5e\xff\x0a\x56\xa2\xab\x62\xb8\x5b\x94\x42\xa3\x86\x18\xec\xc0\xa3\xa1\xca\x74\x2f\x2e\xf4\x90\xe7\x27\xfc\xd2\x57\x7b\xa4\x46\xbe\xf0\xd4\x6f\x39\x7f\x57\x2e\x96\x83\x8c\xd0\x25\x26\xae\xc4\x4f\xcb\xd9\xca\x4f\x9d\x0b\x54\xbc\xb8\x3a\x5d\x7a\x44\x33\xc2\x40\x0c\xf9\x24\x88\x4f\x2a\x94\xe7\x7f\x6d\x97\x49\x0b\xb9\xbd\xb0\x11\xff\xda\xec\xec\x13\xa4\x5e\xc2\xd2\xe1\x1e\xfb\xef\x8e\xd3\x26\x79\x6e\x83\x36\x45\x40\xfc\xf6\x8b\xba\x43\x94\x47\x60\x79\xc1\x87\x25\x67\x1f\xd2\xb5\x6f\x02\xcc\x3c\x86\x93\xe1\x5d\x61\xec\xee\x44\x75\x90\xbb\x51\xdc\xad\x79\xa9\xda\xa4\xcc\x70\x10\x50\x2e\xe6\x74\xd3\x29\x81\xdf\x0b\x19\xe1\xc8\x0c\xe7\x25\xdd\x8b\x1a\x99\x21\x92\xe4\xa0\xbc\xb7\xb4\x45\x42\x2f\xac\x56\x53\x06\x8f\xf1\xff\xb6\x4c\xd4\x8e\x4f\x15\xfb\xc1\xe4\x16\x0b\xa3\xdc\x35\x07\x34\x65\x65\x6a\xd6\xb1\x00\x84\x17\x96\x48\x07\x40\x46\x5b\x20\xbc\xf9\x7f\x79\x5a\x47\x15\x63\x33\x4c\x05\x82\x3a\xb7\x2a\x4e\x28\x35\xec\x16\x2b\xa1\x72\x00\x7f\xad\x41\x1e\x2a\xc5\xa9\x33\x12\x2f\x9f\xdb\x98\xd6\x69\xdb\x71\xaa\x12\x51\xef\xba\x59\xd9\x57\xd3\x85\xe2\x0f\x9c\x54\x86\x6f\x1e\x3e\x47\x54\x2e\x80\x59\x34\x4e\x8f\xe6\x6c\xac\x49\x10\xbb\xce\x9a\x22\xdb\xd1\x49\x65\x52\xe5\x48\xff\xfc\x90\x95\x8a\xce\x10\x32\x85\x4b\xd8\x31\x81\xb0\x76\x40\x2f\x91\x0f\xc4\x0a\xf9\xd3\xe7\x8a\xa3\xd9\xc0\x36\x0c\x8a\xf7\x8b\x08\x99\x76\xb7\x3f\xed\x55\x54\x18\xb0\xa3\xea\x19\x9d\x54\x75\x65\xf9\xe2\x2a\xf7\xd8\x6a\x0d\x69\x7e\x75\x32\xb9\xfe\xf1\x03\x3a\xf5\x39\x95\x77\xe4\x75\x79\xfb\x12\x05\xfd\x14\xb2\x3a\xe1\xde\x27\xf9\x2b\xb7\xc9\x7a\xbd\x6c\x23\x55\xcc\xc8\x78\xcf\x21\x29\x0f\xe6\x28\x43\xe0\xfc\x6d\x42\x44\xa4\x73\x3a\xf7\xbc\xb9\x60\x46\x36\x58\xd6\x1b\xc8\x0d\x18\xf1\x6b\x0d\x62\x13\x65\x7b\x19\x7d\x4d\x5f\x7a\x89\x55\x5f\x62\xe6\x95\x1f\x33\x58\x83\x6f\xc7\x1f\x29\xe1\x6f\xe7\x46\xd7\x74\x79\x36\x9b\x70\x31\x52\xe3\x4a\xa1\x07\x16\x20\x1b\xb4\x78\x72\x67\xcd\x51\x72\x3b\x52\x9b\xb5\x42\x71\xb6\x7c\xea\x41\x37\xe5\x9d\x71\xfc\x82\xde\x3d\x3d\x39\x9b\x0b\x6d\xbb\xcc\x48\x10\x50\x97\xfb\xe1\xe9\x21\xe9\xc7\x8d\x09\xae\xdc\x35\xa6\xb2\x58\xfa\xff\x76\xad\x22\x55\x5e\xa6\xa1\x8d\x05\x3d\x37\xb7\x65\x80\xf0\x69\x21\x09\x0e\x38\xb7\x67\xeb\x30\x55\xf3\xc5\xa1\x30\xda\xf9\xd5\x43\x5a\xfa\x76\x53\xbc\xe3\x2f\xe6\x69\xb5\x95\xe7\xc5\x37\x80\x93\x5d\x1f\xdb\xd0\xb2\xaf\xb2\xc2\xb8\xfd\x4c\x6b\x87\xf9\x2b\x74\x89\x57\x5e\x26\x73\x60\x42\x47\x34\x46\xe2\x6c\x5a\xbf\x7f\xfb\x90\x4b\xb4\x50\xeb\x86\xa6\x49\xb4\x25\xe5\x8f\x5f\xd5\x6d\x43\xc0\xb1\x99\xcb\xe1\xe4\xa7\x6c\xe5\xd9\x65\x01\x43\x0e\x71\xab\x35\x20\x63\xe5\xbf\xfb\x8e\x26\xdd\x49\x12\x4f\xc6\x3f\x0c\xe6\xcf\xac\xb3\x43\x34\x33\xd1\xf7\xf6\x8a\x56\xd1\x23\xdc\x79\xd0\x7d\x33\xfd\xd4\xb5\xd0\x69\x99\x1f\x9b\x0f\xca\x76\xbc\xac\x5b\x60\x47\xd7\x2b\xbd\x46\x95\x21\x4f\x6c\x9b\xf2\x93\x3d\xa9\x88\x55\x43\xad\xb6\x42\x77\x29\x8a\x61\x40\x1b\x20\x19\x4f\xd3\x2b\xe5\x3e\x0c\xf9\x2a\xf8\xa4\x39\x23\xed\x76\xc0\x54\xaa\x2f\xb7\x53\x03\xbc\x9b\x35\xe2\x22\x39\xd3\xcc\xb7\xf7\xca\x3e\x64\xea\xd5\x20\x5c\x98\x7b\x42\xd3\x7a\x6c\xd0\x74\x7d\x9e\x9b\xbc\x51\xc3\xa9\xb1\x50\xf0\x8c\x8c\x81\x33\xc6\xe9\xbf\xca\xb6\x1c\xe2\x5a\x89\x94\x41\x84\x7b\x94\x0e\xc1\x35\x93\x84\xfd\x85\x43\xca\xc6\x49\xdd\x97\xec\x7e\x2e\xfd\x3a\x16\xe8\x4f\xe4\x8e\x2f\x17\x46\xe4\xc8\x71\x52\xe8\xce\x43\x03\x14\x78\x9b\x8d\x7c\x1f\xa4\x51\x4b\x7d\x85\x49\x27\xb4\x64\x14\x96\x89\x30\x91\x53\x4f\x55\x74\xde\x6a\xc5\x60\xd4\x41\xd5\xc4\x3f\x6c\xec\x9a\x21\x2a\xb8\x39\xfe\x00\xd3\x34\xb9\x31\x1f\xbb\x01\x76\xcd\x84\x45\x78\xdf\x6e\x4d\x9f\x00\x20\x83\xa4\x37\x85\xe7\xe4\x36\x9d\x49\xb4\x06\x4d\xde\xf7\xbe\xc2\x81\x5e\xc5\x85\xa4\x5a\xb3\x05\xbe\x46\x46\xc7\x2f\x3d\xa0\xc0\x8f\xc0\x77\x1b\x66\x2a\xe3\x77\x2b\x42\xa8\x14\x4c\xc7\xf4\x43\x74\xe1\xe8\x4b\x5b\x6a\x05\xbb\x3f\x9c\xb4\xf1\xea\x86\xec\xfb\x8e\x9b\x13\xde\x2c\x46\x97\x1d\x4d\xdf\x80\xc3\x6d\xc4\x7f\x68\xcb\x0d\x45\x37\x26\x6e\x15\x26\xca\x4a\xbb\x7c\xf0\x35\x59\x12\x99\x28\x30\x41\xc0\xeb\xc6\x01\xe9\xcf\x29\x73\xa0\x7a\x7e\x9f\x66\x92\x11\x20\xd7\x12\x74\xa6\x73\x76\xe9\xe2\x96\xae\x83\x38\x2c\x25\x5a\x3f\x3f\xfb\x02\xf8\x3a\x25\x7d\xbe\xc6\xfd\x4c\x62\x8f\x43\x15\x7b\x1c\x7d\x60\xa8\x10\x80\x44\xcc\x02\x37\x7a\x79\xd0\x2e\x68\x53\x4c\x10\x49\x9d\x80\x3f\x7a\xbe\xaa\xf3\x4e\xb8\xcd\x48\x22\x70\x73\x70\x84\xe2\xc5\x5e\xc3\x8c\x1b\xba\x0f\x7e\x24\x25\x23\xd4\x88\x3a\x95\x3a\x9c\x4e\x7b\x70\x83\x16\x4b\xd1\x77\x3d\xde\x9d\x7c\xe8\xe6\xe5\xc5\x52\x34\x5f\xf0\x2d\xb8\x7c\x6e\xb5\x59\x2c\x45\xfb\x37\x9c\x2f\x4e\x4a\x68\x07\xc5\x80\xda\x98\x21\xbe\x22\x3f\x7e\x92\x7f\x93\x0f\x85\x3e\x0c\x88\xe4\x74\x86\xcc\xc9\x62\xa9\x10\x73\x9a\xad\x0a\x53\xc6\x8f\x9e\x3a\x57\x9c\xa8\x38\x82\x17\x4b\x11\x9a\xaf\x20\x72\x1b\x71\x27\xb7\xb3\xb5\xa5\x01\xa5\x3f\x31\xe7\xff\xde\xde\x61\x6a\xa4\x11\x1c\xc0\x2d\xba\x92\x30\x37\xeb\x15\xe5\xd5\xae\x17\x15\x84\x6c\xc0\xc2\xc4\x6a\x3b\xda\xf3\x02\x6f\x55\x6f\x45\x36\x56\x18\x1c\xd1\xdc\xb9\xd9\xdb\x04\x5d\x8c\x13\xb7\x22\x82\xe5\x6d\x7c\xe2\xb4\x84\x4e\x11\x48\xeb\x3f\x5b\xa5\x9f\x2b\xec\x25\xd8\xac\x3d\x6b\xd2\x01\x4b\x99\x85\x49\xf7\x76\xe3\x02\x79\xa2\x2b\x84\xb5\x60\xcb\xf2\x2b\xaf\xd1\x3b\x43\x80\x13\x67\x07\x23\x27\x3d\x75\x26\xe0\x07\x0c\xc2\x65\xdb\x48\x85\x4d\x85\x71\x1d\x84\x97\x9c\x79\xa9\x08\x0c\x61\x49\xac\xba\xfc\x99\x14\x6d\xd5\x15\xc4\x05\xe5\x9c\x61\xca\xc5\xaf\x12\x20\xe8\x1a\x97\x0b\x53\xf3\x64\xdc\x15\x77\xbe\x23\x85\xe6\x88\xef\x63\x9f\xcf\xb2\x72\xf5\xad\x83\xc5\xb2\x42\xf4\x88\xbf\x3f\xa2\x2f\x1f\xaa\xc8\x9d\xdc\xcd\xaf\xdb\x91\xdd\xda\xae\x87\x5a\xa8\x29\xba\x3d\xb7\x22\x4c\x56\x51\x99\x80\x45\x49\xa1\xd7\x90\x08\x05\x47\x51\x3c\x2f\xcc\xbe\x7f\xa4\xba\x4e\xaa\x63\xbf\x9b\x3a\x28\x8e\x22\xff\x71\x19\x2f\xf1\x18\xa7\xb2\xe6\xde\xdf\xc8\xea\x85\x82\xde\x13\x65\x41\xff\x85\xd1\x3f\x07\x0c\x55\xef\x19\x89\x7b\xac\x0b\x2b\x3a\xed\xd6\xc6\x8e\x83\xc4\xe1\x6c\x0e\x1c\xa9\x97\x5e\xa2\x26\xcc\x6d\xb8\xbb\x9f\xed\x09\x57\xf1\x2d\x0c\x5b\x9b\xfd\x3b\x17\x35\x52\xee\xf5\xb8\xa5\xa3\xb4\xea\xa4\x99\x98\x4b\xbd\x7c\x42\x56\xc3\x36\xa5\x3e\x06\x3a\x72\xf4\xc7\x6b\xa4\x50\x42\x3b\x18\xf1\x7f\x4b\x94\xec\x37\xa7\xae\x21\xc6\x4d\x0f\x73\x87\x96\x9b\x6f\x58\xde\xf2\xbd\xbf\x2e\x19\x44\x0e\x02\x39\xc0\xdc\x58\x45\xde\x93\xd1\xa2\x43\x5d\xc4\xcc\x1a\xef\x1b\x72\x45\xed\xb6\xf8\x71\xef\xab\x08\x91\x45\x7f\x2e\x4f\xd4\xae\x67\x82\x68\x0b\x04\xa0\x4d\x90\x50\x7f\xd1\xd0\xcd\xe2\x2d\x20\x69\x81\xf2\xff\x85\x9b\x87\x67\xc0\xe4\x71\xc9\x5d\x2c\x45\xe7\x9d\x1e\xad\x9c\x7f\x46\x42\x95\x97\x31\xe4\x21\x0d\xfd\xda\x8d\x5c\x0b\x14\xbc\x52\x46\xc7\x96\xf3\x44\xf5\x6a\xb9\x84\xdb\x1a\xdc\x74\x17\x7c\x8a\xe2\x75\x28\xa8\x51\x9b\x98\x19\x34\xe8\xe1\x79\x23\xd5\x47\x51\x41\x6e\xca\x3d\x58\xce\x14\xc9\xae\x19\xc5\x52\xb4\x64\xa3\xa2\xda\xe7\xf3\x66\xe9\xd2\xc7\x2f\x6c\xad\x74\x6d\x99\x46\x7e\xbe\x5f\x81\x1c\x29\x22\x11\xb7\x1c\xe5\x15\x26\xe6\x9d\x37\xf1\xe3\xe8\xb9\xf3\x90\xd6\x4a\xd4\x68\xaa\x4e\x5c\x50\x0e\x6f\x68\xfb\xf0\x1e\xfd\x2b\x34\x68\x10\x71\x3c\x1b\x8a\x3c\xd1\xff\x16\x5e\x57\xc4\x44\xb9\x91\x87\xde\x03\x5f\xe8\xca\x53\x17\x47\x71\x61\x76\x91\xef\x7c\x84\x3f\xb5\xc5\xb4\x1c\xb6\xfc\xa3\x9f\xad\x49\xeb\x4e\xaf\xd6\x1a\xe8\xd6\x0f\x54\xe1\x8a\x6e\x97\x90\x56\x88\x7f\xec\xbf\xbd\x2d\xe9\x12\x95\x56\xdd\xf9\x8e\xb1\xff\x9b\xed\x23\x2f\x1b\xbf\x72\xf9\x24\xed\xef\x91\x25\xed\xb7\xb2\x3f\x0b\xed\xcf\xe6\xb0\x6e\xec\xc3\x02\x3d\x48\x63\x2e\x54\xae\xbf\x19\x31\x5c\x99\x00\xb9\x26\xc3\x41\xfc\x2e\xd6\x6c\x15\x7e\xb7\x8c\x61\x70\x89\x10\x02\x35\x17\x6d\x53\x58\xf5\x71\x55\xe6\xd7\xe2\x63\x70\xf4\x02\x65\x0c\x8f\x5c\x3f\x0e\x43\xe9\x49\x7a\xe4\xd6\xf4\x10\x54\x99\x6a\x95\x75\xc9\x65\x3a\x9c\x32\x31\x53\xc4\x2c\x89\x18\xcf\x3d\xa4\x28\x7a\x06\x44\x00\xb1\x9f\x3f\x2d\xac\xba\x28\x37\x67\x39\xbd\x53\x49\x1b\xd4\x07\xa1\xc7\xbe\xc2\x79\x4b\x94\x11\x06\x72\x90\x59\x53\xb4\x7d\xf2\xbb\xee\x52\xe8\x02\x04\xb4\x77\xf3\xd7\xac\xcd\x06\x44\x50\x4f\x15\x4b\xc3\xe8\xf2\x33\x69\xc8\xa6\xdd\x4a\x37\x65\x9c\xf7\x46\xb6\x46\x64\xb4\x89\xec\x7e\x11\x2c\x83\xd6\xf1\xfb\x59\x27\x60\x8c\x13\x07\xb8\xcd\x9a\x27\x83\x83\x98\x8f\x89\x6d\x63\x29\xc6\xf5\xc9\x2d\xe2\xb6\xf4\xd4\x50\xe8\x0b\x07\x5c\xe3\x3b\x2f\x29\x66\x77\x88\x89\x6d\x49\xfe\xbd\x0f\x9e\x23\x5e\x66\x08\x0f\xb0\x73\xfb\x30\x75\xc4\xc7\x8d\x75\x8d\xf7\x6f\x4c\xbf\x8b\xf6\x4e\x2e\x57\xb9\x5a\xb6\x4d\xa9\x80\x80\xb7\xcf\x52\xd9\xd6\xc4\x45\xbc\x24\x65\xff\x9f\xd8\x00\x01\x00\x00\xff\xff\x3a\xc0\x3e\x01\x8d\xf7\x3c\x00") + +func modelMaxentMappingGobBytes() ([]byte, error) { + return bindataRead( + _modelMaxentMappingGob, + "model/Maxent/mapping.gob", + ) +} + +func modelMaxentMappingGob() (*asset, error) { + bytes, err := modelMaxentMappingGobBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "model/Maxent/mapping.gob", size: 3995533, mode: os.FileMode(420), modTime: time.Unix(1531158553, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _modelMaxentWeightsGob = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xb9\x77\x34\xd7\xe1\xff\xff\x1f\x1a\x46\x83\x16\x69\x29\x1a\x1a\x34\x34\x14\x1e\xa2\x94\x06\x2a\x19\x91\x44\x84\x88\xa4\xa2\x22\x22\x92\x50\x44\xd3\x4c\x65\xcf\xac\xc8\xd3\x26\x7b\x4b\x36\xd9\x7b\xa4\xbb\x8a\x7e\xc7\xfb\x8f\xcf\xe7\x7d\xce\xf7\x77\xbe\xe7\xfb\xdf\xed\xdc\xee\xf7\xeb\xbc\xce\x6b\x3c\xaf\xeb\x71\x9d\xd7\xfc\x7f\x76\xac\x2c\xac\xff\x1e\xcc\x62\x61\x9f\x35\x6b\x6a\xe9\xa3\x97\xff\x1e\xcc\x9a\x62\x3d\x76\x0e\xc2\xae\x77\xa0\xb9\xe8\x07\x03\x36\x53\x1f\x15\x23\xbd\x2e\x42\xdb\xf1\x03\xe1\xfd\xb6\x31\x84\xf6\xea\x65\x3f\x2a\x5c\x26\x08\x42\x3a\x1a\x67\x34\x77\xff\x21\x24\x36\x18\x7d\xdb\xf2\x72\x90\xc1\xd0\xa0\x49\x04\x8b\xee\x00\xe1\x99\xc6\x99\xb9\xf7\x26\x07\x09\xd2\x13\x0a\xf6\x1b\x5e\xf5\x12\x34\x44\x5b\x4f\xb9\x16\x74\x11\xce\xfb\x5f\x5f\xfe\xe6\xe7\xe2\x74\x04\x94\x3d\x61\x93\x94\x16\x92\xc6\x88\x74\xd9\xbc\x6d\x67\x3a\x09\x16\x9c\xfa\xab\x2b\x1e\x4d\x10\x5e\xbb\xef\xc9\x11\xd3\xaa\x66\x50\xc8\xbd\xba\xb7\x65\x4e\x05\x21\x72\x3c\x86\x6f\x3b\x7f\x3b\x83\x3d\x87\xc3\x57\x70\x18\x8c\x30\xf0\x99\x8a\xec\x69\x1f\x8f\x22\x8c\xc4\xdc\xda\x30\xef\xe8\x0b\x82\xb9\x4a\xe5\x1e\xb9\x87\xbe\x84\x53\x1a\x86\x47\xca\x63\x7e\x33\x98\xfa\x30\xfe\x3b\x38\x7c\x80\xc1\x31\x4d\x2d\x5f\x75\xfb\xe5\xd2\xb8\xea\x71\x3c\xf7\x85\x56\x0c\x83\xd6\xa3\xee\x9b\x4e\xa2\x85\x41\xf7\x3b\x15\x79\x76\x63\x6e\x69\xc8\xe9\xbf\xdb\x7b\x40\xb7\x94\xe0\xbb\x7f\xfd\x91\x6d\xb7\xbd\x08\x99\xcb\xa6\x54\x04\x54\x3b\x19\x84\x3e\xce\x78\xbb\x6e\x85\x23\xc1\x56\x7a\xe2\xda\xd2\xf1\x0e\x06\xcc\x02\xcd\x0d\xbe\x66\xc9\x84\x45\x9b\xf9\x6c\x97\x6d\x4a\x66\x30\xb8\x20\xe3\xc6\x3e\xed\x2e\x06\xab\x8f\x6e\x16\x60\x69\x6b\x20\x6c\xe9\xdf\xcb\xba\x4e\x77\x98\x81\x88\x99\x50\xcf\xdd\x1f\x49\x04\xae\xca\xc1\xc3\x9f\x69\x94\x90\xa8\xaa\xb0\xcd\x7a\xc6\xb8\x79\x78\x3c\xb9\x75\x3d\x8e\xb0\xe7\xe8\x62\xc9\x66\xd9\x8b\x04\x19\xf1\x0c\xe3\x38\xa7\x1e\x82\xd3\xa6\x8b\xae\x02\x8e\x3d\x04\x05\x9d\xd3\xeb\xf7\x8e\xce\x92\x46\xfd\xb7\x6a\xa7\xce\x6b\xd3\x84\xbf\x69\x9f\x0d\x1b\xaf\xf6\x10\x3e\x55\x24\x9d\xd2\x6b\x3a\x47\x10\x69\x7e\x71\x76\xc3\x81\x3f\x04\x35\x35\xff\xa9\xdd\xba\x3d\x84\x5b\x8c\x6c\x2f\xcf\xbf\x02\xc2\xb5\xbd\xbd\x8c\xfe\xf7\x54\x82\xee\xd1\xc4\x1d\x73\xae\x3c\x27\x98\x6c\xd4\x5f\x57\x68\x5b\x49\x68\xf2\x34\x53\x76\xe8\xe8\x61\x30\x38\xbf\x2f\xc6\xa7\xbe\x87\x41\x4b\x49\x10\xff\xa5\xde\x2c\x06\xd9\x52\x5f\xef\x7d\xa8\xcd\x22\xfc\x31\xbd\xed\xdb\x35\x66\x47\x48\x90\xeb\x3a\x6e\xa2\x9b\x4f\x30\xf2\x2c\x75\xb0\xaa\x2e\x26\x78\x9e\xaa\x5c\x3a\x97\xbb\x9d\x81\x89\x80\xd0\xe2\x18\x95\x68\x82\x60\xf7\xfc\x6b\xc2\x82\x05\x04\xb1\x3a\xa9\xaa\x75\xd5\xc1\x04\x6f\x6b\x51\x11\xe7\xfa\x58\xc2\x32\xd5\xeb\xd1\xcd\xb6\xef\x09\x1f\x1a\x58\x93\xac\x22\xaa\x09\x7c\x07\x94\x86\xd6\x9f\x6b\x26\x78\xaf\xd9\xcf\x29\xa3\xfe\x9a\xf0\x70\xf7\xd6\xa3\xb1\x61\xd5\x84\x20\xbb\xda\x96\x67\x81\xd9\x84\xc1\xdb\x87\x3c\xbc\x07\xfd\x09\xb3\x35\x58\xc5\x96\x27\xf4\x13\x1c\xd6\xda\xbe\x5f\x7b\xb9\x9f\xb0\xae\x7f\xb6\xd8\x50\x72\x03\x83\xd8\xe6\x37\x2b\xb9\xca\x2b\x09\x72\xa1\x12\x02\x36\xe7\x1b\x09\xca\x99\x73\x42\xd6\xe6\xfa\x13\xcc\xa7\x35\xb7\xc8\xd9\x3d\xff\x2f\x48\x72\x77\x5d\x76\x2a\x3b\x8e\xd0\x54\x66\xb8\xfd\x67\x6b\x22\xc1\xe2\xf2\x4a\x9b\x91\x27\x53\x84\xa0\xab\x6a\x5f\x4e\xcd\x74\x84\x37\xae\xf4\x0c\xd2\xd7\x25\x24\x14\x7d\xda\x30\xad\xab\x4b\x28\x3c\x17\x74\x4b\x3f\x30\x85\x50\x17\x90\x5e\x22\xfa\xb9\x9a\x41\xf4\xd0\x26\x85\x45\x2d\x46\x84\xae\x72\x69\x95\xd5\xc7\xc7\x19\x70\x58\xa7\x2a\x1f\x4d\x6c\x21\x08\x0b\xf7\x0c\xf4\x6b\xe8\x12\xae\x3e\xbe\xdd\xd6\xff\x70\x8c\xc0\xb9\xd7\xe2\x6d\xa4\x26\x9b\x34\xa2\xc3\x2f\xbe\xd1\x30\x28\x25\xc4\x9b\x8b\x26\x6f\x2f\xc9\x25\xac\x29\x95\x89\x8a\x58\xd8\x40\xe0\x7e\x1f\x97\xe7\x1c\xdd\x44\xd0\x94\xec\x4f\xfb\xf0\x2d\x83\xc0\xdd\xcb\x2a\x9e\x52\xd4\x44\x68\xfb\xe0\xd8\x7d\xb1\x8e\x53\x1a\xf6\x06\x01\x46\x37\x7c\x52\x08\x3c\x19\xc3\x5b\xed\xfe\xb2\x48\x23\xec\x42\xcb\xe2\x0d\x51\x4d\x0c\x7e\xe7\xdf\xb3\x69\xb0\x1c\x24\x38\x24\xa7\xfe\xf2\xcd\x63\x97\xc6\xd6\x09\xd9\xd6\x65\x61\xe9\x84\xaa\x3c\xa5\x3d\xff\x8a\x72\x09\x46\x9f\x7e\x5b\x5a\x9b\x36\x11\x4c\xf6\x2d\xd5\xe4\x1b\x5e\x24\x8d\x87\xe1\xfd\x31\xde\xab\x8d\x09\x66\x7e\x71\xc1\x6b\x6f\x59\x11\xac\x67\x3b\xb2\x98\xf4\x3e\x23\x54\x5d\xe5\x57\x50\x97\xca\x62\x60\xbf\xf0\x88\x7f\xc8\xbb\x0e\x06\x0f\x76\xf7\x7a\x94\xde\x29\x23\x14\x72\xc4\x6f\xf0\xfe\xc7\x25\x0d\x37\xd7\x1b\xbb\xb5\x6e\x9a\x11\x94\x7e\x8e\x34\xfe\x1b\x9e\x26\xa8\xbf\x74\xad\xca\x96\xa9\x67\xc0\x9e\xfe\xf0\x8c\xad\x46\x37\x41\x6f\xbe\xfd\x54\x76\x1a\x97\x34\x0e\x45\xec\xf9\x14\x38\x65\xc5\xe0\xd6\xc1\x2b\xda\xbc\x7e\x5a\x84\x14\x91\xb9\xee\xd3\x3b\x8b\x19\x08\xe7\x66\xb2\x36\xde\x79\xcd\x20\x91\x09\x8c\x74\x13\x4d\x24\x6c\xab\xfe\x72\x25\x72\xa1\x25\x41\x77\x7a\xbc\xd6\xcb\xf0\x0b\xa1\x5a\x68\xf5\xf4\xa9\xbd\xc3\x84\xac\x90\xa5\x73\xf7\x25\x24\x31\x58\xdd\x17\xdd\xd9\xc2\xa9\x47\x90\xb5\xd7\x2e\xad\xaa\x63\x91\x86\xff\xc5\x25\x52\xf1\xe1\xc9\x0c\xf4\xda\x12\x0d\xaf\xad\xfc\x4d\xf0\xaf\x30\x99\xfb\x35\x35\x9b\xc0\x38\x0d\x1c\x57\xcf\x88\x27\x54\xf7\x0f\x0d\xea\x94\xa7\x10\x8e\x29\x5a\x3c\x7a\x93\x3e\x4e\x68\x9e\xdd\xce\xba\x79\xb5\x1d\x83\x47\xac\x9d\x1f\xf3\xdb\xf3\x09\xa6\xa2\x1f\x6e\x9e\x9c\x3f\xc2\xa0\xfc\x60\x24\xef\xac\xac\x78\xc2\x2d\x56\xfe\xd7\xea\x9f\xdf\x12\xba\x6f\x76\x58\xba\xb6\xd5\x11\x9c\xaf\x47\x49\xce\x0a\xcb\x27\x9c\x0f\xf5\x0b\xfb\x29\x19\x46\xe0\x0c\x5b\xe5\xf5\x42\xbc\x99\xc1\xdd\x6e\x39\x9e\x37\x47\x73\x09\x9b\x9c\xb5\x97\x7e\xab\xef\x67\xc0\xba\x99\xf8\xca\x8a\x2a\x19\x5c\xbe\xe7\xfb\xf4\xe2\x82\x3a\xc2\x6e\x4d\x1b\xef\x2c\xf3\x7e\x06\xcb\x0d\xd5\x0d\x95\xa8\x8d\x41\xe4\xdc\xef\x4b\x7e\x19\x75\x33\x78\x5c\x17\xdf\x9f\xca\x59\x47\xd0\x35\xec\xbc\x7f\x82\xa7\x9a\xf0\x4e\xee\xf2\x43\x79\x81\x7f\x84\xdf\x89\xbf\x53\x7f\x6e\x6e\x64\x90\xba\xac\x86\xdb\x45\x25\x9e\x10\xa4\x6d\x73\xb6\xe3\x5e\x06\x61\xc4\x39\xe3\xe6\xd4\xdd\x54\xc2\x6f\x2d\xbd\x8f\xdc\x9f\xdb\x08\x7f\x44\x77\x0f\x2e\xaa\xfe\xc5\xe0\x28\x3b\xc7\xcb\x51\xee\x5a\x06\x12\x07\xe5\x42\x4f\x3f\x6d\x67\x20\xb5\x72\xdb\x33\xbf\xe1\x35\x84\xb2\xe8\x0d\xa1\xdc\x9e\x9f\x09\xef\xa6\xde\xad\xec\xe6\x6f\x26\x4c\x3c\xf6\x67\x39\xbf\x41\x85\x30\xb8\xa8\xcb\xe2\x7c\xf7\x5d\x42\x5e\xf2\x75\xbe\xa6\xc6\x0a\x82\x9d\x43\xe1\xda\xaf\x22\x8d\x0c\xf6\xd7\xaf\x78\x9e\x72\x2f\x8b\x10\x3e\x19\x92\x76\xd2\x3c\x97\xc1\xf7\xc2\x47\xbf\xd2\xb2\xc7\x08\x0f\xad\x24\x33\xc2\xdc\x63\x08\xdc\x13\x7a\x66\xe7\xc2\x1b\x18\x8c\xa6\xc9\xef\x27\xf3\x6e\x06\x45\x17\x8a\x1f\xfa\xf5\x77\x12\xfe\xe9\x4f\xb1\x55\xa7\x9f\x23\xac\x54\x5f\x17\x34\x6b\x4d\x26\x03\x2e\xe5\xe2\xbe\xf8\x8d\x1d\x04\xee\xb4\xf9\xdd\x6c\x9b\xbf\x30\x70\x6f\xb7\x31\xfb\xa6\x5e\xc1\x80\x49\x2d\x1d\xbc\x39\xd8\xc4\xe0\x87\x9e\xf6\xab\xb7\x5a\x87\x09\x27\xd7\x9c\xef\xd4\xba\xdd\x49\x08\x29\xe4\x8b\x1f\x3e\xd4\x46\x78\x1e\x77\xc2\x65\x7b\x49\x11\x61\xed\xd9\xc5\x49\xc5\x85\x91\x84\x42\x2b\x65\xeb\x2b\x27\x7a\x08\xde\x15\x61\x7a\xdf\x0b\x5a\x19\xbc\x92\xe1\xf8\x62\x39\xcb\x8c\x60\x53\x1b\x61\xad\x53\x35\x4e\x78\xa5\xdd\xa0\x76\xb0\xfa\x35\x81\xd9\x7b\xc7\x60\x7b\x62\x16\x41\x5c\x6f\xc1\x25\xd5\xbf\xd9\x0c\x94\xde\xbd\xbc\xff\xe2\xec\x53\x42\xfb\xa5\x07\xdc\xc3\xf6\xef\x19\xa4\xee\x68\x2b\x5c\xb5\x3b\x96\xb0\xde\xaa\xec\x7a\xe7\xfe\xe7\x84\x6f\xc9\x2d\x8a\x37\x84\x86\x18\x18\xda\x7b\x49\x1d\xe7\x1b\x23\x90\xda\xf6\x67\xcb\xfe\xd5\x13\x94\x36\xdf\x69\x71\xbd\xfc\x95\x90\x54\xb9\xc3\x4e\x22\x3a\x98\x20\x52\xae\xf3\xf3\xbe\x6e\x13\xa1\xef\xcb\xfe\xbd\x3d\x73\x1a\x08\xd2\xbb\x2e\xb6\x6e\x51\x7e\xc5\x40\x6f\x0e\x9b\x5a\xc5\x8b\x5a\xc2\x23\xc1\xe1\x4f\xbb\x38\xae\x13\x38\x7d\x9b\xed\x23\x37\x2d\x21\xc4\x65\x66\x74\x3c\x4e\xcf\x63\x60\x33\x4b\xa3\x33\x5d\x61\x84\x70\x97\xff\x7c\x53\x7c\x53\x05\xe1\x99\xd4\x01\xeb\xe8\x19\x93\xc3\x53\xe1\xd3\xf0\x2e\x97\x20\x32\x77\x96\x76\xc0\xc2\x38\x42\x5a\xc3\xf7\xad\x1f\xd9\x59\xa5\xc1\xfa\x6f\xe5\xf1\x7d\x76\x91\x84\x79\x13\x3b\x5e\xbb\x73\x05\x11\x02\x57\x56\xae\xfc\xb3\xdb\x87\x70\x67\xd3\x52\xe3\x2f\xab\x53\x08\xc3\x39\x41\x2b\x8e\x0e\x54\x12\xfa\xc2\xf8\x74\x84\xf2\x3a\x08\x3c\xf6\x1d\x7b\x7c\xd7\x2f\x94\x46\xdd\x19\x55\x11\xdd\x4d\x7f\x09\x56\x63\x13\x5b\x17\xbd\x99\x23\x8d\xf5\x42\x1f\xf7\xa4\xbf\xfc\xc7\x40\xac\x79\xcf\xa2\xe5\x99\xb3\xa4\xf1\x7b\x20\xd5\x70\x4c\x8d\x53\x1a\xd3\xdf\x2c\x2b\x37\x3b\x04\x33\xf0\x78\x21\xa8\x6b\x7d\x32\x86\x30\x6a\xaa\x32\x15\x1e\xfd\x91\x60\x79\x47\x51\x3b\xbc\xb8\x9d\x30\x9a\xfc\x75\x5d\x91\xfa\x4d\x06\x6e\x3d\x57\x2f\x3f\xcc\x6f\x27\xa8\x24\xd4\x9e\x91\x93\xa9\x23\x5c\x29\xe6\x35\x5b\x93\x52\x41\x90\x5d\x7f\x36\x4f\xfa\x7e\x1b\x61\x41\x5c\x81\xe5\xe6\x7d\x9d\x04\xd3\x88\x23\x5d\x25\x3b\x3b\x09\x9e\xf2\xfd\x09\x6f\xce\xf5\x12\x86\x0f\x49\xdb\x5d\x8a\x7f\x49\x98\x76\xb1\x7d\x3b\xbf\xa8\x91\xc1\x4f\x67\x99\x59\x01\xca\x21\x84\x85\x9c\x6a\x3e\x42\x8b\xa2\x09\x06\x1d\xbe\x77\x56\x5e\xbf\xc1\xe0\xe2\x37\x14\xec\xd4\xe9\x24\x2c\x9e\x12\xef\x14\x9d\x81\xb2\x9c\x13\x8f\xea\x34\x7b\x08\x9d\xcd\x7d\xca\x97\x0c\x3e\x13\xd4\x7b\xd6\x78\x4f\x7c\x1d\x26\x08\xe4\xdd\x2d\x55\xbb\x3f\x40\x98\xe7\x69\x39\xf0\xa9\xe7\x07\xa1\x49\x6d\xf4\x77\x4d\xf1\x30\xc1\x73\xba\x73\x58\x35\xb4\x9a\xf0\x3d\xfc\x78\x9d\xc1\xbd\x58\x82\xe1\xe5\x7b\x71\xa1\xf3\x7a\x19\xcc\x9d\x6b\xbb\x71\xaf\xd7\x2d\xfa\x5f\x78\x7c\x34\x92\x7f\xc7\xcc\xb9\xfc\x3f\x66\xa8\x43\x51\x8e\x6b\xd6\x6c\x82\x96\xe7\x4e\x83\xbe\xd5\x1d\x0c\xbc\x68\x6b\xec\x97\xe9\x61\x82\x2a\xa3\xfe\xf1\x77\x7b\x0e\x83\x4d\x9c\xd7\x75\x8b\x62\x5b\x08\xb1\xfa\xea\xc9\x6b\xdb\x5b\x09\x0a\xfb\x15\x87\x0e\x9b\x56\x10\xac\x8c\x56\xda\x07\xfb\x06\x30\xb0\x7b\x17\x1c\x83\x92\x41\x06\x07\x5e\xe5\xa9\x96\x71\x55\x10\x9e\xac\xff\x91\xe3\x24\x5b\xc9\xe0\x48\xda\xc0\x0b\xbf\x4a\x1f\x42\xdd\xd2\x0b\x93\x4d\xf9\xe9\x0c\x92\x0f\xa5\x04\x44\xee\xef\x67\xb0\x8f\x6b\x7a\xb3\x6b\x56\x0b\x83\x79\xb7\x42\x37\x0f\xe6\xe4\x32\xa8\x37\xac\xaa\x39\xbf\xe9\x3d\x61\xed\x1b\x2e\x96\x58\x8d\x40\x06\xdd\xbf\x87\xcf\xdf\x2e\x0f\x62\x60\xb2\xe6\x67\xdd\x95\xb9\x19\x0c\xb8\x0e\x09\x1e\xf0\x55\xd9\x4c\x48\xf7\x74\x29\x0e\x95\x1d\x26\x24\x2d\x8f\x2c\xd4\xa9\x7e\x45\x58\xd2\xb4\xa1\xf3\xd5\x4c\x74\xbf\x75\x69\xc5\xab\x99\x79\x8c\xcd\xe4\x9f\xee\xae\xf8\x11\x42\x4b\x3d\x47\x9a\x68\xdb\x1d\x06\x7e\xfc\xd2\xe2\x76\xf3\xbe\x33\xf8\xeb\x38\x77\xd8\xfd\x77\x34\x61\x43\xc9\x82\x23\xb3\xd6\x5a\x12\xca\x2c\x2f\x5c\x29\x8b\xfc\x44\x38\xae\xfb\xc7\xe2\x95\xfa\x3b\xc2\xe6\x89\x7d\x8d\xcc\x25\x3b\xc2\xad\x35\xdb\xca\x4c\x97\x8c\x30\xa8\x62\xa9\xb7\xb3\x40\x31\x81\xad\xee\x8d\x49\x40\x86\x3c\x41\xcf\x7b\x60\xe1\xa3\xd3\xe5\x84\x0e\xb6\xfa\xe1\x62\xb7\xb3\x84\x83\x39\x46\xc7\x85\xd3\x43\x19\xd8\x1e\x9b\x3b\xb9\xea\x4c\x3e\x41\x4b\xd8\xa5\xb6\x7b\x59\x3e\x41\x4f\xcb\xfd\xcf\xb6\xfc\x1a\xc2\x88\x5c\xe4\xa0\xe0\xcc\x0f\x3b\xb0\xd3\xdf\xe1\x68\x54\x13\x21\x5a\x70\xd8\x5c\xe9\x63\x13\x81\xb7\xe7\xd2\xfd\xce\x99\x72\xb5\x42\xfb\xdc\x37\x55\x09\x84\x1d\xc2\xc1\x19\x61\x45\xe5\x04\xe7\xe8\xc5\x86\x92\x1b\x63\x19\xf0\xae\xf3\x98\x7c\xb9\xa4\x8c\xd0\xce\xd1\xee\xb9\x5a\xed\x3d\x03\x37\xe9\x77\x17\xc6\x44\xca\x08\x0f\xac\x75\x87\x3a\x24\x6b\x18\xd8\x5d\x1b\xea\x95\xfb\x54\x44\x50\x2e\xbb\x99\xb6\x74\x4b\x1f\x61\x4e\xac\xbb\xda\x62\xb7\x4e\x82\x7d\xa1\xaa\xcb\x0d\x83\x4c\x82\xfd\x9c\x0e\x99\xe8\x6d\x3e\x0c\xe4\xa1\xf9\x7b\x81\xc8\x38\x83\x08\xbe\x0d\x9f\xc4\x66\x56\xf5\x26\x67\x9b\x39\xbf\xb9\xcd\x60\xd5\xd5\xa8\x2e\x91\xa7\x1e\x0c\x78\x2f\x08\x15\x6a\xf5\x7d\x20\x28\xc5\x98\xa6\x36\xf2\x5f\x22\xac\x28\x08\x8f\x2e\x2b\x0d\x20\xf4\x5c\x70\x3a\x54\x28\xd1\x42\xc8\x9c\x76\x7c\x1c\x3c\x03\x53\x63\x9d\x5b\x58\x99\x16\x82\x50\x91\x6f\xc1\x85\x19\x73\x73\xb0\x96\xce\xcb\x04\x10\xb6\xa4\x19\x17\x39\xc8\x86\x10\xd8\x93\x5f\xda\x58\x6d\xed\x24\x74\xef\xb8\x55\x1c\xa5\x3f\x48\x78\xa8\xd9\x58\xdb\xe9\x5c\x42\x90\xcc\xd9\x74\xa0\x7a\x6c\x51\x3a\x46\xf9\x56\xaa\xad\x77\xaa\x27\x30\x46\xf9\x77\x79\x7b\x6d\x08\x7f\x2a\x42\x3f\xfa\xd6\x78\x11\x0a\x4c\xf6\x97\x73\x38\xcd\x91\xc6\xe1\xe2\xe1\xa7\x75\xab\xac\x08\x1b\x4a\xbb\x62\x13\xf4\xab\x09\xdd\xc5\x49\xc2\xbb\xcf\x8d\x31\x68\xfd\xed\x9a\xcc\x61\xd9\xc7\xa0\x85\xe3\xed\x61\x6e\x63\x43\x82\x8b\xda\x75\x91\x67\xb7\xfa\x18\x68\x6e\xff\xb5\xa4\xfe\x61\x11\x21\x71\xb3\x91\x5c\x79\xaf\x0b\x03\xcf\x63\xe6\x8f\x1d\x9d\xa3\x09\x41\x0d\x01\x5f\x7b\x57\xbd\x27\xec\xe4\x58\xfc\xdd\xb3\xb8\x90\x41\x9b\xf5\x94\x5e\x81\x5d\x0f\x21\xbe\x73\xc0\xf9\x8b\x72\x0d\xe1\x5e\xca\x62\x0d\xe2\x1f\x27\x6c\x39\x50\xf7\xb8\xfa\xab\x22\x21\x5a\xf3\x43\xca\x9c\x0a\x5f\x06\x61\x31\x19\x81\x17\x8f\xa5\x12\x2e\x86\x45\x6a\xfe\x27\x2a\xcf\xed\x56\xdc\xb5\x96\x95\x60\xba\xd2\x99\xff\x6d\x42\x13\xc1\xc8\xf8\xe7\xba\x25\xcf\xeb\x09\xfb\x3e\x07\x4e\x54\xe9\x9d\x24\x44\x36\x9d\xcc\xf1\xe5\xf9\x46\xe8\xad\x61\x9f\x27\x78\xd7\x9d\x81\x28\xef\x6d\x2d\x27\xe2\x21\x18\xaf\x1a\xf4\x7b\xeb\x38\x45\x68\x88\x16\x30\x3e\x9c\x7c\x86\x20\x61\x71\xca\xd3\x65\x53\x0d\xe1\xbc\x9a\xf8\x1b\x1b\xe7\x0a\x42\x92\x74\xdb\xe2\x8e\x5d\x05\x04\x9e\x17\x87\xc7\x7a\x6e\x09\x10\x36\xf3\xc5\xce\xda\x26\x3f\xc5\x60\xe9\xe3\xf9\x07\xb9\x24\x59\xa4\x61\x3c\x55\x3d\xd6\x93\x18\xc5\x80\x4b\xf5\x96\xd2\x52\xd9\x48\x06\x52\x99\x4b\xf2\x82\x0e\x0c\x13\x82\x7e\x6a\xdc\x72\x91\x18\x23\xb0\x2c\x79\xb1\xab\xb9\x6c\x8a\x81\x96\x86\xee\x63\x5b\x1b\x4b\x06\xcf\x86\x1c\x1d\x6e\xaf\xad\x9b\xb9\xcb\x2c\xed\x1b\xbb\x16\x43\x93\x2b\x76\x6e\xbd\x34\xfc\x83\x90\x75\x65\xdf\xe0\x8e\xfe\x76\x82\x9e\xce\x92\x08\x91\x6b\xc1\x84\xfa\xf7\xeb\xfb\x9a\x56\x67\x13\xe6\xcc\x09\xda\xf6\x7e\xe2\xe9\xcc\xbc\x20\x9c\x51\x79\x3a\x9a\xc1\xa2\x83\xc5\xe3\xdb\x97\xd7\x31\xa8\x4a\x13\xff\x94\x34\x63\x78\x4e\x9a\x7f\x19\x96\x2b\x60\x90\xb9\xd2\x6f\x89\x45\x57\x23\x03\x0f\x96\xdf\x5d\x25\x99\x2f\x09\xa6\xdd\x99\xd9\x99\xc1\x15\x84\x85\xa1\x1b\xb5\x06\x9a\x6e\x12\x54\xef\xaa\xf1\x87\x77\xff\x20\x78\xdc\x10\x9e\xcd\x3d\xef\x26\x41\xb8\xe3\x2d\xb8\x17\x76\x13\xd6\xdf\x7d\x7d\xbd\x7f\xb5\x05\xa1\x6c\xf3\xf0\xd5\x0c\xae\x30\x82\xa5\xb7\xc6\x9f\x17\x57\x47\x08\x54\xea\x2a\xeb\xa4\xd1\xc2\xe0\xdd\xac\xd3\xee\xde\x6f\xf6\x12\xee\xdc\x34\x7d\x23\xe6\xdd\x44\xf8\xb9\xd4\x9f\xa2\x9e\x2d\x9b\x99\xf8\x62\xed\x63\xb7\x6d\x22\x08\xd8\x4c\x7f\xb8\xff\x39\x98\x90\x2c\x3e\x3f\xa8\xe8\xc1\x57\x82\x57\xa9\x71\x09\x04\xc6\xa4\xd0\xcd\xa1\x5f\x5f\xfa\xe7\x3b\x61\xdb\xaa\x88\xcf\x1b\x2a\x95\x09\x01\xc1\x7b\x0e\x6b\x71\x1f\x21\xd8\xfb\xab\x2d\x15\xda\xd9\x45\x50\xb1\x1e\x33\xeb\x76\xf9\x40\x70\xb2\xb9\xb2\x70\x72\x4d\x37\xc1\x70\x44\xdd\x70\xcd\x8a\x5f\x04\x9e\x14\x53\x95\xbc\x96\x4c\xc2\x92\xd2\xab\x7b\xc2\xc6\x9a\x19\xb0\x34\x71\x58\xfd\xe9\xad\x66\xb0\x64\xdc\x56\x70\xd9\xb9\x62\x42\xab\xf9\xbd\x4b\xf6\x4b\xba\x08\x32\x7e\x92\x19\x13\x7b\x32\x18\x28\x19\x56\x3d\x57\x7b\x3d\x49\x98\x3e\xda\x20\xf0\x57\x58\x92\xb0\x5c\xc0\xcb\x61\x6e\x5f\x2c\x61\x48\x80\xb9\x54\x1a\x52\xc0\xa0\xc2\x9a\x23\xf5\x88\x59\x05\x21\xf7\xfb\x1f\xcb\xdc\xb8\x30\x82\x55\x4b\xee\x79\xfe\xbe\x16\x42\xa9\xf3\x7e\xb7\x6f\xcf\xe5\x08\x0b\xee\xe7\xf3\x9d\xb6\xbf\x44\x18\x13\xce\x3f\xda\xfb\x35\x85\x41\xb5\xdc\x3a\xa5\xae\x4b\xb1\x0c\xee\xef\x91\xbf\xf0\x4f\xe9\x2b\xe1\xbb\xa7\xba\xe6\x24\xfb\x3c\x82\xbc\x67\xd6\x8a\x1b\x2b\x3f\x11\x4e\x72\x77\x95\x1f\xd0\x0b\x21\xb8\x85\x3c\xe9\x1f\x5e\x2a\x4c\x68\x7a\x74\x67\xab\x5a\xd9\x77\xc2\xa7\x2d\x73\x4f\xe4\x6a\xf0\x11\x0a\xee\xba\xdc\x39\x95\x93\x4b\xa8\xbb\x64\x74\xf3\xe3\xf3\x65\x84\xf5\xab\x7b\x7b\x4c\xfb\xbd\x09\xc1\x77\xcf\xb9\x9d\xdd\x5e\x4f\xe0\x9b\xed\x59\x2c\xb2\xc5\x84\xb0\x41\x3e\xc1\xa6\x54\x62\x82\xa0\xca\xa5\x19\xf3\x56\xf6\x05\xc1\xfa\xc9\xdc\x23\xcb\x05\x7d\x08\xa1\x3b\x56\xde\xe9\x7b\xf0\x8c\x70\xd5\x79\x6b\x0a\xdf\x0e\x49\x42\x5f\xc1\x86\x7b\x9c\x7d\x02\x84\x74\xbd\xd3\xc5\xd3\x0b\x3e\x12\xde\xc9\xfe\xee\x7c\xfc\xb3\x9c\xb0\x59\x2e\x97\x31\xb0\x6a\x67\xb0\x44\x56\x2e\x67\xfa\xb1\x0b\x81\x37\xeb\xe3\x5e\xc7\x99\xc8\xe5\xcf\x89\xe7\x8f\x9e\xf8\x13\x12\x0e\xc5\xf1\x1d\x92\x92\x20\xd8\xb4\x17\xb0\x47\x7c\xd7\x25\xf4\xfa\x20\x4c\xeb\xfd\x08\x21\xea\x45\x05\x2c\x1a\xbe\x31\x98\x73\xb8\xe2\xf0\xfa\x9e\x0e\x06\x6b\xa3\x8c\x13\xcc\x46\x06\x08\x7d\xab\x0f\xa4\xee\x99\x59\x15\x9a\x7a\xff\x3e\x9b\xe1\x75\x42\xe7\xe1\x07\x05\x62\x6d\xb7\x08\x56\x4d\x07\x78\x3c\x0f\x65\x10\x8e\xdc\x34\x32\xf8\x4f\x94\x93\xff\x4a\x46\xff\x56\x35\xe1\xef\x25\xf1\x03\x4a\x5f\x7f\x13\x90\xe2\x78\x39\xdf\xf8\x02\x61\x47\xd5\xa7\xa5\xff\xce\x45\x12\x9a\x0a\x43\xae\xff\xf4\x8a\x20\xc4\x71\x84\xae\x5b\x23\x3c\x42\x28\xf6\x7f\xad\x2d\x9c\x3f\x4d\x70\x53\x63\x9e\x3f\x48\x0b\x25\xe8\x6e\xb6\x70\x7a\xbf\x22\x98\x81\xdd\x99\xc7\xc9\x73\xe6\x6b\x11\x6e\x3c\x15\xac\x7f\x52\xd7\x4e\x70\x14\xe3\x75\x3f\x75\xed\x2b\x61\x9a\x2b\xd1\xfa\xb8\xc6\x0f\xc2\xa9\xb3\xcb\xe5\xe7\xfb\x49\x10\xdc\x17\x44\x49\x98\x1b\xbc\x63\x20\xbd\xf0\xcf\x99\x6f\x71\x31\x0c\xc6\x3c\xd4\xde\xe5\xc8\x55\x10\xc6\x64\xf7\xdf\xb3\x5c\xd8\xc0\xa0\xf5\xb5\xd6\xeb\xa5\x9f\x36\x13\x84\x92\xdf\x3c\x18\xbe\xd4\x46\x18\x0c\x4c\xec\xad\x7b\x11\x43\xd8\xd5\xb5\x20\x59\x64\x79\x28\x41\xc5\xcd\x66\x7f\x86\x68\x1b\x61\xa5\x9d\xf4\x27\xc1\x24\x3e\xc2\xd1\xc1\x95\x5d\x47\xfc\xee\x10\x5e\x48\x78\x55\xed\x34\x4f\x21\x74\x6e\xec\x92\xcf\x75\xed\x20\x14\xdd\x5a\xdc\xb8\x71\xa4\x96\xf0\x8d\xc7\xe1\xa8\x88\x9f\x1b\x81\x43\xf3\xb2\xac\xf2\xae\x2d\x84\x2a\x3d\xef\x86\x77\xcb\xca\x08\x5d\xdf\xbe\x51\xdf\xae\x39\x84\x67\xac\x5b\xd6\x86\x79\x56\x10\x24\xdd\x15\x06\x1c\x8a\x5b\x18\xec\x3f\x77\xd3\xdb\xcb\x4d\x91\xd0\x6c\x3a\x39\x5f\xfb\xd1\x2c\x82\xa3\x79\xd6\xd9\xe8\x07\x1d\x04\xff\x4f\x4d\x6a\xf7\x24\x03\x09\xd6\x66\xac\xfe\x7f\xd6\xa7\x11\x22\xad\x03\xd4\xcf\x2c\x5b\x4a\x68\xe0\x76\xda\x52\xa5\x59\x41\x30\xda\xe2\xcf\x87\x80\x9b\x84\x85\xa3\x5a\x75\x1c\x27\x12\x08\x19\xe6\xcf\x43\xe5\x14\x43\x09\x6a\x6c\x46\xef\xf4\x33\xea\x08\xfa\xd6\xa1\xb2\xf5\xef\x0c\x18\xdc\x64\xef\x91\x31\x98\x31\x39\x9b\x7e\x27\xbc\xe7\xf1\x25\xf4\x7b\xe8\x37\x3c\x4a\xfe\xc0\x60\xcd\x54\x80\x0c\xf7\x3d\x57\x82\xc1\xbf\x13\xe7\xe6\x1d\xfc\x46\xf0\xc9\xb0\x5c\x71\x30\xfd\x0b\x83\x5f\xda\xdb\x37\x18\x1f\xff\x4c\x38\xfd\x81\x9c\x15\x5d\x47\x18\xf8\x5f\xd3\x59\xb9\xb7\xe7\x0f\x81\x2d\xdc\x96\x4b\x66\xfe\x30\x01\x39\x9e\x8b\x9d\xa5\x07\x08\xc9\x89\xaf\xef\x31\xaa\x3f\x18\xec\x70\x50\xc8\x3e\x28\x94\xc7\xa0\x4f\x65\x95\xec\x00\x4f\x1e\xe1\x9c\xe6\xfa\x8c\xd1\xaf\x33\x73\x47\x50\xec\x6c\x39\xde\x31\x42\x8c\x53\xdd\x0b\xcd\xec\x31\x06\x89\x9d\x97\x8b\x57\x44\xfd\x25\xf8\xa6\xf8\xe8\x7c\x30\x29\x27\x54\xfd\x3b\x9b\x35\x71\xb6\x8e\xd0\x21\x3c\x91\xa3\xac\xda\x43\xb8\x99\xf3\xe4\x86\xec\xc6\x61\xc2\x03\x93\xa7\xbe\xec\x89\x63\x84\x4f\x1f\xbf\x8e\xf5\xa9\x24\x31\x78\xd9\x59\x29\xa0\xe6\xcb\x2e\x8d\xcb\xca\xf2\x23\x99\xf2\x23\x84\x95\x97\xa6\x0f\xb8\x5c\xac\x25\xa4\xef\x8e\x2c\x18\x7b\x52\xc4\x80\xd3\x3c\xea\x97\xb6\x77\x0b\x83\x1b\xfb\xc4\x97\x57\xbe\x62\x97\x46\xa4\x40\xcf\xe3\x2d\x9e\xdd\x84\x02\xcb\xfd\x11\xcb\x66\x26\xfd\xdb\xbb\x9e\xed\x3c\x61\xfc\x97\xd0\xd6\x55\xdc\xae\x76\x26\x84\x90\x57\xcf\xf9\x82\xa3\xbd\x89\x60\xc5\x3f\x31\xfc\xcb\xaf\x99\x60\xf0\x70\x6c\x70\xf3\xde\x59\xd2\xc8\xfb\xbc\xb2\x38\x64\x7b\x0d\x41\xed\x8f\xeb\xaa\xa9\x3d\xb3\xa4\x21\x6d\xec\xe1\xa8\x66\xd2\x49\x28\xdd\xf8\x62\x59\x92\x4d\x12\xe1\xe1\xc5\xe9\xa7\xae\xa6\x89\x0c\x2e\x76\x49\x6e\x9c\x17\x9a\xc1\xe0\xe4\xc5\x8b\xd1\xc3\x7a\x5e\x04\x41\xa7\x6c\xfe\xa6\x0d\x69\x0c\x42\x1c\x5e\x6d\x73\xf6\xcc\x63\xf0\x41\xfa\x76\x66\xd9\x8c\x51\x5d\x3e\xf1\x2d\x2c\x3e\x83\xf0\xa0\x4c\xec\xc1\x7f\xca\x8a\x6b\x26\x53\xfc\x13\xbb\x18\x6c\x34\xcf\xdd\xa1\xbb\xe5\x0f\x83\x8d\x6e\x6c\x2c\x63\xda\x0c\xc1\x90\x2b\xf1\xc7\x77\xff\x6a\x42\xa8\xe8\xf5\x9d\x49\xab\xd7\x12\x4e\xfb\xbb\xb8\xb7\xb7\x54\x11\x52\x6b\x8b\x0e\xf4\x76\x1f\x23\x18\x7c\x1d\x1a\x36\xd9\x96\x40\xb8\x18\x97\x70\x56\x7a\x6b\x2c\x21\xfb\x77\xa1\xd1\x7f\xc0\xf4\x9a\x8d\xa7\x29\x4b\x1d\xe1\xf4\x8a\xa5\xa5\x67\x56\x39\x12\x72\xff\xee\x7f\x2c\x31\x13\x7d\x5b\x78\xf2\xcb\x2c\xc5\xdd\x04\x4e\x77\x5d\x35\xce\x27\x33\x5b\x5c\xa1\xb8\xd0\x36\xb5\x69\x06\x91\x77\x95\x34\x1e\x2c\x3c\x4d\x58\xd0\x82\x4d\x19\x69\xb3\x08\xc2\xb3\x77\xad\x6b\xe3\xc8\x64\xf0\xf0\xfe\xe9\x7d\xab\x45\x3c\xe8\xff\x07\x8e\x44\xfa\x7f\xad\x28\x6e\x65\x30\xd1\x5c\x39\x7c\x71\xc6\x5c\xd0\x11\xbb\xe6\x2e\x9c\x46\xf0\xe3\xd8\xa3\xee\x36\x03\x0d\xbc\x0b\x6a\x9d\x67\x40\xc0\x76\x96\xca\xa1\x3d\x19\x84\x70\x9b\x7b\x8b\xdd\x9c\x1b\x99\xff\x8d\x26\xe5\xb8\x36\xbe\xa9\xeb\x66\x70\xb3\xe4\xb1\xbf\xeb\x8c\x39\x15\xc1\xbc\x79\xaf\xfa\x83\x10\x95\xcc\xff\x36\x71\xba\x95\x90\x5f\x6b\x96\x71\xad\xeb\x0a\x41\xf4\xc0\xe0\xc4\x43\xc5\xc7\x04\xb7\xb3\x4b\xed\x74\x36\xf5\x30\xff\x1b\xfd\x9f\xf0\xce\x72\x79\xae\xe4\xa2\x06\x42\xcc\x63\xc7\xdb\xef\x44\x1b\x18\xdc\xe2\xe2\xd3\xe0\xaa\x7c\x45\xd8\xa2\xb9\x64\x96\x92\x58\x05\x03\x2f\x57\x45\x99\xd7\x2f\x6a\x19\x9c\xb8\x2c\xa4\xeb\x11\x50\x48\xe8\x0e\x58\x61\x9b\x95\x59\x4f\x50\x79\xa7\xd0\xf7\xc7\x29\x8b\x81\xa2\xe7\xfe\xcb\xcf\xee\x66\x31\x30\x71\xe5\x54\xee\x4c\xef\x22\xdc\x3e\xee\x13\xb9\x6f\xe0\x17\xa1\x77\x4a\xe0\x93\xe9\x82\x18\xc2\x69\xaf\xa1\xfa\x49\xde\x36\x06\xb7\x25\xce\x72\x75\xb2\x66\x10\x96\xea\xf8\x18\x3c\x64\xbc\x08\x5c\xb3\x58\x66\x6b\xc8\x44\x13\x3a\xd5\x3a\xae\xb1\x98\xf5\x10\xd6\x18\x7c\x0d\xbd\x91\x31\x41\xa8\x35\xff\x5a\x2c\xbf\xb2\x93\xa0\x5c\x30\x3d\x6d\xc2\x37\x73\xbf\xdc\xd1\x73\xf1\xe8\x15\xcb\xff\x82\xb5\xd5\xf3\xe6\x1d\xf1\xd2\x21\xe4\x05\xa4\xed\xfc\x8f\x19\xf8\xb3\x75\xc5\x06\x0f\x59\x02\xff\x9f\x65\xfa\xfd\x37\x9f\x10\x86\x8e\x28\xa5\xee\x7d\xa0\x46\xd0\x2a\x3d\xd6\x58\x25\xe6\x44\x18\xe8\xf1\xf3\x98\xd3\x77\x97\xe0\xe0\x75\x3b\x9b\xeb\x48\x0c\xe1\xc1\xbc\x9f\x83\xff\x31\xea\xaa\x7b\x16\xb1\xcf\xd1\x21\xa4\x9d\x8c\x5e\x3c\x6a\x3d\x8b\xb0\x81\xe3\x4f\x3f\x5b\xb8\x37\xa1\xc1\xc1\xdb\xe8\x53\xfd\x18\x21\xff\xe3\xab\x88\xdb\xb2\x55\x84\x49\x4e\x09\x7e\xee\x2b\x69\x0c\x38\x47\x7c\xb6\xc5\xad\x31\x23\xbc\xbf\x54\xa9\x10\x3e\xa9\x4b\xe8\x38\x12\xae\xdf\xf9\xab\x87\x81\xe3\xb7\x05\xb3\xfe\x48\xf7\x33\x88\x51\x5f\xd5\xfe\xfa\x68\x2e\x83\x5c\xd5\xfb\xcd\x1e\xab\xda\x09\x6a\x7b\x44\x7d\xb6\x99\x7c\x23\xb8\x98\xda\xd4\x1f\xee\x8f\x21\x68\xe5\xf7\x7f\xbe\xed\x5e\x4a\xf8\x57\x59\x32\x4b\x8b\x37\x8b\x81\x9b\x06\xf5\x1d\x52\x4e\x25\x6c\x8b\x59\x1d\x95\xe8\xdc\x4d\xd0\x17\x52\xd6\x16\xe1\x71\x21\x1c\xb1\x2b\x8c\x76\x57\xea\x26\x98\xdb\x4d\x85\xc8\x1c\x7c\x44\xf0\x70\xca\x50\x33\xbc\x67\x4d\xe0\x91\xd6\x7f\x5a\xce\xef\x45\xe0\x14\x51\x33\x4b\xf2\xc9\x24\xe4\x36\x5e\x3f\xf5\x5d\x79\x82\x10\x62\xb5\x27\x67\x13\xa3\x40\xb0\x58\xf1\xcf\x7e\xac\x3a\x91\x70\xe6\x79\xd3\xbf\x86\xcb\x49\x0c\x46\x9d\x16\xf5\xcd\x2d\xee\x21\x08\xa9\x0c\x5e\x69\xeb\x3d\x42\x88\x39\x57\x5d\x3b\xb1\x31\x99\xc1\x15\x91\xd1\xb3\xb3\x1e\x06\x11\x56\xac\x7f\x62\xfa\xd7\xf5\x33\x83\xcc\xfb\x6b\x95\x05\x6a\x04\x09\x1b\x97\x0d\xcd\xbd\xf7\x78\x88\xf0\xd1\xd8\x22\xad\xf2\xa0\x07\xe1\xf3\xc9\x0f\x86\x32\xbc\x56\x84\x55\x26\x18\xda\x3e\x99\x40\x90\x0d\x6c\xff\xec\x9a\x9c\x4b\x90\x70\xcc\xef\x8f\x33\xf8\x41\xb0\x6e\x08\x6d\x66\xde\xeb\x12\x1a\x38\xeb\x55\x4d\x32\xab\x08\xf7\xd6\x7c\x5c\x77\x7a\x45\xb7\x14\x1c\x44\x1c\x0f\x9c\xfb\xfc\x86\x81\x58\xfa\x69\xb6\x52\xa1\x62\xc2\x53\xdb\x3b\x11\x89\xbc\x6b\xfe\x0b\x2a\xca\xb7\xfa\xfe\x3e\x9d\x4d\x50\x6c\x3b\x7c\x31\xc9\xaf\x91\xc1\x27\xd7\x88\x82\x90\x99\xa8\x72\x49\xd7\x90\x95\xde\x1e\xc2\xd8\x22\xd6\x15\xac\x8f\x7c\xff\xcb\xfc\x9f\x20\xdb\x1e\x92\x76\x3f\x81\x83\x70\xf2\xe4\x5a\x51\xe7\x90\x56\x29\x7c\xed\xfa\x22\xf8\x8e\xb5\x92\xc0\xca\xaa\xe7\x95\x75\x32\x93\xc0\xab\x9e\x76\xf9\x4f\xb8\x21\xc1\xc7\x12\x0f\x5f\xeb\xc4\x13\x36\x19\xef\xbf\xb6\xd7\xae\x95\xb0\xe1\x18\xc7\x6b\xff\x82\x8b\x04\xdf\xae\x77\x65\xbb\x33\xa3\x09\xd2\xe9\xbf\x97\x5e\xd8\xfc\x91\x70\xe0\xe7\x8f\x95\x91\xde\xae\x04\xfd\xb9\x66\x2f\x2c\x6a\x72\x09\x9b\x4a\x8b\x97\xec\x99\xe9\xfc\x3c\xfd\xa8\x6f\xf3\xe6\x5e\x06\x95\xe2\xa2\x31\x29\x41\xb6\x04\x47\xf9\x3d\x72\x3c\x1b\x27\x09\x6d\x1c\xa3\xfe\x15\xa7\x3f\x12\xf8\x4e\xed\xd6\xe6\xbd\x6e\x4b\xb0\x10\xbf\x64\x60\xcc\xba\x8c\xb0\xac\xce\x97\x3f\xac\x20\x96\x81\x74\x64\xce\xcb\x24\xb1\x7c\x82\xe6\x97\xdd\xe2\x16\x49\x6d\x52\x08\x3e\xc9\x36\x5d\xe7\xcc\x46\x50\xe6\xfd\xae\xff\x9e\x63\x0e\xe1\xa9\xa2\x55\xd1\xf7\x9e\x5c\x42\x6a\xfe\xfe\x8b\x15\xfe\x32\xff\x05\x5d\x0a\xe9\x11\xaf\x14\x22\x08\x12\xad\x86\x97\x0f\xa4\x88\x30\xff\x1b\x69\xdd\xd9\x35\xd8\xa5\xbf\x9b\xb0\x65\x72\xea\xd0\xbe\xe4\x5d\x04\xa3\x36\x09\x7f\x91\xc4\x04\x82\x7a\xa9\xa4\xd3\x7f\xcc\xff\x40\x74\xe1\x52\xd1\x05\xfb\x97\x11\x04\x4d\x7e\xc6\xbf\xae\xaa\x94\xfa\x5f\xd8\xdf\xf2\xda\x79\x65\xed\x25\x42\xd5\xfe\xd3\x93\x4a\x0f\x96\x12\x2c\x2a\xf5\xb8\x76\x94\x7d\x23\x38\x25\x88\x9e\x16\x67\x53\x20\x54\xaf\x7d\x83\xa2\x0d\x09\x0c\x92\x1f\x6f\x9a\x95\xbd\x7f\x2f\xe1\x65\x42\xe0\x8b\x35\x91\x7c\x84\x47\x77\xd6\x0a\x19\xa4\x0e\x11\x0e\x1e\xcb\xb4\xfb\xee\xf9\x87\xb0\x5d\x3e\xda\xe7\x88\x52\x2b\xe1\xee\xf8\xc9\x7d\xbf\x8a\xb3\x08\xfe\xe7\x2c\x4a\x84\x5f\x66\x11\x7a\xd4\x85\x59\x4d\xb8\x33\x19\xac\x3a\x2c\x1e\xd1\xcb\x56\xc5\x60\x7d\x79\x7c\xa1\x44\x6c\x3b\x21\x63\xa5\x44\x81\x94\xc5\x1c\x69\xec\x0a\xb0\x51\xb1\xe1\x6f\x65\x10\xa3\x15\xe0\xc0\xab\x37\x4e\x90\xea\x1f\x66\x0b\xff\xd1\x45\x28\x3c\xa7\x9d\x2c\x94\x51\xc9\x20\xdf\x9f\xbd\xde\x35\x61\xae\x34\x56\xd5\x57\x4b\x16\x4c\x55\x10\x54\x02\x04\x2f\x96\xfe\xce\x22\xa4\xad\xc8\xcc\xfb\xd7\x5d\x40\xb8\xe2\x72\xc3\xde\x75\x13\x9b\x34\x62\x04\x78\x1d\x0f\xce\x2b\x22\x94\xd4\x15\x16\xa8\x48\xc6\x11\x76\x6b\xca\x94\x9e\x11\x8d\x23\x34\x67\xb7\xaf\x8d\xf3\x7a\x4d\xd8\xfa\xea\x9d\xca\xd7\xde\x0c\x42\x40\xfc\xbe\xd2\xad\x1c\xd9\x84\x6d\xc1\x4b\x35\xc5\x73\xd9\xa5\x31\x14\xb5\xbd\xbf\xd2\xd0\x83\xa0\xc3\x31\x62\x94\x94\x33\x4a\x48\xdf\x61\x57\xe1\xd1\x95\xc5\x20\x4f\xc9\x33\xc9\x8a\xa5\x84\xc1\x75\xcd\xbd\xee\xdb\x73\xd8\xa5\x71\x50\x7a\xd5\xe3\xde\x9d\x71\x84\xb1\xb7\x8f\xd4\x74\xfe\x04\x10\xd6\x8a\x3b\x67\x85\x0a\xe9\x11\x96\xdc\x14\x5a\x92\x11\x19\x48\x50\xda\x6d\xe2\x3b\xda\x52\xc5\x60\x79\xfa\x88\x4b\x4c\xb8\x3b\x83\x92\xce\x6f\x5d\xc3\x33\x46\x3c\xf9\xdd\xa3\xd9\xb2\xc1\x04\x36\x15\x9d\xd8\xcc\xaf\xc5\x84\xf1\xd1\xbf\xc7\xd8\x5f\xb7\x11\x72\x58\xb7\x4c\x96\x77\xb7\x11\x7e\x5e\x29\x69\xff\xb5\x38\x87\xf0\x6b\xfb\xac\xe0\x43\x75\x89\x84\xd1\x20\x39\xdd\xc9\xd0\xb9\x84\xb0\x9d\xec\x01\x37\x9c\x5a\x18\x7c\x98\x9a\xbb\x25\x99\x37\x8f\x81\xd8\xc9\xa3\x0a\x98\x89\x3e\x1b\xce\x4a\x6a\xb8\xa4\x47\x70\xf1\xb7\x98\x14\xf8\x13\x4f\x68\x0c\x51\xaf\x0b\x77\x1b\x93\x42\xce\x7a\x8f\x1f\x0b\x52\xba\x08\x2d\x79\xa2\xf3\x0e\x5e\xd3\x21\x3c\x14\x5b\xfb\x70\xcd\x7c\x4b\x42\x54\x43\xca\x3a\x99\x5a\x49\x42\x24\x47\x49\x4b\x5b\x5d\x21\x81\x26\x2e\x71\x65\xb5\x6a\x10\xe6\x75\xed\x13\x64\x49\xf4\x23\x14\x6c\x0c\x5c\xda\x5d\xf4\x95\x41\x0f\x87\xae\x19\xbb\xee\x3e\x42\x9c\xd1\xcb\x92\x51\x3d\x7f\x82\xf8\xf8\xce\x7f\x4e\x9c\x0c\xe1\x29\x63\xe9\x1f\xb3\x69\xf3\x7f\x19\x8e\x10\x37\x37\x96\x9c\x8d\x04\x9d\x9f\x3e\xb6\x6e\x72\xa5\x0c\x56\xc6\x44\x8d\xd5\xb7\x1f\x23\xcc\x75\x7f\xa6\xb5\x3c\xe5\x20\xc1\x43\xbe\xc1\xe0\xd9\xce\x7e\x06\x83\x89\x86\x43\x32\x5d\xcd\x0c\xc4\x2f\xaf\x3b\x3e\x1c\x71\x88\xe0\x6d\xbb\x5c\x5e\x7f\xf7\x5b\xc2\x0e\xde\xbe\x39\xdd\x4f\x96\x10\xdc\xbc\x7e\xed\xf6\x0c\x1f\x27\xd8\x69\xa6\x5e\x88\x4e\x1a\x27\x6c\x8b\x2e\xba\xb8\xa0\xec\x27\xa1\xe3\xec\xf5\xdf\x77\x67\x4c\xb5\x7d\xc7\xb2\x97\xd5\x2e\x84\xa5\x9c\x8e\xbf\x7d\xae\x06\x11\x86\xda\x4b\xdc\x94\x58\x5e\x10\x9a\xc3\xc7\x03\x9b\x15\x6b\x09\x6d\xbf\xb4\xd8\x4a\x15\x8a\x18\xdc\xdb\xca\x25\xaf\x6f\x96\xc9\xe0\x65\x43\xa4\x48\x2a\x7b\x2a\xe1\xa6\x98\xa4\xc3\xf1\x99\xb2\xef\xe2\x7a\x9d\x5a\xab\x78\xc2\xdc\x2d\xf7\x78\x6c\x76\x16\x12\x5a\x22\x8b\xca\x22\xfa\x7d\x08\xbc\xa1\x9d\xe6\x2c\x77\x5a\x18\x4c\x1f\xb6\x8d\x9e\x33\xf3\x30\x66\x66\x18\xef\xdd\x9b\x10\xca\xc0\x98\xbb\x47\x6d\xbb\xcc\x41\xc2\x31\xc5\xa5\xf5\x97\xce\xdb\x12\x1e\xdd\xd7\xae\xbd\xe6\x90\x43\x78\xb8\x53\x75\xe7\xab\x54\x77\x02\xdf\x68\x96\xc1\xe7\x99\x0f\xa1\xa5\x6d\xe3\x89\x75\x9c\xf3\x08\xab\x32\x46\x69\x6a\xdc\x95\x70\xe0\x72\xb0\xd5\xa0\xac\x17\xc1\x8a\x2f\x61\xed\xda\x7f\x1b\x08\x69\xe6\x62\xe2\x12\x7c\xe3\x52\xa8\xfd\x18\x3c\xd7\x2f\xca\x85\x01\xcf\x7e\x4b\x91\x24\x8d\x5a\x29\x84\x54\xb5\x1d\x2a\x5d\x52\x43\x90\xf8\x3e\x69\x15\x3f\x63\xd6\x5c\x98\x7b\x33\x27\x3f\x9b\x01\x4b\x9c\x9e\xd3\xa2\x04\x56\xc2\x3d\xdf\x39\x2c\x0b\xac\x3e\x13\x5e\x08\x3f\xbc\xb6\xda\x3b\x96\xc1\x3f\xb1\x23\xa9\xab\xb7\xd9\x11\x16\x7d\x6f\xdc\xb7\x5f\xd0\x8d\x50\x31\xb0\x4f\xbc\x73\xe8\x19\x83\x32\x65\xff\xe6\x71\x1d\x1f\x06\x81\xfb\x78\xf5\x03\xaf\x64\x11\x7c\x85\x5f\x6d\x5b\xa6\xe0\x41\x68\x96\x16\x1e\xfe\xc0\x52\x4e\x30\x5d\x91\xb9\x22\xe7\x7e\x2b\x21\x82\x57\xe1\x56\xab\x9b\x39\x81\x7f\xb9\xe1\x42\x41\x15\x0b\xc2\x45\xb7\xa3\xcc\x45\x8e\x6e\xc2\xf9\x86\x2f\x9c\x8d\xf7\x5f\x33\x90\x1d\xd1\x9a\xcd\x75\x36\x97\x70\xf5\xd2\x50\x3d\x77\xa9\x2f\xe1\x84\x9a\xfd\xe1\x23\x8b\x5d\x19\xfc\x48\x9a\xbd\x28\xe9\xcd\x76\x02\x4b\x56\x48\xec\x6a\x8e\x2c\x42\x9f\xb4\x17\xde\x35\x5d\x21\x28\xb1\xf5\x59\x88\x39\xb4\x11\x1a\x83\xe6\xb9\x2e\xbf\xe5\x49\xf0\xaa\x16\xdd\xf7\x20\x6a\x17\x81\xff\xa2\xcf\x97\x7b\xe9\x0f\x09\x53\x05\xc5\xe6\xf7\xac\x63\x18\x48\x0a\xd8\x35\x5c\x4e\x1c\x21\x4c\xe9\x2f\x9d\xa7\xa1\x56\x23\x85\x43\xd1\x4b\xb6\x65\x04\x3a\x11\x7c\x6c\x47\xfb\x38\xae\x56\x10\x32\x8e\x5a\x9f\x51\xfc\x25\x4d\xd8\x20\x56\x63\xfd\x38\x5d\x9f\x30\xba\xbe\x82\xcb\xf9\x42\x09\x41\xe8\x79\xdf\x1b\xaf\x5f\x59\x84\x4b\x67\x2d\xe4\xef\x58\x33\x84\x5d\xa7\x7d\xc7\x75\x95\x77\x12\x3a\x8f\x2e\xfb\x9e\x23\xf6\x99\x50\x28\xbd\x44\xfd\x45\xde\x11\x02\x77\x8c\xb5\x6a\xc8\x95\x38\xc2\x46\xd3\xd1\x12\x55\x77\x41\x02\xcb\xd3\xc9\xd5\xa1\x51\xc5\x84\xe3\xdf\xa4\x85\x4e\x65\xcd\x6c\x9e\xaa\x2f\x6a\x76\xc4\xa5\x12\xc4\xf9\xec\x0d\xcc\xd8\x2c\x08\xe9\x71\xc3\xa7\xd6\x5a\x67\x10\x6c\x14\x53\xff\x2a\x8b\xb8\x12\xc8\x5f\x6d\xf0\xb1\xe1\x7f\x76\x3f\x1e\xc5\x4d\x77\x3b\x19\x34\x7a\xeb\x5c\xbe\xe4\xfc\x83\x10\x39\xcc\x6c\x9e\xf8\x74\x9b\xe0\xe5\xdc\x49\x07\x4f\x3a\x12\x76\xde\xfd\xc9\xe3\xb6\x26\x86\x60\x76\x5c\x43\xf5\x45\x48\x0e\x83\x26\x7e\xe1\x2b\xee\xa3\xa9\x84\xd5\xdd\x46\xaf\xed\x07\xda\x09\x0b\x62\x03\x36\xfd\x3d\xd5\xcc\x40\x6d\xbc\xf9\x8e\x48\xdb\x1d\x42\x7d\x3a\x99\x89\x31\x61\x04\xeb\x5b\x96\xed\xdd\x9e\xa1\x04\x77\xe3\x53\x57\x76\xd0\x13\xc2\xd5\x43\x71\x53\x81\x3b\x97\x12\xca\x93\xb3\x06\x53\x93\x6f\x10\xb2\xd8\xff\xce\x0f\x7e\x54\xc9\xe0\xbe\xab\xd5\xda\xf6\x55\xba\x04\xe9\x8f\xd7\x58\xf4\x9e\xd7\x13\x1e\x0c\x84\x44\x5f\xba\x1f\x48\xa8\x50\x89\xba\x3e\x69\x10\xcd\x80\x7b\xa0\xe3\x60\xfb\xad\x5a\x06\xb2\xf7\x1e\x06\xd9\x44\xc7\x13\xc6\x8d\x7a\x5b\xb4\x67\x3a\xb2\x71\xd1\x71\xc5\x5d\xe5\x04\xbd\xf3\xc6\x35\xa7\x0b\x7e\x10\x82\x6b\x5e\x5a\xb6\x3d\x34\x20\x98\xb2\x64\x29\x74\x2d\x6b\x21\xfc\x2b\x55\x28\x38\x9c\xee\x4f\x30\x95\xf8\x38\x0c\x85\x6c\xc2\x50\x99\xf4\xdb\xbf\x87\x3e\x10\xfe\xe5\x3f\x77\x7c\xc4\x75\x81\x20\x79\x7f\x99\xb2\xec\x86\x1b\x04\x33\xbf\xf5\xba\x0b\x6b\x4a\x09\xc3\x47\x56\x7f\x4d\xd2\x2b\x24\x28\x70\x38\xf6\x98\x1e\x96\x23\x64\xd4\x3b\x9b\xbe\x0a\x1b\x96\xc2\x20\x3b\x4f\xf5\x82\xec\xf3\x04\xde\xba\x76\x3e\x99\x9a\x09\xc2\x49\x21\x49\x35\xed\x91\x1d\x84\x87\x5b\x52\x1b\xd8\x0e\x16\x12\x96\x7c\x71\x8f\x75\x9f\x29\x3f\x7b\xd5\xe9\xc8\x76\x52\x8a\x70\x6c\xa0\xea\x6e\x54\x26\x43\xd8\x2c\xb1\x68\x3e\xeb\x3b\x25\xc2\xae\xc8\x85\xbf\x26\x9f\x4e\x10\x34\x36\xf3\xc4\xff\xa7\x73\x74\xdf\x4b\x4f\xbd\xac\x0a\xc2\x2a\xd5\xa5\x39\xdf\x5b\x7e\x49\xc1\xa1\xff\x38\xcb\x70\xcb\x77\xc2\x95\x98\x94\xd6\x37\x39\xcd\x04\xee\xc7\x95\x2b\x72\xd9\x1b\x08\x23\xeb\x4f\xdf\x8e\x7f\x50\x4e\x08\x2f\x14\x90\xd2\x92\xc8\x64\xc0\xb5\x67\x6e\xd4\x59\xa5\x64\x82\x24\x13\x36\x24\xd4\xe8\x42\x48\xfc\xed\x90\x9d\xc3\xf3\x8e\xb0\x52\x42\x36\x53\xf7\xf8\x07\xc2\xce\x5d\x1b\x5c\x54\x0c\x6f\x10\xbc\x13\xfa\x22\xf7\x08\xbc\x21\xb8\x58\x37\xc7\x2a\xb5\x7d\x25\x5c\xce\x7d\x35\xee\xc3\x5a\xc3\xa0\xbf\xd0\x52\xd5\xfd\x4f\x3d\xe1\x45\xfb\xc9\x07\xb6\xfb\xe3\x08\x29\xe2\x2c\xb2\x62\x27\x13\x09\x47\x8d\xb9\xd9\x7d\xbc\xb4\x09\xa9\x52\x36\x83\xcd\x85\xb9\x04\x2e\x7f\x01\xbd\x60\x9b\x6e\x82\x46\xa7\x5d\x80\x63\xeb\x51\x82\x11\xdf\x3e\x03\xdb\x2b\x5f\x08\xda\x42\x09\xfb\xdf\xfb\xfe\x20\x38\xfe\x8d\x6f\x9e\xa8\x3d\x4e\x78\xc3\x95\x60\x1d\x5e\xf8\x95\xb0\x43\xf7\xc4\xce\x9e\x3f\x65\x84\x91\x73\xfb\xe6\x1d\x1c\x7e\x44\x58\xe8\xa2\x5b\xfc\x71\x26\xb2\x33\x9d\x7d\xc3\x76\xcb\x07\xc2\x0e\xc9\x8d\x72\x8a\xc2\x39\x84\xaa\x78\xb9\x84\x79\x6a\x1f\x08\x53\xcb\x56\x3f\xdb\x96\x73\x99\xa0\xb8\x3f\x22\xc2\xac\xd1\x9d\xb0\xc6\x9a\x9b\x02\x5d\x7c\x08\xa3\x2b\xcf\xe8\x7b\xef\x35\x22\x18\xfd\x3a\xaf\x3a\x7a\xed\x03\x83\x94\xb6\x2b\x11\x36\x4e\x7e\x84\x0c\x3f\x1b\xf6\xbd\x2d\xc5\x84\xc1\x1f\x96\xb2\xab\x4e\x87\x12\xa2\x6b\x0d\xab\xc3\xd2\x8a\x09\xab\x76\x6d\xe0\x6b\x71\x88\x20\xec\xba\xc1\xbd\xfe\x9f\x8f\x1b\xe1\xb4\xe5\xb4\xb4\x8b\xd3\x0f\x06\xb9\xce\x87\xbe\x0b\xf3\x33\x84\xef\x7c\xfd\x26\xad\xae\x37\x19\x7c\x9b\x32\x75\xac\x8d\x8d\x27\xf0\x74\xac\x74\xd7\xd2\x7f\x4e\xa8\x1c\x97\x7d\xd5\x12\x93\x4d\xb0\x51\x68\x7c\xf1\x77\xe2\x06\x41\x59\xe7\xa6\xe1\xdb\xc3\x51\x84\x55\x5a\xa5\x67\x57\x65\xe6\x11\x58\xad\x55\x78\x9b\x94\x2a\x09\xad\xfb\xcd\xa4\xf8\xb7\x38\x13\x3c\x2f\xaf\x7f\x3a\x70\xed\x31\x83\xf9\x3f\x0b\xf6\x04\x4e\x7e\x25\xe4\x0c\x8b\x24\x65\xb5\x8e\x33\xd8\xec\xd7\xc1\x76\x77\xdb\x73\x82\xfa\xf5\x80\xfc\x88\xdf\x99\x84\x63\x4d\x0e\x23\xd2\xd7\x5b\x08\x4b\x76\x5a\x9a\x85\xcd\x18\x95\xac\x85\x17\x8c\x23\x23\x08\xb1\x8a\x86\xf5\x4a\x62\xba\x04\x4b\xae\xa8\x6f\x4b\x5c\xc3\x68\x72\x3e\x53\x6d\xdf\xda\x4e\x88\x37\x75\xeb\xfa\x4f\x45\xea\x4e\xa1\x48\xec\x9a\x40\x06\xdb\x35\xf5\x5a\x85\x0b\xa3\x09\x01\xb9\xf2\x5e\x25\x25\xb1\x0c\x96\xe8\xd1\xc3\x42\xae\x14\x82\xe1\x8f\xd2\x52\xbd\x63\xce\x04\xae\x5e\x29\x3f\xb7\x96\xc3\x84\xc6\xf0\xd4\x67\x29\xe5\x11\x0c\x98\x53\x83\xc1\x05\x77\x62\x18\x8c\xfa\x89\xce\x8a\x9d\x19\x84\x71\x4d\x5f\x54\xe4\x47\x2e\x41\xfb\x6a\x89\x81\xd3\xcd\x97\x84\x7a\xb9\x18\xf9\xe0\x55\x6d\x84\xaf\x2f\x37\xf6\x6e\x9f\x89\x46\xaf\x77\xc4\xfc\x19\xfd\x4e\x58\xed\xd8\x87\xdb\x59\xdf\x09\x5c\xac\x5b\x02\xac\x6a\x5f\x12\x7e\xfb\xb2\x34\xad\xda\x9e\xc9\x40\xdc\x42\xdc\x60\x47\x51\x2d\x83\x6b\xcb\x63\x35\x5b\x5d\x02\x08\xe5\x45\x2c\x83\x56\xeb\x4c\x19\x5c\x7a\xbf\xf6\xb1\x93\xd1\x63\xc2\x0f\x91\x3a\xd5\xbf\x8b\xb2\x08\xf7\x6f\x66\x7e\xd1\x55\x75\x26\xf8\x0b\xcd\x89\xe2\x0d\x0b\x24\x70\x15\x5e\x4d\x97\x0a\xf9\xcc\x40\x28\xdb\xd9\x81\x57\x2f\x93\x70\xca\x88\x27\xf9\x23\x7c\x08\x95\x06\x8d\x37\x1c\x2f\x46\x30\xb8\xe2\x21\x33\x7f\x62\x48\x9b\xc0\xad\x5d\x7d\xe9\x4b\x95\x31\xc1\xa3\xb4\x69\x2c\x72\x45\x23\x61\x9c\x5b\x41\xba\xa6\x71\x36\xe1\x42\x43\xc7\xf4\x16\x85\x1a\xc2\xe9\xe3\xdd\x1b\x83\x2d\xbc\x09\x4d\xd9\xf5\x88\xb0\xaf\x27\xc8\x09\xa7\x2f\x2b\x28\xbf\xc9\xa0\xfc\xc1\xb5\x8c\x88\x23\xd9\x84\x08\xe7\x47\x42\x43\xd6\xcf\x08\x27\x06\x7d\xec\x38\x45\xde\x11\x34\x7f\x9b\x0b\xf8\xdc\x8a\x26\x18\xee\x39\x26\xf9\x46\xf5\x03\xe1\x6c\xb0\xdf\x84\xc4\xad\x5f\x84\xc3\x03\x8b\xfd\x9e\x05\x68\x11\x5a\x78\x0b\x5c\xca\x3b\x33\x19\x18\x72\xfb\x47\x5a\xdd\x38\x4a\xc8\x7c\x64\xd0\xf3\x6b\x6b\x11\xa1\x7b\xc9\x8e\x63\xec\xee\xa5\x0c\x2e\x19\xdf\xd7\xbb\xea\xe5\x4e\xf8\xa0\xc1\xe6\x7d\x4f\xa2\x9e\x20\xfc\x61\xf2\xf1\x9d\x59\x13\x84\x9b\x7a\x9b\x76\x9a\x08\x5e\x20\x1c\x5b\xb4\x6a\x51\xb9\x88\x0f\xe1\x43\xb0\xf5\x75\xd7\x87\xbe\x84\xf1\x8d\xeb\xef\x3b\x7d\xf6\x26\x7c\x6e\x68\xf1\x2b\x3e\xfd\x92\xd0\x18\xe7\xe4\x77\xf0\x84\x04\xe1\xf4\x3f\x32\x0f\x5c\x1f\x48\xb8\x7f\xee\xc4\x73\x29\x5e\x73\x82\x55\xb1\xec\x6f\x8f\x9a\x51\x06\xbb\x5a\x1f\xab\xbe\x7e\xa7\x43\x98\xd7\x98\x9d\x2e\x5b\x1b\xc7\x20\xcb\x20\x54\xcc\xbb\xcc\x88\x30\x66\x70\xed\x53\xd4\xc3\x32\x42\x6f\xae\x68\xd4\x03\x85\x78\x82\x84\x4e\xe1\xfa\xfb\x8f\x7f\x10\xe6\x8b\xb7\xbe\x99\xbd\xe6\x39\xc1\x70\xdf\x69\xb6\x43\x22\x0f\x08\xba\x9a\xa7\xea\x1a\xe5\xde\x13\x3e\xd4\x9e\x60\x35\x8e\xaf\x26\xf0\x27\x4d\x48\x6c\xd0\x7e\xc1\x20\x64\x47\x8e\xc2\x05\x9e\x6c\x42\xf3\x64\xc2\x0a\x05\x23\x7f\xc2\xd0\x9a\x17\xd2\x46\xf1\xd7\x08\xa2\x69\x6c\xe1\x3f\x3b\xfa\x08\x2a\x67\x9a\x82\x0a\x1f\x3f\x24\x3c\x90\x59\xb1\x37\x48\xf5\x28\x41\xa9\xd3\xc6\xba\x67\x97\x36\x83\x0d\x4f\x4b\xd3\x2a\xbe\x6e\x20\x14\x6b\xc7\x1e\xa9\xb9\x14\xcc\x60\x38\xc2\x48\xac\x53\xd9\x9b\xb0\x79\xc9\x8f\xe5\x97\x8f\x14\x11\x52\x24\xbc\x74\xfe\x63\xe2\x0e\xaf\xbb\xdc\xf5\xa3\x86\xd0\xbb\xc2\x93\x4d\x2d\xf1\x0e\xc1\x3c\x41\x43\x21\x7b\xdc\x9f\xc1\xb3\x65\x41\xc7\xe6\xb7\xcc\x21\x64\x34\x75\x1f\x57\x9d\x89\x66\x2f\x11\x88\x3b\x7b\x54\x9e\x30\x5d\x74\xf6\xcc\x82\x96\xcf\x0c\x64\x56\x2e\x2f\xbd\x66\x5f\x40\xe8\x29\x61\x04\xae\x9b\xd7\x12\xee\x47\xba\x3d\xe1\x4f\x1f\x92\xc2\xd6\x5b\xe9\x5c\x66\x33\xe6\x2c\xef\x8b\xf1\x6e\x65\x71\x42\xfc\xe1\x1b\x4b\x5d\xe7\xbd\x27\x48\x2f\x58\x75\x9e\xef\x4a\x0f\x61\x28\x7c\x95\x12\x9b\x58\x1e\x83\xcb\x5c\x7c\x4d\x97\xfb\xc7\x18\x04\x59\x19\x6c\xe0\xb8\x7f\x9c\xd0\x30\x7c\x38\xe6\xe0\xec\x9d\x04\x93\xf2\x3d\x25\xe9\x0e\x61\x0c\x36\x54\xe5\x1d\x11\xbd\x9e\x4a\x70\x49\x92\x3b\x78\xdb\xdd\x8c\xf0\xfa\x7c\x72\xf5\x52\xc9\x6f\x0c\xd4\x17\x87\x7b\x5a\x98\xc5\x30\x08\xf2\xb8\x7a\x42\x78\xf2\x04\x41\xdc\x8d\x4b\x7c\xae\xa9\x3d\x83\xb3\x07\xe6\xf4\x6e\x8e\x75\x24\xbc\xb4\xe3\x35\x5a\xb6\x56\x9d\xe0\x5e\x79\x6e\x43\x40\xf5\x2e\x82\x75\x9c\xfe\x16\xd7\x8e\x78\x06\xc6\x89\xeb\xde\x28\xb6\x9b\x12\x26\x16\x7a\x94\xcd\x7a\x15\x4e\xa8\x0e\x32\xf6\x13\xd8\xac\x44\x88\x59\x71\x8d\xad\xa9\xf8\x29\xe1\xd7\xf9\xb2\x3d\x77\x4f\xab\x10\x1c\xe6\x5d\xe1\x7c\xd2\x5a\x4d\xc8\x13\x14\x3c\x18\xf1\x54\x86\x60\x57\xf8\x40\xb5\xdf\xfc\x29\xe1\x5c\xb7\x34\x7f\x4a\x8d\x07\x41\x56\x2c\x2a\x27\x24\xf0\x29\xc1\x68\xc3\xd0\xeb\xd6\xac\x08\xc2\xdf\x6d\x3d\xaa\xd3\x0d\xb5\x84\x68\xf1\x15\xff\x4c\x8c\x9f\x12\xce\xfe\xe4\x70\x90\x7d\xd3\x4f\x98\xb3\x8c\xef\x24\x6b\x52\x3d\x83\xf7\xda\x0d\x3c\x3c\x7d\x52\x84\xfb\xc5\x02\xdd\x29\x07\x72\x08\xf6\x73\xff\x7c\xe7\x54\xf7\x20\x44\xc7\xf8\x5e\x54\xde\x5f\x42\x50\x30\x61\xf1\x5b\x2c\x72\x9a\xa0\x35\xda\x1c\x75\x3f\xa8\x8f\xc0\xd3\x7c\xef\xda\xdc\xf6\x16\x42\xe2\xeb\x4a\x9f\xe0\x95\xf2\x84\x5f\xda\xe1\xdb\xf5\x4a\xae\x11\x7c\x20\x1b\xee\x30\xe7\x03\x61\xad\x03\xd7\xdc\x05\x53\xd5\x84\x7d\xad\x52\xef\x52\xaf\x8a\x10\x8e\x4b\x2c\xd5\x16\x62\x51\x25\x38\x29\x65\x45\xec\xe6\xb7\x67\x30\xdc\xe2\x9b\x3f\xbe\xce\x98\xa0\x6f\xa9\x70\x58\x6f\xfd\x33\x06\x09\xd5\x3f\x7e\x4b\xab\xae\x27\xbc\x37\x17\xf3\x7a\xc6\x44\x10\x0e\x38\x4e\x08\x8e\x73\x2d\x27\x70\xdc\xae\x6b\x3b\x22\x99\x4b\x10\xd6\x3c\x76\x3f\xf8\x63\x1e\xe1\xc3\xe1\xa8\x74\xe6\xa4\x21\xe1\x8b\x95\x4f\xfd\x7f\xcc\x9e\x35\x7b\xa2\xa6\x3a\xe7\x11\xda\xfc\x7b\x77\x95\x0e\x1e\x27\xc0\x82\xab\x2f\x7a\xfd\x25\x06\x03\x9f\xab\x9b\x65\xc2\x32\x09\x26\x97\x8f\x7d\xa8\xdf\xb5\x93\xd0\xf5\xc0\xe1\xf3\x06\x83\x16\x06\xcd\x6b\xe4\xcf\xd4\x16\x72\x11\x14\x3f\x2d\x7b\x28\xbd\x65\xae\x34\xee\x5b\xa7\x0a\x56\x5e\xdc\x4b\xc8\x56\xf6\xbe\x41\x3f\x02\x08\x1f\xd8\x4e\x75\x0c\xcd\xee\x25\x54\xad\xcc\x76\x9c\xfd\xf1\x3b\x61\x41\xcd\xa5\x13\x95\x1f\xbe\x13\x9a\xe5\xac\xeb\xde\xcf\x80\xd1\xe3\x96\xcb\x3f\x0a\x9f\x11\x2e\x5c\x17\x6a\xde\xba\x25\x98\x41\xb4\xdd\xeb\xcc\xea\xb4\x76\xc2\x4b\x01\xde\xa5\x4f\xeb\xdb\x09\xfd\x02\x87\xcd\x55\x9e\x54\x11\x6e\xee\xf8\x51\xfa\xb3\xae\x9d\x10\x68\x63\xce\x7e\x68\x2c\x93\x50\xc8\x7e\xf7\xe0\xf7\x9c\xcf\x84\x65\x92\xd5\xd7\xec\xe7\x15\x12\xf4\x06\x15\xaa\xeb\x0f\xc5\x10\x22\xb5\x14\xdf\x49\x96\x3c\x24\xdc\x3b\xb3\xa6\xf6\x50\xb7\x15\xc1\x94\x27\x7b\xbf\xc9\xe6\x1c\x06\xfd\xb7\x5f\xe4\x29\xeb\xb8\x11\x5a\xfb\x2f\x74\x9a\x7c\x08\x21\x98\x5e\xdc\xee\x1d\xae\xa6\x48\xb8\xd8\xcd\xc7\x7d\xdb\x63\x25\x61\x7b\x72\xd8\xc4\x6e\x92\x25\x24\x64\x8c\xbb\x9c\xb0\xcc\x21\x48\x7c\xbe\x77\x8c\xf5\xcb\x01\xc2\xb9\xd3\xaa\x5e\x37\x76\x97\x13\xce\x7d\x7e\x34\xcc\x7a\xb1\x85\xd0\x94\xe6\x73\xf9\x5e\xf0\x26\x42\xb4\xf1\x15\xdd\x5d\x67\x0e\x12\xde\x35\x56\xf3\xdd\x7b\x33\x44\x08\x54\x0e\x6d\x8e\xe9\x16\x23\x38\x6c\xb9\x2a\x71\xbf\xc4\x92\x70\xb9\xe3\x8b\x8c\xd4\xae\x4c\x06\x9d\xef\xf7\x4a\xdc\xd8\x95\x43\x98\xfb\xb7\x25\x21\xd4\xd6\x96\x10\xb3\x37\xd4\xdc\xfc\x8d\x15\x41\x7f\xdc\xae\x56\xda\xdc\x83\xb0\x65\xb4\xc3\xcc\x9e\xb3\x8d\x70\x5e\xc0\x65\xf3\xf8\x97\x56\xc2\xb8\x6a\x61\x9d\xe8\x73\x03\x82\xf9\x44\xc9\x92\x69\xe2\x27\x3c\xfc\x62\xa6\xe3\xa2\x97\x4d\x68\xdf\xdc\x72\x71\x52\xd5\x83\x70\xf2\xc4\x7c\xe1\xdf\x4e\xda\x84\xc3\xb9\x41\x2e\x67\x36\x45\x31\x68\x50\x6b\x9a\x15\xdd\x29\x43\x10\xbb\x5f\xe9\xf0\xc3\x22\x20\x0d\xf3\x85\x07\x9b\xe5\xb2\xce\x11\xd2\x2e\xa9\x1c\x16\x47\x33\x83\x6b\xaf\x6c\x6f\x3a\x96\xe7\x11\x3a\xa7\xcb\xfb\x1f\x68\xce\x25\x18\x2c\x38\xbc\x40\xf1\x49\x19\xe1\xe8\xd6\x2a\x5f\xb3\xbc\x71\x82\x55\xb3\xde\xe0\x2b\xbb\x16\x42\xe5\x3f\x41\xce\xf9\x9a\x0c\x41\xaf\xa9\xec\xda\x3e\xd6\x32\x82\xd5\x81\x45\x9a\x23\xd7\xeb\x08\x6b\x9b\xef\x18\xb2\xde\x2c\x61\xa0\x7d\x24\x98\x45\x6c\x26\xb2\xef\x48\xdd\xbe\x67\x06\x98\xfc\xbf\xde\xde\x41\xf5\x04\xbf\x01\x5f\xc1\x46\xcd\x1e\x29\x64\xf0\xee\xec\x91\xda\x1f\x4d\x10\xed\x7b\xc6\x9e\x5f\xd9\x4b\x20\xab\xc5\x75\x5f\x99\x29\xc2\xfa\x2f\x37\xa7\x78\x9f\x0d\x13\xde\x25\x7f\x2a\x8c\x39\x38\x46\x68\xe0\xd5\x2d\x6f\xdf\xd8\x47\xb8\xd7\x12\x58\x93\x1c\xdd\x49\xa8\xcc\x6b\x48\xab\x18\xbb\x4c\x70\xdd\xc8\xfa\xcc\x35\xda\x88\x41\xbe\xe8\x48\x9b\xdd\xcf\x5a\x82\xe0\x97\xf5\x7e\xc9\xfe\xb5\x04\x8c\x8e\xc8\x7f\x3b\x71\x9d\xf0\x68\xf0\xf1\x64\xd1\x4c\x39\xf3\xdc\xb7\xb3\x45\x29\x01\x04\xde\xa0\x29\xbd\xea\xc3\xa2\x84\x23\x1b\x16\xcb\xb1\x0f\xf9\x13\x24\xfe\x3e\x5b\x94\xbd\xea\x25\xa1\xe3\xdd\x48\xa4\x26\xdf\x53\xc2\xfb\x45\xa2\xe3\x0a\xe3\x2e\x0c\x4e\x8e\x3d\x9d\x7e\x64\xd8\xc0\xc0\xff\xf5\xfa\x70\x1a\x5e\x49\x10\x51\x9b\x13\xf7\xe5\x43\x21\x83\x03\xbc\xdb\x99\xe1\xa4\x4e\x42\xfe\xa5\x4b\xa3\x0b\xcf\x77\x10\x74\x3f\x1b\xf8\x6b\x3b\xd7\x11\x82\x55\x6b\xd6\x6e\x49\xcb\xfc\x2f\xc8\x3b\xbb\x7f\x8e\xa0\x59\x0d\x83\xbc\x3d\x66\x2f\x27\x83\x9a\x19\x34\x26\x34\xf1\x3d\x2d\x49\x20\x58\xfc\xba\xbe\x44\x61\x15\x97\x34\xce\x79\x6c\x48\x37\x92\x19\x23\xac\x78\x23\xea\x2e\xf3\xb2\x9f\xc1\x48\xd0\xb1\x34\x3f\xd7\x41\x02\x8b\x54\x88\xce\xac\x9c\x5e\xc2\xde\xbb\xf3\xee\x2f\x9a\x60\x97\xc6\xb1\xf7\xad\x97\x2e\xb0\x55\x10\x2e\x2e\x93\x0e\xde\x3a\xf3\x12\x7f\xaf\x56\x3d\xdb\xb8\x63\x98\xc1\x43\x33\xfd\x07\x69\x1f\xd8\xa4\x21\xf5\xa3\xc5\xea\x9d\x63\x3c\xc1\xe6\xf5\xf4\xdf\x0b\x16\xf1\x84\xc8\x40\xe5\x30\x0b\xbe\x04\x06\x16\x2b\x33\x34\xc7\x83\x93\x18\xdc\xd9\x76\xcc\x24\xbe\xa4\x86\x41\x71\xbc\x66\xc7\x1b\x83\x49\x06\x6d\x9a\xdd\x5e\x17\x25\x17\x4a\x43\x23\x9a\xfb\x72\x5d\xc8\x5b\xc2\x3d\xff\xf1\x89\xbf\x7b\x59\xa4\xa1\xe1\xa7\x7d\xc0\x46\xa6\x8e\xc0\x12\xbe\x33\x57\xf7\x41\x35\xc1\xcb\x8e\x53\xc5\x77\xed\x42\x69\xcc\x3f\x9d\xc1\x25\x68\x14\x4f\x50\x8f\x5c\x11\xca\x7b\x37\x9e\x26\x07\x88\xd5\x36\x2a\x8a\x70\x3a\x48\xa2\xc0\x58\xd3\x84\x10\x16\xb4\xc7\xba\x48\xe0\x16\xe1\x6d\xc0\x02\x0f\xb6\x56\x07\x42\xc5\x3d\x33\x7f\x8e\xeb\x56\x04\x7b\x1b\xfb\x03\x02\x95\x99\x84\x97\x1b\xef\x4d\x9e\x36\xd7\x27\xb0\x0c\x3c\xb0\x90\xb8\x1c\xf6\x5f\xc6\x24\x7d\x50\xf5\x59\xed\x04\x61\x57\xc6\xdc\x88\xd7\xe9\x3c\x84\x2e\x76\x1d\x45\xf5\xdb\xa1\x84\x5c\xa7\xc3\xc7\xeb\x92\x87\x09\x29\xd6\xea\xdf\xa7\x7e\x0f\x13\xae\x7f\xb0\x10\x1b\x9f\x81\xe8\xfd\x13\xc7\x8c\xa5\xca\x08\xa3\x19\xec\xe7\x7c\x27\x73\x08\x57\xce\x0d\xf8\xcc\x3a\xc8\x10\x6e\xce\xbe\x60\x74\x89\xc3\x8a\xd0\x12\x7d\xad\x62\x0f\x4b\x1b\xa1\x68\xc1\x47\x39\x96\xba\x3c\xc2\xf1\x35\x2b\x74\xa3\x3f\xb7\x12\xd8\x6f\xf3\x59\xc6\xcc\x80\x7f\x81\xc9\x2b\xef\x85\xfe\x84\xad\x8e\x0b\x7b\x2f\x88\x98\x12\x4e\x72\xae\x7c\x3e\x36\x51\x4a\x58\xed\x7a\xf3\x93\xf5\xf8\x0f\x06\x7d\xf9\x27\xeb\xbb\x66\xcc\x87\x31\xb5\x15\x3c\xe3\x51\x84\x5e\x3b\x49\xdb\xac\x7f\xd5\x0c\xfe\x9a\x38\xdf\xeb\x49\xed\x96\x42\xd8\xeb\xfc\x75\x15\x9d\x2c\x84\x09\x5b\x9f\xb9\x56\x9f\xad\x99\xff\x35\x4e\xfc\x0a\x3f\x7d\x3c\x83\x19\xe4\x0f\xea\x69\xdc\x5d\x34\x2a\x05\xcb\x85\x2b\xb8\x0e\x14\x7f\x24\xbc\x0d\xe2\xd4\x6b\x7d\x77\x86\x20\x61\xc3\xdd\xd3\xac\xf5\x4b\x0a\x0a\xdb\x84\xdd\x25\x9c\x39\x08\xd1\x9b\xec\x73\xae\x69\x06\x10\x86\x34\xde\x8f\x0e\x7e\x8f\x67\xc0\xea\x7f\x76\xd7\x40\xab\x0e\x41\xcc\x24\x33\x60\xab\xd3\x00\x61\xa8\xc4\xe3\xc9\xe0\x8c\x61\x2f\x9a\x6e\xea\x9a\x3d\x9f\x26\x9d\x36\x9e\x7f\xbf\x8c\x21\x0c\x0e\xcd\x0b\xde\x12\x34\x42\x68\x8c\x77\x12\x49\x51\xff\x42\x08\xab\x0b\x50\x5c\xee\xf1\x90\x70\xaa\x2b\x5c\x57\x51\xb0\x8d\x20\xcf\xad\x11\x5f\xd0\xda\x43\x78\x14\x57\x6d\xbc\xba\x2b\x8a\x70\xd8\xa9\x7b\xdb\x98\x8c\x27\xe1\xf1\xd3\xe2\x75\xa1\x9e\x4d\x04\xff\xb2\xbd\xdf\x22\x4b\x1c\x19\xdc\x5a\x57\x9e\xdc\xd1\x62\x44\x98\x98\x3c\xf5\xf1\xd5\x95\x99\x43\x5d\xce\xee\xe6\x5a\x3e\x25\x42\xea\xec\x43\xde\x15\xf2\x1e\x84\xf8\x2f\xfc\x51\x29\xda\x35\x84\x2f\xfe\xb6\x87\x59\x24\x95\x09\x9f\x16\x8d\x59\x2a\x09\x3e\x62\xe0\x76\x6f\xdd\x8b\xdf\xf3\x5e\x13\xee\xff\xe9\xc8\x7a\xf0\xd5\x8e\x70\x97\xa3\x21\xbf\xef\x34\x0f\xa1\x74\xc7\x83\xa9\x91\x37\x0e\x0c\xb4\xca\x03\x58\x43\x4f\x25\x13\xce\x8a\xde\xe8\x59\x73\xa6\x90\x10\xac\xfe\x62\x85\x94\x62\x12\xc1\x52\xc3\x85\x39\x32\x3b\x95\xf0\xae\xa6\xeb\x85\x93\x4a\x3a\x81\xe6\x87\x2c\x89\x7b\x20\x43\xf0\x5f\x37\x79\xb0\xfb\x59\xab\x14\xac\xbc\x47\x2d\xfd\x37\xc4\x11\xf8\x7b\xcd\x07\xfd\x66\xc0\x67\xef\xbc\xf7\x01\x33\x20\xf7\xb7\x80\x63\x4e\x73\x91\x14\xbe\x2f\x1a\x28\x96\xd9\x2d\x49\xd0\x34\xd6\x50\x14\x4f\x7c\x46\x68\xdc\xfc\xc9\xed\xfc\x99\x5c\xc2\xbf\x41\xa1\x98\xcd\x43\xa2\x84\xaf\xca\x47\x95\x5f\x2f\xe1\x27\x94\x45\x9a\xd9\xaf\xa9\xdd\x4d\x28\xfb\x5d\xea\x3b\xed\xde\xc1\xe0\x51\xdf\x4a\x09\x9f\x48\x49\x82\x50\x6e\xdc\x4e\xd5\xe8\x1a\x42\xa0\xd5\xda\xbb\xe7\x66\x80\x6d\xf3\xfc\x0d\x67\x66\xe0\x88\x80\xda\xb3\xc2\x63\xbe\x84\xd6\x8b\x17\xe5\xb5\x05\xb2\x09\x1a\x5d\x4a\x27\x25\x38\x77\xfd\x17\x28\x29\x8b\x36\x17\xa4\x77\x32\x30\xfd\x67\x9c\xb3\x60\xc6\xfc\x0f\xbc\xeb\x58\xb6\x71\x6c\x3c\x26\x0d\x85\x2b\xf8\xc2\x75\xcd\x1a\x08\xcf\x16\xf1\x9b\x68\xcf\xc0\xcf\x50\xd6\xb3\x7b\x7f\x96\xa7\xe1\x7d\xdb\xd1\x5d\x1a\x33\x86\x7d\xef\xab\xe2\xbf\x61\x5b\x08\x02\x93\xdc\x41\x6f\x8e\xed\x24\x18\xdd\x0b\xe1\xdd\x39\x75\x8a\x70\xf5\xed\xbd\x9a\xef\x3f\x2d\x09\xe2\x7a\x57\x6a\x5e\xcd\x44\xff\x03\x59\x6e\xbb\x16\xa3\xbb\x50\x0a\x35\x16\x55\x83\x5e\x55\x21\x04\x95\xab\x86\x75\x35\x0d\x5e\x04\xb6\xdc\xf8\x71\xbe\x48\x5d\x42\xce\xd3\x47\x82\x37\xbc\x25\x09\xa2\xeb\xb6\xbc\x98\x93\x27\xf4\x7f\x05\xb5\x7f\x13\x8a\x4f\x7f\xc6\xa4\xc1\x5a\x21\xf4\x82\xf2\x70\x41\x1a\xfa\x3d\x5b\xf9\x98\x83\xf3\xe9\xff\x09\x0a\xb3\x27\xbd\xae\x3f\x15\xfe\x7f\x83\xe8\xca\x36\xa7\x48\xae\x60\x06\x9d\x87\x93\xd4\xff\x03\x1a\xb7\xcb\x05\x57\xe9\x56\x48\xe1\x8b\xc3\xe2\x05\x25\xd2\x2e\x04\x1d\x1d\x86\xee\xd8\xb6\x12\x4a\x02\x8b\x5e\x04\xe4\xfa\x13\x56\x49\xe9\x34\xd6\xf4\xe6\x11\x9c\x35\x8e\x69\xbd\x38\x71\x84\x70\x5b\x68\xfa\x48\xe4\x9b\x0a\xc2\xe8\xdb\xee\xaa\x2b\x03\x73\x08\x7f\x58\x76\x1a\xf7\xa5\x2f\x27\x50\xf0\x83\x63\xf2\x2d\x2f\x09\x13\xaf\x0a\x85\xe5\xe2\xac\x19\xdc\xfd\xd2\x51\x54\x2a\xe9\x4e\x60\x19\x1f\x51\xbc\x9a\xab\x4c\x48\x5e\x30\x70\x33\xb4\xb0\x8c\xb0\xd6\x69\x7d\x88\xff\xb7\x6e\x42\x55\x94\xc9\xf9\x15\xdd\x87\x08\xdd\xe7\x3d\x2e\xa7\xf1\x96\x13\xb6\xfc\x64\x4c\x92\xb5\x05\x08\xa2\x82\xc6\x8f\x04\xaa\xde\x33\xc8\x9f\x3d\x32\x64\xb9\xba\x85\xe0\x54\x2b\x78\x80\xb3\xd2\x96\xf0\xa0\x42\xc3\x53\x2c\x28\x87\x30\xa7\x5b\x26\x6f\xa3\x52\x2b\x61\xd2\x92\xbd\x74\xd5\x4a\x01\x02\xdb\xf3\xad\x72\x9c\xef\xcb\x09\x81\x9f\x63\xcf\x7b\xad\x7a\x4b\xf8\xfe\x63\xe8\x08\xcb\xf8\x37\xc2\xf2\x24\x23\x81\xf8\x86\x17\x04\x39\xb5\x33\xf7\x66\xaf\xae\x26\x9c\x95\x5e\xd6\x11\xc3\x92\x4f\x90\x3e\x16\x3e\xdc\xf8\x5a\x95\x20\x4c\x3b\xcd\xbd\x7d\x3a\x19\x5c\x08\x55\xdf\xf1\xfd\x5b\x3f\x03\xee\x27\x82\x6f\x1b\xae\x99\x13\x2c\x57\x05\x5a\x6c\x0d\x29\x20\xc0\x43\xe1\xb4\xfd\x82\x12\x06\x77\xad\x7a\xbf\x87\x4d\x1d\x26\xdc\x1d\x99\x28\xce\x9a\xa5\x47\x08\xfb\xd3\x67\xb3\x9b\xeb\x28\x81\x94\x34\x8b\xc3\x3d\x8e\x10\xb8\x39\x92\xde\xec\xdf\x6c\x41\xc8\xf5\x54\xf3\x9d\xfa\xf5\x83\x81\x53\xf4\xa7\xe5\xa1\x81\xf1\x0c\x42\x56\x0d\x45\xad\x9e\xb9\xc5\x4d\x39\x8c\x1d\xe6\x72\x33\x25\x18\xbc\x5d\x16\xad\x7c\x62\x98\x01\xfd\x15\x78\xf1\x67\xbf\x0b\x81\xe5\xce\x96\x37\x7b\x4f\xd6\x12\x6e\xbd\x5b\x51\x79\xf6\xe1\x31\xc2\xee\xa7\xc7\x42\x17\xef\xaa\x65\x60\x97\x92\xfc\xe8\x73\x8b\x18\x03\x2b\xb1\xed\xbf\xb9\x23\x3f\x33\xd8\xa1\xc6\xec\x0b\x3c\x14\x41\xc8\xc8\xbc\xf0\xd1\xdc\xab\x9b\x10\xb7\x3e\x6c\xd3\xdf\xbd\x7d\x84\x7d\xa5\x97\xb8\x6d\x4d\xc6\x08\xbe\x3f\xee\x0c\x3b\x15\xa8\x11\xc4\x5c\x1b\x56\xc9\x2d\x8a\x23\xfc\xa8\x5c\xf3\xc4\xea\x88\x34\xc1\xe4\x8f\xaf\xfa\xbe\x66\x69\xc2\xfd\x67\x3b\x7e\x7a\x9f\xad\x20\x08\xb4\x38\xf7\x5a\xce\x44\xdf\x4b\x33\x95\x94\x4b\xbc\x09\x32\xb5\x05\x27\x56\x55\xf5\x49\xa1\x3c\xe8\xd3\xcd\x36\xd3\x4e\x06\xed\xfb\xcd\x4c\x15\x7c\x9d\x09\xb6\x5a\xe2\xfb\xf9\x6d\x0f\x11\x22\xea\x06\xbc\x72\x4c\xbe\x30\xf8\x9b\xeb\xed\x10\x39\xdf\x9c\xf0\xc5\x5d\x2a\xe7\xc6\xfd\xfa\x99\xf7\xbe\xbd\x2b\x6c\xc6\x98\xa7\xe7\x87\xa4\x89\x9c\x23\x2c\xbf\xd2\x68\x52\x99\xac\x4d\xe0\xd4\xc8\x3e\x64\x70\x62\x0d\xe1\x5f\xca\xf6\xac\xdb\x1f\x23\x09\x72\x8e\xdd\x91\x2c\x46\xba\x04\x9b\xed\xfe\xfa\x2d\xd2\x25\x84\x85\x8f\xef\x1d\x3a\xfe\x20\x83\xc0\xa9\x54\xf4\xe4\x52\xb3\x0a\x41\xf1\xec\x8b\xc0\xbb\x6c\xf2\x04\xae\xba\xe3\x63\xe7\x16\xfe\x96\x82\xfc\xda\x95\xbe\xd1\x5a\xdf\x09\xb1\xab\x4f\xdb\x6f\x7b\xf9\x87\x70\xd2\xf1\x92\x05\xfb\x8a\x4c\x42\xba\x98\x51\x6a\x2d\xaa\x08\x56\x9d\x1f\x8a\xfb\x13\xf2\x09\x67\xa6\x59\x9d\x13\x0f\x94\x10\xb8\x33\xc3\xac\x1a\xde\x96\x12\xee\x58\x4e\xce\x9b\xb7\x37\x97\xa0\x26\x35\xeb\xd0\xd0\xeb\x52\x42\xa8\xc5\x98\xd7\x15\x95\x06\x06\x9c\x3a\xee\x8a\xdd\xd9\x0d\x84\xf0\x49\x96\x23\x76\xb9\x85\x84\x57\x66\xd6\x5e\x4e\x76\xf5\x84\xa4\xf2\x64\xee\xaf\xa2\x15\x84\x25\x4b\x44\x9e\x66\x2c\x76\x20\x54\x15\x15\x1c\x8e\xa2\x0a\x82\x86\x79\xd2\x82\x89\x83\xef\x09\xd3\x03\x1f\x13\xdb\x03\xca\x09\xcd\xfa\x0a\x96\x0b\x76\x0f\x12\xb6\xaf\x63\xf9\x39\xbd\xa5\x89\x20\xc7\x57\x95\x51\xf0\x90\x5f\x1a\x99\xec\xe5\x4d\xb9\x5e\x9f\x08\xba\xba\x0a\xb7\x6a\x7b\x0e\x13\xe4\xd4\x67\x35\xf6\x8b\x26\x11\xfa\x5c\x36\xa9\x35\xe8\xdf\x22\x14\xe9\x36\x98\xcd\x73\xbc\x47\x48\x46\x97\xcd\xdd\x5b\xaf\x19\x08\xeb\x3d\x59\xdd\xb4\x40\x99\x30\x5b\x65\x5e\x46\x6e\xc3\x61\x82\x5e\xce\xd6\x79\xb2\x13\x61\x04\x15\xbe\x5b\x8a\x3c\x8f\x77\x11\xf4\xf3\xe4\x3f\xfc\xfd\xd9\x42\xd8\x21\xce\xa7\x2f\x40\x92\x84\xd5\xc7\xbf\x28\x56\xf9\xe7\x11\x78\x3b\xd6\x0c\x6d\x39\xfc\x98\x60\xb2\x26\x51\xb0\xa7\x20\x9a\xb0\xfa\x86\x51\xd2\xae\x95\x3f\x08\xab\xf6\x2d\x3d\x79\xd3\xb7\x83\xb0\xed\xc7\x9d\x4f\x2f\x6d\x9e\x13\xa2\x94\x67\xd3\x74\x9a\x1e\x61\x6c\xb5\xb2\xdc\x93\x0d\x37\x08\x93\x1d\x2a\x9f\x34\x9d\x3f\x13\x56\xd6\xd7\x25\xc5\x9e\x1c\x95\x82\xd2\xc1\xf9\x0a\x05\xe6\xe2\x84\x0d\x1e\x3c\xd1\x03\x35\xb7\x08\x46\x62\x9c\xdf\x26\x4a\xe2\x09\x23\xa1\xc9\x4b\x57\xf2\x94\xa6\xe1\x90\x61\x38\x9f\xe1\x96\x50\x42\x3b\x6b\xcf\x02\x76\x9e\xaf\x0c\xda\xa6\xd6\xda\x2c\xf3\xcd\x64\xb0\xa7\x21\x4d\x63\x59\x73\x2f\xc1\x25\x22\x2a\x4a\x77\xa6\x23\x9d\x96\x7f\xfd\x24\x05\x11\x86\xc3\x02\xdd\x1d\xcf\x4c\x4b\xe1\xc2\x3c\x7a\xe4\xbc\xe3\x22\x81\xfd\x94\x9d\x43\xee\xb1\x3b\x04\xa1\x15\xce\x74\x7c\x93\x17\xc1\xe0\x5b\xef\x58\x4d\x6d\x20\x21\xf6\xe5\x42\xbd\x7a\x23\x73\xc2\x95\x69\xde\x43\xdf\x77\x49\x11\x0a\x24\xff\x3a\x94\xde\xd6\x21\x08\xf4\x3d\xd1\xb1\x2d\x3b\x40\xf8\x74\x67\x4c\x6b\x68\x7f\x45\x1a\xc6\xde\x4c\xfc\x7d\xbb\x25\x39\x0d\x3b\x0f\x9f\xf8\x7d\x44\xf7\x29\xe1\xee\x79\xc3\xbb\xc5\x16\x6a\xff\x57\x38\xca\x77\x46\x81\xd3\xd0\x9c\xd0\x21\x1c\xe7\x50\xb4\xdc\x97\x81\xa3\xc5\xd0\xd0\x54\x8e\x00\x41\xea\xe3\x6f\xf5\xd9\x47\xeb\x18\xbc\xd3\x95\xb7\x29\x50\xbc\x46\x10\xf3\xe2\xad\x16\xd5\x56\x26\xf0\xae\xd3\x38\x3f\xbd\xdb\x9e\x50\x12\x32\x92\xb8\xa3\xaf\x81\xb0\x93\xe5\xe3\x76\x8d\x85\x2d\x04\x39\x4d\xc9\x51\xc1\x87\x4d\x33\x37\x90\xe3\x83\x49\x07\xda\x09\xb7\x84\xef\xba\x8f\xec\x1a\x21\x7c\xb7\x8c\xd4\xca\x3c\xd6\x4b\x28\x94\xf0\xcb\xbe\x5a\xce\x22\x8d\x20\xa5\xd8\x15\xfd\xa7\xdb\x08\xc1\xe1\xbc\x92\xb0\x89\x27\xb4\xca\xf3\x5f\x8a\xed\xfb\x41\x50\x70\x8a\x9e\x53\xa7\x30\x48\x58\xf2\x79\xb0\xa5\xc4\xa5\x96\xc1\xa3\x04\xb5\x31\xf2\x7b\x4e\x28\x6d\xbc\x13\x2a\x5e\xa3\xcb\xc0\x23\xb6\xaf\x48\x6f\x57\x22\x83\x4c\xbb\x55\x96\xdf\x4e\x64\x10\x36\x09\x1f\x92\x1d\x38\x68\x40\xd8\xbe\xda\x55\xbb\x52\xac\x97\xf0\xfd\xf7\x53\xed\x59\xd2\x5f\x08\x3d\xfc\x35\x63\x73\x8e\x2c\x27\x28\xed\x78\xf2\xf8\x9b\x88\x2c\x61\xaf\x8d\xf3\x4f\x6e\x9c\x26\x64\x1d\xf4\xbf\x9a\x7b\xb5\x90\xc1\x9f\xc4\xed\x8b\x1b\xb6\xa7\x10\x22\xcd\x21\xe4\x16\x92\x47\x18\x56\xaa\x8c\x72\xe9\x2e\x27\xd8\xc0\xe0\xa3\x8a\x5a\x3b\xc1\xe3\xf5\x00\x4f\x88\xcd\x08\xe1\x90\x8a\xba\xf4\xcb\x57\xf1\x0c\xc6\x67\xc5\x1d\xb4\x3b\x11\x4e\x28\xbc\x7d\x3b\xdb\x7d\x66\xd5\x22\xb7\x8f\xae\x5b\x3c\x62\x19\xa8\x09\xbd\x48\x0c\xcf\xb3\x23\x08\xd7\x94\x2c\x7e\x71\x2a\x83\x90\xe2\xb7\xda\x89\x73\xcc\x85\x90\x15\xbf\xf3\x99\x5d\x6a\x1e\x4d\xa6\x6c\x7b\xf9\x32\xd9\x8e\xf0\x68\xa7\xf2\xe6\x03\xf3\x23\x08\xdf\x12\xe5\x2d\xd6\x96\x69\x12\x44\xf7\x8d\xee\xfe\x2a\xc3\x47\xc8\xce\xb7\x3e\x73\x6d\x44\x8d\xa0\x7a\xe6\xd4\xd3\x41\xad\x70\xc2\x6c\xc1\x22\x3b\x63\x5f\x09\xc2\xda\xc3\x7b\x9e\x1b\xf9\x2c\x23\xec\x16\x95\xfd\x6a\xff\x9f\x7f\xd1\xe7\x24\x14\x1e\xd9\x68\xcb\xa0\xa8\xc7\xec\xb4\x6a\xb6\x07\x03\x17\xa7\xa2\x9f\x3b\xda\x22\x18\xfc\x38\xf8\x7e\xfd\xaa\xab\xd1\x84\x89\x83\x01\x42\xdf\x59\xf3\x18\xec\xbe\xd0\xe4\xf8\xf8\x60\x34\x61\xd9\xc5\x6d\x4a\x51\x2f\x12\x18\xdc\x0d\xbc\xba\x57\x42\x56\x95\x50\x23\x3a\x3f\x42\x47\xa1\x98\x70\xc9\xc3\x24\xc6\xe8\x51\x13\x21\x21\xd0\xc5\xec\x58\x4c\x07\xc1\x58\x2e\xbf\x6a\x91\x78\x0b\xa1\x39\xf5\x8a\x9c\xbd\x59\x0e\xe1\xf1\x80\xf3\xd5\xcf\x97\x43\x08\x05\xb5\x3a\x3f\x17\xf2\x65\x32\xd8\x5d\xe7\xcc\x75\x37\x2e\x93\xc1\xb0\xcc\xe7\x43\x4d\xde\xe5\x0c\xae\xde\x49\x38\x90\x3e\xe7\x28\xa1\x57\x55\x56\xf6\x1d\xff\x2d\x42\x72\xd0\xc5\x87\xde\x5d\x03\x84\x79\xd1\x21\x05\xf7\xe6\xbf\x21\x24\xa4\x1f\x39\x79\x4b\x30\x8f\x20\x14\xce\x91\xb9\xeb\xbe\x17\x41\x64\xb8\x64\x51\xec\x37\x25\x82\xfb\x4d\xad\xd6\xb8\xa5\x29\x0c\x3e\x1d\x9e\xc5\xcf\x5f\x1a\x45\x28\x5d\x1d\x25\x79\xf0\x88\x19\xa1\xe5\x81\xe6\xee\x83\x92\x9e\x84\xfb\x0a\x73\x3f\xbc\xb1\x4e\x21\x74\xd9\x56\xde\xf9\xd4\xa1\x4e\xb8\xfb\x5e\xf9\xba\xc6\xbc\x24\x82\xe0\x33\x6f\x1e\x45\x63\x33\xc2\x87\x45\x47\x1a\xed\x2b\xcb\x08\xbc\xe6\xa3\xeb\xc7\x66\x0e\xea\x4f\xf7\x34\x03\x5e\xb3\x64\x12\xf6\xf0\xfe\xdd\xb9\xf4\xc0\x22\xc2\x99\xdb\x43\x0e\xd1\xd2\x81\x84\xaf\xef\xcf\xe8\x38\xbd\xb7\x24\xdc\x0f\x39\x70\xe6\x90\x41\x27\xe1\xc7\x1a\x91\x39\x3e\xea\x4f\x08\x32\x4f\x13\x97\x7c\x7c\x7f\x88\x20\x36\x6c\x72\x54\x93\x65\x37\x61\x3c\xfe\x5a\x94\x4f\xe4\x5d\x42\xc3\x6a\x4b\xd5\x5b\x77\xbb\x08\xda\xd1\xd7\x3f\x95\xad\xf7\x25\x24\x49\x99\xae\x3e\x3f\xd3\xc9\x31\xd6\x8c\xb6\xb8\xf5\x4f\x0a\xe6\x93\x53\xbf\x8d\x1b\xeb\x08\xdb\x7f\x96\x5b\x56\x28\xde\x66\xa0\x31\xa5\xe5\xa5\x78\xb1\x8a\xb0\x20\xe2\x21\xfb\xed\x99\x4e\x11\x77\x84\xd2\x9c\xcb\xfe\x84\x35\xce\xbf\x96\x1e\x88\xca\x97\xc2\x9d\xd1\xfc\x76\xe9\xcc\x07\x84\x7d\xeb\x52\x58\x95\x04\xd6\x11\x1e\xdb\xc6\xb3\x19\xdd\x4c\x62\x70\x71\x4b\xb5\x74\x7b\xd7\x15\x82\xdb\x8a\xe4\xc6\x04\x49\x7f\x02\xeb\x8e\x2f\x3c\x32\x5a\xfe\x04\xad\x6a\x91\xbe\xf2\x94\x87\x84\x94\xea\xa0\x6e\x25\xdb\x7e\x82\xd2\x93\xf2\xa8\x2b\x5b\xeb\x18\x3c\xff\x3d\xff\xc8\xdf\xb9\xb7\x09\xa7\x24\xc4\xb6\x9b\x7c\xd1\x25\x84\xfb\xca\xbf\x92\x36\x30\x23\xd8\x4b\x17\xc5\xa6\xfa\x2d\x21\x68\x0d\xd1\x60\xf3\x01\x5f\x82\xba\xdb\x29\xd6\x33\x4d\x33\x0f\x93\xe9\x5b\xfb\xac\x32\x4f\x42\x43\x8a\xe9\xd6\xdc\x6f\x15\x84\x9c\xab\x07\xf9\xe3\x3f\xe5\x12\x74\x76\x1e\x30\xb8\xb2\xd9\x98\xe0\xb1\x6b\x3a\xef\xbb\xef\x7a\x42\xad\x84\xd0\x3a\xbd\x8d\xcf\x08\x79\x82\xcd\x3d\x6c\xaf\x5d\x08\x8f\xe3\x57\x6f\x79\x21\x98\x44\xf0\xd1\x4f\x69\x1b\xd6\x4c\x24\x58\x38\x28\xd5\xb5\xb5\xdb\x13\x64\xfb\x32\x4c\x5d\x37\xd6\x33\x10\x7a\x32\xf0\x59\x72\x66\x77\x7f\x74\x49\x7d\xff\x82\xc6\x00\xc2\x01\xce\x4f\x67\x44\x15\x02\x67\x36\x92\x8a\xc3\x2e\x57\x3b\x08\x1c\x62\x9e\xfb\x3e\xff\x7a\x46\xe0\xe2\x8f\x1a\xbc\x92\x59\x46\x28\xb3\x9f\xf2\x0a\xcc\xf5\x26\xc4\xc5\x70\xbe\x3f\x31\xf5\x94\x70\x7d\x73\x4c\x98\x85\xd4\x53\xc2\x3a\x87\x56\xf9\xf8\xe0\x2c\x06\x2d\x7d\xd7\x76\x73\x9d\xa8\x60\x90\xf1\x76\xe7\xfb\x71\xfd\x1e\xc2\x31\xc1\x10\xbd\x9c\x85\x8b\x09\x56\xf7\x85\x57\x7b\x7f\xd0\x25\x9c\x4c\xb3\xbf\xc0\x7c\xa9\x22\xf8\xbf\xde\xa3\xc7\x13\x71\x8a\xa0\xf0\x44\xc7\x93\xbb\x3d\x80\x70\xe9\x42\x50\x71\xdb\x97\x48\x06\x8f\x4b\x53\x7e\x15\x8f\x71\x12\x44\x0f\x9f\xaf\xc9\xed\xb6\x23\xb8\x8a\x18\x6e\xe0\xc9\x7c\x48\xf8\xbd\x78\x49\x68\x2d\x6b\x38\xc1\x7a\xf9\xa0\xd4\xd3\xe2\x28\x06\x27\xfa\xce\xc9\xf9\xf1\x5d\x25\x74\xa4\x9f\xb4\x8a\x66\x13\x26\xac\xbe\xb5\x2e\xf2\xc9\xd3\x99\x51\x54\xea\xae\xdb\x8d\xbf\x71\x84\xcc\xec\x92\x43\xaa\x3f\x6e\x13\x6c\xe6\x85\x2f\x59\x13\x9c\x48\xd0\x9e\xb8\x3b\x2f\x67\xdc\x88\xe0\xee\xa8\x35\xfd\xbe\xd2\x9e\xf0\xba\xa3\xad\x45\x71\x77\x21\xe1\xe8\xcb\xf1\xde\x79\xa1\xa9\x84\x21\xf6\x2f\xbf\x7f\xee\xea\x20\xa4\xbc\x76\xc9\xeb\xac\x94\x21\x4c\xb0\xff\x8d\x7f\x6d\x78\x83\x50\x23\xe4\x17\x28\x93\x17\xcc\xe0\x9e\xe5\x33\xaf\x1d\x1f\x3c\x09\xe2\x13\xb7\x86\xca\x73\x64\x08\x77\x36\xb6\xf4\xfd\xda\x22\x40\xd8\x6a\x75\x7f\x73\xe9\xe4\x0f\x29\xe8\xbc\xe7\x71\x1d\xdb\x98\xcd\xa0\xf5\xd0\xe6\xf5\xc7\x7e\xaa\x10\xfe\xfd\x4a\xdf\x9f\x7b\xdc\x8c\x70\xac\xb6\x97\x4f\xef\x69\x37\xe1\x1a\x9f\x84\xe3\xc6\xaf\x3d\x84\x5f\xdb\x37\xf2\x77\x9c\xd1\x20\x6c\x35\x17\x0d\xbe\x18\x1f\xc6\x20\x3b\x70\xf7\x9c\x33\x1a\x5e\x0c\x1c\x96\xfd\x7a\x7c\x69\xc5\x2a\x82\x5c\xda\x40\x7e\xe5\xd1\x12\x82\xb7\xf8\x57\x83\x5f\x16\xe6\x84\xe2\x33\x1f\xd4\xd8\xe2\x62\x18\xdc\xf1\x30\x95\x55\x13\x28\x21\xd8\x2f\xf5\x1b\xf3\x75\xcf\x21\xe8\x3d\x3a\xef\x6e\x7f\xd5\x92\x50\x7a\x8e\x75\xab\xce\xc2\xaf\x04\xd1\x23\x42\x13\xe6\xf3\x03\x08\x6e\x73\x8a\xf9\x9b\xd6\xb1\x11\x56\x35\xbd\x9c\x2b\x77\xac\x85\x81\x48\xb1\x89\xe1\xa9\x91\x12\x06\xf9\x27\x76\xae\xa9\xcb\x6e\x26\x24\xb9\xab\x1c\xb1\x31\xeb\x94\x42\x7b\xda\xdf\xcd\xaf\x0a\x86\x09\x8b\xb7\x1e\xd7\xeb\x4e\x5e\x4d\xb8\xdc\x96\x6e\xaa\x6d\xfa\x9c\xb0\xf5\xfe\xde\xb4\xbd\x71\xd5\x04\x56\x97\xbe\xf5\x5f\x5c\xb3\x09\x4d\x1a\xbb\xc2\x39\x76\x84\x11\x58\xc2\xce\x4d\xcd\x55\x33\x23\x3c\x0b\x15\x5e\x1e\xcb\x78\x10\x64\x57\xf7\x2e\x4b\xed\xb4\x25\x74\xcc\x97\x28\xb0\xfd\x10\xcc\x80\x3b\xf3\xab\x5a\xdb\x8a\x1b\x84\xdc\xe8\x13\x39\x72\xcd\x05\x84\xdb\xb7\xf2\x58\xdd\x2e\x67\x32\x30\x12\x08\x8e\x6a\x6f\xf5\x23\x14\x9d\x17\x72\xad\xfb\x1c\x49\xb0\xdb\xfc\xcd\x2a\xac\x25\x9b\x70\x5c\xa9\x4a\x4e\x57\xf3\x0e\xa1\x33\xd3\x4a\xe5\xec\x75\x6d\x42\x61\x5d\xd6\xa1\x9e\x99\xdb\x36\x7f\x8d\xf8\xbe\x8b\xda\xf6\x0c\x46\xae\x4c\xe5\x0f\xdb\x07\x10\xc4\x2f\x2e\x0b\x0d\xb9\xd6\x42\x90\x91\x4f\x0b\x5d\x55\x2b\x42\xe8\x90\x38\x7c\x4b\xd1\xe1\x19\x83\x01\xdb\xe8\x57\x3c\x69\x7f\xa5\x90\x50\xee\xf0\xc6\x3f\xed\x09\x41\x96\xa2\x63\x6a\x6a\xcc\x09\x63\x07\x9a\x5f\x7a\x3f\x9f\x43\x60\xdb\x24\x79\xe7\xad\x93\x26\x61\x9e\x71\x63\xaa\xa3\x83\x1f\x83\x6e\x8e\x7f\xcb\x63\xc5\x67\x36\x46\x09\x4b\xcf\x80\xfb\xf5\x04\x81\xcd\xd2\x5a\x26\xf7\x9d\x09\x09\x0f\x6e\x2c\x33\xf3\x72\x22\xe4\x9b\x59\xed\xf8\x99\x60\x44\x78\xb9\xa5\x70\xeb\x9f\x20\x73\xc2\xd6\xba\x87\x46\xea\x61\x2d\x0c\x16\x7e\xf2\xbf\x3a\x21\x3a\xce\x80\x7f\x68\x50\x6d\xe2\x4e\x02\x81\xc3\xce\x6a\x67\x9a\x67\x1e\x03\xc1\x5d\x32\x0d\x5f\x9f\xd6\x12\x3e\xee\x75\x5a\x2a\xec\xda\xc9\xc0\xe2\xcb\xaf\xa5\xed\x4b\x33\x09\x06\xab\xdf\x75\xfd\x13\xcf\x20\x48\x8a\x0b\x1e\xd9\xb2\x2c\x8b\xa0\xec\xff\x84\xc5\xe4\x7e\x06\xa1\x22\xf2\xdd\xb7\xd9\x0d\x19\x04\xee\x6b\x6f\xaa\xa8\x36\x93\xe0\x7f\x76\x5d\x34\xef\x06\x43\xc2\x9c\x07\xa7\xae\x47\x64\x19\x13\x64\x66\x9d\x69\xb9\xd6\xff\x8e\xe0\xf8\x35\xe1\x8f\xc5\xe8\x79\xc2\x0d\xc1\x0f\x3d\x8a\x8f\x52\x09\x62\xf7\xfa\x24\x25\xd3\x1a\x08\xbd\xfc\xdc\xa2\x6f\x77\x7e\x64\xb0\x66\xfc\xa8\xed\xa1\xf4\x7a\xc2\x42\xed\x14\x51\xbf\xca\x4e\xc2\xf7\x53\x63\xf3\xba\x3d\xdf\x13\x6a\xa5\xd6\x6e\xa8\x17\xad\x25\xe4\xcc\xe2\xdb\x7e\x60\x66\x55\x50\xf9\xc6\xa9\xd7\xf9\x9f\x19\x2c\x99\x78\xf7\x48\xa2\xcc\x95\x10\xe5\xf6\xf5\xfd\x04\x9f\x15\x41\xa9\x4d\x7e\xe5\x7f\xe0\xe2\x82\xb2\x06\xbb\x1f\x4f\x08\x1f\x58\x4f\x58\xa5\xf4\xa7\x13\x9e\xba\xaf\xe2\x2f\x4c\x32\x24\xbc\x5d\x78\x47\x45\xbe\x28\x96\xc0\x9f\xff\xd9\xf6\xd4\x40\x22\xe1\xa0\xf5\x4d\x6e\xaf\xe7\xf1\x84\x54\x0e\xc5\xcc\xb1\xe6\xbb\x04\x3b\x1e\xc9\x44\xf9\x99\xe8\x56\xc0\x49\x03\xc7\x79\x0f\x09\x76\x71\xdf\x59\xd7\x7f\x7c\x44\x38\x71\x31\xe8\xe4\x5a\xe7\x97\x84\x74\xa5\xf9\xcf\x6f\x6d\x0c\x26\xb8\x2c\xfc\x92\xf8\xcb\x21\x99\xa0\x71\x4e\x5d\xec\x4c\x7f\x23\xa1\xa7\x40\x70\xeb\x73\x4e\x67\x82\x3e\xfb\xb1\x1c\x99\x1b\xdb\x09\x9c\x2a\x52\x42\xbb\x5c\xb3\x08\xba\xc6\xea\xe7\x76\xcc\x8e\x20\x98\x67\xf6\xaf\x99\xa7\xbd\x8e\xb0\x5b\x1c\xc3\x8b\x0c\x79\x08\xbf\x36\xc9\xcb\x2e\x7c\xbe\x89\xf0\xf1\xe0\x76\x1f\x5a\x6b\x42\x78\x19\x26\xa8\xd4\xc9\x39\x44\xb8\x58\xae\xdf\xbd\x71\xc6\xec\xd5\x92\x59\xff\x6e\xe1\x44\x1a\xb2\x35\x79\xae\x3d\xc8\x0b\x23\x3c\x5f\xce\xd3\xbb\x7c\xde\x07\x42\x0d\x5f\xe6\x40\x92\xc1\x33\xc2\xd8\x42\x36\xf9\xaf\xf7\x7a\x08\x8a\x9f\x16\x68\x1d\xe4\xbb\x4d\x28\x32\x29\xd3\xda\xfd\xeb\x01\x03\x83\x73\x0a\x1a\x1a\xaa\x0c\x83\x45\x2b\xaa\xc4\x2e\x79\xbd\x22\x3c\xee\x51\xf6\x11\xd1\x2e\x27\xe8\xf7\x9c\xbe\x61\x63\xd6\x46\x38\xa8\xa8\x5a\x1a\x6e\x6a\x49\xf8\xf3\xd4\xcf\x33\xb5\x39\x8a\x41\xd2\x70\xa2\x9a\x56\x59\x18\x41\xd2\xf0\xe4\x37\x8f\x2b\x41\x04\x81\x85\x4f\xbb\x1e\x06\xdb\x12\xb8\x3c\x23\x17\x15\x9a\xfe\x22\xbc\xd3\xdc\xf5\x84\xad\xdd\x92\xc1\x37\x6b\x91\x25\xc5\x96\xc6\x84\x8e\x82\xa6\x82\xe7\xcb\x83\x08\xaa\xb7\xaf\x70\xe8\xe4\x28\x13\x98\x03\x5a\xde\x62\x8a\x1c\x84\x93\x0f\x9e\x77\x9e\xbd\x3d\x4d\xd8\x12\xde\x2a\x74\xa6\xe9\x2d\x03\x1f\xe3\x87\xb3\x26\xb4\x42\x18\x7c\xf9\x5a\xf6\x66\x9d\x56\x0b\x83\x73\x74\xc7\x8f\xed\xf9\x15\x02\xf6\x96\xb4\x48\x5c\x73\x21\xf8\x44\xc4\x6e\x15\x67\x46\x09\x1e\xa2\xf5\x0f\xd4\x75\x5a\x19\x88\x1d\xf0\x7c\xb9\x71\xc6\xfc\x5d\xdb\x7e\xfa\x98\x57\x0f\x41\xaf\xc2\x34\xeb\xb6\x15\x27\xe1\x72\xee\x26\xce\x93\xb6\xa9\x04\x3b\xdf\xdd\xdb\xcf\x5c\x5a\x48\x58\xc0\xf4\x5e\x3b\x50\xc3\x47\x18\x5a\x99\x92\xa8\xce\x9e\x4f\x38\xb1\x5d\x4b\xe3\x3f\xd1\x8b\xe2\x09\xe3\x7a\x9f\xcf\x84\x6e\xb7\xea\x8e\x7a\x3f\x79\x42\xfa\x8b\x63\xf5\xe7\x66\xbe\x0b\xf3\x4a\xde\x1a\xf3\xbf\xf2\xff\x15\xfd\x0f\x5c\x70\xc9\x5f\xae\x7e\xa8\x9c\x60\xe7\xf1\x5c\xe4\xa8\x54\x1e\xa1\xfe\x4f\x1b\x53\x18\xd5\x47\xf0\x9e\xb5\x77\xa2\x27\x61\x84\x50\xe8\xc6\x73\xbb\xac\xb3\x9b\x41\xc2\xef\xb0\x65\x2a\xc5\x19\x84\xdd\x4f\x5a\x12\xab\xde\x96\xff\x97\xb1\x90\xdd\xe0\x13\x71\xf7\x19\x61\xe9\xcd\x26\xfd\xeb\xd5\x95\x84\xaa\x3b\xa3\xf2\x9d\xec\xd1\x04\xbe\x2f\xf7\x9e\x9c\x3f\x31\x4c\x90\x90\xca\xf2\x92\x77\xbd\x4e\x70\xd7\xf7\xd4\x67\x19\xf8\x45\x48\xfc\x73\xfd\xf3\x8a\xc0\x72\x42\x80\xbe\x17\x5b\x2f\xbd\xff\xff\xa8\xfa\xef\xb0\x9c\xff\xff\xff\x1f\x27\x64\xaf\xec\x11\x91\x90\x14\xc9\x96\x6e\x4d\xa1\xa4\xac\x52\xa9\xd0\xa0\xd0\x52\x29\x6d\x25\x23\xda\x7b\xef\x68\xa8\xb4\xd1\xa3\x29\x2d\xed\xad\xbd\x15\x52\xd2\xb5\x50\xbf\xa3\xe7\xf1\x3b\x3e\xef\xd7\xf7\xbf\xcb\x71\xb9\x5e\xcf\xf3\x3c\x8e\xc7\x79\xbf\x9d\xc7\xed\xfe\xd7\x49\x90\xe6\x1f\x7b\x96\x73\xae\x83\xf0\xee\xe4\xf6\x2f\x07\x47\x13\x08\xd6\x19\xe2\x86\xdf\x44\x7b\x09\x82\xbd\x57\xa3\x87\x9f\xb9\x12\x3c\xbe\xf8\x73\x86\x6d\x88\x20\x78\xf8\x84\x2a\xab\x14\x16\x32\xd0\x9f\xda\x90\xfe\xb4\x14\x84\x7e\xaf\x60\xdb\xe6\x5d\x03\x84\x65\x97\xdb\xea\x76\xd7\x0f\x11\x42\x22\x0f\x46\x7c\x90\x6a\x20\x74\x3d\xe7\x12\xf3\x48\x19\x22\x54\xae\x2d\x39\xb9\x4b\x70\x92\x60\x51\xfb\xf7\xe4\x4f\xb9\xef\x04\x8e\x07\xbf\x92\x32\x56\x94\x13\xd4\x56\xfe\x3b\x1d\xae\x16\x41\xd8\x15\xe4\x67\xd6\xb4\xa9\x96\xb0\x61\x59\xc0\x8a\xdd\x1a\x45\x84\x5f\x7b\x07\xf8\x0b\x38\x6b\x19\xfc\x2d\xac\x19\xb8\xe0\x91\xc4\x40\xd5\x90\xed\x37\x5f\x64\x17\xe1\x54\x88\xee\x78\xd8\x43\x7b\xc2\xc3\xdf\xdc\xc3\x9f\x75\x3d\x08\x43\xae\x9b\xc4\x0a\x47\xfe\x08\x41\x2f\x45\x39\xe3\x87\xea\x7b\x06\x79\x1f\x35\x55\x66\xdd\x8c\x24\xf0\x8a\x5c\x7c\x7e\x57\xe0\x1b\xc1\xff\xc5\xda\x25\x7b\x22\xdd\x19\xdc\x97\xee\xf0\x76\xfe\xd5\x46\xd0\x7e\x1d\xef\x6d\xc7\x84\x10\xfe\x70\xee\x4d\x77\xf5\x6e\x25\x7c\x1e\x1c\x0c\xdc\x64\xde\xc8\xe0\xfe\x82\x91\xd3\x8a\x6b\x6a\x08\x2d\xc7\xfa\xa5\xd2\x45\x6f\x13\x74\x15\x06\x23\x8f\xde\xf5\x23\x8c\xdb\xcd\x66\x3b\xbc\xb6\x9a\xc1\xb6\x2e\xbb\x69\x73\x3b\x13\xc2\xa1\x6b\xaa\xd2\xae\xcf\xee\x12\x3e\x07\x8c\x2c\x1e\xba\x5e\x49\x38\xef\xea\x16\xa9\xb5\x49\x9a\xf0\xfd\x6c\x7b\x96\x54\x5d\x3a\x61\x58\xec\xf1\x37\xf5\x95\x3e\x0c\x3a\x8f\xc4\x1d\xba\x70\xe3\x1b\xc1\xe0\xa9\x83\x44\x28\xef\x28\xe1\xc5\xc1\x23\x3f\x0e\x38\x14\x12\x7a\x94\x7f\x67\x8c\x8f\x84\x33\x88\xf1\xd9\x39\x2b\xdc\xed\x1e\x61\xf6\x95\xd6\xf7\xf2\x0a\xff\x08\xf7\x53\x42\xe2\xae\xdc\xce\x26\x74\x86\x0c\xcd\x3e\x12\x9d\x4b\x58\xdc\xe2\x99\xf9\x1f\x2c\x95\x54\x50\x96\x18\x9d\x25\x8c\xd2\xf6\xa5\x0a\x37\x84\x53\x09\x6d\x85\x4a\xd6\x21\x2f\x5a\x08\x2b\x96\x5c\xea\xfc\x21\xba\x9d\xf0\x60\xe5\x60\xbb\xf6\x4a\x07\xc2\xc5\xba\x1b\x49\x39\xde\xa5\x84\xd8\x25\xc6\x5a\x5b\xef\x8e\x13\x12\x47\xd3\x3b\x2f\xce\x44\x67\x6f\x5d\x5b\x7e\xdc\xb3\x83\xc1\xc7\xc3\xb2\x7a\x91\x02\x73\x08\x5c\xdd\x7b\x4a\xff\x76\xc4\x12\x7c\x86\xf7\x76\xbb\x35\x96\x33\x98\xfd\xba\xaf\xd5\xa4\xbe\x80\xa0\x60\xfe\x4d\xbe\x74\x5c\x97\x50\xb3\x28\xa7\x6c\x6d\x73\x0b\x41\x67\x7d\xea\xdc\x8e\x59\x1d\x84\xc4\xb8\xcd\x9f\xdd\xa7\xaa\x09\x8f\x8e\x3f\xe2\x7e\xfe\xa0\x95\xa0\xa8\xff\x51\x49\xfd\xc0\x20\x61\xab\x00\x9f\x9a\xbb\x6d\x23\x61\x7d\xb1\x8c\x93\x7e\x76\x0a\xe1\xc8\xf1\xc6\x7a\xb6\xb1\x4e\xc2\xea\x57\xb7\x93\x39\xc2\x0e\x10\x2c\x8f\xcd\x09\x34\xe3\xf0\x27\xe4\x87\x95\x3a\xee\x94\x08\x62\x50\x66\x61\x67\x6f\x5f\x53\x4b\x38\xee\x3f\x9b\x45\xf8\x93\x3b\x81\x6b\xf3\xe9\x17\x2d\xdb\xdd\x08\x97\x3e\xe7\xb1\x7c\x65\xed\x27\x3c\xab\x71\x37\xbc\x11\xfa\x9d\xe0\xf1\xe4\xf0\xb0\xb8\x48\x29\x81\xe7\x7e\x19\xdf\xb4\x59\x3b\x81\xd5\x59\xfb\x7d\x8c\xf4\x37\xc2\x35\xfd\x89\x0e\xcb\x98\x46\xc2\xe6\xea\x2f\x7d\x0f\x63\x72\x08\xb7\xe6\xce\xd2\xdd\xb0\x53\x9d\xb0\xfe\xc1\x3a\x77\xe5\xa3\xca\x84\xe4\x4c\x11\x17\x03\xe9\x6a\x06\xd6\x2d\xce\x72\xa5\x87\xb3\x09\x85\x09\x56\x13\xff\x75\x6e\x54\x35\x5b\xb1\x74\x2b\x11\x5a\x83\xef\x09\x1c\xda\x74\x86\xd0\xdc\x24\x76\xd9\x4f\x90\x9b\xb0\xbc\x42\xab\x4e\xca\xa3\x9c\x81\xcf\xbd\xc6\xf9\x5c\x6b\xcb\x19\x04\x98\x2a\xb2\x08\xda\x86\x10\xca\x77\x34\x34\x24\xa5\xc7\x10\x3e\x0c\xca\xeb\xfb\x2b\xa7\x12\xf6\x7c\x1e\xd9\x3d\xc9\x91\x41\x48\xe8\xc5\x93\x6f\xa1\x7d\x84\x02\x83\x05\x8f\x9a\x57\x94\x11\x96\x26\xa9\xd5\xda\xcc\x1b\x64\x10\x62\xae\x7f\xf4\x4e\x66\x0a\xc1\xe1\x9a\x8e\xeb\xb3\x0b\x29\x0c\x0c\x64\x90\xf5\xef\x4d\x3b\x41\x66\xdf\xd6\x8d\x2c\xe6\x79\x0c\x0e\x95\x64\xac\x3d\xf7\x3e\x85\xe0\xc8\x92\x32\x2f\x27\xea\x2d\xa1\x7d\xfe\xb3\x25\xed\x57\x6c\x09\x89\x41\x0f\x52\x66\x7d\xb2\x26\x48\x74\x3c\x50\xce\x1f\xbf\xc1\xa0\xb2\xce\x75\xdf\x49\xcb\x78\x42\x54\xc8\x97\x35\x87\x54\x6c\x09\x46\x22\xac\xdd\xa1\x79\xd6\x84\xa7\x31\xf2\x47\x25\xdb\x6c\x09\xb1\x17\x0f\x6e\x67\xc6\xbf\x13\xe2\xfa\x8d\x0e\x70\xfe\xce\x23\x44\xa4\x9d\x3b\xb5\x46\xe8\x0b\xc1\xf6\x52\xcb\x02\xe9\xd1\x5b\x0c\x7e\xdb\x3f\x61\xb8\xec\x3d\x09\x5b\x9d\xf9\xbc\x37\xbe\x7a\x4f\x13\xa6\x0b\x85\x9b\x67\xa9\x12\x78\x95\x16\x06\x58\x15\xbc\x27\xf0\xf1\xf0\x2d\x0b\xae\x3a\x43\x30\xfa\x74\x49\xe0\xba\x9a\x0f\x41\xf6\x92\xd2\x90\xf7\x58\x05\xc1\xdf\x6e\xec\x7e\x05\xc7\x27\x42\x8d\x47\xdf\xdd\x67\x47\xe3\x08\xbd\x0b\xc5\xdf\xb6\xcf\x3c\x95\x3b\x8e\xaf\x52\xf9\xbb\x3c\x09\x96\x6f\x79\x56\x2c\x4a\x6b\x24\x58\x28\xfd\x13\x3c\x38\x63\x5a\xdc\x7e\xf0\x9c\x19\xbb\x46\xc8\xff\x7b\x71\x41\xcc\xca\x0b\x84\xa8\x8a\xee\x73\xa2\x1a\x9b\x08\x77\x6e\xc9\x94\x04\x8c\x65\x12\x46\xff\xbe\x1b\xa1\x65\x07\x09\xdc\x9b\x57\xe8\x67\x0d\xf8\x11\xbe\xfe\xda\x91\x50\xca\x0c\x09\x41\x41\xd6\x56\xe2\xe6\xb9\x6c\x82\xf8\xeb\x21\x95\xde\x7d\xc6\x0c\xb6\xdf\x78\xbc\xa5\xf6\xa4\x0f\xe1\x7b\x8b\xb8\xad\x1e\x7b\x0b\xc1\xe1\xe4\x3c\x01\xee\xfa\x06\x02\xf7\x23\x6f\xc9\x33\x99\x06\x84\xfb\x43\xfe\x07\x7f\x6c\x0e\x23\x2c\x3b\xdb\xbe\x48\x68\xb9\x2d\xc1\x57\x6f\x7b\xf8\x73\xf7\x50\x02\xbf\xda\x8f\x6b\x4c\x9f\x1f\xe1\xb7\xe7\xc6\xc0\x4e\xbb\x14\x06\xad\x6a\x47\x25\x5e\x14\x1d\x24\xf4\x6e\xdd\x71\x53\x6a\xe7\x5a\xc2\x5c\xbe\x4d\x22\xdf\x3f\x98\x13\x58\x7a\x22\x96\xf5\x7a\xd6\x31\x28\xb4\x1c\x5a\xd5\x73\x49\x8b\xb0\x69\xe3\x9b\xe3\x4d\x07\x3f\x12\x04\xfc\x6d\x7e\x71\x9c\x49\x22\x34\x2e\xba\x2c\x9a\x3d\xb3\x77\x94\x6d\xa9\xe5\xad\xf0\x12\x23\xe8\x4a\x4b\xb2\xef\x90\x30\x25\x44\x34\xcc\xbe\xca\xa5\x69\x42\x70\x91\x10\xe5\x7f\x79\x4e\x9c\xc0\xfb\x75\x9f\xd2\x08\xc9\x10\x3e\xb0\xb6\x65\x08\xdd\x8b\x26\xcc\x9f\x9e\xdf\x68\xfe\xab\x83\xb0\xfe\xeb\x9e\xec\x88\xf1\x41\x82\xc8\xe5\x76\x27\xc1\x99\xe8\xf3\x2d\xdd\x79\xfd\xdd\x09\x04\x75\x91\xdf\x29\x59\xeb\xb2\x08\x2d\x69\x6c\x7f\x9f\xdc\x18\x26\xb4\xba\xfd\xae\x73\xd7\x1c\x26\x3c\x4c\x10\xbc\xc3\xa8\x0f\x13\xa4\xe3\xe5\x9a\xaf\xeb\x6b\x13\xc2\xdf\xdd\x0d\xcc\xce\x3c\x43\xf8\xf2\xf2\xda\x89\x9f\xd7\xed\x08\x3b\x13\x47\x4b\x77\x9a\xe7\x11\x62\x4c\x43\x1a\xbf\x2e\xd7\x27\x1c\x94\x2d\x37\xeb\x0c\xea\x63\x70\x2e\xb7\x66\x93\x98\xe4\x19\x42\xdb\xb6\x98\xbd\xf9\xf6\xde\x84\x85\x0b\xa7\x1e\xa5\xed\xef\x20\x3c\x3e\xd9\xf0\xe0\xee\x0b\x39\xc2\xf7\x78\x6e\xb5\x6b\x3d\x3f\x09\xdb\x57\xa9\x08\xa4\xba\x5f\x20\x38\x6d\x98\x90\x15\x17\x1f\x60\x50\xd3\x6a\x2a\x24\x96\x54\xcc\x20\xf2\xb1\x52\xd8\x36\xcb\x42\x06\xc9\x97\x6e\xf1\xfc\x14\x6f\x66\x20\x3b\xe8\xf1\xe6\xef\xe6\x99\x7b\x98\x75\x48\xeb\x36\xa5\x44\x06\x8a\xac\x18\x7a\xea\xdd\x41\xb0\x2f\xd3\xcd\x3e\xbc\xad\x83\xd0\x6f\xc5\x25\x35\x4b\x72\xbe\x30\xb6\x8e\x8f\x3b\x0d\x9e\x2b\x64\x30\x72\xed\x81\xe2\xf9\xbf\xd6\x84\xe7\xec\xbd\xdb\x6b\x25\x6f\x11\xac\xfd\xd2\xf7\xdf\x52\x76\x20\xac\x1f\x93\x68\x7b\xd7\x23\x42\xd8\xd8\xfc\x50\x73\x6b\x51\x0a\x21\xf6\x93\x4b\xf7\x86\x37\xcb\x08\x56\x8e\x65\x67\x6b\xd5\xa2\x19\xa8\xea\x46\xaf\xee\x5a\xef\x40\x10\x8a\x76\x2a\xe2\x7c\x34\x42\xf0\x99\xb5\xf6\x9b\x7e\x89\x27\x83\xed\x3f\x5e\x56\x8e\x95\xdd\x27\xf4\x9e\xc9\x34\x39\x73\xa5\x8a\xf0\x72\x59\xef\xb3\x03\x1e\xc2\x84\x3f\x8a\x1a\x4f\x57\x06\xb4\x67\x21\x6f\x0d\xe7\xe4\xb8\xf8\x6b\x82\xc8\x76\x67\x41\x6d\xe7\x2b\x84\x1b\x69\x06\x6f\x0f\xc4\xcb\x10\x46\x16\x45\x15\x8a\xd7\x54\x12\xde\xbf\xa8\x95\x73\x17\xe5\x21\x5c\xea\x3d\x2a\xc0\x22\x1a\x4a\x78\x9d\x3e\x76\xa0\x7e\x3e\x37\xc1\x72\x20\xf4\x92\x99\xfb\x10\x41\xec\xf6\xe5\xea\xa7\xb3\x7e\x12\xee\xb9\x9d\x5d\xa0\xb8\x60\x94\xd0\xdf\xf9\xde\xbc\xb1\xf5\x33\x21\x9b\xc7\xb9\xe3\x3b\x4b\x1e\xa1\x5a\x69\x01\x6b\xb4\xdc\x41\x02\xd7\x05\xcd\x13\x18\x73\x27\xdc\xfe\x4c\x56\x7b\x72\x96\x13\x8e\xed\xfc\xf8\xab\xc5\xc5\x84\x90\x77\xa2\x75\x9b\x44\x94\x1f\x41\x5e\xe9\xde\xae\xd3\xdd\xe9\x84\x08\x09\x97\xdc\xd6\x33\xbf\x84\xb0\x94\x09\x62\x8d\x7b\x14\xcf\xa0\x21\x55\xd3\xfd\x3f\xb3\x73\xd5\x52\x79\x96\x09\x17\xc2\x37\x1b\x25\xde\xe2\xf3\x25\x04\xf6\x72\xcf\x21\x08\xcf\x22\xbc\x8c\xed\x6b\xe7\xed\xab\x62\x90\xf7\xe0\x4c\xcf\xfc\x9d\x02\x04\xbb\xee\x05\x37\xaf\x44\x3f\x26\x9c\xe4\x74\x32\x65\x25\x33\x82\xa1\xfa\xac\xc0\x8d\x59\x43\x84\x1f\xd5\x37\x58\x5c\x04\x87\x08\x11\x81\x1d\x77\x8a\x16\xc6\x12\xea\xce\xb9\xf6\xef\x70\x3a\x48\x68\xba\xcd\xa6\x1c\xf1\xdd\x9d\x10\x3f\xc8\x91\x96\x67\x59\x43\xb0\x53\x52\xba\xe8\x7d\x44\x83\xe0\xfe\xcd\xcb\x4e\x5e\xb5\x8a\x70\xc8\xc2\xe6\x7b\xe2\x8e\x1b\x84\xd3\x47\xfc\x97\xc9\xb0\xb1\x10\x7c\x9f\x72\x15\xc7\x2c\xcb\x67\x30\x7b\x5e\x07\x69\x6e\x3d\x48\x08\xdd\xce\xa6\x6b\xc8\xf6\x81\x41\x40\xf1\x9d\x5d\x4b\xf5\x04\x08\x8e\xed\x36\x27\x5c\xe3\x39\x09\x8d\x15\xab\x74\x8b\x57\x2d\x24\xb0\x4d\x71\x3f\xb0\x9a\x3e\x4d\x28\x52\x8e\x6b\xf8\x7b\x8f\x9b\x10\x22\xce\x75\x83\xfb\x5c\x30\x41\xce\xfd\xc7\xde\x9a\x62\x17\x06\x17\xbf\xe8\x8a\x3e\x3a\x9f\xc9\x20\x7f\xe7\xdc\x6f\x2a\x8a\x6e\x84\xe7\xf6\xec\x75\xb3\x4b\xef\x11\xce\xf6\x08\xcd\x99\x82\x3d\xe1\x67\xd0\x6a\x8e\x66\x0b\x17\xc2\x26\x2d\x33\xfb\x13\xc6\xcd\x0c\x5c\xaf\xac\x35\xe8\x95\x7a\xcb\xe0\xc9\xa2\x55\xb3\x53\x17\xe4\x11\x5e\xd8\xc7\x66\xdf\x79\xea\x4c\x38\xeb\x30\x4b\xb3\xfa\xcc\x76\x42\xd8\x4a\x85\xbc\x3b\xa9\xa1\x04\x87\xde\xd9\x27\x15\xc5\x7a\x08\xba\xb2\xad\x0e\xe3\x51\xfe\x84\xcf\xab\xee\xdf\xd0\xae\xb0\x64\x60\x9f\x24\x3c\xf5\xe9\xa6\x1d\xc1\x78\x8c\xb3\x33\xce\xf3\x0b\x83\xd3\x63\xef\x76\x9f\x5b\x56\xc2\xe0\xe2\x93\x5f\x45\x0f\x6e\x7a\x31\x10\x32\x58\x17\xf9\x71\xa6\xb3\x86\xe7\xc5\xb1\xa5\xf2\xda\x84\xc5\xea\x9a\xb3\xff\x65\x7f\x24\xd8\xca\x28\x46\xa5\x59\x87\x10\x94\x67\x3d\xdd\x3e\xa0\xf3\x8a\xb0\x4b\x7a\x8d\xec\xb5\x53\xce\x04\x89\xef\x4b\x9f\x9c\x31\xcc\x63\x60\x24\xc6\x82\x63\x8f\x6e\x10\x7e\xfc\x8b\x7f\xf1\x5d\xc9\x87\xf0\xb6\x47\xcc\xf0\xe9\x66\x57\x06\x43\x8e\x42\x01\x3b\xa2\x1b\x08\x03\x1c\xb3\x18\xf1\xb8\xf7\x0c\xd8\xbf\x24\x57\x5f\x79\x55\xca\x60\x7c\x48\x61\x7a\xd9\xe4\x41\xc2\x66\x31\x81\x9b\xbe\x7f\xbe\x10\x58\xb6\x9e\xb1\xe4\xfc\x38\x46\x90\x77\x61\x39\x11\xf0\xa4\x8b\xd0\x39\x72\x3a\x21\x3a\x32\x8f\xe0\xb2\xc4\xf9\x66\x8e\x7e\x1e\x61\x0e\x36\x97\x59\x9d\xfd\x48\xc8\x7e\xbd\xb2\x7f\xaf\x6d\x37\x61\x20\xca\x55\x35\x56\xf8\x3d\x61\xde\x32\xee\x21\x0e\xfe\xd9\xc2\xe8\xf8\x64\xde\xfc\xb7\xa1\x87\xe0\xf4\xd5\xf7\x5b\x74\xc9\x08\xc1\xe8\x17\xe5\xac\xeb\x2d\x64\xf0\xae\x58\xa7\xa3\xbc\xa4\x82\x90\x3d\x95\x2e\x58\xc9\x37\x5b\x18\xae\xdb\x5f\xe9\xd6\xf6\xa4\xff\xcf\x67\x19\x0d\xcf\x55\xb8\xbe\x33\x83\x41\x91\xd9\x72\xbe\xdf\x8e\x29\x0c\x3e\x06\x7b\x88\xc9\x6c\x1d\x66\x70\xcd\xa6\xf3\xab\x72\x40\x02\x21\xe0\x75\xa3\xd0\x8e\x19\xd3\x3a\xe6\xf3\xe7\x10\x5b\x2f\x83\x54\x9b\x54\xe3\xc0\xd5\x49\x04\x9e\xf0\xfd\xa5\x45\x12\xa1\x04\xd7\xb0\x51\x0d\xb8\x7d\x26\xb4\xdc\x4c\xd7\x5e\x3f\x98\x42\xc8\xb7\x8c\xac\xc1\x16\x2f\x06\x8b\x2a\xb4\xd8\x1e\xe6\x7f\x20\x54\x69\x04\x0a\x2d\x0d\x0c\x22\x6c\xd8\x19\x30\xb8\xd3\xfe\x31\x41\xd5\xda\xdf\xa9\xcf\x38\x84\x41\x5d\x0e\xf7\x91\xe1\x9e\xfb\x84\xfc\x0f\x61\xfd\xf3\xbe\x15\x30\x48\x30\xb9\xb9\xeb\xe9\xf6\x4a\xc2\xad\xd2\x63\xe9\x6f\xbd\x77\x12\x54\x9b\xc5\x42\xbd\xed\x6c\x09\x49\xb9\xfd\x87\x37\x99\x1f\x26\x9c\x54\xaf\x6e\x98\x13\x23\x4e\x70\xef\x0f\x5d\x5f\xc2\x53\x45\xf8\xa1\x35\x27\xc8\x2a\xa5\x81\xf0\x4e\xa7\xfa\xfb\x82\xe5\xb2\x0c\x22\x31\x6c\xa8\xfa\xf9\x3c\xe1\xec\xab\x25\x6d\xfa\x0e\x79\x0c\x0e\xf6\xdd\x8b\xfa\x10\x39\xb3\x3e\xb7\x0a\xc7\x8c\x88\x7d\x25\xd8\x2e\xfc\xb3\x3e\x21\xb9\x7a\xe6\xa9\x5e\x73\x74\xbc\x11\x43\x60\xcd\xbd\xe0\xb8\x41\x63\x90\x30\x5e\xdf\x5e\xb5\xe0\x37\x68\xc2\xcd\x69\xaf\x76\x42\x17\xe1\xc4\xda\xb4\xd7\xce\xbe\x65\x84\xe9\x29\xc7\xdc\x69\xf5\x41\xc2\xd8\x33\xae\xfb\x67\x86\xdb\x19\x24\x69\x2c\xfa\x7d\xde\x5a\x92\x90\xb2\xf5\xaa\xdf\x86\x10\x73\x42\xed\x82\xae\xa2\x8c\x25\xb2\x04\xc5\x1c\xab\x13\x99\x9f\x62\x08\x4b\xfd\x2f\xfa\x3b\x69\xaa\x13\xb8\xf8\x37\xc8\x1e\xe3\xd7\x23\xfc\x2b\x94\x5e\xe2\xcf\x5f\xc3\xa0\x70\xca\xfa\xad\xcc\x05\x3f\xc2\xb5\x90\x7f\x1d\xfb\x3f\x76\x12\xee\xd6\xff\xb5\x9e\xfa\xf6\x94\xd0\x3c\xed\xb5\x30\xc2\xc9\x96\x60\xae\x60\x1e\xb1\x95\xf3\x15\xc1\x5f\x4f\x5b\x68\x4b\xdc\x33\x06\xf6\xb3\xfe\x36\x99\x8a\xee\x25\xfc\xaa\xae\x75\x0a\xae\xcc\x65\xc0\x3a\xe6\x75\x6e\xab\xb7\x2f\xfd\x1f\xcc\xb3\xb1\x38\x2b\x34\xa9\x41\x08\x66\xf3\x9f\x0a\xd2\x53\x24\x2c\x7a\xb8\xb2\xe3\xa0\x7a\x0e\x83\x2f\xaf\x7f\x8c\x65\xb4\x65\x30\x08\xfc\xa4\xe4\x5f\xac\xeb\x43\x28\xb6\xd7\xda\x11\x78\x3f\x81\xb0\x49\x74\x5f\x3d\xa7\x89\x3f\xe1\x55\x78\x8a\x80\xa5\x81\x07\x61\xd9\x92\xb9\x59\x3b\x66\x4c\xef\xb9\xe9\x1b\x31\x8b\x1e\x10\xfe\x3d\x34\x9a\x8e\x94\xed\x20\x6c\xc8\x53\xe2\x10\xae\x75\x24\x64\xbe\x5f\xa2\xa1\x9d\x1e\x4c\xb8\xb9\x67\x70\x7c\xbd\x6f\x3c\x83\x8d\x5f\xeb\xd6\xe6\x36\x9d\x22\xec\x14\xd9\xa8\x33\x9a\x66\x4f\xd8\x7d\x6f\xdd\xdb\x7e\x53\x1d\x82\x22\xab\x40\x78\x23\x57\x1b\x41\xf9\x99\xf6\x9a\x60\xbd\x4b\x84\x8a\x90\xb0\xe8\x96\x82\xd7\x04\x8f\x4d\x9f\x82\x76\x4c\x6b\x10\xda\x12\xfc\x8f\xbf\x5e\xef\x4e\x70\x5b\x73\x76\xee\xd4\xfc\x67\x0c\xf6\x3c\x9f\xfa\xdb\xf6\xf4\x02\xc1\x33\xb6\xeb\xb9\xa5\xdc\x61\xc2\x04\xb7\x9d\x8c\x69\x46\x01\x83\x6f\xd3\xcf\xbb\xaf\xad\x39\x4b\x30\x7d\x7e\xb4\x37\xa1\x6d\x88\x30\x28\x92\x1d\x6e\xfc\x7a\x2d\xe1\x45\x57\xc4\x88\xff\xd3\x0e\x21\x8c\x7b\x70\xf3\x46\x46\x14\x12\xf8\xc5\xea\x85\x1d\x77\x59\x11\xce\xc5\x70\xf8\x48\xff\xcc\x65\x70\x60\x4f\xe9\x0e\xbf\xe5\xba\x04\x07\xdf\x39\x6d\x35\x91\x61\x84\xd0\x86\x64\x96\xcb\x35\x6e\x84\x06\x99\xd0\xb5\x4f\xef\x3f\x22\x18\x55\xb3\xc5\x55\xb6\x95\x13\x4e\xaf\x1a\x3a\x6a\xd3\x92\xcf\xc0\x5b\x7e\xf6\x3d\x7e\xee\x93\x84\x82\x2e\xdd\x7b\x96\xdc\x39\x04\x69\xbe\x4b\x19\xb3\xf8\x9e\x10\x38\xe3\x02\xb6\xf1\xcf\xe3\x24\x5c\xd8\xfd\xe8\x74\x7f\x70\x0d\x21\x3d\x7b\x7f\x6d\x71\x67\x3c\x21\x76\x50\xd1\xf9\xe7\xcc\x4c\xab\x88\x67\xfa\x5c\xa9\x4e\x26\x64\xd9\x46\x09\x9d\xde\xf6\x88\x60\xcd\xbf\x3a\x3b\x2a\x3b\x91\x90\x51\x53\x72\xd5\xc1\xec\x2b\x21\x55\x3e\x76\x73\xb4\x55\x3e\x83\xeb\xb7\xd6\xba\x0b\x67\x65\x11\x16\x3d\xf6\x90\x15\xd3\x91\x27\xc4\x04\x7c\xe3\xbc\xf1\xbd\x84\x81\x51\xf6\x0f\xe5\xb4\xaa\xd5\x84\xa1\x07\xce\xce\xc5\x85\x9b\x08\xb7\x4c\x2e\x95\x1d\xfe\xb1\x9e\x60\x13\xb3\xeb\x99\x7c\xa8\x31\x01\x6f\x86\x75\xde\x04\xc8\x12\xf6\x6f\x6b\xee\xce\xf3\xf1\x23\xe8\xb8\xd5\xc7\x58\xf6\x09\x12\xee\x6b\xb2\x9c\xfb\x72\xd4\x9e\x90\x6f\x51\x1b\x70\x2b\x28\x99\xb0\xb7\x39\xaf\xfd\xf9\xed\x24\x02\xfb\x7d\xc6\xb6\x80\x33\x92\x41\xcc\xa6\x7d\x0b\xbe\x6d\x70\x27\xac\xdf\x7a\xb1\x36\xce\xc1\x8d\x70\xba\xff\x7e\xc5\x66\xcb\x4f\x04\xf3\x31\xc6\x42\x39\xa9\x98\xc0\xa9\xf7\x91\x1e\x0a\xf8\x10\x54\x22\x4f\x14\x0a\x5e\xf2\x24\x4c\x94\xae\x38\x97\xfc\x39\x80\xa0\xe6\xa9\xf7\xd9\xfb\xe2\x5b\x06\xdf\x7f\x71\x7a\x3e\x9c\x2f\x47\x50\x48\xbf\x98\xc0\x93\x50\xc2\xa0\xe3\xf5\x9e\x9a\xa5\x6d\x0e\x04\x97\xa9\xbc\x74\xc9\xcb\x63\x0c\x8c\xf3\x96\xdf\x8a\xf8\xda\x49\x88\x28\x3b\x75\xd6\xdc\xea\x3e\x21\x30\xce\x6d\x76\xfc\x1a\x37\x42\xe7\x66\xe3\xf6\x53\xd1\xce\x84\xed\xd6\xf6\x9e\xfc\xd5\x01\x04\x91\x57\xe1\xb2\xae\xc2\x2f\x09\x6f\x65\x52\x03\x8e\x99\xbc\xcb\x42\xc7\x42\xf3\x45\xea\x4b\xb2\x18\x54\xf1\x37\xa6\x14\x76\x59\x11\x0a\x62\x0e\xde\x98\xb6\xae\x23\xd8\x35\x1c\xda\xff\x40\xe8\x23\x83\xca\xd8\x9b\x86\xf9\x5c\x3e\x0c\x46\x37\x35\xa7\xd4\x1d\x5d\x43\xd8\x6e\xab\xd5\xc4\x66\x56\x4c\x28\xfe\xf9\x2e\x3f\xfe\xcb\x30\xc1\xfb\x6d\xe9\x9a\xca\x48\x53\x42\xd5\x5f\xa5\x0d\x99\x71\x3d\x04\x87\xc3\x7b\xc7\xdb\x23\xba\x08\x55\xfc\xcb\x1b\xa3\xb7\xcb\x12\x62\xf4\x5a\x0f\xbc\xe7\xd2\x23\x4c\x7c\xc8\xaa\x3e\x62\x6f\x42\xb8\x33\x77\xe2\x6b\xe5\x4e\x16\x82\xb8\xcb\x91\x93\xe7\xd7\x08\x10\x44\xd9\xe3\x5e\xe7\xd6\x97\x12\x3a\x37\xde\x78\x52\x33\x13\xb9\x08\xcc\x9a\xd3\x2c\xba\x98\xc0\xb7\x66\xe9\x92\x77\xd9\x11\x84\x43\x23\xd2\x1f\x44\xef\x59\x10\xae\xe5\xee\xe1\xff\x2f\x8a\xe9\xca\x49\x8d\xde\x3e\x2e\x84\x23\x3d\x93\x73\xcc\xa2\xfa\x09\x56\x57\xfd\x2f\xe4\x06\x1b\x33\x50\x37\x7b\xe0\x24\x68\xdf\x4d\x10\x5d\xcf\x17\xae\x67\x94\xc2\x20\xee\xf9\xea\x7b\xc6\xbb\x72\x08\xd7\x5a\x0e\xe6\x4e\x26\x58\x13\x52\xc2\xc6\xef\x79\x14\x1c\x25\xcc\x5d\xbd\x63\x99\xa7\xfc\x19\x82\x15\x67\x65\x50\xd5\xe6\x37\x0c\xda\x4e\x9c\x57\xff\xe9\x2f\x42\x88\x88\xe6\xe4\x3b\xab\x99\xcd\x40\x29\xdb\xf0\x6b\xe4\xc6\x38\x82\xcf\xf8\x37\xa1\x83\x5f\x0f\x13\x42\xd9\x7f\x71\x99\x97\x7a\x10\x0c\xee\x14\x6c\x2f\xd2\xe6\x24\x9c\xf7\x8e\x0c\xde\xba\x21\x81\xa0\xff\x2f\x6a\x0b\xdb\xbf\x40\xc2\x81\xcf\x2a\x81\x8a\x21\x59\x84\x74\xef\x81\x9b\xbf\xeb\xee\x12\x2e\x72\x99\xfe\xda\x77\x22\x80\x70\xab\xfe\xa5\x25\xae\x65\x11\xee\xed\xf5\x15\x90\xd3\x52\x23\x6c\xb1\xe4\x9b\x9a\x5d\xac\x4f\xd8\x92\x63\xc9\x73\x6c\x6e\x1c\x81\xe7\x85\xdf\x0a\x1e\x28\x13\xf2\x5a\x3c\x2a\x8f\x3b\x09\x13\x8c\x7a\xff\x1e\x7c\x2d\xaf\x4e\xf8\x25\xb4\x6a\x73\xc0\x9d\x1c\x06\x4f\x9f\x48\x3b\x0a\x8e\x9d\x23\x48\x70\xcb\x6e\x7c\x2c\xe9\x46\x08\xfe\xa1\xc6\xcb\x16\xfe\x9a\xa0\xa0\xd2\x3c\x76\x9b\xff\x36\xe1\x71\x44\x87\xeb\x4f\x7b\x0f\xc2\xb7\xe5\x45\x70\x58\x12\x45\xb0\xec\x66\xb8\x58\x2d\x6c\x08\xab\xe4\xca\xf9\x86\x35\x5f\x32\xb8\x5b\x5e\xb5\x53\xd8\xa4\x8a\x41\xf0\x35\x41\xc7\xe0\x84\x37\x04\x77\xb5\xb1\x7e\x4d\xf3\x4a\xc2\x64\xcc\xa2\xf3\xbe\x4b\xc3\x09\xbb\x5c\x6b\x8e\xe7\x17\x74\x32\xc8\xbf\xdf\xfd\xb2\x20\xa0\x92\x81\xdc\xb8\x79\x4c\xd9\xc4\x4f\x06\xdf\x9b\x9e\xa8\x0b\x8b\x87\x32\x68\x38\x5f\xbb\xd1\xe3\x63\x0e\xa1\x9d\x93\x5f\xf7\xc9\xd3\x0a\xc2\x2e\x85\x82\x87\xaa\xe5\xd9\x04\x51\x8e\xb9\x3b\xd6\x29\xa5\x11\xcc\xe6\xc9\x9d\xd0\xfe\x38\xc4\x60\xc5\xfe\x16\xcd\xbd\xef\x87\x09\x62\x9f\x0c\x7b\x78\x03\x1a\x09\xaa\xc6\x9f\x96\xf8\x37\x7a\x12\xa2\xd2\x27\x95\x1e\xec\xc8\x23\x28\xea\x4e\x30\x37\x84\xeb\x19\x58\x49\x88\x0b\xe7\x7e\x48\x25\x1c\x2a\xd8\xf1\xaa\x26\xa4\x91\xc1\x49\xaf\xb5\x31\x7f\x7a\xa4\x09\x46\xa2\x4f\x8e\x7c\x98\x31\x7f\x9c\x75\x46\x65\xe3\x7b\x08\xd9\x57\x8e\x5a\x8d\x4f\xf6\x10\x2a\xa7\xd2\x33\x4c\xd6\xa4\x11\x44\x2e\xbd\xf9\x12\xf9\x77\x36\xe1\xec\x35\x56\xee\xb7\xea\x07\x08\x9a\x1b\xba\x5e\xfd\xfc\x18\x49\xf0\xe1\x9d\x25\x75\x5d\x39\xf3\x7f\xe0\xb8\x8d\x75\xb6\xda\xff\x07\x2e\xac\x4f\x34\xcc\xcf\x54\x21\xd8\x6c\xb4\x3a\x74\xb2\x4f\x99\x80\x76\x5b\xd7\x00\x1d\x7d\xc2\x7a\x87\x8e\xeb\xdb\xa4\x72\x09\xbf\xaa\x64\xd8\xd7\x34\xaa\x12\xce\x97\x78\xcf\x29\x54\xf2\x24\xc4\xbb\xdd\xd5\x9f\x6a\xf3\x24\x94\x95\x1a\x1c\x5a\xe6\xd2\x4c\x08\x59\xb0\xfa\x17\xcb\x97\x14\xc2\xe9\x07\x07\x5f\x97\x8c\x57\x11\xa6\xf5\xed\x5a\x5f\xab\xb5\x11\x4c\x8d\x62\xc3\x0b\xde\xe7\x30\x98\xbf\xe4\x55\xe4\x8f\x8a\x6c\xc2\xa7\xd0\x15\x2e\x6c\xf5\xbd\x84\x93\x79\x3a\x7f\xa7\x9a\x53\x08\x2b\xe7\x6a\x90\xcd\xd5\x74\xc2\x2a\x29\xf7\xc3\x99\xde\x81\x84\xe7\x01\x97\x64\xfd\x4a\xbc\x09\x27\x54\x7d\xbf\xfa\x2c\x69\x61\xa0\xaa\xb7\x31\x5e\xb1\xdf\xfa\x7f\x3a\xff\xcf\x94\xbd\x54\x8d\x7d\x91\xe9\x45\xb0\x19\x50\x9f\xa5\x2e\x62\x41\x08\x51\xd7\xb9\xf2\xfa\x57\x05\xc1\x41\xfc\x33\x87\x56\x37\x43\x28\xf7\xe4\x58\xff\x7e\x56\x36\xa1\xbf\xf6\xf9\xd2\x56\xde\x44\x82\xce\x0d\xd5\x81\x38\xc9\x04\x02\x2b\x57\x46\x86\x6d\x43\x2c\x03\xe7\xf6\x85\x2d\x1b\xba\xf2\x08\x3e\xa9\x95\xc2\xfd\x3f\xea\x18\xe8\xbc\x7e\x23\x61\x50\x93\x45\x28\xe0\x8b\x56\xb8\xaf\x91\xc7\xa0\x57\x64\xbd\xf7\xb2\xd0\x26\x82\x8f\xf2\x7d\xcd\x7f\x54\x40\x28\xec\xb8\x20\x22\xf3\x29\x9d\x81\xb6\x41\x56\x9e\xca\x58\x30\x61\xde\x11\xbe\xe6\xb7\xd3\xb9\x04\x41\x4d\x9f\xbd\xdf\x4a\x93\x09\xeb\x1e\x88\xaa\xd5\x8a\x3e\x23\xec\xd6\xd8\x19\x2e\xf1\x20\x9d\xc1\xb3\x6b\xc1\xe1\x56\xdb\xef\x10\xec\x2c\xce\xfd\xb5\x56\xb6\xf9\x1f\xf3\x88\x4f\x63\xbb\x43\x25\x0b\x61\xa5\xc6\x73\xbf\x95\x7b\xad\x09\x53\xe9\xea\xa3\x47\xd3\x5e\x31\x68\x17\x31\xa9\x79\xba\x7d\x3f\x61\x87\xb4\xef\xbf\x04\x87\x13\x84\xcb\x91\x9c\x7b\x7f\xa9\x47\x12\xaa\x15\xea\x6c\x4f\x46\x65\x13\xfc\xb5\xcf\xee\x64\xe2\x1e\x32\x68\xfb\xc3\xe5\x3e\x2c\x7d\x9a\x30\xf0\xbe\x85\x85\x47\xd7\x85\xb0\xea\x9c\xd8\x95\x81\xf8\x16\x06\x07\x0c\xcc\xe6\x8d\xcc\x44\x21\x52\xad\x07\x5c\x5e\x73\x13\x1e\x9d\x5a\x65\xb9\x5a\xcc\x96\x01\x2d\x1b\x9d\x0c\xe4\xbd\xc0\xc0\xd2\xec\xb2\xf2\xfd\xf4\xb8\xff\xe9\x14\x87\x27\x76\x77\xb0\x07\x33\x08\x8b\x2a\x4c\xd7\x19\xfa\x23\x04\xb9\xdc\x72\xce\xba\x99\xfd\xee\xad\xa8\xe3\xea\x7b\x7d\xef\x09\x99\x5f\xab\xde\x7f\xed\x2b\x22\xac\x18\xd2\x9e\x8e\xfd\xf5\x93\xf0\xce\x4b\x68\xb6\x41\x46\x10\x61\x5d\x83\x40\x91\x54\x89\x23\xe1\xc8\xe8\x49\xe7\xbe\x43\xfe\x84\x0d\xba\xad\xd2\x4e\xac\x17\x08\xee\x2e\xde\xd1\xdd\xbe\xb1\x04\x95\xf0\xbc\x53\xd1\xec\x07\x09\x52\x36\xcd\xb9\xda\x12\x4f\x08\x2e\x66\x72\x23\x3e\x1a\x02\x04\xfe\xa7\xbf\xa4\x2f\xa4\x9e\x9b\x59\x18\x8e\x8f\x25\x2e\x8e\x65\xf0\x42\x41\x21\x68\xff\x93\x24\x42\x82\xcf\xe4\xd9\x65\x12\xb5\x84\x32\x4c\xf8\x86\x5e\xff\x48\xd8\xf3\x60\xa2\x40\x3d\x2d\x8e\x60\x70\x57\xab\x23\x6f\xf3\x03\x82\xf3\x5c\xf9\x23\x49\x26\x99\x04\x71\x11\x3d\xbf\xa2\xc4\x2f\x84\x3b\xd9\xb6\x0b\xb4\x57\x5c\x22\x04\x6b\x7d\xb9\x67\xbd\xd9\x99\xc1\xfe\xfc\xf1\x87\xdb\x8f\x67\x33\x30\x77\x08\x92\xd3\x59\x76\x83\x50\xbd\x81\xc5\xa2\x5c\xb5\x88\x81\x81\x94\x89\x02\xbb\x7a\x18\xe1\x8d\xc5\x74\x4c\x8f\x77\x36\x61\x1d\xf7\x87\x9b\x0f\x84\x1f\x11\x8c\x23\x3b\x76\x36\xd6\xb4\x13\x3e\xf8\x7c\xed\x5d\x1a\xd3\x4c\x90\xf7\x49\x3a\x1d\xfc\x4b\x9f\xa0\x1f\x51\x90\xf7\x95\xdf\x95\xc0\x37\xa2\xbd\xea\x8b\xb3\x15\x41\x63\x13\x97\x76\x83\xaa\x24\xc1\xa8\xec\x4d\x9f\x5c\xca\x2f\x21\x38\x8c\xbe\x34\x58\xb6\x4d\x8b\xb0\xee\xdd\x68\x9c\xef\x71\x75\xc2\xd5\xc6\xa5\x7f\x0e\x8c\x04\x12\xaa\xc7\x92\x04\xb8\xab\x17\x13\x8e\xb9\x4f\xdf\x2f\x89\x7b\x40\x78\x28\x55\xb8\x2c\xb3\x5a\x99\xb0\x8e\x4b\x83\xa7\x25\xa3\x94\x30\x25\xbc\x89\xdb\x29\xf3\x20\x21\x90\x73\x38\xdf\x48\xfa\x28\x81\x43\x93\xd7\xe8\xec\x97\x01\xc2\xaf\xfa\x84\xb4\x94\x35\x32\x04\x8e\x26\x8e\xdf\x9a\x67\x9d\x08\x95\xea\x17\xaf\x5e\xe5\xa9\x26\x7c\xad\x7a\xd4\xa8\x75\xd0\x85\x70\xd7\xf1\x90\xfe\x31\xcb\x08\xc2\x55\xed\xdf\x5c\xcb\x2e\x57\x30\xb0\xab\x3d\x72\xce\xb4\xc0\x91\xc0\x76\x42\x3d\x4c\x5b\xbc\x99\x81\xff\x55\xa7\x63\x37\x77\xd5\x32\x30\x0b\x93\x7e\x16\x6a\xa0\x45\x88\xaf\x89\xd1\x9c\x37\xef\x1d\xa1\x68\xfd\x41\x45\x1f\xa9\x7a\x06\x25\x42\xe1\x0f\x73\xc4\xda\x08\xbb\x4d\xea\x3f\x6c\x92\x7f\x40\x38\xb7\x6a\xa5\x6a\x8d\xfe\x67\x06\x52\x69\x6b\x85\xb5\xdb\x12\x09\x75\x79\x5a\x71\xdb\xc3\x35\x09\x01\x15\x96\xf1\x7a\x6b\xcf\x11\xe4\xeb\xee\xdb\x1a\xaf\xbc\x49\x58\x9a\x2e\x6d\xf9\x6a\x66\x18\xfd\xcf\xfd\x4c\x5d\x19\x71\x96\xd0\xbd\x38\xed\xd4\x9c\xc8\x25\x04\x9b\x5d\xfc\xfb\xa3\xb8\x7b\x08\xaf\x55\xe2\xe3\x32\xb6\x95\x11\x12\x12\x7f\x5d\x8d\x3f\xd4\x4c\x28\xba\x12\x6c\xaa\xbb\xb7\x94\x10\xbc\xf6\x2b\xc7\xee\x6f\x66\x84\xd6\x3c\xa9\xae\x9b\x0d\xef\x09\xac\x9c\x27\xb3\xe6\x5d\x1c\x24\xf4\x45\xe7\x5c\x16\xe8\xbb\x4a\x58\xbe\xae\x3b\x37\xed\xb0\x26\xc1\x32\x73\xdb\xa6\x23\x6f\x0e\x13\x82\xe6\x3f\x3e\xa6\xba\x6a\x2b\x21\x7a\x96\x75\xc9\xdf\x63\x91\x84\x94\x85\x67\x45\x7b\x3c\x5e\x32\x58\xbb\xd3\x64\xdd\x26\xce\x5c\x06\xd1\xa7\xc6\xae\x8d\x6f\x2e\x26\x4c\xd9\xa8\x1d\x32\x3b\xe1\x4f\x38\xfb\xb1\xde\xb0\xf6\x89\x10\xc1\xff\xb2\xf8\xdb\xba\x34\x05\x42\xed\xf8\xd2\xd7\xf7\x4b\x2f\x13\x0e\x3f\xdf\xb1\xfb\xea\x86\x62\xc2\x96\x17\xab\x77\xcb\x4b\x17\x10\x82\x4f\x97\x0e\x54\xa9\x76\x10\xf8\xe4\xb7\xe5\x29\x69\xf7\x31\x48\xea\x4c\x3b\x13\x9d\xd8\x41\x08\x12\x57\x4c\x38\x37\xd3\xc9\x99\xe7\x75\x50\xbe\x51\x9f\xc0\x79\xb9\x7c\x6f\xd1\x62\x0d\xc2\xe4\xf9\x27\x3f\x24\x8c\x9f\x11\x22\x42\xbd\x45\x2d\x84\x75\x08\x2a\x1c\x8a\x9c\x19\xed\x77\x09\x52\x47\x04\xbe\x67\x25\x27\x33\x70\x93\xbf\x74\x6c\xf4\x7d\x3e\xa1\xfa\xba\xbd\x9a\xe9\x96\x70\x42\xd3\xd5\x96\x7b\xd6\x0b\xeb\x09\xc6\xf9\xd7\x0b\xf5\x14\x5d\x08\x73\xc6\x2f\x1d\x8b\xb7\x60\x18\x2c\xe4\x57\x97\x95\x52\xac\x22\x2c\x65\xd9\xf7\x72\x30\xdf\x8e\xc1\xbb\xb5\x63\x1b\xf5\x72\xc6\x08\xd7\x3a\x9a\xb4\xd3\x6c\x3c\x09\x3b\xee\x51\x12\xff\x9c\x5a\x06\x9b\xdc\xa6\x8b\x5f\x34\xc5\x33\xf0\x5e\xf0\xc7\xb4\xec\xf5\x33\xc2\x83\x63\xf7\x93\x9b\x36\x7d\x22\xdc\x18\x9e\xfb\xfa\x71\x49\x27\x03\xa1\x5e\xb3\x9f\x23\x7d\x7e\x84\xa4\xbf\xbb\x27\x7f\x78\x66\x11\x36\x76\x5c\xbf\xbf\x59\xd6\x9d\x90\xba\x64\xf4\x78\x4c\x61\x2a\x03\xa5\x0a\x09\xa6\x78\x56\x18\xe1\xa1\x7b\xff\x5c\x51\x9b\x21\x06\x9f\xa2\x9e\x58\x5b\xb7\xbc\x66\x60\x22\xb7\x55\xec\xe8\x92\x30\xc2\x65\x0e\xc9\x55\x66\xbf\x15\x18\x68\xb2\xce\x6e\xb1\x37\x1e\x66\xa0\xd9\xc2\x9e\x6c\xaa\x92\x44\x68\x8e\x59\xed\x57\x34\x2f\x91\xc1\xeb\x7e\xd7\xc5\x47\x99\x18\x06\x1f\x0b\x4c\x7d\xda\x4f\x3d\x21\x9c\xd4\x3f\x3c\x3c\x2e\x95\x47\x90\x3e\xf7\x3c\xdb\x60\xe3\x6f\xc2\xf0\x72\xef\x2b\xd6\x15\x39\x0c\xc4\x74\x03\x27\x1c\x1e\x17\x12\xfc\x6f\x5f\xb5\x93\x51\x8c\x63\xb0\x10\xcb\x57\x18\x3f\x90\x21\x04\xe9\x1f\xbd\x73\xde\xfc\x2b\xc1\x57\xb9\x55\xd1\x72\x47\x05\xe1\x7c\x32\x57\xe8\xda\xa6\x6a\x82\xaf\x62\x9b\x64\x7a\x6a\x09\x21\xbf\x32\x95\x37\xec\x68\x12\x61\x99\x1a\xab\xf7\xde\x9d\x1d\x84\x65\x4f\x4a\x66\x37\x4e\x6b\x13\xcc\x1f\x96\x95\x98\x65\x04\x32\xa8\xee\xce\x49\xbb\xc8\xa9\x4e\x18\xdb\xbe\x88\x3d\xae\xd9\x8b\xc1\xb9\xdd\x7c\xbe\xad\x4f\xae\x13\x2e\x70\x3a\x7e\x3b\x67\x74\x97\xe0\x69\x92\x6a\x55\x53\x19\xca\x60\xed\x6c\xd5\x17\x29\xc9\x7a\x04\x75\xaf\xf2\xd6\xa8\x6d\xf7\x08\xcf\xee\x4b\x2e\x2c\x37\x2e\x64\xe0\xcc\x5e\x57\x54\x7e\x4b\x99\xd0\x32\xb1\x4c\x57\xe6\xac\x11\x21\xe4\x62\xcf\x86\xe6\x99\x19\xb4\x57\x65\x53\xb4\xee\xcc\x67\xf0\x8d\xe7\xba\xcc\x43\x89\x2e\x42\x9f\xf1\xf4\xf8\xad\xd3\x0c\x03\x77\xae\x46\x2f\x9f\xb8\xd5\x84\x81\xd6\x37\xc2\x02\xd9\x89\x0c\xbe\x9f\xe8\x94\xdd\xe4\x7a\x8b\x20\x7d\xa2\xf0\x5b\xb1\xa5\x3b\x81\xfa\xf9\x8f\xee\x5a\x51\x4c\x38\x96\x39\x6f\x5e\xe4\x8d\x1a\x06\xae\x2f\x37\xae\x98\x7e\xd2\x41\x18\x0c\x97\x1d\x0e\x52\x7c\x4e\x78\x31\xd9\x79\x43\x67\x22\x91\xc0\xa7\x2a\xb8\x42\xa3\xcf\x9c\xc0\xeb\xd0\xa5\x66\xf0\xb8\x82\xd0\x35\xe7\xe6\x67\xbb\x91\x10\x06\x91\x99\x17\x65\x37\x14\xb9\x13\x46\xe8\x5c\xed\x8e\x03\x37\x08\x7b\xe7\xf5\x4d\xae\xbd\xde\x48\x10\xb8\x78\xd3\xd7\x3d\x5a\x93\xf0\x4f\xe8\xbb\x39\x47\x4e\x0b\x03\x33\xb7\xe6\xda\x25\x67\xf7\x13\xbe\xfc\x34\x8f\x1d\x90\x78\x37\x33\xef\x87\x1f\x58\x2e\xe6\x20\x04\x3c\x1f\x72\xda\x52\x6e\x4d\x58\x50\x6b\xa4\xe7\xe7\xd0\x43\xf0\x13\x1d\x2e\xee\xd6\x6b\x20\xfc\xbd\xf2\x63\x5e\xc3\xcc\x6e\xb3\x53\x7c\x9f\x6d\xac\xa0\x2c\x81\xcc\x92\x27\xc7\xd9\x6c\x18\x38\xce\x75\x2e\x7f\x26\x17\x4f\x50\x09\x69\xdc\xeb\xbf\xee\x01\x41\xd3\x9c\xed\x68\xb6\x62\x09\x61\x76\x69\xc4\xc5\x17\x29\x0a\x04\x8d\xf3\x11\x5c\xef\x6c\x57\x11\xb6\x5d\xf9\xe4\x56\x37\xf3\x15\xc8\xb9\x6e\xfe\x1d\xc5\x7e\x84\x60\x69\x7c\x21\xd4\xf4\x65\x1a\x03\xb1\xa1\xb1\x0b\x8f\x33\x93\x09\x8a\xbd\xaa\xa6\x5e\xa2\x73\x08\xb7\xb6\x95\xbf\xf1\xf9\x6a\xc9\xa0\xe5\xfe\x56\xe9\xdd\x77\x58\x09\xcb\x4d\x9c\x64\x5e\xeb\x37\x12\x0e\x1d\x38\x52\x18\x56\x9a\x49\x50\x8c\xfa\xbe\xd5\x75\x79\x17\xc1\x4d\x2a\xed\x63\xee\x70\x04\x81\x6f\xc9\x0a\xa5\x3d\x2a\xe1\x84\xef\xfd\xe2\x39\x6f\x04\x73\x09\x71\x0d\x4b\x56\xf2\x14\xdf\x21\x54\xb2\x7e\xfe\xfc\xf4\x81\x3a\x41\xe7\xc2\xe1\x40\xe3\xbc\x04\x06\x0d\x7b\x16\xcf\x96\x0b\xdd\x4a\xb0\x5d\xb3\x1a\x2d\xe3\xb9\x84\x91\xdf\xd7\x46\x79\x55\x93\x09\xeb\x8f\xf9\x3b\x98\xf8\x87\x13\x42\x5b\xaa\xa4\xa4\x37\xc6\x10\xac\x1f\xff\xda\xba\x49\xe3\x3e\x41\x61\xcd\xbc\x5b\xba\x75\x6f\x19\xe8\xfb\x9d\xe4\xea\x75\x08\x24\x1c\x19\x5c\xbc\x7c\x47\x5c\x2d\xe1\x90\xa1\xe3\xb0\xfa\xbf\xf3\x84\xd4\xf0\x66\x27\x1e\xe3\xbb\x84\x16\xf7\x15\x57\xf4\x4a\x0b\x08\x95\xfe\x6f\x2c\x22\xdf\x7f\x24\xb4\x56\x35\x79\x46\xcc\x00\xeb\x1c\x9e\x32\x4e\xcb\x3c\xc2\x2b\xff\x8f\xce\xcb\x9f\xc6\x30\x30\x7d\x5e\x60\xf5\x5f\x34\xf1\x65\x1e\xac\xb6\x3d\x62\x60\x16\xd3\xbc\x39\xfc\x92\x25\x83\x90\x29\xd5\x2f\x5e\x6c\x26\x84\xe7\x4b\x5b\x44\x2d\xbd\xdc\x09\x1c\x83\x02\xa5\x7b\x3e\x9a\x12\xae\x73\x96\x9f\x59\x9d\x1c\x40\x78\xb9\xc0\xa3\xe9\x8f\xd2\x1d\x42\x9d\xed\x66\xd6\xa5\xb7\xd2\x99\x09\x9f\x9b\xff\x64\x36\xbd\x20\x5c\x96\x55\x94\x5b\x63\x95\x4f\x98\x1f\x99\xfb\x52\x35\x29\x90\x81\xe3\x99\x1d\xfa\x17\x22\xb3\x19\x5c\x6f\x5c\x12\x91\xb4\x48\x83\xd0\x9f\xbb\x95\x4d\xc2\x47\x9d\x70\xab\xf9\x6e\xaf\x8b\xd9\x03\x82\x2a\xba\xcf\xe8\x7d\xf8\xca\x80\x99\x58\x10\x18\xe5\xda\xcd\x60\x5b\xa3\xc4\x49\x9e\x3a\x0f\x06\x7f\x3d\xbe\x47\x30\xd5\x43\x0c\xae\x19\xb3\xf4\x16\xb5\xd4\x31\xc8\xec\x3b\x5f\xbc\x4f\xc2\x9d\x50\x75\xb3\xf5\xd2\xc6\xbc\x5a\x06\x2e\x87\xfa\x2a\x0b\xbe\x27\x11\x8e\x71\x9b\xea\x9e\x4f\x3f\x4c\x70\x38\xd0\x74\x55\xaf\x49\x8c\xb0\x38\x5d\x70\x5a\xfb\x4d\x08\x21\x63\xcf\x82\xa9\xf0\x1d\x39\x04\x33\xdf\xb2\xca\x81\x96\x97\x84\x23\xab\x77\xdf\x8c\xf8\xf3\x89\x50\x72\x4e\x60\xdf\x9c\xdd\x3e\x84\x35\x85\x95\x22\x2b\x9b\x4f\x11\xd8\xaf\x4d\x9d\xcb\x4e\xbd\x4c\x78\xb3\x40\xa9\x24\xf1\x76\x0a\x21\x6b\x41\xb2\xb9\x84\xc1\x73\x42\x7a\xe4\xea\xe5\xef\xc5\x2f\x12\x26\xbf\xbe\x12\x39\x5d\x6a\x4c\x38\x28\x5d\x26\x18\xb2\x36\x9e\xb0\x52\xba\xc5\x59\xe5\xee\x0a\x42\xf1\xe2\x92\x3b\x6b\x4d\x45\x08\xe6\x39\xb2\x3f\xf4\xc6\xfa\x18\xc4\x0a\x5c\x33\x77\x2f\x10\x20\x18\x6c\x7e\xf2\x46\x4f\x6a\x0e\x41\x71\x29\x63\xb5\x2d\x2f\x98\x30\xc8\x3e\xdb\x25\x7b\xbe\x03\x61\xf5\xac\x49\xb1\xee\x55\x15\x0c\x96\x73\x3f\x5c\xd2\xf0\x57\x8f\x60\xae\xd6\x10\x55\xf7\xd4\x85\x20\x7c\xfd\xdf\xc0\x85\x59\x92\x84\xf1\x27\xab\x07\x58\x87\x3d\x09\x6e\x8d\xb9\xf9\x73\x9b\x6b\x09\xcf\x76\xa9\x4d\xbf\xda\x61\x4c\xb0\x46\xf5\xe9\x02\xb9\x87\x84\x00\x55\xe7\x5d\x47\x2c\xee\x33\x28\x33\xbd\x14\xef\xc7\x0c\x10\x3e\x95\xf0\xd5\x84\xb0\x77\x10\x0e\xc5\xd5\xdc\x8b\xa4\x48\xc2\xbd\x0b\x16\x57\x37\xfb\x96\x11\xd8\x97\x3f\x6f\xba\x6b\xde\x43\xf0\xbf\x76\xc7\x26\xb3\xbe\x8f\x10\x7f\x98\xc3\x58\xdc\xae\x92\xc0\x57\x31\xa9\xbf\x29\xb0\x89\xa0\x63\xb4\x2c\xcf\xef\xe1\x04\xe1\x73\x28\x6b\xf5\x91\xb7\xb3\x85\x21\xad\xb8\xa1\x76\xd5\xf1\x3c\x82\x91\x99\x42\x08\x8b\x77\x2b\xe1\xda\x91\xb9\xa3\xe5\x65\xa5\x04\xbb\xc8\x3d\xcf\x6e\x64\x44\x13\xbe\x2f\x74\xd8\x18\x7a\x25\x9c\x30\x25\xc3\x31\x6d\xb1\x34\x9a\xa0\x16\x24\xec\x76\x8f\xca\x19\x58\x55\xef\x9b\xab\x70\xba\x99\xf0\x93\xf3\x77\xb0\x49\x59\x06\x21\xef\x54\x3e\xaf\xdf\x92\x32\x82\xc8\x33\x31\x65\xf7\xe7\x01\x04\x3d\xc5\x3b\x2a\xa3\x3a\xd1\x84\x75\x82\x5c\xdd\xbb\x1f\x27\x30\x30\x52\x1f\x4d\x88\xda\x9f\xcb\xe0\x9e\xd7\x1b\x15\x7f\xe7\x5f\x84\x75\x9a\x81\x58\xfa\xb0\x86\x50\xbc\x60\xf5\xa9\x27\x4e\x23\x84\x82\xdc\xc9\x6d\xcb\x46\x13\x09\x1e\x57\x45\x65\x7f\x1f\xd5\x63\x26\x48\xd1\xa5\x6b\x65\x02\x21\x68\xab\xdf\xfb\x93\xfd\x76\x84\xdf\x1b\x8e\xbd\xde\xb2\xdd\x85\x50\xd8\x17\xf6\x52\x4e\x4d\x85\xf0\x99\x3f\xfd\x84\x0b\xdb\x63\xc2\xfa\x65\x99\x6d\x4b\xf6\xea\x13\x5e\x6e\x59\xac\x64\x53\x9c\x40\x90\x32\x3c\xbe\x26\x30\xaa\x9f\x81\xb3\x49\x91\x58\xc8\x19\x03\x42\xf5\x2a\x95\xca\xbb\xf5\xaf\x09\x9d\xd2\xcb\x85\x98\x99\x7d\xf1\xfc\xbb\x4d\x71\x62\x55\x09\x0c\xa4\x5f\xcb\x6c\xd3\x92\xac\x21\x54\xde\x9c\x7f\xc0\xbe\x36\x96\xc1\x66\x39\xa5\xe5\xfc\xef\xca\x09\xaa\x5c\x23\x16\xf3\xdf\x59\x30\xe8\xf9\xcb\xdf\xb4\x40\xf8\x15\xa1\x51\xe1\xb7\xcc\xbb\xd7\x56\x84\xa2\xb4\x82\x82\xd6\xd3\xd1\x84\x10\xc5\x2f\xc1\x39\xdf\x07\x08\x61\x59\xf9\xbd\xed\x45\x61\x84\xa4\x88\x8d\x06\x97\x14\x1e\x10\xc4\xe3\xe2\xd7\x89\xe4\xaf\x23\x48\xb3\x38\x05\x7c\xdb\x16\x47\x50\x5e\xce\xc7\x83\x0d\x45\x04\xc3\xa8\xd6\xfb\x5a\xcf\x2d\x66\x4e\xfa\x5c\xd9\x37\x33\xc6\xf4\xdf\x02\x8d\x46\xc3\x6c\x82\xce\x3e\xd9\xfe\xcb\x49\x9d\x04\x35\xdb\x1f\x67\x3f\x9e\x0e\x20\x8c\xf0\xfd\xb4\xef\x50\xca\x27\xc4\xc7\xf0\x1a\x0b\x2a\x2c\x21\x8c\xb4\x9d\xd9\xe7\xf9\xe2\x35\xe1\xe0\x16\x61\x91\x62\x97\xd7\x84\xb9\x8b\x36\x0f\xb6\x3e\xb1\xa3\x89\x76\x31\xb6\x16\xfd\x3e\xc2\xb5\x7c\xbf\x12\x66\x26\x71\x9d\x58\x2a\xee\xe4\x20\x47\xf8\xa0\xde\xcc\xc5\xe2\xa6\x4c\x70\xae\xb1\xe2\x7c\x57\xfd\x91\x20\x5b\x16\xdd\x2e\xfb\xf2\x32\xa1\xce\xeb\xe1\x72\xa9\x5b\x8e\xcc\xff\x99\x75\x7e\x7e\xe6\xb3\x4d\x2c\x09\xf3\xc2\xbb\xd6\x9b\x4a\x5c\x22\x5c\xad\x98\x0a\xfe\xf9\xc4\x81\xf0\x4f\x74\x56\xc3\x91\x49\xbb\xff\x81\xde\x8c\x97\x32\x86\x6b\x34\x08\xa2\x4a\xae\xbe\xbe\xdb\xe3\x19\x08\xaf\xd9\xc0\x73\x7e\xc1\x57\xc2\x95\x03\x99\xc6\x95\x3e\xe9\x0c\x1c\xc6\xd6\x71\xf8\x7e\x48\x9a\xf9\xdd\xfe\x15\xf1\x28\xcf\x9e\x81\xfd\x9f\xa7\x23\x9f\x3b\x18\x82\x97\xfc\x73\x9d\x3d\x13\x33\x47\xa4\x7c\x47\x64\x22\x97\x35\x61\x63\xcf\x8b\xa0\x81\x10\x6b\xc2\xcd\x83\x85\x21\xb7\xcf\x3c\x20\x7c\x2d\x51\x7c\xfd\x24\xe6\x30\xa1\xd4\x63\xf8\x9c\x58\x75\x38\xc1\xfc\xd6\x23\x9b\x93\x5b\x3e\x65\x61\x6a\x68\xbe\x7d\xde\xa9\x02\x82\x99\x2b\x73\xf8\x87\xc9\x4d\x82\x7a\x62\xf6\xa2\x93\x9d\x03\x0c\xb4\x78\xb7\xb1\xeb\xcd\xcb\x25\x64\xd2\x8b\xd7\x99\x6c\x19\x84\x54\x6e\xcb\xac\x81\xd7\x57\x09\xf7\x8c\x22\xf4\x1b\x5e\x29\x11\xa6\x65\x03\x4e\xc8\x7e\x90\x20\xdc\x3e\xa9\xee\x5b\xf0\x4c\x9e\x10\x5d\x6e\xa2\xb7\x60\x39\x2f\xe1\xa8\x73\x7b\x71\xc3\xd4\x98\x10\x6e\xc8\xdf\xdf\xbb\x66\x87\x0b\x61\xf6\x0f\x3f\xf9\xf4\xaf\xe1\x84\x2b\x29\xdf\xeb\x9b\x66\x29\x12\x9a\x5a\xc3\xa7\xb3\x67\x97\x30\xf8\xbe\xbd\x40\x51\x62\xba\x92\x01\xbb\x89\xeb\xad\x75\x5b\x44\x08\x3d\x7a\x02\x43\x1c\xf3\x57\x13\x7c\xb3\xe6\x8c\xb6\x0d\xdd\x65\x10\x23\xb7\x60\x20\xfc\xf2\x01\xc2\x2f\xe9\xe8\x5d\xe6\xaf\x5c\x09\x2f\x6b\x0b\x2c\xf7\x4f\x72\x11\xa4\x8e\x89\xbe\xdb\xc5\xaf\x40\xb8\x70\xe2\x9d\x70\xe7\x0d\x05\x42\x8c\x62\xd8\xbf\x6f\x57\x1b\x08\x15\x59\x66\x86\x9e\x27\x05\x08\xba\x6c\xab\x1f\xfc\xe6\x89\x25\x7c\x0f\x92\x53\xaf\xd8\x38\x46\x88\x52\x3e\xf4\xce\x4f\xda\x92\xe0\xc0\x12\x27\xb5\xf5\x58\x17\x41\xa0\xf5\xc1\x97\x2f\x33\x1d\xd9\x6a\xad\x3b\x4f\x7b\xc2\x09\xf3\xde\x0a\xbe\x6a\xfc\xfa\x81\xc1\xe4\x86\x23\xec\xa6\x6c\x0f\x09\x72\x15\xbe\x17\x3c\x37\xda\x10\x14\x33\x73\xda\x4e\x6b\xf6\x11\xd2\x43\x4e\x27\x7e\xf6\x7a\x4d\x50\x2f\x2c\x52\x8e\x97\x54\x23\x70\x1e\x2f\x35\xe1\x7e\x14\x4a\x78\x1c\x73\xdb\xca\xe9\xdf\x11\x82\x40\x82\x1c\x0e\x5d\x7a\x44\xf8\x72\x60\x2b\xef\xa9\x9c\xeb\x84\x8b\x5a\x96\x77\xfb\x8c\x4b\x09\x4a\x2a\x5d\x96\xf5\x3c\x03\x84\xf3\xec\x7d\x07\x3c\x7f\x38\x13\x0a\x9c\x4c\x5e\x3f\xb5\x33\x20\xf4\x56\xc4\xba\xa7\x36\x4b\x10\x76\x0d\xf1\xaf\x79\x63\x94\x4f\x08\xf7\x0f\x53\x98\x16\x18\x14\x42\xf6\x7a\x7e\x6f\x75\x7b\x61\x42\x5b\xb9\xc0\x8f\xcb\x3a\x3b\x09\x76\x7a\x01\xc3\x3b\xd8\x12\x08\x4f\xee\x26\x5d\x75\x4f\x2a\x22\x34\x14\xdc\xb2\x18\xff\x72\x91\xb0\x92\x29\x08\xba\xa4\x5b\xc5\x20\xbd\xcd\x6d\x60\xd1\x5c\x49\xc2\x92\x8e\xd4\xfb\x52\x4b\x43\x08\xef\x53\x8a\x0a\x4f\x4e\x77\x10\x4c\xe4\xaa\x64\x2a\x6e\x04\x13\xa2\xd2\x1e\x1f\xde\x39\x25\x4c\x98\x6b\x97\x2f\x7e\xa9\xc7\x85\xc1\xe5\x64\x43\x6d\xbd\x45\x07\x09\x6d\xbd\x93\x7b\xb6\x58\x7e\x66\x20\x6e\xa9\xd2\x79\x77\x4e\x03\x83\xaa\xa9\xe9\xc8\xcd\x1b\x72\x09\x5f\xa2\xe6\xaa\xfd\x3a\x5a\x49\xd0\x2f\xb8\xfa\xfe\x3f\x90\xea\xf6\x9e\x94\xb9\x33\xc2\x40\x66\xea\xd0\xc6\xb2\x7b\xc5\x0c\xca\xd5\xc5\xbf\x9e\x38\xd3\x4e\xe0\xe7\xf8\x38\xfc\x73\xa6\xa3\xe1\xc4\x17\x36\x36\x03\xf3\x2d\x9c\xd7\x4a\x2c\xf3\x24\x08\xb6\x75\x17\x4c\xd9\xe6\x10\xa6\x6b\x3b\x15\x2a\xbc\x6d\x08\xdf\x7d\x56\x55\x04\x92\x0d\xa1\xb7\x9c\x55\xa9\xba\x49\x9f\xc0\x16\x18\xae\xb2\x5f\xe8\x15\xe1\xc1\xb8\x88\x8d\x96\xa7\x0d\x41\x9d\x1d\xba\xff\x95\x77\xfe\xb1\xb7\x38\x96\x96\x48\x30\xaa\x99\x73\x5e\x54\x20\x90\x81\xf6\xce\xfe\x03\x9c\x29\x8a\x84\x9e\xe6\x14\xe3\xe4\xb8\x8f\x04\xa9\xcc\xc8\x6e\x01\x9f\x99\x2b\x89\xed\x7d\x89\xf1\x48\x10\x7e\x3d\xb9\x7f\xb0\xe1\x6e\x13\x83\xdf\xf2\xcf\x06\xd8\x0f\x7a\x10\x4e\x70\xf9\xde\xde\x62\x17\xc7\x40\xb8\x21\x66\x49\x6f\x64\x13\x83\xa9\x70\xc5\xe4\x17\xcc\x2e\x42\xe9\xa6\xe5\x45\x0a\xc2\x9d\x0c\x52\xdc\xe3\xbd\xeb\xf9\x5e\x12\x32\xde\x66\x07\xed\x13\xee\x61\x90\x9e\x28\xbf\x57\x76\x8e\x06\x21\x23\xa7\x51\x68\x25\xab\x26\x61\xd8\xb9\x74\xbc\x36\xb9\x92\xc1\xdc\x5c\x65\x7d\x4c\x56\x10\x6c\x0b\xd5\xda\xa6\x9e\x9e\x20\xac\x70\xeb\x9b\x5a\x61\x12\x48\x30\x88\x3b\xb8\x59\x38\x39\x8e\x30\x9b\x4b\x6c\x47\x9b\x54\x22\xc1\xfb\xa3\xf0\x51\xdd\x73\xb5\x04\xed\x74\x8f\x91\xe0\xc3\x09\x84\xda\xd5\x26\x87\x61\xd7\x4d\xb8\x2f\x2e\x98\x98\x73\x3a\x8c\x50\xee\x55\xb9\x3a\x98\xa3\x8f\xd0\xc2\x31\xf1\xfd\xd9\x09\x09\x06\x0b\x4c\x7e\x8e\x0d\x3d\xab\x22\x1c\x28\x4f\x28\xfd\xe9\x1f\xcb\xa0\xba\x88\x43\xf0\x93\xbc\x25\x21\xae\xc7\xef\xd0\xb7\x20\x0f\x42\xdb\xe5\x34\x7d\xb3\xf2\x24\x06\x3f\xe3\x6b\xea\x1d\x1f\x8b\x30\x50\xb6\xe6\x6d\xdb\xbd\xa1\x99\xa0\x92\x71\x4d\xfb\xb6\xb4\xfb\xff\x80\x2b\x5b\x90\xd5\x35\xab\x22\x82\x45\xf6\x19\x6e\xad\x19\x63\xec\xd7\x98\xed\x1e\xe6\x48\x50\x9a\xba\x39\xeb\x2d\x57\x36\x83\xf4\xd8\x39\xd9\x26\x96\x01\x84\xe4\x89\x0a\xcd\xb3\x4a\x0d\x0c\xe4\xdf\x7a\xe6\xee\x0c\xbc\x48\x50\xbd\x7b\x8d\xbd\x2e\x2d\x86\x81\x84\x59\xc0\xb3\x65\x0d\xfa\x0c\xa2\xbe\xec\x2c\x37\x16\xbf\x4e\xd8\x24\xf8\x77\xde\x68\xe6\x09\x42\xeb\x8a\x4f\x71\xb6\x1b\xd2\x18\xf8\x3b\xb5\x2f\xde\xff\x3c\x9c\x81\xd8\xe9\x67\x4a\xcf\x15\xf2\x09\x83\xa2\xa2\xdc\x05\x7f\xdb\x08\x05\x49\x8f\xef\x9d\xd9\x0c\xc2\x41\xc7\x80\x28\xeb\x8a\x3a\x06\x8f\x32\xf5\x72\x2d\xb6\x55\x31\x38\x5c\x61\x3a\xc7\xc6\x3c\x98\x90\xca\x6a\x13\xd6\xb4\x21\x93\xf0\x64\xb3\x40\xad\x99\x64\x06\x83\x12\xc5\x94\x90\xd4\xde\x3e\x82\xd6\x46\xe9\x7b\x31\xa9\xbd\x84\x9b\xef\xd6\x0f\x5f\x71\xef\x62\xe0\x0c\x2d\x89\x15\xff\xfe\x11\xd6\x46\xaa\x6f\x8e\x9c\x89\xdc\x9e\x0c\x77\x38\x5a\xbd\x27\x48\xaa\xc8\x4e\xaf\x68\xaa\x20\xdc\x08\x5d\xf5\xfa\x57\xdc\x57\x82\xc9\x51\xaf\xd7\xbb\x0b\xeb\x08\x6f\x9f\x1e\x31\xd5\xbd\x52\x49\xe0\x3a\x6d\xeb\x57\x17\xed\x4f\x98\x5e\xf7\x52\x59\xe2\x89\x3b\xa1\xf4\xb2\xd0\x68\xc0\x22\x61\xc2\x71\xe1\x14\x7e\x0d\x45\x7f\xc2\x16\x46\x61\xcf\x5a\x73\x05\xc2\xe4\x3c\x4e\xe5\xed\x3b\x6d\x09\xd3\x36\x86\x5b\xad\xef\xbc\x24\xfc\xe9\x3f\x9b\x64\x3e\x03\xed\xcc\x1f\x8d\x43\xa6\x35\x42\xf0\x0d\x12\x11\x71\xd8\x54\x46\x58\x6f\x22\x96\x53\x11\xe3\x41\x98\x5f\x36\xac\x2a\xe1\x5b\x4b\x98\x9f\xef\xa0\xfa\x42\xcf\x85\x60\xfd\x5a\xf4\x6a\xf0\x89\x48\x02\x6f\xd0\xa9\x4b\x06\x11\x87\x08\x17\x78\xb2\x2a\xc5\x83\x42\x09\xad\x3c\xcf\x39\x8a\x96\xe7\x30\x78\x97\x1a\x97\x16\x34\xd3\xb1\x52\x48\x38\xa1\x74\xa1\x8b\x20\xca\x53\x6f\xec\x37\xa7\x90\x20\xb2\xd3\xfe\x93\x3f\x4b\x2a\x83\x84\x98\xe0\x90\xae\xb9\x17\x08\x73\x15\x2e\x89\xc7\xbb\x37\x10\xc2\x4b\x9f\xae\x13\x1b\x60\x08\xb2\x26\x19\x6e\x9f\xf9\xda\x09\x41\xeb\xe3\xfb\x0f\xa7\x57\x11\xba\x64\xef\x04\xee\xff\x73\x98\xd0\xdf\x66\xa5\x15\xfa\x34\x9d\xb0\xd7\xe9\x97\xe6\x41\xfb\x7d\x04\xb1\xb7\x8d\x39\x77\xee\x65\x10\x36\x16\xc7\x76\xcc\x15\x0f\x25\xcc\xe6\x0e\x54\x5f\x56\xfc\x85\xe0\x19\x9b\x68\xf2\xcd\x38\x9c\xc0\xcd\x72\xe3\x71\xe2\x6d\x3f\xc2\x31\xa7\xeb\xab\x32\x79\x73\x18\x70\x08\x6f\x6b\x8d\xb5\x89\x64\xa0\xf5\x88\x4b\x8c\xf5\x65\x3b\xa1\xb1\xb9\xf4\xa7\x77\x58\x35\xa1\x23\x41\x8c\xf5\xc3\xef\x3c\x42\xf6\x6f\x9f\x95\xb1\x39\x01\x04\x83\x3f\xa3\xf3\x45\xc6\x6f\x12\x82\x6f\xf6\x56\xed\xfd\x55\xc3\xa0\x70\xfa\xb4\x24\xc7\xd6\x5c\x82\x51\x95\xcc\x6e\x59\x93\x7a\xc2\x8f\xfd\x2b\xb7\x34\x5e\x1e\x26\x5c\xe7\x33\xdf\x33\xd6\x99\x41\xb8\xb2\x50\xf2\xcc\xc2\x25\x2d\x0c\x4e\xaf\x11\xe9\xba\x1b\xe5\x45\x60\x3d\xb1\xef\xf8\x02\xc9\x44\xc2\xf0\x81\x15\x9f\x75\xb6\x7b\x12\xb4\x76\x4b\xba\x64\x06\xbb\x12\x96\xbe\x78\x30\x77\xbe\x93\x21\xa1\xae\xa4\xa9\xcb\x6d\x6d\x30\xc1\xbd\x3a\xd5\xc8\x5b\x26\x9c\x90\x99\x6d\xdc\x65\x1b\x2e\x43\xa8\x10\x7b\x71\x47\xfd\x49\x22\xe1\xd5\x01\xf1\xde\xda\x30\x6e\x42\xa7\xd8\x28\xbf\xae\x73\x2e\x03\x1f\xe5\x2a\x07\xe5\xf3\x21\x0c\xb8\x1a\x9b\x97\x3c\xcc\x2d\x25\xf8\xc8\xee\xbe\xc9\x7e\x27\x9a\x70\x72\x52\xae\x39\xad\xc9\x89\xc1\xe8\xdd\xa8\x16\x0b\xdf\x07\xff\x03\xb1\xaa\xff\x42\x3e\xa0\x8f\x41\xcf\x39\x21\xac\x7d\xd2\x45\x48\x6e\x3d\xac\x51\xe7\x38\x57\xf8\xff\x3a\x46\xb9\x82\x2b\xab\xa7\xd2\x09\x3e\x05\x5b\xf2\x72\xcf\x74\x10\x8e\xf2\x8e\xf7\x5f\x15\xcf\x26\x14\x3f\xfe\xc1\xd6\xb5\x34\x81\x50\x38\x28\xb1\xf5\xea\xa3\x30\x42\xda\x55\xdb\x1f\xe5\xc7\xaa\x09\x37\x9b\x6f\x38\xff\x9a\x1a\x25\xf0\xea\x4b\x74\xde\x93\xcc\x26\x7c\xb6\x35\x68\xe2\x8d\x0d\x25\x8c\xd8\x3c\xfe\x2e\x19\xe4\x47\x38\xdf\xac\x73\x29\xbc\x33\x9d\xc1\x96\xeb\xda\x43\x1b\x97\x0f\x12\x3a\x94\x8c\xce\x4f\x2a\xd4\x13\x56\xf6\x68\x2f\x0f\xd1\x9c\x26\xac\xf9\xfc\x3b\xbf\x3a\xb8\x92\xa0\xe9\x53\x5f\xa0\x96\x1a\x48\xa8\x8f\x36\x3d\xb9\x6f\x5f\x20\xa1\x4f\xd9\xdf\x68\x60\x63\x23\x61\xd0\xa7\x72\xb1\x9f\x42\x3b\x21\xe3\xf2\x87\x8c\x4b\x5b\x96\x0b\x63\x50\xb2\xfd\xdb\xc2\x2d\x75\x84\x5c\xa9\xae\xcb\x56\xee\x3f\x18\xac\xed\xb3\x8d\x2c\x9d\xbf\x5c\x18\x5d\xad\xe1\x57\xf8\x66\x5e\xfe\xff\xde\x50\x6c\x83\xbc\xeb\xed\x0f\x1f\x18\x44\x1d\xb9\x17\xfc\xb8\x2e\x90\xd0\xa4\xc9\x5b\x16\xfa\xed\x22\xc1\xc9\x8d\x4f\x3c\xde\xc2\xf9\x7f\xe0\x11\xdf\xd3\x88\xcd\x17\xad\x08\x6d\x1b\x4a\x23\x79\xa4\x1d\x19\xb0\x8c\xc6\x56\x77\x76\x04\x13\xfe\xda\x2e\x3c\xa9\x60\x6c\x4b\x08\x8a\x3d\xd6\x22\x61\x1e\x49\x30\x7b\xe7\x7b\xf4\xb7\x85\x2b\xc1\x3f\x4b\x6c\xb2\x66\x81\x27\x21\x53\xa4\x74\xba\x91\xcd\x93\x50\x35\xed\xf4\xfc\x80\xec\x2c\x42\xb2\xb9\x50\xae\xbb\x5d\x16\x03\xef\x4f\x39\x3f\xb8\xa5\x45\x09\x56\xea\x52\x8c\xc5\xce\x18\x82\x59\xf0\x1a\x73\xbe\xbc\x5b\x84\x8b\x11\x8d\xb9\x13\xae\x1f\x09\xed\x81\x47\x4f\xe9\xc9\x4b\x12\x0c\x96\x0a\x15\xb9\x4c\xdd\x21\xa8\x7d\x0b\x93\xde\xa2\xb3\x9f\x50\x39\x7a\x36\xe8\x70\x83\x27\x81\xe7\x46\x8e\x53\x81\x4f\x3a\x81\x73\xb6\x5c\x8a\x93\xfe\x1b\x06\x93\xd7\xaf\x6b\x97\x7d\x4c\x26\x7c\x58\xfd\xa6\x2d\xb8\x71\x2c\x0b\x27\x5c\x2e\x7c\x4c\x4f\xad\x20\xc4\x37\x76\xce\x99\xc8\xd5\x26\x78\xc5\x3d\xfc\x54\xb6\x2c\x99\xf0\x4f\xef\xbb\xf3\x6d\xbf\x06\x06\x9f\xc3\x2e\xb3\x04\xcf\x2a\x63\x60\x79\x43\x33\xfe\xce\x54\x06\x83\x28\xb6\x75\xdd\xfd\xcf\x87\x09\x6b\x63\x7c\x5f\x3d\xc8\xca\x64\xa0\xed\x2c\x39\x3f\x85\x37\x80\xa0\x58\xa0\xe9\xb3\xe3\x51\x32\x61\x82\x79\xd9\x34\x6b\x45\x39\x83\x85\x74\xe9\xdc\x4e\x3b\x65\x06\xe6\xba\xe9\x5a\x87\x0a\xee\x11\x5c\x47\x3e\x16\xad\xf4\x72\x25\x54\xbf\xb2\x98\x57\xdb\xe9\x4f\xd0\xad\x2d\xd9\x22\xb6\xcf\x8d\x30\xfc\xd9\xb8\x6c\x4f\xe5\x63\xc2\xda\xbf\x37\xa2\x56\xda\xdd\x23\x1c\xe2\xf4\x1b\xcb\xec\xd5\x20\x88\xef\x34\xf9\x2b\x28\xb0\x82\x20\x25\x2c\xfc\x9e\xab\xf0\x2d\xa1\x61\x47\xd7\x0e\x8e\x03\x2b\x08\x97\xd7\x1e\x6d\x6c\x2d\x11\x26\x28\x3f\x5d\x7c\x68\xf2\x5a\x2c\xe1\xca\xd6\xc4\x5d\x21\x1b\xaa\x19\x44\x24\x1c\xbe\x24\x53\xd9\x4b\x88\xfb\xee\x55\xa7\x2c\xbd\x89\x70\x3d\xfe\x5b\xae\xed\xf4\x07\x42\xca\xe8\x5c\xc5\x23\xd7\x9d\x18\xec\x5f\xba\xaf\xd0\x24\x31\x82\xc0\x11\xb7\x96\xd7\xab\xa7\x8d\xb0\x42\xfe\xe9\xfe\xaf\xfa\xd6\x84\x5a\x3b\x03\xa7\x5e\xc3\x2b\x04\xc1\xd5\x65\x73\x4f\xe9\x74\x30\x50\xdd\x60\xfa\x33\x68\xa5\x19\x61\x83\xc5\xe0\xfa\xf3\xe3\xd5\x04\x9f\xe7\xa2\x05\x5f\x44\xa7\x84\xa0\xbc\x4d\x6e\x6a\x90\xd5\x96\x90\xb9\x21\x69\xdd\x8b\x2f\x3a\x84\xbb\x9f\x1d\x5a\x15\x6e\x9a\x10\xf2\x0e\xd8\xa9\x1a\x0f\x72\x13\x6e\xdf\xbe\xd5\xbf\xc2\xf0\x07\x61\xae\x51\xa4\x8e\x58\x19\x17\x61\xc9\x1d\x81\x87\x89\x17\x2c\x09\x82\x7e\x16\xc3\x52\x9a\x12\x84\x09\xad\xe0\x96\xc1\xae\xb0\x99\xfb\xf3\x11\x9d\x78\x81\xfb\x84\xfa\xfc\x82\xf8\xe6\xfb\x62\x04\x4d\x1e\x16\x96\x7f\xea\x6a\x33\x1b\xda\x44\x75\xf8\x58\x16\x21\x32\x46\xf3\xe1\x83\x5a\x15\xc2\x36\x73\x7b\xc9\x29\x91\x87\x04\x8f\x49\x73\xfd\xfb\xf3\x26\x85\xb0\x75\xcc\xeb\xe2\x81\x46\x1b\x82\xd7\x57\xdb\x72\xd6\xbc\xf5\x84\x25\xbb\x9e\xed\x8e\x98\xde\xff\x3f\x70\x24\xa5\x3e\x7a\x81\xee\x56\x02\xcb\x2f\xb5\x13\x2f\x7d\x1f\x12\xae\x14\x57\xdf\xe4\xb6\x4d\x66\x30\x6c\x28\xc6\x1f\xe9\xef\x45\xd8\xb0\xe9\x9d\x62\xc6\xbd\x1a\x42\xd6\x9a\x24\xa5\xdf\x51\xc5\x84\x8c\x2f\x76\x77\xcd\x8f\xdf\x24\xac\xee\xcf\xbf\xcc\xa5\xf3\x99\xc1\x95\x2f\x05\x81\x12\x87\xd2\x19\x3c\xbd\x28\x5c\xac\xfa\xbc\x92\x50\x71\x61\xc0\x3b\xfb\xb8\x13\x61\x4d\xd6\x07\x1e\x57\x5c\x24\x7c\xc8\x70\x73\x18\xd7\x1c\x65\x90\x35\x77\xed\x9f\x17\x6f\xed\x08\xde\xdd\x5b\x26\x35\x3a\x2b\x19\xf0\x9f\xbe\x7e\x97\xed\xec\x2d\x42\x91\x90\x5f\xd4\xe7\xcd\xa3\x84\xd5\xb3\xcd\xbd\xa6\x7e\x9e\x26\xb0\x34\xce\x9b\x95\xf9\x61\x94\xd0\xe5\xc9\x12\xbb\xf7\xd6\x08\xe1\xd0\xf9\x2f\x16\x25\xb7\x3b\x08\x22\x1f\x8f\x36\xe5\x9a\xf0\x10\x58\x97\x37\x83\x6b\xbe\x3b\xe1\x3e\x37\xaf\xe2\x41\x55\x5b\x42\x93\xe3\xe2\xbf\x25\xfb\x6b\x09\xe8\xb0\x12\x75\x5f\xa4\x4b\xa8\xe8\x36\x94\xbb\xd1\x9c\x4c\x38\x2f\xcb\x7e\xd1\x6a\x95\x2a\xe1\xc5\xea\x05\xfb\xee\x0c\xa6\x11\x4c\x4d\xfd\x23\xbe\x73\x47\x12\xc6\x5d\x1a\xee\x6d\xdf\xec\x46\x88\x9f\xff\xfd\xbd\x58\xd0\x5a\x42\x32\xeb\xaa\x39\x27\x0d\x88\xf0\xc0\x54\x20\xe7\xe5\x1f\x4d\x02\x9b\xee\xae\xe0\xda\xa8\x2a\xc2\x3f\xee\x05\x46\xeb\x83\x3c\x19\x18\xce\x59\x69\xe4\xd8\x5e\x41\x78\x11\x7f\x91\xa9\x79\xbf\x96\x50\x78\xf5\x84\x4c\x40\x34\x3b\xc1\x7f\xa9\xf6\xd5\x0d\x4a\x35\x84\xaa\x39\xce\x4d\x1a\x1d\xb6\x04\x7e\x5d\xdf\x20\xe7\x5b\x1d\x42\xf0\xd9\xb0\xb8\xa7\xe8\xc5\x36\xc2\xed\x9f\xfb\xcc\x5d\x65\x93\x09\x64\x2b\x1e\xb0\x31\xc6\x90\x81\x9e\x63\xc1\x82\xff\x8c\x73\x66\xc5\xee\x17\x01\xda\x04\xbe\xb5\xc6\x41\xc2\x82\x1a\x84\xf0\xcd\xd7\xeb\x02\xff\x76\x11\x24\x3a\x2c\x6f\x3a\xcc\x44\xe9\xb6\xf1\x2e\x4a\xb1\x73\x09\x0b\xc4\xde\x87\x7a\x65\xaa\x11\x5e\xee\xe4\x58\xaa\xe6\xc8\x10\x78\x59\x8e\x09\x76\xbd\x2d\x20\xe4\x8b\x89\xd7\x37\x1b\xbf\x23\x8c\x95\x5c\xe2\xd1\x8a\x0a\x25\x7c\x5b\xc9\x73\xf9\xd1\xb7\x6a\x06\x2a\x9b\xcf\x9c\xf8\x3d\x95\x40\xb8\x6b\xb8\xce\xdf\xf8\x95\x21\x03\x67\x3b\x5a\xfd\x5f\xe7\xa4\x88\xb1\xc8\x8f\x5d\x39\x84\x92\x6d\xb5\x51\xe1\xdb\xab\x85\xd0\xaf\x7b\xb6\x9a\x3d\x7e\x8c\xd0\xb0\x66\x5d\x89\xf5\xa7\x1c\x42\x84\x29\xef\xe2\xc7\xb2\x9f\x09\xa9\xe5\x82\x61\xb9\x8b\xf3\x09\xcf\xd8\x1b\xf5\x3e\xee\xff\x4c\xe8\x59\xfe\x70\x7a\x42\xcb\x93\x20\xff\xe2\xdd\xbe\xff\x60\x53\x3c\xdb\xb4\xce\x9f\x1f\x42\xff\x67\x04\xe2\x0b\xe2\xe3\x5f\x8b\x11\x78\x37\x9a\xe7\xb3\x4c\x7f\x26\x34\x0c\x94\x6d\xd2\x11\xd0\x22\x9c\x4b\x0e\xfa\x10\xa0\xa7\x4c\x18\xba\xad\x71\xab\xf5\x98\x3b\xe1\x92\x92\xd5\x48\xdd\x75\x7e\x02\x7f\x53\xd6\xb1\x09\x43\x6f\x42\x9c\xc7\x11\xe1\x0a\xd9\xc3\x34\x31\x10\xed\x15\x2b\xed\x48\x58\x3f\xa4\xed\xe5\xd2\xf8\x5e\x08\xb2\x1b\x25\x6c\xfb\x5f\xec\x9d\x79\xa8\xa7\x14\xb9\x8d\x87\x84\xfe\x0f\x82\xf8\x7c\x1c\xeb\x56\x7f\x14\xc2\x6d\xcf\x1e\xb3\xad\xfe\x6f\x09\xdb\xd2\xae\xee\xbb\x7b\xa7\x9d\xc1\xa4\x23\xcf\x67\x65\xa3\x3f\x04\x87\x66\x83\x06\xa9\xe1\x7f\x84\x4b\x9c\xa7\xaf\x0b\x2f\xa8\x63\xb0\xb7\xc3\x2b\x51\xaf\xe6\x0f\xa1\x5f\xf2\xe2\x48\xac\xc2\x1f\x02\xba\x47\x9f\x95\x5d\x0a\x21\x74\x5c\x6e\xab\x54\x7b\x12\x44\x58\x5b\x71\xb8\xb0\x3d\x65\x90\x50\x7e\x3e\xaa\x50\xea\x4e\x0b\xa1\xe0\x79\x76\x4d\xed\xb9\x30\xc2\xbe\x21\x8f\x9b\x8b\xba\x9b\x08\x2f\xbd\xd7\x7c\xff\x0f\xf6\xcf\x5f\x17\x31\x70\xbe\x96\x30\xb8\xf1\x5f\xe4\x54\x7f\x0f\x83\xb4\x6a\x26\x72\xf1\x4c\x24\xd3\x98\x69\xa2\x39\x3b\x91\xd0\x7b\xf9\xd6\xa3\x85\x86\xcf\x09\x46\xa9\xac\x1f\x47\x3d\x2a\x08\x35\x99\x0f\xd5\xbf\xb1\x07\x11\x9c\xeb\xe5\x26\x06\xd7\x9d\x22\x08\x9a\xe8\x35\x2c\x51\x8f\x22\x78\xb2\x34\xdc\x5c\x94\x9a\xca\xe0\xe8\xea\x8c\xe8\x54\xbf\x1b\x04\x1b\xda\x5d\x63\x65\x73\x84\x30\xee\xbf\xa7\x38\xe8\x74\x1a\xe1\x92\x44\x8a\xe6\xbc\xef\x3b\x09\x3e\xaf\x66\x0d\x66\x39\xbd\x24\x0c\x18\xb1\x5f\xb5\x18\xba\x40\x78\x2b\xd2\x2d\x93\xe0\x24\x4c\xb0\xed\xf6\x3e\xdc\xfa\xea\x22\x41\xfc\xc3\xc7\x43\x36\x9d\x71\x84\x82\x97\x53\x13\xbc\x57\x67\xce\x91\xef\x68\x8e\xca\xbc\x01\xc2\xfd\xd8\x31\x9d\xb5\xd3\xed\x0c\xf8\x72\x6c\x1f\xff\x69\x52\x23\x08\x1f\x96\x3e\xa5\x90\x7c\x8c\x20\xa0\x3b\xcf\x40\xa0\xee\x29\xf3\xff\xff\xbb\xd0\x4b\x84\xe9\xa8\x2e\x83\x28\x97\x6e\x06\x7d\xb7\xc6\x53\x93\x94\x4f\x13\x46\xf6\xaf\xf7\xe2\xf2\xbd\xc4\x20\xe4\xeb\xe8\xac\x88\xf7\xc7\x08\x72\x09\xe1\x1f\xc4\x53\x1e\x13\xc2\x93\xb4\xfa\x4e\xce\xcd\x62\xe0\x61\xfc\xc3\xe7\x5d\xd5\x63\x82\x46\x9e\x8d\x01\x7b\x8f\x3c\x61\xd3\x9e\x47\x7e\x0d\xfa\xe2\x04\x9f\xae\xcc\x97\xa9\xc5\x2f\x09\x51\xbb\xef\x7a\x2a\xda\x9b\x11\xc6\x96\x1f\x9f\xf8\xe9\x52\xcf\x80\xbf\xdd\xc7\x6e\xac\xd9\x90\x20\xf7\xbc\x64\xc2\xf2\x68\x08\x03\x4b\xf5\x62\x4f\xd1\xc3\x5b\x09\x1e\xa1\xaa\x25\x1e\x5e\xc1\x04\x85\x77\x1f\xfb\xc5\xc4\x3b\x19\x8c\xfe\x1c\x6f\x09\xaf\x8e\x24\x2c\x79\xb7\x57\xee\x5e\xb9\x07\xa1\xff\x52\xb2\xc5\xc7\xd0\x10\xc2\xb6\xde\xe7\xf6\xc7\x13\x04\x09\xe5\x28\x6f\x3d\xbb\xb4\x86\x20\x39\x79\xd4\xc0\x39\xa2\x88\xc1\xdf\xab\xd9\x7f\x37\x25\x36\x12\xec\x45\xbe\x12\xfb\x0c\x88\xfe\xea\xac\x4d\x3a\x52\x48\x68\x9f\xe5\xe3\xf8\xfe\x66\x3b\x41\xba\xf4\xf8\x3e\xae\x99\x48\x45\x35\xf5\x08\xdb\xac\x7c\xc2\xb1\x88\xcc\xfd\xa3\x4c\x2b\x21\x89\x4d\x21\x6b\xae\x71\x03\x21\x1b\xdd\x0b\x32\xb6\x3f\x65\xd0\x58\xfd\xbc\x3c\x7d\xf1\x7b\x06\xf3\x76\x9e\x09\xf4\x5e\xde\xcc\xa0\xe4\xf2\x8f\xd6\xd1\x5f\x46\x04\x37\xbb\x15\x53\xc7\x72\x8d\x08\xca\x9f\x17\xb2\x46\x2d\x7d\x46\x78\xa3\x3f\xae\x21\x19\xa9\x43\xb8\xb3\x71\x65\x5f\x7e\xb7\x12\x61\x8e\x82\xf4\xd0\xfd\x65\x57\x09\xfb\xe2\xc9\x67\x76\xd9\x09\xc2\xea\x37\x8c\x23\xaf\x70\x18\x41\xe4\xc3\x9c\x65\xad\xee\xd9\x84\x3f\xef\x43\x35\x64\x76\x95\x10\x96\x3b\x57\xec\x39\x33\x03\x92\x9b\x5c\x1e\x3d\xda\x93\x40\xf8\x3c\x97\x09\x4a\x5f\xa5\x47\xd0\xb9\x7e\xee\x9f\x6e\x6b\x26\xc1\xe9\xcc\xf9\x0a\xad\xa5\xd9\x04\x41\xd1\x23\x7b\x8c\x1e\xa5\x30\x10\x62\x1d\xac\x9a\x96\x2f\x67\x20\x3b\xe5\x78\xd9\xdc\x33\x8c\xb0\xe6\xce\x34\xff\x5b\x99\x42\xc2\x1c\xfb\x7f\x5b\x7e\xdc\x2a\x24\xa4\x1b\x9f\x39\x6e\xa5\xc6\x30\x38\xb6\x93\x0a\xda\xfe\x88\x11\x38\xce\x2f\x0a\xff\xb7\x22\x90\xa0\x74\x6c\xbe\xec\xd9\xb5\x09\x04\x16\xbe\x82\x35\x6a\xd2\xe5\x84\x9f\x2b\xe4\xcc\x6e\xb3\xa4\x13\xec\xdd\x86\x76\x19\x24\xc4\x13\x32\x6f\x1a\x0a\x1f\xea\x71\x20\x98\x6d\xb5\x3d\x99\xcd\x97\x4d\x30\xf5\x11\x7e\xf7\xb9\x7d\x84\xf0\x40\x20\x6a\xb2\x71\xc9\x08\x61\x7e\x56\xc4\xbf\xd8\xd8\x11\xc2\xd3\xed\x85\xee\xc7\xdd\xbf\x32\x60\x4b\xbc\xb4\x6e\x71\xf2\x37\x82\x13\xd2\xe6\x1b\xce\x94\x5f\xd9\xfc\x65\xed\x39\x1c\xcf\xe0\x61\x4a\x74\x06\x2d\xf2\x24\xec\xe9\xf5\x9b\xb0\x78\xd1\x42\x38\x1a\xd2\x75\xc1\xf5\x4a\x27\x21\x58\x66\x2d\xc7\x88\x5f\x17\x03\x8f\xa7\xe2\xd7\x7d\x95\x3a\x09\xee\x66\xc5\x97\x8f\xee\xed\x20\x08\xe7\x4c\x74\x7b\x08\xf8\x13\x96\xa5\x9d\xa9\xb8\x24\x6d\x41\xc8\xad\xcb\x5b\xaf\x1b\x1e\xc4\x60\x85\xaa\x78\x45\xc6\x93\x9f\x42\x98\x8a\x1b\xfb\x54\x97\x77\x8d\x60\xa0\xf3\x22\xbf\xcf\xa1\x89\xa0\x60\xfe\xef\x7e\x68\x54\x00\x83\xa3\xe9\xa3\xf3\x9b\x66\xa2\xd9\x1a\x6c\x83\x87\x8e\xbf\x21\x5c\x5f\xe7\xbb\xec\xca\xec\x95\x84\x1f\x95\xbc\x79\x76\xa7\xec\x09\x45\xb2\x8d\x1f\xf9\x67\x3a\xfd\xd9\xeb\x94\xb3\x1f\xe4\x13\x54\x3a\x12\x2c\x78\x32\x0c\x09\x43\xa7\xfc\xf4\x6d\x8e\xd9\x12\x22\x83\xb8\x02\x4b\x73\xc2\x18\xbc\x14\x18\x54\xfa\x78\x4a\x96\xf0\xbb\x87\x99\xc7\xa1\xe4\xcd\x60\x89\x3b\xc7\xe2\x98\x5d\x2c\x84\xf2\x8a\x23\x53\x5c\x0b\xe5\x08\x47\x04\x14\x2e\x0a\x38\xba\x11\x72\xf8\x26\x0e\xee\x9e\x5d\x43\x38\xb7\x3b\x5b\xe9\x55\x51\x1f\x41\x36\x28\xde\x9e\x7f\x26\xaa\xe6\x7b\x73\xf5\x86\x54\x33\x61\xd0\xed\x77\x76\xe0\xb0\x3a\xa1\x29\x50\x77\xdb\x71\xcd\x5c\xc2\x48\x4b\x5a\xab\x94\x90\x21\xa1\x67\x9f\x90\x9e\x8f\x60\x35\x03\x75\xb7\x55\x1d\xec\x0e\xb6\x04\x9d\xda\xd2\xf9\x6a\x86\x81\x04\x45\xb1\x40\x2d\xff\xf0\x3a\x82\x4f\x82\xbc\x2d\xdb\x7e\x25\xc2\xfe\x9e\xce\x62\x9f\xe0\x57\x04\xed\xed\xb6\xa5\x8c\x71\x19\x03\x9d\xb6\xcd\xe3\xd1\x0e\x45\x0c\x78\xf7\xfc\x1a\x79\xb3\x23\x9d\x20\x86\xe4\xf7\xfa\x89\x85\x0c\xf4\x05\xe7\x97\x6b\x72\x17\x11\x0c\x77\x9d\x36\x93\x8f\xc9\x21\xac\xa8\x49\x5b\xbf\xd6\x32\x8a\x70\x51\xab\x8f\x63\x15\x7f\x0c\xe1\xda\xf6\x88\x01\x97\xb2\x06\x06\x0f\xb7\x4d\xf7\xec\x29\x0a\x64\x50\xa1\x26\x79\xeb\xe8\xb1\x24\x42\x6c\x67\xc0\xb6\xcc\xa4\x66\x06\x37\x87\x15\x52\xaa\x2a\x14\x08\x0f\x06\xaa\xd6\xab\x49\xda\x31\x38\xfb\xa5\xb7\x74\xa1\xfb\x1d\xc2\x46\xd9\x34\xb7\x5d\x42\x17\x08\xc9\x8f\x97\x66\xd6\x6d\xce\x22\x0c\x98\x72\x6f\xd0\xd6\x16\x60\x10\x58\x91\x38\x47\x7e\xd3\x73\xc2\x09\xf3\x9f\x65\x77\xb2\x22\x08\x5b\x47\x4f\x77\x08\x72\xcb\x13\x8c\x6c\xaf\xf9\x08\x49\x59\x12\x3a\x46\xea\xc3\xc5\x34\xc7\x08\xb5\x4e\xef\xf3\x54\x5e\xc6\x30\x58\xb5\xd8\x23\xf5\x41\x92\x26\xa1\xd0\x52\xe2\xf5\x71\xd5\x5b\x04\x36\x2d\x51\x2b\xb6\xb7\xaa\x84\x06\x73\x7f\xfd\x68\xe3\x5a\x02\x67\x54\xfb\xb6\xea\xb9\xef\x09\x75\x6f\xef\x14\xab\x1e\x69\x24\xf4\x4e\x96\x08\x5c\xb5\xfb\x47\xc8\x2b\x5b\xa6\x11\xfe\x27\x9f\x90\xfa\xa6\x4e\xec\xba\x73\x3d\x61\x9f\xdb\x1f\x97\xbe\x3f\x35\x84\xaf\x3c\xd6\x92\x55\x66\xae\x84\x9d\xd7\xab\x0b\xac\x6c\x1d\x09\x25\x43\xf9\xbe\xa7\xb9\x32\x19\x64\x2d\x0e\x8a\x34\xe0\xab\x26\xf4\x0e\x6f\xf1\x9c\x97\x9e\x4d\xd8\xc9\xa5\x98\x2c\xb3\x94\x21\xd4\x95\x39\x06\x65\x1d\x73\x23\x44\xdc\xfd\x7b\x36\x61\x28\x81\xf0\xe8\x14\x9f\xca\xe0\xca\x30\x42\xb2\xfc\x89\x95\x62\x94\x4a\x38\x1e\xb2\xf3\xc6\x26\x6d\x86\xb0\xd0\xb1\xbb\xfd\xc8\xd1\x1a\xc2\xd9\xa8\x75\x9d\x59\x9c\xb5\x0c\xf6\xf2\xb7\xa7\x7a\x04\xc6\x13\xae\x2e\x8e\x1e\x97\xda\xfa\x86\x70\xab\x55\x8b\xfd\xfe\xfe\x50\x82\xef\x48\xf3\xc1\xf1\x9b\x6d\x04\xd5\xc9\x97\xad\x1e\x9f\xe3\x09\x4f\xcd\x23\x8d\xcf\x19\x8b\x31\x50\x49\x19\x9f\xc3\xba\xac\x90\x01\x5f\x5b\x5a\xd6\xbc\x19\x08\x56\xc6\xf7\xb9\x33\x90\xaf\x72\xd7\xf5\xf1\xcb\x6c\xc2\x32\xb7\xce\x08\xd6\xa0\x9f\x84\x8b\x9b\xa6\xb4\xef\x9e\xb9\x40\x98\x64\x2b\x11\x36\x55\xe9\x26\x74\x29\xac\x58\x74\x8a\xb5\x8f\x20\x70\xed\x89\xe3\x7e\xa1\x3c\x42\xac\x49\xdb\xac\xaf\x82\x6a\x04\xcd\xa0\xce\x22\xc9\xb5\xe1\x04\x9f\x46\x65\xfd\x88\x29\x41\x82\x4a\xe9\xca\x72\x35\xfb\x4f\x04\xd5\x72\x95\x03\xa1\x33\xe6\x65\xb0\x85\xeb\x9b\x98\x95\x0c\xf4\x35\x4a\x1f\x06\x6b\xb8\x12\xd8\xbd\x1a\x1b\xe4\x34\x55\x08\xac\xb2\xb6\x55\x8e\x8a\x85\x59\x50\xb7\x94\x7c\x55\x62\xa1\x47\x78\xb1\x69\x79\xf5\xee\x83\xfb\x08\xc2\x02\x37\x05\xef\xaa\x17\x31\xd8\x76\x4c\x7d\x1f\xf7\x8c\x59\x1b\x62\xd1\xda\x71\x9c\x97\x60\xd0\x2a\x10\x6a\x3c\xbd\x84\xf0\xc1\xfc\xe1\xc5\x42\x69\x23\x02\xcb\x3c\xe9\x84\xe0\xf0\x77\x0c\x92\x45\xc4\xff\x0e\x8c\xd5\x10\x9a\x3c\x96\xec\x96\xe8\x94\x20\x9c\x30\xa8\xed\xc8\x35\xe7\x24\x9c\xab\xb1\x58\xb6\x7a\x75\x13\xc1\xda\x48\xe6\x81\xce\xc8\x2e\x42\xbe\x79\x48\xa6\xee\xe2\x18\x06\xb7\x6d\x5f\xdc\xda\x9a\xe1\x46\x18\x2c\xdf\x72\xd3\xea\x6e\x05\xa1\xaf\x71\x5d\x4a\x82\x7e\x22\x41\x46\x22\x89\xf5\xd8\x0a\x17\x42\x93\xd1\xe1\xa9\x6a\xd9\x28\x82\x41\xb1\xd0\xe2\x98\xf7\xd5\x04\x51\x4b\x16\xab\x7e\x13\x57\x82\x51\x66\x49\x91\xae\x9d\x26\x61\x89\x80\x81\xee\x9f\x05\xef\x08\xbb\x8f\x5c\x0d\x31\xad\x5f\x42\xa8\x0e\x70\x66\x11\x51\x9b\x4f\x28\x1f\x3e\xb4\x73\x8d\x0e\x0f\xa1\x51\x7d\x55\xd3\xbc\xc4\x2c\xc2\xd9\xee\x39\x0b\xb7\x2d\x3c\x46\x48\xfc\xe6\xb6\x2c\xcd\xfb\x3d\xa1\xea\x56\x8a\xd1\x02\xa7\x95\x04\x76\x36\xdf\x2b\x7f\x25\x26\x84\x60\xdf\xfc\x7b\x61\xaf\xb3\x3f\x61\xbe\x80\xe1\x3b\xa9\xef\x76\x04\x8b\x78\xc9\xca\xfb\x03\x37\xfe\x07\x6a\x04\xd9\x57\x27\x96\xc6\x11\x32\x32\x93\xf6\xfd\x67\xe0\xdd\x7e\xf1\xa0\xd3\x29\x82\x79\x9a\xb1\xa7\xe7\xce\xdf\x42\xb8\xb0\x78\xd6\x50\x7c\x79\x36\xa1\xca\xae\x31\x5b\xab\x51\x9a\x90\xde\xf7\xbd\x39\x38\x39\x8f\x81\xe4\x67\xfd\xe2\x50\xd1\x53\x04\x1b\xf7\x3c\x4d\xe7\x97\x57\x08\xb7\x95\x15\xcf\x7f\xe0\xbb\x4e\x68\x4b\x7a\x28\xb3\x3b\xe0\x9f\x10\xe6\xc6\x5d\xc8\x7a\xbe\x77\x39\x61\x34\xc0\x5c\xc3\xb7\xef\x2d\x61\x51\xa4\xc9\xe6\xd0\x6b\xf9\x0c\x94\x53\xcc\x25\x72\xd4\x13\x09\x52\xe2\x2e\x66\xaf\x64\x15\x08\xc3\x5b\xae\xbe\xdb\xfa\x9d\x8f\xc1\x56\xaf\x44\x41\x41\xcb\x3c\x82\xc2\x82\x5b\x6b\x7a\x4e\xd7\x10\xbc\x85\xaf\x3f\x9a\xa8\xec\x62\xa0\xf4\x72\xcd\xfa\x03\x55\xc9\x0c\xbe\xfd\xe1\xb2\x9c\xac\xbb\x43\x50\x67\xbf\xf2\xaf\xd0\x35\x8b\xf0\xb6\xf1\xdb\x55\x4f\xa1\x72\x06\xdb\x9e\x65\x46\x84\xad\x57\x20\x9c\x09\xe4\x72\xfd\x38\x5e\x40\x70\x14\xc8\x8f\x2e\x0b\xb5\x26\xc8\x6b\x2c\xfa\x53\x3f\xd8\x44\x18\xaf\xdf\xe5\x64\x6a\x9f\x47\xb8\x14\x6f\x3c\x6e\x37\x47\x9d\xe0\x59\xc7\xc2\xb3\x6d\xf2\x24\xa1\xf0\xa0\xd7\x71\xf5\x55\xf7\x08\xf2\xb5\x3f\xf6\xf1\xda\xd7\x13\x0a\xef\x0f\xad\x13\xf0\x16\x21\x38\xe6\x64\x99\xae\xdf\x65\x42\xb8\xaa\x96\xde\x66\x24\xf9\x8e\xc1\xd9\x0a\xef\x93\xe7\x6f\xd7\x33\x78\x72\xed\xda\x6c\xa7\x89\x69\x82\x75\xe1\x80\x5f\xe8\xbe\x31\x82\xac\xdf\x6d\xd6\x5b\xb9\xad\x04\x67\xed\x9f\x75\x6e\x2f\x7a\x09\x9d\xbe\xec\xa6\x9f\xdb\xba\x09\x67\xc6\x2b\x83\x67\xff\xb5\x26\x6c\x63\xb9\xa9\xe7\xa3\xf9\x8b\xa0\x7b\xf4\xe5\xb9\x22\x89\xa7\x84\xc8\xe9\xa9\x5c\xad\x27\x03\x04\xb6\xa4\x54\xb7\xd8\xea\x01\xc2\xb4\x62\xa0\x24\xe7\xfe\x42\x06\x5b\x83\xf4\xe4\x7f\x75\x75\x11\xbe\x6e\xf2\xcb\xf8\x52\xff\x95\xe0\x2b\xc2\xe2\x7e\x22\xf5\x1b\x21\xbc\xcc\xc3\xe7\xd9\x62\x27\x82\x18\xc7\x6d\x65\xc5\x8f\xa7\x08\xf5\xf2\x52\xbb\x35\xdf\x97\x13\x76\x89\xc8\xf2\x84\x5c\x2e\x64\x50\xec\x7c\x40\x96\x7d\xf1\x75\x42\x35\xd6\x35\x4b\x2c\x2b\x63\xc0\xa8\xd6\xca\x6d\x7c\x24\x4a\xf8\x7d\x79\xab\xc3\xfe\xe9\x16\x06\x61\xa2\x0d\xb1\xa2\xb7\xf8\x08\x3b\x58\xee\x2c\xdc\xbd\x4e\x8d\xb0\xee\x41\xb3\x5f\x9a\x75\x15\x83\xc2\x7f\x57\xe5\xf6\x5f\xff\x23\x04\x16\x95\x80\x05\xe2\x07\x5a\x19\xa4\xf2\xb1\x96\xf0\xce\x98\xcb\xad\x75\x8a\xef\x5f\xb1\x11\x0e\xdd\x7b\xa6\xc9\xff\x69\x35\x21\xc7\xeb\x95\x77\x42\x82\x16\xe1\x84\x5d\x9c\x34\xf7\xba\x50\x06\x39\x85\xf9\xff\x64\xa5\x6e\x10\xcc\x6f\x05\x0d\xb8\xcd\xbe\x4e\xb8\x16\x72\x84\xbd\x30\x49\x8c\x90\x52\x63\xd5\x19\xb6\xe7\x00\x61\x4e\xb1\x19\xdc\xfd\xaf\x12\xc6\x9e\x69\x7e\xcc\x3b\x3a\x46\x78\xe7\x70\x76\x92\xef\xc0\x98\x10\x0e\xfe\xf6\x62\xf3\xbb\x7d\x9b\xf0\xa0\x7a\xaf\xa1\xfc\xef\x7c\xc2\xd3\x3e\xfb\x8e\xaf\xb3\xaf\x10\xe6\x9c\x19\xeb\xfb\xce\x14\x32\xb8\xab\x7e\xf1\x68\x74\xcb\x23\xc2\x27\xd1\x34\x3b\x97\xb3\x39\x84\xa6\x3b\x3f\x7e\xd5\xc9\x69\x11\x78\xbe\x5c\x93\x3c\xe7\xb1\x8b\xf0\xfe\xc4\x71\xbe\x6b\xf3\xee\x11\x8c\x3d\xd6\x2c\x7d\xdc\xaf\x46\x68\xd8\xc0\x27\x73\x4f\xc3\x9e\xc0\x15\x11\xc6\xbe\xa7\x27\x95\x41\xd8\x3c\xbd\xfe\x78\x2f\x1f\x42\x98\xa8\x01\x24\x94\x73\x19\x98\x30\xa7\x1e\x2f\x5d\xa2\x4b\xc8\xd5\xbb\xf7\x8a\xb3\xd0\x9e\xd0\xf7\xe5\xe2\xe0\xa4\x5d\x29\x41\x64\xc9\x62\xcb\x3f\x6f\xdf\x10\x78\x3a\xaa\x5f\xb7\x8b\x8f\x0a\x61\xa3\xe5\xea\xf9\xa7\x69\x48\x08\x87\x7d\xa7\x99\x8e\x61\x33\xc2\xf1\x91\x2d\xfd\xda\x6f\x37\x13\xf6\xec\x79\x93\xd7\x1d\x6e\x48\x28\xdd\x58\xa7\x78\x25\x2a\x8e\xa0\xe6\x67\xe7\xf1\x9f\xa9\xad\xf8\xd0\x51\x9d\xb1\x88\xf0\x32\x8e\x67\x70\x2f\xef\x57\x21\xcc\x96\x76\x29\x3d\x39\x32\x97\xd0\x57\x26\x7f\xa7\xe1\xe8\x5b\xc2\xa5\xdc\x9e\x93\x34\x63\x44\x7d\xd2\x5c\xb4\x9e\xce\x27\x70\x38\xbc\x31\x2c\xe2\x0e\x23\xa8\xaf\x5b\x20\x9d\x3d\xdf\x82\x30\xe7\xd6\xb2\xf0\x5c\xf1\x9f\x42\x18\x9f\x2f\x2b\x36\xe6\xb1\x90\xfe\x0f\x38\xcc\x14\xa6\x72\x07\x42\x19\x2c\x08\x99\x38\xee\x7f\xaf\x4e\x08\x03\xb3\x4b\x53\x67\xeb\xf2\x13\xa4\x47\xd6\xab\xc8\xfc\x7a\x46\x08\x74\xb9\x5a\xb6\x61\x28\x89\x81\xcc\xe0\xb5\xf2\x25\xab\xa4\x08\xb7\xd2\xb8\xf7\xa5\x7b\x5f\x23\x28\x9e\x11\xe3\xdc\xda\x15\x4c\x98\x90\x92\xd1\x30\xc7\x4e\xc2\x82\x04\x76\x91\x57\x3d\xd2\x84\x58\x2d\x05\xf7\x8b\xaf\x56\x13\xf4\x6c\x78\x67\x17\x9c\xb5\x21\x68\x17\xf1\xf5\x8b\xb8\xba\x12\x3a\xd7\x08\xef\x7f\x61\xfe\x9e\x80\xce\x27\xbb\xdb\xb7\xee\x21\x78\xa5\x5c\x0c\xdb\x58\xff\x81\xd0\x29\x7e\xb4\x8d\x67\xa0\x97\x40\xdd\x0d\x8f\xaa\xfa\x7b\x09\x6b\x24\x78\x7f\xcb\x6d\x4d\x26\x34\xce\x95\x90\x3c\xe2\xf1\x9c\x90\x69\xfb\x5a\x32\xaa\xb2\x96\xc1\x17\xf9\x7d\xce\x91\xec\x76\x04\x27\x5b\x81\xa4\x82\x3c\x03\x82\x76\xe4\xb6\x04\x65\x39\x09\x42\xda\xdc\xaf\xc8\x3c\x96\x4e\x68\x28\xf9\x69\x9a\xba\x68\x3b\x61\xd7\xe3\xa9\x05\x69\x71\x0c\x41\xfc\xb0\xad\x4f\x68\xfc\x17\x06\x0d\xb2\xda\xbb\x6c\xae\x0b\x12\x74\x56\xa9\xfe\x5d\xa2\x2b\x41\x58\x71\xf1\xdd\x4e\xf3\x7d\x6a\x0c\x2a\x3f\x08\x2c\x98\x75\x3d\x9a\x70\xfe\xdb\xe3\x59\x6e\x1f\x6c\x09\xc9\x07\xfd\xd7\xfd\x07\x17\xed\x24\x36\x15\x0b\x99\x10\xdc\x7b\x7f\xbb\x7b\x6d\x2f\x24\xfc\x64\x73\x98\x2c\xde\x3e\x28\x84\x1c\x9b\x33\x15\x3c\x71\x85\x0c\x38\xbf\xc6\xa9\x3a\xdb\x1c\x20\xbc\x89\xca\x5d\x7f\x64\x4f\x18\x03\x4d\xbd\xee\x55\xbd\x73\x44\x09\x7f\xa7\x46\x1d\xfa\xdb\x82\x09\xad\x5e\xdb\x38\x8d\x8c\x6d\x08\xcf\xef\x24\xff\xe9\x96\xc8\x61\x10\x15\xe4\x9f\xf0\x2b\x8a\x9b\xa0\xe1\x96\x66\x5e\x26\x6a\xc5\x40\xbd\xae\xb0\xb8\xf5\x79\x30\x83\xc2\xe3\xfc\xea\x1b\xa3\xec\x09\x8d\x3f\x72\xb5\xe4\x76\x7f\x62\xb0\x7e\x7e\x8b\xfb\x7d\x4f\x5e\xc2\x07\x59\x6b\x13\xd6\xb0\x4f\x0c\xf4\xa6\xb9\x16\x06\x98\x69\x11\x44\x7c\xab\x3f\x6f\x36\x5c\x45\xf8\xb9\x7b\x45\x55\x86\xc6\x0a\x02\xb7\x81\x7c\xc3\x97\x24\x09\x02\xe7\x19\xc3\xe6\xd6\x55\x99\x84\xc6\xcd\xf3\xda\xbf\x6c\xcf\x66\xa0\xb2\x95\xa7\xa4\x48\x8e\x21\x7c\x3a\xf0\xf5\xb8\xc9\xed\x2b\x84\x0c\x87\xd6\xd3\x41\xb6\x72\x84\xb7\x6c\x67\x73\xf4\x0e\xb8\x12\x74\x57\x6e\x7a\x63\xfd\x31\x9e\xc0\x1d\x3f\xf7\x99\xe9\xd5\x0f\x04\xd3\xca\xc7\xcf\x64\xa2\xad\x67\x86\x48\x45\xfe\x9e\x54\x1e\xc1\xa1\xf1\xee\xb6\xdf\x16\x33\xb3\xa3\xa1\xe7\x7b\x5b\x9e\x08\x25\xbc\x6f\xa7\x07\xdd\xe4\x09\x37\x84\x2e\xee\xfa\xb1\xd7\x91\xa0\xa1\xb3\xf2\x5e\xfb\xe3\x08\x42\x2c\xb7\xda\xe0\xab\x10\x39\x42\xca\xac\xe2\xa5\x86\x6a\x67\x08\x25\x4d\xbd\xe3\x5f\xf5\x2e\x12\x14\x9e\xf8\xcf\x5f\xd3\x3e\x47\x18\xbc\xe1\xb1\xbe\xfb\x22\x0c\x09\xbe\x7e\x01\x3b\x22\x42\xce\x13\xfa\xe6\xbe\xfa\x56\x3c\x70\x80\xa0\x72\x78\xd8\x2c\x6d\x29\x11\x14\x1b\x7a\xce\x39\xd5\xb8\x12\xfa\x1e\x6b\x47\x9c\x28\x09\x24\xf4\xdc\x10\xd7\x99\xb6\xb8\x42\x58\x76\x26\xca\xff\x84\x71\x0b\x61\x93\xd7\x3a\x15\x7f\x5e\x19\x42\x60\x5a\x64\x2a\xbf\x93\x19\x83\x4b\x1e\x52\x7a\x6f\xd7\x29\x10\x02\x8e\x92\xf5\xab\xdd\x9f\x09\x4a\x2e\x42\x1e\xaf\x67\xc0\x77\x20\x63\x5b\xf7\xc9\x8f\x04\xd9\x91\xc5\xd5\x62\xe7\x13\x19\xbc\x13\x2d\x1e\xe6\xfa\x52\x4e\xd8\x93\xe1\xb2\x3f\x7e\xa6\xd3\x63\xb7\x72\xcb\x54\x51\x0c\x41\xd3\x74\xcf\xd2\x5c\xe9\x48\xc2\xb5\xc9\x8e\xc5\xd9\x67\xbd\x08\xd7\xf3\xbf\x7f\xfb\x7e\xc1\xe3\x7f\xcc\x6d\xc5\x12\xd6\xf9\xf5\x81\x04\x69\x9a\x6a\xf6\xfe\xf1\x88\xf0\x32\xda\xf6\xd9\xa0\x8a\x0d\x83\x23\x9f\x43\xc2\xde\x26\xf9\x11\xfa\xbc\x9e\xbf\x2a\x9c\x7a\x43\x50\x35\x30\xfb\xba\xea\x9a\x27\xe1\x7b\xd4\x8d\xa9\x09\xbe\x47\x84\x30\xc9\xbb\x3a\x1e\x87\xcc\x08\xc5\x12\xa3\x83\xcb\xab\xde\x13\x76\x31\x7b\xeb\xfb\xd7\x70\x10\x46\x5d\x8b\x27\xde\xbc\x55\x26\xec\x9e\x1b\x5c\xf2\x1f\xe8\x59\xe5\x06\xd6\xaf\x79\x46\x08\x5a\xfe\xf8\xf8\x44\xdd\x85\x99\x0b\x02\x3f\x73\xf2\xb6\x08\x61\x54\xc7\x87\xe3\x70\x8d\x33\x21\xe4\xdc\x44\x48\x9f\xc3\x43\x42\x60\xe3\xf5\x6c\xab\x1a\x1f\xc2\xb1\x9d\xdf\x2f\x3b\xcd\x9c\xcc\x47\xff\x1c\xcf\x9f\xd9\x23\x46\xf8\x14\xff\x25\x76\x49\x8f\x21\x61\xf7\xd0\xdb\x8c\x30\xd6\x38\xc2\xa7\x2b\x16\x06\x6e\x52\xef\x09\x03\xfb\xd4\x8d\x1a\xd9\x3e\x11\x76\x2e\xeb\xbf\xc1\x88\x1c\x25\x04\x16\x56\xc7\xd9\xd7\x71\x13\xd6\x1d\xb8\xb9\xe8\xe5\x8f\x77\x84\x82\x96\xdd\x22\x59\x01\x1d\x59\xd8\x26\x7e\xfe\xe3\x93\x40\x25\x82\xb3\x5d\x55\xcf\x85\x40\x3b\x02\x77\x6a\x83\x85\x44\x7f\x24\xe1\x98\x19\xdf\xa3\x4e\xe9\x68\x42\x6e\xc5\x43\x16\xd7\x9a\x7c\x82\xc5\x9a\x26\xee\x98\x78\x67\x82\xea\xa0\xc1\x2f\xd7\xf8\x0c\x82\x72\xcb\x72\xbf\x2f\x37\xaf\x12\x06\x75\x5d\xb6\xf3\xf8\x26\x32\x50\x64\xab\xcf\xb9\x7c\xd3\x99\xf0\xff\x63\xbc\x3e\xc3\x72\x7e\xdc\x3f\xe0\xdb\x12\x12\x89\xec\x15\x51\x42\x45\xa5\xe8\x4c\x69\x5b\xa9\x34\x34\x45\xd2\x96\x76\x4a\x93\xa8\x90\x34\x88\xa4\x25\x21\xed\x49\x9f\x34\xa4\xa5\xd2\x90\x54\xda\x4b\x94\x8a\xde\x0d\xdc\x47\xdf\x07\xf7\xcf\x83\xff\x71\x1f\xf7\xb3\xd7\xf1\x7e\x9f\x4f\xae\xe3\xba\x3e\xd7\xe7\x3c\x2d\x5f\xc6\x6c\xf1\x89\xf5\x25\xdc\x6f\x1e\x7a\xdc\x75\x80\x9f\xa0\xb6\x3b\x2a\x72\x81\x62\x0c\xa1\xa5\xed\x50\xdf\xbe\xdd\x6f\x09\xbe\xdf\x4b\x36\xd5\x55\x04\x10\xc2\x2d\x05\x82\x32\x1e\x7a\x13\x58\x1c\x74\xe7\x9c\x56\x0b\x60\xa0\xb3\x69\x64\xf1\x1b\x53\x3b\xc2\xda\xd2\x86\x57\x35\x4a\xc7\x08\x97\x7b\x7d\x2e\x09\xcb\x76\x13\xec\x9e\x38\xe7\xbe\xb7\x91\x25\xe8\xbf\x6f\xde\xd0\xac\x38\x83\x30\x30\x43\x3d\x39\x7f\x5e\xa7\x04\x94\xa3\x64\x36\xed\x37\x54\x27\x78\x34\x77\xfa\x1f\x49\x14\x26\xc4\x06\x87\xa9\xc8\x79\x68\x10\xb2\xca\x0c\x14\x12\xee\xf3\x12\xcc\x47\xfc\x99\xc5\x65\x27\x09\xf2\x2b\xe7\x94\xdf\xda\x73\x97\xc0\xe4\x28\xfe\xd5\x9b\x3d\x8b\x70\xa3\x77\x5e\xff\x95\x94\x64\x42\x76\x79\x87\xc1\xd9\x59\x51\x84\x9e\x24\x7e\xb5\xd5\x8c\x1b\x21\xc9\x47\x72\x61\x44\x8d\x12\x61\xcb\x9a\xb2\xbf\x7b\xf2\xf6\x11\x42\x58\x5f\x6f\xba\xbf\x40\x9c\xd0\xb4\xfb\x78\xc7\x60\xcd\x7d\x06\xe1\xfa\xcb\x9a\xb3\xa4\xd9\x08\x7d\x8d\x30\xb9\x72\x7d\x16\xc1\xc6\xe6\x41\x47\xa1\x53\x12\xe1\xd9\xd3\x13\xa7\xa7\x2a\xf6\x13\x96\xcc\x93\x11\x1c\xd8\x50\x41\x48\xf9\x71\xe6\x46\x82\x63\x09\x61\x6a\x27\xb7\xb5\xfb\xc2\x54\x06\x2d\xb9\x72\x26\x9b\x9f\xdd\x27\x1c\x3d\x2d\x29\x22\xc8\x67\x48\xf0\x9c\x43\x0b\x2a\xf8\x34\x09\xda\xe7\x5d\x0b\x55\xa3\x19\x06\x2c\xd7\x1b\xc2\x0f\x04\xaa\x10\x2a\xfa\xbd\x26\xa2\x60\x45\xc8\xe1\x7e\xdf\x71\xfb\x8b\x05\xa1\xc9\x55\x51\xe6\xda\x93\x6c\x42\x98\xa9\x40\xe7\x1a\xee\x93\x04\xcf\xd2\xee\x99\xeb\x8e\x73\x13\xd2\xfd\x74\x5e\xa9\xfa\xa8\x13\x7c\x17\x3c\x39\x5b\xdd\x54\x45\x50\xbb\x3b\xf3\xc2\xa6\x5d\xab\x08\xbe\x02\x7e\xfb\x75\x6f\x04\x13\xac\xbb\xa2\xb4\xef\x44\x29\x13\xca\xcb\x35\x0f\xcb\x64\x07\x30\xd8\xd3\x79\xf0\xf1\x47\xb5\x8b\x84\x1d\x92\xb6\x4b\x04\x25\xbf\x30\x50\x30\x7f\xae\xfd\x78\xc6\x6e\x82\xe8\x0e\x01\xeb\xeb\x7f\xf4\x08\xdf\x1e\x46\x72\x98\xdf\xde\x4a\xb0\x93\xda\x14\x5d\xa3\x92\x4c\x68\xd9\xe0\xd9\xc8\xbb\x6e\x27\xe1\xa8\x56\x87\xcc\x7d\xf6\x65\x84\xc3\x6d\xa7\xb5\x9f\xbd\xba\x4f\x70\xd2\x19\x14\xf7\x54\xae\x22\xfc\x5a\x5a\x33\x7a\xed\xe4\x26\x42\xd0\x19\x77\xc3\xcd\xf7\xdb\x08\xa2\x81\x3b\x3c\x7e\xa7\x2a\x12\x52\x2f\xcf\x58\xb4\x42\xe1\x26\xe1\x43\xa8\xfd\x95\x8c\xa0\x85\x04\x96\x63\x41\x53\x2d\x2c\xc6\x84\xde\x97\x6b\x4b\x3f\xe6\xda\x11\xc6\x9f\xa7\xdf\x92\x4c\xad\x24\x28\xe8\x2e\xb0\xa9\x9d\x4e\xe6\x17\x18\xc4\x6b\xdf\xd5\x25\x78\x65\x7c\x33\xbb\xd5\xac\x43\xe0\xf9\x9c\xe1\x54\x21\x92\x4f\x88\x5f\x51\x38\x77\x38\x22\x9b\xc1\x62\xc9\xd1\x65\x1d\xe2\xf1\x0c\xac\x7f\xc8\xce\xcf\xbe\xfe\x8e\xc1\x1e\xd3\xc4\x7a\x5d\xce\x2e\x42\x53\x9e\x88\x93\xe1\x26\x7f\xc2\xe3\x46\x8b\xd4\x13\x41\xb6\x84\xab\xf8\x2c\x14\xb6\xd7\x8f\x90\x2f\x33\xb4\xe3\xf3\xc2\x7a\x42\xe9\xdf\xfb\xdb\x27\xd2\xf6\x10\xf6\xc7\xb7\xee\x55\xe7\xaf\x25\x14\x35\xb2\x4c\x44\x9c\xe2\x24\x5c\xd9\x71\x70\x4f\x2b\x77\x34\x41\x48\x6c\x47\xdd\xa7\x63\x0d\x84\x7d\x9f\x66\x67\x87\xc7\x36\x11\xf6\x06\x8e\xec\x4a\xc9\xce\x20\x6c\xf4\x6a\x7e\x18\xda\x65\x48\x70\xe8\x12\x38\x2f\x63\xc4\x4b\x48\xf0\x3b\xa8\x6d\x69\xa9\xc0\x20\x9a\x3b\xc8\x3e\xfa\xc7\x1b\x42\x5c\x99\x56\xb7\x7a\x79\x1b\xa1\xa3\xb8\x89\xf5\xbf\x19\x13\xee\x15\x07\x8f\x08\x1e\x21\x1c\xdf\x32\xbb\x6a\x51\x44\x2b\xc1\xb2\x61\x93\x8f\xdd\xd4\x26\xc2\xd7\xbf\xdf\x8e\x5f\xfc\x7b\x98\xf0\xee\x88\x58\xcd\xd0\x39\x56\xc2\xab\x4e\x51\x8d\xaa\xe6\x00\x42\xe7\xc4\xaa\x7a\xc7\xc9\x52\x82\xab\xc5\x4b\x59\xef\xe9\xdb\xb3\x20\xd7\xc4\x2c\x7d\xb6\x3b\x41\xca\xc6\xde\x76\xed\xbe\x67\x04\x11\xbd\xcb\x8b\xf4\xe4\x8b\x09\x17\xce\x14\x99\xd9\x7d\x79\x46\x10\xd6\xd1\x52\x1b\xba\xef\xfe\xff\x89\x58\xc5\x91\xdc\x1e\x8b\x14\x06\xa6\xfb\x72\xe7\x48\x2c\x1d\x22\xbc\xd3\x1f\x12\xf1\x2a\xff\x45\xd8\xed\xc0\xc2\x77\x32\x24\x91\x10\xb2\x26\xf9\x39\xb3\xee\x07\x21\xe6\xf7\x9d\x14\x3f\x89\x3a\x42\xd7\x9e\x37\x35\xb5\x55\xf6\x84\x21\x91\xee\x16\x51\xd1\x7a\xc2\xd2\x9d\x2f\xf2\xec\xd6\xa8\x11\x6e\x3a\x25\xf2\x2b\xf2\x87\x11\x9c\x97\xa6\x17\x38\x5d\x3d\x43\xb8\xa8\xd8\xb2\xf0\xc5\x50\x16\x83\x43\x47\xe6\xd6\x1b\x09\x3b\x13\x76\x9e\x9b\x73\xf1\xf4\xfa\x74\x06\xcb\x38\x9d\xdb\x6d\x4e\x85\x10\x78\xa5\xd2\xbd\x02\x9f\x73\x10\x4e\x17\xf6\x99\xb7\xb2\xc4\x11\x2e\x9c\xac\xc9\xfb\x24\x56\x42\xd8\x14\xf8\x6b\x6d\xad\x59\x10\x03\xc7\x48\x2e\x3b\x5b\x93\x0a\x06\x7d\x8b\x8f\x9a\x58\xf0\x46\x13\x44\x7e\x6d\xff\x2a\x6f\x34\x2a\x01\x55\xc9\x4d\x99\x35\xf5\xe9\x04\x59\xde\x92\x49\xce\x1e\x2b\xc2\x1c\x6f\x95\x55\x0a\xd3\xd5\x94\x5d\xe9\xda\x1c\xfe\x21\x09\xdc\xdf\x2d\xdb\x1b\xba\xb3\x8c\xf0\x66\xf4\xc2\xcd\xe6\xc3\x82\x84\x3b\x0e\x3b\xc3\xcf\x0e\x9b\x12\x96\x37\xcf\x96\xcc\x6a\x31\x24\x1c\x70\x5b\xc3\xba\x93\xcb\x97\xa0\xd3\x3e\x8f\xe7\xd9\x6c\xe5\xe9\xfd\x39\xe3\xad\x83\xf1\x31\xc2\xad\xf5\xce\xa7\x8a\x54\xa3\x08\xfc\xc2\x0b\xd4\x7f\x72\x89\x12\xbe\x32\x53\xbb\x76\xca\x2c\x27\xac\xf0\x4b\xdb\xe4\xe0\xe6\x44\xb0\xd1\xd2\x14\xcd\x5d\x28\x4f\x18\x30\x1a\xde\xfd\x36\xa6\x99\xb0\xe0\xe9\xc0\x4b\xfd\x5a\x0f\x82\xa6\xe4\xbd\x03\xde\xa7\xb3\x08\x1f\x74\x23\x22\xa4\x9e\xde\x21\xac\x29\x16\x39\x26\x5b\x51\xc0\x60\x8b\x69\x8a\xcf\x89\xd0\xbd\x84\x5b\x1b\x42\x2f\x3e\x28\x6e\x22\x24\xcd\xfc\xf1\x2c\xcf\xad\x87\x10\x79\x7e\x5e\xae\x4d\x45\x0d\x21\xa7\xff\xe0\x6d\x0d\xb6\x56\xc2\xf0\x3a\x9f\xb4\x82\xf6\x01\x82\x46\xc4\xe4\x31\x88\x67\x11\x04\x96\x28\x9e\x9f\x35\x3b\x93\xe0\x33\x43\xad\x46\x64\x5f\x38\x03\x93\x56\x83\x4b\x02\x66\x15\x84\x45\x06\xb6\x33\x0f\xd5\x64\x10\xf8\x8b\x45\xca\x06\x52\x9e\x12\x0e\x8a\xf9\xe8\x14\x1f\xf2\x24\xa4\x1c\xf6\xe5\xd9\xab\x76\x88\xb0\x97\xd5\xa3\xfb\x9c\xff\x2d\x82\xec\x4a\xed\xa1\xd3\x0f\xe4\x09\x4b\x5b\x1d\x22\xa5\xdb\xda\x08\x02\xcf\x4d\xe5\xbd\xce\xa7\x11\xd8\x04\x67\x84\x6d\x28\xa8\x22\x34\x96\x5e\x59\x7a\xe9\xe5\x3b\x42\xbd\x68\x73\xa7\x5f\x40\x20\x21\x5a\xae\xb6\x60\xf5\xe2\x37\x84\x40\xf6\xf1\x60\x55\x81\x20\x42\xfc\xe5\x96\xd7\xdf\x86\xae\x4e\xff\x8c\x3d\x5d\xa2\xf7\xe6\x12\x9e\x6f\x39\x73\xaf\x5a\xc3\x8e\xb0\x60\xe6\x2a\xc3\x51\xf1\x9b\x04\x6d\xb7\x13\x69\x55\xde\xa5\x84\x22\xe5\x78\x93\xad\xdd\x09\x04\xce\x43\xec\x0d\xfb\x8b\xb3\x08\xab\xd4\x2e\xf8\x8f\xbd\x4a\x27\xd4\x26\x0f\x1e\x48\xa9\x7d\x46\x78\x7a\xe7\x8b\xea\xf0\xae\x97\x04\x33\x65\x9b\x98\xca\xa4\x44\x06\xd2\x37\x43\x14\x9d\x45\x8a\x18\x9c\x92\xfc\x94\xd8\xbc\x7a\x88\xc1\x07\x17\xff\xe3\xf2\xe3\x6f\x18\x24\xa4\x24\x4e\x64\x7c\x97\x26\x88\x58\x76\x2c\xe6\x64\x79\x42\xe0\x3b\xcf\xb1\xf8\xf6\xb6\x3e\x42\xca\x5d\x19\x4f\x69\xbf\x70\x42\x51\x83\x4b\x9e\x98\x61\x12\xe1\x5d\xea\x8c\x8b\x3e\x4f\xac\x09\xda\x02\x47\x75\x8c\x97\x3f\x20\x8c\xd5\xbe\x0d\x74\x5c\xfc\x81\x70\x28\xd8\x5d\xe0\xf9\x93\x4b\x04\xb6\x90\xcc\x7a\xc7\x91\xdb\x84\xb8\xe2\xf5\xe6\x6e\xa7\xae\x11\x14\x1f\xdc\xbe\xe4\x6e\x51\x4e\x38\x5d\x57\x9e\xf3\x6d\xc6\x0e\x42\xf1\x9f\x17\x8f\x16\x94\x24\x12\x04\xec\x3e\xa9\x5e\xdc\xbd\x8c\x50\x98\x78\xe9\x67\x41\xd3\x5d\x82\x92\xc6\xb9\xf1\xd8\xf8\x77\x0c\xe2\xcd\xea\x9a\x83\x25\x55\x08\xa3\x7a\x93\xef\xb9\xde\xda\x31\xe0\x3e\xe8\x5b\xf4\xca\x55\x92\x20\xad\xe7\x9a\x2a\x75\x6a\x33\x41\x72\x60\xd7\xda\x40\x16\xcd\x7f\x92\xbc\xc6\xf4\x74\xdd\x8f\x9c\x04\x5b\x5e\xd7\xc6\x65\xfe\x31\xff\x24\xf6\x93\xeb\x04\xa6\xbe\x17\x4a\x60\x8d\xc9\x4d\xbf\x9a\xc3\xa5\x0c\x56\x8a\xba\x17\xcb\x2e\xea\x20\x5c\x99\x21\x29\xb2\x7e\x34\x82\x30\x69\x9c\xf3\xfe\x44\x6f\x1d\x41\xef\x77\xb7\xf0\xc7\xc0\x5a\x42\xe9\xfa\xc0\x0b\xe5\x89\xd6\x04\xc5\x47\x4a\x9c\x88\x2d\x65\xc0\x95\xce\xca\xb9\xa7\xe9\x0c\x83\x73\x21\x07\x8f\x2d\x55\xcb\x24\x5c\x78\x28\xb6\xe5\xdc\xe1\x55\x04\x9e\x25\x51\xb6\xe9\xa6\x45\x04\x13\xf6\xb6\x19\xa3\x39\xce\x84\x67\x0d\x72\x13\x8e\x5e\x71\x84\xbd\x07\x35\xbe\x5d\xd6\xcf\x24\xc4\x8f\x49\xc5\x72\x70\xe5\x32\x98\x79\xa0\xfc\xe9\xf6\x2d\x59\x04\xa9\x6e\xd9\xce\x2d\x1c\x97\x08\x82\x9e\x09\xf9\xc7\x0f\x86\x11\xf4\xd8\xc5\x96\xc4\x71\x2b\x10\x7a\x62\x1f\x9f\xae\x99\xa3\x43\x78\x7a\x3a\x8d\xfb\xf6\xfe\xf7\x84\x00\x9e\x7a\xcd\x3e\xb1\x6a\xc2\xa2\x08\xc3\x8f\x67\x85\x46\x25\xd0\x92\xf5\x94\x65\x29\x5f\x01\xa1\x79\x78\xe6\x9e\xf3\xb2\x19\x0c\x7a\xdf\xab\x54\x2b\x3c\x4b\x25\xb4\x58\x1d\x2d\xae\x6e\xdc\xf6\x7f\x41\xc8\x95\xfd\x8e\xb5\x00\x37\x81\x6d\xa8\x45\xc0\x6a\x56\x11\x21\x22\xfa\xf6\xca\xd3\xad\x65\x04\x61\xcf\xf7\x79\xe5\xe6\x0e\x84\xb8\xb8\x92\xd5\xff\x55\x73\xf3\x0b\xf6\xad\x78\x9d\x49\x48\x99\x6a\x3f\x1a\xf1\x9a\x61\x30\x7e\x60\xd3\x31\x0f\xeb\x50\x02\xcf\x2d\xc3\x1f\x59\x3b\x2e\x11\x8e\xdf\x71\xea\xfe\x90\x79\x87\x90\x90\xac\xb2\x60\xe3\xf4\xba\xfb\xe3\xf6\x0a\x77\xbb\x22\x37\x42\x4c\xf5\xf6\x75\xcd\x7b\x3d\x08\x9c\x1e\x4f\x4f\x46\x7f\x2f\x62\xb0\x63\xeb\xec\x88\x28\xf5\x60\x06\xa7\x9f\xff\x31\xfd\xb9\x34\x95\x10\xf1\xc6\x29\xac\x6b\x79\x2c\x83\x8a\x6b\x7b\xec\xbe\xfa\x6e\x25\x2c\xbe\xf0\xda\x74\xbf\xf8\x16\x82\xd8\x78\x56\xd5\x79\xc5\x13\x04\xae\xf7\xc3\xcf\x54\xc4\x54\x08\x3a\xa5\x87\x42\x0c\xaf\xb6\x32\xd8\xbf\x2a\x39\x4f\xef\xce\x49\xc2\xfc\x51\x37\x13\xa2\x55\x84\x9a\x31\x8f\xf7\x9a\x97\x96\x11\x66\x3f\xc8\x3c\x22\xb0\x27\x82\x50\xac\x18\x3d\x3f\xb7\xb8\x86\xd0\xbc\x84\xf5\xef\xad\xf6\x20\x02\x6d\x2f\x56\x3f\xce\xf3\x96\x90\x78\xd9\xb2\xb8\xd2\xc0\x9a\xf0\xe0\x98\xf0\xd9\xf7\xbf\xc3\xff\x81\x51\xb3\xfe\x9d\xff\xf0\xf3\xd8\x43\xee\xdd\x8b\x2f\x12\x0e\x06\xc7\xce\xb8\xc3\x76\x9f\xd0\x31\x74\x42\x7e\x57\xfc\x21\xc2\x17\xe1\xea\x38\xee\xf3\xf5\x12\x00\x7b\xf6\xe6\xfb\x33\x35\x09\x47\x9e\x8f\xf0\x7a\xaa\x54\x10\x58\x2e\xae\x78\x36\xb4\x79\x25\xe1\x86\xa1\x83\x57\xea\x0f\x15\x82\x5b\xda\x52\x81\x03\x41\xc2\x84\xd5\xd7\x96\xbd\x1b\x57\xff\xc4\xc0\xeb\x4c\xd2\xc2\xbf\xd3\xc9\xb8\xfd\xa5\x5d\x25\x26\x2b\x08\x45\x73\x3b\x9e\x89\xed\x28\x25\xe4\x16\x26\x1a\xae\xdd\x98\xcf\x20\xea\xc9\x4b\x9b\xdb\xbc\x7f\x25\xf0\xf4\xf2\x9e\x45\x7c\x7c\x85\x04\xbb\x12\xa5\xc5\x25\x15\x0c\x61\xfc\xa8\xa2\x23\x47\x66\x1c\x61\xcf\x44\x9d\x57\xe2\x27\x13\xc2\x16\x5f\x6e\x27\xd7\xdc\x02\x82\xf6\xfe\xe0\xd8\xa3\xb9\xcb\x08\x9b\x94\x13\x95\x23\x7b\x1f\x33\x30\x61\x59\xcd\x08\x1f\xbe\x4c\x30\x90\x9b\x77\xfc\x8b\xeb\x7a\x82\xb1\xef\xae\x1e\xdd\x39\x55\x84\xf4\x8d\x29\x27\xd7\x87\x4c\x48\xa0\xed\x29\xdb\xbe\xa1\x45\xbe\x04\x2e\xf5\xcf\x75\x77\x3f\xb5\x12\x26\x6c\xf2\x3a\x7d\x33\xcf\x13\x56\xe5\x2e\x6b\x0c\x63\xef\x21\x70\x58\x84\x7f\x88\x2a\xff\xc8\xe0\xaf\x48\x71\x78\x06\xd7\x42\x82\x3f\xf7\x83\xac\xa7\x6e\xae\xd3\x17\x87\x53\xf5\x0e\xaf\x7e\x82\x9f\xd7\x14\x49\xb1\xd6\x13\x7a\x6f\x49\xcf\x31\xdd\x78\x98\x70\x8d\xd5\x6d\x77\xe9\xd2\x37\x0c\xfa\xcd\xa4\x5f\xbe\x33\x71\x27\x3c\x9c\x2b\x6a\xbb\x59\xe0\x11\xe1\xda\xd3\x47\x89\xaf\xfd\x34\x08\xf9\xa4\x27\xa2\x24\x99\x45\xe0\x4c\x4f\x89\x3b\x32\x0d\x2f\xda\xd7\xfb\xcb\xed\x0e\x21\x3d\x36\xac\x49\x79\x38\x8d\xb0\xe6\x7b\xd4\x21\xe9\xcf\xce\x84\xce\xdb\x99\xb1\x87\x22\x24\x09\x55\x1d\xb6\x7a\x4a\x9a\xbf\x25\xc0\x6d\x16\xea\x53\x73\x23\x95\x10\x74\xba\xf3\xbb\xe2\xf3\x2e\x06\xdd\x7a\x0a\x99\x86\x3c\x89\x0c\x7a\x7b\xdf\x87\x44\xdf\xb7\x27\xf4\x16\xb2\x1b\x7e\xde\x5f\x40\x50\xf7\x3d\x65\x2c\xfc\xdd\x96\xe0\xaf\xaa\x54\xb9\x59\x35\x9d\xc1\xc1\x8e\xb9\x53\x65\x3e\x0f\x08\x22\x61\xd6\xf7\x13\xfa\xf7\x10\x26\x06\xd7\xa5\x57\x78\xf2\x11\x82\xc2\x1e\x74\xae\xde\x63\x40\xe8\x3a\xbf\x29\x30\x71\xb0\x84\x81\xe1\xe2\x3d\x6e\xbe\xf2\xca\x84\xdc\xf2\xb6\xda\xdc\xe1\xb5\x04\xc9\x9c\xb5\x6c\x8c\x4d\x26\xa1\x33\x6d\x57\x6e\x38\xcb\x4b\xc2\x8e\x97\x7e\x0e\xff\x55\x5e\x95\x7d\xe5\x31\x09\x93\x12\xff\xc3\xe1\xd6\xb4\xcd\xef\x72\x62\xe9\xff\x17\x54\xbf\xa7\xad\x55\x59\x17\x45\x50\x7f\xac\xb9\xc1\x25\x34\x86\xc0\x97\xb2\xf0\xec\xc9\xe9\x44\xe1\x42\xc8\xf8\xcf\xca\x0f\x0c\xb4\xae\x2b\x3d\xfd\x2f\xd1\xd1\x9f\x41\xd1\x7d\xed\x0c\x1a\x8c\xd5\x7b\x64\x9a\xea\x25\x30\xfe\xa8\xe3\xc5\x81\xdf\xb9\x0c\x52\x97\x1c\x77\x32\x7f\xfb\x8a\xc1\xab\x8c\xb0\xef\xf2\xbf\x22\x18\x1c\x73\xe2\x48\x39\xf6\x26\x81\xe0\xa5\xfb\x24\x36\x73\xe2\x35\xe1\x9e\x4d\xef\xd5\xd1\xc2\x02\xc2\x42\xbd\xce\x49\xe7\xc4\x26\x06\xb7\x6f\xb4\xb7\x7e\xfe\x56\xc7\x40\x24\x4c\xbb\xfd\xc5\x95\x26\x06\x46\x2c\x5f\x96\xae\xcc\x4a\x20\xd4\xcf\x3e\xb2\x56\x53\xae\x82\xe0\xb0\xd1\x3a\xfc\xb3\xfa\x30\xe1\xbb\xb2\xd1\x5f\xe3\xcc\x02\x06\x5d\x49\x36\x2e\x5b\xf6\xfb\x11\x0e\xbb\x26\x7f\xcb\x62\x91\x20\x9c\xc8\x67\xff\xe4\xe9\x73\x92\xb0\x5a\x33\xdc\x2f\x63\x5f\x25\x41\x3e\x72\x24\x6c\xaf\x98\x1d\xc1\x2b\xe9\x86\xdd\x67\x89\x48\xc2\xd4\x86\x08\xf6\x3c\x55\x5d\x02\x2f\xbb\x19\x57\xcb\xbe\x6c\x82\x44\xc6\x45\x87\xdb\xe9\x76\x84\xee\xe8\x13\x3b\x2b\xaf\xf7\x11\xde\x47\xbd\x9b\x5a\xb6\x7f\x98\x41\x40\xf9\xe2\x72\xe1\x28\x48\xe0\xbb\x87\x0e\xbf\x91\x4b\x14\xc1\x42\x3c\x52\xd5\x60\xb9\x31\xa1\x26\x5c\x53\x7a\x86\x54\x19\x81\x35\x73\xd9\x51\x69\x1d\x3d\xc2\x86\xf9\xfa\x8f\xf3\x0b\x3e\x10\x1a\x2e\x9d\x72\x28\xe7\xaf\x26\x64\xd7\x65\x38\xf7\x79\x7e\x96\xc0\xef\xf9\x1b\x3e\x6c\x7a\x5f\xcb\x40\xe8\xed\xb6\x15\xb5\xd6\xb7\x09\x27\x3e\xea\x7a\x05\x27\x98\x11\x78\x83\x0e\xd7\x73\xde\x2d\x26\x9c\x36\xb9\xf0\xfa\xe8\xc0\x0a\xc2\xdf\x82\x95\x8b\x96\xce\x48\x60\xf0\x69\x9f\x9c\xe8\x3e\x47\x0b\x42\xe1\x3e\x41\xb7\x65\xee\xbb\x08\xf9\x0d\x31\xda\x27\x94\xd6\x12\x3c\xbb\xdd\xf3\x3f\x6e\x8c\x26\x44\x3b\x71\xaf\xfc\xd6\x9f\x4f\x28\x61\x86\xd7\x97\x9b\xb7\xd3\xf8\x9e\x9d\x61\x53\x0a\xe9\x04\xe6\x1d\xcf\x5d\xe9\x2d\x13\x12\xd8\x25\xde\x73\xb3\x58\xb2\x98\x70\xd6\x70\x7e\xb6\x91\x56\x36\x03\x6b\x87\xc5\xcf\xf2\x06\xad\x08\xc9\x72\x22\x63\x9a\xac\x37\x09\x4f\x5b\x9d\x76\xfc\x6a\x54\x20\x70\xbb\xff\xb8\x71\xac\x4b\x92\xa0\x2a\x6f\xea\x62\xbd\xa9\x94\x30\xe9\xed\x6e\xb6\x6c\xc2\x8b\xc0\x66\x53\x3a\xae\x52\xd5\x41\xa8\x2d\x4c\x67\xbb\xb1\xbe\x95\xd0\x11\xb6\xfe\x82\x82\xba\x32\x61\x1d\x89\x9b\x45\x0c\x39\x32\x90\x93\xfc\x56\xca\xeb\x54\x42\x30\x8a\xfd\x4c\x07\x9e\xd8\x10\x6a\xdb\xef\x15\x6f\x8e\x72\x20\xe4\x46\x59\xb0\xf2\xce\x73\x23\x54\xf8\x1e\x38\xbf\xc8\x55\x98\x60\xb2\x5b\xec\xef\xc6\x1a\x17\x06\x11\x0e\xd7\x16\x7f\x70\x8d\x23\xc4\x7e\x37\x6a\xee\x69\xdf\x4c\x18\x6b\x94\xef\x1a\x28\xf1\x27\x1c\x29\xee\x92\x0d\xf4\x95\x21\xbc\x5b\x91\x53\xd2\xa1\x5b\xc2\x60\xf6\x9e\x52\xfd\x75\xb5\xe2\x84\x43\x7c\x5d\x97\x76\xcb\x55\x30\x98\xd9\xd8\x9a\xf9\x53\xc0\x9f\x30\x75\xe8\xe9\xb7\x33\xde\xcf\x18\x08\x2a\x99\x70\x2c\x6b\xaf\x25\xa4\x9a\xf5\x7e\xab\xe3\x0d\x25\x48\x75\xb0\x30\x65\xf3\x93\x08\x9f\x66\x1d\xcb\x7d\xda\x98\x4a\x38\x70\x64\xbd\xd1\x9d\xe9\x2d\x7e\x6b\xa4\xdc\x0b\x21\xeb\x44\x42\xae\x01\xdf\xe7\x91\x9b\x11\x84\xcb\x13\x07\x59\x7e\x5e\x3a\x47\xb8\xa8\x63\xba\x61\xb9\xc5\x12\xc2\xda\xfc\x6d\x5b\x7e\x4d\x1f\x76\x1a\x6b\xee\x7c\x59\xa1\x62\xc0\x60\xd6\x68\xe7\xfb\xdb\x5b\x9c\x09\x81\x4b\x0a\xa3\xc4\x7a\xae\x10\x32\x24\x0b\x83\x97\xa9\xc7\x10\x0a\x52\xac\xb7\xc8\x7b\x68\x11\x78\xcf\x46\x27\x07\x7a\xec\x21\xe8\xfa\x56\xea\x5e\x5c\x2a\x43\x08\x09\xf8\x73\x32\x29\xda\x98\x70\x2b\xf3\xd8\x4f\xae\x3f\x56\x04\x17\xd9\xc0\xc7\x3b\x44\xab\x18\xe4\x17\xb9\x24\xeb\xbf\x90\x25\xd4\xb1\xda\xae\x9e\xa3\xfd\x84\xf0\x56\x5e\x76\xdb\xb3\x7d\xe9\x0c\x34\xeb\x54\xae\x7b\x26\x9c\x26\x68\xaf\x38\x19\x7e\x6f\x47\x03\x21\x70\x6d\xe5\xde\x09\xa1\x4f\x84\x71\xdb\x78\x89\x4e\xf1\x64\xc2\x41\xd4\x25\xcc\x6b\x73\x21\xc8\x56\xaa\xc6\x77\xbc\x73\x25\x34\x75\xbc\xf4\x4e\xf7\xb1\x22\x5c\xae\xe7\xd8\x54\x1d\xff\x92\xb0\x24\xb7\x9e\xe7\xd4\x8d\x32\x09\x58\x99\x19\xb7\x9e\x7a\x98\xcf\x60\xcc\xe6\xc4\xb5\x2f\x32\x7b\x09\x6e\x41\x37\xfa\x25\x63\x2e\x12\xd4\x3f\xce\xf6\x79\x34\x4f\x98\x60\xaa\xe0\xd7\xcb\x9e\x78\x8f\xb0\xea\xc7\x95\xa9\x93\x69\x27\x08\xb3\xae\xcf\x3d\x3b\x12\x12\x4a\xf0\x7e\xbf\xda\x7b\x0b\x4f\x04\xc1\xab\x75\xac\x9b\x2f\x49\x8b\xf0\x63\xd1\x79\xb7\xd9\xe2\x39\x0c\xd8\x3f\x3b\xb0\x7b\x7e\xdb\x4d\xd8\x20\xbb\x76\xc6\xe6\xb8\x63\x84\xe1\xc4\xa8\xbf\xc6\x95\xfe\x84\x59\xd6\xa5\xeb\x42\x82\xaf\x10\xf8\x1e\xdb\xa7\xf3\x9f\x7d\x40\xa8\xb7\x8c\x55\xbf\x6b\x52\x48\xf0\x17\x0d\x96\x48\xbe\xa0\x4c\x28\xb5\x93\x17\x37\x8b\x95\x27\x74\x28\x5d\x5f\x74\x5d\xca\x9c\x20\x2e\x2d\x12\x67\xa4\x3d\x97\xb0\xa1\x65\xe0\xd2\xc4\x3e\x11\xc2\x35\xeb\x57\xe6\x33\xc2\x92\x09\xad\x81\xd6\x31\x13\x45\x17\x09\x6c\xdf\x79\xaf\x89\xf4\x94\x12\xce\xf9\xef\x89\x38\xe1\xde\x4b\x60\xf5\x0b\xbd\xf7\x3a\x4a\x97\x50\xe9\x23\xc8\xa1\xca\x75\x8b\xc0\xb5\xdb\xd2\xa2\x7e\x34\x94\x19\x1f\xbc\xbb\x24\x62\xb5\x32\xe1\x91\xf8\x75\x87\x2d\x0b\x18\xc2\xad\xab\x2e\x9a\xe7\x7e\x04\x32\xb0\x76\xe9\xde\xa6\x16\xbe\x97\xa0\x95\x98\x7f\xdb\x2b\xf7\x8f\x04\x38\x64\x1e\xb3\xae\x60\x9f\x4b\xb8\x7b\x81\x25\xf7\xf6\x5e\x48\x20\xf0\x4d\x0f\x3b\x37\x8b\x3e\x21\x2a\xf6\x96\xdf\x75\xe1\x36\x06\xe9\x5e\xc7\xa4\xcc\x5b\x5b\x19\x38\xe4\xee\xcf\x92\x7c\x5d\x40\xf8\xe2\xcc\xd7\x7c\x2a\x32\x8b\x70\x6a\xd7\xee\x84\xaf\x21\x29\x84\xd5\x01\xa9\xc2\xa9\xab\x23\x09\x15\x5a\x26\x61\x01\x97\x75\x09\x3b\x76\x6f\xbf\x43\xdf\xa4\x08\xdf\x47\x46\xf8\x4d\xf3\xdf\x12\xf2\x2c\xd6\x9a\xfc\x09\x7a\x4b\x98\x8a\xf8\x9b\x90\x9f\x71\x84\x10\xb5\x7f\x4a\xe6\xca\x9a\x42\x82\x67\x02\xef\x5b\xfd\x91\xe7\x84\xaf\x37\xae\x6d\x7d\xb5\xd0\xe9\x1f\xf4\x34\x3e\x88\x7e\xab\x7d\x8c\x10\x5f\x68\xd7\x2d\x5d\x20\x4e\x90\xec\x3c\x64\x2c\xb8\xf2\x2d\x03\x3d\xd9\xdb\x66\xae\xfe\x35\x0c\x3e\x4f\x39\xd0\xa2\xc8\x2a\x06\xed\xe7\x57\xaf\x3e\xfb\xac\x8e\x41\x79\xb5\xc4\x99\xe2\x92\x02\x06\xba\x15\x5d\x8f\x07\x96\x56\x32\xd8\x87\xf5\xb3\x8e\x7a\xdc\x24\x34\x46\x5c\x77\xb3\xf4\x7f\xc7\xa0\xdd\x3a\x4b\x94\x73\xf1\x5a\xc2\x56\xc9\xd8\xe5\xe6\xeb\x6a\x08\xf9\x5b\xb7\xef\x12\x14\x9c\xde\xd4\xef\xde\x36\xb6\x2f\x7a\x4f\xe0\xb8\xfb\xab\x6d\x70\x77\x12\xe1\xcb\x4e\xd7\x2b\xf2\xbb\xe2\x08\xd2\xc3\x2f\x8a\x1b\xd3\xaa\x18\x2c\x0b\x3a\xa7\x34\xa7\x39\x84\x41\xd0\x37\xce\x04\xc3\xc7\xa6\x84\xf7\xf6\x67\xcd\xb7\xd5\xa5\x13\x26\x4d\xf4\xb4\x53\x54\x96\x11\x76\x1d\xba\xc6\x48\x3a\xd9\x11\x16\x6d\x91\x5a\xdc\xba\x9d\x8b\x90\xb3\xf1\xec\x39\x87\x91\x3d\xff\xc0\xb6\x9b\x47\x50\xbd\xde\x83\x81\xad\x53\xb0\xba\x7b\xcd\x7a\x02\x1f\xef\x73\x8d\x75\x8b\xdc\x08\x16\x51\x55\x67\x2b\xbb\xac\x09\x79\x7c\xcd\x75\xa7\x9e\xab\x11\x3c\xf9\x12\x76\xf2\x6b\xa7\x32\x70\x6e\x0b\xb3\x98\x7c\x6c\x48\x18\x6b\xbb\xa5\x67\x92\xdd\x44\x50\xdf\x9d\x10\x2c\xd1\xdc\x4b\x38\xb6\x56\x90\xe7\x8c\xe9\x67\x82\xc8\xf2\x46\xdd\xb5\x0f\x1a\x09\x3b\x5c\xeb\xff\x5a\xac\xb4\x22\xd8\x37\xcf\x69\xde\x52\x51\xc9\x40\xde\xec\xf5\x53\x89\x98\x62\xc2\xf8\x9c\x5f\xba\x9f\x1c\xc3\x08\xfe\x6f\xb3\xf9\x5f\xf3\x7e\x66\x50\xa4\x97\x50\xa8\x15\x7a\x8e\x50\x66\xed\x69\xcc\xbd\xd3\x90\xd0\xee\xb9\xd8\x40\xa5\xfa\x3e\xc1\x8f\x9d\xeb\x37\x1b\xab\x0a\x61\x52\x70\x1d\xcb\xda\xcf\x1c\x84\x0b\xa7\xd2\x02\xc5\x86\xb6\x11\x56\xaf\x7b\xf6\x3b\xf8\x50\x26\x41\x62\xc8\x80\x9f\x5d\x2a\x93\x20\x79\xb2\x33\x4c\xe9\x5b\x11\xc1\xa9\x7a\x71\xf6\x11\x89\x5a\x82\x31\xdf\xa2\xee\xff\xaa\x15\xe7\xef\xef\x54\x72\x54\x23\xbc\xe8\x10\xb6\xe0\xdd\xe6\xcd\xc0\xc2\xe6\x9a\x6c\xab\xdb\x29\x42\x07\xeb\xd6\x98\x96\xa8\x20\x82\xa0\xf1\xda\xde\xff\x12\x95\xdb\x39\x0b\x85\x3f\x9f\x22\xd4\x1b\x04\xfb\xc5\x94\x11\x21\xe1\x36\xbf\x4e\x68\x93\xf9\xff\x85\xf1\xed\x4d\xa3\x2a\x47\xb4\x08\xb3\x43\x3b\x42\xec\x2f\xbb\x10\xd2\xd8\x66\xf7\xcc\xb8\x5a\x44\x78\x6e\x98\xed\xba\xb7\xee\x3d\x61\xe8\x8d\x4c\x69\x31\xab\x13\x21\xc7\xd1\xb7\xea\x56\x66\x2b\x61\xfd\x12\xcf\xce\x07\x2d\xdb\xa6\x6f\x9b\xae\x05\xed\x13\x83\x84\x6d\x4a\x03\x15\x53\xbd\x3e\x04\x7d\xb9\xd0\x4b\xcd\xfa\x05\x84\x99\x73\x1a\x1d\xb5\xed\xac\x08\xee\x0b\xa2\x7b\x27\xe5\x32\x73\xa1\xc6\x6a\xda\x32\xe6\xfc\x8e\xe0\x9c\xff\x67\xfd\xd6\xbb\xd9\x84\xbf\x27\xb9\x34\x5a\x67\x3c\x67\xf0\xf1\x89\xff\xb6\x77\xad\xfd\x0c\xaa\xc4\x4c\x8b\xfa\x8e\x64\x11\x64\x94\x77\x1c\xfd\x6f\x66\x99\x5c\xea\x26\xa1\xf3\xf6\x84\x3d\x89\xc6\xa5\xd7\xec\x39\x08\xdd\x89\x3f\x14\xd7\xae\x32\x26\xdc\xe5\xfa\x72\x76\xae\x78\x10\xe1\x88\xcd\xeb\xa7\x8b\x13\x2b\x08\x0b\x1e\xaf\x6c\x7e\x32\x3b\x81\xf0\x63\xf2\xc2\x19\x49\xde\x2e\x82\xef\xc9\xe7\x61\x41\x8e\x9d\x04\xcf\x7e\x9f\xb1\xec\x7b\x7d\x84\x39\xbf\x8c\x8a\x23\x8e\x74\x12\x2e\x7e\x7b\xc7\x27\xc7\x99\x4b\x68\x33\xde\x52\xe9\x7c\xc4\x8a\x10\x5d\xbd\xc6\xf4\xfd\xba\x06\xc2\x32\xbd\xaf\x61\xe5\x46\xca\x04\xb4\xfe\xfe\xee\xb8\x53\x96\xb0\x63\x82\x2d\x67\x63\x99\x3f\x83\xa6\x40\xd7\x8d\x9d\xa9\x8f\x08\x5d\x0f\x76\xbd\x6b\x4b\xbc\xcd\xc0\xc7\xd4\x66\x79\xb0\x71\x2f\x61\x53\x55\x72\xce\x95\xf7\x8f\x08\x9b\xfe\xdc\x37\xff\x5e\x92\x43\xd8\xb8\xdf\xd0\x43\x7c\xc3\x19\xc2\x8b\xa8\xe2\xbc\x18\x9f\x72\x06\xc5\xca\x7b\x8e\x87\x1f\x8f\x25\xa4\xb7\xb6\x2b\x5a\xbb\x9e\x20\x7c\xb6\xca\xa9\xfd\xb0\x75\x48\x02\x1f\xa7\x0e\x78\x94\xe9\x5f\x23\xbc\xeb\xfe\xc8\xf1\x57\xb3\x98\xc1\x87\x38\x57\xa3\x2a\x25\x16\x82\x89\xe7\x6c\x25\xb7\xf8\x5c\x06\xee\x82\xbc\x3f\xdf\x4f\x27\x39\x69\xdf\x77\xe4\xe5\x5f\x27\x74\x5b\xde\xe8\x94\x2a\x3f\x48\xb0\xfa\x76\xc7\xf4\x9e\xbd\x19\x41\xfd\xcb\xf1\x03\x47\x14\xdc\x08\xcd\xb3\x7e\x10\x4b\x4b\x1a\x61\xce\x15\x85\x53\x19\x7b\xc2\x08\xdb\x2c\x94\xbc\x55\x1a\x52\x08\xf9\x7e\x7a\x41\x66\xac\x51\x84\x53\xdb\x37\xd1\xc1\x47\x4e\x84\xa3\xc7\x9c\x3d\x7f\xf1\x5d\x27\xbc\x53\xf3\xab\xda\x0c\x7f\x06\xed\xef\x3c\x38\x46\x87\xcd\x09\xfc\x8b\x37\xa7\xcc\x48\xbe\xcf\x40\x44\x5c\x89\x4d\x7d\x4b\x02\x83\x0f\x8d\x42\x6d\xea\x7a\xef\x08\xf7\xf6\xb7\xb1\x89\x6f\x70\x23\xd8\xf4\x7f\xd4\x66\xc2\x1e\x11\x16\xf1\x4d\x6e\xac\xeb\xd5\x27\xac\xd3\x2d\x1c\xf6\xf4\xb5\x25\x78\xaf\x4a\x9d\xa4\x85\x52\x84\x00\x5e\x6f\x4d\xeb\x65\x87\x08\xea\x3b\x56\xb3\xa4\xcc\x91\x27\x6c\x3b\x50\xa4\xcc\xbf\x3e\x89\x20\x54\x26\xd2\x32\x34\xfd\x5d\x1c\x1d\x71\xb1\xfb\xba\xf1\x19\xe1\xf7\x37\xbf\x8f\x8b\x6a\x5a\x09\xe2\x29\x6d\xf9\xa2\xc5\x5d\x84\xd2\x4c\xbb\xfc\x7c\xe3\x97\x0c\x8a\x2b\x36\xbf\x11\x2a\xeb\x20\x68\xcd\x56\x5e\x3e\x6f\x7a\x66\x98\xbd\xaf\x5e\xf7\xcf\xd9\x7f\x10\xae\xd0\xf6\xdc\xea\x48\x18\xc1\xc5\x70\x97\x94\x44\xd9\x6d\x02\x8f\x47\x6e\xdc\x7f\x95\xea\xfc\x31\xfc\xf8\x70\x96\x30\x6b\xee\xfe\xb1\xf7\x3d\xab\x08\xfe\xdb\x5d\xfd\x58\x85\xcd\xfe\x2f\x8c\xec\x3e\x16\xf7\xa2\xff\x1c\x41\xce\xe6\xc5\x3b\xa3\xdd\xbb\x08\x3f\x3e\xdf\x95\x1f\x3a\x76\x92\xa0\x10\x6d\x50\xa6\x3c\xb4\x94\xf0\x80\xcd\xbb\x97\xd3\x3e\x86\xa0\x2d\xff\x63\xeb\xab\xd3\x51\x84\x37\xb7\xe6\x1d\xfc\x0f\xdd\xbd\xe5\xb2\xbb\xb2\x8f\x13\x1e\x4a\x3d\x7c\x98\x3d\xba\x81\x90\x19\x11\x69\xff\x35\xf8\x2d\x61\x8e\xac\x46\xbe\xa2\xe1\x2e\x42\xef\xe2\x46\xcb\xc9\x1f\xeb\x09\x63\x4b\xf3\xcc\xfa\x17\x24\x32\xd0\x2e\x74\x9f\x5c\xe0\x18\x44\x88\xcc\xda\xd8\x1f\x7d\x33\x86\x90\x5e\x2b\x77\x76\xed\x82\x7e\x82\xc1\x8a\xe0\x14\x8e\x1f\x11\x04\xa9\x3c\xa5\x6e\xce\xe9\xe4\xf6\x43\xfb\x7e\x8e\x69\xd4\x6d\x19\x17\xe1\x3b\xa9\x4a\x68\xbf\x91\x39\x7b\xc4\x4e\x87\x60\xd5\x2a\xeb\xa3\xd7\x9e\x40\xd8\xba\xf3\x19\xc7\xb3\xc0\x02\x42\xe6\x7a\xa7\xd0\x1d\xd3\x33\x93\x55\x67\xc5\xc3\x9c\xb6\x12\x9a\x3f\x6e\x52\xb6\xe4\x2d\x64\xa0\x18\xc0\x76\xfb\x68\x6e\x38\xc1\x2e\xa3\xd0\xa6\xbb\xfc\x31\x61\x4e\x5f\xb2\xa4\x76\x4a\x0d\x61\xb0\x36\xf2\x9a\xbd\x40\x21\x61\xca\xfb\xbd\xbe\x53\xd4\x18\xe1\xa0\x7c\x9d\x69\x6b\x61\x33\x03\x7b\xc5\x3f\x62\xba\x41\x1f\x19\x5c\x1d\xdb\x37\x91\x21\xe4\xc3\x40\x55\x6e\x45\xca\x17\x2e\x10\xc6\xa3\x94\x66\x27\x08\x75\x10\x7a\x5e\x34\x4b\x7b\x29\x3e\x25\x68\x18\x96\x77\x2f\x5e\x51\x4a\x08\xde\xbf\x44\xd6\x39\xbf\x9a\x50\xba\xd9\xb1\x57\x61\x87\x1b\xc1\x5b\xf9\xc1\x53\xfd\x82\x40\x06\x1b\xc5\xa5\x63\x1b\x35\xed\x09\xdb\xbd\x9c\x56\x5e\xb8\xc1\x10\x56\x3d\xb4\x9d\x94\x19\x7d\x40\x98\xf7\x8e\xd7\xec\xd8\x5e\x4f\x82\xbb\xfe\x9d\x9b\x5b\x16\x9f\x25\x78\xbf\x11\xb6\xdb\xce\x6a\x44\xf0\xdb\x2d\xb0\xd5\xd9\xf1\x28\xe1\x4d\xa0\x69\xe0\x9f\x8e\x42\xc2\xc2\x55\xce\x0b\x2d\x77\x85\x10\x0c\x56\xdb\xdb\xa9\x0c\x9d\x21\x28\xcc\xfe\x71\x75\xb8\x53\x8e\xc1\xf6\xf0\x65\x2f\xe2\x24\xc5\x08\x4e\x4b\xe2\x0d\x3e\x45\x2e\x23\x2c\x6f\x99\xc5\x3e\xdc\xb7\x9d\x20\xc9\xe6\x2c\x96\xeb\x78\x91\x50\x21\xeb\x98\xd8\x3e\x15\x4d\x70\x8a\x31\x09\x1a\xd5\xf6\x27\xbc\xf6\x98\xda\xee\x6e\x6c\x43\xd8\x38\x66\xc8\x2e\x77\x7d\x35\x41\x62\xa6\x0e\x83\x49\x6f\x06\x97\x65\xfc\x56\x78\xcd\x7d\x4d\xe8\x92\xe0\xf4\xdf\x5f\x74\xf6\xff\x42\x6e\xe5\x1e\x1e\xb6\xb3\x99\x0c\xf6\x68\x8d\xd9\x36\x77\x09\x13\xec\xd6\xcf\xac\xc9\xbf\x7b\x87\xd0\xf5\x47\x56\xea\x81\x7d\x0a\xe1\xf3\xd2\xe8\xe5\xf6\xa7\x27\x19\xbc\x8a\x1b\x77\xdf\xa7\x56\xc4\xe0\xf5\x16\x4f\x7d\x19\xb5\x1a\xc2\x39\x93\xf2\xbc\x2d\xbb\xaa\x09\x71\x2c\x99\x3d\xfd\x2e\x1d\x0c\x1a\x17\xed\xe3\x9b\x8c\x4b\x22\x08\xbe\x39\xbf\xff\x8d\x71\x35\xe1\xb8\x73\xb5\xc1\x21\x7c\x21\x4c\x72\xa1\xa1\x47\x8e\x21\x28\x2b\xef\xdd\xb9\xdb\xa4\x8a\xd0\xb0\x75\xf9\x82\xfe\x95\xd7\x18\x14\x7c\xb3\x95\x64\x56\x86\x13\x34\xad\x67\x70\x0e\x8c\x7d\x25\x14\x5c\x0d\xe5\x30\xe4\x8c\x21\x70\x89\xe7\x5c\x4c\x7f\x57\x44\x30\x7d\x79\x5b\x89\x84\x13\x09\x42\x56\x6f\x7d\xbf\xc5\xb4\x10\xee\x3e\xba\x51\x34\x53\xa0\x85\xb0\xee\xed\xc9\x2b\x63\xc7\x3a\x09\x96\x17\x73\x9f\xd4\xcd\x99\x25\x89\xa0\x55\xd6\x2b\x94\x46\x9e\x10\x2a\x4c\xd3\x1f\x94\xee\x6a\x21\x74\x5f\x7d\x18\x9a\xd5\xf3\x8c\x60\xb0\xbb\x6d\xa9\x6e\x58\x09\x81\x7f\x42\xf8\xa5\xc5\xbd\x12\x42\x74\xf9\xf3\xf5\x1b\x4a\xaf\x10\x44\x84\x82\x17\x24\x17\x7b\x32\x28\x94\x97\xd6\x74\x4e\xfd\x41\x38\xb4\xf2\xc8\x92\xb4\x35\x7d\x04\x89\x54\x83\x81\x56\xe1\x6b\x0c\xba\x87\x96\xfc\xec\x8d\xbb\x42\xe0\x32\x72\x14\xd2\x58\xf1\x9e\x60\x1d\xfa\x7e\xe7\xc9\xf2\xab\x84\xc2\x7e\xf6\xd2\xfa\x13\x15\x04\x85\x17\x27\xb2\x93\xbd\x1f\x12\x6a\x4b\xfa\x9f\x1f\xdb\xf5\x82\x70\x73\xe1\x73\x97\x5b\x22\x95\x84\xb8\x3f\xa7\x4f\xa5\xb2\x68\x11\x82\x2e\x19\xef\xe4\x6a\x4b\x22\x84\xa7\xbd\xba\x7c\x45\xf1\x11\x61\x8b\x8b\x34\xcf\xd6\x6f\x0f\x08\x0b\x14\xaf\x56\xf3\x0e\x07\x12\x64\x92\xdb\x15\xcc\xfb\x02\x09\x33\xcb\x36\xce\x3c\xbc\xa3\x99\xd0\x26\x26\x12\xc9\x3d\xab\x8e\x60\x32\x9b\xef\x7b\x6d\x59\x32\xa1\xdc\x43\xeb\xdc\x7a\xbb\x3a\xc2\xc0\x93\x1a\xbb\xfc\x65\x55\x84\x23\x4a\xca\xbf\xb4\x37\x74\x12\x82\xdf\x59\xec\x36\xbc\xd4\x4b\x78\x9d\x76\xe9\xcf\xca\xe9\x99\x87\xf6\xcb\xec\x7e\x65\x5d\x20\x24\xdb\xe4\x67\xec\xf9\x6a\x4c\xd0\x4c\x3d\xe2\x2c\x2f\x52\xcf\x20\xfb\x8e\xda\xbc\x47\xd6\xfe\x04\x16\xad\xd7\xab\xfe\x9b\xf9\x7f\xd1\xc0\x15\x55\xc0\xcf\x1c\x22\x5c\x38\xec\xe9\xa1\x13\xe4\x4b\xf8\xde\x77\x4a\x31\x7b\xce\x05\x82\x67\xf8\x06\xad\xdd\x03\x11\x04\x5e\xa1\xf6\xd9\x83\x7b\x82\x09\x69\xc9\x57\x37\x7f\x7c\x6a\xcd\x60\xdd\x87\xeb\x8d\x63\xe6\xa1\x84\xd5\xda\x0b\x79\x63\xd8\xae\x30\x28\xfa\xb5\xba\xc2\x93\x6d\x21\x81\x65\x20\x5f\x2f\xee\x56\x21\x61\xb6\x9a\xc2\xb2\xda\x98\x28\x42\xa4\xff\xdf\x30\x49\xd3\x2e\xc2\x07\xa7\x6f\xfe\xff\x55\x46\xf7\x9e\x54\x2f\x95\x8f\x66\xf0\x24\x54\x2b\x8b\xef\x63\xef\x6b\x94\xc8\x25\x3e\x10\x3b\x94\x44\xd8\xd6\x70\xce\xcf\x23\xcb\x83\xe0\xf8\xf9\xa0\x44\x9a\xab\x27\x41\x43\x69\x81\x6c\xed\xed\x3c\x82\x63\x42\x67\x80\xa5\x43\x36\xe1\x1e\xf7\xd8\x58\x7b\x68\x36\xc1\x32\x21\xe0\x99\x65\xb7\x39\xa1\xdb\x23\xb7\xf0\x5a\xab\x3e\x21\x4b\xd4\xaf\xc9\x6f\x32\xee\x9f\xea\xe5\xe7\x57\xca\x0b\xca\x8d\x09\x9b\x2f\x3f\x7c\xb5\xd8\xc1\x98\x10\x68\x74\x74\xed\xea\xa9\x1d\x84\x94\xad\x6c\xd2\x12\x6b\xb8\x09\xb1\x75\x5d\xbc\x3e\xde\xab\x08\x7c\xe7\x96\xeb\xfc\xd6\xf4\x24\xa8\x79\x29\x7f\xff\xca\x11\xcb\x40\xa1\x76\x7d\x8b\xee\xfc\x08\x82\xcb\x25\x03\x49\xb5\xcc\x0c\xc2\xda\x33\x77\xd5\x43\x13\xcd\x09\x26\x17\x3d\xb2\xf4\x8f\x67\x32\x48\x3c\xea\x76\x5c\xfd\x75\x24\x61\xdb\x2f\xb1\x95\x2a\x57\xcf\x12\xd2\xe8\xbd\xe8\xd9\x1b\x4a\x84\x63\xe9\xf9\x5e\xfc\xb5\xfe\x04\x69\xcb\xe7\x3c\x27\x24\xc2\x09\xb9\xce\x0a\xb7\xd9\xb7\xa6\x10\x1a\x1a\x42\x24\xca\xea\xcb\x09\x9d\x67\x86\xf4\x52\x1c\xaa\x08\xad\xcf\xb7\x36\x78\xf6\x36\x13\x3a\xd9\x0a\xd4\x4b\xa7\xab\x39\x49\x3c\xd1\x8e\xaa\xd6\x84\x80\xe8\xce\xfa\xbd\x97\xfc\x08\x6b\x6f\xa4\x9d\x2a\x91\xf2\x25\x74\x17\xbd\x54\x8d\x35\x09\x24\x3c\xba\xb0\xcc\xff\xbf\x99\xeb\x2a\x8b\x8a\xf3\x32\x8d\x09\x53\x87\x2b\xa4\xe6\x4e\x7f\xd2\xc7\xd9\xd9\x27\x8c\xb2\x79\x09\x77\xee\x7c\x5c\x17\xff\x89\x85\xc0\x5b\x26\x38\xe5\xd8\xa1\xc7\x80\xbd\x3f\x8b\x11\xb7\x36\x25\xb8\xc7\xde\x6b\xef\xdd\x13\x4e\x30\x8d\xbf\xe4\x3a\x33\x20\x8d\x70\xd6\x85\x8f\x35\xe1\x59\x01\xe1\xc6\xc6\x8a\x88\x2e\xc9\x56\x82\xe3\xc8\x9d\xd9\xdf\xba\xde\x10\xe6\x19\xb3\x98\xce\xb0\xce\x21\x1c\x50\x9f\x63\xdd\x2b\x55\x40\x68\xdb\x7a\xae\xf2\xc9\xc1\x57\x84\x1d\x4b\xc7\xf5\xa1\xe7\x45\xb8\xea\x61\xb9\xb9\xe4\x53\x26\xc1\x58\xdd\x66\xa8\x6b\xb4\x9d\x41\x74\x6b\xd9\xdc\x78\x3b\x31\xc2\xda\xde\xb5\xc1\x13\xfe\xe7\x08\xdd\x51\x1b\xe4\xe7\x46\x4b\x11\x0e\x5c\x59\xa7\xb8\xbc\x40\x80\xa0\xab\xe6\xbe\x3d\x22\x5b\x93\x70\x45\xa1\x75\xdf\xa3\xad\x69\x84\x89\x75\xb1\xd9\xb3\x56\x49\x13\x6e\xd4\x08\xfa\x6e\x0f\x0d\x20\xf8\x0e\x09\xb3\x3f\xd4\x0c\x20\xdc\xd8\xa4\xbc\x5c\xca\xd7\x8d\x30\xe8\xf1\x21\x25\x65\x91\x01\x81\x4f\x71\xd7\xf2\x25\x63\x25\x0c\x3e\x99\xdc\x7d\xc9\x94\xbf\x66\xd0\xa6\xbb\xc0\xf2\xb9\x81\x2c\x61\xe3\xf2\x17\x02\xfd\xe6\xe6\x84\x4f\x9e\x2c\x57\x9a\xc2\xcd\x08\x0b\x42\x58\x77\xf7\xec\xb6\x20\x70\x56\xb8\x5d\x21\x36\x63\x82\xb8\x49\xeb\x3c\x1d\xc7\x00\x06\x9c\x8a\x9f\x7a\x75\xa1\xcf\xe0\xf9\x8e\xfd\x17\xba\x2e\x2e\x63\x70\x29\x61\xb5\x0e\x57\xb5\x02\x61\x97\xbe\x71\xb9\xc6\x05\x39\xc2\xe4\xb9\xde\xde\x3f\xdf\xb4\x08\xa1\xd6\x4b\x14\xe6\x5a\x1b\x10\x6e\x5c\x5e\xd5\xac\x71\xef\x29\xa1\xf1\xd9\x99\xc6\xf4\xcf\x7f\x25\x20\xb6\x7e\x54\xd9\xa7\xe3\xa7\x04\x12\xb2\x52\x55\x54\x9a\xed\x18\xb4\x30\x2b\x38\x1b\x6a\x6a\x19\xdc\x93\xba\x7b\x5e\xaf\x2b\x99\xe0\xe2\xe5\x92\xf5\xb1\x7b\x31\x83\xfe\x1b\xb3\xef\x64\x79\x64\x13\x72\x67\x79\xe4\xec\x33\x5b\x41\x30\xf4\x69\xd3\x5e\xb5\xea\x33\x61\x9e\xd2\xa3\x96\xcb\x59\x03\x84\xf7\xbe\xcf\xcf\x9c\x60\xe9\x23\xbc\x56\x69\xf4\x3b\x25\xf4\x84\x50\x1c\xb2\x24\xa6\x2b\x32\x9a\xb0\x79\xdf\x9e\x8b\xb9\x5d\x67\x08\xd6\x05\x0b\xb5\x36\xd2\x1d\x42\xef\x36\x8b\x78\x84\x28\x30\x58\x3d\x65\xdf\xee\x1f\xe4\x43\xb8\x6c\x53\x13\x17\xca\x91\x44\x68\xdd\x7d\x6d\xab\xfc\xdb\x68\x02\x33\xdf\x8a\xbd\x45\xda\x90\xf0\x75\xf6\x7a\x9e\xd3\xcb\x2f\x12\x92\xd2\x1e\xb7\xf4\x7f\x55\x21\x9c\x19\x52\x9a\x5d\x98\x95\x40\x78\xfc\xb0\x7d\xc1\xe8\x63\x5b\xc2\xcb\x0e\xd9\x6f\xc6\xb9\x35\x84\xe2\x50\x73\x5b\x93\xbf\x56\x84\x8e\xd3\x52\xfe\x89\x89\xf1\x84\xec\xe7\x12\x07\x0c\x83\x9c\x18\x58\x54\xbc\x7c\xc3\x35\xd5\x46\xa8\x93\x9a\x78\xb9\x85\xb3\x9a\xc1\x65\x01\xee\x9e\x17\xd6\x95\x04\x29\x8e\x66\xe1\xe2\xf0\x56\x42\x61\xf4\x15\x07\x2e\x9d\x17\x04\x5e\xbd\x98\x3d\xa3\x87\x1b\x19\x18\x3d\xe7\xa8\x88\x6f\xca\x23\x14\x08\xc6\x3c\x95\x9e\xf9\x86\xc0\x25\x2d\xb3\x78\x45\x4e\x1e\xe1\x55\x97\xc9\x91\x1c\xc7\x68\x82\x83\xd8\xf3\x65\xaf\xfe\xe4\x11\x7c\xfc\x26\xfc\x7f\xcf\x79\x43\xb0\x92\xc8\xd2\xd4\x69\xc8\x21\x74\xf7\xbc\xbf\xba\xe2\xdc\x2f\xc2\xa2\x15\x87\xee\x08\x75\x47\x13\xbe\xf9\x5e\x3f\xe5\xf7\xe2\x03\xa1\xa3\x32\xf8\xfe\xc8\xdb\x2f\x84\x67\xb7\xf5\xbf\xbf\x60\xef\x27\xac\xf6\xb0\xb6\x6f\xfc\x32\x41\xa8\xe3\x5e\xa1\x32\xab\xa8\x99\x90\xe8\x38\x27\xfd\xd5\x74\xe2\x61\xbc\xf8\xba\xd1\x50\x33\xa1\x71\x74\xc0\xd3\x44\x3a\x97\xc0\xad\xc4\xda\x6b\xd4\x64\x46\xe8\x95\xdf\x30\xf3\xbc\x4d\x35\x03\x89\x15\x81\xd9\x21\xb6\x1e\x84\xcc\x74\xfb\xa0\xeb\x69\x9e\x84\x79\xfd\x4d\x12\x76\x49\xea\x04\xa7\x30\xfb\xd5\xeb\xa4\xdb\x08\x41\x7b\xc5\xdc\x84\x3e\xb9\x10\x66\xae\x73\xb5\x98\xe2\x55\x24\xb8\xdd\xd9\xd5\xdd\xbe\xf6\x01\x83\xd9\xba\x05\xe4\xb9\xcf\x80\xf0\x29\xe3\xb0\x8b\x4b\x6b\x15\xe1\xf4\x7d\xcd\xad\x87\x58\x2e\x11\x66\x8d\x0f\xdf\x5c\x55\x29\x44\xf0\x13\x30\xfb\x9b\xc4\x2b\x4e\x38\xa3\xbb\xab\xe9\x42\x81\x37\x83\x5b\x8a\x01\x6d\xdb\x35\x23\x08\xe3\xcb\x75\xad\x12\x07\x4f\x11\xe6\x27\x9a\x76\x94\x68\xf7\x4b\x40\xf4\xf6\xbe\xb4\xa5\xb2\xd7\x08\x65\x96\xdc\xef\x4a\x83\x35\x09\x05\xc7\xac\x6e\xb9\xa7\x29\x11\x54\x38\xcf\x37\x27\xe7\x1f\x23\x68\xe9\x6b\xb7\x68\x44\x0b\x13\x16\xbd\x15\x7c\x17\xcd\x22\x4d\xc8\xbb\xd4\x71\xa0\xfd\x20\x37\xc1\xd4\x55\xea\xf0\xa4\x00\x0b\x21\x7c\x63\x71\x4a\x50\xeb\xa0\x04\x06\x2c\xb9\x47\x57\x04\x44\x31\xb8\x65\xd6\x1d\xb9\xcc\x25\x9a\x70\xa9\x2d\xf8\x75\x66\x47\x0c\xc1\x4e\x2a\xd4\xbb\xb8\x28\x84\xc6\x8d\x2f\x6a\x9d\x3e\x1d\x47\xd0\x28\x74\x10\x90\x53\xdd\x4f\xb0\x55\x3d\x69\x73\xda\x2b\x80\x70\x40\xa7\xb9\xa2\x3e\xb9\x98\x10\xa8\x62\x59\x1a\x3c\x61\x4d\x38\x37\x27\xac\xd6\xfc\x83\x0a\x41\xe0\xca\xfb\x96\xa9\x2b\x36\x84\xca\xbd\x4a\x97\x4f\x7d\x2a\x21\x04\x44\x88\xa5\xdc\x52\xf9\xc8\xa0\xf9\x05\xdb\x8f\xab\x87\x1e\x10\x8e\x9c\xe7\x2c\x4a\xb7\xf7\x25\x1c\x78\xbb\xcd\xfc\x50\x44\x01\x03\x8f\xdd\xf9\xed\xfd\xf6\x51\x84\xd6\x7b\xdb\x78\x58\x96\xe7\x4b\x40\xe0\x32\x4f\xdd\x61\xd9\xd9\x84\xf6\x97\x5e\x4f\x97\x0e\x67\xd0\xff\x92\xb1\x5f\x39\x4f\x76\x94\xcd\x24\xf8\x1d\x3e\xde\x24\x21\xf0\x90\xd0\xb1\x97\xa7\xa1\x72\xdb\x61\xc2\x23\xd3\x13\x1f\xec\xc3\x53\x08\x5a\x5f\xb3\xd6\x9d\x6f\x3b\x43\x38\x9a\xba\xa9\xa8\x28\x52\x85\xc0\xf3\x7b\xf1\x91\x86\xa5\xc9\x84\x9a\xb4\x5e\x43\x9b\xda\x4f\x04\xd1\x8b\xf1\x91\x2a\xaa\x42\x04\xb9\x6d\x0e\x0b\x03\xf7\x24\x10\x56\xe7\x25\x0f\x70\xf2\x47\x13\x16\x79\x2c\x92\x31\xdb\xeb\x4b\xc8\xeb\xb1\xb2\xbd\x7f\xe3\x3d\x81\xcb\xd9\xe0\x74\x64\xf4\x65\xc2\xb6\x9e\x6e\x97\xbb\x55\x2b\x08\xde\x4e\x3d\xb6\xf6\x5f\x6c\x08\xbc\x2f\xed\xcf\xca\xaa\x78\x32\x18\x8a\x93\xdb\x9d\x14\xa4\x42\x40\x6c\x60\x7c\x92\xd0\x65\xc2\x08\xef\x03\x97\xa7\x63\x1b\x09\xcf\x83\x76\x2d\x88\xf7\x51\x22\x0c\xe6\x37\xee\xef\x91\x0d\x24\xdc\xd2\x5c\x74\xe1\xf0\x8e\x5c\x02\x8b\xee\xfa\x9f\xc7\x47\xca\x08\x5b\x02\x4e\x8f\x95\x1d\xf4\x22\xac\xc4\xbe\x19\xbe\x01\x45\x0c\x32\xe9\xda\xa1\x5b\x5e\x79\x84\xe5\x3d\x7a\x16\xaf\x92\xd7\x13\x64\xbb\x64\xae\xc9\x40\x84\xd0\xa3\x54\x54\x52\xe2\x29\x4b\x48\x9d\xb1\x83\x8d\x49\x62\x27\x9c\x1f\xbe\x94\x51\xc4\x5a\xce\x60\x61\xdc\x84\x9e\x48\xca\x7e\x82\x77\xe8\xb7\x7d\x03\x87\x2b\x08\x7a\xd2\x1d\xa8\x5c\xb4\x88\x60\xfc\xc3\x5b\x26\xf3\x53\x22\x21\xb4\x60\xcc\x4d\x31\x44\x92\xd0\x5b\xbb\xdd\x7d\x8d\x46\x1f\xe1\xb3\x8f\x72\xce\x09\x83\x64\x82\xec\xac\xfb\xa6\x7d\x93\x0f\x09\x87\xc4\x85\xd2\x4e\x44\x47\x11\x1e\xf0\xb8\x8f\x29\x07\x05\x12\x9e\x7c\x91\x76\xac\x28\xfa\x4c\x88\x6c\x0f\x8a\x92\xbb\x74\x9d\x50\x31\xc3\x48\x7d\xaa\xde\x9f\x20\xba\xc9\xc0\x7f\x71\xed\x61\x42\xd4\xa7\x19\xc5\x3f\x7d\x7c\x09\x8d\xf5\xc2\xaa\x9a\x77\xcd\x08\x8b\xbb\xf7\x3d\xaf\xee\x60\x21\xfc\xd4\x99\x3a\x9e\x6d\x9e\xc4\x60\x93\xe9\x7a\xa3\xef\x79\xa5\x0c\x8c\x15\x36\x8a\xb8\xcf\x48\x67\xd0\xc7\xef\x27\xb7\xd0\xee\x31\x21\xcc\xc1\x6f\x2e\xf1\xdc\x21\xdc\xd2\x12\xbe\xa7\xa3\x9a\xc7\x60\xc7\x9a\x99\x5e\x2f\x77\x95\x30\xf8\xbb\x30\x28\xa3\x20\x3a\x91\xf0\xfa\xaa\xf7\x39\x3f\x8e\xc7\x04\xe3\x1d\xbf\x66\x16\x5e\x68\x63\xa0\xb3\xe2\xbd\x78\xd9\xf2\x4f\x0c\x24\xda\xff\xec\xcb\xff\xd2\x40\x68\x7e\x55\x23\x24\x75\xdc\x9e\x20\xa2\x53\x3f\xbc\xe9\x6a\x32\xe1\x3a\x9f\x8f\xab\x56\x8a\x07\x41\x40\x7a\x7e\x89\xd4\xb3\x38\x42\xe9\x63\x9f\x39\xc2\xdb\x44\x09\x4a\xf6\x56\x23\x8a\x67\x1e\x10\x6e\xef\x7f\xb2\x6a\xce\xd9\x75\x84\x6b\x0b\x02\x56\xed\xe5\x7c\xc6\x60\xc5\x60\xed\xcf\xa8\xb9\xfa\x04\x89\x6a\x8e\x37\x2f\xeb\x44\x09\x4c\xb6\x86\xeb\x2c\x8b\x06\x82\xb8\x5b\x97\x82\xab\x53\x09\x21\x65\x55\xf3\x86\x7d\x2b\xb6\x13\xae\xfb\x54\x6d\x20\xd7\x83\x84\xd8\x35\x61\x81\xd2\xec\x6a\x84\xe6\x92\x9b\xd5\x26\x87\x4f\x13\x64\x5f\xdc\xfe\x5d\x5f\x55\xc0\x40\xdd\x60\x06\xef\xf8\xb9\x6a\x06\x89\xba\x0d\xc3\x2e\x55\x79\x04\xce\xd8\x6f\x0b\x5c\xa7\xb1\xd7\x8d\xe3\xfb\xa6\x37\x59\x04\xf7\x12\x6b\xa7\x33\x92\xd5\x84\x4b\x5c\x6d\x3c\xc5\xa2\xf9\x04\xc5\x5d\xfb\xe3\x7e\xf6\xa7\x33\x78\xc5\xf8\x44\x3e\xed\x31\x24\xd4\xed\xf1\xac\xee\xd8\x7c\x86\xf0\xc9\xc6\x7b\xe6\xd0\x9e\x13\x04\x9e\xa7\xa9\xa5\x3e\x27\x38\x08\x7f\x03\x44\x04\x6d\xbc\x6f\x32\x90\xb0\xcb\xff\xe4\xb7\xdf\x96\xb0\x76\x4e\xf7\xa0\xce\xd7\x27\x84\x9b\x83\xa3\xfa\x87\x7f\xfd\x20\x18\xdc\xd5\xc9\x70\x9e\x1a\x22\x7c\x5d\x20\x3f\x7c\xef\xf2\x18\xa1\xd6\x92\x7b\x83\x68\x61\x13\x21\xf8\xe4\x95\xfb\x2f\x65\xde\x10\xee\x8e\x79\x7f\xd4\xe0\xb4\x26\xfc\x09\x9e\xd0\x10\x37\xd9\x49\xe8\x8b\x34\xcc\xbc\xbe\x31\x87\x10\x28\xa7\x6f\xbe\xfc\x39\x2f\x21\xe2\xed\xa9\x14\xdb\xaa\x0a\x06\x9f\xef\xa9\x7f\x99\xfb\x76\x33\xa1\xb7\x8b\xe3\x17\xff\x99\x12\x06\xcf\x33\xf3\xad\xfc\xf5\x0e\x10\x44\x13\x34\xb7\x68\xa4\x5a\x13\x64\x5a\x64\x4a\x44\x43\xb6\x4c\xff\xad\x56\xdc\xea\x48\x9e\x41\xc8\xab\x4b\xef\xdb\x6f\x9e\x42\x38\xc4\x67\x64\x2a\x5c\x90\xc9\xe0\x7a\xad\x70\x9a\xf0\x5e\x65\x82\xc0\x0f\xad\x45\x97\xd7\xb9\x13\x26\xf3\x67\xa9\x5a\xbc\x57\x26\x44\x9f\x1a\x2b\x9c\x79\xfd\x1e\xa1\xcb\x62\x19\x47\x6d\x7b\x0e\x41\xf6\x54\xe3\xa4\x65\xb7\x35\xe1\xa1\x7f\xe6\x9a\xbf\xac\x7d\x0c\xbc\xda\x7a\x7d\x1e\xcc\xd1\x24\x74\x98\x5e\x79\xdc\xf8\x84\x87\xa0\xb2\xa8\x2f\xe4\x98\xb7\x15\xe1\x7e\x52\x82\x59\x4f\xb4\x0d\x83\x86\x59\xb7\x07\xd9\xcf\xd9\x10\xaa\x2e\x07\xca\xb8\x5c\xe8\x25\xec\x0f\xce\x4d\xaa\xba\x74\x8e\xc0\x6d\xd5\x74\x57\xfe\xb7\x2e\x61\x9f\xdb\xe4\x53\xd9\xbf\x7e\x0c\x5c\x73\xbb\xd7\xa7\x3c\x7c\x45\x38\xd1\x58\xb4\xfa\x4d\xdb\x5e\x42\x0f\xcb\xc2\x4f\x32\x9f\xf4\x09\xbc\xaf\xb4\x0c\x37\x66\x5f\x64\x20\x5b\x70\xdc\xd0\xc6\xcb\x8f\xc6\x83\xbb\x82\x1e\xba\x9c\x21\xa4\x05\x46\xae\xb8\xbd\xe8\x38\xe1\xc7\x95\xad\x91\xe6\x36\xbc\x04\xf9\xce\x1c\x8b\x9b\x43\xfa\x84\xc1\xcd\xd7\xea\x26\x44\x4e\x12\x86\x59\x79\x95\xb6\x3d\xe9\x22\x9c\xbb\x59\x21\x6c\x5b\xb9\x91\x50\xfe\x28\x6e\x69\x99\x9e\x27\x81\xbd\xb7\x30\xdf\x87\xcd\x9c\x90\x13\xaa\xb1\x3c\x6d\x6f\x34\xa1\x3e\x4d\x2b\x71\x17\xd9\x30\x38\xfb\x45\xca\x46\xee\x95\x22\x41\x4c\xb9\xa6\x74\xc7\xcf\x55\x84\x95\x39\xee\xa3\x97\x77\xf2\x11\x72\x9b\x6f\x06\x9e\x7c\x73\x84\x10\x6b\x77\x39\xf1\x54\xf0\x5b\xc2\xa6\xc9\xca\x84\xc7\x6d\x95\x0c\xfc\x52\x97\xb2\x66\xf6\x69\x12\xc2\x2e\x9a\xfe\x3e\x9b\x18\xcb\xc0\x60\x91\x55\xd2\xa9\x18\x0d\xc2\x4c\xb1\xf2\xd5\x4f\x97\xf7\x12\x4e\x16\xf0\xac\x2f\x2f\x29\x24\xac\x1f\x32\xe3\xc1\xfc\x2a\x42\xa6\x30\xdb\xed\x7b\x41\x2f\x09\x3e\x5e\x23\xb1\x29\x9a\xab\x09\x29\x59\x56\x3b\x12\x34\xdc\x08\x42\x42\xda\xe2\x57\x5c\x2f\x12\xf8\xd5\x5e\x37\x7a\x0b\x46\x12\x96\x1c\x1c\xf9\x79\x22\x9c\x9f\x70\x7d\xdf\x96\x4b\xbf\x1d\xf6\x13\x92\x85\xf4\x9b\xf4\xa3\x76\x10\x1e\x39\x6d\x52\xfd\x66\xea\xfa\x4f\x32\x7f\x99\xe1\xbe\x9a\xb9\xb7\x73\xf1\xc5\xc9\xe1\xc7\xd9\x1b\xce\x84\x6a\xbf\xf1\xf3\xb2\x3d\x4d\x84\xf9\xb6\xef\x0a\x8d\x5a\x1b\x09\xaf\x79\x3f\x71\x3d\x4f\x29\x24\x58\xe0\xc5\x76\x39\x97\x6a\x06\xf6\x96\x19\x3c\xcf\x54\xf2\x08\xdc\xd9\x0d\x2c\x71\x71\xd7\x08\x2f\x57\x99\x25\x9f\xff\xe6\x40\x28\x2e\x32\xb8\xba\x7f\xfc\x2b\xa1\x3f\x66\xbd\xef\xde\x8a\x2c\x42\xa5\xfd\xd9\x70\x2d\x85\x27\x04\x8e\x13\x66\xc2\x41\xb1\x69\x84\x04\x89\x77\xda\x52\x2d\x55\x84\xdf\xaf\x84\x1d\x6e\xc9\x7f\x22\xcc\xbd\xb0\x5a\x5d\xe2\x73\x15\x21\xb4\xb6\x45\x41\x72\xba\x3a\xfa\x7a\xdb\xc3\xd3\x2b\x0b\x19\x78\x7a\x3a\xc4\x3e\x9f\x17\x48\x50\x65\x31\x0a\x14\x1b\x7d\xf6\x0f\x24\x35\xbf\x12\x8b\xf0\x6f\xc2\x60\x4a\xb6\xe4\xdd\xfc\x47\x84\x3f\xa5\x0d\xfb\x5c\x1e\x74\x12\x5c\xa5\xd9\x8f\x88\x4f\xcf\xc8\x7f\x10\x73\xfa\x0f\xbc\x4d\xfd\xad\x87\xac\x67\x4a\xe2\xe7\xc3\xb0\xcd\xf9\xdf\x6c\x08\x2c\x2f\xba\xd2\x9d\x83\xdc\x09\xab\x07\x9d\x87\xfb\xd5\x23\x08\x73\x6d\xa4\xd9\xd3\x4c\xd9\x24\xa1\x39\xef\x43\xb7\xeb\x82\x5b\x84\xda\x1e\x6e\xab\x33\x46\x6c\x92\xa0\x9d\x76\x22\x82\x79\x76\x84\x0f\x3e\x5a\xf3\x23\xbb\x9d\x08\x25\xc5\x93\xf9\xdc\x9d\xd5\x04\x79\xa3\xc4\x55\x2e\xdf\xaf\x13\x04\x8b\x9d\xaa\x64\x8a\x8c\x08\x89\x96\x2c\xfb\x46\x2e\x7a\x11\xaa\xae\xe4\xef\x1c\x98\x67\x4c\x38\xf9\xa4\xd0\xe1\x9c\x43\x2e\x41\xd8\x98\xed\x68\xda\xd6\x36\xc2\x8a\x59\x73\x32\xec\xff\x36\x10\x04\x45\xbf\xea\x3e\xb9\x1d\xcb\x40\x43\x5e\x92\xe3\xcc\xdf\x01\xc2\x97\xb3\x42\x0b\x32\xd4\x06\x08\x9e\x79\x3c\x3c\x49\x46\xf9\x84\x8d\xd7\x07\x0f\x47\x96\xbe\x62\xf0\xe7\x89\x7b\x0c\x1f\xd3\xcb\xe0\x8e\x9d\x53\xfb\xfe\xca\x06\xc2\xc8\x44\x6b\x91\x54\x41\x23\x03\x8d\x57\x2c\x13\x73\x6e\xe7\x33\x58\xa5\x75\xeb\xf7\xc8\xf2\x0a\x42\x81\xb6\xb9\x84\xe9\xaf\x4a\xc2\x1b\x79\xe7\x65\xe7\x8f\x34\x32\x90\xac\x4b\x4e\x1d\x12\x6c\x22\xb4\xae\x1f\xd9\xa6\xa0\xf5\x9e\xa0\x18\xab\x96\xd9\xf1\x30\x9a\x10\xad\x79\xb7\x3f\xa6\x2b\x9f\x50\x27\x10\x63\x5f\x78\xff\x2a\xc1\x5c\xbc\xc3\xf6\x49\x6f\x0e\xe1\x7a\xef\xa0\x57\x80\x90\x32\x41\x59\xb0\xfd\x70\x77\xc2\x1b\xc2\x40\x7f\x39\xff\x7f\x50\x0a\x39\x92\xf9\x1f\xea\x3e\xc7\x39\x08\x71\x8b\x10\xec\x2a\x8e\xf1\x8e\x85\x7a\x31\x68\x9b\x7c\x54\xef\xac\xe6\x4e\x48\xe5\x12\x3c\x2d\xcf\x9e\x45\xe8\x6a\xd8\xd6\xbe\x30\x3e\x99\x60\xb2\x33\x3f\x5c\xf0\x73\x3c\x21\xe3\xc7\x5e\xaf\x48\x45\x79\xc2\xae\x37\x1a\x73\x59\x7e\xef\x22\x9c\x11\x33\xdc\xf6\x96\xe1\x21\xd4\x0e\xe6\xbc\xae\xb2\x9c\x4d\x78\x74\xac\xd0\xf2\x88\x63\x0c\x61\xb9\xfe\x2f\x09\x1e\xb9\x18\x42\xaa\xda\xfd\x0d\x4d\xad\x2e\x34\x2e\xc0\xc3\x70\xdd\x71\x26\xc4\xc4\xa5\x54\x7e\x10\x63\x08\x39\x9f\xd3\x67\xaf\x3d\x50\x47\x30\x52\xd8\x19\x27\xf6\x6d\x84\xf0\xb0\xf2\xfc\x7d\x6d\x85\x32\xc2\x05\x37\x69\x77\x21\xb6\x5a\x82\xcd\x06\xdd\x33\xc3\x6f\x3f\x10\x66\xaa\x88\x8e\x8e\xca\x87\xfe\x03\x85\x57\xaf\xed\xf6\x53\x07\x61\xa3\x90\xfd\x27\x8e\x66\x3f\x42\x59\xdb\x99\xcd\x3f\xa7\xab\x40\xb9\xac\xd9\x26\xe9\xce\x04\xbd\x7e\x51\xd6\x8f\x36\x99\x84\x8d\x56\xab\x0e\x5c\x14\xbf\x48\xe0\xbc\x6a\x20\xea\xf8\xd9\x8d\xc0\x3f\x7a\xeb\xfc\xd2\x39\xea\x04\x49\xa6\x30\xe6\xfa\x41\x35\x42\x0d\x4b\xc9\x5e\x63\x13\x3e\x82\x93\xc8\x1c\xbf\x2b\xa6\x69\x0c\x5e\x3c\x4e\x6a\xd2\x48\x4c\x23\x1c\x5a\x11\xa9\xd5\x57\x96\x46\xf0\xd2\x33\x0c\x7d\x60\xf4\x96\xc1\xa8\xc4\x26\xc5\x73\xdc\xa1\x84\x23\xb6\x4b\x1a\xa2\x9f\x95\x11\xbe\xe6\x15\x49\x64\x24\x67\x10\xe6\x5e\x51\xb8\xf6\x35\x3a\x87\xc1\xee\xfa\xc0\x57\x9d\x83\xe9\x84\x95\xcd\x3e\x32\x32\xf3\xf2\x08\x1d\x61\xfe\xaa\x66\x7c\x3e\x04\xe9\xcb\x45\xdd\x1f\xa5\x6e\x12\x96\x5c\x53\xf8\x32\x1c\xe4\xc1\x40\xca\xc3\xe8\xd7\xc1\x5c\x07\x06\xb5\x1a\xb6\x3c\x4a\x97\x02\x08\x2f\x97\x9f\xec\xd4\xf8\x75\x9b\xa0\x1e\xe9\x35\xe5\xd9\x50\x48\xe0\xb9\xf0\x2d\xb8\x52\x37\x88\xc0\x61\x7a\xa0\xd8\x23\xfc\x3e\x61\x7b\xe7\xa0\x1d\xe7\xc1\x3d\x0c\x7e\x7f\xf2\xde\xab\xd3\x6b\x4d\x38\x71\xae\x67\x37\x9f\xd8\x75\xc2\xa1\x73\xf2\x8f\x39\x3a\x6b\x08\x6b\xbc\xaf\x31\xc5\x0d\x75\x04\x7e\xa9\x71\x8d\x4c\x85\x08\x42\xd3\x81\x73\xf3\x2e\x97\x75\x13\xce\x6b\x9e\xe6\xbb\xe0\x6b\x4a\x48\xb5\x3d\x1f\x7b\x93\xc9\x63\xd0\x48\x2d\xcb\xb7\x04\xdc\x25\xcc\x7c\x9e\xd1\x25\x79\xa6\x82\xe0\x9a\x7c\xb5\x5b\xce\x2c\x80\x20\x72\x6b\xe0\xb4\x28\xef\x08\x21\x6c\x95\xe7\x7c\x8e\x69\x94\xdf\xd1\x91\x48\x76\xab\x26\x6c\x94\xb2\x75\x70\x08\x6a\x26\xdc\xdc\x2e\x1b\xd9\xbf\x63\x84\xa0\x6a\x28\xbc\x32\x77\x1a\x1a\x19\x52\x22\x52\xe1\x79\x84\x43\x8f\x0d\x03\xba\x14\x8a\x18\x58\xc4\x37\x46\x5f\x13\x0f\x27\xb8\x24\x9e\x98\x9d\x12\x7f\x8b\xf0\x4c\xb7\xad\xda\x34\x39\x9e\x70\x6e\xe3\xc2\x50\xe7\xad\x31\x84\x6d\x5b\x8c\xd3\x4b\xd5\xa5\x09\x3b\x17\x4f\x6c\x5c\x53\xbe\x81\x90\xb5\x21\x4f\x6d\xbe\x41\x21\x83\xdf\x07\x54\xe7\x56\xeb\x3d\x61\xc0\xd6\xf2\xca\xe2\x61\x99\x3d\xe1\xdd\x45\x87\x19\xbb\xf2\x2d\x09\xb9\x4b\x6e\x3d\x09\x0b\x0b\x21\x84\xae\x2c\xd0\xf0\x2a\xd2\x24\x2c\x9b\xcf\xf5\x75\xdb\x68\x08\x61\x69\x60\x20\xf7\x78\x97\x0f\xe1\x41\x99\xad\xe3\x0f\x4b\x4b\xc2\x32\x96\x94\x3b\x07\x15\x4b\x18\xe8\xf9\xad\xd8\x69\x55\x3f\x43\x12\x61\x33\x4a\xb4\xac\x59\xeb\x08\x37\x24\xe7\x2d\xf7\x93\x29\x26\xa8\x0d\xb2\x72\xad\xbe\x5f\x44\x10\xde\x96\x7e\xd8\xd4\xbb\x81\xc1\xe6\x51\x3d\xf5\xac\x96\x12\xc2\x47\x35\x85\xc5\x8b\xd4\xeb\x09\x0b\x13\xc2\x22\xaa\x23\x53\x09\xda\x4f\x54\xae\x2f\x18\x6c\x27\x9c\x48\x10\x09\x97\x4f\xeb\x26\xdc\xe4\xd0\x9f\xe7\x3c\xec\x47\xc8\x2b\x7f\xda\x1f\xde\x1d\xc8\xe0\x46\xbc\x5b\x48\x1e\xd7\x0d\x42\xf2\xd3\x13\x27\x66\x72\x94\x33\xd0\xad\x9d\xcd\x56\xe6\xdc\x4d\xc8\xe0\xb8\x92\xc2\x14\x8c\x13\x92\xba\xe6\x73\x25\x4d\x63\xfb\x85\x5b\xb1\xd1\xd3\xb0\x4d\x32\xbb\x1c\x32\x8d\x7a\x9e\xbc\xd3\x7d\xcf\x03\x18\x0c\x98\xb1\x9e\x54\x9d\xaf\x4b\x38\xc3\xb9\xf1\x51\xca\x87\x8f\x04\xbe\x07\x1a\x3a\x9c\xc6\x9f\x08\xc5\xa9\xca\x2f\xa3\xf9\x6a\x19\x78\xf0\xad\x7c\xc9\x1d\x99\x4f\x58\xbe\x92\x75\x9c\xcf\xdd\x94\x81\xaa\xaf\x63\x93\xad\xb5\x2a\x21\xc6\x4f\x7a\x51\x51\x0f\x3f\xe1\xde\xd5\x55\x3e\x89\x17\x52\x18\x5c\x69\x58\xbc\xf0\xd7\xe4\x0e\x82\x26\xf7\xa3\x96\xa4\xe9\xf7\xf4\x56\xf6\x3b\x6f\x13\x5b\x9c\x09\x17\x46\x16\x6e\x55\x38\x70\x83\x50\x90\x95\xd9\xe2\x6a\xf9\x82\x70\xe0\xf3\x97\xaf\x6f\x06\x3c\x09\xda\x5b\x1c\x7d\xfb\xba\xd8\x08\x65\xfd\xac\x99\x5c\x43\xea\x04\xab\xba\xa6\xde\x79\xa3\xaf\x09\x1f\x4f\x15\x69\x1a\xde\x12\x21\x3c\x68\xd8\xdc\xa7\xfc\xa2\x9c\xb0\x5c\x7a\x63\x5a\xc1\x38\x24\x60\xea\x7c\x2b\x54\x2d\xe4\x1d\x61\xed\xb7\xef\x13\xf1\xad\xe7\xfe\xc1\x9a\x92\xf1\x6d\x72\x11\xdc\xff\x24\xe7\x46\xd2\x42\x4e\xb6\xf3\x11\x1e\xae\xed\x3c\xeb\x7c\xc3\x9b\xa0\xf2\x73\x85\xf0\xc9\xe4\xab\x84\x9f\x02\xee\x7e\x1c\x7f\x6c\x08\x7f\x62\x5e\xed\xd9\xfd\x25\x90\xd0\xf0\xb6\x4f\x55\x63\xb5\x24\x61\x87\xeb\x4b\x97\xf8\x9e\x13\x84\x85\x7b\x16\xbf\x6b\xa9\xd8\x41\x08\x7d\x7f\x4f\x7c\x6c\xee\x42\xc2\x3d\xbd\xd0\x9c\x47\x82\x77\x18\xa8\xbb\x54\xc7\x1b\xd4\x25\x33\xb8\x22\xb0\xdb\x52\x71\x4d\x3e\x83\xdc\xc9\x45\x71\x4b\x86\x3a\x19\x3c\x57\x13\xda\xe7\x7d\x6e\x84\xa0\xb8\x0c\xda\x2e\xd3\x70\x19\x58\xda\x66\x3b\x8d\xef\x0f\xfe\xda\x7a\x3f\x28\x22\x8c\xaf\xce\xe8\xcc\xbc\x17\x46\x38\xb9\xbc\x90\x2d\x44\xeb\x3b\x83\xdc\xdb\xfe\x59\xf6\xa7\xde\x12\xe2\x04\x7b\x53\xbc\xfc\x6a\x09\x21\x31\xd2\xcf\xbf\x94\xd6\x13\x2a\xbe\xe9\x5d\x0a\x1c\xcc\x21\x08\x5e\x7d\xcc\xe1\xb1\x30\x99\x60\x31\x27\xa3\x3f\x9c\x3d\x85\xb0\xa1\xab\x55\xb7\xeb\xcd\x65\x42\xd0\xa2\xcb\xfc\xa6\xa7\xcf\x13\x26\x22\xf4\x59\xd3\xbe\xae\x21\x54\xfb\x67\x73\x1a\x97\x5b\x11\x9e\x37\xfb\x3a\x25\x56\xe4\x33\x10\xbd\x3c\x74\xba\x63\xc3\x3d\x02\xa9\x84\x9b\x7f\x1b\xb8\x4a\x58\x3c\x95\xa9\xf8\x47\x25\x94\xc1\x77\x66\xd8\xc9\x7d\xcb\x12\xc2\xd2\x0c\xf6\xf9\xf2\x7f\x58\xfe\x81\x9b\xf1\x62\x0d\xc1\xcb\xfe\x0c\x66\xee\xce\xb0\xf2\xda\x5e\x2f\x81\x5f\x79\x12\xef\x6e\x0a\xf6\x12\x2e\x9c\x0c\xb5\xdd\x1c\x6a\x46\xf8\xf1\xf8\x58\xff\x90\xc3\x16\x42\xd2\xa0\x5a\x4f\x86\xe9\x43\x42\xe9\xd4\xc6\x4f\xbf\x8b\xba\x09\x0a\xec\xc2\x2a\xf2\xeb\x23\x09\x67\x8e\x16\x5c\xb9\x38\x12\x44\x08\xcc\xad\xb7\x51\xf9\xd0\xc9\xe0\xcc\xc9\xc8\xe0\x3d\x3a\x92\x84\x1b\x8b\x94\xe3\xd6\x8a\x6f\x25\x08\x4a\x68\x77\x9f\xf2\xb9\xc6\xe0\xe3\xf6\xe4\x78\x39\x4e\x1d\xc2\xa7\x93\x17\xef\xb8\xa9\xb1\x13\x4c\x56\x32\xc5\x32\xc3\xcf\x08\xeb\x56\x06\x7f\x32\xab\x7b\x45\x78\x61\x30\x5c\x19\x5d\x15\x4b\x50\xcd\x76\x2b\xf9\x7d\xc4\x9d\x30\xd2\x69\x5d\xf9\x73\x7e\x27\x83\x0f\x6f\x6d\x58\xc5\xb2\xf5\x09\x4a\x71\x35\x56\x96\xdf\x75\x09\x29\x61\xd7\xea\xfa\xb9\xde\x10\xd8\xa2\x1b\x45\xf3\xe2\x77\x12\x0e\xb5\xfe\xe5\x2a\xb7\x2c\x64\x90\x51\x25\x95\xc3\xd1\x73\x84\x70\x68\xa9\x7c\xfa\x2a\x7e\x23\x06\xee\x91\xe5\x19\xe7\xf7\x28\x10\x12\x5a\x43\x5e\x3d\xb3\xde\x42\xb8\xaa\xe6\xb6\xbf\x4a\x9a\x95\x50\x59\x9f\x22\x5f\xbf\x21\x8d\xe0\xab\xae\xb5\xda\xe5\xe9\x53\xc2\xb2\x1c\xcb\x6b\x93\xaa\x35\x04\xf3\x2b\x7b\x9c\xa3\x07\xce\xfc\x83\x4b\xc6\x75\xda\x73\x6c\x06\x25\x20\xff\x21\xfa\xa0\xcf\xd9\x58\xc2\xfe\xbf\xf7\x37\xf3\x68\x78\x12\x14\x3e\x1a\xc7\x44\x5f\xca\x23\x28\x0d\x96\x7f\x1a\x7f\x75\x91\x20\x6c\x61\x99\x71\xd3\x3c\x9a\xe0\x3b\x14\xf4\x22\x6d\x81\x13\xe1\xfc\xe6\xd0\xcd\x1a\xe3\x79\x84\x73\x29\x0b\x85\x5c\x33\x7e\x12\xac\x8d\x9d\x9f\xeb\x24\x0d\x13\xcc\x3b\x54\xb7\x95\x6f\xfe\x49\xf0\xd6\x72\x5e\xa2\x92\xdb\x4a\x70\x5a\x52\x59\x70\xda\x48\xeb\x1f\x7c\x77\x8c\x51\x10\x4d\x56\xfb\x27\x51\xdf\x2b\x5a\x50\xf8\xf7\x87\x04\xd8\xf6\x2f\xff\xd1\xbf\x39\x9f\x81\xff\x81\xa3\xcb\x8d\x22\xac\x08\x8f\xf2\xa2\xe3\x56\xae\xf5\x61\x10\x72\x4a\x60\xc5\xcd\xaf\xe7\x08\xed\xe5\xaf\x2f\xc7\x27\x1f\x20\x8c\x2a\xf9\x9f\x57\x5a\x95\xc4\x20\xef\x90\xf0\xb5\x31\x15\x6b\x06\xb5\xf5\x2a\x7a\xe6\x37\xee\x10\x1c\x2e\xe7\x48\xa8\x44\xc9\x11\xa4\x8d\xad\x6a\xe6\xb1\xb9\x13\xda\xe3\x06\x79\x17\x46\x2a\x12\x9e\x78\xad\xb1\xe4\x3c\x70\x9c\xc0\x2f\xe7\x28\x31\xf6\x2d\x9f\x41\xdc\xe4\x6c\x83\xd8\x4e\x29\xc2\xaa\x91\x8b\x13\xf5\x26\x07\x08\x8b\xf7\x09\x7e\x53\x1b\x57\x21\x44\x6c\xdf\x79\xfc\xf3\x58\x01\x61\xe8\x98\xed\xdf\xe7\xa5\xcb\x09\x7b\xab\xc3\x1c\xf8\xdd\x96\x13\x2e\x5c\x8f\xd6\xea\xde\x9a\x45\x58\xd8\x1b\x1c\x2c\xbd\x2d\x8b\xf0\xb8\xe8\xf8\x37\x53\x1e\x5e\x82\x05\xff\x78\x62\x41\xc3\x75\x06\xdf\x23\x71\x40\x75\xfa\x79\xd7\x3a\x76\xfd\xcf\x24\x5b\x01\x41\xa5\x7f\xb1\xea\x7f\x89\xf0\xde\xbe\x94\x59\x67\xc3\x09\xae\xa3\xf5\x42\x5b\xbb\xca\x18\x3c\x9e\x98\xcb\xb5\x79\x1f\x17\x41\x7c\xa5\xcd\xf3\xa0\x57\x8f\x09\x72\x9d\x03\xd6\x7f\x96\xab\x13\xc6\xec\x46\x97\x4b\x25\x25\x32\xf8\x3d\x32\x2b\xf3\x6d\xe4\x77\x09\x98\xd7\xdf\xf3\x89\xe2\x57\x26\xbc\x5a\xa5\x10\x14\x14\xdc\xcc\xc0\xb2\x61\x5e\xdc\xa3\xe9\x44\xf3\x7e\x89\x7f\xef\xbe\xbd\x84\xb2\x1b\x0e\x03\xd9\x2b\xbf\x13\x72\x43\xa4\xbf\x77\xc4\x7e\x25\x38\x35\xf2\x9d\xb4\xe7\xfc\x4e\x70\xdf\xda\xf9\x9c\xb9\xf8\x98\x81\xec\x35\x31\xb6\x8a\x4f\x01\x84\xde\x8a\x8e\x6d\xad\x35\x01\x84\x85\x5b\x56\xfd\x95\x8c\x94\x24\x5c\xf6\x79\x79\x2c\xec\x0a\x3b\x61\xbc\xb8\x5a\xfd\xda\x0d\x36\x82\xf7\x8e\xb4\xae\xa2\x75\xc5\x84\x39\x17\x6b\xd3\x32\x8b\xbb\x08\xbe\xf7\x0e\xbc\xf6\x73\xe8\x23\xb8\xb9\x73\x2e\xd0\x9e\xec\x23\xb8\x6c\x66\x52\xf5\xcc\x8a\x09\x27\x7f\xb7\x9c\x9a\x32\x55\x26\xc4\xb8\xeb\xcc\xb0\xf4\x58\x4b\xd8\xb2\x6c\xf6\xdf\x9d\x32\x37\x18\xf4\x33\x1f\xe7\xb3\x41\x9b\xd0\xa3\x2c\x62\x70\x5f\x20\x8a\xa0\x32\xc7\x42\xac\x61\x86\x31\xfd\xaf\xfa\xa3\x95\xf5\xab\xe8\x46\x06\xc1\xda\x5a\x69\xa3\x66\x7f\x2e\x21\xd0\x73\x40\x64\x65\x4b\x16\xe1\xe2\xc4\xfa\xad\x77\x53\xdb\x08\xc3\x75\x39\xd7\xdf\x1f\x64\xfe\xc1\x31\x11\x95\x9c\xf9\x17\xdd\x09\x2b\xcb\x96\x75\xe4\xa6\xfa\x13\x52\xba\x1c\x85\x44\xb2\x2f\x11\x62\xdc\xd6\x0c\xbe\x10\x6e\x62\x30\xd7\xc9\x37\x7b\xfc\xc4\x3b\xc2\x6b\xee\x4d\xd1\xea\x99\x1a\x04\xbe\x83\x53\x77\x87\x6f\xcd\x20\x5c\x1f\x8f\x2d\xaa\xfa\x25\x42\x90\x97\x9a\x5c\xd3\xa8\xd6\xca\x40\xac\xd8\xfc\xb0\xd5\xf9\xbf\x84\xce\x45\x7f\xda\x2b\xa6\x2b\xb6\xe2\xf5\xec\x92\x65\xb1\x04\x69\xd1\xd1\x36\x9a\x46\xf4\x7b\xc1\x3d\x2f\x35\xd5\x09\x2b\x25\xa5\x2c\x3e\xbd\x0b\x63\xfe\x97\xf8\xe5\xdf\xb8\x33\x4b\xa6\x22\x17\x69\x29\x86\x93\xaa\x37\xb6\x10\x38\xda\xa4\xb8\x35\xbe\x09\x4c\x6f\x20\x01\x0e\xcb\x57\x16\x12\xcc\x86\x77\x6e\xd6\x9c\x4e\x84\x94\x56\xa6\xa5\xfc\x70\x66\x70\x35\xef\xd9\xda\xb5\x0d\xc3\x12\xb0\x12\xd0\x6e\x0e\x1c\xf6\x24\x04\x88\xad\xb7\xcc\x7a\xfe\x81\xb0\xc2\x60\x99\xe4\x8b\x99\x97\x08\xb9\x7d\x49\x3e\x81\x6c\x1f\x08\xa9\x9b\x24\xf7\x57\x35\x14\x10\x72\x7c\x4a\x6f\x8b\xc9\xd4\x11\x1c\x07\xda\x8a\x36\x7b\xbf\x23\x38\x2b\xd7\xfb\x5f\xf7\x70\x27\x8c\x9e\xdb\x9d\x68\x22\x5a\x43\x10\x74\x2a\x6b\xb3\x19\xb1\x20\x48\x97\xa7\xdb\xf6\x59\xc8\x11\x1c\x02\xf8\x6c\x7d\x16\xec\x23\xbc\x1b\x39\x9f\xea\x54\xd5\x44\x38\x76\x65\xb4\xef\x78\x08\xfb\xf4\xf1\x2f\xae\x30\xef\xb8\x13\x41\x4d\x35\xec\xcd\xcd\xce\x52\x82\xc1\x8d\xb7\x8d\xfe\xd3\x90\x52\xdd\x9a\xe0\x98\xe9\x4b\xe8\xde\x2c\x5b\xf2\x65\xe3\x2b\x06\x5f\x3f\xbf\x69\xb2\xfe\x62\x47\x98\x75\xd9\x4a\xd4\x62\x6d\x1c\x21\xa0\x07\xe6\xbb\x5b\x2c\x08\xe3\xcf\x0e\xbd\x9e\xe1\xc8\x4e\x78\xbc\xee\x82\xa2\xc1\xa5\x64\x06\xaa\x02\x61\xac\x5e\xb2\x22\x84\x8c\x8d\x65\xc1\xe3\x1a\xea\xf4\xbf\xe4\xe7\x9f\x4c\xb9\x9d\x58\x4a\xe0\xbd\xe1\x7f\xe9\xba\x55\x2a\x83\x3b\xe7\xbd\x4c\x1a\xb7\xdb\x33\x68\xe7\xc7\x63\xfe\xe9\x6a\x74\x7f\xf2\xef\xb4\xaa\x0d\x84\x1f\x92\xfc\xab\x4c\x9e\xc9\x4e\x3f\x7a\x7f\x5c\xd6\xec\x36\x26\x9c\xfb\x69\x53\xab\x1e\xf7\x8e\xc1\x8f\x2b\x73\x45\xfc\x23\x72\x09\x72\xc9\x4f\xf4\xd7\x4f\x57\x3f\x64\x5f\xb4\xcc\x5a\x1a\xcf\x40\xab\xb8\x50\x61\xf6\xe3\x24\x42\x76\x1e\xa7\xba\xf6\xd4\x4d\xc2\x9c\xdf\x3b\x12\xd6\xa4\xd6\x10\xc2\xdc\x19\x19\x85\x14\x2f\x82\x95\x9e\xcf\x91\xc3\x95\x21\x84\x5f\x21\x9e\x02\xc6\x33\x8a\x08\x3c\x79\x7c\x4f\x36\x6d\xb2\x25\x3c\x1c\x1c\x73\xec\xee\xfb\x2a\x81\xab\x52\x87\xdf\x7e\x13\x3c\x4f\x08\xbf\xd5\x72\xf4\xd4\xfc\x5c\xc2\xaf\x71\x7f\x17\xad\x25\x4b\xff\x41\x04\x58\x3b\xec\x33\x02\x08\xe2\xc7\xcf\xba\xe7\x5c\x3d\x43\x70\xf3\x9d\x75\xe4\xc0\xe4\x6f\x42\xdc\xac\x9d\x6e\x67\xa7\x2b\xce\x0b\xd9\x3f\xed\x7a\xaa\x09\xe3\xf5\x2f\x37\x5c\xf2\x8a\x24\x6c\x4a\xdd\x4d\x11\xb9\xe5\x84\xac\x56\x1b\x8b\x98\x27\x1f\x09\xda\xe6\xba\xf7\xb5\x96\xfe\x22\x6c\xda\xc8\xb9\x35\xff\x6d\x30\x61\xf1\xeb\xd6\x9d\x9f\x75\x5b\x19\x94\xb3\x31\x26\xc2\xda\x31\x04\x3f\xdf\x30\xc9\xd1\x63\xa5\x0c\x78\xcf\x5c\x3d\xcc\x36\x56\x46\x10\xc9\x92\xba\x6f\x9b\x6c\x4f\x38\x98\xf6\xc1\x56\xe4\x44\x0c\xe1\xc3\xc3\x0c\xaf\xb9\xb7\x63\x09\xed\x77\x2e\x3f\x4d\x6d\x7b\x47\xf8\xed\xd6\xfd\x71\xcf\xe4\x63\x42\x72\xc0\x87\x17\xba\xf7\xae\x12\xfa\xb5\xd6\x9f\x98\xd8\xa6\x4f\x10\x7c\xac\x5e\x9b\xd5\xff\x86\xc1\x22\xbb\x9c\x55\xe9\x53\xca\x84\xb4\x36\xf3\x68\xd7\x44\x43\xc2\x92\x1f\x41\x25\xae\xcd\xb3\x08\x4b\x7e\xb9\x06\xae\x4b\x4c\x25\x34\x46\xab\x6e\x58\x21\x52\x47\x18\x7b\x5a\x93\xbb\xf2\x3f\x60\xa8\x7b\xdf\x9b\x06\x82\xe9\xe9\xb6\xca\x20\xfb\x42\x42\x1e\x9f\x3c\xa7\xce\xeb\x72\xc2\xd2\x19\x85\xb9\xf7\x07\x8e\x11\xae\xdf\xd5\x3b\xfb\xe4\xce\xf4\xb2\xf4\x56\xef\x61\xf8\x89\x47\x04\xc5\x55\xb2\xdf\x5b\x92\xd4\x08\x6a\xb2\xf2\x5c\x4a\xb1\x0a\x84\x59\x3e\xe3\x6d\xcf\x6c\x35\x09\x75\x83\x7d\xa7\x1c\x27\x8b\x18\x1c\xb0\xae\xf8\xfa\xa3\x25\x9a\x20\xf1\xb7\x63\x97\xf4\x92\xed\x04\xef\xe8\xf0\x8b\x4b\xbc\x14\x08\x43\xaa\x67\xdb\x1e\x38\x2c\x21\xfc\xc9\xf0\xb4\x08\xe7\x50\x20\xa4\xbd\x7d\x73\x6e\xb8\x28\x9e\xa0\xd7\xb0\xe1\xe8\xaf\x80\x3a\x06\xcc\xe6\xd6\x91\x80\xba\x0e\x06\x27\xf5\x4f\x46\x2e\x6a\x7b\x4d\x60\x5b\x29\x73\xbc\xa5\xa5\x8e\xc1\xe8\xc1\x3a\xef\x42\xcb\x2a\xc2\xe5\xf1\xf6\x48\x91\xc4\x26\x42\x45\x94\x96\xff\xd3\xb9\xbd\x04\xc3\x46\xce\x57\x82\x77\xf3\x18\xd4\x26\x7e\x38\xe4\x11\x51\x4d\x18\xd3\x15\xdd\x9e\xd5\x9d\x43\x60\x15\xea\xe0\x82\x7e\x2f\xc1\xe0\x76\xca\x5f\x8b\xe2\x26\x42\x65\x4a\xe9\xaf\xac\x99\x29\x0c\x02\x7a\x8e\x34\x25\x78\x05\x12\xd8\x5b\x43\xca\xdf\xdf\x08\x20\xdc\x91\x56\xf3\x5b\x6e\xd5\xc5\xe0\xcd\xb9\x24\x27\x51\x9b\x1c\x42\x2f\x1f\x47\x86\xda\xf5\x40\xc2\xe0\xad\x04\x51\x3b\x3b\x73\xc2\xcd\xa9\x1b\x2c\x9e\xcb\x8e\x13\xcc\x8f\x59\x0d\x1c\x9a\x5f\x45\x28\x30\xd7\x6f\xf4\x98\x4e\x74\xf6\x9e\x6a\xde\x35\x52\x27\x81\xc1\xec\xc8\x75\xe3\xb3\xea\x09\xa2\x71\x61\x1c\x9f\x7e\x2f\x21\x6c\x5e\xb5\xb5\x7b\xe4\xb7\xe4\x3f\x78\x3a\x96\x66\x79\xb2\xc9\x9a\x20\xee\x67\xb8\x27\x27\x75\x4c\x02\x67\xf9\x14\x17\x8c\x6c\x54\x27\x08\x64\x17\x6f\xff\x6e\x7e\x88\x30\xcf\x4c\x28\xa3\xd5\x7d\x27\xe1\x85\x05\x87\xf7\x6f\xeb\x22\xc2\x69\x93\x27\x97\xca\x79\x44\x08\x95\xc3\x56\x33\x8e\xac\x75\x24\x30\x67\x37\xed\xcd\x56\x35\x23\x2c\x9f\xeb\x3d\xb0\xe5\x23\x27\xe1\xfe\xc4\xa3\xc6\xcc\xf7\x5a\x04\x99\xea\xfb\x5d\xc9\x89\x6c\x84\xd5\xf3\x3c\xe7\xd8\x2c\x93\x24\x7c\x77\x68\x4d\x0d\x0a\xdc\x44\x78\x1e\xd9\x17\xfb\xc1\xe5\x38\x41\x48\x27\x77\x4d\xfc\x79\x2f\xc2\x45\x3e\x8f\xc8\x4c\xc9\x51\x42\xea\xf2\x39\xd1\x11\xd3\x89\xaf\xa7\x96\xbb\x9c\x86\x32\x41\x6f\x69\xde\xc5\x65\xe7\x13\x09\x06\x3a\xf1\xc6\x8b\x1d\xd3\x18\xac\xf4\x4a\xeb\x72\x94\x7d\x4b\xe8\xd4\x11\xdb\xa6\xb7\xc9\x9c\xc0\x6a\xa4\x9c\x61\x1c\xbb\x8b\xb0\x29\x3e\xa7\xfc\xcd\x76\x4e\x42\x4c\x4c\xd3\xac\x19\xf3\xe7\x10\x96\x98\x72\x0f\xb1\xba\x4d\x49\xc0\xbe\xa9\xbc\xcd\xd6\xb7\x8e\xc0\x2d\x71\x32\x6d\xee\x74\x32\xb4\x6f\xc6\x46\x4b\xa9\x6c\x42\x23\xdf\xd2\x17\x0b\x02\x79\x08\x66\x6e\xab\xad\x4b\xde\xe7\x12\x2c\x8a\xd9\x17\x6b\x1a\xbe\x24\x74\x6d\xdc\xb9\xdf\xce\x5b\x8d\x20\xe4\xc8\x7e\x77\x95\xca\x52\x02\xeb\xc1\xa8\x0f\x27\x7c\x6d\x09\x7e\x3c\x79\xcd\x2b\xff\x2a\x12\xee\x1d\xce\x36\xf6\x30\x0f\x21\x2c\xda\x53\x74\x2b\xf5\xa1\x35\x21\xfb\x49\xc0\x03\xe3\x27\x79\xff\xc0\xe2\xcc\xd9\x4b\x03\x81\xaf\x09\x8a\x99\x02\x95\x46\x93\x1f\x08\x8f\xc5\xc5\x4d\x4c\xa6\xab\xdf\xfa\x57\xaf\xdc\xd9\xca\x4f\x10\x0f\xdd\x48\x33\x4a\xac\x09\xe7\xb6\x2e\xaf\x98\x28\x1b\x96\x00\x2b\x97\x33\x1f\xa7\xb9\x11\x61\xd3\xd1\xe1\x47\x16\xe5\x5f\x24\xfe\x87\x33\x55\xd9\x0b\xfa\xf4\x87\x25\x90\xfb\x7d\x7d\xf7\x5e\x93\x2d\x84\xfb\xf7\x9e\x3c\x13\x7d\x78\x97\xa0\xb1\xaa\x99\xfb\xb5\x7b\x0e\x61\x73\xaa\xf1\x9f\xcb\xac\x02\x84\x35\x6f\xbe\xa8\x8d\x15\xf8\x12\x84\xe7\x16\x3a\x37\x6d\x72\x61\x90\x1e\xec\xad\x38\xc0\x2b\x4a\xc8\x51\xbb\xe3\x2e\xbd\xe3\x04\x41\xfa\xd5\xd6\x53\x97\xac\x53\x19\x68\x68\x04\x99\x9e\xcf\xdc\x46\x48\xdb\xa1\x3c\x67\x97\xc1\x19\x42\x8c\x48\xea\x9a\x48\xf1\x75\x84\xb7\x93\x46\xd2\xbe\x3f\xa5\x09\xf9\x81\x17\xea\xb8\xf5\xd9\x08\x3c\x65\xe5\x5d\xcb\x07\xf3\x19\x5c\xdd\x2d\x60\x10\x1f\xe7\x4c\x58\x16\xdb\x36\x77\xfb\x35\x65\x82\xc1\xee\x9e\xe7\x3e\xa7\x6e\x33\x08\x5e\x5b\x72\xeb\x91\x9d\x14\x41\xae\xce\x5f\xee\x52\x6a\x3a\x03\x73\x73\xd3\x92\x25\x4b\x84\x09\xc2\x37\xe2\x27\xa5\x8f\xde\x26\x74\x18\x9d\x2d\x88\x9f\x48\x21\x94\x2e\x6c\xe6\x2c\xbe\x92\xc1\xc0\xf2\xc0\x5b\xa5\x4c\x33\x2f\x42\x7b\x41\xea\x8e\x9d\x83\x4d\x12\xe0\x94\xd6\xfe\x72\xbe\x65\x0f\x81\xbb\x71\x8b\x8f\xa0\x9a\xd0\x3f\x90\xe0\xcb\x70\x58\x5f\xa3\x40\xb8\xfa\xa8\x5b\xc1\xe1\x5b\x93\x04\xd6\xff\x94\x27\x9f\x02\x75\x42\x99\xa2\xbe\x42\x12\x7f\x2e\x03\x31\xb1\x33\x3f\x55\x4a\x89\xc0\x7a\x33\x50\x20\x2c\xbf\x80\xb0\x7a\xd9\x21\x5d\x09\x95\x10\x06\x7d\x8f\x82\xcd\xcf\xb4\x5d\x25\x84\x56\x27\xb6\xdc\x68\x3b\x4a\xf8\xb3\xac\x58\x83\xdf\x4c\x96\x30\xec\x51\xba\x41\x69\xfa\x36\x7f\x57\x3c\x38\x38\x6b\x49\x01\x83\x6d\x3f\x9b\xb7\xe6\x98\x16\x30\x18\xf9\x52\x54\x5e\xec\x90\x43\xc8\x1c\x08\x56\x29\x92\xa8\x26\x7c\xd8\xf3\x38\x7b\x55\xe4\x3e\xc2\xdf\xee\x1f\x1b\x0e\x27\xbe\x26\xec\x08\x57\x8e\xbe\x1c\x1b\xcb\x60\x7b\x81\xda\xde\x1c\xfe\x46\x82\xa8\xef\x12\x19\xce\xef\xfa\x04\x76\xbf\xaa\x45\x8a\xac\x0b\x08\x9a\xb3\xec\x63\x8f\xfb\x7a\x32\x90\xdb\x39\x74\xf0\xe6\xbd\x00\xc2\xe4\x27\xcb\xd5\xa3\x77\x2b\x08\x8f\xef\xd6\xaf\x76\xaa\x7e\x4c\xe8\x2f\x5e\xca\xc1\xba\xf7\x10\x41\x49\xe8\x6f\xd8\xc0\x89\x2c\x06\x19\x45\x5f\x6b\xfd\xd2\x16\x13\xee\x56\x97\xbe\x5c\x98\x62\xc5\x60\xc7\x6b\xde\x1b\xb7\x3c\x8d\x09\x77\x7f\x55\xe8\xeb\x20\x8e\xc1\xd6\x8b\x4f\x7e\x2a\x28\x99\x10\x5a\x36\x3e\x72\x94\x1f\x94\x27\x4c\x9c\x12\x5d\x37\xb8\xd1\x87\x41\xd2\x98\xba\xcd\xce\xab\xf7\x08\xb9\x07\xe6\xe6\xdd\x29\x1e\x97\xc0\xc9\x31\x33\x86\x2f\x57\x95\xb0\xf3\xb4\xf3\xa9\x87\x35\x9c\x84\xcd\x9b\x92\x9a\xc6\x3f\x14\x10\x78\xea\xa5\x7e\x6d\x2b\x9d\x49\xb8\xf5\xee\x88\x74\xd4\x6c\x0f\x82\xff\xb9\xe4\x44\xc1\xba\x58\x06\xc1\x57\x25\xe3\x16\x25\xbd\x61\x30\xd9\xff\xf9\xea\xe2\x35\xd7\x09\xbe\x1f\x64\x82\x6a\xe7\x07\x12\x0e\x0e\xb5\xce\xa9\x53\xd6\x26\xfc\x3d\x18\xa2\xde\x53\xc7\x41\x98\xc9\xd9\xfa\x70\xe9\x67\x49\xc2\xe2\xe0\x05\x46\x56\xbc\xd6\x84\x77\xce\x41\x65\x85\x32\xaf\x09\xd2\xf3\xbf\x88\xfc\x97\x88\x0a\x89\x7b\x1d\x2b\x5a\x48\xf0\xd4\x52\xda\xba\xf7\x64\x3a\x03\xa3\xda\x43\xfd\x1e\x56\x7d\x84\xe4\xf0\x98\x5b\x67\x4e\xf4\x10\xae\x30\xfc\x03\x49\x67\xe2\x08\x9f\x79\xbf\xf4\x9d\x34\xed\x62\x20\xb3\x6f\xf7\xa0\xf2\xb2\x48\xc2\x85\x47\x46\x4c\xf2\x35\x55\x82\x4d\x54\xb5\xe8\x1b\x33\x37\x82\x44\xc6\x44\xf0\x83\xc3\x01\x84\x67\xb2\xe7\xe3\x93\xa6\x2b\xab\xf8\x81\x65\xb5\x65\x97\x18\xf4\xcc\xf8\x28\x22\xd9\x29\x48\xb0\x55\xcb\x99\xdf\xf6\xf7\x04\xc1\x7f\xf1\xa0\x6b\xd9\xc4\x42\xc2\x64\xf8\xd3\xd1\x54\x91\x63\x84\x6f\x4d\x32\xee\xb3\xc3\x8b\x09\x3b\x0f\x1d\x14\x8e\xb8\xa0\x4e\x08\xd9\xbf\x35\x4c\xde\xef\x1a\x61\xd5\x0a\xe5\x7b\x1c\x1b\xe5\x08\x93\x5d\x77\xc3\x96\xec\x37\x25\xa4\x4c\xf2\x9a\x2e\x4a\x4f\x63\xf0\xc0\x22\xe8\xb9\xd2\x3a\x1f\x06\x05\x0b\x32\xc3\x34\x54\xf8\x09\x0f\x9d\xb9\x4c\x8f\xbf\xc9\x93\x40\xcf\x7e\xf6\x7d\x0b\x4f\x3d\x61\x30\xff\x9a\x90\xe0\xb7\xae\x49\x09\x5c\xe6\x79\x78\xec\xfe\xe5\x1e\x09\xd4\x79\xf1\xe7\x7b\x36\x9d\xa4\xff\x25\x3f\x0f\xb7\x78\xf1\x84\x0d\x4a\x20\xbf\x54\xe6\x20\xff\xd6\xca\x7f\xf0\x31\xc4\x3d\xde\x76\x0b\x07\x21\x46\xe9\x70\xb3\x4e\xaa\x2d\x21\x59\xfc\xf1\x1f\x49\xf1\x37\x0c\x58\xe7\xaf\x31\xe8\x93\xcb\x62\x70\xd4\x4f\xe4\xdc\xee\xa1\x7c\x06\x9e\x22\x43\xab\x26\xb6\x8a\x13\xd6\x35\xad\x5e\x9b\x53\x1a\x42\x50\x7c\x67\x65\x69\xaa\x90\x49\xf8\xe4\x25\x76\xa9\x58\xec\x0b\x83\xe0\x7e\x6b\xf7\xa9\xf0\x52\x42\x9f\x7e\xf1\xf0\xef\x69\x88\x48\x8c\xfc\x9a\x9c\xc6\xb8\x7f\xc4\x87\xb0\xe6\x4c\x42\xd9\x09\xc9\x13\x5f\xd9\xd2\x08\xf4\xc0\xe1\xc9\x9c\x85\x03\x04\xd6\x64\xb5\xb6\x23\xd6\x4f\x08\x83\xdf\xd5\xaf\x1b\x2f\x96\x27\x64\x69\x8c\x28\x2d\xe1\x17\x20\x78\xf9\x27\xfd\x99\x6f\x91\xc0\x60\xd5\xad\xf4\x59\x9f\xbf\x67\x12\xbe\x29\x9e\xdd\xb4\xfa\x6b\x06\x83\x44\xf7\x26\xee\x8b\xaf\x0b\x18\xac\x93\xa9\x9c\xe0\x2b\x51\x24\x68\x86\x72\xa8\xd7\x15\xbc\x61\x30\x36\xc3\xf7\x91\xa9\x61\x35\x83\xdf\x36\x79\xb2\xa3\x11\x71\x84\xf1\x4a\x89\xcc\x0b\x65\x79\x04\xe1\xa7\x56\xdb\xbd\xcd\xdd\x08\x73\xc2\xd7\xc9\x6c\x5f\xff\x86\xe0\x52\x2a\x72\xd9\x78\x56\x27\x03\x33\x7d\x3b\x66\x6d\x96\x15\x21\xdc\xec\xda\x46\xd1\xb2\x2a\x82\xe8\xb1\x3b\x0d\x8f\x8d\x0b\x18\xe8\x88\x5c\x3a\xb4\x4d\xfa\x24\x61\x4a\xd7\x2e\x92\x65\x64\x1d\xc1\xd6\xf8\x14\x57\x53\xde\x11\xc2\x43\xf9\x57\xfb\xf5\x55\xac\x09\x9b\xeb\xa6\x7e\xcd\x53\x2a\x97\xc0\x5b\x9f\x05\x5f\x9c\x1b\xa2\x09\x9f\xb7\xb2\x9d\xbd\xa5\x35\xe3\x1f\x64\x87\xf0\x86\x25\xf7\x54\x11\x52\xcd\x6e\x94\xdb\xad\x19\x20\xfc\x7e\x3d\xb5\x56\x65\x5d\x1f\x81\xcb\xd0\x56\x21\x78\xec\x15\x61\xe9\x21\xe9\x0b\xc7\x27\xd3\x08\x11\xcb\xdb\x4d\xa2\xca\xfb\x09\xc7\xc6\x63\x7f\x45\x6b\xff\x24\x84\xf0\x69\x0e\xbd\xb7\xcc\x22\xc8\xac\xd8\xd2\xe5\x17\x9d\x4f\x00\xef\x0f\xbe\x94\x25\xa9\x04\xbe\x2b\x85\x35\x9d\x7b\x9a\x08\xd7\xc6\xda\x36\x44\x44\xb6\x13\x2a\xf7\x0b\x66\xaf\x56\x2b\x20\x38\xdc\x4d\x9d\x65\x71\x3e\x80\x30\x2c\xf9\xb9\x74\xe7\xc5\xa7\x04\x23\xff\xf9\x05\x5d\x16\x49\x0c\x6a\x16\xbb\xea\x86\x2d\x0c\x24\xb0\xa5\x96\xc8\x1b\x48\x3d\x23\xfc\xe1\x4a\x90\x59\xb9\xaf\x8a\xc0\x7b\xb2\xdd\xf4\xed\xc1\x31\x42\xd6\x78\x22\x23\xa6\x91\xcb\x80\xa5\xcc\x87\x3f\xe7\x5a\x35\x61\xaf\xbb\x4c\x52\x43\xaf\x38\xe1\x81\xab\x78\x4c\x9d\xd4\x1c\xc2\xee\x40\x33\x33\xae\x77\x82\x04\x9d\xc9\x2d\xeb\xdc\x83\x33\x08\x2e\x5e\xf3\x1a\x3a\x6c\x20\x01\xc6\x33\x5d\xdb\xf7\x44\x2c\x21\x70\xc4\xd3\xb8\x63\x65\x28\x83\xed\x86\x8b\x64\xd8\x95\x37\x13\x1e\x4f\xe4\xd7\xdf\x1b\x7d\x40\x78\x71\x3c\xa6\x65\x28\xb6\x9f\x70\x52\xf3\xb3\x90\xa4\x47\x21\xa1\x23\xf4\xee\x94\x5d\x86\x23\xe1\x88\xac\x92\xce\x27\x6f\x31\xc2\x1c\x8b\x2f\x0b\x5a\x57\xf4\x30\xf0\x59\x54\xd1\xd1\x75\xb0\x8e\xc1\xb9\x25\x17\x1e\xf4\xda\x6e\x27\x58\x15\x9f\x52\x97\x54\x6d\x96\x40\xb3\xd0\xe6\xa7\x61\xb7\xd2\x09\xd7\xb2\x67\xce\x2f\x64\x71\x25\xd4\x5d\xd9\x25\xd9\x19\x6e\x46\x78\xf8\x3a\xd6\x30\x31\xfb\x28\xe1\xa2\xe2\x99\x47\x2f\x1d\x2f\x10\xde\xcc\x16\x39\x2b\x7c\xfc\x21\x21\xd6\x31\x78\xb0\xcb\xf5\x28\xe1\xc6\x83\xa4\x0d\x2b\x9d\x43\x72\x71\xf8\xad\xc6\x93\x85\x7b\xb9\x08\x8f\x22\xf3\xbe\xe8\xb4\x8d\x48\xc0\x45\x60\xef\xbe\xcc\xe0\xa3\xff\x24\x09\x4b\x0f\xf8\x29\xca\xb1\x12\x4a\xa6\x06\xa2\x79\xaf\xbc\x66\x70\x2c\xfd\x18\xdb\xcc\xc9\xcf\xf4\xff\xf0\xe9\xa7\x51\x3d\xf5\xef\xfb\xf8\x4f\x22\x32\x26\xa5\x88\x42\x94\x21\x1a\x8d\xf5\x3a\x1b\x68\x56\x9a\x35\x90\x66\x53\x94\x32\xa5\xd2\xa4\x41\x24\x8d\x0a\x29\xa5\x41\x34\xa7\x22\xed\x06\xcd\x86\x66\x49\x54\x68\x10\x1a\xc5\x11\xd2\x7f\x75\xad\xff\xfa\x5e\xd7\x6f\xad\xf7\xfa\xdc\x7b\xac\xe3\x38\x77\x37\x76\x7b\xed\xfd\x3c\xd7\x7a\x61\x8d\xc4\x7c\xb7\xa5\x66\xc3\x84\x91\xb0\x5b\x83\xbe\x5b\x7f\x13\x36\x3d\x9d\xb0\x74\x88\xf8\x40\x50\x11\x5f\x27\xb0\x4b\xbf\x9b\x60\x1e\xb9\xb4\xf7\xf0\x54\x32\xfb\x51\x70\x5f\xb4\x5a\x2e\x83\x9b\x45\x46\x21\xa1\x1c\xd9\x0c\xba\xe7\xee\xe6\xda\xf4\xd3\x97\x70\x2d\x77\xc2\xcb\x4f\x88\x45\xb8\xf2\x5b\xac\xe7\x91\xb7\x18\x21\xfd\xeb\x35\x2f\xf9\x25\xae\x84\x6f\xd6\xcc\xc3\x2a\x97\x6b\x0c\xf6\xff\xf2\xd9\x9a\x29\x34\x93\xa0\xab\x61\xe3\x2d\x64\x15\x4f\x18\xcd\x3a\x29\xf8\x4f\xb2\x64\xff\xe9\xb6\x6f\x02\xb9\x84\xf1\xc7\x4f\xf5\xe5\x26\x03\x08\x13\x43\x2b\x5f\xbb\x9e\xac\x22\xac\xf9\x3a\xeb\x92\x4d\x74\x0e\x61\xed\x6b\x7d\xad\x89\x15\x53\x4b\x8d\xf9\x47\xd1\xe6\xe5\x29\x04\xc9\x03\x6f\x6a\x34\x4b\x73\x18\x6c\x17\x89\xfc\xb5\xe3\x76\x01\x83\x37\x7a\xf2\x29\x2f\x0f\xd7\x32\x50\x3e\xa2\xe8\x2a\xb4\x69\x11\x61\x2c\xe1\xeb\xca\x2f\x0d\x3b\xff\x03\xdf\xb6\x33\x4e\x6d\x6e\x85\x04\xf6\x7c\xd3\xd8\x80\xbf\x93\x2c\x78\xf2\x32\x85\x35\x13\xd7\x09\x03\xdf\xee\x76\xda\x6d\xf0\x24\xec\x3a\x68\x74\x40\x50\x28\x96\x41\xf8\xe3\x0f\xeb\xcf\x5c\xb6\x20\x78\x7c\x74\xb5\xbd\x62\x65\x48\xb8\x72\xb3\xf3\xc2\x9a\xfd\x89\x0c\xa6\xb7\xff\x16\xd1\x5c\xb8\x85\x70\x7d\xb9\xcc\xf1\x3a\xc1\x78\x06\x52\xbd\x3e\xb5\x86\x7f\x04\x09\x3a\xad\xab\x5f\x66\xc7\x26\x10\xee\xf0\xf8\xfd\xbc\x91\x3f\x4c\xe0\x92\xba\xc6\x96\x39\x95\x58\x56\xcf\x28\x37\x35\xb9\x4e\x30\x7d\x72\x75\x8e\x82\x47\x16\x0b\xdc\xf7\x1f\x19\xa5\x45\xdd\x63\x60\x1f\xeb\xe3\xa6\x32\x7f\x39\xe1\x89\x57\xaa\x51\x95\x5f\x26\x83\xdd\x36\x6d\xcf\x94\xa7\x12\xb7\xb2\xfe\xc8\xef\x35\x31\x84\xc2\x15\x9b\xce\x2d\x65\xe3\x20\xec\xb3\x10\x9a\x67\xdf\xa1\x41\xb0\x13\x13\x37\x35\x76\xb2\x26\xfc\x0a\xae\x31\x97\xe9\xbf\x4a\x38\xa4\x17\xb5\x40\xfc\xc3\x5a\x82\xd8\x24\xa7\xb4\xc5\x7e\x4f\x82\x6d\x81\xd7\x88\x70\x75\x0c\x81\xdb\x76\xc4\xe1\xe9\x9a\x14\x42\xd5\xbc\x4b\xf3\x7d\xd8\x15\x09\x3e\x73\x0a\x73\xce\xa5\xf6\x11\x34\x4b\x8d\x83\x24\x17\x7f\x22\x64\xe7\x71\xf4\xb2\x05\x67\x30\xf0\x6a\x78\xc0\x76\xe9\x56\x2f\xe1\x86\x89\x4c\x67\x4a\x6d\x1e\xc1\xfc\x51\xd4\xa8\xb4\x74\x3b\xe1\x3a\x77\xe6\x6b\xa9\xc6\x57\x84\xb1\x75\xd5\xfc\xb6\xc2\x3f\x08\x62\xcd\x77\xf3\xe7\xe6\xfc\x24\x04\x70\xa5\x2e\xcf\xb7\x79\x46\x30\x5a\xb4\xe4\x6c\xed\xf0\x5d\xc2\x49\xf3\x14\xb6\xfb\xaf\x06\x19\x9c\x5d\xae\xe7\x21\xd2\xd0\x41\x58\xd2\xe1\x67\xb9\xeb\xcc\x27\x42\xcc\x16\xdb\x1e\x9e\x03\xad\x04\x41\xbd\xae\xec\x03\x49\x7d\x84\x0c\x56\x92\x52\x8a\x6c\x3f\x61\xae\x35\xdf\xe6\xe4\xe6\x2a\x42\x64\xcf\x8e\xed\xfe\x1a\x1f\x09\xdf\x7e\x3c\x29\xd4\xf7\x7f\x45\xf0\x3e\xda\xb4\xe2\xde\xd4\xcc\xb7\x9b\xb2\xb2\x01\x87\x0a\x08\x2a\x65\xe7\x66\x5e\x10\x2a\x23\x2c\xfd\xb6\xbd\xd8\x65\x0a\x7c\xc1\x9d\x31\x57\xd8\x0b\x09\x03\x99\x41\x1c\xff\x24\x87\xb6\xbc\xda\x76\x7e\x0a\x5e\x17\x0c\xd3\x8c\xf8\x4c\x19\x34\x67\x0a\xad\xb3\x29\x29\x26\x9c\xba\x8c\x97\x50\xce\x24\xbc\xbd\x6e\x9b\x51\x78\x29\x83\xa0\xa5\xbf\xe4\x25\xe3\x96\x4b\x70\x5d\x21\x62\xc2\x15\x92\x44\xd0\x14\x5b\xd3\xbc\x55\xd5\x93\x90\xf7\xcb\x83\x2f\x45\xab\x8c\xe0\x6b\xac\x3b\x68\xa2\x76\x9f\x90\x5f\x13\x68\xd8\x19\x57\x48\xe0\x93\x30\x2a\x70\x51\x78\xca\x20\x3b\xda\x4a\xfe\x4f\xf2\x18\x81\x6c\x27\x5b\x0a\x5a\xea\x18\xd4\x79\xc4\x67\xfa\xde\xf7\x27\x70\x85\xea\xdc\x12\xde\xdc\xc2\x42\x8d\x6f\xc1\xe0\xf4\x57\x5b\x08\x3b\xe7\x96\xa9\xef\x78\xd6\xc0\xfa\x17\xea\x87\xab\xb4\xe4\x93\xf8\x08\xaa\x92\x82\xe5\x9c\x17\xac\x08\x79\x43\x52\xe5\xa6\x2a\x9b\x08\xfc\xc3\x9c\x49\x3b\xa2\x1b\x19\xf0\x9d\x6c\x8b\x3d\xa5\xe4\x45\xe8\xe9\x0a\x1e\xf9\x14\x90\xc5\x60\xde\x59\xc1\xd5\x92\x4e\xbe\x84\x8d\x8b\x3c\x87\x87\x0f\x7a\x13\x4e\x25\xae\xdc\x19\x3d\x11\x4a\xd8\xc3\xae\xd5\xfd\xed\xee\x59\x42\xaf\xa0\x57\xee\xfb\x94\x06\x42\x5e\xa7\x66\x6a\xe0\xde\x07\x84\x92\x84\x99\x51\xc5\x63\x1f\x18\xf8\x3e\xe3\xf2\xbe\xc8\x5b\x4c\x90\x8e\x71\xdb\xf1\xd5\xd5\x9a\xc0\x6f\xfd\x35\x46\x43\xde\x92\xb0\x91\x93\xd7\x71\xe6\x7c\x75\x42\x9b\x1c\x0c\x8c\x6f\x26\x13\x2e\x47\x7c\xff\xa4\xcf\x5e\xc7\xa0\x73\x0e\xce\x58\x78\x07\x11\xd6\x2b\xe7\x6f\xb6\x17\x2a\x22\x70\xcf\xff\xbb\x7e\xff\xa0\x2d\x21\xb9\x7a\x63\xda\x02\xd7\x2c\x06\x5f\xd7\x0b\xeb\xb3\x89\xae\x24\xdc\xee\x5b\xc0\x98\x0b\xa9\x12\x86\x2e\x3d\xcf\x8f\x08\x2f\x24\xe4\x1e\x68\x7e\x5d\x2e\xb1\x85\xe0\xf2\xf4\xc2\xed\xfe\x0f\xdc\x04\x89\xd5\x4a\x87\x45\xcd\x07\x59\x30\xed\xb9\x5e\x64\x76\x3d\x97\x41\x8a\x6c\x72\x0c\xd7\x46\x49\x42\x9c\x4f\x55\x3a\xbf\x40\x19\x03\x99\xa6\x3f\x09\x16\xc7\x5b\x18\x18\x1c\x0c\x7f\xe4\xf6\x3b\x99\x81\xd8\xb0\x8f\xed\xb1\x80\xbb\x84\x6b\xbe\xb9\xce\x05\x8e\xf6\x84\x1e\xbf\x43\x71\x9e\xe9\xaf\x09\x02\x3f\x23\x3d\xd4\x26\xaf\x13\x8a\x3e\xbe\x5a\x97\xad\xee\x4d\x68\x0e\xb8\xcb\xf3\xa3\x39\x8b\xb0\xd8\xee\x63\xd7\x38\x5b\x1e\xc1\xf6\x43\xdc\x9e\xe6\x72\x1f\x02\x9b\xe2\x0a\xd1\x43\x5b\xd2\x09\x5b\xeb\xd3\x4f\xe9\xdb\x85\x30\xb0\x12\xad\xf1\x9c\xe4\x35\x98\xba\xcf\xca\xd1\xe7\xbe\xc5\x33\x10\x59\x6d\xe5\x7a\x73\xa6\x2a\x61\xc9\x99\x2b\x95\xc6\x7d\x11\x04\x1d\xe2\x69\x5a\xf3\xfc\x0c\x81\xa5\x14\xd1\xba\xfc\x88\x39\xa1\x7c\xc1\x18\x7b\xaa\xfc\x33\x06\xee\x6a\x06\x81\xf9\xf2\x77\x09\x71\x9a\x3e\x6f\x5e\x6b\x7d\x2d\xc2\x7e\xcf\xce\x6d\xee\x4d\x91\x04\x93\x71\xc7\xc9\x6f\x97\xa5\x08\xcf\x0a\x4d\x8a\x0f\xed\x09\x61\x30\x73\x6b\xa0\xdc\xf3\xb9\x4e\x84\x3b\x6f\x16\x79\x59\xed\x3b\x4c\xf0\xf6\x0e\xf5\xf5\x9e\x3a\x4c\xc6\xfb\xcd\xb9\x1b\x97\xbc\x9e\x50\xa0\x39\xbd\xc8\xf1\x5e\x06\x03\x41\xcb\x7d\x7f\x8a\xf2\x22\xe8\x5f\xcc\xdb\x1a\x6a\xdc\x62\x19\xf6\x1f\x94\x96\xba\x29\xf9\xbd\x0b\x23\x70\xec\xff\x8e\x76\xde\x5c\x82\xc9\x26\x93\xf4\x5c\x6b\x2f\x06\xd7\x6f\x7e\x2b\x7e\x59\x7b\x9d\x60\x99\xeb\xa5\x10\xa0\x1d\x48\x88\x9b\xf9\xe9\xcf\x29\xff\xa3\x84\xf6\x77\xfe\xa5\x73\xf9\xee\x30\x98\x71\xed\x7c\x7e\xc3\xa2\x20\xc2\xb7\x53\xeb\x05\x37\xb7\x75\x12\xd4\x6a\x13\x32\xd2\xcf\x7e\x20\xf4\xb6\x4c\x2c\x1e\xe8\xad\x25\x0c\x17\xbf\x58\x7f\x35\xbc\x95\xa0\x2d\x7f\xe4\x80\xc5\x7d\x57\x06\x87\xb6\x8f\x98\x3c\xfc\xb3\x8d\xa0\xbd\xab\xd2\xc3\xee\x2d\x0f\xc1\xf1\xda\x5c\xe1\x27\xe3\xdf\x59\xf0\x6d\xa8\x7a\xb4\x77\x64\x8c\x85\xf4\x6c\x01\xf5\x8e\xdc\x33\x84\xf0\x16\xef\xe1\xd1\xe9\x29\x04\xd1\x19\x42\xec\x0e\x9b\x1e\x10\xbe\xf2\x96\x9e\x70\xbd\x6d\x44\xf8\xb0\x57\x7e\x75\xc0\x8f\xa3\x84\xc1\x9f\xef\xf6\xcf\xfc\xeb\x4d\x88\xd1\xb6\x9b\x2f\x6d\xdf\x4d\x70\x77\xb9\x2d\x3a\x6b\x2a\xb9\x76\x28\xe0\xd4\x2e\xa5\x01\xc2\xd1\xb7\xda\xcf\x45\xfc\x12\x08\x17\xde\xff\x7e\x60\xba\xbd\x82\xf0\xbd\xfb\xe4\x6e\x7f\xf1\x2e\xc2\x73\x5a\xf2\x38\x64\x0a\x86\xeb\x53\x05\x82\xa7\x90\x3f\x77\xee\xf4\xf0\x8c\x32\x82\x02\x09\x57\x44\x57\x5a\xd1\xff\xff\xf7\x20\x05\x84\x80\x06\xdf\x4b\x3d\x76\x15\x84\x1b\xfd\xb2\x6b\xf2\xa6\x12\x13\xb6\x57\x07\xf2\xf5\x52\x08\x31\xf3\x8e\xd4\xce\x7a\x5e\x45\xf8\x70\x81\xfb\xf7\xc7\xaa\xab\x84\xc3\x5d\x2e\x7b\x04\x9f\xde\x23\xac\xd0\x9e\x74\x0f\x9b\xe3\x42\xb0\xdd\x19\x77\xb2\xcb\x48\x8d\xd0\x55\x30\x5a\xda\x9d\xae\x4b\xf8\x55\x65\x38\x6f\xc7\xe4\x51\xc2\xa7\x77\x4f\x7f\xb3\x9b\xac\x23\xb4\xcd\x6d\x2b\x97\xeb\x6e\x25\xf8\xbb\xea\x98\x76\x3e\xae\x27\x78\x8f\x66\xe6\xf2\x4b\xc8\x10\x8a\xfa\xd7\xa6\x75\x4b\x7f\x22\xbc\xc8\xb8\xe0\xb4\x55\xa0\x97\x05\x93\x89\x0f\x3f\x57\x38\xc7\x13\x78\x26\xd3\x36\x49\x38\xdf\x23\x6c\x37\x30\xde\x39\x53\x50\x97\x70\xca\x48\x7e\x77\x8e\xb6\x1c\x21\x77\x44\x3e\xc1\xd3\x47\x99\x70\x6e\xc1\xc0\xfc\xab\x5a\xfc\x04\xde\xd5\xca\xe2\x8b\xf6\xf7\x13\x0a\xae\xba\x1a\xb7\x68\xf3\x13\x58\x31\x9a\x57\x3e\x5f\x2a\x61\x70\xb6\xf4\xf6\xa4\xc5\xb5\x00\x82\xd3\x1d\x9b\x6d\x52\x4e\x5f\x09\xd0\x65\x5b\xb0\x60\xc4\x8a\x90\xb8\xea\xa4\xb5\xe8\x05\x2d\xc2\x57\x0e\xf7\x35\x55\x73\xfd\x09\x35\xde\x43\x82\x65\xef\x77\x4e\x7d\x92\xee\xe4\xb6\xad\x6b\x64\x60\x5e\x7d\xe2\xee\xb8\x97\x08\xa1\x27\x6f\xbe\xa0\x49\xfe\x93\x22\x58\xe7\x54\x9a\x57\x44\x0d\x14\x61\xb9\xa0\x51\xd6\xdf\xa2\x78\x06\x5d\x96\xa3\x87\x17\xaf\xf7\x26\x28\xb7\x07\x13\xf7\xce\x34\xc2\x9b\x8b\x86\xd2\x92\xf6\xdb\x09\x2a\xb3\x86\x72\xce\x5c\x7e\x4a\xb8\xd7\x2a\x79\x20\x7c\x0a\x2a\x21\x7a\xac\xe6\x57\x19\x04\xfd\x4c\xb9\x5d\x9f\x6f\x1d\x22\x64\x0d\x5d\x89\xec\xf4\x48\x25\x18\xd5\x9f\x1c\xe7\xde\x2c\x43\xc8\xc8\x1a\x53\x5b\xff\x50\x85\xb0\x2a\xf0\xfa\xd9\x83\x7a\x25\x0c\xc2\x25\x8e\x3c\x5e\xa3\xe1\x42\xd8\xf1\x1d\x8d\x8b\x9b\xce\x13\x9e\xbd\xe6\x5e\x11\x26\xe1\x4b\x38\xf8\x72\x9c\x7f\x66\xc3\x15\xc2\xb3\x2d\x1c\xf7\xb2\x2c\x0b\x09\x21\x39\x69\xb9\x7e\x4f\xe2\x09\x15\x65\x58\x6c\x52\x78\x93\xb0\xe2\x6f\xfe\xda\xa1\xa6\x97\x84\x67\x59\x45\x5f\xeb\xe4\x3a\x19\xac\x0d\x2d\x0b\x2c\xda\x6e\x4c\x30\x75\x0c\x7e\xde\x3f\x3b\x9a\x90\x9e\xa7\x70\xed\x8f\x60\x30\x03\x79\x8d\xa3\x13\xcb\x8f\x1b\x13\x16\x2d\x39\xb9\x65\x9c\xc9\x23\xf0\xbb\x6c\xfa\x33\x78\xb2\x87\xc0\xdc\xb0\xff\x3a\x91\xd0\x41\xf8\x1c\x68\xa9\xb0\x71\x55\x16\x81\xe3\x4e\xe3\x66\xf7\x8d\x61\x84\x61\x05\xb5\x7c\x3f\x37\x27\x42\x48\xea\xc3\x80\x05\x9c\x4e\x0c\x74\xd6\xd8\x99\x44\xca\x8d\x11\x06\x73\x7e\xa8\x87\x1c\xbe\x41\xe8\xa9\x91\xfe\xb1\xda\x5f\x87\xf0\xa5\xf9\xea\x6f\x21\xfb\x0d\x84\x43\xbf\x1c\x42\x7f\xda\x9a\x10\x3c\x2f\x6b\x8e\x79\xa9\x17\x12\x62\x1a\xf6\x1e\xcd\x71\x56\x25\xf0\x68\x69\xcf\xb1\xd9\xb3\x97\x70\xaa\x9c\x35\x5f\xf7\x7d\x2c\x61\xdb\xf2\x39\xe1\x45\x35\x57\x08\xc2\x0b\xcc\xce\x7a\x4b\xae\x27\x68\x6b\x2c\xaf\xd6\x78\x5f\xc6\x60\x65\xa9\x82\xf4\xf4\xe7\xc9\x0c\xf4\x2b\x4d\x4a\xbb\xcd\xc3\x09\x96\x8b\x92\xd3\xf7\x3c\xd7\x23\xd8\x68\x1e\xf2\xd5\x70\x61\x18\x0c\x45\x94\x32\xa7\xd5\xef\x10\x04\xaf\xcc\xea\x93\x49\xbc\x43\xb8\xf1\xd9\x23\x6c\x96\x60\x31\xe1\xbd\xb1\xc7\xd0\xfb\x79\x60\xb0\xbb\xa7\xe1\x95\xf9\xea\x11\x06\x82\x1b\xd8\xd7\xb9\xaa\x7b\x12\x2c\xc5\x8c\xf8\xf7\x36\xd4\x13\xd8\xe3\x44\x95\x5f\xde\x28\x67\xd0\xce\xb9\x10\xad\xa3\xee\x04\xf6\x69\x6b\x66\x71\x89\x96\x12\xce\x98\xc7\xd8\x7c\x38\xb2\x90\xf0\xaa\xfd\xc1\xc2\x7b\x56\xa7\x09\x61\x81\xef\x93\x72\x55\xab\x08\x89\x5e\xcb\xd3\x2d\x0a\xe4\x08\x42\xd7\xe6\xb3\x99\xf6\x72\x13\x96\x70\x9f\x19\x17\xcc\x7b\x42\x38\x69\xf8\xb6\x3a\x6d\x67\x21\x83\x9d\x37\x52\xf3\xb3\x76\xd8\x10\xca\xd3\x07\xb3\x6e\xce\x3a\x4d\x58\xe5\xb4\xc2\xc8\xee\x65\x03\xe1\x4e\x47\xf1\xab\x7f\x2a\x8e\x59\x05\x5e\x1d\xa4\x49\xf0\xaa\x6c\xd9\xbd\xc3\x54\x9a\xd0\xba\x3f\xfd\x99\x9a\x6a\x36\x83\x49\xcd\x5b\xf3\xc5\xfb\xed\x08\x27\x5e\x7e\x4e\x6d\x92\xd1\x23\x34\x9e\x9f\xf8\xbd\x7f\xa4\x84\x50\x55\xfe\x25\xc7\x56\x2e\x8b\x40\x35\xc7\xbe\x50\x66\x1b\x81\x53\x7e\x67\xd0\xdf\x58\x10\x38\xdf\xeb\x89\x36\xe7\xe4\x11\xd2\x63\x7a\xb4\xe4\x65\xdb\x08\xb3\xd7\xbc\x94\xd6\xb0\x2b\x67\xf0\x5c\xe7\x44\xf5\x37\xd3\x64\x06\x71\x23\xb5\x27\x8d\xa3\x4f\x11\xe4\xd7\xf3\xc8\x4a\xaa\x36\x33\xe0\x59\xb2\xf7\xcf\x02\xdb\x66\x06\x1d\x47\x93\x8a\xab\x4f\x66\x10\x5a\x7e\xd8\x5e\x4f\x08\x38\x43\x58\xfd\xe2\xc6\x43\x61\x93\x14\xc2\xf1\x97\xcd\x99\x0f\xb5\xc2\x09\xa9\xa2\x22\x9a\x4e\x61\xcf\x09\xdf\x14\xce\xab\x9f\x98\xf1\x82\x50\xf5\xb2\xf9\xc1\xda\x8f\x53\xdb\xba\xc1\x2c\xbe\x08\x97\x87\x84\xe3\x66\x5b\x72\xce\xdd\xf0\x26\x5c\xde\xb5\xaa\xbc\xb9\xc4\x9a\x60\x2b\xd7\xbd\xc5\x7a\xe5\x5d\x06\x23\x3e\x4b\x38\xb6\xb1\x85\x12\x5c\x8c\x8d\x4a\x82\xb6\x5b\x10\x0c\x3d\xed\x66\x2e\xf1\x8a\x66\x10\xaf\xca\x2f\x1f\x3f\x3c\xf5\x9e\x1f\xcf\x72\x5d\x0f\x7b\x42\x58\x6f\x9b\xcf\xf8\xc1\x54\xc2\xed\x6f\x41\x09\x31\xcf\x96\x11\x36\x68\x85\x98\x88\x57\xa7\x13\xc6\x37\x27\x4b\xde\x7c\xac\x47\x88\x4c\xb0\xef\xdf\xa3\xfc\x86\x81\xcc\xde\x27\xdb\x96\xdf\x6d\x63\xe1\x58\xcc\xd0\x5b\xdf\x77\xa6\x04\xa3\x2d\x5d\x8f\x87\xec\x7d\x19\x2c\x5e\xcc\x75\x71\xd9\x54\xb5\xac\xbf\xaa\x6f\x7c\x75\x31\x61\xdf\x83\x27\x8d\x93\xf1\xdd\x2c\x98\x3f\xf8\xb2\xa7\x38\x33\x94\x70\xed\xf5\xf7\x47\xe7\xd5\xcb\x09\x52\x7a\xc9\x76\x3f\xa9\x86\x41\xc2\xfb\xce\x95\x9c\x2b\x74\x09\x06\x8b\xd2\x26\x24\xcd\x44\xfe\x83\xe3\x55\xef\xe7\x18\x16\xbd\x2f\x82\xf9\x9f\xb8\xc7\x5a\xe9\x0e\x0c\x0e\xcf\x2c\x3e\x97\x45\x57\x09\x29\x17\x35\x4c\xdf\x56\x9f\x21\x8c\xca\xbe\x57\x5d\x6f\x51\x4b\xd8\x1a\x21\xb7\xdf\x62\x61\x0a\x41\x64\x8b\xa8\xf8\x6b\x76\x2f\x06\x9f\xf7\x84\xee\x18\x18\xb6\x20\x88\x64\xba\xfa\x4f\x1e\x36\x27\xa4\x1f\xfc\x95\xcf\xee\x27\x4c\x30\x0b\xf8\x31\xb8\x57\xbd\x94\x70\xbf\xe6\xbb\x20\x5b\x83\x2d\x61\x55\xc3\xdc\xd3\x85\x7f\x82\x09\xeb\x02\x76\x79\xae\x4a\xc8\x61\xb0\xef\x9d\xf5\x84\xd3\x9c\x24\x82\x8c\x97\xac\x60\xf2\xb1\x38\x42\xd7\x9c\xde\x77\xf5\x92\x39\x0c\xa2\xc5\xe5\x83\x7f\x37\xc6\x13\xd8\x64\xe7\x8b\xbd\xee\xb8\x4a\xd0\xd5\x9b\x5e\x25\x6e\x96\x40\xd8\x3d\xf9\xc6\xe1\xf0\x97\x52\xc2\xae\x0e\xc7\xda\x40\xf5\xe3\x04\xfd\xd6\x50\xce\xbd\x06\xf1\x04\x83\xbc\xf5\x9e\xef\xe4\x96\x12\x8c\xf6\xc4\x84\x65\xd7\x24\x32\x38\x76\xa0\x66\x83\xa9\x4b\x02\x83\x67\x4a\xdf\x0e\x55\xb5\x66\x32\xe3\xe7\x6a\xc4\xd4\xac\x3c\x09\x89\x74\xcc\xf1\xe9\xd9\x0e\x82\x1b\x7b\x49\x7e\xe1\x14\x1a\xe6\x3d\x3a\x6c\x61\xf8\xa5\x08\x72\x3d\x82\x31\x41\x8b\xbd\x08\xac\x91\xed\x69\x43\xd5\x25\x04\x99\x4f\x11\x35\xd5\x85\xde\x84\x44\x8b\xd7\xbf\xaa\xa6\xf0\xc1\x5e\xd1\xf8\x1f\x04\x98\xed\x37\xad\x9c\x82\xcd\x98\xdb\x5c\x77\x07\x6f\xc2\xe0\x9d\x8b\x13\xe7\x12\x23\x09\x10\xf0\xbe\x7b\x83\xcd\xeb\x3f\xf8\x5a\xc9\x59\xb3\x2e\x35\x9d\xc0\x33\x23\xd7\x4b\x64\x0a\xff\xaf\xfa\xb9\x60\xb9\x90\xc2\x4d\x0e\x02\xaf\x7e\x6d\xaf\xab\xa3\x07\xc1\x64\xc9\x4f\x11\x2d\x71\x77\xc2\x96\x0e\xcb\xa6\xe7\x15\x32\x84\xae\x37\xda\xf3\xa4\x57\x05\x10\x36\x6c\xed\x9d\xa8\x9f\x29\x45\xf8\xa6\xd4\x66\xb3\xe4\xb1\x1b\x21\xfa\xf2\xa1\x67\xfe\x7f\x3d\xfe\x17\x4a\x96\x5a\x9f\x0f\xc8\x5e\x40\x90\xd9\xee\x35\xff\x53\x51\x3e\x61\xf7\xd0\x22\xaf\xe0\x65\xfb\x09\x8b\x22\x37\xb9\xb7\xc9\x37\x32\x48\xa8\xda\xfa\x97\xcf\xcd\x9b\x10\x2e\xa0\x7c\xce\x30\x68\x0b\xe1\x87\x50\xca\x74\x8e\xb5\x49\x84\xd2\x8b\xa3\xca\xba\x71\x01\x84\xd9\x0b\xc5\x52\x6a\xd7\x97\x12\xce\x9d\xb3\x9d\xd9\x5b\xa3\x44\xf0\xde\x18\xaa\x69\x78\xd5\x89\xf0\xeb\x08\xd6\x34\x3d\x8e\x26\x9c\x86\x09\xf3\xad\xbe\x8d\x81\x37\x6f\x55\xf0\x53\xe1\x20\x06\x92\xc7\x76\xac\xbb\xb3\x74\x1f\xc1\xfb\xc5\x30\x5b\x59\x75\x3e\x83\x53\xe7\x5f\x3e\x73\x61\x64\x08\x17\x95\x7f\x2c\x0f\x15\x0c\x60\x30\xf0\x71\x1b\x97\xaa\xca\x3d\x42\x73\x4c\xa1\x4e\x3d\xab\x91\x20\x50\xf3\x58\x7e\xba\xc3\x8e\xa9\x7d\xe5\xab\x92\xe4\xa2\x5a\x06\x76\xed\x27\x9c\x13\xe6\x48\x13\x8c\x2e\xec\x5f\xf6\xa0\xef\x19\x41\xfe\x94\x83\xfd\xbe\x0f\xa7\x19\xbc\x95\x3d\xa4\xce\xd2\xfd\x4d\x60\xdd\x8c\x1c\x96\x19\xfd\x45\x68\x2f\x0b\x1a\xcd\x4b\xa8\x64\x30\xfe\x7c\xb4\x93\x2d\x25\x87\x60\x55\xfe\xf4\xd7\x3c\xeb\x3a\x06\x3b\x9d\x9a\x83\xfb\xaa\x1b\x19\x44\xc4\x37\xae\x12\x90\x2c\x23\x4c\xaa\xb9\x24\xdd\x1c\x2c\x21\x1c\x19\xfc\x9d\x4f\xbf\xdf\x10\xbc\x8f\x0f\x3f\x90\xf3\x2d\x23\xc8\xbc\xcf\xde\x5f\xa5\xf8\x86\x70\x2a\xa7\x31\xc3\x78\x41\x09\x41\xfa\x8c\x80\xf5\x2f\xc5\x57\x84\x45\x8c\x45\x56\x84\xf8\x2b\xc2\x3a\x55\x5e\xb7\x8f\x06\x6d\x04\x83\xa5\x56\x8f\xba\xe7\x0e\x11\x0c\xb7\x7d\x99\xc7\x96\x55\x4c\xd8\x74\xbb\x74\x5a\x61\x54\x13\x61\xce\x1e\x0d\xff\x65\x8e\x09\x84\x3d\xe2\xdb\x7c\xfe\xb9\xea\xb5\x76\x4d\xd9\xa6\x90\x57\x84\x47\x69\xeb\x47\xa3\xa4\x8a\x09\x7f\x3c\xbb\x7e\x6b\x2a\x55\x12\x06\xf9\x27\xbb\x97\xbf\x2d\x22\x8c\x0f\x2d\x7f\xc3\xe7\x52\x46\xa8\xf9\x54\x3e\x6f\x46\x41\x31\xc1\x42\xae\x62\x51\xd3\x96\x62\x82\xfa\xcd\xd9\x97\x64\x9b\x0b\x09\x9d\x77\x4d\x8f\x69\x18\xa4\x30\x08\x91\xc8\xdb\xb8\x48\xab\x97\x60\x14\x76\x55\xff\x80\x5c\x32\xa1\xa6\xf1\x59\xc7\xa0\xd2\x15\xc2\x8f\x8d\x9a\xcf\x9b\xd4\xe4\x08\x86\x55\x9b\x76\xd6\xfe\x73\x0f\x9f\xf6\xc9\xa9\xcf\x51\x21\x24\xd6\x16\x3d\xe0\x8a\xda\x4d\x68\x95\x66\xf8\x0a\x8f\xbd\x24\x78\x8c\xc6\x44\x77\x04\x36\x10\x62\x22\x17\x59\x79\xde\x8b\x27\xbc\x18\xab\x7b\xfc\xe3\xc8\x09\x06\x41\xeb\x7a\xbb\xfa\x0d\xd4\x09\x55\xe6\x3c\x5f\x3a\x15\x63\x08\x69\x82\x5c\x72\x8f\xf2\xbc\x08\x6d\xc9\xdb\xdd\x75\x94\x6a\x09\x5a\x6e\x15\x62\xc5\xbd\x7b\x09\x07\x7a\xfd\xab\x71\xea\x16\x61\xe7\xc0\x35\xa7\xc3\x03\x95\x0c\x14\x6c\x79\xed\xdb\x6b\xb2\x08\xd2\x6b\xfb\x54\x4e\x6c\xa8\x26\x30\xab\xd3\x3a\xa6\xfd\x76\x64\x30\x31\x67\x5f\xc4\x9e\xd3\xae\x04\xe7\x96\xf7\xea\x73\x39\xed\x08\xfc\xe5\xde\x0a\xf7\xaa\x93\x09\x7d\xbb\x3a\x86\xb4\x72\x42\x08\xcb\xc7\xcf\x84\x55\x7a\x5f\x20\x28\x7d\xb8\x2d\xbb\x3d\xec\x31\xe1\x53\xdd\x15\xc4\x85\x46\x31\x98\xb3\x79\xa2\x40\x48\xc4\x85\x50\xf3\xf3\x32\xe7\x65\x45\x6d\xc2\x99\x20\x35\x21\x7e\x31\x0e\xc2\xc3\x9a\xf3\x6b\x83\xc6\x75\x09\x31\xb6\xb7\x23\x75\xc7\x1a\x08\xd7\xb7\xdb\x1f\x72\x8d\x69\x27\xfc\x4e\xba\xb7\xfe\xca\x54\x65\xaf\x98\xfc\xf0\x86\xf8\x28\x0b\xde\xe1\xa7\x5e\x47\x19\x8d\xb1\xa0\xb6\x56\xef\x57\xbf\x60\x22\x61\x68\xe0\xde\xd5\xe1\xe3\x3d\x04\x5f\xa9\x8d\xe7\x7a\xa6\x12\x09\xcf\x88\xa2\x62\x3c\x20\x84\xdd\x58\xf1\xa6\xb3\xe2\x26\x21\xcd\xe8\x69\xb1\x64\xe0\x2d\xc2\x9e\xcf\xed\xc3\x7c\xa6\xc7\x08\x9b\x17\x4f\x5c\x9c\xab\x90\x48\x90\x3f\xd3\x7f\x2b\x31\x54\x88\x20\xd3\xa0\x33\x6d\xf9\xbd\xa9\xed\xe4\x9e\x40\xe3\x5e\x73\x47\x82\x41\x1b\xfb\x3d\x89\x84\x0f\x04\xf1\x1d\x3a\xdf\xab\x78\x4b\x08\x6c\x3e\xbe\x07\xe2\x64\xa6\xbe\xea\xdf\x8d\x3f\x8e\xc4\xdb\x12\x2a\x66\x6e\x11\xfe\x2c\x11\x4b\x30\xc9\xe2\xd8\x17\x3d\xb3\x94\xb0\x56\x41\xd2\xfd\xff\x0b\x5b\xe1\xc8\xb8\x47\x3a\xca\x84\xe6\x39\xca\xa5\x4b\x5e\xdc\x20\xd8\xdd\xbd\x24\xf2\xf1\x4a\x2e\xe1\xfd\x79\x7e\xe7\x11\xbe\x10\x42\xc2\xb4\xf4\xae\xf5\x82\x56\x84\x9e\xe0\x1c\xb3\xab\xe5\x8e\x04\xe1\xb9\xf3\xd7\x4a\x97\x1c\x20\xb8\xfa\x3d\x7a\x64\x1c\x34\x83\xc0\x9b\xa9\xc4\xc5\x57\xec\x43\x28\xfe\x31\x29\xda\x7e\xe2\x1c\x03\xed\x4d\xf6\x9d\xdd\x17\x1d\x08\x12\x3b\xce\x25\x95\x3c\x2e\x26\x1c\x7c\x6d\xc3\xff\x35\xc5\x8a\xb0\xa3\x6d\xad\x9f\x77\x70\x7d\x11\x2e\xdc\xae\xed\x16\xa8\xdd\x4f\x18\xb9\xfb\xc6\x59\x42\xd0\xee\x3f\x70\xd5\x5d\x10\xb0\xed\xd9\x5c\x02\xdf\x71\xbd\x3b\x76\xb2\x41\x84\x44\x7d\xdf\x2b\x97\x56\x3f\x21\xbc\x2f\x88\xac\xc5\x82\x22\x42\x92\x98\xf2\xe2\x41\xa9\x22\xc2\x3a\x71\x45\xae\xe5\x7a\x7d\x45\x50\x98\x56\xf4\xd7\x82\x12\x19\xec\xe1\x5c\x53\x31\x5a\xf6\x80\x20\xb7\xf2\xc3\x9b\xb9\x3a\xc1\x0c\x5a\x8e\x48\x17\x97\x15\x4e\xfd\xe5\xed\x71\x43\x09\x57\x5e\x11\x9a\x3d\x6b\x12\x15\xb0\x9e\xf0\xb6\x3e\x66\x03\x6d\x96\x23\x98\xb5\xfa\x8c\xdc\x8a\x75\x22\x24\xcf\x5e\xf0\x61\xf7\x05\x21\xc2\x9f\x4e\xab\x1a\x97\xfb\x77\x19\x04\xd7\xc6\x1b\x3f\xeb\x7e\x4a\x90\x5b\xb1\xb2\x64\x75\xe3\x0d\x06\xfd\x0f\x93\x78\x9d\xe6\x14\x10\x3e\x05\x6d\x1b\xf4\x8d\xcb\x26\x5c\xd0\xcc\xcf\xd8\x20\x62\x4a\xd0\x0d\x3a\xe3\x2e\x58\xb2\x8a\xf0\x61\xa7\xfa\x95\x0d\x52\x3f\x59\x78\x13\xb9\xe2\xd3\x13\xc3\x0c\x82\x53\xe8\xf9\xdd\xc5\x89\x96\x0c\x52\xdd\xe6\x6d\x1b\x92\x73\x21\x14\x5e\x35\xf3\x0c\x69\x3d\x41\xb8\x12\xdf\x5a\xb2\xef\xfb\x05\x06\x41\xd7\x3e\x5e\xf9\x16\x25\x45\x90\xbb\xe1\x96\x95\xc8\xb9\x9b\x70\x49\x2a\xb9\xac\xae\xd5\x82\x10\xfa\xe1\x8c\x98\xba\xd1\x6e\x82\xda\x5a\xd9\x0a\xf1\x25\xdd\x04\x4f\xfb\xfc\x63\xba\xdc\xe9\x84\xef\x95\x3c\xbc\x61\xc2\x09\x04\x9b\xe3\x9b\x26\xda\xef\x56\x10\xf8\xae\x1e\x52\x7d\x71\xc2\x85\xc0\x3d\x20\x92\x3e\x2f\x35\x9f\x50\xf5\x47\x34\x26\x7a\x50\x9f\xc0\xad\xf0\x4a\x3f\x90\x73\x0f\x41\xfd\xb1\xbb\xae\x56\xf6\x23\x06\x33\x47\x7e\x9a\x68\x3c\x7e\x40\xd0\x39\x3f\xe3\xc1\xc0\xde\x3a\x82\x8a\x50\x8b\x16\xc5\xf6\x10\x0e\x44\xdb\xf9\xc8\x49\xd7\x10\x72\x37\xd6\x84\x7d\x9c\xaa\xe4\xb7\x61\x99\xad\x83\x3e\xe1\xd0\x71\xf3\x03\x45\x96\x21\x84\x1e\x91\xac\xf3\xa1\x76\x1e\x84\x41\x39\x4f\x3d\x67\xa8\x11\x4e\x27\xbf\xf8\x6a\x33\x35\xc3\xb6\x66\xd7\x9d\xa0\x3b\x5c\x84\x7d\xc6\xdd\x3e\x79\x6c\x37\x09\x6c\xf6\xd9\x5f\xbc\x1f\xfc\x26\xf0\x24\xf6\x73\x6a\xaf\x7e\x49\x50\x7e\xf5\x2a\x5a\xe4\x0e\x9b\x3c\xea\x65\xeb\x5f\x4c\x1f\x2e\x27\x74\x2c\x2a\x88\x7d\x21\x58\x4e\x78\x22\xc1\x7e\x6a\xe2\x7e\x22\xc1\xb1\x5e\xf2\x47\xb8\xea\x1b\x42\x9e\x93\xa2\xf7\xd5\xe2\x37\x04\x93\x88\xa5\xce\xa7\xce\x65\x30\x10\xb6\xd5\xfd\x5b\xc7\xd5\x40\x68\x60\x1e\x26\xb7\xcc\xc8\x22\x1c\x7d\x7c\x7d\xd6\xf6\x1f\x25\x84\xef\x9c\x9d\xfa\xab\x47\x23\x19\x6c\x1e\x9f\x3c\x94\x76\xdc\x95\xf0\x87\x67\xa5\x03\x3f\x47\x06\x83\x8c\x95\xcf\x6a\xcc\x64\x82\x09\x8d\xb1\xa6\x23\x25\x85\x4a\x84\x73\xb6\x4c\xcc\x90\xfe\x13\x42\x71\x19\x56\x18\x9c\x4d\x21\x70\x26\x35\x7f\x5d\x37\xf5\xf4\xee\x6f\xfd\x91\xdb\x9f\xf1\x9c\xb0\x63\xa4\x26\xb5\x7f\xc7\x23\x06\x2b\xe2\xf5\x2f\xfd\xbe\x10\x45\xd8\x57\xf2\xf9\x8c\x4d\x64\x29\xc1\xec\xd1\xf2\xc3\xc5\x73\x4a\x09\xbb\x57\xf1\x58\xde\xfa\x91\xc9\x60\xb7\xba\x59\x76\x4d\x99\x13\xe1\x25\x57\xa5\x84\x5a\x56\x0b\x83\x75\x9e\x31\x07\x84\x8f\x6c\x27\xcc\x31\xb7\x5c\xa7\x97\x5a\x46\xc8\x5f\xd3\x7f\x28\x44\xb9\x9a\xb0\x76\xc8\xf5\x28\x87\x63\x06\x21\x36\xc3\xcb\xf9\xd9\x68\x2d\x83\xdd\x51\xfd\xb9\xfc\xcb\x72\x19\x98\x88\x5e\x71\xe6\x4e\xab\x67\x10\x6c\xba\x1e\xed\xa7\x7a\x09\xf2\x73\x53\x87\xec\xae\xf4\x13\x7e\x5b\x54\x34\xee\x4e\x7c\xc6\x60\xbc\xfe\x4b\xdf\xe5\xcf\x7d\x0c\x0a\x8d\x94\xab\x55\xe3\x6b\x09\x33\x9a\x74\x45\x26\xfe\x8c\x12\xa8\x28\x4c\xee\x3c\xfa\x09\x06\x1a\x2f\x0a\x2a\xcb\xf2\x18\xf4\x16\xda\x3b\x5d\x7c\x95\xce\x60\xac\x63\x6b\xeb\xa6\x82\x02\x82\x75\xb6\x84\xf3\xb7\xc2\x7c\xc2\x6f\xaf\xd7\x3f\x43\x44\x3a\x09\x8e\xfe\xa9\x79\x29\xe7\x83\x08\xc2\x13\x8f\x3a\xbe\x9f\x3e\x4c\xe0\x9f\x51\xa9\xdb\xbe\xc6\x97\x70\x59\xa6\x6f\xbf\x8b\xfa\x43\xc2\xd6\xd8\x8a\x53\x82\x26\xc6\x04\x21\x21\x08\xa7\x04\x16\x31\xf8\x19\xd3\xbb\x34\x92\xf7\x21\x83\x6a\xb7\xb6\xaf\x8a\xa7\xbb\x08\xbf\x59\xac\x05\xda\xe2\x59\x84\x84\x16\xd3\x05\x39\x5b\x4a\x19\xc4\x2a\xc5\x0d\x3c\x67\x0b\x26\x78\x6a\xbd\x71\x77\x0d\x0e\x27\xc8\xac\x6a\xf4\xbc\xb6\xdf\x9d\xd0\x56\xfe\xeb\xe4\x8f\xeb\xf7\x09\x82\x37\x4f\xae\x6f\x5a\xb4\x8e\x70\x7c\x7a\xfd\x32\x95\xee\x4b\x0c\xc6\xfe\x64\x8b\xc5\x7f\xba\x47\x68\xf7\xaa\x1a\x2c\x4f\x4a\x20\x2c\xf0\xc7\xca\xaa\xfe\x43\x84\xdb\x83\x0e\x7d\x17\x8f\x9d\x25\xf4\xae\xab\x12\xdc\xf5\x69\x8c\xe0\xf7\x8b\x77\x41\x43\xb7\x31\xc1\xec\xae\xf3\x29\xf5\x4b\xfb\x09\xa5\x1b\x5a\xe4\x3d\xcf\x2a\x12\x56\x71\x58\x9d\x18\xd9\x9d\xc7\x20\xaa\x75\xaf\x4f\x84\x52\x34\xe1\x20\x7b\xfa\x92\xef\xfd\x0c\xa1\x5f\xc1\x6b\xe0\xe7\x09\x5b\xc2\x51\xa3\xa1\x22\x0d\x7d\x69\xc2\x24\xc7\xea\x3b\x3a\xda\x05\x0c\x7a\x56\xbd\xde\x1c\x39\x69\x4d\xe8\xfd\xee\xb2\xf4\xf2\xa1\x7c\x06\xa1\x37\x07\x62\x86\xf4\xb5\x09\x02\x37\x9d\x75\x4f\x8b\x39\x10\x1a\xfe\x7c\x36\xbf\x75\xc7\x95\xc0\xcf\xb4\x8f\xab\x48\x6f\x25\x6c\xcc\xe7\x0f\x76\xca\xd6\x24\x04\x88\x0b\xeb\x5f\x6f\xb7\x20\xa8\xa4\x1f\x88\x6a\x2d\xad\x24\xb8\x7a\xed\x6d\x8a\xf5\xcc\x24\x1c\xe9\x77\x67\x55\x0d\xde\x27\x58\xdf\x2e\xb0\xbb\xfa\x33\x90\x41\x8b\xb1\xe6\x8b\xa8\xdf\x27\x8b\xd0\xad\x53\xb4\x59\xbc\x23\x9c\xf0\x67\xde\x72\xe1\x83\x9f\x39\xfe\x03\x27\x5f\x01\x87\xa2\xb6\x37\x45\x28\xe5\x1e\xe2\x09\x91\x78\x42\x58\x6e\xf0\xe7\xda\x52\xd1\x28\x42\x30\x99\x72\x3b\x2c\x7a\x4c\x38\xba\xaf\xf7\x97\xe6\x9d\xd3\x84\xa4\x9e\xd2\xbb\xb3\x34\xb9\x09\xa3\x9b\x5a\x54\x98\x11\x4b\x42\xdc\xf5\x79\xc7\xb5\xee\x48\x10\x0c\x9b\xb2\xce\x29\xd4\x38\x12\xb2\xf6\x14\x1b\x64\xf1\x88\x10\xba\x7d\xfc\x43\x8d\x75\x3c\x08\xf5\x5f\xd6\xe7\xb1\xc5\x9a\x10\x02\x6f\x58\x99\xff\xec\x49\x62\xf0\xe5\x8b\x54\xdc\xfa\xa2\x37\x84\x9a\xc0\xce\x06\x5d\xf7\x60\x82\x96\xfc\xb5\x98\xba\xf4\x8b\x84\x8f\x25\xcc\x81\x87\x93\x07\x09\x7f\x93\x67\x98\x9d\x67\x15\x33\x78\x76\x3c\xb6\xee\x33\x0c\x08\xc1\x5b\x97\x70\x3a\x71\x6d\x20\xbc\xba\x74\xf1\xc6\x87\xe1\x57\x84\xf0\x61\x91\x39\x17\xda\x1a\x08\x1a\x6c\xd6\x27\xe7\x6d\x79\xcf\xe0\xa1\xef\xbe\x59\x26\x7c\x49\x0c\x36\xa9\x4c\x93\x2b\x59\x58\x41\x18\x16\x7a\xf8\x59\x77\x69\x2e\xe1\x44\x55\x5a\x76\x8c\xdd\x47\xc2\x48\x66\xc0\xc2\xf9\xe7\xaa\x09\x37\x52\x1c\xc3\x9e\xf4\xbe\x25\x70\xb4\x15\x6e\xb0\x19\xcb\x22\x18\x25\x2e\xb7\x33\xda\xa5\x4a\xb8\x9b\x91\x75\xf0\xa3\xb9\x2d\x21\x50\x7c\xf1\xf9\xae\xe4\x15\x84\x2e\xd4\x76\xce\xbe\xa7\x4e\xb8\x7d\x74\xe7\x9c\xcf\x13\xf3\x09\x99\x57\x2d\xc3\x96\x8f\x4c\x27\x98\x0b\x04\x87\x49\x7d\x93\x25\x28\x9a\x9f\x5a\x6c\x30\xc6\x4d\xf8\xc1\x26\x2d\xec\x50\x54\x40\x88\xf8\x28\xb5\xd9\xa7\x78\x03\x61\x95\x66\x58\xd8\xa5\xf1\x11\x16\x0e\xaf\x8a\xf0\x11\xce\x49\x21\x34\x95\x8b\xd5\xbd\xd6\xb1\xfd\x4f\xf5\x6a\x87\xb9\xd2\xdd\x0d\x1b\x08\x03\x87\x03\xcd\x82\xdb\x8c\x08\xbb\x86\xea\x2e\x45\x14\xbc\x20\x9c\xf8\x95\x22\xfb\x5e\xb6\x8c\xc0\xb1\xaf\xee\x5e\xd7\x9e\x5c\x06\x5f\x38\x3b\x27\x72\xca\x73\x08\xbe\x65\x35\x3d\xff\xa0\x6a\x7d\xe0\xb7\x98\xe4\x28\xc2\xe0\x16\xb5\xcb\x1c\x01\x51\x84\x96\xc5\x9c\xe7\xad\xed\x73\x09\x6b\xe3\x56\x9a\xfd\x93\xc4\x57\xb4\x47\x0e\xec\x30\x20\x6c\x82\xe6\x6e\xff\xce\x87\x04\xc7\xa0\xdf\xfe\xa3\x0e\x22\x84\xe9\x3b\xd4\xf2\xec\x3d\x94\x08\xb1\x42\x89\xe6\x37\xaa\xf8\x08\xc5\xda\x27\x3c\x6f\x6c\x8b\x27\xb8\x64\xf7\xed\xea\xe6\x9f\x60\x21\xe8\xed\x74\x43\x3d\xce\xe9\x84\xcb\x4c\x41\xc9\xcf\xdf\x6f\x59\x78\xb4\x2a\xa1\xcc\xe4\x8c\x3f\x83\x8d\x67\xd3\x8b\x1a\x5e\xb0\x08\x97\x56\x7d\xe6\x9b\x8c\x75\x25\xf8\x7e\xdf\x31\xab\x32\xcb\x80\x30\x99\xb6\xf9\xf0\xfc\xfa\xbb\x04\x7b\x33\xbf\x63\x5d\x87\xd4\x18\x30\xe7\xa2\x32\xa3\xe7\x8a\x12\x4e\x56\xfc\xbc\x1d\x93\x7d\x8f\x20\x93\xe2\xbe\x96\x3f\x33\x82\x10\xf2\x40\x65\x15\xfb\xfd\xc3\x84\x0b\xd5\xdf\x16\x9f\x10\xf7\x21\x24\x7d\x32\xab\x5d\x2d\x90\x47\x30\x4f\x5a\xb6\x29\x3c\x70\x21\x81\x3f\xbc\xa8\xe5\xe0\xa6\x40\xc2\x98\x09\x9f\x9c\xe3\x7c\x31\x02\x33\xbd\x56\xdf\x74\x66\x14\x21\x75\xc8\xb1\x94\xdd\x3e\x9f\xe0\xa7\x7b\x5d\x74\xb5\x56\x03\x41\x65\x56\x14\xcb\xea\x6b\x36\xa1\xef\x77\x9c\x91\xe9\xf0\x13\x82\x95\x57\x97\xbb\xed\xf9\x48\x06\xa7\x9a\x36\x1d\x7c\x70\x2a\x9b\x81\xe4\x8f\xfc\x8d\xd2\x73\x83\x09\xb7\x3e\x7f\x3d\x53\xa3\xd8\xc4\x20\x7a\xe3\xab\xbe\x7b\xb7\xb9\xe9\x5f\xec\x3f\x32\x7b\xd0\x3a\xfa\x12\x61\x90\xf1\x94\xce\x3f\xee\xc1\x40\x7b\xc8\xb0\x37\x77\x4e\x2a\x83\xe8\xad\x3b\x8c\x6a\x96\xe6\x10\xee\x2d\x6a\x28\x3d\x6a\x56\xc8\xc0\x58\xe4\xd3\xb2\x01\x79\x5f\xc2\x9a\xb9\x3c\xcb\x67\x9a\x6b\x12\x78\x1f\x9e\xb5\xdc\x77\x68\xd3\xd4\xe6\x3a\x21\xb9\xc1\x97\x9b\xc6\x0b\x96\xb7\xaf\xda\xa3\x42\x88\xe1\x9a\x95\x79\x30\x35\x9b\x30\x83\xd3\xdb\xbd\xaa\xe5\x18\x21\x6c\xbe\xe1\xd1\x6f\x9b\x77\x13\xdc\x34\x25\x3e\x86\x9d\xbf\xc1\xe0\x79\xc5\xcb\xfd\xe7\xc2\x6e\x11\x38\x1e\x69\x47\x08\x4d\xcf\x64\x20\xc3\xdb\x56\x68\xb7\xf5\x02\xe1\xfe\x01\xa5\x20\x63\xed\x4b\x0c\x38\x17\x9e\x6a\x8d\x48\xb1\x25\x7c\x36\xe3\xe4\xf5\x2b\x75\x22\x28\xe7\x3c\x4e\x3e\xf9\xeb\x28\xa1\x3a\xc1\x4c\x66\xfe\xde\x3b\x84\x4d\xa3\x67\xa4\x9e\xd4\xcc\x27\x68\x3f\x5a\x7c\xee\xd9\xc6\x78\x06\x5d\xb5\x3e\x8e\x6f\x1f\xf3\x12\x4e\x19\x79\x5f\x92\x0d\x3e\x4c\xd0\xdd\xb6\xc4\x9f\xbd\xfd\x11\x03\xd9\x8f\x9c\x86\x71\xfc\x49\x0c\xf4\xf9\xe7\x6e\xac\xce\x30\x23\x18\xb2\xad\x2d\x3f\xfd\x5d\x9f\x70\x43\x57\xff\xe5\xd6\x5d\xd9\x84\x2e\xe1\x77\x9d\x96\x09\x9b\x08\x6e\x8a\x4d\x09\x0e\x83\x0a\x84\x96\x9f\xa3\x9c\xa3\x22\x9e\x04\x76\xb9\x6d\xcc\xfe\x51\x07\x42\x72\x5a\xde\x4a\x96\x88\x25\xe1\xda\x79\xf7\xa3\xa1\x33\x03\x08\xb2\xb7\xee\x49\x18\x45\x15\x4f\x1d\x2e\x0e\x16\x8e\x2c\x2d\x65\xb0\x37\xa6\xd3\x68\xda\xd3\x32\x42\x9d\xb6\xe8\x90\xaf\xd9\x1b\x06\x91\x7f\xc3\xb3\x76\xad\xfb\xc4\xc2\xbb\x17\x06\x63\xa2\x77\xf8\x08\x6a\x87\x1b\xd3\x5b\xdf\xf5\xb3\x30\xff\xa9\xd0\x49\xe9\xe1\xc3\x84\x92\xb5\x81\x29\xb6\x0d\xec\x84\x1b\xc3\x1d\x31\x3a\x6e\x07\x08\x3b\xcf\xed\xac\xf4\xe1\xb6\x25\xe8\xef\x0b\x2a\xd6\x94\x3d\x48\x28\x09\xb6\xcf\x98\x3c\xba\x8b\x70\x66\xc1\xfd\x81\x0f\x3e\x87\x08\x0b\xad\xc3\xc4\x14\x53\x8e\x12\xf6\x0c\xf0\x2d\xe3\x5d\x69\x48\x68\xbd\x30\xed\x4b\xc2\xfb\xfd\x84\x90\xad\xed\x82\x7a\x33\x75\x08\x35\x7c\x2a\xbb\xef\xb8\x16\x10\x06\x58\xbd\xea\x7f\x6d\x6d\x08\x4b\x1e\x45\xc8\xde\x5c\x56\x4c\x10\x7d\x5d\xb5\x2e\xa4\xa3\x86\x81\xce\xa3\x5f\xe1\x3a\xba\x91\x04\xaf\xd8\x3c\x8f\xd9\xf6\xe9\x0c\x4e\xaf\x95\xe8\xd3\x99\xe9\x40\xd8\x24\x7d\x4a\xdd\x7e\xdf\x25\x42\x75\xde\xd9\x12\x83\xcf\x6f\x08\x73\x55\xaf\xcf\x7c\xc0\xc6\x4b\x48\x5b\xaf\xe9\x23\xb8\xd4\x80\xc1\xef\x9c\xbe\xe6\x3b\x53\x2b\xb5\xff\xef\x63\x73\xa2\x2c\x0b\x09\x16\xfb\x1c\xcc\xf3\x0f\xc6\x10\x7a\x5e\xbd\x88\x4b\x29\x89\x2b\x42\x03\xf7\xba\x4b\xdd\x1f\x84\x08\x6c\xf2\x36\xdf\xb8\x67\x57\xb1\xb0\x35\xbe\xc6\xac\xeb\xdc\x4e\xfa\x17\xbf\xf9\x2f\xdc\x31\x74\x0b\x61\xfe\x47\xf5\xf6\x62\xbf\xb2\x53\x50\x05\x21\xcf\xd1\xea\xe4\x42\xd9\x21\x16\x3e\xac\x4f\xfb\x75\xb5\x26\x83\x30\xeb\xde\xf4\xdd\x8e\x27\x8e\x10\x16\xe4\x73\x68\x71\x2f\x64\x11\x56\x75\x67\xfd\x70\xb8\xff\x8b\x05\xad\xe2\x7d\x1b\xc6\xd6\xa8\x11\xfe\xcc\xd4\x7a\xb2\xed\xea\xf5\xff\xc0\xe2\x50\x9e\xc8\xd5\xb3\x9d\x45\x18\xcd\xf3\xf9\xb1\x42\xd4\x93\xc0\x7f\x3b\x59\x10\x3e\xcb\x08\xee\xeb\x07\x96\x6f\x5d\xb8\x93\xf0\x40\x7e\x86\x42\xca\xf5\xcd\xff\x27\x2e\x3d\xff\x3b\xf3\x41\x28\xdb\x7f\xa0\xbd\xe6\xb9\xf8\xa9\xe2\x8f\x0c\xc4\xed\xd7\x6d\xcb\xec\xb8\x43\x10\xa8\x74\x0c\x68\x2f\x48\x20\xc8\xb4\x1d\x4a\xdd\x5a\x72\x80\x01\xbf\x19\xb3\x64\x43\xd2\x6b\x42\xf7\xa4\xcc\xb3\x9a\x83\x97\x09\xdb\x34\xad\x4e\x0a\x27\xe8\x11\x82\x0e\xb9\xae\x39\xf4\x22\x84\xb0\x7a\xdd\xe2\x1b\x0f\x5f\xf8\x12\xca\x4f\xcb\x2c\x4c\xa8\xd5\x27\x7c\xfe\x5d\xfd\x59\xfe\xf5\x56\x82\xc9\xe9\xe8\x69\x13\x53\x07\x87\x8d\x1c\x5b\x0c\x45\x73\x63\x09\x5e\xcf\x6e\x5e\x4e\xee\x2b\x27\xfc\x0a\x5f\xa6\xb3\x56\xe8\x07\x61\xec\x35\x9f\x90\x59\x7c\x30\x41\xe3\xd5\xa5\x66\x23\xf3\xd3\x84\x33\xf2\xbf\x42\xae\xf1\x34\x30\xd0\x8d\x35\xcf\x56\x13\xd2\x20\xf8\x78\x0f\xe6\x37\x7d\xbd\xc1\x60\xf9\xb8\x7f\x7d\xc7\x9d\x0c\x06\xab\x7e\xf6\xd3\x1e\xc1\xbf\x04\x9e\x97\x0a\x51\xe3\xef\xda\x09\x07\x38\x5c\x4b\xb5\x6a\xd9\xe4\xf1\xfc\xd6\xd3\xde\xdb\x53\xc7\xa8\xec\x63\x31\xb9\x0b\x5f\xb4\x12\x16\xf3\x69\x26\xfb\x7c\xea\x27\x98\x37\x3b\x1e\x08\x72\xa8\x27\x2c\x71\x96\xf6\x74\xe4\xaa\x23\x3c\xef\xb9\xc2\x5a\x60\xfd\x92\xb0\x7c\xc1\xe8\xf1\x7e\xf5\x3c\xc2\xd6\x5f\xbb\x23\x5f\x0b\x7e\x20\xec\x5d\x32\xa8\xe2\x34\x3b\x90\xf0\xc1\xc8\xe0\xa7\x56\x7b\x35\x83\xd4\xf4\x7e\x9f\x2c\x0b\x1d\x42\xa2\xc1\x49\x8e\x61\x2b\x4e\x82\xdc\x4d\x2b\x9d\x9a\x92\x69\x04\xa5\xaa\x7d\x0b\x7d\xc5\x97\x11\x9a\xe4\x7e\xff\xd1\xb6\xba\xcf\x60\x16\x4e\x97\xcb\xc9\xcd\x26\x58\x2b\xed\x6e\xb7\xfa\xf0\xbe\x08\xf7\xa2\x66\x1a\xec\xd0\xb2\x26\xc8\x1b\x15\x67\xbf\x4d\x76\x23\x70\xfe\xf6\x3c\x12\x57\x73\x9e\x90\x9f\xe5\x54\x6b\xdf\xac\x40\x90\xd1\x2f\xbd\x66\x73\xee\x39\x0b\x13\xa7\xe6\x4c\x2b\x9e\x7a\xa2\xfe\x0f\x84\x5c\x59\xd0\x71\x9d\x7f\x84\x85\x22\xf7\xb9\x6a\xc7\x0a\xf4\x09\x6b\x73\xad\x72\x65\xd2\x55\x08\x3b\x2e\xe7\x5d\xd0\xdb\x66\xf6\xbf\x60\xba\x7f\x49\x4b\x95\xf0\x26\x42\xe0\xf5\x8b\xd7\x3f\x70\x8a\x13\xfa\x2b\x84\x57\x3c\x8a\x3f\xc5\x60\xe2\xcc\xba\x95\xad\x75\x09\x84\x73\x36\x62\x9b\xa7\x55\x26\x10\x8c\xcd\x3f\xac\x68\x2f\x7d\x41\x70\x57\xcd\xde\x6e\x78\xfe\x3d\x21\xf6\xe6\xad\xe3\x85\xf5\x09\x84\xbe\x92\xc1\x14\x69\xfd\x9d\x84\xc9\xb3\x5b\x64\xf6\x9b\x14\x33\x48\x3c\xf9\x87\xd3\xfa\xa4\x24\xe1\xdb\x32\x15\x8b\x46\x7b\x03\x42\xe3\x5e\xab\x77\x23\xd6\xe1\x0c\xd2\x6c\xd4\xd6\xeb\xf1\x48\x12\x44\x4d\xee\xd5\x49\xba\xaf\x23\x14\x3f\x98\xd9\x5c\xb4\x25\x92\x50\x53\x51\x90\x69\x75\x63\x3a\xc1\x6f\x6d\xd5\x87\x69\x89\x1c\x84\x65\xaa\x0f\x17\x7d\xb8\x74\x96\xd0\x2f\xa4\xdd\x38\x50\x5a\xc1\x40\xc0\xff\x89\xa5\xf3\xe0\x21\x82\x00\xd7\xc8\x9f\x96\xd6\xdb\x04\xff\x20\x3b\xd7\xf2\x60\x0f\xc2\x89\x8b\xc6\x01\x4a\x4e\x97\x09\x67\x67\xfb\xf7\x9e\xbe\x6a\x42\x70\x6c\x3f\x76\x48\x3d\x26\x9e\x70\x31\x8c\xee\x1a\x5f\x5f\x47\x10\xdc\x36\x37\xf9\x8b\xa4\x00\xe1\x48\xe4\xd2\x93\x9c\xdb\x6d\x09\x33\x1b\x62\x6f\xcd\xd2\x92\x20\xa8\x5e\x15\xae\xea\x59\x13\xcb\x20\xa1\x4d\x71\xce\x17\x55\x4d\x42\x59\x87\xca\x55\x9b\xac\x78\xc2\xf6\x02\xa1\xa6\x81\xdf\x4a\x84\x57\x7a\xfb\x4e\x6e\xfb\x12\xce\x20\x72\x86\xcd\x82\xab\x55\x5c\x84\x37\x9e\xf9\xc1\x62\x5a\x97\x18\x0c\x78\x8a\x5b\xe8\xec\xb9\xca\xa0\x66\xd6\x77\x0d\xd1\x87\x36\x84\xf2\x96\xb3\x11\xc1\x51\x29\x0c\x8c\x7e\x2b\x24\x68\x89\x5d\x26\x0c\x86\xdb\x3f\x4b\x7b\xa1\x49\x90\x94\x2a\x51\x0c\x3a\x5d\xcc\xa0\x73\x44\x7e\xff\x49\x21\x69\xc2\xb3\x8e\x6a\x09\x13\x25\x57\x82\x4d\xbf\x13\xbf\x79\x9f\x2d\xc1\x7c\x5c\xf8\x95\x61\x96\x24\x21\xdc\xef\x7a\x85\xd7\x8f\x6c\x06\x8f\x78\xce\x2e\xdf\x59\x6c\x4a\x28\x70\x5b\x77\x69\xe9\x8f\xd5\x84\xf3\x22\xec\x5b\x4a\xc6\x32\x59\x58\xb3\x40\x3b\x4c\x3e\x29\x8d\xa0\xc9\x77\xce\xc7\x3d\xdb\x8e\x70\xfc\x70\xa3\xdc\xd5\xe2\x5c\x82\xfe\x97\x55\x13\xb1\x4b\xa4\x09\x86\x07\x24\x3a\x64\xc6\x77\x13\xf6\x98\x8e\x25\x1f\x13\x8c\x20\xc8\x85\xaf\x4a\x53\xf5\x2a\x62\x20\xa6\x33\xae\x5b\xf6\x49\x95\xf0\xf8\xca\x5e\xc9\xe5\x32\x1b\x09\xca\x86\xf3\x16\x4d\x2f\xd9\x4d\x28\xb4\x19\x99\xfd\xe1\xcb\x01\x82\xd6\xe0\x80\x95\xce\xee\x9f\x2c\x0c\xc4\x8b\xde\xb3\x5e\xbb\x8f\xfe\xc5\xca\xe1\xd0\xc7\xea\xf6\x43\x2c\x9c\x94\x3c\xa7\xe1\xb6\x4f\x9c\x10\xed\xd1\xba\xd6\x47\xff\x05\xc1\x54\x96\x6f\x7f\xf6\xd6\xe3\x84\x55\xf6\x55\xbf\xb8\x1b\x62\x08\x1a\xeb\x24\xf6\x8c\xc4\x84\x12\x3c\x35\x2c\x56\x06\xdd\xb8\x4b\x38\x1b\x17\xbf\xf0\x25\xbf\x36\xa1\x29\x38\xd7\x34\xf6\xa2\x28\xe1\xf8\x2f\x17\xcb\x4e\x5f\x69\xc2\x96\x8b\x9f\xea\x2d\x2c\xa2\x08\xb7\x1c\x76\x3f\x77\x91\xaa\x24\x58\x0c\x6e\x5c\xfe\xb4\x5c\x88\xe0\x34\xaf\x6b\xf6\xe6\xfd\xb2\x84\xfa\xc7\x2d\x7e\x7d\xdb\x1e\x31\xd0\x9a\xe6\xc7\x77\xfb\xf4\x6d\x82\x8f\x9d\xb7\x43\x7a\x1f\x2f\x21\x61\x8b\xaa\xb9\x6a\x45\x38\xc1\x3e\x81\xe9\x99\x78\x1e\xc5\xe0\x50\x84\x88\xef\x5e\xfb\x58\x06\xa1\x83\xfb\xf7\x6e\x73\xf5\x23\x04\x9e\x6e\x08\x5d\xb8\xe2\x2d\x03\x8d\x0f\xdb\xd2\x9c\x15\x3c\x09\x49\x95\x87\x62\x7a\x3b\x0d\x09\x17\x1f\xf7\x4c\xcb\xf1\xb8\x4c\x30\xeb\xca\xd0\xfc\xb9\x3b\x9b\x81\xb6\x5e\x4d\x85\x58\x98\x21\x21\x69\xee\x85\x8b\x92\xfa\xc5\x84\xbc\x89\x1d\xb5\x5c\xd7\x6a\x08\x07\x4f\xaf\x65\x79\x38\xb6\x10\x2a\xfe\x0e\xd6\x39\xe8\x15\x13\xb6\x87\xe5\xbc\x9d\xd3\xfb\x8e\xc1\x89\x82\xad\xd2\x4b\xa7\x66\x02\x7e\xbe\x6b\xfe\x52\xe9\x44\xd8\x94\x7a\x5c\x47\xa5\x3f\x9d\x81\xdd\x29\xf7\x40\x19\x9b\x73\x0c\x42\xb6\x4d\xf4\x28\xef\x72\x21\x2c\x95\x59\xb3\x6d\x81\xd8\x25\x82\xcb\x0c\x9f\xba\x5b\xaa\x47\x08\x9b\x65\xc4\x37\x84\xfd\x56\x26\xac\x9b\x95\xa1\x5c\x3f\x51\x43\x58\xba\x70\x24\xc5\x77\xfc\x32\xe1\xe8\xc7\xab\x83\xad\x0e\x29\x84\x9c\x18\xa3\x6f\x0a\x6f\x52\x08\xb6\x57\x1a\x3b\xbe\xb6\xd9\x11\x36\xde\x2c\x2a\x17\xac\xd2\x23\xd0\xdb\x04\xa9\xa4\xc4\xc3\x04\xd6\x2e\xbd\x0d\x16\x2e\xd7\x08\xb7\xbe\x68\xc4\x5b\x4e\x9f\x3a\x30\xba\x06\x6f\xcc\x48\xb3\x67\x60\xeb\xac\xb7\x62\xf6\xd8\x51\x42\x60\x2c\xcf\x78\x53\xca\x4b\x42\x9a\xa2\x53\xf0\xec\x1c\x0b\x42\xa8\x41\xaf\xfa\x46\x89\x70\x42\xff\xd0\x8f\xca\xa1\xbb\xbd\x84\xe8\x35\xf5\x2d\xfc\x0d\x3d\x84\xdf\xdf\x24\xa7\x59\xc6\x70\x13\x96\xbd\x5c\xef\xba\x3a\xc8\x83\x10\xf4\x8e\x4f\xbd\xe4\x86\x37\x61\xbe\x58\xed\xfe\x86\xde\x73\x04\x41\x2d\x1d\x8f\x25\x1d\x7e\x84\x3f\xd5\x56\xaf\x9a\x35\x7c\x09\x2d\xd6\x8b\xda\xe3\x9e\x1c\x21\x34\x58\x79\x48\x3d\xc9\x0e\x20\x28\x6f\x73\xf3\x32\xf1\x70\x24\x6c\xb6\x9b\x5e\xa1\x32\x7b\x37\x41\xa4\x36\xf8\x89\x03\x67\x20\x61\xde\xc5\xa4\xdb\xda\xe3\x6a\x84\x83\x6b\x38\x22\xed\x2c\x2e\x11\x44\xca\x97\x9d\xf3\x8e\x7a\xcf\xe0\x56\xb2\x97\xf3\x58\xdf\x1e\x82\x98\x42\xf6\xcd\xb6\x9d\xf2\x84\xae\x19\xf2\x11\xce\xb7\xaf\x13\x46\x76\xfc\xfc\xb3\x34\x3c\x93\xa0\xd6\xb3\x71\x5c\x27\x40\x98\xe0\x74\x71\xed\xc3\xe4\xc5\x92\x04\x9b\xf4\xf6\x63\xb9\xfb\xc3\x09\x91\xa6\x0e\x6d\xbe\x4f\xac\xff\x83\xa2\x2a\x59\xd9\x35\xad\xba\x04\xee\xb8\x1f\x9a\x17\x0a\x93\x09\x56\xa3\xbc\x1f\xa7\x37\x66\xb3\xfe\x85\x6a\x95\xc3\xfc\x19\x16\x2a\x84\xc9\xd3\xfe\xb2\x9b\x0d\x1d\xe8\xdf\xe4\xff\xe1\x2d\xcb\x83\xfb\x68\x31\x07\x41\x8a\x37\xc9\xce\x53\xe2\x21\x83\xc0\x17\x37\xcd\x5b\xc6\xff\xb2\xfe\xc5\x82\xed\x3e\xf3\x9a\xbf\xe8\x11\x02\xde\x9c\x72\x99\x66\x68\x4f\x70\x0a\x1e\xa8\x7c\xbe\xef\x0e\xfd\x5b\xe5\x9f\x59\x61\x3c\xb1\x96\x61\xa1\x5d\x3f\xa0\x50\x55\xaf\x9e\x05\xde\x26\x8d\xa2\xd1\xdf\x86\x04\x6f\xd7\xe9\x09\xe7\x42\x4c\xe8\xdf\xe4\x93\x8b\xf0\xfd\xcf\x06\x3f\x59\xff\xe2\x84\x4c\x79\x5a\x51\xf5\x27\x16\x4a\xd6\x89\x58\xc4\xbc\xb7\xa0\xff\x01\xe3\x9d\xcb\xfc\xe6\x3f\x18\x66\xfd\x0b\xbd\x92\xe8\x31\xa3\xf7\xe7\x09\x82\xc7\xfa\x9c\xe7\xa5\xab\x12\x44\x96\x26\xdb\x8f\xac\x94\x21\x88\xda\x5f\x31\x6e\x57\x11\x25\x48\x78\x3d\x09\x63\x0f\xb5\x26\x70\x7d\x0d\x9d\xaf\x79\x41\x8d\x60\x2e\xfc\x62\xd7\xc6\xad\xe5\x04\x4f\x01\xfd\xca\x85\x67\xb7\x10\x5a\xb2\x14\x27\xce\x3f\x34\x20\x94\xbe\x2d\xb9\xfc\x6d\xe3\x65\x82\xc1\xd2\x23\x4f\x93\x33\xed\x08\x62\x8a\x15\xd2\xb3\x0a\x24\x09\x41\x36\x3d\x9f\x66\x0a\x04\xd3\xb8\x6d\xc7\x1c\xae\x79\x8e\x84\x62\xbf\xa4\x98\x39\x53\x2f\xbf\x67\x03\x6c\x5f\x14\x36\x54\x13\x22\xd4\x79\x8e\x8a\x8b\xdc\x25\x38\x2e\xf8\x7c\xd5\x9d\xbd\x9d\x41\xdd\xf4\xe4\x9a\xb5\x73\x19\x06\x2d\xb3\xd2\x44\x5c\x4e\xd7\x10\x66\xe5\xc7\x38\xa7\xdd\xfc\xca\xa0\xd5\xaa\x29\x82\xee\x64\x10\x58\x6b\x8c\xfb\xaf\xf0\x1c\x21\x68\x07\x77\xf5\xcb\x22\x9f\x01\x73\xba\x75\xb6\x85\x98\x2e\xc1\xc6\xad\xc7\xfe\xa2\xbf\x03\x61\xd6\x6f\xe6\x8a\x77\x4a\x15\x83\x10\xbd\xeb\xc1\x2b\x32\x5b\x08\x47\x3e\xd4\xed\xe3\x18\xca\x26\x44\x57\x2c\x9e\xbe\xe5\xbe\x37\x41\x55\x73\xcd\x7d\x47\x1c\x62\x50\x65\x58\xbb\xa7\x6f\x6b\x3f\x81\x87\xbd\xe5\x81\x96\x57\x2f\x61\x7a\xdc\xfb\xc0\x71\xee\x16\x82\xe2\x27\xe1\x1a\xcf\x67\x31\x0c\x54\x24\xa2\x24\x8e\x3f\x3b\x46\x18\x5f\xcd\xf7\x9e\x6b\xe8\x24\x21\xfa\xe2\xe0\x7d\x3e\x6e\x2d\x82\x9e\xc9\xda\xe3\xb3\x3a\xd7\x10\x66\x18\x3c\x3b\x91\x61\x7b\x83\x41\xdc\x6f\xfd\xb7\xc3\x91\x21\x0c\x6c\xef\xe7\x25\x27\xf2\x98\x11\xce\x4a\x3c\x3d\xc8\x74\xc8\x10\xce\xd9\x57\x59\x0e\xce\x71\x21\x74\x0b\x37\x16\x0b\xde\x98\x45\xb0\x6b\xd0\x5c\xc9\xee\xb9\x8b\xd0\xa8\x9b\xf1\x2a\xfb\xeb\x06\x02\x79\x7f\xae\x68\x1f\x5b\x4e\xa0\x1d\x89\xe3\x64\xf6\x93\x85\x5a\xee\x8d\x7e\x5e\x57\x77\x12\x5e\x08\x7d\xec\x5f\x7a\xf0\x02\xe1\xc8\x50\x51\x09\x47\xd9\x18\x0b\xb3\x6c\xd2\x7c\x3f\x19\xdc\x26\x70\xee\xd2\xdc\x61\x58\x3d\xf7\x3f\x90\x52\x31\xb7\x52\x5e\x26\x4f\x30\x7c\xbd\x21\xf9\xf7\xde\x26\x16\x02\x45\xc5\x8d\xf6\x5a\xca\x11\xec\x1d\x3c\xcd\xbc\xa4\xed\x09\xcf\x6a\x23\x78\x76\xef\xf0\x26\x8c\x1d\x5a\xf7\x4e\xcf\xe5\x07\x0b\x3c\x46\x25\x0b\x17\x96\xed\x22\x24\xa4\xc6\x59\x57\x5e\xdb\x49\xb0\xf0\x7d\x99\x65\x6e\x23\x42\x18\x2a\x88\x19\xed\xb7\x35\x24\x34\x31\x93\xfb\x5d\xd7\x2d\x22\x3c\x1c\xdf\x67\xbc\xb1\x3d\x97\xe0\x74\xbf\xff\xd2\xe6\x42\x7b\x42\x15\x4f\xf8\xd9\x9e\x35\xa7\x09\xd9\x43\xe8\xe1\x50\x3d\x41\x68\x6c\x35\x3a\xd2\xdc\xbb\x98\xe0\xfc\x39\x75\xc6\xe4\x63\x2b\x42\x94\x1c\xbb\x34\xef\x8a\x0f\x84\xc3\xbf\xbc\x7e\xa8\xca\x36\x10\x0e\xce\xab\xee\x56\xaa\x04\xc1\xaf\xe1\x19\xa7\xc4\x96\x1f\x84\x99\xc7\xbd\x8e\xac\x4e\x1f\x23\xec\x30\xb2\x58\x55\x94\xcd\x26\x0f\xb0\x3d\x32\x7b\x6e\x9d\x49\x08\x96\x4d\x93\x5a\x7f\x2f\x8e\x30\x63\xce\x26\x51\xd3\xb3\x0a\x04\xae\xdb\x2b\xcd\xc7\x6f\x0d\x31\x70\xed\x77\x69\xfa\x36\x85\xe0\x5a\x35\x95\xdc\x9d\xc5\x84\x53\x75\x4c\xa7\x75\xeb\x08\x61\x54\x79\xc9\xe1\x42\xb3\xeb\x04\xa9\x55\xdb\xda\x33\xa6\xaa\x67\xaf\xe6\xf3\x6c\xab\x32\x21\xec\x34\xbb\xe7\xb2\x2f\x2a\xbd\x08\xaf\x52\x06\xcd\x2e\xcf\xde\x43\x60\x6f\x69\x78\x19\xb1\xa7\x9c\xd0\x7e\x2b\x5c\x26\x64\x0a\xd9\x16\x5f\x5c\xaf\x4f\xe1\xd0\xdd\x1f\xf3\x16\x2e\xa9\x27\x78\xc6\x04\xaa\x0c\xd4\x84\x10\xe6\x39\x68\x2c\x28\xbe\x77\x9b\x50\x16\xd8\xfb\x5d\x62\xea\xcd\xc4\xbf\xe6\xa2\x44\xfa\xde\x4e\xc2\x67\x71\x11\xf7\xb8\xb6\x78\x42\xa3\xfb\xbc\xed\x37\x59\x7e\x84\xb4\xb9\x25\x3a\x4f\x7a\x32\x19\xbc\xe2\x4b\x0e\x8b\x18\xbb\xcf\x20\x9e\xb9\x69\x70\xd8\x2a\x88\x41\x94\x42\xa2\x45\x7f\x8c\x3f\x61\xf5\xbe\xf1\xfe\x4a\x4f\x6b\x82\xae\xfa\xd7\x86\x67\xdb\xce\x30\x78\x34\xa3\xab\x6b\x67\x86\x2b\x61\xba\xd0\x74\x8b\xbc\x17\x77\x18\x54\x2e\x61\xab\x88\x3d\xe6\x45\x70\xe9\xc5\xa6\xfc\x75\x46\x84\x9c\x3c\x4e\xef\xbf\xb7\x72\x08\x97\x87\xfe\x6e\x79\xa8\xbd\x9f\xb0\xe3\x59\x8c\xec\xce\x03\xa7\x18\x6c\xaa\x13\x4d\x31\x55\x70\x25\x58\x72\x09\x34\x47\x8e\xe4\x12\x36\x18\xcc\xab\xda\xd8\xb2\x8b\xc6\x87\x46\x5c\x87\x9b\x37\x13\x9e\x7a\x75\x18\xdf\x8a\xd3\x24\xb8\xea\x6a\xd2\xa3\xc9\x63\x04\x32\x13\xe0\xbd\x54\xeb\x4d\x88\xe7\xab\x60\xd2\x5a\xe4\xa7\xbe\x55\x0a\x46\x81\x16\x87\x18\x1c\xe2\xb1\xde\x58\x42\xaf\xa6\xde\xe9\xb3\x9e\x7e\xfe\xa9\x4d\x30\xb3\xdc\xa2\x5c\x50\xee\x48\xc8\xb6\xff\x10\xbe\xbd\xa1\x8e\x20\xba\xdd\x68\x9d\xd8\xa3\x3d\x84\xd5\x23\x97\x76\xbe\x53\x13\x20\x14\xdf\x94\x91\xf7\xfe\xae\x42\xe8\x73\x17\xf9\xe9\xd1\xce\x22\xec\xd2\x5f\x26\x92\x5c\x65\x4b\xf0\xba\x5e\x74\xbb\x4b\xec\x28\x41\xf3\xa2\x80\xaf\xcd\xc5\x5d\x04\xb1\xaa\xcb\x73\xee\xd9\x28\xfd\x07\x7e\xeb\x67\xf5\x65\x9d\xea\x67\x21\x75\x86\x6c\xc7\x9f\x45\x3a\x84\xb3\x41\x9f\xe3\xb9\x77\x35\x12\x2c\xb1\xe9\xdc\xd1\x2f\x99\xff\x0b\x0b\x2d\x9c\x5e\xbf\xb4\x8e\x25\x70\xa5\xd9\x34\x8b\xaa\x37\x33\x60\xcb\x3f\xdd\x78\x2a\x3f\x9e\xf0\xf2\x13\xa7\x3d\xdb\xc3\x7b\x84\xe5\x17\x44\x43\xc2\x0d\xfd\x09\x42\xe1\x4e\x3f\xe5\xa4\x4b\xa7\x1e\x16\x91\x55\x41\xfc\xf1\x04\x9d\x31\x63\xe5\x44\xf7\x38\x06\xa5\xe9\x0b\x1e\x8c\xec\xb2\x66\x10\xd9\xb3\xec\x5d\x95\x58\x36\x03\xc3\xb2\x8c\x57\xce\x39\x75\x0c\xe6\x06\x4f\x13\xb2\xd2\xca\x66\xc0\x37\xe3\xda\xa9\xaf\xfc\x6e\x84\x8e\xad\x3c\x55\x2f\xc5\xb7\x10\x5c\xc7\x54\x6f\x1d\x96\xef\x66\x60\xa8\xe5\xb0\xd4\x6a\xe7\x7a\x42\xd7\x3c\xe1\xd1\xd9\xfe\xf7\x09\x13\x7b\x1e\x0d\x24\x88\xe5\x13\x06\x5a\x54\x1d\x3c\x2e\xe6\x13\xde\x2f\xe8\xb4\x7c\xff\x5c\x92\x90\x58\x5a\xf3\xca\xe9\xc0\x24\x0b\x2e\x51\x7f\xa2\x8d\x0f\x3e\x20\x20\x22\x27\xaf\x47\xe3\x2d\xe1\x49\x9a\x6f\x55\xf2\x81\x06\x82\x48\x8d\x10\x17\x87\x54\x2b\x61\xfa\x9f\xb8\x03\x27\x24\x3f\x12\x36\x2c\xd0\x49\xf1\xdb\x5f\x45\x48\xf5\x1a\xb1\x0e\x9d\x51\x45\x10\x70\xf9\xf9\x7e\xf2\x53\x3d\x61\x58\xd0\x2c\xfa\x9f\xab\xaa\xfb\xa4\x9a\x5f\x5d\xbc\xcd\x8c\x27\x89\x09\x0c\x74\x9e\x62\x30\xbe\xe7\x40\x79\x56\x45\x2e\xe1\x80\xd2\x9f\x7e\xab\x5b\xf1\x84\x2e\xd7\x13\x5b\xec\xf9\x12\x09\x7c\x5c\xe2\x42\x05\x79\xae\x04\x45\x43\x37\xa3\x70\x71\x09\xc2\xaf\x3d\xf3\xfc\x22\x14\x73\x08\xc9\x7b\xe6\x7d\x0c\x7c\x7b\x99\x90\xcc\x98\x54\x16\x7d\xb9\x49\xc8\x1d\xe1\x49\x6a\x9a\x79\x83\x50\xe4\xfc\x4e\x30\xc5\xf4\x21\xc1\xa8\x35\xda\x3b\x2a\xca\x68\xea\x72\x81\xda\x13\xfe\x5d\x84\x2d\x56\x5a\xb7\x32\xc2\xac\x09\x69\x4f\xf5\xc7\x34\x67\xaf\x25\x7c\x2f\xe4\x5e\xa6\xbc\x93\x97\xe0\xcb\x52\x4f\xcf\x7c\x62\xc6\x20\x71\xd1\x8e\xe5\x43\x52\xde\x84\x9f\x4b\x55\xd4\xec\x6a\x7d\x09\x0d\xea\x37\xbe\x39\xce\x36\x26\xdc\x5a\x1e\x32\x33\x63\xd9\x36\xc2\xfd\xd6\xab\x89\xd5\x07\x8c\x08\x21\x41\xbb\x7e\xde\x98\x50\x23\xd8\x58\x8d\x17\x36\xf0\xee\x26\xbc\x7c\x32\xfb\xf3\xd6\xb3\x2a\x84\xbd\x8a\x09\xcd\x5b\x9c\x8e\x10\xe6\x64\xdf\xe9\x7b\x6f\xda\xc2\xe0\xf4\xfd\x5e\x8d\x9b\x91\x8f\x09\x2b\xde\x36\x9f\xf8\xeb\x18\x4f\xa8\x55\x49\x55\xb4\xc9\x68\x21\xf8\xef\x70\x39\xaa\xd4\x1c\x4f\xd0\x1e\xb5\xf3\xf6\xa5\x08\xc2\xd8\x52\x69\x73\x8b\xe8\x1c\x82\xa1\x77\xf1\x86\xcf\xd1\x9b\x08\xbe\x56\x3b\x77\x45\x19\xaf\x26\x18\x1f\x0f\xe3\x53\x9e\xc9\x4b\x28\xfc\xfe\xb3\xe3\xf1\x70\x04\xa1\x75\xd7\xdd\xa3\x4b\x93\xc6\xa7\xb6\xcb\x08\xd3\x07\x53\x89\x19\x65\x33\x6e\x0b\xd3\x09\xba\xcb\xa7\x55\x70\x6f\x7a\x4c\xd0\x5e\x21\xfc\x66\xd4\x99\x87\xc0\xab\x7b\x70\x3c\xa7\x7b\x11\x61\xa7\x50\x49\xa1\xc1\xd4\xe9\x57\x4d\x50\x38\xe1\x6e\x56\x0e\x83\xe2\x8f\xb5\xed\x7f\x4f\x3a\x13\xce\xe8\xdb\x5f\xb2\xad\xf4\x22\xbc\x31\xf8\xb4\x55\xa2\xc9\x8e\x10\x5e\x9c\x73\xc2\x23\x26\x84\xa0\x1d\xa8\xaf\x37\x28\x7b\x9c\x30\xf1\xab\xd2\x6c\x79\x90\x33\x41\xbe\x33\xf9\x9d\x80\xaa\x06\xe1\xb5\x6a\xc1\xf1\xe0\x4e\x71\xc2\x77\x93\x13\xdb\x6a\x39\x77\x12\x64\x1e\xf6\x8a\x9c\xfb\x53\xc9\xa0\x71\x59\x8b\xb6\xe9\xd7\x2d\x84\xbc\xf3\xb7\x7b\xe2\x2d\x65\x08\x83\x1a\x6b\x6f\xcb\xc6\x3f\x24\x84\x2e\xb9\x9d\xbd\x35\x35\x84\x20\xe5\x31\x5c\x2e\xb9\x3a\x9c\xc0\xf7\x75\x7d\xe3\x31\x9b\x43\x84\xaa\xef\x8b\xcf\xdb\xb5\x3c\x61\xb0\x55\xab\x00\x13\xe9\xf5\x0c\x54\x83\x0f\x9e\x32\xec\x6c\x60\x20\x7a\x7f\x32\x5d\xb6\xec\x1a\x83\x33\xf5\x2d\x7e\x3c\x6c\x89\x84\x1f\xb3\xf8\x43\x9f\x7b\x5c\x20\xcc\xdb\xef\xf6\xb6\xe0\x74\x1c\x21\xb1\xa2\x5b\xdc\xad\x3f\x96\x30\xf2\xf8\xde\xf2\x03\x70\x21\x4c\x77\xed\xbe\xea\xb7\x6d\x8c\x85\x32\xc5\x9c\x92\xeb\xb5\x02\x04\xc1\xc9\xd5\xbf\x6a\x5c\x2e\x13\xb2\x67\x1b\x36\xee\x2e\xd1\xf8\x0f\x7a\x95\x66\xa5\x73\xad\xb4\x25\xa4\xaa\xa5\xb6\x3c\xdf\x7e\x90\x10\x3d\xcf\xc5\xc6\xa2\xd9\x81\x30\x5c\x49\x71\x79\xec\xca\x04\x93\x55\x17\x1e\x2b\x99\xe6\x30\xc8\x56\xe5\xd4\xda\xf4\x23\x8f\x41\xfa\x52\xc3\x97\xcb\x78\x1a\x18\xe8\x0f\xf2\xaf\x7d\x15\xca\x41\x10\xe8\x6d\xf3\xd9\xa1\xc8\x43\x30\xab\xf8\xd1\x71\xf7\xae\x15\x21\xa3\xb5\xeb\x74\x8f\x54\x07\x83\x53\x8a\xe6\x95\xb9\x92\x5c\x84\x4f\x99\x91\xc3\x96\x4f\x7f\xb1\xd0\x55\x65\x29\x7b\x41\x9a\x6b\xea\x1f\xa7\xc9\x2a\x95\x5e\x44\x78\xd1\x63\x98\x1e\xb6\x73\xef\x7f\x92\xb6\x45\xbc\x1b\x8e\xbe\xae\x2f\x82\x74\xc6\xb7\x69\xaa\xdc\x19\x0c\x1e\x4a\x55\xd7\x3e\xb9\x72\x86\x50\x16\x9a\xb8\xb0\xff\x57\x09\x61\x5c\x73\x94\x39\x95\x77\x92\xb0\xf6\xcc\xdf\x89\x15\xef\xd6\x12\xd4\xcc\x6c\x7f\x84\xcc\xb1\x65\xc0\xdd\x63\x79\xf5\xfa\x9d\x21\x42\x9f\xe7\xea\x93\xf9\x85\x39\x04\xda\xbf\xf7\xcf\x58\x43\x1e\xa1\x53\xd8\xab\x48\x52\xa9\x8c\xc1\x6f\xdd\x8f\x4b\xf2\xa6\x2a\xb7\x1d\xa5\x1a\xd3\x5a\x23\x09\xb9\xfe\xfb\x3f\x2c\x1d\x29\x20\xb4\xb3\x7f\x4e\xf2\x6a\xab\x24\x0c\x17\xbe\xdd\x61\x28\xee\x46\xa0\x23\x75\xb7\xaa\xad\x73\x08\xaf\x36\xb0\x5e\x86\xcf\xbc\x4c\xa8\x77\xdc\xfb\x74\xd5\xe2\x51\xc2\xe4\x1b\x9e\x9b\x9e\xca\x71\x84\xd4\x9f\xd3\x2f\xbd\x50\xea\x27\xd0\xea\xd9\xcf\x79\xeb\x0c\x09\x96\xab\x67\x9b\xd4\x66\xe9\xfc\x27\x71\xea\xae\xe3\xd5\xfa\xc6\x47\x58\xb2\x44\x62\xde\xd2\xae\x7c\xc2\xc8\x9b\xe1\x9a\xb4\x28\x09\xc2\x15\xb9\x92\xd9\x3e\xba\x59\x84\xf3\xec\x89\x7b\xd4\x34\xed\x09\x5b\xef\xb4\xde\x7e\xef\x37\xc9\x82\x65\xc0\x91\x65\x1b\x58\x6d\x0c\xc6\x69\xe9\xae\x8c\xbd\x1f\x19\x78\xf7\x09\x95\x8b\xfb\x95\x13\x02\x37\xce\xb5\x4e\x38\xf1\x9a\x90\x72\xf6\xcc\x17\x83\xe8\x0c\x42\x95\x85\xd6\x0e\xb9\xdb\x52\x04\x99\xa4\x63\xef\x2a\xbb\x1b\x09\xcb\xdf\x6c\x09\x5e\xbb\xee\x22\x61\x51\xfd\xa5\xf0\xd4\xc6\x32\x82\x63\x9c\xe5\xb8\xd7\xb4\x28\xc2\xf8\x81\xfa\xee\x14\x0d\x6b\xc2\xf4\x7b\xad\x77\x65\x02\x3d\x08\x1e\x85\x5f\x4d\x43\x8a\xb2\x18\xf0\x56\xef\xcc\x1d\x5a\x9a\x44\x58\x78\xcc\x78\x46\xed\xec\x12\x42\x09\xfb\x4e\x25\xa6\x28\x98\x70\xd3\xc2\xe7\x63\xd8\xa3\x0a\x42\x3e\xcf\x2a\xdd\x25\xdb\x18\x82\x44\xeb\xb7\xd5\x0b\xa5\x72\x09\x63\x5d\xdb\xfd\x06\xa4\x16\x13\x92\xc2\x5f\x56\x35\x96\x5f\x22\xec\x9d\xbd\xe1\xf5\xb3\x63\xc1\x84\x99\x15\xa1\xe6\x15\xff\x1b\xe3\x6d\xc9\x46\xa5\x05\x16\x84\xe7\xba\xc7\xe6\x6b\x2e\x32\x20\x78\x0e\x4f\x56\x3d\x9e\xba\x2d\xfb\x76\xcf\x15\xbc\xad\x20\x49\x90\xd9\x77\xb0\xbe\x5b\xe5\x3e\x21\xb2\x8c\x83\xb3\x40\xc2\x9c\xe0\xfc\x24\xe1\x47\x5d\x9c\x1f\xc1\xc0\xf0\x95\x4f\xd7\x8e\x72\x06\xa1\x47\x8a\xf5\x25\x83\x8b\x09\x93\x26\xea\xb2\xaf\x37\xc4\x11\x14\x05\x2a\x37\xfb\xee\xf6\x20\x14\xd8\x9e\x1d\x2f\xbd\x56\xc5\x80\xc7\x77\xd3\xda\x02\xdd\xe3\x04\xb1\xb3\x4d\xdd\x43\xcb\x2a\x18\x38\x75\xa7\x6f\xc9\x39\x97\xc1\x60\x15\xfc\x7b\x2e\xaf\xb9\xcb\x80\x6f\x38\xc0\xfd\x6f\x4a\x1e\xa1\x26\x2b\x27\x3a\x88\x5d\x96\x70\xce\x21\xe2\xe9\xb6\xc9\x1d\x84\xc4\xb2\x69\x8d\x69\x07\x86\x8a\x70\xb0\x6d\x3e\xdb\xf5\xa9\xe5\x5d\x7a\xa9\xd5\xe5\x28\xae\x0a\x42\xdb\xbb\x03\x56\x3f\x32\x26\x09\x8b\xf7\x57\xf0\x71\xc6\xfd\x20\xf8\xde\x9b\x17\x1c\xc3\xde\x44\x38\x7a\x75\xbb\xc9\xc8\x60\x2b\xa1\x46\x91\x33\x73\x68\x7e\x3b\x41\x47\x41\x93\x8d\xf5\x98\x5d\x1e\x9f\x7e\x5a\x31\xf3\xaa\xf2\x08\xc6\x45\x9f\x1a\x07\xa7\x66\xec\xf6\xe6\xcc\x34\x36\x0c\x67\xf0\xf7\xfe\xa9\x96\xe5\xab\x92\x09\x89\xfc\xbc\x16\xb1\xa5\xc9\x84\xd4\x84\x2f\xc2\x87\x7c\x2a\x09\x29\xcf\xbc\xed\x56\xda\x96\x13\x56\xce\x4a\x99\x93\xd3\xe7\x4c\x70\x79\xaf\xea\x70\xcd\x3e\x9f\x70\xf9\xa1\xab\x89\xdb\xda\x76\x06\x9b\x15\x87\x2d\x7b\x53\xeb\x19\x7c\xb1\xd1\xff\x9a\xad\x78\x98\x10\xfc\x57\xbc\xd7\xf4\x60\x36\x83\xb8\x05\x8b\x95\xdf\x0a\xc7\x11\x02\xa2\xd3\xe3\x02\x9c\xaf\x11\xec\x22\x79\x56\x86\x19\xa5\x11\xf8\x6e\xc9\x1f\x33\xd7\xa8\x20\x68\xd7\x30\xf7\x24\x6a\xf4\x09\xf2\x82\x1a\xaf\xc6\x73\x3a\x09\x8f\x6b\x7e\xcd\xba\x33\x99\xc5\xa0\xe7\xb0\xd2\xd1\xf2\xb7\x9b\x09\xc7\x56\x35\xdd\x9a\xdb\xea\x42\x78\x59\x10\xbd\xdc\x2b\x45\x80\x90\xc7\xc3\x7b\x8d\x9b\xcf\x8c\xb0\x25\xb4\xf5\x09\x5d\x0b\x67\x10\x7d\x2e\xfc\x6c\xb5\xcd\x0a\xc2\x5d\xd6\xe8\xbc\x2c\x89\xe3\x84\xa7\x8e\x97\x73\x13\x64\x15\x08\x9a\xd1\xb7\x2b\x77\x7f\x19\x23\xbc\x58\xcf\xb1\xd2\x7e\x48\x83\x20\x7d\xc9\x24\xf9\xcb\xe6\x4a\xc2\x6c\xb1\xe0\xde\xae\xc0\x37\x2c\xe4\x3c\x72\xdd\x50\x56\x58\x44\xd8\xd0\xeb\x6c\xc4\x2d\x78\x92\xf0\x74\x74\x60\x43\xfc\xbe\xe7\x04\xb5\xa6\x7a\xdf\x7f\x2a\x2f\xe3\x8e\xb1\xac\xea\xd5\x84\xf4\xee\xd7\x62\x21\x46\x82\x04\x53\x03\x9e\xb3\x8b\xe6\x56\x10\x2a\x35\xfd\x5f\x9f\x2f\x6f\x25\x24\x44\xa6\x0e\x2c\x98\x4a\xf4\x9a\x8e\xef\x30\x08\x93\x20\xec\x30\x5b\x5a\x79\x7f\x4c\x99\xb0\x6a\xf7\xcd\xf9\x33\xa4\x86\x09\xc3\xec\x06\x47\x85\x7c\xeb\x08\xee\xfb\x8f\x17\xb8\xf5\xd6\x12\xae\x3c\x25\xbd\x7f\x92\x8b\xb7\x6d\xc4\x0d\x66\x31\x84\x15\x02\x8d\x5c\x81\x5a\x8d\x04\x31\xfb\xdd\x39\x5a\xce\x77\x09\x8b\x0d\x54\xe2\xb6\xed\xad\x23\xb0\x29\x64\xf3\xad\xe2\x2e\x23\x54\xe9\xa7\x6a\xf8\xeb\x3f\x65\x70\x61\xa0\x65\x74\xce\x81\xd7\x84\x27\x7b\x55\x1e\x78\x8b\xea\x10\xfc\x9f\x28\xab\xf6\x9d\xd1\x21\x94\x9d\xb2\xd3\x1d\xfd\xe6\x44\x48\x51\x71\x73\x73\xd8\xf0\x98\x81\xa6\x6b\xe5\x26\xbd\xc3\xdb\x09\x1f\x75\xb2\x4c\x17\x70\xfa\xd1\xbf\x09\xbd\x91\xaa\xf9\x51\x5b\x40\x90\xb2\x73\x6f\x66\x0b\xc9\x24\x6c\x50\x6a\x66\x1e\x04\x7e\x22\x64\x4e\x38\xaf\x7a\xf6\x35\x87\xc1\xca\x3b\x1e\xce\x35\xa1\x99\x04\x76\x97\x5d\x1b\x22\xa2\xeb\x09\x21\xdc\x7f\xcd\x67\x4c\x0d\xcf\xb7\x5a\xb1\xab\x78\xba\x35\xc1\xc7\x63\xdd\xe7\xf0\x3f\x56\x84\x0e\xf7\x15\x2b\x0f\x3f\xd6\x27\xdc\xc8\xbd\x19\xdb\x19\x6c\x4d\xd0\xd4\x48\x1a\x7a\x24\xa0\x43\x10\x12\xb8\xae\x78\xe5\x81\x33\x41\x7a\x83\xa5\x9b\x91\xe1\xeb\x22\xdc\xba\xe1\x34\xee\xe4\x76\x81\xb0\xa2\x21\x5f\xf7\xea\xae\x08\x82\xfb\x69\x15\x71\xbd\xd5\x39\x0c\x7e\x49\x24\xac\xbb\x32\x95\x48\xee\x34\xc8\x74\x5a\xb8\x9a\xb0\xf6\xd8\xa2\xda\x52\x1b\x1b\x06\xe7\xd3\x23\xdd\x2c\x82\x93\x09\x57\xcc\xaf\xd5\xc6\xeb\x97\x11\x9e\x9f\x95\xf6\xe6\x38\x72\x8b\xc1\x9b\x88\x91\x59\xb9\xbc\x71\x84\x01\x64\x7f\x3e\xba\x20\x8e\xe0\x3c\xcb\x5d\x29\x4d\x2c\x8e\x70\xaa\x6d\xe6\xe3\xe8\x0f\x49\x0c\xf6\x55\xf3\x5d\xb5\xf0\xcb\x65\x70\xe4\xc5\xe6\x59\x0a\xe9\x09\x84\x83\xde\x2a\x1f\xf5\x02\x33\x09\xe7\xa6\xeb\x3c\x61\x2b\x39\x42\xc8\xe6\xbf\xf5\xe2\xf1\x8b\x32\x06\xcd\x75\x8e\x9b\x4b\x76\x2e\x21\xe4\x1e\x0d\x75\x5e\xd1\x7c\x89\xd0\x87\xd8\xd6\x43\xc7\x62\x08\x6f\x07\x4f\x14\xd9\xcf\x0d\x25\x3c\x52\x4d\x5d\xec\xba\x79\x1f\x81\x5b\x6c\xeb\xd0\xa2\x0e\x07\x06\x7e\xa6\x82\x81\x66\xbb\x4e\xd0\xbf\x28\x65\x05\x9c\xce\x7c\x62\x4a\xd8\xae\xc2\xee\x78\xd1\x39\x80\xa0\x98\xbe\xd6\xc8\xa3\xee\x36\xe1\xcc\x55\xff\x59\xe6\x07\xb2\x08\xbb\x62\x35\x0b\xa6\x3d\x50\x20\x54\x5d\x58\x72\x78\x6d\x87\x10\xa1\xe4\xbc\x84\xe0\x4a\xb9\xad\x34\x2e\x20\xc3\xb3\x66\xa1\x32\x21\xfa\x6d\xb3\xe4\x35\xf3\x63\x84\xe2\xc1\xe9\xa2\xef\x5b\x1f\x10\x9a\xd8\x33\x1b\xae\x06\x0a\x10\x3a\xae\x3d\x89\x59\xbc\x7c\x31\x61\x8d\x4d\xaa\xf7\x8d\x9e\x2e\x82\x48\x83\x0e\x2f\xd7\x54\xf2\x31\x94\xbd\x5a\x6c\x10\x2c\x28\xab\xa8\x15\xea\xa5\x0e\x11\x6e\x2d\xd8\x3a\x33\xb6\xf9\x0b\xe1\xd5\xd5\x34\xae\xc5\xde\x99\x0c\xac\x07\x84\x92\x6b\x63\xaf\x31\x10\x76\x3e\x2d\x78\xf0\x79\x35\x41\xbd\xa6\xc4\x7e\xd7\xbe\x5a\x42\xc2\x5f\xf9\x8f\xf2\xef\x2a\x19\xc8\x37\xb1\x55\x89\x55\xd7\x11\x66\xde\x50\xb9\x24\xf3\x24\x83\xb0\x4a\xf6\x9e\x5e\xc6\xd4\xb3\x16\x63\x77\x50\x3b\xa1\xbd\x87\x85\x11\xb9\xeb\x33\x7a\xd9\xd7\xd3\xff\x85\xa1\x12\x0d\x9b\x91\x72\x0f\xc2\x8a\x87\x71\xad\xaa\xde\xff\x37\x62\x86\x5a\x16\xb1\xb4\x94\x08\x4b\xbf\x1a\xed\xea\x74\xd5\x25\x5c\x7c\xfd\x32\x5c\xfc\xa9\xd8\x7f\xaa\xff\x97\xcc\x12\xb2\xc9\x78\xf7\x9d\x9b\x70\x5c\xb3\xa5\xf3\x72\xf0\x51\x82\xe4\x0a\xfe\xb4\xb3\x9b\x4c\x08\x54\x37\x7f\x6e\xe5\x07\x21\x82\xe3\xaf\x6c\x9d\x75\x41\xa9\x0c\x38\x0a\xba\x15\x1e\x1e\x3a\x4c\xb8\x8f\x65\xfe\x83\xb3\x9d\x08\xcf\x59\x83\x4b\xbc\x39\x4d\x08\x2b\x35\x3e\x65\x8e\x5c\x57\x21\xf8\x0f\xce\xb8\x2f\x2a\x28\x49\x58\xc1\x23\x62\x5e\x33\x12\x46\xa8\xde\xb7\x61\xab\xd7\x93\x6b\x84\x76\x8f\xf7\x3e\x1d\x03\xe7\x08\x01\xfa\xe9\xd6\xc9\x0f\x92\x09\x9c\xd6\xc5\x67\x68\xbe\x13\xe1\xf1\xdf\x94\xd7\x1f\xb5\x8a\x08\x78\x1a\xe8\xae\xe3\x91\x42\x50\x54\xfe\xf6\x69\x9e\xda\x13\x42\xde\xc4\xc4\x8c\x38\x8d\x2e\xc2\xc7\x4d\x1a\x03\x92\xbf\x9e\x10\x9e\x07\x68\xed\x9b\xc3\x66\x4a\x50\x57\xb6\xd6\xb6\xe7\x51\x24\xa4\xdd\x6b\xe6\x32\xb0\xce\x26\x14\x7b\x1d\x14\x91\x48\x97\x27\x7c\xd7\xf5\xbb\x2c\xc6\x14\x11\xc4\x96\x9d\x17\xe5\x18\xd9\x49\xd0\x17\xdc\x75\x5d\xb2\x29\x8a\x10\xd6\x39\xc7\xe1\x11\x95\x33\xe0\xe8\xaa\x38\xba\x42\xe3\x20\xa1\x86\xbb\xa6\x5a\xc4\x71\x27\xe1\xa5\xfb\x1f\x3f\x51\xc9\xd9\x04\xff\xd0\x97\x2c\x59\x89\x9b\x84\xfb\xc5\x6f\x94\xce\x2b\x1f\x22\xfc\x94\xe2\xd9\xdc\x24\xf6\x8c\xc1\xa6\x64\x93\x1d\x4f\xb9\xfd\x09\x1b\xb5\x7b\x92\xe7\x48\x18\x10\xc4\x23\x85\x26\xe4\x04\xeb\x59\xf8\xf4\x98\x6b\x9f\x72\x89\x28\x03\xfb\x0d\xc2\x0b\xac\xb8\x7d\x09\xad\xa5\x66\xc7\xc5\x1f\x78\x13\x04\xd6\x34\xc6\x58\xed\xea\x25\xe8\x26\xd8\x61\xaf\x76\x3b\xe1\x2d\xa7\x47\x5c\xb3\x46\x3b\xc1\x50\x74\x65\xbc\x42\x48\x0b\x83\xb5\x5c\xbf\xd4\x78\x12\x3a\x08\x27\x53\x7a\x22\xb5\xa7\x66\x1a\x5d\x3e\xfc\x7e\xfb\xa9\x84\x41\x9d\xc1\x81\xae\x71\x9f\x2e\x82\xc2\x41\xf9\x6f\x32\xdd\x9d\x84\x4d\x8a\x8b\xcc\x58\x5d\x9d\x84\x79\x4f\x7b\x17\x07\x2a\xc7\x33\xd8\xef\xd1\xcf\xc9\xee\x9a\x46\xb8\xf9\xc9\x6f\xe1\xaf\xa9\xe1\xaf\x4e\x75\xdb\xfe\x0a\x0c\x11\x7c\xf4\x7e\x19\xd3\xd4\xf0\xc6\xdc\x69\x16\x33\x3d\xbb\x08\xb9\x33\x5d\x1e\xdc\xfa\x73\x8f\x60\x2c\xb5\xc4\x9c\x93\x3d\x89\xe0\xfa\x45\x54\xa6\x25\xfd\x23\xe1\x5c\xeb\x2f\x33\xc1\x5f\xf7\x08\xb2\xab\x78\xf3\x05\xde\xa7\x12\xb6\xee\x1f\x11\x5c\x1b\xef\x4a\xd0\xed\x59\x57\x9e\x9b\x79\x9c\x90\xba\x25\x27\xde\xb9\xc1\x84\xf0\xf0\xfb\xc9\x47\xd7\x97\x97\x31\x48\x49\x73\x5b\xd2\x9e\x66\x41\x38\xda\xba\x42\xed\x69\xbb\x03\xc1\x58\x5f\x32\x6e\xd2\xf7\x00\xc1\x78\x42\xfd\xa6\xe8\xb9\xad\x84\x86\xe6\x9a\x2d\x8d\x15\x2d\x84\x79\x77\x57\xc9\xb8\xe5\x5d\x22\xf0\xfd\xe1\x0f\xfe\xc5\xf5\xe0\x3f\xc9\x3b\x5e\x8f\xe1\xbb\xb1\x1f\x08\x4b\x78\x4d\xe6\x1d\x59\x1a\x4b\x28\xfc\x5c\x36\x6d\x51\x5c\x2f\x83\xfc\xcb\x89\xaf\xfd\x55\x6b\x08\x55\x83\xbb\xaf\xdd\x69\x88\x26\xf8\x15\xbf\xe9\xc1\xeb\x72\x82\xe2\xcb\x01\xaf\xa1\x18\x0f\xc2\xad\xae\xa4\xe4\x17\xbd\xc7\x09\xaf\x73\x6d\xbd\xf7\x2d\xd1\x23\x74\x3e\x17\x76\xaa\x8c\x93\x24\xfc\x99\x77\x44\xb4\x57\x75\x2b\xa1\x59\xbc\x66\xc3\x2a\x2e\x2d\xc2\x99\xb3\xb9\xce\x37\xc3\xe5\x08\x25\xfb\xa5\x43\x83\x1e\x27\x11\xfa\xcd\x55\x77\x75\xbc\x68\x26\x44\x9b\x64\xa6\x2d\xdc\xf8\x86\xe0\x2e\x7d\xe7\xec\xe4\x95\x6e\x82\x86\x4b\xe6\xd2\x86\xe5\x5d\x04\xa3\x8c\x76\xf1\xfa\x29\x9c\xb4\xe8\xc8\xe1\x5c\x71\x9d\x20\xb6\x35\x66\xe9\x20\x47\x09\xe1\x06\x9f\xda\x93\x81\x29\xd8\x74\x1f\xfd\xd4\xa1\x90\x42\x90\xaa\x97\x4a\xf8\x27\x39\xf9\x2e\x86\xed\x1f\xf4\xeb\x1b\xaf\x8f\x5c\xe2\x42\x28\x2e\x9b\xb6\xc7\x24\xc0\x9f\x30\xe0\x3f\xaa\xf2\xfc\xc1\x03\x42\x8c\x4c\x8c\xe2\xbe\x95\xce\x84\x8e\x19\xc6\x6b\x9b\x03\x5d\x08\xf9\x71\xed\x16\x49\x75\x2a\x84\x96\x81\x18\xaa\x30\x4d\x25\x68\xef\x9e\xd4\xb8\x70\xfc\x23\xe1\xc4\x49\x9d\x82\xf9\xe7\xb3\x08\x22\x4f\x6c\x3e\x1d\xdc\x92\x4d\x58\x7a\xae\x50\x1e\x96\x59\x84\xb3\x16\xbd\xd3\xd5\xfa\xee\x12\x82\xa2\x5a\x7f\x34\xa4\x56\x10\xca\x94\x5a\xfd\x72\xd2\xab\x08\xa2\x62\x43\xab\xeb\x9a\x6e\x10\xc6\x94\xe6\x0a\xaf\x7d\x18\x4e\x78\xee\x74\xf4\xbb\xe7\xe9\x9b\x84\x30\xe3\x3f\xa7\x4e\x7d\x71\x20\x54\x8d\x4a\xb2\x0f\xf4\x25\x32\x18\x53\xb2\xa9\xb9\x69\x9f\xc5\xc0\xb2\x7e\x22\xc2\x6a\x6f\x3a\x41\x41\x48\x4b\x43\xdb\x3b\x9c\xa0\x33\x7b\xee\xc2\xbb\xf7\x3d\x09\xd3\x9b\xdc\x4a\x15\x42\x75\x08\x52\x11\x7d\x6d\x81\xc7\xd6\x11\x0c\x23\x3e\x15\xae\x09\x54\x20\x84\xa8\x04\x8f\xd5\x6c\x11\x26\x58\x86\xea\xd8\x1e\xd6\xf2\x62\x20\xe3\xd5\x19\xb0\x26\x7b\x2f\x41\xa7\xf3\x7b\x9c\x5c\x99\x32\xfd\x9b\x98\x28\x1f\x12\xfa\xb9\xdd\x9f\xf0\x54\xc3\xfa\xf1\xe7\xec\x6a\x82\x8d\xa2\x70\x99\xa8\x8b\x38\xa1\x4d\xfd\x87\x34\x67\xbd\x1f\xe1\x61\x7c\x94\xc8\xc4\x1f\x35\x82\xe4\xf6\xe6\x39\x6d\x15\xc1\x04\x8a\x99\xd7\x6b\xa6\xeb\xf2\x1f\x54\xbf\xb7\xd4\xc9\x0e\x36\x20\x70\x9c\xee\x9c\xad\x78\xd7\x88\xf0\xa5\x7b\xc1\x8b\x2b\x7b\x18\x82\x85\x6c\x9f\x88\x4c\x94\x13\xe1\x9b\xc5\x35\xfe\xe3\x55\x1f\x08\x0f\x14\xde\x17\x79\x5c\x7b\x4d\xe0\x9c\xf3\xd8\x4a\x31\xcd\x84\x90\xcb\x6c\xe6\xd8\xfc\x61\x37\x41\x54\x32\x26\x2e\x8f\x5d\x8b\x30\xa8\x64\xd5\xe3\x2f\x9e\xc2\xc0\xd9\xeb\xbd\x39\x97\x5e\x14\xa1\x39\xb8\x3c\xe5\x7e\xfc\x23\x82\xa9\xbb\xcf\xfa\x21\xb5\x10\xc2\xfc\x68\x6d\x8b\xd1\x30\x3d\x42\x66\x53\x76\x11\x2b\x90\x93\x10\x11\x7f\xf4\xc4\xd0\x59\xe9\xff\x80\x3f\xbe\x7e\xef\xf1\x21\x4f\x16\x14\xff\x3e\xf3\xad\xb8\x22\x4a\x48\x29\x94\xe2\x30\x38\xb4\x8b\xd0\x92\x93\x20\xaa\xb0\x8c\x8d\x90\x61\xc9\x6f\xf5\x53\xa6\x92\xc1\x17\x6c\xf9\x3e\x79\xab\x8e\xc1\xf9\x81\x80\x97\xf6\x34\xb5\xf3\xad\x92\xbd\x9a\xcd\x93\xc3\x20\xf5\xe7\xdb\xc5\x1b\x6a\x7a\x08\x73\x9c\x1e\x3d\x3d\x3a\x55\xa5\xce\xba\xdd\xf6\xc7\x9f\x8d\xa0\xd7\x75\x94\x6f\x56\x4d\x27\x83\x8b\x6f\x92\xb3\xe6\xe9\xbe\x65\xc0\x1d\xbf\x35\xeb\xc9\xa9\x2e\x06\xb9\xea\xee\x3e\xff\x24\x67\x4f\xf3\xc6\x9f\x89\x6f\x67\x10\x16\xd9\x77\x7e\x73\xc8\x69\x42\x8a\xbd\xd2\xb6\xcb\xdb\x8a\x08\xed\xca\x7f\xb4\xd8\x5e\x3e\x25\x94\x19\x96\x4c\x1e\x73\xec\x22\x6c\xd9\xd7\x68\xf9\xcf\x0c\x6f\xfc\xb4\x4b\xf7\x25\x3c\x09\xde\x12\xd3\x8f\xb0\xbe\x7a\x10\x22\x1a\xd5\xfd\xdf\x9c\xb4\x24\xf4\xb5\x6f\x89\x8a\x3a\x1b\x4c\xb8\xac\xf8\x7d\xdc\x64\xaf\x25\x61\x4f\xe6\xf8\xcb\xe9\xc9\xce\x84\x3b\x07\x07\x6a\x12\xb2\xf7\x11\x6e\xcb\x4e\x3b\xee\x70\x44\x89\x70\x5e\xf5\x45\xeb\xdd\x96\x7d\x84\xbb\xcc\x4f\x7f\x1f\xa9\x2e\x16\xc2\x6a\x34\x7c\x1b\x36\x19\x13\xde\xdd\xe3\xe7\x5d\xc5\x5a\x46\x78\xe3\xe8\x6c\x23\xf8\x7b\x37\xe1\xf8\xe7\xcf\xa1\xbb\xe5\xe2\x08\xc5\xb7\xf2\xe3\x8b\xfc\x5d\x09\xfb\x5f\x7c\x6b\xfc\xfa\xbe\x96\xa0\xb6\xcb\x69\xc5\xc7\xc1\xf7\x84\x65\xdf\xd6\x75\xd7\x7c\x7d\x4f\x68\xea\x0f\xba\xeb\x9f\x18\xcd\xe0\xe8\xee\xe7\xbf\xdb\xa7\xaa\xc4\xa2\x69\x8b\x1e\x8f\x5d\x25\xc4\xbf\x73\xf5\x5a\x77\x3d\x88\x30\x23\xe7\xa7\xf1\xe1\x4d\xd1\xff\x49\x56\xba\x5d\xbc\x8a\x69\xd9\x84\xa0\x8f\x63\x3a\xcf\x6b\xa7\xb6\xd2\x98\xb4\xd4\xfb\xa2\xb1\x04\xae\x79\x6c\x61\x59\xb3\xc3\x09\x9f\x8f\xbd\x99\xbb\x7a\xc7\x23\xc2\x78\xf9\x36\xae\xe3\xb7\xf3\x19\x98\x17\x9d\x3b\xff\xc2\x5e\x95\x90\x25\xac\x27\xae\x32\xfc\x83\xf0\x37\xad\xf6\xb2\x83\xea\x6f\x82\xe0\x0b\x81\x8e\xa2\x5f\x95\x84\xd0\xe1\x3d\x6b\xba\x5f\xfc\x20\x34\x85\x1b\x16\x76\x3e\xcc\x22\xcc\xaf\x9d\x3f\x5d\xd5\xab\x83\x41\x6f\x56\xf5\xb9\xfe\xdc\x97\x04\x93\x97\x5e\xf7\x9c\x67\x24\x32\x98\xeb\x74\xe7\xf1\xa7\xa4\x32\xc2\x64\x38\xf7\x5f\xae\x70\x69\x02\x7d\xcb\x68\xe8\xf4\xab\x23\x38\x04\xe4\x1c\x2f\x59\x56\x40\x58\xbc\xfb\xb6\xfb\x9d\xc0\x04\xc2\xe3\x82\xec\x3f\x1c\x72\xe6\x04\x0e\xf3\xc4\xac\x43\x7c\x81\x84\x83\x2f\x9d\x39\xd5\x92\x63\x09\xe3\x9e\x8a\xeb\xe6\xce\x98\x3a\xf6\xbc\x39\xa2\xdf\x17\xb0\x8d\x50\x58\x1d\xfb\x61\xab\xed\x0f\x16\xa8\xa5\xf0\xfc\xfa\xcb\xab\x09\x19\x67\xae\x08\x47\x3b\x71\x30\xf8\xbc\xb4\xac\xd6\x24\x5f\x97\x10\x9b\xc5\xd7\x74\x30\xc9\x93\x40\x59\x67\xb3\x36\x8f\x5c\x20\x7c\x93\xf5\x37\xae\x59\x79\x85\xd0\x3b\x7e\xc2\x69\xec\xdd\x03\x42\x72\xf3\xd3\x5f\x9c\xfe\x27\x09\xef\x72\xdc\xdb\x5b\x8c\x87\x19\xfc\x1d\x3b\x23\x94\xb8\xb1\x98\x90\xb8\x3f\xa8\x3e\x40\xe7\x39\x83\x83\x7d\x51\x2d\x6a\xd1\xbe\x04\x13\x93\x39\x77\x55\x96\xb4\x11\x0e\x33\x7c\x0d\xeb\xbc\x7a\x19\x2c\x7e\x4e\x02\xdb\x82\x4b\x19\x6c\x7d\xa0\x2d\x70\x20\xbb\x9f\xe0\x1c\xdd\x7a\xa7\x3b\xef\x1a\x03\x37\xc5\x19\x5a\x3b\x25\x62\x09\xe6\xf6\x23\xef\x5e\x25\x7e\x22\xfc\x9d\xd6\x12\x55\x63\xdc\xc1\xa0\x49\xd0\xf2\xd6\x9a\x0b\xb1\x04\x95\x5b\xa7\x25\x14\xf3\x8e\x12\xaa\xd9\x6e\x7d\xd8\x9f\x15\x43\xd8\x2a\x1e\x71\x24\xc1\xdb\x82\xa0\xb2\x3c\x41\xd6\xa0\x57\x87\x20\xf3\xbe\x55\x2b\x6b\xf9\x21\xc2\xc7\xda\x6d\x1d\x6f\xc7\xa5\x09\x2e\x62\x5f\x38\x6f\x97\xfe\x60\xe1\x72\x83\xd3\x84\xaa\x60\x39\xc1\x26\x6b\x7b\x7b\x6a\xed\x4d\x06\x2a\x0a\xc7\x66\x05\xdf\x8f\x23\xec\xe0\x7a\x9d\x9b\x9e\xd4\x4c\x88\xe4\x73\xf4\xdf\x6e\xdd\x4e\x78\x3a\xcb\xe9\xe8\xd2\xa4\x6e\x42\x82\x99\xfd\xeb\xc7\x97\x9a\x09\xa9\xb3\x65\x2a\x1c\x43\xf7\x31\x58\x33\xa3\xe4\xae\x6f\xea\x2a\x82\xdc\x51\x3b\xbb\x6b\xde\xa7\x09\xc9\x7d\x42\x3e\xfc\xef\x0f\x11\x56\x5b\xf4\xb5\x95\xb6\x59\x11\x94\xcf\x3e\x89\xe4\xf8\x94\x43\x18\x7c\x2e\xf5\x7c\x60\xfe\x4e\x06\x41\x3a\xf1\x4b\xb3\x34\x77\x12\xb2\x3f\x7f\x0a\x96\xed\x93\x25\x24\x3d\x74\xfa\xb6\xf3\xa4\x0b\xa1\x54\xc1\x43\xe1\xf9\x3f\xbf\xa5\x56\xe5\x36\x9e\xf5\x4c\x95\x70\xe3\xdb\x3c\xfb\xf9\xaf\x63\x09\x3a\x62\xe5\x67\x93\xe7\x2c\x25\x48\xdc\x90\xbc\xae\x74\x97\x87\x50\xd4\xdb\x2f\x1c\xb0\xd5\xf7\x3f\xc8\xdd\x7c\xd3\x64\xf4\x2d\x37\x21\xab\xf7\xb0\x75\xe0\x40\x0d\x61\xb6\x5f\x41\xce\x84\xad\x25\xa1\xca\xe6\xca\xfc\x27\x63\x97\x08\x73\x26\x0d\x2f\x8f\x1e\x3e\xc0\x60\x4d\x79\x80\x94\x5c\xd6\x62\x02\xef\xc0\x6a\xdf\x63\x41\x27\x08\x07\xf5\xf5\xd2\x6f\xdb\x3f\x22\x14\xf5\x1c\xd9\x2b\x3a\xfe\x86\xc1\xa3\xad\xb1\xde\x56\x33\x9e\x11\xc4\xd2\xac\xb4\x22\x2e\x3c\x22\xf8\x6b\xf7\x6b\xc7\xf8\x0f\xb3\x50\x77\x62\x34\xa9\xde\x53\x98\xf0\x47\xbd\x36\xec\x5d\x71\x36\x61\xbb\xd3\x06\xf5\x6f\xb7\x12\x08\x65\xbb\xdb\x0c\x05\x8e\x14\x13\xdc\xde\xcf\x9b\xeb\xb7\xb8\x8e\x70\xfb\x31\x59\xfc\x53\x15\x85\x3c\xad\x7b\xd8\xe7\x41\x38\xdf\x74\xd0\x4e\x31\xc4\x8e\xd0\x5c\x54\xf4\x3d\x79\x50\x96\xc1\xca\xc5\x66\xf5\x99\xee\x01\x04\x8f\x83\x0a\xe6\x82\x21\x0e\x0c\xc6\x15\xb9\xff\x1e\x37\xd9\x43\x78\xb9\x6f\xc9\xbd\x4b\xa5\x37\x09\x33\x57\x87\x8c\xf3\xed\xfd\xc3\x82\xfa\xc9\xf3\x57\x38\x67\xaf\x26\x04\xd8\x3e\x99\xf1\xe1\x6a\x30\xe1\x8e\x42\xef\x59\x99\xfc\x34\x06\xce\x69\x71\x57\x78\xed\x1e\x12\x22\x4b\x57\x5e\xdb\x3b\xd4\xc1\xe0\x45\x8f\x5d\x7b\x60\x6c\x22\xc1\xe7\xd7\x5f\xbb\xa0\x5d\xcf\x19\x18\x6d\x9f\x6d\x3c\x3f\xea\x3e\xe1\x11\xdb\xe2\xe8\x7c\xd1\x2e\x06\x65\x83\x6a\x86\xad\xb3\x84\x09\xdd\xbb\x84\x32\x36\xc5\xde\x63\x70\x3a\x2d\x66\x95\xf6\x4b\x7e\x82\xc5\xf0\xf9\xb4\x72\xa9\x62\x06\x6f\x47\x52\x54\x6a\xe6\x28\x10\x84\x9a\x66\xa9\xfe\xbd\x6e\x48\xd0\x37\x65\x3b\x93\x2f\x6d\x40\x48\x5f\xf0\x53\x7b\x41\x27\x3b\xe1\x9b\x54\x5b\x60\xfa\x01\x76\xc2\x46\xd6\x8d\xfc\x52\x5f\x77\x02\x97\xf9\xe8\xf5\xdb\xec\xf2\xff\x41\x50\x97\x96\xe8\x09\x3d\x23\x42\xb1\x5b\x48\xb5\x12\x9b\x28\x61\xfa\x25\x3f\x7f\x8f\x35\x5a\x04\x17\xf9\x13\xc7\x84\x5f\x87\x31\x50\x16\x88\xa5\x83\x8e\x8b\x09\x41\x8a\x0f\xef\xe8\x26\x8a\x12\xfc\xe2\x8c\xce\x8e\xdf\xb0\x27\x9c\x11\xbc\x79\x34\x5f\x1a\x2c\x9c\x31\x38\xf3\x5a\xbd\x72\x01\xa1\xf3\xdd\xfa\xfc\x6b\xcf\x5e\x13\xd6\x76\xac\xb2\x55\x9b\x4a\x16\x0e\xd9\xfb\x3b\xdd\xb7\x23\x38\x5f\xe2\x91\xd3\x09\xfa\xc9\x82\x9d\x66\x60\xce\x26\x7b\x2d\xc2\xff\x8f\xf1\xfe\x0e\xe7\xfa\xff\xff\xff\xff\xa8\x90\x86\x68\x50\xa1\x42\x1a\x2a\x1a\x52\xa9\xc7\x95\x94\x42\x43\x46\x2a\x94\xa2\x22\x23\xa4\xac\x14\x92\x91\xac\xca\xaa\x94\x51\xb2\x67\x66\xb8\xcb\xc8\x2a\xd9\x64\x65\x85\x34\xac\xca\x45\x1a\xbf\xc3\xf3\x8f\x57\xfd\x8e\xe3\x7d\x7c\x8e\xef\x7f\xa7\xe3\x7c\xbd\xde\xfc\x81\xe3\x71\xbb\x3d\x76\xa9\xe6\x55\xe8\xbc\x5d\x4e\xd0\xe0\xbe\x58\x57\xba\xa8\x84\xa0\xdf\xbb\x66\x99\x8d\xbb\x1e\x21\x7e\x6e\xc2\x99\x39\x77\x2d\x19\x04\x72\xe7\xe7\xfa\x2f\xf4\x21\x60\xc8\xd9\x84\xbd\xb4\x9c\x70\x64\x47\xe0\x83\x96\x0f\x09\x84\x13\x79\xf3\x97\x59\xef\x7e\x4c\xf0\x5a\x9e\xe0\xd6\xff\xaa\xfa\x9f\x62\x71\xb0\xa7\xa8\xa1\xd4\x99\x70\x92\x3d\xf8\x54\x8b\xab\x07\xa1\x68\xc5\x61\x36\xd3\x5d\x7b\x08\xca\x6e\xf2\x2a\x03\x5f\xfa\x58\xf8\xac\x58\x20\x66\xd7\xd6\xf9\x0f\xd6\x7c\xf9\xfe\x71\x1e\x4b\x99\x60\xf1\xc4\xdd\x63\x45\x20\x8b\x70\x6d\xe0\x67\xb3\xf2\xc2\x6c\x82\x9f\xe1\x99\x3c\xb9\xa3\x81\x0c\xe4\x67\xbc\x94\x67\xf6\xff\x60\x90\x33\x35\x29\xec\xbe\x4e\x14\x03\xbf\xe2\xe4\x9d\xf2\xf3\x26\x3f\x6d\x4a\x7e\x57\x19\xcf\x31\x26\xa4\x67\xed\x70\xb7\x36\x2b\x25\x84\xec\x7c\x57\x55\x1a\x7a\x8b\x50\x7a\xa3\xad\x68\x47\xce\x0c\x82\xbd\x3a\xd7\x86\x7b\xc6\x2e\x84\xcd\xc3\x8e\x1d\x6e\xd7\x2e\x11\xce\xf2\xcc\x95\x29\x79\x67\xfd\x4f\x79\x61\xbf\xd8\xae\x9b\x8e\x10\xfc\x7a\x77\x73\xb8\xac\x78\x46\x28\xe4\x11\xcf\x94\x4b\xb9\x49\xb8\x7a\xcf\xe3\xe9\xee\x63\x36\x04\x7e\xcf\x6f\xfb\xe6\xb5\xb0\x11\x6a\xf8\x8f\x66\x5c\x6a\x9e\x4f\xd8\x59\xf9\xeb\x27\xd7\x0e\x5e\x82\xc2\xd1\xea\xfc\xb5\x55\x7d\x2c\xf8\xfa\x72\x1f\xb6\xba\x38\x9f\xd0\xab\x36\x6f\xcd\x98\x76\x29\x03\xdb\xe0\xdf\x1e\xe7\x8e\x5c\x24\xfc\xe6\x7d\xde\xf0\x5e\xe9\x1c\xe1\x67\x55\xd6\x11\xae\x2d\x32\x04\xcd\x25\x37\x2a\x1e\xa9\xf7\x32\xb8\x7c\xad\xeb\xb5\x7b\xf6\x4a\xc2\xf6\x5d\xe2\xe7\x3b\xf3\x7f\xb0\xd0\x23\x37\x2d\xcf\x6b\x5c\x82\x70\x26\x44\xf7\xac\xb9\xc6\xca\x7f\x70\xb5\x23\x73\x7a\xc2\x9b\xb8\x3c\x68\xa7\x8c\x3c\xcd\x56\x55\xa2\xbf\x28\x28\x1b\xcc\x4e\xde\x7f\x9b\xc1\xf0\xf2\x6a\xde\xf6\xee\x6a\x16\x9a\xaa\x44\x6f\x85\x16\x5e\x26\x34\x09\xa7\x29\xfb\x9d\xb9\x4f\x78\xc4\xe1\xe3\x2b\xb1\x78\x1b\xe1\x5d\x7c\x44\xd7\xb3\xc7\x37\x08\x5b\x72\x16\x56\xec\x7f\xeb\x4d\x68\x1b\xe5\x5e\x98\xaa\xbd\x91\xb0\x9c\xd4\x15\x04\x78\x6c\x08\x8b\x4b\x67\x0e\x85\xbc\x3f\x46\x60\x43\xf5\xa6\xbc\xeb\x13\x2c\x6c\x77\x94\x72\x6a\x3c\xaa\x4f\x98\xb6\x48\xe7\x79\x4c\xc5\xe6\x7f\xb0\x4f\xc9\x5c\x72\x4a\x8d\x13\xe1\x91\xa6\x83\xdc\xb3\x86\x04\x02\xcf\x5b\x77\xd3\x27\x8b\xd7\x12\x16\xbf\xab\x7a\xe4\x19\x16\xcd\xe0\xc8\x4b\x43\xcb\x1c\x96\x0e\x41\x2d\xc6\xe2\xd3\xbc\xf1\x15\x04\x7a\x2b\x11\x31\x9c\x75\x93\x20\xa5\xab\x23\xf4\x63\x59\x26\xe1\x0e\xfb\xb1\xf1\x28\x25\x79\xc2\xc2\xba\x34\x27\x39\x13\x3f\xc2\xb1\xfe\xe9\xa7\x43\x7d\x9f\x32\x50\x48\xe5\xb5\x58\x35\xcd\x92\xd0\xf8\x3c\xcc\xde\xb5\xab\x80\xc1\xec\x0d\x8b\xec\x8f\x1b\x2c\x22\xf4\xa4\x3e\xfd\xb3\xcc\xa0\x99\x90\xaf\x6a\x26\x95\xe7\x92\xca\xa0\xc2\x30\xf1\x7d\x93\x77\x10\xa1\x64\x68\x50\xe4\xe8\xe4\x4e\x8d\x99\x76\xfc\x6e\x33\x1b\x82\xad\xb3\xa0\xe9\xaf\xe7\xad\x2c\xf8\x14\xb3\x99\xec\xe8\xd4\x24\x6c\x90\x98\x31\xc7\x75\xac\x86\x01\xe7\x1d\x17\x9f\x70\x65\x05\x06\xdf\xee\xb7\x15\x45\x1b\xdd\x21\xc4\x66\x2f\x7a\xab\x1e\x5f\x4c\x30\x91\x5b\x23\x65\x71\xc4\x88\xd0\xf7\x56\xb0\xcd\xb5\x3e\x97\x30\x21\x3e\x7c\x41\xb0\x25\x9c\x81\x58\xc8\x41\xff\x9b\xf6\xa1\x0c\x36\x0a\x76\xad\xbf\xee\xb9\x9f\xf0\xb9\xa0\x3c\x3b\x2a\xc1\x85\xe0\xa9\x3f\xca\x5b\x2c\xbe\x9a\x70\x30\x7f\xa0\xd3\x97\xfd\x2a\x61\xf0\xc1\x1d\xad\xdb\x4a\xb5\x84\x4c\xb5\xc8\x67\x47\x8f\xcf\x24\x68\xb0\x6d\x38\x52\xbf\x54\x84\x60\x1f\xac\xba\x7d\xb6\xad\x13\x81\xf3\xe5\xf2\xc6\xd6\xea\xa7\x0c\x96\xca\xd6\x6f\xb1\x10\x3f\x40\xd8\xa9\x56\x54\xc9\xbe\x21\x9a\xc1\xbe\xfd\x71\x9b\x17\x5a\x08\x12\x5e\x75\x46\xf3\xdc\xdb\x2f\x4a\xe8\xbc\xb8\xc4\xc5\x39\x33\x83\xd0\xfb\xab\x2e\x4a\x2c\xea\x2d\x83\x17\xeb\xa7\xf6\x73\x9e\x9f\xfc\xb2\xd6\x58\x2e\xd5\x5e\x7f\x84\xb0\x2c\xb6\xcd\x32\x3c\xd4\x83\xd0\x5d\xc2\xc9\x35\xd2\xd3\xc4\xc0\xfd\xe5\xa5\x07\x1e\x05\xef\x09\x42\xf2\x46\x77\x4b\x6f\x7e\x26\xd4\x34\xad\x95\xfd\xfa\x35\x95\x10\xe0\xd2\x6b\xb9\xb0\x4b\x9f\xc0\xee\xd8\x27\x73\x2a\xf6\xe4\xff\x85\x02\x1e\x59\xc9\x4f\x23\x6a\x04\x5e\x4f\xf3\x4e\xe1\x0a\x2b\x42\x53\xc2\x02\xb1\xaf\x5e\x57\x09\xda\x31\x83\x0f\x6f\xf9\xab\x12\x64\xae\x79\x9e\xda\x33\x57\x96\xc0\x6b\xa5\xbf\xd9\x58\xf3\x4b\x1e\xbe\x0c\x4b\x64\xd3\x66\x1f\x06\xfb\xbd\xa5\xda\xca\xc3\xf5\x08\x26\x43\x4b\x3b\xcb\x4b\xd2\x09\x42\x99\x43\x81\xff\x95\xff\xa1\xf5\xa2\x4e\x52\xe1\xde\x0f\x79\xc8\x13\x9e\xc3\xe2\xac\xaa\x25\xe8\x6f\x6c\xae\x78\x3e\xb6\x8f\xa0\xf8\x6c\x48\xe6\x83\xe8\x2d\x42\xc0\xa6\xfa\xb2\xdf\x77\x2b\x09\x13\x4d\x7d\x12\x89\x13\xa6\x84\xbb\x6f\xaf\x3d\x4b\x9a\x73\x9f\xa0\x7a\xa6\xed\x8a\x4a\xb5\x3c\xc1\x78\xfe\xda\xcc\x67\x8f\x8e\x12\xae\x48\xf4\xaa\x5d\x09\xf4\x24\xac\x7b\xf0\x36\xdd\xe5\x95\x34\xe1\xe5\xd7\x75\x63\xf5\x39\x4b\x08\x5e\x43\xaa\xbc\x6e\xbd\x47\x08\x3e\x1e\x1b\xf5\x92\xcd\x2a\x08\x05\x31\xb6\x9f\x1f\x99\x6d\x25\xfc\xe1\x8a\xb8\x9c\x72\x6b\x05\xe1\xa7\x78\xcf\x17\xf9\xad\xdb\x08\x99\x25\xc7\xbb\x03\xe2\x0d\x08\x45\x31\xa7\x9a\xb1\x4c\x87\x70\x6b\xd1\x68\x7a\x8f\xbc\x39\x41\xda\x31\x44\xf0\xd0\x74\x3d\xc2\x2c\xce\x53\x17\xc2\x66\x04\x33\x30\x5b\x12\xbe\xd3\x20\xfb\x32\xfd\x85\xec\x09\xcf\x5f\x37\x0f\xdb\x11\xb2\xdf\x19\xad\x4b\x4d\xb4\x22\x4c\x58\x3c\x55\x1b\xe8\xd1\x25\x68\x46\x9b\xfb\x48\xb7\x6f\x27\xb8\x5f\xd0\x0f\x9e\x2e\x9d\x44\x38\x9d\xef\x11\x18\x57\x1e\xc1\x40\xef\x63\x4a\xb9\xfa\x11\x0b\xfa\x3f\xd0\x91\xba\x97\x51\x0e\x33\x20\x84\xbc\x3e\xed\x58\x2b\xed\x43\xf0\xbc\x61\x6b\xec\xea\x52\xc0\x00\x6f\x6f\xb9\x99\x5f\xbc\x4b\xa8\xbf\x18\xfe\x23\x66\x6b\x06\xa1\xfa\x75\x96\xc1\x25\x56\x14\xe1\xbe\x4e\xcf\xed\xff\xc0\x5e\xa9\xf9\x8c\xf7\xfb\x1d\xc2\xeb\xdb\x5e\xfa\xd2\xfa\xad\x04\xfe\x98\x53\x6f\xda\xb6\x4f\x27\x48\x2f\xd3\xad\x3a\xdd\xb2\x89\x30\xb0\xf5\xc7\x6d\xc7\x95\x1b\x09\xce\xf2\xd3\xf3\x3c\x03\x57\x13\x8e\x3a\x0d\x69\x68\xb8\x4c\x5e\xd0\xba\x8d\x46\xa9\x65\x79\x0c\x7e\x5b\x9b\x9d\xf3\xdd\xe2\x40\xc0\x79\x05\x6e\xf5\xde\xbb\x84\x43\xed\x6d\x57\xee\xe7\x47\x10\xd4\xe6\x72\xf1\xce\xce\x4f\x21\xfc\x3c\xff\xc2\xbf\x64\xae\x0f\x41\x42\xd0\xfa\x87\xb5\xf4\x26\xc2\x5d\xf7\xcc\x97\x5b\xff\x58\x12\x94\x2d\xa6\x37\xf8\x25\xbf\x20\x0c\xaf\xed\x4b\x5c\xfc\x66\x3f\xe1\xd3\xb1\xca\x76\x8b\xef\x76\x04\xde\x56\xbf\xdd\x6f\xc5\xa3\x09\xcf\x66\x1c\xad\xed\xf8\x52\x4b\x58\xe8\x6f\x13\x68\x39\x39\x9a\x3b\x47\xb8\xeb\xdb\x4a\x4b\x82\x6f\xc4\x80\x5e\x35\xd8\xfe\x41\xa9\x44\x63\x61\x90\xca\x10\xeb\x2f\x04\x4c\x6c\x2b\x62\x5d\x6a\xf3\xfe\x42\x67\xd6\x88\x9f\xdd\x99\x3f\x84\x27\xe7\x97\x1e\x52\xe9\x7f\x43\x50\xec\x6b\x77\x6e\xc9\x1c\x26\xb4\x6f\xfb\x25\xf6\xca\xb8\x80\x60\x28\x72\xb7\x29\x42\xb8\x80\xd0\xd1\x5c\x12\x67\x16\xd0\xcc\xe0\xab\xe5\x2b\xf6\x6f\xc5\x5d\x84\x3d\xad\x2d\x97\x4d\x04\x4a\x09\x89\x8d\x9f\x65\xec\x6a\x5b\x09\x85\xc9\x87\xf2\x96\x71\xc6\x10\xe6\xc5\xd6\x7c\xaf\x98\x3c\x7e\x5c\x6b\xa8\xdd\xe2\xd5\x3b\x82\x7a\x8b\xa3\xcf\xb2\xaf\xec\x72\x38\xf4\xfb\x53\xb5\x93\x7b\x23\xe1\x64\xa9\xfa\xbc\x5f\x67\xd3\x09\xb7\x57\x88\x6b\xbf\xee\x7a\x49\xd8\xf5\x6c\x53\x6f\x1d\xe7\x4b\x82\xc8\x25\x7f\x2e\x29\xdb\x62\x42\xd8\x93\x0c\x5b\xdb\xea\x0a\x06\x0e\x0e\x16\xc7\xda\xc4\x66\xca\xe1\x58\x4e\xa4\xf7\xf0\x13\x37\x42\xce\x88\xb6\xad\x6e\xd0\x07\xc2\xf1\xb5\x29\xd2\x03\x99\xd6\x0c\x24\xd9\xb4\x5d\x6c\xfc\xca\x18\x6c\x96\x8a\x75\x10\x14\x9d\x29\x07\x33\x49\x21\xf1\x59\xdc\xe9\x04\x9f\x75\x57\xf4\xfe\x3b\x25\xf0\x68\xf0\x7c\xbf\x48\x03\x03\xc3\xbc\xfb\x91\x5d\x9c\xda\x04\xa9\x76\x73\xf5\x0b\x1b\x5a\x99\xf1\x2d\xea\xe5\xf4\xc4\x9d\x90\xf0\xfb\x87\xd7\x89\x0d\xad\x0c\x34\x95\x62\x37\x79\xdd\x2c\x20\xf0\x15\x2e\x3c\xd1\x84\x74\x82\x40\xf1\x01\xa7\x31\x89\x3e\xc2\x2a\x85\x1f\x43\x3f\x9a\x9f\xd3\xdf\x1d\x53\xd3\x9d\x52\xe7\xae\xdf\x21\xc4\x7f\xee\x36\x4b\xbe\xe3\x4b\x98\x6a\xfc\xfc\xfa\x8c\xa4\x60\x42\x9d\xdf\x40\xb6\xda\xb3\x2f\x84\xd3\xee\x45\x43\xe7\x46\xab\x09\xfc\xb2\x81\xc7\xb3\x36\x0c\x10\xe4\x1e\xee\x4c\x32\x9c\x92\x4f\x08\xf2\xc7\xbd\xe5\xbe\x85\x84\x5d\xed\xc3\x50\xe5\x12\x26\xd8\xde\xec\x8f\x5c\xd9\x2a\x4d\x88\xfc\x72\x78\x5a\x5d\x56\x19\x61\xf9\x93\xe6\xe3\x3a\xad\xec\x04\xad\x5b\xcc\xc4\x73\xa3\x15\x84\x3a\x53\xde\xc6\x5e\x18\x11\x5e\x9f\xcc\xba\xa2\xf7\x33\x9b\xd0\x70\x72\xc0\xf8\x89\x7e\x2a\xa1\x93\x67\xfb\xe2\xee\x82\x24\x06\x81\x5f\xba\x63\xfe\x1b\x89\x1a\xc5\xd6\x54\x58\x8b\x11\xd6\x7f\xec\x39\x2b\x5e\x34\x8f\xa0\x56\xdb\xb5\xa6\xd2\x7b\x3b\x61\x6e\x9c\xfe\xb7\x8d\xda\x0f\x08\xfd\xc7\xbf\x5d\x61\x16\x96\x31\x28\x5a\xbf\xc4\x5b\x65\xfe\x6a\x82\xb8\xcd\xe0\xb5\xfe\x61\x0d\xc2\x4f\xe1\x4f\x51\xf3\x1f\x28\x10\xe6\x89\x4c\x19\x16\x15\x19\x20\xec\xf0\xf4\xaa\xf2\x10\xf8\x48\x70\x32\x60\xd5\x70\x07\x77\x10\xae\x14\xcd\x59\xd7\xbd\xbd\x99\x10\x6b\xc1\x97\xea\x34\x39\xb2\x30\x94\x70\xbf\xfd\x3e\x87\x10\x1b\x3c\x6f\x6f\x4d\x43\x0e\xa1\xdf\x5d\x2b\x4e\xc8\x2f\x8f\x90\x40\xf7\x97\xc6\x3f\x7b\x4e\x28\xa8\xdf\x9e\x60\x7e\x3e\x82\xf0\x79\xc1\xf6\x64\x63\x9b\x20\xc2\x13\x6d\x05\xd9\x19\xe6\x05\x84\x87\x7f\xbe\x5f\x5a\x9d\x5b\x42\x88\x30\xba\x72\x68\x62\xe6\x20\x83\x9b\x73\x4d\x22\x47\xc4\xc1\xe0\x98\xac\xfd\xa8\xd7\x82\x2e\xc2\xb8\xf6\xf7\xcc\xb8\x29\xf6\x04\xcd\x04\x8e\x13\xd1\xa7\x4e\x33\x88\x56\x12\xbb\x7c\x6f\x7d\x36\xe1\x46\x4f\xc2\xe7\x79\x3a\x76\xff\xec\x28\xfd\x0c\x1e\x7c\xb8\x5b\x82\xa0\xa6\xb1\x37\x7d\xd7\xbb\xaf\x2c\x64\x36\x0a\xdc\xba\x7b\xad\x9d\xd0\xbc\xa7\xe5\x48\xb3\x68\x1d\x61\x42\x5d\xa7\x98\xaf\xbf\x93\x10\xbb\xfd\x71\x71\x9b\x7c\x0d\x03\xdf\x1a\xfb\x7e\x61\xf6\x5e\xc2\x42\x35\xc5\xb4\xb7\x93\x3b\xf3\xd8\x0e\xb5\xed\x8a\x4a\x26\x3c\x59\xe5\x3e\xbf\xcc\x38\x86\x70\xd3\xcc\x34\x84\x51\x7d\x4a\x08\x98\x1d\xf7\x32\x71\x7e\x0a\x83\xae\x03\x5c\x9c\xd2\x97\xc3\x08\x3b\x24\x8e\xdc\xf4\xd9\x15\x4d\x70\x33\x90\xf4\x10\x37\xf7\x25\xd4\xdf\x10\x28\x2b\xb3\xba\x47\x30\x88\x88\xf6\x0c\x71\x57\x25\xac\x4c\xde\x24\xf7\xcc\x39\x87\x41\xe8\xc1\x04\x95\x54\xd1\x24\x42\x54\xa1\xf4\x75\xd9\x3d\x0d\x0c\x78\xd8\xe3\x64\x59\x67\x5f\x30\x28\x5f\x7a\xc0\x24\x5c\xec\x19\x81\xdb\xe8\x7a\xe5\xf6\xc9\xb2\x40\xb5\x34\x78\xf1\xc6\x8f\x84\xad\x0f\xf9\x5d\xc4\x32\xcb\x09\x6b\xc2\xe6\x9b\x62\x28\x95\x41\x7d\x90\x4a\xf0\xe7\x9a\x30\xc2\x57\xa9\xc7\xce\xa7\xa2\x2f\x12\x9e\x4a\x9d\xfb\x59\xe6\xf5\x94\xd0\x9b\xb8\x8a\x5b\x57\xa6\x8e\x81\xba\xd3\x9c\xd9\x47\x7c\xa2\x08\x07\x47\x9c\x38\xae\x8d\x7e\x64\xc1\xf2\xce\x3e\xfb\x67\xb8\xc5\xa0\xf0\x41\xbf\x57\xdb\xd7\x97\x04\xbc\xcf\x8e\x55\x2e\xcf\x25\x64\xc9\xde\x39\xad\xbc\xb2\x92\x50\xab\xb0\x4d\xef\xc0\x64\x09\x3b\x1a\xf3\x2b\x69\x7a\x23\xc1\x26\xa6\x33\x52\xae\xf9\x3a\xa1\xcd\x60\x81\xce\x7f\x25\x40\xec\xd3\xd4\x84\x49\xbc\xed\xcd\x49\xaa\xb4\xd8\x41\x10\xaf\xbf\x73\x43\x88\x6d\x2a\x41\x37\xfa\xe2\xb3\x90\x3d\xa1\x84\x99\x1c\xdf\x0f\xc9\xcb\xbc\x20\x78\x64\x9d\x0a\xa6\x49\x30\x6b\x64\x8c\xff\xc3\x69\x5e\x8f\xcd\x1d\x17\xee\x12\xd8\x97\xce\x1b\x8c\x7e\xf0\x2f\x1c\xd8\xea\xf9\x1a\x16\xdf\x27\x84\x34\xfe\x6a\xfc\xaf\xfc\x0f\x4f\xb5\xa7\x96\x24\x25\xd9\x13\xf6\xdc\xcb\x8f\xea\xe3\x4b\x25\x0c\xbc\x17\x1e\x38\xfd\xed\x0a\xa1\x2f\x21\x58\xda\x30\xdd\xef\x9f\xb2\xf9\x77\x9b\xce\xe1\x33\x5e\x04\x9d\x23\x7a\xcc\x98\x70\x18\x01\x4b\x3e\x3c\xbd\xf0\xa2\x8d\x81\x5d\x63\xd8\xbe\xa6\x85\xef\x09\x07\xc7\x6f\x89\x0f\x2a\x74\x10\x8a\x56\x5e\x5d\x64\x25\xfe\x99\x10\xf0\x67\xa4\x8e\x33\xed\x3d\x61\xa8\xf1\x43\xf7\xb7\x69\x9d\x04\xf3\x83\xc3\x5d\x0e\xe5\x6d\x84\xac\xea\xe2\xee\x81\xc9\xb2\xce\x3a\xec\x05\xeb\x66\x3f\x81\x3f\xa2\x7d\x4d\xce\x99\x2f\x84\xcd\x53\x3e\xf0\x4e\xdf\x3c\x44\x18\x73\x18\xd7\x3d\xca\x9f\x4f\xb0\xb5\xe9\x59\x3f\x3a\xeb\x35\x61\x9d\x89\x9e\xd4\x0d\x91\x44\xc2\xfa\x86\x4b\x72\x7c\xf3\x6b\x08\x3e\x55\x78\xec\x11\x97\x44\x98\x77\xbb\x71\x2c\x69\xaa\x2f\xe1\xf9\x99\x86\xb8\xc3\x57\xcc\x19\x34\x5c\x54\x1c\xf7\xf2\x3f\x4d\x18\xe7\x7e\xb0\xc6\xc1\x4c\x9e\xb0\x7a\xe9\x7e\xee\x1d\x0f\xfd\x09\x5b\xf2\x54\x1e\xe6\xf7\xf4\x10\x1e\x9e\x9d\xa6\x63\x9e\x91\x4d\x98\x7f\xeb\xf5\xe6\xa5\x95\xe9\x0c\x16\xe4\x6e\x3a\x48\xe7\x42\x08\x1d\x3f\x1a\xd8\x34\x4f\xe4\x11\xb8\xa7\x51\x53\xd3\xbd\xd3\x84\x6f\x41\xef\x3a\x63\x86\x6c\x09\x0e\x75\xb6\xcd\x69\xb9\xd1\x84\x97\x6b\xc8\x4d\xc9\x3b\x85\x50\xc4\x58\xfd\x19\x5c\x77\x8c\x50\x12\xc0\x95\xf0\xf4\x86\x2a\xe1\xc7\xaa\xc4\x07\x53\x3e\xd6\x32\xa8\x4a\x10\x9e\x16\xbf\x4a\x91\xf0\x45\x65\x64\xef\x91\x87\x0c\x03\x9e\xc1\xe3\xcb\xae\x84\xae\x20\x48\x84\x6e\x5a\x74\xfb\x45\x37\xa1\x3f\x07\xc9\xaf\xcb\x5e\x10\x92\xa7\x9a\x36\x59\xd8\x95\x11\x04\xb3\xdb\x3f\x6c\xf0\x37\xa1\x71\x29\x0b\xc3\x93\x9d\xb6\x84\xa4\xb5\xc7\x1a\x64\x2d\x37\x10\xc2\xbd\x1f\x55\xea\xbd\x0c\x23\x2c\x7f\xdf\xab\x6d\x73\xa6\x87\xf5\x17\xfb\xd9\x39\x46\x32\x5c\xef\xb3\x50\x50\x6f\x3e\x2b\x7d\xe9\x57\x16\x2e\x5c\xed\x7d\xac\x68\xed\xc2\xa0\x77\xdb\xb1\x84\x9b\x49\x3f\x58\xe0\xfd\x64\x5e\x2f\x2b\xfe\xe1\x1f\xf0\xaf\xb9\x1e\x59\xbb\xb6\x86\x85\x6b\xf2\xb6\x61\x4b\xe6\x9f\x27\xd4\x9f\xec\x9a\x67\xd2\x76\x87\xa0\x71\x38\x4d\xc4\x78\xdd\x09\xc2\x13\xf9\xab\x82\xbb\x7a\x7c\x19\xdc\x0f\x37\x3f\xb6\x66\x9d\x10\x21\xd0\xb5\x6f\xd7\xc7\xc5\xcb\x09\x9d\xfb\x2d\x8f\xe4\xf3\xc4\x11\xa2\xf9\xca\x73\x9d\xd2\x7c\x08\x0b\x4e\x74\xaf\xe4\x1e\x0a\x27\xe8\xee\x96\x73\xff\xc3\x32\x21\x1c\x7b\x6d\x11\x24\xda\xaa\x42\x38\x97\x18\xf8\xc6\x55\xda\x92\xe0\x1a\x55\x5b\xcb\xfe\x30\x89\x01\x8f\x7f\xfa\xd1\x4f\x9f\x4a\x19\x14\x0d\x88\x70\x0e\x9a\x74\x31\x70\x5c\xf5\xf6\x68\x90\x88\x2a\xe1\x78\x40\x64\xb0\x7c\x9c\x1a\x41\xa7\x78\x62\xe5\xd2\x3d\x92\x84\xaa\x6b\x5f\xb6\x65\xcb\x6e\x24\x14\x36\xb4\x5d\xb9\x55\x23\xfa\x0f\x72\x04\xf4\x95\xbd\xac\x87\x59\xe8\x10\x5f\x96\x7c\x7e\x34\x8a\x30\x2e\x55\xba\x76\xe2\x41\x28\x41\x32\x3c\xe4\xf7\x8f\x49\xdc\xa9\x14\x5e\xa2\x6c\x65\x45\xf0\xff\x6c\xdb\x70\xe3\x08\x43\x88\x4d\xe2\x4d\x7f\xd0\x9e\x4f\xe0\xe5\x29\xda\x3f\x3b\x24\x9d\x50\x92\xb2\xef\xc3\x6f\x8d\x52\x42\x4d\xbb\xfc\x0b\x57\xa5\x7c\x42\xf5\xcb\xfe\x43\x1b\x97\x76\x11\xee\xcc\x16\x94\xd4\xda\x55\x48\x30\xdb\xfe\x3a\xbc\x7f\x4f\x03\xa1\x47\xee\xa4\xc2\xf0\x44\x2a\xc1\x25\xef\x36\x97\x49\x9b\x3b\x41\xf7\xac\xb0\xe1\xb7\xa1\x66\xc2\xfa\xbb\x2c\x67\x7f\x0f\x47\x42\x4e\x8b\xa8\xbe\x41\xd6\x45\x06\x62\x17\x94\xe6\xcb\x64\xe5\x10\x94\xee\xb4\x7d\x58\xb5\x39\x9a\xd0\xfc\xd1\xf9\x71\x71\x63\x02\x41\x3b\x69\xc9\xf7\x27\x1a\x0c\xc1\x61\xdb\x8f\x1f\xcf\x4d\x93\x08\xf1\x19\xa1\xe5\x71\x7d\x81\x84\xb8\x4e\xbe\xd2\x78\xc7\xa3\x84\xac\x77\xe9\x43\xbd\x3d\x8a\x84\xc4\x47\x23\x55\x6e\x27\x6c\x09\xaf\x2a\x23\x24\x36\x9c\xa9\x9e\xfc\x77\x2e\x32\x2b\x38\x78\x98\xc0\x78\x8b\x59\xbf\xf2\x5a\x48\xf0\xd9\x37\x2b\xf1\xc6\x4c\x03\x42\xff\xaa\x2d\xc2\x62\xe2\xcb\x09\x4b\x8b\xae\xb4\x4d\x9d\xd1\xcb\x42\x85\x7e\x75\x3c\xc7\xb9\x45\x04\xf5\xbd\x3b\xbe\x1e\x14\xfe\x48\xe0\xd5\x4a\x1f\x78\xf2\xbc\x84\xf0\xb1\x22\xa9\x7e\xa1\x50\x11\xe1\x81\x5d\xe2\xfd\x7b\x0b\x6b\x19\xac\x9f\x28\x3c\x36\x1c\xdb\x43\xc0\x82\xa4\x87\x7b\x3f\xf6\x10\x24\x65\x58\x02\x73\xb7\x30\x84\xb3\x5a\x7b\x16\xf6\xb3\x8a\x08\xb1\xcd\xa1\x4b\x0f\x85\x64\x13\xbc\x9e\x37\xcc\xbd\x94\x5b\xc5\xa0\xe2\x4d\xeb\xf4\x57\xfd\xae\x04\xcd\x86\x9f\x27\xd7\x5d\xaa\x66\x10\xa0\x6a\x6b\x3e\xfd\x4a\x34\xa1\xc0\x41\xb9\xe0\x80\xe2\x72\x06\x3e\xf2\x65\xd7\xa7\x5d\xcd\x65\x21\xa8\xe1\x4e\xd8\xd9\x39\xa5\x0c\x6e\x1b\x5d\x99\xea\x11\xbc\x8d\xfe\xe2\xa1\x99\x56\x71\x90\x69\x63\x1e\x58\x77\x7b\x8e\x16\x27\x06\x13\xd6\xdf\x31\xef\x9b\xc2\xaf\x46\x90\xd9\xb0\xe4\xb9\x88\x16\x0f\x61\xe6\xea\x6e\x41\xc5\xc7\x96\x84\x47\xfc\x7f\xac\xd7\x0d\x76\xff\x53\x56\x4d\x59\x2b\xe3\x92\x2b\x40\xc8\x7d\xc0\x76\x33\xcc\x35\x81\x41\x99\xc8\x13\xa9\x2b\x75\x93\x77\x9d\x9e\xc4\x0f\x33\x0e\x22\x04\x2f\x2d\x75\xfa\xfa\xe9\x18\x21\xe4\x62\xf5\x74\x07\x0d\x05\xc2\x13\xf5\x69\x5c\x32\x55\x7e\x84\x48\xb7\xcd\x6c\x19\x3c\x1e\x84\xc6\xd6\x1c\xb5\x67\xaf\x2e\x31\x50\x31\x3a\xf1\xc0\xc9\xc4\x87\x90\xba\xbc\x2f\xdc\xae\xb2\x8b\x41\x7b\xd1\xb8\xc2\xfe\x8f\xd7\x08\x31\xb3\xb7\x3f\x37\x39\x75\x8d\xc1\xed\x94\x2f\x86\xa7\x28\x96\x50\xb0\x99\xdb\x82\xc3\xfe\x14\x41\xe8\xed\x86\xce\xfb\x1c\x6e\x84\x27\x8a\xbf\xd9\x9c\xdc\xf5\x09\x5b\x2f\xf0\xec\xe7\x4f\x5e\x4e\x98\x2d\xe8\x75\xe3\xd4\xe7\x3f\x84\x69\x1d\xcb\xde\x54\x9f\x8a\x26\x44\x1e\xbc\xec\xf7\xb3\xc6\x83\x90\xf2\x63\xc9\x81\x32\x57\x4b\x42\x5f\x23\x89\x25\x6e\x7a\x40\x30\xad\x0d\x95\x4a\xc8\xba\x4d\xb0\xd4\x3b\x7b\x96\xbf\x59\x83\x70\xa1\xed\xfe\x54\xe6\x98\x30\xa1\xf8\xdc\xad\xed\x35\x4b\xc4\x09\x1f\xcf\x1c\x3a\x15\xb3\x53\x88\xc0\x9b\x25\x7d\x2b\xf9\x7d\x28\x83\x6f\xce\x73\xe8\xdb\xb2\xb5\x84\xa2\x0b\x03\x81\x92\x67\x02\x08\x62\x8d\x6b\x73\xf8\xb7\xea\x12\x7a\xce\x2b\x94\xce\xbd\x7c\x88\xd0\x7c\xf4\xb6\xd6\x6b\xa3\x5b\x04\xe6\xf6\xa1\xc2\xb8\x90\x0c\x06\x56\x67\xe5\xe7\x5d\x59\x73\x8a\xf0\xfe\x75\xd8\xe9\xd6\x4f\xa1\x04\x55\xbd\x87\x99\x6a\x6c\xd7\x09\x36\x7d\x3e\xfc\x62\x2e\x81\x04\x85\x85\xec\xdb\xb4\x22\xed\x08\x0b\xdf\xf5\xd4\x77\x66\xa4\x11\x7e\x69\xf9\xbe\x7f\x2f\xcc\x10\x7e\x5c\x89\x78\x3f\x4b\x7e\xf2\x4a\xb1\x34\xbb\xb9\xca\x23\x82\x20\x35\x9b\xff\xfa\x83\xc1\x7e\xc2\xea\x87\x77\xdf\x4f\xeb\xab\x26\xb0\x15\x86\x79\x0a\x8c\x6d\x22\xac\x65\x3b\xf0\x75\xef\xb0\x05\x41\xa7\x43\xb4\x36\x2a\x72\x1f\xa1\xbf\xf8\xe0\x78\xea\x96\xdd\x04\x3e\xcf\x05\x3a\xcf\x4b\x05\x09\xb7\x1c\x7e\xdc\x5e\x99\x6c\x47\xb0\x13\x9c\x52\x92\xb7\x36\x90\x60\x30\x4b\x51\x7c\x53\xb1\x38\x21\x83\x97\x43\x94\xbb\xd1\x9e\x60\xb0\x63\x62\xd7\x05\x56\x3a\x03\xc3\x03\x4d\x82\x47\x3e\x0f\x11\xa6\xce\xe8\x56\x89\xb2\x67\x08\x95\x33\x9b\x67\x19\xbe\x31\x20\x04\xf4\xaf\x7c\x2e\x9a\xf2\x87\x85\xc3\x49\x02\x53\x77\x2e\x5e\x45\x70\x7b\x10\x56\x3d\x4b\x6b\x11\xc1\x92\x79\xd3\xb1\xaf\xac\x84\xf0\xed\xb3\x84\xdf\x1e\x9d\x6b\x04\x37\x1f\xaf\x10\x6f\x2d\x03\xc2\xd0\xd4\x31\xc3\x73\x69\xf3\x08\xf1\x2f\x2d\x3a\x3c\xca\x9d\x08\x07\x4c\x2a\xef\x71\xb4\xa6\x10\xde\x79\x72\x57\x2d\xbf\x59\x4e\x78\xcc\xd3\xa0\x3b\xfe\xa1\x99\x60\x20\xab\xc6\xad\xeb\xf3\x86\x30\x77\xe4\xc9\x58\x57\xc1\x30\x41\x23\x62\x97\x40\x73\x4a\x11\xa1\xf7\xee\xa6\xeb\x37\xce\x36\x11\x62\x95\xa3\xd7\xec\x8f\x78\x49\x08\x5b\xac\x6f\xe1\xa7\x33\x79\xfc\x7c\xea\x1f\xd1\xe5\xaf\x09\x65\x19\x5b\x42\x79\x16\xbc\x24\xfc\x94\xe9\x12\x14\xff\x73\x8f\x90\xa3\xcc\xe6\x77\xfc\x9a\x2a\x41\x33\xca\xc5\xa6\xd2\x27\x90\xc0\x1e\x72\x7f\xad\x65\x7a\x26\x21\x44\x63\xeb\xe9\xc2\x19\x03\x84\x44\xf1\xbd\xcf\xcd\x27\xcb\xfe\xce\x87\x85\x26\x93\xf0\xce\xfc\xc8\x7f\xe5\xd2\x31\x82\x20\xbb\xe0\x90\x16\x47\x10\x03\xaf\x87\x9f\x6e\x0d\xb8\x5f\x26\x14\xe7\x4e\x8b\xd4\x9b\x11\xf0\xcf\xce\x99\x05\xbf\xd6\x58\x1d\x5c\x44\x18\xe6\xde\xcf\x1b\xaf\x5b\xc6\xc0\x66\xf9\xcf\xbe\x97\xb5\x59\x0c\x7e\xba\x7d\x1c\xe4\xfb\xec\x48\x18\xbe\x70\xe4\x95\xcd\x8e\xbd\x84\x6d\x1e\xdb\x55\x79\x72\x19\x06\x27\x84\x9f\x54\xdc\x4e\xba\x4c\xb0\x8e\xd3\x76\xb6\x1f\xdd\x49\x98\x3b\x7d\x81\x8f\xb5\xc1\x69\xc2\xbd\x6b\x73\xbf\xbd\x5f\x35\x3d\x1f\x7c\xe6\x3f\x4e\xcb\x5d\x7d\xcd\xa0\xaf\xa5\x54\x2f\xbb\xbd\x9f\xb0\xa2\x60\x56\x4c\x7c\x48\x3d\xe1\x5b\x79\x55\x3f\xab\xba\x86\xc1\x89\xe6\x2b\x39\xd7\x6e\xb8\x12\x9e\x0d\x46\x1c\x88\x4e\x7d\xc5\xe0\x9e\xe7\xcf\xbe\xa3\xdf\xda\x19\xe8\x7c\x6b\x6a\x90\x7b\xfc\x96\xa0\xd6\x75\x61\x90\xcd\xfe\x35\x83\x5b\xac\x20\xc5\x46\xeb\x9f\x2c\x6c\x5a\x0d\x67\x85\x31\x77\x42\xd9\x97\xa1\xba\x75\x8e\x77\x09\x6b\xc2\xcf\xef\x8d\x4b\xec\x64\xe0\x7e\x42\x34\x52\xad\xf2\x11\x03\xe1\xb9\xdb\x64\x8f\xf8\xb8\x13\x5e\xee\x16\x11\xe9\xfe\xe6\x4e\x18\xff\x51\xdc\x6c\xbe\x2d\x87\x70\xdb\xf2\xa3\xa9\x0c\xb7\x0b\xa1\xfc\xe0\x72\x69\x1b\xb3\x3b\x84\xba\x9f\x65\x59\x5a\x9a\x7a\x04\x9b\xea\x4c\xd3\xd8\x39\xce\x84\x33\xc5\x0a\x2a\xc2\x99\x47\x09\xc3\xaf\xef\x4d\xab\x8c\xdc\x40\x50\x9d\xed\x73\xa1\x2c\x64\x13\xc1\x23\x20\x7c\x73\x62\x67\x27\x03\xe9\xee\x9e\x2f\x38\x5e\x4d\x18\x2d\xe0\xf8\x61\xad\x5a\x9e\x07\xf9\x23\x2f\xe6\x37\xf2\x8e\x13\x54\xf4\xef\x54\x7b\x6b\x26\x11\x62\x3a\x44\x7b\x16\x26\xe7\x13\x7a\x97\x5c\xcd\xfe\xaf\xcc\x50\x12\x3e\xf8\x72\xad\x2a\xe1\x69\x4a\xec\xbd\x43\xdd\xfe\x84\x3b\xd5\x11\x3f\xf9\x78\xaa\x09\xcb\x7f\x46\xf4\xe8\xf1\x3c\x21\x9c\x2e\x63\x2e\xa6\xe8\x67\x13\x92\xf7\x8e\xf3\x3c\x3d\x9e\xcb\x80\x79\x64\xfc\x79\x62\xfb\x47\xc2\x63\x59\xf3\x2b\x27\xad\x1b\x09\xd1\x7a\x0a\xaf\x7e\xc7\x04\x10\x7e\x3e\x3a\x31\xe5\xc3\xf3\x54\xc2\xca\xa1\x8a\x25\x57\xdf\xdf\x27\x0c\xcf\x90\xfe\x15\xe4\x5b\xc2\x20\xba\x40\x93\xbe\x57\x54\x13\x9e\xb1\x57\x71\x7c\x48\x4b\x22\x48\xb8\xf9\x86\xc6\xc6\xbf\x24\xbc\xe2\xd6\xbd\xf6\xdc\xe4\x1c\x61\xd5\x12\xf5\x9a\x4f\x86\x47\x18\xa8\x77\x57\x18\x74\x7c\xb5\xf8\x67\x34\x27\xdc\xf5\xe1\xd7\x00\x4d\x42\xf1\x8c\x95\x4b\xba\x77\x14\x12\x16\x19\x18\xce\x54\xca\x28\x20\x90\xc8\x7c\xb3\x69\x1b\xfc\x09\x35\x1d\x7c\x4d\xe6\x37\x47\x09\xb9\xec\x57\x06\x1b\x76\x0c\x12\xec\xae\x4b\x20\xc2\x3b\x81\xa0\xa4\x53\xe2\x9c\x95\x5c\x4f\x10\x8b\x5b\x25\x34\xf2\xa0\x9e\xb0\x43\xed\xbd\x40\x95\x62\x3e\x03\x75\xad\x45\xda\x94\x98\xca\x60\xd7\xe8\xa2\x97\x2b\xcb\x6b\x09\x52\x47\x75\x7f\x7b\xb9\xf8\x32\xc8\xd9\xf6\x43\xc7\xc5\xc0\x80\xa0\x27\x55\x7e\xab\xac\x75\x2b\x03\xbe\x96\xa3\xe7\x59\x11\xd7\x09\x3b\x97\xcc\x0b\x6d\x58\xf4\x84\xfe\xee\x1c\x9c\x2b\x39\x45\xfa\x8e\x2a\xe1\xfd\x9b\x22\xc8\xb4\x5a\x10\x56\x87\x24\xd4\xeb\xb1\xb6\x30\xc8\x69\x6a\x59\x39\x1e\x21\x41\xb8\xfa\xa0\x69\xd1\xf6\x19\x9b\x08\xad\x2f\xdb\x5f\xe4\xa7\x4b\x12\xb6\xbe\xf9\xf4\xf1\xde\x4b\x45\x42\x79\xd5\x01\x1f\x11\xf6\x3d\x84\xcd\xe1\x8f\xdf\x26\x96\x3d\x21\x74\xb2\xcb\x24\xad\x72\x8f\x24\x48\xd9\x4a\x7a\x99\xbb\x0f\x11\x0a\x26\x94\x87\xd7\x4c\x96\x84\xb1\x64\x37\x8e\x81\xbb\x0c\x1e\xb5\xae\x08\x16\xac\x77\x26\xb0\x7f\xba\xcb\x2e\xb9\xc9\x97\x30\x91\x60\x2d\x94\x73\xdc\x85\x40\x15\x76\x4d\x07\x4d\x74\x19\xc0\xf2\x95\xbf\x9f\x88\x0b\xe1\xd4\x89\x89\x8c\x8c\x8d\x51\x84\x0d\xd2\x9f\x2a\xb3\xd9\x43\x09\xb2\x37\x56\xb6\x44\x56\xfc\x64\x41\x26\x72\x7b\xc9\xef\x9a\x39\xf4\x17\x6c\x7e\x19\xeb\xa7\xbf\x19\x64\xfd\x85\xa7\xeb\xe3\x7d\x5e\x45\x16\x04\xfb\xa3\xa3\xfd\xf6\x0e\x83\x2c\x8c\xf8\xf1\xf5\xf6\xc9\x14\x30\x7f\xcb\x01\x91\x86\x80\xbb\x45\x2d\x79\x50\xda\x32\x6d\xf3\xb9\x9d\x0b\x08\x06\x5a\x25\x47\xad\xfa\x62\x09\x7d\xb2\x23\x36\x9f\x7e\xa6\x32\xa8\xeb\x6c\xc8\x3b\xde\xd2\xca\x20\xbb\xfa\x1b\x97\xd9\xe4\x28\x5d\xcf\x51\xe7\x6c\x36\xc3\x60\xef\x95\x55\xe2\x6d\xa9\xe9\x84\x33\x8a\xfe\xcf\x8f\xea\xcb\x11\x92\xbe\x14\x87\x6e\xdb\x3f\x87\x10\x76\x32\xb0\x3a\x43\xda\x88\x70\x59\xfb\xc3\xd5\x1d\x12\x25\x0c\x9a\x3e\x1f\x7e\x6d\xf2\xb6\x89\x60\x2d\xf6\x59\xe0\xbf\xd1\xe7\x71\xe5\xf7\x06\x61\xa7\x09\xbb\x82\x16\x09\x2d\x4f\x39\x45\xc8\x73\x4a\x59\x3e\x78\x75\xcf\x3f\x10\xaa\xf3\x68\x68\x5e\xda\x9f\x87\xd8\xb7\x02\x1b\xb8\xa7\xc5\x12\x4c\x4d\xcd\xef\xd9\xec\x79\xc7\xc2\xae\x97\x03\x1c\x66\xb7\x4c\x09\x9b\x5e\x27\x74\x55\xc4\x6e\x22\x8c\xb1\x65\xf5\x6d\xdb\x31\x8d\xb0\x23\xcd\xfd\x53\x00\x89\x13\x5e\x19\xa9\x84\xcc\xbd\xff\x84\x81\xdb\xdb\x84\x8b\xe6\x2f\x0d\x08\x7b\x13\x2e\xad\xf7\x96\xb1\x22\x64\x04\xaf\xd8\x99\xcf\xd5\x40\x68\xf1\x9d\xa5\xbd\xcc\x46\x9d\x30\x73\xfb\x3a\x49\x8b\x13\xf6\x0c\x6e\x15\x7f\xd5\x2a\xee\x54\x26\x28\xdc\xbb\x99\x31\x9d\xcd\x82\xa0\x6f\x53\x94\xfa\xe6\x9b\x11\xe1\xd2\x3e\xcb\xfc\x70\x6b\x7e\x02\x47\x78\xf3\x75\xce\xee\x20\x42\xf7\xd7\x0f\xac\x56\x7d\x5d\x42\x48\xd8\xa1\xaf\x0f\xdf\x59\x11\x54\x17\x0c\x9c\x3a\x79\x30\x9f\x81\x74\xaa\xa9\xbb\xac\x90\x25\xa1\xfc\xe1\x83\x13\x87\xca\xae\x13\x34\x57\x55\x27\xbc\xed\x4f\x65\xf0\xdd\x35\x57\xb8\x29\x4b\x87\x10\x72\xb3\x64\x60\x4e\x74\x34\x21\x47\xf3\x16\xff\x81\xae\x6d\x84\xf4\x40\xb3\x62\x2d\x13\x2d\x82\x6c\xa2\xbd\x4e\xbd\xbb\x0d\x41\x8d\xff\xf2\xec\x43\x1d\xe6\x84\x6b\x97\xde\x5c\xb0\x34\x9b\x47\xe0\x8f\x12\xbc\x38\x71\x37\x94\x41\x8d\x76\xc2\xc9\x0d\x7e\x5a\x84\xe1\xd1\xa1\xd1\xc6\x90\x51\x16\x6a\xab\x65\x8f\x19\x2e\xea\xfc\x07\x1b\x5f\x97\xf9\x99\x71\x7c\x65\x61\x5b\xcc\xa1\xc1\x3d\x5e\xe5\x84\xdb\x6f\x9e\x0b\x71\xc6\x1f\x20\xec\xbd\xb7\xc8\xdc\xc2\xaf\x8e\x10\xf2\x6e\x6a\x07\x07\x87\x14\x41\xcf\x7a\xe8\x6a\x8b\xa3\x25\xe1\xeb\xc4\xf8\x78\xd0\x4f\x75\x42\x55\x32\x8f\x74\xc8\xcd\x27\x84\xa6\xa5\x6b\x1c\xa7\xed\x52\x22\xbc\x9f\x9a\x34\xba\x6c\xae\x26\xa1\xc6\xbc\xcb\xb8\x80\xcf\x81\x90\xb4\x20\xfd\x53\x9d\x49\x3d\xc1\xa6\x51\x7b\xfb\x32\xcd\x6f\x84\x5d\xd6\x63\x15\x2d\xe5\xaf\x08\xc5\x5b\x39\x5d\x23\xfb\xf2\x19\x24\x9f\xf9\xf1\x74\x8f\xce\x07\xc2\xa0\x60\xff\x32\xd9\x47\xef\x08\xbe\x75\x16\xdf\x46\x96\xe4\x33\x88\xd9\x7c\xd2\x55\xef\xdb\x47\x82\xea\x4d\xa1\xe9\x92\x73\xdf\x11\x5e\x2e\xe2\xa0\xae\xa0\x67\x04\x35\x7d\x7b\xe7\xcc\xa6\x62\x82\xdd\xdd\xf0\xef\x1e\xcc\x2b\x06\x41\x67\xaf\x5f\x30\xf8\xde\x4a\xb8\xbc\xda\xc6\xb7\xc0\xa5\x92\x70\x63\x5d\x86\x28\xe7\xd3\x24\x02\xe7\xfe\x7b\x25\x9b\x3d\x5f\x10\x74\x6d\xcc\x7b\x52\x96\xd6\x10\x3a\x23\xd8\x1a\x4e\x97\x7f\x66\xa0\xd0\xe8\x9c\xec\xf1\x3c\x82\x01\x6b\x6b\x65\x6c\x85\xe3\x0b\xc2\x4e\xef\x12\xbb\xf1\x3a\x2f\xc2\x68\x94\xf6\xf1\x59\xc3\xd5\x0c\xb2\x97\x7b\xb3\xad\x99\xf1\x95\x50\x98\xd0\x35\xf8\x3b\x4b\x89\x30\x5a\xdc\x93\xcb\x65\x18\x4f\x50\x3d\x3d\x5f\xf9\x2d\xe5\x11\x56\xae\x3c\xef\xd7\x34\x89\xf0\xd1\x9d\x8d\xd5\x3b\xf2\x08\xc3\x69\x77\x99\xff\x8a\x68\x7e\xf8\x37\x9b\x2d\xc7\x08\xc6\x9b\x85\x6b\x84\xd2\xd5\x09\x82\x81\xba\xb2\xcb\xec\x4d\x09\xa3\x16\x47\xe3\xcc\x24\xf4\x08\xd2\x3a\x2a\x75\xb6\xe5\x27\x09\xfe\x27\x0f\xed\x57\x6d\xbe\x4a\xa8\xaa\x39\xec\xed\xf3\xd8\x8d\x41\x03\xcf\xe0\xea\x67\x95\x35\x04\x29\xff\x4e\xa7\xf7\x93\x4f\xf4\xc4\x97\x71\xa5\xb3\x5f\x3d\x22\x2c\x9b\x55\xd8\xaf\xba\x80\x45\x68\x1c\x38\x90\x72\x59\x51\xe6\x1f\x44\xb6\xef\x75\x62\xbe\xf7\xb3\x60\xfe\xfb\xc5\x94\xe5\xd3\xf4\x09\x2a\xce\x86\x3b\xb2\xba\xc3\x09\x35\x8a\x67\x62\xf3\x8f\x2b\x11\xf6\x5f\x95\xe8\xf9\x2a\x71\x80\xf0\xe2\xe7\x2e\x5b\x95\x42\x2d\x42\xa1\x63\x86\xef\x85\x3b\x61\x84\x79\xd5\x9b\xdd\x0b\x0b\x53\x08\x8f\xe4\x6e\xf8\x4c\xc4\x87\x11\x2a\x22\xfe\x3c\x69\x5b\x7c\x92\xb0\x42\x5d\xf3\xcb\xf1\xc3\x3b\x08\x76\xcc\x75\x11\x59\x9f\x54\x82\xe4\x80\xd2\x90\x42\x57\x17\x03\xce\xf6\xd2\x25\xae\x7d\xa9\x84\xc0\x3a\xef\x23\xd1\xae\x9e\x84\x99\x7e\x56\x7b\xd2\xac\x9e\x10\x8e\x72\xc4\x1d\x0c\x6f\x28\xcd\x43\xd2\xae\x31\xd1\x99\x3b\x87\x59\x58\x87\xc3\x53\x5e\x1e\xfb\x40\xd8\xff\xeb\xe0\x5a\xce\xc9\x52\x17\x5a\xcc\xb0\x24\xdb\xf3\xfe\x42\x5e\xa9\xb2\x64\xc4\xf5\x01\xfd\xc5\xfe\x31\x99\x8c\xb3\x43\xba\x84\x7e\xcf\x7d\x6d\xb3\x47\x85\x08\x1a\x2f\xa5\xbe\xfd\xa9\x3f\x45\xc8\x6e\xf4\x08\x1c\x67\xf6\x13\x1e\xc7\x7d\xb1\xca\x5c\xdd\xca\xc2\xa6\x20\xcf\xa3\xaf\x97\x35\x32\x48\x5f\xf3\xfb\xc6\xea\x8d\xe7\x09\xdb\x3c\x25\x0f\x14\x2c\xab\x64\xb0\xc5\xef\xbb\x89\xfe\x3a\x63\x06\x8c\x8c\x14\xd3\x7b\xee\x06\xe1\xf3\xfb\xd1\x83\xc2\x27\xff\x10\xe2\x2f\x07\xde\xd8\x18\x53\xc6\x20\xe6\x66\xf2\x35\x15\xa3\x52\x06\xda\x01\x92\x9a\x8b\x83\xdb\x19\xe8\x9d\x11\xf4\xd1\x95\x8e\x20\x5c\x50\xd2\xd0\x3b\x76\x2b\x99\x41\xce\x97\x0d\x3b\x1f\xb2\xea\x08\xdb\xe7\x3c\x2a\x3d\x98\xde\x42\x10\x4a\x50\xab\x5f\x1b\x11\x48\xb8\xa9\xc3\x97\x68\xdd\x5d\x44\x38\x93\x72\x65\x9d\x66\x41\x38\xe1\xae\xf0\xb7\xb3\x87\xa5\xbc\x09\x37\xf8\x36\x68\x09\x6f\xf9\xc8\x60\xd4\xa6\xf7\xda\x6a\x6e\x6d\x42\xdf\xe5\xda\xab\xec\xab\x8b\x18\x04\xcc\x0f\x7b\xf1\xfc\xc8\x45\x42\x1d\xdb\xa1\x12\x13\x5d\x1f\xc2\x9a\x4c\x9d\xea\x89\xd1\x0c\x06\xf6\x3f\x35\x2a\xd6\x7b\xcb\x10\xe4\x9c\x5e\xfd\x7c\x27\x3d\x42\x48\x56\xf8\xa3\xfd\xd0\x65\x98\x90\x73\xd7\x54\xf6\xb4\xc4\x15\xc2\xd6\xa8\x99\x96\xaa\xab\x87\x09\x91\x82\x5c\xe1\xc9\xcd\xa9\x84\x7e\xb2\xe7\xd7\xf3\x1d\x66\x81\x33\xe4\x8c\x94\xff\x87\x55\x04\x96\x1e\xbb\x41\xe5\x9b\x2a\xc2\x36\xee\x53\x85\x0f\x26\x4b\xbc\x69\x36\x39\x2f\xb1\x22\x44\x5b\x6f\x7f\x91\x9c\xd6\xcf\xc2\x99\x9f\xa6\xf6\x8e\xf1\x1e\x84\x27\x1b\xd9\xf8\x92\x39\x0e\x10\xb4\xb1\x47\xe1\x07\xd7\x22\x82\x9c\xf8\xf8\x6c\xff\x73\x81\x84\x75\x21\x31\x9f\xe7\xef\xdf\x47\x38\xed\x9c\x67\x7d\x33\x68\x2f\x41\x2d\xc9\xe5\x7a\x90\xa6\x31\x61\xc9\xdc\xcd\x07\x7b\xc2\xae\x10\x1e\x89\x5a\x79\xc4\x29\x09\x10\x66\x68\x3b\xe9\xcf\x8b\x0b\x23\xb4\x9f\xbd\x13\x15\x61\x9c\x4f\x78\xfb\xcb\xc3\xed\x05\xb5\x10\x06\x0e\x7e\x9c\x95\x98\xf6\x8a\x70\x3a\x97\xaa\xce\x9e\x50\x27\xb4\x29\xb2\x2f\x39\xf5\xeb\x2b\x0b\x2b\x83\xd7\x9b\xcd\xbb\xa8\xce\xe0\x97\xdc\xb5\xc3\xc9\x17\xf6\x11\xf6\x3c\x69\xcc\x8c\x7f\xd0\x4c\xd0\xb9\xcd\xf6\x26\xd2\x60\x31\x83\xaa\xa3\x69\x0d\x9c\xd1\xfb\x08\x27\x17\xf6\x76\xce\x61\x14\x09\x75\xdf\xca\xa3\xb6\xce\x88\x66\x10\xb1\xa9\x86\x7f\x36\xdf\x21\x82\x98\x87\xfa\xdd\xd2\x61\x3d\x06\x5f\xdf\x1c\xd8\xe8\x6c\x68\x41\xd0\x0e\xb6\xdf\x11\x6e\xd1\xcb\x40\x64\xd7\x7c\x21\xd7\x53\x57\x09\xac\x59\x7c\x01\x31\xa5\xcb\x08\xd3\xa6\xfb\xa8\xfb\xbd\x5e\x49\x38\xc8\x5e\x30\x52\x2b\x2e\x41\x70\x5c\xf6\xfb\x40\xbf\xcc\x26\xc2\x9f\x4b\xfa\x8a\xbb\x1d\xb6\x11\xa2\x45\x36\xbe\x39\x2a\xb1\x84\x60\x9f\x17\x5e\x59\x77\xb2\x90\x10\x97\xf0\x72\xb0\x70\x58\x93\x10\xf9\xfb\x6c\xc6\x7e\xba\x42\xa8\x1f\x9a\x61\x71\x4d\x30\x85\x90\x3a\xdb\x2e\xe3\x6c\x41\x19\xe1\xee\xa8\x4c\x5a\x55\xd0\x29\x82\xcc\xca\xe2\xd3\x09\xcf\x3c\x19\x84\x5c\x3a\x3b\x52\x90\xb4\x9e\x60\xf4\x4b\xe3\x57\xfc\xd7\x6a\x06\xe9\xe6\xb7\x4c\x96\x79\xbd\x24\xe4\x7f\x4d\xdc\xbe\x4e\x78\x98\xe0\x15\x2e\x2d\x66\x34\x25\x87\xb0\x99\x37\x76\xc1\x9e\x85\x03\x04\x1b\x5d\x35\x51\xd5\xd6\x46\x42\x6f\x47\xe0\xea\x0b\x62\x69\x84\x88\x99\x66\xdb\xdd\x3a\xac\x08\xa6\x03\x39\x6e\xdd\x6e\xfb\x09\xa2\xc9\x1d\xc9\x9f\x1a\x1c\x99\xf1\xaf\x57\x35\xe1\xb5\x94\xc0\xbb\x09\x69\xad\xc7\x53\x09\x97\xcc\x1e\x97\x75\xab\x24\x10\x6e\x87\x8a\x84\xf6\x4f\x7f\x4e\x08\x5e\x2c\x32\xde\x36\x39\xfa\xa5\xab\x23\xba\xce\x2b\x8a\x60\xfb\xce\x45\xe9\xd8\x23\x39\x82\x6f\xc7\x07\x8b\x6d\x3c\xa5\x0c\xce\xf2\x9e\x28\x7f\x73\xa0\x84\x10\x5b\x24\xfb\x2a\xff\x2e\xc3\xe0\x65\xd9\x9b\x2e\xd3\xfa\x12\x06\x51\x99\x27\xd2\x2a\x27\x47\xad\xf9\xd5\xc5\x67\x17\x58\x30\xb0\xcb\x0e\xb6\x4d\xb4\x73\x65\x20\xce\xff\xc1\x7b\xeb\xa8\x0d\x41\xf6\xf4\xef\x05\xbf\x22\x2d\x18\x78\x06\x5a\xef\xf3\x0d\x32\x20\xac\xde\x72\x69\x9e\xe3\xf5\x60\x06\x9e\xe3\x09\x42\xdc\x0e\x2b\x09\xab\x2c\x14\x24\x7d\xaf\xf2\x13\x6c\x4f\x55\xfd\x2e\x50\x55\x23\x18\x5a\x2d\x4d\xa8\x92\x79\x41\x90\x37\xb6\x1e\xd3\x3e\x2c\x4d\xf0\x3e\x20\xd4\x5c\x7f\x28\x89\x30\x38\x3d\xcd\x5f\xa5\xb8\x88\xb0\xc2\xfa\xe6\xb9\xff\x20\xf3\xcb\x3f\x52\x5a\x27\x9d\x20\xad\x3c\x77\x59\x7b\x4e\x26\xf3\x17\xce\x91\xe1\x4e\x37\x45\x92\xf3\xb0\x7a\xfe\x7b\x8e\x77\x93\x65\xba\xb8\xdd\x16\x73\x25\x29\x02\x97\x3f\xf7\x85\x4d\xf1\x57\x08\xd9\x7e\xf5\xac\x93\x1f\x5b\x19\x0c\x67\xc7\xf3\xae\x0f\xc8\x62\xf0\x68\xf7\xb1\xd0\xb5\x93\x58\xf4\xe7\xe5\xd4\xe8\xdb\xa9\x0c\x8c\x17\x26\x0f\x68\x7d\xfe\x4a\xb8\x17\x2b\xb5\x69\xf5\xe4\xe8\xc1\xb3\xdd\x76\xad\x9f\x5e\x31\x38\xb8\xaa\xd4\x39\xa1\xa5\x97\xa0\x1a\x3e\x6f\xdd\xc1\x12\x03\x82\xb3\xcf\xac\x79\x1f\xaf\x8e\xb1\xe0\x2f\x97\xe2\xdb\xd9\x59\x44\x70\x88\x70\x93\x29\xf8\x55\x44\xf8\x71\x5c\x65\xc5\x57\xb3\x59\x04\x83\xd2\x4b\x21\x1a\x5f\x24\x08\x57\xac\xd2\xdf\xa6\xee\xcf\x22\x1c\x95\x5f\x1f\xf7\x38\xb0\x80\x60\xcf\xf9\x6d\x7c\x4a\x64\x34\x61\x15\x47\x7e\x31\x4f\x40\x34\x61\x6b\xaf\xb3\xe8\xe8\xb3\x28\xc2\x7b\x35\x8f\x13\xbf\x32\x43\x09\x2b\x5a\xdd\x1d\x57\x2b\x68\x10\x4c\x9e\x9d\x38\x2b\x9b\x10\xc6\x40\x90\x6d\xae\xd9\xdc\x1e\x2e\x39\x28\xb6\x68\x77\xe8\x4d\xcf\x24\xdc\x29\x52\xdd\xb4\xfa\x76\x07\xc1\x26\x95\x6b\x8f\xee\x64\x61\x9a\x0c\xa2\x4c\x17\x8f\x11\x8c\x2e\x70\x78\x25\x6a\x06\x10\xe2\xbf\xda\xed\x3b\xf1\xf2\x1b\x61\xf5\xa5\x6f\x31\x66\x62\x0f\x08\x7c\x1b\x39\xf7\x84\xda\x4f\x97\x83\xa5\xaa\xcf\xbd\xc3\x93\x17\x88\xd1\x02\x3f\xb3\x0f\xdd\x19\x0c\x38\xcd\x7a\xbe\xff\x57\x5c\xf7\x3e\xf3\x3e\xb2\xd2\x84\x70\x99\xfb\xcc\x85\x45\xcf\x5b\x08\x6a\xa6\x25\xdf\x05\x1e\x0e\x13\x16\x07\xee\x5a\xb3\x60\xeb\x27\xc2\xd9\x75\xdd\xd2\xb9\x9a\x2f\x08\x65\x3e\xb6\x65\x53\x26\x8b\xb5\xbd\xdb\x1a\xf1\xfb\x21\x84\x5b\xcb\x0b\xef\xeb\x99\xb4\x10\xbc\x95\x9d\x79\x9a\xea\x1f\x12\x46\xc7\x5c\x3b\xc5\x9f\xbe\x22\x1c\x9c\xd9\xfe\x5b\x74\x12\x13\x77\x3d\xbc\x44\x26\x21\xa6\x3b\x4d\xd9\x3d\xec\x24\x61\xff\x54\xbd\x3a\x87\x49\xa4\xbf\x58\xb4\x94\x3d\x29\x84\xb0\x71\x59\xac\xfc\xa1\x76\x47\x42\xda\xc5\x48\x3b\x7b\x36\xdd\x7f\x76\x58\x01\x8b\xad\xf3\xfa\x8c\x09\xef\xa7\x29\x7b\x2e\x4c\x3a\xff\x0f\xa4\xb2\x78\x9c\xf2\x5a\xdd\x08\x5e\x09\x67\x0c\x6f\x14\x3e\x20\xbc\xdb\xdf\xd3\x1e\x1d\x5d\xc4\xc0\x45\x5f\x4f\xa5\x6e\xc0\x80\x90\xef\xa1\x34\x6b\x4d\x9f\x3d\x03\x7b\x97\xb5\xfd\xc2\x1c\x15\x84\xd4\xc5\xa7\x2d\xaf\x86\xd7\x12\xa6\x9a\x1c\x91\x58\x36\x59\x94\x36\x3b\x87\x30\x3f\x73\x08\x1d\xef\x32\x4d\xda\x39\xec\x09\x7b\x6c\x9e\x49\x2a\xd5\x2f\x27\x28\x89\xdc\x3e\x9c\x2c\xbf\x8c\xa0\x42\x36\xab\x34\x7e\xb4\x12\x72\xd6\xf7\x2b\xe8\x95\x97\x12\xfa\xfa\xe6\x7e\x48\xd6\x6f\x20\x2c\x96\xd0\x6d\x3a\xbe\x27\x99\x70\x75\xe7\xe1\x7c\xf6\x90\x38\x82\xed\x6b\x91\xa4\xe2\xfc\x58\x42\x74\xce\x8a\xb7\xb7\xa2\x0c\x08\x3b\x12\x33\x32\xe2\x3b\x7d\x09\xca\x55\xa9\x9f\x86\x0b\xc7\x58\x58\xce\xe1\xf6\xc4\x7f\xb1\x08\xfd\x1f\xe8\xd4\xe6\x5d\xd9\x14\x71\xf1\xff\x1b\xa4\x0c\xcf\xfc\x19\x1b\xb1\xf9\x7f\x22\xe2\x82\x53\x66\xc6\xe4\xef\xb9\x87\x99\x58\xcd\xa1\xac\x48\xb0\xaf\x7a\x7d\xe6\x5e\x6e\x1c\xa1\x33\xd4\x4a\xaa\x34\xaf\x8a\xc0\xb9\x52\xd7\x66\x51\xe6\x5b\xc2\xc2\xd5\x6b\x85\xcf\x85\x46\x13\xda\x13\x0f\x8f\x14\x4c\x7b\x4b\xc8\x38\x53\x6e\x5d\x32\xb9\xe3\xe4\x3f\xcb\x47\x7a\xcb\x79\x82\xa0\xf8\x9e\x92\xe3\x8b\x6e\x33\x28\x78\x60\x74\xa3\xc7\xbc\xe0\x9f\xd1\xff\x70\xec\xe6\xf9\x54\x19\xf7\x8b\x84\x83\xcc\x93\x33\x5c\xc2\xcd\x84\x8c\x3f\x4b\x6f\xb6\xb8\x34\x10\x52\x5b\xb6\x5b\xbc\x9f\x99\x42\x48\x79\x78\x7c\x65\xfd\xaf\x4f\x04\xcf\xd8\xe0\x8a\x85\x6a\xea\x84\x3d\x3f\x47\xd9\x6d\xa3\x22\x19\x2c\x73\xd5\x14\x5e\x27\xe8\x4a\x38\xd9\x00\xd9\x14\x75\x4d\x82\x68\xff\x42\x97\x1d\xeb\x92\x08\xdc\x7b\xc3\x76\xad\x1a\xde\x45\xb8\xdc\x76\x68\xbe\x43\xac\x2d\xa1\xfc\x87\x73\x6f\xf1\x02\x0b\xc2\x09\xc7\x21\xa3\x3f\x9c\x25\x0c\x12\xfd\x02\xa7\xd0\x9c\x2c\xc2\x40\x57\x42\x92\x2d\x4f\x16\x61\xdf\x36\xe9\xa7\x49\x1b\x1c\x08\xec\xac\x69\x8b\x82\x64\x6b\x19\x0c\x4d\x1f\xd8\xd3\x14\x67\x47\x10\x94\x6c\xa3\xa8\xb9\x5f\x59\xd0\x5f\x25\xaf\x3f\xea\x7e\x93\x80\xc5\xea\x9e\xa7\xcd\xb5\x08\xfc\xa4\x52\xfc\xe4\xcd\x25\x06\xea\x1f\x23\x5b\x56\x95\x4b\x12\x7e\x65\x67\x74\x2c\x4c\xbf\x4e\x28\xdc\x95\xba\xa7\x69\x4d\x28\x83\xb7\x25\x27\x56\x06\x69\x32\x84\x46\xed\x4f\x6f\x1d\x43\xb2\x18\x68\xda\xea\x1e\xbe\x37\x59\xf2\xb5\xb9\xbe\x05\x4f\x62\x7a\x77\xc3\x7b\x96\x7f\x1c\x83\xba\xee\xe5\xe9\xe7\x76\xf4\x33\x38\x14\xb5\x25\xc9\xea\x64\x06\xe1\xb9\xe3\x6b\x66\xea\xe3\x22\x06\x6b\x23\x72\xd5\xcf\x6c\x6e\x23\x58\x35\x9d\x5d\x14\x63\x90\x41\xe0\xe4\xcf\x4e\x1c\x79\x26\x47\xc8\x9e\xfd\xb4\xec\xf8\x08\x2f\xe1\xd5\xd8\xdd\xc3\xd5\xf9\xd3\x09\x7d\xfa\xb9\x0e\x85\x7e\x62\x84\x77\x10\x54\x3d\x16\xf2\x93\x85\x2b\x3d\x92\x4c\xa7\xb0\x28\xfd\x45\xbd\xdd\x32\x27\xf1\xb8\x4e\x16\x36\x19\x75\xe5\x36\x95\x45\x12\xcc\x54\x54\x15\x72\x1a\xd5\x08\x76\xec\x86\x1b\xae\x5d\xde\x41\x18\xf6\xe3\x6d\x78\xe9\x24\x4e\x10\xc9\x34\x29\x0d\x1a\xe0\x23\x68\x07\xb4\xbf\x2f\x0b\x8d\x63\xe0\x1e\x99\xe8\xf3\xa5\x63\x33\xa1\xcf\xe2\x71\xe3\x3b\xae\x54\x06\xca\xdb\xee\x8c\x2b\xa4\xcd\x20\xb4\x5b\xcc\xdc\xe3\x1b\x32\xc6\x42\x4a\xa0\x82\xf4\x9c\xc9\xaf\x29\x41\xb3\x5c\xd2\x9b\x34\xdd\x08\x6f\xcf\x05\x57\x0c\xb2\xf1\xff\xb3\x23\x9c\xdb\x68\xa9\xed\x20\x4b\xd0\x56\x8d\x5e\xed\x7b\x46\x8e\x70\x71\xb1\x65\xb0\x98\x62\x1e\xf3\x77\x34\xcd\x38\x62\xf3\xa6\x4d\xef\xf2\xe0\xe0\x65\xd3\xee\x35\xb2\x85\xb0\x55\xf8\x51\x5d\x0a\xd5\x12\x5a\x22\xa6\xb2\x85\x0e\x17\x10\x24\xd8\xb6\xf8\x1c\xb3\xc8\x27\xbc\x36\xdd\x6b\xa1\xdd\x96\xc9\x40\xc8\x8d\x25\x23\x75\xa9\x87\xb0\xd8\xd6\xa5\xf6\xf7\xe5\x8f\x04\xf9\x8f\x02\x02\xff\x2d\xff\x0f\x35\xd6\x9f\xe6\x24\xcc\x78\x4a\x10\xf2\xb7\x9e\x9b\x77\x2f\x89\xa0\x6b\xea\xfb\x6e\xa9\x9e\x00\x21\xe7\x4a\x8e\xd5\xec\xe5\x65\x04\x1d\xd6\xd6\xeb\x7b\xbd\xde\x32\x7f\xcb\x66\xff\xdb\x1b\x66\x4d\xc2\x26\x2e\xab\x6e\x8e\xf5\x1a\xc2\xd4\xed\x3f\x7a\x6e\xcc\x7f\x4e\xb0\x88\xac\xcf\x5f\x1c\x91\x44\x78\x2a\xb7\x3e\x36\x2b\x55\x85\xd0\xea\x3f\x1c\xdd\x30\xe1\x4f\x28\x2d\x90\x3b\xf5\x63\x95\x08\x41\x48\xaa\xd0\xd1\x71\x9d\xf9\x3f\xe8\x57\xf7\x5c\x7b\x2f\x2b\x9b\xc1\xfd\xee\xf5\xe5\x57\x27\xcb\x13\x9f\x6a\xb1\x67\xca\x7b\x08\x29\x3c\x7b\xf3\x2b\xb4\x72\x58\x60\x5f\x61\x6f\x7e\x4e\xee\x3e\xe1\x2e\x02\xf5\xf4\xdb\xc0\xc2\xc9\x59\xa2\xb7\xb2\xdd\x6e\x10\xc6\x2c\xaf\x0b\xf2\x4d\x3e\x6d\xfe\x1f\xb0\xea\xf4\x6f\xaf\x08\xcb\x26\x58\xdc\x10\xdd\xfe\xbe\x3a\x97\xc0\xcc\x70\xc8\x9d\xa6\x71\x8d\x10\xda\x61\xd9\x9a\xc1\xd3\xc4\x40\x4e\xee\x96\x40\x85\x40\x20\xe1\xa1\xd2\x05\x15\x4f\xb1\x5a\x16\xb2\x5d\xa4\x9d\x66\x17\x7b\x10\x6a\xd5\xce\xb9\x19\x72\xd8\x10\x98\x43\x97\xad\x8d\x26\xdf\xe3\x57\x75\xd2\x7a\xf4\xad\xcc\x69\x7c\x44\xec\x99\x51\x9d\x39\x61\xe9\xcf\x6f\x6c\xe7\x27\x27\xa6\x8b\x3d\xb1\xc4\xb6\x8e\x30\xc7\x56\xb6\xa6\xcd\xae\x8e\x90\x3c\x7b\xc9\x87\x45\x0f\xf3\xff\x29\x6f\xee\x1c\xdc\xe5\x99\x53\x45\x18\x0a\x2f\x31\x12\x90\x92\x22\x84\x3d\xcb\x9d\x93\xb8\xd2\x93\xf0\xf8\xf8\xda\xef\xf9\xeb\x7d\x19\xbc\xb7\xd2\x5a\x2e\xf4\x7c\x39\x61\xfe\xc8\x25\xf6\xb2\xfb\xb6\x04\x8d\xfd\x72\x0f\x8b\x98\x10\xc2\x9a\xb6\xc0\x0d\x33\xde\x44\x31\x10\x5d\xa9\xc4\x1f\x6e\x36\xf9\x03\x3f\xe0\x45\x8c\x4b\x0a\x61\xd8\xa7\xf4\x75\x89\x80\x1a\x41\xf9\x43\xf3\x6a\x9e\x7a\x31\xc2\x51\x11\xf3\x48\x43\x8f\x0d\x93\xef\x0e\xad\x4b\x1f\xab\x5e\xb0\x70\x66\x85\x9c\xe2\xa9\x8f\xf1\x84\x30\xd3\x82\xda\x81\xc9\x92\xda\xbd\xc6\x77\x76\x80\x00\xa1\xd4\x81\x17\x97\xe8\x02\xa1\xe0\xe4\x00\xd6\x5f\x7b\x4d\xb0\xb8\xe8\xd8\xc5\xca\xaf\x25\x68\x64\xa1\x39\x33\x35\x99\xc0\x96\xe9\x50\xa6\x70\xa4\x86\xd0\x73\x2e\x33\x41\xf5\x85\x32\xe1\x36\x93\xbc\xce\x47\xd1\x9b\x20\x78\xf0\x82\x91\xf2\x09\x63\x42\xe5\x15\x09\x39\x6e\x87\x3a\x42\x91\x42\x04\x97\xce\x0e\x05\x82\xca\x7d\xae\x74\x73\xa5\x75\x04\xf6\x39\xd2\x41\xac\xbb\x17\x08\x4a\x1d\xbe\xea\x5d\x1a\xaa\x84\x2b\xcf\xb7\xb5\x4d\x55\x9e\x47\x58\xea\xf3\xfd\x81\xc9\xb9\x70\xc2\x3c\xde\xea\xbc\x37\x5b\x6a\x08\x7f\x2e\x47\x9e\x13\xbf\xb6\x87\xf0\x78\xd3\xe5\x85\x43\x66\xca\x84\x03\x99\x9f\xdf\xad\xf8\x2c\x48\x98\xba\x60\x70\x96\x64\x6e\x04\x83\x59\x06\x0b\x0a\x3b\x76\x2c\x20\x1c\xda\x1e\x2a\xac\x34\xb0\x82\x70\x47\xdb\x7c\xef\xc0\x89\x42\x02\x8f\x52\x4b\xd5\x9c\xdc\x00\xc2\x26\x63\x0b\xcb\x95\xb3\xb2\x19\x38\x87\xf0\x66\x3e\xd1\xcd\x26\x94\xb6\x6d\xfc\x10\xae\x62\xcf\xa0\xe8\x42\x44\x4b\x5e\x7d\x0b\x83\x48\xfb\xf3\xd3\xff\x98\xd6\x32\x18\xdb\xb5\xd7\xf4\x31\xff\x49\xc2\x2c\xa1\xcb\x6f\x82\xb2\x0f\x12\x70\x55\x29\xa4\x73\x71\x09\x03\x99\xc0\xde\x17\x4f\x37\x4a\x11\x2e\x7b\x04\x3b\x0d\xfa\x72\x13\x2c\x87\xd9\xb6\x6b\x8d\xec\x26\xcc\x5d\xcc\xa3\x67\x39\xde\x40\xe0\x9a\xb7\x67\x47\xf3\x95\x64\x06\xd3\xe7\x73\xd6\x0a\x44\x86\x12\x1a\xac\xb3\xbd\xb2\x3c\x5d\x19\x38\x6d\x9e\x12\x58\xe0\x17\x40\xb8\xcd\xc9\xdd\xad\xc5\xb7\x9d\x40\xd3\xdf\xda\xad\x9e\x66\x4b\x48\x6f\x5f\xeb\x38\xf6\xdd\x9b\xc1\x50\x4b\xc7\x04\x7b\x65\x14\xa1\x7e\x2b\x4f\xe9\x87\xb1\x3a\xc2\x88\x5f\xb7\xa9\xda\x79\x31\x82\xfa\x46\xeb\xda\x0e\x73\x13\x42\xb8\xe6\xc4\x7a\x9d\xf0\x95\x84\x57\x7e\xa7\xb8\x2f\x39\xcf\x25\x48\xda\x7b\xbb\xd7\xd5\x28\x11\xde\x96\x25\x44\x27\x3c\x7f\x42\xb0\x10\xf1\xb9\x58\x3b\x59\xc6\xbd\xb3\x9d\x63\x33\xd6\x13\x16\xa9\xbc\xe0\xb7\xd3\x88\x24\xe4\x89\x43\xd3\xe4\x99\x08\x41\xe1\xd8\x49\x81\x90\xb1\x43\x04\xb3\xf1\x31\xbd\xd9\x2d\x52\x84\xb2\x1b\xf9\x1e\x0c\xf7\x72\xc2\xdb\xde\xf5\xe7\x3f\x5d\x3b\x43\x10\x2f\x7a\xc4\xbd\x28\x82\x8b\x60\x70\x8e\x77\x69\xfc\xb7\xd3\x04\xdb\xbb\x55\x27\x7e\x37\x1c\x24\x14\x9b\xb7\x7d\x4f\xb8\xee\x45\x78\xaf\xf9\x4d\xf0\xf7\xa1\x4b\x04\xf9\x95\x6b\xf9\xc2\xb2\xd2\x18\x88\x49\xd8\xdd\xb7\x0d\x32\x25\x6c\xd6\x28\x73\x15\xd5\xa9\xcb\xc3\x3e\x11\x9b\xcf\x77\xe6\xed\x20\x04\x1f\x98\x25\xed\xe8\x79\x9c\x50\xdc\xad\x3a\x8f\x99\xb9\x81\x30\x7f\x4b\xe3\x8e\xc3\xbf\xf2\x18\x84\x2b\xec\xe8\xcb\x9d\x2c\xa3\x46\xb2\xe6\x5a\xe9\x9b\x08\xc2\x6f\x3c\x1e\xa8\xf1\x69\xfd\x53\x8c\x4b\x4e\x5c\xdd\x73\x76\x3f\x61\x89\x68\xc7\x52\x56\x7b\x3e\x61\x3f\x97\xb8\x44\x54\x54\x15\xe1\xb0\xe3\x51\x8d\xcd\xdf\x8b\x19\xbc\x4f\xd7\xe2\xa9\x18\xae\x27\xb4\x99\x2c\x7d\xf7\x2d\xb7\x9a\xc1\x0c\xb5\xa5\x76\x34\xb9\xfc\xe8\xc6\x1d\x95\x6b\x1d\xbf\x59\xe0\x3b\xa4\x39\xbc\xff\x4c\x37\x83\x3b\x1b\x17\xac\x2b\x13\x7e\xc6\x60\x76\xc6\xad\x8e\x28\x81\x4c\x06\xcb\xf6\xf0\xaf\x16\x1f\xf3\x23\x74\x9c\xb3\x64\x49\xf1\xc7\x10\xfc\x6e\xeb\x9c\x3c\x23\x15\x41\x38\x70\xcb\x26\x23\x7a\x6b\x06\x41\xaa\x6f\xf5\xde\xbc\x94\x27\x04\x5f\x85\xb0\x39\xa3\x76\xcf\x19\xb4\xfa\x2d\x36\xda\x35\x7c\x73\xf2\x55\x58\x2b\xd0\xf7\xa4\x9b\xf0\x7a\xff\x71\xf6\x70\x6e\xb0\xd0\xe0\xba\xce\x59\xe6\xa4\x01\xa1\xf3\x64\xfb\xe1\x63\x8f\xa3\x08\x61\x92\xdd\x45\x0f\x2c\xa5\x09\xbe\x0b\x0f\xfe\x6a\x94\xcc\x62\x50\xd9\x2a\x3f\x73\x6a\xd9\x17\xc2\x3a\xfd\xe2\x25\x3b\x84\xdf\x12\x06\xf2\x43\xe2\xaa\x5f\xcd\x22\x3c\xca\x3f\xe4\x15\xa3\x77\x99\xd0\x39\x26\x9e\xa1\x78\xdc\x99\xf0\x68\x93\xe8\xd7\xfc\xf8\x43\x04\xb5\x75\xfd\x57\x5d\x06\x22\x09\x1b\xb6\x5e\x2a\xdd\xaa\xe2\x45\xd0\x51\x4e\xba\xf3\xcd\x3f\x89\xc0\xc7\xd6\xe1\xfd\x69\x63\x0e\x61\xc8\x84\xc7\xfc\x87\x61\x33\xc1\x20\xb5\x5f\x22\xbc\xe1\x3d\x61\xd5\xae\xcf\x23\xe3\xfc\x1d\x84\x0c\xbf\xdf\x07\xca\xd6\x14\x10\x74\x37\x1e\x1f\xac\xfa\x14\x40\xf0\x76\x33\xa2\xa0\x0a\x45\x82\xb4\xba\xaf\x86\xea\x48\x3c\x21\xb7\xc4\x4d\x6a\x50\x3d\x9e\xa0\x14\xbc\x6c\x86\xc1\xfc\x4c\x06\x8f\x56\xf8\x80\x7d\x65\x36\xa1\xf0\xe1\xb0\xfa\xf5\x0a\x35\x42\xc4\x2f\x73\xcf\x90\x47\x49\x84\x64\xee\xd6\xd4\xd0\x56\x35\x42\xed\x44\xe0\x86\xe9\x8f\xaf\x12\xae\xfc\x4e\xeb\xad\xdb\x0d\x16\x64\xc5\xc4\x32\x87\x39\x0a\x09\x48\x7c\x36\xb7\x71\xb2\x44\x0b\xbc\x11\x67\x1d\x5f\x4f\xf8\xfc\x58\xbb\xa7\xee\xf3\x7a\x42\x58\xd7\xe1\xb4\x6a\x21\x3f\x06\x82\x4f\x4a\x8f\x5d\x1c\xd4\x26\xc8\x55\x9e\x72\xbb\xf3\x36\x8d\xb0\xb0\x73\xd1\x82\x2f\xf1\x82\x84\x47\x24\x99\xb6\x77\x50\x81\x20\xb2\x56\xb3\x5f\x50\xa4\x81\x85\x5e\xc1\x47\x4e\xce\x9e\x33\x08\x03\x63\xad\x2e\xf3\xac\x5d\x09\x81\x3f\xb3\xfb\x22\x0b\x2b\x08\x5c\x87\x8c\xde\x9c\xf7\x4f\x98\xbc\xf4\x66\xbb\xd6\x2a\x9a\x13\xf4\x38\x6f\x94\x5c\x3a\x9b\xc8\x60\x43\x59\xcb\xc7\x8f\xf6\x2b\x09\x29\xca\x97\x27\x1e\x6a\xa9\x10\xb6\x32\xf9\xd3\x0c\xa5\xf5\x19\xf0\x15\x7c\x74\xac\xce\x6c\x24\x18\x66\xb0\x1a\x03\x0f\xa4\x13\x56\x2f\x31\x90\x12\x50\x18\x22\x44\x66\xdc\xf8\x56\x55\xeb\x42\xe8\xdc\xa1\xcf\xb2\xdc\x53\x45\x50\x99\x90\x08\x88\x3d\x20\x45\x30\xf2\xb4\xfd\x94\x99\xe6\x49\xa8\xbb\x68\x29\x9f\x2f\xa7\x4b\xf8\x5a\xe3\x24\x5f\x62\xe4\xf5\x4f\xf9\x1f\xce\x77\x86\xda\xdf\xe1\x7c\xce\xc2\x5d\xd6\xa7\x99\x45\x2a\x9b\x09\x2f\x63\x96\x0d\xf4\xe6\x1b\x12\x6e\x0e\xbd\x74\x1c\xce\x22\x82\x29\xf7\x72\xed\xf3\x71\x55\x84\xb3\x13\x13\x9d\x5c\xed\x92\x04\xa1\x0d\xfe\x9b\xca\x0f\x10\x61\xd4\x3e\xbd\xec\xda\xd8\x06\xc2\x02\xfe\x8b\x6d\x9e\x89\x76\x84\x15\x56\x6a\x4a\xe9\x27\x6f\x12\x3c\x57\xcd\x9a\xfe\x49\xc3\x82\xc0\x91\x7c\x6a\xee\xee\xb4\x54\x06\x73\x37\xc4\x0c\x3f\xb2\x99\x47\xf0\x96\x5c\xb2\x71\x61\xd0\x2a\xc2\xf2\x4b\x7c\x1a\x8b\x37\x1e\x26\x54\xe1\x63\xe5\xae\xdb\x8e\x84\xcb\x75\x6d\x76\x5b\xaa\x3f\xb0\x30\xd2\xf6\x24\x6c\x93\xc8\x1c\xc2\xc1\xaa\x06\xd7\xf3\x6c\x1e\x0c\xf8\x76\xf0\x18\x6a\x29\x2b\x13\x62\x57\xee\x36\xd9\x38\x67\x33\x61\xd9\x25\xf9\xad\xfb\x06\x0e\x11\x96\x15\x9c\xe6\x35\x66\xb1\x11\xee\x85\x59\xfb\x3e\x2b\x91\x24\x48\x25\xa4\x49\x9a\xf3\xa5\x11\x38\x9e\xde\x23\x4e\xc9\x79\x04\x5b\x21\x97\x19\x7d\xec\x81\x04\x81\x9a\x44\xf7\xf2\x85\xd9\x84\x43\xb1\xe6\xc7\x7b\x96\x64\x13\xa4\x0f\xd6\x06\x5e\xd3\x38\x4b\x50\x9f\x6e\x38\xef\x82\xe0\x61\x42\xa0\x49\xdd\xd2\xfb\x92\x7e\x04\xff\xfd\x4b\xa6\x5c\x6c\xd9\x4e\xe3\x3d\x9c\xf7\x1e\x31\x73\x09\xd5\x6e\xb6\xce\x9c\x0a\xc7\xff\x01\xef\x6d\x83\x57\x33\xb4\xee\x11\x38\x2a\x0e\xbe\x18\x12\x5f\x46\xd8\xf9\x6a\x67\x52\x17\x63\x43\x88\xb7\x3c\x99\x69\x3d\x96\x40\x18\xe1\x54\x7c\xb5\x5b\x47\x95\x70\x20\xe5\xa9\xa6\xa8\x55\x36\x41\x3d\x2c\x76\xa6\xda\x80\x05\x61\x51\xa4\xcc\x37\xd7\xb2\x7c\x82\xa8\xf7\x8e\x75\x9b\x54\x53\x08\x4e\x9c\x1f\x65\xc5\x9d\xa7\x11\xe4\xf7\xb6\x96\x99\x55\x4f\x21\x44\x0d\x39\x39\x58\x6e\x5e\x41\x68\xd3\xcd\xda\xa6\xae\xe7\xc3\x60\xfa\x3d\x81\x07\x4b\x7f\x16\x12\x16\xce\xd8\x70\x8a\x1a\xbb\x08\xee\x1d\xbf\xe6\x8f\x96\xa6\x10\xae\x9f\x55\x3e\xd3\x31\x54\x45\x88\xe5\xd7\x55\x3b\x3d\xbf\x8e\x70\x74\xe8\xd6\xeb\x07\x7a\xd7\x18\xa8\xa5\x78\x84\x2c\x37\xda\x4b\x68\x30\x4f\x38\x31\xba\x73\x37\xa1\xd6\xf7\xc2\x81\xfe\x5c\x01\x02\xb4\xbf\xf8\x3d\xfd\x72\x9f\x41\xd0\xac\x89\xc0\x57\x25\x82\x84\xe9\x2e\xe3\x2b\x16\xc8\x07\x11\xf2\xaa\xc3\x7c\xf3\x58\x6e\x04\x9e\x2d\x11\x4d\xf3\x27\x0a\x08\x41\x33\x7f\x35\x3e\xb3\xbc\x48\x78\x7f\xed\xc8\x67\xce\xeb\xfb\x09\xba\xbc\x5c\xb6\x5c\xa2\x5a\x84\x25\x6c\xab\xfd\x9a\xfa\xcc\x09\xf6\x8b\x99\x85\xe3\x4a\xb7\x09\x73\x1b\xfc\xa4\x47\xf8\x34\x09\xf1\xa7\x98\xd8\x11\x52\x22\xec\x9e\xea\xbb\x65\xc2\xf8\x32\x61\x8b\x38\xe7\xb3\xe7\x0e\xca\x04\xf1\x74\xe7\x67\x4b\x4f\x0e\xb0\x70\xf9\xb0\x4d\xd4\xb1\xf0\x54\x06\xab\x82\x2b\x46\xda\x6b\x6e\x31\x48\x96\xfe\xf6\xe3\xc9\xda\xeb\x84\x55\x61\x2f\x65\x64\x85\xea\x19\x9c\x6b\xfa\xc8\xd2\x99\x46\x84\xf3\xce\x0d\x9d\x0f\xe7\x4d\x3e\x64\x97\xd9\x72\x3e\xb9\x94\x46\xc0\x01\x7b\x87\xeb\xad\x73\x08\x41\x5b\xb8\x1d\x5e\x9d\xba\x41\x30\x7f\x6e\x56\x97\xbd\xe4\x06\xc1\xa6\x6f\xf3\xed\x7c\x27\x49\x42\x9b\xf5\xed\xe5\xb3\x4f\xae\x27\x6c\xb3\xb5\x59\xbb\xfa\xc1\x65\x82\x99\x97\x4e\xad\xd6\x05\x69\x42\xad\x4c\x94\x0f\xf7\xc9\x03\x84\x7c\x53\x73\xff\xa1\xb7\x13\x2c\x94\xa8\x4f\x39\x72\xae\xd9\x8b\x41\xc5\x19\xb1\x57\x02\xcd\xa9\x84\xf3\xf9\x39\x9d\x81\xf3\x7b\x08\xf5\xa2\xc9\xc6\xc1\xb3\xbc\xe9\xef\xa8\x61\x93\xff\xe2\x70\xd3\x35\x84\x36\xf3\xa0\xdf\x6b\xb2\xaa\x08\x11\x8f\xf6\xf1\xcd\x52\x2c\x20\x24\x7e\x96\xeb\xd2\xaa\xb7\x20\x5c\x58\xf0\xe0\x5b\x76\xad\x09\xe1\x6d\x92\x47\x2e\xa7\xa7\x39\xa1\x29\xed\x72\xf5\xf1\xad\x7e\x04\xfd\xfd\x2a\xef\xb6\x5c\x15\x23\xc4\x2d\x38\x10\x39\xeb\xc8\x25\x42\x5f\x8b\xe5\x59\xbd\xce\x09\x06\xf1\x47\x7a\x36\x18\xdd\x38\x4f\xc8\x69\xd2\xba\xfb\x7d\xb1\x0e\x21\xd4\x60\x55\xcf\x67\xda\x43\x10\xe3\xf9\x76\x9b\xd9\x90\x42\xd0\xdc\xf0\x3c\x32\xc8\xfb\x22\xa1\xe7\xb0\x43\x6b\x5a\xc0\x29\xc2\x06\xb5\x35\x27\xfc\x76\x4c\x21\x74\xbc\x11\xeb\x0a\xb5\xd8\x4c\x98\xd5\x63\x60\x90\xba\x7e\xcf\x3f\x28\xa1\xb6\x0f\x85\xad\xdd\x2c\x28\x9d\x94\x96\x2a\x95\x4b\x26\xb4\xfa\xde\xba\xb8\x3d\x25\x95\x60\xc9\xe7\xb8\xda\xb5\xe5\x0d\x41\x57\xff\x4c\x6f\xbe\x98\x0b\x41\x29\x39\x61\x7c\x6e\x4a\x0b\x61\x7f\xc7\xdb\xf5\xe5\x81\xcf\x08\xfe\xee\x51\xcd\x01\x85\xc5\x84\x9a\x85\x22\xfb\xc2\x07\xbb\x08\x6e\xf9\x8e\xaa\x11\xaf\xeb\x08\x03\x69\x1c\x2e\xc3\x5c\xf5\x04\x8d\xcf\xdc\x47\xcf\xf2\x17\x11\x5e\x0f\xce\xe2\xec\x4f\x28\x20\x1c\x77\x0f\xed\x39\x33\x59\x92\xdb\xb6\x31\x3c\x43\x2f\x19\x38\xad\xf8\x58\xf8\xdf\x29\x8e\x43\xef\x6a\x76\x5c\x55\x24\xd4\x6b\x1d\x11\x3a\xcb\x55\x4d\xa8\x13\xe7\xcd\x8e\xbd\x10\x4e\x78\xfb\x58\xe8\xd0\xde\xee\x12\x42\xb3\xbf\xef\xf3\xbd\xc6\xc5\x04\x89\xbb\x7c\xf3\x4e\x9a\x14\x13\x8a\xf7\xff\x9a\x38\x31\x89\xd2\x9a\x95\xf6\xe5\x22\x23\x04\x83\x19\x05\xa2\x5a\x93\x85\x27\x64\xd0\x65\xa2\xd7\x82\xf0\x7a\x83\xd6\xd5\x2d\xdf\xd3\x18\x5c\x58\xf1\x6b\x30\xfe\xb3\xd5\x3f\x23\xae\x90\xab\x69\xc5\x93\xaf\xe6\xf2\xdd\x71\x29\x36\x22\x49\x84\xde\x15\x32\x3f\xde\x38\x1b\x13\xd6\xdf\xd3\x2f\x28\xff\xf4\x9c\xc0\x72\xf0\x2c\x29\x57\xd4\x21\x24\x3b\xcb\xad\xfb\xbc\x69\x2b\x21\x54\x07\x5f\xa6\xcd\xd9\x4b\x18\x6d\x1d\x3e\x9f\xd3\x96\xca\x80\xef\xcf\xce\xe5\xaf\x36\x71\x12\xf8\x57\xb6\x2c\x0d\x0c\x16\x27\x5c\xbf\xb6\xc7\x60\xe2\xa8\x3a\x41\xdb\x31\xf8\xd7\x12\x13\x53\x82\x62\xe3\x93\x0f\xc1\x73\x0d\x08\xe3\xd6\xcd\x23\xbd\x6b\x0f\x12\x02\x44\xf3\x17\xba\xf2\xe8\x10\x2a\x9b\x8b\x79\x5c\x15\x84\x08\x22\x27\xdd\x65\x1b\x8a\x2e\x10\x98\xd3\xcb\x9f\x6c\x57\x94\x25\x5c\x7b\x20\x55\x1d\x5e\x9d\x49\xd0\x36\xe7\x6a\x7f\x72\xe1\xe6\xff\x05\xbe\xfc\x76\x52\xb8\xb3\x83\xd0\xf2\xc4\x39\x48\xc0\x25\x88\x20\x2c\x3e\x1a\x7d\x58\x5d\x9a\xb0\xff\xde\x2c\xe7\x4d\x2a\x3a\x84\xbb\x47\xa2\xad\x38\x32\x8a\x19\xdc\xbe\xf8\xeb\xbb\x7c\x4d\x36\xe1\x63\xba\x63\xe7\x76\xa5\x41\x06\x9f\xe7\xaf\x5a\x75\x2a\xe9\x05\x03\xe7\x80\xaa\x26\xb5\x55\x29\x84\x57\x8a\x03\xc7\xde\x69\x14\xd0\xb8\x51\xde\xaf\xfe\xc3\x9e\x84\x43\x1d\x9d\x19\x32\xb7\x35\x08\x3f\xce\x88\x9b\x29\xa5\x65\x13\xac\x64\x4f\x68\x0f\x4d\x4d\x21\x18\xd8\x3e\xd9\x7a\x3e\xf8\x38\x61\x65\xf4\xea\x65\xe1\xc6\x52\x84\x2f\x5d\xbc\x43\x57\x1d\x93\x19\xec\x9e\x5a\x6b\x7d\x3d\x4e\x9e\xb0\x53\x25\x67\xf1\x8a\x8d\x0d\x04\xd5\x1f\xf3\x15\x0d\x0f\x57\x11\x7a\xb6\xd5\x08\x8a\x4d\x96\x90\x3b\xb3\x0c\x37\x1c\x7e\x41\x78\xfe\xe5\xf3\xc7\xaf\x7b\x77\x12\x94\x46\x37\xdf\x9f\xda\x1e\x40\x18\x50\x63\x65\xcb\xc9\xd8\x10\xe6\x6e\xb0\xbb\x27\x64\x94\x4d\x98\x7a\x28\x83\x47\x54\x4c\x9b\x70\x95\x77\x9e\xcc\xf2\xd2\x42\x06\xf7\x3e\x38\x59\xae\x8a\x72\x20\x24\xc6\x2e\xfe\xf2\x90\xe7\x39\x83\xfb\xc7\x25\x65\x0f\xcd\x39\x45\x38\xda\x5f\xc4\x23\xbe\x4f\x9d\xb0\xcd\xc7\xbe\xfb\x82\x62\x3a\x21\xa8\x4b\x7d\x80\xb5\x37\x9d\x90\xae\xfe\xf4\xe2\x23\xdd\x73\x84\x94\x8d\xf2\x61\x7b\x8b\x6c\x18\x1c\x11\x59\xb4\xfd\xc6\xe7\x73\x04\xd3\x8a\x80\x78\x43\xb6\x7d\x84\xb3\xe5\xed\xf2\x86\x8f\xd6\x12\x78\x4f\x29\x07\x4a\x25\x2f\xfe\x07\x27\x3b\x74\xf4\x5c\x8b\x85\x09\xbb\xd4\x76\xea\xd7\x1b\xaf\x24\x6c\xb5\xdf\xc7\x9e\x97\xe2\x45\xb0\xe6\xdd\x18\xd2\x12\xea\x47\x98\x7a\x59\xc1\x6c\x0a\xc7\x35\x42\xec\x2f\x41\x05\xad\x94\x4a\x06\x13\xef\x62\xf8\xd6\xe8\xe7\x32\xa8\xcb\x27\x7b\x49\xbb\x60\x42\xbd\xda\xed\x34\xa5\xf1\x00\x82\x90\x31\x87\xcf\xe5\x70\x41\xc2\xfd\x97\x46\x51\x97\x73\x4c\x09\x56\xac\x4c\x73\xb9\xbb\x1d\x79\x30\x37\x3c\x5c\xc6\xf6\x91\x21\xcc\xfe\xda\x7e\xe8\xc2\xd2\xa7\x0c\xb6\x7a\xe5\x19\xec\x9e\x96\xcf\x20\xb7\xe1\x96\x92\xf1\x8c\x24\x42\x7a\xe4\xe8\x69\x57\x45\x6d\x82\x65\xb4\x7d\x76\xb2\xb8\x2b\xc1\x68\xb9\x40\xae\xe3\x71\x0b\x06\xe3\x8a\x06\x39\x43\xdd\xb6\x84\xbb\x4b\xc4\xc2\xe4\xc3\x8f\x13\x64\xd7\x96\x3d\xca\x4f\x19\x24\x48\xaa\x29\x1e\xcd\x2a\x8c\x23\x5c\x7d\x3c\x72\x44\xa4\x2a\x8e\xd0\x5f\xbb\xdb\x2f\x6b\x49\x3d\x03\xe3\x53\x8b\x74\xa7\xc5\x57\x31\x58\xf0\x9a\xff\xd5\x3c\x0d\x23\x42\xf5\x68\x4d\xfc\xf2\xa4\xf7\x0c\x9c\xfa\xb6\xc2\x61\x5e\x32\xa1\x19\x22\xdf\xaf\x4e\x22\x2f\x77\x66\x29\x2d\xcb\x20\xb0\x71\x79\x3e\x7b\x3f\x7c\x94\x70\xd4\x7b\x9a\x47\xcd\x75\x3b\xc2\xe5\x0d\x8b\xf4\x5a\x9d\xed\x08\x63\x97\xa7\xaa\x4b\x2c\xd5\x27\xa8\x09\x6f\x78\x5d\x24\xbd\x81\x20\xf4\xf3\x88\xae\xce\x8c\xc3\x84\xd1\xd9\x42\xdb\x56\xd4\xe5\x12\x3e\xe9\x48\x9c\xf4\x58\x1a\x42\x10\xa9\x9c\xb2\xe1\xff\x1f\x46\xbb\x8e\x7e\x97\xe2\xda\x4f\xb0\x9b\xf6\x49\x9d\x6d\x4e\x3c\xc1\x55\xe8\xe2\xea\x75\xa5\xe6\x04\x6d\x81\x59\xaa\xfe\x03\xab\x09\xac\x66\x95\xdc\xb1\x66\x45\x82\x44\x40\x71\x7b\xcc\x9e\x22\x06\xf5\xf5\x27\x76\xcd\xef\x2f\x22\xa4\x37\xf4\xed\x39\x9d\x7c\x96\xb0\x64\x7c\x63\xe3\x8d\xf0\x3b\x84\x05\x97\x7e\x1c\x31\x3a\xee\x4b\xf0\x77\x31\xd8\x9e\x2d\xfb\x8a\xc1\x03\xbd\x5b\xda\x56\xf6\xc5\x0c\x4c\x2c\x73\xa6\xdf\xb0\xb0\x23\x18\x7d\x5f\x33\xd8\xb9\x7a\x3f\xc1\x4b\xd0\xe2\x50\xb9\xba\x3d\xe1\x93\xee\xb4\x5c\xe1\x64\x6f\x42\x69\x53\xd7\xf1\xde\x74\x3f\x06\x0f\x4d\xbd\xf9\x2f\xf7\x6b\x10\x92\x3b\x24\xa6\x2c\xe7\xda\x45\xe0\xd8\xdf\x68\x7a\x7b\xae\x2b\xe1\xc7\xad\x47\xbb\x3d\x0e\x86\x30\x70\xde\x16\x2a\xb0\xf0\xea\x1e\xc2\x8a\x73\x0b\x9f\xb9\x7e\x69\x66\xa0\x96\x7c\x31\x78\xbd\x9a\x1f\xa1\x46\x63\x37\xcf\xac\xcd\x59\x0c\x94\x4a\xaf\x8f\x71\xdd\xf6\x20\x5c\xdf\x6d\xca\xf6\xf8\x9d\x37\x21\xe3\xe1\x5a\xb5\x5f\xbb\xe2\x08\x2f\xda\xaf\x4c\x48\x0e\xad\x24\x70\x6f\xea\xbc\x25\xc4\x9d\xc4\x60\x7d\x99\xa1\xa8\x8d\xb9\x2f\x41\x42\xf2\xd6\x47\xff\x85\x6e\x84\xea\x5f\x53\x77\xc5\x46\xe6\x33\x08\x99\xcf\xe2\x3e\xea\x56\xc9\x60\x9d\xf8\xf0\xd6\xb4\x1f\x16\x84\x85\x7c\x8b\xce\x0f\xb9\x54\x30\xc8\xd3\xdd\x18\xf1\xf8\xd8\x29\x42\x69\xde\xae\x87\x61\x5f\xac\x09\xbf\x46\x0f\x0c\x2e\x75\x5a\xc5\x40\x63\x78\x75\xb5\x98\x9a\x2b\xa1\x5d\xc8\x22\xfc\x07\x67\x3d\xa1\x29\xe9\xe7\x48\xfb\x36\x45\x42\x4a\xb1\x45\xd1\x94\xe6\x70\x06\x9f\xa7\x1b\xb7\x5c\x96\x5b\x41\xd8\x99\x6a\xdf\xba\xc3\xbb\x82\x30\x6d\xba\x62\x33\xef\xc5\x3a\x06\x22\x46\x41\xfd\xc5\x8a\x05\x0c\x7e\xfe\x50\xaa\x6a\x89\x79\xc5\x60\xd9\xa6\x29\x58\x6a\xdc\x48\x30\x2a\x29\x1b\x54\x7e\xfc\x82\xa0\xc6\xfd\xe6\x71\xf2\xbe\x58\x42\xe2\x7b\xd3\xdf\x71\x3f\x47\x09\x85\x9a\x81\x0f\x85\x6b\xda\x09\x4d\x05\x33\xe6\xd4\x3c\x2f\x27\xe4\xc5\x96\x0a\xd5\x5a\xf9\x11\x10\xbe\x4f\x6c\x45\x11\x11\x16\x14\xfe\x98\xe2\x50\x35\x93\x30\x73\xe4\x9d\x59\x54\x7b\x12\x41\x7a\x9f\xeb\xf7\xa0\x6b\xa1\x04\xf5\xf7\xca\x3f\x8f\xba\x35\x12\xbe\xb8\x45\x70\x29\x44\xfb\x13\x96\x5b\x5d\xdc\xb0\xc4\xcb\x9c\x30\x18\xb6\x65\x77\x7c\x65\x1a\x83\xd5\x4b\x53\x2b\x8f\xe9\x1d\x20\xf8\xfb\x57\x45\xd6\xbe\x70\x23\x04\x0c\xdc\xa9\x28\x7b\xf6\x82\x90\xdb\x7c\x5c\xfd\xad\x4a\x12\xc1\x3d\x57\x32\x22\xde\xd6\x82\x60\x9f\xa9\x9b\xef\xe9\xa6\x4b\xf8\x73\x63\xb9\xda\xa5\x21\x27\xc2\xab\x06\xae\xea\xc8\xc9\x3f\x9c\x99\x32\x9b\xe3\x27\xab\x26\x82\xea\x2e\x7b\xcf\x53\xb9\xa3\x2c\x0c\x8c\xf1\x44\x17\x73\x6e\xa6\xbf\x68\x78\x7a\xcc\x55\x27\x31\x9f\x90\x3a\x5e\xbd\x47\x26\x24\x95\x90\x74\xc6\x60\xfb\x89\xa3\x9b\x08\x0b\xbe\xbc\xb9\x29\x47\xf3\xff\xc1\xf4\xfb\x8e\x4b\x5d\x5e\x70\x12\x56\x5e\x8c\xae\xa7\xed\xea\x84\xe6\xc7\xe5\x43\xfd\x23\x09\x84\x15\x33\xd6\xf3\xa6\xef\xd8\xfc\x0f\x2a\xf7\x2f\x5d\xa4\xae\xfa\x80\xb0\x80\x43\x73\x77\xc9\x7c\x21\x82\x5f\x55\x51\x8d\xf0\xc1\x20\x42\xd4\xb7\x95\x1c\x1e\x2f\x3f\x12\xe6\xec\x6e\xdf\xe9\x60\x5d\x42\x48\x99\xa7\xb3\x68\xaf\x6b\x29\x41\x7d\x4a\xf4\x16\x1d\xbe\x8d\x04\x9f\xcc\x6d\x82\xd3\xeb\xad\x09\xaa\x6b\x4f\x1e\x1a\x10\x7f\x4e\x88\x72\x50\x4b\x99\x19\x11\x45\x58\x39\xfc\x2c\xe0\xc3\x64\xb9\xce\x2f\xfd\x48\x62\xd0\x84\x60\xdf\x43\xb1\xd7\x8f\x4b\x11\x7c\xa7\x8b\x9c\xbb\x76\x58\x93\x70\x5c\x66\x41\xde\x09\x15\xff\x7f\x8a\x91\xba\x9b\x67\xe6\x5d\x35\x82\xd6\xe5\x5b\x39\x79\xb2\x9f\x58\x70\x70\xd8\xc0\xef\x72\xbb\x86\xc0\x67\xa2\x0f\x93\xc9\x87\xf5\x02\xcd\x71\x49\x15\xe5\x6e\x06\xaf\xbf\x98\xf6\xf4\xcf\x08\x27\x78\x76\x3a\x0d\x64\x4c\xa8\xff\x03\xd6\xa0\xe7\xf6\x5d\x4a\x31\x84\x20\xfe\xf8\xa9\xff\x95\xb1\x4b\x3a\x33\x56\x1a\x6e\x22\x64\xc9\x47\xea\xb0\xaf\xb8\x4d\x08\xcf\xd7\x88\x55\x2d\xe0\xfb\x07\x25\x8b\x5a\xe6\xb2\x45\x7e\xcb\x83\xd6\xf3\xbd\xfb\xbb\x63\xd6\x13\x06\x7c\xd3\x8c\xbb\x0b\x12\x09\x81\x6c\x8f\x3c\x2e\x6c\x7c\x41\x10\x28\x5c\xa0\x90\xe3\xd6\x46\xf8\x31\xb6\x6f\x59\x7c\x52\x25\xc1\x92\x67\x31\x47\xd2\x1f\x3f\x42\x8c\xbb\xfa\x1b\x13\x15\x15\x82\xd9\xec\xb5\x5e\xbb\xef\xdf\x20\x3c\x16\x88\x9d\x3b\xeb\xca\x5c\xc2\x6d\x31\xee\x9c\xc4\xb9\x8b\x09\x96\xda\x07\xe6\x17\x5c\x9f\x41\x38\xf0\xc3\xe8\x8f\x89\x18\x1b\x21\xf4\xeb\x89\x47\xbe\x12\x69\x04\xad\x7d\xab\x1e\xaa\x95\x31\x0c\xb6\xf2\xef\x2e\xb8\xac\x1a\x48\xd0\x72\xad\xd4\x1e\x91\x29\x22\xfc\x0a\x39\x62\x1f\xc4\x53\x47\xe0\x79\x38\xd3\x37\x39\x82\x21\xc4\x7c\xea\xd7\x28\x3e\xf0\x9c\x30\xdf\x21\xc4\x69\xb5\x6c\x11\xc1\xef\x81\xd5\xa3\x91\x84\x7a\x42\x74\x8d\x83\xdd\xac\x7b\x69\x84\xf2\xa9\x3d\x8c\xcd\xba\x74\xc2\xd7\x56\xae\xaa\x18\xdd\x34\xc2\x51\x5f\x41\x9d\x75\x1a\x99\x04\x5e\x2b\xc7\xa9\xaa\x82\x91\x04\x1e\x21\x6d\xe7\x13\xfb\xde\x30\x10\x10\x2d\xcc\xcd\xc9\xce\x60\x60\x54\x3b\x3c\xeb\xb4\xa6\x28\xe1\x10\x4b\xb1\x64\xfa\x73\x4f\x82\x9f\xdb\x3a\x6b\x9d\x37\x44\x98\xee\xd3\x79\x38\x9e\x6f\x98\x85\xbc\x2d\x0a\x41\x27\xf4\x1b\x18\x2c\x0f\x2b\xde\xb8\x40\x44\x86\xd0\xae\x2e\x13\x1c\x37\x39\xea\xca\xfb\x52\x5a\xfd\xfe\x63\x1e\xc4\x5c\x82\xf4\x6b\x62\x2c\x08\xa7\x9b\x13\x2f\x56\x5a\xd6\x13\x62\x24\xfb\x02\x46\xbe\x94\x10\xbe\xa7\x75\x1d\xf9\x3d\xf1\x9a\x90\xf8\x29\x38\x48\x5d\xb8\x86\xa0\x98\xb5\x70\xc7\x01\x3f\x27\x82\x46\xfe\x4a\x5e\xed\xae\x54\x42\x4d\x85\x4a\x60\xbe\xb9\x17\xa1\x3f\xfc\xac\xe8\xe1\xac\x04\xc2\x68\x9c\x57\x6e\x95\xce\x77\x02\xbb\xd6\x94\x55\x75\xc7\x86\x09\x62\x79\x47\x52\x7b\xa3\x3a\x09\x6f\x3e\x25\xf6\x6f\x35\x1b\x26\xb0\xd6\xe1\x98\xc0\x9a\x44\xc2\xe2\x7e\xc9\xcf\xfa\xa7\x7b\x09\x2f\x66\x1e\x96\x76\x95\xe8\x25\xcc\xaa\xd5\x7e\xcc\x9e\x5b\x45\x78\x1b\x1e\xf7\x3e\x80\xcb\xf6\x1f\xec\x77\xfb\xee\xf8\x35\x35\x87\xb0\xe7\x86\x96\xc7\x7f\xe5\x7f\xd0\x78\xfb\xfa\x2b\x97\xcf\x5d\x82\x6d\xe1\x09\x65\xd5\xda\x87\x84\xd7\xd9\x5d\x01\xdb\x76\x5c\x24\x9c\xb0\x52\xd5\xae\x5d\x5f\xc7\xfc\x2d\x53\x27\x12\x67\xef\xe1\x8d\x21\x8c\x29\x70\xef\xd9\x6a\x3c\x90\x87\x63\xb7\xb8\xfd\x1d\xa4\x1c\x09\x4f\x83\x39\x02\xbc\x6d\xf2\x09\xdf\x96\xdd\x5d\x35\x3a\x91\x4b\xb0\x77\xcb\xb3\xff\x9e\x91\x4c\x60\x2e\x1c\x10\xba\xcb\xa9\x4b\x98\x1b\x7c\x1f\x57\x44\x25\x08\xb9\x95\xc5\x9c\x09\x7e\xcb\xfe\x81\x46\x55\xa5\xc6\xf9\xcd\xaf\x08\xb2\x86\xde\x30\xce\x49\x21\x98\xed\x4b\x9b\x25\x7e\xd1\x97\xd0\x97\x6a\x14\xcb\xcd\x6b\x4f\x38\x23\x61\x4e\xe7\x8c\x5b\x59\x58\x64\xa8\x1b\x68\xbf\xfa\x34\x41\xe5\x77\xa0\x46\x5c\x8f\x15\x21\xe8\xa0\x71\xcf\xf0\x6a\x4b\x82\x00\x8b\xd1\xb6\xe9\x13\x27\x48\x5f\x11\x6c\x98\x8f\xe5\x04\xfe\xd7\x11\xae\x4b\x06\xfb\x58\xe8\xb7\xff\xec\xb0\xe7\xee\x2b\x42\x64\xb8\xfc\x2b\xa3\xf0\x30\x42\x91\xfd\x8b\x3d\xdf\x85\x7a\x09\xd3\x0f\xbd\x38\x72\x7e\xb2\x64\xa7\x65\x1a\xf1\xad\x30\x24\x9c\x5c\x74\x71\xa0\xd5\xd8\x99\x60\xa2\xe9\xc2\xfb\x76\x44\x8a\xb0\x51\x98\x9f\x7d\x2c\x60\x17\x81\x73\x78\x6f\xd5\xd0\x56\x3e\xc2\xaf\x42\x57\xfc\xbe\xb5\x8b\xb0\xcb\xac\xbb\xd7\x57\xc7\x8e\x81\x81\xfb\xae\xc5\x56\xd2\xc6\x84\x17\xf2\x3b\xdf\xf0\x88\x29\x12\x38\x13\xb2\x0d\xbf\xea\xcf\x23\x34\x97\x55\x27\xdd\x7c\x50\x4f\xf8\xa5\xff\x65\x45\xfb\x1c\x27\xc2\x9c\x63\xc9\xb7\x52\x5b\x5b\x09\xd9\xaf\x82\xc6\x1b\x12\x4b\x09\xab\x3f\xcb\xbe\x15\x9c\xaf\x4b\x88\x31\x34\xd5\x1a\xf6\x4f\x60\xf0\x9a\x04\xce\x26\x8e\x76\x30\x38\xfd\xbb\x44\xa8\x79\xe9\x59\x82\xc0\x9e\x3e\xbb\x2d\xd9\xfe\x0c\x12\xdc\x55\x5f\xce\xbe\x1f\xc4\xe0\x41\x8f\xcc\x81\xc0\xb0\x2b\x84\x99\x15\xdc\x9b\x05\xd8\x64\x09\xf7\xce\x54\xe4\x4e\xd3\x57\x20\x1c\x5e\x51\x30\x73\x6f\xbc\x24\xa1\xf3\xc2\xea\xbb\x2a\xea\x57\x18\x84\x4d\x14\xfa\x77\x8c\x05\x11\x6c\xef\xa4\xbf\x13\xb1\xf0\x20\x9c\x3f\x93\xb5\xed\xf4\x41\x22\x08\x3b\x25\x68\xbc\x38\xa9\x40\xd8\x6c\xb5\x43\x4e\x9b\x4b\x99\xa0\x7e\x52\x7b\xbc\xa9\x8f\x93\x70\xee\x7d\x8f\xb8\xb1\x72\x01\x83\x8c\x46\xa6\x88\x9b\x4d\x88\x70\xca\xbe\x47\x62\x79\x72\x3a\x83\xb9\x3f\xec\xce\x19\x8e\x04\x12\x92\x0e\x24\x96\x7c\xba\x99\x44\x90\xfa\x64\xb3\xca\x6b\xa3\x1a\xc1\xae\xf8\xd5\xbe\x6d\x0b\xb2\x09\xfa\x7c\x5a\x53\xa2\x8f\x5c\x67\xb0\xe4\xdd\x72\xb9\xb9\x73\x72\x08\x7b\xbf\x2e\x56\xa2\x87\xa7\x08\x8e\x29\xb7\xb3\x8c\xe4\xf5\x08\xdb\x2e\xbf\x7e\xea\x3e\xef\x2c\x01\x5a\xbf\x7d\xaf\x3a\x9d\x23\x54\x95\xe4\x0c\x7b\xc8\x04\x31\x70\x37\x79\x16\x7c\x45\x57\x8e\x10\x79\x61\x99\xf7\xf8\xd0\x41\xc2\xd9\xbb\x1a\xbb\xc5\xa7\x97\x12\x1e\xac\xf9\x73\x62\xea\x26\x16\x41\x7f\x61\xaf\x82\xf5\x53\x4e\x42\xd5\xf4\xdc\x17\x5b\x0f\xdb\x11\x8e\x79\x2e\x1a\x9d\xd5\x16\x46\xf8\xae\x71\x25\x73\x7e\xa0\x29\x81\xb7\x74\x47\x48\x68\xeb\x03\x82\x6e\x4c\x60\xef\xd1\xf9\x5e\x0c\xde\x96\xd6\xea\xcc\xdc\x98\x4b\xd8\xda\xad\xbd\x51\x33\xcd\x9a\xb0\x55\x59\x21\x12\xd2\x19\x0c\x0e\x3e\x36\xbc\x54\x13\xe5\xca\xc0\x2a\x91\x36\xe9\x18\x9f\x22\xf8\xac\xef\xe9\xd6\x34\xbe\xcf\xe0\x95\xeb\x9c\x47\x0d\x8f\xa4\x08\x6a\x01\xbb\x1b\xf3\xef\xd6\x11\xcc\xbf\xef\x58\xfe\xe7\x66\x37\xa1\xd0\xaa\x79\xef\xd5\xa5\x2d\x04\x4e\xe7\xcc\x4b\x87\x4e\xa4\x12\x62\xb7\x7c\x1e\x5c\x3d\x53\x9d\x30\xd3\x31\xb6\x44\xd7\xff\x18\x61\xc5\xca\x85\x9a\x47\x5f\x66\x10\x2a\xe4\x6d\x2c\x36\x7f\x7d\x42\xd0\xb0\xa5\xfa\x12\x5b\x65\x06\x23\x56\xf2\xe9\xc7\xec\x97\x11\xcc\xfe\x4c\xed\x8c\x6f\xd9\x48\xe0\x6a\x3c\xd3\xb5\xbb\xd7\x90\xc1\xc4\xcf\xd3\xce\xa2\xb9\x9a\x84\x58\x53\x89\x4c\xe5\x3f\xaa\x04\x88\x4c\xb3\x51\x13\x76\x22\xb8\x55\x9e\x8b\x61\x76\x17\x12\xca\x2f\x74\x6a\xce\xe9\x3a\x40\x28\x72\xf4\xa5\x77\x8d\x29\x0c\xca\x14\x85\xdc\x5f\xf4\xf9\x10\x36\x1d\x10\xfb\x2e\xcf\x6f\x4d\x98\x35\x36\x20\xc9\xde\xea\x4a\xd0\x67\x97\x92\xdf\xbf\x3a\x87\x90\xfb\xa4\x22\xa6\xcf\xb4\x9a\xb0\x39\xc5\xf7\xaa\x47\x69\x12\x83\x31\x6f\xfb\x2f\xdc\xa3\xf9\x0c\x2c\xb6\x6d\xfe\x30\x5f\xf2\x21\xe1\x65\xd7\x6c\x51\xde\xab\xd3\x09\xbb\xf5\xda\xe5\x1b\x1c\x9e\x12\x6c\xab\x53\xe7\xfd\x87\x27\x26\x53\x53\xcd\x26\x52\x19\x9c\x94\xbb\xc8\xf4\x8a\x37\x11\x12\x77\x79\xbc\xaf\x9f\x1c\x1d\xbd\xad\xdf\x74\xf8\xac\x06\xc1\x9b\x75\x7a\xd1\xcb\x2d\x26\xff\x94\x8d\xaa\xc2\xeb\xc4\x5e\xab\xfe\x53\x3c\x99\xc8\x4b\x1e\x5d\x02\x84\xb4\x5f\xe6\x5c\xbb\x5d\x17\x12\x2e\x2c\xdb\x70\x3b\x5f\x2e\x8e\xc1\xf4\xb9\xe6\x75\x6d\xeb\xcc\x08\x0f\xa6\x7a\x27\x96\xc6\x1e\x27\xc8\x17\xd6\x6e\x8c\xdc\xd1\x4c\xe0\x17\x14\x8d\xff\xc0\x64\x10\x38\x78\x4c\x62\xde\xf8\x99\x11\xb4\x15\x13\x37\x87\x1d\x54\x23\x5c\x0f\x8e\xea\xb5\x73\xb5\x25\x1c\x2a\x3a\x15\xb9\x74\xc9\x0d\x42\xf3\x2d\x37\xc3\xb2\xa7\xc5\x0c\x16\x18\x3c\x26\xa1\x87\x76\x04\xdb\x32\x43\xd6\x42\x87\x7d\x04\x35\xad\x2d\x01\x39\x7a\xad\x0c\x62\x2d\x04\xcb\xee\x8a\x38\x11\x4e\xb9\x0c\x72\xdb\x55\x54\x12\x66\xfa\x9c\x3d\x62\xe6\xf4\x87\x85\x8c\xf7\x5f\x45\x92\x1a\x3d\x18\x98\x55\xb6\xcd\xe8\xab\xdb\x4d\x38\xc3\x75\x50\x72\x5b\xb6\x3a\xc1\x56\x66\xc8\xef\xa8\x8b\x1b\x61\x85\xda\xb6\x43\x3b\xaf\x3d\x22\x5c\x61\x2d\x88\xca\x88\xbc\x4e\x78\x1e\xd8\x6f\xa4\xa2\x7b\x98\x70\x39\xd0\x79\xe2\x80\x95\x23\x61\xec\x65\x23\xdf\x51\x97\xdd\xff\xc0\xeb\xe7\x5a\x65\xad\xc7\xbc\x84\x6e\xf5\x63\x1a\x5b\xe7\xc8\x10\x78\xb6\x7a\x33\xcf\x34\x66\x12\x72\x34\xe7\x2d\xe4\x9f\x76\x80\xa0\x39\x9b\xf7\xe9\x71\xcf\x5c\xc2\xe3\xd3\x0d\x86\xc1\xef\x56\x12\x9e\xb7\x97\xcb\xf6\x5f\xed\x61\xe1\xbc\xd4\x94\xc7\x3d\x4f\xd7\x11\x0c\x85\xd8\x6f\x08\x0c\x44\x33\xf8\x63\x45\x8e\xcb\x83\x5f\x13\x3e\x4e\x93\x6f\xd3\xd9\xf5\x82\x70\x4f\xb2\xff\xe5\x36\xa1\x44\x06\x03\x5a\x3b\xd6\x32\x79\xb7\x09\xf6\x89\x9f\xa3\x06\xd9\x14\x09\x51\xa1\xd7\xab\xb2\x38\x4e\x11\xd8\x9e\xb2\xc9\x69\x2c\x0b\x26\x2c\x76\x78\xfd\xbb\x67\x6a\x28\x03\xff\x89\x73\x2d\x9f\x59\xa1\x84\x9f\xee\x37\xdc\xb8\xbc\x5e\x32\xa8\x3a\x6b\xbc\xf6\xd9\x84\x39\x81\xab\x61\xe4\xd5\xbc\xcb\x6a\x84\x90\xf3\xfa\x76\xcf\x57\xec\x26\xac\xfb\xfa\x61\xb6\x7b\x51\x2a\x03\xb6\xc0\xaf\xa9\x1d\x71\x69\x84\xe0\xf0\x9d\xd3\x76\xaf\x4a\x24\x98\x9f\xbb\xa3\xa2\x30\x89\x55\x3f\x4c\x62\x55\xce\x96\x11\xce\xf9\x1f\xce\xca\x5c\x57\x4c\xe0\x38\xe9\xb4\x34\xa6\x23\xfc\x1f\xc0\xb4\xf8\xd3\xa7\x1a\x6f\x42\xc5\xd3\x8f\xde\x87\x9b\x0b\x08\x0b\x9f\x76\xd7\x16\xb9\x55\x30\xf0\x79\xa1\x12\x19\xad\x17\x4e\x38\xf8\x6a\x98\x7f\x0e\x35\x32\x18\xb3\xbc\xd3\xf0\xac\xc1\x87\x50\x5b\xf8\x78\x98\x5f\x3e\x86\xd0\xbc\x2b\xcb\x8b\xcf\x3d\x91\xe0\x10\x63\x2f\x12\xef\x51\x4e\xc8\xbf\x7b\x83\xaf\x59\x69\x80\x30\x2b\x2f\xb6\x54\x4e\xf4\x13\x21\x60\xfb\xda\x53\x6a\xd2\xb1\x84\x1a\xcd\xb1\x1f\xbf\x54\x1a\x19\xb8\x9e\x53\x9c\xb8\xd1\xd8\x45\x88\x39\x16\x7c\xfe\x99\xa4\x23\x41\xcc\xbb\x6f\xd7\x0f\x2e\x3f\xc2\x9c\x25\x83\x96\xd7\x7f\x67\x13\x2c\x36\x2f\x13\x29\x6b\x73\x20\x6c\xd1\x6b\xd7\x7a\x35\x7a\x9a\xf0\xff\x63\xeb\x3e\xc3\xb9\xfc\xdf\x3f\x8e\xab\xb4\x44\x45\xa1\x9d\x48\x29\x45\x65\x15\x71\x22\x95\x44\x08\xa1\x61\x66\x54\x92\x52\x89\x52\x32\x8a\x64\x66\x64\x2b\x44\x54\xf6\x88\xb8\xec\x2d\x33\x0d\x0a\x59\x89\x8a\x86\x5e\x94\xfc\x0f\xdd\xf8\x7f\xbb\xf1\xbb\xf7\x38\x9e\xe7\xfb\x73\xc3\x71\x7c\x5c\xd7\xfb\xbc\xc3\x5c\xdb\x35\x13\x36\x1a\xa7\x08\x43\xdb\xac\x8f\x8a\xbc\xd0\x20\x68\x76\xb0\xf1\xa6\xd6\x9c\x22\x74\x9e\xd8\xe0\x76\x9c\x84\x08\xfa\x63\xb1\x5f\x4f\xc5\x3b\x11\x9e\x1b\x64\x1e\x3c\x68\xe4\x49\xd8\x6c\xcd\x3f\xf7\xc6\x8f\x2f\x84\x67\x2b\x82\x8e\xb0\xa5\x46\x13\x16\xce\xca\x92\xd5\x9c\x1a\x45\xff\x08\x97\x38\x21\x64\xfe\x0f\x64\x9b\xe5\xd4\xda\x4d\x96\xfc\x53\xcc\x0f\x1b\x2f\xd2\x4c\xea\x92\xc3\x96\xb1\x9f\x61\x9c\xbb\x22\x09\xf3\x5d\xd6\x79\x74\x0b\x14\x32\xd0\x59\x66\xc2\x1d\x29\x78\x88\x60\x7a\x84\xab\x83\x45\xd7\x92\xc0\xfb\x90\x73\xf3\x9a\xa0\x64\x06\x1e\x6c\xcb\xf6\x3d\x7f\x55\xce\x60\xe4\xf3\xc6\xad\xdc\x8f\x8c\x09\xa2\x0f\x74\x3d\x3f\xbc\xab\x94\x83\x3f\xdb\x6f\x81\x13\x1b\xdd\xe8\x7f\xa0\xcb\x2a\x6d\xd7\x55\x4e\x37\xc2\xfe\x9c\x70\xba\xe7\x14\x4a\x30\x95\xda\x69\x7e\x54\x3c\x98\x90\x78\xdf\x5b\xcb\x3a\xa1\x8c\x41\xe8\x29\xc9\xb6\xfc\x45\x9f\x09\xd3\xee\x47\xbb\x46\x0b\x8e\x12\xfc\x0e\xcd\xdf\xdf\xb5\xa3\xe5\x1f\xb8\xbe\xdc\x79\x57\x52\xed\x29\x21\xc9\xa0\x92\xf3\xa5\xfa\x08\x03\x83\xe5\x27\xb6\x71\xff\x1e\x22\x94\x08\x78\x1c\xe5\x90\xcf\x27\xb4\x3f\xd8\xec\xbd\xe3\xcf\x4f\xc2\xe5\x8f\x25\x2b\x76\xb8\x34\xff\xf3\xf1\xed\xb3\xbf\x5a\x46\xef\x4e\x61\x60\xde\x56\xea\x1d\x3b\x85\x64\x6d\x0d\x81\xdd\x69\xb5\x04\x2b\x27\xf1\xb8\x34\xf7\x26\x42\xf2\x9d\xde\x3b\x7b\xaf\x24\x30\xc8\x9c\xf3\x48\x74\x76\x7c\x08\x41\xe3\x41\xf5\xf4\xe9\x7f\x9a\x09\xed\x77\x92\x64\x9b\xa3\x32\x09\x65\x2a\x27\xc3\xbe\x99\x3b\x13\x66\xb3\xab\x06\xa6\xda\x15\x12\x52\x8e\xe4\xc6\x46\xba\xd4\x30\x88\x8c\xb5\x75\xb8\x30\xb5\x88\x25\x1f\x2c\xb2\x1e\x3d\x53\x45\xe8\x1e\x57\xad\xfa\xc9\x5b\x49\x78\xf5\xda\x77\xb6\xc2\xce\x6a\x06\x07\x66\xaa\xd8\xdc\x7d\x5e\x43\xb8\x54\xc7\xfb\xa9\xf4\x5e\x25\x41\x5c\xc8\xd1\x4e\x61\xa0\x84\x30\x76\x57\xd4\xf2\x5d\x6c\x0a\xe1\x80\xfb\x89\xdb\x3f\xd6\xb8\x10\x0c\xe2\x23\x76\xbd\xb3\x6d\x22\x54\x1b\x1c\xe2\x8f\xd0\x2a\x22\x84\x14\xb2\xf4\x99\x7e\xce\x65\x60\xfb\xb4\x73\xc2\xcb\xa4\x9e\x41\x8c\xfe\x35\x4e\xff\x67\x55\x0c\x56\xcf\x98\xf5\x56\xb5\xaf\x84\xe0\x73\x23\x5a\x94\xc3\xa0\x84\x50\x30\xef\xfc\xc3\xb2\xe4\x16\x06\xe2\xed\x9c\xb9\xb6\xf5\x25\x84\xfc\xa8\x85\xa1\xc1\x66\x45\x84\x07\xdf\x2f\xbe\xb2\xd9\x56\x4a\x08\x11\x19\xec\x9d\xcf\x76\x9d\xb0\xda\x54\xfa\xe6\xfe\x64\x05\x42\xb6\x97\xfe\x9a\xf2\xf1\x4a\x06\x12\x5f\xc6\x0e\xca\xa9\x17\x11\x7a\xf6\x09\x54\xb1\x0b\x35\x10\xe6\x88\xb2\x5f\xfc\x75\xba\x96\x10\xaa\x3d\xd9\xd2\xfb\x31\x9d\xb0\x95\x5f\x4f\x61\xa7\x7b\x0e\xf3\x5f\xb1\x9b\x3d\xdc\x60\xe8\xd1\x21\x07\x21\xf5\x81\xf7\xe1\x3a\xca\x04\xb5\xd1\x95\xdb\x3d\x6f\xdd\x65\xa0\xb0\x76\x5b\xe2\x2d\x9f\x53\x84\x57\xee\x5e\x5f\xd6\x2a\x9f\x24\xd8\xff\x76\xb4\x33\xdb\x34\x9f\x50\x26\xf4\xe1\xd9\x32\x3d\x4b\x82\x09\xef\xa3\x0f\xd2\x57\x74\x09\x87\x27\x36\x68\x1e\x31\x61\x18\x08\xd7\xda\x16\x67\x4e\x0f\xa0\xff\x30\xfc\xba\x49\x2e\x6f\x76\x2a\x83\x55\x1b\x57\x95\x4d\x7c\x96\x20\xa4\x8b\xbf\xe3\x2d\x6f\xe6\x24\x24\xb4\xac\xb5\x95\x8c\x2c\x63\xb0\xad\x31\xc1\x2c\x9a\x23\x99\x41\xf1\xcc\xc5\x07\x14\xcd\x56\x13\x7e\xd9\x88\x5e\xbf\xfc\xeb\x14\xa1\xf9\x70\xfe\xe7\xef\xa9\xf6\x84\x1f\x76\x93\x3a\xe2\x0f\xc5\x08\x0a\xa1\xbb\x05\x67\x77\xd6\x11\xc2\x23\x0e\x4b\x6d\x1f\x2b\x25\x2c\x8c\x4f\xec\xb9\xea\x54\x4a\x30\x58\x98\x94\x13\x7b\xa5\x9c\xc1\xa4\x56\xde\x8f\x8a\xef\x79\x04\x1f\x56\x0b\x01\xed\xf4\x78\xc2\x2d\xc6\x4c\x60\x41\x68\x2c\xc1\xcf\x7c\x77\x69\xe7\x85\x44\xc2\xae\x80\x8b\x0a\x01\x26\x1a\x84\xa0\x54\x36\xf6\x70\xc3\x1c\xc2\xa5\x93\x4f\x04\x8c\xd6\xc4\x10\xd6\x3b\xf9\xb3\x73\xe6\x6d\x20\x2c\x6b\x69\x39\x13\xde\x57\x4c\xd8\x9f\x31\xf1\xb8\x72\x9e\x25\xe1\xcc\x3e\xb1\x5e\xdd\xe9\x27\x09\xbb\xb3\x0d\x4b\x7b\xbe\x3b\x13\xa6\x29\x88\x6a\x7f\xe4\x36\x25\x3c\xb4\x6a\x15\x5a\x71\xda\x87\x30\xbb\x57\x21\x31\x20\x4d\x9b\xd0\x61\x57\xc3\xb9\x6a\x75\x3a\x83\x21\x39\xd5\x35\xaf\x07\x04\xe8\x3f\x8c\x77\x3e\x8f\x5f\xd2\xac\x4c\xb8\x6d\x12\xa5\xab\xd5\xc2\x45\x58\xda\x94\x28\xf2\xc3\x4d\x94\xa0\x55\x53\xc7\xfd\x4c\x38\x82\xf0\xed\xdb\x46\xbf\xd6\x73\x66\x84\xd6\xcc\x31\x81\x39\xc1\x19\x04\xd7\xed\xb2\x9f\xf3\x7c\xe5\x08\x21\xfd\x7a\xb1\x2f\x22\x5d\x09\x89\xf6\xe5\x6c\x3b\x0c\x3f\x10\x96\x7f\xfe\xfd\xf2\x6e\xaf\x15\x21\x4a\xc0\x2d\x2b\x26\x99\x93\x30\x7a\x90\x25\x3f\x98\xf3\x0a\xe1\xcd\x7c\x2f\xf9\xe4\x79\x09\xcc\x7f\xa3\x67\xb6\xdb\x4d\x55\x32\xba\x0b\x50\x60\x6f\x52\x24\x68\x7f\x99\x50\xec\x73\x85\x4a\x3c\xeb\x18\x28\x2e\xb9\x1e\x15\x56\x7a\x86\x41\x5d\x98\xfc\x33\xfd\x0d\xd7\x08\xa2\x8b\x3e\x3e\xb8\xb3\xbb\x8c\xf0\xa2\xd3\x27\xeb\x67\x54\x03\x41\xfb\xf1\x96\x53\x6d\x96\x53\x5f\xc8\x39\xfb\xae\x1e\x62\xab\x22\xd4\x6e\xca\x69\xab\xdf\x9f\x46\x08\xff\x52\xfe\xfe\xf5\xd4\x68\x7c\xf5\x20\x4f\x6f\x41\x3c\x21\x89\x93\x8b\x9d\x9f\xff\x10\x21\xd4\x63\xfd\xa1\x1b\x66\xaa\x84\x19\xf6\x3a\xcb\xbe\x8e\xec\x26\x3c\xb9\x57\xa5\x69\xd9\xe7\x4f\xb8\xca\xf1\x3b\x5d\x4c\x78\x0b\x21\x2c\x90\x33\x7f\x55\x5b\x3e\x83\xca\xd0\xce\xb0\x0d\x71\x42\x84\x47\x67\xa9\xc1\x66\x86\x1f\xe1\xd3\x42\xbe\xee\xa3\xd7\x1b\x08\x96\x2b\x7a\x4f\x28\xd8\x6d\x21\x7c\x2b\x2b\xed\xf3\x79\x18\xcd\x40\x70\x49\xf2\xf4\x4a\x2d\x3d\x82\xba\xfc\x92\xcf\x0b\xd3\x6e\x11\xde\xb6\xee\xd4\x1c\x92\x3a\x4f\x68\xfc\x1a\x14\x23\xc0\x96\xcf\xe0\x1e\xdf\x95\x73\xec\x2c\x7b\x08\x8a\x4d\x5b\x66\x78\xe6\x2a\x12\x1c\x05\xfb\x33\x57\xf1\xaf\x25\x18\x39\x6c\xf0\x73\xef\x2d\x93\xc3\x02\xe7\x27\x02\x1c\x82\x5f\xe4\x50\x51\x26\xf6\xc9\xf7\xf4\x43\x06\xe5\x62\xdf\xbe\x78\xb3\x19\xd3\x7f\x58\xfd\x24\x65\x7d\xe1\xba\x00\x42\x8d\xdf\x97\xcf\x9f\x3d\x25\x09\xd6\x72\xc9\x17\xf6\xfd\xba\x43\x28\x39\x77\xbc\x5f\x58\x87\x85\x10\xfd\xbb\xb2\x7e\x81\x8a\x36\xc1\xe1\x77\x2b\x47\x9e\x24\x43\x38\x77\xd5\xdb\xc9\x61\x5e\x21\x21\xc2\xd5\xbb\xab\xaf\xc9\x86\x90\x15\xbb\x23\xf5\x96\xdb\x5c\x82\x72\x14\xb3\xe1\x59\x70\x0d\x83\xed\x9d\x19\xfa\x8d\x5f\x82\x08\x87\xd2\x8e\xc6\x4b\x0e\xdf\x23\x30\xeb\xae\x2c\x8b\x49\xf5\x27\x9c\x7d\x5e\x2e\x15\x98\x9a\xc1\xe0\xcc\xe5\xba\x2e\x1b\xd1\x5b\x84\xf7\xa8\x63\xd9\xcf\x79\x90\x90\x60\xa6\xff\x79\xf8\xdd\x13\x06\x2b\xc3\x16\x95\x1f\x70\x4b\x21\x18\x4d\xdf\xf6\x7c\x64\xfb\x74\x42\x8c\xce\x80\x5b\x52\x98\x31\xc1\xd3\x46\x9d\xeb\xc5\x29\x6d\x82\xd7\xb0\xf3\x21\x55\x89\xb9\x04\xf3\x84\x47\x87\xd6\x7d\xc8\x66\x10\x21\x10\x2c\xc2\xa7\xf8\x92\x10\xe3\xb7\xb8\xf4\xa6\x60\x17\x61\xbf\xfb\x53\x8f\x67\x97\x2b\x09\x81\x43\x27\x07\x2e\x86\xd5\x12\x6e\xf4\x3c\xf8\xa9\x58\xd0\x46\x50\x7c\xfb\x56\x9d\xb5\xe5\x1a\xa1\x4b\xa9\xa0\xae\x45\xbb\x80\xc0\x9b\x75\x27\xea\x2f\x46\x4d\xad\x36\xa4\x06\xc7\x13\x4a\x89\x44\x9a\xa7\x8a\xd9\x1d\x26\xa6\x69\x0a\xe6\x9d\xa1\x51\x67\x8f\x38\x11\xce\xdb\xcf\xdf\x3e\xa7\xdc\x9b\xb0\xb5\xaa\xcf\x31\x67\x5d\x2e\xe1\xc2\xe3\x4d\xee\x2f\xff\xa8\x33\x08\x5a\xf3\x3b\x35\xb1\xd7\x99\x30\xc7\x45\xa0\xbc\x3b\x76\x39\xe1\xd0\xf6\x0d\x31\x6f\x9e\x14\x11\x4c\xac\xb5\x9f\xbd\x9e\xc2\xdd\x8e\x0d\xde\x7f\x71\x85\x7d\x2c\xe6\xe2\xde\x70\xc2\xeb\x40\x89\x99\x29\xdf\xad\x08\xb9\x1a\x01\xef\x7c\x37\x9b\x11\xaa\x0d\x33\x7c\x3e\xcf\xef\x20\x9c\x5f\x78\xea\x86\xf7\x54\x49\xeb\xf8\x1d\xbf\xd5\x7e\x06\xc1\xc1\xcd\x54\xb2\x63\xdb\x25\x02\xeb\xe5\xa3\x23\x1e\x0d\xd5\x84\x30\x6f\xa1\xe3\x2c\xe3\x87\x09\x2b\xe6\x8a\xe4\x2a\x2f\x30\x26\x34\x4c\x8c\xb3\xb9\xbd\x0b\x24\x74\x0a\x7c\x17\x2f\xf9\x7c\x94\x20\x78\xb8\x7b\xed\xbe\x46\x33\xc2\xab\x5b\xa7\x95\x30\xaa\x4e\x70\xfe\xb1\xe4\x95\xb3\xd7\x63\x02\x4f\xb2\x64\x83\x47\xe8\x06\x1a\x8b\x2f\xaa\x2d\x5f\xaa\x41\x70\x7e\x39\xf6\x7d\xf7\x5a\x35\xc2\x87\xf7\xdf\x85\x03\xcf\xeb\x12\x1a\x2e\xf5\x4f\x0b\x7a\x2b\x43\x50\xaa\xdf\x7a\xae\xd9\xd6\x9a\xe0\x50\x9f\xe4\xed\xd6\x68\x47\xb8\x99\xbd\xe8\xc5\x74\x1d\x4d\xc2\x2d\xf9\x22\xbb\x63\xfc\xdf\xe5\x20\xf8\xa8\x45\xf1\xcd\x3c\x1b\x42\x53\xd2\xc9\x36\x67\xf1\x67\x04\xf1\x66\x9a\xe5\x3b\x98\x42\xb8\xea\x55\xa4\xcb\xa1\x56\x4d\xf8\x66\xf1\x46\xc0\xd1\xf3\x3e\xc1\x59\xfe\x42\x82\xc2\x50\x22\xa1\x5c\xe3\xdd\x97\xa6\x0e\x5e\xc2\xae\x19\x5b\x3c\x8a\x66\xde\x27\xac\x0d\x5a\xae\x71\xf7\x43\x32\x61\x95\x65\xd0\x8d\xa2\x2d\x21\x84\xbc\x9d\x46\xdd\x5e\x5d\x85\x84\xfc\x2d\x37\xed\x3e\xc5\xe6\x12\x9e\x1e\x3b\xbe\x36\xe4\xa5\x31\xa1\xab\x9b\xe7\xad\xcd\xd4\xcb\xf3\xab\x80\xed\x81\x6a\xeb\x1b\x84\xac\xd7\x92\x77\x53\xf9\x8b\x09\x5e\x41\x7c\x85\x02\xec\xb7\x19\xdc\xdc\x92\x90\x65\x38\x62\x43\x70\xfb\x78\xf7\xe2\xd8\xd6\x04\x06\x33\x5d\x0b\xc7\xa3\xd8\x04\x08\x4d\xcf\x13\x78\x5f\x85\x18\x12\xea\xfb\x82\xb2\x3c\x0e\xc5\xfd\x03\xf1\x0d\xf3\xe7\xee\x96\x30\x24\x88\x0f\x79\xb1\xb4\xde\xdf\x4c\x58\xbe\x74\xbd\x6a\x60\x18\x0f\xa1\xe4\x67\xa7\xfc\xa2\x33\xe3\x72\x10\x7c\x5f\xbb\x7c\x55\x29\x11\xae\xbe\x5a\x13\x93\x31\x1e\x44\x30\xad\xb9\xf7\xa1\xe2\xaa\x14\xe1\xa6\xe5\xa1\x0d\x1f\x9f\xad\x21\x6c\x39\x33\xf1\xa1\xac\xed\x21\x61\x2c\x7c\xd9\xbb\x09\xf6\x5c\x06\x1b\x6b\x66\xb9\x2c\x2a\x75\x25\x54\xcd\x3d\xe7\x1c\xd7\x7a\x8d\xc1\xbb\x6d\x7c\xf3\x2c\x55\xae\x11\x8e\x0c\x7c\xdf\x2d\x65\xa4\x4e\xe0\xd4\x19\x16\xd7\x4e\xed\x93\xc3\x6e\xcd\xb8\xa7\xfc\xf3\x8e\x10\x0c\x63\xaf\xad\x13\x0b\x3b\x46\x70\x52\x1a\x13\x5a\xb0\x2a\xfc\x9f\x52\x28\x2d\x58\xb7\x7e\x1a\x37\xa1\xeb\x4f\xe2\xcb\x35\x0d\x82\x84\x8d\x16\x76\xac\x57\x2d\x36\x11\x6a\xc4\xfc\x47\x59\x19\x2e\x42\x9f\xa1\xd9\xe2\xef\x41\x2b\x09\x13\x4d\x5a\x93\x9e\xf3\xac\x09\x5b\x78\xf6\xd8\x7f\x8d\x66\x27\xc8\xd8\x54\xa5\xe8\x70\x68\x13\x64\xec\x36\x4b\xac\x90\x99\x47\xf0\x5c\xc5\xd2\xdc\xb3\xc6\x9b\xf0\x3c\xc0\xd9\xef\x6f\x89\x58\xa8\x6d\x2b\x68\x3c\x5c\x80\x4b\x83\x2f\xb7\x0d\x1c\x76\x22\xb0\xea\xeb\x45\x0d\xc7\x2a\x13\x6a\xac\xf6\x68\x3c\x1a\xc9\x63\xa0\xfd\x3a\xde\xd9\x8c\xbb\x88\xc1\x45\x6f\x87\xb5\x1e\x9a\x13\x72\x98\x28\xd1\x31\x5a\xaf\x25\x4b\xd8\xc5\x23\xb9\x73\xf4\x52\x3a\xe1\x8d\xf2\x31\x75\xb6\x4b\x41\x72\xb0\x8c\xea\x66\x8b\x90\xe7\x23\x4c\xbb\xa8\xe5\xd9\x9a\xd9\x2e\x07\x75\x7b\x2e\xf7\x33\xcd\x9a\x04\xab\x45\xcf\xe4\xae\xed\xbc\x41\xff\x95\xaa\x3a\xe5\xe3\xf3\x9e\x4a\x11\x92\xdb\x34\xb9\x66\xe4\xdd\x23\xe4\xc4\x86\x46\x2d\xe5\x71\x20\x78\x4a\x2e\xde\x73\x5f\x5e\x99\xd0\xfe\x33\xb2\xe7\x56\x6a\x11\x81\xeb\xc4\xf9\xac\xbf\x90\x38\x6e\xb9\xd0\x8f\x54\x09\x73\x4b\x37\xa6\x64\x4f\x6a\x32\xd0\x7e\x72\xe5\xcf\xde\x87\x49\x84\xed\x6b\x9a\xbb\x7f\xca\x27\x33\xb8\xd0\xf9\x71\x69\x47\x58\x12\x61\x33\xd9\x5b\xfb\x45\xfa\x10\x36\xbe\xf3\x32\x70\x59\x9f\x46\x70\x99\xe9\xa1\x70\xc7\x43\x88\xf0\xa6\x7e\x4f\xcf\x21\xdd\x75\x04\xb6\xdb\xcb\x53\x67\xdd\x4e\x25\xb8\xe5\xdf\xc8\xd6\x13\x0d\x25\x9c\x7b\x13\xc7\x6e\x7c\xa5\x84\x10\x2a\xbf\x2a\xf6\xb5\xbd\x3e\xc1\x7a\x9f\xc5\x87\xd1\x16\x7f\x82\xaa\xa9\xff\xd7\x7b\x8b\x32\x09\xbc\x2f\xa4\xcf\x1e\xd2\x7d\x42\x58\x10\x7b\x55\x2a\x66\xf6\x1c\x42\x40\xa5\x2b\x7f\xa5\xf6\x69\xc2\x1d\xe9\xa7\x77\xdf\x6d\x08\x20\x2c\xf4\xdc\x3e\x4d\xb4\xa8\x8d\x41\xd3\x36\x8e\x90\x42\xbb\x7d\x84\xfd\x02\xcd\x19\x4f\x19\x09\x82\x72\x85\x63\x47\x76\x96\x11\xc1\x58\x77\xe5\x88\xd9\x6f\x29\xc2\x7c\x0d\x35\xde\x99\x39\x31\x84\x78\xc3\x8a\x03\xb6\x7f\x62\x09\xa5\x2b\x36\x68\x89\x1a\x07\x12\x96\x3f\x8d\x7d\xae\xd0\xaf\x42\x58\x67\x2d\xae\x19\x52\xdb\x44\xa8\x28\xb8\x51\xb9\xc7\xf6\xb9\x1c\xac\x8b\x32\xd9\x2f\x9a\x70\x11\x36\xde\x93\xf9\xf2\x8c\x6f\xc6\x3f\xe8\x92\x3d\xfa\xe2\x83\xe3\x17\x39\x34\x24\xed\x8d\x39\xd7\x21\x4c\x90\xbd\xed\x21\xf1\xeb\x96\x2a\x61\xaf\xfd\x52\xfb\x65\x17\x4d\x08\xb5\xe1\xd7\xf9\x36\x1b\x6d\x23\xdc\xb3\xd7\xbb\x10\x74\x6e\x39\x61\xe4\xa3\xfa\x83\xda\xf2\x7e\x39\x98\x9c\x8a\x7d\x24\xba\xe6\x06\x41\x67\xd6\xa1\xfe\x1e\x09\xc7\x7f\xb0\xa5\xc0\x64\x7e\xe2\xea\xf3\x84\x22\x59\xbb\xbc\x73\xd7\x62\x09\x39\x9d\x1f\xef\x27\xb1\x1a\x11\xf6\x36\xdd\x28\xca\x74\xbf\x47\x88\x79\xb1\xf5\xb1\xb9\xaf\x21\xa1\xcd\x70\xd9\xda\xb2\xfb\x86\x04\x76\x99\x99\x9c\x6a\xea\x1a\x04\xfb\x7b\x89\x83\x6a\x93\x9a\x84\xde\x7b\xc6\x4f\x73\x92\x58\x08\x5c\x13\x15\xbf\xde\x76\xdc\xfe\xfb\xa7\x84\x36\x08\x59\x1e\x24\xc8\xbe\x48\xce\xba\x2d\x6b\x41\x78\x1f\x76\xed\xc7\x99\x49\x5f\x82\xc3\x2c\x6e\x6d\x2d\xa5\x58\xc2\x38\x3f\xbf\xa0\xbe\xf5\x3a\x82\xa0\x69\x8a\x9a\x40\x8a\x1a\x81\xa9\xea\xdf\xaa\x74\xb0\x98\x30\xa7\x67\x99\x7d\xa2\x04\x37\x61\x39\x77\x97\x06\xd7\x56\x09\xc2\xfa\xbc\x27\x9b\x12\xb9\x0f\x11\x46\xd9\x0d\x57\xd6\x8f\x71\x10\x0e\x7d\x2d\x7b\xea\xdb\xe4\x42\x08\x0e\xf8\xe2\x72\x6f\x96\x1e\x21\xa2\xd3\x25\x7e\x8f\x57\x03\x81\xd1\x37\x10\x95\x6f\x48\x24\x14\xf6\x6a\x2c\xb8\x9f\x6f\x44\xb8\x90\x57\x31\xf1\xc8\x39\x9e\xf0\x7a\xd5\x7c\xae\xe5\x3d\xcf\x68\x4c\x40\x98\x4f\x63\x76\x09\x03\xde\x46\xd3\xd2\x0d\x26\x07\x09\x3a\xb2\x2d\x6e\xe5\x8d\x69\x0c\x4c\x3a\x13\xa4\x23\xb2\x02\x09\xe1\xcb\x5c\x96\xdc\x33\x0c\x60\xf0\xa0\xec\xa4\x51\xc7\xc1\xdb\x84\xb1\x39\x75\x51\xa7\x5d\xcb\x09\x07\xcc\x14\xce\xef\xe0\x7a\x41\xe8\xc1\x0b\x3d\xd7\x60\x4e\x42\x5e\xc7\xc0\xee\xba\x01\x71\x42\x6d\xc6\xe4\xb7\x19\x07\x72\x08\x01\x6b\xe6\x6f\x5c\x7f\xe9\x12\xc1\xfa\x49\xef\x87\xdc\x25\x26\x84\x7b\x29\xce\x71\xb0\x08\x67\xb0\x41\xc7\x5f\x65\xa7\xae\x3f\x21\xac\x26\xfd\x8f\x8c\xd4\x02\xc2\x7d\x6f\xc9\xe5\x12\xec\xb6\x04\x2e\x8d\x85\xac\x4a\x3e\xf2\x84\xd7\x77\x86\x7e\xa7\x78\x26\x30\xe8\xce\x4d\x38\xd5\xe7\xff\x90\x10\xbc\xec\xd9\xb5\xdd\x65\xfd\x84\xf5\x0d\x06\x71\xdb\xe7\xff\x26\x78\x7a\x28\x7e\xfc\x58\xd4\x4f\xd0\xc9\x38\xa1\x7d\x8c\xe5\x39\x01\x4b\xac\x93\xdc\x9e\x4d\x3d\x68\x3d\xad\x96\xf5\x88\x3f\x25\x18\x5b\xf2\x25\x6a\x55\xc6\x12\x2e\xd8\xae\x51\x3a\xa2\x1b\x41\xc8\x77\xc3\xa0\xec\x85\x8b\x84\x33\xaf\xe2\x96\xdb\xbb\x35\x12\x56\xb8\xdb\x8c\xf7\x85\x07\x11\x22\xf7\x9c\x73\x49\x58\xd1\x4d\x98\xb9\x28\x79\xae\xee\x97\x41\x42\xc6\x72\x0e\xcb\xa8\xa9\x62\x27\xf7\xb1\x6f\x87\xae\x16\xe1\x95\x94\xc5\x34\xe3\x7e\x07\x06\x1b\x56\x05\xdc\x91\xbf\xfe\x8c\x70\xf2\x53\xbe\xad\x42\xaa\xde\xd4\x4f\x61\x1a\xfb\xac\x6b\x03\x81\xe3\xe4\xa3\x4f\x16\xfc\x0e\x84\x0f\xd7\x17\x64\xf5\x4d\x2a\xfe\x2f\x88\xbe\xf8\x71\xa9\xe9\xb6\x02\x21\xa6\x77\xbd\xa5\x56\xc8\x16\x42\x41\xde\xf1\x7a\xee\x15\xd9\x84\x07\x7f\x04\xcd\x9a\x46\xed\xfe\x17\xae\x0e\xde\xb3\x90\x9f\x6e\x4c\x48\x65\x7a\x96\x0b\x0e\x04\x30\xb0\xb9\xd8\x14\xa5\x53\x5d\x4c\x98\xbd\x6c\x72\x50\x64\x45\x1f\xa1\x5c\xad\xc3\x77\x59\xf9\x08\xc1\xa6\x50\xb1\x6c\x77\x59\x1d\xc1\x84\xcb\xcd\x72\xa5\x75\x26\xc1\xe2\xdc\xf0\x85\x9b\xfd\x7e\x84\x2a\xf1\x89\xf4\xdf\x09\x1e\x04\xb1\xed\xbb\x67\xae\xd2\x2c\x21\xf4\x25\x3b\x78\x3c\xef\xf5\x23\x08\xed\xf0\xe7\x63\x7b\xe0\x4f\x68\xdc\x29\xd5\xbb\x35\x32\x85\x41\xf9\xfc\xd6\x37\xab\x83\x8f\x13\x72\x64\x42\x6a\xe5\xad\x33\x08\xb6\x17\x14\x38\x6e\x96\xe9\xff\x03\x4d\xc3\xfd\x49\xcf\x4b\xfe\x2d\x9b\x3f\xed\xe8\x7c\xb7\x54\x92\xa0\x27\xf5\x3c\xca\xad\x79\x2e\x21\xa0\xf9\x87\xcc\x76\x79\xa3\xff\x85\x78\xc5\x6e\xb3\x45\x6e\x9a\x84\xdf\x5b\x52\x54\xdc\x4b\x94\x08\x9e\x85\x6e\xd6\xfb\x44\xd7\x10\x3e\xfb\x1f\x1a\xee\x73\xdc\x41\x88\x39\xe3\x7d\xb2\xbc\x82\xf7\x1f\x9c\x7c\x32\xe7\xd8\x78\xf8\x42\x42\x72\x46\xbd\xf9\x4c\xc5\xde\x02\x48\xca\xe8\x47\x1d\xbc\xd2\xcd\x00\x4e\xc7\xd9\xb7\xe3\x15\x83\xf0\x63\xd2\xa7\x37\x4c\xbc\x20\x58\x1d\x8e\xe7\x99\x9f\xe6\x42\xe8\xcd\xbc\xf1\x4a\xfa\x5c\x3a\xe1\x40\x3e\xaf\xef\x83\x95\x69\x84\xc1\x8c\x56\x55\xee\xed\x61\x0c\x42\x84\x92\xdf\x66\xbb\x49\x10\xee\x4a\x31\xdf\xef\x36\xc8\x10\x64\x6e\xf4\xf3\x10\x97\x38\xa1\x41\x4c\x36\xca\xb2\x85\x9f\x90\x58\x61\xe6\xa9\xff\x3c\x8d\x90\x68\x19\xfc\xaa\xc7\xb6\x81\xc1\xda\x23\xec\xef\x39\xe2\x22\x08\x72\x7f\x6a\x97\x89\x2a\xf2\x10\xfe\xd4\xfc\x1a\xbc\x5a\x9d\x41\x08\x5c\x19\xbc\x51\x7c\x20\x85\xc1\xe8\x86\x44\x83\x0c\x95\x4a\xc2\xf3\x1f\x79\x0f\xfe\x8e\xa4\x9b\xad\xb4\x3e\xf8\x2d\x25\xf8\xee\xad\xd8\x36\xb1\xce\x97\x70\x9d\xff\x0f\x47\x78\xee\x5a\xc2\x5b\x8f\x6c\xa7\xb6\xfb\xc9\x84\x3a\x4b\x5d\xdf\x57\x4f\xb4\x08\xb3\xf6\x19\x87\x5c\x3d\x13\xc6\x20\x32\xcb\x42\xc1\x4a\xc3\x9a\x30\x50\x1b\x10\xa0\xd4\xbb\x9e\xe0\x29\xf7\x45\xe3\xa0\x70\x19\x61\x55\xc6\x77\x3f\x27\x31\x86\x60\x79\xd7\xc2\xd1\xb0\x42\x95\xc0\x3a\xbe\xc2\x4b\xac\x4e\x97\x10\x3e\x39\xf2\x74\x70\xd7\x26\xc2\x5d\xd5\x84\x5f\xf5\xd1\x12\x04\xef\x96\x25\xa1\xd3\xdc\xcf\x10\x26\x36\x8b\xf9\x96\x4a\xdf\x64\xc0\x76\xd3\xe3\xd8\x65\xdd\x2a\x42\x73\x2d\x0f\x8a\x0a\x3e\x10\x4e\xa5\xcf\xbf\xa3\x12\x98\x44\x50\x5f\x7d\xed\x56\x4c\x8f\x0f\x01\xcd\xe7\x2e\xb6\x2c\x3d\x4d\x28\x70\x3b\xf3\xc7\xec\x88\x15\xe1\x40\x66\xc1\x86\xc1\x92\xd3\x84\xb1\x25\xb5\x13\x4b\xe4\x77\x11\xb6\x0a\xa3\xd3\xdb\xef\x04\xe1\xae\xa7\xff\xa1\x79\x69\xe7\x08\xae\xe1\x69\xe1\x61\x2d\x5d\x84\x82\x9d\x7a\xab\x46\xb2\xdf\x13\x9e\x98\xbc\x3e\x32\x7d\x59\x14\x21\xe5\xc3\xe3\xe4\x0e\x03\x6f\x06\xac\x2a\xb7\xdc\x15\x6d\x8a\x18\x8c\xff\x3e\xf0\x74\x8b\xca\x12\xc2\xb8\x82\xb9\xca\xb9\xa3\x0c\x61\xe9\xbe\xdd\x83\x95\x87\x63\x19\x88\xb0\xed\x3d\xb5\x5b\xb4\x90\xc1\xb8\xcc\x9b\xf7\x83\x81\x8f\x09\xa5\x0d\xbe\x97\xfe\x9e\xd9\xbc\xa3\x85\x5b\x71\x1a\x2b\xc1\x93\x2b\x69\xd3\x9e\xb0\x38\x06\x8f\x34\xe4\x75\x9a\xdd\x2f\x13\x0e\x44\x1f\x0b\x68\xb2\xba\xc7\x20\x60\xfe\xf1\x4b\x0b\x12\xf6\x13\x72\x35\xef\xdf\x52\x29\x18\x94\x43\xf0\xbd\x19\x39\xab\x67\x6d\x26\x84\x96\x94\x16\xb0\x7c\x99\xf1\x0f\xf4\xe6\xf9\xd8\xf6\x0d\x76\x17\x20\x83\x47\xb8\x6f\xc9\xb2\x1f\x72\x38\x71\x24\x48\xb2\x25\x25\x84\x20\x9e\x75\xe6\x60\x5e\xfd\x11\xc2\xa5\xc7\x66\x0f\x57\x88\xe9\x10\x62\x87\xcf\x3d\x1a\x3a\x31\x8d\x50\x60\xb4\xb3\xec\x98\x7f\x35\xc1\xba\x4f\x7e\xa2\xef\xdb\x6b\x06\x7a\x63\x3b\x56\xff\x71\xca\x25\xbc\x8c\x55\x0d\x4a\xd8\xa9\x43\xb8\xaa\xc1\xb4\xbd\x8d\x70\x62\x90\xcc\xc1\xcb\x5e\x65\xee\x44\xf0\x70\x88\x48\x89\x8f\xaa\x60\xb0\xf7\xbc\x66\x10\xf7\x12\x7b\xc2\xba\x6f\x36\x52\xdf\x3a\x4c\x09\xcd\x05\x5c\xdb\xbe\xaf\xf1\x23\x7c\xfd\x20\x2d\xb7\xc3\x67\x25\xc1\xf4\xfe\x8b\xb5\x89\x7d\xd2\x84\xe0\xa3\x41\xbf\xd4\x9d\x95\xff\x29\x0f\x8e\xdd\xd2\x1e\xef\x3c\x43\x10\x54\xb8\xfe\xa7\x7d\x66\x1d\x41\x64\x77\x46\xf0\xaf\xa9\x12\x32\x5b\x58\xcb\xa0\x4b\x8c\x30\x20\x70\x23\x45\xe4\x8f\x36\xc1\xcc\x20\xd9\x9c\x23\xfc\x1c\x61\x4d\xcc\x75\x56\x2d\x75\x1b\x42\x5d\xe4\x78\x17\x4f\xd1\x16\xc2\xa6\xbe\xf1\x23\xdb\x2a\xb8\x09\xfd\x3b\x23\x64\x5f\x4f\xbf\x43\x98\xdb\xa1\x14\xc2\x19\x30\x93\x70\xe8\xf8\xfc\x20\x73\xfb\x2a\x06\xe6\x88\xe8\x95\x5a\x9c\x4a\x10\xfd\xae\xf2\x9b\x47\x27\x96\x70\xc2\x32\xe7\x97\xda\x5c\x6d\x02\xa9\xe5\x18\x0e\x9b\x5d\x22\x98\x1c\xd1\xf3\xd4\xd8\x62\xf7\xcf\x88\xed\x54\x4a\x9f\x82\xca\x52\x42\x2d\xc5\x9d\xda\xf9\xf7\xbf\xae\xf0\x9c\x3d\x15\x7b\x5c\x8d\x20\xbf\x4e\xc5\xb1\xd7\x70\x07\x81\x7f\x5b\xd6\x9a\xe2\x1f\x09\x84\x3a\x43\x4b\x8e\x85\xac\x0f\x09\x6f\x65\x2f\x2a\x4d\xb3\x30\x26\xd4\x0f\x69\x69\x65\x64\x3e\x26\x14\x2e\xb8\xf9\xfe\xcf\x59\x7d\x42\xdd\x58\x5d\xa4\x89\x09\x07\xe1\xfc\xce\xcf\x36\xd2\xc9\xd1\x04\x57\x47\x91\x7b\x45\x72\x7e\x84\x15\x97\x4a\x85\x9f\xef\x6e\x66\x70\x34\xf1\xc6\x8a\x40\x75\x13\xc2\x6f\xc3\x5b\xcb\xd6\xa4\xcb\x10\xb8\x16\xcb\xaa\x86\xeb\xb7\x12\xbe\xe7\x65\x9f\x98\xa1\x92\x4a\x38\xf2\x6d\xb9\x1e\xb7\x49\x0c\xa1\xce\xe6\xa8\xfb\xe2\x29\x2c\x7d\xeb\xe4\x94\xd0\x7e\x96\x70\x6c\x5b\xe1\xac\x69\xa1\x5b\x09\x95\x33\x6d\xe2\x83\x3f\x97\x12\xbc\xd7\xd7\x34\xaa\xfa\x3f\x21\x54\xf3\xc8\x4e\x97\x9f\xd9\xc8\x80\x99\xb4\x93\xdc\x37\x55\xce\x07\x55\x8a\xb5\x5f\x54\x27\x6c\x8c\x11\x6d\x3f\xf0\x9c\x9b\xc0\xaa\x1d\x77\xbc\xe6\x57\x36\x41\x2b\xf1\xa5\xf8\xa5\x65\x5d\xff\x94\x91\x05\xf7\x36\xda\xfe\x8c\x20\x68\xb6\xaa\x57\xe6\x59\xbc\x21\x9c\x3f\xb9\xea\x48\xf3\x9b\x74\x1a\xdb\xe8\xb8\x29\xf4\xbe\x2b\x61\xb9\xa2\xee\x89\xb9\xc7\x82\x09\x4f\xa7\xc7\xeb\xf7\x1b\xdc\x26\xa8\x94\x2e\x5b\xf7\x2e\x57\x8f\xf0\xed\x45\xd5\xfe\x3f\x6c\xbb\x09\x51\x2b\x67\x9d\x2e\xfd\xf8\x91\x81\x31\xb7\xf6\xfd\x83\x71\x4e\x0c\x9a\xcc\xdf\xa6\x37\xb5\xcf\x23\xc4\x6a\x6c\xe5\xef\x7d\xf1\x80\x20\xfa\xb2\xad\xc5\xb2\x6b\x15\x61\x84\xcf\xf5\x92\xd3\x17\x03\x82\x5d\x85\x28\xff\x53\xf5\x22\x42\xd6\xc2\x6d\x1a\x57\x55\xe2\x08\x55\x3e\xb5\xeb\x0d\x85\xb8\x19\x58\x15\x1c\x73\x61\xd9\x70\x85\xa0\x37\x69\x6c\x60\xe2\x9f\x40\x78\x27\x98\x2e\x1f\x20\x3f\x40\x78\xb0\x67\xab\xae\x85\x57\x2a\xa1\xcf\x3c\xd2\xe8\x61\x7d\x26\x21\xd0\x3f\xe3\x92\x64\xd7\x43\x82\xe5\x9e\x47\xce\xc9\x35\xf7\x19\xb8\x7c\x4c\xf1\x88\xbe\xe6\x4a\x10\x52\xf4\x69\x0c\x9d\x73\x7e\x6a\xa1\xfe\xee\xbc\x40\x41\x81\x60\x77\xf4\x50\xc1\xbb\x13\x37\x18\x58\xb4\xbd\x67\xb3\x5b\x13\x48\x18\x30\x33\xc9\x59\xc4\x55\x40\xd0\x3a\xf3\x49\xc8\x26\xd4\x9c\xc0\x99\x99\x33\x72\x27\x2c\x8d\xf0\x9a\x57\x76\xe2\x65\xa9\x39\xc1\x48\x58\x5a\xdf\x69\xb1\x1e\x21\x9e\x45\xfa\xf3\xa5\x21\x49\xc2\x23\xe5\x5b\xf2\x1c\x76\xdc\x04\x1e\x57\x2b\xab\xf1\x41\x13\xc2\xf4\xfd\x4c\x56\xe1\x96\x78\x42\xb0\x79\xc4\x7d\xb5\x94\x42\x06\xc7\x58\xd4\x6e\x3f\x0a\xf7\x25\x0c\x6f\xd9\xfb\xee\xc6\xb7\x11\x06\x7b\x1a\xe7\xe8\xac\xe8\xa9\x24\x50\x48\x9e\x7d\xfa\xe5\x38\x82\x98\xb7\x50\x4a\x9a\x7a\x28\x81\x3f\x47\x64\xd7\x01\x81\x6f\x72\x98\x1d\xb4\x7c\xbf\x86\x91\x39\xc1\xe0\x90\x25\xef\xd6\xb8\x14\x82\x77\x9c\x5b\x36\x47\xb8\x16\x81\x83\xb1\x0f\x98\xcb\x76\x99\x50\xca\x73\xc4\xe3\x6f\x71\x51\x0f\x3a\xe0\xec\x96\xc4\x20\x7f\x8b\xf8\x95\x62\x1d\x3e\x42\xd6\xa9\x99\x54\xb5\x64\x0b\x41\xba\x8d\xaf\xbd\x59\xb5\x9f\xa0\x18\x96\xf3\x3c\xca\x6c\x06\x61\x5f\x59\xcc\xb7\x05\x41\x2e\x0c\xce\x87\x98\xfe\x79\x3d\x9c\x42\xb0\xc3\x82\x15\xbf\xe7\xf8\x12\xb4\x3b\x9d\x55\xdc\x23\x0a\x08\xef\xdf\xe4\x32\xbf\xa6\xca\xf6\x8a\xb0\x05\x4b\xf8\x8c\x08\xd3\x3b\xa6\x99\xba\xce\xbf\x44\x10\xd1\xc9\x1b\xb4\x93\x3e\x42\xa8\xd1\x5a\x55\x39\x37\xe3\x20\x61\x9a\xa8\x5a\xb3\xcd\xd9\x02\x06\x9c\x26\xcd\x81\x41\x2c\x59\x84\xbe\xc3\x06\x93\x59\x47\xfb\x09\x36\x77\x0c\xa6\x5f\xff\xd2\x49\xd8\x76\xfd\x58\xe9\x35\xc9\xa9\x8f\x87\x88\xda\xee\xb0\xde\xfa\x0f\x94\x95\xa7\x73\x9e\xd5\xac\x20\x54\x69\x2e\x3b\xfa\xb7\x74\x45\x0e\xf9\x1f\x7b\x55\x48\x10\x64\xc9\xe8\x9e\xf5\x38\x88\xf0\xc0\xff\xba\xb8\xc1\x54\x69\xac\x92\x7d\xa8\x24\x59\xc6\x80\x77\x61\xf1\xf1\xbf\x67\x36\x9d\x72\xdb\xc3\x2d\x2d\x41\x28\x16\x16\xe8\x99\x6f\xdd\x4b\x08\xf7\xb3\xa8\x7e\x2c\xfa\x90\x90\xf4\x48\xb7\xeb\xe9\x98\x08\xa1\x65\xf2\xe3\x82\x9a\x10\x36\xc2\xa1\x2d\xb1\x25\x39\x12\xd3\x09\xf7\xdd\x36\x57\x66\x29\x97\x10\x76\xe4\xb4\xe9\x9a\xf3\x16\x12\x4c\x1c\xa4\xed\x74\x8c\xd3\x09\xe7\x55\x02\x05\xab\xbf\xf6\x13\x0c\xf2\xfd\xb7\xff\xd0\x18\x22\x68\x1a\x67\x4e\x84\x2a\xf6\x12\xd2\xf4\x86\x92\x0a\x2e\xd6\x12\xce\x70\x7f\xac\x5c\xc0\x84\x12\x36\xe4\xc7\x9e\x4c\x8b\x71\x22\xb8\x2f\x1d\xdc\x6c\xb7\x37\x9a\xa0\x9f\x99\x1b\xf2\x32\x3b\x9a\xb0\xd2\x69\xe7\x2d\xee\x15\x55\x04\x2e\x2c\xa8\xe6\x99\x1a\xfd\xff\x99\x8d\x8f\x2e\x9d\x5d\xb7\x56\x84\x20\x54\x2f\x58\x13\x71\xeb\x22\xe1\x8f\xe8\x8d\x0e\xb6\xa9\x85\x7c\xae\xae\xbb\x70\xe9\xc5\x83\x84\xb6\x4f\x47\xbf\xbe\xe8\x54\x25\xa8\xd9\x34\x28\x75\xaa\x73\x10\x04\xde\x73\x07\x59\xbe\xe4\x23\x14\x1d\xfe\xe3\x1f\x10\xc5\x4b\x48\x92\xc9\x3a\xf0\x61\x6e\x15\xe1\xa3\xda\x0f\xdb\xf0\x73\x5c\x04\x83\xb7\x27\xce\xdd\xbc\x7b\x83\x30\xb6\x94\x75\xac\xfc\xfa\x4a\xc2\x50\xf6\xd7\xa4\xbe\xdb\x4f\x19\xec\xfe\xf5\x27\x63\xd0\x6f\x0e\xc1\x9f\xb6\x59\xec\x38\x67\x4b\xc8\x48\xa9\x5e\x6d\x36\x47\x9f\xf0\x52\xdc\x45\x73\xbf\xd0\x05\x82\xfd\xe9\x21\xfb\xa1\x68\x1d\x82\x49\x55\xf2\xa1\xf6\xf4\xa3\x84\xc6\x72\xdb\xf1\x25\xac\x12\x04\xb3\x47\x5f\x32\x1f\xef\x36\x23\x58\x7f\x94\x5e\x2c\x70\xaa\x87\x30\x72\x5e\xad\xb4\xa3\xdc\x90\x50\x19\xb4\x60\x94\xd1\x71\x65\x10\xbd\xae\xdc\xee\x67\x45\xf0\xd4\x62\xef\x1b\x98\xb1\xf2\x9b\x1c\x4a\xc6\x2f\x50\xda\xd3\x58\x06\x3d\xc3\x99\xa9\x71\x1e\x6b\x08\x43\xac\x6e\x35\x4d\xc1\x4b\x09\x91\x1e\xdf\x94\xb3\x7d\x5d\x08\x89\xa7\xe6\xf0\x7f\x59\x20\x4f\x70\xe8\x4b\xf5\xfd\xf4\xa2\x86\xc1\xa6\xfa\xe6\x77\x95\xdb\x0f\x4f\xad\x34\x3c\xce\x86\x75\xe5\x84\xec\x5a\x93\x97\x85\x1b\x2e\x12\x66\x16\x97\x48\xf0\xe4\x0b\x11\x96\xfc\x98\x13\x37\xaa\x62\x40\x48\x31\x9d\xc7\xed\x41\x45\x84\x18\x65\xe1\x01\x2d\x1c\x26\x08\xc7\x5b\x4d\x5f\xac\x7f\x8c\x41\xab\xbb\xd9\xa6\x79\x9f\x57\x11\x34\xcb\x0f\xbc\x93\xd0\x11\x24\xcc\x59\x38\xa8\x5b\x60\xb4\x88\xf0\xa8\xae\x69\xcc\xdd\xd0\x8d\x10\x2a\xa7\xbe\xb4\xda\x27\x92\x10\xa7\xa4\xf1\xf5\x9c\x50\x03\x81\xb7\xd8\x97\xff\x2f\x0c\x18\xa5\xef\xab\xcf\xd7\x13\xe6\x8f\x34\x5f\x9b\x58\x92\x4e\x10\xb3\xad\x67\x79\x5a\x75\x8b\xb0\x80\xe9\x17\x8f\x4f\x75\x23\xf4\x87\x6d\x96\xae\x5f\x53\xc6\xc0\xcf\xf5\xd5\x4a\x95\x9c\x5a\x06\xea\x0e\x7b\xe6\x48\x94\xd7\x32\x98\x2e\x34\xc7\x5e\xe2\x53\x10\x21\xc1\x67\xa1\xda\xb3\xb5\xfe\x84\xfd\xad\x96\xeb\xd3\x43\x6d\x08\x8e\xd5\x1c\x3e\xed\x3b\x52\x19\x9c\x18\x6f\x18\x6f\x0c\x2b\x64\xc0\x96\xcc\xe9\xbd\x59\xfd\x93\x1c\x7e\xb3\x0c\x2e\xbc\x18\x2a\x45\xa8\xd6\x4d\x0b\xea\x9a\xeb\x4c\x48\x60\x5a\xc5\x9e\x99\xb0\x13\xd8\xa5\x2d\x1d\x84\xa6\x59\x32\xc8\x16\xe4\xbb\xe6\x79\x35\x89\xe0\xb2\x52\xe7\x43\xc1\xd4\xa8\xfd\x99\xfb\xe6\x95\xbd\x6f\xe5\x50\x7d\xf7\xf7\xe6\x56\x9f\xe3\x84\x79\xdb\x59\xfd\x0f\x56\xa5\x31\xc8\x35\xfe\xb2\x32\x5d\xad\x82\x81\x80\xdd\xa2\xa2\xbc\xaa\x64\x82\x8e\xd0\xb4\x18\x21\x5d\x6b\xc2\xe9\x4d\x22\x1a\xc5\xb7\xae\x12\xde\x3d\xb8\x5c\x32\xda\x58\x4e\x98\xfd\xd9\x44\xe1\xb3\xd4\x59\x82\xf1\xb6\xb3\x59\xeb\x75\xaa\x08\xe7\xbe\x54\x0e\x8e\x07\x5f\x23\x2c\x59\xd7\xa2\xef\x35\xdc\x44\xc8\xd5\x39\x35\x79\x75\x8c\x85\x50\xf6\xd0\xb7\x25\x9c\x3b\x94\x30\x3e\x3f\x5b\xff\xe6\xf3\xe3\x84\x51\xbe\xac\x74\xee\x9d\x7e\x84\xbd\xf3\x22\x2b\xca\xea\x1b\x09\xbf\xf3\xf6\xcb\xff\x2d\x1f\x77\x65\xf8\xcd\xd1\xf3\x20\x3c\x63\x6d\xac\x29\x16\x6b\x20\xec\x6c\xff\x3d\x2b\xc4\xf0\x34\xc1\xaa\x72\x4d\x8e\xc2\x7d\x65\x82\xe2\x9b\x55\x15\xec\x26\xc6\x04\xdb\xfc\x7a\xe7\x09\x91\x78\xc2\x9b\x39\x8e\xbb\xd7\x4d\x2d\x52\x87\x6f\x19\xae\x39\xf5\xd6\xe6\x7f\x41\xd4\x57\x99\xf7\xe2\x0b\x33\xc2\x19\x3d\xff\x85\xdd\x26\xd2\x84\x92\xe2\x35\xb6\x91\x4f\x58\x08\x07\x3d\x3d\x2a\x79\x9f\x6c\xfd\x07\x06\x81\xf6\x46\x55\x0d\x1c\x34\xc6\x36\xf1\xdb\x79\xfe\x2e\x82\x3c\xd7\x74\xf7\xbc\x4d\x2f\x09\x9f\x02\x0c\xdd\xf4\x3a\x5b\x08\x61\x47\x83\x23\x39\x02\x33\x09\x11\x2e\x96\x9b\xb2\x46\xa7\xde\x8b\xd7\x46\x5f\xfa\xb7\x7a\x10\x44\xab\xdc\x7c\x36\x04\x9d\x20\xf0\x91\xf5\xd7\xdc\x13\x96\x84\x90\x70\xb6\xe9\x1d\x3f\x37\x13\x82\xb7\xbd\xe3\xab\x09\x5b\x42\x18\xd4\x3b\x57\x5b\xbe\xd2\x8d\x60\xb3\x8b\xe7\xc4\xf7\x05\x3e\x04\xa3\xc5\x7b\x17\x7e\xac\x35\x23\x70\x1f\xfe\xe6\x6f\x7f\x3a\x99\x01\x9f\xa4\x2c\x87\x6e\xe1\x69\x82\xd2\x91\x8a\x05\x25\x77\xd2\x09\x0b\x05\x6c\x76\x08\x72\x5e\x61\x30\x53\xaf\xcd\xf6\xd1\xc6\x76\x06\x9d\x82\x3b\x04\x39\x12\xf9\x18\x24\xb2\x76\x5c\xe9\x61\x35\x26\x7c\xe3\x30\x72\x78\xbc\x78\x29\x61\x76\x91\x7f\x7a\x06\x63\x42\x38\xc2\x38\x2b\x4b\x56\x78\x13\x96\x3e\x54\x7d\xc8\xfe\xf8\x36\x21\xcf\x68\xd4\xed\xec\xd1\x5c\x82\x60\xd0\xd6\x1d\x75\x15\x19\x0c\x22\x4c\x5f\xec\xaa\x8b\x7b\x43\x70\x1f\x1e\xdc\x1d\xbf\x2a\x8b\x30\x70\x58\xa8\x29\x6e\x79\x36\x61\xe8\xa9\x67\xfc\x15\xb5\x5d\x04\x8b\x2f\xfe\x31\x49\x7a\xb7\x08\xf2\xdf\xb7\xba\x7f\x3f\xbe\x90\x10\xab\xe0\x36\xfd\x6b\xcd\x2e\x82\xf8\xee\x82\xb3\x1d\x79\xc1\x84\xe9\xfb\x4a\xd3\x54\xd6\x5f\x27\xa8\x5f\xf3\x2a\xfe\x23\x76\x8b\x60\x6e\xe8\x5e\x7a\x7f\xb3\x2b\xa1\x77\x9f\x41\xaa\xef\x86\xab\x04\x76\xe1\xc1\x19\x93\xdb\x6d\x09\xd1\x23\x7c\x0e\xdb\xf9\xb4\x08\x8b\x5b\xb7\xec\xb4\xac\x90\x24\xec\xb2\xb9\xb5\xf0\x4b\x4b\x22\x41\xfc\xb9\x30\x29\x85\xca\x13\xac\xdc\x13\xdc\x39\x17\xce\x25\x3c\x1f\xf7\x5e\xae\xd1\xac\x41\x10\xb8\xfd\xa7\x5f\x7c\x96\x02\x21\xec\xf8\x67\xee\xbc\xd1\x34\x82\xf6\x33\x3e\xe5\x85\xda\x51\x84\xf5\x1d\x2c\x5c\xaa\xc9\x16\x04\x3b\x0f\x19\xbf\xd2\x1f\x72\x04\x3d\x73\xf1\xb1\x91\x81\xe7\x0c\x6c\x6d\x53\xb6\x8f\xf2\x74\x30\x58\xd7\xd8\xfc\xd0\xee\x62\x15\xe1\xe4\xb3\xf6\x50\xce\x2c\x03\xc2\xe8\x5b\xfb\xbc\x13\x86\xda\x84\xab\x3b\x72\x75\x44\xa5\x9f\x12\x7c\xba\xef\xd9\x65\x48\x6f\x23\xbc\x76\x6c\x5e\xd3\xe8\x69\x4a\xc8\x6c\x9c\x79\x27\x5e\x5a\x99\x10\x5a\xdc\xbc\xc2\x37\x4c\x87\xb0\x7e\xa9\xd1\x96\xce\x7e\x75\xc2\xe9\xe5\x7e\x1d\xdb\x3b\x8f\x32\xe8\x0b\x92\xd9\xc1\x76\xd3\x9d\x50\xb4\x30\x88\x45\xf1\xde\x51\x82\x7f\xa6\x30\x17\x4b\x22\x1f\x41\x67\x4b\xc9\xa7\x5d\x1d\xa9\x04\x69\xc7\xc8\x4f\x93\x0f\x36\x11\xb8\x43\xf7\x0d\x4d\xbb\xd3\x41\x10\x09\xf2\xe0\x39\xb3\x6f\x33\xa1\x6b\xfe\xb9\x1b\x9c\xa3\x1e\x84\xbb\xc7\xae\xec\x14\x8a\x3a\xcf\x40\x5e\xdd\xdd\xfc\xe9\xf0\xa4\x1c\x56\x66\x2e\x95\xf2\xd5\xef\x63\xb0\x78\x6f\xef\xcd\x79\xe7\x0f\x10\x9e\x86\x66\xba\xc8\x09\xe9\x10\x8e\x66\xaa\xe6\xb3\x75\xc5\x13\xf2\x82\xe4\x15\x0e\x1f\x0f\x62\xc0\x76\x46\xb5\x7d\x55\x5a\x36\xe1\xc4\x2c\xbd\xcc\x69\x13\x87\x09\x05\xfb\xf4\xab\x1b\xad\x47\xe5\x70\xe6\x49\xec\x71\x85\x98\x28\xfa\x0f\x65\x4b\x77\x6c\x33\xca\xf4\x23\x0c\x2e\xdb\x90\x51\xbb\x92\x8f\x90\x69\xa9\x23\xba\xda\xf3\x3c\x61\x46\xf2\xe7\xb5\x03\x6e\x9b\x08\x05\x13\x6f\xf8\xff\x08\xac\x25\xf8\x0d\xe5\x6c\x10\xdd\xb8\x81\x70\x70\x49\x84\xdc\x8e\x63\x85\x84\x17\x2d\x27\x04\xf3\x76\xc7\x13\x16\xb2\xa4\xb6\x04\xe4\xb5\x13\x2e\xba\xf0\x35\x4b\xdf\x7c\x43\x28\xff\xe4\xac\x2d\xc9\xfb\x9a\x70\xe1\x73\x63\xac\xe8\x54\x79\xff\x63\xc6\xc1\xd5\x1d\x9a\x84\xe3\xd9\x86\xc2\x81\x66\x8e\x0c\x8e\x9e\x0e\x3b\x3b\xc4\x16\x46\x58\x62\xf1\x5a\xe0\xef\x68\xd7\xcf\xd6\xe6\xa6\x65\xc2\x84\x3d\x6f\x8f\x9c\xe9\x5c\xf4\x94\xb0\xbe\xcc\xfe\xe1\x0c\xc3\x3d\x04\xb7\xac\x14\x5e\xf6\x79\x4b\x09\x87\x0f\x8d\xef\x36\xf4\x88\x63\xb0\x5d\x76\xc5\xd3\x04\x7b\x5f\x06\x35\xfb\x39\x1f\x56\x7e\x16\x23\xdc\x3a\xfd\xac\x71\x41\x5c\x03\x33\x96\xdf\xe7\xf0\x37\xec\x9f\x37\xa2\xe3\x75\xf9\x34\xe1\x53\x44\x33\xef\xdb\x8c\xfd\x04\x75\xbf\x37\x3d\x7d\x8d\xa3\x72\xd0\x1e\xbf\x5d\xbd\xb4\xd5\x9f\xc1\x51\x47\xbb\xca\xbc\xde\x78\x82\xe9\x89\x65\x7c\xd9\x8a\xf5\x84\x5d\x9c\x6b\x82\xf2\xa7\x8a\x18\xa3\x13\x79\x2c\x6d\x39\x41\xd1\x60\xd9\x12\xc3\xea\x48\x82\xf4\x8a\xf8\x08\xab\x6c\x3f\x42\xa1\xda\xd9\x63\x9d\x45\x81\xff\x94\xfa\x53\x77\x7e\x1e\x92\xac\x27\xc8\x3f\x52\x9d\x33\x43\x39\xf7\x9f\x92\xb3\x79\x3c\xf1\xc0\x7a\xaf\x7f\x50\xfb\xae\x2d\x43\x53\x77\x11\x61\xd9\x6c\xc1\x12\xeb\xd2\x52\x82\xe2\x10\x27\x97\x4a\x8d\x11\xc1\x2c\xc1\xfa\x8c\xed\x76\x5d\x42\x4a\xf0\xb3\x96\xb6\x1b\xa6\x84\x09\xde\xcd\xd6\x59\x3f\x77\x11\x14\x97\x24\xf1\xf9\xdc\xdf\x4a\xc8\xb6\x2e\xb9\x22\x63\x60\x42\x28\x29\x3b\x64\xdc\x30\x22\x45\x30\x3a\x62\xd6\x36\x6a\xb0\x85\xf0\xeb\x93\x53\x73\xd6\xd4\x4b\x34\x78\xff\x2c\xf6\x7b\x0e\xc3\x72\x18\x50\xd6\x7e\xbf\xbe\x21\x98\x10\xa2\xae\xe2\x70\xf5\xc5\x11\x42\xf8\x12\x73\x8f\x39\x3c\x35\x0c\xee\x96\xe4\xe4\x26\xc6\xf5\x10\x54\x87\x7e\x3c\xfc\xd6\x1f\x4c\xe8\x97\xbe\xac\x7d\x4a\x88\x21\xbc\xe9\x38\x2d\xef\xd4\x6d\x40\x38\xbb\x7a\x71\xc2\x4a\x45\x2d\x42\xd5\x6f\x3f\xe7\xf1\x95\x4a\x04\xf3\xc5\xa7\xb9\x37\xc6\x8c\xcb\x61\x95\x5b\xfb\xbc\x13\x73\x96\x10\x6e\x3a\x76\x8a\xbe\x90\x51\x22\x6c\x39\x21\x9e\xf8\x78\xf9\x2e\x42\x58\x74\xca\x19\xa9\x83\xb6\xcc\x7f\xa5\x22\xad\x71\xf6\xbc\x6e\x45\xc2\x13\xc5\x3d\xb6\x4b\xab\x84\xff\x41\xf5\xf3\xc3\xab\x54\x7e\x1c\x20\xa8\x7d\xb9\x3b\xdb\xc7\x60\x29\xe1\x40\xff\xa4\xcf\x93\x3e\x2b\x42\xc2\x8a\x0e\xe3\x45\xeb\xaf\x12\x0c\xb6\xb1\xf9\xde\x4b\xf4\x25\x14\x38\x19\x37\x29\x95\xf9\x33\x78\x28\x9d\x57\x69\xfa\xda\x84\x30\x7e\xd2\x33\xb6\xf7\x8f\x15\x21\x4b\x3f\x45\x57\x49\x33\x93\x41\x47\x64\xa7\xf7\x6c\x9f\xeb\x84\x0d\x8f\xcf\x2d\xf5\xa8\x39\x44\x50\xba\x10\x66\x65\xeb\x25\x45\xb8\xc5\x56\x66\x10\xe8\x17\xc8\x80\xa9\x7a\x78\xb9\x8c\xa7\x98\x70\x46\x9b\x4c\x35\xbb\xac\x09\xfa\x2a\x07\x17\x8a\x44\x6a\x11\x32\xc3\x2e\x07\x9a\x45\x9b\x12\xde\x35\xde\x2d\x5a\x14\xdd\x52\x80\x67\x3b\xdf\xfe\xbe\x74\xfa\x1d\x41\x9b\xeb\xfb\xf6\xe9\x4a\xfd\x04\x85\xa1\x83\x62\xbe\x51\x3d\x04\x5b\xb3\xe8\x06\xe9\xa5\x21\x84\x1a\x8d\xcf\x0d\xf6\x46\x37\x09\xda\xed\x27\xb3\xed\x55\x92\x09\x6f\xde\x6c\xbd\x9c\x55\xe4\x4c\x48\x0a\x8a\xe1\x18\x18\xb6\x24\xd4\x7f\xe8\x7a\x1c\x94\xad\x41\x58\xec\x1e\xe7\x2a\x5d\xb3\x8f\x10\xdf\x99\x2e\x20\x35\x75\x9f\xbe\xe7\xbf\x31\x78\x4f\x65\x39\x61\xef\xb5\x66\xfb\x7d\x53\xf8\xd0\xa4\xf5\x45\x79\x0a\x5e\xb9\x5e\x6e\xe1\xe7\x0b\x08\x13\xc1\x76\xae\xd7\x7a\x2c\x09\x31\xfa\x3c\x06\xe6\xd3\xc3\x08\xa2\x2d\x45\x81\xaf\x61\x47\xd0\xec\xa9\x79\xdf\x58\x57\x44\xc8\x9b\x2f\x24\xe7\xee\x6d\x48\x10\x37\xad\x7c\xb4\xd3\x46\x9d\xf0\x53\xc5\x9a\x79\x1e\x64\x4c\x38\xae\xbb\x6d\xd3\x7b\x8e\x62\x06\xed\x79\xe7\x82\xbc\xce\xce\x22\x5c\x1d\x5a\x11\x7b\xd1\xb5\x4f\x0e\x8a\xf3\xee\x45\x0d\xcf\x3b\x4f\x98\xb6\xb1\x61\x7d\xd9\xc8\x1f\x39\xac\xcc\x32\x6a\x3e\x9c\xe8\x47\x30\x2c\xc9\x4d\xf0\x6a\x7d\xc3\xe0\xbc\xc2\x72\x2c\x33\x75\x20\x78\x6c\x91\xe2\x30\x0d\x71\x21\x8c\x55\x34\xba\xe7\xfd\x11\x21\x3c\x10\x6e\x70\xb2\xfc\x71\x8e\x30\xf6\xbc\xfa\x4f\xb2\x4f\x3d\xe1\x53\xdc\xf1\x6a\xbe\x19\xd5\x04\xee\x48\x6d\xe3\x13\x3d\xa6\x84\x56\x01\x99\xd0\x72\x0d\x57\xc2\xfc\x81\xde\xbc\xcb\x67\x03\x08\x46\xfa\x41\x1a\xfd\xe7\x03\x09\x93\xdd\x33\x3e\x3b\xff\x6e\x20\x78\x4b\x7d\x8b\xae\xbe\x70\x96\x20\x73\x71\xc9\xb9\xab\x07\xce\x12\xe6\xe4\xe7\xcc\xd6\x5f\xd1\xc3\x20\x88\x4f\xf8\xf2\x32\xf3\x06\x42\x9d\xaa\xa5\x71\xe4\xd4\xaf\x95\x92\x4c\x57\xf0\xde\x77\xe5\x04\xa9\xbd\xcd\x32\x6d\x6d\xef\x09\x7e\x6e\x17\x4b\x7d\x9e\x45\x33\xa8\x92\xe3\x7f\x70\x57\x2e\x8b\x50\x7a\xd3\x20\x67\xdd\x47\x71\x42\x84\xb5\xc8\x52\x93\xfa\x42\xc2\xf8\x9e\xe4\xb5\x57\x25\xcf\x13\x6a\x1e\xe6\xbb\x0a\x1d\x1b\x91\xc3\xae\x6b\x57\x7f\xdb\xae\x8d\x25\xcc\xcc\xf2\x0b\xd2\xe2\xed\x24\x4c\xae\xd1\xd9\xec\x3c\xdf\x8d\x50\xa8\xf5\x9e\xbb\x74\x73\x30\x21\x68\xf8\xcf\x07\x67\xb3\x5a\x82\xd8\x8f\x04\xc3\xed\xf3\x8b\x19\x64\xa9\x2e\xe6\x6e\xb3\x2f\x62\xe0\xd4\x26\xb7\xeb\x2f\x6e\x5e\x6c\xa9\x7f\x33\x85\x37\x7f\xfe\x78\xb2\x24\x7c\x90\xc3\xeb\x85\x5e\xf5\x22\xcb\x42\x08\x47\x0c\x79\x4d\x1a\x98\x62\x06\xb9\x0b\x15\x59\x46\x0e\xb9\x12\x4c\x36\x1b\x6c\xd9\x2a\x92\xc9\x40\x7f\xad\x85\xe8\xe8\x2e\x4b\x42\xd6\x0e\x9d\x5b\xc9\x4e\x79\x0c\x7c\x92\xdf\x9e\x14\x5a\x93\xcc\xe0\xa0\xd3\xfe\x66\x7d\xad\x4d\x04\x9f\x73\x23\x5c\xfe\x15\x89\x84\xf4\x3d\x4d\x0b\x46\x34\xad\x09\x65\xc5\xe6\x67\x25\x72\x4b\x09\x0e\xe3\x77\x2b\x9f\x0d\x3d\x26\xd4\xb0\xd8\xf1\x7b\x6a\xdf\x20\xd4\xca\x2c\xbd\x23\x31\x23\x8f\xa0\x26\xc6\xdf\xf2\x3b\x6e\x1f\xe1\x94\x5e\xbe\xc3\x37\xd7\x60\x06\xa5\x45\xbd\x96\xd1\x73\x94\x09\xaf\x8a\xd8\xe4\x42\x52\x32\x09\x72\x3b\xa2\xde\x1f\x61\x39\x4e\xf8\xc3\xf2\xfa\xee\xd8\x6c\x7f\xc2\xbc\x6b\x19\xab\x36\x86\x8b\x11\x16\xad\x90\xea\xa6\x56\x31\x42\xde\xd1\xf9\x97\x97\x7a\x89\xff\x83\xe6\xd7\xa5\x76\xbb\xd2\xba\x0a\xb0\x20\xd8\xf6\x41\x77\xae\x37\xc1\xcb\x7d\xd1\x77\xd3\xe5\xb7\x18\x08\x38\x34\x1a\x1b\xa7\xd8\x10\x7c\x25\x9b\xb3\x51\x19\xc8\xe0\x66\xce\x2f\x52\xeb\x0c\x60\x10\x78\xf3\xc9\x34\x96\x84\x2b\x0c\xf4\xa3\x9e\xb1\x59\x9c\x3d\x46\xf8\x16\xae\x9f\x7c\xf7\x69\x09\x83\x9d\xc1\x35\xe7\x4f\x17\xb2\x10\x42\x97\x4c\xc4\x26\xf4\xe7\x11\x2a\xae\xfe\x50\x99\xb7\xb2\x98\xe0\x65\x35\xb9\xd5\xf6\x94\xd7\x3f\x65\x93\xfa\x82\x0f\xed\xc2\xb2\x84\x58\x87\x68\x97\x8f\xc6\x77\x08\x47\xdf\xb2\xce\x5d\xf8\xd4\x9c\xf0\x7b\xae\xec\x23\x52\x7a\xc3\xc0\x2e\x6e\x59\x8c\x50\x41\x20\x03\xa9\xab\x95\x7a\x8e\xca\x1d\x0c\x36\x44\x4b\x9c\xdf\x1e\xbb\x9c\x50\x95\x7d\xa0\xe7\x63\xeb\x41\xc2\xd0\xa4\xdb\x23\xf3\x5f\xf7\xfe\x29\x7a\xb9\x7a\xd5\x19\x25\x7b\x09\x61\x15\x3c\x5e\x71\x22\x4a\x04\xee\xfc\x89\x82\x32\xd9\x76\xc2\xf2\xc9\x30\xcb\xe3\xbf\x5f\x10\xf8\xbf\x09\xbd\x2a\x9d\x2a\xb3\x13\xde\x18\xe7\x3a\xd7\x12\x8e\x1c\x70\x18\xd9\xc3\xad\x49\x90\x53\xee\x7f\xbd\x49\xa7\x84\x70\xce\xfe\x51\x1d\x13\x50\x44\x50\x1f\x11\xf4\x3f\xb5\xed\x07\x61\x97\xd0\xd2\x93\xc7\xa6\xf0\xc8\xba\x91\xdf\xe4\x7c\x19\x83\xd1\x2a\xa5\x6b\x9c\x03\xdf\x08\xdc\xcb\xdd\xb6\xc7\x7c\x68\x24\xe4\x64\x2d\xf8\x7a\x35\x35\x9a\xf0\x8b\xd3\xe4\xdd\x7a\xdd\x32\xc2\x84\xad\x4b\xe1\xce\xc3\x77\x08\x71\x55\x27\xaf\xbe\x3b\x13\x49\x78\xdf\x2f\x57\xe0\xb1\xea\x26\xe1\xfe\x30\x4f\x9f\x98\xac\x23\x83\x7d\xc1\x9c\xa7\x45\xd9\x67\x12\x74\x0e\x19\x49\x7a\x96\x46\x11\xc2\xeb\x46\xe6\xb4\xb2\x75\x12\x3a\x32\xcc\xab\xfe\x8e\x58\x39\x2b\xbc\xae\x8a\xf0\x12\xca\x6d\x1f\x1c\xd6\xf1\x30\x66\x10\x6a\x76\x56\xb9\x98\xe7\xe6\x3f\x23\x66\xb4\xa4\xa4\x79\x51\x67\x01\x5a\xbf\x07\x3a\xe4\x2a\xef\x22\x38\x9b\x7f\x14\xa0\x0b\x8f\x09\xe9\xec\x32\x8a\xf7\x5c\x1c\x09\xf2\x7a\x26\x2f\xe6\xfe\x36\x22\x44\x59\xad\x5e\x36\x2e\xc8\x10\x9e\x58\x06\x5e\xb1\x7d\xe5\x40\xd8\x73\xc7\x7f\xb5\xd8\x98\x23\xa1\xab\xf1\x58\x5d\xd5\xc6\x24\xc2\x8b\x03\xb3\x3f\x99\xfe\x3c\x4b\x98\x51\x1b\x7c\x73\x73\x9f\x09\xc1\xf5\xf2\xbe\xa2\x9e\x5b\x46\x84\xbe\x8e\x86\xb8\x02\x8e\x5c\x06\xce\xb1\x3a\x41\xeb\x15\xca\x18\xbc\x5f\xb4\x32\x74\xab\x57\x1e\x21\xef\x9b\x36\x67\x94\x47\x1f\x21\xc7\x82\xcd\xa1\xa5\x39\x91\xd0\xc1\xf9\x70\xdb\xca\xfc\x6c\xc2\xbc\xf2\x6d\xc1\x36\x01\xc5\x04\x61\x25\x85\x2f\x9b\x17\xdf\x25\x1c\x90\xd1\x9b\xf6\x76\xe4\x0c\xa1\xdc\x37\xfa\xae\x73\xed\x1b\x82\xe8\x9b\xdd\xb3\x7d\xd6\xe4\x11\x6a\x79\xcf\xa6\xef\xb0\xba\x4d\xb0\x68\x6b\x7c\x7b\x2d\x6f\x1e\xa1\x75\xf5\xb6\xdd\xf7\x4e\xc5\x13\xc2\x79\xdb\x44\x7f\x77\x67\x13\xd4\xef\x6e\x6e\x58\x99\x9c\x4e\xb0\x29\x54\xb7\xd3\x6e\xcf\x26\x34\xb9\xa7\x4c\xfb\x3b\xfa\xdc\x3f\x63\x53\x82\xdf\xd5\x7f\xe0\xac\x61\x3d\xb9\x61\x7a\x34\x61\xf7\xf4\x44\x5d\x4f\xa9\xcb\x84\xf0\x88\xad\xe5\x66\x8d\x57\x09\xfc\xdf\x1d\xef\xeb\xee\x11\x21\x3c\xe6\x92\x4e\x0e\x94\x6d\x62\x20\xb4\xfb\xf4\xbe\xa7\x8f\xef\x11\xc2\xfb\xe6\x4f\x26\x45\x64\x31\x58\xf0\xa4\x9f\x37\xf3\xeb\x4e\x82\x60\x8c\xe6\x82\x1d\x42\xca\x04\xcb\x83\xb3\xd7\x75\xfd\x78\x2f\x07\xcd\x03\x43\xc3\x25\xda\xdb\xe9\x7f\xc0\xd4\x90\x99\xf6\x62\x6d\xca\x3f\xe0\x6e\x53\x2f\xcf\x90\xaa\x26\x88\x79\x5c\x7b\xd6\x32\x55\x76\xf4\xc4\x85\xa9\xdf\x8c\x67\xfe\x3b\x73\x69\xb0\x39\x9b\x85\xdd\x98\xf0\x69\xc1\xc6\xac\xf7\x42\x76\xcc\x7f\xe5\xff\xc1\x23\x3a\xf7\x87\xec\xd4\x66\xf5\xff\x98\x29\x58\x94\xac\x75\x31\x8f\xc0\x9b\x16\x13\x99\xd4\x5f\x45\xb8\x3d\x3a\xcb\x3c\xe4\x42\x1e\x21\x91\xf3\xa4\xff\xa1\xa9\xd1\xbe\xdd\xcb\x78\xe3\xb3\xf9\x09\xd9\xe6\x26\x5f\x1c\xbe\x3e\x61\xa0\xc3\x31\xcc\x14\xf2\x5c\x20\xdc\xf9\xae\x2b\x73\x26\x56\x84\x70\xdd\x54\xea\x52\xc8\x1b\x47\x82\xe4\x91\x55\xd2\xc7\x99\x7e\x39\xac\x10\x78\xb9\x54\xf5\xd6\x3a\x02\x3b\xa9\x6c\xee\xb6\xdb\xc3\x40\xc1\xb3\x9c\x7f\x46\x11\x1f\xfd\x87\x79\x63\xf9\x12\xe3\x8b\x47\xe4\x30\x90\xbb\xe2\x41\xf7\x4e\x0e\x42\x9b\x04\xe7\x9b\x2f\x25\xb2\x84\x59\xd9\x29\x8d\x56\xa3\x1a\x04\xd6\xfe\xe5\x66\x73\x0c\xfd\x08\xe7\x12\x75\x84\x2c\xad\x05\x08\x0f\x07\x65\x0d\x63\x9b\x6b\x18\x68\x73\xbe\x0a\xe9\x39\xbb\x8c\xe0\x2c\xb1\x65\xb2\xa9\x35\x85\xa0\xa7\xbe\x87\x6d\xab\xd8\x4f\x39\x58\x57\x7e\xf8\x2c\xae\x7d\x9c\xc0\x69\x3e\xd1\xa8\x73\xf8\xd4\xff\x42\xf2\x45\xe7\xfb\x9f\xaf\x6a\x10\x74\xe1\x68\xb8\x54\x51\x83\x10\xe5\x9e\xd1\x3c\xa2\xf9\x92\x30\x27\xfb\xd7\xec\x5f\xcb\xd5\x08\xf5\x43\xbe\x5e\xf6\x1a\x0a\x04\xa1\xf8\x5e\x9b\xc7\x6f\xa6\xae\x3d\x1e\x03\x85\x38\x3c\x93\x50\xdb\x26\x7f\x35\xef\x6b\xe1\x3f\x08\x9f\x39\x6d\xc7\x5f\xcc\xf9\x90\xd4\x9e\x3b\x85\xb6\x3c\x7d\x45\xbf\xb1\x3a\xb9\xff\x30\xe7\x4e\x38\x6b\x9a\x53\x0a\x21\xed\xca\x60\xa0\x44\xd1\x1d\x82\x10\x87\xce\xa2\xf7\x67\x0f\x11\x66\xcc\x35\x7e\xd5\x6f\x60\x47\x08\x69\x4f\xff\x38\x76\xdd\x82\xa0\x23\xd2\xbb\x76\xff\x4d\x6d\xc2\xd9\x53\x22\xa3\xa1\xa6\xa9\x84\xe4\x3f\xd7\xf3\x8f\x56\xac\x9e\xda\x4e\x0e\xb4\x7d\xe5\xdb\x4f\x98\x2b\x7c\xe3\x84\x56\xaf\x22\x61\xee\xbc\x64\xd1\xa2\x88\x25\x04\xa5\x9b\x9d\x92\xfc\x71\xb1\x84\xb3\xa2\x8e\x12\x4f\xf4\xf2\x08\x49\xa7\xd4\xf8\x6e\x2c\x3f\x4f\x60\x7e\xf3\x69\x1e\x5d\x6b\x4b\x30\xfc\xf2\xea\xf0\xe8\x90\xf9\xff\x82\x1d\x3b\xe5\x6f\x28\xdd\x47\x88\x3d\x2d\x54\xca\xc3\x7e\x85\x41\xe0\xea\x49\xaf\xaf\x67\x74\x08\xf3\x2a\x4c\x2f\x4b\x3b\x0c\x10\x54\x17\x48\xce\xf2\x7c\x7a\x9f\xb0\x70\x79\xf1\xfe\xe3\x9c\x99\x84\x0e\xc9\x6d\xc1\xe9\x3f\x83\x18\x58\xae\x7d\xbc\x3e\xc7\x47\x95\xf0\xd2\xd3\x5b\x76\x50\xdf\x82\x10\x2f\x7f\x76\x48\xe1\x3b\x0f\x41\xa6\xf9\x62\xa8\xe8\xc2\x42\x06\xe0\x5a\x35\xcf\x66\x47\x01\x61\xc1\x3c\xb1\x9b\x01\x3f\x77\x4c\x3d\x0f\x2f\xdd\x08\x68\xd4\x25\x7c\x5b\xed\xc5\x72\xfd\xe4\x89\xff\x85\xfc\xbb\xe9\x16\x4b\xd9\x0c\x08\xaf\x6e\xe5\xf1\xaa\xbd\x97\x25\x34\xef\x1b\x35\x4c\xaa\xd6\x26\xc8\x6d\xea\xef\x14\x59\xb2\x78\x6a\x25\x5a\x3a\x5c\x95\x30\x9b\x70\xe1\x59\x82\xf3\xde\x75\x73\x18\x20\x70\xab\x76\x52\xf6\x1e\x82\xde\xd5\xed\xea\xaf\xf5\xe6\xfd\x03\xe5\xf9\x61\x35\x2f\x67\xf1\x11\xf6\x3a\xdf\xf8\x9e\xfb\xf9\x02\xc1\xce\xef\x24\xdb\xf7\x1b\xf2\x04\x85\x87\x5c\x3e\x15\x93\x16\x84\xca\x47\x7a\xb7\x6e\xa9\x69\x11\xb2\x1a\x8b\x5e\x98\xe9\xa7\x10\x9a\x14\xbe\xee\x39\xaa\x6f\x44\xa8\x0c\x7c\xe2\x41\x43\xb6\x84\x14\x5e\x85\x75\x32\x46\x4b\x09\x8e\x8d\xfd\x0f\x39\x1f\x1b\x13\xc6\xf9\x07\xc6\xba\xa5\xd6\x10\x8e\x78\xbc\x3d\xb9\xd2\x60\x80\x81\x86\x4d\xda\x91\xc4\x06\x7b\xc2\x27\xf3\x9b\x6b\xbe\xcf\xb1\x23\x1c\x5c\x1a\xf8\xd3\x8b\xbd\x98\x81\x75\xbe\xcc\x7c\x6d\x41\x77\x42\x7c\xdd\x6b\xd5\xf0\x8f\x7b\x08\xbf\x7f\xbe\x79\xb0\xe8\xb2\x12\x21\x54\xee\xb6\x96\xcf\xc6\x34\x82\x59\x5d\xd6\xf5\xbf\x68\x1d\x0d\xe9\xbb\xe5\xfd\x5d\x0e\xd2\x0f\xaa\xde\x47\xb0\x5e\x27\x18\x97\x3e\xe1\x15\x49\xf2\x62\xd0\x34\x79\xf9\x9b\xad\x66\x09\xe1\xd8\xa3\x47\x07\x86\xf6\xf7\x13\x16\x1c\xfd\x74\xc8\x6c\x66\x30\x61\x53\xd6\x7d\x0d\xf1\xf8\x56\xc2\x21\xf7\xf0\xb8\x47\x3f\x9b\x08\x91\xe6\x3b\xe7\x6d\x52\xbb\x43\x08\xbe\xfe\x8e\xc3\xea\xbc\x2d\x61\x16\x5f\x77\x42\x66\xf1\x26\x42\x2b\xf3\x75\x4e\xeb\xcf\x75\x84\x1b\x57\x96\x1d\x7e\xfb\x75\xd7\xd4\xa3\x72\xaf\x86\x7a\xb5\x10\xc1\xfb\x72\xe2\x8b\x47\x2d\xe9\x0c\xf6\x64\xc8\xed\x3c\xe7\x12\x4a\x88\xd8\xa1\x7f\x67\x28\x66\x1b\x21\x70\xc4\x48\x7c\x78\xe1\x25\x82\x4d\x9a\xc4\x98\x5b\x8b\x30\x21\xc4\xca\x24\x38\x35\x70\x09\x01\xea\x2e\x62\x73\x26\xae\x12\xb2\x4c\xb5\x14\x73\x32\x72\x19\xbc\x60\x39\x35\x87\x02\xf3\x18\xfc\xec\xce\x1d\x0c\xda\xfb\x8c\x81\x6a\xdd\x0c\x9b\x1e\xff\x7c\x06\xf6\x5a\x2d\x35\xfe\x29\xb9\x0c\x36\x34\xc4\xa6\x0f\xd7\xe7\x31\xd8\x7a\xe3\xbd\x78\x65\x47\x19\x83\x46\xd7\xdf\x41\x0b\xf6\x3c\x63\xc0\x2d\x70\x6b\x4b\x47\xd8\x75\x42\xa8\xe3\x43\x39\xee\x6c\x0e\x42\xdd\xf5\x6f\xde\xf1\x65\x22\x84\xaf\xe3\x3c\x3a\xcf\x86\x6a\x08\x9a\x0d\xdf\x8f\xc7\x4d\x95\xdb\xd9\xed\x95\xac\x4d\x71\x84\xa3\xc5\x06\x66\x4f\x3c\x16\x13\xd6\xee\xce\x4d\x74\x1d\x4f\xfb\x07\x6e\x33\x02\x2e\x2c\x0e\x1d\x97\x43\xcb\xcf\x14\x8b\xe9\x93\x4a\x84\x4b\x96\x12\x77\x12\xc5\x03\x09\x55\xdd\xcd\x1b\x64\x65\x82\x08\x21\x11\x42\x45\x72\x92\xef\x99\xff\xca\xf7\x37\x63\xd3\x15\xbb\xae\x13\xae\xbe\x4a\x2c\x2a\x74\x57\x20\x2c\xf8\x68\x10\x31\x8f\xd3\x99\x60\xbd\x3e\xc7\x29\x68\xf8\xfa\x3f\x65\xd0\xde\x38\x68\x5d\x73\x1d\xc1\x63\xae\x77\x47\xf4\x70\x36\x61\x57\xc3\xc7\x8a\xbc\xa6\x34\xc2\x57\xbb\x27\x5a\x7b\xb5\xa3\x09\x59\x7c\x5f\xf6\x7b\xcf\xde\x46\x50\xcf\x2a\x8d\x3d\x23\x2f\x41\x58\x17\xd8\xe6\xa3\xe6\x28\x45\x70\x0b\xa8\x74\x95\x1c\xe6\x27\xdc\x75\x5f\xd8\x39\x37\xc5\x83\x81\xdd\xe2\xbe\x3b\xb3\x2c\x57\x12\x78\xde\xd8\x4e\xe8\x72\xbc\x20\xec\x53\xee\x90\xae\xea\xb1\x23\xbc\xdd\x7b\x51\x3e\x5d\x20\x9b\x70\xfe\x97\x80\x01\xd4\x18\xc2\xd7\x19\xfb\xe3\xfa\x45\xc6\x09\x8d\x89\x7e\xaa\x4f\xa7\xb0\xc2\xae\xc6\x44\xaf\xf3\x02\x61\xb9\xb8\x4b\xf0\xad\xa9\xd2\xe9\xd2\x3e\xee\x50\x5a\x42\x88\xb5\x78\xec\x71\x33\x29\x9d\xc0\x39\xbf\xeb\xd5\xf1\x69\xc9\x84\x3e\x7f\xc3\x69\x2d\xb7\x1b\x09\x8b\x39\xf2\xe7\x70\x2d\x2f\x61\xc0\x56\xb1\xcf\x41\xe3\x93\x0b\x81\x77\x28\x56\x54\x79\xdd\x0b\x82\xe0\x49\x65\xa9\x91\xbb\xd6\x84\xc1\xd8\xcb\x9f\x54\x5f\x7b\x30\x38\xf4\x27\x29\x4e\x7e\xcc\x8c\xb0\xf7\x60\xa9\xa0\x8d\x81\x15\xe1\xf2\x8d\xe5\xef\xe6\x97\x2a\x10\x2e\xd6\xed\x5d\xb4\x48\xd6\x98\xb0\xf6\xbc\x78\x5d\xb7\xcb\x6e\x82\xae\x97\x64\xfe\xdc\x88\x3c\xc2\xf1\xca\x72\xf6\xb8\xbe\x7c\x42\xdc\xb8\x98\x92\xc5\xca\x76\x02\xd7\x83\x5d\xf3\xe7\x34\x7c\x22\x4c\x53\x71\x5a\x58\xe1\xf8\x86\xa0\xf7\x2c\xf1\x55\x9c\x53\x2b\xa1\xa6\xe6\x47\xbc\xb1\x88\x37\xe1\x35\xcf\xb9\x3a\xb6\xc1\x24\x06\x77\xfc\x9c\xb5\x78\x1b\xb3\x08\xbf\xda\xbe\xed\xbc\xb8\xc9\x9b\xf0\x7c\x73\xca\xe8\xed\xee\xf3\x04\xab\x34\xbd\x9d\x7e\x3d\x21\x84\xd5\x1f\xbf\x0b\x6e\x5d\x54\xc7\x20\x5f\x51\xf9\x49\x88\xd8\x07\x82\x9c\x55\x82\x7d\xfe\x81\x41\x82\xeb\xca\x8b\xa6\x85\x43\xdf\x08\x41\xdc\x12\x07\x3f\x6b\x14\x31\xd8\xe6\xe2\x39\x14\xdf\x10\x46\x38\x30\xfb\x71\x92\xd3\x48\x37\x61\x9e\x0f\xeb\x90\xa0\xc6\x7b\x42\x94\x81\x74\xf2\xe0\x83\x97\x84\x8e\xe4\xfb\xfe\x7b\xcf\xe6\x11\x14\x73\xf9\xe6\x65\x7d\xec\x27\xb4\xae\x29\xf0\x16\xe2\x0e\x26\xdc\xd4\x62\x37\xd3\x6b\xa8\x60\x20\x3c\x3e\xe0\xd1\x74\xf9\x06\xe1\x32\x97\xd2\x53\xe7\x32\x7d\x82\x92\xa8\x1f\xe5\x9c\xaf\x93\x43\x4c\xd5\x48\x47\xdb\xb6\x2d\x84\xd1\x97\x85\x92\xdf\x1f\xb7\x13\x44\xdb\xa6\x8d\x9d\xf3\x72\x21\x38\x95\x68\x3d\x76\x9f\x5a\x42\xa7\x1d\x13\x94\x7a\xa1\xbc\x93\x70\xd5\x62\xd1\x83\xa8\xa6\x16\x39\xc0\x51\x3a\xa5\xc9\xb0\x94\x50\x78\x67\x4f\xc4\xe2\x79\xde\xff\xe0\xb0\xcc\x4f\x43\xcf\xdb\xef\xe5\xfe\xc3\x96\xe4\x86\x02\x2b\x91\x20\xc2\x9d\xcc\xb2\xf1\xfa\xdf\x81\xff\x60\x53\xe1\x73\xfd\x8c\xbb\x87\x08\xa3\x22\xbe\xb7\x75\x17\xf2\xfc\x83\xb7\x69\x4b\xb9\x17\x77\x2e\x24\x6c\x5c\xab\xa5\xf1\x58\xd5\x8a\x10\x67\x96\xc6\xff\x8e\x65\x01\x41\xdc\x6e\x9e\x83\x2f\x65\x12\x34\xbe\xcc\x55\x12\x5a\x54\xc9\xe0\x7b\x1c\xa3\xe4\xa1\x12\x4b\x63\x7b\x52\xcb\x66\x70\x3e\x21\xe4\x84\x3e\x79\x5e\x9c\xf1\x5e\x0e\x61\x1a\xf3\xf4\x5b\x44\x52\x18\xf8\x8b\x45\x5d\xcc\x08\xbd\x4c\xa8\xa8\xca\x79\x92\x5e\x15\x44\x48\x92\xdf\x59\xaf\x79\xa2\x98\x90\x94\x78\x9a\x4d\xe6\x90\x22\xe1\xdb\x27\xbe\x88\x85\x55\x9e\x84\x46\xbd\x9d\xb3\x66\xd1\x23\xc2\x96\xb7\xd5\x4b\x6f\x6f\xb9\x44\xa8\xde\xec\x75\x74\xf1\x83\x74\x06\x73\xc5\xbe\xb1\x86\x86\x5f\x20\x48\xb1\x4f\xa0\xec\xf9\x0b\x82\x92\x43\xb8\xc3\xa7\x35\xa3\x0c\xf6\xf2\xdd\x8b\x4c\xcb\x19\x26\x5c\x7b\xb2\xf8\xdd\x68\xed\x0b\x82\x61\x10\xeb\xb5\xb3\xb7\x0b\x09\x5c\x2e\x21\xce\x9e\x31\x37\x99\xff\x20\x2e\x13\xb5\xcc\xba\xeb\x2c\xa1\xc5\xb3\x62\x16\xe2\x2f\x13\x56\xd7\x96\x7d\x1f\x70\xf3\x26\x68\xcb\x86\x95\xff\xc5\xaa\x33\xbe\xec\x2f\xed\x2e\x10\x0e\x89\x26\x18\xec\x2d\x91\x67\xf0\xea\x57\xbb\xa0\xd5\xe3\x34\xc2\xec\xa6\x15\xa7\xfe\x82\xdd\x2b\x58\xc4\x7f\xbb\x16\x41\xd8\xca\x66\xc5\x7a\x03\x2b\x06\x69\xaa\x33\x74\xf6\x66\x1f\x22\xac\x28\x13\x53\x7a\x77\x66\x17\x81\xaa\x63\x79\x32\xfb\x0d\x09\x72\x1f\xe2\x1c\x57\x5f\x48\x62\xf0\xd5\x11\x1e\xe6\xbe\x26\x84\x5a\x1f\x49\xb5\xc5\xd7\x53\x18\xd8\x9f\x3b\x7d\x46\xf5\xd7\x2e\xc2\xde\xc0\xce\xee\x33\x6d\x5e\x04\xc7\x2b\xdf\x37\x87\x24\x1a\x10\x76\x7d\x93\xc8\x5a\xad\xae\x41\x88\x6e\x38\x22\xbd\xd5\xbf\x80\xc1\xc0\xf1\x5d\x4f\x44\xe2\xd5\x08\x25\x37\x7e\xa6\x5c\x2e\xab\x23\xf0\xdb\xbf\x74\xaf\x0e\xc8\x26\x88\x3e\x54\x5a\x97\xf6\xad\x99\xf0\x73\xd5\xed\x96\xd6\x12\x6b\x82\x93\x92\x8b\xee\x4e\x13\x13\x82\x72\x4b\xa9\xd4\x87\x3d\x62\x04\xc7\x32\x36\x7f\xed\xc7\x83\x04\x9b\x5c\xb6\x5a\xb9\xb8\x42\x02\xab\xfe\x23\xfb\x39\x92\xcf\x19\x38\xb1\xa4\x6c\x33\xb9\xda\xcd\x60\xce\x8c\x19\x11\x0f\x9c\x06\x08\x4f\xee\x3a\xe6\x1b\xbf\x0f\x66\xd0\x50\x30\x31\x6a\xb7\xb0\x82\x30\x1a\x1b\xa4\x53\xb6\x2f\x92\xf0\xc9\x59\x34\x20\x7f\xc4\x97\x10\xf4\x7e\x8c\x2b\x80\xeb\x29\x41\x57\x8f\xe4\x5f\xef\x79\x4a\x50\xfc\xf9\x73\x65\xf4\x96\x62\xc2\xcc\xcb\x79\xfc\x6c\x41\xc5\x84\x50\xd5\xc2\x7b\x8b\xf6\x37\x33\x58\xd4\xad\x7d\xd4\x7d\xba\x07\x83\x76\xe2\x3c\x39\x77\x6a\xb4\x35\xf7\xc4\x6c\x1f\x03\x37\x42\x78\xb8\x2f\xef\xed\x17\x71\x0c\xd8\x78\x82\xf6\x6f\x7f\xea\x46\x58\xa1\x15\x70\xcc\x8b\xdb\x8d\xb0\x2f\x36\xef\xd1\xa6\xf5\x67\x08\x4a\x21\x7e\xab\x4b\x17\xb8\x12\x8e\x6d\xb7\x36\x53\xf4\xec\x27\x34\xbd\xf3\xce\xfc\xfc\xb5\x98\x50\x5a\xfd\xa5\x86\x9c\x4d\x09\xdb\xaf\xf1\x77\xa8\x55\x87\x33\x10\x7d\x6b\x5e\x28\x31\x3b\x80\xb0\xd1\x6f\xe3\x07\x23\x03\xdf\x7f\xb0\x2e\xa4\xa7\xe7\x9c\x89\x36\x21\xab\x3e\x70\xc7\x12\x9e\x4c\xc2\x2b\x37\xcb\x55\x55\x19\x46\x84\xaf\x83\xcb\x5a\x43\xa2\x8b\x09\x82\x3d\x0f\xb6\x8f\xeb\xd5\x11\x0e\x45\x36\xda\xb8\x5e\x69\x21\x54\x4c\x9c\x88\x92\x76\xab\x62\x20\xab\x31\x71\x12\x53\x23\xf6\x1d\x99\xde\x92\x03\xf6\x84\xee\xfd\xc1\x11\xae\x61\xce\x84\x76\xfd\x8d\x01\x2b\xd6\x3b\x10\x3c\x0c\x37\xac\x79\xa9\x62\x41\x30\xda\xe4\xb1\x42\xc3\xce\x84\x50\xce\x71\xae\x29\x86\xaf\x93\x30\x76\xf6\xd4\xe1\xdd\x9b\x63\x09\xb7\xb3\x2e\x1f\x75\xb5\xdc\x4d\x38\xfe\x60\x57\x1a\x97\x54\x05\xc1\xeb\xdc\x4e\x95\xc1\x38\x57\x66\xec\x53\xa6\x45\xae\xd3\x25\x42\x08\xfb\x8e\x6b\xd7\xec\x64\x09\x9b\x6b\xe7\x69\x74\x9c\x2b\x62\xe0\x9a\x5e\xbd\x37\xa3\xe3\x14\xa1\x6a\x86\xca\xcb\x84\x37\x53\x57\x13\x8b\xc5\x62\x15\x8e\x21\x84\x33\x49\xb3\xfc\x93\xb7\x0e\x10\xbc\xd7\x8c\xdd\x56\xbc\xaa\x46\x88\xfe\xdc\x3b\xdc\xb6\x66\x37\x21\xf5\x76\x8b\x4c\x27\x27\x3b\x61\xa9\x93\xe1\x1f\xed\xe8\xd9\x04\xf7\xe7\xdb\x4d\x0d\x06\x03\x09\x2a\x16\xcb\x3e\xeb\x06\xec\x26\xa8\x7d\x53\x39\xb8\xc3\xf7\x18\x21\x87\x25\xa2\x4f\xcb\x76\x17\x21\xd9\xc4\x73\x05\xb7\x92\x06\xa1\xcb\x29\x6c\xb6\xd0\x35\x22\xd8\x39\x97\x70\xbd\xec\xb4\x27\xf4\xbf\x75\x7b\x92\xfa\x28\x92\x10\xc7\x1f\xe9\xd9\x1d\x78\x94\xe0\xf1\xc3\x1a\xdc\x4a\xa7\x09\xf4\xf5\xe1\x53\x1d\xb6\x68\x06\x93\x6d\x33\x39\x84\xe3\x5c\x09\x11\x7e\xce\x89\xae\x7f\xec\x09\x2a\xf3\x4b\xd9\x92\xa6\xe9\x11\x1e\x05\xa9\x24\x54\x1c\xde\x4e\x90\x4b\x49\x59\x39\x1c\x97\xcc\x20\x42\x53\xfc\xd2\xb4\xc1\x4b\x84\xab\x8f\xa3\x12\x5c\x86\x6f\x32\xe0\x68\xf4\x78\x22\x2c\x9d\xc6\xc0\xbd\xc1\xfa\xba\xae\x80\x1e\x41\x27\xc3\x28\x35\x52\xad\x98\x70\xb4\xd1\x45\x27\x66\x62\xea\x12\x36\xed\x67\x9a\xcb\xba\x6b\x04\x5d\x96\x03\x4a\x81\x56\x79\x04\xab\xe4\x7c\x49\xd1\xef\xb3\x09\x19\x77\x62\x67\x46\xb2\x4a\x12\x8c\x03\x2f\xed\xb9\xb4\x64\x1b\xc1\x50\xda\x43\x72\x9a\xa6\x0a\x61\xf9\x6a\xf9\xab\x4a\xe9\x26\x04\xef\xea\x2f\x3e\x29\x4a\x07\x09\x9c\xbf\x2a\x64\x36\x1e\x3b\x45\xa8\xe7\x17\xb8\x7e\xdb\xbd\x87\xf0\xd3\xf6\x40\x8e\xdd\xed\x15\x84\x05\xb6\x8f\x2f\xef\x7b\x26\xc3\x80\xb7\xda\x2f\xaa\xec\xb6\x3c\x61\xbc\xea\x52\xb7\xda\xe0\xa4\x1c\xce\xee\xba\xda\x18\x1a\x71\x9d\xb0\xfe\xd0\xa9\x3d\x27\x58\xb4\x08\x5c\xeb\xdd\x27\x2c\x5e\x85\x11\x1c\x57\x7a\xdd\xbf\x90\x9e\xc6\xc0\x7f\xc9\xb3\x4d\x3f\x7a\x7b\x08\x22\x7d\xdf\x2e\x38\x77\xa4\x31\xa8\x8f\x33\xfa\x70\x73\x57\x21\x41\x80\xf3\xf0\x86\x03\x52\xef\x09\xf3\x44\xb8\x4a\x2d\x4b\xd3\x09\xea\x3f\x25\x23\xb8\xb7\x7f\x25\xf4\x59\x7a\x37\x1d\x14\x79\x4d\x98\x2f\x11\x83\xdc\x1d\x5f\x09\xcd\xbd\xe7\x63\x76\xcb\x7c\x25\x84\xed\xda\x98\x19\x9d\x38\x40\xb0\xa0\x81\x93\x2c\xc3\xef\x19\x5c\xbf\x75\x2b\x69\xda\x8d\x21\x42\xde\x43\xf1\xfd\xef\x1a\x46\x08\x5f\xba\x54\x91\x50\xf8\x8e\xd0\xcc\x33\xd2\xf9\x67\xc3\x73\xc2\xf5\x7a\x4b\xc5\xe9\xad\x9f\x19\x68\x73\x19\xfc\x3e\x90\x31\x4d\x1e\x9d\x96\xbc\xbf\xf5\xed\xba\x08\xe6\xc5\x77\xac\x12\x22\x3f\x11\x7c\xcd\xe6\xae\xe4\x39\x3b\x4c\xa8\xce\x1c\xca\x11\x38\xd9\xc7\x60\xef\xab\x77\x82\x11\x57\x3e\x12\xb4\x1f\x96\xeb\x1d\xb1\x98\x2d\x8f\x54\xdf\x21\xab\x1b\x53\xe5\x45\x6a\x21\x37\x9e\x7e\x22\xb0\x1a\x48\x3e\xf0\xd6\x9b\x2d\x8f\x05\x42\x7f\x92\x0d\xe7\x7f\x27\x08\x0a\x4b\xbe\x93\xca\xfe\x41\xd0\xfd\x61\xb1\x9d\x66\x7f\x64\x60\x97\x32\x5d\x46\xdf\x61\x92\x70\xd8\x64\x9b\x93\xea\xc7\x0c\x42\x6b\xe0\xfe\x23\xca\x76\x0d\x84\xb9\x7a\x4f\x1c\x8b\x52\xfb\x08\xac\x09\x3f\x9f\x4b\x1a\x77\x13\xa4\xdd\x6f\x05\x38\x55\xf4\x10\xfe\x78\xbd\x53\x1d\x1c\x08\x25\x08\xb1\x1f\x3b\xec\x55\xcc\x2a\x8f\x9b\xee\x2b\x24\xdd\x22\xbf\x12\x16\x5a\xd5\xf7\x0a\x8f\xcf\x93\xc7\x91\xcd\x0b\xd6\x3b\x37\x2f\x29\x44\xf2\x04\xfb\x0a\x4d\x96\x11\x06\x23\xf6\x99\x63\x89\x05\xac\xf2\x48\x2d\x6b\x94\x9f\x55\xdb\x47\x30\xb0\x6a\xbb\x7b\xd3\xec\x3d\xc1\xe9\x02\x1c\x39\x7f\x54\x33\x78\x97\x6f\x1b\x1c\xb4\xaa\x85\xc1\x3a\x16\xb6\x05\x81\x53\xf8\x72\xf1\xeb\xe4\xf8\x64\x39\x83\xf9\x33\xaf\x8c\x6c\x92\x1b\x20\x6c\x3f\xd7\xb5\x46\xf9\x87\x13\xe1\xe4\x6a\xab\x1d\x6a\x9a\x41\x04\x91\x7e\x0d\x8b\x65\xe3\xa6\x84\x8b\x46\x2b\x53\x2d\x35\x16\x11\xf2\x37\x4b\x78\xdc\x5f\x37\x8f\xc0\xb9\x7d\xfd\xb1\x49\x87\x00\xc2\x4e\x93\x91\x00\x7e\x56\x65\xc2\x4b\xd3\x23\x81\x73\x8b\xd2\x09\xdc\x6b\x8f\x58\x9c\x59\x9e\x41\x88\xd6\x29\x4c\xb3\xf1\xcc\x25\x24\xcb\xb4\x6b\x09\x75\x3e\x26\xf0\x47\xb3\xaa\xf8\x94\x37\x11\x62\x0c\x97\xca\x28\x6b\xa4\x12\x2e\x8d\x06\x3d\x73\xf0\xbd\x4f\x78\x97\xb4\x66\xf9\xeb\x2f\x56\x04\xa3\x17\x8d\x6c\x95\xad\xbb\x09\x91\x1f\x14\xba\x39\x53\x7b\x09\x41\x1a\x51\xef\x13\x7e\xdc\x66\x70\xd0\x4a\x69\x4b\xa2\xe5\x55\x06\x95\x9b\xc2\x3d\xce\xbc\x3b\x4f\xb8\x2c\xb2\x60\xfa\xf7\x65\xe9\x0c\x2e\xdc\xbc\xbd\x60\xf3\x4f\x6f\x42\x5f\xa6\x79\xa4\x37\x97\x25\xa1\x36\x5e\xe7\xcb\xc9\x87\x06\x84\x7b\xe3\x62\xa9\xd5\x85\x27\x09\xa6\xfc\x49\xf6\x45\x75\xd3\x08\xef\x5a\x63\x05\x85\x53\x6e\x12\x64\x2b\xf3\xed\xab\x2c\x5b\x09\xfc\xc6\xd1\xf3\xb7\x06\x7e\x22\x54\x6a\x6c\x4d\x09\xc9\xe9\x22\x9c\xdf\x11\x13\xd2\x7c\xbb\x87\xc0\x1f\x9b\x60\x7e\x56\x9e\x45\x1e\x4f\x6d\xe4\x3f\x2a\x38\x17\x32\x70\x5a\x88\x57\x7a\x7c\xcd\x0c\xd6\x26\x65\xfc\x8c\xba\xd8\x4d\xa8\xea\xda\xb6\xbd\xb5\x3d\x9f\x30\xbb\xf6\xc9\x01\xd7\x03\x3f\x08\xb9\xcf\xe3\xa4\xcd\x5e\x74\x13\x84\xd7\xaf\x69\xdf\x90\xf5\x8c\xa0\xd6\x76\x48\xe5\xe8\x6e\x1f\xc2\x8e\xdd\x97\xf4\x36\xd1\x1b\x82\x47\x61\xbe\xde\x09\x99\x37\xff\x8c\x32\xd8\x86\x4c\x17\x0d\x68\x12\x46\xe4\xa4\xd8\x83\xfc\xae\x10\x0a\x24\xfb\x6e\xf0\xb1\xb5\x32\x70\x12\x59\x6e\x99\xa6\x5a\x42\x68\xcf\x92\xba\x9a\x7a\xfc\x25\xc1\x68\xc6\x50\x43\xc5\xa3\x12\x06\x43\x29\xce\xda\x7f\x3c\xd2\x19\x98\x2f\xbc\x28\xa2\x79\xa0\x84\x20\xb4\x9a\x93\x71\xfd\x75\x97\x10\x39\x78\xda\xf0\x69\xa6\x31\xa1\x31\x6c\xd9\xdb\x83\xec\xb2\x04\xe1\x8c\x3f\x7e\x11\x15\x27\x08\x22\x32\xc7\xe7\xf5\x9d\x76\x61\xf0\xcd\xcb\xd6\x6d\x97\x94\x06\x61\xfb\xbd\x26\xc1\xb0\xe1\x4a\x06\xab\x03\xbf\x98\xca\x24\xdd\x27\x28\x54\x57\xc9\x36\x8b\xdb\x11\x4e\x1f\x3c\x17\xb4\xfc\xf2\x2d\x42\x4c\x28\xd7\x48\xa3\x90\x0f\x61\xc6\x3b\x8e\x43\xaa\xfc\x0f\x18\x0c\x96\x84\x44\x17\xab\x9d\x21\xcc\x6c\x68\x5a\xb3\x64\xd9\x36\xc2\xa1\x8a\x8a\x83\x26\x9a\xe2\x84\xb5\x3c\x4b\x67\x19\x2b\xf8\x11\xe4\x5f\xbf\x39\xfe\x42\xe2\x04\xa1\x34\x22\xe0\xce\x6a\x41\x13\x82\x6f\x59\xed\x50\xf7\xe9\x85\x04\x41\xed\xa6\xa5\x51\x35\x39\x84\x38\xbd\x92\x9e\x7d\x6f\x0a\x09\x97\x55\x77\x24\x6c\x8d\x19\x25\xf0\x4e\x5f\x5d\xe9\xac\xf8\x86\x90\x97\x7b\x4f\x2c\xf5\xe7\x18\x61\xdd\x85\xfd\xbb\x8c\x76\x7c\x20\x08\xc5\xe9\x86\xed\x9f\x3a\xbc\x62\xb6\x88\x70\x15\x4b\x03\xe1\x13\xef\x74\xc1\xe0\x59\x0d\x84\x96\xeb\x62\x1b\x76\xc8\xe5\x10\x34\x36\x65\xee\x53\x5a\x9b\x43\x50\xf3\xde\x68\xdb\x72\xa4\x9a\x70\x55\xe4\x9e\xe0\x7a\xa5\x5c\x82\xe9\x86\xae\xc0\x45\x3d\x59\x04\x31\xb5\xf5\xfe\xb2\x6b\xf3\x08\xb1\x0e\x8b\xc7\x79\x64\xcc\x08\x4a\xef\xd9\x9f\x15\x3b\x1a\x11\xd6\xe5\x7e\xf6\x7e\xd8\x77\x8c\x50\x98\xd2\x34\x49\x5b\x56\x10\x54\x7e\xdd\xd9\x91\xa5\x99\x4e\x90\x3f\x98\x6a\x17\x72\x54\x8f\xf0\x6b\xa3\xa3\xb2\xc0\x9d\x12\x42\x7f\xf0\xe5\x2f\x6b\x87\x0b\x09\xcc\x9b\x94\xe5\xe2\x2b\x18\x82\xf3\xda\x00\xb6\x19\x75\x6d\x04\x41\x83\x55\xde\x93\xbe\xa5\x84\xdb\xba\x25\x7f\xda\x5f\x26\x10\x9c\x3c\x67\xee\x3f\xf5\xd0\x97\xd0\x51\x26\xba\xf7\xe6\x60\x21\xe1\xac\xec\xae\xd7\xc7\xeb\x8b\x08\x97\x56\x9d\xfc\x70\x48\x2a\x8d\x70\xa6\x6f\xf7\xd3\xb5\xa7\xe3\x08\x05\x21\xed\x03\xf6\x16\x71\x84\xfb\xdc\x9a\xd5\x37\xed\x1a\x09\x93\xa1\x7b\xf8\x56\xb2\xc6\x11\x2c\xf9\x74\x5c\x5c\x57\xc5\x11\xa2\xd7\x14\xff\xc9\x0c\x8d\x23\xcc\xa9\xfd\xa6\xba\xfc\xb0\x3e\x41\x4e\xad\x6b\xe7\x91\x4b\x0c\x41\xe4\xf4\x92\x57\x19\xe9\x96\x84\xe2\xd5\x4f\x03\x7d\xb7\xb9\x12\xa4\x66\xdd\x96\x7f\x6f\xe2\x4a\xe0\xde\xf2\xa5\xf9\xf1\x1d\x3d\xc2\xe9\x34\x59\xaf\xcf\x1e\xaf\x09\x9b\xc2\x0b\xe2\xec\x3d\x32\x08\xf5\x59\x9e\x51\xdf\x3a\x72\x08\xb2\x51\xc6\x4e\x79\x7d\x79\x04\x99\x98\x45\x27\x26\x44\xeb\x09\xcf\x7c\x02\x98\xba\x2b\x39\x0c\x4a\x65\xad\x3c\xe7\xe7\x2b\x12\xe4\x7b\x86\xd1\xb5\x6a\xea\xde\x11\x37\x4a\xfa\x0f\xba\x08\x91\x6e\xd3\xb7\x9f\x3e\xfd\x8d\xf0\xfa\x88\x89\xcd\x97\xf7\x5f\x09\xfb\x0f\xec\x0f\x79\xc9\xbc\x63\x20\x7a\xe8\x55\xcd\x47\xc9\x16\xc2\x95\xde\xb3\x0d\xf7\x4f\x7e\x23\x98\xd9\x18\x18\xdd\x9b\xdf\x46\xd8\xf5\xd0\xca\xfc\x9c\x78\x1c\xa1\xc4\x66\xdd\xfc\xf2\x1f\xc9\x04\x2e\x15\xce\xfb\x2a\xbe\xaf\x09\x9e\x3a\x25\x72\x1b\x74\x5e\x12\x8a\x4c\x45\x2f\x41\xf9\x3d\x83\x7d\xba\x67\x6f\xcd\x6a\x2d\x23\x48\x0e\x76\x76\x2a\xe6\xb6\x12\x1c\x06\x04\x9e\xf6\xa4\x67\x11\x0e\xeb\xea\xf1\xf4\xf4\x5e\x27\xbc\x2a\x6a\xe4\x5a\xeb\x90\x42\x10\x1a\xfe\xf9\x93\xf7\xc1\x0f\x39\x74\xc5\x0f\xec\xfa\x2c\x6d\x42\x10\x38\xf9\x6c\x7f\xa6\xc7\x19\xc2\xf5\xad\x07\x7e\xc9\x3e\xbe\x4f\x08\x89\xec\xcf\xcd\x0a\x49\x26\x0c\x9d\x73\x1c\xdb\x7d\x2a\x8b\x10\xd7\xb1\x20\x61\x33\x5f\x2a\x81\xd7\x21\xcb\xec\xfa\xc6\xb7\x84\xf5\x67\xfd\xa6\xf7\x9e\x88\x23\x68\xd5\x2b\xeb\x88\xdd\x71\x21\x58\x9f\x14\xf0\x8e\x1d\x93\xfd\x07\xd5\xf7\x1a\x97\xab\xdd\x1d\x97\xc3\x4e\xfb\x30\xb1\x99\x8e\xa3\x72\x50\x3c\xa1\x27\xa7\x19\xe2\x4a\xff\xe1\x92\x2a\xaf\xfa\x7c\x5f\x4e\xc2\x44\x74\x0d\x79\x8e\xf3\x13\xca\x46\xae\xcc\x65\x7b\xf0\x55\x0e\x8f\xb2\x14\x9e\x36\x19\x19\x12\x46\xa4\xee\x29\xb2\x71\x6b\x11\xba\x18\x97\x56\xf7\x1d\x4a\x84\x85\xb9\x4f\x9f\xbf\xce\x63\x21\x98\xfd\x7e\x66\x30\x7a\x40\x80\xd0\x31\xf7\xca\x6b\xd1\xbb\x11\xff\x60\x8e\xe2\x6a\x76\x5b\xab\x4a\x42\x57\xe6\x3c\x9d\xc3\x54\x40\x08\xad\xfb\x7d\xc2\x5a\xc1\x84\xc0\xc3\x29\x54\x79\x6d\xeb\x63\xc2\x5d\xee\x2c\xde\xd1\xa8\x27\x84\x13\xf7\x62\x59\x53\x1b\x7f\xc8\xa1\xe8\xfe\x8c\x8f\x7f\x1c\x36\x12\x64\x1d\x36\xe9\xdb\xbc\x1b\x96\x83\xdb\x36\x8e\x15\xb9\xce\x7c\x84\x33\x72\x2d\x73\x58\xc4\x1e\x31\x10\xd3\x9f\xdb\xd4\x70\x93\x83\x70\x44\xc7\x6e\x91\xde\x89\x35\x84\xf5\x0e\x26\x0f\xe2\x83\x6b\x09\x6f\x2e\xcd\x69\x61\x0d\x1c\x25\x6c\x15\x2d\x3e\xb3\xd8\xed\x23\xa1\xbe\x32\x62\xf7\xb0\xf9\x2b\x02\xbf\x40\x8f\x8f\xf0\xb9\xf7\x84\xe7\x47\xbb\x85\xf7\x9e\x18\x22\xbc\x32\x7e\x32\x2d\x73\xda\x27\x82\x3e\xdb\xf1\xc3\x29\x57\xfa\x08\x6e\x4a\x86\xac\x0b\xc3\x3f\x10\x3a\xf1\x39\x2b\x85\xf3\x0d\xa1\x66\xc2\xc1\xf0\xf9\xde\x1e\xc2\xce\x25\x91\x89\xc9\xb9\xbd\x84\x67\x99\x67\x0e\xfe\x4a\xcb\x24\x84\xdf\x0a\x08\x14\x8a\xcd\x63\xd0\xd1\xf1\xf8\xe1\xdb\xfe\x60\x06\xe3\x1f\xf7\xc6\xb1\x58\xe7\x11\x46\x43\xc4\xdf\x9e\x3d\xdd\x4e\x58\xf9\x2a\x40\xc5\x2e\xe7\x39\x61\xf9\xb1\xda\x97\xe5\xdf\x8a\x09\x2e\xc3\xbe\xbf\xcf\xed\x6f\x27\xac\xaa\x29\x71\xcf\x3c\xfd\x82\x10\x65\xea\x3a\x33\x75\x4d\x15\xc1\xe7\xc4\xaf\x4b\xbd\x85\x57\x08\x76\x76\xae\x36\xc2\x67\xed\x08\xce\xac\xdb\x8b\x32\x8e\xe8\x10\x5c\x54\x16\xac\x11\xe6\x34\x23\xb4\x36\x7d\x2c\xb8\xb8\xfe\x3e\x61\xa5\x63\x8b\xdd\x56\xe5\x16\x06\x0f\x1a\xde\x71\xef\xdf\xef\x42\x98\xbb\xaf\x7d\x70\xa3\x48\x03\x83\xe9\x56\x1e\xab\x22\xf9\x2f\x11\x94\x7f\x8e\x36\xaa\xef\xbf\x4b\x78\xf7\xd1\x9a\xdf\x91\xbb\x88\xc1\xba\x8d\x75\x97\xfb\x92\xb3\x18\x28\x58\xec\x51\x70\x1b\x7f\xcc\xe0\xc5\xf5\xbd\x02\x46\x82\xe5\x0c\x1a\x39\x87\xef\x69\xac\x31\x24\xf4\x19\x0a\x36\x85\xb2\x4a\x10\xc2\x17\x57\xce\xd6\xd4\x3d\x4e\xa8\x0d\xfe\x71\x97\xe5\xc8\x59\x06\xa9\x9b\xa3\xee\x2c\xbd\xae\x49\xe8\x34\xfd\x12\xae\xbe\x5e\x9c\xe0\x9b\xe2\xb0\xed\x7a\x37\x2f\xe1\xf4\xd7\xc8\x87\x76\xcf\x55\x09\x19\xcb\xca\x6b\x5a\x6a\x5e\x32\x10\xf3\xca\x0c\xbd\xde\x51\x42\x30\x97\xd3\x58\xe5\x7b\xa5\x8a\x41\x0b\xdf\x8c\xfd\x13\x17\x07\xe8\xbf\x51\x85\x86\x65\x5e\xad\x73\x3d\x21\x6c\xe7\x83\x80\x32\xf1\x2c\x82\xe0\xd8\x5a\x16\xe1\x25\x85\x0c\x76\x87\xdd\x50\x4b\xea\x2f\x26\x24\xec\x5d\xd7\x2a\x34\x55\x18\x34\xae\x4a\x1f\xc9\x22\xcc\x1c\xb0\x5b\xf7\xda\x35\x98\xb0\xad\x48\xf4\xd6\xcc\xe6\xbb\x0c\xec\x7f\xaa\x69\x7b\x9c\x2a\x64\x20\x25\x23\x9a\x56\x9e\x2e\x4f\x10\x9d\x6c\x1b\x9a\xfc\xe3\x42\x38\x1d\xb7\x41\xdf\xe6\xd6\x79\xc2\x81\xdb\x93\x7d\xf1\xcf\x1d\x08\xac\xe7\x25\xde\x0f\xa5\x67\x13\x1c\x53\x13\xf5\xd4\x73\xda\x09\x12\xfa\x85\xb9\x4f\xb9\x2f\x33\x18\xee\x5d\xe8\x74\x6a\x7e\x25\xa1\xf3\xde\x41\xb7\x49\x7a\xc2\x40\x74\x6b\xc2\xc4\xc3\x59\xe5\x84\xc0\x4d\x27\xfb\xab\xb8\xe2\x0a\x50\x14\xae\x64\x50\x2e\x20\x43\xff\x41\xf3\x46\xe3\xf4\x81\x49\x37\xc2\xf5\x03\xbd\x7c\x27\x47\x04\x08\x45\x6b\x33\xfb\x6b\xd5\x74\x09\xd5\x17\xf9\xab\x2a\x37\xb9\x11\xa6\x75\x71\x7d\x2e\x9f\x5f\xcc\xe0\xe0\xcf\xb9\x8b\x4a\x1e\x46\x10\x32\x3d\x3b\x0d\xdb\x43\xa4\x09\xf3\x75\x5f\x74\xff\x1e\x96\x24\xcc\xe8\x77\x68\x1c\x0a\x7d\xcd\xa0\x71\xe1\x86\xeb\xcd\x49\xc5\x0c\x78\xe6\x68\x70\xbc\x8e\xff\x4a\x58\x2f\x91\x5b\xaf\xdd\x3b\x48\xa8\x4b\xf2\xe1\x08\xdf\x39\x42\x58\xab\x68\xf1\x56\x55\xfa\x15\x21\x60\xd2\xf2\xc2\x83\xdf\x91\x84\x03\xeb\x8e\xc6\xce\x9e\xa5\x45\xd8\xac\xb9\xba\xcc\xdc\xe0\x28\x61\x84\x75\x6d\x93\xb2\xaa\x30\x41\xfe\x85\x2a\xcb\xf7\x75\x85\x0c\x1a\x15\x1d\xa3\x2d\x3d\xd3\x09\x36\x0e\xb3\xad\xbb\x9e\xbf\x61\x70\xa9\xa0\x7f\x47\xfd\xfc\x72\x82\xb8\x97\xda\xcf\x8b\x6d\x29\x84\x0c\xce\x63\x35\x2b\xee\x97\x10\x0a\x3f\x23\xb6\xec\xf8\x30\xe1\xe0\x86\xf1\xb9\x92\x2d\xb9\x84\x5b\x96\x43\x15\x33\x25\x5e\x11\x04\xf3\x86\x37\xbd\x15\x9e\xfa\xf6\x76\xbb\xec\xd5\x6e\xfc\x4a\xf8\x2d\x3c\x43\xf9\xb0\x78\x3b\xe1\xe3\x86\xef\x13\x2a\x53\x25\x6c\x51\xfa\x81\x6e\xab\x37\x84\x80\x3b\xa3\x7a\x25\x39\x4f\x09\x6f\xb7\xc9\x3e\x5c\x12\x61\x4e\xd8\x79\x38\x84\x43\x7b\xc8\x9a\xf0\x2d\xe8\xbe\x8a\xd9\xf9\x74\x42\xd2\x35\x3d\xb9\x55\x3a\x45\x84\x47\x67\x82\xb2\x59\xef\x0c\x10\x86\xd7\xc9\xd6\x16\x6d\xea\x23\x5c\xbe\xb3\xba\xd4\x39\xaa\x92\x30\x96\x6d\xeb\xf5\xd3\x7f\x80\x70\x89\x55\x65\x11\xc4\xdd\x09\xb7\xb1\xa7\xe6\xb5\x70\x29\x61\x25\x6f\xf4\x97\x6b\x1d\x26\x84\x17\x46\x1f\xc6\xdd\x95\xae\x10\x12\x39\x37\x6a\x4c\x74\x9b\x10\x3e\x46\xb2\x49\x9c\x38\x7d\x97\xe0\xac\xe6\x6e\x34\x6b\x7f\x09\x61\xbd\xd3\xfa\x3a\xb6\xc4\x62\xc2\x7b\xa9\xdc\x7e\x23\xfb\x6c\x06\x95\xcd\xf1\x8a\x7f\x8b\xc5\xda\x79\x4b\xba\x37\xe6\x10\x7e\xab\x15\xca\x67\x9d\x6d\x22\x74\x86\x2f\x2a\x9a\x65\x43\x84\xc4\xe6\xcd\xbf\x24\x97\xb2\x10\x66\xeb\xbe\xed\xa9\xdc\xa7\xf5\x4f\xd9\x54\xc9\x73\xe7\xd2\x6d\x63\x06\xd2\x75\xf7\x25\xba\x7d\xfa\xe5\xd0\x5f\xbf\x5a\x35\x3c\xd5\x93\x20\xbc\x40\xa2\x7a\xe5\x5c\x59\x02\xd7\xf8\x1f\xe1\xa8\x2f\xc1\x0c\xce\x49\x15\x2e\x8e\xc8\xdb\x4f\xe8\xec\x95\xca\xca\xaf\x19\x61\xa0\xc9\xc7\x6e\x7e\xf8\x54\x12\x61\x60\xcb\x43\xfe\xa0\x53\x43\x84\xe4\x2f\x6a\x3e\x57\x7b\x1f\x13\x16\x7d\xbf\x77\xfa\xfd\xc9\x52\x82\x5c\x5e\x8b\xed\xa6\xa3\x53\x5b\xb2\xb1\x80\x37\x77\x93\x02\x61\xe4\x40\xf2\x29\x3b\x61\x1e\x42\x8a\xbe\xa6\xc9\xb7\xdc\xcb\x84\xa3\x6e\x31\x8a\xcf\x2a\xf7\x10\x22\x73\x77\x71\xb0\x19\xb1\x12\xa6\xa7\x74\x65\x5a\x34\xae\x21\x04\xaf\xfd\x12\xf5\x90\xeb\x32\x83\xbe\x6f\xde\xf5\x9f\x23\x5c\x09\xb1\x4b\x43\xfd\xa5\x4d\x2d\x08\x19\xe6\x8d\x6d\x96\xd7\x62\x18\x0c\x94\x0a\xa8\x75\x9d\xfc\x41\x58\xaf\x3a\x63\xd1\xee\x8d\x6d\x0c\x26\xde\xca\x05\x0d\x5e\xc8\x25\x98\xd7\xfd\xf6\xd9\x3b\x34\x42\x58\xdf\x9e\x7d\x78\xfd\x58\x13\xe1\x5c\x8b\x42\x8c\xde\x8d\xd3\x84\x59\x82\xa2\xab\xf3\x1f\x4a\x10\xaa\x22\xf6\x9a\xba\xab\x6e\x25\x6c\xbf\x24\xb0\xd5\x64\xb5\x12\x41\x27\x30\xa7\xfe\x57\xc0\x0d\xc2\x9d\x45\x93\xec\x23\x0f\xbc\x09\x12\xe7\xc3\xce\xb6\xd5\xf9\x11\x5c\x64\xe4\x76\x3a\xdf\xf7\x24\x14\x35\x1c\xbd\x18\xa9\xa8\x4d\xb8\x7b\xeb\x90\x2a\x07\xbb\x03\xa1\x66\xaf\x83\xdc\x0f\xcf\x14\xc2\xff\x31\x5e\x9f\x61\x3d\xff\xff\xff\xff\x49\x43\x21\xb4\x45\x91\x59\x84\x96\x16\x5e\xf7\x10\xd9\x2a\xed\x94\x4a\x43\xa4\x4d\x11\xd1\x9e\x2a\x95\x50\x46\x69\xa7\xd2\x5e\xaa\x67\x53\x49\x68\x10\x69\x99\x15\x85\x86\x71\xcb\xfc\x1f\xbd\x4f\x7c\x38\xf1\x3d\xfe\xc7\xef\xdc\xe5\xb8\xde\x9e\x9d\xe8\x75\xbc\x8e\xe7\xeb\xf1\xf8\x50\x61\x6c\x3f\x61\x74\x80\xa0\x55\x7a\xdf\xd8\xfc\x45\x30\x81\x65\x55\x3c\x71\xc5\xb8\x94\xf0\xfc\x84\x64\x8e\x95\x91\x39\xc1\x77\xbe\x97\xf5\xac\x20\x3f\xc2\xb9\x8f\xfb\x02\xbb\x2f\x09\x12\x3c\xd6\xd6\xda\xde\x68\x3f\x43\x38\xff\x76\x99\xf2\xc3\x77\x2f\x09\xe6\x0b\x71\x75\xa0\xf2\x25\xe1\x59\xd4\x9b\x27\xb7\x4e\x96\x12\x2a\x2c\x63\xdb\x03\x76\x2a\x13\x7e\xf1\x0d\xcd\xaa\x11\x95\x25\x2c\xcf\x48\x1f\x78\x39\x16\xcf\xe0\x48\x52\x63\x70\x80\xf2\x7e\xc2\x58\xf6\x32\xf7\xb9\xe3\xf2\x84\x77\xa7\xa5\x97\x92\xc6\x49\x06\x5b\x43\x5f\xaa\x5f\x55\xe1\x27\xe4\xf7\x05\xcd\x5e\x21\x45\x84\xc7\xb6\xf9\xd6\x3a\x06\x21\x04\xac\x6b\x10\x95\xaf\x77\x23\xc8\xba\x84\x9a\x34\xc6\xdb\x13\x16\xee\xb5\xc8\x9a\xb1\xf5\x25\xe1\xbe\x70\xae\xc1\xdd\x1b\xed\x84\x87\x13\xf2\x45\x91\xb3\x2f\x13\x1e\xc9\xec\xd7\x91\x34\x2a\x22\x84\x7f\xe8\x93\x7a\x2b\xa7\x4c\xf8\xcd\x1d\xe3\x72\xaf\x26\x84\xc1\x0f\xf1\x0b\x63\xa7\x97\x19\x13\x3c\x47\x57\x3f\xba\xdb\xd8\x46\x50\x72\x9e\xda\x18\x4a\xab\x09\xb7\x5c\x94\x0b\x92\xe2\xc3\x09\x1a\x34\x76\xfc\x79\xc5\x12\x82\xf5\x91\x35\xab\xec\x0e\x86\x11\x38\xc7\xed\xaa\xc7\x78\xee\x13\x06\x38\x4a\xdf\x7f\x37\x72\x22\x70\xc6\xf7\x1c\xdc\x77\x6c\x15\xe1\xfd\x16\xb5\xdd\x73\xc6\x85\x09\x6c\x8f\x53\x5f\x4c\x6d\xb1\x24\x44\x15\x1f\x9b\x36\xbf\xd8\x9c\xd0\x1e\x92\x7a\xe4\xf5\xc1\x83\x04\xd1\x63\xa9\xe2\xc7\x45\xd4\x09\x39\xa1\xf9\x63\x3d\x05\x16\x84\xcf\x13\xb3\xab\xfa\x8b\x4b\x08\x1f\xea\x15\x3e\x3c\xfc\x78\x8e\xa0\x29\x21\xb4\x2a\xaa\xa6\x9a\xe0\xfa\xb2\xb4\x2e\xba\x6e\x2b\x41\xf8\xfc\x53\x84\xda\x1d\xfc\x07\xbe\xbb\x0c\x4e\xb1\xaf\xde\x41\x98\xf5\xbb\xd2\x35\x4d\x2c\x9e\x60\xc8\xce\x3c\x32\xcf\x9b\x49\x78\x97\xe5\xff\x3b\x69\x51\x04\x41\x22\x53\xe4\x7a\x3e\x3b\x17\x41\xf2\xc3\xec\xb5\xde\xe7\xe6\x12\x18\x9f\xe0\x0f\x3a\xf2\x43\x2c\xf4\x2c\xe4\x9b\xf2\x5d\x73\x2f\xe1\x83\xbb\xa5\xb0\x65\x9a\x1a\xe1\xe3\xc6\x92\x31\xde\x67\xcb\x09\x8d\x07\x82\x5b\x17\x85\x19\x12\xde\x67\xf5\x24\x0f\xcb\x05\x13\xf2\x36\x98\x4f\x7f\xae\xa3\x4a\xb0\x99\x67\x6d\xca\xc5\x1b\xc2\x60\xfe\xec\xe9\x5f\x96\x54\x9b\x11\x9c\x96\x34\x4f\x04\xcf\x73\x20\xc8\x0c\x8d\xd5\x2f\x1e\x09\x66\x70\x27\xe7\xab\x84\xb2\xf7\x45\x82\x6d\x76\xf3\xd4\xc5\xea\x8d\x84\xf7\xb3\x57\x33\x9b\x3a\x27\x08\x4a\xb7\xad\x5c\x8f\x5a\x54\x13\xba\xa3\x8e\x0c\x19\xe8\x9b\x13\x06\x47\x64\x73\xc9\xc4\x87\xd0\xe5\x25\xe2\x10\x27\x99\x41\xc8\xac\x58\x99\xf2\xdf\x34\x54\x6e\x17\x6c\x11\x22\x40\x30\xf6\x3c\x61\x53\x75\x3a\x93\xd0\xfa\xa0\xaf\x43\xa4\x64\xfe\xe4\x41\xe8\x82\xf9\x8e\xc9\x8f\xf7\xde\xdc\x0a\x7d\xab\xa7\x2c\x02\x47\xd5\x53\x87\x20\x89\x42\x42\x55\x85\xae\xb7\x40\xf2\x36\x82\x7b\xf9\xb4\x23\xfc\x73\x13\x08\xbe\x02\x8d\x72\xce\xc1\x3d\x84\x5d\xae\x83\xc7\xfd\xcb\x42\x08\x73\xed\xe6\x9b\x3e\x67\xd3\x26\x8c\xbc\x48\x7d\xd8\x7f\xbc\x88\x10\x11\x78\xea\x8c\x98\x8d\x16\xc1\xdc\x5f\x5d\x24\x56\xf1\x1c\x41\x6c\x91\x41\x7b\x56\x46\xfc\x3f\xc5\x7e\xb6\x64\x42\x97\x51\x03\xe1\xb3\xd0\x8e\xa8\xb3\xee\x67\x08\xd7\x9e\x38\x5f\xdf\x92\xde\x42\xa8\xf7\x9d\x7e\x6e\xc5\x85\x0e\xc2\xae\x19\x47\x15\x73\xe2\x9e\x10\x32\xce\xa6\x9f\x56\xed\xcc\x23\x98\x77\xdb\xe7\xb4\x2b\xd7\x10\x94\x5e\xc6\x54\x18\x3c\xa9\x21\xa4\x4b\x28\xc6\xcd\x5f\x1d\x4c\x18\x3e\x67\x58\x7d\x51\x49\x9b\xd0\x9e\xe7\xbe\x32\xe4\x63\x21\x61\x81\xee\xc7\x48\x9f\x37\x91\x0c\x4a\x9b\x4b\xe4\x7d\x66\x5b\x12\x76\x1c\x17\xbe\xb6\xe9\xc9\x3d\x82\x42\xce\x61\x93\xa5\x8f\x0b\x08\xe7\x4f\x19\x9c\x78\x69\xb9\x8e\x10\x77\x65\x5a\x6f\x50\xc1\x15\x42\xb3\x2e\x6b\xfc\x1a\x8f\x23\xe1\xe2\xd5\x55\xef\xb7\x2c\x8b\x26\x08\x29\x1a\xf9\x3d\x34\xf4\x66\xe0\xea\xf3\xc9\xce\xe2\x94\x0b\x21\x54\x71\xc3\xb3\x80\xe5\xb5\x84\xa9\xc6\xae\x21\xf7\xbb\x0a\x18\x68\xf8\x66\xc4\x2a\x45\xdf\x24\x5c\x26\xd1\x81\x35\x5e\x81\x04\x8d\x17\x37\xef\x9b\x0e\xbc\x25\xac\x5f\xa3\xff\x4c\x57\xe7\x2e\x4d\xf4\x2c\xac\x50\x3d\x5b\x46\x78\xab\x76\x6d\x65\xd2\x2d\x1d\xc2\x2b\xa9\x35\xfc\x69\xec\x2f\x19\x9c\xfe\x5e\xf1\xe9\xb9\xca\x5b\x82\xdb\x8f\xb2\xf8\xab\x17\x16\x11\x56\x87\x0b\x8d\xe9\xd5\x47\x12\xf2\xc3\x7f\x48\x7b\xce\x35\x21\xb4\x9a\x2e\x19\xff\xc4\xa5\x48\xe8\x77\xbc\xe0\x30\xf8\xfb\x05\x0b\xcf\x6e\xf6\x94\xb4\x95\x98\x12\x24\xce\x0e\x5a\xa8\x2d\xd7\x21\x44\x0e\x5d\xcf\xd8\x5f\xb7\x85\x41\x03\x9f\xfa\xe1\xc0\x01\x19\xc2\x09\x8e\x29\x2a\x67\x9c\x4e\x12\xd6\xbe\x9a\xfb\x58\xf7\x7a\x32\x21\x7a\xa9\x66\x93\x4d\xdb\x3b\x82\x65\x62\xb0\x4c\xef\x11\x47\xc2\x33\xaf\xa7\x65\x25\xdf\x2c\x09\xce\x96\xbc\x6b\x85\x84\xf3\x08\x32\x99\xbc\x9c\x7c\xb1\xea\x84\xfc\xf4\x29\x8b\x39\xb7\x9e\x20\x68\x8f\x88\xff\xba\xf8\x6b\x2a\x41\xb0\xba\x75\xea\x57\xed\x31\x16\x46\x05\xec\x6d\xf6\xf4\xcf\x25\xd4\xc8\xcc\x3a\x1f\xeb\xcd\x46\x90\xd5\x95\xcd\x17\xfd\xbc\x94\x30\xc8\x33\x5b\xe0\x55\x86\x16\xe1\xee\xea\xa3\x0e\x41\x67\xfa\x08\x31\x5c\xc3\x2b\xf5\xb8\x1a\x08\x83\x73\x8f\xb6\xcf\xb8\x7d\x8a\x70\x69\x7b\xcf\x01\xa9\x6f\x83\x0c\xf6\x94\xec\xbd\x76\x8e\x3b\x8b\xf0\xdd\x4c\xa0\x81\x5a\xaa\x09\xc9\xea\xb6\x79\x5c\x21\xe9\x04\xe6\x84\xd0\x0d\x95\x95\xaf\x09\xfb\x1c\x96\xe5\xae\xa8\xbc\x4e\x58\x93\x39\xcf\x26\xa3\xa5\x88\x30\x5c\x22\xc1\xde\x31\x3f\x90\x60\x6d\x7e\x39\x41\xda\x2c\x8a\x81\x57\x66\x51\xf8\xb9\x4b\x27\x09\x1c\x97\xd6\x5d\xf9\xa6\xb5\xea\x1f\xa8\x57\xc4\xc6\xbc\xe4\x6e\xa9\x84\xd7\xf5\xa3\xdd\xb3\xbe\x15\x11\x7e\x1c\x11\xfb\x2e\xac\x1b\x49\x30\x3c\x57\xca\x19\xad\x6f\x40\xd8\x61\xbb\xe3\x8b\x9d\xa3\x00\xa1\x47\xb5\xf3\x83\x64\xcc\x25\x06\x7e\x7b\x93\x7b\xb6\xa6\x54\x10\x46\xbc\x5f\xf0\xe5\x28\xbb\x13\x58\xcf\x35\xb7\x4f\x7d\x61\x4e\x38\xc0\xfe\xfe\xd7\xe6\x64\x63\x06\xf3\xfa\x5c\x8f\xa9\x06\x2b\x10\xf2\x63\x75\xd8\xf8\xd7\xd7\x32\x38\x3d\x9d\x3b\x71\xcf\x73\x1b\x42\x0b\x73\xbb\x6d\xbb\xf3\x0e\x82\xf9\x12\xdb\x8b\xc2\x69\x9b\x08\x2b\x42\x3f\x4a\x37\xb0\x2c\x09\x0b\xd2\x05\x46\x16\x09\xea\x10\x66\x7d\xb8\xf1\xf3\xab\x1a\x17\x41\x49\xf0\x45\x67\xbc\x88\x33\x03\x33\xdb\x4f\x55\x09\x5d\xfb\x08\x8b\xc7\x83\x2e\x2e\x34\x0a\x25\xc8\x27\x36\x7d\x77\x8f\xb8\x42\x90\x8c\x6e\xd8\x6e\x2b\xdb\xc4\xc0\x60\xde\x03\xae\x81\x56\x31\x82\x9f\x42\xfc\xe9\x65\x81\xfb\x09\xe1\x69\x69\xab\x6b\x77\xeb\x12\xc2\x7e\x84\x28\xef\xe4\x2a\x23\xac\xa3\x26\xeb\xbd\xa3\xda\x84\xfb\x96\x92\x97\xbb\xba\xf2\x08\x9b\x3b\x2e\xf4\xbe\x19\xaf\x23\xdc\x3e\x2f\xf9\x6d\x81\x98\x23\xe1\x98\x8b\x9d\xff\xed\x91\x68\x06\x2b\xaa\x67\x4a\x97\xd7\xf9\x11\x52\xea\x3e\x67\xe7\x3d\x31\x27\x5c\xbb\xb6\x7e\x56\xd6\x3e\x5d\x42\xb3\x88\xd5\x68\x72\x73\x25\x61\x2a\xfb\xf0\xe2\x59\x67\x62\x18\x5c\xd9\xba\xb1\xb9\x62\x6a\x26\xe1\xac\x78\x74\xd3\x80\xba\x1b\x21\x6d\x61\xaf\x8e\xbc\x5e\x3b\x83\x82\x23\x13\x21\x7b\xbc\x35\x09\x97\x65\x85\x24\xcc\xdf\x44\x10\xda\xfb\x5f\xe6\xe6\x73\x6c\x22\xdc\xdf\xe4\x66\xce\xcf\x12\x25\x4c\x67\xc9\x9d\x98\x7b\x39\x80\x50\x7f\xf9\x98\xba\x62\x48\x15\x03\x4e\xb3\xa7\x13\x26\x37\xd4\x08\xbf\xc4\x36\x26\xdb\x9f\x68\xaf\x84\xc3\xc2\x82\x75\xdb\xb5\x19\x06\x71\x7b\x16\x2e\xf4\x2f\x0f\xa5\xbf\x88\x4a\xcf\x1b\x95\x19\xea\x61\xa1\xff\xc4\xd2\x0a\xf1\xac\xe3\x84\x83\xef\xed\x66\x9d\xd0\x90\x25\x58\x4c\xe9\x9b\xbb\x3d\x5b\x92\xa0\x7c\xe6\x73\xd1\x32\x99\x79\x84\x28\xf3\xaf\xb9\x3d\x5e\x1f\x58\x98\x95\x78\xf4\xd8\x16\xc1\x8b\x84\xd7\xa6\xbb\xf9\xae\x05\x2f\x26\x34\xb9\xd1\x9b\x1b\x37\xae\x13\xea\xa3\x9d\xc5\x3a\x4d\x4e\x11\xe4\x73\x15\x51\xb2\xad\x96\x81\x53\x91\x81\xb8\x79\xdb\x46\x42\x7c\xc0\x42\xcb\x36\xc1\xbd\xff\xc0\x7d\xd3\x22\xa1\xea\xba\x18\x42\xd2\x85\x9d\xbe\xeb\x6a\xe5\x08\xb7\xc7\x57\xd8\xf1\xfe\xb2\x23\x9c\xab\x8f\x38\xf1\x40\x68\x3f\x83\xa3\xa1\xe3\x3d\xb6\x33\xfc\x08\x67\x1f\x47\x1e\xec\x4f\xd7\x26\x08\x4e\x3f\x63\x25\xcd\x6d\x48\x78\xab\xf5\xcd\x30\x59\x30\x84\x70\x4d\x2a\x4d\xa5\x49\x23\x89\xf9\x5b\x3e\x6b\xc4\x0c\xf3\xdc\x36\x62\x60\x9e\xd9\x65\x28\x7e\x42\x88\xe0\xa0\x72\xca\x52\x26\xfa\x00\xe1\x12\xe5\x2f\x9e\xcb\x44\x10\xce\x65\xcd\x54\x99\xf2\x2a\x86\xf0\x21\xe2\xf6\xdd\x40\x0e\x15\xc2\x1a\x27\x73\x07\xf9\x55\x95\x04\x4b\x2f\xbf\x87\x4b\x82\xda\x08\xdc\xbb\x8d\xf6\x77\xdf\x0f\x26\x1c\xf4\xab\x8f\xeb\xeb\xba\x4f\xc8\x8b\x29\xe9\x9a\x7a\xf0\x33\xa1\xf2\x5d\xe9\xed\xcb\x8b\x5e\x12\x3e\xdf\x14\xc5\x7f\x93\xd3\xa9\xcf\x6f\xb7\xf8\x1b\x12\x0e\xaa\x5c\x44\xf4\xc8\x25\xc2\xab\x39\x72\xec\x76\xfd\x37\x09\x85\xe9\x57\x57\x8a\xb0\xb7\xff\xf3\xcc\xe5\x69\xef\x12\xc2\xb5\xb4\x08\xa5\xa7\x79\xfa\x27\x96\x2c\x27\x2c\xb7\x56\x1d\x92\xaa\xb3\x22\x30\xb3\xdb\x2f\xce\x1d\x3d\x48\xa8\xad\xcc\xd9\xa1\xaa\x35\x87\x30\xc2\x29\x51\xdf\xbc\xc7\x80\xb0\xbb\xcc\xde\x3a\xd3\x2d\x9d\x50\xbb\x79\xbb\xf3\x11\xf6\x32\x42\x90\xf2\x4e\x79\x9b\x49\x08\x68\x95\xf2\xe8\xcf\x55\x21\x74\x27\x7f\x1c\xa0\x5d\x21\xff\x94\x8f\x09\x56\x21\xbc\x92\xfc\x84\xa8\xaf\x22\x97\x8b\x3a\x6a\x08\xba\x77\x3a\x29\x4b\xe4\x10\xa1\x42\xf9\xab\xdc\x89\x46\x01\xc2\xb9\x55\xbc\x1a\x4d\x56\xc5\x04\xd3\xbc\x5d\xf1\xee\x5b\x56\x11\x06\x45\xb6\xfd\x36\x7f\xb6\x8d\xe0\x53\x35\x7a\x49\x69\xe3\x28\x0b\xf3\x8c\x7f\xce\xb0\xe8\x5b\x4f\x58\x17\x2a\x73\xd2\xae\xc1\x80\x20\x69\xe6\x29\x2d\xf1\x31\x98\xc1\x81\x5b\xdd\x5f\xb7\xf3\x6a\x12\x5e\x1c\xab\xf0\x75\xe4\x4e\x23\xc8\xad\x69\xe6\x52\x2c\x9a\x42\x18\xb3\xd0\xee\x67\x37\x8f\x20\xf0\xd7\xc9\x8a\x73\x07\x49\x12\x1a\x4d\xee\x76\x89\x2b\xdc\x24\xdc\x68\x0f\xf6\x99\x2e\xf2\x89\x85\x25\x7a\x1b\xd6\x2b\x75\x2c\x21\x2c\xb5\x71\x98\x97\xe6\x7b\x94\x41\x7a\x9f\x1a\xa9\x26\x18\x10\x7a\xd2\x96\xc4\xcd\x12\xb1\xa0\xbf\x25\x4a\xb7\x43\x4c\xe1\xfe\x7c\x42\x12\x82\x3c\x67\x5d\x6e\x20\x6c\x0e\xc8\xd9\x3d\x4d\xa5\x89\x70\xf9\xb7\x81\xfd\xb6\xa0\x2a\x42\x8e\xb6\xbc\xe1\xf6\xb1\x1a\x06\xd9\xdb\xc6\xef\x4a\xcc\x50\x20\xc8\x77\x9e\xfd\x62\x93\x6e\x47\x38\xfc\x73\x76\x79\x90\x7f\x36\xa1\x6e\xc3\xac\x5b\x87\x33\x44\x09\xda\xbf\x02\x76\x7b\x95\x5c\x66\x60\x26\xdf\x70\x30\xf5\x46\x11\x83\xf7\xab\xfb\x83\xf7\x5e\x0c\x67\x10\xcd\xfd\xd6\xa9\x62\xeb\x63\x06\x59\xe6\x6c\x1f\x4e\x9d\x8b\x26\xfc\xba\xbe\xba\x74\x48\xa1\x92\x81\x84\xab\xa3\xdc\x70\x6f\x05\x83\xcd\x4e\x3e\x69\x32\x77\x8b\x09\xbd\x17\xa6\x8f\xd6\x9b\x16\x12\xc2\x52\x9d\xce\xc4\x2a\x15\x33\xd8\x5d\x7a\xf8\x6c\xf8\x1c\x2f\x42\xb2\xb6\xfb\x75\xee\xc1\x57\x04\xb7\x5c\x9b\xd1\xf3\x95\xbf\x59\xd0\x59\xa0\xad\xc7\x3f\xc7\x90\x10\x7a\x48\xff\xe8\x7c\xcd\x6b\x84\x37\x77\x6a\x76\xaf\x7c\xb9\x96\x30\xc7\x6f\x7f\xc2\x7b\xae\x41\x16\xb2\x1b\x36\x29\xaf\x9e\xce\x4d\xe0\x5c\xf1\x3b\xbd\x39\x4a\x8d\x20\x52\x54\x94\x92\xb3\x4e\x9c\xfe\x4e\xef\xae\xbf\xa9\xa9\x1f\xff\xcc\x82\x9d\x6d\x60\xa1\xe1\xda\xab\x84\x93\x0e\x07\x1d\xdc\xda\xae\x32\x78\xbb\x84\x3b\xc1\xc5\x35\x80\x60\x90\xfa\xeb\x07\xdf\x45\x57\xc2\x91\xf6\xec\x9f\xb3\x82\xb6\x13\x7a\x26\x7c\xea\x6c\xac\x9c\x09\x1b\x72\x76\x48\x5e\x77\xb8\xc4\xa0\xe8\xfc\xaf\x8f\xae\xaf\x5d\x08\xbc\x9f\x85\x64\x0e\x4a\xb5\x10\x0a\x4b\xbe\x6f\xf5\xce\xd6\x27\x64\x58\x72\xcf\x6d\xa9\x9d\x4e\x38\xec\x2c\xae\x66\x39\xc0\xfe\x0f\xc6\xfe\x18\xf8\x9e\xd6\xed\xad\x44\xbe\x90\xcb\x07\xde\x8e\xa3\x84\x26\xe1\x64\xbf\xa4\xa6\x24\x06\xae\xa1\x9c\x1f\xd3\xbe\xa8\x10\xb8\xff\xec\x7e\xca\x3f\xe5\x04\x03\x57\xd7\xd0\xbb\x1f\x9b\xe4\x09\xf1\x87\x13\xc3\x7f\x5d\xd8\x4d\x38\x3c\x28\xe9\x5b\xe6\x90\xc9\xe0\xf3\x2a\xa1\xae\x31\xa5\xf5\x84\x67\xba\xeb\x8e\xef\x31\x90\x22\xd8\xdb\x54\x71\x36\xad\xac\x23\x38\xac\x17\xee\xca\x4e\xdc\x4a\xb8\xef\xf9\xf9\x81\x7f\x6d\x2a\x21\xa8\x78\xcb\xaa\xb2\x5b\xcd\x0c\xb2\x57\x0b\x2f\xb9\x5b\xb5\x89\x10\xc9\xf3\xe0\x56\xfb\x81\x54\xc2\x38\xfb\x47\x97\x69\x97\x56\x12\xfc\x1f\xed\x13\xe4\x69\x11\x22\x2c\xfd\x19\x10\xc0\x31\x90\x4e\xc8\x74\xb6\xe4\xdb\x13\x98\x4e\x50\x62\xfd\x0e\x6c\xdc\x71\x8c\x10\xd7\x2b\xcc\xce\xbe\xe6\x3c\xe1\x92\x4e\xe1\xbb\xee\x51\x79\x42\xbe\x64\xc8\x1a\x45\x91\x3c\x42\xc1\xd1\x68\x79\xcb\x67\x09\x84\xa8\xa9\x0e\xf6\x0b\xb4\xf5\xfe\x41\xe6\xa8\x91\x7d\xd2\xe2\xe9\x04\xeb\x65\x75\x3c\x97\x07\x2b\x18\x18\x7b\x70\xfe\xba\x39\x59\x52\xac\xb3\x66\xc4\xb4\xf1\x13\xfa\xd5\xda\xdf\x6b\xed\x50\x24\x6c\xbb\x33\xcf\xa6\x31\xf3\x04\xa1\xe6\xe5\xdd\xf1\xf4\x16\x03\x82\x76\xb2\x1e\xef\x9b\x5d\x91\x84\xca\x2d\x86\x77\xde\x1b\xe5\x11\x74\xfb\xfa\xf5\x87\x45\x2f\x10\x4e\x5d\x0b\xe3\x0d\x69\x3d\x44\x78\xac\x77\x56\xd4\xcd\xf0\x29\xc1\xa8\x4f\x5b\x35\x87\x55\x4f\xa8\xfa\xb4\x3b\xe2\xe8\xaa\xa7\x04\xd6\x83\x46\xd5\x25\xd6\xa7\x19\xd4\x57\xec\xf4\x79\xa3\x77\x9c\x70\xf5\x6c\x48\xfe\xca\xb6\x60\x02\x1f\xf9\xcd\x50\x72\x63\x27\x54\x38\xb9\x78\xbd\x97\x99\x42\x28\xfc\x79\x45\x31\x68\xd7\x2c\x02\x5f\x4c\x57\xc4\x65\x07\x73\x06\xd9\xa7\x0b\x0e\xfd\xf6\xbd\x48\xa0\x75\xa6\xb3\x6f\x4f\x54\x12\x96\xf0\x1e\x8f\xdd\xa5\x68\x4e\x78\x18\xf8\x71\x69\x6f\xcd\x36\x82\xa2\x55\xd0\xd1\xe1\xe0\x3a\x06\xce\xaa\x23\x33\x56\xcf\x7e\xca\xc0\x6c\xfa\x03\x17\xf3\x63\xfd\x84\xac\xaf\xdf\x3f\x7d\xe3\x7d\xca\xc0\xfc\x77\x9d\x57\x2f\xdf\x4d\xc2\xc7\xd9\xa9\x72\x53\xf5\x6a\x09\xe5\x53\x78\x3a\x95\xf7\xd4\x12\x84\x39\xe6\x4c\x38\x27\xa5\x13\x9c\x9d\x1a\xcb\xc5\xf4\x82\x09\x0f\x26\xd8\xbc\x3e\x9e\x48\x20\xe4\x1d\x7c\x1e\xde\x7f\x20\x83\x81\x61\x59\xf4\xb2\xf3\x0b\x1c\x09\xbe\x4d\x33\x2e\xb6\xfb\x2f\x20\x9c\x7b\xf4\xfb\xe5\x20\x67\x2d\xe1\xc4\x7b\xf7\x91\xe7\x07\x6d\x08\x6a\xad\x1c\x5f\xf6\x71\x26\x12\xfa\xcc\x7f\x78\x06\x71\x98\x13\x7a\xd6\x9e\x6f\xba\xe9\x63\x4c\xb8\x93\xdf\x22\x6e\xff\x6c\x0b\xc1\xfc\xf2\xf4\xa1\x4d\x6d\x17\x18\x68\xf6\x08\x73\xcf\x34\xb3\x24\x78\xd9\x76\x2d\xf9\x61\x91\x49\x58\xaa\xab\x9e\x2f\x14\xd7\xc6\xc0\xcb\xb9\xab\xbd\xcc\x45\x93\xb0\xa7\x5b\xbc\x77\x35\xdf\x09\x9a\x88\x3c\x12\x60\x14\xbc\x9b\x70\x24\xff\x76\xdd\x2f\x47\x6d\x02\xdb\xf1\x67\x7b\xe3\xe5\x53\x19\xf4\xf9\x5e\x1f\x97\xe8\x78\x4d\x60\x9b\x79\xfb\xdd\xcb\x64\x7f\xc2\x11\xfd\xeb\xf4\x3c\x79\x39\x61\xd1\x1b\x0f\xb7\xd3\xdc\x67\x08\xdb\x66\x4c\x94\x54\x97\xc7\x32\x18\x7a\xc5\x6d\x33\xd7\x7f\x13\x61\xd5\x61\xff\xc5\xd5\x31\x07\x09\x02\x21\xe9\xf6\x3f\xdf\xa9\x12\x1e\xf4\x08\x3f\xb8\xba\x67\x01\x41\xe2\x8f\xd7\x81\xb3\x05\x8b\x09\x09\x77\x94\xb2\x7a\xd3\x2e\x11\xbc\x5e\x4b\x73\x99\x48\x2c\x22\xe4\x0d\xc9\xd8\x28\x86\xc8\x13\x6e\x8c\x2e\x3c\x22\x7c\xa4\x81\x20\xf9\x93\xb9\x67\xd2\x19\x45\xf0\x28\x49\x94\xc9\x94\xed\xad\xc4\xec\x39\x1b\xca\xf9\xaf\x2b\x11\x14\x5a\xe4\xbf\x34\x96\x69\xfe\x83\x54\xb6\xa6\xd4\x0f\x52\xcf\x58\xb0\x9b\xfb\x67\x24\xc0\x3e\x9e\xf0\x7c\x86\x4c\xd5\xa5\x57\xba\x84\xb4\xf3\x69\xfe\x4d\x3f\xc3\x08\xe6\x2b\xb8\x84\x1f\x59\x07\x12\x64\x0a\x8f\x5a\x76\x5b\x1c\x21\x68\xba\x7c\x8f\x11\xec\xf7\x22\x6c\x2f\x3a\xc2\xfd\x59\x35\x85\x41\xf9\x98\xcf\x8c\x2d\x9e\xbe\x84\xfa\xb6\xaa\xaa\xff\x9e\x29\x0d\xdb\xe8\x12\xb1\xb0\x92\x50\xdb\x67\x75\x22\x4e\x76\x80\x85\x0f\x4d\x86\x7b\x32\x22\x6e\x4d\x1e\xf4\xf6\x2c\x8c\x53\x12\x23\x64\x5d\x93\x97\x13\xcd\x99\x41\x90\x71\xba\x53\xbb\x54\x39\x9b\x85\x86\xd5\x6d\x0d\xbc\xba\xdb\x08\x5c\x3d\xef\x16\xdf\x8d\x9d\x4f\xf8\x7c\x72\xc0\x21\xc9\x2b\x80\x30\xcd\xa1\x74\x9b\xc5\xfb\x28\xe6\x6f\xd9\x7d\xe1\xe3\xbb\xe9\xae\x7c\x04\x96\x98\xd7\x75\xc6\x78\x11\xe1\xd7\xbc\x73\x30\xd3\x5d\x4b\x10\x11\xcd\x19\x8c\x64\xdb\x44\x50\xd1\x4a\x9c\x4b\xbf\x16\x12\xa6\x4e\x2b\xca\x57\x89\x5c\x4a\x98\x7a\xe5\x5b\xaf\x71\xe3\x4e\x02\xcf\xd4\xde\xee\x67\x8b\x2f\x10\x2e\xe8\x0f\xb8\x6d\xd6\xff\xc2\xc2\x1b\xe5\x6c\xbd\xa9\x7b\x33\x98\xbf\xe5\xc3\xe5\xbe\x3b\x4e\x4a\x36\x84\x86\x6f\x22\xda\x4a\x1f\xf8\x09\xb1\xbb\x42\xb2\x27\xa6\xb0\x08\x6f\xd3\x1f\xfa\xc9\x3f\xf5\x21\xf4\x48\xda\xc4\x8e\xa5\xd5\x12\x92\xb6\x7a\xf0\xf4\xf6\x86\x13\x72\xc7\xf4\x4f\xb4\xa7\x16\x11\x3e\xae\xb3\xe6\x3c\xea\x91\xc4\x60\xfa\x6d\x55\xf3\xc3\x07\x75\x08\xa6\x17\xf9\x33\x9b\xeb\xbc\x08\xc2\x37\xdb\x3a\xd3\x8a\x0f\x12\x1c\x15\x79\x56\x69\x64\x83\x85\x07\x9d\x3b\x6f\xce\xdf\x23\x4c\xf8\x2e\xbf\xea\x2d\xf7\x8b\x23\x04\xf5\x82\x29\x4b\x43\x0e\x1a\x12\xf6\x0f\xa9\xad\x90\xae\xdc\x42\xf0\x2e\x90\x8b\x7d\x23\x73\x90\x20\xab\x1d\x39\xf5\xaa\x5a\xfe\x3f\x25\x3a\xda\xbc\xc5\xd8\xa9\x8d\x85\xa2\x72\xc9\x35\xa6\xf7\xbb\x09\x6a\x0f\x43\x7d\xd5\x0c\xd8\x09\x7a\xd1\xf3\x7a\x65\x2c\x39\xff\x41\xd2\x0d\xeb\xb0\x5e\x09\x61\xc2\x59\x2f\xbb\x57\x37\x55\xf9\x08\xe3\xef\x96\x75\xf6\x6f\x10\x20\xcc\x7b\x5e\xb6\xdb\x6a\x62\x0a\xe1\xb2\xfe\xe2\x77\x72\xf9\xec\x84\x6d\xb9\xc7\xed\xe4\xa3\xbe\x10\x44\x52\x1f\x8e\x9c\x3b\x10\x49\x10\x57\xd4\x18\x5b\xa7\x17\x45\xd8\x6d\x33\xb0\x8a\x77\xf8\x30\x41\xf0\xcd\xed\x25\xd9\xd9\x79\x0c\x64\xfe\x08\xec\x48\x4f\xdf\x41\x78\x61\xdd\x57\x21\xde\x5e\x4c\x58\x6e\x61\x20\x72\x8f\xb7\x84\xb0\x4b\xe9\x8b\x92\xda\xc9\x02\xc2\x25\xad\x5b\x96\x23\xc2\xa1\x84\x94\xaa\xbd\x89\x35\x87\x7a\x08\x97\xb8\x98\x36\xb6\x94\x2a\x42\x89\xfe\xa9\x23\x67\xcf\xd7\x12\xf6\xd8\x26\x65\xa8\xac\x61\x08\x1c\xeb\x57\xf0\x4f\x5b\x57\x43\x78\x91\xc4\x13\x72\xea\xa8\x3b\xe1\xb5\x4b\x74\xd1\x30\x8f\x15\xc1\xac\x42\x7c\xa9\xac\xd9\x51\xc2\x7a\x83\xd0\xb5\x13\x36\x6d\x0c\xd2\x4e\xbe\x67\x1e\xcc\xf2\x61\xe0\x7b\x30\xde\x61\xcd\xe4\x74\x71\xb4\x01\xb3\xda\x89\xf0\xfc\x50\xd8\xfc\xa5\x93\xff\xe9\xa2\xe5\x41\xc2\x2a\xfa\xab\x08\xa3\xf5\x31\x81\xbb\xa2\xaf\x13\xf4\x03\xd3\x3f\x07\x1c\xe3\x25\xb8\xd6\x36\xc4\xf1\x27\xff\x64\x41\xf3\xba\x8e\xcc\x45\x4f\x6b\xc2\x8d\xb7\x91\x02\x15\x7b\xf4\x08\xcd\x9b\xfb\x04\x33\xdd\xd6\x10\x36\x0b\xf0\xa7\xc4\x06\xf1\x11\xfc\x2f\x67\x4f\x2b\x38\x3c\x85\x70\x2e\x79\xca\xca\x17\x93\x2f\xec\x9e\x77\xde\x69\xaf\x96\xfd\x61\x21\xa4\x4b\xa1\xff\x9a\xdf\x1f\x16\xf4\x4c\xb6\xa6\x49\xda\x79\x4f\xbe\x3b\xfb\x66\x78\x55\xc6\x33\x58\x7c\xd3\xe7\x25\x97\xa1\x24\xfd\xc5\x87\xe3\x3d\x82\x86\x09\xa1\x04\xaf\x9a\xb3\x33\x64\x75\xb7\x13\x04\xc5\x02\x0f\x89\xb3\xbb\x11\xb8\xc5\x97\x68\x1f\x54\xf7\x25\x58\xeb\xdd\xe8\x66\x67\xbd\x20\x3c\xab\xb9\x2c\x9f\xf0\xa9\x7c\xf2\x2a\xa3\xf3\x72\xb7\x5f\x0e\xa1\x57\x89\x7f\x68\xde\x8a\x06\x42\xec\xf4\xdf\xdb\x7e\xad\xba\x4d\x90\xf7\x3e\x81\x27\x0e\xb9\x04\xd7\xa1\x06\xef\x13\x7b\x5b\x09\x7e\x72\x7c\xea\x11\xfd\xdd\x84\x19\x77\x65\x03\xf6\xf5\x16\x11\xfe\x3c\xbb\xb2\x77\x25\x6f\x0b\x21\xe7\xb5\xe8\xdc\x47\xbf\x4a\x09\x31\xdf\x15\xa6\x0b\x99\x3b\x13\xe4\x4d\xc5\xae\x2c\xe8\x14\x23\xbc\x6d\x79\x74\xc4\x74\xbb\x1f\xc1\x4a\xbc\x2a\xde\xbe\x2e\xe8\x9f\x72\xc8\xbb\xe0\x4b\x6f\x62\x0e\xc1\xe2\x18\x27\xf7\x2a\xb6\x28\x82\xf8\x29\xf7\x24\x2e\x85\x7d\x84\x3f\x32\x4b\x97\x88\xf9\x71\x11\x76\x1b\xb2\x02\x1d\x73\x82\x09\xbf\xa4\xa6\xec\xe5\x3f\xaf\x4f\x50\x0e\xbf\x3f\xf7\xa8\x40\x33\xa1\xea\xeb\x36\x21\x2f\xe7\x7c\x42\xf9\x4d\xf7\x4c\x0f\x95\x14\x82\x5a\x68\xe6\xb1\x19\x2f\xec\x08\xd5\x6a\x1b\x3f\x15\x5a\x58\x11\xae\xd6\xf4\x5c\x5f\x1f\xd1\xcc\xc2\x8a\xed\x86\x9f\x6e\xf0\xf8\x33\xe0\x7f\x6a\xb0\x9b\xfc\x65\xe9\x2f\xd2\x27\xc4\xf3\x7e\x25\x69\x13\x9c\xf6\x46\xe9\xfa\xb7\xcc\xf9\x07\x2b\x3b\x4d\x8b\xcd\xb8\xbc\x08\x03\x2b\xef\xed\x31\x2e\xae\x25\x58\x1f\x4c\x4c\x3a\xf9\x33\x9a\xc1\x85\xa7\x71\xde\xa1\x92\x17\x09\x4b\x3f\xb0\xbd\xef\x98\x99\x42\xf8\xb8\xa5\x53\x34\xfc\xfc\x26\x42\x72\xec\xe1\x3d\xd1\xbc\x59\x04\xcf\xea\xcf\xe2\x81\x77\xf7\x13\xc2\x16\x4c\x49\x79\xf0\xe3\x1a\xe1\xd0\xe8\x0f\x9f\x8f\xca\x41\x84\x21\xd3\xa1\x53\x1e\x2b\xea\x19\x24\x7f\xb9\xa3\x33\x21\xd4\x48\x58\xea\xd5\x1c\x6d\x39\xb3\x89\x20\xac\x6b\x12\x94\xe0\xa2\x41\x78\xc3\x7e\x4b\x78\xa3\x41\x13\x61\x95\xcb\xea\x9f\xbd\x0b\x97\x12\x36\x14\x78\x7d\x31\x58\xfc\x8a\xc1\x88\x47\x50\x71\x48\xc3\x3b\x16\x66\x1f\x7f\xe8\xd7\xa4\x23\x40\xf8\x53\xfb\x73\x95\xaa\xec\x6a\xc2\x49\xde\x7e\xe1\xf2\x1c\x23\xc2\x2d\x03\x3e\x29\x93\x5b\x0f\x08\x9e\xa3\xaf\x4f\x18\x49\xbb\x12\x66\x8d\x75\x5c\x79\xff\xbb\x83\x60\x34\x32\xcd\x55\xfa\x40\x1d\xa1\xf3\x4c\xe6\x8d\x99\x93\x38\x13\x25\x1a\xf7\xd2\xfb\x21\x83\x37\x9d\xb1\x1d\x52\x93\x25\x60\xf3\xfc\x77\xde\x8b\x22\x08\x5d\x96\xf6\x11\xd7\x26\xbf\x1b\x03\xb1\x57\xd2\xaf\x4e\xa2\x67\x65\xa4\xfe\xfe\x8c\x28\x42\xc5\xc1\x4f\x23\x71\x93\xe5\x0f\xe7\x48\x57\xec\x24\x64\x66\x68\x2e\x8c\x14\x3e\x43\x70\x9b\xb9\xd5\x40\xe7\xec\x39\xc2\xda\x17\xc2\xbb\xaf\xac\x2b\x27\xf0\x73\xb6\x9e\x8d\x98\x9c\xfe\x87\x94\x0d\x33\x74\x33\x36\xcd\x23\x34\x56\x6d\xbd\xb7\x80\xe7\x3c\xe1\x50\xbd\x93\xb7\xa9\xf1\x4e\x06\x0d\x3a\x26\x1a\x7f\x3e\x3f\x24\xa4\x88\x66\x9e\xc9\xe2\x67\x08\xa1\x32\x8f\xc7\x63\x5e\x56\x30\x88\xb5\xb0\xcd\x7b\xad\x90\x42\x88\xbb\xf2\xf3\x6e\xb2\x81\x1e\xa1\xa7\x65\xde\xb5\x0b\xab\xaa\x09\x7b\x43\xb2\x4a\xe6\xb4\x9f\x26\x6c\xa9\x5e\xb0\xf7\xf9\xcf\xd3\x0c\xae\xda\x3c\x50\x6d\xc8\x39\x43\xb8\x18\x60\xcc\xf9\xc4\x40\x8e\xc0\x67\xec\xee\x63\x34\xf7\x14\x61\x6e\x68\xc4\x95\xf2\x69\x2f\x2a\xf1\x66\x5f\xc2\x8d\x4b\x17\xcb\x09\x77\x5d\x76\xd6\xb7\xb4\xf4\x10\x92\xe4\x7d\x1a\x7f\xfb\xd5\x31\xe8\x4f\x52\x9b\x3d\xd1\x79\x8b\xc0\x12\x70\x5b\xbf\xe8\x95\x0e\xa1\x71\x03\xa3\x72\x3a\x55\x8c\x50\x9d\x2b\x3b\x57\xb4\x58\x87\xa0\xe2\x9c\x97\x9e\xb7\x22\x91\xf0\xee\xa4\x9b\xd8\xf8\xbd\x5c\xc2\xc2\xa1\xdd\x9f\xc6\x26\x71\x3c\xe1\xa3\xe0\xb8\x4f\x1a\x21\xe5\x47\xc4\xba\x3f\x4a\x59\x04\xbe\x0f\x7a\x1a\xdb\x8b\x8f\x33\x78\x9a\xd4\x7c\x26\x8c\x2d\x99\xf0\xe4\xcf\x96\x94\x45\x49\xb7\x18\x34\x6a\xee\x99\xb9\x52\xb2\x8f\xa0\x79\xbe\xa1\xfb\xa5\xcf\x18\x41\xd1\x6c\xe6\xa8\xeb\xd9\x7a\x82\xf8\xaf\x25\x3b\x95\xb3\x7d\x09\x43\x0a\x9a\x33\xd3\xac\x1f\x12\x74\x6d\x12\x92\xbf\xdd\x2f\x27\xb8\x4e\x0b\x70\x8b\x9a\x73\x87\x60\x5a\xf5\x87\x53\xf8\x7a\x39\x21\x66\xd3\x1e\x5b\xe9\xcc\x22\x02\x8f\x53\xe3\xf4\x96\x5b\x41\x04\xa3\xca\xd9\x6c\xad\xaf\x02\x08\xc2\x2e\xd6\xdb\xb7\x06\xb4\x11\x0a\x3f\x78\x1e\x48\x7d\xd9\x4e\x88\xcf\x32\x2e\x30\x3a\x7c\x9f\x70\x35\x77\x59\xce\x96\x3f\x65\x84\xb4\xec\xf1\xb7\xd9\x47\x3c\x18\xb4\x39\x2f\xdb\xd0\x64\x6e\x48\x88\x82\x7a\x6b\x8b\x3b\x43\xa0\x0d\xde\xf9\xbe\x67\xec\x09\x1e\x0e\x7b\xb9\x16\x7c\xdd\x4c\x58\x73\x7b\x68\x43\x97\x40\x0c\x41\xde\xfd\x62\xad\xc7\x9d\x0d\x84\xe1\xd7\x32\xf7\xd6\xba\x99\x13\x3c\xcc\x0e\xa6\xc4\xdf\x52\x20\x6c\x7d\x3a\xeb\x7c\x92\x40\x00\x03\xf7\x80\x94\x27\x79\xb3\x96\x12\x92\x07\xa6\x15\x04\x09\x65\x56\x22\xf9\x77\xc8\x69\xb6\xa4\x48\x06\x43\xf9\x4f\x4f\x77\x4b\x77\x10\xde\x9a\x29\xab\x46\xf2\xa6\x12\x06\x4c\xcd\xdf\xbf\xfd\xfe\x81\x30\xbf\x6d\xd6\xcc\xff\xca\x2b\x6e\x43\xab\x11\xfe\x70\xc2\x37\x67\xc7\x47\xcf\xbe\x3c\x22\x5c\xbe\x3b\xa2\xfe\x1f\x7c\x4c\x3a\x9f\x7f\x9a\x9c\xec\x43\xb6\x85\x3e\x9d\x2c\x5b\x86\xbd\x83\x34\xbe\x3e\x22\x7c\xf4\x8e\xec\x19\xb3\x0c\x22\xdc\x8c\x97\x3d\xef\x16\x90\x4b\x68\x5e\xda\xfb\x42\x4d\x38\x97\xe0\x62\xe2\x35\x7d\xc7\x9e\x02\x42\xc8\x31\xd6\x09\x76\xc5\x20\x42\x78\x07\xdf\xfe\xff\x1e\x8e\x20\x35\xf9\x2b\x93\xdf\x4c\xb9\xcf\x16\x37\x8d\xfe\xe4\x12\x36\x3a\x9a\xb3\xce\x9e\x69\x25\x74\xe5\x68\x54\x3c\x76\xad\x26\xfc\x3c\x7d\x24\xf0\x72\x0f\xc3\x60\xb9\xcf\x56\xbd\xbd\xc7\x44\x08\xdb\x62\x37\xef\xe9\x4e\x5c\x4f\x10\x50\x59\x53\x94\x7c\x4e\x8a\xf0\xf9\x97\xf6\x42\x7b\xc1\x14\xc2\xd6\x67\xf5\xd3\xe2\x65\xe7\x10\x42\xd7\x98\xff\x9e\x91\xb3\x8d\x20\xa4\xea\xf3\x2a\xde\xe9\x27\x0b\x66\x9a\x47\x56\x54\xab\x2b\xd2\x5f\xbc\x38\x33\xd8\xf8\x36\xe0\x21\x0b\x83\x41\x7c\x61\x2f\xb6\x19\x13\x64\x5e\x2d\xb8\xa4\x57\x71\x98\xa0\x27\x15\x6e\xd2\xbc\x50\x97\xa0\x34\x6a\xf1\x4d\x6b\xca\x66\xc2\x2e\xae\xde\x3d\x81\xab\x55\x08\x56\x7a\x1d\x03\x4a\xd3\xc3\x08\x66\x0a\x0a\xf6\x82\x47\xd6\x11\x9c\x9e\xa4\x04\x57\xb3\xc4\x08\xef\xdb\xf6\x3a\xa8\x7a\x76\x56\x62\x39\xeb\x92\xbb\xb2\xa0\x1a\xa1\xfc\xfc\x40\x58\xa6\xa9\xd9\x3f\xb0\x18\xdd\xbd\xd6\xde\xec\x5d\xe5\x44\xc8\xb2\x9f\xef\x2f\x3c\x26\xf4\xae\x78\xc4\xcc\x78\x6c\x4d\xc8\xbd\x31\xfc\x1d\xd2\x16\x84\xcf\x5e\x86\x0d\x92\x79\xf5\x0c\xea\x0d\x78\x0b\x02\xae\x15\x32\x90\x5a\x69\x5b\x28\xfd\x3a\x9f\x30\xf5\xd3\xe6\x6a\x8b\x17\xf2\x84\xea\xb5\x71\xe3\x8b\xf3\x45\x08\x0d\xe5\x33\xf7\xb9\x6e\x2e\x24\x08\x3c\x6b\xbe\x59\xbf\xa8\x80\xf0\x66\xef\xa6\x2d\xca\xaf\xf4\x09\x9a\x5c\xdc\xb3\x39\xcf\x94\x12\x32\xb3\x74\xd7\xa9\x58\x06\x10\x9a\xb4\x5e\x68\x3d\xfd\x12\x41\xd0\x7b\x67\xfc\x7c\xc8\x3a\x89\x01\xef\xc5\x95\xd7\xdf\x68\x9d\x22\xd8\xf6\xa9\xaf\x58\xee\xb7\x85\xe0\x26\x10\x2e\x36\x7e\xcf\x85\x81\x71\xff\xf6\x13\x73\x6f\x8d\xb1\xf0\xe1\xae\x8c\xc4\xcc\x0f\x9b\xe8\x2f\x7a\xdf\x77\x9a\xfb\x2c\x57\x26\x64\x3b\xfa\x88\x96\xdf\xed\x60\x61\x4b\x48\xe8\x8e\x27\xe5\x32\x84\x33\x33\x9c\x0a\x65\xb3\x7f\xb2\x10\xca\x5f\xaa\x7a\x58\x20\x8b\x30\xb3\xed\x47\xfe\xfa\xcf\xd2\x84\xe9\x47\x7f\x0c\x5b\x17\x44\x12\x78\x2b\x78\x76\xc5\xc5\xc9\x13\x8e\x99\xa5\xb1\xbf\xe2\x3a\x44\x68\xf5\x4e\x74\x52\x5d\x5d\x46\xb0\xfe\xd2\x91\xd0\x7e\x2a\x9a\xa0\xe7\x78\x60\x99\x44\x92\x27\xe1\x67\xf3\xe1\x7b\x25\x8b\xa2\x08\x4a\xae\xc9\xba\x9f\x32\xe6\x11\xae\xac\xe3\x3d\x55\xfb\xd4\x92\x90\x9c\xc7\x3f\x6b\xb9\x8b\x24\x81\x4a\x76\x09\x7b\x38\xab\x13\xce\x6b\x8e\x89\x3e\x94\x96\x27\x78\x87\xeb\xef\x54\x37\x71\x62\x90\x39\xb8\x3b\x62\x81\x51\x16\x41\x27\x55\x29\x69\xe6\x32\x57\x42\xa1\x99\x87\x42\x84\xde\x21\x02\xd7\xd4\x53\x95\xfd\x0e\xe7\x19\x0c\xa7\x57\xec\xd9\x54\x14\x4a\x7f\xa1\xf5\x7d\x5b\xc8\xea\xf8\x9b\x84\x52\xc5\x48\x9d\x96\xc8\xb3\x04\x7b\xeb\x1d\xaf\xb6\xeb\xed\x23\x9c\x5f\xe2\x97\x7c\x31\xff\x27\x0b\x8a\x3f\x73\xfd\x6e\xdc\x92\x20\xa8\xb2\xed\xdb\xe9\x1f\xc5\x4c\xde\xf9\x2f\x98\x5e\xdf\x19\x4a\xd0\x5e\x7e\x2d\x48\xfc\x96\x3b\xe1\x24\x46\x16\x27\xb7\x9f\x23\x30\x0e\xc7\x02\x5d\xbb\x44\x08\xb2\x41\x17\x6f\xab\x70\x1e\x67\x70\xae\xdb\xca\xb5\xfe\xab\x26\x41\x24\x38\xcf\xc0\x6a\x4f\x0c\xa1\xfb\xf9\x6a\x59\xb6\x81\x25\x04\x2f\xf5\x03\x9c\x99\x29\x51\x84\x43\x9d\x73\xbc\xa7\x6d\x7e\x4b\x70\xec\x36\xe6\x53\x3b\xa5\x4b\x88\x93\x76\x2e\xae\xe6\xf0\x25\x7c\x6d\xb6\x7e\x9b\xfc\x3a\x88\xf0\x62\xde\xda\xfd\xd1\x66\xed\x04\xa6\x48\x32\x55\xc4\xb0\x9b\xc1\xa9\xb0\xa6\x8c\xf2\xc9\x67\xa6\x49\xde\xf8\xba\x31\x55\x99\xe0\x7e\x24\x23\xcd\xad\x6d\x3f\x41\xf6\xde\xb0\xc8\xeb\x97\x8e\x84\x23\xb7\xb3\xfc\xcb\x07\x94\x09\x17\x25\xaf\x44\x8a\x56\x2e\x24\x04\x73\xbe\x89\xd3\x8d\xac\x25\x98\xeb\xdb\x3e\xc9\xfc\xf4\x90\x85\xb7\x32\x37\xba\xe7\xa5\xf0\x13\x0a\x2a\x25\x43\xd3\xad\x2a\x18\x98\x3f\x09\xfb\xee\xc2\x63\x4c\xd0\xe8\x2f\xb4\x78\xbd\xc5\x83\x10\xb4\xde\x59\x61\x79\xd9\x5d\x02\x9b\xd4\x6c\xc7\xff\xa6\xdc\x1e\x47\xd3\x8c\x47\xfc\x84\x63\xa3\x2b\x06\xa5\xe2\x3a\x08\xab\xcc\x6d\x54\xa5\x42\xbb\x98\x89\x45\xaf\xdf\xbc\x19\x5d\x49\xb0\x3f\xb4\xc5\x2e\xf3\x45\x21\x21\x91\xaf\x20\xe9\xb5\xe8\x65\x06\xfe\x3d\x43\x4a\x0f\x0e\x1f\x25\x94\x28\x9e\x72\x91\x74\x7e\xc9\x40\xe5\xe6\xad\x02\xcb\xaf\x65\x84\x6e\xde\x8e\xf7\x16\xcf\xef\x10\xa6\xdb\x3f\x3d\xee\x66\x6e\x4b\xd0\xc9\x68\xd8\xde\xd1\xeb\x42\xd8\x5d\xb2\xa1\x36\x2e\x4c\x91\xd0\x57\x3b\x76\x66\xf3\x66\x69\x42\xc8\xac\xe9\x6a\xab\x84\x5c\x08\xdb\x7c\xc5\x5a\x78\xb7\x48\x12\xac\xfb\x9c\x4d\xad\x25\x0b\x09\x73\xf9\xb7\xff\xfe\xaf\x84\x15\x75\x78\x16\xdc\xeb\xad\xc4\xe1\xb9\xd3\xa7\x66\xd4\xbd\x27\xbc\xef\xb5\x9a\xf7\xe3\x52\x22\x61\x09\x77\x50\xeb\x99\xc2\x66\xc2\x0b\xbe\x5a\x7e\xf3\x19\x0f\x09\x72\x01\xfe\xfc\x1c\xbf\x2f\x10\x58\xd7\xfc\x9e\xb2\xff\x78\xcb\x60\x2b\xc5\xa9\xae\x8a\x79\x4e\xd0\xe1\xe0\x9b\x27\xb8\xf0\x0d\xa1\x4d\x27\xd0\xac\x70\x65\x0e\xe1\x7e\xc9\x1c\xfa\xde\xe2\xc3\xa0\xad\xfe\x99\x8f\xe2\xe2\x02\x06\xfc\xe5\xe9\x37\x87\xd8\xea\x09\x39\x8c\x86\xc2\xf2\xc1\xdd\x84\x78\xc9\xef\xaa\x3b\xc5\xf8\x08\x1e\xf5\x5b\x77\x3a\x8c\x73\x12\x96\xf6\x6c\xd6\xbe\xbf\x79\x1d\x21\x27\xaf\xe0\x5b\xb6\xe5\x6b\x42\xb7\x9a\x72\xf3\x8a\x80\x3c\xc2\xd4\xd7\xa5\xc2\xcb\x26\xf1\x44\x84\x25\xe5\x7d\xb4\x9a\x81\xf5\xca\x47\x6b\xfe\x2b\x06\xdb\xa2\xc7\xcc\x2f\xc5\x13\x94\x8c\x34\xa7\x2a\xaf\x6b\x22\x9c\x9c\xaa\x35\xac\x38\x89\x9b\x29\x81\x2f\x37\xd6\x87\x11\x34\xef\xa6\xc8\xff\x57\x0e\xfc\x6c\xdd\xbd\x6e\x12\xa6\xce\x57\x73\x62\xf9\x83\x09\x05\xfd\x8d\x51\xed\x1e\x0c\x83\xf3\xb4\x8e\x2c\xb3\xeb\x09\x47\x43\x0a\x0e\x27\x35\x5f\x66\x10\xef\x2f\x72\xbd\xd1\x2e\x98\x70\xe2\xc2\x87\x03\x09\x6f\x0f\x11\xac\x43\x9f\x1d\xf9\xda\xf7\x8a\x81\xd2\xfc\xdd\x1d\xdb\x66\x3c\x63\x30\xf7\xd6\xa6\x73\xfe\xfa\x83\x0c\x06\x3f\xa7\x57\xed\xbf\xd9\x41\x13\xbd\xe1\x36\x49\x7a\x3d\x0c\xf6\xb6\x5f\x4c\xbc\x17\xf8\x95\x81\xd3\x99\xcc\xa1\xca\xdc\xd7\x0c\xf2\x7c\xe7\x87\x88\x8f\x27\x10\x64\xaf\x09\xb5\x3c\x73\x18\x26\x44\x1c\xee\xb6\x9f\xa2\x97\x49\x88\x3b\x1b\xe2\xfd\xd5\x24\x83\xc0\xa5\xfa\xe8\xd4\xf1\xb1\x1e\xc2\xa0\x13\xf8\xcd\xbc\xef\x11\x1c\x54\x36\xef\xe8\xe6\x6f\x27\xec\x19\xab\xb0\xd3\xe6\xca\x63\xe0\xa5\xb8\xc5\xa6\xe9\x85\x37\xe1\x6e\xf7\xdb\xd7\x99\x76\xa9\x0c\xf6\x06\xaf\xb2\xfa\xfa\x39\x91\x01\xdb\xd4\x5a\x97\x8b\x13\x7b\x09\xcc\x4b\x1f\xcd\xd2\xd4\x66\x06\xeb\x5c\x52\x74\xbc\x57\x15\x10\x02\x39\xbd\xaf\x25\xef\x5a\x41\xf8\x78\xad\xd4\xdd\x78\x8e\x06\x21\x87\x27\x8b\xe7\x69\xec\x52\x82\xd7\x2d\xf3\xaf\x12\xd3\xc0\x82\xcf\x5a\x5e\x58\xf5\xad\x24\xbc\xcb\xe3\x9d\xf1\xae\x43\x8b\x30\x53\xdc\x8d\xe1\x97\x3b\x4a\x70\x6a\xe0\xe8\xf9\x1c\xbf\x91\x70\xb0\xb2\xc9\xea\x26\xf3\x86\x85\xe9\xc5\xb1\x3b\xe3\xff\xec\x26\xf4\x08\x6c\x98\x7b\x2a\xce\x88\x20\x56\xef\x91\xb5\x41\xc0\x83\xd0\x2b\xe0\xbd\x50\xce\x64\x25\xa1\xa9\x69\x63\xf4\x95\xbc\x7c\x42\x6a\xfd\xc5\xb0\xaa\xad\xab\x08\x2b\xec\xda\x3e\x5f\x1b\x7a\xc2\xc2\x42\x9b\x88\x96\x67\x1b\x47\xff\x41\x00\xff\x96\xe4\xba\x80\xa9\x84\xf7\x2f\x9f\xf7\x7c\xf0\xae\x21\xa8\xac\x4f\x37\x7b\x9f\xa2\x4a\x50\x29\x1e\x6d\xee\x5c\x98\x4c\x60\x4b\xef\x3a\x6f\x29\x95\xca\x20\x78\xc9\xbd\xe8\x8e\xea\x48\x82\x42\x22\xa7\x9e\xd6\xbb\x5c\x42\x52\x6c\x5d\xee\x1b\x6d\x35\x82\xa7\x68\xb4\x47\x41\xbe\x02\x41\xc0\x22\xc5\xde\x8d\xff\x1c\x21\xeb\x09\xab\xe8\xd5\xe3\x66\xc2\x2e\xed\xd1\x27\x3f\x92\x0f\x11\x0c\x57\x5c\xc9\x33\xfb\x38\x83\xb0\xf4\x15\xbb\xad\x93\xd3\x00\x0b\xd9\x07\x4a\x62\x0a\x39\xc6\xff\x7f\xd1\x2a\xf6\x2b\xeb\x40\xf8\x27\x16\x9a\xe7\x6f\xff\xfc\xe0\x44\x31\x21\x53\x5f\xc0\x76\xab\x9e\x3a\x41\x5b\xf6\x70\xe1\xb5\x4d\x93\x57\x12\xc5\x01\xf5\xf2\x99\x85\xcc\xdf\x69\xb9\x73\xbe\xdb\x85\x63\x3b\x18\x5c\x5b\xd5\x56\xf8\x44\xdc\x80\x30\x53\x58\x52\xfc\xc2\x5a\x13\x82\x9b\x82\x9a\xd6\x29\xef\xfb\x84\x3d\x1f\x39\x02\xce\x88\x16\x33\x98\x95\xa6\x57\x5b\xce\xba\xf1\x0f\x6e\xfa\x6f\xac\xef\x2f\xd5\x22\xac\xd7\x71\xdf\xce\xf5\xec\x26\x61\xf5\x1c\xcf\x62\x53\xd5\x08\x06\x1f\x72\x9b\x43\xeb\x06\x2c\x08\xfb\x3d\xf2\xd3\xe9\x83\x34\xa1\xc2\x59\x6d\xa6\xe9\x87\x3c\x06\x67\x7d\x0b\xaf\x34\x8c\x28\x12\x7a\x3f\xfe\x3e\x6e\xb7\x40\x96\x50\xf9\x50\x9b\xe5\xf0\x60\x3d\xa1\xb9\x6e\x60\xb8\x2a\xa8\x96\xf0\x6e\xb7\x7b\xff\xa7\xd9\x85\x84\xa8\x85\x72\x9a\x1b\x44\xda\x08\x83\xaa\xb5\x5a\xb2\xaf\xde\x12\x7c\x38\x0e\x3d\xfa\x6f\x5a\x28\xd3\xda\x77\xda\x30\x95\xd0\xc3\x37\xc4\x97\x11\x5d\x4c\x70\x13\xaf\xd9\xa8\x2f\x5c\x4c\xd8\x20\x66\xc3\x6d\x5f\x7a\x9f\xc1\x35\xa7\x62\xbe\x17\xc2\x95\x93\xef\xfd\x95\xf7\x0b\x7e\x16\x10\xa4\xd4\xe8\x5c\x89\x50\x25\x21\xf1\xb9\x77\xb6\xdb\xe9\x7c\xc2\xe5\x22\x96\xc3\x4f\xd4\x31\xb0\x3d\xa8\x66\x74\xb2\x25\x8c\xc1\xd7\x65\x5c\x12\x0c\x5f\x0c\x61\x87\xed\xd5\x91\x4b\x8c\x27\x61\xfb\x1d\x33\xbf\x84\xa5\x8b\x09\x6c\xed\x03\x2e\xeb\x04\x2b\x18\x7c\x12\x15\x11\x75\x16\x30\x20\x5c\x99\x72\xdf\xf7\x8d\xbb\x1d\x61\x8e\x8a\xc0\xfe\xfd\x33\xe4\x09\x79\x03\x3b\xe7\x7d\xf0\x5f\x4e\x48\xfc\xe4\xab\x3e\x7b\x7d\x3f\x0b\xef\x65\xf5\x7d\x3c\x3d\x89\xc0\x24\xf6\x79\xad\x90\x5d\x4b\xf8\x98\x17\xbc\xbe\x58\x5c\x81\x20\x1d\x11\xdc\xef\xea\xa6\x40\xc8\xc8\xb6\x3d\x2d\x96\xb3\x94\x40\x5f\xc6\xf7\xd9\xb0\x4d\x21\xc4\xf6\x4e\x04\xc8\x6a\x2b\x13\xd2\x3f\x71\x3a\x3b\x2e\x97\x21\xbc\xd0\xed\x8b\x97\x16\x08\x27\x5c\xb9\x32\x33\x5f\x23\xda\x87\xc0\x75\x64\x70\xff\x7a\x45\x35\xc2\x95\xc0\x19\xfe\x0a\x0b\xd7\x12\x42\x0f\xff\xd2\xb3\xf2\x91\x23\x58\x09\xb8\xe4\xe8\x98\xb6\x56\xa2\x40\xc0\xe0\xf6\xb0\xdd\x29\xfa\x8b\xdb\x16\x33\x73\x07\xc5\x4d\x08\xe5\xdc\x95\x73\x76\xea\x7a\x11\x06\x79\xd7\x54\x3e\x36\x2c\x20\x68\xc4\xfa\x31\x97\x0d\x8a\x09\x6a\xb1\xa6\xdb\x1f\xbd\x4e\x26\xd4\x2c\x49\x0c\xff\x3a\xf1\x82\xd0\xa5\xbd\x43\xf6\xbf\x12\xb9\x2d\xb6\x51\xf3\x69\x19\x21\xd4\x7e\xd7\xf4\x63\xbc\x05\x84\xca\xc3\xaf\xe3\x54\x15\x2b\x09\xc7\xe7\x06\xbd\x2a\x6b\x2a\x23\xec\xbe\xf1\xa8\x73\x4d\x52\x2c\x81\x9d\x6f\x43\xed\x28\x8f\x15\x21\xc7\x67\x68\xb4\x53\x45\x9f\x20\x38\xdf\x57\xd2\x5b\x4e\x8f\x50\xf4\x33\x73\x51\xf8\x69\x86\x10\x7f\x6a\x41\xd8\xd9\x11\x36\x42\xe0\xdb\xe4\x50\xe1\xfd\x8e\x84\x52\x5b\xb1\x71\x43\xfe\x8f\x84\xa5\x9b\x87\xf7\x6d\xe0\x18\x27\xa4\x37\x48\x37\x9f\xf6\xe6\x25\x6c\xb8\x73\xec\xbd\xf3\x1c\x5b\xc2\x65\x8c\x04\xe9\xaa\x0f\x31\x98\x6a\x3e\xfa\xf6\x6a\xda\xe4\x95\xe4\x0b\x6f\x56\xd2\xe3\xdd\x0c\xe4\xb7\xdf\x51\xaf\xf0\x7c\xc2\xe0\x4d\xff\xe7\x81\x55\xe9\x92\x84\x02\xbe\xe1\x96\xad\x97\x62\x08\x1d\x8b\xe2\x9e\x2d\x1f\x48\x21\xb8\x99\x67\x6f\xb6\xbb\x6a\x4f\xb8\x2e\xbc\x8e\x2b\x55\x64\x1d\x21\x26\xe4\xb2\x74\xec\x6b\x15\xc2\xc2\x94\xf5\x56\xae\x26\xaf\x08\x2b\xf3\xaa\x4a\xd9\x24\x06\x58\xe0\x50\x9a\xc1\x31\x33\xaa\x96\x90\xb4\xce\xf0\xc8\xd8\xfd\x36\x82\x82\xb0\x0d\x87\xb7\x59\x3d\xfd\x9d\xfe\x87\x73\x66\xfe\x77\xa6\x2a\xd7\x13\x78\x63\x0a\xbf\x8d\xf8\x54\x10\xec\x23\x3f\x08\xd5\x7c\xa8\x26\xac\xdc\x7c\x64\xe3\x3c\x91\x5e\xc2\x85\xd6\xb4\x9a\x73\xc1\xcd\x0c\xd4\xa6\x74\x66\xb1\xc7\x16\x11\x06\x9b\x37\xf4\x74\x2d\xa8\x21\xd8\x8c\x5a\x97\xd6\x69\x54\x11\x1e\x1e\x28\xce\x7b\xb1\xa3\x9a\xd0\x93\x1a\x7c\xb6\x55\xe4\x1e\xc1\x5e\x78\x78\xdb\xb5\xfa\x3c\xc2\xb5\xf8\x9c\xd6\x1b\xaa\x96\x04\x83\x68\xd1\x85\xfe\x61\xce\x84\x9e\x05\xbf\x76\xb9\x1e\x73\x26\x18\x39\xae\x7a\xeb\xa5\xc9\x43\x58\x6a\x18\xa3\x19\x60\x3d\xc6\xc2\xc3\xfc\x0a\x7e\xb7\x13\xee\x04\xe9\xe7\x2b\xeb\xf7\x1d\x31\x24\xe8\x88\x99\x3e\x33\x92\x2b\x61\x70\x72\xbe\xdc\x8f\x2f\x5b\x25\x09\x5a\xfc\xb7\x36\xba\xd6\x6c\x21\xe4\xfc\x6a\x3f\x9f\x26\x79\x8d\xa0\xf6\xed\xce\x85\xa8\x43\x2a\x04\x7e\xae\x83\xdc\x53\xec\xa6\x11\xd6\xeb\x73\xf5\xdc\xee\xb2\x66\xb0\x53\x74\x65\xaf\xda\xc7\x93\x0c\x4e\x5f\x0b\x90\xec\x7a\x57\x45\x78\x1d\x3d\xe5\xd7\x91\x0f\x52\x84\x0d\x82\x6e\xa5\x73\xef\xb8\x12\xc6\xce\xd4\x7c\x1f\xb6\x96\xfd\x07\x65\x71\xdb\xad\x4b\x74\xa6\x13\x0c\xc6\x5c\x7b\xba\x15\x5f\xb3\x80\x0d\xe2\x79\xfe\x56\x05\x84\xa7\xb1\xdf\x45\xfd\x5a\x73\x09\x5b\x6e\xf5\x3c\x5a\x3c\x3b\x9a\x81\xe0\xa6\x5c\x55\x09\x61\x2d\xc2\xe9\x23\x35\x67\x3f\x8d\x98\x13\x9e\x33\xa6\x43\x57\xe6\xef\x22\xb0\x3f\x11\x69\xae\x6a\x75\x21\xcc\x31\x74\xf2\x08\xab\x74\x25\x74\xcb\xc8\x6a\xb8\x95\x5a\x13\x6e\xd9\x96\xef\xfa\x62\x67\xc8\xe0\x38\xcb\x31\x29\x7b\xef\x4a\x06\x95\x3a\x49\x3d\x8a\xf7\x39\x09\x0d\x61\x2a\x27\xe6\x39\x4e\x1e\x6d\xcb\x1a\x33\x8c\x36\x69\x13\xb2\xfd\x3a\x4e\xcc\xbd\xb5\x86\xb0\xbf\xa5\xa8\xcf\xe8\xb7\x29\x03\xb5\x96\xd5\xfc\xae\x82\xa6\x84\xa5\x83\x2f\x1d\x4f\x27\xed\x22\xfc\xb8\xd2\xa8\x35\xdf\x6d\x17\x21\x49\x80\xcd\x76\xd1\x2f\x37\xc2\xb9\xc3\x7d\x95\x41\x23\x3b\x27\xff\x6a\x73\xac\xc5\x95\xd5\x84\x5c\x63\xd3\xc7\x85\x3a\x5c\x84\xe7\xd6\x65\xd3\x2c\xa5\xd6\x12\x66\x48\xe8\x72\xfe\xb6\x90\x24\x04\x66\xa5\x29\x0a\xf7\x27\x13\x98\x05\x69\x97\xf4\x05\x9e\x11\xf4\xed\x86\x4c\x96\xad\xfd\xc4\x40\xf6\xed\xe2\x04\xa3\xed\x4e\x04\x97\x98\x79\x9c\x66\x73\x1c\x09\x82\x49\xe7\xe6\x17\xa9\xbf\x24\x74\xbf\x0c\x9e\xb2\x27\x61\x90\xd0\xf9\xd6\xfb\x62\x6f\x6d\x13\x21\xaf\x6e\x6d\x3e\x85\x45\x12\xaa\x76\x49\x4f\xfd\x3d\xdf\x9c\x70\xda\xf4\x99\x88\xbe\x87\x23\x61\x57\x7e\xee\xbb\x15\xfa\x9a\x04\x49\xfb\x12\xc1\x96\x7b\xce\x84\xb9\xd7\xb2\x7c\x1b\x5b\x6a\x08\x71\x49\x5b\x87\x7e\x96\xef\x23\xf0\xca\x0e\xf1\xf5\xef\xb6\x21\x58\xcc\x7e\x9b\x72\x86\x5d\x99\x70\x76\x26\x9f\x51\x57\xaa\x15\xe1\x9c\xc4\xbe\x6b\x91\xa3\xba\x84\x81\x13\x0b\xe0\xe5\x33\xc0\xc2\x85\xf8\xd9\x45\xaf\x1e\xbb\x13\x72\x44\x53\x1e\xe8\xc7\x89\xfe\x5f\xd0\x08\x3d\x24\x5a\xcf\xb2\x23\xcc\x8c\x3d\x5d\xba\xed\x6b\x3a\x61\x35\x57\x8d\xc1\xf6\x45\x4b\x08\xf5\x9b\xd6\x2a\xbc\x69\xd4\x24\xa8\x70\x6f\xf0\xaa\xb2\x5c\x44\x58\x5f\x70\x6a\xe7\xac\x5c\x86\xd0\x36\x85\xc3\xd4\x39\xa4\x8f\xc1\x72\x96\xcd\x88\xd7\x85\x13\x84\xe5\x6d\x17\x56\x28\xaa\x04\x13\xda\x6a\x07\xa6\xda\xcd\xb2\x22\x04\x24\x73\x2e\x4f\xab\x38\x43\x58\x17\xfe\x53\xe3\xb9\x55\x15\x41\xe5\xa3\x95\x6e\x5a\xae\x2b\xc1\x56\xc7\x7d\xb5\xd4\x60\x04\x61\xda\xa1\x8b\x49\xf2\x81\x5a\x84\x48\x71\x65\xb7\xe4\x9f\x81\x84\xdc\xd9\xaa\xed\x06\x4d\xe6\x84\x11\xd7\x03\x0a\x8d\xe6\xf1\x84\x79\x77\xcb\xaa\xae\x1c\xb1\x26\x3c\xe2\x32\x49\xf4\x9c\xd8\x46\x08\x76\x35\xaa\x89\x97\xb7\x25\xbc\x78\xa0\xab\x7f\x21\xc0\x90\xd0\xea\x58\xde\xf8\x7e\xa9\x14\x41\xd5\xf3\xc1\xd6\x4f\xeb\xd6\x13\xb4\x52\x84\xbf\xd9\xa6\x7e\x25\xec\x5d\xd3\xb4\xcf\xc1\xa5\x95\x10\xce\x6e\x92\x90\x56\x59\x45\x78\xee\xe1\x7b\xbb\xab\xeb\x19\x81\x7f\xe6\xa6\x10\x7f\xfb\x56\xc2\x3e\xb6\x4b\xcb\x8d\x17\x64\x11\x22\xd3\x63\x2e\xc6\x7b\xb4\x10\xa6\xbd\x2f\x7b\xab\x7d\xfd\x26\x61\xeb\x72\x65\x9b\xd6\xc2\x3a\x82\x8e\x56\xe4\xfc\xf0\xdd\xd7\x09\xb2\x61\xc3\xc5\xb3\x2e\x8f\xd0\x84\x9d\xad\x77\xd0\x73\x0f\x42\xeb\x30\x9b\xe0\x65\xd9\x50\x06\xd1\x19\x73\x15\xa8\xbf\x88\xc1\x33\x0e\x15\x1d\x07\xaf\xf3\x04\xda\x2b\xc9\x63\xb4\x71\x17\xa1\xff\xbb\x94\x6e\x49\xd4\x49\x06\xd3\xee\x68\x9d\x2f\xee\x5c\x49\x98\xc8\xdd\x51\x53\xb2\xb2\x96\xc1\xfd\x07\xfb\x0d\xd4\x76\x87\xd0\xff\x81\xe5\xbc\xe2\x63\xca\x47\x4f\x12\x8e\x4f\xdb\x3f\xfd\xc0\xfe\x6a\x42\xe3\xdd\x89\x9a\xc0\xa2\x4e\x42\x46\xbd\xbe\x6a\xc6\xd8\x7d\x82\x3e\x4f\x98\xd0\xf4\x56\x10\x6c\x4f\x2d\x90\x28\x67\x55\x13\x5c\x0f\x72\x3f\x1d\x48\x7d\x4c\x68\x2b\xf8\x53\xfc\x58\xfc\x39\xe1\xc9\x31\x08\x69\xc7\x44\x10\xee\xec\x3f\x9b\x1c\xbc\x3d\x8c\xb0\xe4\xbe\x09\xfb\x62\xb1\x4c\x02\x9b\x95\xea\x99\xf9\x8b\x62\x09\x09\xd7\x1a\x55\x58\x41\x11\x84\xb2\xcf\x35\xbf\x27\x2e\x46\x10\xce\xef\x6b\x1d\x49\xd1\x5d\x45\x90\x33\xd1\xd3\x38\xfa\x29\x87\x60\x1c\x67\x77\x5e\x99\xef\x2d\x21\x39\x81\x6d\xb9\xe3\xa7\xc7\x84\x05\x06\xc9\x81\x3d\x86\xad\x84\xc4\xdc\xce\xaa\xa9\x5a\xfd\x84\x78\xcd\xe4\xc7\x6a\xbd\x1d\x04\x97\x2f\x4b\x0f\xca\x8d\x14\x11\x6a\xd7\xe7\x5e\xae\x68\x2d\x20\x2c\x9e\x96\x74\xf3\x98\x63\x29\xa1\x28\x26\x7e\x65\xed\x44\x09\xe1\x64\xda\x25\x46\x67\x6d\x1d\x03\xf5\xfc\x72\xff\x4f\xe5\xf1\x84\x85\xf9\x5f\xd9\xae\x69\x17\x11\xfa\xed\x45\x55\x3b\x3f\xc7\x12\xba\xe6\x47\xb9\x5d\x69\xf0\x27\xe4\xd5\xce\x9b\xff\xd6\xfc\x01\x21\x74\xb9\x75\xa0\xc7\x68\x05\xc1\xe4\xd9\x0f\xf6\x7a\x7f\x15\x42\xcd\xe2\x69\x26\x1d\xd7\x7d\x09\x0b\x25\x2b\x4b\xdd\x3f\x9a\x11\xb8\x0b\xd5\xc7\xbe\xdb\xac\x25\x18\xb0\x36\x7d\xbd\xea\xcb\x47\x68\xd7\xdf\x72\x03\xd5\x6b\x09\x2b\xcb\xb5\x4c\xd6\x58\xeb\x13\x4e\x6f\xe2\xb8\xe7\xaf\xad\x44\x78\x6d\x07\x2d\xc5\x76\x01\x42\xd1\x5c\xb7\x66\xce\xb5\x52\x84\xdf\x35\x87\x5c\x64\xdb\x23\x09\x1d\x8d\xcf\x74\xdc\x9f\x0b\x11\xb8\x83\x36\xf9\x5c\xad\x96\x23\xb4\x89\x14\xa6\xcd\xfa\x62\x45\x90\xbb\x30\xa4\xf1\x7d\x99\xd2\x3f\x53\xae\xdb\x76\xf7\xfe\x86\x45\x84\xa0\xb7\xf5\xd1\x75\x7e\xab\x09\x1a\x1a\x4b\xbf\x5d\xdb\x16\xcb\x60\x4b\xe6\x72\x34\x14\x15\x13\x44\x4d\xcb\x6d\x85\x2e\x3c\x21\x4c\x3f\x29\x91\xf1\xc9\x23\x9b\x70\x59\xe1\x5e\x5c\x1b\x4f\x04\x83\x6c\xcd\xce\x31\xb1\xdb\x8f\x09\x1d\xf3\x63\xf6\xd5\x4d\xeb\x24\x1c\x79\xe4\x5b\xb5\x77\x6d\x3e\xe1\x5b\x58\xec\x8e\xa6\x39\x9b\x18\x5c\xf6\x1d\xd1\x5b\xc9\x4c\x9e\x7f\x67\x46\xed\x0a\xff\xb3\x8f\x90\x93\x80\x55\xd6\x57\x2f\x30\xf8\x33\xc4\xd5\x71\x6d\x42\x81\xd0\xfd\xec\xbd\xd9\xf7\x4b\x2b\x08\x7b\xbf\xac\x19\x88\x10\x66\x23\xf8\x9c\xaa\xdf\x13\xa8\x66\xf6\x0f\x44\x37\x27\xac\xe9\xbc\xfa\x86\x05\xd9\xfe\x97\xf7\x39\x17\xdd\x20\xf4\x0d\x99\xbe\x9d\xb2\xc2\x92\xf0\xac\x72\x22\xa1\xf1\x94\x2a\xe1\x7c\xbf\x4f\xf2\xc2\xe4\x83\x84\x58\xeb\x92\x37\xa1\x36\x72\x04\x81\x13\xa1\x0d\x86\x83\x1d\x0c\x3e\xf6\x9e\x3c\x1e\x3c\x59\x96\x3c\x88\x9c\xde\x74\xf5\x15\x0b\x17\x8f\x0c\x59\x1c\x53\x1f\x61\xa1\x25\x70\x1f\xff\xb1\xfd\x4a\x84\xda\x62\xce\x25\x3a\xbb\xcb\x18\x14\xca\x2d\x29\x99\xbb\xd5\x8a\x30\x6a\xf1\xe8\xe1\x1d\xf7\x2c\xc2\xaf\x86\x5b\xe9\x05\x2f\x33\x09\x6f\xd5\x0d\x32\x5d\x93\xa3\x08\xb5\x9a\xc1\xde\xe2\x63\x39\x84\x90\x27\xec\x79\xf2\xe1\x2f\x08\x63\x53\x4c\xfa\x2a\xad\xec\xff\x2f\xec\x7a\xb3\xfe\xdd\x1c\x7e\x0b\x82\x5f\x9b\xd4\xcb\x19\x79\xea\x04\x9e\xbd\x12\x83\xa2\x22\xa9\x84\x67\x5b\x24\x8d\x8c\x3a\x74\x08\x96\x12\x71\xa7\x2f\x1c\xc8\x27\x18\xae\xf2\xdf\x5e\x53\x73\x95\xf0\x31\x7d\xca\xa8\x6c\xdf\x61\xc2\x1f\xfb\xdf\xe7\x24\x97\x2d\x27\x9c\xbd\x74\xec\x64\xaa\xbb\x2a\x61\xb1\x4c\xeb\xa6\xb7\x9b\x2e\x13\xfe\xd8\xf6\x70\x3d\x2c\xdf\x45\x38\x3a\xb5\xac\xd0\xc0\x4a\x87\xd0\x16\x2a\x1e\x6e\xa9\xa0\x43\x48\x96\xba\x22\x21\x1a\x95\x44\x68\x38\x12\x7e\xa2\xcb\xee\x2a\x81\xdb\x21\xbe\x48\x71\xcb\x1e\xc2\xfe\xc1\x4b\x11\x0f\x5d\x87\x59\x38\xde\x28\xbf\xbb\x61\x28\x87\x41\xf0\x34\xdb\x0d\xca\xc3\xc7\x08\xab\x25\x43\x72\xd8\x0f\x6c\x27\xbc\x48\xde\xea\xa7\x6f\x9c\xcc\xa0\x2e\x2a\x59\xe6\x57\x89\x1e\x21\xc9\xd3\xcd\x7c\xd7\xfd\xdb\x84\xc3\x36\x36\x99\x89\xfb\xa6\x12\x2c\xb8\xcf\x45\x04\x4c\xf8\x12\x3e\x7e\x79\x15\x3e\x7e\xe4\x21\x83\xba\x96\x75\x7a\x9b\x7f\x58\x11\xce\xff\xec\x3d\xc1\x56\x2a\x4f\x48\x37\x3f\xb5\x6b\x7c\x57\x34\x61\x75\x4c\x80\xa1\x99\xa7\x0e\x61\xd3\xf8\xd7\xca\x5d\xef\xb6\x10\x22\x1e\xdd\xba\xde\x38\x79\xa8\x5c\x1f\x5c\x30\x27\xf4\x3a\x2a\x91\xf2\xe0\xae\x45\x4c\xa9\x3a\xc1\xf3\x5c\xfb\x45\xb9\x86\x34\x06\x3f\x16\xd5\xcc\x7b\x7c\xac\x9a\xd0\x3e\xef\xd2\xc6\x7b\x7b\x6b\x08\x3a\x16\xa7\x05\x06\x0b\xab\x09\x7e\x7d\x4a\xbc\x0d\x33\x6a\xfe\x99\xe2\x6b\xb6\x2b\x9e\x0a\xa8\x23\xdc\xd0\xb6\xbe\xb6\xe8\x47\x08\xa1\x5b\x25\x72\xd1\xca\xd6\x5b\x0c\x4e\x1e\x7b\xa3\x3d\x10\x66\xcd\xc0\xa4\x3e\x9c\x5b\x7a\x2c\x94\x90\xe0\xb1\xf2\x6a\x82\xed\x29\xc2\xa3\xcb\x43\x51\x1e\xfe\xa1\x84\x81\x57\xdc\x8f\x5d\xa5\xd4\x08\x52\x16\x49\xa6\xee\xef\xcf\xfe\xbf\x21\xfc\x27\xc7\xca\x1f\x07\x6a\x09\xf3\x4d\x57\xab\x6b\x98\xd4\x12\x7c\x9a\xed\x6f\x04\xac\x2b\x20\xbc\x1d\xd6\x77\xfe\xaf\xf0\x7c\x70\x9b\x9e\xee\x7c\x87\xb0\x53\xe1\x58\xd0\x7f\xe5\xec\x07\x5f\x83\xd9\x95\xc1\x84\x57\x1a\xc6\x4b\xb3\x96\x05\x12\x14\x4b\x9e\x18\xb5\xbb\x34\x32\x7f\xa7\xc8\xe4\xda\x29\x52\x0a\x7e\x0c\x5a\x5f\x6d\x39\x6a\x56\x11\x4c\xf8\x32\x5a\xfe\x59\x77\x9e\x31\xe1\x7d\x9b\x08\xe7\xf7\x59\xc6\x04\x8b\x45\x0a\xea\x79\xb5\xb7\x08\x6a\x99\x52\x72\xc6\x5d\x4d\x84\x3f\xd1\x56\xd7\xa4\xbc\x13\x98\xbf\xd3\xc7\xcb\x36\x3f\x22\x7c\x84\xfe\xc1\xc6\xcd\xb3\x36\xbe\x2b\xab\x21\x34\xb3\x12\xe6\x7c\xcf\x18\x22\xf8\xf9\x26\x16\x0c\x4c\x96\xff\x81\xcf\x9b\x17\x3b\x7f\x4d\x1e\xbe\x56\xd4\xda\x3a\x96\xe9\x10\x82\x23\xaf\x66\x96\x9e\x29\x25\x88\xb7\x0a\x74\x94\x70\xcc\x27\xcc\x5f\x91\xaf\xe5\xed\xbb\x87\x90\xfd\x22\x22\xb9\x41\xc8\x8c\x70\x54\x5a\x3a\x2a\x9f\x59\x47\x60\x73\x5a\x3c\x74\x3c\xee\x31\x0b\xd3\x8e\x2f\x29\x5e\xed\xef\x45\x78\xd3\x39\xb4\xf5\x94\x8e\x1e\xe1\x4c\xa4\x34\x6e\xf4\x58\x10\x4a\xe4\x44\x02\xb3\xbc\x0f\x11\xe2\xaa\x7e\x48\x2d\x3f\xfe\x89\x85\xd7\x61\x67\x57\xe4\xb6\x06\x33\xe0\x12\x34\xd8\xff\xad\x7d\x3f\xe1\x52\xda\xba\x0f\x23\xaf\xe6\xfe\x83\x3f\xca\x72\x23\x42\x22\xad\x2c\xa8\xbe\xf9\x2d\x9b\x7c\xa1\x91\xc1\xdd\x34\x1d\x53\x4e\xbf\x73\x84\x0c\x91\xfc\x1f\x2f\x4d\x9d\x08\x37\x97\x5b\x4b\x2f\xdf\x69\x49\xf8\xc2\xbc\xef\x1e\x3c\x9a\xcb\xe0\x7c\xaf\xfd\xb8\xda\xeb\x08\x82\x36\x19\xb5\x95\x3d\x35\x22\xbc\x97\x2d\x4c\xea\x39\xef\xc1\xa0\x85\x4f\xda\x43\x74\xbf\x30\x61\xaf\x54\xca\xd1\x3d\xce\x4b\x08\x72\xb7\xde\xc4\x46\x43\x8b\x30\xcd\x70\x87\x4c\x7b\xcd\xd6\x7f\xb0\x3d\xf5\xc2\xc1\xec\x9b\xbd\x95\xf0\x19\xcb\xbf\x76\xef\x4b\x13\x0b\x2b\xbf\xae\x99\xce\xe6\x9d\x4a\x30\x88\xba\x7d\x75\x4c\xd4\xee\x1f\xcc\x33\x8c\x58\x7d\x87\x5b\x99\xe0\xc2\xf6\xe5\x89\x3d\x6f\x12\xe1\xdb\x73\xf7\x63\x89\x7b\x94\x08\x13\x8b\xab\x6d\x7e\x6b\xf9\x13\x86\x2c\x63\xec\xbf\x9c\xd5\x20\xc4\x19\xee\x79\xda\x20\xb9\x8c\x90\x96\xd4\x6c\xa3\xec\x59\x44\x18\x78\xe2\x20\xd6\x9f\xa6\xf0\xcf\xd4\x50\xa2\x9c\xd1\xa5\x2e\x4e\x48\xd0\x3b\xe4\x15\x3a\xfe\x9d\x05\xd5\xec\x17\x3e\xc1\x95\x8a\xff\x94\x8d\x6c\x82\x07\x56\xb7\xe5\xb2\xb0\xc3\x22\x77\xc6\x8d\x80\x5a\xc2\xfd\x83\xcd\xec\xbf\xd5\x77\x13\x06\xdd\x8f\xc6\xdd\x4a\x65\x23\x84\x3d\xaf\xb3\x3b\xbc\xf8\x3c\x61\x9a\x9b\xde\x91\x83\xcb\x72\xfe\x29\x63\xa1\xcb\xc5\x44\x8b\xf7\x10\x26\xba\x0c\x97\x38\x5b\x95\x10\xc4\x96\x64\x54\x43\xd2\x91\xf0\xad\x7c\xfa\x7c\xa1\x61\x05\xc2\x15\xcf\x45\x72\x16\xc2\xde\x84\x92\x94\xf8\x7b\xb5\x7d\x09\x04\xb5\x74\xcf\xac\x32\xed\x32\x42\xee\x77\xb3\x77\xdf\xd2\x0b\x19\xf8\xd9\x7a\x2f\xda\x5c\x98\x49\x50\x93\xea\x09\x3d\x91\x97\x49\x78\x23\xc8\x76\xeb\xbf\x22\xb4\xa9\xfb\x30\x1b\xcf\x0b\x42\xcb\x2e\xdb\xf1\x07\xfc\x77\x08\x87\xc7\xee\x14\x84\xd4\xbd\x22\xf4\xec\xd4\xbe\x57\xdb\xd2\x43\xd8\xda\x6a\xbd\x55\xe3\xec\x1b\x42\x79\x82\xe6\x51\x47\xce\x3b\x04\xed\xbb\xee\x3f\xbf\x5c\x78\x46\x78\x59\x6e\x62\x9e\xf4\xbc\x8f\xb0\x58\x69\x48\xae\xeb\x40\x0b\xe1\xfb\xc3\x47\x65\x1f\xa6\xdf\x22\xc8\xe6\x27\x5c\xe4\x19\xcb\x20\x1c\xe9\x8b\xd8\x90\x30\x9c\x41\x50\xa9\x8b\x8c\xdd\xfd\xb3\x96\x10\x11\xbc\x4a\x6a\xc5\xe3\x46\xc2\x26\x83\x6e\x9f\xd5\x9f\x32\x08\x3d\xbd\x99\x81\x6b\x7e\x66\x10\x42\x39\x5e\xfd\x92\xd8\xd3\x4d\xd8\x74\x50\xc2\xb9\x25\xb0\x9a\xe0\xb1\x22\xa5\xfa\x93\x4b\x15\xc1\xe6\xb2\xd1\x1a\x5f\xad\x6a\x82\x7f\xbb\xcb\x4e\x4e\xdf\x3a\x06\xad\xdf\x35\x1b\x54\xce\x55\x13\x46\x4e\x74\xa8\x29\x7d\x3a\x45\xb8\x95\x98\x25\xbd\xf0\xc6\x13\x16\xdc\xbf\xd8\x7b\x38\x98\x70\x11\x2c\x4a\x5e\x55\x3d\x5a\xae\x46\x38\x54\x26\xdd\xf9\x69\xeb\xa2\x7f\x10\xf8\x4a\xb9\xf2\x0b\xc7\x14\x02\xdb\xe5\x5e\x87\x04\x91\x4d\x84\xeb\xc1\x6c\x8a\x77\x77\x15\x11\x12\x9f\x4b\x0b\xf9\xdb\x0c\xb0\xa0\xdf\xba\xc4\xcb\x6a\x19\x11\x0c\x07\x9d\x72\x1b\xf4\x9f\xd3\xdf\x22\x65\x68\x60\xda\xf9\x63\x9c\x85\x92\xbc\x3f\x7e\xc7\x1d\xe3\x09\xc3\x73\x26\xd6\x5a\xf6\x9c\x23\xcc\xf8\xc0\x70\x38\x48\xb7\x11\x56\xfe\x58\xf1\xe9\x04\xbb\x3e\x21\x4b\x87\x47\xf0\xfc\x88\x1d\xe1\xd7\x67\x01\x97\x96\x4b\xf9\x84\x8d\x37\x1e\xef\xf8\x9e\x61\xc6\x40\xbe\x6c\xd7\x87\xa5\x47\xcd\x09\xce\xaf\xdd\x5b\xac\x84\xe4\x08\x11\x6f\xa5\xb6\xed\xbf\xb8\x98\x30\xb1\xe6\x5b\x5e\x4f\x99\x29\x21\x85\x51\xb5\xe9\x6c\xeb\x61\xc1\x4f\x56\xba\x71\xff\xfe\x2a\x06\xbf\x99\x09\x27\xe2\xfa\xc6\x82\x64\xd6\xac\x9c\xb9\xc3\xfe\x84\xf9\x31\xb6\xbf\xf2\x45\x6f\x31\xf0\x8a\xe7\xe9\xb3\x36\x09\x24\x3c\x8a\x2a\xbb\x90\xe7\xe3\xc3\xe0\xbd\x0e\x6f\x35\x77\x8d\x03\x81\xb7\xf2\xd3\x4e\xf1\xb0\x43\x84\xa1\x10\xdd\x51\xdf\xb1\x40\xc2\x07\xfb\x33\x5d\xdb\xf6\x16\x30\xc8\xdd\xf7\xec\x22\x45\xef\x20\x44\x98\x4b\x75\x84\xf3\xad\x22\x5c\x4a\x8a\x3a\xf0\x8e\x69\x66\x10\x54\x97\x51\x11\x13\xb7\x72\xf2\x58\x28\x29\x95\xba\x6d\x0e\xa1\xd4\x82\xfd\x78\xc9\xbe\x73\x0c\x4e\x3a\x92\xc6\x52\xf3\x08\x82\x4f\x77\xf4\xd9\x6f\x8b\x22\x08\x9e\x9a\x65\x9a\x8f\x2f\x1f\x27\xec\x3b\x53\x22\x23\x9d\x14\xc0\x80\x6d\xbc\x56\xb9\xd5\x3c\x8f\xc0\xb6\x91\xdb\x5c\xa0\x37\x9b\xb0\x59\x40\x58\xc2\xe7\xd9\x4b\xc2\x8f\xc3\x13\xbe\x8f\x96\xa4\x10\x8a\xb5\xb7\x5c\xd5\x37\x7e\xcd\x60\x93\x91\xd2\xe5\x39\x53\x74\x08\xfc\x4d\x4b\x1e\x8e\x3b\xfa\x11\x7e\x2e\x35\x48\x2e\x0b\x2b\x65\x70\x7f\x68\x68\x43\x7e\xd4\x61\xc2\xac\x36\xc1\x53\xd5\x3c\x63\x2c\x8c\xad\x3f\x1d\xb7\xff\xc1\x5e\x82\xfe\xaf\x03\xfc\xc9\x3c\x33\x09\x0a\x5e\x6f\x96\xe6\xa9\x9d\x26\x94\x64\x2c\xe7\x8a\xef\xbe\xc5\x20\xc7\xb5\x7f\xfd\x85\x65\x87\x08\x7e\xa7\xee\xae\xca\xb8\x67\x42\xd8\xb3\x21\x6b\x4d\x62\x9c\x0c\xa1\x66\xd4\xc8\x73\xc0\xca\x81\xb0\x65\x66\xf1\x63\xe1\x4b\x65\x04\xc9\xef\xe1\x5e\xe3\x6d\x25\x04\x0d\xbe\xc4\xbe\xd4\xea\x78\xc2\xde\xa7\xbf\x2e\x72\x89\x6f\x20\xdc\x3d\xf8\x6e\x36\xdf\xfa\xc5\x84\xe6\xb9\x75\x96\xf3\x64\xd9\x08\xbb\x7e\xac\x98\x5f\xfb\x7b\x11\x61\xf8\x40\x6c\x56\x5f\xb4\x37\xe1\x46\xe0\x97\x65\x76\xb1\xb7\x18\x0c\x31\xa7\x85\xf8\x66\x3c\x26\xcc\x93\xe4\x62\x8d\x4f\xab\x21\x44\x9e\x55\xfb\xbc\x56\xfb\x01\xa1\xdc\xed\x78\xd0\x6c\xba\x4f\xf8\xae\xf0\x7b\x7d\xf7\x7d\x5f\xc2\x1c\xcf\x0d\x73\x43\x7d\x6a\x09\x7c\x55\x33\x4c\xe4\x3c\x6b\x18\xe4\xcb\xa7\xde\xe3\x48\x8d\x26\x44\xb4\x3f\xd0\x78\xef\x14\x4d\x38\x61\xb7\xff\xa7\x46\xe9\xe4\xcf\x28\xbb\xcb\xe6\xed\xdc\xe1\x04\xc7\xd5\xde\x53\xd8\xbb\xa2\x09\xec\x9c\x45\xbe\x1e\x3b\xdd\x08\x76\x42\x36\xb5\x0b\xeb\x39\x09\x83\x8f\xd7\xdd\xbd\x7b\xff\x0d\x0b\xe7\x9b\x6c\xbb\x8f\xee\xbb\x45\x90\x10\xed\x4d\x75\xd5\xb0\x26\x64\x6e\xed\xd6\x4c\xd6\xad\x26\xec\xf9\x51\x7f\xfb\xb6\x40\x07\xe1\xcf\xc0\x95\x93\xb6\x62\xdc\x04\xdd\xcf\x09\x16\x1a\x95\xf3\x08\x3f\xdf\x0b\xbc\x2e\xaa\xb7\x27\xb8\xa6\x9e\x9d\xee\xb3\x6f\xdd\x3f\x10\xd8\x12\xc6\xab\x54\xdc\xc0\x82\x8b\x18\x82\x79\x2f\x29\x12\x8e\x26\x16\x5d\xdf\xf1\xe8\x1a\xe1\x5e\xfe\xe9\x35\x66\xad\xce\x04\x93\xde\x13\xed\x77\x7e\xe6\x30\x88\x09\x6e\xf8\xc2\x6d\xc9\x45\x30\xe1\x54\x2b\xd1\x5c\x16\xcc\x20\x22\xab\x8c\x63\x6a\xca\x6f\x16\x14\x66\x9c\x92\x5f\xac\x1d\x41\x58\xfd\x59\xf5\xcc\xb3\xf2\x8b\x0c\x62\xfb\x7f\x9f\x3d\xc6\xf1\x8c\xc1\xca\x63\x25\x97\x7a\x47\xbc\x09\x73\x38\x5f\xaa\xfe\xee\x2d\x65\xf0\xde\xb0\x55\x84\x63\xbe\x29\x21\x5d\x71\xc5\x3d\xfd\xd9\x87\x08\xa7\x7e\x5f\xf4\xf8\xec\xd8\xcc\xa0\xee\xf0\x90\xff\x9c\x79\x7d\x84\xf1\xbb\xed\xed\xd7\x2d\x13\x09\x6c\x95\x1e\x25\x83\xbf\x7a\x09\xf9\x06\x9e\x53\x47\x9b\xab\x09\x8e\xf6\x03\x6e\x8f\xd6\xba\x33\x50\x3a\x2a\xc8\x9e\x5a\x1f\x43\x38\xf9\xea\x76\x61\xdf\x07\x4d\x82\xba\x60\xe1\xc5\x7b\xb7\x95\x08\x19\x85\x7e\x13\x1f\x24\x96\x11\x3e\xfc\xe6\xbe\xb0\x45\x49\x82\x10\xd6\xef\x28\xe6\x7d\x20\x8c\x50\x73\xa7\x63\x7e\x8b\xbf\x13\x21\xe0\x4d\x83\xb3\xfa\x76\x1f\x42\x6a\xe9\x02\x36\xc3\xab\xfa\x84\x2d\x1b\x53\xba\x66\xef\x3c\x4a\x90\x31\xe6\xfe\x33\x90\xf5\x80\x20\xa3\xf7\x40\x45\x3c\xb4\x9a\x41\x96\x64\x5a\xf2\x2b\x94\x10\x16\x0e\x96\x3c\x52\xab\xde\x4c\x50\xca\x59\xb1\xa1\xf7\xcf\x8b\x4a\xb4\x69\x68\xd5\xac\x48\xdf\x40\x98\x37\x90\xc5\xf1\xca\x3e\xec\x1f\x78\xcf\x29\xdb\x28\xf2\xba\x81\xf5\x17\x13\x5d\x39\xab\x3f\x4c\xbe\x9a\xbe\x0b\x25\xc5\xfb\x2e\x78\xc7\xfa\x8b\x43\xed\x02\x0b\x55\x46\xa7\x10\x3a\xee\x0b\xc6\xbd\x4e\xfc\xc5\x42\xe1\x8a\x84\xc7\x3d\xd1\x36\x04\x71\xe3\x21\x0e\x87\x21\x39\x82\xe8\xd9\x65\x02\x57\xac\x8b\x08\x9e\xdf\xb7\x39\xee\xcb\x89\x27\x2c\xbf\x82\x2c\xab\x27\xe6\x04\xf9\x3b\xfa\x0e\x76\xe7\x5b\x08\xc9\xb3\x0c\x3a\x12\x66\xe5\x12\xcc\xae\xd5\x59\x57\x6c\x3d\x46\x58\x77\xf0\xac\x60\x25\x26\x58\xb8\xd9\x37\x23\x36\xcd\xd5\x91\x20\x27\xe6\xf6\xa8\x63\xbd\x22\xe1\xc0\xda\xa8\x53\xca\x7d\x86\x84\xf1\xef\x8d\x5e\x36\x53\x3d\x09\xe2\x8f\x8e\xb7\x1f\xbc\x71\x8f\x50\x57\x18\xb9\xb7\xfb\x99\x12\xe1\x5e\x54\xcb\xe8\xa9\xe9\x36\x04\xcf\x84\xb4\xf0\xee\x43\xa7\x09\x07\x54\x1b\x6d\xd9\xfb\x0b\x18\xc4\x3c\x8a\x6f\x69\x56\x0d\x23\xf0\x04\xae\xbd\x64\x6a\xb0\x87\x20\xb8\x30\x6c\xc2\xac\xe4\x20\xc1\xda\xe5\x89\x7a\x87\x95\x39\x21\xec\x55\xb7\xd8\x89\x48\xfb\x7f\x0a\x7f\xef\xec\x0b\xcd\xa1\x9b\x09\x42\x63\x9e\x47\x96\x3c\x5b\x4a\xe0\x5e\xb0\xed\x4a\xc0\x4d\x0b\x82\x56\xe6\xaa\xeb\xb3\xcb\x34\x08\xa2\xf2\x73\xb4\x96\xed\x94\x27\xec\xd2\xb3\x8a\x33\x9e\x03\x16\x5a\x1c\xeb\x2a\xef\xd4\xa4\x32\x88\xd9\xf6\xe5\x85\xa6\x62\x34\x81\xb1\x1b\xcd\xbc\x16\x9d\xc2\x60\xf7\xe3\x64\x87\x7a\x3f\x57\x82\x30\xbd\x3d\xbd\x29\x5b\x95\xb0\xb2\xeb\xdc\xc6\x38\xb5\x22\x82\xdb\xd0\xfb\x32\xff\xc4\x6a\x42\x71\xa8\x81\xc5\xd9\x6f\xc3\x04\xe5\x39\x12\x6b\x6a\xbc\xdb\x09\x7a\x8d\x6b\x3b\xee\x0a\x29\x13\xc4\xab\xbc\xbf\xfd\xe0\xe8\x26\x54\xb7\x47\xf9\xf2\x8d\xdd\x24\x08\x9a\x2f\xa8\x31\xf8\x7a\x8f\xd0\x98\x66\xde\x2b\xe8\x70\x80\x70\xca\x46\xe0\xfe\xd0\xd6\x8f\x84\xf3\x9c\x6f\x7e\x55\x9c\x4a\x22\x54\x05\x97\x16\x45\x55\x56\x12\x9a\xb2\xfb\x4e\x6e\xb0\x9e\xfc\xf5\x7c\x1d\x50\x9c\xe0\xf2\x94\x10\x72\xa9\x77\x66\xb6\xd1\x69\x42\x54\x16\x9b\xc2\x8f\xf6\x64\x42\x49\xd6\xe3\xaf\x5c\xbf\xcf\x12\xbc\x76\xcc\x92\x08\x7f\x7d\x9a\xe0\x2a\xed\x7f\xf0\x90\xca\x32\x42\x96\x04\x29\x64\xf4\x24\x13\x98\x98\x9c\xeb\x9c\x4f\x0d\x19\x2c\xfd\x51\x3a\xec\xe8\x3a\x83\x70\xeb\xf4\x69\xed\xe7\x9c\x1b\x08\xcf\x1c\xf4\x3b\xfc\x73\x43\xfe\x29\x9f\xbe\xc6\x2a\x2d\xf9\xa9\x44\xd8\xdc\x94\xd0\x2d\x51\xbb\x80\xe0\xc6\x39\x5b\xbf\x2a\x7e\x98\x20\x9e\x76\x5b\x65\xb8\xa5\x80\x90\x96\x6f\xb0\x60\x57\xc1\x46\xc2\xec\xef\x61\x7f\x96\x8f\x46\x33\xf0\x08\x3d\x32\xa3\xe5\xd3\x59\xc2\x29\xd9\x1f\xa9\xcf\xdd\xdc\x08\x95\xa6\xb2\x2e\x3d\x96\x42\x04\xd7\xf8\xb1\x1c\xaf\xb9\xc2\x84\xcb\x2a\x7d\x1f\x91\x77\x98\x26\x02\x1f\x45\x16\xd7\x1d\x27\x54\x7f\x74\xeb\x1d\x3b\x50\x48\x38\x90\x6a\xd1\xf0\x1f\x5e\x97\x1d\xba\xee\xf3\x23\x99\x20\x7e\x53\x20\xfa\xf4\x55\x4d\x42\xf8\xaf\xa2\xba\x13\xd1\x13\x2c\x78\x25\xac\x08\x4b\x7e\xab\x46\x48\x97\x67\xf7\xed\x68\x93\x25\x2c\x36\x64\x6f\x5a\x74\x75\x26\x21\xcd\xbd\x4c\xbf\xa2\x31\x90\xe0\x55\x53\xd9\xda\xb2\x4d\x87\xc0\xa5\xcc\xc3\x79\x92\xaf\x93\xe0\xc8\xe3\x6e\x29\x9a\x7a\x9f\x81\xa7\xdb\xcd\x97\x6c\x91\x0f\x19\xdc\xfa\x66\x34\x7f\xc9\xde\x2e\x82\xfa\xb1\xa4\x9b\x7f\x2e\x3c\x64\xb0\x78\xc7\x63\x1b\x8e\xf2\x4e\x06\xda\xb1\xfd\xec\x17\x85\x3c\x08\x2e\x53\xe5\x33\xa3\x02\x13\x09\xde\x11\x9e\x1e\x6b\x9e\xb7\x10\x2e\x5a\xf9\x6e\xac\x65\x6b\x20\x5c\x5f\xba\x5f\x4b\x79\x71\x0b\x41\x80\x6d\xcf\xc3\x30\xa7\x10\xc2\xfd\x69\xf3\x23\x34\xbc\x5c\x08\x99\x06\x9f\xb4\x0b\x59\xd9\x84\x4c\xa7\xbd\xbc\x46\x4e\xb5\x0c\x52\x03\x24\x4e\xce\x6b\x18\x20\x08\x73\x7b\xfa\x77\x7d\x3e\x4e\x70\xfc\x7d\x6b\xfb\xa2\x2b\xd7\x09\x3b\x45\xef\xab\x49\xb2\x5a\x09\xba\xb9\x43\xc3\xb7\x2c\x0e\x11\x78\x1e\x28\xdd\xd6\xf6\xcf\x25\xb4\x47\x06\x97\xb3\xe2\xca\x08\x99\x02\xad\x86\x85\x62\xbe\x0c\xfa\xf7\xe6\x9b\x56\x3e\xd3\x22\x9c\x33\x6d\xf1\xfd\x58\xff\x8a\x85\x55\x85\x7d\x42\xca\x47\x55\x09\xed\xcb\xe4\xaa\x87\x16\x67\x10\x8a\x36\xfc\xf6\x3e\x9e\x27\xff\x0f\x6e\x77\xdd\xf4\xda\x9f\xcf\x4f\xd8\x31\x6b\xee\x47\xdf\xe3\xe9\x84\x63\x7b\x9d\xdd\x17\x98\x6e\x27\xb8\x0b\xee\x6f\x4f\x4b\xd9\x40\x50\xe2\x8e\xfa\xd6\xce\xc6\x43\x10\xde\x3a\x68\xb8\xe4\x67\x0e\x41\x4b\xef\x7d\xeb\xfc\xcc\x3a\x42\xdb\xc1\xe6\x09\xb6\x60\x53\xc2\x4c\xcd\x03\xe3\x7e\x1b\xfd\x08\xb2\x5b\x6e\x6f\xe6\xd5\x3f\x44\x50\x0a\xd9\xb1\xcf\xcd\x7a\x94\x41\x48\x57\x8e\x84\x4d\xe0\x0d\x06\x4a\x0a\x46\x61\xf2\x32\xdd\x0c\x74\x5e\xee\x17\x3c\x27\xd7\xc2\xe0\x52\xcc\x70\xaa\xe1\xe9\x42\x06\xc5\x37\x9a\xb0\x59\xe3\x1c\x61\xa1\x43\xcb\x59\x4b\x4f\x5e\xc2\x21\x03\xd9\xfb\xfd\x49\x45\x84\x57\x3c\xdf\x66\x28\x8a\xf8\x10\x06\xa4\xab\xfb\xb9\x25\xad\x09\x1d\x91\x2b\x38\x53\x7c\xe5\x09\x92\x5b\xdf\xaa\x3e\x7c\xd2\xc6\x60\x83\xcb\x40\xdc\xd4\x52\x51\xc2\xb3\x9c\x27\x8e\xa2\x3c\xa9\x84\x8a\xbe\xba\xdc\x5d\x13\x9e\x0c\x1c\xaf\x2d\x78\x70\x5f\xc2\x8d\x20\x36\x57\xaf\xd4\x2c\x31\x9e\x41\x46\xc0\x9a\xf3\x11\x77\xb5\x09\x09\x77\xef\x65\x0d\x4e\xf7\x21\x34\x1f\x2a\xe6\xf5\xab\x51\x27\xec\xb3\x36\x67\x5c\x52\x73\x09\xd6\xa9\x12\xbf\xe6\x15\xe9\x10\xee\x58\x58\x1d\xd2\x78\x71\x8e\x99\x38\xb7\x47\xdc\xe4\xcd\x0e\xc2\xf5\xa7\xd6\xe5\xdc\xf7\x13\xe9\x7f\xa1\x68\x7a\xc3\xec\xde\xe3\x3b\x09\xb9\x5c\x1b\xc6\xa6\xb8\x7c\x61\x61\xe1\xfd\x6f\xfb\x96\xcd\x6d\x61\xc1\x4e\x3f\x6c\xbf\xf2\x91\x79\x84\x99\x57\x24\x06\x47\x34\x5e\x10\xba\x8c\xd9\x73\x71\xa7\x98\xf0\xba\xfd\xae\x53\x4f\xd7\x51\x06\x1a\xdf\xd2\x7b\x06\x12\xb6\x12\x5c\xec\xda\x9c\x92\x5e\x64\x13\x56\x2c\x5c\xcb\xb3\xe4\xd0\x03\x06\xee\x5e\x8f\x38\x6e\x7c\x7e\x4a\xe8\xdd\x7b\x46\xf0\xbf\xa9\xd5\xa9\xd7\xfe\xfe\x55\x31\x82\x46\x54\x41\x86\xae\x8a\x04\xa1\x5f\xeb\xd3\xa1\xc7\x6e\xa1\x84\xcc\x77\x8f\x3d\xcd\xc7\x0f\x10\x44\xf5\x0c\x35\x3d\x1e\xee\x20\x58\x98\xa7\xee\x3e\xe9\x54\xc0\x20\xf1\xc1\xcc\xde\x5c\xf1\x28\x42\x95\x4e\xb2\x78\xe8\x97\x9b\x0c\x82\xdf\xaf\x30\xbb\xa2\x68\x47\x58\x6e\x7a\x58\x38\x3e\xc1\x85\x90\x57\x18\xff\xe7\x57\xfa\x76\xc2\xe1\x03\xb7\x55\xbe\x1e\x8f\x64\x60\x12\x4d\x5b\x3b\x17\x87\x12\xa4\x86\x2f\x85\x69\xcc\x70\x24\x08\xaa\x2b\xdd\x7b\x7a\xf7\x08\x61\xa4\x83\xb5\x90\xfb\x8f\x16\x21\x23\x46\xb0\x81\xf3\x4f\x35\x21\x87\xeb\xa2\xfe\x62\x6e\x45\x82\x99\xe2\xa5\x6d\x4d\x43\xe2\x84\x9b\x0e\xb7\x17\x49\x37\xee\x23\x3c\xda\xc5\x11\xeb\xf6\x3e\x86\xa0\x7a\xdf\xc1\x3b\x77\xa4\x91\xc1\x97\x1d\xc2\x49\xf5\x59\x6e\x04\x0b\xdf\x5d\xad\x72\xa8\x21\x94\xf7\x9f\x7e\x52\xbf\xc9\x98\x50\x72\xb5\xfb\xd0\xde\x31\x5f\xc2\xd7\x8d\xcb\xf5\xcf\x68\xee\x27\x30\x47\x87\x37\xa9\x3e\x34\x22\x6c\xfc\xd6\xf2\x94\x47\xa6\x9a\xc1\x82\x9a\xaf\xb1\xc4\x91\x4d\xc8\xd5\xa8\x77\x58\x2f\x95\x4f\xd0\x8d\x77\x33\x3c\xdf\xd4\xc8\xc0\xe0\xe5\x87\x83\x25\xc7\x96\x13\x24\x1d\x7a\xf4\x33\xf7\xde\x61\x90\x7b\xdd\xe8\x6b\x7c\x50\x39\x03\xe7\x9d\xe9\xa1\x3a\x67\x7c\x09\x38\x76\xbb\x71\xff\xe4\x6d\x97\x12\x67\xd8\xfe\x0c\xaf\x22\x1c\xcf\x89\x12\x67\x93\x33\x20\xec\x78\xc3\x5a\x92\xa4\xe4\xc7\xa0\xf9\xe2\xc2\x6f\x33\x05\x13\x09\x89\x3b\xde\x59\xf3\xdd\x39\xfa\x0f\xf2\x0e\x39\x7a\x4e\x59\xa8\x45\xb8\x16\xc1\x24\x94\x2b\xfe\x66\x81\x43\x4c\x92\x8b\x82\x2b\x09\x3f\x86\xa7\xcc\x74\x63\x33\x27\x94\x78\xee\x4e\x79\x51\xbe\x8d\x60\xa2\xd6\x70\xb8\x69\xcb\x03\x06\x49\x1a\x8f\x94\xe7\x4e\xb7\x26\xd4\xee\x60\xdf\x3c\x75\xce\x36\x82\x5a\x85\x8c\xb5\xec\xd7\x22\x82\xf4\xf5\x87\xde\xd3\xca\x13\x09\x5f\x5b\xb5\xae\x6b\x67\xdf\x24\xd8\xaa\x5a\xae\x1a\x2e\x5b\x47\x10\x2b\x10\xb5\xd1\xdf\xeb\x45\xd8\x60\x70\xfc\x07\xeb\x80\x17\x61\xa2\x3b\xb5\x63\x11\x5f\x2a\x83\xdd\x57\x15\x12\x2f\xd3\x61\x42\xf9\x97\xb7\x42\x96\x99\xb9\x0c\xde\xed\x6c\x3f\x19\x6f\xb1\x87\x70\x74\x97\xd4\xc1\x70\xc6\x99\xb0\x59\xe4\xf1\x9a\x35\x52\x2a\xff\x40\x80\xdf\xde\x31\xaf\x7c\x88\x85\xb2\x55\x9f\xca\x14\x5f\xdd\x23\xdc\x19\xb4\xf9\x68\xd9\xf8\x92\x30\xe4\x36\xdd\x49\xab\xec\x0e\x83\x6f\x59\xf2\xc1\x9a\x93\xd0\x33\xca\x17\xf8\xaf\x24\x18\xe9\xde\xfc\xd6\xdc\x41\x18\x2c\x13\xbf\x38\xaa\x50\x40\x78\xbc\x50\x70\x6b\xa0\xcc\x0d\xc2\x2f\xfd\x27\xdb\x72\xee\xe7\x12\xbe\x5a\x8a\x7d\x31\xdb\x92\x4d\x88\x0f\x91\x7b\xc4\xc3\x71\x81\xb0\x28\xa5\xe9\x8e\x1b\x87\x2e\x21\x5b\x36\x5c\xee\xf9\x24\xfe\x57\xfe\x87\x46\x27\xcf\x38\x83\x33\xcb\x09\xeb\x7f\x8a\xfe\x8a\x53\xac\x21\x98\x44\x29\xef\x8d\xe3\x38\xfc\x0f\x2c\x97\x2e\xf9\xae\xcb\x5e\xc0\x40\x93\xc4\x9a\x3e\xdb\xfa\x11\x78\xf9\x3e\x6e\xe3\xd9\xf3\x9e\x50\xd8\xa6\xdb\x26\xc3\x22\xc2\x23\xe4\x68\xeb\x7b\x8c\xb3\x60\xac\x98\x76\x7b\xe4\x5c\x11\x61\xcb\xed\xca\xda\x18\xef\x22\xc2\x2a\x79\xbb\x47\x83\xed\x0f\x18\x34\xfc\x62\xae\x44\x4f\x96\x5b\x57\xca\x5b\x2a\x95\xf7\x13\xce\xa7\xbc\x0b\xd3\xbd\x6e\x43\xb0\x17\x3a\x60\x11\x10\xa6\xf3\x0f\xf6\xcc\x7b\x72\x5c\xe8\xa1\x01\xa1\xa5\xf4\xa6\xcb\x9d\xb5\x57\x19\x1c\xeb\x1b\x35\xb6\x1c\x8d\x23\xd8\x7a\xee\x1a\xf4\xbd\x56\x4d\xd0\xfa\xa4\xe0\xcc\xcd\xa9\x4f\x50\x96\x92\xea\x1b\x9a\xaa\x49\x18\xbc\xb1\xe3\xe4\x77\xa5\x02\x06\xb7\xab\x92\x3e\x07\x85\x55\x10\x34\x05\x96\x1d\xf9\x0f\x99\x12\x0b\x56\x3f\xfc\xf9\x84\x50\x17\xd5\x56\xea\x3b\x59\xfe\x07\x8d\x4c\xa7\xf1\x51\xab\x28\x06\xf7\xd2\x92\x34\xdb\x96\x04\x12\xe6\xcd\xdf\x1c\x5c\xcc\x1e\x48\x7f\xcb\xad\x6d\xa7\x0e\xf9\xa8\xfb\xff\x53\x34\xcc\x76\x8e\x5b\xad\x36\x26\x6c\x98\x5f\xeb\x31\x63\xef\x0d\x82\x6d\xcb\x4f\xb3\xa0\xa4\x3a\xc2\xe2\x3a\xef\xb4\x4b\x67\xcf\x12\x36\x4a\xca\x3c\xdf\x76\xec\x31\x83\x3b\x15\xde\x1a\xf7\xd3\x57\x11\x3e\xdd\x9b\xd9\xa5\xc9\x1b\x44\xa8\xdb\x6d\xe2\x6e\x69\x9a\x4e\x10\x0b\x9c\x3f\x27\x5b\x57\xf7\x1f\x74\x0e\xb3\x1b\xf3\xeb\xeb\x11\xce\x57\xae\xe1\xf4\x79\x59\xcc\x40\x5b\x72\xea\xa6\x2a\x7b\x13\x82\x93\xb1\xe8\xc8\xec\x71\x0f\x82\x5e\xec\xf9\xa9\xdd\x87\xbb\x18\x7c\x49\x9f\x7f\x77\xd6\x64\x71\x39\x93\xd3\x38\xfb\x5d\x22\x83\xf7\x77\x2e\xcc\x0c\x39\x7f\x94\xc1\xa5\xfd\x6e\xbe\xca\xb6\xf9\x04\xa9\x71\x1e\xef\x55\xf3\xdf\x33\x38\xe6\x91\xd7\x62\x35\x5c\x42\xe0\x38\xf6\x6c\x4b\xc7\xb1\x7c\xc2\xfa\xef\x7b\x79\x03\x0d\x57\x11\xda\x3b\xab\xb5\xbb\x76\x36\xb3\x60\xf0\xfb\x65\xcc\xe2\x19\x87\x09\x37\xba\x14\x7d\xfc\x9f\xd9\x11\xbe\x06\x7f\x59\xd0\xf0\x22\x80\x10\x93\xcb\xe1\x15\x69\x74\x9e\xb0\xea\xcb\x6d\xcd\xd7\x39\xce\x04\x67\xff\x03\x9d\xf3\xfb\x2c\x08\xaa\x62\x95\xb9\xe7\x7c\xf7\x13\x3e\xdf\x17\x1d\x69\x29\xdb\x44\x30\x8e\x4e\x4f\xa9\xc8\xf0\x63\x30\x98\x95\xa1\xc9\xb9\x26\x93\x30\xa2\xe8\xf7\x78\x51\x71\x3f\x0b\x4f\xb9\x42\x37\xed\x39\xa7\x41\x58\x7c\x58\x34\xcb\x4c\x48\x95\x10\xf8\x5b\x76\x63\xf7\xd6\x33\x04\xba\x59\x18\xb6\xbd\x75\xf2\x28\x18\xfe\x65\x1d\x2b\x52\x8f\x60\xa2\x6c\xf9\x3a\x26\xc6\x91\xb0\x69\x7d\x94\x45\x30\x4f\x09\xe1\x4e\xc8\xc9\x88\xda\x05\x56\x84\x88\xc1\xb5\xe5\x9f\x78\x36\x10\x1e\x57\x19\x73\x33\x42\x6f\x59\xe8\xfe\xd8\x3f\xc5\xa4\xbf\x96\xc1\x6d\xe7\xaa\x14\xce\xc0\xb3\x0c\x62\x26\x7e\xa6\x2b\x78\x76\x12\x66\xed\x7f\xfa\xc9\x61\x73\x26\x61\x5e\x10\x1b\xf7\x7f\xd0\x3e\x78\x52\xdd\x6d\x5f\x26\xa1\xea\x91\x58\x4b\x52\x78\x2a\xc1\xe5\xf9\xed\x11\x57\x43\x63\x82\x74\xc4\xd1\x0f\x62\x9b\xdf\xb2\x20\x3a\x6d\xfd\xbd\xe9\xbf\x1a\x18\x94\x14\x15\x3f\x7d\xa5\xb1\x80\x20\xc2\xb1\x4b\x7d\xa5\x46\x0c\xe1\xa1\xe1\xdb\xee\xdb\x1c\xde\x04\xc5\x99\xd2\x6a\x2b\x24\x7d\x08\x75\xe9\xc7\x1e\x54\x29\xec\x24\x9c\x3b\xa9\x59\x94\xe9\x31\x95\xb0\x41\x51\xe5\xfb\xbb\xd8\x22\xc2\xaf\x8b\x4b\xde\xe7\xb7\x54\x13\x14\x16\x8e\x4b\x97\xa7\x97\x10\x18\xe9\xcf\x25\x8a\x1c\x4f\x09\x3b\xcf\x94\x8b\xb8\xc7\xf8\x31\x7f\x27\x23\xa5\x34\x53\xa1\x87\xd6\x04\xdd\x4d\xdb\x45\xc7\x1a\xac\x09\xd1\xbf\x9d\x9a\x9d\xa7\x19\x12\xd8\x42\xe7\x1d\x0d\xb1\xb6\x21\xac\x4f\x15\x4c\x65\x95\x1a\x10\xe2\xd5\x47\x57\xeb\x71\x0a\x13\xe6\x05\x4b\xa8\x07\x4a\x54\x10\xc4\x14\x72\xcd\x6d\xd6\x54\x10\xae\x0d\x6b\x4c\x7f\xec\xd2\xc7\xfc\x2d\x6a\x67\xe9\xf1\xd1\xc9\xdb\xe5\x85\xda\xbb\xe3\xc7\x44\x82\x08\xc9\xe1\x67\x93\x37\x5f\x75\xfb\x67\xfa\x5f\xc9\xca\x8a\x96\x9e\xd5\x54\xcb\xc0\x6c\xfe\xf4\xa7\x8b\x1b\x4d\x08\x15\x2d\xeb\xcc\x37\x16\x45\x31\xb8\x13\xe3\xc7\x5b\xf1\xa3\x94\x70\x52\xd4\x4e\x4f\xce\xa9\x84\xb0\xe2\xa4\x4c\x5e\xf9\x64\x99\x5d\x39\x75\xd9\x34\xee\x32\x42\xb5\x7f\x6f\x98\xe7\xa9\x76\x42\xdc\x6e\x9e\x55\x05\xc6\x6d\x84\x2d\x07\x8e\x64\x65\x04\xbc\x26\xb8\x1e\x37\x77\xb7\xb9\x52\x48\xb8\xb7\x2c\xe5\xf6\x09\xa3\x46\x82\xa3\xb1\x40\x89\x48\x67\x2d\xa1\xa4\xf0\x53\x8a\xfa\x82\xc7\x0c\xc2\x43\x1c\xa4\xbe\x0a\xbf\x20\x5c\x2e\x74\x4c\x94\xe7\xbb\x4b\xe8\xfc\x99\xce\xb7\x5d\x3b\x85\xd0\xa5\xa9\xb0\x2a\x29\x7a\x98\x05\x11\xa9\xb4\x3b\x97\x43\xca\x08\x32\x5e\x6f\x2e\x08\xbe\x29\x63\x10\x12\x2b\xb6\x79\xc5\x82\x60\xfa\x3f\xf0\x6b\xc3\x4f\xcf\xab\x33\x6a\x08\x8b\x4a\x0a\xfb\x6e\x1f\x48\x26\x64\xcd\x9e\x96\x20\x11\x76\xe8\x1f\xa8\xe4\x19\x3a\x87\x6c\x15\x24\x7c\x94\xbb\x79\x71\x47\x52\x3e\x0b\xee\x0b\xdf\x08\xd8\x4d\x93\xa6\xbf\xb8\xf8\xe7\xcc\x1d\xb1\x7b\x1d\x95\x38\x50\xb1\x7b\xe5\xc6\xf0\x05\xf4\x17\xe6\x9a\x46\x9d\x45\x8b\xc0\xfa\x8b\x52\x43\xa9\x3b\xaf\x84\x7d\x08\x62\x06\x27\xe6\x6c\x0f\x1d\x67\x61\x49\xbc\x2a\xcf\x46\x4b\x01\x42\xed\x3b\xf6\xed\xe1\x6b\x4c\x09\xb7\x99\x16\x89\xdf\x53\xbf\xb1\x30\xaf\xd8\x55\x37\xd1\x2e\x9c\xe0\x71\xde\x87\x96\x4b\x9d\x24\xf8\xfb\x46\x96\x2c\xbd\x27\x45\x78\x29\xb3\x8a\xdd\xef\x4d\x3c\x83\x39\xd7\x1e\x3f\x31\x08\x4d\x20\xec\xcd\x2e\xd6\xf9\xce\xf9\x95\x50\x71\x3b\xad\x65\xb4\x62\x80\xa0\x59\xfb\x1c\x6b\x33\x13\x08\x5f\x38\xe4\xb5\x3f\x1f\x22\x02\x53\xfa\x70\xda\xeb\x33\x6a\x84\x6f\xbd\x89\xa5\x3e\x26\x06\x04\x7d\x8f\xcb\x07\x38\x3c\x56\x13\x6e\x17\x48\x75\x6b\x84\xcd\x25\x8c\x9c\x19\x91\x5d\xcd\xd3\x4e\xf0\x7d\x21\x27\xf7\x7a\x7f\x31\x21\xcb\x58\x7a\x75\xa0\x98\x2b\x81\x6f\xbf\x88\xed\xc7\xc9\xe3\x66\xa8\x9d\x59\xe5\x15\xfe\x6b\x04\x69\xa1\x9e\xa9\x5f\x05\x77\x13\xd8\xfe\x3f\xbe\xee\x34\x1a\xcb\xff\x8d\xfb\x7d\x2a\x52\x4a\x2a\x21\xca\x90\xb1\xc1\x58\x86\xa4\xeb\xa0\x50\x32\x44\xa4\x34\xa2\x49\x12\x09\x65\x0a\x29\xa4\x52\x99\x93\x94\xa9\x01\x0d\x86\x0c\x49\x4e\x53\x28\x43\xe6\x26\x95\x39\x45\x48\xe4\x43\xd4\x5e\x5a\x7b\xdf\xbf\xee\xb5\xfe\x6b\x3f\x7b\xad\xf7\x71\x3d\xe2\x3a\xbf\xe7\xf1\x7d\x74\xbd\xb8\x1b\x57\x94\x7a\x8b\x20\x23\xb2\xc5\x65\x9a\xea\xe4\x17\xc9\xe9\x4f\xc9\xde\xa8\x6b\x84\xb4\x14\x9f\xc3\xaa\xb7\x75\x09\x8d\x6b\x1e\x8d\xcd\x34\x3d\xc3\x20\x2c\x68\x94\x6f\xb6\xd4\x4b\x06\x71\xed\x23\x7d\x8f\x85\xc3\x09\x23\x2b\x6a\xae\x72\x6d\x7c\x46\x68\x5c\x1c\x1d\xf8\x63\x9b\x33\x21\x8d\x67\x2f\x3b\x6f\x54\x3e\xc1\xe1\xc8\x1e\xc1\x85\x93\x98\x16\x90\x7e\xf2\x2f\x24\xe5\x9b\xbc\x15\xdb\x12\x08\xfc\x15\x67\x9f\xf5\xfb\xe8\x13\x36\x6a\xc7\x04\x8e\x99\xb9\x10\xc6\x5c\x8c\x5f\xc4\xf5\x4b\x12\x3a\x6c\xc5\xbf\x47\x66\x4f\x25\x74\xbd\x95\x2a\x3a\x78\x74\x03\x41\x26\x2a\x62\xfd\xd6\x1e\x5d\x42\xfd\x1e\xfe\x7a\x9e\xea\x6c\x82\xd2\xac\xc8\x3d\xf3\x26\x31\x7e\xad\xf0\xe2\x5f\xcc\xde\x62\xc9\x6c\xa2\x44\x42\x68\x83\x7a\x4e\x81\xc4\x01\xc2\x15\xa1\xc1\xf2\x4f\x3f\xf9\x08\x46\xe3\xa6\x4d\x3d\x65\x4b\xfe\x41\xe3\xae\xec\x88\xed\x16\x83\x2c\x38\x26\x72\x15\xf2\xe6\x8b\x12\x44\xcb\xca\xf8\xea\x17\x88\x13\xd8\x8c\x44\xe2\x6f\x0d\x2e\x26\x18\x8a\xc9\x4e\x74\x74\x7e\x67\xe1\xb4\x98\xa1\x50\xf7\x8d\x75\x04\xc7\x0b\x52\xaa\xc7\xf6\x66\x30\x30\x71\xae\x5b\x98\xaf\x9c\x43\xe0\xd6\x5b\x53\xb8\x66\x47\x3a\xa1\x9b\xd7\xa8\x69\x95\x45\x06\x03\xbf\x72\xab\x29\x0f\x5d\xca\x19\x18\x6e\x8a\xe3\xff\xcc\xfe\x96\xc0\xe6\x48\xa1\xe6\x03\xef\x09\x07\xea\xb3\xe4\xb8\xcd\x5d\x08\x6e\x47\xdc\x1d\xa3\xd9\xdc\x09\x21\xdb\x7e\x6e\x6f\x59\x5e\x46\xf8\xb3\xea\x53\x49\xe8\x33\x1d\xc2\x41\xf7\x93\xb1\x72\x41\xcf\x08\xe3\x1e\x4b\x8f\xf3\xf6\x6e\x24\x9c\x9d\xc5\xa6\xc8\x76\xd5\x8e\x70\xe6\x6d\xe3\x14\x85\x34\x13\xc2\x59\xe6\x92\xf7\x75\x9e\x56\x06\xbd\x4f\x7d\x12\xe5\x27\x8b\xb9\x52\xba\xcf\x94\xf1\x28\x82\x58\xbb\x70\xb6\xc0\xfe\xfb\x0c\x58\xac\x47\x72\xcc\xd4\x83\x04\xbf\xaf\x0a\xf5\x7d\xb2\xe1\x84\x9f\x02\xf5\xe9\x61\x19\xdb\x08\xb6\x9b\xbf\xbf\x72\xb3\x39\x42\xe8\x12\x91\xfe\xa3\xbb\x6a\x39\x41\x8a\x67\xc3\xa9\xf8\xad\x26\x84\x97\x2b\xfd\xfc\xbf\xe8\x4a\x10\x0a\xf6\xfe\x0c\xbc\x9c\x2c\x48\x70\xf2\x69\x5d\x6b\xf1\x61\x17\x21\xdf\xcf\x37\x5b\x55\x60\x2f\xe1\xbd\xc1\xf9\xac\xf3\x61\x0c\xa1\xc8\xf9\xe5\xa8\xd3\xaf\xc9\x1b\x88\xec\xa7\xa4\xd2\x59\x1f\x18\xa8\x35\xf5\xba\x3a\x65\xbc\x63\x40\xaf\xdd\x3e\x97\x46\x6c\x24\xc4\x06\x6a\xda\x9b\x3e\x54\x21\x74\x1d\x3a\x5e\x36\x45\xbb\x9d\xd0\x1e\xea\x38\xa2\x85\x2e\x16\x86\x0f\x35\x2d\x4f\xd8\x1f\x4a\x58\x31\x85\xed\x06\x49\xaf\x25\x28\xed\x4c\x1b\x2b\xf4\x51\x23\x34\x76\x18\x89\xe8\xd5\x33\x0c\x28\xb7\xe0\xd7\x82\x1b\xbe\x84\xf5\xee\x6b\xec\x16\x4b\xca\x11\x42\x92\xd7\xcf\xf0\x88\x68\x66\x70\xf0\xa0\x8e\x42\x94\x80\x27\x83\x1f\x8f\x1c\x35\xd2\xef\x46\x13\xae\x7e\x10\xce\xe8\x95\xca\x63\x90\x64\x50\x77\x70\xaa\xf1\x47\x82\x52\x90\x8d\x4b\x67\xa1\x25\xc1\xa5\xaa\x1f\x27\xeb\xed\x08\x1a\x15\x6b\x24\xec\xd6\xca\x10\xfc\x3f\x7e\x3e\x3a\xeb\xf0\x6e\x42\x69\x9b\x03\xb3\xa3\xb9\x80\xb0\x64\x83\xe8\xfb\xf1\xf4\x14\x82\x75\x5a\xac\xbd\xcc\xf5\xd3\x84\xe4\x0d\x2f\x36\xe4\x4c\xf1\x26\xd8\x38\x49\xfc\x34\x78\x77\xff\x9f\x51\xda\x86\x54\x57\x99\xf6\x53\x04\x91\x6b\x96\x9e\xf3\xea\xd3\x18\x68\x5e\x10\x90\xcb\xb8\x76\x99\xf0\x6d\xbd\xc5\x52\xa1\x90\x58\x82\x86\xdc\x8e\xee\x93\xb3\xe2\x09\x23\xed\xba\x77\x6e\xb6\x25\x13\x4e\x5a\x9a\x19\x4f\x53\x30\x26\x74\xf0\x2e\x96\xe7\x58\x6a\x4c\x48\x7d\x1f\x17\x7f\xc8\xd1\x86\xf0\xdc\x31\xaa\x3b\xa4\x5f\x87\x10\xfa\x8e\xe1\xdc\x7f\x65\x2b\x61\x7d\x40\xe4\x25\xfb\x26\x4d\x42\x26\x87\x68\x97\xf7\xc4\x13\x82\x6c\xe3\x91\xa0\x88\xd3\xbe\x84\xcd\x67\x63\x9d\x22\xcc\x7a\x58\x50\xd6\x5a\xf5\x4e\x56\xee\x2c\xfd\x87\xb0\x6f\xe9\x07\xe4\xfe\x2f\x24\x9f\xdf\xb1\xf3\xa4\x71\x13\x8d\xce\xd0\x3b\x31\xa0\x78\x8f\xa0\xc5\xe5\xd4\xb8\x60\x76\x1a\x83\xc3\xf2\x66\x35\x71\x89\x3e\x84\x06\x71\xd9\xbb\xd6\x73\xe5\x08\xed\x07\x53\xcb\x22\x57\xba\x13\xbe\x6b\xbf\x14\xb6\x79\x71\x95\xb0\x52\x68\xd1\xf2\x1f\x6f\x9a\x18\x38\xfe\x39\x99\x24\xf6\xf9\x08\xe1\x69\x8c\xcc\x85\xed\x57\xaa\x08\x57\xdc\xf4\x75\x5b\x9d\x7b\x08\x9c\x07\x62\x58\xf2\x39\x83\x84\xc7\xc2\x05\x6d\x3c\x1b\x06\x09\x6b\xcd\xf3\xc2\xca\xcb\x52\x08\x5e\x4f\x14\xdc\x4a\x77\xe5\x10\xec\x26\xcc\x7b\x06\x56\x45\x13\xbe\xc8\x58\x19\xb0\x2f\xd2\x24\x0c\xd7\x2b\x16\x7d\xef\xde\x48\xb8\xeb\xc8\x9f\xd2\x57\xa0\x4d\xe0\xca\x39\xbb\xe3\x5e\xcc\x69\x06\xd7\x37\xb0\x0c\xf7\x25\xf1\x11\x2e\x6e\x7f\x73\x27\xef\x92\x09\x21\x71\x78\x49\xc1\x6c\xb6\x55\x84\x45\x1a\x3e\xaa\x41\xbb\x76\x12\x1e\xff\x50\x35\xcc\x3c\x9d\x47\x48\x8e\x5a\x7b\xef\xec\x26\x55\x42\x8f\xd4\xd4\xbe\x63\xb2\xe5\xcc\x7f\xc5\x51\x68\xf0\xe8\xbe\xf3\xcd\x2c\x64\xb7\x7e\x5a\x11\x13\x7c\x93\x41\xc2\x94\x0b\xb9\x5c\x75\x4f\x09\xad\xe9\xbd\x17\x0a\x4d\x2a\x09\xb3\x7b\x5f\xcc\x5c\xb6\xe9\x2d\x03\x3b\x7d\xab\x14\xfe\xc7\x9e\x04\xa3\x29\x2a\x49\x06\xa7\x3d\x08\xb1\x8d\x0a\xaf\xb4\x67\x84\x10\x56\x5c\x7c\x90\x5f\xcc\xae\x48\x30\xd8\x77\x74\xeb\xc7\xd2\xc9\x43\x42\xb2\x24\x27\x5d\xea\x32\x83\xf0\xe2\xa5\xe7\xa5\x05\x6e\x11\x9e\x91\x89\x4e\x7a\xf6\x55\x42\x01\xa7\x45\xde\xe9\xd1\x13\x84\x6d\x16\x6d\xf7\x2f\x95\xba\x12\xfa\xb2\x79\x2c\xbe\x35\x1b\x11\xba\xf6\x15\x2b\x9b\xde\x39\x42\xa8\xea\x6c\xf6\xf5\xb6\xdf\x40\x30\x5e\xfe\x67\xbe\x62\xba\x1f\x61\xbe\x46\x82\x80\xc2\xd9\x48\x82\x5e\xdc\x9f\xcb\xe3\x86\x66\x0c\xea\xe4\x2f\x8b\xf5\x89\x17\x33\xe0\x7a\x7c\x30\xbf\x29\xf1\x10\xe1\xa7\x76\xc8\xaa\xd3\xd3\x93\x09\xdd\x2f\x37\x1c\xd4\xb4\x35\x23\x44\x8c\x96\x8d\xde\x8d\x70\x22\xdc\x9a\x71\xd9\xf2\x80\xa4\x11\xc1\x7e\x4d\x7a\x5b\x76\x66\x07\x61\x66\xa3\x42\x83\xdd\x81\x3a\xc2\xc9\x90\xa0\x2b\x85\x9a\x05\x04\x39\x97\xbb\xb6\x59\xe1\xfd\x04\xb1\x3f\x8f\x7d\x14\x75\x0a\x08\xc3\x25\x87\xb7\x5b\x9e\xba\x4a\xc8\x7c\x6b\x5a\x2f\xd7\xf0\x8e\xb0\xac\x6f\x8b\x89\xf2\x24\xee\x59\xec\xae\xf6\xbf\xff\x94\x01\xdf\x27\x07\x9f\xf2\x1b\x6f\x08\x06\x26\xe5\x99\xd3\x14\x63\x18\x58\xb7\x1e\x3f\xba\xb6\xed\x19\x03\x0f\x69\x8f\x92\xf5\xc3\x69\x04\x93\xec\xd0\xb4\x20\x13\x4b\x82\xd3\x83\x83\x9d\xfa\xd6\x4e\x0c\x66\xd8\xa8\x49\xf4\x1c\x39\x48\xd0\x1f\x3e\xec\x7d\xe4\xbb\x0e\x21\x42\xa3\x74\x6d\xa3\x6a\x0b\x21\x5e\x2e\x74\x69\x4b\xd5\x27\xc2\xde\xc2\x57\x85\xdf\x3c\xd3\x09\x99\xb6\xb7\xf8\xb8\x54\x1a\x18\x78\x4f\x11\x68\xb2\xf3\x6d\x22\x1c\x9b\xbd\x43\xca\x64\xb4\x9f\x20\x5f\x1a\xb6\x77\xcd\xea\x97\x84\x9d\xfc\x57\x7e\x2c\x1e\xef\x25\x98\xdb\x67\x0b\xb1\x5f\xbb\x4d\xd8\xff\xba\x21\x32\xe5\x5d\x0a\x41\xab\x92\x57\xb9\x25\xdc\x97\xc1\x8f\x3e\xf7\xc1\xfb\x4d\x6f\x08\x57\x9a\x39\xbd\x9e\x47\x37\x12\x6e\x14\x5e\x33\xfd\x2c\x92\xc4\x40\x3c\xec\xeb\x45\x67\xad\x7b\x0c\xae\x56\x1a\x84\x34\x85\x25\x32\xc8\x1e\xbc\xf2\x65\x1f\x77\x21\xc1\xef\x9d\x92\xdf\x01\x99\xc7\x84\xb3\x73\x4a\xbb\x2f\xd4\xa5\x12\xbc\x96\x71\xf5\x08\x36\x15\x12\x3a\xbd\xe4\xf3\x96\x70\x3c\x23\xcc\x0c\x33\xf8\xee\xfc\x35\x9a\xc1\xc6\x2e\xae\x3d\xeb\xb4\x72\x18\xa4\xce\xc9\xe1\x3a\xbd\xf0\x09\xa1\x6e\xb5\x65\x76\xdd\xd7\x0c\xc2\xf2\xcf\xd7\x57\x7e\x5d\x53\x48\x68\x3b\x53\x3b\x6b\xbf\x77\x01\xe1\xcd\x95\x75\x4b\xaa\x07\x03\x08\xfd\x1c\xc7\x4f\x71\x7b\x14\x32\x10\xad\x66\x65\xd5\x77\xe5\x31\xa8\x19\x78\xad\xfc\xf5\xd5\x23\x82\x00\xc7\x1c\x7b\xf6\xaa\x08\xc2\x58\x6e\x46\x5d\xf0\x2c\x27\x82\x8e\x3e\x7f\x69\xe1\x37\x4b\x82\x41\xaf\xf5\x9b\x19\xdf\x95\x09\xb2\xea\xa7\x7b\x44\xe7\xce\x26\x6c\xab\x64\xdb\xb5\xe4\x5e\x19\x03\x5d\xd5\x89\xeb\xce\xb9\xc1\x84\x22\x11\xb5\x9b\x81\x59\xd7\x18\x58\x4c\x6b\x88\xfc\x7c\xbb\x84\xe0\xfd\x69\xbb\x98\xc3\xe8\x7d\x82\xe9\xa7\x77\x99\xbf\x9f\x0c\xb2\x20\xdb\x80\x69\x9a\x07\x9c\x09\xfb\x75\xaa\x1b\x69\x12\xaf\xe2\xa4\xb9\xee\xbf\xb3\x20\xa4\xdd\x3d\x4a\x03\x5f\xbf\xe6\xc3\x88\xe7\x83\x4f\x71\x87\x35\x41\xbb\xed\x76\x98\xa3\xe0\xe4\x17\x60\xed\x9d\x9b\x2e\x13\x7a\x84\xeb\x87\x8d\xd8\xae\xe7\xa8\x11\x9e\xfe\x94\x71\x4a\x96\x10\x26\x7c\xe2\xeb\x09\x99\x77\x5d\x9d\xb0\xcd\xcb\xde\xf3\x6b\x94\x3e\xe1\xb7\xcf\x4b\x81\x63\x5f\x9f\x13\x36\xfe\x2e\x7c\x18\x6d\xac\x42\x98\x91\xa3\xda\x5a\x62\xe8\xc7\x20\x3e\x78\xab\x5e\x5d\x2f\x0f\xa1\x69\xa9\x40\x47\xc9\x52\xe7\x7f\xf0\x5b\xa7\xb6\xda\x63\x5c\x80\x20\x98\x72\xdf\x4d\x56\xd5\x8a\xa0\x12\x7f\x5e\x5f\x54\xf6\x1d\x83\xcd\xa9\x2b\xca\x66\x86\x64\x33\x70\x88\xe6\xf7\xe5\xbe\x9e\xcb\x60\xc6\x4f\x86\xd9\x4b\xba\x0c\xe6\xcc\xec\x2c\xda\xbe\x30\x99\xd0\x15\x5c\x62\xf1\x4c\xa5\x80\x41\xa2\xeb\x4e\xfe\xcf\xec\x67\x09\xbc\x11\xe2\x2b\x56\x9c\x77\x23\x70\xf4\xe8\x19\x76\x78\xf8\x13\xbe\xbd\x7a\x2e\x17\xa2\x3f\x85\x20\x67\xde\x9d\x7d\xe9\x84\x15\xe1\x0e\x47\xa7\xf7\x85\xdd\x9b\x08\xca\x39\x09\x0b\xb9\x25\xef\x30\x38\x69\xd6\xd7\xcd\x2e\x77\x8b\x10\x53\x23\xe8\x6f\x64\x15\x45\x38\x9c\xce\xb9\x28\xb8\xd6\x8a\x40\xf5\xb6\x17\x3f\x72\x25\x30\xf0\xdd\x1b\x29\xed\x6e\x2d\x4f\xb8\x30\x50\xe0\x26\xc7\x7b\x8d\xf0\xce\xf3\xaa\xa2\xf8\xef\xed\x04\xb3\xf5\xcb\xec\x77\x8c\x48\x11\x36\xbf\x31\x31\xd1\x5e\x26\x4a\x90\xc9\x8f\x5f\xfe\x12\x6b\x08\x1f\xaa\xe4\xcf\xfa\x49\x3e\x67\xa0\xbf\xfc\xb0\xf8\x2d\x8b\x32\x06\x8a\xa7\xf7\x7b\xce\xd5\xff\x40\xd8\xb6\x68\x98\x43\x61\x57\x19\x21\xa1\xc6\x6f\x49\xd0\x8e\x56\x06\x02\x9b\xb9\x7f\x99\x96\x7f\x66\xc0\xda\xf5\xa8\xa9\xed\x52\x09\x03\xae\x77\xe5\xfb\xfa\xd3\x97\x32\x58\x27\xb2\x20\xbf\x51\x45\x9a\xd0\x35\xe3\x4d\xc3\x9a\x80\x74\xc2\x8f\xbd\x5e\x27\x62\x5f\x2f\x22\xa8\x9a\x5d\x7e\x3b\xad\x56\x97\x70\xb2\x74\xd9\xdd\xd5\xf5\xcb\x08\x42\x8f\x6c\x23\x47\xd7\x49\x10\xb4\x55\x93\x5e\x5e\x5a\xb1\x92\xb0\x47\xbc\xd3\xde\xb5\xa8\x86\x41\x8d\xff\x93\x8d\xea\x99\x35\x04\xae\x7c\x17\xce\x50\xbf\x97\x04\xc4\xcf\xde\xf3\xd8\xa7\x94\x20\x86\x35\xd3\x16\xfa\xee\x20\xc8\xbe\x7f\xfa\x35\xb7\x62\x3f\x41\x6f\x99\x64\xaa\x8b\xa4\x0a\x41\xc3\x6f\x67\xb5\x44\xb7\x05\xe1\xb6\xda\x9b\xd6\x12\x11\x3d\x42\xdd\x57\x56\xeb\x80\x87\x13\xe1\xe3\x87\xd2\xa4\xfc\x32\x07\xc2\x12\xb5\x75\xea\xf6\x5d\xc7\x08\x94\xfa\x71\xf3\x94\x8d\x56\x84\x4e\xc1\x57\x7a\x7e\x93\x47\xf7\xd3\xe7\x19\x06\x8d\xc1\xb7\x09\x92\x3d\xfa\x2a\xa4\xf5\x85\x85\xac\x9d\x22\x83\x97\x4e\x18\x10\xc6\x56\x48\x4f\xf4\xb5\x75\x11\x2e\x4a\x5f\xcd\x09\x5b\xac\x49\xf0\x1c\x19\xae\x0c\xdc\x7b\x8c\x70\xf7\x90\xfa\xfa\xed\xdc\xb7\x08\x85\xd7\x1f\xf8\x9e\x78\x75\x9e\x20\x2e\xc2\x7d\xb5\x37\xb8\x98\x41\xb9\x9d\x5c\xb2\xcd\x46\x16\xc1\x72\xc7\xbc\xdf\x31\xdd\x47\x08\xfd\x1b\xde\x95\x79\xc6\xef\x25\x6c\x7c\x39\xa1\x7c\xca\xa0\x88\x01\x5f\x42\xf2\x05\xe3\xd5\x66\x84\xda\x0f\x1f\x57\x97\x38\x9d\x27\x8c\x27\xc4\xcf\xde\x2b\x67\x4f\x78\x58\xde\x3b\xbe\x88\x5b\x86\x20\xae\xfb\xb4\x71\x7f\xf7\x16\xc2\x96\xe6\xa2\x39\x3a\xed\x62\x84\xf4\xe5\xb6\xeb\x1f\xdf\x58\x41\x28\x91\xdd\xc3\x13\x64\xb2\x89\x90\x52\x58\xf1\x47\x7d\xeb\x57\x16\x7e\xdc\x69\xfd\x7a\xa4\x68\x13\x21\xda\x64\x76\xe6\xe7\xab\x0f\x08\xef\xd7\x0e\xef\x9a\x3f\x94\x40\xb8\x15\x5e\x34\xe5\x41\xca\x63\xc2\xf0\x26\xdf\x69\x27\x26\x1e\x10\x8c\x9d\xf5\x4a\x4f\xaf\x8a\x21\xcc\x12\xfc\x82\x17\xea\x69\x0c\x78\x6c\x97\x2c\x67\x7b\x7d\x8d\x10\xe6\xd6\x6b\x17\x15\xde\x41\xd0\xde\x98\xa3\xc3\x1d\x79\x87\x81\xd5\xf9\xdf\x63\x2f\x8e\xc6\x13\x44\xb5\x4f\xfd\x64\xbf\x91\x49\x98\x5a\x69\x67\x61\xf0\x23\x81\xf0\x52\x8a\xab\x7c\x41\x40\x0e\x41\xc7\x79\xf7\xc8\x03\xa3\x68\x06\xf1\x4e\x57\x4f\xd5\x4f\x6e\x2b\x91\xa2\x83\xbd\x8e\x97\x3d\x19\x38\x74\x28\x98\x04\x2b\x5f\x24\xec\x7b\xf0\x33\xbb\x6b\xc9\x61\x42\x60\x52\x99\xd3\xeb\xae\xfd\x04\x0e\xd3\x64\xc7\x76\xe9\x0d\x84\x20\x4e\x8e\x73\xc8\x48\xfa\xa7\xf0\x2f\x90\xec\x55\xbd\xab\x4e\xa8\x97\x10\x98\xd7\xbc\x69\x35\xe1\x46\xdf\x44\x9c\x60\x80\x25\x41\x64\x6a\x84\x52\x3b\xf7\x19\x42\x7c\xfc\x85\x74\x83\xd8\x0c\x02\xc7\xa7\xf9\xe2\x02\xb5\xf1\x84\x51\x91\x6d\x49\x13\xb9\x71\x93\x77\xc7\x90\x13\x1e\x73\x25\x08\xaf\x0a\x7c\xd1\xf5\xa5\x88\xc1\xfe\x33\xdf\x7b\xf9\x9a\xcf\x11\x34\x8d\x75\x93\x16\xac\xbb\xca\xa0\x6d\xa8\xa2\x68\xe6\xf9\x37\x0c\x0c\x97\x3f\x50\xdc\x2e\xa4\x4a\x38\x20\xa1\xdd\xda\xef\x7a\x83\x41\x10\xcf\xf7\x14\x2f\x23\x6d\xc2\xcf\xec\x22\x6e\x76\x03\x6b\x42\xf9\xf9\xab\xf4\xb0\xcd\x86\x30\x56\x67\xe4\x62\xc8\x58\x12\x92\xe4\xa7\xea\x86\xeb\x9d\x27\x2c\x6e\x48\x4a\x10\x6f\x4e\x64\xf0\xc2\x39\xa4\x5e\xa2\xc0\x85\x70\x70\x51\x5b\x54\x0d\xcf\x45\xc2\x73\x73\xf9\xd9\xf1\xd3\x4e\x13\xf8\xca\x79\xba\x67\x5d\x3e\x4b\x08\xc8\x7c\xe7\x7f\x67\x8c\x8b\x90\xda\x57\x33\x12\xe7\x63\x49\xa0\x5f\x73\x85\xe7\x4b\x1b\x13\x3a\xb7\x85\xfa\x64\x7d\xd7\x23\x5c\x78\xb8\x5e\xc1\xc5\x7e\x9c\x85\x96\xc3\xf9\x59\x1f\x45\x6a\x08\xbb\xbd\xd7\xc4\xe5\xe5\xdc\x23\xd0\xe3\xa7\x21\xdb\x47\x56\x11\xbe\xf2\xa5\xee\xdf\xff\xd0\x87\xc1\xec\x16\xb5\x35\x5d\xcd\xe5\x84\xa8\xa3\xf3\x77\xc8\x84\xa4\x11\xe4\xac\x0e\xdf\x08\x76\xbe\x44\x28\x3c\x3b\xe1\x7e\xa0\xdc\x84\xb0\xeb\x4f\x22\x9b\xe9\xd3\x73\x84\xe5\x6a\xe1\x0e\x9b\x8c\x46\x58\x18\x38\x37\x71\x9c\x97\x3b\x8e\x81\x75\x92\xad\xd6\xdf\xe2\xbc\xe5\xd6\x1a\x95\xf7\x57\x09\xd9\x02\xe4\xc0\xcc\x3d\x47\xf8\xdc\xd2\x24\xba\xe1\x82\x09\x81\x5b\xf5\xfa\x99\x4d\x43\x39\x84\x10\x8f\x8e\x84\x4f\x4b\x4a\x09\x8c\xed\xd6\x64\x6d\x39\x17\xc2\xf5\xca\xfd\x46\x4a\xeb\x8f\x10\x14\x05\x0b\x03\x94\xc3\xb6\x12\x3a\xfd\x1d\xfb\x84\xcd\xae\x12\x3c\x9a\x9c\x1f\x8c\x6c\x65\x08\x87\x86\x2e\x5e\x10\x7d\x6f\x41\x58\xf2\x6b\xeb\x54\xc1\xd1\x02\xc2\x53\x7f\x19\x71\x41\xdd\x1a\x82\xa8\xdd\xd3\xf1\xf9\x73\x33\x18\x68\x64\x17\x97\x56\x0d\x14\x13\xd6\x1e\xcd\x76\xe9\x98\xef\x49\xb8\xb1\xc7\x25\xa7\xe5\xd6\x54\x42\xe7\x1a\xcf\xa5\x2f\x57\xaf\x21\xdc\x7e\x59\x52\xef\x7e\x7a\x2d\xe1\xa0\x36\xaf\x72\xdd\x9b\x62\xc2\xee\xaf\x5e\x66\xf9\x07\xf9\x08\xcf\x0f\x9c\x0e\x9a\xfb\x71\x1e\x41\xd0\xb2\x41\xc3\xd1\x6a\xd5\x3f\xc5\x58\x43\x48\xe1\xe3\x89\x8f\xac\xff\xb0\x7b\x5f\x6d\xa6\x4f\xd7\x02\xc2\xdc\x9c\xef\xcb\xdc\x9f\xb8\x12\x0e\x28\x5f\x6d\x93\x59\x61\x40\x30\xf0\xd4\xf0\xb5\x3b\xab\x4c\x98\xf6\xd6\xb4\x9e\x3b\xe9\x3b\x0b\x69\x77\x3f\xae\xd9\x2f\x3e\xf9\x67\xf1\x73\x13\x71\x16\xbd\x4a\x98\x1e\xf5\x8e\x7d\xe3\x9f\x74\x82\x41\x42\xb5\xc7\xdf\xc2\xed\x22\xda\x30\xe3\x8a\x16\x61\x55\xc0\xc5\xb5\xef\xad\x58\xff\xab\x4c\x0f\xd7\xf9\xb9\xc8\x5b\x95\x50\xb8\x4c\xf3\xea\xec\x79\x31\x04\x73\xad\x63\x0f\xee\xfd\xa9\x26\xc4\xbb\x9d\xe1\x8f\xe1\xf6\x25\x28\x75\xb0\xdd\x3b\xdc\xe9\x46\x78\xf4\x24\x9f\x63\x95\xae\x3d\x61\xba\x46\xa1\x5b\x89\x65\x36\x83\x08\x01\xa9\xb3\x1f\xd3\xa7\x10\x54\xa7\xc9\x17\xbc\x5c\x13\x42\xb0\x64\x7b\xd2\x6b\x15\x35\xc4\x82\xd7\x52\x73\x25\x1b\xa9\x45\x04\x8d\x90\x63\xfe\x5f\x74\xad\x09\x12\x41\x73\x38\x5c\x95\x57\x13\x14\xe7\x8a\xd8\x6e\x3b\x97\xc4\xc0\x20\xe9\xa2\xc0\x2d\x6f\x57\xc2\x95\x68\xab\xc6\x90\x3c\x25\x42\x79\x95\x40\x8a\x68\x61\x0c\xe1\xa4\x8d\xe5\x3e\x71\x12\x27\xec\x9d\x31\x25\xc0\xaf\x7c\x2b\xe1\xca\x7b\xf3\xf8\xa1\x35\x4e\x84\xfe\x8d\x25\x85\x6d\x47\x8e\x12\x74\x24\xf9\x0a\x07\xd6\xc5\x12\x74\x46\x73\x36\x75\x2b\x0b\x10\xc4\x97\xc4\xc5\x49\x70\x9c\x63\x90\xd3\x34\x6a\xec\x11\x1b\x44\x60\x0f\xfe\xd2\x34\x91\xcf\x43\xf8\x50\x51\x5b\x77\x67\x86\x0d\x21\xfe\xcf\xbc\x2f\x37\xba\x03\x09\x79\x4e\x7e\xe7\xbb\x6a\xef\x10\xa6\x99\x5d\x4b\xcf\xeb\x30\x24\xf8\xc5\x67\xb3\xef\x70\x3b\x4e\x38\xa2\xb4\xe2\x4f\x73\xc1\x25\x42\xad\xd1\x8f\xab\x0d\xd2\xed\x84\xc2\xdc\x59\xcd\xad\x3f\x77\x12\x94\xfc\xcf\x69\xc7\x68\x7f\x25\x74\x5a\xea\xff\xd8\x5f\xf1\x86\x81\xe0\xfa\x27\x0d\x8b\x37\xd6\x11\x9e\xbe\xbe\x71\xe6\xcf\xc0\x43\x42\xe5\x6a\x9b\x2f\x75\xd9\x3e\x84\x8e\xf5\xfb\xbd\x82\xaa\x1a\x08\xea\xcf\x16\xad\x3b\x71\x3b\x81\xa0\x70\xe3\x5b\xeb\x27\xe9\xc7\x0c\xc2\x8e\xf0\x2d\x09\xb2\xec\x27\xf4\x7f\x10\x11\xed\xb3\xe8\x24\xf4\xba\xa8\x45\xe7\x25\x34\x10\xc6\x7d\x31\xd7\x8a\xe7\x09\x03\x91\xc0\x87\x83\xd2\xbe\xf7\x18\x98\x4f\x11\xbb\xf0\x76\xa9\x36\xe1\xc4\x35\xa9\x0c\x7f\xd1\x66\x42\xdc\xa2\x7c\xbe\xe8\x98\x5a\x42\x84\x85\xfa\x4e\xc9\xe8\x5a\x82\xd1\x81\xf6\x13\x3e\x5a\xe5\x0c\x74\x57\xf1\x2f\x1e\xd1\x0a\x63\xf0\x2b\x76\x8b\xe3\xdf\x51\xe7\x35\xb5\x95\x97\xcf\x37\x12\x42\xc0\x6e\x7f\x40\xa6\x8e\x81\xe0\xbe\x85\x8f\x82\xbb\xef\x10\x1e\x49\xef\xdf\xf9\x77\xe4\x7d\x67\x79\xe9\xdf\x12\x35\xf1\xb3\xe0\xf8\x70\x7b\x3e\x1e\xcd\x2a\x08\x71\x6e\xd7\x21\x18\x51\x53\x8a\xd0\xe0\x13\x02\xfb\xc2\x27\x0f\xbf\xcc\x28\x26\xfc\xbe\x93\xf1\xd6\xfa\x4d\x12\xa1\xfa\x66\xfa\x42\x3f\x8f\x64\xc2\x96\x2f\x73\x5a\xf7\x14\x6d\x20\x28\x24\x6f\x79\x31\xbb\x61\x3b\xc1\x57\xbc\xaf\x46\xa4\x52\x95\xd0\xf5\xbe\xfb\xfa\x21\x96\x36\xe1\xf5\xf6\x51\x8d\xdd\xe2\x85\x84\x75\x05\xe1\xee\x69\x0d\xa5\x84\xf4\xa8\x43\x15\x47\x7c\x5c\x09\x6b\x3c\xd6\xaf\x94\x3f\x53\x4a\xe0\xff\xb5\x99\x5f\x9b\x4f\x93\x50\x2f\xdd\x36\xb0\xb6\x9f\x97\xa0\xfe\x25\x74\x60\x64\xef\x63\xc2\x66\x1e\xf1\x8a\xe4\xc6\x16\x42\xa4\xf0\x7a\x93\xc0\xd7\x2d\x04\xf7\x9b\x8a\xf7\x4f\x3c\x37\x25\x34\x1f\xa9\x1a\x48\xa6\xf5\x84\x04\xa1\x04\xe9\xfb\xcf\x43\x08\x7d\x57\xac\xc5\x7f\x71\x4b\x11\x58\xa6\x3e\xdf\x05\xe7\x9d\x20\xbc\xe7\x0e\x19\xef\x3d\xb7\x9f\x30\xee\x9d\x77\xb2\x7d\x97\x37\x03\x9b\x93\x25\xd9\xbd\x1b\x96\x13\xc4\x78\xbb\x06\x4a\x9f\x98\x10\x76\x1a\x88\xdc\x97\xbf\xaa\x4a\x58\x3b\x53\x4d\x75\xf6\x05\x2b\xc2\x98\x74\x95\x9a\x1b\xfb\x26\x42\x8c\xd3\xf0\xf9\xf9\x4d\xaf\x08\x46\x7b\xd5\x52\xd5\xf7\xf0\x11\x44\x56\x15\xf1\x1c\x7b\xea\x4f\x30\x38\x1c\x2a\x5a\xd4\xb5\x9e\x10\x3a\xf2\x51\xc3\x3d\xa5\x8e\xb0\xb4\x6d\x5c\xcb\x6e\x9f\x1a\xe1\x72\xf0\xf5\x7a\xb1\xa2\x5a\x42\x89\xa2\x6d\xcb\x75\xbf\x12\x82\xc2\xf2\x3e\xc3\x6d\x87\xc5\x08\xf2\x3d\x91\x09\x83\x97\x1d\x09\x3e\x73\x6e\x0e\x69\x4c\x1f\x66\x50\xf4\xf8\xe6\xa7\xb5\x93\x48\x8f\xde\xb7\x81\x7d\x95\x2e\xe1\x55\xfd\xbd\x8d\x0a\xb7\x8d\x09\x97\xed\x1c\x17\x3f\xff\x16\xf1\x0f\xf6\x0e\x6f\x3b\x17\xaa\x93\x45\x68\xf1\x5f\x3d\x70\xbe\x3b\x99\xb0\x35\x23\xc3\x76\xc6\x8f\xc9\xff\x85\x64\xd2\x17\x3d\xeb\x4c\x02\xd2\x70\xad\x6c\xff\x27\x16\xee\xae\xe1\xf4\x98\xf9\x76\x03\xa1\xcd\x4d\x60\xe4\x18\x73\x8a\x41\xf3\x8f\x1f\xa9\x25\xef\x8d\x09\x0e\xae\x7f\xfc\x65\xd4\x37\x13\x36\x7d\xc9\x6a\xfd\xf0\xc2\x86\xc0\x2f\xc8\x26\xfd\xc8\x7f\x29\x61\xea\xfc\x0b\x07\xe7\xfb\x4e\x25\x6c\xdd\x26\x24\x7d\xe8\xec\x4b\xc2\x02\x56\xea\x85\xc1\xc5\x19\x84\x31\xa5\xa9\x32\x3a\xb3\x17\x10\x5e\xbb\xe9\x87\x7a\x3d\x54\x24\x78\xac\x34\xaf\x4c\x1b\x93\x25\x8c\x7d\x2a\x6b\xe5\x5e\x2e\x49\xe8\x8e\xbf\x9a\xa8\x1d\x19\x4b\xd8\xfa\xd2\x23\x6b\xe0\xe9\x43\xc2\x8d\xf2\x74\xed\x0f\xea\xb5\x84\xc2\xa5\x23\x81\x8f\x5f\xdc\x26\xec\xb6\x34\x18\xcc\xb2\x09\x24\xec\x7f\x74\xfd\x4d\x67\x67\x22\x21\x49\x01\x27\xe6\xc6\xb7\x12\x6c\xd6\x86\x7f\x3c\xb3\xb2\x97\xb0\xcf\xed\xf4\x82\x6e\xf3\x7c\xc2\xf1\xa1\xe2\xab\x7a\x37\x1b\x09\x16\x17\xde\x9d\xde\x38\x89\x32\xf9\xea\xf7\xb7\x79\x73\x18\x6c\x7a\xea\x3f\xa2\x3d\x59\x2e\x1c\xe9\x8a\xbd\x61\x3c\xf9\xaa\xd5\x71\xbd\xbd\x2c\xa0\x98\x90\x86\xec\x9a\x8b\x6b\xf2\x19\xf8\xaf\xb8\x98\xf3\xed\xf5\x36\x42\xc7\x65\xb3\x5d\x6a\x65\x06\x84\x65\xaa\x1e\x7b\x6a\x2e\xd6\x10\xe4\x43\xba\x97\x0d\x7c\xaf\x63\x90\x77\xb4\xd2\xf9\xfb\xbc\x6a\x82\xce\x98\xc9\x01\x09\xe5\x56\x06\x8d\x8a\x2e\xfd\x73\xf8\x9f\x11\x36\x69\xa9\x2d\x98\x7f\x39\x91\x30\x31\xff\xd9\xbc\xae\x6f\xb7\x08\x19\x1f\xb5\xad\x6d\x6b\x92\x09\x8f\x02\x5d\xd5\x0c\xd7\x3f\x26\x94\xcd\x1e\x2a\x3b\x71\xe0\x1e\xa1\x8c\x6b\x9c\x5b\x38\xf3\x10\xc1\xda\xed\xe6\x80\xc9\x8b\x2c\x42\x63\xa2\xa0\xe8\x23\xb7\x22\x06\x9f\x2e\xc7\xce\xe5\xfb\x53\x40\x90\x17\xf2\x31\x76\x3b\xeb\x4d\xd8\x75\x78\xbc\x6f\xc5\xad\x9f\x2c\x8c\x8f\xce\x37\xf9\x3c\x93\x21\xf4\xa7\x7c\x1b\x59\x70\xdb\x86\x70\x31\xc4\x5e\x5b\xe7\x50\x00\x21\x2a\x6e\x59\xff\xde\x99\xa9\x84\xfa\xd4\x56\x23\xd5\xeb\xc5\x04\xa7\xfa\x27\x9d\x1b\xad\xf2\x09\x65\xa3\x2b\x93\x93\xec\xe3\x19\xb8\xdf\x1a\x31\x56\x99\x1c\x99\x33\xf8\x72\xab\xec\x39\xc1\xb2\xb0\xee\xf2\x92\xdf\x77\x08\xf7\xcf\xce\xd5\xe1\x98\x52\x48\x90\xca\xb5\xda\xd1\x9d\xbc\x94\x70\x41\xc5\x46\x34\xb7\xd6\x90\x70\x6e\x62\x5d\xcc\x8c\x89\x24\x06\x32\x5b\x0f\x3c\xdc\xda\x75\x99\x60\xbc\x30\xb0\x51\xed\x8e\x31\x61\x8e\x66\x1f\x97\x68\x84\x12\x41\x8b\xcf\xdb\x74\x4e\xcf\x6d\x42\xd7\x46\xbe\xaf\x5d\x5f\x6f\x13\x16\x3f\xe9\x79\xfa\x17\x67\xa6\xb0\xd5\xff\x85\xbf\xb3\x72\xd5\x99\x05\x05\x84\xb1\xd1\xb5\xc1\x7e\xcf\x4a\x08\x0f\x85\x4f\xdf\x3f\x3b\x89\xd3\xb5\xdb\xfc\x16\x54\x5c\x22\x3c\x79\xe6\xed\x1e\x2d\xb3\x91\x50\x2b\xae\x54\x33\x6d\x25\x27\xc1\x8f\x75\x76\xdd\xce\xd0\x54\xc2\xfc\x29\x0f\xaf\xb3\x45\x5a\x10\x4c\xcf\x75\xec\x71\x58\xba\x9d\x10\xa8\xb1\x65\x4e\xe2\xf5\x32\x82\xab\x01\xaf\xf1\xa7\x56\x23\x82\xc7\x02\xad\x89\x16\x37\x29\x82\x41\x6d\xc5\x89\x2b\xf2\xba\x84\x1f\xe7\x5a\xa6\x5d\x93\x17\x24\xc4\xad\x8f\x12\x88\x4f\x38\xce\xe0\xed\x26\x4b\xb5\x84\x7c\x05\x02\x17\x73\xfd\x41\x7c\xca\x77\x16\xfa\x0f\x7c\xd2\xfb\x50\xb4\x8b\xfe\xc3\xbd\xc5\x1f\x3b\x2d\xfc\x15\x09\x25\x75\xd2\xdd\xb2\xa5\x35\x84\xea\x75\xbc\xbb\x37\x46\xf8\x10\x1c\x32\x1d\xad\x5e\xf1\x36\x12\x66\xed\x2c\xee\x34\xfb\x92\x4a\xd0\x69\x78\x70\x3c\xf8\xa3\x25\xa1\xc6\x22\x62\xb9\xfd\x9b\xf3\x0c\x20\x23\x51\xd8\x19\x7c\x9c\x60\xf9\x40\xac\xab\x8c\xc7\x9f\x10\x38\xc0\x6f\xea\x62\x7a\x9c\xb0\xd1\xf2\x78\x9f\x0b\x5b\x01\x0b\x65\x33\x7d\xed\x37\xce\xff\x40\xe0\x5d\x2c\xff\xcd\x5e\x2d\x9c\x10\xab\x19\x94\x35\xa5\xe0\x2a\x61\xf3\xb5\x8c\x15\xcb\xf3\xf5\x08\xe9\xb2\x01\x3e\x27\x56\xdd\x26\x70\x78\x5e\xe6\x4b\x6a\x91\x9d\xbc\x01\x99\x49\x69\x45\xad\x20\x88\x85\x4e\x65\x0a\xab\x42\x09\xc6\x1f\x87\x5a\x03\x35\x6f\x13\x7a\xc5\x64\xbf\xfd\x2d\x53\xcf\x5c\x8b\x74\xb5\x53\x26\x7c\xde\x3c\xfb\x35\x6f\x69\x2a\x83\x0c\x8e\xe0\xbd\x9b\x5a\xb3\x08\xec\x35\x2e\x3c\xef\x0a\x4c\x08\xc1\x5c\x45\x91\xb8\xc0\x4b\x48\x9e\x91\xb6\x75\xa1\x9e\x02\xe1\xfd\xf9\x2d\xd1\xdc\xc3\xd7\x09\x96\xc1\x97\x56\xd6\x74\xc8\x12\x0c\x26\xe6\x46\x46\x33\xe1\x84\xf1\x3f\xf7\xdd\x63\x62\xb2\x08\x6a\x67\xb6\x9f\x09\xb2\x9a\x7c\x0a\x64\xac\xdb\x6f\x24\x7d\x64\xe0\x94\x72\x40\x37\x65\x72\x14\xa2\x55\x92\x7d\xb6\xf0\x25\xc1\x40\x31\xbb\x61\xfd\xfc\x34\x02\xfb\xe0\xa6\x97\xd1\xe9\xf9\x0c\x04\x57\x54\x0b\x4b\x8c\x33\x84\xd9\x2e\xf3\x6a\x7d\x23\x1d\x08\xa7\xa6\xa7\xdc\x12\xfe\xf0\x9a\xf0\xfd\xe1\x62\x9e\xec\xac\xf2\x7c\x8c\x4a\x75\x5c\x7a\xbb\xa5\x9c\xb0\xa8\xc7\x8b\x32\xea\xb5\xfe\x81\x4c\x2e\xf7\x8a\x7c\x39\x5b\x42\xe9\xfb\xfe\x2c\x25\x5e\x61\x82\xd2\xa6\x6b\xeb\x5a\x63\x26\xef\xef\x12\x9b\x44\xf5\x2e\xe4\x12\x5e\xad\x0a\xfa\x1d\xc9\xf7\x85\x70\xe3\xa9\x0e\x7f\xd3\x95\x1b\x84\xc6\xed\xd7\x8c\xaa\x42\x2c\x09\x0f\x75\x95\x97\x3d\x9b\x39\x9d\xe0\x92\x3a\x5f\xfa\x57\xe6\x4a\xc2\x86\xc8\xdd\x06\xc6\xd3\x2f\x13\x06\x9f\xe0\x65\x78\xf4\x34\x82\xd2\xe0\xad\x27\x6a\x27\x33\x09\xef\x42\x06\x46\xef\xb2\xa9\x11\xa6\x27\x46\x3a\x44\x94\x1f\x23\xc8\x0f\x5c\x71\xd7\xdd\xa5\x43\x30\xcd\x51\x8e\xcb\x3b\xd5\x48\x08\xba\xd5\xc4\x7f\xca\xa7\x90\xc1\xaa\x06\x0b\xbf\xa3\x26\x59\x84\x38\xdd\xd7\x4b\xcc\x8e\x27\x10\x8c\x86\x75\x84\xf4\xc5\x43\x09\x05\x47\x8a\x1b\xb7\x3c\x48\x27\xbc\x68\x3e\x35\xa3\x25\xbc\x9a\x10\x51\x77\xbf\x35\xf4\x68\x35\x21\x81\xcf\x7f\xa7\xbd\xe8\x3d\xc2\xb1\x89\xdf\xe1\x03\xa6\x59\x84\xb1\x6a\xf3\xaf\x3d\x37\x6f\x12\x0a\x84\xd8\xc7\x1c\x26\x47\xdb\xdc\xb9\x16\x66\xcd\x8c\x23\x18\xcb\xed\xfc\x5c\xa6\x53\x40\x30\xb8\x71\x74\xfd\x2a\x91\xdb\x04\xed\x7b\x6f\x38\x9c\x1f\x96\x11\x76\xa7\x95\xf6\x94\x56\x0b\x13\x6e\x28\x4c\x2f\x67\x5e\xe7\x31\xc8\x36\x75\xec\x90\x5c\x7d\x88\xf0\x28\xb7\xad\x72\xdb\xf2\xeb\x84\xf9\xdc\x55\x09\x6f\x13\x8c\x09\x82\xef\x7d\x4f\x4f\x93\xb4\x20\x58\x47\x6c\xc9\xfc\x93\xa6\x41\x90\xe1\xbf\xba\x53\xbf\xd6\x86\xb0\x5b\x4d\x70\xe7\x4f\xbf\x34\xc2\xc5\xf7\xb3\xb3\x7b\x34\xf7\x13\x0e\x2c\xb2\xe9\xb9\xbf\x44\x91\x20\xd9\x14\xac\xa3\x6c\xee\x49\x58\x59\x56\x6c\x56\xf0\xee\x14\xc1\x51\x36\xcf\xae\x7a\xad\x3f\x61\x7e\x90\x7e\x4a\xb7\xb3\x03\xc1\x22\xd7\xeb\xd8\xa5\x34\x0f\x42\xd9\x3c\x8d\x90\x3d\xe7\x15\x09\x1b\x22\x82\xa6\x57\x7b\xfa\x32\xe8\x0f\x34\x3d\x52\xf6\xe5\x38\x61\xcf\x9c\xb0\x8e\xe6\x95\xa6\x84\x87\x63\xf1\x39\x3f\xf5\x25\x08\x77\x9b\xee\xf3\xc4\x9d\x63\x27\x4c\xcc\x61\xa6\x46\xcf\x90\x20\x68\x9c\x3b\xd5\xd7\x6e\x55\xc8\x20\x67\x93\xde\x5d\x1b\xed\x85\x04\x11\xef\xf1\x17\x2f\x53\x07\x58\xa8\xd7\xbb\xb5\x4d\x81\x5f\x83\xf0\x45\xc7\xe4\xf5\xd6\x1f\x71\x0c\x26\xa6\x14\x3f\x2a\x91\x59\x47\x38\xec\x9a\x25\x90\x78\x7d\x35\x61\xe3\xd6\x59\xd3\x86\x52\x3c\x08\x4c\x8b\xe2\xf7\x6f\xaa\x46\x84\x7d\x7b\x92\xa4\x73\x8c\xde\x32\x90\x3b\xb8\xa0\xc5\x75\x8a\x1e\xe1\x15\x23\x2b\x67\xd6\xaa\x40\xe8\xf5\x35\x7b\xce\xa5\x65\x43\xf8\xb4\x9c\x5b\xea\xc9\xcc\x61\x16\xa2\xf8\xa6\x18\xe7\x4d\x18\x12\xa6\x6e\x89\x0b\x14\xeb\x5a\x4d\x10\x48\xff\xf8\xc5\xfa\xc2\x49\x02\x6b\x0b\x7d\x5b\x13\x71\x83\x30\x10\xae\x51\xc0\x4a\xe2\x23\x5c\x79\x66\x53\x2c\x3d\x2c\x40\x48\x17\x18\xf9\xb8\x7b\x34\x85\x60\x1b\xb5\xb7\x47\x6e\xf3\x52\x82\xf4\xdb\x9c\xc3\x33\x5e\x9e\x26\xc4\x94\x24\x89\xf6\xbe\x58\x4d\xd0\xe1\xa8\x53\x4b\x7c\xc8\x49\xd0\x5d\x5c\xa1\xc1\x35\xa0\xf9\x4f\xf1\xaf\x49\xb2\xbd\xf3\x61\x03\x61\x95\x7e\xcf\x5a\xc3\x3a\x1f\x42\x7b\x8c\x84\x42\x81\xb7\x3a\x21\xb1\xb3\xd0\x58\xbc\xb7\x91\x70\x29\x38\xb5\xd4\x3f\xa1\x8b\x40\xc7\x5b\x4e\xdd\x77\xe9\x22\xbc\xf1\x7f\x50\xe1\x37\xa7\x93\xd0\xd3\xdb\x1b\xfa\xd1\x63\x1f\x21\xe6\xdc\x8d\xb9\x8f\x2e\x9c\x22\xb0\x6e\xa6\x2c\x9b\xaa\xa2\x4e\xd8\x2c\xbc\x68\x7f\x6a\x6e\x2d\xe1\xe5\x4b\xeb\x9f\x42\x27\x57\x10\x9a\x6f\x1a\x8f\x3c\xcc\xb3\x26\xf0\x2b\x57\x69\x3c\x96\x17\x20\xac\xf9\xfd\x6a\xd0\xc2\x4b\x86\xf0\xd5\x39\x70\xd4\xeb\x50\x38\x83\x75\xf5\x3f\x3a\x8c\x78\x84\x09\x65\xd9\xf3\x36\x3d\x33\x65\x11\xf8\xcf\x18\x6d\xd9\xb2\x80\x9b\x46\xbb\x3d\x59\xbd\x47\x53\x19\x64\x72\x6c\xc8\x93\xb6\x4d\x22\x7c\x65\xed\x97\xd8\x77\x66\x35\xe1\xaa\xb8\xd6\xe6\xbc\xdc\x6d\x84\xec\x9e\x37\x89\x75\x33\x52\x09\x3c\x73\x65\xb4\x7f\x7d\x58\x44\x78\x3e\xf7\xdd\x74\xb9\x55\xbc\x04\x69\xf7\xa1\x97\xb7\xdd\xe2\xfe\x29\xe3\xf1\xea\x81\xa3\x36\x82\x04\x1d\x65\x19\x6d\x8e\x38\x79\xc2\xd6\xea\x3b\xb5\x37\xb6\xff\x61\xe1\xa0\xd2\xad\x36\xbb\x75\x31\x84\xdd\x4d\x66\xef\x0f\x71\xeb\xfd\x03\x9d\x88\xc5\x97\xd8\xa3\x94\x09\x0f\xd2\x0b\x54\x57\x7f\xb0\x24\xdc\xb5\x0b\x5d\x14\x6a\x51\x47\x78\xfb\x47\xb3\x7a\xf8\xb0\x1e\xa1\xf5\x80\xf8\x92\x85\x82\x22\x04\xc8\x2d\xf5\x36\x7f\xbe\x98\xb0\x66\x57\xbc\xe5\xb4\xdb\x9c\x04\xc1\x8c\x40\x9e\x1c\xd7\x3b\x84\x65\x09\xe2\xea\x56\xc7\x46\x58\x78\xfc\x33\xb2\xf2\x97\x99\x22\xfd\x07\xb9\xd1\xcd\x2b\x12\xef\x7e\xce\x47\xda\xf3\xb6\x63\x13\x8a\xa2\x84\x45\x97\x85\x76\x95\x5c\xcb\x26\x1c\x31\x6b\xd8\xe7\xfe\xe7\x39\x61\xe1\xb3\x87\xac\xb3\xeb\x6a\x19\xac\x5f\x1e\x6d\x17\xb3\xc7\x8b\x50\x73\x74\xe5\x81\x63\xdd\x87\x09\xef\x6d\x25\xa5\xd8\x5b\x4f\x31\x78\xf8\xd8\x91\xf7\x44\xfe\x35\x06\x56\x0e\x79\xdc\xb3\xa6\x6c\x23\x78\x56\x8c\xf3\x70\x89\xa9\x11\xcc\xea\x66\xca\xc7\x75\x1e\x21\x7c\x1e\xd4\x34\x74\x3e\xe8\xcf\x20\xbf\xee\x99\x7c\x33\x8f\x19\xa1\x50\xd3\x55\xfd\x18\xbb\x12\x61\xb5\x71\x77\xf5\x47\x7e\x1e\x82\xc7\x13\xcd\xd5\xab\xc5\x25\x09\x9b\xa6\xc6\x17\x2f\xf5\x7d\x46\x78\xa0\xb9\x7a\x56\x26\xf1\x12\xc4\xb3\x32\xd3\xaf\xa9\x48\x12\xdc\x16\x6c\x4a\xdf\xfd\xad\x9c\x30\x77\x59\xc1\x5b\xf5\xb0\x12\xc2\xc6\x95\xae\x06\x6e\x8e\xa9\x84\x20\x2c\xfa\x24\x9c\xc9\x22\x18\xe5\x34\x18\x3f\xff\xbd\x8a\x60\x79\xf3\x56\x47\xd8\x06\x7f\x42\x0f\xcf\x6f\x29\x8e\xaa\xc5\x84\x51\xbb\xd0\xb2\xaa\xa2\x1e\x16\xd6\xf7\x3a\xdc\xd2\x7a\x7e\x9a\xfe\x07\xda\xae\x5f\x78\xc3\xb7\xa7\x98\xc0\x9f\x24\xd5\x38\x45\xbf\x9b\x81\xac\x49\xf0\xa3\x9c\x96\xdb\x0c\x82\x52\x0b\x3c\x6d\x1a\x0e\x12\x02\x8e\xfe\xe8\xd9\xe9\x9a\x47\x10\x98\x31\x2d\xda\x5b\x32\x96\xc1\x71\xb5\x6d\xa6\xe7\xcf\xf2\x12\xf8\x25\x44\xbd\x44\xad\xee\x31\xc8\x1f\xdf\x56\xf3\x38\xf2\x1e\x83\xa3\x5c\x97\x04\xac\x23\xee\x12\xda\xe6\xbd\x96\x95\x53\x7c\xcf\xe0\x65\x36\x57\xc2\xdf\x62\xfb\xd6\x6d\xf9\x6a\xad\x2c\x02\x71\xde\xd8\x70\xdb\xa8\x94\x70\xe6\xf3\xa9\xe5\x59\xfd\xdf\x18\x0c\xd6\xae\x5c\x58\xe9\x9a\x4b\xd8\x16\xb0\x41\x7e\x62\x45\x21\x83\x27\xb7\x27\x56\x34\xf7\xd4\x12\x5a\x5c\x1f\x3f\x7b\xd6\x50\xc4\xe0\x6c\xeb\xb2\xe4\xb6\x37\x79\x0c\xce\x4f\xd7\xde\x71\x97\x2d\x8b\x81\xfe\xa2\xeb\xa3\xcb\xb3\x9f\x32\x58\xfc\xa7\x31\x61\xac\xdb\x9f\xa0\x29\x30\xf1\xee\x40\x99\x3c\xc1\x61\x41\xad\xdb\x2f\xc3\x02\x06\xaa\x92\xc3\xbb\x3a\x97\x85\x11\x6e\x56\x4e\x5b\x1d\xae\x76\x88\xc0\x68\x8e\x1f\x9d\x31\xb9\xe3\xf8\x9c\x34\xa8\xfc\xba\x5b\x94\xe0\x93\xfa\x73\xeb\xec\xee\x78\x06\x76\x63\xf3\x1e\x3d\xae\x7c\x4e\x30\x7a\xe7\x3d\x7b\xa6\xe8\x73\x42\x5f\x84\xa0\x6b\x52\x45\x3a\xa1\xbd\x48\xb7\x46\x0d\xb5\x0c\xf8\xae\xff\xba\xcf\xfb\xac\x80\xc1\xef\x3e\x45\xa5\x69\x21\x49\x04\x97\x67\x89\x59\xe7\x24\xa2\x18\xec\xfb\xe4\x7a\x5c\x22\xd0\x96\xc0\x9b\xe6\x37\x4f\xbf\x69\x1a\xe1\x70\x92\xaf\xde\x50\x8b\x0e\x41\x8a\x3d\xfb\xf4\xae\x6b\x86\xff\x94\x70\xa5\x6b\xf3\x17\xbc\x13\x20\xa8\x15\x97\x2e\x5b\x8e\xd9\x84\xae\x43\x5f\xb5\x07\x8a\x56\x12\x86\x17\xf4\x6e\xb8\x51\xbc\x82\x90\x7d\x54\x7e\x4f\xe0\xb6\x7a\x06\x2d\x75\x8d\xc7\xa6\xc7\x36\x33\x90\x97\x7a\xa4\xe6\xdb\xb1\x94\xe0\x73\x74\x6b\xe9\x31\x9e\x56\x16\x0e\x9c\x53\x6f\x74\xe0\xd8\x4c\xb8\x38\x57\xe8\xbc\x67\x6b\x26\x21\x6b\x5e\x56\xc8\x1d\xd1\xdb\x0c\x8a\x8f\x44\x2d\xc2\x8e\x01\x16\x36\x77\x39\x7c\x2e\xfb\x78\x83\x30\xc6\xd6\x6c\xec\xc5\xee\x42\x40\x2b\xa7\x55\xec\xb5\x2f\x2c\x18\xea\x4a\x2e\xb6\xf5\x91\x26\x9c\xfa\x32\xe5\x4c\xc3\x5e\x7f\x42\x71\xdf\x36\xbd\x58\xc1\x13\x04\x81\x42\xb5\x0b\x1d\x9d\xd1\x04\xfb\xf3\x22\xd1\x6b\x7e\x1a\x11\x24\x71\x2c\xca\x38\x4d\x89\xf0\x2c\xc7\xbe\xed\xb3\xa6\x06\xe1\xb0\x1b\x57\xbb\x4a\x42\x16\xe1\xd8\x83\xc2\xa5\xd7\x56\x67\x11\xe4\x7e\xcb\x71\xd6\x5e\x5a\x42\xa8\x4b\x1d\xee\x1a\xbe\x56\x43\x78\xa8\x55\x90\xc8\x77\x23\x81\xc0\x9b\xf5\xe9\x5c\xd7\x14\x71\x02\x97\xc5\x53\xcd\xbd\xbf\x4d\x08\x61\x4d\xdb\x76\xe8\x9f\x34\x27\xc8\xfa\x29\x3f\x1b\xe7\x61\x11\x56\x8d\x49\xbc\xbc\xbc\x3f\x9c\x50\x1d\xa4\x95\xfe\x82\x3d\x94\xa0\xf0\x62\xbb\x74\xa6\x57\x36\xe1\x91\xd0\xda\x75\xa7\x5e\x27\x10\xe6\x49\xe7\x98\x7d\xfd\x7c\x80\xf0\xe3\xfc\xf0\x58\xb2\xcb\x6d\x42\x22\xdb\xd7\xf7\x1c\x73\x0b\x08\xaa\x7c\x97\x04\x37\x32\xcf\x18\x54\xdc\x95\xc8\x2d\xe5\x29\x67\x60\x5e\xe3\x93\xae\xf7\x2c\x9f\x70\xab\xa7\x79\x73\x73\xe0\x1b\x06\x9e\x85\x87\xb4\x59\x93\x9f\x31\x42\xe1\x4f\x31\xdb\x46\x42\xed\x9c\x4f\x4f\x82\xa8\x8d\x41\x56\x55\xd7\xa2\x2f\x7f\x32\x19\x7c\x9e\xf0\xfa\xf4\x5b\xf8\x01\xe1\xbd\xeb\x22\x25\x05\x07\x63\xc2\xcc\x2b\xaf\x63\xa6\x7e\x5f\x4b\xe0\x57\x8a\x2b\x98\xbd\xc2\x8e\x90\x39\x3f\xe9\xca\x33\xf3\x15\x84\x21\x47\x54\x2a\x5f\x9b\x43\x58\xbd\xe8\x5e\x97\x47\xb6\x3b\x41\xf8\xa6\xfe\x99\x54\xbd\x3c\x06\xc9\xdf\x5f\x9f\xdf\x79\x78\x1a\x61\x56\x9c\xc4\x95\x2c\x41\x57\xc2\x8f\x56\xf1\xd3\x77\x22\x76\x10\x38\x5e\x0c\xde\xe8\xdd\x57\xc1\x40\xe4\xe9\x8d\x17\x3b\x34\x1f\x32\x38\x33\xf4\x5b\xda\x29\x23\x9b\x41\x6f\xce\xed\x43\x89\x0a\x23\x2c\x3c\x3f\x60\x55\xad\x5f\x75\x9b\xa0\x4e\xba\x91\x8b\xd7\xf8\xfd\x03\xbf\xe3\xfc\xb7\x36\xb1\xab\x13\x16\x5c\x2f\x49\x99\x37\x9c\x4e\xd0\x8d\x5d\xbf\xe2\xca\x06\x11\xc2\xbc\xa7\x1a\x4a\x0b\x8d\x33\x09\x6b\xca\xcd\x56\xb1\x6d\x55\x21\x0c\x72\xfe\x58\x3c\xfb\x89\x34\xc1\x20\x34\xc0\x44\x55\xc4\x90\x90\xd6\x1c\xe2\xc2\xb5\xe6\x30\xe1\x87\x5a\x85\xa6\xc4\x82\xed\x84\x25\x97\xec\x2f\x71\xed\x1f\x60\xe1\x6a\x86\xa4\xff\xb7\x91\x53\x84\x8f\xdf\x25\xb6\x7f\x39\x78\x92\xe0\xed\x4e\x6a\xef\xad\x77\x10\x54\x02\x2b\xa6\x9e\x9b\x92\xc3\x40\x7b\x47\xd7\xaf\x7b\xad\x26\x84\xab\x71\x21\xdd\x5f\x86\x3c\x19\x6c\x35\x7d\xbf\x2d\xa8\x2d\x96\xc1\x6f\x9d\x6b\x09\x1c\xa5\xfb\x09\x0b\xf8\xea\x2a\xf5\x2a\x8c\x09\xf3\x1c\xdf\xa9\x7f\x9b\x1d\x4c\x18\x3e\x3b\xb6\x6d\xb7\xc3\x5c\x06\x48\x97\xf0\x18\xba\x99\x47\x38\x1a\x6f\xd5\x90\x55\xea\x41\xe0\x9a\xa5\xa1\x5f\x12\x77\x82\x20\x5c\xb5\x24\x3f\x45\x63\x03\x61\x44\xa5\xe7\x91\x98\xf2\x2a\xc2\x3e\x95\xc6\x0a\xde\x8c\x7c\x42\xf3\xd5\xfc\x80\x8a\x4b\xe1\x84\x1f\x1b\x5d\x1a\x34\x4a\x6b\x09\xda\xfb\x82\xc4\x2d\xd5\x1a\x09\x0d\x5b\xf6\xce\x8f\x69\xbb\x48\xb8\x22\xdc\xdc\xd6\x33\x5e\x44\x10\x4b\xc4\xf3\x58\x5f\x15\x82\xc3\xb3\x74\x51\x4f\xae\xcb\x84\xf5\x4a\xca\x92\xf5\x7f\x22\x08\x6e\x05\x11\x17\x94\xa2\x9e\x13\x0e\x1c\x8a\x3d\xb0\xd4\x26\x8c\x41\x93\xdc\x04\x63\x1a\x9a\x4c\x58\xa6\x15\xff\x5e\xd7\x35\x9c\x70\xb9\xe5\x8b\x26\x7b\xf4\x29\xc2\x50\xf3\x30\xdf\xdb\x58\x53\xc2\xa9\xae\xa2\x5d\x9e\xa6\xce\x84\xe2\x85\xa7\x1d\xd4\x83\x23\x08\xba\x73\x4f\xbc\xf9\x99\xfd\x84\x90\x9e\xa6\xb3\xe2\x30\xdf\x5e\xc2\x87\x84\x71\xc1\x81\x99\x05\x84\xcd\x1e\x1c\x6d\x07\x24\x32\x08\xdf\x0d\x52\x9f\x76\xec\x55\x20\x24\x9f\xda\xe8\x54\x50\xb9\x94\xb0\x9b\xe3\xf2\xc5\xdb\x3c\xf7\x98\xff\xb0\xbd\xc0\x90\x2f\x3a\x07\x2c\x38\x3c\x7a\xb0\x39\x28\x47\x90\x10\x11\xfa\xa7\x60\xc9\xf0\x63\x06\xce\x07\xb7\x9f\xef\x57\xe2\x23\xcc\x91\xf8\x7e\xaa\x29\x95\xc9\xc7\xba\x9c\xba\x0e\x1e\xd1\x00\xc2\xe5\x0c\xef\x97\xbf\x5e\x39\x11\x38\xc7\x9a\x3f\x9c\x8c\xbc\x4a\xe0\x9c\xc6\x29\x93\xea\xd7\xc0\x80\x57\xc1\xb4\x22\xba\xc1\x83\x70\xdd\xed\x8a\xc8\xca\x39\xe6\x04\xb1\xa6\x48\xc3\xe2\xc7\x26\x84\x09\xb1\x5a\x55\xfe\x98\xe9\x0c\x86\xb7\xb7\x1b\xd1\x4b\x49\xc2\x4e\x15\xd1\xe3\xb5\xab\x55\xe9\xbf\x72\x6f\x46\xfd\xe7\xc3\x17\x9d\x08\x7f\x72\xa7\xfd\x0c\x5e\xe2\xf1\x4f\x39\xac\x54\x32\xf3\xe2\xe4\xf5\x22\x62\xc2\x86\x7f\x97\x75\x35\xa1\xd0\xac\xc9\x54\xe1\x72\x12\xe1\x26\x0b\xca\xa6\x46\x1c\x84\x4e\x76\x19\xe7\x4c\xdd\x11\x16\x4c\x7e\x8f\x85\x74\xdd\xe8\x67\xa1\x48\x3f\xd2\x51\x2d\xae\x9c\xb0\xd1\x0a\x5d\x5f\x27\x8b\x8a\xff\x9c\x9f\x3a\xf2\x7c\xf4\xff\x82\x83\xd0\xa3\x70\x5c\x66\x5b\x52\x24\xe1\xfe\x35\xfd\x8d\x36\x22\x9d\x0c\xd2\xa4\x4e\x7c\x31\x99\x2c\xd3\xb2\xc6\xce\xb5\x6f\x14\x21\x78\xa4\xee\x31\xb5\x78\xcb\x49\xb8\x75\xd6\x5f\x63\xe0\xf3\x19\x06\x11\x05\x7b\x9d\xa5\xe2\x24\x09\x5e\xae\x5b\x15\x47\x6f\xdc\x23\x70\x4b\x6f\x21\x73\x9d\x4e\xc2\xfb\xb7\xab\x6d\x2e\x9d\xf9\x49\x48\xf6\x5f\xf1\x70\xc6\xf6\x3f\x84\xab\xad\xfb\xb2\xab\xe2\xd2\x08\xfc\xe7\xf7\xcd\x14\x39\x74\x91\x10\xf6\x7c\x4c\x60\x99\xf9\x39\x82\xfd\xcd\xa9\x1e\x33\xda\x5a\x09\xc6\x7d\xec\x5f\x3a\xa7\x76\x13\xee\xa8\xea\x47\x25\x0f\xe7\x13\x2c\xa6\x9b\x14\xaf\x10\x4d\x23\x28\xae\xbb\xa9\x7a\xc0\xc4\x9f\xe0\x63\x7f\xcf\xb2\xd1\xc4\x87\x01\xb3\xfc\x9d\x05\xdb\xe4\x05\xd1\xc2\x2c\x89\x6f\x17\x77\x3a\x83\xd9\x3b\x13\x7b\x27\x32\xe2\x08\x66\x32\x87\x73\x77\x4c\x8f\x22\x9c\x5b\x7d\xa3\x86\xf3\x79\x31\x61\xa7\x6b\x58\x43\x8a\xf6\x12\x82\x6c\x6e\xb7\x67\x8f\x9f\x00\x81\x63\x73\xa5\xd0\xfc\x76\x47\x42\xef\xbc\x48\xa7\x93\x9a\x27\x09\xc9\xba\x83\xe2\x07\x70\x87\xa0\xde\x78\x3f\x47\x66\x93\x35\x61\xbd\x89\x6b\xb5\x92\xa1\x13\x41\xe0\x81\x9c\xfe\x9a\xbe\x28\xc2\x91\xa7\xdd\x2b\x1c\x5b\x3d\x08\xd2\x53\xd7\x7f\xbd\x21\xe6\x40\xb8\x75\x65\x67\x4f\xc0\x20\x8b\xb0\xd4\x57\xe3\xc3\xc1\x5f\xbb\x18\xec\xf9\x3e\x45\xf0\x07\x82\x09\xa5\x9b\x1d\xdb\xb9\x54\xfd\x09\x87\x79\xe9\xe3\x97\x3f\xf7\x08\x3b\xb3\x06\xd6\x7c\xe2\x73\x22\x58\xf1\x84\x36\x29\x26\xec\x24\xdc\x2e\x9d\x68\x19\x88\xb8\x4c\xf8\xe1\x66\x7a\x39\xb2\x21\x8a\xe0\x4a\xac\xba\x4f\x4b\xbe\x12\x16\xce\x7d\x7d\xcd\x23\xeb\x0b\x41\x29\xae\x62\x73\x57\x71\x3d\x41\x3e\x5a\x6f\x5a\xc2\xcc\x7b\x04\x6f\xd5\x67\xd6\x29\x6a\xf7\x19\xf4\xaa\xcf\x96\x5d\x24\x99\x4c\x78\x78\xfb\x73\xcf\x9a\x4f\x7a\x84\xe6\xb1\xae\xbc\x22\xc9\x1e\x16\xf8\x17\x57\xa5\x5f\x29\xda\x4c\x48\x98\x99\xe1\x6a\x7b\x64\x84\xf5\x1f\x1c\xdb\xc7\x7f\x4e\x1f\xaf\xcb\x47\xd8\x9d\xc4\xac\x11\xfd\x93\x84\x0d\x3d\xf6\xce\xd6\xaf\x0b\x18\x1c\x9e\xad\xbc\x2b\x71\x63\x3e\xe1\x26\x5f\x9e\xb9\xfe\xb7\x32\x06\xcd\xc6\x09\x9b\x4a\xc3\x0b\x09\xf5\xfa\x1b\xda\x43\x7c\x73\x08\x0e\xb3\xde\xbd\x92\x0d\x2e\x25\xbc\x96\x35\x18\x4a\xf8\x5c\x4c\x10\xce\x1f\x12\xbb\xce\x5e\x42\x80\xbb\xf6\xd0\x1b\x3c\x21\x58\x9f\x52\x9a\x9f\xf2\xa3\x88\x41\xff\x60\xfc\xdc\x61\xcf\x44\xc2\xa7\x0c\x7f\xb3\x2c\x61\x63\x82\xf3\xf8\x76\xad\xef\xad\xae\xff\x0b\xcf\xfa\x7f\x4e\x75\xa9\xdd\x41\x48\x7b\xb2\x5c\xe8\x67\xc4\x71\xc2\xa8\xc0\xe3\x27\xeb\xbc\xa4\x08\x8f\x76\xf0\x6f\x9c\x36\xe7\x1d\x03\xa7\xe8\x76\x67\x7a\x3e\xb9\x9c\x3c\xde\x56\x65\x27\x98\x47\x58\x75\xfa\x1e\x37\xb7\x1d\x0f\x81\xcf\xc6\xce\x69\xfc\xa1\x29\x21\xae\x5f\x72\xc1\x15\x97\xbd\x84\x1b\x81\xee\x7c\x86\xac\x52\x06\xba\xac\xfb\x39\x7f\x47\x41\x43\x1c\x65\x4d\xe2\x19\x2c\x38\x1d\x09\x52\xb6\x71\x8b\x22\xb4\x9e\xca\x09\xf4\x69\xaa\x25\x94\xcd\xfc\xe5\x70\x7a\x60\x19\x81\xff\xf4\xc4\xd5\x8a\xc0\x40\xc2\xca\x2c\x4e\x9b\x03\x66\x62\xff\xe0\x7a\x74\x7a\xe5\x39\xf3\x6b\x84\xcb\xd1\x9e\xe7\x94\xf9\x57\x11\xd6\x34\x36\x86\x87\xee\x7c\xc2\xc0\xad\xf6\x3c\xdf\xb2\x3f\xe7\x09\xcc\xfd\x1a\x09\xa5\x4d\x71\x84\xce\xeb\x79\x46\x3c\xa2\x11\x04\x9b\x43\x25\x1f\x02\x3e\x1f\x27\x1c\x13\xfa\x94\x1e\x54\x61\x4b\xd0\x36\x3f\x3e\xa3\x9f\xed\x1e\x03\xa1\x4c\x37\x5f\xab\xd7\x4f\x08\x16\xc5\xec\x86\x9b\x77\x98\x12\x3a\x59\x3e\x95\xd4\xb4\x82\xe0\x61\x13\x2c\x7d\x60\xf5\x45\x06\x52\x7a\x63\x76\x3a\x21\x37\x09\xfb\x9f\x27\xde\xe1\xe9\xdd\x48\xb8\x7e\x09\x42\x11\x3f\x1c\x08\xda\xb3\x2a\x85\xef\xa7\x6d\x25\x7c\xd6\x3b\xf6\x78\xa1\x98\x02\xc1\xeb\x68\xdf\xcc\x0e\x9d\xdf\x2c\x1c\xab\xc9\x89\xf7\x9c\x45\x84\xa5\xdf\xb3\xed\x79\xf7\x07\x11\x78\xa4\x37\x77\xfa\x3c\x9e\xdc\x91\xe8\x8d\xcd\xcb\x87\x0c\x41\xf6\x40\xe7\xa1\x93\x19\x3a\x84\xa1\xd9\x0b\x38\xcd\x42\xcc\x09\x25\xb9\x77\x25\xf5\x5a\x16\x10\xee\x09\xf4\x5b\x7e\x7d\xa2\x47\x98\x95\x6c\x68\xb8\x30\x3d\x83\x81\x52\xaf\xf3\xc7\x37\xdb\x9d\x08\x7b\x04\x32\x84\xee\x95\xbf\x20\xa4\xcd\x4c\x6b\x8a\xba\xb1\x9f\xe0\x15\x3c\x5e\x50\x3c\x7b\x0d\xe1\xde\x5c\xb6\xbe\xf5\xcf\xd5\x09\xd1\xec\x6c\x9c\x01\x5e\x05\x84\xdf\xdb\x74\x7c\x35\xeb\x8b\x08\x2b\x36\xc8\x1f\x12\x37\x50\x24\x78\xcd\x6e\xe1\xe5\xb3\x28\x26\x84\x7c\xf3\x74\x32\x58\x1c\xc7\xa0\xdb\x6b\x64\xaa\x92\x7d\x09\xc1\x67\xd5\x5d\xd1\x05\xa5\xd3\x09\x97\x3e\x85\x4b\xac\xb0\x34\x26\x24\x0c\x7c\xe3\x7c\xb1\x5c\x97\xd0\x53\x9f\xbc\xd6\x5f\x52\x8c\x50\xce\x3e\xef\xae\x7e\x8c\x21\x61\x97\xdc\xf3\x87\x0e\xc8\x65\xc0\x13\xeb\xb9\x3c\x62\xd0\x88\xfe\xc3\xa9\x80\x88\x80\x7b\x5f\x94\x09\x0e\x33\x27\x7e\x3e\x4a\xd5\x21\x98\xb3\x8e\xa6\x0f\xbd\x91\x20\xb0\x0c\x47\x7d\x54\xd4\x17\x13\x78\xb9\xb6\x2b\xca\xf5\x64\x31\xe0\x53\xec\x54\xdc\x6d\x39\x9f\x60\x3d\x78\x57\xba\xdc\x67\x15\x21\xbe\xe6\xa2\x84\xf1\x6f\x57\x42\xfc\xea\x73\xe6\xf3\x16\x1e\x27\xb8\x7b\xbd\xee\xfb\x9d\x9c\x49\x38\x7e\xb2\xe4\x83\xe4\x84\x06\xa1\x69\xd7\xb1\x58\xd3\xdb\x12\x04\xad\xca\x52\xab\x8b\xc9\x61\x04\xdb\x96\xfd\xa1\x4e\x6f\xc2\x08\x6f\x8c\x17\x8b\x83\xcd\x8b\x10\x5e\x24\xf9\x46\xc1\x4d\x8c\xb0\x41\xa7\xfa\x9d\xf4\x47\x5b\x82\x50\xdf\x46\x4d\x29\xb5\xed\x84\x82\x19\xba\xe2\x5b\x3d\x14\x08\x29\xd1\x7a\x11\x7f\x7c\x45\x08\x75\x65\xdc\x9a\x65\x8e\x9d\x2c\x9c\xf1\x0a\xba\x18\x69\x7a\x84\x90\x58\xd6\xbd\xd9\xb6\x26\x91\xb0\xa5\xde\x2b\x76\xc3\xf7\x46\x16\xa4\x6a\xfc\x39\xbe\x7a\x73\xd0\x7f\x70\x12\xbc\x62\x33\x73\x0e\x1f\xa1\x77\xd4\xdf\x23\xee\xb8\x3e\x61\xd9\xb7\xe8\x2f\x81\x42\xa2\x04\xaf\x4e\x03\xae\x6f\xec\x0f\x18\x70\x9e\x79\xbe\x90\x3d\x80\x9b\xa0\x51\x6d\xb9\x70\xd6\x5a\x0b\xc2\x02\x59\x03\xde\xe4\xd5\x3f\x59\x50\x9d\xf9\xf3\x04\x67\x82\x25\x41\xb2\x88\x95\xcf\x72\x2d\x63\x10\x79\xf2\xc7\xc9\xd9\xb3\x36\x12\xb8\xb4\xd6\x7a\xb9\x09\xe8\x10\x0e\x6d\xc8\x76\xb6\x57\x12\x27\xbc\xb2\x15\x6d\x93\x2c\xdd\x44\xc8\xad\x9a\x72\x7a\xad\xcb\x7d\x06\xf1\x17\xab\x9d\xbf\x2c\x7d\x45\x38\x3d\xa8\xaa\x58\xe9\x95\x4c\xf8\x30\xf4\xc5\x9d\x2b\xb4\x82\x50\x98\x15\xff\x25\xc1\xea\x39\x61\xed\x2e\xef\xde\x62\x51\x5b\xc2\xcc\xc7\x53\xb6\xed\x7b\x1e\x41\xd8\x78\x44\xae\xc3\x4a\x36\x94\x81\xa9\x55\xf0\x26\x8e\xb0\xe5\x04\x95\x94\xb7\xb6\x0a\x2a\xa9\x84\x92\x2a\x21\xb1\x76\xde\x4f\x2c\xb8\x1f\x3f\xee\x59\x3e\xea\x4f\xb8\xf4\x20\xe9\x5e\xec\x39\x6b\xc2\xed\x02\xf3\xa8\x50\xb6\xfb\x34\xda\x94\xd1\xa2\x5e\x51\xcc\x20\x26\x4d\xf6\xf5\xa6\x79\x2f\x09\xec\x3f\x12\xc9\x7d\xe5\x59\x42\xad\xda\x3b\xb1\xa0\xf9\xde\x04\xd1\x4d\x77\xab\xfa\x53\xad\x08\xb5\x46\x07\x3f\xe7\x87\x9d\x26\x3c\x34\x3b\x58\x21\x71\xd8\x8f\x41\xf6\xc6\xf6\x47\x1f\x1b\xd7\xd0\x7f\xb8\xa9\xec\xa4\x93\x70\x6b\x21\xa1\x76\xf0\x69\xd4\x9c\x76\x27\xc2\xcd\x19\xc6\x6e\x69\x2e\x31\xff\xa0\xcd\xbc\xc2\x53\xbe\x37\x98\x60\xb0\x3d\x35\x9d\x3b\x75\x3e\x41\x62\x7d\xb2\x70\xa3\xbb\x38\xa1\x41\xd3\x32\xd1\xee\xe6\x8a\x7f\xe0\x68\x75\xe1\x17\xfb\x66\x4d\x42\xbb\xdd\xb1\xbb\x5b\xfa\x4c\x08\x43\xd9\xdf\xde\x9d\x36\x2f\x20\x0c\xbd\x7e\xa3\x17\xfd\x4b\x80\x50\xb9\xdd\xc2\x7a\xe8\xb3\x22\x61\x34\x5d\xf5\xe0\xd8\x2b\xee\x7f\x20\xa5\xb5\xe9\xd0\xf4\x95\x5f\x58\x10\xba\x15\x7a\xfd\xcf\x0f\x36\x42\xa6\xac\x7f\xdd\x93\x83\xc9\x04\x45\xdf\x35\x41\xcd\x96\x31\x84\x52\xa5\xf9\x47\x87\x0e\x1d\x27\x08\x98\x14\x67\x70\xb8\x5a\x12\xa6\xf5\xab\x5a\xbe\x4c\x52\x24\x18\xeb\xf0\x3a\x9e\xd1\xb2\x27\xe8\xf4\x49\x6d\xfa\xd8\x78\x9f\xa0\x75\xfb\xb5\xe4\x3c\xcd\x40\x06\x37\xc5\x0f\xac\x8d\x97\x14\x24\xb0\x09\x87\x74\xf1\xf6\x9c\x22\xf4\x5e\xdc\x2b\x93\x92\x2b\x4e\xe0\xd6\xf5\x53\xb9\xeb\xa1\x4a\x28\x39\xca\xf6\x49\xb8\x7c\x98\x85\x8f\xd7\xf6\xaf\x56\x29\xb2\x22\x6c\x16\xbb\xfb\x59\x95\x53\x9d\xb0\x3e\x6e\x0a\x5f\x5a\x52\x3e\xe1\xc3\xaf\xa8\x7b\x8f\xd7\xbd\x60\x70\xf3\x8f\xec\xc2\x92\x1b\x89\x84\x53\xaf\xe4\xaf\xf4\x4c\x1c\x24\x48\x3c\x4b\x1b\xce\xdb\xa4\x4e\x50\xf0\x1e\x12\xb1\xf3\x8b\x64\x20\xd4\x63\x9d\x26\xae\xaa\x42\x88\xe8\x7b\x2e\x77\x59\xf4\x0e\x61\x6e\x3e\xbd\x3f\xa3\x9d\x4b\xa8\x31\x2c\x12\x48\x58\x69\x48\xf0\x76\x98\xe7\x39\x6e\x5f\xcc\xc2\xa0\xf6\x8a\xe6\xa2\xce\x29\xf4\x3f\x50\x1a\xac\x59\x11\x2f\x3d\x83\xa0\x9b\x31\x7f\xcb\xe6\x20\x22\xec\x2d\x90\xbf\x52\x25\xa6\x42\xf8\x98\x79\x61\xaf\xb0\xa7\x28\xc1\x7b\x17\x77\x65\xa8\xa2\x23\x21\xa8\x2a\x6e\x6c\x4a\xa6\x1f\xc1\x44\xa2\xca\x44\xec\xbe\x25\x21\x75\xf5\xf5\xf0\x6e\x1b\x75\x42\x9e\xbe\xf9\xae\x6f\x01\x53\x09\x4b\x96\x2e\xfb\x1a\xd9\x93\xc0\xe0\x9e\xfb\xa7\x94\xc1\xb5\x05\x2c\xf4\x9f\xb9\x24\x3d\xeb\x44\x30\x83\x5d\x6f\xc1\xdf\x5f\xea\x42\xe8\x1a\x7a\xf1\xa2\x22\x48\x8b\x20\x1a\x98\xb5\x48\x36\x2c\x80\x60\xb9\x47\xb9\x8d\xf9\xc2\x4f\x30\x1f\x32\x3c\x2f\x2f\x9b\xc8\x80\xcb\x67\x69\x92\xc9\x0c\x6f\xc2\x56\xde\xd6\x0f\x1e\x62\x27\x09\x65\x8b\x3e\xb5\x99\x2f\x7d\x93\x8f\x73\xaf\xb7\x98\x70\xce\xaa\x60\xe0\x3f\xce\x67\xb7\xc4\x67\x16\xe1\x63\x07\xbf\xfa\x96\xa2\x12\xc2\xab\xee\xe7\x7d\x75\x77\xcc\x08\xbb\x3e\xdd\x3b\xc8\x4a\x8d\x27\xf8\x64\x1c\x91\xf9\xfe\x6e\x27\xe1\x6e\xd3\xdc\x65\xf1\x67\x0d\x09\xf3\x9d\x9d\x7c\x5d\xdc\x7a\xf3\x11\x68\x5e\xe5\x30\x16\xb1\x97\xd0\x61\x2b\xa2\xe3\x31\x64\x4d\xc8\x6a\x48\xe5\xdf\x54\xfc\x86\xc1\x93\xfa\xc7\x3a\x4e\x0f\xee\x11\xe2\xbe\x57\xaf\xf8\xd5\xe9\x42\x68\x72\x9d\x5e\xea\x3d\x79\xf8\x2d\x62\x97\xf2\x76\x6e\x73\x20\xcc\x2d\x3d\xfc\x2e\xea\xcd\x22\xc2\x22\xeb\xb0\x61\xf9\xf2\xd9\x84\xb9\x9e\x1b\x6c\xf2\x76\xb3\x13\xee\xb0\xd5\x95\xef\x2b\x14\x27\xf0\x98\xf4\x46\xdb\xe9\x28\x13\x9a\x47\x07\x06\x3d\xec\x0b\x08\xdc\xb2\xd3\x33\x3d\x42\x1e\x12\x78\xc5\x72\x66\x36\x24\xd6\x11\x4e\xf7\x1d\xf4\xd0\x72\xfb\x4a\x30\xdd\x11\xa7\x77\x6e\x53\x31\xa1\xdd\xfb\xbd\x5c\xf1\xdb\x52\x06\x79\xbc\x02\xa1\x95\xa1\x8f\x09\x0b\x47\x9a\x77\xdc\x35\xc9\x20\x7c\xe2\x68\x8d\x8f\x5a\x55\x41\xe8\x9c\x95\x32\xdc\x3f\x52\x45\x38\x58\x3e\xeb\x8a\xaf\x49\x26\x61\xbf\x0b\x4b\x72\x91\xee\x55\x42\x56\x6b\x9e\x44\x61\xea\x65\xc2\xdc\x25\x67\xdb\xe7\xe6\x46\x31\x08\xda\xe6\xc4\x23\x17\x50\x4b\x58\x7e\x35\xd1\xef\xa7\x50\x20\x61\xfd\xb7\x85\xc7\x2e\xbd\xf7\x21\x0c\x0a\xcf\x0f\xe5\x73\x76\x22\xa8\x8d\x05\x69\x5d\xec\xdb\x46\x38\x73\xd0\xa7\xbd\xa2\xe3\x2a\xa1\x4e\xf3\x7e\x6e\x7a\xfe\x55\x06\x13\xdf\xbf\xa5\x1f\x9a\x6d\x4a\x78\x6e\x7b\x37\xd0\x37\x77\x07\xe1\x33\x37\x2b\xf9\x64\xb8\x22\xe1\xb2\x75\x6d\x95\x41\xe4\x30\x0b\x72\xfc\x11\x4f\x74\xf7\x88\x11\x16\x71\x8f\xae\x77\xf3\xdc\x4b\xd0\xf8\xa6\xaf\xa6\xbc\xda\x98\x90\x1b\xb4\x5b\x64\xf9\xc0\x03\x06\xc6\x7b\x73\x46\xcf\x73\xa9\x12\xba\x4c\x25\x33\xd8\x24\xe4\x09\x83\x97\x3f\xbb\x59\x7d\x49\x63\xe0\x9a\x7c\xfe\x53\xd6\xae\x41\x16\x8e\x3a\xfd\x30\xd5\xb9\x39\x83\x90\x32\xcc\xd1\x97\xfb\xa1\x8d\x85\x71\x37\x79\x6b\x07\x1f\x05\x42\xde\x96\xce\x57\xfd\x06\xdb\x09\x33\xc5\x12\xee\x09\xbf\xd3\x21\x1c\x61\xec\xb8\xef\xfe\x5a\x47\xd8\xc5\xb5\x42\xf3\x85\x87\x12\xe1\xf2\x40\x6a\xff\x50\xc1\x2e\x82\xdc\xcc\xcd\xd2\x9f\xdd\x13\x18\x94\x27\x2f\xdb\xaa\x35\x61\x4a\x78\xa4\xf2\xe0\x3e\x7b\xc1\x6e\xc2\xdc\xd9\x99\xf6\x7c\x3d\x67\x08\x4f\x57\x4b\xdd\xdd\xa3\xb8\x9b\x50\xb2\xdd\xe0\xc2\x7d\x7e\x76\x82\xe9\x83\x2d\xe1\x87\xe6\x9f\x23\x98\xfc\x58\x79\x5d\xd5\x2f\x99\x70\x3b\x38\xd7\xdb\xcd\xb0\x91\xd0\x9d\x67\xf0\x6c\xd1\xab\x48\x82\xe3\xfa\xa9\x7e\x1b\x0e\xc6\x12\xac\xa2\xf2\xb5\x7e\xf9\x86\x12\x62\x7f\x05\x35\x2a\xed\xdc\x3e\xf9\x1a\x3c\x36\x62\xbd\xc0\x9e\xb0\xfc\x8d\xc7\x86\x9c\xa3\x16\x84\x94\xef\x5d\x23\xa7\xf4\x74\x09\x6b\xd7\x37\xee\x1e\x4d\x5d\x46\x38\xcd\x1e\xe9\x6e\x3e\xee\x49\x28\xfd\xa0\xb6\xf4\xa0\x70\xe1\x3f\x65\xe6\x3a\xb3\xfc\x3b\x2e\x5c\x84\xd1\xdd\xd3\x97\x4f\x15\xb2\x22\xf8\x56\x1c\xbe\xa7\x27\x60\x49\x28\x79\xb2\x7e\xce\xfd\x8c\x69\x84\xb6\x19\x7a\xe7\x0f\xb5\x3a\x10\x42\x33\x2f\xef\x52\x5e\xa2\x47\xb8\x70\x58\x6b\xda\x22\xf9\x23\x84\x3d\xee\x73\xca\x5e\x2c\xf2\x24\x38\xcd\x48\x3e\xaa\x7e\xbd\xf9\x9f\x52\x3a\xff\xde\xd5\xe4\x1b\xce\x84\xe9\x73\x72\x14\x23\x12\xac\x09\x85\xaf\xd3\x84\x3b\xbe\xea\x11\x6a\x2b\xfa\x0f\x38\x58\xa8\x11\x34\xa6\xbb\xf0\xe8\xdc\x36\x25\xbc\x9b\xb5\x78\x93\xf7\xd2\x7b\x04\x2e\x09\x8d\xcc\xf5\x35\x9a\x84\x5f\x4d\x6e\x85\xb2\xaf\xac\x08\x5b\x4b\xd8\x76\x19\xc5\xcc\x23\xcc\x4f\x3a\xb1\xfd\xd3\xb6\xdf\x2c\xa8\x88\x7e\x8e\xde\xed\xb5\x96\x70\xb0\x62\xe1\x55\x99\xca\x40\x42\x91\xcf\xfa\x59\x4b\xa7\x3b\x13\x0e\x6b\xf1\x6e\x0a\x38\x52\x9d\x8f\x98\xa5\x69\xc2\x9e\x51\xd1\x84\xc7\x6b\x5f\x95\x2f\x59\xeb\x4c\x78\xba\xb3\x6f\x8b\x9f\xca\x08\x0b\x27\x87\x12\x04\xed\xe7\xda\x11\x1a\x02\x5e\xb3\xbf\x52\x3f\x45\x68\xee\x69\x0f\x31\xb3\xd9\x47\xd0\xda\xd9\x2b\x7f\xf6\x81\x05\xc1\x35\x8e\x5f\xd0\x9a\xd3\x87\xd0\xb5\x31\x2e\xac\xea\x95\x2b\x61\x40\xa7\xb6\xc3\xf1\xc4\x01\x42\x98\xba\xc5\xe2\xb7\xaa\xb1\x84\xa1\x57\xaa\xee\x67\x26\xee\x13\xde\xce\xda\xb6\xbe\xa0\x63\x37\x61\x65\xfd\x9b\x1c\xf6\x57\xaf\x19\x3c\x7e\x7a\xf1\x85\x5a\x72\x3c\x83\x06\xc7\x95\x8d\x79\x93\x23\xb6\x5d\x07\x6d\x44\xed\xca\x58\xf0\xdc\xdb\xa9\xf2\xdb\x53\x88\xe0\xb4\xcb\x46\xb2\xaa\x74\x39\xe1\xd1\x82\x17\x7c\xd2\x42\x7c\x84\xe3\xdf\xf5\xb4\x0c\x1f\xee\x9a\x7c\x60\xdb\xab\x5a\x97\xe8\x12\x96\xad\x92\x49\x65\xcd\x3a\x48\x70\x50\x35\xdb\x3f\x67\xf6\x79\xc2\x4e\x09\xdc\x5e\xbb\xc3\x9a\xc0\xad\xbd\x4d\xc4\xf1\x8b\x1d\xc1\xf1\x23\xfb\x9b\xa8\x3f\x81\x0c\x34\x56\x9c\x09\xd0\x28\x8c\x24\x94\x79\xcd\xba\x9a\xad\xd0\x4c\x78\x26\x1a\xbb\x67\x49\xca\x57\x82\x34\xec\x7a\x22\xdb\x23\x09\x76\xfa\x4b\xfa\x1a\xeb\xce\x11\xa6\xd2\x50\xf2\xe7\x37\xca\x84\x96\x65\xfc\x5f\x96\xfc\xfa\xc3\xc2\x8f\xfb\x63\xb9\xa9\xdf\xdb\x59\xe8\xbe\xce\x93\x57\x32\xe7\x19\xc1\x2e\x79\xf7\xe6\x8d\x7e\xd3\x09\xd6\x6f\x9b\x16\xae\x69\x75\x22\x1c\x19\x9f\x6d\x52\xf4\x6d\x33\xe1\xe1\x96\x67\xa6\x53\x3e\xdc\x25\xe8\x57\x66\xfc\x91\x12\x52\x21\x9c\x14\xe1\x7c\x39\x25\x5d\x8a\x90\xa3\xb2\xca\xff\xac\xbd\x39\x81\x37\xd0\xea\xa4\xb0\xea\x56\x82\x44\x5c\xe4\xca\x99\x3f\x94\x09\x17\x32\x17\x9c\xca\xce\x1d\x60\xa1\xd0\xe4\xae\x5d\xe1\x80\x05\xc1\x76\x4f\xef\x40\xab\x42\x39\x83\x3a\xab\x28\xa8\x2e\x71\x24\x44\x6f\x3d\xa5\xea\x31\xbd\x84\x81\x9d\xa7\xea\xa0\xfb\xff\x85\x0f\x3d\x66\xc7\xfc\x56\x1f\x23\x1c\xba\xac\xd7\x70\x27\x57\x8b\x50\x99\x37\x5f\x90\xf3\x49\x35\x61\x2b\x4b\xae\x33\xa4\xf5\x16\x61\xe5\x39\xfd\xf0\x84\xc9\xd1\x29\xb9\xde\x6b\x8f\x4c\x4e\x10\xa4\xa2\x7b\x2e\x34\x55\xaa\x11\xb6\x2d\xde\xb1\xf4\x04\xc5\x12\x2c\x96\x99\xcc\xcc\xaa\xf4\x23\x48\xd7\x26\x57\xce\x3e\x10\xc2\xe0\x6a\x64\xaa\x6a\xd3\x2d\x21\x82\xcd\xb8\xa1\x56\x83\xe1\x6f\x16\x9c\x36\xb5\x54\x25\x14\x19\x13\x04\x3a\xcc\xfb\x0b\x2e\x59\x13\x84\x6e\xbf\x6f\xe5\x51\x3b\xf6\x4f\xe1\xe2\xaa\x99\xbd\x82\xe7\x7b\x3e\xda\x17\xf8\x9c\xaa\x5e\x58\x4c\x78\xd7\x32\x76\xfe\xfa\x9c\x2f\x2c\x8c\xf7\x9d\x7a\x20\x3c\xa2\x4a\xe0\x71\x6c\x15\x8d\x19\x9a\x3c\x0a\x56\xf1\x7c\x0d\x9b\xae\x44\xc8\x68\x95\x3c\x79\xce\x77\x25\x21\x77\x6e\xcd\x21\xb7\x80\xe5\x34\xda\xe8\xcf\x2b\x15\xfa\x8c\x50\xb7\x6c\x24\x74\x55\xcc\x2d\xc2\xf2\xe5\x85\x76\xe1\x29\x93\xeb\x9d\x5f\x09\xf5\x26\xde\x25\x04\x78\xb5\xf6\x09\xd1\x71\xc2\x39\x53\x92\x8e\x77\x4d\x64\xf0\xc7\x54\xde\x6e\xa8\xca\x90\x30\xcd\x81\xcd\xfb\x92\xa0\x10\x41\xfe\xe4\x89\x8a\xec\xf6\xe5\x04\xbd\x3a\xe3\xfd\xc7\xeb\x2d\x09\xd6\x17\x39\x97\x9c\x4d\xd4\x27\x50\x6e\xd7\xb1\xec\x85\x4d\x84\xdb\x0d\xc7\x87\x79\x93\x2a\x08\xcb\xd3\x3d\xf7\x2e\x93\x29\x20\xec\x9f\xda\xa6\x51\xfc\xe2\x1b\xc1\xa3\xb6\x7c\x89\xb0\x50\x2d\x21\xb5\xf2\xd0\x9e\xc4\x55\xc5\x84\x17\x97\x3e\x86\xd8\xd6\x27\x11\xc4\x0c\x3b\xe2\xdf\x9d\x4f\x22\x54\xef\x76\xe8\x32\x9a\x9e\x42\x90\x2b\x3a\x57\xf8\xcb\x2b\x89\xc0\xb5\x2a\x77\x6d\x90\x51\x1c\xe1\x4c\xe7\x34\xc9\x59\x9c\xd1\x04\xe1\xea\x73\x8a\xfd\xfa\xfa\x84\xa8\x8d\x2f\x16\xea\xa4\xac\x20\x3c\x28\xd9\x20\x31\x26\xe8\xcd\xe0\xe4\xea\xe3\x6f\x15\x38\x74\x08\xc6\xbe\x53\x56\xea\x6b\x4c\x1e\x36\xde\x5e\x7b\x35\x84\xd4\x08\x3b\x46\x87\xff\x98\x66\x7f\x67\xa1\xe4\xd6\xd0\xab\x37\x51\xaa\x84\x9d\xdd\x97\x8e\x1e\x3c\xf6\x26\x1f\x57\x1c\x25\x0f\x73\x19\x9a\xd2\xff\x1f\x9c\x4f\x89\x76\xc5\xd6\x9f\xf8\x5f\xc8\x7e\x60\x88\x75\xcd\xb3\x09\x67\x37\x2e\x0f\x91\xe1\x39\x40\x10\x3f\x90\xf1\x72\x83\x2a\x0f\xe1\xfd\xbe\xa5\xfa\x2f\x1f\xf7\xb1\xe0\x9e\xf9\xf5\xeb\x9d\xb0\x6d\x84\x4b\xeb\xf6\xd9\x69\x0c\x9d\x24\x70\x36\x26\xf1\xcc\x78\xb2\x85\xd0\xbd\x23\xe0\xd1\x2c\x3d\x23\x82\x7d\xe0\x73\x9b\x73\xb3\x97\x12\x1a\x0a\x07\x0f\x89\x85\xf0\x13\x54\xa3\xc3\xe3\x2e\x54\xf0\x10\xa6\xb3\x7d\x1b\x3a\xff\xba\x85\x85\x59\x7d\x19\xf3\xef\x0a\xac\x26\x34\x87\xbe\xcb\xb4\x39\x66\x4a\x48\x34\x3e\x73\x86\x57\xe0\x01\x21\xe5\x57\xd5\xaa\xf0\x84\x78\x06\x1f\xcb\x23\x2d\x8e\x32\xe1\x84\xca\xdb\xa5\xea\x8b\x0f\x5f\x24\x18\x0c\x56\xba\xcd\x60\x33\x23\xbc\xe7\xba\xfe\x58\xa0\x4c\x94\x20\xbd\x23\xe0\x79\x4b\x68\x01\xc1\xe5\x2a\x8d\xe7\xd4\xc5\x12\x92\x6a\x34\xa2\xe6\x6f\xb0\x24\x28\x08\x5d\x59\xfa\x92\xc3\x8a\x30\x10\xf0\x76\x54\xe2\x29\x3f\x81\xd1\xdb\xbb\xed\xbd\x53\x30\x61\x6e\x3a\xcf\x5d\x7f\xd5\x46\x82\xaf\x6b\x5e\x40\xdb\x91\x12\xc2\x47\xc3\xb6\x63\x41\x17\xbe\x11\x5a\x25\x34\xe6\xb7\x4f\x96\x48\x3f\xe5\xfa\xf4\x04\x86\x60\xb8\xcc\x63\x9d\x9d\xf7\x81\x7f\x50\x6e\x9f\x59\xb1\x28\xc8\xea\x9f\x62\x92\xe4\x5e\x71\x26\xae\x98\x85\xf1\x17\x57\x77\xec\x11\x8b\x21\xb8\x3c\x5f\xff\x35\x7e\x21\x1b\x81\x3b\x7c\xfd\x82\xa1\x80\xcf\x2c\xcc\x53\xba\xe1\xa8\xb4\x6d\x2e\xfd\x87\x12\x59\x4e\x29\xb3\x59\x33\x08\xd1\x27\x54\x64\x95\x2e\x98\x10\x82\x55\x9e\x85\xee\x73\xba\xca\xa0\xf8\x8a\xcc\xc1\x94\xb1\x48\x42\x90\xb0\x69\xe8\x5f\x54\x74\x56\xfc\x10\x11\x0d\x24\x1c\x6a\x6a\x7b\xff\xa5\x3a\x98\xc1\x6d\xdd\x37\x57\x3e\x70\x5b\x12\xb6\xd7\xb5\x0b\x1f\x32\xdb\x4e\xe0\xbc\x33\x63\x60\xd9\x3e\x2d\x02\x13\x6c\xcf\x9a\x3f\xa6\x42\x78\x64\xf9\xb3\x32\x5a\x57\x85\xf0\x3e\x21\x44\xca\x41\x32\x9c\x70\x7c\xb1\xed\x2d\x95\x9d\x44\xf8\x3c\xb4\x34\x78\xdb\xec\x0c\xc2\x0d\x61\x1d\x1f\x31\x2d\x15\xc2\x65\xd6\x77\x56\xb8\xad\x11\x81\xdf\xf4\x73\xd8\xe7\xd0\x3d\x0c\xee\xc8\xcc\x3b\x30\xd3\x5e\x92\x70\x57\x66\x6b\xd6\xd9\xac\x40\x42\xb9\x5d\xe5\x71\xb3\x0b\x8e\x84\xd4\x59\x72\x53\x3f\xf2\x29\x10\x86\xcf\xf8\x1b\xa7\x06\xac\x24\x54\xab\x8b\xae\x94\xf1\xb7\x27\xd4\xfd\x89\x62\xcd\x7f\xc2\xff\x0f\x32\x9e\x0f\x5e\xcf\xe2\x8b\xcf\x87\x80\xfb\x96\xba\xc8\x66\x3f\x42\x48\xc1\x25\x77\xa5\x9a\x08\x06\xd5\x02\x86\x27\x0e\x85\x69\x11\x2e\x69\xc6\xca\x5e\x9d\xbd\x87\x50\x33\xba\x6f\x28\x2c\x47\x89\x90\x57\x62\x7e\xc9\xb1\x47\x82\x70\x3a\x49\xf1\x49\x7a\xf6\x18\x0b\x82\x1c\x1a\x6e\xaa\x23\x8d\xf9\x78\xa3\xb0\x3c\xe6\xe7\x94\xad\x04\x85\xb5\xc3\xc2\x68\xb9\xc9\x60\x9d\x2b\x3d\xfe\x5b\xac\x6d\xdb\x74\x25\x27\x5f\x20\x8b\x9e\x46\x1d\xb9\x64\xed\xca\x20\x95\xa3\xed\xa8\xc2\xf7\x53\x84\x2a\x31\x9f\x33\x1a\xf7\x9d\x08\x6d\xd2\xc5\xa9\xb9\xaf\x96\x11\x06\xba\xfd\xcd\xbc\x1f\x15\x11\xe4\x53\x7f\x6c\x50\xef\x76\x21\x64\x67\xb9\x0d\xc8\x5f\xab\x20\x5c\xd0\x78\xfb\x26\x66\x1d\xc3\x60\x2e\x97\xd9\xd4\x88\x33\x8e\x84\x11\xe1\x19\xcf\x05\xaf\x5b\x13\x4e\xd2\xee\x5e\xbd\x79\x0f\x09\x83\xaa\x81\x55\x63\x1f\x87\x59\x78\xa9\xfb\x6a\x53\xc3\xbc\x38\xfa\x0f\x4f\x78\x6d\xbd\xe3\x3a\x63\x09\x1c\xa6\xea\x77\xeb\x27\xcb\xc9\xe3\x9e\x17\x17\xfd\x36\x25\x2c\x93\xfa\x7c\x85\x3d\xcc\xfd\x9f\xf2\x7f\xa0\x75\xb1\x75\xea\xbb\x2b\xf3\x08\x4d\x7d\x89\xef\x06\xf8\xd2\x09\xc7\x1d\x7f\x0b\xee\xe7\x7a\x4f\xe8\xa8\x4f\x29\x52\x3f\xe3\x41\x38\xc2\x36\xb0\xe0\xa6\x60\x26\x81\x6b\x19\x9f\x16\x56\x5b\x12\xd8\x06\x6f\x69\xb9\xcf\xd4\x25\xcc\x5c\xdc\xe7\xd5\xa3\x26\x4c\x30\x1c\xaf\x0e\xff\xb5\xac\x90\x81\xe3\x53\x9e\x8e\x2b\x3e\x81\x84\xad\xee\x42\xc7\x06\xe4\x1d\x08\x79\xb3\xf2\x19\x87\xf8\xef\x2c\xfc\xea\xaa\x10\x9c\xfe\x6e\x13\xc1\xfa\xe9\xda\xf0\x97\x97\xda\x58\xff\x61\x5e\xa6\xf7\xfe\x9e\xe2\xdf\x2c\x28\x7b\xfe\x9c\xc2\xfa\x20\x42\xb0\x5d\x5e\x9e\xfc\x21\xe0\xef\x4f\x46\xc9\x8d\x54\xcf\xdb\x48\xe0\x28\x69\xb7\x4c\x5e\x70\x92\x81\xda\xb0\xe6\x96\x97\x87\x44\x09\xd3\xce\xb2\xda\xbe\xc4\xe7\x12\xc6\xbb\x53\x1c\x5e\x9f\xef\x63\x21\xc0\xfe\xf2\xd2\xef\xcd\x0f\x09\x1f\x46\x2c\x1e\x0f\xb9\x32\x84\xeb\x77\x5e\xdf\x74\x7f\xf0\x9c\xa0\xb8\xa5\xb2\x6a\xc7\x9e\x13\x04\x43\xc1\x66\x3b\xb3\x1e\x4f\x42\x78\xe8\xce\xf4\x45\x6d\x1f\x18\xa4\x2f\x6e\x7d\x53\x54\x60\x43\xb8\xca\xd3\x79\x74\xb4\xd1\x9c\xb0\x5a\xa8\xc2\xf3\xf5\x9d\x8b\x84\x12\x87\x06\xa7\x88\xb9\x5a\x84\xa2\xb7\x2e\xfc\xd2\xcb\x95\x08\x15\xcf\x19\x75\xe5\x83\x33\x09\x17\x67\x1f\x08\x59\x6a\xb7\x9d\xe0\x71\x6d\xb8\x61\x4b\xa6\x1a\x61\xe4\xa8\x67\xc7\xb7\x23\x63\x2c\xec\x6d\xf7\x4d\x54\x49\x4d\x27\xc8\x1f\xb7\xd4\x36\x5b\x17\x4c\xf8\xb1\xed\x57\x9c\x52\xf8\x55\x82\xe3\x0c\xcd\x77\xbd\xe6\x05\x0c\x0e\xd4\xaf\xad\x53\x9c\x2c\x5f\xee\x56\x7c\x33\x9b\x5c\xeb\x9a\x15\xd9\x6e\x09\x8e\x2c\x21\xf8\xf8\x39\x6d\xca\x95\x3e\x4f\x38\x2e\xf8\xc0\x84\x2e\x59\x10\x3c\x02\xe3\xf5\xd3\x33\x75\x09\xe7\x3c\x1c\x19\xeb\x5d\x8b\x09\x65\x53\xca\x44\xb6\x3e\x3c\x4a\xf0\xf6\xfc\xac\x29\xb5\x64\xf5\xff\xc2\xd9\x25\xaf\xfb\xbb\xc2\x56\x11\x78\x3f\xa8\x7f\x32\xcd\x3f\x4e\xd0\xac\x7a\x90\xf7\xd8\x7b\x37\xa1\xce\xee\xf5\x85\xa2\xa6\xed\x84\xed\xa7\x03\xb6\x0e\xab\x99\x11\x14\x45\x7e\x15\x48\xec\x93\x22\x7c\xab\x59\xf4\x65\xda\xcd\x2c\x06\xa7\x5e\xf7\x3f\x29\x59\xb4\x94\xf0\x2c\x91\x91\x89\xd5\x9f\x4f\x38\x6e\x72\xd3\x7c\xa5\xbe\x32\xa1\x41\x32\x26\xcc\x42\xcf\x87\xf0\x25\x27\xa7\x4f\xcb\xed\x1a\x03\x36\xe7\x5a\x29\xb9\x78\x5f\x02\x8f\xfb\xed\x3b\x39\xa2\xa9\x04\x9d\xf5\x32\x1b\x46\xd7\xab\x10\x36\xdc\x73\x58\xca\xeb\x73\x8f\x19\xed\x0a\xdb\xd7\x32\xd3\x90\x50\xf8\xfe\x9a\xa7\xd1\xed\x3a\xc2\x65\xb1\x42\xc7\xbe\x89\x0c\x06\x46\xf6\x13\x75\x5b\x56\xd6\x11\x6e\x9b\xc9\x35\x2e\xde\xd9\x48\x30\xde\xbb\xc3\x60\xcb\xe4\x67\xd2\x54\xcf\xb5\xc8\xb4\x37\x31\xd8\xb5\xde\xa2\x67\x41\x41\x3c\x41\xac\x3d\x32\xc7\x48\xeb\x09\x83\x3a\xfe\x4a\xd9\xf8\x8c\x2c\xc2\x2b\xf3\x90\xb9\xae\x3a\xaa\x04\xe1\x42\xcb\x96\xeb\x37\x76\x10\x5a\xc2\x17\xdd\x94\x78\x59\xcb\x40\xa9\xfc\xf7\x7c\xfb\x68\x73\x42\xf5\xe3\x3f\x12\x6a\x45\x9b\x08\xe1\x7f\x44\x64\x77\xf1\x19\x30\x48\x39\xed\xd0\xbe\x63\xab\x18\xe1\xb0\xfb\x0c\x7e\xe7\x38\x69\xc2\x77\xf7\xc3\x8d\x1e\xa2\xa7\x18\xb8\x8c\x9c\x7c\x75\x31\x3c\x82\xa0\xf7\xa6\xdb\xae\x63\xcc\x87\x60\xbe\x74\x53\xbb\x91\xbc\x39\x61\x42\xcb\x33\x7c\xae\x44\x38\x61\xdc\x72\xc5\x1e\xeb\x92\x62\x06\xcf\x1c\x39\x96\xc6\x67\x04\x13\x1e\x6b\xc7\x5f\x5a\xda\xd8\xc6\x60\xd6\x4d\xed\x8b\xcf\x84\x7d\x19\xa4\xd6\xbd\x8d\xb3\xfe\x99\xc7\xc0\x82\x7f\xa1\xce\x28\x67\x28\x21\xcc\x5c\xe6\xf4\x1f\xf5\x9d\x04\x03\xa3\x29\x3f\x3b\x7f\x9e\x25\xd8\xea\x99\xc4\x58\x4c\x6e\x75\xae\xeb\x33\x22\xea\x38\x2d\x08\x6d\x4d\xbb\x8e\x7b\x4a\x99\x13\x7c\xa4\x05\x2b\x72\x92\x9c\x08\x16\x61\xb7\xc7\x62\x3f\x77\xb2\x70\x3a\x24\xfe\xc5\x89\xa8\xc5\x84\xbb\x37\x5b\x63\x26\x4e\xdb\x11\xee\xf8\xf5\x72\xbe\xdd\x6d\x4c\x78\xef\x6f\x63\x79\x71\xef\x7a\x02\xc9\x91\x34\x7f\xbf\x20\x41\xb9\x93\x93\x8d\xbb\xc7\x88\xe0\xe1\xa7\x66\x7b\x48\xe6\x1d\x83\x8c\xca\x70\x9b\xa6\x3d\x6d\x04\x53\x2b\xd3\x90\x80\x1d\xb9\x04\xd5\x75\x9d\xdd\x6f\x25\xcf\x12\xb8\x5c\x7c\xdd\xbd\xfb\xf3\x18\xcc\xf7\xda\x1c\x97\x27\xbe\x96\x46\x57\x09\x37\xcf\xb1\xd6\x22\x3c\xb4\xdc\x63\xe9\x17\x16\x43\xf8\x56\x6e\x9a\x7d\xb8\xb9\x88\x30\x90\xbd\x44\x43\xc1\xe6\x08\xa1\x26\x77\xc6\x2e\x89\xee\x68\xc2\xdd\xdc\x97\xd6\x5a\x8f\x5e\x12\x92\x0f\x73\x74\x3c\xf0\x37\x27\x68\xb1\x89\x1c\x6d\xbb\x77\x92\xf9\xaf\xfc\x1f\xb8\x71\xea\x9f\x30\xf0\x94\x22\x24\xbc\x38\x9c\xf6\xb0\xef\x09\x83\xd9\xd1\x59\x0d\x2a\x89\xd1\x04\x03\xfe\x83\x3d\x5b\x95\x3b\x09\x31\x9e\xa3\x19\xb9\xca\xa6\x84\x15\x0f\xab\x57\xac\x4e\xbc\xcf\xe0\xd1\xe9\xa5\xbe\x41\xec\x9a\x84\x73\x9a\xe5\x36\x9c\xcf\xc3\x08\x46\xbb\xff\x0c\xeb\x08\x88\x12\xb2\x46\xe4\x96\xef\xad\x31\x25\x78\xb0\x73\x5d\x11\xfc\x66\x48\xe0\x5a\x94\x5b\xcb\x2d\x2a\x4e\xf0\xbe\x7c\xea\xd3\x98\x63\x33\x41\xdd\x36\x49\xe5\xb2\xe4\x74\x02\x44\x8f\xcf\x28\xb5\x9e\x4f\x38\x7a\xde\x5b\x8f\xb5\x50\x91\x70\x2b\xf2\xfd\x96\xc2\xc5\x73\x09\x7d\x42\xea\x57\x84\x05\x9a\x19\xb8\x87\x9b\x0f\xde\x08\x6a\x62\xc0\x9d\x1f\x9a\x19\xd5\xc8\x10\xca\x39\x54\x77\x7b\xba\x1d\x27\xe4\x36\xf7\x55\x85\xcf\x14\x21\xc4\xbb\xca\xd4\x89\x65\xf3\x10\x0e\x9a\xb1\x99\x1f\x74\x8d\x26\x98\x78\x54\xa5\x0c\x29\xc5\x12\xde\x9d\x59\x31\xa2\xe6\x18\x4d\x30\x9c\x18\x1e\x59\x24\x24\x46\xd8\x75\xf4\xb4\xf2\xa1\xfb\xda\x04\xb1\x4a\xb3\x4f\x66\x1b\x44\xff\x19\x2d\x55\xd9\xca\x7f\x6b\xcf\x61\x42\x82\xd5\xea\xe4\x9b\xb2\x4e\x84\xde\x12\x4f\x9d\xbf\x45\xdd\xdd\xce\x36\x7c\x9c\x93\xa0\xf1\x76\x9e\x63\x7d\x8e\x33\xc1\xb0\x26\xae\xe9\xc3\xa2\xfd\x84\x98\x7e\xcb\x8a\xa4\xa7\x6b\x08\xda\xe7\x66\x65\x36\xc4\x64\x12\xdc\x56\x2e\x78\x26\xf3\x39\x96\x60\xca\x5e\x1a\x7b\x88\xef\x32\x83\x25\x69\x46\xd7\xbe\x3c\xd2\x23\xd8\x6b\x8c\xe5\xf6\x2f\x93\x23\xa8\xb2\x8e\xec\x56\x39\xee\x44\x08\x7a\xde\xb5\x53\xf1\xa6\x36\x41\xa8\x6d\x71\xc0\x02\x77\x2b\xc2\x6a\xd9\x2b\xc2\xfa\xd5\x37\x18\x48\x5d\x4d\x0d\xdb\x28\xaa\x42\x30\xd8\x9b\x24\x33\x4d\x6b\x03\x61\x49\x60\x5b\x49\x48\x4b\x2a\xc1\x79\x3c\xbc\x74\x6d\x52\x37\x0b\x76\x5b\xbc\xc6\xf6\xfb\x8c\xfc\x83\x21\x89\xa8\xd8\xb2\xa4\x31\x16\x2c\x73\x4b\x68\xa1\xb6\x2c\x61\x9f\xc9\x99\x59\x71\x31\xdb\x09\xa7\xbf\xbb\x87\x8c\x4d\x3c\x26\x58\x7e\x93\xaa\xf9\xb3\xee\x00\x21\x7c\xda\xfa\x26\x4f\xa7\x5a\x42\xdc\x93\x8e\xcb\x95\xca\xdf\x18\x6c\xc8\xd9\x55\xf6\xcd\xcb\x94\x80\xdf\x47\x4a\x85\xe9\x05\x83\xdb\xa5\x49\x8d\x89\xc1\x32\x04\xd7\x63\xe5\xd6\xfd\x33\x73\x09\x7f\x84\x37\xaf\x6c\x9e\xdc\xbd\x84\x95\x8b\x6e\xf5\xbe\x50\x25\xac\xb1\x18\x3f\x35\x66\xee\x4c\x88\xde\x70\x74\x86\xd0\x0f\x43\x42\xbf\x72\xfd\xc1\x0c\x14\x31\xc8\xb8\xf3\x3b\xe4\x2b\x67\x15\x81\x33\xbc\x24\xf8\xd1\xbe\x18\x42\x84\xb7\x9a\x65\xd9\x0d\x07\x42\x57\x44\xc0\x12\x13\xf7\x7d\x84\xca\xa3\xfc\xcb\xbe\x37\xc5\x10\xa6\x3d\x68\x32\xb9\x9c\xf9\x91\xf0\x7d\x4e\x94\x73\xdf\x64\x11\xb6\xed\x44\x56\xcb\x59\xc2\x08\x5d\xdf\xbd\x4c\x8d\x8f\xb0\x7a\xc6\x98\x4d\x5c\x67\xfe\x3f\xe8\xb0\x7d\xe4\x7e\xf4\xe3\x00\xe1\x54\x59\x73\xf1\xce\x7d\x39\x0c\x8e\xb8\xbe\x52\xff\x3b\x3a\x32\x28\x11\xd5\x33\x18\x4c\x70\x76\xe0\xdb\xbf\x4b\x68\x72\xf4\xff\x15\x75\x8f\x7b\xce\xa1\xf1\xc1\x84\xdf\x73\xdd\x87\xff\x96\x9c\xe9\x61\xbf\x2d\x35\xb8\x08\xfc\xf6\x1f\xd7\xb2\xd5\x2a\x10\x06\xb5\x63\xab\xef\xed\xbb\xc5\xe0\x67\x09\xab\x2b\x68\xcb\x57\x42\xee\xe1\x8f\x8a\xf1\x32\xb1\x84\x15\x6b\x1d\xcb\x24\x02\x3e\x10\x1e\x31\x53\x92\x1f\xfb\xb5\x30\x50\x5a\x2b\x0d\x09\x9d\x58\xc2\xe1\x57\x92\xb2\x87\xce\x5c\x20\x74\x99\x0e\x3d\x0c\xfe\x23\x43\x78\xe0\x23\x18\x25\xbb\x65\x3d\xc1\xe3\xb2\x9b\x5d\xec\x99\xa5\x04\xcd\x99\x4f\x77\xf8\x39\x37\xe4\xc3\x4c\xcb\x98\xa7\xf8\xa0\x0b\xc1\x7e\xae\xca\xab\x84\xf9\x46\x04\x21\x87\x64\x77\x89\x7b\x47\x08\xc6\x29\x8b\x3a\x6a\x4e\x1b\xff\x33\xda\xb4\xaa\xbb\x21\xbc\xfb\x0e\x41\xb7\x43\xa5\xc2\x36\xad\x93\x85\x55\xc9\xf3\x5c\x7e\xfa\xec\x20\xf4\xc7\xed\xdb\x6a\xb0\x6d\x0f\xfd\x57\xfe\x0f\x24\x4e\xdc\x3c\xa6\x57\xd3\xcf\xc2\x53\x6d\xe1\x3e\x89\x60\x49\x42\xe0\xc7\x4b\xcd\x27\xad\x1f\x13\xec\xdf\xdd\x70\xaa\xab\xb8\x4b\x58\xc9\xbf\x6c\xd9\xcb\xa3\xe9\x84\x9f\xcb\xa9\xba\xde\x3f\x8d\x50\xfc\x52\xd6\xe4\x82\x5e\x31\xc1\x90\xd3\xa0\xda\x3b\xe2\x31\x41\xef\xa4\xd4\x05\xe3\xab\x1a\xff\xe0\xe4\x9d\xec\xdb\x9d\x3f\x59\xff\x14\xc7\x89\xb5\xaf\xbe\x2a\x6b\x10\x7c\xe5\xab\x6e\xf7\x44\x9c\x24\x98\xe9\xee\x50\x16\x33\x8f\x24\xb4\x6f\xd7\x50\xcd\x75\xd3\xfc\x07\xf1\xab\xd6\x5e\x9f\xbe\xc3\x90\xe0\x5a\xf8\x55\x3b\xb1\x47\x9f\x20\xc6\xcc\x91\xf8\x3e\xef\x15\xa1\xb5\xa8\xef\x9c\x8d\xe0\x07\xc2\xd0\xd6\x76\x91\xf4\x53\xbe\x84\x7d\x4b\xf6\x5a\x8e\xd7\xbf\x27\x54\x77\x07\xcc\x10\x1d\x49\x20\x54\xfa\xbe\xca\x55\x0d\x3e\x41\x18\x49\x6b\x98\xa5\x2a\xbd\x8d\x20\x65\xda\x93\xef\xf2\xd3\x87\xe0\xbd\xc2\x5a\xac\xed\xe7\x7d\x82\x97\x74\x82\xc4\xb2\x87\x46\x84\xaf\xab\xe2\xdd\x2f\x7e\x52\x27\x88\x4c\x2b\x49\xe9\xdc\x25\x41\x38\x60\x15\xa8\x34\xd7\x2b\x96\x41\x8b\x4a\xa9\x6b\x41\xa2\x33\x41\x64\xc9\x8c\xe2\x73\x99\x93\x37\x99\xcd\x79\xbc\x83\xcf\x87\x59\xb8\xf9\x58\xac\xd1\x66\x48\x96\xf0\x7e\xf8\x99\x77\x84\x81\x31\x8d\xbe\xcd\x6f\x6d\xd1\xd9\xc4\xe0\xc8\x45\x51\xf3\xfd\x29\xb6\x04\xf9\x30\xa1\xfb\xdf\x16\xb3\x11\xea\x84\x55\xbc\xca\x78\x5c\x08\x87\x7c\x57\x1f\xb7\x2a\x9d\x47\x30\x38\xd1\xe9\x41\x0b\xa4\x09\xa1\x82\xe2\x69\xa5\xcb\x2f\x13\x52\xb6\xbe\x15\x51\x6e\x3c\x47\xe0\xf8\x14\xbf\x83\xf3\xa9\x25\x21\xd7\x6a\x58\xe2\xe4\x0f\x39\xc2\x1b\xf7\xad\x17\xf2\x2a\x5c\x08\x7b\xea\x3d\x7f\x9f\x90\x68\x63\x20\xde\x7b\xa2\xe1\x92\xd5\x5d\x06\xae\x3d\xc3\xa7\x03\x8a\xb4\x09\xfc\x13\x95\x9b\x73\x32\x5f\x10\x12\xb2\x26\x12\xc5\xb7\x4a\x10\x1e\x4f\xd5\x0f\x1b\xfd\xfa\x9c\xe0\xda\xfe\x3b\x63\x41\xd9\x2f\xc2\xe8\xc5\x3b\x9b\x3f\x39\xff\x21\x68\x0b\x29\xb6\xb8\x95\xfe\x22\xf0\xad\x54\xe0\x5c\xc6\x7c\x25\xa8\xdc\x78\xd7\xfb\x71\xed\x39\xc2\x81\xc0\x97\x9c\x4f\xaa\xdf\x11\x02\x4a\x35\x34\x5b\xf8\x8d\x09\x47\xe7\x16\x73\x28\xcc\xc8\x66\xf0\x76\xcf\xf8\x67\x96\x76\x20\x83\xa8\x0b\x51\xf9\x2f\x0a\x0e\x12\xea\x3b\x1c\x4b\xf2\x2a\xf6\x12\x7a\x22\x17\x9b\x68\x05\x5c\x67\xb0\x5d\xd2\x87\xad\x23\xac\x85\xc1\x3e\xdb\x2a\xd7\xd9\xbf\x57\x10\x22\x7d\x5e\x89\xee\x79\x92\x4a\xf0\x30\x69\x38\xb6\x91\xcf\x9d\x60\x90\x5f\x26\xc8\x76\xeb\x3e\x61\x58\x5e\x25\x9c\x23\xe6\x08\x03\x39\x93\xd8\x6f\x71\x46\x36\x84\x32\xfd\x8c\xd1\xc7\xe3\x79\x2c\xac\xba\xf7\x3a\xb9\xc5\xef\x24\x03\xfe\x84\x58\xe7\x75\xcb\x59\x04\x99\xb2\xc4\x43\x07\x2c\x75\x09\xbf\x24\x0e\x4a\x85\x2b\x6e\x20\x54\xeb\xa7\xcf\xea\xf4\x8b\x21\x0c\x57\x5c\x3e\x34\x11\xba\x80\xa0\xf6\x27\xe1\x79\xe7\xac\xb9\x84\xca\x7e\xe1\xd4\x6b\x99\x32\x04\xa1\x0e\xcf\xe2\xca\x3e\x95\x7f\xe0\x95\x55\x8f\x87\x4a\x52\x04\xaf\x7d\xb3\x58\x27\x2f\x9a\xfe\x53\xe6\xc8\x28\x0b\x97\xba\xb5\xb0\x70\x21\xb8\xb9\xde\xec\x4d\x0b\x0b\x1a\x0e\xac\xed\x7a\xef\x15\x08\x8d\x83\x9a\x35\x55\x5e\x03\x2c\x4c\x4c\x8c\xf5\xdf\xe9\xab\xff\xa7\x7c\xbb\xb7\xd0\xc0\x4c\xfe\xff\xe1\xeb\xce\x83\xa9\x7e\xdc\xff\xff\x27\x14\x21\x2d\x2a\x29\x52\x2a\x15\x12\x4a\x54\xce\x25\x4b\x76\x59\x23\x45\x12\x59\x2a\x44\x89\x24\x6b\x69\x13\x2a\xa4\xd5\x92\x25\x5b\x76\x22\x9e\xb6\x10\x45\x96\xa2\x8d\x94\x54\xa2\x12\xe5\x21\xc9\x6f\xbc\x66\xbe\x9f\xfc\xf1\x9e\xdf\x7f\xb7\xb9\x5f\x97\x31\x63\xe6\x9c\x73\x3d\xff\x71\x9a\x59\xa8\x0c\x60\xf3\xdc\xc5\x32\x24\xe4\xd8\x57\xb5\xfb\xe6\x69\x11\x52\x05\xa4\x76\x35\x97\x25\x33\x50\x3c\xdb\x75\xff\x7e\x76\x07\xc1\xa9\x32\x70\xc5\x9f\xf4\x4c\xc2\x50\x26\xc7\xd7\xe1\x3d\x56\x84\xb2\xfd\x29\x73\x8e\xdb\x25\x13\xf6\x9e\x8c\x96\x3d\xb4\xd6\x99\x60\x31\x23\xf2\xf6\xd1\x7a\x4d\x82\xcb\x74\x43\x15\x4d\x39\x21\xc2\x8b\xb6\x5e\x11\x85\xaf\x2b\x08\xb1\x7d\x87\x62\xbd\xf7\x0c\xb2\xb0\x6a\xd4\xbc\x22\x3b\xf7\x04\xc1\xed\x55\x42\x5f\xd1\xc4\x1b\xf6\x8f\x4b\xa2\x43\xdc\x59\xd1\x84\xfe\x68\x87\xa2\xb6\xd3\x36\x84\x76\xc9\x1d\xb0\x64\x3f\xcf\xa0\xb9\x63\x57\xf8\x16\x9b\x04\x82\xe8\xe1\x9d\x56\xcb\x43\xcf\x11\x3e\x5a\x4c\xfd\x1b\x7d\xdf\x8d\x60\xfe\x79\xe3\x0a\xb3\x42\x47\xc2\x1d\xff\xea\x9c\x6b\x5b\xbc\x19\xdc\xcd\x4e\x37\xb3\xca\xc8\x20\x44\x1d\x62\x49\xbf\xd4\xd1\x23\x0c\x2f\xcb\xd0\xad\x4a\x0b\x64\xf0\xbd\x6e\xeb\x81\x8d\x05\xf7\x18\x24\xc8\xf9\x59\x6e\xec\x8f\x61\xb0\xc4\x73\x54\xb2\x89\x2f\x8b\xf0\x32\x6f\xd6\x17\xab\xf1\x1d\x84\xf9\xb7\x36\x4c\x4b\xa9\xae\x64\xe0\xf6\x6b\x06\x2b\x6e\xb9\x1b\x61\x8e\xc7\xfe\x41\xbd\xd3\x15\x84\xc8\xdd\xcf\xc2\x8a\xc7\xc5\x08\x1c\x3b\xdd\xf5\x2f\x8f\x3b\x10\x5a\x0e\x94\x06\xc7\xcc\x1e\x67\xe1\xb2\xfa\x61\x9e\x0b\xec\xc6\x84\xa9\xcd\x79\xbe\xda\x5e\x16\xf4\xaf\x2c\x52\x2e\x3d\xe4\x7e\x63\x8c\x05\xfe\xb5\xde\x33\x64\x5e\x5d\x26\xac\xb8\x9b\x37\x6f\xa6\xcf\x3d\xc2\x93\xbb\xf6\x7d\xf2\x9a\x11\x04\x9b\x4c\x2d\xc1\xe2\x4d\x2d\x84\x5f\xbd\x7e\x4a\x2f\x34\x3a\x09\x5c\x2c\x5a\x25\x7a\xaf\x8b\x10\xfa\xed\x09\x7f\xee\xc4\x88\x43\xce\xa5\xe3\x77\xbe\x09\x81\x89\x34\x64\xfb\xba\xd2\x9f\xf0\xb2\x79\xae\xf4\xc9\xc8\x73\x84\xdf\xd4\xe8\x2c\xc2\xa5\xc7\xe0\x72\xde\xda\x8c\xd1\x89\x1d\xbe\x9d\xb2\xc6\xa7\xbb\xc5\x09\x9b\x3c\x76\x5e\xae\x5a\xf6\x8c\xf0\x2a\x22\x72\x90\x75\xaa\x84\xf0\xd5\xea\x85\x9c\x1c\x77\x26\x41\xf9\xc3\x6f\x8b\x8f\xad\xc5\x04\xd5\x04\xb9\xb3\x91\xf5\xb7\x08\x5b\xa7\xf4\x7b\x0c\xf3\xb6\x12\x76\xd6\x4f\x15\xf1\x1f\xb9\x4c\xd8\xdc\x5c\xf7\xcb\xb4\x96\x93\xf0\xe4\xb7\xd0\xec\x07\xdd\x0c\x83\x6b\x5b\xef\x5d\x9d\x65\x1f\x48\x48\xf5\x38\xa2\xb7\xcc\x34\x9a\x50\xc6\xee\xf2\xae\xc4\xf5\x14\x81\x57\xe6\xd9\x85\xee\x99\x87\x09\x33\x9c\xe5\xdb\x25\xae\x1b\x12\x38\x87\x59\xdb\xb4\x6e\x9c\x23\x6c\xbb\xad\xdf\xbf\xec\xfd\x05\x42\x41\xcd\x91\x00\x41\x23\x47\xc2\xb5\xb2\xef\xb5\x21\xac\x27\x0c\x1e\x5d\x98\x36\xb4\x48\x5d\x8d\x70\x27\xdc\x4a\x6f\x95\x7c\x18\x03\xa5\x03\x17\xee\x1e\xe0\x12\x21\xfc\xf4\x79\x2d\xc9\xe3\x60\x46\xc8\x1d\xd1\x7b\xef\x70\xc6\x84\x90\x95\x2e\x2b\x66\x53\x7b\x96\x50\x6a\xae\x7d\x7a\xf0\xfa\x16\x82\xda\x4b\x3f\x19\xd3\xcb\x22\x84\x43\xce\xfd\x8b\xd7\xf4\xb3\x08\x3f\x3a\x86\x6c\xd9\x4f\x79\x12\x78\x8c\xbc\xdf\x54\x39\xe6\x33\xff\x8a\xcc\x62\xdf\x0f\x7a\x82\x02\x04\xe3\xa9\x8e\xa2\xdb\xfb\xaf\x13\xda\x6a\x4f\x89\xeb\x5b\x9d\x24\x54\xfe\x7a\x34\x5a\x27\x75\x95\x81\x7b\xdc\x14\xe7\x47\x6d\xfa\x84\xbd\xe9\x57\xf1\xed\xd7\x66\xc2\x8a\x63\x3b\x1b\xdd\xcf\x33\x0c\x52\x0d\x7e\x18\x68\xaf\xb6\xa4\x91\xec\x6f\x5b\xbd\xc5\x56\x13\xe6\x56\x99\xed\xf1\xbc\x38\xca\x42\xb6\xcd\xe9\x41\x77\xf1\x7c\xc2\x33\x39\x2d\x4e\xf1\x69\x39\xf4\xaf\x2c\x48\xb9\x3e\xe3\xc8\x04\x94\xd2\x73\xd2\xd5\x83\x94\x09\xf5\x02\xcb\x0d\xf0\xc3\x9e\xc0\xfc\x70\xbc\xf9\x53\x2f\x93\xe0\xfe\x78\xab\xbd\x85\xae\x23\xa1\x4a\xf8\x41\x8b\x72\x82\xf8\x24\x04\x99\xfb\xef\xb0\xe9\x9a\x4f\x10\x09\x56\x79\xaf\xab\xb0\x9e\x50\x73\x46\xf6\x41\x4f\xef\x28\x0b\x0e\x7b\x57\x70\x2f\x9b\x25\x4d\x78\xd2\x7d\x63\xec\xaa\xd7\x22\x42\x90\xc6\xeb\xd2\x96\xe5\x1e\x84\x62\xd9\x13\x73\x14\x44\x0b\x09\xce\xd3\xbc\xb7\x1f\xdf\xf4\x9a\xc1\xc8\xe3\xbd\x0f\x38\x6a\x7c\x09\xe3\x1e\x76\xf3\xd2\xe4\xcb\x19\xf4\xa6\x4d\x73\x88\xe6\x2b\x23\x04\x07\x8f\x9f\xde\x36\xdf\x82\xa0\x61\xad\x32\x76\x25\x54\x97\xb0\x6c\x65\xae\xba\x90\xf6\x6f\x16\xce\xe5\x3f\xfa\x7b\xa7\xd3\x8d\x81\x69\xf4\xf5\x6c\x9f\x29\xa2\x84\x8b\x6a\xbb\x19\xff\x07\x1a\x04\xab\xfa\x60\x93\xad\x11\x06\x84\x55\x57\x3a\x4b\x3c\xed\x87\x59\x60\x4c\x3c\xd9\x6e\xce\x10\x26\xd4\xcb\xdc\xbd\x4e\x0f\xdc\x18\xac\xb1\xc3\x41\xce\x67\xfb\x09\xac\xf1\xc5\x16\x85\xea\x96\x84\xdc\xf3\x3d\x8f\x9a\xdf\x1a\x10\x2e\xbb\x40\x4f\x31\xd3\x92\x10\x3e\xcd\x73\xab\xdc\x2c\x55\x42\xff\xc9\x74\x25\x9b\xb5\x1b\x09\xdc\x29\x17\x9d\x77\x9d\x8e\x22\xfc\xda\x97\x77\xf8\x8f\x8f\x10\xc1\x72\x91\x88\x54\xb1\x36\x1b\xe1\xcc\xea\xef\x97\x3e\x24\x57\x11\x74\xdb\x7d\x17\x2d\x5d\xbd\x8f\x90\xe4\xb3\x5f\xbb\x2e\xf6\x03\x21\x42\x5a\xed\x6a\x3f\x47\x17\xc1\xb4\x70\x49\x86\x59\xe4\x5b\xc2\xa7\x18\x3b\x41\xc1\x19\x5d\x84\x03\x43\xd1\x9d\x7d\x13\xa3\x46\x16\xff\xbb\xfa\xea\x7c\xc2\x0e\x4d\xbd\x7d\x5c\x6b\xf3\x09\x33\x97\x97\xa5\xa4\x6f\xcd\x22\x38\x1c\xb3\xed\xe5\xbd\x9d\x4f\xf0\xc8\x37\x7f\x27\x13\x1f\x4a\x38\xba\xe6\xfe\x50\x44\xf1\x61\x42\x6b\x65\x2e\x2d\xb3\x33\x27\xc8\x9c\xf0\xdd\xe5\x75\x8d\x8b\x70\xbb\x88\xcb\xf4\xdb\xc2\xcf\x2c\xfc\x9e\x76\x3c\x3b\xf4\xd4\x1f\x16\x6c\xef\x24\x30\x2f\x4f\x1f\x26\x78\x7d\xc8\x93\x38\xb1\x4f\x9b\xf0\x23\x30\x77\xbe\xab\xe2\x12\xc2\xcb\xb4\x3f\x9c\x02\xe1\x41\x0c\xc6\x76\x04\x5f\x66\x5b\xe2\x4e\xa8\x5c\x9d\x9d\x7a\x69\xfa\x46\x42\xf4\xb0\xdc\xe2\xc2\x8d\xf3\x09\x62\x4f\x5b\x8f\x3d\x0f\xc8\x21\x1c\x29\x4b\x8e\xd9\xa6\x5a\x44\x90\x8f\x8d\x10\x7e\x36\x51\xfe\x0f\xf9\x2a\xcc\xb5\x33\xd6\x3c\x84\x40\x55\x63\xc3\x2b\x9c\x8a\x04\xcf\xf9\xdc\xbb\x22\xeb\x59\x93\x60\xca\x78\x75\x25\xaa\xce\x26\x08\x1b\xa5\xfd\x50\x39\xb7\x97\x60\xa3\x96\xb8\x6f\x4a\x89\x20\x21\x0f\xbb\x6c\x78\x06\x7f\xb3\xa0\xb1\x6c\xa0\x24\xc2\x47\x81\x30\xb4\x7e\x66\x44\x57\x8a\x32\xe1\xc1\xeb\x73\xcf\x93\x6a\x75\x08\x81\x0b\x0a\x12\x8d\x97\x56\x11\x3a\x1c\x7c\x9d\xd7\x4d\xaf\x22\xa4\x3b\x58\xae\xfb\xf2\xfe\x2d\x81\xd3\x86\xcd\xc3\xd1\xa3\x9b\x81\xfc\xc7\xce\xec\x65\x1f\x0b\x27\x2d\x97\x1c\x62\xe6\xff\xbd\xa4\x46\x50\xf7\x52\x59\x61\x28\xe0\x45\xe0\x70\x1a\x5f\x11\xb2\x33\x8c\xf0\xbe\xff\xa4\xdb\x98\x5d\x36\xe1\x98\x9a\x87\x7e\x99\xf0\x43\xc2\x9f\xae\x20\xeb\x4d\x07\x17\x11\xbe\xf7\xff\x55\xed\xcf\xdb\x31\xa9\xfc\xca\xfd\x34\xbb\xf1\xe7\x20\x0b\x99\x7d\x62\xb6\x7a\xe5\xab\x27\x95\xf1\x2b\x63\x91\x5f\x5e\xf3\x13\xb4\x0d\xd6\x6c\x2d\xd9\x19\x4c\x38\xe5\x13\x6a\xb5\x78\x97\x21\xc1\xa1\xf0\xe4\x88\x76\x2c\x11\x56\xb5\xcd\xff\xdd\x53\xe7\x40\xb0\xfd\x92\x54\x2f\xc6\xf5\x94\x41\xd2\x86\x0b\xdf\x79\xd5\xcb\x09\x32\x11\x9e\xe3\xfd\x4b\x2e\x13\xd2\x72\x66\xef\x48\x59\x76\x99\x60\xb9\x54\xe7\xca\x4f\xe6\x00\xc1\x6c\x7e\xbe\xdc\x92\x00\x0b\x82\xd5\x27\xc1\x4e\x15\x91\x45\x84\x41\xf7\xb4\x6d\x9b\x68\x01\x21\x5c\x9d\x49\x4f\x3b\xae\x4c\xd8\xe3\x57\x3e\xe0\xb8\xe9\x3e\x21\xdd\x4b\x7b\xca\x9d\xa7\xb5\x84\x00\xad\x25\x56\x49\xe3\x5d\x93\x46\xff\x87\x60\xb1\x27\xe9\x3b\x56\xcd\x26\xec\xff\x74\xdf\x7e\x9f\xf8\x06\xc2\x03\xc7\x0a\xd9\x4b\xd7\x1e\x32\x38\xf5\x92\x77\x6e\x79\x86\x01\x61\x76\xec\xe3\xb1\xd3\x3c\xcf\x26\x95\xca\xab\x83\x6c\xa9\x01\xd3\x09\x03\x29\x7b\xe4\x94\x5f\x36\x11\xc6\xde\x9e\xd3\xa5\x09\x84\x3b\xf1\xd5\x9c\x9f\x13\x3f\xa9\x58\xce\xb4\x38\x1b\xc3\x26\x46\x08\x74\xb8\x98\x15\xfb\x36\x9a\xc1\xe5\xc5\x89\x66\xa1\x4b\xb3\x19\x6c\xca\xaa\x5e\x96\x71\xd4\x9d\xa0\x3b\xef\x5c\xa9\x69\xef\x01\xc2\xc2\x50\x85\x19\xec\x4b\x67\x11\x3e\x48\x4b\xda\xe6\x5d\xf9\xcb\x42\x6e\xbe\xec\x9a\xd0\x69\xe5\x2c\xb8\xce\xd5\xbf\xdc\xf3\x22\x84\x81\xc3\xa6\x03\xb3\x6f\xc4\x5d\x25\x3c\x7a\xc9\xe6\xb1\xd3\xec\x32\x21\xa1\xb2\x52\xde\xff\xe5\x01\xc2\x97\x99\x86\xbf\xba\x33\x04\x08\xd9\xe7\x17\x09\x0e\x77\xce\x23\x94\x7a\x9d\x97\x45\xcc\x5e\x82\xf9\x87\x93\x95\xb5\x6b\xdc\x08\xdb\xf8\xa5\xa3\x9c\x8f\x59\x11\x76\x97\xd8\x9d\x54\x9c\x6e\x47\x18\x8e\xf4\xeb\xd9\x96\x18\x46\x58\x96\xb5\xe1\xc6\x0a\x11\x15\xc2\x34\xe1\x05\xce\xf7\x14\xef\x30\x58\x20\x3f\x5d\xdc\xd5\x51\x8b\x81\xdf\xc0\xeb\xf2\x8e\xc2\x70\x82\x2a\xc7\x8d\xe0\x99\x42\xea\x04\x01\xf3\x55\x3d\xa7\xdc\x2b\x08\x26\xdc\x97\xf7\x6c\x97\xac\x20\x0c\x16\x5e\x7e\xff\xdf\x77\xe8\x3a\x55\xad\xac\x7c\x1f\x5b\x36\x69\x67\x96\x46\x44\x04\x3d\x4b\x64\x50\xca\x56\x16\x6e\xd1\x13\x41\xe0\x7a\x59\xd3\x6f\x27\x10\xf9\x0f\x23\x31\x9d\xe7\x2e\x5c\x51\x26\xec\x2e\x97\xe6\x63\x7e\xdb\x11\x04\x95\xa5\x7b\x36\xfb\x39\x11\x74\x06\x36\xa9\x79\x7f\xb6\x24\xb8\xb2\x6e\xf4\xa7\x66\x07\x10\xae\x8f\x9f\xd6\xca\x2a\x35\x21\xa8\xba\xdc\x5b\xe9\xdb\x67\x40\x38\xb5\x37\xaf\xad\x3c\xea\x19\xc1\xf5\x42\xed\x9d\x10\xcb\x64\xc2\xf2\x42\x37\x99\x2a\xcf\x62\xc2\x87\x7b\x02\x5b\x9d\xaa\x7a\x08\x5f\x54\xd3\xae\x6f\x2c\xba\x46\x38\x2e\x1a\xbe\xa6\xf1\xb3\x2c\x21\x4c\xfe\x9c\x4b\xfa\xbb\x6c\xc2\x1b\x9d\x3a\xc7\xbf\xea\xa1\x84\x25\x56\x62\xe5\x4f\xef\x95\x12\x9c\x34\x1b\x14\x45\xbc\x0a\x09\x8b\xd3\x22\x9b\x8b\xd8\x1a\x08\xb2\x29\xa6\x6c\x1c\x5f\x3b\x09\x79\xf5\x5b\x4c\x42\x8f\x67\x11\x56\x4a\xc5\xf5\xcf\x61\x2b\x22\x54\xbc\x49\xfd\xd9\xd2\x9d\x47\x98\xee\x7c\x3d\x63\x9a\x48\x26\x83\x06\x9e\x97\xbc\x0e\x8d\x55\x04\xbd\x34\x45\xc5\xcd\xf3\xf4\x08\x7a\xad\x43\xdf\xa6\x9f\x5e\x42\xb0\xdd\xe9\xa0\xfd\x6a\xe2\x43\xf4\x49\x90\x5f\xd4\x51\xb7\x73\x0c\x2e\x4c\x6b\x10\x38\x7b\x7d\x3b\x41\x93\x5b\xbb\xae\x5a\x48\x92\xf0\xa7\x40\x3d\xf8\xcb\xbe\x42\x06\x21\x99\x6c\x8d\xef\x16\x17\x11\xfa\xb9\xbb\x7f\xa7\x6e\x36\x21\x04\x24\x65\xcf\x27\xa7\x24\x06\xba\x2d\x62\x67\x54\x2f\xed\x26\x88\x49\x06\x1a\x84\x2b\x7a\x12\xbc\xad\x66\xfc\xc9\xe9\xf2\x27\xf4\x05\x8d\xd8\x84\xda\x18\x10\xe8\x2e\xbb\x68\x8a\x70\x04\x81\x6d\xe9\x5e\xc3\x93\x91\xec\x04\x9d\x0c\x49\xcd\x54\x45\x1b\x82\x60\xbd\x77\x8d\xc8\xfb\x34\x82\x49\xe8\x39\xf3\x18\x47\x6b\xc2\x66\xd9\x03\x8c\x46\xb7\x3a\xe1\x7d\x58\x9e\x47\x87\x8f\x14\xc1\x64\x93\xe4\xc1\xfe\x2e\x4e\x42\x6f\xa8\x1f\xaf\xcc\x45\x2f\x02\xe7\xc7\x53\x0f\x97\xae\xd5\x23\x2c\x8c\x18\x8a\xe4\xad\xdb\x4d\x70\x2b\xbd\xf5\xe7\xe4\x7b\x65\x82\xaf\x74\x6d\xb0\xfa\x06\x27\xc2\xa2\x85\xad\xfd\xf2\xa9\x7c\x84\x4f\x5d\x5e\xdf\xac\x7e\x18\x12\x6c\x4a\xd6\x55\x66\xd9\x1a\x12\x6a\xea\x65\xc8\x31\x3f\x97\xa0\x18\x70\x7a\xc6\x7f\xa5\x24\x31\x8c\xce\x5d\x30\x25\x54\xfb\xe5\x0e\x26\x3f\x59\x32\x09\x6a\x82\x0a\xf7\x0b\xab\xfb\x59\x70\xfe\xb6\xfc\xeb\xbb\xc1\xad\x04\xb3\x17\xdb\xcc\x93\x4c\x8d\x08\x7e\xa6\x52\x3d\x07\x67\x36\x12\x74\xce\xa8\x2e\x0f\x48\x69\x64\x30\x30\xb7\x46\xdf\x27\xbe\x82\xf0\x5e\x6b\xaf\xef\xf9\x7d\x06\x84\xc5\x7f\x9e\xb0\x0c\xbc\xe5\x09\xa7\x3d\x8a\xbd\x3b\xd8\x16\x12\xbc\x7b\x5f\x59\x0b\xa8\xaf\x23\x14\xe9\x3d\xa9\xb7\xe6\x1a\x61\x41\xdf\x37\xce\xa9\xe3\xd3\x32\x42\xe5\xfa\x07\x37\xb3\x42\x8d\x09\x0b\xd7\x44\x4d\xdd\xf7\x27\x8c\xe0\xac\x6f\xdf\xb3\x3d\xc7\x94\x70\xde\xf7\xc1\x81\x55\x41\x9b\x09\x5e\x22\x79\xfd\x99\x9f\x6e\x12\xec\x5d\xad\xb3\x16\x7c\x9b\x43\xd8\x7d\xc9\x85\xef\xb5\x98\x09\x61\x4f\x88\xe2\xbb\xc3\x1c\xb3\x09\x8b\x1f\x23\x5f\x6e\xad\x04\x81\xa9\x92\xf2\x99\x9e\xb6\x87\xa0\x38\x12\x4d\xfa\x25\x4d\x2c\xdc\x9a\x22\xcd\x49\x02\x6c\x84\x0b\xb9\xf2\x53\xe2\x2a\x32\x09\x4d\xe9\x1c\xa7\x9a\x26\xb0\xab\x75\xc9\x81\x95\x77\x62\x09\x66\x3f\x78\x6a\x35\xaf\x54\x4e\x1a\x1d\xd6\xde\x30\x7f\xd5\x1d\x23\x42\xff\xab\x28\xd1\x45\xe7\x4d\x26\x41\x8b\xe5\xbb\x36\x45\xf4\x36\x83\xdf\x29\x37\x95\x25\x55\x4d\x09\x4c\x9d\xfb\xf5\xc3\x9b\xc2\x09\x7f\x53\x6d\xcf\xa4\xaf\xc9\x26\xe4\x8f\xdb\x57\x70\xe6\xf5\x33\x10\xf2\xfd\xf1\xad\xe7\x59\x21\xe1\x14\x0f\x6e\x3d\x9d\x73\x89\xc1\xdb\x96\x91\xa9\x83\xfc\xe6\x04\xbe\x6c\xf1\x14\xde\x46\x75\xc2\xa7\x61\xa5\xb7\x9c\xa9\x09\x0c\x76\x4d\x7f\xf8\xc2\x4e\x49\x9d\xc0\x55\x92\xa0\x1f\xbc\x67\x19\xa1\x88\xa3\x40\xfe\x70\x38\x0f\xe1\xb8\xfe\xea\xcf\x89\x21\x8a\x84\x18\xee\x6f\x69\x2c\x03\x86\x41\xd2\x8c\x99\x87\xab\xce\x6e\x25\x34\x05\x04\x9c\x8b\x29\x0c\x67\x46\x66\x7a\x26\x5f\xb2\x2e\x22\x1c\xf6\x93\x54\x39\xa9\xf1\x90\x10\xf4\xdc\xf9\xf1\xa1\xfd\x45\x04\xdd\xb2\x13\xcf\x2c\x5c\x8d\x08\x95\x9f\x3a\x39\x73\xee\xaa\x13\xba\xd3\xe3\x22\x6d\x19\x6f\x82\xce\x53\x6e\xad\xdc\x89\x52\xd3\x15\xf0\x5b\xa1\xec\x07\x0b\xcd\x91\xbc\xef\xec\x7a\xe7\x12\x54\xb6\x3c\x2d\xe0\x7b\xf3\x9a\x05\xd6\x40\x9a\x5a\x65\xd7\x25\xc2\xd4\xc6\x65\xae\xf7\x57\x6a\x10\x5e\x90\x87\x72\xb7\xa0\x0c\x41\x3a\xf5\x91\xb9\xe9\x56\x51\xc2\xe5\x0c\x49\xb6\x2e\x4b\x2d\xc2\x1f\xfd\x1f\xeb\x63\xf9\x12\x08\x91\xd3\x0e\x7f\x5d\x72\x2a\x8b\xd0\xe3\x2b\xaf\x51\xa9\x60\x40\x58\x3e\xd7\xf2\xd4\x58\x75\x14\xe1\x15\xe7\x1d\xf3\xd9\x8b\x05\x08\x7b\x4b\x5a\xfc\x28\x4a\x94\xd0\x27\xd2\xdf\xbe\xab\x4e\x9b\xf0\xed\xec\xf5\xd8\x81\x85\xc9\x84\x55\xeb\x1b\x6b\x67\xea\x55\x11\x36\x9c\xd1\x4f\xe4\x99\x93\xca\xa0\xa6\xbb\xe0\x93\x13\xfb\x35\x82\xf4\x76\x35\x4b\xce\x9b\x01\x84\xe4\x3c\xb6\x0d\x05\xcb\xed\x08\xc1\x9d\x9c\x12\x4e\x09\x6f\x19\xc8\xca\x17\xa6\x1e\x1d\xf8\x48\x28\x78\x76\x61\xf6\x8b\xbd\x5f\x09\xc2\x02\x8a\x3b\x4d\xd3\x7a\x09\xa3\x91\x35\xcd\xa2\x03\x4f\x08\x06\x67\x1d\x6f\x06\x9a\x99\x10\x22\x9d\x32\x76\xbe\x16\xf6\x21\xac\xd0\xa4\x12\x7f\xee\x18\xc2\xcf\xdc\x35\x5d\x4f\xa2\xde\xb1\x90\xcf\x63\x22\x98\xb6\xec\x34\x41\xea\x6f\xf0\xa1\x1f\xcb\x4a\x09\xb6\x0e\x7c\xc6\xbd\x83\x83\x84\xd3\x79\xad\xfa\xf7\xde\x0e\x12\x6c\xaa\x8e\x27\xff\xea\x1f\x24\x04\x9a\x67\x5b\x34\x73\x3e\x21\xb8\x8a\x9e\x4d\xdb\x9d\xe2\x4a\xb8\x50\xab\x20\xa8\x99\x5c\x49\x08\xe0\x58\x1a\xf2\x7b\xbb\x1a\x61\xe1\xde\xd6\x2f\x91\x19\x73\x09\xad\x37\xd7\x2c\x56\x17\x4f\x67\x70\x5d\xdc\xe4\xa5\x4d\x8a\x1e\x41\x31\x72\xd9\xcb\x1f\xab\xb4\xfe\xdf\x7f\x8a\x10\x26\x58\xf6\x2f\x3b\xad\xb3\xef\x59\x29\xf8\x5d\x42\xbb\x8e\x55\x56\x11\xf2\xaf\x1d\xd5\x99\x77\xf5\x01\x21\xda\x4e\x52\x5b\x82\xa7\x92\xd0\xd1\x9b\x61\xfb\x3c\xe9\x2e\xa1\xdb\x2b\xe5\xf3\xc1\x23\x56\x84\xde\xca\xbe\xbf\xa2\x2c\x4d\x02\x5f\xfd\xc0\x9d\x82\x39\xcd\x84\x43\x4f\x33\xbd\x8f\x81\x21\xec\xac\x13\x16\xf9\x3b\xad\x8a\x90\x7b\xe4\xce\xcd\xea\xe1\x56\x06\x57\xee\xa5\x1c\x3a\x3e\xb5\x99\x10\x9d\xef\xd7\x14\x35\x51\x5c\x7d\x1b\x0d\x7a\x24\xab\x08\xa1\x6a\xa6\x2f\x9a\x5a\xaf\x10\x0e\x94\x1d\x88\xf7\x0e\xbb\x44\xe0\xdc\xa9\x60\xa7\xa6\x9e\x4e\xd8\x7e\x21\x29\x3c\xe9\x6b\x04\xe1\xe2\xa6\x03\x6c\xf7\x0f\x5d\x21\xac\x58\xf5\x48\x59\xbb\x23\x82\x20\x36\xd2\x79\x48\x72\x78\x31\xc1\x62\xff\x92\xf9\x19\xa5\x09\x04\xbd\x7d\xcf\x6c\xad\x6a\xcb\x08\xbf\xf6\xf7\x87\x86\xbf\xaf\x22\x7c\x0b\xe1\x97\x17\x9e\xf5\x80\x90\xc6\x6f\xfa\xed\xbf\x91\xea\xb3\x59\x0a\x85\x6b\xbc\x08\x2f\x79\xd7\xc5\x0c\xc4\xef\x27\x34\x3f\x7e\x68\xa6\x64\x14\x49\x98\xf5\xd1\x77\xdb\x94\x89\x51\x7f\x4a\x97\xda\xd5\x99\xd1\xcc\xbf\x9d\x9d\x87\x66\xab\x9d\xf3\x0d\x20\x28\x1e\xe8\x6f\x59\x5d\x7b\x81\x70\x61\xdd\x98\xad\x23\xf7\x11\x42\x8a\xdc\x8c\x07\x4f\xfa\xce\x12\x16\xe5\x3c\x58\xef\xc4\x1d\x44\x10\xee\xd1\xc9\x54\x2b\x37\x22\x8c\xff\xf2\x8d\x2f\xbd\x7d\x82\x20\x27\xde\x21\x36\xf3\xa9\xcd\xff\x42\x47\xa8\xd2\x9c\x96\x8d\x16\x84\xe7\xf2\x25\xbd\x92\xf7\x56\x12\xfe\xa4\x70\xc8\x9f\xf4\x12\x26\xb0\xb6\x0a\x1a\x56\x5d\x38\x45\xe0\x1e\xfa\x35\x25\x23\x28\x9b\xf0\x2d\xc3\xf8\xa4\xf0\xb2\x0f\x04\xef\x73\x39\xe6\xec\x6f\x32\x09\xbd\x2b\x8d\x25\xcf\x65\xdd\x25\x7c\x5a\xf1\xb1\xbe\x35\x57\x9d\xd0\xf9\x37\x40\x80\xcb\xe3\x1a\x03\xf7\xc7\x1f\xd6\x73\x6f\xc8\x25\x18\x3b\x8e\xf4\xa5\xec\x92\x21\x94\x68\xf4\xf0\xa7\xe6\x30\x84\x8c\xfa\x7e\x6f\x81\x2b\x76\x84\xfe\x29\x0b\xad\xd2\x72\x4c\x08\xfb\x12\x54\x9b\x0b\x8f\x26\x12\x5c\x37\x5a\xcb\x4b\x77\x25\x32\x68\x3a\xad\x79\x4b\xc9\xb2\x85\xc1\xc9\xa5\xd3\x5d\xae\x56\x3a\x13\x3a\x56\x45\x77\x16\x0c\x9f\x22\x90\xf6\x89\x6a\xb7\xac\x93\x04\xc5\x15\x92\x96\x9f\x06\xca\x19\x14\xa8\xdc\xbf\xfc\xb0\x28\x87\xa0\x57\x6e\x6a\xbb\xdc\xe3\x0e\xc1\xbd\x77\x47\x54\x81\xee\x1c\xc2\xa6\x79\x61\x9a\x6e\x77\x2d\x09\xc7\x1c\xe7\x0b\xaa\xb7\xff\x64\xfd\xc3\xca\xb8\x1d\x5f\x16\xbf\x8d\x63\xc0\x3f\x7b\x45\xf4\xc7\x9a\x8f\x2c\x78\x4f\xdb\xf4\x91\xfb\x44\x1a\x61\x64\x5c\xa1\x65\x8b\x01\x07\xc1\x6b\xfd\x37\xd5\x4b\x6e\xda\x84\x23\x7c\x8f\x5b\xf9\x8f\xcb\x4d\xbc\x9a\x8e\xd5\xeb\xf0\x1f\x20\xec\x95\x3c\xce\x7f\xdd\x47\x94\xc0\x6c\x96\x72\x13\xe9\x93\x23\x68\xf5\x9d\xd8\x66\xba\xb4\x88\x90\xc2\xf3\xea\x62\x6b\xdc\x3c\x82\xf1\x99\xca\x87\x5c\x34\x9b\x90\x82\xdf\x8b\xf9\x37\x7c\x24\xa8\xf0\x59\xbe\xa9\x16\xfb\x4a\xe0\x9e\x1e\xf4\xfe\x6d\x48\x1b\xe1\xe5\xc5\xb9\xd9\x06\x86\x0f\x09\x7e\x4d\xd2\x47\xdb\x15\xeb\x08\xb2\xdf\x66\xad\x08\x73\x2b\x67\x70\xd3\xd9\xe2\x52\xed\xd7\x62\x82\x94\xf3\x8b\xb2\x4d\xfc\xc2\x84\xe7\x87\x25\xa7\x0d\x98\x4b\x11\x04\x8f\xb9\x29\xee\xf7\x52\x25\xfc\xa8\xee\x9d\xbe\xd3\x75\x3d\xc1\x9e\xc3\xfa\x8b\x88\x60\x32\x83\xc8\x30\x83\xf2\x2b\xc2\x2b\x08\x6a\x9f\x1d\xbc\xfb\xfc\xbd\x08\x6f\x52\x07\xfd\xd7\xd9\x16\x11\x4c\x07\xd3\x97\xbf\xb2\x8c\x22\xb0\x04\x44\x12\xea\xda\x5a\x08\xf9\xfd\x1d\x9b\xe6\x3d\x68\x27\x58\x2d\xb8\x1d\x1f\xca\x75\x83\xb0\x42\xe4\xac\x73\xdb\xc4\x49\xb2\x47\x30\xe6\xf2\x0c\xbf\x42\xc2\x17\x3e\xae\x06\x9a\xde\x45\x68\xae\xaf\x0e\xe6\xd0\xc8\x9a\x34\x1a\xdb\x78\x6f\x75\xf2\x3b\x1f\x1a\xd9\x25\xf6\x65\x9b\x4b\x00\xa1\x7f\xb6\x76\xa6\x0a\xcf\x11\x82\xd0\xb8\xc4\x21\x51\xb7\x40\x42\x97\xf4\xe0\x11\x97\x90\x63\x0c\xbe\xc6\x38\x78\x76\x7f\xf4\x20\xa4\x87\xb1\x76\xee\x6a\xd8\x4f\xd8\xa1\xee\xb3\x30\x5b\xb9\x91\xe0\x96\x6f\xed\x71\xcd\xfc\x10\xe1\x84\x3a\xa7\x60\xd1\x7b\x2d\x82\x6e\x4d\xb2\x0b\xdb\x25\x57\x06\x17\x6a\x44\x57\x68\x44\x4f\x23\x78\xb8\xc5\xc8\x44\xc6\xaf\x23\x1c\x58\xf7\xfb\xc6\xd2\xa9\x3b\x18\x1c\xb9\xfa\xe6\xba\x4b\x86\x22\x41\xf2\xf9\x49\x7f\x87\x8e\xd7\x84\x43\xf7\x75\x5e\xff\x52\x7d\x4f\x48\x3b\x26\xf9\xd3\xb0\x27\x9b\x40\x4f\x8d\xda\x57\x1f\xaf\x22\x48\xac\x0c\x4a\x56\xe0\x6e\x21\x3c\x3c\xda\x6a\xa8\x75\x6f\x3d\x41\x73\x66\xf0\xd4\x0f\x97\x9b\x09\xce\xac\x9c\xef\x32\xda\x81\x04\xb1\x90\x93\xf7\x8e\x84\x1c\x26\x68\x05\x6d\xf6\x99\x77\xf9\x10\x41\xba\x28\xe4\x81\x18\xdf\x2c\x82\x57\x78\x5f\xe7\xe2\x0b\x2f\x08\x66\x67\x6f\xe4\x6f\x92\xca\x25\xc4\x6f\xaa\xe8\x55\xf9\x2e\x47\xd8\x27\xac\x79\xab\x7e\xbf\x38\x41\x86\x33\x47\xe4\xc4\x94\x26\x06\xc3\x0d\xa6\xaf\x22\x62\x45\x09\x3c\xf3\x5f\x94\x0c\x1d\xca\x62\xf0\x36\xad\x4a\x68\xf5\x63\x61\x42\x43\xec\x01\x89\xa5\x96\x61\x84\xc6\xd0\xb6\x8c\x75\x82\x2f\x09\x42\x26\xbc\x4f\x2e\xcf\x8f\x64\x70\x5c\x42\xd1\x2f\x71\x6e\x2b\x83\xab\x41\xf7\x38\x32\x3d\x6a\x08\x57\x16\xeb\x3b\x8b\x4b\xb2\x08\x47\xa4\xd5\x0e\xc6\xce\x28\x60\xd0\x20\xd6\xd9\xc1\xd5\xa9\x44\x88\x18\x2a\x33\x60\xd7\x10\x21\xac\x1a\xb2\xcb\xcf\x75\x32\x22\x6c\xd7\x1c\x3b\x7e\x30\xfc\x22\x41\xbd\xda\x75\xf1\x22\xa7\x04\x42\x5c\xac\x96\xb0\xfa\x4f\x17\xc2\xaf\xa2\xed\xb9\xb7\xcd\x6e\x33\x78\x57\x98\xd9\xbc\x71\x99\xc6\xc4\xd3\x8a\x50\xcb\xcd\xdf\xcf\x19\xf8\xaf\x78\x7f\xe3\x56\x71\x1e\x61\x4b\x1c\xb7\x82\xe4\xd7\x36\x06\xd2\xaf\x44\x4d\x64\x53\xdd\x19\x7c\xca\xd8\x90\x32\xc7\x9a\x9f\xb0\x3e\xa3\x50\xaa\x75\xfa\x39\x06\xab\x04\x1e\x5e\xff\xfb\x29\x8d\x30\xeb\x69\xae\xd5\x22\x93\x2e\xfa\x57\x58\x17\x3e\x7b\xdc\x98\x66\x40\x88\xb7\x37\xb3\x1a\x51\x5c\x49\xb8\xb5\x59\x7a\xbf\x80\xd5\x52\xc2\x0f\x7e\xd5\x9b\xde\x63\x53\x08\x2b\x14\x45\x5b\xb7\x6f\x3e\xc3\x40\xdb\xd8\x99\x4d\x59\x74\x0a\x41\x77\xe6\x4a\xee\x5d\x9a\x47\x26\x61\xe7\x75\x7c\x68\xab\x52\x21\x3c\x7d\xe6\xdd\x3b\xb4\xe5\x0f\x83\x82\x3d\x49\xd2\x9c\x37\xff\x32\x60\x79\x5a\x29\xf7\x5e\xaa\x20\x2c\x32\xbe\x18\xbe\xb6\x67\x8c\x41\x56\xc7\x33\xf5\xb9\x67\x5a\x18\x04\x6b\x39\x38\x55\xe6\xe7\x13\xee\x1f\x19\xab\x2e\xb4\x3a\xc6\x20\x72\xda\xf7\x5f\x82\xdc\x89\x04\xb7\xed\xe5\x0d\x67\x84\xef\x10\x92\xae\xd9\x1c\xe3\x7c\xa3\x4e\xf0\xde\x76\x4e\xb1\x71\xf4\x08\x61\xf6\x97\xc6\x33\x75\x73\xb6\x12\x22\xdd\x57\x47\xa5\xed\xdb\x46\x58\x99\xb3\x6b\xdd\x87\xa9\xc9\x0c\x78\x03\x5f\x8f\xab\xcc\x65\x23\xa4\x3b\x5a\x7b\xf3\xb2\xec\x08\xeb\x6e\x69\x56\x55\xf2\x8c\xb3\xc0\xca\x7d\xf7\xfe\x63\xf6\x32\x42\x9f\xd9\x75\x09\x65\xb3\x34\x82\xdc\x5b\x71\x29\xe5\xfc\x2f\x2c\x58\xfd\x95\xac\xf4\x5b\x7b\x85\x41\xac\x4c\xf4\xe8\xbd\x6e\x33\x82\x8e\x5e\xa1\x60\xb5\xf7\x05\x42\x50\xfe\xfb\x19\xe7\xc4\x3d\x08\x1d\xce\xd1\x8b\xa3\x19\x5d\xc2\x54\x8f\x93\x67\x02\xd7\x5f\x67\x60\xce\xd3\xae\xdf\xb0\xf6\x13\xe1\x27\xc7\xf7\x2a\xaf\x63\x71\x0c\xf2\x9e\xda\x6f\x8f\x68\x8b\x63\xe0\x1d\x2e\xd1\xf6\x7d\xe0\x19\xc1\xb3\x27\x76\xf6\x3d\xa5\x37\x04\xfe\x1c\x8b\x4e\xdd\x88\x2a\xc2\x66\xf1\x3d\x5b\xf5\x39\xbb\x08\xb7\xee\xe5\x1e\xab\xb9\x9a\x46\xd0\x75\xb9\x65\xf0\x33\xe7\x38\xc1\xe7\xd2\x4e\x7f\xf1\x9c\xb3\x04\xe5\x1d\x03\x07\x76\x2e\x5d\x46\x18\x7e\xf7\x48\x6b\xe5\x90\xf0\x24\x4c\x67\x3b\x14\x43\xce\x97\x26\x61\xd0\x6c\x23\x96\x7d\xd4\x9e\x84\x7d\x07\x72\x16\xe9\xb1\x7b\x31\x38\xb9\x78\xb4\xc1\x30\x28\x84\x30\x3e\x33\xd7\x7f\xf7\x25\x23\x82\xc0\xd0\xf2\x65\xc8\x5a\x45\xd8\xe8\x6f\x77\x72\x69\x82\x02\xc1\xf9\xa8\x1f\xff\x8e\x1e\x39\x82\x03\xaa\x4f\xbb\x0f\x7f\x66\x61\xfb\xb2\xc6\xbe\xb9\xbc\xc7\xe8\x1f\xae\xfa\x2f\xf8\xf1\x2b\x3e\x92\x05\x70\xcc\xd6\x4e\x65\x7f\xc9\x82\x78\xbf\x96\x62\x37\xb2\x08\xdc\x3d\x96\xc7\x7b\x26\xf0\x94\x33\xe9\xe6\xed\x51\x8e\x49\x70\x39\x94\x6f\xd3\xf4\xcc\x9a\x90\x40\x2d\x2f\xf6\x71\xbe\x63\xfd\x83\xc7\x93\xab\xf3\xa6\x5c\xaa\x2a\x05\xfb\x2e\xf1\x91\x7a\x21\x55\x42\x4c\x9b\xcc\x4b\x9f\x7c\x69\xc2\xee\xfe\x81\xd5\xf1\xe6\x6b\x09\x6f\x0d\x0f\x8d\xce\x9c\x3f\x95\x70\xb6\xcb\xe4\xc6\x95\x1b\x52\x04\xa3\x4d\x5b\xfd\xec\xfc\x5d\x08\xcd\x46\x8b\xdc\xfa\x6f\x85\x11\x06\x86\x6e\x1e\x6d\x71\xbe\x4e\x08\x3a\xa7\xb6\x57\x28\xc2\x99\x50\xab\xd3\xe5\x23\x5b\x9f\xc5\x42\xfe\x22\x7c\x1f\x7c\xe5\x44\x10\x30\x7d\xe4\x61\x6d\xa4\xf5\xff\x8b\x39\xe3\x9f\x38\xf7\x78\xe6\x4d\xc2\x2a\x3b\x91\x8c\x23\x2f\x77\x12\xa2\x3d\x2a\xe2\x9f\xee\x94\x21\x48\xbd\x1b\x8a\xe3\xfa\x26\x49\xf8\x11\xd6\x5e\x37\x7c\x76\x16\xa1\x67\x70\xac\x68\xb6\x5b\x2a\xc1\x3c\x73\xd1\x15\xa5\x83\x56\x84\x23\x6f\x65\x7b\x5c\xbb\xf6\x12\xb8\x2f\xb8\x9c\x17\x11\x36\x23\xdc\xdc\xff\x42\x2a\xb4\x4a\x87\x60\x37\x70\xdc\xa0\x30\xa4\xb3\x14\x43\x51\xd7\x14\x3d\xd8\xa3\x59\x98\x6e\xdc\xdb\xed\xba\x56\x97\xe0\x78\xf9\x86\xf4\xe5\xa7\x7b\xe8\x5f\xf9\x3f\x68\xeb\xfb\xa5\x45\x69\x8a\x11\x8c\x76\x2f\xb1\xde\x25\xc7\x22\x48\x04\x7a\xba\x70\xaa\xb6\xb3\x30\xbc\xe0\xb2\x54\x46\xa9\x14\xe1\xfd\x32\x27\x3d\xe5\x5d\xd5\x04\x76\xfd\xd2\x6d\xe9\x13\x65\x13\xa7\x39\x63\x58\xb0\x99\x30\x93\xf7\x62\xb1\xb0\xc6\x54\x82\x95\x0b\xdf\xe2\x1f\xfc\xf3\x09\x2e\xad\xa1\x02\xea\x67\x67\x4c\xc2\xc7\x96\xe7\x4b\x0d\x3e\x15\x11\x1c\x74\xdc\x04\x58\x5a\xdd\xa5\x08\x3b\xe8\x64\xaf\x75\xbc\x95\x81\xb7\x86\xd0\xf6\x85\x49\xee\xf4\x3f\xf0\xfd\x60\xb7\x9b\x5e\xaf\x0e\xa1\xfe\x81\x47\x82\x25\x7f\x38\x41\x48\x8a\x7b\xc4\x22\xfd\x26\xa1\xaa\x76\xa4\xf4\x80\x83\x22\xe1\x70\xb3\xc5\xc6\x58\xef\x23\x84\xf0\x35\x89\xca\xbc\xc1\x5e\x84\x55\xd1\x32\x33\xf8\xfd\xc4\x09\xcd\x8d\xb7\x4d\xdc\x93\x4d\x08\xa6\xf5\xbf\x3e\xfd\xda\xbc\x9e\x70\x44\x37\xf9\xd0\xa2\x52\x6d\x82\xd8\xd1\x1b\x17\x8e\x79\xb6\x95\xa2\x8f\x31\xd8\xe4\xa9\x6d\x41\x18\x90\xca\xf3\x7e\x9f\x27\x41\x68\xdc\xfe\x45\xf0\xa7\x8d\x00\x61\x5a\xa0\x93\xa1\x68\xd9\x3c\xc2\xf0\xec\xe8\xde\x15\x2f\x67\x11\x38\xe7\xe7\x0c\x0a\xce\x4c\x27\x24\x4f\xd5\x35\x7b\x73\x54\x9f\xf0\xe9\xcd\x1f\x93\xad\xc9\xaa\x84\x3d\xee\xb6\x47\x63\x4c\x06\x08\xeb\x0d\x85\x2a\x1f\xe5\xfc\x20\xf0\x05\x64\xaa\x6e\x0f\x4f\x24\x58\x5a\xfa\x7d\xea\x36\x1e\x20\xf8\x55\xde\x4d\x7a\xe7\x54\x4f\x58\x10\xde\x51\xde\xf6\x3b\x90\xd0\x31\xf7\xf7\xba\xfe\xca\x22\x82\xcc\xda\x9c\x00\xce\xba\x28\xc2\x13\xf1\xb4\x83\x25\x7e\x5d\x04\xe1\x84\x25\xb6\x5f\xe3\xba\x09\x36\x07\x95\x6d\xed\xa5\xde\x13\xca\x2c\x13\xb5\x39\x93\x72\x18\xe4\x1f\xa8\x5b\xbe\xad\x37\x87\xc0\xd9\x6d\x2a\xf3\xd0\xdb\x95\x70\xc2\x79\x5e\xf4\x42\xcb\xaf\x84\x51\xd1\xf8\x52\x01\x83\x01\xc2\xdc\xed\x29\xbc\x45\xa2\x1f\x08\x01\x11\x9d\xf2\xef\x5a\x2b\x09\x17\x35\xf5\xdf\xf6\x45\xc8\x11\xcc\xea\x93\xb7\x3d\xaf\xaa\x66\xb0\xc6\x5e\x51\x7f\x5c\xe2\x35\x61\xf9\x6e\xd9\x28\x96\xff\x5b\x02\xe7\x1e\xb6\xe9\x61\x89\xd9\x84\x34\x89\x1f\x9b\x87\xbe\xaf\x22\xac\xb1\x4c\xf4\xdb\xeb\x69\x42\x38\xf6\x64\xec\xcb\x4b\x81\x16\x02\x9f\xc1\xd1\x6e\x7d\x81\x46\x06\x73\x4e\x7f\x6a\xfd\xaf\xf0\x37\x9d\x99\xe2\x7e\xb0\x86\x20\x18\x1a\xd1\xcb\x3b\xad\x8c\x50\xdb\xf2\x73\xde\x9e\x08\x65\xc2\x43\x35\x23\x2f\x3b\xce\x77\x84\xca\xa2\xc4\xee\xc1\xbc\x8f\x04\x83\x63\x8f\xf4\x0e\x2b\x75\x12\x8e\xfe\x8a\xf7\xbc\x7f\x37\x8d\x90\xd8\x3e\x3d\x7c\xb1\xdf\x1e\x42\x89\x58\xa2\xfd\x52\xf9\x78\x82\xd1\xcb\x26\x91\x05\x12\x57\x18\x70\x88\xd4\x72\x49\x1c\xee\x65\x70\xc8\xa9\x80\xe5\x23\x3b\x4a\x70\x6e\x94\x6d\xf5\x7a\x93\x48\x90\x59\x55\x6d\xb9\xfc\x63\x1e\x83\x4a\xe3\x3a\x39\x43\x93\x5d\x84\x0b\xa3\xcc\x8c\x3c\xbb\x1f\x04\x1d\xb1\xb3\xbb\xf5\xc4\x86\x09\xe5\xcd\x43\x7b\xe7\xea\xfd\x20\xbc\x09\x7b\x79\xac\x72\x76\x33\xe1\x78\x7c\x97\xf6\x8d\xbd\x61\x84\x3e\x31\x1f\xde\x84\x4b\xc5\x04\x0d\xd7\x43\x1b\x5f\xf2\x18\x13\x78\xda\x4a\x5f\x4e\x7d\x21\x44\xc8\x50\xbb\xff\x87\x67\x56\x1c\xe1\xc3\x5c\x1e\xe3\xcf\xce\xf2\x04\xff\xa3\x16\x3a\x21\x35\xf3\x27\x21\x2d\xb8\x45\x61\xaf\xc2\x66\x82\x74\xe3\x2f\x0d\xbe\xa9\x07\x08\xf5\xae\x17\x0f\x1c\xae\x5d\x4f\x50\xcc\x71\x08\x6b\x38\xa2\x40\xb0\xd9\x9c\x52\x11\x36\xab\x92\x20\x34\x32\x57\xe7\xd2\x04\x38\x0e\x9c\xe6\xc8\xda\x52\x45\x48\xcb\x33\xda\x78\x67\xe2\x8c\xaa\xb7\xf0\x9d\xa3\x54\xb2\x92\x50\x29\xda\xa2\x1e\xc3\x5b\x44\x50\x8a\x8e\x1b\x0a\x08\xd5\x25\x18\x07\x64\xa5\x28\x05\x16\x4e\x82\xbb\x79\xd4\xda\xb3\x55\xf9\x84\x79\xda\x52\x43\x29\x63\xf9\x0c\xe0\x6c\x11\xa2\x3c\x31\xda\xb2\xc2\x46\xbf\x8e\x5d\xed\x7f\x21\x9b\x9d\x53\xd9\x46\xa6\x95\x85\xe9\xef\xbe\x15\x6b\xad\x37\x25\xa8\x0c\x2c\x58\xb0\x7f\xbb\x0e\xc1\xb7\xcf\xc8\x76\xf9\x32\x41\xc2\x09\xcd\x8c\x8c\x05\x52\x03\x2c\xfc\x9d\x1d\x5f\xc9\xfa\x33\x83\xd0\xc6\x9d\xad\xe2\xca\xb5\x9b\x50\x7d\x53\x79\x47\xeb\x8f\x74\xc2\x51\xdf\xc2\x7b\xb5\x3e\x6a\x04\x0e\x3b\xde\x6d\xaf\x4e\x24\x13\xbe\xb4\x86\x6e\xe6\x16\x3c\x4c\xb0\x52\x8a\x49\xb6\x2e\x5c\x4c\x38\xd7\x59\x64\xea\x75\x6f\x01\x21\xfb\xe2\x2a\xc5\xce\x6a\x19\xc2\xe6\x86\xc6\x5b\x55\x2b\x6f\x13\x2a\xac\xdf\x14\x75\xb1\xe4\x08\xd7\x4e\x7e\xd5\xe7\xcc\x12\x25\x58\xc9\xfb\xae\xff\xba\x43\x99\x90\xc7\xd5\x34\xf4\x80\x67\x16\xa1\x95\xee\x71\x0f\xec\xff\xc9\xc2\xc6\x9e\x2d\xf3\x36\x0f\x5e\x25\x6c\x14\xdf\xff\x30\x82\xc3\x9d\x81\xff\xfd\x23\x92\xed\x9b\x62\x08\xa2\xda\x49\xbb\x5d\x98\x0a\x82\xd4\x2e\x34\x17\x4f\x91\x25\x78\xb7\x49\x86\xef\x98\xfb\x91\x85\x42\x76\xb5\x8b\xf1\x55\x83\x2c\xb8\xae\xdc\x76\xbc\xd8\xe7\xc5\x24\x14\xcd\xb1\x99\x17\xba\x31\x9f\x85\xa9\x89\xb5\x76\xf7\x6f\x54\x12\xe4\xa4\xd0\xe4\x71\xe6\x15\x21\x79\x8f\xc8\xaf\xa2\x59\xf7\x08\x0f\x5e\x65\x9f\x91\xeb\xcf\x23\xe4\xe8\xec\x8c\xf1\xb6\x6f\x21\x4c\x8d\x4f\x10\x55\xb0\x76\x23\x04\x9f\xf4\xdc\xfc\x3d\xa8\x9c\xf0\x96\x75\xd4\x23\xce\x22\x89\xc1\xf6\xfa\x2d\x4d\x47\xd5\xca\x09\xf6\x21\xc6\xed\xd6\xcf\x0b\x09\x1d\x6e\xcb\xbd\x7a\x9e\x1b\x10\xec\x57\x1d\x1c\xdc\x32\x71\x50\x5f\xaa\xce\xae\x3b\xf3\x39\x84\xf0\xf7\x4f\x6c\x8a\x44\x54\x05\x03\x77\xab\x28\xde\xff\x46\xb5\x6a\x7e\x47\x3c\xbc\x4e\x11\x06\x14\xdc\xcf\x16\x6b\x87\x4f\x2a\x9e\xde\xe1\x87\x0f\x2d\x3c\x32\x09\xe6\xdb\x16\x78\xa8\x3a\x1d\x21\xcc\xd0\x13\xb9\x39\x52\x22\x4b\xe0\x73\x6f\xb8\xf2\xce\x32\x80\x50\x14\xee\xa5\xa4\xa2\xc9\x45\x88\x5b\x15\x3b\xcd\x72\xd4\x90\x10\xbb\x46\x76\xbe\x91\xa8\x1e\x61\xf9\x94\xea\x13\x47\x5c\xf3\x58\x48\xea\xfe\xf0\x79\x6d\xca\x5e\xc2\x6a\x36\x2b\x09\x97\x9d\x12\x84\x3a\x61\xf6\x53\xf9\x5e\x57\x08\x31\x95\x1b\x2c\xa7\x5e\x30\x26\x14\x8c\x55\xd6\xce\xd8\xa3\x4c\xf8\xe6\x19\x9f\xca\x71\xe8\x2f\x0b\x9a\x77\x4e\x68\x95\x3d\xcf\x22\xb4\x75\xb7\x9f\x4c\x39\x3f\x8d\xe0\x53\x53\xb0\xe2\xee\x41\x95\x49\x78\xd3\xf4\xaa\xfa\x60\x16\x1b\xe1\xe6\x5e\x89\x7b\x49\x57\x76\x10\x5e\x49\xdd\xfc\x15\xb6\xc5\x9e\x20\x3d\xeb\x29\x47\x53\x31\x43\xe0\x32\x4b\xf4\xb0\xe9\xe8\x21\x3c\xde\xb8\xe0\xf3\xae\xd0\x4c\x42\x6b\xd2\xb3\xb0\x01\xa5\x4c\x06\xbb\xb7\x9b\xfc\x79\x34\xb1\xd3\x28\xb7\xfa\xf9\xd1\xbd\xea\x84\x52\x83\x07\xcd\x1d\xa3\x06\x84\xbc\x3a\x07\x91\xa7\xba\x27\x08\x01\x6f\x95\x7c\x4e\x09\x34\x94\x62\x61\x75\xd4\xfd\x92\xb3\xa7\x27\x15\xcf\xb8\x93\x21\x09\x0b\x56\x11\x34\x0a\x86\x0d\x67\xda\x59\x13\xde\xbe\x2c\xb0\xb2\x75\xd3\x25\x74\x2d\x9f\xe9\xb5\xa9\x43\x86\xfe\xed\xa4\x8e\xd7\xdb\x9c\xae\xed\x67\xe1\xef\xd0\xc1\x35\x8a\xd6\x8a\x84\xd0\xe0\x0c\x25\xe9\xb6\x22\x42\xf7\x2f\xd3\x77\x22\x95\x65\x84\x72\xf6\xed\xc9\xb3\x67\xd7\x11\xf4\xbc\xe8\x6d\xc5\xfa\x33\xff\x0b\x1a\x65\xda\xb6\x77\x37\xdc\x67\x01\x2d\x7f\xc7\x93\x94\x17\x11\x66\xea\x45\x5f\x70\x7b\x25\x48\xc8\xfe\x32\xed\x78\x4a\x85\xf2\xa4\xf2\x7f\x38\xa8\x58\x7f\x58\xf0\xce\x18\x0b\x2a\x9c\x61\x57\xb6\x4d\x1b\x66\xe1\xe2\xc1\x04\x83\xab\xeb\x9f\x32\x48\x79\xac\xb4\x8a\x6d\x73\x31\x41\x21\xbc\xa5\xe6\xdb\xfa\x2d\x04\xef\x88\x9c\xf5\xfc\xbb\xa6\x13\x1c\x25\x7e\x95\x1f\xeb\x9b\x43\x30\xf1\x30\x96\xee\x5a\x5c\xcd\xc0\xb9\x2e\x04\x06\xd6\x87\x08\x11\x62\xfc\x8f\x6a\xb6\x70\x12\x66\xca\xc6\x9f\xed\x72\x54\x26\xac\xb8\xc3\x7d\x7a\xbd\xfa\x52\x42\x65\xf9\xf6\xd1\x42\x8e\x4b\x04\x7f\x95\x52\x5f\xde\x2e\x11\xc2\xac\x53\xdb\x0c\xd5\x5e\xb0\x08\x67\x2a\x0a\xee\x0d\x48\x1b\x13\xa2\xf7\x2a\x6a\xb7\x7c\xd3\x21\xd8\xef\x57\x7b\x78\x28\xdd\x9a\x30\x18\x63\xc3\x51\x7a\xcb\x80\x50\xfc\x93\x4d\xa5\x2c\x49\x9f\xd0\xfb\x2b\x40\xfa\x98\xe3\x6a\xc2\x9b\xb4\xcb\xb9\x06\xcc\x34\x42\x6c\x8d\x91\xe0\x47\x95\x6f\x0c\x5c\x7d\x93\x1b\x96\x8e\xe5\x12\xae\xb0\x3d\x95\x38\xe6\x9c\x48\x38\x79\xf2\xbe\xfc\xd8\xed\x4b\x04\xa9\x29\x9e\x2a\x8d\xcb\x32\x19\xbc\x7f\xd8\xa0\xf7\x5f\x59\x66\x9f\xe1\xd3\x19\xe2\x41\xb8\xb5\x4f\x4c\x73\x07\xa7\x17\x21\xe5\x60\xad\xc4\x99\xd5\x67\x09\xa7\xa7\x18\x4d\xe3\xca\xbd\x4b\xf8\x13\x1a\xba\x66\x28\x70\x1d\xe1\xab\xa5\xe9\xc0\x0c\x39\x6b\x82\xc7\x21\xdd\x2b\x67\x53\x1c\x08\x61\xfb\xe4\xbc\x97\x49\x5c\x22\x7c\x72\x6a\x75\x39\xf7\x77\x35\x21\x7b\xb8\xcc\xfc\x42\x6e\x21\xe1\xb1\x61\xa3\xa9\x00\xc7\x19\xc2\x0b\x56\x9b\xf0\x07\x77\x57\x42\xd5\x3c\xa7\x8f\x37\x34\x9f\x11\x2a\xfd\xa6\xbc\x28\xf2\xba\x43\x90\x6c\x98\x2e\xa7\x52\xea\x46\xb8\xf9\x41\x2e\x9b\x4b\xe0\x22\xc1\x2e\xd1\xd1\xb4\x77\xf9\x2b\x82\x5a\x9f\xd7\x82\x92\x82\x5c\x42\x0b\xb7\x7e\x70\xd6\xaf\x6d\x0c\xd4\x4b\x0a\x15\xfa\x6f\x69\x10\x46\x07\xef\xbf\xee\xd8\x23\x44\x58\x34\x36\x76\x54\x52\x37\x86\x40\xfa\x05\xd6\x96\x1f\xf8\x08\x32\xca\x4e\xf1\xb7\xf4\xc7\x59\xa8\x3b\xb9\x6d\x71\xd5\x58\x2e\x83\x8d\x85\xd3\xf6\xa8\x5e\xfd\xcb\x82\xdc\x68\xdf\x6f\xc9\x50\x4b\xc2\x9b\xc4\x22\x73\x9b\xed\x46\x84\xf5\xbb\x0e\xb2\xfa\x45\xb6\x11\x7c\xcc\x67\x47\xe9\x9d\xb6\x21\x98\x7d\x5f\x1d\x64\xdf\xef\x41\x88\x52\x32\x7f\x33\xa2\x78\x8c\xa0\x3f\x50\x6d\xfd\xe5\xa0\x0f\x41\x79\xcc\xed\x57\x75\xb2\x22\x81\xd3\x2a\xe6\x1a\xbf\x92\x11\x41\xeb\xa6\x7f\x77\x89\x5e\x11\xe1\xea\xe3\xa9\xd6\xf1\x59\x85\x0c\x1a\x94\xda\x65\xfe\x03\xfb\xbd\x74\xf6\xff\x10\x5f\x2b\x72\x96\x5b\x63\x1b\x61\x5a\xed\xcd\xe6\x9d\x66\x77\x09\x48\x2f\x94\x3a\x32\x92\x4f\xd8\xef\x2d\x91\x66\x33\x7b\x90\xe0\x2c\x9e\x35\xcd\x77\xf0\x1b\x81\xfb\xc3\xd3\x29\x57\x2d\xda\x08\x6a\x87\xfe\x9c\xb7\x0f\xae\x20\xd4\x15\x3c\xe9\x7b\x3f\x51\x1e\x9f\x9a\xf6\x28\x55\x79\x80\x50\x21\x13\xe8\x32\xea\x9e\x3e\x69\xa7\x68\xfa\xdc\xcd\x8d\x0b\xc3\x09\xf1\x86\xb2\x99\xc3\xb6\x15\x04\xaf\xf9\x67\x86\x7f\x4d\xe0\xad\xc2\x95\xc1\x8c\xf6\xf8\x49\xe5\x6e\x5f\xcd\x96\xff\x76\x76\x3f\x9d\x91\xa0\xd1\x7c\x9a\x10\x25\x55\x10\x93\x1e\x72\x9a\xb0\xe1\x60\x40\x66\x5a\x52\x10\x41\x44\xe8\xda\x90\x8d\x43\x06\x41\xf5\xb5\x59\xf6\x86\x45\x57\x09\x35\xd9\x79\x9a\xff\x2d\x57\x5d\xee\x8f\xde\x65\xa9\x4f\x78\xfc\x54\xac\xa5\x2e\xdd\x68\x52\xa9\xc9\xfa\x34\x32\x55\xfd\x1d\x0b\xa1\xa1\x79\xcb\xbd\x02\xc2\x09\x7d\xcd\xe5\x65\x42\xdd\x6c\x84\x7d\xac\xd7\x1e\xd2\xd2\x6d\x84\x18\x0f\x9e\x39\xa6\x23\xa7\x09\xc7\xdc\x7c\x76\x7d\x95\x6f\x62\x70\x2a\x66\x8c\x19\x8a\xf3\x25\x1c\x0f\xff\xb5\xd2\x76\x46\x19\x21\x68\x5d\x93\x8c\xcd\xa2\x61\x16\x9e\x6c\x37\x3c\x70\xf6\x74\x28\x41\xf8\x6f\xd2\x05\xeb\xa0\xe5\x84\x05\xcf\x1e\x47\x98\x28\x56\x32\x28\xcc\xbf\x74\xf4\xbf\xf2\x40\xb1\xfb\x4e\xe0\x48\x28\x21\x92\xa3\x5a\xeb\x45\x89\x0c\xc1\xa6\xbd\xb9\xe8\xd7\x53\x77\xc2\xcc\x95\x17\xe4\x2f\xfa\xec\x24\x74\xf9\x3a\x44\x05\xaa\x28\x13\xcc\xc6\x39\x25\x67\x7b\xab\x12\x6c\xbc\x9f\xaf\x0d\x39\x34\x8b\xf0\x55\xdf\x4d\xd6\x47\x6b\x1d\x61\x75\x5b\xce\x1c\x21\x65\x43\x82\xa8\xd0\x14\xe7\xd1\xb1\x9d\x84\xa7\xbc\xde\xc2\x29\x39\xfa\x84\xe4\xe3\x82\x5c\x37\x7a\x36\x10\x86\x39\xae\xf3\x1c\xbd\x73\x98\x70\xe8\xdb\xa8\xce\x6b\xb3\x62\x82\xae\x44\xe7\x0e\x0f\x89\x5e\x16\x7e\xeb\x2e\x32\x32\xbf\xb9\x89\xc0\xdd\x74\x75\xa7\xa7\x4e\x0b\x41\x41\x45\x3e\xb8\xc0\x55\x81\xc0\xb6\x52\xcb\x73\xcf\x8e\x4f\x2c\x1c\x97\xdf\xf8\xb4\x6d\x93\x0a\xfd\x43\x58\xb6\xda\xe2\x70\xa3\xb4\xd2\x7f\x68\x67\x8c\x87\x6d\xcf\x44\x11\xf8\x56\xf9\x4f\xe5\x3b\x34\x19\x69\xd3\x5f\xc5\x72\x4f\x1c\xa5\xff\x87\x3d\x3c\x0d\xe5\xe2\xbe\xfb\x26\xe1\xba\xd4\x81\xed\xec\xc3\x7e\x0c\xf6\x6c\x3e\xf7\x53\xc3\x44\x9e\xb0\x57\x2d\x70\xf7\xf2\xd7\x9a\x84\x43\x6f\x57\x17\xa9\xb7\xaa\x11\xf8\x37\xe9\xc4\xce\x55\x50\x26\xc4\x6a\xb8\x26\xac\xb2\x90\x22\x24\x6a\x3d\xf4\x58\x18\x69\x4d\x10\x6d\xee\x94\x2f\x32\xde\x41\xf0\xff\x6a\x64\xca\xbb\xd0\x89\xe0\xf6\xa0\x69\x4c\xcb\x60\x2d\xc1\x96\xcb\xe0\x5c\xe7\x0d\x6f\xc2\x53\xd7\x67\x5f\xb2\x57\xf9\x13\xee\xf6\x8f\x6f\x4c\x48\x3c\x38\x69\x74\xf3\x7c\x8a\x55\x81\x9a\x0c\xe1\x60\x10\xaf\xcd\x94\xf5\x4e\x84\x95\x16\xef\xd4\x77\x87\x3a\x11\xea\x53\x98\xef\xbb\x8f\x0a\x11\x9e\xd5\x99\x18\xfc\xdc\xf3\x89\x85\x99\x4a\xb3\x75\x7b\xcb\x3a\x4b\x21\xa0\x9b\xa0\xca\x53\xc6\x45\x58\xf0\x6d\x43\xb7\x6c\xe4\x94\x49\xd8\x64\x1e\x2e\x13\x39\xe7\x75\x29\x7e\x8b\x45\x59\x3c\xd6\xce\x25\xe8\x3c\xcb\xdb\x5c\x1e\x50\x41\x78\x90\xb0\x59\xad\x92\xdf\x9d\xf0\xfe\xed\x8c\xb5\x73\xf6\x38\x11\xe2\x4f\x88\xf0\xa8\xb0\xf4\x08\x1f\xdb\xc3\x8d\xb6\x49\x17\x11\xe6\x27\xf7\x3f\x92\x31\xbe\x44\xf0\xb1\x1d\x1d\xfb\x30\xea\x4e\x70\xb5\x3f\x97\x1c\x74\x34\x9e\x50\xb3\x29\xf7\xe3\xa8\xd7\x42\x82\xe8\x19\xff\xa2\xe3\x7b\xca\x19\x24\xa7\xfb\xdf\x73\xda\x12\x46\x08\x58\xb7\x61\xb5\xc1\xee\x97\x0c\x92\x5f\xda\x4c\x77\xf0\xda\x49\xd0\xf0\x7e\xac\xb6\x7f\x7b\x13\xc1\xb4\x6c\xb1\xef\xc5\x8d\x4d\x84\xae\x93\x22\x7b\x4a\xba\xcb\x08\x9b\x4c\x4e\x8a\x44\x72\x6b\x13\x76\xd8\x94\xcf\xf1\x2d\xe7\x24\xb4\x38\x86\xed\xf1\x3c\x96\x4a\xd8\x62\x11\xcd\x67\xd2\xb7\x96\xe0\xea\xe4\x6c\x7e\x6d\xfd\x6a\x42\xe2\x8f\x77\xf6\xdd\x1e\x2b\x08\xe9\xae\xcd\x3f\xe4\xd3\xe7\x10\xce\xca\x96\xdb\xbf\xd6\x7e\xc0\x40\xe8\x23\xed\x12\x78\x58\x49\x18\x0b\xba\x14\x9c\x79\xd8\x97\xc0\x97\xbb\x65\x4e\xcc\xb4\x59\x84\x3b\x57\xe3\x93\xf6\x15\x15\x30\x90\x5a\xcd\x5d\xbc\x41\xf0\x3b\x0b\xfc\x5d\x03\x21\xec\x81\xdb\x09\x42\x57\x76\x9f\x1f\xf0\x1b\x67\x41\x3a\xab\x9c\x9f\xbd\xb1\x95\x41\xb5\x30\x97\xd0\xf7\x89\x12\x5e\x1d\xbc\x43\xf3\x61\x66\x29\x4e\x7e\x83\x64\xb0\x0c\x1f\xe1\xb0\x40\x82\x4f\xb1\xbe\x19\xa1\x74\x45\xc9\xae\xd0\xaa\x0d\x84\xa8\x8e\xd2\x97\xb3\x6b\x7e\xb3\xb0\x6f\x5d\xed\xe5\xf3\xef\xd8\x08\xd2\x0f\xe7\x9f\x9e\x9e\xa0\x4c\x50\x74\x8c\x5a\xb8\x58\xb3\x83\x41\xa5\xf4\x6b\x8f\x26\x17\x25\xc2\xdc\x56\xe7\x2b\xd7\x1d\x7a\x58\x88\xb4\x97\x3c\xa6\x22\x53\x49\x20\xd5\x9c\xf6\xf5\x77\xcc\x08\x12\x0b\xbe\xf5\xcb\xf9\xca\x10\xfe\xb0\x2a\xf5\xa9\xe1\x24\x21\xfa\xd4\x3c\x29\xe7\x9d\x62\x04\xcf\x3f\xeb\xff\x7e\x68\xaa\x23\x9c\x34\x9b\xde\x2c\x20\xfd\x98\xc1\xfe\xfc\x2c\xc9\x79\x9b\xeb\x09\x33\xbd\xc2\x1f\x6f\xf4\xdc\xcb\xe0\x62\xf4\x9f\xd7\xd7\x1b\x0c\x09\xba\x67\x8f\x3c\xf9\xb8\xf0\x17\x0b\x8d\x76\x3e\x3f\x67\x6c\xdd\x41\x98\x65\x78\x3b\x89\xe3\x86\x11\x03\x3e\xcb\xe6\x21\x5f\xfe\xfd\x84\x06\xc7\xe5\xba\x7e\x9d\xbf\x58\xe8\xbc\xcf\xa5\x58\xbd\xf1\x0d\x0b\x23\x85\x37\x3a\xc4\x4e\xc4\x10\xe6\x35\x3c\x94\xfc\xb3\x7f\xf7\x24\x6c\xea\x91\x38\x9c\xf9\xf1\x2d\x0b\x62\x0b\x16\x1a\x8b\x24\xbe\x65\x41\xf5\xd1\xe7\x35\x15\xd2\xaa\xf4\x0f\x5e\x15\x57\x13\x2e\xfc\x5d\x4b\xb8\xbc\x3a\x39\x6b\xd5\xc4\x4e\xe5\x8c\x65\x33\xeb\x67\x79\xd2\x88\xd9\x87\xf9\x8f\xe6\xbb\x12\x78\xd5\xa7\x09\x8b\x56\xcc\x26\xcc\x0c\xde\x77\xf2\xc8\x26\x0d\xc2\x9f\x58\xe3\xb1\xeb\x4b\xdc\x08\xc9\xac\xe8\x6f\x49\xf5\xd6\x04\x33\x65\xd1\x19\x8b\xb8\x79\x09\x5b\xfe\x04\x76\x8d\xda\xfa\x13\xae\x7e\x36\x8d\xda\x19\x23\x43\x88\x50\xe8\xa9\x14\xb2\x5b\x43\xd8\xf9\xad\xe3\xe6\xa7\x72\x5e\x82\x63\xe3\xba\xa5\xd7\x05\x32\x26\x95\xf3\x1d\xe1\xa5\xfd\x57\x9a\x4b\xd1\xb5\x48\x87\x5d\xd9\x61\x2b\x01\x3c\xe7\xb5\x55\x0f\x7d\x64\x21\x68\x7a\xfa\x47\x7e\xe9\x08\xc2\x6b\x2b\xe1\x23\x0d\xec\x46\x93\x46\x27\x56\x25\xba\xce\x2b\xff\xce\x42\x8a\x6f\x6d\xdb\xc8\x2f\x59\xfa\x87\x02\xb7\x6d\xdb\x0d\x2a\xc0\xfa\x87\xe6\x17\x3c\x5c\x0e\x1a\xd9\x2c\x88\xf6\x8d\x6f\xd1\xab\x7b\x5b\x0a\x0e\x77\xa7\xec\x25\x2f\x77\xd3\x3f\x9c\x32\xf1\x48\x8c\x5c\xb8\x8c\xa0\x6c\xe0\x9c\x14\xce\xb7\x65\x12\x76\x7c\xa9\x97\xf3\x3e\x3f\xcc\xfa\x07\x87\x75\xac\xc8\x4b\x13\xaf\xce\x51\x01\xb1\xe0\xbd\x1b\x0e\x10\x0e\x14\x75\xcb\x46\xdd\x97\x24\xdc\x1b\x5d\x5d\xab\x1f\x6f\x4e\xd8\x98\x59\xfd\xf6\x4b\xfd\x5e\x82\xc5\xdb\xe5\xfe\x7b\x8f\xc4\x13\xc4\x37\xbc\xdd\x0a\x2b\x69\xc2\xf9\xac\x46\x05\xd5\x45\x9a\x84\xcb\x9e\xe9\xd5\xb7\xdf\xd9\x13\x16\x64\xfa\x0b\x1e\xce\x58\x4f\x08\x11\x52\x15\x8f\xbb\xbf\x80\x90\xe7\xc9\x3c\x7e\x6a\xa6\x40\xa8\x6b\x39\xdc\x5d\x35\xb4\x95\x70\x9b\x7b\x9d\x4d\x9f\xa2\x11\xe1\x79\xf7\x2d\x55\x81\xdb\x1b\x08\x2f\xf2\x0b\xd8\xa5\x55\x12\x09\xb3\x2f\xe5\xdc\xf3\x85\x18\xa1\xb2\xba\xab\xe8\xb5\x98\x37\x21\xea\x92\x57\xe8\xc7\x95\x6b\x09\x96\x33\x87\x94\xb7\xbc\x0d\x26\x7c\x32\x14\x3f\x8a\x9f\x1b\x08\xdd\x7a\x0b\x3c\x8c\xcc\x8f\x10\xea\x8e\x1a\x04\x2c\x18\xde\xc1\x20\xe4\x44\x45\x6d\xfa\x7b\x3f\x42\xdc\xf8\xca\xf0\x13\x37\x8d\x08\x77\xdf\x5e\xf6\xf9\x61\x74\x89\x50\x50\xbc\xd0\x2d\x30\x28\x85\x81\x7f\x82\x48\x62\x76\x86\x03\xa1\xf4\xe4\xa6\xf2\x29\xc1\xb2\x84\x87\x77\x5f\x2c\xfe\x34\x7a\x82\xc1\xb9\x86\xe0\x63\x5c\x6c\xd6\x84\xe0\xa7\x33\x5b\x85\x4b\x8c\x09\xfc\xea\x8f\x8f\xac\x94\xb5\x21\x44\x26\x5a\x4a\x14\xaf\x3b\x48\x30\xe2\x59\xa2\xe1\xdc\x5f\x46\x70\x3b\x57\x24\x78\x9c\x67\x2f\xe1\xf9\x36\x8b\xb4\x30\x5e\x05\x82\x59\x51\xda\x9d\xc7\x26\x25\x0c\xaa\x3f\x87\x16\xcc\xbe\x39\x8b\x90\x6a\x20\xf6\x79\xe9\x3e\x23\x82\xc5\xdc\x29\xbe\x42\x1b\x6b\x09\xc6\xc3\x36\x77\x05\x73\x1b\x08\x55\xc1\xd7\x7c\xa3\xa4\x3a\x18\x7c\x9d\x05\xff\x54\xfe\x7c\x02\xfd\x7e\x67\x38\xf6\xf5\x33\x83\xbf\xaf\xaf\x83\x3d\xe0\x25\x83\x47\x76\x4d\x2f\x85\x43\xb8\x09\xc7\xbb\xe7\x5c\xbc\xe2\x52\x47\xe0\xd2\x34\xf5\xba\xbd\x21\x84\x20\x66\x75\xce\xbb\xd4\x65\x1a\xe1\x86\xf8\x89\x83\x9a\x61\x9a\x84\x0f\x23\x9d\x5f\x4a\xca\xa3\x19\x44\xf4\x56\x32\x82\x62\x17\x18\x94\x84\xb6\xc9\x9c\x93\x11\x20\xb8\xbf\xc9\x7b\xa4\xe6\x3a\x97\x30\x34\x2c\xbc\x76\xb4\xcf\x92\x90\x3f\x65\xad\xfd\xa3\xb3\x21\x84\x25\x2f\x79\xfc\x4e\x57\x5c\x21\xb4\x87\xdf\x78\xf3\xa4\xda\x9a\xb0\x78\xba\xa8\x63\xb4\x5c\x2f\x21\x90\x2b\xa6\x7b\xa5\xdd\x75\x42\xca\x22\xc3\x06\xf7\xa7\x05\x84\x82\x3b\x22\x53\x3f\xad\x51\x24\x70\xc9\x2a\x2f\x4c\x0e\x12\x27\xe4\xd4\x39\x9b\x5d\x5a\x72\x89\x41\x3a\xbb\xf7\x33\xce\xd2\x6f\x2c\x5c\x25\xeb\xaa\xec\x86\x8d\x84\x2b\x73\x92\xda\x22\x39\x1d\x09\x57\xd5\xc3\xd6\x2c\xfe\x11\x34\x71\x59\x8f\xca\x9f\x5e\x72\x8c\xa0\xf0\xba\x6f\xc7\x4a\x63\x7d\xc2\xe7\x65\x53\xf4\xab\x8a\x0f\x11\xc2\x7c\xb2\xde\x78\x8a\x9f\x25\xc8\xfa\x19\xaa\x28\x08\xac\x26\xa0\x3d\xcc\x58\xee\xa8\x3b\xa1\xdb\xa2\xd6\xfa\x7a\xb7\x28\xc1\xe1\xe3\xa8\xd0\x8b\xf6\x56\xc2\xda\x9b\x53\x16\xc6\x97\x3c\x23\x98\x5f\x3c\xfe\x95\xd7\xb4\x85\xa0\xde\xff\x40\xe1\xf6\xfd\x32\x42\xde\xf6\xe3\xd3\x7d\xba\x6e\x11\xf6\x41\x36\x73\x2f\xa7\x13\x21\xb8\x77\x17\xdb\x53\xd1\xf5\x84\x6c\xe9\x60\xfe\x1f\x5b\xb7\x11\x66\xed\x91\xbd\x1c\x7b\x30\x8d\x20\xcb\x31\xff\x8c\x59\xb6\x26\x21\xfb\xd5\x8c\xc2\xdf\x73\x15\x08\x27\xce\x77\x35\x71\xae\x11\x20\xe8\x7c\xcf\x3d\xea\xf9\x60\x03\x41\x3d\xa0\xca\x8b\x33\x7f\x05\x61\xc1\x15\x93\xa9\x41\xa7\x89\xd0\xd2\xb6\x27\xd3\x4f\x41\x86\x70\xad\xe6\x96\xd3\xee\x4b\x53\x09\x73\xec\x52\xe3\x4b\xad\xd2\x09\x01\x4b\x4c\xea\x0c\x76\x8b\x12\x3a\x8f\xb1\x4b\xb9\xdd\xde\x4d\x30\xb9\xa0\x77\x8f\x6d\x7c\x0d\x61\x9d\xed\x81\x4f\xc5\xde\x6b\x09\x9b\xf9\x2c\x3f\x95\x77\x78\x13\x3e\xdc\x64\x3b\xaf\x1b\xbc\x88\xa0\xf0\xfc\x9b\x80\x4b\x59\x06\xa1\x77\x4c\x30\xc4\x69\xb4\x9c\x20\x2b\x68\xb0\xfd\xbe\x94\x2d\xa1\xca\x36\x54\xbe\xac\xdb\x8c\xf0\xc3\xaf\xa4\xe3\x81\x8c\x03\xc1\xba\xb3\xbc\xd0\xc5\x65\x8c\x85\xc7\x45\x6e\xd7\x7f\x66\x65\x32\x18\xae\x30\xdc\x2a\xe0\x76\x80\xf0\x67\xd6\x8e\x10\x81\xbb\x2b\x09\xb7\x22\xec\xb5\xe7\x6d\xd0\x25\x14\x9f\xf3\x5b\x9d\x7f\xfb\x13\x0b\xd7\x24\xf2\x82\xce\xb8\xf0\xd3\x3f\xf8\xdf\xd5\x1a\x0b\xf1\x6a\x2b\x85\x91\xe8\x31\xc5\xda\x70\x43\xc2\xbb\xa2\x91\x97\xf2\xe7\x17\x11\xf4\x2e\x4d\x23\xb7\x03\x6f\x09\x09\x55\x35\xe1\x95\xbd\xc5\x84\xa3\x0f\x6e\x35\xda\x97\x7c\x67\xc0\xe6\x20\xf2\xe7\x8f\x53\x28\x61\x56\x92\xdb\x86\xff\x46\x9f\xd2\x17\x49\x6c\xfc\x1d\x4d\x08\x50\x5d\x51\xf8\xc5\xab\x9a\x50\xba\x3d\x6c\xfe\x7f\x58\x9c\x69\xd7\xa7\x35\x31\x8a\xd5\x9e\x7d\xec\xf3\x44\xd1\x54\x14\xf7\xfa\x34\x01\xa5\x63\xd3\x77\xcc\x13\x39\x4b\x38\xb6\xdb\xe5\xa4\xfb\xe3\x50\x42\xe9\x63\x0d\x61\x31\x81\x42\x82\xfb\xa7\xd7\xe2\xff\x8d\x9a\x7b\x62\x5f\xfd\xb0\x3c\x4b\x78\x73\x7a\x48\xa7\xe6\x90\x3f\x61\x58\xab\xd4\xa5\xfd\x7c\x14\x61\xd9\x82\x98\x1c\x83\xcc\x20\xc2\x0a\xa9\x27\xf7\xcf\xf3\xb4\x13\xac\xf8\x1f\x26\x4f\x69\x4d\x61\xd0\x7b\x54\x41\xd1\xa4\x38\x87\xc1\xbe\xc3\xa1\x1e\x4e\x4b\xfd\x08\x73\x15\x66\x30\xfa\xab\x7c\x08\x6b\x57\xff\x71\x0a\xfd\xec\x41\x38\xff\xf1\x8b\x45\x60\x54\x38\x81\xa9\x52\xdd\xc0\xb5\x20\x97\xb0\x2e\xda\x28\x55\xab\xb2\x9c\x20\x22\xfd\x6b\x6f\xc2\xae\x52\x82\xa4\xf1\xb4\x7d\xc2\x91\x97\x19\xf0\x5a\x2c\x6a\x18\x58\xd1\x46\x58\xa8\xf5\x73\x58\x86\x9d\x21\xfc\x30\x72\x7c\xb3\xd2\x45\x8b\xb0\x4e\x4d\x57\xbd\x3e\xf4\x04\xe1\x1a\xf7\x1a\xf6\x81\xf4\xb3\x84\x1a\x95\xbb\x15\x7b\x7d\x52\x09\xdc\xad\x6c\x27\x7c\x9e\xe5\x10\xb4\xaa\xd7\xbd\xf8\x25\xb2\x87\xa0\xa2\xd5\x73\x48\x5e\xe6\x37\x0b\x17\xab\xf5\xf9\xeb\xda\x0a\x19\x14\xad\x7a\x62\x12\xf7\xf1\x32\x83\x1a\xc7\xce\x2f\x7e\x5f\x06\x58\x78\x5b\xe1\x78\x34\xed\xfb\xf7\x49\x58\xba\x31\x6e\xbc\x48\xee\x55\x29\xf6\x9f\xa9\xf9\x5a\xff\xc9\x83\xb0\x76\x93\xd6\x89\xcf\x86\xcb\x08\x3a\x5b\x9e\xd5\x15\x06\x4e\x1c\xb0\xe7\xc7\xb4\x48\x65\x80\xf0\x88\xe5\x78\x59\x69\x02\x3d\xaa\x9f\x64\xff\x2b\xbb\x2d\x0c\x9f\x6e\x9d\x80\xba\x53\xba\x93\xee\xb9\x28\x06\xc5\xc9\xf6\x92\xec\xe3\x44\x38\x17\xf2\xce\x22\xd3\x33\x8f\x10\xbe\xf0\x77\x78\xb4\x73\x1e\x41\xdf\xff\xd8\x9f\xff\x4a\xc3\x82\x35\x0f\x6c\xf7\x67\x11\x14\x77\x84\xef\xff\xd8\x9a\x46\x60\x25\xaa\xbf\xdb\xd8\x1e\x40\x90\xc9\x8d\xb7\x75\x4b\x75\x23\x3c\x75\xfc\x38\xfd\xbc\xca\x20\x0b\xbe\x1b\xe2\x06\x4d\x76\xa5\x30\x48\xb9\xbc\xb9\xee\x69\x72\x3c\x41\x3b\xbd\x38\x44\x34\x2d\x9e\x20\x79\x7f\x83\xf5\xc3\x91\x17\x84\xd0\xcd\xef\x9b\xc5\xcd\x7a\x08\x3b\xde\xf7\x24\x2e\x99\x18\xcd\xdf\x6d\x2b\x65\xf5\x80\x45\x30\xc9\x7d\xdc\x18\x1e\x63\x42\x38\xef\x99\xea\xb7\xbc\x24\x7d\x52\x89\xe8\x2b\xd1\x78\x76\xfe\x28\x81\xe3\xf9\x0e\x9b\xe8\x86\x2b\x84\xee\xf0\xb3\x6f\x9a\x96\x5c\x26\x94\x3b\x9a\xcb\xcd\x1f\xdd\x4d\xf8\x52\x2d\x92\xc3\xec\xde\x4d\x78\x2d\x66\x5e\xa7\xa9\xc1\x4f\x88\xd9\xf2\x30\xc7\x54\xcc\x81\xb0\xcf\x4d\x6f\x68\x55\xb7\x2b\xe1\xf2\xd7\x69\x5f\x0f\xf0\x3a\x12\x6c\xcd\x73\x5c\x5e\x6d\x58\x42\xe0\x93\x2e\xae\xf3\xde\xb6\x9b\x41\x01\x5f\xdc\xeb\x4f\x1c\xf2\x04\xcd\x8a\x58\xdb\xa1\x9d\x2f\x09\x8d\xdb\x57\x37\xba\xdf\xba\x42\x88\xd1\x2b\x37\xdd\x73\x39\x9c\xc0\xcf\xb3\x48\xf5\xfe\x86\x12\x06\x15\xa6\x91\x03\xeb\x4a\xc2\x09\xdf\xec\x07\xfd\xef\x72\x7e\x21\xe4\x06\x5c\x9a\x59\x53\x57\x4d\xf8\xb2\xac\x2d\x36\x44\xb8\x86\x30\xc7\xf6\x31\x6b\xbf\x78\x10\xa1\x25\x59\xa2\x4d\xe9\xa3\x33\xc1\xe0\x4e\xbf\xd6\x9a\xdd\x71\x84\xd2\x2a\x1d\x89\x17\xb9\x01\x84\xa2\x4f\x86\x9c\xeb\x3e\xdf\x20\xbc\x1c\x7b\xf8\x2e\xfa\x6a\x20\x41\xfc\xde\x9c\xba\x6b\xe3\x01\x84\x1e\x07\x6b\xc5\x94\xb8\xd3\x84\x84\x1f\x95\xaf\xbe\x77\x0b\x10\x72\x38\xae\xdc\x80\xf1\x0c\x82\xea\xf2\x8d\xb5\xeb\x06\x86\x59\x70\xfa\xde\x61\xb9\x98\xa7\x82\xf0\x6a\xbf\xba\x4a\xb6\x58\x2c\xa1\xfe\x59\xce\xb3\x4e\xb6\xcb\x84\x69\xb3\x17\xd5\xfd\x4d\xe2\x23\xa8\x5c\xbf\x50\xde\xb4\x6e\x84\x85\x59\x5e\xfd\xd2\x25\xec\x1b\x27\xfe\x1a\x0f\x3f\x28\xf1\xbe\x63\xb0\x5f\xfd\x12\x1f\x87\x03\x1f\xa1\x6e\xed\xc2\xe1\xa3\x53\xd9\x09\xd5\xc3\x37\x72\x39\xa7\x0e\xb2\x50\x62\x17\x1d\x5f\x66\x2a\x4c\xc8\xbb\xd5\xa5\x1b\x1f\xfe\x9d\x05\x43\xeb\x81\xee\xac\x2a\x25\xc2\xde\xd5\xfc\x4f\x8c\x83\xdb\x19\x24\xc7\xbe\x5c\x29\xbe\xff\x3a\x21\xf0\x69\x45\x6d\xb3\xd9\x09\xc2\x54\xb5\x3b\x5a\xb3\x8f\x5e\x22\xd8\x5c\x79\xd3\x18\x21\x7f\x98\x60\x21\x64\x91\xed\xd8\xad\x49\x78\xa6\xb3\x50\x7c\xf3\xda\x48\x42\x12\xe7\x48\xb4\x59\xc0\x06\xc2\x56\xb3\x4f\xea\xe5\x17\xb9\x08\xef\xe4\x24\xee\x5c\x5a\xc5\x4e\x38\x2f\x65\x7b\xd6\x2b\xd8\x8b\x30\x77\x68\xc6\xd2\x99\x2b\xc4\x08\x3f\x4d\xd2\x94\xeb\x85\x16\x10\x4e\xed\x69\x8d\x67\x4b\xe2\x20\xc8\x9f\xfe\x55\x7e\x5e\xec\x27\x0b\xab\xce\x7d\x88\x32\x7d\x5d\x48\x40\x03\xbf\xf4\xb6\xda\x70\xc2\x97\x06\xb5\x9f\xb5\x2b\x2e\x13\x84\x12\x82\x36\x3d\x9a\x80\xd6\x34\x2b\x53\x01\x59\x07\xc2\xf5\xac\xfe\x7d\xc5\x33\x62\x19\x88\x8e\xaf\x77\x58\xc0\x53\x46\xb8\xf6\xbb\xa7\xc6\xb2\xf9\x21\xa1\x60\xcf\xe6\xb7\x6f\x9e\x7d\x21\xdc\x94\xae\x7b\xc3\x7e\xab\x98\xe0\x6b\x78\xa5\xf4\xdc\x5b\x59\x82\xad\xd7\x76\xd6\xac\x1b\x7a\x04\x19\x83\x67\x4b\x94\x2c\xad\x08\xc5\x76\x73\x54\x2f\xea\x28\x12\x5c\xaf\x70\xea\x9e\x4a\xcc\x64\xfe\x95\xda\x9c\x53\xac\x00\xf1\x7e\x16\x1e\xaa\xcc\x11\x58\xb1\xfd\x2e\xe1\x1c\xef\x68\x7a\x85\x52\x3b\x83\x2a\x95\xae\x0e\xbf\x7c\x15\x42\x6d\xaf\xcb\xc5\x41\xb7\xf9\x84\x9d\x86\xd7\xa6\xd9\x49\x2f\x21\x28\x48\x66\x58\xfa\x8f\x2a\x11\x66\x48\x3a\x73\x36\x77\xcb\x13\x8e\xf8\xef\xe6\x1d\x3e\x22\x4a\x18\x51\xe0\xd8\x7b\xeb\xa2\x15\x21\xdd\xbb\xd3\xcf\x50\x65\xe2\x23\xfb\x64\xd1\xbc\x94\xbf\x83\x2c\xf4\xca\xde\x1f\x5f\x72\x6b\x17\x81\x67\x5d\x56\x75\xf9\x9a\x79\x04\x6d\x9d\xcf\xdf\x3f\xcb\xce\x22\xac\x69\xaa\x9f\xc7\x5f\x7e\x80\xb0\xaf\xae\xdc\x5d\x3f\x7c\x2a\x61\xb9\xab\x52\x60\x5b\xc8\x38\x0b\xec\xf0\x1c\x7f\xba\xf7\x0b\x0b\xf6\x36\xd2\x0d\x16\xf6\xa6\x0c\x34\xd3\x98\xe1\xe3\x0f\x9b\x08\xc3\xa5\xcb\xd6\xbe\x88\x79\xc8\x42\x8b\xc4\xcc\xc5\xdc\x5b\x0d\xe9\x1f\xec\x93\x22\x54\xe6\x2c\x9a\x4f\xd8\xf1\xdb\x75\xcb\x39\x45\x71\xc2\x9f\xb5\x2a\x19\xd3\x9d\x66\x10\x36\xaa\x8f\xaf\xa8\xe8\xdb\x42\xe0\x69\x5f\x2f\x1a\x75\xa0\x9b\xc1\xcd\xeb\x2b\x13\x16\x0a\x4a\x10\x74\xd2\x7e\x64\x3c\xca\x9e\x42\xf8\x9d\xfb\x48\x2b\x6d\xfd\x33\xc2\xbc\xea\xed\x16\xa1\x1f\x1b\x08\xe6\xde\x5f\x83\x2f\xf7\x9d\x63\xe0\x25\x3f\x7d\x41\xbf\x4a\x32\xc1\xdf\x6e\xb8\x8a\xd9\x21\x4f\x18\xfc\xde\x70\xc1\xb3\xf7\x1e\xe1\x8e\x79\x4c\x9a\xe2\xa9\x29\x84\x19\x35\x72\x15\xdb\x03\x68\x12\xc2\x66\xb2\xaf\x12\x94\xb6\x98\x54\xc4\xa2\x2d\xca\x95\x5f\x7c\x61\xe1\x8d\x5f\xa4\x6e\x5e\x69\x2c\xa1\xea\x8b\x78\x47\xaf\xb0\x0b\x81\x63\xf6\x52\xf6\xf2\xe3\x73\x09\x39\xec\x06\x0d\xab\x94\xca\x19\x3c\xdc\x9d\xf2\xf2\xaa\x57\x2e\x03\x89\x63\xaa\x2e\xa9\xd3\x0e\x12\xde\x2f\xda\x2f\xa0\x93\x7a\x89\x60\x9d\xcb\x95\xc3\x73\x5d\x99\x60\x67\xfd\xe6\xe2\x06\xf9\xf9\x84\x6b\x0a\x11\x82\xd7\x95\x8a\x08\xa7\x45\x0f\x7b\x56\x49\xd4\x13\x84\x63\xbb\x42\x5d\xb5\x9b\x09\xd6\x6b\xa3\x5e\x44\x4d\x8c\x0e\x5b\xf4\xb8\x68\x4f\x91\x21\x74\x2f\x2e\xb9\xde\x77\xb2\x84\xc1\xae\x57\xae\x57\x03\xc7\x92\x08\xd7\xf4\x1f\x37\xfb\x15\x55\x10\xb6\x75\x76\x2f\x3e\x98\x99\x4b\x10\x73\x7f\xf3\x6e\x26\xff\x0d\xc2\x67\x8f\x07\xde\x27\xc2\x2b\x09\x3e\xbd\x2f\xe2\x36\x95\x47\x4f\x3c\x17\x9e\x6e\x3f\x39\xf8\x8d\x50\x57\x68\x13\xb2\x91\x67\x2f\x8d\xf0\x04\xbd\x4a\x1c\x90\x67\xfe\x2f\xa0\x70\xd6\x05\xf1\xd5\xbe\xb2\x84\x13\xd5\xf1\x27\x76\x2b\x04\x11\xf6\xe4\x2e\xda\x7c\xf7\x7d\x38\xc1\x7a\xeb\xb6\xf9\xf7\xe7\x5c\x22\x44\x06\x4c\x2b\xe6\xbf\xb4\x87\x50\xd5\xbc\x7e\xda\xb3\x9a\x62\x06\x43\xa5\x09\xd7\xab\xc6\x42\x18\x18\x1f\x6a\x79\xb4\xc9\x3d\x86\x30\xdf\xa9\xf7\xb7\xf1\xf9\x37\x0c\xd2\xf4\x1e\x9e\x15\x46\x10\x81\xad\x38\xfb\xd3\x5d\xbe\x22\xc2\x88\xea\x0f\x9b\x87\xe1\x19\x04\x76\x9d\xad\xbb\xf2\xca\xa5\x09\x87\x25\x06\x4f\x7c\xe6\x9d\x43\x23\x63\x21\xaa\xb1\xbc\x89\x84\x9b\xe1\x6a\x2b\x36\x6d\x9c\x41\x10\x4c\x2d\x1d\xb8\xfb\xa8\x9a\x10\xc8\x6a\xd5\x56\x89\xef\x22\x74\x3c\x9a\x13\x19\xbb\x35\x95\x10\xc9\x3a\xf6\xb1\xe3\x4e\x01\xa1\x4e\x43\xfe\xc1\x82\xa5\xab\x09\x51\x37\xa2\x7f\x79\x15\x34\x12\xaa\x6e\x84\x28\x66\xec\x6f\x64\xa0\xe9\x33\xdf\xf2\xb4\x73\x16\xc1\x75\xf1\xe2\xac\x78\xd7\xc7\xa5\xf8\xe1\xb3\x52\x8c\x7f\xf1\x3c\xc2\xd0\x2a\xaf\xe3\xbd\xb6\x5d\x2c\xe4\x3b\x34\x3d\x36\xf0\xc8\x23\x2c\xca\xec\x79\xff\x1f\x3c\xd7\x7f\x2c\x5a\xee\xf9\x9b\x85\xc0\x6b\xfc\x5f\x57\xa4\x8a\x12\x1c\x0b\xf6\x7c\xb3\x93\xbf\x47\xf0\x19\xbf\x98\xd8\x5c\x2a\x44\xb0\xed\xec\x36\xfa\x94\x66\xf5\xbf\x10\x26\x73\xaf\xe5\x79\x8d\x38\x61\x51\xea\x5b\xed\x27\xaf\x53\x09\x57\xae\xed\xcf\x4c\x2d\x1e\x67\x81\x83\x99\xb7\x2d\xe3\x3a\x07\x61\xb3\xf2\x28\x09\x2f\x3e\xc1\x60\x39\x67\xd5\xdf\x0d\x9b\xed\x09\x3a\x11\x99\x86\x67\x4d\xd5\x08\xee\x87\x4e\x59\x46\x62\x0b\x61\xce\x68\x6e\xce\x05\x01\x6d\xc2\x20\xc7\x55\xaf\xbb\xd1\x4f\x08\x7e\xe3\x62\x8f\xd6\x47\xb6\x32\xb8\xb5\xed\xe8\x57\x97\xbc\x7c\x06\xb3\x57\xaf\x34\x6e\x59\x1d\x46\x58\x7a\xe6\xdd\xb1\x67\xde\xe5\x04\xdb\x4b\xed\x3d\xca\x51\x79\x0c\x8a\x82\xae\x4a\x79\xbc\xf0\x23\x28\xed\xe0\x62\xa5\xaa\x65\x13\x56\xd8\xf3\x2c\x2b\x52\x6d\x27\xe8\xe3\xc9\x55\xfe\xfa\x16\x82\xbf\x25\x37\x1b\xeb\x5e\x1b\xa1\x25\x72\x55\xb3\xa5\xcb\x94\x32\xd8\x37\xbd\x76\xbf\x76\xb7\x90\x60\xdd\xf4\x44\x39\xed\x57\x0b\xe1\x88\x85\xb1\xcc\xa8\x5d\x19\x61\x61\x18\x9b\xd0\xc5\x8b\x95\x04\x8e\x07\x61\x72\x59\x17\x6a\x08\xdb\x0d\xe5\x77\xc4\xb6\xd7\x10\x36\xf0\xdd\x7c\xe4\xb3\xb5\x9c\x41\x75\x7b\x45\x69\x93\xf3\x43\x06\xe7\xee\x4a\x3c\x91\x9a\x55\x4b\xe8\x11\x3d\x12\xd7\xba\xba\x9f\x50\xab\x32\xbd\xbb\x6c\xe2\xa7\xb8\x33\x4f\xfe\x65\x9f\x5a\x42\x98\xe7\x61\xba\x8a\xe1\xaa\x23\xf8\x3c\x92\x4e\x54\x8a\x6f\x25\x6c\xb1\x6a\xee\x95\x36\x7d\x46\xb8\xa8\x19\xb3\xc7\x4a\xad\x9c\x10\x97\x98\x58\xa6\xaa\x52\x41\x58\xfa\xa4\x2f\x78\xcb\x17\x16\xe1\x23\xf7\xdc\x7b\xae\x0a\x99\x0c\xca\x56\x39\xdd\x64\x09\x32\x84\x9e\xae\x57\xd5\x33\x6a\x6e\x32\x10\x77\xeb\x6b\xd9\x34\x51\x42\x2b\x96\x73\xd0\x8f\x7d\x84\xa9\x77\x44\x2d\x9d\xdf\x05\x33\x10\x69\xe5\x9c\x7e\xd7\xbe\x8e\x20\x37\x25\xc2\xcd\x70\x61\x31\x83\x53\x8d\xf7\x93\x96\x3d\xce\x24\xb4\x7d\xd8\x76\x53\x91\x77\x29\x41\x51\xc1\xbe\xec\xae\xae\x22\xe1\xcd\x39\x97\xe1\xe7\x0c\x17\x41\x7b\x61\xf2\xb9\x95\xb3\xd8\x08\x8a\x8e\x5b\x56\x89\xee\x7a\xc6\xe0\x56\xb8\xe3\xa2\xe5\x13\xa5\xdf\x3e\xf5\xe3\xfc\xfe\x77\x2c\x34\x89\xed\xea\x88\xcb\x96\x26\xd8\x9f\xe0\xca\x17\xd8\x9f\x4b\xb0\x18\x54\xb9\x9b\x20\xac\x42\xd0\xbb\xb3\x72\xee\xc6\x14\x0f\xc2\x36\x77\xb9\x03\xc2\xdf\xf6\x11\x3c\x84\x38\x44\xcf\xcf\x12\x20\x0c\xca\x3e\x72\xdf\xe7\xbd\x98\x20\x71\xb8\x66\xf9\xe8\xb7\x28\x42\xd8\xbd\x6b\x25\xd3\x7f\xc5\x31\x78\x5c\xa5\x71\xed\xf7\x44\xd1\x14\x33\xd1\x36\x37\x5e\x47\x98\xdd\xef\x25\xfc\x5d\xcc\x94\x70\xe7\xc0\x17\x4b\x4e\x8e\x44\xc2\xf5\x86\xc4\xed\xce\x9c\x93\xe1\x78\xc2\x72\x6a\x7e\xc4\xfe\x49\x48\xdd\xb4\x28\xa9\x29\xc7\x9e\x30\x7d\x44\x91\x7f\x97\xb4\xeb\xa4\xa2\x5e\xfc\xe5\xc6\x97\xb4\x7d\x04\x13\x31\xb1\x03\x3b\xa4\xb7\x13\x76\xfa\x65\x7f\xbb\x37\x7a\x85\x90\x1a\x70\x77\xb1\xa6\x70\x04\x81\x77\xc7\x94\xdb\x1f\x1f\xb2\x13\x60\x5a\x9d\x9b\xfa\xb0\x81\x85\xe7\xee\x65\x1e\x3e\x02\xbb\x09\x37\x98\xf0\xf4\xc0\x3c\x35\xc2\x60\xb7\x8d\xff\x97\xf7\x9c\x84\x5d\xea\x4b\x96\x98\xc5\xc7\x13\x0c\xcf\x74\x5e\xfc\x63\x38\xc6\xc2\x0c\xd3\x0d\x7c\xd9\xec\x60\x61\xd4\xe7\xa2\x70\xb0\xde\x75\x42\x6c\xb8\x99\xf2\x91\xd7\xba\x84\xb9\x1c\xe7\xa2\x5a\x84\x94\x09\xe9\x01\x5f\xee\x2d\x08\xdb\x40\x58\x3e\x6d\x81\xd2\xd7\xbe\xef\x2c\x78\xd6\x9f\x5d\xb0\x2f\xd6\x95\xf0\xe2\xe8\x75\xce\xf7\x1a\xfb\x09\x4a\xbe\x2f\x56\xdf\x56\x1e\x65\x41\xfb\x51\xfb\x8f\xc6\x99\x5b\x08\xa4\x1d\x78\xb8\x74\xd9\x56\xc2\xd7\xb9\xb3\xd5\xfd\xcd\x62\x08\x28\x6b\xef\xba\x34\x22\x4c\xb8\xb3\xa0\xf6\x49\x94\x09\x37\xa1\xe9\xd9\x2f\x9e\x43\xc1\xd6\x84\x47\x17\xf6\x71\x5a\xdc\x12\x20\x44\x5d\x75\x88\x7f\xce\xa6\x41\x48\x64\x55\x5c\xef\x70\x8c\x22\xb4\x94\xfa\x1c\xfe\x2d\x9b\xcc\x60\xdc\x70\x64\x71\xcd\x52\x6f\x82\x92\x36\x5f\xca\x22\xc7\xe9\x84\xfb\xdf\xca\xde\x5a\xe9\xec\x20\xb4\xb7\x27\x4c\x19\x8d\x37\x22\x2c\xe9\xdf\xaf\xbf\x6a\xa0\x80\x81\x44\xd1\xbd\x6f\x7c\xf6\xb2\x04\x87\xfc\x13\x1d\xdf\x37\xaf\x24\xbc\xbe\xbf\xc5\xf3\x8a\x62\x2e\xa1\x68\xf1\x19\x87\x44\x97\x73\x04\x85\x75\x76\x72\x1b\x64\x0f\x11\x2a\x5e\xc9\xda\x89\x20\x98\xc1\xcf\xea\xe8\xdf\xae\xd6\xc6\x84\x95\x21\xe7\x72\xea\x9e\xbb\x12\xa2\x4e\x9e\xcd\xdd\x69\xa9\x4c\x68\xdd\x53\x23\x17\x31\x33\x9e\xc0\x2e\xd0\xf0\x6e\x7a\xcf\x79\x42\xd5\x29\xdf\x59\x5b\x0d\x5e\x13\x4c\x3d\xe3\x9a\x67\x6c\x8d\x25\xac\x8d\xd4\xdb\xfe\x97\xb3\x9b\x20\x61\xbe\x4c\x74\xd3\xa9\x38\xc2\xba\x8a\x6d\x87\x3e\x48\xbc\x24\xd4\x39\xb5\xac\xee\xd7\xc9\x65\x60\xea\xb4\x39\x9c\x8b\x63\x90\x85\xca\xe1\x4f\xf2\xdd\xbc\xab\x09\x07\x93\x39\xb3\x74\x2b\xaf\x11\x3e\x07\x77\x49\xac\x38\x33\xc4\xc2\xb6\xfc\xb9\x0d\x6a\x73\x43\x18\x74\x15\x25\xdc\xca\x9f\xad\x4e\xf8\xea\x14\xc2\x63\x64\xaa\x4c\x28\xd5\xe3\xe9\xd6\x90\x4c\x61\x20\xed\x3b\x25\x7c\x85\xdb\x51\xc2\xcf\xa7\xed\x0f\x2a\x66\x46\x30\x88\x94\xfa\xbb\x5b\x44\x38\x8b\xf0\xde\xb3\xac\x7c\xae\x48\x33\xe1\x8c\x98\x50\x5c\x69\x53\x25\xe1\xa6\x7e\xee\x77\xbe\xae\x48\x82\xe1\x89\x36\xbe\xdf\x9f\x92\x18\x04\x46\x3e\x9b\xb2\xfa\x82\x33\x61\x5b\xeb\x75\xdb\x74\xf9\x83\xcc\x88\xa9\xd7\x9d\x22\x89\x7e\x42\xd4\x82\x47\x15\xc7\x79\xcb\x08\x27\x8f\x04\x2e\x70\xba\x73\x81\xc1\x01\xa7\x5f\x71\xb9\x9b\x23\x19\xf4\xee\x58\x5b\xec\x38\x51\x64\x3f\x5a\xad\xf2\x9d\xf9\x80\x70\x59\x6f\x83\xbe\xd0\x93\x46\x06\xbf\xcc\x62\x85\xdb\xe9\x39\x83\x44\x8d\x9e\x06\xb9\x3f\x05\x04\xa9\x0b\x41\x56\xbe\x73\x1f\x10\x3e\xee\x6d\x5d\xf6\xf7\x62\x10\x41\xe8\x9e\xc0\xc1\x03\x8f\xb7\x11\xa6\x1d\x75\xe5\xfb\xbb\xc0\x8e\xe0\xf4\x5d\x69\x74\x7d\xb1\x05\xa1\x70\xca\xa2\x4e\x89\xad\x07\x09\x3e\xb5\x29\xc6\x43\xf3\xcf\x12\xe2\xaf\x27\x85\xaf\x78\x71\x95\x90\xcd\x9c\xcf\x67\x37\x5e\x4e\x88\x1b\xe6\x7c\x79\xe2\x45\x35\x83\xf5\x4b\xe3\x74\xbf\x30\x1b\x09\xb5\x45\xa6\x8a\x47\x2e\x9a\x11\x04\xfe\x1e\x99\xbd\xb5\x5a\x8e\xb0\x22\xef\x04\xb7\xac\xf8\x2c\xc2\x8f\xad\x96\xd9\x19\xb6\x6c\x84\x34\xf9\x00\xbd\xef\xe6\x21\x0c\xf6\xbe\xdf\xb2\x7a\x91\xce\x1d\xfa\x07\x1f\xb7\xd3\x15\x3e\x45\xa5\x04\xcf\x97\xdf\x76\x36\x5b\xde\x21\x4c\x2b\x7c\xbd\x46\xaa\xed\x04\xa1\xb7\xfd\x7c\xfa\x97\xc3\xaa\x93\xa0\x13\x7a\x74\xa7\x71\x30\x07\xc1\xa2\xa6\xb7\x38\x51\x68\x1e\xc1\x66\x20\xe5\xbd\xe3\xe3\x44\x82\x93\x76\xb7\xf0\x01\x43\x22\x68\xa8\x6f\x5c\xfa\x7d\x28\x85\x81\xf2\x1b\x07\xc9\xde\x0f\xb3\x08\xa9\x2f\x02\x86\x76\x1c\x49\x20\x9c\x7c\x34\xb5\x28\x40\xf2\x36\x61\x68\xfc\x10\x83\xfd\x5c\x84\xf9\xc5\x7b\xcd\x1d\xba\x2f\x12\xae\x64\x66\x9a\x44\x39\x6a\x13\x1e\x9f\xb0\xbe\xb8\xf6\x84\xd7\x24\x3c\x17\xac\x76\x88\x2d\xf0\x23\x08\x68\xb8\xcb\x2c\x9d\x5e\x45\x18\x2f\x0f\xbc\x1e\xa4\xc6\x10\xaa\x73\xd4\x84\xb7\x18\xdf\x27\x18\x18\xf1\x7f\x70\xea\xb8\x4f\xd8\x1b\x23\xc9\x52\x8a\x8f\x65\x90\xe1\x2f\x69\x7c\xf0\xfc\x7d\xc2\xb7\xb0\xf0\x34\x91\x39\x0f\x09\x87\xfc\x32\x8c\x9f\x7b\x3f\x20\x48\x56\x8e\x29\x8b\x4d\xdc\x33\x02\xc9\x1f\x0e\xe3\x71\xf6\x24\x1c\xff\xf6\xfb\xcc\x7f\x58\xa7\xda\x71\xd6\x25\x73\x16\x41\x7c\x79\x9b\xbf\x46\xff\x6f\x16\xda\xe9\xfb\x85\xdb\x62\x93\xe1\x28\xbb\xee\x5c\xcf\xc3\xb6\x52\x08\x6e\xd3\x1a\x6e\x7b\x31\x9b\x60\xaf\x65\xe3\xf0\xe9\xdc\x86\x49\x68\x9d\xef\x5b\xac\x29\xb3\x9c\xf0\x96\x23\xc0\x83\xed\xa8\x0c\xa1\xd1\x7f\xae\xc4\x03\xbe\xcd\x84\x6b\x55\x86\x77\x3e\x1e\x0b\x25\x38\xbc\x9e\x15\xe4\xe5\xbc\x8a\x40\x06\x9b\x8d\x52\xb9\x6e\x31\x48\xe1\xdc\xa3\xb6\xfc\x42\x2c\xe1\x67\xa9\x4f\xc3\xf1\xd8\x6c\x82\xf2\xb1\x9a\xa3\xcb\x8f\x34\x11\x1a\x2e\x08\xf4\xe4\x3e\xb9\x41\x48\x9c\x1b\xd0\x2c\xd0\x5b\x40\xe0\x9c\x75\x3e\x37\xf7\x8f\x08\xe1\xd8\x47\x15\xb1\x07\x2f\x83\x08\xce\x7c\xdf\x7a\x7a\xe6\x19\x12\xae\x79\x70\xaf\x55\x79\xe0\xc3\x20\xd8\xb6\xc9\xbe\xc6\x5a\x8d\xb0\x24\x75\xab\x53\x58\xd7\x89\x89\x5f\xda\x9f\xde\xc4\x76\x97\xd0\x6a\x76\x9f\x43\xee\xb2\x02\xa1\xd9\x5f\x6d\xc5\x1f\xe9\xbd\x84\x71\xe3\xd4\xf6\x01\xb5\x93\x04\xfb\x19\x42\x7d\x7a\x4e\x92\x84\xb0\xba\xd7\x0a\x1a\xae\x32\x84\xed\x3b\x03\x36\x07\x84\xaa\x4c\x2a\xa1\xab\x97\x5e\xb0\x98\x23\x4c\x38\xfb\xa2\x61\x79\x66\x7d\x43\x29\x0e\x74\xb5\xd7\xf6\xe4\xda\x10\x3e\x3c\xb9\xf3\xb7\x6d\xe4\x08\x61\x7b\xd7\xe3\x52\x9f\x35\xba\x84\xb5\xaf\x44\xd6\x7f\x67\x9d\x98\x84\x53\x66\x2e\x7f\xcf\x87\x84\x11\xc4\x7b\x8b\x45\x7f\x46\x38\x11\x5e\x4d\x4d\x8e\x30\xe1\x8f\x23\x6c\x65\x4f\xe2\xd2\x0b\x3d\x4d\xb8\x66\x72\x78\x37\xc7\xe3\xbf\x2c\x98\xeb\x7c\x1f\x68\x13\xd4\x24\x28\xbb\x3c\xd8\xbe\xf4\xee\x67\xd6\x3f\x2c\x6b\x55\x35\xa8\x1a\x3f\x40\x50\x1f\xd6\xe8\xdc\xb8\x4b\x71\x12\x5c\xfb\xfe\xe8\x5f\x58\x19\x49\x78\xc7\xba\x9a\x91\x7d\x2f\x89\x19\x79\xb8\x4e\xd9\x5e\xd1\x8c\x60\x2b\x11\xb8\xde\xc1\x6c\x37\x21\xb8\x41\xe7\xcb\xa8\x9c\x38\xe1\xe1\x83\x47\xa9\x81\x0b\x15\x09\x4c\x90\xc1\x90\xdf\xf7\x5d\x84\x47\x4f\x5c\x7f\x7d\xbf\xe5\x46\xb8\x3d\xce\xbe\xf3\xa0\x66\x36\xa1\xfb\xce\x36\xcd\xe2\xb4\xc3\x04\xe7\x07\xa5\x59\xaf\xe4\x75\x08\x5d\x4b\xf2\xad\xd5\x23\x2d\x18\xc4\xaa\x76\x3c\xb4\xfa\xb3\x9e\x20\x70\xb0\x4f\x23\x5d\xd8\x94\x90\xec\x1f\x4f\xbb\x0a\x1f\x33\x28\x72\x9c\x53\xf9\xd3\xa0\xaf\x14\xab\x0b\xe2\x6e\x0e\xf0\xe4\x33\x88\x6c\xb3\x3b\x7d\x6f\xd7\x06\x42\x5e\x23\x97\xcb\xb7\x2a\x27\x42\xdc\xe9\x97\x82\x27\x13\xb4\x27\xe1\xd4\xdf\x27\xef\x4f\x2d\x1e\x61\xa1\xe4\x70\x47\xe8\x83\x27\x1e\x84\x8e\x8c\x8a\xbe\x68\xfe\x44\x1a\xa1\xc2\xed\xfc\x7e\x3e\x04\x33\x0f\xf3\xc5\xc6\x33\x02\x08\xb5\xae\xca\x9c\x7e\x7e\x09\x04\x9f\xc0\xb7\xa7\x7a\x14\x83\x08\x72\x91\xce\xbf\x1d\x74\xf4\x09\x31\xaf\x9f\x66\xbc\x0f\x31\x24\x0c\xc9\xae\xd8\xb4\x38\xd9\x80\xd0\x10\xd8\x58\xff\xb0\xda\x98\x70\xeb\x95\xea\x88\x5d\x59\x7b\x29\xa6\x3d\xf4\xf2\x29\xb0\xd5\xa5\x7f\x50\x5e\x34\x96\x76\x58\xe1\x29\x0b\x2e\x1f\x36\x69\xfc\x9d\x22\x4b\x10\x75\xb1\xdd\x7b\x58\x42\x92\xf0\x73\xcd\x8c\xe2\xb9\x7f\xfb\x58\x10\x53\x88\xae\x1a\x7e\xbf\x8f\xf0\x36\xe3\xa2\x90\x74\xd6\x21\x42\xfb\x17\x6d\x71\x6e\x17\x5b\x82\xf0\x29\x69\xa7\x1a\x64\x12\x0a\x95\x84\x8c\xff\x83\xb4\xf1\x50\x43\x94\x6e\x7d\x29\xd8\x3e\x87\xb6\x2d\xe8\x35\x22\x24\xaa\xef\x99\x95\x6f\x56\xc9\xe0\xd4\xc6\xf0\xf4\x79\x13\x25\xb4\x2a\x6a\xe4\x91\x98\x0e\xe1\xf2\x54\x8b\xb9\xbf\xd9\xfa\x59\xd0\xf2\x4b\x64\x33\x58\x15\x4b\x78\xf1\xb0\xba\xf1\x9c\xf5\x3a\xc2\xd3\x8b\x5b\x14\xf4\xe5\x77\x12\x66\xea\xf3\xb6\xb4\x31\x4b\x08\x2e\x27\x14\x6c\x39\xe2\x5d\x09\x49\x8f\x4c\xce\x7b\x5d\xbc\x4b\xb0\xbf\x37\xc8\xd6\xae\xbb\x80\xe0\x54\x2a\xf0\x42\xd7\x62\x15\xc1\x70\x97\x9c\x60\x99\xeb\x35\x06\xd7\x84\x4e\x1b\xad\x0f\x12\x27\x34\x7b\x29\x5e\x8a\x28\xd7\x26\x68\x1e\x68\x8e\x03\x6f\x0c\x61\xe0\xfb\xfd\xf9\x57\x6d\x26\x0e\x6c\x0b\xf9\x47\xd3\x06\x1f\x13\xb6\xa7\x7a\xf7\x65\x56\xa7\x11\x6e\xcd\xed\xd2\x1a\x7a\xfb\x86\xb0\x6d\x13\xef\x02\xf6\xa0\x04\x42\xcc\xdd\x9a\x5c\xfd\x89\xc7\x4e\xa5\xb1\x6f\xb3\x7c\xfa\x97\x13\x62\x7e\x9b\xed\xdf\xe3\x72\x94\xc1\xd4\xf7\x46\xdf\x5b\xc4\x78\x09\x7b\xfb\xda\x94\x6c\xb7\x5f\x23\x94\x68\x9d\x99\x2d\x57\x6b\x4c\x30\x8e\xea\xde\x34\xcf\xf6\x30\xc1\xdd\x60\x75\xe0\x52\xb3\xab\x04\xb1\x04\x8d\xa2\x3b\x3b\x0d\x09\xa3\x5b\x5c\x2f\x5b\xff\xc9\x66\xa0\x3f\x53\xca\xd0\x5d\x30\x99\x01\x87\xa4\x8f\x7e\x3e\x9f\x19\x83\xda\xf3\x09\x3b\xec\xed\x03\x09\x69\x0f\xda\xec\x63\x12\x0a\x18\xa4\xd6\x96\xdf\xe4\x48\xd2\x24\x38\xbf\xec\xa9\x67\x39\x78\xd0\xc8\x17\x9e\x96\x2b\x2e\x57\x08\xa2\xb5\x29\xe2\x9a\x33\xd3\x18\x70\x27\x3f\xbb\xae\x3b\xdd\x90\x10\xb9\xf6\xe4\x72\xab\x3b\x32\x04\x6f\x4e\xb1\x96\x9f\x19\x29\x84\x0f\x9c\x8d\xde\xc3\xc6\x1f\x58\xd0\xc8\xfe\x30\xff\xa6\x93\x26\xfd\x43\x79\x0f\x97\x98\x93\xe2\x66\x42\xaf\x2b\x77\xa5\x1d\xff\x3e\x42\x4f\x70\x43\x67\xbe\x73\x13\x03\xfb\x98\xd9\xc6\x07\x16\xb2\x13\x46\xf9\xaa\x6a\xb9\x02\x5d\x18\x28\x56\xfc\x14\x6b\xe8\x2b\x62\x30\xc2\xbb\x8d\x89\xf3\x5d\x41\x78\x78\x87\x3b\x49\x3d\x36\x90\xc0\x75\xb7\x92\xcf\x42\x61\x0b\xc1\xc3\xdd\x8c\x83\xfb\xa7\x08\x21\xa4\x66\x4b\xf7\x8c\x94\x38\x06\xa1\x55\x69\xb1\x77\xdb\x5b\x18\xb8\xb2\xf3\x78\x8e\x6c\xd1\x22\x74\x6f\x39\x7f\xcb\xfc\xef\x6e\x06\x5a\xa7\x4c\xc3\xcc\x67\xda\x10\xa4\xee\xea\x7e\xd1\x17\xae\x20\x84\x4c\x0b\x32\x08\x12\x30\x20\x18\x0e\x44\x94\xbe\x5f\x67\x4e\x98\xeb\x78\x55\x51\x54\xee\x24\x83\x27\xae\x4a\x52\xa6\x6a\xaa\x84\x7b\x8e\xfc\x4a\xdf\xef\xef\x23\x3c\xff\xfc\xab\x26\xb6\xe9\x26\x83\x32\x81\x26\x85\xaa\x3e\x0b\x42\xdd\x1f\x35\xa6\xfa\xd3\xec\x49\xb8\xf9\x48\xfd\xd7\xb2\xc1\xcb\x84\x1f\xcb\xcd\xf5\xf5\xf6\x4e\x3c\x52\xfe\xbf\x91\x74\xce\x3c\xde\x8d\xf5\x7d\xac\xff\x01\xe5\xcf\x2a\xea\x9e\x1b\x5b\x4b\xf1\xdd\x94\xc6\x78\x2e\x6e\x24\x64\xb3\x54\x75\x8b\x47\x3d\x08\x65\x2a\x43\x1c\xf9\xf3\xd9\x09\x4f\x8b\x86\x62\x8d\x24\x84\x26\x95\x9c\xb1\x67\xfc\xc6\x3e\x1b\x08\xa6\x5a\xba\x53\xf9\x1e\x6e\x9a\x54\x76\xae\x37\x6e\x6d\x54\xd9\x47\x38\x54\x74\x46\xe6\xf8\x7c\x2e\x1a\x29\x32\xda\x35\xbf\x67\x3d\x41\xc9\xb8\x8f\x7f\xa6\xed\x10\x0b\x8a\x4d\x39\x7e\x2f\xe6\xc8\x11\x16\x0c\x5a\x8f\x77\xc8\x18\x12\x5e\x48\x87\xae\x14\x58\x62\x48\xc8\xf5\xbf\xba\xdf\x56\x6c\xe2\x4d\xda\xf6\xaf\xb9\x93\xa1\x01\xe1\x8d\xfa\xb1\x30\x51\xb3\xad\x84\x9a\xc2\x79\xf1\xe3\xfb\x9c\x09\xb1\xbd\xbc\xa6\xb1\xeb\x65\x09\x6b\xcf\x1c\xbb\x78\xb8\x73\x0f\xc1\xc2\xbc\x72\x83\x5a\xe1\x7d\x06\x4f\x12\x06\x1c\xc6\x76\x5a\x10\x66\x1f\x3b\x31\xac\x7c\x53\x81\x20\x55\x29\x94\xde\xba\xeb\x36\xf3\xaf\xd4\xf0\xd6\xe9\xca\xde\x4f\x61\x61\xcf\xc7\xc8\x07\xbb\x73\xdd\x08\x29\x8b\xad\x8b\x03\xce\x17\x31\xc8\xd4\xdb\x5e\xe0\x1b\x78\x93\xd0\xc6\xfe\x44\xed\xca\xc6\xfb\x0c\xe4\x8c\x6d\xbd\xfc\x7b\xb3\x18\x3c\xfe\x5d\xcd\xe9\xda\x79\x96\x90\x32\xe3\xfb\xe0\xca\x9f\xac\x49\x38\xf4\xec\xec\x79\xf7\x07\xd9\xcc\xbf\x42\x35\x4d\x97\x23\x2f\xca\x11\x76\x72\x5d\x77\xaa\xd7\x93\x25\xc8\x76\xbe\x14\xd7\x6e\x2b\x60\x20\xff\xb9\xa8\x73\x89\x6c\x1c\xc1\x71\xd7\x87\x85\xda\x46\x2d\x04\x79\x87\xd3\xac\xba\x89\x1d\x79\x9f\xa9\x81\xa7\xc6\x59\x84\xb9\xd3\xc7\x36\x07\x45\x8b\x4f\x42\x58\x8c\xbe\x8e\xbe\xd1\x7a\x82\x5f\xd8\x9e\x6f\x9b\x34\x45\x09\x15\x6c\x2a\x57\x0b\xf6\xb8\x30\x30\xaf\xa8\x2a\x50\x49\x1f\x67\xfd\x03\xb9\xc8\x2e\xa8\xb2\x31\x26\x18\xd9\x45\x87\xcc\xa8\x4c\x65\x50\x77\x5e\x6d\xf4\x88\x5c\x37\xeb\x1f\x0a\x1a\x75\xe6\xbc\xed\x97\x27\xe4\x35\xb8\x7c\x14\x7a\xa5\x4c\x68\xe6\xbd\xfb\xc3\xdf\xb9\x93\x85\xbd\x32\xdd\x5b\x5e\xe4\xb3\x08\xaf\x93\x22\x66\xdf\xaa\xf4\xa6\x7f\xe5\x58\x6c\x44\x17\xa7\x8d\x26\xa1\xf0\x56\x70\x9b\xb5\xfa\x10\x0b\x0b\xac\x0b\x78\x96\x67\xaf\x21\x7c\x6e\x99\x93\xb1\x3b\x6f\x1f\xe1\x70\x80\x2c\xf7\x4f\x17\x2b\x42\xdf\xc6\x5d\xb1\x79\xbf\x96\x12\xea\xf9\x7f\xcb\x75\xb6\xc9\x10\xde\x98\x9b\xb0\x17\xcc\xd7\x23\x1c\xb6\x57\xfb\xb3\xfe\x06\x07\x61\x03\x97\xc9\xb7\xc3\xf6\xbc\x84\x92\x74\xd3\xec\x4e\x6d\x3e\x82\x79\x90\xbb\x06\xbf\xb8\x0e\xa1\x2d\xe4\xfc\xde\xf8\xc6\x20\x42\x88\x4c\xd9\x2d\x3b\xf5\x18\xe6\xdf\xc8\x21\xc8\xfa\xff\x23\xec\x4f\xa3\xb1\xfc\xdf\xb8\x8f\xb7\x90\x28\x85\xe6\x28\x43\xa5\x8c\x8d\x86\x22\xd7\x61\x2c\x15\x42\x66\x11\x15\xd2\x64\xce\x1c\x32\x44\x51\x48\x69\xa4\x32\x14\x49\x25\x43\x09\xa7\xa9\x22\x85\x64\x0a\x4d\x88\x26\x42\xe8\xa3\xc8\x5e\xda\xeb\xfe\xe7\x5e\xfb\xb7\xee\xfd\xec\xb5\xde\xc7\xf7\xd1\x75\x9d\xbe\xce\xe3\x09\xd3\x3b\xf4\xc6\x58\xff\x30\xfc\xeb\x41\x7e\x85\x42\x20\x61\x87\x54\x21\x9b\xd7\xec\x20\xc2\x4e\xed\x6d\x5f\xd6\x6c\x98\x45\xd8\x11\x75\xf6\x42\x8c\xcd\x0f\x42\xd5\xa5\x6f\x1f\x54\xcf\x5f\x20\x3c\x3a\x96\xba\x2f\xef\x74\x1a\xa1\x73\xd3\x9a\x2f\x7b\x30\x48\x58\xc8\xc7\xe5\x3a\xf7\x62\x2f\x21\x23\x77\x95\xe8\xdd\xf1\xd1\xea\x23\x9d\xaa\x1d\xf9\xbe\x0c\xb8\xbf\xdf\x2f\x7e\x6e\xbb\x97\xfe\x21\x83\xdf\x76\x74\x91\xa3\x13\x21\xe9\x46\x7c\xda\xdf\x32\x38\xf0\x7e\x0b\xa6\x7b\x12\xca\x27\x4f\x56\x52\xdb\x69\x49\xe8\x36\xeb\xfb\xa8\xd3\x68\x4e\x98\xa1\xec\xb5\x59\xe6\xd6\x3a\x82\x4a\xd8\xbd\xe6\xb9\xe5\x62\x04\xb3\xdb\x1f\x04\xd8\x96\xe5\x13\x24\xef\xcd\x35\x39\xca\xee\x40\xc8\x76\x58\xcf\x6b\xcd\xaf\x43\x68\xed\x58\xa9\x5c\x6f\xa6\x49\xb8\x1a\x1a\x3b\xed\x49\xfb\xc5\xff\x02\x6b\xc4\x75\xd0\x4c\xc2\xf0\xbf\xc0\xf9\xdc\xd9\xa3\xdf\xb0\x88\xd0\x76\xdb\xdf\xca\x70\xbf\x12\x61\xee\xb6\x6d\xc2\x89\xcb\xb5\x09\xb7\x76\xeb\xb1\x8a\x35\xfa\x59\x18\x4a\x8d\xfc\x70\xe6\xf3\x14\xc2\x56\x7e\xd1\x93\x25\x92\x5f\x08\x65\x8a\x62\xab\xa2\xc6\xcb\xea\x91\xb2\xbd\x69\xa2\x4f\x0a\xf1\x3c\xfe\xe6\x1a\xe7\xf8\x59\x84\x3d\xca\x9a\x5b\x27\x8b\x4f\x21\x5c\x4c\x5c\x3a\xe7\x53\x4d\x1a\x21\x2f\xc2\xf6\xc8\xd0\xd0\x0d\xc2\x05\x3d\xc1\x7b\x33\x8d\xe2\x09\x55\xc5\xbd\xc7\xfe\xff\x21\x25\xd1\xa7\xcb\x4c\x2f\x91\xf0\xf5\xc5\x51\xbd\x29\xfa\x89\x84\x3e\x09\xee\xf5\x23\x12\xdb\x27\x94\xff\x5f\xac\x08\x2c\xde\x3b\x69\xab\x27\x41\x4b\x48\xf3\x56\x9b\xed\x22\xc2\xcd\xb9\xf1\xc7\x8a\xfa\xdc\x27\x20\xb3\x7a\x40\x28\xe5\x7a\x50\x21\xa6\x14\xb4\xc5\xf8\x8e\x64\x13\xd6\x7f\x60\x5f\x7c\xcd\x20\x90\x20\x6f\x63\xc8\x3d\xec\x74\x88\xf0\xf3\x89\x57\x1f\xdc\xc2\x98\x7f\xa5\x25\xda\x7a\x6e\xcc\xb3\x2d\x84\x30\x95\xd3\x35\xab\xbe\xea\x11\xfe\x48\x2c\xb3\xe5\x5b\x96\x48\xd8\xaa\x74\x68\x9e\xc8\xd6\x46\xc2\x51\x65\xbf\x17\x35\x2f\x53\x08\x6b\x8e\x7c\xb2\x59\x2e\x91\xc4\xc0\x99\x9f\x7d\xb5\xea\x29\x67\x82\xc6\x80\xd9\x42\xde\x98\x43\x04\xe5\xc0\x85\xa7\xdf\x0d\x9d\x19\xbf\x32\xf7\xe4\x5e\xaa\x5e\x42\xc8\xed\x17\xd9\x5f\xbf\xac\x85\x05\x8f\x2f\xd7\xb6\xe5\xf2\x97\xb0\x10\x2c\xca\xbd\xe3\xd6\x24\x2e\xc2\x9e\xd4\xdb\xf7\x39\xd8\x77\x10\x96\x6a\xaa\xcb\x49\xb8\x66\x30\x68\x93\x55\x72\x3a\x25\x16\x4d\xff\x30\x98\xf8\x75\x57\x52\x75\x21\x83\x80\x8e\x52\x36\x93\xac\x68\x42\xf7\x7d\x3c\x7e\x1b\xbe\x6a\x7c\x63\x0f\x3f\x9e\xb9\xd7\x8d\xb0\x72\x67\xe8\xf0\xcf\xfb\x12\x04\x35\x5b\x8f\xad\x6f\xc4\x96\x10\x64\x83\x25\xca\x44\xb7\xa8\x10\xf6\x17\x9f\x4e\x62\xfb\xca\x22\x58\x27\x28\xff\x74\x59\xdb\x42\xb8\xe4\x1c\xa4\xaa\xe2\x52\x4a\xb8\xd0\xf1\x7b\x69\xa1\x7b\x09\x41\xf6\x4a\x27\xcf\x5f\xfc\xbe\x31\x49\x30\xac\xf3\x16\x21\x36\x5c\xd4\xbc\xd0\x7b\x37\x81\x43\xf0\x46\x66\xae\xb4\x35\x21\xfa\x5a\x7b\xd8\x61\x1b\x47\xc2\xa8\xac\x79\x82\x8d\x49\x1a\xa1\x3b\xe4\xce\x17\xdf\xe3\x99\x84\x5e\x9d\x3d\xb3\x1d\xc7\x47\x8f\xd4\x56\xfa\xfa\xac\x3d\x46\xb8\xf7\xb3\x5c\xd7\xd2\xe0\x06\xc1\xa9\x4d\x30\xe3\xc2\xf1\x28\xc2\x6b\xc5\x7d\x01\x16\x87\xca\x09\x46\xbf\x17\xd8\xfe\x3d\x93\xe1\x10\xbf\x9b\xe9\x9e\x3b\x01\x96\xc7\x4c\x2f\x87\x0b\x48\x11\x86\x14\x96\x7a\x5f\x62\xd3\x21\x74\x78\x5a\xe4\x71\xac\x58\x47\x08\xde\x68\x58\xd7\x5a\x35\x89\x10\x54\x3e\x9a\x62\xa2\x3d\xc0\xc2\xe2\x7d\x76\x97\xaf\x97\xfd\x61\x61\xfb\xeb\x70\xd5\x9f\x77\x46\x58\xd8\xf1\x53\x5a\x20\xe1\x84\x0c\x61\x51\x0f\x6f\x49\xfc\x3c\x86\xc1\xb6\xf9\xab\x7e\x39\x2d\xfd\xc1\xc2\x58\xc3\x6e\x11\x3e\x91\x18\x06\x1f\x7e\xc5\x55\x2f\x3a\x16\x48\xb8\xbc\x76\x48\xdc\x63\xe5\x71\x82\xfa\x58\x90\x66\xb3\x57\x32\x41\x4e\x72\xb5\x7a\x64\xc9\x75\x82\xc5\x4c\x27\xdf\x29\xed\x71\x04\xe5\xf8\x33\x59\xfd\x63\xdf\x58\x88\x7c\xb5\xd1\x71\xa3\x3b\x37\xfd\x03\x2b\xe6\x5c\x78\xe4\xac\xd6\x42\xec\x48\xdf\x30\x3a\xbd\xb3\x90\xd0\xfd\xad\xeb\x85\xd3\xa4\x60\xc2\xf1\x03\x42\x9f\xa7\xfe\x4c\x23\xcc\x74\x6f\x1e\x0a\x52\x75\x61\x70\x63\xb2\x93\xf4\x82\x3d\x60\xa1\xd6\xeb\xfd\x6f\xca\xf5\x22\xa8\x8d\xcd\x79\xb2\x3d\x8a\x97\x10\x7f\x2a\x76\x6e\x54\xaa\x10\xc1\x44\xe7\x60\xb7\x61\xfc\x05\xe6\x5f\x79\x29\xb7\x5e\xda\xf7\xea\x4e\x16\xac\x4e\xea\xd7\xae\x59\x69\x49\x10\x77\x0f\x97\x9c\xfd\xd9\x94\x50\x7c\xe2\xec\xde\xb5\xf7\xd6\x12\xca\x0c\x4f\xbc\xd4\x0f\x2a\x25\xc4\xe8\xb5\x45\xc5\xbe\x4e\x21\x44\x7f\x59\x62\x35\x72\xb2\x84\x41\xe1\xb6\xf7\x26\x82\x09\xe6\x84\x5b\xc1\x81\x5b\xe7\xe5\x5d\x62\x30\x90\x9f\x2d\xf1\xb7\x4c\x1b\xcc\xba\x73\xf5\x91\x3a\xa1\xa8\x94\xf5\xbb\xa9\xec\x01\x41\x41\x7b\x7a\x68\x7e\x46\x02\x61\x91\x8e\xd4\xf3\x8c\x47\xbb\x09\x7c\xdd\x1b\x36\xaf\xf2\x3d\x34\xa1\x9c\x98\xe2\xc3\x55\x33\x6f\x2f\x41\xf6\xd3\xd4\xd2\xe1\xe4\x20\x82\x0a\xb7\xb7\xb4\xc6\xc7\x12\x42\xd4\x80\xbf\xe2\x03\x19\x2d\x42\xd5\x64\x89\x68\xcc\x4a\x23\x5c\xde\x63\x96\x72\x29\xcf\x8b\x60\x24\xd2\xe3\xbb\xec\x9b\x07\xa1\x64\xe3\x5c\xa7\x29\x75\x61\x04\xcf\x87\x97\x5f\x7d\x7a\xb3\x8f\xf0\xec\xe3\xad\x30\xd2\x3e\x44\xd8\xbd\x7a\x0a\x77\xf6\x0f\x77\x82\xbe\x7c\xb7\x58\xe7\x97\x9c\x09\xe0\x74\xcc\xe1\xa9\x7e\x7c\x75\x42\x09\xd7\x75\x3b\xe8\xf2\x76\xdf\xff\x13\xe5\x4e\x99\x16\xfb\xbb\xfd\x19\x64\x56\x6e\xec\x5f\x1e\xa3\x47\xf0\xbe\xec\xe2\x78\x68\x6c\x13\x21\x40\x60\xdb\xde\x2b\xaa\x4b\x08\x06\x93\x17\x69\x47\x1e\x03\x0b\xf2\x79\xb2\x82\xaf\x36\x3b\x33\xd8\xf6\xa4\xc3\x78\xc1\x9c\x0d\x84\x30\x9b\x81\xb1\x0a\xe7\x59\x04\xb6\xd4\xd2\x2d\xe1\xf6\x02\x84\x83\xe9\x72\x61\xf2\x4d\xcb\x09\x0b\x03\x5e\xe6\xba\x64\x58\x13\x74\x43\xc5\xe7\xc7\x66\x17\x12\xae\xb5\x5f\x76\xd0\x5f\x24\x43\xb8\xd4\xab\xd4\xb5\xe0\xa5\x33\x83\xc9\x15\x4f\x5b\x0e\xf3\xf9\x10\x76\x99\x0b\x9c\xe1\xdd\x66\x4b\x88\x99\xcd\xc6\x23\x62\x74\x8d\x50\x7d\xef\xc3\xa5\x81\x3f\x6b\x09\x01\xab\x8b\x03\xbf\xcf\x0c\x63\xf0\x74\xee\x03\x9d\x53\x51\x73\x08\x85\xb2\x31\xa6\xdd\xef\x57\x11\xae\x3a\xca\x1f\x93\x38\x29\x4a\x98\x1e\x3f\xed\x46\xec\xae\x3a\x16\xbc\xcf\x04\x5a\x3f\x1b\x5d\x47\x98\xd3\x60\xdf\xc2\x76\x63\x07\xe1\xa4\xd5\xbb\xad\x5e\xf5\x5a\x84\xb4\x12\xbe\xb7\x52\xc2\xdf\x59\xf8\xb9\x73\xcf\xb9\x4e\xe3\x87\x04\xb1\xdf\x87\xb8\x24\x03\x93\x08\x25\x49\x98\xdf\x69\xf0\x99\x85\x77\x1a\x75\x4b\x0f\x35\xda\xd0\x3f\x9c\xc5\x71\xf5\x48\x99\xe9\x04\xb7\xe9\xbd\x71\x7d\x9e\x47\x09\x2f\x93\xbb\xb4\xf2\x74\xb2\x08\xfd\x3c\x23\xce\x6b\xe2\xeb\x08\x7d\xd3\x4e\x1b\xc8\x8d\xe3\x6b\xdc\xb7\x9d\xfd\x0b\x02\x08\x6e\xa7\x1b\x14\xc6\xda\xac\x27\x80\x8b\xd2\x36\x07\x04\x5e\x20\xbc\x52\x32\x2e\xf9\x5b\xfe\x87\xcd\x16\xfa\x3c\x7d\x69\x95\x0c\xa4\x2f\x3a\x48\x17\xaf\xcb\x64\xd0\x3d\x30\x79\xba\xd9\xd3\x48\x42\xcf\xf5\x53\x5e\x53\x9d\xbe\x32\x58\x95\x54\xa1\x30\x97\x22\x09\x5a\xd3\x74\xc5\xb8\xa5\x9e\x13\xdc\x4c\xf6\x4d\xad\x4a\xd5\x22\x08\x85\x77\x3a\xdd\x49\xb4\x26\x7c\xe1\x9c\x55\x3a\x8b\x77\x19\x61\xb5\xdf\x47\x03\x76\xee\x58\x06\xcf\x76\x46\xc6\xeb\xf1\x16\x12\x4a\x79\xee\xb7\x59\x30\xb5\x04\xd7\x77\xab\x1a\xee\x8f\x16\x10\x24\xb8\x67\x48\xe8\x8f\x8f\x6e\x48\x48\x2f\x53\xfc\x93\x43\x98\xdb\x9d\x5e\xc7\xe2\x77\x23\x8c\x9a\x87\x15\x8b\xf6\x17\x11\xd4\x8f\x48\xac\xd9\x6c\xaa\x4b\xd8\x7a\xf1\xb5\xb4\xce\x26\x21\x42\x75\x84\x89\xa9\xf3\x31\x4f\x06\xd2\x4a\x2f\xb9\x9e\xb0\xf1\x13\x12\xa3\x4f\x9c\x35\xff\x90\xc7\x40\x77\xd0\x68\xbd\xe8\xab\xf1\xaf\xfb\xff\x40\x74\xf2\x8b\x5e\x53\x37\x47\x82\x7a\xb1\xaa\x46\x59\xfd\x1e\x82\x65\xee\x0a\xc1\x8d\x57\xfb\x18\x98\x7c\x16\xad\x09\xef\x29\x25\xdc\xbc\x2e\x17\xd1\x21\x51\xc7\xe0\xac\xdc\x8c\xc6\x29\x8f\xe3\xe8\xdf\x68\xc6\x7a\x4b\xb3\xd6\xcd\x1a\x84\xc3\x9b\x5a\xbe\x6f\x79\xcb\x46\xb8\x75\xb5\xee\x9a\x4b\xd7\x2b\x06\xc7\x73\x5a\x8d\x66\x66\x95\x12\xda\xeb\x23\xeb\xbb\xee\x77\xd1\xbf\xf2\x3f\x34\xf7\xee\x88\xcc\x0f\x2f\x21\x2c\x71\xf6\x73\x17\x5d\x6e\x4c\xd8\x7c\x7c\xd8\x54\xb8\x37\x83\xb0\x5c\x44\x6a\x86\x74\xb7\x25\x21\x7e\x99\xe7\xfd\xbc\x8f\x26\x84\xc9\x2d\xc3\xdf\xb6\x1d\x08\x25\xdc\xec\xfb\x76\xb9\x96\xd3\x92\xf0\xe8\x19\xb7\x66\xd8\x21\x31\x82\xb0\xcd\xeb\x03\xc9\xe0\x23\x3c\xb0\x73\xac\x2d\xf0\x4b\x25\x70\x73\x76\x77\x75\xfe\x9a\x4b\x30\x54\x3b\x78\xe7\xbd\x42\x2d\xe1\x87\xfe\xc2\xea\x97\xef\xda\x18\xf4\x08\x38\xfe\x78\xb0\xa3\x88\xb0\xe6\xce\xeb\xc1\x98\xa1\xab\x0c\xa4\xbe\x9c\x55\xed\xf1\x7c\xc0\xe0\x66\x5b\x7c\x3c\x8b\xe7\x09\xe1\x2c\x3b\x3b\xdf\x9b\xc0\xc7\x0c\xf6\x57\xbd\xac\xdb\x39\x3f\x9b\xf0\xba\x34\x55\xa5\x7f\x9e\x09\x21\xd6\x2c\x5e\x7f\x76\xab\x2c\x83\xe3\x8a\xb6\xce\xe1\x87\x0e\x10\x96\x3c\xb5\x90\x98\x23\x77\x8f\xe0\x6c\xf4\xe6\xc0\xd8\x0b\x76\xc2\x95\x37\xb9\x4d\x4d\x3d\xfb\x08\x0d\x76\x49\x82\xbf\xd8\xb4\x08\x6b\xa2\xfd\x9a\xa2\xfa\xb5\x09\x0a\xc1\x7c\xec\x25\x32\x12\x84\xe9\x0b\x8b\x3f\xf5\xfb\xc8\x4f\xc0\xe2\xeb\xec\xf2\xfa\x25\x29\x84\x0e\x19\x6f\x0f\xe3\xd1\x8b\x84\xa4\xa7\x7e\x1e\x23\xa9\xf1\x84\x9f\xfe\x53\x05\xaf\xbe\x89\x23\xc4\xcb\x1b\xa4\xfd\x6e\x60\x11\xee\xda\x2c\x5e\x95\xa7\x20\x4f\xb0\x13\xe7\x10\xfe\xf3\x35\x85\xa0\xec\x13\xf4\x9e\x3f\x73\x3a\xe1\x8a\xe9\xd6\x82\x66\xb5\x7b\x84\x65\x57\xdd\x8e\x4c\x7d\xac\x49\x90\x2c\xff\x24\x2b\xeb\x91\xc0\x40\xcb\x54\x53\xda\xaa\xe7\x24\xc1\xcf\xd8\xfe\x70\xd1\xae\xed\x04\xae\xb3\xb9\xae\x5c\x56\x4b\x08\x66\xc1\x9b\xc7\x5a\x7d\x7a\x59\xb8\xa9\x2e\x3a\xf2\x35\x50\x8d\x70\x4e\x36\xe4\x53\x91\x14\x17\x81\xad\xaa\xd2\xf0\xae\xf2\x28\x0b\x21\x39\xd2\xc1\xdc\xc7\x36\x10\x78\x07\x56\xfc\x5a\xd2\xb3\x95\x30\x20\xe2\x94\x6c\xe9\x1d\xcd\x60\xd1\xef\x54\x4f\x99\xb8\xfd\x84\xae\x75\x0f\x0e\xf5\x16\x09\x13\xb2\x4b\x15\x76\xee\x78\x5a\x4c\xf0\x37\x35\x49\x9e\xa2\xd5\x4f\xc8\x78\xf4\x68\x38\x67\xf3\x57\xc2\xf5\x96\x23\x8f\xee\xec\x3b\x4b\xe0\x12\x87\xf0\xea\x99\x97\x08\x1b\xaa\xd5\xe6\x4b\xac\x37\x24\x28\x35\xbf\x76\x52\x76\xca\x27\x08\xd6\x78\xa8\xec\x72\x2a\x22\x1c\x56\x72\xd6\xeb\xfb\x1e\x48\x18\x4e\x78\xcf\xaf\xda\xbb\x9f\x10\xb2\x6a\xf2\xf4\x1f\xfa\x4e\x04\xad\x29\x35\x2b\x9b\x8e\xea\x11\xec\x32\x62\x0d\xec\x32\xbe\xb3\x90\x28\x5d\xde\x68\x98\x7f\x86\x70\x7b\x4b\x4b\xd1\xd7\xa4\x9b\x0c\x3e\x9e\xcc\x88\xa9\xcf\x35\xa1\xe1\xcc\xd3\xb1\xaa\x05\xb2\x84\x0a\xed\x55\x89\x11\x89\x37\x19\x9c\x89\x34\x4f\x5c\x5b\xe5\x40\x10\x56\xf3\xae\xd5\x59\x7e\x93\x90\x76\x7f\x86\x97\xd9\xd7\x36\x06\x27\x77\x68\x57\x65\xd7\xbd\x67\xa0\xba\xb2\x21\x49\x38\xf5\x39\xa1\x30\xdc\x0c\x95\x4b\x2e\xfc\x9f\x3f\xcb\xcc\x45\x10\xde\xa9\xca\x6f\x22\xa4\x4f\xf8\x70\xe3\xe4\x92\xd3\x52\xa1\x84\xf9\xd7\xb3\x2c\x1b\x5a\x4e\x10\x3e\x4c\x1f\x2d\x16\x9a\xee\x43\x60\xf7\x39\x61\xf6\xa7\x4b\x9b\x90\xf1\xb8\x4a\xed\x7a\x83\x3e\xc1\x24\xd9\xd4\xea\xb4\xeb\x65\x42\x4e\x91\x82\x50\xc6\x81\xd5\x04\x93\x78\x23\xb9\x47\x5e\xc1\x84\x63\x11\x3c\xae\x6f\x14\x6d\x09\x5a\xbf\x37\xfe\xe1\x94\x34\x27\x28\x06\x6b\x9f\xae\xfa\x65\x43\x90\x5a\x37\x53\xad\xef\xb5\x1e\xe1\x76\x71\xc0\xf7\x8f\x1f\x55\x08\xd7\x8e\xfb\x27\xbb\x46\xeb\x33\xe8\x9f\x59\x5a\xaf\x74\xe4\x3d\xe1\xcf\x7a\xfe\x94\x2d\x6c\xcd\x84\xb8\xad\x97\x2f\xac\x2c\xa8\x27\xcc\x72\x7e\xf1\x70\xd6\xfe\x46\xc2\xdc\xea\xd7\x49\x73\x56\x34\x13\xb2\xaf\xa4\x16\x44\x2a\x3e\x65\x30\x79\xb5\x85\xc6\x93\x93\x59\x04\xe7\x8c\x91\x3b\xfc\x81\x59\x04\x26\xe1\xcb\xe0\x40\xe1\x1d\x42\x65\x61\x88\xcb\xdf\xd1\x37\xd6\xfd\x8f\x43\xb7\x7c\x08\xed\x67\x8f\xa8\x8d\xf9\xbf\x22\xb4\x9e\xcb\x7f\x9d\x58\x7f\x95\x20\xf3\x28\x2a\xb9\xf5\xe8\x2b\xc2\xf2\xa6\x59\xa3\xdf\x0d\x53\x09\x5f\xf4\x6f\x6d\x58\xf5\x23\x9b\xc1\xc7\xe6\xf4\xa8\x7d\xe7\x2d\xe8\x1f\x6c\xfd\xdc\x82\x64\x38\xe3\x08\xdd\x2c\xdb\x59\xd7\x8b\x6e\x13\xf6\xb1\x89\xa9\x2d\x6a\x51\x24\x2c\x1a\x9a\xcd\x12\x95\x50\x23\xfc\xa8\xfb\xc9\xa1\x53\x7f\x8e\xf0\x49\xaa\x68\x45\xe9\x32\x6f\x82\xdb\x6a\xcd\x9d\x8b\x8e\xbd\x22\xcc\x29\xd5\x65\x95\xb3\xd5\x10\xde\xd4\xa4\xe9\x2a\xe5\xb4\x10\x82\x1b\x89\xfd\xcf\xc7\xf1\xfb\x55\x38\x21\xeb\x20\xaf\x02\x21\xf5\xde\x91\x83\x2f\x97\x38\x11\xba\x86\x3a\x1c\x8c\xdf\xdd\x27\xfc\x12\x7b\x50\xf3\xf1\x45\x01\xc1\x75\xdf\x06\x9f\xa1\xe5\xaf\x08\xe9\x5a\x11\xcf\xbb\xc6\x8b\xc4\xcc\xe1\x3e\xa1\xa8\x12\x06\x3a\xf9\x71\x71\x6b\x97\x38\x13\x12\xe6\xcb\xcf\x2f\xaf\x0a\x20\xac\x6c\x61\x37\x5c\xe8\xe4\x43\x13\x46\xb4\xd8\x73\xd5\xab\xb7\x0c\x62\xe4\x4d\x23\xf4\x7c\xf5\x09\xdb\x2e\x75\xd7\x5f\xf0\x8e\x20\xc8\xd6\x8d\x06\xe9\x66\x04\x12\x9a\x73\xf2\x99\x83\x8f\x02\x09\x64\xb9\x32\xe1\xf4\x19\x6f\xc2\x65\xfd\xcf\x6f\x69\xd9\x29\x42\xa3\xaa\x87\xc0\xe7\x1d\x19\x84\xf9\xac\x6a\x4f\xdd\x38\x37\xc2\x0b\x09\x25\x51\x9e\xd2\x3a\x82\xf6\xeb\xb2\xf2\x37\x81\x8d\x04\xf5\xc9\x02\xfc\x33\x16\x44\x10\x34\xee\x2b\xfa\x3f\x3d\x61\x46\x38\xbf\x4b\xbe\x67\xa9\xb5\x3c\x41\x62\x86\xb1\xa1\xc2\xe5\x63\x84\xaf\xf1\x8d\xaa\x5f\xf5\x7c\x08\x35\xf5\xf7\x2f\xdc\xad\xd5\x20\x8c\x68\x9d\x4e\x0b\x31\x13\x20\x5c\x7b\xbc\xe6\xfa\x0b\xc6\x88\xd0\xb1\xc4\x42\xe5\xa4\x4d\x19\xe1\xcf\xef\x9e\xc2\x0d\xfe\x65\x84\x25\x47\x54\x5e\x2c\x1a\x87\xe9\x8d\xf9\xcf\xcb\x6f\xbf\x66\x40\xec\xf7\xbd\x38\x7d\xcb\x08\xc2\x1a\xfe\xdf\x1a\x36\x94\x11\x0a\x56\x4a\xe5\xfc\x3d\xe3\xc2\x3e\xe7\xfd\x0e\xaf\x32\xc2\x9b\x4f\x29\x7e\x8b\x67\x5f\x20\xac\xd5\xe6\x5a\xde\x5b\x73\x81\xb0\x62\x51\xd7\x9a\xaf\x3d\xf7\x09\x06\xf7\x64\x5f\x9d\xb2\x9e\x4b\x68\xae\x0e\x10\xee\x56\x37\x99\x80\xa5\x8d\x1b\x94\xfb\x9b\x37\x11\x56\xde\xb8\xbd\x50\x52\x4a\x95\x50\xe6\xfb\xf3\xe3\xa8\x2f\x17\xc1\xea\xc7\x4e\x1e\xc4\xdc\x24\xdc\xb8\xa0\xbf\x3f\x2b\xdb\x82\x50\xd1\x98\x12\xb8\x28\x44\x82\xf0\x79\x28\xef\xf6\x9f\x13\x93\x09\x0f\x63\xd8\xa6\xbb\x2d\xdd\x43\x78\x71\x59\x6a\xf9\xab\xdd\x53\x08\x65\x5b\x15\xdb\xb8\x1c\x4d\x09\x5d\xaa\x2a\x92\x03\xc7\x35\x27\x94\xe0\xc6\x20\xc3\x1b\xad\xea\x04\xf1\x81\x63\x4b\xec\xa2\xb6\x11\xca\xa6\x06\x1f\x3c\x34\xfb\x3a\x83\x85\xd9\xa9\xaf\xdb\x3b\x33\x09\xac\x5d\xc3\x7e\xc7\xf2\x8c\x08\x37\x9e\x65\x75\x35\xa9\xea\x12\x76\x75\xd7\x24\x39\x3f\x37\xa6\x61\x93\xcb\x8a\xf3\x04\xad\x18\x08\xcf\xde\xca\x65\x31\xfe\x19\x94\xc9\x76\x3e\x1a\x9f\x80\x75\x6f\x7f\x96\xcc\x2a\x3d\x82\xd1\x98\xbe\xfd\xe3\x4b\x2f\x0a\x71\xc2\xe6\xe6\xe7\x20\xfd\xdb\x84\x17\x4a\xda\x9f\x04\xb9\x2a\x08\x67\x3a\x93\x07\x66\xe5\x24\xd1\xbf\xd1\x8e\xee\x1f\xfd\x1e\x71\xb3\x08\xbb\x14\xbf\xeb\xac\xf9\xa3\x41\x48\xe5\xdf\x3d\xa7\x43\xfe\x21\x0b\x6f\x2f\x1c\x98\x66\x23\x2a\x4a\xff\x2f\xcc\x39\xc5\xbe\x63\x01\xe7\x42\x82\x3b\xb7\xe1\xe3\xdf\xb2\xd6\x84\x28\xd7\x84\xa4\x0c\x5d\x21\x82\x96\xe8\x3a\x95\xc6\x3c\x7b\x42\x9b\xf6\xcc\x95\xf1\xe6\xa6\x84\xa4\xe0\xd6\x66\x37\x8f\x6b\x0c\x26\x4f\x1d\xc9\xc8\x1f\xdf\x06\x67\x45\x18\x1c\x69\x5e\xf6\x92\xb0\x50\xf2\xf8\xc7\x08\xed\x57\x84\x3b\xd1\x49\x99\x3a\x62\xaf\x08\x07\x67\x7d\x3f\xd6\x38\xfd\x15\x21\x5b\xb3\xa2\x47\xe5\x49\x09\x61\xa6\x86\xeb\x9f\x23\x76\x77\x09\x3b\x36\xee\xb9\x38\xb5\x26\x91\x60\x7d\xd6\x2c\x2f\x38\xd4\x86\xb0\x35\x9a\x87\xc3\xd5\xde\x8e\xf0\x3b\x44\xe9\xf4\xa9\xf4\x8f\x0c\x62\x0c\x66\xca\xb4\x2d\x32\x20\x6c\xf7\x2f\xea\xbc\x5b\xb6\x99\x50\x2f\xbf\xa0\x55\xfc\xb2\x23\x0d\x5f\xd0\x7d\x70\x7d\x6a\x3b\x83\xe4\xa6\x79\x93\xa7\x08\xde\x25\xc8\x4a\xee\xb3\xfa\xa0\x96\xce\xe0\xd4\xc0\x57\xd3\x5b\x01\xcd\x84\xd3\xad\xfb\x05\x66\xfc\x52\x99\x80\x67\x25\xbb\xc3\x3f\x3f\x3d\x32\x01\x7d\xfb\x97\xa6\x1d\x7a\x71\x84\xd0\x30\xab\x69\x5d\x82\x10\x3b\x21\xf2\xd6\x8f\xeb\xc5\xa1\x93\x08\xc2\x3a\x0e\x1d\x67\xdf\x9d\x21\x08\x24\x9d\x6a\x15\x30\xfb\x5c\x88\xab\x1f\x7f\xbc\x9c\xbf\x3f\x85\x70\x61\x67\xbf\x55\xfd\x0c\x2b\x06\xe9\xbc\xc7\x3c\x3b\xaf\x98\x10\x2e\x04\x4c\x3a\x2e\xf7\x24\x97\x41\x83\xf4\xdd\xe9\xeb\xed\x87\x58\x90\x9e\xb4\x3f\x20\xc1\x48\x80\x70\xef\x83\x93\x6f\xea\x37\x4d\x42\xd8\x9d\xee\x98\xe1\x93\x17\x19\x6c\xf9\xd3\x77\x3e\x2f\xdf\x9a\x10\x11\x35\xd8\x51\xda\xbd\x90\xd0\xfa\xad\xc7\x3e\xc3\x9d\x9f\x90\x6b\xa5\x10\x72\xe9\xf1\x25\x06\xfa\x11\xae\xcc\xc6\x28\x65\xc2\x90\xf4\xd3\xcb\x2e\x1f\xf4\x09\xc7\xd4\x67\x24\x6b\x48\xff\x62\x21\x36\x54\x65\x53\x52\xb9\x1e\xc1\x35\xfa\x8e\x46\x5e\xb1\x1a\x41\x3c\x7d\xd5\x53\x17\x23\x49\x82\xb5\x40\xd9\x86\xe3\x62\x46\x84\xe2\xd3\x22\x33\x5c\xdc\x3c\x09\x26\xf9\xa6\x66\xb2\xb5\x9e\x13\xca\xe9\xb9\xa9\xd7\x3f\x38\x5d\x65\x70\xe0\x97\x6c\xc8\xce\x0d\x9a\x84\xd6\xc5\x22\x2f\x55\x57\xac\x25\x1c\xb6\xaf\xd6\xb8\x7f\x7e\x13\x61\x29\xb7\x88\x90\xc1\x6f\x19\x42\x60\xf8\x9b\xfc\xeb\xfc\x9d\x2c\xb0\x9f\x0d\xbf\x6f\x61\x4d\x84\xc8\x67\xd9\x86\x02\xa6\x81\x84\x4b\x4b\x4d\x56\x48\x2d\x77\x24\x24\xd4\x6d\x8b\x8f\xbc\x6a\x43\xd8\x5d\xd6\xf9\x73\x71\xf6\x39\x02\x47\xb7\xe3\xe2\x57\xa7\x9f\x11\xea\xd3\xc4\x7f\x0f\xee\xe4\x21\xe4\xcd\x6a\xfc\x26\x7f\xff\x0e\xc1\x45\xf9\xd0\xcf\x65\x3c\x46\x13\x40\xdc\xed\x19\x4a\x52\x7d\x2c\x58\xca\x34\x37\x59\xd6\x25\x12\x6a\x9a\xc3\xd3\xfc\x3e\x69\x10\x9c\xee\x22\xc6\xed\xb9\x2d\x41\xda\xa6\x2a\x26\x63\x4f\x26\x61\x40\x76\x9b\x12\xad\x36\x22\xe8\xcf\x2b\xb4\x15\xde\xee\x41\x10\xfe\xa5\xa8\xa2\x63\x95\xc4\xfc\x2b\x56\xbf\xdd\x0a\xa6\xb0\x4b\x12\xca\xc2\x3e\xab\xd9\x47\xad\x27\x44\xc4\x59\x6b\x4e\x9b\x5c\xc6\x20\x52\x56\x76\x87\x82\x77\x3b\xa1\xb0\xdd\x4a\xfb\xd8\xd1\x8f\x84\xe5\xc3\x81\x6a\x57\x3e\x16\x11\x62\x4c\x99\x15\xc2\x82\xcf\x09\xe2\xbb\xc7\xda\x5b\xc6\x37\xac\xd0\xbd\x9b\x22\xd2\xa7\xda\x30\xe8\xed\x4c\x16\x61\x0a\x5f\x32\xf8\x11\xa0\x31\xf3\xd1\xd3\x16\x06\xed\xdb\xc2\xa2\xaa\xaf\x15\x11\xb2\x94\xdb\x45\xa2\xf2\x33\x09\xdd\x95\x03\x03\x45\x9d\xad\x0c\xf4\x77\x95\x44\x94\xc8\x7d\x27\x0c\xc5\xdd\x98\xbf\x66\x69\x11\x61\x3e\xed\xe1\x0e\x8c\x2e\x21\xfc\xf6\x8f\xff\xc5\x17\x60\x4e\x30\xb9\x71\x38\x99\xb7\xfb\xda\x04\x34\xa9\xc6\x0a\xb0\x9d\x0e\x25\xdc\xa9\xf3\x71\xc9\x39\x17\xc0\x80\x27\xfd\x40\xf8\x25\x3e\x49\x42\x5b\x8b\x3c\xcf\x0e\x55\x51\xc2\x67\x4b\xdb\xae\x56\xa7\x2b\x84\xbd\x03\xb7\xce\x9c\x7f\xa2\x41\xd8\xfd\x20\xc1\x7f\x73\x67\x16\xe1\xf3\xe6\xd0\x79\xbb\x3e\x3f\x98\x00\xa1\x87\x16\x9f\xac\xfe\x2f\x70\x72\x46\x94\x2f\x1d\x0a\x26\xc8\xf9\x84\x1a\xd7\x4d\xf1\x23\xc4\x5c\xcf\xfd\x6e\xc3\x9e\x4d\x90\x57\xd8\xf9\x4d\x00\xe3\xbb\x36\xcf\x2e\x37\xdf\x69\xb7\x18\xcc\x68\x09\xab\xec\xcd\xf2\x25\x4c\xe7\x2d\xfe\xa6\xc2\x04\x10\x3e\xb4\xd5\x55\xde\xb1\xa8\x60\x30\xe3\x35\x47\xea\xe1\xc5\x11\x84\xe5\x29\x85\x6f\xcc\xdd\x3d\x27\x9c\x91\xed\x12\x7f\xb6\xc1\xcc\x87\x60\xa0\x5b\x18\xb6\x5d\x39\x85\xf0\xbc\x6c\xd7\xdb\xfa\x7b\x86\x84\x4d\xf5\xab\xa7\x4c\xee\xd2\x9c\x50\xd4\xaf\x4f\x53\x36\xf8\x2c\x46\x98\xac\xf1\x54\xf8\xe1\x87\x97\x0c\xe4\x6f\x2b\xef\xe0\x3c\x2c\xc7\xe0\x9c\x92\xd6\x24\xa7\xa9\xa6\x0c\x5a\x2f\xf7\x6f\xaa\x89\x4f\x26\x54\x47\x3f\x15\x69\x3e\x52\x40\x78\xa6\xb8\x63\xce\xad\xae\x17\x85\xa8\xb6\x2b\x0d\xcc\x6a\x09\x21\x1c\xb8\xb3\x53\xeb\xea\x1e\x05\x42\xd1\x4b\xff\xdf\x07\x46\x5e\x11\xf8\xa3\x5e\xf4\x66\xb3\x35\x31\xe8\xfc\x1c\x5c\x20\xd1\x08\x06\x22\x3f\x2d\x3e\xab\x7a\xb4\x30\xd8\xd6\x31\x1c\xea\x3e\xa7\x96\x81\xe4\x24\xfb\xfb\x8e\x75\x1f\x19\xfc\xfe\x26\xf8\x4d\xe7\x65\x20\x21\xef\x7a\xac\xe2\xf4\x86\x6b\x0c\x72\x65\x9c\xde\x19\x06\x87\x10\x8e\x6c\x9a\x76\x6a\x81\xad\x2b\xc1\xd3\xd1\xe3\x98\x90\x48\x05\xa1\x51\x3d\x6e\xce\x16\xf9\x93\x84\xd1\x88\xcb\xd3\x86\x24\xf2\x08\x72\xc9\x0f\x45\xaf\x94\x88\x10\x6a\x13\x44\x1b\x5f\xce\xdc\x4d\xb8\x96\xb9\xec\x46\x80\xaf\x35\xa1\x36\x51\x61\x6b\xfc\xe0\x67\x16\x0c\x1f\x6e\xd9\xca\x9d\xbe\x94\xa0\x32\xba\x65\xe1\xce\x73\x06\x84\xe6\x65\x2d\xbb\x82\xb8\x0c\x08\xf9\x31\x57\x6b\x62\x6f\x9f\x67\x40\x07\x7b\x8f\xfc\x2d\x97\x3b\x76\x6f\xd5\x10\xd9\x46\x98\xed\xfc\x80\x7f\x5d\x36\x8b\xd0\x17\xe2\x94\xeb\xd5\xaf\x30\xa1\xcc\xf9\xf5\x27\x72\x6a\x93\x29\x21\x35\xa6\xcc\x4d\xd0\x5a\x97\x10\x97\x65\x39\x8d\x2b\x56\x9d\xf0\x49\x30\x56\x25\xea\xcc\x72\x82\xee\xb3\x6f\xa3\xc1\x52\x8f\x08\xd7\xfc\x2d\x6f\x0b\x25\xbe\x66\xe1\xb7\xdf\xbe\x5b\xed\xaf\x6e\x10\xb6\x58\xc4\xde\xf9\x30\x0e\xf7\x36\x19\x41\xc1\x5d\x0f\x08\xb5\x6a\x85\xfd\x6d\xe3\x65\x6a\xd6\x99\xb2\xbf\xe0\x35\xbe\xce\x27\x36\xdb\x81\xf0\xbd\x41\xec\x62\xd3\x2c\x07\xc2\xd6\xb3\x0e\x7b\x3b\xf4\x27\x96\xa2\xdc\x48\x26\x3b\x24\x62\x42\xd9\x67\x7b\x68\x59\x57\xa7\x07\xc1\xd0\x66\x9a\x8f\xd3\x38\xfa\x7d\xbf\x8a\xaf\x95\xf6\x24\xa8\xa8\xa9\xef\x1a\x53\x71\x9f\x50\xac\x2d\x13\x92\x79\xcc\xd7\x12\xca\xfb\xe4\x7b\x8d\x25\xc4\x08\xe7\x75\x9e\x17\xf7\x07\xeb\x13\x6c\x73\xb7\x4c\x1d\xe1\xd5\x22\x3c\x74\xa8\xed\x1e\xb3\x61\x23\x68\xd6\xad\x9a\x1b\xea\x28\x41\x28\x35\xba\xb2\x61\x4b\xa4\x1c\xe1\x6a\xb9\xe0\xc9\x64\xfd\x35\x84\xd2\x9e\xe7\x92\xb1\x11\x71\x84\x39\x73\x93\x44\xb5\xf4\xef\x10\x1e\x85\xac\xe9\x3c\xaa\x70\x8b\xb0\x45\xdc\xb5\x2e\xa9\xb4\x94\x30\xe0\x9c\x3f\xe5\xb1\x61\x30\xa1\x26\xb1\x22\x75\x92\xee\x69\xc2\xcc\x82\x68\xef\x0b\x6b\x8e\x13\xf8\xc5\x24\x17\x19\x6d\x62\x11\x62\x02\xe2\x6e\xd7\x18\xcc\x23\x58\xad\x2e\x48\x0d\xd5\xcf\x60\xb0\x62\x8e\x74\x8c\x60\xd3\x31\x82\xf9\x63\xf7\xc6\x19\x7d\x47\x08\x0f\x58\xb9\xa1\x0f\x92\x9b\x19\x84\x9b\x8f\xc9\xf5\x27\xaa\x12\x74\x0c\xd6\x39\x54\x2e\x30\x24\x08\x1d\xbc\xf9\xa1\xc9\x41\x85\x20\xab\x61\xb7\x31\x44\x60\x2d\xc1\xfb\x70\x46\xe2\xd3\xe5\x76\x84\x3d\x3f\xa7\xfb\x7b\x84\x49\x12\x24\xf6\xea\xcd\x7e\x6f\x5f\x49\xc8\xdf\x97\x34\xf5\xa2\x73\xd1\x04\xb0\x4f\x5d\x77\x97\x29\xbb\x4f\xc8\x28\xf9\x7c\x3f\xa1\x5e\x8f\x30\xdd\xcb\xa6\x6d\x01\xcf\x66\x82\x8e\x78\xca\xc9\x1f\x77\x4b\x08\xd5\x7e\xf4\xd9\xf8\x5e\x09\x41\x55\x62\x88\xff\x46\xfc\x20\xa1\xa8\xfb\xe4\x39\x93\x8b\x1f\x18\xa4\xb5\x14\x5c\x31\x1b\x1f\xf5\xbc\x4c\x9b\xe9\x38\x56\xc3\x40\x38\x25\xa4\xe0\xfd\x70\x14\xa1\x94\x4d\x4f\x51\xb5\x27\x64\x42\xf1\x90\x5d\x2d\x9b\x54\x7b\x9b\xfe\x95\x3a\xdf\xd0\xe5\xd3\xef\x10\xe1\xc4\x8f\x6d\x65\x4b\xc6\x57\x2d\x39\xfd\xa8\xc7\x35\xed\xd2\x84\xde\x57\x9d\x67\xcf\x3c\xfe\xcd\xc2\xa0\xa7\xaa\xfd\xe0\xc0\x52\xc2\x1f\x25\x2b\xee\x93\x3e\x42\x84\xba\xb3\x8f\x06\x96\x2e\xec\x67\xe1\x81\xb8\x5b\xe4\x02\x87\x18\xfa\x87\xb2\xe3\x35\x33\xf9\x4d\x84\x09\x72\xe7\x2b\x9c\xb2\x34\x6e\x12\x9e\x18\xaf\x91\xee\x70\x1c\xff\xa0\xe6\x2d\xb7\x56\x70\xd9\x3a\xa1\xac\xdd\x70\xe4\xc1\xfd\x12\x6e\x42\xf6\xda\x55\xe6\x63\xc9\xeb\x08\xf1\xee\x2b\x1b\x0f\xaf\x7e\x4c\x58\x78\xd0\xd4\x22\x39\x5b\x82\x20\x7d\xcd\xdd\xe2\x78\x60\x30\x21\x6e\x5b\x62\xd4\xc1\xe6\xd7\x84\x2f\x2d\x7c\x45\x9f\x02\x8a\x18\x24\x5c\xf3\xc8\x7d\xb0\x41\x85\x50\x9e\xef\xda\x66\x19\x35\xc2\x02\x87\xb3\xc2\x58\xb7\xa2\x10\x61\x3b\x5f\x47\x79\x4b\x56\x0e\x83\xea\x31\x1b\x99\x9e\xf1\x92\x9f\xb0\xee\x9a\xeb\xa6\x3e\x16\x62\xce\x85\x2b\x88\xc4\x69\x33\xc8\xa8\x36\xfb\xac\xe8\xd9\x4c\x78\x75\xea\xab\xa4\xdd\xf8\x1a\x56\xab\x3e\x89\x23\x49\xf8\x26\x41\xa1\x87\xdd\x04\xfb\x6f\x12\xa2\x1a\xe5\x17\xce\xdd\x62\x4b\x38\xfc\xd8\xe7\xfb\xdb\x98\x1f\x2c\x24\x1e\x16\xdd\x69\x3a\xfa\x80\x30\x22\xbb\xec\xdd\xfd\x87\x0f\x08\x11\xb7\x05\xc7\x4e\xf4\x5d\xa6\x7f\xa3\x15\x09\x8e\x87\x78\xba\x24\x09\x3b\xb8\x33\xc3\x9b\xeb\x9d\x09\x01\x25\x07\x45\xa5\x96\x9d\x23\xfc\xa9\x18\xd0\x14\xb4\x2e\x22\x2c\xf6\x9c\x3a\x6d\xe9\x47\x5e\x82\x2d\x6f\x84\x4b\x54\xdb\x0d\xc2\xd7\x0d\x0f\x54\x5d\xad\xd6\x11\x8e\xb0\xf7\x1d\x98\x33\xf8\x98\xe0\x9a\xd9\xbc\xbe\xd0\xa2\x94\x30\x18\xf5\xd1\x47\xe9\x53\x3a\x61\xa0\x63\x47\xf2\x7e\xab\x3a\x82\x83\x5b\xfa\xdc\x27\x5d\xbe\x04\x7e\xe9\x50\x56\xe6\xd7\x7a\x82\x6c\xf0\xbb\x03\xd9\xe9\xaa\x84\xab\x92\xb6\xdc\x35\x1b\xd3\x08\x92\x5b\xe7\x25\x8c\x15\x69\x13\xf6\xa5\xb5\x77\xde\x2c\xcc\x21\xac\x7c\x33\x54\xd6\xe7\x5b\x4c\xb8\x2d\x20\x17\x5d\xd8\x79\x8b\x41\x68\xcf\xfb\x92\xfe\xf1\xf2\x3f\xcc\xc4\xd5\x4f\x4b\xdd\x37\x10\x2e\x53\x90\xcc\xcf\x38\x2d\xc2\xd3\x97\x61\x2b\xe2\xb8\x55\x09\xf1\xde\x17\x97\x7d\xaf\x37\x1f\xbf\xf0\xcd\x76\xf3\x9f\xd1\x23\x08\x6f\xe2\x57\x16\x0d\xdf\x46\xd8\x14\xa3\x47\x29\xa2\x7f\x58\x88\x0a\x7d\xa4\xb2\xe0\x5a\x1d\x41\x28\xb1\xfc\xf7\x0a\x23\x29\x82\xac\xe6\x98\xf1\x90\x75\x37\x0b\x89\x57\xb5\xfa\x6d\xa7\xaa\x13\xe6\x85\x84\x1f\x7f\x69\x75\x90\x70\xbc\xa7\xe3\x30\xaf\x8a\xcd\x04\x3c\x9c\x7d\xa9\xee\x6b\xbe\x3c\x21\xf9\xe7\xda\xc7\x07\xe3\x32\x08\xc1\xfc\xa6\xc3\x61\x49\x0f\x19\xb8\x4d\x5e\x96\xf0\xf6\x94\x33\xe1\x6e\xf6\xc3\xbe\xe8\x0d\x7a\x04\xa7\xc0\x68\x89\xae\xb1\xbd\x0c\x0e\x6d\x1b\xbd\x2f\xe1\xfa\x9a\x41\xcb\xf1\xd5\xd1\x12\x27\x9a\x19\xbc\x29\xcd\x09\xb9\x72\xa2\x8d\xc1\x59\x3b\x0b\xde\xa3\xca\x4e\x04\xd3\x78\xcf\x8d\x71\xe6\x49\x0c\xce\xd7\x35\xec\x70\x54\x39\x46\x98\xfb\x8e\x83\xef\xd4\xfc\x7b\x0c\x64\xb4\x1d\x84\xbd\x17\x99\x12\x72\x1f\x25\x3a\xfa\x1a\xde\x65\x30\x32\x1c\xfe\x44\x2d\x5a\x9d\xb0\x86\xb7\xea\x17\x47\xc4\x71\x82\x5a\xfa\x67\x11\xf9\x82\x59\x84\x19\xc7\x54\xbc\xc8\x47\x96\x10\xf4\xcc\x7c\xf3\xdc\x2c\x77\x82\xdb\x76\x67\x65\xf3\x8c\x55\x84\x11\xc3\x2b\x3f\x3b\xfb\xe6\x11\x72\xaf\xc5\x5f\x95\x69\x7e\x5d\x08\x71\xdf\xcf\x88\xd0\xd7\x23\x28\x5f\x28\x48\x14\xfb\xa2\x4d\xf0\x6f\x2f\xea\xbf\x50\xa3\x4c\xf0\x78\xb4\x60\xd2\xc5\xc6\x2f\x2c\x3c\xc8\x56\xbb\xee\x78\x40\x97\xc0\xbd\xec\x16\x6b\xf4\xd1\xa6\x09\x98\xc6\xa6\xa9\xb7\x68\xed\x06\xc2\x93\xb0\x80\x22\xc7\xad\xbf\x58\x18\x08\xb8\x92\xc4\x57\xbb\x88\xc0\x9d\xb5\x99\xbf\xc6\x30\x90\xc1\xb9\xb5\x62\x6f\x94\xa4\x5c\x09\x95\xf3\x37\xd8\xdf\xf3\x68\x63\x70\x64\x4b\x84\x53\xa6\xfe\x21\x42\x89\xe1\xcf\xaa\x35\x0b\xf8\x09\xba\xb8\x14\x7c\xb4\x77\x0d\x61\xfd\xf3\xa3\xac\x08\x05\x8b\x09\x98\xf2\xc8\xa0\x8a\x87\xa3\x91\x41\x90\xfb\x55\x33\xcd\x70\x63\x82\xcb\xbc\x86\x0c\xb5\x0b\x6f\x58\x48\x3d\x61\xf3\xbd\x2b\x33\x90\x81\x98\x69\xeb\xd1\x8f\x76\xfa\x04\x27\xce\xda\x47\x96\x0d\xb6\x84\xa3\x83\x8e\xdb\x6d\x3a\x64\x09\xd2\x55\xbf\xa3\x0c\x2d\xdd\x08\x23\xa5\x72\xa6\xde\x22\x2a\x84\x44\xbb\x86\xd0\xf3\x23\xc3\x2c\x28\x07\xc7\x0d\x45\xc5\x1e\x26\x54\x26\xdb\x1f\xac\x56\xcb\x24\x24\x2f\x94\x1c\xb6\x2a\xd6\x24\xb4\x55\x0e\x1c\x14\xd6\xac\x60\xf0\x5e\x74\xe1\x65\x99\x87\x6b\x09\x53\x6a\xdd\x13\xcc\xaa\x5d\x18\xd4\xce\x75\xfe\x74\x62\xa5\x25\x61\xba\xf6\xd7\x0a\xd1\xf7\x65\x0c\xac\x96\xd9\xff\x78\x32\xc7\x9c\xb0\xb1\x72\xd7\x39\xde\x6c\x29\x82\x64\x1d\xd3\xf6\x6b\x95\x23\x21\xe8\x49\x5a\x98\xe6\x6b\x87\xff\x42\xeb\xdc\xf9\x32\x9f\xef\xf6\xb3\xd0\xb0\xa4\xfe\xfa\xc6\xb6\xf5\x04\x63\xe7\xa2\xa8\x9a\x47\xfc\x84\xb4\xe5\x61\x5b\x04\x56\x4a\x11\x5e\x7a\x09\x65\x16\xf6\x9b\xfd\x17\x7e\x44\xdc\xd0\x34\xba\xc1\x4d\xd8\x68\xb1\xfc\xf8\xf5\x13\x12\x84\xb7\x1e\x3c\xeb\xf6\xfe\xc8\x21\x3c\xec\x4d\xd0\xcc\x3d\xb6\x8b\x30\x76\xa1\xbc\x23\xf7\x55\x3a\x61\x77\x69\xcd\x0f\xc9\xf8\x1a\x42\xaf\xa0\x82\xd1\xc9\x1f\xe7\x09\xd5\xf3\xb8\x63\x94\x4f\xbf\x26\x34\x7c\x16\x7d\xac\xab\xb7\x91\x60\x73\xc9\xf4\xe1\xd6\x8e\x0a\x06\x15\xaf\xb5\x44\x9c\xb1\x92\xb0\x25\xdb\x83\xe7\x0d\x47\x0d\xe1\xf1\xa7\xb8\xfd\x46\x4d\xd5\x04\xb9\xfc\x1f\xa5\x4e\xe3\x23\x85\x8f\xb9\x25\x7d\x76\x91\x13\x50\xeb\x24\xf7\x4c\x84\x3d\x87\xc1\x41\xe3\xc8\xd8\xbf\x65\xf1\xc8\x86\x53\x1e\x6a\xdc\x04\x41\x46\xfd\xfb\x85\xfd\x2c\xc2\x31\xc7\x84\x03\xce\xeb\xba\x08\xad\xd3\x0a\xc3\xc2\x7e\xef\xfc\x2f\x88\x57\xcc\xa9\xec\xa1\xa7\x85\xa8\xe5\xb7\x9f\x9f\x7e\x73\x29\x41\x42\x66\x79\xbb\x9f\xcb\x09\x82\x80\x61\xe3\xa2\xa9\xab\x02\x18\x1c\x31\x8e\x39\xb2\xef\xc2\x01\x42\xca\x64\x9f\xc2\x8e\x19\x16\x04\xdb\xdb\x89\xdf\x96\x9d\xe0\x25\x3c\x98\xf1\xec\x70\xd5\x97\x00\xc2\xee\x62\x0f\xc5\x1e\x47\x22\x88\x18\x67\xa6\x5d\x4b\x95\x26\x44\xbd\x98\xbd\xf9\x91\x30\x1f\xe1\xf9\xc7\x80\xfc\x27\xaa\xa7\x27\x94\xab\xd7\x2e\x5e\x3f\xb9\xe7\x45\x21\xa4\xa5\xbd\x06\x84\xfe\xa8\x13\xdc\x1e\x38\x72\x25\x58\x59\x13\x62\x7d\x7b\x8d\x2d\xb2\xc4\x08\xaf\xdd\x8d\xc4\x77\xfd\x1a\x5f\xe3\x1d\xe5\x03\xe3\xb3\x47\x59\xd8\x52\x94\x38\x98\x93\xbb\x9a\x20\x22\x97\x5f\x61\x79\x9e\x8f\xd0\x3a\xff\x89\x9f\xb6\x52\x26\xc1\xd9\xad\xea\x6c\xf7\xc1\x4c\xc2\x61\xeb\x57\x6b\x4b\x7f\xbd\x64\x60\xaa\xf0\xf5\xf0\xfe\x8b\xf7\x98\x7f\xa3\xc2\x82\xcb\x33\xf4\x8b\x54\x08\xa6\xc2\x09\xda\x7d\x1f\xad\x08\xf7\x7e\xbc\x35\xfc\x79\xc2\x7c\xc2\x28\xbe\x75\xf2\x31\x61\x96\x09\x41\xd7\x72\xa3\xef\xa8\x55\x08\xa1\x86\x53\x6e\xb7\xeb\x93\x03\x84\x7a\x94\xf1\x6d\x5f\x57\x4a\x10\x9b\xcb\xad\x68\xab\x91\x48\x10\xec\x0b\x36\xb2\x8c\x3c\x44\x30\x7f\x94\x66\x9e\x75\xc3\x8e\x30\x75\xdd\x0b\x9b\x92\x0c\x1b\x42\xbd\xf5\xa6\x45\x9f\x76\xac\x27\xec\xb8\x5f\xae\x2e\xb8\x48\x96\xf0\x94\x7b\xc0\xf4\x42\x2c\x27\x41\x66\xe3\xdd\x78\x83\x8c\x3c\x82\x78\x9c\x86\xac\xcd\xca\xf5\x84\xb9\x6b\x03\x6e\xb2\xd4\x66\x13\x64\xae\xb1\x5f\x77\x70\xad\x24\xc8\xea\xc5\xd4\x05\x0b\xec\x21\xe4\xae\xc6\xce\x85\xd2\xcb\x09\xf3\x67\x36\x0d\x1f\x11\x16\x23\x2c\xec\xbf\x5a\xba\xe9\xab\x03\xa1\x4c\xe4\x36\xc7\x9a\xa9\xb9\x0c\xea\xbe\x8b\x3c\x7e\x67\x57\xc2\x40\x5d\x66\x9b\xef\xe6\xf1\xd1\x65\xaf\x5f\x45\x17\x39\x8f\x12\x5e\x85\xbc\xdf\x36\x83\xa7\x88\x30\x94\xa0\x68\xbc\xbd\x9c\x73\x02\x96\x3d\xbf\x97\xb5\xe7\x50\x7f\x21\x38\xb6\xa9\xf0\xad\x3e\x7b\x9f\xf0\xe5\xec\xfb\x5f\x7a\x72\xd6\x04\x87\x31\x3e\xa5\x60\x9e\x9d\x84\x9a\x87\x36\xa2\xaa\x5d\x71\x0c\x78\xe6\xeb\xcc\xf1\xe1\x5a\x46\x58\x3b\xc9\x60\xd2\xd9\xbd\x44\x90\x30\xf0\xdd\x60\x1a\xf3\x94\x85\xb7\xd3\x4e\xee\x6d\xd8\xcf\x4b\x90\x1a\x3c\x37\xd2\xb9\x5e\x72\x02\x78\x3f\x2c\x14\xf9\xbc\xcf\x9b\xa0\xf6\x7d\xe8\xaa\xf6\xf3\xc9\x84\xf8\x3d\x3f\x98\x84\xc0\x6a\x82\xb4\x9a\xf3\xc2\x0b\xa3\xef\x09\x2e\x17\xbb\xe7\x45\xe3\x27\x61\x72\xb6\x9b\xa1\xe7\xda\x06\xc2\xbb\x8d\xe2\x25\xa1\x2b\x4b\x09\x82\xe5\xb9\x73\x43\x0d\x63\x09\x8d\xbf\xef\x70\xf9\x95\xa4\x4f\x40\xf3\xd1\x42\xb3\x6d\xe7\x6f\x11\x72\x02\xae\xff\x09\x19\x3f\x73\x58\x3e\x78\xfa\xfe\xaa\xab\x84\xa8\xd8\xfa\xc2\xce\x9b\x4e\x04\x87\xf8\xf4\xfc\xd6\xd9\x89\x84\xf2\x10\x15\xe7\xe4\x9a\xab\x84\x4e\x5d\xf3\xf2\x7d\xe3\x67\xac\x67\x6d\x2c\x74\x48\xd0\x27\x70\x4e\x59\xa6\xc9\xac\xe6\x9f\x00\x5b\xfb\x70\xbe\x92\xc5\x1a\x84\x23\xc6\x6d\x0e\x63\xbd\xab\x09\x4d\x4e\x33\x64\x54\x76\xcf\x20\x4c\x5b\x5c\x91\x7d\x5e\xbb\x92\x05\x9d\x4d\x16\xb7\xda\x53\x17\x10\xea\xdf\x4e\x8f\x75\xe7\x12\xa1\x7f\x25\x80\x63\xd6\x3d\xaf\x67\x6d\x2c\x3c\xca\x90\x33\x33\xb5\x5d\x4d\xf8\x30\x12\xf4\xe4\x4d\xf4\x14\x82\xe5\xc5\xa1\x54\x9e\x7d\x1b\x09\xe7\xe4\x44\x8a\xa7\x0f\x55\x10\xb2\x2e\xb5\x89\x6f\xef\x91\x24\x2c\x9e\x7b\x6e\x6b\xf7\xf8\x33\xb6\x20\xd8\xc3\x7a\x95\x3f\x27\x41\x6e\xf3\x5d\xf6\xca\x50\x83\x09\x70\x53\x0a\x7e\x71\xc6\x4f\x93\xf0\xd1\xa4\xb0\x25\x63\xda\x30\x0b\x8b\x4e\xcb\xf6\x1d\xcb\x5b\x43\x08\x6b\x75\x2d\x7f\x62\xbf\x95\xe0\xcd\xa4\x25\x8d\x15\xb6\x31\xff\xca\xd9\xcf\xeb\x78\x14\xac\xdf\x16\x62\xb7\xc6\x8e\x29\xd7\x9f\xaf\x22\xfc\x0a\xd9\xbe\x42\xe7\xd6\x6e\xc2\x0d\xf5\xc6\x44\xff\x8f\xb3\x09\xbb\x6e\xca\x3a\xf1\xf8\x70\x10\x0e\x78\xf3\xbe\x9c\xcb\xa7\x45\x78\xe6\xfc\x2e\xbc\x6b\xc6\xf8\x26\xd5\xfe\x67\xd2\xbd\x49\xd7\x09\x79\x5a\x0e\x6e\x7f\x61\x60\x3e\x6c\xb5\xfe\x56\x38\x61\x91\xf8\xe3\x04\xf1\x86\x1f\x2c\xa8\xb5\xcd\x5f\x6c\x91\x15\x43\x08\x6f\x12\x6b\x74\xd9\x25\x40\x28\x09\x0c\x16\x6c\xdf\x9e\x44\x50\x2d\xae\x99\x2a\x25\x1a\x32\x01\x4a\x3d\x21\x7d\xf9\xc3\xd6\x84\xfa\x4a\xe1\x80\x92\x0d\xb3\x09\xd5\xd7\x3e\x1b\xca\x24\x7c\x26\xb4\xd8\x65\xf3\xfc\x2d\x7d\x7b\xf6\x1f\xa9\xad\x12\x22\x14\x3c\x2d\x60\xf6\xf9\x55\x11\xbe\x0b\x24\x2c\xd8\x28\x2f\x45\xb8\xbc\xc7\xe5\x57\xdc\x5a\x36\xc2\x8e\x1f\xaa\x49\xfe\x4b\x92\x08\x66\xb7\xdb\x15\x35\xa2\x76\x10\xb4\x6b\x2c\x0d\x27\xdd\x69\x61\xfe\x95\x83\xbc\x91\x1e\x39\x6f\x6c\x09\x99\xd5\x57\xfe\x64\xd1\x0f\x16\x06\xcc\x52\x38\x65\xde\xa9\x12\x8e\xd6\x32\xe2\x79\x23\x26\x84\x83\x81\xe9\x47\x44\x5d\x92\x18\x04\x85\xdf\xbb\x53\xd7\x3a\xfe\x63\xfe\xf2\xcb\xed\x4f\x7d\x2a\x84\x2c\xbb\xbc\x1b\x19\xae\xbb\x09\xb2\xce\x3e\x71\xa2\x92\x49\x84\xef\x9b\xce\xbc\x59\x10\xcc\x41\xf0\xb7\x52\xbe\xcf\x56\x1d\x35\x01\x21\x5d\x47\x15\xf6\x6f\xe1\x27\xe4\x1f\xd9\x33\x69\x8a\x87\x2c\x61\x67\x4a\x76\x5b\xe9\x17\x21\x82\x4f\xc6\xf9\xb7\x3b\x87\xd5\x09\x87\x7e\xda\x1f\x70\x38\x1c\x38\x01\x97\xde\x9d\xdb\x7e\x62\x4e\x20\x83\xf3\xa9\xeb\x1d\x36\xdd\x33\x26\x6c\x2a\xff\x9c\x5e\x63\xdc\x4e\x68\xbf\x65\xdc\xef\xb0\xa5\x9d\xa0\x6b\xfb\xcd\xf4\xf9\x78\x99\x31\x6f\x66\x42\x76\xc5\x53\xc2\xe9\xe8\x0b\x03\xb2\x01\x9b\x08\x97\xa2\x8b\x56\x55\x3f\xf6\x22\xf8\xfb\xa4\x6f\xda\x22\x63\x4f\x70\x7a\x58\x22\xbc\x23\x7e\x0b\xc1\x40\xc3\x75\x19\xdf\xca\x50\xc2\xc2\x94\x05\x17\x9f\xde\xea\x65\xe1\xa8\xc4\x40\x8e\xf5\x33\x6b\x1a\x3e\xb7\xc6\xbb\xc3\xc9\x81\xa0\x90\xa6\xe0\x2d\x6f\x62\x49\xb8\x14\x36\xa3\x31\x6d\x4c\x9e\x70\xe0\xcf\xb2\xd0\x90\x94\x0d\x84\x63\x63\xb3\x5e\x38\x27\x49\x11\x9c\x1f\x59\x7d\x5a\xf0\x7e\x2a\xe1\xa8\xd0\x5e\xfe\x51\xed\x51\x16\x2c\xfc\x96\xdc\xd6\x95\xb4\x23\x74\x2a\x1e\x1a\x3c\x3c\xd2\xc5\xa0\x8c\x35\x65\x76\x7b\xca\x4e\xc2\xaf\x8c\xd6\xd0\x75\x8a\x1d\x2c\x5c\x32\x9e\xfb\xc5\x4e\x61\x3a\x21\x4e\x6a\xa9\x8d\xd1\x26\x2d\x42\xaa\x82\x43\xf3\x02\x8b\x3d\x04\x0e\x85\x9b\x2b\x1c\xa7\x1d\x24\x6c\x7d\x57\x20\xa3\xf1\x66\x13\x81\xed\xfc\xcb\x82\x98\xc9\x53\x09\x5b\x7f\x6c\x2c\xe1\xea\x1d\xbf\xf8\xf5\x4c\x8f\xd6\x98\xe7\x10\xfa\xa4\xcf\xa9\x3c\x6b\x98\x46\x18\x09\x72\x57\x4a\x3e\xe1\x4e\x88\x35\xaf\x96\x7b\x53\x2c\x48\xc0\xf9\x87\x2f\x1d\x77\x99\x30\x10\xa8\x33\x34\x39\x96\x3e\x8b\x90\xf5\x5c\x62\x6b\xfb\xb4\xbb\x84\xcb\x97\xb7\x2a\x72\x85\x19\x13\x38\x4f\xf0\x6b\x25\x5e\xff\xc4\x60\xcf\xdc\xde\xcd\x6b\x4a\x75\x09\x8b\x8f\xbf\x0d\x1f\x9a\xe9\x44\x10\xb5\x56\x09\xbc\x72\x68\x3d\x21\x36\xc6\x4b\xc6\x9f\x55\xc0\xe0\x56\xcb\x28\x5f\x57\xee\x01\xc2\xd9\xca\x07\x8f\xdd\x0e\x94\x33\x08\xb1\x7c\x31\x7a\x65\xe3\x6a\x42\xbb\xd6\xa3\x7b\x2a\x3a\xca\x84\xe3\x9a\x47\xbc\x23\xf4\x2d\x08\x9c\x1f\x12\xf7\xa8\xee\xb7\x22\x3c\x95\xf3\x64\xfe\xe4\xe8\x12\xee\x8d\x08\xde\x9a\x23\xca\x4e\x18\x0d\x9b\x5d\xf5\xe5\xa8\x0e\x61\xdf\xfb\xdc\x8d\x26\x83\x5e\x84\xc9\xfc\x95\x29\x7f\x62\x8d\x08\x7e\x95\x03\x02\x8a\x41\x5e\x04\x1b\x91\x18\xd9\x37\x56\x4f\x09\x11\xaf\xbe\x7b\xd7\x55\xe6\x10\x9c\x2e\x8e\xb2\xad\x93\xcd\x66\xd0\x7d\x37\x74\x92\xe0\xdf\x7f\xf5\xbc\xf6\x82\xd5\x1e\xa6\x9f\x85\xdf\x86\x52\x33\xce\x3a\x46\x32\x98\xdf\xc4\xb2\x58\x70\x84\x08\x17\x07\xa6\x6b\xcb\x0c\x2d\x1c\x7f\x19\x2c\x33\x9d\x9b\xa3\x43\x30\xcb\xfa\xee\x30\xed\xed\x63\x82\xd8\x88\xc7\xfe\x55\x0a\xcf\x09\x0d\xa6\x42\xba\x1c\xb2\xa9\x04\xc5\xcc\x9a\xe0\xfb\x52\x07\x08\x7d\x4d\x4f\x1d\x6c\x7e\x65\x10\xe6\x89\xba\x0f\xfb\x37\xe5\x4e\x80\xf9\xc5\xed\x6f\x87\xc3\xb5\x09\x8a\x37\x44\x36\x4c\xdf\xbb\x8d\xe0\xbc\x7f\x1d\x6b\x3e\xa7\x32\x03\x8e\x53\xd2\x73\x35\x05\x04\x09\x0e\xf7\x7c\xdf\xc7\x59\x06\x11\x12\x3a\x44\x4f\xda\xc9\x72\x11\x94\x03\xca\xca\xb4\x7b\x9c\x09\x67\x6f\xcd\xbe\xea\xfa\x87\x97\x70\xe2\x8c\x4f\xb2\xd7\x33\x7e\x42\x6e\xe6\xe5\x9b\x4d\x5d\xe2\x84\x5b\x0e\x22\x6e\xf3\x97\x14\x10\x0e\x85\x2f\x58\xe7\xd3\x25\x45\xf8\xfd\xdb\xe7\x4c\x4c\xed\x61\x82\x4d\x73\x88\xd1\x4c\x79\xb6\x09\xc8\x49\xd1\x4a\xd0\x50\x4d\x2d\xc4\xe5\x99\x5d\xc1\x96\xf5\x22\x04\xa7\x2c\x97\x92\x67\x7e\x51\x04\xf9\xae\x91\xc0\xa9\x19\x51\x04\x8b\x75\x49\x8f\x57\xee\x0e\x21\x68\xfa\x7c\x58\x91\xe6\x9d\x47\xb8\x92\xab\x39\xdc\xe0\x92\x47\x50\x4d\x7e\xbf\x53\x81\x6b\x2f\xa1\xc1\xa8\xfe\xdc\x3b\x3f\x59\x82\x5e\xd4\xb6\x77\x05\xad\x67\x08\x6e\xb9\x2b\x5d\xe3\xee\x2f\x22\xfc\x91\x38\x9d\x34\x4f\xce\x9c\x10\xca\x6b\x7a\x49\x79\x5a\x2a\x61\x34\xde\x34\xe7\xfc\xf8\xe8\x55\x3b\xb7\xaa\x29\xe7\x23\xc2\xd2\x7b\x42\xfb\x0e\xcc\x2a\x66\x10\x5f\xd9\xd2\x1f\x3e\xe5\x11\xa1\x52\xe0\xc1\xdb\xa0\xca\x72\x06\xd1\x1b\xb9\x8d\xcd\xc6\xcf\x8c\x5a\x6d\xca\x78\x18\xbc\x94\xf0\x2b\xed\x89\x6e\x65\xc5\x65\x42\xa7\xe0\xfd\xfd\x82\xca\x4f\x08\x4d\x71\xa6\xfb\x1b\x1d\x2d\x09\x53\xe5\xce\x64\xdf\xaa\x71\x26\x7c\x0c\xb3\xb7\x3f\x69\x5a\x49\x88\xde\xea\xcf\xe9\x25\x96\xcf\x40\x49\xa7\xcb\x7d\xf1\x36\x39\x42\xac\xbd\x17\xb7\x5a\x7f\x12\x03\xeb\x3c\x1b\x53\xad\x87\x83\x2c\x8c\x55\xe7\x54\xe7\xa6\x0f\x4c\x80\x8b\xdd\x41\xe3\xb0\xe6\x37\x85\x50\xb9\xf2\xd8\xe7\x89\x7b\x02\xa1\xa8\xff\xf5\xf9\x0d\x4d\x06\x84\x75\x23\x9b\xf4\x2a\x2e\x6f\x25\x64\x7d\x49\x37\x52\x93\xd8\x4b\xd8\x17\xfb\xed\xe5\x76\x77\x5b\x82\xcc\x4e\xf1\x1b\x7b\x57\x5b\x12\x2e\x2f\xd2\x0b\x3a\xfc\x46\x81\x90\x25\xd4\x3f\x74\x6d\xfc\x37\xdb\xff\x4a\xe4\xaf\x1e\x0e\x33\xf3\xab\x84\xed\x67\x5e\xec\xfa\xfe\xfe\x1b\x0b\x51\xf7\xef\x88\xdc\x5f\xbe\x8a\x90\x29\x1f\xf5\xaa\x77\x28\x89\x20\x26\x75\x5d\x66\xd7\xd1\xf3\x04\x17\xb6\xdc\x9e\x47\x56\xea\x84\x29\x1f\x8a\xf9\x67\xbb\xae\x21\xcc\x4f\x0b\x7a\x72\xde\x76\x03\xa1\x5d\xd5\xc3\x7e\xb9\x3f\xff\xf8\x5b\x7c\xc6\xe9\x4b\x3f\xcd\x08\x53\x7f\x45\x56\x3c\x0f\xdc\x44\x98\x13\x62\xad\xf5\x67\x4f\x2c\x83\x64\xcf\x67\xb3\xa4\xa2\x42\x08\xfc\xee\x2b\x74\x0c\x5f\xc9\x11\x9e\x8a\x0b\x65\x8c\x38\x3c\x23\x04\x3f\x8a\x15\x3b\xb4\x97\x18\xe4\x9f\xf3\xf6\xed\xd5\x33\x21\xf4\x7d\x6f\x8a\x1e\x2d\x9c\x43\x48\xc9\x39\x96\x76\xc7\x2b\x80\xc0\x37\xff\x8e\xfa\xae\xd2\x22\x06\x3d\xaa\x8a\x0b\xe4\x57\x44\x11\x0a\xdf\x04\xbf\x77\x31\xb5\x25\x54\xab\xf0\xd4\x6f\x2f\x9f\x4d\x58\xd7\xe1\x99\x77\xba\x32\x81\x70\x2a\x50\xae\xaf\x2d\xbb\xa5\x10\x46\xdc\x36\xbe\xfd\x8f\x45\x08\x22\xb6\xde\xe1\xa6\x65\x07\x08\xfb\x0f\xf9\xf1\x99\xca\xf8\x4c\xc0\xae\xeb\x05\x3a\x6b\xcb\x23\x08\xd7\x76\x1e\x10\x8e\x95\xbd\x5f\x88\x1a\xdb\x3f\xdf\xf8\x0b\xfa\x58\xff\xf0\x2e\x9b\x2b\x4c\xb2\x70\x21\xfd\xc3\x54\xdf\x23\x76\x72\xb2\x01\x0c\x8a\xb8\x25\xda\xbf\x95\x98\x11\x0e\x7f\xe6\x7e\x21\xd6\xa1\x4b\x10\x69\x10\xaf\x5a\x5f\x79\x8b\x10\xfc\xf4\x2e\xfb\x33\x23\x7d\xc2\x11\x87\xf3\xe6\x2f\x03\x0e\x11\x2a\xaf\x0e\xaf\x52\x4d\xb6\x25\x04\x96\x29\xbe\xd0\x79\x5e\x4f\x20\xb5\xbd\x73\x6d\x55\xfd\x08\xd6\x6d\xbe\x27\x05\x16\xb5\x12\x4e\x44\x79\x9c\x08\x52\xa8\x21\x78\x77\x85\x3c\x49\x67\x2f\x26\x3c\x2d\xbc\x99\xfd\xf2\x92\x1a\x41\xe7\x52\x72\x55\x62\x61\x36\x61\x8c\xcd\xc6\xfe\xfc\x6e\xb5\x09\x10\xf7\x72\x4c\x8d\xb2\x99\x47\xb8\x78\x97\xbf\xa1\xc4\x78\x27\xc1\xb8\x6e\xfb\xf3\xa6\xec\x67\x84\x1d\x9b\xae\xef\x34\x3b\x5a\xcf\xa0\xe7\xfd\x1e\x6d\xee\xe9\xd5\x0c\x92\x1f\x3b\x7e\xfd\x64\xb2\x99\xf0\x2e\xba\xb0\x22\x52\x3e\x97\xc0\xb6\x78\xe7\x4d\x77\xb7\x50\x06\x2e\x56\x43\x3c\x61\xd9\xc5\x04\xe9\xd0\x45\xe9\x91\xbf\x3b\x08\xc7\x2f\xb8\x56\x9c\x18\xc7\xa6\x81\x77\xa3\xc7\xc7\xd1\x72\x35\xc8\x2b\xbd\xab\x86\x20\x7d\x2d\x70\xd4\xad\x6d\xfc\x25\x45\xf0\x93\x6f\xef\x87\x44\x82\xee\xd1\xb2\x40\x32\x90\x27\xcc\x8e\x7e\xe9\x2b\x7d\x7c\x3d\xe1\x1c\x5b\xe1\x19\xc3\x2b\xce\x84\x94\x6f\x3b\xa7\x8a\x1a\x57\x12\x18\x91\x9a\xcd\x1b\xe7\x27\x13\x4e\x1b\x4b\x54\x6c\x17\x09\x26\x7c\x38\xfe\xc6\xac\x7a\x7a\x09\x61\x6f\x8f\x5d\xc8\xf6\x9e\x53\x84\xb6\x50\x17\x2e\x27\x9e\x7c\x42\xc3\x15\xa3\xdc\xf0\x82\x2f\x2c\x64\xca\xb7\x57\x09\x6e\x4a\x20\x64\x63\xd4\xf9\xbd\x09\xef\x04\x5c\x9b\xd1\xe3\xff\x40\x25\x99\xd0\xfd\x70\xaf\xf1\xb7\x68\x0e\xc2\x1b\xf5\x95\x62\x3d\xda\x42\x84\x29\x4f\x34\x7c\xf5\x9e\x1d\x21\x7c\xf2\xdd\xe9\x53\x6c\xec\x42\xa8\x2b\xd0\xcf\xe6\xbc\x67\x49\x78\x58\xde\xdc\x32\x2d\x55\x93\x90\xb7\x90\xeb\xee\xd1\xbe\x2e\x16\xca\x95\x4a\xa7\x50\xea\xc8\x04\xc8\x6c\x4c\x8b\x3b\xcd\x75\x86\xe0\x53\xa2\xa9\xfc\x67\x7a\x43\x21\x56\xde\x78\xd1\x7b\xfd\xf3\x6d\xc2\x60\x83\x5c\xfa\xfd\xa9\xa9\x04\x85\x6b\xd2\x97\xde\x6c\x34\x22\x4c\xef\x9f\xc1\xa5\xbf\x7f\x36\xe1\xf5\xa4\x67\x97\x56\xa8\xef\x25\xfc\x7c\xa5\xd3\xbe\xb8\x6d\x80\x05\x5e\xad\x43\x99\xfe\x1b\xa5\x09\x59\xcb\x4c\xbf\x05\xef\x37\xa0\x7f\xa5\xe1\xc3\xd4\x30\xbb\xf0\x59\x84\x8f\x9c\x45\xb3\x0e\x7d\xab\x67\x81\xfd\xd1\xde\x4d\xe1\xe7\xa4\x09\x83\x02\x77\x15\xd7\x7f\x98\x47\xb8\x6b\xcf\x67\x61\x55\x74\x87\x41\x84\xbc\xc6\x58\xc4\xfa\x59\x84\x85\x5c\x8e\xcf\x26\x65\xac\x9b\x80\x8a\x52\xbe\x30\x87\x7e\xb0\x50\xb7\xaa\xb1\xf2\x5a\x7f\x0a\xc1\xa4\xa5\xf7\xdb\x73\xbb\x21\x16\xda\x1f\xfb\x14\xee\x57\x92\x20\xac\x4d\xfe\xb8\xfe\xd2\xb0\xe4\x7f\xa1\xa3\x8f\xeb\x57\xa4\xf2\x57\x16\xe2\x3e\x97\xe9\x6b\x4d\xda\x37\xa1\xfc\x0f\xd6\xbb\x63\xe6\x47\x8d\x5f\x44\xd5\xbb\x6e\xce\x99\x22\xb2\x86\xd0\xd5\x99\x71\x90\x4f\x23\x8d\x70\x6e\xe9\x15\x95\xb7\xd7\xc7\x17\x5f\x0e\x8e\xe5\x6b\x92\xae\x11\x2e\x28\x85\x07\x09\x95\x8d\xb0\x20\x5d\xff\xe7\xa1\xb8\x49\x04\x83\xe7\x33\xd4\x85\xde\x2d\x95\x25\xec\x61\x6b\x4c\x1b\x12\x92\x22\xec\xb5\xcc\xca\x08\x67\xcd\x24\x8c\xa9\xf1\x99\x1c\x89\x51\x27\xc4\x3d\xb3\xb0\xf7\xba\xcd\x35\x01\xea\xdb\xff\x9c\x2e\x8b\x69\x2e\xc4\xc6\x7d\xf9\x25\x5a\xf9\x46\x84\x2b\xb5\xa1\x7b\x07\xe5\x2d\x09\x5d\xd6\xe2\xba\xbd\xb5\x0f\x09\x97\x44\x20\xb0\x21\xa5\x8c\xf9\x57\x84\x74\x14\x95\x9e\x5f\x39\x4b\xa8\xd7\x5c\x3a\x62\xff\xf3\x35\x83\x2d\x85\xae\xb7\xb5\xef\x9d\x25\x4c\xf5\xab\xdd\x9c\x7e\xfe\x2c\x81\xfd\xc3\x8f\x01\xc7\xd7\x4b\x08\xf6\x3f\x96\x27\xe6\x2e\x99\x46\x08\x75\x5d\x1e\xbf\xfa\xd3\x8d\x42\xf4\xce\xdf\x75\x5e\x59\x8b\x9f\x50\x11\xb4\x79\x98\x5b\x88\x9d\x41\xe7\xe6\x5e\x0f\x75\xe7\x59\x84\x6f\x1f\x55\x97\xb8\x6e\x8d\x9c\x00\xee\xf2\x65\xeb\x22\x6c\x22\x09\x42\x79\x7e\xa7\x68\x1c\x1b\xc7\xd8\xd7\x3f\xfa\xc5\x46\x38\xd6\x9b\xa3\xdc\xa6\x47\x84\x79\xb1\x3b\x61\xb8\x4c\x88\xd0\x1f\x39\x65\x5e\x33\xfb\x3c\x02\xf7\xd7\x83\x39\xe2\x9a\xf3\x09\x71\xde\xc9\xc5\x39\x4a\x16\x13\xf0\x6b\xc1\xe3\xf9\x0e\xa6\x7a\x84\xd6\x18\xaf\x2d\x9f\xd8\x67\x13\xea\xdc\x33\x53\x26\xfd\x0c\x21\xcc\xe6\xb4\x4e\xde\xb5\x6d\x3b\xa1\xe9\x42\xf5\xe1\xcc\x29\x3b\x26\xe0\x76\x34\xdf\x55\x1e\x8e\xb3\x0c\x3a\x44\xbb\x04\x36\x28\xa9\x11\x4c\xa6\x25\x16\x76\x85\xa8\x12\x32\xdc\x5f\xaf\xbf\x69\x71\x81\x81\xb0\xad\xc9\x31\xdf\x76\x25\xc2\xbc\xf5\x51\x75\xbf\xa7\x84\x10\x3e\x9f\x4d\x3e\x6a\x2b\xc4\x4e\xb8\x58\x37\x4b\x7b\x0e\x0e\x10\xc2\x76\xab\xdd\xf7\x14\x8a\x26\xb0\xd8\xf4\x9f\xaf\xfe\x94\x4b\xc8\x8b\xd7\x80\x4a\x77\x05\x83\xa6\xbc\x85\x85\xee\x05\x3f\x08\x1e\xdc\x6e\x7f\x5a\x5b\xba\x09\x9f\x12\x17\x9c\x09\x5f\xdd\x4b\xf8\xf1\xe1\x1d\xb3\x37\xfb\x3d\xe1\xbe\xb2\x62\x5c\xa2\xf9\x73\xc2\x64\xc1\x8e\xa1\xf4\x8a\x75\x84\x61\xe3\x98\x98\x35\x87\x92\x08\x3e\x65\x1e\x77\x9a\x03\xc2\x26\x40\x7b\x70\x2a\xfb\xde\x31\x1b\xc2\xe6\xb4\x42\xd3\xe6\x49\x67\x09\x3b\xb5\x9f\xf5\x4b\x16\x34\x10\xe4\x97\x37\xdc\xd9\x66\xa6\x41\xf8\x1e\xf0\x5a\x69\x81\xf9\x0e\xc2\x16\xdf\xe7\x46\x03\xc1\x06\x84\xd6\x51\x11\xf9\x3f\x87\xfc\x18\x9c\xbe\xe1\x70\xbc\xe2\xc2\x3e\xc2\x48\xf9\x3b\x0b\xaf\xc9\x9c\x84\x35\x2f\x6f\x33\xee\xf1\x0e\x84\xc1\x92\xa1\xee\x3b\x97\xf5\x09\x75\x6c\xc3\x2a\x75\xf2\xfd\x2c\x18\x1a\x4a\x37\x1c\xe0\x2b\x23\x28\x76\x09\xf1\xec\x92\x33\x26\x74\xdf\xf9\xa2\xd5\xae\x22\x4f\x90\xbd\x74\x59\xac\xf6\x99\x1a\x41\xbe\x76\x4f\xf3\x98\xf0\x62\xc2\xe7\x9d\x1b\x25\x17\x5c\x99\x4b\x68\x72\x18\x6e\x70\x63\x4b\x67\x90\x65\xb9\x73\x43\xe9\x80\x13\xa1\xc0\x3d\xab\x6f\xcf\x39\x4e\xc2\xca\x7d\x2f\xbf\xe5\xbc\xfc\xc5\x82\xf5\x3b\xbb\xa7\xae\xc7\xb2\x18\x9c\xdf\xea\x1b\xf5\xb7\x9c\x10\x7b\xf2\xe0\x94\xc2\x24\xc2\x0d\xb5\x51\xbb\x51\xfe\x2e\x16\xe2\x4f\x48\x69\xd8\xd6\x2a\x13\x18\x63\x97\x70\x33\xd7\x79\x04\xdf\xaf\xe2\x1c\xd7\x95\xda\x59\x88\xb0\x1e\x73\x9f\x21\x2d\x4f\xf0\x9f\xf6\xd2\xf3\x83\x5e\x11\xe1\xa6\xa6\xcf\x9a\xb6\x71\xe0\x4d\x8f\xcb\xd7\xdd\x25\x04\xf5\x3f\xb6\x02\x7f\x0b\x57\xea\x48\xbf\xa3\xf2\x2b\x16\x9a\x43\x9c\x8e\xb0\x29\x15\x11\x6c\x87\x2a\x0b\xa5\x17\xb7\x11\xf8\xc3\x8a\x3f\x9c\xfd\xd1\x41\x10\xf5\x5e\x11\x27\xbc\xec\x14\x21\x6f\x1e\xdf\xb3\x59\x8b\x1a\x18\x1c\x58\xa3\xf9\x91\x6b\xde\x3d\x82\x8e\xc6\xb3\x06\x83\xdf\x57\x08\x59\xf9\x68\x4c\x71\x0b\x24\xd8\x8b\x9d\xe1\x14\x2f\x5b\x41\x58\x37\xff\xf1\x60\xfa\x6f\x11\x82\xf7\x00\x8f\x8d\xfc\x72\x5f\x42\xcd\xb9\x55\xc6\xc9\x87\xdb\x0a\x21\xd7\x68\x1f\xec\x5e\x3c\xc6\x02\xaf\xb1\x70\xa4\xba\x8a\x26\x21\xe2\xcc\xf6\x8a\x77\xdc\x5a\x04\xb9\x48\xb1\x73\x8f\x1d\x96\x13\xf2\x38\xc4\xba\x39\xee\x14\xb3\xf0\x76\x8f\x9a\xfc\xac\x53\x91\x04\xc1\xa6\x69\xba\x5b\xae\x75\x12\x3c\x36\x70\x6a\x3a\x7f\x7a\x41\xb8\xe5\x6f\x44\xdf\x53\xaa\x08\x76\x25\x7d\x91\x53\x33\x52\x09\x41\xbf\x07\xf6\xd4\x09\x27\x4f\xc0\xa8\xc2\xe1\x46\x99\x8b\x0e\x04\x83\xc6\xa5\xab\xee\x70\x47\x11\x56\xc8\x9f\x91\xf9\x72\xe4\x36\x83\x26\xe7\xfd\x42\x4d\xbe\x19\x84\xf3\xd5\xf1\x29\xe6\xcf\x73\x08\x75\x0b\x14\x8e\xca\xff\x8a\x27\x04\xdb\x27\xdb\xef\x9f\xed\x43\x60\x2b\x7e\x2e\xe9\xdd\xa2\x4f\x58\xe5\x75\x9a\xfb\x88\x77\x2c\xe1\x91\x51\x4b\xc5\x29\xde\x1d\x13\xe0\xef\x32\xed\xc1\x27\xa9\xed\x84\x00\xe3\x6b\x09\xcb\xb7\x8a\x10\x72\x13\x8f\x56\x3f\xad\xde\x49\xd8\xbd\xcb\x4a\xc3\x9b\xab\x88\xc0\x7f\x38\xe9\xe6\xda\x3f\x2b\x09\xda\x65\x85\x46\x83\x27\x63\x19\x2c\x3c\xf1\x23\xed\xdd\x59\x73\x82\x59\x46\xa0\xce\x12\x7f\xad\x09\x48\x4c\x53\x2c\xda\xce\xb3\x7b\x42\x99\x11\x74\xfa\xe6\x8d\xf2\x55\xff\x85\x06\x9f\x99\xb9\x1c\x19\x47\x09\xaa\x3d\x4b\xaf\x75\xcd\xa8\x64\x61\x7b\xbb\x6f\xcf\x8b\xa1\x73\x84\x4d\x1d\x97\x6a\xbd\x6e\x1a\x12\x32\x9b\x2b\xf9\x27\xdb\xfc\x66\xe1\xf3\xe2\xc3\x4c\x1d\xdf\x47\x16\xda\x65\x3e\x05\x9b\x68\x2d\x23\x24\x3f\x99\xee\xf2\xed\xfb\x1e\x82\xc7\xab\xca\xe0\x72\xdb\x01\x16\xba\xca\x32\x55\x7d\x25\x73\x19\x9c\x4e\x88\x11\x97\x77\x51\x22\x3c\xbe\x14\x9f\xeb\xef\x7f\x9e\x30\x45\x4c\xd6\x2b\x46\xd1\x89\xfe\x8d\xac\x92\x54\x4a\x9f\x6c\x2d\x22\x7c\xd1\xdb\x6e\xfa\xe0\x54\x0d\x21\xae\xb4\xb0\xf8\xd0\xb6\x74\x82\xd2\xcd\xb5\xc6\x7e\xaa\xc5\x84\x73\x46\x57\x0c\x57\xf8\x3d\x25\x4c\x51\xb0\x0c\xfe\x5b\x7a\xa3\x38\xd7\x1d\xbc\x66\x40\xe0\x5b\x61\x19\x6f\xe0\xac\x3d\x01\xca\x5c\xc3\x4b\xef\xac\xe3\x9c\x80\x0f\xad\xba\x8a\x0f\x9e\xfc\x61\x61\x8e\xf1\xaa\xc3\x5f\x8a\xea\x08\x0f\x79\x23\x52\x15\x52\xda\x58\x68\xd2\x2b\x12\x6d\xb1\xf2\x22\x64\x0e\xdb\x8b\x1c\xd3\x00\x0b\xbb\x5e\x2e\xe8\xb8\xc2\xf4\xb0\xe0\xa3\x9b\xc6\xdf\xe6\x27\x46\x68\x9b\x66\xb8\xd8\xcd\x79\x1d\xc1\xac\xe5\xe8\xde\xf6\xe7\xca\x13\x10\xf3\x5b\x40\xe6\xe3\x93\x16\x16\xa6\xf3\xa4\x6e\x88\x90\xd9\x4d\xc8\x56\xde\x3a\xaf\xad\xdf\x9c\x30\x26\xb1\xad\xab\x6e\x87\x1a\x41\x57\x60\xb3\x4a\x09\xff\x7d\x06\xa7\x33\x3c\x1a\x5e\x8e\x17\x67\xbb\xa5\xb5\x33\x1e\x6b\x13\x5e\xf8\x0e\x38\x2a\x49\xe4\x12\xe6\x77\xb1\x3e\x9f\x58\x6e\x42\xb8\xbe\x85\x63\x5e\xf6\x5c\x5f\x82\x73\x50\x6f\xe8\xfd\xb5\xab\x08\x53\xbb\x59\x74\x79\x59\x23\x0b\x2b\x74\xb3\xab\x1c\x75\x58\x84\xa1\xd6\xae\x1c\xfe\xfc\x95\x13\xa0\x9a\xfe\xf6\x94\xc3\xac\xf7\x85\x18\xfc\x1a\x6a\x3c\xd8\x32\xc8\x82\xd4\xc8\x17\x71\x57\x95\x44\xc2\x93\xac\x7a\xfe\xbf\x10\xb3\x31\xba\xfc\x17\xfe\xa6\x66\x6b\xde\xc7\x9b\x4f\x40\x56\xa0\x2c\x4b\xed\xf0\xc4\xe2\x36\xed\xf6\x34\x8f\x08\x7e\xc2\xb3\xe7\x3f\x9e\xa5\x2f\xdb\x44\x88\x11\xf9\x94\x32\x58\x7e\x9f\xf0\xd3\x7e\xb4\xe0\x2f\x94\x82\xde\xdd\x8b\x4d\x7a\x35\xa1\xfc\x0f\x0d\xcd\xf9\x31\x93\xb6\x6a\x30\xd0\x72\xd4\x5c\xc1\xae\x13\x46\xb0\x78\xbb\xe2\xd4\x1b\x97\x50\xc2\x27\xe9\x2d\xcb\x25\xdc\x42\x26\x94\x22\x31\xe5\xe4\xff\x1b\xea\x66\xb3\x65\x8d\x39\x2a\x18\x28\xbf\x97\x0c\x6a\x8d\x8e\x26\x54\x3c\x78\xd4\x6f\x7a\x2d\x9a\xf0\x4a\xa1\xe5\x7e\xfe\xf7\x13\x84\xad\xa6\x76\x4d\x67\xbe\x2d\x25\x9c\x1d\x95\xd6\xfb\x22\x64\x44\x38\xbc\x26\xe5\x55\x5c\x8a\x28\xc1\xf9\xf3\xc7\x5b\xd8\x3a\x9b\xb0\xd8\x7a\x80\x3b\x6f\xb1\x35\xa1\x59\x5b\xa3\x7c\x16\x4d\x25\x3c\x73\x38\x72\xb1\x60\xe1\x00\x0b\xdd\xbf\xce\x9f\x9f\xad\x1b\xcd\x40\x6f\xf3\xec\xe0\xcd\x77\x4a\x08\x9e\x16\x9e\x9c\x6e\x9b\xd3\x08\xf1\x4d\xc7\x84\x71\xa8\x96\x85\x8b\x9b\x78\x6e\xde\x88\x4f\x21\x9c\x15\xf6\x0b\x7d\xa6\x5c\x48\x98\x7d\xd2\xb4\xca\xc3\xef\x01\xa1\xa1\xb3\xff\xcd\xbb\xcc\x7c\x06\xc1\x0e\x07\x2b\xdd\xbe\xa6\x30\x60\xcc\x57\x50\xe5\xf8\x99\x40\xa9\xed\xcf\x3c\x97\xf8\x12\xee\xfe\x7e\x1b\x35\x58\x76\x94\x20\x75\xa2\xe0\x3c\xcf\x0e\x7f\x82\x95\xeb\x13\xbf\x80\x2b\x7e\x13\x4a\xb8\x59\xe3\x40\xa7\x93\xfc\x04\x18\xce\xff\xba\xda\xa1\xea\xce\x84\x12\xff\x3a\xa6\xec\x3b\x1c\x09\x7c\xee\x0d\xe9\xd5\x76\xaf\x18\xe4\xcc\xf4\xfa\x3c\x35\x87\x21\x8c\xae\x4f\x36\x5e\xa2\x94\x4b\xd0\x3f\xd3\xb3\xd1\x6c\xc7\x63\x06\x55\x39\xcd\xfa\x72\x33\x6a\x19\xbc\x0e\xee\xb4\xf7\x91\x7b\x48\xe8\x98\x39\xb3\xc8\x44\xc2\x83\x70\x92\xfb\xb5\xe7\xee\x5c\x17\x82\x44\x69\x92\x96\xad\x7a\x12\x83\x1b\x8b\x4b\xb3\x6e\x72\xdc\x63\xa0\xbc\xb6\x7c\x6d\x8f\x98\x07\x61\x4d\xef\xcb\x19\xf3\xaa\x92\x09\x05\x09\x3b\x3c\xbf\x71\x14\x12\xce\x2b\x57\x7c\xb2\xf2\xfe\x48\x48\x63\x7b\xef\x20\x14\xd7\x4a\x90\x18\x58\xb6\x56\x69\xb0\x9a\xe0\x1e\xcc\x11\xb3\x6f\x7b\x21\x81\x47\xf7\xfd\x4f\xae\x07\xae\x04\x0e\xa5\x97\x5d\x6e\xa5\x59\x34\x7c\xfe\xf5\xb1\x55\x52\xc9\x84\x5b\x3e\xfb\x52\x23\x6b\x0b\x08\x9c\xce\x27\x98\xac\xd9\xe5\x84\xb3\xe9\xc7\xcd\x64\x14\x5f\x12\x5e\xc8\xad\x98\xe3\x7f\x7a\x25\xa1\xfb\xa5\xaa\x24\xef\x4b\x7e\xc2\xc8\xf6\xf3\x87\x83\x67\x2e\x24\xac\x55\x13\xf2\x9f\xfe\xf6\x21\x21\x46\x86\x8f\xff\xd9\xdb\x0e\x16\xae\x2d\xbf\x20\x9c\x64\xa7\x4a\xc8\x31\x37\x0a\xe4\xbc\x5c\x40\xd0\xd1\xb7\xbd\xc2\xb6\x56\x93\x10\xfe\xd1\xb8\xb9\x5e\x4c\x81\x10\x55\xf3\x54\xb9\xb3\x53\x90\x60\x3e\xdb\xf0\x84\xdd\x46\x16\x21\xae\xd9\xbb\xea\xb2\x61\x11\x03\x87\x2a\xf2\x97\x2c\xf6\x27\x68\x77\x45\x36\x5a\x44\xeb\x13\x96\xb0\x2d\x2e\xdb\x12\x99\x4d\xc8\x0c\xdf\xb2\x44\xc4\xf2\x06\x03\xa7\x03\x19\x6f\x02\x24\x9c\x09\xa2\x3f\xc6\x2a\xc4\x72\x0d\x09\xf7\x86\x76\x2c\xfc\xe2\xbe\x90\x20\x34\xb4\xf7\x6d\xf2\xd9\x60\xc2\xbc\x53\x2b\x33\x65\x0e\x79\x12\xca\xbe\x0e\xbd\xf6\x1e\x5e\x4f\x08\x88\x36\x5d\xb6\xe5\xfc\xdb\x42\x8c\xad\x2c\xdc\xb6\xc1\xe8\x16\x83\xa8\xed\x67\x4f\xc6\xff\x32\xa0\x7f\x68\x17\x70\x4c\xf1\x11\x1f\x65\x61\xe1\x8a\x6f\x19\x43\x5d\x22\x84\xda\x47\xf9\x71\x11\xef\x6d\x08\xbb\x0d\x3a\x50\x69\x71\x97\xb0\xaa\x8b\x53\xa5\xed\xa5\x3b\x21\xc3\xa4\xa0\x68\xed\xc9\x7c\x06\xa7\x16\xbd\x2b\x5c\x77\x3c\x99\x20\x19\x6d\xe9\x79\xeb\xf5\x4a\x82\xc7\xdb\x6b\xae\x5a\x82\x9e\x84\xe5\x55\x2f\xd6\xb5\x4c\xba\xcb\x20\x40\xcb\x3e\xc7\xe3\xb0\x16\xa1\xae\x72\xe9\xef\xb4\x30\x35\xc2\xa5\x2a\xae\x6f\xd9\x7b\x54\x09\xc7\x17\xa8\x66\xf1\x1e\x7e\x31\x01\x3e\x6d\x73\x2f\xf1\xfd\x5f\xe8\xff\xf5\xd5\xe4\xef\xe8\xed\xc8\x23\xff\x0a\x89\x53\x84\xe4\xe0\xe0\x3e\x9e\x63\x91\x13\xca\xff\xa0\xb6\x92\xbf\xb7\x61\x9b\x17\xe1\xbb\x69\xe6\xb5\x7c\x1e\x7f\x42\x7f\xbf\xc0\x1e\x97\xc8\x06\x42\x47\x30\x6b\xda\x43\x95\x6b\x0c\x6c\xa6\xbd\xd1\xfb\x9a\x90\x4d\x28\xd2\xd1\xef\x1f\xeb\x7e\x48\x98\x7f\x23\x8a\xbb\x2a\xfd\x1e\x03\x89\x63\xcd\x15\x27\x7e\x8e\x7f\x83\x81\x6b\x38\xee\x6c\xd9\x4c\x10\xff\x9c\xbe\xae\xb3\x79\x05\x21\xcc\xca\xfa\xb7\x91\x7d\x39\x0b\xcb\x5e\xf4\xb9\x65\x34\x29\x12\x6c\x7e\x2e\x73\x9e\xbe\x40\x8d\x60\xf9\xcc\xf2\xc7\x8f\xc1\x19\x84\x76\x2e\xd5\xfa\x25\x29\x22\x84\x9a\x90\x3b\xfa\x2f\x3e\x2f\x24\x94\xc8\x8a\x26\x17\x85\xce\x22\x8c\x84\xbf\x7d\x1e\xd4\xa1\x40\x08\x9e\xe4\xc2\x1b\x90\x30\x40\x08\x29\xba\xf9\xed\x41\x76\x35\x41\x88\x6b\x28\xe2\xd2\xd5\x72\xc2\xc9\xbd\x8b\xdf\xa5\xdd\x6d\x25\x5c\x1b\x62\x16\x25\x3c\x7b\xc2\x80\xe3\x4b\x89\x72\xc4\xb2\x4c\x06\x5f\x64\xfa\xee\x1e\x33\xfa\x40\x10\xc8\xbb\x1d\x64\x16\x66\x44\xd8\x20\x24\x26\x56\x76\x46\x89\xd0\xf3\x55\x79\x61\xf2\xdd\xd5\x84\x7c\x56\x41\x96\x7f\x81\x0b\x21\xd3\xbf\x2e\x41\x84\x5f\x83\xd0\x76\xde\x5e\xed\xd1\xa1\x25\x04\xfd\xf9\x52\x6e\x91\x0b\xe5\x09\x5f\xef\xdf\x18\x10\x4b\xd5\x26\x3c\xb9\x78\x2b\x6f\xdf\x96\x59\x13\xb0\x6e\xcf\x8a\xdb\x61\xc5\xf2\x84\x22\xcf\xc0\xf8\x1f\x05\x82\x84\xc4\xcf\x52\x6b\x1d\xbd\xd6\x12\xbe\xee\x1e\xa8\xbe\xca\xc3\x46\x28\xdc\x39\xf5\xac\x43\xf2\x07\x16\x16\xc5\x66\x76\xdd\xb7\xf3\xa3\x7f\x78\x74\x42\xf3\xf6\xb3\xb0\xe9\x13\x50\xf9\xc3\xad\xbc\xaf\xda\x83\xf0\x32\xcd\x33\x62\xd9\xf3\xd5\x13\xd0\xaa\x7e\xca\xee\x74\x79\x1f\x0b\x1d\x66\x9d\x23\xb3\xc7\xe6\x10\x1a\x86\xe3\x38\x7a\xfc\x4e\x11\xda\x65\x7e\x96\xa8\xe4\x3c\x21\x1c\x72\x29\x14\x7b\xfa\xa6\x8f\x20\xdc\xb7\x74\xe7\x2b\xd5\xef\x84\x17\x33\x57\xd9\x79\x77\xfe\x24\xd4\x06\x0e\xaa\x86\x9e\x6a\x24\x68\x1d\xaa\x2b\x30\x70\xa9\x20\xb8\xed\xfa\xa3\x21\x38\x1a\x48\xd0\x59\x18\x32\xaf\xeb\xe4\x75\x82\xf0\x12\xdd\x8c\x63\x71\xf9\x04\xef\x8f\x51\x15\xc3\x09\x6d\x84\xb7\x1e\x36\x8b\xaf\x28\x7e\x22\xac\xfa\xf5\x28\xe8\x89\xf6\xf8\x6d\xf1\x3a\xfd\x43\xdb\xc6\x4f\x84\x77\x6f\x1b\xbb\xd4\xf7\xa4\x11\x46\x7d\x04\xbc\xd5\x75\x53\x09\x8a\x17\x56\x49\xf3\x06\xd7\x13\x34\x62\x26\xe9\x34\x1f\x3b\xc7\xe0\xdb\x1c\xf6\xc9\xff\xdf\x33\xd1\x21\x75\xb1\x23\x82\x84\xa3\xf7\xda\xe7\x4b\x73\x44\x13\x4c\x7b\xb8\x6e\x09\x54\x14\x32\x10\xbe\xf0\x84\x6f\xdf\x55\x16\x81\x4b\x5c\x6b\xf6\x53\x5b\x15\xc2\x79\x1a\x1e\x8b\xe5\x29\x22\x38\xab\x88\xef\xb3\xaf\xc9\x24\xfc\xba\xc4\xfe\x7b\x71\x56\x13\xe1\xc5\xdd\xaa\x97\x7f\x47\x6b\xd1\xfe\xe9\x2f\xa4\x56\x6d\x8c\xb0\xab\x53\x21\x84\x9c\x6e\x33\x3e\x23\x99\x4d\x08\xdb\xf0\xfc\x73\x56\x50\x20\xa1\xd1\x61\xf2\x0b\xcd\xab\xfb\x09\x3e\xe2\x53\x66\xae\x74\x96\xf8\x2f\xac\x5a\x15\x9b\xac\x10\xb2\x82\xf0\xf2\xc0\xf6\x03\x5b\x2a\x56\x10\xac\x6e\x14\x2d\x0c\x7d\xaf\x4f\x50\x0f\xff\x19\xf7\xa3\x61\x90\x05\xbb\x0b\x82\xf3\xa7\xdd\xb6\x25\xcc\x8a\xcf\xb2\x2e\xff\x7e\x8f\x85\x05\x77\x4f\x56\xea\xcd\xd7\xa6\xff\x40\x66\xbc\x65\xd8\xc1\xd8\xf7\x85\x28\x35\x32\xd9\xf9\x98\x42\x19\x70\x48\x7d\x7d\xf3\xd8\x7f\x35\xc1\xcf\x73\x7e\xa7\xea\xaf\x03\x84\x8d\x22\x93\xcb\xb6\xfa\x89\x12\xf6\xc4\xec\xfa\x38\xed\xa1\x38\xc1\xb9\xdf\x29\xf1\x40\x82\x20\xe1\x99\x71\x86\x52\xc2\x70\x20\x83\xf2\x35\xda\xe2\x17\xbc\xa3\x09\xf3\xf9\x97\x1f\x7a\xad\x6b\x44\x08\xde\x25\xa0\xa7\x1f\x70\x86\xa0\x67\x24\x64\x33\x7c\xe3\x36\xc1\x39\x8d\xe7\xce\xa7\xd9\x7c\x84\xa8\x69\xb2\x33\xc3\xe5\x33\x18\xdc\x14\x6c\x0b\xf8\x5b\xb6\xbd\x7f\x3b\xb6\xb6\xea\x0d\x0b\x5f\xbf\x0f\x72\xa5\x25\x3c\x22\xa4\x6b\xda\xf2\x1c\x55\x53\x26\x9c\x14\x3a\xcc\x2f\xf0\x61\x33\xe1\x4d\xd0\xb6\x1d\x93\x37\x7a\x4d\x28\x47\x8d\x1b\x47\x0f\x8c\xf5\xb2\x90\x14\xe0\x68\x29\xf3\xe6\x2e\x03\x11\xdd\xde\x1f\xdd\xf2\x0f\x08\x1d\x91\x6a\xb5\x32\x63\xee\x04\xfd\x7a\x29\xb6\x0b\x41\x2b\x09\xe7\x3a\xbf\xae\x1b\xfb\xba\x97\xb0\x6a\x8b\x45\x87\x8a\x5f\xc0\x04\xd8\x9f\x95\xab\x28\xba\x59\xce\x40\xbe\xa3\xd7\xe9\x6f\x59\xac\x65\xcb\xfd\xad\xc2\x89\x60\x90\x22\xda\xe2\x17\xac\x4b\xf8\xf0\x86\x77\xe1\x4c\x91\x76\x16\x78\x58\xc2\x7a\xad\x0a\x9b\x09\x1a\xed\x75\x8f\xa4\xe5\xc0\x42\x62\x49\x7b\xd4\x2b\x4f\x3b\x02\xdb\xba\x13\x52\x72\x12\x03\x2c\x54\x97\x36\x77\x0f\xcc\xf8\xc2\xa0\x97\x15\x60\xf8\xc1\x83\x21\x44\x05\xe5\xeb\xc0\x99\x21\xb8\x45\x06\x4a\xbe\x1b\x2f\x69\x7f\x8c\x47\xde\x8e\x23\x7d\x4b\xa5\xcb\x87\x80\xfd\x04\xf3\x85\xb1\x33\x52\x78\x2b\x08\xd7\x2f\x98\xbd\xf8\x34\x14\x46\x50\x99\x64\x38\xed\x83\xf9\x2d\x42\x4e\xa6\xeb\xc5\x0d\x36\xc5\x84\x34\xf7\xe8\x8d\xb7\xcd\xef\x12\x5e\xf5\x8a\x5f\x9a\xf6\xc4\x86\x30\x35\xd9\x53\xcc\xf6\xfd\x4c\xc2\xf3\xa9\xf3\xf7\xc6\x94\x72\x12\xb8\xa2\x56\x2e\x77\xf4\xe3\x20\xbc\xfa\x70\xf5\x4f\xba\xf2\x23\x06\x26\xbb\xb9\x26\x2d\x7b\xcc\x47\x78\x2d\x7f\xd8\x41\x78\x68\x06\xa1\x95\xff\xf7\xf6\xe5\x41\x6e\x04\xdd\x94\xa6\x2a\x9b\x17\x5e\x84\x7c\x9f\xed\x76\x09\xc6\xe6\x04\xe1\xf2\xa6\xd3\xf9\x62\xba\x84\xb0\x99\x1c\xb3\x26\x49\x97\x12\x66\x49\x0d\x0f\xc6\x15\x2b\x11\x44\xb8\x9b\x0c\x4e\x1e\x9e\x4b\xb0\x16\x0b\x30\xd5\x2f\x09\x22\x18\x38\xf9\x8e\xee\x15\xdc\x40\xf0\x58\x74\xe8\xcc\x7e\x9d\xbd\x04\xce\xe6\x07\x47\xb5\xd6\xee\x21\xfc\x71\xb5\xf4\x7f\x61\x68\x4d\xd8\x39\xe3\x7d\xdc\xf7\x5b\x66\x84\x97\x37\xbb\x0b\x8d\x4b\x17\x13\xee\xea\x1e\xe5\x75\x9c\x95\x4f\x10\x9e\x3f\xba\x7b\xb9\xa8\x06\x41\x49\xc8\xce\x83\xd5\xca\x4b\xe8\x98\x3a\x63\xa9\x55\xa8\xc2\x7f\x41\x91\x3f\xa0\x75\xdf\xbe\xc5\x04\xee\x45\xda\x57\xb7\x6a\x7d\x61\xfd\x07\x16\xbc\x49\x29\x9e\xdf\xe6\x46\xa8\x0b\x8f\xce\x7d\xf6\xdb\x74\x02\x46\xb9\x3d\x7f\x0e\x75\x2e\x27\x38\x1a\xf4\xee\x38\x5d\xcb\x46\xc8\x9f\xf1\x60\x4d\x4e\xd5\x57\xd6\x3f\x94\xb1\xde\x5d\x25\x99\x85\xf4\x1f\xa8\xad\x32\xb9\x79\xfc\xda\x6d\x42\x5d\xf9\x15\xee\x62\x85\x34\x06\x3b\x94\x5b\xb7\xee\xf9\x5d\xc4\xe0\x70\xf7\xf4\x8d\x97\x3e\x80\x05\xdb\x8f\x41\xeb\x5b\x1f\xaa\x12\xee\x3d\x8c\xaa\xee\xbf\xae\x4d\x68\x4e\xb8\xbb\xa4\xf9\xb7\x1d\x03\xad\x06\x81\xe2\x62\x03\x1b\xc2\xc0\x13\xef\xc3\x7e\x55\xfd\x2c\xbc\x3d\x36\x67\x8a\x2a\xef\x08\x0b\x9a\xdd\xb5\x91\x07\x83\x72\x18\xec\xe2\xd2\x94\x55\x13\x35\xa1\x7f\x78\xbc\xaf\xf4\xe1\x93\x7c\x75\x82\xa5\xdb\x60\x92\xd2\x03\x41\xc2\xc0\xe7\xda\x5b\xf9\x45\x4a\x84\x87\x9c\x92\xa7\x57\xed\xbd\x46\x48\x59\xba\xf2\x9a\x8c\xea\x01\xc2\xf0\x6a\xde\xd0\xf5\x27\x0f\x8e\xaf\xf8\xfb\xd7\xdd\x9c\x5c\x4a\xe8\xf9\xfd\x73\x6e\x28\x93\x46\x58\xdf\x59\xf1\x6e\x8f\x46\x22\x41\xd7\x79\xc6\xae\xb1\x5b\xa2\x84\xca\xad\xca\xae\xdc\xc5\x87\x09\x9a\x9b\x8b\x7d\x65\x77\x5d\x63\x70\x78\x7a\xe4\x23\xe1\xd4\x39\x84\x2f\x3a\x8d\xb1\xe7\x06\x8f\x12\xd8\xb5\x7c\x56\xb8\xbc\x5d\x49\x88\x8c\x4e\xd4\x4c\x9f\xb4\x98\x90\xf1\xd6\xa3\x64\x5b\x54\x28\xe1\x1d\xe7\x85\x0d\x4a\xa7\x67\x13\x6c\x43\xbf\x17\x8d\x6e\x2b\x22\x18\x2f\x5f\x9a\x50\x19\x56\x34\xfe\x00\x38\xca\xff\x2d\x79\x5f\x64\xcd\xd6\x6e\x1a\x7f\x5a\x72\x2f\x66\xfa\x28\x80\x05\xf7\xd7\xbb\xda\x84\x9f\x19\x12\x06\x04\xd7\x43\x8b\x73\xd3\x04\xb4\x7b\x8e\x84\x05\xdb\xdc\x22\x84\xaa\xee\x58\xe6\xf7\xae\x89\x90\xbd\xaf\xe8\xb0\xd8\xe5\x5b\x04\x2d\xa7\xdc\x22\xef\x45\xb5\x84\x99\xa5\xf2\xf2\x8b\x9c\xf4\x09\x83\xb1\x3f\x2c\xf6\xd7\xba\x11\x6e\x98\xee\x99\xc2\xbf\x99\x45\xd8\x60\x67\xe4\xd5\xd2\x7d\x99\xc1\xa5\xe0\x77\x3d\x55\x6d\x7d\x2c\xd4\x55\x4b\xae\x3e\x35\x99\x8b\xe0\x5f\x53\xaa\x69\x72\xcf\x98\xfe\x95\x83\xf1\xeb\xbe\x35\xa7\x76\xb2\x70\x5b\x78\xee\x83\x78\x4e\x03\x42\xb0\xd7\x6c\xde\x60\x65\x61\x42\x90\x22\x6f\x47\xcc\xec\x02\x42\x93\x88\xdd\x09\xb6\x4f\xd7\x08\xcb\x03\x64\xf3\xfc\x14\x74\x08\x05\xad\x6f\xdd\x2d\xda\x8b\x18\x48\x7e\x59\x26\x1f\xbe\x5e\x92\x70\x33\xdb\x7b\xca\xc3\x53\xa2\x04\x19\xad\x9a\xd8\xbd\x3a\x05\x0c\x34\xce\x49\x86\x5f\x68\xad\x64\x90\xea\xb3\x63\xdd\xed\xad\xae\x84\x17\x73\x97\xea\xdb\xba\x28\x13\x64\x9b\xfc\xf2\xec\xa7\xc8\x12\x52\x39\x1e\xd9\x76\x1d\x32\x22\x8c\x3c\x08\xe1\xa9\x35\x0d\x60\xd0\x24\xc3\xfe\x26\xc2\x5d\x9f\xc0\x91\xf4\xe0\x4b\x9c\x81\x26\x0d\xe7\x2f\xd3\xef\xde\xe7\x4a\x88\xd7\xd0\xf7\x5a\x11\x9c\x46\xf8\x7a\xfc\xea\xb4\x77\xf7\x03\x08\xde\xf5\x46\xaa\x69\x63\x87\x08\xc1\xaa\xc1\x3f\x1f\x9c\xd6\x25\xc8\xed\xfe\xee\xdf\x62\x60\x45\x50\xb4\x9c\xf2\x67\xc7\xdd\x3e\x16\x2c\x72\x79\x53\xa4\xf7\x73\x10\x86\x67\xa9\x9c\x8b\xf1\xd2\x27\x88\x3b\x6d\xb5\x13\x58\xa8\x48\xa8\xe5\xf8\x20\xc1\x77\x69\x2e\x61\xc1\xc9\xa0\xd3\x83\xcf\x6f\x32\x58\xc4\x25\x56\x37\x32\x5c\xcf\xe0\xfd\xaf\x80\xfd\x2b\xd9\x6a\x18\xf0\xc5\x0e\xf9\x1f\xdf\xac\x42\xb8\x25\xd8\x34\xea\x6c\x77\x8b\x41\xa4\xb4\xdd\xaf\xb3\x29\x57\x09\x2d\x36\x03\x2a\xd7\x14\xfc\x08\x02\x01\xab\x8e\xc4\x2f\x5a\x49\x78\xf4\x5c\x91\x3b\x7d\x4e\x24\x83\x1e\x33\xb5\xd0\x5a\x75\x65\x42\xe8\x70\x56\xf4\xea\x27\x96\x04\x7b\x15\xc5\xbc\xb4\x54\x39\x42\x9e\x81\xf9\x9e\x8c\xd2\x29\x84\x75\xe2\x27\xdd\xea\xa5\x25\x09\x8a\x91\x27\x62\x5e\x27\x3f\x25\xf8\x6e\xba\x9e\xf1\x76\xcd\x31\xc2\xe5\xb4\xe1\xb9\x57\xde\xe4\x13\xba\x57\xb4\x27\x6e\xd4\xf4\x22\xb0\x5b\x34\x84\xfb\x2c\xb1\x21\x28\x58\x49\x15\x64\x9d\x92\x25\xf4\x3a\xcb\xf7\xce\xf7\xe0\x21\xf4\xc6\xba\xde\xbd\xaf\xb4\x8e\xd0\x92\x93\x7e\xfd\xdc\xf4\x24\x82\x4d\x75\xec\xd2\x60\xbe\x04\x06\xbf\x52\xe3\x86\x5a\x14\x4f\x11\xbe\xb4\x08\x1a\x64\x4b\x05\x11\x8a\x79\x07\xf5\xf7\x25\x9f\x21\xcc\x73\x37\x98\x59\xbb\xe4\x1c\x41\x8f\x3d\xea\x7b\x4d\xe0\x09\xc2\x95\xdb\xf2\x8c\x92\xd6\x75\x02\xef\x9a\xf7\xf7\x74\xe6\x4d\x21\xbc\x58\x39\x69\x4a\x9b\x8b\x0f\xe1\x44\x96\x1c\xa3\x7d\xde\x8d\x10\x7e\xcf\x37\xf5\x6e\xce\x1f\xd6\x3f\x5c\x17\x1a\x8b\xbb\xbe\xde\x8c\x60\xb4\x57\x53\x6e\xb2\xd9\x3c\x02\xb7\x41\x69\x47\x9e\x98\x32\xe1\xc7\xd9\x79\x1f\x14\x22\x38\x08\xec\x37\x9e\x18\x4f\xb1\xd3\x21\xd8\x7a\x6a\x79\x72\xfe\x90\x20\x28\x6f\x2b\x4e\x5e\xa9\x20\x4a\xd0\xba\xfb\xac\xc9\x7b\x72\x2e\x61\xed\xf4\x3b\x81\x9b\xf4\xc5\x08\xa5\xd9\x85\x16\x69\x33\x66\x11\xb4\xa3\x4c\xf7\x97\x07\x5e\x21\xf4\x9e\xf4\xba\x24\xd4\x99\x4c\x78\x77\x58\xaf\x4e\xe7\xf5\x6b\xc2\x49\x8d\xbd\xc1\x7f\x8b\xee\x97\xa2\x4b\x82\x76\xf7\x08\x47\xbb\x53\x17\x3f\x5e\x12\x4d\x38\x7b\x44\xda\x59\xe7\xf9\x49\x42\x72\x1e\x2e\x04\x1a\x48\x13\xf6\x49\x96\x16\x1c\xb8\x28\x4b\x10\x9e\x23\xd4\xd2\xf9\x58\x80\x60\xfa\x3e\x92\xdd\x2c\x8f\x9f\xf0\x78\x2c\x71\xaf\xf8\xd2\x93\x85\x68\x0d\xfc\x3a\x4f\xeb\xa9\x3a\xa1\x70\x5f\x98\xd7\xb4\x7a\x43\x42\xd0\x9a\x63\xa3\xfc\x4f\x0f\x11\x0e\xcb\x87\x85\x1a\x2c\x0e\x20\x2c\x59\x3a\x27\x3b\xc3\x30\x92\xb0\x6f\xb5\xf3\xa2\xdb\x27\xbd\x09\x5c\x7a\xa7\x83\x2f\x39\x3b\x13\x02\xb2\xf5\x7e\xb6\x84\xee\x66\x70\xf3\x57\x53\x50\x42\x92\x3a\xe1\x41\x57\xee\x46\xce\xfa\x4d\x84\xd3\xb2\xe6\x2b\xd4\x5b\xbb\x08\x45\x8d\xb7\x3a\xbf\xd5\x14\x13\xfc\x46\x7f\xc9\x6d\x62\xff\x46\x98\xe5\x6d\x39\xdd\x62\xbb\xf7\x04\x34\xe7\xe7\xb0\x0d\x26\x58\x11\x2e\x0f\x48\x0c\xaf\xdb\xe4\x4f\x58\xb3\x55\xff\xdd\xa3\x9b\x3e\x04\x21\xbd\xdb\x7c\xf7\xa2\x74\x08\x1a\x57\x83\xee\x70\x3d\xe4\x27\x70\xce\x30\x7e\x72\xec\xa1\x02\x21\xd7\xef\x8a\x5c\xe3\x8f\xf9\x04\x6b\x9f\xbe\xf4\xdf\x3b\x8a\x08\xb1\x0e\x73\xa2\x33\xb9\xed\x09\xfb\x7e\xee\x91\xbe\xab\xcb\x47\xb8\xda\xb9\x6b\xf2\x85\x7e\x07\x06\x71\xa6\x03\x7f\xee\xb8\x19\x10\xbc\x25\x44\x6f\x6f\x53\xcf\x21\xfc\x6a\x9a\xb3\x60\xbf\xcb\x7d\x82\xe1\x40\x3e\xff\x97\x05\x69\x84\x05\xdc\xa3\xa7\xea\x3c\xf3\x18\x98\x9d\xdd\xe3\xb9\x2b\x2d\x87\x10\x7b\xfe\xb0\xd6\x1a\xa6\x80\x70\xe6\xe9\x89\xf4\xbd\xcd\x99\x84\xc8\x8d\xc7\xb7\x8f\x44\xdc\x23\xa4\x72\x6b\x1c\xd3\x1e\x2f\xa5\x09\x76\xe1\x43\x37\x7a\x09\x97\xaf\x3e\x78\xea\xd4\x94\x49\x90\x09\x70\x3f\xfb\xf7\xf0\x3c\xf9\xa5\x9d\xeb\xbc\x93\x09\xc6\xed\x1f\x04\xe7\xdd\x28\x27\x34\xff\x9e\x11\xa1\x91\xf7\x9a\x70\xf3\xca\x85\x9c\xdb\x93\xdc\x09\x55\xaa\x8f\x9f\x72\x84\x86\x33\xd8\x3d\x68\xbc\x42\xdf\x74\x36\xe1\xbb\x6a\x6f\xef\xe8\x1f\x55\x82\xb5\x62\x68\xe5\x86\x07\x47\x08\xdb\xe3\x72\x4f\x84\x2f\xda\x4f\xf0\x5e\x34\x7c\xa7\xb9\x66\x07\x81\xef\x64\xd5\xcb\x2d\x76\x01\x04\x3f\x1e\xa3\xfd\xab\xdc\xac\x09\x74\xd6\x3e\x7f\x92\xc6\x51\x82\x89\x53\x2f\xe7\x4a\x7d\x6d\x42\xbb\xd4\xfd\xb6\xf9\xf7\x4e\x11\x8e\xef\x59\x16\x74\xbe\xc7\x8f\xd0\xfd\xea\xa6\x5f\xfa\x35\x6f\x42\xed\xd0\x99\xe3\xa7\xd9\xf2\x09\x03\x06\xd2\xfb\x46\x2d\xdd\x09\xda\x56\xee\x62\x7b\x0f\xef\x27\x38\xf5\x68\x95\x18\x88\x5b\x11\xca\xf2\x8d\x35\x3d\x87\x0c\x08\xa5\xc7\x15\xe4\x77\xe7\x85\x10\x94\xf4\xb6\x04\xb2\xbc\x32\x09\x27\x93\x96\xbe\x66\x8f\xcd\x21\xe4\xd4\xfe\xd4\xd8\xa0\x61\x40\x58\xfc\xc9\x3a\xd8\xa9\x3d\x92\x60\x3e\x6b\x8a\xc5\x9f\x1e\x36\x42\xc4\x94\x82\x4b\x09\xe1\x59\x84\xe4\xc0\x54\xcf\xc5\x27\x5d\x08\xe7\xae\xe4\x7d\x3f\x28\x70\x7c\x02\x8e\xb8\x17\x7e\x9d\xd1\x12\x4a\x28\xc9\x3c\xfa\xb1\x45\xd4\x93\x70\xfc\x8d\x8b\x7d\xe5\x9f\xa3\x04\x9d\xcb\x21\xea\x8b\xd3\xd3\x08\x9e\x17\x45\x79\xe5\xf8\xee\x33\x78\x78\x74\x75\xd7\xa2\xf1\x52\x71\xf0\x4e\x6d\xa2\x42\x1e\xe1\x20\x4f\x95\xb9\x89\xf1\x02\x82\xeb\xab\x86\x2c\x69\xf1\x73\x84\xc0\xf5\x23\x1b\x5e\xef\x32\x23\xec\x58\x2f\xe8\xaf\x36\x2c\x49\xd8\x17\xab\x3f\xed\xcc\x7b\xc3\x09\x38\xde\x3b\xec\xea\xd8\xd0\xca\x02\xab\x3e\xe2\x7d\x47\x8d\x02\x61\xa1\xd8\x09\x83\xdf\x9c\x6e\x04\x4b\xc9\x43\xd3\x36\x1e\x67\x27\xd4\x57\x7c\x79\x73\xec\xba\x0e\x61\x6a\xb4\xf2\xec\xa3\xeb\x7f\xb2\xb0\x62\x8d\xbf\x5d\xbc\x98\x1f\x61\x60\x6f\x4a\xdb\x7a\x4b\x71\xc2\xa9\x8c\xe1\x2d\x31\x4e\x02\x84\x2a\xdf\xaa\x95\xcf\x97\xee\x25\x98\x96\xfa\x8e\x72\x1b\xef\x23\xbc\xf8\x91\xd7\x90\x1a\xed\x41\xb8\xc0\xe5\x3f\xa3\x66\x9d\x39\xa1\x76\x30\x4f\xe2\x97\x93\x22\x61\x1d\xdf\xbb\xf5\x27\x56\xc4\x10\xa6\x89\xf4\x76\x5b\xcb\xaf\x27\xec\xf0\xd1\x19\x54\xfb\x20\x42\x28\xdf\x68\x16\xe2\x7f\x69\x0d\x41\xfe\xd3\xfd\x90\x0c\xd7\x55\x84\x43\xda\x93\x79\x0f\x06\x5d\x20\x54\x72\x4c\x9b\x75\x64\xdf\x56\x42\xb5\x52\xcc\xd0\xab\x8a\x26\x06\x5f\x2f\x3a\xb7\x1c\x9f\xc5\x22\x14\xca\x24\x3e\x6d\xfc\x38\xc0\x82\xbc\xde\x1d\x15\x79\x15\x1e\x82\xe0\xd8\x9c\x0d\x76\x76\x6a\x84\xd5\x25\xce\xfb\x63\xd2\xca\x09\x5b\xeb\x0d\x8f\xfe\x2d\xa9\xdf\xec\xa5\x4f\x58\xde\x21\x94\x47\x4d\x3e\xce\x6f\xf9\x95\x85\x25\x07\xe7\xd6\x15\xa8\x5b\x13\xac\x4f\x2b\xad\x9c\xf4\x56\x91\x30\xc6\xd1\x27\xc5\x65\xb1\x86\x90\xe0\xfe\xfc\x80\xc5\x26\x73\x82\xaa\xc5\xb3\x05\x4b\x34\x8c\x09\xcb\x75\x96\x2c\x96\x3c\xbb\x8d\xd0\x18\xdc\x29\xbf\xb9\xd8\x94\x70\x66\x69\xa2\xd7\x55\xf7\x59\x04\x6f\xfb\xfd\x8f\x35\xd5\x2f\x11\x0c\xc2\x97\x4d\x36\x92\xfd\xff\xf0\x75\xdf\x61\x39\xff\xff\x1f\xf7\x33\x92\xcc\xa2\x21\x29\x45\x93\xd0\xa0\x25\xe7\xb3\xa1\xa5\xa1\xbd\x8b\x4a\x56\xa4\x34\x65\x94\xac\xd2\x10\xa5\x25\x22\xc9\x4e\x4b\x25\xe9\xdd\x42\x43\xd3\x48\xa1\x21\xd1\x30\x42\xe9\xa1\xc4\x75\xe4\xb8\x8e\x8f\x7e\xc7\xf1\xbd\xae\xff\x6e\xc7\xfd\xf9\x3c\xff\x72\x9e\xef\xf7\xeb\x75\xf8\x23\x6e\x82\x43\xac\xd1\x8b\x67\xfb\x2f\x31\xf8\xf3\x6a\xa7\xb6\x07\x57\x2e\x21\x71\xaf\x44\xc6\xf7\xaf\x66\x84\xb2\xda\x85\x2f\x1c\x7b\xcc\x08\x49\x9c\x46\x33\x6a\xa3\xa4\x27\x40\xce\xa8\xe1\x5e\xe9\x79\x36\x06\x6b\xef\x87\x26\xf2\xba\xef\x20\x8c\x3d\x8d\x39\xba\x97\xcd\x8f\xe0\xfe\x7d\x7a\xff\x5d\xfe\xc7\x0c\xec\xbe\xcd\xce\x0b\x7f\xea\x40\xb0\x9e\xd9\x20\x59\xb5\x48\x9f\x60\x7d\x43\xc9\xd7\xf8\x8d\x1f\xc1\xf2\xe3\x82\xe6\xe9\x21\xd5\x84\x70\xc7\xcf\xd7\xfe\x42\x2f\xfc\x6e\x1f\xd7\xc5\x44\x02\xeb\x77\xee\x0b\xf3\x60\x7d\x42\x62\xab\xf7\xb1\x7b\x35\x2b\x09\xfd\x1c\x2a\xe2\x72\x6c\x62\x84\x27\x3f\x95\x35\x92\x79\xbe\x8f\x5f\xfa\x65\x4a\xdc\xf6\xeb\x12\xc2\x55\xdf\x8f\xca\xe8\xe8\x11\x16\x7c\xd2\x3f\xc9\xea\x5e\x41\x88\xbb\xf1\x34\x63\x50\xf8\xc4\xf8\xf3\x67\xcf\xc2\x20\x39\x11\x42\xbf\x9f\xae\x75\x7c\xdf\x56\xc2\xd1\x3f\xf3\x56\xb5\x46\xc8\x10\x9a\x12\x6a\x6f\x68\x73\xe8\x13\x22\x2b\xf7\x9a\xb7\xc5\x6e\x21\xd4\xd7\xab\x97\x9e\x1c\x59\x4e\x68\xb5\x63\x13\x0f\x51\xf2\x27\xac\xea\x17\xbf\x77\x71\x96\x0d\xc1\xa4\xe6\x92\xea\xa7\xa5\x59\x84\xb9\xf7\xbe\xa3\x73\xaf\x08\xc1\x7f\x97\xeb\x06\xb3\x37\x02\x84\x2d\x8e\xb1\xe9\xaf\x67\xca\x11\x9e\x77\x2c\xd0\x48\x5e\x70\x80\xd0\xb1\xe9\x78\xd2\xc0\xab\x54\x42\xb2\x9b\x42\xb9\xff\x46\x6b\x42\xbf\xe7\xc2\x48\xe9\x67\x42\x04\x63\x99\x5f\xcf\x82\xc9\x65\xfc\x7e\xb0\xe2\xc1\xdd\xf9\x21\x84\xe8\x85\x21\x1b\x6f\xc4\x6c\x21\xb0\x3c\x8d\xd2\x4b\x0e\xc5\x12\x1c\x8e\xd7\x1c\x79\x3c\x7a\x89\x50\xe0\x54\xf2\xec\xd5\x63\x3e\x42\xa1\xc4\xb5\x7a\x65\x36\x99\xf1\x9b\xeb\xd1\x7d\xba\x07\xdf\xb2\xf0\xdb\x7b\x73\x5f\xec\xa7\xa5\x84\x45\xdb\x0a\xed\x7f\x09\x69\x11\x86\xe2\xab\xde\xe4\xb7\xb8\x12\x5e\x1f\x5f\xed\xf8\x31\x3c\x8c\x50\xb6\x75\x9a\xdf\x9f\x01\x47\x82\x8f\xb5\x82\xb5\x46\x59\x13\x03\xd1\x6c\x37\x4a\x6a\x79\x4d\x08\xbd\xc4\x53\xfd\x72\x77\x16\xc1\xee\x7d\x83\x79\xe5\x1c\x67\x42\xa4\xc4\x55\x0f\xc7\x8d\xa5\x84\x47\x69\xe7\x43\xcd\x8c\x4b\x09\xeb\xfb\x16\xd4\xbc\x8d\xc8\x21\x78\xf2\x25\xd8\xc9\xe8\x14\x13\x46\x79\xbd\xed\xfe\x8e\x3e\x3c\xb1\x8e\x38\xe4\x9f\x4d\x68\x33\xaf\xe3\xbb\xfb\x24\x9b\xc0\xfb\xe7\xb0\xba\xdf\xd8\x1d\x82\xd0\x31\xe7\x43\x36\x4f\xb3\x09\x3a\x0f\x3b\x75\x25\x7a\xb3\x09\x05\xeb\x0c\xb7\xfd\x2d\xb9\xb2\x21\x67\xfd\xf6\xde\x22\xcc\x7a\xca\xa1\x78\x84\xcf\x81\xb0\x4b\xca\xc2\x5b\xde\x7b\x23\xe1\x87\xe4\xe7\x08\x3f\xa1\x4d\x84\xc8\xa0\xe1\x0f\xf3\xcf\xd9\x10\xd2\x73\x38\xdd\x9f\x51\x08\x21\xc7\xbd\xa5\xfe\xcc\xe8\x7a\x42\x39\xc7\x11\x07\x43\x47\x09\x82\x97\x1c\x0f\xf7\xe4\xdb\x91\x84\xc8\x27\x6f\x77\x89\xaa\x85\x11\x1a\x7f\xbf\x4e\x51\x57\xde\x4b\x70\xce\xd7\xe1\x4c\x58\xe8\x4a\x90\xf4\x3e\xfe\x27\xbe\x76\x29\x41\x29\xbb\x6c\x30\x24\xdc\x9b\xf0\xfa\xd5\x07\x85\x97\x76\xda\x84\x56\xb6\xcb\x1b\xe2\x4f\x58\x12\x7e\x37\x6e\xfa\x66\xbe\x58\x86\x30\xf7\x76\x42\x8f\xe1\x95\x49\x84\xdd\xca\x53\x43\xea\x53\x0f\x13\x82\x3a\xf7\x0c\x56\x55\xd9\x4d\x80\xf8\x63\x6b\xae\xd8\xba\x79\x84\x1a\xfe\x2f\x73\xb4\x5f\x95\x13\x6c\x17\x1c\x61\xb3\xec\x31\x26\x94\x14\x21\xfa\xc0\x49\x5e\x42\x35\x77\xf9\xd2\x8a\x69\xe9\x04\xbe\x59\x72\x0d\x0b\xae\x0e\xb2\xfe\xa1\xb7\x6c\x48\xec\x5e\x83\x1c\xe1\xd1\x12\xb6\xa5\x5a\x81\x5f\x59\xff\x20\xb0\xfe\x07\xe7\x48\xeb\x36\x42\xe7\xd7\xd1\x57\xef\xd7\x6e\x26\xc8\x78\x56\x4d\xca\xfc\x99\x42\x90\xde\xc3\xac\xd3\xb4\x8f\x67\x70\x63\x40\x27\x76\x69\x60\x15\x21\xea\xe5\x91\x70\x8f\x9a\x66\xc2\x8e\x53\x51\x5d\x35\xa3\x2f\x08\x53\x8d\xfa\xd2\x2c\xd3\x9b\x09\xe9\xeb\x5b\x1f\xec\x1a\x1f\x3d\x78\x71\xed\xca\x68\x40\x2d\x61\x49\x7f\x56\xd8\x05\xa1\x32\x82\x41\xc5\x1d\xfe\x59\xc2\x65\x04\xe1\xb3\x57\x5a\x93\x92\x5c\x09\xd1\x5a\x1f\xfa\xfd\x2a\x5b\x09\x7c\x33\xd6\x8f\xec\xb4\xec\x26\x4c\xc9\x5d\xba\x4d\xd1\x39\x8d\xb0\x54\xe8\xd5\xeb\xc2\x6f\xef\x08\xf9\x39\xeb\xfa\x05\x7e\x96\x10\x1a\xca\x46\xef\x35\x6c\xc8\x22\xb4\x36\x2e\x98\xe9\x62\x7c\x97\xc1\xf7\x5c\x89\xad\xdd\x7a\x5d\x84\x29\xca\x9a\x4b\x12\x0c\x32\x09\xea\x33\xfa\xdf\xd7\xed\x1d\xff\xd2\xfa\x7c\xf0\xea\x8f\xcd\x22\xc4\xea\xef\x9f\x9d\x32\xf6\x84\x20\xc2\x23\xea\xff\xb6\xa9\x98\x70\x26\x5e\xff\xb9\xc8\xa3\x67\x84\x19\x3f\x6e\x07\xf0\x89\x96\x12\x02\xfb\x93\xf5\x93\x2e\xae\x26\x24\xb4\x7f\xff\xbd\xe9\x18\x1b\x61\xf9\x22\xe1\x2d\x4b\x96\x67\x33\x60\xb7\xb9\x33\xa2\x3d\xb3\x94\x41\xbd\x49\x55\xc3\xdf\x91\x84\x6d\x39\x2f\xcb\xbd\xb9\x18\x59\x61\x38\x7c\x6e\x60\x35\x21\x45\x2f\x50\x65\xc5\xba\xa5\x84\xf9\x2b\x85\x0c\x54\x73\x2b\x59\x10\x6a\x78\x12\xc1\x76\x31\x95\xb0\xf0\x5b\x80\xcb\xd9\x7d\x29\x04\xd1\x44\x79\xf1\xe5\x5f\xd5\x09\x82\x3e\x1f\xb2\x35\x45\x45\x08\xbb\x74\xcb\xa5\x37\x0f\x59\x12\x76\x15\xb5\x57\xfb\xbc\xf4\x22\xac\xe2\xf9\x3c\xe9\x85\x25\x2f\xa1\x69\x9d\xc2\xfe\xe6\xa3\xf3\x08\x5f\xab\x3e\x36\xbe\x5c\xc2\x22\x68\x19\x7d\x94\xd8\xcc\x69\x4e\x58\x30\x49\xef\xe4\x2a\xa1\x4c\x06\x51\x0f\x45\xd3\x7b\xd4\x4d\x09\x7a\x61\x39\xf5\x79\xaa\xea\x04\xed\x0d\x12\x62\xa6\x49\x2e\x04\xa9\xc5\x2f\xd2\x26\xd5\xca\x10\x9c\x2b\xb7\x78\x49\x69\xc8\x12\x78\x05\xe2\x34\x73\x96\xd9\x13\x46\xb4\xfc\x24\x7f\x45\x65\x10\xaa\x7f\x85\x45\x48\x07\x5b\x12\x02\xde\xeb\xed\xb7\x55\xf8\xc5\x42\x93\x97\x4e\xb3\xd7\x32\x11\xc2\x89\xc7\x6a\xa6\x1e\x46\x5f\x59\xe0\xe9\xd9\x6e\x31\xbd\x32\x8c\xd0\x3c\xa0\x50\xe2\x5d\xeb\x46\xf8\xb9\x4a\xf8\xdd\x63\x25\x27\xc2\xef\xc5\x2d\x6c\x8d\x3c\x5a\x84\x8c\x67\xab\x46\x38\xa2\x96\x11\x06\x9d\x25\xdd\xb7\x72\xca\x13\x42\x62\x0e\xb6\xbe\xff\xfe\x83\x30\x2a\xdd\x91\xf5\x7b\xfd\x4d\x02\xbb\xeb\xf9\x15\x97\x42\xb8\x19\x9c\x3c\xa8\x32\xec\x54\xc8\x4e\xb0\xd8\x68\xeb\x9c\xc4\x61\x43\x30\x0c\xf4\xe0\x38\xb4\x31\x9d\x41\x9a\xd9\x43\xe7\x75\x42\x77\x09\x7b\x2e\x6e\xf3\xfe\x5d\x9f\x4d\x10\x0f\x7b\xdb\x57\x93\xd8\x45\x10\x4e\xd7\x34\x10\xd3\xbe\x4b\x78\xf2\xe0\xb4\x5b\x54\x4a\x13\xc1\xbf\xa1\x20\xd2\xd4\xc8\x94\xf0\x74\xd3\xc2\xdf\xe1\xbd\xb7\x18\xbc\xfa\xc4\xc7\x6b\x16\xe3\x48\x78\x18\x27\x51\xc9\xbd\xef\x19\xe1\xc9\xe0\xd3\x96\x1a\xab\x06\xc2\x17\x15\x95\x27\x7c\x4a\xd1\x84\xea\x21\x3b\xab\x13\xa6\xe5\x04\x57\xc1\x39\xcf\xee\xba\x9f\x25\x1c\x9c\xfc\xd6\x7b\x46\xd0\x73\x06\xbf\x97\xa5\x17\x2c\x1b\x3f\xdb\x4c\xee\x0a\x9a\x5d\x3e\x27\x95\x30\x5c\xd1\xb3\x68\xfb\xa3\x07\x84\x6d\xcb\xce\x8a\xfd\x2d\xff\x61\xf6\x9c\x9f\x4e\x21\x0a\x59\x2c\xfc\x4e\xe0\x31\x7c\x99\x7e\x89\x41\x9c\x74\xe1\x27\x5f\x4e\x1b\x42\xcd\x67\xa1\xf7\x56\xc3\x6d\x2c\xf8\x7c\x7a\x34\xe9\x79\x7a\x1c\x61\xa7\x5b\xa2\x4b\xef\x29\x33\xc2\x5b\x76\xef\xc0\xd6\xcc\x8b\x84\x55\xf9\x83\x1d\x0a\xe1\x6e\x84\xb8\x49\x1f\x0d\x2f\x6f\x8b\x61\xfe\x95\x1d\xaf\x9b\x7e\xaf\xbc\xaa\x3c\x01\x81\x95\x53\xb7\xd5\x05\xa6\x11\x98\xde\x19\x26\x42\x91\x97\x27\xe0\x92\xdc\xe9\x67\x37\x9a\xb6\x13\xc6\xba\xde\x6a\x18\xfd\xae\x64\x50\x94\x12\xbf\x6d\xc5\xfc\x41\x16\x12\xee\xff\x98\x32\x2c\xef\x49\xc8\xdb\xef\x6d\xed\xba\x7a\x29\xe1\xe3\xed\xa5\xb9\x69\x83\x61\x0c\xaa\xb6\x35\xdd\xf8\xf6\x30\x8e\x70\x47\xb7\x46\xbb\xda\x6e\x06\x21\xec\x4f\x3d\x8f\x55\xf1\xf8\x61\x9b\xfb\xf2\xda\x37\xeb\x34\x08\x3a\x8b\x97\xca\x0b\xf0\x2c\x20\x8c\xa5\xb7\xf3\xbb\x1d\x1e\x64\x21\x77\xe6\xa6\x7d\xeb\x6d\x7b\x58\x28\x0e\x5b\x39\x2a\x9c\xb6\x90\xd0\x9f\xd4\x32\x6f\x64\x79\x30\x61\xf3\x7a\x0e\xe6\xdb\x80\x2e\xa1\x7a\xc5\xfd\xa1\x22\x39\x45\x82\xdd\x0c\xc5\x6f\x6b\xdd\x8e\x32\x48\x3f\xfa\xe9\xf9\xae\xcc\x5d\x84\xd4\xc4\xa3\xd5\x67\x7d\xe3\x19\xd8\x77\x72\x66\x2f\x78\xe5\xca\xe0\x55\x55\x7c\xba\x94\x98\x36\x21\xfd\xd5\xf3\xfe\x2d\xbe\xa7\x18\x0c\x7f\x7f\xa7\xf3\xe5\xf0\x63\x82\xab\x4b\x61\x77\xda\x97\xad\x0c\x38\xde\x3f\xfa\xf5\x86\xe5\x49\x70\xb9\xf3\xc2\x63\xc9\xdd\xdd\x04\xf5\xac\xbc\xaa\x6b\x71\xdb\x08\x02\x9c\xf5\x12\x9b\x9d\xf5\x08\x86\xfe\x6a\x47\xe7\x5f\x31\x23\x1c\xdc\x35\x2b\x61\x2e\xd7\x12\xc2\xc2\x47\xd1\x4f\x67\xa7\x9a\x13\x36\x2f\x57\xb5\x0d\xe6\x51\x26\x64\x5e\x5e\xde\x1e\xbf\x56\x84\xb0\xc7\x81\xed\x82\x41\x0e\x1f\xc1\xd1\xff\xb9\x5a\x72\x55\x26\xe1\xa6\x8a\xbc\xcc\xd6\xbd\xd7\x08\x31\x3d\x37\xe6\xfc\x2d\x0f\xb2\x66\xfc\x2a\x58\xc6\x43\x88\x7b\x60\x73\xce\xea\xe4\x27\x16\x34\xca\x36\x0b\xf9\x3e\x99\x4f\xb8\xb9\x3f\x51\xc3\x6d\x56\x39\x81\xe7\x43\xec\xe1\x03\x6b\xcb\x09\x65\x7c\xed\x85\x57\xd5\xca\x08\xbf\x8f\xe6\x67\xd4\x15\xbf\x20\x24\x29\x2e\x59\xca\x35\xeb\xe9\x84\x9d\xf2\x5c\x93\x59\x1f\x16\xc4\x13\xae\xcc\xb0\x9f\x52\xb1\xe1\x08\xe1\x8a\xf3\xbe\x6b\x6b\x54\xe2\x09\x61\x93\x13\xdf\xc5\x66\xc4\x11\xa6\xa9\xb7\xac\xe3\x90\x8a\x27\xa4\x6b\x28\x74\xf7\xb0\x5b\x33\x78\xe4\x91\x54\x38\x67\x43\x09\x03\xbe\x8a\xb3\xd7\x62\x24\xde\x30\xd0\x7e\xed\x7e\xcb\x61\xf2\x23\x06\x4b\x45\x9a\x78\x3c\x46\xce\x31\xa8\x6f\x89\x31\xac\x17\xac\x21\x7c\xf3\xf7\xcf\xbd\xe5\x63\x4e\xd0\x3d\x1f\xf4\x23\x70\xce\x57\x16\x1c\x86\xf8\x22\x99\xf6\xeb\x84\x0b\xc9\xfc\x01\xc5\xe3\xb8\x73\xd2\x0f\x5b\xe2\x6b\x09\x81\xf7\xf1\xf0\x93\x7f\x0a\x83\x19\x41\x65\x82\x7f\x47\xc9\x94\xfd\xa2\xa4\xc5\x8a\x10\xa5\xf2\xaa\xdf\xa3\xec\x2c\xf3\xaf\xfc\x87\x5d\x7b\x0f\x09\x37\x95\x72\x12\x0c\xf8\x7d\xc0\xb1\x4a\x97\xd0\x71\x75\x71\xaa\xc2\x40\x36\x61\x95\x58\x8e\x58\xbf\xd8\x25\x06\xdc\x01\xc9\xdc\xba\xc5\x47\x09\x1a\xd3\xb8\xd7\x7a\xd7\xbb\x10\x1a\x1b\x2b\xb4\x7d\x03\x23\x09\x25\xfc\x1f\x36\x5d\x90\x34\x25\xe4\x1b\x04\x2e\xcc\x56\xde\x4d\x90\x4c\x18\xfa\xc3\xd5\xea\x41\x98\xdb\x28\x1b\xc8\x5a\xa0\x49\x30\xda\xfd\xe6\x04\x6f\xfc\x1a\xfa\xe9\xe0\xa3\xfa\x55\xea\x21\xa1\x33\x73\xd6\xb6\x25\xfc\xf9\x84\x83\x07\x7f\xfc\x62\xdb\xb2\x95\xb0\x66\xe6\xaf\x66\xbe\xae\x00\xc2\xc6\x22\xfd\x21\xee\x9b\x5a\x84\xa2\xd9\x5d\xa5\x7f\xae\xdf\x27\x44\x5a\xce\xea\x7d\xbd\xd4\x9d\xb0\xf7\xe1\x1f\x9d\xec\x8f\x3e\x84\x05\x78\x62\xb8\xa9\x79\x1a\xc1\xf5\x57\xef\x31\xde\xf1\xf7\xf3\x7f\xc0\x8a\x03\xda\xde\x15\x01\x84\xd4\xd5\xfd\xbd\x23\x2e\xf9\x84\x23\x77\xbf\x29\x75\x6f\xca\x27\x2c\x59\x15\x34\xdf\x78\xfc\x00\xdb\x70\xe7\xcd\xe9\x88\x4b\x66\x13\x8a\xd1\x51\xd3\xca\x6c\x3b\x05\xc2\x96\xd4\xb7\x2f\x0a\xc6\xb6\x10\x66\xaa\x66\x48\x04\xb4\x5a\x11\x76\x66\xd8\xdb\x88\x7f\x54\x25\xec\xe8\x61\xed\xfe\x62\xcc\x4d\xc8\xb9\x92\x78\xf3\xb0\xc9\x03\xc2\x65\x9f\x53\x01\xea\x0e\x56\x84\x8d\xe7\xfb\x22\x3e\x1b\xde\x24\x98\x6c\x0f\x4a\x3c\x2d\x34\x5c\x8c\xe6\xa4\x6f\xdf\x83\x98\x10\x06\x8d\xad\x57\x92\x7c\x77\x1f\x26\xd4\xc7\xec\xaf\x99\x77\xc6\x9f\xe0\xf6\x6e\x9f\xe6\x9e\xcf\x85\x0c\x72\xbb\x06\xe5\x2a\x3b\x24\xe9\x1f\x9a\x5f\xc9\xfb\x3a\xaf\x5d\x45\xa8\xbb\xd8\x5d\x99\xb7\xd0\x96\x20\xce\xb3\x93\x7f\x6b\x4a\xea\x84\x91\x63\x8f\xf2\x71\x33\xd1\x6e\x16\x2c\x16\xfb\xdd\xbc\x3b\x99\x8f\x70\xd6\xbd\xd6\xb5\x34\x74\x05\xe1\x75\x70\xa9\xbe\xcb\x3a\x59\x02\x67\x41\x9a\x97\x06\xf1\x4c\xc0\x8c\x90\x07\xd6\x8f\xa2\x1b\x8b\xa1\xe1\x65\x62\xbe\xa1\xf4\x1e\x83\x6a\x47\xf5\x93\x9a\x92\xb7\x08\xab\x6c\x17\xee\x5a\x7e\xda\x8d\x30\xc7\x33\x6c\x68\xaf\xa5\x13\xc1\xc9\x51\xc2\x3b\x95\xe3\x2e\x83\x44\x49\xf8\xbd\x11\xb6\x21\xcc\xcf\x5d\xdd\x91\xa2\xa2\x40\x70\x37\xbe\xb9\xd7\x51\x64\x8c\x85\x2b\x6e\xa7\x04\x27\x8b\xec\x21\xdc\xcc\x33\xb1\xfb\xb2\x67\x33\xe1\xa9\xee\xa9\xeb\xad\x36\xbb\x09\xaa\xd7\x97\xdb\x59\x0b\x6d\x24\xd4\xad\x6f\xca\x2f\xc0\x6a\xc2\xf6\xb2\x24\x3d\xa9\xa3\x17\x09\xd7\xac\x5f\x2c\x5e\x56\x5c\xc6\x20\xc8\xca\xfe\xb4\x47\xe8\x45\x42\x64\x64\x56\xc1\x35\xb5\x12\x42\x7c\xc2\xcf\x9e\x0f\x97\xd4\x09\xb6\xf7\x5c\xea\x3c\xda\x0f\x31\xc8\x73\x79\x1a\x18\xb0\x62\x03\x61\xd9\x0a\xee\x7a\xf6\xa7\x25\x13\x8a\x58\x82\x7b\x53\x86\xf1\x56\xc2\x09\x3f\x83\xac\xba\x7e\x2b\x42\xd3\xe7\xe8\x43\xce\xba\x4f\x19\x5c\x7f\xb1\x4c\xf5\xf6\x23\x27\xc2\xd5\xc9\x29\x77\xd7\x6e\xe5\x20\x04\xca\xbd\xd3\xfc\x38\xbc\x86\x10\xbe\x5e\x35\xfe\x8c\xd0\x14\x42\xd7\xc1\x88\xa2\x5a\x69\x35\xc2\xf2\xc9\x59\x35\xa7\xbe\x6b\x13\x24\x5d\xee\x98\x07\x28\x6a\x10\xbc\x94\x66\x2d\xef\x7a\xc5\x45\x38\xbe\x76\x79\xf7\x82\xba\x40\xc2\x65\xc1\x3d\x62\xb3\xbf\xef\x20\xa8\x7d\x2a\x3a\xf4\xbb\x8f\x45\xd8\x6a\xba\x9d\xb8\x83\x3d\x09\x37\x46\x0f\xc4\x70\x29\x95\x10\x5a\x22\x6a\x79\x04\x0e\xbf\x9b\x50\xfe\xc3\xe9\x98\x98\x36\xdb\x46\x75\xc2\x70\x48\x2b\xdb\xb7\xe6\x6c\xc2\xf1\xb9\xcd\x97\x15\xa3\xce\x13\xf8\xae\x9e\x37\xca\xd8\xd6\xce\x42\xc5\x05\x1e\xfb\x4d\xb7\xb2\x99\x7f\xc5\x87\xb3\x82\xff\xf6\xc7\x87\x2c\xec\x1e\xd9\xe9\xc7\x32\xb0\x26\xe4\x18\xbb\x17\xb0\xb3\x04\x09\x37\x8d\xca\x93\xe6\xb2\xfd\x66\x61\xff\xf4\x8b\xd7\x86\xd7\xd4\xb2\xe0\xd3\xed\x36\xfd\x80\x89\x19\xc1\x2d\xf7\x53\x1c\xfb\x79\x2f\x02\x9f\xb0\xd2\x33\xc9\x5a\xdf\x09\xc5\xf3\x4b\xd3\x8f\x79\x1f\x9a\x8b\xa1\xd8\xeb\xac\x5f\x2d\xa9\x41\x08\x3e\xf9\x7b\xe0\x67\x9f\x11\xc1\x3b\x89\x95\xcf\xeb\x16\x48\xb8\x90\x79\x39\xd2\xf1\x6c\x19\x83\xb0\x93\x61\x96\x87\x2f\x68\x12\xd2\xd4\xbb\xeb\x1b\x3d\x95\x08\x67\xef\xe9\xec\x65\x1d\x12\x23\x34\xa7\x77\x8f\xbd\xf8\xb0\x87\x50\x3f\x4d\xeb\xbb\xc7\x62\x0d\x42\xf7\xad\xb9\xba\x27\xbe\x84\x11\x6e\x4e\x2e\xe2\x7f\x10\x66\x42\x88\xe0\x79\x70\xf6\x86\xd8\x6e\x42\x83\x5e\x7f\xf8\x22\x3f\x59\xc2\xdb\x92\x33\x83\x35\xdb\x75\x09\x62\x9a\xbf\xce\xeb\x48\x6b\x10\xfa\xa5\x86\xdb\xc5\x5f\x54\x16\xa3\xfc\xd2\xde\x42\x57\xfe\x60\x82\xf3\x55\x43\xc5\x1f\xae\x72\x84\x69\x77\x22\x0e\x79\x89\x8b\x12\x36\xcc\x32\xe6\xfb\x2a\x5a\x4c\x98\x7a\x70\xda\xf1\x3b\x9d\x75\x04\x3e\xe9\x99\x4a\xb5\xcb\x4b\x09\xd2\x33\xee\x86\xf8\x1d\xa8\x22\x64\x4d\xcb\xe6\xc9\x18\x1f\x95\xef\x88\x12\xc3\xac\x14\x02\x4f\xa5\xca\x43\xdf\x8b\x7d\x2c\xcc\x63\xff\xec\x21\x28\x94\x4b\xb0\xd7\x3d\xfa\x5e\x60\x1c\x95\x12\x0f\xfe\xdc\xb3\x7a\xc9\x42\xf8\x63\x7a\xeb\x91\xf2\x81\x85\xdf\x5b\x7c\xd7\x28\x6e\xf5\x25\xc8\x5b\xef\x7d\xa8\xc7\x2c\x9c\x80\xed\xcf\xeb\xd3\x24\x54\x44\x08\xe7\x1f\xe6\x75\x85\xf2\x0d\xb0\x20\x73\xbe\x44\xf3\x2d\xef\x6f\x16\xa2\x79\x5e\x4e\x17\x36\x21\x42\xd9\xf7\xf5\xbd\xb5\xc2\x06\x84\xed\xcb\x26\xf9\xf4\x3d\xe7\x21\xe8\x70\x84\x8f\x88\x61\x8c\x85\x33\xe2\x01\xad\xac\xd3\x62\xf4\x0f\xcd\x3d\xcc\xd1\xd7\x9b\xda\x8a\x31\xa8\x3a\xcb\xdc\xac\xed\x00\x83\x75\x76\xda\x0a\x6a\xf6\xf7\x08\x7c\xfb\xbe\xcc\x6f\x50\x6f\x20\x24\xb6\x34\x7c\x68\x6c\xae\x23\xbc\x75\x0b\x5d\x93\xad\x53\x4f\xa0\xb9\xaa\xab\x15\xdf\x14\x13\x56\xbf\x4a\x0d\x2f\x4f\x88\x24\xf8\x3d\xde\xba\xe2\xa3\x40\x10\xa1\x6e\xdd\x01\xd9\xe3\x73\x56\x13\xec\xd8\x66\xf4\xde\xf7\xb6\x20\xc4\x17\x0b\xab\x2f\xdc\xe4\x48\xd8\xf5\x55\x3f\x23\xd3\xb4\x95\x10\xa3\x9d\x7e\x7f\x41\xbf\x32\xe1\x20\xc7\x01\x3b\x85\x4c\x23\xc2\x48\xd1\x4f\xd6\xd9\xad\x0a\x84\xf4\x35\x4f\x26\xc9\xbb\x0a\x10\xb4\xca\xc5\xa6\x6e\x12\x32\x22\xa8\x65\x85\xab\x6c\xba\xaf\x44\x50\xb3\x9d\x16\xa9\x79\x4d\x86\xb0\xd0\x60\xa0\x44\x2b\xee\x28\xa1\x27\x6a\xdb\xd5\xf4\x8e\x4d\x13\x20\x3e\xa9\x23\x65\x64\xa5\xe8\x04\x34\x4d\xaf\xbf\xe0\x94\xa5\x41\xd0\x50\x0d\xba\xb7\xee\xc5\x3e\x42\xef\xe7\x6d\x6f\x77\x7f\x3c\x42\x10\x6e\x39\xab\xfa\x6d\xd5\x2b\x06\x82\xee\x7c\xfb\x17\xb4\x49\x13\xea\x46\xa7\xeb\xb9\xa5\xec\x24\x74\xb7\x2a\x2f\x54\x63\x76\x10\x9a\x1e\x66\x73\xc7\x5c\xf3\x24\x4c\x3d\x74\xe1\x74\xf5\xb2\x22\x06\xcc\x4c\xd3\xa7\x42\x5a\x6e\x04\x47\x83\xe8\xe9\x7b\x8e\x3c\x64\x30\xd3\x6d\x37\x54\xdb\x6e\x10\xec\xe7\x2c\x4b\x39\x7c\x56\x8f\xd0\xec\x82\xe9\xba\xfd\xcb\x09\xe2\xad\x1e\x91\x11\xd3\xf6\x10\x7e\xdc\x37\xf1\x7e\x6f\x67\x40\xd0\x7d\x1f\xc2\x92\xcb\x31\x22\x58\x9d\xc8\x5e\x28\xc2\x66\x43\x10\xeb\xf1\x7e\x94\x31\xa2\x4e\xf8\xd6\x5b\xc8\xbe\x8f\xaf\x6e\x02\x36\x67\xa9\xda\x94\x5f\x19\x20\x9c\x89\xd9\xb9\xfb\xc4\xf5\x6a\xc2\x2a\x9c\x39\xe2\x33\x3e\x2a\x58\x62\x66\xe9\x3f\x66\x4f\x50\x71\x79\x26\x7f\xa9\xc3\x98\x30\x69\xc1\x3c\xd1\x03\xc7\x2c\x08\x93\xcc\x3f\xce\xcd\xb0\xd4\x20\x04\x34\xda\x8c\x3e\x17\x6e\x63\xa1\xe1\xc9\xf7\xa8\x83\x43\xba\x04\x96\x60\x8a\x5d\x5b\xae\x16\x21\xd6\x60\x93\x7a\x54\x72\x03\x21\xfd\xce\x8a\x14\x45\x59\x43\x42\x54\x49\xcd\xed\x35\x6e\xa6\x04\xae\x2d\xd7\xa7\x59\x35\x29\x10\xdc\x96\x3e\xbe\x7b\xf3\xf7\x2a\xc2\xec\xb9\xdb\xae\xc9\x7f\x88\x25\x1c\xad\x95\x2c\xf7\xdc\xd6\xca\x60\x96\x78\x80\xc3\xec\xe7\x76\x04\x83\xa5\x6b\x4c\x27\x09\x9b\x12\xfc\xbd\x22\xd7\x28\x1d\x5d\x4c\x58\xff\xc5\x68\x5f\xa5\xd9\x22\x82\xf8\x8a\x73\x57\x46\x64\x15\x09\x8a\xd6\x4b\x7e\xde\x6d\xb1\x24\xd8\x5b\x1f\xb6\xcc\xef\x50\x21\x08\xe9\xad\x67\x84\x73\x55\x08\xbd\xdd\x6c\x1e\xd1\x02\x7a\x84\xa3\x36\x3a\x6a\xed\xd9\x1b\x26\x40\x80\xa7\xa0\x2e\xeb\xa9\x11\xe1\x7e\xa3\xc1\xea\x5f\x36\x61\x13\xca\x7f\x58\x60\x6f\xf7\x2b\x22\x90\x9f\x50\xb2\xf9\x9c\xe4\xbc\x27\xa9\x84\xd4\x99\xd2\x6a\x03\xcf\xd4\x09\x4f\xf1\xf9\x49\xfa\xf8\x7d\xf7\xe5\x8b\x3d\xeb\x77\x5a\x74\xb2\xa0\xb0\x3a\x7d\xe8\xa9\x5a\x2d\x0b\xee\x0f\xdf\x86\x54\x76\xa8\x12\x54\xde\x4e\x9a\xf3\x49\x30\x9c\x20\xc6\x3d\x75\xb3\x54\xc6\x9a\x09\x08\x0f\x91\xe6\xe4\x73\x5c\x4b\xb8\x25\x60\xea\x29\xa5\xd8\xcc\x60\x28\xcb\x6b\x45\xd2\x85\x15\x84\x45\xdc\x5a\xbb\x24\x1b\xdb\x09\xf3\xf2\x07\x9e\x9c\x1b\x2f\x12\xbd\x17\x2e\xdf\x55\x65\x23\x3c\xd0\x7f\x33\xea\x3e\x57\x9b\x70\xb6\x61\x6e\x9d\xde\x98\x2b\xe1\xe4\x76\x6d\x27\x7b\xb2\x25\xe4\x14\x8c\x19\x77\x3a\xcd\x20\xac\x0b\xb8\xfc\x7a\x41\xde\x31\xc2\xaf\x7d\xf7\x7e\xad\xbe\x93\x4f\x08\x8d\xbd\xc2\x35\xec\xce\x33\x01\xaf\xdf\x59\xd5\x17\x92\x3a\xa1\xf8\x78\xd6\x5c\xc9\xab\x6a\x04\x8d\x76\xf5\xf0\x8f\x3f\x38\x08\xb3\x9f\x39\x89\xd8\x84\x5b\x12\xc4\x84\x95\xeb\xcc\x66\xeb\x10\x56\x73\xbc\xfa\x30\x5d\xe8\x0e\xeb\x1f\x52\x7f\x38\xcb\xf8\xac\x5a\x4b\x10\x89\x9d\xec\xf1\x61\x61\x2e\x61\xed\xaf\x9e\x9e\x19\x0e\xc1\x84\x60\x5f\x9f\xbe\x39\xbb\x46\x59\x10\xf4\x18\x83\x54\x33\x37\xe1\xe2\x9d\xf4\x9b\xdb\xaa\x74\x08\x09\x42\x3b\x2f\x76\xda\x19\x12\x6a\xd3\x8c\x93\x3a\xbf\xde\x9b\x80\xf7\x15\xb1\x0f\xaf\x1b\x97\x31\x88\xdb\xba\xe0\x8f\xb4\xd7\x5d\xc2\xeb\x61\xe5\x64\x89\xe8\x74\x82\x6a\xe4\x16\x11\x45\x19\x0b\x82\xd2\xbe\xe0\xaf\x0f\x1f\xae\x27\x2c\xf9\xf6\x6a\xb5\x92\x6e\x2f\xa1\xa9\xca\xf4\xb2\xbb\x50\x39\x41\x57\x44\xde\xc4\x41\xeb\x26\xe1\x5c\xd4\xc8\x68\xf8\xdb\x6b\x84\xcb\xdf\xb9\x9d\xfe\x8e\xf6\x9b\x9a\xfb\xa9\x27\xd5\x31\xc8\x58\xfd\x99\xf5\xe4\xd8\x29\xc2\x56\xdd\xcc\xfd\x61\xdf\x4b\x09\x57\x05\xf8\xce\x3c\x53\xac\x22\x74\x98\x26\xa7\xbd\xb4\x2e\x61\x50\xb8\x53\xc0\xa6\x66\x7c\x87\xd9\x1f\x1f\x9b\x78\xb4\x94\xa0\xac\xd9\x25\x65\x1b\x9c\x42\x30\x71\x7c\x58\xb3\xce\x39\x9a\x30\x25\xda\x92\x37\x7e\xfc\xbd\xf3\x1f\x74\x36\x4e\x5d\xfe\x65\xfc\x7e\x79\x7e\xd3\xfa\x8e\xa2\x1e\x16\xc1\x77\x8e\xbe\x5c\xe8\xf6\xcd\x04\x53\xef\xcb\x0f\xea\xd2\x55\x08\x9c\x3b\x6b\x9f\x3f\xd9\x18\x4d\xd8\xb3\x84\xf5\xd4\x78\x2b\x3f\x61\xe0\x4d\x57\xe8\xfb\xc6\xcf\x2c\x54\x15\x56\xdd\xb9\xb8\xad\x97\x05\xbf\xcb\x2e\x86\x4f\xdb\xd7\x12\xc4\x4f\xd3\x0e\xb5\x4b\xca\x13\x20\xf0\x65\xd1\x39\xb9\x96\x87\x2c\xd8\x5f\xe0\x34\xb9\x5e\xcb\x30\xd8\x2c\x1c\xea\xc4\xd7\xc4\x30\xe0\x98\xd4\x50\xa0\xbe\xbb\x95\xd0\x7d\x21\x76\xa6\x53\xcd\x41\xc2\x42\xc7\x28\x51\xbd\x82\xc9\x04\xe1\x77\xef\x7e\x7a\x6f\x74\x27\xcc\x7b\x99\xd6\x7e\xf3\xd1\x76\x42\x34\xfb\x17\xcd\xda\x12\x25\x42\x48\x9c\xc2\x57\x73\x49\x55\xc2\xad\x53\xf3\x0f\x58\x44\xf1\x4f\x80\x1d\x9f\xd8\xb3\x22\x69\x71\x02\xbb\x9d\xea\x94\x80\x93\x83\x2c\x7c\xba\xb2\x61\x64\x67\x9f\x0f\x81\x7f\xaf\xe5\xda\xc1\x4d\x0b\x08\x99\xb7\x17\xab\x38\xc4\xf3\x13\xfc\x38\x3e\x70\x6c\x17\xf2\x22\xac\x89\x72\xe0\x2d\x9c\x51\x41\xf8\xe6\x5c\xd8\xda\xcb\x6f\x4e\xe8\xdc\x35\xcc\xd5\x79\x4d\x8f\x30\x9f\x5d\xf1\xe5\xbe\xd2\xb5\x84\x9f\xca\xd7\x59\x1e\x2b\xce\x12\x76\x0b\x9e\x32\x77\x0a\x5b\x4d\xc8\x60\xca\x59\xf7\xfd\x16\x11\xdc\x4d\x5e\x85\xc5\x64\xf3\x13\x3e\x5c\xee\x2c\x2b\x7c\x6d\x46\x30\x5a\x69\x58\xbe\x2a\xfa\x3a\x81\x7d\xc6\x56\x9f\xa0\xc4\x72\x42\xd5\xd8\x08\x6f\xf0\x38\xbe\x14\x7b\x29\x85\x8e\x76\x32\xd8\xda\xb9\xde\x62\xdd\xcd\xa7\x84\xe8\xad\x3b\xc3\xe2\x5a\x1b\x26\xec\x44\xdd\x34\xb0\x5b\xb6\x31\x8f\xc0\xbb\xd5\xfd\xb2\xa4\x5f\x1e\x61\xa1\x58\x9a\x77\x78\x53\x01\x41\x47\xe3\x8c\xb5\xc8\xd6\x68\x82\x4f\x54\x7c\x99\x4a\x5a\x2e\xa1\xcc\x58\xfc\xbe\x7d\x00\x1b\x41\xf3\xe8\xdd\xed\x0a\x1e\x0a\x13\xb0\x5e\xa1\x3e\x3c\x76\xf9\x47\x16\x62\x67\xc9\x87\x45\x18\x96\xb3\x10\xa8\x5b\x2b\x7d\x30\xcc\x93\x81\x9a\x1c\x47\xcf\x9f\x4e\x53\xfa\xff\x03\x57\xcb\x05\xab\xd6\x9f\x22\x04\x2d\xa7\x47\xeb\x74\x55\xa4\x27\x94\x99\xef\x9a\xe6\x1c\x7e\x79\x87\xd0\xb5\xa6\x4e\xf4\xd9\x1b\x2d\xc2\xfd\xa0\xcc\xf6\xe8\xab\xa3\x2c\xc8\xf7\x64\xfb\xd9\xf8\x99\x12\x4e\xae\x10\xe3\xfb\x18\xac\x4e\x98\x62\xbc\xe2\xec\x94\xd5\x0a\x84\x57\x4d\x2f\xee\x59\x1c\xe3\x23\x5c\xf8\x54\xe4\xb1\xbf\xa2\x96\xc1\x77\x97\xe8\xdf\xfd\x47\x27\x8d\xbf\xb2\xe7\x4c\xb7\x0c\xf1\x21\x54\xeb\x7a\xb8\x3f\xcd\xd3\x20\x8c\x55\x78\x2f\x3e\x71\xda\x99\xb0\xf9\xe0\xfd\x5b\x93\x54\x4c\x08\x0e\x71\xde\xcd\xc3\x53\x14\x09\xf7\x46\x56\x8e\xa6\x84\xf2\x11\x56\xc6\x1e\xaa\xf8\x2c\xa8\x4f\x78\xb0\xe8\x64\x9f\x49\x85\x3c\x41\x47\xb5\xe1\xfe\xb2\xe5\x63\x2c\x18\x54\x47\x7c\x7e\xfb\x9a\x97\x70\x83\x46\x22\x1c\xae\x8b\xd2\xbf\x32\x16\xbf\xa5\xe6\xb6\xa4\x3f\x41\x52\xe4\xd6\x9a\x6d\x6f\xc2\x18\x64\xce\x71\xd2\xde\xcc\x17\x39\x61\xf4\xf0\xe5\x9d\xcb\xf1\x55\xdf\x58\x30\xb6\x18\x19\xe3\x74\x63\x23\xa4\x9e\xca\xd4\xdd\xf0\xf2\x16\xa1\x96\xc7\x70\xfe\x3c\xa3\x23\x04\x51\x8e\x5a\x39\xba\x7b\x98\xb0\x7f\x72\xd6\x8d\xdf\x0d\xab\x08\x69\xc2\x0b\xaf\xdf\xde\xaf\x4a\xf8\x68\xad\x16\x25\x79\x55\x81\x10\x7e\xac\x77\x4d\x5c\x12\x0f\x41\x7f\xea\x93\xa9\xd5\x6f\xb9\x08\xac\x98\x1c\x9f\xd1\xaa\x79\x04\x85\x5c\xdf\x15\xf2\xd3\x2f\x11\x36\xe9\x7c\xf3\x71\x7a\xb1\x6a\x02\x8c\x9e\xfe\x58\x35\x20\xfb\x83\x85\xbc\x8b\x3f\x44\xea\x73\xc2\x19\x6c\x34\x4b\x67\x9b\x99\x59\x4d\x60\xbd\xfc\x31\x6f\x26\x77\x05\xe1\x68\x78\xae\x47\xfe\xec\x12\x06\x49\x03\x6f\x17\x9f\x32\x2b\x21\xe8\xad\xbd\x57\x25\x5f\xf5\x80\xa0\x9f\xab\x2f\x7b\x95\xef\x02\xe1\xf1\xf1\x77\x27\x75\xdc\x0e\x12\xec\x73\x0a\xd7\x46\x08\x6d\x26\xe4\x4d\xb7\xbc\xf7\x7d\xba\x27\x61\xa5\xc3\x3d\xa1\x1b\xeb\xfd\x09\x1c\x01\xc9\x85\x2d\xd1\xce\x84\x5e\xb1\x85\x1a\xce\x48\x25\x0c\xdf\x50\xaf\x3d\x36\xe9\x1d\xc1\x5e\xe7\x59\xdc\xd2\x79\x7d\x84\xa4\x0e\x9e\xe1\x13\xab\xaa\x09\x4b\x8f\x2a\x8c\xd8\xd5\x7c\x25\x4c\xee\x99\x92\x22\xec\x97\x4b\x68\xab\x63\xf7\x33\x17\x8e\x21\x3c\x57\x75\x0b\x19\xf6\x3f\x42\xe8\x3d\x30\xeb\x9e\x93\xf7\x6e\x82\x56\x06\x7b\x63\x67\x85\x09\x61\xfa\xc7\x25\xb3\xdf\x0e\x05\x10\xa6\x64\xbe\xb6\x3f\xa3\xae\x4b\x08\xe9\x0b\xac\xfa\xd6\xb9\x84\x20\xd4\x96\x30\x4d\x47\x8f\x8d\x10\xe5\x65\x63\x17\xb6\xc3\x84\xc0\x7e\xe2\x43\x21\x67\x5c\x0e\xe1\x6a\x81\x5f\xa5\xef\xb9\x1c\x42\x89\x58\xed\x88\xf7\x38\x86\xce\xa6\x3e\xf1\xfe\x3f\x65\xf4\x51\xfd\xa1\x2f\x75\x56\x84\x3c\xe7\xd3\x3b\xf2\x3b\x6d\x09\x8e\x32\x6b\xf3\x9c\x56\x99\x4f\x28\x8b\xe7\x47\x77\xb7\x1d\x37\x27\x54\x17\x72\xc4\x9b\xf3\x6f\x20\xd8\xda\x84\xf6\x45\xf0\xae\x20\x38\x7c\x6e\x5f\xb5\x20\x45\x8a\x70\xdd\x30\x77\xe1\x96\x9e\x9f\x2c\xd4\xc7\x9d\x7b\xc1\x76\x63\x88\x85\x35\x25\xc6\x09\x1c\x11\x9c\x84\x80\xe9\xe5\xae\xce\x69\xc3\x2c\x7c\x91\xaa\xdd\x34\x96\xb9\x9e\x10\x74\xe1\xdb\xf5\xcb\x69\x89\x04\xbb\x99\x01\x53\xfe\x96\x4c\x01\xaf\x94\x96\xd6\x41\x16\x4a\x34\x53\x16\x1e\xac\xf7\x22\xb8\xe9\x87\x78\x6d\xf6\xbb\x48\x48\x3b\x9d\xa3\xe4\x7c\xd0\x99\xb0\xc7\x3a\xe0\x34\xc7\x58\x2e\xe1\xe3\xbd\x73\x15\x66\x63\x99\x84\xa4\xd3\x96\x4c\xac\x7a\x2a\xa1\x9b\xad\xd1\xbd\x33\xd7\x9d\x50\x7e\x50\x47\xd7\x6d\xd8\x8b\x30\xd9\x71\xad\xc8\x0c\x29\x39\x42\xce\x14\x73\x95\x81\xf1\x63\xaa\xf0\xc3\xa1\xe2\x98\x6b\x0a\x04\x69\x09\xf7\xa5\xd3\x85\x0a\x09\x03\xe2\x96\xb2\x5a\x2b\xde\x32\x68\xab\xdc\x74\xe3\x8e\xf4\x18\x83\x35\x99\x21\x4e\x73\x9c\x4f\x32\x30\x52\xdd\x6b\xb1\xab\xaf\x89\x41\x90\xf7\xd9\x2b\x0e\xde\x5e\x84\x49\x9f\x85\x16\x99\x17\xee\x22\xfc\x56\x96\xe3\x5e\xf6\xe2\x2e\x83\xd3\x9b\x9d\x5f\x88\xdb\x5f\x66\xfe\x8d\xb6\x0f\x5f\x7a\xbb\xf2\xa4\x27\x41\x30\xff\xc0\xed\xd7\xdf\x8a\x09\x86\xde\xaf\xc5\xbc\x67\x9d\x27\x88\x3a\x6b\xa8\xbf\xf3\x5c\xcd\xe0\xfc\x76\xff\xdc\xbf\x3b\xa7\x72\x71\x33\x7c\x0f\x37\xe1\x4d\xc1\xe0\x0a\x6e\xc1\xcf\x2c\x4c\xb1\x6b\x5a\xa9\x32\x4f\x94\x50\xde\x60\xbd\xa8\x2a\xeb\x27\x0b\xac\xfb\x1f\x97\x5e\x9c\xbe\x92\xd0\x6a\x18\xc9\xe5\x24\xde\x4a\xf8\xa4\xdc\x55\xb2\x72\x6a\x36\x81\x33\x21\xa4\x5e\xf4\x0a\x43\xf8\x9a\xbf\xe0\xad\x5d\x73\x06\xa1\xdd\xe1\x25\xdf\xdf\x12\xed\x2a\x17\xc1\xa3\xe0\x4e\x68\x67\xe3\x36\x3a\xcf\xef\x4c\x78\x29\x39\x2b\x35\x21\x34\x91\x41\xd1\xd3\xda\xd1\xe6\xd9\x21\x84\x5c\xc1\xc2\x97\xb3\x0a\x6c\x09\x8d\xcf\x0d\x7e\x5c\xa9\x93\x23\xb4\x3a\x45\x8c\x85\x7e\x89\x27\xe8\x7c\xd6\x7b\xca\xc6\x97\xc9\x60\x1b\xe7\xda\x13\x43\xf2\xe5\x04\xbb\x41\x9b\xdb\x09\xab\x7b\x08\xa1\x33\x2f\x84\xff\xc8\x78\x4f\x98\x54\x28\xbe\xc7\x7e\x4f\x3b\x83\x1a\xa9\x97\xae\xbc\xfb\x5e\x13\x82\x82\x3a\x12\x04\x4f\x87\x10\xee\x9c\xde\x7b\xa1\x68\x43\x29\xe1\xdd\xa3\xa1\x3b\x7f\xcb\xf6\xbd\x47\x74\xbd\xdb\x62\x18\x0c\x58\x36\x68\x0a\xad\x1c\x7f\x57\x2e\x79\x3e\x55\xbb\x28\x8f\x70\xeb\xa3\x81\xbc\xcb\x8b\x6c\xc2\x5d\xd9\xb9\x9b\x53\xca\xf3\x08\xd5\x43\xa6\x26\x67\xc7\x0a\x08\x65\x37\x97\xdd\xdb\xb8\x70\x23\x21\xfd\x51\xfa\xce\x37\xe3\x77\xea\xca\xc3\x3b\x64\xb9\x1f\xf9\x12\xb8\x3a\x47\x9f\x6d\x98\x24\x41\x58\x9e\x7f\xeb\x30\x7b\xef\x6e\x06\x01\x9b\x93\xfb\xce\xea\xe9\x8d\x5f\x10\xce\xf3\x8b\x1c\x91\x21\x60\x28\x67\xb2\x42\xc7\x3c\x42\x53\x63\xbb\xb8\xa1\x7e\x14\x61\x85\x8d\xdc\x29\xeb\x6d\xbc\x84\x18\xcf\x8a\x48\x49\xf5\x34\x42\xee\x9d\xba\x7e\xc9\x19\x09\x84\x2d\x33\x53\x5e\xaf\x9c\xe3\x4f\x10\xbe\x3e\x3d\x68\x9b\x54\x3a\xc1\x77\xa9\xac\x7e\x96\xfa\x65\x82\xa9\xa8\xb3\xec\x27\x6f\x47\x42\x67\x5b\xc7\xc6\x0b\x29\x96\x84\x5d\x26\xe9\x33\xd6\x92\x26\x41\x33\x26\x87\x23\x41\x62\x3d\xe1\x64\xfd\xc6\x6b\xe9\x32\xa1\x0c\xbe\x05\x77\xe4\x6e\xb9\xc0\x4f\x70\xd1\x6c\x7e\x39\xd0\x34\x9b\x10\x5b\x75\xd3\x3c\xbb\x71\x17\x03\x8f\xba\x5d\xab\xf2\xa6\x6f\x23\x6c\x9e\xef\xc2\xb5\xad\x55\x9b\x90\x59\x58\x32\xad\xde\x9b\x8f\x20\x2d\xbd\x68\x5e\xca\x47\x59\x82\xcd\x1c\x9e\x1e\x83\xae\x46\x42\xb5\xd1\xf9\x52\x41\xb1\xa7\x84\x41\xbb\x77\xb5\x2a\x26\xdf\x59\xe0\x1f\xd2\x62\xf6\xed\xbb\x41\xff\xd0\x79\xc4\xe3\xd3\xff\x07\x26\xdb\x6a\x1f\xcd\xfb\x63\x49\xe8\xfc\xfe\x6d\x8b\xcf\x8f\xe3\xcc\xbf\xf2\x1f\x1a\x6a\x9e\x38\xc6\x04\x48\x11\xfa\x66\x65\x3e\xd5\x7f\xbd\x7c\x02\x3c\xdf\x49\xd9\x97\xc4\x47\x4c\xc0\x9b\xa1\x3d\x6f\x7c\x9f\xef\x25\x08\x7b\x3b\x67\xab\x3f\xd6\x27\x18\xfc\xde\x71\x7f\x8a\x6d\x19\x21\xb3\x35\xfc\x82\xb7\x5d\x19\x81\x77\xc9\xa5\xbb\x7f\x21\x53\x75\xb2\xa0\x3a\x3b\x67\x42\x91\x4f\x16\x52\x8e\x3f\xb4\x67\x02\x26\x9b\xc9\xb3\x66\x59\x79\x12\x4e\x63\xa7\xaf\xf7\x62\x2f\x42\x9b\x43\x77\xfc\xa8\xae\x2d\xe1\x82\x01\xdf\xc6\xcc\xae\xcd\x84\xbe\xd6\x59\x6e\xe9\x9e\xc1\x04\xda\xb0\xfe\xa6\xb0\x9c\x2f\x61\xe7\xeb\xa5\x29\x39\xf3\xdd\xff\x17\x16\x9a\x15\x16\xa7\xda\x72\x10\x2a\x64\x33\xdf\x54\x70\x9b\x13\x96\x28\x07\xd3\xe3\xe1\x24\x82\xff\x53\xb7\x99\xb2\x0d\x3d\x2c\xf8\x9f\xbc\x6d\xef\xa9\xd2\x3b\x01\xb2\x4b\xe6\x6d\x29\x50\xe5\x24\x24\xf3\xbf\x5b\xf3\x59\xc9\x8c\x60\xc3\x16\xb5\xd0\x8a\xa7\x9c\x70\xd5\x6e\xe3\x26\x76\x94\x10\x4a\x77\xb4\xdd\x95\x38\x90\x43\x28\xda\xbd\x75\xa3\xcf\xf8\xe8\xd5\xa4\x97\xad\x07\x65\x23\x08\xd3\x3f\x5c\x9e\x16\x1d\x73\x9a\x70\x6b\xb2\x15\x5b\xe4\xeb\x63\x84\x92\x75\xe1\xe6\x72\x87\x1a\x09\x56\xc2\xa1\x2f\x7c\xc6\x77\x02\xce\x2e\x71\x70\x76\xfa\xc5\x82\xf5\x57\xd6\xac\x4b\xae\x5c\xff\xca\xcf\xa6\xdb\x8b\xf8\x94\xdf\x14\x43\xab\xec\xd3\xd1\x9d\x07\x36\x12\xfc\x05\x8e\xec\x73\xd2\x2d\x20\xac\xd9\x1b\x12\xb5\xe9\xff\x60\xef\x5c\xa9\xd5\x01\xf9\xa1\x13\x30\xf5\xcb\xd1\xbc\xa4\xb5\xcf\x59\x10\xb5\x48\xfd\x6d\xd0\x1f\x49\x28\x6b\x48\x35\x5f\x12\xad\x40\xb0\x12\x8d\xfd\xb0\xd6\x79\x11\xc1\xe6\xd8\xfa\x43\x29\xe9\x91\x0c\x16\xdf\x1e\x5b\x5b\x37\x27\x9d\xc1\xd7\x34\xa5\xc1\x57\x95\x0a\xe3\xff\xfe\x33\x78\xe6\xe5\x86\x12\x24\xef\x19\x7c\x2d\xfd\x66\x44\x58\xce\xde\xbd\x6e\x7a\x1c\x1b\x21\x7d\xcb\xc2\x9b\xcb\x6a\xd5\x09\x82\x5a\x41\x37\x78\xa2\x97\x10\x2a\x54\xa7\x24\xad\xbb\xfa\x8d\x85\xb4\xc8\x77\x42\x4d\x47\xaf\x30\x10\xe9\x6b\x9b\x94\xf0\xe0\x2a\xc1\x2a\x43\xaf\x64\xfd\xe6\x54\xc2\xa3\xd5\x2b\xad\xa6\x76\x47\x11\x36\x6c\x54\x9c\x62\xfa\xf3\x28\x61\xe5\x61\x57\xe5\xf4\xa0\x0c\x06\x77\xf3\x0f\x2e\x64\xad\xbe\x49\x78\x7c\xa4\xc1\x2c\x70\x49\x31\x21\xe1\x7a\x89\xbf\x5c\x98\x36\x41\xab\xc2\xb4\xc1\xdb\xd2\x9b\xd0\xff\xe3\x79\x31\x67\x9d\x19\xa1\xcd\xa9\x5b\x62\xbf\xd5\x4e\xc2\xb6\x29\x0f\x77\x68\xec\xaf\x62\x81\xdf\xd1\x2e\x7c\x56\xd8\x02\xc2\x2c\x15\x3e\xf6\x6d\x82\x75\x2c\xfc\xaa\x5e\xff\x8d\x83\xe3\x07\x0b\x4f\x06\x85\x2e\x34\xbc\x39\x45\xff\x4a\xf7\x27\xdb\x5e\x3f\xd9\x42\x16\x4c\x8e\x4c\x0a\x75\xba\xe0\x41\x88\x38\x7c\x7a\xe5\xaa\x50\x27\xc2\xd2\xec\x36\xaf\xa9\x32\x76\x84\x66\x3e\xe9\xa5\xd6\x8b\xa4\x08\xbc\xba\x89\xcf\x30\xc8\x41\xc8\xff\xd2\xf0\x84\xed\x84\x16\xc1\xe9\xd5\x65\xe1\x0b\x7e\xd3\x08\xd9\xe2\x63\xef\xe6\x69\x54\x13\x92\x3e\xcc\x39\x78\x7e\xbc\xac\xda\xe0\xb4\xca\xa5\x39\x97\x60\x75\x5c\x57\x66\xf0\xd2\x00\x0b\xdd\x21\xef\xd8\x87\xbb\x5d\x09\x52\x56\x81\x77\x8f\xbf\x15\x27\x88\x7c\x0b\xf5\xf1\xf4\xd8\x44\xe0\x76\xbc\xc5\xbb\xef\xdb\x65\xc2\xc7\x5a\x51\xcf\x51\x77\x6f\x82\x45\x71\xf1\xf9\xfd\x57\xcc\x09\x0f\xa2\xfb\xaf\xa7\x7e\xf5\x22\x3c\x49\x50\xf8\x9d\xd6\x55\x4a\x38\x6b\xd6\xb4\x25\x5d\xc4\x80\x10\x3d\x4d\x80\x2b\x67\xc3\x5a\x82\x73\x55\x6e\x66\xd6\x7a\x6b\xc2\xb0\x94\xa7\x0f\xb8\x94\x08\xce\xec\x8b\xef\xae\x28\x71\x21\x9c\xf9\xde\xb8\x56\x79\x4a\x1e\xc1\x70\x79\xee\xf0\xe6\x0a\x3b\xc2\x43\x89\x64\x7d\x0b\xab\x8b\x0c\xb2\x93\x2c\x1a\xdb\x1e\x95\x31\xf0\x70\x59\xae\xe7\xef\x58\xc9\xe0\x84\xf3\x3a\x3d\x5e\x9b\xe7\x0c\x7e\x6a\x6d\xaf\xfc\xe3\x22\x49\xb8\xb2\x61\x7f\x6d\x93\xce\x64\x42\x69\xfa\xa7\xae\x2d\x9a\x1c\x84\xfa\x38\x51\x1b\x9d\xbd\x9f\x59\x70\x49\x6c\x5c\x3e\x29\x77\x0d\xc1\xe1\xed\xc0\x3a\x3f\x31\x19\xc2\x9d\x8c\xef\xad\x39\x77\x0e\x12\x0c\x23\x7b\x64\xdb\xcf\xa9\x8c\xff\x3a\x9f\xce\x96\xba\x7c\x85\x60\x69\x1d\xa7\xf2\x68\xfc\x6c\xf2\xc7\xa8\x9c\xb5\x70\x5b\x33\x61\xa5\x5c\x83\x93\x7d\x40\x09\xe1\xa4\x52\x99\xaf\x55\x7b\x1f\xe1\xbd\xa6\x7f\x40\x6e\x6e\x36\x83\x5f\x06\xe1\x17\xfc\x5a\x8b\x08\x51\x96\xfc\xb7\xde\x68\x5e\x20\x24\x68\x15\x86\x4a\xdd\x4a\x27\x70\xf0\xe5\x59\x64\xa6\x65\x32\x30\x58\x15\x60\xfc\xe5\x7c\x17\x03\x8d\xcf\xdb\x38\x8a\x4a\x4f\x11\x0e\x4c\xdf\x7c\xbb\x32\x52\x9d\xf0\x28\x84\xb9\xe6\x90\xbc\x84\xb0\xd7\x5f\xea\xe6\xba\x31\x59\x82\x7e\xcd\xc9\x83\x8f\x1e\xd4\x31\x58\xa1\x65\x73\xe5\x87\xce\x75\x42\x6a\xa9\xa4\xc7\xfd\x84\x75\x13\xc0\xb5\x56\xff\xbc\x5d\x51\x73\x31\x3e\x97\x97\xa5\xc9\x35\x6d\x25\x0c\x70\x49\x3a\x5c\x1f\xbf\x44\xf6\x46\xdb\x4b\x5d\xbc\x5c\x4a\x28\x95\xf7\x68\xf1\xb9\x7d\x99\xf9\x57\x84\x27\xcb\x8d\xa4\x8c\x63\xb2\x93\x4a\x87\xe8\xc1\x93\x84\xd8\x43\x2f\x2f\xfd\x61\x4b\x22\x14\xfb\x5a\x77\x88\xaf\xfb\x41\x78\x60\xdb\x33\x3a\x55\xa6\x84\xb0\xbe\xe3\xa2\x7e\xee\x99\x07\x84\x04\x89\x63\xb2\x01\xaa\x59\x84\x9a\x29\x86\xb1\xf9\x57\xee\x11\xd2\x74\x86\xfb\x92\xc7\x77\x4a\x43\xe6\xfa\xfe\xfd\xaf\xa0\x6d\xb6\x6b\xee\x3d\xe4\xae\x24\x84\x85\xdc\xb1\xfb\xb6\xe3\x34\xa1\x67\x5a\xb3\x8e\x24\x1e\x11\x62\xa5\x17\xdc\xde\x25\x1b\x43\x78\x36\x49\x35\xa4\x44\x5f\x9c\xc1\x3a\x4d\xa1\xf0\xef\x6d\x0d\x84\xea\x25\x9f\x56\x68\x46\x9d\x66\xf0\x68\xf1\xfe\xbd\x19\xe6\xdd\x04\xe5\x53\x8f\x16\x56\x89\x75\x10\xa6\x94\x70\x28\xa4\x09\xee\x21\x04\x3f\xcb\xde\x16\xf3\x3a\x85\x50\xd7\x9b\xb3\xb9\xa3\x39\x85\x30\xe5\x64\xc0\x0d\x9b\x03\x29\x04\xde\x51\xaf\x67\xbb\x8a\x52\x08\x96\xca\xd2\x7b\xd3\x55\x2f\x11\x64\xbf\x2e\x12\xaf\xda\xed\x39\xfe\xd0\xba\xf3\x98\xcf\x7e\x98\x85\xdb\xeb\xaf\x67\x4c\xfa\x68\x4e\xa8\x13\xc8\x68\x7b\x3f\x76\x98\x90\xc3\x5d\xe7\x23\x30\x12\x4d\x08\x74\xa0\x8f\x11\x3a\x71\x84\x7b\x83\xec\xb7\x16\x96\x46\x10\x44\x52\x85\xb6\xef\x29\x37\x24\x98\xc5\xdf\xa8\xdb\x30\xa5\x84\x60\xf1\x5d\xf7\xb5\x9f\x9a\x0c\x21\x5b\xc2\x5a\xf5\x8e\xf1\x09\x06\x26\x05\x23\xdf\x93\x3f\x5e\x65\x20\x76\x45\x4e\xe1\xa5\xcb\x79\x42\xdc\xb5\xfa\xb4\x88\x52\x1d\x06\x9b\x99\x64\x1a\x30\x3d\x4a\xb0\x9a\x65\xd3\xdd\xa2\xa1\x47\x88\xb5\x08\x0b\x4c\x7f\x76\x8d\xc0\x6d\x70\x27\x57\x2a\xc8\x89\xd0\x5b\xee\x54\xc0\x32\xd4\x20\x04\xb8\x3b\xc6\xee\xe8\x13\x25\xf0\x99\xbd\x9a\x77\xd1\x6b\x0e\x61\xca\x8f\xa2\xe8\x47\xcf\x83\xe9\xff\xfd\x23\xc3\x41\x04\x15\xbb\xcb\xa5\xbf\x67\x3f\x23\x9c\x64\xeb\x7f\x76\xdc\xf8\x29\xc1\xe6\x5b\x55\x5c\x27\xe7\x33\xc2\x67\xe9\x03\x29\x4d\xec\x39\x04\x9d\x9b\xaa\x3e\x63\x15\xbe\x84\x1b\x6a\xf3\xe7\x1a\x66\xea\x13\x54\xb3\x0e\xb6\xba\x9c\x0a\x26\x64\x85\xf5\xd7\x47\xb4\xd8\x11\xba\x2e\xd4\x6e\x6f\x5a\x79\x98\xc0\x77\xfe\x2b\xfb\xab\x90\x03\x84\x37\x53\x94\x5f\xff\x2d\xe6\x05\xb1\xac\xe7\x92\x4e\x84\xbc\x59\x33\x2e\x26\xea\x2a\x13\x2e\x75\x67\x35\xbe\x33\x97\x24\xd4\x65\x4c\x9d\x52\x7e\x2e\x98\xe0\xf2\x35\xff\x6c\x40\xd7\xf8\x51\x7d\x38\xb9\x8a\x2b\x96\x9f\x60\xbe\xcf\xa4\xf1\xa4\x7b\x39\xc1\x3e\x86\xcd\xe3\xe6\xa8\x31\xe1\x7c\xdc\xf5\x65\xa9\xb3\xd4\x08\xce\x61\x27\xdc\x2a\xaf\x14\x33\x98\x8c\x35\x91\x3c\xb7\xef\x10\x0a\x39\x4f\xde\xd4\x4c\x7a\xcc\x60\x2c\x61\x9d\xb4\xd6\xbd\x04\xc2\xfc\xe3\xb5\xe2\xca\x85\x67\x08\x2a\xf3\x53\x1f\xbe\xd0\x74\x26\x04\xa4\xb1\x1b\x2e\x2d\x32\x24\x38\xb8\x95\xfa\x39\xbe\x10\x20\xdc\x5d\x20\xd5\x92\x2c\x68\x46\x30\x94\x97\xf1\x33\x6e\x39\x45\x38\x2c\xe8\xd9\x7c\x5b\x75\x2d\x41\xff\x32\x97\xe5\xe5\x8a\xcf\x2c\x94\x6e\x5c\xae\xce\x35\x3c\xfe\x33\x4f\x9f\x9e\xa1\x7d\x4e\x6d\x02\x5c\x67\x84\x2b\xbc\x6d\xe9\x29\x46\xf4\x91\x0f\x1b\xae\x0c\x44\x12\xcc\x2e\x99\xf4\x58\x35\xf4\xb1\xc0\xe5\xd9\xbc\x4c\x56\xfa\x01\x83\x63\x06\xe6\x22\xab\x92\xa3\x08\xee\x56\x0b\xc7\xb2\xea\xf3\x18\xd4\xc4\x29\xf5\xcd\x16\xf3\x24\xd8\x4c\x39\xff\x78\x81\x99\x3f\xa1\x3b\x27\xd6\xff\x88\x60\x18\xa1\x67\xdd\x7e\xeb\x5b\xe3\x37\xaa\x67\xd9\x6c\x3b\x6f\xa8\x3e\x27\xd8\x25\x97\xe8\xde\xd8\x52\x43\x98\x72\xc7\xce\x87\xcb\xa8\x9e\x81\x7f\xd0\x88\x66\xc2\x40\x1a\xe1\x95\xe7\x9b\x24\xdb\xd7\x4f\x19\xd8\x98\x7f\x79\x6b\x22\xd1\x41\x78\xfb\x62\xf3\xe8\xb1\xe5\x8d\x04\xbf\x5a\x8f\xb3\xcd\xbb\xa2\x09\x63\x2a\x57\x4f\x2f\x69\x3f\x45\x88\x49\xd4\xf0\xa8\x57\x3c\xc1\x40\xf8\xac\x51\xc9\x6f\xd9\x53\x84\x33\x43\x5a\x77\x39\x63\xa3\x09\x0f\x07\xed\xba\xa2\x15\x4a\x09\xef\x6d\xde\x1b\x7d\xce\xe2\x21\x70\xfe\x90\x7c\xd8\xb8\x3c\x89\xb0\x61\xbf\xfd\x93\xf3\xee\xeb\x09\x0b\x83\x4e\xbb\x96\xac\x90\x26\xe8\x45\x0c\x8f\x36\xf6\xef\x20\xac\xf4\xd9\x64\x26\x9f\x66\x4d\x30\xc8\xdb\xdc\x9b\xb9\x52\x9d\xd0\x33\xeb\xdd\x95\x5c\x55\x1e\x82\xc4\x4d\xde\xf7\x2b\x39\x72\x09\x9d\x3d\x87\xee\x4c\xff\xbd\x87\xb0\xc9\xc6\x52\x78\xbe\xbb\x2c\xa1\xf2\x5d\xb2\x4a\xe5\xb5\xeb\x0c\x36\x84\xf3\xb5\xa4\xc8\x56\xd3\xcf\x8a\xc6\x4d\xa5\x12\x7b\x18\x88\x2d\x6e\xe7\xb7\xae\xb8\xcb\x80\xbf\x57\x30\xd5\xa5\xf2\xda\xff\xc2\x3a\x6f\xcf\xc2\xd9\xba\x6b\x08\x07\xbc\xa6\xf7\x19\x2c\xb7\x24\xe4\x6c\x64\xcd\x7d\x29\xbd\x86\x60\x50\x26\x78\x35\xc8\xa5\x9c\x41\xa5\xef\x89\x81\x83\xe3\xf8\xaf\x1c\xdf\xc9\xf5\xaa\xfb\xa0\x2b\x41\x79\xcc\x25\x27\x9f\x76\x30\x90\xd9\x17\x7b\xe1\xce\xe1\xc5\x84\xe3\x9b\xa7\xac\x10\xbf\xe1\x3d\x01\xd2\x5f\x44\x42\x1f\x9a\x3b\x12\x16\x9f\x2b\x49\x10\xe3\x4c\x20\xbc\x7a\xcb\xac\xac\x71\x16\x26\x38\xaa\x14\x2d\xf8\xaa\x24\x41\xb8\x12\xa9\xcb\x9e\x32\xf7\x13\x0b\x01\x2f\xf7\x64\x2b\xf3\xba\x12\x74\x74\xaf\x7c\x4e\x2b\x73\x23\x98\x2f\xab\xf1\x1a\x79\xbc\x82\x90\x38\xd5\x57\xed\xeb\x6d\x11\xc2\x51\xde\x0c\xee\xb7\xc5\x7a\x84\x37\xfd\x63\x3f\xbc\xe2\x96\x12\x1e\xe7\x3b\x04\xf1\xc9\x4f\x27\xd4\x7e\xf3\xbc\xd0\xa5\x60\x43\xe8\x69\x2e\x31\xec\x5b\xaa\x47\xa8\xd0\xdc\x3e\x27\xc8\xf0\x38\x83\xe3\x6c\x2d\x53\x9b\x9e\xdf\x22\xb8\x77\x2f\xf1\x3c\xfe\x56\x81\x90\xfb\xca\xf4\xc5\xd3\xf0\xa5\x84\x7d\xc9\x7d\xbf\x05\x68\x98\x05\xf7\xab\x31\x47\x95\xe3\xdb\x27\x60\x6e\x89\x4f\xc6\xd0\xc6\x8b\x84\xd5\x06\x5a\x62\x7d\x73\x3e\xb0\xc0\x4f\xa6\x4f\xb6\xfb\x46\x12\x4c\x44\x6d\x1c\x46\xc6\x1f\x09\x69\xeb\x5d\x03\xb9\xbc\x34\x08\xd5\xd2\x96\x5f\x4b\x5f\xf5\xb2\x20\x2f\x3b\x89\x6f\x8e\xb2\x35\xe1\x99\xcf\x92\xd3\x79\x06\xdb\x26\xe0\xbf\xd1\x06\x8e\x4d\xda\xa7\xae\x4f\x25\x84\xce\xc8\xb4\x30\x1a\x0c\x27\x08\xd4\x7f\xf8\xd9\x61\x22\x3a\x61\x94\xe5\xa1\x3b\xb8\x5a\xb6\xbd\x18\xfd\x0b\xbc\x1c\xfd\x29\x8e\x20\xcc\xe5\x73\x7c\xb6\xfc\x59\x82\x64\xb3\x4a\x43\x94\x92\x14\xa1\xf7\xcc\x9c\xc1\xfe\x03\x5c\xff\x0b\x35\x4e\x93\x94\xb7\xcc\x1a\x60\xfd\x0f\x6c\x69\xfb\x14\xab\x3f\xdf\x8b\x05\x23\xf1\x25\x61\xfc\x36\x59\x84\xdb\x31\x23\x33\xbe\x17\x6d\x26\x34\x9a\x51\x85\xf1\x2d\x07\xc2\xad\xc5\x5b\x38\x6e\x9f\x91\x21\xe8\x3f\x96\x98\xe6\xe5\xbf\x80\x90\xac\x1a\x5a\x78\xb5\xd8\x84\xb0\xfe\xd8\xee\xdb\xab\x9c\xea\x08\xde\xaa\x24\xd2\x2c\x96\x35\x01\x73\xbe\x4b\x73\xfe\x45\xd5\x2c\x76\x89\x0b\xac\xd4\x09\xb8\xbc\x97\xc7\x21\x73\x41\x34\x41\xfc\x0c\x23\x7b\x40\xea\x3a\xe1\xe6\xce\xdf\x0e\x79\x05\x3b\x08\x39\xc9\x93\x14\x56\xdb\xd6\x10\x78\xb4\x4e\xea\xbe\x1e\x4a\x25\x18\x07\x4f\x69\x76\x32\x3b\x42\x08\x97\x7b\x73\x2d\x23\xe4\x1a\xe1\xe0\xac\xc6\x17\x32\xfd\xd1\x04\xce\x05\xf2\xd9\x67\xe7\xe5\x10\x6e\xae\x88\x08\x99\xdb\x16\x45\xd0\x6f\x3b\xff\x96\x53\xcf\x8e\x10\xc5\x99\xba\x56\xb6\x84\x8f\xe0\xd1\x92\xe7\xba\x72\xe9\x2c\x42\x60\xbe\xce\x7e\x2d\x9d\x9b\x84\xaf\x33\x2b\xde\x0a\xea\xde\x24\x8c\xde\x13\xc4\x8d\x35\x2f\x08\xb7\x36\xf7\x16\x88\x8d\x97\xff\x30\xf7\x67\xa9\x56\x50\x89\x29\xc1\x5a\xb7\xc9\x7a\x9a\x88\x06\x61\xb5\x5c\xd7\xab\x31\x76\x8b\x09\xe0\x3a\x2e\x5a\x2f\xd8\xec\x4f\xa8\xe9\x3d\xe6\x56\xef\x2a\x43\xb8\xc8\x2c\xb6\xaa\x3b\x15\x41\xb8\xeb\xbf\x6d\xab\xa6\xe6\x19\xc2\x81\xa8\xdb\xb3\x66\xe5\x1c\x20\x88\x8a\x2c\xcc\xac\xa9\x91\x23\x54\x7b\xcd\x38\x11\x1b\xa1\x4d\x70\xd7\x17\x49\xec\xed\xc9\x23\x28\x6e\x4c\x70\xb4\xfa\x50\x4d\xf8\x79\x2c\x5a\x2f\x26\xe8\x11\x03\xa9\x1d\xce\xb3\x7f\x29\x7d\x20\x48\x49\xec\x9f\x7b\xc3\x26\x9f\x10\xe3\xad\x3d\xc8\x11\x71\x9a\xf0\xfa\xd8\xba\xdc\x82\x33\xe5\x0c\xe2\x72\x06\xb5\x8d\xd3\x96\x12\x94\x62\x2c\x8c\xfd\x18\x3d\x42\xf9\xd2\x7d\xa4\x14\xbd\x67\x42\xb1\xe0\x3d\x3b\xa3\xdc\x35\x9a\xe0\x10\xc4\x43\xaa\x43\xd1\x13\x4a\xa8\xe1\x9b\x4d\x7d\xbc\x7e\x84\xd3\x6a\x37\x0a\xd4\xad\xcc\x08\x77\xe3\x9e\x0a\x69\xf0\xf9\x11\x22\xea\xd7\xa8\xda\xfe\x72\x25\x1c\xec\x12\x69\x6a\x72\xbd\x48\x30\x88\x67\xff\xe5\xbb\x58\x97\x10\x1b\xaa\xdc\x6e\xa6\x92\x43\xa8\xda\x74\xaf\xb7\x3c\x25\x91\x20\x98\xc4\xab\x71\x2e\xfd\x04\xc1\x2c\xb7\x6a\xb2\xcb\x62\x4f\x42\xc5\x99\x99\x89\x1c\x02\xa6\x84\x1d\x7b\xf6\xbe\x7e\xb1\x68\x07\x83\x40\xfe\xac\xee\x2f\xb7\x54\x09\x7a\x1c\x51\x11\x03\x93\xe7\x11\xfa\x72\x72\x7d\xd9\x0c\xad\x08\x69\xeb\xbe\xcc\x7f\xc9\xb9\x8e\x60\x1e\xbc\x35\x47\x76\x89\x23\xc1\xfc\x7b\x43\x95\xb1\xd5\xf1\x09\x98\x19\x16\xa3\xa0\xf9\x2e\x9a\xd0\x70\xc7\x79\xd0\x2e\x6f\x12\x21\xb0\x42\xfa\xa6\xa9\xe8\x86\x09\xd8\x12\x30\x36\x77\xdf\xc5\xb9\x84\xdb\xc2\x53\x6f\x1a\xb5\xf3\x13\xf6\xd7\xe5\x1f\x36\xea\xd6\x9e\x00\x63\x25\xb1\x79\xac\x55\xdf\x59\xb8\x67\x6f\xdd\x35\x23\x5b\x91\x30\x7b\x2c\xb1\x3e\x61\x58\x8f\xb0\xe7\xe3\x3a\xcf\xa6\x11\x81\x09\x58\x68\x37\xcd\x7b\x63\xf2\x25\x06\x24\x92\x99\xe7\xb2\x9b\x8d\xb0\xb7\xa1\x29\x51\xf1\x6c\x2e\x41\x4a\x51\x59\xed\x73\x58\x2e\x21\x6a\x90\xbb\xc6\x78\xe4\x13\x61\x44\x48\xc5\xbe\xf0\x5c\x2e\x41\xa0\x9d\x4b\x7b\xc1\xf3\x8b\x84\xa7\x85\xc1\xc5\x65\x19\x02\x84\xe9\xfa\xdb\xdc\xde\x5c\x90\x27\x3c\x10\x5e\x78\xa7\xa4\x48\x94\xb0\x63\xa3\x1a\xbb\x8c\xb8\x22\xe1\x5e\x8a\x79\xf7\xc6\x6b\x6a\x84\x56\x97\xf6\x1b\x0b\xbd\x5c\x09\x5f\x94\x6e\x5d\x4e\x35\x10\x27\x34\x3f\x13\x3c\x92\x54\xa7\x32\xbe\xc3\xde\xf9\x48\xcf\x83\xe0\xfe\x68\xf2\xf9\xba\x49\xfe\x84\xd6\xb2\x2d\x15\x3b\xe4\xb5\x08\xfe\xf7\x2c\x76\x9e\x54\xd1\x20\xf0\x16\x65\xcf\xd0\x21\x13\xc2\xd3\xd4\xa3\xa7\x3a\x4c\x1d\x08\x62\xc2\x16\xc5\x1b\xce\xb8\x10\x7e\x94\x9a\x9b\x54\x5e\x13\x25\xc4\x6b\x4e\x8b\xe4\x6d\xbb\x45\x10\x92\x3d\x72\x83\x39\xa6\x47\x58\xf6\x6d\xb9\x31\x87\x0d\x37\xc1\x22\x40\x83\x37\x53\xac\x94\x50\x76\xa7\x47\x65\x63\x99\x3a\xa1\xff\x79\xce\xee\x8a\xf7\x46\x84\xec\x6a\xdf\x75\x9a\x1c\x96\x84\x43\x02\x9e\xef\x1f\x6a\x71\x12\x4c\x27\x9d\x9f\xb7\xf9\xe4\x65\x06\x82\x63\x83\x7b\x54\xc1\x4e\x18\xbe\x1a\xa1\xf9\x5d\x8c\x93\xf0\xe7\xce\x0a\x65\x9d\xd7\x4a\x84\x9a\x45\x09\x93\x97\x4e\xf3\x20\x48\xfe\xf0\xfa\x20\xda\xea\x4c\xe0\x6e\xfc\x71\x91\x8b\xc7\x8c\xd0\x72\xdd\x3a\x54\x31\x63\x3f\x41\x60\xeb\xc7\x15\x35\xc6\xde\x13\x0a\x2b\xa0\x6b\x63\x7a\xd1\x05\x82\x80\xc1\x4c\xcf\xf7\x03\x3e\x84\xc7\xfb\x07\x6b\xb8\xe2\xc5\x08\x1c\xa3\xa3\x1f\xec\x27\x73\x13\xba\x8c\xfc\xde\x2a\xc6\x16\x11\x8a\xed\x2b\x9e\x7f\x09\xd7\x21\xf8\x2f\xbb\x7b\xa3\xb3\x43\x9e\x50\xa0\xd2\x75\x76\xc5\xaf\x4e\x42\xc2\xda\xa2\xab\x0d\x16\x85\x84\xd2\x46\xf1\xe3\xd2\x99\x8f\x09\xf7\x0e\xad\xd9\x2b\x91\xf5\x90\x41\xa2\x60\xa5\x7c\xa9\xfd\x63\x42\xd4\xa5\x3d\x99\x2d\x29\xc9\x04\xd5\x56\x69\x85\x8b\xe6\xa7\x09\xbd\x41\x33\x92\x1d\x3f\xe6\x31\xd8\x12\xdc\xf4\x56\xce\x6b\x3d\xc1\xf9\xf2\xa4\xcc\x1d\x83\x3e\x84\x47\x17\xa8\xd0\x67\x7e\x36\xf3\x73\x55\x9e\xe5\xf6\x7c\x35\x82\x8a\xc0\x14\xd9\xcc\x93\xeb\x09\xc1\xfc\x9b\x55\x3d\x8f\x9d\x24\xc4\x0b\xee\x9f\x2d\xce\xb2\x20\x20\xf0\xd1\x28\xdb\x72\x53\xc2\xe1\xcf\xbd\x97\x3a\x9c\x04\x09\xfe\xee\x3c\x27\x42\x02\x89\xf0\xf4\x59\xbc\xc3\x68\x4f\x02\x61\xba\xce\xee\x95\x7f\x61\xd7\xe8\xb4\xf2\x58\xe6\x2e\x82\xf0\x1c\x96\x52\xc7\xb1\x33\x04\x19\x8b\xd6\x35\xd7\x97\x24\x11\x92\x9d\x94\xb2\x4e\x64\x9d\x21\x1c\x5a\x3d\xaf\x6d\x46\x66\x38\xe1\x83\x8a\xec\xc5\x7e\xe9\xa5\x84\xa7\xbc\x55\x0a\xf6\xb3\xb2\x19\xcc\xe9\x54\x2c\x4e\xbc\x2f\x4a\x58\x50\xc6\xb1\x26\x69\x4e\x1c\xc1\xae\x3a\x78\x9b\x42\xa0\x03\xa1\xb9\x6d\x4a\xfd\xcb\xb6\x2c\x42\x08\xab\xff\xd0\xaf\x8c\x32\xc2\x0c\x2d\x7b\xdd\x2b\xc7\xbf\x12\x4e\x6c\x5b\x6e\xd8\x75\xa0\x8c\xe0\x1b\xb8\x26\x49\x22\xbf\x98\x70\xc0\x26\x99\x8b\x6d\xd8\x82\xf0\x6b\x6d\xe2\xb7\x96\x35\x76\x84\xd0\xd0\xd6\xa9\xc2\x3c\x31\x13\x46\xa6\x7b\xcf\xbf\xc8\x22\x39\x82\xa0\x6f\x45\x78\xc9\x24\x0d\xc2\x26\xa3\xa3\xd6\x3b\x04\xc2\x08\xcc\x36\xf7\xd1\x3f\x25\x0e\x04\x9e\x77\x1e\xeb\x9e\x98\x10\x41\xe9\xc9\xe9\x47\xd2\xc1\x07\x18\x44\x73\xf5\xfd\x98\xfc\xaa\x94\xd0\xe6\x2d\x2a\xfd\xc6\xb7\x98\x30\x72\xed\x67\x76\x55\x73\x28\x61\x46\x96\xe5\xa4\xef\x99\x7e\x04\x7f\xe5\xc1\xfb\x5b\x45\x24\x09\x12\x33\x9c\x79\xcb\xa2\xb2\x09\x76\xc8\xf8\x21\x5e\x6e\x4d\x10\xdb\xfe\x9c\x4b\xfe\x7b\x1c\x03\x2d\xa5\x76\xdb\x69\x96\x8e\x84\x00\xf3\x17\x85\x17\xaf\x79\x31\x78\xfd\x45\x51\xfd\x7d\xef\x06\xfa\x07\xb7\x79\x8f\x1d\x2d\xab\xde\x17\xc3\x45\x4f\xaa\xd0\x3e\xb8\x89\x50\x95\x7e\xa3\x92\xf7\x7e\x06\xc1\x8c\x3f\xec\x91\xc8\xf9\x26\xc2\x46\xed\xdb\xb7\x5c\x83\xd2\x09\xc6\x33\x7d\x0d\xf0\xf1\x01\xe1\x61\x7c\xd1\x3b\xe1\xea\x56\x82\xcc\xe3\x72\x8b\x92\xd6\x6d\x84\x5f\x97\x26\x47\x19\x48\x76\x10\xb8\xf7\xb6\x73\xf7\x3e\x38\x48\x78\xab\xbe\x5b\xfd\x18\x25\x11\x3a\x14\x8f\xa7\xfe\xf9\x25\x43\xf8\x18\xa8\xff\x68\x56\x4f\x07\x83\xef\x2f\xf5\xca\x1b\x9c\x5e\x11\xd8\x6f\x49\x3c\x56\x58\x5d\x31\x01\xb2\x3f\x52\x35\xff\x2c\xef\x27\xe8\xdd\x4f\xcd\x9b\x7e\xa7\x91\xe0\x3e\xa5\x5b\xe3\xd8\xb7\x72\x82\x8a\xf4\xab\x99\xf1\x7c\x6f\x19\x6c\x9b\x74\xb0\xe7\xc7\xee\x76\x82\x46\xc1\x69\xf1\xbf\x9f\xd2\x35\x6c\xfc\x59\xf3\xbc\x89\x81\x53\x67\xf3\x9f\x2f\x3d\x65\x04\x45\xcd\xd6\xa5\xf2\xdd\x65\x84\xdf\x57\xb9\x6a\x46\xbe\x15\x12\x7a\x03\x77\xe7\xb1\xcf\x7e\xc2\x20\xe3\xa6\x9b\x38\x3e\x55\x10\xbc\xb2\x13\xae\x7c\x1e\x5f\x4e\x7c\xe3\xb5\xbd\x60\x7d\x28\x61\xd9\xbb\xfb\x69\x37\xda\x4e\x10\x76\x72\x5c\xbd\xce\xfe\x6c\x0d\xa1\xf7\xae\xb9\xae\x38\x8b\x9f\xf0\xad\xfb\xba\x50\xde\x6a\x51\x82\xec\x31\xc6\xe8\xcc\x3a\x5e\x82\xdf\x7d\x8d\xb9\x53\xf9\x65\x27\xc0\xd1\x2b\xb8\x43\xaf\x76\x16\xe1\xfe\xe6\xb8\x97\x4a\x3f\xc4\x09\xd9\x93\x5c\xf2\xc5\x4b\xdd\x08\xde\x6a\xcc\x63\xcf\xdd\x65\x0c\xb6\x72\xf1\xa6\x2e\x4b\x7f\xca\x20\xb6\x2c\xed\xce\x50\xa8\x36\xfd\x83\x02\x77\x11\xf7\xf4\xe9\xe3\x6f\xec\xf3\xfc\xfb\x38\x9b\xbc\x09\x97\xdc\x13\x0f\x2c\xdf\x6d\x4d\x48\xe5\xde\x18\xa1\xf3\xb9\x99\x41\xae\x76\xf4\xaa\x2d\x81\x87\xc6\xbf\xbd\x55\x87\x04\x9f\x3e\x64\x30\xc7\xd8\x22\x65\x07\xfb\x34\xc2\xa9\x29\x41\x05\x9c\x52\xcf\x08\xad\xfb\x9f\x0b\xcb\x3c\x2b\x24\x74\xee\x8e\x08\x66\xeb\x6e\x24\x70\xcb\x2d\x5b\xfb\x59\xa2\x82\xa0\x74\x3e\x56\xa4\x77\xa9\x1f\xc1\x60\xfb\x8b\xdb\x6a\x4f\x17\x13\x3e\x6b\x2d\x30\x7a\xbc\xc3\x69\x02\x9e\xf0\x87\x0d\xf3\xac\x4c\x24\xac\x0e\x09\x4c\xfb\x26\x6f\x4a\x10\xf8\x3e\x14\xd9\xf2\xdd\x80\xa0\x9f\x3b\xff\xd2\x8a\x4f\x0e\x84\x55\x19\xba\x25\xd3\xda\x97\x11\xa6\x6a\xe9\x16\x76\x6a\x9a\x11\x76\xc8\xec\x9d\x53\x2f\x56\x31\x01\x93\x6c\x5d\xeb\x2d\xb6\x15\x12\xd6\xcb\xdd\x0a\x7d\x9e\xf0\x9a\xf0\xa6\xaf\x55\xdd\x73\x7b\x0e\x83\xa9\xdd\x0e\xc3\x75\xe3\x3b\x61\xcb\x12\x3e\xce\xe0\x2b\x21\xf8\xe6\xef\xb1\xdd\xc7\x5d\x42\xd8\x5d\xc3\x15\x15\x2e\x5a\x42\x28\x7e\xe5\x91\xf8\xad\x8d\x21\x30\xe7\x76\x17\xff\xdd\x19\x9b\xe4\x50\xc3\x26\x15\x47\x50\x30\x3b\x71\x71\xca\x8c\x52\xc2\x75\x9f\x73\x6d\xbf\x23\xf3\x18\xb8\xac\xfe\xf4\xf6\xa5\xf1\x7d\x06\x46\x1f\x7e\x95\x1d\x72\xd3\x63\x30\xc4\x7f\x7b\x95\xeb\xd4\x52\x82\x9a\x64\x3e\xf2\x6a\x15\x09\x8a\x05\xdc\xc7\xfc\x6d\x4a\x18\xac\xe0\xb5\x6f\x9f\x7b\xcb\x9b\xf0\x29\x49\x42\x39\x4e\x3f\x86\x30\x58\x71\x70\xff\xcf\x27\xe2\x04\xe1\xd3\x89\xbd\xfb\xae\xed\x25\xac\x9c\xde\xb5\x58\xcd\x4a\x8d\x60\x2a\xed\x9e\x23\x2f\xb3\x9d\x50\xb5\x9c\xe7\x89\xd3\xbd\x87\x04\x3f\xdd\xb8\x61\x6d\xa3\xbd\x84\x23\xd2\xbb\xf3\x6b\xbe\x6c\x24\x7c\x58\xbb\xeb\xc7\xab\xfd\x07\x09\x3d\x61\x93\xbd\x66\xc4\xdf\x26\x7c\x11\x8b\x99\xb6\xfd\xea\x69\x02\xfb\x9f\xfd\x9f\xd4\xbb\x53\x09\x27\x78\x9b\x79\x4d\xb5\x1a\x08\xaf\xf6\x2d\x3a\x68\x5a\x55\x41\xb0\xcb\x3a\xb3\x50\x52\xba\x82\xb0\xf7\x35\xcb\xe7\x94\x64\x06\x83\x4c\xd7\x99\xbc\x61\x54\xca\xe0\xf2\x4f\xb9\xab\xbf\xa3\xcb\x08\x67\xf6\x1f\x0f\x09\x9e\x53\x4d\xf8\xd3\xae\xee\xd7\xb9\xa5\x9c\x20\x7f\x9b\xeb\x72\xa0\x44\x1d\xe1\xb2\xa4\x80\xbe\xe1\x8b\x32\xc2\x77\x8d\xc3\x6b\xd6\xbf\xaf\x65\x90\xac\x5c\xb6\xb5\x38\x39\x9a\x20\x57\xba\x39\xca\x77\xb8\x98\xb0\xc7\xfd\x99\xf0\xc0\xca\x8a\x09\x88\x75\x1e\x2c\x48\x39\x91\x47\xa0\xb3\xb1\x2d\x5f\xc6\xcb\x61\x23\x9e\xbe\x16\xaf\x52\xc2\x86\x9f\xd7\xbe\xbc\xb5\x2a\x9a\x00\xd5\xab\xbb\x82\x8f\xa1\x63\x42\x31\xfd\x59\xdb\xda\xe8\xa3\x4d\x18\x8c\xe1\x33\x2b\x18\xbf\xc1\xbc\x4a\x2b\xdc\x16\x68\x23\x42\x78\xd1\x93\x7f\x77\xee\x6a\x13\xc2\x0a\x4f\xe1\xac\xa3\xd5\x26\xe3\x6f\x75\xa3\x7e\x5f\xbb\x63\x84\xd5\x7a\xe6\x97\xb2\x03\x35\x09\x0e\xf4\xf2\xee\xb6\x9e\x35\x04\xcd\x1b\x91\xbf\xe4\x7e\xcc\x26\x64\xfc\x5e\x2e\xa1\xe8\x7e\x89\x90\x7f\x31\xf2\x42\xf3\xee\x48\x82\x67\xe5\x6d\xf6\xf7\x89\x01\x84\x1d\x51\xd9\xbd\xaa\x8e\x5e\x84\x8a\x20\xce\x5a\xf3\xf6\xc5\x84\x67\x75\x4f\xaf\x8a\xfa\x7e\x61\xc1\x31\xf8\x5e\xa2\x6c\xae\x2d\x41\xbb\x56\x90\x29\x9c\xbb\x9d\xd0\xb7\xc1\xcb\xab\x44\xa0\x93\xf0\xae\xf9\x8b\x5c\x57\xac\x18\x41\x69\xcd\xad\x4f\xbf\x53\x54\x09\xbf\x8d\xc5\x4f\x9e\x98\x67\x4e\x38\xc8\xb2\xcf\xdb\xb3\x7d\x3e\xe1\x4f\xfa\xed\xa6\x14\xf9\x6f\x2c\x6c\x76\x1f\xf1\xb5\xbc\x11\xc2\xc0\xf6\xc7\x85\x9e\x6d\x8b\xa4\x08\x97\xee\x16\xd7\x0e\x2d\xf3\x27\xdc\x6d\xb0\x96\x67\x24\x87\x58\xb8\xf9\x51\x69\xc7\x1e\x57\x5f\xc2\x32\xeb\xcf\x33\x67\x1f\x0c\x20\x2c\x54\x19\x28\x1f\xe6\x35\x20\xf0\x8c\x5c\x8b\xb9\xdd\x7a\x9f\x70\xbf\x45\xb6\xd4\x5a\xf9\x01\x21\xa5\x50\xe7\x3a\xfb\xee\x02\x42\x90\xf6\x17\x31\xcb\xc9\x57\x08\x03\xfe\x11\x95\x62\x3c\x2b\x08\x9f\x42\x6f\x3d\xb0\xdb\x20\x4b\xe8\xfd\x33\xa2\xf6\x2e\x62\x15\x21\xa7\x78\x7f\x1f\x87\x95\x04\x41\x68\x71\xa2\x76\x9d\x9c\x05\x21\x8e\x67\xcb\x89\x1f\xf7\x89\xf0\x5c\xda\x2e\x75\x6a\x12\x3f\xa1\x63\xad\x39\xd7\x9c\xcd\xdc\x04\xdd\x27\xb9\x07\x6e\xfa\xc8\x12\xca\x77\x2d\x9a\x95\x33\xca\x4e\x48\x18\xf1\x79\x33\xd3\x64\x16\x21\x27\x62\xc3\xa5\x85\x5d\x53\x09\x3f\x42\x5a\xeb\x1f\xb8\x96\x11\xc2\x8a\x4e\x04\x16\x05\x5b\x11\x3e\xa5\xf3\xe7\xcd\x13\xdc\x4e\x58\x21\x2f\x79\x34\xd6\xb5\x90\xf0\xe1\xeb\xd8\xf2\x33\xe3\xa8\x16\x57\x08\x4c\xb9\xe9\x42\xd0\xd9\xb1\x84\x5b\xdd\x26\x97\x70\x69\x9e\x68\x6a\xf9\x1d\x4b\x82\x00\xbf\xd2\xf5\xfc\xca\x32\x06\x93\xc4\x35\x79\x8a\xcf\xba\x31\x08\x1c\xba\xc1\x71\x60\x59\x03\x83\x9d\xfe\x07\xa2\x4d\xf4\xd3\x08\x39\xf3\x25\x93\x3e\xcf\xbb\x4c\xe0\xf7\xf8\xb8\xa3\x2a\xf4\x2a\x61\x85\x60\x82\xab\x48\xe3\x2b\x42\xd0\x5c\x47\x39\xcd\xea\xc3\x04\xf5\xd7\xab\x8a\x3f\x18\xca\x10\xfc\xef\x3c\xcc\xbd\xa4\xd0\xca\x40\x66\x6e\x4b\x25\xdb\xd6\x04\x42\x41\x57\xc2\x99\xf9\x7f\x9f\x48\xf7\x95\xaf\xea\x3f\x29\x65\x10\xf8\xd1\x52\x6d\xa3\x53\x35\x21\x73\x6f\xaa\xfd\x76\x91\xfb\x84\x98\x43\xf2\xfc\x9a\x46\x79\x84\xc9\x7d\x47\xc5\xaf\xb0\x65\x11\x64\xe4\x36\xb2\x7f\x9c\x5f\x41\xf0\x9f\x71\xa9\xfa\xeb\x38\xca\x7d\xc2\xb1\x27\xc6\x84\xe0\xa4\x7a\x34\xb0\xbc\xd9\x98\xf0\x2c\xee\xe0\xa7\xea\x65\x93\x09\x75\x8d\xf9\xb1\x72\x8b\xbc\x08\x6e\x17\x0d\x64\x12\x85\xca\x09\xed\xd6\xc9\xa6\xd6\x47\x9e\x32\x58\x9e\xe0\x56\x32\xf0\xa9\x81\xc1\x15\x8d\x18\xe7\xcf\xc3\x49\x0c\x14\xe3\x9a\xe7\x8e\x7d\x8a\x24\x3c\x76\xb8\x3c\xd8\x73\xda\x99\x30\xf2\xe6\x7e\xd0\x6e\x1d\x5e\x82\xae\x89\xfa\x94\xcf\x8f\xec\x09\xad\x91\x82\x3f\x47\x2f\xe5\x30\xe0\x6e\xdf\x29\xf7\xb7\x3c\x6e\xf9\xd5\x52\xba\x48\x89\xd0\x6e\x22\x98\xac\x95\xee\x4a\x28\x68\xb3\xfd\x63\x5c\xcd\x4b\xa8\x48\x28\xe4\xd8\x59\x92\xcd\xc0\x8f\xf5\xe5\xcd\x2b\x9d\x76\x02\x96\x5e\x2b\x93\x94\xcc\x20\x60\x59\x1e\xb7\x6c\x67\x3e\xe1\xf9\x40\xf7\xc9\xbc\x9f\xef\x09\x69\xbd\xbf\xee\xb5\xdc\x7c\x47\x58\xc1\xbf\xbf\x65\x4f\x54\x26\x83\xc3\xab\x9a\xfe\x94\x48\x7e\x25\x5c\x99\xcd\xf9\x7d\xf9\xae\x61\x42\x88\xb6\xc9\xfa\x05\x1c\x8f\x08\x96\xa7\x3e\x24\xcd\x53\xfa\x4a\xb8\x79\xa5\x6a\xf6\x9f\x85\xef\x08\xeb\x3b\x6e\x8f\x96\x5d\x8f\x27\xec\xa9\x8d\x99\x6c\xd9\x7f\x85\xf0\xea\xea\x49\xe3\xf3\x69\x2f\x19\xdc\x29\xbf\xea\x72\x66\xd6\x5e\x06\xc1\x2f\x5b\xf9\x03\xda\x6f\x31\xe8\x4b\x15\x57\x20\xdb\x73\x04\xb1\x47\x03\xcd\xb9\x6b\xec\x09\x73\xd8\x06\xdf\xf5\x9c\xd0\x25\x0c\x3c\xe0\xfa\xb5\x76\x9a\x0b\xc1\xf8\x7c\xf5\x40\xcb\xd4\x4d\x84\xae\x98\xa9\x55\x2b\xbe\x6c\xa7\x9f\x0d\x73\xc4\x0b\x22\xa4\x09\x74\x71\xd5\xc1\x02\x8d\x9b\x84\xa5\xdf\xa3\x78\x57\xa6\xb5\xb0\x60\x5c\x5d\xbc\xe5\x75\x4a\x01\xc1\xf1\x0b\xe7\x4a\xf9\xf3\x45\x04\x2b\xbb\xcc\x00\xcb\xdb\xfe\xcc\xbf\xf2\xe8\xf3\xb3\x9c\x49\x27\x1e\x13\x72\xf6\xf6\xde\xf0\x9d\x15\x4f\xe0\xea\xce\xbc\x3f\x40\xc5\x84\x2d\x9e\x4f\x76\xa7\xda\x0e\x12\x4a\x84\xcc\x23\x03\xa2\x1e\x13\x56\xa9\x05\xd5\xf0\xfd\xce\x25\xf0\x70\xb5\x28\xde\x19\xf5\x9c\x80\x1d\x6a\x07\x7e\xeb\x84\xcf\x27\xbc\xda\x2e\xbf\x60\xb3\x6f\x30\x61\x41\xc1\x68\xdc\xc8\x80\x1c\xc1\x99\xb3\xbf\x3e\x72\x46\x32\xe1\xd4\xd4\xcf\x66\x66\xfa\xf6\x84\xed\x51\x05\x03\x63\x93\x13\x27\x94\xff\xd0\xd5\x9e\xfd\xf8\x88\xfe\x6a\x42\xdf\x46\xa3\x30\x93\xe7\x3d\x2c\xf0\x3c\x12\x16\xef\x37\x0e\xa5\x7f\x78\x3f\xc9\x47\x75\x6c\x91\x03\x61\x4d\x68\xdf\xc1\x5e\x07\x0e\x82\x90\xb0\xc0\xa1\xa8\x1b\x39\x84\x19\xcf\x84\x7b\x56\x8e\x1e\x98\x80\xae\x9d\xed\x1e\x85\x86\xf6\x04\xe9\x68\x1f\x95\x3d\x8f\x3f\xb1\x10\x5f\xfc\x7c\xb8\x2e\x60\x84\xa0\x78\x47\xa7\xc7\xbf\xc1\x84\xd0\xfa\x34\xee\xcc\xbd\x65\x5f\x08\xc3\x36\xcf\x44\xdf\x9d\x1e\x24\x0c\x7e\xff\x25\xe5\x62\xff\x94\x60\x35\xd9\xde\xe2\x8b\x50\x3a\x41\x46\xb2\xda\x8d\x6f\x41\x39\x41\xd8\x5b\xf1\x6e\x8c\x9e\x01\xa1\x4a\x5f\x67\xfb\xee\x76\x25\xc2\x09\xdb\xcd\x59\x27\xf9\x3c\x09\x3e\x55\xa6\x3a\xe1\x17\x2d\x09\x43\x6f\xf2\xd5\x73\x25\x62\x09\x16\xdc\xbf\x67\x86\xf6\x1b\x11\x4c\x76\x8e\x75\x1f\x3d\xc2\x46\x10\x10\x8d\xba\xf3\x4e\x59\x94\x20\xbf\x29\xb5\x50\xee\xeb\x35\xc2\x16\xad\x7d\x0e\x27\xe6\xa4\x12\x9c\x3f\xc5\xd5\x68\x55\xe6\x11\x34\x0e\x39\x05\xb3\x0b\xe6\x13\x22\xa7\xe4\x4e\x5b\x29\x69\x4b\x48\xda\xb5\x47\xbf\xe4\xd6\x12\xfa\x39\x57\xbf\x7d\x49\xc7\x2d\x42\xf5\x79\xef\xd9\x4b\xc7\x31\x7d\xb5\x78\xa5\x49\x45\x3c\xf3\xaf\x48\xcb\x09\x74\x3d\x8f\x74\x26\x6c\xdf\xd4\x26\xe2\x36\xdf\x6c\x42\xf9\x0f\x9f\xfd\xde\xcb\xb4\x2c\x53\x26\x7c\xbd\x9d\xf2\x6e\xaf\x9a\x0c\xc1\x3a\x9b\x6b\x73\x91\xbd\xc3\xff\x82\x47\xee\x42\xff\x91\x14\x7b\x42\x61\x9f\xf7\xe7\xf3\xe5\x1d\x2c\x8c\x38\x99\x7d\x66\x8d\xa9\x13\x72\x0f\xfc\x0e\x5a\xfb\xad\x9b\xd0\xc6\xff\x49\x56\xbb\x3d\x8b\x70\xc9\x53\x3a\xd3\x67\xcd\x35\x42\xee\xd9\xa3\xd2\xeb\xa8\x86\x30\x7b\x67\xe2\xea\x38\xb7\x97\x0c\xf6\x35\x34\x0b\xfc\xdd\x69\x56\xa8\xad\x72\x9c\xe2\x4d\xb0\x57\xce\x74\xf3\xbd\x14\x47\xa8\x5c\xf6\x34\xf1\xe4\x1d\x13\x42\xa7\xa4\x66\x68\x50\xfb\x0a\x82\xc8\x0e\xf9\x3d\x2b\xb2\xfc\x08\xba\x01\xd5\x77\x37\xcc\xdf\x4e\x38\x93\x72\x42\x7a\x9a\xd8\x0c\x82\xeb\x7e\xd1\xd5\x1f\x84\x0d\x09\x9c\x82\x42\x7a\xf6\xf7\xc2\x19\x5c\xf1\xfe\x53\xe1\x34\xfe\x66\x3a\xb9\xc8\xfb\xf5\x1e\xd7\xaf\x04\x95\x5f\xec\xdf\xcd\xc7\x8b\x93\xf6\x7a\x1e\xbf\x72\x07\x42\x9b\x63\xe8\x9a\xae\xb5\x61\x84\x0f\x1c\x7e\xca\xdf\xa4\x9a\x19\x7c\xd6\x9a\xba\x40\x6d\xd6\x45\xc2\x8c\x4f\x16\xf2\x93\xa6\xed\x22\x0c\x97\xc9\xbd\x50\xb8\x40\x84\xc6\xc5\xd7\x63\x10\xbc\x9f\xc0\xd9\xdb\xc4\x6a\xe9\x2a\x21\x1c\xff\xf0\x86\x3d\x7f\x77\x35\x41\x46\x81\x2d\x6b\x68\x7c\xd4\xb5\x4f\xd1\x5b\xfd\x9c\x03\xa1\x33\xfa\xda\x8f\xba\x18\x67\xc2\xe2\xfc\xe5\x8d\x52\xd6\x51\x04\xcf\x56\xef\xc7\xe7\x56\x34\x12\x42\xbf\x08\x05\xb6\x29\x35\x13\x38\x5e\x3c\x7f\x32\xa2\x5a\x4d\x18\x31\xbd\x79\xec\x92\xdb\x7e\xc2\x1e\x8f\x1e\xab\x22\xaf\x72\x06\x8a\x5e\xdf\xae\xeb\x73\xd9\x11\xae\x73\x3f\xe5\x31\x2e\xd2\x27\x24\xbc\x4c\xb8\xff\x45\x34\x8d\x41\xaf\xc0\x86\x93\x2f\x1d\x24\x09\x97\xf4\x44\x86\x84\xdd\x4e\x10\xee\x38\x56\xe8\xcb\x25\x2f\x21\xac\x7c\x13\x7d\xbb\xb4\x5e\x87\x90\x64\x31\x96\x7b\xf9\x90\x03\xe1\xb9\xdf\xf4\xc3\xb9\x77\xcd\x09\xe7\xae\x2c\x7d\x76\xce\xfc\x35\x21\x4a\xb1\x5d\x2a\x7b\xbc\xdc\xda\x54\xe1\xa7\x57\x66\x46\x98\xd1\x50\x72\xad\xa1\x6e\x25\xa1\x66\xa1\x51\xca\xc1\x42\x51\x42\x72\x7d\x78\xb0\xf8\x2e\x3e\xc2\xec\x58\x3b\x1d\x0d\x1e\x6f\xc2\x4c\xc3\xf3\x3f\x9e\x0c\xa6\x13\x9e\x3c\x91\x2e\x8a\x52\xdc\x4e\xe8\xe9\x71\x7b\x17\xd0\x21\x45\x90\xd7\xd8\x27\xc6\xbb\x38\x8b\xb0\x63\xc9\xca\x52\x6f\xaf\xab\x0c\x22\x9f\x5e\x7e\x5c\x6a\x68\x42\x90\x5f\x38\x79\xe6\x3b\x93\x61\x16\x8a\x8f\xee\xe0\xd7\x1f\x5c\x4a\x58\x1f\x95\xbd\xcc\x6c\x1a\x1f\xe1\x8c\xcc\xe6\xa5\x6a\x45\x82\x84\x43\xf3\x4d\xce\xcb\x37\x48\x13\xcc\xaf\x0e\x69\x78\x49\x88\x11\x76\xad\xda\x92\xa5\x27\x9e\x49\x98\x27\x72\xf6\xeb\x8e\x28\x67\x42\x7a\xea\xac\x7b\xd7\x05\x1c\x09\x43\x31\x39\x2f\x8e\xbc\x39\xc0\xc0\xdc\x3c\xe8\xab\xda\x85\x48\x82\xe9\x14\x0f\xe9\x0d\x35\x79\x04\xf3\x5b\x49\x85\x5b\x27\x6f\x24\x9c\xd9\x7d\x47\x5b\x55\x77\x07\xa1\xc3\x3d\xaf\x6d\x56\x8a\x39\xa1\xe5\x9e\xc6\xec\x3a\x75\x9a\x00\x64\x5a\x94\x9c\x3f\x5e\x5d\x8c\x81\x87\x6b\x6a\x06\xfc\x57\x12\xf2\x78\xdc\x13\xbf\x9d\x77\x20\x94\x8b\x06\x4c\xa9\xde\x75\x98\xb0\x2e\x43\x67\xa5\x75\xa5\x26\xa1\x5d\x4a\xe3\x64\x3e\xbf\x17\xa1\xfa\x77\x41\xc5\xde\x06\x31\x82\xcd\x65\x93\x16\xd6\xe3\x45\x84\x1b\x51\x56\xb7\x8c\x13\x3b\x09\xde\xfa\xc9\x23\xfd\x69\x9c\x84\xc1\x2e\x95\x33\x92\x5d\x8b\x09\x06\x8e\x52\xa6\xa9\x53\x74\x09\x7f\xba\xe5\x25\x9e\x18\xca\x12\x7c\xab\x2d\xca\x3a\x3c\x16\x12\xba\x36\x74\xea\xd4\xf4\x05\x13\x76\x68\xaf\xfd\x69\x93\x6d\x41\x48\xf8\x6e\xc0\xbd\x79\xfb\x45\x42\x8f\x75\xf9\x4f\x8b\x5d\x57\x08\x95\x55\xe1\x56\x7f\x4b\x98\xee\xeb\x90\xb4\xa1\xc7\x04\x65\xd1\x99\x31\x39\x2f\xe2\x09\xd2\x43\xe9\x3d\xa1\x3e\x57\x09\x55\x71\xcf\xfb\x1d\xdf\xb8\x12\x3a\x5e\x6c\xd1\x56\x9d\x26\x42\x70\x69\x1d\x32\x31\x2b\xd9\x42\xb0\xfb\x73\x34\x6e\xef\x07\x3d\x42\x8b\xc4\x72\x63\x79\xdb\x30\x06\x6b\x8f\x8f\xd4\x73\xd5\xbb\x11\x66\xb9\x76\xb6\x7f\xb8\xe6\x4e\xf8\x6a\x37\xf9\xf8\x5a\x7b\x3f\x02\xbb\x78\xf4\xcd\x2e\x53\x6d\x82\xab\x45\x9b\x90\xe5\xd2\xe5\x84\xa5\xe1\x35\x5d\x52\xb9\xd9\x04\x04\x98\xbe\x57\x88\xd4\x24\x28\x84\x28\x6b\x5a\xaf\xbe\x44\x08\x0a\x2e\x78\x7f\x6a\x97\x0d\x61\xd1\x0f\x01\xed\x77\x75\x3b\x08\x8d\x5f\x5d\x2c\xce\x84\xa7\x32\xf8\x13\xa0\xa6\x60\x2b\x14\x41\xb8\x32\xc7\x41\xee\x9d\xd0\x24\xc2\x50\x7b\xec\xcf\xf0\xca\x21\x16\x5c\xde\xde\xfb\x31\x7f\x39\x17\xa1\xca\xf5\x9e\xf2\xb0\xac\x1a\xfd\x2b\x7d\x5f\xd3\x6c\x67\x2f\x1b\x65\xc1\x63\x6b\x61\xd1\xbe\x25\x2b\x18\x6c\x15\x71\xd4\x13\xd5\x33\x27\x88\x70\x9c\x7e\xb1\xd5\x61\x1f\xc1\x48\xe7\x5d\xd5\x17\xa5\x18\xc2\xd8\x74\xe3\x65\xdc\x8e\x5a\x04\xee\x35\x7c\xa5\x2b\xb5\xf5\x27\x94\x98\xa5\x37\xf7\x78\xcd\xd7\x20\x24\xee\xcb\xea\xce\x2e\xb7\x25\x64\x9b\xf2\x04\xc7\x8f\x6a\x4e\x18\xfd\x87\x3e\xa7\xa2\xc9\xef\x6d\x39\x08\xbc\x22\xd3\xfb\xb9\xe7\xfc\x64\x61\x9e\x8c\xfd\x5e\x95\x4e\x5d\xc2\xe5\x79\x5b\x1b\xa3\x56\x05\x32\x30\x35\x0a\x2e\xd5\x7c\xb2\x9a\x60\xfb\x2a\xa1\x92\x6d\xd4\x94\x90\xef\xac\x2f\x17\x99\x25\x4f\x38\xb5\x93\xff\x43\x9d\x70\x2f\x0b\xc1\xa7\xf7\x79\xf0\x65\x68\x13\x3e\x98\xa0\xff\xd9\xb7\xad\x84\xc2\xe4\xb3\x2f\xb9\x9b\x55\x09\x31\x8b\xb6\x0c\x7d\x5f\xa2\x49\x98\xbd\xfd\x96\x53\xcf\x7c\x4e\x82\xf6\xa2\x74\x1d\x51\xfe\x85\x84\x9a\xe4\x90\xe4\xf7\x6c\x29\x84\x4d\x4e\x25\x6b\x9f\x08\xee\x27\x14\x4d\x8f\x63\xf3\x8e\xfb\xc1\xc2\x8d\x7d\xda\xf3\xe5\xbb\x8a\x08\x3b\x36\xde\x3b\xbc\xc1\x2c\x84\x10\xf9\xee\xde\x15\x81\x92\x94\x7f\xe5\x67\x6a\xb5\x97\xcc\xe7\x1e\x82\x9c\xf0\xb7\xd6\x97\xfa\xe1\x84\x93\xda\xc2\x56\x25\xdd\x79\x04\x56\xc1\xcf\xad\xcf\x37\xc6\x11\xfc\xbe\x24\xee\x58\x53\xd9\x48\x50\x3f\x54\x11\xff\x17\x43\xb7\xce\xab\xcd\x1d\xca\x25\x74\x38\x7a\x9b\xa5\x70\x45\x13\x76\xb7\xdd\xca\xb8\x9a\xf0\x98\x70\xbd\xf5\x82\x8b\x7a\x53\x29\x41\xe9\x07\x9b\xad\x6b\xb0\x34\xc1\x23\x28\xf6\xd9\x08\xaf\x3f\x03\x35\x4a\xfe\xde\x26\x1c\xc3\xe0\x51\x58\x79\xa7\xa9\x61\x1e\x21\x8f\x49\x97\xf6\x3f\xc4\x47\x58\xdb\x27\x91\xba\x8e\x5f\x89\xa0\x12\xfc\xa2\x75\x73\x42\x1e\x41\x45\xd6\x5a\xf1\xd2\xe7\x17\x0c\x1e\x2d\x4b\x63\x22\x7e\x7e\x25\x04\xaf\x10\x16\xb3\x18\x1f\xad\x53\xd6\x76\x08\x1f\xff\xd4\x7f\xb8\xf8\xbc\xe0\xcd\xaa\xf6\x4c\x82\x1f\xc7\x31\x77\x11\xe6\xca\x84\x92\x3b\xd5\x3d\xca\xb6\x36\x95\x90\x50\xbe\x38\xa8\x72\x9b\x21\x41\x4b\x7a\xfe\x9d\x08\xe5\x7a\xc2\xbe\x82\xd9\x7f\xbe\x3b\xc4\x31\xc8\x3f\x57\x41\x02\x7b\xf2\x09\x3d\xbe\x63\x45\xdb\xd3\x14\x09\x0e\x6f\x66\x70\x3d\x75\x2a\x26\xcc\x1e\xfe\xf4\x4b\xce\x71\x39\x21\x50\x78\xc4\x78\xff\xd9\x12\x82\xeb\x02\xee\x86\xcb\xab\x87\x59\x58\x96\x11\x27\xf8\xaa\xad\x81\x05\x81\xa9\x6a\xd6\x82\x11\xdf\x8b\xb1\xc9\xea\xbe\x56\xf4\xf6\x70\x42\x2b\xf7\x85\xd7\x41\x1a\xe6\x84\xf2\x03\x7e\x11\x51\x0b\x92\x19\x3c\xfd\xfa\xb3\x31\x49\xdb\x82\x90\x2f\x12\xc5\x6c\xdb\x24\x4f\xd0\x5d\x7b\x2f\xe1\xb7\xc5\x6e\x42\x6d\xc6\xc7\xc8\x1c\x37\x73\x82\x4c\xe9\xa3\x79\x9c\x7a\xdb\x19\x68\xbf\x9d\xae\xd1\xba\xf2\x30\xc1\x59\xeb\x76\xd2\x49\xeb\xfd\x04\x0d\xf9\x87\xd2\xa7\x7c\x63\x09\xc7\x78\x3d\x23\xe2\x87\x6d\x08\xcd\x35\x57\x07\x78\x47\x34\x09\x7c\x45\xe7\x5d\xb6\x9e\xf4\x27\xe4\x25\xb6\x5e\xfe\xad\xb1\x9c\x90\x7f\xab\xaf\x2e\xe3\xea\x7c\xc2\xfb\x57\xdf\xa3\xce\x35\x72\x10\x24\xe3\xe7\xf8\xe4\x44\x1f\x67\x20\xd3\x82\x86\x2d\x75\x8a\x04\x99\xbc\x8e\x69\x39\x6f\x75\x08\x27\x9e\x58\xff\xde\x71\xfc\xe8\x04\xbc\xef\x72\xe6\xac\xaf\xbe\xc2\xa0\x2a\x59\x34\xc3\xda\xd3\x89\x50\x69\x2e\xf0\x2a\xfe\x51\x3a\x21\xe8\x4d\xd0\xf7\x8b\x0e\xef\x09\x73\x9b\x12\x67\x57\xc4\x7c\x25\x74\xfd\x10\x13\x98\xcf\xdb\x4f\x68\x0e\x95\x58\xce\x71\xfc\x2d\x21\x64\x57\x93\xc8\x86\xc1\xbd\x84\xec\xc9\x86\x9a\xd9\x05\x9e\xf4\x93\xe7\xda\x9c\x5f\x47\xf2\x09\x8b\x24\x2d\x2b\x4e\x9e\x0c\x26\xa8\xb1\xf1\x37\xbe\x0f\xf0\x25\x7c\xe2\x30\x3e\xc7\x1d\xea\x41\xb8\x58\xca\xff\xe5\x00\xdb\x1d\x42\x96\xa5\x75\xbb\xb0\x6d\x34\xc1\xc3\xed\xe3\x40\xe6\xda\x36\xc2\x77\x76\x27\xe1\xdd\x1e\x07\x09\x06\x49\x93\x18\x79\x99\x7b\x84\xe0\x99\xcd\xd1\x7f\xa1\xed\xda\x8d\xc7\x42\xb7\x09\x2b\xef\x3e\x5e\xfd\xf0\x74\x31\x41\x6b\x51\xfb\xdc\x95\x6e\xc5\x04\xe9\xa4\xad\x49\x43\x52\xc5\x84\x69\x5a\x7b\x7a\x63\x4e\x14\x13\x7e\x6a\x7d\x73\xf9\xbb\x73\xab\xb7\xba\xe6\xf0\x49\x37\x02\xdf\xfd\xc7\x17\x9f\xb0\xdb\x11\xe4\xac\xf8\x72\xce\xbf\xdf\x42\x18\x3b\xcc\x5f\x34\xd2\x91\x40\x60\xe7\xb0\xea\xa9\x17\x58\x4d\xa8\x18\xf9\x68\xda\x9a\x12\x48\x08\x56\x1c\xfe\x2c\xf8\x32\x82\xc0\x0a\xf5\x50\x12\x4f\xb1\x25\x08\x5f\x1d\x5d\xd7\x32\x79\x39\x61\x4d\x96\x7c\xc6\xd4\x5d\xb1\x0c\x24\x8a\x37\x9d\x68\xa9\xdf\x4d\x58\xf2\x6b\x4f\x67\xe9\xf8\xa1\x27\x88\xef\x46\x76\xc8\xe6\x00\xc2\xa6\x8c\x2b\x52\x03\xef\xd7\x4c\x80\x5b\x67\x70\xdf\xbe\xc0\x5d\x84\xa6\x0f\xbf\xd4\x33\x45\x35\x09\x4b\x0c\xb3\xdb\x97\x3a\x5b\xd3\xcf\xa1\x5c\x1b\x85\xa8\x68\xc2\x20\x73\x6f\xfe\x9b\x07\xee\x0c\x92\x2f\x1a\x0d\x4e\xce\x8e\x20\x9c\xe0\x6f\xe4\x4c\x8f\xab\x26\xfc\x58\x23\x58\xc1\xf7\x36\x82\xd0\x69\x9d\xbe\xc6\x7d\xb3\x01\xa1\xa3\x47\x6c\xd7\xc3\x36\x6e\xc2\x0c\x4e\xeb\x85\xb3\xd7\xba\x10\x96\x0e\xf4\x58\x3f\xda\x98\x4d\x50\x9a\xad\xc7\xb5\xcf\xe3\x22\x81\x29\x2f\xb2\x7a\xa7\x10\x4d\x58\xd2\x31\x76\xba\xe5\xcc\x19\xc2\x0d\x8e\x74\x99\xce\xd0\x43\x04\x61\xb7\xfe\xb0\x32\xfd\x27\x2c\xa8\x6d\x18\xad\x57\xfc\xbc\x79\x42\x99\x34\x63\x59\x3e\xcb\x66\x03\xc1\x24\xb1\xe1\x82\x0a\xff\x16\x82\x6c\xfd\xf9\xb7\xfd\xee\x37\x18\x0c\x89\x5f\xf5\x3e\x76\xcb\x99\xa0\xb4\xff\x4f\xe8\xdf\x1d\x8f\x33\x0f\xa2\x66\xee\x5c\x40\xa8\xf2\x0e\x79\x31\x68\xcc\x4f\x98\x53\x29\x68\x71\x21\xe8\x08\x21\x7e\x72\xde\xf9\x23\x7f\x34\x09\x9c\x3b\xae\xfd\x09\xbd\xbb\x9d\x20\x79\x83\x7f\x90\xff\xd8\x2f\x16\x14\x39\xbe\x4a\x1a\x08\x6e\x21\x3c\x0b\x8c\xcb\x75\x36\x91\x21\x24\x0d\xe6\x3e\x17\xb0\x31\x21\xf4\x7e\x1e\x9e\x66\xd2\xfa\xa4\x18\xb7\xdb\x97\x1d\xe4\x5c\x6d\x41\x48\x37\x79\x6e\xfa\x2b\xdd\x85\xfe\x95\xff\xb0\xd6\xf0\x86\x48\x52\x40\x47\x31\x6c\x15\xb4\x5d\x03\xa5\x1c\x09\xca\xc7\xa7\x27\x7b\x5e\xb0\x27\x3c\xf8\x93\xb8\x69\x4a\x9f\x3a\xa1\xdb\xf2\xc2\xbc\x23\xc9\x07\x08\x07\x8f\x57\x66\xbe\xd3\x15\x20\x0c\x25\x2d\x9b\xf1\xf1\x21\x3b\x61\xc7\x7a\xb3\x43\x9f\x3c\x79\x09\xbb\xb5\x3e\xe1\xe3\x45\x09\x82\x12\x6f\x94\xdd\xaa\x9d\x15\x04\xcd\xe8\xe3\xfb\xeb\xdd\x0f\x10\xf6\x86\x66\x7a\x7f\xf8\xb6\x83\x60\xbc\xe7\xf8\x3a\xe3\xad\x6d\x04\xc5\x77\x9b\x1c\x5c\x4d\x9b\x09\x15\x7d\x72\xda\x2f\x5b\xd3\x08\xdc\x39\x67\x1c\x38\x7f\x67\x10\x8e\x7f\xb4\x0b\x5e\xb9\xcf\x96\x10\x2c\xea\x3b\x57\xd1\xdd\x76\x42\x31\x57\xb8\x28\x36\xdb\x4e\x81\x30\x0f\x16\xf1\xfb\xda\x96\x12\x3c\xb2\x1c\x54\x42\xed\x54\x08\xa6\x5c\xec\x9d\xd7\xcf\x6f\x22\xd4\x6e\xa9\xd5\xba\x65\x34\x93\x70\x8f\xff\xc5\xba\xd4\x03\x6b\x08\xdb\x95\xe3\x82\xaa\xe6\xe9\x10\x0e\xdc\x10\x1f\x16\x5e\x20\x44\x10\xae\x2c\xb0\x7a\x75\x68\x80\x05\xb5\xb5\x59\xbd\xd6\x97\x54\x09\xf7\x7f\x36\xd8\x6f\xbc\x78\x92\xc1\xc6\xa0\x01\x8f\x6d\x7a\xa5\xe3\x27\x6d\x8f\xc3\x82\xee\x05\x84\x4a\x17\x47\x09\x43\x9b\x74\x06\x02\x59\x33\xf4\x66\xee\xed\x60\xa0\x5c\x3e\xc9\xb7\x33\xe9\x1e\xe1\x94\x61\xf7\xfe\xc1\x5d\xf1\x0c\x22\x46\x97\x6d\xb8\xef\x97\x48\xe0\xc8\x5b\xb2\x4f\x8e\x2f\x9c\x20\xbc\xf1\x50\x41\xe9\xa4\x53\x84\x53\x9f\x82\x0e\xdc\x7c\x12\x43\xf8\xc5\xd7\x27\x78\xf1\xb0\x2e\x21\xab\x78\x7e\x77\xec\x8e\x25\x04\x0d\xee\xc0\xea\x1b\x1c\x52\x84\x76\x3d\x9f\x87\x5b\x27\x73\x11\x0e\x78\x99\x69\x16\x3c\x8e\x21\x08\x3d\x6c\xca\xcf\x1f\xc7\xfd\x8b\x43\xdb\xdf\x77\x45\x13\xd4\x5f\xec\x8f\xd1\x95\xf9\xc3\xc2\x33\xce\xf3\xe7\xec\x67\xc9\x11\xf8\xc4\xcd\x34\x9a\x43\x37\x10\x56\x04\xdc\xf7\x32\xde\x72\x81\xa0\xf0\x27\x78\x44\xd9\x76\xf7\xff\x82\x40\x85\x61\x59\xa6\x94\x01\x41\x96\xea\x8c\x93\xba\x32\x09\x12\x9d\x9b\x2e\xf1\xcf\xf5\x64\xb0\xf6\x92\xc5\xa9\xe5\x33\x45\x09\x8b\x05\xd2\xec\x4d\xc4\xc5\x08\xad\x7d\xd7\x75\x64\x75\x1c\x09\xee\x1c\x65\x61\xaf\x53\xe3\x08\x7a\x57\x5a\x54\x6d\xbe\x66\x13\x7e\x31\xbf\x02\x2f\xe4\xdb\x12\xca\x46\xb7\x76\x2e\x99\x3d\x85\x50\xc5\xff\xff\xf0\xf5\xe7\xc1\x58\xfe\xff\xff\xff\xdf\xa6\x55\xa9\xac\xa5\x24\x24\x2a\xa2\xec\x74\xde\x43\x48\x5a\xec\x51\xb6\xa2\xac\x15\x29\xb2\x84\x48\x48\x92\x25\x5b\xd6\xec\x42\x64\x2b\xdb\x61\x6b\x41\x91\x22\x42\xa1\x7d\x5f\x44\xdd\x68\xfb\x8d\xe7\x1f\x9f\xfc\xe6\xfb\x9a\xf7\x7f\x97\xb9\xde\x8e\x31\x63\x4e\xe7\x71\x3e\x8e\x19\xc3\xe8\x8b\x87\xec\x13\x8f\x89\x9e\xdb\xe7\x5d\xba\xbd\x8f\x10\x7b\xf2\xb4\xf6\xf7\x98\x63\x84\xd3\xf3\xd4\x6e\xcd\x56\xd6\x25\xfc\x1d\xb8\x7f\xa5\x63\xa7\x2a\xe1\x56\xa0\xfc\x1c\x9d\xe8\x55\x84\x23\x12\x02\x3d\x43\xab\xa6\x12\x6e\x79\xbb\xfc\x30\x5c\xb4\x92\x90\x1d\xf3\x23\x30\x2e\x7e\x39\xa1\x51\x2e\xc5\x7c\x7b\xb7\x37\xc1\x8c\x63\x41\x1d\xaf\xe6\x49\x82\x4a\xe8\xdb\x8e\xac\xaa\x14\x02\x49\x8a\x68\x6d\x16\x54\x22\xdc\xab\x28\xe0\x4a\x7d\x9e\x4f\xd0\x5c\xb7\xaa\xe6\x15\x7b\x10\x81\x9b\xb5\x22\x5b\xfb\x40\x25\xe1\x84\x8e\xf2\xb0\xb6\x6e\x01\x83\x3f\x6d\xe1\xf3\xa4\x1f\xa6\x13\x96\x9d\x08\x3c\x20\x69\x28\x4f\xc8\x5e\xd2\x70\x26\x58\x9a\x93\x10\xf8\xb3\xcd\x20\xfe\xbc\x3e\xa1\xe9\xe9\xfa\x04\x9b\x74\x39\x42\x9d\x6c\x8e\x7e\xd1\x68\xe6\x24\xa8\x3b\x3e\x1e\x9d\x17\x57\x4c\x50\x16\x6d\x37\x53\x68\x1b\x66\xe1\xc2\x28\x57\xdf\xbc\xa7\xaa\x84\xfa\x14\x93\x98\xc8\x83\xff\xfd\x65\xa1\x11\x18\x06\x19\x12\x7e\xb5\x7b\xdf\xd7\xfd\x2c\x3d\x71\x60\xab\xd2\xdc\x61\x26\x49\xd8\xef\x91\xea\xbd\x4e\x70\x17\xc1\xe2\xc9\x43\xd9\xce\xd9\x7a\x84\x95\x8b\xf8\x37\x78\x76\x8c\xb2\xa0\xf5\xa4\xd3\x99\x67\xf8\x38\x21\x9e\x5d\xc5\xa7\x70\x55\x1d\x03\xf7\xa5\x2f\x47\xff\x1e\x3c\x4d\x38\x39\xdc\xf1\xc6\xd6\x7c\x3d\xe1\xeb\x5f\x79\x65\x4f\x8c\xb0\x60\x64\xfd\xf3\x97\xd2\xcf\x2c\x06\x1b\x8f\x88\x56\x4f\xf9\x60\x45\x30\x95\xb8\x5b\x7a\x53\x60\x07\x61\x94\x4f\xc7\xf5\xb8\xed\x2d\xc2\x33\xae\xef\x3f\x6e\x4d\x94\xfa\x83\x67\xb3\xe3\x23\x7e\xb1\x70\xf7\xc8\x9c\x25\x62\x2a\x73\x08\x1b\x95\x2e\x3f\xe2\x90\x78\xc9\xc2\x4e\x56\x8b\x78\x67\xfb\x3b\x82\xd6\x03\xf9\xa7\xf4\xba\x9b\xa0\xb3\xd1\xba\x69\xc1\xcc\x24\xc2\x7c\x93\x43\xb5\xcf\x6f\x1a\x10\x92\x43\x73\x7d\x5b\xa6\x19\x13\x82\x75\x4c\x97\x37\x10\x0f\xe1\x7b\xd5\x0b\x61\x26\xca\x8e\xb0\x50\x73\xec\xc9\xac\xe6\x90\xff\x13\xc4\x53\x98\x70\x78\x8b\xc1\xff\x42\xfe\x42\xb6\x0e\x51\xf7\x36\x16\xbe\xaf\x59\x7d\x16\x4d\x5b\x08\x7c\x1f\xc6\xb6\x95\x0d\xc5\x10\x96\xd7\xae\xe6\xe6\x13\xaa\xa7\xb1\xcb\x5a\x9f\xb6\xf1\x77\x11\x9a\x9c\x7b\xda\x7a\x56\xd4\x13\x0e\x4c\xa9\x3d\xc7\x23\x54\x4f\x38\x37\xf3\xa6\x4b\xcb\x9b\x28\x42\x3d\x7b\xd3\xb6\x8a\x4b\x2a\x84\x45\xe1\x7b\x77\xb3\x36\x5a\x10\x22\xbe\x19\x17\xae\x6e\xf3\x9b\x54\xaa\x6e\xc8\xca\xda\x3c\x97\x23\x7c\x5c\x5f\xa0\x5b\x6f\xe4\x44\x98\x59\x5e\x2d\x75\x6f\x84\x26\x4d\xc2\x0e\x3f\x0e\x28\x5c\xf7\x62\xc0\xcb\xf6\x24\xfd\x5c\xca\x4f\x16\xba\xfa\x7b\x9d\x04\xea\x72\x09\x3a\x91\x07\xcf\xaa\xbf\xfd\x46\x38\x37\xec\x5f\x1a\xdb\x9e\x4b\x18\x5b\x11\xd8\xe6\x97\xb4\x8e\xe0\x7d\xf8\x85\x35\x77\x79\x06\x0b\x37\xe9\x0f\x7b\x98\x9f\x12\xfd\x83\xa3\x90\xe6\xf6\xd9\x1a\x66\x2c\xb4\x89\x3c\xd9\x10\xac\x6d\x4c\xc8\xd2\xbc\x71\x40\xff\x80\x20\x61\x4b\x70\xf1\xa1\x6b\x22\xbb\x09\x9b\x9e\xc7\xe7\x67\xd4\xe7\x12\x7c\x8e\x45\x6f\xd9\x37\xf7\xcc\xff\x82\xbd\xd5\xd3\x29\x4c\xa7\x10\x61\xd5\x26\xd6\xe1\x95\x32\x0c\x03\x89\xe7\x0d\x87\x3b\xba\x1c\x09\x06\x09\x8d\x92\x1f\x73\x2f\x11\xb6\xb5\x04\x54\x54\x73\x5d\x22\x44\xb7\xa6\xea\x1e\x90\x9d\x47\x88\x14\xb9\xcb\x26\xdd\x95\x4b\x10\xec\x7f\x79\x2f\xa6\xd5\x9f\xd0\x6f\x30\x74\x48\x20\xcd\x95\xf0\xed\x7c\x4b\x5f\x51\x4c\x1e\xe1\xd8\x06\x05\xc5\x30\x8f\x4a\xc2\xcc\x07\x49\x6d\xf3\xb8\xda\x09\x76\x86\x7d\x1a\x6b\x5e\xdf\x21\x7c\x79\x2e\x67\x1d\x3e\x31\x29\xb6\x1e\xeb\x3f\x73\xca\x9a\xa0\x77\xf6\xb7\x44\xb9\xde\x51\x42\xe7\xd9\xc7\xd6\xe5\xd3\x9c\x09\xf9\x01\x3b\x7e\x9e\x56\x4e\x9b\x74\xcd\x75\x5b\x27\x9e\x65\x1b\x62\x26\xe1\xb4\xa9\x78\x51\xd0\xce\x6b\x84\xf9\x5b\x39\xac\x3e\x5c\x67\x98\x7f\xa5\xb1\x7c\xda\x9d\x45\x2a\xdb\x08\x2d\x4f\x13\xcf\x69\x9f\xe4\x21\xa4\x04\x4b\xeb\x2e\xf4\x7d\xc8\x20\x7a\x6c\xf6\xbb\x1b\xdf\x5f\x11\xd4\x2b\x75\x14\x63\x9f\xbc\x22\x2c\xb4\xdf\x20\x5c\xc5\xea\x20\xb4\x0b\x2b\x67\xd6\xcf\x3b\x4a\x08\x57\xfd\xac\x7f\x67\xb7\x18\xe1\xa1\x45\x44\x54\xd8\x55\x5d\xc2\xc2\x86\x92\xd4\xa1\xc2\x9d\x84\xed\x1b\xfd\x9a\x56\xab\xca\x12\x8e\x26\x85\x98\x6f\xe5\xe4\x21\x54\x7d\xf8\x6b\x67\x3a\xb4\x90\x10\x16\x53\xcc\x26\x9b\xcf\x4d\x08\xf7\xf5\x10\x74\x56\xbd\x40\x30\xbf\x95\xca\x73\x72\xc9\x6e\x82\x46\xd8\x8a\xbe\x63\x72\x19\xcc\xbf\x72\xfc\xf9\xe0\xcc\xf9\xee\xa2\x84\x05\x27\x76\xdc\xb5\x93\xe9\x65\x70\xe8\xd0\xea\x13\x07\xf9\x88\x70\xa2\xee\xad\xa1\xf8\xb1\xf5\x84\x02\x6d\xd5\x1e\x7e\x7d\x75\xc2\xae\xf4\x90\x02\xcd\xfb\x02\x84\xbe\x47\x15\xde\xd1\xa7\x83\x09\xfa\x5c\x0f\x52\x22\x4b\x4a\x08\x0f\xcd\x5d\x3c\x82\xce\x97\x12\x66\x7d\xbc\x9c\xfe\x71\xf6\x0d\x82\xc8\xc1\xab\x1c\x1c\x8e\x0f\x08\xfa\x74\xc0\x26\xc8\x3f\x89\x90\x26\x51\x27\xa9\x1a\x50\x4a\x28\xf6\xdd\xfa\x92\xcf\x4d\x96\xf0\xc4\x7e\xfd\x1a\xe6\xd7\x4e\xc2\xb5\x99\xbf\xbd\x95\x65\x96\x10\xcc\x46\xc3\xcd\xeb\xb5\xdd\x08\x25\x6b\x78\xec\x12\xe7\xb9\x11\x4e\x6c\x56\x93\x10\x92\xac\x24\xac\x29\x6b\x62\x93\x10\xbb\x41\xf0\xfe\x30\x2b\x41\xf2\xb5\x19\xc1\xdd\xa3\xa5\x5f\xf2\xde\x6e\x82\xee\x0f\xae\x1f\xa5\x63\xcd\xb5\xf0\xb8\xb8\x34\xb6\x49\xa6\x90\xc1\xcb\xa9\xaf\xa7\xab\x0c\x5d\x20\x54\xd9\x35\xe8\x2b\x3c\x36\x24\xdc\x53\x94\x1d\x29\xf0\xd0\x24\xac\xbb\xc2\xa7\xf9\xf3\x85\x3d\xe1\xe7\xdc\x67\x0a\xb2\x52\xf5\x93\x20\x9d\x77\x81\x3f\x68\x59\xf5\xa4\xb2\x68\xea\x37\x9e\xb3\x5e\x61\x04\xff\x4d\xa2\xc6\xc3\x9e\xe1\x04\x76\x1e\xbd\xc1\x4d\x73\x39\x09\xe9\x2b\x2e\x1f\xac\x4d\x0d\x21\x24\x5d\xb0\xf1\x3d\xd7\x15\x4d\xd0\x4b\xd6\x10\x1e\x3c\x6d\x43\x18\xc9\xa8\x7a\xab\xa9\x54\x4a\x10\x5d\xd0\x57\x54\xb4\xe6\x30\x81\xf7\x7d\xc6\xae\x4f\x36\x2f\x08\x19\x86\xe7\xf5\x84\xb6\xc7\x13\xea\x16\xee\x2d\x3b\xfb\xa7\x9d\x70\x2f\x5c\x61\xae\xf0\x44\xf1\x28\x64\xeb\x57\x39\x1f\x41\xb8\xd7\xcc\xaf\xbb\x52\xd8\x99\x10\xf4\x4a\x48\x64\xa4\xa2\x80\x20\x3f\xc5\xfc\x5d\xfc\xe8\x35\x42\xc9\xa3\x35\xab\xfc\xe7\x4c\x1c\xa3\x94\x53\xbc\x1f\x35\xef\xff\x5f\x98\x6a\xd2\x20\xe8\xe5\xa8\x37\x09\x6c\x57\xbe\x5b\x08\x7f\xd6\x26\xe8\x48\x70\x73\xce\xf2\xd2\x21\xd8\x3e\xf4\x9b\xfa\x9b\x6b\x15\xc1\xb8\xc6\x5e\x56\x2f\x30\x92\xf9\x57\x1a\x16\x8d\xd5\x28\xbc\xe7\x9a\x84\x08\x1d\x8e\xf7\xe7\xcd\x1c\x08\xee\x6b\x73\x7a\xd6\x85\x2a\x12\x1e\x8d\x97\xa4\xcf\xd3\x0d\x25\xec\xf8\x65\xb5\xfb\x96\x83\x3b\xa1\x77\xd5\x86\xf2\x2f\xb6\x89\x84\x75\x0b\xae\xc5\xf2\xbc\x3d\x41\x90\x5f\x1a\x72\xcf\x47\x7d\x1d\xe1\x6a\x1c\x87\xef\x3a\xe1\x64\xc2\xd4\xdc\x92\x9f\xff\x15\xef\xd4\xa6\xa9\xcf\x39\x9a\x59\x50\x79\x95\xc7\xab\x1a\x20\x43\xe8\x1b\xfe\x5a\x24\x56\x18\x4c\xe8\x98\x17\xbf\xe3\xec\x7f\xbf\x1b\x7d\xed\x8e\x89\xe8\x44\x39\xe6\x61\xc8\x7d\x8e\xd3\x82\x60\xb9\xdb\x62\xc8\xdd\xcc\x91\x81\xa9\xe5\xe5\x3e\x7f\x29\x23\x06\xb2\xeb\x1e\xd6\xb5\xb9\x1b\x10\xcc\x06\x0f\x2b\xcb\x8d\xf9\x13\x64\x05\x1d\xff\xac\x89\x52\x22\xbc\x3f\xbc\x22\xa4\xa4\x25\x96\x70\x31\xa6\xbc\xdc\xdd\x21\x9d\x50\x97\xc8\xbe\x98\xb5\x5e\xf5\x7f\xe1\x30\xf7\x11\xe5\xbf\x21\x65\x84\xf8\xa3\x86\x5a\x89\x27\xcb\x08\x8b\x42\x52\x5a\x64\xce\x76\x4c\x2a\x16\x41\x32\x5b\x4f\xbd\xff\xca\xfc\x2b\xa3\x29\xf3\xbc\xf5\x16\xdb\x11\x2c\x8f\xb9\xfd\xc9\x5b\x76\x62\x52\x99\xed\xfe\x3b\xb6\xf7\xfd\xe6\x49\xe5\xce\xa3\x99\xbb\x7e\x89\x9b\x13\x0e\xd6\x16\x2d\x3f\xbf\xb5\x91\xb0\x58\xfd\x88\x5c\xc7\x35\x17\x06\xd6\xc9\x91\xd1\x9f\xb8\x92\x18\xdc\xfc\xee\xa8\xd2\x39\xf3\x24\x83\x56\x59\x49\xf3\xfd\x7c\xce\x0c\x8e\xb9\xbf\x91\x7b\xb9\xa9\x97\xf0\x72\x30\x66\xc9\xce\xc3\xcd\x84\x07\xa1\xf3\xfd\x39\xe7\x9f\x25\x1c\xb0\xb1\xd5\x1a\x3f\xc5\x30\xb8\xb2\x43\x3a\x67\xa1\x8e\x3b\xe1\xda\x07\x2d\xaf\x6d\x26\x17\x09\x8e\xda\xf6\x8b\xed\xd5\xcf\x12\x7c\xbf\xb9\xcd\x1e\xcf\x0c\x62\xf0\x35\x5f\xb7\x6c\xee\xe7\x29\x9b\xf1\xc8\xaf\x4f\x84\x73\x51\x3a\xe1\x29\xef\x34\xb7\xaf\xc3\xad\x84\x7c\x59\x3e\x56\xb1\x4a\x07\x61\x48\xff\x8d\x9d\x07\xfb\xec\xcd\x38\xdf\x9f\x5d\xe7\xe0\x7b\x91\xb0\xc5\xec\x6d\x59\xfa\xbc\xd9\x9b\x31\xe8\x7c\x7e\x9b\x5f\x6c\x2b\x21\x72\xec\xd0\xd7\x3b\x1f\x2f\x12\x7e\x4b\x65\x3c\x6e\x7b\x74\x90\x90\x5a\x20\xab\x56\xf1\x29\x96\x81\x4d\xf0\x16\xa5\xf2\x34\x35\xc2\x88\x73\xfe\xec\x8b\xcf\x33\x09\x17\x43\x25\xaa\x2d\x2d\x22\x19\x58\x76\xec\x35\xde\x73\xac\x92\x81\xe4\x9d\xb3\x4a\x8f\x1f\xa7\x13\xfe\x2e\x59\xd3\x78\x79\x48\x8f\x50\xf7\x6a\x5f\x70\x68\xfb\x7b\x42\xf8\x28\x57\x5e\xb7\x7d\x3d\xa1\xec\xbd\x1d\xf7\x6a\xbb\x42\xc2\x90\x8e\xb9\x74\xa5\x52\x3d\xe1\xee\xc8\x06\xf7\x17\x33\x6f\x10\xda\x2f\x1d\x9a\x7b\x32\xb8\x8c\x60\x2d\xa7\xa9\xf8\xac\xaf\x86\xb0\xe3\x52\x40\xf7\x9b\xa8\x7a\xc2\x4d\xe1\xb5\x53\xb6\x55\xfa\x11\x7a\xa6\x34\x4d\xf9\x1d\x54\x43\x18\xb9\xdf\x2f\x7f\xc5\x3c\x9a\xf0\xfc\xef\x99\x69\xaf\x9f\x5d\x61\x10\xdf\xbe\x45\x9a\xcf\x6f\x0f\x41\xdc\xba\xcc\xb1\x79\x51\x02\xc1\x31\x36\x4d\x69\x46\xdf\x49\x82\xfc\xc2\x82\x8a\x8b\xb9\x7a\x84\xc1\x15\xd7\x77\x19\x9c\xaf\x27\x3c\x2c\x54\x90\x6b\x15\xbf\xcb\xe0\xd7\xfc\xd9\x3a\xaf\x3e\xbe\x22\xdc\x31\x0e\x0a\xce\x32\x7a\x46\xe0\x6e\xba\x62\x15\x1d\x51\x4f\x70\x0b\x60\xb8\x07\x1d\xde\x11\x66\xa9\xf4\x57\x4d\xe7\x7b\x4b\xc8\x98\xd6\xf5\x6c\x7b\xf6\x6d\xc2\x83\x0c\x95\xb2\xa9\xd5\x99\x84\x8d\xaf\x0a\xcc\xda\xf7\x67\x12\x9a\xb5\x11\xcd\x37\xe2\x41\x08\x28\x7c\xee\x24\xcc\xb6\x8f\xe0\x40\xef\x4d\xd4\xd7\x6f\x27\x48\x59\xce\xdb\x24\x2e\xbf\x9a\x50\x2f\x3c\x60\x6c\xbb\x69\x2e\x61\x69\xfa\xd5\x9c\xef\x17\x75\x09\x2a\xc1\xcc\x71\x55\xe1\x2a\xc2\x96\xbf\x6b\x06\xaf\x3f\x9f\xb8\xc1\xa6\x5a\xc6\x5d\xe1\x6c\x24\x48\xc5\xf4\x3f\x92\x15\xfa\xc1\x82\xb2\x5e\xd1\xc8\xa9\xe0\x3c\x06\xd7\xfb\x45\xd6\xf5\xd5\xb6\x13\x06\x9e\xaf\xbb\xdf\x15\x5c\xcb\x60\x4b\x7f\xf0\xeb\xc7\x25\x85\x84\x4b\x0b\x1f\x28\x35\x57\x5e\x27\x5c\x34\x31\x50\xb2\x52\xf1\x24\x70\x3f\x75\x1c\xd1\xe3\x8b\x23\xfc\xb4\xad\xfa\xf4\x5d\xf4\x00\x21\x7e\xbc\xd4\x3f\x2e\xc0\x80\xe0\xba\xfe\x7d\x97\xce\x14\x4d\xc2\xc8\x8a\x92\x74\x13\x93\x89\x13\x16\x5b\xce\xbd\x57\xe2\xcb\x08\x8b\xf9\xf6\x38\x94\x16\x5b\x11\x0c\x76\x26\x36\xdc\x39\xa3\x4f\xb8\x12\xc1\xea\xde\x9e\x7d\x86\x20\x5b\xbb\x68\xc3\xf7\x00\xeb\xff\x85\x18\xd7\xde\x12\xb9\x86\x65\x84\xaf\xe5\x7d\x7b\xd3\x2f\xd8\x13\xee\x47\x5d\xbb\x34\xf4\x52\x86\x30\x3f\xe4\xbe\xf2\x6c\x7d\x51\xc2\x71\x2e\x19\xb9\xd5\x03\x09\x0c\x6c\xde\x31\x77\x5d\x6c\x9f\x10\x52\x65\xe6\xcc\x38\x60\x7c\x85\xb0\x71\x27\x9b\x57\x7f\x65\x36\x03\xdd\x62\x0d\xe5\x77\x2a\xe1\x84\x92\x40\xf7\xa4\xe6\xd6\xdb\x0c\x34\x8c\x16\x5e\x09\xdf\xa9\x4e\xd8\x52\x68\xf9\xfc\xcb\x91\x64\x06\x72\x6b\x96\x57\x7d\xf6\xa8\x27\x3c\xd1\xe8\xd9\xe1\xe5\x2a\x4d\x38\x76\x45\xda\x40\xe2\x94\x3d\x61\x8f\xd8\xfb\x45\xeb\x2c\xf6\x30\x30\x59\x6f\xf7\xee\xd3\xf4\x5e\x82\x3e\xe6\x1f\x66\xab\x4c\x22\x34\xcc\x9c\xb7\x27\xf7\x2f\xe7\xff\x42\x8c\x58\xfa\xe3\x7d\x2a\x33\x09\xbf\x4d\x03\x9f\xc5\xf9\xd7\x10\xba\xea\x96\x65\x06\xcd\x9f\x4b\xb8\x64\x7b\xbd\xe9\x95\x98\x3a\x21\x80\xd7\xd5\x28\x6f\x8d\x39\x01\x3d\x1a\xef\x33\x85\x14\x09\x6f\x53\x63\x76\x54\x5f\x5e\x4d\xb8\xb1\x26\x68\x66\x72\x4e\x20\x61\xf9\x5e\x35\x6f\xff\x10\x33\xc2\x66\xee\x1a\xf1\x0d\x07\x26\xee\xb4\x42\x2a\xc1\x3a\x5d\xf6\x84\x91\xb6\xf0\xd2\xc6\x4c\x3f\xc2\xf6\xee\xf6\xd6\x35\x02\x8a\x93\x10\x77\x21\xdb\xae\x7f\xfd\xdf\x5a\xf0\x2c\xd0\x6b\x39\x11\x52\x4f\xd8\xf1\xb5\xf8\xdd\xdc\x97\x42\x84\xa4\xef\x02\xab\xf9\x05\x0e\x13\x14\x74\xb6\x2e\x32\xfb\xf5\x80\xb0\x8e\x7b\x39\xfe\x83\x6b\xd8\x8b\x4c\x4e\xbe\x18\xc2\x11\xee\xf3\xb7\x87\xf9\x8d\x09\x91\xd3\xf9\x87\x77\xed\x2d\x26\xf4\xfe\x50\x70\xfc\xaf\x04\x57\x86\xca\x7e\xdd\x2e\x42\x58\x19\xa4\x6e\xf4\xe8\x91\x14\xe1\xd6\x2f\xab\xe0\xca\x9f\xe6\x84\xd8\x29\x97\x35\x16\xf9\xcc\x20\xf0\xff\x31\x6b\x70\xd0\x8e\x27\xa8\x04\x96\x1e\xbb\x94\x53\x4e\x08\x57\xae\xd6\xb5\x5e\x1d\xcb\x60\x91\x23\xb2\x7b\x3a\xeb\x09\x4e\x7b\x47\x6e\xfc\x37\x7d\xbd\x57\x50\x93\x62\x6d\x40\xd8\xb4\x73\xed\x96\x8f\xfb\x2c\x08\x76\xe2\xe6\xb7\x86\xd6\xda\x13\x3e\xc9\xab\xa6\x4c\x29\xae\xfd\x77\xcd\x98\xa7\xd7\x63\xfd\xfb\x7c\x04\xce\x33\xc5\x07\x8f\xe5\x9e\x61\xd0\x3d\x87\x19\xf1\x59\x71\x90\xf0\xb4\x7e\xde\xe2\x50\x79\x03\x82\xb1\xb7\x6b\x6e\xce\x8c\x72\x42\xfd\x14\x45\xee\x94\xf7\xfe\x84\x2d\xae\xb3\xd9\x67\x07\x47\x13\xc4\x7a\x95\x76\x85\xd4\x1c\x20\xe4\x88\xdf\xf8\xb4\x7f\x97\x0b\x21\x2c\x45\xcd\x36\x59\x2b\x9a\xe0\x73\x22\x3d\x55\xfb\xe2\x36\x82\xf9\xf8\x99\x33\x66\x5b\xaf\x12\xfc\x6f\x39\xa5\x45\x8a\x87\x10\x16\x3d\x79\xe1\x1f\xd1\xd3\x40\xf8\xb3\x63\xd6\xaf\xbd\x13\xd3\xce\x3d\xa5\x7f\x14\x2a\xa2\x09\xa7\xc4\xb4\x03\x17\xae\xfc\xc6\xc2\xae\x7d\x1e\x2e\xe7\x8f\x6f\x27\x98\xdd\x39\x99\x2c\xa8\x15\x47\x80\xbe\x59\x80\x2e\x4b\x8a\xa0\xff\xaa\xcb\xe8\xc0\x0d\x07\x82\x05\xce\x45\xce\x1a\x2d\x25\xd4\x2f\x0e\xb5\x34\xff\xf8\x9e\x85\x9a\x96\xce\xef\xd6\x87\x05\x09\xbd\xa1\x0d\x0f\x45\x43\x8a\x09\x56\x73\x04\xaf\x2d\x59\x91\x4a\x98\x7e\x23\x41\x33\xa0\xf8\xdc\xff\xc2\x9f\x4d\xf6\xb5\xac\x6d\x7a\x84\x68\x31\xb5\xf7\x0f\xae\xc8\x12\x9c\xbb\x0b\xa2\x4c\xb6\x59\x11\x82\x90\xc3\xf1\x36\x7d\x01\x21\xa9\x53\xec\xe0\x49\x1d\x3d\xc2\xde\x4b\xbf\x59\xcf\x12\x8f\x10\xf8\x59\x47\x2c\x8a\xc3\xa4\x09\x3b\x67\x5c\x97\xea\x2f\x1d\x65\x61\x1f\xb7\xed\x5e\x91\xfd\xfa\x04\xbb\x78\xae\xfd\xe7\x15\xad\x09\x87\xae\x6d\xa3\xdf\xa9\x01\x04\xcd\x56\x15\xde\xae\xe3\x57\x09\x52\xec\xbe\xee\xa7\xb2\xbc\x08\x01\xee\x96\xb7\x7d\x1a\x03\x08\xcf\x7c\xde\x3b\xd2\x9d\x00\x06\xb5\x5e\x8f\x6f\x4e\xe1\x88\x20\xf8\xcd\x74\x56\x32\x74\x63\x08\x9e\xde\x85\x9f\xf2\x8f\x7d\x22\x24\x35\x9a\x8f\xf1\x4e\x40\xed\x9d\x7f\x73\x94\xeb\x27\xc2\x2d\x9e\xa5\xf1\x3f\x95\x8b\x08\xda\xc3\x77\x79\x53\xf8\x1e\x12\x32\x97\xb8\x7f\xbc\xe5\x10\xc7\x60\x94\x73\x96\x88\x6b\xa4\x37\xa1\x33\x79\x36\xdb\x8b\x9a\x10\x42\xcb\xc9\x63\x5d\x8b\xef\xc4\x10\x3e\xed\x2d\x32\x08\x5a\x14\xc7\xe0\xf7\xad\x34\xad\xab\x6b\x8f\x13\xbc\xa5\xcb\xe7\xe5\x1b\xda\x10\xdc\xf2\xc3\x03\x97\xde\xd2\x24\x0c\x9c\x7d\x19\xa6\xc1\x76\x99\x81\x4f\xdc\x5e\xdf\x65\xcc\x31\x06\xe9\x67\xb8\x6d\x64\xb7\x56\x10\xa6\x7f\x50\x48\x7e\xfa\xe9\x2e\xa1\xed\x48\xd2\x5a\x7b\xf3\x0a\xc2\xcc\x27\x43\x3f\xeb\x82\xb7\x13\xfe\x0e\x5f\xcc\x35\xe9\xb9\xca\xa0\xc3\x8a\xff\x5c\xf2\x09\x3e\xc2\x1d\xae\xcd\x05\x06\xfc\x9c\x84\x96\x55\x51\xab\x1f\x2f\x9a\x45\xb8\xb2\xe8\x53\x64\xf5\xe5\xc7\x2c\x9c\x5f\xb8\xda\x69\xdd\x87\x4c\x82\xc1\x89\xe9\x92\xbf\x8f\xf9\xd1\xbf\xb2\xcb\xda\xa7\x5a\xe7\xb7\x09\x21\xf2\xbc\x44\xf3\x7d\x8d\x46\x82\x7c\x86\xa1\xa3\x9d\xcf\x10\x03\x5e\xf1\xbc\xbc\xac\x80\x21\x06\x4a\xcc\x32\xbb\x8f\x75\x3d\x0c\x7e\x28\xcc\x39\x4b\x57\x72\x18\x38\xb7\x8e\x48\x49\x8d\x9d\x9e\xb8\x37\x6c\xaf\x10\xde\x7e\x9d\x01\x97\xd1\x23\xb1\x23\xf6\x01\x84\x83\x49\x17\xaa\x8c\x4d\x03\x09\xf1\x0f\x9e\xbe\x1f\x51\x2f\x22\x5c\xfa\x90\x63\x7d\x2b\xbb\x90\xd0\x7e\x56\xe3\x33\xfb\x58\x11\x21\x8c\x91\x78\x54\xf5\xe1\x2e\x03\x67\x8b\xbd\xcf\xf7\x2b\x14\x11\x3c\xaf\x4e\xbf\x17\xbc\xdb\x8b\x70\x3c\x9c\x2f\x21\x61\xe8\x0b\x0b\xbe\x9f\xfc\xf3\xcf\x8b\x35\x12\x3e\x98\x96\x27\xc4\xc8\xd4\x12\x4c\x73\xeb\x23\x84\x36\xd6\x12\x9e\xc4\xcb\x3f\x0a\xeb\xad\x20\x34\xbd\xb9\x79\x50\x9a\x4d\x95\x10\x54\xe1\x7e\xf7\xcb\xc5\x19\x84\xbc\xc2\x90\xd7\xbf\x03\x9c\x09\x2e\xf9\x16\xd8\xa4\xf5\x97\x05\x47\xd7\xf4\x11\x6e\xb3\xa9\x84\x07\x33\x4c\x7a\xdb\xe3\xc6\x59\xff\x30\xe4\x37\xeb\x7d\xf9\xde\xaf\x93\x60\xe4\xf0\x8e\xd9\x25\xfc\xe5\x7f\x41\x31\xa3\xaf\x35\x21\x98\x8d\xe0\x16\x32\xd7\x4c\xd0\x5c\x81\x90\x70\x64\xad\xed\x97\xc0\x24\xc2\x83\x51\x99\xb9\xcb\x23\x22\x09\x2b\x0f\x75\xe5\x0b\xbd\x35\x21\xa4\xbd\xf8\xa9\xfd\x43\xf2\xc0\xa4\x12\x12\xe7\x3c\xd8\x11\xb2\x88\xf0\xa6\xfa\xc0\x22\x1e\xad\x29\x84\x6f\xaf\xb3\x3f\xed\x65\xaa\x08\xd1\xca\x62\x36\xff\xc1\xb2\x45\x3f\xf2\x3f\x64\xcd\xfc\xf3\xf0\x4c\xa7\xdf\x24\x68\x86\xed\x11\x5d\xf7\x38\x95\xd0\xfc\x8e\xbf\xb4\x6f\x28\x95\xc0\xf2\x17\x2b\x10\x12\xed\x66\xd0\x5f\xd5\x6f\xda\x3b\x51\x2c\x05\x53\x4e\x07\x84\xe9\x12\xb6\x16\xf6\xb8\x37\xe6\x4d\x7c\xc0\xde\xc9\xdf\x7f\xe7\x84\x09\x61\xec\xea\x8f\x92\xdb\x87\x0c\x09\x2b\x9f\xec\x8c\xd4\xad\xf2\x27\x1c\xdd\xf6\xed\x45\xdd\x12\x61\xc2\xae\x69\xcb\x73\x1d\x93\x4a\x08\x4b\x22\xb4\xba\xff\x43\xc5\xa7\xf7\x77\x4f\x46\x97\x10\x6a\x9b\x13\xe3\xfc\x43\x63\x99\x7f\x13\x3d\xe7\xf6\x9a\xbb\x72\x2f\xe1\xf7\x9d\xe2\x6f\x33\xde\xb9\x32\x48\x2b\x49\xfd\xd6\x5d\x3a\xc4\xfc\x9b\xfe\x1f\xd2\xe7\x6f\x7b\xbe\xe9\xee\x52\xc2\x39\xc9\xbb\x9b\x16\xd7\xd7\x30\xc8\x7b\x54\x1d\x3e\xb0\xec\x34\x21\xbb\xe7\xe1\xca\x97\x0d\xb2\x04\xb9\xcd\x25\x8b\x3f\x65\x5d\x63\x50\x20\xb6\xe5\x64\x9d\x7a\x19\x03\xfe\x5c\x2e\xe6\x43\xaa\x2b\x21\x36\xf7\x63\xfb\xe9\x77\x97\x08\x87\xa5\x4c\x04\xdf\x8e\x5d\x66\x90\xf0\xf0\x0e\xe7\xce\x04\x6f\x82\x74\x5b\x8a\x50\x27\xcf\x4a\xc2\x2d\x5e\x37\xcf\xa3\xa9\x99\x0c\x5e\x9f\xe6\x8f\xf1\xa8\x8e\x64\x30\xb6\xdd\x61\x46\x42\x4b\x14\xc1\x30\x4b\x51\x37\xac\xb2\x95\x50\xa0\x7a\x72\xc3\x9e\xd7\xdd\x84\xe5\x87\xd7\x8e\x28\xea\x74\x11\xc4\x86\xcc\x1e\x2e\xeb\xaa\x21\x50\xc3\x5f\xc9\x57\xca\x01\x84\x01\x0d\x99\xe2\x29\x7f\x79\x08\x9e\x5f\xf3\xb7\x08\x7f\xb9\xc8\xa0\xb9\x95\x2d\x7a\xba\xc3\x25\x06\x09\x7c\x2e\xef\x52\xb7\xdf\x23\x38\x6f\x6a\xd3\xe7\xdd\x9c\x41\x58\xfc\xe7\x79\xc2\xcf\x62\x6d\x42\x89\x14\x67\x9e\x41\xf2\x01\xc2\xd2\x01\xd9\xbd\x62\xa2\x25\xb5\x28\xac\x5a\x10\xa2\x9d\xdf\x49\xb0\x88\x9b\xf1\xa4\x5a\x74\x88\x10\xb2\xb2\xf3\xe0\xe7\xb7\x0f\x09\x89\x7a\x3c\xbf\x24\x39\x9a\x08\xfa\xce\x72\x82\x43\xf7\x1e\x4f\x2a\xbf\x7e\x5f\x3c\xb3\x7e\x02\xd7\x74\x1d\xb5\x02\xb7\x57\x33\xe8\x4c\xe0\x9b\x51\xa5\x1b\x48\x58\x68\xb2\xf2\x71\xc7\x92\xf5\x84\xac\x4f\x5a\xfe\x62\x37\xd5\x08\x61\x86\xbb\x5d\x16\x96\xd9\x4c\x42\xed\x92\xb6\x61\x8f\xf6\x80\x5a\x54\xbc\xcd\x9f\x1d\xd8\xb4\x85\xa0\xde\xbb\xe7\xfc\xc9\xcc\x4a\xc2\xe1\x39\xd7\xcc\x3f\xbd\xad\x24\xcc\xf4\xef\x55\x7e\xc4\x95\x4d\x68\x31\x95\x28\x71\xd9\x71\x7d\xd2\x54\xbc\xe5\x37\x7f\xf9\x63\x4f\x02\x47\xe1\xb1\xe2\xdc\xf6\x47\x0c\xca\x46\xda\x43\x66\x28\xf7\x32\x48\xb0\x3e\x1a\xb7\x7e\x5b\x3d\x83\xc5\x67\x44\x12\x75\x4c\xbc\x09\xe1\xbd\x39\xaa\xec\xab\xa5\x08\x9a\xba\x79\x17\x67\x36\x6a\x10\x12\x1d\xb6\x8d\x9e\x55\x9c\x47\xf0\xae\x3f\xd6\xa5\xc8\x57\x42\xd8\x28\xb1\xf1\xc3\x58\x79\x05\xc1\xad\xd1\xb8\xfe\x59\xcf\x61\xc2\x9b\x2f\xad\xf1\x1c\x45\xb3\x09\x09\x0b\x7c\x52\x7f\x67\x75\xb0\x60\x24\x7b\x2a\x64\x2a\x33\x83\xfe\xa1\x8e\xf7\x59\x67\xb4\x90\x28\xc1\x42\xd4\x41\x40\x4d\x8a\x83\x30\x2f\xba\x96\xfd\xe7\xa0\xec\x24\xe8\x1b\xf0\xcc\x7f\x72\x44\x80\x90\xb2\xde\x6a\x40\xbf\x62\x0a\x41\xf9\x97\x45\xe5\x13\xde\x3d\x04\x1f\xc9\xac\x22\x29\x6d\x23\x42\xf2\xb4\x8b\x5b\xab\x24\x77\x12\xfc\xf2\xc6\xcf\x2d\xf8\xbe\x9e\xa0\xc6\x3d\xb3\xf3\xe5\xc6\x66\x06\xb2\x59\x4f\xad\x3d\xb4\x14\x09\xe2\xe9\x5d\xb2\x3d\xf3\x97\x4c\x3c\xcb\xd6\x84\x31\xa6\xb7\x6a\x71\x66\xd5\xa7\x61\x65\xf9\x04\x06\x16\x6e\x62\x21\x69\xad\xdb\x08\xc2\x06\xe5\xda\x3b\x02\x43\x09\x5f\x0e\xf7\x59\x2c\xd0\xac\x67\xb0\xe3\xab\xc0\x36\x83\xfd\xaa\x84\xbb\x1c\xbb\x04\xf8\x56\x7c\x63\xe1\x66\x8c\xe7\x8c\xc8\xe1\x71\x16\x8c\x87\xce\x3c\xfa\xb3\xf2\x2a\x21\x7b\x79\xdf\x45\xdd\x55\x57\x09\x76\xbb\x05\xfd\x0f\xee\x2c\x24\x70\xd6\x27\x7e\x92\x6d\x49\x22\xac\x90\x2b\xd6\xdf\x35\x31\x95\xfe\xe5\x3c\x13\xa8\xbc\x9b\xc0\x13\x96\xd5\xf8\xe6\xa1\xc9\x24\x5c\x74\x38\x30\x68\xd6\xa8\x4d\x78\xa4\xae\x75\xfa\xa5\x6f\x34\x41\xe7\xbc\x6e\x00\xc7\xc7\x7c\x82\x6e\x16\xdb\xf2\xc0\x75\x9b\x09\x46\x5b\x44\x1b\xb7\x0c\xcd\x20\x94\x28\xd8\x6c\xcb\xe6\x7e\xca\xc2\xf1\x17\x12\x79\x09\x87\x14\x09\x81\xe3\x15\x14\x58\x6f\x45\x60\x7f\xf3\xd7\x33\xdd\xf0\x04\xc1\x76\x30\x5a\xd6\x8b\x6b\x1b\xa1\x7f\x9f\x54\xa2\xc7\x85\x4c\x82\xf9\xdb\xb1\x0d\xb9\x3b\x2e\x11\x36\xec\xfa\xb6\x6b\x79\x58\x07\x83\xa1\x93\xdf\x97\x5f\x2b\x96\x25\x28\x9d\x9a\x33\xe0\xf4\xce\x90\x60\xfb\x6e\xc6\x85\x8c\x5f\x7e\x0c\x36\x7f\xef\x64\x93\x5b\x7a\x8a\xd0\x36\xfe\xd4\xd3\x97\x3b\x9b\x40\xd7\x1d\x8e\x2a\x5d\x28\x65\xf0\xfd\xf4\x43\x2d\x53\x9e\x3a\xc2\x87\xde\xe4\xdd\x99\xab\xb2\x09\xe8\x6c\xca\x70\xe4\xae\x22\x54\x8b\x2a\x6a\xfa\x70\x7d\x67\xa1\x4d\x52\x34\xe7\x86\xd5\x7a\x02\xdf\xf8\xd3\xb2\x46\xab\x42\x82\xe0\xe1\x9d\xe6\xff\x4d\xaf\x9e\xf4\xf4\xf5\x89\xfd\x60\x21\x75\xf8\x4b\x47\x9f\x79\x1e\xfd\x2b\xf6\x7d\xb3\xda\xf7\xdd\x9b\x4f\xd0\x1b\xf5\x62\x97\x90\xcd\x64\xb0\x30\x67\xd5\xca\xb2\x69\x13\x3f\xa2\x9b\xf2\x13\x39\x8b\xea\x19\xbc\x2f\x79\x46\x4f\x74\xc6\x58\x78\xfe\x32\xae\xcb\xef\xfe\x06\xc2\x73\xe1\x65\xe2\x8b\x6a\x4c\x08\xa3\x57\x18\x03\x67\x8b\x1e\x06\x29\x9e\x86\x27\x52\x7e\x55\x11\xfc\x1b\x56\x84\xaf\xb5\x2e\x25\x98\x3d\x57\x4b\x52\x8d\x76\x20\xdc\x67\x69\x5c\xf6\xb0\xb1\x23\x78\x6f\x96\x97\x1c\x1e\x10\x23\x4c\x0f\xfb\x72\xc8\x93\xbb\x83\x41\xac\x7e\xe4\xe9\x32\x37\x57\xc2\x82\x46\xa6\xae\xee\x4d\x22\xe1\xf9\xf7\x42\xad\xcd\xa6\xfb\x08\x56\xbf\xfc\x9c\x4f\xc5\xdf\x20\x8c\xfb\x3d\xdd\xd9\x38\x65\x31\xa1\x28\x9a\xb7\x69\x9f\xd6\x63\x16\xbe\xdf\x53\x2b\x9c\xb6\x60\x3d\xe1\x08\x4b\x59\x4a\x2f\xc6\x9f\xc1\x56\x31\xab\x77\xc9\x91\xfb\xe8\x1f\x98\xdd\x59\x4e\xfa\xb3\xac\x08\x79\xab\x8a\x7b\x23\xa3\x2f\x10\x5a\x5a\x33\x66\x3d\xa9\xd7\x21\x78\x4c\x13\x12\xbe\x5d\x6a\x46\x63\x67\x8f\xe7\x8f\x9c\xf1\x24\xdc\x49\x71\xb8\x73\xf5\xb6\x34\xa1\x35\x46\xd5\xe9\x06\x5f\x10\x61\x2e\xcf\x14\x8e\x40\x71\x67\x82\xf8\x1e\xa9\xfc\x1d\xdd\x13\x0f\x54\x99\x36\xa5\x0e\xce\x7c\x84\xc6\x3e\xde\x72\xaf\x24\xad\x49\x65\xad\x7d\x74\x14\x4f\xb1\x11\x61\x17\xaf\xf1\xe6\x99\x22\x36\x93\xca\x29\x89\x5b\x52\xd5\xa9\x0f\x58\x18\xfc\x73\x55\xfa\x87\x55\x1d\x83\xa9\xde\x22\xc2\xdf\x4a\x8b\x08\x9a\x85\x53\x72\x36\xe7\xbc\x22\x34\x7d\xb4\x5c\x26\xda\x70\x9d\x50\x24\x70\xfc\xf5\xab\x28\x51\xc2\x85\xa8\xeb\x1c\x39\x82\x62\x84\x9b\xb7\x96\xc9\xdf\x51\xda\x4a\xc8\x09\xcb\x3b\xde\x33\xa2\x41\xf8\x20\x38\xeb\x2e\x66\x0a\x12\x34\x32\x8a\x63\x5f\x74\xf1\x10\x1c\x3a\x62\x67\xa7\x8e\x1f\x20\x18\x27\xf7\x09\xdb\xbc\x54\x26\x9c\x2d\xba\x24\xc2\xc3\x59\xc8\xe0\xf1\x8b\xcf\x5c\xf7\x7c\xc5\x08\x46\x0b\x5d\x44\xd3\xf6\x4f\x23\x64\x1e\x3e\xed\x20\x3e\x3e\x85\xf0\xe2\x45\xe0\xa1\x90\x5b\x0b\x09\xa6\x3b\xf4\x8e\xbc\xaa\x50\x24\x98\x96\xdf\x15\x7a\xe6\xeb\x4e\x68\x92\x89\xe8\x50\x08\x34\x22\x44\xa8\x86\x38\xdd\x15\xf0\x21\xb0\x2d\xb5\xd2\x5a\xa9\xab\x41\x30\x8b\xdc\xdd\x3c\x65\xbf\x2d\x83\xf7\xde\x71\x19\x09\xfe\x2a\x84\xb2\x27\xd5\x5d\x61\x2b\xbc\x09\x33\xc5\x95\xa6\xd4\xbc\x74\x20\x6c\x76\x6d\x5a\xdd\x20\x63\x46\x30\xde\xa7\x24\xb3\xf7\xa9\x34\xe1\x57\x8a\xc5\x94\xb7\x55\xd6\x84\xcb\xa3\xe6\x1d\xd2\x2b\xbc\x08\xae\x69\x2b\xde\x4a\xca\xb4\x11\x7e\x2e\xe5\x67\x71\x34\x5a\x12\x9e\x38\x45\xc8\x0e\xae\x61\x27\x28\x6d\xd4\x99\x1e\x66\xbe\x86\x60\xc6\x23\xa1\xc2\x7b\x70\x33\x61\x8d\x14\x87\x40\x92\x9c\x32\xe1\x6a\x37\x9b\xb7\xd1\x45\x45\xc2\x21\x9f\x87\x21\xec\x0f\xf4\x08\xc7\xad\x65\x37\xbe\x3d\xa4\x47\xe0\x57\xf4\x5d\xfa\xb3\x66\x13\x21\xe9\x78\x90\xca\x85\x5b\x1a\x04\x7f\xe9\xb2\x52\xab\xd2\x7e\x16\x8c\xb3\xa5\x3e\x5f\x28\xfe\xca\xc2\xe5\x3e\x59\x7b\x59\xc1\x08\xfa\x57\x22\x14\x84\xf6\x0a\x7d\xdc\x4c\x50\xd4\x5d\x9a\xbd\xb9\x31\x80\x41\x61\x79\x62\x6a\xb2\x4e\x0e\xc1\xe2\x90\x46\xce\xad\x53\xc9\x84\x8c\x9d\xea\x2a\x3c\x6d\x5e\x04\xd3\xae\xee\x65\x67\xe4\x75\x08\xf3\x8f\xcf\xb6\x84\x49\x13\x03\xed\xf3\xf5\xeb\xd8\x35\x96\x12\x46\xb7\xaf\xab\xf2\xd9\xb0\x98\x90\xb4\xff\xc7\x1e\x49\x8e\x42\x82\x29\x2f\xa7\xf1\xfb\x85\xdb\x27\xe1\x59\x5a\xa6\xc6\x2d\xbe\x60\x82\x4b\x56\xf7\xf6\xd1\x31\xb0\xc0\x2e\xaf\x18\x75\xc3\xfa\x04\x81\xcb\x7c\x5b\x5f\xbc\x77\x2e\x03\x99\xaa\xeb\xeb\x6e\xe7\x4e\xdc\x51\x84\x1d\xf9\x7d\xaf\xb6\x33\x60\x0d\xc4\x08\x3f\x9d\xc7\x45\xf0\x5e\x3b\x07\x9f\xc3\x7b\x59\x58\xf3\x73\xf5\x67\xb7\x19\xb1\x0c\x06\xae\xf1\xee\x56\x32\x73\x20\xdc\x2c\x6b\x0c\xf0\x73\x29\x64\x30\x55\xed\xb5\xed\xb5\x88\x27\x0c\xfe\xc4\x5b\x9c\x4e\x9e\xa1\x4a\x88\x3a\xcd\x67\x64\xa7\x68\x54\x0b\xee\xef\xad\x3a\xc6\x6b\x6e\x30\xb8\x7e\xf9\x74\xd5\xdd\x4d\x06\x84\xa5\xc3\xe6\x25\xc3\x02\x7f\x59\xff\x10\x3a\x95\x4f\x78\xcd\xeb\x9b\x2c\xbc\xda\xe6\xcb\xfe\xe1\x98\x31\x61\xf3\x3d\x25\xe3\x5c\xb3\x83\x84\x8f\xd1\xc7\x5a\x66\x8c\xb0\x08\xe5\x33\x3a\x8f\xde\xf8\x99\x46\xc8\x92\x09\xb6\x89\xa9\xd3\x25\x94\xe7\xff\xb4\x65\xe1\x24\xe1\xe2\xcb\xfb\xae\x6d\x7b\x0d\x08\x0b\x35\x7b\xbe\x1f\x32\xd4\x23\x74\x7c\xe6\x2c\xb6\xb3\xdd\x4d\xd8\xf5\xc4\xba\x5a\x60\x60\xcf\xff\x82\xef\xf3\xbe\x07\xce\x29\x3b\x09\xf7\xb7\x27\x3d\xba\x95\xbd\x85\x10\xf2\xa6\x6d\xce\x85\x5c\x45\xc2\xb1\x5c\x4f\xf6\x31\x93\xbd\x84\x7d\xd3\xaf\x27\x8e\x1c\x98\x4b\xe0\xcc\x7e\x71\xea\xa4\xd1\x19\x06\xc7\x39\xba\x45\x2f\x64\x6b\x11\xfa\x7a\x2c\x03\x07\x58\xd1\x84\xe3\x3f\xcb\x4a\xd6\x64\xd8\x10\x0c\x7b\x0c\xb7\x14\x58\x07\x11\x86\x2d\xd7\xf0\x78\xae\xc8\x98\x54\x44\xa4\xe5\x42\xcb\x9f\x05\x13\xdc\x6e\xb5\x24\x5e\xf7\x7d\xc0\xc2\xb7\xfa\x5a\x89\x83\x1d\xbb\x09\xbe\x30\x93\x4b\x72\x3c\x4e\xf8\x14\xa1\xa4\xd7\x7c\x45\x85\x30\xc0\xc6\xff\xa7\xcb\x62\x1e\xc1\xab\xe9\x1b\x7f\xcf\x0f\x3b\x42\xe8\xf0\x48\xf2\x5b\xbd\x6f\x2c\x2c\x7d\x66\x9e\x63\xba\xb3\x8c\x60\x16\x62\x11\x65\x32\x81\xd5\xcf\x2e\xaa\xae\x38\xdc\x40\xf8\xae\xaa\xed\xfd\x5f\x39\xf4\x79\x6d\x67\x64\x9f\x21\x81\x4e\xe4\x6f\x71\x1d\xd6\x9d\x54\x94\x56\x4e\x55\x53\x31\x76\x61\xfe\x95\x91\x3f\x53\xfc\x8c\xc5\xe6\x10\x8e\x53\xfc\x68\xaf\xbc\x2a\xa1\x6d\x4e\xa6\x83\x98\xc2\x7f\xff\xba\x5b\x38\xf1\x8a\xc7\x6c\x82\xb6\xf5\xac\x57\xfa\x9a\xd2\x84\xd7\xb3\x34\x8b\x94\x33\xe7\x13\x4a\xce\xae\xc9\xae\x9c\x12\x3c\x09\x6d\x59\x52\x1c\x3f\xd8\x79\x09\x42\x65\xfc\x91\x72\x2a\x4f\x6b\x71\xea\xce\xd7\xcb\x53\xa7\x07\xd2\xff\x05\x21\x57\x44\x14\xdb\xf7\x13\x06\xe3\x3d\x3d\x7c\xa6\x37\x11\x06\x6a\xd3\x13\x5d\x1b\x52\x08\x2a\xe6\xfc\xa7\x8d\x3e\x65\x33\xff\x26\xd9\x75\x1a\xbc\x37\x5e\x14\x30\xc8\x72\x7a\x33\xfd\x6e\xea\x43\xc2\xe0\xfa\xa1\x84\xb3\x8b\x3b\x68\x2c\x76\xf6\xf6\x94\x2b\x0f\x08\x9f\xcf\x2d\xe7\xfb\xc6\x5f\x3c\x09\x2d\x83\x3c\x12\x82\x82\xf7\x09\xd3\xe2\x03\xe2\xad\xad\x6f\x10\xdc\xb6\x7d\xe7\x34\x0d\xe8\x21\x1c\xc8\x0b\xe8\x9e\xe9\x3c\xf9\xe2\x44\xb9\xbe\xd8\x87\x5f\xe2\x08\x77\x47\xe2\xce\x73\x95\x3e\x27\xbc\xde\xa3\xae\xcb\x35\x2d\x9b\xd0\x2c\xc6\xf3\xd6\x72\xf3\x39\x06\x35\x86\xe3\x59\x66\x86\x01\x84\x9a\xeb\xdc\xdb\x23\xe5\x42\x09\xa7\xee\x3b\x25\x6d\x79\x75\x98\xa0\xf6\x4a\xd4\x43\x9d\x6e\x33\xf8\x28\xbd\xa2\x25\xf2\x95\x1c\x41\x43\x69\xcf\xbb\xdd\x47\x36\x12\xd8\x47\x2b\xbc\xef\xab\x98\x10\x6e\x9e\x2d\x70\x7a\xaa\x3e\x95\x10\x73\xf3\x50\x91\xdd\x47\x4f\x06\xb6\x91\x75\x33\xda\x6a\x72\x09\x4b\x25\xb3\xc2\x7d\x7f\x76\x11\xf2\x7c\x44\xcb\x5b\xd3\x53\x08\xa2\x0a\x3d\x1f\xfe\xd6\x38\x13\x36\x5e\xe6\x0e\xc8\x5f\x69\x4d\xa8\x5b\xe6\xf8\x75\xec\xfc\x46\x82\x15\x27\xf7\xb2\xbf\x52\xd6\x84\x75\xdd\x0e\xb6\x97\xae\xff\x65\x41\xf2\xd5\x92\x37\xab\x4c\x63\x08\xe1\x6d\x11\x9f\xae\x2b\x35\x33\xd8\x5c\xd1\x1b\x26\x32\x51\x76\x09\x78\xad\xdf\xd7\x49\x84\x92\xc2\xd5\x1c\x41\xdf\x1f\xd5\xe2\x64\xcc\xc3\xa2\x93\x36\xa5\x84\x9b\xe1\xaf\x8f\xc5\x27\x94\x12\xe6\xb5\xdf\xce\xf8\x3e\x5c\x47\x98\x11\x9b\x9e\x85\xc4\x68\x06\x4a\xa2\xe9\x02\x72\xab\xee\x10\xf4\xbe\xae\x77\xf3\xe5\x48\x22\x44\x72\x2d\x11\x94\x11\x72\x25\x8c\x7e\x9e\x2e\xa4\x95\x70\x8c\xf0\xc7\xf3\x4d\xf9\x39\x51\x2d\xc2\xbb\xa7\x29\x86\x11\xa7\x65\x08\xe3\xfc\xbb\xf4\x55\x5a\xdf\xb2\xd0\xb7\x46\x7d\xf1\x71\xc1\x66\x42\xf0\xfc\xb6\xcb\xeb\x54\x3b\x08\xed\x21\xf9\x0f\xef\x8f\x75\x13\x94\xba\x1b\x12\xff\x9b\x9e\x8e\x1e\xec\x0e\x38\x15\x47\xd0\x1c\x1e\x5f\x7e\x45\xab\x94\x10\xfd\x72\xdf\x88\xfa\xd1\x1d\x34\xf6\xfc\xb5\x6f\x7c\xf2\x0b\xc2\x32\x01\xa9\x6b\x5b\xcb\x5f\x10\x24\x4f\x1e\xd3\x4a\xbe\x73\x91\x41\xc2\x01\xb6\xb1\x84\x5d\xd1\x0c\x7a\x4f\x32\x21\x8b\xc3\xb2\xe8\x1f\x66\x9a\x39\xcd\xfe\xba\x37\x98\x81\xb2\xc5\x52\xe1\x3d\x81\xd5\x04\x97\xf6\xcf\x23\xa6\x13\x18\xab\xaa\xbf\xea\xcb\xe1\x49\xa0\x9d\xe5\x25\x47\xee\xd7\x11\xdc\xb3\xb5\xaa\xd6\x5f\xae\x61\xd0\xa2\xf5\xfb\xc2\xe5\x77\x8d\x04\xeb\xca\xa5\x89\xdd\xe2\x55\x84\xf7\x35\xda\xd6\x83\x8e\x65\x84\xfa\xfc\xdf\x4f\x3f\x46\xc4\x11\xd6\xa6\xbe\xd4\xd8\xf4\xa8\x8c\xb0\xa8\xec\x64\x56\x3f\xd8\x08\x6b\x72\xa7\xae\x34\x7d\xf6\x88\x70\x4f\x7f\x5b\xa3\xcf\x78\x0d\x61\x6c\xe8\x75\x9e\x52\x5c\x3d\xc1\xf4\xfc\xf3\x07\x4e\x01\xd7\x08\xdf\xc3\x46\xbc\x7c\x27\x26\x8e\xee\x2b\xa5\xf7\x4e\x9c\x25\x90\x70\xd1\x2a\x95\x4d\x97\x09\x1e\x97\x8d\x8a\x94\xd8\x4e\x11\x42\xcd\x5e\x36\x54\x3b\xb5\x33\xb8\xd1\x50\xce\x1b\xfe\xca\x98\xc1\xca\x28\xb5\xa9\xfc\x56\xdb\x09\x7c\xea\x9d\x1b\x5e\x7e\x52\xfb\x5f\xe8\x9b\x33\x67\x30\x88\xcf\x98\xf0\xaa\x67\x3e\xa3\x9e\x55\xc9\x60\xe6\x06\xd9\x55\xae\x5f\xa3\x08\x79\xfc\x2c\xee\xcb\x9c\xa2\x04\x1f\x5b\xe1\xbf\x19\xc5\x52\x84\x6f\x8b\x56\xb8\x1f\x34\x97\x9f\x54\xbc\x7c\x0f\x06\x35\xfd\x7a\x5b\x8b\x65\xaa\x59\x49\xa6\xc5\xa9\x84\xa7\x22\x16\x6e\x53\x15\x82\x08\xb6\xcb\x44\x43\x83\x74\xa2\x09\x0a\x9a\xaf\x34\xfe\x83\xfb\x1d\x7e\x45\xc1\xe4\x63\x84\xfb\xf1\x27\x9b\x67\x25\x5f\x23\x78\xdb\xd4\x47\xf0\x5f\xba\x46\xf0\x4d\x9c\xbe\x95\xff\xd7\x3e\x82\x58\xe5\xae\x93\x0a\xee\x85\x0c\x36\x28\x72\xaf\x0b\x5b\xba\x87\x90\x96\xfb\xa2\xd4\xf6\x71\x00\x03\xaf\xe8\xeb\x03\xb5\xc9\xaa\x84\x8f\xdd\x2a\x27\xaf\x3b\x3a\x30\x78\x7e\xcb\xc9\xaa\xef\xbc\x16\xe1\xce\xcb\x1f\xc9\x81\x4e\x91\x84\x3d\x5b\x7b\xc3\xe3\x6d\xd3\x08\x0b\xd5\xaf\x5d\xab\xb1\x97\x20\x9c\xf6\xfd\x7a\x75\xd9\xa9\xfb\x2c\x84\x7d\x92\xbb\xa6\xc7\xd4\x11\xa4\xd6\x77\xf3\x8e\x28\xba\x32\x88\x09\xd1\x58\x10\xec\xec\x4b\xc8\x18\xd4\x0b\xae\xfc\x31\x48\x10\x4b\xb4\x17\xcb\x78\x99\x46\x10\x32\xf8\xf3\x22\xcf\x38\x8d\xb0\xfe\xd3\x4f\xa5\x4f\x9c\xb6\x84\xcc\x3c\xa3\x8e\x3d\xbb\xa2\x98\x7f\xa5\x40\xa3\xd5\xf0\x99\xb5\x09\x21\x61\xf6\xed\xb9\x31\x1f\xeb\x08\x2e\x1e\x33\xaf\x26\xb4\xfa\x10\x02\x37\x74\x86\x2d\xba\x62\x46\x90\xd6\x7f\xa0\x3e\xfa\xe0\x0a\x83\x1b\x12\xbf\x7b\x8b\xb5\x8b\x08\x55\xcb\x0a\xc2\x9b\xaa\xf5\x08\x8f\x55\xe6\x0b\x0c\x9c\x4f\x25\xcc\x8c\xd0\x5c\xe2\x7c\x6e\x1f\xc1\x80\x5f\xf8\xde\x67\xf6\x3c\x82\xfe\xdb\xc3\x53\x56\xde\xde\x42\xf8\xd1\x53\x5b\x95\x7d\xee\x22\xc1\xe4\xf4\x8c\x30\xc1\x89\xc2\x7b\xfb\xee\x6b\xe5\x6d\x4e\x84\x1a\x5f\xc9\x36\x05\x57\x11\xc2\xaf\xa0\xdf\x71\x8d\xdf\x0e\x12\x0c\x03\x6f\x0d\xaf\xf1\x56\x27\x28\x4b\x73\xbf\x8c\x5a\xa5\x30\x09\x15\xa6\x96\x4b\xc4\xee\x4d\x9f\x84\xc3\xf5\x4b\x62\xa7\x4c\xf9\xc1\x42\xa4\xee\x97\x5a\xb3\x88\xe5\x84\x68\xf1\xb0\x69\x67\x74\x36\x4f\xc2\x77\x1b\x5d\x2f\xaf\xea\xfe\x5a\x70\x48\xb9\x2d\xc8\x7e\x61\x4f\x50\xf6\x7e\x70\xb4\x20\xb5\x8b\xc1\xd0\x91\x47\x71\x82\x33\x1a\x08\xb5\x8e\x4f\x9f\x6d\xba\xdc\x38\x09\xbd\x1e\x19\xa1\x2a\x69\x8d\x04\x13\x91\xe6\xd6\xff\xca\xfe\xf1\x46\x83\x5a\x8a\x26\x9c\x5d\xc6\x6a\xbe\xda\x7b\x8e\x50\x36\xfb\x59\xad\xdf\x7d\xcf\x49\xa8\x31\x15\xe4\x35\xcd\xd7\x26\xf4\xde\xd5\xe7\x75\x7c\xa3\xc6\xa0\xb7\x5c\xa6\xf8\xd4\xf3\x06\x42\x8f\xfa\x5e\x1f\x76\x5b\x7d\x82\xac\xf3\x01\xa9\x9f\x2e\x0c\x83\x1e\xf1\x15\xef\xde\x1a\x6c\x27\x98\xac\x3e\xff\xd9\xb2\xdd\x8e\x10\xc4\x7e\xef\x5a\x71\xb3\x0d\x61\xb0\xcd\x3b\xd8\x6b\xc6\x12\x82\xc2\x6a\xdf\x72\x8b\xbe\x44\xe6\x5f\xe1\x29\xad\xb3\x77\xb5\x1a\x62\x21\x4e\x48\x47\xdd\x8b\xff\x33\xa1\x4c\x36\x5f\xe3\xc7\xe5\x7a\x82\xe0\xd8\xd7\xad\xfd\x6b\xbe\x12\xb2\xce\xef\x1c\xce\x9f\x80\x98\x52\xbf\xc9\xfd\xe9\x0d\x84\x88\xb9\x0f\x4f\xed\x3f\x7f\x9e\x50\x3e\x77\xa4\x6a\xfb\x91\x62\xc2\xa3\xeb\x73\x8a\x2a\x78\x0c\x19\x30\xe2\x67\xe6\x89\xb9\xf1\x13\x96\x37\x0b\x1d\x5c\x7a\xc9\x8c\xfe\x15\x81\x38\xc3\x79\x26\xaf\xbe\xb1\xe0\xbf\x42\x61\x5e\x98\x8e\xe1\xa4\xe2\xf2\xf8\xd0\x40\xc9\xfc\xbe\x5a\x0c\x0f\x95\x46\x04\x34\xac\x64\x20\xa6\xa6\x1a\xf1\xcc\xe3\x35\x0b\xce\xae\xdb\x84\x22\x84\xa6\xd1\x3f\x0c\x2e\xf2\xe8\x4b\x28\xf8\xc3\x82\x6a\x5b\x6d\x33\x5b\xb6\x1c\x21\xcd\xf2\xf0\xaa\x53\xb1\xc3\x2c\xac\x2c\x08\x97\xbc\xd7\xf8\x6b\x12\x2e\xbf\x3d\x7e\xb6\x8f\x7b\x2a\xa1\x9f\x73\x73\xfe\x6c\x71\x0f\xc2\x9f\x0d\x57\x8a\x0e\x96\xed\x25\x7c\x16\x15\xb5\x7d\x98\xdf\x44\x58\x20\xb9\x58\xb4\x63\x02\x46\x87\x95\x7d\xfe\x2b\x45\xde\xe7\x85\xc2\x7d\x1b\x08\x46\xf1\x6b\x0d\x67\x76\xb5\x31\xd8\x7f\xae\xa7\xdb\x34\x20\x8d\x01\x44\xf3\xf3\xdf\x6a\x84\x13\x74\x16\x69\x5c\x66\xea\xcb\x08\x2e\x43\x2b\x67\xca\x0f\x56\x10\xb8\x3f\xa8\x49\xc7\x0d\xf4\x10\x6e\x6d\xf3\x7c\xfb\xfb\x6c\x1d\xa1\x44\xb1\xc9\x2d\x69\xfe\x20\x41\xff\x94\xa5\xce\x51\xce\x77\x84\x8c\xb9\x3f\xeb\x85\xda\x07\x08\x4f\x3f\xd6\x2d\xbc\x13\x55\x47\x30\x8a\xf3\x0b\x5f\x32\x51\xba\xf4\xc6\x73\x25\x8b\x1e\x13\x3e\x76\xb9\xcf\xae\x0e\xbd\x49\xd8\x96\x60\xb6\x25\x46\xd2\xe5\x7f\x41\x3e\xb9\x4a\xef\x61\xea\x01\x82\x4b\xdc\xf8\xec\x0f\xe7\x9c\x27\x4d\x9e\x86\xfb\x8d\xa6\xb1\xa5\x11\x96\x39\xbb\x55\x2e\x56\x48\x25\x54\xfa\xaa\x24\xc4\xa9\x55\x12\x14\x8f\x8f\x9a\x72\x4d\x94\xff\x2f\x7c\x5f\xb3\x87\x68\x7d\x3f\x4e\xe8\xf5\xda\x72\xc8\x5f\xdb\x8a\x20\x9d\x3f\xed\xa2\x49\x41\x39\xa1\xef\x90\xcc\xe5\xa8\x3c\x47\xc2\x8f\xd3\xac\xeb\x51\x97\x6c\x27\x95\x0b\x02\x37\x36\x9d\x98\x71\x8c\x20\xa5\x70\x3c\x76\x46\xb7\x13\xa1\x36\xe2\x5c\x48\xd1\x3e\x7e\xc2\x85\x8b\x63\x5f\xd2\xdc\x4f\x32\x88\xea\x3a\x70\xf1\xb6\x8d\x30\xa1\x78\x5c\xc9\xdd\x50\x4a\x88\xa0\xaf\x72\xfe\xa0\x5f\xef\x29\x42\xac\x80\xb1\xd1\x60\xdd\x27\x16\x52\xa7\x6f\x3d\x30\x54\xc9\x4e\xb8\x94\x7e\x79\x07\x77\x33\x43\xb8\xac\xed\x6a\x33\x2f\x34\x82\x70\x43\x5d\x66\x83\xcd\xaa\x71\x16\x22\x51\x60\x70\xa7\x76\x07\xa1\xcf\x56\x24\x7b\xee\x5e\x4f\xc2\x7c\xb6\xa2\x91\xd6\x85\xfa\x04\x29\x8e\xe8\xf3\x4a\x6b\x45\x09\x57\xe6\x3b\x73\xf8\x73\x5d\x60\x50\xe5\xde\x71\x76\xdd\x33\x5f\x06\x5e\x19\x82\xe7\xf7\xbb\x5a\x10\xfc\xb7\xad\x33\xcb\x69\xd8\x44\x60\x29\x3d\x78\x65\xab\xbf\x98\xb0\x70\xcf\xba\xf3\x81\x6f\xd2\x08\x7a\x3e\x1f\xbf\x6a\xd6\x9f\x27\x2c\x5d\x3b\xe5\xf6\xb2\x0f\x7e\x84\x75\xe9\xe7\x76\x8d\x72\xd8\x12\x1a\x9b\x6f\xac\x55\x10\x56\x25\xec\x38\xbe\xe9\xf2\xa9\x2b\x02\x84\x58\xdd\x90\x5a\x8e\xd4\xd8\x49\xb0\x9f\xb9\xd9\x45\x54\x99\x45\x50\xdb\xd5\x10\xbb\xa2\x4f\x90\x70\x78\xeb\xdc\x1f\x16\x95\x7a\x84\x72\xa3\x9d\x4e\xcd\xfb\x62\x19\x44\x78\x74\xac\xd9\xf3\xf4\x28\xa1\xa4\x67\xd6\x53\xd3\x2b\x47\x09\x58\xbe\x28\x2e\x55\xd5\x9e\xc0\x57\x65\xc2\xbb\x78\xa9\x21\x21\x79\xd7\xa5\x82\x94\xe4\x5d\x84\x81\xc7\x35\x4b\x64\x9d\xfc\x09\x5b\x0c\x22\xc3\xef\x9b\x6d\x23\xcc\x0e\x7c\xbe\x78\xee\x4a\x1b\x06\x77\xe7\x6b\x56\xf6\x4a\xcd\x26\xc8\xce\x57\x88\x50\x7a\x94\x46\xa8\x1d\x54\xff\xdd\x31\xb0\x81\x50\x70\x33\x61\x41\x7b\xb8\x02\x21\x79\xe9\x88\xf0\xcc\xd4\x89\x63\xeb\xfc\xa8\x29\x77\xc2\x78\x09\xf2\x31\x1e\x25\x8a\x76\x11\x84\x08\xf9\xbd\xdd\x2e\x8f\x8c\x08\xe2\xc3\xce\xef\x64\xbd\x0c\x09\x82\x92\xab\xcc\xb4\x75\x9d\x08\x3e\xa1\x4a\xf1\xe1\x39\x37\x09\xb7\xe7\x1e\x97\x1a\xef\x18\x66\x41\xa3\x78\xd6\xa5\x7d\xee\xbd\xb5\x90\xce\xe4\x5b\xb7\x84\x47\x81\x70\xf1\x88\xca\x54\x9d\xf0\x9b\x84\x3e\x5e\x7b\xe5\xde\x43\xf5\x04\x21\xaf\x8c\x6f\xb1\x8b\x43\x09\xab\xab\xd7\x56\x1a\x9f\xf8\xc6\xc2\xc0\xcd\x68\xdf\x16\x63\x41\x82\xa2\x55\xd6\x5c\x0f\x4d\x7e\x82\x8f\xda\x92\xf4\x59\x3f\x33\x09\x7c\x8e\x07\x7e\xad\x8a\x3d\x4a\x98\xfa\xc3\xdb\x7e\xad\x97\x22\x41\xeb\xca\x98\x7e\xc5\x17\x17\x82\xc7\x2e\x93\x85\xfb\x73\x2a\x08\xa6\x8b\x3f\xbe\xfc\x74\xfd\x38\xc1\xb3\x5c\x69\x8d\x54\x5c\x3e\x83\x4d\x1a\x9f\xad\x44\x84\x9d\x09\xed\xae\xa2\xf1\x39\xde\xa5\x0c\x76\x6b\xc7\x5d\xf9\xac\x5a\x4c\x38\x9c\xc0\x76\xa7\xdd\x3c\x80\x30\xbb\x6f\xc7\xc7\xc4\xb2\x42\x42\xf1\x39\xfe\xdb\xcb\x24\xdc\x08\x72\x2b\x5a\x7f\xb1\xf2\x93\x09\xe5\x57\xd9\x67\x70\x48\xc6\x13\xcc\x4b\x92\x0b\x7e\xf9\x9d\x26\x7c\xde\x2e\x20\xeb\x13\xad\x44\xf8\x39\x87\x83\x33\xf6\x3a\x2f\xe1\xa0\xe8\x2f\x3b\x8f\xd6\x5b\x84\x8e\x4e\x91\x9b\x55\x7a\x97\x09\x16\x9e\x7b\x5b\xf5\x3d\x12\x08\xf3\xd2\xb6\xeb\xdf\x3f\xf6\x8d\x05\x0b\x97\xc5\xb6\x57\x63\x17\x13\x86\x9a\x6a\x36\xe7\x9f\x40\xed\xbf\xb2\xad\xe1\xc2\xaf\xb8\x93\x9b\x09\xa6\xec\x8e\xed\x03\x47\xc7\x59\xf8\xed\xb3\xe5\x51\xce\xab\x27\x0c\xae\x36\xc5\x8e\x0c\xe5\x6e\x21\x14\xeb\x94\xfb\x05\x6e\xb7\x26\xf4\xb8\xa5\x55\xb5\x2a\x2d\x20\xa8\xa6\x67\x2f\xe8\x2b\x10\x20\xb0\x8b\x46\xff\x5c\x93\x9d\x4d\x88\x42\xcf\xa9\xdc\xe2\x6a\xc2\x5a\xed\x98\xd9\x23\x05\xd5\x04\xcd\x95\x3e\xee\x52\xf1\xd2\x84\x8d\x3e\x65\xec\x1c\xeb\xf3\x09\xcf\x56\xa5\x2e\xb5\x1c\x54\x20\x6c\x8b\x58\x14\xee\xed\x54\x4c\x38\xa7\xb0\xd8\xd3\x6b\x02\x27\x67\xac\x71\x7a\x23\x9d\x4c\x30\x53\x1b\x5c\xba\xd8\x38\x86\xb0\x7a\xde\x4e\x95\x6d\x51\xc5\x84\xf5\x9a\xbf\xd4\x5f\xbf\xce\x22\x04\x1e\x17\x4c\x8f\x92\xbf\x4d\xb0\xf4\x15\x1e\x08\xd5\x11\x21\x98\xa9\xbc\xfb\xcc\x5a\x71\x96\x81\x7a\xe2\x34\x85\x04\x79\x61\x82\xda\xed\x5b\xd6\x1b\xee\xae\x9c\x84\x8d\x15\xcb\x6f\x18\x73\x97\xb0\x70\xea\xf6\xd5\x88\xcd\x15\x4d\x13\x6f\xcf\xbb\xe3\x56\x17\xd5\x08\xe6\x2f\xfd\x38\x8f\xe9\xab\x10\xe4\xe5\x6f\x9b\x19\x9d\x34\x23\x3c\x7e\xf9\x5c\x5f\x71\xd0\x93\x60\x7b\x5b\x20\x77\x97\xfb\x7e\xc2\x9c\x1d\x0b\xfb\x9a\xbf\x78\x13\xda\x62\x14\x7b\x74\xad\x9b\x19\x74\x4c\x7b\xc7\xce\xdf\x6a\x49\x58\x16\xcb\xf5\xad\x73\xe2\xb5\x28\x18\xbb\xdc\x93\x78\xd6\x9a\x30\xa3\x31\x71\xbf\x7b\x6f\x3c\x83\x20\x0f\x26\xe6\xbf\x69\xf3\xf1\xaf\x0f\xa5\x24\x85\x09\xb7\xa3\x34\x78\xac\xae\x6e\x9c\x54\xa6\xf7\x5b\x5b\xd6\x8a\x7d\x65\x61\x8e\xcd\xc6\x7c\x9e\xea\xd9\x84\x61\x0f\xd7\x3b\xea\x32\x6c\xff\x0b\x5d\xdc\x8c\x6f\xd1\xbb\x5f\x2c\x7c\xc8\x95\xdb\xe5\x1e\x6d\x4f\x98\x23\x18\x34\x67\xea\x6c\x53\x82\xcc\xe8\x5a\xae\x9d\x46\x33\x09\x3d\xc9\xa7\x67\xf8\x44\x5c\x22\x64\xdd\xca\xf6\xfc\x53\x58\x44\x58\x6b\x7e\x76\xb8\xa3\x2f\x87\x01\xcb\xd2\x3f\xf1\xfc\xd6\xfb\x84\xd6\xc5\x5c\xae\x87\xeb\xb6\x12\x8a\xeb\x66\x3d\x10\xe5\x5d\x45\xc8\xea\x4b\xac\xfb\xcc\x6a\x61\xb0\xa4\xa4\xbd\x7a\x96\xfe\x71\xc2\xcd\x13\xed\xb2\x4b\x3c\x43\x09\xbd\x11\x07\x7d\x83\x17\x59\x11\x16\xe7\x77\x4a\xdf\xe5\x50\x26\xb4\x71\x9c\xde\xa7\x6a\xbd\x86\x60\xb0\xe2\xc6\x87\x4d\x13\xcf\x2b\xb3\x07\x6e\x5a\xbe\xb8\xb4\x90\xc0\x19\x7d\xd9\xd5\x39\x44\x85\xf0\x39\xc6\xfa\xab\x98\xa8\x28\xc1\xef\x5a\x7a\x80\xc4\x4c\x2f\x42\xab\xef\x14\xdd\xb6\x97\x3c\x84\x07\x69\xe6\x12\x0d\x13\x27\x58\xbf\x73\x6b\x93\xec\x5e\xc8\x10\xf4\xd7\xde\xe3\x90\x9c\x1f\xc8\xa0\x75\x6f\xee\x80\x90\xd6\x52\x82\xb5\xa4\x13\xcb\x20\xbb\x9a\xb0\xd5\xb4\xd1\xb6\x51\xa0\x89\x70\x40\xf1\xe7\x8c\x96\x67\xa5\x04\x89\x9a\x18\xa7\xff\x26\x95\x13\x15\xc7\xba\x4b\xd5\x08\xe2\x0f\xbf\xb1\x6d\x56\xdd\x4d\x88\x8a\x30\x1b\x72\xdd\x5d\x42\x58\xca\xb1\x75\xa6\xf6\xc0\x09\xc2\xad\x2d\x11\xfd\x1d\x46\x96\x84\x1d\x62\x61\xf2\x3f\x14\x5a\x08\xfe\xfb\x96\x24\x7b\xd9\x28\x10\x14\xb4\xb9\x76\xce\xc9\xe6\x23\x2c\x1f\xea\xda\x5e\xbc\x88\x97\xf0\x62\xf8\xc4\x4c\xab\xdf\x16\x04\x8d\x23\x7a\xb6\xc1\x37\x8d\x08\x66\xc2\x37\xf6\xe5\x85\x95\x13\x06\xd5\x78\x7e\x04\xdf\xae\x23\x70\x7e\x09\x99\x37\xfb\x5c\x19\x21\xe0\xdd\xae\xbb\x1a\xd6\xa7\x27\x61\x9e\x69\x54\xe1\x09\x3e\x2d\xc2\x85\x0a\x1d\xad\xa6\x69\xc9\x0c\x32\x48\xca\x84\x6d\xda\x4a\xc2\x92\x2e\xdf\xe9\x46\x27\xa4\x09\x5c\x31\xa7\xb6\x9f\x8d\xe5\x26\x70\x9f\xca\xf3\x77\x7c\x3e\x48\xc8\x65\x67\x19\xff\xfc\xf4\x84\xb0\x41\x55\x6a\xeb\x7e\xe1\x01\xc2\x81\x38\xbe\x4b\xa5\x4f\x07\x09\x1a\xaf\x96\x88\x27\x2d\x3c\x4f\x18\x9d\x2f\xc2\x9d\x79\xa3\x88\xb0\x6d\xaa\xcb\xc2\xb0\x85\xd9\x04\x11\x65\xb6\x00\x78\xc6\x31\x70\xfc\xbb\x25\x35\xf4\x76\x26\xe1\xfb\xaf\x3e\x26\xb8\x65\x90\xa0\x7d\xf5\xba\x5f\x46\xc1\x20\xe1\xb7\x95\xd0\x6e\x67\xe7\xc7\x04\x37\xe6\xb9\x4a\x4f\x5c\x39\x61\x4e\xef\x56\x9e\xb4\x19\x42\x84\xe3\x67\x1f\x3a\x5e\x69\xa9\x62\xb0\x7a\xf9\xba\x81\x6c\x2d\x3b\x42\xd8\x6a\x43\x46\x24\xdf\x84\xa0\xde\x62\xac\x28\x35\x2e\x4d\x78\xf7\xbe\xa5\xba\x39\x7c\x2e\xe1\xcd\xfe\xee\x64\x03\xf3\x78\x06\xa7\x36\x47\xd8\xb2\xfd\xe6\x21\xf4\x79\x9d\x1e\xe4\xd0\x35\x25\x70\xfd\x6d\x66\x9f\xad\xce\x43\x90\x92\xa0\x75\xbe\xeb\xcb\x08\xcd\xcf\xab\x47\xfd\x27\xf0\xd7\x30\xf2\xf6\x7f\xe8\x5a\xf2\x66\xc1\x7f\x78\xc1\xda\x6c\x7a\xad\x5d\x9f\x20\xdd\xe3\xaa\xf6\x61\xf1\x26\x06\x87\x94\xf9\x57\x59\xfb\x18\xd2\x3f\xc4\xce\xc9\x5e\x9e\x3d\x6c\x48\x50\xe8\xe9\x7f\xb7\x6c\xb1\x24\x21\x6c\xfb\x7b\xbd\x80\x64\x49\x82\xea\xc1\x59\xeb\xbf\x99\xa5\x12\x94\xab\x36\xa4\x54\x1d\xf2\x26\x3c\x79\x3f\xda\xee\x74\xfa\x18\x21\x1a\x63\xbf\xf2\x94\x4b\x09\xca\xee\x9a\x95\xdb\x57\x9f\x26\xf0\x4a\x6b\x39\x3a\x2f\x4f\x21\x04\xf1\x0b\xdd\x11\x17\xfc\x9f\xe0\x7f\x24\x5b\xed\xb6\xc8\x86\x10\xff\xf9\x4a\x6a\x42\xb1\x3f\xe1\x36\x67\xfb\xf0\x9d\x30\x9b\x49\x53\xe6\xa9\xa9\x7f\xf5\x06\xb4\x08\x0b\x3c\xc7\x2d\x6b\xbe\x15\x11\x3a\xed\x04\xcb\x16\xa4\xce\x26\xbc\x15\xe9\xf3\xac\x9f\x69\x4b\x88\xae\xed\x99\x22\x29\xbe\x9c\xb0\xf5\xd2\x47\xb5\xdf\xcb\x7f\xb2\xb0\xeb\xae\x79\x9c\xbd\xa7\x12\x21\x20\xe0\x77\x99\x9d\x14\x11\xde\x0b\xbd\xdb\x63\xd9\x7b\x9d\x70\xb4\xe4\xe8\x96\xc7\x19\xf7\x09\xbf\xbf\x58\x8a\xff\xa8\xc8\x27\xec\x0b\xfb\xfd\x66\x6a\xf4\x0d\x42\xc2\xe1\x57\xef\x6c\xd3\x9a\x27\xde\x95\xb7\x7c\xf3\xdb\x06\x09\xca\x0d\x07\xad\xfe\x2b\x29\x5b\xba\xd7\x39\x79\xec\x23\x1c\x0c\xfb\x9d\xff\xc0\xc6\x91\x10\xfa\xb0\xf1\xd0\xcc\x58\x27\x82\x93\x0e\x4f\xf7\x57\xb7\x08\xe6\xdf\x35\xa7\xd9\xa4\xfa\x5d\xbe\xc5\x32\x88\xe7\x4f\x92\xe5\x7a\xa2\x40\xb8\x7e\xe4\x64\x91\x86\x66\x34\x41\xbf\xba\x7e\x6b\x78\xd5\xc5\x49\x65\xc3\xac\x64\xb6\x65\x7b\x96\x10\x1c\x56\x27\x57\x2e\xec\x5d\x47\x08\x1f\x10\xef\x54\x18\x4c\x21\x3c\xd9\x6e\xb7\x70\xcb\xb6\x00\xc2\xa8\xa4\xb9\xbc\xcb\x3c\x13\x02\x6f\x7f\xc4\xec\xbc\x1f\x2d\x84\xa2\x48\x8e\x07\x05\x13\x50\x09\xcf\xd6\xcf\xb2\xde\x47\x28\xb9\x58\x76\x61\x70\x46\x1d\x83\xdf\x6f\x39\xaf\x77\x77\x47\x30\xb0\x6c\xa9\x39\xd0\xfc\xb2\x9e\x70\xba\x39\x9f\x77\x1f\xf7\xf4\x3a\x38\x6e\x9c\x55\x3b\xe7\x6d\x3d\x81\x4b\x6c\x6f\xe0\x61\x05\x4d\x82\xd8\xd8\x9a\x84\xb3\x4b\xc5\x09\x2a\xe9\x6c\x4e\xf6\x1f\xb6\x12\xa4\xd8\x6e\x65\x2d\xd1\x56\x23\x24\x70\x2e\x1f\xfa\x69\x57\x4a\xb0\x75\xdf\x58\x66\x37\x73\x33\xe1\xe3\x8f\x0f\x32\x67\x02\x2e\x32\x58\xc0\xb1\x33\xd0\xe1\x79\x35\x21\x65\x41\x74\xb0\xed\xbd\xeb\x04\x85\xb1\x2c\xfd\xf1\xe9\x29\x84\xb6\x62\x8e\x19\xf6\x3c\xc7\x09\x7e\x42\x49\xba\xaa\xc9\x36\x84\xfc\x43\x4b\xab\x83\xe6\x9f\x20\xb8\x3f\xba\x13\xdc\x9b\xe8\x4f\x28\x71\xfa\xb3\xe8\x88\x9f\x39\xc1\x5f\x60\xd5\xd1\x7d\xf7\x5c\x08\x99\xfe\xc3\xa9\x0d\x1b\xb2\x18\xac\x48\x3d\xef\xff\x81\x5d\x9b\x70\x94\xe7\xa9\xdd\x8b\x59\xc9\x04\xcd\xd9\xea\x97\x0d\x43\x62\x09\xcd\x73\x6a\xc7\x0d\x06\x34\x08\x6f\x15\xf9\xc2\xb6\xf4\xf3\x4c\x42\x5b\x96\xd7\x8b\xd7\xd3\x06\x59\xf0\x3a\x22\x7f\x59\xc2\xad\x9e\xd0\x90\xa0\x76\x2c\x75\xc3\x51\xc2\xd1\xbb\x0d\x12\x12\x86\x4d\x84\xe1\x94\x87\x0e\x12\xd1\x4f\x09\x5b\x0a\x06\xf8\x8b\xdf\xdc\x23\xdc\xff\xe0\xe7\x9c\x9e\x9a\x4e\x08\x38\xcb\x08\xae\xf9\x71\x8a\x81\x44\x1d\x4f\xe3\xe2\x4d\x6d\x84\x33\xc6\xbf\x2f\x6e\xdd\x20\x4f\x50\x28\xbb\x61\xee\x30\x6b\x2f\xc1\x87\xfd\xd6\xd0\xba\x14\x0e\xc2\xd5\x7c\x6f\x87\xcd\xeb\xdd\x09\x5d\x3e\xa3\x32\xdc\xd9\x31\x84\x5d\x5d\x77\x82\xd6\x27\x76\x31\xf0\x57\x7f\x3d\xf5\x10\x2b\x86\x90\x65\x7b\x55\x33\xc6\xed\x1c\x41\x24\xa3\xfc\x7b\xda\xe0\x6a\xc2\x33\x8f\xea\x51\xdd\x65\x01\x93\xa0\xf2\xe4\x60\x1e\x45\x9c\x20\x58\xef\x96\x73\x8b\x79\xb3\x99\x70\x77\x96\xd6\x87\xad\x5a\x0b\x09\xd9\xcb\xbf\x3d\x5e\xfb\x7a\x2d\xe1\xa4\xee\x3a\xb7\xb3\x11\x2b\x08\x63\x67\x75\x3c\x42\x6e\x69\x10\x36\xde\x33\x79\xe3\x52\xa8\x39\xa9\x04\xf8\x59\x7d\xfb\x71\x4c\xe4\xff\xc4\x38\xf3\xe3\x73\xf4\xb5\x4f\x2c\xa4\x2c\x3f\x3b\xe5\xb6\xeb\x52\x82\x7d\x88\xe8\xfe\x05\x26\x17\x08\xdd\xfb\xd2\xae\x3d\x0e\x5d\x49\xd8\xd6\x21\xba\x71\x77\x4e\x21\x41\xcd\x61\xa9\x3c\xf2\x32\x08\xa7\x1a\xee\x7b\x9e\xda\x51\x49\x58\xde\x94\xf3\xae\x63\xd3\x7d\xc2\xd4\x9b\x67\x1c\x47\x27\xa6\x25\x5f\x13\x3c\xeb\x2f\xdd\x67\xe1\x58\xaa\x98\xcb\xfa\xab\x39\x84\x81\x4f\x43\xdd\x55\xcd\x37\x08\x79\x63\xc1\x8b\x79\x8f\x1d\x26\x34\xad\x4d\x63\xed\x12\x61\x18\x68\x27\xa4\xde\x4f\xbf\x74\x9d\xa0\x98\x28\xeb\xe2\x1e\x78\x9e\x90\x1b\xa5\x7d\xdb\xe6\xc3\x0d\xc2\x83\x56\x49\x33\x75\xa6\x93\xf0\x5a\xce\xd9\xd5\x71\xa2\xec\x17\x64\xd7\xb5\x19\xfd\x5c\x8b\xfe\x7d\xd2\xf9\x09\x9a\xd2\x04\x89\xd2\xa1\x20\xc3\xb3\x1d\x84\xb6\x59\xfb\x7f\x1b\x4c\x60\xa7\x86\x5d\xe1\x5d\xd7\x06\x82\x6c\x54\xce\x0f\xd3\xfe\x4d\x84\xe5\x1f\xaf\x4d\x55\x76\xde\x49\x78\xe7\x34\xd2\xaa\xdf\x6c\x4b\x78\xd8\x17\xb8\x59\xb8\x5d\x8e\x01\x1f\xbb\x4c\xd2\x56\xb1\x5c\x06\x67\x6f\x72\xfc\x72\x3a\x55\xc0\xc2\x03\x89\x3d\xbc\x2e\x2f\xee\xb2\xf0\xd8\xa7\x56\x8c\x57\x44\x99\xe0\xa1\x26\xc3\xcc\x1f\x13\x99\x84\xa5\x6f\x13\xd8\x9b\x64\xda\x08\x65\x99\xcb\x9d\xaf\xef\xa8\x21\x68\xbf\x66\xb3\x9d\xdd\x51\x4f\x50\xdd\x21\xf0\x38\xf8\xe7\x37\x16\x86\x4a\x0f\xa9\x79\xeb\x9a\xd2\xd8\xc7\xf5\x5b\x9f\xa4\xd6\x11\x32\x8f\xcc\x98\x2a\x3b\xbf\x98\xc0\x62\xff\xfd\xb1\x85\xd3\x8e\x70\x4e\x3d\x79\x61\x78\xe0\x41\x42\x4b\xfb\xcb\x79\xb5\x2a\x7a\x84\x1d\xe6\x0f\x82\xbc\x3d\xf7\x10\x0c\xce\xcf\x7c\xa9\xbe\xa2\x8e\x41\x46\xdd\x7b\x31\x53\xef\x0c\x06\x57\x7d\x57\x2b\x3e\x77\x3f\x49\x38\x26\x63\xb2\xf1\xe3\xde\xdd\x84\xe9\xe2\x5a\x2b\xd6\xa7\x46\x31\xb0\xf3\xda\xd2\x66\x69\x76\x88\x41\xe5\x57\xaf\x87\x57\xe5\xb6\x10\x02\x36\x0a\x7f\x3e\xb1\xca\x8d\xf0\x9d\x09\x28\x8b\x9d\x1d\x3a\x69\x2a\xf8\xb8\x42\x4e\xa8\x7b\x09\x41\x76\xfa\xc0\xa5\xbf\x87\x9c\x08\xab\xe7\xeb\xbb\xbf\xb2\xb9\x46\x70\xd4\x5c\xa1\x23\x3c\x31\x09\x7b\xf9\x3c\x37\x3b\xf5\x86\x05\xd7\xd1\x67\x12\xad\x07\x78\x09\x06\x8f\x9b\x6a\x9e\xdd\x12\x27\x30\xbc\xd3\xab\x25\x63\x17\x10\xb4\xc3\x6d\x63\x85\x2b\xff\xb0\x30\x12\xf9\x6c\x53\xe8\xf1\x31\x16\x84\x3e\x3d\x12\xbf\xa5\x32\x8f\x20\xb1\xa0\x57\xfc\x57\x9b\x30\x41\xbd\x43\xe4\x9a\x3b\x7b\x34\xa1\x50\x2a\xab\xe2\x70\xd3\x45\x82\x85\x7d\x7e\x31\xdf\x9d\x07\x0c\x9e\x47\xd5\x07\x65\x16\x9e\x24\x34\xd0\xb2\x9b\xe7\x43\x3f\xb2\xb0\x55\xf0\xab\x24\xcf\x11\x5e\x42\x40\xf2\xdd\x96\xc4\x20\x79\xc2\xf0\x31\xdd\x11\xb5\xb7\x42\x84\x3a\xf9\x36\x83\x87\x27\xc7\x59\x38\xba\x42\xbf\x6e\xc6\xc1\x17\x2c\xe4\x55\x88\xb9\xaf\xef\xce\x64\x70\xdf\xb1\xf4\xa8\x49\xdd\x19\x42\x7b\xe4\x82\x9a\x8c\xdb\x26\x84\x96\xaa\xfd\x12\x1a\xbb\xbe\xb1\x30\xf3\xec\x5c\x69\x46\x33\x90\xf0\xf3\xe0\x21\xe5\xad\x9e\x3c\x04\xf5\xfb\x69\x45\x19\x56\x45\x2c\xbc\x5e\xb1\x80\xae\xdd\x4f\x25\x78\xf4\xda\x0c\xae\xf8\xa8\x4a\x48\x59\x61\xf6\x3d\xe9\x3b\x1f\xc1\xe9\xa8\x98\x51\xbe\xc2\x26\x82\xd2\x5b\x97\x35\x2e\x39\xf7\x19\x4c\xbf\x72\x25\x5a\xa2\xf4\x0f\x0b\x95\x4e\x71\xfa\xee\x37\xac\x19\xac\x3e\xe2\xf0\x35\x75\xad\x06\x21\xfa\xa1\xaa\xa0\xef\xc6\x0a\x42\x8d\x1d\x4f\xf8\x75\xfd\x4b\x0c\xaa\xd8\x4b\x15\xfa\xb3\x12\x19\x74\x4a\xdc\xe2\x58\xeb\x93\xc8\xe0\x99\x68\xee\x94\x2b\xa3\x25\x84\xd6\xc3\x98\xd7\xcd\xb5\x82\xf0\x7e\x39\xbb\x61\xbd\xa8\x03\xa1\xfa\x1b\x3f\xaf\xc5\x6d\x55\xc2\x3a\xdf\x88\xab\x1b\x52\xff\xb0\x70\xa0\xea\xb7\xec\x0d\x9f\x2e\x16\xc6\x2e\xdc\xb8\xe8\xb2\x4a\x9d\x90\x18\xb9\x38\x3c\x41\xd6\x8e\x60\x66\x9f\xae\x5d\x1b\x1a\x4b\x90\x5b\xbb\x47\x35\x7b\xe2\x5b\xfe\x7f\xf8\xce\xf9\x54\x73\xb6\xdf\x01\x82\x8d\xdd\x6f\x59\xae\x2d\x31\x84\xaf\x5c\x82\xd1\x18\x4f\x27\x9c\xc9\x29\xb1\x13\x6a\xc9\x20\xe4\x8c\xcf\x92\xb0\x7f\xf5\x95\xd0\x99\x7d\xad\x52\xbb\xa3\x88\x10\x72\xd3\xb1\x5b\xd7\x91\x21\x88\x0b\x72\x32\x82\xe2\x43\x04\xb3\x0a\x2b\xee\x93\xfb\x5f\x11\xf8\xca\xb4\xe3\xd4\x26\xa6\x54\xab\xf2\xbe\xc4\x54\x53\x06\xf9\xc5\x6a\xad\x09\x0a\x76\x84\x4b\x42\x23\x92\xf7\x0f\x1c\x64\xf0\x8b\x3b\x67\xee\x80\xac\x3b\xa1\xbc\xf1\xca\x03\xdf\xd4\xc6\x49\xd7\x2c\xcd\xdf\x9a\xf4\x5b\xc2\x92\x60\xf7\xbe\x4e\xc0\xe8\xb6\x03\x61\xfe\xaa\xd4\x4f\xc3\x95\x17\x09\x11\x02\xa1\x5d\xd3\x3f\xee\x23\xbc\x8f\xf3\xb9\xf7\x2c\xcb\x98\x70\x38\xc7\xd8\x9f\x2d\xe3\x24\x83\x76\x97\x59\x57\xed\x75\xd3\x09\x32\x36\xc1\xdb\x36\xa5\x54\x10\x1a\x5c\xf2\xe9\x57\xe3\x41\xc2\x58\xc8\xb6\x4a\xb5\x46\x45\x82\xdb\xd5\x0a\xa3\xcc\x59\x1b\x09\xd9\xd0\x4c\xf9\x48\x35\x0c\x0c\x87\x76\x78\x1a\xb9\x2f\x21\x28\x7b\x3f\x0b\x0f\xd0\x4d\x67\x70\xe8\x6d\x79\xea\x2d\x41\x11\x82\x4c\x7e\x71\x90\x73\x92\x2c\x41\x69\x8f\xab\xe5\x29\xf5\x7b\xac\x7f\x08\x35\xbf\x1c\x1c\x69\xd9\x55\x0b\x6f\x0e\xeb\x47\x89\x41\x3d\x0c\x96\x5b\x3f\xd7\xf9\x0f\xd2\x47\xfb\x22\xf8\x46\xbb\x19\x48\xd6\x45\xbc\x38\x1b\xd4\x40\xa8\x73\xdd\x2b\xf9\xe3\xc0\x71\x42\xd8\x74\xfb\xe4\xd4\x4e\x0b\xc2\x6b\x59\x1d\xe9\x70\x5b\x3d\xc2\x97\x9d\x0d\x0d\x83\x7f\xbf\xb3\x10\xfc\x72\x6d\xfe\xc8\x06\x3e\x82\xd0\xba\xab\xeb\xd6\x8e\xbb\x10\xea\xf7\x4c\x17\x48\xce\x58\x4c\x58\xcf\xbd\x7c\xcf\xcd\x17\xc2\x84\xed\x4d\xa7\xae\xc6\x4e\x7c\x54\x56\xca\x0c\x36\x3f\x7e\xee\x4d\x98\x65\xb1\x31\x69\x7d\x4e\x34\x21\xa5\xf5\x66\xdb\x97\xab\x07\x08\x3a\x17\xd6\x16\xb1\x2b\x64\x31\x78\x9d\xb5\xe2\xcd\xe2\x37\x5b\x08\x1c\xcb\x36\x66\x9c\x29\x17\x22\xec\xf5\xf7\xbb\x3b\x93\xef\x26\xa1\xdc\x71\x9c\xef\xa2\x49\x2d\x61\xfd\x5d\x46\x31\x5e\x3f\x9f\x30\xec\xce\xbf\x42\xac\xba\x9d\x50\x75\x6a\xdb\x7b\x2d\x81\x53\x84\xf3\x2b\x83\xaf\x2d\xba\xe6\x4b\x78\x77\x78\x64\xcf\x83\x6e\x05\xc2\x92\xe9\x6b\xbd\xfe\xf4\x34\x33\x48\xfd\x24\x67\xb5\x6e\xe9\x6a\xc2\xd1\xb4\xf3\x76\x37\x96\xbf\x60\xe1\xf5\x47\xa9\xa9\x8b\xac\xb9\x09\x15\xa7\xab\x97\x1f\xf9\xf3\x9e\xc1\xdd\x4f\x3e\x27\x4f\xec\x49\x64\xf0\xdb\x65\x7c\x71\x71\xcd\x6a\xc2\x8b\x23\x6a\xdb\x8a\x4a\x64\x09\x9e\x9b\x7f\x15\xcf\x6c\x76\x9c\x84\x34\xb9\x40\x29\x1e\x5d\x09\xc2\xd4\xf0\xe9\x81\xb1\x4e\xc2\x84\xa7\x56\xaa\x4f\xf9\x3d\x07\x59\xc8\xaa\xba\x52\x9e\xfd\x34\x8f\xc1\x21\x99\xf9\x8f\xf6\x34\x39\x10\xfc\xdb\x43\xb5\x9f\x96\xef\x24\xc4\xde\xed\xaf\x6e\x6d\xcc\x20\xa8\x5f\xa5\xaa\xa4\x3f\xf5\x93\x90\xf3\xdd\xf0\xc1\x7f\xb0\x5e\x59\xbe\x56\xa6\xc2\x80\xb0\xee\xea\xa9\xad\x7b\xa4\xbc\x18\xec\xaa\x2f\xe0\x0f\x63\x79\x12\x44\xfe\xf2\xcd\xab\x7e\x66\x48\x90\x3f\xa1\x39\x6b\xee\x39\x03\x42\xc4\x91\x4f\xf6\xab\x1e\x76\x11\x6e\x5c\xf7\x18\xe2\x0d\x97\x20\x48\x49\x6d\x78\xab\xfd\xe6\x17\x0b\xfb\x9b\x02\x74\xca\x52\x8f\x30\x90\x7f\x5e\xb1\xf1\xa8\x89\x13\x41\x78\xcd\xb6\x98\xc4\x91\x34\x82\xef\x86\x69\x1b\xca\xbe\x56\x13\xf2\x6c\xb2\x6e\x27\xe8\x4e\x21\x4c\x3f\x75\x71\x5d\xf1\xc3\x95\x04\x5b\x3f\x8b\xbf\x69\x23\xd6\x04\xa1\x17\x3e\x3d\x9c\xa9\x7e\x0c\xf4\xac\xad\x2e\x0f\xcd\xc9\x24\x0c\xf4\x7d\xdd\x2a\x98\x5f\xc0\x20\xf0\xd4\x4d\x95\x66\xee\x4c\x42\xfc\x57\xa1\x45\x0b\x36\x88\x13\x9a\xc3\xcf\xf9\x3f\x18\x99\x4f\xd0\xd1\x38\x13\x3b\xed\x1b\x1b\xc1\xdf\x32\xee\xb4\xc9\xc9\x77\x2c\x7c\x9c\xc5\x7b\xe1\x69\xcd\x42\x82\x62\x44\xb0\xc8\x1f\xc7\x7d\x84\x1e\x26\x6f\xea\xa0\xf2\x42\x42\xdd\x8b\xa9\xdb\x1f\xec\x71\x23\xa8\xd8\x8e\xc7\x1d\x92\x93\x25\xec\x70\x13\xf8\xfe\xba\x77\x27\xe1\xfd\xb8\xa2\x9c\x25\xd7\x1c\xc2\x42\x81\x43\x29\xf7\x57\x1d\x20\xac\x35\xd3\xae\xfb\xdd\xc1\x49\x68\xd3\x78\x65\xc5\x26\x31\x9d\xb0\x94\xbd\xc8\xb1\x30\x48\x89\xc0\xeb\x33\x2b\x48\xc1\x68\x0a\xe1\x51\x59\xa3\xf5\x9e\xb1\xc5\x93\x60\x2c\xb1\xd1\xb3\x30\x7e\x1a\xa1\x72\xfe\x91\xb7\x0e\x6f\x66\x13\xc6\x4f\x0c\x9d\x3c\x67\xa9\x4a\xc8\x0c\xcc\xa9\x58\x7f\x30\x64\x12\x5e\x8f\xbf\x8c\x75\xbb\xb6\x88\x70\x74\xfa\x41\xc9\x88\x92\xa9\x04\xae\xc8\x9e\x8c\x64\xbe\x1d\x93\xb0\x41\xdc\x60\x76\xf6\x98\x20\x41\x76\xd5\x3b\xdb\xa2\x98\x0b\x04\x47\x45\xa5\x70\xa5\xcc\xcb\x84\x2a\x67\xdb\x24\x25\x51\x3f\x06\x2d\x36\x11\x4b\x1f\xae\x54\x25\x70\x3f\x37\x6f\x7a\xc6\xb2\x21\x9c\x6b\x93\xd8\x38\x2e\x76\x9a\x60\xc6\xb7\xab\x41\x2f\xe5\x00\xe1\x46\xf6\xd0\xcf\xd8\xb7\x9a\x84\xb8\x73\x62\xae\x7c\xd3\xc5\x09\x63\xfe\x5c\x87\xaa\x15\x46\x58\x90\x2c\xfd\xb8\xc7\xcd\x52\x6a\x52\xc9\x99\xf6\x46\xb2\xaa\x2e\x8f\xc0\xf8\xfc\x28\xca\xaf\x94\x27\x4c\xbd\xeb\x69\x3c\x28\xe7\xc9\xfc\x2b\x87\xde\x39\xf2\x45\x85\x3b\x10\x32\x42\x6c\x03\x4a\x95\x56\x13\x7e\xf0\x84\x3f\x70\x2c\xdc\x44\xa8\xf2\x57\x38\x1f\xd2\xd8\xcf\x42\x92\x7f\xaf\x5c\x61\xc5\x41\xc2\xda\x1a\xad\xaa\xfe\x0d\xd2\x93\xc0\x66\xa5\xb3\x40\xe8\xc2\x54\x82\x6c\x4d\xd6\xd5\xfd\x0b\xe7\x13\x72\x7f\x9a\x89\x49\x59\x73\x4d\x82\x90\x78\xdd\xdb\x93\xdd\xef\x59\x78\xa6\xc0\xce\x83\x63\x07\x08\x1f\xf6\xbf\xde\x79\xcb\x3e\x8e\xe0\x1f\xd9\xfa\x87\x3b\x52\x86\xf0\xc5\x24\xc6\xcd\x6a\xd1\x51\xc2\x85\xde\x71\xf3\x6d\x32\xeb\x09\x7e\xa7\xc6\xc5\x02\xd7\x2d\x21\xe4\x59\x6d\xe3\xe2\xf5\x5a\x43\xa8\x6a\x6a\x37\x73\x35\xaa\x27\x54\xea\x77\x5e\xb5\x6f\x13\x20\x3c\x4e\xcd\xad\xe4\xff\x68\x40\x20\xc9\x2d\xd7\x04\x47\x8c\x26\xe1\x86\xec\xe3\x7d\xfc\x5d\xda\x0c\xe2\x4b\x7e\xb5\x55\x25\x0b\x13\x24\xb8\x4f\x66\xc6\xec\x0f\x22\x6c\x2b\x2e\x29\xdb\xb9\xb6\x82\xf0\xe5\xb8\xef\xbb\xe6\x70\x2b\x42\xbd\x7f\x40\xe5\xeb\x57\x5b\x09\x42\xf6\x4f\x6f\x6a\x47\xab\x12\xfa\xec\xa6\xa7\xb6\x64\xef\x27\x2c\xac\xc9\x3c\x56\xc7\x67\x44\x10\x28\xf5\xdb\x1e\xdc\x76\x88\x60\xb8\xa3\xb5\xda\xc9\xeb\x0b\x0b\x7b\xd3\xcf\xd7\x7d\x75\x9b\x4f\x78\xae\x56\xbe\xf5\xf4\xc4\x89\xef\xff\x95\xce\x2b\xdf\xd6\x34\xca\xbd\x66\x61\x7f\x83\x8a\x35\xd2\xf7\x13\xbe\xc7\xe8\x5c\xd6\xcf\xf5\x22\xb4\x0c\xf5\x18\xff\xcc\xb4\x22\xd8\x8d\x39\x59\x7c\xe2\x30\x27\xbc\xb3\x69\x7a\x64\x1f\xeb\xc1\xe0\x89\x45\x5d\x54\x93\xc0\x65\x82\xbd\xf5\x25\xc9\x85\x36\xa6\x84\x69\xfb\xaf\xbc\x39\xba\xac\x9c\xc0\xc1\xfe\xfe\x77\x38\x57\x09\xa1\x8b\x04\xf6\xbb\x3f\xed\x65\xe1\x7b\xdc\x52\x89\xfd\x51\xe5\x84\xa9\x9b\x05\x6d\xfb\xf6\x48\x11\x6e\xe4\x84\xdd\xcf\xcc\x4c\x23\xcc\x19\x58\x30\x37\xce\xe1\x34\xe1\xb1\x43\x8d\x60\xe4\x88\x01\x61\x8d\x9c\xff\xcd\xf3\x09\xd6\x84\x2a\x89\x8d\x77\xa3\xf6\xea\x13\x0e\x7b\xed\x77\x91\xcb\x13\x22\xc8\x84\xa6\x5a\x0b\x2d\x4b\x20\x6c\xf1\x98\xd5\x1b\xef\x92\x48\x38\xda\xd3\x75\xd9\x46\x37\x8c\x60\x70\xb9\x6f\x60\x7c\xc9\x0e\x42\xbc\xb1\xf4\x89\xef\x0f\x67\x12\xea\x86\x24\x8c\x2d\xf3\x52\x08\x8b\x8e\x26\x6e\x8c\x16\x90\x26\x04\xf4\xbb\xa5\x7e\x4d\xaf\x66\x30\xf6\x7a\x39\x9f\xed\x3e\x63\x42\xf4\x8f\x28\xb6\x95\xf7\xb6\x12\xd8\xff\xbe\x4b\x94\x39\xab\x43\x58\x22\xbc\x23\xa4\xdc\x7c\x3d\x41\x6e\xde\x7c\xb6\x05\xda\x8b\x09\x4a\x25\xb2\x49\xba\x26\xfc\x34\xb6\xe1\x59\x07\x47\x75\x0e\xc1\x2e\x5d\x5e\xe6\xcd\xfe\x13\x84\xea\x63\x8e\x71\x67\x3d\xf7\x13\x96\xf8\x3c\xd5\x4c\x48\x4b\x20\x2c\xdd\xb7\x28\x72\x64\x23\x58\x30\xdc\x27\xaa\x24\xf3\x43\x98\xfe\xe1\xf5\x96\x5a\x47\x27\xa7\x7b\xb5\x78\x75\xc8\x54\x70\xc5\x2a\x1e\x42\xd8\xa1\x8f\xf2\x6f\x8a\xbb\x09\x17\xd3\x9d\x9a\x63\xf6\xe4\x13\xe4\x7e\x7c\x60\xfd\xff\x23\x55\xa9\x76\xfe\xf0\xf5\x28\xc2\x51\x9d\x79\x73\xbe\x27\xfa\x11\x4a\x7e\xaa\x70\xd5\x54\xef\xa5\xb1\xcf\xa2\x1d\x0e\x7b\xb3\x09\x43\xdb\xed\x4b\xa6\x9a\xfb\x11\xe6\xca\x9b\x29\x48\x98\xc5\x12\x16\x7e\xf2\x32\xf9\x72\x5b\x82\x20\xeb\x2a\x76\x47\x6d\xeb\x39\x06\xfa\x73\x3c\x7b\x05\x36\x9b\x12\x1e\x27\x06\x2d\x1a\x0f\xaf\x25\x8c\x0c\x55\x8e\x17\xea\x2e\x25\x6c\x7e\x6c\x20\xdb\x9d\x62\xc4\x60\xbf\x46\xcf\xee\xf7\x26\x7b\x09\xe9\xb9\xd2\xbd\xd3\x7f\x18\x13\x8a\x9d\x8f\x3c\x76\x18\x4d\x9c\x04\xdb\xf6\xcf\x49\x1f\x76\x87\x10\x66\xf9\x9a\xce\x5c\xb3\x69\x0d\x41\xe0\xe0\x8f\x00\xbb\x16\x2d\xc2\x9f\xb4\x32\xdb\x17\xba\x03\x84\x13\xd1\x61\x7e\xb9\xf2\xc3\x84\xed\xbe\x43\x8e\xcf\x26\x8a\xc2\x8b\xb8\xeb\xec\xbf\xfa\x09\xee\xf5\xf6\xcb\xec\x7f\x1e\x21\x38\xf5\x0b\xdf\x7f\x1d\xd4\x47\x48\xda\xdd\x32\x9a\x50\xf5\x85\x85\x99\x3b\x2a\x9e\xcd\xfb\xe3\x49\x18\x90\x09\x5f\x72\x54\xad\x9c\x81\x54\xf0\xbe\x4b\xec\x13\xe5\x40\x80\xb4\xa0\xc9\x81\x70\x06\x17\xc6\xd4\x22\x4b\xce\xf0\x10\xea\x65\x54\x0c\xad\x87\xf4\x09\x0b\x2f\x36\x2a\xaf\x3f\xa1\x4e\x48\x5f\x88\x07\x99\x1f\x0b\x09\x39\x67\xe2\xcf\x76\x4a\xbc\x61\x41\xf5\xeb\x2f\xb9\x70\xbf\x16\x82\x73\x8c\x88\x5c\xd3\x83\x7a\x06\x3c\xfa\x97\x5f\xaf\x51\xd6\xa6\xb1\x2d\xbd\xd9\xc6\x6b\x5c\x09\xe7\x22\x4c\x36\xeb\xef\x2a\x66\xb0\xe3\x5e\xf6\xe1\xdb\x9f\xb7\x12\x16\xab\x48\x7c\x16\x19\xea\x67\x81\x6f\xcb\xa1\xca\x1b\x3d\xbf\x58\xff\x4a\xc4\x61\x67\xc9\xba\xcb\x9b\x08\xc6\xbd\x17\x83\x38\xd2\x25\x08\xec\x0e\x42\x42\x87\x7d\xfd\x19\x5c\x73\xce\x58\x6e\x39\x3c\x95\x50\x20\xfe\xc3\xee\xda\xde\x28\xc2\xd6\x67\x43\x7a\xff\x21\xf4\x79\x69\xd2\xdb\x84\xa3\x84\x80\xbc\x87\x53\x96\x36\x39\x13\xe6\x44\xb9\x46\x0d\x98\x28\x11\xbe\x48\x15\x3e\xec\x11\x9f\x4b\x30\x5a\x2b\x7f\x90\xb7\xf7\x0b\xeb\x1f\x38\xf2\x25\x0e\xde\x90\xee\xab\x85\x3e\x7b\x2c\xdf\x93\x47\x91\x84\x8a\x4d\x97\xca\x0f\x5a\x9a\x33\x30\x8b\xf8\xbb\xff\xe8\xf6\x95\x04\xeb\xa3\xa2\x47\x6d\x4a\x4f\x11\xbe\x0d\xd7\xf8\xdb\xe5\x1c\x24\xb8\xeb\x84\x96\xe6\x6f\x54\x23\xac\x58\xf8\xc1\x5d\x68\xe2\x43\xa7\x37\x89\xe7\xca\xd9\x04\x2b\x82\xfa\xc6\x5c\x2f\xd3\x04\x0f\x82\x85\xf3\x35\x8d\xd2\x3d\x3b\x09\x91\x9c\x8f\xfe\xe8\x09\xda\x12\x4a\x94\xb4\x7a\x7b\xd2\xb6\x10\xb6\x36\x9a\xf6\x7d\x76\xe3\x24\xc8\x69\xc6\x0b\xbe\x97\x50\x25\xfc\x4e\x37\xb3\x5a\x60\xb4\x8b\x10\x29\xc3\x95\xbf\xda\x5d\x9b\x60\x42\x6f\xcf\x8a\xda\x2d\x20\xf4\x0e\xf5\x2f\x37\xb6\x3d\x40\x50\xb9\x7f\x7c\xbb\xfd\x1f\x7d\x82\x70\xcc\x69\x19\xf0\x70\x10\x54\x25\x0d\xa7\xac\xe5\xe3\x22\x3c\x0a\x77\xf5\xe2\xcc\x51\x20\x68\xae\xcc\x36\xbc\x74\x25\x87\xb0\xe8\x92\x0a\x3f\xdf\x77\x61\x82\x62\xb4\xee\x0b\xfe\xac\x77\x2c\x1c\x77\xbd\xb5\x72\xed\xf7\xe9\x84\x5d\x63\x5d\x29\x87\x93\x37\x4e\x42\xec\xbd\xae\x40\x55\x71\x7d\x82\xf9\x94\xb5\xec\x81\xbc\xad\x2c\xf0\x87\xee\xd8\xff\x22\x74\x2b\xa1\x3c\x37\x4a\x44\xb4\x68\x36\x41\xce\xa1\xff\x76\xba\xa9\x1f\x41\xff\xd1\x87\xab\x95\x76\x6a\x84\x94\x4f\x7d\xb9\xd1\xe9\x92\x04\xd3\xbf\x06\xfb\xda\x76\x1e\x25\x44\x19\x29\xb6\x24\x0e\x08\x11\x92\x94\xcf\x69\x0a\xa8\xeb\x11\x16\x67\x24\xcf\xf8\xd0\x28\x42\x38\xae\x17\xde\xcf\x59\x78\x9a\x41\x7b\xe7\xef\x45\x8d\x05\xfe\x0c\xde\xfc\xd9\xd9\x3a\xe7\x68\x00\xe1\x36\xae\x9f\xde\xbd\xd5\x8a\xf0\xde\x59\x5f\xe5\xa5\x7d\x16\x03\x7e\xcb\x5b\xbf\x76\x55\x1d\x22\xf8\x6c\x4a\x69\x0a\xfd\xb5\x87\xf0\xeb\xf8\x1b\xe3\x56\xcb\x8d\x84\x55\xa1\xa1\x47\xee\x8f\x78\x11\xee\x1b\xe9\x11\xbb\x48\x00\x61\x5e\xe4\xb5\xbe\x30\x17\x63\x42\x82\xd8\x85\x92\x75\xfd\xab\x08\x64\xf3\x38\x3d\x76\xe5\x27\x16\x2a\x66\x40\x34\xe0\xab\x05\xfd\x83\x04\xcf\x2b\x85\x65\x4f\xcf\x30\xb0\x38\xd6\x50\x5c\x73\x89\x45\xd0\xba\x28\x56\x34\x75\xe5\x31\x42\xcc\xaa\x67\x52\x62\x16\x9b\x09\x9f\x85\x97\x1a\xb3\x7b\x8b\x10\x6a\x7d\x57\xee\xb0\xb8\x9f\xc7\x20\xa9\xe8\x96\x35\xdb\xb4\xa3\x04\x2e\xc3\x03\x87\x5f\xf4\x71\x11\xfc\xed\x1e\xbf\x19\xaf\x15\x26\xb0\x32\x5e\xad\x54\x98\xb1\x94\xb0\xb4\xa8\x34\x39\x74\xb5\xc1\x24\x34\xd9\xa8\xf4\xec\x1b\x11\x20\x7c\x75\xab\x4e\x2b\xdb\xc6\x43\x08\xf6\xea\xfc\x63\x7b\x97\x8b\xa0\x3e\xff\xaf\xdf\xf4\x64\xbd\x49\xe8\x3a\x47\x1a\x2d\x32\x1f\x58\xd8\x21\x32\xf4\x8d\xa3\xe0\x10\xa1\x54\x2a\x58\x2a\x4d\x22\x6a\xe2\xd5\xd1\xd0\xd5\xa3\x0c\x42\xbd\xea\x32\xc3\x05\x09\x87\x09\xbf\x0f\x98\x8e\x58\x4b\xc6\x13\x5e\x7c\xd8\x12\xac\xba\x6e\x1f\x03\x89\x51\xdd\x53\xad\x0f\xf7\x12\x56\x3b\xfb\x8d\x46\xa9\x5d\x22\xbc\x2f\x58\x32\xf5\x66\xe8\x06\x42\x93\x90\x83\xbe\x58\xd7\x32\xc2\xbe\x5a\x8e\x1f\x5d\xab\xe7\x12\xae\xfb\xde\x19\x96\x1f\xd5\x22\x9c\x5d\x64\x2c\xed\x2b\xa0\x4e\x88\xb5\x9d\x3f\x68\xf0\xa2\xb3\x16\x74\x64\x5a\xf8\xfc\x01\x71\x42\x3e\x4f\xf2\x68\x39\x87\xd8\x24\xbc\xe9\x1b\x3d\x39\xa7\x27\xad\x16\x69\xa1\xc7\x9f\x46\xf1\xed\x24\xdc\x2f\x0f\xc8\x15\x52\xcb\x63\x70\xa6\xf8\xdc\xc6\x77\x73\xae\x10\x76\x2f\x13\xd1\x9d\x35\x24\x4f\x48\x51\x3a\xf1\x57\xf1\x87\x35\x61\x57\x10\xdf\x61\xdf\xfe\xcd\x84\x59\x51\x3b\xbe\xcc\x72\xcc\x22\x74\xff\x3d\xc1\xaf\xcd\xbd\x8f\xf0\x53\xaf\x3d\x31\xf9\x97\x26\xe1\xba\xf1\x85\x81\xe1\x8b\x76\x84\x97\x53\x96\x75\x1e\x9e\x95\x45\xb8\xf0\x24\x3c\x6c\xf9\xb7\x25\x04\x85\xbb\xb9\xca\x8a\xe5\xe2\x84\x6f\xe5\x4f\xc5\x1e\x2e\x5a\x40\xa8\x51\x1d\x7b\xd7\x7c\x7f\x3e\xa1\xd2\xe3\x92\xe9\x1f\x7d\x86\xf0\x64\xfe\xf3\x8f\x3a\x19\xb2\x84\xed\xfb\xca\x14\x5b\x5c\x5c\x09\x0a\x9d\xeb\xd7\x7a\xbf\x8c\x26\x64\x5d\xdf\x68\x7c\xe3\x95\x3b\x41\x4c\x5a\x4e\xc0\x80\xf6\x10\x2a\x3f\xcf\x68\xef\x4c\x3d\x4c\x50\x6b\x5b\x3c\xf3\x8c\xe0\x0e\xc2\x43\x8e\x99\xbf\xd8\x86\xf5\x09\x29\x56\xf9\x62\x35\xf2\xfe\x93\x8a\xd8\xbd\x57\xc7\x7d\xce\x9a\x12\xbc\xa6\x74\x7e\x15\x5d\x6f\x31\xa9\xcc\xe9\x2c\x0d\xe2\x5e\xa7\x4a\x90\x1c\xfa\x72\x62\x5c\xff\x1e\x81\xe5\x45\x86\x33\x34\x6c\x08\x1b\xe4\x2d\x5e\x9a\x0c\x2b\x13\x6e\xdd\xa8\xed\x5b\xc4\x79\x80\xb0\xea\x48\x66\xef\xe7\x97\xba\x84\xf0\x90\x3f\x8c\xc6\xa6\x95\x04\xe3\x14\xb1\xdb\x5f\xfb\x76\x12\xf2\x4f\x34\x2c\xb2\x94\xd7\x26\x9c\xb8\xdb\xc2\x37\x5d\x7e\x15\xc1\x5d\xae\x59\x84\x7a\x1e\xb3\xd0\x12\x9e\xbd\x3f\xb7\xd1\x82\x30\xa6\x3c\xc2\xdd\xb5\xeb\x14\x61\x4b\xed\xd2\xd3\x7b\xb6\x19\x10\xf8\x2e\xcb\xc5\x6c\xf0\xdf\x4f\x50\xac\xac\x0e\x15\x9d\x2d\x4d\x50\x5f\xdf\xa5\x38\x32\xf1\x95\xdf\x49\xdf\xea\xe8\xfc\x96\xc1\xa0\x71\x84\xff\x43\xf5\xbd\x52\x06\x6d\xbf\x37\xf1\x3f\xce\x2b\x62\xb0\xea\xaa\xeb\xaa\xb0\x8d\x42\x04\xe9\xe4\x36\xcd\xce\x73\x65\x0c\x3c\xd4\x84\xf4\xea\xed\xfe\xb2\x70\x3c\x2b\x41\x51\xa6\xc3\x88\xe0\x34\x14\xb9\x2c\xb6\xcf\x80\xb0\xda\x47\x66\xed\x1f\xb1\x5f\x2c\x5c\x31\x6a\xd8\x63\x18\xcf\x4d\x10\x9a\xd7\xbd\x51\xff\xaa\x32\x21\xde\xdb\xb3\xec\x6b\x89\x24\xc1\x7d\xe5\xa6\x39\xf3\x73\x24\x08\x47\x87\xd3\x63\xde\x56\x81\x85\xe0\xad\x2b\xa5\xf6\xed\x64\x27\x48\xcd\x55\x5b\xe4\x9c\xcc\x46\xd8\x75\xa6\xbd\xf8\xe8\x8a\x05\x84\xd4\xd5\xb7\xe5\x58\xad\x9c\x93\x0a\x4f\xb1\xe6\x52\x77\xe7\xd7\xb5\x78\x90\xdb\xf8\xcc\x44\x8a\x9d\x60\xf7\xe0\xe6\x0a\x25\x4b\x85\x49\x70\xb6\x58\x70\xee\xf6\xc7\x4f\xac\x7f\xe0\x52\xb4\xd1\x58\x91\xb7\x86\x20\xe2\x56\xed\xb0\xd3\x81\x7b\x12\xbe\x5c\x31\xee\x77\x7d\x38\x8b\x60\x7c\x68\xd3\xde\xe0\xf2\x5f\xac\x7f\xf0\x79\xb9\x7d\xde\x47\xb6\x1d\x84\xfa\xbf\x99\xd1\x61\xd9\x17\x08\x43\x3e\xa4\xb9\xdb\xd4\x9e\xf0\xee\xf2\x95\xb2\x5d\xbd\x7a\x04\x73\x2e\xde\xd1\x98\x0f\x09\x0c\xfa\x63\x3e\x3e\xe1\x1c\xe7\x21\x44\xdc\x4d\x7b\xea\xde\xc4\x43\x88\xfd\xf0\x7e\xd1\xb5\x50\x93\x49\x28\xdc\xb9\xe9\x5c\x9d\xd1\x2c\xc2\xf3\xd8\x6d\x4d\x45\xa6\x7b\x08\xd1\x3e\x65\xad\xbb\xa3\xf3\x08\xfa\x49\x43\x05\x53\x1c\xeb\x59\xb8\xe6\xfe\x35\x39\x25\xd8\x84\xfe\x41\x20\xc8\x40\xf9\x40\x47\x39\x0b\x7b\x2d\xcd\xc9\x70\xfe\x62\x42\xab\xd6\x35\x53\x6d\x76\x25\x42\xf0\x58\xf9\xb3\xac\xac\x55\x84\x70\xe1\x47\x6e\x3b\xa3\x39\x08\x6f\xe4\xc4\x94\x55\xab\xf5\x09\xd7\x7d\x18\xf6\x0f\x03\x66\x84\x84\x60\xb3\x90\x0f\xeb\x36\x13\xfa\x64\x96\x27\x06\x58\x2b\x13\xf8\xa4\xb5\x12\x33\x22\x2c\x09\x53\xf7\xf1\x9a\x6c\x16\xda\x4a\xb8\x23\x7e\xf5\xa1\x6d\x6b\x06\xf3\xaf\x44\xcc\xe0\xbc\x92\x31\xf7\x1b\x0b\xc9\x61\xce\xcf\x3b\x7b\xa5\x09\xbb\xa4\xcc\x3a\x3e\xca\x79\x10\x0e\x5f\x74\x5b\xb8\x59\xee\x08\xe1\xa4\xb7\x57\x5d\xcb\x90\x1f\x41\x7b\xff\x85\xfa\x0e\x97\x7c\x82\x00\x5f\x85\xcc\x1d\x41\x0d\xc2\x81\x08\x83\x9b\x6b\x7d\x97\x12\x2e\x8a\x1f\x1b\xa8\xd1\x52\x20\x78\xf3\xf8\x6d\xd8\xa3\x6c\x38\xa9\x34\xb8\x34\xba\x96\xb7\xef\x26\xa8\x25\xdf\xbf\x16\xec\x78\x8d\xb0\xf0\x42\xe5\xcc\xa2\x0e\x6e\x42\xde\xed\x63\xcd\x6a\x2a\x99\x04\x43\x46\xe9\xdd\x83\x27\xa5\x0c\xdc\xba\x0c\x37\x18\x4e\xb3\x22\xe4\xa8\xd8\x5e\x5f\x7f\x6f\x27\xa1\xcc\xb9\x42\x21\x3e\xb6\x93\xc1\x16\xcb\xf9\xf3\x34\xff\x64\x10\x16\xc8\x1c\x7c\x7a\xe9\x89\x39\xc1\xf5\x07\xff\x1b\x26\x2f\x89\x20\x36\xea\x54\x30\x1c\xe4\xc6\x20\xb4\x25\x82\xfd\xed\xf6\x32\xc2\x8e\xdd\x9e\xc2\x17\xcf\xa4\x11\x54\xb6\xdf\x7d\x25\xb8\x5e\x84\x20\xf2\xf6\xc8\xf8\x7b\xac\x24\xe4\x8c\xf7\x72\x78\xfe\x5c\x4b\x10\x94\x7a\xb6\x29\x67\xe3\xc4\xfb\xe2\x68\xa6\x78\xa3\x9d\x20\x61\xc8\x2c\x70\xfb\x9a\x96\x8b\x84\x8c\x02\xd9\x2e\x03\x1d\x0f\x02\xb3\x8b\x75\xa7\x80\x3c\x08\x2d\x54\x74\xb7\xf3\xab\x04\x61\xdf\x88\xd6\x9c\x05\xe2\x0b\x09\x31\xe2\xf3\xb7\x77\x8e\x2d\x24\x94\x4b\xb1\xe6\xd8\xb3\x05\x4e\x42\xe1\x2e\xd5\xd7\xd3\x0e\xf2\x4e\xc2\x21\x7d\x21\xf9\x0f\x0a\x22\x84\x2f\xe7\x4d\xa7\xfa\xb5\xf4\xb3\x70\xea\xd9\x53\x83\xc2\x63\x7a\x84\x64\xbd\xc8\x78\xab\x71\x43\xfa\x57\xd6\x9e\x7f\x27\x6b\xad\xfe\x86\x05\x17\xf9\x6f\xb3\xf8\x7b\xe2\x08\x0b\x12\x82\x0a\xbc\x42\x0e\x11\x76\x3f\xfb\xc6\x9d\x66\x55\x4b\xe0\xae\x93\xcd\x17\x5d\xef\x46\x18\x59\xae\xdb\x9a\xfe\xa8\x91\xc1\x4f\x97\x9f\x75\xf6\xa1\x0d\x0c\x6a\xc3\xaf\x3f\x6a\xe1\x34\x24\xe4\xfe\xff\xf8\xb6\xf3\x60\x2c\xdf\xff\xff\xff\x85\xa4\x24\x5b\x51\x49\x91\x54\x5a\x91\x12\x71\x3d\x29\x64\xc9\xbe\x94\x35\x54\x64\x29\xd9\x8a\x90\x5d\x42\x92\x16\x49\xb6\x8a\xc8\x52\x12\x51\x38\x13\x52\x2a\x45\x8b\x94\x68\x93\x68\x13\xe2\x21\xe2\x37\x9a\x79\xff\xf8\xcc\xbc\xe6\xfb\xdf\x6d\xee\xcf\x63\x2e\xc6\x9c\xe7\xe1\x38\xfe\xb8\x9a\xb8\x24\xb6\x5a\xdf\x66\x50\x1d\xe8\x34\xf3\xb7\x85\x04\x81\xb7\x6d\x46\x9b\xc5\xe6\xe3\x84\xfe\x15\xef\xfc\xf3\x42\xa2\x08\xf7\x0f\xf1\xfe\xad\x9c\xe3\x4d\x78\xb1\x33\x5b\x7e\xf9\x86\x60\x42\xdc\x81\xee\x76\xee\x12\x5b\xc2\x3a\xff\x90\x28\x7e\x8e\xd5\x04\x33\x99\x7b\x4e\x89\x79\x0e\x84\x55\x41\x49\x53\xb9\x4c\x32\x19\xbc\x55\x72\xbe\x5b\xaa\xb6\x88\xa0\x66\x5a\xd4\x37\xd0\x14\x45\xe3\xe5\xf6\xdc\x8e\x98\x22\xdd\x5f\x2c\xd8\x15\xc8\xfd\x78\x64\x73\x68\x42\x61\x8f\x52\x78\x1d\x19\xf9\x91\x35\x18\xe5\x96\x21\xf3\x9e\x8d\xe0\xf2\x7b\xee\xe5\x95\x31\xfc\x84\x63\x1f\x3c\xca\xad\xaa\xec\x09\x7b\xfd\xcc\x15\xf9\x3e\x6c\x21\x14\x09\xbb\x76\x94\x5c\x55\x20\x7c\xf8\x31\x6f\x77\xe2\x17\x22\x64\x05\xdf\xd3\x90\x4f\x2c\x23\x5c\xf2\xe8\xcf\x6b\xe5\x4d\x26\x08\x4f\x31\xd1\x9e\x9f\xd4\xcd\x60\xd6\x2e\xf7\xae\xf5\x63\xa3\x9f\x29\x3d\xa1\xcb\xb9\x92\x27\xe0\xb6\xec\x53\xd1\x30\xc9\x0a\xc2\x7d\xdb\x37\xc7\x2f\x09\x57\x10\x3e\xed\x3d\xf4\xf2\x5f\x39\xe9\xcf\xcf\x53\x79\xa3\x9c\xc0\x27\xd0\x6a\xb1\x87\x3f\x8f\x19\x34\x09\xdc\x11\x2d\xe9\x49\x50\x90\x9b\x6c\xa1\x31\xd3\x8a\x70\x8c\x4b\x21\xeb\x8a\xda\x16\xc2\xb4\xf4\xb3\x53\x3e\xf6\x0e\xb2\x00\x59\xf5\x4b\x32\x55\x7a\x84\x59\x9c\x91\xf2\xea\x32\xe7\x18\xac\x57\x15\x5d\xb4\x6a\xac\xf8\xef\x3c\x96\xbf\x68\xea\x20\x6b\x1c\x7b\xa7\xb8\x3d\x96\x9d\xa3\x4c\xe3\xf8\xf3\xfb\x93\xd1\xec\x83\xf5\x2c\x38\x74\x8e\xf6\xce\xb8\xeb\xc5\x20\x2e\xe8\xb8\x69\xc2\xa3\x62\x42\x96\xec\xfb\xf3\x69\xd2\x95\x84\x15\x0a\x87\x58\xff\x4a\x94\xb0\xf2\xed\x75\x1a\xf9\x04\x77\x97\x72\x11\xe7\x84\xcd\x04\xfd\x2d\x79\xae\xc2\x6c\x60\x21\xc4\x9b\xce\x77\xb9\x0a\x11\x6e\xff\x78\x1a\xb8\x79\x51\x35\xc1\x8f\xab\xc9\x3a\x32\xba\x9d\x10\x6a\x10\xa0\x2c\xb8\xbf\x91\x30\x73\xb7\xe4\x2f\xb5\xb1\x51\xe5\xfc\xcf\x87\xa7\x57\x6f\x20\x24\xf0\xef\xd5\xdf\x7c\xa3\x84\xd0\x36\x2c\xb3\xc5\xf5\xe3\x00\x0b\x9f\xee\xba\xb5\x36\x1d\x96\xa2\x71\xec\x4c\x13\xeb\x2d\x73\x7b\x59\x81\xa2\x45\xef\xce\x2f\xce\x0a\x22\x70\xe6\xec\xaa\x8f\x19\xfb\x1c\x57\xdf\xef\xcb\xd7\x9d\xad\x22\xb4\xca\x85\x6a\x18\xec\xbd\x49\xf8\xdc\xf1\x77\x24\x47\x76\xec\x47\xa4\xc4\xff\xaa\x3f\x11\x45\x18\xd6\x35\x62\x0b\xbe\x1e\xc9\x80\x35\xed\x87\x0a\xd7\x4b\x4f\x42\x53\xbd\xf5\xd4\xd0\x55\xeb\x09\x5d\xc9\x6f\x5a\x7c\x5b\x1f\x30\x08\x6a\x0b\xf1\x3e\x9a\x51\x5f\x81\x32\x8e\xa2\x19\xa3\x63\x9f\x7c\xac\x2e\x3d\x7a\x69\x7b\x15\xe1\x90\xa1\xe7\xb5\x6f\x83\xcd\x84\x13\x67\xd4\xb5\xae\xa8\x56\xd3\xf8\x9a\x8e\x24\x85\x96\xb2\x10\x09\xc2\xdc\xaf\xbd\x93\x76\x37\xf3\x12\x6a\xea\xe7\xcd\x11\x8b\x57\x9b\x80\xa3\x76\x3b\xf6\x73\x0c\x24\x12\x34\x2d\x05\xcd\x3c\xdc\x86\x58\x50\xf8\x2a\xe8\x68\xbd\xb6\x86\xd0\x1a\xc7\x71\x26\x54\xaf\x86\x60\x60\xde\xf8\xb0\x5d\x3d\x9b\xd0\xd7\xe3\x75\x61\x3b\x57\x08\x0b\x21\x95\x9f\x4e\xe9\x79\xde\x64\xc0\x4a\x0e\xb6\x9a\x9f\xab\x41\xc8\x6a\xdd\x5d\x69\x7f\xf1\x38\x83\x8b\x9f\xce\x78\xfe\x2b\xfb\xef\xed\xb0\xb7\x98\x72\xb6\x02\x51\x81\xb9\xa2\x0b\x6c\xad\x09\x39\x82\x23\x6c\x1f\x65\xe6\x11\x4e\x6d\x4b\xbe\xee\x21\xbc\x8c\xe0\xc5\xc8\x34\xb7\xd7\x97\xb1\xc6\x71\x45\xfa\xee\xc7\xd3\x3e\x7c\x34\x8e\x84\x45\xb2\x46\xd7\xd5\xc2\x09\x95\x22\xb9\xa7\xf4\xa2\xb6\x10\xa6\x5e\x9e\xff\x69\x88\xb1\x9c\x50\xbe\x37\x1a\x2e\xa5\x4d\xb6\x04\x09\x2b\x5f\x66\xcb\x90\x08\x41\xfb\xb8\xc2\xc8\xa1\xd5\x2b\x09\x1b\x9a\x9b\x2e\xa4\xb9\x2d\x22\xfc\x95\xb3\x55\x8c\x11\x70\x67\x30\xfa\xec\x88\x60\xa9\xe0\x59\x82\xee\x60\x46\x91\xbe\x6c\x29\xa1\x2d\x38\x75\x12\xdb\xe5\x7c\xc2\xaf\xf8\xf3\x6b\x9e\x15\x96\x12\x42\x8c\xce\x4d\xe5\x93\x9e\x4f\x48\x09\x77\xdc\x7f\xed\x95\x3d\x41\x3b\xb9\x31\x6c\xd3\x2d\x25\x82\x89\xff\x81\x8f\x1b\xa5\xb2\x19\xdc\xb9\x3e\x9a\x93\x2f\x65\x4c\x90\x3d\x2a\x75\x42\xa3\x50\x80\xa0\xfc\x26\x91\x3c\x04\xa7\x10\xea\xe4\x4a\x84\xeb\xc3\x85\x08\xeb\x0a\x23\x34\x9f\x06\x72\x13\x5c\x07\xa2\x54\xf9\xdf\x88\x11\x86\x17\x19\xfc\x5c\xb7\xef\x28\x61\x20\xb4\xd5\x52\xee\x8b\x07\xe1\xdd\x9e\x77\x56\x4c\xc2\x29\xc2\x34\x91\x02\xac\xed\xd9\x40\x90\x08\xf3\x6d\x6a\x9d\x93\x4e\x68\x7d\x7a\xb7\x4a\xfb\x9b\x0f\x83\x5d\xa9\x0d\x8a\x5f\x6a\xb5\x08\xb6\x82\x8e\x7f\x5f\xd5\xbe\x67\xa1\xd8\xdd\xb8\xfb\xe9\x45\x55\x1a\x47\x5d\xf2\xf0\xd9\x78\xfe\x97\x2c\x48\x97\xeb\xed\xb6\xfe\x2a\x49\xe0\x72\x55\x97\x5c\x25\x20\x4b\x70\x9c\x99\x56\x7e\xc2\x3f\x83\x70\xd5\xa5\x51\x52\x60\xb3\xd8\xd8\x0e\x65\x2b\xbe\x2e\x46\x84\xb0\x81\xa3\x7d\x4b\x89\xcd\xae\xff\x7d\x7d\x28\x98\x01\xb7\x67\x94\xc0\x94\xde\x3a\x06\x8b\xbb\x1f\x67\x49\xfc\x96\x21\x3c\xbf\xcf\xaf\x5f\x7a\x3e\x89\x41\xd5\xb9\xfb\x27\x03\x04\x96\x13\x54\xe7\xad\x48\xe8\x3b\x70\x81\xb0\xe7\x92\xe5\x9f\xe9\x5b\x16\x13\xde\x6e\xd0\xbd\x94\xfe\x4d\x98\x70\xf6\x76\xfb\xcb\xd1\x47\x4b\x08\x0e\x3f\xae\xff\xfd\xdb\x3f\x8b\x40\xc1\xba\xb6\x81\xe7\xf7\x11\x36\x5f\xe8\xf7\xdc\x71\xe0\x2c\x33\x5e\x62\x6c\xcd\xbf\xea\xfb\xd8\x13\x2e\x96\x47\x0d\x2f\x8e\x8b\x27\xcc\x99\xd2\x21\xc2\x15\x7f\x97\x80\xd0\x29\xad\x10\x0e\x99\x80\x32\x2e\x73\xa9\xf7\xe7\xed\x08\x1d\x32\xda\xec\x6e\xa7\x42\x09\x56\x42\x99\xd9\xed\xab\x6d\x08\x7f\x0b\x1f\x1f\x6c\x5a\x90\x41\xf8\x19\xc5\xb3\xd1\xa9\x93\x9f\x70\xfb\x85\xca\x9d\xd5\x0f\x97\x11\xfa\xc2\xab\x7b\x07\x5d\x46\x58\x08\x08\xbb\x92\x11\x6f\x1d\xca\xa0\x7f\xc3\xc8\x3d\x56\xcc\x3a\x82\xe9\xab\xf8\x15\xb6\x82\x25\x84\x91\x2d\x0f\x1c\x97\xef\x4d\x22\x0c\x5d\xda\x34\x53\x7b\x76\x1d\x41\x46\x68\xce\x3b\xad\x31\xbc\x11\x1b\x2c\x37\xab\xad\x26\x84\xc5\xb8\x1a\xea\x8c\x15\x25\x07\x6f\x8d\xc5\x57\xcc\x09\xce\x3f\x14\x9f\x96\xa6\xaa\x33\x28\x6c\x68\xab\x48\x7a\xe5\x49\x10\x38\x9e\x6d\x59\x1b\x6f\x35\x61\xcd\x94\x3e\x8e\xf3\xcd\x6d\xc2\x84\x33\x25\x73\x9b\xac\x6f\xb5\x32\xa8\x3f\xac\xb9\x71\x63\x41\x3d\x41\xd2\xd7\xf2\xf0\x3a\xce\x12\x06\x0f\xff\xaa\xa6\xfd\x1a\x7a\x42\xb0\xbb\xff\xc6\x68\x7e\x61\x06\x41\x64\x19\xb7\x88\xda\x46\x23\x06\x5d\x37\xf6\xb8\x0b\xce\xb3\x25\xd4\x85\x45\xae\x68\x5d\xba\x7d\x02\x92\xf7\xfc\x91\xe7\xb3\x96\x23\x78\x35\x7f\x7e\xd7\xf9\x75\x1b\x21\x53\xec\xfd\x3e\x31\xa5\x9b\x84\x12\x91\xb4\xa4\xde\x21\x53\x82\xc2\xe8\x82\x62\xa9\xf7\x9b\x08\xc2\xdb\x36\x14\xa7\x54\x88\x11\x9e\x7c\x60\x1d\xfe\xf1\x84\x45\x70\x37\x7c\x57\x52\xab\x65\x4a\x38\xc1\x07\xd3\x51\x4e\x29\x42\x60\x5f\x85\xd8\xe1\x84\x85\x84\xe2\x27\x8f\x5e\x5d\xff\x5d\xc9\xe0\x5a\xbe\xc9\xd9\x99\x8f\x94\x09\xad\x3c\xed\x57\x2c\xdc\x52\x08\x0d\x7f\x14\x4e\x06\x7a\xa9\x10\x6c\xd8\x6a\x94\xbd\xb7\x18\x13\x7e\xa7\x0e\xd9\xf8\xd9\x2b\x12\xb6\xef\x7a\x96\x2b\xcc\xec\x25\x20\x2f\x64\xef\x3d\xcb\x76\x16\x6e\xc3\xd3\xf9\x66\x78\x22\x21\x71\xf5\x6d\xeb\xed\x11\x5b\x08\x75\x3a\x0f\x1f\xaa\x8d\x5d\xda\xcb\xb8\x5b\x2f\x1f\x38\x13\x48\xb8\xf2\x66\xdd\xf1\x7d\xcd\x9e\x84\x4c\xdb\x86\x40\x35\x15\x7f\xc2\xde\x0d\x6d\xd1\xed\x0f\xce\x11\x6a\xd8\xcf\x5d\xdc\x78\x47\x92\xc0\x36\x6f\x38\xda\x9e\xb5\x9f\x41\x46\x2a\xe7\x66\x9e\x4b\xec\x04\x0d\xda\x6c\x14\x6b\xfe\x89\x05\x96\x74\x2b\x36\xbe\xe7\x26\x24\x4c\xb5\x4d\x0f\x79\xe7\x43\x30\xd3\xd9\xa4\x32\xdb\xd8\x9b\xc6\x47\x9b\x2e\x97\x9e\x5b\x62\x69\x46\x08\x64\x65\xdf\x42\xad\x0c\xa1\x98\xf7\xfb\x85\xca\x5f\xb6\x84\x24\xd3\x97\x9b\xf7\x86\xe9\x11\xf4\x2d\xd7\x76\x44\x0f\xfb\x12\x78\xaa\x5e\xbb\xed\xdc\xbc\x97\xf0\xa6\x66\xe8\x9a\x4e\x59\x31\xe1\x0d\xdf\x10\xeb\xac\xae\x20\xe1\xf4\xcc\xeb\xfe\x67\xa7\xfe\x61\xe1\xba\x53\x5c\xed\xc9\x78\x03\x82\x5a\x79\xd0\xf6\xbf\xa7\x6c\x08\xa3\x35\x1c\x1f\x2a\x0c\x95\x09\xe1\xdb\x8d\x7f\x7c\x7f\xe0\x45\x18\xb9\xad\x1d\x6f\xb5\xcf\x8c\x50\xf3\xf3\x41\xea\x92\x22\x35\xc2\x8a\x96\xac\xab\xaf\x3b\x54\x09\x5b\x77\x18\x78\x4c\x85\x00\x61\x5f\x7a\x48\xc3\xbd\x83\x12\x84\xcd\x7a\x05\xb7\xd9\x96\x1d\x61\x30\x4d\xba\xa7\xf8\x59\xd4\x76\x42\xd6\x8a\xab\x8e\x4f\x8c\x57\x12\xae\x2e\xf8\x63\xfe\xd2\x46\x9c\x50\xaf\x62\x10\x7f\x22\x7b\x23\x41\xf0\xd3\x83\x13\x43\xad\x1a\x04\xce\xf6\xf0\xf5\x17\x16\xae\x24\x18\x7d\xd0\x0a\xb0\x99\x7c\x8e\x41\x50\xee\xa5\xa2\xa4\xf9\x3b\x09\x2d\x05\x16\x66\x93\x7a\x8d\x09\x42\xab\xc2\xcc\xd8\x96\xda\x12\x02\xe4\xdc\x5b\xcd\x26\x17\x12\x7e\x56\xb2\x42\xae\x2a\x66\x32\x58\xaa\xf2\xf0\xd5\xb6\x07\x49\x84\xf9\x3a\xea\x3c\xed\x35\x63\x7b\xb8\xe5\x1f\x93\x25\x1e\x41\x0c\x96\x68\xb4\x97\x30\xf9\x1e\x84\xb4\xa3\x17\x23\x4c\xf2\x62\x09\x9d\x4e\x33\xf6\x8b\x6d\x09\x21\x7c\x09\x1a\x14\x8d\x79\x76\x6c\xec\xc4\x1f\x2e\xf1\x26\x33\x8b\xd0\xcf\xca\x5b\x97\xbe\xf6\x20\x61\xbd\x93\xc4\xc5\x9f\xfb\x86\x59\xa8\xd3\x7b\x34\x97\xbb\x70\x32\x61\xf2\xc2\x15\x6c\x86\x5d\xd2\x13\x70\xb1\x2a\xf9\x64\xf6\xb7\x01\x16\xaa\xc3\x82\x54\xb8\xd4\xe5\x09\xa7\x3e\xa4\x5b\xae\xd0\x96\x20\xa8\xd7\x6c\x35\x43\xb8\x14\x81\xdb\x3c\x78\xca\x7d\x7e\x71\xc2\x4e\xa9\xac\x47\x9c\x67\x1a\x59\x08\x90\xcd\x76\x5e\xe1\x79\x9b\x70\xea\xf8\xc5\x1c\x19\xf9\x0a\x82\xef\x71\x95\x15\x45\x33\x2b\x08\xfa\xc5\x12\x9b\x22\xbb\x93\x19\x3c\x98\xe4\x1b\xf0\x6f\x14\x6c\x23\x51\xa0\x7b\xd4\x9a\x90\xfe\x25\xe9\x6b\xb7\xb9\x27\x21\xdc\xe9\xfe\xdf\x1a\x36\x2b\x42\xcf\x9c\x1d\xd9\x0f\x03\x42\x08\x57\x99\xf2\x3d\x2b\xd5\x67\x13\x94\xe1\xb5\xe8\xdd\x86\x99\x84\x4e\xb3\x1d\x8b\x78\x9c\xc5\x27\xe0\x5b\xce\x94\xd7\x11\x87\x39\x08\x49\x0f\x7f\x68\xf5\x36\x27\x11\x5a\x0c\xce\xf1\xa7\x3d\xee\x67\x81\x5f\xe5\x53\x17\x7f\xc3\x0f\x16\xa6\xe6\x29\xcf\xf0\xf7\xe6\x24\xac\xd9\xfd\x6b\x6e\x8f\xd6\x69\x1a\x2f\x86\xa5\x86\xbc\x99\x2f\xf8\x09\xc3\xfe\x7d\xc5\x35\xe2\x1a\x84\x8d\x59\xc2\x07\x32\x3d\xa4\x09\x85\xc5\x9b\xeb\xe7\x0a\x28\x10\x56\x29\xca\xcf\x4c\xae\xcc\x65\x60\x63\x72\xa0\xd8\x57\x2f\x82\xc6\xf1\xd7\x3f\xef\x8f\x49\xbc\x1f\x81\xbd\x4e\xdd\x57\x49\xea\x12\x21\xca\xe9\xef\x73\x33\x2b\x0f\x82\x44\xe1\xab\xb9\x8e\xcf\x04\x08\x65\x2d\x4b\xda\x4a\x8f\x80\x85\x13\x3a\x5c\xcf\xaf\x4c\x92\xa7\x71\x98\xd9\xae\x94\xdc\x97\xdb\xc2\x82\xcd\xa7\xf8\x74\x07\x71\x3b\xc2\xd7\x85\xa7\x27\xeb\x56\xed\x26\x6c\x39\xe9\xe1\xfb\x23\xbf\x80\x20\xb0\x28\xf9\xf2\x8f\xfc\x74\x02\x78\xfb\x93\xe7\x24\xa6\x11\xe2\x3a\x25\x3b\x9d\x76\x7a\x13\x5a\xa3\xe4\xde\x1a\x9f\xb0\x22\x98\x38\xf8\xee\xe0\x58\x78\x9b\x85\xe7\x67\xce\x6b\x46\x69\x1a\xd1\x7f\xa0\x62\x27\x4f\xf4\x5e\xb1\x99\x84\xd4\x8e\x77\x97\x6b\x6e\x9b\x12\x2c\x1c\xeb\x5e\x9f\xab\xbe\x41\x88\x12\x68\x5f\x9f\x25\xe8\x40\x78\x27\xc6\x75\xbc\xe5\x44\x16\x41\xea\x8e\x98\xc6\xd1\xae\x45\x04\xeb\x65\x5f\x14\x26\x2f\xe2\x22\xb0\xbb\xde\xd8\x1a\x38\x7b\x29\x41\xd5\xf6\xe8\x6f\x39\x3d\x49\x42\xcb\x81\x51\xb7\xda\xcc\x68\xc2\xec\x23\x07\x95\x5c\x7b\x38\x09\x07\xcf\xf1\x57\x2e\xff\x76\x8a\x10\xd7\x3d\x14\x59\x7c\x24\x93\xd0\x13\x3a\xfc\x61\x72\x60\x06\x61\x46\xf3\x33\xcf\xba\xb0\x70\xc2\xcd\x07\x4f\x6a\xd7\x34\x5d\x20\x08\x7a\x39\x4d\xfa\x57\x9e\xb5\x76\x75\xd0\xf4\x57\x2c\x84\xf9\x07\x4a\x97\x78\x0b\x10\x0e\x4e\xbe\xd7\xd6\xe1\xc8\x39\x8e\xc1\xcd\xfd\x12\xc7\x5e\xb5\x55\x60\xed\x52\x9d\x50\x33\x5d\x7e\x02\xcf\xa1\xbf\x75\x61\x31\x8b\x09\xcb\xaf\xb7\x3a\x4c\x73\x9f\x4f\x40\x4c\x97\x76\x7e\xc9\x7a\xc2\x6a\xf1\xbe\x97\xdb\xa4\x4e\x12\xfe\x5c\x66\x35\x70\x2e\xb2\x22\x6c\x95\x79\x7d\xa5\xeb\xb0\x0a\x61\x61\xc9\x92\xa3\xb9\x37\x04\x08\x15\xa3\x4b\xce\x54\x4b\xae\x24\xdc\xad\x7c\x66\x7d\x64\x6e\x3a\x61\xcf\x5f\xb1\x07\xaf\xf3\xb2\x08\x83\x9d\x9b\xe7\x46\x75\x4e\x27\x04\x8c\x3a\xcc\xfa\xfe\x6a\x07\xc1\x2e\x29\xfa\xed\xb0\xd7\x52\xc2\x79\x2b\x97\xbb\x9e\xcf\x6f\x13\xba\x1d\xef\x30\x3b\xac\x47\x58\x28\x29\x4a\x91\xef\x93\x88\x67\xd0\xd8\xd5\xa2\x96\x2d\xba\x8c\xe0\x22\xc1\xd1\xee\xdd\x2a\x49\x78\x9d\x27\x14\xfe\xb3\x7f\x2e\xe1\x74\xeb\xc2\xf5\x1c\x43\x89\x84\xf9\x65\xf6\x33\x6e\xac\xe4\x21\x88\xfd\xf0\x76\x75\x11\x1b\x62\xc1\x9a\x4d\xf2\xd6\x21\x85\x9b\x84\x93\x95\x7e\xab\x4e\xaf\x38\x4c\xf8\x34\x54\xf0\xfe\x94\xda\x06\xc2\x9d\x79\xb3\xf7\x88\x85\xaa\x13\xbe\x6f\x9b\x5b\x12\xa8\xa8\x46\x58\x3b\x94\xe3\x1a\x2a\xfc\x95\x05\xce\xdd\x6b\x0e\x7f\x6d\xe0\xa2\x71\xec\x99\x27\x13\xfb\xbc\xe3\x05\x6b\x1c\xa9\x31\x3f\x95\xb2\xf8\xc7\x8e\x36\xb7\xf8\x67\x0d\x38\xb8\x33\xe3\xc5\x52\xee\xf8\x23\xaf\x3f\x2b\x27\xa0\xfa\x70\x61\xc4\xd4\xf5\x32\x84\x23\xfc\x91\x1f\x2f\xf3\xa9\x11\xbe\x87\x1f\x0f\x3c\x5f\x58\x4c\x18\x19\x0e\xd1\x77\xf5\x15\x20\x94\xf6\x2b\x77\x99\xee\xbe\x47\x10\x4f\x4e\xf0\xdb\x3b\x56\x82\xa6\xf2\xed\xf5\x6a\xf0\x63\x60\xce\xbf\xef\x6f\x92\xe7\x24\x82\x77\xb7\xf4\xee\x35\x96\x27\x09\x8d\xe7\x56\x0f\x2c\x94\x8d\x22\xc8\xcf\xad\x3c\xff\x4e\xd8\x8b\x70\xeb\xe4\x66\x65\xcd\x55\x3e\x84\x70\x4b\x6f\x93\x90\xea\x2b\x0c\x9a\xce\x3a\x69\xf4\x2d\xda\x42\x48\xd1\x92\x49\x9b\x7a\xe9\x1d\x0b\x45\x72\xda\x0f\x4c\x43\x67\x33\xc8\xd0\x9e\xba\x2d\x73\xaf\x0a\xfd\x07\x5a\x65\x22\xed\x83\x2e\x88\xfd\x17\x62\x6a\x4f\x46\x1b\x95\x0d\xb3\x60\xa8\xdf\x1e\x39\x45\xe3\x37\x0b\xea\xd7\x12\x8c\x6c\x23\xe7\x10\x7c\xbb\x87\xab\xb0\x5f\x87\xb0\xb0\x7d\x89\x92\x13\xef\x56\x42\xa0\x3d\x7b\x6d\xaa\x67\x23\x83\xe6\x4d\x69\xe7\xb5\x0a\xd4\x09\x05\x73\x76\x8b\xc6\x97\xec\x26\x68\x3f\xbe\x26\x60\x68\xb9\x88\x10\xee\x75\x47\x43\x2e\x6c\x13\x61\xff\xac\xd2\xd9\x87\x74\xd5\x18\x28\x1f\xb8\x64\x7d\xcb\xfa\x1a\xe1\xd8\x24\x67\xfa\x72\xeb\x3e\xe1\xc9\x65\xe7\xe5\x1d\x63\xa8\x72\x27\xfe\x2f\xff\x07\x93\xb9\x2f\x44\xe6\xa9\x0e\xb3\x60\xdf\xf1\x70\x34\x1c\x83\x2c\xf8\xbd\x3f\x67\xf3\xfa\xab\x23\x03\x97\x3e\xbe\xca\x77\x07\x8a\x09\x82\xc4\xd7\x61\xf8\xb4\x96\x60\x99\xae\xde\xb9\x24\xa4\x94\xc0\x99\x37\x94\xfd\x6f\x74\x6e\xa8\xfa\xda\xf0\x1e\x7b\x02\x87\x7b\x8e\xda\xe7\x54\x37\x82\x55\x42\x73\x7d\xb0\x87\xfb\x84\x51\x5f\x7e\x64\xcf\xa1\xd7\x4a\x84\xfe\xe2\xaa\x37\x67\x53\x57\x13\x4a\x07\x2f\xcf\xf7\xcf\xb0\x27\x9c\xf8\x9b\x22\xb8\x61\x0d\x8b\x90\xd8\xbb\x74\x45\x82\xba\x29\xe1\xd8\xae\xbb\x0b\x3e\xca\xcf\x22\x6c\x6b\x57\x7e\xfb\xf9\x11\x8b\xf0\x68\xc1\x5d\xaf\x91\xd7\x93\x09\x06\x5c\xf7\xcf\xb7\xff\xce\x20\x6c\xfa\x98\x32\x74\x38\x21\x93\x60\x14\x5e\xa7\xd4\x66\x26\x4b\xd0\xe0\x7f\x5f\xf4\x68\xe3\x35\x06\xd7\x75\xe5\x37\xa8\xe8\x18\x10\x72\x9f\xef\xd5\x5b\xf0\xde\x89\x80\xdb\xac\x21\xa7\xfb\x45\x0c\xf6\x5c\x9b\xb7\xab\x5f\x79\x29\xa1\xf2\x4d\xcc\x6b\x5b\xb5\x30\x82\xa7\x9f\xfd\xba\xa9\x7e\x97\x18\x2c\x7a\x71\xff\x02\x4f\x8c\x23\x21\x50\xfe\xc8\x33\x19\x5e\x3f\x42\xb6\xfb\xda\x47\xf3\x6e\xa9\x12\x86\xe6\x0e\x70\x9b\xf4\xb1\x11\xce\xf3\xa5\x6e\xd1\x49\xb1\x24\xec\x7b\x3c\x38\x37\xfc\xac\x0a\xe1\xcb\x4c\xc3\x53\xfe\xf7\x8c\x27\x60\xa5\x4f\xef\xcf\x17\xe1\x0e\x13\xf0\xd1\xeb\x9a\xe9\xf4\xb7\x76\x04\x91\x0d\x39\x5b\xdc\x64\xe4\x09\xd7\x37\xea\x07\x3e\x89\xe9\x65\x81\xef\xd7\x62\xb1\x90\xf0\xd9\x34\x0e\xe7\x53\x7d\x52\x47\x87\xfa\x58\x30\xb8\xa6\xfa\xee\xf2\xca\x35\x84\x8e\xc6\x5b\x21\xb2\x42\x15\x84\x8f\x22\x01\x9a\x53\x6e\x7a\x12\x52\xbd\x0f\x3b\x36\x7e\xde\x48\xd8\xc1\x19\xfb\x9d\x67\x10\x2c\x08\x3f\x89\x8a\x50\xe4\x35\x20\xa4\xf6\xce\xdb\x77\xcc\x73\x2f\x41\xaf\xbb\x6e\x65\xfe\x3e\x7f\x82\xd5\xb6\x15\x96\xd6\x1f\xad\x08\x3e\x67\xd9\xd3\xaf\x86\xb1\x08\x16\xa2\x57\xb9\xfd\x87\x56\x10\xa4\x86\xd6\x7d\x9b\xae\xb9\x97\xe0\xa3\x2e\xae\xf6\x3e\x41\x8d\x30\x45\xf8\x49\xfc\xfa\x77\x5a\x84\xce\xbe\x37\x53\xe6\xfe\xca\x22\xcc\xdd\xee\x9d\x52\xf1\x3d\x93\xc0\x6d\xf4\x31\xe8\xc9\x5e\x2d\x42\xc6\xfb\xd8\xfd\xaf\x97\x4c\x65\x60\x94\xa9\x63\xe5\x6e\xcf\x47\x90\x37\x9a\xb2\xd2\x47\xce\x85\x50\xe4\xad\x78\xeb\x99\xa6\x08\xa1\xe6\xd6\x40\x51\xee\x99\x5b\x84\xb8\xc3\x4e\x26\x5e\x6a\x77\x27\xe0\x96\x71\x91\x1c\x87\x47\x2a\x81\x57\x5a\xe0\x73\xd8\x9a\x62\x82\xcc\xb0\xc1\xba\x2c\xd9\x34\x82\x94\xbe\x24\xcb\x3b\xbf\x9b\x50\x7b\xf4\x9d\x2e\xfb\xd8\x1a\xae\x84\x01\xb5\xf7\x23\xdc\x84\x69\x15\x3e\x9b\x96\x5c\x49\x26\xd0\x1a\xbd\x59\xff\x90\x73\x77\x64\xbf\xb6\xc2\x25\x16\x94\x85\xbf\x18\xf7\x4f\x33\x21\xfc\x78\x59\x20\x91\xab\x30\x95\x70\x69\xf4\xf3\xfc\xc5\xad\x49\x84\x86\x0c\xc9\xf8\x17\xed\x2f\x58\x38\xf2\x48\x26\xe6\xde\x8c\xb1\x7d\xe3\x7f\x78\xea\x9a\x10\xfa\xf8\x56\xea\x84\x92\xfc\xfc\x8c\x6a\xa0\xd3\xca\xff\x42\x8a\x4b\xae\x0a\x3e\xbd\xac\x40\x5d\x76\x86\x8a\x6e\x92\x17\x61\x7d\xd0\xa5\x5d\x8e\x2f\x0a\x09\xcf\x8a\xea\xe6\xbc\x74\x2d\x22\x5c\xb0\xd7\xe7\xfa\x57\x2e\x56\x9e\x7e\xbb\xf8\xd1\x41\x42\xd3\x74\x9e\xac\x55\x8f\x9e\x13\x02\xf2\x8e\xd5\xa7\x78\x57\x12\x36\x68\xbe\x73\xe6\x13\x24\x82\x2b\xab\xaa\xe5\x59\xb8\x34\xa1\xd1\x67\xf9\xe6\x05\x0b\x3a\x58\xd0\x60\x14\xba\x2f\x27\xab\x11\xa4\xce\x17\x9c\x60\x8b\x52\x20\xb8\x5c\x91\x5d\x79\x44\x53\x95\xc0\xa1\xb0\xa2\x5e\x7e\xb2\x34\x61\xdf\x74\xbf\x94\xbc\x87\x36\x04\x21\xd7\xda\xc2\x15\xab\x02\x09\x0f\x7f\xb3\x07\xa8\x08\x70\x13\xf2\x77\xcc\x16\x7e\xbc\xfa\x05\x0b\xaa\x2d\x57\xda\x76\x24\xdc\x61\x60\x56\xc3\xca\x78\x79\xa3\x84\xb0\xe5\xea\xb2\x79\x41\xfa\x21\x84\x06\x65\x05\x43\x87\x62\x27\xc2\xf1\x4d\x5f\x23\xa6\x98\x39\x31\x90\x6b\xec\xa9\x3f\xd7\x56\xcf\xc0\x3d\xb4\xe3\x63\x5f\x60\x15\x81\xfc\x78\x1f\xe9\x56\x6a\x13\x8e\x86\xda\xad\xaf\x7a\x58\xc5\xa0\x3d\x77\xb3\xf6\x92\xbb\xff\xde\xd3\xc9\x77\xd2\x36\x9b\x12\x72\xcb\x0f\x4d\x89\x4c\xbc\x49\x90\xf0\x8b\xf7\x13\x09\x7a\x41\xd0\xb6\xa8\x3c\xba\xd9\xaa\x9e\x60\x2d\xf8\xd0\x6e\x79\xee\x33\x82\xbc\xd4\x24\xe5\xf6\xdd\xcd\x04\x9d\x63\x3a\xb9\x82\x4a\x77\x08\xfb\x47\x0a\xdd\x24\x73\x02\x08\x12\x1a\x32\x1b\x53\x4a\xb3\x08\x47\xbb\xe4\x03\xdc\x3e\x97\x32\x88\x4e\xf0\x36\x0f\x49\x0b\x20\x58\xdc\xf3\x95\x35\x98\x7c\x90\x30\xcd\xf1\x87\xee\xb1\xbe\x33\x84\x04\xbb\x9a\x0b\x1e\x17\x7c\x09\x19\x6d\xba\x36\xb9\x96\x05\x84\x81\xd2\x55\x33\x99\xb6\xd7\x84\x10\x52\x90\xcd\x19\x2b\xcb\xad\xd5\x3e\xcd\x9d\x27\x35\x01\x1b\x97\xec\xb7\xfa\xe6\x3f\xc4\x82\xed\x86\x8d\xcf\x57\x6e\x8b\x9e\x50\x4e\xae\xf9\x99\x50\xb1\xa5\xba\x02\x59\x7a\xbf\xeb\xa4\x1e\xe6\x13\x8e\xf9\x2d\x2f\x8f\x3f\xf7\x8c\x06\x1f\x8b\xf6\xd5\x2e\x3f\x47\x38\x0a\x35\xad\x35\x4d\x5f\x09\x26\xc3\x03\x67\x53\x7f\x77\x11\xce\xca\x6a\xa7\x2f\x19\x2b\x4d\xd9\x5b\x4f\x4d\x16\xf9\x42\xe8\x2d\x5e\x3d\xdf\xd9\xc9\x98\xe0\xa9\xff\x9a\x31\xec\x0b\x20\x3c\x3c\x31\x45\xad\xcc\xb4\x8c\x30\xc7\xfc\x9a\xa3\xe3\xd8\xa8\xd5\xa3\x35\xc9\xfe\x28\x3f\x61\xd5\x31\xa9\xf9\xd9\x9e\x6b\x09\x93\x3b\x2b\xbf\x66\x55\x87\x11\x58\xdd\xb4\xde\x54\x78\xd6\x04\x6c\x31\xff\xae\x65\xb2\xb2\x99\x85\x7e\xd1\x73\xe1\x3e\x96\x85\x84\xf9\x0e\x7f\x62\x6a\x0f\x75\xb1\xf0\x2c\xd4\x7f\x12\xc7\xda\x47\x04\x89\x8a\xd6\xb8\xe4\x19\xd2\x84\xf5\xa7\xaf\xb5\x0a\xb8\xaf\x26\x3c\x14\x8f\xe9\xf9\x7d\x56\x86\x70\x87\xd9\xf2\xf1\xe1\x90\x01\xa1\x2a\xfd\xc7\x12\xbb\xd8\x38\xc2\x5f\xf1\x59\x57\x9e\x19\x1a\x10\xf6\x71\xa6\x57\x8a\xde\x58\x48\xe8\x3e\x30\x7c\xfd\xf5\x9e\x05\x04\x8b\xb4\x7e\xc9\x6d\x0b\x89\x30\x37\x68\xff\x8a\xad\x9c\xe9\x0c\xac\xf5\xb5\x9c\xff\xf2\x29\x13\x56\xe5\x34\x26\xe6\x70\x8b\x10\x7e\x39\x75\x32\x05\x27\x33\x08\xca\xb6\x37\x76\xa8\xef\xf7\x20\x4c\xe6\x59\x9d\x3e\xe9\xa0\x1f\x41\xee\x88\xf6\xbc\xd3\xc7\xce\x11\x7e\xd5\x4c\xb6\x2a\xbd\x55\xcd\x80\x2d\x39\x69\xa5\x47\xf1\x06\x02\xbf\xed\xe5\x41\xcd\x72\x67\x42\xa8\x51\x78\x6f\x42\x9c\x11\xe1\x64\xac\xe4\xb3\xd1\xcb\x5e\x04\x33\xfd\x98\xe2\xa0\x19\xeb\x09\x17\xfd\xae\xe9\x7f\xb6\x19\x3b\x19\x1d\x0b\xcb\xec\xfb\x99\xfe\xbf\x3f\xc2\x62\x82\xa4\x7d\x5d\xc3\xe7\xf9\xee\x84\x5d\xba\x5c\x9e\x3c\x6a\x2d\x2c\xa4\x3c\x8d\x3e\x51\x98\x2e\x4c\x83\xb9\xb6\xac\x41\x7d\x41\x42\xca\x96\x6f\x57\xcb\xbf\xac\x24\x08\x64\x3e\xb9\xcf\xeb\xa2\x44\xc8\x5d\x1a\xbc\xb9\x7a\x6a\x29\x83\xae\xbe\xfc\xbc\x9a\xe3\xf1\x04\x49\x2e\x0d\x6f\x79\x65\x5b\x42\xc7\xb0\x7c\xa6\xa3\x9b\x01\x41\xf9\xc5\xd5\xe2\x98\xb1\x7d\x3f\x2b\xfa\xdc\x83\x90\xf5\x8e\x04\x2f\xde\x43\x9f\x44\x5f\xdf\x23\xbc\x59\x63\xaa\xfb\x79\x5e\x01\x81\xad\xf6\xc0\xdb\x94\x69\x25\x84\x9f\x66\x65\xcb\x0c\xb8\x4c\x08\xaf\xca\x1a\x16\x0c\x25\x7f\x67\x21\x7f\xb7\x96\x94\xf1\x6c\x59\x82\xca\x2c\x3e\x75\xf6\x5e\x1b\x42\xb4\xe4\xf6\x43\xe6\x3e\xeb\x69\x7c\x64\x39\xdb\x95\x91\xfa\x3d\xcc\xc2\x45\x45\x85\x47\xeb\xed\xa5\x08\xeb\x6c\x32\xbf\x58\xbd\x29\x21\x68\x59\x1b\xfe\x7d\x95\xae\x4b\x48\xb7\x2b\x34\x58\xf3\xe0\x0c\x41\x69\x5e\x8a\xc2\x3f\x38\x17\x35\x5a\x98\xdb\x16\x32\xa8\xdf\xb1\xa1\xf8\x58\xdf\x0e\xc2\x35\xb6\x2f\x26\x7d\xbe\xc9\x84\xbf\x73\x96\x5f\x9f\x95\x2b\x4d\x88\x58\xbb\xf1\x74\xd9\x93\x2a\x06\x3f\x3c\x84\x05\xb5\x65\x5d\x09\x8d\xbc\x47\x03\x3b\xaa\x35\x08\xbc\x81\x22\x07\x3e\xdd\xca\x25\x38\x6c\x6a\x8b\x8f\x57\xad\x20\x2c\xb6\x54\xa8\xbf\x2f\x52\x45\x50\xb8\x55\xb3\xba\x7d\x6c\xf4\xce\x6a\x89\xc8\x15\x0e\x1b\xc2\xd1\x1f\xef\xd3\x66\x71\x06\x12\x7e\x2d\xdf\x94\x39\x72\xd7\x98\xf0\xfc\x4e\xe1\x9d\xa5\x6d\x51\x0c\xca\x82\x04\x93\x8f\xfc\x92\x20\x6c\x93\xf8\x5a\xe0\x9c\x10\xc1\xc0\x8f\x79\x22\x5f\xdc\xff\x9a\xc1\xd1\x94\xec\x92\x9a\xaf\x5a\x84\x7b\xf6\x4a\x39\xda\xf5\x23\xac\x71\x9c\x68\x7c\x72\x73\xe3\xab\xef\x15\xe8\x17\xbb\xb9\xe6\x49\xcb\x2a\x02\xef\xee\xfb\x7c\x1b\x95\x2f\x11\x12\x62\xa4\x8c\xa6\xa8\x5f\x22\x1c\x3c\x9c\x13\x78\xff\xd8\x74\xc2\xe5\xe9\xe6\xea\x5d\xf7\x86\x59\x38\x13\xe1\xcf\xd2\x0a\xba\x42\xe3\xd0\x62\x2a\x7e\xaf\xad\x51\x21\xec\x52\x6e\x35\xfe\xb4\x41\x9f\x50\x68\x70\xe3\x0e\xc7\x65\x22\x70\x54\x9f\xd9\x38\xb3\xff\x2e\xe1\x36\x67\xd4\xde\x64\xd6\x7a\x82\xe3\xd2\x02\xfe\x43\xf9\x3c\x84\x0d\x81\xdf\x57\x57\x7e\xc8\x64\xd0\xf0\x9a\x5b\xdf\xc3\x37\x99\x41\x57\xe6\xba\x54\xcd\x73\xd1\x0c\x1a\x8f\xab\x3e\x6f\xdf\x5f\x44\x98\x95\xd3\xfa\xe0\xbb\x4a\x03\x83\xfd\xa6\x2e\x06\xbe\x4d\x89\x04\x0d\x9f\xc7\x62\x02\xb9\x43\x04\x8b\x0b\x42\x62\x37\x27\x0f\x13\x4e\x3c\x8d\x98\x9f\x26\x70\x96\x81\x4a\x41\x84\x6a\x8f\xc0\x6a\x42\x8d\x70\x82\xf4\xab\xb4\xc7\x84\x29\x37\x55\x8d\x3e\xcc\xc8\x21\xcc\xbf\xeb\x31\x55\xd9\xbf\x82\x90\x97\xaf\x73\xb2\x43\xba\x81\x70\xe0\xc5\x83\xc5\x8a\x63\x25\xe9\xa0\xce\x7e\xf9\x31\xb8\xec\x4f\x74\x93\x0a\x31\x27\x24\x66\xea\xee\xd7\x75\x72\x23\xcc\xb0\xba\x9e\xad\x7e\xc8\x69\xc2\xc8\x7f\x7f\x07\xb3\xd8\x44\x99\xb0\xab\x2d\x69\x7a\xf2\x3d\x17\x06\x46\x49\xc2\x5b\xe3\x93\x83\x08\x59\xfb\x94\x9e\x3c\x5c\xb6\x82\x10\x6b\x72\x79\xb2\x97\x8b\x08\xa1\xee\xaa\x6b\x6f\x14\xc7\x49\x06\xcf\xd8\xe3\x13\xbc\x72\x37\x12\x7c\x96\xb8\xbd\x8b\xef\x12\x27\xa8\x3a\x1f\x37\x08\x89\x4c\x63\xe1\xa8\x7d\x7a\x70\xcd\xa6\x3a\x42\xe1\xfe\xcd\x27\x36\x68\x6f\x22\x5c\x5b\x9b\xdd\x7b\x70\x76\x2e\x21\xb0\xd2\xc8\x5d\x44\xfb\x1d\xc1\x22\x6e\xc7\xa8\x68\xc0\x73\x06\x73\x7d\xec\x87\x3b\xa3\x8a\x09\xbf\x9c\x7d\x5f\x0c\xb1\x66\x11\xa4\x8d\x85\xd4\xaa\x85\xaa\x18\x3c\xee\x77\xf2\xaa\x0b\xfa\xcc\xc2\xf2\x44\xfe\xc9\x09\xa7\xac\x08\x96\x79\xb3\x83\xa6\xb5\x15\x11\x96\xa8\x35\xd8\xea\xae\xaa\xae\x80\x89\xc4\x6c\xe5\xd8\x83\x91\x34\x8e\x93\x5e\x42\x2b\xce\x72\x9b\x10\x7a\xf8\x4f\x7e\x8f\x5f\x3f\xc8\x82\x5e\x75\xca\xd6\x80\x34\x05\x42\x95\x8a\xe8\x67\xe5\x83\xce\x04\x97\xc4\xb6\x6b\xeb\x13\xaf\x4e\x28\x1b\x05\x7e\x6f\xe2\x2b\xe5\x26\x2c\xa9\x99\xfb\xf0\x74\x98\x1d\x41\xd7\xd9\xed\x35\x27\xd7\x72\xc2\xa3\xab\xb7\x96\x69\xbe\x72\x27\x5c\xba\xb6\xb2\xa5\xb1\x95\x97\xb0\x73\xde\x95\x73\x53\x82\xbb\x59\xe3\xb0\xad\xeb\x95\x3c\x18\xba\x93\xa0\x77\xc3\x69\xc7\xf6\xdb\xdc\x84\x8a\xdf\xcf\xa6\x07\x71\xe8\x12\x7e\xa7\x3c\x70\x8e\xbb\x27\x4f\xc8\x63\x5c\xef\x5f\x7e\x25\x40\x70\xd4\x8b\xf5\xe4\x4d\xd9\x44\x28\xfb\x65\x1a\xaf\x22\xa3\x4a\xa0\x98\x9e\xb9\x96\xa5\x3a\x84\x5f\x27\x03\x6e\xec\xdd\xa6\x48\xd0\x2b\xf9\x1a\x16\x38\x5d\x7d\x02\xcc\x7f\xcd\x68\x5a\xb0\xbd\xa8\x02\x87\xb7\xbd\xdf\xe1\x5e\x14\x49\xe3\x10\xbf\x27\xb8\xb5\xaf\x74\x1a\xc1\xf5\xdb\x24\xf9\x57\x73\xaa\x19\xcc\x5a\xb0\xf2\x5d\x8f\xc2\x05\xc2\x72\xde\x1f\x94\x9b\x99\x46\x10\x3a\xfd\x63\x38\xb7\xf6\x22\xe1\xcc\x54\x81\xe4\xc1\xa0\x73\x04\xd1\x35\x32\xfe\xcb\xa2\xce\x11\x0a\x5b\x8f\x5c\xec\xe1\x13\x22\xcc\xe3\x4a\xf1\xac\xfb\xe9\x4e\x08\x1f\x9d\xae\x30\xed\x27\x0f\x41\xe0\xcf\xc8\x8a\xd4\x9f\x5b\xfe\x0b\x07\x4d\x95\x73\x5f\xc4\x0d\xb2\x70\xa6\xe5\xf0\x2b\x8e\xeb\xd2\x04\xd7\xd6\x6b\x52\x71\x1d\x63\x1b\xc8\x85\x53\xb5\x72\x1f\xe7\x10\xb6\xfc\x39\x7f\xee\xba\x85\x32\x83\x28\x6d\xb7\x2a\xa7\x32\x6e\xc2\x5c\x19\x5f\xb5\xe4\xe0\x49\x04\x31\x47\x76\xf9\x4f\xb6\x4b\x09\x99\xdf\x35\xe2\xf3\x74\x39\x09\x9f\x9f\x97\x84\x37\x3d\xe6\x24\x74\x3c\x33\x5d\xae\xe5\x7a\x95\x70\x63\x40\x4d\xb4\xaa\xc0\x87\xa0\x9b\x64\xac\x2f\xcb\xe7\x43\xe8\x28\x7e\xf6\x56\xda\x70\x1b\xc1\xb5\x57\x4b\x59\xda\xd6\x85\xb0\xb0\x69\x66\x5e\xd6\x68\x04\x41\xb4\xf0\xc7\x95\x9d\x8f\xee\x11\x0e\x1a\x8a\xdc\xd7\x2f\xef\x25\xf4\x88\xee\x69\xd5\x5e\xdc\x4d\xf0\x7b\xc6\x73\x68\x52\xe5\x6f\x42\x89\xb6\xc0\xfd\xe0\x8e\x4e\x82\xc7\x0f\x8d\xb3\xef\x4a\xef\x11\xf4\x05\x6e\x6b\x95\x29\xa5\x4d\x80\xd8\x40\xb4\x3b\xfe\x3c\x67\x60\x9a\x67\xf0\xf2\xf6\x58\xf1\x56\x2a\x34\xbb\x19\xb4\x98\x60\x6e\x2d\x6d\x5f\x90\xda\xc5\x40\x43\xa3\xdd\xe0\xd2\x49\x5d\x42\x6b\xdd\x53\x41\x5b\x8e\x5c\xc2\xe0\x88\x56\x8c\x47\x5b\x39\x81\x35\x28\xfc\x6b\x28\x2d\x9f\xc1\x7d\x45\x3e\x9d\xe0\x29\x6d\x2c\xac\x6f\x51\xe3\xb5\x78\x1e\xcc\xa0\xfb\xec\xce\x82\x96\x2c\x79\x1a\xc7\xd2\xa9\x3d\x91\xf7\xca\xfd\x08\xd6\x6f\x57\x69\x7e\x2c\x9c\x49\x38\x52\x59\xcf\x6e\x74\xc8\x98\x60\x9f\x32\x47\x78\xf4\xb4\x31\xc1\x92\x67\xd6\x8e\x1d\xfa\xcf\x2b\xb0\xdd\x6e\x75\xdf\x8b\xdd\x37\x08\x15\x35\x2f\x32\x70\x49\x9b\x30\x2b\x2b\x67\xbd\xfd\x3b\x77\xc2\x53\xb5\x15\x81\x9b\x0e\x72\x4e\x80\x88\xca\x52\xa3\x67\x75\x2d\x15\x98\xf5\xf2\x8c\xf1\x59\x2f\x19\x42\xfb\xc5\xce\x23\xdb\x38\x0b\x08\xc1\x82\x87\xcf\x6e\x56\x0b\x98\x80\xd3\x5c\xbf\x76\x85\x9b\xdb\x13\x4e\xb5\xbe\xd9\x12\x9b\x61\x47\x70\xd5\xd9\xce\x65\x3e\xb9\x92\x81\x9d\xba\xda\x81\xd6\x1c\x6b\x82\xe1\xd5\xb3\x1b\xff\xc6\x2f\x25\x98\x68\x9c\xb0\x3d\x13\xe3\x4a\xb0\x5b\x75\x42\xe2\xaa\x76\x08\x61\x8b\x53\x42\xc2\xb1\x0e\x71\x02\x47\x8f\xf3\xe2\xa8\xc3\x93\x09\xca\x26\x9d\xc6\xae\x73\x54\x09\xf9\x5e\x5b\x19\xf3\xf2\x58\x06\x75\x82\x1f\x45\x17\x77\x0a\x10\x1a\xc3\xfa\xd2\x58\x59\xa2\x84\xeb\x72\x4e\x27\x7c\xd4\x66\x11\x84\xca\x35\x36\xa8\x9f\xd5\x27\x24\x64\xea\x14\xb2\x52\x84\x08\x99\x7f\x2a\x17\x14\x2c\x66\x23\x18\x7f\x99\x2e\xd5\x5c\x7d\x87\xe0\xd4\xfd\x5c\xe8\x45\x8c\x1f\x41\x22\xe6\xe3\x54\x1b\xf9\xfd\x84\xea\x93\xbf\xef\xd8\xba\x3d\x66\x60\x7e\x42\xc4\xfa\xdc\x33\x65\x42\xea\xf4\xb2\x87\x73\x17\xa5\x33\xf8\x15\xb5\xe2\x8b\x9b\xc2\x41\x82\xc1\x48\xfe\x56\xf9\x4a\x47\x02\x76\x0c\xd9\x15\x2d\xda\x4e\x98\xa2\x7a\xd0\xa0\x5d\x68\x06\x61\x43\xe4\xb2\x33\x4f\x83\xf6\x10\x7a\xae\x72\x2d\x5d\x30\x65\x06\xa1\x33\xbe\x47\x6e\x99\x2b\x07\x61\xed\xcf\x18\x5b\x73\xef\x5f\x2c\x14\x86\x98\x2c\x9d\x25\xd2\xcf\x42\x9d\xb6\xba\xd3\x6b\x9b\x55\x34\x8e\xb9\x0a\x8f\xa3\x3b\xee\xd4\xb1\xf0\x68\xdb\x86\x8e\x1e\x6b\x67\xc2\x6c\xe1\xdd\x57\xab\x06\x42\x19\x28\x39\xb2\xdd\xf1\xd0\xdc\x45\x50\x3b\xb5\xe5\xc1\xc8\x29\x23\x82\xb0\x05\x5f\xf5\xbd\xf9\x3e\x04\xb9\xf3\x9f\x94\xcd\xca\xae\x30\x38\x7d\x70\xad\xfc\x36\x6f\x7d\xc2\xa8\x61\x87\xa7\x90\x88\x24\x21\xd7\xec\x5e\xd1\x99\xec\xd9\x84\x5f\x6f\x07\x79\x0b\xef\x5f\x20\x28\xbc\x6b\x3d\x78\x62\xa5\x22\xa1\xf3\x0b\x6f\xd7\x82\x8f\x63\xe7\xc5\xea\x3f\xa9\xcc\x97\x01\x16\xaa\x73\x4b\x43\x67\x25\x8a\x13\x44\x3f\x55\xbd\xcf\x70\xb8\x40\xa8\xf5\xb7\xf9\xac\xbd\xaf\x95\x85\xfa\x5e\xad\x55\x79\x0a\x87\x08\x53\xd9\xbd\xcd\xaa\x63\xaf\x13\x74\x44\xc4\x94\x7e\xde\xda\x49\x68\xce\xee\x63\x4d\xde\x58\xc5\xc0\xbf\xe5\xfa\x8b\xb8\xcd\x21\x84\xbf\x26\xd1\x81\xce\x3b\xec\x08\x03\xf3\xc5\x5f\xcc\x97\x5e\x42\x28\x57\xbc\x95\x60\xd8\xb3\x97\xf0\xa9\x67\x38\xd1\x3e\xc2\x86\x70\xe2\x7a\xca\xab\xbf\x91\x97\x18\xd8\xad\x1b\xad\x17\x2a\x11\x23\xfc\xbc\xa9\x9e\xfc\xbe\xb9\x90\xa0\xff\xae\xe8\x8a\x93\x75\x1d\xa1\x57\x57\xe9\xc8\xa1\x35\x77\x18\x38\xae\xbc\x1a\x8a\x75\xaf\x08\x19\xcf\x13\x1d\x3a\x9e\x36\x30\xd0\xf4\x39\xb5\x6d\x8a\xcd\x52\xc2\x50\xe8\xc5\x8b\x73\x2f\x24\x10\x32\xb6\x68\xdf\x13\x57\xb6\x24\x34\xbe\x90\xeb\x5d\x28\xaf\x4a\x18\xb1\xb6\x32\xb1\x9b\x3c\xc8\xc2\xbe\x24\xe9\x8c\x97\xc9\x46\x84\x7d\x51\x8b\x2c\xe6\x2f\x35\x9e\x00\xa5\x56\xe1\x78\xf4\x56\xb2\xe0\x26\xbc\xaf\x3f\x86\xbf\x99\x85\x9a\x5b\xf5\x97\x79\xf8\x8c\x09\x0a\x6f\x94\x92\x12\xac\x77\x12\x3e\x1c\x67\xb3\x28\xf9\x65\x43\x30\x8c\xc9\x49\x5d\x79\xae\x9f\x05\x4d\x95\x18\x16\x47\xa3\x16\xa1\x59\x75\x57\xbc\x0e\xb7\x2e\x61\xd5\xe5\xef\xcb\xf5\xb5\x4a\x09\x7f\xa6\x65\xae\x96\x8f\x7a\x45\x60\x56\xe5\xae\x91\x5d\xf4\x94\xf0\xa2\x29\x39\x61\xed\x97\x06\x02\xf3\xa3\xee\x60\x51\xd5\x61\x42\xb9\x3f\xf7\xd1\x9b\xeb\xab\x08\x7d\x3b\xd2\xb4\xfe\x95\x1e\x8a\xf2\x0b\xb9\xa9\x31\x01\xda\x31\xea\x32\xc7\x99\x65\x04\xe9\x90\xc1\xb9\xfa\x16\xbb\x08\xec\xe5\xfd\x83\x9c\x47\x04\x08\x3f\x1d\x9f\x1e\x7a\xbc\x38\x7a\x02\x6c\x67\xdb\xa7\x7e\xfe\x72\x80\xc0\x79\x4d\xb6\xc4\x64\x49\x0d\xe1\x9b\xd4\x34\xaf\x15\xe6\xc7\x08\xcf\xd9\xce\x86\xfa\xce\xbb\x4e\x50\xd4\xce\x3b\xf7\x0f\xef\x37\x54\x9d\xf7\x19\x83\xff\xaf\xbc\xf0\x7f\xa8\xff\xab\x77\x63\xcf\xd0\x21\xc2\xb3\x01\xbd\x73\x11\x2b\xb3\x09\xcf\x72\xa4\x6e\x29\xd9\x66\x11\x5c\x4a\x6e\xce\x8b\x7b\xe1\x45\x60\x77\x5b\x1c\xf1\x6f\xcd\xf5\xd2\xfa\xe2\x0c\x23\x65\x82\xa1\xab\x83\xf9\xae\x3b\x2a\x84\x87\x32\xb7\xd5\xba\xef\x2e\x23\x3c\xf3\x5c\x54\x60\x15\x15\xc1\x20\xf2\xe7\x9c\x9f\xcf\x65\xcf\x13\xc4\x87\xb5\xf5\xb8\xa7\x84\x11\x54\xe7\x74\x97\x95\xd7\x3c\x27\x98\xff\x3e\x77\x4c\x72\x46\x09\xe1\x90\xa2\xee\xe6\x4b\xe2\x51\x84\x7d\x7d\xcf\xfc\xbf\x36\xc7\x13\x46\x05\xff\x58\x29\x54\x78\x11\x92\xcb\xe5\xb3\x2b\x2d\xe4\x09\xab\x38\x5f\x3d\xbe\xbd\x2c\x8b\x70\xc9\xa1\x37\xa2\x40\x5e\x96\xa0\xda\x73\x61\xbf\x47\xf0\x82\x09\xe8\x34\xba\x3b\x9f\x77\x6b\x07\x0b\xfb\x6b\x4f\x9a\xbe\x64\xe2\x19\x68\x15\x48\x4f\x56\xf8\xe4\x41\x60\x3d\xaa\x3b\xc4\xcd\x6f\x4c\x58\xfc\xe4\x59\xc9\xf1\x40\x79\x82\x93\xc4\xfe\x46\xb9\xf2\x6d\x84\x87\x2f\x57\x0b\x08\x85\xf9\x10\xb8\xf9\x1e\xd9\x38\xae\x90\x23\x70\x75\xfd\x34\xbf\x66\xa6\x4d\x90\xbf\x16\xb8\xd8\x4f\x69\x1b\x61\x61\xb0\xec\x5c\x58\x49\x10\xde\xa6\x95\x71\x46\x71\x6e\x21\xfc\x5d\x3a\x92\x62\x28\xb0\xe3\xbf\xb0\xa6\x3c\x69\xd9\x09\xb1\xfb\x0c\x52\xfc\x0e\xcf\xfa\x57\x5e\x4e\x5a\xaa\xf3\xb7\x90\xfd\xbf\x20\xb1\xf5\x41\xe6\xeb\xa6\xf3\x2c\xd4\x3d\x3b\xf9\x34\x6c\xd7\x2b\x16\x06\x93\x5a\x1d\x1d\xfd\xc5\x68\x1c\x4a\xb1\x1d\x42\x33\x45\xbb\x58\x48\x8e\xfb\x70\x70\xd7\x45\x1e\xc2\x03\xc9\x16\x56\x77\xe8\x03\xc2\xa5\xd6\x73\xaa\x11\x4f\x3c\x26\xe0\x63\x89\xb5\x57\xb3\x4c\x2c\xa1\xe4\xdb\xf3\x69\x6a\x87\x54\x09\x67\xb9\x79\x83\x77\xfb\x6a\x11\x66\x28\x4f\x96\xfc\x34\x33\x84\x81\xc4\xd9\xd2\x0c\x76\xc5\x6a\xc2\x87\x0d\x2a\xc5\x3b\x33\x19\x82\x68\xf0\xa9\xee\x8b\x32\x4f\x08\x45\x69\xf1\xb5\x3e\x51\x37\x09\x03\x1f\x9e\xed\x50\x18\x79\x46\x40\x45\x80\xf4\xc7\xa3\x17\x09\xfc\xa1\x3b\xef\xbe\x9d\x12\x41\x38\x65\x62\x13\x30\x68\x5a\x47\xa8\x3a\xea\x1f\xaf\x66\x7b\x85\x70\xe0\x6e\xd2\x26\xe3\xea\x6b\x84\x5b\x16\x83\x02\x11\xa6\x57\x08\xb6\xcc\x50\x0b\x17\x5b\x32\x61\x44\x5f\xa0\x80\x57\x38\x9e\x81\xca\xd7\x39\x1d\x2e\x01\x6c\x34\x0e\x37\xa3\xb8\xcd\x8b\x1e\xae\x99\x80\x46\xd3\x4f\xaa\x2b\x8f\xff\x66\x61\xaa\xf6\x27\x93\x9e\xce\xa7\x15\xf0\xe2\x8e\x71\x7b\x52\x65\x41\x58\xb1\xa7\xb3\x5e\x2a\x27\x82\x01\xd7\xf1\xce\xec\xcf\x67\x0d\x08\xbc\xb7\x71\x55\xbe\x3d\x8f\x41\xed\x29\xe5\x27\x37\x6c\xa6\x10\x4c\xf7\xbf\x3a\xb1\x40\x44\x9f\x20\xb2\x78\xdf\x6c\x0d\xd1\x39\x04\xc9\xf9\xee\x8f\xae\x89\x0e\xb1\xb0\xcc\xa5\xbc\xfe\x91\xb5\x28\x83\xe6\x0f\x4e\x09\x97\xa6\xf0\x11\x5e\x19\xae\x56\x71\x6e\xf3\x24\x44\xee\x4e\x2a\xb9\x0c\x4f\x42\xe1\x0f\xb6\x7d\x49\x9b\x25\x08\x57\x52\x85\x7a\x03\xaf\x6d\x22\xb0\xef\x57\x98\x79\xc1\xdd\x84\xe0\xe3\x53\x91\x69\x2e\x5a\x5f\x01\x19\xe7\x86\x99\xcf\x94\x92\xe9\x3f\x30\x5b\x63\x60\xf6\xc8\x26\x89\xff\x42\x65\xbf\x51\xe7\x85\x2d\x6c\x84\x4a\x7f\xd1\x1a\x8e\x73\x16\x04\xb7\x2b\xa6\xf7\x46\xc3\x8d\x08\x67\x06\x65\x15\xf2\x2f\x6b\x4f\x80\xe0\x12\x87\x6d\x47\x6c\xa7\x12\xde\x2b\xad\x4c\x6d\xda\x1d\x4a\xf8\x32\xff\x46\x74\xdd\xb2\xb5\x84\x59\x1c\x25\xd2\xfe\x99\xb2\x84\x87\x70\x16\x74\x51\x97\x20\xec\x95\xe9\x5e\xc1\xb1\x99\x8f\x70\x5a\xf1\xb6\xe9\xf7\xbe\x19\x04\xb6\x9c\x96\x95\x53\x7e\x9c\x9c\x00\x9d\x6e\x3f\x6d\xf6\x88\xfd\x84\x4b\xaf\x2c\x2a\x34\x86\x0f\x12\xec\x2f\x96\x7e\x6c\xca\xaf\x60\xa0\xbd\xa4\x74\x51\x36\x5b\x3c\x41\x71\xc5\xd5\x0a\xff\x5d\xcd\x0c\x16\xce\xdc\x7a\xa6\xa5\x20\x9b\x81\xa0\x75\x54\xd0\x92\x6b\x71\x84\xc8\xd1\x92\xab\x8e\x2c\x15\x82\x98\xe2\x9a\xd5\x77\x13\xb5\x08\x35\x97\xf2\xf8\x2b\xbf\x10\x61\x30\x9d\x3d\xeb\x7c\x9b\x1f\x21\x43\x75\xad\xd1\xd6\xec\x76\x16\x86\xd7\xfa\x17\xdf\xbd\x23\x4a\xc8\xd7\xf9\x96\x77\xe6\x58\x15\x33\x5e\x66\x2a\x38\xf9\xde\x0e\xfe\xc0\x42\x6e\x44\x92\x72\x61\xbf\x0a\x21\x73\xcf\xde\x6a\x13\x85\xb7\x84\x5b\xe5\x66\xc9\xd2\x42\x06\x84\x6b\x3f\x5d\x52\x4b\x5e\xba\x13\x34\xff\x04\x7f\xe5\x9d\x24\x4a\xb8\xa6\x65\xc4\xa1\x39\xba\x60\x02\xa6\xfb\xa5\xc9\x6f\x98\xd1\xc7\x82\xcd\x88\xb3\xef\xa8\xd3\xd8\xb5\x2b\x7b\xaa\xdc\x85\x39\x71\x84\x8b\xfb\xad\x67\xfb\x77\x1b\x12\x66\xee\xb9\xb4\x47\xf8\xc0\x72\x82\x9c\xd2\xe2\x8d\x25\x2a\xa3\x2c\x6c\x91\xbf\x28\x29\xbb\x4f\x92\x70\xf9\xe8\x45\xde\xca\xa9\x2a\x84\xed\xbc\xd6\x7c\xbf\xa2\xd6\x11\x7c\xd6\xa7\xd7\x47\x8a\x07\x10\x02\x2a\x07\x8e\xea\xef\xb8\x49\x38\x3a\xb0\xe8\xa2\xde\x18\xac\x0f\x30\xfc\x19\x2a\x5d\x2c\xd4\xeb\xfc\x79\x79\xe0\xa1\x27\xe1\xe1\x8e\xd0\xe8\xc3\x5d\x1b\x08\x99\xfa\xbf\x1e\xcb\x9a\xea\x13\xea\xaf\x97\x96\xc8\x39\x2c\x23\x1c\x1e\x30\x59\xc3\x3a\x2b\x49\xd8\xc0\xdb\x6f\x70\x7b\x13\x07\xe1\xc0\x95\x1b\xdb\x45\xfd\x02\x08\x17\x74\x26\x2b\xee\x8d\x4e\x24\x88\xdc\xa8\x48\x4b\x11\xd7\x25\xfc\xe1\xd6\x5d\x6a\x17\xbb\x8c\xe0\xd6\xb9\x2b\xb4\xdc\x62\x1b\xe1\x4c\x99\x33\x66\xb5\x8b\x13\x04\x6b\x04\x43\xe2\xf6\xed\x22\xe4\x16\x35\xaf\xdb\x97\xa4\x43\xd8\x93\xac\xb3\x70\xd9\xfa\x4d\x84\xb5\xab\xeb\x4f\xf2\xf1\x4c\x23\xb8\xc7\x15\x29\xfe\x94\x71\x22\xf4\xcf\x7b\x9a\x31\xa7\xe8\x02\x81\x43\x22\xee\xeb\x9a\x27\x3b\x09\xef\x8a\x4e\x34\x39\xdf\xb9\x41\x30\x7a\x9c\x5b\x9e\x5e\x73\x9a\x20\x28\x54\xf4\x77\x17\x87\x2f\x41\x69\x4e\x57\x6c\x7f\x9e\x12\x61\xb1\x3c\xdf\x40\x0d\x57\x36\x61\x54\x3e\xf4\xbd\xb7\xbc\x20\xe1\xcd\xa5\xb5\x2f\x34\xc5\xf7\x11\xcc\xc2\xbe\x7d\x6e\x99\x9f\x40\xe0\x17\x9a\x76\xf9\x5f\x09\x8a\x99\x74\xaf\x6f\xc1\x83\x0a\x1c\xe9\xbf\x55\x1e\x5c\xc0\x46\xf8\xbc\xf1\x8d\xe0\x88\xff\x5d\xc2\x93\x86\xf9\x23\x59\x43\x7c\x84\xd9\x5b\x04\x8b\x44\x66\xa7\x11\x0e\xee\x72\xe7\xfe\xf2\x39\x87\xc1\x70\xdb\xd0\xf5\xfc\x27\x57\x09\x27\xf3\xcc\x68\x4b\xf3\x1b\x42\xa6\x9d\x4b\x4e\xfa\xef\x6e\x82\x4f\x70\x6c\xe1\xe2\xdc\x2a\x42\xc9\xdc\x67\xd2\x4b\x0e\xdf\x25\x5c\x30\xf7\xd2\x3b\x91\x9c\x49\xd0\xbe\xd8\x57\xf6\x51\xb2\x90\xe0\xeb\x52\xd7\x5b\xe0\x78\x87\x60\x76\xb8\xc8\xe9\xf8\xd8\x28\x35\x62\x76\xc3\xd9\xaf\xde\x84\x13\xed\x4d\x03\xb3\x2d\x77\x13\x84\xd4\x8a\x1b\x9e\x6a\x33\x84\x45\xf7\xb9\x85\x9a\x52\x56\x12\xae\xa9\x3c\x56\x7b\x54\x3d\x93\x90\x10\xd6\xea\xaf\xae\x36\x9b\xc0\xf6\xbd\xcf\x26\xf6\xb3\x1a\x61\xc1\xbb\xf7\xe4\x2b\x29\x49\x48\x39\x9e\xc2\xfd\xd7\x6b\x0a\xc1\x6e\xc7\xcd\xec\xa4\x94\x38\x06\xcf\xe5\x87\x57\x57\xf8\xca\x12\x24\x9b\x7b\x0d\xcc\xc2\xa4\x08\x9f\x8d\x33\xaf\x70\xa5\x45\x11\x3e\x0c\x7e\xdb\xb8\xab\x5b\x96\x50\xf2\xc3\x3c\x2b\xf0\x3a\x8b\x10\xb0\x61\xe9\xa5\xce\xe0\x03\x84\xfb\x92\x5e\xce\x05\xdc\x11\x84\x08\x83\x59\xdf\xf4\x53\xaa\x19\x28\x0f\xec\xf8\xdb\xbc\x73\x33\xa1\x20\x47\xec\xd6\x5f\x96\x3d\x83\xe2\x7b\xd9\x46\x3a\x3e\x2c\xc2\xde\x5f\xb9\x16\x73\x1d\x26\x13\xe6\x3d\x0f\x34\x59\xb3\xc2\x6e\x02\x94\x5d\x33\xcb\xf2\x43\x05\x08\xf2\x31\x89\xb1\x93\x9c\xb9\x08\x9f\x1e\xd6\xce\x7a\xf4\x51\x80\xb0\xbf\xb2\x56\xf8\xb8\xe1\x5c\xc2\x8f\xa8\xc8\x04\xf5\x2b\x42\x13\xb0\xf0\xed\x26\x66\xf5\xe7\x5e\x16\xac\x97\x1b\x59\x26\xae\x34\x26\xfc\xdc\x38\x87\xff\xc1\x9a\xe5\x04\x1b\xb6\x22\xb1\xd4\x84\x75\x84\x86\xf5\xd5\xca\x2a\x8a\x9a\x04\xae\xcd\x5f\x6f\x0e\x7e\x5e\x33\x01\x9f\x96\x5d\x72\x38\xda\x31\x8f\x70\xe7\x7a\x65\xf5\x90\x2f\x1b\xe1\xc0\x1f\xc1\x25\xbb\x1c\x9e\x12\x4e\x2e\xdb\xce\xeb\x3a\xf9\x21\xa1\x77\x7f\xf4\xb1\x93\xe6\xf5\x84\xe4\x64\x76\x9b\x5f\xa5\x2d\x84\xdc\x53\xf9\xaa\xce\x63\xa3\x2e\xce\xb2\xfb\x25\xfc\x97\x09\x57\x1d\xc4\xb3\x86\x76\x65\x11\xde\x98\x07\xc5\x1e\x58\x9c\x40\xf8\x72\x3c\xe7\xb2\xf7\x18\xb8\x1d\x04\x65\x17\xb4\xa5\x10\x44\x9f\xc4\xf6\x2f\xbd\xe8\x4e\x60\x22\x7c\x25\xa7\x26\x15\x12\x36\x1f\x72\xdf\x3a\x63\xcd\x65\x06\x82\x56\xfb\xde\x73\xb5\xae\x25\x04\xcf\x0d\x78\xc0\xf5\x44\x90\xf0\xc7\x59\x71\xdd\x69\x4e\x1d\xc2\x6d\x41\xe3\xc7\xbf\x27\xa5\x4d\x40\xc3\xa7\xe5\x8a\x3a\x4e\xf1\x84\xd8\xc7\xf2\x7b\xbe\x94\xe4\x10\x74\xac\x42\x84\x19\xb6\x42\x82\x84\xdc\xef\xcb\xb3\x9d\x97\x10\x06\x3b\x7d\x9b\xe5\x8f\x3c\x62\xb0\x7a\x74\xa9\x5b\xeb\xb4\xe9\x84\x60\x7b\xb1\xb5\x86\x89\x43\x2c\xcc\x11\x37\xed\x9e\xfa\x5d\x89\x90\x65\xea\xe6\x64\xbe\xd5\x85\xc0\x3e\x25\xe8\x93\xe7\x57\x13\xc2\xb0\xdb\x13\x53\x83\x32\x47\x82\xa7\xca\xe2\xef\x87\x83\x3f\xb2\xe0\xe5\x50\xf9\xc7\xae\x7b\x12\x61\x8f\xd7\xee\x68\x93\xf0\x3b\x04\x35\xa3\x04\xc5\xa0\x34\xb5\x09\x48\xa9\xdf\x7b\xf3\xf4\x8a\x0f\x2c\x6c\x4e\xd5\x8b\xbe\xf5\xe7\x0d\x83\xa5\xc5\x77\x9a\x26\xb3\xb4\x18\xb4\x1f\xdf\xc3\x11\x3e\xa4\x4d\xe0\xb3\x5b\x73\xd3\xfc\x83\x13\x61\xb6\x47\x9a\x87\x2e\x4b\x80\x70\xa0\xea\xdd\x4f\x5e\xd1\xd3\x0c\xba\x7c\x78\xe5\x2d\x77\xa6\x12\x4e\x4e\x7f\x3b\xf8\x36\x28\x9c\x41\x40\x98\x55\xa3\xb2\xc7\x6e\xc2\xbc\xde\xd4\x93\x81\xfd\xad\x0c\xf6\xbc\x14\xdc\x74\xf7\x8d\x26\x61\x45\x7d\x9f\xa6\xd2\xb1\x20\xc2\x97\x4f\x29\x77\x6e\x85\x5b\x12\xfc\xea\x0f\xe6\xc4\x28\xef\x23\xd4\xbc\x3d\x25\x11\x52\x59\x44\xc8\x29\x36\xae\x29\xe6\xaa\x66\xb0\xdd\xe8\x7e\x81\x43\x76\x1c\x8d\x63\x6e\xf8\x9f\x2a\x67\xc1\x1c\x42\x79\xe2\xdb\xfb\xff\xca\x11\xf5\xa4\xf4\x2b\x29\x3d\xac\xff\x40\xf3\x61\xde\xb3\x8e\xf3\xdf\xb2\x20\xd2\xd5\xa2\x57\xda\x37\xb6\xf7\x56\x99\x70\xc8\xcd\x77\x22\xbc\xeb\x58\x4d\x3a\x11\x9a\x04\xd1\x33\xb1\x8b\x1b\x1d\x8d\x08\x0f\x25\xcc\x7a\x86\x02\x54\x09\xfc\xab\xcd\xbd\x5b\xcf\x8a\x11\x1e\xea\xfe\xf6\x09\xfb\x96\xc5\xe0\xe5\xe0\x23\xe1\x7c\xce\x42\x02\xdd\xd3\x50\x8c\xb2\xb2\x25\xcc\xc8\x8f\x5d\x38\x30\xaa\x48\x70\xcf\xfb\xc2\x59\xb3\x55\x88\xb0\x41\x3b\x0c\x1e\x87\x93\x08\x5b\x73\x7c\x47\xf6\x1e\x31\x26\x18\xe5\x6c\x9c\x71\x67\xbe\x3a\xc1\xf3\x62\x32\xc7\x0f\x49\x61\xc2\x16\xef\x87\x66\xf1\x83\x95\x84\x90\xd0\xf3\xe0\x99\x95\x4a\xd0\xda\xcd\x7b\xbe\xc9\xc1\x9d\x70\xbb\x28\xb4\xab\xb4\x20\x84\xf0\xd3\x42\x3c\x30\x3e\xce\x9b\x70\x29\x7c\xc1\xb7\x75\x55\x95\x84\x6d\x8f\x5c\xf4\x53\x62\xee\x32\x18\x14\x5d\xba\xe0\x42\x20\x11\x1a\x6f\x78\x8b\xf2\x8e\xbd\xcb\x4d\x83\x4f\xab\xea\x1e\xb0\x11\xfa\xf5\xd6\xc6\x0b\xf1\x2f\x25\x1c\x97\xb0\xf5\xda\xb2\xcb\x94\xb0\x6f\x9a\xfd\x48\xc5\xe5\x53\x84\xaa\xa7\x05\x77\xc9\xe3\x0c\xc1\x91\x5d\x7e\xb5\x85\x9a\x2d\xa1\x48\xf1\xfb\xe9\xba\x07\x91\x84\xe7\xa1\x02\x6c\xc6\x5b\x83\x19\x2c\x7c\x5b\xc3\xdf\xa2\x96\x40\x30\x50\x5f\x70\xe4\x94\xce\xa9\xff\x42\x8f\x90\x96\xbd\x0e\x47\x00\x21\xfe\x6b\x57\xec\xb9\x9b\xda\x04\x89\x8c\x4d\x6b\x92\x4c\xd6\x13\x06\x5e\xbf\x9e\xf6\x35\xc7\x83\xa0\xac\xb9\xf6\x18\x3d\x2f\x25\x5c\x36\x28\x70\x59\x1b\x76\x93\x90\x1a\xaf\xab\x74\xeb\x4e\x0d\x03\x7e\xde\xc6\x43\x2f\x4c\xbe\x13\x8c\x54\x56\x73\x1d\x9a\xf2\x8e\xc1\xdd\x6d\x62\x5b\xaf\xec\xbb\x45\xe8\xf2\xb5\xf9\xb3\xfc\xde\x51\xc2\xb9\x7c\x25\xb5\xee\x31\xdc\x5e\x35\xfb\xfb\xb1\xd6\x58\xc2\xb4\x7c\x5d\x97\x59\x4f\x4e\x4f\x18\xa5\x1d\x71\x69\x09\x5a\x70\x8a\xf0\xe4\xaa\xd6\xb5\xc0\x3e\x35\x42\x77\x4d\xe7\xe7\xec\xb0\xa5\x84\x56\x01\xa3\xa6\x5a\xb3\x51\x16\xca\x8f\xb6\x07\xa7\x6a\xc9\xd3\x38\xfe\xf6\xc6\x14\x31\x1e\x9f\x58\x38\x9a\xc5\xe1\xc2\xbb\x70\x19\x41\x59\xca\x24\xcd\xc9\x50\x8c\xf0\x35\x3a\x72\xb6\x7c\xa8\x06\x21\xc3\xec\x46\xa8\xaf\x66\x05\x81\xa4\xc5\x5d\x70\xfa\x26\x41\x65\xea\x99\x41\x13\x8d\x40\xc2\xb6\x80\x49\x12\x03\x17\x6c\x09\x9e\x9a\x71\xaf\x67\xb8\x24\x11\x2c\x1a\xd3\x48\x63\x58\x89\xc0\x66\x77\xf3\x8d\xa2\x74\x18\x61\xa0\x20\x86\x95\xf1\x7e\x26\xe1\xf8\x49\xee\x7d\x9c\xfc\x86\x84\xbd\xf5\xef\xbc\xf2\xf7\xee\x21\xec\x4d\x74\xf0\x3a\xaf\xe6\x41\xb8\xe7\xee\xf9\x6a\x9b\x4d\x2f\x0b\x01\x5d\xa5\xf2\x16\xdf\xf7\x12\xbe\xbf\x2c\xe8\x39\x58\xb3\x84\xf0\xa9\xf4\x09\x2b\xdc\x7b\x03\xa1\x68\x93\x9d\xe6\xef\x96\x7c\xc2\xd7\xc2\xf5\xf3\xfe\xa1\x84\x5f\x6a\xf9\xe7\x9b\x49\x04\xad\x12\xe3\xb4\x2f\xae\xcf\x2b\xe0\xd9\xc5\xa1\x75\x48\x40\x92\xf0\xca\x48\x26\x3a\x5a\x61\x0e\x21\xee\x7a\x5f\xba\x84\x80\x1d\xc1\x7a\xe4\x41\xfb\xc7\x0c\x25\x82\xd8\xde\xdb\x39\x1b\xac\x8c\x09\xd3\xec\x37\x2b\xee\xb5\x3e\x4d\x28\x0c\x37\xcd\x9c\x99\xee\x49\xb0\xf6\x32\x79\x79\x3b\x60\x33\x61\x53\x16\x39\x49\x45\xda\x30\x88\x14\x2f\xfb\xd5\x56\x98\x49\x78\xa9\xd6\x25\xfe\xd8\xf3\x06\x21\xba\xf5\xe6\xf4\xed\xa6\xcf\x08\x3f\x26\x09\xf5\x7e\x9a\xd7\x40\xe0\xbc\x73\xa2\x4a\x41\x53\x83\x20\x9f\x2f\xdc\xd3\x2d\xf5\x8c\x85\x35\xaf\xfb\x23\xb6\x8a\xf3\xd1\x38\x9e\x6c\x70\x9d\xbd\x2d\xa8\x97\x05\x73\xe5\xdd\x75\x33\x4a\x47\x58\x70\x8b\xcb\x31\x7b\x63\x62\x47\xe3\xa8\x4d\xd8\xfe\x5d\xfa\xe8\x11\x02\x3b\xc3\xfe\xca\x8e\x7b\x07\x61\x58\xfd\xf5\x45\x85\x16\x59\xc2\xdf\x1b\xda\xcf\xf5\x79\x04\x08\xdd\xea\x57\xec\xf3\x36\xad\x23\x5c\x7e\x64\xdc\x25\x93\x15\x48\x38\xba\x59\x33\xf4\xec\x0a\x1f\xc2\xf2\xf8\x65\x59\x3e\x85\x4e\x84\xe2\xde\x59\x59\xaa\xe1\xba\x84\xe4\x4e\x4b\xfb\xef\x42\x0f\x19\xd8\x5b\xc5\x75\xca\x08\x8a\x11\xca\xa3\xbb\x92\x96\x59\x57\x11\xcc\x5a\xf7\x5e\x8e\xfb\x59\x45\xb0\x3e\x77\x5a\xf4\x33\xe3\xcf\xc0\xbd\xed\xdd\x62\xe5\xa3\x17\x08\x2b\x9e\x4f\x7d\x77\xa7\xd3\x94\x30\xa3\x45\xba\xef\x7d\xde\x16\x42\x66\x0d\xed\x94\x7d\xae\x4b\x98\x29\x54\xb1\xff\xd6\xd0\xd8\x5b\xd9\x19\x75\xc9\xa1\xbf\x81\xd0\x3d\xb3\xb1\xa0\x6c\xac\x3c\xb0\x8c\x3c\x23\xd6\x65\x40\x78\xc9\xc8\x29\x2a\x87\x2c\x21\x9c\xd9\x55\x20\x2c\x19\x7d\x8c\x70\x88\xd8\x3b\xe3\x76\x2e\x20\xbc\x96\x2a\x1c\x5e\xee\xad\x48\x68\xef\xbc\xbb\xc9\x2b\x65\xd9\x04\x30\x8f\xe4\x27\xe9\xee\x8a\x62\x10\x1a\x32\x6c\x6e\x5a\x3f\x99\xe0\xfa\x78\xdf\x15\xb6\xe5\x2c\x82\xb8\x34\xc7\xba\x9d\x36\x19\x84\x37\xf6\x3d\xa7\xc4\x2e\x14\x11\x3e\xac\x5b\x93\xff\x27\x7c\x2d\xc1\x4b\x6e\xb5\x86\xdd\xc9\x5d\x84\x2a\xf6\xc5\x3c\x8f\x0f\xe5\x12\xd6\x99\xed\x54\xbc\xf0\xed\x2c\x41\x42\x24\xb2\x22\x2b\xd0\x82\xf0\xf5\x34\xc7\xe1\xcf\xc5\x31\x84\xe6\x15\x6e\xc9\x72\xab\x43\x09\x3d\xb5\x3c\x15\x16\x29\x5e\x84\x08\xfb\xbf\x3f\xd5\x8f\xf2\x10\xe2\x5e\x7d\x4b\x63\xdb\x27\x4f\x58\x38\xfd\xfa\x71\x9e\x4d\x8b\x08\x81\x3e\xbb\x45\x46\x1f\x2b\x12\xf8\x5f\x7e\x0c\x5d\xa3\xfb\x81\x85\x27\xbc\x65\x7c\x7f\x71\x9d\x70\xe9\xf5\xfe\x0b\x27\x9f\xc7\x12\xe6\xf7\x6a\xec\x88\x1f\xc3\x95\x06\xb5\x34\x77\xa1\x20\xc2\xec\x81\x86\x7b\xaf\x33\xc5\x08\xf2\xdd\x62\x9f\xe3\x6e\xd8\x11\x56\x37\xa7\x9e\x3f\x98\x6b\x46\x30\x9d\x74\xd9\x27\x24\x36\x87\xf0\x6e\x63\xe7\xd6\xca\x9f\x66\x84\xf6\xe6\xc5\x17\x24\x46\xb9\x09\x37\x1e\x1e\xb0\xf9\xd5\xa3\x4a\xf0\x97\xce\x9d\x4d\x47\x93\x09\x0e\x7e\x6f\x5f\xf1\x2c\x31\x25\x24\x46\xd9\x5c\xd2\x88\x57\x20\x9c\xe1\x7c\xdf\x67\x53\xd7\x50\x81\x75\xb7\x2f\x86\x75\xf4\xc9\x13\xbe\xb0\xa7\x2e\x8b\x8f\xdf\x4a\x90\xe4\x9f\xd4\x4e\x3b\x0e\x4c\x28\xff\x3f\xf8\x03\x3d\xe3\x82\x16\xbf\xaf\x80\xa7\xea\x21\x38\x8c\xfd\x3e\x89\x87\x76\x3a\x1f\xe0\x3c\x5f\x81\xe8\xda\xfc\x69\x95\x17\x94\xe8\xff\x85\x90\x2e\x51\xc9\x39\x2b\xdf\x57\xc0\xdc\xab\xd4\xcf\x3e\xe6\x04\xe1\x7e\xec\xa2\x4d\x3b\x76\x9d\x20\xcc\xba\x7c\x52\x60\x95\xf5\xd8\x65\x3f\x88\x4f\x49\x9a\x35\x8f\x30\xd7\x64\xe6\x32\xc5\x41\x51\xc2\x01\x0b\xbb\xb8\x81\x13\xc2\x34\x98\xf2\x7a\x3f\x7b\x30\x07\xe1\xaa\xbd\x9b\xb5\xe1\x5a\x35\x42\x5c\xa4\x93\xc1\x92\xc9\x67\x09\x1d\x62\x7a\x76\xbb\x17\x3b\x4f\xc0\xb1\x9c\x1f\xc2\x25\xc1\xea\x04\x91\x91\x05\x33\xbe\xf1\x94\x12\xbe\x48\x58\x86\xe8\x72\x73\x12\x16\x65\x5f\xff\xec\x2d\x38\x9d\x50\xf5\xcb\xfe\xa5\xd8\x37\x16\xe1\xc1\x30\x9b\xf5\x8a\xae\x02\x42\xd3\xc7\x25\x17\x9b\xa5\xaa\x09\x2e\x93\xfd\x47\xff\x21\x6c\x6f\xa3\xcc\xab\x31\xc4\xf7\x3e\xbe\xa3\x7f\xc3\x8c\xb0\xf3\x71\xde\xdc\x75\x3f\x0e\x10\x96\xf2\x4b\x88\x1a\x8c\x15\x56\x7e\xe1\xb1\x54\x75\x19\xc2\xcf\x3b\xec\xa5\x9c\xcc\x34\xc2\x91\x80\x96\xd0\x12\x1f\xaf\xff\xc2\x1c\xb6\x4d\x4f\x6c\x24\x2c\x08\xfb\xd4\x4e\x79\x4a\x3e\x5a\x4f\xd8\x1e\xf0\x36\x20\xf4\x4a\x25\x61\x63\xf3\xb1\xdc\xf3\xb7\xbd\x08\x2a\x89\x32\xfe\xb7\x72\xf4\x09\xc5\xb1\x9d\x53\x5a\x64\xe4\x09\x8f\x93\xc2\x78\xd8\xc5\x5e\x32\x18\x39\xf5\x3d\x67\x96\x85\x0a\xe1\xc4\x99\x6e\x1b\xf7\x3f\x21\x84\xe5\xfd\xbf\x5b\x62\x74\x3c\x08\x7f\xbe\x1f\x3c\x1f\x57\x79\x80\x41\xa5\x46\xd2\x8f\x5a\xfe\xd3\x04\x1b\xb3\xfb\xd5\xce\xdc\xa6\x04\xdf\xa7\xf2\xb5\x87\xd5\x33\x09\x6c\xed\xfa\xb3\x62\x12\x8f\x12\x5a\x72\x24\x9a\xaf\x7b\x9e\x24\xe4\xbf\x69\xf4\xbe\x20\x5e\x3f\x76\x0c\x9f\x79\xf7\x5f\x29\x78\xbb\x33\x37\xa9\xc4\x97\x10\xfd\xf7\x49\xf1\xf4\xc5\xbf\x58\x18\xf2\xc9\xfa\xf9\xf1\xc8\x2a\xc2\x5b\xcb\x64\xbd\xcd\x1f\xa4\x09\xa9\x52\x8b\x9b\x86\x64\xd5\x09\xed\x76\xbc\x33\x74\xb5\xc4\x08\xd9\x86\x26\x2e\xa1\xb6\x67\x09\xdf\x7a\x1b\xa6\xf8\x4b\x5c\x27\x2c\x14\x92\x1a\x96\x0d\x1c\x21\x6c\x7b\xe9\x9f\xed\x37\x56\xa6\xb5\xa8\x2d\xdf\x50\x6d\x4c\xf8\xc3\xd7\xb3\xb6\x22\x30\x9e\xc1\x79\xd6\xea\x9d\xbb\x8e\x1f\x98\x30\xf2\x8c\x5e\xf6\xfc\x45\xd7\x7c\xc2\x75\x8b\x87\xc6\x97\xf8\x24\x09\xeb\x4d\x97\xdb\x4e\x75\xda\xf9\x5f\x98\xc5\x1b\x33\x5a\xfa\x53\x8f\xf0\xd8\xca\xad\x68\x5e\xdc\x72\xc2\x5a\x95\xde\x9e\x56\x83\x79\x04\x8e\x4b\xf1\x3e\x7d\xaf\x2a\x09\xa3\x51\x65\xc2\xd1\x3b\x6b\x08\x2e\x07\xf3\x6a\xfa\xde\xd7\x4d\x18\xd5\xdd\x3a\x9a\xe2\xa7\x25\x4e\x30\x5c\xd4\x9f\x3a\xe3\x9a\x10\xc1\x68\x60\xf2\xb7\xf2\x84\x7c\x82\xbe\xae\xf0\xdb\x0f\xc9\x19\x0c\xe6\x47\xac\x9c\x57\x31\x56\x1c\x78\xdf\x0a\xcc\xd6\x9f\x47\x70\xd9\x3e\xbf\xa7\xd1\xef\x71\x05\xd6\xb4\x45\xdc\x3a\xdd\x79\x8d\xb0\xfa\x77\xe7\xf7\xf7\xe1\x97\x18\x54\x0d\xbf\x11\x3a\x33\x56\x6c\x8a\xee\x8d\xfe\x1b\x39\x70\x6e\x0f\x7b\x1c\xf9\x87\x85\xc7\x0b\x17\x35\x58\xc7\x3a\x30\x88\xff\x9e\xaa\xd5\x17\x79\x8d\x20\x71\x65\x8d\xd7\xa2\x03\xb5\x0c\x56\x65\x46\xc9\xfe\x2b\xdd\xc1\xeb\x57\x5d\xf3\x7a\x4e\xf8\xd4\x9e\xd0\x7f\x32\x56\x98\xc0\x95\xf5\xe7\x6f\x7d\xdd\x32\x42\x9d\xea\xd7\x4c\xee\x8b\x1b\x09\x3c\x9f\x75\x9e\x3a\x2b\x54\x30\x78\x50\xce\xd5\x3e\x57\xea\x20\x0d\x9a\xe5\x9c\xcd\xa8\xbd\x4a\xc8\xbc\xf8\x5d\x59\xad\xfc\x31\x83\xd3\x5f\x82\x7e\xf2\x3d\xbf\x4a\x50\x59\xe9\xb8\x3c\xe0\x9e\x17\x21\x6a\xd6\xe7\x17\x9a\xaf\x8c\x08\x6d\xe7\x38\x3f\xe6\x7c\x95\x25\x34\xa7\x0a\x29\x4e\xcf\x16\x27\xa4\xbf\xd8\x22\xb7\xf6\x48\xe8\x04\x68\xde\x57\x09\xdf\xfa\x36\x80\xb0\xc0\x17\x2d\xb5\xb9\xf9\x0c\x56\x05\x34\xca\x3f\xd8\x99\x4e\x38\x99\x6d\x1c\xbe\xf5\x6a\x11\x21\x6d\xf3\x7e\xb3\xdf\xf7\x9d\x09\xc7\xbb\xdb\xd7\x76\x96\x5f\x23\xdc\x57\x37\x6f\xe4\xe6\xde\x42\x30\x7e\xc1\xf3\x65\x75\x9c\x33\xa1\xf4\xc7\x2b\xb5\x77\x3a\xf6\x84\x8f\x76\xf5\x7d\xeb\x0f\x2a\x11\xec\x32\xbe\x76\x8a\x28\xc4\x31\xf0\x12\x69\x2a\xa8\xf4\xd0\x23\x34\xee\xb6\xfe\x16\x6f\x6a\x49\x48\x0d\x37\xdd\xf5\x48\x3a\x9f\x81\x56\x56\xde\xe3\x84\x49\xd1\x84\x4d\x01\xef\x4d\x2a\xd3\x14\x09\x85\x2e\x12\xcb\x46\x13\x76\x12\xe4\x0f\x46\x38\x4d\xb3\xb6\x24\x08\xff\x72\x0b\x98\x25\x2a\x4b\x28\x97\xfe\xdb\xb2\xf4\x80\x20\x61\x6a\xea\xe6\xc1\x63\xaa\x1a\x84\x9c\xc7\xc7\x8f\x3c\xba\xd2\x4c\x08\x0d\x70\x5d\x32\x83\x53\x86\xa0\x1a\xb8\x89\x9d\xe3\xc6\x37\x16\x24\x39\x28\xf7\x5b\x7e\x12\x03\x2d\x96\x54\x42\x68\xf5\x7e\xc2\x2e\xfd\x0f\x0f\xe7\x70\x69\x12\xb8\x95\x1d\x3f\xbd\x79\xf1\xa6\x02\x0b\xcc\x85\xbb\x4d\x87\xcf\x13\xa6\xf2\x77\x58\xd4\x76\x85\x12\xc2\x2b\xac\x8f\x0a\x3a\x57\x4d\x80\x64\xe5\x80\xb8\xd7\xd2\x47\x84\x87\xf1\xc7\xc5\x79\x3b\x1a\x09\xaf\x7c\xed\xe1\xba\xba\x8a\xa0\xa6\xef\xf5\x7b\x64\xe7\xc4\xc5\x96\x7b\x3f\xce\xd0\x6e\x89\x23\xf0\x84\x73\x6f\x88\xd9\x19\x37\xa1\x08\x78\xee\x98\x6e\x5d\x1a\x3b\xa1\x1c\xd0\xdd\x68\x70\xba\x8b\x87\x10\x7f\xbf\xe0\xad\xde\xb6\x45\x04\xa5\xb2\xec\xbe\xfd\xc5\xe9\x84\x8e\xf6\xee\x1f\x86\xc1\xe6\x84\x95\x33\xf9\x4a\xbd\xa1\x46\xb0\x1d\x58\x3f\xaf\x6c\x81\x26\x61\xc3\xf5\x0c\xb3\xc6\x0d\xb9\x04\x9f\xdd\x0d\x2b\x3f\x4a\x4c\x22\x6c\x0d\x09\x4c\xbf\xbc\xd3\x84\x60\xf1\x89\xad\xb9\xf9\x75\x30\x21\x24\xca\xb0\xe0\x4e\x95\x3c\xe1\x2c\x63\x2a\x7e\xf0\xcb\x57\x16\xe6\xb0\xf4\x4f\xec\x69\x90\xa3\x71\xe8\xee\xb8\xdb\xda\xf1\xfa\x3e\x0b\xb8\x34\xe3\xdb\xda\xe3\xdb\x08\xd2\xd3\xbd\x24\x27\xfb\x26\x4c\x40\xc3\x23\x53\xab\xc1\x5a\x63\x42\xa9\xf3\xe6\xac\xa8\x9f\xd2\x84\x8d\xe2\x4b\x6f\xb4\x3d\x99\x45\xb8\xed\x2f\xfc\x40\xe9\xea\x1d\x42\x47\x9f\x47\x77\x98\x5e\x36\xe1\xdb\xb2\x93\x77\x47\xde\xf4\x10\xd2\x6a\x6a\xc4\x3d\xc2\x7a\x08\xbe\x0b\xf6\x9d\xf2\xfc\xd3\x40\x50\x9b\x16\x37\x2b\x9f\xbb\x8e\xf0\xd4\xd6\x2a\xef\xd3\xd6\xad\x04\xbd\x49\xfb\x64\x9f\x98\x37\x54\xe0\xf4\xe1\x40\xa5\x56\xe7\x6c\x42\xa4\xa6\x89\x44\xdb\x18\xbe\xe8\x2d\xe9\xff\xeb\xb6\x8c\xf0\xea\xf1\x72\xb9\x1c\xfd\x3d\x84\x35\x52\x8e\x6f\x1e\xec\xab\x20\xc8\x2e\xcd\xd8\x25\x13\x56\x41\xb8\xa8\x7d\x46\x47\x75\xd5\x75\x82\xe9\x8c\xa5\xd7\xd6\x65\x17\x10\x76\x9f\x53\xca\xfb\xb7\xe6\x29\xab\xfe\x4e\x78\x4f\x08\xe1\xf3\xc8\x29\x0d\xc9\x26\x77\x42\xb2\x43\xe2\xd7\x75\xb2\x9e\x13\xf0\xf9\x87\x3e\x77\xff\xe3\x70\x42\xa7\x5c\xa1\x59\x56\x7c\x18\xe1\x59\xd0\x69\x21\x4b\xfd\x5e\x16\xbe\x37\x29\xbc\x2f\xb3\xc9\x24\xcc\xe0\x3c\xf4\x71\xf3\x9d\x3b\x84\xf2\x65\x7a\x6d\xea\x63\xb0\xab\x64\xb5\xaa\xd5\x3c\x60\xc6\x8b\x9a\x4f\xeb\xfc\x17\xc9\x26\x04\xbe\x55\x2b\x7d\x4e\x7f\x3b\x4a\xd8\xda\x94\xd1\x9a\x62\x1a\xc1\xe0\x50\x67\xe1\x8f\xe7\x63\xa3\x33\xdd\x5f\xd7\x14\x64\x4d\x27\x7c\x9d\xaf\xa3\x38\x75\x9b\x29\x21\xeb\x65\xa5\xa9\xee\xd9\x35\x84\xfa\x41\x7e\xa6\xe9\xd3\x5a\x02\x4f\xd3\xcb\x20\x8d\x50\x2e\x42\x26\x5f\xcd\xa5\x2a\x8b\x5f\x2c\x64\xb9\xcf\x2e\x7b\x77\xbf\x9c\x41\xa4\xb6\xa2\x1a\xbf\xd6\x67\x16\x2a\x57\xd6\xb8\xbf\xc8\x71\x22\x9c\xe4\x48\x7b\xbf\x5b\x23\x96\x90\x75\x67\x1f\x35\x8d\x95\xd5\x82\x95\x1c\xc7\xb2\x17\x10\x10\x96\xb8\x6f\x85\x80\x34\xe1\xf1\x5d\x85\x99\x1d\xc9\x2a\x84\xd6\x0f\xea\x6a\x3e\x14\x41\x48\xcf\xf5\xd7\x67\x93\xd9\x44\x78\xff\xe9\xe6\xc2\xeb\x25\x27\x08\x69\x1e\xfa\x05\x09\xe5\x5b\x09\x12\x4b\xad\x9e\x7a\xae\x58\x4f\xf0\xd1\x18\x2a\x48\x68\xe3\x27\x0c\xb8\x1c\x3d\x33\x1c\xb4\x98\x30\xd9\xda\x7b\xb9\x6b\x5a\x01\x21\x63\x79\xef\x81\xe2\xff\x83\xe6\x37\xef\xd7\xab\xdf\x4c\x66\xa0\xf2\xf1\xed\x8e\x7f\xa5\x5f\xcb\xc7\x4e\xac\xce\x91\xd0\x2e\xa9\x1e\xfd\xf0\xcd\x7e\x42\x86\xe8\x97\xf6\x7e\xe3\x3d\x13\x50\x56\xd7\x70\x6f\xd2\xd6\xbd\x84\x33\x81\xcd\x77\xf3\xbf\x39\x10\xbe\x54\xa9\xaf\x9d\x69\x7b\x9f\x60\xec\x33\x72\xa1\xd7\xad\x88\x70\x4c\xf6\xdb\x80\xe4\x92\x5c\x42\xd2\x34\xef\xf3\xd7\xbd\x4e\x31\xe8\x7b\x78\x78\xce\xbf\x91\x9b\x86\x54\x5f\xa3\xb2\x3b\xa1\x4d\x70\x9d\xff\x25\x87\x04\x42\x81\xde\x63\x89\xb9\xcb\x1c\x08\x16\x46\x4d\x62\x61\xd1\xa1\xcc\x78\x39\xbc\xc9\x47\x45\x2c\xc7\x86\x70\xcc\x7a\xcb\xfe\xf8\x49\xae\x84\xd0\x8a\x2f\x0d\x27\x1c\xbc\x09\x07\xcc\x7d\x66\xc7\x18\x68\x12\xdc\xf6\xab\xfa\x9f\x88\x5a\x47\xd0\x3a\xe9\x78\xbc\x53\xb4\x95\x85\x8c\xf6\x9d\xb6\x30\xe8\x22\x2c\x98\x26\x66\x11\xbc\xfc\x1b\xc1\x6d\xbd\x58\xd0\x2c\x9f\x56\xc2\x97\xd1\xc2\xeb\x1e\xcb\x9f\x11\xe6\x8f\x28\x88\x0e\x8c\xad\xd9\x3e\xca\x75\x7f\x46\x64\x2d\x21\xd0\x5b\x5e\x30\xc0\xa3\x98\xe0\xb0\xb9\x22\xda\x28\xb6\x98\x10\x77\x78\x8f\x9a\xf1\x18\x1e\x78\xbf\xdc\x7f\xc7\x3e\x96\x50\x24\x37\x33\xb5\x20\xe5\x18\x41\xdb\x65\xd4\xea\x86\xd9\x65\x82\x7f\xdc\xa4\x15\x0b\x96\x4c\x25\x18\xbf\x35\x2a\x5e\xf1\x55\x86\x20\x6f\xe8\x1c\x66\xd7\xea\x34\x01\x9a\xf9\x57\xdc\x6f\xfa\xbd\x61\xc1\xe0\x4a\x57\xf4\xfb\x1f\x32\x84\x03\x1b\x1b\xd9\x0c\x0d\xfb\x58\xa8\x1b\x2c\xda\x1d\x62\x39\xc2\x42\x30\x9b\xe9\xde\xeb\x23\x5b\x09\x72\xbd\x03\x06\x43\xa3\x3a\x04\xc9\x50\xd1\xea\x3d\x47\x74\x27\xe0\xe0\xd1\x21\x3d\x97\x9d\x42\x04\x53\x45\xd7\xb6\x43\x5f\x6c\x08\xbe\x22\xc2\x22\x0b\x0f\x1e\x21\x34\x45\xce\xf5\xc5\xbe\xed\x0c\x4a\xc3\x3a\xfc\xc3\x76\x5b\x12\x94\x47\xfd\x2c\x38\x12\xe4\x08\xd9\x46\x7c\xb1\x49\x2a\xfc\x84\xb0\x80\x29\xd2\x3f\x85\xb8\x09\x0e\xf1\xab\x37\xb3\x07\x14\x4e\x28\x71\x7b\x0d\x5f\xed\xa9\xa9\x65\x41\xe4\x4e\x55\x71\xf3\xaf\x05\x84\xf5\x0a\x07\x2d\xdd\x5f\x38\x10\xd6\xf6\x07\x6c\x6a\x37\xb8\xc4\xa0\xf6\x4a\x54\xab\x63\x46\x21\x81\x3d\xe4\x58\xfb\x94\xd0\xb1\x3d\xb3\xf3\xc0\xd3\x39\xb7\x0a\x09\xe6\xb6\x67\xbd\x4e\x7b\xee\x20\x74\x3d\x48\x7c\x9f\x15\x2b\x4e\xd8\xfe\x99\xbd\xb0\x75\xf6\x42\xc2\x86\x76\x95\xcd\x0e\x6f\xb9\x08\x37\x77\x69\xb1\x46\xce\x7e\x64\xe1\xa1\xee\x46\x33\x2e\xc5\xb3\x84\x38\xa9\xb7\xa3\x5b\x33\x4c\x09\x87\xd2\x4d\x27\xcf\x2e\x31\x20\x84\x1d\x10\x58\xfc\xeb\x91\x34\x21\x6f\x75\xb4\xf0\x27\x0f\x4f\xc2\x52\x9d\x8b\xc5\xed\x07\x96\x10\x0a\x3b\x62\xa7\xee\x6c\xd1\x23\xec\xbc\x91\x78\x4f\x74\x66\x0c\x83\x9b\xf9\x57\x37\xe7\x1c\xd1\x24\x6c\x1a\x3a\xc4\x04\x89\x6d\x20\x94\xbd\xdd\x29\xa7\x6c\x71\x8c\x41\x7a\x73\x97\x4a\x9f\x76\x11\xa1\x3c\x53\x68\x87\xa3\xab\x35\x41\xef\xf3\xb6\xba\xee\xd8\x20\xc2\x40\x90\xd6\x4a\x3b\x29\x4d\x82\x67\xa3\x5d\x60\xa9\x8e\x0f\x21\xa4\xb8\x39\x7e\xe6\xba\x9f\x2c\x84\xff\x72\x5b\xe2\x38\xc3\x9b\xe0\x77\xd9\xb1\x34\xb7\xd1\x99\x90\xe0\x26\x1d\x77\xe2\x82\x3c\xa1\x31\xf3\x40\xa0\xf0\xcd\x9b\x0c\x66\xed\x75\xba\x24\x39\xc3\x88\xc0\xbe\x2c\x4a\x74\xf9\xe1\x36\x06\xdb\xcd\xdd\xe5\xaa\x3f\x88\x10\xf8\x7f\xca\xbc\x7b\xfb\x2d\x90\xb0\x59\x6f\xd5\xb2\x49\xa9\xc2\x04\xd1\xdb\x1d\x93\xae\x2f\x28\x21\xec\xee\x7d\x77\x6a\xd4\xb6\x8e\x90\x7e\x75\x77\x94\xf8\xef\x0f\x0c\x44\x1b\x78\xe7\xf9\xc5\xfc\x9c\x30\xd2\x51\xbf\x12\xf0\x70\xf6\x09\x82\x66\xb5\xee\x97\xa5\x3b\xc3\x09\x33\x63\x5d\x37\x79\xfe\xdc\x4d\x38\x31\x13\xf7\x02\x71\x99\xc0\xfe\xf7\xc5\xcc\x3d\x89\xf5\x0c\xbe\x74\x55\x7a\xcd\x8e\xd7\x23\x98\x6a\x5c\x7f\x93\x20\x64\x42\x48\x88\xab\x5d\x27\xf9\xed\x4d\x05\x34\xa5\x1b\x64\xd8\x78\x2e\x11\xba\x8f\x8b\x96\x4c\xb2\x3d\xc9\x40\x49\xc8\x6f\x96\xc9\xc3\x1b\xcc\xf8\xc8\x63\xd9\xba\xfd\x39\x1b\xd3\x08\x2b\x7a\xee\x9e\x7b\x93\x7c\x81\xd0\xb4\xe7\xa0\xd1\x92\x6b\x1e\x04\xae\xfb\xd1\x16\x6f\xab\x3d\x09\x56\x89\x6c\xae\x69\x53\x9d\x09\x92\x69\xb9\x77\x8f\x97\xa6\x12\xc2\x6a\x66\x25\xbb\x0e\xaf\x25\x5c\x95\x3a\x6a\x59\xc0\xa7\x4d\xb0\x49\xdb\xcc\x77\xfc\x9e\x1d\x61\xe3\xeb\xd1\x0f\xef\x3a\xd7\x10\x44\x44\xc5\x8c\xaf\x59\xfd\x66\x21\x33\xb2\xf2\xd0\x94\xfc\x93\x0c\xe4\xf5\xda\x55\xa4\x2d\x5b\x58\x70\x2e\xdd\x91\xd1\x59\xfc\xee\xbf\xb0\xf0\xc5\x97\x43\x86\xec\x6c\x04\x03\x5e\x7d\xf3\x32\x1f\x5d\xc2\x75\x3b\x05\x83\xcf\xd2\x82\x04\xc5\xfe\xea\x5e\x0b\x49\x43\x42\x75\x62\xdf\x22\x8b\x7d\x1c\x04\xcb\x49\x89\xc4\x88\xd4\x12\x56\xf1\x69\x5d\x4a\x29\x70\x21\x58\xaf\x7a\xb4\xc5\xde\x8f\x45\x28\xf0\x6c\x0a\x2c\x6e\x55\x21\x48\xba\x4f\xbf\x70\x7d\xc7\x64\x42\x77\x4c\xd7\x62\xef\x51\x76\x42\xfb\xe1\x35\x65\xa2\x9c\x3c\x84\x8d\x1e\xad\x61\xc1\x6b\x88\x70\x8a\x49\xab\x59\xeb\x6c\x42\x60\xad\xce\x2e\x5d\xf3\x55\x8d\x60\xd4\x52\xf4\xa3\x71\xd9\x03\x42\xf2\x81\xf8\xfc\x62\xd9\x52\xc2\xab\x2d\xa3\x0f\x17\x99\x4e\x22\x2c\x31\x08\xdf\xe0\xea\x6b\x32\x01\x67\x22\xe5\x4e\xa7\xd8\x84\x4d\x80\x9f\xb0\x17\xc5\x2f\x2d\x26\x74\xdd\xdf\xc7\x71\x41\x2f\x84\xe0\xfa\xe6\x67\x90\xd9\xb4\x74\xc2\x45\x63\x0d\x2e\xe7\xcf\x71\x84\x37\xcb\x1a\xb3\xaa\xd5\x9d\x09\x82\xc7\xc5\x1a\x16\xcd\xb3\x23\xf4\xf2\xfc\xb1\x0f\x70\x6c\x65\xe0\xb5\xd8\x44\x7b\x43\x52\x2a\x21\x6d\xda\xdc\xd5\xb2\xab\x65\x08\xd1\x2f\xf7\xaa\x97\x4e\x4f\x23\x14\xde\xdb\xe9\x5d\xbb\xfc\x27\x0b\xbf\x4a\x2a\xae\x66\x7c\x17\x27\x6c\x12\x99\x99\xe5\xe4\x2e\x42\xe0\xb0\xfc\x33\x83\xff\x92\x32\x41\xfb\xb8\xb9\x93\x25\xdb\x32\x06\xcf\x16\xd6\xdf\x12\xaa\xb7\x27\x5c\x5d\x90\x72\x52\x54\x96\x87\x50\xf5\x32\x67\xcf\xd0\x80\x38\x61\xb5\x97\xf8\xf9\xc2\x3d\x37\x09\x8b\x0e\x45\x9a\x1c\x52\xa9\x20\x7c\xbb\x3f\x69\x20\x8d\xdd\x9c\x50\xa8\xfd\xc1\xef\xcf\xd8\x13\xe5\x65\x71\xd3\x5c\x54\x64\x31\x41\xde\xa9\xfa\xf9\x05\x6d\x41\x82\x8c\x6d\xe2\xce\xdd\x5d\x0b\x08\x57\x12\xc4\x14\x56\xb9\x48\x12\xd4\xf6\x6d\x7d\xd8\x1d\x25\x45\x10\xd2\x5f\x23\xa0\xa1\x69\x48\xa8\x3d\x7f\x5e\x69\xad\xcd\x64\x82\xc7\x6b\x4f\x3c\x49\x3f\x41\xf8\x18\xf0\xb5\x6c\xae\x9f\x27\x61\xb9\x7c\x8f\x1b\xdc\xef\x11\x76\xe7\xac\x3e\xdf\xeb\x3d\xe9\x0e\xa4\x1b\x8f\x0c\x0f\x8c\x95\xe5\x53\x56\x47\x18\xfb\x7b\x12\x0a\xc5\x85\x44\xf8\xce\xdb\x12\xae\xbc\xce\x29\x10\xd1\x0c\x20\x0c\x3d\xf7\xbe\x59\xe3\x6e\x47\xf8\x1e\x29\xb4\xc0\x6b\xae\x15\x41\xd6\x62\xe3\xe9\x23\x57\xf5\x09\x59\x3b\xf4\x63\xe3\xb5\x77\x11\x56\x54\x70\xab\xd8\x24\x29\x10\xba\x6f\x7c\x5e\x55\x56\x62\x41\xf8\xe5\x43\x37\x84\x56\xfa\x11\x5e\x3c\x5c\x95\x1f\xf5\xcb\x9c\x90\x1d\xb1\xe7\xe6\xd9\x80\x45\x84\xfa\x1d\xd3\x45\xdb\xf7\xf0\x10\x64\xdf\xbb\xb3\xa7\xac\x58\x4e\x48\x77\x74\x55\x55\xde\x1d\x48\x30\xc9\xbc\x80\xf2\xd2\x96\x0a\x44\x39\x4e\xae\x64\xce\xc7\x11\x44\x39\x9e\x3e\xac\x3e\xbd\x88\xb0\xac\x4a\xd3\xd0\xe7\x02\x2f\x21\xf0\xd4\x8d\x01\x8f\xdc\x2a\x82\xb6\x44\x9b\xa4\xe7\x18\x22\x9d\xae\xa6\x26\x46\x56\x11\x5a\xcb\xe3\x7b\x4c\x95\x6e\x10\xc2\xe6\xbc\x3e\x76\xb4\xea\xc6\x84\x35\x62\xdf\x0c\xfc\x9c\xc6\x9e\x04\x97\xaf\xb3\xc4\xdc\xeb\xee\x30\xa8\xa4\x86\xee\x3d\x63\xe5\xf1\xa1\x97\xa7\x45\x0b\x83\x69\xbc\xa8\xaa\xa4\x2f\x12\x2c\x9e\x34\x01\x37\xba\xe7\x79\x2c\x8f\x3c\x41\xb8\x9c\xdb\xc8\xb2\xf3\x9c\x88\x48\x39\xdd\xa0\x35\x41\x96\x04\xcb\x0d\x4e\xd9\x1c\x02\xe7\x19\x88\x34\xf5\xbf\x90\x7e\xbf\x8c\x90\xab\xb6\x2c\xe2\xde\xd0\x16\x42\xd6\xc1\x8d\x69\x29\x03\x12\x84\x96\xa7\x5d\xbd\xb5\x9d\x3d\x2c\x28\xbf\x5e\x27\xdf\x7f\x5e\x8c\xc6\x21\xd4\x5d\x75\xb0\xf1\x5b\x31\x0b\xe6\x6b\x75\x6f\x17\xe6\x0f\xb3\x30\xf7\x48\xd9\x79\x97\xcf\x22\x34\x8e\x8c\xb4\xc8\xdd\xbd\x3c\x56\x84\xd2\xc4\x3b\x1c\x01\xc9\xfd\x2c\x4c\x7d\x1d\x73\x21\xdf\x5d\x8a\x70\x4c\xcf\xa1\x41\x23\x74\x2d\x8d\x17\x17\xb1\x04\x21\x93\x13\xa7\xc7\xee\x17\x61\x4f\x4a\x8e\x9e\x26\x24\x5d\x5f\xde\xe5\x61\x78\x86\xb0\x6f\xf5\x7a\x79\xbf\x85\x6d\x84\xfa\x77\x73\xad\xfe\x8d\xde\x72\x7d\xfc\xd9\x53\x13\x4f\x48\xb9\x6b\x98\xc5\x71\x2f\x75\x42\xd9\x53\x3b\x7a\xb8\xfa\x71\x3c\x61\x7e\x51\x98\xba\x7d\xff\x37\x16\xb4\x5c\x63\x32\xea\x83\xdc\x09\x7f\x5f\x95\xf6\xed\xdb\xee\x4a\xc8\xb9\x2d\x9c\xe8\xc2\xa6\x4f\x50\xbf\xc5\x67\xa0\x29\xb1\x91\x70\x64\xce\x1f\x8b\xc6\x40\x7e\x42\xb4\x6a\xe0\x6f\x91\x76\x39\xc2\xce\x2d\xe5\xf2\xf7\x67\x28\x4d\x80\x5c\x5c\xed\x34\xdf\x8f\xf9\x2c\x24\x1c\x37\x5c\x14\x17\xf1\x94\x20\xe1\x6a\xb6\x64\x43\x4c\x1f\xe1\x99\x8d\xc7\x86\xfa\x13\x77\x08\xd6\xcf\xb3\xb6\xad\x9d\xb2\x80\xd0\x35\xcf\x30\x58\xe8\x90\x0b\xc1\xd7\xa6\x51\xa4\xba\x29\x92\x70\x35\x5a\xea\x93\xd9\xd5\x37\x84\xbf\x87\x3e\xfe\xd1\xcb\x7b\x43\x30\x7f\xb7\xa4\x65\xea\xb6\x37\x04\xbb\xfc\xbf\x6d\xdb\xc7\x46\xb9\x1a\xbb\xa8\xeb\xc7\x1d\xc2\xf3\x84\xe6\x7a\xd5\xe3\x47\x08\x2f\x92\x15\x9d\xf5\x75\x72\x08\xa5\xc1\x17\x54\x34\x47\x4e\x13\xe6\xcd\xa9\xda\x3c\x57\xf2\x2e\x03\x2b\xdd\xef\x59\x2b\xbf\x6a\x10\x6e\x44\x44\x6b\x08\x4d\xba\xc7\xa0\x39\x94\x67\xfa\xe7\x8b\x63\xa7\x8b\xfb\xec\xa5\xb3\xf3\xb4\x08\xc9\xec\xd5\x6e\x07\xb4\xac\x18\x3c\x0f\x37\xb9\xab\xd0\x6e\x47\xd8\x1b\xa9\xbe\x9f\x8f\x3f\x98\x30\xab\x5c\xe8\xc3\x31\xd5\x5d\x84\xde\x9c\x81\xb4\x2a\xee\x6b\x04\x2e\x9d\x15\x75\x25\xf7\x73\x18\xf0\xb5\x0a\x69\x68\x4e\xca\x20\x04\x77\xaa\xe9\x2f\x56\x7a\xc6\x82\xea\x11\xfd\xe3\x59\xf3\x15\x09\x96\x49\xd9\xbb\xea\xb8\x27\xa2\x3f\x4c\xa4\xe0\xe6\xad\x9b\x0c\x6c\x58\xd3\xf9\x5e\xdd\x6a\x66\xe1\xcf\xa9\x1e\xde\x79\xdf\xa3\x08\xb7\x0c\xac\xa9\x5f\x37\x92\x30\x9a\xce\xee\xba\xf7\x5a\x32\x61\x99\x5e\x97\xc0\x2e\xed\x9d\x84\x2e\x69\xd6\xc7\xe3\x16\xed\x04\x91\x69\x5f\xb7\xc4\x8c\x41\xf4\xe2\x82\x1a\xdd\xd6\x0e\x82\xa4\x72\xb6\xea\xbf\xd1\x5a\x45\xeb\x57\x3e\xe2\x95\x04\xd5\xa6\x03\x79\x6b\x3d\x4e\x11\x76\xdd\xeb\xa8\xed\xf9\xbe\x96\xc0\x95\x59\x9e\x50\x7e\xf7\x02\x21\xbe\x72\xcb\x31\xa9\x3f\xc6\x04\x8e\xf9\x52\x9c\x8d\xd3\x15\x26\x20\xfe\xa5\xcd\xaa\x69\x66\x7c\x84\x80\xfd\xd1\x15\x53\x0b\x36\x10\x4c\x1e\x9c\x9d\xfa\x29\xdb\x81\xd0\xa7\xfb\x29\x59\x40\x71\x98\x35\x8e\x17\x3f\x76\x56\xbd\x56\x9b\x49\x90\xff\xee\x6d\xf6\x7b\xff\xb3\x8a\xf1\xe2\xe5\x92\x16\x50\xaa\xf6\xad\x02\xbc\x82\x49\x2b\x14\x18\x15\x82\xf7\xc1\xd7\x0a\x86\x7f\xaa\x08\x4e\x0f\x17\xbd\x78\x46\xeb\x08\x2e\xf3\x23\x6f\xb9\x70\x8a\x13\x96\xd6\xf2\x74\x5a\x66\x9a\x10\x70\x6b\xf5\x88\xc2\xb6\x23\x04\x7e\xe5\xf2\x04\xee\x4e\x2b\x42\x04\xe7\xb1\x11\xe5\x10\x5f\x82\x44\xba\xe1\x02\x43\x99\x08\x06\x2e\xba\x37\xe5\x7e\x31\x87\x08\xae\x25\xdb\x52\xa2\x3e\x5e\x63\x20\xc9\x13\xdb\xf2\x63\xac\x4c\x3f\xa2\x31\xbf\x57\xc8\x86\x30\xcf\xd8\xb3\x60\x9b\xb0\x35\x61\xde\xd5\x18\xeb\xa0\xbe\xa5\x04\x3d\xc9\x6a\xc7\x12\xcd\x29\x04\x25\x96\xd0\x09\xaf\x16\x1d\xc2\x26\xc7\x3f\xc7\x3c\xfc\xb6\x10\x4e\x9d\x7c\xe1\x2e\xa5\x96\x4e\x28\xf8\x59\xff\xe5\xbb\x96\x22\xe1\xa6\x33\x7b\xfa\xe9\x67\x7b\x08\xba\xbf\xfa\x6f\xee\xf5\xcf\x64\x20\x92\xf2\xd5\x7d\xe6\x90\x06\x61\x4e\x7d\xda\xca\x0f\xd1\xeb\x08\x01\xa3\xee\x8a\xe2\x89\xe2\x04\xd9\x33\xc1\x21\x9c\xa7\x76\x10\xf8\xbb\x3c\x05\xbf\x9d\xdd\x4a\x60\x73\x6f\xf8\x12\xa9\xc1\x4f\x50\xbf\xdc\x70\xa1\xf1\x7b\x1f\x0b\xfc\x7c\xf7\x2f\xeb\xe7\x09\x11\xec\x8b\x5f\x1e\xb7\xbf\x39\x89\xb0\x42\x7d\xc6\xc2\xa1\xef\x8b\x08\xde\xdf\xd9\x9b\x1d\xd2\x36\x12\x24\x2f\x72\xcb\x16\xbd\x8e\x24\x74\xac\x7e\xc1\xa3\xb9\x6e\x16\xe1\x58\xdb\xeb\x45\x77\x5d\x76\x11\x6a\x0f\xaa\x8b\xda\x7b\x2c\x26\x3c\xd6\xdb\xbe\xde\x6f\xbd\x1d\x21\x5a\xf2\xda\xa4\xd8\x47\x22\x84\xc2\xc4\x1d\xed\xa5\x67\x4d\x09\x97\xef\x38\x85\x26\xca\xda\x10\x72\x03\x16\xe7\x8e\x7a\x5e\x26\x7c\x95\xc8\xfe\xc2\x32\x36\x25\xb4\x65\xb2\xf5\xf6\x39\x6a\x13\xb6\x59\xcc\xdb\xfb\xf2\xc4\x26\x42\x8d\x8e\x9d\xda\x52\xdb\x2c\xc2\xfa\xf4\x58\xce\x5f\x4b\xf6\x13\xea\xa6\xbe\x69\x0a\xef\x0f\x20\xbc\xd9\xbd\xe6\xca\xb6\x01\x1d\xc2\x49\x1e\x87\x23\x55\xad\x05\x04\xeb\x3d\x53\xe4\xdf\x9d\xf7\x20\xfc\x50\xd6\x9a\xfa\x8d\x5d\x8c\xd0\x28\x58\x2a\x99\xbc\x7b\x13\xe1\x93\xc9\xa6\x49\xaf\xaa\xd6\x8f\xfd\x67\xe4\xab\xe1\xe7\x15\x20\x04\x2e\x56\xcd\x73\x3b\x6d\x4b\x60\x78\xb6\x9d\x3b\xe5\x62\x43\x38\x95\x11\x11\x3d\xba\xa8\x80\x20\xe9\x1c\x66\x77\x3a\x20\x82\x60\x51\x9e\xd4\x72\xb8\xcc\x94\x60\xd1\xf6\x83\x3f\xf6\x68\x3a\x03\x8d\xcc\xf9\x09\x29\x4e\x0b\x09\xd2\x32\x5e\x7f\xa6\xcb\x05\x10\x3e\x46\x9a\x5a\x79\x38\x85\xfd\x17\xc2\xc3\xd7\xaf\x1b\x1c\x91\x23\x38\x28\x73\x71\xce\x88\x56\x9d\x50\x38\x1b\x12\xf9\xed\x44\x7e\xb0\xc6\x61\xc4\x4c\x3d\xfd\xed\x95\x10\xe1\xad\xc6\x82\xd7\x8b\x67\x16\xd0\x78\xd9\xc6\x33\x4d\xb0\xe7\x45\x5b\x05\x6c\xfa\x63\x8f\xdb\x2b\xbb\x12\xb6\xee\x7d\x52\xd3\xfe\x60\x07\xc1\xd1\xe7\xca\x81\x62\x85\xb1\xd3\xc5\x8a\xa8\x07\x01\x6e\x5a\x04\xe7\xb5\xb6\x12\x2b\x02\x8d\x08\xb6\xcc\x06\xe1\xfa\xf3\x7c\x04\xff\x99\xc2\x02\xc3\x8d\x69\x0c\x76\xdc\x12\x99\x6b\x15\x5a\x43\x70\x93\x89\xdf\xd8\x7c\x59\x8d\xa0\x19\x9c\xf6\x49\x48\xe3\x35\x6b\x1c\x3c\x1d\x52\xa5\xd3\x9e\x2a\xd2\x38\x1e\x48\xe9\xb4\xf8\x46\x9d\x20\x64\x95\x1c\x2f\x65\x79\x94\x13\x9c\x03\x1e\x1a\xfe\x2b\x6d\xd1\x06\x79\x19\x4d\xbe\x13\x10\x53\x56\x27\x9a\x97\x2d\x40\x58\xbb\x2a\x91\x7d\xf9\xae\x0f\xac\x71\x98\x28\xae\x46\xed\x06\x1b\x02\xbb\xf9\xfb\x98\xfb\x15\xf1\x84\x5f\x23\x82\x4d\xcc\xb0\xf9\x04\x14\xc9\x15\xfa\x07\x2b\x9b\x10\x7c\x23\x1f\xcb\x37\x8c\x48\x10\x6e\x24\xdd\xef\x97\x1e\x7b\x32\xd5\x1d\xeb\x1c\x17\xbf\x63\x11\x16\xac\x7b\x2c\x53\xea\x35\x8f\x00\xbd\xf2\x58\xb5\x65\x6b\x26\xa2\xeb\xc7\xcc\x9c\x9d\x5d\xac\x71\x9c\x6c\x91\xbe\xb8\xa5\xf5\xd7\x04\xc4\x88\x34\x0b\xf8\x9d\xf9\xcb\x42\xeb\xa8\xb4\x5a\xd9\xac\x63\x84\xd2\x8c\x4b\xa7\x23\xde\x4b\x13\x84\x97\x3f\xb6\xcd\x2a\x50\x25\x6c\x9d\x37\x9c\x39\x49\x47\x93\xf0\x36\xc2\xf1\x7a\x63\x5c\x2d\xe1\x8d\xf5\xe8\x8d\x7d\x35\xc9\x84\xd7\x29\xa9\xb3\x8f\x3e\x3f\x4f\x50\x2d\x14\xd3\xcd\x3e\xfa\x91\xd0\xd3\x68\x33\xed\xe6\xac\x3c\x82\x1d\xc7\xf0\xc8\x8a\xf8\xeb\x84\xde\x82\xb2\xb5\x0c\x57\x07\x0b\x3f\x2f\xbe\x7b\xd5\xd8\x96\xcd\xa0\xed\x9c\x79\xeb\x4b\x45\xd1\xff\x8f\x31\x3f\x0f\xc6\xba\xff\xff\xff\xff\x90\xd2\x4a\x59\x2a\x25\x52\x42\x94\x7d\xe7\xb8\xdb\xb7\x92\x6c\x59\xb2\x67\x4f\x21\x4a\x4a\x91\xad\x4d\x25\x85\x36\x64\x69\x41\x76\x4a\x8a\xc3\x56\x12\xa7\x36\xa9\x24\x12\xda\x28\x4b\xca\x8d\x94\xdf\x38\xe7\x37\xaf\x7c\x66\xce\x79\xcf\xf7\xbf\xcb\x5c\xef\xc7\x3f\xc7\x73\x78\xde\x1f\x0f\x08\x0e\x3f\x7a\xef\x44\x4a\xf1\x10\x9e\xd9\x6d\x68\x10\x39\x34\xca\x80\xc2\x6b\xbe\x40\xff\xed\x95\x84\x6c\x7d\xee\x79\x7f\x7c\xa5\x08\x8c\x2b\x1f\xdf\x8b\x88\x6f\x27\x98\x7d\x1d\xbf\xfe\x7d\xae\x3b\x41\xe4\xce\xd2\xcb\x6f\xbe\x4a\x11\xae\x9a\x98\xad\xec\x7f\xad\x49\xf0\x1c\xf9\x1d\xb4\xdb\xc1\x82\xd0\x52\xb6\x68\x8f\xa5\xa6\x2b\x61\xfb\x8c\x3a\xd7\xab\x16\x86\x84\xaf\x12\x5c\x9d\xeb\x4c\x16\x11\xa2\x67\x5a\x72\xf3\x36\xb8\x12\x0a\x2e\x1f\x5a\x71\x4b\x7c\x2d\x41\x79\xdd\xb2\x00\xb5\xd4\xdd\x04\xbd\x26\x8d\xd6\xe5\x21\x3b\x08\x87\xfc\x8e\x66\xf2\x37\xca\x13\x86\xdf\xd9\xa9\x7f\x2c\xe1\x21\x38\xbc\x71\x3e\x90\x6b\x32\x97\xf0\x39\xc3\xb6\x97\x2d\x84\x87\x20\xe0\x7a\x39\xff\xa9\xe2\xce\x69\x58\xd4\xdf\xa4\x5c\x5d\xe8\x48\x70\x5d\xe7\x6d\xb1\x66\x8e\x07\x61\x85\xb7\x4b\xb4\x5d\x22\x1b\xe1\x9a\xb8\xd8\x3e\x01\xb5\x25\xd3\x70\x56\x87\xf7\xe3\x11\xf5\x0d\x84\xef\xee\xe9\xbd\x5a\x1f\x0d\x09\x35\xcd\x19\x9a\xf6\xc2\x61\x84\xb5\x2e\xe1\x8f\x2c\xe5\x5c\x09\x8a\x7f\xd4\x99\xec\xa9\xd1\x04\x99\x39\xc5\xea\x07\x04\x02\xa7\x1e\x82\x73\xcf\xb6\xd9\xfe\x84\xdf\x8a\xef\xba\x44\xb6\xa5\x13\x34\x9f\x7c\x7b\xa7\xa6\x52\xcd\xfc\x3b\xfa\x1f\xdc\x65\x5e\x6b\x64\x79\x39\x10\x44\xf7\xdb\x85\xa5\x47\x3b\x10\xee\x26\x9b\x84\x6b\x79\xf1\x10\x18\x3d\x5e\x5f\x7e\xea\xf7\x32\x90\xcd\xfe\xa6\x60\x15\x5b\x3c\x13\xc9\x5d\xa3\x4d\xe7\x8b\xd3\x09\x73\x76\xee\x2f\xe5\xbe\x6b\x48\xe8\xe6\x3d\x96\x35\xff\xa5\xdf\xb4\xf2\xfd\xa7\xa9\xab\xec\xac\x30\x82\x35\x2b\xdb\xe4\x37\x8d\xc3\x4c\xec\xa9\xd6\xef\xb1\xb9\x16\x36\x6d\xb4\xb0\xae\x26\xd5\xc8\x46\x93\x60\x19\x95\x5a\xad\x39\x19\xc9\xc4\x65\x76\xfe\x31\x53\xab\xfd\x84\x28\xa1\x63\x27\x76\x84\x04\x13\x16\x3f\x56\x1f\xe0\xb1\xd8\x42\xe8\x09\xa6\xe5\x1f\x2d\xb7\x12\x0e\x67\xdd\xcd\x29\x68\xda\x4d\x58\x60\x5d\x33\xf6\x93\xe9\x46\x78\xea\xa4\x3a\x7b\xe6\x8b\x7a\xe6\xdf\x62\xc2\xf1\x5d\x69\x5d\xac\x0e\xe1\xd9\xde\xaf\x8c\x3d\x7f\x02\x08\xdf\x3d\x9e\x6a\xc8\xec\xbd\x4e\xa8\xab\xfe\x73\xef\x72\x78\x15\x61\x9f\x12\x47\xab\x9c\xbe\x25\x81\x65\x9c\x33\xe4\xde\x3f\xea\x84\x8f\x55\xba\x7c\xa1\x35\x7d\x0c\x7c\xe9\xe2\x6b\x8d\x57\x9d\x4f\x78\xd2\xa9\xfb\x26\x50\x6a\x26\xc1\x33\xf6\x53\xd9\x8c\x99\x85\x4c\x2c\x3e\xa2\xf7\x60\xf7\x54\xf9\x6c\xb4\xf1\xc4\xb6\x86\xf5\x84\xd8\xc7\x19\xc5\xc3\x32\xdf\x18\xd0\x0b\xfb\xec\x9b\x97\x25\x41\x90\xec\xb7\x62\x1a\x7a\xb3\x10\xf6\xb6\x29\xbc\xf8\x5a\x23\x4b\xf8\xc2\x21\x6f\x64\x62\x68\x4b\xf8\x19\xff\x4a\xc0\xd0\x7b\x3b\x41\xf2\xda\xb6\x63\xeb\x0c\x64\x09\x51\xc6\x06\xea\x61\x67\x16\x12\x04\x9f\xb7\x08\x77\x1e\xfe\xce\x80\xcd\x1a\x7f\x85\x4f\x49\xb2\xf4\x17\xf9\x0e\x07\xc7\x57\x17\x7c\x60\xfc\x85\xd3\x48\xa2\xe8\x27\xcd\x75\x84\xb5\xda\xce\xa3\x97\xcd\xf7\xd0\xdf\xf2\x92\x76\x5e\xb7\xf2\xea\x65\xe0\x45\x5c\x45\xc4\xd5\x33\x06\x84\x06\xae\x07\x79\x32\x1d\xfb\x08\x55\xbd\x25\x4a\x75\xbb\xeb\x08\x56\x3b\x64\xe7\x70\x1c\x7b\x48\xe0\xac\x7d\xa7\x56\x33\x55\x0c\xde\x8a\x85\xba\x8e\xde\x25\x54\xed\x5b\x1b\x5a\x6b\x5f\x43\x68\x7d\xa2\x93\xb0\x34\xbf\x90\xa0\x63\x90\xec\xae\xf4\xf0\x3e\x13\xca\x0f\xe2\xc5\x9b\xe6\x5a\x11\x76\xb4\xb1\x8a\x5f\x8c\x5b\x45\x38\xbd\x48\x5b\xd2\x21\x34\x89\x09\xb5\x1c\x0f\xf7\x1a\xed\xdf\x0c\xdc\xeb\x9d\xf9\x5c\xb8\x07\xd3\xb0\xbd\x6e\x53\xfa\x97\xca\xf7\x0c\x84\x99\x7c\xbc\x74\x6b\xb1\x04\xe1\x47\xb2\x1f\xef\x48\xd9\x3a\xc2\xb7\xfe\xc8\xab\x9b\x37\x72\x11\x22\xea\x46\x84\xfe\x0c\x6f\x25\x18\xb3\x4a\x70\x6f\x8f\x32\x24\x88\xce\xff\x7d\xd3\xc2\x5e\x93\x30\xcc\x9a\xd0\x7f\x3f\x61\x94\x81\x1f\x3a\x5c\xf9\x1b\x8a\x9c\x09\x62\xba\xf3\xe3\x7e\x2d\x6d\xae\xc4\x87\x3c\xd5\x99\x9f\x06\x8f\xd1\x5f\x08\x6e\x7c\xc6\xa1\x7d\x62\x15\xa1\xcf\x5b\x27\x60\x35\xa7\x3f\x41\x54\xe1\x78\xf6\x53\xd6\x00\x42\xf8\xb2\xa7\x19\x42\xce\x21\x04\xd9\x9a\xb0\x86\x53\xad\xa7\x09\x2f\x23\x58\xac\x7d\x16\x78\x11\x76\x56\xdc\x6b\x59\xbb\x3e\x83\x10\x16\x92\xd4\x51\xfa\x43\x9d\x30\xc8\x19\xf2\xab\xaa\xc8\x85\xc0\xf6\x8d\xc9\x3c\x2d\x2f\x4d\xf0\xb1\xb8\x14\xdd\x79\x40\x9a\xf0\x9c\xd7\x39\x5c\xca\x9c\x8d\xb0\xd2\x61\x40\x73\x5e\xc5\xea\x69\xc8\x3f\xac\xf7\xcd\x7c\x6e\x54\x25\xde\x1b\x6c\xbd\x90\x21\xb4\x9e\x20\x52\xa3\x7b\x9f\x65\x25\x27\xe1\x78\x2d\xd7\xda\xb4\x5f\x3c\x84\xac\xa7\xde\xac\x23\xaf\x0d\xa6\x41\x31\x98\x43\xf3\x37\xbf\x30\x21\x8d\xf5\x81\xf6\xaf\x2d\x6e\x04\xcf\x90\x77\xbd\xc7\xd6\x94\x11\xe6\x05\x5d\x98\xe4\xce\x3b\x48\x58\x55\x46\x39\x59\x93\xbe\x84\xb2\xaa\x7c\xcd\xd1\xd9\xae\x84\x93\x03\xbc\x4b\xb2\x7f\x2e\x23\xf4\xed\x5d\x73\x78\xe0\xa0\x12\x21\x3d\xc0\x22\xef\x94\x9c\x3d\xe1\x6c\xfc\xfb\xfc\xbd\x51\x6a\x84\x47\x2e\xd5\x4f\x42\xe5\x55\x09\xc3\x9f\xda\x0b\xb4\x12\x34\xa7\x95\xdf\xdf\x3b\xd8\x7e\xdf\x64\x21\x44\xce\xbb\x24\xb1\xee\x29\x17\x41\x9f\x9f\x39\x2f\x25\xfc\xcc\x34\x74\x49\xcd\x6f\xd8\xc1\xbe\x85\x10\xca\x73\xce\xf7\x9f\xd4\x77\x0c\xf8\x9f\xfa\xa7\x92\x2f\xc0\x8d\x30\x73\x67\xa9\xfa\x78\xec\x73\x82\xc6\xf3\xde\x5b\x31\x36\xf5\x4c\xe4\xe9\x1c\x62\x95\x12\xb2\x22\x3c\x6a\x14\xe3\xd0\xf9\xf6\x99\x81\xa6\xfb\xeb\xb3\x53\xce\xcb\x11\x8e\xaf\xf6\xd9\xbe\x75\xc2\x87\x90\x5c\xb5\xeb\xb6\xc2\x5c\xc5\x69\xb0\x69\x60\x88\x30\xca\x37\x12\x74\xd2\x2e\x44\xd4\x6f\x9b\x3d\x0d\x49\xae\xbb\xde\x44\x99\x15\x10\x76\xc5\xdc\xb1\xae\x78\xb3\x88\x50\x60\x22\xf5\x6e\xd6\x7d\xe7\x69\xd0\x9e\x5b\xef\xba\x4b\x79\x36\xc1\x47\xca\x52\x76\xee\xc9\x00\x82\xd2\xda\xca\xcb\x99\xf3\x0c\x09\xa9\xc6\x1e\xd2\xdf\x36\x89\x12\xee\xcd\x7c\x66\x10\xda\x12\x4a\x18\x7c\xff\x78\x60\xa3\x8f\x39\x21\x5d\xe2\xb9\xac\xdd\xbe\x1a\x06\x64\x9e\x0a\xf3\x9e\xbe\x73\x8d\x00\x21\xc1\x86\xac\x0e\xa1\x69\x70\x70\xbe\xae\xff\xe1\xe7\x93\x4a\xf4\xcf\xad\x10\x5d\x60\x9b\x40\x28\x0f\xda\xec\xa9\xd1\x78\x8c\xa0\x25\x74\x34\xa6\xd7\xef\x1a\xe1\xb1\x48\x53\xef\x97\xcc\x0a\x82\x9b\xeb\xd6\x6f\xb7\xf2\x6a\x09\x8f\x65\x9e\x2f\xf7\xea\x6a\x25\x6c\xde\xe7\x5b\xbe\xa6\x62\x17\x81\xcb\x74\x79\x74\xc4\x4c\x57\xc2\x9c\xa4\xbc\x89\x84\xa5\x21\x04\x56\x8d\x45\x47\x97\x0d\xee\x24\x2c\xf6\x17\x35\xfd\x35\xc2\x4a\x68\xb9\xe6\xe8\xeb\xef\x7d\x80\xa0\x78\xda\x34\x48\x45\xfc\x12\x41\x26\x4b\xcd\x6c\x84\x9b\x9f\xe0\x75\x25\xed\xe8\x36\xb6\x33\x84\x62\x8d\x86\x7b\xbb\x4f\x39\xd2\xd8\xc0\x0c\xa7\xfa\x2e\x1d\x82\xfb\x36\xe5\x88\x57\xba\x92\x84\xf3\x33\xa5\xe2\xd2\x5a\x86\x18\x38\xaf\x71\x3a\xf7\xe1\xc9\x4c\x82\x5d\xeb\xaa\x98\xf0\x39\xdb\xa6\x61\x9b\xf2\xab\x51\xbb\x23\x8b\x08\x07\xf2\xaa\xfb\x7f\x85\xa9\x11\x5c\x2a\xe5\xde\xa6\x18\xeb\x11\xf2\xaf\xf7\x0a\x72\xcf\x5b\x4d\xf8\x0e\xad\xda\xcf\xf6\xe2\x04\xfe\xbb\x41\xca\x0c\xee\x34\xc2\xfe\x6b\x99\x61\x05\x89\xcd\x84\x4d\xc5\x27\x78\xcc\xd4\x1d\xa7\x6e\xed\x56\xf2\x77\xd7\xfb\x10\x54\x56\x59\xdf\xd8\xc0\xc8\x27\x38\x0b\x1b\xdb\xfd\x79\x58\xc0\x84\xc3\x8c\xc2\x92\x66\xb3\x73\x04\xd7\xb5\xda\xc5\xce\xf7\xd6\x10\x9a\xd9\xff\x14\x1a\x17\x9a\x4c\x83\xa5\x2c\x53\xdb\x7c\xeb\xdd\x4a\xa4\x70\x2c\x5d\x10\xa9\x1d\x45\x38\xfa\x5e\x3b\xe0\xc5\x2e\x4f\x42\xac\x42\xc8\x63\xa6\xa3\x01\x41\xbf\xdd\xea\x68\xed\x4d\x7f\x82\xad\x66\xa9\xe4\xc1\x77\xee\x84\xae\xf5\xd6\x0b\x17\xcb\x5f\x24\x9c\x32\x58\xbe\x80\xb7\xec\x07\x03\xc5\x7e\x39\xd1\x02\x2c\x56\xd3\x0a\xe7\x86\x26\x0d\xf3\xcc\x7a\x06\x2c\xb3\x16\xe8\xcf\xd8\x11\x41\x38\xbc\x68\x79\xd5\xa9\x1a\x39\x02\x5b\x42\xf9\x46\xb9\x8b\x6e\x84\xf9\x9e\x5d\xbf\x3f\xdc\xd7\x20\xec\xb4\x51\xb5\xdd\x7f\xb1\x85\xc0\x33\xf9\xc0\x7f\xbe\x62\xcd\xd4\xe9\x9b\x57\x43\xef\xe2\x15\x26\x9e\x7a\x57\xdd\x1a\x8f\xe9\x61\x22\x6b\xc5\x8a\x7f\xfe\x1d\xbd\x5c\x7f\xd6\xa4\xeb\x45\x18\xc1\xed\x80\xe4\xe8\x47\x8d\x7c\x82\x54\x8f\xc9\x3a\xfd\xc1\xa9\xcd\xf6\x62\xfd\x87\x9c\xaa\x60\x42\x9a\x62\x8d\xcf\x9b\x2f\xfe\x84\xe0\x3b\x2f\xbf\xee\x98\xaf\x47\x78\xfa\xcf\xb3\xb2\x80\x5b\x9a\x84\x91\x25\xd2\xc5\xba\x2f\xa7\x8e\xab\x76\x2b\x3e\x2f\x48\xd2\x24\x1c\xfc\x5d\xf8\x75\x7c\x45\x16\x61\x71\x9c\x01\xeb\xbf\xa5\x7d\x59\xfd\x5a\x01\xd6\x01\x06\xa2\x56\xb7\xdb\x64\xa8\xa4\x13\xf4\x66\x1c\x19\xde\x7e\x6f\x3f\x21\x29\xfb\xf5\x87\x3e\x65\x22\x70\x3a\x86\xce\x2b\x31\xb8\xc8\x84\x8f\x50\xa8\xe2\xc1\x1a\x4b\x82\x7f\xc7\x31\x55\x2f\x1e\xef\x69\x88\x8c\x6e\xc8\x0c\x5d\xa0\x48\x98\x9d\x5c\xc2\x3d\xef\xc4\x6e\x42\xd6\x5b\xc7\x5f\x36\xe3\x6f\x08\xa1\xc2\xdf\x24\x7f\xa8\x24\x10\xce\x48\xed\x4e\x19\x93\x1b\x26\x2c\x3e\x39\x74\xfe\x75\x03\x8b\x26\x3a\x3a\x46\xa2\x47\x4a\x59\x34\x31\xee\x33\x3e\xac\x16\x54\xc3\x44\x7e\xc6\xf6\x86\xdb\x06\x9f\x09\x79\xff\x34\xe7\xb7\x44\x3d\x20\x04\xdc\xf3\x51\x91\x3c\x75\x8b\x09\x7f\x8f\x67\x32\xc7\x6c\xf8\x09\x2e\xb5\xef\x42\x2f\x28\x4f\x32\xf0\xba\x33\x31\x7c\x65\x12\x0f\xfd\x45\x7c\xd6\x8a\x15\xcd\x15\x4c\x06\xa4\x4f\xe9\x5f\xf8\xd4\xac\x41\x38\xc7\x1e\x19\xa3\xbd\x75\x2f\xe1\xbb\xbe\x43\xc1\x6c\x9d\x12\xc2\xd5\x8a\x35\x7c\xe2\xd6\x20\x5c\x36\x55\x5a\xcd\xcb\xf2\x8b\x70\x3a\x97\x5d\xc3\x2e\xea\x06\x13\x05\x5a\x37\xce\xf8\x6d\xbe\xce\xc4\x93\x25\x03\xcf\x78\x6f\x26\x10\x3e\x6b\x9e\xe0\x89\x63\x09\x27\x74\xbb\x4a\x07\xbc\x4a\x3c\x4f\xa8\x3f\xa1\x73\xac\xef\xdc\x6d\x1a\x13\xdc\xdb\xba\x57\xf4\x26\xe1\xf4\x0c\xd3\xea\x90\x96\xa3\x84\xa6\x27\x39\x5d\xa5\xd1\x85\xd3\x8a\x87\xb5\xc7\xef\xc3\xc5\xb1\x34\xb6\x2d\xd1\xcc\x3c\xde\x86\xf0\x2c\xe6\x79\x88\xcd\x2d\x3e\xc2\xc1\x3e\x5b\x9f\xfd\x86\xd9\x04\x19\x33\x9e\x07\x8a\x5c\x39\x84\x1f\xfe\xc5\x5b\x72\x8b\x2f\x10\x12\x6a\x38\xe6\x6c\x2a\x32\x22\x3c\xea\x1d\xb8\x51\xd2\xcc\x4d\xf8\x79\x4d\x5a\xda\x70\x53\x24\xc1\xc3\xe0\xc8\xdc\xdb\x8d\x12\x04\xd9\x0b\x11\x2c\x2c\xfc\x0e\x84\xd7\x22\xe6\x83\x97\xeb\xeb\x99\xc8\x2e\x74\x6d\x59\xbc\xa6\x9b\x09\xf3\x3d\x23\xfd\xcf\x56\x99\x10\x9e\xff\x38\xae\x90\xc3\x1a\x47\xd8\xf4\xc5\xac\xcf\x9e\x63\x1e\x41\xfa\x49\x8c\x83\x75\xee\x1d\xc2\x8e\xe3\x39\x11\x36\xb7\x35\x08\x11\xb5\xd7\x76\x9a\xea\x97\x11\xd2\x7e\x85\x5b\xfe\x5b\x3a\x7f\x24\x65\x33\xa7\x4e\x14\xc2\x42\x5f\x47\x74\x1b\xe6\x13\x92\x05\x83\xe6\xe8\xe9\x8a\x4c\xc3\xa4\xab\xda\x65\xcb\xce\xe2\x4a\xfc\x4c\xe4\x3a\xfa\x78\xbf\x29\x61\x2b\xbf\xe1\xde\x15\x87\x0f\x13\xea\xab\x92\x8b\xa2\x26\x0b\x98\x60\x39\x13\x1e\xa7\x70\xa3\x8a\xf0\xd6\xc4\x77\x47\x8c\xdd\x73\x42\x71\xad\xcf\x5d\xef\xe6\x49\x06\xb4\xe6\xa7\x6e\x68\xe9\xb7\x27\xac\xba\x3a\x9f\x71\x67\xea\x57\xf1\x7f\xe5\x7f\xf8\xa2\x3e\x94\x7d\x72\x70\x19\xa1\x2d\x84\x5b\x5f\x82\x25\x9b\xc0\x7b\x48\xfd\x85\xbd\xa5\x3b\xe1\xa9\xc3\x9d\xf0\x83\xc6\x77\x09\xcb\x96\x7e\xe3\x8c\x97\xaa\x22\xf8\xb6\xce\x58\x71\xf2\x80\x21\xc1\x73\xe7\xec\x9b\x9f\x78\x84\x08\x3f\xce\xe6\x3e\xae\x52\xba\x4f\xb0\x64\xda\x77\x9d\xe4\xf0\x26\xe8\x9a\xbc\x5d\x96\xc3\x69\x46\xb0\x8a\x2f\x7e\xb1\xb4\x2a\x84\x60\xa9\x2e\xb1\x22\x3c\xef\x00\xe1\xee\xa1\xdb\x06\xa6\xb7\x52\x08\x9f\xe6\x08\x9d\xf9\x34\xf7\x2d\x03\x7d\x3b\x1c\x9e\xd8\x28\xea\x13\x0a\x9c\x4a\x1b\x7f\x15\xb0\x4c\xc3\xca\x96\x8d\x3d\x92\xa5\x0d\x0c\x88\xf3\xfd\xe8\xf6\x1a\x50\x22\xb0\xca\xae\xb6\xaa\xdc\x77\x70\x1a\xe4\xb4\xa2\x3e\xf2\x32\xe4\x09\xf2\xd5\x63\x12\x55\x02\x62\x04\xff\x2d\x45\x74\x7f\xa2\x90\x70\xb6\xb1\xb5\xb3\xc3\xd1\x97\x10\x42\x9b\x85\xbe\x68\x95\x31\x11\x54\xdb\xa3\x52\x37\x6a\x41\x10\x1b\x6d\xfa\x9c\x33\xb1\x9c\xb0\x4e\x3c\xfa\xe7\x1f\x7e\x2e\xc2\x8f\x9c\x76\x61\x2b\x91\x19\x04\xb9\xd3\xfd\x0f\x2f\xfd\xb3\x8a\x70\xe2\xb9\x6b\x41\xce\x7e\x7b\xc2\xf9\xab\xab\x3e\xd8\xf0\x58\x10\xa2\x87\x57\xb1\x2a\xef\x12\x25\xcc\x79\xd3\xa3\x12\xf0\xcb\x89\xc0\x31\xd2\xbc\xeb\x61\xca\x6d\xc2\xde\xcc\x7a\x39\xf5\xf3\xdb\x08\xf7\xad\x0c\xc3\x75\xcb\x75\x09\x03\xeb\x7c\x5d\xb7\x2e\x59\x4b\x18\x92\x1e\x5d\xbe\x86\x6b\x27\x41\xcc\xb1\xb0\xda\xc2\xdf\x80\xa0\xd1\xd1\x94\xd6\x30\xc9\x4d\xe0\xda\xd0\x94\x5d\x6a\x70\x8b\x09\xcb\x30\x3d\x81\x00\xe7\x28\x42\xfa\xdb\x1d\x65\xae\x4d\x3a\x04\x81\x54\xb6\xfa\xe0\x61\x5d\x82\x6c\x38\x9f\x58\x69\xaf\x3a\x61\xd6\x4d\x39\x3e\xce\x6c\x26\xe1\x98\x8b\xea\xc2\x08\x39\x61\x42\x92\xde\xd8\x4d\x6e\xe5\x5a\x82\xed\xc7\x2b\xfb\x95\x5e\x19\x4c\xc3\x89\xab\x35\x92\x4a\xb9\xa3\x0c\xd8\x1e\x9f\x1f\xff\x6a\xdf\x47\x06\x4c\x4f\xae\xaa\xbc\x57\x2e\x48\x58\x11\x92\x25\x61\xa6\xcc\x46\xa8\xf1\x3a\x7e\xfe\xf0\xd1\x14\x26\xf4\x24\x77\x78\x2b\x7e\x50\x20\x44\x49\x1d\x1e\x7e\xb5\xc4\x99\x90\x26\x3f\xe0\xd6\x5d\xe8\xc1\x44\xc9\x7d\x39\xba\xb5\xb8\x98\x09\x2f\xaf\x3f\xd7\x93\xdf\x0b\x4f\x1d\x56\x93\x6e\xdf\xac\x5f\x44\xd8\x9c\xa2\x5b\xb8\xf5\x83\x12\xe1\x19\x8b\xf8\x9a\x04\x3f\x09\x82\x03\x5b\xea\xfe\xd1\xa9\x87\x79\xdb\xb9\x80\xd7\xac\x68\x19\x21\xa2\x63\xf1\xd5\x0f\x3c\x63\x0c\x0c\x96\xcd\xae\xbf\xe7\x24\x4f\xf0\xdd\x20\x7e\x7b\x87\x42\x24\x61\xf0\x35\x47\xb3\xbc\x8c\x2c\x61\x6c\x49\xc2\xa1\x35\xa9\x0a\x84\x11\xae\x68\xae\xab\x32\xac\x84\xa5\x5a\xed\x17\x14\x0f\x39\x13\x2c\x6c\x04\xb5\xed\xf9\x36\x11\x54\x2d\x5e\x8f\x3c\xaf\x64\x21\xbc\x4f\x98\x5d\x1b\x94\xb8\x80\xf0\x34\x5a\x47\xae\x2d\xf1\x36\xe1\x5a\xbb\x75\x7a\xd1\xc8\x2d\xc2\xdb\xbb\xbb\x36\xbd\x9e\x2a\xa1\x56\xb3\xbb\x24\x95\xbf\x30\xfe\x82\x3f\xbb\x4d\x36\x94\x85\x8d\xe0\x3d\x63\xc1\x95\x1f\x87\x34\x08\xbc\x46\x25\x3a\xa6\xcf\xe6\x10\xb6\x89\x04\x0d\xc7\xc7\x45\x12\xf2\xd6\x7e\x3f\x34\xa8\xee\x4a\xa0\x05\x15\x27\x1a\xb5\xb7\x10\x6e\x27\xd8\x2c\x26\x0e\x19\xc2\x87\x25\x02\xa1\x2c\x07\x88\xd0\xfe\x28\xb9\x32\x64\x52\x83\xb0\x49\x2e\x09\x5d\x9b\xf8\x08\x07\xae\x2d\xae\xec\xb5\xe2\x20\x88\x57\xf9\xae\x7b\xf2\x76\x0e\x41\x67\xfd\xe6\xa5\x3a\xd0\x20\xbc\xbc\xf3\x6c\x70\x2f\x44\xa7\x21\x73\x7b\x30\x23\xd8\xa4\x8b\x01\xa9\x4f\x6e\x5c\x9e\x1b\x8a\x08\xec\xfb\xcb\xb7\xd7\xc6\x27\xfe\x17\x0e\x7b\x35\x8b\x8c\xa7\x16\x4c\x2b\xd6\x12\x62\xf7\xc7\x1f\x09\xfe\x17\xd8\xf4\x62\xf9\xea\x3e\xcd\x22\x5c\x0d\x76\xe8\x88\x9c\x5f\xc7\x80\x75\xf5\x9a\xdb\xab\xc2\xcc\xe8\x2f\x0e\x9c\x09\x28\x09\x22\x3d\x42\xeb\x9f\xc8\x7f\xee\xfe\x89\x67\xe2\x72\xfa\xfa\x9b\x73\x58\xb5\x08\xc3\xe6\x11\x32\xab\x3f\xba\x10\x2c\x33\x06\x8e\x1a\x6c\x5e\x4e\x08\x70\x34\xfb\x13\x99\x6e\x4c\x50\xce\x6c\xe5\x74\xe0\x34\x26\x04\x46\xf8\x0f\x5e\x17\xf4\x23\x34\x35\x78\x9f\x5e\x38\xb6\x92\x50\xb8\x89\x3d\xec\x8e\xc8\x42\x42\x81\xc1\xb7\x4d\xd7\xd4\x2e\x12\xb4\x33\x76\xec\x4b\xe9\x28\x65\x42\xfb\xe8\xe5\xed\x3e\x47\x4e\x12\xea\x1b\x1c\x55\x02\x0e\xfa\x10\x92\xce\xb1\x6a\x04\xd6\x86\x30\xd1\x33\xda\x76\x65\x86\xaa\x09\x21\xb4\xd3\xb3\xbd\xbd\x6a\xea\xdd\x2b\xed\x68\x61\x73\x43\x89\x50\xd4\xf2\x74\x87\xde\x9b\x49\x06\xec\xed\x7a\xfc\xc7\xea\xb4\x09\x8c\x82\x6e\xad\x74\xc5\x93\x84\xcf\xbc\x0a\x67\xef\xf3\xc5\x12\xde\x2f\xd1\xb7\x53\x9a\xba\xcd\x49\x58\xaa\x78\x8a\x7f\x1a\x62\x60\x47\x73\xea\xd0\x64\x41\x24\x13\x37\x54\x7f\x3f\x4c\x1c\x60\xa1\xbf\xb8\xcc\x3a\xd3\xe3\xad\xd4\x77\x06\xce\xa5\xc9\x75\xec\x4c\x4b\x20\xbc\x99\x77\xfa\x54\xcf\xac\xd3\x84\xb3\xe3\x0c\xdb\x93\x5d\x4b\x09\x0d\xca\x11\x7b\x04\xd9\xaf\x13\x4c\x99\x9e\xf9\xc7\xde\x7b\x13\x26\x1c\xa2\x67\x9c\x4f\x4d\x25\xcc\x9a\x57\xda\xb2\x7c\xdb\x74\x8c\xb7\x1c\xbb\xbb\x62\x0a\x23\x13\xb9\x2e\xba\xa5\x29\x04\x53\x89\xc0\xd9\xa6\x6e\xb7\x99\x10\xdf\x15\x29\xf7\x6f\xf1\x3d\xb8\x69\xc9\xe1\xd7\x29\x84\x38\x8f\xd9\x6f\xd7\x3f\x08\x21\x84\x95\xb7\x76\xbf\x7d\xb2\x89\xf0\xb0\xec\xc5\x99\x36\xbd\x59\x84\x15\x37\x25\x33\x5e\x5c\x13\x26\x34\xf6\x38\xb3\x8f\x54\x3f\x65\xe2\x95\xe7\xcc\xb6\xea\x94\x64\x26\xbe\xfb\x47\x7c\x69\x99\x1a\x2d\xbe\xd9\x56\xfd\x8b\xb3\x8e\x01\x76\x41\x43\x96\x54\xdf\x8d\x84\xc3\xb7\x72\xc6\xdc\xb3\xd4\x09\x45\x4e\x8f\x7f\x2f\x2b\x12\x25\x3c\xf7\xb9\xf7\x45\x29\xfa\x07\x03\xe3\xc1\x5d\xc9\xb2\x29\x33\x08\x8e\x89\x6f\xda\x7d\x06\x5f\x33\xfe\x42\xe3\x30\xcf\xcc\xd6\xa1\x1b\x84\x47\xab\x9b\x0f\xdf\xa8\x18\x62\x40\xfa\xea\x23\xd1\xb8\x5b\xde\x04\x6e\xb1\x67\x0a\x1b\x14\x2f\x31\x31\x24\x6a\x35\xf8\x33\x7f\x3b\x61\x6e\xe1\x8a\xd6\x83\xfb\x57\x11\x74\x77\x55\x69\x09\xb8\x9d\x20\xb4\xec\xdf\xe7\x5d\xfb\x29\x89\x50\xa0\xdb\x6f\x36\xcc\x53\x40\x30\x3e\xf9\x23\x3c\xfa\x91\x30\x61\xb7\x95\xec\x11\xdf\x63\xec\x04\xc5\x99\xea\x27\x93\x8e\x6a\x10\x4e\x04\x1a\x7d\x88\x0c\x97\x22\xa8\xc5\xef\x7a\xba\x2b\xd0\x91\xd0\xd6\xbf\x68\x81\xf0\x2e\x4d\x42\x40\xfc\x0b\x79\x53\x9e\x6b\x4c\xf8\xb5\x15\x3d\x4c\x4d\x70\x20\x68\x74\x9e\xf1\xbc\x12\x6f\x48\xb0\x39\xbe\xa8\x3f\x77\x4e\x11\xa1\xca\xf6\xa6\xdb\xef\x8c\x39\x04\xff\x99\x97\xec\x39\x83\x0c\x08\xdb\x0e\x70\xbf\xeb\xcd\x95\x25\x04\xfe\x1c\x60\xca\x31\x86\x19\x58\xa7\x72\x8d\x5f\xe6\xa4\x26\xc1\xd5\xee\xad\xc0\x07\x95\x2e\x06\x06\x97\xab\x0e\xc5\xcc\xd0\x20\x8c\x9c\xe5\xff\xd3\xa2\x69\x41\xb0\xcc\xd1\x18\x67\xb5\xdf\x4c\x58\x63\xa3\xe2\x34\xb0\x51\x8b\xd0\xfb\x3a\x21\xd4\xb2\x51\x9c\xb0\x2c\x25\x96\xd3\xae\x7a\x03\x61\x9c\xfb\xbd\xe5\x49\x89\x59\x84\xb2\xd1\x19\xdf\x05\xd6\x9b\x13\x8a\x9e\x2c\xfa\xfe\x6c\xc8\x92\x90\xfc\x5d\xe4\xb1\x48\x36\x11\xf8\x0e\x0a\x79\x06\xfe\x14\x23\xa4\x78\xf5\x5f\xe3\x99\x69\x4a\x88\x77\x5b\x61\xf3\xd3\x52\x9b\x60\x7c\x6f\xb0\x51\x50\xd7\x85\x80\x44\xe5\x8d\x9f\x5b\xec\x08\xad\xd9\xa1\x8d\x6f\xfb\xcc\x98\xe8\x12\x9b\x31\x8b\x91\xce\x20\x3c\xe0\x85\x63\x71\x9e\x24\xc1\x74\xad\xbc\xce\xd6\x73\x86\x04\xa7\x55\x61\x63\x13\xfb\xaf\x32\xe1\x39\xe1\x91\xf0\xe4\x7e\x22\x41\x4f\xa7\x35\xa3\xcb\xca\x9b\x50\xe5\x7a\xfc\xd8\xc5\x20\x3b\x82\xd7\x71\xd7\xeb\xfe\x41\xde\x04\x3d\x33\xc5\x49\xb9\x1c\x79\x82\xd3\xb3\xef\x2e\x7b\x2a\xac\x09\x8b\x5d\x79\x21\x33\xa9\x47\x58\x20\x38\x10\x17\xb1\x5c\x80\x70\x78\xd9\xad\x91\x83\xec\x59\x4c\xa0\xe1\xf9\x2c\x23\xf6\x25\x04\xb3\xa4\x4c\x39\x21\x43\x5b\x82\xca\x1a\xf6\x5f\x0d\x33\x6a\x98\x48\xe6\x88\x50\xf7\x4a\x96\x22\x1c\x0b\xcf\xcd\x91\x1e\xf0\x22\x74\x1a\x06\xbb\xb8\x72\x5a\x12\xbc\xf3\x7d\x78\x66\xc8\x39\x10\xb8\x87\x4c\xc3\x92\xfa\x47\x18\x78\x59\x71\xec\xc1\x3a\xa9\xdb\x04\xb1\x53\x85\xfa\x02\xea\x5a\x84\xfb\x29\x66\xb2\x43\x57\xad\x09\x1a\x92\xb2\x51\x42\x5d\x1b\x08\xfc\x37\x03\x2f\x66\xdf\x4c\x26\x68\x76\xb1\x3f\x2e\x71\xbd\x4c\xc8\x95\x88\x5d\x53\xa7\x73\x88\x50\xe4\xc9\x3e\x7e\xff\xd8\x41\xc2\xd2\x8c\xca\xa8\xe0\xe5\xe6\x84\x7d\x76\x92\xda\xcf\xe3\x59\x09\x79\xa1\xf9\xaf\x46\xc2\x8e\x13\xbe\x65\x3c\x39\xfe\xf0\xee\x3c\x42\x70\x90\xe8\x20\xb7\xe1\x55\x82\x9d\xd9\xc9\x4f\x15\xeb\x2d\x09\xb9\xc2\xa7\x46\x43\x34\x35\x09\xcf\x07\x4d\x7e\xc7\x1e\x5b\x46\xf0\x5e\x7d\xae\xec\x77\xe7\x62\x42\x2d\xff\xfa\xb7\x52\x77\x86\x19\x70\xe9\x3a\x7f\xa9\xac\xd3\x9a\xd0\x15\x7b\xc4\xa1\xb9\x5f\x89\xe0\x6f\x15\x74\x24\x35\x55\x9e\x30\x17\x27\x2f\x97\x6e\xdb\x4a\xb0\x55\x5d\x16\xdc\xff\x43\x8f\xa0\x3e\x71\xfb\xb0\x67\xa2\x1a\x41\xa8\x29\xff\xc9\x16\x69\x15\x82\xc6\xc3\xc2\x97\x6f\x66\xbf\x62\x8e\xe9\xe8\x2f\x59\x23\x5d\x4a\xb0\xaa\xd2\xf0\x10\xbb\x69\x44\xc0\xde\x37\x43\x21\xb9\x37\x98\x7f\xcb\x1c\xdf\x39\x81\x1f\x4f\x3c\xa8\x84\xe9\x28\x8f\x8e\xa8\xef\x24\x03\x35\xe1\x63\xd5\xad\x02\x32\xf4\x17\x9f\x8c\x5f\x3d\xdf\xf3\x5d\x94\x30\x32\xfb\x94\xc7\xcb\x20\x31\xc2\x82\xb9\x13\xad\x3b\xde\x6f\x23\x98\x5d\x94\x5a\x71\xf3\xe8\x4e\x82\xce\xcc\x47\x42\xb7\xaf\x5e\x9f\x36\xba\xb4\x94\xf3\x7d\x15\x9b\x0b\xc1\x68\xc5\xad\x9f\x67\x57\x87\x10\x6c\x73\x5c\x23\x8f\x9d\xf1\x98\x36\x5a\x3c\xbc\xa9\xf6\xc7\x15\x19\x42\xfb\xdb\x39\xe5\x8b\xcf\xad\x23\x34\xc6\x47\x9d\xd6\x56\x77\xfe\x2f\x88\xce\x19\x67\x6c\xec\x58\x4e\xe0\x7d\x61\xfa\x89\xe5\xbc\x22\x61\xcd\xce\xd5\xdc\x3c\x32\xca\x04\xb6\xec\xc2\x70\x59\x61\x76\x42\xb1\xb0\x65\xe1\xa7\xf3\x5a\x84\x08\x6a\x19\xf3\x1c\x34\x23\x88\xf1\x25\x9d\x79\xb1\x43\x82\xb0\x87\xc1\x93\x71\x26\x47\x8f\xb0\xb4\x76\xdc\xb5\xb7\x4c\x9d\x70\xc4\x2e\xac\x3f\xe3\x87\x34\x61\xcc\xff\xbe\x90\xab\xe4\x20\x03\xab\xd3\xfb\x45\x9f\xf8\x7d\x62\x20\xef\xf3\x2e\x07\x16\xdd\x1a\x06\x4c\x66\xae\x5f\x73\xf2\x63\x00\xe1\xf4\x36\x1b\x62\x34\xf5\x30\xd0\x35\xf0\x98\x2e\x40\x97\x30\x32\x9c\xf3\xfa\x76\x9a\x3f\xa1\xbe\xbe\xf7\xc6\xdd\x38\x75\xc2\x9c\x97\x0d\x6a\x97\x38\x35\x08\xf7\x67\xa7\x1e\xdc\xb7\xb5\x96\x10\xe4\x11\xf3\xae\xa3\x3a\x93\x90\x63\x3a\x4b\xb5\xbb\x2d\x8b\xd0\xe5\x70\x42\xce\x40\x66\x17\x81\x47\x67\x43\x91\xf5\xd4\x2d\xec\x42\x82\xbc\x6b\xfc\x73\x5f\x42\x7c\xc2\x60\xfe\xc6\x5c\xd7\xff\x42\xf1\x9f\x6b\x8a\x33\x1e\x9e\x65\xe0\x56\x88\x33\xe7\x62\x6f\x69\x82\x42\x4e\xae\x83\x2b\xcb\x5a\xc2\x9a\x9c\x85\x29\x7c\x4a\xfe\x04\xbe\x59\x26\x9b\x7f\xee\x75\x24\x1c\xad\x7c\xd1\x1e\xb7\x9f\x97\xf0\x83\x5f\x22\x89\x27\xfd\x2e\x01\xde\x71\x2b\x5d\x9a\xf5\x09\xf3\x3e\xca\x6f\x6c\xdd\xbf\x80\x70\xf0\xfc\xfe\xac\xeb\x5e\x6b\x08\x73\x14\xf8\xf9\x3a\xda\x14\x08\xa7\xcf\x7e\x17\x97\x30\xcd\x24\xa8\xb8\x66\x32\xcc\x77\xbb\x11\xee\x6e\xc9\xaf\xf4\x9c\x70\x27\x24\xc8\x0c\xbf\x92\x7a\x6d\x49\x58\x99\xb1\x2a\xfe\xa0\xd3\x0a\x82\xfc\xdc\xeb\xed\xa6\x1e\x31\xd3\xb0\x60\x6b\xc5\xa9\xb3\x63\x62\x84\x9e\x1a\xd3\xc0\xd1\xec\x64\x82\xed\xc6\x52\x8e\x63\x8e\x9b\x08\xc3\x1c\xe9\xb9\x77\xab\xdc\x09\x7e\xfc\x07\xcf\x5b\x9e\xf3\x23\x28\x32\x0a\xa2\xe8\xcb\x42\x82\xf1\xb6\x0e\xe5\x88\x9e\x6b\x04\x93\x5b\xba\xdb\x56\xc5\xd7\x11\x1e\xd7\x5d\x3c\xf1\x43\x3d\x82\x10\x9e\xf6\xcb\x34\x43\x3d\x91\x89\x83\x7b\x42\xb8\x0b\x8e\xee\x21\xcc\x3c\xe0\xbb\xd0\x39\xfc\x28\xc1\x3c\x37\x6b\x6e\x96\xe3\x13\x82\xf9\xa8\x41\x83\x56\x6f\x32\xc1\xcd\xb3\x63\x7c\xdc\x4d\x81\xf0\xfc\x4b\x6c\x6f\xc8\x9b\x55\x84\x16\xb5\x3e\xc1\x07\xd2\xf3\x08\xa7\xd6\x89\xb6\x66\xf3\x9f\x63\x42\x70\xaf\xe0\x60\xd1\xfc\x7b\x4c\x64\x5d\x5a\x90\x62\xd7\xf8\x82\x10\x17\x20\xb4\x40\xf1\xde\x27\x26\xae\x86\xb4\x5f\x52\xb0\xb9\x47\x50\xb8\x56\x89\xf3\x81\x15\x4c\xb8\x50\xa8\xc1\xc7\xb4\x22\x26\xd6\x35\x74\x06\x3c\x8e\xce\x24\x70\x69\xf0\x1e\x0e\xec\x90\x26\x6c\xee\x4a\xfc\xf3\x38\xf6\x38\x41\x47\x3e\x28\x67\x6d\x90\x2e\x21\x62\xec\xc0\xf3\x95\x72\x4a\x04\x16\xcf\xb1\x2f\x96\x76\xa3\x0c\xbc\xd8\xb1\x61\xc9\xa6\x42\x69\x82\xb3\xd6\x86\x67\x6f\xb7\xb8\xd3\x98\x61\xa6\x62\xbb\x40\x10\x61\xd1\xa6\x0f\x6e\x66\xe7\xe6\x13\x62\x7a\xb6\x9e\xe7\x0e\xfd\xc1\xc0\x9a\x60\x43\xf6\x82\x07\x6e\x84\xc2\xab\x25\xe2\x83\x8a\xeb\x09\x19\x2b\x02\xc3\x4c\xd9\x2e\x32\xf1\xcc\xec\x5d\x30\x57\xbe\x05\x21\xb9\x6e\xe3\x64\x6c\xb9\x18\xe1\xd1\xad\xd4\x4c\xde\x88\x12\xc2\xa1\xf0\x07\xdd\xab\x0b\x2a\x99\x68\x0a\xcb\xb6\x0a\xfa\xe4\x4d\xa8\x33\x6c\x97\x59\x67\xb6\x8d\xb0\x34\x71\x77\x9a\x46\xcc\x39\x02\x0d\x2e\xb0\x40\x81\x2c\xc1\x7f\xc3\xf0\xfc\xd6\x8b\x9f\x18\xa8\x3b\x6a\x7d\xf8\xb2\xa9\x30\x81\x35\x59\xc2\xd5\xf5\xca\x07\x26\xfa\x5e\x5c\x33\x15\xe8\x95\x25\xb0\x6c\x1b\xcf\xbe\x71\xd7\x9e\x90\xf2\x63\x0d\xb7\x50\xac\x25\x81\xfb\xd1\x2b\x77\x8f\x95\x6a\x84\x9c\x13\x65\x45\x65\xa5\x8f\x18\x50\xe6\x12\xd3\xbb\xd6\xb1\x96\xfe\x22\x29\x28\x26\xa2\x90\x2d\xaa\x12\x8d\xa3\xf9\x32\x37\x4e\xf3\x11\x44\x66\xf1\xab\x99\xbf\x7f\xc1\x40\xe9\xd5\x75\xc2\xf5\x6e\xd6\x84\x84\xeb\x2d\x2b\x39\xce\x68\x12\x66\xcf\x89\xf5\x92\x51\x55\x22\x9c\xce\x3f\x13\xd3\xb5\xfe\x21\x13\x6f\xe5\xfa\x97\x09\x7b\x58\x11\x6e\xd8\xcf\xef\x90\x9e\x1a\xa5\xca\x28\xa4\xdb\xde\xfd\xce\xc0\xb7\xdb\x5c\x09\x2b\xe6\xbf\x65\xe0\xc1\xb7\x12\xc3\x55\xc5\x1b\x09\x06\x9e\x93\xed\x9b\xcc\xfe\xfd\xcb\xa3\x8c\x85\xb2\xae\xdf\xd4\x37\xad\x13\xca\x97\xd7\x26\x28\x8e\xc5\x35\xe1\xbe\x21\x61\x89\x89\xe8\xc9\x1f\x97\x16\x11\x54\x43\x8d\x56\xef\x4c\x59\x47\xf0\x3d\x6e\x2e\xa0\xb4\x6a\x3d\xe1\x11\xe7\x9e\xb8\xbb\xe7\xaf\x31\x21\xef\x1c\x28\xfc\xb3\xe7\x17\x03\x4f\x22\x3a\x7d\xb2\x93\x03\x08\x8f\xfc\x75\xdf\x3f\xb9\x2d\x42\x30\x3d\xf3\xc1\xea\x4a\x65\x14\xe1\xad\xb2\xf0\xf5\x91\x9d\x59\x04\x33\xfd\xce\xa7\x11\xa7\xb3\x08\x69\x59\x4d\xfe\xb1\x4b\x3c\x09\x67\x96\x4a\x6b\xdd\x69\xfd\xc1\x40\xe6\xac\x0e\xa5\xdd\xb1\xe7\xe8\x2f\x3a\xf7\xae\x79\xb8\xcc\x2b\x83\xf9\xb7\x48\x4c\x9c\xcf\x62\x89\xb7\x22\xfc\xbe\x32\xa1\xf3\x6b\xe5\x05\xe6\xdf\x52\xbf\xa0\x44\x9e\x04\x9d\xa7\x7d\x86\x4c\xca\x9c\x06\xdd\x39\xa6\x8e\xe3\xbd\xce\xb9\xe3\xbc\x84\xef\x3b\xec\x3f\xf8\xab\x68\xfc\x17\xb6\x9d\xe4\xb8\xfd\x7b\xa7\xdd\x7f\x21\x4b\xdb\xc2\xc5\x9a\x93\x87\xb0\x96\xad\xa5\xa2\x6a\x4b\x09\x41\xb9\x7a\x47\x56\xde\xc4\x62\xc2\x89\x43\x2f\x76\x7b\x26\xb5\x30\xf0\xc9\xcd\xc5\x7e\x46\x41\x01\x61\x1e\xfb\xde\xa3\x2c\x53\x78\xee\x20\x79\x73\xcd\xe8\x15\xc2\x51\x89\xfb\x6b\xca\x94\x8f\x4c\x43\x9f\xee\x8c\x2f\x5c\xc2\x57\x98\x58\xba\xf1\xb3\xc1\xa8\xd9\x16\x82\xf0\xfe\xd2\x00\x6f\x89\x73\x04\xfd\xeb\x17\x6a\xde\x77\x5f\x22\xd4\xaa\x64\xbd\x57\x2e\x74\x23\x08\x30\xff\xd9\xfc\x4b\xd8\x9d\x70\xb3\xfc\xf2\x49\xef\x11\x23\x42\xf7\xf3\xa1\x5d\xc7\xed\xf8\x09\x01\x06\x9b\x3d\xbb\x15\x2f\x4e\xc3\x86\xb9\xef\x65\x59\xeb\xb8\x08\xac\xe3\xaf\xf9\x83\x97\x5e\x26\xf4\x84\x76\xc4\x2e\x3b\xa1\x42\xb8\xd9\xa1\xdd\x75\x5c\x7e\x0b\x81\x2e\x7e\xae\x3e\x6c\xe9\x45\x68\x5e\xfc\xf3\x98\xb2\x96\x02\xe1\x57\xae\xa5\x67\xb9\xa4\x3c\xa1\xe3\xcf\xd7\x5b\x5a\x62\x9a\x84\xdb\x52\x13\x62\xed\xeb\xf7\x10\x3a\x57\xde\x6d\xab\x72\x0f\x22\xcc\x15\xf9\xd2\xf3\x73\xd7\x76\xc2\x03\x5a\xf6\x75\xbb\xe9\x0e\xc2\xb2\x01\x21\x75\x8b\x2e\x6b\x02\xaf\xb3\xc8\xa7\xc1\xa3\x6c\x84\x0f\x2c\x8b\x84\x27\x04\xa2\x98\xf0\xd8\xea\xef\xe6\xe7\xcf\x4a\x70\x56\x90\xaa\x75\x5f\xab\x46\x28\x55\x1d\x58\xb2\x67\x65\x57\x25\x76\x29\x04\x2d\x54\x75\x48\xa7\xbf\xf8\x1a\x12\xa1\x6d\xff\x94\x97\xc0\xe4\x1f\xda\xb2\xba\x5f\x9c\xb0\x74\xc1\x13\xcb\x70\x79\x0f\xc2\xe7\xb5\x4f\x8f\x24\x08\xc9\x10\x02\xb2\xc5\xe6\x85\x44\x9e\x24\xdc\x61\x53\x6f\x98\x75\x89\x9d\xb0\x20\xf1\x7b\xae\x1f\x73\x27\x41\xbf\x28\xac\x59\xd9\xc8\x81\xb0\x2c\xa6\x67\xf3\xe8\x5c\x0f\x82\xfe\x51\x6f\x8f\x7b\x5e\xe1\x84\xac\xca\x44\x6d\x8d\x48\x39\x42\xca\x2c\xe3\xf8\x73\x0b\x13\x08\xc9\x7b\xbe\x46\x8d\x7c\x8c\x23\x2c\x1b\x8a\xe1\x56\x5a\xe4\x46\x18\xfa\x96\x9c\x24\xf4\x38\x89\xf0\x46\xb9\xa1\xd3\x67\xa0\x9e\xb0\xf9\xd8\x9b\x33\xec\xed\x26\x84\xee\x1d\xb3\x37\x3b\x24\xfd\x60\xe0\x4a\x71\x86\x63\xaa\xc9\x1e\xc2\x8f\xe2\x34\xdd\x27\xd2\x5e\x84\xb3\xce\xd5\x25\x67\x15\x6c\x08\x69\xbc\x76\xea\x8b\x6f\xa9\x13\xbe\x28\x2b\x1b\x4d\xba\xba\x12\x78\x27\xcb\x9b\x57\xbe\xe0\x26\xb8\xd6\xcb\xef\x08\xef\x99\x45\xb8\x99\x2f\xed\xaa\x98\x5f\x40\x70\x3a\x1d\xd9\xe0\x30\x85\x73\x33\x6c\x2f\xfd\x8b\x27\xf3\xeb\xc6\xec\xff\x1f\x5c\xdb\xa2\x79\x86\xb5\xcc\x96\x10\xa3\x50\xa4\xe8\x56\x67\x37\x0d\x7b\xc3\x45\x0f\xe8\x71\xdb\x13\x56\xf6\xbe\xad\xf9\x5c\x72\x83\x70\x6c\xe1\x9f\xeb\x73\x7a\x63\x09\x2d\x5a\xe5\x63\x1c\x37\xbd\x08\x81\x77\xa3\xbe\xda\xdc\x6a\x67\xa0\x66\xf9\x8f\x05\xcd\x3d\x73\xe9\x2f\x56\xe6\x1f\x3a\x23\x24\x32\xcc\xf8\x0b\x8f\x1c\x6d\xd6\x62\x03\x29\xfa\x0b\xa5\x9b\xa6\x2b\x1c\x8a\xc7\x19\x38\xb0\xdf\xe4\xf9\xac\x4a\x13\x82\x99\x9a\xcc\x9e\x4f\xcc\x2a\x02\xbb\xec\x81\xa7\x35\x8f\xd2\x09\x4e\x7e\x55\x36\x95\x6d\x91\x84\xe1\x43\x96\x3b\xde\x8e\x24\x11\x06\x6e\x26\x1b\xcc\x2d\xd8\x4d\x88\xb9\xea\x92\x33\x6f\x6a\x35\xd9\xa5\x86\x38\xe8\xeb\xbb\x10\xb6\xa6\xb7\x2e\x3b\x99\x32\xc4\xc0\x89\x55\xce\xe6\x12\x63\xae\x84\xf5\x71\x4f\x46\x24\x55\x2c\x09\x96\x41\x1f\xb7\xa8\x1a\x68\x13\xcc\x02\x76\x08\x48\xf0\x0f\x30\xe0\x21\xec\xf3\xc3\xc0\x86\x08\x63\x9c\x6a\x97\xf3\x33\x67\x4e\x43\xeb\x66\x63\x81\x0e\xb5\x1b\x95\x88\x71\x77\xb8\x52\xd5\xb2\x9b\xb0\xd0\xf2\x9c\x70\xd6\x2b\x7f\x42\xbb\x43\xa3\x9e\x12\x47\x10\xa1\xbd\x48\x99\x52\x8f\x09\x11\xb8\x65\xfe\x9c\x3e\xda\x66\x4c\xe8\x1a\x52\x3c\xab\xd8\xa0\x41\x08\xba\xc7\xdf\x36\xb1\xf1\x1d\x03\xdf\x8c\x52\x72\x8f\x1f\xf7\x22\x48\x47\x2c\x8b\x96\xda\xe0\x4f\x30\x7a\xfe\xf3\xb2\x45\xcb\x1a\xc2\xeb\xc6\xba\x93\xbf\xce\xaa\x13\x62\x36\xdc\x93\x50\x6a\xaa\x60\xa2\xe7\xf8\xed\xb2\x9d\xc6\xd5\x84\x93\x7d\x27\x1c\x7b\xb3\x67\x10\xf2\x4c\xdf\x89\xdf\x30\xb2\x9e\x86\x26\x96\x9d\x85\x3b\x13\x06\x19\x38\xde\xa8\xd7\x35\x7a\xe3\x1b\x03\x3a\x4f\x92\x9f\x5b\x88\x6b\xd2\x7f\xe0\x57\xec\x7e\x5d\xbf\xc0\x9f\x0c\xe4\xe8\x06\x2b\x73\x88\x1f\x26\x74\xaf\x4d\xdc\xb7\x20\x37\x82\x30\xcf\x4a\x27\xf9\x7d\x86\x20\xa1\x51\x52\xfa\x72\xc1\x24\x2b\xe1\x1f\xd1\x6b\x4f\xe3\xef\xfb\x4c\x43\xbf\x7c\x48\x5e\x1e\xab\x15\x61\xdd\xa3\x6f\x8d\x5a\x3d\x2f\x2a\x91\x2a\x26\x7a\x36\xf9\x90\x18\x81\x25\xd5\xb1\xc7\xa9\x31\x73\x1a\x76\x2d\x65\xdb\x56\x18\xaf\x4b\x78\xf9\x26\xaf\xcb\xb1\x88\x08\xc5\xdd\xca\x95\x2f\x4c\x38\x09\xf2\xbe\xa6\xb1\xe3\x7c\xd6\x04\x1e\x3b\xb3\xc8\x4c\x0e\x09\x82\xa3\x9f\x75\x90\xe3\x4d\x5d\x82\x6e\x4c\x5d\xd2\xcc\xe7\xd7\x99\xd8\x76\xff\x45\x94\x81\xf5\x5d\x82\x91\xea\xf5\x00\xfb\x3d\xf5\x4c\xdc\xdf\xf0\x4d\x01\x45\xcf\x08\xb2\xa7\x7e\x1f\x7e\x6a\x7f\x97\xa0\xa1\x61\x27\x87\xe8\x22\x26\x6e\xde\x68\xc8\x9d\xef\xb4\x96\xa0\x72\xd9\xaa\xdd\xda\x36\x9b\x89\x2b\x76\x3c\x82\x46\x5c\xda\x84\x17\xda\xce\x6e\x42\xab\x2a\x08\x5b\x2f\xe8\x34\xf0\xce\xbb\x47\x28\xd7\xcb\xd0\xdc\x25\x50\x4d\x88\x63\x29\x32\x51\xcf\x0e\x27\x6c\x96\x51\xbb\x10\xc2\xe9\x42\xe0\xb8\x6f\x98\x7d\xa0\xc4\x83\x10\x72\x9a\x3d\xc8\xfd\xf0\x16\xc2\xa7\x78\x27\x59\x0e\x96\x74\x42\xe5\x19\x95\x53\xd1\x8b\xd3\x08\x3c\xbf\x2e\x28\xac\xdc\x60\x4c\x48\x8e\x4a\xbb\x58\x76\x5a\x98\xb0\xce\x66\xe3\xef\xcc\xa4\x0b\xd3\x20\xec\xaf\x7d\x40\x57\xf1\x18\xa1\xcc\xf3\xc1\x09\xc7\x43\xb2\x84\xe1\x22\xc3\xe4\xfe\x41\x11\x82\xf7\x22\x81\xb6\x8a\xaf\x19\x84\xf3\xa1\x6f\xa5\xd7\x5a\xba\x13\x72\xf5\xb3\x34\x0e\x8f\x67\x12\xa4\x07\xcc\x45\x6a\x8f\xc6\x11\x2a\x33\x9e\x5a\x38\x85\x18\x12\x5e\xd5\x5a\x8a\x44\x6f\x8b\x26\x1c\xce\x22\x2a\xb6\x4a\x67\x42\x92\xf5\x5b\xfa\xaa\xaf\x8f\x08\x82\xe3\x3c\xcd\x59\x3d\xfe\x84\xbb\x0a\xfc\xbd\x0d\x67\x16\x12\xde\x2f\xb6\x3c\x7e\x4d\xd0\x90\xb0\xcb\x6b\xf3\xfa\x59\x1d\xf3\x08\xd5\x75\xed\x8c\x3e\xd1\x0d\x04\xfd\x6f\x37\xc2\x55\x43\xd7\x10\xaa\x6d\xd4\xcb\xcf\x36\x29\x12\xec\x8c\x59\xfc\xb3\x64\x86\x18\xb8\xdc\x9c\xf6\xe3\x7c\xd0\x46\xfa\x8b\x84\xee\x05\x27\x6e\x3e\xfb\xc9\xc0\x77\xbf\xed\xf9\x77\xeb\xcf\x10\x1e\x6b\xa6\x24\xf2\xcf\x31\xa6\xb1\xc3\x1e\xe6\xc5\x02\x3a\x04\x2f\x37\xb3\xe8\x06\x9e\x8d\x04\x89\x7b\x61\x3f\x5b\x87\xc4\x09\xf2\xf2\x6b\x63\x9d\xf8\xb4\x08\x9f\x4b\x3d\x66\x8c\x8e\x8b\x11\x66\xef\xe2\xf2\x2f\x5b\x7d\x8a\x20\x64\x71\x7e\xc7\xe2\x6a\x76\xc2\x9f\x51\x59\xc7\x50\x1d\x55\xc2\x1c\xe3\x2d\x8b\x0e\x5a\x2e\x26\xb4\x59\x9f\x6a\x35\xbb\xd2\x50\x89\x75\xbd\x01\x92\xe7\xd9\x8e\x13\x86\xb2\x7c\xf8\x3e\x2a\xb9\x31\xf1\x9e\xda\x98\x81\xbf\xac\xe9\x2f\x74\x9c\x45\xfe\xe8\x2f\x88\x27\xf4\x35\xd5\xee\xd2\xbe\xb4\x97\xc0\x56\x69\x6c\xc0\xab\xf8\x85\x81\xe1\xa0\x57\xac\x1b\xaa\x59\x08\x47\xc3\xa4\x4d\xcb\x66\xf8\x12\xce\x73\xac\xdc\xb2\x67\x89\x1d\x41\xee\x95\x42\x45\xda\x46\x07\x82\x66\x4b\x22\xef\x73\x67\x27\x42\xf6\x69\xdb\x51\xbf\xef\x22\x04\x9b\x59\xe9\xd5\xbf\xd6\xca\x13\xd6\x77\xf2\x8d\x97\xbe\x58\x48\x28\x51\x88\xcc\x18\x9c\x75\x89\xf0\xaa\xcd\xa3\xa1\xad\xca\x73\x1a\xf4\xd5\x96\x1c\x13\x1f\xdc\x47\xd0\xa9\x4e\xd6\xeb\xda\xa7\x4c\x28\x34\xdc\xab\xd6\xd7\x62\x44\x48\x65\x97\x38\x9a\x9f\x11\x45\xb8\xb8\x27\xe6\xc2\xb3\x62\x30\xf0\x32\xa5\x37\x2e\x53\x45\x82\xc0\x67\x78\xb1\x2e\xd0\x97\x87\x70\xfd\x5c\xa2\xcf\xf0\xfb\x09\x06\xea\x47\xed\x39\x43\x9a\xe7\x11\xae\xc8\xca\xef\x8e\x7f\x70\x94\x09\x45\xc5\xc0\x80\xfc\x5b\xbc\x84\x75\x13\x1b\x4b\x2f\x7c\x92\x25\x5c\x16\x92\xdd\xfa\x38\x9e\x9d\x50\xf7\x4b\x39\x24\xef\x47\x1c\xa1\x27\xb2\x42\xd6\x86\x4d\x84\x50\xb6\xb4\xf0\xe7\xdb\xc1\x0d\x84\xc6\x74\x33\xbd\x1f\xb3\xdb\x09\x66\x89\x43\x06\x1b\xa4\x37\x12\x4c\x61\xa3\xf3\x33\x7f\x16\x41\xf5\x8a\xdd\xad\x73\x03\xa3\x0c\xfc\x14\x4b\x2d\x70\xcc\x6f\x65\xa0\x95\xf5\xca\x9b\xa2\x2b\x5a\x84\xa6\xf2\x1b\xeb\xfc\xde\xc8\x10\xbe\x5b\x7c\x73\xce\xf4\x13\x21\x70\x5a\xfa\x3c\xfb\xbc\x4b\x8a\x70\x62\xfd\x4f\x63\xdd\x87\x4c\x26\xa2\x77\x7b\xae\x72\xda\xc1\x45\x90\x7d\xb4\x2b\x59\x46\x7e\x9c\x81\x4b\x72\x9a\x2e\x1a\xb1\x3f\x19\xc8\x10\xfc\x35\xc1\x9d\x33\x97\x60\x7d\x3e\xe1\x82\x8b\x6f\xc8\x34\xb8\x06\x0b\xda\xbe\x56\x0c\x20\x7c\x34\x1b\xbd\xbb\xe0\xcf\x3c\x42\xfe\xba\x25\xbd\x42\xee\x33\x08\x57\x3b\x37\x67\xc9\x1c\xfd\xcd\x00\xbb\xfb\xb5\x0d\x39\x8f\x17\x10\xde\x5c\xdd\xc9\x9c\xb9\xed\x34\xc1\x26\xdb\x9e\x83\x9d\x57\x90\x70\xe2\xcb\x51\x81\x11\xf3\x09\x06\xb4\xbe\x04\xf9\x24\x19\x28\x11\xe8\x5e\xbc\xb0\xe0\x59\x33\xfa\x5b\xf6\xa9\x46\xd2\xe1\x6f\x9f\x19\x7f\x71\x9a\x6f\xf8\x51\xcc\x52\x4b\xfa\x0b\xe1\x72\xc1\x73\x3d\xb5\x5d\x4c\xec\x14\x6b\x5b\x1b\xec\x75\x8b\x70\xff\x48\xfd\xe5\x7f\x47\xaa\x2b\x87\x4a\x63\x5b\x5d\xfe\x0b\x5a\xa3\x0f\x2c\xcf\x45\xd8\x13\x3a\x56\x65\xf6\xe4\x94\xca\x13\x8e\xce\xb8\x37\x7e\xf4\x7c\x10\x41\x72\xd5\xc3\xf3\x56\xe1\x4b\x09\x5b\x73\x0f\xc6\x05\xc7\x88\x12\xc4\x6d\x5e\xb9\xbb\xcf\x60\x23\xc4\xb6\xf3\xaa\xce\x2c\x15\x24\x88\x86\xaf\x4c\xec\xe9\x52\x22\xcc\xbd\x37\xd4\xcb\xf5\x6d\x8c\x01\x9b\x63\xa1\xa1\xa7\xfe\xe1\x20\xd8\xcd\x09\x4e\x88\x73\x9e\x0e\xbf\x48\xc9\xf0\xd5\x19\xb3\x08\x99\xe7\xa3\xed\xef\x9b\xd7\x12\xdc\x76\xf8\x39\xce\x13\xae\x26\x98\xfc\x5e\x15\x10\xae\x7a\x93\x89\xfe\xfb\x8b\x5d\x6f\xe6\xe5\x32\x51\xe4\xf9\x39\x59\x81\xbf\x8a\x10\xb8\xfd\xa9\x9e\x84\x54\x0a\x81\x5b\x63\x86\xda\xc4\x22\x6f\xc2\xd2\xc0\x19\x32\xbc\x6d\x9e\x84\x47\x3a\x1b\x82\xb9\x87\x47\x19\x38\x5f\xb1\x37\x27\xee\x80\x0c\xc1\xf4\x94\xdc\x9b\x0d\xe7\x79\x09\xc9\xdb\xab\xfe\x08\xc5\x6b\x12\xf6\x1f\xf5\xd6\xec\xae\xa8\x22\xf8\x46\x7d\x9c\x3c\xe8\x1f\x41\xb8\x1c\xa6\x5c\x36\x19\x51\x40\x58\xf5\xf2\xba\xf1\x77\x91\x70\x82\x58\xc7\xa3\xe7\x37\x95\xf5\x09\x47\xd6\xb2\x2b\x47\xed\xbb\xc9\xc4\xca\xab\xbd\xb6\xb1\xeb\x66\x12\xe0\xb8\xf8\xa3\x51\xd7\x3e\x82\xa3\x6c\xd2\x03\xd7\x0f\x3b\x08\x11\x8f\x27\x56\x73\x46\xce\x27\xf0\x58\xf4\x24\x46\xa6\x7c\x62\xe0\xa0\x94\x53\x46\xef\x2c\x35\x42\xf3\x26\xed\xca\x07\x86\x7d\x0c\x70\xb6\xa9\xd9\x26\xc9\xfa\x10\x04\xfb\x62\x65\x36\xd9\x97\x13\x4a\x77\x51\xd9\x4c\x97\x74\xc2\x8d\x33\xc6\x4b\x9e\x09\x96\x30\xe1\x7a\xcb\xb7\x89\xd7\xe0\x03\x61\x6d\x7f\xd8\x27\xb6\xa9\xd1\xc2\x77\x77\x46\x2a\xc4\x1f\x54\x62\x43\xc4\x9f\xce\x7b\x2f\x38\x09\x2a\xe2\x2f\xe3\xf2\xea\xcd\xff\x0b\x31\x1b\x0d\x4f\xb9\x0e\xe5\x10\xc4\x2c\x2a\xd9\x06\xbe\xe7\x10\x62\xd6\x8f\x45\xa7\x5f\x75\x26\x84\x0e\x87\x35\x89\x6f\x71\x26\xa8\x95\x19\xb9\x5d\xce\xfa\xc5\x40\xac\x99\xb8\xf7\x29\x5b\x2e\xc2\xda\x28\x68\x69\x46\xeb\x13\xe6\xdb\xfb\x29\x1d\xbb\xff\x9b\x81\xfc\x92\xb7\xdb\x2f\x44\xab\x11\x42\x1e\xb8\x59\x5a\x3a\x1a\x10\x3a\xbe\x14\x0f\x74\x4e\x6d\xa4\xff\x8d\xe2\xed\x0b\x97\x6c\x0d\x0f\x26\x6c\x7b\xe7\x1d\x86\xb0\xe0\x69\x25\xfe\x41\x30\xb7\x8a\xfd\x15\xc2\xdc\xac\x4a\x83\xfe\x7b\x57\x08\xe1\x5d\xcd\x22\xc6\xa7\x8b\x08\x6d\x97\xb3\x97\xb6\xfa\x9f\x22\xdc\x6d\x2c\x99\xb3\x27\xd0\x92\xf0\x59\xaf\x74\x32\xe8\x46\x29\x21\xd6\xca\x7d\xf3\x9f\x3b\xcb\x09\xf3\xd3\x0c\xea\x1f\xf8\x29\x13\xec\x5f\xee\x61\x3f\xd5\x3b\x83\x70\x4f\x21\xed\x86\x94\x06\x0b\x13\x75\x6b\x5b\x2d\x6e\x35\x73\x11\xba\xfe\x70\x8c\x85\x77\x56\x33\xc1\x91\x3d\x1e\xbb\xf9\xf5\x6b\x42\xdb\x67\xe3\x86\x8a\x96\x6e\x82\xf7\x78\xd5\xdb\x5f\x7d\xc3\x84\x61\x67\x85\xa3\x57\x4e\x5c\x67\x62\x73\x94\x45\x74\xb5\xc8\x4d\xc2\x4c\xe7\x27\x02\x1d\x77\x72\x09\x73\xdd\xfc\x66\x0f\xf0\x14\x12\x72\xbf\xfa\x5f\xdd\xfd\xf8\x2e\xc1\x92\x6d\xa5\x64\x64\x00\x8b\x26\x7a\xba\x52\x9b\xdd\x39\x47\x08\x85\x4a\x36\xcf\xed\xf2\x9a\x08\x7b\xd2\x5b\x44\x92\x24\xa3\x08\x02\xa3\xbe\x25\x4f\x46\x02\x99\x48\xc8\x67\x15\xe9\x7e\x34\xb5\x96\x4f\x3e\x3e\x71\x54\xe9\x2a\xc1\xd9\xd3\x5f\x5c\xdc\xc8\x98\x20\xbd\xa5\xef\xa5\xc6\x43\x6d\x82\x4e\x9a\xef\x18\xc5\x84\x13\xca\x92\xbe\x5f\xc8\x17\x2c\x26\x54\x7b\x24\x1d\x6f\x5f\x51\x4f\x48\x54\x9a\xf4\x1a\x3a\x5d\x43\x58\x25\xae\x5e\xdb\x31\x34\x97\xb0\x25\x64\xf1\x9d\x0c\x83\x78\x02\xff\x67\x31\xb7\x12\xe1\x72\x06\x3a\x5a\x9f\x55\x3e\x57\x33\x26\x38\xfb\x70\xd4\xd5\x5e\xb1\x21\xac\xd6\xf1\x08\x35\x7b\xaa\x4e\xe0\x13\x6a\x33\xf3\x8e\xe0\x23\x5c\x39\xf9\x1a\x5e\x07\xcf\x10\xfc\xa5\x6f\x0b\xfa\xc4\xcf\x27\xc8\x87\xbd\x0c\xee\x63\x64\x54\x62\x95\x5c\xb1\x7c\xbf\xc2\x7d\xc2\x92\x67\x35\x5c\x5e\x4e\x6a\x84\x56\x7f\x8d\xa8\x9a\x80\x5b\x04\xbf\x84\x67\xad\x70\xed\x26\x18\xef\x70\x38\xc4\xed\xd1\x4d\xff\xff\x7f\x67\xbc\x27\xc4\x2b\x17\x16\x8a\x24\xd4\x12\xe6\x65\x2f\xa9\xbc\x74\x74\x37\x61\xf6\x9d\x79\x25\x5b\xda\x76\x10\xae\x06\x4e\x3c\x18\xcf\xe8\x66\x20\x46\x28\x88\xa7\x4a\xd9\x8f\x70\xb9\x66\xe1\x85\x03\x45\xda\x84\x31\x2e\xef\x9e\x83\x07\xad\x09\x24\xc9\xcf\xde\x75\xc3\x8c\x30\x37\x39\xab\xfb\xda\x43\x21\xc2\xd2\xb7\xd5\x69\xdf\x0a\xf4\x08\xf7\x34\x75\xb6\xb7\xe7\xa8\x11\xf4\x9a\x39\x4a\x17\x5e\xd1\x9f\x86\x03\x31\x8a\x5b\x1f\x05\xe7\x56\x82\x35\xc2\x71\xc6\x82\xc5\xf5\x0c\xe4\xe4\x6e\x53\x9f\x98\x93\x4f\x88\xe9\x8d\x5f\x98\x3d\x3f\x9f\x90\x65\xd7\xb0\x40\xbc\xef\x11\x21\xf5\xfc\xd9\x07\xf7\x54\xca\x08\x7f\x7e\x7b\x35\xde\x98\x1a\x25\x72\x74\xb4\x7f\xe4\x32\x23\x48\x9d\x49\x7c\xb4\x26\xc2\xf2\xbf\x8a\x9f\xb8\xa8\xe4\x4e\x03\x3b\x82\xe0\x7b\xff\x91\x7a\x4f\x30\x10\xfb\xe5\xd7\x12\xcf\x13\x66\x53\x17\x8e\xba\x65\xbd\x7f\x3c\x08\x99\xb7\x39\x9d\x5c\x4f\x6d\x24\x58\x96\x99\xf0\x35\xe5\xba\x12\xb4\xc3\x4e\xce\x11\x5f\xa9\x4f\x70\x64\x2d\x0c\x8a\x68\xd1\x23\x54\x31\xcc\x30\x62\x3e\xc4\x40\xbf\x12\xe3\xd9\x13\xa9\x8b\x4c\x70\xa5\xff\x73\xef\x9f\x85\x32\xf4\x7f\x41\xc5\x5c\x8c\x55\x28\xed\x0b\xe3\x2f\x02\xef\x5f\x1f\x2a\x9c\xaf\x49\x28\xbe\xa0\xc7\x3b\x33\xdc\xff\xff\x44\xc4\x22\x97\xe4\xc5\x5c\x6c\x84\x1d\x6a\x66\x91\x37\xe4\x12\x08\x02\xae\xec\xdb\x7f\x0f\x4a\x10\xdc\xe3\x06\x9b\x9e\x54\xae\x22\xd4\xa4\x3e\x60\x9f\xb8\xe0\x46\x60\x61\x5b\x7b\xc8\xe8\x86\x3e\x21\x96\x7d\x44\x55\xd5\xdb\x85\xc0\xfd\xae\xe4\xe2\xa7\xf3\x27\x08\x51\x89\x2e\x77\xa5\x45\x4d\x08\x1e\x3b\x3a\x8f\x47\x0a\xe9\x12\xee\x04\xb1\x7f\xab\xf0\xbf\x46\xe8\x92\xed\xe4\xdf\xfa\xe5\xc0\x34\xd8\x45\xf9\xcc\xba\x63\xbf\x85\x90\x39\x61\x64\x57\x2c\x2c\x43\x10\xe5\x14\x5b\xd6\x96\xed\x4c\xf0\x37\x0f\xcb\x8e\xdf\xaf\x47\x98\xf5\xea\x88\xf5\xd0\xe7\x50\x42\xea\xf0\xae\xf5\x1f\x9b\x0e\x33\xd1\x57\x7f\x73\xde\x2f\xf5\x1a\x82\xed\x5a\xf9\xc6\x51\x85\x76\x26\xa2\xc3\x93\x46\xc6\xa7\x0a\xab\x49\x49\x71\xe0\xb9\x04\x82\xde\xb8\xc4\x69\x13\x7e\x26\xa1\x64\xe2\x92\x48\x92\x8e\x25\xa1\x3e\xfb\xcf\x6a\xe7\xb9\x57\x09\x5c\xc7\x04\xe2\x5f\x75\xdb\x12\xf2\xb9\x56\x0b\xc4\x25\x69\x12\x18\xb3\xd8\x95\x04\x62\x74\x08\x85\x9c\x57\x17\x3b\xbd\x01\x03\x93\x07\x4e\x99\xbf\xe2\xec\x67\xc0\xa6\xe8\xd0\x63\x91\xd3\xfa\x84\xee\x6c\xed\xfd\x66\xc7\x4a\x09\xfd\xc9\x1a\xd9\x3f\x0a\xa2\x09\xcb\x33\x05\xdc\xcc\xf7\xf8\x12\x12\x4e\xfb\xa9\x8f\x87\xc8\x13\x34\x94\x26\x1f\x77\x75\xc7\x10\x84\xdb\x2d\xda\x9a\x1c\x16\x4e\x43\xa0\xc5\x8e\xea\xb1\x87\xaf\x18\x98\x18\x96\x11\x6c\x56\x95\x20\xf8\xfe\x52\x0b\xbd\xb8\xf5\x0e\x13\x37\x1f\x26\x15\xec\xeb\xb0\xa2\xbf\x50\x79\xff\xe6\x92\x51\xba\x01\xe1\xdc\x1b\xe6\xb2\xa1\x3a\x0b\xc2\x41\x1b\x4d\xce\x6e\x8b\x38\x82\xaf\x68\x9e\x8a\xe9\xee\x8d\x84\xe0\x03\x65\x35\xbf\x5b\x5c\x09\x03\xa9\xf9\xd1\x52\xeb\x5c\x68\x6c\x56\xd4\x5b\x13\xee\x20\x02\xef\xbc\x3f\x8d\xf3\xad\xd6\x12\x5c\xd3\xf7\x6e\x75\xa8\x31\x23\xdc\x69\xcc\x37\x51\x1a\x7f\x48\xf0\x5d\x9d\xf7\x65\x79\xd7\x2b\xc2\x85\xc3\x56\x66\x0f\x9b\xbd\x09\x26\xfe\x01\xd7\xeb\x53\x83\x08\x65\xf5\x32\xbb\xeb\xa2\x4f\x11\x02\xa2\x24\xcf\x14\xbe\x9a\x4d\x50\xb9\xaf\xf4\x43\xfb\xae\x3a\x41\x5c\x85\xd9\x76\x7f\xc0\x88\xf0\xa0\xba\xa6\x56\x92\xeb\x02\x61\xb1\xca\x9c\xe1\xf2\x16\x2e\x02\xcf\xbb\x8f\x03\xcd\xc9\x0d\x4c\xac\xfa\x75\xa0\xe5\xd8\x96\x71\x06\xb6\xe4\xf1\x59\x1e\x48\xe5\x24\xf0\x0e\x3c\x7b\xe1\x72\xc1\x90\xf0\xfd\x92\xdf\x9a\xf9\x35\x62\x84\xe6\x89\xaa\x4a\xe7\x7b\x67\x09\x33\xf5\x7e\xed\x32\x76\x6e\xaf\x84\xf7\x9b\xce\x27\xdd\x13\x2e\x04\x5d\xff\x3c\xd1\xfe\x1d\x1e\x84\x9e\x75\x0d\x7d\xc3\xcd\xe6\x84\x55\xbd\x07\x83\x97\x2a\xe9\x11\xba\x8b\x17\x2c\x31\x5b\xc4\x4b\x98\x50\xbe\xf3\xed\x9d\x4a\x1d\xa1\x70\x48\x74\x61\xad\x6b\x28\x41\xbe\xcd\x27\x8e\xd7\x5a\x8e\xf0\xe4\xd5\xcb\x6f\xe6\xf7\x03\xfe\x0b\xc3\x85\x8b\x37\x2c\x9b\x35\xb5\x01\x1c\xec\xac\xb8\x1e\xf8\x10\x4a\xf6\x74\xad\x3e\xc4\x50\x25\x6c\x39\x7d\xe4\x41\x8b\xa3\x24\x21\x47\x4a\xec\xb3\xaf\x92\x3d\xa1\x99\xe1\x5b\xf3\x22\xc7\x83\x50\xe9\xd5\x57\x43\x86\x26\x84\x3c\x4d\xd6\x9f\xab\xdd\x59\x09\xef\x5e\xdb\x9f\x5c\x58\xf7\x8c\x09\xb6\xdd\xff\x98\x8c\x97\x45\x10\xb8\xe8\x59\xb3\xcf\xcd\x44\x82\x79\xd8\x11\x81\xcc\xbd\x19\x04\xa6\xaa\xb7\xad\xc2\xae\x7b\x84\x91\x1c\x86\xc4\xbf\x30\xa9\x2a\x59\xd5\xed\x76\x8f\xa0\xa3\xfc\xa8\x36\xec\x54\x06\xe1\x20\x6b\xff\xda\x2f\x1f\x7d\x09\x1e\xc7\x77\x72\xcc\xc9\xd9\x41\x30\x7d\x25\xaf\x2f\x2d\xe7\x43\xe0\x92\x9f\x11\x3b\xbb\x3c\x82\x70\x21\xb6\x54\x43\xcb\xf2\x2c\xc1\x71\x09\xbb\x80\x58\xca\x28\x03\xe6\xe7\xc6\x3a\x8b\xe5\x8c\xe8\x2f\xd4\xd6\x24\xb8\x7c\x73\x1c\x64\x80\x75\x9f\x05\xff\xd6\xba\x05\x84\x9a\xf2\xf6\xc0\x9d\x9d\x86\x84\x30\xa5\x83\x42\xe6\xd7\x2c\x08\xb2\x2a\x21\x96\xf9\x8f\x77\x12\xbe\xf4\xff\xdc\x57\xb1\xe8\x2a\x21\x79\xb9\xb3\xb0\x45\xc9\x7d\x82\xe9\x67\xc7\x2d\x79\xe5\x22\x84\xe7\x1e\x1c\xef\x8b\x1f\x67\x33\x61\xe5\xd4\xfb\x63\xd6\xa4\x1f\x41\x99\xe7\x98\xd0\x8c\xa5\x21\x04\xdb\x61\x50\xce\x46\x73\x42\x51\xcf\xc6\x72\xf9\x9d\xfe\x04\x85\xab\xcf\xba\x64\x44\x54\x09\xbe\x76\xba\x3e\x57\x93\xed\x09\xc6\x33\x78\xa5\xf8\x6e\xb2\x10\xc0\x72\xaf\xc4\xbb\x42\x99\x50\x23\x32\x9c\x52\xc6\xe1\xf0\x5f\xc8\xbc\xd3\xb1\xb1\xcd\xb9\x9e\x81\x53\xa1\x5a\xac\x6f\xde\x94\x12\x8c\xcf\x65\x30\x85\x0e\xda\x12\xfc\x5c\x9c\x8d\x3a\x46\x4d\x08\xfe\x8e\xf6\x4e\x2b\x5e\xfb\x12\x6a\xc3\x77\x95\xdc\x4b\x72\x22\x14\xed\x67\x55\xf3\xaf\xb4\x20\xe8\x2b\xb1\xc6\xf3\x65\xaf\x27\xac\x76\xd4\x92\x0b\x3c\xb6\x9a\xd0\x90\xf1\x21\xf2\xdd\xe3\x28\xc2\xb6\x47\x4f\x67\x97\x7d\x60\x10\x96\xe8\x5a\x36\x0c\xb2\x70\x13\x74\x38\xba\xe3\x8b\x54\xcd\x09\xda\x46\xbe\xcc\xc5\x8c\x38\x42\xd8\xa5\x95\x86\xe7\xe7\xb8\x12\x58\x56\xee\x8c\x8a\x17\x8d\x23\xfc\x76\xd4\x4b\x39\xdf\xec\xc9\xfc\x3b\xda\x94\xf5\x36\x89\x6b\x43\x22\xa1\xbd\x3a\x7b\xf5\xc4\xb5\x22\xc2\x1b\xeb\xb6\x20\x15\xd7\x74\x82\x8a\xee\x4f\x05\xfd\x17\x2c\x84\xb3\x16\x05\x2b\x16\xe9\x78\x12\x3e\xd6\xad\x3d\x12\x74\xda\x90\x50\xc8\xf1\x73\xa4\xf5\x83\x22\xc1\xba\xd7\xdd\xaf\xa9\xc8\x96\xc0\xbe\x3b\xcf\x32\x23\x32\x90\x10\x6a\xbe\xa4\xca\x21\x36\x91\x89\xe6\xb2\x99\x93\x41\x36\x6b\x09\x2c\x2f\x59\xee\x0b\xf4\xd7\x10\x96\x3a\xfb\x3d\x1f\x3b\x1c\xc9\x44\x17\x57\x94\x79\x96\xd0\x13\x1a\xab\x8d\x3a\x31\x79\xf7\x2e\x61\x7c\x5e\x88\xbc\x54\x6d\x11\x21\xe1\x5d\xa5\xb2\x83\xcb\x46\xc2\x96\x97\xaa\xb2\x0a\x69\x33\xa6\xa1\xc1\x57\x82\xd2\xf2\xc6\x19\x10\xd2\xda\x75\x58\x75\x9f\x2d\xe1\x4e\xba\x1f\xf7\xd7\xa3\xfc\x84\x47\xad\x6e\x69\xa7\x73\x6d\x09\x55\xfa\x1f\xd3\xda\xe2\x72\x98\x70\x7e\xfb\xa0\x77\x7d\x9b\x35\x61\xc9\x36\x13\xe3\x43\xdb\x05\x08\x0a\x6c\x13\x3e\x3d\xf2\x41\x4c\x98\x2f\x34\xee\x11\x2b\x18\x62\x40\x2b\x3b\x54\x76\x97\x0c\x1b\xfd\x07\xae\x7e\x6d\x5e\x3a\x1a\x59\x5d\x09\x9d\x8b\x4e\xe5\x36\x11\xac\x4c\x3c\x0d\xda\x99\xf4\xa6\xd4\x9f\x50\xa8\xa5\x7b\xf1\xf0\x82\xa8\x69\xb0\xb8\xc5\xbd\x3c\x82\xb1\x85\x90\x77\xe4\xc5\xb1\x97\x4b\x03\x09\xf6\xbd\x0f\x98\xb5\x12\xcb\x09\x1b\xae\xbc\x66\x2f\x73\x50\x26\x70\xf4\x88\x5d\xdf\xfd\x75\x07\xe1\x7a\x88\x9d\x6d\x56\xbe\x3c\xa1\xb6\xdb\xf4\x99\x77\x17\x0f\x41\xc5\x63\xc5\x66\x8f\xdb\xd7\x99\xe8\x59\x58\xb1\x65\xb6\x8c\x02\xc1\xee\x52\x67\x0d\x67\xb5\x31\x21\xf1\xd0\x2b\x36\xaf\xcf\xeb\xa6\xe1\xf8\x59\x96\x73\xc2\x8a\x46\x04\x0d\xbf\xd3\xa3\xff\x18\x6c\x27\x7c\xb0\xf0\x1a\x39\xe6\x66\x4c\x68\x7f\xaa\x70\xc3\xe0\x53\x0a\x21\x6a\xc7\x95\x53\xf5\x9a\x01\x04\x9d\xc4\xea\x4c\x95\x3c\x7b\xc2\x0b\x89\xe1\x93\x21\x99\x7b\x08\xb3\x9e\x9f\x7d\x64\x86\x51\x06\x22\xf8\xc2\x96\x30\x1e\xf9\x10\xca\xaf\x95\x3f\xca\xf5\x3d\x42\xa8\xba\x3b\xab\xf3\x4b\xb8\x04\xe1\xf6\xa9\x4a\x95\xed\xa2\xcb\x08\xbe\x6f\xbf\x1f\xaf\xf4\x60\x21\x3c\x3b\xea\x14\x9f\xd3\xe7\x4e\xf8\xcc\x18\x79\xc7\x56\xdf\xce\x80\xab\x6f\xac\x61\x9e\x90\x31\x21\x7c\x5f\x8b\xb7\x95\xce\x13\xe6\xdf\xa2\x5a\xf7\x31\x2a\x5a\xe7\x07\xe3\x2f\xe6\x04\x7b\x84\xaa\xf2\x6b\xd2\x7f\x60\x7f\x8a\xcd\xfe\x2c\xcf\x87\x95\x18\x55\x3a\x70\x4e\xc9\xd7\x85\xf0\x62\xcf\xf3\x93\x17\x77\x74\x10\x8a\xce\xcc\x7b\xfd\xfc\xf1\x25\x82\x6a\x85\x48\xa7\xd3\xac\x78\x82\x86\xa7\x72\xb8\xd0\x87\x52\x42\xe9\x7c\xaf\xb8\xba\xf7\x91\x04\xae\x8d\x8f\xb6\x37\xbe\xde\x4c\xf8\xbd\x4c\x5d\x4d\x30\xc8\x80\x70\x39\x64\x43\x9d\xca\xeb\x6b\x84\x9a\xf5\x97\xdc\x32\x32\x6f\x13\x8a\x95\x86\xfc\xaf\xb6\x28\x4c\x43\xe1\x0d\xba\xd6\x1d\x2b\x44\xa8\xa8\xbc\x7c\x6f\xef\x02\x16\x02\x9b\x7d\x68\xad\xe3\x6a\x3d\x82\xcc\xdb\x0d\x81\xef\x6d\xd5\x09\x8f\x1f\x92\xd5\xfd\xc6\x09\x06\xce\x6c\x99\xd1\x2e\xab\xb5\x91\xd0\xd9\xf6\x83\xa7\x3b\x77\x13\x61\x67\xf0\x66\x5b\xae\x6b\xc2\x84\x43\xdf\x4b\x4e\xea\xee\x1c\x65\x20\x9a\x93\x53\xb8\x32\x7f\x0f\x13\xed\x97\x1a\xea\xfc\xb4\x16\x4e\x6d\x89\xca\x2e\xa9\x25\xae\x84\x87\xf3\x94\xec\x5e\x4c\xbd\xb0\x97\xcb\x9e\xf2\xce\xd8\x3a\x8f\xd0\xf5\x5a\x5e\xd2\xc1\x7c\x29\xc1\x48\xc6\xc5\x60\x53\x99\x39\xa1\xfe\x86\x77\xcb\x87\xf9\x6a\x84\xb6\x01\xdf\x14\x89\xd4\x03\x4c\x54\xbd\x90\x20\x8b\xa3\xd2\x84\xce\xb5\x17\x9d\x6d\x53\xfd\x09\xa2\x59\xc7\xfe\x79\xf3\x54\x97\x60\x5d\xbc\xb0\x44\xed\x81\x2e\x21\xfe\xe0\xa5\x2f\xdc\xfa\x51\x84\xa6\x93\x0a\x79\x81\xf7\x6a\x99\xb0\xf3\xcf\x37\xd8\xe2\xde\xc0\x84\x79\x76\x6e\x71\x94\xfa\x63\x26\x38\x5f\x8e\x4a\x86\x1e\x2e\x60\xa2\x2b\x7e\x8e\x4e\x56\xe5\x33\x26\x3c\xfa\x3e\x6d\x7e\x56\x37\xb5\xfd\x7c\x8c\x0e\x2d\x5b\x65\x48\x70\x3e\xb4\x27\xff\xe5\xcd\x45\x84\xfe\x7b\xcb\x24\x67\x5e\xda\x48\x70\xf8\xc6\xf9\x99\x35\x29\x82\xf0\x6a\x66\x89\x9b\x6d\xa2\x34\xe1\xd1\x85\xc4\xfb\x8d\x53\xc7\xb2\xc7\x15\x4c\xe7\x54\x6e\x7d\x42\xc4\xab\x5b\x3f\x8d\xf5\x5d\x08\x3e\xdf\x52\x39\x7e\xcf\x4d\x98\x06\xb5\xe5\x4f\x26\x7a\x07\x8f\x4e\xc3\x46\x8b\xb7\xfd\xae\x23\xd7\x08\xfa\x9b\xdc\x2e\x46\xda\xb8\x11\x7e\x1c\xd2\x2d\xf0\x5b\x7f\x80\x60\xa3\x74\xf3\xc6\xa3\xa9\x5b\xca\x56\x6d\x87\xe7\x4e\x45\x9a\x84\xea\x8e\x23\x95\xd2\x9c\xf3\x08\x0f\x77\xc6\x04\xae\xfb\xb3\x98\xf0\xbb\xf7\xc4\x89\xaf\xef\xdf\x31\xfe\xe2\x12\x27\xf3\xd9\xd3\x02\x3e\xc2\x81\xca\x14\x8b\x7e\x2e\x4b\x82\xc0\xae\x63\xbc\x17\xec\xa6\xd6\x60\x2b\xf7\x4f\xce\x18\x23\xc2\x36\x9d\xab\xf9\x25\x41\xfb\x09\x87\xaa\x56\x7f\x1a\xd5\x0f\x20\x54\x9c\x29\x7a\x24\xe8\xb9\x8b\xb0\x7c\x7e\x75\xc3\x6b\x97\x12\xc2\x3f\x41\x69\x99\xd9\xc7\x97\x11\x3c\xb3\x35\xec\xfb\xe6\x06\x12\xc2\x53\x9d\x3e\xeb\x75\x1b\x12\xde\xd6\x77\x16\xaa\x6d\xb8\x4c\x48\x6f\x12\xa9\xec\x67\x5e\x22\xfc\x7c\xa2\xb3\xfe\xf7\x59\x49\x42\x45\xf0\xd0\x5a\xad\x75\x97\x09\x1e\xfa\x01\xb3\xea\x4a\xa2\x09\xc2\x1d\xd2\x67\x33\x27\x99\x4c\x5c\x48\x19\x7e\xf7\xc5\xd6\x85\x70\x78\xa0\xcf\xdf\x70\x69\x2d\x21\x43\xeb\xc2\xc5\x82\x47\xce\x84\xb9\x67\x77\xa9\xcc\x7d\xe8\x47\xd0\xe1\x8e\x9f\xdc\x59\xb5\x95\x20\x66\x2b\x75\xef\x99\x93\x03\xa1\xfe\x90\x77\x1c\x5b\x04\x1b\x21\x40\x52\xfa\x99\x6f\xe7\x2c\x82\x62\x71\x96\xe9\x4d\xe7\x03\x04\x96\xf7\xa1\xbf\xd9\x25\xf2\x08\x8a\x16\xe6\x8f\xff\x5f\x88\x87\xf1\x27\xcf\x2d\x7f\x45\x48\x98\x7c\x6a\x3b\x6b\xaa\x6c\x4b\x93\xd3\xdc\x7b\xc0\x82\xc0\x57\xad\x56\x17\x3c\xd7\x74\x5a\xf9\x1f\xdc\x55\x46\xbe\xf6\xc6\x2c\x22\x70\x1e\x0f\xde\xbf\x68\xf3\x27\x06\xe4\x7a\xef\x95\x3b\x72\x7a\xd2\xff\x85\x2f\xd9\x9c\x1b\x33\x35\x54\xff\x0b\x39\xae\x9d\x2c\x62\x71\xdd\x0c\xd8\xda\xd6\xb4\x18\x9a\x3a\x12\x96\x7f\x0f\x31\xe7\x9a\xba\x2d\xf7\xa9\x67\xed\xde\x5e\x55\x44\xb8\xeb\xe1\xbd\xfe\x5f\xbc\xcd\xe4\xbd\xdb\xb1\x3e\x9b\x09\x07\xed\xc7\x2b\x4d\xdd\x92\x09\x5a\xe1\x8c\x40\xff\xae\x3e\x06\x14\x0e\xcb\x8a\xab\x5d\xf1\x21\xec\x4b\x7f\x79\x2b\xe9\x50\x1b\x03\x02\xa2\x17\x6b\x56\x25\xea\x12\x96\x2f\x1d\x63\xab\xaf\xd9\x4e\x58\x2b\xf6\x5e\x86\xbb\xb4\x93\x09\x2e\xa3\x97\x56\x6b\x77\x19\xd0\xdf\xcf\x3c\x2c\x17\x38\x5e\x86\x0d\x84\xab\x91\x15\x4f\x4e\xcf\x97\x99\x56\x54\xd8\x66\x84\x78\xbf\x1b\x61\xa0\xe4\xc3\x5b\xb5\x62\x69\x65\xc2\x91\xc5\x32\x5f\xca\xe3\xdb\x19\x98\xdc\x7e\x30\x97\x57\x22\x88\x89\x8b\x2f\x7d\x32\xad\x2a\x86\x18\xd8\x74\x6b\x2f\xe3\x10\x44\xe8\x2f\x22\x2d\x4a\x36\x1e\x11\x5c\x44\x38\xe5\x35\x5b\x2d\xc4\xf9\x38\x13\x21\x1f\xce\xa7\xae\x99\x34\x23\x5c\xdf\x73\xac\x98\x9c\xfd\x09\x66\x0d\xf5\x02\x8b\x4e\xaf\x26\xa8\x9a\x6a\x34\xd7\xbc\xd7\x26\xcc\xd2\x33\x4d\xbb\xf8\x52\x98\x70\xbd\xda\x98\x43\xbe\x75\x33\xa1\xcd\xc2\xe8\xdd\x88\xb4\x22\xe1\x8c\xbb\x4b\xcb\x21\x15\x7d\x02\x17\x5f\xd5\xfa\x86\x07\x76\x84\xe7\x41\x36\x42\xd2\x7b\x96\x12\xae\x9a\xe8\x85\xfe\xd9\xb7\x98\x70\x35\x68\xbe\x75\x7d\x00\x37\x61\xcf\x82\x17\xc1\xcd\x92\x4e\x04\x1a\x93\xf2\x98\xf7\x52\x8d\x70\xd1\x34\xd7\x7a\xb9\xa3\x05\xe1\x43\x98\xb3\xbc\x29\x4b\x20\xc1\xa4\xec\x5d\xf5\xa1\x3e\x2d\xc2\x61\x0e\x9f\x1a\xae\x4e\x0e\x42\xf4\x8c\x2d\x46\x63\x9f\x34\x09\x45\xd7\x3e\x69\x08\x90\x01\x21\xf2\x89\x73\xd5\xf0\x42\x4d\x82\x58\x61\x89\xd7\xc0\x6e\x2f\x02\xcb\x65\xcf\x8f\x5c\xaa\x0b\x99\x28\xd1\xb8\xd2\x39\x3b\x54\x94\x70\xa6\x30\x68\xde\xd2\xc9\x02\xc2\x4f\x1c\x13\xfe\x17\xc5\xb3\x36\x9d\xe9\x35\x2a\x26\x04\x3b\xe5\x15\xf7\x9f\x4c\x26\xb4\x2f\xb2\x0d\x88\x8e\x8f\x23\xb8\x3c\x8e\x3c\x3e\xc2\x9c\x49\x38\xe2\xb7\x26\x5d\xe6\xf1\x6a\xc2\x63\x6d\xf7\xf1\x35\x5d\xbd\xcc\xbf\xe5\x7f\x30\xe2\xf8\x99\x7e\x86\x2f\xaa\x12\x86\x5e\x15\x76\xf3\x78\xa6\xde\xc6\x9b\x1d\x2f\x3a\xaa\x3b\x13\x26\x42\x0b\xdc\x57\x48\x9c\x26\x38\x98\x87\xef\x0b\xa8\x3a\x30\x0d\xdf\xf6\xc4\xbe\x54\x17\x50\x23\x0c\x9a\x14\x7e\xa8\xdd\x74\x90\xc0\xbf\x25\xd5\x74\x53\xe8\x7d\xc2\xbb\xc6\x47\x02\x12\xe7\xdc\x09\x4a\x5a\xdb\xa5\x7b\xa3\x16\x12\x3e\xb9\x3b\xad\x58\xca\xbe\x9f\x60\xf3\xe0\x82\xda\xc3\xfe\x55\x04\xf3\xe7\x97\x4d\x8c\xb5\x24\x08\x27\x4e\xb2\x3e\x88\xdb\xc4\x42\xa8\x4d\x13\xae\x6f\x62\xaa\x12\x16\xed\x4c\xa9\xe6\x4d\xd2\x27\x78\xb8\xf2\xed\x77\x1c\x58\x41\x50\xb1\x2d\x5b\x6b\xe6\xec\x40\x48\x3e\xb4\xb1\x26\x67\x78\x11\xc1\xf0\xb5\x40\x53\xa2\x94\x12\x41\xa2\x7e\x44\x74\xe2\xf8\x49\xc2\x01\xf3\xdc\xc6\xf6\xeb\x27\x08\xdc\x7d\xa5\x31\xbc\xff\x24\x13\x42\x55\x47\x16\xde\x9e\x5c\x46\x18\x6d\x5d\x10\xaa\x38\x37\x9f\x89\xb2\x27\x3c\x16\xa9\x8f\x8d\x09\x5a\x02\x35\xe6\xe9\xb1\x56\x04\x56\xee\x2f\xd5\x01\x0a\x4a\x84\x45\x9b\x9f\xcf\x69\x0c\xe8\x63\x40\xfa\xeb\x8c\x25\xcf\x1a\x5d\x08\xcb\xce\x4a\xcb\xca\x5c\xd9\x4e\x70\x57\xe3\x1f\xe0\xe0\x9c\x45\x58\x74\xdf\xe2\x6c\x69\xec\x65\xc2\x2b\x41\x9d\x96\x19\xe5\x85\x84\x6b\xef\x6f\x0c\xfc\x5b\x44\x72\xf3\x25\x8d\x47\x1a\x08\x06\xae\x7c\xdc\x79\x87\x5c\x09\x1f\x1b\x9f\xa9\x28\xf4\xc5\x10\x92\xbe\xde\x94\xf0\xdd\x36\x75\xc8\x39\x2c\x9d\xec\x6c\xb4\x98\xd0\xf4\xdb\xec\xdb\x2f\xc1\x14\x82\xde\xc5\xd7\x5e\xa1\x53\x77\xb6\x20\xf9\xca\x03\x66\x07\xe3\x09\xfc\x0a\x5d\x9e\x9c\x27\x5a\x09\x5b\x4a\x46\x55\xd2\x6b\x9e\x12\x3c\x13\xee\xd8\xd7\xca\xdc\x20\xec\xd9\x94\xee\x61\xb3\x94\x8d\x50\x9d\xf2\x4b\x29\xe9\x46\x1b\x03\x2b\x14\xe2\xc4\xbf\xcf\xd2\x23\x2c\x5c\x53\x1a\x15\x72\x58\x8a\xb0\x7d\xb7\xc9\x88\x58\x8f\x26\x61\x63\x95\xe0\xd9\x4f\xe9\x2e\x04\x83\x71\x2b\xad\x3d\xbe\xd5\x4c\xe4\xad\xfa\xd0\x7c\xd4\xc0\x8a\x20\x8e\xc1\xfc\xe6\x77\xb3\x09\xc5\xc1\x42\x86\xde\x8f\xf6\x32\x61\x27\x74\x55\xbc\xc3\x78\x94\x81\xa8\x2c\xc6\x99\xf1\x23\x06\x84\x3e\xa3\x81\xf2\xdd\x17\xa7\x1e\xdd\x59\x9e\xfb\x8b\x77\x69\x10\x96\x48\xc9\x1c\x59\xad\x77\x83\x09\x8e\x2d\x5a\x85\xfa\x31\xcf\x99\xa8\x4e\x97\x1a\x6d\xca\xaf\x23\xa4\x9f\xb7\x59\x98\xfe\x5d\x92\x70\xed\xc9\xde\xdd\x9a\x06\xfe\x84\xf5\xdb\x1e\x1a\xb3\x1f\x3c\x4f\x58\x25\x17\x26\x63\xb2\x7d\x05\xc1\x60\xb7\x28\xff\x5c\xad\x04\x26\xa2\xc1\x5d\x24\xbc\xd5\x8d\x10\x27\x3e\xa3\x75\x64\x91\x1e\x21\xce\xca\x5c\xac\xc1\x36\x87\xc0\xdf\xb2\xb5\xdb\x9e\xad\x91\xb0\xa2\x46\xf6\x7e\xf7\xe7\xfb\x84\x5c\xbb\xa7\xf5\x8f\xa6\x46\x3b\xe6\x0b\x65\x9d\x8b\xdb\x43\xa8\x7e\x35\xd3\xe1\xf2\x65\x6e\x82\x1d\x53\x22\xed\x5b\x49\x10\x21\xf5\xa2\x63\x6b\x77\x4b\x31\xe1\x47\x30\xdf\xf1\x7f\x8b\x9f\x3d\xb9\xf5\x65\xca\x4e\x83\x85\xdb\xfc\xb9\xb1\xc2\x43\x0c\x34\x09\x94\xb0\x65\x55\xcd\x23\x94\xbd\x9b\x08\x8d\x0b\xfb\xc0\xc0\xa3\x80\x4d\x65\xbf\xf8\x14\x08\xbb\x7d\xd8\x8c\x1f\x4e\x2d\xd6\xbd\xd5\x85\x31\xf1\x36\x3f\x18\x48\x17\x29\x6d\x5a\x78\xcc\x91\xf0\x4a\xee\x39\x8b\x95\xc0\xc6\x69\x18\x94\xfa\x47\x60\xee\xe2\x10\x82\xa1\x59\x7a\x41\xad\x9d\xd7\xb4\xb2\xdf\x29\x72\xe9\x8d\x51\x3f\x82\x90\xe1\x90\x88\xbd\x89\x3f\xe1\x72\x70\x69\x78\x97\xf6\x9e\x4a\xa4\x70\x27\xee\x69\xce\x48\x67\xe2\x4f\x77\xca\xd9\xee\xa9\x12\xb3\x67\x97\x5e\x49\x5e\x0f\x03\x72\x6e\x5b\x7c\x4c\x12\x36\x13\x8e\x5b\x68\x4c\xb8\x99\x71\x12\x8a\x36\x36\xde\x97\x71\x5e\x40\x58\x56\x1e\x3d\x14\x98\x3e\x97\x10\x16\x96\xad\xda\xfa\x66\x88\x01\x03\xed\x8b\x8e\x61\x2a\x5c\x84\xe3\xdf\x3f\xfa\x34\x71\x5f\x98\x86\x85\x81\x12\x2f\x2d\x25\x6a\x09\x1f\xf3\x2e\x28\x78\xdd\x0a\x20\xf0\x9c\xdb\xf8\xdb\xbe\xcf\x9c\xd0\xa7\xf5\x49\xd1\x3e\xae\x9a\xe0\x24\x7b\x38\xbd\x21\x8e\x8f\x20\xab\xc5\x7b\x81\xf9\x70\x03\xe1\xe5\xeb\xda\xf1\x4a\x1b\x6b\xc2\xa4\x9e\xe3\x85\x4c\x93\xc8\x69\x10\xcd\xef\xbd\x99\xc3\x73\x92\x20\xb5\x6b\x9f\xbb\xe1\x9b\x64\xc2\xa7\xf1\x99\x6b\x7c\x74\x65\x09\xf5\xd2\xe9\x79\x32\x69\x1b\x08\xcf\x64\x4c\x4e\x8b\x3a\x6e\x21\x58\x48\xee\xf6\x59\xd3\xb4\x9e\xf0\xe4\xfc\x73\xd3\x2b\x75\x93\x0c\x88\xde\xbe\x3e\xfa\xe0\xb2\x33\xe1\xa7\xcb\xbb\x4e\xf1\x6f\x53\x6b\xeb\xfb\xeb\x16\xb1\x35\xc1\x04\xb9\x5c\x9b\x2b\x9a\xef\xe4\x09\x6b\x13\xdc\xf2\x6c\xe7\xc5\x33\x61\xf0\x95\x56\x7e\x0e\x52\x20\x38\x2c\xbd\xb7\xea\xe2\x0a\x79\x02\xf7\x56\xb1\xb5\xcf\x06\xb9\x08\x51\x9f\xfa\xab\xcf\x94\x5c\x9e\x86\x0b\x21\xdb\xfa\x6c\x1e\x84\x12\xc4\x27\x92\xd9\x5e\x0a\xfb\x13\x2e\xe8\xba\xbe\x37\x59\x16\x4f\x58\xf1\xb4\xc9\xd7\xce\xe5\x3b\x03\xbb\x27\x65\xfb\x3b\xd9\x17\xd3\x5f\x44\xa5\x14\x2e\x1f\x97\x5c\x42\xa8\xfe\x33\x9a\xaa\x11\x76\x8a\xf0\x81\xa3\xf3\xa2\x8e\xf4\x35\x26\x8c\x6f\x6d\x3e\xe0\x96\x72\x9c\xa0\x9d\x61\x21\x5f\xbb\xc2\x96\x70\xd5\x40\x59\x20\x40\x31\x9a\x89\x63\x77\x66\x1e\x65\xe9\x70\x26\xec\xb3\xd8\xf3\x5b\x2f\xd6\x8c\xb0\x2a\xdc\xe7\x96\xdd\xcc\x83\x04\x97\x1d\xfd\x3d\xb6\x66\x07\x09\xd1\xa1\x52\xbb\xac\xe2\x0f\x12\x1a\x26\x5a\x4d\x1d\x4a\x45\x09\x01\x01\xe1\xc2\x27\x34\x86\x19\x78\xd3\x52\xe4\x3a\x2f\x40\x92\x90\x77\xfb\xb3\x8e\xa4\xf6\x09\xc2\xe7\x0a\x89\x5b\xaf\x97\x6b\x12\x6a\xdd\x9d\x77\x6e\x71\x3b\x3e\x0d\x29\x57\xf4\xa4\x3c\x8e\x1e\x22\xd8\x16\xd8\x1e\x18\x5c\x9e\x4a\x38\xd0\x93\x97\x78\x6d\x83\xe7\x34\x34\x6c\x9c\x63\x76\xda\x4b\x9e\x90\x6a\xd5\xe3\xc9\xae\xca\x4e\x58\x95\xf9\xb6\xb7\xa1\xf8\x07\x03\xc7\xe9\xe5\xdd\xcb\xb7\xc0\x00\x17\xe3\x06\x4b\xb4\x70\x2d\xfd\x2d\xf5\xda\x17\x82\xac\x6d\x35\x08\x6e\x7f\xcc\xbf\x8d\x55\x34\x56\xa2\xc7\xcc\xe6\x43\x63\x85\x1d\x41\xdf\x31\xb7\x93\x9f\xa9\x49\x78\xac\x23\xbe\x58\xe7\xda\x00\x03\x2d\xe2\xbb\x54\x6b\xcf\x07\x4d\x1d\x0b\xcb\xcf\xbd\xb5\x2a\x24\xcc\x1f\x7d\x71\x44\x58\x34\x8f\x10\xb3\xe9\xf6\xbd\xc5\x62\xf1\x04\xb6\x75\xf4\x2a\xd2\xf4\x05\x61\x4e\xa3\xc6\x4f\x97\xac\x24\x42\xc6\x2e\xf3\x33\x13\x09\x9c\x04\xbb\x6d\x69\xb9\xae\x0e\x9e\x04\x5e\x93\x05\xc8\x18\x93\x24\x44\xec\xdb\xc7\xce\x3e\x39\x9f\xc0\x6f\xbe\xf3\x91\x6a\x81\x3c\x21\xeb\x52\xf6\xd0\xd0\xad\x14\x42\x44\x43\xeb\xf3\x32\x6f\x05\x42\xb9\x93\xea\x83\x58\x01\x67\xc2\x6c\xa3\x7b\xa6\x7c\x1f\x56\x13\x5a\x0a\x53\x7f\x8b\x3f\x75\x23\x38\x16\xae\x7a\x1e\x7f\x47\x89\xc0\xe3\x57\x10\xfb\x9e\x83\x08\xfb\xbe\xbc\xe7\x8d\x2b\x93\x25\xf0\x08\x59\xfb\x0a\xd6\x77\x31\x30\xee\x3b\x30\xf0\xed\xa5\x10\x61\xe4\x8b\xb8\xbb\x43\xf5\x39\x42\x46\x74\xe2\x4d\xbe\xe0\x1a\x82\x45\x52\xd6\xc0\xbf\xa5\xcd\xd2\x3e\x44\x28\x7f\x1f\xe1\x67\x6b\x2b\x3d\x6e\xdc\x42\x90\x58\x7e\x2a\x6c\xfe\x88\x1c\x81\x7d\x87\xfc\xad\x40\x56\x6b\x82\x3d\x4f\xe1\x4d\xd9\xc6\x54\x42\xf4\xc9\x92\x0d\x3b\xe2\xcc\x08\x63\x8b\x0a\x27\x58\xfc\xa4\x08\xc2\xa7\x4a\xbd\xff\xc9\x14\x24\x34\x44\xaa\x7b\x6a\x04\x5e\x21\x94\x0c\xc5\xa4\xe5\x70\xb9\x13\x56\x64\xc7\xfc\x90\x7e\x9c\xc2\xc4\x05\xf7\xe1\x85\x09\x2b\x65\x09\x0d\x9f\x13\x5d\xe2\xad\x44\x08\x2b\x5f\x65\x9e\x3f\xdc\x7e\x99\xf0\x98\xc4\x5d\xae\x4b\xc6\x12\xda\x3e\xaa\x4d\x58\xda\x84\x4f\x2d\xcd\xcb\xc5\x5b\xfc\xd2\x08\xd2\x3b\x6e\x7f\xd5\x0e\x30\xa4\xb1\x2a\xab\xcc\xb8\x95\x97\x09\xf5\x19\x5b\x22\xce\xdc\x32\x25\x14\x2f\xec\xaa\x5c\xf4\xb1\x8a\xf0\x70\xbf\x49\xb1\xa6\xa5\x3b\x21\xff\xc8\x7c\xbb\x6b\xbe\xce\xff\x85\xe8\xe8\x81\x7d\x47\xfd\x8c\x09\x33\x7d\x7c\x87\x76\x56\x3b\x11\x84\xa5\x35\xce\xcc\x9f\xd3\xc7\x80\xb2\x6f\x74\x1e\x57\xb2\x2d\xfd\x7f\x42\x7d\xf0\xa7\x79\x6b\x96\x65\x12\xaa\xdb\xcd\xc3\xfe\x5f\xbc\x31\x74\x3f\x93\x9b\x78\x92\x90\xbd\x4b\xf5\xaa\x6d\xf9\x59\x42\x7a\x9f\xc5\x29\xe5\x1e\x06\xa1\x5c\x75\xf5\x67\x9e\xba\x37\x04\x73\xf3\xe8\x03\xaf\x57\xd7\x12\xce\xdd\xbd\xb2\x77\xc6\xeb\x6a\x82\xee\x82\x4f\x9b\x8c\xe2\xab\x08\xc2\xa1\x7a\x8a\xff\x8e\xba\x43\xfa\x52\xf8\x1d\x5d\x08\xfe\x7a\x65\x3e\xa1\x6b\xb6\x13\x84\x53\x1c\xcc\xdc\x6b\xa6\x96\xa7\x7e\x76\xdf\x85\xd6\x1a\x26\x24\x67\x1b\x2b\x4e\x46\x3e\x65\xc2\x23\xcc\xa0\xdc\xb6\xf8\x29\x13\x86\xe3\xdb\x42\x7c\x63\xbc\x09\xe6\xd6\x69\xde\xeb\x8e\x44\x30\x31\x2c\xb1\x49\x45\xf9\x6b\x0e\xfd\x1d\xf1\x36\x55\xec\x0d\xd6\xb7\x27\xa8\x6e\x0a\xbe\x18\x36\xc9\x42\xf8\xd8\x7d\xd9\x32\x66\xa7\x39\xa1\x27\xed\xe1\xc1\xd6\x9d\xfb\x98\xd8\xff\xb1\x37\xf0\x83\xb7\x15\xa1\xe8\x52\x26\x97\xd7\x23\x23\x42\xda\xdd\xe8\x42\x4f\x8e\x9f\x0c\xec\x6b\x7c\x59\x5b\xcc\xdf\x51\x89\x3f\xce\xb6\xa2\x54\x17\x43\xa0\x63\x8b\xf9\x5c\x2b\xa2\xff\x4f\x0c\x7c\x6d\xdf\x24\x7b\xa2\x86\xc0\x9b\xef\x21\x3a\x3f\xbb\x86\xf0\x43\xea\x4b\x01\x33\xab\x86\xd0\xa9\x71\xc6\xea\xdf\x72\xe6\xe3\xd7\x37\xae\x72\x4d\xcc\xbf\x65\x68\xb5\x65\x4d\x6b\xfb\x55\x82\x65\x85\xa5\xc4\x9c\x4f\x0f\x09\xd1\x81\x0b\xb6\x69\xfb\xb6\x30\x21\x2c\xf1\x50\xe3\x22\xe7\x09\x82\x80\x41\xc8\x69\xb3\xb6\xa9\xf3\x82\x63\xe5\xbe\xec\xa9\xb2\xfa\xb9\x62\xe4\x68\x81\x26\x81\x19\x5c\x5a\xad\xfc\x38\x90\x09\x87\xb4\xea\xdb\xb1\x5d\xe5\x84\xa7\x78\x22\x78\x45\xe9\x09\xc1\xb7\xbd\x46\xa7\xba\x33\x87\x20\xb9\xff\xe1\xe1\x1b\xbc\x77\x98\x10\x5c\x5a\x1f\xf1\x4c\x37\x92\x10\x73\x7e\xf5\xf6\xdf\xd1\x6f\x2b\xc1\xb1\xb3\x38\xdf\xf2\xe0\x49\xc2\xcc\xbe\x8c\x33\xc3\x16\xf1\x84\xb9\x16\xdb\x56\xcd\xed\x36\x26\xd4\x5f\x7a\x9b\x67\xd1\xab\x4b\xf0\xb6\x9f\x58\xef\x28\xc8\x4b\xd8\xb6\x36\xc3\x38\x42\x50\x96\xf0\xab\x46\x73\xee\xd7\x39\xda\x04\x86\xe4\xbe\xf8\x57\xe9\xcd\x04\xff\xfe\xcf\x09\xe5\xde\x75\x04\x8b\x7e\xfb\x07\x46\x71\x4f\x98\x78\x7c\xa9\x51\xa2\x3d\xa9\x9a\x50\x20\x94\xd0\xa5\xbf\xb7\x98\x10\x18\xa3\xc2\x16\xb4\x3b\x83\x30\xa9\x68\xf6\xf5\xf8\x25\x21\xc2\xe0\xb1\x7e\xad\xbd\x31\xaa\x04\x13\x95\xcb\xf1\xcf\xdc\xef\x33\xc1\xdc\xf7\xcb\xe4\xbd\x37\x37\xe1\x89\xb0\xa0\xd2\xab\x5c\x76\x82\x1b\x67\xed\x22\x89\x1a\x5d\xc2\x31\xc9\x16\xed\x5f\x9e\xfb\xa7\x61\xa5\xa4\x5e\xab\xd6\x7a\x0f\x42\x5b\xc0\xfe\x64\x3e\x5e\x07\xc2\xfc\x9d\x63\x82\x7b\x44\x37\x13\x6a\x8d\x74\xa3\xec\xd2\x37\x10\x3c\x8b\x38\x96\x9d\x79\xaa\x45\xc8\x75\xcf\x15\xd2\xda\xea\x4e\xd8\xc0\x78\xfd\xf8\x95\x4d\x04\x13\x27\xbd\x9f\x18\xcf\x6c\x36\x21\xb0\x73\x08\x9f\xdb\x7a\xee\x00\x21\xbb\x7f\xb5\x9f\x61\xa8\x35\x81\x6f\x86\x8f\xbf\xfd\x62\x39\xc2\x9f\xc9\xb8\xfe\x05\x2c\x97\x98\x40\x73\xda\x20\xd7\x9c\x1b\x84\xf4\xca\x47\x5f\x33\xfc\xde\x10\xd2\x2e\x3e\x3b\xa8\x2b\xfc\x80\x90\xb3\x67\xdf\xb2\xde\xad\x65\x04\xa7\xce\xd7\x13\xc6\x32\xc7\x09\x05\x1c\x9d\xa7\x3f\x79\x5c\x25\x6c\xbd\x12\xef\x73\x7e\xc1\x71\xc2\x30\x33\x2d\xe5\x9f\x23\x29\x84\x5f\xae\x35\xb3\x23\x32\xaf\x12\xf6\x9c\xbc\x74\x6a\xe2\x6a\x24\xe1\x8c\x61\x63\x65\x60\x4e\x38\x13\x4d\xfd\x8b\x53\x9f\x46\x95\x11\x98\x8d\xf5\x56\xdd\xb1\xc1\x84\x8d\x01\xef\x27\x3f\xeb\xee\x26\xc4\x04\x09\x87\x1b\x6a\x39\x11\x8c\xde\x25\xf9\x3c\x28\x90\x23\xec\x4a\x75\xd8\xe4\x10\xb7\x8d\xf0\xce\x76\x9f\x84\x76\x77\x16\xc1\xf5\x6d\xb2\xca\xa8\x9a\x0b\xc1\x24\x6f\x2d\xe7\x67\x8f\x4d\x84\x82\x1e\x35\xb5\x9f\x2d\x2e\x84\xfd\xed\xf9\x41\x63\x37\x1d\x09\xa9\xcd\x0a\x1c\x6d\x09\x46\x84\x81\xd8\xad\x3a\x5e\xe6\x0f\x08\x76\x02\xe5\xcd\xa1\xfc\x4c\xc2\xe8\x75\xfb\x72\xf5\xb4\x4e\x02\xab\xd2\xdb\x39\xbf\x56\x16\x10\xec\x9d\xf6\x4a\x0b\xf4\x6c\x24\xac\x38\x13\x62\xe2\xee\xbc\x95\xd0\xfa\x63\x78\x87\xf9\x76\x5d\xc2\x81\xa4\x15\xc1\xe5\xab\x95\x08\x15\xb3\x6b\x1c\x97\x1f\x1a\x64\x40\x61\x91\xeb\x3f\x63\x52\x06\x84\x96\xbe\xa5\xe1\x6f\x94\x0e\x4f\x83\xaf\x4f\xe4\xce\xb7\xb1\xce\x84\xea\x4a\x76\x36\x5a\xb3\x8a\x20\x7e\x9d\x96\xac\xb9\xe4\x4e\xe0\x4d\xf1\x1a\x13\xed\xde\x32\x0d\x71\xca\xcd\x77\x77\x3d\x3b\x40\x70\x5b\xf8\xa5\x38\x41\xba\x96\x89\x86\xdc\x83\x4d\x1e\x53\x45\x38\x7b\xdb\x96\x7b\x8a\x01\x04\x21\x7f\xd5\x8f\x6f\xc2\xdf\x30\xe0\xbc\x4a\xcf\xfe\xcf\xd5\x6e\x06\xec\x25\xb4\xef\x95\x58\xfd\x98\x86\x8f\xdf\xf6\xe4\xfd\x73\x77\x0e\xe1\x82\xea\xf1\x9e\x65\xeb\x0d\x09\xea\xcb\xf7\xcc\xfb\xc2\x36\xb5\x5b\x9c\x77\x0f\x6f\xbe\x61\x46\x68\x19\x5c\xe4\xb9\xa5\xfc\x0a\x13\x8e\xb9\xa3\x89\xcf\x9d\x64\x09\x4a\x7d\xef\x7d\x05\x16\x71\x12\x64\xd9\xf9\xbb\x2f\xd4\x28\x13\x8c\xc2\xc5\xae\xe9\xde\x09\x99\x56\x56\xf6\x4a\x0f\x72\xcb\x74\x31\xb0\xfa\xb7\xa1\xff\x09\xed\x3c\xc2\x59\x9b\xa7\x6e\x4a\x53\xdf\x74\xf0\xa8\x6d\xb5\x9b\x36\x07\x61\x7b\x57\xb7\x7b\x1e\xff\x77\x06\xc4\x24\xee\x76\xd7\x76\x2c\x22\x6c\xd3\x1c\x38\x6f\xa0\x35\xca\x40\x93\xd5\xe3\x4c\x83\x04\x63\xc2\x76\xd9\xaf\x51\x27\x4b\xca\x09\x07\xf4\x96\xab\x5b\xa8\x30\x09\x25\xea\x15\x3b\x9c\xde\x31\x09\x4f\x8d\x7c\x82\xfc\xee\x46\x13\x9e\xbc\x94\x5c\xe7\xc1\x8c\x27\xc8\xd4\x78\x07\x55\xcf\x57\x25\xa8\x7f\x1e\xdd\x1f\x31\x71\x9e\x30\xb3\xf1\xfd\xcd\xf5\xad\x6f\x09\x6b\xbf\x15\x1c\xf8\x7e\x76\x0e\x21\x36\xb2\x7c\xc3\xe1\x4a\x91\x69\x88\x72\xea\x2e\xb8\x75\x65\x2d\xe1\xe3\x13\x8f\x4f\x1e\xac\xa2\x84\xd2\x15\xbc\x7e\x7f\x06\x5c\x09\xa5\xae\xc1\x86\xa2\x7c\x57\x09\xdc\x4e\x4f\xbd\xba\x6f\x1e\x24\x1c\xfb\xb0\xe8\xde\xf9\x37\xdb\x09\xaf\x45\x1e\xfb\xde\x1d\x29\x66\xe2\xc3\x66\xdb\x32\x83\xa5\x7a\x04\x27\x97\x13\xe3\x4b\x67\x5a\x4f\x43\x48\x13\x4f\x7a\x86\xc1\xd4\x0e\x57\x9d\x95\x7c\x8c\x6f\x03\x81\xd7\xda\xfa\x9d\xb8\x57\x38\x41\x6f\xc3\xe9\x8e\x43\x4b\x9e\x11\x96\x6f\x5a\x9e\x62\xdc\x3a\xb5\x57\x59\x07\xd3\x16\xf3\xf3\x11\xce\x8e\xb8\xba\x64\xb8\x6d\x21\xbc\x17\xab\x9f\xf7\xbb\x53\x85\xc0\x7d\x4d\xe0\x9f\xf3\x8f\x8c\x09\xbc\x81\xa1\x6a\xd9\x5e\x06\x84\xdc\x83\xd1\xde\x76\x71\xb7\x09\xf8\x18\x21\xb8\xd7\x46\x8f\xc0\x35\xdf\x47\xa9\x62\xbe\xcd\xb4\xd2\x17\x1a\x9f\xfc\xb2\x3d\x88\xc0\x73\xfc\x92\x73\x9b\x7f\xe4\xb4\xb2\xe1\x5d\x8c\xf7\xdd\xa9\x1f\x12\xee\xa1\xdb\xc2\xe9\x83\x1f\x19\xb8\x16\xd5\xb6\xe2\xd2\x77\x7e\x82\xd2\x6b\x86\xe2\xf1\x8a\x2c\xc2\x32\x11\x36\x4b\x99\x5e\x21\x42\xe2\x59\x63\x37\xce\xca\x49\x06\x0c\xe4\xf4\x3e\x3c\xd7\xb2\x26\xec\xd5\x48\xe8\xdb\xdd\xc6\x45\xb8\x7d\x21\xfd\x4e\x87\x42\x0d\x21\xc4\x32\xc0\xf5\xf6\x9f\x22\x42\xa3\xc2\xeb\x8e\xea\xbb\x7e\x84\x4d\xce\x71\xe7\xca\x37\x5e\x26\xc4\x1d\xfb\x96\xee\x77\xd2\x62\x1a\xa2\x4f\xda\x5c\xf8\xf0\x52\x83\x70\xa2\x51\x86\xe6\xdc\x58\x45\x28\x1d\x94\x16\x77\x56\xfd\xc4\xc0\x2a\x4f\xf1\xb6\xbb\x9b\xd5\xe8\x3f\xb0\x97\x1e\xad\x0b\x7b\x62\x4d\xd0\x5d\xbc\xb0\x42\xef\x8b\x3e\xe1\xe1\x90\x63\x84\x3a\xe7\x16\x82\xcd\xc3\x0b\x8f\x0c\x7e\x09\x13\x18\x3f\x7d\x93\x4f\xc7\xae\x24\x04\xab\x7a\x5f\x99\x34\xea\x65\xe0\xeb\xd8\xa0\x9f\xb0\xd5\x2c\x82\x87\x50\x6a\xc8\xd1\x67\xda\xd3\xf0\x41\x21\x5e\xcc\x6d\x67\x3f\x03\x3f\x8a\x33\xdf\x35\x6a\xcc\x27\x1c\x9c\xdf\x73\xfa\xcf\x75\x61\x02\xc7\xe7\xfd\x56\x01\xdf\xe6\x13\x24\xba\x8f\x0f\xf1\xec\x2c\x24\x18\x4d\x8a\x72\x9c\xba\x5e\x43\xd8\xa6\xd1\x64\xf1\x60\xe6\x5e\x26\xcc\xa5\x1f\xfc\x4c\x3f\x5d\x42\x7f\xe1\xd8\x20\x9e\xe9\x1a\x2c\x47\x10\x90\xdc\xa9\xf4\x3d\xa5\x8a\xf0\x56\xfe\xe8\x15\x91\x3f\x4f\x99\xd8\xc4\x9a\x1b\x3a\x55\xc6\xce\x7a\x97\x3f\x50\xd4\x24\x88\x6f\x5d\x70\x64\xf7\xeb\x24\x42\xed\xe4\xf0\x1d\xf1\xfb\x81\x84\x08\x91\x3f\xb9\x59\x7f\x3c\x08\x7a\xba\xa7\x13\x13\xb9\x4d\x09\x0a\xd5\xfe\x8c\x4f\x6c\x2b\x09\xac\x7e\xd6\x21\x1f\x96\x2c\x25\xd8\x1b\x06\x30\x5a\x13\xe4\x08\x3b\x8b\x4b\x85\x37\xe8\xbe\xad\xc4\x2c\x8f\x1f\xc2\xf9\xd7\x8e\x32\x21\xae\x21\xe7\xf7\xff\xe3\xdb\x4e\xa3\xa9\xfc\xdf\x78\x8f\x47\x94\x54\x64\x68\x40\x66\x32\x54\x24\x53\xc4\xbe\x50\xa6\x52\x86\x22\x43\x83\x21\x12\x25\x85\x24\x49\x49\x2a\x95\x88\x54\x22\x32\x25\x24\x99\x33\xdd\xa2\x41\x4a\x51\xc6\x26\xcd\x54\x92\x29\x3e\x9a\x9c\xa5\xb5\xce\x8f\xb3\xd6\x7f\x9d\x47\x5e\xeb\x7d\x5d\x1e\x58\x7b\xdf\xdf\xbd\xbf\x0f\xf4\x7d\xac\x67\xb0\x7e\x57\xe0\x2e\xab\x53\xd7\x09\xf7\x4d\xf6\x69\xeb\xcc\x02\x0b\x06\x2e\x37\x87\x06\x26\x3b\x13\x16\xcf\x12\x0a\x16\x79\x62\x41\xc8\x73\x6a\x9e\x54\x35\xed\x3b\x0b\x73\xf8\xb7\x3e\x0d\x6a\xf5\x23\x24\x73\xf1\x84\xcf\x38\x47\x13\xa0\x6f\xe3\x75\x74\xe5\xf5\x2d\x04\x6f\x9f\x95\xc7\xdc\xb6\x2d\x24\x3c\xbd\xb0\x75\x58\x68\x8d\x36\x21\x3c\xb2\x7c\xc3\xa7\xc7\x93\x09\xd7\x38\x64\x84\x04\xe4\x43\xc7\xbe\x26\xa6\x9e\x6f\x79\xb1\x8b\x20\x58\xbf\x34\xb0\x28\xc7\x94\xd0\xc5\xb3\xa5\x7a\xe5\xc1\xfd\x84\xad\xfe\xde\x23\x9b\x52\xf2\x09\x65\xab\xb3\x0c\x17\x3c\x71\x21\xd8\xbf\x75\x17\xfb\x33\x67\x23\xa1\x22\xcb\xb1\x70\x51\x67\x0e\x61\xb0\xd7\x38\x22\xa7\xf6\x11\xa1\xf5\xa9\x19\xc2\x3f\x54\x12\xae\xb4\x08\x0f\x27\x6c\xaa\x24\xdc\xfa\x64\x6a\x9e\x35\x36\x72\x61\xd2\xda\x0e\xb2\x3b\x12\x06\x16\x26\xd6\xd6\x59\x5a\x13\xf6\x4f\x3d\x27\x12\xfd\x30\x94\xf0\xe1\x49\xc4\xb2\x70\x96\x23\xc1\xd6\xac\xc7\x70\xc3\x11\x6f\x82\xcc\x83\xee\x87\x69\x45\x9b\x08\xf7\x6a\xbf\xef\x1c\xec\x34\x20\x6c\x2b\xd8\x9d\x1d\x1b\x56\x5f\x89\xeb\x5d\x2b\xc4\xce\x8a\x54\x13\x2c\x1c\x54\x4e\x7d\x14\xaa\x26\x58\xcd\x97\xec\xd5\x9e\x5c\x4d\x10\x7a\xd8\x73\x3b\x6a\x6c\x34\x43\xed\x6d\x42\x16\x45\x11\x46\x74\x4a\x4b\x2f\xc8\xdc\x24\x68\x05\x6c\x32\xb3\xaa\x9f\x4d\x88\xb9\x7b\x5c\xa9\xf5\x59\x26\x61\xaf\xf3\x32\x09\x66\xf1\x51\x42\xef\x15\x53\xa5\xfc\x51\x7f\xc2\x2b\x49\x8f\xe7\xa6\xba\x4d\x2c\x04\x0a\x75\xaa\x89\xda\x25\x30\xf8\x6b\xd1\x6a\x98\xa7\x1e\x46\x38\xb8\xa6\x9a\x6b\xd2\x0b\x2b\xc2\x43\xed\xe1\x32\x89\xb9\x0b\x08\xc2\x6f\x64\x3d\xc4\x32\x45\x08\x47\x9d\x36\x14\x39\x1f\xb7\x23\x54\x1d\x3b\x7b\xf7\x47\xa5\x28\xe1\x7c\x97\xf7\xf9\x96\xeb\x6c\x84\xe2\x62\x8e\xec\xd4\x3c\x5e\x82\xd6\xfd\xc1\xb4\x9d\x8a\x4e\x84\x43\x8a\x83\xf7\x7b\x46\xc7\xde\x8f\xb7\x7c\x6e\x0c\x3c\xad\x26\x48\x1e\xf4\xd5\xfd\x57\x66\xd6\xcf\x2e\x7e\x94\x9c\xc8\x60\xc3\xe8\x8b\x99\x96\xac\x5c\x82\xfd\xac\x97\x0a\xfb\x56\x3e\x24\x18\xc7\xe5\xd4\x6b\x76\xe4\x10\x86\xbb\xb5\x0b\xbc\xcf\x3a\x12\x62\x35\x1f\xb4\xfb\xbb\xf1\x11\x7e\xb9\xf1\x17\x7d\xf0\xf7\x22\xbc\x71\x55\xf6\x92\xaf\xd5\x25\x54\xdd\x3f\xbd\x38\x64\xb8\x80\x81\x5f\x6d\x5a\xf2\x4d\x5b\x4f\x42\x44\x69\x8a\x6e\x42\x07\x3b\x41\xc7\x44\xa9\x91\xcd\xe1\x20\x03\xd1\xa5\x4e\x3e\x25\xaf\xac\x09\x47\x4c\x7d\xe2\xe4\x02\x8e\x33\x58\xc3\xce\xa3\xbd\xb6\xac\x8a\xb0\x69\x97\xd0\xe9\xac\xdf\xcf\x08\xd2\xef\xa7\x3b\xde\x88\x28\xa3\xf1\x11\xdf\x50\xf2\x8b\x7f\x90\x70\x3b\xb2\x2b\xb5\x3d\x96\xf0\x65\xf0\x7a\xc2\x3f\xc4\xcb\x7d\x5d\xa0\xd9\xcb\x43\x78\xfd\xc8\xd5\xa5\x9d\x6d\x0a\x41\xff\x42\x48\x83\xd9\x8e\x48\x06\xd3\x45\xf8\x3b\xab\x43\x3e\xb3\x50\x62\x9e\xfa\xa5\xed\x2a\x1f\x41\x8d\x4b\x24\xba\xb6\x3c\x96\x41\x63\x76\xa8\x9a\xec\xdb\xd7\x2c\x1c\x33\xe8\xdb\x76\xc6\x20\x82\xc6\x11\xb5\x2d\xd7\xc8\xf7\xb3\x05\xa1\xf4\x06\x1b\x67\x47\xc7\x30\x0b\x4e\xed\x2b\x56\xae\xf9\x22\x49\x90\x75\xcd\x7d\x99\x5c\x29\x46\xf8\x55\xc7\xeb\x73\x23\x5a\x82\x10\xd0\x7c\x5c\x4d\x7e\xfe\x25\x82\x3a\x4b\xfc\xd9\xb9\x2d\x1c\x04\x99\xcd\x3b\x9c\xd6\x1f\x30\x20\xac\x0e\x3f\x19\x1c\xfd\xb7\x88\xb0\x63\x1f\x47\xee\x03\x9b\x95\x84\xc5\x16\x8c\xfb\xd4\x2c\x63\x42\xfc\x4f\x8f\x8a\xda\x15\x43\x2c\xac\x6b\x60\x33\xe9\xb2\x98\x46\x98\x11\xb2\x9e\xef\x6f\x80\x13\xa1\x95\x37\xa6\x39\x54\x6f\x21\x81\x75\x43\x7a\xd9\x34\xd1\xf5\x84\xfe\xcf\x67\xb8\x1e\x9d\xbf\x41\xd8\xcb\xf9\x44\x6d\xe6\x1a\x81\xb1\x47\xb8\x62\xbd\x12\x9f\x36\x61\x76\xda\xb4\xb0\x82\x83\xa2\x84\x69\x8b\x42\xed\x13\x73\x7e\xb3\x30\xf7\xdd\xec\xfd\x5b\x24\x94\x08\x16\x43\x06\x91\xaf\x56\x1f\x22\xfc\x12\x5f\xf3\xc1\x31\x6a\x05\x61\x73\xd5\x90\x8b\xed\xd7\x48\xc2\xa9\x01\xc3\x8a\x2d\xe7\xfd\x08\xdc\x3f\x7e\xb0\x89\x70\xd8\x12\x66\xad\xcf\x2a\x79\xf8\xc8\x80\x60\x98\x3e\xdf\xcd\xe3\x87\x17\x21\xea\xc5\x0f\x23\xf6\x29\xa9\x04\xe3\x9d\x06\x0f\xd7\x55\x18\x10\x78\x7f\xcc\x99\x75\xeb\x4b\x12\x83\x0e\x8b\x43\x4d\x61\x7c\x29\x0c\x0e\x75\xcf\xac\xfd\xf1\x37\x94\x70\xef\x7b\xaf\x95\xb8\x9d\x2f\xe1\xb3\xd2\xa4\x9d\x9b\xe2\x57\x10\x5e\x73\x49\xb6\xa6\xf9\x45\x13\x1c\x3f\xa8\x18\xf9\x7e\x8b\x62\x20\x5b\x36\xf7\xc6\x15\x87\x18\x42\x51\xb7\x57\x64\xd6\x87\x34\x42\x67\xa6\xa0\xaf\xa1\x7d\x0c\x41\x75\xd7\xf0\x0a\x4f\xb1\x14\xc2\x50\x88\x78\x82\xc4\xaf\xb4\x09\xc5\xc1\x58\xb2\xcd\x44\xa2\x9b\x85\x45\xb7\xf9\x87\xcd\x97\x2b\x13\x86\x8f\x4f\x7f\x2f\x18\xbf\x83\x30\xda\xb3\x3c\x60\xd5\xac\x2a\x06\x2b\xbe\x09\x9f\x73\x26\x51\x1a\xc7\xf6\xc0\x0d\x25\xae\xa7\x95\x09\xad\x0b\x2e\x3a\xa8\xa6\x3a\x13\x3a\x9a\x62\x2f\xce\xdd\x3c\x8b\xa0\x28\x6e\x52\x75\xac\x26\x96\xa0\x12\xbf\x28\x23\x58\xc8\x9b\x50\x29\x21\xd8\x64\x1a\x6a\x46\xe0\x8a\xdf\x76\xe5\x26\x97\x1e\x61\x67\x3a\xe7\x3a\x36\x05\x6d\x82\xdc\xca\x8f\x0a\x7a\x49\x6c\x84\x53\xdc\x76\xbb\x5b\xf2\xf2\x09\x02\xd7\xf4\xa5\x96\x57\x4c\x25\x0c\xbc\xb0\xdf\x55\xbd\xaa\x9f\x85\xa8\xaf\xde\x7c\x59\xcb\x54\x08\x62\x45\x7a\x17\x73\x56\xd9\x10\x2c\xcb\xb4\xb5\x34\xb7\xf2\x11\x52\x83\x04\xb7\xf7\x72\x6b\x12\xb0\xfa\xe4\xf4\xe7\x41\x59\x84\x32\xb1\xcf\x1f\x0b\x78\xca\x09\x69\xcd\x1a\x71\x6d\x63\xa5\x5f\x54\x7f\x63\xd8\x60\x12\xc1\xc6\xfe\xd3\xb2\xc9\xab\xaf\x11\x2a\x33\xfa\x2f\x1d\xdd\x99\x4c\xb8\x10\xbd\x7e\x26\x23\x33\x75\x02\xcc\x1a\xaf\x05\x36\x71\x48\xfd\x2f\xec\xf9\xb6\xce\xe3\x1c\xef\x24\xc2\x8a\xcb\x8b\x3e\xb6\x87\xc8\x11\x7c\x4e\x5e\x69\x9e\xfe\xc0\x8e\xc0\x0c\xc9\x4f\x31\x3e\x4c\x84\xae\xdf\xac\x9e\x60\xf2\x25\xdc\xd8\xf9\xa4\xd0\x39\x65\x2d\x41\x57\x73\xd5\xb2\x5d\x1a\xfa\x84\xdf\xb2\xb9\xd3\x4d\x53\x89\x90\xb2\x48\x7d\xca\xf6\xbb\x7c\x84\xc6\x7d\x4b\x02\x67\x2f\x33\x27\xec\x88\x0b\x59\x2b\x76\x9a\x97\xa0\x58\xda\x58\x18\x23\x9a\x4e\x28\x7f\x73\x75\x90\x91\x48\x27\xec\x31\x94\x99\x3f\xa3\x69\xa8\x12\x8d\x33\x1c\xbd\xa6\xda\x89\x11\x1c\x17\xbd\x39\xeb\x32\xdb\x8c\x70\x42\xa8\x33\x2f\x02\x7a\x84\xbc\xcf\xde\xc2\xb3\x78\x17\x12\xda\x5b\xf7\x2c\x96\xbe\xc7\x41\x88\x78\xc2\x7f\xee\xe3\x64\x75\x42\x77\xf9\xf9\xcf\xfe\xfd\x03\x95\xb8\x7c\x35\x4a\xed\x5b\x90\x3c\xe1\xa2\x2e\xbb\x21\x97\xec\x72\x42\x4e\x42\xd8\xed\x6c\x41\x57\x06\x3e\x4a\xb1\xd3\x6f\x0d\xd7\x10\x16\x76\x8f\x46\x97\x8e\x21\xc6\x7c\x9f\xb9\x4d\x64\x36\x21\x43\x68\x97\xbc\xa2\x7e\x1d\xa1\x40\xcf\xd2\xd3\x33\x73\xd7\xff\x82\xca\x9c\xb8\xce\xdd\xc6\xfa\x84\xd1\x70\x26\x3f\xcc\xfb\x22\x61\xc6\x97\x4b\x6f\x27\xe5\x1c\x25\x28\x19\xcb\xb2\x65\x97\x1d\x24\xc8\x08\x5f\xd4\xd9\x7f\x61\x05\xa1\xb4\xf0\xf1\xe9\xac\xfd\x41\x84\x00\x09\x07\x0f\x49\x33\x27\x82\xc6\xbb\x76\xa1\xc4\x35\xca\x84\xad\xd3\x46\xaa\xfb\x56\x5b\x11\xb4\x67\xcf\x28\xdc\x35\xf6\x7c\xb1\x5b\xf7\xb7\xc8\x1c\xd4\x26\xbc\x55\xb3\xcd\x9a\xde\x7a\x8d\xb0\xe3\xcf\xa4\xbe\x58\x0d\x16\x61\x45\xe2\x53\xb1\x8a\x23\x9e\x04\x49\xa3\xa1\xca\xbc\xe4\xd5\x84\xcd\x6f\xe5\xb6\x88\x2f\xbc\x48\x50\x88\x97\xe5\x52\x76\x59\x48\x98\xbe\x4c\xd4\xaa\x73\xe1\x7c\x42\x5f\x8f\xe4\x42\x69\xdb\xab\x84\x43\x9c\x6a\x77\x2a\x3e\xa6\x11\xbc\x1f\xdc\x0e\xfa\x6b\x97\x4e\xd8\x6d\x7f\x6c\xd7\xdf\x1c\x3b\x42\xb3\xda\xac\x05\xa9\x81\xca\x84\x80\xee\x78\x30\xdf\x0a\x08\x66\x4f\x3c\x16\x14\x72\x14\x12\x76\x1a\x49\xcd\x5b\x67\xfb\x98\x70\xdc\x86\x99\xf5\xd7\xa3\x98\x90\x36\x25\x6e\xee\x9f\x69\x39\x84\x98\xfd\x66\x0f\x60\x12\x40\x10\x7e\xe6\x7f\x90\xe3\x91\x0a\x81\xed\x69\xed\xd4\xae\xdb\xcb\x09\x75\xe9\xa7\x82\xfc\xd7\x79\x10\x28\xe4\x4a\x8e\x2d\xc7\x56\xc2\x0c\x59\x8b\x3a\xb9\xef\x4f\x08\x33\xc4\x42\x2c\xdf\xbc\xd4\x25\x4c\x3f\xb2\x2e\x97\x9d\x2f\x8c\x41\xd7\x6b\xa9\xbd\xdc\xbb\xce\x13\xe6\xd9\xcb\x9c\xbe\x75\xa6\x90\xf0\xfe\xd1\x4c\x6f\x7d\xee\x77\xac\x91\xc2\xf9\x09\xbc\x1e\x7a\xf4\x7f\x7f\x62\x55\x01\xfa\xc2\xcf\x76\xb3\x70\x96\x02\xaa\xf6\x3a\xf2\x12\x1c\xeb\x5e\xf0\x37\xa8\xb7\xb2\x70\x4a\x26\x73\x55\x5a\xbb\x00\x8d\x43\x64\x4e\x9e\x8d\x97\x4e\x6b\x25\x12\x0e\x3f\x23\xef\xb8\x64\xc2\x8f\x0f\x83\xa9\x62\x33\xaf\x13\xd2\xd8\x16\x97\x3a\xe4\x94\x13\x8c\x3e\x08\x3d\xb4\xdc\x7b\x9d\xf0\x3d\xb4\xbe\x58\x61\xce\x30\x6b\x1c\x1f\xdc\xe2\x8e\xd8\x5e\x48\x23\x14\xfe\x7a\xb3\xa2\xe9\xb4\x26\x61\x44\x63\x91\x6a\x43\x9f\x26\xe1\x8a\x21\xc7\xfd\xc3\xa1\x27\x08\xeb\x06\xe4\xf4\x9c\x07\x77\x11\xd8\x9a\x4f\x36\xb8\xcc\xb0\x23\x58\x70\x31\xb1\x03\x57\x3c\x09\x65\x7f\xd9\xfa\x83\x4b\xa4\x08\x73\xaa\xfa\x4e\xde\xcc\xbe\xc1\xa0\xce\x2e\xc6\xc8\xe1\xd2\x0d\x06\x36\xfb\xea\x27\x75\xab\x56\x11\x02\x47\xbb\x5d\x1f\x7c\xbc\x4b\x70\xaf\x9d\xfc\x7c\xca\xeb\x64\x82\xc5\x70\x74\xc7\x31\xce\x1a\xc2\x63\x8f\x6b\x4f\xfe\x74\x24\x13\x94\x2f\x0b\x56\x7f\xef\xab\x21\x74\x9c\x7e\x3d\x67\xd7\xb7\x59\x84\xdf\x0e\x4a\xbf\x38\x06\xee\xb0\x10\x55\x0d\xb9\x34\x15\x7b\x1a\x87\xf6\xf0\xe1\xb3\x8b\xd2\x35\x08\xb3\x3e\x5b\xea\xb4\x66\x1b\x13\xca\xb1\x46\xc1\xe4\xd0\x1c\xc2\xcb\x1e\xd1\x5d\x35\x96\xbd\x2c\x10\x8f\x68\x97\xe2\x10\x07\x8d\xe3\x2a\x9f\x66\x68\x9c\xc3\x2d\x16\x9c\x13\xd5\x8a\xe6\xbb\x7b\x13\x72\x45\x0f\xb2\xf2\xe3\x1c\x09\x45\x4f\x7a\x1d\x4c\xfc\x59\x84\xc7\x99\x37\xd4\xbf\x5f\xaf\x20\x04\xca\x6c\xd8\x95\xc4\xce\x49\xb8\x10\x68\x6d\xf0\xb6\x54\x9d\xf0\x51\x32\xab\x37\xc6\x46\x9b\xb0\x75\xd5\xef\x04\x3f\x03\x6e\x02\x47\xd4\x73\x8e\xeb\xcb\x89\x50\xa4\x7c\xb9\xc5\x24\x73\x19\x41\x6f\xf1\xbb\xf3\x9d\xe5\x5f\x58\x10\x39\xd8\xe7\xd4\x64\x34\x93\xc6\x11\xd5\xb3\x7e\x8b\x2d\xef\x27\xd6\x38\x2a\x39\xdc\xec\x2b\x7e\x08\xd3\x38\x0a\xb3\x1f\x1a\x94\xcd\x9e\x3c\x01\x66\x72\x47\x52\x2b\x78\xa4\x26\x20\x50\xd6\xef\xe1\xa3\xc4\xe7\x95\x10\x5d\x18\x5e\xb3\x6a\xb2\x10\x81\x4f\x5b\xf6\x8f\x77\x54\x04\x21\x21\xdd\x7a\xa4\xd4\xe5\xcc\x84\xb2\x56\xc2\x9d\x93\x77\x41\x22\x61\xe4\xcc\x40\xef\x75\x8b\x7c\xc2\xe9\xdf\xf3\x17\x1f\x1e\x74\x21\x24\x1d\x39\x31\x4d\x62\xbb\x1b\x61\xee\x92\x51\xab\xee\x85\xdb\x08\x9c\xab\x5c\x6b\x4e\x4d\x5f\x4d\x48\x10\x0e\x2b\x88\xdf\xb1\x8f\x70\x8f\x4f\x22\xd9\x75\xb2\x21\xe1\x70\xe1\x5a\xae\xc7\x11\xd3\x09\xbb\xce\x1b\xbd\x4c\x5d\x75\x8f\xc1\xa9\x9c\x93\xfb\xaa\xd6\x8f\xb2\x30\xcd\xa9\xe4\x8d\xe3\x42\x03\x42\xb1\x96\xa4\xc8\xbe\x1a\x7d\xc2\x54\x97\xdf\xbf\xbe\xa5\x2b\x12\x26\xb7\x7d\xfa\xd1\x64\xe5\x43\x98\xdf\xf5\xba\x23\xd0\x8a\x93\xe0\x1a\x95\x77\xd7\xbf\x41\x9f\xf0\xf8\x15\x8f\x03\x3f\xef\x6e\x06\xed\x69\x92\x99\x27\x06\xe6\x12\x5a\x4c\x1d\x8f\x3a\x4a\x5b\x10\xf4\x5c\x96\x2b\x5b\xae\xca\x20\x98\x2b\x7d\xdd\xa6\xbb\xd1\x9e\x60\x95\x99\x25\x97\xf9\x71\x01\xa1\xf4\xbd\x9c\xf0\x6a\x83\x6d\x84\xab\xe5\x4a\xc2\xef\xf7\x88\x13\x6e\xb0\x8b\x98\xec\x89\xfd\xc9\x42\xdd\x9c\xa6\xb5\x82\xab\xf9\x09\xa2\x47\x8c\x78\xd9\x87\x26\x11\x84\x55\x82\x7a\x6f\xad\xcc\x65\xd0\xf1\xe5\xea\xc1\x05\x55\x6e\x84\x32\x95\xc8\x5f\x0d\x8d\x6a\x84\x2d\x12\xba\x5d\xcb\x95\xcf\x11\x96\x0b\x34\x71\xc7\x47\xb9\x10\xd4\x39\xbb\x5f\x9e\x8e\x36\x26\x08\x88\xfc\x68\x3c\x18\x1e\x4d\x38\x6d\xfc\x63\xbb\x6e\x9d\x3e\xe1\x6e\x3a\xdf\xa6\xba\xdb\xaa\x04\x5b\xe1\xa5\xdf\xcd\xc3\x17\x13\x5c\x57\xf6\x2d\x1e\x1a\x5e\x47\xc8\x5b\xfd\x29\x8d\x4b\x79\x2d\xa1\x87\xf3\xfd\x1f\xe6\x65\x2c\x21\x7a\x99\xb9\x11\x7f\x96\x09\x61\xda\x34\xd1\x20\x1e\xb7\x37\x2c\x4c\x0d\x0a\xda\xe4\x63\x19\x43\xc8\x12\x9a\xbc\x23\xb1\xc5\x96\x20\xff\xd3\xf2\xa1\xef\xf9\x0b\x84\xc7\x73\xe3\xf9\xcd\x9f\x95\x11\x16\xdf\x11\x49\xf8\x87\xff\xca\xf2\xac\xbd\x21\x17\xfa\xeb\x08\x03\x7b\xc3\x56\x78\x9f\x4b\x23\x8c\x0c\xd6\x78\xbf\x37\x68\x20\x78\xcf\x37\x5b\xff\x6f\xc4\xbe\x9d\xfd\xe6\xcf\x25\x03\x2c\xcc\x9f\xf4\xbd\xd5\x42\x2a\x89\x90\x8f\xc9\xfb\xbd\x8a\xb6\x12\x3a\xbf\xb8\x14\x7d\x96\x3e\x3c\xa1\xfc\x87\x82\xdf\xed\x2f\x66\x07\x0b\x12\x0e\xdd\x2e\x35\xb4\xaf\x5e\x47\xf0\xb3\x36\xca\xbb\xff\x61\x1d\x21\x08\xbf\x8c\x79\x5e\xac\x24\xbc\x88\xa8\xdb\xce\xe9\x29\x45\xe8\x7e\x10\x9f\xd3\xc6\xbb\x80\x80\xfa\x2e\xa5\x48\xe6\x5d\x25\x78\x14\xdd\xde\x7d\x96\xb0\xa5\x71\x70\x76\x67\x5d\xb0\x94\x63\x9f\x00\xb3\x6c\x39\x25\xa9\x05\x53\x08\x5f\xcf\x2f\x4a\x5c\x9d\xc5\x45\x18\xf9\x51\xad\x37\x7f\xed\x5d\xc2\x50\x98\x6f\xcb\xa9\x67\x42\x04\x73\x55\xc7\xb2\x1b\xd6\xda\x04\xa9\x55\x73\x02\xee\x4d\xdd\x4f\x98\x7b\xa2\x73\xd8\x65\xf4\x39\x61\x43\xd9\xd7\x55\xff\xca\x7d\x51\xdd\xc5\xb9\xd3\xd6\x13\xde\x6a\x94\x85\x9e\xe4\x7b\xcb\x82\xf3\xe4\x2d\xee\x53\x57\x6a\x13\xe6\x75\x35\xc6\x35\xbc\x36\x25\x08\xf7\xa4\x67\x73\xfb\x12\x61\x2a\xf3\x63\x3a\xbb\xce\x08\x0b\xda\xaf\xef\x35\x7b\x34\xec\x20\x0c\x1c\x7d\x24\x3c\x1a\x34\x93\xf0\x7b\xd4\xfe\xd7\xc2\xef\x26\x04\xac\x09\xda\x11\xd5\x24\x4b\x10\x4f\x3b\x1e\x10\x62\xa8\x46\x98\xc6\x4d\x47\x37\xdc\x33\x24\xfc\xae\x2a\x3e\x7d\xee\x6d\x3a\x83\x9f\xca\x42\xdf\x64\x4d\x9e\x12\xda\xdf\x2a\xed\x88\xbe\x72\x96\x70\xe1\x53\x86\x74\x96\xf8\x73\x82\xfd\xde\xae\xfc\xac\x97\x55\x84\xd8\x27\xf6\x03\x26\xdf\x72\x08\x9a\x57\x3d\x79\x7e\xdb\xc5\x10\xee\x37\x6e\x4e\x4f\x59\xb8\x85\xe0\x93\xed\xa3\x5a\x6a\x2b\x44\xd8\xea\xb9\xca\x5d\xd2\x34\x93\x90\x13\xb8\xaa\x6a\xc3\xba\x4c\xc2\x14\x17\xb9\x5a\xb7\x9b\xb6\x84\x61\x97\x84\xcd\xd6\x4b\x36\x4f\x28\xda\x82\xfd\xe7\x7f\x27\x7f\x66\xc1\x34\xe3\xdb\x1e\x19\xb5\x6a\x82\xfe\xfa\x5b\x9b\xad\xfa\x4c\x08\xc1\xc7\xa1\x70\xa4\x5a\x86\xe0\xd2\xd5\x15\x14\x39\xc3\x99\xc0\xdd\x31\x3d\xb1\xa1\xd1\x82\xa0\x31\x55\x22\xe9\x4d\xd7\x4d\x42\xe2\x85\xe1\x9e\xd7\x3d\x0b\x09\xce\x21\xb2\x3a\x19\xf6\x67\x08\xa9\x1c\x5b\xcf\x5f\xfa\x9c\x49\xd0\xe8\xbd\xfe\x55\xf4\x40\x39\x81\x91\xf6\x97\xa8\x7a\xe9\x4a\xa8\xda\x1a\x1c\xb6\xa6\xcd\x9d\x70\xf7\x77\x16\x23\xf0\x7c\x1b\x21\xad\xf7\xd5\x7c\xb9\xef\xfb\x26\x8c\x64\x44\x5a\xaa\x55\x3a\x2e\x10\x92\x1c\x2b\x1b\x77\xb2\xc0\x42\xef\xc6\x60\xc7\x34\xa9\x7c\x06\x6c\xee\x87\x33\x5c\x83\xf7\xd2\x38\x0a\x4a\x1c\xae\xf8\xbe\x1b\x62\xc1\x5f\xc0\xe8\xc7\x9a\xb1\xf7\x61\x97\xf0\x74\x9f\xcd\x25\x0b\x09\x66\xe6\x33\x8c\x47\x52\xf9\x09\x25\x29\xa7\xa2\x86\xe3\xf9\x09\xee\x3d\xf3\x32\xea\x26\x1d\x26\x6c\x52\x59\x9a\x73\xf7\x56\x19\x83\xbb\xd7\xf3\x47\xfc\x05\x16\x11\x5e\xea\xbd\xd4\x48\x79\x5c\xc9\xc0\x53\x22\x7f\x8a\xd9\x9c\x6a\xc2\xde\xef\x4a\xb1\xf7\xaf\x38\x10\x8a\xf4\xaf\xec\x8a\xd4\xbc\x47\x68\x2c\x6d\x39\xd6\x35\x06\xbd\x83\x76\x77\xfe\x8d\xd8\x4f\xce\x91\xf0\x98\x21\x40\x28\x97\x2e\xf4\x6d\x51\x6e\x26\x58\xf2\xd9\x53\x6a\x59\x12\x83\x2c\xce\x73\x1c\x4f\x15\x6a\x08\xd3\x4e\xed\x17\xfd\x7a\xff\x01\xe1\xf0\xfa\x62\x57\x5f\x4e\x3f\xc2\xdc\xf0\x67\x3c\x0f\xd7\xe4\x10\xf4\xef\x06\xdd\xff\x87\xff\x4a\x4f\x95\xa9\x9a\x94\x4c\x2d\x83\xb2\xe5\x0f\x0d\xb4\x55\xee\x33\x30\xce\x6c\x9f\x1a\xe4\x60\x4d\xe3\x88\xff\xe9\xe2\x97\xeb\x73\x96\x60\x30\x2a\xec\xb4\x7f\xb5\x11\x81\x4f\xac\xea\xa1\xf2\x67\x73\x42\xc6\xe4\x78\xc5\xc7\x11\x1c\x04\x15\xbe\x3f\x6c\xc2\xee\x45\x84\xa1\x0d\x57\x44\xdb\x68\x0e\x61\xcb\x85\xeb\x93\xf7\x76\x96\x10\x16\x7e\x0f\x63\xdb\xfc\x79\x22\x86\x76\xd9\x44\x9a\xce\x34\x25\x84\xa5\x3d\x6e\x17\x7f\xb0\x6e\x02\x74\x92\xc4\xeb\x0d\xd5\x77\x10\x0e\xfa\xf1\xec\xde\xdb\xc2\x10\xc2\x36\xb0\x37\xf8\x87\x5a\x11\x4c\x06\x63\xee\x29\x89\x2e\x27\xbc\xba\x50\x77\x5f\x7c\x96\x29\x21\xdf\x68\xed\x81\x9e\xda\x1c\x06\x76\xaa\x2b\x5a\x13\x1b\xd7\x13\x76\x0c\xd4\x88\xae\x3b\x54\xc3\x60\x99\x40\xf9\x56\xdb\x4e\x57\x82\x76\x4b\xfa\x9f\x0d\x6b\x5f\x12\xe6\xc4\xed\x89\xe0\x52\xfe\x44\x90\x16\x7f\x3d\x55\x83\xa7\x8e\xc1\x65\xd1\xf7\xae\x5d\xd3\x5e\x10\xfc\xae\xef\xd4\x3d\xda\xf5\x94\xc0\xeb\x77\x86\x51\x74\xc9\x20\x54\xb3\x9f\x1f\xba\x19\xd4\xc0\x80\x83\x65\xf3\x40\x77\xf3\x6d\x82\x9e\x86\x65\xa3\xd3\xad\x0f\x2c\x44\x1d\xff\xb2\xcf\xa9\x4f\x9a\xc6\xb1\xc3\x35\x5a\x41\xae\x62\x3e\xe1\xf4\xf9\x94\xae\x9f\x0a\xbd\xac\x71\x7c\xd8\xbf\xa9\x79\xf3\xa9\xf9\x04\x1e\x41\xc9\x9f\xcb\xbb\xe7\x11\x2c\xd8\xf1\xbe\x70\xd9\x4c\xc2\x26\xf9\xba\x0a\x25\x23\x69\xc2\xef\x95\xca\x1d\x66\x2d\xeb\x08\x21\x3f\xfb\x3a\x0f\x5a\x5a\x10\xa4\xc3\x0c\xee\xd7\x18\x5b\x13\xe8\x88\x41\x84\x9b\xef\x1f\x16\x64\xfd\x2d\x16\x15\xb6\xd5\xd0\x38\xb8\x45\x1c\x4b\xe7\x7a\xb5\x12\x18\xe5\xe5\xb3\xff\x95\xff\xb0\x4a\x61\xfb\xe5\xaf\xfb\x2b\x09\xea\x0f\x3f\x25\x36\x45\x95\x13\xb8\x42\xdc\xf3\xbb\xc7\x8a\xce\xb5\x75\xa2\xbb\xfd\x4b\x27\x14\x9b\xac\xd5\xdf\xdc\x12\xee\x10\x9c\x5a\x2b\xf9\x32\xe3\x3f\x32\xe8\xcf\x08\x92\x88\xbe\xfa\x91\x81\x57\xed\x21\xe1\xa1\x17\xbd\x84\x3d\x1d\xbc\x8f\xa7\x3c\xac\x22\x3c\x7a\xfd\xf0\x7c\xe0\xd8\x48\x5f\xd8\xef\xbb\xa3\xc0\x6d\x82\x8b\xc0\x3a\xb5\x4f\xeb\x0b\x08\xc5\x11\x83\xb5\x2f\x2d\xea\x08\xa9\xbd\x85\xe1\xfa\xd3\x22\x08\x5f\xb2\xfe\x3a\x6a\x6b\x57\x11\xf4\xd6\x6e\x64\x2d\x0e\xbd\x43\x28\xbe\x1d\xbc\xcd\xad\xb1\x84\x60\xfd\xee\x7c\x9e\x48\x73\x09\x81\xf1\xdf\x90\xd4\xce\x14\x13\xf2\x8c\x05\x7b\x83\x14\x5e\x13\xe6\xb8\x84\x57\xe9\x2f\x2b\x24\xf4\x06\xdd\x91\xd9\x32\xb6\x53\x9f\xe9\x58\x98\x7d\x3d\x8f\xc0\x1d\x1b\x64\x3a\xe9\x6a\x1e\x41\xb5\x51\x8e\x9d\x6d\x0c\x87\x9f\xbd\x75\xd2\x6c\x7c\xc5\xc0\x37\x82\xa3\x6f\xcd\xd8\x8e\xa6\xd0\xf4\x1f\x66\x05\x79\x84\xcb\x4d\x12\xde\xff\x7e\xcb\xbc\xed\xd9\xf1\xe6\x39\x99\x84\x8f\x61\x2b\x1b\x95\xb7\x67\x12\x4a\xda\x97\x6c\xf9\x6e\x9e\x4d\x98\xff\x89\xd7\x7a\x87\x7b\x26\xe1\xf3\xdc\xee\xf6\x11\xd6\xc4\x9d\x84\xd0\x1f\x69\x1c\xe7\x4a\x08\x92\x49\x4d\x91\xa9\x8f\x4b\x08\x8f\x56\x45\xb2\xc7\xcb\x8e\xbd\x7b\x17\x35\x8a\x89\xb5\x94\x10\x42\xcd\x56\x46\x79\x06\x3e\x22\x14\xed\x77\x1b\x52\x6a\x18\xfb\x73\x72\x98\xb0\xd2\xde\x0c\xc2\x70\x61\x9c\x58\xd3\xc3\x74\x42\xb6\x5b\x89\x93\xea\xda\x0c\x42\xeb\x81\x43\x87\x73\xfb\x32\x08\x79\xf5\xd2\x8b\x33\xe5\xaf\x11\x7e\xd9\x2c\x35\x76\xfc\x3e\x89\xe0\xd9\x71\xd1\xe7\x7e\x41\x1a\x61\x8b\xbf\xe9\x87\xdf\x73\xa2\x19\x68\xde\x0f\xf4\x99\x3c\xf6\x52\xaa\x98\xe4\x77\x1f\x41\x21\x01\xef\x36\xc8\x78\xff\x5a\x47\x28\x7a\xe5\xd8\xe4\x7d\xc0\x98\xb0\xab\xc5\x58\xdb\x6d\x60\x32\x61\xd6\xaf\x1d\x42\x3f\x7f\xb1\x11\x12\xea\xae\xee\xb9\xc3\x9f\x44\x78\xbf\x5a\x57\xde\xc0\xdc\x66\x02\x04\x36\x7e\xac\xfe\x6d\x6e\x47\x48\x58\xfb\xa4\xe1\xc3\x8d\x0d\x04\x3b\xe3\xf6\x44\xb1\xde\x95\x04\xfe\x8c\x54\xfb\x77\x3f\x2b\x09\x8f\xfd\xa8\xab\xfc\x5b\x25\xe1\x43\xce\xb5\xd3\xc9\x2f\x6f\x4c\x18\x49\x6a\xbd\x1a\x55\xbc\xbc\x9a\xf0\x7c\xe3\xae\x44\x19\x61\x71\x82\x9b\xeb\x95\x21\x4b\xc3\x24\x06\xdf\xbf\xd6\x7f\x75\x1a\x49\x24\x68\x6d\x7b\xa2\x65\xfb\xc4\x90\x70\x3d\xf2\xf8\xcd\xfb\x1e\x69\x84\xbb\x69\xce\xa2\x3f\x76\xa4\x11\x78\xd9\x3d\xb8\x5b\x5f\x58\x12\x66\x2d\x4b\x57\xbb\x13\xee\x4e\x18\x1a\xe8\xd6\xa9\x12\xb7\x21\x38\xe8\x38\xca\x18\x1e\xb0\x22\xe4\x58\xcc\xbb\x55\x91\xe4\x48\x10\xb3\xe3\x7e\x9a\xf3\xd3\xf2\x7f\xe1\x70\xf7\xea\x1b\x19\x39\xea\x04\x5d\xde\x26\xd1\xc6\x2e\x49\x42\xfb\x31\xc7\x62\x7f\xd9\x68\x06\x66\xcd\xdb\x07\x8d\x7a\xca\x09\x06\xb3\xfd\x22\x9a\xa2\x3b\x08\x07\x34\xcf\x6c\x8b\xbb\x53\x42\x18\xf6\xed\x0b\x8b\x1e\x2c\x27\xa8\x18\xd4\xbf\x0e\xdb\x2d\x47\xe8\x5e\xab\x1f\x97\xc6\xfb\x8b\x85\x44\x0b\xee\x97\xe6\xcd\xea\x04\xc9\xfa\x72\xe7\x5b\x5c\x1c\x84\xa9\xa5\xf3\x66\x1f\x65\xa5\x13\xa4\x7c\xd5\xe2\x6f\xf0\x1a\x12\x1c\x74\xbb\xf8\xc3\x67\xb3\x13\x12\xde\xb4\x24\xef\x7e\xb9\x9f\xe0\x74\x4e\x44\x5d\x9b\xb9\x49\xe8\x54\x90\xb9\xed\xfa\xb0\x9b\x85\x4f\x7b\xfc\x78\xbc\x8f\x1f\xa5\x71\x70\xd8\x06\x04\xde\x98\x13\x53\x89\xec\xc0\x6b\x67\x76\x2d\xb1\x24\xe8\x67\x15\x2f\x5a\x2d\xe9\x4d\xd0\x29\xb6\x78\x64\x5f\x22\x46\x78\x34\xfb\x45\xe7\x94\xc7\xae\x84\x9e\x14\xe3\x49\x32\x2b\x2c\x08\x37\x2a\x8f\x8d\xd8\xda\xaf\x20\x1c\xc9\x79\xfd\x56\x68\xd2\x9c\xff\xfb\x1f\x5b\xd1\x0c\x66\x73\x69\x1e\xcf\x28\xbb\x48\xe3\xf8\xf2\x37\x79\x6a\xf8\xd7\x8b\x84\xf9\x8a\x93\x0b\xfa\xb3\x56\x12\x5e\x7e\x19\x5e\x75\x2b\xed\x17\x6b\x1c\x4f\x6d\x3e\x1d\x58\xa4\xca\x43\x23\xaf\xcc\x9e\x2b\x78\x58\x10\x9c\x72\xcb\xd7\x9c\xfd\x2c\x4f\x30\x18\x51\xb8\x9d\x2b\x34\x9b\xf0\xf4\x59\x93\xd4\x68\x76\x37\x0b\x75\xfb\xf8\x97\xef\x39\xe9\xce\x80\x35\xa9\xb9\x21\xdf\xd9\x86\xb0\xa0\xe9\x0f\xe7\x2b\x9e\xb5\x84\xd7\xe7\x96\xd5\xde\xf0\xe1\x23\xd8\x89\xff\x64\x3f\xb1\x51\x93\x60\x35\xdd\x58\xb0\xc4\xf4\x37\x0b\xc7\x04\x6c\x36\xc7\xae\x8c\x66\xa0\xd7\x69\x13\xfc\xf5\x92\x1e\x21\x6c\xe7\xb9\xf2\x9c\x79\xb3\x08\x3b\xcd\xd2\xbb\x97\x4b\x59\x10\x5a\xae\xf7\x9d\x69\x68\xc9\x25\x2c\x9d\xb9\xf7\xa3\x85\x82\x0a\x61\xa1\xc2\x67\x73\xeb\x95\x05\x04\x31\xc7\xa8\x88\xa3\x41\x01\x04\x83\x65\x4a\xdd\x57\x56\x6c\x1b\x3b\xf8\xe7\x1d\x3b\xf1\xc6\x90\xd0\xc8\xc6\x23\x10\xbe\xe8\x27\x0b\xbc\x57\x46\x7b\x39\xe4\x0d\x08\x39\xfd\x3a\x93\x1d\x0f\x08\x12\x9e\xc6\x66\xdc\x5a\xa1\x7e\x88\x20\xad\xfa\x8e\xe7\xcb\xd7\x23\x04\xb3\x88\x26\x63\xa3\x2f\x07\x08\x2a\x47\xd4\x0c\x1d\x2b\xf5\x09\xc7\x7a\x38\x8c\x8e\xff\x9d\x49\xb0\x2a\xbb\x2b\x68\x55\xb1\x92\x20\xf5\xee\xfb\x99\x4d\x26\x2c\x42\x8b\xe7\xb9\x19\x97\x3b\x33\x18\xac\xe7\x72\x4f\x08\xfb\x72\x9f\x85\xf3\x41\xaf\x3a\x56\x5f\xb1\x26\xa4\x71\x8a\xbf\xb8\x77\xcc\x96\xc6\x8b\x88\xcb\x22\x97\xfc\x11\x61\xc2\x61\xa7\xf9\xd3\x56\xfc\x59\x48\xb0\x5c\x5a\x6c\xac\xb5\x44\x95\xb0\xb6\xbf\x7c\xa3\x8a\xe5\x10\x0b\x6f\x2c\x5d\x39\x59\xfb\x56\x10\xba\x55\xbe\x08\x4d\x19\xf5\x26\x58\xed\x4f\x1e\x95\xdc\xa6\x42\x90\xba\xe5\xaf\xcd\xd8\x18\x11\x3e\x7d\x2f\x55\xb4\x49\x12\x25\x54\x45\x44\xab\x94\x7d\xfb\xcd\xc2\x79\xbb\xea\x8b\x2b\x3b\x67\x11\x42\x24\x07\x1e\x5d\xab\x56\x21\x5c\x3c\x56\x48\x5d\x7e\x12\x84\x1b\xdf\xa4\xfd\x02\xbb\xae\xb2\xb0\xf1\xf9\x8c\xdb\xcb\x7f\x49\x13\x06\x0c\x12\x9a\x9c\x4a\x3c\x08\xf9\x76\xcf\xdf\x6d\x53\x69\x65\xb0\xfa\x9e\xe0\xac\xc9\x33\x06\x58\x98\xd9\x3c\x75\x48\xe3\xe2\x75\x06\x1e\x93\x37\xf3\x1f\xdb\x78\x88\xa0\xde\x79\x63\x44\xf3\x7b\x04\xc1\xb0\xe3\xdd\x6f\x85\x95\xf5\x0c\x16\xd8\x95\xec\xdb\xcb\xb9\x81\x60\x79\x4e\xb2\x37\xbc\x5f\x95\x10\xe7\x3e\xf3\x4c\x80\x8a\x3a\x21\xdd\xe5\x00\xc7\xc7\x5a\x1d\x42\x6e\xf3\x4f\xfb\x69\x2f\x0d\x09\x7e\xb7\xfa\x3d\x9f\xf7\xcb\x10\x62\xda\x4f\xb9\x31\xb2\x85\x0c\xe6\x1d\xd3\x1b\xd5\xfa\xa5\x48\x30\xdd\x3d\x4d\xc2\xe8\x94\x37\x81\xdb\x48\x21\xf9\x5b\xa0\x0a\xe1\xc9\x3b\xf5\x17\xca\xa2\x02\x84\x73\x6b\xae\x38\xbf\x12\x95\x22\x88\xbc\xcb\xd0\x17\x99\x6d\x41\x28\xc8\x39\x97\xaa\xf0\xbe\x86\x35\x8e\xbb\x2c\x91\xc5\x66\x3f\xd9\x08\xdb\xb6\xbf\x38\x24\x52\x53\xc3\x60\xe8\xe6\x76\xcd\x07\x93\x18\x82\xb3\xd2\xb1\x6f\x3f\xd8\x2a\x08\xa6\xc3\xc7\xef\xac\x9d\xa4\x4c\x60\x6d\x93\x3a\x5d\xc6\xd1\xc7\x02\x4f\xe3\x6f\x43\xcf\x46\x13\xc2\xd7\x0d\x97\x7e\x4e\x7f\xbf\x9a\xb0\x37\x22\x7a\xdf\xd1\x07\x7e\x84\xd6\x07\x87\x1d\x4e\x6e\x0c\x26\xdc\xd2\x7e\x66\x7b\x73\xa6\x3a\xc1\x35\x6e\xe8\x89\xa1\xa4\x39\x61\x01\x5b\x67\x27\xff\xe8\x56\x82\xc6\x5a\xdd\x53\x93\xb4\x24\x09\x39\xef\xd6\x73\xa7\xe8\x9d\x20\xf8\xbd\xf8\x94\x94\xe0\x75\x82\xa0\x94\xbf\x46\xde\x86\x23\x94\x60\x28\x2e\x32\x5d\x90\x7d\x3b\xc1\x22\x42\x87\xdf\xda\xd1\x82\x20\x34\xb3\x74\x49\xe7\x6b\x47\x42\xcd\x05\xb6\x25\x3e\xda\x2c\xc2\x73\xfd\x77\xe6\x8c\xf3\x6c\xc2\x80\xcd\xbc\x8a\x69\x5c\xf6\x84\xb8\x9f\xa7\x55\xb8\x6a\xef\x10\xb2\x14\xd4\x2b\x6a\x73\xf2\x08\x31\xcd\xd7\xff\xca\x4e\x2b\x23\x58\xb8\x76\x70\x2d\x90\xff\xc2\x8c\x8f\x4e\x8a\x5e\xb1\xde\x93\x1b\x4a\xb8\xef\xa5\x9e\x3f\x6a\x75\x98\xc0\x69\xcf\xe1\xfb\xd7\xd1\x87\x20\xf7\x80\x63\xcf\x67\xc7\x93\xcc\x78\x31\x2a\x58\x78\x24\xe9\x5e\x06\x83\x94\x16\xfb\xbf\x67\x03\xdc\x08\xe7\xfb\x72\xb6\x5f\xff\xd0\x42\xd0\x33\xd0\xac\xe0\x7b\xd3\x42\x58\xd4\x70\xa3\xcd\xae\xb5\x83\x90\xba\xc3\xee\x40\x4c\x68\x12\xc1\x5d\xe6\xcd\x81\xcb\x31\xcf\x59\xd8\x69\x3c\xcf\xb0\x3e\xf7\x3c\xc1\xd9\x51\xa8\x66\x9a\xa8\x12\xa1\xba\x43\xca\xcd\xd8\x75\x3e\xc1\x6b\x8e\x58\x60\xd3\x6b\x01\x42\xf0\x3e\xcd\x10\x1b\x03\x2e\x42\xe2\xad\xf6\xb8\xf3\xc9\x0a\x84\x96\xc3\xa2\x1a\x4d\x1b\x05\x08\x86\x91\x0f\x59\xec\x6c\x7a\x84\xd1\xb7\xaf\x6c\xb1\x79\x31\x61\x41\x70\xe9\x46\xb5\xe1\x7e\x16\xee\x95\x6c\xda\x15\x75\x6d\x25\xc1\x27\x2b\x78\x41\xc8\x0e\x63\xc2\x83\x26\x0e\xb5\xe4\x3b\xaa\x84\x9c\xa9\x0a\xad\xf7\xea\xa5\x08\x67\x62\x35\x9e\x9f\xda\x22\x49\xc8\xef\xb4\xdf\x36\x9c\xd9\x44\x38\xf4\x33\x29\xff\xec\x13\x2f\x82\xe1\x1f\x9d\x85\x62\x16\x8a\x84\xd1\x6b\x5f\x87\x87\x75\x05\x09\xc5\xee\xf7\xb4\x43\x1f\xee\x21\xc8\xf5\x1d\x08\x3c\x97\xee\x44\xe8\x3f\x3d\x5b\x35\x37\xdf\x85\xd0\x16\xf2\xe9\xea\xfd\xbc\x0d\x84\xe5\xf5\x9f\xa4\xed\x3e\x2a\x13\x78\xbe\x6a\xd9\x18\x1f\x3d\x49\xe8\xbc\xf7\x6b\x9e\xb1\xf8\x43\x82\xd5\xb5\xf4\x72\xa3\x31\xe8\xf7\x9e\xe8\x55\x88\xaf\x21\xc4\xcf\x7c\x79\x63\x72\xed\x41\xc2\xe0\xe9\x28\xb6\x39\x02\xea\x84\xb6\x43\x27\xa6\x72\xaf\x4e\x27\x94\xc6\x5b\x9d\x3f\x11\xbb\x6b\x02\x8a\xa8\x26\xfd\x7c\xc7\x71\x42\x8f\xed\xfa\xf7\x91\x97\xf5\x09\xf9\xbc\x1e\x0a\xb3\x24\x75\x09\x9b\x5d\x63\x33\x3f\x3c\x5c\x48\xb8\x56\xb7\x37\xba\xba\xe7\x32\xe1\xa7\x64\xcd\xca\x7c\x87\xcd\x04\xd9\x29\xe7\xad\xb9\xe4\x1a\x19\xac\x3d\x71\xb5\xef\x62\x66\x0d\x83\x07\x23\xce\x97\x4e\x1e\xda\x4a\xd0\xdd\xf9\x87\x7f\xfe\xfb\x6c\x42\xdc\x3c\xe9\xb9\x66\x4e\xbc\x04\xdb\x50\x39\x97\x5a\xd5\x98\x09\xb0\xdf\x5c\xaf\xc0\xed\x1c\x4d\x78\x57\x12\x3d\x79\x9d\x83\x38\xc1\x74\xd3\x73\x91\x8f\xca\x26\x84\xa6\x8d\x76\x61\x61\xc1\xfe\x0c\x86\x65\x1f\xca\x99\x27\xf3\x10\x34\xdf\x49\xce\x75\x9d\xaa\x41\x70\x5a\xa7\x2a\xaf\x76\xed\x17\x0b\xdb\x12\xb8\xb5\x8c\xda\x0e\x32\x10\x30\xff\x19\x2f\xda\xea\x49\xd8\x70\xf3\xc5\x24\x6e\xb9\x58\x42\x56\xfd\xce\x48\xbe\x43\xe7\x18\x2c\x72\xde\x59\x78\x9d\x2b\x85\x60\xc2\x72\xb9\xf2\x51\x47\x9f\x30\xdd\xfc\xe9\x87\xbf\x9a\x62\x84\x5f\xd7\x0e\x6a\x18\xb7\xa5\x32\xe3\xe5\xa0\x03\xc7\x51\xb3\xfc\x38\x06\x1a\x9b\x34\x92\x1c\xba\xa7\x10\x1e\xf2\x5b\x24\xf0\xa7\x4d\x22\x04\x45\x9c\xb2\x49\xcf\x5b\x49\x90\x8c\xf8\x79\xd1\xe5\x95\xe5\x84\x52\x91\xf4\xf5\xc8\xd4\xb5\x0b\x09\xaf\x1c\x2e\xd7\xfd\x0e\x59\x3c\xa1\xa8\x5e\xdf\xa5\xe1\xd2\x34\xc4\x42\xf5\xfc\xd7\xc7\xb5\x16\x64\x12\x1c\x44\x0f\xa7\x4c\xfd\xb0\x9d\xd0\xf4\xc2\xe4\xe1\x48\xc5\x1e\x82\x9a\xce\x40\x53\x87\x2a\x17\x61\x4d\xda\x89\xe9\x67\x3d\x12\x19\x98\x4a\x8b\xbe\xec\xeb\x94\x26\x6c\x7b\x74\x57\xff\x18\x13\xc3\xe0\xfe\xa3\x8d\xf3\xbd\x87\xc6\x2e\xeb\xdf\x44\x56\x04\x8a\x04\x32\x30\xe5\x34\xd6\xe0\xcc\x6c\xab\x04\x7b\xa2\x95\x4f\xfa\xeb\x58\xc2\xc6\x65\x75\x6e\x5b\x94\x16\x11\xd4\xbe\x35\x67\xdf\xbe\x56\x30\xa1\x6c\xed\x1b\x72\x35\x69\x7d\x59\x09\xd7\x9e\xc7\xe5\xb7\xa7\xea\x13\x4c\x0a\x76\x71\x1e\x54\xf1\x26\xdc\x75\x3a\x40\xa6\x8f\x7c\x09\xb9\xab\xa4\x9f\x50\xcc\x2c\x42\x53\x77\x41\x4a\x96\xd2\x19\x82\x2c\xc3\x2e\x7b\xbb\x66\x31\x21\x20\x79\x75\x9c\xdc\x2f\x7b\x82\xf1\xc5\x8b\x19\x2a\xdc\x6a\x84\x0a\x6b\xee\xd4\x53\x77\xdf\xb2\xb0\x6e\xf4\x70\x93\xae\x24\x3b\x41\x4b\xb0\x62\xfd\xb3\xcd\x4b\x09\x3d\x71\x31\x02\x17\xb6\x5d\x26\x5c\x76\x78\xea\xf9\xaf\x44\x44\x34\x7f\x71\x99\xfe\x8a\x85\x36\xf5\x87\x71\x93\x23\x16\x13\x84\xe3\x33\xb7\xbc\x51\xbe\x4d\xd8\xaa\xa2\x3c\xf5\x49\x9f\x1d\xc1\x8e\xcf\x57\x3d\xfa\xb4\x2d\x61\x4b\x64\x78\xd5\xa5\x47\x2b\x09\x1f\x12\xb5\x33\x7c\x77\x1e\x22\xd4\x4c\x32\xec\xaa\xaa\xb2\x24\x64\xd7\xbe\x9b\x37\x45\x25\x92\x81\xb8\xf9\x9a\x02\xcb\x57\xb6\x84\xd0\x5d\x91\x67\x7a\xaf\xab\x13\x0a\xab\x1e\x6b\xad\xd5\xdd\x4d\x48\xd4\x1d\x71\x15\x5e\x71\x85\x30\x7f\x55\x43\xeb\xee\xcf\xb6\x04\xb3\x16\xe3\x57\x1f\x43\xb5\x26\x14\x67\xdb\xd8\xa7\x3f\x2e\xcd\x26\xa4\xa6\xa5\x2d\x55\xc9\x37\x22\xcc\x0a\x4a\xe5\xdc\xad\xed\x46\x70\xbb\xf0\xea\x90\x4a\x2e\x07\x41\xac\x6b\x85\xe9\x80\xca\x6c\xc2\xa0\x74\xf4\x97\xd7\x45\xce\x04\x5c\x7d\x61\x93\xa0\xbd\x8e\x10\x5c\x70\x33\x25\x63\xe7\x4d\x82\xd7\x9f\xe9\x26\xa3\x1e\x0d\x84\x81\x75\x8a\xf2\xb3\xf3\x1f\x13\xee\xc8\x97\x4a\xef\x79\x74\x97\x46\xd8\x3f\xae\xf6\xbb\x1c\x45\xd8\xb4\x44\xf0\x48\x7d\xa4\x1b\xe1\xb5\x8c\xec\xea\x53\x6c\x56\x04\x3b\x11\x49\x0d\xe1\x5f\x3e\x04\x85\x3a\x6e\xb1\x64\xcb\x68\x66\x7c\xc7\x32\x56\x4c\xed\x73\xba\x05\x61\x86\xbe\x8a\xbb\x1b\x4f\x30\x21\x4d\xfd\xb0\xbb\x77\xfc\x66\xc2\xab\xdb\x90\x3b\x3a\x45\x92\x80\x9e\x07\x17\x07\x4c\x52\x09\x62\x7a\x0a\x29\xa6\x59\xa9\x84\xaf\xb2\xc3\x81\xc6\xb7\xd7\x13\xb4\x23\xbf\x5d\x17\x09\xf7\x9e\x50\xfe\x43\xb1\xdb\xb3\x07\x59\x95\x8b\x08\x95\x22\x4e\x75\xb6\xe6\xf1\x84\x5c\xfe\x63\x9c\x6e\x4f\x5c\x09\x52\x7f\x55\x9f\x73\x1c\x08\x9d\x50\xfe\xc3\xbb\xec\xf8\x83\x02\x1f\x0c\x68\x64\x47\xaa\x67\x5b\x4c\x27\x0b\x5b\xbb\x0f\x29\xdc\xba\xe8\x44\xd0\x78\xed\x32\x72\x61\xd2\x00\x0b\x57\x2e\x39\xac\xde\xfb\x27\x97\x30\xe5\xbd\xb7\xf3\x3f\x7c\xdd\x78\xac\xa6\xdd\x65\x16\xc1\xf1\xab\x25\x6b\x71\xce\x4d\x02\x7f\xb5\x95\xe1\xf7\xfd\x0c\x21\x28\xf5\x4f\x57\xcf\x18\x3e\xe6\x3d\x7e\xca\x18\x5d\x23\xb0\xb7\xea\x9e\x8a\x50\xde\x41\xc8\x7d\x62\xfa\xe7\x82\x4e\x3d\x41\xf8\x52\xcf\xce\xdf\x35\x25\x04\x61\x51\x39\x8f\x98\x92\x12\x02\xb6\x05\xb5\xf0\x4e\x2e\x20\x88\xff\x70\x7f\x11\x3f\xbd\x80\xd0\x3a\x35\x57\x6e\x4e\x8a\x15\x21\x61\x66\xf1\x9a\xc3\x1c\x63\x27\x6f\x54\xac\x9c\xeb\x4c\x59\x82\xb5\xe5\x10\xd7\x9a\x93\x7c\x84\x29\xfe\xaa\x43\xe2\x57\x9c\x08\x22\xdc\x8f\x6d\xd9\xac\x2b\x09\x1a\x81\xcc\xec\x9b\x96\x37\x09\x55\xb6\x4d\x1f\xd7\xaf\x77\x61\xb0\x75\xfa\xdf\x00\xe3\xca\x1b\x04\x1d\xd9\x06\x85\x47\x92\x0c\xe1\x84\xc9\xaf\x8a\x8a\xa6\x7d\x84\x26\xad\x63\xee\x32\x3b\x63\x09\x9b\xde\x85\x97\x5e\x3f\xe5\x48\x70\xbb\xf1\x31\xf9\x85\x44\x15\xc1\xa2\xb8\xcb\xe3\xac\x8c\x25\x83\xee\x32\x5f\x76\x03\x0b\x55\xc2\xb6\xcc\xe1\x83\xdb\x2a\xd6\x11\x3e\x64\x14\xe8\x97\x77\x8a\x11\x46\x4b\x92\x9f\x7f\x75\xd3\x26\x68\xbd\xb7\xde\x78\xef\x88\x1e\x61\xc1\x8a\xb8\xb7\xb6\xa7\xa6\x10\x0e\x15\xea\xdf\xea\x9f\xe7\x48\x58\x12\x2c\x78\xd2\xcc\x6e\x05\xc1\x8c\x73\xb5\x98\x65\xbc\x11\xe1\xe5\xf3\xe0\x5c\x9f\x73\xfa\x84\x10\xcf\x84\xc5\x4b\x32\x13\x08\xeb\xa4\x68\x55\xd5\xc1\xcc\xb1\x4b\xca\xfe\xc4\xa7\x97\x13\x08\x9f\xbf\xfe\x38\x6e\x10\x57\x4b\x68\x08\x4e\xb4\x59\x39\x86\xe1\xd8\x7e\x1d\x15\x81\xb2\x09\x65\x5b\x95\xf8\x85\x25\x0b\xcb\x08\xdf\xe4\x43\x0b\x4d\xdf\xe5\x12\x9e\x2a\x77\x16\xaf\x50\x4a\x25\xac\x38\xf7\xaa\xa0\x75\xf7\x05\xc2\xb1\xb2\xf2\xae\xb0\xca\xfd\x04\xa1\x91\x79\x06\x6a\x93\x76\x11\x06\x7c\x6f\x3f\xf6\x29\x5c\x42\xf8\x6a\x37\x92\xf9\x65\x92\x02\x21\xd3\x77\x41\xa9\x50\xa7\x02\x41\xfe\x6a\xc7\xb2\xa2\xaa\x49\x84\xe4\xe7\x47\x46\x7e\x67\x9c\x21\x6c\x68\xef\x7e\xb7\x75\x5a\x11\xa1\xe4\x4d\x90\xef\xf9\x5f\xfa\x04\xb3\x59\xfb\x42\x6f\x64\xbc\xad\x84\xf7\xc2\xda\xb5\x5c\xc2\x47\x08\x86\x6a\xc7\xce\x2d\x4a\x33\x22\x6c\x59\xfb\x70\x40\xd5\x23\x95\xd0\x7c\xb6\xea\xba\xc4\xf5\x53\x84\xe7\x1f\xc3\xbf\xcd\x5d\x95\xc9\x60\xd9\x99\x9b\xfa\x85\xbf\x8c\x08\x9c\x01\x85\xd8\xf2\x28\x9c\xb0\xfc\x5c\x69\xc9\xd0\xea\x16\xc2\x9d\x0d\x5b\x1f\x1f\x6b\x6f\x24\xb0\x0b\x9c\x6b\x5d\xd6\x53\x48\x78\xdd\xb0\xf9\x92\xbc\x66\x21\x61\xaa\x54\xbe\xaf\x70\xeb\x33\xc2\x45\x09\x89\xe2\xb5\x11\x0c\x21\x5f\xbd\x38\xfd\x4c\x7b\x34\xa1\x37\x33\x6b\xee\xb1\x7a\x13\x42\x52\xb0\xc1\xdf\x40\x13\x3b\xc2\xea\xe8\xfb\x43\x35\x56\x32\x0c\x5e\xfc\x75\x0c\xcf\xed\xb9\x43\xe8\x5c\xfb\xa3\xca\xae\xf5\x2d\x03\xce\x0f\x0d\x95\xcd\xb9\x77\x09\x1e\x12\x6a\x1e\x5f\x0f\x54\x12\x06\x8a\x32\x2e\xda\x75\x3d\x22\xe4\xaa\xc9\x29\xbf\x32\xbc\xc3\xc0\xe3\xf4\x3a\xed\x07\x95\x0a\x84\x75\xfb\xbf\x71\x1c\x98\x27\x4a\x98\xa9\xf8\x6b\xf7\x8d\x4b\x4b\x08\xdf\xad\x3d\xdb\xd3\xd6\xf6\xb1\x90\x73\x60\x57\xec\xa5\x6f\x37\x09\x09\x55\x57\xdf\x65\xea\x7d\x25\x6c\xec\xe9\xef\xfa\xec\x10\x4e\x10\xbc\x13\x7a\xfd\xdf\x28\x7c\xee\x15\x7f\x66\x96\xd3\x04\x64\x2d\xda\x20\xbd\xe9\x5a\x09\xe1\xe7\x24\x1d\xb1\xcd\x99\x25\x84\xaf\x85\xeb\xae\x9d\x5e\x50\x42\xb8\xb4\xbe\x3c\x7a\xd3\x58\x89\x53\xa8\x4b\xe8\x9a\xbd\x6d\x02\x78\xc2\xcc\xa7\x6c\xdc\xbf\x9d\x70\xda\x4b\xaa\xf6\xb1\x7d\x04\xe1\x5e\xbc\x7e\xd8\xa5\x4e\x77\xc2\x67\x59\xb6\xfa\x4a\xfd\x93\x84\x80\x59\x3c\x5a\x92\x69\x45\x84\x10\x07\x41\x75\x86\x19\x7b\xd0\x92\xb6\x34\x3d\x37\xe8\x23\x64\xe7\x7d\x74\x0f\x59\x74\x9c\x60\x29\xfb\x47\xb6\xee\xc5\x49\x06\xea\xc3\x7d\x17\x3c\xbf\xba\x11\xee\x72\xc4\x1d\x39\x77\xd8\x86\x50\xfc\xf3\xfb\xe4\x47\x52\xda\x84\xf0\xf2\x92\x1b\x8e\x42\xa7\x19\xe4\x5d\x71\x9a\x75\xaf\x4e\x8f\xc1\xe7\x25\x36\x72\x9e\xf3\xcf\x12\x4c\x6f\xed\xbf\xd7\xaa\xa4\x41\x98\x66\x21\x64\x71\x4e\xf0\x04\x61\xcb\x9a\x36\xe7\x42\xb1\x60\x82\xc8\x7d\x77\xab\xa2\x3e\x2d\xc2\x06\xf7\xaf\x3c\xfd\x09\x07\x08\xcf\x6e\x7c\x95\xac\xd0\xf7\x20\x70\xa8\x96\x55\xeb\x67\x3e\x64\x70\x78\x8e\xd5\xa6\x90\x43\x63\xcf\x4e\x47\x5c\xef\x6a\x9e\x25\x84\xe2\x23\xae\xf7\xd9\x12\xf5\x09\x55\xa7\xd8\xa5\xee\xd5\xaa\x10\x9c\xae\x1b\xfc\x3d\x37\x22\x36\x01\x34\xa0\x78\xe9\x93\x69\x37\x0b\x1f\x77\xaa\x29\xaa\x9b\x99\x13\x7c\x2e\x94\xde\xbd\xaf\xcf\x4d\xd8\xb9\x98\xef\x8e\xc7\x82\xbd\x13\xc0\x7b\x45\x77\xaf\xf9\x77\x3e\xc2\x4d\xb5\x2d\x81\xae\xda\xaf\x2b\xe1\xad\xc7\x61\xe9\xa1\x75\x95\xc1\x05\x9f\xf4\x95\xa3\x1c\x35\x34\x0e\xfd\xa9\xf3\xaf\x5f\x5c\xde\x42\x98\x2f\xef\x3b\x9a\xb2\x9d\x4d\x6f\x7c\xf4\xa7\xb4\xcc\xe1\x1f\xd4\xc4\x1d\x1d\x1a\xf2\x62\x09\x2a\x23\x9b\x07\x63\x85\xcf\x31\x38\x23\x7c\xde\x45\x4a\xf5\x32\x83\x0a\x9f\x8c\x33\xd5\x63\xa3\x1d\xc7\xb6\x7e\xf5\xdb\x99\xcb\xe0\xe7\x4d\xbd\xf2\x7b\x2d\xc7\x09\x9f\x8f\x4f\x7e\xca\x39\xe9\x22\xe1\xe2\xc5\xf6\x88\x73\x93\x63\x09\xa5\xd3\x4e\x96\xb9\x58\xa4\x4c\x18\xb1\x3d\x58\xb3\x39\x38\x2a\x8a\x90\xa3\x3e\x2b\x40\x50\x20\x85\x60\xaa\x33\xa7\xac\xee\x3d\x8b\x20\xb3\x77\x0e\xdf\x5d\xc5\x6a\xc2\x6a\xb6\x0b\x35\x47\x0b\xd2\x09\x2d\x17\xbe\xcc\xb8\x3f\x56\x72\x4a\xa5\xf6\xbc\xdb\xe4\x44\x18\x55\xfe\x96\x22\xff\xe1\x1a\x83\x00\xf1\xa2\xec\xe1\xaf\xed\x84\x4d\xfb\xee\x3e\xfe\xea\x56\x43\xb0\x7d\x3d\x3f\x2e\xa3\x63\x0f\x03\x49\x47\x01\xcc\xbe\x70\x9b\xf0\x6c\x43\xa2\x5a\xd0\xfe\x1a\xc2\xd5\x2d\x07\x3e\x7d\xcc\x8a\x23\x2c\x69\x6b\xa9\x90\xc8\xf7\x61\x30\x2c\x3c\x4f\x2f\xab\x3e\x9c\x70\xf3\xac\xb2\x57\x35\x9d\x27\x84\xf6\xef\xd0\x8a\x32\x3b\x4c\x08\x7c\xa2\x6b\x61\xc1\x7f\x90\x01\xcf\xcf\x42\x8b\xe2\xec\x75\x84\x4c\xd3\x2b\xd2\xdf\x9e\x84\x11\x66\x9b\x67\xff\xfc\xbd\xa5\x87\x10\xa1\x93\xa1\x11\xcb\xf6\x9c\xa0\xc2\xbc\xf4\x1c\x18\x2b\x6b\xef\x38\x4c\xff\x31\x06\x71\xcd\x4f\x86\xdb\x77\x85\x32\x08\xdb\x95\x57\xdc\x61\xa6\x48\xe8\x7d\xe1\x57\xfe\xbb\xbc\x91\x70\x32\xc6\x31\xed\x1f\xd8\x3d\x9e\xff\xf5\x9a\x11\x40\x68\xfd\xf4\x5b\x46\x4e\x25\x85\xf0\x6e\xfb\xbd\x84\xf3\x05\x8e\x04\x95\xdd\x3f\x0e\xfb\x9a\xc5\x13\x0a\x3c\xc4\x7a\x9e\x18\xda\x4e\xc0\x7e\xfd\xa7\x3e\x49\x6b\xec\x08\x86\x4b\x0d\xb4\x56\x8d\xaa\x10\x22\x97\x14\x0b\x87\xcc\xdb\xcb\xe0\x9b\xce\xdc\xe0\x8b\x56\x95\x84\xcd\xc2\xe6\xf9\x5a\xb1\x57\x09\x9d\x6c\x01\x43\xda\x63\xa8\x3c\xa4\xdb\x1d\x98\x7c\x95\xb0\x9d\xfd\xf6\x2a\xa5\x38\x39\xc2\xc6\x15\xd7\x5b\x6e\x85\x69\x11\x3e\x4d\x5a\x33\x4d\x20\xa9\x9c\xe0\xf5\x4d\x75\xc7\xbc\x8e\x6a\xc2\x66\x3b\x4b\xc9\xf9\x3f\x26\x11\x6a\xec\xe7\x68\xb5\x99\x1e\x9d\x80\x55\xb2\xc9\x3c\xe7\xd4\xbd\x09\x4b\xd2\x36\x7e\xb6\x1f\xde\x45\xf0\x77\xe3\x75\x5a\xb7\x6c\x09\xc1\xab\xe6\xc3\x4a\x26\x8f\x8f\x20\xba\xac\x93\x23\x77\x4f\x2f\x0b\xcb\x94\x87\x2e\x74\xcf\x32\x22\x1c\xe7\x2f\xde\xf1\x50\x60\x05\x41\x66\xc9\x83\xd5\x82\xa9\x23\x2c\x68\x09\x64\xb9\x9f\xfb\xa1\x43\xe8\xaf\x9d\x35\xed\x00\x6a\x09\x15\x23\x17\x76\x2b\xc7\xdc\x26\x9c\x7d\x7a\xb2\xa9\x4a\xf7\x19\x0b\xad\xde\x5f\x64\xb7\x1e\x3e\x4d\x38\xef\xdd\xee\xea\x9d\x7b\x86\xc6\xcb\x7f\x78\x12\x7e\xda\xd6\x33\xe1\x38\xe1\xf9\xd0\xa0\xd6\x77\x17\x1e\xc2\x0a\x91\x85\x19\x21\xd9\x93\x09\xf5\xef\xcb\xf6\xfd\x6d\xde\x4f\x88\xf3\x73\x0f\x76\xaf\x5a\x4f\x38\x3e\xe9\xfd\x81\x35\xb5\xd2\x84\xe9\x29\x1b\x7c\xe6\x2b\x4d\x25\x98\x88\x4b\xc7\x1c\xfe\x6d\x42\x10\xab\x8a\x3c\x3e\xbc\xd9\x69\x02\x7e\xb2\x7b\xbf\xcd\x1d\xe5\x27\xb4\x39\x07\x44\x7f\xa9\x69\x63\xe1\x5e\x6e\xe0\x9a\x3f\xce\xa1\x84\xf7\xc5\xea\xf7\xd5\x05\xf9\x09\x1b\xb8\x4c\x02\x1a\x26\x81\x85\x1b\x3b\x9b\xf4\x76\x64\x98\x12\xbc\x77\x6f\x5d\x1a\x5d\xc2\x49\x90\x7d\x2e\x7d\x7c\xa9\xf5\x00\x0b\xa6\x69\xa5\xb3\xea\x8d\xa3\x19\x58\xcd\x9a\xad\x5c\x70\x5b\x94\x70\xfc\xf4\xb0\x97\xfc\x3c\x65\xc2\xa7\x1d\xb3\x10\x10\x24\x45\x90\xf2\x1d\xfa\xb8\xa4\xe9\x0e\x21\x37\xdf\xeb\x67\x68\xdb\x1d\x82\x67\xd1\xa9\x4d\xca\x63\x85\xe7\xda\x40\x77\xd0\xe7\x2e\x16\x0c\x42\x6c\x6b\xfd\xa6\x54\x13\x02\x6e\x9c\xeb\x0b\xd3\x8a\x24\x78\xad\x2c\x36\xad\x5f\x56\x44\xe0\xfa\x73\x65\xe9\x3f\xa4\x14\x9e\x12\xf9\x87\xf6\x05\xce\xdf\x1e\x8d\x61\x09\xd7\x46\xab\xf4\x8c\x00\x42\x82\x20\xc3\xb6\x65\x72\x1c\x21\x3c\xab\xf3\xb2\xa7\xee\x15\x82\xf1\xee\xcd\xed\xab\xb6\x44\x11\x6c\x0e\xae\xab\x37\xa6\x40\xc2\x23\xf3\xef\x2a\x7e\x0f\x42\x08\xd3\x47\x8f\xb4\xcd\xa9\xcd\x27\x1c\xb7\x55\x09\x7f\x32\xf6\x61\x97\xf2\x98\x7b\xfa\xe2\xb9\x5f\x59\xe0\xe4\x5f\x27\xff\x26\x5c\x83\xc6\xe1\x50\x79\x88\x7d\xb9\x7b\x1b\x6b\x1c\x15\x31\xe5\xe6\x33\xf4\x35\x68\x1c\x47\xac\x92\x92\xb5\xbf\xf6\xb3\xb0\xf9\xa8\xef\x2f\xfb\x5d\x0a\x84\x56\x09\xaf\x43\xcf\x8e\xe6\x12\xec\xa2\x0b\x35\x45\x5b\xd8\x09\x6c\x39\x5e\x8b\xfc\xc2\x17\x12\x1c\xa3\xb7\x56\x34\x4a\xd5\x10\xea\xa3\x7e\xbe\x93\x16\x17\x26\xc4\x78\xb4\x9c\xb0\x13\x39\x36\x01\x6b\x8b\xa7\x9e\x13\x7d\x6c\x41\xf0\xce\xf4\x2a\xae\xdd\x18\x4f\xe8\x99\xae\xae\x98\x5b\xa4\x49\xd0\x51\xbc\xe9\x58\x3f\x3c\x8b\x10\x6b\x1f\x26\x76\xcf\x5c\xe1\x7f\x21\x5f\xe0\x77\xbc\x7e\x8c\xe0\xff\x82\x3f\x8f\xe3\xfd\xcc\x8d\x4b\x09\xe2\x9b\x16\xf0\x3d\x9f\x75\x93\x20\x61\x29\x65\x24\xb3\xf3\x17\x0b\x2c\xaf\xc7\xfb\xdf\xb4\x04\x13\x06\xc2\x5f\x5b\x7b\xef\x33\x24\xfc\x7c\xb7\x47\x3d\x90\xa5\x4e\x08\x5b\xb6\x8e\x4b\xf6\x83\xc0\x04\xe8\xc9\xae\x54\x73\x9c\xf5\xa6\x12\xa7\x3c\x7b\x05\x96\xe8\x28\x12\x1c\xcc\xaf\xda\xcb\x67\x9b\x10\x3c\xb3\x3f\x0e\x3f\x95\x6c\x20\x94\xcd\x8f\xac\xea\xf8\xd1\x4e\x70\xaf\x16\xbc\x37\x77\xf2\x73\xc2\x50\x91\xab\xe8\x4e\x95\x9b\x04\xf7\x5f\xf2\x4b\x16\xe9\x0e\x11\xbe\xb8\x1d\x96\x71\x72\x7d\x42\x30\x78\x92\xb4\xf9\xf6\xa4\xf7\x84\xfd\x76\xf6\x9b\xc2\x0d\xd3\xc6\xbe\xff\x0e\x2b\xdf\x3f\xb8\x81\xb0\xf0\x53\xcb\x4a\xf5\x25\x8a\x04\xdf\x07\x7d\x17\x2c\xb5\xf9\x08\xe1\xc6\x1a\xf6\xe6\x8a\xb3\x09\xb7\x05\xbf\x54\x0c\xb6\xad\x23\x9c\xfa\xd4\xf7\x7e\xfd\xd6\x6b\x0c\x02\xa5\x72\x0d\x0d\xc2\xd5\x08\x65\x7a\x7b\x6d\xec\x6b\xdd\x09\xde\x49\x43\x0f\xd8\xf6\xcd\x26\x70\x5d\x1b\xd6\x5f\x1c\x6c\x48\x50\x91\x6e\x4e\x28\xd8\x2b\x4b\x58\x36\xe0\xfd\xb1\x5e\x3b\x93\xb0\x7f\xa8\xfd\xe1\xe4\xd4\x44\x82\xc9\xc9\x1b\xef\xd7\xfc\xbc\x42\x98\x9e\xb8\x86\xa7\xe5\x6c\x25\x61\x99\x79\xfb\x1b\x8e\xb1\xd1\x3c\xdf\x45\x62\xba\x0d\xd5\x84\xef\xad\xd2\x3d\x1b\x82\xa2\x08\xe2\xbc\xd5\x99\x3a\x63\x65\x43\xf8\x9a\x90\x2f\x6d\x5f\x58\xf0\x61\xf3\xe3\x51\x3e\x76\x84\xb0\x7e\xff\xc2\x6e\xa5\xda\xd3\x0c\x5e\x4d\x71\xfb\xb0\x3e\x5c\x96\xd0\xff\xdb\xc3\xaa\xec\xca\x6e\x82\x4f\x4b\xd0\xe9\xdc\x6f\x73\x08\x52\xf7\x6a\x05\x2f\xbd\x50\x26\xdc\xbe\x27\x5a\x60\x16\xf3\x94\x41\x79\xf1\x14\x25\xf3\xa9\xc7\x09\xa7\x33\x7c\x4a\xe2\xc6\x46\x12\xfb\x7c\xc4\x3e\xa9\xf3\x13\x7a\x9d\xc4\x9e\xb6\xda\x6a\x10\xf6\x3c\x3d\x17\x62\x2b\xa6\x42\x38\xcc\x7b\x73\x67\xf5\x0a\x79\xc2\xac\x05\x64\xb0\x60\xec\x52\x1a\x28\x1f\x10\x6a\xbf\xea\x12\xc1\x7e\x57\xe4\x0c\xcd\xb0\x79\x04\x7e\xf1\xe3\x91\xea\x8a\xdb\x08\xaf\x46\x39\xe2\x24\x0f\x3b\x11\x4e\x15\x3f\xca\x52\x92\x5a\x46\xf0\xdc\xa5\x39\x70\xcc\x59\x94\x20\x25\xea\xfe\xce\xb8\x94\x97\xf0\xed\x5a\xa2\x6a\x6b\xf5\x32\x82\x6f\x84\xb7\x9e\x9f\xaf\xdf\x04\x84\x8a\xcf\xd9\xab\x3d\x8d\x8f\x10\xbb\xa9\x34\x92\xd5\x9f\x4f\x38\x58\xc6\x2b\x99\xfd\x23\x97\xe0\xd2\xfc\x24\x48\xea\x7e\x07\x61\x6e\xdf\xf4\xfe\xca\x7b\x1d\x04\xeb\xac\x10\x87\x7a\xae\x3e\x06\x7b\x38\x5c\x78\xcb\xc7\xca\x09\xe9\x6b\xb8\x1d\xd0\x42\x88\xf3\x75\xbc\xa6\xeb\x64\x4d\xa8\x4e\xe9\xe4\x3e\xb7\x30\x71\xec\x30\xdf\x17\x99\x9a\x91\x43\x90\x5b\x20\x7f\x68\xee\x60\x02\x33\x52\xee\x57\xf5\x6f\xa5\x5b\x73\xb3\xee\xcd\xc9\x1a\x84\x37\xfb\xda\xc5\xf5\x2e\x94\x12\x62\x2e\x58\x1f\x8f\xdf\x18\x43\x08\x7e\x36\xb7\xea\x40\xd8\x6b\x82\xfc\x1f\xdd\xdd\x0e\x83\x2f\x09\xdf\xf5\xcf\xa8\xa6\xbc\x1b\xfb\x3a\x76\xf4\xd4\x80\x74\xbd\x0b\xa1\xf7\x81\xe6\xb4\xa5\x6c\x25\x04\xe3\xd4\x06\xe9\xb6\x6d\xe7\x19\xfc\xf2\x2f\x35\x4b\x1e\xdb\xf1\x92\xea\xba\x5a\x35\xb8\x9d\x70\x5b\x5c\xf4\xf4\x41\x9f\xfb\x84\x96\xf6\x2b\x93\x39\x94\x7c\x08\xd5\x0c\xe7\xfb\x0b\x1f\x9d\x08\x86\x0b\x85\x85\x4f\x2d\x3a\x42\x28\x58\x5c\xee\xa4\x7a\x46\x84\x30\xd2\x37\x23\xf0\x44\xfd\x6d\x42\x9d\x48\xbd\xfa\x3f\x64\x17\xef\x4c\xff\x69\x53\x4a\x70\x6d\x2a\x16\xfb\x57\x9e\x5b\x16\x44\x06\xaa\xc6\x13\x1e\x5f\x59\xf5\x76\x9d\xb1\x29\x61\xf6\xfc\x54\x9f\xf2\xfb\xec\x84\xb7\x69\x4b\xff\xdc\xe2\x2f\x20\xe8\x59\xe5\x1d\x2b\x1d\x83\x78\x0b\xfb\x42\xa7\x57\x73\x09\x73\x5f\x4a\x89\x1e\x93\x1e\x64\x21\xd9\xaa\x3a\x66\x66\x7c\x15\xa1\xad\xe6\xbc\xdb\x3f\xcc\xeb\x79\x60\x79\x70\x47\xe5\x84\x62\x55\xf2\xa3\xee\xd7\x93\xa0\x09\xb0\x78\xad\xdf\xd2\xf7\xb9\x98\x19\x2f\xcd\x53\x46\x63\xeb\x76\x1e\x98\xb0\x73\x5a\xf3\x70\xd1\xbe\x01\x7f\x42\xf6\x12\x1e\x45\xc3\xf5\xc7\x99\xf1\xf2\x7d\x71\xef\xd6\xa5\xde\xc6\x13\x76\xfa\x4c\xd2\xfc\x6f\x1e\xd6\x21\xdc\xf0\xae\x9d\x69\x3b\x37\x88\x90\x73\xf2\x1c\xfb\x2a\xf6\xcd\x84\x41\xad\x77\x47\x77\xac\x37\x25\x3c\x53\x5c\xf9\x7b\xa3\xa8\x01\xe1\x9a\xa8\xc7\xa1\xb2\x77\x4b\x08\x9c\x65\x55\x33\x0c\x6a\x26\x11\x14\x0f\x29\xdb\xec\x4b\x75\x26\x84\x2a\xa9\x92\xa2\xa7\x25\xe1\x6d\xdf\xde\x65\x35\xbf\x43\x27\xe0\x7e\xec\xa1\xc4\xf2\xeb\x87\x09\x32\x8a\x8f\xb4\xa3\x8e\xae\x22\x1c\x0c\xd6\x0d\x90\xdd\x9b\x47\xb8\x5c\x5b\x6f\xdd\x15\x94\x47\xe0\x7e\x34\xfa\x59\x42\xff\x66\x25\x96\x9e\x0e\xdf\x91\xd4\x2d\x43\xff\x3f\xbc\x3a\x97\x31\x2a\xb5\xf8\x29\x0b\x29\x53\xcc\xde\x91\xc6\x0d\xc2\xd9\xce\xec\xd2\xf9\x5b\xf6\x31\x50\xb6\x79\xa4\xf0\xa7\xd9\x90\xb0\x73\x86\xe2\xe9\x8c\x9d\xd7\x09\x5e\xce\x5b\x7d\xba\xa3\x5f\xd1\x48\xbc\xaa\x71\x1a\xd7\x1d\xc2\x6c\x83\xf9\xf6\x87\x3f\x67\x30\x98\x55\x2d\xd9\x31\xc7\xeb\x38\x83\xe7\x0a\x0f\x24\xee\xd4\x31\x04\xd9\x90\xb7\x6b\x9e\x0e\xf9\x10\xec\xf6\x29\xfa\x9e\xf5\xd3\x27\xc4\x72\xd6\xa5\x8a\x3c\xde\x4d\xd0\x71\xa9\xdf\x14\xac\xb4\x89\x46\xd8\x46\x97\x37\xfe\xb0\x26\xf4\xd6\xbe\xae\x29\xba\x66\x44\xe0\x19\x6a\x78\x6b\xff\xe5\x26\x01\x49\xdf\xff\x9a\x67\xbd\x62\xf0\x4a\x54\x26\x68\xf3\x58\x09\xe2\x95\x2f\x17\xb2\x7b\xc4\xa0\xdf\x41\xf2\xf6\x7a\xed\x0d\x34\x8e\x86\x37\xf2\xbf\xa7\xbd\xe9\xaa\x44\xa2\x96\xed\x47\xd5\x16\x4d\x82\xa2\xe9\xfd\x5d\xe7\x7d\x24\x27\xa0\x6e\xc4\x2b\xf1\xed\x83\x01\x16\xe4\xd8\x77\x76\x9a\x26\x55\x30\x98\xcb\x2d\x53\x55\x39\x76\xcc\x0e\xe8\x91\xcc\x91\xb8\x7a\x82\x96\x9b\xa7\xca\x4b\x5b\x7d\x42\xcc\xd2\x69\xe5\xbc\x4b\x6d\x08\x5b\x36\xf4\x6a\x64\xe6\x4d\x22\xcc\x51\xda\x98\xba\x97\x3d\x8c\x10\xe8\xb7\xbb\xec\x1f\x14\xff\xbc\x9c\xbd\xbd\x6a\x26\x21\xec\x07\xff\xd6\x8d\x2b\x35\x09\x36\x57\x63\xaa\x0c\xb5\x9e\xb2\x10\xc8\xb6\xf7\x9d\x04\x4f\x1f\x0b\x95\x9b\xb3\x7a\x1f\xbd\x0f\xa6\x71\x74\x2b\xd7\x8e\xba\xe4\xce\x27\x44\x0e\xbf\x2c\x7d\x62\xe3\x41\xf8\x29\x77\xf5\x5e\xf3\x49\x41\x82\x08\xbb\xc5\xc0\x50\x5b\x15\xc1\x75\x7a\x08\xeb\x60\x99\x39\xa1\x2a\xe7\xc4\xb0\xde\xfd\x63\x84\xc8\xe8\x69\xc1\x98\x27\x4c\xd8\x61\xa1\xff\x74\xf8\x59\x32\x81\x7f\x9e\xb1\x68\x60\xc7\xd8\x0d\xf4\xa0\x6a\xf4\xa5\x8e\x44\xc2\x9b\xbc\xa5\x9a\x7c\x0b\x4f\x12\x8c\xb4\xb6\x07\x88\x44\xaa\x13\xb6\x2a\xe9\xac\xe2\xd0\x0a\x21\x84\xab\xee\xd4\xf9\x32\xc5\x9f\xc1\x19\x67\x9b\xdd\xde\x2d\x87\x08\x77\xab\x9a\x4e\x1d\xb1\xde\x4c\x28\x5c\xb1\x71\x52\x80\x76\x3e\x41\xff\xc7\xfc\x2a\xaf\xb1\x1b\xf1\x4f\x3f\x97\x10\x9f\xec\xab\x04\xe9\x69\x73\x3c\xf7\x9c\x0d\x9b\x00\xdb\xfd\x5f\x75\xfe\xe1\xbb\x73\xe8\x85\xc5\xeb\xf8\x08\xdb\x83\x63\x66\x29\x1a\xde\x25\xf0\x17\xf5\xfd\x76\x8e\xde\x47\x28\x1a\xc9\xd0\xa8\xdf\x54\x49\x18\xda\xfb\x66\xb5\x39\x2b\x85\x90\x32\xed\xc2\x85\xe8\xb8\x22\x02\xab\x3a\xe4\xf0\xff\x8b\x6a\x3f\xf7\xa4\x5b\xa3\xb3\x08\xeb\x15\x0e\xee\xe0\xf8\xdc\xce\xc2\xe1\xc6\xdc\x04\x01\xc5\x22\x06\x21\xbc\x1c\x7f\xd6\x67\xdc\x26\xac\xf7\x6f\x3b\xac\x78\xed\x36\x21\x6d\x9d\xd9\xee\x73\xbe\x9f\x09\x6a\x5c\x06\xb3\x4f\x77\x37\x13\x36\x0a\xbe\x58\xbc\x60\x6c\xd4\xe3\x38\x6f\x81\xb8\xbb\x17\xc1\x76\x33\x9b\xfb\xcc\xac\x8d\x04\x43\x9d\x4f\xaa\x1d\xf3\x8e\x10\x9a\xbf\x9a\x97\x1b\xec\xdd\x42\x50\x17\x17\xcc\xa8\x50\xf5\x9e\xb0\x53\x72\x7f\xd5\xbd\xaa\x3f\x46\x84\xfb\x3b\x32\xec\x36\x0c\xb8\x12\xf6\x1b\xcf\xe2\x7a\x2a\xbf\x89\x90\x9c\xa2\x31\xd0\x6f\x44\x04\x0d\xe7\xdb\x73\xb7\x2d\x5f\x44\x38\xd8\xdf\xae\x77\x65\xec\x26\xb2\x57\x3b\x43\xdd\xf3\x7e\x15\x61\xb1\x57\x8b\x0c\xb1\x3f\x60\xa0\xf7\xe0\xa9\xcb\xbf\xf2\x9d\x73\xef\x93\xac\x67\x26\x84\x34\x19\xc5\x66\x0f\xda\x48\xc8\x7e\xb6\x20\x6f\x5d\x24\x0f\xe1\xd8\x4b\xd1\x84\x65\x43\x66\x84\x05\x79\x49\xa2\x3d\x6d\xdc\x84\xf7\x1a\xb6\xf1\x03\xf5\x65\x04\xde\xa1\x25\x55\xb5\x77\x8a\x08\xdf\xe9\x9b\x8a\xc8\xe3\x9d\x84\x92\x33\x73\x92\xfa\x74\x6e\x10\x58\x8e\xf2\xbe\xd3\x9c\xde\xb3\xf0\xe8\x96\xbd\x7f\x95\x92\x00\x8d\xc3\x56\xf5\xc2\xed\xb6\x79\x46\x13\xf0\xb8\xef\xfc\xee\x90\x39\xc6\x04\xd9\x81\x5b\xc1\xac\x7b\x73\x08\xb7\xa2\xea\x56\x29\xda\x8e\xb0\xd0\xd8\xf7\x2a\xd7\xcb\x4c\x8e\xc0\x5f\x9d\x70\xfd\x40\xfd\xf6\xb1\xf3\xfa\xdd\x8c\xbe\x7d\xc9\x0c\x6e\xff\xe9\xe0\xf5\xe6\xf3\x26\x5c\xe7\x8e\xfb\x1e\xff\x43\x9f\x60\xe2\xbf\x6c\x6f\xc4\x08\x1f\x41\xa7\xa1\xf5\x68\x50\x19\x11\x86\x96\x7d\x18\x3a\xee\xd3\xcb\x42\x80\x61\x6c\x9d\x92\xdc\x1e\xfa\x1f\x30\x9d\xba\x78\x52\x9d\xbd\xd4\xff\x17\x9a\x99\x67\x13\x54\x76\x37\xb1\xfe\x07\x94\x07\x9e\x5b\x5e\x0f\x62\x23\x70\x0b\x2b\x2c\x97\xae\xb7\x23\xf8\xc9\xef\xbe\x18\xba\x6d\x3f\x21\x2c\x89\x3b\x45\x53\xa9\x94\xf0\x76\x9f\xb8\x12\xec\x4a\x09\xf1\x6b\xb5\x5c\xfe\x64\xf5\x11\x4a\x74\xfd\xfc\x86\xc7\x8a\x6f\x54\xe8\x3e\xfd\x62\xdf\x09\xa8\xeb\xad\xaf\xd4\x8a\x5d\x40\x38\x54\xb9\xcb\x6b\x20\x71\x2a\xa1\xaa\x96\xa6\xad\xb3\xd3\x24\x08\x34\x9c\x73\xbd\x23\xb6\x94\xd0\xb1\xc1\xe7\x4d\xa8\xc3\x62\x82\xce\xcd\x55\x9d\x1f\xf6\xbc\x67\xc1\xa7\x6c\xf7\x53\x31\x3e\x6e\x82\xd7\xed\x1b\xc9\xc1\x22\xe5\x84\xde\xc1\x93\x97\x7a\x06\x52\x09\xe7\x17\x4c\x8b\x36\x32\xaf\x62\xb0\xee\x77\xe8\xd2\x98\xa7\xa9\x84\xa3\xbc\xec\xde\x37\x2e\xbc\x60\xe0\xb5\xbd\xe5\xcb\x9c\xc9\x2f\x08\x8a\xb7\x9f\x07\x44\x8f\x8d\x86\x6b\x5c\x6f\x2d\x5a\xba\x9d\x10\xf3\x4e\x56\xc2\xd9\x78\x80\x05\x9e\x27\x4d\xc5\xc9\x5a\xaf\x27\x60\x3b\x47\x64\xb3\x6e\xe8\x53\x06\xc9\xa9\x11\xe5\x05\x7f\x26\x13\x0a\x36\xf2\xb2\x3f\xee\x8a\x20\x28\xad\x79\x3f\x6b\xe1\x1e\x4b\x02\xcf\xe5\x88\xbd\xf7\xe6\xb2\x13\x2c\x16\x56\x8b\x8c\x04\x5c\x61\xb0\x5f\x55\x5f\xf0\xf5\x33\x4d\x1a\x47\xdc\x1e\xbe\xe6\x8e\xda\x11\x16\xf8\x47\x2f\x4a\x7d\x6e\x29\x63\x30\xcf\x74\xc5\xc3\xb0\x9e\x6c\x42\xaf\xb1\x77\x67\x5d\x5b\x33\xa1\xe5\x7b\xff\xe9\xc4\x9a\x5c\x82\xa5\x89\x9e\xd8\xa6\xd2\x52\x82\xfa\x65\x37\xce\xa5\xbb\xa3\x09\x51\xab\x0d\x78\xf5\xbf\x9d\x67\x10\x73\x7e\x8f\xe0\x60\x95\x0e\x81\xa5\x9d\xb9\x3e\x64\xc7\x36\xc2\xdb\x9f\x95\x96\x6f\x6f\xce\x22\xf8\xf7\x99\x6a\x58\x0d\x54\x10\x1e\x89\xf8\xb2\xc5\x67\x49\x12\x5a\x17\xf7\x79\xe9\x7d\x14\x21\x94\xbd\x58\xfc\x91\x37\x47\x91\x50\xbb\x99\xeb\x5b\x47\xf0\x52\x42\x5b\xbf\x4f\xf5\xa1\x77\xe2\x84\xa8\xf6\x13\xee\x0e\x4b\x0e\x11\x24\x6a\x92\xf6\xf2\xde\x8f\x9a\x50\x76\x6e\x19\x89\x6e\x63\xf9\x12\x06\x26\x4d\xfe\xfb\x5e\x49\x92\x50\x30\x28\x51\x2b\xc1\x88\x10\x42\x79\x6a\x1e\x14\x7e\xfc\xcb\x82\x42\x2c\xeb\xe0\xbe\xe5\x49\x84\x6e\x3f\x3e\x21\xf8\x7c\x64\xa1\xf5\x19\xf7\x5e\xd3\xab\xbc\x84\x6d\x8f\xf6\xe4\x0d\xda\x8b\x10\x8c\xd6\x94\xf5\xf6\x16\x7b\x4d\x80\xcc\xdf\x7c\xe9\x75\x8a\xae\x04\x1d\xaf\x22\x77\x0e\x03\x27\x82\xc5\xe1\x64\x87\x7b\x1d\x4d\x84\x9a\x69\xbf\x5e\xbe\x89\x2e\x21\x84\xf3\xf8\x5f\xa3\x1a\x2d\x82\xb5\xd4\xbd\xcc\xfe\xe3\xac\x09\x48\x5a\xa8\xc6\x1c\x92\x78\x5a\x89\x03\xaa\x73\x6d\xc3\x82\xd3\x08\x3b\x02\x56\x3e\x3d\x90\x79\x9d\xc1\x94\xd6\xbd\xaf\xa7\xb6\x59\x12\xd8\x22\xc0\xbf\x7b\x92\x05\xa1\x47\xc3\x6f\x20\x40\xc3\x9f\x30\x73\xbf\xdb\xc1\x5c\x23\x1f\x06\x9c\x73\xcf\x76\xb7\xd9\x1b\x12\x72\xae\x8a\x2b\xfa\x1d\x89\x26\x18\x58\x09\xec\x35\x4d\x91\x21\xe8\x9e\x0f\x7a\x6a\x66\xba\x8e\x10\x65\xaa\x66\x35\xb2\x20\x69\xec\x24\x09\x8a\x5b\xa0\x32\xc0\x02\x67\x45\xc2\x5d\x21\xd7\xa5\x84\x61\x3f\x59\x8f\x53\xc7\x63\x09\x8b\x3b\x7f\x2e\xff\x87\x02\xf5\xea\xed\x91\x48\x27\xec\xe9\xf7\x32\xb9\x5b\xee\x42\x90\x3e\xc5\xa5\x95\x1d\xd6\xc9\xc2\xf0\xfe\xa0\x1e\xa1\x32\x1e\xc2\x7b\x23\xd3\x47\x2d\x8d\x4e\x34\x5e\xca\xad\x6f\x88\x29\xd4\x4c\x23\x4c\x99\xed\x68\x5a\xbb\xbb\x9a\x10\xd2\xd7\x11\xc1\xa3\x6d\x44\x38\x90\x98\xd4\xbe\x61\xc5\x6f\x16\x56\xcf\xae\xb8\xf9\x6c\x8a\x10\x61\xc6\xef\x30\x4e\x2d\xce\x39\x04\xb5\xef\x87\x2c\xb9\x76\xcb\x10\xf6\xd9\xba\xbe\xae\x2d\x35\x22\xa0\x8e\x3b\x4c\x37\x5d\x90\x30\x45\xe0\xbd\xae\xa2\x86\x3a\xc1\xc2\xba\x7a\xcb\x4b\x8e\x11\x16\xd6\xf8\xfe\x8a\xac\xda\x22\x46\xd8\xf0\xb8\x70\x5b\x65\x96\xf3\x04\x3c\x0d\x79\x78\xbf\xf7\x7d\x4b\x25\x82\xae\xa4\x0d\xbc\xb1\xb1\x25\x5c\x62\x4d\xdb\xb9\xbf\x48\x9c\x10\xb1\x5b\xda\xf8\xc1\x1b\x4f\xc2\x93\x9d\x42\xda\x22\xda\x9a\x04\xe5\x38\x97\x81\xbf\x8e\xf1\x84\x3b\xc5\x25\xe6\xa3\x63\x90\xf6\xbf\xff\xd2\xb7\x65\x19\xc1\xd4\xf8\xef\x27\xe7\xc2\xf3\x84\xea\x29\x9e\x53\xdf\xbb\xd6\x12\xfc\xcf\xcc\x7e\x94\x78\xf5\x2f\x0b\xda\x97\xce\xb8\xd7\x42\x98\x90\xd7\x17\xc4\x25\xea\xf8\x99\x85\x9e\x26\x76\x8e\x20\xe9\xe3\x84\xa1\xe5\x0b\x99\x44\x15\x16\x41\xe0\x7a\xd7\xf3\x79\x2b\x85\x08\x5b\xba\xa3\x94\xb3\x4f\x6b\x13\x84\x17\x2a\xa4\x1e\xfb\xbb\x81\xc0\xcc\xde\xbf\xbb\xe5\x92\x13\xc1\x65\xa7\x8f\xbb\x4f\x30\x1f\x21\xb5\xca\x3d\xcd\xff\x9a\x1e\x41\xbe\x24\x4d\xc8\xf8\xf9\x4f\x16\x84\x68\xcf\xbe\xcb\x3e\x69\x84\x6d\x35\x43\xf0\xf0\x4d\x23\x78\xf8\xeb\x1b\x5e\x4c\x2f\x66\xc6\x4b\xc5\x96\x3c\x21\x6e\x25\x67\x82\x38\x97\xc0\xe9\x82\x17\x8e\x84\x6f\xfd\xbc\x33\x9b\xf9\x9c\x27\xa0\x43\xe2\x4e\x92\x9b\x8e\x23\xa1\x6f\xed\x80\xfc\xad\x19\x4a\x0c\x2e\x95\x2f\x17\x98\xef\x5b\x48\xc8\xd6\xd1\x6f\x97\xcf\xd5\x21\xf4\x1e\x8a\x3e\x53\x7b\x88\x83\xb0\x41\x21\xf4\xe1\xa8\xaf\x33\xa1\x32\x2d\x60\xe1\x5e\x46\x80\x60\x99\x6b\x73\xab\xcc\x3a\x83\x81\xb2\x85\xf9\x93\x85\xd3\xa6\x10\x66\xcc\xd1\x9d\xbb\xfa\x7c\x21\x41\xa7\xfb\xc0\xc6\x7f\xe8\x78\xaa\xf1\x60\xe8\xd9\x25\x06\xf1\x6f\x1d\xcd\x23\x47\xaa\x08\x57\x54\xcf\xfa\xfc\x1b\x3d\x8c\x5a\xe6\xee\xf5\xc9\x8e\x60\xbe\xeb\xda\x4a\x45\x63\xaf\x09\xe5\x3f\x1c\xbb\xec\x73\xff\x7d\xbb\x1c\xe1\x5e\xcc\x91\x40\x8e\x65\xa9\x0c\x3e\xbf\x63\x3f\x19\x95\x14\x41\x68\x7e\xde\xcb\xb6\x6c\x6a\x04\xe1\x81\xeb\x0b\x49\xd7\xe9\x0d\x34\x3e\xb2\x4b\x72\x5d\x11\x20\xb1\x95\x70\x74\xc7\x66\xdd\x52\xff\x10\xc2\x68\xe4\xe2\x06\xaf\x27\x73\x98\xf1\x51\x76\x0f\x89\x0f\x1e\x99\x4d\x78\x69\xde\x36\x6f\xa4\x6c\x2f\xc1\x58\xd8\x71\xba\x95\xf2\x2a\xc2\x07\xa7\xcc\xe4\xe6\xed\x4b\x08\x17\x56\x3f\xae\x5c\x53\x9f\xc1\x80\xdf\xd9\x66\x55\xb6\xb1\x3d\x41\xe9\xba\x7e\x46\xe1\xe4\x3d\x0c\xf8\x24\x8c\xbf\xbd\x19\xfb\xb0\x1b\xf9\x3c\x70\xcb\xfe\xea\x56\x82\x5c\xf4\x9b\xf2\xe9\x5d\x57\x08\xc5\xf2\xb5\xdb\x96\xfc\xdc\x46\x48\x9d\xda\x61\x2b\xb9\xaf\x8f\x85\x9e\x81\xf3\x8b\xd6\x8a\x4b\x11\x76\x7c\xd7\x6a\x5c\x20\x3e\x9d\xa0\x75\x67\xc9\x5f\x8e\xcb\xf2\x04\x65\xcf\xe5\x16\x7c\x61\x72\x04\x75\xc3\x53\x11\x21\xd6\xe9\x04\x89\x27\x9e\x21\x5d\x62\x3e\x84\x60\x89\xcd\x75\xdf\x14\x8a\x09\x83\x67\x9e\x18\x09\x6e\x2a\x62\x60\xbf\xf6\x5c\xd2\xe7\x5d\x8d\x84\x03\xba\x36\xc2\x6d\x8b\x8b\x09\xd5\x3b\x37\x8b\xfa\x1a\xdb\x10\x8e\xd4\xae\xde\x9f\xad\xb9\x67\x42\x71\xfc\x13\x54\xd0\xb1\x26\x7d\x02\x5e\x89\xbb\x79\x05\x0c\x3f\x25\xf8\xf7\xcb\x2b\xf3\xeb\xa5\x13\x7a\x7a\xad\x36\x66\x26\x7f\x23\xf8\x3c\x66\xd9\xbf\x1e\xdb\x51\x38\xb3\x44\xd9\xfb\xb0\x0d\xe1\xf1\x81\x55\x97\x1e\xc4\xad\x27\xdc\x31\x16\x99\xf7\xaf\xfc\x07\x0b\x2d\xb9\x44\x49\x55\x21\xc2\xca\x46\x34\xbf\x5a\x1d\xc7\x60\xb2\xf2\xd0\xe9\x28\xe3\x42\xc2\x48\xd5\x73\xb6\x66\xd7\x42\x82\xaf\xdf\xbd\xdc\x4c\x0e\x75\xc2\x7d\x85\xa3\x85\x57\x23\x76\x13\x06\xa2\x4c\xd2\xcf\x35\xab\x12\x76\x3f\xd8\x9a\x30\xe8\xeb\x36\xa1\x48\xd7\x4e\x0a\xe5\x1e\x14\x22\x64\xd8\x0a\x16\xb1\x97\x49\x4f\x28\xb5\xf6\x0a\xeb\xf9\xbf\x17\xb3\xf0\xba\x39\xa3\xef\xdb\x4d\x37\xc2\xe0\xf7\x37\xc2\x9e\xb7\x7c\x09\x05\xed\x06\xd3\x3c\x79\xf5\x08\x9f\x25\xb3\x8e\xa8\xe4\xaf\x26\x24\xcd\xb3\xed\x79\x59\xea\x47\xe0\x94\xbe\x6d\xc9\xf5\x92\x9b\x20\xbe\xe5\xcc\xba\xa3\xed\x16\x04\x85\xf7\x4b\x84\x3d\x96\xa9\x4d\xc0\xfe\xdf\xdd\x6c\x5f\x1b\x1a\x2b\x31\x59\x6f\x5e\x32\x4b\x45\x8a\xb0\xad\x71\xb0\xd8\xcf\xf3\x2e\xe1\xe0\xb7\xe2\xd5\xa7\x9f\x5f\x25\xa8\x84\x6d\x11\x5b\x95\xfb\x86\x85\x58\xe1\xa7\x29\xaf\x85\x2b\x08\x8d\xed\x3a\x53\x7b\xfb\xae\x10\xf6\xbf\xad\x66\x4e\x6e\x4a\x26\x0c\x06\x58\xaa\xf6\x8d\x15\x23\x19\xed\xc8\x79\x5f\x92\x59\x70\x92\x7b\x7a\x7e\xef\x00\x3b\x21\xeb\x87\x81\x49\x6d\x50\x05\xe1\xad\xdb\x3c\xe1\xff\x17\x4c\xcd\x99\xd6\x53\x8e\xb7\x2a\x91\x5e\xfa\x91\xef\xc3\x34\x4f\x06\x25\xb2\x9b\xdd\x58\x4a\x1b\x09\x12\x96\xda\x76\x0f\x4b\x3b\x59\xf8\x55\x94\x72\xbe\x5c\xd7\x85\xd0\x7c\x55\xb9\x49\x6d\xd3\x5a\x42\xca\x7d\xf1\x5b\x0d\xcb\x6f\x32\x38\x7f\x42\xbc\x7e\x9e\xe7\x0e\xc2\xda\x51\xfd\x78\xc1\xa8\xed\x84\xb2\x50\x9b\xdf\x3c\xe6\xb7\x19\x88\xa9\x71\x25\xcc\xb1\x71\x23\x94\xed\x78\xf7\x62\x6e\x5d\x35\x83\x8b\x95\x57\xab\x22\x9a\x4b\x18\x5c\xf8\x92\xb2\x8a\x6b\xcd\x24\x82\xcb\xad\x0d\xd1\xbc\xce\x5b\x08\xf6\x6a\x6c\x61\x67\xb9\xdc\x26\x14\xd5\x8e\x98\xc0\x9f\x7f\xdc\x19\xc4\x44\x46\x9f\xbb\x55\xda\xc8\xc2\xea\x9b\x73\x79\xd3\xd6\x3b\xd0\x38\x82\x93\x4f\xaa\xdd\xf2\x11\x24\x14\x75\x7c\x9c\x22\x58\xa7\x4a\x50\x7a\xdc\x5f\x16\x1b\xa4\x4d\x30\x4a\x29\xed\xc9\x7d\xe9\x4d\xf8\x43\x29\x1b\x24\x1a\xf7\x8c\xdd\x0f\x7b\x0b\xf3\x02\xbd\x08\xf2\x8f\xc3\x32\x2e\x7f\xf4\x23\xf4\x37\x70\xfa\x1f\xb4\xed\x66\xa1\xe2\x58\x64\x6b\x5e\x70\x28\x8d\x23\xe0\xda\xa1\xbd\xdf\x13\x1b\x59\x78\xbe\xb0\xe3\xc2\xbe\x12\x4e\x42\x45\x66\xcd\xe1\xe5\xda\xd6\x84\xba\x33\xc3\xd6\x7a\x22\x5b\x09\xda\xf9\x9e\x8b\xea\x0e\x9b\x11\x46\xef\x8a\xcd\xce\x98\xce\x46\x78\xe1\x54\xf0\xd7\x38\xed\x0e\xe1\xee\x91\x03\x73\x7e\x66\x9c\x27\xa8\x6e\x78\xbb\xf2\x59\x46\x12\x21\x9e\xff\xfa\x85\x9f\x01\xce\x04\xce\x93\xd3\x7b\x39\x57\x39\x4d\xc0\x4b\xf6\x9a\xf4\x2d\x56\x2e\x84\xd8\x27\x19\xc3\x8d\x66\x3b\x09\x27\x72\xc4\xb1\x55\x28\x9e\x41\xa9\x76\x2b\xc7\xe3\x86\x18\xc2\x64\xcd\x37\x69\x43\x0b\x43\x09\xfc\xec\xd9\x09\xe9\x6b\xad\x08\x03\x47\xd6\x46\x5f\xbd\x72\x84\x30\x5f\x69\x8d\xc3\xd9\x76\x6b\xc2\x22\xab\xe5\xaa\x16\xe5\x26\x84\xcd\xc7\x5a\x2f\x64\xed\x7f\xc7\x42\x4a\xab\xd0\xa9\x3d\xfd\x4b\x09\x97\xbd\x35\x0f\x34\x71\xb0\x26\x40\x4c\x95\x95\x73\x39\xbd\x93\x85\x94\xa6\x3d\xf9\x3d\x8b\xd8\x09\x15\x67\xdf\xa4\x5b\x5b\x47\x12\x8e\x17\x48\xa5\xf2\x0f\xe8\x13\x8e\xed\x7e\xf8\xf0\x8c\xb1\xda\x04\xa8\xdf\x3d\xd9\x20\xcb\x79\x88\xe0\xda\xec\x19\xa6\x16\xf6\x88\xe0\xa9\xe1\x94\xfc\xaf\x64\x0b\xdb\xdb\xf8\xae\xb6\x22\x3c\x98\x67\xab\xe7\xec\x95\xc7\xc2\xd7\x08\xdf\x32\xd1\x37\x1e\x04\x1b\xf3\x02\x13\xb7\xfe\x25\x13\x30\x92\x25\xb4\xd1\x7c\xaa\x1b\xa1\xaa\xef\x99\x68\xa1\x83\x08\xa1\x64\x85\x71\x29\x9b\x97\x03\xa1\xe6\xa6\xdc\xa2\xe5\x92\xbc\x84\xeb\x5e\xbb\x8a\xd7\x86\x0b\x13\x44\x75\xbb\xd6\x44\x04\xed\x62\x20\xeb\xab\xec\xc3\x33\x90\x49\xb0\x8a\x0a\x39\xf3\xa9\xaf\x91\x70\xa1\x31\xab\xb3\x6b\x0c\xdb\x3a\x5f\xdc\x00\xc7\x2d\x82\xbd\xc7\xa4\xf6\x6f\x15\xc6\x13\xd0\x50\x9b\x93\x22\xa2\xcf\x4e\x38\x5f\x6e\x9a\x63\xfc\x44\x9b\x10\x56\x54\xf1\x40\x58\x6a\x32\xe1\xef\x99\xe3\x6f\x67\xfd\x12\x23\xfc\x72\xbe\x96\x7f\x74\x51\x10\xe1\xd8\xe6\xcc\xa9\x16\x51\x7c\x84\x41\xbe\x00\xd1\x57\xa2\x31\x84\xe9\x96\x11\x9d\xde\xed\x53\x09\xad\x3b\xdf\x27\xa6\x5b\xcf\x23\xac\x8e\x11\xbe\x22\xf8\x9d\x87\x10\xc2\x26\x53\x3a\xff\xf4\x3d\x02\xd7\x37\xa1\xa2\xd9\x63\xe5\x5b\x9f\xdf\xcb\x33\xef\x8a\x58\xd0\xb8\x39\x28\x5f\x9a\xca\x41\xd8\xb7\x87\xff\xf8\xa1\x59\xbf\x58\xa8\xf6\xda\x6f\xaf\xa0\xf2\x6e\x02\x14\x37\x1c\xaf\xc9\x70\xf8\xc3\x82\x79\x84\xf7\xe1\x53\xa2\xab\x08\x7a\x7c\x6c\x0f\x7c\x15\xa6\x13\x3e\x18\x15\x8a\xfc\xbd\xb0\x95\x60\xc0\xbf\x69\xd7\xb1\xb9\x16\x84\x5f\x52\xf5\xda\x12\x72\xe7\x18\x18\x9c\xdd\x3d\xd4\xf2\xfc\x08\x61\x5e\x71\xe0\x93\xd2\xed\x96\x84\x1b\xcd\xbe\x57\xef\x7c\x8a\x20\x4c\xd1\x5c\x7a\xac\xa1\x7a\x0f\x41\x28\xe7\xe5\x4b\x6b\xbf\x9d\x84\xc1\x32\x39\x35\x01\x47\x55\x42\xd9\x47\xd7\xc8\xa0\x49\x0a\x04\xb7\x47\x4a\x77\x0e\x72\x0a\x10\xf4\xf3\x66\x34\x47\x3e\x30\x24\x5c\x69\x15\x29\xfa\xe0\xa8\x4d\x30\xb5\xfd\xa2\xed\xcc\x16\x4d\xb0\x6a\x14\x48\xaa\x4c\x55\x26\x3c\xcc\xfa\x64\x15\xe8\x66\x4f\x90\xac\xd7\xec\x7d\xa0\xab\x45\x18\x36\xfa\x95\xbe\x51\x3f\x8e\x70\xc3\xfb\x8f\xa5\x99\x20\x3b\x21\x3a\xe2\x76\xe6\xab\xfe\x06\x82\xc9\x82\x96\x45\xfd\x54\x4a\x58\x7a\x43\xd7\xfc\xb3\xf8\x0f\xc2\x55\xad\xba\x3b\xe1\x09\x03\x84\xe2\xab\xaf\xc4\x8c\xf3\x3e\x11\x34\xfe\xf8\x2b\xba\x1c\x92\x24\xbc\x1a\xed\xac\xd3\x29\x15\x22\xf0\xcb\x5b\x44\x69\xa5\x39\x13\x2e\x1d\x7b\xd9\xff\x46\xc8\x9b\xe0\x74\xaf\x62\xdf\x5f\x9d\x2a\x06\xed\xd5\x33\x32\xeb\x6b\x37\x13\x8e\x88\xe1\x68\xba\xcd\x01\x42\xaa\x6d\x62\xbd\xd9\x0a\x43\x06\x87\xcb\xaf\xdf\x5b\xa0\xef\x4f\xb0\x2e\x8c\x0e\xdd\xbb\xd0\x91\xb0\xff\x23\x4f\x75\xe3\xce\x40\x42\xec\x36\x41\xd5\x6d\xbb\x62\x19\xc4\x5d\xe6\x5d\x13\x1f\x6c\x4f\xd8\x7d\x7c\xd1\x8d\xdc\x1f\x0a\x84\xcc\xf9\x61\xbf\xfb\x22\xff\xb0\x50\xbe\x34\x72\xc6\x96\xa9\x7b\x19\xb0\xca\x3a\x17\xfd\x9d\x67\x40\xd0\x9d\xfd\x82\xdf\xfd\x83\x2d\xc1\xb4\x52\x34\xbf\x3f\xdf\x9d\x70\x50\x8d\xff\x35\x77\x6e\x20\xa1\xb1\xb0\x26\xf1\x84\x3c\x1b\xc1\x7e\xde\xa7\xec\x8a\xdf\xae\x04\x15\x07\x49\xdf\xe1\xf7\xda\x04\x31\xa1\x45\x1e\xcb\xff\x18\x10\x34\x78\xb3\x8a\x47\x02\xdb\x59\xe8\x38\x91\x3e\xef\xd0\x3d\x43\xc2\x73\xd5\x05\xd5\x22\x43\xbe\x13\x70\xe9\xee\xb5\xcb\xaf\x92\x57\x12\x42\xda\xda\xbe\x71\xee\x56\x27\x28\x3b\x04\x96\x70\x96\xbb\x4d\x80\x73\x81\xb2\x1b\x07\x59\x10\xbe\xfb\x26\x58\xf3\x68\xc8\x10\x32\x94\x25\x1c\x47\x75\x0e\x4c\x28\x4f\x52\xef\x38\x85\x66\xe5\x13\x24\xf3\x84\x1c\xd6\x7d\xb2\x26\xcc\xe3\x5e\xd4\x59\x33\xf5\x16\x83\x3f\x02\xb9\xc9\x5b\xb5\xac\x09\xa5\xd3\xf2\x66\x0c\x4e\x67\x27\xa8\x4a\x44\xff\xf1\x99\x3f\xc8\x02\xff\xb0\xd3\x94\x5f\x67\xd7\x12\xbe\x4c\xdd\xe2\x96\xc4\x69\x4c\x08\x70\x6d\x29\x92\xf4\x7e\xc5\x82\xc7\xe3\xaf\xa9\xfc\x4b\xec\x09\x27\x5e\x5e\x3b\xee\xcb\x69\x46\x98\x31\x3d\x75\x74\xe3\x0b\x1b\x42\x97\x6b\xc3\x90\x49\xa3\x31\xa1\x3a\x2a\xdd\x5c\x63\x9f\x04\xe1\xc7\xfa\x95\x09\x55\x73\x04\x09\x47\xe1\x1e\xef\x90\x60\x38\x01\x05\xc3\xbb\x84\xbd\x97\xc8\x11\xb6\xff\xe4\x5b\x63\xf6\x41\x86\x70\x36\xfd\xd9\x23\x19\x95\xf7\x2c\xf4\x5b\xb8\xe5\x65\xad\x5b\x4f\xe3\x50\x7f\x78\xc0\xfb\xbb\xc6\x4d\xc2\x8c\x76\xef\xfb\x4e\xde\x6b\x09\x1e\xf1\x73\x22\xf6\x36\x6d\x22\xb0\x05\x2a\x78\xee\xda\x60\x46\x18\x1c\x75\x79\xf1\xe1\xc4\x2c\x82\x49\xb6\xd8\xb9\x68\xbf\x55\x84\xfa\x2b\x8b\x62\x0b\x3b\x06\x59\x70\x31\x72\x79\xb7\x70\x54\x89\xc6\xc1\x99\x60\x78\xb7\x60\xf6\x1f\x16\x2e\xcb\xa4\xe4\x6e\xdb\x3a\x87\x30\x50\x18\xed\xbb\x4e\xc0\x99\xd0\xb2\xb1\x8d\xc9\xf7\xdf\x48\x50\x72\xdf\x12\xfb\x68\xab\x1e\x61\xaa\xf3\xeb\x86\x1f\x41\x63\x2f\xd3\xb3\x69\x1b\xd1\x23\x4d\x48\x3a\x30\x27\xa4\x69\x85\x28\xe1\xda\xb1\xe8\x98\xc4\x8a\x28\xc2\x86\x52\x7d\xd7\x7b\x2b\xc2\x18\x58\xbd\xfc\xd4\x6f\xb0\x86\x61\xc0\xb5\x67\x92\x46\x90\xf0\x1e\x42\x8a\xfe\xb7\xb4\xdf\x4f\x34\x08\x87\xb5\x73\x16\x2c\x1b\xee\x66\xe1\xe7\xd2\x1a\xa7\x34\xe1\xb9\x34\x0e\x91\x60\x31\xa5\xcf\x07\x57\x10\x6e\xcf\x0d\xb0\x4a\x78\x39\x97\x50\x73\x89\xe3\x72\x60\xc9\xd2\x09\xf0\x29\xf4\x77\x3f\x5b\xfa\x92\x85\x60\xe9\x6b\x57\xd6\x9b\xb9\x10\xb2\xa7\x4a\xfd\x32\xea\x32\x27\x5c\x3d\xf5\xdd\xf9\x6d\xdd\x71\x42\xe2\x40\xbb\x88\xc0\xc2\xed\x04\xa7\x80\xa5\xde\x43\xa7\x7d\x08\x62\x27\xe2\xe7\xad\x98\xea\x4c\xe8\x8e\xb0\x9b\x11\x78\xd4\x83\xb0\xfc\xa5\x8c\xfb\xaa\xc6\x63\x0c\xb0\xa6\xea\xba\xd0\x6c\x27\x42\x4d\xfd\x9d\x19\xcb\xb6\x18\x11\x56\x2c\x6f\x69\x32\x62\x52\x08\x81\xf2\x62\xce\x8a\x9f\x9d\x08\x21\x55\x3d\xdb\x9a\x84\x2f\x13\x66\x1a\x9d\x2d\x3e\x2c\xa6\x4f\x08\x4e\x15\x19\x91\xdf\xa1\x4a\x68\x8d\xeb\x7a\xb5\xa3\x70\x11\x21\x5a\xe8\x5a\xe8\xcd\xcd\x83\x2c\x4c\xcf\x36\x09\x61\x94\x15\x09\x2e\x8f\xb6\x9d\x3e\xb9\x6e\xee\x04\x54\x1e\x1e\x3c\x12\x1e\xf4\x83\x35\x72\x29\x2c\x3a\x93\xbb\x92\xc0\x6b\xf4\x5d\x51\xde\xd1\x80\xe0\xc1\xbe\xfb\xeb\xdf\x0d\xfa\x84\xf7\x73\xc3\xea\xef\x98\x25\x10\x4e\xad\x79\x26\xce\xf6\x50\x8f\xd0\x16\x25\xff\x53\x77\xd5\x1b\x16\x96\x45\xb8\x29\xb2\x6f\x3c\x45\x58\xf5\x2a\x66\x71\x7f\xba\x38\x21\x84\xd5\xae\xff\xe1\xec\x1a\x42\xd6\xbe\x1b\x72\x76\x53\x8c\x09\x8f\xea\x76\x7e\xb1\x98\xa6\x4c\xa8\x16\xd6\x11\x11\x92\x93\x25\x14\x1d\x8a\x77\x71\xb8\xa8\x4b\x58\xf0\xf1\x49\xa9\x7d\x51\x0c\x03\x7f\x87\x67\xf6\x29\xcd\xfa\x84\xc5\xcf\xfc\x17\x75\x2c\x90\x67\x90\x36\x32\x5b\x68\xd7\xa0\x0d\x21\x2a\x45\x75\xfa\xd1\xfb\xb3\x09\xf6\x7a\x05\x6b\x22\x2f\x73\x13\xee\x5c\x99\x91\xa2\xea\x91\x46\x70\xdf\x76\x21\x57\xc0\xb7\x98\x50\x00\x1f\xbf\x3c\xbd\x63\x84\x03\xe5\x19\xfe\x66\x9e\x1e\x13\x10\x17\x57\x9e\xc8\xfd\x57\x8c\xb0\x32\x86\x57\x78\xc5\xa8\x10\xc1\xba\xf5\x97\x63\xdc\xe0\x10\x0b\xd3\xe7\xc4\x0d\xaf\x3f\xe0\x47\xe8\x5a\xdb\x45\xc1\x6a\xcb\x08\x92\x92\xed\xd7\x56\x28\x13\x61\xc6\x72\xbb\xf9\x17\xd7\x17\x11\xf4\xee\x5e\x37\x0f\x69\xd4\x24\x04\xe5\x1c\xfa\xfd\x59\x7c\xdf\x04\x98\xe8\x66\x29\x7e\x19\x43\x5b\xf0\x0e\xdb\x87\xd5\x3b\x09\xa7\xce\x3e\x72\x4d\xf5\xf3\x21\x74\xb2\x1a\x7a\xb9\x93\x0f\x13\x9e\x48\x59\x0a\xab\x0b\x5e\x25\x88\x94\xf5\x36\xef\xfa\xbb\x9b\xc0\x7d\x37\x86\x19\x12\x61\x11\x56\x88\x7e\x99\x5d\xfe\x69\x09\x81\x7d\x45\x6d\xb7\x99\xba\x12\x21\x79\xe3\xef\x87\xd6\x86\x1b\x08\x0f\x9f\x45\x7a\x97\x84\x39\x13\x2e\x5c\x6b\x2b\x9b\xb1\x5a\x8a\xf0\x71\x46\x4b\x9e\xc5\x88\x2e\xe1\x7e\x26\x7b\xa2\x89\x9d\xe0\x04\x98\xdd\xb1\x64\xcb\x78\xf0\x8c\x85\x1d\x87\x32\x44\x3a\x9c\x42\x09\x9a\x6f\xae\xc5\x36\x34\xe4\x33\xb8\xfb\x49\x6b\xed\xeb\x27\xbb\x09\xd9\x7b\x4e\x70\x69\x3a\x49\x10\x3c\x9e\x86\x6b\x7c\x4d\xed\x66\x61\x72\x8c\x96\xef\xd3\x8d\xee\x84\x19\xa9\xb2\xf4\x51\x70\xef\xff\x82\x4c\x8f\x6c\xe3\x8c\x1b\x43\x2c\xbc\x3d\x7b\xba\x25\xcb\x78\x29\x61\xea\x19\x51\x21\x31\x1b\x6e\x42\xd9\x7a\xeb\x6d\x32\xf5\x27\x27\x80\x3d\x46\xa7\xe3\xe2\x0f\x07\x82\x89\xc2\x55\x69\x0d\x83\xb5\x84\x8f\x4a\xa2\x46\x7b\x5c\x97\x13\x06\xed\x5d\x7c\xeb\xbe\xc6\x12\x8c\xbe\x47\x1f\x3b\x24\x78\x6a\x02\xae\xde\x8b\xd8\xa0\x91\xe5\x4e\x78\x7d\x2f\x7c\xde\xab\x8b\xc2\x84\xdb\xef\xda\x64\x8d\x3d\xcb\x59\xe3\x50\xe6\x6b\x5c\x12\xe8\xfc\x9c\x85\xdf\x22\x1c\x5f\x72\xf6\x05\x13\x24\x02\xb8\x2a\xbd\x16\xf7\xb0\x90\x9e\xf7\x45\xb9\xcc\x51\x92\x10\x99\xfe\xb8\x23\x6f\xc5\x54\x82\xcb\xa9\x5f\xaf\xd5\xb7\xde\x24\x5c\x13\xfc\xe3\x9d\xbf\x7e\x33\x61\xca\x49\x96\x76\x5f\x74\x23\x0b\xa7\x1e\xcf\x52\x7d\xfb\xed\xd7\x04\xc4\xbe\xa8\xfe\x24\x61\x54\xc2\x8c\x34\x68\xde\xaf\x94\x9f\x45\x18\x09\x99\xf6\xe2\xfb\xe9\xdd\x84\x19\x76\x32\xb2\x95\x8b\x76\x33\x28\xb8\x93\xef\xbf\xf7\x64\x32\xe1\x47\x77\xc2\x25\x5d\x51\x2e\xc2\x36\x37\xf6\x98\x29\xd2\x2a\x04\xbf\x7b\x35\x9b\x1b\x6e\xae\x25\xc8\x3e\xf3\xe8\x57\xf2\xfa\xc2\x82\x16\xbf\xe3\x91\xb7\x21\x93\x68\x1c\x06\xfb\x56\x71\xc7\x1c\x28\x62\x10\x26\x66\x79\x70\xab\x29\x0f\x21\xbd\x28\x24\xf3\x46\x80\x1e\x61\x28\xa0\x55\x32\x6e\x53\x7b\x25\x7e\x7d\xf5\x4d\x36\x15\x96\xa2\x71\x70\xbc\xae\xbd\x25\x3a\x5a\xcd\x42\x46\x0c\xc7\x35\xb9\x64\x23\xc2\x57\xb5\xcf\xc6\xe1\xa9\x2d\x0c\x78\xdf\x4f\x19\x8a\x2d\xbd\xc6\xa0\xe5\x62\xab\xaa\xb9\x72\x14\x21\x76\xb9\xe9\xac\xa8\x8a\x67\x0c\x7a\x52\xe2\xbf\x6c\x0c\x1f\x3b\xf2\xae\x6e\xd8\x6d\xfd\xb6\x81\x60\xab\x6d\x77\x9c\x4f\x90\x45\xd8\xae\x40\x81\x2b\xee\x14\x30\x88\xcc\xce\xe7\xa9\x39\x1e\x47\x48\x7d\xf6\xf7\x74\xfc\x94\x49\x84\x47\x1e\x3e\xaf\x45\x1e\x3b\x12\xd2\x47\x93\xae\x70\x05\x9c\x26\x68\xbe\x2d\x4e\xed\x37\x5d\x4e\x68\x7e\x72\x64\x78\xee\xa1\x6b\x04\x49\x9b\x13\xf5\x1a\xe7\x0d\x09\x9c\x7d\xd3\x57\x7e\xf0\x14\x22\x38\xdb\x66\xcd\x4d\xbe\xc1\x4b\xf8\xe4\xbd\x38\x44\xb1\x6a\x26\x61\xb3\xa8\x44\x80\xa9\xcc\x25\xc2\xc3\xf2\xba\x60\xbf\xa4\x29\x04\xf7\xb7\xce\x6c\x2b\x7f\x65\x10\xae\xbf\xd1\x9d\xa3\x9e\x57\xc4\xfc\x1f\x3e\xfe\x3c\x98\xcb\xff\xfd\xff\xff\xd3\x6a\x6b\x21\x91\x08\x65\xc9\x52\x4a\x59\xb2\x3d\x8e\x88\x12\x15\xa2\x94\x25\x4b\x28\x52\xa9\x24\x42\x22\xb4\x47\x44\xd6\x44\x65\x29\x59\x2a\x59\x73\x52\xa4\xb2\xa5\x88\x90\xb2\x94\x92\x0a\x85\x9b\x4a\xfd\xc6\x73\xe6\xfb\xf2\xf8\xcc\xbc\xe7\xf7\xdf\x65\xae\xc7\xbd\x99\x66\x38\xcf\xf3\xb8\xff\x03\x8a\xe6\x21\xe7\x2b\xa6\x39\x11\xea\x4a\x9f\x99\x4a\x35\xef\x24\x9c\x28\x3d\xb8\x30\x77\x41\x29\x81\x75\x4a\x0c\x71\x71\xc9\x84\x47\x5d\xaf\x57\xc6\x7f\xf9\xc4\xc2\xbc\x08\xe3\x5f\x66\xf6\x8b\x69\x02\xd7\x4a\xde\x2f\x59\xa5\x59\xcc\xc2\xb3\x65\x9d\x47\x03\xec\x3f\xb0\xd0\x16\x5e\xb9\xe9\xe0\x2e\x1d\xc2\x88\x00\x4f\xf6\x67\x41\x1b\xc2\xb7\xb2\x9d\xc5\x56\xb1\x3a\x04\x5d\x87\xd9\x87\x6d\x9e\x7e\x65\x41\xb0\xcc\xa5\xd4\x4c\x6d\x05\xa1\x73\x93\xfb\x2d\x3a\x26\xc5\x0e\x73\x1d\x26\x30\x46\x9e\x10\xf4\x2e\x62\x76\x77\xe6\x47\x16\x2c\x67\x44\x4a\xf8\xe8\x1b\x11\x96\x65\xfb\x2c\x1a\x30\x92\x22\x34\xea\x7c\x0a\xcf\x51\xe3\x21\xb8\x38\x7b\x88\x48\x4f\x2d\x26\x88\x8c\x98\x5e\xaf\xc8\x09\x24\x88\x84\xa8\xc7\x45\x6b\x78\x11\x34\xf6\xe6\xe9\x65\x5f\xf5\x21\x74\xf3\x30\xfb\x38\xf3\xf7\x12\x6e\x50\x8f\xcf\x96\xe9\xe2\x84\x2b\xd1\x9e\xd7\x5c\xf5\xc7\xfe\xbf\xbf\x47\xb6\x9b\xad\x08\x45\x7f\x3d\x1f\xb3\x55\x9e\x26\xa0\x76\x8a\xbb\x66\xcd\x9a\x6e\x16\xb6\x1e\xce\xec\x54\xcb\x5c\x48\xe0\x32\x91\xf7\x3b\x7f\x2c\x9c\xe0\x3c\xe3\xc7\xaf\x2c\x57\x23\x02\xe3\x69\xbe\x35\xdf\x69\x2e\xc1\xfc\x7a\xa2\xdc\x7c\x5e\x69\x42\x79\xea\x33\xda\xf9\x6c\x1f\xe1\x58\x1c\x47\x6e\xe7\xc1\xed\x84\xfe\xae\xd2\x4b\xc5\x0f\x57\x10\xec\x62\x86\xde\x47\x3a\x64\x33\xf8\xe8\x2f\xd8\xd6\xe9\xa8\x47\x98\x33\xf7\x8c\xf8\x56\xa1\xa5\x84\x61\xa3\x28\xb7\x43\xf7\xfd\x18\x1c\xbd\xc7\x54\xbd\xbd\xe5\x48\x38\xf5\xfb\xf1\xe0\xa4\xed\x2f\x08\x4b\x7b\xcd\x25\xd2\x6e\x28\x13\x6a\x9f\x57\x69\x75\x9f\xff\xc2\x02\x99\xbb\x24\x14\x3e\x09\x20\x34\xa8\x38\x98\x6b\x1e\xb5\x21\x58\x85\x86\x1e\xf1\xe1\xf7\x27\x68\x7b\x6c\xbc\x7f\xf5\x83\xeb\xf8\x57\xe2\xa4\xd2\x33\xda\x40\x78\xeb\x60\xd2\x73\x4f\x3a\x90\x50\xd8\xdc\x58\x52\x33\x6f\x2e\x21\xdc\xbe\xbf\x75\xb3\xc9\xf8\xbb\xdc\x6f\xea\x3e\x9e\xf3\x8b\x09\xf9\x3c\x0d\xf6\xbf\x5e\x6c\x23\xdc\x14\x2a\x4d\x09\xd7\x3d\x46\xb8\xc9\xba\xe4\xac\x51\x6f\x47\xa8\xd4\x4d\x55\x3d\x25\xb3\x8b\x70\xb5\x6e\x77\x55\xd8\x43\x23\x82\x77\x82\xda\xab\xd6\xf4\xe7\x84\x0e\x74\x49\x75\x3b\xa7\x12\x12\x4c\x39\xcc\x8d\x2d\x8b\x08\xf7\x6b\x67\xa7\x78\xdb\xee\x23\xec\x15\x48\x57\x7e\x55\xed\x48\x58\xe7\x1f\x36\xe3\xc2\xdc\x22\xc2\x97\x86\x7a\x37\xf7\xe4\x6c\x82\xe6\xa3\x33\xaa\xb3\x67\x3d\x23\xec\x6f\x9a\xbd\x77\xaa\x78\x1b\x21\x2c\x47\xdf\x61\xf3\xc3\x97\x84\x1b\x6f\x66\xde\x5a\x2d\xf0\x84\x20\x78\xdf\xb5\x3e\xc0\xa8\x91\x90\x1c\x5f\x97\xf4\xe7\x4a\x17\xa1\xfa\xe4\xcb\x69\x3b\xbe\x3c\x21\xd8\xed\xaa\xfd\x6d\x5e\x19\x41\x90\x29\x8e\xe5\x7f\xfb\x3d\x9a\xe0\xff\xc5\xf2\x76\xdd\xa1\x28\x82\xac\xce\x83\xc3\xd3\x8e\x86\xb3\x95\x8d\x97\xc3\xd4\x4e\x2a\x9f\x26\xfc\x3e\x1e\x71\xba\x77\xee\x6e\x42\x96\x80\x36\x8f\x7e\x4d\x1e\xe1\x75\xe7\xf3\x65\xbf\xb3\x0e\x10\x44\xb8\x8f\x3c\xba\x6d\x68\x43\xd8\xf7\xc2\xe6\xc4\xc6\xf4\xf1\xdd\xcb\xc4\x34\xfc\x8e\x24\x17\xc1\xf8\x45\xca\xf2\x4f\x03\xa1\x84\xfd\x12\xa3\xfa\xab\x37\xde\x25\xa8\x39\x9a\x8c\x7d\x1e\x2f\xf7\x7d\xaa\x32\x76\x09\xec\x21\x74\x8d\x2d\x90\x5a\x33\x93\x93\x70\xed\xf0\xaf\x23\x41\x8f\x7d\x08\x3e\xf5\xd7\x97\x28\xeb\xf6\xb2\x26\x10\xa6\xb8\xad\x36\xf5\xab\x32\x4d\xc0\xf0\xdd\x69\xbf\xbc\xa1\x7e\x16\x6e\x0d\x48\x4c\x6e\x29\x8b\x22\x0c\x4c\xfa\xf6\x23\xee\xd2\x7a\xc2\x7d\xef\x9c\x4d\x8a\x5f\x73\x18\xf4\x87\x6b\x05\xc6\x6c\xd2\x27\x0c\xfe\x72\xb9\xb7\xe0\xad\x32\xa1\x2b\xb3\x87\xff\xeb\xf5\xe5\x04\xfb\x54\xae\xa1\x7d\x92\x32\x84\x21\xb1\xbd\xe7\x1a\x9c\xa5\x09\xff\xfa\xa7\xee\x54\x0e\x7a\xc2\xc2\x09\x26\xbe\xa9\x41\xf5\x1f\x0b\x05\x5d\x1d\x3c\x11\x27\x2a\x19\x70\x3e\xdb\xd0\x1c\x77\xca\x9c\xd0\xd5\x5f\x74\x4a\xb9\x28\x9f\x60\xec\xd4\x1b\x3b\xf8\x72\x29\x41\x4c\x4b\xf4\x95\xe6\x51\x03\x02\x7a\x76\x64\x5e\x5f\x61\x4b\x50\x56\x5e\x1a\xb1\xb8\x78\x35\xc1\x44\x4a\x3a\x75\xd1\xf9\x79\xe3\x5f\x48\x8f\x4f\x7e\x36\x01\x6c\x88\xf5\x5e\x76\xb2\x3b\xd3\x95\x70\xd3\x46\x71\x71\xfa\x33\x0d\x36\xa4\xcf\xef\x71\x15\x16\x15\x21\xf4\xc9\xed\xb9\x79\x5b\xcc\x89\x30\x4b\xf5\xd4\x27\x51\xcf\x75\x84\x0d\x97\x45\xc3\x16\xf7\x04\x13\x52\x0f\x89\x07\x08\x4b\x94\x13\xac\x46\xd5\x03\x9c\x5d\x8a\x08\xee\x33\xe5\xcc\x72\x3c\x3b\x09\xdf\xdf\xe7\x7d\x29\x96\x2e\x27\xe8\x9b\xdd\x39\x90\xaa\x60\x45\xb8\xc0\xc9\x5a\x75\x7f\x43\x20\xc1\x52\xea\xe7\xa8\x58\x64\x20\x41\xf6\xe6\xb1\xe4\x25\x45\x61\x0c\x2a\xd7\x78\xce\x5e\xd1\x6e\x4d\xf8\x10\xf2\xfb\x74\x77\xe0\x29\xc2\xac\x32\xb9\xa1\x0b\x86\xeb\x08\x5e\xdb\x93\x83\x64\xd6\x68\x12\xbc\x4d\x76\x87\xcd\x2c\xfd\xc2\x82\xc9\xce\x57\x6f\x6c\x5b\x84\x08\x17\x13\x5e\x88\x71\x28\x8c\x5f\x0b\x15\x42\x0d\x92\x1a\x8d\xd9\x0a\x4b\xe2\x49\xcb\xef\x47\xb9\x84\xbb\x9e\xe2\xda\xd9\xe6\x15\x2c\xc8\x18\x2e\x51\xb7\x7c\xae\x47\xb0\x5e\x6b\xbd\xdb\xe5\x62\x2a\x83\xad\x12\xbb\x8f\xff\x57\x44\xab\x37\xc6\xaf\x3b\xd6\xce\xc2\xf7\x81\xed\x4d\x8a\xe2\x1f\x08\x72\x1d\xe7\xcf\xcf\xa8\x49\x25\x3c\x3b\x13\x7c\x41\x73\x74\x1d\x1b\xb2\xd3\xf4\x12\x82\x7d\x33\x08\xc3\x51\xfa\x71\xa1\x53\x1c\x09\x5e\x9e\xf9\x43\xcd\xae\xfd\x2c\x34\xf6\x4b\xd7\xcc\x3e\x6f\x4c\x58\x7e\xa1\x47\xc4\xd3\xe6\x32\x33\x51\xfe\x07\xae\xa0\xa9\x46\xc7\x0d\xac\x09\x63\xeb\xbd\x2a\x6f\x4e\x1a\x65\x81\xfb\xd9\xc2\x65\xaa\x9a\x7b\x09\x7e\xb7\x15\x67\x25\x26\x19\x10\xde\x57\x5f\xd6\x6e\xca\xbb\x41\x98\x63\xee\x36\xa8\xd0\x1a\xc2\x20\xdc\x71\xde\x9d\x5b\x5d\x07\x08\x33\xe2\x3c\x6b\x79\x75\x94\x08\x59\xd9\xd7\xf6\x73\x1e\x08\x22\x28\x18\xdf\xbe\x18\x32\x39\x86\x70\x3d\xf0\xa6\x8f\xcc\xbc\xc7\x04\xc3\xa9\xc7\x95\x8e\x8c\x38\x10\x3c\xbd\x2f\x8b\x06\x2c\xdf\x46\x18\x3e\x7a\xf2\xb3\xea\x4a\x49\x82\xa1\xc1\xd7\x98\x8a\x39\xb6\x84\x7a\xc3\x63\x07\x13\x97\xde\x60\x20\xe0\xe5\x6a\x2b\x56\x6d\x46\xf0\x37\xd1\x0d\xfb\xd1\xad\x47\xb8\xa4\xf2\xb6\xe8\x6e\xb7\x28\x21\xf6\x34\xf3\x72\xd1\x35\x59\xc2\x09\x8d\x85\x73\x65\x82\x16\xb1\x81\x2f\x55\x3c\xe3\x7a\x63\x3c\x0b\xd3\x66\xe6\x6d\x49\xb7\x57\x23\x44\xce\xca\x38\xd2\x68\xef\x40\xb0\xdc\xd3\x6a\x16\xf4\xda\x96\xd0\xfe\x6d\xd8\x3f\xee\xf8\x16\xc2\x47\x6e\xfe\xcd\x47\xea\x6e\x10\x5a\xc6\xbe\xbe\x17\x72\x39\x40\x10\x7a\x53\xaa\x1b\xeb\xb2\x9b\xb0\x24\xc5\x5b\x67\xe9\x96\x23\x6c\x25\x74\xd1\xd5\xb8\x75\x97\x1c\x09\xe5\x4f\xb7\xf7\x7f\x59\x66\x4a\x70\x80\x97\x75\x4e\x7b\x1a\x83\xb2\xd1\x99\x96\x1f\x78\x24\x08\xa7\x86\xb3\x14\x72\xa7\x97\x12\x2c\x24\xdc\x3f\xde\x1f\xc7\x5d\x85\xa0\xad\x23\x42\xa5\x84\x33\xbd\x76\xdf\x74\x66\x95\x12\x3e\x2d\xbc\x1a\xf8\x9d\xdb\x96\x60\xe0\xb8\xe9\xd0\x9f\xf7\xa5\x84\xd8\xf8\x1b\xc7\x05\xed\x1e\x11\xae\x69\x67\x2a\x96\x39\xf6\x30\x68\xfe\x7b\xeb\xc4\xfd\xe4\xbb\x84\xb8\xa8\x3e\x8d\xe1\xe6\x8f\x0c\x12\xbd\x15\x8a\x5a\x64\xcb\x09\x09\x23\xf7\x53\xac\xe6\x9c\x24\x8c\xde\xa9\x0b\x77\xf0\x7e\x4a\xf8\x2e\x9e\x63\x76\x67\xc5\x61\xc2\x50\xe1\xba\xf7\x19\xe3\x70\x68\x1e\xd5\x2a\x9a\xb4\x8b\x10\x1b\x71\x7d\x4b\x42\xe6\x41\xc2\x5a\x93\x0d\xa9\x47\x57\x4e\x23\x0c\x86\x1b\x6c\x2d\x5a\x3c\x95\x50\xf2\xc9\xbf\xb0\x43\xe1\x25\x0b\xf3\xdb\xdd\x9c\x5b\x1f\x98\x13\x96\x7e\xd6\xec\x33\xdd\x6b\x45\xd8\x68\x3e\xcf\xd7\xcb\xc8\x9d\xd0\x2d\x68\x33\x67\x92\xf7\x56\x82\xf8\xb6\x77\x4e\xb2\x19\x1c\x84\x75\xdd\x5a\x49\xa3\x9d\xbc\x84\x1e\xa5\x49\xb7\x27\x43\x8f\x0d\x35\x53\xa3\xaa\xfd\xa6\x8c\xb2\x26\xb0\x5d\x6b\xd7\xce\xe6\x6b\xfa\x34\x01\x43\x77\xb5\x79\xe5\xc1\xa5\x2c\x7c\x53\x3b\xeb\x73\x2f\xc3\x9d\xa0\x3a\xa6\x2b\x74\x7d\xc4\x97\xc0\x19\xbb\xb9\x44\x25\x70\x1d\x1b\xde\x71\xbd\x58\x9f\xc5\x3a\x44\xf8\x53\x02\x71\xeb\x54\x75\x82\xd2\x9d\xe3\x1d\x59\x1f\x96\x10\x46\x2e\x0c\x4a\xbc\x11\x12\x64\x10\x76\xe7\x66\xa9\x79\xb8\x14\xc1\xae\xe5\xed\xad\x59\x82\xbb\x09\xc3\x22\x1c\x67\x3b\x63\xd5\x09\x16\xf9\x77\xb3\x8f\x72\xac\x22\x54\xcf\xe2\x77\xb6\xbf\x9d\x45\x10\x0b\xee\x55\x57\x2a\xbd\x48\xf8\x78\xdf\x2b\x5a\xb8\xfa\x0e\xe1\xd9\xae\xba\xfe\x91\xb8\x30\xc2\x4d\x89\x9f\xc3\x0f\x83\x4e\x13\x86\x5b\x77\x94\x71\xf9\xe5\x11\x02\x83\x8d\xe6\x6b\xcb\x67\x32\x28\x89\x7f\x1a\x6a\x57\x5e\x40\xb0\xed\x37\x98\xf6\x1f\x3a\x64\xe2\x37\xc7\xb7\x17\x10\xb8\x5b\xc2\x13\x75\xe6\x29\x11\x04\x57\xae\x6c\xfc\xbc\x6d\x1a\x21\xa1\x35\xc1\xfb\x7a\xe5\x16\x02\x2b\xed\x5a\x44\xcf\xfa\xb7\x2c\x1c\xea\xa8\xd2\xe2\xb3\xb8\xcd\xe0\xe5\x9e\x2b\x51\x93\xf9\x15\x09\xe7\xcc\x3f\x0d\x04\x57\xed\x24\x6c\x3d\x16\x92\xfc\x84\x15\x42\x88\xf9\xb7\x2c\x70\xc9\x1a\x33\x42\x4f\x97\xd8\xd3\x75\x67\x17\x10\xb6\xca\x3f\xf4\x70\x0e\xb2\x20\x34\xce\xb2\x8a\x09\x68\x98\x4a\xf0\xb4\xe5\xbd\x21\x24\xf7\x86\x41\x93\xbf\xc4\x5a\x13\xab\x10\x42\x6f\xcf\x87\x4d\xfb\x6a\xbc\x08\x26\x57\x12\xbe\xcc\xf0\x3a\xc2\xe0\xd3\xc3\xab\x5f\xb2\x9f\x3b\x11\x7a\x05\x5f\x68\xb4\xb9\xcd\x24\x18\x94\x74\xee\xd6\xe4\xcb\x60\xc3\x9b\x8c\xbd\xa1\xb5\xbe\xb7\x08\xad\x4e\x2a\xfa\x81\x77\xb7\x10\xda\x3c\x53\x3f\x87\x6f\x91\x21\x54\x3f\x33\xa9\xf3\x8e\x9a\x46\x88\x9f\x7a\x40\x79\x97\xb1\x08\x1b\x04\xe7\xaa\x68\xe8\x56\x35\xb3\x60\x25\xbc\xd9\x7e\x9b\xaa\x25\xe1\xfa\xfe\xa7\x15\x93\x7f\x58\x10\x62\xea\x47\xbf\x1c\x34\x1d\x5f\x26\xab\x3d\x4b\xdf\x08\xd4\x31\xe8\x4c\x2d\xac\xda\xbe\xcf\x9c\xf0\x4b\xc3\xc2\x3f\x9b\x43\x9d\xf0\x51\xdc\xb9\xe2\xa3\xd4\x3a\x42\x96\xb2\xe4\xc9\xd2\xc0\xfb\x04\xf5\x1e\xf1\x2f\x46\x47\x4d\x09\xdb\x8c\x3f\xf8\x71\x9f\xeb\x61\x61\xa3\xd3\xa0\xa2\xd5\x69\x0d\x9a\xc0\x94\x9c\xae\x45\xf1\x9f\x7f\xb1\xc0\x24\x9b\x5a\x7d\xf1\x1b\x61\xa1\x6b\x68\x41\xde\x4c\x5b\x49\x9a\x40\xa3\xdd\x5a\xcb\x7b\x17\xea\x4b\x26\x60\x7d\xb3\x44\x3d\x6c\x20\x8d\x26\xb0\xf6\x44\xe3\xa2\x3b\xb3\xff\xb2\xb0\xa8\xce\xc0\x87\x97\xd5\xc5\x42\xf8\xdb\x9b\x1a\x92\xd7\xdf\x97\x80\xfb\xdc\x29\x89\x86\x4b\x27\x69\x02\x8b\xef\xe9\x1b\xf8\xb4\x9d\x20\x78\xd7\xd8\x3c\x37\xf8\xae\x46\x70\xb9\xdc\xdd\x7a\xbc\x49\x95\x10\xd0\x6f\x25\x72\xf7\xbb\x34\x61\xa7\xae\xcd\x68\xf4\x5e\x33\xc2\xe8\x89\x27\x6f\xee\x3d\x97\x22\x2c\x3b\x6d\xaf\x7e\x63\xde\x59\x42\xc4\xa1\x5f\x6d\xe6\x7d\xaa\x84\x55\x63\xd7\x75\xec\xf3\x7e\x97\x60\x51\x56\x22\x8f\xc5\xf0\x39\x82\xcb\xa7\x53\xb9\x1a\x2a\x53\x09\xaf\xef\x75\x2e\x8f\xe5\xbc\x4b\x28\xa9\xb1\x93\xd0\x7f\x73\x82\x70\xcb\x4f\x23\xd1\x71\xab\x2f\xa1\xc6\xed\x4b\x68\xb7\x97\x19\x61\x95\x68\xba\xb2\xee\x33\x0b\x42\xe9\xcb\xe1\xe2\x82\xe5\xb1\x84\xb3\xfb\x03\x9c\xef\x3e\xbe\x3c\x7e\xdd\x59\x6c\xff\x2b\xc2\x84\x10\xd4\x58\x60\x9e\x34\x72\x92\xc1\x7a\xf7\x50\xc5\x48\xd5\xf5\x84\x3d\x62\x1d\x7e\xcd\xaa\x8b\x09\x23\x73\x7b\xfc\x14\x0d\x26\x11\x4a\xbb\xc6\xfa\x43\x0d\x3d\x09\x3f\xa6\xd5\x21\x41\x23\x8e\xf0\xe5\xf5\xd6\xd0\x41\x75\x7b\x42\x98\xc7\xc8\x3e\xf7\x69\xbb\x68\x74\xaf\xde\x9a\x3b\x5b\xe7\x12\xca\x9c\x16\x3e\xb7\xd5\xdc\x4c\x38\xae\xbf\x62\x5d\xdc\xeb\xd3\x6c\x30\x30\x6c\x14\x74\x39\xbb\x88\x20\x3d\xe4\x9c\x6d\xdb\x2d\x46\x48\x39\x7c\x75\xf5\xea\x01\x4e\x36\x30\x47\x5b\x57\xb5\x19\x08\x11\xb8\xa6\xbc\xd6\x33\x13\x9f\x4b\x98\xd1\xda\xe1\xa6\x73\x4c\x81\x60\xba\xef\xfb\x63\x87\x5f\xa2\x84\x8d\xf7\xea\xa2\x14\x53\x87\x58\x30\x3a\x54\x2b\x68\x1a\xa1\x4f\xe8\xc8\x5c\x51\xb2\x57\x61\x80\x85\x7d\x3e\x6f\x6b\xf8\xf7\xaa\x11\x0e\xbd\xd8\xe0\x23\x3f\xc3\x90\x70\x93\x4b\x7f\xaf\x8b\xd8\x45\x82\x51\xc8\x76\xed\x4e\x93\x53\x04\x9c\x71\xff\x9d\xf3\xd4\x97\xd0\x3b\xdb\xcd\xfc\xce\xb6\xa1\x12\xa4\x25\xe6\x85\x55\x79\x8e\xff\xb2\xd0\x95\xe7\x6f\x7f\x48\x13\x16\x3c\x18\xdd\x90\xb4\xf3\x39\xe1\xb1\xda\x82\xea\x80\x90\x7e\x16\xde\x34\x08\xef\x90\xb5\x9b\x4c\xe0\x6f\x34\x0e\x89\xc9\x9a\x46\xa8\x6e\xb3\x6f\x36\x0a\xfe\xc2\xc2\x32\x37\x51\xdd\xd9\x35\x1f\x59\x88\xb9\x62\x6e\x3d\x98\xbb\x81\xd0\xd0\x69\xc5\x77\x63\xb7\x01\x1b\x4e\x65\xcc\xee\x4d\x39\x54\x4c\x30\x5c\x78\xbc\x28\xc6\x51\x82\x30\x79\xcf\x98\xfe\x15\xd7\x53\x84\xb3\x25\x45\xda\xb3\x5f\x97\x12\xf8\x1e\x76\x1a\x6d\xe1\x3f\xcb\x20\xa9\xfc\xd1\xe1\x85\x67\xc4\x09\x36\x3e\x4a\x17\xfa\xc6\x96\x10\x52\xe4\xa2\xea\xc3\x50\xc1\x42\x51\x85\x92\xfe\x1d\x5b\x16\x4d\x60\xd5\xdd\x67\x5e\xcf\xcf\x4a\x13\xca\x72\x1e\xbf\xec\x1e\x91\x27\xe4\x25\x46\xc8\x7a\xfc\x98\x4c\x48\x50\xe1\x3f\x6d\x70\x32\x97\x20\x3c\x92\xeb\xe2\x7f\x9c\x1d\xf7\xb2\xae\x6d\xf9\x0f\xe9\xb2\x7a\xbd\x92\x3d\x92\x04\xdd\xbc\xa9\xb3\x36\x1d\xe7\x66\xc3\xf6\x30\x2f\xe6\xee\xbb\x31\x16\xa4\x1b\xb5\x7c\x92\x37\x3d\x67\xf0\x38\x66\x8f\x9a\x98\xed\x4d\x42\x00\xae\x9b\x7b\x76\x95\x12\x56\x4e\x99\x99\xcc\x93\x70\x81\x50\xe6\xae\xf4\xf2\x52\x8d\x1d\x41\x78\xe7\x9d\x5f\xc8\x0c\x67\xd0\xa6\xb6\x61\x83\x6d\xdb\x7a\x1a\x3d\xa8\xfb\x77\xe1\x19\x86\x41\xc6\x8a\x4c\x5f\x9e\x6f\x92\x04\x4d\xae\xdb\x09\x42\x77\xf2\x18\x54\xf8\x7e\xce\x53\xa9\xb8\xc4\xe0\xec\xfa\x19\x39\xc1\x9f\x9c\x09\xfe\xcd\x3f\x0d\xed\x63\x4c\x08\x59\x4a\xbf\x92\x05\xce\x59\x13\xbe\x2f\x91\x5a\xf2\x85\x83\x45\x70\x3c\xfa\x22\xe5\x0a\xd7\x1e\x82\x52\x83\xc0\xb6\x6b\xf5\x07\x09\xf7\xff\x5e\xba\x3a\xc5\xc0\x96\xa0\x7d\xb1\xd3\xf2\xc5\x75\x31\x82\x39\x53\x71\xb9\xe0\x91\x10\x1b\x3c\x4e\xef\xb6\x7e\x71\xe2\x28\x1b\xb6\x73\x2c\x94\xf0\xe7\x52\x25\x1c\x9c\x5c\x15\x72\xcc\x66\x05\x41\x65\x6f\xc0\x80\xd3\x0d\x03\xc2\x91\x65\xff\xd6\xfc\x68\x3e\x44\x70\xdf\x24\xff\x68\xd2\xd6\x45\x04\x8e\x2c\xe1\x01\xfb\x30\x79\x82\xa6\xfd\xe5\x43\xdb\x8e\xc8\x10\x5c\x78\x3c\xa6\x15\x19\x7c\x61\x21\x14\xb6\x5f\x5f\x7b\x6e\x26\x94\x4f\xfa\x11\x73\x32\x44\x8f\x30\x72\x70\xff\xe5\x66\x53\x35\x82\x84\x3d\x49\x24\x4f\xd5\x1e\xbf\x00\x7f\x9f\x17\x97\x7f\x8d\xb0\xf3\xf7\xad\x8d\xfe\x4b\xf7\x12\xb6\xf2\xdd\x90\xbf\x73\xdf\x84\xf0\xdb\x26\xee\x94\x63\xd4\x5c\x42\xa2\xc8\x06\xf1\x1a\x51\x69\x42\x46\x9d\x6a\x8e\xbc\xe4\x73\x82\xc4\x23\x9d\x28\x97\xfb\xa3\x2c\xac\xbb\xaf\xf8\x6d\xb7\xad\x28\x4d\xc0\x33\x47\xaf\x37\xe7\xed\x5f\x16\xbc\x66\x48\x4e\x9a\xd9\x78\x8b\xf0\xe4\xfc\x8c\x59\xfb\xc6\xb2\x18\xf8\xba\x57\xbf\xdb\x14\x1c\x4f\xd0\x70\xee\x58\xd5\x75\xda\x8a\x10\xea\xb3\xae\xbd\x24\xe2\x04\x5b\x79\xcf\x53\xee\x74\xc4\x4e\x9a\xe0\x2d\x3a\x26\xff\x58\xfc\xe4\xf8\x1d\x5b\xb1\xd9\x48\x4f\x80\x60\xd4\x74\xa9\xfb\xe8\xfe\x68\xc2\xd3\x17\x6a\x47\x0a\x32\xdf\x31\x18\x7e\xba\x4b\xe1\x76\xc1\x2a\x82\x71\xd9\xf3\x8d\x2d\x5f\x07\x59\x18\x65\x7c\x16\x2d\x37\xab\x61\x30\xe2\xee\x94\x79\x5e\xab\x9a\x20\xba\xdb\x5a\x23\x61\x56\x2a\x21\xaf\x67\x81\xd4\x2b\xdb\x5a\x82\x6d\xee\xef\xac\xc5\xf5\x29\x84\xab\xab\xda\x5c\x8c\x8d\xcc\xfe\x2f\x8c\xb5\x5d\xdd\x55\xb5\x60\x16\x41\xdb\xb8\x35\xa2\xcb\x2d\x9f\xa0\x76\xcd\xd2\x7c\xe9\x8c\xf1\x07\xd7\xda\x9b\xa3\xd7\xdb\x9c\x30\x57\x47\xf3\xc6\xdd\xfa\xdd\x84\xd1\x0d\x87\x8a\x2b\x78\x03\xd8\x70\xb3\xac\xe0\xe7\xa2\x5d\xbb\x08\x9d\xb3\x1e\xcb\x44\x39\x68\x11\x52\x77\xd9\x6f\xd5\xdd\xaf\x45\x50\xb5\x98\xbd\xa6\x5b\xd4\x9c\xd0\x5a\x63\x7c\x7e\x6c\x8e\x04\x1b\x96\x9f\xe6\x5a\xc7\x2b\xf6\x91\x35\x01\xe1\xee\x80\x85\xc9\xfe\x97\x08\xba\xc2\xbf\x6d\xe7\xa7\x80\x05\xfb\x95\x89\xc6\x2f\xde\x8b\x10\x4c\xda\x9f\xff\x1c\x3b\x1a\x48\x13\xe5\xa2\xec\x2f\x4b\xf7\xc8\x31\x16\xb6\x7f\xf9\xee\x93\x11\x75\x92\xc0\xe3\x76\x43\x2a\xf3\xd6\x5e\x82\xed\x70\x51\x86\xa9\xac\x03\xa1\x6e\xb3\x76\x3e\xaf\x89\x29\x61\xba\x09\x4f\xa9\xa3\xc7\x41\x06\x4b\xc6\x6c\x6e\xcf\x30\x37\x20\x74\x9d\xfa\x23\x38\xc2\xb7\x8a\xa0\x53\xfc\x37\xf9\x58\xad\x39\xe1\xd9\xee\xe5\xc5\x2b\xc4\xd7\x13\x1e\xa4\xf7\x15\xfa\x14\x7e\x66\xa1\x2b\xad\x58\xed\x42\x70\x02\xe1\x45\xe7\x8b\x57\x12\x32\xe6\xff\x17\x42\x15\xcf\xdb\x2c\x12\x92\x21\xfc\x7e\xb9\xdf\xef\xd7\xc0\x1d\xc2\x15\x2a\x54\x1f\x5a\xa0\x47\xf0\x0c\x3d\x68\x2f\x65\xa7\x4b\x30\x6d\x58\xba\xd2\xce\x4b\x9d\x60\xfd\xd5\x76\x4f\xb3\xd0\x6a\xc2\x3e\x07\x91\x5f\x6e\xea\x1a\x84\xf0\x42\xde\xdc\x18\xd7\x1f\x2c\x44\x6f\x1f\x9c\x9d\xec\x2b\x42\x50\xd9\x3f\xeb\xd7\x2a\x53\x01\x42\xd2\xca\x7d\x09\x33\xc6\xc6\x58\xd0\xaa\x72\x52\xd2\x70\xe7\x27\x98\x28\xbe\xc8\x8f\xe5\x70\x25\x44\xf7\xbb\x2d\xc9\x97\x1a\x66\xe1\xf7\xa3\xd4\x5a\xee\xea\x18\x82\xce\x42\x5d\x8d\xd3\x5b\x22\x09\x5e\x91\xb6\x95\x96\xfb\x24\x08\x11\x4b\xbf\x8d\x05\x3f\xce\x21\xc4\x88\x15\xff\xcb\x78\x6e\x48\x50\xea\x7e\x33\x2f\xf0\xdf\x71\x82\xe0\x77\xce\xa8\xd9\x6a\x96\x84\x37\xbb\xf4\xc2\x4f\xca\x49\x12\x4e\x9c\x15\x54\x69\xcc\x88\x65\x50\xcf\x27\x92\x38\x96\xf8\x90\xd0\x3c\xdb\xec\x3e\xcb\x6d\xfd\xf8\xf6\xf3\xc5\x6f\xe9\x92\x01\x16\x9e\xe7\xaf\xe6\xd5\x5b\x46\x04\x85\xda\x65\x1e\x39\x8f\x23\x09\xff\xc2\xa2\x4e\xc6\x9e\xd9\x4a\xb8\xfe\xeb\x4c\xdb\xf6\x95\xdb\x09\x42\x56\xa2\xf3\x5a\x9e\x6f\x23\x48\x6a\xcb\x58\xeb\x27\x9a\x10\x54\xec\xd6\xb7\x3c\x56\xcf\x61\x20\x74\xdf\xaf\xe8\x94\xef\x7a\x42\x53\xb4\x58\xbb\xf3\x8b\x78\x06\x76\xd9\xc7\x9d\xdf\xa9\xe7\x33\xd8\x2d\x13\x66\x18\xe2\xe5\x41\x18\xde\x72\x61\xdb\xf9\x6f\x91\x84\xa7\x8b\x7a\x17\x06\xdf\xf2\x63\xa0\xf8\x28\xa8\xec\xf7\xf1\x0d\x0c\x3c\x4f\x68\x49\x4a\x3f\x55\x26\x68\x8c\x0d\x57\xc0\x6e\x06\x61\x83\xb2\x5e\xcf\x9a\x32\x51\x42\x84\xac\xd7\xb1\x8d\x8d\xd3\x09\xaf\xa2\x62\x65\x0d\xda\x16\x10\x7a\x7c\xbf\x8b\x78\xbf\x91\x24\x14\xac\xfe\x70\xa8\x73\xda\x2d\x06\x61\xe9\x85\x0f\x6a\x04\xdc\x08\x3d\xd7\xc3\xdf\xe9\x69\xca\x11\x7a\xec\xd4\x33\x44\xee\x74\xb1\xd0\x9e\xb2\x87\x5b\x7a\x9e\x13\x41\x37\xbd\xe7\xd1\xe6\x21\x6f\x42\xd0\x36\xbf\x8d\xbf\x4e\xca\xb0\xe1\x63\xf5\xdf\xf2\x9f\x98\x44\xc8\x3b\xa3\xc3\x7c\x11\xe1\x26\x30\x87\x8a\x5b\x1e\x6f\xbc\x4f\x70\x77\xce\xb2\xea\xf8\x12\xcb\x06\xa9\xb9\x4b\x2a\x8c\xe5\xa2\x08\x91\xbe\xc7\x06\x24\xba\xfa\x58\x50\x3c\xed\x9f\xeb\x39\xa0\x48\xd0\xad\xcc\xbe\xad\x64\xaf\x4d\xb8\xd5\x9e\x59\xbb\x61\xee\x64\xc2\x1d\xb7\xdc\x06\xb1\xad\xa7\x19\x70\xa4\xdd\x57\x58\xb7\x3a\x8f\xd0\xb6\x4e\xb4\xb0\x33\xe9\x0d\xe1\x69\xf0\x10\xe7\xfc\xe3\x29\x84\xb9\xd1\x8d\xb9\x8b\xd4\x96\x12\x6c\xf5\xf8\x4d\x99\xb8\x58\xc2\x85\x0e\xcf\x33\xe2\x15\x3a\x84\x9e\x49\xd3\x3b\xb8\x64\x2e\x11\x26\x6b\x5f\xde\xaf\xe8\x78\x82\x20\x70\xcf\xbe\x90\xe3\x91\x3a\x1b\x76\x1e\x30\x1b\x3d\x62\x73\x84\xad\x28\x18\x09\x95\x66\x66\x8c\xb2\x60\x14\x53\xd9\xe0\x39\x98\x4a\x88\x8f\xf4\xa8\xfa\xde\x34\xc4\x9a\x40\x7a\xe3\xa3\x07\x06\x1c\x71\x0c\x6e\xdc\x6d\x94\x3e\xfc\x78\x09\x81\x23\xb5\xea\xe6\x3b\xcd\x16\xd6\x04\x9c\x76\x3f\x7d\x6d\x3f\xfb\x05\x83\x73\x83\x42\x7a\x36\x86\x81\x84\xe0\x7a\xaf\x80\x9f\xfd\x9b\x09\xd1\x2f\x3c\x7f\xd6\xa6\x6a\x11\x32\x4c\x0a\xb6\x71\xed\x5e\x4d\x28\xec\xfb\xbe\xc0\xf8\xe1\x16\x82\x6d\xc2\x49\x81\xb5\x63\xb2\x84\xaf\xb3\x26\x7d\xfe\x73\xf5\x30\x81\xeb\xe7\x1b\xa5\x67\x0f\x0b\x09\x8f\x77\xc5\xc1\x2c\x48\x9f\x30\xbc\xd1\xbf\xe7\xed\x90\x1b\x61\x7b\x95\x91\x73\xf5\xbb\x6d\x84\x85\x5d\x19\x35\x97\xc6\xbf\x44\xde\x3a\x97\xad\x0a\xe4\x38\x09\x52\xdc\xde\x1e\xad\x9b\xcb\x4b\x30\xdc\xb5\x3e\xf8\x9c\x54\x14\x41\x59\x34\x89\x75\x50\x41\x9d\xd0\xbb\xcd\x2c\xc7\xcc\x6f\x2e\x61\x79\x55\xed\x15\xd9\x7f\x17\x08\x59\xbd\x16\xa9\xab\xf9\x4c\x09\x17\x02\x3b\xf9\x74\x2c\xe6\x10\x98\xe2\xde\xda\x8d\x0f\xfd\x09\xb5\x86\xa2\xdf\x9a\x94\xf3\xc6\xff\xf9\xe0\x9d\x32\xc9\x38\x82\xec\xae\x55\x95\x0d\x27\x2e\x11\xbc\x1a\x12\xfe\xdc\x99\x1d\x41\x58\xdb\xf4\xc9\x29\xa4\xd2\x98\xb0\xf9\xc0\xb3\xe3\xaf\x53\xd4\x09\xba\x86\xf7\x9b\xa2\x96\x7b\x11\xa6\x9c\x88\x0b\xda\xbc\x34\x9d\xb0\xb4\x48\x5f\xdb\x78\x1c\x7f\xf3\xc5\x65\x5e\x8b\x7f\x24\xc4\x25\x3d\x17\x5f\x3f\x5e\x14\xc2\x6b\x1e\xf8\x3e\x71\x27\x14\x79\x2e\xba\xea\xe2\x25\x45\x18\x6a\x88\x4a\xb7\x4c\xea\x21\x1c\x91\x4e\xba\x6b\x2f\x32\x48\xd8\xf5\x23\x20\xf2\xf8\xd3\x7e\xc2\xdf\x0b\x76\xe6\x73\x45\x07\x09\x97\x5d\xef\xdd\xcb\xc9\xec\x21\x38\x97\xc4\xe9\x1d\x13\x8f\x65\x30\xc5\xb1\xf0\xe3\xec\x99\x85\x84\xc2\x8f\xe9\x61\x1b\xf5\x4a\x09\xcb\xf7\x0d\x71\xcc\x5c\x5f\x40\x38\xdb\x9a\xeb\xa3\x25\x5c\x48\xd8\x01\xdf\x1c\x3b\x8f\x48\x82\x3b\xfc\x26\x8f\x76\x9c\x66\xb0\xda\x64\x6d\xd0\xed\xc6\x5e\xc2\xe3\xb8\xbd\x0e\x31\xc7\x5a\x18\xc8\xf2\x6d\x75\x98\x37\x65\x94\x10\x18\x6a\x63\x3a\x63\x1c\x4f\x6e\x7e\xde\xf8\x63\xf2\x28\x61\x8c\x93\x99\xaa\x2b\xd7\x41\xf0\x5c\xb9\xb0\x48\x2c\xa2\x97\x81\xaf\xaa\xab\x74\x09\x9d\x20\xfc\x1c\xcc\xe6\xb8\x38\x6d\x19\xe1\xf9\x8f\x97\xf9\xa2\xe3\xbb\xb2\xe1\x9a\x80\xb7\x7b\xe3\xd6\x13\x4c\xb7\x26\x9e\x51\x8e\x96\x23\x74\x8b\x3c\xdf\x97\xd4\xe0\x4c\x78\x3f\xba\x79\xee\x9c\x0a\x45\xc2\xdc\x9d\xdb\x96\xde\x91\x5f\x4d\xe8\xbf\x76\x8f\x2f\x25\x93\x8f\xd0\x24\xb0\xd8\xef\x47\xce\x61\x06\x11\xc6\xf3\xa6\x2f\x5a\x58\x4e\x78\xb7\xd5\xe5\xaa\x74\x77\x39\x21\xb5\xb3\x3d\x6b\x97\xfc\x37\x42\x44\xbd\xd0\x61\xfa\x34\x48\xd8\x29\xb7\x73\xb3\xfd\x9a\x32\xc2\xfe\x94\x4e\xdf\x1d\xc5\x67\x09\xd7\xef\x2d\xb3\xaa\x71\x7c\x48\xc8\xd2\x8d\xba\xd2\x7d\xb9\x9e\x60\xf9\x43\x75\x46\x7e\xf1\x2b\xc2\x2f\xde\x9a\x6f\xd7\xe6\x3d\x23\x54\xbb\x1f\x55\xcb\x1b\x2f\xf6\xaf\x0f\x6c\x6e\x51\xf7\x21\xcc\x6f\x9e\xbf\x20\xdd\x3d\x9e\x30\xc5\xaf\xa5\x55\x60\xb3\x19\x61\x1a\xd3\x6f\x5c\xfe\x28\x81\x90\x90\xb1\x3e\xfd\xa6\x51\x3c\xe1\x7e\xd5\xc2\xa7\x71\x9f\x4e\x10\x5c\xe6\xbe\xb8\xc9\x55\x39\xbe\xcd\x67\x6a\xbd\xbc\x91\xae\x47\xf8\x6b\x70\xea\xc3\xa7\xe5\xc5\x04\x46\x65\x97\xb9\x70\x2f\x07\x61\xab\xc8\xf9\xce\x93\x59\xea\x6c\x98\xfc\x8e\x84\xa7\x18\xee\x21\x30\x01\x3a\x5e\x83\x32\xf3\x09\x3e\xd1\xe9\xfd\x9c\x8f\x74\x08\xff\x94\xfc\x4f\xb7\x18\x5c\x63\x26\xca\x81\xc5\x5f\xd6\x16\x8f\xef\x51\x23\x5e\x5e\x6a\xe5\x06\x4a\x04\xfd\x3b\x79\x9b\x77\x9f\x5f\x4c\xb0\x5d\x9c\x22\xdf\x33\x22\x45\xd8\x6a\x52\xf0\x6d\xd9\xf2\x7d\x0c\x86\xe3\x79\x37\xd7\xb8\x3d\x22\x2c\xe4\x32\x28\x5a\x19\xff\x9a\x81\xbf\xe5\x70\xea\xce\xcc\x2e\x06\x83\xdf\x3e\x67\xc4\xa9\xd6\x11\xac\xe4\x23\xe7\xe6\xf2\x3f\x64\x4d\xc0\x87\x8c\x57\xf0\xe0\x07\x0b\x1b\xdc\xe7\xfe\xa8\x5a\xb5\x9e\xd0\x99\xbb\xaa\x87\xa4\x85\xd9\x30\x2c\xd4\x17\x5e\x67\xde\xce\x60\x49\x7f\xf4\x48\xd5\x38\xfe\x37\xea\xed\xc9\x58\x8c\xa8\x29\x04\x17\x9d\xf7\x52\x8f\xc4\xce\x32\xe8\xaa\x12\xfd\x37\x55\xe1\x06\x33\x31\xfa\x1f\x54\x77\xc7\x77\x1f\x7c\x3e\xc2\x42\xca\x24\xf3\x0b\xbf\xc2\x6e\x13\x9c\xf4\x73\xbb\x6e\x37\x68\x11\x02\x77\xf1\x0b\x0a\x09\x6d\x63\x83\xae\xae\xe7\xfd\x0f\xfa\x66\x84\xd5\x7e\xba\x67\x8f\x89\xec\x26\x34\xba\xb4\x5f\x56\x31\x7a\x4e\xe8\xb9\x62\x7d\xd9\xe9\xe5\x7b\xc2\xb7\x6d\x39\x4e\xc6\x9f\x4f\x30\x58\x94\xe5\x31\xeb\xd6\x51\x1b\x42\xb9\x5d\xa4\x78\xd0\xbe\x85\x84\x7d\x49\xee\x97\x33\xad\x58\x84\xfc\xc3\x87\xb4\xbc\xf2\xe7\x12\xb2\x9b\x2e\x56\x45\x5e\x31\x27\x64\x36\x39\x73\xfa\x6a\x17\x10\x78\xf7\x9c\xaa\x52\x6a\xbb\x46\x58\x78\xe9\xdc\x12\xc3\x56\x37\xc2\x89\xb1\x77\x9f\x78\x2e\x65\x30\x38\xf6\xb2\xf4\x26\x6b\xdb\x4a\xc2\xd0\x2f\x7f\x57\x93\x50\x05\xc2\xd5\xd0\x43\x7f\x15\xd7\xdc\x26\xe4\x07\x8e\xbc\x49\x09\xcf\x63\x60\x59\x5b\xe2\xf6\x61\x1d\x43\x78\xa8\x1c\x24\x2f\x2d\x17\x43\x38\xa0\x1e\xbd\x56\x95\xaf\x94\x90\xf1\xe9\xec\xba\xb8\xc8\xb7\x84\xaf\xbc\x1a\x8e\xef\x38\x1f\x33\xf8\x22\x2c\x5e\x62\xbb\x65\x07\xe1\xbc\xd0\x89\x9d\x32\x07\xe4\x09\x2e\x6f\x94\x97\x26\xa8\xdc\x25\x08\xb5\xd6\xff\x9d\xd3\x9e\x43\xd8\x6a\xd6\xa4\x35\xd3\x37\x99\xad\x68\xd9\x1c\x0d\x3e\x74\x69\x23\xc1\x21\xc5\xbe\xda\x57\x5e\x84\xa0\x50\x24\x9d\xa4\xd1\xad\x45\x70\x60\x9a\x8a\x5a\xf7\xf0\x11\x8e\x7d\x08\x7b\x36\x9a\x98\x4c\xe8\xfc\x11\x18\xeb\xf8\xbe\x81\x01\x45\x3c\x7e\x34\xed\x9b\x09\x4d\xc0\x6e\xcd\xbc\xba\xa2\x73\x4b\x09\x5c\x1e\x86\x9b\x13\xd4\x17\x13\x6c\x3e\x14\x2d\x1b\x39\xc1\x49\x50\x7f\xfc\xf4\xd8\xb5\xe6\x06\x42\xe3\xed\x51\x87\x42\x13\x63\x42\x4e\x78\x87\x8b\xfa\x7b\x4e\x36\xc8\x72\x4c\x5f\xfb\x52\xb4\xb1\x04\xad\x03\x12\xc7\xa2\x15\x65\x08\x93\x2f\x7d\x72\xf4\x90\x28\x27\xa4\xa5\x7b\xbc\xb3\xe6\x2c\x27\x94\x7c\xfa\xd4\x7d\xed\x1c\x43\x90\x94\xfb\x24\xfc\xbb\x21\x97\xb0\xfe\xf6\x02\x0d\x53\xa7\x05\x84\x57\xf1\xac\x86\x74\xc7\x37\x0c\x8e\xfc\x8e\xf9\xe9\x1c\x01\x42\x60\xfc\x8a\x55\x3c\x85\xa3\x84\x75\x3a\x55\x81\x91\xf1\xb9\x0c\xee\x67\x8a\xce\xb1\x48\xcb\x65\x20\x50\xb5\xc2\xce\x7a\xc3\x0b\x82\x50\x4c\x2d\x9f\xf2\xe8\x73\xc2\xe2\x8f\x11\x19\xf4\xa8\x8a\x50\x26\x9d\x72\x46\x3b\x29\x98\xa0\x31\xb0\xf6\xef\xaf\xe7\xba\x84\xb2\x29\x52\xb7\x1d\xc3\x79\x08\xe1\x59\x95\x47\x1f\x93\x06\x1b\xd6\x54\x67\xf6\xf9\x78\xe4\x11\x78\x4b\x1e\x4e\xdb\x41\x65\x04\x6e\x11\x59\x1e\xeb\xe6\x8b\x84\xc2\xeb\x6f\x7a\x2a\x15\x05\x09\x9f\x7c\xbb\x6e\x31\x7d\xb9\x04\xdb\x0b\x73\xdb\x9c\x8f\x64\x12\xb4\xb0\x42\xd9\xb5\x2b\x97\x6d\x34\x4d\x49\x4b\xe1\x99\xd0\x74\x82\x6b\xc6\x2a\xb5\xd2\x11\x16\x81\x4b\xc0\xee\x0f\xf7\xcc\xeb\x04\x5e\x31\x31\xb9\x92\x25\xb7\x08\xf2\x3b\x16\x31\x2c\x51\x35\x06\xd7\xe2\x47\x6d\xcc\xfb\x9c\x08\x6b\x5f\x7f\x8e\xdc\x54\x6c\x49\x88\xcc\xf2\x4f\xe2\xc0\x49\x02\xd7\xc0\xac\xc3\xbe\x8d\xed\x04\x8b\x58\xfe\x9b\xff\x52\xa3\x08\x63\x9a\x65\x41\x8c\xc8\x11\x42\xad\x2c\x6b\x56\x67\xe0\x6a\x82\xa8\xa0\xc3\x8e\xd4\x4e\x3e\x42\x10\x27\x4f\xfe\xe5\x73\x8b\x08\x0d\x96\xd3\xf7\x78\xf0\xde\x21\x7c\x3c\x51\x5b\xe2\xe9\x56\xc2\x4c\x20\xd2\x59\xfc\xc3\x9b\xed\xf9\xe3\xfb\xcf\xf9\x4f\x93\x2e\x45\x13\x6c\xb8\x57\xbf\x3f\x7e\x63\x13\x41\x7f\xe3\x8c\xed\x7c\xe7\xcc\x08\x9b\x4c\x45\xb7\xe6\x19\x39\x30\x13\x45\xbc\x91\x16\xc7\xcc\xdb\x48\x78\xd3\x1e\xa1\x32\xa6\xb5\x86\xe0\x6a\xff\xba\x77\x3d\x6e\x10\x54\xbf\x7a\xb7\x35\x1f\x5b\xc3\x36\x9a\xd1\xf4\x73\x86\xc0\x02\x05\xc2\xe2\x05\x9c\x4f\x94\x83\x9e\x11\xb6\x88\x5f\x2c\xb1\x36\xe9\x24\x38\x49\x89\x0a\xa4\x88\x76\x10\x4a\x1a\x6c\x6b\x57\x8c\x8f\xfa\x87\x2a\xf9\x82\x83\x6a\x19\xe4\x4c\x5e\xf6\xa0\x44\xe6\x05\xe1\xa3\x7b\xfc\x8b\x13\x2a\x3f\x08\x8b\x65\x55\x67\x0e\xff\x1d\x24\xe4\xea\x65\xda\xea\xdd\x2a\x63\x60\xb0\x4f\xf7\xcf\x29\xa5\xc3\x84\xde\xcd\x0e\x81\xdc\xda\x39\x04\x1f\xc1\xd4\x93\xbd\xc3\xe1\x84\xd3\x6b\xfc\xef\xed\xd0\xfc\x41\x78\xe9\x51\xce\x92\x7c\xda\xc2\x20\x7d\xe9\x3f\x8d\x52\xb7\x4e\x42\x64\x90\x6b\x63\xf7\xf8\x99\xae\x99\xa1\x4d\x53\xbb\xed\x09\xf3\xf5\x3e\x16\x7d\x7f\xc0\xc5\xe0\x9c\xef\x68\x72\x86\xfa\x4e\xc2\xf4\x67\x9a\x1f\xd4\xd6\xed\x64\x3b\x33\xbb\x31\xbe\xc7\xf1\x4f\x14\xc1\xf6\x5c\xfa\xc2\xc9\xbc\x77\x09\x4b\x56\x0e\x9f\x15\xff\x55\x46\x30\x62\xe9\xa4\xdb\xee\x30\x26\xdc\xab\x94\x11\x5d\xc2\x1d\x4b\xb0\x10\xae\xc8\xba\x63\x74\x9c\x10\xfe\x82\xd5\x7d\xa4\x33\x8c\xd0\xa0\xab\x6f\x36\xaf\x7d\x2f\x61\x96\xd2\x43\x6f\xed\x32\x65\x82\x59\x57\xea\xa6\x2e\x9b\x61\x16\x36\x1b\x8a\x3b\xb6\xec\x0d\x27\x5c\xe0\x98\x64\x3d\xc4\x63\xcb\x86\x74\xbf\x37\x1d\x5c\xea\xbe\x84\xfd\x27\x57\x0f\xb4\x85\x4a\x11\x6e\xa7\xe8\x5b\x6e\x33\x73\x22\x98\x67\xc9\xdb\xae\x28\x16\x23\xbc\x4a\xbb\x7c\xd6\x25\xc9\x86\xad\x04\x1e\xf8\xad\x69\xe9\xf0\x85\x35\x81\x6f\xf3\xac\xca\x07\x9a\xf3\x4a\xe0\xb2\xba\x5f\x7a\xcd\xab\x4e\x16\x64\xea\x8e\x8c\x46\x6f\x5f\x4a\x38\x38\xe2\xea\x52\xb3\x6b\x98\x85\x92\xdf\x5f\x2e\x7a\x6e\x6e\x2f\x41\xfa\xc6\x3d\xaa\x0b\x87\x26\x13\xac\x4c\x4f\x1d\xaf\xfc\xb8\x8f\x50\x6a\xb5\x49\x7a\xc5\x45\x53\x36\x2c\xd7\x53\x7c\x86\x7b\x16\x6c\xa5\x52\xab\x73\xb6\x94\x80\x36\xa1\x7c\x7e\xaf\xb6\x75\xfb\x74\x82\xdc\x85\x76\x09\xff\x72\x21\x42\xfd\x07\x9b\x99\x92\xeb\xc3\x18\x94\x3e\xe3\x56\x97\x58\xc5\x4f\x68\xbd\x92\x37\xc6\x2c\x4c\x21\xa8\xde\x33\x7d\x76\x94\x37\x85\xf0\xe6\x15\x87\xca\x8f\xb6\x72\x06\x65\x1f\x42\xea\x8c\xad\x06\x09\x87\x6b\x6c\xa6\x7b\x89\xa5\x10\xf6\x44\xa4\xe8\xa7\xb4\x38\x11\x02\xe5\xe4\xdf\x78\x9a\x1c\x66\x50\xae\x7f\xb7\xb1\x3c\x3f\x84\x41\xfc\xb9\xe6\x27\x0a\xd6\x11\x84\xf8\x3f\x75\x66\x16\x1b\x9c\x09\xaa\xd3\x4f\x5f\xae\x48\xbc\x4c\x78\xe0\x75\x65\xaf\xf8\xc7\x04\x06\x82\x2d\x19\xb2\x35\x6b\x35\x08\x07\xe6\x4e\x5b\xb0\xdb\xdf\x95\x30\xb9\x52\xcc\xc2\x35\x77\x0b\xc1\x31\xfc\xe2\xc5\x86\x5f\x51\x84\xf7\x27\x3d\x2c\xdc\x4b\xe7\x10\x4e\x7b\xdd\xd3\x2f\xfb\x28\x42\x10\xf0\x7d\x10\x1e\x6d\x72\x87\x0d\x83\x1e\xdb\x7b\xe7\x9e\x1a\x20\x2c\x9c\xa6\x90\xb0\x40\xaf\x8d\x60\xb9\xe4\x52\x71\xe8\xf8\x68\xae\xfa\x19\xee\xc6\x59\x97\x08\x29\xed\xa2\x42\x59\x0d\x71\x6c\xc5\x67\xe0\x65\xcf\xaf\xb7\xcf\xd8\x8a\xb3\xfb\xcd\x4d\xeb\xf8\xa3\x08\x93\x5f\x95\x38\x45\x5d\x1c\x22\x3c\xb1\x7f\x77\xfa\x38\x5d\x60\x60\xd8\x9d\x30\xd0\x6f\x55\x42\x48\x8b\x0c\x72\xdf\x2d\xd7\x44\xb8\x9f\xf4\x47\xfd\xcb\xfa\x97\x84\x8b\x35\xef\x3a\xee\x39\xa6\x10\x34\x33\xec\x66\x4a\xf7\x3a\x11\x94\x1e\x1e\xbb\x6e\x7b\xf9\x04\x21\x21\xaa\x9c\xdb\xbb\xf5\x3c\xe1\x86\x5f\xa9\xcd\x8d\x69\x01\x6c\x50\x8e\xdc\xad\x6c\x9b\xec\x4a\x70\x5e\x40\xe7\xf6\x28\x68\x11\x3a\xeb\x66\xe8\xf5\x8b\x3d\x24\x08\x73\xa0\xb2\x5a\xbd\x75\xfc\x61\x74\x5e\x7a\xd4\xb5\x89\xa0\xb4\xf6\x9c\xb5\xbe\xf2\x27\x42\xd7\x53\x87\x7d\x59\x69\x65\x84\x31\x63\x3f\xa6\xe3\x5e\x34\x21\xfd\x2d\xcf\x24\xc5\xdb\x65\x84\xb7\xcb\xda\xc4\x62\x04\x2f\x13\xec\x1e\x87\xde\x7e\x6f\xf1\x87\x85\x97\x1f\x78\x35\x13\xef\x30\x0c\xec\xe7\x70\x69\xb9\x79\xec\x62\x30\xaa\x12\xb0\xbf\xeb\x4b\x3e\x83\x7c\xbe\x0d\x91\x4f\xce\x1d\xa5\xd1\xbf\x69\x2f\x13\x64\xaf\x10\xfe\xe6\x5e\x65\x86\x5e\xa5\x11\x02\xeb\xa2\x0e\xf0\x1f\x95\x20\x78\xdc\x3c\x54\xf9\x53\xce\x92\xe0\xda\x2b\xb9\xa9\x7a\xf2\x21\xc2\xdd\x66\xee\x0d\x8b\xf4\xd6\x11\x76\xde\xe1\xdb\x7d\xc6\xcb\x82\x70\x7d\x8d\xe9\xb7\xf2\xc7\x72\x84\xa3\x5f\x7e\xa9\x57\x68\xbe\x67\xe1\x51\x52\xf4\xef\x97\xa2\x8f\x09\x03\x92\x7f\x34\x93\x4f\xf7\x33\x48\x1b\x7c\xb7\xcc\x74\xcb\x20\x83\x50\x5f\x71\x2d\x73\xe9\x41\x06\x21\xb6\x24\xa0\xb5\xb4\x98\x10\x3e\xb8\x27\xed\xee\xa9\x27\x84\xbd\xc1\x41\x93\x35\xd3\xab\x08\x4f\x5a\x8f\xa8\xaf\x8d\xbc\xcc\x40\xb8\xf0\xf6\x2e\x21\xd1\x8b\x84\x37\x4f\x23\x16\xdc\x4d\xbc\x4f\x48\xc7\x36\xb1\xa5\xcd\x45\x04\xe1\x93\x26\xcb\xf5\x27\x1f\x25\x9c\xcf\xe0\x38\x91\x75\x4e\x8d\x90\x3f\xea\xa2\xf2\x6c\x48\x87\x60\x3c\x47\x36\x64\x61\x94\x18\x81\xe5\x3d\xe6\xf0\x59\xed\x3a\x83\xfe\xf7\xdf\xd5\xf4\x17\xec\x24\xfc\x90\x29\xbc\x65\xa0\x2b\x49\x38\x15\xe9\xea\xe1\x24\xb8\x87\xc0\x61\x1b\x60\xf5\x66\x76\x0e\x83\xf8\x7a\xdf\xfa\x22\xde\x23\x04\xde\x8e\x8f\x31\xb5\xdf\xad\x08\x86\xa5\xe9\xcb\x32\xeb\xa3\x09\xf2\x02\x22\x95\xe7\x2d\x0b\x09\xca\x46\xb4\x3e\xa6\x69\xfc\x3e\x37\x5c\xe1\xfa\x5f\xb9\x24\xf3\x80\xba\x84\xf5\x09\xfb\x5a\xcd\x0b\x62\x3c\x5e\x30\x08\x11\x7c\xce\xbf\xc7\xdb\x93\xa0\x53\x95\x1c\xb7\xe7\x49\x34\x83\xee\x1b\x6d\x41\xfb\xb5\x2c\x08\xbb\x32\x8b\xbf\xaf\x33\x8e\x26\xd4\x9a\x58\x85\xcb\x3f\x79\xc2\xe0\xa9\xc4\x73\xe7\xbb\xf2\xa5\x84\x96\x7e\xad\x1d\x93\x8f\x97\x11\x8e\x1f\xc9\xee\x3a\xde\x16\xce\xe0\x16\x37\xf3\xfd\xc1\x8b\x66\x42\xcc\x4b\x01\x9f\xfd\xfb\xca\x08\x4a\x0b\xc5\x38\x37\x3d\xbc\x4c\xd8\xb5\xf3\xd1\x43\x4f\xf7\x08\xc2\xc1\x27\x29\xb6\x81\xcb\x2f\x13\xbe\xcd\x7e\xdd\xfa\xfc\xca\x25\xb6\x33\xcb\x8f\xb9\x75\xfe\xb0\x9c\x47\x78\xd9\xc6\x5a\xd5\x7c\xfe\x0f\x0b\xb3\x4b\x05\x2f\x44\xad\x29\x27\x8c\xfc\xe8\x5e\xf7\x3d\xe0\x0a\x21\x40\xc3\xf6\x48\x59\xa0\x12\x41\x7d\xed\xab\xcd\x73\x56\x25\x11\x1c\x3d\x0d\xf2\xb7\xb8\x3f\x25\xac\x8d\x2f\x0f\x10\xf9\xa3\x4b\xb8\xf8\x43\xc3\xba\xd2\x2e\x82\xad\x34\xff\xe9\x12\xbd\x35\x7e\xb3\x9f\xdd\x9b\xf9\x47\xc3\xec\x34\x21\x8b\xa7\xc0\xaa\xd7\xe0\x1e\x21\xc3\xce\xcf\x65\xcc\xdf\xeb\xff\x02\xd7\x82\x42\xe3\x49\xa3\x0e\x84\x9d\x85\x9e\xdc\xdb\xdd\x2f\x12\x1e\x72\x1e\xb6\xfa\x97\x30\xc2\x82\xcc\xcc\x9f\x52\x66\x1d\x2a\x04\x66\x6c\xe0\x54\xdf\xf5\x0a\x06\xc2\x4d\x4f\x79\xcc\xc7\x4b\xad\x7a\xb4\x76\x57\xdf\x7e\x06\x53\x6d\xbe\x37\x87\x46\xfc\x66\x61\x31\x4f\xa6\xf4\x3d\xd9\x6e\x82\xf6\xed\xfe\x72\xc9\xdf\x3f\x08\x5d\xbb\x4f\x79\x67\x8c\x97\xc5\x7f\x6e\x26\x1d\x68\x79\x48\x10\x2f\x35\xfd\x71\xae\x43\x9f\x10\xb9\xa2\xcc\xee\xef\x5b\xc5\xf1\x8b\xef\xf5\xed\x37\x13\x5b\x19\xd8\xc6\xd5\xb9\x70\x77\xb2\x08\xb6\x4e\xa2\x3b\xe5\xca\x1e\x11\x12\xc3\x0a\x5b\x37\x17\x3d\x22\xc8\x4c\xfa\xfd\xe2\x76\x76\x19\x61\x60\xa9\x40\x0d\x57\x21\xfb\x28\xff\x59\xe3\x3f\x99\x81\xb3\x84\x95\x6e\xbc\x9f\xb9\xbe\x9d\x65\x2b\x71\xae\x6a\x5a\x05\xbe\x67\xd8\x8a\x69\x64\x40\x42\xf9\xf6\x68\x06\xad\x0a\x5c\x79\xab\x87\x9a\x09\x4f\x1e\x9f\x7f\xbc\x72\x1c\x47\x3a\xfb\x9e\x5e\x13\xbc\x4f\x88\xd5\x7a\xd5\x37\x3f\x2a\x9e\x30\x79\x50\x63\x6f\x62\xc8\xf8\xb2\xac\x57\x1d\x7a\x63\x6e\x0e\xa1\x96\x3b\x8a\x37\xe6\xdc\x05\x06\x42\x43\xf3\x64\xea\xbf\x5e\x61\x50\x28\xc4\xe2\xef\xf8\xd9\x4c\x18\xb9\xa0\xf6\x4d\x33\xeb\x0d\x61\x7e\x96\xf1\xd6\xc2\x90\x64\x42\x4a\xf8\x6c\x9f\x35\xcf\xd7\x13\xa6\x26\xec\x6d\xfc\x9e\x92\x48\xb0\x6f\x7e\x1e\x31\x50\xe2\x41\xb8\x54\x10\xf1\x8a\xab\xca\x89\xb0\xc7\xb0\x29\xc1\x6a\xf7\x5a\x82\x97\xd2\x0b\x83\x8a\x39\x06\x04\x5b\x57\x07\xf5\xe9\x5f\xa5\x08\x51\x3b\xca\xce\x48\x2a\xe9\x13\x6a\x6c\xeb\x4b\x35\x4b\x2a\x19\xfc\x73\xd1\x59\xd1\x7f\x30\x94\x60\x6d\x5e\xf2\xf0\x00\xf7\x26\xc2\x1e\x01\x57\xde\xaa\xc1\x26\x42\x98\xc6\xa1\x0d\xf5\xda\x5e\x04\xa1\x3b\xa6\x8b\x3a\x2c\x77\x10\x4e\x3c\xfb\xf9\x75\xb1\x8d\x3a\xe1\xe8\x07\xae\x46\xdb\x13\x89\x04\xf7\x7e\x1b\xf9\x8f\xb6\x9c\x84\x2f\x63\xde\x6f\xed\x3d\xba\x58\x10\x78\x70\x22\x28\x36\x6b\xfc\x85\xfd\xff\xc1\x42\x2b\x43\xaf\xe8\x6a\x13\x6b\xd4\x63\xad\xdf\xfc\xd9\xcb\x08\x0a\x56\x92\x89\xca\x3c\x2b\x08\xad\x79\x75\xdb\xa3\xd5\x2f\x13\xaa\x35\x2e\xaa\xcb\xd5\x5f\x21\x08\x77\x5e\xcc\x78\x76\x48\x81\x0d\x3b\x4a\x4c\x24\x85\xf2\x78\x08\x4b\xfc\x9a\x5c\x63\x03\xad\x08\xeb\x1a\xbe\x58\xe8\x5d\x54\x22\x24\x37\xad\xeb\xae\x30\xf3\x66\xc3\x14\x56\x89\x9b\x81\x43\x37\x21\xef\xe2\xe4\x73\xbc\x62\x61\x04\x09\x11\x83\x05\x3d\x53\xcb\x18\xd8\x6c\xae\x14\xec\x5a\xe9\x48\x78\x77\xfc\xc9\xdc\xaf\xd3\x97\x12\xda\x64\xb6\xdd\x59\x5f\x7a\x9a\xd0\x7b\x99\x4b\x2e\xea\x97\x33\xc1\x69\x72\xdd\x87\x1d\x43\x7f\x58\x08\x7a\xfa\xf5\x4c\x40\xbc\x20\x81\x67\xf1\xa9\x5f\x9f\xfe\xca\xb3\x8d\x7c\x42\x2e\x28\x8f\xae\xc8\x20\x84\x9a\x46\xdf\x16\xb3\x6a\x61\xa1\x5f\x52\xa7\xf9\xc5\xed\xc3\x04\xc1\xf7\x2e\xb2\x0a\x7a\xa6\x84\x80\x92\x32\xb1\x98\x47\xfa\x84\xca\xf4\x2d\xc6\x5b\x36\x3f\x27\x18\xd5\x58\xdc\x59\x5e\xa1\x44\x28\x5d\x62\xa7\xa9\xee\x60\x41\x88\xc5\xe5\x02\xb7\x79\x16\x84\xfd\x7d\xff\x4e\x8b\x1b\x71\x11\xfa\xe9\xe0\xb0\x69\xd5\x42\xc2\x66\x0d\xe9\x4b\xab\x73\xed\xd8\xb0\x74\xb5\x8a\x5d\xca\xbf\x0e\x16\xbe\x8b\xad\x9b\xbc\x59\x69\x8c\x05\xab\x95\xa3\x93\x74\xad\x05\x69\x02\x2a\x2a\xf1\xda\xe7\xc7\x9f\x18\x9b\xc9\x83\x91\x4f\xd3\x76\x10\x16\x98\xbc\xfa\x9e\x77\x27\x8b\x50\xa1\x23\x35\x2b\x9b\x33\x8b\xa0\x70\xf9\x83\xcc\x8d\x21\x86\x10\x77\x7d\x9b\x4b\x6d\x63\x33\xe1\x8a\x67\xd8\xf3\xeb\xe3\xc5\xa1\xf6\x04\xbd\x72\x72\x27\xf4\x3c\xb9\xb0\xdf\xfb\xc8\x1a\xc2\xfb\xf4\xcc\x53\x0f\x52\x3c\x09\x42\xeb\x3f\x7c\x3e\x6c\x7d\x80\xed\x4c\xf5\x6d\x5b\xf3\x1c\xbd\xa3\x0c\x4e\x4a\x4d\x3e\xe6\x36\x49\x95\xc0\x11\xef\x2a\xe4\x61\xad\x43\x50\xf4\xbf\xb1\xb3\xc1\x52\x82\x50\x25\x9d\x39\x23\xfb\xbd\x1a\xe1\x47\xf5\x14\x0d\xce\xd3\xee\x04\xd1\x23\xb0\xb6\x4b\xb5\x22\xcc\x4b\x10\xac\x0a\xeb\x59\x49\x38\x3a\xc2\xdf\x9c\x60\x2e\x49\xd0\x4e\xf6\xcb\xdc\x5e\xe9\x42\x68\xfd\xb4\x20\xbc\x63\xca\x02\x82\xbc\xda\xfb\x27\xeb\xf7\x4a\x10\xf6\x1c\x48\x76\xbc\x70\x6d\x32\x21\xfc\x9d\xb5\xa5\xd9\x0e\x16\x61\x2d\xa7\x41\xd5\xd0\xcd\x24\x82\xde\x26\xc5\x33\xbf\x67\x98\x11\x86\x5f\x9a\xec\x3f\x57\x70\x94\x70\xf9\x47\xdc\xdb\xc1\x4d\x37\x19\xbc\xde\xe6\x51\xd0\xbe\x58\x9a\x26\xc0\x15\x29\xdf\x32\x37\xc0\x8b\xf0\x71\xb5\x13\xf5\xb6\xce\x20\x70\xdf\x73\xd0\x0d\x78\x7d\x90\x10\x57\xd7\xbc\x76\x47\xd2\x6a\xc2\x29\xb9\xeb\xfb\x36\x9c\x33\x25\xb8\x75\x3a\xee\x32\xe0\xdb\x42\xa8\x97\xaa\x73\x96\x3d\x56\xca\x60\xcb\xe0\x57\xa9\x43\xeb\x4a\x18\xc8\xa9\x16\x38\xca\x8d\x17\x0b\xa5\x41\xcf\xdd\x9d\xa5\x0c\x8c\xa4\x16\x7b\x9d\x59\x1c\x46\x70\x57\xdd\xc7\xd9\xad\xea\x4e\x28\xdb\x58\xfd\xa2\xb7\x71\x27\x81\x2b\x9f\xef\xda\x56\x03\x5d\x82\xfd\x3a\xcb\x59\xea\xcd\x2b\x09\xe9\x02\x77\xe3\x2f\x08\xad\x22\x6c\x3f\xda\x2e\x72\xf6\x76\x2c\x03\x73\xc9\xb5\x33\xf6\x1e\xe5\xa1\x09\x24\x60\x5b\x65\xc9\xad\x4f\x2c\x94\x8b\x6e\x28\x99\xad\xc2\x47\x58\x14\x77\xcf\xe0\x78\x8b\x18\x61\x64\xf5\xab\x5f\x15\x01\x4b\x08\x3d\x5a\x5e\xeb\xbf\xcb\x69\x11\xce\x94\x87\x7b\x17\xbd\x79\x48\x98\xfc\x52\x38\xcd\x4d\xf1\x38\xa1\xca\x43\xe1\xed\x8c\xfa\xd9\x04\xe1\x96\x53\xb2\xf7\xf6\xac\x22\xcc\x0a\xd8\x75\xad\x2c\xf6\x07\x0b\x87\xdf\x79\x4c\x37\x54\x9d\x44\x50\x15\x9c\x62\xbb\xff\xe5\x41\x36\xb4\xbe\x2f\xd8\x6d\xae\x3e\x8f\x0d\x6f\x76\xed\x15\x30\xd8\xe1\x40\x50\xf6\xed\x12\x5c\x9d\xb1\x89\xf0\xc7\xf8\xb1\xc6\xd8\xfc\xa6\x12\xac\xcf\x3f\xbf\xf3\xd7\xbf\x58\x9a\xc0\xf5\xfb\xd1\x6f\xed\x9a\x5f\x31\x13\xa5\xae\x37\xc2\xa5\xac\xe5\x1e\x1b\xb2\x77\xdb\x6d\x1e\x12\x0a\x1e\x7f\x2b\x3b\x71\x0d\xf0\x3f\x26\xcc\x56\xd4\x54\x76\x5f\x55\x4c\x90\x73\xde\x65\xa5\xb4\xaa\x84\xf0\xe2\xe7\x47\x69\x0d\x77\x33\xc2\xe3\x3b\xd6\x8b\xfe\x9c\x3f\xc8\x4c\x14\x95\xaf\xab\x87\x87\x45\x6d\x08\x5a\xd2\x73\x35\x24\xbe\x8d\xb2\x90\xfd\x4b\xc7\x66\xea\xfc\x9b\x04\x33\x3f\xa5\x8a\xbf\xed\x47\x08\x5f\x6f\x74\x4f\xee\xf0\x49\x27\xf0\x65\xda\x19\x8a\xeb\xcb\x13\x74\x07\xf6\x2f\xea\x98\x7c\x83\xc1\xf6\xa6\xd5\x2e\x76\x0e\x7f\x58\x68\x2f\x08\xe2\x5f\xb2\x65\x29\x4d\xe0\x4f\x65\xf2\xf4\x61\xc5\x0e\x16\x34\xef\xfa\xaf\xbb\x92\xba\x83\xc0\x17\xcc\x59\x3d\xca\x97\x48\x50\x78\xdd\xf1\x27\xfe\xf8\x3d\x42\x91\x1d\x3c\xfc\xcd\x03\x08\xc7\x7f\xcd\x2a\x8b\x58\x20\x4b\xe0\x51\xe7\x0b\x33\x3b\x7f\x95\x20\x9f\x38\xed\x5a\xa8\xc7\x1a\x42\xbe\x7e\x7b\xe4\xd6\x47\x36\x04\xff\x33\x71\x95\xae\x0f\xa4\x08\xbf\x5b\xb6\x47\xda\xbe\x8e\x27\x28\xdf\xb0\x8d\xab\x5e\x73\x8f\x41\xf3\x9a\x26\x9f\x15\xb3\x72\x08\xcf\x38\xc7\xde\xc7\xcc\xce\x21\x94\x2f\xef\x2b\x6f\x8d\x30\x22\xcc\x71\x66\x7a\x93\x6f\x19\x12\xaa\xf8\x3e\x3d\x38\xc6\xca\x24\x68\x5f\xec\xf9\xf0\x26\xad\x80\x70\xb1\xc4\xe9\xb5\xa9\x8a\x0a\xc1\x2b\x95\xd7\xd9\x60\x6c\x12\x21\xf2\xb4\x8b\xc0\x48\xfd\x06\x42\xb6\xe6\xaf\x95\x8a\x36\x65\x0c\x76\x75\xc6\x14\xef\xae\x52\x26\xe4\x7b\x0c\x4e\xc9\xa7\xa9\x84\x0d\x91\x7c\x77\x7c\xce\x44\x10\x64\xe7\x45\x97\xc5\xdb\xc9\x10\x32\x14\xa1\x0f\x1f\x0e\x82\xd3\x1b\x63\xef\xa6\xd4\x7a\x06\xd2\x76\x12\xe9\x3b\x86\x1f\x32\x10\xba\xa0\xb2\xa0\xcf\x47\x81\xe0\x97\x7d\x6e\xa1\xea\x1b\x23\xc2\xb1\xbd\x5b\x5a\xa3\x6b\xda\x4b\xb0\x67\x4d\x54\xdf\xef\xd2\xb3\x04\x5d\xe1\x04\x56\x41\xd4\x52\x82\xab\xe2\xea\x88\xbe\x42\x0f\xc2\xef\x97\xaf\xef\xbb\xf1\x64\x13\xd4\xda\x02\x3e\x7e\xa9\x79\x4d\x38\x9f\x94\xab\x30\x34\xf5\x36\xe1\x66\x7d\x74\x4f\x9f\xe1\x65\x42\x0e\x4f\x85\x22\xaf\x58\x32\x41\x4a\xcd\xf8\xa1\xd3\x2f\x29\x82\xf2\xdf\x0d\x3e\x7a\xf9\xff\x58\xe8\x7b\x76\x2c\x6f\xe1\x07\x3e\x82\xf6\xfb\x9c\x80\x94\x7b\xca\x84\xc3\xb1\xa1\x32\xce\x36\xe7\x09\xef\x2a\x77\xfa\xbf\xd0\x94\x20\xb8\xba\x71\xb6\x76\x9b\x2c\x24\x88\x48\x28\x49\xe4\x4e\x37\x25\x7c\x5b\x55\x7c\x50\xdf\x75\x0d\x61\x89\x99\xf9\xf5\x46\xa9\x35\x04\x89\x5b\x36\xb7\x1d\x84\xd5\x09\x91\x31\xe2\x69\x06\x27\xe6\x12\xfa\x8a\xca\xed\x0f\x86\x0b\x13\xaa\x0b\x0b\xa4\x77\x0b\x8c\xb1\xb0\x6a\xdb\xbb\x23\x7b\xbf\x9f\x26\x44\x3c\x9a\x2e\xc2\x75\x78\x05\xc1\x9b\x5a\x5a\x06\xda\x9c\x09\xc6\x0f\x5e\xac\xb3\x49\x9a\x4b\xd8\x78\xe6\x82\xb5\x01\xe7\x6c\x82\x66\xa1\x42\x9a\x9f\x89\x2c\x41\x78\x8d\xe1\x13\x7e\x63\x05\x42\xdb\x47\xfe\x99\x97\x2c\x9e\x33\x30\x30\x53\x72\xe2\x4f\x10\x21\x1c\x12\x57\x98\xc9\xfb\xc8\x83\x10\xb5\xe7\xc9\xac\xd5\xf5\xa7\x19\x2c\x2d\xcc\x5d\x32\x2d\xe0\x2c\x61\x73\x9e\x68\xcb\xb3\x0e\x43\x82\x82\x69\x7d\x68\xfa\xd9\x87\x84\xe4\x94\xe8\xbf\x73\x8f\x88\x12\x0a\x8a\xcb\x77\xdf\xf8\x7b\x86\x50\xaf\xf9\xc4\xaa\x35\xe8\x11\xa1\x73\x64\xbf\xc4\xcd\xf1\x32\x33\x28\x41\x78\xac\x33\x98\x50\x7d\x51\x54\xa3\x7e\x5a\x35\x81\xc3\xad\xf2\xfa\xa7\xcf\x16\x84\x90\x3d\xe2\x3b\x44\x5c\xf4\x08\x9b\xf3\x15\x9f\xcc\x30\xba\x46\x50\xbf\x24\xb5\xc7\x23\x49\x91\xe0\x9b\xaf\xcb\xf7\x79\xe9\x26\xc2\xbb\x69\x9c\xfa\x53\x93\x63\x08\x9e\x69\x59\x49\x95\x9c\x73\x08\x05\xa6\xf6\x2e\x53\x7b\xaf\x10\x2e\x86\xa9\xef\x4e\xda\xae\x44\x08\x5a\x39\xf5\x43\x44\xe1\xf8\xae\x74\xea\xf3\xc6\x3c\xc3\x02\xc2\x1a\x8b\x46\xab\x22\x1b\x4f\xc2\xdc\x95\xce\x73\xbf\x26\xee\x24\x54\xc4\x5c\xe1\x13\x9d\x27\x45\x78\xa5\xf0\x2d\x5b\x76\x9f\x34\x83\x47\xfa\xa3\x76\x1c\x0d\x12\x84\x4f\xb8\xba\x31\x44\x20\x85\xf0\xe3\xec\xfe\x73\x76\x0e\xaf\x08\x59\xaa\xa1\xf6\xbb\xb7\x37\x13\xba\x45\x1f\xc6\xf5\x1d\xaf\x19\xbf\x3a\x64\x8e\xdc\xed\x31\x67\x43\x9b\x76\xfb\x83\xa6\xe1\xeb\x04\xad\x19\x7f\x13\xe4\xa7\xb8\xb3\x8d\x4e\x9e\xf6\xef\x5b\x98\xcb\x45\x88\xdb\xd2\x9b\x10\xb2\xc4\x92\x50\x39\xaa\x55\xe9\x2f\x66\x42\xc0\xb1\xcc\x3c\x69\x97\x72\x06\x3d\xe2\x2b\x54\xf7\xfd\xd6\x23\xbc\x5b\xf7\x2f\x2b\xc6\xb1\x83\x85\xea\x4c\xb1\x83\x73\xaa\x05\x08\x16\x8f\x6f\xec\x2c\xaa\xdc\xc2\x86\x50\x8e\xbd\x76\x57\x52\x86\x58\x13\xa8\x79\x28\x16\x6f\xdc\xba\x8c\x26\xd0\x5c\x13\xf7\x32\xa3\x2f\x8f\x85\x2d\x1a\x8d\x2b\x58\x85\x5a\x84\xf2\xb4\xc1\xb0\xb3\x77\x1d\x09\xf7\xf8\x86\x0f\x5d\x79\x2e\x4a\xa8\x1b\x16\x4e\x53\x8b\xe3\x23\x7c\x59\xd3\xbd\xe4\xfc\xe0\x03\x16\xce\x0c\x28\xee\x3e\x23\x91\x4c\xb0\xae\x98\x62\x2c\x65\xc1\x22\xb4\xfc\x31\x08\x59\x74\x4b\x90\xa0\x56\x22\xd7\xac\xae\x98\xc3\xe0\x65\xbc\xc4\xf6\xa6\xd3\xe6\x34\x01\xee\xfa\x6d\xb2\x7c\x65\x73\x09\x83\x2e\x55\x1e\x73\x97\x1e\x24\xdc\x96\x97\x72\x57\xe0\x2e\x24\xf0\xaa\x4f\x1a\x79\xac\xf9\x93\x85\x93\x62\x4f\x2f\x59\x7c\xca\x21\x38\x0d\xbc\xde\x72\xed\x73\x0e\xc1\x66\xdd\x64\xfb\x49\xfc\x77\x08\x91\x95\x82\xd1\xff\x15\xae\x2b\x99\x7f\x22\xe7\xef\x20\x5c\xbe\xab\xc1\xaf\x57\x1c\x40\x78\xb8\xa6\x6e\x61\xf7\x3a\x4b\x42\x48\xa7\x57\xdd\x02\xa9\xed\x6c\xa5\x56\xe9\xc4\xf9\x46\x5f\x6d\xc2\xea\x66\xf7\xb8\x21\xc3\xdb\x04\xa3\xd2\x3c\x2b\xcf\x33\xb3\x09\xd3\x64\x07\x52\xba\x9e\x4d\x27\x8c\x3c\xd4\x3e\xf6\x54\x62\x2f\x21\xdd\x28\x61\xba\x89\xc8\x76\xc2\x8f\xa3\x2b\xe7\x1f\x37\x9d\x43\xd8\x7a\x7e\x68\x07\x87\xf8\x3a\x42\xac\x92\xc9\x05\x05\xfd\x47\x84\xc1\x96\xa9\x8e\x2d\x42\xe5\x84\x94\xdd\x3e\x29\xf2\xe3\xa5\x2d\xe9\x63\xb2\xa6\xe8\x02\xc2\x0d\xb7\x29\x81\x1a\xa7\x4e\x32\x28\x5e\x9c\x60\x92\x94\x71\x8a\x70\xa8\xfe\xa2\x6c\x8f\xed\x71\x42\x40\xaf\xe5\xb2\xf6\x98\x14\xc2\x2a\x8e\xa0\xd3\x3d\xf3\xec\x09\x3e\xaa\xc7\x2d\x37\x24\x1c\x67\x10\x79\x23\xbf\xdf\x35\xfb\x11\xc1\xf7\x86\xd5\x1b\x61\xc1\x22\xc2\x87\xb4\x7b\xc3\xaa\xe3\xdb\xf7\x83\xf5\xbe\x85\xe7\x13\xed\x09\x25\x17\xd2\xe4\x8f\x6c\xbd\x49\xf8\x72\x5c\xe6\xed\x72\xa9\xc3\x04\x13\xab\xc1\x0a\x7d\x59\x67\xc2\xb9\x3f\xba\xda\xc5\xc1\x82\x04\xad\x9f\xa5\x0b\x96\x68\x0d\x10\xa2\x07\x3b\xfd\x5a\xfa\x4a\x09\x4f\xbe\xf4\x9d\x9e\xe2\x9d\x4c\xc8\x48\x64\x0c\xf7\x7d\xb0\x24\xbc\xb1\xb2\x68\x5f\xbc\xda\x8e\x20\x9d\x7a\xc7\xf6\x8c\xb5\x31\x41\xe0\xa8\x73\xf2\xe1\x57\x2f\x59\xc8\xf1\xe6\x7d\x5b\x36\x50\x40\xf0\x09\x5c\xba\x23\x71\xa4\x80\xb0\x22\xb2\x6d\xb8\xd5\xee\x01\x61\xc5\x8a\xca\xf4\xb5\x4d\xb9\x04\x96\xb6\x57\xd6\x73\xfb\xa3\x84\xe5\xea\x59\x01\xa5\x73\x4a\x08\xbf\x2e\xe7\x0d\x45\x95\xcc\x22\x98\x35\xff\x93\x5d\x93\xa6\x42\x70\x58\xbf\xed\xf0\x2d\x43\x65\xc2\x80\xab\x6d\x89\x88\xd6\x75\x16\x9c\xbe\x5d\x59\xb8\x44\x56\x80\x60\x79\xb1\xb5\x2d\xee\x43\x04\xe1\x8b\xd4\xa3\xd3\xcb\x8e\x1a\x13\x34\x3e\xcc\x39\xeb\xf3\xe1\x2f\x0b\xd7\xf3\xbd\xaf\x5d\x6b\x9a\x46\x80\xe5\x49\xd5\xf9\x5f\x1b\x59\xd0\xbf\x34\xab\xda\xf7\x2b\x2f\x61\xb3\xcb\x8d\xd6\x7d\xc9\xa1\x84\x55\x27\xab\x1e\xed\xf1\x5a\x4b\x58\xa8\x65\x6e\xfa\x38\x7a\x0e\xa1\xdd\x79\xff\xdd\x82\xf0\x0d\x84\xfc\x33\xa5\x95\xdd\xe3\x0f\xec\x6b\x6f\xf1\xad\xbe\xd3\xd6\x13\x8e\x19\x68\x37\x7c\xb4\x7b\x4c\xd8\x5b\x7f\xee\xca\xc7\x99\x69\x84\xfb\x33\x76\xdd\x1c\x15\x9c\x46\xc8\x9a\x67\x5f\xbf\x3b\x67\x2e\x41\x5d\xfb\xdf\x02\xc8\xa4\x13\x24\xdb\x0e\xf6\x4e\x37\x0e\x24\x94\x0a\x35\x2e\x0e\xe1\x71\x23\xe4\xb5\x59\x88\xef\x68\xb5\x26\xb4\xee\xae\xcd\xc8\xb6\xd1\x26\x64\x18\x06\x3c\x8b\x55\xb2\x26\xdc\x93\x12\xbd\x94\xc1\x67\x49\xf0\xd8\x23\xb7\x53\xe2\x68\x2e\xe1\xb0\xd3\x14\xbf\xeb\xcb\xde\x13\x96\x49\xb7\x48\x25\x8d\xa3\xb2\xf0\xe2\xaa\x5c\x93\x3e\xc2\x93\x9e\xf7\x57\x3a\x43\xea\x09\xfa\x9a\xc6\x33\x72\xf8\x92\x08\xea\x2c\x8e\x5e\xdb\xf7\xef\x19\xa4\x27\x9c\x57\x79\x65\x23\x42\xb8\xa5\x55\x9f\x6a\x70\x30\xb4\x04\x0b\xc8\x27\xab\x7c\xfc\x3d\x1f\xad\xab\x9e\x53\xb9\x9f\x9b\x0d\x93\x6f\x4e\xdd\xf4\x42\x4c\x94\x30\x3b\xf8\x43\xf9\x42\xa5\x7f\xac\x09\x5c\x3b\x19\xb2\x4f\xca\x5a\x97\x10\xdc\xf6\xcb\x51\x36\xc9\x97\x20\x7a\xea\xb8\xc1\xd6\x88\x78\x42\xf0\x55\x4e\x8b\x74\xf3\x13\x84\x3b\xf9\xcb\xf4\x7e\x07\xdf\x65\xc0\x7b\xe9\xc9\x90\xe5\x95\xeb\x0c\x78\x2b\xe3\x9b\xba\xa4\xb2\x08\xba\xab\x0f\xa5\xff\x87\x9a\x83\x0e\xd7\x9c\xb4\xff\xb0\xf0\x48\x71\xec\xbd\x5e\xf9\x75\xc2\xda\x77\xdb\xf8\xbe\x29\x67\x12\x0a\x1a\x5a\x3d\x6d\xe4\x9b\x09\x82\xd7\x5e\x0a\x0f\x8d\x97\x1a\xc1\x9c\x96\x86\x27\x66\x84\x1d\x15\xbf\x2b\x1e\x58\x1f\x27\x5c\x49\x92\x94\x9c\xd4\xb2\x87\xa0\x1a\x37\x55\x41\x3f\x6f\x1d\xc1\x7e\xf0\x0d\xb7\xf4\xf8\x9b\x6d\xa6\xea\x4b\x71\xcf\xf1\xff\x46\xfa\xbb\x65\x21\x7b\xba\x1f\x10\x22\xd6\xf6\x35\x7f\xca\x7d\x40\xd8\x30\xf4\xa3\x89\xf3\x86\x19\xa1\xe5\xac\xce\x9f\x0a\xa3\xad\x6c\x25\x8c\xdf\xe5\xa2\xcf\x3e\x35\x36\xbc\x78\x5b\x6f\x1a\xf0\x69\x21\xc1\xf7\x4c\x41\xf6\x35\x15\x03\x36\x7c\x75\xf8\xb0\xf5\xf4\x81\x8e\x12\x90\xc3\x46\xdf\x6f\xdf\x4c\x08\xcc\x3b\xcd\xed\xad\x3f\xa7\x10\x5c\xe7\xed\xe8\xb7\x7f\x64\x4c\x90\x9c\x3f\x2a\x37\xc9\x57\x90\x60\xc4\xc5\xc7\x51\x58\xad\x46\x38\xab\xd9\xe4\xe6\x22\x3d\xbe\x0c\x74\xaf\xd3\x90\x91\x5c\x4b\x60\x99\x75\x71\x89\xce\x89\x65\xb0\x52\xe4\xde\xeb\x88\x3f\x09\x84\xba\x72\xeb\x46\x4f\x8e\xbb\x04\xfe\xcd\xc1\xaa\x9e\x21\x09\x84\x85\x61\x62\xc2\x6d\x73\xae\x12\x64\x1d\x74\xa5\x1d\x97\x49\x12\xa8\xec\x58\x5b\x7c\x96\x10\xe1\x9c\xaf\x4c\x69\x9c\x94\x1e\x61\xa0\x26\x76\x6a\x6d\x8a\x0e\xa1\xb8\x9d\x73\xd0\xb9\xd0\x91\x20\xdb\xb2\xda\xce\xa7\xe2\x2a\x5b\x91\xe4\x35\x9e\x56\x16\xfd\xb0\x04\x3f\xbe\x7d\x5a\xd1\x19\x79\x97\x30\xa7\x5a\x93\x3e\x6e\x7f\xc4\xe0\xfd\xae\xa8\xe9\xbf\x44\x5f\x11\x16\x57\xc8\x7a\xfe\x37\x2a\xd3\xcb\x1a\x99\x3e\xd9\x94\xa0\xf7\xf0\xf5\x16\x8b\xf0\x2a\xc2\x18\x8f\xa7\xf5\xd4\x53\x2f\x4a\xe0\xc3\x11\xa4\xb3\x50\x63\x3b\x41\xf5\x5c\xc5\xd9\x35\x2e\x8b\x08\x5c\xde\xb9\xe7\xfe\xc8\x2e\x25\x28\x3c\xdb\xea\xf1\x3a\x57\x8c\x50\x5d\x53\x46\x9c\xed\x65\x2c\x24\x24\xa5\x9d\xfd\xf9\x59\x85\xb0\x28\x59\x63\xcf\xe9\xbf\x37\x08\x72\x87\x23\xf7\xe7\x66\xbd\x66\x60\xe3\x3b\x98\x92\x52\xd3\x46\xf8\x97\x9b\xf2\xf1\xd7\x87\x26\x06\xd1\x2f\xee\x29\x5e\xd6\x2d\x25\x44\xa9\x69\xae\x70\x78\x15\x47\x38\xb7\xd3\xf1\xe1\x9e\x6b\x73\x09\x2b\x3e\x5e\x08\x0d\x49\xc9\x27\x38\x59\xec\xb2\xff\x0f\x9f\x65\xbc\xf7\x8d\x3e\xd8\x48\x38\x16\x75\x2c\x9f\x39\x78\x97\xb0\xf1\x69\x40\x4d\x94\xe4\x20\x41\x66\xe1\x16\x09\xa1\x4d\xff\xbd\x7b\x35\x0e\xff\x37\x52\x09\x7e\x67\x34\x7b\x3f\x3f\x21\x4f\x72\x8f\xd8\xf4\xab\x1d\x2c\x2c\xf5\x9f\x5c\x74\xe5\x7d\x31\x21\xb1\x2e\xb7\x4e\x78\xe1\x73\x06\x25\x2d\x7e\x96\xb9\x4b\x4b\x09\x3f\x12\xb7\x5e\x3f\xa3\x11\x45\x98\xbf\xa9\xef\xd0\xa1\x7d\xd2\x04\xeb\x93\x8e\x5f\xe3\x9f\xaa\x13\x9c\xf6\xf0\x38\xb6\xfd\xd6\x22\x5c\x1c\x2a\x5b\xa0\x3f\x2d\x9a\x6d\xd4\x7d\xb0\x2b\x35\xeb\x4f\x09\xc1\x4b\x2f\xc9\x37\x69\x4e\x39\x1b\xf6\x3d\x96\x3c\x3a\x72\xb1\x84\x30\x7f\xca\xab\xc7\x91\xff\xcf\xe8\x7f\xb8\x27\xf6\xcc\x3c\x2e\x60\x19\xa1\xdf\x83\x23\xcb\x71\xfc\x66\xbf\xc2\xd5\xf6\xd4\x7d\xab\xbb\x84\xaa\xc5\x86\xee\xff\xe1\x74\x6b\xf2\x25\xd5\x4f\x79\x0c\x86\xfe\x4a\x9e\x5a\xc9\xe5\x4d\xe8\xa8\x92\x2a\x4f\x32\xbf\x4b\x48\x0b\x54\xd1\xbb\x37\x7e\xe6\xae\x8d\x56\x42\x66\x86\x23\x1b\xd6\x7c\x6e\x49\xda\xb7\xca\x9e\xad\x18\xed\xf0\x5b\xd8\xb6\x2c\x84\xb0\x49\x70\x49\xc8\x7f\x85\xeb\x46\xb1\x9c\xe9\x21\x4f\xc2\x91\x7a\xbb\x81\x94\x62\x5f\xb6\xf2\x3f\x18\x4c\x8f\x6f\xd9\x39\x6a\x41\x30\x0a\x7e\xa6\x56\x60\x25\x45\x30\xe6\xf6\x8a\xe3\xd8\xbc\x86\x30\x54\xa3\xd4\xcd\xda\x20\x40\xa3\xf5\x7f\xce\x47\x16\x35\x94\xc0\x5b\x25\xf7\xd3\xd6\xf5\xc7\x08\xf5\xca\x7b\xee\x5c\x3f\xfd\x88\x90\xe1\x78\x78\x9a\x69\xda\x3d\x42\xeb\xea\xa8\xa2\xfc\x9d\xb1\x04\x1b\x19\xf9\xdb\xf7\xe5\x1e\x10\x66\xa4\x68\xfb\xff\x77\xe6\xea\xa4\xc4\xba\xcd\xf2\x92\x6c\xc8\x31\xb7\xbf\x7b\x63\x52\x1e\xa1\xa7\x42\x35\xe8\x3f\x7c\x28\xf9\x37\xf4\xd4\xe8\x03\x03\xbd\x4f\xb2\x3b\xd4\x15\xb3\x19\x0c\x8c\xfe\xf4\x4b\x1d\x1f\x2d\xdf\xe4\x20\x2c\x35\xac\x42\x10\x17\x78\x5e\x17\x5b\xaa\x47\xb8\xa0\xa5\x5c\xea\x22\xfb\x94\xc1\xc1\x27\x68\xff\xf1\xb6\x9e\xe0\x2d\x7b\x67\x5b\x45\xda\x63\xc2\xa1\x29\x35\x83\x99\x47\x3e\x13\x96\x85\xdc\x1a\x3c\xf0\xb5\x88\x6d\x34\xb8\x69\x75\xab\x8d\x5b\x36\x81\x1e\xad\x34\x8b\xae\xce\x26\xe4\x5d\x78\xca\xfb\xb9\x36\x8b\x70\xf3\xd0\xc6\x37\x6e\x01\x67\x19\xe8\xf9\xa4\xb7\x2e\x0a\xc9\x66\x20\xcb\xcc\xbc\xf3\xdf\xe1\xc6\xa2\x49\x9f\x5c\xc5\x6e\x13\xce\x17\x74\x86\xfa\xfc\xca\x24\x24\x19\x3a\xdb\x2f\x2e\xbb\x42\x88\xfb\xf7\xfd\x4f\x9b\xd7\x3d\x82\x40\xab\x76\x5f\x5d\xf1\x2b\x82\x29\x67\xb5\xc1\xe4\x82\x60\x82\x50\x25\x27\xff\x7b\x45\x0f\xc2\x8c\x47\xa5\xbf\x03\xa3\x73\x19\x1c\xdb\xd2\x51\xeb\x73\x2c\x88\xe0\xe2\xb4\x92\xdb\x31\xbf\x88\xf0\x2a\x73\x31\xff\xca\x86\x07\x04\x99\x19\xb3\x97\x1c\x9d\x23\x49\xe0\xb7\xde\xe6\x36\x9a\x2a\x48\xc8\xff\x75\xff\xb3\xc1\xcf\x04\x36\xec\xac\x10\x39\x69\x5d\x79\xa2\x04\xab\xaf\xf7\xaf\xf8\xda\x72\x95\x90\xca\xcb\xe9\x24\xfc\xd6\x88\xf0\xf3\xd6\xe1\x9d\x71\x2a\xd9\x84\x9c\x2f\x6f\xac\x8b\x9a\x0a\x09\xb5\x61\xa1\x3f\x47\x4a\x93\x19\x44\xe7\x7d\xc8\x9f\x94\x7d\x9f\x70\x70\xe3\x2e\x96\x09\xeb\x09\x61\x6a\x6c\x98\xf5\x7f\x65\x60\xc5\x3f\x5d\xb9\xc5\x4b\x09\xea\x9f\x6f\x49\xdd\x75\x55\x21\x3c\x51\x78\x25\xe4\x7b\x7a\x0e\x1b\xfc\x43\xd7\x9d\xcd\x8e\x1d\x66\xa1\xee\x45\x4b\x5f\x4f\xd6\x1c\xc2\xd4\x4f\xa7\x0f\x7b\xca\x49\x10\x2c\x92\x96\xf0\xf4\x3d\xbc\xc7\x86\x07\xe7\x87\xe6\x1b\x06\x35\x10\xfe\x86\x6a\xcf\xfc\x32\x5e\x02\xce\x7a\xf3\x1f\x52\x49\x26\x68\x2b\xfe\x9e\xb1\x4f\x3a\x99\x70\x3a\x75\xfa\x47\xab\x35\xa1\xcc\x44\xc9\xba\x79\xd7\xad\x63\xef\x7d\xb6\xa2\xfb\x64\xf3\xe3\x91\x6d\x76\x84\xa9\xc9\x37\x4e\xc9\x0b\xbe\x61\xa1\x6f\x79\x68\xc3\x37\x6f\x21\xc2\xf9\xc7\xad\x9c\x39\xee\x2b\x08\xd9\xc7\x14\x4f\x26\xbb\x64\x12\xa6\x55\x6a\x4a\x07\x3d\x2e\x26\x64\x67\xb9\xab\x2d\xbd\x7a\x8c\x90\x9c\xda\xb6\x5c\x68\x59\x37\x83\xec\x95\x62\x2e\x6a\x07\xf6\x10\x0e\x34\x9f\xd2\x3a\xcc\x79\x91\xf0\x39\x68\xca\xc9\x97\xfb\xa7\x13\xae\xf9\xfd\xb9\xe4\xd5\xb7\x9a\xf0\x4f\x75\x46\xa4\xd8\x3f\x1d\x42\xfe\xf2\x07\x46\xdb\xdf\x4f\x23\x1c\x99\x34\x63\x51\xc3\x31\x2e\x42\x53\xd4\xba\xec\xe8\x55\xc3\x2c\xa8\xd0\xf6\x3b\x2b\xba\xb8\x08\x2a\x43\x6a\x3d\x07\xe4\x9d\x08\x0f\x2f\xff\x9e\x97\xb1\x92\x9f\xc0\xd1\xfe\xfc\xae\xd5\xa8\x1c\x1b\xf8\xfd\xcb\xed\xd5\xa7\x4d\x65\xc3\xb2\x61\xeb\xb7\x6f\xb4\x9a\x59\x13\xd8\x1b\xce\xfb\xae\x3b\xb3\x9f\x85\xd2\xd2\xb6\xef\x79\x51\x45\x04\xf3\x67\xac\xf0\x24\x1b\x4b\xc2\xf7\x37\x0a\x37\xda\x12\x94\x08\xdf\x5d\x9b\xea\xb6\xb5\xfd\x63\xa1\x84\x27\x62\x6a\x70\x8d\x14\x5b\xe9\xc5\x9b\xd1\x9b\x89\x53\x68\x02\xa3\xbe\xb1\x87\xf2\x36\xb4\xb0\xb0\x77\xaf\xc5\x6c\x95\x9b\xd3\x09\xa2\x5f\x54\x1b\xcf\x78\x2e\xfd\xff\x8b\xb7\x1c\x92\x6b\x79\x4e\x7e\x64\xa1\xe6\x4a\xf7\x5e\xae\xa1\xf5\x84\xa6\xcc\xbd\x5f\x85\x85\x6e\x13\x92\xb4\xa3\x44\x16\x8c\x63\xe6\x19\x41\xe1\xf3\x89\x8d\x6c\x23\x7e\x56\xf4\xbc\xae\x8f\xd2\x84\x5d\xa5\x9b\xae\x6a\x59\xfe\x21\xb8\x94\xac\xbe\xd8\xc1\xf9\x98\x10\xa3\x7d\xd9\x65\xfa\x8c\x13\x84\xbb\x2d\x3e\x77\xeb\xc5\xf4\x09\xe6\x12\x45\xdb\x0f\x59\x1d\x23\xe4\xc8\xdc\xd3\xac\x1e\x50\x20\xdc\x55\x93\x7e\xdf\x76\x69\x39\x41\xf7\x82\x83\xcc\x32\xef\xe5\x04\x13\x4e\xcd\x29\x03\xf3\x33\x18\x48\xdd\x5a\xf8\xe7\x66\x97\x29\xe1\x88\xcf\xdc\x93\x15\x9b\x14\x08\x3b\x8c\x75\x3a\x42\x05\x2f\x30\xe0\x16\x7e\xcf\x7f\x5c\x7a\x1b\x41\xe0\x95\xd1\x1d\xa7\x27\x2a\x04\xd5\x22\xe1\xde\x45\x4f\x26\x11\x7e\x6f\xe2\x8e\x59\x3c\x7e\xfb\x17\xf7\xfa\x32\xfb\xb7\x4d\x04\x21\xbd\xbf\xf8\xa9\x5c\x93\x3d\xc1\xac\xd1\x5b\x6d\x9b\xc5\x05\xc2\xba\xc2\x49\xab\x0e\x1d\xde\x47\xf0\x4b\xf7\x73\x88\x54\x56\x22\x04\x08\x5d\x54\x09\x18\x1d\x63\x61\xf7\xb5\xaa\x23\x3d\x55\x11\x84\xaf\x57\x5b\x66\x89\xbc\x0c\x25\xd4\x99\x25\xb5\x9f\xea\xca\x23\x44\x69\xbc\xf7\xe5\xd1\xbd\x4f\xf0\x6b\xa9\x87\xf6\x89\x72\x16\x18\xee\xe2\x5d\x7f\xa7\xff\x61\x61\x8a\x90\xa0\xd8\xe1\xdf\x92\x34\x01\x8b\xf0\xd9\xea\x57\x8d\x0e\x10\xbc\x2d\x52\x4c\x3e\xeb\xfc\x62\xc1\xa7\x61\x55\xf5\xd8\x6f\x6f\x82\x83\xdb\x5c\x41\xbd\x5a\x5e\x82\xc1\xab\xe9\x85\x72\x41\xc9\x0c\xf6\xae\xef\xda\xc5\xbb\x55\x87\x70\x60\xac\x7b\x78\x7f\xd6\x25\xc2\xa5\x3f\xfe\xcd\x62\x26\x9b\x08\x27\x14\x8e\x45\x0d\x2c\xd5\x20\xd8\x93\x2e\xaf\x69\x2e\x1f\xc1\xf4\xd0\x3a\xc5\x44\x8f\xcf\xac\x09\x3c\xf5\x1f\x1a\x5d\xe1\xda\xc9\x82\x80\xce\xfd\x9b\x9f\xb2\x1c\x09\xb3\x2a\x8f\x3f\xf4\x56\xd2\x24\x3c\x09\xf6\xc8\x4a\x13\x36\x24\x28\xa5\xd5\xea\x86\x6c\xf0\x21\xe8\xc7\x31\x5e\x12\x62\x5e\x04\x93\x6d\xbc\xd1\xc9\x0e\xf3\x09\xb9\x5a\x06\xb7\xee\xb4\x98\xb2\x95\xc0\xf3\x7c\xcb\x45\xee\x4f\x62\xc3\xe2\x38\xdd\xc9\xb9\x92\xd7\x08\xbf\xa6\xfd\xea\x35\xfe\x1b\x47\xf8\xac\x9a\xe2\xb8\xe9\xff\xc1\xbf\x13\x03\x55\x4e\x17\xb7\x12\xb8\xca\x2a\x2f\x1f\x11\x51\x67\x83\x7b\x92\xf0\x89\x29\x29\x2a\x84\xc9\xd1\x15\x22\x37\xaf\x6d\x27\x30\x1b\xaf\x4e\x9f\xf5\x7a\x7c\x4b\xad\x5a\xca\x77\x82\xaf\xa3\x04\x8f\xbf\x1e\xb5\xe3\x08\xda\x4a\x13\xd8\xc8\x7d\x60\xf2\xe1\x84\xa9\x84\xed\x46\xaf\x76\x2e\x0e\x68\x67\x61\x46\xad\xf1\xdb\x3c\x9e\x03\x84\xfd\xaf\x6e\xff\xc8\x6c\x76\x22\x7c\xfe\x71\xf6\xc1\x7e\xb5\xe9\x84\xfc\xab\x37\xcd\x56\x2d\xfa\x5c\x82\x65\x8f\xfc\x6e\x09\x49\x3a\x13\xe6\xbf\x68\x19\x1e\x09\xd9\x4d\x50\x4b\xbc\x66\xba\x2d\xc2\x89\x90\xa8\xe2\x3f\xbf\xc2\x43\x80\xf0\x74\x56\xc4\xf3\xaa\xe7\x1b\x08\xdd\xd7\x32\x6b\x9e\x44\x2c\x26\x48\xaf\xd6\xea\xfe\xfa\x57\x92\xd0\x3f\xdf\xd6\xeb\x0a\x97\x03\xc1\x62\xdd\xd4\xf3\xda\xea\xba\x04\xfb\x33\x4f\x17\x78\x86\xf2\x11\x5a\x2f\x2c\xf0\x3d\x6a\xf0\x99\x05\x97\x33\xa1\x01\x2f\xff\xf8\xd3\x04\x24\x98\x73\xfe\x7f\x4e\xbc\x26\x5c\xcb\xb0\xee\x5e\x64\xf3\x80\x70\x55\xbe\x55\xfb\x75\xcc\x4b\xc2\xa1\x6e\x8f\xa9\xd7\x05\x5e\x11\x34\x3c\x2d\x0f\xe5\x38\x5e\x23\x08\x4d\x39\xbf\x50\x64\xe4\x7e\x09\xf6\xbd\xf5\xaa\xca\x9c\x3a\x8b\x20\x28\x3f\x2f\xe6\x65\xc7\x1e\x06\xe1\x1f\x17\xad\x68\xcb\x2f\x27\xe4\x3c\x32\xd3\xff\x3a\xff\x21\xe1\xcc\xc6\xf9\xb7\x93\xf2\x5f\x32\xf8\x96\xea\x78\xb6\x21\xb8\x8a\xd0\x57\x22\xb3\x2f\xbc\xf4\x01\xe1\x88\xb2\xa1\xea\x8e\xf9\xf6\x84\xfd\x53\x85\x9e\xf1\x7e\x19\x61\xe1\xd9\x8e\x1f\xeb\x52\xfb\xb6\x11\xde\x0d\xdb\xd6\x2f\xb3\x9a\x4e\xd8\xae\x5c\x75\x39\x7b\x38\x82\xa0\x38\x2a\xd1\x96\x35\x8e\x9a\xc9\x1d\xaf\x99\xa2\x40\xc2\xae\xc2\xf3\x21\x72\x19\x52\x84\xe6\x68\xc4\x8f\x3c\x97\x23\xa4\x96\xe8\x3d\xae\x6a\x68\x2c\x81\x03\x67\x7a\x49\x75\x49\x2b\x83\xa0\xcf\xa5\x23\x26\x9d\x39\x84\x58\xbb\x35\x77\x2f\xfd\xcd\x24\x9c\x0d\xda\x16\xf4\x5f\xf9\xdf\x88\xbb\x3b\x64\x74\xda\xc1\x68\x06\x35\x6a\x3f\x26\x47\xb8\x39\x11\x96\xeb\x1c\x5e\x12\xe8\x13\xc3\x40\x99\xcf\x32\xe5\xe7\x42\x03\x06\x16\x27\x3b\x6e\xf6\x4a\xdd\x27\x38\x39\xcb\xe4\xae\x2a\x16\x25\x44\x8d\x95\x2a\x8d\x54\x05\xb2\x61\x46\x62\xfa\x9c\x92\x6f\x76\x04\x27\x8e\x63\x22\x95\x7d\x96\x84\xad\x6b\x0b\x4e\x26\x27\x47\x12\xae\x7f\xff\xb0\xf2\x6a\x95\x0c\x21\x95\xd9\x9a\x3e\xff\xec\x77\x16\x16\x31\x97\x1f\x2c\xde\xa0\x44\x98\xb2\x32\x4f\xb5\x4a\xfa\x1c\x21\x58\xfa\xda\xb7\xbb\x4d\x9a\x04\xa7\xe4\x9d\x1e\xbd\x9f\xe6\x11\xde\xa9\x7a\x3c\x5d\x10\x28\x48\xf8\x55\x9e\x24\x1d\x51\xfa\x88\xa0\x33\xd2\xc6\x1b\xf9\x35\x9b\x70\x46\xf6\xdc\x6d\xdf\x7e\x73\x42\xeb\x29\x1b\xbf\xee\x49\x12\x84\xc7\xaa\x9d\x57\x1b\x84\x9a\x19\x58\x54\x6f\x8f\xaa\xae\x5b\x43\x10\xd4\x71\xe3\x3e\xd7\x7e\x91\xb0\xb8\x2f\x6d\xe5\x4b\xc1\xd5\x84\x37\x4f\x0e\xcd\x51\x9a\x51\x4c\xb0\x97\x57\x5d\x7e\xc8\x6b\x3e\x61\xa5\xa4\xff\x75\x4b\xef\xf9\x84\x1f\xaf\x44\xf3\xd3\x8d\x8e\x13\x2e\x3f\x35\x1f\xd3\x3b\xb4\x85\xd0\x6e\xe5\x27\x70\x25\x70\xfc\x5e\xd8\x20\xfe\x56\xa9\x7d\x23\x81\x43\xe5\x63\xdf\x34\x63\x4b\xb6\x62\x20\x20\xe0\x18\x15\x5b\xce\x82\xc4\x8c\x5b\xf2\xbb\x1a\x02\x08\x5f\x4e\xd6\xf7\x1b\x17\x79\x10\x16\xef\xad\x13\x7c\xaf\x2c\x41\x38\xfb\x5b\xf4\x4b\x89\xe1\x62\x82\x4d\x6d\x55\x4e\x58\x21\x37\xe1\xc6\xa1\xae\x9f\xbc\x66\xb7\x09\x5c\x27\xe7\x2b\x0b\xfd\xe2\xfc\xbf\xb0\xdd\x6c\xae\xf3\xc7\xd4\x8d\x84\x4b\xca\xd1\xb3\x86\xcf\x81\x35\x81\xec\x69\xf2\x43\xca\x0d\x3b\x19\x70\x8e\x1e\x1d\x9e\xf9\x2e\x9b\x30\x6b\x7f\x43\xed\x89\x18\x0b\x42\xf1\x69\xbf\x9a\xe9\x73\xae\x13\xf0\x04\xa3\x03\x58\x4a\x58\xf9\x7d\xb5\xe4\xac\xb5\x0b\x09\xfc\x06\xa2\x37\xaf\x2c\xd5\x24\xf4\x19\x26\x6a\x26\x08\x7b\x10\x4a\x93\xb7\x19\xd8\xec\xbd\x47\x50\x74\xde\x55\x9b\x2a\x54\xce\x9a\xc0\x76\xdb\x35\xa4\xf9\x92\x8b\x10\x7f\x40\x7e\x53\x62\x0d\x07\x01\x01\x01\x45\x9e\x27\x94\x08\x32\x1a\x53\x87\x3e\x7c\x89\x27\xec\x9d\xea\xb3\x33\x7c\x6d\x2c\x81\xb3\x7f\xe6\x47\xe5\x7f\xd7\x08\xa2\x03\xab\x84\x74\xb8\x44\x09\x25\xac\xb5\xd3\x2e\xf1\x69\x12\x4a\xc4\x2c\x42\xb6\x3c\x98\x4e\x88\xd9\xb7\xaa\x56\x67\x9e\x26\x61\xf6\x86\xc9\x66\xaf\xfa\xa4\x09\x6b\x1c\xe7\x25\xcc\x08\xd7\x27\xc8\xdf\x13\x09\x90\xad\x91\x20\x68\x71\xaf\x61\xed\xb5\xe1\x20\x84\x99\x65\xc6\x3a\x7f\x2b\x21\x48\x5f\x3c\xeb\xd0\x2f\x59\x4f\x30\x88\xf9\xf0\x30\xe3\xa0\x11\xc1\x34\xd3\xcd\x9f\x8b\x6f\x26\xe1\xd4\xcc\xbe\xaf\xcf\xd3\x86\x58\xa0\xc3\x6f\x0d\xcf\xae\x56\x26\x48\x2b\xe6\xe9\xcd\x9f\xb2\x8a\x70\x28\xec\xbc\x4d\x90\xf8\x20\x0b\x6b\xef\xa8\x4d\x13\x6e\xe7\x23\xdc\xe9\xfb\x9b\xe8\x30\x6f\x80\x85\xc4\x9d\x5e\x51\x57\xb7\x71\x12\xfa\x8d\xfc\xf2\x9a\x79\x75\x09\x0d\x6f\x22\xe6\x5c\xeb\xe3\x25\xe0\xac\xea\xb5\x23\x09\xc5\x84\xc9\x79\x1f\x97\xdf\xbd\x3d\xc0\xc2\xc3\xde\x5e\x07\xc5\xf0\x19\x84\x5e\xaf\x03\xeb\x9f\xba\x3e\x22\x18\xef\xb5\xd1\xed\x56\xdd\x4a\xb8\x90\xee\x16\x30\x47\x67\x13\xa1\x0e\xc1\x21\xed\xee\x47\x08\xe2\x57\x4c\xfc\x3b\xec\xcd\x08\x53\x77\x26\xb8\x66\x2c\xf0\x27\x8c\x58\x9d\x5c\xb4\xcf\x25\x88\x30\x76\x21\x76\xe7\x91\xcb\x0e\x6c\xd8\xdc\x55\xab\xc5\xa3\xa4\x4c\x50\xb2\x3a\xb0\x7e\x63\xdd\x1e\x42\xe3\xa4\x7f\xf9\x42\xb5\xab\x09\x3b\x82\x9f\x3c\xf8\xbd\x51\x85\xe0\xf7\x3d\x50\xfe\x04\x87\x24\x41\x26\xad\xd7\x3b\x2d\x7f\x15\x21\x7e\x30\x7e\xd5\x8f\xdf\x2b\x09\x3f\xbf\x8e\x3d\xd9\x63\xad\x45\xd0\xf5\x23\x4f\x89\xec\x14\xc2\xc1\xdf\x4d\x42\x1b\x0e\xad\x67\x1b\x19\x15\x6d\x92\xd4\x8e\x7c\xc5\x42\xb4\x9a\xd9\xcd\x83\x5c\x1b\x08\x22\xbe\x7f\x56\x7d\xdd\xff\x97\x85\x3b\x1d\x27\xd4\x84\xee\x3b\x10\x9e\x73\x78\x75\xd4\x5b\x84\xd3\x44\x19\xfe\xa9\x2b\xe4\xd1\x7e\x98\x20\x53\xb6\xac\x73\x51\x85\x0d\x41\xa7\xa7\x21\x6d\xe4\x6d\x0c\xe1\xa3\x59\xad\xd6\xb7\xe0\x23\x04\x8b\xb1\xa9\x17\xdc\x1f\x44\x11\x5e\x5f\xe7\xf7\xc9\xbf\x78\x92\x90\xfd\x7a\x54\x5e\xb7\xc7\x90\x10\x3a\xa7\x4e\x70\x29\xaf\x0e\x61\x64\x43\xd1\xab\xb6\xe3\x92\x84\x1b\x4d\x6b\x6f\xad\x5c\x2e\x48\x70\x0c\xd8\x10\x13\xf4\xb9\x8d\x05\xe7\xfb\x0f\x64\x13\x95\x82\x09\x89\xeb\xa3\x1b\x6f\x5a\x2c\x21\x7c\x62\xde\x55\xdf\x5a\xa4\x49\xd8\xfc\xf6\x6b\x81\x50\xd6\x1a\x42\xcf\xd9\xaf\x2d\x27\x5f\x44\xb0\x81\xc7\xe6\xe0\xf4\x81\xe3\xb9\x84\xe1\x81\xcf\x7c\xfa\x53\x93\x08\xfc\x7a\x4d\x05\x2a\x5e\x4e\x84\x58\xe1\x2d\x07\x34\xfb\xb5\x09\xef\xcf\x7e\x28\xf1\xf6\x5e\x4c\xb0\x52\xbf\x5f\x9a\x97\xe3\x49\xd8\xa5\xd3\xb2\x43\x31\xcd\x9d\x70\x7c\x47\x98\xff\xb5\xaa\x25\x84\x26\x83\x65\x5d\xc5\x05\x81\x84\x3e\xfe\xd8\x92\x2b\xb1\x0b\x08\x0f\x66\x68\x47\x96\x04\x2f\x26\xe4\x25\x41\x62\x6f\xc7\x2a\x42\xd9\xdf\xa9\xf7\xef\x1f\xff\xcc\xc2\x68\xfc\x3c\xb3\x9f\x33\x8c\x09\xeb\xee\x3e\x57\x7d\x12\xb7\x9e\x10\x75\x2a\x93\x63\x52\xda\x1f\x16\x5e\xf8\x46\x75\x78\x79\x6a\x11\x82\xdf\x2f\x4b\x7d\xb3\x79\x23\x61\xe7\xbc\xba\xf8\x27\x7e\x02\x84\x86\x7e\xcf\xc4\x08\xe9\x39\x04\x50\x81\x61\xf0\xdd\x26\xd6\x04\x0a\x82\xfe\x48\x39\x2e\x28\x67\x70\x44\x3f\xbc\x38\xdd\x47\x89\x70\x67\x6d\x6c\x58\x49\xf1\x0a\x42\xd0\x34\xf5\xb9\xd1\x45\x83\x2c\xa8\xb6\x6c\x1a\xb3\x65\xde\xb0\xa0\x10\xec\xa9\xe3\x19\x92\x4d\x88\x4b\xfb\x18\x2f\x74\x75\x03\x81\xfa\x53\xb9\x2f\x87\xae\x27\x9c\xe7\xfc\x36\xeb\xb3\xdf\x46\x82\xdc\x96\xb5\xe8\xfb\xb0\x8e\xb0\xff\x50\xea\x62\x9d\x75\x3a\x84\x81\x38\xf3\xb9\x1c\xfe\xbb\x09\x5e\xe2\x43\x3a\xbb\x5c\x72\x09\x4a\x0f\x2a\x7a\x33\xba\x2d\x08\x6b\xab\x5d\x02\x02\x2a\x94\x09\xa3\x8e\x76\xcf\x82\xdf\xbb\x12\x78\x8a\xb2\xef\x69\x75\x3b\x12\x2c\x42\x36\xaf\x6d\x1e\x33\x23\x18\xb5\x55\x2d\xdc\xad\xae\x45\xb8\x41\xeb\x1f\xfe\x08\xd0\x25\x58\xa7\x79\x98\x8c\x49\xb9\x31\xf8\x5b\x58\x95\xce\x25\x67\x4a\x68\x78\x55\x6d\xe3\x70\x72\x16\x81\xdb\xf2\x54\x51\xf6\x54\x61\x82\x92\xe4\xa2\xc0\xdf\x2e\xf1\x6c\xc5\xc1\x68\x7f\x63\x90\xdc\x0f\x16\x32\xeb\x76\xad\x08\x1c\x9e\x43\x78\xf8\xe4\xe2\x6e\xef\x6f\x44\x10\xfe\xe5\xea\x5e\x35\x7e\x35\x77\x9d\xf3\xb7\xae\x39\x70\x0a\xe1\x7e\x8a\xce\xb4\xd4\x87\x06\x84\xaf\x33\x7f\x3a\xe7\xfa\x5e\x26\xd4\x6e\xbd\x95\x25\x7b\xa4\x9e\x05\xbb\x18\x09\xc3\xd6\x2a\x5b\x9a\xc0\x3e\x9c\xe0\xd9\x1e\x6e\x45\xe8\x99\xc9\x5d\xe9\xc7\xb1\x9a\xe0\xea\x18\xdc\xfb\xa2\x4e\x8f\xf0\xe9\x57\x2a\xff\xd2\x2f\x3a\x84\xd4\x90\xa3\x11\xc2\x53\x7e\xb2\x70\x6f\x6a\x9b\xda\x36\x69\x13\xc2\xb2\x93\x42\x5d\xed\xb1\x60\xc1\xae\x7b\xc3\x70\x4f\x4c\x22\x83\x97\x7d\xf3\xfe\x25\x38\xec\x24\x2c\xb5\x62\xf9\xf3\xb4\x98\x30\xa8\xdf\xe4\x2c\x14\x72\xc6\x80\xd0\xa2\xd9\xc8\x8c\xdd\x3e\x4a\xd0\xf1\xe0\x19\x2a\x1d\x55\x23\x5c\x95\x2d\x5a\xeb\x99\xe7\x44\x70\x64\x55\xef\xd8\xe1\xaf\x4e\x30\x2d\x34\xb7\xac\x5c\xee\x4c\xb0\x14\xb5\x78\xbd\xc8\x52\x95\x60\xbc\xec\x12\x7f\xd2\xe6\x4d\x84\xab\x75\x5d\x6a\x17\x95\x8b\x09\xd1\xfe\x55\xc3\x9b\x17\xea\x10\xde\xab\xf2\xdb\xcc\x88\xd6\x24\x40\xf5\x49\xef\xde\x17\xf1\x84\xb3\xcf\x26\xcf\x28\xb5\x48\x66\x43\xb3\xef\x05\xc7\x1f\xbe\x66\x84\xa1\x6c\xee\xc2\x6d\xa1\x4e\x6c\xe5\x7f\x08\x48\x3a\xfa\xb5\x61\xc9\x29\xc2\xb7\xa0\x9d\xd5\xd3\x75\xd7\x10\x0e\x32\x4a\x7e\x61\x4b\xd6\x12\x74\x92\x7a\x4b\xbb\xde\xcd\x27\xb4\x17\x7d\x28\x75\x71\x6a\x67\x21\xf0\x98\x71\x9e\xf0\xef\xe9\x04\x15\x83\x49\x6b\xcd\xcf\xca\xb1\x41\xad\xdd\xf0\x66\xfc\x69\x6e\x02\x8f\x5b\xf1\x9e\x33\x6e\x4f\x09\xed\x2f\x02\x03\x06\x76\xac\x20\xec\xbb\x10\xf5\xb6\xa0\xe7\x26\xa1\x40\x47\xda\xe9\x77\x9a\x27\x21\x2d\x85\xaf\x7c\x81\x54\x15\x83\x05\x72\xf7\xb2\x6a\xc4\x36\x13\x12\xae\xe4\xc5\x8d\xc8\x6c\x21\x5c\xe0\x58\x9b\xe0\xb7\x31\x96\x60\x90\x5c\x7a\x34\x30\x5d\x96\xa0\x61\xf4\xa0\xcf\x66\xc1\x2c\x42\x60\xf9\x63\xd1\x8b\xb5\x73\x08\xf3\x96\xdf\x92\x19\xd0\xf0\x20\xf4\x8b\xfa\x4e\x36\xd8\xb8\x8c\x90\x1a\x5e\xa9\x2b\x18\x1b\x46\x58\xd2\x71\xbf\x38\xe8\xf9\x22\x02\xc7\x0b\x11\xce\xdf\x42\x02\x04\x9b\x73\x53\x6a\xd3\x6a\xc7\x7f\x28\x17\x0a\x24\x9c\x3e\x4f\x22\x70\x78\xef\x70\x4c\xa9\x1e\xff\x5a\x5d\x4d\xbc\xfe\x36\xed\x27\x0b\x3d\x4a\xe6\xc1\x0b\xce\x18\x12\xfa\x5e\x7d\xb9\x30\x69\xff\x56\xc2\xf2\x8c\x73\xa6\x7f\xb6\xac\x21\x0c\xbe\xdc\x3e\xf9\xe7\x7e\x69\x42\xa4\x4f\xa6\x67\x6d\xdb\x34\x42\x8e\x57\x4f\xec\x07\xb7\x45\x04\xe9\xc8\xa7\x37\xd7\x6f\x94\x26\xf0\x17\xcc\xdb\x32\x2d\x44\x9a\x10\x6f\xa1\x74\x26\x88\x2b\x9f\xb0\xad\xfe\xf0\xda\xa7\x9c\x0d\x0c\x22\xa4\xdf\x67\xfa\x8d\x17\x53\xeb\x59\x27\x92\x90\xc7\x42\xaf\xb2\x45\x08\xb3\x6b\x0d\x81\xfb\xe0\x86\x49\x4d\x4b\xa4\x09\x96\x26\xdd\x59\xb7\x8f\x8f\xb1\x70\xa7\xef\xb1\xf9\xed\x43\x52\x04\x2e\x8d\x2b\x61\x5b\x3f\x4e\x25\x70\x89\x9b\xc9\x70\x7a\xd8\x12\x72\x75\x8a\x66\xf1\xb7\x71\x13\x36\x86\x45\x2c\xee\xaa\xfc\xc4\x02\x8e\xf1\x3c\xdb\xf5\xe8\x27\x1b\x96\x7a\x1e\xcd\x97\xab\x7f\x5d\x02\x69\xae\x65\x1c\x91\x21\xd1\x84\x9d\x47\xaa\x3d\x87\x07\x7f\xb2\xf0\x50\x33\xb8\x52\xac\xfa\x13\x0b\xab\xca\xb3\x17\x2d\x88\x48\xa1\x09\x84\xee\x57\x56\x15\xf9\xd2\x45\x70\x2b\x3c\x57\x73\x44\xb2\x9a\xf0\xf0\xce\xfa\x20\xa1\xf1\xd1\xe3\x7d\xa3\xf3\x9c\x4c\x76\x13\x56\xdd\xf4\x5e\x90\x96\x72\x9a\x99\x28\xb6\xd1\xcf\x5f\x5a\x66\x9a\xb0\x15\x49\x9b\xfe\xae\xa7\xe3\x3b\x52\xba\xe7\xb7\x3f\x73\x38\x2e\x11\xa2\x17\x4b\xea\x8f\x19\x4e\x21\x64\x37\x47\x2f\x8b\xdb\xa4\x45\xa8\xf8\x27\x11\x34\xbd\x22\x8a\xa0\x9a\x2b\x3f\x63\xb7\x6d\x33\xe1\x9f\x36\x04\x74\x07\xaf\x13\x72\xc2\xc2\xf6\xba\xbc\xa9\x20\xe4\x6d\x3f\x23\x63\xd9\xa0\x42\xd8\xd6\x91\xf4\xa0\xb1\xff\x00\xe1\xd5\x85\x90\xb5\x63\xfb\xf2\x09\x43\xa1\x8f\x1b\x2d\xdd\xf3\x09\x55\x09\xc6\x45\x65\x2f\x4b\x09\x5e\xf7\x57\xf2\xaf\x0d\xb5\x22\x28\x70\xc4\xa4\xfe\x37\xb2\x72\x95\xea\xef\x35\x3f\x4c\xa8\x17\x10\xfc\x38\x89\xf7\x30\x5b\xf1\xc8\x52\x9e\x29\x7b\xdb\x9f\x6d\xc4\xb8\x06\xd7\x0e\x97\x04\x12\xd2\xb7\xbc\x75\xf9\x9c\x75\x92\x0d\x1f\xfe\x7f\x7c\xdc\x79\x50\x4f\xff\xff\xff\x7f\x6b\xb2\x44\x94\x24\x42\x94\x50\xda\x57\xf4\xbc\x8b\xf6\x7d\x57\x5a\xb4\x2f\x52\x2a\xd9\x49\x1b\x8a\x44\x45\xb6\x6c\x49\xbb\x54\x4a\x69\x3b\xad\x4a\xa5\x22\xd2\xa2\xa2\x45\xb6\xb2\xa5\x6e\x92\xfc\x26\xbf\x99\x8f\xbe\x33\xaf\x79\xff\x77\x99\xeb\xed\x61\x06\x33\xce\x79\x9c\x31\x53\xc6\xc7\x12\x2d\x9d\x73\x84\x75\x41\x52\x12\x8b\x39\x42\x26\x4e\x63\x1b\x6e\xa6\xf1\xa8\x12\x14\xe7\x94\x8f\x05\x8f\xbf\x9b\x96\x6b\x8a\x70\xf2\x9e\x54\x26\x5c\x4a\x7c\x6e\x5b\xbd\x41\x8a\xc0\x9e\xbc\xa2\xae\xb0\x63\x0e\xa1\xe5\xc5\x48\x6a\xf8\x59\x23\x82\x88\xc4\xcd\xf3\x5d\x5a\xaa\x84\xfc\xf6\xa7\x3e\x3e\x8b\xe5\x09\xdf\xdc\x8a\xf5\x3a\xdd\x89\x90\xef\x25\x1a\x94\x33\xec\x40\xa8\xde\xd3\xd0\x7a\x34\xad\x82\xc1\xdb\xd3\x7c\x5c\x92\xdf\xb7\x13\xdc\x87\xfe\xac\x74\x5b\xce\x22\xec\xd4\xb4\xfb\xe8\x20\x39\x9b\x70\x2d\x4b\x3d\x99\xe6\x6d\x26\x84\xbd\xbe\x3a\x5b\xa3\x32\x97\x70\xec\xc2\x48\xd0\x52\x75\x07\x06\xa7\x54\x5b\x42\xac\xf5\xca\xe8\x3f\xb0\xe7\x19\x57\xaa\xa3\x6d\x35\xa1\xdd\xfe\xd7\xe8\xa1\x8e\x06\x42\xa9\x49\x95\x59\x8c\x56\x37\xe1\x73\xd8\xc0\x8d\xbf\x67\x92\x87\xd8\x0b\xb6\x75\xec\x22\xe8\x58\xec\xfa\xd2\x53\xb9\x6b\x42\xd9\xc9\x95\xca\x6c\x8e\xbb\x48\x78\xed\xd2\x71\xe6\x6f\xb9\x76\xd5\xd1\xf2\x92\xf1\x55\x82\x23\x0d\xad\xa6\x99\x1e\x84\x34\xdf\x27\x0f\x6c\x15\x93\x09\x16\xa3\xe9\x53\xa5\x9b\x1b\x08\x77\xab\xe2\xa2\xf2\xdd\x5e\x13\x92\xbb\xe6\x25\xdf\xd6\x29\x27\x6c\x0c\x56\x0a\x5c\x3c\xd9\x96\x10\xb6\x6f\xd9\xa7\x45\x7d\xde\x84\xcb\xbf\xe5\xf7\x1a\xaf\x0e\x9d\x30\x55\x34\xb2\x7b\x54\xb9\xd9\x11\xca\xca\x14\x9f\xc9\x27\xda\x10\x4a\xaa\x47\x4f\xfa\x5d\xb5\x26\xb4\xec\x5c\x98\xf0\x48\x63\x31\xa1\x25\x6e\xe3\x95\x5e\xad\x30\xc2\xca\xe7\xab\xf7\xdf\x93\xeb\x61\x21\x32\x7f\xbd\xb6\x85\xa8\x28\xa1\xe5\x98\x37\xf7\xcc\x4d\xa1\x84\x88\xb0\x25\xb5\xd3\x12\x96\x12\x54\xec\xef\xd6\xf6\xba\x44\x4e\x80\x6f\x09\x9b\x77\xcd\x8d\x68\x42\xff\x53\xbe\x44\xad\x5b\x81\x84\xbd\x9d\x83\xfe\xb5\xe6\x86\x04\x35\xf6\xc4\xd6\x8b\x83\x6a\x84\x37\x6a\xa7\xc5\x7c\x1a\x32\x58\x18\xee\x7c\x27\x3b\x67\xcb\x26\xfa\x5f\x10\xb1\xbc\xab\x38\xa2\xe8\x42\x68\xda\x66\xf7\xda\x59\x98\x9b\x90\x34\xf3\xad\x6d\x7f\xf5\x6a\xc2\xbc\xa5\xab\x4e\xa6\xb3\x1d\x27\x9c\x71\x5b\xad\x6a\x53\xa3\x45\xa8\x5b\x2f\xb8\xe9\xb8\xc6\x03\xc2\x55\x1d\xdf\xed\x97\x1f\x28\x11\xc4\x9a\x9c\xbe\xcd\xf8\xb2\x95\x90\xb2\xd4\x87\xab\xe5\x4e\x39\x0b\x6f\xa0\x5a\x22\x52\xb1\x80\xfe\x81\xbb\x47\x76\xeb\xe9\xf0\x0f\x2c\xcc\x65\x0b\xd9\xe3\x6b\xcb\xce\x20\xbd\x67\x8b\x51\xab\xc4\x42\xc2\x2f\xf9\x9c\x01\x95\x39\x61\x0c\xa0\xf4\xf9\x1d\x4f\xef\x03\x82\xf6\xf7\xdc\x1d\x1b\xda\x1e\xd0\xbf\xc2\x76\xcb\x3e\xf3\xd2\xcf\x07\x04\x9f\x9f\xbf\x47\x76\xb5\x27\x11\x62\x46\x5e\xd4\x5c\x79\xbd\x89\x50\x70\xad\x2e\xf1\x88\xb9\x2d\x61\xdd\x7c\xad\xc9\x47\x6b\xcd\x08\x09\x15\x02\x9a\x55\xaf\x35\x09\xeb\x87\x97\x7a\x75\xa6\xdb\x13\x1a\x9b\x63\x95\x7e\x09\xda\x10\xce\x6e\x9f\x12\x5d\x14\x30\x83\x60\x37\x9a\x38\xc5\xe5\x98\x20\xc1\x86\x4b\xc5\xc1\xf6\x94\x04\x81\xeb\x6a\xf3\xaa\x75\xd9\x12\x84\xef\x86\x49\xd3\x4a\x1f\x4b\x10\xde\x1f\xe8\x0e\x2b\xae\xbf\x4d\x50\xdb\xfe\x2d\xdc\x4f\x31\x96\x10\x3d\xe5\xec\x12\xa6\x3e\x88\xe0\xaf\xeb\x2e\xfe\xf0\xea\x29\x42\xd2\x33\x7f\x1e\xf6\x04\x45\x42\xce\x8c\x9f\xbe\x9a\x53\x97\x12\x3e\x0d\x6b\xaa\x95\x8f\x3f\x69\xc5\x7c\x65\x65\x7c\x5c\xa6\x11\x42\x6a\x79\xda\x57\x65\x72\x12\x36\x34\xde\xd8\x7f\x65\xe5\x36\x42\x0f\x57\x01\x8b\x2c\xac\x08\x51\xe9\x33\xc4\x3a\x12\xed\x09\x63\x25\x33\xc6\x8c\x2c\xf4\x08\xcb\xcb\xbc\x0a\x05\xeb\xe5\x09\x71\xdc\x39\x93\xa2\x92\xfb\x59\x70\xff\x52\x96\x76\x30\xbd\x84\x81\xe6\xd1\xd1\xb5\xd7\xb2\x0a\x09\xf2\x77\x3c\x97\x1c\x30\xdf\x36\x01\xb2\x47\x1f\xe5\x73\x17\xec\x25\x3c\xd3\xf6\xed\x9b\x92\xe0\x49\xa8\xe2\xf9\xf4\xc4\x38\xa8\x9e\xf0\xb4\xcc\xdd\x71\xc3\xca\x38\x06\xb6\xf5\x59\xd6\x12\x5e\xad\x04\x1d\xdf\xdc\x00\x79\x9d\x12\x42\x79\xae\x79\xe0\xf2\xbf\x3f\x85\xe7\xad\x5d\xda\xb4\x5d\xae\x04\xb1\x57\xa1\x0f\x82\x32\x4b\x19\x6c\x5f\x5b\xbe\xbb\xe4\xf3\x47\xc2\x94\xaa\x3f\x6d\xd3\x2c\xba\x09\xcd\xc3\xcf\x5f\xbb\xf8\x7d\x25\xfc\x3e\x24\xb3\xf3\xc6\x9d\x7e\x42\xe4\x8b\x5f\x37\xd5\xfc\xdf\x11\x2c\xaf\x45\x6f\x38\x60\x9d\x44\x60\x13\x79\xe5\xd1\xde\x73\x6f\xfc\x6f\x43\xa5\xbd\xc9\x34\x9e\xc0\x53\xaf\x5d\x7c\x85\xff\x3c\xa1\xed\x43\x86\x87\xac\x79\x0c\x61\x72\x46\x48\x9d\x3c\x77\x00\x61\xd9\xed\xf3\x96\x05\xab\x0c\x09\x0b\x83\xaf\xeb\x6f\x33\x12\x24\x70\x09\xce\xef\xa8\x9b\x75\x61\x02\x5e\xcd\x08\xee\xe0\xa5\x53\x84\x6c\x67\xad\xf6\xeb\xd6\xfe\x84\x8a\x23\x16\x81\xaa\x6d\xb7\x09\x6c\x5b\xb3\xb4\x6c\x64\x02\x08\xed\x31\xd5\xbd\xcb\xd6\xa7\x10\x16\x3e\xe4\x5c\xeb\xe8\x66\x49\xe8\xaa\xe5\xe1\x9a\x54\xa8\x4b\x50\x3c\x5d\xf6\xfb\x8a\x85\x08\x41\x29\x22\x47\x5c\x22\xda\x9f\x70\x57\x7d\x77\x06\xa7\x25\x37\x61\x85\xb1\xcc\xd6\x2f\xb3\x7d\x08\xf7\x95\x3f\xcf\xcf\x48\xfb\xce\x42\x6e\x62\xa9\xfe\x18\xaf\x0b\x83\xf5\xfe\x79\xf6\x95\xde\x6a\x04\x39\x96\x99\x8f\x04\xdd\x22\xa4\x1d\x49\xbd\x6e\x67\xd9\xc7\xc2\x6e\x43\xbe\xc8\x1f\xba\x4e\x04\x5f\x8d\xb9\x2e\x3a\x7a\x5b\x27\xa0\x76\xef\xa5\xa5\xc9\xf3\x76\x10\x24\xfc\x7d\xfb\x52\xe6\x84\x30\x10\xd2\x9a\x26\xe5\xf7\x5e\x85\xfe\x21\x70\xa6\xf9\xba\x01\x8e\x72\x06\x77\xc3\x7a\xe3\xd8\x12\x56\x11\x98\xf2\xeb\xdb\x14\x0e\x14\x32\x78\x60\xde\xb9\x22\xeb\xe9\x33\x06\x05\x0b\xa7\x5e\x59\x20\xba\x89\xd0\xf4\x33\x3a\x44\xa6\x3d\x82\x40\x52\xea\xbb\x96\x2c\x2b\x60\xd0\xc0\x3d\xb8\xbd\xa3\x66\x1e\x21\xb6\x72\x88\xa7\xfa\xc6\x3a\x82\x4a\xd1\x74\xcd\x0e\x85\xf7\x2c\x3c\x64\x71\x64\xaa\x2d\x72\x25\x70\x05\x07\x8a\x89\x58\x5c\x24\x30\xbb\xac\x3e\xdd\xbe\x73\x8d\x81\xaa\x20\x3f\x0e\x35\x97\x12\x62\x07\xf7\x97\x9c\xd9\xc7\x8c\x7f\xf9\x8a\x7e\xbf\x65\xf0\x98\x50\x75\xcc\xe9\x87\xef\x60\x16\x21\xae\x21\x26\xf0\xf0\xf8\x19\xce\x47\xdb\x0a\xcb\xd6\xa4\xd2\xcf\x19\xcd\x17\x19\xa7\x64\x82\xea\x1b\x2f\x59\xa6\xf7\x36\x41\x4e\x3b\xe4\xab\x4e\x7c\x32\xe1\x6b\x7f\xf3\x14\xbf\xf4\xf1\x97\x9e\x58\x61\xd1\xfc\xe4\x13\x84\x35\x15\x7f\xaa\x5e\xb3\xae\x13\xf8\x14\x5c\x5f\x64\x1e\xc9\x27\xf4\x1f\x7d\xea\x3b\x7d\x9a\x3d\x21\xe6\x57\x93\xb4\xef\x83\x0a\x16\xce\xb7\xe9\x0c\x68\xf2\x76\xb0\xb0\x71\xd1\x17\xde\x28\x69\x7b\x42\xee\x22\xb1\xa8\x58\xab\x9d\x84\xf9\x9f\x04\x8d\xad\x97\x18\x13\xde\x5d\xe8\x49\xbf\x36\xb2\x9c\xb0\x20\x6d\x9a\xe6\x94\x58\x53\x82\xb3\xca\x9a\xb1\x72\x6d\x43\x42\x36\xd7\xc6\xa1\xa3\x5d\x5f\x8b\x20\x60\xbe\xff\xfe\xf4\x1b\xb6\x84\xb6\x43\xb2\xfc\x9b\xfb\x6d\x08\x9f\x02\x4d\x2a\x66\x2b\xe7\x12\x5e\x1a\x3c\x6c\x29\x0d\xaf\x20\xb4\x7e\x16\xd1\xc9\x30\x7b\x49\xa8\x1c\x30\x2e\x18\x99\xf5\x8a\xb0\xd8\x60\xaf\x64\x18\x3d\x23\x64\x73\xef\x13\x61\x34\xce\x12\x5a\xdd\x4d\xad\xdf\x64\x44\x10\xe6\x7a\x99\x9a\xce\x10\x3c\x4f\xf0\xbb\xb2\x6a\xc7\x6b\xf9\x42\x06\x43\x25\xde\x57\x9d\x39\x1f\x31\x50\x5f\xa9\xb2\x74\xd0\xe3\x2b\xc1\xe7\xd2\xa9\xb6\xc4\x17\xf5\x04\x2f\xa5\xd9\x3f\x7d\x2b\x0e\x10\xe6\x44\xc7\x8d\x42\x6b\x0b\xe1\xc4\x29\x91\x67\x0f\xe3\x8f\x13\x5a\x0c\x9e\xc4\x66\x4f\xee\x66\xe1\xcf\x37\xad\x17\x52\x57\xcf\x33\x98\xf7\x55\xdb\x7b\x81\x72\x1c\xa1\x3b\x35\x5e\xf2\xbb\xce\x2c\xc2\x60\x47\xda\xfb\xbe\xe5\x79\x84\xd4\x9c\xa2\x85\xda\xfa\x31\x0c\x5e\x7b\x95\x78\x4a\xad\xf9\x49\x08\x8c\xf5\xb5\x77\x31\x98\xb6\x19\x1a\x76\x2b\xde\x4a\xaf\xfe\x49\x38\x6b\x6a\xe0\x9e\x17\xfe\x8c\x70\x3c\x67\xd5\x7a\xa5\xc3\x0c\x61\x3a\x5b\xcb\xe9\x6d\x22\xea\x84\x43\x82\x6f\x1d\x36\x96\xbe\x25\x88\xf7\xbb\x5d\x7e\x3c\xff\x35\x41\x67\x0f\x47\xa1\x96\x5a\x24\x83\xc1\x9f\x89\xbf\xaa\x7e\x48\x10\x8c\x14\x5e\xdc\x2a\x4a\x49\x21\xcc\x55\x6f\x8f\x91\x8d\xb0\x26\x0c\x7e\xf5\xe3\xb8\xed\x76\x8a\x81\xc6\xe8\xfb\x8c\xc9\x6b\xbe\x10\xea\x5a\xeb\x85\x2e\xeb\xde\x27\xe4\xe8\x9f\x39\xfe\x41\xf8\x0b\x61\x77\x40\x6c\xe9\x3e\x83\x7b\x04\x91\x98\xba\x52\x7d\xc5\x67\x04\x8b\x96\x19\xb2\xc2\x7d\x21\x45\xf8\xf4\xe3\xfc\x76\xb9\x8b\x67\xe9\x1f\x5c\xa2\x2f\xaa\xda\x57\x09\x12\x84\x38\x77\x7f\x61\xf7\x49\x25\x68\x1d\xbf\xab\x5e\xd2\x24\x4f\x50\x2a\xe4\xd7\x1e\x36\x88\x23\xf0\xa6\x49\xf0\xdd\x4a\xf0\x26\xb0\xb5\x4e\x79\x99\x55\x97\xc1\xa0\xfb\xf1\x60\xfb\x0d\xb9\x10\x42\xa9\xad\x49\xcc\x8b\xf4\x66\x42\x00\x47\x46\xc7\x16\xd9\x3e\x42\xf4\xac\x0e\x77\x97\xe5\xcf\x08\xfb\xe3\x14\xe8\x56\x73\x0b\x81\xcf\x86\xa3\xc5\x39\x34\x87\x10\x92\x24\x36\xa3\x44\xe6\x23\xe1\x90\xd4\xac\x0b\xef\xa5\x3e\x10\x34\xb7\xb8\xc4\xc8\x46\x94\x11\xd6\x69\xeb\x2e\x1b\xb4\xfb\x40\x58\xe9\xb4\xad\xa7\xa7\xe6\x13\x41\xc6\xc1\xb0\x46\x63\xec\x32\xe1\xd5\x7b\x6e\xf7\x03\xcb\xa3\x08\xc3\x82\x2f\xdf\x77\x29\xbf\x22\x74\xac\x2b\x3d\xd2\x14\x16\xce\x60\xb6\x9d\x8f\xcc\x7c\xa3\x28\x82\x09\xff\xd9\x57\xd5\x66\x69\x0c\x36\xba\x2d\x99\x77\xf2\x61\x1a\x83\x5d\x3e\x07\xcb\x47\x25\xee\x11\x3e\xda\x9f\x88\x70\xd7\x3d\x40\xe0\x9b\x1f\x7d\xd9\x50\xf7\x12\x21\x7b\xff\x99\xe6\xde\xfc\x3b\x84\x61\x3d\xc1\xe3\x76\x8b\x8e\x13\x1a\x9f\x1e\x16\xb3\x61\x4f\x61\x30\x4d\x57\x2d\xde\x47\x73\x17\x21\x53\xea\xee\x17\xcf\xd3\x22\x84\x77\xa9\xdb\xe7\x1f\x5d\xf7\x83\x85\x9d\x89\x9e\xd2\x2a\x33\x15\x09\x9c\xbe\x6a\x55\x0f\xc5\x5f\x10\xde\x36\xf3\x1a\x72\x1a\x3e\x21\x9c\x99\xff\xf8\xe7\xb7\xb5\xd5\x04\xa5\xb1\x7d\x9f\x6f\x36\x54\x11\x66\x97\xb4\xf3\xed\xb7\x60\x08\xc7\x8a\xd5\x3e\x37\x0a\xdf\x22\x6c\xb9\xd6\xbb\xa8\xad\x70\x09\xa1\xd3\x4f\x63\xc9\x42\xc5\x55\x84\xb9\xfb\x6b\x0e\xe8\x99\x09\x10\x4a\x77\x66\x25\x0e\xfa\x7a\x13\x4e\xf3\x9c\x94\xd6\x10\x18\x65\x41\xc0\xdf\xf1\xde\x45\x9b\xbd\x04\xd5\x57\x86\xaf\xe2\xdf\xa7\x33\xe0\x5a\x7f\xb8\x70\xcf\x3e\x5f\xc2\xf6\xa0\x43\xaf\x27\x27\x2f\x23\x8c\x59\x3d\x3c\xae\x7a\x99\x97\x90\xdb\xaf\xb0\xa0\xf8\x8b\x2a\xa1\xb8\x70\xee\x85\xdd\xb7\x2c\x09\xf1\xa9\x17\x1a\x5d\x1c\xaf\x11\xb4\x8f\x1a\x8c\x04\x6f\x0d\x62\x60\xda\x28\x36\xbd\xf7\x58\x00\x41\x76\x9b\xff\xfb\xd7\xbe\x11\x0c\xf4\xd2\x5b\x3f\x98\x0e\x9d\x20\xd8\xaf\x76\x59\xd8\x7d\x2c\x8c\x70\xff\x95\x98\x1f\x3f\x1c\x08\xf5\x19\x6d\x93\xaa\xb7\x5a\x11\x36\x7e\x76\x72\x96\xeb\x93\x25\x9c\xfd\x2e\xfc\x7c\x2d\x6f\x29\x41\x54\xe4\xfc\xe0\xd5\xd9\x3d\x04\x81\x52\xb7\x35\xfa\x57\xce\x33\xe0\xba\x31\xeb\xe4\xc0\x8a\x3b\x84\x6b\x92\x6b\xc2\xbb\xf2\x73\x09\x69\x61\xfc\x5f\xc3\xaf\x1e\x25\x98\xaf\x5e\x6e\xba\x28\x2d\x82\x50\x35\xc8\xd9\x1f\x76\xec\x36\x61\x8b\xb2\xed\xd2\xd3\x8b\xfd\x08\xab\xa7\xbe\xb4\x28\xb0\x0e\x61\xb0\x5b\xb2\xa4\x27\xf6\x7d\x20\x61\xee\x89\xaf\x3d\xa3\x3b\x3d\x08\xbc\x0e\x4f\x3b\xf8\xd2\x6d\x09\xb3\xf5\x9a\xd2\x4b\x14\xdb\x19\xe8\xb2\xe9\x5d\x89\xdf\xd9\x46\x50\xdf\xf1\x21\x9a\xed\x50\x13\xc1\x77\xb6\x82\x63\x50\x51\x39\xa1\xfc\x64\x00\x33\xa5\xe6\x39\xc1\x5d\x2a\x32\x24\x7a\xce\x73\x82\xc5\x69\x9e\xc1\x76\xb1\x7a\x42\xc5\xa0\xbf\xa9\xcc\xdd\x2c\xc2\x91\x7a\x4b\xdb\x53\x53\x9f\x11\x1a\xe8\xca\xae\x39\x1e\xad\x84\xe5\xed\x09\x8f\x94\xda\x9f\x11\x8a\xf6\x59\x69\x87\x8e\x4f\x8b\x83\x22\x6d\x53\xc3\xf6\x11\x3a\x96\xc9\xc9\x5f\x1b\xbf\x0c\x7e\xfb\x25\x7f\xac\xbb\xcc\x81\xd0\x55\x52\x69\xec\x77\xcd\x83\x10\x1b\x63\x5a\xd2\xb2\x7f\x36\x41\xe0\xc1\xf6\x9a\x5a\xed\x02\xc2\xdc\xd3\x2f\x17\xdc\x94\x98\x4d\x90\x89\xd2\x52\x14\xf3\x94\x20\xb4\x8d\xe8\xde\xef\xe4\x36\x24\x14\x5f\x8d\xe7\xcb\x2a\x16\x22\x6c\xe4\x0a\x29\x13\xf8\xcd\x41\xe8\xb5\x31\xf8\xdc\x5f\x22\x45\xb0\x89\x51\x7e\xa6\xab\xa4\x40\xc8\x2a\xde\x93\xf5\x61\xc3\x7b\x16\xe2\x9e\x9b\xfb\x4f\xdf\x63\x43\xb8\xea\xce\xac\x1b\x5b\xf8\x90\x70\x84\xd9\x9a\xd6\x55\xbf\x94\x30\x7a\xcb\x8c\xed\x57\x7d\x0f\xeb\x1f\x4c\x0f\x9f\x93\x9d\xe4\x36\xfe\x31\x5a\xeb\x3e\x35\x6c\x8d\x17\xe1\x84\x94\x30\x7f\xdc\x3c\x67\x82\xa8\xbd\xc3\x8d\x2b\x63\x56\x84\xdc\x13\x7e\xc2\x71\xaa\xeb\x09\xa7\x9d\xbe\x72\xef\xec\x08\x20\x58\xf0\x17\x2b\xec\xb1\x13\x22\xfc\x5c\xb9\x9a\xd5\xf2\xbc\x87\x05\xe6\x69\xd2\xbb\xe1\x72\x39\xc2\xee\xd3\xde\x79\xb9\xef\xc4\x08\xfb\xdf\x15\x71\xa4\xac\xbb\x50\x84\xab\xda\x8b\x43\xb7\xb2\x0f\xb2\x60\xca\x15\x79\x84\x3b\x61\x13\xfd\x43\xe2\x9e\x12\xe2\x7e\x06\xd6\x3f\xd8\x7f\xcc\x95\x3e\xd6\x93\x44\xff\xb0\x72\x48\x6d\x75\xdc\xa9\x37\x84\x91\x39\xef\xea\xf6\x8f\x97\xff\xc3\x03\x2d\xef\x8b\x97\xcb\x6d\xff\x0b\xdf\xb2\xb6\xed\x34\xf5\x38\x38\xa1\x74\x78\xad\xac\x16\xb4\x62\x27\xb0\x8c\xef\x1e\x8a\x7d\xeb\x4a\x98\x3d\x97\xa6\x33\x35\x07\x08\xb5\xfa\xc6\xdb\x2f\xfa\x99\x11\x4c\x1d\xfa\xa4\x35\x42\x14\x09\xc5\x01\x3b\x06\xcb\xa7\x58\x13\x64\x14\xce\x78\x1e\xf9\xb1\x9d\x50\xf1\xf8\x8f\xe2\x97\x9e\xcd\x04\x56\x90\x93\x74\xeb\xae\x54\x06\xea\x8e\x29\x75\x8c\xf3\x13\x82\x6c\x88\xdd\x8e\xf6\xba\x4f\x0c\x12\x17\xff\xea\x92\x7c\x55\xc5\xe0\xfc\x97\xfb\x99\x83\xd4\x40\xc8\x1c\x76\x29\x95\x4b\x7e\x49\xd8\x57\xbd\xc2\x38\x29\xc3\x9f\xc1\xc2\xe9\xfb\x3a\x3d\xdb\xa7\x12\x5a\x9f\xec\xe9\xb0\x59\x36\xca\x42\xfc\xb4\x46\xf5\xed\xea\x92\x04\x3d\xc9\x47\x5b\x6d\x07\xa7\x12\x36\xc8\x35\x2d\xd5\x5d\xb0\x9c\xa0\x20\xe9\x16\xbe\x7f\x0b\x3f\xe1\x75\x43\xde\xd8\xdd\xd2\x9d\x0c\x54\xdf\xbc\xfe\x53\xf7\xcb\x94\x50\x76\x4a\x22\x7c\x9b\xd8\x34\x82\xdc\xa4\x6e\xf7\xce\xc2\x36\x16\xe2\xdd\x75\x74\xce\x9f\x97\x23\x54\xca\x0b\x6e\x95\x2a\x5e\x4b\x40\xcc\x70\x93\x80\xe8\xac\x09\x88\x70\xf0\xbf\x59\xa4\x31\x9d\x30\xfa\x6a\x47\xfd\x3a\xb3\x49\x84\xc6\x91\x02\xf5\x0b\xf9\x8e\x84\x72\xb3\x37\x33\x16\xc7\x89\x4d\xc0\x07\xf6\xb3\x75\xe9\x5a\x01\x13\x30\x94\x28\x75\xa4\x49\xa8\xbd\x08\xef\x74\x14\x57\x18\x2c\xd3\x24\x14\x0b\x8c\xca\x38\x72\x18\x10\x6a\xba\xa2\xa7\x0f\xbc\x52\x26\x3c\x8d\x4f\x6d\xb7\xda\xb5\x86\xe0\x6e\x1e\x5b\x63\xb0\x6e\x3f\x21\xa4\x26\xa8\x2a\xd9\x5c\x9f\x90\x77\x40\x95\x2b\x33\x49\x82\x30\x5f\x39\x27\x4d\xdd\x56\x9d\x10\xfd\xf0\x44\x6f\x4d\xb0\x12\x41\x66\x92\x75\x88\x24\x87\x11\x83\x4d\x2d\x6e\xc3\x33\x38\xf2\x18\x94\xdf\xac\x8a\x75\x5c\x1d\x4e\x38\xbf\x57\xb7\xad\x78\x45\x20\xe1\x82\x22\xff\x82\xb6\x88\x61\x16\xd6\xda\x4c\x33\x7c\xfb\xdc\x9f\xa0\x99\x39\xb5\xfc\x76\xde\xfa\x09\x68\xff\xa1\x3d\x9c\x9a\x99\x43\x50\x1c\x14\x65\x7f\xcb\x57\x46\xe0\x72\x11\x78\xfc\xb7\xac\x5a\xb1\x76\xf9\xfb\xbb\xbe\x04\x5e\x91\xeb\x55\xbb\xee\x4c\xc4\x7a\x59\xcf\x7b\x1d\xa5\x66\x04\x8e\xdf\xcf\x46\x38\xc4\x96\xfd\xc3\xcf\x63\xbf\x3b\x1a\x5f\x4b\x11\x4e\x26\xfe\x39\x7a\x4d\xf2\x08\xe1\x4e\xeb\x06\x2e\xbe\x94\x33\x84\xd7\xb9\x6b\x7d\xa6\xf3\xde\x26\x74\x89\xb8\x3c\x89\xd1\x74\x21\x3c\x62\xce\x72\xfe\xf2\x4a\x26\x74\xcf\x8b\x4b\x91\x60\xbb\x4b\xd8\xd0\x76\xa3\xa7\xb6\x41\x84\xb0\x33\x44\x71\x57\x5e\xa5\x21\x21\x6f\x6c\xe3\xe8\x1b\x09\xe3\x09\x65\xf4\x85\xe6\x29\xc3\x31\x61\x42\xe0\x67\xb5\xa8\x03\x07\xe7\x10\xb8\x77\x5a\x05\x29\x09\xc9\x11\x2c\x2d\x4e\x1e\xb3\x4b\xce\x20\x9c\x77\x9f\x19\xee\xe4\x51\xc1\x40\xec\x83\xb0\x93\x40\xec\xbd\x09\xd3\xa1\x8e\x91\x98\x0d\x81\x23\x2c\xb0\xb5\xb7\x3c\xcf\xdf\x37\xfe\x1b\xab\xbd\xd9\x59\xce\xbb\x95\x60\x52\xd3\x3d\xf6\x65\xd6\x37\x16\x3c\x1f\xdb\x9e\xdd\xfd\xd8\x89\x90\x2e\xf4\xfb\x7e\x47\xad\x22\xe1\xa5\xc4\xe6\x92\xb3\x66\xdb\x08\x4f\xcc\x57\xde\xbe\xff\x58\x88\x20\xb6\xe4\xcd\xab\x1b\x22\x44\x78\xe0\xe3\xd0\x3f\x69\x21\x27\xa1\x2f\xe7\xc4\xe3\x95\x6e\xd9\x84\x18\x1f\x17\xfb\xa6\x95\x55\x84\xbd\x85\x12\xde\x61\xcc\x30\x83\x43\x41\xfb\x6c\x25\xdf\x34\x33\x30\x93\x62\xcd\x7a\x3e\x3e\xed\x4e\x96\xb5\x5c\x9e\xe9\x4c\x50\xbe\x92\x7f\x4a\x39\xc3\x99\x90\xb2\xb7\x35\x5b\x34\x7b\x0f\x41\xe9\xb2\xcc\xe2\x00\x6f\xef\x09\x67\x0c\x22\x0b\x34\x3c\x73\xb6\x10\x94\x16\xad\x8d\xf7\x32\xca\x25\xec\xf1\xcf\x7f\x9c\xed\x50\x45\xf8\x5e\x7a\x52\xe9\x2b\x6b\x09\xc1\x5f\xb9\x38\xbc\x78\xd1\x42\xc2\xd9\x07\x43\xda\xbf\x8f\x6f\x24\x7c\xcc\x6d\x5b\x6d\x54\x97\x48\x58\x2b\x7a\x5c\x26\x6e\x9f\x37\xa1\x76\xb5\xc5\xef\x86\xed\xc2\x04\x0f\xb1\x15\xfe\xaa\x1e\xec\x04\xee\x2b\xeb\xcf\x79\xaf\xda\x42\xf8\xcd\xa1\xf4\xcb\xe7\xc5\x27\x16\x22\x03\xb9\x5a\x03\x74\xd6\xd0\x3f\xa8\x47\x9d\x5a\x6b\x6f\xf9\x87\x05\x49\xee\x80\x69\x43\xc5\xea\x04\x87\x19\xbd\xec\x8b\xba\xba\x58\xc8\x73\xc9\xe0\xbe\xaf\xb4\x8e\x70\xd9\x6c\x78\xb6\xe8\x9e\x1f\x2c\x74\x1b\xb0\xe4\x0a\xba\x7d\x19\xfc\x12\x4e\xf1\xf9\xa6\x97\x45\x90\xfb\x3e\xc7\x72\xeb\xb5\xe3\x84\xf0\x7d\x57\xe5\xe4\xfb\xf4\x09\x52\x35\x3e\xd8\xa3\xb2\x8e\x70\xe5\x5d\xcd\x43\xb6\x79\xb3\x09\x36\x85\x67\x94\x8d\xed\xd2\x09\x1c\x9a\x93\xa6\x58\xcf\xd1\x23\xb4\x56\x98\x47\x98\xde\x7a\x44\xf8\xf6\xb2\x8c\x8c\x6d\xea\x09\xb9\x4f\x2a\x26\x19\x8c\xa3\xe7\xe2\xa5\x2a\xc5\x87\xb9\x04\x3d\x7b\x19\x63\x43\x11\x45\x82\x7f\x69\xb0\x13\xdb\xdb\x58\x42\x3e\x5f\xc7\xb4\xec\x67\xab\x09\x3e\x4f\x94\x76\x3a\x34\xfd\x64\xa1\x40\xee\xc5\x70\x71\xbe\x25\xa1\xfd\x61\xf0\x9b\x6f\xed\xda\x84\xa6\x3b\xd7\xb2\x96\x05\x0e\xb3\xc0\xb3\xd8\x20\xda\xc1\x70\x17\xe1\xb6\x60\x59\x27\xef\xcc\x2c\x06\x2d\xee\xa2\xf9\xad\x0b\x6b\x18\xcc\x49\xf9\x6a\x75\x42\x25\x9d\x81\xed\xca\xbb\x3e\x7f\x2a\x5d\x09\x6b\xb2\xbb\x96\x5f\x5c\xd2\x4e\x58\x21\xf5\x47\xa1\xc5\xa5\x86\xf0\x47\x86\x04\xbe\x7b\x55\x13\x7e\xed\xe0\xe6\xe5\x0b\xca\x20\xc8\x78\xbb\xd4\x89\xe5\x34\x11\x4a\xcd\x3d\x3e\xcb\x3b\x3d\x21\x94\xa9\x5e\xb1\xcd\x0e\x6c\x21\x5c\xe6\x2f\x93\xfb\x5b\xac\xe7\xfc\x28\x69\x3f\x59\x4a\xe0\x79\x74\x46\x79\xcb\xc5\x1b\x04\xb1\x6b\x5f\x5b\x1f\xea\x47\x11\xa6\xd9\xb2\x3f\xb9\xac\x1f\x4d\x10\x7e\x60\x74\xb9\xd6\xef\x06\x21\x2a\xb5\xac\x48\xf6\x42\x28\xc1\x31\x69\x9f\xea\xf5\x8b\x0f\x08\x1c\x4e\x1f\xb3\xd3\x64\xcb\x18\xec\xf9\xb4\xf5\xfa\xe5\x05\x5d\x04\xce\x5b\x02\xef\x18\xa3\x07\x84\xcc\x1b\x2d\x3e\x96\x3d\xaf\x09\x8f\x8a\x2e\xef\x7f\xb7\xbe\x98\x60\x27\x9c\xb1\x74\xaf\xdb\x46\xc2\xc1\xb2\xd9\xfa\x42\xc1\x82\x0c\x6e\x45\x8a\x2d\x10\x5f\x24\x47\xc8\x4d\x5c\x66\xb8\xa4\x40\x84\x60\x57\xe3\x3e\xdc\xbb\xeb\x02\x83\xc5\x49\x01\x05\xb5\xb2\xf3\x09\x23\x6f\xd9\x64\x4f\xb2\xef\x25\x78\x4b\xb6\x58\x64\x2e\x5f\x41\x08\x0c\xb5\xde\x63\xe2\xe0\x44\x88\x70\x16\xb2\x98\x14\x3b\x97\xc0\x2e\xb0\x68\x80\x87\xe4\x09\xc7\x22\x2f\x1d\xf8\xc5\xdb\xc4\x80\x33\xed\x7a\xbd\xdb\x1c\x2d\x82\xa1\x62\xf8\x70\xfc\x2c\x7f\x06\xf1\x32\xf2\x76\x1d\x99\xfa\x84\xce\xe0\x9a\x23\x49\x29\x5a\x84\x87\x96\x26\xea\xf3\xee\x48\x11\xf4\xd4\x1f\x28\xbf\x78\x63\x48\xf0\x4c\x33\x54\xe8\xea\x34\x21\x3c\xc9\xb0\xdd\x72\xfc\x8a\x1a\x41\x7a\x90\x8d\x35\x2b\xdf\x93\x90\x34\x50\x98\xed\xe0\x66\x4d\x58\xff\x71\xc9\x8b\x30\x71\x09\x82\x61\xd2\x9c\xe7\xfb\x6a\xef\x30\x98\xbf\xfb\xcc\xaa\xeb\xb4\x8c\xa0\x5a\x30\xab\x79\x5a\xd8\x73\x82\xac\xc9\x89\x80\x6a\xad\x4a\x06\x3c\x53\xe5\x52\xec\xaf\xb6\x11\xbe\x6f\xdf\x3f\x27\xf4\xc3\x7d\xc2\xa6\xac\xfd\x9d\xaa\xbc\x3a\x04\xdd\x03\xbb\x42\xbf\x68\x84\x13\xce\x6e\x09\x6c\x6c\xb9\xba\x8e\xb0\xa1\x70\xe4\x4d\xe6\xc9\x55\x84\xc1\xd4\xa5\xdc\xcf\xa7\x2d\x26\xf8\x74\xb0\xfb\x5e\x98\xb3\x8c\xf0\x73\x26\x6b\x6d\xf9\xb5\x69\x84\xe8\x1f\x5e\x4f\xd7\x3f\x32\x27\x44\xe9\x0f\x04\x59\xf5\x9b\x10\x46\x86\xe5\xcd\xde\x7f\x0c\x22\xb4\x39\x38\x25\x1b\x2e\x38\x42\xc8\xf6\x61\x06\xf8\x73\x1d\x09\x53\xcb\x56\xf6\x9e\xb4\x94\x20\xb0\x7d\x67\x3b\x18\xfe\x7e\x39\xa1\x7b\xc5\x89\xa3\xc1\xd6\x92\x84\x80\xd2\x06\x4d\xdd\x96\x9f\x2c\xbc\x39\x21\x23\x50\x68\xa5\x4d\x38\x68\x73\x5c\xd8\x4a\xec\x01\x61\x6b\xff\x3d\xd3\xff\x17\x86\x3d\x67\x44\x8d\x23\x4b\x18\x28\x19\xf1\x3d\xfe\x5b\xda\xf2\x76\xfc\xb6\xfb\x1e\x44\xf8\xea\xd4\xbf\xf4\x6a\x45\xe4\x84\xb2\x7a\x24\x75\x79\x9c\x90\xff\x84\x72\x75\x38\x6a\x44\x68\x41\x0d\x61\x2b\x67\xe5\x66\x81\xe6\x3c\x42\xc4\x74\x89\x0b\xea\x33\x0b\x08\x8d\x7e\xb9\xa2\xfa\x8a\x19\x84\xae\x1a\xe7\xd5\x4a\xc6\xa5\x04\xfd\xd3\xda\xe9\x12\xa7\x8a\x09\x47\x79\x96\x6e\xdc\x35\x52\x4c\x30\xeb\x96\x39\xe4\x7b\xd1\x90\xd0\xd2\xad\xef\xaf\xb2\xa9\xa6\x08\xbe\x0b\x65\x7f\x78\x74\xa9\xd1\x3f\x3c\x78\xee\xda\xc9\x1f\x35\x99\xa0\xf5\x27\xf2\x40\x95\xe8\x06\x82\xd3\xdd\x2a\xae\xad\x2f\xd5\x08\xb7\xfb\x47\x5f\x36\x57\x99\x11\x9a\x7f\xf2\x3c\x0b\x3c\x1d\x49\x50\xf9\x31\xff\xdc\xac\x7b\x27\x08\xfb\x9b\xbb\xfa\xe6\x95\xbb\x12\x64\x5f\x44\x7e\x8b\x95\xe4\x20\x6c\xfd\xbe\xe3\x76\xca\x22\x69\x02\xeb\x53\xfb\xe1\xb9\x31\x3c\x84\xe7\x2d\xd7\x8e\xae\x10\x7c\x54\x84\x5d\xeb\xdc\xad\xbd\xfe\x94\xb0\xe0\x1e\xb6\x78\x79\x0b\x27\x3b\xa1\xd0\x34\x83\x43\x3e\xdf\x96\x70\xe6\xdd\x16\x2e\x8b\x4e\x51\x42\xab\x6a\xf6\x42\xf7\x65\x93\x09\x3f\x37\x38\x4e\x3a\x1d\x67\x4f\x70\xf3\xcf\x79\x24\xb2\x67\x2f\x81\xcb\x79\xea\xf5\xac\xd0\x2d\x84\xd3\xb1\xaf\xac\x3a\x03\xd6\x11\xf6\xff\x9a\xbe\xb7\xb4\x6e\x09\x61\xbf\x77\x08\xeb\xc2\x79\x2e\xc2\x93\xc9\x53\x07\x56\x08\x99\x11\x6a\xf7\x1a\x96\xed\x12\x90\x26\x38\x18\x88\x3a\xab\xeb\xbd\x63\xc1\x75\x9b\x8d\x42\x6f\x28\x8b\xe0\x7f\xef\x75\x5e\x46\xfe\x35\x82\x4b\x8c\x98\xd7\xfb\xbb\x8f\x09\x07\x7c\xf9\x67\xcb\x66\x76\x12\x82\xbc\xef\x69\xfc\x72\x6a\x22\x1c\x11\x8d\x58\xe4\x76\xed\x03\x21\x78\x79\x5f\xad\x57\x65\x2c\x03\xe9\xee\xc5\x4a\xfc\xdb\xe3\x09\x7e\x7b\xd5\x25\x8c\x57\x06\x13\x26\xef\xf8\x2c\xd7\xb6\x3e\x8c\x90\x7b\x26\x67\x8f\x85\xdf\xf1\x09\xd3\x91\x12\xd3\x43\x87\x46\xa4\x08\xe2\xcc\x80\xda\xed\xa8\x52\x42\x05\x2b\xe6\xb7\xde\xb4\x76\x16\x26\x37\xed\xb5\xfc\x32\x75\x70\x02\x52\xdb\xf6\x1d\xf3\x57\xec\x9b\x00\xeb\xa3\xa6\x53\x64\xc5\x65\x08\x21\xe6\xa1\x9c\xd3\x0c\x5c\x98\x7f\x45\xf9\xf6\xb7\x7d\xae\x93\x14\x09\xeb\xbb\xbe\xaf\xd6\xd7\x5b\x41\x60\x2b\xd0\xbe\x18\xe8\x66\x42\xd8\xae\x15\xa4\xfa\x4c\x6e\x16\xa1\x3c\xea\x23\x47\x00\x1b\x0f\x21\xd8\xfe\xe0\x99\xfd\xbe\x63\x2c\x38\x4b\xab\xbe\xf9\x58\xf9\x85\x85\x9c\xa9\x27\xc2\x9b\x5a\x4b\x8b\x90\x15\xa7\xbc\x4f\xf8\x9e\x3a\x61\xd1\xe9\xfa\x2d\xec\x3a\xe3\x9f\xb0\x0f\x37\x28\x88\x9a\xda\x11\xd6\xba\xf5\x3e\x95\x92\x15\x26\x9c\xce\x77\x9f\xd3\xb8\x32\x8f\x30\xf9\x9d\xf6\x4b\x8d\xf8\x14\x06\x4d\x1b\x42\xa7\x9f\xf9\x29\x4e\x08\xbb\x79\xb6\x65\xf8\xf1\x5b\x16\x2e\xbc\x5a\x9e\x10\xfc\x49\x81\xc0\xbc\x0d\xf7\x55\x53\x33\x24\xf4\x4d\x51\x59\xcd\xee\xe5\x43\x88\x7d\x78\xbd\xeb\x88\x15\x8b\xf0\xa1\x78\xf0\x81\x8e\xff\x5e\xc2\xef\xa3\x4f\x8b\xf7\xef\x5b\x44\x90\xae\x92\x1e\x14\x1b\x8e\x61\xf0\x8d\x4d\xff\x6c\x92\xee\x69\xc2\xc7\x03\x75\x0b\x17\x9e\x3d\x4d\xf8\xf9\x6e\xbe\x59\x63\x89\x02\xe1\xd2\x15\xe3\xfc\xe4\xfa\x1b\x0c\x1e\xc8\xcf\x5c\xf4\xde\x2f\x8a\xc1\x0b\xeb\x1e\xce\x4a\xa1\x36\xc2\xc6\x9c\xa7\x65\x76\x32\xad\x84\x72\xb7\xae\xb2\x14\xe1\x41\x82\xab\x65\x46\xef\xbe\xd9\x79\x04\x11\xdf\x5d\xde\x71\x36\xc5\x84\x45\x9a\x69\x1e\xc5\x37\xed\x19\x2c\x2f\x58\xb2\xb0\x73\x75\x20\x03\xc3\xb7\xf7\x32\xcf\xd4\x3c\x22\x4c\xbb\xf3\x30\xa9\xc3\x34\x80\x81\x67\x9e\x90\xd6\xdd\xd3\xfe\x04\xc7\x98\xde\xf3\x93\xdd\x2f\x10\x82\x79\xce\xcc\x8a\x9d\x6d\xc8\x40\xc7\x2c\xe7\xfd\x25\xad\x0b\x0c\xf2\x6e\xf3\x1e\x95\x4e\x7d\x43\xa8\x88\xf3\x7d\xab\x9d\x79\x85\xf0\x62\x92\x75\xeb\xbe\xf6\x72\xc2\x4d\xc7\xb7\x99\x27\xb2\x2b\x08\x93\xbf\x71\x5f\x8c\x12\x6c\x24\xc8\x07\x27\x8a\x05\x8d\x17\xd9\xc0\x8d\xf3\x4e\x8e\x63\x67\x8b\xeb\xef\x4d\x6d\x61\x04\x59\xd7\x28\x11\xa5\x71\xac\xbb\xf5\xf1\x97\xd0\xe3\x33\x13\xca\x89\x66\x0d\xed\xcc\x6e\x57\xc2\x3d\xb0\xcf\x4b\x2c\xdc\x4d\xe0\x8d\xfe\xf6\x70\x5b\xb1\x0a\x61\xc5\xfd\x2b\x93\xfd\xef\x45\x10\x3e\x56\x36\xad\xcd\x3f\xf8\x83\x50\x98\xd3\x5c\xd1\xfa\xf9\x07\xfd\xe4\x79\x6b\x3c\xf2\x04\x84\x5c\xdf\xfa\xf5\x9c\x8d\xe5\x84\x9c\x0f\xee\xd1\x8e\x4a\xb7\x08\xa7\xbb\x56\x5e\x8e\x18\x4e\x25\xf4\x9e\xfa\x2a\xa8\x90\x12\x4b\x78\x14\x10\xf3\x6d\xbb\x67\x26\xa1\xa3\xbc\xf0\x48\x5b\xc2\x23\x06\xfa\x9f\x7f\xfe\xe0\xff\xfc\x98\x70\xba\x63\xcf\xc3\x34\x9b\x5a\x06\xe9\xec\x02\x25\xfa\x5f\x07\x09\x3c\xd9\x31\x15\xbb\xfa\xfa\x08\x9e\x0d\x5a\x48\xb3\x1d\x24\x94\xbc\x53\x73\x75\x0d\x2a\x20\x9c\xdd\xf5\x4d\x65\x52\x47\x24\xa1\x7a\x78\xa7\xf4\xfc\xe0\x67\x04\xf1\x80\x08\xa7\x07\x2b\x24\x08\x39\x53\x62\x9c\x32\x6b\x34\x08\xab\xa5\x63\x6b\x2a\x6e\x1e\x25\xe8\x1d\x16\x2c\xbe\xf1\x4e\x83\x90\xc1\x9b\xd4\xda\x78\x99\x9f\xe0\xec\xb6\xa1\xff\xcf\x58\x0a\x21\xd7\xec\x30\x5b\xe7\xae\x63\x84\x6a\xaf\x80\x10\x31\xa5\x6a\xc2\xa6\x97\x61\x2c\x09\xf7\x2a\xc2\x9f\x37\x66\xdb\xff\x96\xcf\xf7\x75\xf7\xde\xdf\xde\x40\xe0\x7b\x50\xc5\xfd\xbb\xa2\x8c\x81\x6a\xe7\xd6\x50\x83\x4f\xb5\x84\x39\x95\x4f\x76\xe7\xdb\x64\x11\x06\xca\x2e\x9d\xf0\xbe\x70\x9b\x20\x5f\x6c\xf6\x65\xf3\x82\x24\xc2\x35\x2b\xc1\x9a\xeb\x75\xaf\x59\x58\x60\x74\xa8\x34\x11\xa2\xf4\x0f\x7b\x9c\xba\xe7\x97\x59\xc8\x10\xd6\x39\x35\xcc\x36\x71\xb0\x22\x28\xf8\x45\x3e\x9e\xba\xdc\x8f\xb0\xd7\x99\xaf\xf4\xa3\xa7\x0f\x83\xfa\x95\xbb\x9d\x1a\x0f\x5f\x25\x28\x6a\x06\x29\x8a\x1e\x66\x08\x4b\x55\xa6\x5d\x59\x37\x0e\x4e\xcd\xfe\xe4\xef\xf2\x85\x04\x9e\xf9\x2f\xcd\xc5\x15\xf3\x09\x26\xce\x6d\xf5\x7f\x02\x5f\x11\x5e\x9d\xfd\xf3\xf3\x23\xd7\x63\x42\xdc\xbc\x9e\x81\xc1\x2d\x5e\x84\x27\xd7\xce\x34\x26\x0e\x49\x12\xa2\x4b\xbc\x7e\x4b\xb8\xcd\x21\xbc\x59\x11\xd1\xb1\xf4\x7c\x14\xe1\xf8\xdc\x0d\x34\xdf\x23\x88\x30\xa4\x32\x2f\xfd\xaa\x64\xfc\xf8\xe5\xc2\xde\xda\x3d\xaf\x9a\xa0\xf6\x47\xf4\x5a\x65\xda\x13\x02\x17\xb7\xcb\x4e\xab\xe8\xcb\x84\x1c\xb5\x85\x3d\x0b\x3f\x1f\x22\x8c\xca\x29\x95\x8a\x6f\xb6\x27\xec\x4f\xb9\x7d\xa3\x6f\xfc\x65\x35\xa5\x57\x37\x24\x63\xcb\x1b\x82\xf9\xe6\xb4\x1e\x47\xce\x52\x06\x66\x36\xd4\xbf\xcd\xe7\x15\x83\x97\x43\x49\x53\xed\x58\xa5\x0c\xc4\x4e\xb0\x3d\x5c\xc3\xd7\x40\x30\xdf\x15\x5c\xbd\xf1\x8d\x0b\xe1\x97\x68\xfa\x2f\x13\xa9\x58\xc2\xe2\xf2\x7c\xce\x19\xd7\xbd\x26\x94\xa8\x93\xe5\x21\xb5\xd7\x8b\x09\xb3\x7d\xd5\xa6\xbd\xb7\xb9\xcd\xe0\x89\xf2\xc5\xdf\xc2\x27\xe2\x09\x43\x93\xcd\xd7\x75\x2e\x2f\x27\xdc\x39\xd7\xb7\x26\xc1\xee\x2a\xa1\xfd\xdd\xac\x78\xaa\xaa\x65\x20\x73\x5c\xe3\xcf\x86\x35\x76\x84\x3d\x1e\x4e\x27\xf8\x37\x6c\x26\xbc\xba\xba\xf4\xb8\x1c\x9f\x02\x21\x33\x72\x06\xc7\xfc\xba\x51\x16\xe6\x35\x50\xf3\x93\xf2\x3d\x84\xec\x74\xbb\x6b\x1e\xa5\x79\x84\xa6\x36\x53\xbe\x17\xd2\x36\x04\x91\xa2\xfc\x7b\x23\x3d\x0b\x08\xe5\xe7\x6b\x02\x47\xbe\x5f\x21\xac\xdd\xde\xb9\xe9\x77\x47\x02\x61\xde\xe2\x7c\xdf\x5a\xa9\x62\x82\xc8\x20\x53\x14\xc5\x75\x93\x50\xe9\xce\x3f\x49\xbb\x24\x93\x41\x71\x22\xab\x4b\x46\x33\x8f\x30\xe2\x17\xb5\xed\xc1\x8d\x13\x84\x0b\x8f\x64\x55\x36\xe4\x19\x12\x3e\x2c\xe3\xf4\xab\x2f\x3d\x48\x08\x92\x1e\x43\xb8\x8e\x3e\x61\xb6\xe2\x0d\x45\xb7\xe5\xe7\x09\x1d\x17\xbc\xba\xa7\x0e\xe6\x4d\x28\x2f\xa5\x97\x5e\xe3\xbc\xea\x5d\x84\x9b\x8e\x75\x37\x3a\x5d\x66\x12\x92\x8f\x7e\xae\x66\xf1\xce\x9f\x80\x97\xf3\x2c\x4e\x3d\xb9\x36\xc6\x42\xc0\xfc\x8c\x51\x65\xa3\x87\x84\x3c\x56\xff\xfe\x2b\x39\x05\x04\x49\x29\xb2\x9c\x13\xa8\x41\x28\xd8\xf8\xea\xa6\xd3\x6c\x6f\x82\x59\xc1\x57\x87\xae\xab\xe9\x0c\x1a\x85\x05\x57\xde\x3e\xe8\x48\xd8\x7a\x69\x9e\xc2\x96\xa5\xa9\x84\x1b\x86\x37\x61\xb5\x3a\x95\x90\xb1\x2a\x20\xd7\x4e\xfd\x1d\x41\x39\x25\x3a\x43\xf3\x62\x15\xa1\xfc\xbb\x80\xca\xf6\xf1\x49\x43\xa2\xc5\x7c\xc6\x72\x07\x42\x28\x9f\x1b\x5b\x52\x93\x22\x83\x8f\xbf\x7a\x46\xb4\xf9\x5c\x27\x4c\xff\x57\x88\x77\x5e\x9f\xc6\x6e\x5f\xc2\x9c\x2b\x93\xad\x77\xca\xca\x12\x3a\x97\x4b\x70\xca\x6c\x59\x40\x18\x9c\x6c\xd8\xf5\x48\xdf\x96\x20\x99\x14\x56\xac\x32\x47\x87\xc0\xa6\xfd\x6c\x8a\xb8\xd6\x06\x42\x56\x65\xc5\xd9\x49\xf6\x5a\x84\x98\x0b\x5f\xd8\x1e\xb6\x2e\x24\x18\x2e\x66\x15\x74\xf4\x34\x17\xe1\x89\x79\x99\xb7\xf4\xb4\x70\x06\x77\xc2\x7a\x3c\x53\xe5\x9d\x08\xcd\xa5\x99\xce\xa7\x92\xfc\xe9\x5f\xb9\xbf\xb2\xbb\x29\xa7\xb6\x91\xc0\xa3\x7c\x2d\xd6\x9e\x37\x98\x41\xf3\xb2\xf7\x7e\x8e\xa9\x71\x84\x53\x7d\x0a\xcb\xfe\x4e\xd7\xbc\xc6\x96\x8b\x6c\xaf\x22\xd8\x58\xdc\xca\x38\x96\x92\x40\xd8\x51\x3d\xe0\xa6\x38\x4b\x81\xa0\x39\x63\xaf\xdb\x9a\x3f\x9a\x84\x35\xba\x6f\x44\x79\x65\x43\x08\x03\x06\x55\xe6\xab\xb2\xee\x11\xe6\xfd\xa9\x88\xe1\xbb\x57\x4e\xd8\xf2\x89\x77\xad\x98\x70\x0f\x81\x3d\xb8\xe0\xcd\xf2\xb8\x72\x42\x55\x51\x8c\x0a\xef\xf8\xe4\x3a\x8f\x9f\x6f\x96\xbb\xcf\x04\xd8\x57\x6f\x79\xd9\x3f\xec\x47\x78\xa9\x57\x6c\x27\xfc\xea\x22\xf3\x6f\x7a\xaa\xb9\xa3\x2b\x96\x53\x9a\xd0\xc0\x3d\x60\xbc\x64\x75\x22\xc1\xcf\x4d\xe0\x06\x4f\x55\x35\x83\x13\xd7\xed\xfa\xc7\x6c\x22\x08\xd5\xc9\xdf\xbf\xff\x52\xdf\x43\xf8\xa4\x70\xc2\xaf\x40\x4e\x99\xc0\x26\x49\xc0\x25\x3e\x82\x50\xed\x6e\xa3\x2a\xcf\x52\x06\x49\x26\x12\x83\x51\x1c\x9f\x09\xd6\x4e\x6b\xea\xbb\xee\x16\x13\xfc\x0e\x68\xf8\x2d\x96\x29\x21\xe8\x4f\x1a\x2b\x12\xf5\xce\x24\x7c\x08\xd6\x19\x35\x7c\xfc\x9e\x20\xe4\x62\xe3\xcf\x3b\x3e\xcd\xf7\x9c\x61\x7a\x75\xc1\x5b\x42\xc3\xba\x33\x5d\xb4\x24\x8e\x50\x37\x63\x7b\x93\xde\x81\x58\xc2\xa7\x7b\x76\xeb\x5e\x66\x7e\x24\xb8\xb2\x8a\x8a\xd6\x0b\xc6\x11\x8a\xb7\x34\xab\x7e\x9b\x3e\x3c\xe1\xf0\xff\x4d\xbf\x17\x26\x69\xcb\xd8\x3a\x10\x02\xbf\x2d\x3e\x58\xbd\x47\x98\xb0\x86\xe7\x8e\xf1\x74\x45\x65\x82\xfa\x9e\x9e\x93\x09\xba\x1b\x08\x2a\xdf\x66\xcd\xd2\x0d\x0a\x20\x58\xf1\xbc\x54\x2e\x74\x0d\x9a\x50\xa6\x6f\x30\x50\xd6\x18\xc9\x65\xb0\x3f\x89\x47\x8d\xc2\xd8\x09\x63\xca\xac\xce\x73\xef\x54\x08\x62\xeb\x3f\x5a\x5e\xbc\xc9\x30\x98\xad\xd9\x90\x72\x27\xbb\x94\xe0\xb8\x79\x7b\xe4\xc0\x0a\x5b\xc2\x3b\xd3\xf7\xaf\x0e\xbc\xcc\x61\x70\x4b\x92\xf1\x30\xb6\x49\x21\x18\x74\x8d\x65\xba\x3e\x62\x11\xca\x06\x93\x26\xbb\x6b\x9f\x26\xcc\x7a\x71\x4d\x3a\xfb\x4d\x3a\xa1\x7e\xb5\xcf\x7d\xd9\x7c\x7f\xc2\xab\x25\x29\x9f\x12\x7f\x6f\x25\xe4\x9f\x57\x59\x5f\x16\xe7\x48\x08\xe1\x95\x97\x72\x3c\xf8\x88\xc1\x3b\xe3\xd0\x9b\x8c\xfd\x33\x06\x9b\x3f\x35\x5d\xb0\xc9\x2a\x63\x30\x7c\xd8\xa9\xbf\xc6\xb2\x84\xc1\xd0\x5b\x59\x3e\xff\x83\x25\x84\xeb\x61\x7f\x2c\xfc\x4a\xa4\x09\x73\xc3\x87\x5e\x29\x2c\x2b\x24\x3c\xe4\x73\x50\xf3\x5a\x9b\x41\x58\x6e\xad\xe5\xb0\x71\xbc\xbc\x55\xf0\x70\xfe\xdc\x1f\x4f\x90\xd5\x42\xdb\x94\x5f\xb3\x09\x4b\x7e\xf9\x2d\xe6\x95\xf8\xc8\xc2\x70\xee\xc0\xa5\x9f\x37\xc3\x09\xfd\x9b\xbe\xce\x19\x6a\x5e\xf7\x5f\xf8\x74\xea\x89\xb4\xef\x13\x0b\x82\xc8\x70\xaa\xef\xd5\xd5\x2b\x08\x5b\xa5\xa3\x4b\x4f\xb6\x5f\x24\xfc\xda\x18\x99\x5c\xe2\x64\x46\x58\x3f\x45\xd3\xe2\xa1\x83\x34\x21\x64\xde\x96\xc4\xe6\x35\x2a\x84\x47\xfe\x9d\x5f\x4c\x75\x6c\x08\xa7\x02\x7e\x84\x18\xec\x4c\xff\x2f\x5c\xdb\xb4\x63\x66\xe8\x62\x1d\xc2\xd9\x4d\xeb\x5e\x99\x6a\xbf\x66\x61\x55\xc7\xe3\x3f\x79\x19\xae\x84\x37\x41\x9b\x4d\x9e\xf6\x57\x32\x08\x9b\xb3\x31\x3b\xc7\x62\x05\xa1\xed\xae\xc9\x46\x4f\xa9\x59\x04\x85\xb9\x7e\xe9\xfe\x4f\x32\xc7\x6f\x61\xeb\xaa\xdc\xf5\x2a\x09\xa3\xb3\x3b\xae\xc5\xc7\xfa\x10\xfc\x0e\xbf\x58\x95\x45\x9e\x84\xd2\x3b\x1e\xba\x16\xe2\x33\x08\xaa\x42\xfd\xfa\xcb\x78\x92\x09\x39\x49\x4d\xd1\x5d\x8e\x26\xff\x85\xbd\x0d\xe9\xb2\xbc\x95\x11\x84\x0e\x7e\x73\xbd\xb1\xb3\xa2\x84\xc2\x7e\x01\xef\x58\xe5\x78\xc2\x9a\x32\xcb\xfa\xde\x77\x0d\x84\x5f\x8d\xcb\xdb\xe7\xdf\xef\x26\x28\x8b\x67\x4e\xee\x19\x2f\x47\x37\xf2\xdb\x76\x8f\x63\xd9\x0b\x99\x1d\x97\x86\x5c\x09\xa6\xc2\x85\xd3\xcf\x64\x1d\x9f\x50\xfe\x0f\xa7\x22\x6e\x77\x6f\xe5\xdd\x45\x48\xf5\xe3\x6b\x39\x58\x9b\x4e\x38\xb3\xe5\xbb\x76\xec\x31\x97\x09\xc8\x3b\x35\x30\x3d\x68\xdf\xad\x09\xa5\x44\xed\xe6\xc1\xa7\x3c\x37\x19\x98\x96\x68\xbe\xdb\x5d\xa7\x40\x78\x17\x51\x70\x7e\x05\x47\xe9\x04\x78\x4a\x0a\xbd\x3a\xb7\xee\x01\xe1\x60\xe4\x8d\x9a\xb9\x71\x2f\x99\x7f\xd3\xcc\x6d\xd7\xfd\x23\x36\xaf\x21\x3c\x9e\xc6\x7f\x85\x2b\x23\x9f\x20\xcf\x69\x47\x7d\x37\xdb\x18\x3c\x93\xf3\xf4\xe5\x1b\x2f\x66\x9d\x79\x5a\xcb\xde\xf2\x10\xb4\x1c\x1f\x7e\xdb\xb6\x34\x8b\xf0\xe1\x8a\x84\x79\x8b\xa9\x26\x41\xeb\xf3\xc0\x0d\xff\x3d\xaa\x84\xb9\x17\xe6\x15\x71\x04\xb9\x31\x38\x29\xee\xc6\xe9\xcc\x72\x24\xa8\xfb\x3f\xd3\x0c\x6c\xb4\x64\x50\xf3\xc1\x72\x48\xc6\xf7\x3d\x0b\x6f\x0a\x9f\x45\x2f\xca\xd1\x65\x60\xa2\x97\x16\x73\x77\xb2\x1b\xfd\xc3\x98\x9a\x8c\x25\xeb\xd9\x39\x82\x35\x71\x1f\x6d\x16\x21\xfa\xb9\xe6\x47\xb8\x78\x81\x0c\xe1\xfa\xdb\x25\x5d\x03\x6b\x02\x08\x52\xaa\xb5\x9e\x7b\xfe\xac\x27\xb0\x47\x9b\x45\xcf\x98\x7a\x9b\x70\x30\x85\x47\x5e\x38\x28\x8f\x50\xbd\xc5\x20\xdc\xd7\x32\x7f\x42\xd1\x3d\xa4\x18\x22\xf4\xaa\x81\x30\x5d\x4b\xf4\xd2\xa2\x17\xc7\x27\xc0\x63\x89\x37\x7b\xb1\x40\x3a\x83\x39\x33\xee\x0f\x2c\xc8\x35\x23\x5c\x9f\x97\x7a\xd8\xf5\xd5\x05\x42\xcd\x22\x8d\x3b\x57\x7a\xe3\x18\xec\x5b\x9c\x6a\xf6\xd8\xe2\x18\x61\xea\xbd\x4d\x6b\x7d\x7a\xf9\x08\x5e\x4b\x13\x5a\x7e\x0d\x66\x32\x58\xb4\x74\xe3\xd7\xf2\x80\x2c\x06\xc3\x73\xdc\x1c\x79\x0e\x04\x13\x44\xdb\xa6\xae\xea\xfd\x95\x4c\xb8\xf2\x33\x51\xf2\xf8\x8b\xf3\x0c\x76\x1f\xcf\xe2\x0f\x0f\x8d\x26\x2c\xbb\x3a\x78\xb5\xac\xcd\x8b\xa0\xf2\x31\xc0\xc6\x95\xbd\x9b\xe0\x3a\xfd\xe6\x2d\xc5\x80\xd7\x84\xf0\xa8\x72\x7f\x3b\x8e\xb7\x04\x5d\x4d\xf6\xe5\x91\xeb\x6e\x12\xa6\x3c\x50\x2d\xd8\xb4\xba\x85\x10\x3a\x7d\xa4\xf3\xfc\xea\x44\x06\xca\x7f\xde\x8a\x26\x4c\x5b\x4f\xe0\x6d\x7b\x91\xbc\xfe\x56\x09\x03\xb1\x66\x3f\x1f\x83\x17\x73\x09\xef\xf9\x75\xaa\x16\xbf\x3d\x47\xf8\x85\x2f\x1a\xd7\x93\x66\x12\x3e\x8d\x38\x3a\x6e\x9e\x91\xc8\xe0\x8b\x9e\x74\x9d\xea\x66\x53\x42\x52\x90\xad\xd1\xc0\xbc\x2d\x84\x54\xe7\x63\x72\x45\xe3\x9f\x8e\x9e\x3a\xd7\x87\x76\x06\xdb\x11\x74\x76\x4c\xd2\xdb\x24\xfa\x9b\x85\x73\xc2\x72\x4d\x03\xa2\x7b\x09\x9d\xb2\x91\x8e\x51\x31\xa7\x08\xfd\x5f\x2b\x6d\xdf\xcf\x72\x27\x68\x85\x3d\x2e\x8f\xd0\xb8\x44\xd8\xa3\xcd\xdf\xdd\xba\xa8\x92\x50\x70\x45\xae\xfd\x6e\x58\x04\xa1\xcd\xec\x4e\xc0\x72\xde\x6b\x04\xa9\x9a\xcc\x6b\x93\x0e\x44\x10\x3a\xb9\x07\x67\x06\x77\xee\x21\xd4\x2d\xe8\x50\xb5\x3e\x96\x4b\x48\x2d\x0d\xa9\xe0\x54\xf5\x22\xfc\x9e\x54\x5b\x9c\x21\xff\x82\x85\x9c\xfd\xaa\x4a\x21\x1f\x76\xd0\x7f\x20\xb9\xd4\x79\x66\xde\x39\x2b\xc2\x75\x63\x96\x5e\xd5\xfe\x15\x84\xe5\xdb\x3c\xc2\x1c\x77\xfc\x64\x21\x52\xd9\x66\xf7\xf2\x9b\x44\x18\x59\xe1\xe5\x26\xa6\xbd\x8a\x10\x9e\xf5\x74\x6d\x25\x19\x11\x4c\x7e\xdb\xd5\x77\x05\xf5\xb1\x30\xfa\x3e\x75\x87\xd1\x24\x11\xfa\x87\xaa\x5f\x8a\x21\xd3\xbe\x8b\x11\x36\x58\x6f\x9a\x79\xf2\xd0\x0e\xc2\xb7\xe5\x7f\x42\x76\x4e\x5b\x40\x50\xbd\xb7\x37\xf5\x18\xa7\x20\xc1\x20\x57\xdb\xa1\xbf\x27\x94\x70\xce\x63\xea\x67\x7e\xc7\x22\x42\xaa\x8d\xe4\x90\x9c\xdf\x6b\x82\xbb\x43\x8e\xfe\x26\xeb\x47\x84\x88\x64\xbe\xe6\x2a\xc3\xd7\x84\xa5\xa2\x1e\x6c\xcc\xba\x86\xf1\x2b\xc0\xaf\xbe\x5d\x46\xdd\x84\x4b\xbf\xa6\x4c\xe7\x2a\x78\x4a\xb8\xb6\x17\x3c\x25\x91\xdd\x84\xe5\x53\x93\x6a\xe6\x9e\xe9\x26\x9c\xe1\x49\x90\xac\x30\x6c\x21\x5c\xf9\x73\xe0\x64\xc0\xd7\x01\xc2\xa5\x97\xfa\x51\x5a\x87\x1a\x08\x46\x8f\xcf\xaf\x8b\xf2\x79\x44\x18\xaa\x1c\x5b\xf0\xf7\xf0\x47\x35\x57\xdd\xfa\xc4\x1e\xc2\x55\xbd\xd2\xfe\x5b\x82\x85\x04\xfd\xde\x96\xf0\xd3\x36\x55\x84\x80\x93\xed\x35\x79\x7c\xe5\x84\xa9\x7b\xef\x1a\x7e\xcf\xca\x25\xf4\xe5\x34\x08\x9c\x9d\xfe\x9c\xd0\x73\x4f\xf9\x72\xa1\xd0\xf8\xad\x39\xfc\xc5\x92\x66\xfb\x04\xc2\x02\x4b\x32\xef\x6d\x2d\x27\xc4\xc7\xce\x79\x98\xb4\x58\x97\x30\xff\xd5\xdc\x92\x61\x63\x59\xc2\x6d\xd1\x02\x59\x17\xcb\x85\x04\xa5\x56\xff\x4d\x06\x7a\x56\x04\xdd\xa9\xa1\xfb\x82\x95\xcc\x08\xef\xbb\x56\xec\xbc\xc8\xbf\x80\xa0\x95\x3c\x7d\xff\xfd\x03\x9c\x04\x76\x9d\xa1\x9f\xc7\x63\xd9\x08\x97\x7e\xf0\xb1\xb3\x2b\x85\xfd\x4f\xa8\xc6\x3a\xc4\xee\x39\xf6\x96\x05\xd9\x5f\xcf\x0f\xf7\x9b\x15\x13\xc4\xd5\x52\x9e\x47\x7f\x7e\x4e\xb0\x56\xb9\x18\x79\xe8\xdb\x73\x42\x61\x40\x2f\xb7\xc7\xd5\x4c\x82\xfa\x39\x56\x93\xf2\x25\x33\x42\xed\x24\xe9\x29\x3c\xcf\x3a\x09\x97\xd6\x07\x6c\x71\x6d\xee\x25\xbc\x7f\xf8\xf4\xab\x03\xeb\x2b\x21\x71\x7f\x86\xb7\xf7\xfd\xbb\x84\x33\x59\x3f\x87\x38\x63\x8e\x32\xe8\xc9\xde\x7f\xc5\x70\x5a\x00\x81\xcb\xc2\x5a\x55\x21\x31\x97\x90\x37\xa9\xfa\xe9\x56\xc9\x1a\x82\x63\xdf\x97\x1f\xbb\x9f\x16\x33\x28\xb9\xdc\x6b\xf8\xfc\x76\x03\xa1\x21\xd4\xcf\xdd\xaa\xab\x82\x90\xa0\x17\xce\x36\x67\x66\x0e\xe1\xb3\xef\x76\xee\x13\x3f\x72\x09\x5b\xfd\x0f\xae\x38\xb7\xeb\x31\xe1\xcb\x85\xd9\x05\x75\xc1\x5e\x84\xc0\xaf\x06\x6e\xc4\xc6\x4d\x38\xbe\x46\x2b\x7f\xe7\xb9\x0c\x16\xe2\x9f\xb7\x55\x05\xd6\x3f\x25\x08\xff\xe0\x1e\x0a\x65\xce\x31\x18\x69\x72\xff\xf3\x7b\x72\x0c\x41\x7d\xd3\xd4\xa7\xe5\x99\x05\x0c\xbe\x05\x6a\xcd\x90\xe4\xbf\x4f\x90\xea\xde\x1c\x7e\x77\x61\x05\xe1\xfa\xe1\x26\xb1\xfe\xc3\xc6\x04\x83\x3a\x71\xc6\xd7\x5b\x91\x50\xb5\xe6\x98\xfb\xb6\x13\x57\x08\xfd\xd1\x9a\x5f\x58\x97\x6d\x09\xb1\x3f\xdb\x52\xe3\xa2\x7e\xb0\x90\x3f\xf7\x8f\xf8\xfb\x19\x55\x0c\x3c\xa2\x35\xe5\x3a\xee\x26\x12\x36\x47\xab\x36\x35\xea\x1d\x26\x4c\xcd\x78\xf4\x76\x99\x42\x26\xc1\x35\xbe\x54\x37\x71\x91\x12\x21\x38\x6b\xf9\x02\xf5\x77\x77\x09\xb2\xa2\xdb\x4c\x9e\x4e\x0a\x22\x28\x8c\x6e\xe6\x78\x59\x69\x42\x98\xf6\x3c\xa4\x2f\xf9\x8a\x2c\x41\x73\x2e\x87\xf1\x50\x1f\x1f\x21\x7b\xc3\x2a\x21\x95\xef\x6e\x04\x39\x7f\xe9\x53\x72\x33\xcd\x08\xfd\x6b\xb5\xb6\x73\xe4\x78\x11\xd4\x5d\x4b\x7b\xb9\x17\x4f\x22\x9c\x17\x98\x34\x6a\x53\x1c\x30\x01\xa7\x15\x7d\x9a\x5a\x97\xab\x11\x46\x1a\x3f\x9d\x14\x49\x9b\x4e\x58\x99\xad\x02\x8e\x24\x1e\xc2\xb7\xd1\xfa\x53\x63\x73\x04\x08\x4a\x61\x59\x52\x89\x33\x67\x13\x42\xdf\xac\x18\x5d\xe3\x5e\x46\x28\x14\x93\x6e\x17\x88\x90\x26\xb0\x1d\xf9\x90\xb2\xfe\xb2\x1d\xe1\x4b\xac\xf7\xee\x22\x29\x63\x82\xcb\xce\xce\x36\xeb\xc6\xad\x04\xde\x59\xfc\xad\x73\xe7\xca\x13\x7e\x7e\x13\x9e\x75\xe2\xfd\x4a\x42\x1c\x47\xda\x6c\xdb\x80\xb9\x04\xfb\xa2\x41\x75\xe9\xf1\xfb\xc2\xed\x34\x95\x08\xb1\xc8\xc3\x0c\x36\x9e\xdf\x77\xf2\x7b\x94\x0d\x21\xda\x53\xb9\x5d\x4c\xdd\x80\x90\x2e\xfc\x7b\x4f\xa4\x7e\x1b\x0b\xe7\x8e\x6f\x70\xcb\x71\xb8\x44\xe8\x14\xf9\x3e\x38\x23\x44\x85\x10\x30\x4b\xd1\xcf\x44\xc9\x84\x10\x9c\xb8\xfd\xd6\xa5\xf1\x67\x02\x3b\x47\xfb\xb6\xf7\xf2\xa3\x2c\xf4\xcd\xf3\xfb\x6d\x6d\xdd\xc6\x42\x80\xe0\xbb\x03\x81\x7b\x38\x09\x82\x81\x3a\x56\x71\x51\xeb\x08\xad\xf6\xfa\x7b\xd7\x9d\x3c\x4e\x58\xfc\xcb\xd7\x59\xa1\x32\xe8\xbf\xc0\xe7\xb2\xfd\xfd\x6a\xb1\xdd\x04\xc1\xdf\x6a\x0b\x7b\x77\xb0\x11\x32\x63\xe6\x9c\xaf\x3d\xeb\x41\x18\xd2\x9e\x9e\x5f\xb5\x56\x9a\xd0\x5e\xa9\x3d\xd9\xe1\xc7\x5c\x42\x76\xd4\xaa\xb9\x17\x43\xf8\x26\xe0\xb3\x98\x4f\x87\xd0\xcf\x7b\x2c\xcc\xda\xb8\x7b\xde\x98\xec\x61\x06\x25\xa2\xb7\x53\xf4\x7e\xec\x65\x50\x5f\x95\x3e\x56\xb2\x6a\x27\xe1\xe2\xce\xfb\x0b\xf9\x2e\x9a\x13\x06\x92\x5b\xf4\x2a\xbd\xd6\x11\x2a\xaa\xb7\xdd\xf4\x1b\x61\x23\xfc\xb0\xf1\x34\xad\x16\xfe\xc4\xc2\x4c\xa1\xe3\x87\x8f\x9d\xdd\xc3\x60\xe7\x13\xce\x4f\x4d\xf9\x9c\x84\xd5\xb5\xf7\x2a\x4c\xf7\x5a\x12\xfa\x13\x17\xe4\x85\x08\xea\x11\x06\x83\x2b\x7d\xe5\x95\xbd\x09\xea\x6b\x9c\xde\x6c\x0e\x3c\x4a\x78\x3a\xef\x10\x67\x75\x97\x34\x61\xde\xee\x73\x5f\x2f\x1d\x94\x20\x24\x0c\x27\xb9\x8f\x46\x1a\x13\x74\x54\xee\x6c\x8d\x29\x7b\x41\x38\x1f\x1d\x71\xd6\x82\xff\x15\x21\x73\xce\x92\x0d\x83\x06\xe7\x08\x45\x9e\x8b\xaf\xd5\x71\x3f\x23\xa8\x9c\x39\xb0\x39\xba\xb6\x9c\xd0\xbf\x34\xb7\x3a\x48\x23\x98\x01\x4b\xc3\x72\xb9\x50\x5e\x1c\x61\xc6\xa3\xa4\xde\xca\xa4\x78\x42\x8c\xe4\x02\xc5\x85\xdf\x02\x09\xdf\x3d\xc6\xfa\xa0\x2b\x49\xa8\xe5\x89\x5f\xf4\x3c\xc1\x80\x50\x72\xe4\x65\x9f\xbf\x8e\x08\xe1\x89\xdc\x59\x11\xed\x9d\x93\x09\x03\x9c\x3c\x4f\x34\xf7\x1f\x62\x10\xb0\xf8\x00\xeb\xcf\x63\x05\xc2\xf1\x43\xab\x37\x2d\x7a\xca\x49\x08\xd0\x1b\x3c\x7b\xb2\xf1\x2d\x0b\x6f\x95\xda\xc5\xcc\xbb\x52\x18\x34\x9d\x99\xa5\xe8\xda\xa9\x41\x70\x7c\xed\xe7\xa7\x6a\x2f\x4d\x78\x94\x22\x64\xaa\x75\xd2\x84\x50\x35\xa3\xb7\xc0\x31\xcc\x98\x20\xb9\x4d\xec\xe5\x33\x37\x23\x42\x31\x2d\x58\x70\x6f\x25\x0f\xe1\xee\x5e\x7d\x8f\xb4\x5c\x65\x42\xdb\x23\xb6\x55\x3e\x6b\xf8\x08\x61\x21\xc9\x1d\xf5\x07\x66\x11\xd6\xf6\xf3\x5b\x6b\x29\x68\x10\x52\x5f\x7f\xda\x9b\xae\x1a\xc7\xe0\xf5\xc6\xfb\x85\xea\x8f\x5e\x30\x28\x4b\x75\x1e\x0c\x90\x09\x21\x30\x5f\x3b\xee\x05\xb0\x89\x11\x6e\x72\xb2\x8b\xa6\xd4\x7e\x60\x61\xca\x8d\xf0\x99\xdd\x77\xef\x11\x7c\xed\xa7\xa6\x44\x17\xdc\x23\xb8\x8a\x36\x47\x5c\x1c\xc7\x8f\x66\xc6\xcd\x76\xbb\x17\x41\xb1\x61\x46\x6a\x8d\xd9\x01\x42\x5b\x8c\xc3\x97\xda\xa1\x4c\x42\xe7\xcf\x17\xbe\x1c\x21\xe7\x08\x8f\xed\x3f\xee\x12\xd3\xd2\x25\x78\xe9\x1c\x30\xaa\x6a\xbf\xc7\xe0\xfe\xc9\xb9\x07\xf9\x57\x6c\x27\x14\x26\xfc\x69\x79\x76\x57\x87\x10\x6c\xd4\x9e\x3c\xc9\x62\xfc\xd3\x73\xd1\x85\xa3\x8a\xf9\x36\x84\x82\x0f\x26\x3f\xd4\xc2\x4b\x18\x3c\x1e\xc8\x53\xcd\x32\x33\x26\x9c\x38\xb7\xa9\xdd\x21\x75\x0b\x41\x7b\x15\xcf\x90\xf2\xa4\x08\xc2\xf3\xa8\x5e\x81\x51\x9b\xa9\x04\xcb\x47\x8f\x56\xe7\x26\x6b\x12\x4e\xac\x33\x5e\xdb\xec\xbf\x89\xb0\xe2\xb5\xeb\xcd\x14\xf1\xc5\x84\x53\x3b\xde\x72\x06\xf9\xbd\x22\x0c\x5d\x8f\x59\xa0\xe4\xe4\x4d\x98\x5b\xbb\x6b\xc1\xca\x99\x07\x08\x1f\x2f\x4f\x96\x5c\xb6\x51\x9b\xd0\xbd\x27\xf1\x58\xe7\x51\x1f\xc2\xeb\x72\xb7\xc6\xe1\x53\xca\x84\x8b\xa9\x3b\xf3\x8f\xf4\x29\x12\x38\x9d\x7f\x71\xab\x9f\x95\x22\xf4\x72\x3b\xb5\x3c\xfc\xd2\xcd\x42\x85\x4b\xd8\x86\x67\x4b\xd4\x08\x33\x33\x64\x4c\x0b\x33\xc7\x58\x90\x7e\x21\x67\xf3\x5e\xd2\x85\xb0\xec\x8e\x80\xc0\x6f\x8f\x27\x04\xf1\x4d\x73\xbf\xf6\x8e\x97\x63\x1c\x56\x91\xb7\xa6\x2f\x24\x54\x49\x72\xd8\xff\x0c\x91\x25\xa8\x30\xca\xd9\x2a\x95\x46\x84\xb5\x69\x33\xff\x84\xbd\xab\x2d\x82\x56\x72\x82\xa9\x89\xdb\x34\x82\xf1\xa3\xc7\x4f\xd2\x7c\x66\xd3\xbf\x12\x28\x41\xe4\xe0\xbc\x82\xf0\xcc\xd4\xec\x12\xcf\xe8\x72\x82\xd8\xe0\xd1\xcf\xe7\xbd\x05\x26\x94\x8c\x78\x97\x85\x5d\x7a\x4b\x08\xc7\xed\x15\x36\xfe\x16\xf9\xc0\xc2\xd7\x35\x2f\xb7\xce\x0f\x9f\x43\x68\x48\xb9\x53\xfe\x74\x60\x06\x21\x2f\x7c\xf3\xed\xef\xca\x25\x84\x6d\x1b\xb6\x8d\xca\x15\x56\x10\x8a\xe5\x1b\x3b\x5e\x05\x3a\x4d\x40\x54\xe0\x31\xf8\xde\xf8\xc0\x42\xde\x9b\xe0\x98\x99\x67\xd4\x08\xfb\xc5\x2c\x8d\xaf\x67\x24\x32\x48\xa3\x1e\x17\x5c\x09\x27\x6c\x69\x96\xb1\x5a\x9d\xb4\x97\xd0\x90\xa7\x9d\xfa\xa4\xc3\x9e\x30\x5f\x28\x44\x29\xcb\x94\x8f\xd0\x30\x43\xf4\xc6\xdc\x17\xe3\xf7\x3a\x4f\xf1\x73\x7b\x5a\xfe\x13\x2e\x53\x1b\xbd\x1b\x0e\xde\x25\x54\x09\x6b\x2f\x7d\x34\xe3\xdc\x84\xb2\xa4\xbb\x79\x61\xb9\xca\x55\xc2\x0f\x45\xf6\xb5\x2a\x5b\xd6\x13\x42\x27\xdd\xed\x6f\xbc\xbe\x92\x50\xc3\xe4\xc8\x1e\xbd\xcf\x43\x70\x5c\x74\xeb\x64\xac\xea\x42\x42\x06\x5b\xce\x8d\x9c\xb7\x6e\x04\x5f\x4f\xb1\xca\x57\x4b\x4c\x26\x94\x8f\x2d\xa5\xd6\xdc\x27\x0d\x09\x46\xf3\x7f\xaf\x77\xb6\x3f\xc7\x60\x9f\xd1\x23\x4b\x76\xfd\x52\x06\x0b\x7e\x6f\xf9\x24\xf0\xc0\x80\xe0\xaa\x94\xe7\xf0\x91\x2b\x8e\x01\x77\xb6\xe8\xe5\xc1\x77\xd3\x08\x53\xae\xaa\x05\x1e\xff\xf4\x83\x85\x32\xa5\xee\x8d\x75\x79\xdb\xe8\x3f\x20\xd3\x9f\x17\x9f\x21\xf0\xb4\x08\x41\x0d\x01\xee\xd6\x26\xd5\x2c\x94\x2e\x14\xf9\x52\xd5\xa5\x41\xff\x70\x74\xb3\xb8\x82\xc0\x96\xed\x13\xf0\x7f\x93\xab\x57\xd5\x71\x33\x17\x67\xc2\x5b\xa3\x84\xd6\xfa\xf3\xbd\x0c\x96\xdc\x90\x4d\x7e\x6e\xee\x3c\x61\xfa\x3f\xb8\x0b\xd6\x4d\x5b\x39\xe5\x0e\x21\xb0\x26\x4a\x20\x5d\x3e\x85\x70\xf7\x62\xd8\x87\x02\x3e\x4d\xc2\x05\xb6\x5d\x52\x5d\xb3\x57\x13\x3a\xfc\x26\x8b\x79\xc9\x6a\x10\xba\xbd\xf8\xa7\x7e\x12\x3e\x46\xf0\xe2\x74\x7c\xc5\xb1\x57\x82\x70\xdd\x37\x7b\x9b\xfa\x41\x76\x42\x56\x58\xf8\xd9\x73\x0a\xd7\x08\x66\xb5\x1f\xe5\x82\x8d\xec\x09\x4f\x86\xa2\xca\x8a\x24\xaf\x10\x0e\xcb\xcd\x74\x75\x58\x25\x41\x88\xb7\x4d\x8c\x6d\x59\x6f\x4a\xa8\xe5\x12\xc9\x7d\x30\xd9\x92\xd0\xd4\x26\x9c\x69\xbb\xd4\x6a\x42\xc9\xf9\x74\x66\xe9\x8d\x7d\x3c\x84\x8d\xf3\x47\xfa\x99\xd1\xbd\x84\x16\x91\x26\x3b\xa3\x2f\x5a\x84\xbe\x2f\x75\x8d\xb1\xcf\xb5\x09\x12\x35\xc2\x62\x7e\x33\x97\x13\xf6\x5c\x99\x34\xf9\xe2\xda\xe4\x09\xb8\xf6\x22\xf9\xe1\xff\x0b\xb7\xb8\x1d\xf1\xc2\xb3\x7a\x58\x58\xb5\xe6\xd8\x89\xbd\x16\xab\x09\x45\x79\x9f\x7e\xc7\x4b\x1d\x9f\x00\xb1\x84\xbb\x8b\xd7\x89\x44\x4c\x28\x05\x47\xb4\xaf\xbc\x32\xd1\x26\xc8\xfd\xda\x3c\xaa\x11\xc9\x45\x58\x2f\x7e\xa4\x8e\x71\x7e\xcf\x82\xec\xe4\x82\xe9\x71\x7e\x1b\x09\xaa\x61\x83\xbf\x3d\x86\xb8\x09\x25\x4d\x2f\x04\x8d\x75\xb8\x09\x63\xde\x2a\x31\x86\x75\x6a\x04\x59\x9b\x38\xab\xc0\xe0\x9b\x0c\x78\x4d\x37\xf4\xac\x3f\x6c\x4e\x98\xa7\xbe\x72\xec\x8f\xd2\x0a\xc2\x5b\xca\x56\x7e\xe7\x7f\xa6\x08\x2d\xac\x87\x1c\x29\x81\xa3\x2c\xcc\xe7\x58\xc1\x24\x4b\x6e\x20\xc8\x6d\xe8\xb6\x28\x7a\x7f\x99\xc1\x06\x8d\xea\xfd\x29\xe3\xe5\x8c\xa2\x55\xa6\x72\xf5\x17\x16\x66\x2b\xed\xad\x55\xb1\xea\x61\xa1\xb0\x53\xdc\xe4\x78\x8a\x0c\x01\xcd\x31\x3f\x56\x34\x79\x13\xd6\x1e\x2c\x2a\xdc\xb0\xbf\x98\x20\x71\xdc\x52\xc8\x2b\xa4\x84\x30\xdf\x51\xd1\xe3\x90\x44\xe6\xf8\x3f\x61\x9d\x6d\x85\xf2\xa2\x84\x4e\x83\xbc\x79\xfc\x63\x5b\x09\xd3\xa5\x7d\x0e\x0d\x95\xb9\x4e\x98\x06\xe2\x3c\x04\xfa\x67\x0e\xb2\x90\xd5\x1e\x1c\x3a\x5d\x64\xc1\x84\x22\xf1\xfb\x6b\xa6\x6e\x1e\x58\x28\x59\xf0\x67\x4b\xbf\x9b\x28\xc1\x25\x91\x33\xfd\xc8\xfc\x02\x06\xd6\x0f\xef\x3e\xbe\x14\x7e\x85\x60\x7a\xaf\x2f\x63\x5e\x84\x0f\x83\xf2\x27\x49\xd6\x17\xa6\xed\x23\xec\x51\x3a\x22\x3b\xf7\xd0\x45\x82\xdf\xd2\xec\xaf\x4f\xe4\x3a\x8a\xf0\x55\x90\xcb\xe0\x81\x69\x20\x81\x33\x2d\x4b\x50\xbe\xe9\xd8\xff\xc2\xcf\x3b\x42\xce\x6e\xc5\xa5\x84\x65\x17\x74\x54\x54\xcf\x95\x12\x3e\x5f\x7b\x2f\xa9\xc6\x5e\xf2\x6f\x99\xa9\xb7\xb8\x64\x21\x5b\x2e\x61\xd0\x73\x44\x67\xe7\x78\x49\x9c\xf1\xf8\xa9\x49\xc0\x99\x09\x38\xf8\xd9\x7b\xe7\x27\x56\x33\xe1\xf2\x87\x32\xa3\xec\x63\x67\xfe\xeb\xcc\xd9\xd4\x44\xed\x52\x37\x79\x42\x99\x70\xd0\x1e\xcd\x9c\x97\x45\xe0\x08\xf4\x98\x52\x69\x90\x42\xd0\x6c\xf5\xda\x18\x64\x9a\x41\xe8\x89\xb4\x14\xfc\x8b\x6d\x77\x17\x1d\x54\x6f\x59\x4a\x90\x0e\x88\xcb\x10\xdc\x20\x4d\xc8\x5b\xba\xe0\x62\xe3\xfd\xcd\x84\x55\x7b\xee\x69\x3a\x07\x5d\x26\x74\x75\x0f\xc5\x96\xab\x87\x13\x66\xa8\xfd\x96\xca\xb1\x89\x27\x7c\xcb\x78\xd9\x65\xe7\xf0\x92\x70\xe3\xe0\x96\xcf\xe7\x65\x7a\x09\x12\x7f\x8c\xfe\x08\xf7\xb6\x30\xf0\x76\x49\xd7\xb6\x1a\x9f\x3c\xfc\xf6\x1d\xa8\x3b\x60\x48\xb0\x6d\x0c\xdf\x50\x7c\xf2\x32\xc1\x3d\xca\xb6\xfa\xd4\xde\x04\xc2\xac\xe2\x0b\x4f\x8b\xbe\x47\x33\x60\xb4\xc2\xae\x25\xe9\x98\x10\x2e\x1a\xcf\x12\xfa\xf2\xd1\x91\x10\xa8\xcd\x3f\xc6\xcb\xa3\x43\xe8\xe1\xd5\xf1\x09\x11\x38\xfa\x5f\x18\x0d\xd5\x4f\xc8\x4a\x77\x22\xdc\x8a\x5c\xd4\xe1\x3b\xdb\x89\x50\x59\x2e\x25\xa6\xb5\xf3\x28\x41\xf7\xa2\xe8\x3d\xcf\x32\x67\xc2\x8e\x56\x0e\xe9\x8a\xcb\x9c\x04\xa3\xee\xf9\xf3\x25\xea\x36\x13\x66\x6d\xfc\x1e\x3b\x89\xd1\x22\x44\x0f\xdd\x58\xcb\x6f\x2a\x4c\x98\xd2\x11\x78\x48\xf2\xf1\x02\x42\x88\xb8\x64\x64\xc7\x52\x51\xc2\x23\x8f\xc0\xe8\x96\x47\xf6\x84\xe0\x94\xf4\x59\xb5\xbc\x52\x04\xe9\xa7\x63\xe7\xc4\x8e\x89\x12\x7c\x84\x4c\x9b\xb5\xd6\x6d\x24\xf4\x2f\xf9\xba\xf0\x46\xe1\x1a\x02\xcf\xba\x58\xa9\xca\xa2\x2d\x04\x8d\xc5\x46\x62\x8e\xeb\x1c\x08\x3b\xb8\x75\xdf\x1e\x18\xdb\xc5\xe0\xb8\x82\x94\xd5\xe7\x5e\x6d\xc2\x48\xd7\xa2\x37\xda\xe9\xbf\x59\x98\xd2\xf8\x69\x8c\xc5\x77\x89\x70\xf8\xe5\x14\x79\x97\x84\xe9\x04\x8f\xf6\x07\x01\xeb\x37\x8f\xb1\xfe\xe1\x96\xc9\x66\xf3\xf3\x09\xef\x58\x38\x7a\xe6\x7d\x6e\x51\x91\x0a\x81\x6f\xb2\xcc\xaa\x3b\x91\x7b\x26\xc0\x91\x52\x8c\x16\xd7\xce\x27\x38\x44\x5e\xbb\x1a\x3a\x68\x4e\x30\xeb\xde\xb9\x61\xa5\x2c\x17\xe1\x4e\xc6\x83\x25\xe1\xe6\x7d\x2c\xec\xa8\xe8\x33\x19\xad\xbf\xc5\xe0\xd5\xca\xb0\xfe\x33\xe3\xc5\xee\xfd\xed\x9a\x8f\xa9\xfa\x84\xf5\x0a\x89\x16\x7a\xc7\x16\x13\xc4\x39\xe6\x14\x5f\x6d\xb8\x33\x01\x3b\xdf\x8c\x84\x7b\xb8\x9f\x20\x08\x86\xf8\x5e\x65\xbf\x63\x4e\x60\xbb\xd6\xe8\x59\x9d\xe8\xc3\x20\x3e\xaf\xfd\x43\xc7\xf0\xf8\x9f\xfd\xa7\xf8\xf4\xf0\x67\xf3\x09\xf6\x21\x93\x2f\x56\x1c\x30\x23\x28\xd9\x8d\x7c\x1c\x98\x25\x45\x98\x73\xe2\xa4\xf1\x3d\x61\x6f\x42\x54\xcf\xd1\xc6\xbb\x25\xb9\x0c\x12\x58\x3e\x9b\xfe\x96\xf3\xe9\xbf\x0a\x04\x0b\xb8\x09\x4e\xe5\x56\x4c\xb1\xa7\x3f\x83\x43\x49\x2a\xca\x06\x93\x0a\x08\x4f\x5f\xf2\x46\x26\x14\xbf\x20\xc4\x39\xb7\xac\x3c\x3f\x73\x80\xc1\xb3\x43\xb7\x65\x37\x7d\xbf\x43\xe8\x15\x32\xe0\xbf\x74\x82\x8b\x70\x35\x56\x7b\x38\xc1\xcd\x94\xc1\xb7\xb3\xcf\x6f\xbe\xef\xf7\x22\xac\x19\xdd\xd9\x29\x18\x39\x85\x70\xc1\xf6\xd6\x2b\xfd\xa2\xdf\x2c\x44\x72\xf1\x4a\x3c\x4c\x8e\x26\x88\x7f\x7c\xf3\xcb\x46\xc4\x8b\x90\xea\xc6\xeb\xa7\x16\x7c\x9d\xb0\x48\xa7\x4c\xe0\x2f\xde\x84\x7d\x4f\xfd\x71\xff\x0a\x21\xfa\xe7\xe7\x61\x21\x17\x71\xc2\x43\xfd\xb5\x22\x8f\x55\xe7\x12\xee\x19\x28\x94\xec\x6c\xe4\x27\x2c\x1a\x6c\xbe\xb1\x38\xc1\x9e\xf0\xf9\x54\xec\x25\xf1\xf1\xe7\x48\xbe\xb8\xd7\x64\xef\xcf\x09\x0c\x36\x4b\x3e\x2e\xe7\x9f\x5a\xc6\xe0\xc5\xb6\xd1\x7d\x9f\xd5\x65\x08\xe7\x97\xee\xce\x1d\x54\x36\x25\xc8\x66\x3c\xb2\x69\x8f\x2b\x21\x6c\x54\xf6\x8f\x74\x4e\xcc\x21\x7c\x68\x1c\x1a\xb8\x14\x97\x43\x08\x0b\xeb\x3d\x90\x97\x6a\x41\x48\x52\xff\x13\x7c\xc9\xea\x16\xe1\xc3\x0e\xe1\xaf\xf3\x73\xfd\x26\x4c\xdf\xdf\xf1\x7c\x7a\x19\x30\x9f\xf0\xab\xa0\xec\xb5\x7e\x46\x20\x41\x32\x78\x76\xd0\xfd\xee\x14\x42\x25\x49\xf9\x9c\xdf\x68\x42\xe8\x73\xdd\xfc\xe7\xf7\x16\xed\x09\xe5\xff\xff\xaf\x57\x5e\xc2\xd3\xe7\x67\x0e\xf4\xcd\xce\x20\x70\xcd\x7a\xa3\x3b\x45\xb9\xa3\x08\xcc\x0b\x27\xcd\xec\x49\x01\x0c\xa2\x45\x05\x82\x6f\x6e\xf2\xa7\xff\x05\xb7\xb4\xa7\x61\x22\x9a\x65\x04\x23\xef\x88\xe3\xd7\x23\x4a\x09\x0f\x0e\x5e\x7d\x64\x37\x54\x48\x98\x91\x23\xb2\xe3\xa8\x48\x13\x83\xe7\xe7\x8e\x48\xfc\x3d\xd3\x7e\xe9\xd6\x43\xff\xd0\x12\xc2\x34\xb3\xa7\x93\x16\xd3\xf8\xaf\x9a\x59\xa3\xb9\x5b\xe1\x34\xc1\x63\x58\x44\xb9\x22\x34\x94\xa0\x77\xda\x49\x3f\x53\xec\xf8\x84\x29\xa8\x97\xb9\x34\x7a\x65\x2b\x61\x83\xf8\x9a\x8e\x8c\x1d\x97\x08\x87\x5a\x93\x07\x5e\xa6\x4d\x26\xd4\x55\x6f\x1b\xfe\x28\xac\x35\x01\x95\xcc\xcc\x95\x46\xd3\x57\x11\x64\x9f\xa6\xd9\x4b\x67\xa8\x11\x42\xf6\x80\xbb\xe6\xc6\x26\x42\xc9\x88\xad\xec\xce\xa5\xb3\x09\x47\x16\x86\x09\xad\xd4\x5f\x40\x08\xb5\xd1\x15\x56\x4b\x9d\x4f\xd0\x2d\xbd\x1e\xf6\x98\x3f\x91\xc1\x8a\xb9\xb1\x25\x3b\x57\x9d\x24\xb0\x3b\x4f\x0d\x4c\x79\xa6\x4f\x88\xdd\xb2\xa4\x30\x5a\xe6\x21\x83\xc7\x51\x9d\xe2\x8e\xfb\x2c\xe8\xe7\x86\x23\xa7\x54\x6d\x4a\x08\x71\x2e\x7a\xe6\x33\xde\xd6\x10\xd8\x54\x46\xed\xbb\x84\x1e\x12\x96\xf8\x0b\x2e\x64\x1b\x2f\xf9\xa2\xcd\xce\x4d\x17\x1f\x13\x74\x82\x85\xf2\x7b\xc6\xa7\x63\x09\xf3\x8d\x3e\x4b\xd6\x13\x5c\x38\x83\x8e\x8a\x96\x17\x11\x72\x56\x05\xc5\xf8\x06\x97\x10\xee\x9d\x2b\x8a\x4d\x3a\x72\x91\xc1\x1c\xd9\xa8\x83\x47\x6e\xdd\x67\xb0\x2a\x76\x4b\x71\x49\x70\x39\xe1\x56\x7d\xcb\x22\xed\x35\x8f\x08\x37\xd8\x1a\xba\xee\xd8\x17\x12\x5e\xe7\x57\xe4\x16\x48\x79\x13\xbe\x67\x46\x4d\x3f\xb4\x35\x9d\xd0\xa0\x17\x52\xe8\x3c\x59\x97\xf0\x6b\xd1\x4d\x1f\x0b\xa9\x87\x84\x15\x79\x02\x45\x66\xe3\xf8\xe0\xdc\x95\x7e\x92\xa3\x9e\xf9\x57\x3c\x2f\xea\x96\x9a\x8c\x83\xc3\x7f\x6e\x93\x58\xa4\x1d\xe1\x96\xf6\x02\x39\x89\xa3\xf6\x84\x92\xdf\x0a\xf1\x15\x4b\x6e\x31\xff\x8a\xe0\x3c\xf3\x94\x62\x89\x43\x13\xce\x8c\xa5\xfd\x29\xda\x7a\xd6\x91\xa0\xb6\x4d\x2b\xbe\xa5\xd0\x89\xe0\xe7\xb3\xfd\x90\xf6\x3c\x47\x02\xdf\xe7\x02\x15\xa7\x9b\x8e\x04\x9f\xd1\x6d\x9c\x85\x1e\xb9\x84\xbe\x26\x77\xc3\x55\x09\x15\x04\x7e\xe1\xa3\xdf\x37\xd5\xd7\x12\x12\xda\x95\xba\x4f\xcd\xbf\xcf\xa0\x62\xcd\xbd\x88\x3b\x02\x8d\x04\xb7\x55\x93\xd8\x85\xc6\xcf\xf0\x7c\xce\xbc\x9a\xad\x78\x8d\x41\xe5\x7b\xa3\x34\xff\x7d\x47\x09\xb7\x6f\x1e\x62\x1b\x7e\x13\x4c\x88\x2c\x94\x8a\xe6\xc9\x72\x25\xec\x78\xe3\xda\xf5\xa4\xef\x0c\x41\x46\xce\x24\xeb\x64\x7a\x30\xc1\x7d\x5f\xd6\xa8\xdf\x91\xa3\x04\xa1\xd8\xc3\xba\x37\x6e\x57\x13\x92\x17\xcd\xd3\x6b\xc9\xba\x33\x01\x0b\x83\x9f\x77\x34\x1c\x9e\x58\x2a\xd5\xc5\xb7\xd6\xbc\x8a\x23\xdc\xaf\x1f\xd1\x5e\x59\xf5\xb4\x08\x2d\xf9\x16\xf7\x06\x63\x3e\x15\x61\x01\x9f\x8a\xb2\xb4\xa9\x07\xfd\x07\x12\x9d\x74\x1a\x34\xdb\x8d\x09\xd3\xc6\xc4\x0e\xf7\xd9\x37\x14\xe1\xee\x14\x65\xf3\xbb\xc2\xba\x84\xea\x97\xb6\x2f\x6a\x53\xf2\x08\x0f\x67\xb6\xf1\x45\x45\x3e\x24\x34\xca\x68\xe4\x09\x70\x95\xb1\x40\xc3\x7d\x1e\xeb\x05\xa5\xe9\x7f\xa1\x35\x30\xbe\xb2\x89\x9d\x93\x70\x44\xa8\x59\x6d\xf2\x66\x65\x42\xf5\xc5\xc3\x66\x7b\x8d\xcc\x09\x75\x7b\x5c\xf2\x06\x0c\x9a\x09\x6f\xb9\xdc\xee\x1c\xf9\x56\x4a\xe8\xd6\x9e\x35\xed\x5c\x51\x2e\x83\xc0\x4b\xce\x71\xc7\x1f\x81\x70\x98\x14\xd6\x1f\xb7\xbd\x4f\x60\x15\x8d\xd5\x47\x0c\x3e\x67\x30\x87\x77\x99\xf6\xec\x90\x07\x0c\x8c\xa7\x3e\x28\x7b\xd5\x5d\x44\x58\xda\x7f\xc6\x33\x58\xe1\x2d\x41\xfd\xaa\xb6\xa3\xd5\xfa\x3e\x02\x67\x9b\x64\x8e\xea\x9f\x28\x82\xaf\x63\x8e\x69\xfd\xcb\xf7\x84\xe9\xdf\x5d\xa6\x67\x47\x30\x84\xf5\x75\xec\xaf\xc5\x1b\xf5\x09\x2d\xf3\x94\x76\x78\xc7\x7e\x65\xe1\x50\xdf\x87\xb1\xcf\x9e\x37\x19\x1c\x8f\x5d\xb0\x26\xa4\xf5\x32\x61\x7b\x58\xcd\x9f\xf9\xf7\x7b\x18\x94\x7c\x6e\xd9\x7e\xfe\x88\x32\x03\x15\x51\xb1\xc8\xb8\x4f\x2b\x08\xe7\x56\x7b\x2b\xeb\xcc\x8d\x60\x10\xf9\x8d\xab\xe8\xe0\xe6\x6c\xc2\xa7\xfc\x95\x41\x0d\xb7\xb2\x09\xa7\x63\xe5\xbb\xb6\x04\x3f\x23\x7c\x14\x5c\x91\x1c\x76\xa2\x86\x20\x6a\xf7\x40\xaf\x71\x7c\xfa\x5e\x75\x72\x49\x5c\x87\x27\xa1\xfc\xe8\x54\xf9\xf9\x22\xfb\x09\x35\x9b\xa3\xbc\x33\x26\xef\x23\x3c\x2f\x11\x89\x8c\xae\x3a\x42\x28\x3f\x9e\xc3\x8c\xf6\x9e\x67\xf0\xa1\x3f\x73\x86\xe7\x2b\x4f\x82\x68\xf1\x50\x9e\xd3\xac\x00\x02\xef\xfe\x77\x1b\x3d\x92\xee\x12\xee\x4c\x0e\xd5\x7f\xed\xec\x4f\x98\x6d\x27\xcf\x17\xbe\x6a\x11\x21\xa2\xe7\xe3\xeb\xb4\x39\x52\x84\x2f\x87\xce\xca\xad\x8f\xbc\x45\x60\x93\x7f\xc0\xd7\xa8\x9d\x49\x50\x5f\xdc\x18\x31\x35\xe2\x1e\xe1\xd5\xaf\xd9\xf6\xcf\xc6\xcb\xb7\x16\x2d\xbb\x69\x71\x81\x13\xf0\xd4\xd5\x5c\x3a\xba\xe4\x1c\xa1\xba\x52\x65\x53\x1c\xeb\x38\x21\x4b\xb4\x6a\x55\xa5\x58\xe8\x84\x33\x9e\x4b\x47\x23\x27\x55\xdd\xfe\x2f\x4c\xdd\x60\xf8\xf9\x2f\x14\x53\x56\x97\xfc\x45\xb1\xbd\x5a\xad\x79\x94\x0f\x83\x80\xcb\xe5\xf9\x32\x1c\x19\x45\x58\x28\xc6\xbb\xf2\xf2\x45\x3d\x82\x6d\xf0\xb9\x4d\xeb\x13\xee\x10\x84\xed\x44\xad\x5e\x84\xdd\x25\x7c\xe0\x70\xb6\x94\x9f\x5c\x47\xd0\xbf\x60\x37\x39\x9d\xf3\x13\x83\xf4\x11\x6d\xce\x1e\xff\x5a\xc2\x2c\x0d\xd1\x27\xae\x17\xe3\x09\x66\x5e\x8a\xfa\x07\xe5\xcf\x12\x82\x9d\x16\x45\xb2\x73\x45\x11\x14\x2f\x3b\x9d\x32\x51\x8c\x66\xb0\x23\xe6\xea\x81\xf2\xdf\xc1\x84\x40\xd7\x9c\x95\xbe\xec\x0d\x0c\x2c\x97\xdc\x3a\xe6\x9a\x94\xc5\xa0\x63\x6e\x63\x7a\x7d\x76\x2e\x83\x95\x4f\xdb\x94\x5e\x8b\x24\x10\x52\x2b\xb3\x75\xbe\x62\x2d\xe1\x59\xe8\xb2\x15\xa7\x1d\x8d\x26\x40\xf7\x41\xf8\xfd\x33\x62\xd2\x04\xef\x4d\x22\xd9\xe2\x3a\x71\x04\xe3\xba\x4d\x8d\x1f\xbd\x04\x09\x0d\x4b\xdb\x66\x1c\x59\xa4\x4d\x10\xb9\x3c\x64\x38\xa8\x28\x4a\x18\xaa\x7a\xb2\xfd\x1c\xb7\x3e\x61\xe3\x82\x6f\xf1\xdc\xa9\x2e\xff\x05\x1f\x6b\x99\xee\x54\x71\x43\x82\x25\xf3\x35\x3a\x6c\x93\x0c\xe1\xd8\xae\xba\x05\x15\x1a\x52\x84\x0b\x0d\x0e\x2d\xe7\xa7\xac\x23\xac\x0f\x1f\x7e\xa0\xf4\x56\x99\xe0\x53\xf3\xf4\x74\xc1\xa4\x78\x82\xff\x95\xd5\xc5\xfb\xeb\xd2\x09\x63\x0a\x26\x7d\x4f\xb7\x64\x13\x5e\xef\x74\x9b\xa5\x2d\xb3\x99\xe0\x60\xd4\x6c\xd6\x31\x62\x48\x58\x92\x9f\xc3\x13\x95\xc9\x4f\x38\x65\xc5\x21\xe8\xd9\xe1\x46\x18\x99\x6c\xf1\x24\x46\xaa\x84\x20\xd0\x6a\xf7\x4a\x23\xb1\x94\x70\x6c\xf3\xcd\xad\x27\x02\x73\x09\xbc\xc5\x2f\x22\x42\x85\xee\x33\xf8\x36\x75\xe5\xc5\xbf\xd3\x9c\x69\xa6\x36\xad\xcd\x21\x84\x07\x46\x8b\x6c\x4c\x33\x43\xc6\x5f\x4d\x34\x2b\x77\xf4\x04\x21\xd3\xc9\x79\x78\xd7\xaa\x30\x82\xf5\xa3\xfc\x8a\xe5\xbe\x27\x09\x5f\x3d\xa5\xd8\xcc\xcc\x4f\x13\x96\xf6\x1e\x79\xbe\x5d\xb0\x99\x30\xe3\x85\xc1\xa1\x8c\xb4\x22\xc2\x33\x2b\xab\xe2\xc5\x71\xd5\x04\x2c\xe9\xe8\xf1\x8c\xad\x26\xfc\x3a\xbe\xe2\x5e\x4e\xfb\x20\x61\xf7\xec\xa9\x67\xbe\x39\x16\x11\xd8\x3f\x4a\xba\x7b\x8f\x4f\x92\x62\xa3\xd5\x06\xe9\xd5\x04\x9f\x7b\x3f\x05\xe3\x92\x6e\x11\x4c\x66\x67\x6a\x86\x9b\x97\x11\xfa\xd2\x3e\xc4\xe5\xa6\x35\x12\x8e\x18\x3b\x18\x57\xd7\xde\x25\x70\xb8\xf6\x70\xfc\x3d\xf3\x7f\x78\x51\xc2\x66\xa7\x71\x70\x3a\x21\xfb\xc5\x8a\x88\xa3\xab\xdd\x09\x2b\x6e\xa9\xcc\x6a\x95\xdc\x48\xf8\x63\xdd\x66\xb5\xfd\xb8\x2e\xa1\xe8\x95\xe2\x63\x26\x77\xdd\xff\xc4\x83\x3b\x06\xe7\x77\x76\x8c\xb0\xe0\x1a\xfe\xee\x40\xd6\x89\x58\x82\x9a\xf2\xdc\x72\xfe\xf6\x62\x42\x7d\xa9\xf8\x5a\x76\x76\x4b\xc2\xd2\x97\x43\x6c\x4e\xa6\x8f\x19\xac\x4d\x5a\x1d\xd4\x76\xa7\x88\xb0\x83\x6f\xd4\xe4\x2f\x92\xd4\xba\x7b\x0f\x9d\x8a\x23\x48\x57\x2e\x56\x59\xce\x7f\x91\x20\xce\xb6\x5b\xbb\xbc\xcb\x8d\x30\x4d\x35\xd6\x3d\x22\x73\x17\xa1\xff\x8b\xef\x83\x4b\x9e\xe9\x84\x55\xf6\x5a\x21\x7f\xa1\xfb\xa6\xe3\xf2\x7a\x9b\x89\x25\x4e\x20\xcb\xe1\x14\xd9\xd2\xcf\x19\x82\x9c\x9e\x9e\xc5\xff\xc2\x7f\xa0\x44\xa5\x7c\xd3\xfd\x85\x4b\x08\xdf\xb9\x36\x0e\xb5\x7f\x29\x67\xd0\xa0\xef\x1c\x3f\xfd\xd2\x4c\x82\x4f\xe8\x94\x58\xbf\x81\x04\xc2\x32\xb7\xd7\x45\x27\xc3\x5d\x09\xaa\x29\x9b\xb5\xc2\x86\x76\x11\xd6\x2f\x4a\x6d\xef\xcc\x7c\x40\x28\x95\x99\xbc\xe1\xf5\x38\xb8\xb5\xdc\x0f\xfe\x28\x7f\xc0\xa0\xf7\xee\x9c\xd3\xbd\xb7\x1f\x10\xea\x76\x8a\x1a\xff\x3d\xc3\xa6\xe8\x68\xb9\x70\x85\x33\x81\x9b\xac\x46\x6b\xe5\x77\x13\x36\x25\x2b\xae\xff\x5b\xe0\xc2\xbd\xaa\x47\xc3\x69\x42\x79\x97\x68\x54\x7b\xe0\x97\x31\xc1\x5b\x79\x24\x8d\x97\xcd\x90\xa0\x7d\x61\x49\xc4\x59\xe7\x7c\x82\xa0\x43\xc8\x32\x6f\x77\x43\xc2\x5c\xf9\xba\xe0\xbe\x47\x92\x84\xd3\x97\x5a\x37\x7f\x34\xf7\x20\x14\x9d\xcd\x9d\xf1\xe7\xe4\x34\x42\x37\x9b\xdf\xa7\x49\xfc\x26\x84\x4d\x07\xdf\xbb\x96\x1a\x64\x33\x30\xd6\x7c\xac\x3b\x7c\xd4\x99\x70\xe1\x83\xf5\xec\xa5\x8b\xfc\x09\xa5\x09\x4e\xd9\x8d\x22\x16\x04\x85\x73\xa7\xef\xb9\x6f\x35\x21\x68\xae\x5a\xe3\x59\x14\xb9\x9a\x70\x4e\x77\xeb\xd1\xbb\x4a\x59\x04\xc9\x8b\xb3\x6d\x2d\x84\xd8\x08\x67\x3d\x2d\x73\x3b\xf9\x6e\x13\xa4\xf3\x76\x3d\x2f\xea\x4c\x62\x50\x21\x74\x79\x67\xcd\xdb\x5a\xc2\x55\x81\xd2\x0d\xbd\x8f\x1b\x19\xe8\x59\xb6\x2e\x9f\xe2\x97\x4b\x88\x94\xf2\xdf\x55\x2f\x7e\x98\x20\x63\xa0\x33\x3c\xe9\x49\x10\xc1\x44\x3a\xc8\x74\x4d\x94\x36\xa1\x4b\xc1\xdf\xf2\x4b\x0b\x1b\xa1\xcf\x25\x64\xe9\xce\x8d\x01\x84\x0d\xf6\x37\xcb\xdc\x56\xa9\x12\xbc\xaa\xcc\x3f\x1c\xe8\x88\x27\x6c\x35\x89\xe2\xef\xfe\x98\x4d\x30\x59\x98\xfd\x66\xe3\xca\xbb\x04\xc9\x6e\x4b\x25\x03\xaf\x17\x84\x85\x66\xd2\x7c\x33\x82\xe3\x08\x6c\x87\x7f\xce\x2c\x54\xdd\x4a\x18\x78\x26\x7d\xd0\x43\x91\x83\xb0\x97\x73\xb9\xd6\x3c\x93\x27\x45\x98\x2c\x5a\xef\xce\x34\xde\x26\xcc\xb5\x3e\xbf\x5b\x56\x23\x9e\x41\x57\x36\x4f\x6a\xe9\x1e\x2f\xc2\x2d\xf6\xb5\x8a\xf7\x3e\x33\x0c\xee\x78\x7d\xbf\x7f\xd1\xf5\x00\xfd\x9b\x84\x65\xd5\x2c\xd6\xcc\xb9\x42\x50\xbe\xb9\xf7\xb4\xd7\xd4\x1a\x42\x43\x76\x9b\xfe\xef\xe7\x45\x0c\xea\x59\xbf\x67\xf4\x69\x37\x30\x50\xb4\x9a\x79\xb9\x4b\xe9\x0b\x83\x00\x97\x27\xce\xf7\x63\xce\x13\x38\xfb\x5d\xee\xdd\x8e\xba\x41\xb0\xfa\x31\x24\xd0\x39\x9b\x45\x18\x14\x1f\x10\x49\x44\x04\xe1\xf8\x56\xf3\xa7\xb1\xfa\x6f\x8b\x30\x79\x53\xa9\xf0\x51\xb1\x40\x82\x5e\xec\xcd\xc9\x09\x7c\xfa\x84\xca\x2a\x1a\xdb\x76\x7d\x2d\xa1\xee\x42\xc1\xe1\x66\x5f\x2b\x82\x69\x1f\xf7\xfa\xa8\xd7\xc3\x84\x39\x8d\x36\x9b\xc7\x1e\x0f\x12\x66\xad\x3e\xea\xc4\x7e\xff\x07\x61\x55\xec\x4b\xfe\x90\x67\x7e\x84\x73\x3f\x8e\xf8\xf1\x74\x4d\xdb\x8c\xef\x9b\x36\xf7\x7a\x31\x43\x84\x98\x22\xfd\x98\x52\xb7\x72\x06\x07\xf2\xa6\x6d\xd3\xbd\x7d\x84\x60\x31\xef\xfc\x6b\xa6\xa3\x8b\x10\xdf\xf9\x5a\xfc\x92\x51\x37\x41\xcc\x7d\xa4\xd6\xfe\x71\x17\x81\xad\xe6\x6a\xb6\x79\x43\x17\xc1\xc1\xa6\xe1\x23\x6b\x4d\x35\x81\xaf\x2a\xd3\x42\xa3\x2d\x97\x70\x71\xd1\xcb\x2f\x5b\xca\x4f\x10\x5c\xaf\x96\xff\xde\xf7\xc5\x8f\x30\xbb\x39\x93\x77\xb7\xa2\x2e\xa1\xc3\x88\xdd\xe7\xeb\x70\x26\xe1\x84\x75\x64\x37\xdf\xdc\x72\xc2\x20\xe7\xbd\xdf\x12\x23\xcf\x09\x0a\x73\xaf\xcd\xde\xfc\x31\x93\x60\xf0\xa9\x60\xfe\x92\xf1\x89\x0c\x45\x07\x97\x58\x59\x11\x7e\xfd\x08\xeb\x6a\xba\xe4\x48\xf8\xd2\xbb\xa2\x6e\xaf\x94\x1c\x03\xc5\xb5\x8b\x4b\x17\x1a\xf9\x10\xde\x2d\x08\xec\x5b\x7e\x24\x86\x30\xd2\x17\xa7\xee\x34\xec\x46\x68\x8d\x1a\xb1\xbc\x9b\xc3\x10\xa6\xc8\x7d\xf7\xf3\x14\xde\x4b\x50\x38\x3f\xbc\x34\x52\xf8\x21\x61\xed\xe5\xef\xc1\xe5\xb9\x39\x04\x3e\xab\xce\x74\xd6\xe7\xfb\x04\x11\x89\x50\xf1\xc1\xea\xad\x04\x99\xf8\x99\x12\xdf\x0c\x85\x09\x79\x6b\x04\x6c\x07\x3e\xb9\x11\xa8\x69\x2c\xf9\x1c\x77\x24\x21\xe8\xd3\x66\x3d\xce\x03\xb7\x09\x7b\xef\x1e\xec\xf4\xd1\x2c\x21\xa4\x3d\x19\xe2\x3c\x31\x74\x93\xb0\xe0\x27\xdf\x26\xa5\xfb\x0e\x84\x13\xa3\xdb\x07\x46\x3e\x78\x13\x18\xa7\x0c\xcd\x69\x93\x36\x12\x56\xf7\xae\xba\xe0\xa3\x7e\x8a\x30\x1c\x3d\xe5\xf4\x46\x79\x0b\x42\xfd\xfa\xf8\xd7\x07\x5b\x3a\x08\xfb\xde\xd9\xf2\xfb\x9f\x6d\x21\x04\x4c\x6f\xd5\x3b\x7c\xb9\x85\x10\xb8\x2c\x4c\xee\xd8\x78\x09\x8b\x5f\x1a\xd8\x98\x17\x47\x18\x72\x3d\x1d\xf8\x38\x2a\x99\x30\x5d\x36\xc4\x66\x6b\xcc\x0d\x82\xf3\xb7\xa7\x09\x5f\xee\x24\x10\xa6\xfb\xdd\xd6\x65\x8f\x73\x21\xa8\x3a\x7a\xf4\xcd\xc9\x49\x25\x90\xcd\xc0\xa6\x73\xa5\xb1\x0c\xe2\xbe\xda\xef\xf6\x3a\xfc\x9c\x90\xa0\x6d\xba\xab\x70\xca\x17\x42\xe7\x19\x73\x87\x75\x68\x21\x34\x56\x78\x5b\xf5\x16\x9d\x21\xa8\xae\x72\x5b\x1f\xe3\xf7\x90\x10\x7e\x45\xe3\xd6\xa6\xa0\x83\x04\x07\x2e\x9b\xe1\xb7\x7b\xf6\x13\x38\xd2\xd4\xfa\x6a\xeb\x6f\x13\xb8\x42\x1f\xd8\x6e\xf3\x73\x20\xbc\x9b\x67\x13\x79\x34\x74\x37\x21\xdc\xb1\xf6\x69\xe9\xcd\xfc\xf1\xa7\xb2\x4e\x60\xc4\xde\x5a\x42\x35\xbb\xf0\x1f\x8b\xf1\x57\xae\xc8\xad\x01\x91\xd0\x8f\xaf\x09\x76\x5e\xd3\xe5\xef\x25\xbc\x23\x08\xce\xf9\xc8\xd1\xb8\xad\x95\x60\xed\x75\xe8\xa7\x88\xb3\x09\xc1\xfa\x5d\xf6\x05\x8e\x14\x23\x02\xb3\x2d\xef\x56\xbb\x63\x1a\xc1\x60\x9f\xde\xfc\x8d\xf9\x16\x04\x96\xd2\x25\xbe\x14\x59\x07\x02\x57\xa4\x33\xbf\xbf\xfc\x4a\xc2\x8b\xf4\x6f\x9a\xe2\x8d\x45\x84\xc5\x4e\xb2\x95\x5f\xfa\x2a\x18\x24\xed\x6a\x6f\x74\xe9\x78\x4a\x48\xff\xc9\xe6\x20\xbc\xa6\x99\x20\xb2\xd0\x21\x2e\xf5\x45\x06\xc1\xe4\x82\xd0\xd8\xbc\xeb\xbe\x84\xc0\xbd\xca\x6b\x2a\xca\xea\x08\xfb\x88\x67\xde\xa3\x71\xbc\x11\x28\xc9\xfc\x5b\x6a\x4f\xea\x95\x84\x7e\x7f\x4c\xd8\x3d\xbc\x23\xbe\x56\xe5\x3e\xa1\x78\xc1\x96\xe0\xbd\xc9\x7d\x84\x9a\xfb\x1e\x46\x9d\xda\x76\x04\x0e\x8d\x1d\xc6\x41\x9c\x4e\x04\x8d\x6e\x4f\xf9\xcb\x3d\xe3\xb7\x9e\xe8\xab\x35\xaa\xcf\x4a\x08\x6c\xfc\xef\x7e\x2c\xde\xc5\x46\x98\xce\x84\x09\xc7\x72\xac\x23\x70\xac\xab\xf4\xe4\x7c\x9c\xc0\xe0\x08\xbb\x4b\x79\xea\x7b\x63\x82\x41\x1f\x77\xcd\x3a\x0c\xb1\xf0\x49\x2f\xf1\x5c\xe9\x58\x31\x03\xa1\xdc\xd9\xd7\x5b\xd7\xa9\x10\x76\xda\x8d\x5a\x7d\xf4\x0e\x21\xd8\x5a\xe5\x0b\x6c\x65\xbf\x41\x58\xf7\xb1\x57\xff\xff\x85\x51\xf0\xbe\x81\xe9\x9f\xc3\x08\x79\x5b\x94\x42\x25\x44\x7b\x08\xbb\xf6\xf8\x9c\xf1\x89\x2e\x20\x68\xd8\xce\xea\xda\x3c\xef\x36\x21\x6c\xc3\xf1\xdd\x6c\xd7\x13\x09\x0f\xdb\xb5\x16\xfc\x2d\xad\x43\x3b\x6f\xac\x95\x3d\x49\xc8\x5a\x31\x38\x7f\x34\xd0\x9a\x70\x6c\xda\xbc\x81\x83\xda\x62\x04\x87\x3a\xbe\x61\x4f\x95\x1f\x2c\xf8\x5e\xfb\xdc\xf4\x3a\xd1\x9b\xfe\xc1\xeb\xd6\xc8\x93\xa6\xed\xcf\x58\x70\xd9\x78\xc0\xa7\x81\xed\x36\xc1\x23\xeb\x1e\x5b\x31\x5f\x16\x61\xb1\xda\x81\x3b\xa1\x17\x1e\x14\x61\x75\x98\x46\xec\xcc\xd3\x2b\x08\x8b\xd9\x22\x26\xb3\x9b\xa9\x11\x3a\x8d\x4e\xf1\xbc\x0d\x71\x27\xf8\xd5\x0b\x4d\x51\xd5\x33\x24\x54\x1c\xd0\x8e\xe5\xf9\x6a\x49\x90\x8b\xf3\x33\x1f\x54\x73\x24\xf8\x6f\x13\x70\x71\x7e\x2a\x41\x10\x6e\x58\xd9\x51\x59\xbd\x85\x10\x2f\xff\x74\x49\xfe\xbe\x85\x84\x59\xfb\xe5\x06\x83\xa2\x87\x58\x68\xe5\xcf\x30\xcc\x51\x3a\x42\x78\x74\x68\x52\x78\x9c\xdc\x16\x82\x2c\x67\xe6\xd1\xa9\x42\x1c\x84\x93\xa1\x0e\xac\x77\x2d\x7a\x84\x5a\xfd\xfe\xf9\xd2\xd6\xf9\x04\xf5\x5e\x21\xdd\xcb\x97\xc2\x08\xfd\xe2\xbb\xc4\x0f\x07\x34\x13\x52\x5e\x71\x25\x29\xf7\x34\x10\x04\x7c\xd3\xde\xed\xe4\xab\x23\x78\x08\x6c\xd5\xad\x96\x95\x24\x2c\x2c\x99\xf4\xea\x3b\xfb\x7c\x82\xea\xec\x96\xa5\x77\x7d\xc5\x08\x17\x92\x3f\x7b\xe4\x8a\xaf\x22\xac\x7b\xdb\xc4\x35\xb9\x20\x89\x10\x1f\xb0\xc8\x64\x79\x12\x3f\xc1\xb0\xcb\xc2\x6d\x92\x92\x30\x61\xcc\x25\x40\xed\x77\x74\x2f\xc1\xed\xba\x7e\xca\xf5\xbc\x2e\x82\xde\x9c\xbe\x9e\xdd\x05\xc2\x84\xa6\x99\x5c\xf5\xd1\xe9\x1b\x09\x89\xd9\x8b\x0f\x46\xbe\x0d\x20\x68\x6d\x3f\xf1\xec\x7b\xdd\x17\x82\x5e\x96\xdc\xc6\xf8\x75\x03\x84\xc9\xba\x99\x51\x92\x6b\x06\x08\x9b\xb4\x4a\x95\xc3\x79\xfa\x09\xfa\xe1\x7b\xf8\x43\xc6\xa7\xc6\xb4\xa0\xeb\xe6\x47\x1e\x11\xee\x6f\xf5\xf9\xde\xbe\x24\x97\x70\x60\xe4\x44\xe1\xed\xdf\x8f\x08\x8e\x46\xe1\xe2\xf1\xcf\xca\x08\xf6\xbb\x79\xb2\xfd\x8b\x6f\x11\xd6\xac\x3f\xb7\x37\xda\xd3\x84\xe0\xbb\xc3\xe7\x14\x97\xfd\x6d\x42\xc0\xcb\x0b\x57\x3f\x8f\x84\x30\xb8\x97\x5e\xdc\xf2\x6e\x8b\x2d\x61\xba\x1b\x77\x01\xd7\x8a\xed\xff\x13\x47\x3e\x1f\x3c\x31\x74\xa1\x85\x85\x33\x75\x11\x61\x06\x46\xbc\x84\xfd\x51\xef\x6f\xed\x5a\xfc\x80\x10\xd5\xff\xdc\xf2\xbd\xf9\x30\x0b\xaf\x1c\xa7\x7b\xcd\xad\x7e\xcf\xc2\x95\xed\x7e\xa7\xac\xaf\x58\xd2\x3f\x84\x7a\x40\x8e\x77\xd2\xcf\x09\xd3\x86\xb8\xf4\x3f\x02\x7e\x8b\x08\xaf\xa5\x8b\xba\xde\x94\xde\x66\xe0\xf0\x3c\x7d\xcb\xcc\x77\x62\x04\x1f\xc5\x6b\x4f\x7c\xad\xd7\x13\xfc\x43\x1d\x34\xbb\xcf\xff\x7f\x7c\xd7\x77\x38\xd6\xff\xff\xff\xff\x92\x32\x13\x42\x29\x95\x59\x68\xd8\x44\x75\xde\xcd\x14\xb2\x4a\x25\x32\x2a\xca\x2c\x99\x49\x64\x65\x24\x85\xec\xc8\x48\x59\x09\x51\x89\x9c\x64\x44\x11\xda\x69\x28\x5a\x8a\xa4\x92\x9b\x06\xbf\x43\x7f\xbc\xf3\x3b\xbe\xaf\xe3\xf3\x97\xcb\x71\xbd\x3f\xfe\x7a\x3a\xcf\xe7\x79\x7f\x88\x10\xaa\xb8\x74\x77\x32\xac\x2c\x09\xa3\xe1\x0f\x1e\x64\x0d\x6c\x22\x38\x71\xd0\x9e\xf5\xce\x93\xff\x82\x07\xad\x32\xda\x25\x6f\x19\xe8\xd6\x4b\x53\x39\x6d\xf2\x85\x01\x65\xd6\xad\x27\x8d\xee\x1e\x25\x58\x3a\xbd\x93\x7e\xd9\x17\x4c\xe0\xb8\x91\x7d\x3f\x93\xb7\x81\xc0\x57\xeb\xdd\xb6\x7b\xab\x35\x81\x3f\xd5\x5f\x7b\x9e\x44\x03\xa1\x62\x3e\xe7\xcf\xa4\xcc\x55\x84\xc7\xaa\xb9\x86\x45\x9c\x39\x4c\xe8\xbb\x1b\x6f\x4a\xef\x29\x23\x64\x18\x78\x1e\x3d\x7d\x58\x94\xd0\xfe\x45\x62\xe1\xef\xc3\xca\x84\x95\xbf\xc4\x0c\x44\xf4\xed\x08\x83\x1e\xe5\x3f\x8b\x67\xba\x12\x38\x58\x35\x44\xd2\xc5\xf6\x12\xcc\x07\xd5\x82\xc2\x59\x0d\x08\x7e\x9c\x89\x96\xab\x97\x39\x12\xa4\x79\xaa\x39\x5d\x5f\x79\x10\x9e\x2c\xb8\xba\x30\x4b\x33\x8b\x89\x45\x06\x4e\xba\x91\xe9\x66\x84\x7d\x29\xfe\xaa\x0a\x61\xee\x84\xe9\xc7\xac\x6a\xc9\x6c\x37\x61\xdb\xc5\x13\x2f\x83\x0b\x2d\x08\x76\xcd\x1a\xf2\xc1\xaf\x8c\x08\xcb\x3e\x74\xaa\x5b\xac\xe5\x27\x2c\xb5\x4e\x08\x6f\xe7\xb3\x27\xe4\xa8\x19\x44\x6f\xc1\x01\xc2\x2d\x56\xbd\xdb\xa7\x4a\xf2\x98\x30\xbc\x58\x96\xaf\x25\x64\x4c\x98\x50\xf8\xe1\x74\xf7\xba\x1e\x41\xf5\xf4\x95\xd4\x3e\x67\x49\xc2\xf2\xde\xc4\x07\xd5\xb7\x95\x08\x2e\xcc\xca\x85\xb1\x2e\xf2\x84\x15\x4a\x5b\x8b\x4c\x02\xb7\x13\xfc\xbe\xb6\x94\x73\x1b\x6b\x13\x6e\xad\xd9\x29\xca\x23\x73\x8a\x89\x55\x47\xfe\x38\x14\x6e\xfd\xc2\x80\xf5\x70\xe9\x52\xeb\x6c\x11\x82\xa9\x49\xd3\x22\xa9\x83\x32\x84\x94\xe2\x97\x0a\x05\x75\x77\x08\xca\x1a\x69\x7c\x9e\x33\x46\x19\xf0\xfb\xa3\xda\xbe\xe9\xb8\x22\x81\xd3\xc1\xcf\xf2\xbe\x40\x06\xc1\x86\xb3\xe6\x5c\x65\xf6\x3a\xc2\x90\x76\x74\xe4\xb7\xcc\x65\x84\xef\x67\x56\xde\x1f\x47\x15\x21\xf2\x7a\x88\xdc\xc4\x24\xf8\x72\x8a\x0f\x4e\x1b\xab\x22\x1c\x2b\xdc\x11\x7f\x74\xf2\x2a\x63\x25\xd4\xdc\x17\x17\x1b\x45\x68\xef\x35\x76\x3e\xc5\xb5\x82\xc0\x10\xa8\x4f\x88\x09\x94\x20\x38\xb0\xd6\xfb\xea\xd5\xbd\x67\xe0\xe0\x49\x47\xdf\x25\x1d\xe3\x0c\x0c\x14\x9d\x8d\x13\xdf\x59\x45\xf0\xea\x67\x17\x5c\x27\x70\xfa\xbf\x90\xf6\x7b\xf5\x23\xe3\x93\xba\x53\xf0\xcc\x26\x51\xf9\xd2\x55\xfe\xff\x1a\x9d\x88\xfe\x21\xa4\xc8\xca\x4f\xa8\xd0\xbb\xb1\x70\xc9\x70\x02\xa1\x5e\x75\x54\xf0\xe8\x76\x53\x82\xe9\xc9\xf2\x86\xe0\x17\xb2\x84\xad\x8f\xa6\x47\xce\x78\xea\x46\x90\xe6\x7c\x65\x3c\x74\xec\x31\x21\x97\x36\xb0\x1f\x2a\x19\x67\xa0\xe6\xb2\xe6\x82\xf2\x5d\x4b\x09\x02\xac\xcf\x2f\xf3\x49\x9b\x10\xd4\x77\x68\x0a\x26\x8d\x89\x10\xda\x7e\xfe\x3e\xdd\xcf\xbe\x86\x20\xbe\xad\x41\xd8\xaa\x6a\x94\x01\xfe\x9f\xe1\x56\x19\xe1\x6b\x08\xb9\x31\xe9\x8d\xd8\x67\x46\xd0\xed\x2e\x8d\x7c\x9c\xc3\x46\x38\xba\xf5\xd3\xee\xe5\x5d\x4b\x08\x55\x2e\x7e\x6c\xeb\x24\xdf\x33\x60\xca\x2c\x14\x5b\x9f\xac\x47\xff\xc0\xc2\x39\x7b\x81\x65\x6d\x27\x03\xbf\x42\xb8\x52\xc6\xb7\x6b\x10\xd6\x25\x46\xbd\xbd\x9e\x2e\x4a\xc8\x6c\x97\x39\x16\xef\xa9\x41\xe0\x97\xad\xff\xd9\x1f\x64\x46\x88\xa9\x37\x5d\xd3\xb7\xf7\x06\x61\xf5\xa2\x9b\xbf\x94\x6d\xcd\x09\x8a\xfe\x3c\x12\x7f\x94\x64\x09\xb7\x0c\x3f\x9c\xb3\x74\x36\x22\xcc\xdd\xb6\x79\xc6\x53\x79\x3b\x82\xa5\xc2\x1a\xb1\x85\x65\x5e\x84\x5e\x36\x3b\xd3\x48\x96\x2c\x42\xf9\x2e\x8b\xa1\x19\x33\x44\x09\x5d\xb1\x0d\x7b\x8d\xda\x7e\x33\xd0\xed\x92\x99\xb7\x22\xa5\x91\x10\x19\xbc\x9b\xe5\xe3\xd9\x68\xc2\xd2\xad\x99\xea\xef\x45\x4c\x09\x32\x1a\xba\x2b\xe7\x04\x58\x10\x8c\x9c\x9e\x4b\xd7\x9b\xe8\x13\xcc\x4e\x5a\xda\xd8\xe9\xcb\x12\xb2\xad\xf2\x5e\x1f\xed\x9c\x4d\x90\xe8\x73\x0a\xe6\xc9\x9c\x47\xe0\x8d\xf9\xe6\x1d\x7b\xbf\x9f\x01\xbe\x6f\x4a\x8b\x97\xf8\x08\x13\x7e\x2f\xc9\x9d\x33\xc4\xa2\x40\x38\xb9\xfc\x90\x8a\x4f\xb4\x36\xe1\x65\xe3\xed\x55\x1f\x6b\x79\x09\x52\xfa\x7a\x82\x4b\x76\xf9\x12\xfc\xd8\x44\x13\xf5\xd6\xaa\x11\xce\x2a\x6f\x9f\x3f\xc7\x75\x84\x81\xfb\x8b\xea\x0f\x45\xe6\xb3\x11\x84\x3c\xdd\x19\x42\x52\x7c\x84\x33\x32\x89\x26\x8d\x42\x8a\x84\x54\x13\xa9\xf9\xbf\xf9\x94\xa7\x40\xc1\xf1\x4f\x9b\xdb\x2b\x01\x42\x21\xf7\xb9\x4c\x5b\xde\x56\x82\xbf\x4e\x00\x7b\xb3\xcd\x0d\xc2\xf2\xba\xb9\x3f\x7a\xab\x37\x12\x12\x33\xe6\x5a\xc4\x96\x8e\x32\x50\xff\x6a\xf3\x45\xdd\x01\x2d\xc2\xa0\x2d\x5b\xc0\xf4\xde\x5e\xe6\xbf\xb2\x47\x7c\xbf\xc9\xa2\x7e\x0e\x82\xa0\xe9\xf9\x1c\x5b\xb6\xbd\x04\x77\x63\xcf\xc8\xbf\x9f\xba\xff\xa1\xfd\xc3\x53\x8b\x9d\x0a\x62\x04\x23\xf6\x33\xbf\xfd\xf7\x2c\x20\x6c\x13\xa9\x39\xdc\xb2\x4f\x97\xf0\xa5\xf1\xa1\x7b\x5c\xa3\x0c\xe1\xb8\x61\xc1\x4b\x4b\xe7\x13\x84\x86\x2b\x01\xf9\xca\xd6\x21\x04\xa5\x84\xe4\xdf\xf6\xb9\x07\x09\x43\xba\xd3\x8e\x5c\x0c\x54\x20\x94\x6f\xfa\xb0\xe5\x76\xc1\x31\x82\x56\xf1\xf9\x92\x43\xec\x11\x84\xe6\xfe\xfd\x47\x1c\xd6\x39\x10\xa2\x3e\x9b\x0e\x39\x1f\xde\x42\xd8\x11\x7b\x77\x6c\xfb\x0e\x0e\xc2\xec\x27\x0f\x4d\x83\x62\x6f\x30\xb1\x83\xf5\x45\xc9\x5e\xb9\x69\x84\x80\x02\xde\x19\x9b\xae\x8a\x13\xba\x7d\x86\xbe\x44\xf2\x2c\x22\xa4\xc5\x3e\xd8\x5e\xf1\xdd\x8b\x90\x1f\xab\xb7\x68\xc8\x60\x19\x21\x79\xcf\xf7\xeb\x82\x15\x1c\x84\x03\x8a\x1a\xcd\x8a\x51\xa7\x98\xd8\xeb\x78\xff\xe3\xda\xd7\xe6\x84\x7a\x9b\xf1\xd7\xb7\xe4\x17\x10\x54\x92\x36\x54\x8d\xe9\x15\x11\x26\x24\x3d\xdf\xff\xc5\xff\x8a\xff\x4b\xf1\xf1\x4f\xdf\x4e\x13\xfa\x37\x88\x28\xb9\x6a\x9c\x25\x0c\xdf\x19\xb0\xdb\xae\xc0\x24\xec\xb5\x59\xce\x4a\x11\x9e\x84\xae\x23\xfb\x89\x87\x3d\x93\xb0\x40\x61\x06\x6f\xb2\xa4\x1f\xe1\x31\xbd\x62\x24\x4e\x70\x11\xb4\xdc\x36\xa5\x9a\x24\xcf\x25\x38\x2f\xb5\x2e\x30\x89\xb5\x26\x08\x3f\x93\xb4\x3e\x27\x78\x83\xa0\xd2\xbe\xe4\xb3\xfc\x80\x07\xa1\xbb\x01\x5b\xce\xac\xc8\x26\xf4\x06\xc9\x0b\xff\x16\x5d\x4d\xd0\xff\xd0\xae\xc2\x10\xe0\x20\xb0\xfb\x1f\xf2\x2c\x53\x9c\x41\xe0\x93\x93\xe4\xd3\xdd\xc9\x4d\x98\xa8\xd2\xf3\xbb\xbf\xc3\x80\x30\xb1\x5b\xe7\x60\x10\x43\x82\xe0\xa3\xc3\xbb\x94\x65\x8d\x0c\xa1\xde\x64\xdb\xa6\x97\xcb\x59\x08\xd6\xbb\x8f\xb9\x7c\x2d\xfd\xc5\xc0\xee\xe7\x31\x3b\xbb\x23\x93\x99\x88\xbe\xf8\x59\xb7\xe3\x82\x03\x61\xdb\x9a\x65\xa7\x38\x64\x3f\x31\x70\xc5\x31\xe7\x34\xdb\xd2\xa5\x84\x32\xa5\x17\xcb\x0c\xad\xf5\x08\xcf\xd9\x57\xce\x5b\xfe\x59\x9e\x50\x25\xae\x72\x31\x29\xff\x41\x2d\x0c\xa7\x3d\x91\x0a\x0f\xcf\x24\xdc\x3b\xce\x3b\xd8\x9d\xf7\xa7\x16\x26\xec\xf3\x7f\x0b\xac\xe6\x26\xdc\x3d\x58\x33\x32\xdd\xb0\x95\x01\x8b\x1f\x47\x39\x57\x6e\xdf\x45\x60\xe9\x47\xb5\xef\xfc\x78\x02\xbd\xcc\xb5\x5f\x6e\xc4\x43\xe8\x3e\xd3\xb9\xf8\xf5\x04\x2f\x21\xc7\xbd\xff\xf0\xbe\x6f\x72\x84\xe2\xd5\x5c\xbf\x0e\x8f\xf8\x11\x6e\x3e\x6d\x3b\xa1\xd1\x62\x45\x18\x9c\xce\x4c\x3e\x59\xb1\x9d\x60\x76\x7d\xc1\x12\x05\x1d\x29\x42\x7d\xed\xb0\xba\x51\x99\x0e\x21\xe9\xa8\xc3\x8a\xe7\x0f\x54\x08\x3d\xb7\x36\x99\x3f\x7d\x78\x8c\xe0\xa5\x18\xab\xf4\xde\x87\x8d\x90\x67\x5d\xba\xd1\x57\xc3\x9e\x09\xde\x95\x06\x0d\x4a\x5b\x6a\x09\x6d\x4e\xfa\xe2\xd2\x46\xef\x08\xb2\x11\xfd\x33\xdb\x75\xde\x13\x2e\x17\x25\x0d\xae\xee\x7b\x4e\x68\xec\x6c\x3a\xae\xf8\x36\x97\x89\xed\x3f\x25\xa3\x7c\xaf\xbf\x22\x3c\xd6\xcb\xef\x64\x16\x26\x12\xae\x9e\xcb\x49\xfc\x78\xb9\x85\xb0\x66\x4b\xac\x6b\xd6\xca\xed\x84\xc8\x75\xee\xf3\xa2\x66\xae\x26\xb8\x0b\x47\xed\xf8\xa0\xb4\x8e\x20\xe1\x68\x6c\x5e\x61\xcc\x4f\xe8\xa5\x7b\xad\x39\x3b\x9f\xd6\xe2\x5a\x9b\x72\xd6\xd1\x63\xdf\x19\x78\x64\x35\xff\xca\x02\x1b\x1d\xfa\x07\xd7\xfa\x7d\x5f\xb7\xa8\x3b\xd5\xc2\xfe\xc3\xe9\x8b\xf9\x47\x9e\x13\xe4\xa2\xe3\xca\xb5\x4f\xbd\x25\x1c\x7e\xf6\x7d\x69\x26\xb7\x19\x21\xdb\xec\xe9\x07\xb7\x77\xbc\x04\xab\x2b\x3e\x96\x35\x3f\x7e\x32\xb0\xf6\x95\xe4\xd5\x23\xbb\x64\x09\xc6\x07\xf6\x2c\x1d\xfc\x2d\x4b\xd8\x53\x68\xd7\x29\x7b\xd2\x8c\x30\x36\x5f\x66\xce\xb6\xd4\x5c\xc2\xf9\xa1\xc1\x6a\xae\x66\x21\x42\x4b\x9b\x49\x7a\xe2\x66\x59\x42\x89\xda\xfb\xa4\xfa\xb1\x45\x04\x53\x15\x0d\x8e\x3a\x1b\x30\x70\xf2\x5d\xad\x18\x57\x8d\x08\x61\xe6\xd8\xe9\x0e\xf1\x7c\x69\xc2\xce\x9e\xf0\xba\xdb\x57\x25\x08\xc5\xbb\xc4\xa4\x4f\xdb\x36\x31\x20\x96\xc9\xe2\x9c\xfa\x78\x8c\x01\xae\xea\x6d\xc6\x0b\x8d\xdf\x30\x70\xc0\x26\x6c\x78\x3a\x53\x9f\x90\xff\xde\xfe\x87\xba\x83\x00\xa1\x9a\x2d\x43\xed\x8f\x3c\x07\x61\x85\x5e\xca\x53\x96\x28\x05\xc2\xe6\x23\x1a\x77\xbe\x28\x76\x12\xa2\x5d\xbb\x54\x77\x8d\xb6\x12\xb6\x8a\x2e\xa8\x5e\x9a\x18\x42\xe8\xd7\xd0\xfb\x21\xe5\x19\x48\x30\x9d\x95\xec\x1d\x7b\xf1\x12\x13\x0d\x39\x31\xce\x9e\xc3\xe1\x04\x0f\x97\xe1\xea\x87\x2d\x37\x08\x9d\x7f\x44\x8f\x48\x6f\xaf\x22\x98\xf1\x9e\xbe\x23\x60\x35\xcc\x40\x5f\x65\x53\x3e\xa7\xe3\x04\x03\x6c\x9e\xd3\xed\xad\xd9\x4f\xd2\x3f\xb0\xcf\x55\x9a\xa8\xb7\x3b\x43\x38\x9a\x6a\x9d\x75\xa7\x50\x81\xe0\x31\x77\xeb\xf5\x4f\x9f\x02\x08\x6c\x55\x85\x3f\x46\x6e\x58\xd1\x58\xa4\x5f\xe4\x5a\xbe\x0c\x26\x66\xf5\x2b\xf8\x47\x15\x6d\x20\x94\xa7\x7c\x57\xf8\x5a\x6a\x4c\x48\x96\x2e\xe0\xb3\xdc\x1a\x48\x28\x55\xf6\x97\x65\x4f\x0c\x24\x04\x47\xdb\x1e\x11\x4d\x78\xc1\x40\xdb\xcf\xc3\x19\xbd\x31\x41\x84\xc0\xf2\x2b\xdd\x49\xdd\xe9\x4c\x2c\x3d\xfb\xeb\x47\xcf\x6c\x19\x82\xe7\xd0\xe2\x79\x51\x1c\xeb\x08\xf6\x23\x91\x9c\x25\xb5\x92\x84\xc6\x5d\xdb\x64\xaa\x2a\x78\x08\xec\xf3\xb5\x33\xd5\x8c\xeb\x08\x6e\xe7\x57\x35\xde\x37\xad\x23\x34\xef\x5e\x26\xd8\xc8\x16\x4e\xd0\x3c\xfd\xbb\xfd\xc1\xdb\x66\x02\xcc\x1c\xb7\x3e\x9a\x44\xd6\xe5\x53\x79\xed\xa7\x12\x08\xe9\x2e\x0b\x57\x2c\xac\x72\x23\x4c\x7c\xd1\x9a\x73\xa2\x31\x85\x90\xc9\x5d\xa1\x74\x7a\x71\x02\x41\xad\x52\xd0\x36\xa2\xf0\x24\xc1\x52\x94\x83\xb9\x3b\xb7\x95\x01\xde\x17\x0a\xeb\x9b\x66\x3b\x10\x3a\x4f\x65\xee\x16\xcc\x0d\x27\x08\x0f\xdb\x94\x87\x9f\xb5\x24\xdc\xba\xb7\xf6\xa4\xf6\x4d\x17\x42\x91\xeb\xf1\x70\xd9\x73\xdf\x19\x98\x5e\xba\xfe\x86\x4f\x4b\x29\xa1\x77\xe4\xba\xb7\x6b\x1f\x93\xa0\x26\x26\x72\xf2\x6f\x59\xfb\xe4\xab\xca\xf5\xa7\xb9\x04\xe7\x6d\xa3\x0f\xe5\x4a\xd9\x08\xea\x81\x37\x46\xdf\xf0\x5d\x64\x62\xa6\xac\xcf\xd3\x63\xf3\x72\x09\xcb\x6f\x88\x37\x7d\xb5\xfc\xc8\x40\xc0\xf9\xe6\x35\x6c\x86\xfc\x04\xae\xb8\x69\xd3\x6e\xcc\xd1\x25\xd8\x69\x6f\x9d\xdb\x1f\x9a\xc5\x44\xc3\x06\xe3\x4f\xfa\xb6\x8d\x84\x94\xb1\xc0\xde\x53\x92\xc3\x84\x15\xf1\x95\xb9\x0f\xfd\x1a\x09\x67\x76\x0c\xc8\xfe\xd2\x52\x25\x78\x15\x61\xd9\x35\x83\x0a\x02\xef\xf3\xd6\x9b\x76\x1b\x3c\x08\xb3\xf9\xeb\x02\x56\x6e\xda\x4b\xd8\xa9\xe2\x36\x2f\xe0\x50\x1a\x13\xdb\xb6\xe7\x7f\x63\x9d\xbe\x9d\xa0\x78\xf9\xd8\xbb\xbd\xc9\x85\x84\x7d\x92\xd6\xd7\xfe\xa2\x63\xdc\x5c\xb3\x27\x28\x9d\xa0\xeb\xa1\xb6\xd4\xbc\x9a\x8f\xb0\xd3\x55\x54\xe5\x4a\x64\x25\x61\xe5\x87\xfb\xa9\x62\x0b\xa4\x09\x29\xed\x37\xdb\xf6\xbb\x4e\x9b\x02\x89\x5a\x9e\xf9\x51\x8f\x3f\x31\xb0\xbf\xe5\x51\xaf\x69\x71\x10\x13\x3b\xb2\x3d\xcd\xd2\x53\x8f\x13\x1e\x9f\x98\xf7\xc9\xe7\x87\x39\x41\xcd\xbc\xa7\xea\xc1\x75\x35\x82\x45\x8f\xcb\xde\x7c\xdd\x76\xc2\xe2\xfe\xcf\xb3\x5f\xa9\x85\x11\xd2\xa2\x96\xc8\x05\x6f\x76\x23\xac\xeb\x36\x8c\x69\x70\xbc\x42\xf0\x6b\xaa\x9f\xff\xd0\xfc\x03\x03\x65\xc2\xae\x7d\xe9\xf6\x32\x84\xa2\xe1\xba\x2d\x59\x56\x2c\x34\x56\xf6\x68\xb6\xd4\xc7\x25\x84\x1d\xbb\x18\xe2\x1a\x86\x12\x84\x13\xac\x8f\x8a\x79\xce\xba\x4d\xc1\x87\x07\x6b\x0d\x78\xee\xac\x27\x68\xde\x70\x39\x5a\x21\xf9\x8d\x81\x6b\x67\x93\x46\x72\xbd\xe6\x11\xe4\xf9\xf3\x9b\x67\xb9\xab\x10\xae\x05\x70\x56\x36\x5d\x0a\x27\xbc\xd1\x51\x69\x62\xcc\x08\x25\xa8\x84\x5c\x9f\x77\x54\x7d\x07\xc1\x59\x6b\xff\xe1\xa6\xe6\xc9\x05\x9d\x3f\xff\xb7\xb8\x35\x37\xc1\xc9\x40\xf6\xd7\xe7\x4c\x1e\x82\xf2\xda\x53\x35\x2f\x95\x35\x09\xd6\x6e\x9f\x3b\x0c\x7e\x49\x4c\x81\xfe\xd1\x62\x6f\x1f\x8f\xf7\x0c\xd8\xaa\x16\x98\x97\x24\xec\x26\x0c\x16\xef\xd4\x14\x3c\xcd\x49\x58\x97\xe1\x2f\xc0\xfa\xfc\x26\xa1\x40\xb7\xe6\x81\xaa\xd1\x16\x42\xb6\xad\xcd\x79\xed\x09\x1d\x42\xe5\x8c\xb5\x7b\x33\xcb\x59\x09\x31\x3b\xd6\x0f\x27\xfb\x1b\x33\x51\xde\x7d\x7f\xf5\x2c\xcf\xdb\x84\x13\xc3\x01\xe3\x25\xcf\xbb\x08\xf3\x75\xdd\xae\x57\x3d\x29\x26\x7c\xac\x5a\xc4\xd6\x93\x97\x42\xb0\xd1\xf0\x2c\x9d\xe0\x97\x24\x48\x2e\x8c\x9f\xf9\xe5\xcf\x01\xc2\xa0\xc8\x86\x69\x5e\x8a\xda\x84\x55\x67\xc9\xfd\xe6\x0d\x71\xc2\xec\x73\xb3\x04\x77\xb8\x34\x13\x46\x0f\x2d\xcb\x6f\xe7\xeb\x24\xbc\x57\xbf\x17\x18\xb3\x40\x9f\xc0\x50\x49\xdd\xe1\x78\xe6\x17\x03\xa6\xad\x8f\x62\x56\x79\xbc\x63\xe0\x92\xbe\xf6\xb2\xda\x36\x26\x61\x4e\xeb\x7b\x79\x4b\xf7\x74\xc2\x2a\xe1\xd4\x37\xf5\x7e\x8e\x04\x79\x01\x46\xbc\x3a\x77\x00\xe1\xfd\xee\xf6\xb4\x54\xad\x83\x84\xe8\xaa\xa4\x8d\x6d\x8b\xb7\x11\x70\x59\xca\xce\xcb\xea\x59\x2d\x78\x32\x1e\x78\x7e\xc9\xe5\x25\x94\x28\xec\x96\xe2\xee\x5a\x40\x60\xe7\xb9\x3b\x66\x79\xfc\x27\x03\x2f\x7a\x23\xb7\xb4\x71\xd9\x13\x3c\xeb\x4c\x9e\xd6\x34\xfa\x11\x36\xb6\x48\x18\x74\x2c\x4f\x24\x74\x71\xd7\x9e\x74\xdc\x57\x48\xf8\xc9\xfa\xed\x1b\xdf\xeb\xab\x84\xb9\xad\x2c\xe7\xda\x52\x4f\x10\x4a\xb5\x86\x39\x87\xf2\xfd\x27\xef\x99\x73\x1f\x6c\x70\xf4\x22\xfc\x22\x17\x5f\xf9\x5b\x4e\x84\x89\xc7\x33\x3a\xfa\x17\x5a\x11\xb8\x4f\x0d\x44\x9c\x33\x59\x4f\x30\xe7\x16\xfd\x52\xeb\x5f\xcf\x00\xbf\xad\x67\xe1\x55\x86\x29\xa1\xad\x6e\xf7\x1a\x66\x9f\x19\xc1\x42\xb3\xc3\x29\xe9\x8c\x3a\xc1\x33\x46\xfd\xf5\x52\x7e\x36\x82\xe8\xec\x35\xd7\x99\xe3\xb6\x04\x01\x9b\xb8\xa7\x6d\x95\x6f\x19\xb0\x74\xb1\xd0\x9a\xff\xf2\x03\x03\x75\x8a\xf6\x3f\x14\xc4\x39\x08\x6e\x41\xc9\x74\xb3\x44\x83\xf0\x39\xf1\xe6\xdb\xbb\xd5\xe5\xb5\xf0\xbe\x71\xcc\xe5\x5d\x8d\x32\xfd\x83\xb3\x6b\xb6\xd0\xad\x58\x29\x42\xa2\x7b\xfc\x42\xc3\x3b\x62\x04\x85\x01\xdf\x8d\x59\x5f\x54\x09\xf4\x73\xf3\x8a\x55\xd5\xf3\x08\xf7\x17\x88\xdc\xf1\x31\xfb\x5c\x8b\xd1\x03\xdc\xf3\xd5\x14\x0d\x09\xae\x0c\xaf\xb1\x9d\x6f\x7c\x08\xca\x01\x0d\xc4\x1c\x94\x27\x7c\x75\x78\xe2\x55\xcd\xfb\x91\x81\x93\x43\xfc\x2f\x84\xee\x1d\x23\xcc\x31\xce\x94\xe6\x14\xd2\x23\x08\xd0\xcc\x63\x55\xa9\x16\x84\x73\xa2\xfa\x16\x22\xde\x62\x84\x6a\x8f\xbe\xfe\x38\x1b\x31\x42\xbb\xec\xfa\x5d\xe3\xd7\xd9\x08\x5d\x3a\x27\x32\x52\x7e\x2b\x4c\x81\x95\xae\xd7\x0e\xe7\x0c\xc9\x29\xe0\x3b\x9a\xcd\x11\xea\x21\x40\xd8\xbb\x92\xe3\xe9\x69\x1d\x07\x82\xf1\xf7\x89\x9d\x6e\x02\x12\x04\xee\x0f\x7e\x86\x79\xb5\x5b\x08\x1a\x77\x0c\x44\xe5\x56\x8a\x11\xa4\xd8\x0f\x4b\x35\x4a\xae\x27\xf4\x94\x8b\xee\x5c\x51\x2a\x49\xd0\x3a\xeb\xd5\x26\x33\x6d\x0e\xa1\x0b\x79\xe2\xdf\xae\xd5\x13\x7e\x8e\xdf\xae\xb8\xd8\x61\x49\x60\x1c\x51\x69\x3f\xb0\x71\x09\xc1\xe1\x2e\xe3\xc0\x83\x06\x33\x02\xb7\x4c\xfc\x4b\x19\x51\x3e\xc2\xbb\x13\x81\xb7\xef\x5d\x59\x42\xd8\x5b\xba\xec\x6d\xe7\x2b\xde\x29\x78\x6b\x31\x38\x82\x75\xb3\x08\xbe\xf9\xeb\x97\x74\xde\x8c\x23\xb0\x72\xc5\x24\x6e\xb0\x1b\x65\xe0\xeb\xa5\x27\xbb\x67\x70\x7d\x65\x80\xfb\xe9\x33\xa7\x74\x71\x49\xc2\xc2\x5c\xdd\x59\x37\xfa\xd2\x08\x82\x4a\x46\x5b\x9a\x6a\x16\x10\xaa\xe7\xbc\xaa\x08\x2d\x5a\x4d\x78\xbb\x89\xdd\x29\xc3\x46\x9c\x70\x9b\xdf\x7b\xe2\xf4\xbe\x0d\x84\x58\xdf\x87\x15\x3b\x54\x35\xa7\x40\x7a\x56\x5f\xfa\x55\x96\x43\x4c\xa8\xf1\x64\xf9\xb0\x85\x3d\x22\xd4\x68\x76\xfe\xee\x8c\x7c\x48\xa8\x71\x8e\xb8\xa5\x5c\xd5\x4a\xb8\x28\xa7\xee\xd7\x16\xfe\x88\x30\xa7\xbf\xee\x47\x13\xb7\x0d\x61\xce\xca\x50\xb3\xe7\xcb\x27\xdf\xc1\x4f\x59\xa2\x47\x9d\xbe\x32\x30\x28\xf7\xca\xcb\xf3\x5d\x14\x13\xef\x11\xea\x7a\x49\x4f\x8a\xd0\xf3\xa5\xfa\x7b\xb2\x0d\x1b\xc1\xe5\x5c\x5e\x45\xcf\x1d\x25\x82\x79\x42\xa1\xc8\x9b\x4e\x9b\xc9\xc7\xdb\xb7\x56\x6b\xe1\x0f\x06\x48\x37\x90\x9d\x25\x70\x17\x81\x99\x18\xef\xc9\x53\x22\x49\x70\x6f\x90\x15\xd7\x99\x26\x36\x05\xda\xc2\x1c\xb1\xaf\x76\x4e\x30\x90\xdf\xeb\xbd\xd2\xf5\x8d\x2d\x61\x7a\x91\x99\xd9\xc7\xd3\x07\x08\x56\xce\xf2\xf1\x4f\x2a\xb5\x08\x6c\x13\x6b\x0e\x7d\x90\xb2\x26\x24\xbe\xee\x7e\xec\xaf\xb4\x9a\xf0\x5e\x26\xb4\xbe\x4c\x44\x92\x90\xb8\x4c\xc7\xe8\xae\x40\x19\xe1\xc1\x22\xa5\x3d\xdd\xb2\x65\x84\x73\xfa\xdf\x16\xff\x05\x9b\xac\xf5\xe3\xae\xae\x4b\x84\x38\xae\x0b\x1f\x2c\xe4\x05\x08\x75\x1f\x1c\x73\x04\xfa\xd8\x08\x2b\x4f\x34\xf6\x39\xb0\x9f\x23\xb4\xe8\x5d\x6a\xfb\x8b\x0d\x42\xbb\xa3\x8c\x97\xc4\x10\x06\xf6\x7e\xee\x74\xd4\x7f\xc1\x80\x9c\x9a\x6c\x5f\xd8\x93\xa3\x84\x88\x8b\x9c\x39\xb2\x9d\xa7\xa6\x60\x22\xf6\xb0\x80\x6e\xb1\x0e\xe1\x61\xd6\xb4\xcc\xf8\x55\x6b\x09\x65\x23\x6b\x67\x3e\xca\x5f\x46\x28\xd2\xcc\xb2\x7c\x3e\xeb\x3d\x03\x5d\x47\xee\xff\x4a\xbe\x77\x8a\x50\xcc\xc2\xc1\x2d\xa5\xb4\xfb\xbf\xf0\x63\xe7\xe5\x73\x6b\xde\x99\x10\x6e\x64\xd6\x8d\x76\xd7\x2d\x27\x84\x47\xa5\x9e\x59\x79\x72\x82\x81\xea\xe0\x76\x77\x99\x61\x01\x42\x47\xbb\xfb\x9d\xcb\xbe\x2f\x08\x9f\x04\x2d\xe4\xba\x6d\x52\xa6\x60\x64\x61\x91\xcd\x16\x19\x6b\x82\xfd\x97\xb6\xd6\xa4\xfa\x54\x42\x6a\xd3\x0e\xcb\x89\xf9\xce\x04\xb7\x9d\xad\x01\x39\xc5\xea\x84\x73\x1a\xbf\xb7\xce\x36\x13\x24\xb0\x29\x54\x27\xca\x86\xad\x21\xe8\x2f\xce\x9d\x5f\xf1\xfe\x22\x03\x99\x1d\x69\x43\xda\xc6\xea\xf4\x0f\xa1\x85\x8d\xb6\x7f\x2a\x7a\x6a\xf1\x5b\x40\x54\x24\xed\xcc\x36\x42\xc4\x3d\xf6\x96\x83\xbc\xee\x04\xa7\xb5\xf5\x77\x0a\xc4\x97\x11\xd6\x2c\x52\x7d\xd0\x2a\xea\x40\x60\xd5\xf0\x3a\xed\x55\x77\xb3\x16\xc1\xb5\xb5\x21\x19\x95\x66\x04\x27\x63\x61\x13\xd9\x51\x0b\xc2\x17\x83\xe4\x0b\xca\x7b\x54\x09\x23\x16\x25\x87\xef\xd4\xda\x12\x76\x73\x1f\x64\x69\x0f\xcf\x22\x9c\x2c\xed\xe2\x6a\x11\x17\x25\xc4\xae\x48\x21\xab\x11\x6d\x82\xfd\xf9\x57\xb9\x5a\x1a\x72\x84\xd3\xd1\x61\xe6\xc2\x6b\xb8\x08\xf7\xdf\x5c\xcd\xd6\x14\xb6\x21\x1c\x5c\x76\x42\xe8\xd8\x5d\x5d\x42\xda\x49\xaf\xe3\x0f\x4c\xcc\x08\x9e\x9d\xf2\x03\xad\xf3\xa7\x13\xca\x47\x5f\x2c\xf3\x38\x5c\x47\xd8\xde\xf8\x5c\x5a\x25\x71\x80\x81\xc5\x36\xab\x0f\x7d\xbb\x50\xcb\x40\x0e\xc7\x22\xae\x50\x07\x33\xc2\x76\x8d\x5f\x3f\x85\x17\x64\x13\x22\x99\x6b\x1e\x2c\xe8\xef\x24\xcc\x6c\x3c\x1f\x35\x7f\xb2\x2c\x76\x6d\x6d\x39\xf8\x32\x85\x70\x53\x3b\xa1\x7b\x74\x2b\x2b\x21\xce\x72\xc8\xe6\xd7\x27\x15\x42\x27\x8f\xec\xba\xa7\xad\x8b\x08\x73\x0b\xe3\xec\x1b\xeb\x02\x09\x92\xcf\x75\x42\xe2\xd5\x34\x09\x9b\xb6\x2c\x91\xdb\x5e\xa1\x46\x88\x1a\xff\x74\x2a\xc6\x95\x41\x10\xda\xf1\x36\xf1\xad\x4c\x15\xa1\xad\x89\xbd\xa2\x82\x19\x40\x18\xb5\xd9\x2d\xe5\xe8\xb0\x83\xb0\x29\x6b\x81\xb8\xd0\x35\x15\x02\x32\x1d\x2b\x46\x2f\x99\x12\xe6\x56\x14\xd5\x27\x14\xed\x23\x34\x2f\x06\x8f\x27\x53\x9e\x50\x78\xfc\xf5\x7b\xab\x92\x7b\x84\x98\x3e\xe3\x63\x55\x83\x17\x08\xa5\x6f\xaf\x7f\x15\x38\xbf\x9e\x60\x33\x6f\xf4\xc6\xf2\x83\xf2\x84\xf6\x33\x01\xcd\xdb\x3a\xf4\x09\x1b\xb2\x0e\x44\xdd\xdf\xce\x47\x50\x6b\xce\x2b\x73\xda\x3c\x8b\xf0\x35\x32\x7c\xc2\xf1\xd3\x57\x06\xca\x8e\xcd\x54\x70\x12\x5f\x45\x63\xe3\x57\x3a\x14\x5c\x67\x13\xfa\xe6\xc3\x71\xad\x88\x3e\x61\x73\xd4\xa5\xe7\xfb\x4f\x28\x13\xc6\x8b\x3f\x57\xe7\xc8\xdf\xad\x85\x6f\xda\xa1\x3d\x2a\x5f\xd4\x08\x90\xef\xef\xb5\xcb\x90\x26\x24\xab\xec\x7f\x58\xc9\x55\x41\xf8\x13\x10\x36\xf0\x17\xb1\x1f\x75\x6f\x2e\xd8\xa1\x42\xf0\xd6\x76\xd4\x64\xf1\x9d\xbc\xfe\x64\x46\x32\x86\xa4\x43\x09\x41\x5b\xc4\xf6\x48\x0d\x9c\x25\x78\xae\x08\x98\x2f\x52\xcd\x43\x78\x34\x1e\x6b\x1b\x59\x20\x35\x05\xcb\xa7\x7d\x28\xf4\x31\xe5\x23\x0c\x1b\x5d\xac\xa9\x2c\x6d\x27\x8c\xf4\x1d\xda\xf7\x21\x7a\x1b\x81\x76\xf5\x5e\xcb\x0e\xdc\x4a\x48\x09\x8b\x8a\xe7\xfe\x23\x41\xe8\x14\x38\x56\xca\x2b\x3e\x93\xe0\x6e\x58\x37\xbb\x6d\x50\x92\xe0\xbf\x8c\xff\x55\x6f\x73\x08\x21\xea\xe9\x29\xcb\x59\xf7\xe5\x09\xcb\x8e\x59\xcb\x0a\xdd\xa8\x26\xf8\xef\x2b\xf7\x50\x30\x30\x27\xec\xed\x0a\x1b\x74\xb0\x98\x4b\x08\x94\x1c\xd7\xb8\xfc\xaa\x82\x60\xce\x95\xb8\xd1\x7b\xd1\x42\xc2\x0e\x63\xf9\x7d\xe7\x59\x15\x09\x02\xa1\x86\xaf\x9c\x57\xec\x20\x3c\x3a\x77\x7b\xa7\x51\xd2\x1f\x06\xda\xdc\xba\xba\x07\x92\x89\x90\xbf\xeb\xbd\xf4\xca\x9c\x78\x42\x81\xea\xf8\xb6\xf0\xf7\x46\x84\x9e\xd2\x03\x2b\x9f\xf7\x09\x13\xfc\x16\xfd\x59\x6f\xc4\xdb\xcb\x80\xf8\xa9\x1f\x2f\x57\xf1\x49\x12\xfc\x3c\x42\x1e\x64\x6e\x5a\x47\x28\xbb\xee\xd3\x93\x64\x38\x79\x7f\x99\xf3\x61\x93\x57\xdb\x18\x03\x7c\xc2\x57\x16\x8c\x66\x87\x33\xf1\x90\xbf\xc9\xbf\xdd\xbe\x9e\x90\xac\xa7\xe2\x15\x76\x38\x86\xf0\xb2\x5e\x74\x9b\x9a\xe1\x22\x82\x49\xf0\xac\xcd\x15\xa2\xd2\x84\x2d\x0d\x61\x76\x8c\xe4\x11\x06\x76\x54\x5d\xda\xca\xc8\xd4\x24\x54\xd9\xcf\xb8\xe2\x31\xb9\x10\xc9\x18\xde\x7d\xd3\xec\xa4\x47\xf0\xd8\x22\x74\x75\x81\x0e\x3b\xc1\xcc\x77\x3b\x5b\xfe\xb1\x53\x84\xc7\x92\x15\x87\xb7\x7e\x51\x20\xfc\x7a\xbc\x4d\x3f\xb5\xf1\x2c\x41\xe3\x68\xe1\x78\xf3\xe3\x33\x04\x7f\xc7\x99\x39\x17\xad\x5e\x30\xb0\x3f\xeb\xe0\xcc\x3b\xfe\x2a\x04\xbd\xce\xcb\x96\x16\x7b\x55\xa7\x40\xe4\x78\x52\xa1\xdc\xc1\x5f\x0c\xe4\xde\x19\x8f\x61\xd1\x09\x60\xc2\xf0\xbb\xcf\x0b\x64\xf8\x12\xd4\xdd\x16\x98\xec\xd9\x34\x83\xd0\x58\x59\xf7\x3e\x6c\xcf\x0e\xc2\xdd\xf7\x66\x29\x46\xdc\xe2\x84\x9f\xd3\x6f\xcf\x75\xec\xb7\x9d\x82\x88\xb4\x9f\x17\x4a\x5e\x6e\x20\xa4\x8b\x2f\x59\x71\xe4\xcd\x1e\x02\x23\x4a\x65\x80\x43\x36\x7c\x0a\x14\x96\x2b\x67\x76\xdc\xeb\x65\x8c\x89\x8f\x6f\x5e\xd3\x71\x86\x60\x9f\x1f\xc0\x79\x36\xc1\x95\xb0\x30\xef\xd9\x6b\xde\xd5\x47\x08\x9b\x15\x8f\xb8\x73\xad\x90\x20\xe4\x6f\x3f\x9e\xfc\x63\x45\x2b\x61\xcc\xb3\x42\x81\x57\x7c\x1f\xa1\xb2\x2c\xd0\xa8\xd8\x40\x89\x90\xb3\xc6\xee\x8f\x68\xcf\x7c\x82\x73\x85\x94\x8f\xec\x67\x23\x42\xeb\xcb\x0f\x07\x4e\x1d\x58\x37\x05\x35\x9b\xb8\xe3\xa7\xfd\x14\x20\xe8\x38\x97\x7a\x16\x69\xfc\x64\x40\xd8\x6e\xfd\xae\x65\x3b\x56\x12\x2e\xcd\xfa\x92\x8a\x7c\x1e\x82\x91\x46\xb9\x43\x1c\xfb\xe4\xda\x31\xf7\xdb\x0b\x61\x91\xdd\x84\x5d\xf9\x37\x37\x1e\x6f\xfd\xcd\xc0\x37\x75\xe1\xef\xf7\x98\xe1\x04\x73\xd7\x6f\x75\x96\x07\x02\xa6\x60\xeb\xa1\xb2\x2f\x9b\x0e\x48\x12\x5c\x3a\xea\x93\x5f\x49\x4b\x13\xfc\xfa\x5d\x3b\x7f\x49\x09\x13\x62\x72\xb9\xde\xb1\x84\x73\x10\xec\x7e\x1f\x7e\xeb\x7b\x7a\x15\x41\xdb\x6d\xb9\x95\x73\x48\x03\x03\x72\x0b\xfb\x67\xe4\xad\xab\x25\x0c\x6e\x11\xbc\x7b\x63\xe1\x66\x42\x8a\xe1\xf8\x7a\x56\x33\x73\xc2\x21\x9f\x15\xae\x33\x75\xc5\x09\x7e\x2a\xcf\x64\x9a\x8c\x32\x08\x2c\x21\x71\x76\x9f\xbb\x0e\x12\xce\x29\x6e\xe1\xb9\xc0\x33\xc2\x80\xac\x48\xde\xae\x01\x23\x15\xc2\x53\x7e\x93\x7c\xb9\x41\x19\xc2\xc1\x59\xbb\xc4\x43\x94\xcf\x11\x64\x1d\xfd\x94\xf5\xac\xe7\x11\x86\x94\x8f\x57\xdd\x1a\x5e\x48\x98\xed\x91\xb8\xfe\xd8\x8c\x45\x84\x65\x83\x9a\x2c\xb5\xf2\x6a\x84\x57\xb3\x3a\x39\x38\xfb\x44\x09\x07\xbe\xfd\x78\x90\xed\xb6\x8b\xb0\x61\xe5\xa8\x72\xdb\x15\x0b\x82\xf0\xf7\xbb\x9f\xdc\xc3\xdd\x08\x72\x1b\xef\x35\x29\x0f\x39\x10\x06\x5e\xd7\x3d\x5b\xbd\x2e\x88\xc0\x58\x19\xec\x27\x79\x4d\x86\x10\xce\xf0\x39\x6e\x18\xe0\x48\x88\xb0\xfd\xb5\xf5\xa7\x41\xd8\xe4\xfd\xce\x40\x94\xb1\x90\x8f\x50\xd3\xe1\x5b\x6e\x10\x24\x4e\x50\x76\xf0\x6a\xe0\x7e\xf4\x89\x01\xa7\x0d\x8f\xe4\x86\x84\x96\x11\x76\xe5\xbd\x66\x5d\x97\xcb\x49\x68\x78\x7d\x40\x36\x4c\x3f\x80\xf0\x2d\xd4\x73\x44\xc6\xc1\x85\xf0\xbd\xfb\xc0\x1b\x95\xcd\xdb\x08\x03\x74\xf6\xf7\xce\x9f\x81\x84\x8a\x8f\x8b\xe4\x3d\x47\xcc\x08\xbf\x6f\xb0\x05\x7e\xda\x6c\x48\x98\x79\x55\x3a\x7e\x53\xa1\x3d\x21\x59\x26\x4f\x60\xd7\xab\x71\x06\xd8\xd6\x9e\x5f\x11\xfd\x59\x9f\x90\xb7\x87\xe7\x09\x3b\x86\x19\xe8\xe2\xc2\xc7\x9c\x04\x7f\xfa\x07\x15\x29\x89\x04\xa9\x76\x3d\xc2\x02\xc3\x4b\x67\xff\xd4\x4f\x23\x64\x34\xa8\xfb\x84\x7c\xcd\x26\xb0\xf2\x9c\x7f\xf0\x78\x83\x31\x81\x4d\xaa\xd7\x2a\xca\x2b\x94\x20\x98\xa3\x63\xee\x91\x6e\x44\x78\xe6\xc1\xd5\xb7\xac\xb2\x99\x09\x99\x91\xb7\x25\xd2\x8e\x93\xb7\x26\x46\xc8\xe6\x83\x49\xbe\x84\x9e\x3e\xa5\xc3\x62\x3f\xed\x08\xfd\x37\xf6\x9d\x70\x11\xb4\x20\xa4\xce\xf6\x17\x88\x10\xd7\x22\x24\x2e\x3f\x33\x4d\x62\xad\x32\xc1\x5d\xfc\x3a\xcf\x7c\xa7\x65\x04\x3f\x31\x2b\x61\xfd\x54\x33\x42\xd0\xdb\x94\x8a\x8e\x90\x06\xc2\x85\xf5\xce\x21\xcf\x1b\x66\x11\x2e\xc7\xcd\xe8\x63\x51\xcc\x20\x84\xb3\x8b\x31\x92\x5a\x7d\x09\x4f\x2b\xdf\x0e\x96\x1d\x05\x03\xb6\xc9\xfc\xd6\xb6\x71\xcb\x08\x9e\x2d\x41\x77\xf3\x7e\x2c\x25\xdc\x8f\x72\xfa\x5e\x9a\x3d\x9b\x70\x71\x78\xfb\xdc\x71\xe2\x25\x64\xbc\x48\x1a\x66\xf8\x67\x11\xde\x8f\x35\x1d\x39\x10\xa7\x42\x10\x4b\xfa\xb0\xf3\x6d\x98\x28\x21\x5c\x70\xfb\x86\x1a\x95\x15\x84\xd4\xfd\x1d\xca\x67\xdd\x57\x13\xe6\xb4\x28\xeb\xed\xdd\x3a\x9b\x90\x71\xf7\xed\x7a\x6d\x17\x73\x02\x67\xa5\xbb\xe7\x67\x3d\x2d\xc2\xba\xdf\x61\xb1\xfd\x87\x18\x84\xa2\x0b\x7b\x12\xf7\x2b\x0a\x11\x16\x3f\x7e\xe1\xcb\xba\xd7\x8e\x70\x7c\x20\x56\x3f\x53\x44\x80\xd0\x3b\x1d\x1c\x72\x0f\x9f\x32\x50\x15\xb1\x66\xc7\x8b\x67\x1e\x4c\x64\xbf\x91\xdc\x9e\x54\x29\x42\x28\x6d\x78\xc3\xfe\x25\x6e\x16\x13\x7a\x6c\xf2\x1c\x32\x5c\x2a\x84\xe7\xd8\xb2\x46\x77\x97\x04\x61\xeb\xc1\x19\x26\x41\x22\x4b\x08\xcb\x39\x2b\x43\x7c\x02\xc6\x18\x38\xea\xfe\x66\xd9\xfa\xc4\x8d\x84\x38\xf3\xb9\x92\x61\xdc\xb5\x4c\x54\xe8\xdd\x3f\x30\x70\xbd\x95\xc0\x69\xf0\x6b\x9b\x5f\x30\x1f\xc1\xc8\xb8\xea\x31\x77\x10\x3b\xc1\x2b\x3c\xed\x95\x57\xfb\x57\x06\x2a\x87\x4f\x6d\x39\x7e\x48\x84\xd0\xae\xf3\xe7\x01\xd7\x15\x7e\xc2\xd0\x90\xb0\x6a\x46\x71\x79\x2d\x4e\xff\xfc\x60\xa3\xf4\x66\x0d\x21\xe3\xd5\xd1\xfc\x79\x3d\x3b\xa7\x60\x6b\x6f\x44\xf3\xa1\x54\x2e\xc2\x9b\x96\xc5\x9b\x34\x96\x1a\x12\xce\x47\xc8\xf9\x5c\xe4\xe4\x21\xf4\x6c\xb5\x94\xf7\x0e\x56\x23\xb8\xcd\xc9\xa9\xd9\x35\x3c\xc1\xc0\xc4\x38\xbf\x1e\xef\x3b\x3e\x82\xc9\x81\xfc\xfc\xdb\x7b\xf9\x09\x87\x5f\xb6\xcd\x88\xff\x11\xc1\xc4\xb9\x38\x83\x30\x95\x86\x5d\x04\xeb\x99\x76\x3a\x8f\xd5\x66\x12\x6e\xad\x5a\xd4\x53\xff\x7d\x1a\x81\x47\x6d\xa3\xce\x8a\x03\xef\x19\x28\xdf\x37\xe7\x8b\xa2\x85\x2e\xfd\x43\xba\xb8\x97\xd0\x95\xe5\xb3\x08\xb7\xd9\x37\x79\xfc\x69\xda\x4b\x90\x2b\x29\xdd\xa7\xf6\xf2\x19\x03\xe1\xa6\xee\xf6\xf1\x1f\x8f\x12\xce\xb0\x2a\xee\xec\xb2\x70\x9c\x82\xa6\x1f\xf3\xb5\x0a\xae\xf2\x13\xc4\xe5\x97\xac\x77\xcf\x5e\x4a\x18\x1e\xed\x11\x14\x68\xe5\x26\xac\xb8\xb5\x39\xba\xb4\xd1\x9b\x10\xcf\xdd\xf9\xc8\xd8\xcf\x7a\x0a\x7e\x9d\x9b\xf3\x31\x39\x6c\x05\x21\xba\x29\xfd\xd4\x9a\xdd\x4e\x84\xf9\x59\x0a\x01\x05\xee\x4b\x09\x31\x1a\x56\x9c\x35\xfb\xce\x33\xe0\x66\x60\x35\xb2\xaa\x5e\x97\xe0\xfa\xfa\x8e\x3e\x37\xff\x46\xc2\x6c\xdb\x5b\xc3\x8a\x9e\xe7\x08\x12\x31\xc6\xfa\x7b\x36\x44\x10\x4c\x04\x86\x53\xfa\x3f\xc4\x13\xa4\x6f\xed\x3c\xc4\xb4\xbe\xc3\x84\x47\xc9\xa2\xe4\xa2\x91\x18\xc2\xed\xfb\xfc\x97\x75\xe5\xa2\x09\x8f\x37\x5d\x6c\xf9\xb5\x53\x8a\x70\x7c\x56\x8e\xf3\x67\x36\x5d\xc2\x0e\x1f\x09\x97\x5f\x4e\x36\x53\x10\x6d\x72\x22\xab\x65\x9e\x36\x61\x9f\x78\xf3\x80\xf2\x58\x28\x41\x67\xb9\x4e\x62\xec\xd6\xc9\xd7\xa0\x78\xfb\x8b\x9e\xf4\xd3\x04\x99\xad\x8e\x8b\x5a\xfa\xb6\x13\x5a\xc6\xa5\x57\x2e\x18\x9f\x49\x50\xb8\xe8\x73\xbd\xf0\x7e\x3e\xa1\x74\x55\x88\xe7\x0e\xb6\x68\x42\xfb\x1b\xf9\x12\x8f\xf2\x14\x02\xe3\xc1\xf3\x53\x9f\x9b\x4e\x10\xce\xf1\x97\xa9\x8b\x84\x84\x11\xd6\xee\x34\xce\x67\x0b\x0a\x27\xfc\x49\xbf\xf6\x1d\x1b\xe5\x08\x88\x92\x6e\x88\x48\x11\x24\x84\xee\xdb\x5d\xf1\xdd\xfe\x13\x03\x9d\xda\x82\x6d\x32\x73\x4f\xd1\x3f\x9c\x0b\x6b\xe1\x0b\x61\x3d\x47\xd8\xb8\x64\xa9\xfc\x11\x8e\x95\x84\xb0\x80\xba\x10\xc5\x5a\x21\xc2\x85\x25\xd6\x22\x8f\x2f\xb9\x10\xb6\xa5\x35\xd4\x47\xcd\x5a\x47\xd8\x54\x45\x34\x6c\x9d\xce\xc4\x43\xe5\x93\x71\x9d\x59\xe6\x84\xf5\xfd\x47\xc5\xe4\x57\x8c\x32\xe0\xbf\xb0\xde\x6c\x6c\x30\x9a\x89\xe3\xdb\xd7\x9c\x9d\xb7\x29\x8d\xd0\xec\xb9\xa4\x45\xc2\x9c\x08\x2d\x43\x4e\x5b\x2c\xd4\xa6\x13\xa6\x4b\x47\x2f\x92\x0d\x9c\x43\xe8\xff\x79\x6a\xce\xf9\xcd\xc3\x0c\x58\xed\xe0\x59\x69\x26\xfc\x96\x81\xd1\x9d\xb5\xbf\x72\x17\x98\x13\x7a\x2f\xd4\xc9\x44\x69\x76\x30\x10\x5f\x5e\xad\x7b\xa9\x64\x11\x81\xa7\x91\x22\xa7\x1d\xd8\x49\xe0\x91\x72\xd9\x9f\xa6\x7f\x60\x4a\xf1\x29\x51\x8b\x75\x38\xca\x4f\x98\x11\x2a\x25\x6e\xa1\x39\x9d\x20\x37\xfb\x4a\x93\xd6\xfd\x16\x42\xcb\x85\x59\x45\xdb\x9e\x0c\x33\xfe\xc1\x64\x5e\x48\x95\xab\xce\x10\x03\x86\xca\x23\x2d\x8e\x05\xf1\x84\xed\xca\xd3\xf4\xd6\xbd\x4c\x25\xc4\xbb\xed\x32\xbb\x97\x91\x44\x78\x99\xf8\x34\x49\xae\x24\x8a\x10\xe2\x1a\xba\xee\x81\xb9\x0c\x61\xff\xd2\x23\x57\x07\xbd\xa4\x08\x56\xfb\xeb\xb5\x9e\x2d\x36\x21\x70\x04\xfa\x09\xac\xf8\xf1\x91\x01\xf3\xda\x9b\xef\xe5\x8e\x2a\x12\x58\xde\xca\x15\x14\x35\x0d\x12\xd2\x59\x06\x3b\xae\xaf\xb1\x27\xf8\x08\x2d\x7b\xa2\x64\x57\x46\x30\x13\x08\xf0\x62\xd5\xbe\x42\xd8\xf6\xf8\x3a\x8f\x68\x71\x39\xa1\xc3\x87\x45\xbc\x4a\xc6\x8a\xd0\xb7\x4a\x8a\x6b\xce\xc9\x28\xc2\xbe\xb6\xbe\x1b\x96\xe9\xc2\x84\xa2\x07\x26\xf7\x0c\x67\x8e\x30\xf0\x26\xc5\x7f\x45\x7d\x26\x2b\x81\x67\xfb\xe5\xb6\xf4\x88\x5c\xfa\x57\x04\x03\x8f\x2c\x7b\x7c\x66\x8c\xf1\x0f\xcd\x21\x6a\x69\x1e\x8d\x9e\xf4\x0f\x9f\x52\xd2\x62\xce\x4f\x7e\x65\xc6\xef\xf9\x8d\x78\x4f\x6e\x19\x82\x9d\x01\x9e\xf2\x27\xd3\x08\xc1\xe5\xcb\xe6\xfd\x85\x74\xd9\xca\xc7\x91\xdf\xef\x33\xf0\x49\xbb\x2e\xac\xd3\x45\x9f\xb0\x66\x75\xe2\xc0\x67\xe5\x41\x06\xdc\x86\xcc\xb7\x6e\xe3\x6a\x24\x9c\x3f\xe6\xd4\xd5\xaf\x52\x42\xd8\xdd\x7b\xf2\xfc\x96\xfa\x5a\xc2\x2a\xf7\x04\x81\x4f\x93\xc5\x28\x77\x68\x17\x4f\xe2\x13\xc2\xe3\x81\xc3\xdd\x99\xaf\xfc\x09\x3b\x8b\x76\x2f\xd5\x3f\x97\x4b\x70\x5b\xf6\x35\x1a\xfb\xe2\x99\xc8\xea\x0c\x37\xae\x6f\xeb\xaa\x45\x0e\xc7\x5a\x47\xed\x50\x31\x02\x6b\x57\xc9\x47\x2f\x5d\x35\x82\x98\xd0\xe6\x9e\x58\x3d\xb3\x29\x58\xae\xf7\x3c\x49\xd7\x79\x8c\x81\xd7\xc6\xf7\x46\x8a\xa5\x44\x09\x41\xab\x59\x27\xbc\xa3\x46\x19\x30\xff\x68\x9b\x13\xb7\x40\x62\xf2\x67\xdd\x2b\x53\xb8\xf9\x28\x81\x95\x55\x6f\xe1\x9d\xfd\xab\x09\x63\x1f\x9f\x54\xbd\x48\xf5\x22\x88\x7f\x79\x5d\xec\xff\xd2\x96\x10\x6f\xba\xd9\xa5\x29\x4f\x92\xa0\xb2\xf0\x68\x7e\x99\x53\xdd\x94\x12\xd2\x94\xfd\x52\xfa\x5b\x5b\x2d\x46\xaa\x65\x3b\x79\xdc\x2e\x30\x71\xc1\xbb\x75\x24\xe5\x6b\x24\x61\x9e\x62\x76\x1d\xf7\xf2\x18\x02\xd7\xa0\x18\x85\xf6\x07\x12\x0e\xcd\x2b\xc6\x11\x26\x0f\xc1\x7b\x31\xb7\xc3\x49\x0a\x67\xa2\xf5\xfc\xad\xe4\x9f\xc1\x5b\x09\xca\x3b\xce\xa7\xca\x18\xa8\x12\x1e\x8b\x65\x7f\xf1\xbd\x49\x84\xee\xb5\x4a\xf5\x57\x02\x58\x09\xf7\xda\xf6\xad\x9f\x80\x0a\xe1\xeb\xc3\x77\x57\x2f\xc9\x8f\x33\x70\x4d\x48\x9f\x4d\x6f\x2e\x0b\x21\x6e\x58\xb5\xe2\xd6\xa7\x50\x82\xdd\xa2\xc7\xf6\x8a\xe5\xf9\x04\xad\x58\x35\xd7\xd9\x3b\xeb\x08\x32\xe2\xaf\xd5\xe7\x4c\x22\x42\xf8\x9d\x87\xfa\xdd\x0a\x82\x4d\xc2\x15\xae\xbf\x45\x37\x35\xef\xc3\x95\x10\x7b\x82\xcb\x7a\xf7\x55\xa9\x7e\x09\x84\x83\x7e\xa3\x5f\x99\x61\x35\x84\x1e\xb3\x53\x5d\x7f\x47\xcb\x4b\xe4\xfa\x63\xeb\x44\x08\x29\x4d\x8a\xb7\x84\x95\x4e\x12\xae\x86\xf4\xfb\x17\x3a\x9e\x22\xec\xb4\x08\x70\xdd\xa5\x65\x4c\x18\x29\xda\xdb\xbe\x86\x33\x94\x60\xa3\xa6\x69\x9c\xbf\xb4\x92\x09\x44\xdf\xb1\xdb\x1f\x93\x47\xb8\x5d\xba\xb8\xc3\xca\xd1\x9b\x10\xf8\xf6\xce\x85\x4d\x67\xb3\x08\xe3\xe7\xa5\x1a\x2b\x76\x5c\x26\xcc\xd2\xbb\xf1\x92\xf5\xe5\x5d\x06\xc6\xda\xe2\x74\xab\x0d\x0a\x08\xfc\x59\xee\x36\xaa\x12\x05\x84\x94\x71\xa1\x75\x3d\xe3\x75\x84\xcc\x0b\x87\x7b\x96\x54\xc4\x33\x21\x60\x63\x54\x38\x5d\xb5\x8b\x50\xc2\xd0\x6d\x25\x8b\x2e\xc2\xea\x3f\xd6\xc5\xdf\x53\xed\x09\xb9\xc5\xfd\x3d\x81\xe2\x71\x84\xfa\xf8\x47\x12\x3d\x17\x8e\x4f\x19\xfd\x0f\x0b\x3f\xd9\x67\xb3\x04\x6b\x10\xf8\xcc\x37\x9e\x60\xb5\x6b\x26\xf8\x44\x24\x6d\xf5\xf2\xae\x24\x5c\x9a\xab\x2c\x35\x76\xb5\x86\x89\xc5\x97\x16\x0a\x0d\x84\x55\x13\x0a\x64\x17\xc4\xcc\x5b\x79\x93\xb0\xe9\xba\xe1\x29\x56\xae\xeb\x84\x89\x3f\x3d\x1e\xab\xd9\x75\x09\xda\x8d\x2c\x35\xad\xa4\x4e\x50\xfb\x1c\xe3\xcd\x3a\x16\x4f\xf8\x28\x98\x7f\x62\xb5\x49\x3d\xc1\x4d\x9b\x6d\xc1\x11\x57\x2b\x82\xf0\xd0\x1f\x87\x22\x2f\x3f\x42\xf2\x91\xb2\x7b\x7f\x8b\x77\x82\x62\x55\xe8\x71\x3f\xc2\x76\xcf\x6f\x79\xce\x3a\xf5\x34\x76\xfd\xce\xf2\xf9\xa6\xf5\x84\x1d\x96\x6b\xdf\x9d\xed\x53\x25\x70\x9c\xbe\xa6\x79\xa6\xcc\x98\x70\xcd\x68\xe0\xcd\xce\x00\x7d\x42\x60\xa6\x1e\x3b\x4b\xe2\x4d\x26\x56\x3c\xc8\x79\x52\xf6\xf5\x18\x81\xb9\x26\x7d\x93\x28\xe7\x25\x26\xe2\x16\x5e\x1b\xfa\x5b\x0c\x24\x5e\xa8\x3a\x54\xd4\x10\xde\x48\xc4\xce\xdd\x4d\xf7\x08\x5e\x97\x3b\x8e\x19\x1e\xec\x22\x68\xc7\xb2\x7f\xf7\x3d\x79\x93\x90\x9f\x70\xd2\xb3\xa2\xa9\x85\x50\xf3\xd1\xd4\xdf\x66\xf2\xcc\x44\xc2\x8f\xb3\x17\x99\xd5\x84\xeb\x61\x66\x9a\x5d\x0f\x2b\x09\xf5\x01\xa6\xfd\x57\x64\xf7\x11\x76\x65\xc8\xbe\xb2\x78\xb6\x8f\xf0\xad\xe3\x72\xa5\xc1\x34\x37\x82\x64\x5f\x4c\xe4\xc7\xc0\x6d\x84\x3d\x6f\x43\xd9\xf2\xf5\x14\x08\x15\xf7\x34\xad\x4d\xaf\x9c\x66\xc2\xe8\x4c\xc6\xd6\xc6\xb1\x63\x84\xe8\x9e\xfe\x76\x9e\x23\x7a\x84\xef\x03\xc3\xde\x16\x25\xeb\x08\x32\x8b\xbb\x0f\x34\xde\x5d\x3e\xf9\xa3\xb7\x68\x20\xe6\x80\x19\x21\xe9\xbc\xe4\xb4\xf5\x3f\xd7\x13\x5c\x7f\x57\x97\xae\x0b\xfe\xc0\xc0\x33\x89\x73\x7c\x0d\xcf\xde\x30\x61\xbd\xaf\xfa\x22\xc5\x5c\x66\xa2\x60\x0e\x6b\x34\xe3\xde\x4b\x26\x26\x56\x5d\xae\x72\x2d\xcc\x27\x88\x95\xf7\xdf\x3b\xb3\xeb\x0c\x61\x6d\xa5\x64\xa3\x57\xf4\x2e\x42\x4a\x96\xf4\x44\x5f\x5c\x28\xe1\x56\xc0\xf3\xbd\x27\x93\xae\x11\xd2\x43\xae\xf1\x30\xe7\x97\xff\x17\x56\xe7\xd7\x0b\xbf\x89\xd9\x45\xb8\xbf\x42\xd9\x7d\x56\xc0\xcc\x29\x38\x2c\xa8\xfa\x33\xe1\xc5\x69\x26\x0e\xf1\xf4\x5f\xbe\x7a\xa3\x96\x09\xb6\x21\xc3\x1a\xcb\x43\x5f\x98\xe0\xf6\x5f\x6b\xf7\x85\xa3\x8e\x30\x63\x42\x56\x24\x92\xb5\x8e\xd0\xa5\xb3\xbf\x36\x3e\xa8\x96\xe0\xa4\xb9\x2f\x2c\xa2\xe0\x09\xe1\x44\xe3\xee\xd1\x91\xc9\x33\x91\x6a\x7b\xc5\xbf\x72\x64\x13\x56\x2d\x0c\xca\x3d\xee\x7e\xf0\xbf\x30\x3a\x4d\x66\x86\xe4\x4c\x47\x82\x5e\x4c\xff\x81\xfe\xfb\x45\xb5\xe8\x5c\x7e\xc6\x3c\x7f\xa8\xb4\x16\xe1\xf5\x8d\xc7\x1f\x45\x88\xd0\xff\x85\x8b\x55\x59\xd2\x98\x7c\x62\x83\x0d\xdf\x23\x62\x57\x6f\x27\x6c\xda\xf8\xcc\xa6\xe1\x6c\x59\x2d\xd6\xec\x5b\xe9\xaa\x27\xe0\x49\xe0\x5e\x27\xe4\x7c\x4a\xdc\x75\x0a\xec\xc3\xc7\xa6\xbd\x4f\xaa\x24\x14\xdf\x5e\xdf\x79\xe1\xfb\x03\xc2\x92\x97\x10\xfc\x30\x59\xe4\x84\x37\x9c\xcf\x9b\x2c\xcf\xb2\x8e\x09\xe6\x4f\x62\xf6\x95\x44\x35\xef\x25\xbb\x08\xbc\x1d\x8f\xc3\x33\x3c\xb3\x08\x55\xdc\xf3\x2a\x78\xf5\x43\x09\x2a\xd2\xcb\x65\x58\x2f\xf9\x30\xff\x9d\xa9\x49\x14\x53\xf3\x1e\x4b\x24\x3c\x3f\x14\x31\x78\xdc\xf8\x0c\xc1\xe9\xc7\xe7\x65\x1e\xef\x14\xa7\xa0\xb8\x78\xae\xa4\xdf\xfc\x64\x82\xf0\x86\x59\x3e\x33\x44\x36\x10\x4e\x39\xcc\xb7\x9a\x78\x79\x93\xa0\x1e\x73\x6b\xfb\x0b\xa7\x6a\xc2\x31\xf9\x85\x03\xaa\x59\xcd\x84\x39\x7b\xdb\x65\x1b\x4d\xeb\x08\x62\xd7\xad\x39\x78\x1e\xaa\x10\xa2\x1e\xe7\x78\xaa\xdd\xd1\x23\xec\x4c\x13\x12\x1c\x5c\x73\x8d\xb0\x4c\x46\x4b\xe7\x2f\x16\xfa\xab\xec\x31\x28\xae\x27\x24\x70\x0d\xbc\x1b\x98\x2c\xad\x3f\x7f\x2b\x06\x8b\xee\xf8\x2f\xf4\x7b\xc7\x2a\x95\x5c\xe3\x65\xfe\x2b\x9f\x87\x66\xac\xd4\xb6\xd8\x45\xe8\x91\x5d\xac\x73\xb2\x4a\x91\xf0\xe8\xe5\x6e\xc3\x97\x9d\x7a\x53\xe0\x64\x9e\xc8\x69\x35\xe1\x47\xe8\x32\x3a\x65\x31\xc0\x6a\x45\xd8\x7a\x4b\xc1\x6c\xee\xea\x39\x84\x3b\x51\xf7\x6f\xa2\xcd\xfb\xbf\xd0\x58\x77\x85\xb7\xec\x90\x13\x41\xf8\x92\xe8\x0b\xc9\xaa\x46\x26\x3c\x45\x3f\xf9\xcd\x6e\xfc\xcc\x40\xb6\xcb\x99\xf9\xcb\xfc\xab\x69\x6c\xbe\x48\xee\xe4\xdf\xff\x05\xe0\x9b\x5b\x92\x5c\x98\x39\x61\xb3\x5a\xe4\xb8\x7c\xa5\x34\xc1\xc5\xe9\x73\x5b\xd4\x73\x55\x42\xe5\x2c\x4b\xbe\x11\xa5\x4b\x04\x03\xc9\x12\xb7\xbf\x68\xe8\x1e\x2f\xb7\x7c\x52\x42\x10\xb8\xfc\x24\xfd\x6f\xf9\x21\x25\x36\xec\xb5\xdc\x8a\x70\x92\xb1\x69\xa6\x71\xf2\xc1\x29\xa5\xd2\xeb\x92\xdd\x2d\xa1\x6b\x53\x8a\xb2\x68\x6f\xc9\xc7\x53\xb6\x84\xb7\x6f\xb5\xb9\xad\xf4\x93\x08\x6b\xd9\x22\x57\x7f\x51\xb8\x40\x38\x59\x57\x71\xe8\xb0\xe5\x17\x82\x33\x63\xe5\xb3\x30\xd7\x4f\x04\xcd\x9a\xe8\x15\xc6\x23\xbd\x84\x13\xc2\x29\xbb\x2a\x2f\xb7\x10\x3a\xb6\x69\x38\x65\x94\x2b\x12\x5c\xb4\x8f\x1b\xce\x9b\x2d\x4b\xf0\x97\x4d\x58\xdf\xc0\x9f\x45\xf0\xf5\xbb\xb2\x47\x68\xb2\x18\xf7\x15\xac\x17\xdb\xbe\x88\x90\xe5\xbc\xa5\xc3\x5d\x40\xe9\xbf\xca\x1c\xc7\x9f\xac\x4b\x9f\x9e\x9f\x02\x4e\xf1\xbd\x36\x0f\xae\x7c\x26\x9c\x8f\x0b\xfb\x32\x21\x71\xee\xbf\xce\xa4\x16\xe6\x70\x0f\xf6\xda\x13\xec\x96\xbc\x67\xd4\xbc\x89\x98\x52\xf2\xbe\x7b\x88\x28\x55\x45\x4e\x29\xaa\xcf\xa3\x9e\xd7\xb8\x24\x12\x58\x82\x45\x96\x1f\x1e\xa9\x20\x64\xa8\xb3\x09\xfc\xc5\xfe\x28\xe9\xf2\xaa\xa0\xe8\xff\x13\xba\x3c\x3a\x37\x37\xa6\x96\xd6\x62\x53\x74\x92\x67\x4b\xdc\x75\xc2\x12\xa5\xdb\x6a\x07\xdb\xbd\x99\x58\xb4\xfd\x60\xa2\xed\xba\x73\xf4\x1f\xb8\x2a\xe9\xaf\x97\x7f\x44\x9f\xf0\x76\xe4\xf8\xcd\x83\x67\xc5\x08\x46\x5b\x77\x4d\xd8\xce\x38\x47\x48\xbc\x3c\x7b\x56\xdf\xac\x9d\x04\xa9\x8d\x8b\x74\x06\xc7\x77\x12\x3e\xb5\x9f\x88\xfd\x5c\x5b\x49\x10\xb1\xad\xf1\x3f\xd7\x9c\x44\x08\x0f\x2b\xbc\x73\x47\xa8\x99\x70\x68\x4d\x62\xad\x55\x45\xe9\xe4\x8b\xbf\xad\x69\x5d\x75\x2b\x21\xe2\xca\xaa\x87\x41\xbb\x82\x09\x1e\x2d\x99\x90\xcf\x3a\x46\xf8\xb2\x6e\xcd\x93\xed\x09\xbf\x18\xe0\xf5\x98\x5f\xa7\xf6\xc0\x8e\x70\x73\x77\x68\xa8\xae\xb1\x34\x21\xac\xf9\xd5\x86\x6f\x3e\x6b\x08\xe3\xd1\xbc\x5f\x73\xbe\xfb\x4f\x81\x87\x24\x0f\x97\x91\xc3\x25\x82\x8c\x65\xd5\xc7\x89\xdc\xfb\x84\x79\xba\xd9\x37\xb6\x17\xa9\x10\x1a\x2c\x16\x2b\x98\x72\xd4\x13\xd0\xfc\x8d\xe5\x2f\x1a\xf2\xee\x72\x56\x18\xde\x22\x6c\xaa\x8e\x48\x63\x29\xfb\xca\xc4\xb8\x7d\xd4\x49\x93\xc9\x91\xdf\x68\xda\xbc\x1b\x59\x21\x84\xa1\x81\x65\x5a\xe3\xb3\xdc\xa6\x20\x66\xd4\x34\xd3\xf6\xbe\xf3\x94\x52\x37\x6d\x41\x54\x91\x65\x0e\xa1\xc2\x47\x4a\x72\xd3\xe4\x4a\xe1\xbb\xdf\x68\xcb\xba\x95\x69\x4c\xdc\x2a\x3a\x21\x13\x35\x71\x95\x09\x1c\x17\x88\x12\x50\x4e\x25\x1c\x37\x98\x91\xe7\xe3\x94\x4a\x18\xdb\x19\x33\x5f\xbf\xe2\x00\xe1\xcf\x37\xcd\x75\x7c\xce\xee\x4c\xbc\x35\x3d\x77\x69\xcb\xa1\xc9\xad\xe5\x8f\x84\x86\xc5\x24\xe6\x16\xea\x1d\x39\xd2\xae\x46\x08\x30\x31\x0d\x18\xfb\xba\x91\x10\xf6\xe4\xeb\xe7\xa1\x3f\xb7\x09\xca\xa3\x9b\xd2\x22\x63\x8b\x08\x89\x19\x0f\x33\xe7\x78\x5f\x25\x70\x89\x5c\x8c\x7d\xfa\xe4\x36\xe1\x16\xfb\x99\xaf\x9c\x41\x59\x84\xac\xa7\x58\xf7\xf7\x8c\xc4\x9e\x82\x0a\xf9\x95\xd7\x09\xea\x62\xa7\x7b\xbf\x3d\xb9\x49\x90\x9f\x7b\xc4\x2f\x68\xed\x55\x82\xa1\xc6\x60\x90\x80\xda\x55\xc2\xc5\xcc\x6b\x61\xbb\x27\x8b\x97\x77\xf2\x6a\xc1\xc9\xd2\x60\x91\xd3\x68\x1e\xff\x85\x90\x64\x3d\x51\x72\x78\x72\x24\x1c\x20\x99\x98\xf9\x6a\x1f\xe1\xe9\xc6\x08\xa7\x13\x6b\xec\x08\x61\xba\xc2\xcb\x62\x8c\xab\xa6\x94\xad\x1b\x95\x87\x1c\x7c\xdd\x09\x8d\x8c\x6e\x41\x55\x69\x77\xc2\xb9\x0f\x5b\xe2\x3e\x94\x57\x11\x44\x36\x94\xbe\xe0\x63\x3b\x43\xb0\x7e\x9d\xc2\x2e\x12\xda\x4c\x28\x54\x7b\xeb\x6b\xb0\xbe\x91\x89\x08\x59\xab\xe0\xbf\x23\xa1\x96\xeb\x83\xa5\xa7\x7c\x98\x30\x15\xea\x59\x18\x6e\x62\x4b\x08\xa1\x59\x3c\x63\xb7\x43\x09\x15\x07\x17\x5b\xb1\x7c\xb7\x26\xdc\xb4\x9d\x33\x34\x7f\x7b\xd8\x94\x33\x8a\x9b\xd3\xd8\x7f\xcd\xdd\x3c\x05\x5a\x77\x2e\xae\x54\xf1\xa8\x66\x22\x25\xfc\xca\xaf\xc1\x04\x17\x82\xed\x42\x6b\xbd\x1c\x77\xfe\x29\xb8\x17\xce\xa9\x9e\xfa\xe0\xe6\x14\xf4\x5c\xa9\x1b\x97\x7a\x76\x93\xc0\xd8\x57\xf9\x3c\x65\xb2\xbc\x94\x90\x5b\xcc\x5f\xb0\xef\xff\xc4\xc6\xab\xbf\x0b\xe7\xaf\x73\x9b\x82\xea\x88\x88\xfd\xdb\x75\x0a\xa6\xe0\xbd\x6a\xf8\x42\xc3\xec\x5e\x82\x62\xd6\xce\x15\xdb\x26\xcb\x1b\xed\xd2\x83\x23\x3e\xbe\x84\xa3\x5a\x3e\xaa\x5b\x0e\x27\x4d\x29\xff\x2f\x26\x78\x6d\x97\xe6\x4e\x7e\xc6\xb8\x55\x6a\x7d\x64\x44\x77\x11\xc2\xe2\x45\x0d\xaf\xd6\xfb\x10\x72\x0a\xde\x9b\xee\x7e\x97\x4c\x70\xea\xfc\x90\x9c\xa4\x30\x15\x87\x04\x59\x12\x63\xc4\x97\x13\xd8\xc7\xbe\x28\xe6\x2b\xf1\x4c\x29\xf9\x5f\xc5\x4b\x4d\x0d\xf2\x6a\xe1\x10\xad\x14\x3c\xcd\xa8\xb2\x16\xd1\xe2\xdf\xcb\x64\x82\x4c\xe9\x1f\x6a\xe5\xfa\xf7\xcc\xb9\x12\x3e\xa5\x70\x5b\x47\x14\xa7\xfc\x5a\xf0\x5f\xd8\xb9\xb7\x55\xed\x45\xd9\x63\x06\x66\xa9\x94\xec\x31\x5e\xae\x48\xf8\xe5\xb6\xde\xf7\x54\xd1\xf2\xff\xc2\xf1\x72\x81\x77\x13\x9e\x2b\xfe\x4f\xa8\x4b\x44\x76\x84\x1f\x1b\x61\xc0\x6b\xd5\xe2\x05\xe7\x3a\xf8\x09\x4f\xeb\x4e\xf0\x5b\xa8\x3a\x11\xe4\xae\xbd\x1a\x4d\x7b\xba\x8f\x20\x28\xe9\x2e\xaa\xf5\x44\x85\x10\x24\xf4\xed\x67\xfb\xfa\x67\x84\x87\x5d\xce\xcd\x2c\x2b\xea\x09\x06\x0a\x76\xfb\x6c\x7d\x92\x09\x27\xb5\xab\xc7\x8d\xef\xd9\x12\xc4\x36\x2c\x7e\x35\x2f\x59\x8d\x70\xa2\x4c\xa9\xa1\xfd\x9a\x11\xc1\x79\xbc\x28\xcc\xa4\x65\x2d\x61\xfb\xfc\x35\x8e\x37\x3b\xd6\x13\x16\x05\x8a\x2d\x64\x32\xd8\x08\xa7\x6f\xaf\x6e\x9f\x76\x60\x1b\x21\x43\xa9\x3e\xca\x2f\x40\x91\x70\xfe\x77\xbb\xc9\xe2\xd3\xf5\x84\x25\x77\x3b\x0b\x32\xb6\x98\x11\x0e\x7d\x8c\xbd\xc0\xcb\xcf\x43\x58\xf0\xae\xad\xec\x30\xb9\x13\x1c\x4c\xb3\xfc\xb9\x68\x23\x41\xf7\x94\x93\xc7\xb1\x55\x6f\x98\xd0\x9b\xf5\x8c\x91\xc4\xa2\x44\xd8\x24\xf2\x2c\x68\x81\xa5\x02\xa1\x77\x28\x24\xc0\xa1\x81\x9f\xf0\xc1\xbc\xbd\xe4\xd9\x8f\x02\x82\x0a\x9f\x9c\xdf\xdc\xe5\x1c\x53\x46\x29\x6c\x0b\x76\x25\x15\x7e\xa8\x45\x1f\xcb\xc7\x45\x32\xb7\x1e\x30\x31\xe0\x50\x6f\xf8\x9b\xe9\xc3\xc4\xd1\x9a\x44\xb3\x79\x5c\xd1\x84\x3d\x6f\xce\xcc\x9f\x67\x55\x48\x38\x61\x2d\x6f\x1d\xa8\x54\x48\xf8\x5c\x52\x2d\x26\xbd\xf4\x1a\xc1\xe8\xc0\x8c\xd5\x36\xae\xb7\x09\xcf\xbb\x37\xe7\xe6\xd9\xdd\x22\x64\x2e\x8a\xff\x91\xcc\x97\x4a\xf0\x2c\xe2\xa8\xd7\x4f\x8f\x25\x78\xee\x68\xf9\x5a\xec\xb2\x98\x50\xb2\xa7\xfd\xf9\xaf\xe7\x47\x09\x8f\x05\xd5\xe3\xd8\x82\x1c\x98\x08\x98\xbf\x58\x2a\xfe\x53\x2a\x61\xfa\x91\x59\x92\xfa\x63\x19\x4c\xb0\x7d\x2d\x7a\xe2\x7a\x69\x3d\x61\xd0\x6e\x70\x74\x9d\xf7\x49\xc2\x30\x53\x36\x26\x2f\x7b\x35\x41\x4e\xb7\xf7\x4d\x59\xdd\x29\x42\x81\x8e\x54\x3e\xbb\x5e\x08\x61\x75\xa7\x8a\x80\xa6\x7b\x21\x13\xaf\x76\x9d\xf7\x2a\x0c\x92\x27\xfc\xde\x1d\xdc\x9c\x18\x27\x4e\xe8\x3f\xd3\x21\x33\xae\xaf\x41\x30\xce\xd6\xe1\x9d\x33\xad\x84\x09\x55\xe9\x1f\x05\x45\x93\x77\xfe\x0f\x67\x8f\x17\xda\xdf\x54\x22\x9c\x0a\x1e\x31\x12\x5b\x53\xce\x84\xe4\xed\xac\xa4\x30\xde\x79\x84\xe8\x75\xf3\x8d\x77\x07\xb8\xfc\x17\x72\x92\xe6\xcc\xca\x8d\xde\x40\xf8\xe6\x14\xfd\x25\xf5\x8a\x3b\x41\xff\xb4\xe0\xbc\x47\x39\xc1\x84\xde\x05\xce\x97\x9e\xae\x2e\x23\x1c\x5e\x17\x16\x62\xa4\xa7\x4e\x08\xb9\x96\xf0\xc4\x83\x4b\x9e\x90\x75\x69\x70\xef\x93\xed\xc1\x84\x8c\xa8\x6d\x1e\x4f\xf5\x46\x19\xe0\x71\x94\xea\xca\xec\x93\xa4\x7f\x98\x6e\xba\xfd\xcb\x2f\xa3\xaf\x0c\x98\x2f\x90\x89\xac\x9b\xa5\x49\xb8\x2c\x65\x93\xe3\xb6\x93\x93\xb0\xf8\x4c\x4c\xaf\x76\xfa\x38\xe3\x1f\xee\x5b\x8d\x3e\x29\xfd\xc4\x49\xc8\x52\x37\xdc\x63\xa9\xf4\x99\x89\xd0\xfa\xf7\xf2\x06\x47\x8b\x08\x7c\xaa\xb7\x62\x5e\x7e\xb9\x44\xb8\xfb\x61\xd3\x9f\x1b\x81\x73\x09\xbf\xd8\xf7\xf0\x1f\x0e\xed\x66\xc0\xe7\xf6\x70\x41\xcf\x7e\x7e\x82\x72\xc8\xf5\x77\x86\x4d\x05\x84\xde\xb7\xbc\x49\xf6\x61\x4a\x84\xce\xe4\x3f\x62\xee\x16\x66\xff\x85\x89\xaf\x3a\x43\x21\x97\x5f\x33\xb0\xaa\x7b\xf8\x36\x4f\xfe\x39\x26\x7e\x76\x4d\xbb\x99\xc9\xdf\xcb\x40\x77\xa0\xe8\x59\xa9\xd6\x06\x06\xae\x58\x15\x4c\x13\xf0\xfb\xc6\xc0\xfc\xdf\x22\xbf\xea\x0b\x4d\xe8\x1f\x74\x9f\x7d\xef\x99\x2b\x70\x8f\x01\xfb\x74\xef\x48\xb9\x22\x05\xc2\xb7\x1a\xf6\xc8\x43\x27\x73\x09\x0f\xd2\xe4\x37\x24\xf1\x9b\x13\x56\x70\xfb\x5b\x3e\xd3\x5d\x42\xf0\x94\x52\xc9\xcc\xbc\x6d\x32\xa5\xdc\xbf\x75\x2f\x9f\xd9\x6f\x43\x58\xe2\xec\x6d\xfb\x8c\x11\x3f\xa5\xa4\xdb\xf1\x1b\x2c\x7a\xff\x9c\x89\xc0\xfb\xe6\x05\x77\x34\xaf\x13\x54\x1d\x5e\xe8\xb1\x8a\x5c\x27\x64\xeb\x47\xf6\xcf\x98\x8a\xb1\xef\x6c\x5e\x7f\x27\xe7\xf7\x7f\xfd\x6e\xea\x10\xf0\x5f\xb8\xc3\xa8\x37\x38\xcf\x79\x8b\x89\x28\x67\x4f\x0b\x93\xc9\x52\xb0\xb4\x5e\xc7\xea\xcb\x12\xc2\xa9\xfb\x89\x29\xab\x9e\x5b\x4d\x29\x9b\x14\xb4\x83\x64\x46\xfb\x18\xe0\x5e\xb6\xba\x40\xc9\x4c\x82\x60\xf0\x22\x53\x67\x66\x99\x05\xe1\x76\x90\xba\xc1\x9c\x7c\x43\x82\xce\x01\x33\xa1\x12\xfe\x77\x0c\x70\x33\x82\x07\x24\x92\xc4\x09\xba\x71\xbb\x34\x7e\x27\xd8\x13\x36\xad\x65\x11\x7e\xde\xab\x40\x38\xb2\x7f\xe3\xc5\xf5\x0e\xd2\x84\xa1\xb9\xcf\x15\xea\xef\xba\x10\x2e\x9f\x3a\x68\x36\xf1\xb6\x6c\x0a\x5e\xca\xee\x19\x7a\x19\xdf\x45\xe0\x72\x9e\xa5\xe8\xf3\xd3\x9b\x90\x94\x98\x5c\x1c\x3f\x11\x32\xb9\xbb\xa9\x8a\x2b\x1e\x53\x20\x8c\x68\xda\xbf\x7a\x6a\x3c\xcc\xf8\x07\x43\xa9\xd2\xb5\x3b\x07\x7f\xfc\x17\x92\x96\xed\xb1\xcc\xd6\x7e\x5e\x8b\x1f\x3c\x9f\x1c\xb7\xe6\xae\x24\x2c\x6f\x7c\x86\x13\xdb\xcd\x09\x76\x12\x5f\x12\x5e\xb7\xea\x12\x94\xf6\xd5\x8e\x56\xbe\x2d\x24\x44\xdb\xa4\x19\xf5\x4e\x16\xe7\x8f\xa1\x3f\x67\x3a\x1d\x23\x7c\xcf\xfc\xaa\xff\xeb\x89\xcd\x94\x12\x38\x3d\x82\x82\xe5\x4e\x10\xf6\xdc\x71\x4a\xf7\xea\xea\x61\xc0\x77\xba\x9b\x7f\x73\xd7\x4c\xc2\xd6\xab\x9f\x1d\x77\xcc\x29\x22\x88\x76\xf0\x3d\xf7\xb0\x39\x4f\x58\x9f\x53\x3e\xff\xd8\x91\xd7\x53\xca\xf5\x88\xdf\x8d\x7f\x71\xe0\x8e\xd2\x68\xc7\xc7\x03\x04\xb3\x8f\x9d\x86\xb1\x07\x0f\x10\x1a\xd4\x0c\xc4\xd5\x5f\xb8\x10\x5a\x9f\x6f\x74\x57\xe3\xb4\x26\xb0\x24\x2c\xae\xc8\x6e\x5b\x4a\xf8\xc2\x7b\xee\xc9\xad\xaf\xa7\x08\x8b\xa7\x39\x7e\xf4\x63\x77\xfc\x2f\x54\xdf\x31\x72\x74\xde\x6f\x46\x28\xde\x70\xac\x49\x52\x5a\x95\xe0\xe2\x78\x46\xf3\xc2\xfa\x0f\x0c\x0c\xef\xf1\x36\x5c\xf1\x5c\x9e\xfe\xe1\xcd\x12\xb7\x8d\xab\x24\xc1\xc0\xc2\x79\xd9\x1a\x33\xb9\xe5\x08\xbf\xd2\xaa\xbe\x1d\xbf\xed\x44\x38\xd1\x2c\x9f\x30\xfa\x2b\x77\x4a\xc9\xcc\x5a\xb1\xbf\x4b\x4a\x90\xb0\xee\x63\xd6\x9b\x96\x25\x47\x09\x6f\xb9\x5f\xe6\x8b\x25\x5b\x13\x84\x1b\x7d\x99\x3b\x2f\x14\x30\xb1\xb8\x7b\x7d\x1a\xc7\xb0\x28\x41\x67\x8b\xac\xf3\x55\x85\x6d\x84\xa7\x6f\x34\xc3\x16\xf9\x45\x13\xb8\xde\x71\xed\x7c\xa1\xe8\x4d\x10\x76\x0e\x2e\x38\x55\x25\x47\xa8\x1c\xfe\x9d\x5b\xae\xb9\x64\x0a\xbe\x7c\x30\xa9\x7c\xd3\x21\x38\x05\x0b\x43\xbc\x92\x45\x8c\x14\x09\xa6\x49\x15\x6d\xc3\x2f\xce\xd6\xfe\x07\xb6\x6f\xd5\xac\xf7\xff\x9c\x40\xff\x17\x9c\x0c\x45\x47\x95\x43\xe7\x11\x64\x7a\x53\x78\x4c\x86\x96\x12\x0e\xda\xcb\x8a\xb4\x5f\xb9\x48\x98\xee\x30\xcf\x87\x48\x83\xf0\xf9\xf6\xea\x64\xdd\x53\x3a\x84\x54\xef\xd5\xcd\x47\x5a\xa2\x99\xf8\x0c\xa3\x9b\xc2\x45\xd1\x84\x8c\xfb\xbe\xb3\x1c\xa3\x5d\x08\x76\x4a\x9f\xf4\x0e\xdc\xb4\x67\x42\xe4\x51\xcd\x27\xaf\x0b\xbe\x84\x4f\x86\xb2\x89\x05\x86\xbe\x84\xd1\x9f\x1f\x82\xde\x28\x3c\x63\x42\x2b\x64\xed\x93\x23\xc1\xde\x84\x3f\xbb\x2e\x05\xbd\xb1\x62\x25\x5c\x7a\xba\x32\xe3\x7a\xd4\x4c\xc2\xea\x0d\xc2\x63\xd7\x3e\x6a\x13\xda\xfa\x38\xad\xbd\x7c\x05\x08\x99\xfb\x95\xc4\xe2\xbf\x2f\x22\xdc\x3c\xa9\x6e\xef\x3e\x30\x8d\xf0\x48\xb9\x3b\x49\xd6\x9c\x41\xd8\x3a\x5d\xa4\x47\xa6\x47\x98\xf0\x7e\xd6\xf0\xdb\xfc\x33\xcb\x09\xe2\xad\xba\x61\x4f\xd5\xcc\x08\x46\x8e\xd7\xee\x2f\xde\xa9\x41\x78\x98\xf4\xac\xe8\x47\x8a\xdc\x14\x78\x19\x39\x5f\x3d\x13\xa2\x41\x40\xbc\x5d\x6c\xba\xcc\xdc\x29\x48\x52\x8b\x93\xad\xe9\x04\x03\xfc\x09\x1f\x6d\xf3\x67\xb3\x10\x32\xd5\x7c\x8f\x92\xc7\xf9\x29\xd8\x7f\xc6\x2a\xe4\xc5\x8b\xae\x29\x25\xaf\x7c\x85\xbd\xf8\x27\xbb\x29\xb8\x35\xed\xb7\x22\xbf\x9a\xe9\x94\x52\xf5\xb5\x2b\x40\x2e\x98\x8f\xa0\xfd\x11\xab\xee\xea\xee\x25\x38\x0d\x2e\x5d\xe6\xe6\xe2\x4b\xf8\xe6\xc2\x8c\x7f\xba\x49\x97\x70\xac\x73\x48\x5f\x76\x79\x2e\x13\x6d\x8b\x6c\x9e\x2c\x30\x59\x4c\xe0\x5b\x32\x2f\xbc\xb3\x7f\x3e\xe1\xe6\x1a\xd6\xdd\x15\xc5\x3c\x84\xbe\xcd\xe7\x37\x64\x5d\xb5\x24\x38\xa6\x06\xdb\xba\xdf\xad\x23\x60\x70\x75\x5e\x8d\xd5\x75\x82\x85\xf2\xb5\x43\x3e\x66\xf5\x4c\xbc\x34\x5e\x12\x59\xfc\xae\x6c\xca\x19\xef\x82\x1b\x81\x95\xb3\x23\x08\x2a\xb6\xa2\x05\x4f\x6b\x82\x09\x6f\x8b\xc2\x6a\xd6\x6f\x3c\x46\x38\x1f\xe6\xde\xee\xb9\x22\x72\xca\x99\x9c\xf6\xeb\x2b\xb9\x7f\xef\x21\x3c\xf1\x58\x9f\xae\xfd\x2b\x9b\x60\x9f\xe6\x16\xdc\xf9\x78\x3a\xc1\x66\x5e\x79\x6b\xe3\xbe\x36\x06\x04\x1d\x8d\x36\xec\xdb\xee\x43\xff\x70\x70\x11\x2c\xbb\xc5\x85\x08\xad\xd2\x9f\x3e\x95\xd7\x5f\x64\x22\x98\xb3\xd4\x76\xc3\xa5\x02\xc2\xeb\xcf\x97\xb3\x0e\x4f\x2e\x05\x0f\x2c\x22\xec\xc5\x0b\x2b\x09\x5b\x95\xa4\x13\xed\x16\xe4\x32\xb1\xeb\x8e\x94\x61\x52\x42\x12\xe1\x47\xfc\x4f\x81\x19\xa7\x1f\x13\x28\xe0\xd2\xb8\x9b\x48\x32\xa1\xcf\xf0\xfc\x33\x37\x8e\x70\x42\xa2\x14\x6f\xea\x19\x6f\x73\xc2\xb7\xef\x2b\xda\x1e\x09\xdd\x25\xd4\x8d\x3f\x95\x70\xc9\xad\x22\xf0\xe5\x5d\xc6\x0d\xc9\xb3\x84\xa0\xb8\x9e\xf0\xf5\x56\x76\xcc\xb1\xc5\x69\xcf\xdf\x46\x9e\x27\xb8\x3e\x12\x8d\x70\x33\xa9\x20\x1c\xd6\x79\x72\x37\xf0\xb8\x16\xe1\x76\x7b\x9a\x40\xd9\xb3\x99\x84\x15\xd9\x22\x4d\x0a\xbe\xbb\x09\xf1\xba\x3f\x34\x3e\xbb\xbc\x24\x28\xad\xcd\xd5\x0d\x38\x52\x4f\x78\xb3\x6f\xae\x00\x4f\xf8\x5c\x42\x5e\xa2\x8d\xcb\xb2\xcd\xe5\x0c\x74\x1d\x6e\xef\x1a\x64\x8f\x22\xbc\xb8\xf8\xf2\xce\x0c\xdb\x32\xfa\x57\xd2\x6b\xda\x1f\xbc\xab\xe0\x22\xd4\x54\xcc\x62\x7a\xab\xf9\x10\x76\xff\x61\xb9\xee\xe2\xad\x4d\x58\xf3\x76\x84\x6b\xf6\x04\x0f\xa1\xe3\xc9\x52\x86\xbd\xd9\x19\x42\xdf\x89\x61\x85\x82\xf8\x50\x02\xcb\xd9\x6b\xd1\x8f\x8e\x2b\x10\x54\x5f\xe4\xcf\x7b\x64\xb0\x9e\xd0\x11\x77\x5e\x5d\x93\xc5\xe1\xbf\xb0\x82\x6f\xbb\xdd\x21\x6c\x22\x74\x8a\x88\xbd\x9d\xd8\xe3\x4f\x78\x63\xfa\x4b\x6a\xdf\x3c\x4e\x02\x43\xe6\x6c\x5e\x03\x4b\x31\xa1\xd0\xf5\xd3\x74\xf9\xa4\x48\x26\xf6\x95\xe7\xf2\x85\x74\x1f\x24\x68\x7b\x26\x7d\x09\x8e\xe3\x24\xdc\x96\x48\x8f\x95\xcd\xfe\x4e\x28\xa8\x0c\x2c\x7b\x68\xd6\xc5\x84\xe3\x2b\xfe\xb8\x63\xa1\x5d\x4c\xfc\x1a\xfc\x92\xd1\x7c\xb6\x81\x89\xa3\x3f\x32\xc6\x92\xf3\x3e\x10\x86\x83\xdc\x3f\x5e\xdb\x71\x83\xa0\xd0\xed\x78\xb9\x71\x49\x03\xc1\x53\x99\x8b\xc2\xcb\x1f\x30\xd1\xad\x38\x2d\xdb\x5c\x2e\x9b\x09\x31\xd9\xa1\x92\x4e\x8e\x54\xc2\xc7\x6f\xb7\x4e\x4c\x53\x28\x62\x62\x5b\xd5\x81\x55\xaa\x8d\xb9\x4c\x94\x36\xab\xcc\x37\xbe\xeb\x4f\xe8\x94\xd0\x68\x7e\xd0\x7a\x9e\xb0\xec\xe1\x7d\x14\xb2\x3d\x27\xf8\x70\xcc\xd5\x0a\x61\xde\x20\x70\xd9\xf5\x9a\xfc\x5a\xf0\x96\xd0\xec\x9f\x74\x7b\x5b\xf3\x7b\x42\x50\xc9\xd8\xaa\x2d\x07\x13\x09\x7b\xf5\x3a\xfc\xfe\xf8\xbc\x26\x7c\xb4\xe1\x7c\xa4\xa1\x97\x47\xd8\xba\xcb\x81\x6f\xd7\xe2\xd7\x84\xdc\x03\xec\xcb\x75\x0a\x4a\x09\x2f\x92\xde\x8d\xee\xe6\x6f\x24\xe8\xb7\x1c\xaf\xc9\xab\xbe\x40\x08\x98\xf3\x8d\xeb\x84\x47\x12\x81\x55\x86\x23\xed\xcd\x93\x50\x82\x71\xcc\x12\xf3\xc8\x9c\x24\xc2\xf4\xdc\xde\x44\x7b\x0f\x47\x82\xb5\x5f\x7c\xa1\xfa\xa3\x3c\xc2\x99\xb0\xe9\xf3\x6a\x83\xaf\x10\x38\x83\x06\xe7\xbb\xd8\xf8\x11\x84\x32\xfa\x1e\xf3\xdf\xc9\x23\x5c\x89\x2e\xe0\x13\x71\x3b\x42\x88\x8a\x60\x7a\x8b\x61\x3a\xc1\x32\x43\xa9\x8e\xc7\xa7\x94\x50\x59\xbe\xe6\xfa\xc6\x6d\x91\x53\xb0\x67\x38\xc5\x65\x50\xbd\x8c\x30\x7c\x21\xa8\x6d\xee\xba\x75\x84\xb1\x0b\xbc\x6c\xb2\xe2\xad\x04\x8f\x82\xbe\x9d\x35\xb2\x1b\x09\x63\x4b\xdf\xc4\x3c\x35\xd9\x4e\xb8\x50\xc8\x51\x2d\x20\x17\xc8\x84\xdb\xeb\x94\x2d\xb1\x23\x87\x09\x87\x5f\x48\x3e\xcb\xfa\x63\x4d\xd8\x34\xd7\x79\x44\x26\xc0\x96\xc0\x36\x9b\x63\x86\x49\x98\x1e\x61\x86\xe0\xa8\x92\x72\x87\x38\x21\xf9\xf3\xb3\x50\xab\x8f\x56\x04\xcb\x13\x11\x3b\x63\x39\x8c\x09\xe1\xbe\xb7\xd5\xaa\x36\x18\x12\xe2\xc2\x3f\x72\x44\x8a\x89\x13\x62\x37\x72\xee\xcf\xb0\xcb\x20\x28\x75\xf2\x7e\x1e\x78\x6a\x4a\xd8\x1a\x57\x28\x3a\x7d\x09\x11\xa4\x0d\x0a\x75\x5f\x30\x9e\x33\x70\x63\xdf\xc6\xcb\xce\x7d\xf9\x04\xb5\xe9\xb7\xc1\x56\x17\x47\x10\x1e\xf6\xdc\xe1\xb0\x25\x87\x30\xf3\xd1\x41\xf3\xb8\xcd\x71\x04\xa1\x6c\xfe\xb3\xcf\x64\x1e\x31\xa1\xf5\xf8\xa2\xd1\x5d\xb3\x38\xc2\xd2\x6f\x4d\xe6\x76\xe9\x82\x84\x54\xcd\x67\x0a\x8b\x9a\x36\x11\xa4\x35\x0a\x75\x49\xe6\x00\xa1\x2e\x74\xcb\xb0\xaf\xe3\x1d\x42\x7d\xa5\x22\x69\x44\xdf\x24\x04\x1d\x4d\xe4\xfd\x30\xf1\x81\x10\x73\xee\x48\x90\xff\x96\x06\x42\xb7\xcf\xf9\xfc\x75\xd2\xd1\x04\x4b\xe6\x60\xd5\x9a\x99\xa7\x09\xd6\xef\x1c\xbf\xf6\x1d\xf3\x25\xf0\xd6\xbd\xfa\x23\x32\x2f\x74\x4a\xe9\x78\x31\x56\xae\xb8\x83\x9d\xe0\xf7\x4c\x57\xd2\xc1\x71\x2b\xa1\xc8\x63\x40\xf3\x65\x26\x1b\x41\xfd\x63\x68\x88\xfe\xef\xad\x84\xc1\xb7\x4d\x95\xde\xf7\x63\x08\x35\x1b\x0f\xe5\x08\xbe\xb3\x63\x22\x9d\xcb\x67\xcd\x66\xf5\x7a\x26\x0e\x88\xe9\xcb\x2e\x74\x53\x20\x78\xf4\x36\x5d\xa6\xe8\xcb\x4c\xe4\xb0\x7e\x3b\xae\x5a\xb0\x96\xd0\xff\x65\x9f\x69\xf7\x5a\x5e\xc2\x35\x9b\xc3\x6c\x87\xe4\x25\x08\x8f\x95\x96\xda\x5d\x9e\x7d\x9a\x89\xbc\xa2\xb6\xf8\xfc\x90\x02\x82\xe7\x4f\x8e\x92\x0f\x9e\x05\x04\xe5\x69\x03\x17\xa7\x69\x7d\x67\x82\x37\xd6\x57\xf5\xef\x48\xa1\xdb\xe2\x58\x7b\x95\x25\xe1\xe1\xf4\x91\xb7\x71\x4b\x77\x11\xe2\x2f\x19\x72\x35\xb7\x44\x31\xff\x8d\xfa\x04\xd8\xb6\x7e\x85\x10\x41\xce\xa2\xeb\x41\xb1\x70\x1d\xa1\x77\xb9\xc1\xf8\xd5\x90\x0e\xc2\x02\xa1\x85\x6b\xee\x3a\xbf\x23\xb4\xcc\xbb\xf4\x68\xa1\xe1\x1d\x26\x12\x22\x7a\xf6\xe5\xba\xc5\x11\x56\xaf\x7c\x51\x79\x20\x3a\x80\xe0\xc1\xb5\x9a\x65\xe1\xa3\x04\xc2\x75\x5b\xbb\xd5\xf2\xc9\x09\x04\x95\x1d\x01\xc5\x19\xc1\x09\x84\x05\xbf\x16\x4e\x9f\xa7\x90\x40\xe8\xa9\x52\x67\x4c\x17\x0c\x26\x6c\xb6\x5f\x34\x83\x47\xae\x95\xa0\x14\x55\xa4\xb2\x46\x37\x9d\xd0\xb7\xea\xe7\xec\x5d\xbc\xe9\x53\xca\x71\x7b\xc9\x88\xca\xb5\xb1\x84\xf3\x1e\x97\x1e\x5d\xda\x30\x9d\xb0\xf2\xc3\xf3\xb3\x73\xdd\xf9\x09\x2e\x8b\x6f\x8c\xf9\xfe\xbe\x4a\x88\xef\x73\xd6\x08\xd1\x59\x4a\xb0\xd3\xae\xc9\x2e\x7e\x54\xc5\x00\xfb\x1e\x17\xd9\xcc\x17\xbc\x84\xd5\xae\x0d\x7b\x4e\x3e\xb1\x64\xe2\x41\xf9\x42\x83\x60\x8e\x24\x42\x49\x3c\x93\x57\xa8\x3d\x61\x0a\xd6\x49\x4f\x68\xed\x57\xda\x4f\x48\x2b\x76\x88\x7f\x76\x5b\x8e\x60\x6a\x39\xa3\xd3\xc2\x99\x08\x95\x92\x89\x0d\x42\x7b\xd4\x08\xaf\x19\xb2\xb4\x31\xe0\x22\x13\x52\xd6\xb3\xef\x45\x8a\xf8\x13\xbe\x0d\xb2\x98\x1f\xb4\xdf\x4b\x58\x9b\x57\xbf\xee\x82\xf0\x4d\x26\xd6\xaf\xe2\x4f\x38\x3d\xb9\xdf\xc5\x3f\xc8\xbc\x54\xe2\x70\x95\x09\x0e\xad\x59\x1c\x66\x17\xe4\x08\x77\x36\x36\x4a\xbd\x56\xe5\x25\xf8\x07\xdb\xba\x36\x98\xfb\x10\x66\x8a\x75\x95\xc8\x72\x44\x10\xba\xfd\x33\x24\x02\xe3\x45\x09\xad\xf7\x6f\x8a\xbf\xf6\x53\x22\x3c\xd1\xee\x51\xa8\x5c\x15\x4c\x78\x78\xc1\x84\x04\x15\x76\x10\x8a\xbf\xc7\x0c\xf3\xb4\x2f\x27\x28\x9e\x09\x96\x37\xf5\xab\x63\x80\xe7\x63\x6b\xd1\x8b\x8b\x91\x4c\xac\xbb\x72\x61\x59\xe9\xe2\x79\x84\x9a\x58\x77\xb7\x4e\xad\x30\x42\x9d\x7a\x6d\x53\xc0\xf3\x4d\x84\xe4\x0a\x85\x3f\xea\xb6\x1c\x04\xcf\x83\x5e\x37\x6d\x8f\xe5\x31\x71\x92\xad\xe6\x62\x1a\xc3\x85\xfe\xa1\xe5\x97\x59\x5b\xcf\xe4\x0b\x7f\xe3\xad\x8b\x2a\xfb\x67\xbb\x12\xb4\xe6\xcc\x6a\x1a\x5f\x62\x41\xe8\x9e\x51\x3e\x6a\x39\x79\x7d\xd2\x93\x68\xb7\xa8\x55\x5a\x49\xe0\x75\x64\xbb\xaa\xfc\x45\x9e\x70\x5c\xee\x85\xb0\x9c\xd7\x36\xc2\xa2\xf4\xe9\x51\xaa\x4e\xe9\x4c\x84\xb6\x59\x27\xe4\x9e\x60\x32\x70\xf9\xbb\x6f\xf6\xde\xf1\xdd\x84\x8b\x2b\x0b\x2e\x5b\x9f\x98\x47\xe0\x17\xd1\xef\x78\xcd\x17\x47\x28\x0f\xf9\x79\x34\x63\x87\x25\x61\x34\xfd\x46\xb5\x42\xe0\x86\x29\xe5\xde\x9d\xf5\x59\x8b\x27\x57\x09\xaf\xb2\xa6\xd7\xd7\x2c\x35\x08\x66\xca\xaa\x3d\x65\x37\xaf\x11\x44\xd6\x25\x8a\xc9\x5d\x7f\x40\xd0\x54\xaf\xe7\x34\x3c\x7b\x8d\x50\xa4\x6b\xc7\x6a\xbc\xa8\x8e\x10\x93\x2f\x35\x4f\x6f\x12\xc5\x4f\x58\x6c\x0c\xed\x9b\x08\x39\x73\xab\x9d\x07\x1b\x0e\x13\xcc\xde\xf5\x3e\x22\xeb\x73\xcc\x7f\x85\x2b\x32\x7a\xd3\x8f\xbb\xde\x04\x0f\xd3\x59\x86\x7c\x2c\x7e\x04\xa3\x81\xc0\x96\x09\x6f\x7e\x42\x5d\xf3\xfb\x6f\x99\x3f\x44\x09\xfd\x2f\x2e\x38\xb3\xdb\x6b\x13\x76\x99\xcb\x34\xaf\xfa\x26\x41\xf0\x70\xb2\x75\x39\x7e\x68\x3d\x61\xf6\x73\xb6\x77\xda\xcb\xa6\x11\x0e\xa8\x17\xad\x5c\xab\xad\x4d\xf8\x2e\x7b\x20\x7b\x8e\x1a\x1b\xa1\x20\x68\xfa\x8c\xfd\x2b\x23\x09\x13\x1c\x4c\xc1\x4e\x1b\x6d\x42\x5c\xb3\xd1\xdb\x6d\x4e\x71\x04\x8d\x9b\x79\x23\xf7\x16\x5b\x10\x96\xca\x5e\xe0\xd0\x51\x95\x20\x44\x1a\xda\xe4\xdf\xd1\xcd\x26\x3c\xbe\x96\xbd\xee\xf5\xb1\xe9\x04\xb9\xa0\x5b\x0e\xa5\x6b\x4e\x11\x96\x39\xf4\x56\x76\x88\x6b\x12\xd0\x38\xf8\x24\x8f\x36\x12\x7a\xf9\xd7\xae\xbf\xb3\x93\x8b\xc0\x10\x3c\x69\x6b\xe1\xc0\x4f\xb8\x3d\x64\x34\x7f\x76\x3b\x27\xe1\x4d\xd1\xfb\xb7\x16\xba\x97\x19\xb0\xaf\xbf\x74\xcd\x3b\x8e\x8d\x70\x4f\x3e\xca\x87\xf1\x6a\x3e\xe1\x56\xb5\x58\x45\xf3\xe9\x12\xc2\x95\x2b\x8c\x3c\xbf\x11\x1b\x26\x62\x8e\x6e\x4d\x0e\x57\xb7\x63\xe2\xe1\x5d\x23\x3f\x89\x9e\x22\x82\x62\x66\xdb\xb6\xbf\x67\x1a\x26\x8a\x9f\xe7\xf9\x6e\x21\xe8\x56\x5d\x49\xd1\x59\x39\x9b\x89\xf0\x17\x0b\x4f\x9a\xf8\x6d\x21\x14\x0d\x98\x5c\x34\x90\x3a\x38\xe5\x4c\x6d\x7f\x56\x4c\xa7\x08\x07\x61\x7a\xd3\xc2\x94\x88\x30\x1b\xc2\xd8\x76\xbb\xd9\xa2\xd9\x3a\x04\xfe\x1b\x4e\x87\x4d\xf3\x2f\x12\x36\x0e\x1f\x0f\x49\x76\x23\x82\x4b\x0c\x47\x56\x9a\xdf\x53\x06\x0e\x2d\xdf\x34\xdf\x81\x5f\x8b\xc0\x4c\xe6\x9f\x59\x7e\xf4\x36\x03\x01\x3f\x3f\x45\x86\x36\xe9\x13\x6c\x7f\x65\xdd\xbe\xaf\x76\x9a\x50\x9b\x3d\xe0\x19\x32\x59\xfe\x07\xdf\x5f\x97\xfc\xf7\x75\xad\x22\x5c\x79\xa8\xc5\x1d\x54\xca\x4f\x78\x74\xac\x4e\x7c\xe8\xb5\x20\xe1\x45\x5e\x58\x7f\xec\x9e\x2f\x0c\xfc\x89\x11\x2d\xf8\xe6\xf6\xb8\x16\x72\xf1\x12\xea\x7e\x0e\x5d\x0c\xcc\x1c\x33\x61\xa9\xe3\x55\xa1\x7f\x38\x33\x22\x34\xb4\xac\x25\xad\x16\xb7\x59\xa7\xd9\x26\x4d\x88\x13\xba\x3e\x06\x7e\x15\x4c\x3b\x3e\x05\xfd\xaf\xd8\x22\x16\x26\xe7\x4f\xc1\x75\xfd\xe8\xc3\xc3\x97\xab\x08\xda\x72\x15\xb5\x5f\x27\xc1\xb7\x8d\x6d\xc7\x8f\x49\x9c\xfc\x9e\x1c\x98\x30\xd4\x48\xa8\x7d\x55\xfe\xe1\xfb\x64\x29\x6a\x4b\xaa\xdd\xaa\x67\xfd\x5f\xe0\xe3\x28\x88\x0d\x5d\x15\x32\xa5\xcc\x92\xbd\xfd\xe6\xde\xe4\x33\x94\x10\x1e\xee\xdd\xb2\x1c\x0c\x18\xdc\x72\xf2\x5b\xb9\x42\x99\xfe\x61\x81\x28\x7b\x60\x89\xf3\x75\x26\x7a\xde\xd4\x3e\xf8\x5b\x4c\x34\xb2\x57\x39\x67\x69\xfd\x17\x8e\x77\xb0\x7a\x6c\x32\xfe\xcc\x80\xfd\x1e\xae\xcb\x9a\x21\x51\x4c\xd0\xee\x87\xef\x06\xa4\x57\x12\xec\xe7\x84\xf5\x8b\x7f\xf0\x25\xe4\x5f\x5b\x3a\x6b\xee\xb5\xc5\x84\x5f\xa9\x03\x6a\x6f\x52\x85\x08\xda\x33\x4b\x27\x96\x4e\x6e\x56\x79\xcb\xdf\x9e\x7e\x75\x7a\x05\x61\xee\x85\x59\x1b\x58\xb9\x17\x10\x6e\xac\xaa\xfe\xc4\xed\x64\x4e\xb8\x73\xed\x52\xf0\xd9\x8a\xcd\x84\x73\x5a\x97\x86\x8e\x9c\x5e\x4a\x88\x58\xab\x5f\xe9\x2c\x30\x9f\x60\x24\xfe\x5a\xc9\x5a\xd6\x9a\xa0\x19\x91\xd5\xde\x98\xb5\x86\xb0\xe2\x54\xe6\xa5\xbd\x1f\xb5\x08\x9a\x2d\xb5\x9f\xcc\xd9\xee\x13\x6c\x5d\xdf\x59\x45\x86\x25\xd2\x58\xc6\xd1\x85\x7b\x3d\xdf\x13\x34\xaf\x2c\x9c\xa6\xf7\xaa\x9f\x70\x95\x33\x94\xdf\x74\xde\x1b\x42\x99\xc4\xaf\x94\xb0\xbd\x07\x08\xfc\x29\x97\xf8\x0d\x36\xfa\x11\x9e\x14\x58\xdc\x59\xd6\x77\x8f\x30\x20\xe7\x38\x1a\x3a\x39\xfa\x1f\x66\xeb\xec\xee\xe4\x9f\x7c\x49\x98\xe6\x28\x08\x85\x4d\x5e\x6e\x7f\xa6\x9e\x1c\xf1\x68\x73\x20\x38\x77\x07\x26\x26\xb3\x85\xd0\xbf\x72\xc8\xeb\x40\xda\x2d\x21\x75\xc2\x8d\x9f\x7f\xa2\xda\xea\xb4\x08\xec\x8d\x2b\xb8\x6c\x7a\x2d\x09\xbf\xed\xc6\x36\x74\xf5\xdb\x13\xac\xb3\x67\x3e\x99\xbe\x47\x81\x60\x59\x12\x70\x73\xbe\xff\x22\x42\xb9\xe9\xc0\xfe\xba\xb5\x60\xe0\x9d\x9e\xdf\x68\x89\x46\x27\xc1\x6b\xdd\xc3\xdf\xc9\x60\x27\xf4\x17\x18\x84\xb7\x17\x4a\x11\xc6\x3c\x06\xdb\x67\x1a\x14\x33\xe1\xc7\x21\x2a\xd9\x64\x30\x9f\x90\xb7\xd4\x45\x38\x45\xed\x00\x21\x68\xf5\x8e\xb1\x8e\x63\xca\x84\x75\xb9\x2c\xd3\x73\x36\xe7\x31\xb1\x33\xdf\x71\xb3\xd3\x6b\x29\x82\x70\xe0\x78\x99\xbf\xf7\x15\x42\x85\x6a\x7f\xda\x5f\xf8\xf3\x5c\x96\x64\x9c\x5e\x47\x38\xb4\xc9\xf7\x79\xf6\x55\x21\xc2\xc7\x1f\x63\xbc\x2e\xcf\x32\x09\x4f\x02\x06\xa6\x73\xaf\x5c\x41\x18\x38\x45\x77\x74\x0f\x5f\x21\xa8\xe5\xfc\x74\x3c\x2f\xf1\x9d\x81\x93\xb9\xd7\x9f\x2c\xf0\xf6\x23\xbc\x8b\xfe\x56\xca\xcf\x62\x45\x48\x6e\x3c\x97\xf5\x22\x68\x2f\xc1\x5c\xf5\xd5\x39\xae\x0d\x27\x08\xeb\x7f\x37\x46\xf7\x75\x4b\x13\xaa\x72\x05\x37\x75\x46\xf1\x10\xf2\x34\x85\x66\xfa\x4c\xee\x5c\x1d\x8c\x2b\x86\x3e\x35\x7a\x04\xfd\x9c\x92\x8c\x8c\x55\xf1\x84\xec\xfa\x15\x2d\xa7\x64\x52\x08\x86\x5b\xcd\xcb\x2c\x7a\xc2\x09\xdd\x69\xb7\xb6\xaf\x91\xf1\x26\xe4\xc5\x73\x7e\x51\x6d\xfa\xcd\x80\xab\xf2\x06\xf3\xf5\xcf\xde\x33\x70\x2e\xba\x64\x49\xd0\x71\x45\xfa\x87\x47\x7b\x76\x6b\x4c\x2b\xbe\xc9\xfc\x57\xa8\x23\xe5\xe1\xe6\x59\x12\x84\xfa\x4e\xee\x50\xb6\x4f\x0c\xc2\xac\xd5\x8b\x33\xd5\xf8\x8e\x4d\x41\x11\x2e\x5a\x3e\x9b\x10\x20\x48\x6d\x18\xd9\x23\xe8\x26\x46\x58\xfb\xa1\xf4\xe5\xd5\xa2\x76\x82\x79\xc8\xd2\x69\xdb\x32\x2b\x09\xca\x87\x35\xb4\x2c\xff\x7f\x98\x69\x7a\xe4\xed\x02\xb7\xe3\x04\x1d\xad\x89\xba\x94\xb7\xb1\x84\x52\xb5\x05\x03\x17\xc6\xad\xa6\x20\x2c\xb5\x28\xc4\x27\xe1\x08\x61\x9e\x8b\x87\x5b\x4f\xa8\x26\x61\x4d\xa8\xbc\xd8\xdb\x33\x95\x84\xa5\x72\x8c\x2d\x07\x76\xe8\x13\x4e\x6a\x3f\x69\x57\x4a\x8d\x60\xc2\x7a\x95\xf7\x51\x2f\xd9\x99\x04\xfb\x55\x73\x7d\x5b\xa5\xad\x08\xc2\x49\xcf\xc2\x33\x2a\x72\x09\xf3\xbd\xf8\xaf\x2f\xc9\x89\x65\xe2\x73\xf7\xef\x82\xd5\x05\xbb\x09\x3d\xee\x87\xbb\x7e\x6e\x93\x26\xb4\x99\x67\x9f\x69\x52\x4f\x22\x7c\x52\x5f\xdc\xb4\xe6\x07\x0f\x61\x93\xcc\xfe\xb6\xf2\x78\x21\xc2\xcb\xb0\x2f\x5a\xb6\xbc\x66\x04\xef\xc8\x3d\xc3\xec\x1f\xe6\x12\x9a\x03\x4a\x32\xca\x93\xf4\x08\x8d\x12\x6e\x0a\x65\xba\x9a\x04\x3e\xe9\x45\x6b\x37\x67\x09\x10\xd8\x5a\x1b\x1d\x8a\x6b\xc6\x18\x98\x2e\x31\xc7\x3e\xe6\x87\x2a\xa1\x21\x7d\x82\xff\xe0\x65\x7d\xe6\xbf\x72\xad\xc2\x38\x51\x2d\x88\x9b\xd0\x22\xd0\x91\xfd\xb9\xfb\x3b\x03\xc1\xd2\xd2\x4f\xbb\xc5\x97\xd3\x3f\xdc\x15\x12\xb9\xe8\xab\x3c\xc0\xf8\x87\x83\x13\xbd\xd8\x50\xc2\x4d\x90\x90\xba\x2f\xfe\x21\x96\x93\x20\xea\x9a\x32\xa2\xba\x6a\xf7\x14\xc4\x9d\xd7\xe7\x5f\x94\xc4\x4a\x38\x19\x94\x3e\x6f\xb9\xeb\x39\xc2\xd2\xee\x55\x01\x7b\x3f\x24\x4d\xc1\x42\xc5\x77\x15\x9e\xca\x07\x08\xb1\x89\x77\x96\x36\xf9\xa6\x11\x24\x5a\xb2\x1e\x75\x9e\xc8\x23\x68\x57\x74\xdc\x28\x37\x3f\x48\x38\xe7\x31\x5b\xc9\xf3\xee\x09\x42\x89\x5b\x2e\x57\xcb\x9c\x50\xc2\xdd\x1f\x2f\xad\x8f\x42\x97\xa0\xe3\xda\x99\x49\x71\xf3\x08\xfa\x5a\xbf\xaf\xaa\xab\xb8\x12\x94\x54\xae\x0e\xac\xfa\xec\x42\x50\x9b\x57\x64\x61\x97\x69\x43\xa8\xfe\x69\x20\xd2\x16\x1c\xca\x04\xbf\xdc\x8f\xfc\x0e\x3d\x7f\x42\xaf\xe6\x7b\xd1\x7c\xdb\x5e\x42\x76\xfe\xfd\x0b\x42\xe5\x4f\x09\x3d\x59\x5f\x5c\xe2\xea\xeb\x08\x16\x3b\x76\x87\x0d\xce\xa8\x24\x38\xdf\x3d\x11\x7a\x59\x34\x93\x10\xb0\xbd\xda\x85\x29\xe0\x4d\xd8\x76\x31\xe1\xad\xae\xe9\x26\x82\xaa\xc5\xe2\x5a\x61\xf6\x11\x42\xd4\xc8\xe0\x6e\x6d\xa7\x3a\xc2\x89\xd9\x0f\xdc\xea\xae\x7e\x24\x0c\xc9\x35\xfd\x60\x9d\x96\x46\xe0\x6a\x57\xa9\xd3\x8d\xbd\x4d\x08\x6d\xab\x4e\x18\x7a\x79\x85\x30\x3b\xbd\xed\x86\x4b\x68\x16\x13\x63\x6f\x38\xbf\x54\x3f\xb8\x49\x68\xe8\x12\xdd\x19\x99\x90\x41\xd8\xc6\x76\x22\x79\xb6\x61\x11\x41\x3e\x8e\x63\xd7\x1e\xe1\x6a\x82\x70\x74\xf0\x96\x11\x69\x3b\xc2\x1b\xc1\xcb\x56\xca\x32\xe5\x04\xe5\x17\x35\x81\x76\x0f\xcb\x09\x91\x5e\x32\xd6\x2d\x4b\xcb\x09\x55\x61\xed\xc5\x77\x8d\x8e\x11\x2e\xfb\xbe\x0e\x6e\x7d\x72\x9d\x50\x77\x31\xcd\x9b\xff\xd5\x01\xc2\xe5\x5f\xc7\x47\x15\x6d\xf2\x08\xfb\x78\xdf\x68\x44\xbc\x7a\x49\x48\xe3\xf9\x66\x7f\xa9\x98\x49\x18\x9e\x9b\xb0\xa0\xd0\xba\x95\xa0\x78\x96\xc7\xe9\xef\xc8\xc6\xe7\xeb\xd8\xb2\x1c\x27\xc2\xe0\xe0\xca\x1d\x0b\xd2\x37\x13\x12\x2d\x72\xad\x3e\x8a\x5f\x62\x22\x49\x2f\x69\x5a\x91\x84\x2b\xe1\x60\x73\xde\xd1\xc4\xc1\x7d\x84\xf1\x6f\x5d\x21\xe2\x9c\x91\x84\xd5\xab\x23\x39\x7d\x77\xd9\x11\xb4\xc6\x16\x8f\x5f\xfa\x19\xcc\x84\xa9\xe1\xaf\xd8\xb3\x81\x2d\x84\xb0\x07\xc1\x3f\x98\x02\x77\x08\x67\x37\x85\xba\x17\xf7\x95\x12\x06\xf8\x73\x1b\xa3\x3e\x7b\x11\x76\xfc\xc9\x31\x8f\xd3\xb4\xfe\x2f\x7c\x1a\x73\x71\x4e\x5a\xb9\x83\x70\x47\x33\xd5\xcf\xeb\xc2\x22\x82\x15\xc7\xab\x0d\x35\x0b\xd4\x08\xb3\x39\x36\x4f\x3f\xf1\x20\x94\x30\x62\x5b\x29\xde\x3a\xe0\x4b\xd0\x1b\xf2\xbf\xf5\xa9\xec\x2b\x03\x5e\x8f\xb6\x19\x69\x7d\x68\x20\x38\x84\x6f\x09\x0f\x7a\x75\x89\x90\xfa\xf8\x60\xda\x52\xab\x2c\x42\xd1\xbe\x53\x36\xed\x3e\x25\x04\xa7\x67\x14\xb8\x68\x77\x33\x21\x3d\x6b\xe6\xf1\x73\xb3\xc3\x09\xbb\x93\xe6\x9c\xeb\x4e\x38\x4d\x10\xfc\xcd\xbe\xe7\xee\x9e\x3a\xc2\x03\xd7\xe2\xa1\x23\x9a\x3f\x19\xa8\x74\x1e\xab\x09\xfe\x31\x8d\x50\xbd\xa6\xa7\x1b\x72\xdf\x19\x18\x93\x1f\xd5\xda\xd9\xca\x24\x9c\x28\xd2\x9a\xdb\xd7\xd9\x41\x78\x29\x72\x31\x8a\x2f\xfa\x08\x41\x77\xa8\xbe\xb6\xee\xea\x11\x42\xda\x1b\xf3\x3b\x33\x23\x8b\x09\x62\x72\xd6\xdc\x07\x1d\x34\x08\x3e\x5b\x53\xf8\x12\xb6\x94\x13\xd4\x2d\xff\x44\x2c\x9c\x6d\x47\x10\xfd\xe4\x3a\x7a\xf6\xb7\xfb\x94\x22\xac\xaf\x71\x3b\x20\xdb\x8e\x60\xb1\x95\x4c\x86\x4d\xf6\x32\xe1\xc6\x3e\xe7\xe4\xbd\xe0\x1d\x04\x2d\xcb\x8b\xd7\x6f\xb8\xdf\x20\x0c\xbb\x28\x5f\xad\xfd\xde\x49\x78\xb0\x56\xfc\xec\xf5\xae\x14\xc2\xf2\x63\x5f\xdc\x8e\x9b\x5f\x27\x9c\x62\x79\xa3\xb5\x6c\x7d\x2e\x41\x68\xc1\x5b\xd5\xab\xd3\xaf\x10\x7c\x52\xba\xed\x9f\x47\x1d\x63\x82\x87\x6d\xd5\xc5\x6d\xf6\x35\x84\x23\xc1\x1d\xad\xfb\x9b\x5a\x99\xd0\xf5\x9b\x11\xf4\xb7\xe8\xcc\xf1\x7e\x6d\xb1\xaf\x86\x90\x7a\xaa\xec\xd5\x36\x71\x1f\x82\x50\x6e\xda\xda\xf5\xbc\x49\x04\x75\x07\xde\xb6\xc5\x89\xd7\x08\xdc\x9f\xb6\x1d\x28\xf3\xdb\x4f\xf8\x79\x68\xe3\xf4\x61\xc9\x4a\x42\xe6\xf3\x15\x41\x6d\x35\x79\x04\xbd\xc2\x15\xf7\x3c\x55\x7b\x08\xbd\xa1\x27\xf7\x1d\x9e\xd1\x4b\x48\x4f\x70\x6e\xfc\xfe\xe8\x05\xa1\x26\xb0\xc0\xa0\xfa\x60\x0b\x21\x52\x29\xc6\xd1\xbb\x74\x2b\x41\x46\xf2\x6b\xbc\xb9\x7c\x0c\x21\x0f\xff\x1f\x5f\x7f\x1a\xcd\xe5\xff\xfe\x71\xbf\xa5\x24\x91\x48\x84\x32\x14\x2a\x91\xb9\x50\xf9\x1c\x84\x0c\x21\x32\x87\x50\x94\x4a\x19\x32\x54\x92\x39\x4d\x32\x95\x22\x42\xe6\x34\x23\x53\x39\x15\x32\x95\x21\x43\x25\x29\x2a\x95\x26\x51\x79\x69\xb2\x97\xef\xde\xeb\x9f\xbd\xae\xdf\xba\x6e\x79\xac\xe7\x71\xb8\x63\xf9\x9c\xe7\xfb\x7d\xc3\x62\x3e\xe5\x88\x7f\x1a\x03\xc9\x8f\xfe\x1b\xff\x1b\x1d\xe4\x78\x53\xf0\x23\x74\x0d\x21\xf3\xb2\xcc\xe2\x27\x45\x9c\x84\x3a\x8e\xc2\x80\x34\x4d\x97\xff\x85\x84\x23\x76\x33\x34\x64\x37\x13\xee\x66\xea\x2f\x60\x53\x51\x26\xfc\x5d\x1d\x9c\xa5\xac\x6b\x45\x70\x58\xf3\x8c\x4d\xd1\x75\xc7\x24\xac\x32\x6a\x0a\xbf\x96\xb4\x92\x70\x6c\xe3\xad\x20\x95\xe5\xc2\x84\xc7\xaa\x82\xc3\x6c\x05\xfe\x04\xd7\xd5\x8e\x66\x6a\xa7\x9c\x09\x05\x47\xcc\x3a\xa5\xb3\xac\x09\xe1\x37\xdf\xae\xa2\x37\xca\x04\x97\xc7\x9b\xdf\x47\xbd\xbd\x41\xd0\x9b\xbe\x5d\xa6\xc1\x55\x97\xc0\x79\x58\x8f\xd1\xfb\xfa\x80\x70\xe1\xd6\x90\xd3\xfe\xde\x52\x82\x53\x43\xcc\xb1\x84\x51\x86\x10\x21\xe3\xb3\x8f\x73\xa7\x3d\xe1\xf3\x23\xe5\x3f\x85\xe7\xbc\x08\xe7\x0a\x76\x2f\xdc\x6f\x56\x4b\x58\x2a\x2f\xfb\xf1\x3f\x2c\x16\xd8\x33\x45\x9c\xaf\x8b\xb0\xa2\xa1\x6a\xff\x7f\xe5\x5a\x36\xdb\x03\xde\xab\xe5\x84\xc0\x19\x2b\x87\x76\x9c\x34\x23\x54\x2d\x6b\xbc\x52\x20\xfe\x88\xe0\xf5\xcd\x6a\xd3\xbc\x17\x15\x84\xd5\x42\xa7\x64\xbd\x17\x47\x11\x76\x44\x3f\x31\x32\xcb\x08\x27\xe8\xda\x7d\x78\x94\x15\xcf\x43\x30\x0e\x0c\x74\xbf\x59\xa8\x38\xa9\x9c\x38\xaf\x54\x4e\x3d\x36\x84\xfe\xd7\xe2\xdf\x86\x14\xbf\x57\x82\x5d\x7d\x70\xa7\x6b\xe3\x5a\xc2\x0b\xb6\xdf\x6c\x9c\x7f\xc0\x82\xdc\x80\x78\x65\xd1\xf1\x54\x02\xc7\x23\xa3\xe9\x02\x1a\xc5\x84\x2f\x8d\x32\xc7\x63\x12\xef\x12\xa2\x99\x59\x53\xe6\x85\xa4\x4e\x42\xf8\x9c\x1c\xee\xe5\xb3\x73\x08\xec\xe1\xb9\xf7\x0d\xdb\xf2\x09\x9f\xbf\x9a\x5d\x97\x99\x28\xc2\x27\xd6\xd8\x34\xa5\x28\x11\x38\x02\x85\x12\xaf\x3f\x96\x24\x6c\x09\x21\x13\xbf\x7c\x09\x02\x67\x41\xae\x77\xd0\x06\x5e\x42\x42\x61\x7f\xce\xc3\x34\x51\xc2\x39\x01\x13\xd7\xc6\x37\xd7\x08\x92\xbb\x38\x8a\xd6\xf5\xd8\x11\x6c\x4d\x4d\x7c\xbe\x68\x27\x33\x63\xea\xc7\x84\xf7\x98\x7f\x20\x64\x66\xfc\x35\x10\x2f\x7d\x4d\x88\x2b\x93\x3f\x7f\xdf\x69\x80\xc6\x64\xd7\x5c\xb2\x75\xfb\x4e\x60\xde\x56\x1a\x7c\xf1\xfb\x48\x50\x88\x8b\x29\xd4\x5a\x72\x97\x60\x1d\x30\x12\xbf\xf2\xe3\x23\xc2\xaf\x99\xef\xae\xef\xaf\x7b\x4c\x10\xdb\xd8\x38\xbe\x26\xb1\x83\xb0\x35\x63\x8b\xf2\x32\x2a\x22\xa4\x4f\xeb\xbf\xfe\xfa\xaa\x33\x61\xd6\x93\xbd\xcb\xc7\x5e\xf9\x32\xf0\x2b\x78\x93\x26\xc2\xd6\x4e\x30\xf6\x5a\xf3\x56\x78\x02\xc9\x2d\x0b\x2c\xaf\xec\xa9\x66\x90\x74\xd3\xd3\x6a\xcf\x94\x32\x42\xaf\x46\xde\xea\x04\xa9\x50\x82\x4f\xd9\x2c\x53\x93\x07\xe9\x84\x71\xb5\xda\xb9\xcf\xef\xae\xfb\x5f\x30\xd9\x16\x13\xd5\x7d\x50\x9b\x20\xe0\xc7\x3f\xff\xef\x6d\x43\x82\x5d\x59\x5e\xc1\xb0\x9c\x29\x41\x72\x7a\xfc\x53\x41\x59\x5d\x42\x45\x57\xa6\xf1\xd7\xf4\x2a\x02\x9f\x98\xc5\x94\x8d\xa1\xad\x04\x09\x77\xde\x06\x63\x8d\x7e\x06\x05\x07\x6d\x14\xb3\xaa\x86\x09\x6d\xfb\x19\x55\xe3\x89\xd1\x25\xc1\x39\x7b\x83\x47\xb2\x08\x75\x5f\x76\xb5\xf2\x3c\x49\x25\x38\x17\x98\xb5\x3c\x6f\x79\x44\x70\x49\x75\x6c\x6f\x1f\x3d\x43\xf8\xf6\x95\x71\x12\xbd\x59\xc9\x40\x77\xe4\xba\x8e\x62\x84\x1f\x81\x2d\xfb\x81\xd2\xa1\x0b\x17\x09\x33\x1d\xa5\xae\x4b\x7c\xba\x4b\x18\x28\x2b\xaa\x12\x8c\xa9\x27\xec\x93\x50\x48\x0a\x5b\xef\x47\x18\x5c\xb9\xb9\xed\xe5\x1d\x5d\x82\x75\xe8\x90\xa4\x04\x6f\x31\x61\xa6\x5a\x8e\xbc\xd2\x04\xaa\xbb\xa6\x8f\x9b\xb1\x55\x33\xff\xca\x9e\xc3\x15\x7a\xff\x61\x41\xf1\x70\xf8\xd9\xe2\x01\x42\x83\xb7\xd4\x12\x41\xa5\x83\x84\x44\x6b\xf6\x27\x27\xd6\x05\x12\x9a\x8a\x5c\x9c\xe6\xab\x57\x33\xff\x4a\xe5\x91\xb4\xed\xfe\xe9\x03\x84\xaa\xa3\xdc\x47\x7c\x26\x90\xf8\xf2\xd6\xba\x93\xd5\x29\x84\x9d\x07\x62\x72\xf7\x4c\x14\xd5\xbf\xf9\xb7\xdf\xa8\x54\x13\x96\x84\x2d\x95\xb5\xd6\xcd\x24\xc4\x3e\xfd\x7e\xc4\x34\xbc\x9f\x70\xb5\xfc\x84\x34\x8f\x50\x3a\x21\xb7\x94\x64\x9e\x55\x74\x11\xfc\xaf\x68\xbb\x7c\x58\xfa\x94\x60\xad\x1c\x7b\x4c\xaf\x2d\x9b\x20\x92\xfa\xed\x6c\x4e\x74\x08\xe1\xd6\xc6\x45\x17\xed\x37\xc8\x13\x4e\xb4\x06\x9e\x69\x5e\x1c\x4e\x08\x6d\x2b\x98\x3b\x4b\xfa\x04\xe1\xe5\x78\x8d\xf5\x9f\x95\x4d\x84\x93\x06\x3c\x4f\x47\x0f\x9c\x20\xd4\xaf\x5e\xf2\xc8\xe4\xf7\x26\xc2\xbc\x88\x45\x17\xa7\xdf\xc8\x25\x7c\xdc\x62\xef\xcf\x4c\xa0\x70\x60\xc3\xc1\x77\x5f\xda\x26\x15\x16\x0f\xcf\x25\xed\xa3\x9b\x08\x51\x62\xba\x71\x5f\x2b\x2c\x26\x81\xfb\x29\xdf\x72\xc3\x2a\x3d\x42\x58\x82\xfd\x3c\x67\x4d\x0b\x42\x58\x5b\x97\xd6\x87\xf9\xc9\x04\xa3\x55\x9f\x14\xfb\xb2\x6b\x08\xe1\x09\x63\x01\x42\x2f\xde\x12\x42\xde\x3f\xd3\x3d\x61\xd9\x46\x78\x7b\xde\x66\xa9\xfd\xe0\x5b\xc2\x3b\x5e\xe3\x73\xc3\x2d\x4f\x09\xf3\xce\x1d\xd9\xce\x5f\x10\x47\x70\x5e\xd2\x7d\xe5\x53\x4b\x2c\xe1\xe7\xe3\x65\x53\xa7\x49\xa5\x13\x32\xce\x15\xf9\x0c\xab\xc5\x12\x5e\xad\xe6\xee\x2a\x18\xf5\x27\x38\xda\x70\x15\x0b\x25\xf1\x12\x42\xde\x95\xcd\xd2\xa9\x4b\x25\xcc\xcc\x96\xe1\x38\x51\xef\xfa\xbf\x70\x46\xe6\x58\x69\x9b\x97\x36\xe1\xbe\xfd\xfd\xc1\x55\x9a\x5e\x84\xe6\xdd\xaa\x9b\x59\x47\x04\x09\xc7\xc6\xaf\xe5\xfb\x0d\x5a\x11\x32\x93\x4c\x3d\xcc\xaa\xac\x09\xdb\xde\x06\x7c\xd3\x18\xa9\x66\x70\x60\xb7\xe7\x5e\x53\xb7\x99\x84\x30\x77\xa3\x6a\xd9\x13\x19\x0c\xfa\x9f\x0d\xc9\xb7\x8c\xc4\x11\x0e\x2c\x78\xea\x9a\xbe\xa6\x8e\xb0\xdb\x6f\xbd\x8f\x0d\x5f\x3c\x81\x83\x5f\x84\x67\xec\x98\x32\x21\xb6\xcb\x6c\x75\xf6\x3c\x23\x82\x95\xab\xae\xf4\xcb\x8b\xab\x09\xa2\x86\xb9\x22\x57\x04\xbe\xb2\xd0\xdd\xda\xee\x98\xfd\xdd\x99\x41\xe6\x8b\x5c\x1e\x0b\x31\x79\x42\xe2\x8d\x65\x36\xab\xeb\xd6\x12\x8a\x3c\x67\x5b\x24\xb5\xa7\x33\xd8\x2a\x55\xb5\xb0\x2c\xf0\x36\xe1\xe1\x3a\xb3\xa1\x1e\x9d\xcb\x0c\xfe\xce\x12\xf7\x51\x98\x5b\xc2\x20\xd8\x6c\xc7\xb0\x5f\xde\x6d\xc2\x78\x6a\x79\xc7\x67\xf5\x73\x0c\x66\x2e\xfd\x56\xf3\xe9\x4f\x32\x83\x5c\xe1\xf8\xbf\x6d\x57\x9e\x12\x3c\xa6\x94\xfd\xe0\xdb\x5a\x4f\xe0\x0b\x5d\xd4\x76\x0f\x35\x04\x27\xff\x5b\xdb\x3e\x3c\xba\x4e\xc8\xb0\x70\xce\xfd\x70\xdc\x8a\x70\xc0\xec\xce\xb2\xf1\x8e\x00\xc2\xdb\x57\xef\x0d\x3e\x0b\xfa\x11\xcc\x1f\xa5\xbf\x7b\xd2\x6c\x47\x58\x18\x2f\x1c\x12\x59\xb1\x89\xf0\xbc\xa6\x6d\x5e\x72\x8e\x0a\xc1\xf8\x98\x6e\xa8\x73\xed\xa5\x4a\xf4\x2e\xde\x21\x96\xf7\x75\x0a\x61\x9a\x4a\xa6\x89\xb2\xef\x29\xc2\x85\xac\xf9\x6f\x86\xa2\xe5\xff\x17\xbc\x2d\x8e\x69\x3e\xc8\x0a\xfa\x5f\x60\x34\x3f\xef\x56\x0e\xb2\x23\x5c\xb7\xd6\x33\x97\x3b\x5e\x40\x30\x68\xbe\x2c\xb0\xf9\xcd\x5c\x82\xbe\x6a\x73\x21\xbb\xe8\x45\x02\xf7\x9a\x1f\x9e\x8a\x5a\x9e\x0c\x2c\x1f\x4d\x9d\x99\xd2\xde\x48\x60\x74\x0e\xb6\x97\xea\x14\x10\x06\x36\xf1\xa4\x7d\xb2\xfe\x44\xc8\x90\x98\x2a\xa8\x48\x7d\x0c\x3e\x6d\x5b\xb0\x6d\xc4\xfb\x26\xa1\x90\xc3\x71\x56\x8b\xfd\x29\x42\xe6\xeb\xd8\x27\x5f\x87\x36\x32\x78\x54\x51\xaf\x71\x50\xdb\x8b\x70\x7d\x43\xfa\x59\xb3\x3d\x7b\x09\x9b\x37\x4d\xbf\xc4\xe5\x72\x89\x90\xc9\xe5\x67\xbe\x7b\xad\x3a\xe1\xec\xc2\xe1\x66\x1f\xef\xe5\x93\xb0\xdf\x3e\x94\x7b\xfb\x79\xa9\xff\x05\xed\xb5\x9c\x79\x62\xa9\x5f\x59\xb0\x1d\x1d\x33\x91\x7e\xc9\x4b\x30\x97\x9d\xbd\xc8\x42\xf6\x0f\x0b\x19\x4f\x3f\xf5\x7c\xb1\x11\xa6\x7f\x90\x6b\x5a\x22\xbe\x8c\x5b\x89\xa0\x77\xbc\xc7\x5e\x3f\x79\x94\x85\xae\xa7\xb7\x6f\xe6\x1c\xd5\x21\x18\x7b\xdf\x38\xb7\x3e\x58\x93\x50\xb8\xc6\xd6\xe2\x5e\xa1\x27\x61\xf1\xb7\x73\x61\xf2\x02\x9e\x84\x6c\xe9\xa9\xb9\xd2\x07\xb3\x19\x68\x9e\x39\x1d\x10\xb5\xbe\x9a\x70\x92\xcf\x3a\xe1\xed\x8c\x1a\xc2\x43\xb6\xd3\xfd\x36\x73\x5b\x09\x0b\x4f\x14\x5e\x32\xb8\xd2\x4e\x28\x2e\x2d\xde\x2f\x3e\xbf\x86\x90\xa5\xa8\xd6\xe7\x7f\xe5\x10\x81\xfb\x47\xdc\xe0\x91\x08\x37\x82\x96\xd5\xad\x8b\xd7\xb3\xbf\xb3\xb0\xaf\x73\x59\xb5\xe8\x9b\x0e\x06\x7b\x16\xb3\xbc\x07\x82\xd6\x13\xea\x2c\x15\xae\x5a\xef\xfc\x48\xd0\xcc\x0a\x79\xda\xde\xff\x99\xe0\xc0\x99\x9c\xe2\xa1\x5d\x4f\x68\x6e\x3b\x3c\xe3\x98\xee\x43\x82\xa7\xe4\x1f\x67\xf9\x17\x16\x84\x65\x25\xeb\x77\xa7\x7f\xe3\x9d\x04\xe9\x70\xdf\xf1\xf9\xd7\x7e\xb0\x20\xc9\xeb\xd0\xd9\xfc\xc0\x90\x10\xda\xd5\xf0\xc5\x3d\x64\x11\x21\xb7\x40\x9d\x7f\x7a\xe5\x21\xe6\x5f\x99\xfb\x5b\xf8\xfc\xf7\x07\x9c\x04\xf7\x55\x8a\x79\x6f\xfa\x39\x09\xcb\x8d\xb7\xe6\xac\x78\x32\x8d\x70\x35\x5f\x44\xfe\xc3\xc9\xa7\x84\x68\xde\x05\x49\xb3\xe6\xd7\x11\x78\x04\x34\x93\xec\x2a\x8b\x09\x6b\x38\x96\x06\x9e\x11\xa8\x23\xbc\x93\x35\xb2\x1e\x72\xaf\x22\x3c\x35\xb3\x9c\xf6\x8e\xab\x84\x70\x7b\xdd\xad\x8a\xe4\xc3\x7d\x04\xad\x7b\x33\x02\xfe\x4e\x94\xe6\x47\x8f\x2c\xb7\x5e\xee\x27\xc8\x93\xc1\xae\x45\x07\x1b\x08\xab\xdb\x6a\x37\x57\x46\x37\x10\xdc\xbf\x45\x16\xc5\xe5\x3f\x22\x1c\x9f\xe6\x74\xcc\x36\x7c\x80\xb0\x3b\xdf\x87\x29\x9f\x18\x29\x89\x6b\x04\x64\x26\xdf\x22\x14\x75\x0b\xeb\x57\xaa\x1e\x64\x90\xa3\xef\x94\xb6\x72\xbb\x2e\x41\x52\x43\x94\x43\xa2\x3c\x93\x90\xb1\x71\x7a\xb5\x8a\x76\x1a\x83\x69\xed\x35\xa9\xd1\x79\x8e\x84\xd1\x13\x73\x1e\x76\x95\xa7\x12\x7c\x9c\x5a\x76\x89\xea\x6f\x23\x1c\x4e\x7e\xb5\x30\x2a\xdb\x95\x20\xf0\xfd\x80\x28\x23\xbf\x9b\x81\xe4\x25\x9b\x19\x33\x1d\x36\x11\x5c\xa6\x7c\xe2\xe9\xf9\x6a\x4a\x08\xe9\x3c\xb8\x87\xb7\xf3\x6a\x25\x7c\x96\xab\xf0\x8a\x6e\xda\x4c\xff\x60\x13\x53\xce\x5b\x95\xf7\x91\x85\x88\x4f\x62\x43\x11\x52\x35\x95\xa8\xdf\xa2\x32\x78\xf2\xaf\x16\xfd\xc3\x91\x35\xbe\x4d\xbf\x9a\x7a\x2a\xc1\x28\x5c\xd8\x32\xb8\xe1\x37\x0b\xc5\xdd\xc2\xfb\x87\xf3\x56\xd3\x3f\xdc\x89\x17\x35\x29\xec\x2e\x62\x70\x97\x57\x2f\xee\xeb\x44\x29\x50\xf5\x50\xf7\xe4\xf6\x9f\x84\xdc\xd6\x3f\x19\xac\xe7\x09\x93\x8a\x69\xce\xb7\x4a\xbb\x4d\xeb\x09\x6f\x97\xf5\x1f\xf6\xe2\x5a\x48\x10\x77\x38\xd2\x5b\x56\x2c\x35\x09\x46\xf5\x0a\xa2\x5f\xa7\x9c\x26\x24\xec\x08\xe6\x65\x3f\xf7\x9b\x85\xf8\x29\x37\x18\x99\x05\xd2\x84\x3e\xd3\x4b\xa7\x7f\x15\xea\x11\xb6\x7b\xf0\x99\xae\x36\x10\x24\x68\x1a\xae\x3b\x68\x1a\xe3\xc0\x60\x7e\xb5\xfc\xf6\x88\x13\x02\x84\x75\x53\x65\x59\xd3\x0f\x0b\x10\x4e\xd5\xbc\x53\x1b\xc8\x4d\x21\x5c\xf0\xf3\xd7\x7a\xd8\x71\x88\xf0\x97\x43\xcf\x6f\xac\x62\x3f\x61\x74\xed\xb7\x84\xfb\xcb\x5c\x08\x1b\x5b\xe7\xbc\xe2\xbf\x7c\x8a\x90\x12\x74\xd8\x27\xe5\xb2\x13\x21\x5a\x73\xfc\xcb\x2a\xb6\x42\x06\x0b\x8f\x2c\x1d\x7e\xab\xb2\x89\x70\xc7\xde\xa4\xba\x2e\x3b\x9d\xfe\x15\xc5\x33\x6a\xc2\xdc\xf7\x36\x12\x9a\xc6\xd4\x5f\xa8\xc8\x4d\x2e\x89\x6f\x9f\xc8\x58\x1c\x1a\x61\xc1\x20\xc8\xc2\xcd\xb8\xa7\x8b\x05\x19\xb3\x29\xf7\x0f\x5d\x1d\x63\x61\x90\x53\x31\xe8\xf8\x7a\x11\x82\x8a\xe5\xd9\xa0\xe8\xb5\x5e\xcc\xbf\xb2\xc9\xb7\xb3\xee\x5a\x69\x5d\x25\x4c\xbc\xf6\xc8\xbd\x30\xd3\x23\x30\xab\xc3\xae\x28\x0d\x44\x4c\xc2\xfd\xf7\x79\x79\xdd\xfb\x76\x11\x6e\x28\x3c\x28\x90\x70\xdb\x49\x70\x68\x96\x1a\x08\xea\x19\x64\xfd\xc3\xff\xf7\x8f\x65\x79\x08\x1b\x8e\xfb\x3f\x2e\x34\x14\x23\x74\xb1\x47\xfd\x88\xc1\x72\x42\x98\xeb\x03\xa1\x4f\xc7\x6d\x08\x9c\xb5\xbc\x72\xdf\xe2\xe5\x09\x0d\x62\x99\x47\x2e\x3a\x6b\x4d\x2a\xff\x07\xd1\x39\x21\xca\x05\xf6\x75\x2c\x48\xa4\x4f\x17\xb6\x9f\xb8\xea\x17\x6f\x1c\x74\xfb\xc6\x1d\x4b\x60\x67\x09\xe8\xd5\xbc\xe3\x21\xc8\x6b\xdf\xf6\x7c\x38\x71\x6f\xe9\xe0\x08\x5e\xd1\x15\x72\x9b\x70\x52\x61\x78\x78\x5d\xaa\x04\x83\x47\xb3\x14\x9e\xcd\x5f\x52\x47\xf8\x50\x2f\xfb\xcd\x24\x4c\x9f\xc1\x86\xbb\x67\x5d\x6d\x4e\x5a\x10\x0a\x8e\xc7\x94\xd5\xdc\x9c\x3e\xf1\xc0\x97\x39\xdf\xfc\x33\x8f\xc1\x92\x0d\xec\x8b\xc7\x9c\x95\x08\xbd\xb4\x4a\xfe\x9b\xf6\x79\x82\xdc\x94\x87\x72\x33\x77\xb5\x11\x66\x1e\x76\x3f\xf3\xc9\xf1\x01\x21\x5b\xbd\xad\xf1\x65\x75\x27\x21\xae\xf0\xf6\xb4\x1f\x37\x1a\x08\xd7\xb5\x86\x44\x7c\x95\xae\x12\x42\x7f\xcb\x8b\x3a\xbc\x39\x43\x88\xb6\x75\x59\xf7\x65\xf5\x67\x42\xb3\x44\xac\xc4\xa2\xf0\x3e\x42\x71\x95\x5f\x26\x94\x5f\x12\x7c\x62\x15\x8c\xd7\xdf\xef\x23\xa4\x44\x5f\x75\x17\xbf\xd8\x47\xf0\x17\x2a\xbe\x72\xc6\x39\x9f\x70\xc0\x65\x05\xef\xd4\x4b\x37\x09\xdc\xc7\x72\x44\x0d\x04\x0a\x09\xa7\xd8\x45\x0f\xce\x76\xcd\x27\x3c\x2b\x4a\xda\xac\xa7\x75\x97\x30\x6d\xc6\xeb\x8f\x5f\x5c\xf2\x09\xaf\x2d\x2f\x5e\xe1\x5b\x5e\x41\xa8\x9c\x19\x23\x52\x7d\xb5\x9a\x60\x2e\x54\xf9\xed\x82\x63\x29\xe1\xc6\x5d\x5d\xdb\x5e\xc7\x72\x42\xbb\x41\x5b\xf9\xf9\xac\x2b\x04\x43\xce\xaf\xae\xd9\x11\x15\x04\xa7\x5c\x99\xbf\x6f\x78\xb4\x09\x8e\x66\x53\xfb\xb0\xe2\x16\x03\x9b\x87\x5a\xca\x1b\x5a\x5c\x09\x29\xa9\x2e\xa6\x0b\xad\x96\x11\x72\xf5\x3d\x3f\xd1\xf1\x8b\x0c\x3e\x19\x9d\xb3\xfa\xa4\x64\x4e\x63\x8b\x0f\x56\xa9\xaf\x8f\xfe\xbf\xaf\xb8\x9d\x7a\x4c\xff\x66\x41\x34\x61\x74\xae\xe8\x96\x30\x29\x25\xc2\x1e\x1d\x0b\x6d\xf3\x7b\x5f\x59\x90\xf5\x9e\x19\xe0\xa7\x2e\x47\xd0\x69\xe7\x3b\x2a\xbd\x65\x1f\x61\x77\x82\x95\x7a\x65\x63\x07\x21\x37\xad\x2a\xf1\xce\x04\x0e\x9b\x76\x85\x08\x9d\x6f\x25\xdc\xb2\x60\x4a\x0e\x8a\xd7\x10\x9a\xcc\x3e\xb7\x1e\x70\x56\x23\xc4\x2d\x53\x5e\xe3\x9c\xb6\x9e\x50\xcb\xae\xdf\xe1\xd0\xab\x49\xb8\x61\xad\xc8\x1d\xe2\x3f\x95\x50\xa2\xf9\x82\x83\xd7\x5a\x8a\xa0\xb2\x2f\xce\x68\xf5\x29\x11\xc2\x48\x4e\xb3\xd2\x39\xf6\x51\x16\xf6\xd9\xf0\x7f\x74\xfe\x3c\x83\x90\x58\x24\xc6\xaf\x2a\xcf\x41\xc8\xbf\xdc\x9d\x98\x3c\xa6\x45\x58\x1b\xbd\x75\xab\x43\x9e\x28\x61\xa5\xf9\x45\xb6\xf7\xe3\xda\x04\x99\xdb\xde\x67\xbb\x6b\x37\x11\x96\xbc\xb4\x30\x9b\xee\x32\x95\xe0\x96\xe9\x7f\x4e\xdc\x23\x7c\x12\x66\x0c\x5d\x0d\x0f\xa9\x35\x20\x3c\x9f\xbe\x34\x66\xe5\x71\x83\x89\xa7\xe1\x91\x46\xfb\x7d\xd6\x04\x29\x81\xf1\x61\xd1\xfb\x6b\x09\xef\x98\x9d\x49\x9e\x41\x43\x2c\x2c\x7c\x3a\x9a\xcd\x2e\xe2\x4f\x70\x58\x74\xe4\xea\xfe\xcf\x25\x84\xbb\xb7\xdc\xaf\xce\xf6\x2b\x22\x0c\xc6\xec\xb1\x70\x6a\x2b\x21\xec\x31\xf8\x38\xdf\x4e\xb3\x92\xd0\x7b\x57\xf6\xfd\xb4\x1f\x9e\x84\x4d\x3e\xc1\xcb\x5e\xae\xda\xcb\xa0\x3b\x32\x29\x22\xe3\x6e\x1d\xa1\x2d\xf9\xb9\xf5\xf9\xda\x3a\xc2\x79\x99\x99\x91\xff\xc1\xce\x64\xca\x94\x44\xa6\x8e\xe0\xf3\xd9\xf1\x41\xf2\x44\x39\xc0\xa5\xd7\xbd\x35\xc7\x99\x60\x60\x3c\x9a\x92\x59\x7d\x84\x81\x5c\xf4\xc1\xcd\xb5\xa3\xae\x84\x79\xcd\xc7\xfb\x74\x6b\xd2\x26\x95\x3a\xdd\x3d\xc7\xbd\x0c\xc2\x09\x51\xb7\x5e\xb6\xfe\x60\xdb\x47\x30\x5b\xb7\x3d\x54\x58\xa2\x9b\x70\x88\x35\x3b\xf4\xe6\xe9\x0e\x82\xfc\x5b\x25\x6e\xfb\x9e\x76\x82\xb6\xf8\x92\x59\xba\x66\xe5\x04\xcb\x98\x77\x6f\xce\x6e\xbb\x43\xa8\xab\xda\x75\xea\xd1\xde\x6a\xc2\xf5\x9a\x43\x7a\xb4\xf1\x35\xe1\x6a\x88\xc5\xf7\xae\xb1\xb7\x04\xe3\xd6\xa7\x55\x7f\xa4\x53\x18\xf4\xe7\x0e\xe8\x32\x27\x63\x18\x2c\xb1\x0c\x7d\x16\xa6\x7f\x96\xb0\xdf\x6c\x81\xf0\x72\xaf\x7d\x84\x0c\x2d\x85\xfb\x9d\x52\x02\x84\xe0\xe9\x1b\x84\xc4\x14\x13\x19\xf8\x1d\x3f\x3e\x2c\xeb\x65\x40\xb8\xc0\x35\xcc\x59\x76\x6e\x2e\x21\xe8\xb2\xf5\xc6\x4b\x1d\xfc\x84\xe3\x5f\xf7\x0f\xc9\x28\xf1\x11\xb6\x58\x3c\xe3\xd9\x06\x4b\x06\x3c\xc9\x82\xed\x46\x77\xd2\xe8\x1f\x56\x94\xbc\x9b\x3d\xf7\x96\x35\xa1\x73\xfe\xe2\xe3\xae\x49\xbe\x84\xa1\x15\x92\xc7\x5e\x4f\x59\x49\x48\xef\xcc\x9a\xa7\xe9\xc1\x4f\x10\xab\x2f\x7a\x36\xac\x60\x4e\x78\xb9\x4c\xab\xa0\xb1\x53\x80\x30\xfe\xda\x64\x89\xe1\x66\x09\x42\x4a\xa3\x45\x3b\x2f\x2e\x11\x4e\x2f\xa9\xac\x37\x9b\x27\x40\xb8\x3a\x4f\xcb\x9f\x7b\xfb\x1a\x42\x82\xd3\x58\xf8\x77\xce\x10\x02\xf3\xf4\xc8\xc7\x37\xf9\xdd\x2c\xf4\x2a\x5f\xab\xb9\x90\x30\xc4\xc2\x65\x5d\xf6\xe0\x41\x91\x52\x42\xa9\xfb\xae\x2e\x95\xa8\x39\x04\xed\x9f\x59\x0f\x6e\x2e\xdd\x4c\x78\xc0\x21\x33\x5b\xa7\xf1\x32\x83\x87\xcf\x37\x1e\xb2\x7d\xd5\x41\x90\x91\xf9\x73\xeb\x45\x73\x15\x21\x8e\x7f\xfb\x34\x9e\xc4\x1a\x06\x57\x7a\xf9\x0e\xbe\xdd\x7b\x9e\xb0\x37\x4b\x4c\xe8\x70\xfc\x5d\x82\x41\x4f\x97\x49\xd3\xaf\x54\x06\x57\xb4\xa6\xf9\x3c\x67\xbf\x46\x10\x4c\x48\xfd\xdb\x53\x55\x45\xa8\xe6\x3a\xe8\x6b\xb7\xa4\x92\xb0\x3c\xe7\xeb\xe9\xfc\xad\x01\x84\x15\xea\x36\x83\x7f\x8e\x04\x10\xa2\xd9\xcb\x15\x9f\x0c\x79\x11\x2e\xf4\xf0\xa8\xca\x5b\xdd\x60\x10\xe0\x58\x78\xcd\x3f\x22\x80\x50\x5f\x34\xc5\xfb\x68\x6e\x18\xe1\xe6\x0e\xc7\x79\x5b\x47\x42\x09\x0f\xe3\xbe\x3d\x73\x3e\x10\x46\x18\x4f\xc0\xa9\x8a\x92\x30\x82\xe3\x7c\xdd\x50\xa7\x89\x1d\x1d\x95\xfe\x99\x6a\x65\x5f\x58\xe0\x2a\xb0\xbb\xb0\xcc\x79\x98\x85\x5d\x85\x11\x75\x66\xc3\x16\x84\xa4\x26\xfd\xc3\x2f\x7f\x55\x10\x5e\x70\x79\x77\xf5\x4f\x60\x54\xf2\x55\xcf\x25\xab\x46\x82\xfd\x1d\xcf\x29\x6f\x26\xca\xc6\x5a\x95\x4f\xad\x66\xd5\x04\x6f\xcd\xf2\x72\x5b\x6d\x35\x82\x9b\x59\x47\xd0\x25\xbe\xc5\x04\x09\xb6\x41\x4d\x85\x79\xf3\x09\x9c\xc1\xc3\x99\xbe\xdb\x24\x27\x95\xd0\xbd\x87\x22\xd6\xc4\x25\x12\x4e\x1d\xb7\x0f\xc9\x7f\x95\xc1\xa0\x7c\x5e\xe6\x33\xa3\xd8\x44\xc2\xe2\x7b\xbf\xc7\x56\x4f\x8c\x0e\x95\x85\x25\xb6\x2c\xf2\x23\xcc\x39\xfa\xdc\x53\x3a\x56\x8b\x60\x20\x5c\xce\x96\x79\x71\x3d\xe1\x96\xa1\x8f\xca\x58\xa6\x03\x81\x6f\xf0\xb7\x12\x96\xe4\x12\xd8\x7a\xbb\xa7\x6c\x17\x2d\x25\xd4\xf9\x8c\xa4\x9d\x7d\x53\x48\x78\xe0\xc1\xae\xf0\x5f\xa9\x31\x55\xd8\xbb\xa6\x6f\x07\xe1\xc1\xca\x90\x03\xe9\xd2\x4e\x84\xfb\x1e\x12\x22\xea\xb9\xfe\x93\x46\xff\x07\xe5\xce\x77\x76\xce\x8f\xf6\x33\xa8\x9a\xea\xf3\x45\xc3\xd3\x96\xc0\xf5\x7a\x31\x9b\x90\xa2\x1b\x61\xd8\x2f\xac\x64\x8c\xd7\x8d\x30\x2d\x23\xf3\xe2\x25\xbb\x59\x84\xe2\x19\x5c\x8f\x38\xb6\x0c\xb1\x50\x11\x78\xa3\xed\xa6\xd6\x4a\xfa\x07\x13\xae\xe5\xeb\x2f\xac\x59\x4c\x48\x8d\xab\xe8\x1c\x53\x8d\x21\xb4\x17\x0c\xec\x2f\x12\x17\x25\xf4\x9a\xac\x99\xfe\xea\x74\x2f\x81\x37\x52\x71\x45\x41\xf8\x53\x42\xd4\x7d\x57\xd6\x96\x77\xcf\x08\x16\xfb\x1f\x9d\x91\x5e\x53\x40\xe8\x7a\x3b\x92\xb2\xe4\x56\x29\x61\x67\x42\xd1\xbe\xbd\xf1\xc6\x84\x8d\x5d\x47\x9d\x4f\x6b\x7f\x66\xa1\xfa\xbc\xde\xd0\xf7\x29\x4b\x09\xeb\x73\x4e\xd6\xf4\x49\xf0\x12\xf6\xcc\xd4\xb4\xbb\x16\x3a\xfb\x7f\xe1\x38\x2b\xd2\xa1\x6d\xfd\xac\x49\x78\xad\xe4\x3d\x9c\xb8\x23\x94\x70\xb5\xea\xbc\xc4\xd9\x09\xb4\x33\x82\xd1\xab\x94\xbd\x09\x02\x3b\xdf\x0c\x4b\x6e\x57\x24\xcc\x7d\xb3\x23\xeb\xe9\xc3\xdd\x84\x5b\x1d\xbb\x56\xd7\xf8\x35\x30\x38\x97\x25\xb3\x62\xba\x5b\x1b\x03\xed\x87\xd3\xeb\x14\x54\x6a\x09\xaa\x12\xa3\x51\x7f\xcb\x4a\x09\x62\xb7\x7b\xbb\x85\x4f\xee\x65\xf0\x8e\xbd\xf6\xce\x42\xc5\x10\x82\x22\x73\x76\x93\x98\x75\x2d\x0b\x09\x1a\x97\x0a\x5a\xf6\x86\x12\xb4\x38\x8f\x1f\x34\xe5\xbc\x4b\xa0\x68\x4e\x79\xcf\x23\x41\x84\xf1\xe4\x17\x68\x4a\xaf\x24\x7c\xca\xf5\xe6\xba\xb6\xac\x93\x70\xec\x6e\x86\x41\x53\x40\x33\xe1\xaf\x7f\x6d\xdc\x8d\x89\x32\x38\xfa\x45\xf3\x8d\x8a\x2d\xa1\x71\xe7\x8b\x85\xc5\x4e\x3e\x84\x1b\x9b\x9b\x2b\x77\xe7\x9f\x23\x68\x15\x3d\x51\xd0\x8c\xbb\x32\x69\xa7\xc9\x86\x6d\xa9\x5e\x95\x10\x61\xd5\x2b\xc9\x4d\x6e\x05\x5b\x08\x47\xe5\xfb\xb7\xfa\xb7\x98\x4d\x1c\x37\x6b\xb7\x0d\xff\x9a\xb8\x27\x9c\xb2\x7c\x97\x51\xf2\x9c\x41\x96\x84\x1a\xc7\x5c\xf3\x57\x0c\x76\x6d\x08\x50\x7e\x7d\xa9\x8a\xd0\xd4\x3b\x2d\xec\x7c\x61\x25\xc1\xb3\xc0\x59\x7d\xc9\x70\x36\x83\xf4\xcd\xa7\xd5\xb6\x19\x5d\x24\xf4\x5f\x08\x1d\x92\x5c\x52\x41\x98\xdf\xac\xd1\xe1\x50\x54\x49\xb0\x6b\x88\x2b\x6a\x15\xb3\x22\x44\x1a\xf9\x25\x57\x4f\x3c\x7b\x37\x1e\x71\x1e\x0d\x67\xce\x4e\x82\xb7\x48\xf0\xfb\x46\xdf\x00\x82\xae\xe1\x7d\x36\x6b\x47\x53\x82\xef\x76\xa5\x1f\xd9\x07\x13\x08\x49\xfb\x52\x9c\x24\x3c\x53\x09\xdd\x69\x73\xaa\x86\x0b\xae\x4d\xc2\xb4\x67\x65\xfb\x47\x26\x60\xc7\x35\x7f\xfd\xc5\xd3\xa7\x09\xb7\x3b\x5d\xd6\x28\x5a\x99\x11\x04\x1b\xf9\xa2\x0a\x36\x85\x10\x7a\xde\x49\xfc\x7e\x6c\x34\xc4\xfa\x87\x26\xab\x4b\x7c\x71\x8e\xc3\x2c\x88\x6e\x89\x5a\x30\x1c\xc7\x4b\xc8\x09\xeb\x39\x24\xf3\xdc\x8c\xd0\x73\x28\x2f\x47\x59\xb5\x96\xc0\xf7\x39\x68\xff\x7f\x38\xb9\x43\x30\x6b\x5a\x7d\x43\x25\x16\x99\x0d\x5e\xee\xe5\x5f\x47\x98\xd9\xfc\x8b\x2d\xfd\xe0\x31\x42\xb3\x8f\x83\x41\xfd\x6b\x4b\xc2\xad\x73\x47\xde\x9f\xfc\xe2\x4b\x18\x7c\x51\x6c\x1b\x71\xfe\x20\x21\x32\x30\x3f\x6d\x93\xdb\x4a\xc2\xf2\x4e\x87\x03\xe2\x87\xa3\x08\x52\x27\x67\x2f\x11\xf3\xb5\x20\xac\x14\xad\xfc\x74\xad\xf0\x2b\x0b\xc3\xab\x9a\x4e\xec\xde\xd0\xce\x42\x9e\xcb\xe9\x41\xdf\x21\x77\xc2\xeb\xab\x45\x85\x5d\x29\x4a\x84\xda\xa0\xec\xf5\x03\x31\x15\x0c\x44\x2f\x6d\xf0\x14\xb8\x15\x47\xd8\x1c\x6a\x63\x94\x53\xee\x48\x88\x72\x9c\x77\x74\x4e\xda\x65\x06\x2d\xeb\x9f\x5d\x8d\xd7\x51\x22\x7c\xca\xa8\x55\x37\x38\x15\x45\x28\x30\x8a\x50\xdd\xda\xb8\x91\xf0\x61\x1b\x6b\xe6\x8e\x5d\x37\x08\x26\x27\xc3\x0d\xfd\x5f\x19\x12\xf2\x33\x78\xec\x7f\x5e\x76\x25\x38\x8d\x5b\xdf\x4d\x96\xb3\x25\x7c\x7d\xd2\xb1\xc0\x8b\x4f\x98\x70\xac\x5c\xf8\x50\x3b\x6b\x01\x21\xf6\x64\xea\x45\xb8\x16\x12\xa4\x2f\x0d\xff\xfd\x0f\xd7\x1d\xeb\xde\xc8\xe5\x27\x12\xfa\xd8\x7a\x85\xdb\x83\xce\x10\xcc\xe7\x9d\xbc\xc7\xb3\xdd\x95\x90\x7c\x3e\xb4\x7e\x9e\xf2\x45\x42\xfd\x4e\xdd\x91\x98\xfe\x74\x82\x86\x80\xd2\x41\xe9\xc8\xd3\x84\xa8\x13\xcb\xf4\x8d\x5b\xe2\x09\xc7\xb3\x64\x5b\x3a\x94\xdc\x08\x82\x52\x9f\xec\xf6\xb6\xce\x22\x2c\x32\x7c\x6d\x91\x3b\x3a\x83\xf0\xb0\x83\x9f\x7d\x59\xcc\x52\xc2\xc1\xa2\x14\x35\xbc\xfd\x51\x89\xc5\xfe\xa2\xa3\xbe\x73\x6b\x09\xcd\x5c\xdc\x8b\xc6\xf2\x57\x11\xfe\x2c\x58\xcd\xaa\x91\xd5\x9a\x04\x39\x55\xab\xc0\xa3\xc7\x82\x26\x21\xf9\x6d\x51\xd7\x92\x5b\x49\x04\xd1\xc0\xd1\x4a\xbb\x9c\x75\x84\xf5\x7f\xfa\x34\x16\x6f\x5b\x44\x38\xa9\x5a\x49\x8b\x4d\x8b\x58\x78\x4a\x72\xef\x02\x0e\x5d\x24\xb8\x95\x2f\x5f\x20\x78\x4f\x83\x50\x14\xbb\xee\xe7\xa1\x2e\x03\x82\xbf\x83\x5c\xba\xd8\x0a\x1d\xc2\x0b\x95\xa3\x8b\x55\xa5\xb7\x12\x2a\x57\x36\x6f\xfd\x70\xc4\x96\xf0\x99\x96\x19\x5f\xf8\x2d\x4c\xc8\x89\xf6\x39\xf3\x6e\xd0\x83\xd0\x72\x7b\x61\x7c\x78\x41\x2d\xe1\x82\x71\xf7\xf4\xed\x55\x65\x84\x9a\xbd\x11\xe9\xd9\x3f\xca\x09\x5f\x63\x2e\xf3\x4c\x9f\xb9\x9d\x30\x2d\x74\xde\xca\x4b\x36\xdb\x09\x63\x27\x2d\x49\x21\x95\x8f\x70\x23\xf1\xb5\xa4\xea\xac\xe0\x49\xa5\xbb\xaa\xeb\x44\x47\xec\x47\x16\xde\xb6\x75\xc5\xb7\x3e\x1d\x63\xe1\xe5\x7c\xf7\x2f\xc7\x8e\x96\x10\x1e\xee\x78\xef\x6d\x28\x2f\x4c\x48\xf2\x4f\x3f\x28\xc8\x36\x87\xe0\xe5\x28\x60\x53\x96\x9a\x4e\x08\x6d\xe9\x0a\x51\x3b\x53\x4a\x60\xa2\x67\x6f\x2b\xad\xea\x98\x54\x16\x8f\x26\xba\xad\x38\xe5\x4e\x78\xa5\x7c\x64\xc0\xbd\x3e\x90\x70\x64\xe7\xd1\x8f\xe9\xaf\xc3\x09\x3b\x47\xaf\x69\xcb\xde\x9a\x4f\x18\xab\xf8\x78\x59\x6e\x62\x27\x75\x6e\x5d\xd2\xeb\x19\xb6\x04\xbd\xd5\x7f\x25\xd3\xd6\xcd\x21\xf0\x3e\x92\xd0\xbc\x27\x23\x4d\x18\xb5\x99\xbe\x63\xf6\xc4\x87\xfa\x0a\xff\xd4\xd6\xb9\x13\x28\x98\x3a\x47\xe5\xd4\xfc\x46\x42\xef\x87\x2b\xaa\x73\x26\x4a\xd9\xec\xfa\xe0\xaa\xe1\x03\x04\x81\xae\x97\x3d\xea\x91\x21\x93\xca\xaf\x55\x0b\xf5\xe5\x6f\x35\x12\x7a\x2e\xbe\xd8\x7d\x23\x74\x07\x61\x26\x86\x33\x6b\x36\xf9\x11\xd2\x5b\x3c\x2d\xff\x96\x70\x11\x02\x77\x9b\x5b\xbe\xf6\x96\x22\x98\xcc\xcd\x28\xda\x95\xbc\x80\x70\xe3\x56\xe3\xf9\x6b\x4c\x05\xc1\x6b\xfd\x6f\x0e\xa1\xba\x0a\xc2\x0a\x0e\xfe\xfa\x73\x42\x91\x04\xe4\x7e\x11\x8f\xbd\x32\x85\xb0\xd3\xea\xae\x55\x73\x8c\x2b\x83\x27\x7a\x9f\x7b\x03\x3c\xf4\x08\xea\x9d\xbb\xa4\xed\x3a\xf9\x08\x39\x7b\x97\x18\x36\x0e\xce\x23\x7c\x79\xeb\x7d\x9e\xaf\x56\x9d\xf0\x5d\xf8\xfc\xcd\xbf\xbb\x1c\x09\xc7\x9a\x1e\x74\xc6\xd5\x2f\x22\x34\xd9\x1b\xad\x9b\x75\x56\x9b\xc6\x24\x5f\xe4\x66\xfc\xe5\x26\x1c\xb0\x36\x5d\x10\x93\x6e\x49\xd8\xee\xbd\xb9\x76\x6e\xe8\x21\x42\xc5\x61\x6d\xff\x43\x3f\x5d\x09\x5b\x2f\x3c\xbc\xea\xad\xd3\x40\x38\xf9\x34\x60\x87\xcf\x04\xd6\x96\x7c\xae\x3e\xe8\xf9\x88\xf9\x37\x1a\x10\x50\x3e\xe3\xb2\x28\x97\x50\xc4\x1e\x78\xe2\x18\xeb\x06\x61\x61\x14\xc7\x8e\xff\x4a\x61\xfd\x03\xab\x59\x5c\x57\x09\x85\x0f\xf3\x5f\x7e\x16\x8d\x25\xe8\x26\x19\x5a\x28\x37\x46\x13\x04\x0e\xcd\x37\x1b\xf1\x48\x65\xf0\x62\xa6\x5b\xed\x82\x26\x59\x82\xb3\xc3\x7d\xfd\x80\x7a\x5e\xc2\x96\xab\x27\x33\x99\x9f\x0e\x84\xd1\xab\x52\x72\x77\x67\x97\x13\xd6\x1a\xbb\xea\x08\xca\xf2\x11\xd4\x07\x2a\x4d\xce\x26\xb5\x12\xd2\xfd\xf9\x84\x85\xd2\x9a\x09\x29\x9e\xce\x3d\x42\xa3\xeb\x08\xc1\xdb\x0a\x4e\x3a\x36\x9d\x22\xe8\x0e\xc6\x1b\x3c\xe2\xba\x43\x08\xdc\x60\xa7\x52\x5a\x9c\x41\x98\x27\x9a\xee\x5f\x6b\xce\x4f\x50\x2a\x3b\xec\xd1\x77\x7d\x0b\xc1\xf5\xc6\x7c\x81\xd2\x33\x37\x09\x5d\xf2\xb6\x7a\x25\x13\xe8\x3d\xc1\xbb\x5a\xa8\xed\x3a\x21\xe2\xa0\xfe\xf0\xa1\xb6\xfd\x04\x45\xaf\xe5\xc5\xdd\xfc\x66\x04\xb5\x92\xf9\x3c\x86\xd2\xee\x84\x33\xdf\xbf\x8d\x3e\x28\x78\xca\x82\x5c\xd3\xda\x6c\x19\xa3\xd1\x4a\x4c\x57\x9e\xad\x24\x2d\x39\x93\x50\x2e\x64\xbd\x4a\x70\x7f\x22\x41\xd0\xf3\xd3\xe8\xb3\xf9\x16\x84\x57\xfe\xa2\xba\x8f\xdc\x95\x08\x1c\xb1\xcd\xfb\x57\xce\xd7\x22\xb8\xe8\xa4\x79\xdc\x4b\x53\x25\x2c\x2f\xcc\xf9\xd9\xad\xc9\x4f\x28\x78\x3e\x6d\x4d\x5c\x68\x02\xc1\x88\xc3\x22\x33\xc3\xe0\x07\x0b\x92\x7a\x25\x07\x17\x3d\x89\x21\xfc\x0a\x54\xf8\xfa\xf9\x94\x39\x41\xf8\xb8\xc6\xd1\x6d\xaf\xf2\x09\xf6\xc5\xeb\x66\xc9\xee\x0f\x21\x34\x0d\x98\x3c\xcb\xe0\xcf\x20\x2c\x5f\x72\x41\xbf\xfc\xca\x5b\x02\x6b\xac\x89\xbb\x78\x02\x26\x23\x7b\xec\x04\xbc\x9f\x13\xa4\x36\xff\xb4\x9d\xf6\xbc\x8b\x30\x34\xea\x3e\xed\x63\x7f\x17\xe1\xc7\x07\x19\xff\x0f\x3f\xb2\x09\x07\x37\x49\x4e\x79\x35\x3d\x8b\x20\x31\xa7\x5b\xdc\x78\xc6\x4b\x42\x84\xa0\xae\xfc\x97\x39\x2f\x08\xbf\xe5\x45\x3e\x7c\x9a\x80\xc3\xdf\x39\xf1\x2a\xc1\xcf\x08\xeb\x13\x13\x2e\xac\x98\xc0\xdb\xf2\xc8\x65\xcf\xc2\x9e\x11\x36\x1f\xd6\xca\x9d\xfb\xa2\x9b\x60\xbf\xc5\xe6\xfb\x34\xf6\x67\x84\x2f\x53\x14\x5e\x5f\xf9\xda\x4d\x48\x9b\x29\x33\x33\x30\x30\x86\x90\xa0\x2d\xcb\xcb\x99\x74\x97\xb0\xa5\xb9\x79\xa1\xad\x05\x8b\x50\x71\x69\x83\xd3\x70\x2a\x3f\xc1\x47\xea\xe5\xc5\xc7\x26\x26\x84\x0b\x63\xba\x29\xe3\x87\x16\x13\xfa\xca\x67\x3d\x1e\x3b\xa4\x4b\xd0\x95\xca\x1c\x90\xd4\x9d\x45\xa8\x7c\xfa\xc9\x2f\xed\xfb\x5d\x06\x62\x36\x71\xda\x63\xb3\x2d\x09\xa7\x6c\x8c\x9c\xe6\xf4\xaf\x25\x18\x05\xfa\xa5\x58\x44\xe4\x13\x16\x79\x3d\xbb\xb5\xc4\x57\x69\x12\xde\xee\x61\x66\x2c\xd8\xf2\x92\x05\xa9\x43\x85\xeb\xe6\xdc\x92\x27\x3c\xec\x75\xf5\x5a\xae\x2b\x4e\xc8\x8a\xd9\xd3\xe4\xb8\xc8\x9c\x90\xba\xb3\x73\x53\x51\xd9\x5f\x16\x5a\x2a\xc7\x8c\xec\x4d\x46\x59\xf8\x75\xd9\x6f\xea\xd9\xb5\xcf\x59\xb8\x39\x18\xba\xd4\x65\xd5\x19\x06\x96\x7c\x7e\xa1\xaf\x7c\xe2\x09\xd6\xb3\x12\xbc\x9e\xbb\x48\x12\xa2\x1d\x1e\xea\x04\xa9\xde\x24\x70\x7c\xce\xe5\x31\x6f\x99\x4e\x38\xbf\xa9\x53\xa9\x2b\xe3\x0b\x0b\xd1\x31\x52\x57\x55\xf6\xce\x27\xd8\x65\x4b\xf8\x7a\xee\xd0\x21\xac\xda\x16\xf1\xe5\xe7\x29\x0e\xc2\xee\xd3\x3f\x06\xce\xde\xd7\x24\xcc\x7c\x20\xcc\x54\xb6\x2f\x9c\x84\xb0\x51\xc5\x1e\xbe\x47\xb2\x93\xb0\xe6\x73\xee\xbb\x00\x29\x37\x82\xd3\x6f\xab\x75\xe9\x39\xc7\x09\x6c\x0f\x0d\x95\x1b\xdb\x75\x09\x5b\xa6\x75\x2c\x8f\x60\xb3\x26\xf0\x06\x6d\xdf\x38\xfc\x57\x8f\xf0\x74\xae\xdb\x9f\xdf\xb7\x36\x12\xa0\x34\x95\x23\x51\xe2\x08\xe1\x10\xfd\xf8\x25\xda\x15\x4e\xd8\xf8\x53\xe1\xfb\xac\xcb\xce\x04\x7b\xff\x4f\xcf\x42\xb5\x44\x09\x3a\xdf\xc5\xf8\xde\x98\x6b\x11\x3a\x12\x14\x97\x5a\xf3\x12\xa1\xb0\xdd\x69\xfb\xca\x45\x2b\x09\x1a\x3f\xb5\x0e\xdb\x94\xa9\x10\xdc\x87\xbe\x16\x45\xbe\x58\x4c\x78\x73\xbf\x75\xd0\x4d\x8e\x9b\xf0\xcd\x82\xfb\xb9\xff\x06\x11\xc2\xe1\xde\x35\xe6\xa2\x85\xe3\x2c\xec\x50\xba\xea\xad\xb8\xc5\x93\xc1\x0b\xe5\xbe\x27\x0a\x7b\x95\xe9\x1f\x82\xc4\x4d\x4e\xba\x9f\x5a\x48\x10\x5e\xcf\xef\xbe\xe5\xba\x16\x21\x4e\xbf\x6c\xda\xae\x5b\x5c\x04\xe5\x22\xd3\x83\x1a\xae\xde\x04\x29\x7c\xa4\x3e\xe3\x1f\x2c\xd4\x5f\xb9\xb0\x60\xe1\xd6\xb2\x4a\x48\x4a\x4c\xeb\x3d\x90\x37\x95\xfe\xe1\x59\xa3\x43\x9e\xfc\xc0\x5b\x16\xce\xb6\x6d\x5c\xa4\x58\xab\x49\xe0\x91\xd1\x5d\xcb\x99\x2f\x49\xb8\x66\x58\xaf\x6e\xea\x10\xc5\x20\xb6\x6e\xd3\x79\x2d\x07\x3b\x82\x75\x5b\xbf\xfc\x87\x9e\xe5\x04\x4f\x2f\x95\x72\x97\x3b\x5f\x58\x88\x37\xf7\x3a\x92\x22\x74\x8a\x41\xbd\x98\xc2\x21\x1e\x1f\x71\xfa\x87\x9f\x8e\xc7\x31\xdd\xa0\xa1\x12\x6c\x9d\xd6\xe6\x5c\x49\x85\x84\x8f\x8f\x4b\xdf\x17\xf7\xcf\x22\x2c\xfd\xf4\x40\x4c\xbe\x68\x80\xf5\x0f\x01\x1b\x86\xb9\x76\x6c\x7a\x56\x89\x03\x3d\x77\xd8\xbf\xb3\x67\x11\xd2\xad\x6c\xc6\x75\xdb\x2a\x08\x5d\xc3\xe7\xa2\x56\xe9\xff\x60\x21\xbf\x43\x61\x95\xda\x9d\x65\x04\xe1\x36\xdd\xe4\x0b\xa5\xf7\x08\xac\xb5\x9e\x0d\x87\x8d\x1f\x10\xea\x6c\xd8\x15\xb3\xbc\x0a\x08\x2d\xbb\x54\xce\x8f\x86\x75\x13\x1c\x4a\x77\xfe\xaa\x0f\xe8\x23\x04\x7d\xeb\x95\xf9\x31\x51\xac\x45\x3d\xd4\x6c\xb6\x38\x11\x6a\xd7\x0c\xc5\xc4\xa9\xdd\x20\xfc\xb1\xf2\xf3\x8f\xd1\x76\x24\x9c\xea\x15\x38\x25\x6e\xe2\x4c\xa8\x3e\xae\x2c\xa2\x1c\x29\xc7\xc0\xc2\xe7\x92\xf5\x5d\x19\x51\x42\x98\x97\x84\xce\x23\xaf\x76\x06\x2f\xe6\x86\xa7\xb7\x4f\x97\x26\x4c\x0f\xbe\xf8\x91\x7b\x8d\x1c\xe1\x0c\xf7\x06\x99\x5f\xab\xb4\x09\x8b\x75\x5f\x1f\x09\x8b\xd6\x25\xb0\x47\x4b\x87\x78\xbe\xe1\x20\x34\x4d\x29\x71\x7d\x3d\x70\x8a\xd0\xc3\xf1\x29\x4e\x77\x6c\x3f\xe1\x79\xcb\xc6\xa0\x37\x1c\xca\x04\x19\x13\x45\xed\x7b\x46\xca\x84\x1f\xee\xd6\x8f\xd6\x5e\xb6\x24\xcc\xb8\x34\xca\x88\xd9\xae\x24\x74\x7c\x9a\x77\xda\x67\xb4\x9f\x05\x95\x98\x25\xd3\x95\xcb\x37\x11\x9c\xb8\x56\xb9\x29\x87\x2f\x21\x7c\x9c\x92\x17\x1e\xf8\x76\x3d\xe1\x5a\x85\xbb\x42\x95\x87\x36\xc1\xbd\x79\x56\x52\xe8\x87\x9b\x95\x78\x36\xd8\xcf\x3e\x3b\xde\x9b\x60\x19\xa0\x1a\xae\x6f\x3c\x71\x6c\x19\xb0\x99\xa1\xf5\x3e\x97\x50\x1a\x97\x66\x12\xf4\x54\x84\xa0\x61\x2c\xf0\x70\xda\x8a\xed\x93\x30\x32\x35\xf1\xf0\x77\x9f\x69\x04\x26\x64\xef\x22\x89\x35\x62\x34\x76\x31\xf9\xbd\xdf\x2e\x86\xc0\x96\xba\xbb\xf3\x4b\xce\x1c\xc2\xe2\x1b\x89\xcb\x8c\xef\x2f\x22\xe4\x56\x04\x99\xaa\xd4\x95\x12\x9e\x49\x2c\x5b\xf5\xf1\x74\x3c\xe1\xf5\x94\xc7\x9d\x8f\x7f\xc5\x11\x5a\x3f\x1b\x79\xe5\x47\x66\x12\x4a\x8a\xc7\xab\x45\x1e\xb8\x10\x96\x6e\x6b\x7d\xaf\x06\x61\x42\x42\xbc\x58\xb7\xc8\xce\x69\x04\xdb\x24\x45\x9f\xcb\xab\x64\x09\xb9\x43\xf1\x82\x6c\x91\x0c\xe1\xaf\xdb\xed\xb6\x29\x25\x55\x84\x85\x2e\xc5\xc3\x74\xa0\x83\xb0\xd3\x60\x87\xdf\x7f\xa5\x54\x3a\xe1\xc0\xdf\x5b\x55\x84\x73\x23\x81\xec\xd7\xba\x76\x11\xc6\x3c\xb7\xcf\x39\x9a\xcd\x41\x68\x95\xe3\x8f\x4b\xe1\xdc\x43\x08\xfc\x33\xfc\x9c\x3b\xc8\x81\xe0\xc8\xe6\x2f\xd3\xa4\x74\x80\x20\xcf\xbd\xf3\x6b\xb0\xbb\xde\x24\x28\xe6\x1e\xd0\x67\x1e\x1c\x9d\x84\x57\xbf\xd7\x75\x35\x29\xf9\x10\x32\x9e\xdc\x62\xb6\xa5\x7d\x64\xc1\x5a\x66\x74\xca\x63\x49\x75\x42\xa6\xd3\x23\x93\xcc\x89\x9f\x5c\xd4\x0a\xa5\x47\xcb\x93\x45\x08\xc2\x2a\x7f\xb6\x8b\x0b\x6b\x33\x68\x8e\x79\xad\xc0\x55\x91\xc9\x80\x19\x8a\x09\x11\x2e\xbb\x49\xe8\x59\xcb\xc9\xee\xb4\x2c\x9e\x60\xcc\xde\xfb\x65\x6d\x82\x3a\xc1\xf6\xbd\xee\x63\xb7\x96\x7d\x84\x3f\xdf\x36\x56\x46\xad\xbe\x4e\x28\x70\x4a\x32\xd8\x31\x51\xf6\x3f\xbb\xa2\x31\x36\xf3\x07\x0b\x45\x97\xe7\x6d\x7e\x14\xb5\x92\x50\xda\x91\x73\xbf\x75\xdd\x62\x02\x94\xf5\xb2\x94\xaa\xe5\x09\x1d\x03\x01\xe2\xe7\x39\x77\x10\x94\xb8\x07\x5a\x66\x1c\xde\x44\xd0\xb1\x0b\x0e\x0f\x9a\x78\x3f\x7b\xff\x75\x3a\x33\x5b\xc4\x80\x70\x3f\xe8\x65\x5c\xaa\xb2\x10\xa1\x30\xec\x63\x38\xe7\xfc\x6a\xc2\x8e\x8b\xbf\x64\x06\x6f\xb7\x10\xb8\x0c\x36\x6f\xe7\x93\xcc\x67\xc0\xba\x1e\x2c\x1c\x12\x5a\x46\x50\xf9\xc9\xab\xdc\xea\x9a\x47\xc8\xfd\xa2\xb5\xe1\xc2\xf2\x74\x82\xad\xf2\x9b\xce\x81\x29\xee\x04\xe9\xaf\xb7\x2c\xab\x2f\x85\x12\x24\xe3\x3f\x07\x3c\x0f\xcd\x21\xd8\x4d\xab\x31\xfc\x0f\x4d\x16\x69\x0e\xcf\x4f\x79\x12\xb8\x2b\x9f\x14\xfd\x4a\x8a\x9b\x54\xee\xaf\xbf\xe5\xb2\x46\x53\x9f\x70\xae\xab\xcd\xe6\x8d\x61\x29\x41\x46\xff\x90\xbe\xf5\x85\x5a\x42\x93\xc8\xfd\x67\xf3\xe7\x8c\xb3\x50\x68\xab\x2e\xb5\x27\x78\x2e\x61\xa6\xaa\xf2\x41\xa7\x67\x4a\x04\x91\xbe\x7a\xf5\xd5\x73\xe5\x08\x6e\x2e\xb7\xef\xd9\x8d\xf1\x10\xa2\x62\xbf\x4b\x8c\x2c\xcc\x23\xa4\x06\xe5\x49\xd5\xfc\x9d\x4a\xf0\xe6\xe1\xfb\xa2\xe0\xef\x4f\xd0\x7f\x35\xab\x77\x5d\x45\x39\x41\x6b\xcd\xb7\x3b\x87\x58\xb9\x0c\x52\x22\xe4\xe6\xed\x9e\xa2\x47\x68\x58\x3b\xc4\x76\xd4\x8a\x9f\x20\xf2\xae\x28\x36\x2a\x63\x2a\xe1\xa3\xce\xef\x53\xcd\x7c\xbc\x84\xc5\xcf\xf3\xf6\xc9\x0e\xcf\x21\x98\x45\x35\x26\x2f\xff\x1a\x36\x09\x8f\xab\xdc\x4d\x77\x1d\x8f\x25\xbc\x3c\x51\x23\xf9\xe8\x7a\x05\x83\xdb\x82\x99\x0f\x94\xa3\x6c\x09\x9c\xee\xbf\xae\xde\xb5\xe5\x23\xc8\x56\xf9\xc5\x2f\x17\xb1\x22\x68\x2d\x17\xbf\xa0\xf6\x77\x2d\xe1\xf6\xe6\xe5\x3d\x71\xd3\x14\x09\xf5\xac\x0d\xe1\xd3\xcc\x53\x19\xd8\xed\x98\xcb\x5f\xfb\xad\x80\xd0\xef\xf6\x39\x48\xd0\xbd\x91\xf0\x2a\x55\x4a\xb1\x2a\xb8\x9b\x41\xd2\xce\x77\xfa\xc5\xd9\xcd\x04\xd1\x69\x07\xfa\xbe\x48\x94\x11\x6e\x14\xab\x06\x5f\xdc\x9b\x4d\x68\x0d\x54\x73\x9d\xc1\xae\x43\x58\x2a\x6f\xfd\x5e\xba\x85\x9f\x90\xb1\x70\x55\xc0\xb1\x33\x96\x84\x3b\xf2\x4b\xd7\xa8\x2a\xba\x11\xa6\x0d\x4b\x09\x3e\xba\xad\x44\xf0\x55\x17\x55\xdb\x69\x14\x4d\x38\x9a\xa4\xd6\x2a\x72\x22\x88\xc1\xf0\x96\x12\x8f\xbe\x24\x53\xc2\x7a\x44\x24\x4a\x0a\x8e\xb3\x20\xa2\x33\x58\x3a\x20\x67\x48\x48\xfd\xb4\x26\x7f\x9f\x9f\x16\x41\x58\x5b\x52\x2a\xef\xa5\x07\xc1\x24\x64\x66\xf3\x94\x75\x4e\x84\xca\xbb\x4a\xc7\x04\x65\x45\x09\x5e\x3f\x66\xb8\x98\x7f\xba\x4b\x48\x36\xeb\x8e\xa9\x0f\x31\x22\x18\x72\x39\xaf\x0b\x9c\xb9\x89\x70\x84\x3f\xef\x72\xfb\xe1\x2a\x42\x63\x92\x75\xb8\x4f\xaa\x37\x81\xbd\x41\x70\x53\x28\x4f\x0e\xe1\xad\xaa\xa8\x95\xdd\x01\x4f\x42\x45\xfd\x7b\xa3\x65\x27\x96\x11\x6e\x6f\x08\x7a\x7e\xa3\x44\x7b\x12\xea\x14\x54\x5e\x15\x71\x3d\x66\x41\x61\x4f\xcc\x60\x4f\x12\x8b\x70\x41\x43\xe4\x6f\xc8\x12\x7d\xc2\x5a\xf9\xd2\x33\xd7\xbd\xac\x09\xc3\x53\xe4\x9e\x99\x6a\xab\x13\xce\x3d\xac\x75\xdf\x7d\x60\x1e\x61\x8e\x19\x9f\xd8\x19\xfd\x85\x84\x43\x37\x16\xb0\x19\xf3\x96\x13\x72\x05\x39\xde\xf0\x8d\x59\x12\x46\x4f\xb8\xd5\x29\x96\x5e\x22\xc8\x34\xc5\x7e\xcc\x3a\x1c\x48\x58\xbd\xe2\xda\x35\x57\x7b\x2e\xc2\x95\xa3\xef\xa7\x0e\x3d\x89\x9d\x84\xa8\x7d\xb5\xcc\xeb\xe4\x53\x84\x0a\x9f\x4f\x1b\xce\xce\x2b\x23\xb8\xcd\x3c\x62\x14\xbd\xfa\x21\x81\x93\xef\xb2\xf7\x7e\xc5\x27\x84\xa1\x57\xf7\x44\xff\x1b\xa5\xcd\x38\x97\x28\xba\x77\x1f\x81\x9d\x7d\x49\xba\x1b\xbf\x21\xe1\x4d\x92\xf6\xdc\xee\xd4\x97\x84\x25\xcd\x29\xe7\xa7\xd5\xfd\x24\x8c\xbb\x29\xd5\x0c\x28\xbe\x20\xf4\x7d\xfe\xd8\x34\xe4\x70\x87\x90\x68\x0c\x99\xa6\xbd\xf6\x84\x05\x0d\xc3\x73\xb6\xe9\x66\x10\xf8\x1e\x17\x2d\x5c\x56\xdc\x49\xf8\x6c\xf5\xc0\xed\xc1\x8f\x97\x84\xdd\xae\x62\xd5\xc1\x1e\xbd\x04\x4f\xe1\x92\x91\x58\x26\x86\x50\x28\xf4\xe7\x52\xc5\xb2\x42\x06\x11\xd3\xeb\x6d\x67\xcb\x9f\x26\xac\x18\xd6\xf5\x9a\x9e\x59\xc0\x40\x4c\xfc\xad\xa1\x4d\xdc\x3d\x42\xa1\xc0\xc2\xb3\x19\xfe\xa1\x84\xb2\xaa\xa4\xb2\xe5\x7c\x57\x09\x52\x09\x01\xfe\x3a\x6d\xda\x04\x5b\x85\x6f\x59\x3f\x2e\xa8\x13\x44\xbe\x2c\x3b\x7d\x72\x47\x00\xc1\x2f\xe0\x58\xe3\x14\xb6\xad\x84\x26\x35\xe5\x73\x7f\xdf\x3b\x13\xf8\x24\x9b\xbe\xdc\x8e\xd2\x25\x0c\x94\x31\x9b\x5e\x69\x6c\x20\x18\x76\x9c\xca\xdb\x2b\x1a\x46\xd0\x16\x6e\x5c\xee\x3b\x7b\x2b\x61\x73\xcf\xf7\xb2\x73\x02\x16\x84\x05\x77\x9f\x9a\xaa\x8a\xb9\x12\x2a\x94\x2e\x7f\xa8\xb7\x36\x27\xc8\xfb\xc7\xb3\xbb\xea\x58\x13\x4a\x4a\x0d\x4f\x38\xab\xcf\x25\xa8\x04\x3e\xf2\x10\x59\x32\x97\x30\x6d\x7d\xe5\xd3\x83\xbc\x3b\x09\xd7\xac\x74\xde\x8c\x7a\x3f\x22\xcc\x35\x9b\xbe\xd5\x5a\xbe\x9f\xb0\xef\xef\x10\x97\xc5\x04\x46\x9d\xb4\x79\xd8\x7f\xdf\x27\x38\xde\x28\x58\x2b\xe5\xdb\x4c\x10\xcc\x2e\xd5\x3f\xf7\xb3\x82\xf0\x70\xe6\xed\xca\xa3\x61\x0c\x61\x9d\x51\xd9\xd6\x74\xd5\x76\x42\x23\xbb\xdf\x69\xce\x9e\xeb\x34\x76\xcf\xff\x2a\x5f\x49\x0d\x61\x86\x53\xd9\xea\xbf\xce\xb7\x09\x6a\x2a\x25\x43\x1b\xd6\x9e\x24\x8c\xc7\x2a\xdb\xef\xef\x68\x23\x2c\x8c\xf7\x9e\x51\x3e\xe7\x1d\xc1\xc4\xe3\xe8\x9d\xb0\x53\xed\x04\x37\x69\x13\x78\xb2\xbd\x23\x74\x55\xec\x2a\x28\x39\xd5\x49\x90\x3f\x2b\x63\x18\x93\x95\x34\x09\x3a\xf6\x77\xea\x03\x05\x52\x27\x15\xa5\x15\xf6\x0b\x03\x8a\xda\x08\xa7\xc6\x4e\xe4\x37\xa2\x9e\xf0\xbc\x62\xe5\x22\x57\xe7\x9b\x84\x93\x31\xfb\x8f\x6e\x18\xbf\x4c\x28\xea\xf7\xd0\x09\xd7\xaf\x27\x1c\x9a\xba\xc4\x7c\xf8\xc2\x65\x42\xa7\x35\x6b\x4c\x31\x52\x85\x50\x66\x37\x9a\x63\xae\x79\x97\x41\xfb\xf2\x99\xd3\x3e\x5d\x9e\x45\xd8\xb0\xc0\x43\x62\xd5\x55\x23\x1a\xfb\xfe\xbc\x7d\x65\xe9\x00\x0b\xbb\xca\x1e\xed\xb7\x0d\x72\x23\x64\x0c\x8c\x47\x24\x4c\xb1\x26\x64\x39\xe4\xb0\x29\xde\x3e\x48\x70\xf1\xcc\xb7\x52\xd7\x51\x21\xac\x65\xd3\xb0\x59\x74\xd3\x88\xc0\x2b\xfb\x3a\xb8\x44\xc3\x9c\xe0\x17\xbc\xaf\xdf\x6d\xc0\x8c\xf0\x52\xda\xed\xc2\xbe\x86\x0d\x04\xef\xd4\xa7\x27\x74\xfa\x36\x10\xaa\x5a\x6d\x1b\x43\x83\x5d\x27\x95\x1b\xdd\x8e\xab\xc6\xd7\xc5\x12\x4a\x56\x77\x86\x49\x1e\x3a\x39\xa9\x70\x74\x5a\xb1\x57\x14\x1e\x23\xbc\xb8\x52\xfb\xd4\xb3\xe5\x18\xe1\x4c\xc8\xda\xe3\x9d\xea\x0a\x93\xf0\x35\x75\x46\x8b\xec\xc5\xe3\x04\x6e\xf7\xc5\x09\x9f\xbd\xe2\x18\xe8\x5c\x0e\xb9\xc0\x0a\x88\x20\x64\xbf\x0a\x61\xbb\xff\xf5\x2b\x0b\x3f\x4c\xdc\xb7\x1a\xaa\x1d\x22\x3c\xb2\xd0\xa3\xf6\x65\x52\x84\xe7\x9b\x05\x7b\x4a\xde\xef\x99\x04\x3b\xf3\x80\xf1\xa3\xa6\x0a\x84\x68\x8b\xf0\x35\xe6\x51\x0a\x04\xd1\x39\xca\xba\x42\x3e\xbe\x93\xd0\x3d\x58\xb0\x92\xc5\x92\x22\x7c\x8d\x94\x5d\xb0\x61\xe2\x7c\x6e\xc5\xb4\xda\x94\xf7\x6d\x26\xf4\x6c\x3a\x5e\x14\x94\xbe\x9a\x20\x74\xb3\xeb\x9e\xe3\xfe\xa5\x84\xb2\x15\xdf\x64\x57\x48\x36\xb0\xb0\xae\x6f\xb7\x81\x09\xf4\xe9\x1f\x62\xb2\x33\x72\xd9\x17\x39\x4f\x2a\x9b\xb7\x8e\x94\x5d\xc6\x32\x82\x60\xca\x4f\x87\xdc\x63\xdb\x09\x01\x57\xec\xba\x7e\x3a\x6e\x27\xc8\x55\xf4\x8f\x08\x97\xb5\x12\x76\xd4\x99\x6c\xfa\x0f\xf7\xf7\x3d\xec\xf9\x0f\xac\x93\x99\x49\x42\x13\x68\x34\x7b\xf0\xb4\x72\xe5\x08\x0b\xfc\x31\x2a\xc7\xbf\x75\xdd\x24\x74\x44\x1e\xaa\x2a\x29\xde\x43\x48\x14\x6e\x36\x48\x99\xb5\x87\xf0\x33\xd8\xa8\x32\x76\x86\x2f\x81\xfd\xb3\xa2\xfb\xdd\x76\x27\xc2\xee\xc7\x15\x7f\x36\x2a\xb9\x11\x3a\x3f\xfd\xf2\xba\x34\x92\x4c\xf8\xe5\xa7\xa9\x3d\x3d\x57\x95\xb0\x87\xd3\xae\xee\xdc\x0b\x3b\x42\xea\x5e\x4d\x9b\x0d\x9a\x16\x34\x96\x95\xc5\xac\x1d\x15\x24\x58\x99\xd4\x69\x47\xc8\x2d\x22\x38\xe6\x47\x3a\x9a\x1a\x6f\x9f\x84\x0b\xf7\x8a\x55\x36\x2f\x64\x23\x54\x19\xf3\x4d\x0d\xe5\x59\x44\x48\xf3\xd0\xf6\x7d\xf7\x35\x83\x10\x5a\x9a\xe9\xf2\x32\xfb\x14\xc1\x7d\xc4\xa2\x2a\x67\x76\x08\xe1\xe2\x98\x54\x4d\x05\xbb\x01\x61\x55\x37\x77\x9b\x98\xe2\x51\xc2\x9e\x9b\x52\x0f\xed\x96\x86\x10\xda\xa5\xf9\xba\xcd\xaf\x6a\x13\x04\x5c\x96\x4a\x7e\x95\xfb\xcd\xc2\xf9\x67\x1b\x75\x07\x46\x2c\x08\x2a\x8b\xc2\xae\x77\x05\x6c\x20\x6c\x74\x8e\x5d\x6a\x93\x37\x9b\xc0\xf6\x75\x7a\xd3\xd9\xa5\xd9\x0c\x16\xa4\x9f\xfa\xb2\xf1\xfa\x63\x82\xac\xa9\xe2\x26\xb3\x90\x57\x04\x05\xde\x91\xee\xfd\xcb\x5e\x10\x2c\xfb\xdb\x7b\x98\xb2\x2a\xc2\x0b\x9e\xb5\x67\x14\x5e\x07\x10\xd2\x33\x14\x7f\xe9\x5f\xaa\x25\x14\xa7\xfe\x5e\xf0\x71\x79\x15\x41\xf5\x9e\xe0\xb3\xbf\xd9\xe9\x0c\xd8\x6e\x94\xf3\xff\xd9\x5a\x4d\xf8\x93\x77\x7c\xb3\x8e\x73\x35\xe1\xad\xbe\xf4\xb2\x56\xdb\x7a\x02\x5f\xb2\x98\x43\x69\xc9\x35\xc2\x42\x55\x2b\x05\xc1\xf9\xe7\x08\x4f\xf8\x73\x5c\x5a\x3f\xdd\x23\xe8\x9e\xb9\xc7\xbe\x72\xa2\x1c\x99\xb2\x55\xb2\x77\x5b\x09\x61\xeb\x50\x9a\xf7\x7f\xdf\x2e\xb9\x4e\xa4\xf4\xfa\xc2\x48\x02\xf7\x05\x1f\xab\x64\xb1\x48\xc2\x57\xab\xf6\x5e\xa1\x35\x91\x84\x8d\xae\x17\xba\xcc\x27\xca\xa8\xf7\x8b\xbd\x9c\x13\x90\xf5\xec\xac\xd6\x49\x4a\x25\xec\x3b\x99\xca\x69\x58\x97\x4c\x60\x1f\x95\x8d\x0e\x78\x91\xc7\x60\xfc\xfe\xfa\x91\xe0\xd4\x54\x82\x97\x05\x47\xd2\x63\xfe\x6c\xe6\xdf\xb2\xf4\xbe\xbf\xa7\x74\x67\x9f\x26\x6c\x93\x7e\x61\xf3\x68\x73\x2a\x41\xc4\x39\x4d\xe6\xc6\x13\x53\xc2\x35\xff\x76\x3e\x0a\xf0\x21\x54\xef\xf7\xed\x2f\xca\xf2\x26\x2c\x9b\xbe\xd1\xc1\xa9\xe2\x20\x61\xdc\x6a\x97\xc0\xe8\xac\x5f\xcc\xbf\x51\x16\x37\xfb\x8e\xe2\xb7\xdb\x09\xca\x7f\xdc\x36\x5f\xe5\x58\x43\x98\x7a\x78\x83\xaa\xda\xc8\x75\x42\xbe\xc0\xda\xf9\x57\x26\x8a\x2a\x3b\xad\xf9\x18\x3e\x85\xb0\x43\x6d\xfe\x59\xff\x87\xb1\x84\xbb\xfd\x4f\x36\x84\x48\x11\x81\x67\xfa\xd2\xa5\xc9\x2b\x77\x10\xe4\xb7\xde\xe8\xb0\x79\x54\xc0\x60\xce\xef\x77\xaa\xa2\x55\x8f\x08\x07\xfc\x4f\x70\x8a\x7d\xeb\x26\x1c\x12\x93\x2d\xb6\xb8\xf8\x98\x70\x69\xeb\x83\x4b\x95\x15\xfd\x04\x85\x5d\xdf\x0a\xd7\xaf\xec\x21\x9c\xbe\x72\x72\xfc\x9b\xff\x1d\x06\xd7\x33\x0c\xcf\xdf\x3a\x5d\xcd\xe0\x15\x4f\xd0\xc1\xf5\xc7\xee\x30\x10\xf7\x39\xbd\xf4\xe1\xac\xa5\x04\xfd\x63\x92\x3b\xe3\x7b\xf8\x26\x21\xe9\xe4\xeb\xe2\xae\x45\xda\xff\x0b\x77\x7e\x5f\x5d\xd9\xb5\x42\x86\xb0\xe0\x61\x8b\x4d\xf9\xb7\x7d\x84\x79\x0f\x73\x5b\x5b\x1a\xac\x09\x45\xbc\xab\x05\x16\xf8\x6e\x23\x2c\x2b\xc8\x68\xdb\x25\x98\x40\x58\x79\x3b\x68\x38\x75\xad\x15\xa1\xb2\x37\x80\xa7\x92\x6d\x2d\xe1\x1c\x97\xf2\x51\xed\xcd\x49\x0c\xfa\x0f\x7e\x30\xd1\x2a\xf0\x26\xc8\x2b\xf1\x66\x14\xcd\x6a\x20\xfc\xbe\xf5\xcb\x54\x7a\x46\x03\x21\x08\xe5\x4b\xea\x67\x4c\x25\x74\x6c\x38\xec\x74\x38\x89\x9d\x70\xff\xc3\xa9\x1d\x59\x3b\xd7\x13\x0e\xb8\x4b\xe7\xce\x1c\xd3\x9f\x54\xf4\xf6\x35\xf8\xa7\xcc\x12\x26\x78\x7c\x5c\xf9\xd6\x75\x4a\x23\xa1\x4d\x7c\xba\xb0\x43\x78\xf5\x24\xfc\x7c\xd0\x22\xbb\xf7\x67\x3e\xc1\x62\x7a\xe8\x48\xfe\x9d\xfc\x49\xe5\xcf\xb2\x13\x42\xe9\xd7\x65\x08\x43\xce\x29\x83\x56\x6e\xa6\x84\xbd\x65\xdb\xcc\x67\x1c\x34\x23\xb8\x77\x3d\x59\x4a\x57\x0e\x11\xb6\xa7\x65\xf1\x37\x74\xef\x23\xb0\x66\x65\xc8\xfd\xfc\xe4\x4d\x38\x9e\x2e\xfa\x25\x5b\x7f\x0f\x61\xe1\xbc\xa9\xb3\x1f\x96\x38\x13\x42\x8c\x3f\xec\x38\x30\x6f\x39\x61\x8e\x68\xf8\xab\x39\xe5\x1a\x84\x0d\x23\x1f\xc2\x3f\xee\xee\x20\x7c\xab\xe9\xe5\x90\xf0\xeb\x24\x54\x73\xdd\xd3\xfa\x30\x51\x78\x45\xcc\xe3\x9e\x86\xe7\x10\x4a\x6f\xaf\x31\x3c\xe7\x15\x43\x30\x93\xe4\x15\x7f\x27\x70\x92\x50\x91\x7d\x43\x20\xb1\xe9\x01\x41\xd8\x71\xe1\x8c\x7b\x77\x4b\x09\x36\xdf\x5f\x65\xad\x3d\xbc\x8b\xb0\x94\x2b\xe7\xde\xe1\xb7\xfe\x84\x19\x25\x32\xb4\x86\xe1\x21\x08\xae\x7a\x2d\x7e\xfa\xa8\x30\x61\x86\xf8\x94\x06\xdf\xb5\xba\x84\x85\xe5\xc5\xcf\xe2\x79\xd8\x09\x2e\x1b\x77\xf4\xa4\x0d\x6a\x13\x5e\xee\xf6\x9a\x7a\xcc\x3c\x8b\x70\xdf\xf1\x4f\xb1\xe8\xf1\x39\x04\x23\xdf\x97\xa6\xa1\x79\xdc\x04\xde\x48\x9d\x81\x43\x5a\x0b\x08\xfe\x49\xfd\x6a\x1c\xef\xdd\x08\x7e\x7f\xcd\x7f\xf6\x55\x2e\x26\x98\x57\xb5\x9c\xb6\x8e\xdd\xcb\x20\x2c\xf0\x8c\xef\x28\x67\x09\xe1\xaf\x55\xe9\xbb\x0d\x3f\x6c\x09\x91\xdc\xaf\xb2\x05\x0b\xec\x08\x3a\xeb\x74\xdb\x8e\xbe\x08\x9d\x04\xf9\xb5\xb1\xae\x39\xa6\xe2\x84\x8c\x10\x89\x5b\x03\xbb\xde\xb0\x30\x58\x5d\x62\x7a\xda\x3a\x8c\xfe\x07\x94\x16\xed\x59\xfd\xe3\x8b\x04\xe1\x15\x7f\x8d\x2a\xef\xe8\x41\x42\x95\x8a\x9b\xb9\xaf\xf2\x4e\x42\x6a\xc7\x3d\x53\x93\x0b\x3f\x58\x70\xce\xac\x92\xab\x50\xd3\x22\x58\xbf\x34\x72\x76\x8f\x73\x9b\x04\x63\xbd\x95\x76\x03\x7b\x2d\x09\xbb\x1a\x57\xef\x3a\x56\xd4\xc6\xfc\x2b\x0a\x79\xf6\x05\xeb\x6f\x4a\x11\x3c\x86\x85\x77\x46\x29\x56\x31\x28\x2b\xfd\xf9\x44\x8c\xab\x81\x41\xb7\xf1\xda\x8c\xd9\x2b\x6c\x09\x6f\xb8\xad\xc4\x82\xc4\xb4\x09\x6c\xaf\x55\xfc\xf6\xd6\xad\x9d\x04\xf5\xeb\x0e\xa2\x69\xf6\x8f\x59\xd0\xfa\x33\x9f\xbd\xa9\x62\x0a\xc1\x5c\x78\xeb\xc5\x5c\x8e\x79\x84\x48\xdb\x57\x92\xbd\x85\x37\x69\xec\xea\x8b\x4e\xef\xfe\x3c\x06\x1b\xdf\xce\xde\x34\x11\xe0\x35\xf8\x7e\xc6\x1a\xfb\x7d\x84\x81\x93\x77\xae\x0b\xbd\xbd\xc4\xe0\xda\xbb\xb4\xd0\xf9\xb9\x51\x84\x46\xf3\x99\x66\x56\xf7\x3d\x08\x39\xeb\x75\xa6\x08\x9d\x8e\x62\x70\xfa\xe9\xe6\x4d\xf2\x1b\x12\x18\xbc\x8b\xdf\xeb\xf5\x75\x6f\x11\xc1\xa8\x75\xc5\x5f\x03\xdb\x2a\x42\xcc\x52\x6d\xf7\x8a\xc7\x75\x84\xe2\x9b\x4f\x32\xfe\x2b\x26\x5e\x21\x6f\xae\xcf\x0e\x20\x78\x9d\x4f\x91\x56\x7e\xea\x47\xf0\x8d\xb2\x33\xbd\xca\x11\x4b\x63\x77\x9e\xeb\x5c\x5c\x92\xc4\xfc\x5b\x09\x48\x8f\xe8\x28\x5a\x6d\x4a\xa8\xc8\xb4\x1d\xaa\xba\xb9\x8b\xc0\x9f\xee\x75\x78\x7f\xcc\x75\x42\x60\x63\x6f\x51\x6f\xb8\x0f\x61\xec\x55\x62\xe3\xce\xab\xce\x84\x48\xcf\x97\xe2\x96\xae\x0f\x18\x78\xff\xf6\x88\x72\x9f\x28\xdc\x7d\x0b\x37\x1f\x8a\xfe\xc3\x82\xfd\xe3\xf5\xb2\xb1\x0a\x6c\x84\x9d\xb6\x38\x16\x88\x4e\xd6\x3f\xcc\xc9\xd3\xb3\x77\xd9\x6a\x45\x70\xd5\x94\x5b\xaa\x21\x95\x4a\x30\x0c\xed\x3b\x37\xe6\xef\x44\xc8\xec\xdf\x94\x30\x92\xd3\x4c\xb0\x17\x9c\x6f\xd1\x7f\xa4\x89\x90\x96\x3b\x6b\x95\xa4\x83\x1b\x41\x5c\x57\x6a\xc7\x3e\x35\x0f\xc2\x4c\xcd\x75\xaf\xef\xfe\xec\x60\x10\x2f\xd3\x18\x70\xcd\xc1\x95\xd0\xba\xab\x44\xfe\x27\xd7\x6a\x42\x17\x97\xc7\xb7\xdd\x0d\x0f\x09\x7b\x73\xe5\x8a\xc5\x45\x1a\x09\x2e\x47\xd5\x96\xd0\xc5\x12\x06\x11\x65\xdd\xeb\x34\x15\xf6\x10\x5e\x5b\x93\x54\xac\x86\x25\xc1\x69\xe9\x89\x03\xa9\x81\xb9\x84\x99\xbb\x2f\x3c\x5b\x66\xbf\x98\xf0\x31\xfb\x25\xfb\x20\xfb\x2e\xc2\xa5\xf6\x17\x4b\xfb\x57\x28\x13\x7a\x04\x23\xdf\xe9\xc6\x6e\x21\x9c\x0a\x3d\x24\x52\xf2\x6e\x1e\x21\xeb\xe8\x69\xb9\x7e\xd3\x3d\x84\x39\xbd\xf5\xda\x4c\xba\x20\x61\x45\x1b\xf7\x16\x3b\x8e\xf4\xff\x57\x44\xdf\xe6\xa2\x91\xa0\x1f\x2c\x6c\x3f\xaf\x57\x63\x88\x06\x42\xaf\xc1\xa6\xd5\xba\xf7\x1e\x10\xe6\xef\xa8\x5e\x3d\x38\x6e\x4c\xd0\x7b\xbc\xfb\xea\x34\xa9\x42\x82\x27\xdb\x6a\xde\x95\x86\x39\x93\xd0\xb5\xc0\x3c\xcc\xc5\xa3\x93\xb0\xbe\xa9\xbe\xad\x87\xf7\x33\x61\x3d\x5b\x80\xeb\xec\x05\x9f\x09\x29\x77\xdc\xf8\x56\xf9\x94\x11\x78\x4c\x8e\x79\xa6\xc8\x7e\x20\xdc\x3f\x38\x1e\x14\x1e\x32\x40\xc8\xdc\x1c\xfa\x72\xcc\x2f\x83\x70\xad\xc9\x47\x5c\xbd\xbd\x8a\x70\x14\x32\x3b\x6d\x67\x9e\x20\xd8\xbd\xf9\xfd\xb1\xc3\x23\x90\xb0\xf8\x4c\x7a\xff\x8a\xe1\x06\x06\x3b\x6a\xd4\x64\xe9\xf0\x6a\xc2\x75\xb1\x94\x9d\x05\xd5\x67\x18\xa4\x0e\xed\x91\xeb\x15\xaf\x21\x9c\x13\x4b\x4b\xf8\x95\xf5\x95\x30\x2b\xe5\x45\xf5\xcf\x09\x44\xaa\xbf\x8d\x6a\xc8\x6b\x25\x14\x7c\x71\xd2\xf8\xaf\xec\x37\x0c\x88\xde\xbb\xa4\x86\x50\xbf\xbb\xff\x4d\x5d\x7c\x22\x61\xdc\xf8\xcc\x8f\x0d\xa7\x4e\x13\x9a\xda\x7f\xa6\xa5\xf6\x45\x13\x7a\x97\xc6\x8e\xed\xee\x3f\x4e\xb8\x96\x9a\x54\x70\x53\xef\x2c\x61\xcc\xbc\xe7\xa3\xae\x6c\x3a\x41\xef\xfb\xae\x25\xce\x65\xfa\x04\xa9\x1f\xb5\xb1\xec\x13\x07\x9a\xee\x63\x75\x6b\x0c\x77\x79\x30\x78\xb5\x65\x09\x77\xfc\x2f\x22\x98\x5f\x29\xe1\xd0\xbc\xb8\x9e\xa0\x7b\x7c\xda\xa1\xcc\xbe\x95\x84\x21\x43\x95\xd6\x8f\x2e\x73\x09\xd6\x77\x9d\x34\x35\xcf\x7d\x26\xd8\xc6\x6f\xad\x57\xbc\x5e\x4a\x28\x7b\xc0\x23\xff\x9c\xbb\x8f\x90\x7f\x97\xe3\xa4\xbe\x78\x3b\x83\xc5\xea\x49\x09\xd5\x9e\xd5\x04\x29\x97\x43\x9f\xa6\xfd\xee\x23\x6c\x5d\xb5\x4f\x3a\x75\x53\x21\x61\xa0\x50\xb2\xf9\x48\x75\x05\xc1\x59\x70\x77\xa4\xf2\xdf\x36\xc2\xb6\x7c\xa9\x33\xf0\x2d\x25\x8c\x44\xf1\x71\x19\x6a\xb4\x11\xfc\x67\x47\x68\xdc\xcc\xbb\x43\x70\x36\x61\x15\x08\x6b\x35\x12\x76\xd5\x5e\xbe\x27\xa2\xd3\x40\x63\xec\x96\x7e\x9a\xcd\x0d\x84\xc8\x75\x85\x21\x3d\xf1\x77\x08\xa6\xdc\x27\x9d\xb8\xcb\xd3\x18\xfc\x28\x2f\x4e\x3e\x1f\x3b\xc6\xc2\x91\x45\x65\x52\xd7\x95\xe7\x12\x6a\xe5\xfb\x13\x66\x6d\xb2\x24\xf0\xcf\x34\x09\x9c\x9d\x3a\xf1\x39\x13\xaa\xe3\xd5\xd7\x55\x25\x84\xce\xbf\xca\x1a\x7b\x9d\x47\x38\xc2\xde\xaf\x61\x7e\x68\x33\x61\x43\xce\x13\x8f\xff\xca\xb6\x0c\xb5\xbe\xb3\xe1\xd9\x84\xfa\xce\x31\xb3\x5f\xdb\x27\xae\x16\x2d\x6e\xb1\xbc\x16\x2d\x84\xe8\x4d\x12\x3a\x3f\xee\x5b\x33\xb8\xd4\x65\xd4\x75\x97\xc7\x9e\x70\xe4\x5e\xf1\x96\xc0\x8d\xf6\x84\x73\x76\x0d\x7d\x0e\x25\xaa\x04\x0d\x61\x9e\x7b\x87\x56\x06\x10\x92\xda\xf2\xde\x95\xe9\x10\xe1\x62\xce\xcd\xad\x4a\x99\x8a\x84\x97\xea\x3d\x0e\xb3\x83\x9a\x08\x7b\xdc\xb7\x08\xe7\x09\x37\x10\x24\x16\x7b\xca\x44\x2c\xf2\x25\x3c\xac\x9f\xbb\xab\x73\xb6\x1b\x61\xb5\x33\x13\x93\xaf\x1c\xc1\xe0\xb1\x84\xdf\xd9\x92\xbe\x76\xe6\xdf\xce\x1b\x6f\xc1\x3f\x67\xa6\xa6\x4e\x82\x55\xe0\x99\x98\xce\xb1\x52\x06\x3f\x9a\x05\xd8\xff\x83\x9c\xd6\x87\xae\x8e\x09\x9c\xf8\xb8\xcb\xe5\xbf\xa2\x59\x60\x3a\x10\x36\x2b\x84\xb0\x53\x61\x7f\xc4\xee\xe4\x87\x84\x85\x3f\xc4\x5f\xf2\x1c\x57\x24\x78\x56\xbd\x08\xe4\xdd\x54\x4c\x70\x35\xce\x57\x6a\x9c\x9a\x41\xe8\x4e\x7f\xb2\xed\x8d\x7c\x3c\xc1\x21\x4e\xbb\x76\xf6\x06\x17\x82\xe2\xe9\x72\xb3\x5f\xef\x94\x08\x5f\xfc\xa3\xeb\x4a\x4e\xeb\x13\x44\xc2\x7f\x5b\xae\xf0\xd6\x26\xf8\x9e\x09\x59\x60\x1b\x69\x43\xb0\xde\xf7\xa2\x40\xc7\xa1\x9a\xf0\xd2\xc1\x9f\x47\x7b\x02\x7f\xab\x5e\x35\x9d\x3d\x7e\x97\x60\xac\x6a\xec\x75\xb5\xe2\x01\x21\xf8\xa7\xe7\xe1\xcf\xab\xea\x09\x7b\x3e\x57\xd6\x4a\xf1\xdd\x22\xd8\x7f\xf7\x1c\x7e\xe9\x97\xcc\xe0\x6d\xe7\xa8\x6c\x5b\xc8\x36\xc2\x92\x52\xa7\xfd\xc3\x15\x9c\x84\x90\xac\x15\xed\xb3\xdf\x0a\x13\x92\x84\x74\xcc\x51\x55\x4e\xd8\x79\x72\x17\xe3\x18\x34\x8b\xf0\x38\xfb\x57\x67\x50\x9c\x24\xe1\x54\x7d\xa9\x4b\xa2\xb5\x2e\x41\x7f\xcd\x3c\xb1\xad\x36\x6e\x84\x46\xcb\xd7\x6b\x92\xe6\xad\x23\x84\x7e\x11\xfa\xd9\xf2\x49\x86\x20\xf0\x6c\x6b\xf0\x91\x6f\x0b\x08\xdc\xf5\x8d\x85\xc2\xfc\x2e\x84\xc0\xfa\x29\xa2\x22\xe9\xec\x84\x91\x3f\x42\xaf\x1f\x2f\xb3\x9a\x84\x1b\x42\x5a\xb6\x3d\x16\xe3\x2c\xfc\x3a\x38\x55\xa0\x2c\x5d\x9c\xa0\x6a\x7b\x99\x6f\x4f\xdf\x21\x42\x72\x74\xbc\xfe\x48\x5e\x04\xe1\xdb\xae\x9f\xf2\xbb\x33\x43\x08\x65\x85\xbd\x0b\xd8\x16\x5e\x22\xfc\xaa\x5f\x22\x34\x18\xab\x45\xd8\x1f\xec\xc0\x3b\xaf\xba\x95\xa0\xef\xdb\xa5\xa1\x61\x53\x44\x28\x98\x93\xc8\x9b\x9d\xd2\x41\x98\x61\x21\xb9\x4f\x78\x06\x2f\x81\xbd\xa8\xe7\xd9\x98\xde\xc4\xaf\x73\xe5\x62\x0e\x81\xb9\xc1\x84\xf7\x71\x3e\x6b\x8b\xbc\x2c\x08\x3b\xdb\x64\xcb\xf6\xab\x58\x10\x64\x2e\xfb\x68\x28\xcc\xda\x4e\xe8\x3d\x67\xd8\x2a\x74\x5a\x93\xb0\x70\xfe\x2d\x7e\xe1\x95\xcb\x08\x97\xf2\xf6\x18\x45\xb5\x4b\x10\x4c\x16\x4f\x5f\xa3\xce\xe5\x40\xd8\xf3\x20\x40\x79\x5a\xb6\x2d\x61\x90\x67\xb9\xaf\x44\xb0\x15\x8d\x9d\xaf\xc8\xd9\x95\xb0\x98\x90\x61\xf2\xe5\x33\x87\xb8\xe5\xbf\xa0\xfe\x5b\x3e\xed\xb8\xda\x38\xeb\x1f\xb6\x04\x25\x6f\x55\x95\x7c\x5f\x89\xc2\x63\x33\xfa\xce\x2e\x94\x23\xac\x3c\xca\x3b\x74\xb2\xcb\x88\x30\xb4\xba\xc6\xda\xe6\xb9\x05\xc1\xaf\xab\xe9\xde\x9e\xbb\x7a\x84\xe5\x05\x82\xc7\x3e\x0a\xc7\x11\x2e\x69\xac\xaf\x91\xf2\x5e\x49\x90\xdf\x3e\xf3\x4f\xdb\xc5\x55\x04\x8e\xe4\xea\x7e\x11\x99\x7d\x84\x9e\xd9\x61\x8a\x5f\xa3\x04\x08\x11\xbb\x72\x8a\x15\xa5\xd5\x09\xc7\x72\xb9\xbc\xdd\xf4\x66\x11\x9a\xb3\x54\x7f\x39\x99\x64\x4f\x82\x15\xd7\xd4\x5f\xd3\x1f\xf6\x12\x2e\x34\x7f\x2b\xfe\xaf\x38\xf6\x70\x79\x37\xd7\xed\x24\x2c\x56\x3c\xe9\x1b\x76\xc9\x75\x52\xf9\x7f\x42\x6b\x96\xa1\xef\x7d\x0f\x16\xe1\x67\xa5\x98\x4b\xd3\xe5\xb5\x84\xbb\xdf\x7f\xec\xab\x79\xf8\x90\x70\xae\xdc\xb8\xa2\x7a\x02\xb7\x2e\xdc\xd9\xde\xbd\x37\x92\xb0\xc2\xa3\xe1\xd5\xf5\x9e\x20\xc2\xf9\xfc\x4b\xc5\x53\x16\xde\x25\x6c\xbf\x23\xe0\x1f\x30\xdc\x46\xf0\xb0\x2d\x60\xfb\x0f\xa6\xdb\xbe\x0d\x99\x6f\xf6\x26\x74\x46\x96\x2e\x88\xe5\xc9\x21\xd8\xf1\x24\x2d\x5b\x1b\x7a\x8a\x10\x68\xff\x7e\xdd\xec\xdf\xee\x93\x76\xe2\x5c\xce\xea\x8d\xe9\x45\x12\x14\xf9\x1a\x1e\xae\x5f\x14\x44\x70\xe6\x52\xe2\x72\x1c\x6e\x22\xa8\xbd\x1e\xd1\xf4\xfa\x5b\x43\x78\x30\xd5\x30\xf9\x3f\xf0\xe4\x1b\x46\x7a\x4e\xe0\xe5\xe0\x62\x6e\xb5\xef\x4d\x84\xd0\xb3\x62\xf6\x0f\x9d\x63\x09\xbf\x17\xf4\x06\x70\x8d\x9f\x27\xac\xf8\x53\x98\xbc\x3d\xf1\x2c\xc1\xf9\x6f\x42\xe9\x23\xd7\x14\xc2\xca\x1f\x67\x75\x5a\x9e\x27\x11\x42\x2f\x84\x14\x2f\x92\x88\x25\xdc\xc8\x60\x71\x0e\xbe\x4f\x27\x48\x2f\xfb\xa9\x5b\xce\x76\x99\x60\xbc\x59\x66\xf8\xfd\x44\x19\xbf\x55\x32\xb2\x61\xf6\x4d\x42\x93\x86\xf2\xd2\xc3\xb8\x41\x88\x9e\xda\xfd\xde\x3c\xfe\x03\xa1\x51\xaf\x7f\x91\xf1\xc4\xe8\xdb\xc7\x4e\xe1\x5a\x56\x2b\xa1\x25\xb4\xfd\xdd\xd6\x40\x9f\x49\x08\xed\x91\xd4\xd9\xe2\x91\x41\x38\x39\x25\xbf\xc3\x42\xdd\x77\xf2\x68\x87\xa7\x9e\x65\xb4\x01\x61\xc6\xea\x9a\x12\xdf\x76\x23\xc2\x32\x75\xee\xca\xb4\x6d\xb2\x84\xd1\x6b\x2a\xc2\xad\xf5\xc6\x84\x2b\xd7\x42\xd9\x2a\x16\x84\x13\x74\x7e\x17\x75\x7b\x35\xe7\x13\x6e\x59\xc6\xfd\x95\xb5\xda\x44\xb8\xf3\x61\xc4\xe0\x60\xee\x3a\x42\x84\x40\xe3\xd4\x6e\x9d\x95\x04\x5e\x9b\xcd\xa5\x96\x59\x6c\x84\xeb\xe3\x9d\x6b\x77\x65\xd6\x32\xf8\x9e\xf0\xe2\x95\xf9\xdc\xc7\x84\x3f\x73\x3d\x33\x6a\x32\x9d\x19\x04\xa7\x08\x7c\x6d\x62\x33\x20\xb4\x5a\xf2\x88\x2d\x5f\x9c\x4b\xc8\xb3\x51\x7b\x1e\xd1\x7d\x8f\xe0\x92\xe7\xd4\xb2\xa8\x5f\x87\xf0\x30\x75\x65\x19\x77\x74\x10\x21\xbd\xef\xda\x56\x4f\x6b\x13\x06\x22\x87\x39\xfd\x02\x4f\x97\x11\xcc\xbe\xf4\xae\xff\x0f\xc7\xfb\x55\xce\x58\xbe\x2f\x26\x7c\xdb\x1c\x61\xef\xea\xdc\x42\xff\x76\xfe\x0f\x6c\x1d\x95\x7a\x43\x1b\x8f\x10\x74\x0c\xb7\x95\x49\x0c\x46\x4e\x2a\xff\x4f\x44\x1f\x99\x36\xbf\xfb\xdd\x66\x02\x4f\x8d\xcd\x83\x67\x4a\xbb\x08\xe7\xb8\xd3\x12\xaf\x49\xa9\x13\x8a\x4b\x4a\x55\xef\x6e\x55\x23\xb8\xb9\x94\xd9\xc4\x3b\x6f\x20\x1c\x79\xca\x33\xe4\x57\x9a\x47\x48\x4d\xe3\x4d\x0b\x7e\x51\x47\xd0\x36\x90\x9c\x36\x23\xf4\x39\xe1\xf1\xce\x5f\xb5\x61\x3f\xfb\x09\xa6\x87\x4d\x17\xb2\x87\x3e\xa7\xb1\xf4\x05\x9b\xfe\x3c\xce\x27\x18\xcd\xe6\x12\xfa\xa1\x13\x46\xd8\xb4\xfe\xd6\xb7\xf9\x41\xf1\x0c\xea\x5d\xca\xf6\xeb\x5c\x3d\x4e\xe0\xe2\x39\x32\xbc\xad\x25\x81\xc0\xce\x25\xcd\xe6\x34\x57\x91\xf0\xba\xa9\xc8\xfe\xe7\x92\x3e\x16\x02\xeb\x83\xbf\xf5\x5e\x13\x26\x24\xfc\x94\x0b\xce\xdb\xbe\x98\xb0\x64\x6e\x90\x76\xa9\xc9\x08\x0b\x06\x3f\xa5\x07\x87\x1d\x66\x12\x3a\x67\xa7\x70\x5d\xb4\x17\x22\xa8\x3d\xdf\xf1\x23\xc6\x3f\x8c\x70\xf9\xec\xf0\xd4\x4f\x75\x09\x84\x8f\xc2\xa2\xdb\xca\x3c\x43\x09\xa6\xd9\x0d\x7d\x9b\xe6\x9e\x25\x8c\xfb\x74\xdc\x38\x7f\x40\x8f\x20\x56\xfb\xc0\xe4\x6e\xc8\x0a\xc2\x85\x19\xad\x37\xbc\x3f\x7b\x10\x3e\x5d\xfe\x5d\xf8\xf9\xc3\x4f\x16\x4c\x36\x1a\xc9\x5f\xb6\x2c\x64\x60\xb9\xca\xd2\xd8\xe3\x4c\x0b\xc1\xa2\x36\x6c\xca\xf5\x2b\x2d\x84\x02\xc6\x63\x3b\x0d\xdd\x25\xd4\x67\x3c\x88\xd5\x49\x60\x08\x6d\xf5\x37\x37\xaa\x4f\xbf\x47\x08\x96\x7f\x93\x3b\xfd\x5a\x28\xc1\xfe\x58\xfb\x3b\xef\x9d\x17\x09\x6f\x39\x96\x3c\xbd\x37\xc0\xcb\x8c\xed\xbd\xf1\x3c\x59\x5e\x87\xb0\xe3\x79\xaf\x18\x4f\x9f\x35\x61\xf9\xd8\x6a\xe1\x86\x9b\xa3\x2c\x24\x9d\x69\x54\xbe\xb2\x5f\x9b\x30\x57\xf1\x8e\x63\x51\xab\x1f\xe1\xf1\x89\x0e\x11\xcf\xdc\xed\x84\x92\xa8\x9d\x71\xa2\xc1\xdb\x08\xd1\x7c\x99\x51\x1b\xaf\x6f\x67\xb0\xdf\xff\x80\x82\xc6\x01\x4b\xc2\x0e\xbf\xe3\x29\xbf\xcf\x18\x10\x6e\x5c\x57\x13\xd5\x4b\xdd\xce\xe0\x50\xef\x4a\xe1\x25\x49\x1c\x04\xae\x0f\x7d\x7b\x2e\x19\x48\x13\x2e\xdf\xb9\x59\xa4\xa3\x30\xf1\x7a\xdc\xaf\x58\x57\x17\x7d\x98\xd0\x30\x52\x61\x21\xff\x21\x63\x12\xd6\x78\xff\x0e\x5f\x31\x01\x1d\x05\x1d\x81\x1f\xf6\x72\x04\x71\x7d\xf9\x8f\x4e\x7c\xba\x84\x56\xd6\x5d\x9e\x80\x67\x4f\x08\xbb\x39\xd2\x0a\x55\x57\x95\x10\x84\xc2\xf2\x8b\xb8\x1f\x0f\x10\xf6\x2b\x26\x6e\xe1\x9c\x40\x64\x62\xaa\x20\x67\xc8\x1b\xc2\xfa\xde\xc8\xb5\xf7\x53\x3d\x08\x79\x4b\x37\xa6\x24\xb6\x9e\x21\x34\x3f\x1d\xdf\x75\x6f\xef\x15\x42\xb4\xa7\xc4\x07\x61\xf3\x44\x06\x67\x0f\x56\x65\x44\xcf\x72\x20\x44\x48\xcb\xef\x38\xfd\x23\x84\x50\x6b\x10\x54\xab\x27\xb0\x8f\x50\xdd\x57\xb8\x9b\xfb\x68\x09\x61\x4b\xf4\x9f\x23\x49\x05\xa5\x84\xda\x17\xf7\xef\xc7\x5f\x2a\x25\x3c\x97\xd5\x5c\xa8\x75\xfd\x22\xf3\x6f\xb4\x2f\xf7\x39\xae\x0c\xc6\x12\xa2\x7a\xf7\x9e\x9f\xf9\x27\x86\xb0\xa9\x53\xf9\xca\xeb\x6f\xb1\x84\x14\x14\xb7\xad\xfe\x9b\x46\x70\x55\x6c\x2d\x8f\x9d\x28\x8f\xd4\xdb\xae\xb1\x75\x84\x33\x68\x08\xec\xba\x91\x93\x59\x45\x78\x77\xd0\x2d\x66\xca\x2f\x07\xc2\x62\xdd\x97\x5c\xc9\xac\x6c\xc2\xd8\xe9\x35\xb6\x6e\xed\x57\x08\xdb\x8e\x9a\x15\x78\x9e\x7a\x49\xf0\xda\xbe\xe5\x63\xec\x48\x3d\xa1\x28\x99\xb3\xa9\xcc\xa1\x81\x70\xea\x6e\xe6\xaf\x7c\xad\x51\xc2\xc3\x0b\x63\x6d\xdf\x67\xd5\x12\x96\x3f\x2a\x97\xcd\xbe\xa3\x4d\xb8\xe5\xe1\xf7\x5e\x79\xe8\x22\x41\xc2\x78\x23\x5b\xd4\x13\x27\xc2\xd2\x9c\xbe\xd7\xab\xac\x97\x11\xfc\xdf\x94\xaa\x3e\xe3\xbf\x43\x48\xbd\x9f\x5b\xe5\xf8\xf2\x2a\x61\xc7\xa2\x4c\xf6\x71\xeb\x4c\x42\xdf\x81\x45\x7f\x9c\xf8\xc3\x18\xa4\x4e\xbf\xb8\xb4\x6f\x37\x58\x48\x5f\x2d\x66\x57\xbd\x6a\x94\x85\xaf\x12\x37\x44\xf9\x0e\xd5\xb3\x50\xb0\x56\xd2\xd1\xba\x43\x9f\xfe\xe1\xf7\x73\xef\x63\x3b\xe3\xd5\x08\x1b\x0e\x97\x73\xd6\x38\x7d\x21\xec\x1f\xec\xb0\x70\xfe\x70\x9b\xb0\xb7\xe8\x85\xac\xce\x9f\x0b\x04\x9b\x85\x5f\x65\xad\xcc\x1a\x09\xf7\xeb\x64\x1a\x14\xf9\x33\x09\x1f\x1e\xe8\x58\x2f\x73\xb9\x4f\xb8\xa1\x11\xed\x97\xac\x77\x8f\x70\x5a\xb5\x59\x91\x7b\xee\x09\xc2\x9a\x54\xf5\x50\xd5\x9d\xeb\x08\xba\xe7\x38\xd6\x79\x1f\x9e\x4d\x98\xba\xf7\xcf\xb0\x40\xa2\xd1\x24\x5c\x79\xff\x5a\xbe\x63\xfc\x03\x0b\x5e\xe9\xea\xbf\xdc\xd9\xb2\x09\x2c\x85\x0c\x9f\x88\x64\x6b\x06\x4f\x3b\x38\xb9\xc4\xd6\x46\x10\x1c\x3d\xb2\xea\x4b\xf9\x04\x08\x69\x01\x06\x3b\x9e\x34\x55\x30\xf0\x5b\x24\xc7\x23\xe0\xa9\x4c\xf0\xef\xac\xf8\xe1\x5d\xa3\x4f\x30\xfa\x9e\xca\xf3\x4a\x44\x9f\x60\xcb\x6c\x3f\xae\xe9\x69\x46\xd0\x88\x3e\x17\xb3\xe7\xfd\x0a\x42\x46\xd8\x8c\xc7\x42\x86\xca\x84\x14\xbe\x73\x2f\x4e\xc6\xcc\x24\x3c\x7b\xd4\xad\xaa\xd9\x21\x40\xb8\xeb\x68\xf9\xbb\xce\x63\x3d\xc1\xe8\xf6\x12\xfb\xa4\x3d\x9b\x08\x3b\xd6\xf5\x2c\x6d\xca\x13\x21\x2c\x1c\x15\x4d\x5f\xf2\x62\x8c\x85\x0d\xbe\x1e\x9c\xc7\x74\x02\x09\xca\x92\xc2\x27\x97\x3f\x78\x48\x60\xe9\xec\x63\xf3\xfd\xdd\x42\x08\xd2\x8c\xda\x78\xe8\xfe\x15\x82\xb2\x18\xbf\x75\x77\xfb\x56\xc2\xd5\x26\xdf\x83\xbd\xc5\xea\x84\x0a\xbe\xe0\x92\x1e\xbe\xe5\x04\xf1\xa4\x66\xb5\x3d\x37\x45\x09\x8d\x2b\xb6\x79\x1e\x7d\xae\x45\x68\x94\x3c\xe1\x6d\xf9\x75\x3b\x61\x64\x7b\x4a\xe5\x13\xb6\x4d\x84\x16\xfe\xec\x9f\xda\xb3\xa4\x08\xb5\xba\xdd\x51\x66\xcf\x79\x09\x9d\x0b\x13\xb6\x7e\xd6\xc9\x26\xbc\x98\xfe\xfa\x70\xdf\x1d\x51\xc2\xb3\xbc\xdd\x17\xa7\x75\xcc\x9c\x04\xb5\x88\x37\xe7\x6e\x70\x7d\xac\xc4\x81\xd9\x1b\xbc\xb2\x37\x1b\x12\x82\x15\x4d\x07\xaf\x05\x68\x13\xdc\xe4\x22\x55\xa7\x47\x5a\x12\x14\x9f\xe8\x9f\x33\x0f\xe6\x23\xa4\x17\x6c\x89\xbd\x38\xec\x48\x48\xa9\xbf\x24\xfa\x64\xd9\x56\x82\xa2\x7a\xcc\xaf\x45\xec\xe6\x04\x49\xe9\xbb\x07\xd4\x8e\x4a\x11\x52\xde\x67\x5d\x52\xff\xa3\x49\x38\x31\xb3\x7e\x37\x5f\xac\x01\x41\xf4\xa1\x91\xe0\x78\x6a\x19\x81\x77\x30\xf1\x7d\x02\xfb\x49\x82\x81\x44\xaf\x9f\xee\x4d\x76\x42\x5b\xcd\x98\xdd\x3a\x97\x5f\x04\x85\x37\xaf\xf2\x8f\xf4\xd7\x10\x34\x24\x77\xfa\xde\x77\x67\xd7\x42\x0a\xcf\xa0\x84\xdd\x44\x59\xfc\x5a\x38\xbd\x55\xf5\x06\xa1\x6d\x4b\x8b\xd0\x13\xff\x21\xc2\xd4\xaf\x85\xcb\xf9\x2b\x2e\x32\x50\x5f\xae\xbb\xf7\x9d\xe8\x57\xc2\xa9\xfd\xf3\xea\x3e\xb6\x3f\x24\x8c\xde\x92\xe5\xe7\x2a\x1b\x22\x3c\x8b\x76\xe9\x0a\xfe\xc2\x46\x38\x58\xb7\xf4\x94\x59\x72\x02\x81\x57\xff\x9a\xdb\xf7\x4f\x6b\x08\xb7\x7c\x7e\x6a\x74\x6e\xe6\x23\xa8\x17\x09\x56\x85\xf1\x73\x11\xfe\x28\x79\x72\xa6\x5c\x8f\x23\xa8\x48\x2d\x4f\x0a\x1c\x29\x61\x10\xc4\xcc\x2a\xca\x98\x5d\x4f\x30\x7e\xeb\xb8\x31\x7b\x02\x92\x97\x0b\x13\xb3\x26\x50\x7d\xc9\xfe\xe2\x54\x8e\x2c\xc2\xdc\x00\xce\x7b\x3b\x3f\x87\x11\xea\x66\x58\x1f\xe1\x90\x74\x26\xc8\x6d\xf3\xe6\x1d\x12\x4a\x20\x70\xf9\xab\x74\x27\x5e\xbf\x48\x08\x68\xbd\xfc\x61\xdb\xc7\x78\xc2\x1e\x36\xdb\xe5\x69\x6b\x8f\x13\xf2\xc8\xc4\xc6\x22\xe2\x3c\xe1\x73\xf7\xdb\xa9\x76\xdf\x76\x11\xea\x6d\x3e\x7a\xce\xe1\xb9\x49\x70\xef\xec\x77\xc4\x77\x6d\x82\xc1\xe9\x45\x83\xa3\x01\xd7\x09\xe3\x45\x2f\xb5\xd5\xf8\x6c\x09\x73\x53\x7a\x4c\xd4\xcd\xaf\x13\xc4\xb9\xd5\xe4\x0d\x0f\xce\x21\xf8\x1e\xad\x1a\x96\x3e\x91\x37\x09\x97\xc6\xce\xd4\xfc\xff\xe3\xfb\x77\x0b\x27\x99\x43\xa7\x08\xfa\x45\x9f\x7b\xd6\x69\xbb\x12\xa6\x2f\x1a\xad\x74\x4b\xe6\x24\xa8\xe8\x9b\xd8\x6c\xf5\xf9\xc5\x82\x88\xf6\xf3\x00\x5b\x0e\x79\x42\xe4\xda\x90\xc3\x01\x5b\x2f\x33\xf8\xcb\x2b\xa4\xf1\xd7\x6a\x07\x83\x52\xd7\x7b\x19\x29\x4e\x6d\x84\xad\xf1\x3f\xa6\x14\x1c\x7f\x4f\xe8\xe4\x14\x92\xf1\xd0\x1e\x60\x60\xe3\xb2\xa2\x30\x64\x4d\x3d\xa1\x74\xf6\x89\x3c\xf9\xb1\x08\x82\xce\x93\x85\x86\xc1\xf6\x1a\x84\x56\x9d\x80\xa2\x6d\xa2\x2b\x08\x0e\x2a\xca\xdc\x7c\x96\x0b\x09\xaa\x3f\x06\x33\x56\x34\xdf\x23\xbc\x61\x1f\xbc\xb3\x8a\xcb\x86\x10\x21\xcf\x96\xbb\x49\xa9\x87\x30\xdf\x74\xd1\x23\xa9\x8b\x15\x84\x1e\x99\xcf\xfb\x05\x4f\xea\x13\x56\xaf\x8b\xb2\xf5\x32\x97\x65\x60\x6d\xdc\x71\x9d\xbd\x8f\x8b\x30\x78\x6d\x60\x77\x3c\xe7\x12\x82\xc0\x17\x8b\x87\xee\x02\x45\x0c\x4e\xde\xc9\x0f\xfb\x6f\xb4\x73\xcb\x58\x5e\xf8\xbd\x62\x16\x96\x0c\x1e\x36\xdc\x96\xb2\x72\x52\xe1\xae\xbe\xdc\x55\x5e\xb2\x9a\xf0\xd1\xf9\x69\xdc\xe1\x89\xe7\xea\xd2\xae\x9c\x8d\x41\x23\xd9\x04\x7e\x71\x4d\xbb\x9e\x0d\x0f\x09\x2b\x13\xb9\xf8\x53\xaa\xee\x33\x68\x3c\xdf\x31\xab\xf1\x40\x13\x83\xcf\x7d\xc7\x83\x46\xa2\x2a\x19\x14\x6e\x73\x9d\xad\xaf\x5c\x4d\xd0\x1b\x1b\x5f\x19\xad\x11\xce\x20\x39\x6f\x4c\xaa\x78\xa0\x9b\xc0\xcf\x77\xe5\xc9\x8c\x79\x8f\x09\xcb\xe7\x6e\x39\x70\xe6\x64\x16\xa1\x35\x6d\x23\xcf\xdc\x9b\x99\x84\x33\x57\x2c\xd8\x8b\x8a\xce\x11\x3c\x82\xab\x82\x9d\xb7\x56\x11\xba\x34\x73\x2d\x3c\xd6\xfb\x11\x1c\xce\x97\xdd\xec\x50\x30\x20\x70\x1d\x28\xe9\xf1\xe1\x2c\x22\x34\xb2\xe5\xc8\xa4\x2b\x76\x32\xff\x0a\xfb\x27\x95\xa8\xc4\x2a\x6d\xc2\xcd\x73\x0e\x3b\x5d\x1b\xb5\x08\x8b\xbd\x94\xb7\xec\x3d\x52\x30\x09\xfb\xf6\xb5\x66\x76\x0d\x96\x13\x6e\x1f\x5c\x79\x2b\xe6\x50\x16\xa1\x86\x6f\xd5\x99\xc6\xd7\xc7\x08\xe1\x15\xcc\xd7\x37\x7b\xf7\x10\x7a\x37\xbc\x3b\xa0\xae\x56\xcd\x80\xf3\xea\x85\x6e\xd7\xba\xc7\xcc\xff\xef\x7f\xd2\x27\x30\x88\xff\x24\x28\xfb\xee\x67\x36\x03\xdf\x4f\x9d\x54\x39\x2f\x9f\x81\x9d\x5d\xe3\x2f\x13\x97\x54\x06\x31\xf9\xf2\xbf\x6b\x0f\x5c\x21\xbc\x71\xd0\xf8\x15\xac\xe2\x4c\x58\xa6\xdd\x20\xf7\x58\xc5\x72\x12\x0a\xe3\xae\x3d\xbe\x25\x67\x43\x08\x6b\x7d\xd0\xfb\xc6\x45\x99\x60\xa9\x7d\x54\x76\xfe\x80\x29\x61\xd1\x95\xfc\xf8\xc1\xaf\x12\x84\xdf\xcb\x9e\x7e\xf8\x76\x3e\x80\x20\xbc\x66\xe7\xb0\xae\xc8\x3b\x16\xea\xea\x83\x8a\xba\x9e\x1e\x23\x4c\x0d\xcb\x7a\x77\x42\x44\x95\x90\xb6\xc2\x56\xa6\x39\x51\x82\xd0\x37\x2e\x2f\x62\x94\xb3\x92\xf0\xf3\x94\xf7\x6a\xe7\xb6\x05\x84\xd4\x84\xb3\x73\x85\x56\x45\x10\xba\xc3\x44\xf3\x1b\x0f\x46\x12\xd6\xe5\x72\x89\x9c\xe3\x8c\x20\x58\x68\x19\x47\x18\xf7\x45\x10\x6c\x5b\x4e\xd5\x5a\x68\x16\x11\xa6\x6b\x35\x54\xd6\xc7\x94\x12\x22\x9b\x85\x12\x05\x14\xca\x08\x2e\x5e\xd2\x17\x63\x02\xb3\x08\x15\x39\x4a\xcf\x3b\x37\x3d\x27\x08\x96\x1f\xfd\xf9\x68\x02\x2f\x0d\x0a\x97\xb5\x4f\x40\x5b\xe3\xed\x95\xc5\xd1\x29\x04\x97\xbf\xcc\x8f\x8e\xd9\x8f\x09\x5f\xed\x7a\x54\x58\x12\x37\x19\x94\xea\xbc\x6f\xe8\x7a\x34\x87\xa0\xbc\xbc\x69\x96\x91\xcd\x2b\xd6\x3f\xe4\xe6\x7f\xba\xb6\xc5\x87\x97\x90\xb5\x3c\xff\x93\x40\xec\x23\xc2\xfa\x74\x13\xf3\xea\x69\x77\x27\xe1\xa6\xb0\x71\xfe\x97\xa9\x95\x84\x24\x69\xb5\xa0\x86\xe8\x7b\x04\x49\xf1\x5f\x5d\x22\x9d\x19\x84\x99\x6f\xfb\x6e\xf3\xb4\x64\x10\xd8\x4b\x8a\xeb\x79\x06\x4e\x12\x9a\x1b\xf9\x39\xfd\x1f\x65\x10\xa6\x6b\x0b\x85\x9d\x1b\xbe\x48\x48\x0a\x99\x36\xfc\x7b\xcb\x79\x42\x4e\x6c\xd1\x4a\x19\xbd\xbd\x0c\xc6\x86\xe2\xcb\xb9\x3f\x1e\x25\xd8\x7b\xf9\xae\x78\xb8\xea\x0e\x83\xe0\xaa\xde\x12\x17\x9e\x17\x0c\x7a\x5a\xf6\x9c\xdd\xf8\x2b\x92\xf0\xd3\x7e\xfc\xcb\xa3\xfa\x48\x82\xdc\x19\x19\xdb\xdc\x2b\xfa\x84\xd8\x4f\x1a\xad\xf6\x23\xbe\x84\x4f\x9b\x5b\x9a\x3f\xee\x51\x23\xd8\xdc\xbc\xd6\x7e\xa6\xd0\x83\xd0\x5e\x9f\xb7\xcb\x6e\xef\x5a\x82\xae\xcd\xd2\xbd\x0d\xee\x02\x84\x1f\xfa\x26\x9d\x23\x6b\xeb\x19\x3c\xcd\x61\x4f\xfe\xa0\xe0\x40\xe0\x5a\xe5\x2e\xfb\xdd\x33\x92\x30\xfc\xf4\x12\x0f\x6b\xd6\x0e\x42\x42\xe2\xa9\x11\x47\xde\xfd\x84\x45\x7c\x12\x77\xc2\xbb\xb4\x08\x03\xf2\x53\xb8\xbe\x17\xae\x23\x14\xb3\x07\xf0\x66\x7c\x31\x27\xc4\x67\xfc\xf9\x78\x22\x86\x9f\x20\x7d\x65\x4a\x4a\xf2\x47\x59\xc2\xb3\x37\x95\x8b\x3e\xc4\xaa\x10\x76\x61\x9d\x54\x76\xff\x2c\x42\xa7\x64\xd3\x85\xb0\xfb\xe6\x84\x05\x62\x47\x02\xf7\x92\x39\xc1\x72\x79\xfb\xb9\xf1\xa7\x29\x04\x0d\xfb\x43\xe2\xa7\xd3\x22\x09\x17\xeb\xdd\xaf\x6b\x7b\xfa\x12\x7e\xde\x71\xd4\xe7\x7b\x1e\x45\xf8\x26\x11\xa8\xb6\x5c\xda\x97\xb0\xdc\x31\x8f\x7b\x6d\xcb\x5a\x82\xe2\x6b\xcf\x62\x77\x45\x15\xc2\xbc\x25\x12\x05\x6a\x51\x42\x84\x99\x5f\x22\x47\xbf\xb8\x7d\x65\x21\x7a\x94\xfd\xd7\x9e\x59\x53\xe8\x7f\xc0\x74\xa1\xd1\x6e\xcd\x15\x33\xff\x17\x72\xee\x25\xcf\xb7\x14\x6b\x67\xa1\x2d\x7b\xe9\x09\xfe\x97\x0e\x84\x7c\xf6\xcf\xea\xcc\x86\x6a\x82\xc8\x82\x8a\x13\x9f\xfa\x7d\x09\x59\xb1\x6b\xce\x2e\x99\x69\x46\xb8\x97\xc3\xd7\xb8\xc2\x6d\x98\x85\xfc\xc5\xd6\xc5\x8b\x4c\x73\x08\xa1\x12\x82\xd5\xa3\x7b\xbc\x08\x5d\xd7\xe7\x0e\xe8\x2c\xb0\x27\x58\xea\xd9\x5a\xd5\x9d\xb6\x26\xb8\xbf\xd6\x95\x0e\xde\x26\x48\xb8\x58\x93\x9c\xd3\x2e\xe7\x4a\x08\xb4\x49\x19\xf7\xbe\xcb\x4f\x10\xbd\x56\xbd\x25\xfc\xb6\x1e\x21\x32\xff\xf4\xed\xa3\x63\xaa\x84\xca\x7e\xc3\x1a\x83\x99\x72\x84\xa0\xe2\x93\x4a\xd5\x57\x33\x58\xf8\x29\x3e\xd5\xe3\xe6\xd1\x20\x42\x66\xf3\x36\x55\xf1\xc3\x9a\x84\x71\xb9\xa5\x5e\x6f\xa6\x68\x10\x84\x94\x87\x9d\xe3\xce\xf2\x10\x46\x4f\x2e\xe9\x1b\x8c\xba\xc6\x60\xea\x89\xe3\x6e\x5b\xbd\x5d\x09\xdc\xaf\x67\x7d\xf1\xea\x7f\x32\xa9\x84\xee\xdf\x56\x65\xfb\x61\x2b\x83\x3d\x67\x4e\x94\x8a\x7f\xd8\x41\x50\xc9\x18\x7e\x70\x69\xc4\x87\xf0\xf6\x98\x10\xba\xa2\x5d\x08\x79\xd2\x71\xac\xc3\xc6\xba\x0c\xec\xc8\x63\xfa\x13\xf5\x7b\x84\x17\xc7\xde\xfd\x7f\xf8\xba\xd3\x60\x2e\xc3\xfe\xff\xff\xa1\x4d\x9b\x42\xa8\x54\xa4\x4d\x22\x4b\x24\xd5\xe7\x6d\xa7\x50\x96\x6c\x95\x94\x2d\x21\x59\x42\xa8\x90\x84\x52\xa8\x2c\x89\x22\x8a\x68\x91\x5d\x96\xd3\x92\x48\x59\xa2\x42\x4a\x91\x28\x51\xb4\xbe\xac\xfd\x47\x33\xff\x2b\xdf\xf9\x5d\x73\xdd\xea\x31\xcf\xf7\x71\xa3\x99\xcf\x79\x1e\xe7\x71\xdc\xb2\xb5\x5b\x37\x9b\xa0\x66\x5c\x39\x50\xee\x5e\x4a\xd8\xa8\x7f\x5d\x35\xed\x96\x2b\x81\x42\x77\xc4\xb8\x74\xe8\x10\x6e\xbb\xab\x7f\xb8\xb3\x45\x83\xc0\xf7\x54\xfd\x51\xae\xe6\x06\x82\xc3\x3c\xe1\x8f\xca\x97\xd7\x13\x0c\x5d\x0c\xee\x79\xf2\x37\xb2\xe0\x16\x3c\x2d\xb4\xbf\x95\x83\x70\xfe\x64\x46\xf0\x99\x46\xa3\xf1\xf3\xaa\xd9\x92\x95\xdf\x73\x09\xf6\x25\x67\xc6\x14\xee\x5e\x27\x9c\xc8\xac\xec\xee\x66\x7b\x49\x88\xf9\x39\xd2\x17\xb7\xb5\x99\x40\x27\xbf\x8b\x57\x67\x3c\x23\x24\x1a\x6e\x95\xf9\x30\x3e\x12\xd6\xdc\x2c\x96\x33\xb6\x9b\x30\x5b\xeb\x5d\xbe\xe5\x1e\x7d\x02\x33\x60\x1a\x5f\xf1\x3a\x7c\xc2\xe8\x3f\xf0\x7f\xad\x2b\xb1\x7d\xcd\x02\xc2\xbb\xc1\x37\x4f\xd5\xe7\x8c\x7f\x02\x7a\xda\x7e\xc5\xb2\x57\x13\x0c\x3f\xcd\x7f\x2a\x73\xe3\x14\x61\x39\x77\x5c\xf7\x48\x14\x43\x08\xa9\x65\x97\xd3\x49\x55\x23\xe8\x9b\xb4\x58\x35\x57\x85\x10\x9e\xa6\xb2\x5b\x2e\x58\xe3\x4e\x28\xf9\xe2\xcc\x7d\x49\xdc\x91\xa0\xad\x6e\x99\x90\xa5\xc1\x4f\x58\x75\xf1\x68\xc0\xe5\xda\x75\x04\xc9\xec\x15\x81\x26\xf3\xb5\x08\xb3\x2f\xe2\xf1\xb5\x1f\xee\x84\x61\x9d\x35\x4e\x57\x9e\x1e\x22\x08\x05\xff\xb9\x70\xfb\x8b\x02\xc1\x58\x75\x55\xa3\x75\x94\x10\xe1\xa9\x98\xef\xf1\x2f\xb6\x5b\x09\x8b\xcd\xf7\x79\x06\x8a\xe8\x13\x78\x5b\x7c\x67\x38\xb7\xec\x25\xa8\x16\x5d\x91\x7f\x6e\x79\x8d\x41\xe9\x8a\x15\x17\xe4\x56\x3c\x20\xb4\x5a\x2a\x3f\xbf\x75\xe3\x36\x81\x6f\xf8\xe3\xd6\x2a\x95\x23\x84\x67\x39\x5f\x8e\x85\xd9\xee\xfb\x6f\x28\x9d\xf2\x31\x31\xf9\x59\xe2\x84\xc2\x91\xfc\xd2\xb5\x75\xfe\x22\xc2\x9b\x82\xed\xed\x28\x6b\x25\x34\xe4\x71\x97\xb4\x38\xb4\x11\xb6\x34\x55\x06\x77\xcf\x76\x23\xac\x9e\x1c\xf0\xb9\xb9\x53\x8c\xb0\x57\xd4\xf5\xe2\xec\x9d\xbb\x09\x72\x4f\xd6\xde\x0d\x31\xd8\x43\x70\x76\x75\x4e\x32\xd4\x1f\x7f\xa9\xd7\x0d\x9b\x36\x08\xcd\x21\x88\x7d\x4f\x5c\xea\xae\xa4\x42\xd8\xb2\x24\x6b\x8e\x55\xf4\x57\x16\x44\xf9\xa6\xc7\x29\xdc\xf6\x24\x7c\x29\x3c\xab\x71\x26\x3c\x80\xfe\x95\xaa\x2c\x1d\xeb\x7e\xdd\xf9\x84\x91\xc6\x8d\x6d\xc3\x74\x8b\x81\xd4\x43\x91\x95\x45\x35\x8b\x08\xd7\x96\xd4\x4e\x8a\xcc\x4d\x20\x6c\x78\xeb\xba\x6a\xf4\x83\xd4\x04\x94\x35\x45\xef\xdd\x11\xe4\x44\xf8\xf6\x6d\x91\xeb\x45\x95\x65\x04\xa6\xe6\xa7\x76\x53\xc6\x10\x0b\xd1\x16\x46\xbb\xbd\xf6\x7d\x60\xc1\xb0\x40\x62\xf7\xc2\xe7\x93\x09\xc2\xd6\x1e\x7d\x7b\x72\xa7\x11\x24\xb5\xe4\xe3\x04\x96\x7e\x63\x21\xcb\xdf\x24\xf3\xcc\x35\x23\xc2\xdd\x45\xa3\x86\x0f\x57\x95\x13\xde\x96\x4c\x7a\x16\x4d\x4e\x84\xdf\x8f\x67\xb1\x9d\xa9\xdc\x44\xb8\xb9\x2f\xee\x6d\xf3\x1c\x76\xc2\xd4\x9d\xa9\x7a\x5b\x3e\xa9\x10\x56\x08\xc8\x0b\x3f\x6f\xff\xc6\xc2\xe5\x9e\x05\x3a\x5c\xc7\xab\x09\xfe\xb7\xd2\x98\x39\xe1\x86\x04\x8e\xaf\x45\x3e\xc9\xc1\x0b\x08\x7a\x3c\xf1\x69\xc9\xfc\xf3\x08\x2b\x8e\xe4\x85\x2f\xf4\x53\x9b\x00\xcf\xe7\x42\x1d\xbf\xab\xa7\x11\xe6\x46\xad\x3d\xf1\x4a\x51\x86\x81\x83\x62\x9b\xd6\x1a\x4b\x0b\x82\x4f\xcf\xb4\x43\xfc\xa5\xda\x04\x8f\xe7\x3d\x4c\xbb\xaa\x1a\xc1\xcd\xe1\xe3\xae\x16\xe6\x3b\x0b\x92\xaa\x9f\xf3\x92\xba\x37\x13\x0e\x2c\x5f\x2d\x30\x62\xdd\xcf\xc2\xab\x63\x05\x12\xf5\xc7\xd4\x09\xef\x62\x42\xaf\x9e\x6a\xde\x4b\xff\xca\x2c\xa9\x03\xdb\xef\xed\xc8\x25\x74\x3e\x8d\x7b\x69\x6d\xfb\x8e\x05\x97\x75\x53\x03\xbe\xec\xb2\x21\xe8\x3f\x93\x1d\xba\xed\x54\xc6\x80\x7b\x01\xb7\x8e\x66\xfe\x2e\xc2\x88\x41\x84\x7e\xff\x54\xb0\x50\x2b\x1e\x9d\x71\x5f\xd8\x96\x20\xe7\xa0\x6f\xba\x26\x5a\x6c\x02\x4e\xed\xf8\x20\x85\x95\x3f\x59\x08\x89\x7d\xb6\xf8\x52\x9a\x2a\x21\x39\x4d\x46\xd0\xa2\xd6\x89\xd0\x64\xd6\x72\x4f\xe2\xab\x3c\x21\x7c\x2c\xce\xa3\x79\x07\x37\xe1\xdd\xe4\x33\x71\x53\x03\x15\x09\x26\xb1\x0a\x56\x23\x99\xed\x2c\xa4\x3d\x1e\x0e\x2c\x79\x97\x4f\x48\xbb\x34\xc2\xcb\xf4\xa6\x10\x24\x19\x15\x8b\xb9\x3b\x7e\x10\x96\xb2\x4d\xca\xbc\x2e\x18\x32\x61\x54\xe5\x6f\xb5\x3e\xb0\x6e\x37\x41\x62\x72\x5a\x76\x96\xaa\x2f\xa1\x71\x48\xf0\x67\xad\xf0\x63\x06\xeb\x64\xc4\xe6\xce\xfc\x68\x47\x78\x7a\xe3\x50\xd2\xa3\x3d\x76\x84\x75\x07\xd6\x99\xf7\x5f\x8c\x9c\x80\xb8\xe5\xdb\x16\x72\xef\x72\x9b\x50\x2c\xf2\x8e\x9c\x8c\x39\x10\x49\x78\x20\xce\xab\x18\xff\x38\x9c\x20\x2b\x33\xe5\xa2\x43\x66\x30\x83\x29\x1b\xad\xd6\xb4\xa7\x45\x10\x24\x23\x44\x3f\xab\xcc\x68\x21\x8c\x1e\xb5\xb2\x7c\xb9\xb0\x8b\xb0\xf4\xd1\x0b\x2b\xa5\xf1\x22\xb8\x52\x74\x7a\xd4\xf4\xd3\x84\x4b\xfd\x2e\xa3\xea\x46\x45\x04\xd9\x12\xfb\x03\xbd\xfa\xfb\x09\x66\x4b\xf4\x37\x4f\xd2\x36\x23\xc4\xc5\x45\x9c\xfc\x7a\x25\x81\x50\x10\x34\xc0\xfd\xe7\xc8\x7a\xc2\xa8\xe9\xae\x0f\x9f\x39\x42\x19\x4c\xf3\x54\xf5\x8d\xfa\xa8\x43\x88\xf0\x90\x7c\x1a\xfa\x5a\x8b\x80\xd6\xcc\xe8\xac\xfb\x97\x18\x4c\x9b\xb4\xe2\x87\xc1\x81\x02\x02\x13\x21\xbe\xe9\x89\xf2\x0b\x06\xaf\xd6\xdc\x93\xb4\x75\x1d\x3f\xdc\x66\x88\x2f\xb0\x7f\x2c\x41\x30\x6b\x9a\xe9\xea\xf6\x29\x92\xe0\xf1\x73\x71\x6b\x4f\x7f\x16\xe1\x49\xb6\xa0\xcb\x1c\x8b\x74\x82\xce\xd4\xaf\x23\xe7\x1e\x58\x10\x52\xb4\xaa\x1a\xaa\x56\x18\x11\x2c\xf8\x85\x24\x64\xda\xe5\x09\x69\xa6\xac\x0f\xba\xe2\x41\x0c\x16\xde\xe2\x1c\xf9\xec\xe7\x4b\x38\xb0\xe6\x9b\x2c\x9b\x6d\x07\xe1\xc2\xb1\x63\xf7\x86\x6c\x2c\x09\x1f\xc6\x1e\x89\x9e\xdc\x62\x40\x70\x8b\xfb\x7e\x72\xd4\xde\x6f\x42\x79\x6f\xf9\xb1\xbb\x31\xd3\x8f\xf0\xe8\xec\x02\x7b\x31\x93\xe5\x04\xfd\x3d\xe7\xae\x86\x7d\x4b\x26\xc4\xc8\xe4\x4f\x9a\x79\xf2\x02\x83\xa8\x35\x4d\xb1\x59\xe1\x8a\x84\xe9\x0b\x74\xe6\xee\x7d\xc0\x41\x48\x37\x0c\x2e\xf3\x66\xf4\x08\xfb\x6b\xa6\x1c\x96\xad\xdd\x4d\xe8\x3a\xba\x8f\x87\xeb\xcf\x1f\x16\xf4\x26\x2f\xf2\x9a\xb7\x9a\x45\x58\xff\x53\xad\x93\xc3\x31\x8d\xc1\xb1\xf5\xac\x60\xa7\x91\x53\x84\x19\xc7\xd9\x0c\xda\xca\x78\x09\x91\x0a\xc7\x76\x7e\x0a\x11\x22\x48\xfb\xc6\x14\xe4\x3a\x1e\x23\x48\x7f\xfb\x1c\xe7\x73\xb0\x90\xa0\x96\x72\x61\xd7\xf2\x17\xcd\x04\xde\x49\xc5\x0b\x14\xd7\x35\x13\x12\x4d\x4a\x2f\x36\x0e\x56\x11\x3a\x25\x1e\x5d\x5d\x63\xa0\x47\x48\x65\xb3\x5f\x9f\xf6\xa0\x98\x30\xfa\x50\xee\x43\xe9\x2f\x1d\xc2\x29\xd6\x73\x6f\x77\x7e\x6e\xc2\x43\xf3\x85\xef\x75\x3e\x07\x32\x28\xf0\xd2\xee\xd9\x1a\xf4\x81\x85\xc0\x6f\x5f\xe8\x4b\xc5\x0c\x42\xe4\xc7\x14\xbf\x5f\xf9\x0a\x84\x0d\xda\x45\xf3\xaf\x58\x39\x31\x58\x52\x14\x24\xa2\x33\xa0\x4b\x88\xe0\x74\x12\x4c\x5a\xa3\x41\x58\x1e\x26\xa9\x35\xe8\x6c\x4d\x38\xe3\xc0\xd9\xb5\xf8\x9c\x3e\xc1\x5e\xd4\x7a\xc7\x8e\x95\xa2\x84\x6f\x8b\x32\x45\x06\xf4\x15\x08\xca\xc7\x5f\x4f\xe9\xae\x7e\xc3\x82\xf6\x48\xb1\xc6\xc0\x14\x57\xfa\x07\xd3\x0d\x5a\x82\x49\x93\x6c\x08\xcf\xd7\xaa\x82\xea\x9e\x15\x23\x66\x45\x47\xf9\xc3\x07\xcf\x08\xb7\xde\xa5\x7f\x4a\x3c\x9a\x46\xb8\xf0\xa6\x7f\xce\xd6\x77\x9f\x59\x78\xfb\xa0\xfb\xea\xa7\x55\xaa\xf4\x0f\x03\xf3\x2d\x7c\x7c\xcf\x3d\x63\xc1\x43\x3d\xe8\x74\xbf\x74\x2f\x0b\xae\xf6\x87\x3d\xb7\x0a\xc9\x11\xde\x1a\xdc\xd7\xa8\x9f\x52\x40\xe0\xad\x38\xbd\xe0\x2f\x66\x58\x19\x97\xf3\x18\x24\x11\x24\x6f\x09\x6c\x13\x90\x79\xc0\x20\x3e\xb9\x67\xd8\x7d\xa4\x85\x50\xaa\x77\x99\x35\x28\xdf\x48\xb0\x6e\x2c\x1d\x98\xe3\x56\x45\x38\x56\xef\xd0\xe2\x3a\x3f\x8e\xa0\xa2\x5d\x54\xeb\xe4\x95\x45\xd0\x6d\xd3\xfb\x5e\x79\x79\x3e\xa1\x4c\xf1\x08\x73\x2a\x47\x9a\xe0\xfd\xed\xec\x51\x8d\xcc\x36\x16\x0a\xcd\x72\xa6\xb8\x3a\x2a\x12\x64\x4f\x84\x3e\xb9\x26\x9a\x4f\xf0\x74\xdc\x15\xed\x2d\x9c\x4e\xd8\x3e\x12\x1e\x62\xc7\xe1\x48\xe0\x58\xb4\x9a\xcf\xf8\xe2\x66\xc2\x3d\x3b\x56\xc4\x5b\x4d\x17\x42\xf5\x85\x5f\x59\x58\x6f\x47\xf8\x20\x7f\xb4\x32\x70\xb9\x28\x41\x7c\xc1\x67\xe9\x3f\x19\x2a\x04\x4f\x4d\xdb\x78\x73\x7b\x29\x42\xc8\xe5\xa5\x27\xb9\x2a\xf7\x11\x6c\xa6\x94\x68\x9c\x78\xa2\x4d\x58\x1e\x18\x22\x59\xbc\xe0\x03\x0b\xae\xb9\xee\x73\x7e\x9e\xb2\x20\xac\xcb\x59\xbe\xd2\xec\xf6\x61\xc2\xbb\x73\xdd\xf9\xe2\xf1\x7b\x08\xe2\xde\x06\xb3\x3e\x15\xbc\x26\xa4\x9c\x6c\x96\x76\x63\x2f\x23\x44\xf3\x7c\xf2\xfe\x71\x27\x86\xc1\x82\x65\xda\xe2\x89\xc3\xa5\x84\x56\xff\xc2\x91\xd1\x8b\x8f\x18\x08\xf6\x94\x88\x98\x0d\x96\x12\xce\xaa\x14\xae\x19\x3c\x9a\x4a\x08\xb9\xe9\x72\x4c\x3c\xef\x19\x21\x4d\xb1\x55\x59\xac\xb4\x81\xe0\xf8\x5c\xc2\xb8\xc7\x21\x95\xb0\xc2\xfe\xf6\xf5\xf8\xf4\x67\x84\x55\xe6\x66\xd6\x7f\xd7\x70\xdf\xbc\x65\xe4\x30\x10\x34\x01\xa3\xdc\xf2\xec\x6b\x1e\xfa\x13\xd4\xa4\x15\xb8\xd5\xfa\x32\x08\x43\x1b\x0d\x96\x3b\x8e\x8f\xf8\x6c\xfc\xf0\x83\x62\x09\x0e\x76\x21\x73\x63\xc7\xf1\x9f\xc2\xab\x2b\xfc\x67\x53\x55\x1a\x61\xb9\x9e\x73\x9f\xdd\xdb\x1c\x42\x99\xb3\xc9\xfa\xf4\xe2\x12\x42\xd5\xc9\x2c\x8d\x87\xd6\xe9\x84\xc7\xce\xe7\x3f\x59\x24\x3c\x64\xd0\x6c\x2c\xc7\xfb\x45\xf0\x34\x61\xca\x7a\x45\x75\x26\xd5\x98\xd0\x9d\xe8\xf4\x31\x78\xae\x1a\x61\xf0\x11\xd6\xac\x3c\x74\x88\xc0\x75\x6c\xd5\x2d\x68\x99\x12\xe6\x9c\xbb\xbe\xac\xf2\xc9\x54\x82\x0a\x87\x19\xf7\xd6\xd6\x68\x82\xaa\xc3\xb2\x1d\x1f\x32\xd5\x08\x93\x73\x6c\x7f\x68\x7b\x7b\x12\xcc\x3d\x33\x56\xa6\xbc\xcd\x20\xbc\xf0\xfd\x24\x9c\xbc\xf3\x31\x83\xf3\xef\xdd\xb7\x36\x6a\x64\x32\xff\x46\x8a\x7a\x1b\x72\x05\xbd\x77\x30\xd0\xde\x24\xfb\xf8\x69\x2c\xc3\xe0\xb3\xed\xaa\x86\x29\x5b\xca\x09\xaf\x36\xdc\xe1\x5a\x70\xeb\x01\x03\x3d\x51\xee\xc5\x6f\x84\x2b\x09\x59\xf7\x8c\x86\xb8\x3b\x1e\x11\xd6\xf1\x56\x85\x4a\xbf\x7e\x46\x68\xd8\x23\x55\xee\xb0\xe2\x29\x61\x0a\x77\x7d\xd2\x58\x6e\x06\x61\xe1\xbc\x5b\xfa\x22\x33\xb6\x11\x8c\xf9\x82\x62\xdc\x7f\x1d\x20\xa8\xcf\x3d\x2c\x68\xe8\xa0\x4e\x60\x93\x61\x9b\x2d\x7a\xe5\x16\x61\xde\xa4\xd9\x57\x74\x3e\x86\x11\x86\x63\x87\xa6\x3c\x88\xf8\xc3\x82\xa5\xc0\x1a\xc3\xe7\x42\x92\xf4\x5f\x70\xf1\x31\xc7\x96\x85\x95\xe9\x84\xcd\x5d\xc2\xb2\x56\xcb\x9b\x8b\x31\x16\xf9\xf1\xde\x19\xcb\x1c\x02\x3e\x1b\x7e\x10\xe6\x6d\x67\xf0\x7e\xd9\xa6\x24\xf7\x05\xd1\x0c\xd6\x4f\x2f\xf6\xfb\x3b\x5a\x71\x57\x8a\xf7\x69\xf7\x33\xc2\xba\xaa\x93\xaa\xd3\x37\x57\x10\x96\xf8\xdc\xbc\xba\x99\xca\x09\xd1\x92\xe5\x1d\x29\xd2\x95\x04\xbf\x60\xc7\x59\x9d\x99\x0c\x61\xe0\x8f\x45\x4c\xa8\xb9\x2a\x01\x6e\x7f\x56\x2f\xf6\xcf\x24\x28\x27\x3a\x04\x31\x97\xf6\x13\x7e\x4e\xd9\xdd\xd9\xb2\xb5\x9a\xe0\xd6\x38\xeb\xe6\x1c\x85\x2a\x42\xd6\x26\xdf\x0f\xc9\x97\x1f\x10\xf6\x25\x68\x6e\xfd\x6e\xbe\x83\x50\xe7\xb6\xce\x7c\xbb\x41\x18\x61\xea\x52\x3d\xf9\x8a\xf5\x39\x0c\xf8\xf7\x38\xec\xb4\xac\x2d\x22\x5c\xf1\xe9\xce\xd2\x70\x63\x08\x8a\x71\x27\x96\x05\x07\x26\x12\x62\x56\xed\xbc\x25\x21\xf7\x86\x90\xd4\xbc\x46\x2e\xec\x68\x31\xc1\x5e\xee\xe6\xe1\xa0\xd8\x72\xc2\x74\x8d\xc2\x81\x6a\x2d\x1e\x42\x50\x48\x5d\x98\xee\x69\x17\x42\xf0\xd7\xa2\xd1\x66\x35\x57\xc2\xaf\xea\x50\x99\xf0\xee\x1d\x84\xc0\x39\x7b\x0e\x4c\x9a\x15\xc4\x40\xdb\x4d\x2d\x5a\x7f\xab\x19\xe1\xc7\xcf\xea\xe7\xa7\x38\x1a\x59\xd0\x94\x73\x68\x72\x56\x3a\x4a\xff\x0b\x3b\x57\xab\xed\x97\x1d\x78\xcf\x02\xff\xef\x9f\x5e\x49\xb1\x77\x08\x52\xe7\x83\x67\xde\xf0\x3f\xc8\xfc\x2b\xff\x01\x97\x5e\xa8\xe9\x90\xc7\x72\x82\x9b\xa5\xaa\x73\x43\x6b\x26\x21\x3c\xba\x6c\xa7\xe6\xf1\x04\x42\x3f\xdb\x96\xd3\x1b\x7c\x13\x08\x2f\x5a\xaf\x3c\x5a\x3e\x7b\x31\xe1\x76\x20\x0f\xd7\xb2\x77\xd2\x84\x8d\x2e\x1f\x6a\xac\xf2\x84\x08\x83\xd7\xaf\x64\xe6\xae\xde\x48\xb8\x50\x92\xd1\xfb\x62\xab\x17\xe1\x72\xe4\x25\x7d\xd3\x58\x45\x82\xcb\xf9\xa9\xda\x3f\x42\xb7\xd1\x20\x9f\x65\xbd\xc0\x70\x16\x83\x54\xa5\x9e\xb1\x29\xd3\x65\x09\x7c\xaf\x8a\x0c\x1f\xde\xe2\x20\x24\x6d\x4e\xb5\x59\x74\xbf\x8a\x10\x5b\x64\x62\xbe\x6a\xf7\x35\x42\xf5\x66\x59\xb6\xa5\xfb\x73\x19\x3c\x3b\xdc\xdc\x1c\xf4\x71\x3d\xa1\xe8\x97\xd8\x73\xa5\x02\x29\x42\x7a\x56\xac\xb2\xc1\x7d\x8f\x09\x70\xb9\xe1\xc3\x7f\xc5\xc4\x92\xc0\xf3\xaa\x7a\x1e\x47\xb9\x19\xe1\xd6\xbd\x5b\x87\x62\x43\x67\x13\xaa\x7e\x07\x3a\x9e\x97\x9d\x49\xa8\x99\x72\xa4\x4b\x77\xce\x4d\x82\xcd\xc5\xd9\x29\xbb\xb3\x6e\x13\x8a\x93\x8f\xb6\x4e\x0f\xc9\x27\xb0\xda\x7e\xf5\x17\xa5\x57\x12\x9e\xee\x4a\x11\x7a\xad\xb2\x9d\x10\xbd\x48\xba\xa2\xc5\xd8\x99\xf0\x21\xee\x87\xc3\x8d\x80\x78\xc2\xa1\x85\x8b\x24\x66\x59\x36\x10\xcc\xed\x9a\x67\xb4\xa4\xb4\x31\xff\x46\xaf\x17\x9c\x6a\xb5\x62\x0c\x08\x17\x64\xbb\xd9\x87\x2c\x2e\x12\x8e\x24\xcc\xfc\xd0\xb4\x2d\x9d\x41\x58\x8b\x83\xad\xf2\xcf\xdc\xf1\x4d\xe2\xa7\xa3\xf0\x82\x13\x84\xbd\x36\x4b\x2e\x8b\x5a\x5f\x21\x04\xb9\x3d\xe8\x7b\xe2\x62\x46\x38\xff\x75\x6f\x98\xa8\xde\x1b\x02\x6a\xa2\x67\x54\x7c\x7f\x4d\xf8\x98\xb6\xa7\x68\x94\x29\x24\x6c\x58\x9c\x16\xa9\xfe\x36\x8c\x60\x22\x28\x1e\x28\x7e\xcb\x82\xd0\xd3\x19\x56\xbe\x52\x79\x0a\xc1\x28\xc3\xaa\x76\x13\xfb\x3c\x82\x61\xda\xfa\xa0\xa3\x8b\x79\x08\xb3\x4e\xdd\xbf\x5f\xd0\x7e\x72\xc2\x68\xfe\x4a\x7b\xd5\x41\x1d\x7f\x82\x6a\x4c\xe1\x48\xf5\x0e\xff\x09\xc5\xc1\xff\x64\xf7\x3b\x15\x6e\x82\x7e\xbb\x99\xcd\xef\x8c\x1c\xc2\xa9\x33\x2f\xdc\x7e\x97\x68\x10\xfa\xbd\x8b\x4e\x0c\xdb\xf1\x12\x06\x43\xa6\x57\xfa\x5e\xd2\x22\xb8\xa8\xf2\x16\xb9\x7a\x4d\x23\xcc\x5c\x62\x94\xac\xb6\xb5\x83\xb0\x3f\x6e\xfe\x34\xe5\x8c\x3a\xc2\xe1\x92\x3f\x5d\xfd\x2b\xf4\x08\x2b\xbd\xbf\x9d\x29\xaa\xb5\x23\xa8\x5b\xfc\x08\x3c\xcb\xba\x47\x30\xb4\xec\xab\x75\x51\x71\x22\x7c\xbe\x35\xaf\xb0\x64\x8f\x1f\xa1\xbb\x30\x3d\x6b\xda\x5c\x31\x82\xd2\xa1\xd4\xd4\x73\xfd\xef\x09\x39\x91\xbc\x4e\x05\x7b\x7b\x08\x09\xe2\xa5\x2c\x8b\x8d\x25\x84\xb4\x65\x82\xaf\xbf\x6f\x3d\x4d\x50\xe1\x2c\xb1\x97\x5c\xa4\x42\xd0\xe4\x56\xfb\x7a\x6c\x65\x04\x61\x9d\x38\xbb\x61\x9f\xec\xf8\x6f\xc1\xa7\x1b\x6a\x9d\x9f\x4d\x58\xe4\x99\xd0\xc8\x3f\xfe\xb5\xe1\x56\xf1\xaa\x8a\x33\x4b\xfa\xff\x8f\x09\xb5\x84\x19\x7e\x2a\x8d\x47\xdb\xe4\x68\xb0\xab\x29\xde\x76\x9b\x3c\x21\xfa\xf4\xa6\xed\x1b\x84\x36\x10\x24\x93\x1e\x3d\xd5\xb9\xc9\x39\x01\x7d\xa2\x6c\x82\xdf\x1a\xfa\x8a\xf1\xa1\xbb\xce\x9a\x23\xb9\x94\xb0\x45\xcf\x2b\x72\x73\x63\x3e\x61\xd3\xdb\xd1\x9d\xe6\xce\x43\x84\xca\x6b\x36\x82\x17\x27\x97\x11\xb8\x42\x9a\xd9\x17\xa5\x68\x10\x8e\x0b\xef\xd5\x7c\xcb\x5e\x49\x48\xc9\x5e\x2b\x6d\x95\xd8\x48\xf8\xc8\xc1\xd9\xdb\x36\x5e\x86\x5f\x0d\xfe\x56\x5f\x99\x45\x98\x2f\x96\x3a\xfd\xdb\x62\x17\xc2\x0b\x8b\x8c\xa1\xf3\xa2\x6b\x09\xca\x8b\xce\xa5\x5b\xfc\x64\x08\x12\x52\xf3\x7c\x13\xb4\x97\x13\x12\x78\x87\xde\x66\xb0\x07\x11\x56\x16\x7c\xd5\xe9\xff\x74\x90\x70\x4a\xee\x9b\x69\x47\xbd\x14\x21\x6b\xea\xab\xa6\xca\x4d\x6b\x08\x71\x0e\xf6\x92\x8a\xea\x93\x09\xcd\x56\xef\xfd\xb7\xef\xca\x64\xb0\x37\xea\x84\x97\x7e\xe7\x65\xc2\xe9\x7b\x17\x28\x22\xa7\x7e\xfc\x6e\x73\x6c\x4b\xe4\x38\xb8\xa2\x0a\x4f\xfe\x45\xcc\x07\x56\x87\xc3\xcb\x7b\x84\xa0\x15\xde\x5f\xa2\x47\x76\x4e\x80\xbf\xb7\xa8\xd1\xe4\x5c\xd5\x09\xe5\x45\xc4\xb2\x7c\xa5\x56\x53\x42\xaa\xde\x47\xed\xb0\xd9\x36\x84\x19\x69\x98\xc7\x9e\xd7\x40\xf8\xa3\x60\xf1\x42\xe7\xf8\x62\x82\x59\x6f\xe7\xd0\x21\xe1\x6f\x2c\xc8\x04\xf5\xe5\x1e\xf3\xdb\x46\xb0\x36\x82\xd2\xca\xe7\xfb\xe8\x5f\x59\x6d\xbb\x5a\x66\x7f\xd6\x7e\x82\x1b\xbb\xc6\x69\x5e\x29\x8b\x09\xe5\x8d\xf4\xb4\x4f\x76\x7f\x78\x09\xb7\x3f\xfd\xac\x92\xe0\x7c\x48\x50\xc8\xee\x90\xbc\xc1\x5f\x46\xe8\xe3\x29\x8c\xb8\x7d\xda\x87\x70\x4f\x0a\x7c\x0a\xeb\xb3\x08\xc1\x0d\x07\x73\xd8\x12\x4e\x30\xe8\xe7\x4c\xca\x0d\xec\x2f\x1a\x7f\xc4\x3c\x83\xff\x2f\xaa\xb5\x15\x6c\xce\x95\xa5\x11\x0e\xd6\x2c\xad\x32\x56\x52\x26\xb0\xbe\x5b\x6b\x4e\x7d\xc1\x49\x70\x54\xf4\xff\x3d\xf4\x7c\x1b\x61\xa7\x95\xb2\xed\xb3\x26\xbf\x09\x38\xa3\x14\x35\xbd\x5c\xda\x99\x60\x38\xe8\xd5\xd6\xea\x50\x44\x18\x5a\xf0\x59\x5e\x7a\xe9\x25\xc2\xfc\xd1\xa8\x83\xbf\x4d\x5d\x09\x55\x12\x62\xac\x62\x21\x5b\x82\x7d\x29\xfb\x35\x37\x91\x9d\x04\xc7\x1d\x0b\x1b\x94\x9e\x7c\x67\x41\x98\xdd\x63\x63\x48\x4b\x29\xa1\x37\x2c\xe1\xc0\x5f\xec\xda\x7b\xb2\xf4\x18\x97\x28\xe1\x54\xe5\x27\x09\x0a\x89\x24\x98\xe8\xd5\x5b\xa5\x76\x5e\x63\x70\x64\x5a\x53\x90\x68\x80\x34\x41\xbd\x36\xf1\xce\x9f\x14\x7e\xc2\xd2\x5c\xdb\xcd\xcb\x6c\xbe\xb1\xa0\xb1\xc1\x4f\xc2\x43\x65\x1e\x61\x8e\x68\x6b\xd0\x9b\x2f\x93\x09\x06\x43\xb2\x7b\xe5\x14\x38\x09\xbb\x24\x94\x7a\xe4\x87\x15\x08\x16\x2b\xf7\xba\x2c\xaf\xa9\x27\xac\x6f\x74\x9a\x31\x69\x6e\x32\x41\x97\xab\xd9\xa3\x6a\xea\x51\xc2\xe4\x57\x12\x4b\xbb\x3d\x67\x11\x72\x17\x72\x1e\xae\xf8\x21\x42\x38\x18\xa6\xbe\xab\x52\x20\x9d\xe0\xf6\xb3\x68\xe4\x18\x5f\x3a\x21\xcf\x67\x56\xba\xe7\x4b\x22\x88\x3a\x3d\xbe\xa6\x31\xef\x1e\xc1\xee\x2a\xe7\x9f\xed\xed\x99\x04\xd6\xae\xc9\xed\xa5\xdc\x3f\x59\xb8\xe6\x1d\x19\xbc\x4f\x53\x90\x60\x6d\xd5\x6f\x3d\x75\xee\x10\x0b\xaa\xd5\x73\xcf\xbd\x13\xfa\xce\xc2\x29\xf3\xc4\x57\x3f\x21\x41\x88\x7d\xf9\xd4\xfc\x68\x82\x04\x61\x51\xa5\x53\x76\xea\x8e\xb8\x62\x74\xfc\xfc\x6a\x8c\xdf\xdf\x59\xf0\x34\xb4\x13\x13\xb7\x72\xa2\x7f\xa8\x19\xde\x7d\xb3\x3c\x94\x87\xf0\x7a\x4a\x9e\xbe\x3c\x87\xf4\x84\x62\x21\x92\x6f\x74\xaf\xe1\x23\xeb\x1f\x46\x3c\xd7\x59\x1c\xf6\x9d\x4b\xff\xe0\xf0\xb4\xe1\xb4\xb4\xcc\xff\x06\xa7\xa5\xbd\xf7\xd1\x30\x21\x82\x6d\xcf\x3e\xc3\x0b\x4e\xdd\x2c\x44\xba\x0e\x8f\x72\x34\x8b\x10\x76\xde\xf6\x99\xf9\x30\x79\xfc\xbf\xaa\x6f\x65\xf1\xce\xf5\x13\x0b\xad\x11\xb1\xe7\x0f\x2a\x9e\x62\xc0\xd4\x30\x5f\xc2\x47\x45\x09\x35\x12\xd9\x92\x85\xb2\xbe\x13\x30\x12\x3a\xaf\xee\x23\xef\x46\x82\xcd\x8c\xaf\x45\x0e\x1e\x71\x0c\xcc\x5e\x39\x0f\x9e\xb0\xb9\xc8\xc0\x73\xe7\x22\x5b\x33\xb6\x48\x82\xcc\xae\x84\x37\x9f\xeb\xed\x08\x53\xe6\xf1\x24\x0e\x46\xb0\x08\xbb\x1c\xe3\xda\x3e\xb7\x26\x30\xc8\x76\xcb\x53\xe7\x59\x6b\x49\x90\x90\x13\x77\xfc\x76\xcf\x80\x30\x38\x67\xdb\x10\x4b\x4f\x8e\x60\xf3\x62\xb4\xd5\xe6\xb5\x14\xa1\x64\xe9\xc2\x81\x93\x36\xdf\x59\xd8\x7c\x6d\x77\xbd\xb5\x63\x6e\x31\x2c\x46\x03\xa3\xbf\xaf\x61\xd1\x3f\x2c\xeb\xf3\x0b\x3b\x90\xd2\xc2\x42\xb4\x62\x3a\xc7\xe6\x06\x16\xe1\xe6\x87\x8e\xcb\x2b\xb6\x32\x0c\xae\x8a\x8d\x7d\x6f\xaa\x1c\x3f\x89\x1a\x8a\xa7\x55\x65\xad\x27\x54\x68\xdf\xd7\x3f\xf6\x75\x8c\x05\x0f\x29\xa9\x0d\x3b\x13\x3e\xb2\x20\x5f\x1b\x39\xaf\x7b\x9a\x29\x21\x2f\x65\xf0\x4b\x34\x64\x08\xef\x4a\xd6\x7a\xcb\x34\x6a\x11\xb6\x71\x1c\x77\x91\xf8\xa1\x4e\xb0\xaa\x58\x92\x77\xc0\x57\x91\x30\xb5\xec\xf0\xee\x31\x31\x0e\x82\xb2\xe8\xee\x6d\x3d\x9c\x86\x04\xee\x70\x2d\xb3\x1d\xc9\xba\x84\x02\xb3\x5c\x5d\xc4\x08\x12\xae\x4b\x06\x2d\xbd\x28\x75\x82\xb0\x45\x81\xe3\x41\x22\x7b\x1e\xc1\xcf\x95\xcf\xde\xaa\xcc\x91\x50\x3b\x90\x71\xf2\x9c\xe9\x74\x82\xdc\x8a\x27\x5b\x56\xf4\x95\x10\x4e\xf7\xcd\x76\x10\x0a\xef\x26\xcc\xfd\xae\x78\x6d\x50\xe0\x3d\xa1\xa3\xdf\xae\xfb\xde\xf6\x2e\xc2\xb4\xfb\x81\x99\x8b\x12\x73\x09\x1b\x02\xcd\x64\xeb\xa4\x8b\x18\xbc\x10\xcc\x36\xbd\xe5\xd8\x42\x88\x4f\x7b\x1b\xf8\x17\x21\x93\x8f\xb8\x0e\xb5\x8f\x6f\x5f\x3b\x0d\xcf\x6d\xd9\x1d\x41\x38\x63\xb0\x62\x51\x91\x64\x02\x83\xab\x96\xdf\x54\xba\xde\xb9\x10\x70\x2d\xbd\xb7\x68\xb6\x2e\xa1\xf1\x57\xce\x79\xfb\xf7\x5a\x84\xc3\x7c\xc7\x6a\x0e\x58\x28\x12\x6a\x4e\x18\x16\xce\xdf\x19\x4d\x90\x39\xb7\xf6\x98\x9b\xde\x46\x82\x11\xdd\x29\xcf\x5e\x6e\x48\xb0\x9f\x39\xe8\x91\xca\x93\x43\x68\xf8\xfc\xb2\x77\x66\x85\x2f\x21\xc9\x51\xb9\xc9\x34\x30\x9e\x20\x13\x53\xa9\xbc\x22\x28\x9e\xb0\x4a\xd5\xf8\xfe\x5e\xbf\xdb\x13\xca\x42\x8b\x69\xfd\xd7\x27\xe9\x4f\x40\x4c\x33\x05\xb2\x4f\xda\x39\x01\xfe\xcc\x9f\x0f\x37\x64\x8c\x09\xd1\x37\x14\x95\x04\xa4\x2f\x32\x78\xcd\xe7\x65\x74\xf4\x83\x18\x61\x4f\x65\xa0\xf3\xcd\x2f\x6d\x2c\xb4\x7c\x78\xa3\xe5\xae\xc0\x43\xd0\x52\xaa\x2b\xdd\x5e\xa8\x4e\xc0\xe9\x1d\x37\x58\xe3\xd7\x1e\xab\xe0\xd8\xc3\x73\x55\x4c\x08\x1c\xed\x03\xcf\xc5\x0f\x5d\x21\x3c\xdc\x2d\x35\x38\xfd\xd5\x23\x82\xec\x27\xbd\x61\x86\xa3\x9c\x41\x2e\x5b\xe7\x97\x9c\xbb\x0c\x21\xc2\xeb\x4b\x73\xcd\x9d\x22\x42\x4a\xf9\x4b\xbd\x02\x9f\x62\x42\x76\x5c\x4d\xa2\x91\x19\x3b\x61\x57\x8d\xff\x8b\x4d\x88\x67\xfe\x15\x5f\xfd\xeb\x39\x39\xef\x6b\x59\xf8\xc9\xf3\xc3\x2e\xe1\xc5\x03\xc2\xfa\xe3\x62\xe5\x22\x99\x97\x18\x18\x9d\xaf\x8d\xea\x77\xce\x23\x94\x3a\x79\x6e\xfa\x8b\x59\x6a\x46\x77\xfc\x8f\xe6\x11\x4c\x2d\x54\x45\x47\xfb\xbd\x18\xc8\x2a\xbf\xf4\x98\xbf\xcc\x92\xb0\xba\x67\xe7\xb9\x99\x9a\x32\x04\x2b\x17\x8e\x9a\xfe\x02\x69\x82\x7f\x8a\x00\x8d\x6a\x5b\x12\x62\xc5\x66\x3b\xf6\x5b\xbd\x67\xfd\x43\xee\x79\xfb\xd4\xfa\xb2\x3f\x2c\x5c\xff\x71\x7c\x4f\x9e\x94\x1c\x81\x9f\x2b\xeb\xe3\x2c\x8e\x37\x2c\xcc\x2a\x90\x6b\x5c\xf0\x70\xe4\xbf\x61\xc5\x32\x45\xd5\xb3\xe9\xdd\x2c\xec\x9f\xbc\x49\xca\xca\x71\x07\xe1\x72\x8b\xc5\xac\xfa\x7c\x57\xc2\xca\x72\x77\x9d\x9d\x75\xba\x84\xec\x79\xbd\xc2\x42\xdb\xe4\x08\xdb\xea\xd7\x7e\x59\x75\x5d\x95\xc1\x9f\x1f\xf5\xfe\xa1\xc1\x87\x08\x7c\x3e\x87\x5b\x6c\x6f\x5a\x12\x02\x1c\xf8\x75\xe7\x1f\x49\x26\xac\xba\x7c\xc7\x7d\xd6\xef\x0d\x84\xbc\x99\x12\xd3\x9d\xc3\x45\x08\xcf\x9d\xab\xaf\xa4\xac\x12\x22\xb0\xbd\xce\x78\x3b\x49\x54\x9b\xf0\xbb\x9a\xe9\xf5\x7e\x9b\x4f\x78\xf3\x7b\xc9\x68\xd2\x67\x67\x02\x2f\xaf\xe8\x87\x79\x75\xa2\x84\x8e\x53\x1b\x24\x36\xee\xbe\x4b\x98\x7f\x58\xd0\xc9\xf9\x83\x22\x21\xf9\x47\x00\xdf\xae\xf8\xa9\x04\x9d\x37\xdb\xd5\x59\xc6\x61\xff\x13\x12\xcb\x9a\xad\xf4\x8e\x77\xb1\xf0\x26\x71\xad\xa2\x6b\xef\x03\x42\x27\xef\xd2\x27\x6c\xeb\x9e\x13\x5a\x66\x4c\x6e\x3c\x3c\x5e\x38\x73\x8e\xbe\xf8\x3e\x1c\x4d\x48\x54\xbd\x5d\xb6\xdb\x78\x3d\x61\xcd\x87\x54\xe3\xd9\x0a\x5f\x09\x29\x66\xa6\x7e\xc5\x92\x3d\x84\xa2\x61\xed\xfc\xf5\x73\x6a\x08\x77\xcf\x44\x29\x4b\xdf\x49\x22\x34\xe7\x2a\x3e\xdb\xb7\x38\x7c\x02\x78\xae\x4a\xc8\xae\x88\x6d\x2b\x86\x45\xc4\xd6\xda\x8e\x6d\xeb\xe9\x7f\x21\x29\x39\x55\xfb\xc1\x23\x76\x42\xce\xd9\x93\x87\xef\x8f\x2d\x21\x40\xd7\xe7\x80\xda\xf0\x8e\x09\x98\x22\x79\xb7\xca\x4c\xf6\x1d\x0b\x12\x72\xf5\x7b\xb2\x8c\xc6\xaf\x8e\xf2\xce\xd2\x2e\xb3\x62\x19\x5c\x59\xb8\xe2\xd1\xec\xd7\x1e\x84\x80\x5f\x8f\x24\x36\x5d\xdd\x47\x68\x0d\xb4\x4f\xbb\x9d\x97\xc3\xe0\x9e\xc3\x3b\x99\xf5\x85\x07\x08\x8e\x1b\x23\x78\x1a\xbf\x68\x33\xf8\xa5\x74\xb9\x35\x30\x6c\x13\x61\xf1\x1b\x5f\x1e\xb5\x8d\x1c\x04\x17\x61\x76\xb1\xfc\x94\x50\x42\x65\x72\xed\xda\xfa\x1c\x53\x06\x2e\xbf\x05\xb4\x1f\xc6\x99\x12\x54\xe6\xfd\x8a\x9e\x7b\x40\x94\x30\xec\x7e\xe3\xa1\xad\x43\x1e\x03\x6d\xb1\x8d\x76\xba\xa1\x2b\x08\x8f\xed\xa7\x8e\x3e\x14\xbd\xce\x40\x2e\xd1\xc0\xbb\x6f\xaa\x1a\x21\xa1\x6c\x53\xf6\xb5\xce\x07\x0c\xbc\xc3\x4b\x79\x92\xfc\xd2\x08\x79\x1d\x0e\x2f\x97\x26\xe5\x13\x8e\xc7\x7f\x9b\xf6\x95\xb5\x8d\xf0\xed\xbc\x33\xef\x2a\x81\x83\x84\x33\x3c\xe7\x67\x05\x0a\x6f\x27\x9c\x7e\x6f\xd5\xe5\xe7\xe2\xcd\xa0\x26\xe3\x6a\xb3\x59\x94\x31\x61\x81\xc8\xf1\x79\x87\xda\x8f\x12\x24\x2e\xff\xdc\x90\xe8\x27\x49\xd8\x7d\xf7\xcf\x8c\xc8\x97\x25\x0c\xce\xea\xac\x0d\x58\xb6\x5f\x8f\xa0\xad\xb2\xb4\x5d\xca\x6f\x09\x21\x69\xb4\x20\xec\xb7\x6e\x2c\xe1\xf8\x59\xf1\x6e\xdf\xf0\xb3\x84\x8b\x63\x75\x85\x71\x57\x4f\x11\x5e\x4f\xf3\xd4\xd6\xbe\xe4\x41\x28\xdf\xf9\x7a\x69\x68\x91\x24\xa1\xba\x71\x5f\x6e\xcd\xf9\xa3\x84\x3f\xbf\x24\xd6\x3b\x26\x7b\x11\xca\xf4\x27\xef\x35\x9d\xe9\x4d\x30\x8b\x72\x5c\xab\x59\xb2\x89\x70\x28\x12\x8f\xce\x65\xbb\x13\xe2\x23\xd2\x9e\x7e\xbb\xe6\xcf\xe0\xc9\x9c\x4b\x9b\x0d\x0f\xaa\x13\x62\x7b\x73\x65\xf9\xc5\x9c\x08\x4f\xe5\xc4\x58\xe7\xc4\xb6\x13\x5c\xfb\x3b\x1f\x69\x5c\x7e\xc5\x82\xc7\xa5\x07\xcd\x23\xd1\xb6\x13\xca\x60\x7e\x88\x93\xeb\x02\x15\xfa\x07\x7e\x03\xb1\xae\xb0\x33\xa7\x26\x94\x9d\x6d\x9b\x56\xc6\x3a\x37\x16\x63\x75\xc7\x27\x6d\x7b\x57\x79\x82\xf5\xa2\x67\xa1\x25\xb5\x6c\x13\xf0\xf6\xe2\xd5\xca\xef\xb9\x8f\x59\xff\xb0\xe7\x9e\xf8\xa9\x68\x91\x24\x42\xe3\xd1\x75\xfb\x1f\xfa\x24\x4e\xc0\xbc\x58\x95\x76\xe1\x6b\xc6\x84\x52\xcd\xc7\x7c\xfd\x69\xb6\x04\xbd\x07\x1f\x67\xc4\xdb\xaa\x4c\x80\xd2\x26\xc5\xc6\xdf\x37\x96\x10\x06\xb3\xfa\x63\x36\xf7\xf3\x10\x1e\x2c\xe8\xaf\x99\x29\xa0\x3d\x61\x14\x73\xb1\xd4\x83\xdd\xac\xb1\x18\xce\x46\x77\xaf\x87\xea\x44\x32\x50\xf2\x3d\xe5\xb7\x3a\x51\x8b\x20\xb1\x79\x90\xbf\x61\xba\x04\xc1\x6f\xee\x54\x79\x43\xed\x54\x06\xb3\xd5\x78\x1c\x86\x37\xe8\x10\x5a\xbb\x55\xeb\x35\x7c\x36\x13\x56\x88\x87\xf1\x48\x9c\x2e\x67\x20\x7c\xe4\x6c\xfb\xf9\x8d\x73\x08\xec\xfa\xcb\xb5\x52\x78\x7b\x58\x30\xbb\xa1\x3c\xf6\xe8\x4b\x10\xc1\xc1\xd9\xf0\x82\x92\xc5\x49\x82\x86\x8f\xee\xaf\x03\x3f\x5d\x08\x7c\x8c\x87\x79\xec\xbb\x08\xc2\x85\xa9\x57\x34\xb9\x06\x2c\x08\x89\xf1\x92\x77\xcf\xa8\x19\x11\xa6\x4d\x7a\x90\xa5\x63\xf4\x70\x7c\x93\xb1\xcf\xaa\xbc\x18\x46\x48\xe1\xda\x6d\x19\x30\xcf\x83\xf0\x35\xc6\x97\x4b\xe9\x84\x13\xe1\xe0\xae\x7b\xa9\xee\x07\xf4\x08\x50\xdc\x27\x2d\xec\x77\x93\x20\xcc\xb1\xc4\x3f\x2c\x6c\xfc\x56\x9a\x52\x71\x29\x04\xfc\x04\xbb\xad\xf7\x8a\xf3\x04\x37\x12\x8e\xdf\x2a\x5b\x87\x27\x97\x08\x05\xfb\x04\xc1\xfb\xb2\x86\x10\xde\x1b\x30\xe5\xf8\xe5\x56\xc2\xc7\xbe\xaa\xf3\x0a\x8d\x65\x84\xf9\xdf\x0f\xb7\x9a\xe7\x36\x10\x14\x44\x02\xac\x8a\xfb\x9e\x11\xba\xbd\xff\x04\x8b\x6e\x7e\x46\x08\x9f\x5f\x6b\xf3\x54\xd0\x93\xc1\x99\xf0\xb3\xd7\x6c\x8d\x76\x10\x5a\xbe\xc4\xaa\x07\xed\xff\xc1\xc2\x8a\x91\x77\x8b\x77\x0f\xec\x22\xec\xbe\x74\x3d\xb4\x65\xfb\x32\x82\x57\x4f\x88\xb6\xdd\x3a\x1b\x42\xfb\x49\x6f\x46\xa2\xce\x80\xe0\x62\x76\xb6\x60\x75\xce\x67\x16\xf8\x9f\xde\x9e\x23\x68\xb7\x8c\xa0\xf5\xd6\x75\xea\xac\x6c\xb0\xfe\xe1\x04\x97\xb2\xd0\x86\xc0\x49\x04\xc9\x5e\xaf\xac\x03\xc1\x31\x84\xe3\x19\x7e\x6b\x66\x7c\xff\xc0\xc2\xb3\x1d\x67\x8a\xd8\xd7\xad\xa0\x7f\x38\xbe\xcd\xcc\x7d\x8e\xd9\xdb\x62\x94\xbe\x6d\xe9\xad\x9c\x71\x8b\x50\x92\x56\x2c\xff\xa3\x6d\x11\xc1\xa4\x40\x5a\xde\x7e\x66\x00\xa1\xf5\xe5\xe9\xa3\xcb\xf7\x95\x11\xbe\xb0\x09\x98\x2f\x90\x39\x43\x78\xe9\xae\x66\xa2\x7e\xcf\x96\xd0\x76\x8e\xc7\xfa\x62\x6f\x04\xc1\x3d\xf5\x68\xd9\xbb\x34\x5e\x42\xf5\x4d\xa3\xa5\xd2\x57\x39\x27\xc0\xf9\xcc\x52\xa1\x60\xf6\x7e\x16\xbe\x2e\x90\x3f\xf2\x30\x83\x9d\x60\xe7\xa5\xdf\x7e\xf0\xf5\x05\xc2\x1e\xee\x91\x00\x45\xae\x83\x84\xf2\x53\x41\x72\x2d\x1d\xd6\x84\xd8\xc5\x22\xaf\x14\x1f\xdf\x67\xa0\x5b\x19\x3f\xab\x46\x37\x93\xa0\xb3\xcc\xce\x3f\x76\x6d\x25\x41\xf9\xb6\x5b\xeb\x16\x93\xfb\x04\x76\xc1\x27\x9d\x2e\xc3\x23\x2c\x68\x71\x96\x84\x1f\x7c\x3e\x85\x70\xc0\xd2\x73\xaa\x70\x85\xea\x04\x18\x70\xd6\x1c\xbc\x9f\x94\x41\xb8\xfa\xe9\x74\x58\x2d\xe7\x99\x09\x78\x73\xd4\xf6\xfd\xcd\xf7\x05\x04\x57\x93\x7a\xd3\xb1\xa1\xb4\x09\x90\x5c\xe5\x13\xb6\x62\xd9\x03\xc2\x0c\xc6\x53\x3a\x41\xf8\x01\x61\xc5\x09\x5b\x89\xb8\xe1\x9d\x84\x4d\xac\x12\xeb\x2e\x3b\x16\x83\x9e\xad\x86\x0d\xd7\x35\x2e\x11\xc2\xf7\xf1\x34\xc4\x8e\x8f\x72\x6e\xac\xa8\x1a\x68\x5c\x4b\xe8\xb7\x6d\xf0\x3a\xa8\x5f\xce\x80\x87\xb3\xfb\xa6\xdd\x38\xae\x47\x96\x4a\x6f\xbf\x66\x47\xe8\x64\xb6\xec\x3e\xf4\xfc\x03\x41\x91\xd5\x37\xdf\x25\xe3\x05\x41\xea\x0d\xc5\xb7\x30\xd9\x0c\x4e\xad\xf9\xd3\x6b\x3c\xed\x34\x41\xfc\xb1\xb6\x8c\xef\xe7\x44\x02\x5f\x9f\x96\xa6\xc0\xc1\x4b\x84\xd3\xd7\x0d\xbc\xd8\x45\xae\x12\xda\xe6\xb4\x36\x3d\xaf\x3c\x40\xb8\x77\xb1\x30\x20\xe5\xa7\x22\xe1\x71\xe2\xec\xa9\x37\xfe\x24\x32\xd8\x22\x30\x3b\xb2\xe1\xfc\x5a\x42\xa3\xc9\x9d\x79\xf6\x3e\x6b\x08\xf9\x16\xe9\x53\x37\xde\x6a\x25\x98\x54\x26\xcc\xfb\xae\x15\xce\x20\x33\x20\xdb\x40\x73\x5a\x1e\x03\x91\x03\x07\xdb\xd3\xed\xca\x09\x8d\x3b\xae\x4b\x73\x5b\x37\x30\xd8\x63\xec\x5e\xde\x23\x5b\x49\x98\x9e\x1e\x2a\x36\x7c\xe0\x26\x61\xac\xfd\xad\xc6\x54\xe3\xe7\x0c\xf6\x07\x24\x78\x65\x28\xf7\x33\xf0\xa9\xfb\xea\xf2\x64\x79\x3c\xa1\xea\x3b\xcf\x2d\x89\x27\x8f\x18\x5c\x11\x92\x37\xbb\x20\x7f\x87\x60\x3d\xd6\xd6\x29\x19\x14\x4d\x58\x1f\x6f\x7e\xbc\x46\x24\x9c\x30\x53\xc8\x47\xd5\xaa\xed\x01\x81\x7d\xd7\x87\x9c\x97\xbb\x3a\x18\xcc\xaf\xd0\x4f\x8d\xd6\x0c\x27\xf4\x94\xbd\x17\x78\xb1\xfa\x1c\x81\xb5\x56\x94\x3b\xf2\x7a\x26\x21\x76\xb5\x62\x80\xd4\x9c\x7a\xc2\x3a\x45\x31\xae\xb1\xe0\xfd\x04\x07\xf7\xe8\x67\xcb\xfc\xe2\x09\xb6\xab\x5f\x76\x17\x69\x46\x30\xff\x46\x01\x15\x02\x5b\x83\x19\x15\x82\xb1\xe1\x74\x36\x29\x91\x21\x16\x24\xad\xf2\x0b\xe6\x1e\x58\x4b\xff\x10\x74\xc2\x5c\x60\xb5\xdf\x20\x0b\x9a\xcb\xc5\x53\xfa\x3a\x95\x08\x87\x93\x4f\xef\x8e\x7c\xb5\x92\x10\x9a\xe5\x6f\xe4\xb2\xd3\x8a\x30\x70\x22\x67\xda\x0a\x83\x44\x82\x79\x5d\x4f\xef\xad\xcb\x8b\x08\x5f\xf5\x84\x0c\x16\xbc\x3d\x45\x58\xf6\xe7\xe9\xfe\x16\xeb\x13\x84\xa5\xfd\xe7\xe8\x51\xff\x51\x42\xa1\x7e\x98\xc8\x9e\xfd\x95\x84\x34\x4f\xc9\x3f\xf9\x2a\x96\x0c\x14\x0d\xf6\x6c\x3e\x6d\x91\x3c\xbe\xb7\x78\x7f\xb9\x63\x25\x40\x38\x64\xbf\xac\x74\xee\x4d\xa9\x09\xd8\xac\x62\x37\xaa\xbd\xdf\x92\x30\x10\x94\xf2\x62\x8e\x89\x3e\xc1\xfb\xa7\xe3\x9b\x26\xb5\xd5\x04\xe1\x0c\xfd\xd3\x55\x82\xde\x84\x6f\x03\xc5\x7e\xc3\xab\x85\x27\x20\x79\x0f\xa7\xe0\x88\x6b\x3d\x0b\xdc\x7a\x5f\x6d\x63\x1f\x6d\x24\x58\x73\xb7\xed\x6b\xdd\x97\x4c\x38\x2f\xb3\xa4\x77\xee\xf8\x11\x3d\xa3\xba\x8b\xdf\xb5\x31\x83\xb0\x2e\xf0\xea\xfe\xbf\x85\x7d\x86\x4e\xf1\xc2\x8d\x0f\x18\xfc\x7c\xf0\x3e\xad\xc3\xec\x64\x31\x16\x6e\x57\xba\x76\x68\x6f\x1e\x81\x3e\x49\x1c\x0b\x78\x68\x43\xa8\x5f\x15\x11\x63\x6f\x56\xca\x80\xc9\x31\x48\xaa\x68\x7a\x40\x30\xdf\xb7\x6d\xf0\xa8\x63\x07\xa1\xe4\xa0\x74\x18\x6b\x76\x3e\x61\x91\xbc\x6c\xc7\xfa\x7d\xc5\x04\x9d\xd0\x60\x03\xaf\xf1\x51\x26\xdf\x41\x85\x75\x87\x8e\x10\x3a\xc4\xbc\x23\x43\x0b\xad\x08\x66\x16\xc2\xd9\x45\x0e\xb1\x84\x43\x6c\x9f\x42\x8d\x16\x5d\x64\xfe\xad\xf1\x5a\xc1\xf7\x54\x6b\x5a\x29\xe1\xf0\x6b\xfb\x75\x7c\x6b\xca\x09\x5e\xc3\xa1\x53\x4c\x86\xcb\x08\xb6\x1b\xae\x2b\x99\x65\x94\x13\x24\x84\x9e\x09\x19\x8d\x97\x8f\x55\xc7\xdf\x2d\x7b\x5e\x4e\xc8\xe2\x30\xb0\x5b\xbe\xcd\x8d\x81\x66\x94\x62\x56\x98\xf5\x75\xc2\x4c\xa7\x5b\x63\x3d\x8a\x97\x19\xf8\x71\xba\xb6\x84\xd9\x5e\x62\xf0\xb6\xc9\x58\x59\x6f\xf3\x69\xc2\xad\xe2\xba\x43\x19\xf9\xd3\x09\x19\xc3\xc7\xf2\xb7\xf6\x2b\x13\x2e\xb5\xb9\xce\x15\x0c\xf1\x61\x70\x27\xd8\x77\xf4\x93\xbd\x32\x61\xd3\xcb\x5f\xfd\x5f\x6e\xb0\x11\x2e\x3c\xd5\xf3\xd1\x3c\xa9\x48\x70\x43\x69\x17\x4b\x56\xe9\xbf\xa1\x57\xee\xe6\xef\x4f\xbb\xde\x14\xa3\xfa\x5d\x59\x71\xbc\xe7\x22\xc2\xab\x5b\x4f\xc6\x2c\x02\x8f\x4f\x80\x46\xca\xc5\x2b\x9e\x7f\x78\x27\x20\x46\xfd\x5d\x4c\xcb\xc1\x90\x09\x08\x37\x4f\xdb\x2e\x2f\xc7\x46\x10\x76\x7f\x6a\xd4\x7f\xc3\x82\x30\x16\xc3\xdb\x6a\x9c\xad\x4f\xe0\x15\x9f\x54\xfe\x27\xae\x9f\x85\x1b\xfa\xc1\xb6\x35\xb7\xef\x30\x58\x67\x5b\xd8\xcc\x92\xde\x4f\xd8\x26\xe9\x62\xd1\xb3\xee\x10\xe1\xe7\xf2\x6d\x27\xfb\xc2\xf7\x11\xae\x5d\xeb\x1b\x9c\xd9\x2d\x4f\xd8\x38\x2f\xb3\xae\xeb\xd4\x36\x42\xff\xf4\xc8\x5b\xd6\x1e\x91\x84\x03\xb1\x8d\x3a\xf9\xda\x73\x09\x2f\xb6\x9f\x71\x52\xab\x36\x24\xf8\xb4\xeb\xdd\x12\xb3\xb0\x21\x08\xff\x89\xcf\x65\x35\xe8\x13\xca\x1e\xdb\xaf\xba\x57\xae\x4c\x48\xcc\x6f\x4a\x30\x4d\x91\x26\xb0\x57\xf5\x2e\x93\x89\x55\x22\x54\x8c\x5e\x52\xf0\x59\x34\x8d\xb0\x6a\x58\xfc\xd2\xb3\x52\x1d\x82\x7f\x7b\x88\x91\x56\x5f\x39\x61\x72\xf9\xe1\x96\xaf\x93\xbf\x33\xff\x8a\x68\xed\xfb\x9e\xb9\x99\x2f\x19\xb4\x15\x8f\xf5\x5f\xd7\xcd\x25\x38\xde\x56\x9b\xe6\xe6\x94\x4d\x10\x5a\x26\xe5\x3a\xa5\x2b\x93\x60\xb8\x4f\x67\x76\x63\x4b\x06\x41\xff\x71\x38\xf3\x64\x1c\x6f\xda\xf7\xf1\x94\x36\x67\x13\x0e\x65\xc6\x9c\x38\x9d\x74\x86\x50\x33\xb3\x66\x97\x69\xde\x19\xc2\x82\x6c\xee\x73\x5c\x09\x09\x84\x65\x19\xd1\x97\x7c\xdb\xce\x10\x2a\xc7\x14\x9d\x7f\x32\x17\x08\xf9\xdd\xdf\x02\x8b\x3c\xfc\x09\xd7\x86\xbf\xf7\x5a\x4c\xbb\x40\x78\x7a\xeb\x5d\xa1\x7c\x46\x29\x83\x17\xc7\x2b\x7b\xd5\x6b\xfd\x09\x47\x72\xbb\x38\x37\x72\xb9\x11\xda\xdb\x57\xda\x57\x6a\xca\x11\x62\xca\x77\x0d\x67\x9e\xb8\x4c\x60\x25\xef\xee\x5a\xf3\x35\x88\xf9\x57\xfc\xad\x34\x73\x96\xb8\xdb\x12\xfc\x27\xed\x8a\x71\x3a\xe8\x41\xc8\x17\xdb\x67\x25\xa3\x90\x4b\x68\x38\xf1\x6c\xb1\xc0\xdc\xcf\x2c\x1c\x7f\xd0\xa8\xd1\x51\x0e\x16\x16\x09\x56\xdf\x92\xe4\x96\x27\xb8\xed\x4b\xcd\xf9\xc9\xcf\x22\x58\xb6\x0b\x86\x8b\xe8\x45\x13\xbc\xfe\xdc\x5f\xc8\xad\xd2\x42\xe0\x5a\x3c\xcd\xe3\x2f\x32\xf8\x7a\x8b\xe6\x2a\x46\x13\x9e\xeb\x78\x29\xb7\x77\xae\x24\xec\x3f\x31\xdd\xaf\x3c\xd1\x92\x70\x4d\x54\xf4\xe2\xc6\xdb\x93\x08\xdf\xaf\xd5\xff\xb1\x1e\x56\x20\xf8\x34\x14\xd5\xf0\x2c\x0c\x63\xb0\x89\x51\xf4\xe9\x31\x4e\xa2\xff\x82\xd8\xd0\x05\xd2\x45\x1a\x17\x8b\x71\xd6\x3f\x24\xa2\x59\xfa\x22\xc1\x29\xbf\x8d\x4b\x4b\x64\x25\x21\xea\x8c\x2e\x2f\xdf\xb7\x52\xc2\x37\xdb\x7b\x2f\x7e\x9a\xae\x27\xf4\x69\x17\xa9\x7f\xe5\xd8\x46\x78\x34\x22\xb0\x74\x8f\xb1\x3a\xe1\x7d\x72\x8b\xb1\xf6\x9f\x4b\x84\x5d\xa2\x2d\x9a\x2f\x04\x22\x08\xab\xa6\x18\x2d\x3b\x68\x75\x9e\x10\xc5\x73\x57\x72\xcb\xcc\xf3\x84\xfe\x0f\xc3\x4d\x67\x4d\xcd\x09\xaf\xd7\x56\xb4\xe8\xbe\x48\x20\x14\x74\x46\x3d\xcc\x5a\x60\x47\xb8\x6e\x7c\xf6\xfb\x93\x18\x75\x82\x97\xd1\x93\xaa\x76\xa5\x01\x16\x5e\xe8\x2f\x7a\x6e\x18\x28\x45\x58\x3b\x95\x23\x66\xbd\x8c\xdc\x04\x64\x66\x2d\x3f\x77\x28\x2f\xab\x18\x41\x9e\x56\x37\x9a\x93\xfd\x18\x70\xfd\xf4\x92\x6f\xbd\xb6\x9e\xfe\x41\x88\x33\x27\x64\x72\x1e\x1b\x41\x5b\x36\xbe\x38\x50\xc4\x85\x41\xae\x66\xff\x5c\x1e\x85\x9d\xf4\x0f\xc3\xfc\xde\x73\x9b\x1c\xef\x13\x04\xc3\xa6\xac\xfe\x5b\x9e\x9f\x28\x18\x3c\xf1\xc0\x7a\x02\xae\x7e\x3d\x6f\xa5\xaf\x51\x48\x50\x1f\x19\x16\xfd\x5b\x64\x6c\x9f\xdc\x7a\x38\xc2\x4b\xd8\x16\x29\xdc\xfa\xd6\xf1\x3a\xc1\x6d\xc1\xb2\xb3\x75\x39\x81\x04\x8b\xdc\x3d\x7b\xad\x3b\xe5\x09\x63\x27\x4b\x56\x28\x4d\x56\x24\xfc\x24\xf1\xa7\xb7\xd5\xf9\x09\x26\xf6\x5a\x8c\xc3\x27\x3d\x42\xec\xd4\xe9\x7f\x1e\x5e\x59\x4f\x58\xd9\xbb\xee\xa1\x7c\xc4\x08\x0b\x01\xe1\x67\xcc\xdb\x3a\xf7\x11\xfc\xea\xb2\x2f\xc7\x09\x49\x12\xbe\xe7\x27\xbe\xdb\xb3\x73\x19\xe1\x82\xf4\xf1\xfa\xc6\x65\xc6\x84\xcf\xb7\x86\x39\x4a\x06\x66\x11\xae\xf3\xf1\xcf\x7e\x6f\x59\x5f\x8c\x9d\xef\x0f\x1d\xc9\x36\x3d\x4d\x38\xc1\xd6\x7a\x67\xd2\xcb\xf0\x09\x08\xa8\x59\x63\xee\x70\x64\x09\xe1\xed\xa4\x30\xc3\xc8\x2b\xb2\x13\xca\x7f\xc0\x3e\x53\x52\xba\xfc\xb9\x30\xe1\xb1\xcc\xf3\x5f\x1b\x5e\x24\x30\xb8\xf4\xc4\xe7\xe0\x93\x92\x65\x13\x46\xd6\xa2\x66\x11\x77\x72\xc1\xc2\xac\x3e\x55\x75\xf3\xea\x62\x42\xdc\x29\xfb\x99\x64\xa3\x44\x18\x35\xca\x28\xed\x98\xd7\x50\x0c\xed\xc9\x7b\x57\x8f\xce\x34\xa1\xff\x05\xcd\x76\xd7\xee\x74\xdb\x72\x16\x22\xa5\x94\x4c\x5d\x5a\x42\x19\x3c\x17\x5a\xad\xd4\xbd\xa3\x9f\xc1\xe3\xae\xad\x63\xba\xaf\x4b\x08\x03\x1e\xc9\x29\xc3\x1d\x7d\x0c\x54\x7d\x25\x3e\xc9\x9d\xbf\x47\x38\xd4\xe1\x5d\x25\x17\x5e\x4e\x60\x93\xfd\xfa\xed\xf7\xf5\x53\x84\xbb\x32\x83\xa7\x6e\x9e\x92\x24\x7c\x14\x6c\xda\xef\x12\x71\x81\xb0\xeb\xdc\x81\xdc\xad\x8c\x30\x61\x4b\xe6\x6e\xc5\xd5\xea\x75\x2c\xb4\x71\x68\x68\xf5\xcf\x4d\x62\x20\xc9\xe7\x62\x18\xb2\xff\x26\x61\x56\xcb\x88\xae\x6c\x94\x36\x61\x97\xdd\x7b\x4e\xce\xdf\x3b\x08\xbd\x75\x9c\x05\xd7\xf2\x0e\x10\x32\xad\xf5\xde\xff\xf0\x57\x26\x68\x3d\xf3\xfb\xf4\x65\x49\x14\x41\xe1\x75\x97\x6f\x94\x70\x14\xa1\x57\x63\x3f\x9f\xda\x9c\xeb\x0c\x26\xdb\xcf\xbb\xf7\xb7\xe4\x95\x44\xcf\xda\x32\xe2\x44\xe8\xdf\xbc\xfc\xe2\x5c\x7d\x4f\xc2\xbc\x1f\x4f\x44\x15\x18\x77\x82\xd9\xf6\xa5\x71\xfc\x81\x9e\x13\x46\xe2\x09\x0f\x4c\x97\x9c\x4b\x21\x58\x72\x87\x89\xfd\xc5\xea\x19\xbd\xfd\xaf\xbb\x6f\x10\x6a\x7f\x28\xd4\x2d\x1e\x2f\x1c\xaa\x2f\xcf\xbf\x2c\xbf\x44\x08\x1d\xc8\xed\x92\x6e\xbb\xc7\xc0\x7d\xdb\x9f\x05\x5a\x4d\x27\x09\x6e\x71\x01\xaa\x55\xb7\xa3\x08\x76\x2a\xa6\x5d\x69\x3e\x47\x09\x39\x37\x8b\x1a\x67\x2d\xf6\x22\x18\x6c\xd1\x8c\x39\x53\xa6\x42\xf8\x74\x46\x2e\xc7\x9e\x67\x3a\xa1\xee\x43\xff\xb1\x9b\x86\x52\x84\x27\x4b\x5f\x2f\x9f\x93\xdd\xcd\xc2\xea\xa6\x43\x93\x2d\x4e\x28\x11\x56\x3c\x58\xab\x2b\xf2\xe6\x49\x31\xac\x64\xdb\xba\xee\x9f\xd9\x46\x38\x73\xe2\xfd\xeb\xbd\x27\x44\x09\xb5\x79\xbf\xb5\x6d\x94\x6e\x13\xde\x6d\xf0\x89\xbd\xf5\x72\x06\x61\xeb\xec\x08\xbf\xc0\xb1\x68\x42\x6a\xa4\x4e\xc7\x2e\x1f\x6f\x42\xc7\x8d\xfd\x37\xfd\xc7\x9f\xc3\xad\xaf\xba\x66\x19\xcd\xf3\x66\xa0\x58\x78\x2a\x5c\x44\x61\x2d\x41\xee\x06\x9f\x15\x57\x98\x12\x21\xbb\xed\x40\x8c\xd7\x8a\x99\x84\xb6\xde\x29\x63\xf5\x07\x79\x08\x3b\xd9\xe8\x54\x5c\x53\x0a\x03\x2b\x8d\x1b\xcb\x85\x99\xc3\x84\xfb\x45\x7a\x05\xf9\xef\xa5\x08\x2e\x2e\x6f\x54\x8d\x9f\xbe\x27\x14\x4e\x97\xbf\xfb\x96\xbb\x9a\x90\xbe\x56\xe3\xb2\x88\x51\x2c\x83\x85\x93\x0e\x39\x96\x4c\xab\x22\x34\xf4\xde\x55\xf0\x8d\x57\x27\x0c\xeb\xcf\xe1\xb6\xda\x24\x42\x68\x7f\x1c\x66\x30\xff\x32\x0f\xc1\x41\x8d\xf5\xbb\x30\x79\x23\x61\xe5\xce\x99\xee\x9a\xee\x57\x09\xfe\x3e\xce\x6f\xf6\x1f\xbd\x4a\xd0\xec\xd0\x5f\xfb\x7e\x95\xd2\x04\x28\x9a\xf1\x2d\x0d\xb8\xfe\xb5\x18\xa2\x0f\xcf\x95\xd7\x9f\x32\x20\x8c\xfc\x69\x1c\xd9\x5f\x53\x41\xb0\xd6\x53\x0a\x11\x78\xad\x4b\xf0\x33\x12\x51\x5d\xd4\x3a\x9d\xd0\xf8\x7d\x53\x79\xb6\xbe\x2c\x61\x8e\xda\xe7\xab\xf7\x5b\x13\x08\x9b\x0e\xdf\x1c\x32\x78\x2b\x42\xf8\x92\x10\xd7\x14\x29\xb8\x85\x60\x68\x1e\x7b\xa7\x40\xe0\x1c\x83\xc5\xec\x1b\xfb\x9d\x94\x9c\x08\x95\xee\x1c\xb3\x12\x56\x2e\x27\xbc\x91\x5a\x92\x2a\xd1\x97\xc9\x02\x5b\xfe\xbb\xd2\xab\x7c\x8b\x08\x31\x37\xee\xbb\xe4\x88\x3d\x67\xfd\xc3\x17\xa5\x99\xf1\xf1\xa6\xfa\x84\xf2\xe9\xaf\x13\x2a\xb3\x92\x09\xb7\x5f\x9d\xf6\xad\x81\x1a\xc1\x53\x61\x5b\x72\x0a\xaf\x11\xe1\x92\xac\xe9\x19\x01\x55\x09\xc2\x95\x2f\xfa\x21\x06\xb5\xc2\x04\xa8\xcb\x7d\xe3\xe9\x34\xa2\xc1\x6a\x1f\x61\xb9\x7c\x83\xff\xe7\x5f\xe8\xed\x8f\xbd\x75\xb5\x7a\x84\x05\xa3\xe7\x63\x7b\x82\x8a\x34\x09\xd5\x2a\x19\x33\xf8\xbc\x8d\x09\x9b\x22\xd9\x0c\x4b\x63\xfd\x08\x37\xda\x2d\x95\x07\x65\x6c\x09\x89\xfd\x87\x84\xdf\x5b\x9d\x26\x38\xcc\x16\x9c\x33\x95\x23\x90\x60\x17\x11\x85\x24\x4b\x43\x82\x44\xf3\xb6\x86\xce\x44\x55\x42\xd8\xd8\x25\xae\x13\x3c\xc6\x84\x94\xf8\xe3\xb2\xa1\x5a\x0a\x04\x7b\xcb\x4d\xef\x59\x5d\x01\x0c\xc6\x3c\x16\x83\x58\xde\x84\xe5\x0e\xeb\xf7\xdd\x7f\x21\x49\xf8\x15\x93\xf0\xf9\xed\x06\x2d\x02\x7f\x96\x56\xf2\xaf\x04\x35\x42\xa2\x75\xcc\x5c\x76\x87\x7e\x16\x62\x6a\xe2\xe4\xbf\x78\xcf\x20\x28\xb6\xff\x8e\xef\x4d\x8d\x60\x70\xfe\xf9\x96\xb0\xcf\xfb\x6e\x12\x2a\xa2\xd4\x38\xc4\x4c\x02\x08\x92\x8b\xef\xa7\x4c\x56\x8c\x64\xd0\x51\x7f\x3a\xd4\x7d\x8a\x1f\x21\x77\xcd\xaf\x50\x93\x4b\x9b\x08\x33\x1c\x65\x5a\x46\x7a\x25\x08\x47\x93\x5f\xdf\x36\x9b\x72\x80\x41\xa1\xd4\xea\xe0\x21\x25\x65\xc2\x18\x5d\x1d\xdd\xa6\x68\x4b\x90\x3f\xfb\x89\x35\xc3\xfc\x04\xc1\x39\xfb\x93\xbf\xc0\x7d\x1b\xc2\x9e\x3b\xcb\x2c\xb5\xed\xf6\x11\x6e\xf8\x08\x2e\x75\x13\xd3\x20\x08\xef\x36\x6f\xe3\xb8\x23\x4b\xa0\xc2\x2f\x22\x9b\xe5\x1e\x31\x98\x75\xa3\xcb\xe4\x5a\xe7\x03\xc2\x23\x46\xe2\xd4\xf3\xaa\x07\x04\xae\xb7\xda\xa7\xba\xdd\xf9\x08\x22\x7e\x6f\xc2\x56\x8d\x9d\x64\xd0\x3c\xf5\x51\x4d\xd1\xd2\xa3\x04\xae\x6a\x5f\xed\x88\x43\xaa\x84\x88\x11\x17\x1d\xde\x34\x11\xc2\xf9\x8d\x71\xb2\xfd\xa7\xad\x09\x91\xb5\x22\xd3\x0b\xf7\xeb\x12\xf8\x2b\xd6\x78\x2d\xd2\xd2\x20\x2c\x28\x56\xb6\xd0\xbf\x24\x44\x98\x71\xc5\x7c\xe4\xc1\xe2\xfb\x04\xc9\x27\xe6\x6f\x36\x5e\xd3\x20\x0c\x98\x6e\x30\x72\xf4\x7b\xc2\x40\x57\x8c\x11\xac\x7e\xe2\xc8\xa0\xa6\x9a\x37\x60\x9d\xeb\x12\xc2\x96\x93\xf8\xbe\x41\x62\x31\xc1\x88\xfb\xf9\x98\x61\xe7\x67\x16\x98\xa8\xa6\xba\x7e\x03\x4e\x82\x4f\xef\xae\x42\xb3\x94\xdf\xac\x7f\x48\x92\xcf\xae\x9e\x32\x23\x80\x05\x83\xa3\xaf\x0a\xd7\xe8\xd8\x31\x58\xc3\x69\xb0\x81\xf3\xd9\x1d\x42\xc0\xa3\x8a\xcb\xba\x82\x69\x84\xf0\xa4\xa5\xcb\x7a\xe7\x0f\x32\x30\x57\x1d\x9a\xd5\xd9\x72\x87\x60\x9f\x9a\xc0\x9f\x2a\x58\x45\xa8\xb1\xed\x7b\x7a\x96\x95\x4f\x78\x19\x71\xf0\x66\x57\xdb\x43\xc2\xb7\xcd\xaf\xcf\x2e\x8c\xbc\x4e\xe8\xde\x1d\xaf\x74\x7b\x7c\x8d\xca\x28\x97\xa2\xc4\x85\x0c\x82\xd9\xb2\x3d\x09\xea\xdd\xd9\x84\x9d\xef\xd3\xd6\xac\x8f\xc8\x21\x3c\x48\xfc\x11\x69\x17\x9c\x33\xa1\x88\x2f\xfa\xfe\xd1\xbf\x91\x87\x20\xd8\x96\xf1\x72\x78\xdf\x0a\xc2\x3b\xcf\xea\xd2\xf4\xcf\x79\x04\x87\x8d\xd5\x3f\xf7\x72\x94\x4e\x28\x39\x2c\x21\xce\xbf\x88\xc8\x7f\x53\xcc\xfd\x50\x8d\x10\xe6\x1f\x5c\x74\xe7\xd7\x3b\xc2\x62\x91\xeb\x31\xdf\xf9\xda\x09\xf3\xbb\x72\x1e\xcf\x5b\x10\x45\x48\x8a\xfa\x58\x11\x3f\xb9\x80\xc0\x3e\x3c\x7b\xec\xf0\x6d\x37\x02\x6b\xac\xc7\xba\xe6\x96\x17\x83\xdd\xd7\x43\x85\xfb\xde\x46\x33\xe0\x5f\xbf\xb8\xaf\x68\xf9\x5e\xc2\x81\x59\x3f\x05\xb4\xb2\x03\x08\x09\xdd\xac\x21\x13\xba\xc0\xe0\x77\x84\x6c\xdd\xc5\xa9\xa7\x09\xbf\x6e\xcf\x97\x58\xbe\xd8\x86\xf0\x3e\x6c\xb0\x32\xf0\xc8\x29\x82\xf4\x41\x6d\xdd\x81\x8a\xb9\x84\xa1\x25\x95\xba\x65\xaf\xb4\x08\x9f\xf9\x84\xcc\x93\xe5\xcb\x09\xbd\x6e\x95\x25\x67\x9b\x5e\x12\x9e\x5e\xff\xb0\x92\x3d\xfb\x31\x21\x50\x22\xe3\xd6\xdf\x32\x70\x3f\xfb\xf3\xcd\xf1\x35\x5c\xaa\x47\x57\xea\x54\x3b\x10\xa6\x56\x8b\x74\x7e\xea\x8a\x27\xd4\x9b\x6c\xe7\xee\x19\x47\xca\xca\x6f\xa9\x63\xd9\x49\x13\x8a\x2c\xcf\x8f\xc5\xaa\x3e\xe7\x09\xad\x17\xda\x74\x7f\x0f\x09\x13\xb4\x4e\x0f\x8b\x25\xfd\x76\x27\x0c\x1f\x8c\x4e\xae\xad\x92\x23\x68\xbe\xd4\xd8\xb6\x75\x35\x58\xc8\x73\x8d\xbe\xbb\x48\xba\x92\x81\xbf\xe0\x9e\xa5\x5b\x47\x1d\x09\x62\x43\x32\x1d\x2c\x01\x43\xc2\x86\x76\xa3\xee\x28\xf1\xdd\x04\x8b\x5d\xa2\x32\xfb\x13\xe4\x09\x26\x9d\x29\x6c\xeb\x6e\x5a\x11\xda\xe6\x9b\x39\xbc\xe8\x2a\x23\x74\x5d\x3c\xd4\x56\x1a\x9e\x47\x88\x79\xa4\x3a\xbf\xe4\xd4\xf8\x0f\x37\x27\x72\x30\x91\xff\x16\x03\x4e\xe1\xbe\x49\x67\xdd\x97\x13\x78\xa5\xfb\x95\x16\x76\x66\x11\x02\x7b\x7f\xd8\x8e\x3d\xb9\xcb\xe0\x46\x17\xff\x9e\x99\x4b\x9f\x13\xb6\x5d\x9b\x51\x7e\x7c\xef\x23\x06\xc2\x5f\x2f\x5b\x96\x1d\xcd\x25\x14\x09\xe4\xa7\xfb\x98\x33\x84\xe6\x78\x93\x85\x51\xbe\xe1\x84\xb0\xec\x49\x99\x3d\xca\xc2\x04\x9e\xf8\x6e\x73\x07\xb6\x5f\x2c\x54\xac\xbc\x20\xa3\xa4\x6d\x47\xff\xf0\xa2\x32\x78\xdf\x11\x8e\x5e\x16\x2e\x49\x44\x26\xc6\xbd\x66\x11\x86\x2f\x1b\x7b\xf4\xa4\xde\x21\x9c\x5d\x72\xca\xa6\x7b\x1c\x19\xc5\xdd\xd3\x87\x53\x4c\x08\x7a\xa5\x89\x97\xdb\xb7\x7e\x67\x61\xd6\x0d\xdb\x7d\x95\x7c\x16\x84\x13\xf5\x02\x92\x61\x68\x22\x78\xe0\x7a\x5f\xf7\x9f\xfb\x04\x87\x0a\xe6\xb6\xd0\x91\x02\x42\xf8\xb2\x0f\x97\x3d\xab\x7d\x09\x3e\xe9\xdb\xc4\x97\x7b\x06\x11\x1a\x6b\x8d\x5b\x0a\xe6\xdf\x25\xbc\x9d\xec\xff\xed\xc1\x38\xb4\xba\xc5\x23\xff\xc2\xb2\xe4\xee\x1a\x4b\xf6\x5e\x06\xa9\x17\xef\x08\xfd\x5d\xf3\xe2\xf2\xab\xab\x7c\x55\x56\x84\xac\x90\xfc\x90\x2d\xb9\xde\x13\xca\x7f\xd0\xe0\xf4\x4a\xb5\x68\xd2\x5e\x82\xa3\x4b\x50\xa5\xdf\x6a\x25\x42\x5c\x96\xca\xd8\xb2\xf1\xcb\xce\x65\x27\x63\x91\xce\x69\x9a\x84\x40\xb7\xbc\xb6\x0d\x3f\x92\x8b\xf1\x42\xbf\x74\x2f\xcf\x26\x59\xfa\x2f\x88\x90\xb0\x54\x0d\x7c\x21\xf4\xdf\xb0\xe4\x65\x98\x6c\x56\xf8\x9d\x62\xcc\xd5\x3f\x73\x77\xdb\xfa\x54\x06\x4e\xe7\x85\xab\x2d\xdc\xab\x09\xca\xb6\xab\x1e\x2d\xbd\x2a\x41\xb8\x2f\x67\x73\x6a\x44\x6d\x1e\x41\x7a\x9b\xb1\x57\x97\xe5\x32\xc2\xfc\x8d\x63\x23\x0f\x82\xbe\xb2\xfe\xa1\xe2\x07\xd4\xb7\xbe\x90\x25\xe8\x1e\x2b\x9a\x35\x77\xcf\xb2\x09\x30\xc8\xe7\x9f\xa2\x6a\x76\x9f\xb0\xc1\x7c\x35\x1b\x8f\xca\x7d\x42\xe9\x4b\x73\x46\xc0\x3b\x8d\xc1\x86\x6f\x75\x53\x4a\xaa\xd3\x09\x92\x12\xaf\xcd\x9d\x5e\xd7\x12\xd8\x4a\xb3\x2b\xce\xee\x2e\x21\x34\xee\x9e\x71\xe1\x64\x8a\x03\xe1\x28\xcf\x74\x27\x8e\xdd\x8a\x04\xe7\x90\x9a\x75\x51\x16\x1c\x84\x5b\xc9\xb1\xdb\x77\x57\xb3\x08\x0f\xd8\x76\xde\x8b\x2c\x93\x22\x08\x9a\xcd\xd7\x53\xdf\xce\x47\x30\xdc\xaf\x55\xd3\x23\xb1\x99\xc0\x7f\xf0\x42\xc5\xe0\xa7\x5c\xe6\x5f\x69\xca\x28\x13\x0a\xbd\x5e\x5e\x8c\x53\x67\xd9\xdf\x36\x1b\xef\x20\xb0\x36\xb4\x9c\x77\x69\xbb\x48\x08\x7a\x25\xf3\xbb\xef\x51\x18\x61\xaf\x98\xc6\xad\x95\x2a\xce\x04\x8b\xb2\x75\x1d\x8b\xd9\x3e\xb1\x20\x19\xe2\x7e\x61\xa9\xea\xa3\x09\x70\x16\x3d\xa3\xc0\x52\x65\x27\x8c\x79\xea\x70\xb9\xd7\x57\x10\xc2\xa6\xa9\xbc\x89\x7e\xbe\x9d\x70\xec\xe9\x86\x99\x1f\xe7\x06\x10\xf8\xfb\x0d\xed\x9e\x25\x88\x13\x86\x53\x4e\x1f\xff\xb6\x5a\x85\x30\x73\x61\xce\x14\xed\x25\x56\x13\xca\x7f\xb0\xf7\x53\x9e\x72\x54\xdf\x6f\x16\x0c\xf6\xbc\xce\x50\x98\x5e\x46\x18\x18\xee\xb0\x74\x1f\x47\xda\x9e\x2d\xaa\x9c\x1a\xc5\x84\xef\x5b\x4d\x93\x50\x2e\x47\xe0\xd1\x5b\xba\x2c\xb0\x58\x84\xc0\x95\xcd\x93\xb1\x9b\x37\x8d\x10\x3f\x29\x25\x51\x49\xaf\x8e\x60\x17\xda\xf0\xec\x2f\xec\xc3\xd4\xcf\x0e\x87\x94\x10\x04\xac\x23\x54\x7e\xb5\x98\x12\xd8\x2e\x76\x6a\x34\xd9\x67\x33\x58\xf2\xf6\xa3\x3b\x47\x89\x06\x41\xc7\xca\x43\xc4\xd4\x6b\x05\xc1\xa6\xbb\xc0\x4d\xfb\x46\x1f\x0b\xf7\xfd\x8e\x2f\x5f\xe1\xb0\x99\x30\x38\x5d\xaa\x2a\x74\xe3\x42\xc2\x51\x39\xe7\x5b\x53\x28\x83\x41\x73\xd6\x16\x4b\x93\x6b\xb7\x19\x4c\x15\x12\x3d\xbd\x71\xae\x03\x61\x87\x4c\xe1\x12\xd9\x76\x2e\x42\xa3\x72\x0b\xc7\x17\xbe\x83\x84\x67\x7b\xfa\xa9\xd8\x36\x99\x41\xa0\x8e\xa5\x44\x9f\xb2\x23\x81\x5f\xd5\xa3\xfe\x69\x87\x05\xc1\x69\xeb\xbd\x93\xc1\x7d\x0b\x09\xdb\xd5\xf5\x44\xe5\xb3\xf7\x13\x42\x3f\xf9\xec\xbd\x7d\x6f\x1e\x21\xf4\x4d\xd1\xcf\xf0\x19\x82\x84\x2e\x85\xf4\x03\x62\xf7\x39\x08\xaf\x5b\xcc\x92\xcd\x8f\xcd\x21\xf0\x36\xcc\xbb\xe0\x26\x60\x45\x08\xbc\x56\xbb\x36\x21\x2e\x8c\x01\xfb\xa1\xe5\x8f\xb2\x8e\x6e\x24\x24\x47\xa4\x6b\xb3\xf5\xcc\x25\xec\x2f\x92\xbc\x70\xbc\x5f\x88\xd0\x2c\x7a\xd4\x97\xf6\x8e\x12\xae\xe5\x75\x39\x68\xa3\x8c\x60\x3e\xa4\x3c\xb4\xbd\xb5\x9b\x50\x2c\xf4\x65\xff\xcd\x19\x07\x09\x72\x72\x61\xb7\xd7\xda\x4a\x10\x02\xe6\x70\x29\x5b\x7d\x51\x25\x54\xb4\x8d\x45\xfc\x38\x91\x4e\x70\xb2\xd9\x32\xe5\xf7\x38\xfe\x53\x4c\xbe\x5f\xf5\x3c\xaf\x7d\x73\xfc\x35\x6f\x6a\xda\x3a\x9a\x4a\xe0\x13\x9f\x69\xf8\x54\x93\x83\x30\x67\xe0\xf6\xa8\xfc\x27\x57\xc2\x0f\xe5\xc0\xf4\x2a\x8b\x08\x02\xef\x7a\xc5\xfd\xa3\x29\xda\x84\xb2\x48\x65\x2e\x0f\xb1\x87\xc5\x90\xbe\x70\xbf\xb7\x68\x28\x87\xa0\x59\x36\x6b\x9a\xc4\xac\x30\x42\xdc\xec\xae\x0a\xbe\x06\x5e\x42\xe9\x3a\x43\xbe\x6b\xd6\x1b\x09\x77\x72\xa4\x24\xad\xc6\x9f\xba\xc4\xce\x65\xa3\x5f\x1b\x76\x12\x16\xca\x3a\x70\xff\x3a\xbc\x95\x90\xb8\x68\x9e\x35\xdf\xd3\x2f\xc5\x90\x31\x0c\xe4\x7a\xd3\xc2\x4d\x90\x10\xb0\x74\xfb\x72\xee\x14\x03\x13\x5f\x83\xe2\x75\x72\x87\x08\xc2\x88\x8f\x1c\xab\xdb\x41\xb8\xda\x73\x24\x52\x45\x77\x39\xa1\xce\x7d\x20\x48\xb4\x65\x12\x41\xd7\x9b\x6d\xd1\xda\xfe\xcb\x04\xb7\xc5\xfe\x36\xa2\xff\x1d\x07\x65\xc5\xcd\x1e\x06\x4d\x21\x28\xee\x71\x2d\x7a\xfa\xa6\x88\xe0\xe1\xcb\x21\xda\x39\xa5\x9e\x10\xc9\x71\xfa\xe1\xb7\xaa\xc7\x04\xc1\xd5\x6f\x32\xea\x44\xea\x09\x47\xb3\xcc\xb8\xfa\x67\xc7\x10\x54\x93\x5e\x56\x49\xaf\x60\x11\xc2\xe3\x94\xed\x0b\x22\x3a\x09\x36\xf1\x2f\x7e\x5f\x28\xe9\x21\xc4\x70\xb6\x2d\x49\x7d\xf0\x8d\xd0\xee\x7d\xec\x2e\x97\xff\x6d\xc2\xde\xcb\x2a\x5f\xb7\x3f\x74\x24\x9c\x8b\x9b\x7a\xd7\x6b\xe7\x6e\x42\x40\xea\x6a\x9d\x82\xef\x19\x84\xc5\xc5\x53\x9f\x6c\x9b\xf5\x8a\x60\x99\xfe\xf0\xc6\x93\xc3\x55\x04\x7e\xd3\xd3\x5b\x93\xd7\xc6\x13\x2c\x47\xb5\xd8\x73\x77\x5b\x13\xaa\x6e\x4a\x88\x75\xd6\x1d\x22\xbc\xcb\x33\xe3\x76\xde\x1a\x47\x38\x1f\xf5\xeb\xfd\x0a\xcf\x21\x16\x86\x7b\x7b\x95\x4f\x85\x26\x12\x0e\x09\x7b\xdb\x2e\xc9\xb1\x23\xe4\xb2\x7d\xe5\xfd\xec\xe8\x4c\x78\xfd\xb0\x7e\xb2\x67\xff\x01\xc2\xb6\x63\x47\x1c\x42\x42\xf7\x12\x32\x85\x43\x83\xda\xac\xf6\x12\xfe\xa4\x1e\x3a\xa6\x1e\xb6\x85\x70\x3d\xfe\x4a\xe1\x9e\x8e\xcd\x84\xa4\x37\x32\x0a\xad\xa9\xf6\x84\x82\xdb\x4a\xcd\x7b\xaf\x6f\x27\x28\x3f\x2b\x32\xfd\xb6\xde\x8c\xc0\x6b\x5f\x9f\x12\xaa\x25\x40\xf0\x74\xfe\xe0\x3b\xcd\x62\x32\x61\x60\xe9\xf3\xb3\x45\x01\x17\x09\x27\x56\xa4\x9d\xf5\xda\xd2\x4b\xa8\x52\x9d\xc1\xb5\x39\xa5\x97\x70\x48\x2a\x73\x80\x35\x8e\x04\xfb\xbd\x16\x29\xac\x56\x02\x99\xbd\x7b\xa2\x30\x5e\xb4\x94\x4e\xd6\x74\x71\x5f\x22\x34\x4e\xab\x68\x59\xb1\xab\x80\xf0\xe3\xe6\xdd\xdf\x9f\x6f\x14\x10\x74\x6e\xbc\x9d\xd2\x7b\xa0\x90\x70\xf1\x62\xca\x4e\x05\xd3\x02\x82\xd8\x3d\x5b\xe3\x70\xd3\x04\x82\x40\xca\xa2\x4b\x73\x0c\xb2\x09\xae\xcf\x0b\xb2\xee\x2d\xcc\x21\x68\x5b\xe8\x0d\xb0\x9d\x90\x24\xd8\xbd\xb0\xdf\x36\xc5\xb8\x96\xa0\x14\x53\x1a\x3e\x79\x1c\x1d\x7d\x4a\xd3\xfe\x22\x5e\x5d\x49\xf0\xef\xe8\xcf\xb7\x92\x9b\x7f\xf1\x3d\xe1\x4e\xde\x96\xb8\x63\x84\x9b\xdb\x3b\xde\x89\xc4\x1c\x9b\x50\x22\x4b\x3f\x8d\xd9\x68\x04\x13\xd8\xfc\x0a\x0e\x09\xb5\x1c\x21\xbc\x3e\xa0\xb3\x75\xde\x6f\x45\x42\xc8\xaa\x18\xfb\x23\x01\x81\x84\x97\xfa\x51\xce\x81\x2e\xfa\x84\xee\x57\x7b\xbf\x68\x08\x4b\x10\x9a\x6c\x99\x82\x53\x3b\xbd\x18\x24\xd4\x8c\x3a\x5e\xda\x9c\x4e\x90\xd8\x78\xfe\xe0\xb7\x55\xd9\x84\xcc\xa4\x79\x45\x9b\x73\x6b\x08\x86\x45\x6b\x58\xc7\x97\x3e\x22\x64\x6e\x9e\x9e\x98\x57\xfc\x98\x90\x3c\xf5\x4d\x70\xfe\x38\xf6\x04\x44\xc5\xd7\x1e\xa8\x22\xcc\x77\x4f\x5c\xab\x69\x5b\x45\xf0\x0e\x39\x6e\xc2\x59\xf6\x8e\x50\x7e\xa6\xd5\xa5\xc7\xe5\x3a\xc1\x78\x71\x12\xbf\xc6\xf8\xe8\x86\xfb\xc9\xdc\x05\x9b\x1d\x09\xa7\xd5\x34\xd3\xef\xe9\x05\x31\xd8\x19\xc0\xb4\xaa\x0b\x39\x4d\x18\xf5\x9e\x8f\x6e\x58\xe8\x61\x44\x38\x77\x63\x57\xf0\xda\x5b\x47\x08\xe7\x38\x7d\x55\xdd\xc6\xef\xe3\x47\xd4\xb6\xde\x2b\x9b\xf9\x96\x30\xcf\xca\xf3\x5e\x63\xd9\x2b\xc2\x8e\xc4\x4a\xcb\x8a\xf1\xd2\x30\xe9\x71\x24\x9b\xe6\x4d\x06\x95\xfb\x4e\x56\x2d\xbc\xfc\x94\x30\xb8\x63\x9f\xd9\xbe\xb0\x7b\x84\xba\x30\xed\xce\xc4\x1f\xfc\x04\xf9\x8f\x63\x4b\x9c\x14\x14\x08\xcb\xee\xcb\x09\xbc\x2d\x6e\x63\xfe\x95\xa7\xb3\xd6\x2c\x2a\xda\x3b\x73\x02\x04\xae\x88\x1a\x6b\x9d\x58\x4e\x28\x30\x9e\xcb\x79\x65\x4a\x2a\x03\x3d\x09\xe3\x8f\xd1\x51\x45\x84\xf0\x2d\x3c\xda\x8f\x9e\x3d\x23\x54\xde\xfd\xb8\xf8\x2f\xa0\x67\xd1\xda\x17\x79\x80\xd0\xf0\xfe\xd9\x8f\xba\x79\xfb\x09\x43\x52\x3c\xdc\xf7\xb8\xe2\x08\xbd\x82\x7a\x2e\x63\x4e\x3a\x84\x97\x09\x3b\x2e\x44\x4e\x39\x40\xf8\xf4\x28\xc5\xe7\x54\x5e\x38\x41\xce\x7f\x9b\x78\x75\xa7\x2d\xe1\x84\xa3\x72\xf7\xe6\xc2\x24\x06\x33\x78\x55\xb7\x68\x8c\x74\x11\xdc\x7c\xba\x34\x9d\x39\xbb\x09\xb6\x8f\x38\xb4\x02\xeb\x9e\x11\xce\x44\xce\x55\xfa\xe0\xda\x47\x68\x5a\xe4\xc9\xab\xa1\x1f\x4f\x38\x67\x92\xbc\xd4\x35\xe8\x38\x61\xa8\x79\x06\xbb\xb1\xed\x71\xc2\xa0\xca\x7c\xbb\x04\x97\x36\x82\xf7\x86\x9d\x82\xef\x85\x0b\x09\xc2\x8e\x17\xd7\xb4\xa7\xe5\x13\x2a\x6d\x45\xa2\xd7\x47\x35\x13\x38\xc7\x96\x47\x4e\xaf\x49\x65\xe0\xde\xe6\x37\xdd\x56\xa3\x90\x90\xd8\x9d\x25\x7e\xe9\x7d\x2c\x83\x77\xad\x89\x6e\x4f\x4a\x7c\x08\xf7\x55\xdd\x17\xf7\xe6\x7a\x10\x4e\x2f\x5e\xb6\xd2\xed\x81\x0f\x21\x2f\xa2\x7f\x26\x9b\xe5\xb5\x09\x6b\xe4\xd6\xc7\xd5\x15\x38\x25\x33\x08\x3e\xf7\x4a\x26\xcd\x26\x92\x30\x6b\x63\x7f\x4b\xdf\xd9\xd3\x84\xed\xab\xed\x9d\x9d\x4e\x9e\x26\xe4\x4e\xbe\xe0\x72\xfa\x83\x05\xc1\x75\x24\xaf\x86\xff\x8c\x00\xc1\x39\xa9\xca\x27\xe4\xf8\x0d\x42\x64\xdd\xfb\x79\x86\xde\x5b\x09\xaa\x9b\xdf\x1d\xf0\xfd\xa4\x35\xa1\x88\x97\x89\x5e\x7b\xb2\xb8\x84\x50\xe5\xc5\x1b\xf4\x17\xef\x8a\x15\x8e\xdf\xfb\x3f\xe5\x3f\xf0\xf5\xde\x7c\xe7\xd0\xd9\x1b\x13\xd0\x55\xa6\xf7\xf0\x2f\xde\xa5\x45\xb9\x09\x4c\x6d\x2e\x46\x47\x69\x48\xac\xc4\xdc\x74\x82\x70\xcf\x71\x37\xe7\xf9\xb6\x13\xb0\xf5\x47\xd2\xfb\xc9\x35\x60\xa1\xd4\xec\x83\x52\xcb\xac\x74\xc2\x89\xb7\x41\x41\xdc\x8c\x14\x21\x70\x4a\x82\xc0\xcc\x94\xd3\x84\x95\xef\xa4\x5f\xb0\x37\x6d\x24\x44\x25\x96\x5c\x3e\xf1\x69\x80\x85\xfd\x19\x3f\xa7\x05\x4a\x84\x12\x5e\x0b\x6c\x77\x08\x7f\x9e\xc0\x60\xc7\xa7\x5f\xb7\x13\x73\x5c\x08\x87\xce\x7e\xac\x49\x0b\x94\x26\xfc\x51\xea\x8b\x3f\x62\xe5\x4f\x08\x69\x5a\xeb\x64\xdd\x51\x44\xe8\x30\xd1\x38\x7a\xdb\xd9\x95\x70\x2e\xed\xc4\x89\xd7\x6f\xbf\xb3\xfe\x61\x40\xa4\x71\x98\xe3\xc5\x0c\xc2\x47\xfd\x8c\xda\xc9\xab\x39\xe9\x5f\x59\x9a\x59\x75\xf0\xc7\x23\x03\x06\x7c\xd6\xa2\x3f\x6a\xb9\x73\x59\x38\x1e\x2c\x72\x43\x78\x61\x39\xfd\xc3\x65\xc9\x8d\x9e\xfc\x47\x4b\xe8\xbf\x8c\x3e\xcc\xcc\x19\x3e\xee\x19\x46\x50\x34\x92\xaf\x88\xe4\x3a\x3f\xa1\xfc\xbf\x68\xe6\xbb\x79\xcd\x6d\xeb\x64\xc2\x83\x75\xe7\xb5\xb9\x8c\x05\x09\x8c\x10\x4f\xf0\x43\x63\x5d\xc2\x1b\xbd\xd2\xa4\x6f\xd2\xb9\xcc\xbf\xf2\x5c\x74\xd5\x09\x7d\x4e\xbb\x09\x78\x38\x6b\x2f\x96\x1d\x4d\x60\xf0\x5a\x61\x43\x9b\x81\x54\x22\xa1\xef\x29\xbb\x0d\x1f\x9b\x08\xe1\x5a\xf0\xca\xab\x71\x11\x6c\x84\x54\xeb\x04\xc1\xcf\xb3\x5e\x12\xb4\xbb\x66\xcf\x15\x9c\x11\xce\x40\x4d\x64\xfd\x71\xae\x28\x15\x82\x57\x9c\x05\x5b\x51\xec\x41\x02\xab\xa8\x5d\xc8\xc0\x41\x9b\x50\x3b\x78\x6a\xc5\xfb\x69\x0a\x84\x4b\xf6\x77\x76\xf3\x1a\x39\x31\xff\xca\x6e\x87\xbc\x75\x2a\xb1\xed\x2c\xf8\xdb\xfe\x29\x9c\x2a\x3c\x9d\xd0\x78\x32\x67\xb7\xe2\xde\xdb\x84\xfa\xc7\x49\x9b\x25\x4e\x09\x12\xd8\x7f\x18\xe5\x77\xdc\xc8\x22\x24\x3e\xd2\xf2\x9f\x37\x67\x33\xa1\xf9\x48\x69\xd4\xda\x49\x0b\x08\xea\xfa\x2b\x32\x22\xa7\x0a\x12\x5c\xc7\x86\xe3\x96\xb6\x5c\x62\x20\xa1\x77\x3b\x34\xf4\x9e\x11\xa1\xba\x32\x39\xa0\xe5\xfe\x28\x0b\xd5\x63\xbd\x56\x6d\x6c\xe6\x84\xa5\x3e\x9a\x77\xe7\x25\x05\x32\x08\xb8\x55\x37\x4d\x31\xd6\x99\x90\x27\xbe\xdf\x7a\x73\x77\x27\x0b\x41\x61\xdc\xc2\xb3\x4c\xd2\x19\x68\x6b\x3e\xec\x3b\xef\x62\x4b\xb8\xcb\xa5\x11\x1a\xf5\xbe\x80\x30\x98\x97\xa7\x90\xf5\x79\x31\x21\xc7\xa4\xbe\xa3\xda\x72\x2e\x21\xaf\x6b\xeb\x12\x8f\x9d\xc7\x08\xeb\x6c\xbe\x98\xe9\x8e\xdd\x27\x0c\xcf\x93\xac\x8e\x3c\x26\x43\x28\xb0\x7f\x56\xfb\xe8\xfa\x6a\xc2\x02\x9f\x4d\xf2\xd2\x85\x9b\x08\x31\xaa\xa6\xb3\xc3\x36\xca\x13\xdc\x5f\xbd\xf2\x2d\x5e\x3f\xcc\x42\x8e\xe4\xde\x23\x5b\x5b\x4a\x08\xe5\x79\xf9\x73\xd4\xad\xa6\x13\x56\xfe\xb8\x53\x94\xba\x72\x01\xe1\xfb\x8f\x54\x9d\x45\xd4\xcc\xfa\x07\x5f\x7e\x5e\xc9\xfe\xe6\xf4\x62\xd8\xd8\x5e\x6f\xef\xcc\x5e\x42\xb0\x35\x51\xdf\x10\xb5\x46\x8f\xb0\x34\xe4\x98\x8e\x93\x47\x34\xe1\xa6\xf9\x58\x61\xcb\x41\x25\xc2\x9a\x19\xbd\xfa\x6a\xf5\xa7\x09\x75\x29\x57\x67\xbf\xdb\xee\x42\x50\x49\x1b\xda\xf4\x7c\xfc\xa3\x39\x2b\xd6\x66\xb9\xf8\x3d\x35\x42\xe2\x35\xd1\x5c\xed\xd5\x27\x09\x81\xf6\x07\xf5\x22\xb6\x5a\x13\x9c\x9f\x3a\x3f\x6e\xe2\xab\x2f\x86\xa6\xb8\x80\xa0\x8d\xd8\x76\x82\x98\xc9\x50\x71\x10\x8f\x26\x41\x73\xc0\xc9\x39\x64\xcd\x5e\x42\x7c\xa3\xc3\x4b\xb6\x2a\x53\x82\x71\x9a\xdf\x1d\xde\x4d\xee\x04\xab\xf6\xef\x99\x79\x2c\x3d\x42\xf8\x8d\x7b\x53\xd9\x75\xf8\x09\x8f\x5e\xcc\xd7\x12\xf9\x12\x47\x88\xba\x64\xf8\x74\xca\x6a\x11\x42\x56\x95\xef\xf5\xdf\x67\x0f\x10\xc4\x9b\x17\x2e\x18\x4a\x3b\x33\x01\xaf\xa6\xf3\x5e\x18\x62\x4b\x21\x58\x2c\x0a\x7d\x52\xd8\xed\x4b\x68\xdb\x91\x58\xfd\xbc\x70\x80\x90\xdb\xfb\xab\xae\x5a\xf2\x27\xe1\x0f\xcf\xfc\x2d\x73\xcf\xfd\x24\x84\x3c\x79\x6f\x9f\x55\x58\x4e\xf8\xb5\xb7\x63\x64\x8d\xdb\x79\xc2\xad\x8d\x5d\x1f\x72\x22\xf7\x11\x34\x8c\x7e\x8c\x98\xba\x9a\x10\xe4\x57\xdb\xe9\xcd\x0a\xbe\x48\x58\x17\x92\x9b\x69\x2d\xa0\x40\xb8\xa3\xa9\x7a\xa9\x28\x2e\x87\xb0\xd4\x53\xcd\x3a\xca\x3e\x9d\x30\xfa\xe6\xbd\x6b\x01\x6f\x29\x21\x3c\xe5\xb1\x5a\xb8\xec\x5e\x06\x65\xdf\xcf\x3c\xd2\x73\xb0\x23\x78\xfd\xe0\xff\xce\xfe\x4c\x82\xb0\x64\x8f\xe3\xc1\x54\x1f\x7e\x82\xf8\x9b\xe9\x8e\xd7\xfd\x0f\x10\x0c\x0d\x44\x84\x77\x1e\x6e\x21\x5c\xb4\x14\x29\xc9\xb2\x94\x25\xcc\xd3\x8f\x19\xd9\x69\xb2\x9a\x70\xae\x7e\x4f\xac\x47\x1f\x07\x41\xcf\xe6\x64\x93\x52\x58\x0c\x61\x6e\x87\xa2\x5e\xe3\x87\x41\x16\x76\x9e\x93\x61\x6e\x24\x77\x11\x9c\xde\x6a\x56\x69\x9c\x7b\x41\xd8\xdc\xf2\x42\x7d\xdd\xf3\x10\x82\x81\xb8\x6d\xd4\xd5\xe5\xb9\x84\x52\x07\x29\x21\xb1\x2b\xe6\x84\x35\x03\xed\xf3\x95\x86\xf4\x08\x6c\x8f\xaf\xd6\xd4\x05\xf3\x10\xdc\x27\x3d\x2b\x3b\x5f\x61\x42\x30\x4f\xfd\x9c\xa3\x98\xb8\x8c\x90\xb7\x50\xb8\xf3\xf9\x9a\x52\xc2\xe3\x8f\xf3\xcf\x48\x09\x88\x4e\x40\xdd\xde\xa9\xdf\x5f\x3e\x5d\x3c\x01\xd1\x97\x7d\x72\x7b\x6a\xc1\x42\x50\xf5\xf6\x83\x10\x11\x25\x2c\xd5\xfe\x59\xac\x92\x7f\x9f\x60\xc5\xa5\x32\x38\x37\x28\x8b\xf0\xb4\x4a\x02\x56\xa9\x42\x84\x69\xeb\x52\x1e\x6c\xde\xd3\xcd\x02\x96\x1c\xac\x19\xea\xf8\xc2\x82\xa6\x74\x5c\x51\x87\xe6\x53\xe6\x5f\x51\xe6\x7b\x2b\xe5\x5d\xa1\x40\xf0\xf9\xa5\x54\xa9\x7e\xfe\x22\xe1\x21\xe7\x64\xde\x69\x7b\x64\x08\x92\xc7\x0b\xac\x3d\x14\xf7\x4f\x28\x2c\xaf\x75\xc6\xcf\x1b\x23\x26\x20\x45\x4b\x34\x4c\x44\x39\x92\xb0\x5b\xa9\x33\x3b\xfe\xfd\x25\x82\xcc\xe3\xf4\xa5\xae\xce\xc1\x04\xaf\xa3\xe1\x56\x23\x52\x22\x84\xda\xec\x0d\x59\x3a\x0b\x2c\x08\xa1\xfc\xf6\xde\x1d\x2a\xc2\x04\xcb\x45\x59\xa1\xc9\x17\x39\x09\x82\x8f\x98\x3b\x33\x4d\xae\x13\x24\x8b\xf4\xe7\x79\xdd\x55\x23\x1c\x16\x2e\xfc\xfc\xd4\xe5\x0f\x0b\x17\x76\xce\x50\xf2\x7c\x2d\x42\x18\x78\xf5\x76\x73\x61\x75\x2c\xa1\xf5\xcb\x2c\xe5\xa7\x9f\xf9\x18\x14\x9b\x6c\x3b\xfd\xfd\x8a\x20\xc1\xac\x35\xd1\x77\xaa\x79\x37\x0b\x7b\xf3\x2f\x71\x4e\x5e\xeb\x4c\x68\x38\x5a\x6c\x68\x4e\x6a\x04\x07\xab\xc0\xe4\xb7\x31\x6f\x18\xb0\x9d\x2d\xf9\xd1\x1a\x13\x41\x30\xfa\xbc\xbe\xfb\xa6\xda\x4d\x42\x55\x98\xee\xf4\xa5\x7c\x0f\x59\x78\xbd\xed\xfa\xd9\x95\x59\x0d\x04\x0f\x8e\x73\x47\xfe\x2f\xa6\x9e\xd6\x56\x5d\x35\x0e\xb6\x4b\x65\x92\xee\xec\x19\x04\xe5\xe8\xa1\xd2\xfd\x97\xee\x13\x9e\x15\x9d\xfc\xec\x36\x5e\xe2\x0e\xc6\xd8\x49\xe6\xa5\x13\xea\x7a\x9e\x17\x6c\x12\x89\x26\xb4\x8c\x06\x07\x96\xd2\x26\xc2\xb7\x69\x4d\xc7\xbf\x74\xcd\x20\xec\x53\xd2\xb8\xe0\x92\xc9\x22\x3c\xbb\x72\x3c\xb8\x40\xe8\x14\xa1\xba\x4e\xa4\x6c\xf3\xd1\x79\x04\xee\xd0\x80\x66\xa9\x79\x25\x0c\xe2\xa2\xcb\x17\xd3\xd6\x52\x06\xda\xf5\x9f\xe6\x4c\xdf\xd6\xc3\x80\x2d\xf1\x90\xa2\xa6\x51\x0b\x83\xd8\xba\xeb\x59\x6f\x3d\x72\x09\x1f\xaf\xfb\x06\x3a\x76\x2b\x33\x58\x39\x35\xfb\xd9\x2b\x76\x23\x06\x10\x3c\xc1\x1f\x3a\x9a\x43\x90\x65\xf7\x5d\x72\x6e\x44\x9f\x41\x52\x56\x45\x94\xe0\xb2\xb3\x04\xa5\xc5\x11\xb2\x99\x09\x44\x10\x38\xb4\x73\xef\x5d\x5a\x48\x48\x5d\x63\x27\xe8\xfd\x7e\x35\xe1\xe6\xb3\x97\x7f\x1a\x1d\x3f\xb0\x70\x74\xb2\x80\xe4\x95\x5a\x3e\xc2\x9c\xe1\x3d\x31\x05\x96\x06\x84\x37\xd3\xe3\xef\xda\x05\x18\x13\xb0\xdb\x23\x3d\xf3\x98\xd1\x04\x5c\x7a\x28\x6e\xe6\xb7\x42\x98\xe0\xa9\x4b\xb1\xcc\xc0\x35\x82\x63\x5a\xfb\x18\x06\xe7\x12\xca\xa3\xfc\x6c\x65\x32\x6b\x08\x5d\x15\x97\x8e\xd4\x5d\x19\xbf\x06\x66\xc5\xa8\x5c\x3f\xf0\x92\x20\x26\xb2\xf1\xd9\xb3\xae\x1c\x42\xfb\x88\xf9\x3b\xde\xc3\xdb\x18\x5c\xda\x5d\xa0\xad\x3a\xd7\x9c\x30\xf8\x9c\x8b\x25\xfe\x7a\x0a\xe1\x82\xb1\xf8\xe9\x21\x81\x6c\x82\xde\xc1\xa6\xfd\x41\x8b\x4e\x10\xbe\x0e\x24\xe8\xde\xf5\x8c\x26\x04\x35\xfc\xa4\x17\x95\x21\x04\x2d\x71\x99\xbd\x37\x3a\xd6\x11\xd6\x2f\x9a\x14\x16\xb5\x4e\x92\x70\x52\x4b\xbe\xed\x6b\xe7\x31\xc2\xca\xe9\xad\x0d\xa3\x67\x7a\x08\xc1\x3a\xfe\xd5\x6c\x67\x7b\x08\xad\x0d\x62\x49\xe7\x9e\x76\x13\x1e\xac\x90\x5c\x37\x36\x3e\x62\x9b\x33\x70\xab\x8a\x95\x4c\x08\x7d\x39\x34\x87\x3f\xf1\x36\x61\x65\xba\xcb\xcf\x8a\xf1\xf2\xb5\x73\xdd\x70\xbd\x5d\x32\xe1\x71\x61\xe6\xc2\x40\x21\x37\x42\xfb\xb4\x98\x5d\x3d\x5e\xf1\x84\x9e\x07\x55\x4f\x9e\xa4\x79\x10\x26\x7b\x25\xbd\x29\xdd\x19\x46\xf8\xaa\x23\x30\x67\x7e\xba\x25\x61\x28\xd0\x2b\xd3\x53\x7e\x19\xe1\xe0\xd0\xdd\xf8\xf7\x75\xe7\x18\xec\x53\x3c\x7f\xad\xe8\xe7\x51\x42\xa2\xd9\x26\x97\x1d\xb0\x24\xb8\xf5\x47\x4f\x57\x30\xcf\x21\x98\x25\xc9\x69\x69\x99\x0c\xb2\x10\x64\xf5\xb0\xab\xb7\x68\x88\x85\x8f\x1a\x31\x77\x17\x7f\xb4\x26\xd8\x26\x38\xd5\xbf\x39\xe3\x40\xd8\xfa\x28\xe3\xdd\x12\x3d\x1b\x82\x87\x63\xda\x0d\x4b\x29\x25\xc2\x55\xef\x60\x85\x80\x06\x21\xc2\xab\x97\x73\x8c\x5a\xcb\x25\x09\xbf\x36\x19\x15\x6a\xa7\x17\x4e\xf8\x43\x8f\xaf\xee\xca\x5d\xfb\xc9\xff\x8b\x05\xbf\x0e\x81\x50\xd5\xfd\x65\x0c\xfc\x85\x3a\xfa\x43\xb8\x4c\x18\xec\x92\xe0\xac\xeb\xf4\xd2\x23\xdc\x5f\x17\x6c\x17\xbd\x9c\x45\xe8\xc8\xdd\xfa\x24\x64\xd4\x87\x70\xd8\x4d\xa2\x54\xe0\xb6\xcd\x04\x84\x46\x7e\x76\xfe\x33\x6b\x15\x61\x74\x8b\xd2\x5a\x53\xab\xa9\x84\x55\x76\xeb\x52\xc2\x52\x0d\x09\xaf\x5c\xda\x93\x4a\x37\x3e\x24\x6c\x90\xd8\xf0\xaa\x59\x84\x93\xd0\xb4\x6b\x32\x8b\xfd\x6a\x00\x21\xea\x0a\xa7\x5b\x94\xb0\x10\x21\xf6\xd8\x58\xea\x9e\x15\x44\xc8\xee\x88\xf7\x30\x3a\xbf\x9f\x81\x74\x62\xd5\x16\xbb\x8a\x7d\x34\x58\x78\x70\x89\xee\xa4\xf1\xcf\xb2\xdc\x15\xdf\x2b\xe1\x1b\x09\xfa\x26\xee\x8b\x12\x0d\xd7\x13\x1e\x2f\xdc\x71\xb2\x82\x55\x53\x8c\xbe\xfe\x98\xd5\x9b\x3f\x26\x12\x82\x6e\x05\xcc\xfb\x8b\x76\x35\x53\xdf\x2e\xeb\x37\xc5\xa8\x7d\xdc\x67\xa0\xf6\x6b\x0e\xe1\xfa\xbe\xe3\xdc\x61\xfa\xb2\x13\x90\xd4\x59\xfe\xad\xf1\x5c\x3c\x0b\xc5\x2d\xf7\xce\xf7\xaa\x0d\xb0\xb0\xf8\x53\x85\x7d\xcb\x95\x3b\x84\x1b\xf5\x5f\xef\xbe\xfa\x3f\x08\xd8\x36\x9c\x1f\x7f\xba\x99\xfe\xad\x71\x16\x4c\xdc\xcb\x73\xd3\x75\x02\x1e\xbf\xab\x10\xb5\xe5\xf6\x99\x50\xf4\x25\xb7\x9d\xb9\x21\xb0\x9c\x60\x54\x24\xd1\x73\xb9\x43\x96\xa0\x3a\x5c\x64\xe1\x3c\x7e\xf8\x72\x5f\xad\x1e\xdb\xf4\x51\x8c\xf0\xb5\xd1\x5f\x7b\xaf\xbe\xca\x04\x38\x6e\xbb\x35\x98\x2b\x24\x42\x50\x79\x12\x5b\xd1\x72\xa9\x9d\xa0\xa8\x3b\xed\xbd\xab\xd6\x29\xc2\x15\xe9\x15\x09\xb3\x46\x2e\x11\x8a\x8d\xea\x0e\x5a\x9a\x8c\x6f\x99\x7a\x1f\xae\xad\xfc\x75\x99\xc1\x9c\x96\x33\x7b\x32\xb9\x33\x09\x95\x17\xef\xe4\xdb\x65\x76\x11\x1e\x1f\xb9\xd0\xb8\xbc\x24\x9b\x70\xaf\xd1\x40\x2a\xcd\xd2\x8d\xd0\x53\x77\x72\xd7\xa1\xbb\x32\x84\xc3\xe6\x61\xca\xf3\x0f\xf1\x11\xec\xd9\x43\x0f\x3c\x93\x71\x27\xf0\xf8\x09\x89\xcc\x10\x7b\x40\x18\x68\xb8\x7f\x60\xfe\x14\x75\x42\x5b\xfa\x8c\x0f\x1e\x65\xb5\x04\xd7\x5a\x73\xa5\xa3\xe3\xe8\xe9\x92\x1d\x73\x1f\x87\x90\xc9\xcc\xfa\xbf\x48\x21\x59\x9e\xbf\x23\x87\x67\x85\x4f\xcf\xdc\xbc\x4a\x50\xf0\x76\xdc\x38\x9a\x1d\x36\xa1\xfc\xbf\x30\xe2\x2f\x38\xb4\xfd\xf9\x0a\xc2\x03\x6e\x1b\xb7\x8d\x41\xe3\x47\xda\xfc\x3d\x86\xfb\x04\x4f\x12\xb8\xef\x7f\x3f\xd3\x39\xb3\x96\xc0\xeb\xa7\xfe\xa8\x5d\xa0\x96\x70\x3f\x65\xa0\xe1\x7c\x42\x03\x83\x59\x9d\x2a\x0b\xbb\xc6\xcb\x82\x2b\x8a\x85\x1b\xc7\xac\x09\x55\x57\x47\xf3\x95\x46\x4f\x12\x7c\x66\x45\xbc\x29\xf4\x0a\x66\x10\x30\xa4\xf7\x5b\x28\x3e\x80\xa0\x9c\xe5\xa6\xe9\x34\xd5\x86\x50\xd6\xf0\x79\xb7\xf0\xa0\x06\xe1\xbc\x47\x60\xfa\xb3\x97\xce\x84\x70\xb9\xb5\x3e\x27\x35\x34\x08\xe7\xce\x71\x3b\xf5\xf3\x7b\xb2\xd0\x29\xb9\x70\xe3\x2f\x1b\x5b\xc2\x96\x1a\x7d\x79\x41\xb9\x93\x04\xf1\xfe\xbb\x49\xcf\x26\x5b\x13\xbe\x05\xe7\x71\xb8\x6e\x29\x65\xe0\x76\x99\xcd\xe2\xc2\x85\x0a\x42\xf4\x46\xbe\xf3\x17\xc7\xb1\xdd\xa6\x74\x93\xe7\xe5\x0a\x82\xc6\x5d\xa3\xc6\xda\x05\x3b\x09\x9f\x9f\xcc\x38\x76\xee\x8d\xd0\x04\xac\x5d\xbd\xf0\x65\x63\x68\x35\x0b\x1f\x7c\xd7\xbf\xbc\xb9\x60\x2b\xc1\x46\xbf\x5f\xdc\x68\x81\x24\xa1\xb9\xa7\x6b\x47\xa9\xc3\x24\xc2\x12\x29\xaa\x69\xb2\x96\x22\x64\xfc\xb6\x6d\x30\xde\x27\x33\x01\xf1\x6c\xc7\xe2\x9e\xed\x78\xc9\x42\x49\x5d\xb2\x9d\x5d\xb1\x23\x61\x6c\x56\x83\x65\x56\x52\x33\x0b\x3b\x2a\x3a\x8e\xfb\x9a\x94\x12\x32\x98\xa5\x07\x5e\x9f\x55\x22\x94\xfd\x99\xd7\x99\xe5\xe8\x4a\x90\xd0\xd8\x94\x7f\x7b\xe5\xc5\x09\xb8\x66\x6c\x7a\xbc\xa1\x29\x93\xe0\x64\x76\x7c\xa8\x3c\xc1\x80\xf0\x9a\xcd\x2f\xe2\xea\xd4\x8b\x04\xeb\xa8\x4f\xca\x15\x3b\x94\x09\x8d\x91\xe5\x97\x17\x4e\x96\x22\xf8\xce\xbe\xbd\x6c\x4a\xa1\x3d\xa1\xb1\x55\xed\x4a\xe4\x15\x2e\xc2\x0b\xae\x83\xee\x87\x5b\xce\x12\xdc\x1e\xc5\xe8\x4a\x89\x35\x11\x0e\xaa\x66\x2d\x94\xad\x2b\x61\xa0\x9a\x6c\xd5\x2e\x1c\x74\x83\xf0\xf0\x5c\xfa\x7c\x2d\x79\x3e\x42\x08\x5d\x96\xd3\xff\xaa\x49\xd8\x36\x60\x71\x63\xed\xee\x3c\xc2\xda\x2b\xdb\x7c\x57\x59\x96\x31\x78\xcf\x3e\xfb\x47\xbd\x4c\x16\x03\xa3\x55\xe7\x8b\xc5\xc6\x47\x9a\xbf\xaa\xe7\xef\x79\x7c\x9c\x90\x3d\x59\x60\xd1\x85\xb3\x5a\xc5\x60\xfd\x08\xd1\x2c\x7c\x63\x42\x08\xd3\x36\xf8\x6c\x16\x2f\x4c\x28\x62\x6d\xd4\xbf\x9f\xe2\x4f\xd0\xd9\x26\x77\x60\x1f\x87\x0a\x61\x6c\xe1\x9e\xd3\xa6\x9c\x49\x04\x6d\x9d\xb3\x25\x2e\x0b\x6d\x08\x12\xaf\x4a\x95\x4d\x96\xdb\x13\xee\x3e\x8a\xb6\xd8\x3e\x14\x3f\x01\xc9\x7d\x32\x33\xe6\x4e\x71\x23\x0c\x64\xf1\xff\xae\xb4\x11\x22\x8c\x7e\xa8\x92\xd2\xb2\x9d\x4f\xe0\x12\xd4\x13\x32\xbd\x30\x8d\xf0\x61\x43\xf6\xd7\xef\xf5\x7d\x2c\x94\x70\xa2\xed\xd8\x55\x7f\xc2\xb7\xa6\x14\xf3\x63\xa1\x4b\x18\x04\x06\xeb\x06\xf0\x2d\x2e\x62\x70\x4b\x82\x6f\x9d\xc4\xf0\x4e\xc2\x89\xca\xcb\x1e\x4d\x96\xe6\x84\xb9\x5e\x5c\x2f\xe3\xbc\xb5\x08\x9a\xdd\x8a\x7d\x22\x3d\x7b\x09\xdb\x97\x34\x0a\x3c\x7e\xec\xca\x60\x75\xed\x8a\xcf\x2a\x8f\xd5\x08\xbb\xad\xd6\xde\x78\x71\x7f\x1d\xe1\x63\xf2\xbd\xd1\x3d\x17\xcb\x09\xb3\xa7\x3a\xba\x9c\x69\xb4\x20\xdc\xb1\x53\xf3\x0e\x95\xcc\x26\x4c\x36\x8d\x34\x3c\xfc\x2e\x85\xc1\x07\xe3\xe8\x18\x9a\xf2\x88\xc1\xf6\x51\x5c\x9c\xbf\x3a\x9b\xf0\x70\x93\x93\x87\xc7\xa8\x2e\x41\x71\xcd\xb0\xd6\xcb\xfe\x30\x02\xd7\xd2\xbb\xf1\x4e\x05\x9f\x08\x8f\xdb\x4e\x69\x3a\x8e\xc3\xe6\xf2\x6b\x5d\xbb\x71\xdc\xfb\xc1\x77\x32\x69\xb0\x83\x40\x96\xa9\x9f\x28\xb5\x98\x60\x5c\xcf\xe7\x6f\x65\xf1\x9e\x70\xa6\xea\xb2\xab\xc2\xeb\x06\xc2\xfe\x50\xf9\x72\x79\xb5\x26\x82\xdc\x81\xf3\x01\x6e\x57\xd3\x09\x9e\x1d\x7f\x78\xb9\x24\x2b\x09\x4a\xee\x49\xfd\x46\x0f\x4a\x09\xbe\x12\xf7\x93\xac\x5f\x7f\x24\xa4\x96\x1a\x86\xd5\x9f\xb8\x4f\x88\xf8\xfd\xb8\xa2\xd6\x6e\x21\xc1\x6e\xc3\xb9\xea\xfb\xce\x62\x13\x20\xfe\xc5\xd0\x67\xe4\xb3\xf2\x04\xbc\x0c\x77\xdb\xcd\x19\x35\xc0\x42\xd7\xee\x2b\x01\x8e\x89\xb7\x19\x88\x0b\x56\x16\x70\xed\xdb\x46\xf8\x63\x7e\xcf\xc5\xf5\x88\xc1\xf8\x2b\x7c\x80\x35\x26\x3e\x9f\xa0\xab\x3b\xf9\xff\xe3\xe3\x4e\x83\x72\x7e\xff\xff\xff\x6b\x43\x92\x68\x4f\x25\x6d\x52\x59\x5a\x51\x38\x9f\x6d\xda\x44\xab\xa4\x24\xda\x94\xd0\xa2\x4d\xd6\x14\x6d\xb4\x68\x53\x21\xa5\x28\x5b\x51\x49\xa5\xce\xd2\x42\x0a\x29\x42\x42\x84\x54\x84\xa2\x1e\x4a\xfa\x4f\x66\x7e\x1f\xe7\xcc\xff\x3d\xdf\x6b\xb7\xb9\x3f\x8f\x66\x6a\x3a\x5f\xaf\xe3\x38\xae\x9c\x89\x7d\x85\x42\x84\x8d\xc7\x1d\xda\xd2\x8a\xb3\x98\x70\x9c\x50\x76\x3e\x5a\x1f\x49\x08\x6e\xfd\xe6\xb1\xc9\xe2\x0a\x13\xb3\x65\x02\x7f\xfc\x9c\x61\x45\x48\x35\xdc\x2d\x50\x11\xf9\x96\x81\xd5\xb3\xa2\xa6\xce\x33\x11\x21\xa0\xe1\xce\x8e\xe0\x47\x63\x8c\x7f\xd8\xd7\xfb\xe8\x75\xb3\xcc\x36\xc2\xcc\x88\x19\xa5\x7d\x15\x42\x84\x6e\xa5\xf5\xf7\x43\xc2\xcf\x32\x51\x2a\x52\x2c\x54\xf4\xea\x30\x21\x70\xfe\xf8\xc7\x4d\x36\xae\x84\xe6\xfa\xbd\xb1\x1f\x62\xee\x13\xde\xcb\x9c\xf1\x1d\xec\x6f\x23\x18\x7b\x07\x14\x94\xb5\x3c\x26\xdc\xd9\xe9\xd0\x6a\xf5\xe5\x3a\x41\x24\x3c\xc2\xec\x71\x79\x37\xe1\xc4\xbd\xbd\x3b\xee\x7c\x2b\x25\xac\xe1\x34\x7a\xc8\x6d\x94\x44\x48\xbc\xf2\xa4\x7f\xd1\x58\x36\x13\x31\x37\xf2\x52\x9e\x5f\x29\x63\x82\xd3\xd8\xde\x77\xe6\xeb\x40\x26\x4c\x87\xf9\xf2\xec\xfb\x0a\x99\x68\x4a\x3d\xcc\x5f\xd4\x14\x46\x10\x0d\x8e\x7d\x1e\xb6\xb6\x9a\x70\xc6\xc9\xb7\x39\xc8\xc9\x95\x90\x66\xc3\x63\x98\xf9\x6c\x0e\x61\x6d\xd8\x89\x83\xc9\x1e\x2f\x09\x3d\x41\xe1\xa6\x37\x9e\x74\x4c\x1e\xa3\x5a\x96\x49\x73\xbf\xfd\x7f\x5f\x74\xd0\x4b\x10\x3d\xbd\x37\xe5\x49\xe8\x4b\xc2\xd3\xc2\xc8\xb9\xa6\xc1\x45\x04\x69\xfd\xcf\x0f\x16\xbf\x3e\xc9\xc4\x7a\xce\x9e\xa0\xd5\xb3\xc2\x08\xbd\x07\x38\x86\x7f\x85\x9e\x24\xe8\xa5\xed\x44\xee\x9d\xd3\x84\x9c\xd4\xcb\x03\xb3\x78\x52\x98\x70\x88\x2a\x3a\x90\x90\x1c\x48\x38\xe4\xf9\x7b\x55\x12\xe7\x79\xc2\x42\xc6\xa6\xa1\x2f\xeb\x0e\x13\x8a\x1f\x3d\x90\x5d\x21\xb3\x85\x70\xaf\xc1\x54\xed\xc5\xb5\x7e\x42\x80\xc5\x70\xf5\xb3\x49\x14\x6d\x79\xc8\x68\x9b\xc4\x77\xb6\x9f\x7d\x7f\x47\xa9\xf3\x0f\x5e\xdc\xab\xa8\x4c\x18\x7a\xeb\x5e\xb5\xe4\x59\x18\xc1\xfb\xd5\x1e\x2e\xdd\x28\x3f\x42\x00\xff\x89\xd5\xe3\x1d\x21\x84\xb7\x86\x73\x07\x9f\x8b\xef\x21\xf4\xe6\x0d\x9c\xb7\x35\xb4\x20\x5c\xed\x5d\xaa\xf9\xcb\x73\x03\x13\xd2\xca\x05\x66\x8f\x57\xe8\xd2\x3f\x24\xb0\x09\xa5\xfa\x4a\x36\x32\xb1\x40\x76\x55\xfe\x6f\x99\x46\x42\xd6\x99\xe3\x7c\xe9\x39\x1e\x84\x38\x15\x27\x17\x31\x0b\x1f\x42\xcc\xe1\xdf\xdf\x66\xed\x55\x27\x18\x7e\x8d\xfc\x59\xe4\xa9\x48\xd8\xfb\x88\x66\x29\xa5\x84\x13\xf6\xf3\x45\x19\xeb\xb0\x2d\x22\xbc\xd5\xd6\x37\xe0\x77\xd9\x43\x78\xc5\x25\x5b\xeb\x17\xe9\x49\xd8\x76\x2f\xf2\x47\xe5\x9d\xd3\x4c\xac\x6e\x8b\x48\x56\x30\x11\x27\xbc\x7c\x73\x20\x36\x7a\x9a\x23\xe1\x42\xe9\xd1\x9f\x2d\x6d\xae\x84\x4a\x49\x9b\x19\xe3\x3d\x73\x08\x56\xb1\xa6\xbe\x96\xc7\x37\x12\xea\x87\x7b\x53\xdf\x04\x14\x13\xac\xb2\xf5\xa6\x99\x1d\x68\x23\x38\x97\x4a\x48\xcc\xb4\x6a\x21\x9c\xbf\x3b\xeb\xf8\x8b\xa7\xdb\x09\xd5\x2a\xf3\x16\x28\xb5\xad\x22\x70\xcd\xd8\xb8\x2c\x45\x39\x94\x89\xef\xdb\xce\x07\x8c\xa5\x66\x11\xd4\x23\xbe\x8e\xb8\x2e\xba\x4e\x50\x52\xeb\x56\xbf\x29\x7f\x9d\x30\x3a\x6d\x74\xef\xa3\x99\x67\x98\x60\x8b\xae\xcc\x2f\xd7\xb9\x4e\x68\xd7\x0f\x57\xd2\xe7\x32\x21\x24\x08\x27\xf7\xed\x57\x4f\x22\x58\xc5\x47\x35\xf8\x1c\xb7\x21\x64\xcb\x0f\x87\xde\xf6\xf3\x65\xfe\x2b\x2f\x3a\xfb\xfa\x37\xdb\x4d\x27\x24\x1e\xf1\xe3\x61\xe7\xaf\x26\x78\x29\x24\x1b\x1f\xcb\xa8\x61\xe2\x69\x4d\x8a\x1b\xe7\xd7\x77\x4c\xe4\x0b\x5e\x93\xce\xbd\x57\x4b\xe8\x4e\x88\x59\x11\xcc\x9e\xc1\x44\xaa\xe8\x45\x91\x1b\x27\x0e\x10\xca\x9f\xae\xe4\xfc\x6e\x79\x80\xa0\x28\xf8\x29\xbb\xa3\xf1\x38\xe1\x68\xf1\xcc\xe8\xfc\xcc\xfd\x84\xa9\xb6\xce\x82\xca\x37\x0e\x12\x8e\xf6\x38\x75\x5e\x52\xae\x61\x62\xbd\xae\xc2\xa5\x7e\x34\x33\x91\x10\x38\x2c\xc9\xd1\xea\x41\x38\xf6\xb1\xe1\x7b\xf6\xb9\x7b\x4c\x38\x0a\x0c\x2c\x6f\x15\xb5\x66\x42\xef\xfe\xfa\xb7\xc3\x7b\xb2\x09\x5b\xef\x07\x95\xed\x9d\xb9\x87\x30\xf2\xe3\xf2\x58\xdb\x24\x0a\xb6\x5a\x3d\xbc\xd5\x5b\x4e\xe0\x40\x77\xd6\x0c\xc1\x1a\xe6\xbf\xd1\xae\xe0\x27\x76\x46\x46\xfb\x08\xcd\x81\xa3\xa7\xd6\x2e\x8d\x21\xfc\x54\x13\xc9\x9f\x6f\xbe\x8f\x65\xc4\x98\xab\xac\x79\x3c\xd6\x97\xc0\x35\x6f\x97\xc8\xd2\x70\x5f\x02\xdb\xaf\xc0\xef\x3d\xdd\x32\x84\xf7\x2b\x8f\x96\xae\x4c\x95\x23\x38\xec\x9a\x16\xff\xc6\xf1\x0b\x03\x71\x66\x0f\x96\x8b\x5d\x8e\x26\x7c\x5f\x39\xef\x95\x82\x53\x0d\x13\xdb\x2f\x59\x08\x55\xde\x35\x20\x64\x9f\x0f\x75\x38\x9c\xd6\x4b\xd0\x73\x63\x16\xad\xbc\xdf\x48\xe0\xb2\xf4\xfc\x1d\x5a\x71\x96\x89\xf3\xe2\x97\x18\xf1\xd2\x37\x09\x97\xfb\xbe\x58\x98\x1b\x3c\x25\x08\xd9\xcd\xe9\x9e\x78\xf9\x98\xb0\xcd\x70\x8d\xa6\x7c\x41\x14\xa1\x71\x2d\x9b\x52\xb4\xed\x53\x02\xfb\xf6\xb6\xe0\xeb\x5d\xe7\x09\xef\x0c\xdf\x3b\x3b\x0d\x86\x32\xa1\x22\x25\x3e\xd6\x52\x55\x43\x08\xf9\xe2\x1f\xe4\xb1\xba\x89\x10\x21\x7b\x2e\x7e\xfb\x24\x6e\x27\x05\x38\xff\x85\xb8\xee\xcf\xcf\x7f\xe1\x76\x7f\xf1\x8f\xfc\x66\x37\x82\x93\xe9\x5d\x45\xd1\xe8\xec\xc9\xfb\xc1\x17\xb9\xde\x53\x1b\x08\x7e\xb9\xd3\x16\x1c\x53\x51\x23\x74\x3d\xde\xb1\x3e\xe7\x41\x0e\xc1\x6b\xd1\xbc\xc7\x61\x83\x13\x0c\xa4\xed\x9a\x51\x9d\x1d\xdb\x56\x85\xa8\xef\xca\x1e\xf6\x7e\x99\x84\xb3\x76\x9d\x05\x2f\x46\x96\xb3\xc0\xad\xd1\xba\x54\xe1\x97\x1d\xe1\xe2\xaa\x53\x52\x6d\x27\x65\x59\x50\x17\x59\x28\x32\xb8\x49\x96\xc0\xf5\xce\xf3\x59\xcb\xfd\xd5\x84\xd1\xea\xb8\xfb\xfb\x22\xc4\x09\xbf\x9b\x4e\xcd\x7a\xa7\xbb\x8b\x10\x2e\xbc\x32\x46\xc5\x71\x0f\x4b\x99\xe9\xc7\xef\x77\xff\x80\x16\x61\xeb\x4d\x8b\xcb\xbd\xeb\xb4\x08\xf5\xe9\xfd\x4d\x27\xb6\x2b\xb1\x40\x30\x7a\x23\xe7\x32\xe6\xeb\x2a\x8c\x2f\x8d\x50\x8a\x5f\xcf\x20\x5c\xaf\xe1\x98\xea\x2a\x14\x48\x98\xc9\x37\xa6\xf0\xec\x72\x16\xe1\xbb\x70\xd7\x81\xfe\xa7\x67\x08\x6d\x77\x0a\x8b\x2e\x77\x05\x11\x14\x6d\x1e\x48\xab\xc9\x9a\x13\xb2\xb9\x74\x96\xd6\x65\x9a\x13\x6e\x5d\x0b\xa9\xb3\x12\x74\x21\x68\xcc\x38\xf2\xd1\xed\x84\x39\x41\xe3\xd2\x98\x85\xa3\xf2\x1e\xc2\xea\x93\xfb\xeb\x5a\x8b\x5d\x09\xf6\x89\xa2\xa1\x56\x26\x2b\x09\x6d\x5b\x25\x5f\x09\x6e\xda\x4a\xc8\xfd\x69\x3c\xf0\x65\xc8\x97\x30\x8f\xcd\x6c\x54\xe2\xba\x25\xe1\xdb\x6c\x53\x35\x4b\x35\x03\xc2\x40\x57\x66\xe0\xd5\xaf\xc7\x08\x9d\x91\x9a\xbf\x8f\x5b\x04\x12\x16\xac\x93\x91\x54\x4a\x76\x20\x5c\x31\xce\x99\x5d\x1b\x17\x42\xe0\x0f\xe4\x75\xc4\x3e\x36\x26\xf6\x35\x3b\x3f\xdb\x2a\x6e\x4d\xe0\x6d\xfc\xfa\xf3\x67\xaa\x27\x13\x9d\xcc\x27\xa1\xd3\xb7\xfd\x60\xa0\xa2\xea\xbc\xef\xe0\x61\x7d\xfa\x87\x5c\x2e\x91\xe2\x9a\x00\x31\xc2\x02\xeb\x1c\x76\xae\xed\x37\x09\x5e\x4a\x59\x0b\xc5\xec\xd8\x08\xb3\x13\xb8\xcc\x53\x3f\x58\xb0\xc0\x80\xbf\xa4\xae\x87\x2b\xaf\x0a\x2a\x45\x51\xf3\xc7\x2a\xd6\x11\x46\xee\xd7\x47\x5c\x48\xdf\x4a\xd8\x9f\x6d\x2d\x9b\xfc\x73\x2e\xc1\xd3\xba\x20\x6a\x99\xdb\x00\xf3\x5f\xb1\xd2\x29\x5f\x32\x37\x66\x29\x0b\x0a\x0a\xa7\xeb\x1b\xf5\x04\x31\xe1\x3f\xc4\x3e\x63\x91\xb2\x1f\xc1\x61\x4f\xd5\x0f\xfe\xf3\xbb\x08\xd5\x81\x35\x56\xa7\x46\xbb\xaa\x60\xbe\xb9\xf9\x71\x62\x04\x3f\x01\xbe\x53\x6c\xcf\x9f\x74\x64\xc1\xb6\x69\x66\x7f\x3c\x44\xfb\x19\x10\x38\xaa\xcc\x39\x63\xfb\x52\x02\x9f\xe9\xd9\x17\xed\xe1\x56\x2c\x68\xbd\xea\x39\x60\x9c\xad\x42\x78\xaa\xd4\x7d\x6e\x47\xaf\x33\x81\x4f\x36\x64\x1e\xe7\x45\x5d\xc2\x83\xfb\x79\x9a\xd3\xaf\x28\x13\x76\xfb\x68\xc9\xd9\x71\x2e\x20\x5c\x4a\xef\xd9\x9f\xc0\x99\xcd\xc4\xea\x2b\xf1\x23\xfa\xb6\x3a\x84\x57\x3a\xf9\x17\xec\xac\xa7\x10\x56\xc9\x36\xf9\x05\x16\xcc\x21\xb0\xbd\x6a\xd8\x28\xd6\x6b\x42\xd8\xd5\x50\x43\x9b\xfe\xbc\x67\x60\x9b\x12\x07\x4f\x75\xcf\x28\x03\xe3\xcb\x83\x5e\x49\x0d\xe8\x13\x4a\xab\x72\xec\xf9\xea\x67\x11\xee\x68\xeb\x5c\xfd\xf3\x88\x8b\xf0\x69\x99\x82\xf2\xfc\xa9\xcb\x09\x59\x5f\x76\x59\x64\x5d\x09\x23\x04\x7d\x11\x1b\x7a\x34\x34\x9f\xc0\x7f\x43\xb0\x84\xa7\x5b\x88\x70\xa5\x6c\x51\xf7\x84\xc4\x45\x26\x6a\x93\x97\xbc\x8e\xdc\xc0\x4f\xc8\xcc\xe8\xa3\x39\x95\x7e\x84\xdd\x02\x27\x8f\x28\x7c\x52\x27\x7c\x4a\x3f\x34\x43\x3c\xcc\x99\x89\xd9\xbc\xb3\x7d\xcf\xf1\xee\x24\xe4\xe7\xe6\xfb\xf6\xb5\x6e\x24\x5c\xca\x5c\xd1\xa7\xfd\x52\x98\x20\xdb\xec\x15\x10\xb4\x5c\x8d\xd0\x17\xb9\x5e\x3b\xd1\xca\x85\x10\x74\xf5\xf7\xcf\x6f\xc1\xc3\x0c\x7c\xb9\x21\xb6\xed\x98\xd5\x54\x02\xef\xee\x4b\x85\xd5\x9b\xfd\x99\x88\x52\xd8\x78\x2f\x6c\xb3\x03\xfd\x83\xda\xaf\xeb\xf3\x87\x5f\x79\xb3\x14\x8b\x4d\x4e\x6e\x1d\x32\xb5\x84\xb4\x4f\x11\xbf\xeb\x16\xd7\x12\x9c\x1e\xdf\x7c\x59\x19\xd8\xca\x52\x0a\x62\x0e\x0f\x3c\x76\xae\x63\x22\x77\x5e\x91\xd0\xdf\x72\x69\x74\x6f\x71\xc4\xdd\xdb\x84\x1f\xfa\x23\xf6\x6a\xda\x91\x84\x23\xdb\xcc\x17\xff\x3c\xd1\xc8\x52\xfe\x87\xe4\xe8\x0f\x7c\xfe\x1b\xf7\x11\xca\xf7\xdf\x7d\x9a\xbb\x31\x86\xa0\x98\x37\xcd\xf8\x4e\x83\x23\x61\xa3\xc1\xe6\xb0\xc1\x83\x86\x84\xbb\x7d\x61\x0b\x6e\xf8\xee\x21\x64\x5e\x08\xdb\x38\x11\x2c\x4d\x18\x65\xb4\x8f\x77\x45\xb6\x30\xf0\x72\xad\xf0\x61\x03\x77\x1b\xc2\xb6\x11\x23\xa3\xa2\xf0\x39\x2c\xb8\xb6\xc2\x7f\xf6\xec\x53\x2b\x58\xca\x91\x1f\xbd\x87\x12\xff\xc4\x12\xc2\x13\xf7\xf5\x3f\x1f\x9b\x60\x60\x93\x6d\x7e\x6e\x87\x44\x18\x41\x98\x5f\xb7\x29\x6b\xd8\x8d\x10\xc8\x57\x19\x31\x8b\xa3\x96\x10\xfd\x3d\xa1\xb0\x2a\xb1\x9c\x50\xe7\x67\x6b\xab\xf2\x7b\x07\xa1\xce\xa3\xb5\x61\xdf\x4d\x4d\x42\xba\xe6\x21\x9b\x1f\xe7\x8f\x30\x91\xb0\x3e\x33\xce\x4e\x78\x07\xe1\x6a\x5a\x5f\x7a\xc6\x8a\x40\x02\x53\xd3\xad\x6b\x48\x67\x06\x21\x2a\xb7\xa9\xa5\x5a\x34\x94\xd0\xfe\x3b\xef\x5c\x55\x91\x09\xa1\x35\xab\x7d\xbc\xf6\xbe\x28\xa1\xf7\x4b\xa6\xa4\xc7\xe5\xfd\x04\xc5\xf8\x1b\x47\xa2\x9d\x96\x12\x44\x8d\xa5\xd2\x9a\xa4\xe6\x13\x4a\xea\xf8\x0d\x6b\x0b\x1c\x08\x91\xba\x71\x85\x51\x57\x12\x08\xb2\x3f\x38\xdd\x2b\xbf\x57\x13\x9c\x65\x27\xd8\x27\x2e\x2b\x10\x74\x74\xb5\xf7\x16\x29\x87\xb0\x80\x3b\x48\xff\xc2\xc9\xab\x87\x09\xad\x2d\xe7\x04\xca\x2f\x1f\x66\xe2\x75\x04\xbb\x7d\xef\xc7\x15\x84\x9e\xef\xe9\x02\x09\xae\x6a\x84\x9a\x2a\x9d\xf2\xd8\xeb\xf3\x08\xb5\x4b\x4a\x35\x7e\xf6\x19\x10\x4e\xf4\xda\xc6\xf8\x66\x2a\x11\x74\x4e\xfb\x5c\x57\xdf\xb5\x8e\x50\xf0\x45\xf2\xe5\xbe\x1f\xaa\x84\x2c\x49\xbf\x2f\x52\x0b\x66\x11\xc6\xab\xb6\x8c\x6d\x96\xff\xc8\xc0\x55\x1f\x91\xea\x34\x03\x43\x82\xcd\x0f\xdf\xfc\xcd\x0d\x05\x84\x03\x73\x52\xd3\xbe\x76\xca\x10\xbe\x4e\x63\x17\x53\x3f\x60\x4c\x50\x7b\x28\x5a\xd3\x6e\xcd\x64\xc2\xc7\xa3\x5a\xc4\x6e\x6b\x00\xc1\xa2\xee\xdd\x43\x7b\x1e\x4b\xc2\xb0\x42\x43\x2c\xcc\xf6\x10\xb2\x3f\xce\xaa\xdd\xbf\x3b\x98\x89\x1f\x76\xfa\x21\x3b\xb8\x4d\x09\x56\xd2\x67\x77\xdc\x98\xa5\x4a\x30\xf9\xbd\xf8\x5c\xd0\x81\x5b\x4c\x9c\xf0\xd5\xf9\xb0\x57\x5d\x80\x60\x7a\xf2\x89\xc6\x9c\xc4\xf5\x04\x97\x3f\xdd\xbc\xad\x39\x7a\x84\xe5\xab\xd9\x37\xc4\xac\x95\x20\xd4\x3d\x71\x95\xe4\xb1\x37\x64\xe2\xfd\x1a\xdd\xe1\xcb\x7e\xd9\x84\xf9\x56\x57\x6c\xfe\xe2\xf4\x3c\xfd\x04\x01\x13\x29\x82\x9c\xa1\xd2\x86\x81\xc7\xf5\x04\x89\xcf\xce\x09\x07\xd0\x4e\xa8\x62\x9b\xc3\x76\xf9\x75\x29\xe1\xd9\x03\x25\x8e\xa0\x97\xa5\x84\xd4\x29\xfd\x55\xf1\xcf\x4b\x09\xc5\x22\x46\x36\xec\xc1\xd7\x09\x6b\x8e\x6c\xba\x90\x1a\xf7\x86\x90\xb4\xb8\xcb\xec\xbd\xf2\x2b\x82\x9a\x6a\x41\xe0\xb0\xe9\x28\x41\x6a\x45\x55\xe2\xab\x49\x28\x8d\x2d\x9c\x48\x2d\xbf\x43\x78\x39\x78\xb8\x7d\xe4\xed\x0e\x26\x7c\x9e\x73\x07\x3c\xba\x96\x4b\x88\xd0\x1b\x8a\x78\x3c\x89\x05\x11\x23\xe7\x70\x76\x15\x61\x62\xcb\x4d\xa3\xe4\x05\x1f\xaa\xd0\xff\x75\xe5\xc7\xc5\x5f\xee\x13\x6c\x5b\x3f\x46\xfd\x85\x95\x81\xf6\xaf\xf4\x91\x6a\x96\x12\x5d\x33\x63\xb1\xf2\x85\x4a\x82\xdd\xfd\x1f\xfb\x46\x76\x54\x12\xa4\xde\x38\x45\xfd\x2d\x39\x3e\x4e\xad\xd1\x15\xe5\x84\x38\x1f\xe1\x90\xdf\x09\xf1\x04\xe7\x27\xa7\x3b\x4d\x84\x2d\x08\x3e\xe3\x65\x4a\xc3\x39\x43\x84\x38\x75\xc3\x83\xc3\x17\x7b\x09\xa1\x97\x07\xb6\xbc\xf3\xfa\x4e\xd8\x99\x12\x7c\x6d\xcf\xbe\x8f\x04\xde\xcf\x2e\x83\x48\x1f\x20\x48\x5c\xfb\x9d\x7f\x56\x35\x9a\x60\x23\x65\x90\x2a\xb7\x30\x9c\x60\x76\x88\xa3\xa1\x45\xc2\x99\xd0\x2a\xd7\x22\x20\x1c\x77\x80\x70\x21\xee\x72\xb7\xc1\x9a\x23\x84\xe7\x2b\xd8\xf3\x83\x56\xdf\x26\xe8\x7c\x63\x44\x9e\x36\x79\x41\x70\xce\x3e\xb5\x4e\xf4\xcb\x4f\x82\x56\x4e\xd3\xb5\xba\xe7\x77\x09\x25\x82\xcf\x4a\x3f\x7c\xab\x62\x42\xca\x75\xba\xb5\x60\x4a\x21\xc1\x3a\x28\xef\x1e\x5d\xbf\x48\x08\x3d\x7c\xc6\x43\xfa\xd8\x2d\x02\xdf\x60\xb3\xf1\x9e\x83\xd5\x84\x8f\xfb\xe5\x32\x1e\x9b\x35\x12\xf6\x57\xb8\xbb\xc7\x48\x95\x13\xbc\x17\x1e\x6a\x35\xea\xb8\x46\xe8\x98\xb9\x75\x61\x9e\x42\x0b\xc1\x7c\xed\xd0\x32\x77\xac\x20\x94\x1f\x1d\x93\x7f\x9c\xa6\x48\x98\xa8\xe9\x6f\x1d\x76\x54\x25\x3c\x2a\x90\xaa\x1d\x52\x76\x26\x84\x1c\x08\x2f\x34\xfc\xe5\x40\x38\xa5\xdc\x6d\xae\xb2\xd0\x82\xd0\x67\xe1\x5f\xae\x6d\x75\x8b\x09\xc7\xd4\x9e\xc5\x07\xcf\x9e\x22\xf8\x70\xfe\x3a\xb0\x3b\x2c\x91\x10\xfc\x2b\x67\x93\x84\xa8\x03\x13\x89\x7c\xf7\x19\x6e\xd9\xc2\x84\x85\x06\x97\x2d\xf8\x4f\x6f\x23\x2c\x3b\x71\x60\xdd\x12\x35\x09\x42\x3c\xf7\x1b\xfd\xe1\xc5\x9d\x84\x8c\xb9\xee\xa2\x91\x72\xa7\x09\x67\xab\xfd\xbf\x2e\x92\xab\x22\xcc\xc9\x0e\xec\x3e\xf6\xe8\x1e\x61\xfb\x1c\xf1\x28\x23\xde\x2b\x84\x17\x8b\xc4\x5f\x77\x3c\x99\x47\x08\x6b\x9f\x1e\xce\xbd\x66\x29\xa1\xcf\x4a\xf5\x42\xe3\xf2\x57\x0c\x2c\x1f\x5d\xb1\x60\x9e\xfa\x0f\x16\xc8\x44\x1c\x9f\x88\xca\x15\x24\xc8\xef\x37\x92\x93\x70\x59\x45\xb0\x3d\x56\xf0\xe8\x4f\xae\x35\xc1\x5b\x9f\xe7\xc2\xd0\xb7\x26\x26\x22\x4f\x2c\x17\x2c\x59\xbb\x80\x90\xa9\xb8\xe8\xcf\x94\x35\x49\x04\xe9\xf5\x2f\xe7\x76\xf0\x4e\x30\x10\x68\x2c\xf7\x65\xdd\x71\x2d\xc2\x82\x2d\x26\x31\x57\xf8\x86\x18\xd0\xab\xaf\xd6\x8a\x64\xb7\x67\xa2\xcb\x3e\x64\x34\xff\xb4\x2e\x21\xff\xf3\xbd\x5b\x85\x5c\x4c\x26\x3e\x67\xef\xf1\xf8\xbd\xe8\x12\xc1\x9c\xd3\xcf\xda\x6e\x7b\x03\x41\xa8\x6f\x83\x43\xdf\x89\x46\x26\x2c\xfb\x73\xe6\xcd\x9d\x68\x27\x84\x56\xdf\xab\xfb\xbb\x46\x9c\xf3\x89\xd0\x5e\x1f\x4b\x42\xda\x84\xcf\x52\x63\x2f\x6f\x16\x7c\x13\x7a\x19\x50\x51\x68\x41\xb0\xff\xe3\xc7\xeb\x21\xe5\xcc\x32\x4a\xf9\x65\x7a\x20\xca\x33\x88\x90\x3f\xea\xe2\x54\x3e\x7e\x8c\x10\x58\x9a\xf4\x79\xa9\x49\x30\xcb\xe8\x7f\xa5\xda\xc7\x56\x43\x30\xc1\x8e\x10\x2d\xfa\xb4\xc1\x22\x2e\x86\xf0\xc4\x62\x47\xd2\x7b\x4e\x65\x42\x55\xec\x3d\x83\x7d\x81\x59\x84\x79\x6a\x3e\xd7\xb3\xd6\x8a\x12\x76\x89\xfe\x59\xc5\xa3\xfa\x89\x01\x23\xf1\x84\xb0\x30\x25\x1f\xc2\x05\xd3\x18\xf1\x57\x3b\x7c\x08\x3f\xd5\x2f\x29\xaa\x25\x3a\x12\x66\xce\xdc\xc5\xf7\xc9\x58\x9b\x30\x38\xa6\xe2\x31\xb1\xbd\x85\x89\xa3\x65\xcf\x9e\x05\xa4\x4c\x5e\x97\xce\xdd\x0d\xca\x75\xe9\x20\x08\xcb\xe4\x6e\x8b\x97\x6c\x25\xb8\xa0\x8d\xdf\x64\xc3\x75\xc2\x8b\x50\x81\x23\x8a\x2b\xd7\x13\x2a\x9c\xaf\x5d\x3e\xd9\x90\x48\x60\x4c\x93\x6e\xd7\xb6\x9b\x42\x68\x5b\x6b\x39\xc7\x41\x7b\xf2\xef\x9a\x08\xe9\x1e\x3c\x2e\x47\xd0\x8a\x75\x89\x9d\x6a\x0e\x06\x76\x6c\x16\x5e\x6a\x7c\x65\x2e\x61\x6a\x74\xc4\xd5\x57\x7b\x42\x09\x99\xd6\x21\x42\x5a\x15\x51\x84\xe9\xba\xa2\x42\x9a\xe6\x75\x84\x6b\x6d\xdb\x96\xd0\xc5\xcb\x84\x86\x02\x9e\xf3\x89\x31\xba\x84\x42\xb3\x1e\x75\xf1\x2a\x6e\x42\xd1\xec\xd5\xf6\xf9\xd6\x4f\x18\xd8\x70\x7a\x59\xaf\x80\x1b\x3f\x41\x5d\xef\xdd\xa7\x87\xb3\xb2\xe8\x97\xb6\x88\x15\xfb\x90\x2e\xa1\xe1\x96\x4b\xa0\x8d\xf9\x15\x82\x6a\xc6\xac\xb9\x7f\x51\xd2\xce\x3d\xb3\x77\x7b\x08\xc1\x27\xf9\x9d\x1c\x47\xc4\x36\x82\x46\xc7\x6c\xf1\xb6\x19\x77\x09\x83\x72\x99\x33\xaa\xbe\xb5\x10\x84\xda\xe4\x36\x3f\x9d\x2c\xc7\xea\x1e\xea\x8e\x3c\x2d\x26\xb8\x84\xca\xcd\x69\xdc\x29\x43\xd8\x14\xe2\xef\x70\x70\xbe\x25\x21\x65\x6e\xeb\xf9\xd7\x73\x4f\x30\xd1\x3a\x7e\x46\x69\xdf\x2f\x2e\xc2\xba\x72\x4b\xe5\xa5\x0d\x53\x58\xb0\x37\xa0\xd7\x54\x56\xef\x02\xe1\x8e\xe4\x7b\x8e\xaa\xec\x39\x84\xf8\x2b\x82\xcd\x92\xb9\xe9\x84\x78\x8b\x58\x1b\xc1\xad\xf3\x09\xb6\xdd\x6b\xdf\x38\x8b\x84\x11\x9e\xa6\x7a\x6a\xba\x7f\x59\x43\x10\xf4\x57\x3b\xe9\x22\xa6\x48\xf8\x91\x79\x74\xb3\xbf\x9a\x0f\xe1\x7d\x2e\x47\xcf\xf1\xc5\xdb\x09\x0b\x6d\xd7\xe7\xdd\xba\xba\x96\x10\xbf\x79\xe4\xc7\x8b\x07\xc3\x0c\x88\x16\x8f\x34\xbf\x9e\x5d\x48\x68\xdb\x1b\x75\x73\xeb\x89\x73\x04\x35\xd9\x2a\xcf\xd1\x1d\x36\x04\xf1\xa6\x30\x8b\xe3\xaf\x4e\x13\x2e\xae\xfb\x76\xe7\x57\xae\x2e\x21\xb1\x43\x50\xae\xc5\x54\x83\x10\x21\x5c\xf4\xfa\xea\xae\x35\x04\x9b\x6f\x53\xc5\x65\xe5\x02\x09\xb5\xd9\xdf\x4e\x26\x5f\x48\x63\x62\x36\x47\xde\xb9\x82\xe7\x56\x84\xba\x5b\x7c\xdc\xe7\xb6\x71\x11\x12\x64\x64\x74\x9e\x99\x1f\x25\x0c\xea\x4d\x50\x40\xb6\x1b\x21\x3a\x34\x78\xa6\xda\x6a\x57\x82\xf0\xa8\x6a\xf7\x97\x4e\x77\x82\xdd\xa6\x92\xa3\xbb\x5e\xe8\x11\x26\xa4\x3f\x38\xfb\x61\x90\x01\x6b\xbb\xc1\x5b\x4f\x74\xe4\x09\xaa\x9e\x37\xda\xca\x1c\x25\x08\x49\x85\x19\x7c\xfd\x1b\xba\x18\x38\x9c\x67\x9b\x28\x70\xee\x0e\x13\xa9\x9f\x16\xcb\xcf\xfd\xa5\x49\x30\xe4\x34\x89\x11\xe5\x77\x24\xbc\xd3\x12\xe0\x5d\x76\xd2\x84\x60\x2c\x3b\x4e\xaf\x32\x8d\x08\x5a\xa7\xf9\x33\x1e\x89\x9a\x13\xd6\x3e\x5d\x98\xdd\x9c\x6b\x4c\x98\xd3\x9b\xdd\xe9\x20\xa6\x44\x48\x7b\xf6\xba\x77\x9d\x4c\x18\x13\xa1\xc5\x6f\x7f\x39\xd5\x9d\x26\xd4\xf2\xa6\xef\x2e\x9b\x1e\x43\xe0\xdb\xbf\xeb\xd8\xfe\x34\x0f\xc2\x40\x7a\x8a\x7a\x47\x9b\x3c\xa1\xf8\xb7\xcf\xc2\xbe\x3a\x21\x42\xb3\xbd\x96\xfb\x97\xee\xd4\xc9\x13\x44\x97\xd0\xae\x45\x97\x09\x6c\x55\x37\x5b\xbd\x26\x71\xc8\x45\xe3\xb2\xe7\x26\x4f\x16\x64\x1c\x72\x9b\x6d\xfd\xde\x96\xd0\xef\xed\x6f\x6d\xd8\x96\xcf\xfc\x37\x92\xee\xce\x36\x15\xff\x1c\x43\x48\xcb\xde\x60\x2c\xd5\x17\x43\xb0\xb5\x09\x96\xf8\x5b\x24\x57\x2f\xca\x5c\xee\x9f\x42\xa8\x96\xe4\x18\x17\x7c\x7e\x98\xa0\x97\x5a\x24\x9f\xaa\x9f\x42\x50\x9a\xb2\x94\xb3\x98\x71\x86\x20\xab\xf8\x96\x5d\x64\xef\x0d\x82\xd9\x96\x0a\xf6\x4f\x15\x65\x4c\x6c\xcf\x48\x58\x85\x29\xd5\x04\x7d\xc5\xba\x25\xa6\x2b\x6c\x08\x21\x7a\x25\x3d\xc6\xbd\x3a\x84\x5b\x7d\x49\x39\x1c\x75\xa7\x08\x2a\xf7\x0d\xd6\xaf\x0e\xbb\xc0\xc4\x0a\x37\xee\x12\x6d\x2d\x37\xc2\xe2\x21\xc9\x87\x69\x1a\x8e\x84\x38\x11\xb7\xae\xd2\xc8\x19\x84\x96\x0f\xe6\x6b\x87\xf6\xda\x13\xc4\xfc\x1e\x1d\x38\xe4\xa1\x4a\xc8\x0b\xd8\xcd\x79\x86\x6b\x3e\x61\xff\x91\xe6\xce\x34\xae\x05\x84\x9e\xad\xae\xc1\x49\xa5\x09\x4c\x48\x7a\x47\x3c\x2d\x2c\xb8\x44\x70\x12\x8e\xac\x2e\x98\x84\x50\xe5\x5e\xe5\xda\xe2\x55\x84\x35\x23\x31\x2a\x6f\x2d\xe3\x09\xfe\x09\xd6\x5d\x9e\x07\x32\x99\x10\xe3\xcd\xea\xec\x73\x0f\x26\x08\x16\x8c\xeb\x5d\xd9\xa7\x4f\xb0\x12\x77\xf1\xdb\xaf\x33\x87\x7e\x1d\x37\xe5\x4d\xcc\xfe\xcc\xc0\xec\x4b\x77\x63\x9f\xb2\xf1\x11\xfe\xe4\x8f\xa4\x7d\x38\xcb\x4e\x38\xa3\x74\xf8\x96\x5f\xea\x0c\xc2\x02\xdb\x4d\xdc\x96\xef\x25\x09\xab\xca\xdb\xac\x0e\xf8\xa8\x13\xe4\xfa\xa5\x6f\x0a\x4b\x1c\x65\xc1\xec\xf6\x4f\x9d\x5a\xf2\x4b\x09\x8b\xd3\x1d\x32\xea\x3b\xcc\x08\xd1\x3f\x15\xd8\x74\x19\x83\x0c\x2c\x2a\x98\xbd\x5b\xd1\xf5\x01\xe1\x87\xef\xb1\xc0\xb5\xca\xb2\x04\xa9\xe2\x83\xdf\xdf\xf6\x27\x13\xce\xfd\xaa\xfb\xb0\x6e\xb2\xb4\x27\xb9\xad\xcd\x79\x98\x44\x68\x3c\xf4\x4a\xa4\x2a\xde\x96\xf0\xb6\x40\xe0\xec\x95\xeb\x51\x04\xab\xbb\x51\xdc\x46\x65\x56\x04\x7f\xd5\x3b\x6b\x55\x1f\x3c\xae\x82\xbd\xe5\x58\x2d\x73\xad\x37\xfd\x83\xf0\x63\x97\xc4\x9f\x5f\x12\x98\x98\xbe\x79\xfa\x1c\x0e\x71\x21\xc2\xd5\xf9\xb9\xa7\x8b\x57\x57\x13\x3e\x2d\x9a\x3d\x56\x34\x89\x42\xb5\xa6\x19\x2f\x0e\x66\x32\xc1\xef\x51\x5e\xf4\x77\xd4\x2e\x9a\xe1\xf5\x63\xc5\x49\x26\x8c\xb7\xd7\xdd\x69\x94\xf1\x20\x0c\x5e\x73\xeb\x3f\xfb\xeb\x37\x03\x51\x2f\xc2\x4b\x45\xfd\xd4\x08\x9f\x62\x6e\xcb\x4c\xb5\x23\xc2\xef\x1b\x57\x17\x9d\x89\x32\x26\x38\x16\x4b\x1d\x75\xac\x9a\x4d\x18\x18\x1e\x98\xb3\xf2\x84\x24\x41\x83\xed\x47\x98\xf2\xb9\x44\xc2\xa3\xb2\xd7\x3b\xff\xc2\x3e\x3d\xe2\x44\x89\x54\x00\x41\x55\x33\x74\xcc\xac\x53\x8c\xd0\x68\xf8\x7a\x43\x14\x8f\x2c\xc1\xbf\x57\x9d\xbf\xef\xa4\x1e\xc1\xbb\x07\x39\xc2\x47\xbb\x19\x68\x77\x7e\xb5\xd0\x47\xc2\x8b\x20\x30\xac\xaa\x66\xe5\xe2\x42\x38\xbd\xd6\xdc\xe4\x7b\xae\x26\xe1\xb7\x79\xee\xfc\x44\x79\x75\x82\x04\x47\x4a\xe1\x93\x9e\x6f\x0c\x9c\x6d\x5f\x7f\xea\x89\x91\x21\xc1\x4a\xfe\x92\x43\xdb\x94\x23\x2c\x60\x73\x36\x2b\x1d\xb4\xdd\x42\x60\x70\xde\x10\xe5\x11\xd8\x44\x38\x23\x52\xe6\x19\xb0\xd8\x95\xe0\xe8\xd1\x5e\x65\xfa\x48\x83\x70\x7a\xca\x17\x5f\xef\xac\x29\x04\xab\x45\xbe\x95\xcb\x4a\x67\xb3\xe0\x58\xcf\xab\xf3\xeb\x8f\xf6\x56\x21\x3e\x24\x58\x5f\x49\xda\x99\x70\x64\xc1\xe8\xdb\x8f\xbf\x97\x33\xf1\x20\xa2\x44\x8c\xaf\xe9\x1c\xc1\xfb\xe4\x55\x5f\xcd\x72\x25\x82\xa9\x64\xe6\xfe\x51\xa9\x76\x06\xcc\x50\x7e\xe0\xa9\x3c\x1b\xfd\xc3\x3a\xb5\x33\x82\x16\x81\x5f\x19\xe8\xdc\xd6\xbe\x60\xb9\xc1\x26\xc2\x22\xd5\xbe\xe6\xbc\x3c\x57\x82\xa1\x4c\x87\xdd\xc5\x71\x77\x82\x6e\x34\xdf\xed\x85\xf6\xe7\x09\x55\xaa\x77\x17\x4f\x9f\x95\xc8\xc4\xf8\xbd\xcd\xdc\xcd\xd9\xec\x04\x13\xef\xac\x4d\x36\xae\x92\x84\x98\xdd\xaf\xf3\xe4\x12\x7e\x32\xf0\x86\xc4\x0f\x59\xf6\x68\x13\x4e\xb9\x0f\xe8\xb5\x4a\x84\x31\x51\xb6\x9d\x3f\xeb\xc5\x87\x28\x82\xa8\xc8\x1e\xfa\x91\x7a\x99\xfe\x15\xa6\x8e\xed\x41\x61\xcb\x2a\x26\x9a\x7f\xd5\xa5\xad\xbc\xeb\x43\xd8\xdb\xfc\x41\x71\x56\xc8\x02\x42\xcc\xc2\x7a\x11\x23\xcb\x14\xc2\x86\xd2\xaf\x6b\xfe\x42\xa4\xe1\x48\x41\xc0\xe7\x9d\x84\xd4\xe5\x7c\xa5\x63\x45\x5b\x09\xda\x71\xb3\x4a\x1c\x56\x9f\x22\xfc\x14\x55\x5f\x9a\x9e\x1b\x35\x79\x52\xdf\xb2\xd2\xee\x88\x2e\x81\xdd\xd2\x61\xa7\xa5\xb8\x02\xc1\xdf\x34\x28\x7f\x44\x78\x88\x01\x5d\x36\x53\x8f\x38\x05\x79\x42\xa8\x79\x98\xba\x71\xd7\x73\x82\x67\xba\xc9\xa0\xff\xbb\x32\x42\xf6\xa6\xcd\x33\x6e\xbe\x2c\x23\x68\x28\xfa\xcf\x0f\x98\x2c\xba\xf5\x03\x59\xbf\xc5\x3a\x09\xe1\x25\x09\x97\xab\x4a\x4b\x09\x8b\xb2\xce\xd9\x69\x4c\xe9\x26\x1c\xe5\x9e\x26\x39\xf5\xcf\x3b\x42\xdc\xa1\xad\xcd\x7b\x1a\x4b\x09\xec\x95\x7e\xee\x9c\x93\x65\x8e\xa2\x77\xc6\xbc\xd9\xdd\x04\xcb\xf2\xdd\x4a\x07\x8c\x63\x08\xba\xef\xc3\xee\x3f\x10\x3a\x46\xf0\x36\x9a\xfa\xc0\x62\xde\x0d\x42\xdd\x17\xe1\x27\x1d\x2f\x8f\x12\xf8\xbd\x7e\x38\xca\x8d\xea\x11\x1e\x5b\xc8\x34\x4a\x06\xf3\x13\xd6\x29\xc6\x4d\x75\x1a\x7c\xcb\x04\x57\x6f\xf0\xb2\x51\xed\x22\x42\x65\x94\x9c\x31\xad\x2c\x22\xb8\xc4\x8d\xad\xe3\xd3\x28\x22\x5c\xdf\xa9\x60\xc5\x3b\x09\x9e\x61\xa7\xdc\x1a\xcd\x22\xc2\xf7\x6b\xc5\x3b\xaf\xdc\x70\x23\x8c\xaa\x0f\x96\x25\xe5\x6f\x20\x7c\x6c\x13\xd1\x4f\xb9\xbd\x84\xb0\x67\x4b\x50\x96\x43\x7c\x15\xa1\xc7\x6b\x60\xc0\xcd\x55\x8a\xb0\xba\xac\x9d\xac\x55\x8c\x98\x88\xbd\x61\xe2\xb0\xf0\xc3\x36\x82\xf8\xcd\x81\xd2\x27\x45\xd3\x58\xd0\xf9\xf4\x48\xc5\xde\xed\x6f\xab\xb0\xe0\xb1\x41\x78\x9e\xde\x45\x42\x5e\xd3\x37\x19\x9e\xcd\x17\x09\xf1\x87\x16\xae\xff\x7c\x91\x08\x29\x11\x77\x8f\xa9\x24\x05\x10\x56\x5c\x3c\xeb\xf2\x6e\xcb\x49\x82\x7b\x73\xcc\xd3\xdb\x5b\x6a\x09\x82\x46\xe3\x4d\x1f\x35\x9b\x08\x3c\x53\xc6\x23\xfd\x86\x0a\x09\xe2\xaf\x8b\x4a\x3e\x65\x6f\x25\x98\x1c\xea\x97\x3a\xe1\xe7\x4a\xb8\x76\x28\x1b\x83\x2f\x0e\x13\x1e\x7c\x99\x19\xec\x71\x6e\x1b\xcb\x68\xeb\xcb\xc6\x9a\x00\xd7\x1d\x04\xfe\x20\xcb\xd1\xc4\x79\xac\xa8\x6b\xb0\x6a\xd0\x75\x2d\xa3\x5f\xee\x99\xea\x16\xae\x65\x84\xe7\x51\x87\xb2\x6e\x5a\xe6\x10\xfc\x6f\xb5\x24\xd5\x4f\x9d\xc2\x82\x1e\x1f\x2f\xcf\x57\xde\x55\x04\x2b\x6b\x61\xde\xbf\x50\x7f\x37\x77\xd7\xfb\xf5\xdb\x08\x92\x66\x67\xf6\xec\x79\xb9\x8a\x09\x95\x8f\xfc\xea\x97\x3e\xb8\x10\x8a\x53\xb4\x34\x7d\x6b\x27\x9f\x33\xd3\x15\xa5\x3c\xca\x07\x08\xb9\x2e\x77\x0a\x35\xb2\x95\x09\x8f\xe6\x6c\x9b\x2b\xc6\xb5\x8a\x70\xc3\xa1\x2b\xf8\xd2\x07\x3e\x16\x70\xc7\xac\xad\x1f\x5b\x51\xc1\x82\xd2\xd2\x92\xd1\xc5\x0c\x03\x42\x8a\xd7\x7e\xf9\x5c\xce\x99\x04\x07\xfd\xb7\x2f\xec\x36\x39\x13\x4a\xce\xd5\xf8\xe8\x35\xbb\x11\x9a\x47\x95\x96\x9c\x4c\x5a\x4c\x08\xd5\x64\x0e\xed\x4a\x61\x67\x81\xfb\x95\x85\x6f\x65\xf6\x8f\x32\x10\xb4\xda\xc8\x66\xdd\xbc\xc7\x55\x18\xb9\xa6\x17\xe4\x14\x30\x8f\xb0\x38\x79\xea\x91\x09\x1d\x51\xc2\x9b\x62\x8d\x92\xb3\xaa\xd6\x84\xb2\xa8\x0f\x03\xec\x5f\xdc\x08\x57\x64\xf2\x2f\x48\x64\x6c\x25\x74\x06\xb7\x1d\xed\x4a\xb6\x24\x2c\x9f\xbe\xd9\xe8\xf2\x97\x7d\x84\x3e\xf7\x04\xdd\xe5\x42\x92\x84\x83\x6f\xbe\xaf\x64\xec\xb5\x60\xc1\x12\x8e\xcf\x0a\x4f\x9b\xd4\x09\x4d\xd3\x0a\x79\x78\x3f\x17\x10\x16\x1b\x8c\xed\xe1\x2f\x48\x63\xe2\xc5\xb4\xea\x0b\x36\x2b\xbf\x13\xc6\xaa\x34\x4c\xa7\x1c\xaf\x21\xd4\xad\xce\xbd\x19\x36\x94\x4a\x50\x3b\xec\x57\xa9\x75\xb6\x9a\x50\x77\x4c\x28\x3e\x54\x4f\x95\x30\x22\xf8\x8c\xef\xe0\x07\x19\xc2\xc7\xa5\xe2\xe9\xdf\x1f\xe9\x13\xfe\x08\x9c\x97\x8e\x4e\x59\x49\x48\x7d\xb4\xe4\xb2\xb0\x9e\x20\x21\x4e\x37\xc7\xec\xfc\x97\x01\x06\x38\x7e\x7b\x87\xcc\x69\xde\x46\xb8\x64\x14\x10\x91\x79\x5c\x99\x20\x7b\xf7\x33\xcf\xa0\xfa\xfe\xc9\xdb\xca\x6d\xfe\x77\xd2\xf9\x04\xad\x3a\x5b\x9f\x3c\x91\xfd\x84\xec\x8a\xc4\x37\x4b\xab\x25\x08\xcc\xc6\xdb\x1a\xa9\x6d\xe7\x99\xff\x8a\x6b\xf6\xbb\xf6\x5b\xe3\xc5\x4c\x0c\x69\x7b\x59\x9f\x5d\xca\x49\xa8\x77\x1d\xcf\x55\x14\xbd\xc1\x44\xf4\x0f\xe1\xda\x8a\xec\xc9\xab\xf1\x61\xa7\x5e\x93\x59\x45\x84\x1c\x35\x0e\x36\xe6\x1f\x17\x82\xb0\x26\x9b\x8e\x35\x7b\x0d\xc1\xd3\xfb\xda\xd4\x7d\x6c\x35\x04\xf5\x3f\xcf\x35\xfe\xe2\xb7\xcd\x27\x27\x7f\x03\x55\x82\xcd\xf1\x2a\x85\xfb\xef\x7a\x18\x70\x97\x90\x7e\x64\xd2\x0a\x06\x4e\xf9\x32\x0e\xf2\xbe\x72\x22\x44\x19\x7a\xfb\x2f\x53\x16\x23\x04\x71\x88\x4a\xf1\xa6\xad\x21\xdc\x33\x52\x9d\xd2\x71\x51\x92\x60\x1a\x75\x71\xcb\xf8\x3a\x67\x42\xb1\xb6\xbe\xd3\x37\x2b\x4d\x42\xfb\x83\x6f\x77\xbb\x06\x96\x11\xb6\xa4\x4d\xa8\xf2\x76\xdf\x64\xa2\x7f\xe2\xfc\x08\xa7\x8b\x30\xa1\x6f\x45\x87\xc2\x39\xeb\x65\x04\xcb\x48\x39\xe9\x31\x3f\x15\xc2\xb5\xb2\x16\x7e\x91\x81\x77\x0c\x8c\x46\xe7\x4a\x4d\x89\x50\x23\x54\x97\xd4\xbf\xf9\x3e\x53\x83\xd0\xe8\xe3\xab\x2d\x27\xd6\xc9\xfc\x37\x2a\xbc\x78\x25\x61\x87\x7a\x1c\xe1\xf0\xfa\x81\x93\x3f\x96\xc6\xb1\x94\x65\x3b\xdf\x1f\x58\x18\x72\x98\xb0\xfe\xb1\x00\xaf\x8c\xf1\x12\x42\xd6\xd3\x82\x67\xab\x63\xa6\x12\x64\x32\xb6\x39\xfa\xeb\x5a\x10\x5e\x1c\x11\xf4\xcb\xb9\x91\x4e\xa8\x10\x7c\x91\x81\xc5\xc6\x84\xd8\xfe\x27\xcf\x5c\xb9\x6c\x08\x18\xfe\x15\xdb\x19\xa2\x46\x28\x4f\x1e\xdc\x1c\xa4\xaf\x40\x58\xa3\x17\xfd\x46\x27\xeb\x3b\x03\x5e\x25\x8b\xd8\x5a\xe6\x6f\x25\xb0\xb7\x3d\x9e\xe7\xb1\x76\x23\x41\x47\x07\x5c\xd1\x23\x9f\x18\x68\xe2\x33\x29\x96\x7e\x7e\x9c\x70\x98\x5e\xfa\x15\x6b\x7c\x64\xe0\xac\x0c\xb3\xeb\xb2\xbb\x34\x61\x19\xcf\x43\xef\xec\xa6\xa9\x84\xeb\x1b\x93\x37\x58\x8a\xf0\x13\xfe\xb4\x5e\x9f\xdf\x3f\x57\x9b\xa0\x54\xca\x37\xae\x15\xa5\xf1\x5f\x28\xbb\xaa\x52\x59\xad\x24\xf7\x5f\x98\xc8\x8c\xe3\xdc\xd4\xf5\x82\x81\x87\xee\x59\xd1\xbf\x0a\x13\x08\xcd\x52\xfb\x96\x1d\x92\xdb\x48\x58\xba\x29\x57\x98\x3f\xd0\x8e\xb0\xf2\x5c\x4c\xff\x8a\xc8\xf5\x84\x30\xd1\x4b\x4f\xce\x36\xcd\x20\x04\x56\xe7\xb1\x17\x28\xf3\x10\xb2\x77\xfe\xe2\x66\x26\x5d\x61\x62\xd5\xf2\xce\x7b\x5c\x1c\x1b\xe9\x1f\x9e\x0d\xb0\x49\xba\xbc\xb7\x22\xd8\xcb\xcd\xeb\xb9\xe4\xc8\x45\x10\xe4\x7e\x9e\x56\x62\x67\x49\xa8\x63\x46\xde\x7b\x77\xce\x9d\x70\xb9\xf3\xdc\xb5\x87\x97\x1d\x08\xa7\xef\xa8\x38\xb1\x7b\x2e\x20\x34\x6d\x9e\xdd\xf3\xc0\xcb\x92\xa5\x58\xd6\xf3\x38\xf4\xef\xf8\xc4\x00\xff\xfe\xdb\x4d\xf6\xb2\x1c\x84\xb0\x33\x9f\x37\xc8\xa6\xab\x11\x12\x23\x6e\x7d\x7c\xbd\xda\x8f\xa5\xb4\xb5\x3d\x2e\x5d\x2e\xa8\x45\x08\x0f\xd4\x10\xbf\x32\x92\xc4\xc4\x0c\xd3\xb6\xfa\x93\x19\xee\x84\xb8\x47\x97\xbe\x77\x4c\xd4\x30\xe1\xfa\x67\x4d\xf0\xdc\x76\x73\xc2\xad\xa1\xe0\xe4\x89\x5a\x1d\x82\xeb\xda\xcc\x9d\x09\x97\x3a\x18\x08\x72\x5e\xc8\xd1\x7b\x40\x81\x20\xb7\x5c\x77\x4c\x73\xb1\x13\x61\xe9\xf3\xd7\x45\xdf\x2d\xac\x08\x5c\xea\x97\x14\x6f\x6c\xfa\xce\x80\x47\x6c\xd0\xd9\xb0\x72\x0d\x42\xa6\xb1\xe4\xc2\xaf\xdd\x27\x99\x50\x93\xcc\x6e\xfe\x5b\xe6\x73\x9a\xa5\x2b\xfd\x54\x27\x64\x2c\xbc\xdd\x35\x3f\xaa\xa2\x0a\xc5\x26\x9f\xb6\x4f\x4c\x11\x22\x5c\x7b\x70\x39\x0f\xe7\xa7\x12\xb6\x27\x18\x27\xdf\xbd\xfd\x89\x81\x97\x4a\x77\xe6\xee\xce\x59\x47\x50\x0c\x0c\xf0\xbb\x76\x79\x33\xa1\xb0\xdc\xe5\x67\xfc\x5c\x5b\xc2\x39\xfe\x82\x52\xdf\xc5\xab\x08\xbb\x9d\xb8\xb6\x8f\x0a\xec\x21\x48\xd9\x6b\xb4\xdc\x83\x26\x41\xc1\x20\x24\x62\xea\x40\x06\xc1\x40\xf9\xba\xe6\xa2\x3f\xb2\x84\xe7\x77\xf7\xd5\x1b\xe7\x35\x10\x2e\x9b\x87\x37\xc8\x54\x65\x11\x9e\xd4\xde\x4e\x75\xe8\xef\x61\xe0\x53\x9c\xdf\x55\x0d\xe7\x77\x0c\xec\x34\x2d\xd9\xe1\xcb\x2b\x4d\xff\xf0\x3b\xf0\x05\x56\x16\xa9\x12\x36\xfd\x08\x13\xc9\xb7\xad\x67\xe0\xb0\xd5\x81\x1d\x4a\x29\x56\x84\xbb\x15\x5c\x76\xcb\xe4\x75\x09\x54\xd8\x52\xc6\x39\xe0\x45\x38\x62\xb8\xca\xe1\xd0\x06\x45\x42\xee\x75\x86\xd2\x5e\x95\x14\x26\x1c\x0c\x9f\xa4\xc8\xf2\xcf\x20\x4c\x84\x97\x9b\xde\x6f\xb2\x27\x0c\xbd\xd9\x65\x98\x28\xb7\x80\xa0\x1c\x3d\xce\xb6\x63\xe3\x73\x06\xf6\x07\x9b\xdd\x7b\x30\xcb\x87\x89\xf7\x66\x1b\xcc\x82\x5a\xf7\x10\x66\xd6\x1e\x5a\xa7\xfe\xae\x9b\xc0\x61\x55\xf1\xeb\xbd\x5e\x33\x21\x48\x55\xfc\xf0\xbc\xaf\xa1\x84\xeb\xd3\x4e\x0d\x49\x0a\xef\x20\x38\xaa\xb9\x27\x54\xad\xd3\x24\x6c\xae\x98\xc7\x2e\xf4\x73\x05\x61\xcb\x8b\xd7\xf9\x59\x29\x6f\x99\xa8\x3d\xdd\x95\x3a\x73\x63\x1e\x13\x3d\x6d\x7b\xb8\xcd\x7b\xef\x10\x3e\x7b\x1f\x4c\x3f\x61\x39\x9b\x10\x12\x63\xac\x51\xc1\xb1\x92\x20\xd3\xb6\x71\x47\x82\x7c\x2f\x03\x2f\x22\x19\x8f\x4d\x55\xa6\xd0\x3f\x70\xdd\xbc\x3d\x71\xea\xf0\x57\xc6\x3f\x88\x4a\x18\x25\xde\x78\xc7\x4f\xe0\x6a\xbf\xca\xfd\xb6\x6b\x37\xc1\x4f\xca\xa7\x63\xf7\xa6\x5b\x84\x27\xc9\xea\x1f\x57\xe8\x72\x10\xa6\x1f\x1b\x08\x57\x39\xb1\x9c\x30\x55\x43\x66\x6c\xbe\xbe\x00\xa1\x67\x8e\xf5\x96\xdf\xc1\x92\x84\x21\x09\x75\x09\xb7\xf5\x31\x2c\xc5\x63\xa9\xdb\x8a\xf1\xc3\x1d\x0c\xfc\x59\x75\x6f\xdf\xf8\x8a\x4d\x04\x77\xf3\x1c\xc3\x87\x3a\xd3\x09\x0f\x87\x78\xf2\x9c\xfd\x3a\x18\xff\xd0\xe3\xd2\x65\xed\xf5\x87\x83\x20\xdf\x11\xb3\xd9\xf7\xc1\x02\xc2\x8b\x88\xb2\x75\x0f\x96\x6a\xb0\xe0\x86\x8e\xa4\x67\x6a\xbc\x2b\xc1\xaa\x25\x57\x28\x55\xab\x98\x30\xd0\xe9\x38\xcc\xff\xc4\x9f\xa0\x15\xf3\x47\x64\x5e\xe4\x76\xc2\x7a\xbe\xd4\xda\x0f\x4f\xf9\x09\x41\x82\x43\x81\x26\x43\x23\x0c\xb0\x6d\x3e\xdf\x5d\xbe\x43\x9d\xd0\x37\x55\xac\x63\x78\x87\x02\xe1\x92\xe9\x31\x59\x9f\x3b\xcb\x08\x52\x1c\x5a\x6c\x13\x81\xbe\x2c\xc5\x52\x26\xc3\xf6\x79\x67\x67\x15\x24\xd2\x02\xa8\x80\x99\x41\xd8\x92\xc8\x33\x6c\x94\x63\x49\xd8\xb0\x47\x2b\x6c\x20\xbe\x9a\xf1\x0f\x77\xd7\xe7\x6a\xbe\x4e\x67\x23\x04\xb5\x7e\x69\x76\xd4\xb7\x23\xd8\xbe\x3d\x6a\xbf\x26\xd4\x99\xd0\x71\x68\xc7\x92\x4d\x36\x0b\x08\x9b\x3d\x2d\xca\x95\x15\x62\x09\x2f\x94\x23\x1d\x1b\xe3\xf7\x13\xe2\x3e\xbf\x7d\xea\x76\xcf\x9b\x20\x56\xe1\x50\xc4\xab\xe0\x41\xf0\x7e\x7c\xaa\x33\x21\xd4\x85\x60\xc5\xee\xf2\x69\x63\x9b\x35\x61\xe3\x95\xfd\x8f\x55\xc2\x56\x12\x7a\x02\xcf\x7a\xe9\x9d\xf3\x26\x2c\xf9\x73\xfb\xfa\x47\xa9\x5a\xc2\xf1\x67\x63\x5e\x3f\x2b\x37\x12\xd6\x1c\x1e\xdd\x3b\xd1\x12\x40\xf8\x2c\xcd\x31\x65\x19\x97\x25\x61\x5e\xd7\xba\xb8\x73\x9f\x83\x08\x63\xde\x0b\x2b\x7c\xad\xf2\x98\xc0\xb2\xa6\x80\x80\xa7\x46\x84\x43\xb5\xa5\x2b\x5e\x4f\x3e\xdd\x67\x34\xe4\x8e\xb4\xad\x5a\xc9\x82\xc4\x0f\xcc\x33\x06\xb2\x0f\xaa\x30\xdc\xfa\xa0\x2f\xff\xa3\x35\xc1\x58\x48\xda\x68\x93\x53\x3f\x03\xd9\xe3\x3b\xaf\x99\x79\xcc\x26\xec\xf0\xd2\xe6\x93\xd8\xc1\xa0\x7f\xe5\xf6\x77\x0d\xe3\x3d\xe2\xda\x84\x8a\xcf\xd9\x1b\xc5\x23\x75\x58\xca\xe9\xb7\xf3\xe6\x29\x7a\xb3\x11\x1c\xaf\x1e\x4c\x3e\x13\xaa\x49\x60\x8b\x3b\xf4\x3d\xa9\x5b\x9d\xb0\x24\x7c\x70\xeb\xcd\x53\x96\x84\x73\x3f\x4e\x18\xdb\xef\xda\x43\x68\x8f\xb3\xc8\xf5\x5a\x99\xcf\x84\x43\xfc\x6a\xad\xd4\x86\x42\x26\x16\xf6\x6e\x7e\xf2\x77\x8d\xf1\x4d\x3f\x95\x5f\x66\x42\x84\x55\x5b\xb7\x56\x27\x6c\x90\x64\x29\xb6\x92\x5a\x17\x67\x76\xb7\x10\x04\x1c\xf8\x77\x2a\xb9\x32\x09\x8e\xcd\x6b\x5a\x27\x36\xd6\x10\x7a\xad\x64\x3b\x3c\x3d\xee\x12\x6c\xa3\x12\x86\xb4\x66\x85\x32\xa1\xbd\xb3\x5f\x21\x5f\xad\x84\x50\xf0\xa2\x2b\xcf\xaa\xeb\x06\xe1\xf0\xe6\xaf\x16\x4b\x9e\xce\x21\xdc\xb9\x30\xa6\xb7\x6d\xf7\x3c\x82\x9b\x71\xc6\x91\x47\x31\x7b\x99\xf0\x32\x9a\xfd\x25\x51\xc9\x8e\x70\xce\x79\xb0\xfe\xc7\x34\x7d\x42\x97\x5c\x87\x80\xba\x2c\x18\x98\x6b\xfc\xfd\x81\xec\xf6\x4c\x42\xc1\xbc\xaf\xea\xd9\x67\x9d\x08\xef\xf8\x6e\x57\x3d\xb3\xf6\x24\xdc\x4f\x7c\x70\xac\xc8\x3b\x8c\xe0\x50\x74\x48\x9a\xfb\xab\x3e\x21\x75\xf5\x9b\x99\x78\xa4\xfd\x5f\x90\x9e\x85\x8a\xba\xf9\x9c\x84\x9e\xdc\x52\xf5\x90\x6b\xb3\x09\xa9\x5e\xba\x3c\x32\xed\x52\x84\xbd\x0e\x4e\x86\x6f\xde\xcf\x27\xac\xbd\x1e\xc8\xf7\x3d\x57\x8d\xe0\xcc\xad\x7a\x75\x8e\x5d\x05\xc1\x34\x23\x65\x89\x95\xc7\x3b\x42\xcc\x71\x97\x27\xf5\xe2\xa1\x84\xef\xfb\x9e\x7e\x19\x71\x2a\x67\x60\x54\xec\xad\x8c\x94\xd0\x7a\x82\x10\x77\xe1\x0a\xce\x9e\x63\x4c\x84\x07\x30\x3f\xac\x10\x0f\x22\x64\xb7\x3a\xe7\xaa\x1c\xe3\x27\xd8\xf0\xff\x14\xf9\x7a\xf4\x3f\x71\x20\x6b\x5a\xfc\xc2\x12\x0e\xc2\x6d\xa7\x8c\x62\xf1\x6b\x3e\x84\xb6\xc3\x5c\x85\xcb\xbe\xbb\x12\xd4\xf8\xe7\xf7\x9a\xcf\x50\x20\xa8\x27\x98\x67\x59\x98\x7b\x11\x8e\xdd\x91\xbe\x96\x2d\xbc\x9e\x90\x98\xff\x4c\xd4\x7c\xc5\x06\x82\xe5\xb5\x5b\x0d\x61\x93\xbf\xea\x83\xf6\xdc\x0d\x7e\xaf\x97\x10\xf8\x18\x0d\x66\xb2\xd1\xa5\x04\xc1\xa5\x47\x92\x78\x36\xe4\x13\x1e\x97\x7a\x96\x35\xf4\x95\x10\x2e\xdd\x1d\x5e\xc5\xb1\x69\x35\xe1\xd0\x39\xeb\xe1\x03\x8f\x4c\x09\xcb\x2d\xb9\x6f\xf3\x4c\xeb\x64\x80\xe7\xb7\xf7\x39\xd3\xa3\x82\x84\xf2\x9c\xdf\x3b\x93\x3f\xad\x21\x24\x24\xa9\xbc\x15\x9e\xa1\x44\xb0\xd5\xfc\x1e\xbe\xc6\x44\x84\xd0\xd3\x36\xf4\x4d\xa3\x40\x8f\xe0\x93\x26\x32\x14\x1b\xe3\x49\x48\x98\x51\xe9\xd8\xb8\xa2\x8c\x10\xf7\x43\x34\x30\xdd\xab\x90\xe0\x9c\x7f\x53\x3e\x4e\xf7\x1a\x61\xbf\xd8\xe3\xd9\xe1\x1c\xc6\x04\x5e\xad\xbd\xf8\x25\xe6\xcb\xc4\x9b\xc5\x3f\x12\xf3\xcc\x2c\x09\x6d\x6b\x6f\xbf\xbf\xb7\x55\x9e\xc0\x69\x15\xf6\x3a\xfe\x8e\x1e\xe1\xf5\xae\xdb\xde\xd3\x9a\x4e\x32\xc0\x9d\xf5\x2c\x7d\xbd\xef\x06\x42\x58\xe2\xf2\x25\xa9\x73\xed\x08\x22\x11\x87\x92\x72\x83\xdd\xe9\xdf\x88\x3f\x7d\x86\xc2\x62\x7b\x36\xc2\x1b\x9f\xb9\x4f\xac\xab\xca\x08\xfc\x46\xb6\x53\x9e\x6c\x5c\x49\xb8\x1f\x69\x76\x64\x27\xdb\x77\xc6\x3f\x7c\xdc\xdc\xf4\xe5\xe0\xa7\x8f\x0c\xac\x59\xd2\xb1\xcd\xd4\xa3\x86\x01\xd3\x33\xba\x6d\xa7\x96\x3a\xd3\x7f\xa0\x48\x22\xef\x75\xe8\x1f\x01\xc2\xcc\xc7\xea\xc5\x8f\x57\x09\x11\x2e\x84\x7c\x33\x38\x72\x7c\xf2\x76\xd2\x34\x28\xbc\xad\x73\xf2\xc6\x39\xcf\xb4\xef\xc5\xd4\x00\x42\xec\x8a\x8a\xc7\x1e\x59\x9e\x84\xb5\x8c\xbd\x76\xe2\x5f\x37\x12\x66\x7e\x9f\xf5\xf4\x7d\xe5\x52\x42\xd3\xf4\x70\xdd\x66\xb1\x00\xc2\x7d\xbf\x0d\x67\x8d\x16\xa9\x10\x6e\x68\xae\x5d\xa0\x71\x76\x0a\x61\xb7\xd6\xa7\x6c\x37\x6b\x5b\x82\x5a\xaf\xce\xce\xad\x25\x9f\xaa\xb0\x9e\xb1\x2d\x30\x4f\x68\x11\xa1\x67\xe3\xb5\xf9\xba\xfa\x9b\x99\x30\x49\xb8\xe1\xf8\xfb\x82\x16\x21\xa1\x27\x42\xc1\x5d\xc1\x82\x60\xce\xde\xaa\xf3\xda\x54\x91\x05\x17\x44\x13\xc7\x5d\x97\x84\x13\x9c\xc4\xcb\x5b\xd3\x3c\xde\x10\xcc\x3e\xe4\xe7\xec\x1c\x5c\x4c\xd8\x91\x33\xae\x2d\x38\xbf\x8c\x40\xec\x72\xfe\xaf\x8e\x5d\x27\xfc\x5e\xd1\xc8\x53\xda\xab\x4b\xe0\x58\x28\xb4\xb3\xa2\xe2\x56\x15\x54\x5b\x12\xe6\xdb\x35\x9b\xd1\xff\x85\x97\x7d\xcb\xa5\x43\xd6\x09\x10\x62\xde\xdf\x13\x62\x77\x50\x21\x98\xc4\xda\x7e\xe1\xd2\x50\x27\x64\xda\xf3\xfa\x8f\x9f\x35\x27\x2c\x14\x3d\xa9\x58\x14\xed\xf3\x5f\x58\x34\xf6\x36\x27\x4e\xe0\x17\x03\x33\x65\x5f\x44\x7f\x7a\xd7\xcb\x00\xaf\xf6\x07\x85\x7d\xd9\x39\x84\x96\xc4\x28\x25\xbe\xaa\xb3\x84\xe0\x0a\xe9\xa9\xc7\x95\x35\x09\x4f\x13\xcf\x89\xee\x38\xf5\x96\x81\xa2\x91\x61\x5e\x4a\xed\x64\x40\xfd\x5d\xc5\xce\x53\xe3\x26\x04\x3f\x4b\x8b\x62\x9e\x27\x1b\xe9\x5f\xf9\x1f\x4e\x1e\xe1\x38\x1e\xb4\x70\x94\x81\xfe\xf1\x85\x2f\xfd\xa5\x74\x08\xb6\x1b\xb7\x2d\x98\xba\x4a\x82\x30\x8c\xcd\x5c\x8a\x82\x19\x2c\xc8\x28\x51\x33\x97\x64\x1e\x23\xb8\x6d\x0e\x9e\xc6\xd4\xe2\x64\x22\x5d\xfb\xe2\x7b\x35\x0f\x1d\x82\x79\x96\xec\x8e\xfb\x25\xdb\x08\xea\xbc\xda\x9f\xbb\x6e\x69\x11\x2a\x35\x54\x33\x4e\xd6\x2d\x25\xc8\xbd\xa8\x8c\xcf\xfb\x18\x44\xe0\x36\x99\x7d\x3c\xc5\xe9\x12\x41\xd7\x36\xb4\xf5\xc0\x21\x15\x42\xa1\x6b\xe5\xb7\x4d\x59\x7b\x08\x0f\x13\x53\xa3\xdb\xb3\x8b\xfe\x0b\x6a\xbb\xab\xa6\x9e\xf9\x35\xc0\x40\x72\x44\x4d\xf9\x63\xd7\xb3\x84\x2c\xd3\x8e\x67\xeb\xd3\xf3\x99\x78\x15\xa6\x53\xa3\x91\xd0\x4e\xb8\xfd\x4d\xad\x93\xc1\xf1\x98\x50\x7d\xb0\x46\x5a\x7d\xb2\x30\xd4\x16\x7b\xa9\x4e\xe2\x64\xd7\x9f\x7d\xa1\x57\xae\x13\xf4\x8f\x3d\x93\xca\x16\x2f\x23\x2c\xe0\xff\x20\x34\x52\xdf\x40\x90\x2b\x6d\xf1\x6b\x6c\x68\x20\xd8\x3b\xbb\x26\xbd\xaa\x6b\x20\x2c\x14\x73\xfa\x60\x5f\x71\x9e\x20\xb8\xc1\xa7\x6b\x86\x71\x24\xc1\xab\xe4\xf5\xe2\x7d\x9a\xec\x84\x67\xd7\x16\x2f\xcf\x78\xa9\xfd\x7f\xc2\xfd\xe9\xed\x05\x65\x83\xf3\x08\x1a\x9e\x46\xc3\xe2\x9a\xb6\x04\x6f\xaf\x8a\x31\x05\xe5\x99\x04\x21\xbb\x71\x31\x5e\x4f\x0d\x42\xc2\xbb\x13\x2a\x2d\x03\x36\x84\x78\xe5\x77\x62\xed\xb7\x74\x59\x46\x53\x73\x9f\xbb\x4f\xdd\xcc\x4e\x98\x5e\x3f\xae\x3b\xb0\x6d\x15\xc1\xbe\x29\x3d\x24\xf0\xe7\x56\x42\xd6\xf9\x92\x2d\x52\x3b\xb3\x99\x28\xf8\xf8\xc0\x7e\x66\xa1\x1d\x21\xec\xf9\xe7\x9b\xe8\xe6\x27\x58\x99\x2c\xd9\x30\x35\x60\xf2\x03\x60\xd4\x65\xe2\x54\x1f\x47\x50\x72\x5e\xdd\x14\x7b\xda\x8e\x20\x1b\xea\x52\xc8\xf9\x5a\x89\x30\xed\xcb\xf4\xcf\x96\x93\x17\x04\xe7\xe5\x33\xa4\x53\x3f\xd8\x10\x3a\xb5\x23\xd7\xe5\x28\x6e\x20\xa8\xca\xc9\xe8\xea\xed\x5a\x41\x58\x7b\x8e\x6d\xe7\xf5\x8d\x9d\x0c\xd8\xbd\xfa\xbd\x7e\xb7\xa9\x2d\xe1\x52\xe8\x52\xe5\xd4\xbb\x0e\x2c\x50\xed\x79\x2b\xd0\x39\xe3\x54\x15\x5a\xe7\x99\xb5\x25\x75\x98\x12\x78\x10\xb9\x47\x90\x7e\x33\xfe\x41\x9f\x32\x9e\xdf\xb9\xaa\x45\xff\x81\x1f\xee\x22\xe2\x25\xb5\x53\x09\x1b\x24\xaa\xeb\xf7\xeb\xcb\x12\xce\x1e\x7b\xf7\x6a\xee\x23\x30\xb0\x9c\x77\xd5\xee\x18\xde\x3b\x04\xec\xe2\x0f\xb8\x9d\x60\x41\x08\x99\xb2\x7c\x97\xc3\xa3\x62\x82\xc9\xeb\xdf\x02\xd1\x93\xa3\x77\xca\x8f\xe3\x7b\xcb\xe6\x10\xe4\x64\xc5\x7c\x3f\x3f\xb0\x23\xc4\x27\x5f\x93\xd8\xaf\xad\x47\x08\xb4\x15\x4f\xf6\x57\x68\x20\xbc\x98\x1d\x22\xec\xe8\xf8\x8c\xe0\x7b\x69\xd9\x69\xff\xce\x23\x04\xd1\x61\x73\xdd\x9a\x0c\x45\x02\x97\xf6\x59\xc1\x33\x1f\xdc\x09\x3d\x19\x91\x9b\x27\x8e\xec\x26\xb8\x35\xff\x3e\x58\x76\xd3\x82\x90\xe8\xbb\x2b\xd7\xb8\xea\x3a\x03\xc7\xa3\x3f\xd9\xb0\x2f\x37\x23\xe0\x92\x54\xd8\xad\xfe\xcd\x84\xcb\xcd\x35\x15\x1c\x75\xf6\x04\xb5\x8f\xb9\x9a\xf7\x2d\xdc\x09\x7e\x13\xee\xc7\xd7\x2e\x67\x1d\x2d\x4c\x3f\xee\xdd\xac\x1f\x4f\xe8\x11\x60\x3f\xa8\x1c\xb7\x93\xa5\xbc\x9c\xd8\x23\xdb\xb9\x33\x95\xd0\x2d\xe4\xb5\x65\xb7\xf7\x65\x42\xd9\xbe\x36\x77\xae\xb0\x60\x42\x31\x4e\x87\x59\xde\xbd\x46\xe8\xca\x7c\x2b\x6e\xee\xf6\x86\xd0\x30\x55\x7c\xa5\xc5\xe1\x3d\x84\x05\xec\x6e\xd5\x06\xb1\xeb\x09\xa3\xeb\x5f\x29\x6d\xf2\xb9\x4c\x48\x5c\x14\x38\xd3\x37\xe3\x1c\xa1\x30\xc9\x8f\x37\x65\xae\x35\xe1\x98\x94\xfc\x87\x8d\xfd\x61\x84\xa1\x17\xe9\xdf\xb7\xdb\x9b\x10\xce\x5c\xb0\x60\x17\xf3\x97\x25\x0c\xad\xcc\x5d\x6d\xef\x29\x44\xd0\x57\xd7\x2b\x5d\xf9\x3c\x94\xa0\xbc\x6e\x4d\x69\x76\xeb\x22\x82\x87\xcd\xb2\xa6\x13\xbd\x3a\x04\x4d\x13\x66\x8b\x3a\xc7\x4d\x26\x2a\x6f\x2c\x54\xb8\x6e\xbd\x89\xa0\xa3\x7f\x22\xb5\xfe\xac\x01\xa1\x65\xa3\xac\x66\xf7\x05\x69\xc2\xd1\xe4\x0d\x3b\x24\xf7\xee\x66\x01\xc7\xb4\x03\xd3\x17\x6d\x3b\x42\x78\x32\xf4\xe5\xeb\xd6\xed\x0a\x84\x60\x0d\xa1\x9b\x9a\x9f\xbf\x30\xe0\x61\xe3\xea\xba\x2c\x60\x0f\xfd\x07\x82\x46\x3e\x95\xbd\x12\x69\x61\xc0\x8d\xc7\xe8\x47\xc2\xe3\x6a\x06\x96\x2b\x6c\xd3\x3e\x3e\xa1\x40\xe0\x4f\x96\x53\xaa\x9a\x1e\x4e\x78\x9e\xd0\x91\x68\xc6\x2e\x4d\xc8\x08\x3c\x7f\x69\xaf\x9c\x0c\x41\x5f\x3f\xc1\x5f\xb8\x5d\x90\x90\xe2\xa9\x2e\x79\x21\xe3\x22\xc1\x7b\xe9\x34\xf6\x3d\xc5\x5d\x04\xbe\x1f\xfd\x6a\x37\x2e\xbd\x25\xd8\xaa\x56\xe9\x25\x4d\x8e\x44\xb4\x5f\x74\x8e\xee\x7e\x41\x38\xa9\x79\xa5\x54\xaf\xba\x81\xe0\x33\xcf\x55\x61\xe8\x8e\x07\x0b\xee\x3a\x7e\x96\x88\xd5\x72\x23\x74\x98\xec\x36\xac\x5f\x6e\x47\xb0\x7f\x6e\xc8\xd3\xf7\xcd\x8f\x89\x13\xb2\xdd\x0d\x3f\x26\xd7\xc8\x6e\x6e\x69\xbc\x73\xcd\x9f\x05\xdc\xfb\x4f\x6b\xeb\xa6\xf8\x13\xbe\xf4\x8d\x8e\xfc\x2d\xbc\xfb\x8e\x48\x3e\x14\x9d\x4f\x38\x6f\x7f\xd6\xec\x72\x46\x07\xe1\x63\xfd\x0f\x69\x6e\xf6\xbb\x84\xeb\x3b\x2c\x0b\xc5\x06\x72\x08\x77\xd6\xd8\x7f\x51\xd8\x7f\x8e\xa0\x35\xaa\xdc\x1e\xc4\x99\x41\x58\x96\xbd\x67\xaa\xbf\x58\x3c\x81\xbd\x3e\xa7\xe7\xee\xb1\x32\x42\x46\x55\x5a\xed\x68\xc2\x49\x42\xe6\xca\x54\x6d\xeb\xf6\x27\x04\x95\x6f\x41\xdb\x33\x79\x1b\x09\x8f\x6c\xb1\xb1\xd3\x3d\x9b\x09\x95\x92\x48\xf5\x1a\xc5\x3b\x04\xbe\x13\x33\x46\xb8\x0c\xee\x13\x3a\x0b\x33\xee\xcd\x0f\x49\x25\x48\x24\x64\x18\xcc\x8f\x49\x27\xa8\x55\xad\x7a\xa0\x3d\x37\x81\x30\x20\xce\x1d\x73\x6d\x28\x80\x90\x69\x54\xdb\x6a\xd5\xee\x46\x78\xfa\x2b\xa1\x79\xd8\x65\x01\xa1\xf9\xac\x89\xaa\xfc\x3a\x65\x82\x9f\xd5\x99\xba\xdf\xbb\x5e\x30\x10\x9a\xd6\xe5\xca\x9e\xc7\x46\xb0\xf7\xe9\x30\x18\xef\xde\x48\xb8\xff\x82\xd3\x65\xa9\x08\x2b\x96\x5b\xf9\x87\x3c\xcc\x8f\x27\xb0\x19\x5a\x68\xbd\xf2\xd8\xcd\x52\xea\x94\xf7\x35\x5f\xbe\x14\x43\xd8\x2d\xe3\xdb\xd0\x7c\x44\x8e\x90\xb2\x63\xda\x37\xd5\x85\xb1\x84\xf9\xa5\xfa\x86\x2b\x4e\x54\x10\x4a\x9e\x9c\xca\xfe\x8b\xfe\x35\xbb\xfd\xff\xe2\xca\xea\x6b\x3d\x29\x21\x97\x09\xaa\x0a\x89\x23\x05\x57\x3e\x56\xe1\x64\xfa\x2e\xa5\xda\xc9\xd7\xe0\xff\x10\xe5\xfe\xb4\x2d\xf5\x42\x00\xc1\xde\x77\x21\x2e\xc7\x5f\x60\x29\xaa\x71\x45\xcf\xa3\x79\x1d\x59\x50\xa5\xad\xa5\x71\x23\x46\x9a\x05\x39\x5a\x5f\xeb\x72\x82\x95\x08\x2e\x75\xcf\xfa\x3c\x2a\xe4\x08\x75\xe1\xce\x3f\x3d\x5f\xf1\x13\xe6\xf2\x2e\x4e\x1d\x64\x13\x21\x1c\x9e\xdb\xb2\x67\x93\xd7\x1f\x06\xca\x55\xe7\xa6\xa4\x4c\x31\x23\x70\x8f\x4c\x91\xdd\x5e\x19\xc3\x84\x7f\xd1\xbc\x69\xb1\x7e\xab\x08\xaf\x33\xa4\x75\xfd\x13\x6b\x09\xb7\x05\xf5\x0e\xdb\x6d\xbe\x48\x48\x71\xe0\xb4\x57\x3e\x7c\x9d\xb0\xaf\x64\x8a\x8e\xff\x96\xb5\x84\x05\x65\x02\xb9\x5a\x7f\x5c\x08\x17\xe4\xce\xec\x0a\x88\xeb\x62\xe0\xd9\x42\x44\x34\x39\x4b\x10\x56\x32\xb6\x3f\x8a\xdf\xea\x48\x78\xba\xa8\x24\x45\x77\xe7\x75\xc2\x6c\xad\xf9\x3f\x75\x26\xc1\xc3\xe7\xbd\xeb\xd1\x6c\x75\x82\x43\xcc\x91\xe9\x59\x87\x54\x09\xef\xd6\x3f\x16\xae\xee\x96\x23\xcc\x7f\xcd\x27\xb6\x7b\xc9\x30\x03\x99\x57\x9b\x1d\x37\x56\x8b\x12\x36\x2d\x6f\x14\xdc\xff\x70\x09\x0b\x62\x4c\x64\x55\xc6\xf7\x71\x12\x42\x27\x66\xeb\xa6\xae\x53\x27\xd4\x5e\x08\x64\xf7\x6d\xf9\xce\xc0\xf6\x1f\xad\x41\xf5\xaf\xc3\x09\x7f\x16\x9e\x65\xbf\xf0\x36\x83\xb0\x8a\x3f\xdd\x52\xb0\xf9\x08\xe1\xa1\xe6\x88\x94\x8a\xb4\x01\xe1\xc2\xc5\x66\xff\x7c\xb7\xed\x04\x2b\xee\xf6\x97\x2b\xbb\x0f\x10\x32\x45\x34\x16\x96\xb7\x8b\x11\x14\xbd\xbd\xd4\x86\x37\xf8\x12\x7e\x71\xdc\xf6\x97\xd4\xd9\x41\xe8\xcc\x89\x8d\xe9\x4a\x75\x27\xfc\x9e\x90\x6e\xb9\x79\xcb\x9a\xd0\x1b\x21\xb3\xce\x6b\xb3\x28\xc1\xef\x77\x72\xc3\xca\xfc\xe9\x84\xe6\x2f\x8a\x45\x1f\x2c\xe7\x12\xc4\x17\x49\xb1\x2f\x6b\xda\x46\x58\xb6\x48\x69\xf9\x3b\xa1\x71\x06\x6a\x52\xd7\x06\x59\x66\x29\x13\x8c\x0f\xed\x93\x33\xf9\x24\xfd\x5f\x28\x67\xe7\xd9\xdc\x62\xff\xaa\x0a\x2f\x7f\x8a\x85\x16\x7d\x35\x20\x48\x0f\xee\x34\x11\xdc\xe3\x47\x68\xa9\xe2\x4e\x73\xf3\x0d\x60\x01\x57\x6f\x7d\xe5\x1f\x9d\x1e\x06\x06\x9b\x6f\x9b\xb9\x84\x27\x13\x1c\x24\xf8\xb9\x99\x77\x5a\x99\x70\x37\xbf\xb2\xab\xcd\x2a\x88\x30\xcd\x93\xdb\x61\x5f\xef\x33\xc2\xaa\x8e\xd7\x8b\xfe\xe2\xf1\x88\x7a\xd4\x5f\xec\x6a\x75\x37\x1c\x3c\x74\x9d\x70\x24\xb9\xac\x8e\xe1\x10\x4f\x68\x34\x38\xaa\x52\x3c\x78\x98\x70\xb1\x44\xa6\x5f\x42\xde\x91\xf0\xf3\x40\xdd\xa7\xa5\x17\xec\x09\xeb\x52\x8f\xe4\xdf\xab\x56\x27\xdc\x9f\xee\x6c\x3a\xe7\xeb\x7c\x82\xad\x48\x35\x36\xbe\xa8\x26\xb0\x2d\x5e\x3d\xfc\x91\x11\xc7\x44\xf2\xb7\x12\x6f\x0e\x1e\x4f\xc2\x6c\x7f\xe7\x88\x03\x3a\xdb\xe8\x5f\xc9\xa9\xb3\x8c\xbb\x5d\x9e\x45\xd0\x8c\xb6\xdd\x1c\xaf\xd6\x44\xd0\xaa\xef\x71\x7d\xc3\xb9\x80\x70\x95\xcf\xac\x77\xa7\x7f\x20\x0b\x16\xdf\x67\x1a\x5f\x77\x08\x21\x1c\x93\x99\xb2\xc5\xe8\x1d\x83\xa0\xb3\xc7\xb8\xa2\xae\x92\x87\xf0\x52\x66\xfc\x6e\x95\x9c\x1b\xa1\x67\x97\x9e\x64\xda\x89\xa3\x84\x4d\x85\xd6\xfe\x8b\x03\x9f\x11\xd6\xee\xef\x32\x17\xdf\xd9\x42\xd0\x35\x5b\x30\x5f\xc3\xac\x95\xd0\x95\xf5\xf2\x3c\xcf\xc3\xe7\x84\xa6\x45\xaf\x56\x5b\xf1\x95\x33\xa1\xe9\x70\x78\x5a\x57\x42\x1b\xe1\x79\xf1\xca\x67\x07\x8c\x8b\x09\x47\x2f\x85\x79\xf7\xdb\x74\x12\xaa\xf9\xf7\x15\xf4\x75\x75\x12\x5c\x53\x7f\xdf\x77\x3e\x55\x4b\x48\x4b\x4e\xbf\x34\xfc\xe3\x22\x41\x67\x9d\xd7\xe9\xdb\x2a\x17\x08\xbb\x5d\xe6\xd8\x89\x4f\xad\x23\x18\x57\x3d\xba\xe6\x69\x73\x9f\xe0\x55\xdd\x66\x78\x2c\x29\x97\xd0\x22\x2a\x76\x6e\x4c\x33\x8d\x90\x1c\xd0\xdc\x5d\x96\x73\x93\x20\x39\xe8\xc4\xe9\x39\x71\x93\x30\x7a\xfb\xed\xe8\xdf\xd2\x6b\xb3\x64\xac\x44\xba\x82\x90\xaf\x9f\xa7\xdc\x27\x72\x93\xb0\x74\x49\x69\xf3\xdf\x51\x4d\xec\xa3\xca\xbb\xe5\x25\x84\xb6\xe6\x9b\xa6\x91\x76\xc5\x84\x24\x11\xf6\xe3\x11\xf6\xc5\x84\x95\xc1\x9e\x3e\xeb\x37\x4c\x42\x78\xf1\xec\x26\xaf\x14\xc2\xe6\x2b\xbb\xb7\x6b\x9d\x16\x26\xec\xa9\x08\xfd\xfa\xa3\x7a\x3b\x0b\x0c\x14\x87\x9e\x09\x84\x58\x11\x56\x15\x78\xbe\xb7\x1b\x1e\x64\xe0\x49\xea\xea\x11\x17\x83\xcb\x84\x88\x29\xcb\x37\xba\x6d\x32\x21\x14\x69\x2e\x0e\x76\x4e\x5e\x4d\x60\xee\xcc\xb9\xa5\xd9\x2f\x4b\xf8\x74\x6e\x7e\xe9\x3a\xc7\x25\x84\x63\xea\xca\xc1\x1f\xa5\x84\x09\x2e\xc2\xed\x0b\xb2\x46\xb8\x09\x6e\xfb\x1f\xd5\x73\x5c\x28\x60\xe2\xe7\x99\x92\x1a\xfd\x93\xbd\x0c\x0c\xbc\x29\x72\x32\xcc\x2a\x22\xe8\xde\x0d\x32\x8f\xbc\x59\x3a\xb9\x77\xeb\x58\x4e\x29\xfc\x45\xd8\x7a\x69\xf0\x8f\xdd\x9e\x9b\x84\x8c\x19\x6c\x53\xbb\x36\x27\x12\x2a\x4f\x99\xac\xd0\x28\x38\x49\x58\x76\x2f\xbc\xbe\xe7\xd9\x21\x42\xee\x96\xbb\xab\x3f\xdc\x4b\x24\x38\x5e\x28\x3f\xcb\xe6\x9a\x4e\x78\xa2\x3d\xc2\x1f\x6b\x90\x46\x98\x6b\x52\xc9\xcb\x3f\xf2\x94\x70\x46\x6a\xc9\xa2\x9a\xe1\xa7\x84\xdb\x87\x6a\x47\xef\x9b\x55\x11\xc2\x92\xae\xb8\xcc\x98\x1c\xc9\x9e\xbe\xed\xf4\xc7\x25\x9d\xb0\xf7\x60\x71\x8f\xcc\xfd\x7a\x26\x3e\x7d\xb9\x28\xa0\x65\xe2\xc5\x84\xb0\x96\x90\xc2\x9a\x93\x85\x4c\x7c\xb6\xf3\xfa\x28\xbc\x2c\x9b\xb0\xe1\xa1\x4e\xe1\xaa\xbc\x62\x82\x47\xfc\xcd\xa1\xec\xf2\x50\x42\xd3\x51\x31\x4b\x93\x28\x3f\x82\x1c\x82\xc4\x7f\xe7\x7a\x12\xde\xac\xae\xf5\x3c\x13\x5e\x4c\x60\x6f\xbd\x25\x6e\x78\xec\x1a\xe1\x52\xf3\x97\xd4\xbf\xe5\x94\x4e\x46\x51\x12\xc7\xb3\x2a\x4c\x97\x4e\xb4\x17\xbc\xa9\x40\x18\xcc\xb8\x73\x64\xc7\x8d\x39\x84\xdb\x73\x92\xe2\xbf\x69\xef\xa1\x5f\xa3\x3d\x21\x8c\xf1\xf9\x04\x73\xa6\xb0\x8e\x56\xdf\x46\x82\xcd\xde\x0a\xdd\xfa\x6f\x1d\x84\xc5\x33\xad\x8e\x27\x7c\xaa\x25\x5c\x09\xb8\x1e\x10\xcb\x76\x96\x89\xf1\xce\x6b\x87\xb3\xee\x57\x10\x72\xb5\x6a\x36\xab\x6c\xbb\xc5\x84\x1b\xbb\xc0\x72\x8e\xcf\xb5\x84\xd7\xf2\x01\xd1\x42\x5c\x8d\x84\x23\xbc\x51\x07\x12\x6a\x9b\x09\x61\x15\x75\xfb\xbf\xee\xb9\x45\x60\xdb\xcd\x7e\x50\x2a\xa3\x9e\x70\x53\x27\xe9\x95\x82\x53\x13\xe1\xab\x67\x43\x44\x16\xa3\x9e\xb0\x22\xad\xeb\xa3\xca\xe8\x7d\x82\xb0\x78\xfc\xd8\xf9\x69\xf5\x4c\x34\x5f\xd8\xe9\x3f\xb1\xfd\x11\x61\x4e\xc2\xba\x5b\x3f\xa3\x6e\x11\x3e\xf6\xe5\x85\x99\x55\x84\x13\xaa\x4c\xbd\x64\xf2\xee\x34\x13\x4e\xed\xf3\xe4\x79\xb2\x78\x0f\x21\x79\x45\x7c\x63\xf5\xf6\xab\x04\x36\xa9\x19\xb7\xc2\x9e\x94\x11\x92\xe7\x8e\x7b\x6f\x94\xaf\x20\xec\x14\x34\xce\xbb\x22\x57\x42\xe8\xce\xcb\x3f\x58\x71\xef\x32\xa1\x23\x76\xc7\x42\xd7\xaf\xd7\x08\x4a\x3f\x57\xbc\x8c\x50\xac\x22\xfc\x78\xeb\x97\x60\x71\xe5\x0e\x41\x29\xbb\xf3\x4c\x8a\xc4\x69\x26\x36\x71\x3b\xba\xf8\x39\x65\x33\x11\x9b\x64\x5c\x1b\xd5\x9d\xcb\x44\x8d\x07\xdb\xab\xbc\x8c\x3b\x84\x6a\x51\x85\x23\x96\xfb\xee\x33\x21\x9b\xe8\x6d\xce\x60\xde\x21\x34\x9a\x19\xac\xdd\x69\x77\x9d\x20\xbf\xf4\xae\xae\xb1\xff\xf5\xc9\x87\x3b\xc4\xe0\x95\x65\x28\x13\xc5\x71\x33\x63\xf2\xfb\x03\x09\x6d\x4d\xc5\xfb\xe6\x67\x5e\x21\x8c\x99\xde\xba\xf4\x2c\xee\x3a\x61\xc5\x18\x2f\x77\x53\xc0\x05\xfa\x05\xb9\x93\x12\xfe\x39\x84\x65\x6b\xd6\x73\xaf\x88\x4d\x61\xa2\x36\xdf\x79\x46\xb5\xd0\x45\xc2\xde\xe1\x9a\x3e\x87\xb0\x04\x42\xc6\xe9\x70\x83\x1d\x53\x2e\x12\x06\x8e\xdf\x8f\xdc\x5a\x5a\x4a\x58\xb6\x3c\x3d\x3b\x4d\x7d\xf2\x22\xdd\x16\x7e\x26\xe5\xba\x3a\x61\xfe\xe2\xb1\x58\x97\x86\x60\x16\x28\x0c\xe2\xee\xe7\xd7\xce\x84\x60\x89\x39\xb5\xa1\xf3\xaa\x09\x83\x27\x15\x47\xc7\x38\x6d\x08\x3f\x8e\xc4\x2d\xfb\x7d\x3a\x82\x70\x3a\x45\x7d\x61\x46\xe7\x75\x82\xd2\x0f\xd7\xe9\x7f\xcb\xac\x23\xfb\x36\x26\x86\xbc\x63\xc0\xc2\xd8\xdd\xa9\x99\x29\x49\x78\x3b\xb3\x48\xf4\x79\xc5\x69\x42\xcf\xf1\xda\xfd\x41\xc2\xad\x4c\x04\xd0\xd1\x45\x9f\xea\x6a\x09\xdb\x5b\xb5\xdc\xd4\xea\xd2\x08\xbc\xbd\x17\x9f\xdc\xab\xa9\x25\xf0\x9d\xf9\x1a\x3e\xf6\xb1\x86\x30\xc3\xcc\xa8\x89\x11\x96\x46\xd0\xe2\xbc\x78\x67\x57\x6a\x12\xc1\xb7\x64\x59\xf0\x61\xfb\x34\xc2\x36\xc7\x66\xa7\x7b\xe7\xd3\x08\x6b\x2b\x6f\xfd\xae\xf4\xf6\x64\xfe\xda\xff\x68\xcf\xbc\xf7\x05\x84\x61\x45\xd3\xeb\x21\xef\x6b\x09\x9c\x29\xb6\x1c\x5e\x17\x6a\x08\x1c\xa3\x6a\xd7\x9b\x65\x2a\x09\x67\x24\xde\xbc\xf0\x3d\xda\xc1\x84\x57\x41\xb7\xe1\x8e\x49\xbc\x63\x3f\xb5\x2b\x6c\xf2\x9d\xa3\xb1\x33\xc5\xf8\xef\x62\x37\x0e\xdf\x69\x91\xc6\xf1\x04\xc6\x1d\x81\xbb\x39\xda\xf1\x84\xbb\x67\x5f\x2e\x91\xaa\x8c\x23\x74\x1c\xfe\x3e\xf3\xc0\xf2\x10\x26\xf6\xcb\x77\xed\x9a\x6a\x15\x4f\xb8\x66\x6d\xfb\x5a\xe8\xca\x0d\xc2\x0d\x7e\x3d\xcf\xe5\x93\x38\xb5\x5b\x6d\x97\xe1\x95\x02\x26\x2e\x49\x73\xeb\xdf\x6b\xaa\x25\x9c\xd6\xde\x2f\x5a\xee\xd8\x4a\xd0\x50\x6d\xab\x52\xb0\xbd\x49\xa8\x16\x4c\x18\xde\x61\xdf\x4a\xa8\x5f\x52\x78\x68\x6f\x50\x2b\xe1\xd0\xee\xf5\xe5\x5b\x12\xce\x13\x0c\xae\xb5\x54\x4a\xaf\x3a\x4e\x08\xcc\x74\x1e\xcf\x5c\x1f\x45\x60\x9b\xf5\xa4\xa3\x3b\x88\xc9\x44\xd9\xb3\x63\x63\xe3\x37\x22\x09\xb3\x56\x8f\xf5\xff\x5d\x73\x47\xe1\xb1\xe1\xd9\xec\x64\x82\xca\xd1\x6e\x75\x87\xad\x85\x84\x6e\xbd\x33\x91\x5f\xd7\x94\x10\xf2\x4b\x07\x56\xa6\xf5\x19\x10\x1c\xe3\x5f\xbc\x0e\x78\x7f\x8d\x20\xf9\xa0\xdb\xf2\xed\xcb\x1a\x82\xc0\xc2\xae\x11\x47\x8e\x1a\x42\x64\x41\xec\xcf\xae\x97\xac\xd8\x78\xec\x6c\xdb\xca\xe2\x68\x26\xa6\x57\xeb\xcd\xc1\xdc\x13\x4c\x98\x3e\x1b\x67\xf7\xaa\x89\x26\x54\xcf\x58\x97\xcf\x77\x31\x99\x89\x0d\x6b\x45\xf8\x35\xb6\x1e\x23\xbc\xc8\x76\x9f\x2e\x50\x91\x4f\x98\x75\xf3\xe3\xb3\x5f\x31\x49\x04\xa1\xf0\x7b\xab\xba\xe7\x5e\x24\x5c\x5e\x13\xfd\x58\xfd\xe2\x79\xc2\xe1\x85\xf3\x6f\x3c\x9d\x7d\x9a\x70\xe7\xc5\xbe\x79\x7d\x8f\x26\x77\x04\x73\xc5\x29\xc6\x9c\xce\x84\xbe\xa1\xcf\x61\x7d\xdc\x7a\x84\x79\x73\xd6\xd7\xc6\x71\xdd\x61\xc1\x1b\x95\xaf\x41\xc1\x22\x79\x2c\x45\x70\xa0\xdd\xe7\xdb\x82\x08\x16\xb8\xe6\x9a\xe7\x76\x98\x1e\x65\x29\x49\x02\x5f\xc3\x8e\xcc\x3c\xcc\x52\x3c\x07\xcd\x53\x4e\xf9\x16\x12\x2e\x5a\x44\xc6\xde\x9b\x44\xd3\xb7\xd3\xe5\x8d\xff\x8d\xc7\xab\x9d\x6a\xb9\x55\xce\x10\x16\x7a\xb1\xcd\x0f\xb4\x09\x67\xc2\x2d\xf4\x1b\x63\xcb\xac\x4b\x4c\x2c\x7c\xf3\xbc\x30\x7d\xf5\x19\x96\x35\x76\x0f\x45\xb2\x5a\x3d\x0a\x98\x18\xcd\x77\xb1\xf5\xe1\x4e\x22\x1c\x55\x4f\x1a\x7d\xe5\x96\x44\x78\x9c\xd1\xb9\xe0\x49\xcb\x15\xc2\xe5\xc6\x9c\x39\x57\xf5\x7c\x08\xc3\x33\x6c\x16\x97\x16\x77\x30\x70\x56\xad\xf0\xaa\x43\xa3\x28\x41\x6b\xa9\xbc\xde\x4d\x2b\x1b\xc2\xfd\xe3\xab\x8a\x1b\xdf\x95\x10\x2a\xeb\x76\x7d\x77\xf2\xba\x49\x68\x3f\x95\xdb\xa9\x32\x48\x84\x1e\xaf\x97\x9a\x49\x17\x1f\x10\x78\xb2\xd4\x06\x6e\x18\xc6\x11\xe4\xbf\x18\x98\xf9\xf1\x34\x10\x9e\xbf\xf3\xb0\x35\x7f\x59\x4b\xb0\x1b\x99\xee\xd0\xf1\xe2\x0e\x81\xdd\xe8\x6e\xec\xc9\xeb\xb5\x84\xa0\x3f\x3f\xc4\x9e\x4f\x16\x73\x1f\x81\x4f\x2d\xc1\x51\x84\xa6\xda\xe7\x0f\x0f\xd8\x57\x33\x31\xd1\xfd\x66\x5a\xf9\x8b\x12\x96\x51\x84\xc5\x0e\x91\xd7\x7c\xd9\x84\x0e\x9b\x75\x2b\x97\xeb\xa6\x10\xee\x1d\x3d\x35\xf2\x42\xee\x02\x0b\xec\x9b\x9e\xaa\x36\x1c\x39\x48\xb8\xf6\xa5\xf7\x42\xde\xd5\x53\x04\x05\xef\xa7\x2a\x17\x57\xdd\x66\x62\x30\x81\xbc\xbd\x79\xf7\x12\x02\x9d\xd7\x1b\xd8\x85\x95\x13\xe2\xf7\xf9\xfc\x3e\xd8\x52\x4b\x50\xa9\x17\x2e\x5d\x29\xf6\x98\x89\x4f\x43\x87\x86\x76\x89\xb6\x31\x71\xe5\x65\xc2\xe0\x90\xeb\x0b\x26\xc4\x5b\xfa\x8f\x6e\x7c\xfa\x98\x89\xdd\xea\x36\x82\x1d\x21\xb9\x2c\x3f\xb5\x64\x5a\x9c\xdb\x7d\x8e\x40\xc2\x58\x4e\x5f\x84\x50\x8d\x3f\xc1\xfa\xe9\xbb\xbe\xd0\x39\xc7\x09\x46\xb6\x33\x75\x35\x35\x03\x08\xd2\xf7\x1e\x2c\x91\xfb\x1a\x43\x58\xf6\xfc\x28\x7f\x56\x4c\x22\xa1\xf1\xd5\xda\xd5\x99\xb5\x89\x04\x67\x1b\x91\xa3\xbf\x22\x07\x18\xc8\xa9\x4c\xd3\x9e\xf5\x47\x8e\x20\x92\xed\x73\x2e\x69\x34\x9b\x70\xba\xd5\x5a\x47\xff\x42\x26\x61\xb5\x7c\x57\x50\xfb\x9a\x4a\xc2\xed\x9d\x01\x57\x39\x6a\x0c\x08\x77\x0f\xdd\xe3\x0d\x1c\x92\x20\xf4\x4e\xa9\x79\x7b\x71\x9b\x14\x21\xd6\xcd\xb1\xe1\xd7\x89\x35\x04\x11\x9d\x9a\x35\x67\x9f\x7f\x65\xfc\x43\xa8\xc4\x1d\xae\x35\xcb\x14\xe9\x1f\x8c\xa6\x4c\x91\x7f\x38\xcb\x98\x10\x38\xb1\x55\x54\x7e\x40\x9e\x20\xb6\x64\x50\xef\x64\xc8\x2a\x42\xf5\xc2\x9f\x97\xec\xce\x9e\x23\x7c\x4d\xc9\xba\x78\x71\x9b\x30\x81\x1e\x57\x8e\x44\x99\x99\x11\x86\x3d\xf2\x2c\xaf\xd9\xab\x11\x36\xb4\x7c\x9a\xfb\xcd\xf4\x6d\x15\x6a\xd3\xf7\x17\x2c\x93\xd2\x27\x74\x6b\x37\xab\x48\xd5\x39\x11\x64\x5a\x2f\xf6\xba\x5f\x98\x47\x90\x08\xfb\x11\x17\x6f\x24\x4b\xf8\x5e\x23\xe2\x6c\x3d\x34\xc2\x80\xa8\x54\xfc\x3e\x1e\xde\x15\x84\xe2\x0f\xbe\xab\xdd\x25\x92\x99\x48\x4e\xad\x3f\x7f\x4c\xfe\x26\xc1\xfd\x80\x5b\x60\xf0\xcc\x00\x42\x9b\xe0\x9e\x4d\x17\xd7\xe5\x10\xbe\xde\x5f\xa9\xae\x73\x26\x95\xb0\x85\x73\x71\x96\xfa\xc3\x54\x82\xe5\xb4\xc2\xfc\xf7\x1f\x8d\x09\xed\x39\xeb\xbf\xaf\x97\xe2\x25\xb4\x7a\xa8\xb4\xbe\x37\x4f\x61\x81\xd2\xb5\xec\xd0\xb4\xd9\xd7\x09\xc9\xf1\xeb\xe4\xff\xe2\x7f\xe5\x7b\x3a\x8f\x44\xfc\x5a\x4e\x82\x42\xd2\xda\xcb\xcb\x0d\xb9\x09\x5a\x96\x3b\x3e\x36\x36\xec\x60\x62\x23\xf7\xe7\x8d\xbc\x52\x39\x04\xff\x51\x9e\x87\x4a\x5d\x3e\x84\x8d\x73\x04\x8c\x38\xc7\x15\x08\xba\x5d\x21\x01\x79\x2a\x8a\x84\xd3\xec\x67\x42\x2a\xc6\x3a\x18\x50\x92\xd2\x3e\xc9\xe4\xd1\x21\xdc\x1e\x73\xd2\x6d\xb5\x3d\x4b\x98\x88\xec\x93\x2e\xee\x5a\x46\xf8\xf0\x66\xc8\x54\x6d\xea\x5e\x16\x88\xae\x2a\xd6\x5e\xb4\x64\x0f\xe1\x54\x41\x55\x23\x77\xeb\x6c\x82\x61\xc0\xaf\xaa\xa9\x73\x0c\x08\x5f\xa2\xe7\xd7\x4e\x55\x93\x25\x5c\x0d\xb9\xd3\x20\x32\xd1\xc9\xc0\x99\xcf\x99\xdf\x57\x7a\x72\xd0\x3f\xe8\xbb\x88\x46\xbf\xb2\xfc\xc5\xf8\x87\xc7\x7e\x25\x3a\xc7\x9e\x2d\x20\xcc\xb6\x78\xad\x24\xa2\x7c\x88\xe0\xa2\x2e\x62\xb5\x87\xb1\x85\xa0\x6c\xf8\x7d\xde\xc1\x2e\x7e\x42\xbf\xce\x19\xa9\xfc\x6f\x86\x04\x7f\xd1\x87\x99\x8a\xdf\xa6\x10\x1e\xe5\x7d\x72\x33\xeb\x57\x21\xf0\x1b\x8f\x55\x8e\x97\x3a\x13\xf6\x9e\x98\x5f\x7f\x5b\x57\x85\x70\xc0\xa4\x47\xdc\x7c\xf2\x9f\xd2\x94\xaf\x79\xd1\xf7\x97\x1a\xe1\x15\x47\xe1\x83\x1e\x5b\x2b\x42\xfe\xe6\x5d\xcd\xcc\xfb\x23\x0c\x08\x64\x58\x65\x89\x69\x98\x12\xee\x14\x3f\xea\xbe\xbc\xd0\x81\xf0\xeb\x9b\x58\x59\x3b\xef\x2a\xc2\xf2\xba\xf9\xeb\x4f\x26\xfc\x62\x20\x3a\xcd\xea\xad\xfc\xc3\x59\x84\xb3\x79\x0f\xcb\x73\xea\xd6\x11\x12\x87\xe2\x66\x3c\x0e\x5e\xc0\x82\x8c\xc5\x85\x12\xee\xb1\x72\x04\xe7\x42\xaf\xd7\xba\xdf\xa7\xb2\xe0\x50\x61\xe7\xc0\x40\xd9\x16\x82\x10\x1e\x06\x3e\x5e\xc3\x60\x81\xac\xc9\x6e\x8b\xa7\xb3\xbc\x09\x3b\xa6\x05\x34\xe4\xed\xfa\xc1\x80\x63\x1c\x8f\xc0\xd5\xf1\x09\x16\x2c\x59\x10\x77\x7a\xd7\xe4\x71\xfa\xff\x0f\xad\x98\xcb\x65\xcc\xd4\x2d\x84\xe4\x7a\xb1\x5c\x89\x4f\xc5\x4c\xcc\xb6\x60\x63\xfb\x5b\x5c\x5e\xec\xe5\x1c\x8b\xe0\x20\x14\xf3\xef\x36\x98\x5a\x7c\x8d\xb0\x25\xae\x7f\xa7\x47\xd1\x79\xc2\x1f\xbd\x6d\xc9\x27\x85\x9f\x12\xfa\xcc\x25\xd9\xd2\x2d\xbd\x09\x85\xe2\x3b\x3e\xea\x88\xc9\x10\x66\xfe\x32\xac\x3e\x7b\x62\x26\xa1\x4e\xf8\xd8\xb1\xf2\xb9\x7a\x2c\x88\xf2\x0c\x92\xe6\xdf\xbe\x8f\x05\x4a\x50\x55\x3f\x70\x66\x3f\x41\x4d\x62\xcd\xcb\xfe\x4c\x75\x82\xcd\x52\xf7\xa6\x20\x0b\x1d\x82\x97\xa9\xd6\x03\x92\xd1\x21\xcc\xcc\xf7\xdf\xb9\x60\xda\xbd\x2a\x6c\xb5\x0f\xca\x59\x97\xc3\x45\xd0\x1c\x3c\xc5\x59\xc9\x2e\x40\x78\xc1\x91\xfa\x71\xfd\x91\x53\x2c\x28\x9c\x56\xfb\xed\x7e\x52\x24\xa1\x7b\x93\xa0\x5b\xa4\xf0\x34\x42\xee\x8b\x82\x32\xde\xbd\xd1\x2c\x98\xf1\xe4\x80\x58\x41\x75\x38\x61\xbb\xcb\xe2\x58\xbf\xdb\xf3\x08\xf9\xbe\x33\x4d\x6d\xa3\x65\x08\xc6\xe7\xdc\x5c\x32\x4f\x99\x13\xf4\x82\x17\x31\x7f\x0a\xfa\x11\xba\xeb\xd9\x53\xc7\xce\xbf\x60\x20\xf7\xf6\x6e\xa6\xf7\x85\xa9\xf4\x0f\x31\x12\x6f\x94\x53\x95\x7e\x30\xfe\x61\x42\x3e\x48\x6f\x95\xed\x5a\x82\xf7\xb3\x7e\xd1\xf3\x73\x7c\x08\xb3\x7f\xde\xbf\xc7\x98\x2c\x99\x1d\xdf\x9f\x36\x1e\x02\x03\x61\x8e\x63\x1a\xaf\xdf\xa8\x12\x3c\x2b\xbb\x6b\xd7\x4f\x91\x26\x7c\xd8\x39\xad\xc6\xba\x24\x82\x05\xc7\x23\x4b\xc8\xa3\xa0\x93\x01\x9b\xd3\x52\xe1\xf2\x1f\xaa\x09\x5f\x8c\x3f\x9f\x3b\x5a\xec\x46\x98\x33\xbc\x3d\x3e\x55\xd4\x80\xf0\x79\x85\x23\x6f\xdf\x2c\x71\x82\xcd\xdb\xe3\x3a\x3f\x3d\xdc\x08\x36\x33\x6e\xa4\x7b\xf0\xa8\x13\x6e\x88\x79\x17\x36\xbd\xe3\x25\x68\x5c\x15\xe0\xe4\xaf\x0c\x25\x30\x9f\x73\x8e\xa9\x17\xfb\x11\x06\xa2\x57\xac\x10\xf6\xb0\x20\xf0\xcf\xa7\xc7\xed\xcf\xae\x33\xf0\x39\xdd\x92\x93\xcf\x46\x95\xd0\x68\x55\xab\x2a\xba\x3f\x8d\x05\xbf\xcb\xf7\x27\x3b\x09\x28\x10\xb8\xa3\xea\xa6\x1e\x4c\x12\x26\xa8\xcc\x5f\xb0\x6b\x44\x49\x88\xb0\x2f\x79\xfc\xf8\xbe\x11\x21\x82\x8d\xd7\xc7\xa1\xe3\xd2\xd2\x2c\x90\x08\x8a\x6b\x5f\x2b\xf0\xa0\x0a\x4e\xaf\x1e\xad\x8b\x14\xee\xae\x42\xbe\xa9\x68\xf1\xd4\xb8\xd3\xf4\x1f\x48\x9d\xa1\x71\x4f\x91\xeb\x1b\xe3\x1f\x2e\xae\xb2\xf7\xb4\xd9\xc8\x41\x90\x9c\x3e\xf5\x92\xaf\xc5\x4d\x82\xeb\xd7\x99\x32\xee\xf1\x35\x84\x9b\x6c\x36\x12\xa3\x6e\x85\x84\xf1\x83\xcb\xf2\xba\x96\x18\x11\xf8\x1e\x9e\xf7\xf5\xf1\x32\x24\xb0\x1f\xe2\xf1\xe6\x0c\x55\x22\xac\xf0\x1c\x51\x8c\x32\xaf\x21\xcc\x1e\x7f\x9f\x16\xab\xf6\x84\xa0\x95\x38\x1c\x7b\xe8\xd4\x3a\xc2\xa9\xba\xba\x55\x83\x77\xad\x09\x0f\x4b\x2d\x05\xc2\x74\x16\x12\xcc\xd6\xcd\xe9\x32\x1f\x3d\x41\xb8\x60\x26\xfa\x56\xb2\x64\x33\xe1\xa0\xdf\xb1\xa1\xeb\x4b\x96\x12\xe2\x38\xdf\x67\xfa\x75\xe9\x13\x7a\x8b\x17\xf0\x05\x8b\xcf\x27\x08\xce\xcc\x78\xd8\x78\x82\x08\x6a\x07\xb3\x65\xb8\xff\x88\x11\xb2\x3f\xbe\xd5\xfa\x79\x4a\x97\xf0\x24\xc7\x37\xf0\x74\x66\x35\x03\xab\x72\x0a\x55\x6c\x07\x2f\x32\x51\x97\xf3\xe5\xe6\x3a\x09\x23\x82\x35\xdf\x87\x18\x9a\x2a\x40\xc0\x98\x5f\xac\xd7\x72\x35\x42\xef\xd1\x77\x3d\x4a\x93\xdb\x56\xb4\x85\xfd\x66\x1f\xe3\x12\xc2\xb4\x9e\xc4\x5b\x47\xbd\xad\x09\x07\xc2\xb7\x37\xf8\x71\xf5\x32\xfe\x41\x2f\xe8\xad\x97\x80\x61\x23\x03\x9b\x56\x5e\x3f\x32\x8d\xf4\x09\x06\x89\xdd\x8e\xe6\x07\x96\x12\x8a\xc7\x6c\xa2\x9a\x07\x57\x10\x96\xc8\xef\x52\xa8\x39\xc5\x4f\xa8\xca\xfd\xfd\x26\x66\x6a\x1e\x13\x8b\xc3\x79\x67\x6f\x1a\x0a\x65\xe2\xd7\x8f\xfe\xcc\xe4\x88\xdf\x0c\x1c\x9c\x7b\x75\xa5\x89\xf0\x12\xfa\x57\xcc\x92\x2e\x87\x57\x5e\xe8\x61\xc1\xbd\x93\x85\x17\x74\xf6\xcc\x25\x96\x32\xf7\xed\xa6\x63\x3f\x97\xd0\x7f\x40\x4d\x36\xdd\x71\x85\x9f\x0f\x03\x9b\x6e\x5f\x16\x1b\xbb\xd4\x4a\x98\xf7\x50\x91\x8f\xd9\xb7\x8d\x50\x70\x68\x58\x63\x8f\xb5\x11\x0b\x0e\x4e\x88\xe6\x34\xc5\x7e\x63\xa0\xac\xcd\x72\xb1\xdf\xb5\x29\xf4\x0f\x46\x86\xbb\xcf\xbd\x4f\x9e\xce\x82\x7a\xe3\x53\xfe\x9f\xbc\x87\x18\xd8\xf5\x2b\xed\xd5\x9a\xee\x21\x06\x42\x79\x95\x0a\x0c\x32\x39\x08\x6f\xe6\x2e\xec\x7f\x6a\x39\x9b\xe0\x6c\xfe\x8a\xef\x65\xec\x4c\x16\x70\x14\xc9\x46\x74\x66\xba\xfc\x17\x7c\xb6\x1f\x3e\xe9\xeb\xc5\x4b\x58\x54\x79\x41\xa1\x66\x37\x37\x21\xd2\x6e\xca\xe0\x48\xcd\x2a\xc2\x95\x97\x39\x97\xeb\xa5\xd7\x12\xba\x03\x8e\xae\x28\x95\xd2\x20\x1c\xe3\x73\x6f\xe4\xba\xb3\x94\x30\xf7\xdb\x9b\x51\xf7\x87\x72\x04\xc7\xb3\xde\x8d\xba\x2e\x2b\x09\x02\x32\x86\x0f\x2f\x7a\x2b\x12\x9e\xce\x4b\x36\x13\xd4\x1c\x60\x40\x9d\x63\xd4\x34\xfb\xde\x6f\x06\x12\x16\x58\x8c\x1c\x84\x22\x41\xed\xe6\xf6\xd1\x50\x93\xfd\x2c\xe8\xef\x13\x61\x9f\xf9\x79\x3f\x61\xf7\x2e\x9b\xe4\x0d\x1c\xf5\x84\xd3\xa3\x85\x9e\xa2\x92\x01\x04\x9f\x4c\xf7\xb0\x30\xbb\x61\x06\x64\x1e\x7d\xd4\x59\x7c\x4f\x94\x30\x22\xc3\x37\x43\xaa\x31\x91\x70\x7c\x66\x44\xda\x1f\xb3\x69\x84\xed\x3b\xc3\x3f\xec\x7d\x63\x46\x98\x5b\x27\xa2\x6f\x57\xa2\x49\x10\x58\xf6\xbe\x52\xf9\x9c\x1d\xe1\x67\x70\x64\xb5\x5a\xb7\x14\x41\xae\x62\xcb\xb3\x4b\x4f\xf9\x08\x51\xc7\xd8\x14\x53\xf3\xd9\x08\x1d\x22\xf1\xc7\x77\x28\x5a\x10\x62\xa6\xbf\xae\x7e\xbd\x69\x09\x0b\x1a\x4d\x6f\x5f\x65\xf3\x53\x25\xf0\x95\xa5\xf4\x9c\x17\xd3\x21\xf4\x3e\x94\x35\x49\x54\x50\x66\xc1\xa9\xae\x67\x03\x35\x93\x47\xb5\x7b\xf3\x2a\xe5\xe5\xb8\xe4\x59\x50\xf6\xc6\x3f\x76\xed\x47\x77\x42\xb1\x52\x93\x8a\xfe\x62\x09\x16\xf4\x27\xb4\x37\x30\x66\x4d\x27\xec\xff\x2c\x7a\x57\x7e\xdd\x32\x42\xf8\x3c\xc9\xab\x75\xe7\xf5\x09\x5b\xd2\xfd\x8c\x18\xd6\xbc\x84\xb6\x39\xc5\xab\x8c\x1b\x6e\x12\xec\xa7\xbc\x0f\x14\x1d\x55\x21\x3c\xb8\xc5\xf5\x7a\x5b\xba\x2e\x61\xa6\x4c\xef\x5d\xd7\xc7\x0b\x08\xa6\x82\x96\x47\xac\x0e\x26\x13\xc6\x78\xce\x5b\x7d\x9d\x38\x4a\x28\x3a\xd5\x70\xca\x44\xfe\x33\x03\x69\x6b\x9d\x38\x9d\x76\x1d\x21\x8c\x8f\xb9\x08\x5a\xa7\x67\x11\x2a\xdb\x16\xe7\xcf\xf1\x6f\x20\x5c\xd1\x6d\x4f\xdd\x77\x20\x8f\x70\x6f\xf3\x37\xb1\xa3\x05\x1a\x84\xfd\x61\xa1\x36\xee\xfe\xab\x08\x2f\xab\x2c\x66\x5d\x11\x96\x63\x41\xf5\xe7\xd2\xad\xa7\x76\xfe\x66\xfc\xda\x3c\x50\xda\x75\x71\x16\x21\x63\xd9\xc9\x79\x36\x29\x6e\x84\x24\x6e\x71\xb6\xe5\xde\x6e\x04\x3b\xab\x75\x35\x32\x6d\xc7\x59\xca\x2f\xf3\x59\x7e\xb6\x23\xb3\x09\x4b\x35\x67\xb9\xf2\xae\x09\x63\x62\xe0\xe4\xce\xc0\x4f\x15\x13\x8c\x7f\x08\x34\x59\xb6\x46\xae\x6b\x82\x81\xd5\x43\xb9\xb7\xb7\x24\x9d\x23\xa4\xd7\x1d\xe1\x89\x59\x3d\xb9\x2d\xa7\x7e\xbe\x15\x71\xbe\x88\x89\xe4\x4b\xaa\x99\x52\xe5\x7e\x84\x07\xdd\x85\x22\xee\x99\xd3\x27\x5f\xcf\xd9\x5b\x3e\x6f\x98\x7c\xd1\xae\xf7\xae\xf0\xe6\x10\x22\x2c\xe7\xff\x63\x3d\x7e\xb7\x8d\x81\xf5\x82\x6c\x47\x63\xe4\x66\x13\xa2\xfd\xb7\xfb\x17\x98\x72\x10\x04\xe4\xa3\x63\x95\x96\xf9\xb1\x20\xf0\x2c\xe3\xbe\xd8\xdd\x87\x55\x38\xb0\xaa\x41\xf3\xce\xb0\x28\xa1\xc1\xf5\xdd\xf0\xb1\xca\xeb\x84\xad\x92\x0f\xde\xfc\x45\x8b\x63\xb9\xd3\x8e\xe3\x17\x08\x5c\x72\x56\x42\x3c\x1b\x72\x08\xca\x63\x56\x92\x76\x23\xb9\x84\x5b\xfe\x5c\x95\x51\xbf\x73\x09\xd5\x57\x5e\xf6\xa8\x6d\x77\x25\xd0\x73\x3a\x1e\xed\x15\x44\x28\xfe\x2c\xd4\x28\xed\xee\x4a\xf0\xf3\xfa\x73\x56\xd4\x66\x3a\x21\xe5\xf0\xb2\x62\xc3\x69\xd3\x09\xd1\xfc\xe3\x21\x61\x4f\xfd\x08\x3c\x92\x05\x8e\xba\x27\xad\x08\xea\x47\xee\x74\x4a\xb8\xd8\x11\xb6\xc8\x6d\xed\x7c\x77\xab\x9d\x89\x70\x0e\xf9\xe8\xef\xf5\xe7\x09\x85\x0d\x29\x39\xfe\x81\xda\x04\x6f\x93\x96\x66\x5b\x0e\x3f\x82\xe9\x09\xfd\xa3\xb3\x94\x54\x09\x32\x25\xb1\x16\x21\x6b\x72\x99\x50\x3c\x2c\xf2\xd6\x63\x77\x32\x41\x76\x61\xe6\xf7\x0d\x8b\xb3\x09\x8a\x53\x3e\x46\x6b\xbc\xdf\x44\x68\xe6\x36\x15\xa9\x73\x96\x27\x98\x4e\xb5\xae\x35\x8a\x10\x22\x8c\x95\x71\x9d\x7f\xe5\x75\x8e\xf0\xa1\xf3\xdd\xb5\x6d\x2d\x27\x98\x58\xa0\x92\x52\xfe\xc7\xdb\x91\xb0\x77\x2d\x43\xe6\xaa\x9f\x0a\x41\x3f\xe9\x4a\x0b\xef\x71\x69\xc2\xc2\x29\x0e\x05\x62\x31\x17\x08\xcb\x07\x7f\x0d\xae\x4d\x2c\x22\xe4\xec\xf5\x5b\x29\x11\x35\x85\x10\xf3\x76\xe7\x9c\x9c\xd6\x19\x84\xa7\xbb\xd8\xca\x67\x9b\x2c\x22\xb8\xca\x74\x27\x09\xad\x5f\x49\xf0\xd1\xdf\xbe\xf3\x8a\xa4\x0f\x41\x9e\x02\xaf\x6c\x7e\x1e\xcc\x52\xa4\xa2\x9c\xf7\x19\xa8\xb5\x30\xe0\x3e\x7a\x6a\xad\xf0\xd4\x4f\x0c\x40\xd9\xea\x94\xfa\x5e\x1b\xc2\x9c\xed\xbd\x9f\x6e\xe7\xc5\x12\xde\xee\x78\xe0\x92\xe5\x28\x47\x50\xf1\xd9\x15\xa9\x81\xd7\x0c\x3c\xb2\x99\x13\xf5\xbd\x7c\x2e\x61\xa8\xbf\xb2\xce\xc1\x28\x9b\x10\x2e\x52\xe6\xe2\xfc\x79\x26\x21\xf2\xec\xfa\x94\xe4\x68\x0b\x82\xe3\xcf\xb1\x57\x12\x47\xb5\x08\x03\xb3\xb7\x69\x3e\x6b\x14\x24\x84\x3d\x34\xf3\x38\x7c\x62\x0e\x81\x8d\xeb\x43\xff\x91\x77\x43\x0c\x78\x49\xcc\xea\x30\xfe\x08\x06\x78\x3e\xc5\x7a\x33\x04\x95\x08\x6b\x56\xff\x5e\xde\xba\x54\x8b\xa0\x91\x58\x55\x60\x6f\xa4\x46\x48\x39\x79\xf2\x46\x81\xd2\x54\xc2\xd2\x2d\x23\x89\x9d\xec\x62\x84\x93\x09\x25\x86\xc9\x5f\x04\x08\xda\x17\x78\x04\xb9\xe2\xa6\x10\xca\x0b\xcf\xc4\xbc\x0b\xb2\x21\xd4\xad\x6d\x6a\xa7\xcd\x7a\x04\xcf\x7c\xff\x03\x49\x73\xaa\x09\x49\x1f\x83\xa7\xdb\xd1\x52\x42\x2e\x87\xbc\xf5\x0c\xa9\x38\x96\xd2\x71\xa9\x55\xb5\xa5\xed\x0d\x03\x1c\x57\x05\xa7\xf3\x7e\x5f\x42\xd0\x0d\xcf\xca\xd4\x19\x5b\x43\x48\x2d\x4c\xf9\x68\xa2\xb5\x8c\x60\xb2\xc4\xb2\xe2\xf4\x0a\xeb\xff\xf7\xad\xd3\xca\x84\x10\x03\x63\xe3\xe2\x01\x59\x82\xb3\xac\xa9\xd7\xf1\x3f\xaa\x84\xee\x9a\x2b\x39\x2f\xf5\x56\x13\xb2\xb2\x9d\xc2\xbd\xae\x86\xb3\x60\x77\xcf\x2a\x55\xb9\xc1\x1d\x84\x67\x3f\xfe\x78\x0a\xa9\x9d\xab\x42\xec\xf1\x2d\x21\xdf\xa2\x87\x19\x48\xe6\xce\x37\x12\xdb\xb6\x8a\xfe\x41\xf5\xfe\xee\x95\x8d\x6b\x5f\x54\x61\x41\xe5\xfd\x90\x2f\x1a\xd6\x84\xf1\x43\x5b\x03\x1a\x6e\x69\x13\x04\x15\xde\xd7\xce\xe7\x52\x21\xac\xbb\xf8\x3d\xd9\xc6\xe5\x09\x03\x91\xf1\xf7\x6d\x42\xf8\x67\x10\xb4\xc3\x85\xbe\xa9\x8b\x6b\xb2\xe0\x99\x61\xdc\x02\xdd\xde\x78\x06\x2e\xc5\x66\x1d\xf6\x6f\xdf\x4f\x30\xfd\x61\xf3\x71\xf5\x9e\x22\xc2\x61\x37\xa5\x5b\x7f\x31\xfe\xff\xf1\x5d\x9f\xe1\x5c\xff\xff\xff\xff\x33\x2a\xa3\xa1\x61\x55\x22\x92\xd1\x32\xb3\xea\x75\x27\x29\x09\x49\x56\x85\xc8\x68\x28\x54\xd2\x52\x4a\x54\x22\x91\x90\x51\x84\x64\x25\x3b\x23\x9e\x22\x29\x22\x23\xa1\x92\x55\x52\x69\x48\xb8\x91\xf4\x3f\xea\xc4\x87\xef\xf1\x7b\x1f\xff\x73\x97\xe3\x7a\x7f\x9c\x72\x3c\x3d\x5e\x8f\x7b\x65\x40\xea\x1b\xbf\x9c\xbf\xd7\x8f\x43\xcc\xf2\x3e\x19\x82\xf2\x33\xb3\x93\x87\x5a\xff\xb0\xb0\x5c\x59\x44\x33\xa0\x72\x31\xc1\x89\x6d\x95\xb8\xd9\x1b\x25\x82\xca\xd3\xed\x79\x39\xb5\x97\x09\xe6\x99\xda\xde\xce\xbd\xc7\x09\xab\xbe\x97\xaf\x1c\x5e\xb3\x8d\x50\xbb\x4d\x81\x5d\x5f\x62\x80\xf0\xba\x7a\xc1\x9e\x4d\x67\x62\x09\xbb\x3b\x6e\xcc\xaf\x90\x19\x20\x18\x39\xea\xf9\xe5\x47\xd6\x12\xfc\xc4\x84\x12\xe8\xc7\x7c\x42\x5f\x60\xe7\xa9\xa6\x1f\x53\x09\xe1\x5e\x1a\xb6\xfb\x8f\x4e\x26\x48\x59\x1a\xb4\x9c\x52\xfd\xc1\xc2\xae\xd7\x59\x35\x7c\xe7\x24\x09\xe7\xba\x22\xd6\x55\x48\x8d\xb2\xb0\xb6\x6e\x52\xe4\x89\x23\xaa\x84\xbd\x01\x09\x1b\x0c\x46\x15\x08\x59\x39\x7e\xe6\x0b\x07\x66\x12\x6e\x7d\x3d\x98\xd2\xf5\x60\x2b\xc1\xfb\x8a\x43\x92\xa6\xaf\x34\xc1\x40\xf4\xed\xb6\xc2\x87\xeb\x09\xf5\xb6\x73\x4d\xe7\xbe\x75\x60\xb0\x52\x7c\xb4\x35\x77\x74\x17\x41\x8b\xf4\x54\x59\x5a\x52\x04\x03\x0d\xb6\xed\x21\x6d\x3e\x84\xd3\x8f\x06\x6e\x78\xe9\xd7\x11\x0c\x5c\xa4\x3d\xc5\x21\x47\x28\xff\x38\xdc\x3d\x38\xa4\x41\xb8\x32\xd8\x79\x24\xc6\x88\x8f\xb0\x38\xc1\xd8\xea\x8f\x9a\x32\x21\x72\xea\xcb\xf0\x6d\x33\x14\x09\x3c\x67\x3d\xc6\xbe\xcc\xf5\x20\x6c\xbe\x7a\xec\x71\xa0\xfe\x6b\xc2\x68\xb2\x89\x0c\x7f\x9d\x38\xc1\x3c\xf7\xd7\x5e\xed\x96\x47\x84\x0b\xfe\x1a\xf7\xfe\x81\xa5\x58\xee\xd4\xc7\x17\x57\x0c\x26\x53\xf6\x98\x94\x92\x2d\xc1\x6f\xec\x79\xa8\xfd\x7b\x36\x42\x6f\xfd\x93\xa6\x31\x52\x26\x6c\xaf\xbb\x77\xa3\x31\xd1\x90\xd0\x29\xb9\xcb\xbe\x3d\x5e\x88\xa0\x26\x6b\x5c\xfd\x6e\xe3\x31\x42\x67\x98\xc3\xe1\xad\xd9\x05\x0c\x84\x73\x84\xae\xd5\xaf\x4f\x62\x60\xf8\x73\x49\xbb\xfc\xba\x52\x06\xbc\x0e\x46\xfe\xbe\x79\xf2\x84\xc2\xd0\x69\xd3\x2f\x88\xdc\x65\xf0\xb9\x3c\x8d\xcb\xcc\x87\x9b\xf0\x5e\x7f\xef\xfa\x9b\xf9\x07\xff\x0b\xe6\x8a\x9c\x87\xf7\x3c\x79\xca\x42\xf6\x85\x85\xd8\x91\x07\x16\x2a\x36\x4e\x9f\xf6\x48\xe9\xef\x53\xeb\xce\xa8\x33\x2f\x3f\x37\xe1\x5a\x5f\x92\x87\xc6\xd0\x3c\x82\x8d\x0d\xaf\xfd\xf4\x3e\x47\x02\xc9\xdc\xd6\xfc\x5a\xb4\x8b\xd0\x15\x92\xb0\xca\xf0\xeb\x74\xc2\xb1\x48\x52\x5f\xae\xb6\x87\x70\x58\x49\xee\xd6\x54\xf7\x65\x84\xbd\xed\x76\xbb\xc8\x7e\x31\x21\x53\xe3\xfc\xc2\x7d\xfb\x4b\x08\xef\x9a\xa3\x17\x26\x8c\x6d\x26\x94\xe4\x6f\x88\x7d\x5f\x60\x4d\x90\x32\xcd\x6e\x0b\x08\x2f\x27\x54\x4b\x8d\x56\xf5\x96\x86\x11\xd2\xf2\xdc\x8b\x4e\xb4\x9b\x12\x76\x27\x0f\x9d\xde\x5d\xc4\x41\x38\x3f\x5a\x1a\x34\xf9\x1b\x27\xe1\xbc\xdf\xb2\xa0\x49\xc9\xf2\x84\xb4\xa4\x35\x9c\xc1\xc3\xd2\x04\xd7\x03\xb4\xf9\xed\xaa\xe9\x04\xe5\xfc\x61\xb1\x41\xf3\xb9\x04\x25\xb6\x2d\x21\x7b\x87\xb5\x09\x81\x8a\x3d\x97\xab\xa6\xdd\x24\x54\x67\x3a\x65\xa7\x4c\xb9\x44\x78\x7e\x3a\xed\x5c\x74\xfd\x36\x42\xc1\x27\x0d\x57\x81\xd8\x63\x04\x6f\x1b\xae\xfe\xab\x92\x9b\x09\xfe\x2f\x9d\x7f\x24\x88\xae\x21\x1c\x6d\x6f\x7f\xb2\xfb\xef\x7f\x0a\x5f\x41\xd1\x89\xc1\xd3\xdf\x59\x68\xb0\x08\xa9\xbe\x52\x64\xc5\x60\xea\xce\xcb\x3f\xaa\x72\x6c\x09\x1b\x9f\x04\xf8\x36\xae\x5e\x4d\xe0\x56\x65\xfe\x6c\x4d\x74\xf9\xfb\x6c\xb9\x94\x64\xd7\xec\x47\x48\x0f\x87\xec\xb3\xe6\x03\x04\x5e\xdf\x07\x5a\x1d\xfb\x84\x08\x02\xb1\xc7\x42\x1d\xae\xcb\x13\x1c\xc3\x7e\x1f\x10\x4b\xf9\xce\xc2\x59\x1b\x97\xbc\x93\x31\xf1\x0c\xb8\xfa\x39\xe8\xd7\xa3\x54\x06\xf7\x3d\x5f\xd8\xf5\x75\x38\x10\x66\x36\xfc\x7c\x2b\xbc\x36\x85\x81\x83\xf3\xfb\xe7\x9f\x17\xdd\x20\x58\x9e\x61\x4d\x13\xf3\xe4\x24\x70\xf1\xfc\x08\xfc\xb6\x20\x8e\xc0\x26\xe1\x16\xfe\xdc\xf6\x31\xa1\xe0\xdc\xfc\xba\xdf\x9f\x82\x09\x01\x3f\x8a\xe4\xce\x75\x27\x10\x4c\x0f\x96\x04\xd6\x16\xca\x13\x96\x35\x27\xc4\x56\xd7\x83\x85\x0e\x2d\xbb\xd5\x55\x12\x8a\x34\x0e\xaf\xeb\xfd\xce\x69\x82\x1c\x04\xf6\xf3\x76\x02\xc7\x9b\x14\x08\x9e\x07\xe4\x79\xc5\xb8\x4f\x12\xde\xcd\x7f\xf1\x4d\xff\xa9\x01\xc1\x42\xf5\x97\x53\x04\xaf\x11\x81\xeb\xfd\x93\x96\xab\xba\xd2\x04\x47\x53\xa7\x61\xde\x64\x47\x82\x19\xf3\xea\x26\x9b\x0d\x1b\xc1\xd5\x8f\x6f\xc5\x55\x4d\xcf\x09\x68\x2b\xf8\x9a\x53\x7d\x2e\x8c\x50\x3b\x77\xf0\x84\x98\xea\x51\x82\x44\xd9\xdb\x80\xc1\x4f\xc6\x84\xe8\x45\x45\x6b\x8f\x2d\x52\x27\x04\x1e\x75\xb9\x21\xeb\x3b\xc0\xc2\x0c\xed\xf3\x4d\x5f\x6d\x67\x11\x3c\x6d\xff\x38\x59\xd9\xed\x22\xe8\xdc\x10\x2b\x1f\xd1\x55\x23\x78\x1d\x19\xa9\xb9\xd0\x78\x95\x20\xab\x78\xe9\x54\xc1\x9b\x74\x82\x95\xb3\xc8\x36\xe7\x31\x71\x42\x9c\x80\xa6\x7e\xae\x35\x58\x98\xfb\xc5\x5f\x55\xf6\xe9\x06\xc2\x95\xc2\xc0\x90\x6d\x16\x87\x08\x8d\x8a\xfb\x7a\x4b\x4e\x6c\x22\xe4\x78\xbf\x52\x69\xe9\xf3\x24\xb8\x17\xc6\x5b\xa8\x5d\x3a\x46\x50\x88\x55\x56\xea\x5d\xd2\xca\x42\xe4\x9f\xcb\x36\x21\xf3\x74\x69\x1c\x1c\x93\x53\x3a\xc4\xf6\x29\x12\xe2\x56\xcd\xc8\xb8\xf4\x58\x97\x70\x7d\x5a\x99\xc7\xb1\x0d\x8a\x84\x37\x7e\x7e\x0e\x25\x22\x0e\x04\x8e\x75\xa2\x4d\x8b\x92\x77\x13\x14\xdf\x19\xeb\xf6\x6e\xb1\x24\xdc\xe7\x8b\x93\xbd\x27\xa0\x4d\x10\xb8\xf2\xec\x11\xaf\xe5\x01\xc2\xec\x9f\x97\xe3\xbf\x0d\x09\x10\x7e\xbd\x69\x13\x3a\xce\xd9\xc7\x42\xab\x9b\x6d\x5a\xd9\xbe\x29\x04\xef\xde\x12\x47\xd9\x4c\x45\x82\x83\x3d\x63\x1b\xfa\x99\x83\x20\xa5\xa3\xb7\xb6\xf5\xd9\x2c\x82\xf7\x0f\xbf\x6b\x46\xfb\xe4\x09\x9f\x4f\x9f\xe8\x39\x29\xc3\xfd\x5f\xd8\xcc\xcb\xbb\x60\xce\x55\xf6\xff\xc2\x91\x8e\x0d\xaf\xd6\xae\x7d\x53\x0c\x99\xfb\xd9\xeb\x63\x67\x2f\x23\x54\xef\xfd\x16\xd9\x3f\x24\x47\xa8\xb7\xb3\xc3\x1a\xf6\x0c\xc2\x5c\x5e\xfb\xae\xd5\x7f\x71\xdc\xf8\xf8\xc8\xff\x85\x4d\x62\x9e\x92\xf6\xb1\x78\x82\x75\xb5\x80\xfa\xa3\x4d\x8b\x09\x03\xf7\xb6\x6d\xa7\x9a\x36\x02\xdf\x8e\x87\x11\x07\xcf\x3d\x23\x94\x79\xbc\xca\x4e\xaf\x6e\x23\xb0\xac\xfd\x5d\xe6\x7e\xcf\xfd\xfb\x49\xfc\x39\xb6\x5c\xfa\x08\xa1\xad\x63\xd1\x3d\xdf\xe7\x11\x04\xff\x47\x2c\xb6\x69\xf2\xf9\x04\xb1\xa5\x97\x24\xb3\x3e\xe7\x13\x8c\xae\x9e\xf3\x0d\x72\x5a\x48\xa8\x96\x8d\xe1\x3a\x72\xf2\x27\x0b\xfe\xf2\x39\x1b\x7e\xf3\xdd\x24\x58\xe8\x75\x5f\xa9\xdf\x55\x42\x28\xfb\x30\x1a\xc4\x33\x83\x45\x28\xba\xa4\x20\xb9\x5c\xf3\x12\xa1\x75\xeb\x8e\x05\x6b\xaf\xdd\x20\xd8\x06\x7f\x9a\xde\xe5\xbe\x83\x10\x79\xeb\xcb\xc0\xd7\xeb\x42\x04\xad\xe7\xdb\xcf\xae\xc9\x92\x20\x3c\x94\xaf\xe2\xd9\xa6\x93\x45\xf8\xd8\x38\x35\x65\xa6\x70\x26\x61\xc5\xf3\xb4\xb7\x69\x56\x73\x08\xed\xdb\x67\x25\x75\x57\x76\xb1\x70\xeb\x8d\x6e\xdd\x32\xd9\xad\x04\xbb\xfc\xa3\x63\xdf\x94\x37\x11\x4e\x8b\x35\x45\x7c\x0b\xde\x4a\x08\x2a\x19\x9c\xb6\xe9\x99\xe6\x04\x54\xcd\x69\x7f\xe0\x6f\xfc\x8d\x85\x96\xde\x9b\xb3\xef\x29\x2f\x25\x14\xb2\x9f\x60\xbb\xf6\x9b\x9f\xd0\x7f\xda\x4b\xb9\xe0\xe7\x3e\xc2\xe1\xc6\xb9\x23\xb2\x87\x2e\x10\x76\x19\x8b\x2c\xd6\xba\x1a\x42\xf8\x9a\xb9\xeb\xd5\xe4\xbb\x49\x84\x3f\x4b\x1b\xb5\x0c\x27\x17\x12\x16\x2f\x56\x4d\xfd\x57\x5a\x0c\x34\xab\xe6\x3f\xdd\x4d\x28\x9d\x7c\x29\xcb\x63\x95\x05\x83\x8d\x4f\x8e\xaf\x93\x91\x39\x44\x98\x9b\x35\xe9\x77\xc2\x6d\x5f\x82\xe0\xeb\xb1\x0b\xd7\xb3\xf6\x10\x1a\x16\x36\xb0\x07\xbb\x5a\x13\x76\xeb\xb4\xcf\xba\x5c\xb1\x83\xa0\x5e\x55\xe8\x88\xae\x68\xc2\xda\x2c\xc9\x23\x9e\x5f\xa2\x09\x06\x9f\x1e\x09\x70\xe6\xc4\x30\xf0\x98\xea\xfc\x6b\x95\xb7\x3b\x41\xef\x3a\x27\xd7\xdb\x6d\xaf\x58\xf8\x3e\x7c\xc7\x82\xb7\x4b\x9b\xb0\x61\xa9\x90\x65\x66\xe2\x32\x82\xe2\xc9\xd9\xf7\x0e\xe7\xbd\x62\x70\x7a\x6e\x9e\x58\x58\x48\x35\x83\x9e\xa0\x79\xe2\x42\x53\x19\xc2\x8f\x8e\xb9\x54\x24\x2d\x40\xc8\x5e\xad\x6a\x19\x97\x9b\x35\x01\xdb\xa7\x73\x3d\xd9\x9f\x34\xb1\x2c\x1d\x9c\xab\xaa\xbf\x77\x36\x21\xe2\xfb\xee\x95\x9b\x3c\x96\x11\x0e\x2f\x7c\xbd\x6f\xb3\xc8\x1f\x16\x32\x97\xee\x0e\x9a\x3e\xed\x25\x0b\xe2\xe7\xee\xdf\xe5\x08\xfe\xce\xc2\xd4\xe0\xd1\x33\xf7\x0f\x29\x11\xd8\x47\xf8\x75\xe6\xff\xd6\x26\xbc\xcd\xfc\x14\x75\x7a\xb6\x1d\xa1\xc5\xdc\x9f\x3c\x02\xfa\x59\xb0\x4e\x0f\xf3\xbd\xb3\x66\x12\x8d\x43\x8a\xdf\xe2\xf3\xeb\xbc\xaf\x2c\x0c\x08\xee\x13\x9d\xa9\x2a\x40\xb0\xcf\x9a\x7a\xc1\xf6\x67\x0e\x61\xb8\xd6\xb2\xeb\x1f\x26\x1b\x14\xe9\xb3\xeb\x3c\x64\xc6\x8b\xf1\x57\x96\x7b\xd9\xa2\x31\x16\x7e\xed\xe4\xbb\x21\xaf\xb4\x8b\x30\xbd\xd7\xc2\x66\xd9\xf7\x42\xc2\xbe\xa1\xd4\x97\x76\x22\xde\x04\x9b\x19\x8e\x97\x07\xf5\x62\x27\xe0\xd7\x63\x23\xf7\x7f\xa8\xfa\xce\x27\xff\x0f\xa1\x9e\x1a\x3b\xff\x61\x53\x5d\xf6\xf4\x5b\xf7\xec\x09\xab\xe7\x2d\xdf\x39\x36\x7a\x6c\x42\xf9\x1f\x6e\x8a\x60\xfa\x93\x62\x6d\x42\x7e\x65\xe1\xcc\xaa\xf0\xc7\x0c\x7a\x9b\x0e\x25\x3f\x4d\x1d\x61\xa1\x77\x58\x79\xda\x96\x63\xc2\x84\x94\xc2\x13\x3a\x2f\x04\x72\x19\x7c\xeb\xea\x5f\x34\x55\x6d\x26\x41\xfe\xc9\xfe\x2d\x71\xdb\x35\x09\x45\x46\x0a\xf1\x19\xf7\xf5\x08\x9f\xf2\xcf\x17\xf0\xd8\x6c\x20\x34\x97\x6e\x78\x64\x34\x54\x39\xa1\xd4\x36\x75\xeb\x77\x1e\x54\x24\x68\x9f\x3c\xa3\x36\xff\x13\x37\x81\x9f\x39\xdb\xb1\xa1\x51\x9f\xa0\xf3\x47\xa7\xe4\x4a\x66\x39\xa1\xbf\x7f\xc5\x34\xe6\xe1\x23\x42\xdb\x7d\xb9\xa4\x7f\xe5\x7f\xe8\x7a\x6e\xdc\x9a\xf1\x5e\x90\xd0\xcb\x6b\xb0\xc6\x9c\x33\x9b\xa0\x5b\xb0\x33\x64\xc9\xdd\x46\xc2\xcd\xf2\xd3\x1c\xe1\xd3\xee\x13\xec\xfa\x23\x1d\x94\x3a\xca\x09\xdc\x95\x1c\xd3\x12\x5c\x1c\x09\xd6\xb5\x1d\xe0\x53\x4a\x27\x7c\xb4\x8f\x57\x37\xdd\x5c\xcd\x20\x21\x67\x41\x96\x24\x6f\x08\x83\xd8\xfb\x8f\xb3\xd3\x98\xa3\x84\x6b\xf9\x47\x3e\x35\x6c\x3a\x44\xa8\xe8\x9c\xf5\x7c\xb9\xd6\x11\xc2\xac\xee\xe1\xa3\xbf\x47\xd3\x09\xbf\x64\xb6\x5f\x5d\xe4\x10\x47\x70\x5f\x3e\xf3\xca\xbf\xf2\x68\x99\xa7\xd4\xd7\x82\xcf\x2c\x3c\x66\x39\xf9\x9f\x5c\x9d\x48\xd8\x50\xfa\xc2\xfc\x90\xfb\x06\x42\x24\xca\xbf\xf2\xa5\xdd\x25\x4c\xa1\x05\xb5\x7b\xe7\x97\x12\x8c\x85\x8b\x06\x78\x5b\xef\x12\x78\xe3\xa5\x93\x53\xef\xb6\x10\xee\x5c\x8d\xd2\xf9\x37\x32\x78\x95\x13\xe9\xb5\xd1\x91\x90\xf6\xde\x5f\x5a\x35\x21\x98\xc1\xfd\xcf\x3f\xdc\x2e\x8a\x85\x10\x5e\x6e\x76\xcf\x6b\xf7\xf7\x9d\x70\x66\xa5\x58\x85\xc6\x51\x87\x03\x84\xab\x3b\xca\x66\x75\xa8\x1d\x20\x2c\xdc\x7b\xb0\xc1\xbe\x20\x83\x70\x9f\xfd\xac\xcf\xeb\xd1\xfb\x84\x2d\x6d\x7b\x54\xf9\x5e\xdf\x27\x9c\x0d\x4a\xc9\xfa\x57\x4c\x23\x16\x8b\x78\xa8\x5b\x12\x2c\x26\x35\x05\x37\x3a\x3b\x12\x36\x2d\x12\xea\x8f\xd2\xdd\x33\x61\xf4\x3f\xac\x4f\x8d\x71\xba\xa0\x28\x4f\xf8\x6a\xff\x3e\xab\x81\x7b\x2d\x21\xa8\x66\xa4\x5e\x68\x6f\x1e\x21\x4b\xfe\x9c\x49\xd1\x91\x3c\xc2\x0e\x2b\x49\x36\xe1\xbf\x25\x5a\xc4\xcd\xa5\xf2\xc4\xcb\x62\x74\xcc\xd1\x6c\x5d\x7d\xa3\x85\x85\xfa\x63\x09\xb3\xbc\xff\x6e\xed\xcb\xfd\x7f\xaf\x38\xfb\x17\x2e\xc2\xf3\xd3\xe7\x5d\x2a\x65\xb0\x4a\x4e\x4f\x5c\xf6\x5b\x15\x61\xd7\xef\xfa\x49\xff\x46\x06\x57\xab\xfa\x0b\x9e\xd8\xfd\x17\xa6\x19\x9f\xe3\xac\x3c\xc9\x4f\x90\x58\x9f\x32\xff\x61\x8b\x1c\x81\x5d\x41\xa8\xac\xaf\x9a\x87\xc0\xd6\x51\xeb\xb7\x94\x8f\x9d\x20\xa4\xb8\xd7\x67\xf6\xfe\x60\x42\x8a\x7d\x7f\xef\x2a\xe7\x89\x48\x7e\x17\x37\x4f\x8e\x2b\x8e\x19\x2f\xd2\xee\x2a\x7e\xbf\x7e\xed\x20\x94\x1b\x1b\xa8\x69\x19\x7a\x32\x88\x4f\x6d\xb0\xc8\x5c\x6a\x45\x70\xe6\xe0\xfc\x93\x0a\xb7\x09\xe5\xcf\xc9\xf5\x79\x3a\x43\x76\x84\x9a\x03\xc6\x4a\x96\xa3\x7f\xaf\xca\xc7\xc7\xfb\xae\x3b\x3a\x10\xe4\xc5\xda\xdd\x94\xdb\xd2\x8b\xc1\xdf\xfb\x29\xd9\xce\xcf\x8e\xc6\x51\xb1\x2c\xde\x53\xd3\x43\x82\x10\xaa\xdb\x8e\xc5\x9c\x5f\x58\xb8\x76\x56\xb0\xe9\x58\xa9\x20\x61\xda\x8b\x07\x87\x3e\xcf\xf8\xc1\x82\xe1\xcb\xc4\x2a\x37\xfe\x13\x0c\x12\x55\xe2\xde\x9d\x68\x28\x23\xd8\x5d\xd8\xba\x7b\xd6\xab\x32\x82\xee\xd3\xc9\x69\x66\xb3\xea\x18\xbc\xd8\xa1\xb1\x23\xc0\xac\x94\x10\x21\x2e\x1e\xb6\xee\x54\x0f\x33\x3c\x67\x67\xb7\xd9\x9b\x32\x82\xe2\x9b\xc0\x20\xd5\xb6\xfb\x04\xbd\x1d\x17\x56\x4c\x95\xb7\xfe\x2f\x34\xac\x99\xaf\x32\x5a\xca\x4f\xc8\xd8\xf9\x3d\xcb\x33\xf3\x0a\x21\xf6\xca\x8d\x80\x63\xf3\xfd\x18\xf4\xaf\xe9\xcd\x3f\x7d\xb2\x8e\x20\xb6\xa5\xd8\x70\xd5\xb2\x1e\x06\xaf\xc8\xe5\xf1\xb3\xf9\x6d\x84\x1f\xb1\x4c\xfc\xc9\x29\xa5\x84\x96\xc6\x29\x9b\x3d\xbe\x97\x10\xca\x4f\x05\xb2\xa9\x7b\x68\x11\xf6\x77\x70\x0c\x55\xdc\x09\x22\x3c\x5f\xdf\xad\xb9\xf3\xab\x36\xc1\x4e\xe8\x49\x9e\x7f\x69\x36\x61\xd1\x89\xd8\x0b\x76\x23\x5b\x08\x7f\x66\x3d\xc9\x97\x6e\x9c\x35\x01\x9b\x42\xe3\xaf\x0c\xe4\x0c\xb2\x30\xc4\xd6\xd8\x24\xff\xd0\x86\x41\x64\x9d\x60\xf8\xb1\x5b\x3a\x04\xc9\xb9\xd5\x2b\x77\xdf\x4c\x26\x9c\xdd\xf2\x69\x9e\xc1\x63\x31\xc2\xf4\xe2\x87\x19\x47\xfe\xfe\x50\x1b\x69\x3f\xf9\x5d\x40\x8f\x19\x98\xe7\xaa\xf2\xdd\xb2\xde\x48\x98\x3f\x3f\x20\x5a\x61\x3f\x11\xba\x6b\x33\x44\x4b\xda\xf9\x08\x5e\x51\xce\x1f\x7d\x07\x7c\x19\xe8\xde\x69\x79\xda\xf4\x67\x0e\xe1\xa6\xdc\xbb\x45\x27\x2f\xd7\x32\xa8\xe2\x79\xeb\x5e\xda\x53\xca\x80\x6b\xa6\x10\x5b\xaf\xdb\x5e\x82\xd7\xba\x6f\x4d\x61\x37\x74\x18\x48\xc7\x4a\xc8\x34\xa8\x08\x10\xba\xed\xee\xae\xcc\x3f\x90\x4b\xc8\xf8\xd1\x64\xf5\x0f\x59\x17\x36\x06\xc7\x18\xe6\x12\x52\xcc\xd7\xd6\xfd\x2b\xe1\x56\xa5\xc2\xa9\xbd\x1c\x84\xbd\x4f\xef\x1f\xea\xe6\x59\x41\xf8\x7c\xa1\x2f\xd9\x4e\xac\x8b\x05\xa3\xe9\x17\x2d\xde\x6b\xc9\xd1\x7f\xc0\xf2\x8b\x67\xac\xf7\x51\x0e\xc2\x5c\x31\x8f\x3f\x8d\x63\x49\x84\x72\x69\xa5\xfa\x10\x66\x26\x21\xa9\xf2\xf0\xd0\xe3\x0e\x59\x82\x94\xd0\x97\x79\xf7\x8e\x72\x13\xbc\x0d\x33\xad\xc5\x36\x4a\x11\x0e\x9d\xcd\xd4\xca\xe9\x29\x62\x70\x54\xe8\x82\xce\xa2\xbf\xc5\x50\x39\x7d\xcd\xe3\x42\x31\x82\x6f\x73\x86\xcd\xfa\xf3\xaa\x84\x23\x86\x02\xfb\x39\x27\x39\x12\xce\xc5\x6e\xf1\x67\xba\xbc\x19\x24\x38\x79\xba\xae\x97\x74\x23\x34\x39\x28\xc5\x3e\x8a\xd6\x21\x74\xbf\xd1\x13\xe4\xb2\x76\x25\xc4\xfa\xbf\xf8\x76\x20\x7a\x0a\x41\xc2\x30\x51\x64\xd9\xb7\xa0\x09\x90\xf2\xd4\xde\xa8\x65\x11\x3d\xa1\xec\xcb\xfa\x59\x7a\xcd\xa3\x9b\x85\xb2\xeb\x6c\x72\x87\xd5\x03\x08\x5a\xd1\x6a\xfc\xaf\x0e\x1d\x24\x7c\xcb\xd2\xfd\x94\x64\xea\x40\x48\xdf\xe6\xc8\xd3\xe0\x62\x4f\xb8\x6c\xe0\xe7\x1d\x37\x2c\x4b\xe8\x2b\x58\x25\xa7\xbe\xd8\x9e\xb0\xb6\x64\xd2\xe9\x8b\xb9\x9b\x09\xb5\x5f\xd6\xf3\xef\x3e\x22\x41\xd0\x7c\xda\xd0\xb6\x78\xcf\x6f\x16\x78\xb8\x7a\xc3\x8e\x57\xf0\x12\xf2\xda\x7b\xb2\x6e\x4c\x3b\x4e\x28\x5c\x5e\x13\x6c\xf4\x7d\x17\x21\x37\xf4\xd7\xbd\x25\xa3\x36\x04\x81\x32\xd1\x21\xc7\xa4\x4c\x82\xdf\x62\xb3\x94\xbe\x62\x16\xa1\xc7\x55\x33\x6b\xfb\xeb\xaa\x62\xf8\x5c\xfe\xba\x97\xed\x94\x17\x61\x95\xe6\xaf\x93\xfa\x9b\x64\x27\x20\x6d\xf5\x16\x8b\xdd\xba\xaf\x8b\x61\xbf\x66\x51\xc8\xfe\xe3\xb2\x04\xd7\x3b\x31\x96\x67\x76\xeb\x13\x76\xe5\xd4\xce\x7d\xab\xce\x4d\x50\x4e\x39\x2b\x6a\x63\xf1\x8b\x05\xc9\xc9\x22\x21\x7e\x3a\xaa\x84\x2f\xf5\x32\x8f\x2f\xd7\x0e\xb0\x50\xd1\xd0\xb6\x4c\x36\xb7\x90\xc0\x7e\xd1\x41\xbe\x61\x75\x14\x61\x6f\x94\x99\x22\x07\xd7\x7b\x66\xbc\xc8\x96\x1a\xcf\xab\xd9\xe0\x48\xc8\x7b\xde\xda\x90\xbc\xe2\x14\xc1\xd7\xb9\x3e\xbe\x66\x83\xd9\x84\x91\x74\xcd\x92\x5f\xf6\x9e\x8b\x08\x91\x01\x1f\xd6\x16\x48\x1e\x25\xbc\x78\xb3\xee\xcf\xaa\x07\x71\x0c\x6c\xd5\x03\x7e\xb0\x2a\xcb\x09\x9e\xdc\x6b\x7a\xd2\xcc\xc4\x09\x8b\x17\x3c\xfb\x96\xa2\xb2\x6b\x02\x26\xdb\xf0\x7b\x26\x3a\x1a\x11\x9c\xe6\xcb\x89\xbf\x2d\x9b\x46\xa8\x96\xb8\xd6\x92\xb6\x9c\x9d\x50\xee\xae\x65\x73\xff\x38\xc7\x04\x78\xd6\xcf\x6a\xd9\x29\x3a\x85\x70\xe6\x1f\x04\x08\x3c\x43\xc7\x17\xdf\x88\xbc\x38\x01\x01\xcd\x3b\x64\x8b\xb6\x9d\x22\x6c\x7a\xdb\x3b\x98\x65\x35\x97\x10\x73\xca\xb5\xc9\x75\x0b\x0f\xa1\x68\xe6\x6e\xfe\xdc\x9c\x65\x84\x98\x9e\xc8\x82\x07\xef\x77\x4d\xc0\xe3\x9d\x7e\xee\x26\xd5\x4f\x8b\xa1\xd0\x9d\x65\x77\x95\x4b\x84\xe0\x9c\x6e\xa0\x7f\x3c\x7a\x90\x05\xd7\x14\xd6\xa1\x68\x0d\x71\x02\xd7\x91\x2b\x95\x92\x0b\xa7\x10\x52\x3b\x73\x1c\x42\xdc\x74\x09\x93\xf3\xdd\x25\xcd\x84\xd8\x08\xe5\xfc\xb5\x2b\xd9\xf6\xd5\x12\xae\x4d\xf3\x96\x58\x3d\xdc\x48\x30\x72\xbd\xc7\xa4\x95\x95\x13\x2e\x35\x8f\x0e\x4f\x35\x88\x63\xb0\x56\x74\xed\x88\x46\x63\x2e\x21\x71\xc7\x73\xf3\xe3\xfd\x67\x09\x67\x4b\xd6\xc9\x8f\xc4\x5d\x22\x78\x65\x4f\x93\xd6\xba\xbf\x89\x20\xd4\x1e\x7e\xba\x33\xc2\x9f\x10\xb0\x34\x4e\x9c\x7d\xab\x03\x21\x67\x56\xec\xd3\xac\xbb\x61\x04\x81\x0f\x1b\x4f\x9a\xd7\x85\x13\x0e\xeb\xf4\xf4\xed\xfe\xc6\x22\xcc\x8e\xcc\xb8\xe5\xe0\x33\x8b\xc0\xf1\xcb\xe4\xf3\xdc\x74\x3e\xc2\x9c\xb9\x57\x77\x73\xf3\x27\x32\x38\xba\x5e\xc0\x56\x5d\x3d\x96\x60\xba\xf8\x48\xe5\xa2\xe8\x2f\x84\x85\x15\x4a\x73\xb3\x12\xbf\x13\xf6\x47\xad\x2e\xcf\x69\x2a\x21\x84\x8e\x6c\xee\xe9\x5d\x79\x98\xe0\xf9\x28\x6b\xff\xfc\x52\x2d\xc2\xcf\xa4\xf0\x45\xc2\xbb\xb6\x12\x36\x65\xc9\x9a\x0f\x8a\x1a\x12\x22\x4e\xbe\x8c\x34\x12\x2d\x9d\x80\x99\x91\x29\xf1\xf5\x1d\x4f\x09\x7b\xc5\xb7\xd7\x68\x25\xd4\x11\xfe\x94\x7e\xce\xfc\x37\xda\x7f\xed\x90\xf7\xd3\x8c\x00\xc2\xaa\x8f\x8a\x06\x5f\x47\xae\x10\xbe\x6c\xb7\xfe\x59\x78\xcb\x77\x42\xf9\x1f\xa6\x58\x94\x3c\xe2\xae\x8d\xfc\x7b\x8b\xf6\x85\x0c\xbd\x88\x24\x88\x87\x5e\xfb\xe6\xf0\x36\x92\x60\x59\xac\x7c\x3b\xf1\xef\x48\x8e\xa7\x7f\xf9\xc8\x68\x24\xa1\x4b\xa1\xc9\x34\xbf\xa4\x88\xa0\xe0\x67\x9e\xef\x6c\xf0\x92\x81\x4e\x9c\xe3\xe6\xdf\x0f\xfd\x08\x86\x96\x92\x7b\x3e\x06\x95\x31\xff\x81\x77\xc9\x17\xcd\x1b\x5f\x66\x13\xde\xe5\xa9\x28\xee\x5b\xb6\x94\xd0\x78\x97\x5b\x73\xdd\xb9\x1a\x82\x6f\xa0\xdd\xc3\xc0\x47\xf5\x84\x63\x22\xa5\x01\xf2\x95\x2f\x09\x59\x55\xd3\x4f\x04\xfd\x2d\x89\x3e\xb2\x8b\x4a\xce\x3c\x24\xb4\x5c\xed\x8c\x48\x69\x2c\x61\xe0\x90\x7e\x36\xe4\x68\xdc\x0d\x82\xdf\x7e\x83\x17\xc1\x9d\x95\x0c\xf4\x17\xa9\x5a\x9f\x5a\xe0\x4d\xf0\x35\x7f\x1a\xa7\x12\xe2\x42\x78\x30\xfa\xc2\x5d\x47\xd1\x83\xf0\xe7\xa9\xbc\xc8\xdd\x6d\x3e\x84\x60\xb5\x7b\x33\x1b\xd9\x7a\x59\x08\x7c\x40\x53\xec\x16\x05\x11\xaa\x67\xff\x68\x9d\x7f\xda\x87\xc1\xca\xa1\xf8\x76\x85\x83\x99\x84\xe7\x19\x21\x12\xeb\x07\x53\x99\x71\x6c\xb2\xbb\x66\xa0\xfb\x17\x9c\x37\xf7\xca\xb8\xcc\xba\xce\xc0\x9f\x37\x2e\x29\x8a\x2f\x8b\xb0\x53\x41\x66\x41\xc8\xea\x0c\xc2\x83\x8e\xce\xaf\xff\xca\xc2\x4c\xe5\xbc\xb4\x19\x75\x0c\xbc\xbe\x39\xf9\xee\x32\xee\x67\x50\x11\xf3\x4a\xeb\xbd\xec\x4f\x06\xf2\x37\x64\x16\x6c\xf0\x7d\x5e\x8c\xe9\xfa\x39\x4e\x6f\xfe\x16\x8d\xc2\x3e\x7d\x2d\xc9\x27\x0c\xce\xb4\xca\x8b\xe9\x1f\x54\x25\xa4\x15\x6c\x75\x37\xf6\xaa\x60\xa0\xb1\x76\x9f\x48\x7f\x74\x3d\x83\xea\x39\x1a\x53\x1e\x4a\x3e\x65\xe0\xe8\x79\x76\xe0\xdb\xdf\x22\x28\xa4\x22\x95\x74\xab\x9e\x81\xd9\xdb\x08\x39\xa1\xf2\x02\x42\x34\xcb\xfa\xf4\x7d\x97\x87\x84\x7e\x7b\x8d\x43\x63\x4d\x25\x0c\x3e\xe6\xdc\x7e\x1c\xda\x9b\x4d\x50\x49\x36\x11\xfa\x90\xc4\x49\x88\xd2\xff\x25\xf2\xc7\x36\x90\x10\x37\xeb\x62\xcf\xb7\xeb\x37\x08\x73\x9b\x2f\x34\xee\xf2\x0d\x24\x78\xa8\xe8\x2f\x99\xed\x6d\x45\x88\x59\xd8\xf1\x29\xb2\xa7\x81\x19\x2f\x2f\x94\x3d\x2e\x2c\x96\x3f\x48\x38\xe0\xb7\x95\xd5\x3d\x8d\x87\x30\x25\x85\x65\xf9\x31\xd1\xe6\xbf\x70\x6b\x7f\xed\x2f\xd1\x19\x3a\x84\xe1\xbc\x97\xc2\x05\x7b\x16\x11\x16\xbc\x93\xfc\xe4\x73\x6f\x05\xa1\xea\xc9\x75\x29\xbd\xc9\xfa\x84\x47\xdb\xf2\x8f\xb9\xc5\x99\x10\xcc\xda\xa7\xcc\x64\x22\x6a\x26\x14\x95\x2b\xe7\x12\xa7\xb9\x2a\x11\xc6\xcc\x8f\xac\xd2\x7e\xc4\x22\x0c\xf5\xf5\x28\x58\x94\xe6\x30\xf0\xac\x13\x16\xe3\xfd\x3b\x9a\x53\x1b\xde\x9e\x7a\xa0\x83\x85\xc1\x3d\xd6\xc3\x5a\xc5\x8a\x84\xd8\x77\x1b\x0d\xcf\x04\x04\x33\x38\x56\x29\x23\x15\xd5\xbc\x80\xc0\xdb\x27\xcd\x55\x73\xd4\x8e\x81\xab\x5c\x58\xb4\x35\xdb\x61\x16\x52\x43\x67\x06\xac\x5b\xf6\x80\xc6\xf1\x36\xfd\xdd\xa1\x17\xba\x85\x84\x62\x6e\x9b\x2d\x5b\x57\xe4\xfe\xdd\xf0\xae\x70\xfc\x1b\x9d\x0a\x8a\x09\x38\x34\x10\x47\x10\xd2\xf3\x3b\xfa\x7f\x11\x77\xd3\xdc\x35\xf2\x47\x1c\x61\xe1\x7b\x31\xce\x7f\xe5\xdd\xc7\x2d\x7b\xb4\xeb\xb7\x13\x2c\x4c\x8c\x5f\xa7\x74\x5b\x10\xe6\x37\xad\x3a\x59\x34\x97\xef\xbf\x70\xf1\xb7\xe9\xa8\x58\x51\x55\x31\xb6\xd5\xf3\x2e\xbc\xd7\x9a\xce\xc2\x91\x0b\x7c\x71\x2b\xcf\x14\x33\xa8\x55\x98\xb1\xe1\xb8\x8e\x12\x8d\x83\x55\xa1\xff\xfd\xd0\xe6\xeb\x04\x8e\xfe\x86\xf3\xaf\x7d\xc4\x08\x6e\x55\x2a\x93\x4d\x43\x83\x08\x41\xc5\xf5\x61\xec\x91\xeb\x08\xa6\x66\x92\x9e\x1a\x2a\x0a\x84\x07\x73\xb8\x42\xa3\xc4\xcd\x08\x12\x51\x1f\x2c\x53\x3a\x75\x09\x51\xb3\xf4\x6a\xb9\x8e\xf4\xb2\xd0\x9a\x9a\x70\x40\xdc\x43\x97\xb0\x7b\xdd\x81\xd1\x1d\xe6\xe5\x04\x55\xb1\x3f\x7c\xfb\xb3\xf3\xfe\x0b\x66\xe9\xed\x29\xf9\xfb\x6c\x08\x9b\x43\x8e\xeb\xf8\xd5\x5f\xfc\x2f\xf8\x4f\xbb\xfe\x78\x20\xb3\x96\x50\x55\x23\x31\x47\x70\x69\x1d\xe1\xf1\xfd\xab\xf4\xe8\xf9\x71\xc2\x8b\xe5\x5a\x93\x5c\x4c\x6a\x09\xf3\x86\xdc\x5f\xcc\x61\x3b\x41\x98\x36\x7d\x76\xf5\xac\xa4\x0c\x42\x99\x95\x75\xfb\xeb\x8d\xc5\x84\x9f\x93\xb5\x5d\x2a\xe7\x88\x10\x62\x3e\x86\xce\x9c\x1e\x6b\x41\xd0\x9b\xfc\x99\xba\x1e\xce\x22\x28\x5e\x92\x1c\xbc\x2f\xc9\x49\x78\xdd\xa8\x92\x63\xf2\x5b\x85\x50\x70\xe7\xe5\xde\x2a\xd6\x3a\x42\xd4\xed\x29\xe1\x0b\x63\xb5\x09\xc1\x09\x49\x7c\xd5\x6f\x34\x09\xf3\x93\xbc\x7d\x47\x73\x1d\x08\xb3\x97\x06\xe4\x06\xa5\x2f\x26\xb4\x15\xef\x6e\x64\xf7\x14\x20\x68\xae\xbe\x11\xbc\x43\xdf\x73\x02\x5a\x1f\xbd\xab\x76\xb2\xf3\x21\xf4\x4c\x13\xed\x73\x6a\x4d\x67\xe0\x66\x71\xc3\xf1\xcc\xdb\x1a\xc2\xc5\xd6\xb1\x45\x0d\xe1\x5f\x18\x44\xa5\xb1\xed\xb8\x35\xad\x86\xf0\xbc\x36\x6a\xd5\x5e\xb7\x12\xc2\xe7\x05\x6f\x5f\x15\xb7\xe4\x32\x08\xe8\xff\xbd\x88\xfd\x31\x11\xac\xbb\xe7\x94\xe7\xf3\xb4\x11\x0e\x74\x37\x09\x5d\x28\xaf\x24\x08\x1e\xac\xed\x49\x6e\x78\x40\x78\xca\xaf\xf4\x99\x39\x19\x42\xf0\x6c\x52\xba\x6b\xb3\x2f\x8f\xb0\x85\x3d\xc2\xac\x98\xf5\xf7\x8f\x79\x64\xde\xef\xe9\x59\x2e\x84\xbb\x26\x8c\xe6\xee\xac\xb3\x84\xf8\x81\x8e\xba\xb0\x4d\x2d\x2c\x54\x1c\xbc\x9c\x38\xfd\xe8\x45\x82\x76\x60\xdc\xc9\x9e\x84\x6c\x82\xc3\x31\xbd\xeb\xba\x3b\xeb\x08\x89\x4d\x79\x57\xff\x95\xd6\xee\x60\xe5\x67\x7f\x7f\xdf\xaf\xd7\x26\x09\x9d\x55\x2d\x60\x30\x2b\xcc\x78\x51\xe6\x0a\x29\x82\xe3\xe2\x81\x52\x7e\xdb\xb5\x84\xc1\x0f\x1e\x5b\x05\x65\x56\x30\x88\xd9\xbb\xd0\x26\x52\xe6\x20\xc1\x59\xa7\x30\x7e\xe6\xc6\x04\x06\x4f\x56\x9b\xf2\x84\xe9\xef\x22\x34\xb4\x9f\xf4\x8b\x5a\xf7\x83\x05\x56\xb1\x84\x9d\xee\xb2\x56\x16\x56\x85\x1c\x91\x2a\xeb\x12\x23\x7c\xee\x7f\xd7\x56\xac\xe7\xcb\x82\xf6\x48\x82\x88\x0c\xd7\x55\x06\x5b\x4f\xcd\xda\xbe\x90\x77\x3b\x61\xf2\x22\xe5\x04\x21\xbd\x11\x16\x1c\x72\xaf\x95\xd8\xf1\xff\x60\xe1\xf9\x02\x3e\x7d\xd7\xb9\xed\xc5\xb0\x7e\x19\xcb\xb7\xb8\xd3\x9c\xd0\xb3\x72\x70\xb2\x6b\x9b\x15\x8d\x17\xf7\x17\x11\xcf\xf4\xbe\x88\x12\x2e\x4e\x59\x12\x75\x31\xf1\x2a\xc1\xa4\xa6\x4e\x2e\xb3\xb8\x86\xd0\xc3\xfe\xc2\x7f\x59\xcd\x19\x82\x45\xae\x75\xd6\x31\xfd\x03\x13\x50\xac\xc0\xb5\x32\x31\xee\x02\x03\x9b\x6d\x8a\xf1\xa7\x6d\x56\x10\x04\xbd\x86\xe7\xac\x16\xae\x26\x4c\xb5\x2a\xac\x2a\x29\x8e\x25\x1c\xdf\xec\xa7\x34\x57\x4d\x92\x80\x7d\xda\x3c\x5b\xbb\xdf\xb1\xc0\x3b\x77\x9d\xf3\x49\xd7\x0f\x2c\x94\x3b\x45\x3a\x9c\x57\xe0\xa1\x71\x58\xdd\x2f\x5b\x7e\xda\x76\x8c\x85\x25\x8d\x77\x0c\xf9\xdc\x02\x09\x12\xfe\xf2\xc7\x3c\xcf\x6e\x26\xec\x30\xda\x67\xf7\xfd\xb0\x12\xe1\xaa\xd6\xde\x90\xad\x36\xf2\x04\x4d\x6b\x85\xa5\x53\x84\x96\x12\xf6\x6f\xbf\xeb\xa9\xa6\xd9\xcb\x42\xd8\xcf\x6a\xc5\xf5\xf5\xaa\x34\x0e\x67\xff\xa2\x74\x8b\x4a\x7b\xc2\x1a\x16\x5b\x9a\x5c\xc6\x0f\x16\xda\xaf\x2d\xd8\xfe\x98\xff\x08\x8d\x83\x97\xef\x88\x49\xef\xd1\x93\x84\x2f\x22\x65\xab\x93\xb3\xa5\x08\x4b\xec\xb7\x2e\x20\x21\x43\x42\x4d\x4c\xb5\xf7\x6b\x8b\x65\x84\xa5\xc5\x1a\x4f\xe6\x8a\xce\x21\x4c\x3b\xf2\x52\x6f\xf7\xe9\xd9\x84\x55\x87\x0a\xf5\x0f\xbe\xfa\xca\x42\xcc\x65\x17\xe5\x05\xd3\x05\x09\xbb\x35\x5c\x5a\xb4\xcc\x3e\xb0\xb0\xd8\x72\xe4\x83\xd7\xe7\xdd\x0c\x5a\x36\xe5\x4f\xbb\xb9\x78\x0e\xe1\x72\x54\xdf\x45\x37\x4f\x31\xc2\x68\x5a\xd2\xae\xb3\x49\xe7\x27\x94\xd4\xe4\x4b\x77\xc4\xbe\xff\x62\xe1\x23\x6e\x1c\x08\xaf\x57\x27\xfc\xb2\xcb\x51\xae\x36\xd4\xff\xfb\x3a\xdd\x28\xbf\x6b\x95\x3e\x21\xae\xf1\x51\x87\x8f\xf4\x19\x02\x73\x2b\x78\x86\xed\xca\xdd\x84\xad\xd3\x86\xca\x05\xd6\x08\x12\x6a\x04\x99\x9e\x41\xd2\x20\x18\xce\x1a\x14\xcb\xe4\x2a\x22\xa8\x98\x6e\xe3\xae\x4b\xfe\xbb\xc7\xf3\xf7\xe7\x39\xa5\xa4\x12\x9c\x84\x64\x9c\x7a\x25\x2a\x08\x5b\x36\x4a\x4d\xff\x1a\x7f\x90\x41\x8d\xd7\x3b\x39\x21\xe1\x22\x42\x84\xcb\x71\xa7\xe3\xef\xfd\x08\xad\x15\x27\x7d\x85\x8f\x5f\x24\x84\xaf\x98\x12\x92\x61\xcf\x46\x30\x9a\x55\xdb\xb6\x96\xa3\x92\x50\x98\x6d\x70\xb2\xfb\x71\x09\xa1\xb7\x49\xe5\xe1\x89\x1f\x35\x84\x7a\x75\x4d\xd9\xdb\xb9\x4e\x04\x4b\x0f\x8e\xb8\xbd\x8c\x0f\xc1\xb2\x72\x59\xf1\x66\xab\x30\x82\xf3\x77\x3f\xdb\x25\x1c\xdb\x09\x8b\x8f\x1c\xfd\x5a\xee\x13\xc4\xa0\xb0\xf9\xc4\xbe\x9b\x17\x9c\x08\x2b\x07\xb9\xd5\x16\xcc\x7f\x48\x50\x76\x3d\xe5\xf6\x52\xf1\x01\xa1\x20\x20\x68\xf6\x3a\xf5\x32\x06\xe2\x85\x41\xe1\x3f\x4f\x3d\x23\xd8\xbd\xe1\xa0\x9a\x91\x5e\x06\x6b\x5d\xdb\x5b\xe6\x5a\xdf\x27\xa4\x3d\xe2\x94\x18\xcc\x34\x26\x9c\x5e\xe6\x6b\xfc\xec\xb0\x3e\xe1\xfb\x49\x5d\x99\xce\xcd\x1b\x08\xde\x5f\xd3\x9b\x1b\xf8\x54\x08\xd9\xaf\x67\xba\xa9\x5e\x0e\x26\xbc\xca\x5f\x2d\xb0\x6c\x8b\x04\xe1\x4a\xcd\x05\x8d\x96\xba\xb3\x84\xb7\x16\xab\xf2\x84\xee\x35\x13\x7c\xbd\x5f\x3a\xad\x4a\xdc\x42\x98\xff\xa5\xf6\x40\x25\xd7\x83\x62\xf8\xfb\x6e\xd5\x15\x88\xd2\x9a\x50\xd6\x7d\x10\xb5\xb8\x37\x2f\xbd\x18\x3c\x79\x0f\xba\x8d\x8e\x68\x11\x38\xcb\xd6\xbd\x59\x7b\xfe\x1d\x0b\x92\x7c\x5e\x49\xaf\x56\x58\x13\x5a\x46\xe4\xaf\x66\xcd\x37\x21\xbc\x19\x51\xa9\x4c\x56\x1e\x65\x21\x6b\xaa\x5a\xde\x01\x43\x05\xc2\xf6\xe8\xd4\x2f\x81\x0f\x57\x12\x72\xbb\xa1\x5f\x7c\x38\x9c\xc1\x46\x53\x79\xc9\xc7\xa2\xd3\x69\x1c\x29\x1c\x6d\xd5\xc5\xf7\x27\x11\x36\xc5\xce\x7d\xbf\x2a\x6c\x25\x61\x54\xa6\x75\xbd\x4a\xaa\x39\x61\x7d\xac\x8a\xf4\xda\x3b\xbf\x59\x48\x58\xd4\x2c\x68\xa2\x3c\x9d\xe0\x67\x6b\x9e\xb2\xbb\x7a\x13\xe1\x65\xab\x9e\xe0\xc5\xb0\x65\x84\x05\x3a\xbf\x83\x5f\x98\x7c\x61\xa1\x73\x95\x53\xa9\xf4\x8a\x5e\x16\x78\xf7\x47\x66\x4a\xec\x9f\x44\x58\x95\x74\x5e\x7f\x61\xd9\x64\xc2\xec\x76\xcb\x2e\xcf\xbf\xeb\x49\xf7\x41\xef\xfd\x7f\x94\xc2\x08\x35\x93\x57\xa8\xb3\x29\x87\x11\x2c\x4f\xed\x5f\xf5\x4d\xfd\x3d\xa1\x9c\x75\xd8\x4b\xff\x55\x02\x03\x9d\x85\x9c\x43\xff\xce\xdc\x7f\x20\xd5\xd5\x7c\xd3\x86\xf0\x75\xaf\xd7\xe4\x47\x0d\x06\x13\xca\xff\x0b\xd3\xae\x4d\x69\x2b\xe2\xd6\x12\xfc\x23\x65\x06\x62\x33\xb9\x09\x1e\x0a\x7a\x51\x6f\x0d\x77\xfd\x17\x6c\xf7\x95\xf8\x85\xbb\x6e\x21\x34\x5b\x6c\xab\xfc\xa6\x27\x40\x60\x2f\xf9\xf3\x6a\x5f\xc8\x66\x42\x77\x28\x8f\x72\xc4\xae\x4e\x82\xcd\x9e\x39\x15\x7c\x6b\x3e\x11\x84\xa5\x3f\x39\xcf\xf8\x8b\x11\xe9\x81\xe3\xde\xaa\x0d\x04\xce\x92\x03\x27\xb9\xfe\x96\x79\x67\x64\x3d\x47\x97\xc5\x12\x6e\x36\xd8\x76\x3e\x53\x7a\x4c\xd0\x3f\xef\x9e\x9f\xbd\xec\x19\xe1\xd7\xa6\x3d\x61\x11\xc3\xcf\x08\x46\x5f\x27\x7f\x7c\xcf\xfe\x84\x70\xd3\x68\xde\xb0\xa4\x4f\x1c\xa1\x94\x77\xec\xa5\x94\xc6\x0d\x06\x83\x4d\x1b\x4d\x27\xad\xde\x40\xd8\xf8\x6c\x5e\x30\xdf\xde\xdf\x2c\x6c\x5b\xbc\xf1\x9d\xf9\x9b\x60\x06\x6f\x7f\xd4\xac\xfe\x28\x93\x4c\x28\xfa\xf0\x2c\x31\x77\xfb\x2d\xc2\x12\x71\xeb\x12\x2b\xff\x65\x04\xdb\x86\xa6\x2c\xea\x5c\xc6\x60\xa9\x8a\x51\xa9\xdf\x40\x2c\x41\xb4\x2f\x7e\xeb\xab\xa2\x4a\xc2\xac\xdf\xaa\xb7\x5f\xa9\xcc\x23\x28\x88\x8d\x3c\x0c\x7a\x3b\x9f\x70\x77\x7b\xd3\xae\x81\xb9\xec\x04\xa5\x8f\x1a\xda\xcc\xf5\x19\x84\x67\xd2\xf7\xef\xde\x3b\x66\x4f\xd8\xf6\x24\x83\xcc\xe5\xff\xae\x0c\xf7\x3b\x5e\xff\x2b\xf6\x8e\x87\x96\x77\x3e\xaa\x67\xe1\xd5\x94\x6c\x53\xad\xcb\xb1\x04\x1d\xd7\xd5\xce\x35\x56\x22\x04\x6d\x93\x4d\x5b\xb6\x24\x6c\x26\x1c\xae\x75\x8e\xd5\x35\x91\x27\x70\x3c\x4b\xd6\xfc\x13\xbb\x98\xa0\xa9\x2f\x50\x2f\x23\xbd\x8e\xb0\xbe\x47\x7f\x3a\xc7\xe2\x56\x06\x53\x24\x36\xbc\x10\xb2\xea\x63\xf0\x4b\x45\x6d\x70\x3f\xab\x8c\x86\x83\x57\xc4\x68\x73\x3d\x22\x64\xe4\xde\xef\x6c\x65\x4f\x26\xec\xfc\xb3\x3c\xeb\xd7\x6d\x23\x02\x53\x36\x3c\xaa\x95\xef\x46\xe0\x7e\x6f\x2e\x17\xfa\xbd\x80\xd0\x51\x7a\xe0\xfb\x35\x8a\x21\xbc\x38\xec\x65\xfd\xaf\x7c\x2d\x37\xda\xb8\xd3\xda\x7a\x02\x4a\x36\x6d\x5c\x7d\xb2\xfa\x38\x21\x7e\x64\x68\x5e\x40\x5f\x1f\x0b\xf4\xee\xf3\xea\xf8\xdb\x5c\x04\x8d\x52\x91\x0f\x1f\xd6\x2f\x21\xb0\x3d\x9e\x6b\xfb\xfb\xe3\x7c\x82\x67\xfa\x53\x65\x91\xdf\xfe\x0c\xba\x1e\xef\x6e\xac\xf3\x4d\x25\x24\x69\xb2\xdb\x5d\xe0\xca\x20\x9c\xd8\x57\x2a\xf2\x0f\x6d\x19\x4d\x4a\xff\x30\xbb\xe4\xf6\xdc\x1a\xcb\x0d\x04\x59\x7b\xc5\xe6\x5d\xb9\xb1\x84\xf6\x55\xca\x8a\xf7\x38\x37\x11\x0c\xea\xe6\x5d\x50\xd3\xd1\x24\x68\x9f\xec\xbd\xb8\x36\x43\x9f\x70\xcd\xde\x81\x3d\x59\x62\x15\x21\x6f\xe5\xa6\x0d\xb9\x3a\xdf\x58\x30\x5f\x7b\xeb\x61\xe3\xd4\x70\x82\xbc\x9a\xce\xb9\x99\xb2\x5b\x09\x41\x6b\xdb\x25\x0f\x88\xee\x26\x54\x1f\xe1\x9c\xa4\xd6\x1b\x48\xd8\x9b\x2f\x24\x99\x68\x66\x42\x98\xbe\xe4\xb8\xfe\x45\xfd\x0b\x84\x6d\x4d\x67\x94\x7f\xdc\x51\x20\x5c\x3a\xd8\x75\xb0\xa1\x4f\x8b\xe0\xe2\x19\x2f\x3e\x59\x5d\x92\x10\x90\x78\xdb\x26\xb8\x4a\x93\xa0\x32\xb6\xca\x74\xa6\xc5\x4a\x42\xe6\x34\xff\x33\x45\x53\x5d\x08\xdb\xe7\xa5\xa7\x96\x75\x84\x4c\x40\xd9\x83\xd9\x65\x11\x7e\x7e\x84\xba\x9d\x8b\xbb\xf6\x79\xb2\x13\x8e\xb6\x95\xa4\xd9\x8e\x80\x85\xfb\x33\x7d\xa2\xce\xe9\x13\x8d\x63\xed\xd7\x0e\x93\xd8\xe0\xa4\x62\xb4\xf2\x9c\x3f\xa0\x74\xd2\x8e\xf0\xe0\xf4\x90\x08\x9f\xb5\x00\xe1\xd6\xfd\x65\xcf\xde\xee\x37\x9e\x80\xcc\xc3\xaf\x97\x36\xdc\xaa\x65\xe1\x2a\x4f\x5f\x50\x94\xa7\x17\xc1\x43\xd3\xc0\xd8\x4f\xd9\x90\x10\xad\x6e\x7c\x39\xf4\x94\x2b\xc1\x2b\x95\x5b\x74\xce\x68\x26\xa1\xd1\xf9\x56\xaf\x5c\x7c\xe2\x04\x44\x7d\xd0\xde\x6a\x27\xd8\xc6\x42\x9b\xb6\x40\x53\xe7\xc5\x59\x84\x14\x3e\xfe\x27\x65\x07\x7c\x19\x9c\x3a\x1a\xe1\xfb\x94\x77\x27\xa1\x88\x3d\xde\xe8\x62\x9a\x30\x21\xc6\x6a\xb7\xaf\xc1\xca\xd3\x0c\xc2\xef\xd6\x2d\x0e\xfc\x39\x8b\x10\x5f\x9f\xc7\xd6\xef\x64\x44\x90\x50\x3f\xb0\x3e\xa9\x48\x8f\xa0\x20\x7d\xf6\xe1\x40\x99\x17\xe1\x92\x6a\x40\xce\x3a\x97\x20\x82\xf3\xbc\x44\xfb\xea\x9b\x97\x09\x71\x86\x1a\xef\xde\x6c\xf0\x27\x3c\xe7\xcc\x57\x2e\x7d\x16\x3e\xa1\x04\x44\x0b\x3e\xdb\x96\xd1\xcd\x42\x8a\x9c\x7d\xff\xbe\x56\x25\x82\xd1\xe5\xf6\x28\xf7\x6e\x8d\x09\xe0\x3f\xe6\x77\xb4\x37\x7b\x35\xa1\x92\xf3\x8f\xe1\x91\x8d\x53\x09\x3d\x9b\xd4\x8d\x04\xe7\xc4\x4f\xc0\xc2\xa2\x99\xe2\xff\x10\xaa\x2b\xc3\xb7\xda\x3d\x9a\x10\x2a\x65\xb5\xc0\x7b\x79\x02\xe1\xbc\xee\x32\x9b\x72\x3e\x43\x82\x65\x6d\xdd\xf1\xfa\xc8\x0c\xc2\x95\x05\x95\x02\x26\xf5\x0f\x08\xec\xc1\x8d\xea\xe2\x87\xe2\x18\xcc\xac\x29\x7b\x63\x44\x99\x0c\xec\x5c\xa6\xd5\xde\x92\xd5\x27\x54\xd8\xe9\x2d\x88\xe9\x51\x22\xa8\x45\x74\x4c\x6d\x7f\x3f\xc4\x82\xa8\x52\xcc\x30\xaf\xb1\x22\xc1\x91\xa5\x62\xfd\x4b\x38\x9d\x30\xcf\xa7\x7c\xdd\xec\x18\x1d\xc2\xd5\xa3\xdf\x04\xef\xa6\xac\x22\x1c\x8e\x6d\x76\xd9\x34\x55\x91\xf0\x7b\x92\x70\xf2\xc2\x25\xea\x84\xc5\x9f\x94\xa3\xef\x55\xcb\x13\x2c\xd5\x93\x17\x3a\x9e\xae\x65\x30\x77\xe5\xd4\xbd\x76\x5c\x03\x2c\x9c\x96\xb8\x51\xa3\x70\xd4\x9e\x70\x47\xe8\x98\x61\x69\xc3\x61\x06\x7f\x0c\x3e\x95\xbc\x0d\x4d\x20\x48\x4a\xdd\x0b\x54\xe7\x74\x65\x50\xe2\x18\xb2\x2f\x22\x3d\x9a\x70\xae\x2a\xde\xf3\xf5\x2c\x07\x42\xac\x52\x8b\xa6\x9e\xe5\x16\x42\xc7\x4a\x2e\xc3\x73\xb9\x67\x08\xf2\xd5\x07\xaa\x72\x5a\x56\x12\xde\x29\x5f\x52\x08\x7e\x3e\x9d\x50\xe4\xf5\xe5\x53\xd8\xc8\x22\x42\x7d\x91\xc8\x3b\x47\x5e\x0e\xc2\xa0\x86\x6e\x80\x37\x94\x09\xcb\x17\xae\x38\xd4\x5e\x27\x4f\x68\xfa\x38\x88\x46\x9d\x15\x84\xe4\xc7\x4e\x5d\x83\x4b\xf4\x08\x61\x51\xd6\x24\x2b\xab\x40\x78\x2e\x32\x39\x7e\xf9\xf2\x80\x09\xb0\xd3\xd8\x3e\x69\xc5\x5f\xfc\xe8\x9a\xff\x5e\x2c\x78\xdf\x7f\xa1\x2c\xbf\xf1\xae\xdd\xaa\x10\x82\xe8\xaf\xfd\x4a\xaa\x23\x7f\xdf\xec\xf3\x5e\x9e\xbc\x50\x28\x47\x30\x5a\xf9\x46\xbd\x53\x82\x9b\xa0\xb8\xe0\xb4\x4a\x88\xde\x30\x0b\x9e\x3a\x67\xbb\x45\xb5\x37\xd1\x38\x8a\x9a\xef\x32\xde\xfe\x6a\x04\x2f\xc1\x37\x5c\x2f\xdf\x69\x10\x94\x16\xff\xd6\x94\xbe\xba\x85\xd0\x3b\x33\x33\x38\xdc\x5f\x87\xa0\xaf\xfb\x5b\x88\x33\xc9\x80\x90\x75\x79\x45\x90\x87\xa8\x2f\xa1\x31\xe1\x43\x61\xba\xd3\x79\x82\xae\xed\x98\xe8\x5d\x17\x1f\xc2\xed\xe8\x2e\x0d\xf9\x32\x0e\xc2\xc9\x2e\xe1\x41\xe3\xd3\x06\x04\xf9\xb1\xaf\x52\xed\x9d\x92\x84\xdf\x92\x95\x2e\x8e\xf5\xe7\x08\x31\x3b\x96\x2a\x5a\xb5\xce\x99\x00\xc9\x87\x49\x22\x9f\x2b\xd6\x10\xd2\xaf\x4a\x09\xf8\xe6\xdf\x67\xb0\x7b\x4f\x32\xd7\xa7\xbf\xc5\xe3\xe4\xc0\xb2\x65\x4b\xd5\x26\x20\xaf\x92\xb9\x94\xd5\x13\x42\x38\x66\xe6\x9d\xcc\x55\xa9\x43\x38\x64\xd1\xee\xfe\x22\x59\x98\x10\xf0\x51\x9f\xfb\x71\xf2\x56\x82\x4a\xb5\x0c\xc7\xf1\x35\x9f\x58\xb8\x5b\xf6\xb0\xb6\x6d\x75\x28\x8d\x43\xa9\xcc\xb5\x7a\xf7\xec\x95\x84\xef\x3c\x9c\x89\x86\xf9\xb6\x04\x89\xe8\xf6\xec\x18\xb3\x0b\x0c\x32\xcd\x63\x0f\x43\xe8\x32\x81\x63\x2b\xd7\x8d\x43\x6a\xf7\x08\xfa\x1c\xdf\x2e\x67\x7f\xaa\x25\xec\x90\xd0\xae\xd2\xd0\xbd\x4c\x90\x3b\xb8\xf5\x50\xf4\x87\x0d\x84\x22\xd1\x4d\xc1\x97\x62\x75\x09\x6e\x0f\x7c\x4e\x3a\xe9\x5c\x27\x9c\x19\xb9\xea\x53\x29\x78\x91\x30\xf3\xe3\x82\x1d\x02\x5b\xfa\x58\x88\x4b\x8c\x78\xcb\x6d\x3f\xc0\x42\xf1\x9d\xc3\x46\x7f\xce\xa7\x11\xfe\x14\x1a\x55\x6e\xbd\x98\x46\x78\x79\x26\x61\xd6\xff\x85\xc9\x0f\xd9\x87\xd1\x4f\x8d\x09\xcb\xd5\x52\xb3\x03\xaf\x08\x33\x10\x53\x3c\x3e\x6c\xba\xd1\x84\xd0\x6a\xf0\x7d\xec\x62\x97\x17\x61\x68\xa8\x46\xf3\x5f\x29\xcc\xf6\xbf\xbb\x30\xce\x80\x50\x99\xb2\x20\xa3\x64\xbe\x13\x61\x8f\x71\xda\x72\x09\x8e\xa0\x09\xf0\x88\x72\x1c\xcb\x9a\x1d\x4e\xd8\xbb\x8b\x43\x62\x60\x5e\x2a\x41\xcb\xd1\x47\xaa\x4a\x36\x9c\x20\x91\xf3\x88\x4f\xba\xeb\x3c\x83\xa4\x57\x2f\x4f\x5d\x33\xf6\x23\x7c\x35\xe8\x58\xb3\xde\x32\x81\x10\x11\xb4\x79\xf1\x3e\x1f\x3f\xc2\x8b\x84\x25\x62\x3d\x6e\x6c\x04\xbd\xb0\x81\xb7\xd1\x2e\xc3\xac\x71\x24\xaf\x7c\x37\x32\xd8\xd1\xc0\x02\xab\xcc\x25\x71\x7e\xb4\x0e\x03\x12\x92\xab\xe9\xec\x7a\xc0\x20\x3b\x61\xdb\x46\x2f\x4f\x1d\x42\xac\xe7\xa7\xc4\x93\x7b\xbc\x27\x20\x54\x2d\xb6\x5b\x41\x27\x8b\xc1\x79\x85\x67\x61\x9a\xd3\x4f\x13\x16\x75\x86\xe8\xcf\x93\x09\x24\x6c\xbf\x9d\xc2\x65\xf3\xb2\x92\x85\x42\xce\xe3\x19\x4b\x2a\x9d\x68\x1c\xb3\xce\x1f\x79\xb5\xfb\x8d\xc8\x38\x86\x95\x7c\x2b\xd5\x4a\xb8\x08\x77\xee\x06\x8c\xe9\x64\xfe\x62\x8d\xe3\x70\x4c\x81\xc2\xc8\xb7\x19\x04\x99\x51\x35\x01\xe1\x77\xbd\x2c\xec\xae\xd3\x91\x7a\x6c\x27\x45\xd8\x14\xf0\x5c\xd4\xf5\x3c\x1f\x41\xfa\x26\xaf\x43\xa0\xeb\x20\x0b\x23\xb7\x15\x3d\xcf\xff\xbc\x43\x68\xeb\x8b\x3a\xae\xc0\x9e\x48\x38\xe8\xc3\x73\xc2\xc8\x65\x2e\x61\xcc\xaa\x41\xd9\xf4\xf0\x0a\xc2\x9f\x84\xa3\xda\x4b\xb8\xe5\x09\x69\xc7\xcd\xbb\xba\x77\xd8\x4d\x28\xff\x03\xf7\xc7\xe4\xed\x35\x16\xcf\x8a\x91\xbb\x9a\x79\xd0\x58\xa2\x42\xe8\x1f\x9d\xf5\x25\x9c\x77\x11\xa1\x6d\x95\xf6\xa3\x64\x2b\x3e\xc2\xb2\x88\x3e\xf5\x54\xde\x59\x84\xe6\x24\xd1\x57\x3a\x75\xed\x2c\x70\x24\x4e\x7e\x56\x19\x1f\x4e\xe3\x98\x3d\xda\x13\xea\x93\x18\xcc\x8c\x17\xa3\xfd\x71\x7f\x1e\xea\x98\x12\x22\x1f\xf0\xfa\x39\x7c\xf7\x9b\x50\xfe\x5f\xdc\x6c\x1d\x60\xfc\x6e\x72\x13\x22\x4e\xfb\x44\xb6\x0c\x3e\x64\xf0\xe6\x01\x7b\x6a\xd3\x02\x1f\x42\x68\xe7\xe7\x77\x55\xdb\x77\x11\x62\xb5\x8f\x17\x6f\x9e\x1c\xca\xe0\xfb\xcf\x29\x32\x7f\xa4\x79\x08\xc9\xa3\x92\x7b\xbf\xad\xbb\xf8\xf7\xc9\xe5\x5c\xbb\x23\x72\x16\xa1\x3a\xee\xc3\x23\xe5\x91\xef\x2c\x5c\x59\x76\xee\xc9\xbd\x6c\x1e\x82\xec\x92\x4d\x1f\x77\x14\x59\x13\x66\x2c\x94\x0a\x12\xb2\x77\x20\xdc\xf9\xc5\xa6\x65\x7f\x2c\x72\x02\x9a\x4f\x56\x30\x2b\x13\xcf\x11\xca\xef\x0c\x57\xcc\x35\x18\x62\xe1\x89\xca\xdb\xd0\xce\xee\xed\x84\xa6\xdf\x5c\x2b\x8c\x5f\xb3\x08\x02\xf9\x1e\x49\x4c\xbc\xf3\x04\xbc\xe6\x1d\xcc\x51\xde\xc7\x4f\x90\xf1\xa3\x85\x4b\xac\x73\x09\x45\x82\x21\xa7\x1f\x05\x5e\x25\x38\x84\x0a\x5f\xfc\xea\xba\x9f\xe0\xe4\xbd\xcb\x72\xbb\xfc\x7d\x42\x6c\x58\xd0\x97\xc5\xa7\x5d\x09\xd1\xd1\x2e\x6c\x4a\xc2\x31\x84\x8f\xc6\x0d\x1b\xa7\x64\xca\x11\xdc\x7b\x6e\x36\x8c\x55\x0a\x13\xee\xc6\xda\x3f\xd1\x7b\xb2\x95\xf0\x7c\xf1\xc1\xb9\x21\x83\xc1\x13\x10\xce\x1f\x62\x1b\x18\xed\x4e\x38\xfb\xfe\x7d\x8b\x53\x8c\x3b\x61\xc4\x87\xbf\x37\xb7\x58\x8b\x40\xbe\x7d\x55\xd7\xee\xbc\x65\xd0\x26\x24\x5c\xa8\xa6\xb4\x90\xa0\xff\xb0\x25\xa4\x58\xa0\x9f\x85\xaf\xc5\xeb\xb9\xef\x70\x71\x10\x7e\xc6\x65\x4b\xac\x09\xaa\x25\x64\xb8\x1e\xff\x76\xea\x4f\x26\xa1\x60\x6c\x47\xc3\xf6\x6f\xcf\x19\x5c\x73\x1a\xd9\xec\xf1\xb7\x9c\x59\xc8\x63\x6b\x76\xe9\x0c\x61\x69\xbc\x71\x99\xb7\x6b\x02\x83\x03\xa5\x5d\x26\xeb\x34\x4c\x09\xce\xe1\x92\xdf\xc5\x9f\xbb\x10\x10\xb3\x79\x66\x51\xe6\x19\xc2\xb4\xd1\xa1\xb6\xbd\x75\xe7\x08\xa1\xb3\xd9\xee\x69\xa9\x3b\x12\x3c\xe6\xc5\xef\x36\xfb\xa6\x45\x28\xaf\x13\x91\x18\x70\x9e\x47\xd8\x72\xda\x53\x40\x27\x4e\x91\x10\x53\xb5\xf3\x7e\x09\xfb\xd2\x09\xd8\x1a\xad\x95\xef\xe3\xb4\x8a\x20\xf3\xf4\xc8\x29\xc3\x5b\xbe\x84\x19\xcf\xb8\x47\xc4\x78\xf8\x08\xea\xed\x47\x06\xc2\xbb\x53\x08\x93\x5d\x62\x24\x22\xfe\x0f\xec\xe7\x8b\xa5\xfd\x83\xd7\x9a\x07\x03\xcd\x29\x5d\x2c\x3c\x99\xcd\xed\xa9\xb6\x9c\x9f\x60\xf7\xce\xfe\x59\x80\xa3\x0d\x41\x8f\xef\x87\x42\x43\x64\x0a\x83\x99\x67\x33\xb7\xa8\xce\x8c\x26\x98\x3c\x39\xbc\xeb\xc5\xb9\x68\xc2\x92\xe1\xf5\xdb\x0c\x97\x0e\xb0\xb0\xcf\xc4\x32\x3a\x7c\x53\x0e\xe1\x70\x73\xb9\x4f\x40\x8c\x28\xa1\x50\x42\xf3\xeb\xc5\x18\x15\xc2\x3c\xb3\x06\xb9\x9b\x5f\x0f\x32\xc8\x9c\x3b\x37\x70\x6d\xdc\x41\x1a\x87\xe1\x5a\xbb\xec\x8f\x37\xf9\x09\x0e\x02\xa2\x75\x26\x8f\x6f\x10\x8a\xcd\x24\xed\x8b\x4c\xb3\x18\xb8\x49\x19\x2f\x57\x99\x9b\x44\xa8\xb4\xdb\xd0\x39\xed\x11\x1b\x21\x3e\x32\xa4\xc7\xad\xfe\x2a\x03\xfe\x5d\x1b\x03\x0e\xac\x90\x23\x9c\x31\xe3\xd6\x96\x37\x94\x20\xfc\xf8\xdc\x76\xa9\xf3\xf7\x00\x0b\x46\x5a\xbd\x26\x9c\x26\x25\x84\x4f\x06\x7a\xd6\x8d\xf9\xc1\x04\x89\xcd\xaf\xda\x3b\x05\xdc\x26\xe0\x9e\xd2\x6e\x4d\x76\xfb\xfd\x84\xec\xba\x6d\x07\x98\x2a\x2b\xc2\x21\xa7\xbe\x5e\xee\x35\x86\x84\xfd\x2f\xca\xb5\xcc\x2a\x79\x08\xc3\x1d\x8b\xb7\x5c\x17\x59\x45\x18\xdb\x38\x45\xde\x45\x20\x9d\xc0\x53\x62\xe2\xb9\x2e\xa5\x94\x10\xce\xde\x27\xfc\xaf\x44\xdf\x38\x9f\xe0\xfc\x17\x4a\x6f\x0e\x14\x06\x1e\xda\x43\x10\xb4\x66\x0e\x1d\xd1\xb2\x20\x08\xdf\xb8\x5e\xf7\xc5\x66\xff\x04\xe4\xb6\xfc\x3a\xb5\xe2\xa7\x24\xe1\xed\x41\xc6\x66\x63\x72\x3a\x61\x28\x6f\xbe\x4f\xb6\xa0\x1b\xe1\x20\x95\xba\xb6\xda\x86\x11\x74\xfa\x44\x63\x1a\x36\x46\x12\xbc\xe5\xe4\x9e\x9f\xa8\x72\x99\x80\x8c\x7c\xfd\xd9\x19\x0f\x4d\x08\x7c\xed\xbe\x1a\x0d\xf2\xa9\x84\x61\xe3\xef\x6c\xb2\x7a\x9e\x84\x03\x6b\x4f\x74\x15\xca\xb9\x12\xfa\xbd\x9a\x0d\xe6\xcc\x54\xa7\xe1\x24\x3d\x41\x51\x7e\x11\x02\xbf\x82\x62\xf6\xcb\xeb\x93\x08\x6a\x9b\x8f\x36\x2f\xde\xc1\x41\x70\x5c\x65\x17\x69\xf7\x67\xca\x04\x88\x1e\x70\x0c\xac\x8a\x61\x23\xa8\xda\x08\xbf\xb8\xcf\x13\x43\x98\xd5\xd7\x35\xa6\x91\xa1\x45\x78\x64\xbf\xdf\x46\xe8\xd8\x31\x42\x58\x9d\x43\x8b\x9c\xdc\x2e\x82\x79\x51\x4a\x58\xef\xb9\x58\xc2\xd5\x0b\x83\x4e\x32\x93\x15\x08\x47\x66\xd5\xa5\xe9\xf3\x2d\x22\xe8\x9d\xcd\x2b\x0c\xb0\xd7\x25\x30\xf7\xa4\x78\x44\x73\x47\x59\x88\xec\x3c\xa5\xa6\x88\x8f\x2c\x48\x99\xfa\x58\x8e\xf1\xbd\x2a\xc6\xf9\xec\x84\x29\x1d\x53\xe5\x69\x1c\x05\x1f\xb7\x1f\x16\x89\xa9\x62\x81\xa7\xf9\x79\xae\xa8\xff\x3a\xc2\xee\x26\xdd\x5b\x6e\x7c\xa2\x84\xa2\x02\xae\xa2\x7d\xda\xb6\x04\xf9\x7e\x7e\x75\x79\xcf\x36\x06\x7b\x4b\xff\x64\x44\xdb\x69\x12\x9c\x53\xb2\xd8\x45\xaa\x57\x12\x96\xb3\x1c\xb6\xa5\x7a\xca\x11\xc2\x14\x77\x45\x7b\xdd\x4b\x62\xe1\xfe\x9e\x19\xf1\x9d\x2e\x11\x34\x8e\x18\xd1\x65\xd1\xf3\x3f\x5c\x21\x08\xad\x2c\x63\xbf\x62\x52\x52\x0c\x2d\xab\x28\x5a\xae\x71\x84\xc6\x31\xbc\x47\xd6\x82\xf7\xc5\x0e\xc2\xa7\xa9\x9f\xc5\x12\x63\x4c\x09\x4e\xa6\xb7\xf4\xcd\xe2\x8f\x33\x88\x6a\xd4\xa8\x71\x33\xcd\x22\xb8\x8a\x5d\x92\x16\xd8\x54\xcd\x40\xe0\x68\xa3\x98\x22\xe7\x6b\x06\x9f\x8c\x93\xb9\xf7\x8c\x15\x10\x2e\xef\xe3\xdf\xf1\xb3\xe2\x0c\xa1\x88\x27\x88\xf3\x63\xf4\x1b\x42\xc9\x3a\x55\xaf\x94\x13\xfe\x0c\xf4\x2c\x32\x52\xf3\x65\xee\x11\x56\x7d\x77\xf0\x62\x9a\x1e\x11\x8c\x5d\x3e\x7a\x6c\x6d\x7a\xcc\x40\xf3\xdd\x53\x77\x91\x6f\x8f\x08\x1d\x51\x8e\x46\xe1\x2f\x2c\x08\x5c\x9d\x9a\x96\x35\x31\xbb\x09\x52\xfe\xcd\x6e\x8f\x1b\xae\x10\x0e\x4a\x44\x4d\x5e\x9d\x62\x3f\xe1\xcc\xd5\xee\xdc\xcb\xb1\x53\x36\x13\xe2\x3c\xde\xb7\x3d\x9b\xaa\x4a\x30\x6c\x72\x76\x55\xfd\xa4\x46\xf8\xd2\x34\x18\xad\xb4\x90\x97\xb0\xba\x3d\xf2\xfa\xc1\x17\x9e\x04\xde\xb5\x79\x49\x45\x57\xe5\x09\x9d\x27\xc6\xa6\xcc\xde\xa3\x48\xd0\x15\xd9\xf7\xf0\xd0\x29\x71\xc2\xcc\x0f\xd4\x70\x48\x82\x8f\x20\x78\x2d\xa2\x6d\xea\x0b\xe7\x09\x70\x2a\xb5\xfc\x39\x4b\xfe\x20\xc1\xb7\x6f\xa9\xca\x92\xb1\x31\x16\x9c\xaf\xa5\xb8\xbd\x3a\x78\x8e\x90\x90\x77\xff\x63\xa1\x8b\xf9\x04\x04\x2e\xbc\x74\x2d\xad\xb4\x9c\xc1\xf3\x7e\xdb\xd8\x07\x7f\xcb\xad\x0e\x19\xb7\xc7\x9f\xf8\x09\xc5\xd3\x0a\x38\x35\x5e\x76\xb1\xe0\x2c\x6f\x99\xba\xf3\x34\x07\x21\xe8\x97\xde\xf1\xfd\xf3\x77\x13\xcc\xda\x7e\xfa\x64\xd7\x57\x30\x90\x11\xdf\x71\x7f\xec\xf5\x36\x42\x8f\x65\x6a\x59\x3f\x4b\x90\x30\x43\xe6\xc9\x73\x5e\x05\x09\x02\xcf\xc5\xcf\x2d\x0b\x8e\xf2\x13\x8e\x5b\x17\x70\x89\x5c\x1a\x65\xc1\xc7\x37\x3c\x6a\xf9\x95\x99\x04\xf6\x20\xa1\x4b\x43\xec\xa2\x84\x44\x69\x35\x29\x89\x27\x9a\x84\xcf\xdd\xdf\xb6\x48\x7d\x64\x08\x1c\x96\x5f\x85\x37\x06\xce\x24\x3c\xef\xbe\x56\x71\xd2\x7a\x21\x61\x93\x6a\xec\xc5\xa9\x2f\x23\x09\x43\x92\xf2\xe4\xb9\xf9\xef\x42\x95\x18\x66\xdc\xe7\x97\x43\xf0\x48\x6f\xf3\xcb\xf1\x4c\x27\xc4\x85\xa8\x1d\x59\x73\xc2\x8f\x20\x68\xeb\xa5\xf1\x6f\x34\xb6\xd9\x39\x73\x59\x41\x2e\x83\x56\xa1\x4b\x8a\xec\x42\x9b\x08\xec\xf7\x4a\xfc\x34\x47\x8e\x13\xe2\x70\xbf\xfb\xec\xbd\x6d\x04\x93\x9d\x23\x37\xba\xb3\x74\x09\x19\x56\x5f\x2e\x72\x86\xe9\x11\xbe\x06\x28\x56\xf1\x9e\x51\x21\x7c\xb2\x08\xdb\x79\xca\xf4\x0b\x0b\x85\x79\x0f\x67\xce\x2e\xf2\x26\x94\xd7\x96\x3f\x70\xdc\xf6\x88\xd0\xf5\xce\x67\xb5\xa9\x71\x09\x61\x53\xe4\xa5\xa2\xeb\x27\x95\x08\x09\x9e\xbd\x15\x3f\xe6\xb3\x08\x73\xd2\x25\xbf\x6f\x0e\xbf\x47\x78\xe9\x76\xf0\xe5\xb5\x46\xdb\xff\x02\xc7\xc0\xea\xa7\xe7\x0d\xf9\x08\xb3\x7b\x37\x67\x1e\xf2\xfa\xc1\x42\x57\x8c\xe7\xe2\xdf\x5b\xd6\x11\x6c\x04\x27\x8b\x48\xdf\x3c\x4a\xb8\x95\x7e\x27\xb2\x53\x53\x9b\x20\xa3\x62\x64\x23\x31\xdd\x98\xf0\x6b\xf1\xad\x2f\x93\x8f\xac\x26\x88\xdc\x8d\xb0\x96\x3f\x1f\xc0\xe0\xfa\xed\xae\x95\xaf\x9a\x15\x68\x1c\x59\xde\xa2\xf1\x37\xb7\xb5\xb3\x70\xe2\x73\xbc\x6b\x74\xa6\x22\x41\x4d\xc8\x4d\xf6\x42\x08\xdb\x04\xec\x3c\xef\x50\xf3\x67\x15\xd7\x04\x04\xbc\x68\x73\xf6\xdf\x52\x49\x90\xd6\xd7\x1a\x19\x6a\xa9\x22\x8c\x98\x1f\x2d\xeb\x69\x58\x47\xd0\xd3\x15\x11\xf7\xb8\x96\x47\xa0\xde\x22\xbe\x15\x4f\xd4\x09\xae\xfb\x24\xdb\xe6\xbd\x2a\x27\xe8\xed\xd6\x68\xec\xe3\x5a\x48\xc8\x54\x0c\x6a\xaf\xad\xd8\x49\x98\xbd\xe9\xa4\x4e\xdf\xdf\x1b\xee\x5b\xcb\x25\xad\x01\x03\x1e\x82\xde\x8c\xe7\x51\x47\x53\x65\x09\xbf\x62\x1e\x1b\x0b\x4f\x0f\x23\xc8\x1e\x9d\x72\xfd\x1f\xbe\x5c\x5a\x52\xf9\xb4\x29\x62\x02\x5a\xb6\x5a\x7c\x49\x92\xcd\x23\x0c\xff\x51\xe6\x5b\x53\xf7\x8d\x35\x0e\x9e\xe5\xc1\x1b\xd2\xf6\x3e\x27\x84\x6d\xdf\xdb\xa5\x7b\xb3\x84\x60\xdc\xcc\x9d\xf2\x39\x2a\x8a\x30\xc6\xd5\x3c\xc0\x33\x29\x85\x60\x79\x3d\x51\x80\x73\x24\x8a\x70\xe3\x49\xa8\x8f\xb0\x6c\x08\x21\x37\xf7\x5a\x74\xfd\x8f\x93\x04\x83\x5f\x4b\x0e\xf0\xc8\x9b\x11\xd6\xf1\x9f\x3b\xab\xda\xc8\x4f\xc3\x5b\xd7\xf7\x5d\xf4\x9f\x41\x30\xd9\xef\x99\x1a\xe2\x39\x9f\x20\x7a\xef\xd6\x53\xb9\x13\xb3\x09\x9f\x6d\xf2\x07\xf6\xee\xe0\x24\xb0\x76\x54\x1b\xe7\xec\x91\x21\x74\xfa\x24\x55\xa4\xcb\xaa\x12\xd4\x3d\xcf\xf2\xd5\x5c\xf9\xc9\x42\x7f\x73\x69\x5c\xff\x69\x45\x1a\x47\xd7\x95\xa4\x9f\xa1\x3b\xc6\x58\x88\x2d\x79\x3e\x75\xf9\xb9\x0d\x84\x0b\x74\x57\xc3\x2d\xc8\x8d\xc1\x98\x44\x72\x82\xba\xfd\x06\x82\xc6\xdb\xe5\x2b\xbe\xdf\xd1\x26\xd8\x3b\x7a\x09\x7b\x4f\xaa\x65\xc0\x33\xe0\x3e\xbc\xe8\x8c\x36\x61\x21\xbf\x74\x8c\xa8\xc8\x41\x02\x3d\x33\x9c\x31\x23\xa2\x94\x81\xc3\xb0\xfc\x83\xa7\x54\x5d\x8c\xc2\x65\x11\xe9\xe6\x96\xf9\x84\x03\x9b\x9d\x53\xb7\xfd\x85\xae\xb1\xcd\x0a\x2f\x91\x7c\x42\xc2\xc9\xed\x3d\xd2\xc5\x39\x84\xb8\x12\xed\xd3\xff\x46\x2f\xd4\x0c\x96\x07\x9c\xf1\xf9\x2f\xdc\x3e\xdd\x7d\xef\x96\xe6\xc4\xa2\xc4\xa5\xfe\xf5\xc2\xab\x41\x16\x06\x06\x9f\x5c\x8b\xb2\x88\x22\xb4\x4c\xed\x39\x7c\x33\x6c\x1a\x41\x51\x8b\xeb\xa4\x50\x45\x16\x21\x6e\xfd\x89\x35\x7a\x7e\x0d\x84\xdf\xcf\x15\x92\xfe\x95\x96\x35\xf5\x99\x67\xef\x2e\x26\x74\x6b\xb0\x9d\xbf\x35\x98\x43\xe0\xf4\xd3\x78\x67\x92\x57\x45\x08\x96\x7f\x1e\x23\xea\x1d\x4f\xb8\xf1\xa2\xa2\xc5\x2c\xee\x16\xe1\x72\x7f\xab\xb0\x69\x70\xec\x84\xd1\xb6\x6b\xf3\x8c\x0a\xd8\xff\x7e\xd7\xab\xed\x04\x0d\x13\x1d\x09\x5b\xce\xbf\xcd\x1e\x12\x28\x21\x9c\xeb\x31\x5d\xe7\x3b\xf2\x8a\x81\x58\x6d\xdb\x1d\x75\x9d\xf7\x0c\x12\x7c\xbb\xc4\xba\x25\x7b\x18\xc8\xdf\x79\xb3\xd8\xd2\xb4\x84\x70\xb4\xbb\x40\xe9\xa8\xd6\x11\x06\x22\xf5\x93\x1e\x7c\x6e\x3b\x45\x08\x99\x62\xc9\x3f\xcd\x32\x91\xf0\xa3\xf0\x64\xeb\xa0\xc7\x31\x82\xe3\x2f\x5f\xbf\x85\x07\x7d\x68\xfc\x4c\x3e\xff\x65\xe5\xb8\x39\x67\x09\x09\xdf\xdf\xbb\xd9\x1c\xb1\x20\x0c\xba\x73\xcb\x14\x18\x9d\x20\x7c\xb6\xd3\x5f\xb5\x52\xdc\x82\xe0\x95\xa5\x9c\x9f\x2f\x22\x4f\xa8\x37\x6b\x6d\x39\x70\xa6\x94\xf0\xbc\xde\x27\x68\xc5\xd1\x33\xff\x85\x2d\xf9\x36\x0b\x76\x3c\x2f\x63\x30\x94\x55\x7c\x44\xa4\x5d\x8c\x20\x92\x76\xd6\xa0\xd4\x55\x99\x20\x64\x16\x3d\x5a\x79\xa7\xb9\x18\x0b\x37\x08\x71\x2c\x55\xf0\xa4\x71\x5c\x1f\x5d\x61\xdd\x10\xd5\x4a\xb8\x58\x5a\xfc\xb8\xd1\xef\x25\x81\x09\x56\x33\x54\x0b\x29\x25\x2c\x56\xcb\xf6\x96\x76\x6b\x24\x6c\xf1\x8a\xdb\xa4\x65\x5e\x47\x10\x4e\x0d\xd8\x68\x30\x75\x21\x81\x35\xc7\x32\x55\xe2\xb1\xe2\x7f\xc1\xce\x76\xea\x48\x66\x93\x10\x61\x40\xbe\xf4\xed\xe5\xf5\x1b\x09\x4b\x8f\xe8\x3c\x57\xfb\xce\x46\xc0\xa9\x1e\x39\xdb\x8c\x25\x04\xb7\x4e\x31\xd5\xe6\x06\x11\xc2\x56\xb9\x83\xce\xf5\x72\x3f\x59\xc8\xe0\xf1\x2f\xe1\xf6\x99\x4e\xf0\xd7\x68\xaa\xa9\x9b\x7e\x9f\x70\x66\xda\xba\xe8\x98\xc1\x0b\x84\xa1\xd3\xe5\xdc\x6d\x41\x61\xcc\xf8\xe8\xba\x61\x67\xf9\xfb\x48\x41\x02\x6f\x70\xf8\xee\xcf\x05\x2b\x08\x0b\x8b\xad\x1a\xcb\x99\x1f\x84\x85\x93\xa3\x12\x3d\xbd\x93\x09\xad\x4d\xfa\x86\x0b\x92\x62\x09\x46\xc5\x2c\x89\x61\xaf\x1f\x13\xca\x2f\x56\x49\xa6\xf6\xc3\x08\xc2\x50\x8c\xa8\x59\x7d\x41\x2e\xe1\x9a\xdd\x5b\x89\xf3\x9a\x5e\x84\xf0\x1b\xdd\xd6\x71\x2a\x5e\x04\x7e\xff\x42\x3f\xe7\x8a\x74\x42\x85\x36\x57\xdc\xd4\xc0\x39\x04\x97\xf3\xc3\x95\x7a\x9d\xea\x84\x9d\x1f\x8d\x47\x14\x9e\xe9\x13\x5e\xc5\xf0\x1c\x73\xe7\x56\x22\x54\x49\xdc\x3f\x2d\xbe\x64\x0b\xc1\x80\x8d\x3d\x6f\x4a\x78\x1f\x61\x2b\xa7\xf7\x95\xdb\x95\xbf\x09\xa7\x5b\x65\x9e\xcc\xfe\x9c\x47\x78\x99\xfb\x73\xc3\xe2\x36\x35\xc2\x1b\xae\x36\xed\x97\xec\x1c\x84\x53\xb9\x85\xe7\xa2\x47\xa5\x09\x17\x6e\xef\xeb\x94\xbf\x78\x86\xb0\xa9\xd3\x5a\x4e\xed\xa0\xcd\x04\x24\xd9\x31\x77\x1a\xfb\xf2\x18\xc4\x79\x0d\xf0\x5e\xaa\x1a\x66\x8d\xe3\xca\xbe\x3f\x6f\xc5\xfd\x5f\x15\x43\xf2\x75\x8f\x01\x77\x4f\x13\x21\xb2\xdc\x6f\x2b\x69\xa4\x33\x18\x2d\xe2\x9c\xb3\xb8\xb0\x89\x50\x68\x75\xc5\xf8\x44\x65\x2d\x21\xbe\x11\x99\x92\x35\x11\x84\x12\x3e\x1d\x9b\x22\xa5\x7d\x04\xce\x5f\x41\xa5\x09\x49\xa6\x84\xa4\x92\xd4\x25\x97\x76\xa8\x13\x22\xa4\x34\x3e\x86\x37\x1c\x26\x88\xfa\xe6\x6f\x2d\xc9\x7b\xc5\xc2\xd2\x4f\x09\xce\xef\xdf\x6e\x21\xd8\x7b\x0d\x1c\xbb\x6c\x33\x99\xb0\xe8\xfb\xc3\xf8\xea\x94\x4c\xc2\x91\xb3\xee\xd3\x3b\xd8\xcc\x08\x8b\x5a\xde\x5f\xe9\x73\xb9\xc5\x0c\xcf\x76\xad\x2d\x69\x5b\x43\x78\xb5\x58\x69\xb0\x79\xf6\x1c\x82\x41\xa3\x7b\x93\xef\x71\x41\x42\xca\x3a\xae\x4f\x19\x59\x1a\x84\xc2\x30\xef\xb7\x03\x53\xae\x4c\x40\xcf\xc5\x45\xbd\x2e\xfd\x1e\x84\x06\x81\xfe\x49\x5a\xa1\x3e\x84\x95\x5e\x9e\x6a\xcb\xd4\x9f\x15\x23\xff\xc4\x8f\xd9\xd1\x5b\xf3\x08\x3f\xc2\xce\xdd\xac\x8a\xcb\x22\xa4\x25\x76\xeb\xfd\xc0\x1f\xc2\xd8\x7c\xb6\xf4\xf9\x26\xbd\x84\xcd\xc6\x37\x5b\x26\xdf\xfc\x45\x38\x7e\x7b\xc5\x8d\xcd\xb7\xb3\x08\x56\x4c\x67\x01\xef\x7d\x63\xc2\x95\xd9\x02\x7f\x7a\xb8\xd2\x08\x7c\xa1\x79\x16\x17\xe7\x6d\x21\xe8\x18\xb9\x6e\x77\x7d\xf9\x93\x85\x92\x3e\x81\xa6\xc8\x91\x4c\x16\xf6\x08\x35\x87\x2b\x6a\x7b\x13\xba\x2c\xf5\xcf\x89\x78\x64\x30\x60\x1f\xa9\xeb\x3f\x38\xe5\x06\x41\xd5\xe9\x4e\xf9\x3f\x5c\xf0\x2b\xfc\xc0\x61\x1c\x4f\xe8\xd9\x30\xaf\x42\x45\x7c\x90\x60\x15\x9b\xb5\x77\xe1\xe7\x9f\x84\x07\x77\x0c\xee\x4a\x85\xbf\x22\x54\x1e\xdb\x9f\x9e\xdd\xf4\x93\xe0\xd4\x72\xeb\x81\xb0\xd4\x43\x42\x91\x34\xe7\x85\x16\x89\x7a\x82\x7d\x46\xce\x31\x57\x95\x3b\x84\xdc\x9d\xeb\x0f\x25\x9f\x19\x23\xa4\x18\x17\x3c\x3a\x72\xff\x27\xc1\xff\xd7\x68\xc7\xfa\x9d\x43\x84\xf3\x95\x66\x2b\x42\x0c\xee\x10\xce\xa8\x25\xef\xbd\x3c\xe6\x44\x68\xfa\x7e\xe3\x5c\xc9\x9a\x5a\x42\x82\x8c\x2f\xe7\xba\x2e\x47\x82\xcd\x72\x0d\x88\xb5\x70\x12\xd2\x96\xb7\xc5\xb3\xa2\x87\x59\x88\x99\x67\xa7\x69\xd5\x13\x4e\x98\xb7\x6f\xf9\xf3\x63\x7f\x57\xec\xa8\x94\x24\x87\xe0\x9e\x04\x66\xbc\x54\xf3\xb5\x85\x54\x66\xee\x22\xf4\xf6\xe7\x4a\xde\x36\x91\x27\x34\x84\xec\x51\xb2\xd2\x4c\x64\xf0\x50\xa8\x49\x5c\x5c\xcd\x84\xf0\x29\xf7\xba\xa4\x00\xef\x02\xc2\x83\x6b\xb3\xd4\x75\x2e\x4e\x25\xbc\x54\x5a\xb5\xec\x1e\xcf\x21\x06\x7d\x53\x03\x38\x5d\xfc\x2f\x30\x78\xb7\x41\xf2\xf1\x6e\x57\x73\xc2\x19\x79\x21\x8d\xc0\x99\x67\x19\x70\xb5\xfa\x2c\x6d\xde\x26\x4d\x70\x32\x28\x2f\xef\x15\x12\x23\x64\xe8\xb7\xac\xba\x70\xe2\x1c\x83\x5b\x15\x75\xe7\xe6\xec\x31\x26\x84\xdc\x4d\x7d\xb6\x46\xf1\x13\x0b\x3a\x9f\x38\x24\x38\x9a\xd5\x09\x87\x4d\x6f\x1d\xba\x62\xb5\x8c\xe0\x22\x71\x73\x65\x9a\xf0\x6a\x42\xc2\x83\x57\x33\xc2\x0e\xc8\x10\x12\x5d\x32\x38\x69\xb2\x0c\x41\x45\xf5\xae\x46\x79\x86\x20\x41\xb8\xc1\xbe\x5c\x61\xe6\x24\x42\xfd\xe7\xd7\x73\x3b\xa5\xa7\x4f\xc0\xeb\x36\x36\xf1\xcb\x81\xcb\x26\xc0\xb4\xdf\xa1\x23\xe7\x50\x7d\x31\xce\x24\x06\xab\x1d\x94\x14\x24\x3c\xba\xe3\x2c\xb2\x62\x4f\x36\x21\x4a\x76\xf2\xc8\xf2\xaf\x8f\x08\x69\x65\xbb\x65\xf7\x7a\x70\x13\x54\xbe\xef\x63\xfd\x36\x92\x23\x2c\x75\xe3\x54\x57\xd0\xb9\xc9\x8c\x8f\xa6\x4a\x8e\x5a\x1e\x66\x1b\x66\x81\x3d\xc3\xb6\x6d\xa6\x56\x3f\x6b\xbc\x64\xf0\xd8\x96\x59\x4e\xf9\xc6\x82\xd3\x01\xd7\x1f\xe9\x4b\xc5\x08\x26\xb3\x17\x3f\xcc\xab\xd0\x24\xd4\x97\x37\x9f\x5b\x25\x6e\x42\x48\x16\x3a\x77\x78\xe9\xeb\x0d\x13\xb0\xaf\x4a\x9a\xf5\xa7\xfa\x4b\x31\x3a\x97\xaf\x3b\xef\xf6\x59\x9a\x20\x53\xf4\x7b\x12\x57\xda\xc1\x09\x48\x3a\xaf\x69\xf6\x81\xf7\xe2\x04\xf8\x70\x68\xab\x80\x9f\x7b\x02\x16\x7d\x14\x0a\xe0\xb2\x12\x9a\x80\xb5\x71\x86\x49\xf9\x82\x63\x2c\xcc\x0a\x7b\x53\x78\xd4\x6a\x05\x61\xa0\xcd\xc4\xe4\xcf\xb5\x85\x13\x90\x7a\xc1\xe2\x8d\xf7\xd1\xc7\x0c\xe2\x94\xb7\x68\x7f\xc9\xe7\x20\x6c\x70\x5f\x90\xb0\x3a\x6b\x1d\xc1\xae\xe2\xec\xce\x9e\xcb\xe1\x04\x83\x67\x1d\x4f\x39\xe6\xef\x25\x3c\x6e\x3e\xd5\xe7\xdc\xb4\x88\xf0\xa5\xb4\xb9\xc7\xd5\xb1\x8a\xc1\xb3\xc3\x73\x4e\xff\x2b\xc1\xf3\x1e\x45\x6e\x5e\xf0\x94\x05\x53\x55\x26\x6d\x5b\xa5\x00\xa1\xd4\xe1\xc1\x1a\xb5\xe0\x15\x84\x1d\x4f\x0d\xe3\x3d\x8c\xf5\x26\x20\xc7\xaa\xa8\x32\x48\xf1\x06\x0b\x1f\x7c\xf6\x0a\xfd\xfc\xf9\x9d\x85\xde\x4a\xfd\xb1\x9a\x79\x72\x34\x0e\xd3\xd5\x5e\xe6\x2b\x5f\x3e\x2a\xc6\x4f\x91\x45\x5b\x67\x70\x3b\x32\x78\xdb\x9b\xd6\x6f\x9a\x3b\x8f\xd0\x71\x78\x2c\xfb\x46\xdf\x4c\xc2\x80\x69\xce\x12\x41\x39\x76\x82\x5d\x40\x87\xfa\xb3\xbc\x19\x84\xef\xca\xe7\x63\x3d\xcb\xe4\x26\xc0\x46\xdf\x29\xd0\xfd\xdc\xdb\x62\xd4\x8c\xe9\xf4\x71\xf0\xf0\x11\x7a\x56\xca\xc8\x8a\xbb\xfa\x11\x36\x99\x88\xef\xfd\xdc\x7c\x89\x10\x2a\xa6\x1a\xfe\x70\x77\xca\x84\x62\xd5\x71\x7e\xa7\x93\x47\x09\xe1\x9a\xb4\x91\x70\xa4\x5d\xea\x04\xa4\x3b\x9d\x7f\x1b\x96\x76\x89\x70\x58\xb2\xd7\x74\xeb\xbb\x5e\x16\xcc\x7a\x1d\x5f\x07\x75\x48\x13\xf0\xc8\xbe\x20\x3c\x63\x21\xc1\xf7\xf1\xcb\x6d\xef\xde\x9a\x12\x56\x7d\x30\xe8\x33\x4f\xd8\x45\x48\x6e\x32\x12\x9b\x2d\x68\x4c\xc3\x0f\x5a\x7a\x76\x0a\x6c\x24\x4c\x5d\xdf\x69\xdc\x7e\x45\x87\x20\xe1\x16\x77\xa1\xbe\x2b\x92\xf0\x65\xb2\x85\xf8\xed\x73\x8a\x84\xdf\x59\xd9\x3b\x79\x5e\xbe\x62\xc1\x43\x2a\xf9\xc0\x34\x95\x33\x84\xa1\xdf\x87\x7a\x73\xeb\xbc\x08\x4b\x6f\x7f\xdd\x78\x91\xeb\x30\x61\x34\xed\xd2\xd4\x52\xbf\x50\x82\x8f\xbc\x44\xd0\x72\x3f\x1f\x42\x52\x6a\xab\x42\xe8\x14\x1f\x82\xe5\xa9\x5a\xeb\x59\xdf\x2f\x12\xce\x3c\x48\xbb\x3d\xe7\xdc\x5a\xc2\x6e\x95\x72\xc1\xc9\xa2\x71\x0c\xde\x5c\x93\x0b\x5c\xb0\x4c\x9e\x30\xf2\x73\xf7\x6b\xeb\xbf\xab\x4d\xbe\x29\x1b\xef\xd8\xdc\x25\x84\xae\x0f\x5b\x12\xaf\x6c\xde\x48\xa8\xd7\x1b\xe5\xbf\x56\x64\x49\xf8\xb9\xc1\xea\x61\xc8\x31\x53\x82\x95\xb3\xd2\x65\x69\x9e\x47\x0c\x52\xde\x9b\x4a\x29\xbf\x55\x26\x78\x46\x7c\xfb\x96\x78\x42\x91\xc6\xcb\xcb\x17\x1a\x45\xeb\x57\x48\x12\x8a\x7e\xfa\xd7\xf5\x98\xf0\x11\xda\x02\xb7\x3f\x9c\x55\x32\x9b\x70\x2b\x60\x4b\x65\x93\x63\x30\xa1\xdd\x37\x3c\xec\xb6\x84\x25\xe1\xed\x05\x56\xf7\x40\x56\x1f\x0b\x69\x53\x47\x96\xff\xf6\x73\xa3\x71\x58\x76\xbd\x34\x98\x57\xad\xf2\x5f\x88\xb3\x98\xfb\x43\xfe\xd3\xc1\x09\xa8\xb7\xc8\x15\xb4\xfa\xfb\xe0\xff\x11\x58\x51\xa3\x74\xbd\x82\x90\x2d\x92\x6d\xf3\x54\x6c\x0e\xa1\x40\xed\xfe\x92\xa1\xb7\x2f\x8b\x71\xb8\x3a\x7f\x6a\xc8\x43\x59\x42\xc9\xb2\x9e\x0d\xa7\x84\x8e\x13\xfc\x7e\xad\x0d\x08\x55\x0d\x25\x70\x9e\x6c\xed\x09\xd4\x77\x24\xec\x12\x69\x2a\x8b\x88\xd8\x48\xe8\x0d\xd9\xf7\x58\xaf\x79\x03\xe1\x89\xa8\xbb\x50\x4b\xe9\x3e\xc2\x8f\x6d\x3a\x42\x37\x0d\x17\x11\x74\x78\xbe\xf2\xef\x7e\x23\x40\xa8\x1b\x79\x7d\x50\xcc\xe1\x11\xe1\x51\x75\xe7\x45\x1e\x0d\x0d\x02\xeb\x66\xde\x6b\x3e\x03\x13\x82\x2d\x6b\xe8\xe7\x0d\xfe\x3b\x0c\xe4\x2e\x4c\xab\x3b\x3e\x70\x9d\xc1\x8c\xd3\xb7\x84\x22\x4f\xc4\x12\xd4\x4a\xba\x3e\xdf\x68\x8a\x63\x70\xdc\x48\x58\x76\xc1\xb1\x54\x06\xdb\x5a\x0c\xd3\xdb\x5f\xdf\x22\xfc\x56\x2d\xbb\x55\x12\x1b\x49\x50\x97\x3c\x61\x7b\x70\x4b\x20\x41\x76\x76\x91\x40\xda\xea\x1b\x84\x73\x9a\x21\xeb\xcc\x94\x2e\x10\x82\x4c\x77\xbe\x6a\x72\x0d\x21\x1c\xf3\x7e\xd6\xec\x71\xff\x36\xc1\x3e\xdf\x38\xea\xc0\xa1\x38\x42\x9b\xea\xfd\xa7\x66\x3a\x59\x84\xae\xad\x07\x44\x96\x9e\xbd\x46\xf0\x7b\xea\x57\x7a\x7d\x9d\x35\xe1\x8e\xae\xc7\x67\x4d\x03\xeb\x09\x45\xae\x39\x71\xf1\x31\x29\x5b\x82\x2b\xa7\x81\x6f\xc1\x45\x6e\xc2\x03\x97\x31\x27\x91\xe0\x59\x13\x8a\xdf\xb5\xdb\x87\x76\x9a\x84\x10\xac\x33\xb6\x79\x19\x6e\x3e\x43\x48\x1c\xea\x5e\x1b\xe0\x7f\x91\xc0\x79\x64\xa1\x95\xc5\x40\x02\x21\x2e\x8a\x6e\x68\x8a\x27\x30\xc8\xf3\x08\x65\x85\xbf\xe4\x20\x9c\xfd\xe5\xde\x74\x6d\x75\x35\x0b\x57\x77\x26\xfc\xdc\x75\xdb\x9d\xc6\xe1\xf3\xfa\x8c\xea\x9c\xc6\xab\x0c\xac\xf3\x52\x79\x8c\xfd\x16\x12\x84\xbb\x35\x87\x0e\xc7\xef\x24\xec\x61\x96\x4c\xfa\xa6\x66\x48\x28\x5f\xb8\xd9\xe7\xbc\x15\x0f\x41\xdc\x40\x8a\x3f\x6c\x8d\x03\x03\xc5\x61\x9f\x3b\x57\x8a\xe7\x12\x64\x72\x36\x1e\x5b\xd0\x2f\x41\x08\x69\xc8\x09\x4d\x99\xb6\x91\xb0\x58\x77\x8b\xa3\x02\x9f\x19\x61\x34\xd0\xc2\x29\xcb\x61\x31\xa1\xb3\x27\xab\x7f\x74\x24\x9e\xb0\x31\x36\xdd\xaf\xfd\xc0\x0e\xc2\xba\xef\xfe\x5f\x2f\x07\x09\x11\x36\xb6\xee\xa8\xd3\x1d\xdd\x48\x68\x72\x99\xb9\xfa\xe7\xf5\xad\x13\x8a\xf1\x86\x9d\x95\x83\x97\x2e\x11\x6e\x55\x34\xcc\xfc\x5a\x7c\x69\x42\x49\xd1\x10\x7c\x3d\x23\xf3\x3a\x61\xce\x87\x97\x99\x5d\xe5\x99\x84\xa5\xf1\x52\x8f\x9b\xfa\xc2\x26\xe0\xb5\x7d\x50\xd8\x71\x2e\x73\x82\xdf\xf3\x8b\x9c\x46\x4d\xd5\x0c\x62\xbe\x4f\xb2\x51\xf8\x63\x46\xf0\x4f\xda\x9b\xdd\xce\x08\x11\x6e\x46\x1c\xe8\xba\x5e\x23\x49\x08\xc8\xeb\xcb\x4c\x90\x13\x9b\x80\xde\x90\xd1\x0b\xfc\xc2\xd6\x84\x43\xcd\xaf\x4a\x78\x32\x3f\xb2\x60\x25\x18\xe6\x71\x69\x70\x01\x61\x59\x68\xc6\xfa\xde\xf5\x2a\x84\x53\x2a\x1a\x97\xbd\x14\xe7\x10\x36\x1c\xb6\xf2\x6d\x5d\x6a\x4e\x08\xd8\xa6\xa2\x5c\xa4\xb8\x9f\x30\x97\xc9\xdf\xf9\x7c\xd0\x84\xc0\x73\xd5\x5c\x72\x70\xe4\x2e\x03\x67\x61\xe9\x1b\x97\x05\x7f\xb3\x70\xfc\xe4\x40\x65\xd9\x5a\x21\x02\xdb\xdb\x6a\x43\xf3\x29\x0b\x69\xbc\x7c\x6e\x9f\x77\x70\xd1\x93\x64\xc2\x55\xdb\x2b\x9b\xa5\x13\x57\x11\x76\x1a\x7f\x93\x96\x5b\xb8\x76\x42\xf1\x6a\xd3\x90\xda\x70\x48\x93\xf0\x92\xfd\xcf\xb1\x2a\x23\x1e\x02\x8f\xfb\x73\x91\xe9\xdd\x2b\x09\xa7\xf2\x06\xad\x5e\xde\x15\x20\x68\x39\x76\xd8\x0b\xfe\x7e\x5d\x8c\x5d\x3b\x0e\x73\x33\x02\x43\x2c\xcc\x9b\x1a\x4b\x97\xfb\xf8\x08\x05\xf5\xc9\x5d\x07\x86\xd2\x09\xf3\x50\x30\x59\x30\xff\x2c\x41\x59\x22\xb8\x26\xe7\x85\x3b\xa1\x67\xd1\x9f\xbe\xf4\x6d\xae\x84\x07\x57\xdd\x33\x5f\xfc\x5d\x3c\xda\x97\x65\x7a\x7d\x98\x34\x8b\xf0\xf8\xc4\xd3\xaf\xdc\xe6\x3e\x0c\x82\xb9\x3e\x5f\x5f\x22\xcb\x4b\xf8\x9e\xd8\x9b\x64\x10\xbc\x83\x70\xc3\x30\x6c\x91\xcc\x3c\x4f\x82\xe7\x2c\x5b\x8d\x64\xa9\x5d\x04\x9b\xc1\xb2\x06\x33\xf5\x83\x84\xfb\x0b\xd9\xc2\xfa\x0f\xab\x10\xca\xfa\x6e\x7c\x8f\x9b\xb7\x89\xc0\xac\x77\x3c\x1e\x1d\x23\x4a\xe8\xbc\x33\x78\xf5\x69\xfa\x1a\xc2\xf3\x7d\x6b\x32\x78\x2e\x8b\x11\x52\x2f\xe6\x0b\xd6\xed\x9f\x42\xb8\xfd\xf0\x92\x87\x7f\x88\x24\x61\x45\xc5\x32\xae\xde\x6b\x83\x2c\xb8\xfc\x7a\x18\xb4\x41\x69\x0b\x8d\x43\xbb\xea\xe8\xf3\x6f\x85\xf3\x08\x1e\x9c\xe7\x62\x1a\xb7\x8e\xb1\xf0\xc2\x72\xa3\xaa\xc7\x0e\x19\x42\xd1\xaf\x53\x5b\xa6\xe9\x8a\x13\xce\x6a\x9a\x2f\x73\xf9\xfb\x1d\x3e\xad\x1e\xf5\x7c\x54\x1e\xc8\x60\xc5\xa5\xd7\x2d\x27\xf2\x82\x09\xc2\x32\x4e\xeb\x5d\x4e\x38\x12\xf4\x0d\x6f\xed\xfa\xad\xfb\x99\x05\xf7\xe7\x6f\xfe\x58\x84\x2f\x20\xec\xdb\x9d\xd3\x61\x23\xc1\x47\xb8\x97\xa8\xf6\xca\xdb\x6a\x2f\x21\xf7\x8c\xd8\x90\x95\xf8\x01\xc2\xb5\xaa\xf2\xf5\x9b\x67\x18\x13\xcc\x8f\xef\x53\x6a\x6d\x97\x21\x18\xad\x61\xdf\x71\xd3\x5f\x91\xf0\xf3\xbd\x48\xb9\x80\x97\x1d\x41\xfe\x4d\xb8\xe3\x60\xf1\x16\x06\xe6\x47\xf2\x87\xb7\x3a\x2c\x22\xc4\x69\xbd\xea\x95\x9d\xa3\x43\x78\xd0\xd4\x69\x7d\x8e\xb5\x82\xa0\x53\xe6\x65\xf6\x23\x46\x98\x70\x4d\xb5\x7f\xdd\xc0\xd4\xc5\x84\x1b\x95\x9c\xde\xec\xfb\x8d\x08\xc3\x53\x78\x2b\xf6\x67\xf0\x13\x5e\x1d\x5d\xbb\x52\xab\x64\x09\x41\x7a\x75\x91\x7f\xe0\x4f\x05\xc2\x0d\x09\xd1\x35\xbc\xf3\xd6\x13\x1a\x0e\xa8\x08\x99\x8d\x45\xfd\x17\x0a\x1e\xca\x3c\x77\x7b\xe0\xff\xff\x8b\xee\x2c\x17\x7e\x36\x0b\xad\xff\xc2\x3e\xad\x8d\xcd\x5f\x9a\x7b\x58\xc8\x7e\x27\x35\x39\xa6\x58\x92\x90\xb2\x24\xe2\xbc\x82\x9e\x0d\x41\x8c\xad\x60\xca\x56\xed\x35\x84\xd3\x42\x98\x6b\xbe\x5d\x85\x60\xcb\x5b\x34\x78\x9d\xed\x17\x0b\xfe\xaf\x4e\x75\x0e\x32\xae\xf4\x1f\x28\x0f\x5b\xf3\x46\x72\xbd\x23\x41\xec\xc9\x51\x8e\xd0\x53\x2c\xc2\x6f\x3b\xad\x45\xdc\xd6\x9b\x08\x7a\xfd\x6d\xe9\x95\xa1\xfc\x04\xe3\x7e\xc1\xf3\xcc\x7b\x31\xc2\xa5\xd5\x16\xeb\x2a\x77\x29\x10\x76\xd9\xb8\x14\xd9\xcd\xd3\x20\x24\x2a\x19\xfa\xed\x79\xa0\x49\xf8\xd9\x2b\xdc\x34\x45\xac\x99\xb0\xea\xda\xbc\xd2\xc9\x7f\x51\x7c\x72\xdd\xe4\xa9\x7f\x91\xb0\xbd\x78\xc6\x70\x54\x0b\x0b\x5a\x95\xa1\xc2\x8b\xe2\xb9\x09\xa3\xfe\xce\x07\x0d\x6e\xde\x99\x80\xe5\x3e\x7a\xa1\x7c\xea\x4d\x0c\x14\xc6\xb4\xb5\xff\x15\x9b\x0b\xdf\x2d\x34\x5b\x77\x4c\x40\x39\xef\x40\x48\x9d\xeb\x55\x66\xbc\xd4\xab\x71\xc4\x7f\x71\x09\x25\x98\x3d\xe9\xea\xf3\x94\x98\x45\x78\xa6\xdd\x6f\x19\x58\xc6\x4b\xb8\xa5\xb3\xa3\x6e\x54\x65\xed\x04\xf0\x24\xef\x29\xb9\xd8\xda\xc8\x42\x88\xf1\x6f\xdb\xad\xd1\x6a\x04\x2d\xa9\x6b\x39\x29\x45\xaa\x84\xc0\xad\x55\x7b\x37\xe5\xac\x9f\x80\xaf\x5c\x1b\xbd\x9f\x6e\xd3\x26\x5c\x78\x1d\xd6\x22\xe7\x9d\x59\x8c\x82\xd6\xf3\x2d\xe9\xc6\xfa\x84\x69\xce\xde\xd3\x3f\x3a\x8b\x11\xc2\xaf\xa4\x2f\x9a\x25\x1a\xc1\x20\xee\x6a\xc0\xf7\xa8\x3e\x75\xc2\x3a\x0d\x6e\xd9\xe5\x8f\x32\x08\x53\x8c\x12\xe7\x8c\xee\x3c\x41\x28\xfc\x1a\xfd\xc1\xa9\x87\x45\x68\x5a\x9e\x1d\x96\xf6\xb9\x9b\x85\xca\x84\x7b\xde\x5b\x95\x78\x08\x53\xf7\xaf\xe3\x9f\x66\x39\x85\x30\x3f\xb1\x8f\xeb\xf3\x21\x3b\xc2\x54\x77\x53\x56\xce\x69\x87\x09\x38\x23\xdd\xf9\xcb\xac\x51\x83\xf0\xab\xb3\xac\xf1\x4f\xb2\x39\x81\x6b\xca\x3c\x4d\x75\xcb\x65\x84\xd3\xf3\x6b\x1c\x5c\xbf\x1c\x21\x64\x52\xd7\xe9\xd7\x66\x76\x84\x1c\xee\xdb\xf0\x98\x36\xc4\xc2\xd5\x1f\xc9\x3c\x86\xe7\x05\x68\x1c\x88\x7b\x90\x9a\xec\xa7\x49\x60\x3f\xd0\x77\x8b\xbd\x67\x13\x81\xd3\x7b\x9d\x95\xb3\xa8\x38\x21\x4a\x61\x59\xde\x77\xf3\x3c\xc2\x9f\xa4\xb1\x8e\xdf\xce\x8f\x27\x94\xf0\xa9\x52\xcd\x47\xae\xae\x23\xdc\xdb\xff\xbe\x78\xcd\xc3\xb5\x84\x79\x73\x3e\x84\x2d\x32\xa9\x22\xac\x78\xb8\x6b\xfe\xfc\xa9\xef\x09\xfb\xf6\x2f\xcd\xf0\x2f\x4a\x25\xec\x32\xe9\x61\x57\xca\x37\x22\x28\xdb\xe4\x96\x77\x4f\xbf\x4e\xf0\x4c\x50\xfd\xb9\x2d\x66\x39\xa1\x22\x37\x61\x5b\xd0\xc0\xaa\x09\xe8\xa8\x9a\x1e\xf8\x41\x97\x8d\x70\x2a\xa0\xb9\xd9\xbb\xe8\x13\x0b\x4e\xe1\x75\x5e\xce\x1d\x7b\x08\xa9\xb1\xf6\x61\x02\x26\xda\x04\x19\xe7\x1b\x8e\xcb\x5d\x14\x08\x2e\x7c\x43\x1e\xe5\x43\x8b\x08\x37\x34\x3d\xaf\xee\xe1\xd1\x23\x88\x4e\xb9\x3e\xbd\x6f\x50\x63\x02\x46\x78\xe6\x9e\x1e\x39\xdd\xc5\x42\xe4\xad\x92\xfd\xbb\xcb\xfa\x58\x78\x70\xa4\x45\x3c\xf3\xbd\x08\xe1\xbd\x62\x72\x2b\x23\xa6\x4b\x50\xfa\x22\x9d\xd8\x0b\x6b\xc2\xd3\x8e\x69\x8f\x15\xec\x2a\x09\x8d\x9a\x49\x22\xff\xca\x87\xb1\x8f\xb6\x57\xaf\x6a\x13\x34\x37\x17\x17\xd4\xc4\x19\x4d\x28\x47\x53\x39\xdc\x26\x4f\xbb\x5e\x8c\x5e\xeb\x52\xf5\xd6\xc3\x6d\x84\xb7\xdf\x65\xef\x9d\x2f\xbe\xcb\xc0\xf7\x97\xb4\xe5\x31\x95\x12\x06\x22\xf9\x2e\x67\x44\x7a\x1a\x09\x72\xe2\x87\xbf\xbf\xed\x7c\x42\xd8\x76\x38\xc3\x8d\x23\xff\x16\xc1\x56\xe3\xe6\x37\x67\x8d\x78\xc2\xab\x87\x0f\x22\x8f\xa9\x25\x12\x76\x0e\xc6\xed\x71\x77\x0c\x21\xec\xe0\x8b\x09\xd6\x38\x52\x4a\x70\x2b\xcc\x91\x78\x32\x35\x88\xe0\xfb\xd6\x61\x7b\xa6\x82\x29\x83\x68\xb1\x3d\xc7\xde\x0b\x25\x12\x22\x1e\x14\x9d\x7f\x13\x78\x83\x70\xe8\x93\x58\x13\xf7\xbd\x5a\x06\x36\xdc\x2e\x0a\x96\xa2\x85\x84\x37\x1b\xee\xa6\x09\x5f\x39\x4c\x88\x38\x3a\x6d\x7a\xd5\xd2\x20\x06\x15\x3a\x57\x9f\xe9\x57\x17\x32\x48\x28\x9c\xa6\x5d\x73\x3e\x82\x50\xd4\xd1\x6d\x7d\x29\xfe\x05\x0b\x0f\x54\x46\xaa\x39\xcd\xca\x18\x9c\x98\x9d\xb3\xcb\x53\x44\x8a\x30\x20\x1c\xec\x37\x6c\xb1\x90\xc0\x67\x5c\x3e\xcc\xd6\xf4\x92\x20\x3e\xd2\xb7\x6d\x9f\x4d\x29\x61\x07\xbb\xe0\x8e\xd3\xd3\x6b\x09\x43\x73\xed\xd7\xd3\x22\x43\x82\xb9\xda\x32\x51\xb9\x53\xee\x84\x0b\x4f\x7e\xab\xfd\x4c\x94\x24\xd4\x16\x74\xcf\x12\xf7\xeb\x64\xc1\x3c\xfd\x97\x5f\xa0\xda\x41\x42\xc4\xd3\xfe\xb9\x1b\x2d\x1d\x08\xf6\xd3\x1b\x97\x5a\x16\xe4\x13\x74\x37\xb8\x04\xee\x9c\xfe\x9e\xe0\xe9\xa6\xbc\x8e\x3f\xff\x2d\x61\xa6\x7a\x14\x9f\xbd\x5c\x3d\xe1\xd2\xfe\xd4\x17\x6d\x8a\x57\x09\xcd\x11\xcc\x24\xf6\xb8\x1c\xc2\xd4\xa6\x4d\x6e\x43\x39\xef\x58\x60\xdf\xa0\xf6\xde\x63\xe1\x0c\x1a\xc7\x65\x49\xf5\x6a\x63\xe9\x0e\x16\x3a\x2f\xdf\x8c\x15\x58\xc1\x43\x18\xd5\x4d\x1c\x3b\x5b\xb7\x76\x02\x8a\x3a\x14\x3c\x27\x55\xc8\x10\xc2\xbf\x48\x19\xbc\xbb\xcd\x46\x48\xad\x38\xc4\xbb\xf7\xef\x4e\x73\xd0\xfd\x66\x54\xee\xd0\x36\xc2\xd5\x94\xb0\xba\xe9\xd1\xd6\x13\xca\x14\x27\x1f\xc9\x47\x23\x60\x8d\xe3\xe6\x05\xcb\x03\x76\xab\xb5\x68\x1c\xdf\x3a\x7c\xee\xfb\x4c\xcb\x62\x61\x4d\xc5\x4f\x55\x9e\x0b\xec\x84\xe6\xdd\x77\xed\xd2\x26\x65\x13\xce\x48\x1d\x7d\x33\xc8\x9e\x4d\xc8\xbd\xae\x9f\xf6\x0f\x09\x82\x0e\x39\xa1\xa6\xb6\x84\xe2\xaa\x43\xea\xee\x75\x3e\x84\xbd\xf9\x9d\x21\x2b\x96\xdb\x4d\x18\xfd\xaf\x58\x0d\x55\x37\xf4\x4f\xd5\x25\x1c\xf8\x46\x37\x7c\x0c\xbd\x08\x93\xf7\xb7\x5f\x3a\x5b\x1c\x44\x38\x3b\x23\xa4\x26\xfe\x60\x24\xa1\xfc\x7e\x8d\xaa\x92\xe6\x43\x82\xc9\x61\xe3\xf4\xee\xd0\xeb\x84\x05\x46\xd1\x19\xd9\xf6\x53\x08\x87\x96\xaa\x6d\x3f\xb0\xbd\x83\x81\xf7\xcb\x35\x4f\x7e\x6b\x5d\x23\x3c\xcf\xdd\x21\xb8\xc6\xf2\x0a\xe1\x55\xe5\x67\x9b\x08\x77\xbf\x09\x30\x2e\x2a\x98\x35\x79\xd1\x1c\x42\x9c\x6e\x54\x99\xf7\x23\x5d\x02\x7b\x6f\x5d\xa2\x7f\x9e\x3d\xe1\xce\xd3\x51\x4e\x1d\xf5\x75\x84\x6c\x51\x7d\x7d\xd6\x52\x5b\xc2\x86\x10\xc9\xb9\x53\xe6\xc6\x10\x84\x77\xdb\xda\xfd\x2b\xab\x9e\xd7\xbd\xba\x72\xee\x36\x83\x37\x4d\xaa\x3e\x32\xab\xf8\x09\xee\xd7\x2e\x89\xce\xbe\x55\x4c\xb8\x15\x61\xe4\xbe\xe0\x7b\x0d\xa1\xc3\x5d\xb9\x6c\xd6\xdf\x52\xc1\x6e\x3b\xf2\x22\x3d\x9d\xf0\xad\xf6\xfd\x86\xea\xac\xaf\x2c\xc8\x2f\x0e\x08\xdc\xab\xa4\x41\xd8\xdb\x7a\x3a\x96\xeb\xdb\xec\x09\xa8\xb9\x12\x6f\xb8\xd9\xe2\x6d\x31\x02\xc4\xc2\xe2\xb9\xdc\xe4\x08\x59\x76\xd2\x5d\xb1\x06\x85\x04\x0e\xf9\xc7\xd7\xb6\xd7\x7b\x30\x10\xbf\x18\xd7\xb9\x77\x4c\x87\xd0\x58\xc1\x2a\xf2\x52\xd7\x22\x14\x25\x85\x67\x9b\xa6\xcb\x13\xd8\xa4\xe5\x25\xf7\xfb\x7d\x61\x21\x37\x93\x39\x7d\xc6\xe4\x22\x83\x5a\x39\xdd\xfe\x2b\x12\xeb\x08\xfc\xbb\xce\x26\x3d\x4c\x13\x26\x2c\x7f\x38\xd3\xff\x62\xec\x7c\xc2\xe6\x39\xc3\x6d\xd7\xd4\xfa\x58\xb8\x22\xbe\x75\xce\x9c\x49\x4b\x09\x32\x46\xe5\x6f\x96\xff\x14\x21\x10\xab\x2f\x70\x3b\x1b\xff\x04\x54\xe4\xda\xfa\xaf\xb0\xee\x67\xa1\x49\x53\xec\xd1\xc9\x9f\x12\x84\xc9\x97\x19\x15\xde\x47\xa3\x2c\x84\x6f\x18\x54\x50\x0a\x65\x23\x8c\xb9\x69\xb9\xac\x0c\xca\x66\x20\x63\x9e\x55\x62\xfa\x2a\x85\x70\xe2\x7a\xc9\xe2\xb2\xea\x4c\x82\xf2\xa1\x87\x26\x7f\x54\x95\x08\x3b\x1c\x34\x0d\xc5\xbb\x0d\x18\x94\x54\x5e\x5f\x21\x7d\x48\x86\xb0\xe9\xd4\x5a\x55\x53\xf7\x22\x82\x58\xe4\xc6\xfb\x72\x61\xec\x84\x2e\xe1\xb6\x1f\xe1\x0e\x0c\xe1\xeb\xff\xc7\xd8\x9d\x45\x63\xf9\xfe\x71\xdf\x2f\x45\x91\x8a\x22\x0a\x25\x51\x64\x9e\x95\x9c\x5f\x32\x87\x42\xa2\x88\x48\x86\xca\x50\x54\x4a\x49\x48\x83\x94\xd2\x48\x69\x54\x12\x22\x63\x84\x4b\xc6\x94\x14\x25\x25\x21\x0a\x85\x4c\xfd\xf4\xa1\xc1\xb3\xb4\xf1\x77\xdd\xeb\x69\xdd\xeb\xde\x7b\xad\xf7\xf7\xd8\x72\x1d\xe7\x79\x1e\xc7\x96\xd6\x37\xf1\x15\x1f\x32\x09\x62\x19\x07\x8a\xf8\x57\x59\x10\x7a\x1e\x71\x98\x4a\xae\x0c\x64\x21\xe9\xa9\x9b\xac\xc7\x2c\x75\xc2\x8b\x73\x65\x93\xde\xf5\xee\x21\xcc\x39\x64\x51\x3c\x45\x47\x9c\xd0\xb4\xd2\xf8\x69\x69\xc0\x11\x36\x1c\x39\x10\x1c\x2d\xee\xe4\x4a\xb8\x70\xa3\xec\xa5\x97\x2d\x2f\x41\xb8\x4a\x46\x7a\xca\xd0\x02\xc2\xb1\x99\xfb\x8c\xfd\xa7\xf2\x13\x94\x46\xae\x2d\xde\x2e\xc9\x43\xd8\x70\x29\x4b\x7d\x4f\x66\x1d\x0b\xe9\x61\x72\xbb\x8f\x0d\x25\x11\x3c\xa5\x4a\xb5\xab\x36\x9e\x22\xc4\xfe\x2a\xdd\x24\x91\xbd\x92\xb0\xb0\x6e\xef\xfb\xcd\xe2\xb9\x0c\x4e\xc9\x94\x6d\xe0\xfe\xa9\x49\xe3\x98\x99\x38\xb4\x98\x7f\x86\x39\x5b\x61\x5d\x7d\xeb\xf5\x75\x48\x98\xd0\x2d\xbe\xc9\x5a\xde\x81\x93\x20\xb6\x8d\x77\x95\xf1\x15\x09\x82\x62\x67\x78\x79\xd5\xd8\x23\xbc\x68\xa3\xee\xb9\xda\xd2\x6c\x42\xcf\xd7\x6d\xc5\x7f\xa1\x23\x2a\x7d\xee\x6e\xe0\x02\xc2\x79\xd7\x88\x2c\xae\xd8\x93\x6c\xf0\x28\x89\x7e\x69\xc2\x5a\x48\x18\xce\x30\xfb\x30\xeb\xf4\x01\xc2\x69\x83\x94\xd3\xcb\xe3\x96\x13\x4e\x5d\xed\x79\x4e\x19\x2a\x84\xa9\xc7\x78\x26\xdf\x15\x17\x24\xa8\xb9\xf0\x8f\xf8\x3a\x8a\x13\xfa\x0d\x33\x9e\x4e\x09\xee\x63\x50\xb5\xfd\x92\x95\x5c\xc5\x30\x83\x91\x8f\x5c\x9a\x0a\x4b\x67\x11\x44\xb7\x8b\x1a\x07\x4c\xaf\x61\x60\x2c\x52\x1b\x5f\xf9\x67\x2d\x41\x64\x4b\x6b\xae\xd7\x3d\x73\xc2\x80\x9f\x79\xee\x1d\x21\x15\x42\x07\x87\xbb\x58\x49\xac\x06\xe1\x3f\xdd\xac\x2e\x29\x9b\x29\x84\xae\x33\xd6\xaa\x2b\xc2\x4d\x08\x4e\x0b\x3b\xf7\x7f\x2f\x0a\x63\x41\x6a\xde\xeb\xa3\xca\xda\x7c\x84\x80\x2d\x15\x9c\x2b\x3f\x09\x13\x46\x85\x3e\xda\xed\xa8\x9f\x4f\xe8\xe4\x74\x5d\x58\x57\x93\x49\x70\xca\x33\xd9\x99\xfa\x29\x89\x10\x56\x68\xc1\xf3\xb7\xfc\x0f\xef\x8f\xbd\x8c\x16\xdc\x39\x87\x0d\x89\x1b\x2a\x6a\xa5\x8d\xd3\x09\x4b\xa6\xab\x8a\x2e\x19\x43\xbf\x8d\xd4\x41\x25\xe9\x74\xc2\xc0\x65\xc7\x55\x7f\xcb\xff\x30\xc7\xc4\xfe\x5b\x7a\xe9\x46\xc2\xbc\x53\x03\x41\x1b\x8e\x1c\x62\x8d\x97\xa5\x1f\xb6\x4c\xb7\x63\x1c\xd8\xd6\x08\x64\xc5\x60\x85\xbb\x2a\x61\x5a\xaf\x48\x05\x59\x4f\x25\xfc\xd9\xc1\x7f\xc9\xf0\xc0\x5e\x82\xf3\x99\xce\xc7\x36\x71\x56\x84\xa0\xfa\xab\xb4\xcf\xdd\x8f\x70\x6e\xd8\x44\x6e\xf6\x71\x22\x4c\x92\xb5\x68\xbf\xfd\xc4\x9c\xd0\xb1\x73\xf5\x87\xf0\x69\x46\x84\xef\x6d\xb2\xe7\xcf\x5e\x1b\x66\xd0\xcc\x55\xf4\x68\xb4\x70\x16\xe1\x43\x8d\x9b\x8b\x4a\x8b\x30\x41\x5b\x53\x37\x8a\xf5\xe2\x1d\xc3\x86\x8a\x02\x4f\x6d\x55\x4e\xc2\xad\xd8\x10\x92\xbe\xba\x85\x10\x93\x25\xc4\xcc\x3a\xa0\x4e\xf0\xf8\x92\x67\xd7\x74\x55\x8f\xe0\x6c\xee\xbf\xdf\xdc\x7d\x0d\x1b\x2a\x55\x54\x33\x87\x4a\x36\x10\xa4\x9f\x3b\xda\xf9\xfd\xf2\x61\x2b\x35\x09\x29\xcf\xeb\xdb\x04\xc6\x76\xc2\xa2\xe6\x73\xac\x97\x04\x9f\x09\x3c\x4f\x9e\xae\x3c\x41\xf8\xd6\xcb\x67\xf6\xc5\xd6\x82\x85\xaf\x6a\x61\xa3\x52\x61\x8f\x58\x50\x35\xda\x78\xb8\xe0\xde\x0a\x16\x6c\x17\x6f\xae\x99\xe4\x56\x40\x60\xd4\xf8\xb5\x7b\x4e\x3d\x22\xec\x6c\xd0\x7d\x2d\xc6\x1f\xcf\x42\x5c\xaf\x13\xbd\xd8\xe2\x42\xd8\x53\xff\xaa\xb2\xea\x9c\x3a\x61\x2e\xff\x40\xac\x4f\x5f\x3e\xe1\x8a\x89\x4b\xd8\x93\xc6\x4a\x42\x89\xf5\xbb\x33\x2d\x13\x0a\x08\xa9\x47\xc4\x0c\xf8\x76\xc4\xb2\x60\x7b\xba\xe4\xdc\xad\x3a\x77\xc2\x40\xc7\x3e\xc9\x60\x96\x16\x61\xa1\x10\xbf\xa3\xc5\x54\x09\x42\xfe\xa3\xb8\x4b\x12\xdb\xb4\xd9\xc0\x1d\xfa\xa0\xe8\xd5\xd7\x43\x6c\xd8\xca\xd9\x74\xac\x5b\x69\x27\x21\x51\xfc\x5d\x62\xd8\xac\x65\x84\xe3\x57\xd6\x2a\x76\x37\x3f\x23\xe4\x06\x2f\x3c\x7e\x72\xf4\x2e\x0b\xe1\x86\xff\x89\x8b\xf5\xdc\x27\x1c\xee\x96\x8c\x32\xf7\x98\x42\x50\xba\x13\x36\xcf\x70\x97\x2f\x61\x9e\xc7\xc7\xfd\xeb\xdd\xac\x08\x2e\x9b\x45\xad\x1e\xbe\x7b\xcc\xc2\x46\x39\xfb\x96\x2f\x6f\xad\x09\x1e\x95\x6b\x3b\x1d\xbc\x4d\x09\x9f\x78\xb8\x8b\x3e\xbe\x2b\x67\x70\xec\xa5\x44\x1c\x9f\x52\x3f\x83\x3d\xeb\x45\x24\xbf\xab\xe7\x10\x3e\x2e\x2f\xaf\x18\x1c\x43\x8c\x61\x58\xa2\xde\x1a\x33\xc2\x2f\x8e\xc9\xdf\xfb\xc5\x27\x12\x0a\x75\x13\x1b\x77\xe9\xfd\x60\xfe\x01\xae\xe4\xfa\xb6\x82\xe8\xa5\xf4\x0f\xac\x90\xce\xf4\x36\x1d\x1a\x64\x70\x40\xc7\x2a\xaa\x5a\x7a\x05\x81\x96\xec\x9a\x7b\x71\xf7\x0a\xc2\x23\xcd\xd0\xa4\x47\xb9\x67\x08\x9f\xb8\xce\xbc\xe1\x5a\x3d\x87\xb0\xe5\xd8\x83\x98\x3f\xf3\xfb\x19\xac\xe4\x4d\x38\x32\xdd\x5f\x8e\x90\xb4\xa4\x9e\xf7\xeb\x69\x41\x42\x5a\xde\xfe\x65\x5e\x8d\xb3\x08\x73\x2b\x55\x95\x13\x85\xff\x63\xd0\xab\xac\x5c\x97\x54\x27\x4f\x88\xca\x5d\x25\x63\xfb\xeb\x01\x1b\xa4\xcc\x45\x16\x77\x07\xfc\x60\xa0\xec\x18\x91\x7d\x33\x39\x82\x90\x14\xf2\xde\x32\x58\x63\x0e\x41\x83\xfa\xb8\x17\x37\xef\xf9\xbf\x82\x7b\xd2\x6c\xd1\xcf\xc2\x53\x09\xaa\xdf\xb6\xf2\x16\x29\x46\xb3\x90\x7d\x73\x8e\x88\xe2\x85\xbb\x2c\xe8\xc7\x43\x62\x61\xff\x75\xc2\xea\xbd\xae\x42\xee\x3c\xae\x04\x25\xfe\x3d\xb5\x22\xb5\xb5\x84\x27\x39\x7b\xaf\xaf\x94\xfd\x4c\x48\x59\x56\x28\x74\x33\xa4\x82\x70\x67\xad\x9d\xda\x85\xb3\x91\x2c\x7c\x4e\x90\x99\xfb\x49\xc6\x8b\x50\xbe\xc3\x67\x45\xd1\xa2\x0a\x82\x4c\xdd\x9a\x0a\x3e\x8f\x02\x42\xdb\x34\xe9\xbe\xd1\xdf\x73\x09\x06\x89\xc9\xef\x46\x97\xdf\x67\xa1\x3a\xff\x74\xfd\x7e\xbe\x0a\x82\xb5\x45\xeb\xa9\xc2\xab\x45\x2c\x70\xe9\xb5\x2e\x5a\xab\x53\x4c\xb8\xd6\x6e\x19\xfd\x77\x14\xb3\xfb\x54\x51\x7d\xd9\x12\xc2\xf4\x25\xca\x25\x61\x5b\xd3\x58\x08\x6a\x1e\xbc\xf0\xc9\x61\x3d\xa1\x6c\xf7\x4d\x9d\x87\xaf\xad\x59\x08\xeb\x68\xdd\x14\xf9\xe7\x3b\x83\x7b\x1b\xdc\x8d\x38\xae\x45\xb3\x20\xf5\x9f\xab\xc0\x96\xfa\xa7\x04\xc7\xfc\x7a\xa9\x3f\x8b\x59\x04\xd5\xf7\xd1\x3a\xb9\xbb\x58\x84\x0b\x9a\x47\x03\x1a\x3d\x6a\x08\x47\x7e\x84\x34\xfd\x1d\xd5\x7e\xf6\xc6\x70\x65\x30\x21\xcb\x74\xce\xc4\xbb\x91\x47\x09\xd7\x62\x7e\x6f\x75\xdd\xee\x4f\xd0\xb6\x3c\x5e\x72\x71\xda\x76\x82\xde\x86\x9d\x83\xe6\xb2\xbb\x08\xa6\x51\x4b\x24\x2f\x64\x84\x13\x38\x7e\x24\x5c\xe4\xf5\x39\x46\xa8\x37\x0c\x75\x12\x55\x0e\x25\x24\x96\x77\xac\xf9\x1e\x37\xc2\xa0\x65\xbd\xa6\x7b\xcd\x81\x36\x06\x46\x1c\x7e\xde\xdb\x65\x67\x11\x6e\xc8\x6c\xd5\xfc\xb9\x98\x87\x30\xba\xb6\x71\x47\xe5\xc1\x0c\x16\x22\x95\x4f\x9a\x06\xeb\x6e\x26\x18\xf2\xf7\xad\x9b\x1f\xdd\xc6\xa0\x5c\x6e\x7e\xd5\xcf\x23\x91\x2c\x2c\xdf\xbc\xc6\x66\xae\xac\x3e\xa1\x4f\xb8\xf8\xf4\xa5\xa9\x63\x5b\xcb\x88\x7c\xf7\xa5\x2f\x26\x78\xc4\x1c\x54\x9c\x96\x3c\x9d\x10\x99\xbd\xb0\x43\x4f\x34\x97\x30\x14\xb5\x71\xe5\x4e\x89\x07\x04\x35\xeb\xa5\x45\xc3\x92\x0f\x08\xa1\xfa\x0a\x85\x1f\x9e\xa7\x11\x38\x0f\x7c\x0d\xfc\x5b\x32\x0b\xe3\x71\xa7\xd1\x82\x90\x74\xae\xd5\x80\xfb\xf5\x5a\xc2\x6f\xae\x14\xad\x7b\x7f\x62\xd9\x4a\xe9\xd4\x0d\x6b\xe6\xd9\x6e\x21\x88\x24\x2b\xad\x19\xd8\xda\x5a\x88\x67\xd1\x6f\x63\x4f\xe9\x19\x11\x44\x5e\xf8\x17\x0a\x7f\xeb\x65\x60\x3f\xa0\xb1\xc4\xe9\xa7\x04\x8d\xe3\xa8\x6c\xec\xd0\x1b\x43\x30\xf0\xa8\x6a\xe9\x93\x99\xa7\x4e\xb8\xfa\x69\xdb\xcd\xa0\x3b\x5f\x19\x44\x9e\x76\xba\xd4\x9b\xa0\x45\xf8\x71\x69\xdd\xde\xb9\x1a\xb3\x09\xba\x86\x6d\xe2\xd7\xee\xa9\x10\x9c\x7b\xbd\xcd\x25\x2d\x2d\x09\xab\x76\x49\x8b\xcc\xfe\x96\x4e\x80\x2b\xeb\x4b\xc0\x8e\x85\x04\x33\x05\x83\xed\x43\xdc\xab\x08\xc7\x1f\xdd\xd8\x26\xfc\x76\x15\xe1\x10\x8c\x66\x4d\x9e\x63\x49\x48\x8f\x94\x98\xa9\xfe\x7b\x19\x81\x5b\x42\xb5\xd0\x33\x5c\x8d\xf0\xd3\x21\xeb\x49\xec\x75\x0f\x82\x30\xef\xa3\x2a\xa3\x42\x51\x02\x67\xa0\x70\xb6\xed\x9c\x41\x06\x61\xc9\xdd\x87\x36\x27\x3e\x22\xbc\x89\x3e\x2c\xf4\xe9\xc3\x2d\x36\x68\x37\xc4\x28\xfc\x45\x54\xce\xae\xa3\x9b\xb3\xc3\x08\xab\x39\xf2\xbb\xf8\x42\xc2\x08\xc3\x62\xe9\xb2\xf9\x9c\x2e\x84\x8d\xcf\x4e\x2d\xef\x3f\x10\x46\xe8\xce\xe4\x9d\x5e\x52\xb7\x91\x70\x58\xd5\xe3\xc3\xb7\xc0\xd5\x04\xde\xb0\xdf\xed\x8d\x47\x13\x59\x28\x58\xa1\x3d\xff\xed\x01\x7b\xc2\x39\xa7\x56\xde\xfb\x97\x89\x20\x7c\x76\xa9\x7b\xed\x8e\x03\x04\xef\x06\xe9\xdf\xb7\x07\xd6\x11\x84\x6c\x5d\x3e\xb5\x85\xd5\xb3\x60\x23\xe3\xbf\xe2\xfa\xe2\x27\x04\x7c\xfc\x1c\x01\xd9\x7b\x04\xe1\xb8\x28\x05\xc5\xfb\x69\x84\xe9\x69\x17\x3f\x5f\x79\x93\x4d\xb8\xc8\x75\x54\xbf\x67\x75\x00\x0b\x89\xad\xeb\x6c\x07\xa5\x5c\x59\x98\x67\x7b\xe5\xcc\xa4\x99\xe1\x2c\x0c\x88\xaa\x76\x29\x35\xd8\x13\xf8\xe5\x06\x4e\xbe\x4b\xf7\x24\xc4\xc6\xc5\x5c\xf6\xe5\xb0\x24\xf8\x38\xe4\xb5\x78\xff\xfd\xff\x22\xde\x75\xf6\xbf\xf5\x9b\x09\x31\x97\x6a\x1e\x6e\x1b\x2b\xcd\x37\x82\xac\xf6\xae\xf2\x22\x54\x58\xb4\xe8\x4c\x7d\xcf\x10\x36\xf7\xe5\xea\x0d\xef\x3d\xc6\x86\xdd\x95\xf6\x41\x0f\x3c\x0f\x11\x4c\xeb\x4e\x1d\x7b\xd2\x94\x4e\xf8\x64\x45\x8b\x35\x1d\x16\x12\x8c\xef\xfd\xfc\xa3\x79\x64\x2e\x41\x39\x68\xe6\xce\x12\x43\x21\x36\x88\x70\x8a\x27\x7e\x4e\xd3\x22\xcc\x0d\xb5\xe7\x78\x96\x28\x4f\x98\xcd\x25\x57\x58\xa9\x98\x5b\x88\xf7\xf7\x7b\x67\xe7\xfe\x32\x23\xac\x17\x91\x71\x5c\x30\x7d\x90\x81\xc5\xb0\x5d\xeb\x88\x91\x08\xc1\x8f\x23\x5e\xfd\xeb\x0d\x3d\x36\x3c\x3c\x1b\x7a\x23\x78\x6c\x6f\xdc\x0e\xe8\x2d\x3b\xca\x25\x4f\x08\x1c\xd8\xdb\x97\xb8\x2d\x85\x85\x63\x8a\xed\x05\x0f\x9b\x4f\x13\xc4\xb2\x2f\x47\xdc\xd3\x64\xd1\x78\xb1\x2d\x59\x38\x87\xd9\xbe\x86\x0d\xea\x75\x1f\xe3\x3f\x39\xdd\x21\x1c\x9b\xb0\x7c\xd0\xd9\x3d\x85\x20\x70\x5e\x5d\x2a\x5b\x2f\x95\x85\x17\x9b\x82\x4c\x22\x05\x07\x19\x0c\xd4\x9e\x15\x0d\x88\x7b\x40\xe0\x72\x79\x25\x7f\x79\x0c\x97\x3c\x4c\x05\xa4\x9f\x55\xb1\xc6\xcb\x14\xb9\x74\xe7\xa4\x0f\xde\x6c\x38\x77\x38\xfa\xa6\xc2\x5a\x1f\x42\xe9\xd3\xf3\x52\x95\x8f\xdf\xb0\xd8\xd6\x6c\x7f\xf2\x24\x73\x51\xf8\xff\x15\xd3\x8d\x2f\x9e\x0a\x7a\x11\x44\x18\xfd\x20\x7e\x20\x24\xd4\x96\x10\xc0\xd3\x7e\xd1\x26\x69\x09\x61\x44\xb2\x23\x66\xdd\x6a\x07\xc2\x23\xcb\xa9\xeb\x0a\xb8\x96\x10\xf8\x85\x2f\x9f\x18\x09\x37\x20\x7c\x57\xe5\x5e\x7a\xf0\xd3\x16\x82\x6c\xb9\x55\x84\xc0\xc5\xe9\x04\x37\xc9\xc3\x39\x69\xe2\x6a\x6c\x98\x74\xf8\xd1\x74\x85\xb1\x3b\x6c\x4b\xae\xff\xbd\x67\xbb\x37\x13\x84\xb6\x25\x58\xa8\x3a\x7f\x24\x68\xf1\x48\x76\xf3\xf4\x95\x10\xb6\xa8\x70\x38\xdd\xf8\x50\x42\x18\xf4\xd4\x11\x7d\x6b\xf6\x9e\x70\xf4\x8b\xd1\xbe\x0b\xf7\xee\x11\x5c\xcf\xdb\x8a\x15\x16\x35\x13\x16\x48\xdd\x9a\x72\xfe\x7e\x33\xa1\xb9\x5b\x5e\x3e\x6c\x0c\xfa\x79\xa9\x2e\xb9\xd1\x4f\x09\xeb\x5a\xcf\x24\xad\x57\xbc\x41\xc8\x34\xfc\x9e\x97\xfb\xf2\x3a\xc1\xd4\xcc\xa0\xf5\xf3\x82\x77\x84\x55\x7a\x3c\x8d\x35\x5f\x6f\x12\xd4\x8c\x96\xdd\x17\x64\xa6\x13\xda\x78\x79\x6c\x8e\xb6\x71\x12\x1c\xb6\x6c\xaa\x3c\xba\x52\x87\x10\x37\xbd\x46\x4c\x53\xcc\x9c\x0d\x65\x4d\x22\x1c\x77\xe2\x97\x11\xa4\x2f\xdd\x09\xae\x7e\x37\xc8\xe0\xf6\x13\x4f\xfd\xa6\x67\x9c\x84\x07\xf7\xc5\x65\xea\x67\xd8\x10\x0e\x55\x26\x86\x9f\xe7\x21\x02\x67\x50\x5d\x08\x15\xac\x27\x38\x2f\x19\xd9\x52\xb4\x86\x21\x08\xa7\xb5\xd6\x3d\x7b\x2a\x49\xc8\xbf\xaa\x7a\xfa\x33\x9f\x38\x5b\x91\xd0\xce\xe9\xaa\x2d\xec\x64\xf0\xf0\x71\xc1\xea\xb9\x21\xa6\x84\xc3\xb2\xb1\xe7\x7c\x1c\xed\x08\xc1\x4b\x86\xd7\xe4\x2c\x48\x26\x9c\x79\xee\x5a\x3f\xff\x4d\x39\x21\x68\xf2\x8a\xc4\x09\xab\x4b\x08\xbe\x43\xd7\x85\x7b\x9e\x95\x13\x86\x04\xf6\x7d\xfb\x3b\x92\xea\x31\xdc\x78\xf6\x71\x08\x61\x6e\x84\xe6\xaf\x63\x91\x67\x08\xf6\x6d\xde\x5a\x47\x96\x1e\x63\x1b\x39\x3b\x2d\x71\x15\x0b\xe6\x27\x24\x6c\x0c\x3b\xd5\xa7\x29\x4a\x50\x5a\xb1\xbb\x5d\xd3\x93\x08\x93\x73\xc5\x47\x2a\xee\x94\x10\xb8\xfe\xf8\x0b\xcd\x39\x52\x42\xe8\x37\xb7\x35\xba\x39\xeb\x35\x21\xd5\xde\xd8\x69\xd9\xb5\x4c\x02\x55\xd8\x65\xf8\xfb\x24\xb1\xad\xf9\xa2\x71\x36\x69\xbf\xde\x72\x82\x9a\x95\x9c\x57\x60\x9e\x34\x41\xd6\x25\xc0\x6e\x54\xdb\x94\x30\x95\x6f\xe2\x01\xbb\x6c\x61\x82\xd9\xa5\xca\x43\x3f\x8e\xa6\xb2\x70\x7f\xe6\x42\xb1\xef\x5b\x4d\x08\xc1\xaf\x4e\x4d\x8e\x8f\xb1\x66\xc3\xb3\xdf\xcb\xa4\x07\xa6\x5d\x2a\xc4\x24\x99\x2a\x85\xae\xca\x99\x84\x82\xdd\x4d\x4d\xbd\x4e\xa6\x6c\xf0\x3c\x99\x79\xfe\xd1\x40\x27\x83\xc9\xb7\x0c\xf5\x46\xab\x14\x09\xa9\xad\x75\x2a\x4d\x4a\xb7\x59\xf0\xed\xdb\xad\x73\x32\xa5\x94\xb0\xe8\xe0\xd1\x25\xdf\x95\x4a\x09\x9a\x77\x97\x5e\x79\x5f\x7b\x9d\x70\x46\xf6\xde\xe5\xd5\x17\x97\x11\x84\x8e\x9e\x75\xbc\xd4\xe5\x4f\x98\x96\xb1\xd8\x94\xdf\x7d\x15\xe1\xbc\x90\xdc\x3d\xe3\x8b\x09\x2c\x58\xe8\x3b\xac\xe0\x69\xd0\x20\x34\xfe\xfa\x92\xcd\xfd\x9c\x45\xe8\x9b\x91\x90\x39\x33\xa8\x84\x0d\x7b\x2e\x4c\xd5\xae\x89\xce\x21\xac\xb3\xcd\x7f\xf6\xb7\x68\xcb\xfb\xae\xa8\xb7\x29\x26\xa4\x3e\x10\x8c\xdf\x6f\x56\x4c\x48\x36\xab\xb9\x72\x62\x55\x31\x61\x8b\x92\xc1\x84\xe3\x1b\xd8\xcb\x8d\xf2\xe7\xd2\x35\x76\xc5\x04\x23\x2f\x0d\x53\xde\xcb\x25\x63\x07\x18\xeb\x07\x96\x17\x4a\x08\x6e\x3f\xf4\x37\x79\x44\x97\x10\x44\x37\x38\xf0\x3d\x3b\x58\x42\x88\x1a\x7c\xe0\xd3\x6b\x94\x4b\xf0\x18\x14\xbf\xf2\xfd\x40\x31\xdb\xa8\x7a\xbf\x22\xef\xf3\x31\xd8\x4e\x0b\x70\xa6\xab\x39\x04\x1d\xe6\xe5\x27\xc9\x49\x71\x2c\x5c\x88\x97\x0f\x78\x48\x45\x2c\xe8\xbb\xd9\xf1\x29\x97\x67\x13\x4c\xd5\xeb\xde\x07\xdc\x2f\x1f\x5f\x3c\x5c\xe2\xae\xeb\x62\x23\x44\x58\xdf\xfa\xca\x77\xe3\x1c\x0e\x42\xc4\xe9\x23\x4f\xbc\x6e\x17\xb3\xe1\xcd\x1b\x87\x9c\x3b\x7c\xc5\x84\x5b\x67\x77\x6e\x31\x3c\x59\x4c\x18\xf2\x53\xf6\xfa\x3b\x7a\xee\x35\xa1\xee\x74\xe4\x49\xc2\x2f\x81\xbc\xc9\xdb\x7a\x23\xd9\x8a\xa4\x84\xd2\xd0\xa1\xc8\x44\xb6\xb2\xde\xda\x2f\x87\x37\x79\x36\xe1\x5b\x5f\x9d\xff\x60\x84\x25\xe1\x81\x97\x9d\xa0\xb4\x42\x0f\x03\x2f\x9d\x16\x4f\xd9\xaf\x26\x04\xf3\xb7\xa6\x91\x09\xa3\x8f\x09\x4e\x85\xc6\x06\x32\x75\x8f\x69\xd8\x4e\xa9\xeb\xdb\xda\xcb\x84\xb4\x27\xa9\x47\xfb\x7e\xbd\x62\x20\xe8\x1e\x5f\x7d\x25\x59\x9b\xc6\xa1\x2a\x96\x2d\xc4\x79\xaa\xba\x10\xa3\xc2\x95\xb6\x12\x7b\xad\x08\x5b\x16\x59\x68\xe5\x07\xef\x61\x83\xb4\xd4\xde\xd2\x63\x7f\x24\x08\x59\xbb\xae\x4b\x34\xdd\x0d\x67\xe1\x5c\xe4\xbe\x35\x55\x57\x13\x69\x1c\x4e\x22\xf1\x41\x7f\x91\x79\xf0\x43\x69\xcf\xd7\x28\x16\x16\x2e\xf2\xbb\xfd\xae\xd7\x93\xd0\xb0\xbe\xdf\x6e\xee\xa3\xd9\x84\x0d\x96\x96\xd5\x57\x6b\xd6\x10\xce\x19\x27\x71\xbd\xf1\x3b\xcf\x86\x74\xa7\xb9\x7b\xe4\x4e\xaa\x13\x56\x44\x89\x5c\xba\xfa\x24\x9a\x70\x3a\x70\xc9\xeb\x77\xd2\x4a\x84\x57\x0d\xe2\x1b\xf2\xe6\x54\xb0\x30\xef\xa0\xbc\x83\x41\xce\x39\x16\x74\x1e\x08\x72\x6e\x70\xba\xc6\x82\x70\xf2\x33\xeb\x26\x79\x17\x42\x9a\x86\x4f\xd2\xc4\xf5\xe2\x84\x93\x59\x4e\x4d\xfb\x6c\x1c\x09\xc7\x75\x13\x6b\xe6\xee\xd5\x20\x28\x44\x0d\xe5\xdc\x73\xb3\x23\xac\xba\x1e\x3e\x9a\xd1\xa2\x4d\x58\xc8\x13\xd8\x62\x95\x3c\xcc\xc0\x63\x97\xc9\x09\xed\x55\xc7\x08\x25\x85\xad\x8e\xcf\x64\x6f\x12\x46\x5a\xde\x54\x8b\x7d\x3e\x4a\x98\xbb\xf7\x5b\x76\xbf\xd4\x6d\x82\xac\xfb\x41\xaf\x15\x7b\x82\x09\x72\x29\xcb\x2c\x0f\x04\xdd\x24\xdc\xe1\x7a\x38\xc4\x71\xf4\x0c\xe1\xa8\xfd\xeb\x29\xfc\x0f\x06\x18\xac\x2c\xba\x1f\x7d\x50\xcc\x85\xc6\xf1\x72\x43\xfa\x3c\x77\x47\x41\xc2\xdb\x34\xf9\x1f\xab\x9d\xf2\x09\x24\x77\x87\xd5\xa9\xaf\x4b\x38\x99\x21\x6f\x16\xb1\xf0\x0d\x61\x49\xb9\x86\xd0\x8d\xed\x5d\x04\xe9\x83\x2b\xe7\x6f\xde\x56\x4c\x30\xfd\xf4\xa4\x60\xab\x7b\x32\xe1\x50\xfe\xee\x76\x0d\xcd\xd5\x84\x94\x4f\x01\xbe\x4f\x1f\x2d\x23\x3c\xab\x74\x50\x9a\xf5\x3c\x81\x20\x3c\x6d\xd7\xd9\xd4\x19\x2d\x84\xf6\x39\x51\x47\x86\xb5\x2f\xb1\xc6\x47\x19\x03\x86\x7f\x6c\x05\x43\x08\x1f\x3b\xce\x1d\x4d\x4d\x70\x25\x44\xbf\x56\xf8\x7c\x75\x8d\x21\x1b\x6e\x85\xbc\x52\xdb\xdd\x2c\x49\x78\xaa\x66\xd3\x9b\xf4\x32\x94\x10\xaf\xf7\xab\xed\xb3\x8e\x29\xe1\xd0\x90\xfd\xc3\x99\x6e\xf2\x04\xfe\xbd\x2f\xd4\x87\x57\xaf\x24\x94\xac\xe8\x9b\x1e\xc6\x37\x91\xa0\x57\x36\x47\xad\x75\xf4\x08\x0b\xd1\xd3\x0b\x1b\x4b\x0a\x6d\x09\xaf\xf8\x82\x93\x5d\xc4\xfa\x18\x70\xe7\xc4\xee\x7f\xed\x6f\x41\x08\x8e\xb3\xfa\x59\x79\x57\x89\x90\x1d\x7c\x5d\x71\xfe\x65\x73\xc2\x95\x68\xa5\x06\xad\xb8\x15\x04\xeb\xca\xc1\x8a\x24\x89\x4d\x84\xbd\x36\x5c\x51\xa6\x6f\xf3\x09\xb7\x66\xfd\xf8\xbc\xdd\x41\x9f\xb0\x96\x9a\xdc\x0a\x9c\x97\x12\x72\x1c\xdf\xdf\x92\x74\xb9\x43\x08\xbe\x7b\x2a\x48\x35\xd9\x81\x20\xb6\x84\x3f\x5e\x70\xea\x53\x16\x5e\x16\x65\xc8\x9f\x08\xcd\x25\x1c\xb4\x69\x9d\x90\x7b\xb9\x98\x05\xca\xd8\x33\xe7\xc5\xac\x34\x16\xb2\x52\x6a\x70\x6b\xea\x23\x82\x57\x88\x91\x42\x81\x65\x22\xe1\xeb\xcb\x35\x73\x04\x9b\xef\x10\xba\xdc\x9d\x56\xe7\x22\x8a\x70\x3e\xe4\x01\xcb\x44\xf0\x24\x61\xa3\xd4\x8d\xe4\xd5\x63\x87\xa7\x8e\x7c\xd1\xc9\x8a\xf5\x71\x04\x13\x9f\x8b\x5b\xd2\xad\x3e\x31\x78\x9e\xb4\x29\x7b\xae\x3c\xd8\xb0\x44\xea\xd9\xa9\xe0\x77\xbf\x18\x24\x7f\xd3\x8e\x9f\xa6\x9e\xcd\x82\xc6\x9b\x35\xdf\x13\xd6\xd6\xb0\x30\x2a\xf7\xdd\x4c\x75\xc7\x23\x82\x91\xf6\x9d\xfb\x58\x94\x44\xa8\xff\x7a\x39\x7b\xf4\x76\x16\xe1\xe7\x2e\x3f\x7e\xcd\xe7\x5f\x08\x9f\x77\x55\x73\xf0\xcb\x77\x10\xea\x2f\xdf\x6e\xde\x59\xdf\x42\xf0\x33\xcd\xf4\xfd\xd9\x50\x4e\x90\x0b\xe0\x3b\x20\xff\xb5\x90\x85\xd4\x16\x89\x4b\xe5\xcf\x6c\x09\xfb\x0c\x0b\xcc\x07\x6d\xf5\xd8\xf0\xfd\x20\x7d\x57\xce\x24\x42\x4c\xe3\x94\x21\xc3\xa3\x8e\x04\x7b\xe9\xac\xd0\x74\xb5\x5c\x82\x60\xcc\x9b\x37\x2f\x25\xfe\x0f\x58\xa7\x7d\x2a\x3c\x98\x4a\xb8\x2a\x55\xb1\x27\xc2\xa4\x98\xb0\xf9\x47\xd4\x47\xc3\xb8\x5c\xc2\x24\xef\xc6\x93\x7f\x4b\xb3\xba\x9a\xbe\xda\x49\x1f\x02\x4f\xb6\x60\xc1\xc0\x2f\x71\x82\xff\xaa\x55\x91\x53\xe5\xc4\x08\xf7\x54\xbe\xe7\x34\xd4\x4d\x22\x68\xb6\x29\x0b\x9c\xdf\x3b\x99\xb0\x4d\x39\xeb\xe0\xa7\x1c\x6b\x36\x98\x7e\xaa\xf3\xdd\x1b\xc4\xc5\x86\xcb\x2e\x6f\xce\x2e\x7f\xf7\x9d\x19\x47\xa5\xb5\xff\x8d\xcc\x32\x15\x1a\xc7\xe7\xef\x9b\x34\x33\xce\x74\x30\xe3\xc8\x6c\xfc\xb3\xf8\x72\xe7\x3d\xc2\x9c\x32\xcf\x51\xb7\x59\xf5\x84\x85\xe5\xe9\xac\xe7\xfc\xf7\x08\x29\xfa\x41\x8f\xdf\xfd\xa7\x45\x58\x11\x2c\x94\xfa\x65\xca\x23\xc2\xc3\x8d\xe1\x23\xf1\x73\xb8\x09\x5a\xfd\x41\xf5\xd2\x2f\x38\xd8\x30\xfb\xd8\xc9\xa6\x21\xf1\x6e\x06\x7f\xbc\x9b\x05\xde\xd7\x08\x10\x0e\xb9\xad\x70\xf9\xb6\x6f\x98\xc1\xf6\x81\x79\x99\xbc\x8e\xf9\x04\xdb\x76\xd7\x68\xa1\x44\x65\x82\x73\x78\x44\xc8\xc6\x94\x60\xc2\xf0\xb9\x99\xcd\x7f\x32\x66\x11\xf2\xb5\x34\x0c\x2e\xb7\x6f\x24\xe4\x2c\xa8\xdb\x1a\x3c\xc1\x89\xf0\x72\xb8\xef\x36\xa3\x6f\x41\xc8\x0f\xde\xac\xb3\x43\x69\x3e\xe1\x90\x6b\x53\xda\xcc\x8d\x1b\x09\x2f\xae\x0d\xb7\x86\xe9\x66\x13\xca\x95\x7d\x0a\xba\xf2\x4b\x09\x7b\xc2\x6e\x1b\x2e\xb5\x2e\x23\x98\xcb\x3a\x77\x0b\xb0\x4a\x09\x0b\xf4\xd7\x3f\xea\x1e\x1b\x89\x28\x7b\x7d\x1f\xb2\xbe\x48\x48\x75\xb4\x9d\xf6\xab\xf1\x12\x41\x64\xd2\xc2\xa5\x47\xd7\x67\x10\x14\xee\xb6\x4b\x0e\x4b\x5c\x24\x04\x7e\xe8\x3a\xf8\x63\x6c\xcd\xfa\xcc\x5a\xad\x02\x85\xdf\x0c\x44\x9d\x75\x0b\xaa\xae\xb4\xb3\xe1\xee\xbd\x88\xb6\x35\x0b\x78\x08\xf7\x9c\xce\x3e\x6f\xb5\xfe\xc5\xe0\x74\xe3\xf7\xcf\x5c\x71\x53\x09\x87\x97\xbc\xe4\xfc\xb2\x35\x9b\xa0\xd5\x1a\x2d\xf1\xd4\xf8\x1c\x61\xfd\x96\xe8\x13\x35\x5f\x37\x10\xfa\x66\x5f\x11\xbf\x92\x76\x8b\xf0\x49\x42\x63\xd5\x8d\x63\x71\x84\xc7\x09\xa5\x59\x0b\x82\x2c\x09\xc2\x2b\x0b\x63\x23\x8a\x2d\x08\xdb\x84\xe2\xb3\x97\xa7\x8e\x30\x30\xda\x28\xa1\x1f\xb2\x94\x21\x70\x73\x33\xe5\x7c\x25\x73\x09\x93\x8f\xbf\xde\x14\xe6\x3f\x8b\xf0\x1f\x87\xd7\xcd\x1f\xcd\x56\x04\xe3\xaf\x99\x93\x65\x8a\x76\x10\xaa\x5f\x1a\x1f\x3d\x77\xcb\x97\xa0\x70\xeb\xe4\xe9\x55\xcb\x55\x09\xf9\x9e\xe6\x6b\xdc\xfb\x78\x09\x96\x83\xdd\x8b\xef\x1d\x3c\xc3\xc2\x77\x51\x53\xce\x58\x79\x3e\x42\x40\x04\xff\x5a\xa7\x40\x51\xc2\x15\x7e\x63\x9a\xba\xa8\x9d\xc1\x7a\x0d\x55\xf8\x04\x99\x10\x3e\x2a\x47\xee\xe0\x5c\x3d\x91\x50\x79\x88\xc3\x3e\x56\x30\x8a\xa0\xc4\x31\xb1\x37\x8a\xeb\x0f\x33\x0e\xad\x84\x15\x15\xb1\x13\x8c\x09\x13\x3f\xbd\x2f\xe0\x1c\x35\x22\x64\xf2\x29\xf8\xcb\xcf\x56\x27\xdc\xcc\x37\xd5\xf8\xb2\x43\x81\xd0\x60\x2a\xcb\xa9\xf3\x63\x05\xe1\xbc\x5b\x6c\xf4\xe9\x2a\x76\xfc\xf8\xa0\xad\xb1\xe0\x92\x1a\x21\x51\x98\xd7\x65\xd2\x7f\xfc\x6c\xe5\x41\x40\x25\x6f\xde\x4d\x1d\x82\x0e\x57\xbd\x97\xee\x91\x22\xc2\xe9\xa8\x19\xdd\x1c\x13\x4b\x08\x6d\xcf\x75\x76\xcf\xbf\x5f\x40\xf8\xaf\x21\xc3\x76\x60\x4a\x09\xe1\x94\xc5\x97\xdb\x1c\xdc\x39\x84\x94\xe5\x8b\x46\x79\x96\xe7\x10\xca\x1f\x73\x09\xbe\xe1\xba\xce\x86\xca\x8c\xe1\x39\x42\x5f\xae\xb1\x95\x05\xb3\x6f\x1c\xf4\xa9\x97\x27\x88\x0e\x36\x2a\xa6\xec\x2b\x61\x41\x40\xf8\xe3\xd3\xf6\x47\x06\x84\x4d\x96\xa1\xcb\x3d\xa3\x8b\x09\x59\x49\xdc\x73\x5b\xa2\x8a\x09\xf5\x1b\xb8\xe7\xb5\xaf\x4b\x63\x1b\x69\x9e\x8a\x95\xbf\xa1\x20\x45\xf8\x15\x27\xf3\x8c\xf7\x49\x37\x03\xf1\x82\x33\x3f\x48\xd8\x82\xc6\xa1\xeb\x94\x39\x71\xa4\xae\x9f\x41\x50\xd2\x24\xfe\x01\x89\x3c\x42\xdf\xe1\x6f\x2f\x7e\xfc\x61\x11\xe6\x1d\xf6\xe3\xb2\xff\xb6\x9d\xb0\x32\xb8\xf4\x6e\xc9\xef\x9b\x84\x7e\x2f\xf5\xd9\xb5\xb6\x4e\x04\x9f\x56\xa1\x1a\x13\x4b\x3e\x82\xbf\xb4\x5e\xaa\xdb\x4f\x45\xc2\xd2\x60\xcf\x1b\x67\xe7\x06\x10\xce\x2c\xbe\xfa\x73\xca\xfa\xf5\x04\xe3\x5f\x15\x8b\x9b\x3b\xbc\x08\x6f\x39\x5f\x5e\xd7\xaf\x98\xc1\x86\x6b\xcf\x79\x0f\x98\x6a\x0c\x30\xe3\xf8\x19\x95\xe4\xee\xb4\x3f\xba\x70\x1c\x3e\x47\x7c\x47\x2d\xe9\x2c\x21\xef\x8d\x84\x64\x76\xda\x2e\xc2\x8b\x43\xdc\x95\xd9\x76\x6b\x09\xd7\x5e\x6d\x5e\x24\xb1\xc9\x9a\x10\x7a\xe6\xc9\x27\xe9\xe4\x16\x06\xd3\xa5\x16\xfc\xe8\x62\x22\x08\x07\x7f\x57\x3d\xaf\xe9\xda\x40\xd0\x5f\x55\xdf\xe4\xc7\xf7\x90\x20\x97\xae\xb7\xbb\xc1\x7b\x32\xe1\x48\x9d\x5e\xd9\xf7\x9c\x45\x84\x6b\x2b\xab\xdd\xcb\x6f\x66\x11\x2e\xed\x31\x10\x3a\xb3\x27\x97\x60\x5a\x5d\xd8\xcb\x38\xef\x23\x2c\xb0\xe5\x39\xc7\x7d\x4d\x9c\xb0\x67\x4d\xcc\x84\x5d\x53\xa7\x11\x8a\xe6\xdf\xaa\x9a\x18\xad\x40\x98\x71\x2b\xdc\x47\xfe\xe6\x52\xc2\xb5\xf4\x67\x66\x51\x9d\x8a\x04\xee\x32\x8d\x89\xcf\x52\x26\x10\x9a\xde\xb0\x38\x39\x82\xc1\xe0\x8d\xcc\x8c\xde\xfe\x79\x2e\x84\x84\x07\xa3\x65\x7a\x4b\xa6\x11\x74\xf7\x2f\x1f\x51\xc8\x9c\x4b\xb0\xdf\x6a\xa2\x5c\x28\xf7\x8d\x41\x70\x51\x53\x8e\xcb\x8c\x05\x84\x63\xa9\x4e\xd3\x8a\x7d\x3b\x18\xf4\x2d\xeb\x13\xbf\x94\x3a\x9f\xc6\x51\x60\x30\xfa\xfd\xb9\x83\x06\xe1\xe0\xeb\xe9\xf9\xc5\xdb\x2e\x12\xec\x1b\xbd\x93\x52\x74\x04\x08\xdb\x5a\x9f\xc8\x70\x34\x09\xb0\x95\xda\x14\x59\xad\xa7\xee\x4a\x04\x3e\x5f\x97\x7d\x93\x92\x55\xd8\x8a\x7b\xe3\x46\xcd\xc8\x9e\xf9\x84\x33\xbc\xf6\xaf\x8d\x4d\xfc\x08\xa7\xde\xcd\x98\x93\xba\x73\x1a\xa1\xa1\x7d\x5e\xad\x7c\xc8\x5e\x82\x82\x95\xe2\xec\x9d\xa1\xcb\x09\x33\xd2\x8e\x77\x4e\x3d\xcb\x47\x50\x17\xf4\x48\xd0\x28\x17\x20\xe8\xac\x5e\x57\xd6\x42\x96\x84\x9d\xd9\x76\xaf\xde\xdf\x9e\x48\x58\x77\xdd\xf1\x78\xfd\x03\x7d\x36\x70\xcf\xbc\x32\xd1\xfa\x46\x7d\x21\x76\xf9\x74\xf0\x78\x45\x6e\x20\x4c\xd3\xf4\x3a\xa2\x79\x68\x37\x21\xf2\xe2\xfc\x36\x1f\x0e\x1b\x42\x60\xa2\x0b\x9f\x7a\x85\x3e\x41\x57\xa7\x39\x5e\xf4\x52\x73\x21\x3c\xd3\x26\x9c\xd3\x95\x0a\xa5\x71\x90\x78\x76\x81\xd4\xec\xa9\x84\xc9\x8d\x46\x03\x7a\xab\xe6\x11\x76\xc8\xfd\xb8\xf3\xe3\xee\x0d\xc2\xc6\x74\xf5\x79\x01\x9c\xe1\x84\xf8\x69\xdc\xaa\x7b\xbf\x94\xb1\xf0\x43\xf3\xcc\x97\xc9\x1a\x17\x59\xd0\x97\xed\x79\xe6\xf9\x3c\x99\xb0\xd9\x52\xee\xe6\x9e\x20\x5b\x82\xf7\xd7\xce\x73\x0f\xf2\xdb\x19\xec\xbc\xe7\x38\x7f\x19\xaf\x0a\x21\xa2\x54\xf3\x18\xab\xfb\x1c\x6b\xbc\xa8\x49\xc7\x0f\x73\xce\x9d\x44\x98\x17\xf0\xa1\xe1\xb5\x5f\x12\xa1\x52\x56\x2b\x7d\x49\x63\x1a\xa1\xea\x3f\xad\xc7\x6a\x33\x5f\x12\xfa\x3c\x75\xf2\x7c\x5d\x1b\x08\xbf\x27\x2e\xcd\xf1\xb5\x28\x25\x08\x9d\x1a\x56\xa9\x1b\x2e\x26\x78\xd5\xbe\x73\x3e\xa1\x54\xcc\xe0\x4b\x87\xec\x48\xfe\x9d\x00\xfa\x07\x36\xe4\x34\x25\x75\x1b\x3b\x11\x34\x3e\x46\xee\xe1\xb7\xdb\xf8\x2f\x48\x4c\x9a\xfa\x2c\x4a\xca\x91\x30\xcf\x27\x5f\x7f\x7f\xcf\x41\xc2\xf2\x8b\xfa\xea\xab\x77\xe9\x11\x0c\x76\x77\x58\xe6\x1d\xf2\x21\x14\x87\x42\x57\x7d\x8f\x06\xe1\xd2\x44\x85\x16\xbf\x86\xb5\x84\x53\xc1\x17\xb7\xcf\x48\xb4\x21\xd4\x06\x04\xb7\xc4\x4c\x58\x46\x98\xfc\x21\x4b\x7c\xe0\x90\x38\x41\x46\xdf\xad\xd4\x73\xa2\x04\x5b\x49\xd8\x54\xbf\xdd\xf4\x7e\x2b\x03\xfb\x84\xe1\x07\x4e\x79\xeb\x68\x58\xa3\xb1\xd3\x4c\x75\x12\x41\x56\xdc\xe4\xfa\xc7\xc3\x9a\x84\x9b\x73\x52\x35\xdf\xa9\xbc\x60\x8d\x17\xe1\xb0\x17\xf1\x37\x64\x9e\x16\xa2\x23\xf4\x9e\x5c\xe5\x47\x7d\xc2\x52\xf9\x94\x59\x07\xa6\x9e\xfa\x17\x44\x4f\x1d\xe5\xb5\x31\xd9\x4e\x10\xf2\x88\x98\xb9\xbb\xd2\x8e\x30\xf9\xee\xd1\xc9\x4b\xcc\xce\xb0\xf0\xad\xf4\x69\xe0\x46\x65\x5b\x02\xbc\x74\x15\xa6\x6d\x54\x21\x04\xba\xf7\x78\x3e\xb7\x71\x22\x08\xd4\x28\x31\x33\xbf\x84\x11\x5e\xeb\x35\x35\xd7\x54\x2f\x22\x6c\x1b\xbc\xb2\xcd\xbe\xd1\x95\x20\xdb\xf0\xb8\xa5\x57\x7b\x39\x21\xc1\x71\x4d\x75\x53\xc5\x4a\x42\xd4\xf9\xf5\xfd\x3d\x4f\x0c\x58\xf0\xdb\xd8\xf9\xe8\xed\xbb\x79\x04\xff\xe7\x67\xcf\xf7\x1b\x0b\x11\x6e\xbc\x4b\xa8\xd6\xbc\x30\xcc\x80\xa7\xce\xfd\xdc\x3c\x0e\x03\x1a\xc7\xe1\xbc\x6c\x9f\xe7\x23\x2d\x85\xf8\xa9\x39\x9a\xf7\xc6\x2a\x9d\xf0\x7b\x7f\x53\x7a\x2d\x8f\x33\x41\xd9\xf1\x83\xa1\x3a\xbf\x0d\x41\x7b\x7a\xd0\xda\x9b\xe9\xc6\x04\xf1\xc7\xf0\x2e\xe5\x9d\x43\x98\x33\xb5\x77\xcd\xc1\x13\xc5\x2c\x58\x3c\x9a\xe7\xf5\x2d\x41\x8d\xf0\xc8\x51\x2a\x4a\xde\xfe\x08\x8d\x17\xe7\x29\xc5\x13\xb5\x27\xfa\x13\x4e\x47\x7b\xbe\x9c\x2f\xb6\x93\x50\xe9\x13\xfa\xf6\xf2\x8e\x2d\xac\xf1\xb2\xc1\x4a\xb3\x40\x31\xdf\x96\xe0\xba\x29\xac\x5e\x49\x57\x9a\x0d\xdb\x9d\x45\xb8\xc3\x57\x6a\x11\x76\xe7\xa0\x4d\x2c\x42\x9b\xd0\xb2\x26\xcf\xf9\x47\x5a\x09\x1b\xb8\x4f\x6c\x99\x8b\x31\x70\x66\xa5\xcc\x8a\x28\x4b\x1e\xfb\x99\xae\x7a\x0b\xfa\x08\x10\x4c\x6a\xda\x6c\x38\xb8\x07\x18\x38\x4c\x58\xbb\x59\xbb\xda\x8e\x70\x58\x34\x59\x5f\xa0\xb2\x94\xb0\xd3\x66\x5b\xb1\xbb\x49\x21\x41\x3a\x55\xaa\xef\xc5\xa6\x57\x0c\x96\xa9\x94\x08\x98\x94\x2e\x27\xc4\xd8\xd7\xa2\x51\x57\x89\x20\xa5\x31\x3c\xbb\x3d\x55\x93\xb0\xef\x80\x4d\xd2\xd6\x75\x96\x04\x9e\x06\x79\x8f\x3f\x89\x2e\x84\x0f\x0e\xbb\xf3\x1d\x7f\xa9\x13\x2c\x36\x4d\x48\x8b\x17\xa8\x66\xc1\xc3\x90\x77\x81\xc3\x58\xd1\x4a\x59\xc6\x6d\x7d\xd6\x9d\x85\xd7\x57\xf9\xa7\xbd\x19\xfb\xd3\x09\x19\x6a\xaf\x5b\x6d\x96\xc4\xc2\x0a\x91\x82\x5d\x26\x77\x3d\x08\xc6\xe4\x54\x36\x31\x7c\x31\xe1\x15\xef\xc0\x77\xef\x45\x5b\x08\x42\xac\x30\x95\xc2\x2c\x49\x82\xc3\x0c\xcf\x75\x13\x6a\xc0\xc0\x2e\xe6\xde\xc2\xcb\xad\xb3\x08\xcc\xe4\x6d\xa9\xc9\x3e\x2e\x84\xd9\x47\x94\x57\xdb\xfb\x6a\x10\xa4\x33\x53\x9c\x0e\xfc\xa9\x2b\x84\x85\xe5\xe8\xed\xbd\x25\x5b\xe9\x1f\x30\x58\xf7\x2b\xcd\xd3\xe3\x33\x83\xb7\x47\xa7\x5d\xe1\xd9\xa6\x4c\xf8\xd2\xd4\x1b\x1a\x69\x3d\x8f\xe0\x5e\x16\x3f\x75\xdf\xeb\xa9\x84\xce\x0a\x3b\xd6\x86\xe9\xba\x84\x97\x2b\x6a\xae\x3c\x3f\xa0\x4e\xb8\x75\xf7\xfe\x9e\x27\x9b\x55\xd8\x10\xf6\xd3\x41\x7a\xe0\xa3\x39\x5b\x39\x75\x7c\x3f\x8f\x9b\x4e\x73\x21\x78\x72\x54\x3b\xbf\x4a\x19\x11\xc4\x97\x3b\xab\xa8\x14\x12\x61\xc6\xb4\xaa\xe2\x3d\xea\x2a\x04\xcf\x0c\x2e\x9e\x0f\xb1\x22\x84\xd3\x1f\x7f\x8e\xe8\xd7\x8f\x1d\xeb\x0e\xde\x7e\xe1\x27\x68\x4b\xa8\x28\x1f\x08\xdc\xd1\x2e\x45\x30\x93\x35\x09\xe0\x3c\x5e\xcf\xc2\xee\x84\xd9\x5f\xa3\x7e\x8d\xdd\xd5\x87\x67\x99\x93\x7f\x3a\xe1\x79\xe4\x12\x1f\xeb\x39\xd5\x2c\xcc\x54\x93\xde\x60\x35\x86\xea\xb0\xf9\xe6\x53\x2b\xee\x13\x92\xbe\x05\xbb\x58\x8c\x15\xfd\x59\x2f\xeb\xa2\x97\x73\x11\xb4\x5f\x57\xce\x36\xd7\xfa\xca\x40\x77\xcd\xa2\x41\xfe\x99\x45\x84\xaf\x53\xee\xac\x35\xe4\xf6\xfb\x17\x22\x07\x7f\x6e\x19\x1c\xd1\x20\xd4\x19\x98\xdd\x1f\x14\x89\x27\x78\x69\xb0\x8a\x73\x1d\x9a\x18\x3c\x68\x96\x4f\xbe\x11\x37\x97\xad\xf4\x72\x0b\xba\x1c\x36\x91\xa5\x71\xe4\xa8\xe9\x7d\xbf\x78\x4b\x96\x30\x59\x6a\xdb\x54\xde\x2d\x7a\x84\xbe\xae\xaf\x5d\x81\x6a\x53\x09\x92\xeb\x5d\x83\x52\x8f\xa9\x11\x06\xec\xef\x07\xf6\xae\xeb\x63\x86\x7b\x12\x96\x0d\x3c\xd1\x23\x14\xba\x19\x56\xde\x2d\xfd\x41\xe0\x14\xeb\x2c\xfd\xfc\xa3\x8e\xb0\xd5\x44\xab\x4a\x63\x77\x2d\xe1\xfd\x54\x37\x95\x60\x9f\xaf\x04\xa3\x00\xbe\x8c\x5d\xd7\xca\x59\x70\x7e\x7a\x7e\xb2\xf0\xae\x0e\x82\x9b\xf7\x66\xaf\xb4\x93\x9d\x04\xbf\xd7\x8b\xd6\xe7\xcd\x3f\x4e\x90\x29\xdd\x39\x79\xfa\xd8\x48\xc1\x2a\xe3\x8e\xff\xb4\x3c\xc2\xd3\x0d\x4c\x8b\x67\xc6\x03\xc2\x81\x6f\x57\x77\x87\x6a\xf7\x12\xe2\x7c\xcd\x0d\xec\x71\x9b\x60\xe4\x55\xd4\x56\x53\x99\x47\xb0\xbf\x1a\x70\xaa\x29\x32\x86\x70\xbc\xc5\xa9\xd6\xe2\x73\x3a\x61\x4a\x93\xf8\xcd\x3c\xed\x44\x16\x52\x2e\x69\xb1\x9e\xbe\xd1\x27\x38\x0a\x94\x87\x1b\x7d\x17\x26\xa8\x99\xaa\x70\x4d\x4b\x37\x23\x88\x0d\x35\x5e\x3d\x62\x6a\x48\x38\x9a\xa0\xfd\xa4\xc3\x66\x90\x41\x03\x75\x56\x70\x8c\x88\xd0\x38\x52\x83\xce\x77\x5e\x92\xd6\x60\xc3\x21\x07\xfe\x69\xbe\x4d\x05\x0c\x6e\xdf\xaf\xbd\x92\x3c\x7d\x16\x81\xf3\xcc\xe2\xfb\x51\x0f\x05\xd9\x50\x2d\x3d\x62\x79\xfd\x46\x1f\x83\xc9\xdd\x5b\xc5\x8b\xd2\xcb\x0b\x21\x30\xb0\x29\xe5\x67\x8d\x2a\xa1\x79\x85\xb1\x98\x91\xb9\x2a\xe1\xf9\xc9\x81\xb8\x05\x7d\x53\x09\x37\x6d\x93\x47\xa6\xad\xf6\x21\x70\xdc\xe6\xdd\x55\xa7\x24\x4b\x58\xf9\xb6\x70\xa8\xab\x5e\x8e\x70\x51\xa7\x40\x50\xe7\xf6\x1e\xc2\x9c\xc7\x13\xa6\x4b\x07\xe9\x11\x6c\xb7\x05\x15\xfb\x9e\x52\x21\xb8\xfc\xe2\x95\x3d\xae\xb6\x97\x70\xfa\x8f\xe6\x1f\xca\xcb\x66\xa1\x8a\xe7\xd6\xc6\xbf\xb0\x3f\xb9\x59\x4e\x77\x0c\xdf\x87\x66\x5a\x4d\xef\xcc\x26\x78\xf6\x4f\x73\x3b\x9f\x7b\x8c\x05\xd9\x34\x67\xbd\x79\x41\x83\x0c\x18\xed\x8c\xe5\xd5\x21\xd6\x34\x8e\x97\x47\x96\x29\x8a\xef\xd7\x25\xcc\x8b\x95\x79\xb7\xe1\xf6\x2e\x16\x76\xdf\xd9\x55\x71\xda\x6e\x16\xc1\xc7\xb5\xbf\x7b\xb9\x8a\x27\xc1\xfc\x41\x45\xea\xee\x59\x65\x2c\x48\x37\xdc\x98\x9d\x10\xac\x43\x78\xd4\xb6\x37\xef\xc5\xfd\x65\x2c\x2c\xc9\x31\x7d\xe3\x71\x52\x92\x30\xbb\x79\xb7\xd4\x22\xfb\x35\x84\xc9\x51\x87\x5c\xe7\x87\x5e\x67\x43\x56\xee\xe9\xcd\x51\xa3\x41\x84\x3b\x4d\xce\x9e\xeb\x9f\x85\x12\xe6\xf5\xeb\x8a\x17\x58\x54\x32\x10\x58\x20\x7c\xbe\xff\xda\x27\x36\x44\x54\x67\xf1\x3d\x88\x8c\x26\x0c\x4b\x18\xfe\x9c\xf0\x3e\x9c\x0d\xbf\xd7\x2c\x2c\x2c\xe5\xdb\xc5\x06\xbe\xd0\x1b\x97\x38\x0e\x49\x11\xf6\xdd\x61\x9e\x65\x44\x0c\x30\x08\x59\xe0\x76\x4e\x60\xe1\x4f\x06\x9b\xd6\xab\x98\x6c\xff\x33\x81\x50\x78\xad\x63\xc3\xf0\x03\x59\x42\xe0\xef\x59\xc2\xb9\x8d\x76\xff\xc2\x31\xa9\x9a\xce\x81\xe1\x1b\x2c\x9c\x99\x6f\x19\x61\xbe\x4a\x90\xfe\x81\x8e\x23\x4b\x5d\x5b\xb5\x2e\x10\x7e\x06\x5f\x7b\xf7\xfb\xf1\x79\x82\x89\x5d\x8a\xb8\xfe\x6d\x05\x36\x74\x17\xb6\x44\xcd\xf0\xd7\x24\x34\x68\xc7\xde\x0e\x0c\x72\x20\x04\x44\xd9\x3b\x5d\x7d\xc2\x4f\xc0\xa0\xd3\x7a\xa3\x39\xce\x84\x0d\x9b\xdf\xbe\xab\x93\x19\xbb\xb7\xd8\x25\xe6\x6b\xa7\x3d\x66\x50\xbd\x5d\x92\x57\x6d\xf3\x25\xc2\x1c\x63\xa3\x3d\xb1\x93\x37\x11\x38\x4c\x82\xe6\x1c\x7a\x13\xce\x82\xd6\x50\x48\xc8\xd5\x1d\x6e\x6c\x23\xcd\xf6\xc1\xaa\x5e\xde\xc5\x84\x8f\x67\x59\x4f\x2f\xb4\x7d\x67\xb0\xfb\x96\x73\x54\xa9\x40\x06\x41\x43\x2c\xea\xce\x6a\xfb\x4c\xc2\x87\xd9\x56\x3c\x6a\x93\x6e\x11\xa6\xb7\x7e\xea\xb1\x18\x2b\xa5\x97\x55\x8d\x0d\x47\x76\x10\x5e\x64\xac\x8e\xc8\x8f\xf0\x23\x4c\xff\xd0\xc5\xf5\xae\x3e\x9e\x30\x7f\xe5\x5c\xc1\x41\x6e\x4f\xc2\xa6\x09\x7a\xe6\x4b\x24\x5d\x09\x0e\xb4\x51\x58\xe3\x77\x3c\x0b\xd1\xc2\xa9\x81\xed\xd5\x4b\x69\x1c\xd7\x95\x6d\xa6\x0a\x9c\xab\x61\x90\xe7\xb4\x7e\x33\xa7\x56\x26\x41\xe8\x62\xc4\x39\xe6\xbc\x0b\x1b\x0e\xf6\xca\xeb\x1a\xe7\xe9\x11\xc2\x56\x7d\xe0\x8d\xd5\x50\x25\x38\x44\xac\x5b\x11\x69\x7c\x99\xa0\x9a\x37\x21\xfc\xa2\xf0\x45\xd6\x78\xe1\xf4\x37\x2c\x98\x90\x57\xc2\x20\x2f\xb5\x54\xde\xa2\x7d\xec\x4d\xf9\xce\x9c\xe2\xcf\x84\x10\x26\x8b\x25\xf5\xac\xfd\x73\x88\x10\x53\x98\x6e\xed\x70\x28\x89\x85\x05\xd1\x07\xe7\x29\xcf\x0c\x23\x3c\x51\x2f\xbc\x12\x3a\xf9\x2a\x41\x41\x70\x86\x68\xe3\x9e\x33\x84\x81\xe6\xa7\x8b\xe3\xb8\xb3\x59\x90\xeb\xf2\x4d\x8d\x2f\x0a\x27\xd4\x35\x1b\xf3\xf0\xc6\xc4\x10\x1e\xf7\x7f\xda\xdf\xa2\x7e\x9b\x86\xe7\x25\x3e\xbb\xec\x76\x81\x70\xaf\x20\x40\x6b\xbd\xb0\x2b\x0b\x6e\x05\x6f\x79\x0e\xb6\x05\x11\x34\xa3\x7b\x1a\x54\xd2\x8a\x08\x86\x85\x3b\x52\x3b\x1f\x15\x11\x1a\xed\x0c\x3f\xfb\x77\xe4\x12\x24\x6a\x77\xa4\x8c\x7a\xa4\x11\xc2\x95\x66\xbb\x56\xde\x1e\x62\xb0\x35\xeb\x9a\x46\xc2\x0b\x41\x82\xd5\xd6\xc9\xab\xf5\xa3\x5d\x09\x9c\xb1\xbc\x23\xca\x97\xc3\x09\xaf\xfc\x77\x1c\x7e\xb0\xdb\x86\x70\x65\x55\x91\xfe\x93\x34\x6b\x82\xf7\x8c\xcd\xcf\xda\xf8\x3d\x08\x49\xa9\xf3\x74\x6a\xaf\x7f\x28\xc4\xa2\x13\x9a\xaa\x96\xfb\x6f\x13\x0c\xef\x65\xf5\x05\x97\xe6\xd2\x78\xd1\x5c\xb2\x4b\x32\x5a\xa9\xa1\x10\xa7\xbe\x79\xfe\x98\x33\x63\x12\x41\x95\x35\xb2\x5f\xde\x2a\x94\x0d\x09\xb7\x3a\x34\x42\x84\x34\x08\x0d\x88\xa9\xf7\x0b\x37\x22\x5c\xf5\xba\xf4\xf5\x67\x94\x08\xe1\x82\xd2\x21\x7a\xc8\x6d\x46\x58\x7b\xf4\x21\x2b\xb0\xa0\x9a\xb0\xdc\x6f\x98\xa3\x4f\x70\x26\xe1\x64\x78\xd3\xeb\xdf\xae\xd6\x84\x67\x3e\xf3\xdc\xcb\x5a\xf4\x08\xe4\xb1\x49\x75\x6e\x84\x14\xc1\x3e\xff\x88\x8d\xa1\x91\x17\x0b\xc3\xeb\xb2\x72\x33\x22\x33\x08\xcf\xca\x7d\x23\x64\x77\x94\x10\xca\x64\x1b\x7e\xff\xc5\x0a\x83\xb4\xbc\xa5\x63\x58\xb5\xf1\x45\xc3\x80\x66\x16\xa1\xec\xfc\x71\xe5\x9e\xa5\xbc\x63\x1b\x2a\x5b\xbe\xe2\x94\x1b\x61\xfa\xb6\x8a\xe7\x4c\xff\x3c\x82\x81\x4d\x71\x79\xb2\xfc\x64\x02\x4f\xfe\xb1\x89\x0f\x58\x23\x0c\x26\xbf\xbd\xb4\x36\xf3\xbd\x20\xe1\x4a\x8a\x7b\x46\x44\xb6\x17\x21\x2a\xe8\xf7\xe9\x13\x77\x7c\x09\x1b\x2d\x02\x57\x2e\x7c\xa2\x4b\xe0\xad\x11\xf6\x8b\x0e\x1f\x64\xd0\x9e\x7b\x3f\x77\xed\x97\xd3\x2c\x7c\xfd\x15\xd8\x2e\xf9\xe3\x37\x83\x8d\x51\xa9\x2d\x0e\xed\xf6\x34\x0e\xf5\xc2\xd5\xdc\xc7\x82\xd6\x13\x54\x35\x23\x06\x16\x2f\x59\x4c\x08\x3a\x7e\xa4\x40\x62\xae\x19\xa1\x4d\xe5\x46\x39\x5d\xe4\x25\xf0\x3d\xf3\xec\x9c\xed\xfd\x90\xd0\xb0\xe1\xec\x1c\x81\x31\x44\xbf\xd9\xd7\x98\x94\x76\x9d\xf0\x40\x6f\x1b\xaf\xd4\xd1\x1c\xb6\x91\xb9\xe2\xe9\x92\x3f\xaf\x9c\x09\xaf\x5e\x38\xa9\xca\xbf\x76\x66\x2b\x73\xef\x0a\xcb\xfc\xdd\xce\x11\x62\xbd\xd2\x15\x97\x37\x13\x7e\x76\x1a\x24\xe5\x96\x73\x11\xe4\x6f\x0a\xb2\xde\x5b\x3e\x20\x54\x36\x9f\x5f\xc7\x6a\xbd\x45\x88\x5c\x7d\xde\xb4\x71\xac\x84\x34\xba\x3b\xb6\x2e\xcf\x2f\xc4\x1b\x57\x47\x6b\xe1\xc8\x6e\x06\xaf\x82\x87\x9d\x16\xe9\x67\x13\x74\x57\xfd\xf9\x53\x6d\x97\x4d\x70\x5c\x13\x74\xf5\xe5\x18\x8a\x2f\x44\x67\xfd\x85\xe2\xa8\xbf\xe9\x7f\x63\x8f\x69\x55\x61\xdb\x59\xa9\xcb\x3b\x08\x53\xec\x27\x95\x1b\x9e\xf5\xfc\xd7\xc8\xed\xfd\xac\xea\x33\x22\xc1\x84\xbe\x5f\x6b\xf4\xd2\x9c\x0e\x11\x96\xb7\x5f\x35\x58\x70\x3f\x9c\x6d\xf4\x53\x33\xb1\xe8\x80\x4d\x19\xe1\xd4\x8c\x15\x12\x1b\xfa\x9d\x08\x6f\x95\x66\x6d\x10\xa1\x75\x84\x98\x53\xbe\xbd\x2b\x04\xd5\x09\xc1\xac\x7d\x2f\xb1\xce\x97\x30\xfb\xcc\x6b\x61\xe9\x73\xe6\x84\xb5\x32\x55\x37\x1e\xe7\x7b\x12\x9c\xd6\xa5\xcb\xf1\x35\xb3\x58\xb8\x2e\xe0\xd9\x93\x61\x61\x45\x58\x7f\x67\x24\xad\x7f\xb9\x38\xc1\x5d\x74\xde\x97\x98\xaf\x82\x84\x88\x89\x31\xea\xbe\x2e\x8b\x09\xa9\x69\xc7\x97\xaf\x76\x5d\x4b\x30\x0b\x7a\xf9\x71\x1b\xf7\x22\x36\xbc\x56\x7a\x3a\xdc\x7d\xa5\x87\x41\xfb\xc9\xee\x65\x2b\xbe\x72\xb3\xf0\xa7\xd5\xe2\xc6\xb0\xc5\x28\x83\xa6\xac\xbc\xb0\x1b\x4e\xb2\x84\x92\xb3\xd7\xce\xd7\xfe\xde\x44\xe3\xa5\x43\x2c\xd0\xa5\x78\xe7\xab\x42\x54\x39\x1f\xde\x3f\xec\xb2\x8e\x70\xf7\x58\xcc\xaa\x63\x69\xcb\x08\x2f\xf7\x74\xf8\xcd\x79\x11\xc1\x06\xe3\x1e\xc7\xad\x47\x1b\x13\x09\x01\x0f\x0d\xbc\xed\x9f\x14\x13\xa6\x7c\x6b\x4a\xe9\xba\x5f\x43\xc8\xdd\x64\xb8\x7e\xc3\x58\x69\xf0\xe5\xbb\x1f\xa4\xe9\xcc\x86\xc3\xa3\x33\xcf\x36\x05\x6b\x11\x52\xe6\xfa\x76\x8f\xf0\x8b\x12\x3e\xe7\x1e\x9c\xb0\xb5\x7f\x0f\x0b\xa2\x81\x83\x2a\x6d\x0b\x55\x08\x07\x46\xd7\xb7\x4b\x2e\x94\x21\xf4\x1b\xc4\x5e\x78\x60\x38\x85\xe0\xe8\x3d\xb3\x53\xf8\x53\x32\x41\xf2\xd5\xd0\x87\x6d\x41\xa6\x84\x59\x87\xe3\x3e\x3c\xcf\xf0\x20\xa4\xcf\xb2\xbc\x38\xea\x6a\x4a\x78\xb3\x69\xfb\x0b\x83\xa7\xd7\x58\x58\xe9\x2c\x70\x5d\x44\xf5\x2e\xe1\xe8\xef\xfa\xec\x69\xa5\xc1\x6c\xf0\xfb\x39\x38\x45\xef\x87\x3e\x21\xe9\xc8\xef\xb6\xa5\x76\xdd\x0c\x7a\xf4\x61\x30\x4f\x73\x21\xc1\xb3\xc4\xeb\x78\xf9\xde\x1c\xe6\xff\x09\xde\x71\x41\x3f\x8e\x7f\x74\xa3\xff\x27\x58\xa8\xce\x3a\x32\x10\xe2\xf0\x2f\xb4\x4a\xcc\x16\x8b\xfc\xd6\xc0\x60\x71\xd4\xf5\x8b\x42\xa9\xc6\x84\xa2\x2f\x41\xd9\xd2\x69\xb9\x84\xda\x77\x86\xef\x5b\x85\xab\x59\xf8\xfd\x63\x9d\x9a\xe4\x58\x09\x4d\xe2\x2c\x7d\xd9\x35\xc0\x8c\xe3\x6b\x48\x81\x47\x62\xd9\x6d\x42\xe0\xda\x90\x89\x57\xea\x5e\xb2\x70\xa2\x4e\xe7\xc3\xdd\xb1\x72\x5c\xd8\x4a\x75\x35\x17\x2f\xa1\xec\x8a\x75\x46\xb4\xc5\x2c\xc2\xdc\xf2\xc1\xae\x19\x37\x44\x08\x6b\xb5\x9d\x1f\xac\x76\x7a\xc9\xa0\xa4\x54\x47\x3e\xf0\x21\x43\x58\xe0\x67\xa2\x7f\x44\xc8\x92\xc6\x8b\xc7\xa4\xa6\xb6\x3d\xc9\xf1\x85\x88\x91\xce\x58\x7f\xfd\xf5\x16\x02\xef\xeb\xff\xb4\xb1\xd1\x88\xb0\x39\xaa\x6b\x74\x32\x9f\x3a\x41\xed\x5c\xed\x12\xff\x29\x3b\x58\xb8\x15\x2c\x50\xa1\x7d\x3b\x80\x70\x67\xad\xc4\x61\xee\xe4\x72\x06\x06\x8a\x07\x5e\xd7\x26\x5c\x27\x34\x26\xc7\x44\x34\xf7\x3d\x27\x2c\x62\x65\x37\xf1\x77\x7e\x26\xf0\xc9\x36\x7f\x4f\x51\xcb\x26\x3c\xec\x5c\x5b\xc2\xed\xed\x4a\x30\xf3\xd2\xbe\xd4\xbe\xe3\x34\x0b\x75\x1a\x7b\x7e\x1f\x4d\x4a\x62\x61\x6a\xfc\xce\xd3\x51\xff\x07\x84\xa6\xfd\x37\xb4\x7a\x77\x32\x0b\xfb\xae\x75\x9f\x54\xdf\x7f\x9a\xb0\x78\x59\x4b\xf1\x52\x31\x76\x5c\x6b\xd0\xe9\x32\xe8\x68\x66\xc6\xb1\xa1\xd3\x40\x5a\x37\x54\x95\x30\xf3\xf0\xcf\x2b\xa5\x0d\xe9\x84\x1a\xd9\xd6\x0f\x5c\x97\xdc\xff\x85\x19\xbb\xec\x15\x0d\xc6\x5e\x3b\x16\x6b\x29\xaf\xa9\x3c\x9d\xe0\x75\x59\xe5\x85\x09\x6f\x04\x1b\x36\x7e\x62\x6a\x0e\x46\x8b\x10\xc4\x37\x2f\x7d\xb4\x26\x7d\x12\xc1\x7b\xb3\x6b\xf9\x9f\x83\x4a\x6c\x30\x6b\x9c\x73\xe4\xfb\x89\xc5\x04\xed\x7d\xd3\x55\x43\xf3\x9f\x33\x38\xb5\x4c\x70\x09\x67\xea\x05\x16\x56\x3b\xb5\xc8\x70\x71\x3f\x26\x34\xdc\x1c\xf9\xb2\xc0\xd3\x8e\x30\xf4\xae\xe6\xb1\xc6\xfd\xf2\x42\x0c\xa5\x0f\xa5\x09\x5d\xcb\x25\x7c\xb9\xe0\x71\x57\x37\x3e\x83\x50\xa4\xb7\xb0\xf9\x6f\x39\xd9\x33\x33\xc4\x63\xe5\x42\x82\xa0\xf7\x25\x8b\x5e\x0b\x4b\xc2\x1f\x7f\xad\xe3\x6d\xfb\x97\x11\x6a\xc2\x79\xb6\x3d\x37\x69\x63\x20\x93\x70\x45\x7a\xf3\x77\x29\x42\xf3\xe7\x2f\x0f\xd4\xbc\xd6\x12\x6c\x4a\x7f\x29\xa7\x1c\xd2\xa4\xf1\xd1\x80\xef\x4d\xfd\x8d\x91\xbd\x0c\xee\xd7\xfd\x77\xf5\xd9\xe6\x79\x84\x56\x78\xf7\x7d\xe0\xee\x65\x90\x72\x22\x82\x4c\xdb\xb6\x11\x4e\x8a\x35\xd6\x38\x56\xf0\xb3\xc1\xd4\x28\xe1\xd7\x49\xdd\x6f\x0c\x1c\x6f\xab\x04\x1f\xb3\xe5\x21\x54\xa9\x44\x88\x37\x6c\x0a\x63\x43\x87\x99\xc5\xdb\x4c\x87\xdb\x84\xd0\xc9\x5a\x8f\xff\x4f\xfc\x6f\x54\xbe\xe9\x4e\xf5\xf1\x91\x76\x66\x1c\x5a\x83\xc9\x33\xfd\x16\x84\x12\x96\x17\x77\x6a\x38\x6c\xe2\x23\x74\xdd\x8e\x1c\x89\x9b\x20\x49\x30\xdb\xa1\x21\xdb\x78\xcc\x98\xa0\x32\xb0\xa1\x31\x73\xec\x36\xe0\x24\x9e\x75\x57\xb4\x4d\x9d\x90\x37\x8d\x8b\x5b\x7a\xea\x08\x83\xbd\xfa\xad\xdf\x1e\x5f\xd4\x24\x48\xdf\x39\xb7\x70\xd2\x42\x0d\x42\xcd\x8d\xd3\xe2\xba\x41\xcb\x08\x39\xed\x82\x16\xf5\xf7\x1f\xb0\x20\x10\x9b\xf8\xcb\x27\xf6\x26\x0b\x9c\xab\xd4\x5f\xe8\xc4\x29\x11\xaa\x2e\xae\x5d\x0c\x9b\x6a\xc2\xa7\xcd\xe2\x36\x1c\x1d\x79\x04\x11\xd3\x7c\x05\xa9\xac\x3c\xc2\xfa\x43\x6e\x3f\x8d\xad\x25\x08\xcd\xc5\xf7\xdc\x0a\x2d\x25\xd9\x8a\x1d\xc7\xbd\x98\xe7\x09\x7d\xcc\x38\x1e\x19\x1c\xd9\x3e\xf4\xbe\x8c\xc1\x7f\xac\xaf\x8d\x9d\xdb\x27\x12\x5a\x1d\x7f\xcc\x79\x33\xdd\x99\x90\x99\x6b\xbd\xbf\x71\x8d\x05\x1b\x8a\x9e\x29\xaf\xda\xb2\x53\x85\x90\xf3\x4b\x22\xe7\xf7\x63\x61\x36\x68\x84\x14\xb6\xad\xd4\xde\x4a\x28\xd4\x3b\x59\xf5\x26\x48\x9b\xa0\xb3\x6e\x49\x2e\xdf\x8d\x89\x84\xa1\x43\xe5\x01\x66\xad\x6b\xd9\x10\x2e\x7f\xf4\xb2\xe5\xa2\x1f\x0c\x46\x27\x7f\xaf\x98\xe4\x39\xf6\x73\x57\x6b\x6b\x4c\xcc\xcf\x24\x94\x57\x71\xf5\x7f\x3c\x3c\xc4\x20\xe0\xd5\xc1\xc7\xe7\x94\x54\x68\x1c\x1e\x77\x8b\x4d\x4f\x54\x36\x16\x22\xab\x48\x40\xa8\x36\x42\x97\xf0\xcb\x25\xe8\xc4\x30\x6b\x21\xe1\xc5\x73\xab\x4d\x1c\xd6\x36\x84\xb3\xb3\xdf\xc5\x5a\xc8\x4f\x23\x98\x4c\x36\xd1\x3d\xfb\xd9\x99\x50\x14\x93\x23\x59\xca\xb1\x86\xb0\x65\xab\xca\xf9\xf2\xbd\x91\x2c\x78\xe5\xc2\x7c\x4b\xb3\x0c\x21\xee\xc7\xa6\x7c\x89\x4a\x3d\xc2\x93\x6d\x0b\xab\xa6\x97\xf4\x33\xc8\x5b\xdd\xcd\x15\xd8\xc1\x4d\x10\x7d\x94\x99\xf4\x6c\xee\x3c\x1a\x2f\x93\x64\x38\xac\xab\xa6\x5e\x27\xac\xbb\x66\x5b\xf2\x7c\x0c\xf7\xed\xaf\x97\xd8\xab\x87\x13\xb6\x85\x64\xc8\xc6\x7d\x36\x22\xdc\xdf\x5c\x7e\x53\xc9\x51\x9e\xe0\x3c\xd3\x6f\x26\xe3\xed\x42\xf8\x7c\x45\xbd\xb9\x8c\x57\x8d\x0d\x7f\x2e\x2b\x9c\xf0\x88\x5a\x4f\xa8\xcb\x7e\xe7\x61\xc1\xb7\x8c\x0d\x73\x67\x4a\x5f\xf6\x9c\xa6\x43\x30\xb6\xd9\xd7\x52\xa9\x28\x41\x38\xf1\x32\xb6\xef\xa4\x6e\x18\x0b\x1c\xe9\x47\x58\x61\x1f\x96\x12\x5e\xcf\xed\x78\x2e\xc7\x79\x9c\x50\xb8\x5f\xee\xb1\xac\xd3\x23\x42\xde\x72\xd7\x53\x37\x7e\x58\x8f\x6d\x80\x17\x1d\x43\x3b\x0f\x10\x98\x10\x63\xe9\x63\xa1\xee\x84\x3b\x5f\x66\xe9\xbe\xff\xb2\x8a\xf0\xe8\xbb\xc8\xf9\x35\xd7\xf9\x09\x67\x34\x14\xbf\x9a\xb6\xcc\x63\xc3\x7c\x1f\x5b\x09\x11\xc6\x86\x0d\x62\x4b\xbb\xbb\x2f\xeb\xd7\x32\xe8\x1a\xb6\xbe\x37\xf1\xd9\x75\xc2\xb9\xb2\xc1\x89\x86\x23\xd7\x09\x07\xc2\x1c\x5a\x8b\x47\xb4\x08\xb3\x78\xaa\x27\x9e\x5b\x22\x4b\xc8\x2b\x5c\xba\x23\xff\x66\x3b\x83\x18\xf1\x0f\xdc\x0a\xae\xfa\x04\xbf\xb7\x77\x3b\xef\x72\xb5\x33\x38\xff\x55\x65\x86\xef\xa5\x9d\xf4\x0f\x78\xce\xdc\xde\xe3\x64\xdb\xc7\xa0\x8a\x77\x4b\xc1\xa2\x5d\x47\x19\x24\x25\xb4\x4c\xf4\x4e\x74\xa7\x71\x14\xff\xa2\x19\x87\x97\xda\x10\x02\x0d\x4e\x0a\x0a\x1d\x09\x20\x8c\x5e\xe3\x70\x51\x9b\xb8\x83\x90\x62\x76\xa2\x4f\x7b\xe7\x5a\x42\x46\xc3\x89\x09\x8d\x2b\x67\x13\xd6\x14\xc8\x6c\x3b\x71\xe9\x18\x61\x17\x23\xad\x6d\x79\x2f\x94\xa0\x1c\x20\x94\x27\xf8\x70\x25\x61\x52\xe4\x50\x99\x90\x8f\x30\xe1\x6a\x6d\xe5\x9b\x07\x5d\x26\x84\xad\xb1\xbf\x7d\x2f\xd4\xb7\x31\x98\xb6\xfc\x3f\x03\x2b\xeb\x62\x06\x79\xdf\x39\xf4\xd6\x4a\x6f\x20\x38\xc4\xe5\x27\x8b\xd4\xaf\x20\x7c\xbe\xb5\xc1\xda\x43\xb4\x84\x20\xfd\x60\x92\xb9\x9b\x40\x31\x61\xc4\x7d\xfa\xa9\x19\x63\xe8\xbf\xb0\xf8\xc0\xe8\x18\xbe\x3d\x3b\xe9\x52\x7f\x29\x8b\x60\xc9\x8f\x9d\xd2\x5f\x76\x11\x9c\x7d\x54\xf9\xe2\xc7\xbe\x71\xaf\x76\x55\x34\xcc\xaf\xab\x26\x44\x74\xcd\x0e\x98\x10\xce\x22\x58\xc4\x74\xec\x38\xb1\x3c\x93\xe0\xf7\x47\x6f\x95\x6f\xfa\x2d\xc2\xf2\x9d\xf3\x5e\x3c\xb3\xce\x26\xdc\xcf\x99\xe3\x22\x22\x1f\x42\xa8\x9f\x7a\x59\x61\xa3\xf6\x08\x83\xe4\xad\xae\xed\xaf\xde\x68\xd1\x3f\x50\xb6\x49\x60\x97\xef\xd2\x47\x85\x28\x8b\x7f\x29\x1c\x57\x39\x93\x60\x28\xf7\xad\x5b\x28\x57\xe6\x5f\x88\x4e\xff\xe6\xe9\x42\x66\x84\x7d\xf1\x2b\x8f\x74\xda\x4e\x20\xa4\x06\x85\x2a\x56\x6c\x97\x24\x54\x1d\x5f\xef\x2e\xca\xab\x47\x08\xfc\xc5\xbf\xc1\xef\x5d\x12\x41\xc4\x5f\xf9\xc9\x42\x87\x05\x84\x96\xf7\x9d\x6f\xce\x7b\x73\x10\xfc\x66\x36\xae\x51\x2e\x7d\x4c\x58\x71\x95\xeb\xe0\x5f\x4c\x7f\x52\xae\xf5\x17\x5d\xd4\x73\xf5\xe0\xce\x48\x82\xcd\xaa\x06\x7b\x93\xdb\xd7\x09\x9b\xfa\x2a\x7f\xb9\xeb\x1a\xb2\xa1\x31\x31\xae\x42\xe2\x93\x2c\x1b\x02\xb8\x9b\xd7\xee\xb3\x89\x63\x20\x75\x34\x6c\x69\x55\x59\x1e\x41\xd9\xd4\xf1\xc6\x1a\x93\x65\x04\xa6\xf7\x19\xdf\xa4\x7e\x17\xc2\xce\x4f\xdd\xa5\x61\x4f\x32\x08\xfb\xea\x4b\xe7\x1f\x0a\x33\x20\xa4\x5a\x27\x2e\x15\xb9\x2f\x47\x68\xbc\xe3\x2a\x96\xb1\x24\x86\xad\xfc\x0f\x6d\xbe\xcf\xa3\x15\xd2\x3a\x18\xac\xf6\x6d\x7e\x75\x6b\xc7\x02\x82\x9a\xc2\x11\x87\xf6\x46\x17\x82\xac\xd6\xeb\xc9\x99\xcf\x24\x08\x0e\x29\x0f\xec\x3a\x64\x38\x08\x2f\x92\xcd\x93\xbd\x0b\x86\x18\x68\x3f\xcd\xdd\x28\x97\x39\x85\x90\x22\x23\xe1\xbe\xa9\x41\x8f\x10\x2c\x16\xb7\x30\xd3\xcc\x8a\xc0\x6d\x21\x5c\x13\x7b\xca\x8c\x40\x4d\x96\x17\xd5\x76\x4a\x12\x4e\x9e\xb1\x73\x71\x9b\xce\x45\xf8\x58\xa5\x61\x91\x2c\x2a\x43\xb0\x7a\x15\x90\x77\x96\x5b\x9f\x70\xcc\xe2\xd6\xe4\xfb\x5f\x6f\x13\xdc\x52\x4e\xbd\x4d\x1e\x83\xa0\xe3\x7d\xb5\xbe\xdb\x29\x84\xbd\x0b\x45\xd7\x26\x24\xdc\x26\xa8\xa8\xf9\x91\xdf\xf9\x04\x82\x2f\xdf\x31\x05\xdf\x50\x51\xc2\x4c\xcf\x54\x59\xe1\xf3\x16\x84\x24\x9d\x0b\x7e\x47\x0d\x14\x08\x92\x35\xb3\x66\xa4\x06\x4b\x12\xf8\x1b\x3f\xdd\xd4\x14\xaa\x65\x21\xbe\xea\x84\x66\xf8\x3a\x21\x42\x82\xf5\x8e\x77\x5e\x85\x6a\x84\x2b\xff\x5d\x55\x48\x90\xd0\x21\xb0\xe6\xb4\x27\x59\x37\xd7\x32\xb0\xf4\xe3\x0c\xcc\xd7\x97\xa4\x71\xdc\x3c\x68\xe0\x7b\xc9\xc3\xf2\x5f\x78\x7e\x58\x4b\x41\xa8\x5a\x82\x0d\x9b\xca\x97\xb6\xee\xc9\x2f\x24\x64\xd8\x5d\xef\x10\x2b\xfe\xce\x40\x3f\xa0\xe1\xb4\xd3\x5c\x03\xc2\x90\xfa\x5c\xad\x15\x27\xe2\x69\xbc\xd8\xe5\xbe\xf7\x5e\x51\x67\x4f\x68\x74\x5b\x71\x32\x36\x94\x8b\x70\x84\x0e\xa6\x74\x5a\x3c\x63\xa0\x2d\x7c\x25\xc2\x7b\xf5\x7c\x1a\x87\xbf\x66\x97\x7f\xba\xc4\x4f\x06\xba\xf3\x6d\xd3\xaf\xcf\xf2\x27\x28\x0d\x86\x7b\xec\xd2\x70\x26\x38\x3f\x88\xe5\xfc\x3d\xcd\x90\x30\xc3\x51\xfb\x5d\xb3\x4e\x38\x61\x59\x64\x5f\x65\xea\x19\x65\x42\x40\xdb\xf7\x09\x6a\x4e\x36\x84\xa1\xe4\xc1\xd7\x13\x78\x3e\x32\x88\xdb\xfd\xc9\xa2\x7a\xc1\x1c\x82\xe7\x45\xab\x7d\x5e\x69\x1a\x84\xc5\x8d\xa5\xc6\xb1\x47\x1c\x09\xd1\x16\x6b\x42\x26\x1d\xf5\x27\x30\xc3\xa7\xdc\xed\xa4\xd7\x12\xda\xcb\x38\x2c\x6b\x72\x83\x08\xf1\xfb\xbf\x24\x45\x71\x27\x10\xbc\xa3\xbd\x42\x16\xd9\xd7\x17\x42\xbf\xfc\xbb\x45\x16\x8f\x1a\xfd\x03\x93\x12\xb6\x88\xf5\xdf\x15\x27\x38\xf9\x3f\xce\x99\x25\xd1\xca\xfc\x03\xff\xa5\xcf\x7c\xdd\x7c\xd3\x8a\x60\x15\x26\xd2\xbd\xbf\x4a\x82\x30\x50\x16\xe8\xd8\x7b\x89\x9f\x0d\x21\x9c\x66\x32\xc9\x6e\x76\x04\xd7\x37\x5d\xa2\xba\x31\x91\x2c\xa4\x3c\x9d\xa2\xbd\x22\x60\x19\x61\xb2\x90\x83\x28\xcf\x94\xa9\x04\x72\x7f\x55\xd9\x75\xc3\x88\x70\x6c\x77\xad\x72\x82\xda\x72\xc2\xa0\xc8\x92\x58\x31\x39\x39\xc2\xad\x86\x94\xc0\xbe\x23\xfd\x0c\x1c\x0c\x92\x0d\x22\x12\x7b\x18\xec\xf4\x8b\x0f\x0f\x3c\x14\x45\xe3\xa8\x5b\xfc\x3c\x46\xa3\xe7\x04\x21\x33\xbf\x2c\xe3\x7b\xdb\x24\xc2\x02\x97\xc2\x13\xd5\x32\x4a\x84\xb7\xdc\xad\x3f\xed\x27\xcc\x21\x9c\x29\x3b\xde\x18\x75\x43\x8a\x90\x1d\x90\xb1\xbf\x20\x51\x86\x0d\xd7\xaa\xaa\xca\x14\x9e\x73\xb3\x21\x4a\x4e\xda\x40\x68\x7b\x51\x21\xee\x3c\xf9\xd4\x32\x33\x87\x8b\xf0\x74\xd7\xea\x8c\x54\x1d\x45\x36\xb8\x05\x8c\xae\x71\x31\xd3\x60\xc3\xb7\xf3\xe7\xa5\x9c\x49\x93\xe0\x7c\x65\x61\x65\x9d\x95\x05\xa1\xf7\xfc\x11\xe1\x24\x43\x29\x82\xf6\x8b\x76\x23\x5d\xee\x09\x84\xf2\x5f\xb6\x5c\x33\xa7\x74\x30\xe3\x70\x64\x1d\x97\xcc\x4e\x5e\x48\x48\xdd\x36\xac\x2a\x78\x65\x26\xe1\xea\xf3\x9f\xdd\x5f\x3a\x72\x08\xfb\x64\x03\x6f\x74\x8f\xc1\xb2\xef\x45\x67\xd7\x18\xe6\x05\x8f\xcc\xf9\x5b\xf2\x34\x7a\x78\x3c\xb9\x85\x09\x72\x02\xb3\x39\xfa\x94\xae\x10\x04\xe6\xbb\xa6\xe9\x55\x98\x15\xc2\xb9\x26\xb9\xab\x4d\xea\x05\x33\x0e\x83\x67\x7c\xde\xcb\x5b\x27\x11\xde\xeb\x04\x38\x59\x2f\xd0\x21\x84\xe1\x7a\x4e\xaa\xd8\x28\x83\x06\x9d\x72\xbd\x27\x45\x5c\x34\x8e\x49\xa9\x8d\xfb\xb5\x82\x8d\x08\x32\x2d\xf9\x6e\x97\x26\xe9\xb1\x41\xb1\x83\xe3\x5c\xd9\x8c\x72\x16\x4a\xb2\xe2\x5a\xee\x86\x8d\x7d\x7c\x7f\x6e\x48\xce\x6b\x5c\x4d\x28\xb4\xd2\x5a\xa0\xa1\x96\xce\x42\x56\xd9\x95\x45\x73\xf4\x42\x09\x66\x2e\x93\xa6\x2f\x70\x0c\x21\x6c\xf9\xf2\x98\xd7\x7e\x96\x01\xe1\x61\x57\x53\x63\xe5\xc2\x63\x04\xae\x6e\x1e\x8f\xab\x66\xd3\x08\x87\x53\x35\x4c\xee\x0a\x9a\x13\x0e\x96\xb7\xf5\x7e\x61\x1c\x09\x12\x73\x22\x44\x86\xc2\x14\x09\x4b\xb6\x73\x7f\x9e\x75\xb0\xb5\x10\x9d\x7e\x71\x35\xc7\x5b\xc5\x09\x85\x31\xb9\xad\x71\x47\x04\x09\xaf\xa7\xab\xcf\xb1\x94\x72\x26\xfc\x54\x6a\x2c\xf9\xd6\xaa\x48\xc8\xbd\x5c\x17\x67\x60\x6a\x45\xf0\x15\xcb\xbc\xf3\x44\x7f\x35\x5b\xa9\xbe\x1b\xeb\x52\x72\x22\x9a\x05\xe3\xfd\x8a\x8e\x1e\xab\x37\x10\xe2\x3d\x0e\xb6\x14\x6c\x5d\xc7\x82\x51\xd7\xf4\x55\xf1\x42\x2b\x09\xb7\x5f\xce\x4b\x3e\x3a\x4f\x94\x20\xec\x2e\xbf\x86\x7f\x91\x31\x61\xe5\x1e\xc5\xaa\x9d\xb3\x05\x09\xef\x34\x96\x26\x7f\x10\x70\x27\x58\xde\xba\x76\x61\x7f\xaa\x2b\x61\x11\xd7\x63\x7e\xe7\xfd\xfa\x84\x6b\xbe\x31\x5b\x87\x04\x65\x08\x3d\xa1\xa6\x5b\xfc\x79\x34\x08\x52\xdb\xf6\xbd\x78\x52\x7b\x96\x30\xf5\x8b\xca\xa3\xa6\x3a\x49\x42\xdf\x3e\x0b\x29\x2f\x23\x7e\xc2\x7e\xe3\xa5\x5e\xbd\xb6\xfc\x84\xb8\xde\xd3\x6b\x9d\x49\x95\x70\xf4\xc9\x7c\xeb\xe2\x33\x33\x08\x6d\x8d\x89\xd6\x0f\xa5\xa4\x69\x38\x66\xf6\xd5\x05\xef\xe6\x10\x8a\x7f\xfc\xaa\xbe\x39\xcd\x88\x50\xcf\xfb\x36\xc7\xc6\x43\x97\xe0\xd2\x99\x69\x5a\x50\x06\x06\xde\x03\x1d\xfd\xc5\x99\xbe\x04\xad\x37\xe5\x5c\x2f\x97\x19\x13\x16\x5e\x8e\x58\xde\xbc\x56\x93\x0d\x97\x06\x3f\xd4\x2e\x4d\x1c\x62\x10\x64\x90\xf1\x45\xa2\x53\x84\xd0\xee\xe0\x17\xf0\x42\x54\x9d\x90\xd9\xf4\xf9\xbf\xf0\x73\x63\x27\xc7\xf7\x43\xaf\xb6\x9e\x5b\xc9\x86\x1f\x7a\x8d\x07\xf7\xe6\x4e\x21\x88\xa6\xe2\xc3\x7b\x45\x11\xb6\xd2\x63\x90\x5e\x7a\xe1\xcc\x13\x06\x41\x4a\x3f\xee\x4f\xb0\x9c\x4a\xa8\x59\xd4\x7b\x6a\x7f\x97\x28\x21\xf0\x79\xc6\x7f\x6f\x9c\xa5\x08\x52\x13\xee\xea\xcd\x35\x17\x26\xd8\xec\xfb\x68\x35\x21\xf4\x43\x21\x0e\xbc\x4f\xd9\x26\x1f\xc4\x45\x98\x37\xeb\x19\x26\x85\x9e\xfa\x17\x62\x75\x59\x5c\x8f\x2b\x0f\xfd\x0b\xc6\xf7\x2e\x5b\xfd\x59\xb0\x9b\x20\x7c\xf2\x84\x61\x60\x8f\x30\x61\xe4\xb9\xe2\xb1\xe7\x29\x0a\x84\x22\xfb\x92\x39\x89\xc7\x46\x18\xcc\x57\x7c\x3b\x67\xca\x77\x19\xc2\xca\xf7\x57\x4f\x99\x7f\xe1\x27\x68\x24\xe4\x9d\x62\xec\x7b\x19\xe4\xfd\xd8\xf1\xcd\x25\xa7\x94\x30\x85\x5b\xd3\xa2\xf4\x60\x19\x0b\x59\x31\x46\xc5\xfd\xe7\x52\x08\x9f\xb5\x14\x83\x57\x30\x73\x08\x45\xfd\xd6\x16\xe9\x56\x2d\x0c\x14\xdb\x1f\xfd\x18\x29\x88\x25\x08\x8a\x49\x67\x7f\x8a\x4b\x27\xe8\x65\x4e\x28\x96\x08\x18\x7b\x33\x85\xee\x79\x90\x14\x2e\x48\xf0\x3d\x91\xee\xeb\x5e\x6b\xc5\x06\xe3\x98\x6f\xd1\x4f\x37\xdd\x2d\xc4\xbd\x47\xfc\x2e\xbb\x3a\x6d\x09\x9e\x27\x58\x97\xa6\x46\xdd\x23\x28\x36\x6f\xa8\x6e\xf0\xd3\x26\x6c\x3d\x73\xe1\xe9\xe1\xd3\x53\x08\x2b\xda\xae\x08\x79\xd9\x3b\xb2\xc0\xfb\xe0\xbd\xd5\x64\x4e\x45\xc2\xcf\x16\x5f\x6d\xb5\x8b\xce\x04\x99\xe2\x7b\xd7\x39\xae\x98\xb1\x41\x48\xd8\xea\x87\x53\x9e\x26\xa1\xda\xc9\xb1\x4a\x8c\xb7\x9c\xb0\xb6\x4e\x70\xa6\xda\x4d\x19\xc2\xe3\x16\xc9\x57\x46\x1a\x83\x0c\x96\x4c\x52\x9e\xa0\x3a\x9f\x93\xc6\xb1\x7a\xe9\xfb\xa7\xa3\x77\xb8\x09\xe9\x5a\xad\x1f\x3f\x66\xb8\x12\x2a\xeb\x97\x0a\x2e\x98\x91\x4b\x48\x53\xe3\xd4\x92\x10\x99\x40\xf0\xe6\x0b\x50\x0d\x30\x55\x26\x34\x6e\xb4\x3e\xff\xbe\x71\x0e\xe1\x5c\x54\x44\xd7\x95\xd7\x06\x84\x38\xff\x13\xd2\xc3\x5c\x36\x6c\x65\xe2\x14\xae\xcd\x57\xdc\xe4\xd9\x60\x73\x94\x6f\x9a\xd9\xe5\x41\x06\x43\x3f\x86\x79\xab\xd7\xae\x24\xd4\xef\xed\xbf\xb6\xea\xf8\x67\x06\xcc\xc9\x94\x9f\x62\xbe\x26\x84\xdd\x3b\xa4\x42\xae\xae\x12\x21\xac\xba\xe9\xb2\xa2\xf6\xe3\x04\x42\x44\x64\xdf\x3b\xeb\xb6\x24\x42\xd1\xef\xb2\xa4\xbf\x58\x70\xcf\x50\x63\xed\x18\x8c\x1e\x68\x66\x67\xda\x85\xff\x0b\x07\x24\xa6\x1f\xfb\x8b\xd8\xf4\xc0\xf0\x9a\xe2\x86\x42\x58\xf7\xf3\x18\x2a\x17\x8d\xdd\x77\x5b\x39\x0c\x55\x7c\x0f\x11\xca\xc4\xb9\x35\x43\xe7\xe7\xb3\x90\xbf\xaf\xf0\xcc\x8c\xbb\xc1\x2c\xb8\xb8\xef\xe6\x9c\x3e\x51\x90\x70\x42\x29\x7c\xa5\xb8\xb7\x35\x81\x79\xf9\xf4\x12\x8f\x82\x3a\xa1\x7b\xbd\x93\xda\xd4\x05\xc2\x84\x6c\x79\xd5\xa9\x25\x11\x45\x04\xcd\xc8\x2d\x4d\xfe\xa1\xa1\x84\x16\x09\x55\x11\xee\xb1\x91\x7a\xf5\x0d\x3d\xb3\xa7\x5f\x19\x0c\x9e\xbc\xab\xfe\x72\x3e\x17\x21\x7e\x8b\x71\xad\x69\xde\x11\x36\x9c\x7f\xe4\x1d\x16\x9a\x6f\xc0\x86\xb0\x5b\x76\xf1\x7c\xac\xe7\xcc\x38\xac\x5a\x1a\x6a\x8e\xde\x9b\x48\x28\x9e\x3f\xff\xdb\xbe\x46\x6b\x82\xbc\xf0\x45\x41\x7b\x56\x13\x03\x85\x82\x9c\x0e\x1b\x65\x49\xc2\xc4\x1b\x5f\xe5\x3b\x76\x19\x10\x06\x9a\xd5\xbe\x7e\xd9\xa7\x4b\xe8\xe9\x39\x1e\xb9\x3d\x7d\x2f\x1b\xf4\xcc\x83\xb3\x8f\xdb\x86\x11\x76\x37\x59\x68\x3e\xb9\xa1\x4c\x90\x38\xb0\x6e\x6d\xea\x2b\x5d\x42\xb7\xae\x79\xda\x7a\x4c\x26\xac\x72\xfb\xf0\x30\x70\x82\x12\x21\xe4\x49\xc8\xdb\xfe\xee\x5a\x82\xcf\xbc\xf3\x49\x3f\x3f\xee\x67\xc3\x1d\xaf\x57\x4b\x1f\x06\x04\x12\x1e\x17\xad\x3f\xf9\x25\x44\x8e\x50\x3f\x4d\xc1\x77\x21\x87\x02\xe1\x71\x7c\xc2\xc6\x45\x9d\x8f\x19\x98\xfc\x59\x59\xff\x46\x97\x83\xc6\x71\x35\xd7\x39\xc6\xa5\x54\x94\x90\x3b\x6d\x58\xea\xf3\x81\x51\x06\x91\xbf\x07\x0a\xda\x27\xf3\x13\xc2\x2a\xe7\x15\x2b\xb0\x2c\x08\x3c\x5b\xdf\x3e\xf4\x4f\x51\x21\x5c\x09\x5b\x90\xa1\x71\x85\x87\xb0\x6c\xee\x9b\x60\x49\xfd\xe7\x0c\xce\x0c\x5e\x6a\x3e\xb5\x5e\x89\xfe\x01\xdf\xa6\x94\xde\x5f\xc5\x8b\xfe\x85\x9e\x08\x0d\xe1\xd7\x3f\x85\x09\x05\xc2\x5d\xeb\xf7\xae\x29\x22\xe4\x04\x6e\xb9\x7c\xac\x27\x8d\xb0\xe6\xe5\xa1\x02\x83\xbd\xf9\x04\x3f\x0a\xd4\xca\x50\xbe\x4e\x98\xc4\xb5\xef\x8f\xbe\x4e\x75\x21\xf2\xe4\x9d\x25\x3b\xf2\x85\x09\x87\x9a\xcb\x7d\xcb\x7c\x24\x08\xa5\x0d\xc9\x15\x6b\x88\x8f\xf0\x5d\x2c\xac\x70\xe1\x60\x1f\x03\xe6\x76\xb1\x48\xe5\x4d\x5f\x82\x5a\xb7\xd5\x32\xb7\x4d\x99\x04\xff\x13\x51\x31\x85\x6e\xad\x0c\x04\x9d\x0e\x6c\x5e\xb8\xbb\x87\x0d\xb7\x93\x67\xc4\x6f\xad\xe6\x26\x44\xc8\x08\x19\x35\x99\x1b\x10\x66\xdb\xfa\x06\xcf\x6c\xde\x48\x78\xae\x25\x54\x99\x65\xd9\xcf\xe0\xc2\xc2\x82\x2e\x9e\xef\x77\x08\x0b\xaa\x4a\xf7\x2a\x7d\xbe\x41\xe3\x05\x33\x4f\x58\x47\xfe\xb8\x58\x88\x82\x89\xed\xb5\x95\x5d\xd2\x04\xae\x88\x9f\x8b\x78\x2c\xd6\x12\xc4\xa3\xb5\x7c\x3e\xaa\xdb\x10\x62\xd7\x73\x44\xb5\x08\xcc\x23\x9c\xd8\x7f\xe8\xc8\xc3\x45\xba\x84\x9f\x25\x77\x4f\x5a\xbd\x10\x24\x48\xfa\xba\xac\x9f\xb5\xff\x38\x1b\x54\xc4\xda\x8f\x97\x5d\xde\x48\xf8\x9a\x29\x69\x75\xf5\xe2\x17\x06\xbc\x5f\xb2\x6a\x36\x72\xf2\x10\x0e\xcb\xa7\xed\x7d\xa4\x3e\x9f\xa0\x68\x7e\xfc\xd1\xa9\x2d\x92\x84\x8e\xd6\x52\xbf\x7b\x07\x3e\xb0\xc6\x4b\x57\xcb\x3e\x75\xe6\x6b\x1b\x03\x4e\x9b\xa2\xdd\x6f\x98\x0d\x84\x9e\xfe\x3b\xfb\xd6\x5c\x90\x20\x2c\xfa\xbe\x22\x84\xdf\x6f\x15\x41\x9e\x51\x51\x1f\xf9\xa6\x42\xd8\xfe\xfa\xe2\xdd\x14\xc6\x64\x6c\x1f\xe6\x94\x24\xad\x1b\x61\xfe\x81\x37\x1f\x16\x97\x2d\x8e\x78\xf9\x2f\xfc\xd9\x7a\xc4\xf9\xc8\xd8\xe6\x97\x5b\x5e\xf7\xfa\xd8\x64\x71\x82\x8c\x02\xeb\x4f\xee\x4e\x57\xc2\xfc\xe6\x85\x37\xf7\x0e\x6d\x24\xac\x54\xbf\x66\x37\x3c\xf6\x19\xfc\x1f\xde\x2b\x2a\x7e\xf6\xbb\xf5\xa1\x10\x7c\x2f\xa3\x3c\x95\xf7\xdb\x13\x56\x1d\xf0\x67\x5d\x0d\xfc\xc8\xc0\x4e\x70\x0f\xbf\x97\x82\x32\x61\x59\xf9\x94\xb4\xb9\xb1\x37\x59\x60\x89\xbd\x78\xa2\x77\x26\x80\xe0\x25\xe4\xe4\xb5\xb6\x50\x94\x70\x51\x8b\x0e\x25\x4a\x37\x15\x42\xd2\x3f\x35\x30\xf6\x87\x29\xe1\xaa\x41\xcb\xd5\xa1\x9c\x2b\x6c\xb8\xa8\x52\x15\x30\xef\x7c\x31\x61\x46\x51\x46\xea\xf0\x58\x19\xdd\xff\xa6\x47\xfd\xe3\x63\xc2\x72\x5d\xa7\x47\x56\xf9\x12\xff\x82\xed\x09\xb9\x55\x7b\x1e\x6c\x26\xb8\x25\x6d\x54\xbf\x32\x71\x11\x1b\x3a\x8c\x47\x96\x2e\x6a\x90\x21\x78\xf1\x3d\xd0\x79\xf7\x78\xec\xb8\x21\xbd\x2c\xec\x6d\x90\x0e\x21\x37\xfb\xbe\xdb\x7a\xee\x89\x84\xb9\xa2\xd3\x62\x57\xfa\x4d\x23\x68\x9d\x91\x73\x32\xa4\x0f\x34\x3c\xa2\xf3\x51\xe9\xf3\x55\x42\xe0\xb3\xa7\xfa\xf1\x4a\xc5\x0c\xa6\xf4\xcc\x0d\xff\x18\xe8\x43\x28\x11\x71\x0d\xd2\x14\x96\x22\x58\x5f\xf8\xd6\xe8\x7e\xf1\x22\x5b\x29\x36\xf9\x7a\xa6\x5f\x5d\x89\x70\x77\x66\xda\xc1\x81\xaa\xf5\x84\x2b\xcb\xa4\x36\xcd\x75\x94\x21\xf4\xa5\xe7\x0a\x66\xbd\xb6\x26\xa4\x0a\x64\x76\x6b\x91\x0e\xc1\xf0\xed\xa9\x2d\x9c\xd6\x6b\x09\x69\x9c\x77\x5c\x54\xcc\x14\x09\xad\x75\xcd\x8b\xa4\xbe\x19\x10\xb6\x5e\x6c\x5c\xb4\xf6\xfc\x06\x82\xaf\x87\xc3\x68\x9e\xaa\x20\xc1\x7a\x9a\x48\x55\xf8\x55\x2b\xc2\x9b\xde\x81\x93\xd7\x4a\x74\x09\xeb\x1d\xb3\x38\xeb\x9a\xea\x18\xfc\x39\xa4\xb9\x37\xcb\x43\x80\x60\x23\xf9\xfa\xa9\x77\x9f\xda\xbf\x90\x14\x3c\x74\xe3\xcd\x10\xe7\xbf\x20\xde\xdf\xdd\xb6\xe2\x75\x2b\x83\xa5\x9b\xab\xf9\xae\xaf\x58\x49\xe0\x79\xdf\x7d\xe6\x5e\x48\x2a\xc1\x5c\x6c\xd9\xfc\xeb\xc7\x9a\x19\x94\x9f\xd6\xfc\x6c\x3b\x4b\x94\x20\x6f\x1d\x1a\xea\x78\xf7\x13\x83\x56\x21\xfb\x45\x4b\x73\x1f\x14\x62\x5a\x6d\x3c\xef\xf7\x8f\x2a\x84\xaf\x12\x5d\xcb\xcc\x45\x0d\xd8\x70\xc3\x37\x53\x38\x66\xc7\x17\x06\xfc\xc5\x79\x66\xf2\xe2\x7a\x84\x4e\xff\x90\xc7\x5d\xf3\xa5\x08\xe6\x8b\x57\x4c\x1d\x1c\xbb\xca\x4e\x16\x28\xfa\xec\x7f\x73\x1d\x41\x6c\xd7\x05\xfe\xc1\x9f\x8a\x84\x68\xa5\x98\x09\xc2\x52\xd6\x84\x2a\x17\x9e\xfd\x4a\x93\x14\x08\x0f\x7e\x8c\xf6\xfc\x18\x7b\x19\xff\x0f\x4e\xf0\x39\xf9\xa4\xb0\xa9\x10\x3b\x67\xbc\xbc\x92\x25\x3f\x8b\x50\xb2\xa0\x9e\xdf\x75\xc6\x32\x36\x1c\x6e\x9c\xf0\x62\x7e\xe7\x2c\xc2\xe5\x1d\x89\xaf\x8e\x2f\x6d\x27\x68\x29\x0b\x2f\x58\xb2\xca\x81\x20\x25\x77\xae\xb9\xef\xa8\x35\xa1\x57\xf5\x9e\x9b\x4b\xf1\x23\xc2\x24\x4f\x2b\xab\x36\xdf\x14\x42\xdf\x27\x89\xc0\xa1\x0a\x79\x82\x5e\x5f\xcb\xc5\x9d\xf7\x1d\xd9\x90\x65\xb6\xe5\x5c\xda\x88\x06\xe1\x8f\xba\xd8\x3b\xc7\xb3\x77\x08\x1f\x1d\x03\x63\x73\x5a\xda\x18\xfc\x7e\x31\xd8\xba\xb7\x4e\x88\x60\x14\xa9\xb9\x63\x69\x92\xd2\xff\x1b\xac\x5c\x34\xfe\xbb\x51\xa8\x44\x28\x6e\xef\xf1\xaf\x68\xda\xc6\x56\xfe\xff\x78\x5d\x25\xd3\x5a\xd1\xfb\x94\x05\x75\xd5\x13\x82\x41\x6a\x45\x04\xef\xcd\x3d\xce\xa5\x29\x39\x84\x27\xd7\x78\x13\x2c\x1f\x96\x8d\x7d\x2a\x43\x65\x66\x7d\xcd\x26\xbc\x39\x10\xe2\x1c\xa7\x5a\x4a\xc8\x58\x55\x6d\xe4\xab\xde\x47\x38\x61\xbf\xf8\xcb\x57\xe3\x1a\x82\x40\x82\xf1\xb3\xf4\x27\x85\x04\xcf\x97\xcb\xdb\x5f\x6d\xcf\x64\x21\x44\xa1\xf5\x1d\xf7\x6e\x16\xe1\x8f\x6d\xce\xc3\xc3\x13\x0b\x09\xa2\x13\x4e\x88\x54\xd8\x15\x10\x1a\xa2\x82\x24\x4b\x66\xbc\x64\x61\x53\xc5\x85\x5d\xb2\xed\xa7\x59\x38\x66\x17\x3a\xb7\x5c\xe5\x16\x81\x63\x49\xef\xee\xd9\xd2\x07\x09\xb3\x8a\x1d\xb7\x2f\xd2\xbe\x41\x88\x5f\x69\x67\x7a\x6b\x62\x3a\x61\x6f\xcd\x43\xef\xa4\x19\xad\x04\x4f\x8d\xee\xaf\x7f\xcb\xca\x4b\x71\x69\x7f\xd7\x28\x7e\x8f\xaa\xdc\xd7\x7d\x91\x10\x92\x7e\xc4\x24\xcd\xc6\x8f\x20\x6a\xfb\x59\x3b\xe7\xc3\x43\x16\x9c\xfb\x9f\x76\x7f\xcc\xd9\xc9\x36\xfa\x1f\x86\xef\xc5\x9c\x9b\x79\x48\x9d\xb0\xd0\x7c\x89\xba\xce\x01\x35\x36\xbc\x39\x3e\x52\xe5\x74\xd5\x93\x85\x95\x9c\x71\x46\xeb\xc4\x94\x09\xae\xa9\xc3\xbb\xff\x9c\x97\x27\x64\xbc\x29\xf4\x5b\x72\x43\x91\x30\x2a\x6e\x16\x13\x24\xdb\xcb\x40\x70\xdd\xeb\x65\x2e\x3b\xe5\x08\x2b\x38\x22\xca\x77\xde\x93\x23\x98\xab\x2b\x7d\x0f\x98\xee\x4c\xe0\xdb\x99\x35\xfb\x05\x6b\x03\xa1\xe5\x9e\xe6\xba\xce\x90\xc7\x84\xda\x5b\x3f\x43\xe5\xd3\x5b\x08\x31\x1f\x1f\x6c\xdc\xcb\xdd\x4a\x38\xa9\xd6\xd6\xd6\x3e\x36\xda\x28\x5b\xea\x9c\xd8\xee\xc8\x42\xc9\x9d\x80\x96\xe8\x0d\xbe\x84\x0f\x46\xcb\xf2\x7e\x36\xde\x20\x3c\xb9\x9c\xe3\xfd\xa9\xf9\x0c\xdb\xe8\x7f\x70\xb2\xbe\x7d\x2d\x6a\x7a\x18\x21\x7c\xa7\x6b\xb9\xa8\x43\x11\x0b\x5d\x8b\xb3\x86\x39\x0f\xaf\x23\xac\xe8\x5c\x74\x77\xc8\x77\x25\x81\xdf\x50\x45\x00\x87\x5e\x32\x68\xf9\xdd\xa3\x65\xb9\xa6\x85\x85\x21\x3b\x9d\xff\xb2\x22\xfc\x58\x10\x18\x48\x13\x35\x7f\x7a\x9e\xb0\x4c\xd4\x24\x4e\xdc\x7d\x84\xc1\xb7\xc8\xd5\xa2\xae\xba\x1e\x04\xed\xdb\xfb\x74\x3f\x6e\x92\x25\xf0\xf3\x4e\x3c\x7c\xc6\x7a\x19\x21\xa5\xc5\xaf\xfc\x71\xcc\x15\x16\x38\x23\xcb\x6c\x0c\xee\xb4\x31\x58\xb3\xa5\x78\x7e\x98\x4c\x3f\x83\x7a\xb7\x85\x5f\x06\x5a\x67\x13\x9a\xba\x5e\xf2\xe4\x2c\x70\x22\xac\xeb\x8d\x18\x1d\xdd\x74\x9b\xa0\x73\xc9\xf2\xfc\xdf\xc2\xa7\x33\x72\xfd\xca\x4c\x3e\x36\xa8\x16\x6b\x9d\x88\x6a\xbf\x5b\x88\x6d\x8a\x3b\x4e\xc5\xfe\x9a\x4f\xf0\xe2\x3a\x2c\xa9\x35\xcf\x9d\x70\x68\x54\x27\xe6\xeb\xfd\x0d\x84\x83\x8c\xff\xc8\xaa\xa5\x45\x04\xcb\xad\x0d\x8a\x61\xeb\x76\x10\xf6\xe7\x9d\xff\x53\x2e\x7b\x91\xf0\x62\x86\x9c\x5c\xc7\x63\x03\xc2\x9d\x7c\x9e\x8b\x16\xfd\x2a\x04\xae\x65\xab\x4e\x6c\x9a\xc2\x4f\x98\x7e\xec\x8e\x8f\xc4\x93\x9b\x84\x15\xb6\x17\xd6\x6e\x28\x5e\xcf\x82\x42\x8a\xee\xa5\x73\x16\x1a\x84\x29\xb1\xb1\x3b\x4d\x26\xf6\x30\x38\xbd\x75\xc3\xb3\xbd\x06\x73\x09\xef\xa5\x44\xa3\xed\x66\x09\x11\x1a\x84\xce\x4c\x95\x7c\x9a\x4f\xd0\xed\x0f\xfa\xed\x72\xac\x8c\x05\xab\x08\xd7\xd6\x74\xc7\x6f\x84\xf0\x35\x0f\x36\x9d\x7c\x92\x4f\x78\x76\x2b\x5c\xfa\xdb\xe5\x32\x16\x4e\xa4\x79\xe7\xdf\xf8\xf9\x88\x10\x7c\xf2\xd4\x96\x28\xa5\x02\x82\xa9\x68\x6e\xf4\x5f\x64\xfd\x71\xd5\xf8\x8b\xaf\xbe\xcb\xa6\xfe\xc5\xcb\x84\x8e\x6d\x6f\x1e\xb6\x33\xe8\x64\x1d\xaf\xb5\x94\xac\x66\xa1\x3b\xfa\xcc\x3b\x75\xad\xf3\x04\xd3\x85\x1d\x91\xa5\x63\xdb\x58\x79\x82\xdf\x72\xbd\xd2\x58\x42\x9d\x49\x44\x74\xf4\xd2\x9b\x04\xdf\x89\xbb\xf7\xff\xc5\xea\xa9\xb7\xb7\xd4\x5d\xbf\xcd\x02\x4f\xde\xa6\x2d\x7f\xcb\xff\x70\x60\xb6\x61\xe2\xef\x15\x7b\x08\xcb\x87\x16\xcb\xfb\xb6\xc6\xb1\xc6\x8b\x7e\xd6\xf2\x19\xc6\x31\x81\x6c\x6b\x66\x25\x7e\xee\xfd\x72\x3b\x94\x90\x76\x97\x37\x54\xf9\x57\x31\x41\xaa\x7c\xc2\x62\xd6\x86\x18\xc2\xc5\xb5\x81\xbd\xa3\x13\xed\x08\xbc\x41\xa6\x3d\x3b\xde\xaf\x20\x58\x6e\xdf\xf1\x33\x6b\x90\x8b\x20\x1f\x32\x5c\x1f\x99\x26\x41\xb8\xef\xfa\xe2\xd8\x01\x3f\x13\x42\x89\xb1\xdd\xfd\x64\x4b\x45\x42\xf2\xd9\x5d\x76\xf7\x2b\x64\x08\x1c\x3c\x39\x96\xaa\xea\x02\x84\x43\x59\x07\x37\x59\x5e\x55\x23\x08\x09\x39\x3c\xfd\xe4\x32\x9f\x70\x5e\xe2\x2a\xed\x1c\xbb\x5a\x73\xa5\xdc\x4e\x3d\xb2\x6f\x1f\x61\xde\x7f\x67\x05\xf6\xe5\xa6\x11\x86\xde\xe6\x8e\x6e\x9d\x1d\x48\x38\x56\xd4\xf2\xbb\x51\xb5\x92\x10\xbe\xee\xd5\x45\x05\xb5\x12\x82\xb8\xe7\x84\xfd\x2b\x05\x77\xb1\xe0\x66\x58\xb2\x2b\x41\xbe\x98\x85\xca\xc7\x27\xef\xac\x08\xdf\xc5\x42\xaf\xa3\xa2\xa8\x9a\xf0\x0c\x42\x92\x34\xf7\xc4\x3a\xb9\x4b\x2c\x38\xc9\xdc\xc9\x61\x7d\x32\x21\xbc\xee\xc9\xf6\x9b\xdd\x69\x44\xf0\x7f\xda\xbf\x37\xe9\x27\x3f\xe1\x8e\x50\x5b\x8a\xcf\x22\x7b\x82\x87\x77\x62\xc4\x71\xce\x4c\x16\x3e\x6c\x38\x3e\xf4\xd2\xd9\x9a\x50\xae\xbb\xf7\x39\xf7\xe6\x49\x84\xfe\x15\x0e\xae\xcd\xb7\x8f\x10\xd4\x93\x7e\x2a\xe5\x74\x87\x11\x40\x3b\xae\xd7\xb4\xad\x25\x18\xae\x74\xf1\xf1\xd9\x67\x46\x98\x6f\x7a\xdc\xeb\x3d\xef\x29\x16\xda\x47\x9d\xdc\x6b\x46\x2c\x09\xd6\xff\x5d\xbe\xab\x17\xa4\xcc\x06\x13\xb9\xf3\xee\x9c\x03\xa9\x0c\xaa\x0e\xb5\x7e\x3a\x4e\xae\x2c\x64\x7f\x18\x38\xaf\x5d\x20\x46\x48\xd9\x2c\x97\xe7\xcc\x73\x97\xa0\xb5\x73\x60\x5a\x3a\x1a\x08\x5b\xa3\xfc\x27\xfd\x27\x97\x4d\x90\xf8\xd9\x5f\xef\xb0\xac\x95\x41\xbd\x60\x64\xa4\x4a\xb5\x22\x61\x93\xc8\xe7\x17\x46\x1d\x8e\x84\xbb\x87\x0a\x4a\xe6\x4b\x89\x13\xce\x70\xba\xc8\x2f\xd0\xe7\x27\x84\x9a\x9b\xdb\x4e\xbd\xbd\x94\xd0\x3b\xf9\x51\x7e\x66\xa2\x2c\x61\xbd\x4d\x44\x84\xc7\x01\x3d\x42\xeb\xe7\x90\x1d\xd1\x96\xca\x6c\xd0\x72\x55\x0a\x30\x6b\x4f\x27\x74\x38\x48\x65\x5e\xee\xb8\x49\xf8\x74\xd8\x38\x25\x60\xf0\x00\x61\xf0\xac\xe1\x53\x0b\xb3\x10\x42\xc7\xbe\x53\xe2\xfb\x5c\xfc\x08\x22\xe7\x07\xcd\x8e\xc6\x9d\x26\xb4\xef\xda\x31\xab\xfd\xcc\x09\x16\x6a\x36\xfe\xf1\x3e\x22\xee\x43\x28\xca\xf8\x26\xff\x81\xef\x29\x0b\x57\x6f\x3d\x4f\x5e\xaa\xe4\x4b\x30\x3a\x6d\xdc\xa8\xda\xad\x4b\xb0\xcb\x78\xc6\x67\x16\xf7\xb6\x10\x09\x2f\x7e\x58\x73\x39\x64\x17\x22\xe2\xf7\xa7\xa7\xa1\x25\xcb\x69\x1c\x22\x2d\x2e\x4b\x36\x75\xbd\x2e\x44\xf8\x0f\xcf\x1e\x75\xcb\x70\xc2\x8b\xa9\x8e\xd6\xf1\x46\x4b\x08\x87\xcc\xaf\x8f\x76\x3d\x56\x24\x3c\x3a\x70\x7c\xc1\x12\xd1\xcb\x2c\xf4\xcb\xa7\xd8\x34\xdd\xca\x27\x4c\x12\x5c\x9c\x5c\x79\x25\x8d\xd0\x3d\x33\xf1\x64\x82\x56\x17\x21\xb8\xe2\x11\xc7\xc8\xad\x74\xc2\xd2\x76\xf3\x7d\xda\x27\x43\x09\x8b\xde\x4e\xf6\x66\x65\xf2\x13\x1e\xd7\xde\x71\x8c\xe8\xd1\x27\xd4\x2e\x13\xe9\x7c\xa2\xac\x4f\x58\x53\xfa\xa3\xb5\xf6\xde\x72\xc2\xe1\x32\x26\x02\xa5\xb6\x6c\xa5\xe9\x7e\xe9\xde\x5d\xee\xf3\x09\xfe\xaf\xdc\x1a\x7e\x3a\xdc\x25\xdc\x2d\xef\x15\x38\x53\xd1\x49\x98\xd4\x60\xa4\x72\x6a\x0c\x7e\xeb\xe6\xe9\xff\x2d\x0e\x17\xeb\xef\x13\x57\x2c\x41\x7a\xd7\x29\xae\x1f\xd7\xdb\x08\x11\x59\xa8\x10\x70\xb6\x24\x7c\x53\xf4\x88\xdf\x79\xa0\x80\xb0\x57\xf5\xe1\xd9\xad\x8e\xbc\x84\xcd\xd5\x7d\xdc\x6d\xfb\x07\x18\x44\x9b\x7f\x13\x08\x13\x53\xa5\x71\xc4\x87\xb6\x6f\xd7\xda\xfd\xa6\x10\x79\x2b\xc5\xf3\xcc\xdc\x44\x09\x5c\xc2\x0a\xf1\x7c\x1e\xd6\x84\xc8\xfc\xf7\x1d\x3b\x7c\x74\x08\xd7\xe4\xfc\x65\xcc\xe2\xc5\x09\xb1\xbd\x86\xc7\xb7\x4d\xd6\x22\x74\xf9\xfa\x98\x87\xc9\x87\x12\x02\xa7\xbe\x7b\xa8\xe0\x93\x42\xf8\x6c\x26\xfd\xe0\xc2\x8c\x42\xc2\xfd\xcf\x27\x84\x85\xfa\x2a\x08\x47\x98\xc9\xb5\xf2\x63\xa3\xf9\x39\xfa\x9f\x5e\xc4\x6f\x23\xdc\x9b\x5d\x9e\x6d\xaf\xe3\xcc\x56\xdc\x24\x9d\x0c\xa7\x27\x38\x13\xde\x39\x7a\x6a\xba\x4f\xab\x62\x61\x9d\xdd\xe0\xaa\xc9\xf3\x77\x12\x7c\x7f\x88\xb7\xc8\xad\xad\x20\xbc\x9c\x74\x6f\x5f\x47\x78\x05\xe1\xbe\xf1\x03\x83\x96\xe7\x87\x09\x4a\x8f\x63\x44\xe7\xbf\x48\x27\x38\xdd\x7b\x51\x6e\x32\xbf\x9c\xf0\x6c\xdf\x61\xce\xbf\xc5\xa3\x44\xd9\x40\x42\xc8\x8f\x0d\x32\x11\xba\xab\x7b\xac\x5d\x58\xf0\x4a\xdc\x7c\xf3\xd3\x87\xed\x84\x3e\x35\xb7\xbd\xeb\xbb\xd7\x13\x82\xc4\x17\xad\xe6\x98\xbd\x94\xe0\x68\xac\x61\x30\x7c\xfb\x02\xc1\x44\xc9\xce\xaa\xb9\xdb\x8c\x90\xb9\xfd\xc5\xd7\x0c\xb7\x6b\x2c\x0c\xf9\xeb\xff\xb7\xc7\x3b\x97\x50\xf5\x68\x71\xad\xd7\xd0\x48\x21\xac\x75\xcd\x76\xc9\xca\x1e\x27\xac\x30\x28\xaa\x9f\x20\xae\x4c\xa8\x3a\xeb\x2a\xf5\xa2\x63\x98\x41\xa1\x47\xf3\x4e\xb9\xd8\x3f\x0c\x3e\x73\x28\x8a\x16\xd5\x4a\x13\x6c\x2c\x9e\x38\xd4\x7d\x6a\x64\xe0\xbc\x69\xc4\x36\xbf\x52\x94\xfe\x01\xeb\x2d\x67\xef\xf4\x38\xdc\x62\x43\xb6\xaf\x60\x52\xed\x86\x22\xc2\x8c\xac\xb8\x54\x9b\x4f\x45\x84\x4b\x27\x7f\x88\x55\xcb\xbe\x22\x2c\xe9\x59\xf7\xbe\x66\x6c\xf4\xfe\xab\xf6\x95\xcd\x57\x42\x09\xd7\x97\x0c\x35\x4f\x99\x7e\x93\xf0\x6a\xef\x35\xd9\xd7\xe7\xd5\x09\x3e\x66\x21\xc6\x72\xbf\x2e\x11\x4e\x4f\x71\xcf\xd0\xd5\x73\x22\x48\x73\xdc\x94\x65\xe2\xac\x09\x9d\x17\xed\x6f\xdb\x35\x2c\x23\x98\x86\x7e\x3d\x68\x18\x39\x8f\xd0\x57\xa2\x56\x94\xf3\x44\x89\x50\xb6\x4b\xeb\x99\xa1\xd0\x25\x82\xa0\xd1\x47\xc7\xdf\xf5\x3e\x84\x88\xc7\x8e\x27\x8e\x5f\xb0\x25\xc8\x6e\xa9\x34\x5c\x95\x67\x42\xb8\x3e\xcb\x76\xa1\xe8\xa2\x9f\x0c\xdc\xfd\xff\x58\xef\xee\xd6\x22\x58\x3f\x08\x10\x10\xba\x91\x46\x98\xb3\xc7\x3b\xae\x9a\x49\x20\xb0\x36\x85\xb4\xfd\x7f\x8c\xf7\x79\x34\xd5\xdf\x1f\xf7\xff\xa7\x10\x91\xca\x94\x21\x21\x65\x4e\xa1\x4c\xe9\x3c\x8d\x49\x51\x86\xc8\xd0\x20\x53\x0a\xd1\x40\x92\x24\x4a\x51\x99\x23\xa9\x44\x49\xa9\xcc\x44\xe1\x64\x88\x32\x24\xd2\x40\x22\x0d\x44\x1a\x88\x3c\x9a\x7f\x4b\x6b\x5d\x6f\xe7\xb3\x7e\x5d\xd7\xfa\xfe\x75\x6e\xeb\xfe\xdc\xcb\xf9\xc3\x7e\xbd\xce\xde\x67\x3a\x9b\x98\x28\x22\xcf\x4f\x2a\xb3\x5f\x33\xe1\xce\xa3\xfe\xc9\x67\xd1\x5d\x82\xa7\x4d\xf6\x6f\xd7\xdb\x8f\x08\x2f\xf9\x8e\xf0\xe5\x30\x1a\x08\x4f\x8c\x99\xec\x81\xc5\x97\x09\x16\x3d\x54\xfa\xd9\x39\x8d\x89\xbe\x2b\xa3\x11\x9c\x2a\xbb\x09\x4d\xc1\x43\xf1\x5f\xce\xbb\x12\x4e\x2a\xe9\xd6\x07\xed\x5f\xf3\x2f\x28\x49\x7e\xeb\x9c\x35\xcf\x9c\x30\xe5\x5b\x90\x83\xc0\x2e\x71\x42\xbd\xba\x77\x73\xef\x4e\x25\x42\xde\xea\xb0\x0d\x8f\x6e\x9f\x62\xa2\xfe\x13\x67\xbb\x54\xd2\x34\x42\x63\xce\xfa\xa0\xee\x6a\xb1\x7f\x61\x44\xbb\x59\x65\x4a\xc8\x3b\x06\x14\x05\x86\xb9\xef\x85\x57\x11\xdc\xbd\x77\xd7\x3f\xdf\x5a\x45\x38\x50\xfa\xa2\x5f\x7d\x8c\x41\xb8\xea\xf3\xae\x6d\xba\x7d\x22\x81\xaf\xfb\x7d\xed\x09\x87\x44\x42\x70\xd9\xc7\x23\xec\x0b\x3b\x58\x8a\xa2\xf2\x34\xbf\x04\xc1\x4d\x04\xe6\x13\xe9\x67\x6e\x0d\x0e\x84\x2d\x2d\x67\xdb\xb9\x54\x37\x13\x3a\x57\xff\xda\x10\xe4\xec\xc5\x9c\x58\x13\x54\xf4\x70\xf5\x82\xcf\x16\x04\x0b\xe5\x25\x56\xcb\xaf\x34\x32\x71\x2b\x54\x6b\xa3\xcd\xda\x4e\xc2\xe4\xab\xeb\xbf\x6f\xb9\xf0\x94\x50\xba\xeb\xa6\x43\xd1\xe4\x3e\x82\x60\x62\x74\xa0\xd5\xf8\x48\x24\x51\x3c\xa9\xaa\x75\x3f\x0b\xee\x5e\x59\x50\xa4\x6b\xb8\x8b\x05\x85\x73\x0f\xa4\x1d\x9b\x3c\x95\x05\x25\x5d\xf9\xae\xbe\x4e\xc5\x04\x3f\x8b\xf3\x3a\x17\x1d\x8a\x09\x31\x67\x6f\x3b\xba\x30\x72\x09\x03\x93\x67\xf8\xe5\x36\x47\x11\xa4\xf6\xbc\x59\xf1\x17\x26\xa5\x42\x1b\x9d\xd6\xda\x12\x56\x1f\x7f\xf4\xed\xe0\xb3\x19\x84\xf3\xab\x16\xb6\x19\xa5\x5b\x12\x76\x0c\x3b\x0c\x2e\xfd\x30\x9f\x05\xa1\x5b\x7c\xdb\x15\x4f\xb4\x54\xe0\xcf\x3e\x71\x65\xd1\xed\x6f\x2a\xe0\xc7\x39\xd6\x93\xbb\x7d\x2d\xfd\x03\x66\x0d\x7e\x67\x42\xe3\x38\x08\x73\xa2\xd0\x7b\x58\x50\x94\xe0\xa0\x3f\xf4\xc8\xe4\xed\x66\x42\x49\xd9\xe2\xf0\x24\xcb\x0d\x84\x07\xae\xb9\x5c\x8b\xce\xb6\x12\x82\x0a\x6c\x3b\x43\x2b\x67\x13\xc4\x24\x62\x17\xf6\xc8\x4f\x21\xac\x71\x7b\xf7\xe2\xf5\x54\x57\x82\x45\x66\xff\x72\xf1\x17\x82\x84\x59\xf1\xb6\xc1\x29\x4e\x4b\x08\x87\x15\xdf\xf0\x1e\xd2\xb2\x21\xdc\x7a\x38\x6f\xc5\x94\x59\x79\x04\x87\xa9\xb2\x4b\xed\x76\xb2\x13\xbc\x7b\xf6\xbf\xeb\x6c\x9e\xcc\x82\x29\xa5\x5e\x41\x97\xf3\xb8\x09\x37\xcc\xd8\x8f\xa7\xc9\xde\xad\xc0\xe7\x0d\x67\xf4\x82\x86\x5c\x68\x02\x59\xc1\x51\x1f\x96\x97\x5b\x12\x06\xc4\x37\x0f\x7b\x26\xa8\x12\x66\x44\x2f\x0a\xf2\x51\xe2\x27\x8c\xdd\x5d\x62\xa4\x3b\x67\x1d\xc1\x45\xf9\xdb\xca\x7b\x7e\x19\x84\xa1\x39\xf5\x9c\x2d\xd7\xc4\x09\x95\xe5\x72\xfd\x9e\xa2\x23\x0c\xec\xdd\x96\xdb\xfc\xb2\x78\x15\xe1\x50\x7b\x89\xea\xea\x81\x64\x16\xec\x38\xf0\x34\x7c\xca\xca\x9d\x84\x8d\x0f\x1a\x42\x36\xac\x08\x24\x74\xde\x2f\x56\x9b\x53\x6c\x4c\xa8\xcc\xd9\xdf\xc1\x69\x1c\x47\x68\x60\xbe\x36\x58\xfd\x6e\x31\xa1\x7a\x53\x88\xd8\xfc\xa7\xfa\x84\x9a\xc7\x97\x55\x1a\x33\xfc\x99\xc8\x7f\xd8\x32\x87\x7f\xd5\x39\x82\x64\xf2\x7b\x4e\xab\x7d\xa3\x2c\x25\xd8\x34\xaa\x78\xe1\xde\xa9\x84\x0e\x93\xe0\x36\xf1\xf6\xc3\x84\x35\x17\x79\x13\x1c\x8d\x54\x09\x5d\xc9\x9b\x3d\x76\xdf\x19\xbf\x3c\xca\xae\x13\x77\x90\xbf\xca\xc4\x8d\xf3\xef\xaf\x08\x35\x19\x11\x94\x2d\xb5\xde\xa9\x38\x1f\x66\xc1\x3d\x5b\x07\xcf\x9b\xdb\x4f\x10\x12\xfe\x2c\x5a\xa5\x5a\xab\x40\xa8\xd7\xf8\xb5\x3b\x57\x69\x19\xe1\x38\x87\xde\x47\xb3\x77\xeb\x09\x97\xbe\x7c\x5b\x55\xd3\x6c\x4b\xe8\x7e\xaf\xf9\xf5\x99\xf5\x13\x06\x8a\x96\x70\x06\x5c\x3f\xc1\xc7\xc4\xa8\xdc\x47\x47\x83\xab\xd9\x4c\xe8\x77\x6d\x5d\xb8\xde\x6d\xfc\xc8\x97\xc2\xc9\xbe\x51\xdb\x99\xe0\x17\x14\x90\xe2\x1c\xb8\x9a\xe0\xa5\x56\xcc\xf6\xf3\xf8\x4b\x06\xa4\x3b\x62\xd6\x75\xf9\x85\x10\x3e\xcf\x5b\x21\x65\xbe\xa6\x99\xc0\xfe\x71\x79\x7f\x8a\x3f\x37\x81\xc7\xe1\xd5\xce\x95\xfb\xd3\x08\x97\xf9\x9b\x1c\xfe\x2f\xd8\xcf\x95\x61\x3a\x96\xeb\x42\x68\x75\x58\xb6\x6a\x92\x74\x25\x73\xa2\xfc\x07\x67\xe7\x57\x2b\x6c\xb7\x48\x13\xc4\xce\xfc\x7e\x7e\x5d\xf6\x32\x13\x0d\xd9\x7d\x17\xf4\x03\x32\x09\xfc\x99\xf3\xa6\xde\x9b\xe3\x4e\x08\xdb\x37\x73\xf7\xb1\xc5\xb7\x09\x72\x6b\x2c\xb5\x07\x46\xde\x33\xd0\x24\xf1\x36\x25\xe4\xbb\x1e\xa1\xac\xc6\x61\xaa\x83\x8e\x2b\xe1\xf5\x07\x8d\xcb\x9e\x52\x27\x98\xf8\xf8\x38\xb4\xa1\x2c\x2b\x80\x20\xb8\xed\xa1\xe8\xcc\xe5\xeb\x09\xb9\xb5\x2f\x62\x45\x03\x33\x98\xf8\xc8\xbb\x77\xd9\xce\xc9\x25\x4c\x9c\x48\xa9\x38\xec\xb1\x70\x98\x81\xaa\x02\xf1\xa0\x49\xbe\x52\x04\x2e\x43\x01\xd1\x6b\x76\xd3\x08\xf2\xc3\x25\xf3\x9c\xc6\x77\xcb\x5b\xe9\x31\x0f\xc3\xcd\x31\x84\x8f\x83\x3d\x2e\x81\xa5\xd3\x09\x4f\x53\x7a\x9e\x0a\x47\x4f\x23\x58\x6d\x62\xdb\xcd\x35\x7e\xf1\x49\x5f\x10\x94\x96\x6c\xb5\x8f\x70\x7e\x66\x89\xca\x9b\x5d\xa3\x0c\x9c\x0d\x56\xd0\x8c\xc8\xdf\x41\x88\x17\xb4\x76\xac\xe7\xab\x61\x42\x7b\xe4\x5d\xb1\xee\xfc\x13\x84\x5c\xd3\x80\x69\xd6\x51\xfa\x84\xa2\x48\x6f\xbe\xa0\xef\x8f\x19\x48\xef\x88\xbd\xad\xec\x7f\x8a\x26\xe0\xbd\xad\xac\xff\x7f\xb1\x89\x2d\xef\xee\x86\xa3\x1c\x04\x6d\xc7\xa6\xa8\x37\x49\x37\x09\x45\xbc\x8d\x25\xbd\xe3\x48\x6a\xde\x28\x73\x7d\xc6\x2b\x42\xbd\xce\xd4\xf6\xaf\xb5\x05\x04\x29\xae\x1b\x7e\x87\x55\x8a\x09\x25\xb7\x98\x73\xfa\xfc\xcb\x09\x3e\x57\x13\xb5\xa4\xa6\x17\x13\x4c\x07\x6f\xf3\x8e\xf2\x17\x13\x0e\x16\x2a\x4f\x3a\x32\xbe\x46\x65\xf0\xbd\xf2\x62\xef\xf5\x84\x65\x0e\x99\xde\xe2\x2d\x02\x04\x9f\xd9\x75\x87\xfa\x9c\x3a\x09\x91\xa5\x97\x93\x9e\x18\x3c\x26\xf4\x24\x55\xee\xf1\x5d\xdf\x4c\x70\x9a\xbf\x88\x3b\x93\x2b\x8f\xf0\xf2\x64\xfb\x71\xb7\x77\x19\x04\x13\xdf\xb9\xeb\x5c\xb7\xdf\x27\xac\x66\x84\x4f\x53\xe4\x4c\x67\xa2\x38\x50\xbd\x35\x88\x94\x08\xfb\xb2\x23\x7c\x68\x76\x2c\x21\xa3\xf6\x55\xf3\x5b\xeb\x5f\x0c\xf0\xba\x7a\x69\x8f\x74\xfc\x66\x00\x46\x3e\x51\xdc\xbc\xfb\x69\x02\x11\xde\xee\x97\x0f\xa9\x87\x11\xd6\xeb\xbf\xdf\x2c\x7d\xb6\x9d\x81\xba\x8d\xfa\x5a\x3f\x46\x2e\x13\x22\x96\xed\x38\xc6\x3d\x76\x99\xe0\xd5\x6d\x9c\x9c\x23\xf3\x90\xa5\x58\x29\xcc\xf3\xec\x33\x76\x63\xc1\xf1\x90\x5e\x2d\x3e\x3e\x1f\x42\x53\xe7\xaf\x39\x27\x77\xbb\x13\x0e\xfd\xd9\x92\xfb\x77\xf4\x1f\x14\x67\x1a\x4e\xa3\x9c\x50\x82\xf7\xa0\xdd\x47\xbd\x9e\x08\x16\xcc\x89\xda\x63\x1d\x7a\x3c\x82\x70\x6d\x6f\xc4\x63\xc7\x86\x50\x82\x07\x7b\x7d\x77\xea\x4f\x67\xc2\xcd\x78\x6d\xb5\xc5\x5d\x9f\x18\xd8\xba\xe9\x9c\x83\xc2\x88\x39\x41\xb7\x1b\xdf\x23\x5e\xa6\x12\x0e\xd7\x5e\x59\x98\xfa\x75\x27\xa1\x57\x72\xa5\xa9\xa0\xe9\x2c\x42\x0d\xff\x8c\x2f\x9b\xfd\xdf\x33\x70\xe8\x5d\x97\xea\x16\xc1\x53\x4c\x78\x5e\xb8\x49\xb1\x45\x37\x09\xfa\x6e\xd3\x8f\xc6\x8c\xc3\x2b\x9c\x3b\xbc\xe4\xea\x4d\xc2\xab\x92\x93\x3f\xa3\xff\x67\xf4\x56\xe5\x28\x37\xf3\xb1\x0d\xc1\x35\xa9\xf0\xf7\x43\xab\x72\x82\xae\x9a\x60\xef\xa4\x8c\x26\x42\xc6\xa0\x49\xd5\x1e\x83\x4a\x82\xdd\xe8\xd6\x6d\xbb\xf7\xeb\x10\x72\x3e\x1e\x3e\xf8\x65\xef\x2d\x42\xf8\x7e\x8e\xd6\x8b\x41\xb7\x08\xbf\x56\x2f\xbe\x11\xf8\x41\x86\xe0\x91\x7a\x33\xc5\x5d\xe6\x2e\x03\x33\xbe\xcf\xcb\xfd\xa3\x10\x47\x13\xd0\xdb\x9d\xac\x28\x54\x3c\x9d\xe0\xdd\x9f\x13\xf1\xaa\x26\x97\x70\xeb\x6e\xce\x85\x92\x07\x0b\x08\x5a\xad\x33\x54\xe7\x4c\xe1\x22\xc4\x67\x05\xd4\xc9\x2f\x39\xcf\x44\x97\x4a\xeb\xbb\xee\xa6\x1d\x04\xed\x6f\x7d\x5a\x9d\x5b\xd4\x08\x0d\x15\x81\x39\x77\xbd\xb6\x10\x6e\x37\xac\x19\x36\xaa\xbd\x4a\xf8\x74\xd3\x73\xc6\x11\xeb\x4c\x82\x5d\x8f\x5c\xca\x1a\x87\x4c\xc2\xa6\x17\xb7\x87\xb0\x62\x84\x81\x8f\xf3\x0b\xcb\x9a\x32\x93\x09\x12\x4d\x19\x29\xce\x17\x2a\x09\x23\x9b\x37\x8f\xe9\xec\x77\x20\x1c\x52\x30\x11\x1c\x61\xdb\x40\xf8\x69\x33\xe7\xa5\xb6\xe6\x06\x42\xbc\x50\x1a\xdf\xbe\xdb\xf9\x84\xb1\x0e\x87\x79\x1c\xbd\x71\x84\x8a\x04\x3d\x41\x43\x46\x31\x61\xef\xd3\x4f\xa5\x35\xa2\xe9\x84\xe9\xb2\x85\xee\x3c\xfb\x5f\x33\x27\x8a\x6a\xec\x52\x1f\xb5\x35\x7e\x04\x91\x52\x85\xee\x7b\xf7\x0f\x13\x8c\x9b\x93\x6e\x69\x9e\xda\xc6\x02\x9d\xe7\x6b\xfc\x82\x9e\xed\x23\xd8\xfb\xcd\xd9\x53\x6e\xa6\x48\x10\x4d\x32\x12\x95\x59\x7c\x91\xe0\xbf\x46\xf8\x9c\xd6\x9e\xcb\x84\xec\xa6\x0d\x77\x43\x27\x4b\x10\x54\x3a\x5e\x95\xdb\x67\x57\x11\xa4\x8a\x66\xc6\x73\x7e\x2c\x23\xd4\x2d\x10\x73\x6e\x75\x7e\x56\x01\x09\x36\x1e\xc1\x65\xd6\x0c\x82\xda\x79\x9d\xc4\x1f\xd6\xf2\x84\x07\xa7\x37\x6d\xbc\xb5\x4a\x9f\xc0\xd8\x50\xdc\x24\x95\x25\x4f\x68\x71\x5e\x21\xd2\xc0\x21\x4f\xd8\xbe\x65\xbf\xdb\x9b\x51\x65\x82\x80\x7f\x97\x50\xd2\xbc\x25\x84\x77\x92\x1b\x3f\xcb\x1b\x9b\x11\x5c\x1c\xc7\x7e\x2b\x1c\x93\x23\xdc\xfd\xf2\x3c\x69\x9a\xf9\x39\x42\xb5\x62\x96\x6b\x5f\xb1\x16\x0b\x46\x97\x36\x31\x4f\x86\x46\x11\xd4\x72\x24\xd9\x57\x97\xe4\xb2\x14\xe9\xb4\x17\xfe\x9f\x5f\xef\x26\xdc\x16\x11\x2c\xd5\xdd\x5f\x59\x81\xc9\xa1\xea\x14\x5d\xa5\x41\xff\x40\x6f\xf9\xab\xbd\x15\x9a\xde\x84\x5d\x53\x72\x32\x67\xf2\x2d\x60\x81\x7f\xa3\xfd\xf4\xf3\x5f\x35\x08\xb9\x11\x29\xa4\x20\x33\x9f\xd0\xfc\x75\xe1\x8b\x2a\xac\x25\x4c\x8f\x51\x4b\xdc\x30\x4b\x98\x90\x64\x91\xab\xd7\xd6\xfc\x84\x81\x56\xb5\xca\xc2\x7d\x87\xad\x08\xde\xfb\xce\x0e\x8a\x08\xee\x62\xc1\xfa\x3f\x8b\x15\x2a\xbe\x59\x12\xee\x48\xf1\xce\xb8\xe1\x30\x97\xf0\x6b\xf2\xb1\xa3\x23\x57\x9d\x08\x75\x17\x43\xa6\xad\xd4\x11\x25\xc4\x4e\xfd\xe0\x7f\x79\xf0\x02\xa1\x4c\xa7\x74\xc0\xe5\xc5\x05\xc2\xf5\xec\xe9\xd7\x97\x1c\xd2\x23\x1c\xd6\x1d\xd6\x3c\xe5\x9b\x41\x50\x8c\xd6\x76\x4f\x34\xdd\x49\x68\x35\xea\x15\x58\x79\x2f\x8c\x50\x1a\x7d\xf0\xb0\xa5\xe7\x1a\x82\xed\x99\x87\x06\xae\x57\x6d\x09\x61\xb7\x3d\x7b\x93\xb7\x99\x10\x1e\x24\xc5\x2f\xfc\xe0\xbb\x82\x30\x26\x66\xb8\xdc\xce\xcc\x9e\xf0\x53\x5f\x8d\xd7\x47\x40\x83\xf0\x20\xd5\x2f\xa4\x48\x69\x8c\x31\x01\x3d\xb5\xdf\x32\x0f\x35\x45\x09\xbc\x07\x38\x67\xcc\xd1\xbd\xc0\x84\xb0\xc3\x94\x9e\xb0\xd8\x72\x82\xed\xa2\x45\x51\xc6\xf6\x35\x84\xd0\xfb\x36\x9d\x79\x1f\xae\x12\x96\x5b\x1e\xaf\x56\xd7\x16\x20\xc4\xa6\x3c\x33\x95\x39\xce\x4d\x78\xf0\x96\x1a\x0b\x7b\x7e\x30\x30\xdc\xfd\x6c\x9d\x5b\xa5\x17\x21\x62\xae\x85\xab\x40\x6c\x3a\x21\xe1\x51\xc1\xb4\x96\xa2\x5c\x82\xf8\x9b\xd4\xfa\x2b\xcd\xc2\x84\x5f\xc2\x86\xaf\x15\x26\x95\x12\x5a\x83\xf2\x86\xc3\x4a\xcf\x11\x9c\xc3\x35\x93\x98\xf1\xb2\x84\xcd\xc7\xd4\xb4\x9b\x0a\x79\x08\x25\xbd\x45\xde\xe7\xc5\x25\x59\xb0\x66\xf7\xcf\xde\x3b\xd3\x3b\x2b\x60\xd3\xb2\x42\xb6\x5d\x62\x13\xa1\xad\xf9\xad\xb3\xd2\xf6\xf9\x04\xbf\xd7\xed\x9f\xe4\xc5\x65\x58\x60\x7e\xde\x6d\x6b\x59\xef\x0c\x82\x64\x8b\xd3\x9a\xad\x7c\xaa\x13\xf8\x96\x69\xb6\xf7\xc6\xef\x79\xff\x7d\x42\x21\x6a\x9d\xbb\xc0\xfa\x1e\x06\xa4\x43\x54\x8f\xbf\x6d\xca\x64\x22\xbd\xfa\xe5\xc5\x5f\x25\xe9\x4c\xd8\x85\xef\xdb\x59\xfa\x59\x8d\xc0\x1b\xed\x34\x77\xef\xd6\xa9\x84\x6f\xd7\x97\xcf\xdb\xf5\xfe\x10\x61\xf3\x5d\x46\xc3\x8c\x1d\x4a\x84\x87\x92\x33\x23\x85\x7c\x2d\x09\x0a\x55\x2f\x17\x05\xdd\xd5\x25\x34\xa5\xc4\x32\x67\x69\xde\x61\x62\x30\x35\x70\xe6\xd4\xd2\xdb\x4c\x58\xf9\xdf\x1c\x3d\xd3\x7f\x85\x89\xe0\xd9\x4a\xf6\x39\x0a\x6d\x4c\x08\x06\x3f\x70\xfb\x22\xe5\x48\x58\xba\x6e\x76\xdd\xf3\x01\x3d\xc2\x1f\xd1\xb9\xd2\x45\x21\x05\x84\x9d\xdd\x62\x4e\x8f\xfc\xac\x09\xc7\xda\xb5\xe7\xae\xbf\xb6\x9e\x70\xce\xe2\x78\xfa\xbc\x17\x33\x09\xa1\x77\x97\x95\xdf\x33\x54\x23\x08\x5b\x5f\x2a\x8e\x1b\xb9\xc3\x44\xcb\x69\xc1\xad\xc5\x89\x05\x84\x33\xc7\x5f\xcb\xd5\xc4\x2d\x25\x70\x5e\xf0\x5a\x37\xa0\x3c\x9d\x70\xf7\xdb\x36\xc9\x47\x07\x57\x10\x9a\xa5\xf3\xfa\x04\x4b\xcf\x10\xd6\xc8\x84\x66\xb6\xe4\xd4\x10\x64\x64\xe3\x72\xeb\xa6\x3e\x25\xc8\xc5\xed\x8c\x72\xcc\x4b\x21\x6c\x6d\x3e\xbc\xa9\x77\xc5\x3c\xc2\x27\x9b\x7b\x03\xaf\x33\xd9\x08\xe7\x02\xf7\x1c\x9a\xfd\x2e\xfc\xff\x89\xb5\x77\x35\x22\x1a\x37\x6a\xb2\x60\xab\x74\xb8\x86\x58\xcc\xb5\xf1\xfb\xcf\xf5\xda\x98\xa9\xaa\x84\xce\x96\x80\xfe\x66\x79\x31\xc2\x55\xd9\x59\x9a\xc3\x26\x19\x4c\xf8\x57\x95\x64\xb3\x0f\x88\x12\xbe\x26\x6b\x34\x1e\x74\x93\x61\xc1\x63\xf5\x07\x82\xaf\x17\xcd\x60\x81\x70\xec\xc2\x59\xbd\xe1\xe7\x59\x60\xee\xe7\x14\xa0\x20\x12\xc5\x82\x14\x43\x97\x97\x42\x3d\x73\x09\x1a\xb6\x51\x1e\x61\xdd\xb3\x59\x60\x69\x7b\x28\xcd\x94\x27\xb7\x02\x17\x17\x95\x87\x2d\xf4\xae\x22\x2c\x5c\x16\x1f\xb6\x7f\x59\x25\x21\x60\x34\xa7\xa9\x3f\x83\x87\x50\xb4\x33\xc0\xca\x7a\xab\x29\x41\xe3\xf7\x1d\x2b\x2e\xf9\xa5\x84\xe9\x4c\x95\x7a\x81\xe6\x6e\x06\x3a\xbe\xec\x34\x59\x52\xa9\x45\xd0\x29\xa8\x94\x9d\x7f\x90\x9b\xa0\x68\xb1\xe7\xfc\x2c\xdf\x39\x2c\x28\xe1\x3f\xee\x67\xed\x32\xc6\xc0\xf5\x99\xb2\xb2\x9f\x4c\xe2\x09\x1f\xbc\x35\x28\xe8\x97\x1d\x61\x67\x9b\x84\x54\x35\xbb\x3e\x41\xb0\x56\x9b\xa3\x4a\xe2\x1b\x03\x3b\xda\xe3\x4f\x86\x17\xf3\x12\x32\xf6\x5e\x30\x36\xe6\xb4\x22\x8c\xcd\xe0\xb8\xd6\x14\xc7\x4f\x10\xe8\x97\x4d\x8b\x13\xfe\xce\x80\x99\xd2\xbb\xef\x7f\x12\x65\x08\x85\x73\xe2\x35\xd2\x4d\xc5\x09\xe7\x02\xd2\x8f\xeb\xb9\x89\x10\xdc\xfb\x6d\xfc\xb9\xb6\xdc\xad\xc0\xde\x69\x3f\x07\xa5\xfd\x0e\x30\x31\x3d\xb4\x7c\x74\xe3\x15\x3d\x9a\xc0\xc7\x1c\x7b\x05\x1e\x87\x66\x06\xae\xfa\x1d\xfa\x98\xae\x11\x47\x98\xa6\xa9\x20\xb8\xbf\xc1\x9e\x05\x42\x51\xaf\xce\xe6\x73\xa8\x12\x66\x6a\xcf\xae\x10\xbb\x24\x4b\x70\x6f\x8f\xea\x34\x84\x0a\xc1\x6f\xa9\xdc\x8c\xa7\x88\x25\xac\x38\xfc\xab\x36\x71\xfd\x07\x06\x22\xdc\xdc\x14\x54\x9a\xd5\x08\x64\xb4\x21\x5b\x20\x9f\x08\x99\x95\xd2\xdf\x13\xd6\x26\x11\x42\xfa\xf0\xf9\xd8\x98\x1d\x0b\x5e\x9d\xd9\xf1\x6e\xee\x33\x59\xc2\xc2\x1f\x75\x1a\x06\xaf\x6b\x18\x78\x34\xdf\xec\xd5\xfe\x8f\x5d\x0c\x08\x1c\x74\xd2\x9e\x6d\x61\x41\x68\x28\xbe\xf0\x76\xfb\xf5\x49\x04\x93\xe5\x56\x09\x09\x42\x26\x84\x79\x69\x33\x1b\x9f\xbc\xeb\x61\x62\xc3\x87\xdf\xcf\xf3\x7c\x4a\x08\xd6\xf9\x57\x12\x03\xce\xf7\x32\xe0\x34\x4d\x6d\xd9\xfc\xbe\x70\xfa\x07\x16\x70\x0b\xa8\x76\x7b\xab\x13\x3a\xcd\x75\x64\x2b\x79\xa4\x09\x0d\x0b\x79\x13\xf5\xcf\x3f\x63\xe0\x7b\x95\xba\x5c\x56\xf0\x18\x03\x8c\x33\x5d\xbf\x43\x96\x9e\x22\xbc\xe0\x16\xdd\x5c\x9b\x7b\x89\x26\x4a\xed\x2a\xf5\x9f\x76\xe3\x07\x47\x09\x21\x4f\x73\xbd\x95\xe7\x08\xf2\xb6\xf9\x0f\x3b\x9c\x53\x09\xf7\xa6\xc8\xde\xb9\x66\xf8\x98\x30\x43\x57\xf9\xf1\x23\xf9\x1e\xc2\x83\x7b\x25\x23\x71\x95\xcf\x98\x98\xa3\x18\xb5\xa9\x3d\x66\x2f\xc1\xb1\xd8\x5d\xb7\x77\xc5\x0d\x02\x53\x46\x6c\x46\x68\x58\x11\xe1\x98\x10\x7f\xd3\x85\x87\x07\x08\xca\xcb\x34\xf4\xb9\x77\x84\x30\x27\x8a\xce\x05\x5d\xcf\xaf\x47\xc7\x9f\xee\x99\x59\x03\x77\x35\x2e\x30\xf1\x7c\x95\xa8\x6e\x6f\x5e\x26\xa1\xe9\x84\xf4\xd6\x68\xdf\x5a\x26\x9e\xac\xae\x32\x1f\xf9\x78\x92\x20\x24\x2b\x6e\xe9\xfc\xf5\x24\xe1\x74\xa2\xdd\x58\x88\xa1\x07\x61\x63\xff\xa9\x69\x47\x4f\xaf\x27\xa8\xbd\x9f\xfa\x70\xfb\xc9\x11\x06\xe8\x98\xcc\xa4\xc6\x3b\x6b\x09\x8d\x61\xfe\xec\xba\x2b\xab\x98\x18\xf3\x10\x31\x1f\x7e\x73\x98\xa0\x93\xf2\x3c\xc7\xe0\x64\x08\x21\x78\xd4\xe5\xc6\xee\x30\x7f\xc2\xb4\x25\xa5\x1d\xb1\x6f\x97\x12\x76\xf1\xfa\xaa\xfc\x3a\x9e\x4d\x08\xfc\x28\x98\x75\xec\x74\x1f\x41\xe4\x9a\x92\x54\x45\xeb\x1b\x02\x73\xd5\xab\xa4\x29\xab\x7a\x08\xe4\x73\xa2\x5c\x47\x26\x84\x70\x59\x42\xc9\xae\x80\xeb\x12\x13\x97\x5c\x53\x5e\x9c\x62\x9e\x25\xd4\xdd\xf8\xec\xba\x73\x5e\x08\x41\xa0\x36\x50\x96\x6b\xf8\x04\x61\xbf\xad\x7b\x65\xeb\xaa\x50\xc2\xef\x8f\x0f\xc2\xdd\x34\xee\x54\xe0\xd3\xcc\xdf\xc7\x76\x14\x4d\xa7\x09\x70\x7e\xd3\x0d\x9c\x77\x4f\x9d\xe0\xba\xab\x72\xbb\x4d\x79\x1c\xe1\x49\xcb\x46\xff\x0d\xbf\xc6\x18\x13\x70\x9f\xd9\xc7\x15\x2a\xc6\x46\x13\x98\x77\x5b\xe5\xd0\x97\x60\x23\x42\xfa\x19\xa7\x1a\x59\xc1\x1b\x84\x86\x51\x9e\x4b\xc6\xf3\x1d\x08\xc3\x93\x53\x6e\x28\x4c\x6b\xa9\x80\x82\x60\xfa\x5d\xdb\xa0\x8d\x84\x95\x38\xb4\x21\x66\x28\x85\x89\x9b\x7e\xba\x3c\xab\x14\xac\x09\x97\x15\x93\xd9\xf6\xac\x5b\x40\x98\x3e\x27\xc5\x24\xf6\xd6\x28\x03\x17\xdf\x2e\x4d\x14\xb7\x34\x21\x54\xb9\x6d\xca\xd5\x4f\xd6\x27\x64\x94\x06\x7b\x7b\x85\x1b\x10\x8a\xb9\x67\xcd\xf6\xdd\xfc\x8d\x81\xa3\x1b\xc6\xbc\xb4\x94\x0d\x09\x1b\x14\xa8\xca\x3b\x7b\x31\xe1\xd4\x08\xc7\xa1\xe4\x83\x17\x98\xd8\x5b\x92\xf2\xda\xdb\x5d\x99\x30\xf7\xbc\x93\x42\xcc\x6f\x57\x82\x7e\xdd\x3b\x85\xd2\xd0\xa5\x84\xac\x2b\xd2\xad\xcf\xea\x57\x11\x9a\x76\xfb\xde\x79\x79\xc9\x8a\x50\xdf\x36\xe7\x6a\xde\x77\x27\x42\xe8\xa9\xbc\x73\xda\xa6\x69\x4c\x70\x45\x1e\xf9\x34\xe5\xb3\x03\x61\x53\x57\x74\xcd\xe1\x47\xf5\x2c\x25\xc9\x4b\xd8\x72\xf2\xad\x10\x26\xbe\x3e\xed\xc9\x1b\xd5\xdc\x43\xd8\xb2\xf4\x78\x4d\xe8\xfd\x19\x84\x30\x73\xe6\xe2\xc7\xe7\xf5\x58\x50\x76\xf5\x72\xeb\xcf\xbc\x39\x84\x07\x73\x14\x6f\x95\x1b\xcd\x27\x64\x3d\xb4\xf8\xd3\x22\x28\x49\x38\xd6\x2b\xff\xd9\xaa\x8f\x9d\xa0\x70\x34\x85\xcd\xe8\x8d\x16\x41\x75\xf4\x4d\x8d\xde\x36\x31\x16\x58\xcf\xf7\x92\x73\x19\x1c\x62\x40\x58\xda\x66\xa3\x67\x0c\x0f\xe1\x21\x5f\x4b\x5e\x70\x60\x07\x03\x05\x62\x5a\x47\x86\xdb\x67\x12\xc2\xee\x4c\xd1\x7f\x67\xb8\xfe\x5f\xb8\xe2\xb2\xb4\xf3\xf9\x9a\x59\xff\x82\x98\x4f\xc3\xe8\x02\xb5\x21\x06\xa6\x78\xf6\xc5\x3c\x7d\xa3\x4e\xf8\x78\x3d\xe6\xd4\x8f\xd3\x5a\x84\x54\xed\xcb\x25\xc7\x2a\x17\x10\x66\xe9\x55\xa7\xcd\xd8\x23\x44\x10\x56\xbc\x5f\x78\xfc\xa3\x25\xc1\xb2\x50\x4c\x3f\xf8\xe2\x16\x82\xca\x07\x0b\xe3\xa6\xe4\xbd\x04\x8b\x46\x6b\xe1\x8a\x23\x2e\x04\xdd\xe1\x64\xee\xd7\xbf\xee\x30\xb1\x67\xb3\x9f\xec\x0c\x1f\x4d\xc2\x90\xac\x79\xd0\x12\xed\xc7\x15\x28\xea\x95\xca\xf6\x79\x6b\x48\x30\xe8\xb6\xef\x7e\xb7\x43\x8f\x05\xf5\x8c\x4b\xf3\xd7\x09\x77\x32\xe0\x17\x12\xbe\x3f\xd6\x35\x8c\x70\x71\x72\x7f\x20\xcf\x65\x23\xc2\xf2\xc6\x9d\x05\x87\xe2\x76\x12\x04\x13\xd3\x6e\x6e\xf7\xb4\x24\x0c\x64\x46\x7c\x90\x9e\x7c\x88\xe0\x58\x51\x18\xe4\xfd\x92\x08\xde\xa7\x86\x83\x96\xdf\xf0\x21\x70\xf7\xaa\xdf\xab\xb8\x3c\x83\xa0\x26\x10\x35\xb5\x3b\x52\x9f\x05\xda\x0f\xe7\xef\xcf\x95\xd0\x23\x70\x04\x2c\x55\x95\x32\x16\x23\x78\x6f\x7e\x90\xa8\x74\x27\x83\x70\xc4\xf3\x48\xf7\xfc\xde\x5c\x16\xd8\x9e\x32\x3e\xf3\x17\xf1\x7e\x2b\x25\xc3\x32\x2f\x13\x34\x4f\xc8\x17\x36\x9f\x0b\x24\x3c\x5f\xbc\xec\xfe\xbc\xec\x72\x42\x6f\xe4\xae\x52\x9e\xf0\x6e\xc2\x66\xbf\x40\xfb\x0f\xca\xcf\x08\x2b\x19\x67\x1b\x1d\x76\x3f\x21\xa8\x4f\xf3\x4b\x8a\x9c\x5d\x43\xf8\xf6\xf0\xb8\xe3\x58\xe5\x6b\x26\xce\xbf\x10\x49\x54\xe7\xb9\x4f\xe0\x95\x2b\x4e\xe3\x91\xec\x24\x84\x4d\xd6\xb4\x5e\x39\x5e\x76\x5f\xe4\x65\x76\x1e\x69\x22\xdc\x1f\xb9\x58\x11\xe0\x7f\x84\x10\x7d\x43\x5e\x60\xf2\x50\x26\x61\x41\xae\xb2\x88\xc1\x38\x92\xa6\xb1\xed\x36\x9c\xd4\x4a\xf8\x31\x7c\xc3\x21\x69\xf9\x35\x82\xf7\xfa\x4f\x33\xe3\xc3\xdb\x09\xa7\xe6\x2d\x2f\x58\xb5\x3f\x93\xa0\x19\xfb\xe2\xc5\x64\xca\x27\x44\x2e\x0f\x9d\x95\x3b\x68\xcc\x44\x4b\x8c\x8d\xd9\xef\xc5\x86\x84\xb2\xeb\x7a\x27\xdb\xfd\x76\x11\x9e\x27\x9c\xcd\x9e\x71\xd0\x85\xf0\xf9\x76\x95\x87\xfa\x69\x35\xc2\x01\x57\xd9\x1f\x71\x81\xce\x04\x81\xc9\x6a\x1f\x6f\xa6\x9f\x21\x70\x84\x89\x2f\xf7\xcf\x4a\x21\x34\x7e\xad\x2d\xd6\x5d\x53\x47\xb8\xaf\x35\x5d\x8a\x73\xc0\x9e\xa0\x1e\x7f\xc3\x72\x91\xb7\x1d\xe1\x74\xc1\xd4\x2d\xc7\x4c\x13\x09\xae\x1b\xfc\x3c\xab\x95\xa5\x08\xf3\xfb\xc5\xdd\xd5\x93\x3b\x18\xc8\x9e\x7b\xc8\xee\x42\x48\x21\x41\x67\x8e\x8e\x8f\x5d\xf6\x17\x06\x92\x24\x64\xf3\x3d\x39\xd8\x69\x02\x3d\xd7\x4c\xbb\x86\x4d\xb9\x08\x23\xed\x77\x25\x4d\xcd\x45\x08\x0f\x3c\x45\x03\xb7\xde\x5c\xc0\x82\xad\xb2\x26\x91\x41\x0b\xe2\x2a\x70\x33\x5e\x8f\xde\x68\x5a\x33\xf1\xc9\xeb\x98\xde\xcf\x56\x77\xc2\x43\xb5\xeb\x59\xaa\x7d\x2b\x09\xea\x83\xc2\x1f\x6f\x94\xed\x25\x74\x4d\xb3\xe3\xb8\xe3\x62\x49\x90\x75\x28\x2a\x6b\x2b\x55\x27\x2c\xf8\x91\x7c\x28\xe6\x02\x8d\xbf\x25\x74\x8d\x2d\xad\x4a\x08\x83\x81\xb3\x66\xff\xc5\xfa\x8d\x65\xb7\x2c\xc6\xa1\xb1\xd5\xf6\x49\x29\xd7\x15\x42\x96\xf3\x77\xc3\xad\x26\x6e\x04\xbe\xab\x0a\x62\xd1\x8a\xda\x04\x19\x9d\x73\x0f\x36\xeb\xef\x21\x70\x72\x58\x3e\x58\xc1\xb9\x92\xe0\x15\xf3\xd0\x76\x74\x91\x3c\xe1\xa7\xdb\x96\x81\x25\x8d\x63\x0c\x5c\xbc\xae\x6a\xfa\xa2\x56\x8b\xe0\x25\x5a\x97\xfd\x3b\x7c\x03\xa1\xee\xa8\xf5\xb1\x2a\xb9\xdd\x04\x35\x1d\xc5\xc2\xda\x18\x17\x16\x6c\x55\x09\xfa\x78\xb7\x80\x87\xa0\x35\x7a\xf6\x90\x78\xf0\x11\x82\xf3\x9a\xdf\xfb\xd6\xbc\x9e\x47\xa8\xb4\x18\x68\xfa\xe4\xb3\x84\x60\xeb\x7f\x77\xd5\x56\x01\x3d\x16\x8c\xf1\xd4\x3d\x59\xab\x33\x89\x90\x26\x93\x6e\x1d\x61\x9a\xc2\x84\xe9\xf6\xa0\x6f\x01\x55\x56\x84\x69\x25\x8a\xb1\x73\x25\x75\x09\xb7\x0a\xf6\x4f\x61\x93\x30\x20\x14\x6d\xad\xca\x9e\x6e\xa2\x46\x90\x3a\xf6\xed\x42\x42\x63\x1b\x03\xef\x6f\x9f\xff\xd4\x24\xc2\x49\x58\x50\xb8\xa8\x55\x57\x5c\x85\x70\x69\x2c\xf4\x68\x73\xe0\x6e\x82\xbe\xc5\xe1\x98\xda\x41\x0b\xc2\xaa\xfd\xa1\x6b\x9c\x53\x64\x08\x3f\xd3\x64\xfc\xde\xa6\x5c\x21\xdc\x5d\x36\xb5\x66\xb5\x21\x3f\x61\x2e\xdb\x29\x03\x8f\x24\x41\x16\x94\x47\x7e\x53\x1c\x3c\xf0\x96\x81\xb1\x83\xa7\x17\x1d\xe0\x66\x23\x98\xde\xae\x30\x6c\x8a\x23\xc2\x73\x57\x01\x1e\x9d\x05\x92\x84\xc6\x2f\x70\x1c\xb1\xdb\x4b\xd8\xe5\x14\x79\x40\x70\xe7\x24\x82\x5c\xa5\xc3\x9f\x99\xb9\x32\x84\x5b\xa4\x5f\xbb\x5b\x92\x9f\xb0\xf7\xce\x83\x3d\x56\x19\x73\x59\x20\xea\xe2\xb0\xe6\x90\x62\x52\x05\x02\xab\xf5\x67\x3c\x92\xb6\x25\x1c\x0d\xa6\x20\x01\xed\xf1\x23\xb1\xa4\x78\x82\xde\x3e\x27\x82\x48\xf3\xfd\xfe\xcb\x9b\x97\x13\x8e\x94\xcf\x6e\x5c\xea\xa8\x4e\x38\xa7\x27\xf2\x27\xb8\x4c\x8d\x60\x30\xff\x3b\x73\x7b\xd8\x3c\xc2\x26\x45\x9e\x1d\x23\xf2\x60\xc0\x63\xbf\x37\xa9\x1d\x56\x27\x38\x8c\x6c\xeb\x88\x3e\x93\xc6\x44\x53\x55\xa8\xed\xdf\x52\xbb\xfc\xfe\x59\x33\xe1\x2f\x8c\x09\x88\xcf\x3e\xfe\x56\xd3\x60\x1f\x4d\xa0\x57\xda\x46\xce\xa7\x69\x3a\x41\x48\x6b\x9a\xf4\xcd\x99\x7c\x04\xde\xb5\x86\xd2\xa7\x07\x07\x19\xe0\x3a\xff\xd5\x66\xd2\x6a\x19\x42\xef\x8a\x94\x1b\xb9\x1e\x33\x09\x5b\x3c\x24\xf8\xec\x6e\xeb\x11\x7a\x53\x1d\x7a\x6c\x04\xd7\x10\xcc\x23\x25\xe3\xda\x24\x6d\x08\x3a\xb7\x63\x36\xe5\x27\x8c\x31\x90\x10\x76\x55\xae\x7a\x16\x11\x9c\x3b\xb9\x92\x2f\x1e\x37\x21\x54\xca\xac\x6c\xdf\x14\x16\x40\x10\x39\xeb\xd1\x38\xb3\xdc\x89\x50\x7a\x20\x2c\xd1\x66\xad\x0c\x61\x68\xc6\xcc\x7d\xf7\xbd\xc2\x58\x8a\xe2\x2a\xfd\xa6\x97\x05\xef\x19\x13\x90\x35\xcd\xdc\x29\x66\x28\x48\x13\x08\x12\x68\xaf\xd5\x16\x7d\xc5\x40\x94\x6c\x9d\xff\xb4\xd0\x07\x04\xfb\xa7\x2f\x56\x2c\x66\x53\x27\x58\x7f\x3e\xc1\xdd\x18\x6d\x4e\xe0\x16\xa8\x6c\xe7\xf1\x30\x20\x24\x2b\x06\x7b\xd4\xf9\x84\x10\xee\xec\xbe\xca\x66\x66\x29\x43\x38\x7d\xd7\xed\x56\xd2\x5a\x5e\xc2\xc7\x4b\xbc\xa7\x6a\xb7\x08\x12\xe6\x47\xce\x5d\xac\x52\xac\x4b\xc8\x3c\x51\xac\xe9\x95\x60\x48\xd0\x98\x16\xdb\x3f\x70\xd8\x92\xb0\x56\x7a\x79\x90\x4c\xf0\xf8\x09\xb6\x7b\x21\xbe\xbc\xb1\x21\x3c\xde\x99\x7f\x8c\xad\x43\x9d\x20\x37\x16\x33\xc4\x69\xac\x46\x48\x79\x56\x11\xfd\x23\xcc\x83\xb0\xfa\xc6\x85\xae\x03\x96\xd6\xe3\x1b\xa0\xf2\x86\xfd\x5b\x7d\xc2\xea\xef\x16\xa6\x5c\x35\x49\x2c\xc8\x3b\x61\xcb\xdf\xd6\x1c\x47\xd0\x90\x61\xbf\xda\x7b\x81\x9d\x70\x36\xc8\x54\x60\x60\xef\x37\x06\x0c\x99\x61\x87\x0d\xb7\xb5\xb0\xa0\xf0\x4d\x73\xb0\xe7\xf6\x99\x04\xab\x3b\x5b\x06\x8e\xf5\x1a\x12\x1e\xed\x3e\xf9\x76\xeb\xcb\xee\x0a\x28\xf5\xfb\x7c\xfa\xbc\xdc\x95\xa0\xa4\xf1\x73\x77\xfe\x49\x6f\x62\x29\xff\x07\x15\x62\x4b\xb6\xec\x2d\x19\xff\x0a\xb5\xe3\xfd\xbe\x12\x8b\x09\xf8\x6a\x29\x34\xab\x79\x2f\x13\xcd\xbb\xe2\x45\x92\xb4\xd4\x08\x0b\xcf\xf7\x3b\x77\x44\xb2\x13\x06\xff\x58\x24\x5f\xde\x75\x83\x89\x85\xc6\x6e\xbd\x87\xbd\x96\x10\x76\x28\x1e\x1e\x7c\xf8\x41\x8c\xe0\x2e\x6a\xb8\x5e\x69\xa1\x27\x61\xa1\x84\xf4\xac\xeb\xde\x72\x84\xd6\xfc\x03\x45\x09\x5f\x2e\x30\x91\x6c\xb9\xfe\x36\xef\x0f\x0d\x42\x4c\x79\xa5\xfd\x81\x3f\xa2\x04\xbf\xdf\xc6\x76\x23\x1b\x0f\xb3\xc0\x08\xa9\x82\x71\x3f\x55\x08\xc2\xe7\x12\x5f\x67\x49\x0b\x10\x16\x78\xd4\x08\xfa\xb0\x8d\xdf\x89\x98\xed\xf1\xf7\x64\x74\x09\xa7\x7a\x87\xb8\xa3\x24\x74\x09\xb3\x55\xcf\x7c\x9f\x1c\x6a\x47\xe8\x53\xb1\x91\x75\xf6\x99\x4f\xd0\x3f\x26\xff\x61\x79\xb6\x38\xe1\x64\xac\xff\x07\xbb\xd4\x27\x0c\xec\x7e\xde\x59\x16\x11\x6b\x49\x13\x18\xe5\x36\x30\x30\x62\x57\x67\x81\x49\x76\x9b\x8b\x67\x5a\x30\x03\x9b\x24\x93\x9f\xd5\x9f\xe5\x22\x9c\x9f\xe5\xe3\x1a\xe9\xe6\x4c\xd8\xc4\x15\x20\x77\x67\xf9\xba\xff\x73\x21\xb7\x26\xb4\xf1\x9b\xbe\x48\xf1\xb7\x20\x6c\x3d\x60\x98\x3b\x64\x23\x4d\xb0\x88\x7e\xbe\x64\x1d\xc7\x2c\x82\x83\xfb\xba\x53\x9c\x6a\xe2\x84\x40\x87\x72\x9b\xb7\x1c\x3b\xe8\x9b\x31\xc7\x91\x8d\xdb\xe3\x08\x29\x0d\x56\xbb\x84\xa2\x99\x04\x5d\xc9\x47\x7d\x82\xe3\x50\xb6\xf3\x4c\x2e\xed\xce\x20\x5c\x1a\x39\xa4\xcd\xbd\x6d\x05\x61\x70\xa0\xb0\x7f\xda\x07\x23\xc2\x4c\xf3\xfb\xfe\xb1\x26\x05\x4c\x18\xb4\xf9\xb6\xb9\x38\x6e\xa0\x09\xcc\xfb\x68\x95\x58\x3d\xfe\xca\xac\x96\x90\x75\xb7\x4f\x1b\x22\xec\xcc\x1a\x7b\xdc\x36\x50\xcc\xc4\xfb\xb5\x0d\x42\x31\x25\x17\x08\x7c\xe7\xba\x35\x86\xaa\x5e\x13\x4a\x47\x5b\xde\x73\x59\xba\x10\xe8\xfa\xc1\x1f\x21\xae\x49\x84\xe4\x6b\x61\xb1\x47\xc3\xab\x08\x17\x56\x88\xce\xfd\x8b\x25\xae\x3b\x02\xff\xc2\xfe\x37\xdb\xe4\x29\xdd\x05\x84\x07\x7b\x1c\xe1\x90\x27\x46\xf8\x25\x3f\xb3\xac\xfa\x93\x11\x21\xe4\xed\xbd\x76\x2b\xb7\xb9\x2c\x78\x67\x52\xf6\x84\xf7\xe8\x00\x03\x36\x1b\x4e\xc9\xfd\x1e\x9c\x4d\x60\x7f\x23\x2f\xf8\x24\x66\x15\x41\xaa\x45\x44\xc3\xc5\x36\xa3\x02\x83\x75\x62\x22\xaa\xcd\x1b\x69\x02\x9d\x3e\x7c\x9f\x2f\x16\x88\x12\xc4\x62\x8f\x27\xdc\x08\xfe\xc1\xc0\xfa\x86\xe8\xe1\x76\x33\x3e\x82\x47\x6d\xb5\x61\x5c\xc1\x37\x06\xbc\x76\xa8\xdf\xdf\x57\xeb\x4d\x58\x2a\xd7\x3f\xdb\xd0\x25\x9c\xa0\x73\xf2\xcd\x99\x92\x35\x6f\x19\x48\xec\x9d\xec\x51\x3a\x36\xca\xc0\xe2\xf9\x95\x61\x7d\x16\x5c\xf4\x0f\x98\x8b\x9d\x12\x98\xfd\xcb\xf7\x5f\x10\x88\xdd\x39\x49\xee\x14\x3b\xa1\x2a\x78\xc7\x08\x97\xd0\x03\x82\x78\x91\xe1\x97\xbe\x1b\xcf\x08\xb6\x71\x93\x07\xaa\x1e\xbf\x26\x5c\x57\xbc\x2a\xb0\xd6\xf4\x31\xe1\x4b\xa7\x4b\xe5\xe5\x55\x3b\x08\x75\x4e\x27\xba\x16\x5e\xac\x22\x9c\xde\xb0\xdb\xb6\x33\xa2\x94\x10\xe2\xe6\x53\xdc\x16\xdc\xc7\x80\x54\x90\x77\xeb\x47\x9e\xb9\x04\xb5\xe4\x1e\x36\x73\xcf\x3d\x04\x59\xcb\x5d\x9b\x47\x0e\x4c\x21\x74\xfa\xf7\x29\x0d\xbe\xa9\x20\xf0\xf5\xcd\x54\xbc\xda\x93\xc6\xc4\x34\xae\x39\x52\x8b\x57\x67\x10\x86\x1d\x9c\x32\xcf\x6c\x4f\x27\x2c\x8a\x9c\xe4\xad\xfa\x79\x19\xe1\xb4\xf7\xa7\xee\x06\x66\x2b\xa1\x3b\xa7\x61\x8a\x58\xb2\x25\x13\xda\x57\x6a\xf5\x6f\x7d\x7e\x40\xe0\xb9\xf9\xdb\x23\x2e\xdf\x82\x70\x76\xa3\x82\x9e\x5a\x92\x19\xe1\xe1\xc1\xe6\xae\xef\x12\x55\x84\xd1\xd9\x9f\x62\x7f\x8f\x9f\xf8\x74\x68\x9a\x77\xc0\xba\x72\x42\xf4\xfa\xe7\x97\xa4\x42\x65\x09\xea\x87\x42\x1a\x1c\x67\x9f\x66\x42\x4c\xa6\x5a\x72\xc1\xc5\x7b\x84\x8b\xd3\x3e\x38\xcb\x8e\x43\xa8\xcf\xf9\xbc\xe4\xe3\x4a\x42\x8e\x9e\x48\xd0\xdf\x51\x95\x9f\xf4\x9b\x95\xbe\xb2\x2c\x88\x1a\x13\x50\xd0\xa8\xaa\x25\x24\x5e\x59\xac\x5a\xb0\xad\x96\x70\x70\x92\xed\x89\xf7\xe5\xb5\x04\xf5\x37\x65\x3c\xda\xe3\xa3\x4b\x3b\x96\x2e\x58\x3d\xbe\xf8\x3f\x14\x95\x97\xce\x3b\x55\x52\x4b\x90\x5b\xf6\xdd\x2a\x61\x1c\xba\xf5\xfa\x9e\xb3\x4f\xb0\x96\xd2\xc1\x0f\xdf\x79\x2d\x53\x08\x22\x5a\xf5\x7a\xb5\xee\xb2\x84\xaf\x9d\xa7\x1a\xa6\x8e\x5f\xd1\xbc\x6e\x04\xcd\x67\x53\x88\x63\xa2\x84\xfb\x99\xb9\xcb\xac\x22\x82\xf9\xed\xfe\x47\xc2\x3b\xd6\x12\x6e\x35\x56\x7f\x0d\x53\xd9\x4b\x58\x57\x70\x23\x21\xa0\xb2\x9a\xc0\x3c\x65\xa7\xf5\x17\x6c\x79\xc6\x27\x73\x1e\x15\x11\x7a\x06\xda\xb4\x5e\x71\xaf\x21\xfc\x50\xfe\xb4\xf0\x24\xdf\x5a\xc2\x4f\x2e\xe1\xfd\x36\x75\xf5\x84\x8e\xa3\x62\x3c\xf2\x66\x6f\x08\x7c\x17\x36\x1d\x88\x4e\xbf\x4f\xb0\xb3\xc8\xae\xb8\xef\x75\x9b\x60\x32\x69\xae\xaf\x97\xbf\x19\xa1\xf7\x73\xd1\xab\xf6\x5f\xaa\x84\x42\xe5\xcd\xbe\x29\x7b\x1c\xfe\x05\xab\xbc\xd3\x3f\x72\x85\xb4\x09\x22\x77\xf6\xfa\x2a\x0a\x6b\x12\x44\x25\xa4\x5d\x5a\xf8\x67\x11\x12\xb5\xc6\xa4\x57\x50\x21\xe1\x57\xf5\xf5\x94\x27\x81\x9c\x2c\x78\x34\x92\xf2\xf1\x65\x2c\x37\x0b\x18\xbb\x16\x0d\xa4\x2d\x60\x23\xa8\xb5\x75\x3e\x15\xc9\xdd\x47\x18\x2c\xcd\x9a\xac\xeb\x69\x4d\x18\xf2\xbb\xe3\x1d\x60\xf6\x98\x50\xb9\xb8\x7e\x35\xbf\x41\x26\x21\xe4\xdb\xbe\xd0\x2b\x56\x39\x84\xbd\xdd\x8f\x6d\xf5\x73\xf2\x08\x21\x87\x2e\x4b\x68\xcb\xc9\x10\x24\x9a\x2f\xa4\x3e\xbb\x6a\x42\x50\xe5\xfb\x9d\xbe\x65\x8d\x05\x61\xc0\xe0\xda\xb5\x32\x83\x35\x04\x97\x5f\xdf\xe3\xdc\x5d\xd4\x09\x73\xde\x08\x5a\x7e\xdd\x34\x9f\x60\xfd\xae\xde\x4a\x44\x42\x9b\xb0\x8c\x6f\xca\xc2\x0b\x67\x5e\x30\xc0\x58\x3f\x77\x77\x6b\xb3\x16\xa1\xf9\xa4\xaf\x63\xbc\x89\x2a\x0b\x1a\x9d\xef\xb4\xf4\x17\xac\x25\xf0\x0a\x7f\xa9\xe8\xfa\x5e\x4c\x58\x39\x57\x97\x6b\x7e\x81\x1e\x0b\xec\x7b\x24\x44\x2f\xba\xcd\x24\x70\x6c\x63\x9b\x62\xe0\xb2\x92\x70\xa5\x67\x77\xa5\x66\xa3\x3b\x13\x76\xd6\x75\x87\x52\x0b\x17\xd0\x04\xa2\xdf\x86\x5e\xdb\xa3\x54\x4d\xd8\x50\x12\x73\xe0\x64\xa6\x1e\x61\x5e\xdd\x08\x5b\x75\x4b\x24\xc1\x2b\x61\x0d\xdb\x92\xc5\xa1\x84\xb1\xac\x46\x5b\x7b\x79\x03\x42\x9a\xbc\x4e\xf6\x53\x99\xe3\x04\xce\x38\x4e\x19\xee\xcb\x62\x04\x81\x54\x2b\xa6\x88\x65\x10\xc1\x3a\x7b\x53\xa8\x5f\x13\x27\x61\xd6\x2c\x6b\xb6\x0d\xdd\xa6\x04\xfe\xab\x73\xc5\x37\x77\xae\x27\x98\x1c\x31\x2d\xd7\xd0\x36\x24\xe4\x28\xc4\xfd\xd1\x09\x7a\xcd\x40\x87\xc6\xc2\x95\xed\xd2\xb7\x08\x47\xf7\x7f\x2e\x57\x7a\x61\x41\x88\x1e\xd5\x99\xb3\xff\xf5\x12\x16\x3c\x71\x2b\x7c\xcf\xbf\xa6\xb7\x02\x6c\x75\x4f\xb7\xdd\xcd\x5b\x4f\xf8\xee\x53\xef\xd1\xf5\x60\x19\x41\x7b\xa3\x91\xd7\xed\xdb\x9d\x0c\xe8\x2f\x75\xf9\x29\xd5\xb7\x8a\x26\x90\x9f\x25\xc5\xf3\x6c\xa8\x87\x31\x81\xca\xf6\x27\x17\xcd\x5b\x2d\xe9\x1f\x70\xe9\x88\x7b\x2c\x21\x35\xf7\x5f\x38\xed\x19\x7f\xf9\xec\xb2\x98\x0a\x6c\x16\x6f\x15\xf6\x53\x2c\x23\x3c\x68\x33\xbd\xfb\x58\xb9\x9d\x90\x21\x1a\xad\x9a\xae\xec\x46\x78\xa3\xbd\x25\x42\xc2\xa2\x86\x81\x67\x2b\x72\x9f\xce\x0d\x1e\x65\x81\xbf\xd0\x25\x8f\x5d\xcb\x52\x18\x10\x88\xbf\x7e\x55\xa1\x55\x9f\x70\xc2\xcb\xe4\x37\x7b\x9e\x00\xa1\xd0\xaa\x65\xed\xb9\xcf\x25\x04\x81\x3f\x16\x1d\x7f\xf1\x45\x6d\xb2\xba\x5e\xdd\x4b\xc2\xbd\x73\xf1\xc2\x29\x0d\x37\x09\x36\x97\x2d\xef\x9e\x1d\x1f\xdd\x36\x0b\xe6\x8a\xcd\x08\x66\x81\xf3\xf3\xca\x9f\xcf\x74\xae\x33\x27\xca\xd4\x3d\x87\xe5\x1a\x96\x57\xb1\x94\x0b\xdd\xc2\x3f\xf4\xae\xed\xfa\x17\xe4\x34\x8e\xfc\x91\x66\xca\x12\xca\x0a\xf9\xb7\xb8\x9c\xae\x21\xac\xac\x29\xd5\x5c\xab\x78\x8f\x90\xc9\x5f\xbc\xbe\xea\xf5\x1d\x42\x64\x6d\x57\x9e\x84\x5b\x11\x13\xf7\x2e\x5e\xd3\x52\x58\x38\xfe\x22\x2a\x9b\x21\x97\x1a\x9c\x44\xd8\xd2\x27\x97\xaa\x53\x70\x8e\xc0\xbf\xef\xcb\xe9\x77\xb1\xa9\x84\x6c\x67\xba\xe4\xbe\xec\x0c\x81\xb7\xd4\x36\x27\x30\xe2\x28\x61\xf2\x9d\x9e\xe8\xc6\x85\xd7\x08\x2f\x65\x54\x7d\x8e\x45\xdc\x21\x18\x7b\xae\x08\xff\x5f\xf0\xdd\x98\xe4\x28\xb3\xd4\x88\x70\x55\x87\xf3\x5c\x84\xf0\x79\x42\x8f\xd2\x3d\xfb\xea\xa1\x62\x42\x25\xb3\x79\xde\x7b\x93\x87\x84\xb5\x75\x0d\xcf\x8c\x1d\x5b\x08\xc3\x9c\x5b\x1a\x2b\xb7\xdd\x21\x38\x15\xcb\xcc\x73\x0e\xb0\x22\x74\x1d\x09\xdf\xe4\xb5\x25\x93\xf0\x7e\xb7\xc4\x0f\x55\xab\x50\x26\x0e\x8f\x38\x94\x29\x17\x34\x11\xe2\x57\x2a\xdf\x98\xac\x3b\x44\x38\xca\xcf\x96\x30\x65\x1c\x91\xf5\x4a\x35\x87\x95\x06\x08\x1e\x61\x8c\x25\xcd\xae\xf5\x84\xec\x57\xdf\x44\x32\xad\x73\x09\x53\x84\xa2\x42\xb8\x84\x2e\x11\xc4\x73\x6e\x7d\x95\x0f\x59\x45\x98\xf6\xee\x7e\x44\xa5\x81\x30\xc1\x27\xf1\xce\x3e\x1d\xae\x68\x26\x12\xda\x5a\x05\x8b\xa5\x54\x09\xe5\x55\x33\xf4\x0f\x99\xf7\x13\x36\xf8\x2f\x5e\xc3\x18\x7d\x47\x58\x67\xf8\x5b\xb2\xe5\xee\x3b\x42\xef\x57\x87\x65\x0a\x29\xe5\x84\x79\x96\x6b\x8a\x1c\x22\xdd\x09\xfc\xba\x9d\x86\x19\xa5\xbc\x84\xdc\xd7\x63\xdc\x5f\xe6\x6c\x27\x24\x6f\x13\x79\xe8\xa9\x20\x4f\xe0\x79\x76\xa9\x74\xd7\x74\x4e\xc2\xd3\xbc\xaf\x9c\x1d\x0d\x6b\x09\xdc\x32\x8d\xc6\xcb\x7d\x2a\x08\x56\xe6\x7b\x2c\x22\xba\xfd\x09\x61\x3b\xbd\x67\x27\x3c\xb7\x25\xb4\x5f\x3f\x31\xed\x21\x67\x15\x13\xd5\x16\x25\xe2\x75\x07\x04\x08\x53\x02\xdb\x5a\x66\x56\x67\x11\xbe\x1a\x5e\x2d\x99\x35\x0e\x9f\xf4\x88\x6f\x5a\xdc\x22\x84\x57\xb3\x5e\xdc\xb3\x1b\x54\x25\x08\xa8\x5d\x34\xcf\xd7\x49\x27\x08\x7e\x5e\x39\x50\x79\x33\x8f\x20\x94\x96\x55\x7f\x36\x2f\x9f\xf0\xe0\x20\x77\x89\xfc\xbc\x2a\xc2\x58\x8f\x67\x67\x9b\xd6\x1d\xc2\xb3\xc9\xbb\xa5\x94\xcf\x77\x12\x6e\x8a\x3d\x59\x25\xe0\xfa\x84\xd0\x6f\x64\x29\xbf\xf0\x72\x25\xa1\x86\x5b\x96\xa7\x2a\xbc\x8f\x30\xac\x36\xaf\xfd\xf0\xac\x26\xc2\xd0\x8f\x76\x65\x0b\xbd\x9b\x84\xae\xb7\x72\x9a\x07\xd5\xab\x09\xbe\xb7\x37\x27\xb6\xdc\x68\x25\x1c\xc9\xb6\x8a\x08\x34\x0f\x20\x68\x2d\xa8\xfb\xe2\xcb\x3f\xcc\xc0\xfc\xc6\xc9\xb1\xb3\xb9\xbf\xb0\x60\xd3\x75\x99\x2d\x82\x6a\x12\x84\x33\x8b\x8d\x8f\x9e\xab\xfe\xc3\x40\x03\xbb\x77\x45\x57\x50\x1a\x13\x6d\x72\x17\x1d\x1f\xee\x34\x25\x34\x74\x6b\xba\x25\x98\xd8\xd1\x44\xd9\x2e\xfc\xd2\xf9\xc3\xad\x5d\x04\x45\x7d\x7e\x2e\xa6\x3f\x18\x98\xe3\xbf\xf8\xb6\x7e\xe4\x7c\x02\xbf\xe6\xb2\xbd\x8d\x17\xf2\x98\x78\x13\x69\x33\x47\x76\xf0\x31\x21\x3b\x7d\xe8\x37\x0f\x7b\x2a\x13\x55\x7c\x4b\xdf\xa6\x0c\xf0\x10\x8a\xe4\x57\x65\x95\xa5\x37\x33\xa1\x3f\xb7\xdb\x7b\xdf\x9f\x07\x84\xb7\xdc\x09\x3d\xcf\x15\x1b\x09\xec\xf9\x17\x3f\x3f\x3c\x51\x40\xb8\x7f\x60\x85\xee\x76\x5d\x57\x42\x8f\xa7\x72\x8f\x40\x73\x39\x81\xcd\xe5\x91\x42\xf0\xda\x58\x82\xdc\x6d\x39\x95\x97\x5f\xac\x08\x79\xd9\xfe\x32\xaa\xbc\x6c\x84\x60\xdf\x4b\x86\x5a\xe7\xf2\x08\x1d\x73\xbc\x0b\xc5\x53\x2e\x12\x16\x70\x7e\x6c\x10\xbf\xeb\x40\x48\x14\xaa\xe8\x8c\xbb\x7f\x82\x50\xef\xb5\x73\xce\x82\x9f\xda\x84\x84\x3f\xa1\xe7\x12\x7e\xb4\x55\x80\xeb\x55\x6c\xc3\xdc\x64\x7b\x82\x63\xc3\x77\xbb\x37\xcd\xa3\x0c\xbc\xa9\xdd\x75\xba\xf5\x4a\x34\x81\xcd\xd6\xfe\x46\x8a\x4a\x1a\x0b\x52\xf8\x8c\x12\xff\x17\x49\x4c\xa9\x19\xa1\x22\xc6\x84\xdc\xc1\x2d\x62\x8d\xe3\x7f\xf9\x9d\xfb\xe5\x92\x57\x36\x36\x04\xb3\x0a\xbd\x39\x9a\x07\x22\x98\x13\x65\x6e\xc9\x94\xd0\x87\x8f\xaa\x98\x28\x38\x71\x3c\x56\xd9\xf0\x1d\x03\xaf\xf8\xfa\x4f\x6b\x77\x12\xfd\x03\x65\xdb\xcc\x5f\x04\x1c\x1c\xdf\x3f\x21\xdb\xa7\x94\x38\x6c\x23\x9c\x4a\x15\x0e\xe1\x6e\xdc\x40\x08\x14\xef\xab\x3e\xbb\x95\x41\x98\xdf\x1a\xd1\xfc\x33\x7f\x1a\xe1\xbc\x56\x00\x85\xef\xe1\x27\x44\x3e\x3b\xff\xec\xca\xf2\x3a\xc2\x47\xcd\x12\xc1\x0d\x5a\x05\x04\x09\x11\xad\x1f\x67\xe4\x7d\x99\x50\x9b\xfe\xc0\xf3\xc8\x01\x0d\xc2\xcf\x8f\xc2\xd2\x58\xa3\x45\xc8\xf0\x0f\x8c\x11\x54\x6c\x26\x04\x2d\x7b\xf8\x54\xe0\x7f\x50\xff\x45\x7f\x37\x4f\xc3\x7d\x26\xf2\xae\x67\x5c\xfd\x5b\x16\xf2\x5c\x14\x3f\x26\x59\x44\x28\xe3\x8b\xf8\xf1\x2a\xab\x99\xe0\x7a\x3f\x75\xbb\x4e\x40\x33\x21\x95\x7b\xda\x86\x9e\xf1\xe2\xd5\xe6\x7e\x69\xb9\xd8\x2b\x26\xec\x16\x49\x84\x6e\xc9\x6b\x26\x4c\x7b\x54\x13\x17\xf7\x81\x49\xe0\x3a\x91\xd8\x99\xfd\xcc\x98\xb0\x55\xec\xa3\x99\x59\xa6\x03\x41\xba\x7d\xa4\xa9\xe3\xc5\x14\xc2\xa2\xf4\x8d\xf6\x3b\xb6\x95\x32\xa1\xe5\x97\x76\xcb\x49\x62\x35\x61\x74\xdf\x6a\x0e\xc5\x8e\xf6\x0a\x94\xe7\x7c\x23\x83\x62\x6d\x9a\x00\xff\xb3\xd1\x35\x3f\x2b\x02\x09\x57\xbf\xfc\x4e\x3e\x9f\x21\x40\xf8\xc5\x19\xb4\x44\xa7\xa3\x8d\x30\xcc\x9b\xfb\x2d\xf4\xd4\x03\xc2\x40\x94\xca\x0d\xb7\xb9\xd7\x08\x8e\x39\xa1\x3b\x5a\xb6\x1f\x21\x98\xdb\xcc\x3f\x73\x3b\x70\x37\xc1\xc3\xfd\x69\xa2\xfd\x25\x2b\x82\xa2\xdb\xc5\xd0\xc6\x93\xc6\x04\x4d\x11\x8e\x6b\x3f\xaf\x5d\x23\xe4\x1a\x94\x44\xa5\x32\x47\x19\x98\x7f\x48\x70\xcb\x57\xcb\x5c\x42\xc4\x3d\x85\x80\xff\x0b\x04\xd4\x43\x64\x17\x8b\xbb\xb0\xe0\xfe\xd6\xc4\x90\x35\x3d\x51\x2c\xa5\xac\x60\x56\xfa\x9c\x53\x5a\x84\x4c\xe6\xcf\x3d\x4a\x1e\x4c\x42\x64\x6a\xff\x8e\x97\xeb\xf2\x09\x29\x05\xb7\xbb\xae\x32\x62\x08\x03\xd3\xac\x64\x3c\x2b\xb2\x09\x73\x53\xd5\x7c\xf5\x97\xbc\x26\x14\xfa\xd6\xdf\xd1\x78\x79\x8a\x70\x49\x20\x4f\xd4\xdf\xf0\x14\x21\xc3\x8f\x21\x16\x9c\x7c\x8a\xb0\xa7\x3e\x5b\x53\xe6\x76\x22\x81\x59\xc4\xc9\xa6\xd5\x93\x49\xd8\xdb\x63\xdc\xc3\xbe\xf2\x08\x61\x44\x26\x65\xd6\x9b\x7b\xfa\x2c\xc8\xfb\xb2\xe4\xc3\xbb\xd4\xde\x0a\x34\xcd\x7f\xf4\x5e\xaf\x61\x33\x41\x4f\x6a\xfe\xc2\xe8\x15\xf9\x84\x59\x3b\x95\x65\xc7\x32\x9a\x09\xc1\x2f\xdf\x6c\x8b\x90\xa9\x23\x04\xd5\x14\x4c\x2b\x68\x8f\x21\xdc\xde\x7f\xa5\xe1\xce\xe0\x76\x42\x6b\xcd\x73\x7a\xe6\xbd\x9e\x60\xa6\x26\xa2\x5f\xbd\x5f\x95\x30\x60\x3a\x6d\xbb\xd0\x68\x32\xa1\xf6\x67\x8b\xf3\xfb\xba\xf7\x84\x93\xc3\x26\x67\x04\xd3\x5e\x30\x91\x3b\xf8\x6b\xe8\xaa\x49\x2d\xe1\x65\xfa\xcf\x26\xb5\x8c\x10\x82\x1e\x73\x5a\xd8\xf4\xe3\x09\x84\xbd\x55\xe7\xfe\x6c\x89\xde\x46\x58\x62\xc9\x7f\xb6\x26\x4d\x86\x70\x49\xf6\x81\x6a\xb2\x86\x07\xa1\xff\xa4\x54\xaa\x61\x86\x0b\xc1\xcd\xe3\x17\xfb\xcb\xf1\x47\xcf\xfd\xf7\xf6\x54\x2d\x99\x24\xc2\x3e\xc9\x55\x1b\x1f\xce\x4f\x22\xf4\xe1\x99\xed\xbb\xf1\x23\xf1\x7f\xe5\x3f\x30\x38\x8e\xf8\xbc\xf8\x6d\x45\xf0\xcb\x7e\xf3\xbb\x55\xdc\x9e\x10\x79\x78\xc5\xd6\x40\xb5\x75\x84\xda\xdc\x33\x57\xca\x42\x12\x98\x13\x85\x7b\xe3\xe5\x75\x42\xc1\x8a\x84\xb8\xe1\xf2\x6a\xc9\xf1\x47\x8f\x27\xd7\x78\xe9\x58\x81\x07\xfd\x03\x8f\x23\xc3\xce\xc4\xec\x13\x20\x28\xbc\x10\x3a\x29\xc8\xf0\x25\x5c\xbd\xf7\xf9\x8d\xdb\x24\x77\xc2\x8d\xac\x49\xd3\x1d\x2b\xd7\x11\xdc\x37\xec\x94\x9e\x61\x65\x49\xb8\xeb\x7b\xae\xd0\x66\x48\x90\xe0\xe9\x78\xf3\x15\x77\x4e\x1a\xe1\xe5\xb4\x2b\xb5\xeb\xa3\xb4\x58\x50\xc2\xe0\x7c\x75\x22\xe3\x4e\xc5\x04\x78\x42\x8b\x45\xbb\xaa\xca\x09\x1f\xeb\xbd\x34\x73\x2b\xcb\x69\xa2\xfc\x59\x7d\x7c\x52\xf7\x38\xf6\x76\x36\x0d\x25\xea\x1f\x62\xe2\x23\xef\x05\xd3\x99\x11\x92\x04\x65\x9b\xe2\x45\x3a\x95\xd1\x84\xb0\xe3\x8e\x46\xdf\x3f\x44\x13\xf6\x9b\x5d\x71\x96\x9a\xd2\x44\x28\x9a\xf4\x94\x79\x68\x6f\x01\x21\x6d\x56\xbf\xe1\xab\xc6\x46\x42\x40\x45\xdc\xda\xc4\xba\xc3\x84\xf7\xbd\x3b\xca\xad\xf9\xaa\x09\x82\x7b\xdc\x8a\x85\xb2\xc2\x99\x30\x50\x6c\x64\xf7\x4b\xaa\x26\x4c\x0f\x5d\x67\xa0\xf6\x31\x8f\xe0\xa5\xd2\xd6\xf8\x17\xe9\x57\x2b\xbb\x98\x5e\x09\x84\x36\xaf\x46\x05\xc5\x0b\x45\x4c\x9c\xdf\x51\x9d\xb9\x21\xf6\x07\x03\xad\xda\x45\xa9\xae\x33\xaf\xd0\x04\x94\xae\x9f\x5c\xa5\x63\x9e\x49\xff\x18\x71\xef\x5b\xe4\x25\x69\xba\x8e\x05\xef\x02\x9e\xdd\x67\xe6\xce\x64\x4e\x94\x39\xeb\x5e\x1c\x51\x2b\x17\x21\x4c\x15\x11\x18\xf5\xe6\x1d\x66\xc0\x2b\x23\xe3\xae\x37\xdb\x02\x42\x67\x40\xe5\xca\x7b\xfb\x94\x09\x3f\x3b\x7f\x1b\xb0\x67\x3f\x24\x68\xad\xcc\x6f\xd9\x7a\xf4\x04\x13\xc3\x46\x27\x85\x9e\xa6\x7b\x13\x4e\x2b\xca\x2d\x14\x59\xf9\x94\xa5\x98\x1e\x9b\x9c\xf6\xe8\xc3\x76\x26\x94\x42\x8c\x52\xe6\x97\xe8\x12\xe4\x4e\x1f\xfc\xc5\x9d\x55\x48\x38\x18\xa6\xbf\xc7\xaf\xde\x95\xe0\xfd\x93\xf3\x45\xca\x25\x57\xc2\xf6\x8d\x95\x5f\x96\xe4\xdb\x13\x8e\x9e\xd6\xee\x7e\x50\x69\x4d\xf0\xfe\xee\xb2\xd9\xe1\x93\x0c\x61\xec\x67\x9d\x5c\x7d\x43\x18\x41\x6b\x47\xa7\x09\xcf\xe6\x78\x26\xa2\x2a\xb3\x4f\xfa\xbf\xdf\x46\x58\x7a\xe5\x64\xd8\x95\x8d\x57\x08\x52\x32\x9a\x0e\xf3\xcc\xbd\x08\x55\x6f\x64\xf6\x54\x7e\x3b\xc3\xc4\xf7\x33\x97\xb9\xc3\x93\xc7\x8f\xc4\xff\x07\x74\xe1\xf4\xe2\x37\x3f\xb8\x99\x58\x6e\x2c\xba\x26\xf7\xfd\x2e\x42\xcb\xd1\x6d\x4b\x7e\xcd\xdd\x40\x10\x39\x84\x77\x1b\x94\x2e\x30\xb1\xf8\x76\xeb\xb6\x97\x6e\x46\x04\xf5\x82\x20\xd7\xb2\x74\x43\x42\x6a\x56\xa7\xee\x31\x41\x0e\xc2\x95\x69\x46\xaa\xbb\xe4\xd4\x09\xb2\x37\x0b\xdf\x68\x2b\xa6\x10\xd6\x26\x3e\x5b\xa0\xfa\x76\x26\x61\xeb\x83\x90\x29\x97\x34\x42\x99\x90\x7c\x43\xb9\x3c\xb5\xf1\x4c\x78\x07\x97\xda\xca\x88\x6c\x22\xb0\x33\x77\x9a\x34\x30\x14\x08\x43\x69\x91\x21\x0b\x57\xea\x12\x12\xd6\xf1\x27\xe7\x3b\xab\x13\x7e\x73\x3c\x51\x3a\x6e\x3e\xc4\xc0\x2f\xdf\x4f\x17\x22\x2d\x0b\x09\x07\x2a\xcd\x0f\x5f\xdd\x90\xc0\x44\xf1\x68\x75\x9d\x6f\x8a\x2e\xc1\x88\xaf\x7b\x34\xe8\x78\x2f\x03\x8b\x54\x9c\xf3\xcc\xfa\xe7\x13\x94\x99\x8f\xd8\x5d\x3b\x17\x13\x86\x36\xfd\x28\x8f\x8c\x11\x22\x44\x14\xcf\x6e\xfd\x56\xaf\x47\x18\x4c\xb9\xcf\x99\x9f\xf7\x85\x01\xde\x97\x87\x25\x16\x3e\x4c\x25\xd8\xcd\xf2\x7a\x61\x3f\x55\x94\xd0\xec\xe2\xe8\xf3\x70\x6a\x1a\x0b\x5c\x0f\xe5\x36\xfc\x2f\xce\x0c\x1f\x39\xf7\x17\x8a\xeb\xf2\x77\x45\xdf\xdb\xf1\xff\xc4\xd9\xdc\x22\x8e\x0e\xb9\x2b\x84\xcd\x77\x8f\x1a\xfd\x2d\xbf\xb6\x9f\x2e\xd9\xf0\x7b\xef\xff\x37\xcc\x2f\xf4\x58\x94\x17\x3c\x8b\x70\x5d\xe4\xc4\xf3\x23\xb3\xab\x09\x87\xc6\x7a\x14\x53\x36\x3a\x11\x54\xee\x2a\xde\x8e\x9b\xcc\x24\x24\xad\x11\xa8\xb7\xb9\x53\x4e\xe0\x3d\x15\xd6\xda\xb2\xbb\x9e\x60\x37\xe9\xf1\xee\xf8\xf1\xd1\x7f\x6b\xf4\xbf\xbe\x72\x55\x5b\x21\x42\x08\x8c\x3a\x33\x8f\x33\x34\x90\x10\x2e\xcc\x96\x3f\xd9\xde\x85\x30\x6b\xc7\xe4\xfa\xd8\xe9\xab\x09\x7b\x76\x86\xea\x4f\x1e\xda\x4f\x50\x4a\x58\x51\x50\x7f\xce\x87\x89\x96\xdf\x3f\xbe\xff\xb1\xb1\x22\x08\x3c\xa9\x5b\xcf\x95\x6c\x42\x58\x74\xe2\xfc\x97\x87\x45\x16\x4c\x88\x66\x6e\x92\xdd\xb9\xc2\x89\xe0\x39\xd5\x32\xe7\xda\x13\x79\x42\x9a\xd9\x70\xd6\xd5\xed\x9a\x04\x3e\x2d\x58\x36\x59\x2c\x20\xec\xff\x34\xaa\x22\xa3\xeb\x41\x90\x7a\x34\xc4\xac\x11\x37\x27\xac\xf2\xb6\xf4\xcc\x10\x08\x27\xa8\x7b\x76\x2c\xb0\xae\xd5\x22\x04\x4a\x0b\x9d\x57\x5a\xa2\x4e\x60\x4e\xeb\x5f\x5b\x7a\x40\x95\xb0\x28\x82\xac\xf7\x4a\x69\x12\x66\x70\x44\x3f\x57\xf3\xf9\xc1\x00\x4f\x72\x8c\xe2\x21\xd3\x7a\x06\x0e\xd8\xfa\x2d\xfe\xac\x2c\x44\xe0\x17\x0c\xe2\xd7\x5d\x6d\x40\xa8\xfc\xe4\x50\xa1\xfe\x7a\x21\x41\x31\xdf\xbc\x68\x73\xaf\x34\x61\x63\x8d\xef\x03\x7e\x01\x5e\x02\xf7\x4c\x4e\xad\x53\x8b\xd6\x11\x3c\xef\xe7\x5f\x0f\x88\x56\x23\xc4\x14\xb4\x09\x9f\xfb\xe3\xc6\x02\xe3\xa6\xac\x37\x11\x86\xab\x08\xa7\x0c\xb2\x14\x62\xac\x34\x09\x23\xcc\x39\x77\x8c\x5b\x0d\x08\x3b\xe5\x5f\xe5\xbc\x71\xe6\x24\x34\xab\x34\xab\x5e\xae\x5a\x4a\x30\xbb\xfd\xa3\xfb\xbb\x50\x0d\x61\xc9\x9a\xd8\xa5\x6f\x6c\x12\x09\x9b\xcb\x33\xe6\xfd\x38\x54\x41\x98\x79\xe6\x52\xd7\x3d\xad\x62\xc2\xa3\xc8\xa9\x8d\x8a\x62\xa1\x4c\xe4\xed\x51\xd2\x91\x57\xad\x23\x78\xba\x7f\x30\x8f\xb6\x35\x25\x68\x8e\x1c\x56\xce\x0f\xcf\x24\x28\xaf\x97\x4b\x1e\x48\xd9\x44\x58\xf8\x2b\x7b\xc6\xc6\xd8\xeb\x84\x68\xfb\x1e\xcf\xa4\x2c\x26\xe1\x5a\xe7\xb1\xed\x5f\xfa\x2b\x08\x79\x67\x75\x7e\xea\x65\xe6\x10\xee\xd6\x17\x2f\xff\x3b\xca\x0e\xaf\x09\x0a\x1f\x3a\x46\xb8\x3e\x7d\x65\xf6\xc3\xf4\x22\x26\x1c\x8f\xe5\xcc\x5b\x7b\xa4\x98\x20\xfb\xf5\xb4\x56\xfe\xa9\x5c\x82\xad\x8c\x50\xea\xd7\xcd\x57\x09\xa6\x71\x4e\x15\x6f\x4a\xbd\x08\xc3\x35\xbd\x8d\x65\xe7\xd5\x09\xd6\x3e\x9b\xa6\xa4\xb9\xcf\x27\x2c\x79\xf7\x60\x8a\x84\xc3\x22\xc2\x63\x1b\xd7\xe3\x81\xcb\x39\x09\xfc\x36\x87\x4d\x4e\xb5\x26\xb0\x80\x9d\x36\xe4\x3a\xdc\xfd\xc6\x40\xe3\x8d\x1f\xb7\xf8\xce\xef\x21\xd4\x09\x1c\xd8\xbd\xbe\x7b\x05\x41\xe4\xca\xa8\xb4\x67\xbb\x25\x4b\xf9\x0f\x6a\xb7\x54\x3e\xf0\x2c\x56\x20\xbc\x9c\xb4\x69\x97\xf6\xd2\x36\x26\x1e\x1d\x58\x11\xff\x74\x5b\x1d\xe1\xd7\xee\x4a\xff\xdb\xa7\x64\x08\xc7\x6d\x9e\x4e\x9d\x73\xcf\xe8\x5f\x30\x31\xb9\xfc\xfb\x6e\x80\x34\xa1\x49\x99\xa1\xdc\x93\x2a\x46\xc8\xb7\xd6\xe0\x6c\x5d\x52\x42\x18\x3a\x53\xa3\xf2\xde\x64\x1b\x13\xdb\xf8\x9f\x0d\x16\xce\x9e\x45\xb8\xfd\x73\xea\xf6\xea\xb5\xf6\x84\x12\xf1\x0c\xd9\x5f\x93\xf4\x09\x05\xa7\xf4\x6f\x86\x44\xe6\x10\x98\x0d\x5e\x0f\x0f\xfe\xc5\x42\xbb\xca\xfc\xfd\xb7\x09\x57\x56\x95\xbe\x2d\xdd\x3e\x85\xa0\x58\xf5\x5c\xab\xe3\x71\x0c\x13\xbf\xed\x76\xfc\x29\x51\x28\x23\x50\x02\xff\xb0\xf7\xb2\x13\x84\x4f\x4e\xed\x5f\x7a\x8f\x1f\x22\x9c\xda\x2e\x2d\x23\xfe\xca\x92\x20\x2a\x9f\xb0\xa7\x90\x96\x13\xd6\x06\x9f\x95\x8a\x7a\x79\x8d\x90\xa8\x1e\xfa\xe0\x91\xf1\x12\xc2\x63\x1e\xd7\x45\xcd\xa9\x9f\x18\x13\x08\x9b\x22\xb3\x3d\xc7\xde\x8c\xfe\x01\xd9\x4a\xbb\xee\x07\x86\xbc\x04\xad\xc3\xdd\xbf\x2d\xb9\xab\x09\x6b\xf8\x8e\x3d\x79\x22\xa6\x47\xe0\xd3\x17\x39\xf7\xe4\xf3\xd3\x0a\x28\x2f\xb1\xd9\x7f\x2c\xe2\x1c\x41\xb2\x65\xad\xb4\xef\x95\x31\x82\x73\x86\xa2\xf9\xdf\xf2\xdf\x48\xfb\x38\xef\x5e\xb1\xc2\xdf\x0c\x84\x9b\xbc\x95\x55\xd9\x92\x47\x78\x5b\xeb\x3c\xc3\x95\x4f\x9f\xf0\x99\xf3\xc1\x52\x9d\xfe\x60\xc2\xf5\xcf\x6f\xb5\x54\x57\x88\x11\xde\x5f\xba\x1a\x3e\xea\x7a\x9d\x39\x51\xec\xfd\x97\x71\x1a\xd9\x3f\x60\x60\x74\x81\xee\x85\xd9\xe1\xe2\x04\xe6\xaf\xc0\xcb\x50\x8d\x61\x41\x67\xea\xfa\x8f\x83\xed\xc2\x84\x7c\xb3\xa9\x0f\x17\x71\xca\x12\x52\x7b\xdb\x73\x8f\x9e\xd7\x27\x54\x8d\x9c\x38\x55\xba\x60\x1e\x61\xdb\xd2\x8b\x9b\x1b\x4a\x88\xa5\x04\x7c\x69\x15\xe4\x67\x3f\x43\x98\x61\xb1\x79\xa8\x5f\xed\x0c\x4b\xb1\x28\x15\x8d\x9d\x5b\x78\x9f\x81\x83\x0f\x4e\x7e\x55\xe0\x78\xc3\xc0\xae\xe7\xdf\xc6\x38\x0d\x03\xe9\x1f\x30\x7d\x25\xe8\xef\x3a\x38\x7e\x9c\x13\xe7\xd0\x48\x5d\xbb\x82\xe0\xb2\xce\xdb\x70\xfe\x7a\x09\x82\x7e\x4f\x8b\x8a\xa9\xea\x64\x42\xf7\x17\x75\x9b\x70\xdb\x40\x82\xe5\x31\xf6\x62\xb1\xd4\x75\x84\xd0\xe3\xdf\xc3\x53\x5b\x36\x33\x31\xc5\x76\x30\xe7\x76\xb2\x35\xc1\xa8\xaf\xf9\xa0\x6d\xe5\x22\xc2\x72\xed\xec\x4f\x33\xbf\x0b\x11\x32\x22\xb5\xde\x07\xa8\xac\x22\xcc\x92\x7a\xa1\x90\x50\x21\x42\xd8\x2a\x2b\xbc\xdd\xc5\xae\x91\xb0\x8f\x8b\xdf\xe4\xa9\x71\x0f\x13\x05\x85\x5f\x57\xa9\x39\x3c\x26\x34\xa5\x69\x8e\x99\x0b\xdf\x24\xdc\xbf\x35\x72\xdd\xbc\x77\x2f\xa1\x9f\x77\x8a\xda\x95\x46\x57\xc2\x9e\x14\xcf\xc2\x4d\xb3\xd2\x08\x5a\xa7\x1b\x77\x88\xe8\x9c\x24\x3c\x96\x3a\xf8\x4e\xc5\xf9\x16\xe1\x88\xb7\x74\xbe\x98\xa2\x24\x21\x70\x51\xe7\x89\xad\x4f\x8b\x08\x17\xb7\x87\x1b\x7b\x8c\x23\x5b\xe3\xf9\x6b\x63\x97\x2e\x06\xb6\x0a\xcd\x7d\x7a\xd5\x8c\x8d\x60\xe6\x64\x10\xa3\x3a\x68\x4e\xb8\x37\xed\xe9\x36\xbe\xe8\xb5\x84\x68\x03\x23\x09\x47\x27\x1d\x82\xd6\xdc\x21\xeb\xf9\x1f\xf5\x58\xb0\xca\xe7\xdb\xa5\xf9\x06\xc3\x0c\x28\x36\x48\xdc\x6c\x6a\xce\x20\xb4\xdd\xfa\xba\x4e\x75\x64\x1e\xe1\x5b\x8f\xad\x9b\x02\xd6\x13\x4e\x2c\xfd\x5e\x5b\xdb\x61\x45\x30\x58\xf3\xf0\xed\xc9\x16\x59\x82\xcb\x9e\xb6\xfc\xcb\xc7\x8c\x59\x4a\x9b\x5c\xe2\xd5\x4a\x07\x26\x81\x6f\xb7\x6a\xd7\xec\x96\x01\x26\xcc\xf4\xbc\xdc\xef\x8c\x97\x52\xc9\x4a\x37\xf9\xd9\x9f\x19\x13\x50\x1f\xec\x77\x95\xed\xcb\x25\xac\x95\x7c\x78\xd2\x71\x38\x97\xd0\x83\xfd\x87\xda\x9d\x6b\x08\x73\xb5\x0f\x4f\xf5\xbe\x76\x9f\x10\x5b\xfb\x30\xc0\x61\x7c\xb4\xfe\xe2\xcd\x66\xc7\x62\x2b\xc2\xb2\x80\x1f\xaa\xa2\x89\x3a\x04\xde\x82\x07\x55\x9d\xb3\x6c\x58\x60\xf0\xa9\xcc\xad\xb8\xdb\x82\xa0\xee\x68\xb5\x7c\x4a\xdc\x24\xc2\xcb\x60\x55\xd3\x6a\xa1\x2f\x0c\xac\x56\x1a\x0e\xba\x76\xfc\x16\xe1\x54\x13\xa7\xfd\x81\xf6\x4c\xc2\x39\x97\xc7\x86\x4d\x19\xf5\x4c\x64\xfb\x9e\xd9\x93\x33\x3e\x7a\xa7\x31\xa3\xcf\xc8\x48\x91\x00\xbf\x75\x02\xb6\xf5\x7b\x08\xc6\x1b\x2f\x98\xe7\xf7\xba\x11\xa2\xd7\x07\xc7\xbf\x92\x97\x25\x18\xf5\xc8\x6b\x7d\x53\x32\x67\x22\x62\xb1\xb9\xf3\x62\x17\x6d\xc2\xad\x5b\x8e\x47\xb7\xcc\xe5\x61\xc1\xee\xd5\x5b\x97\x99\x14\x1a\xb3\x60\xd7\xce\xde\x83\x62\x73\x1a\x2a\xd0\x93\xb4\x2a\x3e\xe8\xad\x29\xa1\x25\xa3\xcb\xe0\xde\x37\x56\xdc\xbd\x30\xf7\x8f\x2c\x2f\x2f\x61\xff\xe9\xd7\x4a\xa9\xd9\x71\x84\x1b\xa2\x2b\xba\x1c\x8f\xbb\x12\xe2\x5f\xd8\xd6\xcc\xcc\xb0\x21\x24\x70\xe8\x30\xc6\x7c\x04\x08\x47\x0d\x95\xc2\x0e\x7e\xf6\x21\x8c\xdc\x8f\x93\x56\x73\xda\x49\xf8\xc0\xa5\x26\xf9\xbc\x5d\x9f\x60\xf1\x44\xe3\xe9\x70\x8c\x1e\xc1\xf8\xad\xe2\xb3\xf4\x73\x63\x0c\x08\xde\x60\x70\x66\x16\x69\x10\x82\xe9\x10\x97\xf7\xc5\xf5\x2c\x78\xb3\xde\xdd\x26\xb0\x58\x9d\x20\x26\x50\x53\xb9\xaf\x4f\x89\x70\x7b\xe6\xfd\x45\x9f\x06\x67\xb3\x20\xfa\x59\x42\x7f\x72\x06\x1b\x0b\xe4\xd8\x6c\x1f\x2d\x7d\xe4\x48\x48\x92\xa8\xe6\x98\x32\x64\xc6\x82\x05\xbb\x2e\x69\x5f\xf9\x63\x4b\x38\x26\x13\xb8\x16\x9a\x76\x84\xa8\x79\x12\xd6\x6e\xce\xa6\x2c\x60\x9e\xcd\x28\x2d\x59\xbf\x9d\x60\xd6\xcf\xeb\xd3\x26\x33\x9b\xf0\xd4\x3b\xa3\x5f\x4e\x8c\x8b\xc0\x29\xd7\xe2\x78\x75\xc9\x34\x42\x17\x6f\xd4\xba\x0f\x33\x04\x59\xa0\x38\x72\x5f\x8f\xb8\x8e\x12\xee\x0d\x64\xdb\x3f\x1f\xbc\x56\x01\xf9\xaf\xbf\xd7\xcc\x8e\xfc\xc5\x98\xc0\xb9\xdd\x02\x1e\x22\xd6\x53\x08\x1a\x8c\x19\xc5\xcc\x9c\x62\x06\x0e\x55\x5f\xd6\x15\x6f\x35\x21\x70\x08\x35\xed\xed\x0c\xd4\x63\x41\x47\x8b\x01\x3e\x08\xcb\x13\x22\x25\x2e\x18\x5b\x7e\x17\x61\xc1\x82\xc3\xaa\xba\x87\x4c\xc4\x09\x79\x87\x76\xc5\xd9\x55\x2a\x10\xd6\x85\xc5\xd3\xb7\xce\x75\x84\xa5\xe9\xf7\x3e\x5f\x77\xda\xc2\x02\x73\xeb\x7b\x7e\x37\x0b\x36\xb1\x60\x50\xf9\xa8\x8f\x11\xaf\x09\xe1\x48\x40\xff\xae\x56\xb9\x32\x96\x91\xe6\xb5\x60\x61\xb6\x2b\x5a\x2c\x78\x27\x6a\xe1\xb4\x35\x4a\x85\xf0\xde\x76\x3e\x57\xe4\xb2\x51\x06\x06\x18\xcb\xf3\x6f\x4f\x9d\x45\x78\x3a\xdd\x53\xcb\xfd\x9a\xd5\xbf\x70\xf2\xc1\x89\x87\xfc\xed\xbc\x04\x83\xf7\x29\x8d\x45\x5a\x75\xcc\x89\xf2\x1f\xa4\x3f\xad\xac\x5e\xce\xfb\x96\x81\x13\x49\xc7\x0d\x6e\x1e\x8c\x63\x82\xe7\xd4\xd2\x07\x2b\x05\xcb\x08\x93\x2f\x4d\x1a\x3e\xc9\x57\x46\xa8\x56\x1d\xa8\x0b\x59\x5d\x48\x30\x48\x30\x0e\x38\x56\x78\x8b\x70\x21\x3f\x52\xd1\x74\x7c\x4d\xe7\xc8\xe9\x8e\x70\x59\x53\x16\xa8\x74\xed\x28\x4b\x96\x7c\x52\x81\x4f\xbf\x66\x2a\x6a\xdc\xda\x43\xf8\x7a\xf2\x82\xaf\xfa\xe8\x18\x03\x5d\xf6\x7e\x9b\xf8\x9d\x17\xd0\x04\x02\x0d\xa5\x1a\xf6\x9d\xe8\xa8\x40\x7d\x5a\x9a\x9d\xda\x79\x27\xc2\xe6\x4d\xe2\x95\x8b\xe6\x1a\x12\x5a\xba\x1f\x9e\xda\x5f\xaf\x46\xb8\xd1\xda\x99\x55\x79\x39\x9a\xa5\xd4\xc4\xce\x96\xf4\x8a\x78\x59\x81\x05\x27\xd6\xe5\x46\x3f\x49\x25\xd4\x0d\xcf\x90\x28\x59\xb1\x82\x30\xda\x9a\xd3\xe1\x33\xba\x88\xa0\x39\x87\xc7\x55\xf6\xb0\x2b\x21\x5d\x2c\xf8\x0d\xfb\xb1\xeb\x15\xe0\xd9\x6a\x7d\x93\xbd\xcd\x9d\x26\xa0\x2b\x6d\x14\xfa\xed\xc5\x47\xc6\x04\x6a\xc7\xe8\x62\xdd\x95\x79\xf4\x0f\x54\x3b\x47\x67\xea\x3d\xe1\xfc\x17\x8c\x95\x6f\x9c\x39\xe7\x3b\xca\x40\xee\x12\x1c\x11\x60\xe7\x24\x28\x5e\x79\x3d\xea\x54\x3a\x8b\x05\x01\x87\xae\xc6\xff\x08\x5c\x47\xb8\x7f\x7f\xde\xae\x49\x3a\x3d\x15\x28\xf8\xc2\x73\x51\x6c\x20\x84\x70\xf3\x7c\xd5\x3c\x91\x77\xbe\x84\xbd\xd7\x6b\xc3\x25\xa2\x46\x18\x08\x78\x54\xa7\x23\x78\xdc\x86\x20\x22\x7b\xe2\xe4\x8f\x2c\xb3\x7f\xe1\xf1\xba\xf2\x8b\x5d\x3b\xfa\x18\x78\xaf\x37\xf4\xed\xce\xa1\x0d\x84\x13\xa5\x02\xf2\xd6\x4b\x8c\x08\x55\xcb\x5a\x5a\xb7\xa9\xea\x11\x62\x3e\x9a\x6d\x3b\xba\x73\x2b\x21\xd2\x3f\xb0\x6c\x92\xb0\x2d\x0b\xfc\x1c\xf6\xb5\xb5\x5a\x1b\x11\x8a\xce\x7a\x69\x3e\xf9\x22\xcd\xc4\xbe\xc9\xed\x1d\xfb\x1f\x28\x10\xf6\x8b\x7d\x16\xdb\xb6\xa3\x84\x09\xc9\xd4\x27\x3c\x43\x9f\x24\x09\xe2\xa7\x44\x4f\x7e\x4d\x7f\xc4\x40\x76\xc7\x9d\xc1\x24\x7b\x13\xfa\x07\x9e\xdc\xce\x09\x10\x93\xdd\x47\xb0\x58\x7a\xf2\xb4\x55\xf5\x4e\xe6\x44\xf9\x0f\x9a\xad\x8b\x3c\xef\x39\xef\x26\x70\x6c\xb8\xf3\x8a\xeb\x83\x39\xe1\x8c\x68\x52\x6a\x8b\xfc\x4c\x82\xf1\xed\xde\x59\xaf\x32\xb5\x58\x70\xeb\x52\x51\xee\x7c\x7b\x25\xc2\xd9\xe0\xd8\x1d\x3f\x1a\xa4\x58\xb0\xae\x54\x73\xfa\x50\xb4\x0a\xe1\xb5\xeb\x86\xe9\xb2\x1d\x32\x84\xd4\x7b\x8c\x13\x3b\x86\x92\x19\xe8\x9a\xaa\x94\xa5\x24\xb1\x8a\xd0\x2a\x1a\x2c\xc6\xb6\x7a\x1a\xc1\xc8\x7b\x35\x6f\xd6\xd1\x8d\x04\xde\x03\x6f\x6b\xd6\xc8\x8a\xb2\x20\x2e\x50\x29\x4f\xd1\x49\x8f\xf0\xee\x7b\x41\xa1\xa8\x99\x05\xe1\x55\xc7\xa8\xff\xea\xc4\xe5\x84\x3c\xf6\xc9\x2b\x63\x8b\xf9\x09\x71\x5d\x92\x6d\x29\xfc\x0a\x84\x12\xef\xb3\x41\x47\x6c\x0c\x09\x8a\x77\xbc\x3d\x17\x70\x7d\x65\xe0\x6e\xbe\xeb\xde\xa8\x21\x43\xc2\x39\x6b\xce\x1d\xcf\xbc\x4d\x08\xb9\x03\x39\x9b\xd2\xda\x35\xe8\x9b\x65\x5a\x9f\x57\x88\xdf\x7f\x9f\xf8\xf0\xe1\x35\x5b\xf6\x6f\x41\xc2\xeb\x05\x2b\xef\x6e\x9a\x54\x43\xb8\xc4\xb9\xff\xd9\x8a\x8b\x77\x18\x48\x6e\x6d\x35\x9d\xfa\x3a\x96\x26\xa0\x79\x47\xa6\x31\xea\x90\x27\xe1\x68\x95\xd1\x13\x1f\xf9\x9b\x0c\xb0\x4b\x6f\xe3\x91\xe2\x18\x61\x40\xbb\xb2\xda\x69\xf6\x5d\x3b\x9a\x40\x96\x8f\x58\xd0\xb2\x98\xfb\x15\x30\xd1\x9b\x95\xf7\xe5\xac\x11\xc1\x78\x72\x43\xeb\x89\xca\x79\x84\x2f\x19\x7a\xde\x35\x3a\x9f\x19\x28\xdc\xb9\x3b\x51\xe8\xe3\x72\xc2\xd9\x5f\x6c\x2b\x0d\xde\x9e\x26\xec\xe0\x67\x57\x1c\x9c\xaa\x42\x70\x66\x0e\x3c\x11\xe2\x1b\xdf\x73\x5c\x57\x9d\xf7\xce\xae\x22\x64\xe5\xb5\x29\xfe\x8a\xb9\x41\x78\x5c\xcb\x5d\xef\xf1\xf9\x39\xc1\x9a\xe9\xc7\x6e\xcb\xdb\xc3\x84\xfc\xea\xd8\xe9\x4b\x7d\x5f\x32\xe1\x2e\x1a\xbf\xaa\xea\xf0\x1d\x42\x42\x8e\x98\x56\xa4\x48\x0d\xc1\x9c\x7d\xd2\x36\xce\xb7\x9d\x15\xf8\x5a\xa2\x69\x14\x20\x1f\x42\xd0\xe1\x53\x18\xdb\xff\x3d\x96\x70\x4e\x86\x67\x8f\x48\xe6\x31\xc2\xda\x7a\x69\x83\x7d\xe3\x23\xab\x4d\x47\x65\xcd\x1d\x2b\x09\x5c\x63\x2a\xc7\x9f\xb7\x35\x11\xea\x74\x8b\x13\xcb\x47\x2a\x09\xbf\x6e\x1c\xf7\xf8\x8b\xc7\xae\xfb\x36\x25\xb3\x1d\x23\x74\xfa\x1c\xac\x6f\x3b\x98\x44\xf0\xf7\x69\x5a\x6d\x74\x35\x83\x60\x29\x6a\xfc\xe6\xa1\x6e\x5e\x05\x0e\x44\x06\xfe\x88\xda\xb7\x9c\xf0\x8c\x43\xf4\xc0\xd7\x2a\x3d\xc2\xe5\xf6\x92\xcf\xea\xfa\xc6\x34\x31\xfa\xd6\x1f\x2b\x21\x60\x7a\x95\xb0\xc8\x71\xeb\x27\xfe\x71\x9c\x59\xce\x1f\xff\x17\x82\x0e\x1a\xfa\x6e\x96\xed\x0c\x24\xf1\x3e\x8b\xf9\xdc\x7b\x9d\xd0\x78\xe0\x86\xf3\xff\x62\x4b\xca\x64\xe6\x5f\x3c\x5b\x72\x5f\xa5\xd9\x6f\x3e\xa1\xf2\xd8\xce\x4f\xfd\x07\x8b\x09\xe5\xb7\xdc\x57\x39\x2f\x5f\x43\x30\xb2\x1a\x75\xec\xce\x89\x21\xf4\x0c\x6a\x1d\x7e\x3f\x7e\x64\xd7\xbc\x61\x78\xfc\xd7\xd1\xe5\x84\x42\x9f\xe9\xd6\xc9\x8f\x16\x13\x36\xb0\x33\x27\x25\xca\x2e\x27\x7c\x16\x5a\x7a\xac\xde\x91\x8f\x70\xfd\x92\x9b\xc6\x4d\x11\x0b\x42\x51\x7e\x51\xc3\x85\xf7\x93\x08\x85\x63\x8c\xb7\x0d\x49\xac\x78\xf8\xb3\xfd\xe5\xc6\xa9\xbf\x19\x13\x48\xd4\xfb\xc1\xbd\x45\x97\x8b\x26\xd0\xb3\xce\x44\x61\xdf\xcb\xf1\xdf\xf2\xe4\x5d\xa3\x5a\xee\xeb\x08\xb1\x4f\xe4\x36\xea\x4c\x0e\x23\xcc\xfb\x10\xc4\xb1\xe9\xe2\x6f\x06\x56\x96\xb7\x9c\xe8\x17\x7e\xc9\x80\xed\xbc\x17\x2b\xe4\x2b\x6e\x56\x80\x61\x17\x76\xdc\xe7\xa7\x07\x61\x69\x3d\x87\xd9\x0e\x67\x33\xc2\x7d\xf1\xbe\xb6\x69\xbb\x56\x10\x2e\x2b\xc7\x44\xb2\xcd\x50\x26\x6c\xd3\x51\x9a\xb4\xf7\xf0\x62\x82\xf3\x66\x21\x8f\x3a\xde\x2e\x26\xc6\x38\x4f\x9c\xa4\x52\x5f\xc2\x46\x9d\xa2\x1e\xf7\x73\x32\x04\x0c\x08\x70\x9c\xd2\x1d\x62\xe0\xcb\xb9\x25\xc9\x5c\xe9\xe6\x84\x29\x9b\x2b\xff\x9c\x89\x8c\x64\x62\xd1\xc1\x13\xab\x17\x4e\x77\x25\xac\x5d\xb2\xf1\xcf\xf4\x69\x9a\x84\x0f\x77\xce\xf1\xe9\x14\x1d\x20\xdc\x66\x77\xf5\x0a\x2c\x9e\x45\xe8\x70\x90\xe6\x9d\x73\xfd\x0f\x63\x02\x3b\xcb\xea\x56\x6d\xef\x13\x26\xac\x51\x2f\x2e\xe2\xb6\xd6\x24\xe8\xcd\x28\x6e\xd9\x7a\xef\x20\x41\x79\xf1\x8c\x10\x0e\xc9\x32\xc2\xc8\xda\x84\x26\x67\xce\x3e\xc2\x05\xfb\x8e\x25\x27\x9f\xbc\x24\xd8\x6c\xf1\xd4\x6a\x98\xfc\x8e\x10\x13\xfa\x6c\x63\xe2\xd2\x14\x02\x3e\x0c\xd7\x69\xf1\xb1\x62\xca\x27\xb3\x0c\xff\xf2\x06\x42\xde\x6f\xcf\xfa\xb1\xb7\x67\x08\xfd\x25\xd5\x21\x7c\xf3\x53\x08\x79\xbc\xf6\x4c\x86\x88\x05\x13\x4f\xce\xe8\x1b\x46\xad\xf6\x26\x68\xba\x1b\x7f\x3f\x6b\x53\x41\xf0\x7a\x2a\xd6\xf8\x17\xfb\xbe\x3e\x59\xc4\x95\xe4\x49\xe0\xad\x59\x7a\x69\x30\x6e\x29\x41\xef\x22\xc7\x1f\x0e\xd3\x55\x84\x08\xb5\x35\x6c\x2d\x72\xc2\x04\xfe\xdb\x1b\x1e\x28\x9c\xae\x24\x7c\x56\x72\x48\xfe\xd3\x72\x87\x10\xd6\x32\xdf\x78\xcf\xde\x67\x4c\xdc\x77\x7a\xa7\x5f\xa0\x72\x9a\x89\x5b\xb7\x0e\xd7\xfd\x1d\xf5\x88\x3e\x18\x4b\x53\x3e\x4c\xd0\x1b\x94\xe3\xc8\xb9\x9e\x41\x70\x3d\x3d\x12\x76\xd3\x24\x83\xd0\x67\x58\xb5\xd1\x43\x2e\x95\x65\x94\xdf\x3a\x78\xfc\x6f\xd9\x63\xa4\x96\x92\xcd\x58\x48\xe0\x9d\x1a\xc1\x76\xf4\x53\x3c\xe1\x91\xe9\x96\xd4\xbc\xe7\xcb\x08\x69\xa1\x86\xd9\x59\x06\x63\x0c\x58\x2d\xa8\x57\x33\x63\xee\x20\x70\x6d\x5c\x6c\xc5\xb7\xc6\x97\x10\x3b\x1c\x68\xe9\x12\xe5\x45\x48\x29\x11\xfe\xa3\x16\xec\x45\xe8\xaa\x79\xd4\x72\x65\xa7\x19\xc1\x6a\xb4\xed\x51\x71\xc1\x0a\x02\xcf\x4d\xc7\xc0\x87\x3c\x5b\x08\x85\x33\x52\xbd\xd9\xe7\x1a\x10\xbc\x6f\xbf\xab\x98\xce\x30\x67\xc1\x2a\x9a\x61\x34\xd2\xf0\x8b\x31\x81\xcb\x0a\x41\x6f\x5b\xe4\xbb\x2a\xf0\x2e\x58\x6e\x2c\xa4\x93\x41\x13\x38\x13\x6c\x7d\x74\xe5\x1c\x5f\x16\x18\x67\xe7\x4c\x2d\x5b\xb6\x84\x05\x03\xbd\xab\x2e\xdb\xee\x95\x63\x41\x87\x5d\xd1\xa6\xab\xab\x78\x09\x77\x85\x04\xf8\x6c\xb9\xbd\x09\x1a\xf2\xa7\x8f\x99\x29\x2f\x20\x08\x6f\x19\x71\xca\x3c\x9c\x4a\xe8\xbb\x99\xe4\x9c\x5f\xba\x99\xf0\xcd\xbd\x43\x4b\x7e\x06\x3b\x41\x6c\x44\xcc\x55\x22\xaa\x80\x09\xd3\x35\xd1\xa5\x66\x06\xc6\x84\xda\xf4\xa7\x4b\xb6\x29\xe7\x11\xe2\x97\x2e\x0e\xda\x57\xee\x4f\x40\x90\x71\xfc\x5f\xfc\x4a\x0a\x9a\x11\xd1\xff\x88\x89\x47\x1d\xd5\x26\x41\xe3\x65\x87\x8b\xc3\x05\xf7\x41\x7f\xc2\xb9\x83\x23\x49\x91\x93\x1c\x98\x10\xb9\x90\x90\x90\xe5\x1d\x45\xf8\xd8\x9f\x28\xb5\xff\xba\x2f\x13\x3b\xb7\x3e\x6d\x92\x8a\x0f\x27\x94\x46\x6d\x6e\x0a\x7e\xef\x4b\xb8\xfe\xdc\xe3\xcd\xba\xae\x34\x42\x14\x8d\x48\xcc\xed\x48\x23\x48\x5a\x72\x87\x47\x4f\xab\x22\x0c\x44\xfb\x56\xc8\x6e\x6f\x20\xbc\xb0\x37\xce\x90\x1b\xc7\x91\x7b\xdb\xe4\x0a\x8e\xde\x24\x2c\xdb\xcd\xef\x11\x58\x7d\x8f\xc0\x1f\xa5\xff\xcc\xb9\xe9\x1e\xe1\xdd\x75\xc5\x88\xda\xcb\x0d\x04\x53\x71\xae\xc4\x6b\x33\x6b\x09\x11\x16\x0c\xaf\x80\xf1\x35\x2b\x79\x3b\x37\x9e\x6f\xdc\xc5\xc4\xaf\x8d\x3a\xca\xbb\x9c\x5d\x09\xf2\xd7\x32\x9f\x2d\x2c\x0b\x24\xc4\xb5\x6d\x8c\xf2\x88\x75\xa1\x89\x91\x9f\x40\xd4\x4f\xc3\x2e\x5b\xc2\x66\xe9\xe0\xfe\xe7\x35\xdb\x08\x73\xf8\xb6\xbe\x16\x9e\xaf\x4d\x38\x28\xa0\xb1\xe8\x6d\xea\x5b\x06\x5e\xdc\xf8\x32\x33\x77\x97\x38\x4d\x20\xd9\xbe\x34\xde\x2a\xfe\x09\x03\xec\xd9\x5c\x1d\x2f\xdd\x63\x08\xd2\xc3\x0f\x2c\x47\x6e\xab\x10\xbc\xf9\xfb\x45\x7a\x6a\x82\x08\xd3\x5b\x9c\x96\xdb\xf3\x9b\x11\x5c\x77\x0d\x04\x8c\x18\xea\x10\xdc\x04\x22\x97\xf6\xcf\xe1\x27\x78\x34\x9e\x7b\xf9\xd8\x5c\x91\xd0\xa9\x28\xef\xd2\x7a\x57\x8b\xf0\xc4\xf7\xfe\xf4\xc4\xd3\x85\x4c\xec\xff\xf5\xf3\x8b\xe4\xd1\x38\xc2\x1f\x0c\x70\x5c\x6f\x2b\x20\x38\x75\xbc\xc8\xe2\x13\x4e\x62\x19\xcd\xbf\x6d\x71\xf5\x95\xc4\x7d\x82\x9b\xb6\x9d\x30\x97\x6e\x11\x41\xef\x8c\xe0\x67\x67\x93\x3e\xc2\x96\xb3\x7b\xec\x3c\x8a\x9f\x30\x51\x38\xb7\xcf\xf5\xf1\xae\x4a\xc2\x54\xaf\x77\xaf\x6e\x19\xa5\x11\xe6\x98\x38\x0a\x1c\xfc\x7d\x95\xa0\x29\xe0\x6d\x91\xdd\x92\x42\x08\xa8\xf4\xd4\xbd\xb6\x55\x8e\x70\xc9\xe6\xc9\xaf\xe9\xd6\xb9\x04\xae\xbe\x83\x52\x75\xbe\xc5\x84\x16\xf6\x9b\x1d\xe2\x03\xb3\x08\xda\x57\x8d\x4f\xea\x3d\x35\x20\xa0\xad\xb1\xc1\x57\x2e\x8b\x39\x51\x54\x79\x27\xb5\x7c\x9e\xc6\x45\xc8\x79\xa7\xef\x54\x92\xa4\x44\x08\x4f\x6c\xeb\x7d\xfa\x28\x94\x70\xae\xab\x8b\xbb\xda\xb3\x84\x09\xf5\x70\xa1\xc8\xec\x37\x86\x34\x81\x0f\x99\x3c\xd5\xab\xa6\xd6\x13\x4e\x45\x49\xed\x53\x9c\x5d\x4f\x38\xc7\xdd\xb8\x47\xe5\x47\x05\xe1\xe8\x32\x29\x6b\x33\x99\x2b\x84\x94\xcf\x9b\xb5\x03\xbb\xbc\x09\x77\x0a\x87\x8f\x49\x4a\xd7\x13\xf2\x25\x76\x35\x7d\xbb\x91\xce\x04\x47\x87\xa3\xee\x13\xd7\x2a\x26\x1e\x71\x16\x3a\xe9\xae\xcc\x25\xe8\x64\x4e\x0f\xd1\xce\x34\x25\xac\x6d\x99\x95\xbf\xdf\xcd\x96\xc0\xfb\x69\x51\x8c\xda\x5d\x21\xc2\xba\x56\xb9\x40\x32\x9f\x4b\x58\xd5\x7b\xef\x80\x44\xff\x01\x26\x1e\x2a\x35\xae\xe7\x70\xb8\x40\xb8\x76\xc1\xf5\xa9\x73\x4b\x1e\x0b\x94\x76\x94\xc9\xd8\xf8\x15\x10\x94\x3a\x94\x2e\xe9\x5e\xdf\x43\x28\x3f\x9e\x73\x28\x43\x65\x3d\xe1\xec\x51\xd1\xfa\x5d\x02\x7e\x2c\xa5\xeb\xe1\x85\xc6\xe8\xca\x3d\x84\x47\x07\xea\x22\xbb\xde\x86\x12\x7a\x02\x2f\x5a\x04\x0e\x45\x12\xd6\xde\x55\x71\xae\x5b\x7d\x9a\xf0\xd5\xbf\xa7\x8e\xab\x3b\x9a\x70\x67\x58\x6a\xd8\xbf\x76\x07\x13\x74\x9d\x4b\xec\xe4\xf0\x21\x42\xb7\x53\x77\xb7\xa7\xfa\x12\xc2\xb9\x15\x9b\x93\xd3\xdf\xc7\x10\x9c\x5a\x52\x94\xc5\xe7\xa8\x11\xba\x7e\x97\xff\xb2\x5d\xdc\xcb\xc0\xb7\xac\x61\x45\xb7\x48\x7f\xfa\x07\xa2\x33\xb4\x7d\xe3\xa7\x56\x10\xec\x97\xb8\x9e\xff\x5f\x24\xac\xf5\x54\xcd\x89\x4a\x23\x70\xcd\x3b\xb8\x73\x3f\x7b\x0a\x73\xa2\xfc\x07\xf7\x8d\x75\x1a\x72\x47\xbb\x2b\x30\x6b\x97\xc7\xe2\xd1\xd5\x5a\x84\xd2\x3c\xc1\x39\x3f\x35\xb2\x08\xe2\x33\x17\xce\xa9\x32\xa9\xa9\xc0\xf3\xcf\x4b\xbb\x07\x42\x72\x08\xe9\x93\xae\xb1\xb7\xf7\xa5\x33\x27\xca\x94\xcc\x8a\x45\x93\xd6\x45\x11\xbc\xbd\x97\x2f\xde\x1a\x26\x40\x90\x0c\x5f\xf3\x44\xd0\xac\x8a\xf0\x7a\xdf\xeb\xbd\x42\xff\x03\x91\xf7\x25\xa6\x7f\xb1\xc0\x3b\xe9\xd6\x9e\xe0\xef\x0c\x9c\x88\x76\x12\xd0\xbd\x3f\x83\xd0\x5d\xb7\x53\x2b\x1d\xaa\x2c\xb8\xbe\x70\x52\x41\xe7\x91\xd6\x8a\x09\x84\x0c\xf8\x5a\xee\xfd\xb4\x9a\xfe\x81\xcc\xc9\xc2\x49\x8b\x9e\x99\xfd\x0b\x31\x6a\x61\x7e\x2a\x2f\x3f\x30\x90\x1f\xe2\xae\x6f\x2c\xa0\x44\x48\x89\x91\x52\x79\xdd\xf5\x8b\x01\xec\xf5\x4f\x8e\x99\xa2\x43\x13\x58\x3c\xdd\x77\x95\xec\x8e\x5b\x0c\x08\xad\x0d\xde\xb2\xae\x2d\x85\x70\xaf\xf8\xbe\x93\xf7\x93\x5e\xc2\xb4\x53\x76\x97\x3e\x87\xa4\x30\xa1\xbb\xff\xe6\xeb\xdc\xc3\x85\x04\x29\x81\xf0\xe6\x86\xa0\x73\x4c\x28\xbf\x9b\xf3\xca\x6b\xd2\x35\x42\xf8\xaf\x3f\xb3\xcb\x97\x66\x11\xa4\x5f\x67\xed\x94\xfa\x9d\x45\x50\x59\xee\x2e\xab\xf7\xe8\x3a\xc1\x99\x7f\xe0\x82\x53\xfb\x25\x42\xe1\x12\x99\x8d\x47\xef\x57\x32\xb0\x5e\xc5\x47\x7a\xdf\xf9\x39\x34\x81\x8a\x05\xcd\x33\x96\x85\xb7\x57\xe0\x67\xe0\x0a\xff\x30\xf3\x38\x82\x95\x84\xd1\x65\x5d\xd5\x79\x84\x47\xcc\xc8\x29\x2e\x3c\x53\x08\x1f\xbf\x78\x84\x1d\x7e\x31\x85\x20\x38\x73\x95\x99\x11\xa3\x99\x01\xb7\xca\x51\xf9\xc4\x65\x01\x84\xcd\x27\x3f\x45\x70\x78\xe4\x13\x66\x9f\x0b\xd9\xd0\xa5\xc8\x24\x9c\x09\xb9\x76\xf6\x67\xb0\x3b\x0b\x32\x62\x44\x86\xf3\x67\x0c\x31\x70\x9a\x7d\xeb\xb5\xd1\x75\x3f\x18\x38\xf0\x82\xe1\x3b\x9c\x5a\x49\x78\xb1\xda\x31\x67\x46\xef\x33\x26\x44\x12\x15\xec\xff\x96\x7c\xd1\xc0\x97\x8b\x32\x3e\x31\x26\xb0\x78\xf5\xb9\xc7\x8e\x91\x95\x04\xb7\xb2\x5d\x99\x7f\xc1\x90\x5c\xf5\x63\xaa\xca\x23\xc6\x04\x8a\x5e\xfa\xbd\x57\x60\xab\x22\x44\xcc\x34\x12\x9c\xae\x5f\x4e\x13\x25\xd9\x7d\x33\x3f\xd7\xf8\x9a\xff\x90\xf9\x5a\xbc\x3e\x34\xbc\x8a\xf0\xb4\xd4\x71\x46\xd8\x38\xfe\xff\xbf\xb4\x4d\x66\x17\xd7\xc2\xb2\x3b\x84\xd4\xfc\xb3\x1a\xff\x8b\x8c\xa6\x30\x3b\x1b\x95\x3c\x06\xda\xd6\x0d\x0e\xd0\x3d\x76\x9a\x00\x67\x48\xb1\xbd\xa2\xde\x20\x03\xbf\x67\x9f\x5f\xd9\x57\x1d\xcb\x52\x8a\x25\x45\xfa\x34\x7c\xfb\x58\xf0\x56\xec\x74\xd6\xc0\x75\x76\xfa\x07\x2c\x7e\x7c\xc9\xba\x73\x6c\x1b\x61\x28\xa2\xda\x95\x67\xcf\x14\xc2\xcf\x08\x8e\xb5\x2b\x05\x4d\x08\x26\x2b\x0f\x6e\x70\x9c\x26\x40\x28\xbf\xbb\x29\xfe\x61\x85\x11\x81\x5b\xf0\x47\x75\x5d\x5a\x35\x41\xa2\xec\xe7\xb1\xf7\x09\x69\x4c\x3c\x2c\xd2\x9d\x6e\x37\xf4\x80\xb0\xaf\xc0\xeb\x7c\x81\x8a\x17\x61\x8d\x40\x56\xc3\x80\x8c\x26\x61\x6d\xf8\x87\x98\x80\xb3\xd2\x04\xf9\xd1\x8d\x3e\xdc\x62\x85\x04\xc6\xec\x39\x0b\x12\x73\x54\x08\x66\x27\x5f\x78\x77\x05\x71\x12\xa2\xf1\x62\x9f\xb0\x43\x2d\x21\x69\x72\x6f\x15\xe7\xab\x1b\x84\xf4\x81\x9e\x63\xf2\x8a\x35\x84\xf4\xb3\xc1\x6a\xd7\xc7\xff\x4d\x9b\x54\x12\x78\x3d\xca\x8a\x58\x46\x3d\xdb\x6b\xcd\xca\xd9\xd2\x08\x7c\xc1\x61\xda\xa7\x7e\x9d\x27\x98\xe7\xed\x58\xb5\x2e\x28\x81\xc0\xac\xda\xe8\xcf\x90\x16\x21\x18\x6c\xbe\x92\xf6\x60\xee\x02\xc2\xaf\x3e\xd7\xad\x7b\xcc\x87\x19\xa8\x79\x77\xf3\x12\x9b\xd6\x7e\xc2\x74\xc1\x1f\xb6\xae\xbf\x5d\x59\x60\xd3\x18\xe2\x22\xac\x7c\x96\x89\x21\x0b\x01\x19\xd1\x4f\x91\x84\xf6\xb8\xcf\xf7\x76\x9f\x4c\x62\x29\xe7\xa7\xfb\x2b\x2f\x5b\x1c\x4f\x58\x68\x24\xdd\x5b\x24\xbf\x91\x50\xf3\x79\x78\xc3\xfb\x63\xca\x84\xc8\x7b\xae\x4e\x81\xd6\x7c\x04\xae\x88\xee\xd9\x11\x4f\xfb\x18\x78\xba\x48\x7f\xc8\x76\x75\x3a\x41\xb0\xec\xfc\x4c\x49\xbb\x74\xc2\xad\xe5\x34\x3b\xff\x52\x29\xc1\x31\x96\x79\x22\x6f\x1c\x26\xd2\xb2\x51\xf7\x2e\x96\x13\xb6\xff\x59\xfc\xf4\xf4\xba\xd3\x04\xd7\xea\xd7\x2f\x16\x37\xc7\x11\x24\xb9\x78\xdc\x73\xee\xc7\x12\xb6\x5c\xbb\x12\xbe\xe2\xf4\x69\x42\x85\xe9\xe7\xb7\x3b\xf5\xb6\x12\x64\x87\xee\x33\xee\x3f\x57\xff\x17\xb8\xd6\xa6\x05\xcb\x2a\xad\x27\x3c\xf6\xf8\x53\xb5\xcf\xf7\x15\x03\xa9\x73\xeb\x8f\xdc\xf0\xb0\x22\x04\xec\x3d\x28\x6c\xfb\x52\x97\xb0\x7d\x78\xc6\x10\x0f\x63\x1b\x21\x42\x81\x53\xb4\xaf\xf7\x3b\x03\x1c\x32\x27\x7c\x4d\x42\xe6\xd3\x04\x94\x3f\x9d\x68\x2a\x13\x99\x49\x48\x4c\xb4\x5e\x66\x58\x3f\x87\x70\x66\xe7\x64\x51\x8e\xd0\xf5\x84\xe0\x6f\xfc\x27\x6d\xe7\x3c\x65\x22\x22\x3d\x3b\x6e\xf2\x78\x69\xa2\xd3\x39\xbf\xd2\x86\x18\x70\x95\xbb\xf0\xd6\x9c\x2d\x94\xe0\xfe\xaa\x6f\x9e\xbd\xc0\x61\xc2\x46\x91\x93\x57\xd9\xd7\x3e\x21\xe8\x04\x04\x1c\x98\x32\x0e\x3d\x01\xbe\x69\x7f\xb1\x28\x2b\xde\x46\x4c\x3f\x95\xf0\xc0\xf9\xa1\x85\xbc\x59\x36\xa1\x79\xf0\x56\x20\x87\xa8\x2b\x41\x7b\x71\x8d\x6b\xd1\x98\x20\x61\xf2\xa1\xbb\x52\x93\x0c\x94\x09\x46\x6e\xb2\xcb\x47\x85\x2c\x09\x1d\xdf\xd7\xf2\x85\x8f\x69\x11\x62\x2e\x73\x6f\x38\xef\x60\x44\xb8\xa9\xf9\x54\xfd\x84\x88\x15\x41\x7c\x92\x8d\xa3\xe8\xad\xe3\x84\xe0\xcf\x6b\x7b\xe5\xd4\x38\x09\x21\xc1\x9c\x1b\x92\xcb\x85\x08\xc2\xf6\x01\xb6\x86\xef\xfb\x19\xd0\xa8\x0f\xdf\x73\xd5\xea\x0a\xa1\xf6\xa7\xdf\xe2\x33\xb9\x97\x09\xab\x1a\x0e\xbe\xff\xc6\x3f\x48\x88\x9d\x44\x8f\x9f\x9e\x5e\x4d\x70\x5f\xb1\x93\xb3\xa6\xd0\x98\x30\xf2\xd5\x32\x74\xcf\x2e\x4e\x02\x47\xe4\xee\x37\x03\x93\x12\x08\x57\xa8\x79\xd3\xfe\x62\x03\x42\x7a\x8a\xbc\x1d\x5e\xc6\x13\x7a\x16\x6b\x24\x5a\x46\xc7\x13\x7e\xb8\xdf\xa6\x96\xf6\x25\x04\xf1\xad\x91\xe9\xb3\x64\xb7\x11\xa4\xf9\x39\xb5\xef\x6c\x33\x27\xd4\x66\xae\x9c\xfe\xe5\x89\x34\x61\xd9\x59\x69\x6f\xa9\xb3\x2f\x19\x38\x9f\xd6\x24\x71\x4d\x9a\x8f\x90\xb9\x68\x43\xe4\x45\xe9\x42\x42\x67\x7e\xe1\xb5\xb3\x93\xb6\x10\xec\x0d\xbd\xe6\x3d\xb5\x59\x47\x18\x13\x0a\xa8\x58\xdf\xb3\x9a\x20\xfd\x43\x71\x09\xc7\x9b\xa7\x4c\x48\xee\x55\xda\xf5\x5d\x65\x19\x21\xbb\xa7\xef\xc7\x12\x7f\x1d\xc2\x6a\xde\x4b\xfa\x07\xe3\x57\x13\x6e\xb0\x15\xee\xaa\x3d\xaf\x4f\x18\xd9\xda\xbf\xc5\xfd\xdb\x1b\x06\xb4\x0e\xc4\x7a\x7f\x2e\x0b\x21\x84\xa9\xab\x4a\xe8\xbf\x38\xc1\x82\x9d\x3b\x8f\xac\xda\x92\xb6\x89\x60\x76\x6d\x57\x5f\x84\x92\x1e\x21\xb0\xcb\xb8\x2d\xde\x69\x09\xc1\xce\x75\xe8\xb8\x84\xee\x16\xfa\xff\x31\xde\xa7\x51\x35\xbf\xff\xff\xff\x9d\x8a\x06\x95\x4a\xd2\xa0\x90\x26\x42\xd2\x60\x28\xfb\xd9\x80\x26\x69\x1e\x48\x93\x28\x32\x4b\x51\x52\x32\x35\x12\x95\x88\x4a\x73\x54\x68\x22\x8d\xaf\x68\x42\xa2\x49\xc6\x44\x2a\x32\x46\xa9\x87\x14\xe7\xea\x7d\xe1\xdb\xfe\xad\xf5\x59\xff\x75\x5e\xbb\xad\xfb\xe3\x58\xab\x2b\xed\xbd\x8f\x03\x0a\xd3\x23\x64\x33\xad\x4a\x19\x8c\x7a\x54\xbe\x7a\xd4\x6b\x44\x13\x78\xf9\x77\xbf\xba\xdb\xaf\x52\x06\x4e\xba\xa7\xc4\x2d\xfe\x38\x10\xaa\xfb\x8d\x14\x45\x44\x37\x10\x42\xdf\x34\x1f\xca\x38\xa9\x34\x7e\xf7\x1b\x76\x1f\x53\x10\x26\xb8\xff\x69\xec\x1d\xde\x3e\x8b\x50\xde\x31\x16\xa4\xbb\x3e\x98\x90\xba\xf0\xd8\xa0\xd3\xec\x4b\x95\xa8\x79\xc3\xa7\x7c\x77\x7e\x2b\xa1\x27\xbf\xdc\xf8\x56\x60\x01\xe1\x8c\xf2\x87\xbd\x5e\x5b\x54\x08\xe7\x2d\x3b\xb5\x1c\x7d\x57\x13\x8c\xa6\x6f\x59\x10\x37\x59\x8b\xa0\xb0\xe9\xe5\xf5\xf6\x88\x9d\x84\xfa\x9a\xe5\x0f\x0e\x28\x68\x10\x5e\x7c\x1b\xbd\x77\xda\x5a\x82\x10\x17\x96\x92\x26\x30\x9f\x8b\xa0\x1a\x74\x44\x70\xf5\x95\x7c\x42\xeb\x23\xd9\xd9\xf5\x4d\xf6\x0c\xe6\x1c\xe5\x6e\x9e\x7f\xe2\x28\x41\x2f\xdb\x5f\x74\x61\x6d\x04\x61\x07\x47\xd1\xca\xb6\x8f\x01\x04\x4b\xd9\xd1\xd0\xa6\xe5\x0b\x09\x02\x72\xc5\x85\xad\x43\xab\x09\xdf\xe7\xdf\xe8\xbe\x60\xb3\x86\xf0\x78\xfa\x35\x9f\x05\x1b\xaa\x09\x2a\x2c\xaf\xd9\x52\x7f\x1c\x09\x9e\xd6\x72\x72\x7a\xb7\xac\x08\x8f\x36\xcc\x48\x7e\xf8\x6f\xfc\xae\xfe\xd6\x93\xaf\xad\x2c\x99\x05\x11\xb9\xaa\x75\x9b\xb3\x84\x69\x02\x99\x8b\xcb\x7a\x7e\x2b\xfd\x61\xe1\x89\xe9\xcf\xb7\x19\x8b\x32\x08\xf9\x85\xd7\xd6\xe8\x1c\x4e\x61\xc3\xda\x59\x26\x6b\xb8\x0f\x9c\x27\x9c\x38\xcb\x61\x69\xdf\x59\x42\x30\xdf\xb4\x99\x0e\x47\x28\x13\x8e\x7c\x6d\x19\x51\xd5\x54\x26\xec\x28\xf9\x1a\xe6\x5e\x25\x4e\xb0\x38\x37\xb5\xcf\x6e\x48\x80\x70\xd8\x7e\xac\xfc\x51\xc7\x74\xc2\x67\xbd\xed\x0d\xaa\x3b\xfe\xb2\x70\x40\x42\x9c\x2f\x34\x76\x39\xa1\x72\xf6\x93\xd0\x5f\xd3\xf9\x08\x5d\x73\xec\x6a\xe2\xb7\x16\x33\x78\x67\xd0\x96\x71\xf8\xef\x3b\x16\x12\xb9\xf7\x37\x39\x6f\x22\x82\x75\xec\x2e\xbb\xb7\x02\xd2\x84\x55\x6d\xb6\x6e\xfd\xaa\xfe\x84\x55\xcb\x35\x54\x63\x25\xbe\x12\x96\x5e\xda\xcb\xe3\xeb\x3a\x4c\x28\x3c\xbe\xfa\xd3\x85\x85\x0f\x08\x9b\x57\x7c\xeb\xb7\x7a\x1f\x46\x08\x9e\x97\x5a\x96\xbe\xa5\x8a\xc0\xcf\x3c\x55\xaf\xac\x59\x4f\x28\x76\x5d\x9c\x7a\xf6\x7c\x3e\x83\x03\x6f\xaf\xeb\x9b\xa5\x2a\xd2\x04\xa2\xea\x44\xfd\x4e\xf3\xce\xf9\x5f\xa8\xbe\xb5\xc7\x90\x03\x86\x04\xd3\x43\x7e\x2f\xe2\x0e\x66\x11\x7e\xf0\x3f\x6f\x28\x42\x16\xc1\x44\x50\xe7\xb3\xda\xe0\x30\x0b\x02\xaa\x15\x25\x61\xac\x79\xf4\x3f\x90\xcf\x51\x6f\xca\xba\xd4\xc5\xfa\x1f\xe0\x3f\x11\xb7\x7d\x7b\x5f\x49\x25\x8e\x6f\xca\xd8\xb8\x60\xee\x6a\xc2\xd3\x21\x1d\xef\xee\x75\xd5\x04\xfb\xf7\x72\xbb\xcf\x7e\x2f\x27\xf8\x9e\x13\xeb\xdc\x3a\xa3\x9a\xa0\xcd\xb2\x0a\xff\x6f\xea\x6f\xd8\xaa\xb6\xf1\xb2\x34\x61\xa8\xfa\xfe\xd6\xf3\x6b\x39\x08\x55\x0d\xa5\x6d\xbc\x9f\x76\xb1\x61\xeb\xcd\xa7\x36\xcd\xa3\x77\xd9\x60\x3b\x65\xf0\x7a\xd3\xa1\xbd\x6c\xf8\x99\xa0\x75\xb5\xfc\x79\x1a\x61\xa0\x38\x2a\xf4\x53\x0b\x3b\xb6\x73\x4c\x4f\x0c\x95\xeb\x61\x61\x23\xbf\x99\xe2\xd0\x5e\x4d\xb6\xf2\x7f\xe8\xc8\xd5\x8c\xf9\x71\x73\x25\x61\xfe\x1a\xf7\x2d\x2f\x67\xea\xd0\x44\xb9\x28\x64\x7a\x3d\x28\xbc\x9b\x85\xfb\xa3\x25\xe6\xab\xfd\x6f\x12\x02\x56\x98\xcc\x2f\xd6\xae\x23\x08\x79\xf5\x18\x8b\x34\x3e\x21\xbc\x8f\x2b\xb8\x73\x5e\xb8\x91\x30\x37\x26\xbc\x31\x37\x63\x29\x21\x46\x69\x99\xd1\xa1\x06\x3d\xc2\xc5\x92\x7f\x33\xb5\x9e\x95\x12\xee\xb5\x71\xd4\x14\x2d\xb9\x47\x78\xfc\x79\x93\xdf\x3a\xa3\x2c\x06\xdc\x3c\x5b\x7a\xdc\x9d\x1e\x12\xa2\x5c\x3b\xde\x96\xf6\x15\x10\x12\x37\xa6\x0c\xa4\xb8\x0b\x10\xfe\xae\x9d\x35\xd3\x5d\xb8\x86\xc1\x50\x50\x7c\x8e\x56\xf6\x2e\x82\xdf\xe5\x53\x4a\x2d\x3a\xd3\x09\xfc\x27\x5a\xf9\x3b\x07\x3f\xb0\x20\x9a\xeb\x5a\x76\x45\x2b\x9e\x30\xf2\x77\x71\xc7\x93\x13\x32\x84\xed\x71\xf7\xd2\x0f\xaa\xb6\x11\x8a\xe4\xf4\x33\xb8\x7f\x2c\x24\xc4\x0e\xbf\x36\xdb\x59\x18\xc1\xa0\x34\xc6\xbb\xf6\x6f\x9e\x1b\xc1\x78\xa0\x2c\xbe\xf1\xdf\x7c\xc2\xf0\xd7\x91\x0a\xbe\x5c\x3f\xc2\xc2\xb1\x43\xe6\x37\x07\x16\x10\x4c\x5b\xd5\x33\x24\xf5\x4b\x09\x8f\xa5\x8f\xef\x2d\x39\x5d\x44\xb8\x92\x2b\xed\xe6\x9d\xec\xc6\xc0\x63\x52\xa4\x43\x27\xaf\x05\x61\x47\x47\x8c\xb1\xcc\x67\x33\x42\x49\xb7\x4f\x42\xad\xff\x49\x06\x29\x12\xea\xf3\x95\xec\x18\x82\xf8\xb9\x9f\x1b\xe2\x7e\x73\x10\xba\xbc\x9f\x7b\x2f\xfe\x92\x40\xe0\x3e\x61\x15\xa1\xf5\xec\x3e\x61\xb4\xc7\xfd\x7e\x6b\xe8\x53\x82\x59\x7a\xe2\xe0\x82\x59\x8f\x08\x76\xee\x2f\xb4\x8a\x56\xb7\x12\xaa\x0c\x17\x9a\x5f\xe8\x63\x08\xcd\x1f\x86\x0e\x58\xfe\xcc\x26\x38\x84\xcd\xeb\x5d\x5e\x9d\x45\x28\x5a\x1a\xd5\xce\x7d\xd1\x9e\xb0\xec\x5d\xb8\xf4\x8e\x03\x27\x08\x47\x9e\x38\x8f\x9e\x14\xce\x24\xbc\xe4\x7c\xd2\xdb\xfd\x30\x8f\x70\x21\x96\xe5\x39\xf3\xaa\x1b\xe1\x52\xb1\xc2\xc2\x33\xb7\xcd\x08\xc3\xa7\x04\x0d\xd2\x4e\xea\x13\x32\x8d\x84\x13\x24\x4f\x99\x12\xf4\x5d\xb7\xe5\x78\x2e\x67\x11\x32\x0b\x9d\xd6\x7c\x69\x2a\xae\x44\x31\x7f\xc0\x9f\x1d\x65\xba\x84\x53\x37\xea\xa7\xdd\x7f\xed\x43\x58\xa5\x63\x6f\xb3\x47\x7c\x1a\xc1\x3b\x62\xab\xd0\xe5\x93\xc9\x84\xad\x3f\xb3\xc2\x96\x6c\x6f\x1b\xff\x51\x88\x34\xf9\x7c\xa6\x8e\x90\x93\x5d\x35\xd9\x23\x23\x92\x20\xf5\x7d\x64\xe4\xfd\xab\xd5\x04\x92\x7b\x61\x1d\xcc\xf9\x9b\x05\xd7\x15\xb3\x6b\xce\xc4\x98\xd3\x04\xcc\xf8\xa3\x92\x42\x7a\xce\x12\x46\x6e\x19\x8b\x7c\x29\xab\x25\x1c\xfc\x38\x29\xff\xb2\xb5\x1a\xe1\xf0\xe1\xed\xfb\xe5\xcf\xf2\x13\x52\x77\x25\x3c\x7f\x39\xfa\x9a\x41\xf2\x9a\xec\x92\x52\xb7\x5b\x95\x90\x37\xa6\x9d\x59\x76\x67\x69\x02\x31\xe0\xe5\x77\xd5\xd4\x22\x1c\x0f\xf1\x6b\x7b\xf4\xa2\x8a\xb0\x59\xfd\xbb\xdc\xdd\xdf\x96\x84\x81\x47\xd7\xe9\x46\xb8\x01\xe1\xaf\xe0\xd1\x5d\xaa\xe1\x77\x18\xf8\x4f\xcd\x9f\x1f\xbe\xcb\x9d\xf0\xfc\x99\xfb\xf7\x15\x0e\x5d\x04\x5e\x27\xd7\x83\xe7\x96\x7c\x26\x2c\xbc\x57\x3a\x5b\x4f\xe3\x25\x61\x91\xd5\xf6\xb1\x85\xe5\x0d\x04\xe3\x78\xe1\x2f\xa7\xb7\x84\x13\xd6\xbc\x10\xb7\x36\xf9\x2c\x47\xe8\x58\x21\xfc\x26\x51\x99\x9b\xd0\x2e\x6c\x78\x56\xbf\x9b\x97\x30\xe9\xb3\x5a\x56\x72\x33\x58\xb8\xfb\x4d\xbb\x68\xfd\xa1\x44\x06\xfe\x06\xfb\x4f\x49\x79\x4d\x21\x84\x6d\x23\xc5\x2d\x0a\xfb\x08\xcb\x74\xfc\x3d\xd6\x16\xbc\x66\xb0\x48\x7b\xe5\x57\x05\x35\x57\xc2\xaa\x9b\x26\x61\xf1\xcf\xe5\x08\xd3\xa4\x15\xd4\xd5\x12\x36\x11\xca\xb5\xbd\x6e\x4f\x0f\xf3\x24\x9c\xbf\xd0\x23\xe4\xf9\x7b\x2e\x61\xe5\xdb\xb9\x9f\xcc\xde\x9d\x27\xe8\x9a\x70\xfa\x17\x67\x2a\x8c\xdf\xf4\x5a\x7f\x9f\xa9\x73\x21\x70\x8b\x6b\x7c\x9e\x1d\x7e\x91\x0d\xd3\xaf\x5c\x5e\x7e\x31\xe7\x0a\x61\xa9\xdc\xef\x36\xfb\x75\x79\x84\x75\xe9\x4e\xc1\x89\x33\xd2\x08\xbe\x2a\xba\xdc\xdf\x44\xeb\x08\x6f\x0b\x37\x71\x0f\x17\x39\x13\xa6\x7e\x6c\x5b\x77\xcf\xcd\x8f\x0d\x87\xc5\x54\x42\x77\xed\xdb\x47\xb8\x75\xa2\x39\x56\x8a\xc4\x08\xdc\xab\x3c\x0b\xb3\xdc\x1c\x09\x26\x79\x5b\x7e\x06\xde\x8f\x24\x18\x5e\x88\xf4\x4c\xeb\x96\x60\xc3\x9a\xc9\xa3\xcf\xf7\x8b\x7e\x61\x21\x3b\x4a\xde\xf0\xfd\xd4\x39\x84\xc2\x03\x35\xcf\xf6\xdb\xeb\x12\x14\x57\x69\x8e\xc6\xfd\x9a\x4e\xf8\x15\xfd\x71\xa5\xac\xa4\x1e\x1b\x76\x27\xf0\xca\x07\x7d\xfd\xc8\x02\xe7\xf9\x80\x2d\x47\x3f\x55\x13\x12\xea\xd5\x15\xd2\xd6\x17\xb3\x90\x52\x78\x78\xec\xeb\x2b\x2f\xc2\xef\x24\xdb\x3b\x1a\x95\x33\x09\x5b\xc5\x56\xca\xe5\x9e\xaa\x60\x2b\x47\x76\xaa\x4b\xb5\x91\x1b\xc1\xeb\x5a\xca\x94\x59\x1f\xa6\x10\x74\xad\x98\x0c\x37\x31\x55\x02\xe3\x62\x74\x47\x21\x53\x99\x70\x30\x2c\x69\xd5\x22\x7e\x0f\x82\xbe\x3a\x87\x6d\xf2\x0b\x35\x82\xee\xee\xbe\xd9\xd6\xaa\xba\x84\x39\xd1\x6f\xad\xd7\x3c\x9a\x46\x28\xdd\x75\xa8\xbe\x3f\xd3\x88\xf0\xcc\xa1\xe5\xd2\x8f\xa2\x16\xc2\xef\xc3\x71\xd6\xe9\xdb\x96\x13\x8e\x87\x8e\x19\xce\x97\x57\x23\xec\x1b\x29\x09\xff\xe8\xfa\x83\x85\x4f\x27\x56\x18\x1c\x15\x00\x0b\x21\x65\xc1\x8f\xb9\xce\x2e\x26\x58\xf6\x4f\x5d\x5d\xa3\xab\x4b\x13\xe5\xa5\x54\xd3\xaa\xc4\x08\x29\xc2\x17\xee\x49\xdb\xb9\x8f\x8f\xb0\x70\xef\xfc\xee\xef\xd7\xbd\xfd\x09\x62\x6d\xb9\x92\xbd\xaa\x71\x84\x16\x93\xd6\xe5\xf3\x73\x4e\x12\x52\xf6\x3d\x0a\x3c\x9b\xe8\x40\x88\x69\xf5\x1a\xeb\x5b\xb3\x9e\x30\x3b\xd4\xd3\xce\x49\xcd\x8c\x10\xb6\x52\x57\x57\x5b\x56\x83\xb0\x63\x5d\xe0\x7c\xb9\xfb\x1a\x04\xbf\x11\xa1\xb1\x7b\xc6\x5a\x04\xf1\x8b\x5c\xf9\x4b\x73\x54\x09\xa6\xbb\x98\x97\x42\x86\x4d\x84\xde\xb5\x0d\x29\xff\xda\xf9\x09\xb9\x65\x7c\x7f\x29\xab\x8f\x85\x56\xbf\xe0\x28\xc7\xc3\x7a\x84\x96\xba\xb8\x49\xbf\xba\xc5\x08\x6e\x93\xcd\xaf\x05\x2c\x16\x24\x7c\x57\x10\xe8\x18\x8d\x68\xae\x44\x1d\x97\xd7\xba\x92\x3c\x01\x82\xe4\xc2\xe0\x17\xef\xae\x5c\x27\x68\x54\x7d\x7d\x99\xbb\xe7\x01\x83\x96\xcf\xf6\xc1\x9d\xe3\x65\x5a\xb3\xaa\x97\xcc\x66\x71\xc2\xb2\x2b\x2b\x16\x4c\x5e\xc2\x10\x5e\xd8\x5c\x2f\xd6\x51\x37\x21\x68\xb5\xc5\x9d\x56\x63\x54\x08\xfa\x81\x5f\xdb\x79\xab\xe7\x13\x62\x4f\x98\x4a\x54\xf4\xff\x60\xa1\x76\xd5\xf1\xfe\x51\x1d\x79\xc2\xa9\xed\x73\x24\x36\xef\xe4\x60\xc3\x8a\xba\xa4\xd1\xaf\x9d\x5c\x84\xf5\xf5\xb2\x69\x3a\x5a\x97\x09\xa3\xeb\xbf\x5f\xcc\xe0\xd0\x23\xe8\x7f\x2c\xbb\x5f\xae\xa3\x46\xb8\xd9\xe9\xf8\xfe\x9d\xae\x23\x83\x1d\x6b\x7a\xc9\xa6\xd3\x9b\x26\x10\xce\x7a\xfc\xd4\x22\xe5\x08\xe1\xdf\xee\xb8\xdc\xbe\x5c\xab\xf1\x07\xe6\xd3\x93\x96\x46\x69\x84\xd6\x19\xc7\xd6\xde\xe6\x5d\xc6\x80\xe7\x49\xbb\xec\xb4\xb3\x7a\x04\xde\x8a\x1d\xd3\x7f\xec\x57\x23\x70\x06\xfa\x58\x0d\xab\xae\x26\x9c\x8e\x7a\xb7\x33\x67\xd1\x26\x42\xc7\x69\xc7\xc4\x8a\x59\x66\x84\x4a\xfe\x0b\x4d\x86\x4f\xdc\x09\x81\xa1\x36\x23\x3b\x7e\xdc\x61\xb0\xe0\xab\xde\x81\xff\x4a\xb4\x79\xe5\xc3\x7d\xbf\x16\x10\xbc\xa7\xf1\x04\x8a\x16\xef\x25\x48\xcd\x58\x65\xa5\xda\xb6\x82\x50\x70\xed\xd3\x65\x6e\x1e\x5d\x36\xc8\xec\x37\xe3\x1b\x8c\x56\x21\xb4\xef\xd8\xf9\xf7\xaf\xab\x1a\x21\xd7\xd2\x58\x7b\x76\x92\x38\x21\xb1\xbe\x5d\xc2\x6c\xcf\x2e\x42\xb8\xf7\x74\xc5\xf6\x2e\x19\x82\xe1\x0b\xd3\xad\x54\xc6\x47\xd8\x72\xb7\x7c\x6c\xce\x64\x2e\x82\x57\x44\x4a\x60\xd2\xe5\xdb\x84\xbd\x4e\x86\x3b\x4c\x0e\xc9\x11\x02\x5b\xf6\xd9\x6e\x15\x19\x61\x41\x26\xe6\xfc\x98\xf0\xb6\x41\x36\x84\x5e\x7e\xfb\xf1\xd4\x1f\x1b\x42\xd7\x62\xdd\xd2\xfc\x3e\x3e\x82\xc6\x01\xf1\xc7\xc5\x67\xe2\x08\x07\xa2\x37\xd5\xdd\x8a\xf6\x27\x8c\x95\x76\x75\x54\x6b\x88\x12\xb6\xb5\x4a\x38\xff\x14\xe6\x24\xcc\x79\xd8\xf9\x20\x24\xc3\x92\x30\x5d\xef\xbc\xe4\x2f\x99\x1a\x06\x05\xc2\x49\x02\x7c\xb7\xc4\x09\xaf\xee\x88\xfa\xfb\x6b\xbb\x12\xf6\x9f\x32\x49\xe0\xaa\x5e\x45\x78\xf5\x5e\xde\x70\xdb\x99\xc5\x84\x0e\x31\xf9\xc6\xa4\x17\x82\x84\x83\x4b\x17\x4b\x9a\xec\xd2\x20\xb4\x6e\xab\x37\xff\xca\xb7\x9c\x30\x5c\x3a\x4b\xde\xf6\xb5\x05\x21\x32\xb8\x52\xea\xd3\xdf\x79\x84\xc3\x81\x67\x32\x0b\x6b\x38\x09\x6b\x04\xfc\x8e\x4e\x5a\xfd\x87\x85\x30\xb5\xaa\x83\x6e\xad\x4f\x18\x44\x99\x74\xd4\xee\x59\x57\x4c\x08\x79\xbc\x41\xb2\xe6\xf3\x75\xc2\x92\x24\x27\xed\xff\x8a\x45\x79\xe8\x97\x1e\xe1\x2a\x82\xff\xb2\x0d\xbe\x77\x0a\x6e\x33\x10\x8d\x77\xfc\x60\x3f\xf9\x3d\x03\x93\xb9\x03\x2e\xbd\xe3\x53\x90\xee\xb2\xb3\x1b\xef\x97\x10\x66\x36\x9e\x51\xf0\x90\x6f\x60\x4d\xc0\xeb\xb8\xa5\xec\xd3\xf3\xa3\x2c\xdc\xde\x95\xa2\x3f\xd0\xc4\x22\xec\x13\x8d\x90\x3d\xa5\xa4\x47\x58\xb6\x63\x49\xa1\xf1\x9c\x65\x84\xfe\xec\xb3\xcb\xf2\xfe\x2e\x23\x78\xbe\x57\x73\x9c\xbd\x4f\x9d\x70\x73\xc6\x1d\xc3\xc3\xe6\x8b\x08\x9f\xec\x9e\xad\xb6\x9b\xe2\x4e\x98\xd9\x71\xde\xfd\x0b\x8f\x0a\xe1\x75\xa4\xfa\x99\x7c\x71\x61\x42\xf6\x9e\x79\x73\x6a\xff\xc8\x11\xaa\xda\x9a\x5e\x9c\xaf\xb1\x27\xf8\x6b\xc8\x6d\x5b\xcd\xa5\x4c\xb0\x18\x68\x6c\xf8\xe4\x3a\x97\xc0\xdd\xe0\x9e\xae\x61\xc5\x47\x50\xed\x88\x7a\xdc\x76\x7a\x2a\xc1\x22\x2a\xe5\x77\x85\x04\x07\xa1\x7f\x92\xe0\xdf\xa3\xa3\x3c\x84\xfe\xb1\x65\x42\xee\x2d\x83\x2c\xe4\xec\xe4\xc8\x9e\x66\xfa\x83\x85\xd8\xc1\x0c\x02\x97\x0c\xc1\xa9\x27\x47\x78\x6e\xb3\x3f\x83\x13\x12\xb2\xa6\x0d\xe9\x02\x84\xd0\x62\xe6\x42\xb1\xdc\x18\x0b\x37\x2b\xf6\xf6\xac\x3e\x1d\x4c\xb8\x51\xb4\x7f\xc0\x99\xa3\x88\xb0\x5e\xee\x59\x57\xf7\x35\x05\x42\xb0\x73\xf8\xf3\xa4\x2f\xde\x04\x51\xa1\x1c\xe3\xcf\xcf\x9c\x08\x71\x35\xa5\x35\xbe\x4f\x37\x11\x04\xa6\xab\x47\x3b\x57\x98\x11\xae\x65\x94\x2f\x28\x8f\x5a\x41\xf8\x91\x30\xf6\xb1\x33\x52\x95\x70\xe5\x6b\xd2\xbc\x8e\x4d\x7c\x04\xd7\xe7\xc5\xd7\x3e\x9f\x5e\xca\x06\x21\xa3\xe7\x36\x7e\x53\x2f\x56\xe2\xa0\xf1\x83\x57\x39\xae\xcd\x84\x95\x9b\xae\x85\xfa\x68\x55\x10\x64\x92\x52\x4c\xda\x5b\x8c\x08\x49\x3a\xcb\x74\xa8\x62\x0e\x21\x3c\xc0\x21\x0d\xe1\x33\x08\xf3\x5f\x5e\x38\xf7\x27\x5c\x8b\x60\xee\x5b\x7b\x77\xe4\x8e\x2c\xc1\x39\x4a\x79\x7a\xdd\x72\x07\xc2\xe4\xfc\x85\x8f\xcc\xef\xac\x27\x4c\x19\xcc\x9d\x91\x11\xc1\x49\x68\xe2\x31\x0c\xea\x49\x9b\x4b\x38\x37\x3f\xb5\xe7\x81\xef\x7c\x36\x24\xdb\x88\x4d\xf6\xd4\x6b\x62\xa1\x3f\xff\x5c\xdb\xb5\x94\x99\x84\xa7\xbd\x7a\x67\xe7\xbe\x55\x20\x5c\x4f\xe6\x0a\xd8\x9b\xf8\x93\x85\x03\x81\x36\x59\xeb\x78\x96\x10\x0c\x76\x7a\xb9\xb5\x2f\x78\xc9\x42\xd6\xd5\xe4\x43\xdb\x3d\x76\x13\x22\x9c\xde\x8b\xeb\x3c\x33\x24\x04\x16\x86\xa9\x6d\xaf\x5b\x43\xf0\x4f\x79\xbc\xfb\xfd\x51\x16\x61\x52\x64\xf2\x76\xdb\xd0\x05\x04\x2f\xea\x1b\x4b\x58\x57\x53\x89\x6b\x29\xbf\xa6\xfc\xd5\x98\x45\xe0\xdc\x14\xaa\x21\x21\xec\xce\x86\xa7\x8e\x52\x22\x77\x75\x2f\x13\x14\x57\x7f\x1b\x5b\x5a\x2f\x48\x88\x71\x08\xbf\x5a\x97\xb5\x96\x0d\x3b\xbe\x2e\xce\x7b\xb9\x75\x98\x85\x87\x1e\x06\xed\x63\xab\x8b\x08\x31\xc5\x05\x4d\x47\xd6\x6f\x25\xbc\xce\xde\xb1\xb9\xd8\x6e\x23\x21\xf9\xa4\xff\xc6\xdb\x7c\x9a\x04\x51\x2f\x99\xc8\xed\xcc\x76\x02\xbf\x25\x53\x9a\x1b\x26\x48\x38\xc5\x3f\x78\xe0\x9e\xef\x52\x82\x54\x60\x9c\xd0\xde\x7d\xf3\x08\x82\x7f\x1c\xbe\x25\x25\xab\x13\xba\xeb\x63\x5b\xa4\xb4\x62\x08\x53\xeb\x75\x33\xa2\x05\xa5\x08\x7e\xfb\x5e\x79\x0d\xda\x27\x11\x22\xff\x16\xc4\x99\x66\xf7\xb1\x20\x3c\xf5\x52\xa7\xe4\x93\xbd\x04\x14\xc7\xb9\x5f\xf9\x77\x95\x81\x86\x9f\xb2\xcf\x5d\xef\x20\x42\xe7\xd0\xf0\xe8\xb7\xae\xa5\x84\x96\x69\x06\xa9\xee\x07\x0d\x09\x15\xf7\x1d\x3d\x6e\x04\x2f\x25\xd8\xc9\x51\xae\xb2\xe7\x1f\x16\x26\xbf\x4a\xb9\x1f\xf4\x6f\x12\x21\xff\xcc\xae\xa7\x82\x9f\x34\x08\x1f\x3f\xbf\xbc\xba\xa3\xc1\x9e\x60\x2d\x6f\xae\x64\x92\xff\x82\x81\x65\xbe\xd0\x92\xe2\xfd\x96\x84\xcf\x73\x2a\x7e\x49\x35\x34\x56\x62\xc0\x48\xd6\xef\x83\x0b\x1f\x41\x5a\xe1\xb0\xaf\x7f\x70\x2a\x41\xb7\x42\x4a\x64\xcb\xc2\x7c\x42\x06\xf7\x12\xe5\xff\xb0\x42\x5e\x23\x3d\x46\xbf\x8a\xe0\x15\xc5\x3a\x91\x50\x52\xc5\x36\x75\x6f\xdf\xaa\x9f\x71\xf4\x1c\x61\xd2\x4d\xfb\xac\xb7\x0d\xe1\xcc\x44\x09\x94\xb3\x50\xf9\x0f\x39\x9b\x1b\x1a\x9a\xfd\x0e\x12\x96\xd4\xcc\x09\xbf\x5b\x75\x90\xf0\xc6\xca\xff\xfe\xab\x2d\x8d\x0c\x2a\x8a\x5a\xca\xda\xc7\xb1\xc2\xa3\xb9\xe7\xf9\x38\xea\x24\x96\x7b\x4b\x16\x9c\x27\xb0\x94\xfc\x8f\x9f\x2e\xff\xc9\x42\xca\x8b\xa1\xae\x77\x39\xc7\x19\x18\xce\x63\xb9\xcd\x3b\x60\x4a\xf0\x70\xea\xf4\xe7\x34\x1e\xff\x4e\x18\x49\x7d\xa3\x3a\x79\xfc\x8d\x2f\xb0\x59\x5c\xc5\xa4\x9a\x99\x28\x1f\x2e\x48\x5a\x77\x9c\xab\xad\x84\xc4\x35\xf1\x3e\xe7\x69\xa6\x04\xb1\xc6\xcd\x5c\xbb\x96\x56\x33\xd0\xe5\xcf\xe0\x33\x55\x68\x21\x88\xa4\x4e\xe6\xb3\xe3\x6a\x20\xb8\x7f\x6f\x74\xac\x4b\xaa\x25\x14\x75\x45\xdf\x52\xbc\x1b\xc1\x60\xc5\x12\x7e\xfd\x15\x6b\x8a\x18\x8c\x28\x1d\x5d\x2d\xb2\xe9\x24\xa1\x21\x77\x95\xc0\x2c\xcf\x34\x06\xf3\x79\x9e\xbc\xb7\xaa\x8d\x24\xe8\x08\x6c\x38\x1d\xf4\xf8\x0f\x0b\xa1\x1f\x36\xb4\xcd\x6a\x74\xa4\x09\x44\x8a\xbc\x49\x69\x79\x23\x4a\x50\xb7\xfa\x1b\x3c\x7c\x58\x9c\xb0\x27\x54\xf4\x46\xdd\x36\x0d\xc2\x6d\xee\xf4\x4f\x9c\x87\x1c\xd8\xca\x4e\xdf\x87\x3d\x85\x8e\xc7\x08\x2b\x53\xcf\xf8\x7d\x58\x1d\x4d\xf0\x75\xa7\xde\xfb\xed\x46\x84\x9d\x17\x4d\x7b\xae\x28\x4f\x22\x3c\xd8\x7e\xc3\xfa\x5a\x7e\x2e\x41\x70\x5d\x72\xf5\xa8\x8f\x29\x1b\xe6\x3d\x9e\xdf\x1a\x55\xe6\x4d\x98\x1e\xe2\xa4\x7d\x6c\xeb\x5d\x82\xb3\xe7\xe0\xc6\xea\xbe\x8f\x84\x17\x66\x35\xce\xb2\x56\x1f\x08\xcc\x7a\x9f\x90\x6f\x4e\xb5\x84\xa1\xc3\x0e\xda\x15\xab\x0d\x09\x53\xe4\xde\xbd\x3e\xf3\x2d\x83\x90\x1c\x30\xbd\xf7\xb9\xd6\x0b\x82\xe2\x35\x84\x3c\x54\x33\x25\x1c\xdd\x5c\xf4\x7e\x7e\x8b\x32\xc1\x72\xcf\x69\x13\xce\xaa\xb9\x04\x77\x0d\xe1\x4f\x45\xaa\x3b\x08\x1b\x79\xd7\x67\x5d\x90\x70\x25\x44\x57\x47\xbc\xf8\xd4\xb7\x90\x20\xf0\xb8\xd7\xe2\x6c\xf5\x12\xc2\x8a\x4b\xc5\x7d\xb3\xaf\x75\x13\x42\x2a\x6e\xf8\xef\x0f\xeb\x21\x74\x7f\x9d\x73\xac\xe5\x61\x3b\xe1\xa6\xad\xf1\x97\xd2\x99\x0f\x09\x4a\x41\x1f\x15\x45\x86\x9f\x12\xf4\xb3\x5b\x5f\xdc\x32\xd8\x45\x58\x7e\xac\x5e\x65\x78\xf9\x0c\xc2\x07\x7b\x85\xb8\x84\x87\x1c\x04\x73\x25\xce\x69\xb3\x0f\x0f\xb3\x90\x2d\xbd\xb8\xb8\xa8\x34\x8d\x05\x2a\xd7\x3a\x7d\xe9\x65\x05\x61\xd8\xbb\x46\xa6\xc0\xc9\x87\xe0\x21\x20\xe3\x3f\xaa\x68\x41\xe8\xf8\xc8\x9f\x49\xf7\xd7\x11\x6c\x53\x5e\xf6\x98\x27\x2f\x21\x68\xae\x65\x79\x59\x17\x1f\x22\x1c\xda\xb9\xe1\x7e\xe6\x47\xab\xff\x05\xd6\xf9\xe2\x40\x77\x25\x03\x82\xef\xf2\x45\xb7\xb3\xba\xb4\x09\xc1\x1a\x47\x03\xaf\xda\x6b\x11\x2c\x5d\x7d\x0e\x15\x99\x55\x10\xfc\x52\x7f\x72\xb5\xf4\xf3\x11\x5e\x74\x05\x85\xf3\x7d\xe0\x26\x34\x15\x17\x47\x4a\xb7\x1b\xb0\xe1\xe6\x7a\x9e\xb1\xb5\x0b\x15\x09\x7d\x36\xf2\x7e\xfc\x8b\xba\x09\x2f\x8d\xde\x5a\x54\xe0\x2d\xc1\xcb\x7c\x6c\x4f\x55\xd6\x46\x42\xc0\x73\x67\x89\x37\x53\x1d\x09\x69\x05\xc2\xba\x43\x3f\xd2\x18\x28\xd8\xd5\x8b\x5b\xa9\x1a\x12\x9e\x0f\x44\xb9\x25\x15\xcd\x22\xfc\xed\xe0\x9b\x19\xc3\x69\x4b\x18\xdc\xab\xbf\xc6\xc8\x5b\x9a\x70\x25\x34\xd0\x27\x37\xa1\x97\x85\xd8\x87\x1f\x77\x35\x2f\x4a\x21\xd8\xce\xbb\x26\x7b\x59\x5e\x8b\x30\x69\xe9\xf2\xb1\xc4\x45\xbe\x84\xc9\x21\x12\xfd\xd7\x17\xaf\x24\x64\x27\x0f\x1f\x94\xb2\x49\x63\xc0\xbf\x85\xf1\x90\xb5\xcf\x22\x44\xb4\x7a\x3d\xcb\x8b\xbc\xcc\xa0\x4a\xff\x8a\xd4\x91\x27\xf9\x84\x7f\x9e\x47\x1a\xc4\x8c\x6e\x13\xdc\xb2\x4e\xed\x8b\xb4\x28\x20\x3c\xbb\xe3\xb5\x4b\x54\xfd\x04\xe1\xf2\x97\xaf\x35\x67\x6d\xf2\x09\x7b\x35\xfa\x47\xd7\xfc\x49\x65\xc3\xd4\x37\x25\x7b\x57\xb4\xa7\x12\x26\x15\x73\xf1\xd5\x1f\x88\x67\x9b\x1e\x76\xce\x15\xae\x3f\xb2\x99\x0d\x45\xcf\xf4\xbc\x1e\x9a\xc4\xb0\x95\x11\x7b\xc9\xd4\xb0\x1a\x65\x42\xee\x93\x03\x0f\x44\x0c\x3f\xb3\xb0\xc9\x40\x31\xab\xac\x7f\x32\x4d\xa0\x57\x6a\x77\xe4\x82\xbd\xf9\x2c\xf8\x7d\x3f\x31\xaf\xf2\x8f\x31\x41\xc1\xde\xc4\xff\x74\xb5\x36\x41\x59\xf6\xdc\xf0\xea\x03\xca\x04\x31\xeb\xef\x1b\x4e\x54\x98\x12\x1e\xbf\x90\x32\x8d\x5f\xc5\x22\xbc\x0f\x7a\x5b\xf2\xe8\xcd\x5c\xc2\xae\x94\x17\x86\x2f\x67\x2c\x22\x94\x87\xcf\x31\x35\xaa\xf5\x26\xbc\x55\x9a\xb9\x31\xe9\xcb\x63\x82\x37\xf3\x80\xbf\xf4\x82\x2b\xe1\xa3\xe3\xef\x67\x93\x94\x24\x09\x42\xaf\x9e\x75\x5e\x7a\x58\x47\xf0\xcd\xfa\x72\xf1\x9f\x6e\x3a\xe1\x46\xf1\xe5\xbd\xcf\xec\x16\x11\x5a\xd5\xf6\xcb\xbd\x39\xbf\x8d\xe0\x55\x12\x24\x35\x12\x19\xc0\xa0\x5d\x44\x4b\x74\x5f\x43\x14\xe1\x6b\x7f\x5d\x4a\x2a\xcf\x15\x82\xf3\x6f\x17\xdb\xfd\xe3\x85\xcf\xac\xe3\xf6\x4c\x57\x17\x82\xf2\xef\x9c\x73\xe7\xe2\xe4\x09\x32\x22\x33\xb8\x0b\x4b\x64\x08\xda\x52\x05\xcd\x5f\xeb\x8f\x13\xce\xee\x4a\xdd\x3c\x5c\xc6\x22\x9c\x9a\x17\x55\x97\x76\xa8\x8a\x70\x5e\x21\x41\x6e\x6f\x42\x1e\x61\x60\x3d\xeb\x9e\x7f\xeb\x21\x42\x76\xcb\x94\x87\xeb\x12\x2c\x08\x16\xae\x22\xb3\x9d\xe5\xe7\xb3\xa1\x2d\xf8\xd4\x9d\x86\x54\x11\xc2\x37\xb5\x80\x55\x2b\x94\xc1\x82\x74\x5f\xc5\xf4\xe4\x19\x6f\x08\x9f\xe2\x34\x6e\xdd\x0b\xf1\x20\xec\x2d\x5f\x79\x54\x2f\x4e\x87\x60\x39\x79\x52\xf8\xad\x26\x63\x42\x77\xee\x0e\xeb\x2b\x66\xaf\x2b\x61\x30\xff\xca\x72\x57\x97\x5d\x34\x81\xad\x7f\x2b\xc6\xe2\xa6\x0b\xb3\xa1\xb7\x62\x6b\x14\xcf\x1c\x57\x82\x8e\xf8\x89\x69\xa6\x5b\xf2\x59\x68\x8b\x70\x7f\xf3\xf4\xa7\x3d\xa1\x57\xc5\x65\x85\x46\xec\x76\x9a\x28\x17\x25\x22\xbe\xd8\x46\x0b\xb3\x21\x6b\xd0\x6d\xc9\xb9\x23\x11\x84\x17\x3b\x1d\x0e\x3e\xbe\x90\xc1\xa0\x71\x89\xe2\x94\xc9\x7f\x6e\x32\x90\x54\xb9\x7a\x78\x9d\x50\x2e\xe1\x54\xe4\x66\x8e\xb6\xd8\x42\xc2\xaa\xd8\x6e\xa5\x73\xda\x25\x84\x73\x3d\xbf\xf4\x8b\xee\xf9\x11\xda\xed\x17\xe8\x3d\x32\x2c\x26\x68\x9a\x76\x79\x44\xfd\xbc\x4d\xd8\xfe\xd6\x3f\xee\xf7\x1e\x1f\xc2\x51\x49\xdb\x65\xf3\xfa\xee\x10\x46\xfc\x2e\xb4\xad\x11\x4e\x23\x74\x56\x3c\xb8\x27\x7f\xf6\x1c\x83\xa0\xa5\xcb\xef\x2e\x96\xbe\x41\x98\xca\xe9\xa6\x2b\x56\xbc\x86\x60\xe4\xf0\x35\x63\xfe\x25\x0f\x42\x84\xca\xac\x73\x97\xdb\xf2\x08\x08\xcc\xde\xa8\xb3\xcc\x90\x20\x50\x51\x5b\x7d\x41\xf3\x4d\x25\x94\x79\x7b\xeb\x96\xca\xee\x26\xa4\x7c\xfa\x35\xe7\x83\xf2\x3e\x9a\x28\xff\x87\x5d\x37\x02\xcf\x6a\xea\x49\x13\xd2\x33\x7d\x36\x24\x07\x38\x11\xe6\x72\x84\x1a\x24\x48\x4b\x13\x34\x36\xae\x34\xe1\x3c\x9e\x46\xe0\x36\xbd\x56\xed\x68\x7e\x8c\x0d\x6e\x7f\x73\x57\x71\x59\xda\x12\x22\xee\x54\xcc\xda\x31\x49\x8b\x0d\x21\x87\x65\x0c\x0b\x0b\x94\x18\x6c\x7c\xbe\xff\x84\x85\x70\x20\x61\x57\x90\xb1\xf6\x0a\xf3\x85\x84\xfb\x65\xea\xd6\x86\xf1\x35\x2c\x74\xdd\x5e\x27\x1d\xe7\xcc\x49\xf0\x5c\xf6\x76\xf8\xd5\x57\x2e\x82\xb3\x51\xc2\xce\xe2\x50\x51\x36\xfc\xce\xab\x76\x59\xff\xd1\x94\x10\xe5\x10\x99\xc2\x9d\xba\x8a\x7e\x4b\xf3\x34\xda\x68\x71\x11\xdc\xae\x76\xde\xe6\xb9\x5a\x48\xe8\x94\xed\x99\x7f\x4b\x9c\x97\xb0\xef\xaa\xa9\x55\xca\xbb\x3f\x2c\x98\x35\x97\x6f\x7d\xa9\xb9\x9a\x60\x15\xb1\x3f\xd6\x29\xd5\x82\x30\x67\xef\x99\xc5\xf6\xb7\x88\xb0\xe9\xcc\xd1\xd0\x9d\xf6\x3b\x09\x2f\x74\xff\x65\x77\x59\xed\x22\x70\x29\x66\x39\x45\x69\xdd\x26\x84\xfd\x90\x35\x29\xdc\x5b\x44\x10\xb2\x29\x4b\xdf\xc5\x9b\x47\x28\x32\xb9\xf0\x9c\xf7\xe1\x74\x42\xe6\x37\x41\xc3\xe8\xe7\xf9\x6c\xe0\x33\xfd\xd0\x64\x78\xa7\xb6\x12\xb4\xc1\xca\x73\x43\xbc\x3b\x61\x5a\x68\xad\x8a\xc9\x63\x6b\xc2\x87\xbb\xf1\x81\x99\x5d\x0b\x09\xf6\x73\x04\x16\xa8\xe8\xc8\x10\x1e\x46\x8d\x6d\xe2\xba\x5b\x46\xb8\xac\xfe\xab\xfe\x70\x6d\x04\x21\x2f\xcb\x7d\x5e\x6f\xcc\x0b\x16\xb4\x3d\x7b\x98\x0d\x82\x01\x04\x8b\xe5\x19\xa6\x3c\xb6\x55\x84\xbe\x81\x62\x1a\x12\x68\x24\x5c\x58\xaf\xae\xa9\x15\xfb\x82\xc0\xdc\x11\x0c\xf9\x35\x5e\x9c\x04\x07\x82\x7f\xbd\xce\x21\xe4\xc8\xfc\xec\x17\x4a\xab\x22\xb8\x6e\x90\xea\xee\x1b\x4b\x27\xe8\x6f\x59\xe9\xf6\x73\xd5\x19\x82\xf3\xb4\xe7\x6e\x2d\x67\xd7\x11\x4c\x25\xc3\x5f\xdb\xf0\xac\x27\x78\x3b\x3a\x3c\xbb\x97\xba\x8e\xf0\xf4\xe2\x25\xc9\x25\xad\xb3\x08\x33\x8d\x1c\x6a\x74\xed\x7e\xb1\xb0\xcb\x45\x6e\x9f\x81\xe5\x54\x42\x53\xfb\x91\x4f\x67\xbd\xc4\x08\x76\xe7\xc2\x56\x78\x66\xd7\x11\x06\xa7\x1d\x0a\xd4\xd9\xf0\x8c\x20\x13\xf2\x26\x6c\x48\xa8\x8a\x81\x9b\xf3\xae\x7d\x4f\x75\xf3\x09\x07\x55\xcf\xd8\x67\x73\x19\x12\x52\xbd\xb3\x0d\xc3\x7e\xd5\x12\x18\x49\xd1\x2f\x0f\x8b\x96\x10\xee\x70\x4b\xa6\x9e\x38\xac\x48\x60\x59\xc5\x3c\x8c\x16\x18\x60\x4d\x20\xc4\x5b\xc7\xd1\xef\xd5\x53\x16\x42\xeb\x9f\xdd\xbe\xf7\xfb\x2d\x0b\xfa\xbe\x59\x91\x56\xf5\xb7\x08\x93\xbf\x8e\x7e\xf8\xf3\xf6\x04\xe1\x8b\xec\xaf\x7f\xae\xaf\xaf\x11\xd6\xa5\xd5\xfa\x1c\x7b\x74\x8b\x10\xbb\x7d\x60\x46\x7e\x50\x14\x5b\xa9\x9c\x33\x25\x33\x78\x1c\x1f\xd3\x7f\xee\x7c\xbe\x79\x37\x1b\x02\x1a\xbe\x75\xe9\x6f\xdf\x47\x78\xb7\xce\xc4\x41\x9f\x8e\x12\x98\xed\x46\x45\xcf\xc6\xa7\xff\xc3\x3e\x23\xfd\x0c\xf3\x0b\x91\x04\xd5\xa8\x8f\xa5\xe2\x72\xe7\x08\x8d\x19\x6f\x6e\xaa\x24\x86\x12\x1e\x1a\xb6\xa6\xfd\x57\xfe\x0f\xd1\x96\x97\x8f\x1b\x8f\x1f\x5e\x3a\x1a\xd0\xa9\x5f\x17\xc1\x86\xd7\x8e\xfb\xe7\x6c\xfe\x7e\x8e\x30\x67\x4c\xd3\xd6\x32\x31\x82\xc0\x65\x35\xe9\xd9\xb6\xb3\xec\x67\xaa\x8f\xcf\xb7\x53\x6f\x3a\xc2\x06\x55\x8f\xb6\xdf\x4b\xc7\xd1\x3f\xdb\xc4\xe9\xac\xde\x2a\x82\x67\x8f\xc9\x2b\x4f\x3b\x16\x21\xe0\xd6\xcd\x49\x0e\x2f\xb7\x13\x0a\x32\x53\x5d\xe3\x7f\x14\xff\x2f\x3c\xcf\x3d\x24\x7c\x6d\xf6\x16\x82\xbe\x82\x96\xd6\x24\xb1\x72\x42\xe5\x8d\xb7\x4d\x21\x53\x84\x09\x23\x3b\x77\x7d\xac\xcb\x90\x24\xa4\xdb\xfc\xdb\x14\x12\x39\xcc\x42\xf4\x85\x77\x1c\x5d\x66\x29\x0c\x82\xd3\x6b\x66\x77\x2d\xfc\xcc\x42\xf7\x82\x96\x33\xf9\xc1\x7f\x59\x68\x17\x27\xc3\xfe\x7d\x4e\x84\x3f\xb7\x4a\x04\x96\xac\xbd\x43\x48\x29\x12\x0a\xfc\x37\xbb\x91\xc0\xf3\xa5\x5b\x41\x75\xbc\x3c\xf8\xf2\xe5\x61\xad\x5c\x0d\xa1\x7e\xc6\xd7\x47\xbd\x5c\x9f\x18\x48\xdc\x57\x3d\xf0\x77\x76\x0d\xe1\xdf\x49\xf3\xcf\x32\x01\x83\xcc\xc4\x99\x23\xcf\x2d\xa4\x4d\xee\xdb\x10\x56\x1f\x74\xfc\x87\x95\x8f\x2b\x11\x65\x3f\x73\xe7\xb9\xda\x9b\x84\xfd\x56\x17\x1f\x45\x8d\xa3\xcc\xbe\x36\x59\xb0\x90\xbd\x94\xa7\x05\xf0\x54\x1a\x8b\x13\x7e\x57\x2a\xda\x27\x98\x98\x12\xd2\xe4\x0b\xcf\x09\xf5\xf8\x10\xc4\x54\x9f\xce\x4b\x2a\xb1\x22\xc4\x2f\x18\xdb\x5b\x35\x10\xcb\x40\x27\xf3\xb9\x65\x59\xef\x3c\xc2\xfe\xa7\xfe\x22\x8e\xb3\xf5\x09\xd6\x51\x51\xe6\xfa\x1b\x16\x12\x84\xfe\x2e\xfd\xdc\x36\x64\x49\x78\x71\x47\x5b\x31\xff\xc5\x14\xc2\xc8\x9f\xfa\x97\x02\x9e\xab\x09\xaa\xfe\xd1\x36\x17\xda\xc0\xc2\xba\x23\x1f\xed\xfc\xa9\x8a\x01\x78\x2b\x8e\xfd\x57\x8e\x34\xe6\xea\x3a\x7e\xb5\x22\x2c\x2f\xba\x64\x7d\x32\x81\x9f\xf0\xea\x86\xf4\xdc\x10\xb5\x4c\x82\xe4\xb6\x0f\x6a\x7a\x0e\x2f\x08\xf9\x1b\x5a\xc2\x17\xe7\x64\x11\x78\x74\xba\xbb\x78\x17\xf0\x12\xc6\xce\x7c\x4a\xfc\x7b\x61\x05\x1b\x6c\xb6\x29\xc6\x3d\xdf\x33\xcc\xc2\xf1\x66\x2e\xe7\x97\x9c\xc2\x04\xeb\x56\xcf\xc7\x3f\x1a\x4f\x32\xf8\x30\xd2\x68\x7d\xb9\x3f\x9d\x26\x20\xde\x2c\x18\xff\xff\xe2\x95\xc7\xab\xc0\xad\x85\x1e\x84\x4f\x63\x87\x56\xa6\xbb\x79\x30\xe0\xbc\xe2\x90\x93\x88\x37\x2c\x2c\x3d\x64\xc8\xfc\x74\xac\x64\x50\xfd\xeb\x68\xab\xc2\x29\x79\xc2\x3c\xd1\x7b\xb9\x05\xa3\x33\x08\x92\xc7\x99\x3e\xf5\xcd\x66\x84\x0a\xe9\xc6\x8f\xa6\xa9\x42\x84\xa8\xfa\x33\xb5\xdd\xba\x73\x09\x26\x5b\x6a\x4e\xc8\xd7\xdf\x26\x88\xbb\xa7\x1d\x6d\xbf\x54\x49\x78\xf6\xa1\x56\xa3\x20\xa9\x8e\x41\x40\x9f\xd7\xb3\x0a\x95\x2e\x42\x47\xb4\xcd\x89\xa5\x57\x1e\x31\x58\x14\xad\x5d\x5d\xe0\x90\xcb\x20\x6e\xcf\x93\x16\xad\x53\x07\x69\x02\x76\x06\x3c\xa1\x2a\x9c\xb1\x0c\x56\xa8\x7d\x90\x2a\x56\xf0\x21\xf8\xc7\x3c\xbc\x3a\xa3\xdb\x8e\xed\x8c\x70\x3e\xc7\xab\xf0\x95\x21\x84\xdd\x85\x9e\x11\xbc\xa1\x47\xfe\xff\x43\xfd\x2e\x49\xb1\xae\xa3\x27\x08\x57\x5d\xce\xd8\x2c\xd5\xa9\x22\x98\x65\x85\xca\x3a\x3c\xf7\x66\x9b\xfe\xaf\xbc\xb1\xdf\x1a\x1c\xaa\xea\x41\xd8\xb4\xf1\x5f\x30\x37\xef\x20\x0b\xbe\x9b\xc6\xc2\x7e\x18\xf6\xb2\xe1\x46\x68\x9b\xf2\xeb\x9b\x1f\x58\xb0\x17\x75\x74\x09\xfd\xc6\x10\xca\x79\xe4\xb5\xea\xad\x74\x08\xd5\x9e\x8b\x9e\xcb\x74\x39\x31\x08\x90\xf7\x76\xb9\x18\x72\x97\x90\xb8\x4f\xeb\xa6\x6e\xfe\xff\x44\x45\x4b\xe3\xba\x82\xaa\xbb\x04\xab\x79\x77\x39\x84\xfe\xe6\x13\xfc\x02\x8c\xf8\x02\x06\xf3\x09\xc1\x0d\xe6\xea\x2b\xbb\xee\x11\xe2\xfc\xcf\x7b\xe7\xce\x6c\x64\xf0\xe7\xb3\xad\x61\xf8\x68\x3e\x81\xe7\xd2\x8c\xcd\x91\xcf\xf2\x08\x6a\x56\x7f\x8a\xea\x47\xf2\x09\x9c\x3e\x1f\x77\xf8\xbe\x2f\x22\xac\xbd\xa4\xa9\xaa\x99\x9a\xc7\x60\xbd\xc9\x17\x52\x7e\x55\x44\x48\x5c\xd4\x6a\xf3\xdf\x74\x5a\xe4\xec\xe3\x23\x03\x45\x84\x13\x8d\xdf\xb3\x66\x7d\x48\x26\x58\xe6\x54\x46\xa5\x7c\xbf\x48\x90\xe6\xbc\x71\xf4\x5b\x4b\x05\xe1\x4e\x90\xfc\xa0\xcd\xc5\x5c\x82\xc6\x6e\xee\xc2\x2f\xe3\x85\x3b\x7c\xdb\xdc\x4f\xef\xaa\x08\x83\xe6\x3f\xde\x24\xbb\x64\x11\x42\xc7\x04\xfe\xfc\xab\x6a\x63\x2b\x51\x36\xfc\x9d\xc2\x83\xa9\x0c\xf2\xaf\x86\x4c\xd3\x57\x33\x22\x48\xed\x28\x54\x7b\xef\xd5\x4c\x88\x8c\xe7\x50\xb2\xb8\xd6\x44\xb8\xf4\x30\x7e\xfd\x42\xa7\x07\x84\xab\xf5\x91\x39\xb7\x66\x34\x13\x12\x8a\x0d\x3f\x76\x8f\x9f\xf9\x36\x43\xa4\x8d\xc3\x23\x85\x70\xc5\x46\xda\xc1\xff\x51\x3e\xe1\xb3\xe8\x73\x83\x2e\xb7\x52\x82\x96\x80\x41\xc6\x8c\xab\x27\x08\xc5\x02\x6e\xd9\x62\x7f\xfa\x59\x38\xf9\xd9\x74\xf3\x67\x63\x3b\x42\xcc\x79\x6e\x3f\xd6\x1c\x61\x36\xec\xbb\x76\xab\x66\xfa\x15\x5f\xc2\x22\x95\xda\xf9\xba\xe9\x26\x04\x4f\x47\xab\x99\x0b\x3e\x8c\xdf\xb9\x7a\x63\xde\x9f\x3a\xd8\x4a\xa8\xec\x33\xac\x5d\x9b\x14\x42\xb0\xdd\xae\xfa\x26\x72\x57\x21\xa1\x2f\x70\xc5\xd6\xc6\x9d\x5b\x08\xcb\x77\x5e\x0a\x91\xaf\xe3\x24\x3c\x09\xe0\x89\xf0\x79\x5c\x42\xa8\xae\x3a\x6a\xc1\xf5\x5a\x89\xb0\xf2\x68\x81\xc2\xa3\x3e\x15\x42\xf5\x85\x2b\xe2\x93\xcb\x85\x09\x6a\x49\xf3\xd4\x04\xdb\xb4\x08\x2f\xe2\xd6\xbe\x7b\x94\x25\x4e\xd8\x35\x23\x5a\x24\x6b\xc8\x86\x20\x52\xb7\xf2\xd8\xda\x83\xea\x84\x00\x87\x65\xcf\xcb\x23\x34\x09\xc1\xd6\x4b\xa7\xab\xf8\x6d\x60\x2b\xbf\x7e\x3c\x91\x8a\xf0\x7b\xc5\x02\x6f\xa8\xd9\x9a\x25\x6e\xc2\x6c\x85\x53\xb9\xd1\xb9\xa0\x92\x9f\x70\x48\xfc\x90\xe1\x09\x87\x01\x16\x76\x6d\xd5\x29\x9c\x3e\x5b\x9d\xb0\xf7\xf9\xcf\x69\xef\x16\x8b\x11\x0c\xc4\xea\x9d\xe7\xfc\x1a\x65\xc1\x42\xfa\xa3\x05\xf7\xd0\x23\x06\x96\x81\x5c\xd9\x86\x0b\xdd\x09\xfa\x77\x0f\x2c\xd3\xff\x99\xcc\xc0\xe3\x8f\x70\xd9\x2c\x1e\x3f\x42\x12\xff\x32\xe5\xa1\xae\x35\x04\xe7\x70\xe5\x19\xbb\x36\xae\x21\x08\xbf\x1b\xac\xf0\xc8\x90\x23\x74\x8d\x9e\x4f\xbe\x27\xb0\x90\xc0\x97\xf7\xd0\xb7\x80\xff\x38\xe1\xb6\x8c\xa1\x7b\x5f\x84\x0f\x41\x3f\xff\xb4\xcc\x7e\x34\x11\x9c\x6d\x64\x97\xac\x19\x69\x22\x8c\xcc\x88\x3e\xd1\x31\xdc\x44\x50\xc8\x15\x0a\xdc\x3b\x3e\xa5\xed\x2b\x8f\xfe\xe6\x16\x41\x38\xd0\x17\xfb\x64\xf5\xcd\x7b\x84\x86\xcb\x83\x99\x6f\xee\x3e\x63\x70\x33\x6b\x5b\xda\x60\x47\x1d\x41\x6b\xad\xa2\x7d\xee\xf6\x5c\xc2\x96\x8b\xb2\xa9\x07\x4f\x18\x11\xf4\x37\xc6\x79\x38\xc9\xcb\x10\x66\xe6\xa5\x1c\xb7\x3c\xe6\x4a\x98\xfe\xf0\x6d\xe4\x8e\x25\x2b\x09\xdf\xaf\xa8\x2d\x90\x2f\x7b\x40\xe0\xb5\xfe\x39\xd5\x57\x37\x87\x70\xce\xe2\xa1\xf4\xc9\xb4\xf1\xbb\x76\x93\x4d\x87\xd9\xf4\x39\x84\xaf\xe9\xfc\x3e\x27\x7e\xe5\x32\x98\x1b\x7a\x45\xcb\x4c\xbb\x97\x50\xfa\x7b\x83\xb1\x52\xe9\x20\x21\x22\xbe\xf6\xd5\xc5\x29\xdd\x84\xae\x2d\x8c\x82\xd2\x8b\x08\x82\xfd\x7d\x83\xa6\xaf\x63\x33\x08\xa6\x75\xcb\xd5\x96\x64\x08\x11\x82\x6b\x7a\xba\xc4\x4e\x76\xb3\x30\x28\xf0\xca\xe1\xe2\xa8\x20\x4d\xc0\xa3\xce\x5c\xbe\x95\xa7\x81\x85\xbd\x4f\x4e\xc6\xea\xde\xb6\x20\xf0\xf1\x3d\x34\xef\xee\xb3\x27\x1c\xd2\x9c\x7d\x78\xb7\x81\x0d\x61\xce\xaa\xfe\xf6\x3f\x07\xff\xb1\x60\x33\x39\xe7\x47\x75\x99\x0c\x21\x3f\x5e\x9c\xbf\xc5\x76\x12\x61\xf3\x2f\x6d\x43\xff\x30\x39\x82\xd7\x60\xdc\xcd\xb0\xae\x44\x36\x74\x45\x99\x6a\xed\xf8\x2a\xcc\x06\xad\xa8\xf7\xf2\xa2\x9b\x95\x09\x1e\xc5\x01\x9b\xba\xc4\xd6\x12\x52\x1b\x5f\x89\x65\xee\x15\x24\xb8\x9e\x36\x2d\xb7\x0b\x32\x24\xa4\xe8\xa8\xcf\x63\xec\xe4\x08\x7b\x5f\x3a\x7c\xa8\x71\x5e\x42\xa8\x08\x76\x0b\xf6\x12\x9d\x47\xf8\x60\x11\xa2\xff\xfc\x52\x1f\x0b\x82\x2b\xb4\xf5\x0f\xbf\x11\x26\xf4\x4d\x37\x38\xaf\xe7\xa6\x4b\x30\xff\xa7\x7d\xde\xf2\xf3\x5c\xc2\xcb\x9f\x63\x73\xbb\x2e\x69\x11\x2e\x69\xa5\xf2\x0f\x35\xeb\x13\x56\xad\x0b\xec\xba\xf0\xe4\x17\x0b\xdb\x75\x1c\x24\x02\xb7\x5d\x24\xdc\xfc\x67\x23\xa6\x5a\x18\x4f\xb8\xb2\xe3\xcf\x07\x96\x7d\x0b\x5b\xd9\x3a\xba\x2e\xb6\x77\xb9\x1b\x1b\xd6\x79\xdd\x0c\x8a\xd1\x76\x23\x6c\xce\x2f\x4d\x11\xb1\x49\x21\x88\xbb\x6c\x16\x76\xd2\x94\x20\xdc\x9b\x94\x7a\x55\xde\x73\x33\xa1\xb1\x7b\xcf\x01\x91\x74\x0d\x82\x60\xd5\xd1\x08\x43\xa5\x3d\x84\x49\xcb\xc7\xa2\xe2\x17\x24\x12\x82\xce\x0b\x99\x4d\x2b\xe5\x20\xac\xcf\xf7\x97\xf1\xb5\x34\x20\x58\x69\x67\x7a\x3e\x5e\xc1\x30\xe8\xbc\x57\x21\x7b\x56\xb0\x8e\x41\x6f\xed\xa1\x5e\xfa\x37\xc4\x42\x98\xb9\x29\x6b\x91\x64\x0b\x41\xb4\x6e\x9f\xd5\x8c\x86\x7e\x42\xec\xb4\x6a\x87\x5b\xa5\xd5\x04\xe1\x2b\x4d\x7d\xdf\x4d\x5b\x19\x9c\x6d\x9c\xc4\x9f\xc6\xb5\x83\xb0\xfd\x3b\xf1\xf7\xfd\x70\x25\x2c\x4a\x39\x28\x11\xb7\x4e\x66\xfc\xf2\xee\x99\xdb\x13\xdc\xcd\x42\x6a\xac\x6b\xaf\xf7\x81\x6b\x0c\xc2\x43\x7d\x16\x1b\x9c\x93\x27\x84\xb5\x26\x6b\x0e\xe9\x3d\x22\x6c\xfe\xf8\xf5\xc0\xd2\xd1\x0a\x42\x69\xef\xc1\x8f\xd6\x36\x7b\x08\x1f\xd6\x55\x46\x53\x9f\x01\xa1\xe9\xf5\xdf\x33\xe2\xa2\x03\x2c\x78\x1e\xdf\xa7\x64\x16\xec\x49\x38\xc4\xeb\xff\xe9\x9d\x71\x3a\x83\xd7\xf1\xc1\x63\xb5\x9c\xbe\x84\x2b\x55\x1c\xd9\x1a\x4c\x24\x81\x2f\x35\x96\xf7\xcb\x91\x8d\x84\x24\x97\x8b\x41\x7b\xb9\x34\x08\xfd\x49\x46\x37\xef\xf8\x99\x10\x5e\x86\xed\xce\x18\x70\xb9\x4c\xa8\xdd\xf2\xca\x54\x7b\xdd\x4d\xc2\xad\x93\xfb\x0d\x06\x57\xca\x10\x5e\x8a\xe9\x9b\xe8\xec\xb6\x20\x3c\xca\xd6\x9b\x5f\x22\x2d\x4a\x78\x19\x9f\xb7\x5a\x69\x93\x01\x81\xb7\x7f\xc9\x57\xe1\xb7\xc2\x04\x5e\xa5\xbf\x53\x35\x03\x44\x08\x8f\x7f\x89\xa4\x3c\xaf\xd7\x23\xec\x2e\xd8\x56\xf6\x24\x60\x39\x21\x8f\xf7\x60\xd9\xb5\x6f\x96\x04\xc6\xce\x3f\x68\x81\xc8\x2d\xc2\x99\xd3\xaa\x5d\x45\x81\xf1\x0c\xb2\x04\x53\xcf\xfa\x46\x57\x11\x8a\xb5\xdc\xbe\x0d\x9f\xbc\x48\xe8\x2b\x4a\x3d\xec\x33\x5e\x2e\x77\x30\x89\x3e\x12\x9e\x04\x95\xfc\x14\x91\x53\x49\xf6\x84\xb1\x88\x45\x7b\xaf\xf3\xc6\x30\x88\x7b\x9d\xbb\xef\xfa\xaa\x18\xc2\x15\xce\x4d\xeb\xfd\x77\xfa\x11\x4e\xcf\xbf\x72\x5b\x4d\x70\x0b\x61\xf2\xa5\x6f\x37\x62\xd4\xf5\x08\xbf\x47\x07\x38\xe3\x5b\x89\xb0\xbb\xfd\xd5\x27\xd6\x42\x35\x42\x6d\xfa\xfa\x03\x57\x97\x2f\x23\x88\x6f\x10\x73\xb1\xcd\xae\x63\x4d\x60\xdf\x74\x1b\xce\xda\x4b\xa5\x95\x48\x1e\x50\x35\x4c\x49\xb0\x23\x18\xfd\x7c\x76\x68\x99\xb9\x2d\xc1\x90\xe3\xdc\x8a\x9c\x95\x7a\xe3\xbf\xef\x4a\xa5\xd6\xab\x66\x12\x6e\xa5\x04\xbe\xe9\x7c\xce\x4f\x50\x39\x56\x5d\xc7\xed\xaa\xc7\x86\xee\x86\xc7\x2a\x79\xb4\x96\xad\x0c\x8f\x14\x30\x5a\xb1\xf3\x09\xa5\x5f\x1d\x6e\xb4\x2d\x2f\x20\x9c\x3f\x9e\x63\x38\x39\xd0\x8e\xc0\xaf\x97\x2a\xe2\xee\xb1\x89\x60\xb7\x4d\xbb\xd9\x26\x38\x98\x30\x67\x6e\x5f\x9d\x64\x67\x2e\xe1\x5a\xff\xb5\x69\x0e\x52\x55\x84\xc6\x7d\x77\xb6\x47\xd4\x5d\x24\x6c\xf0\xca\x90\xb3\x33\x64\x08\x3b\x22\x8a\xb6\xa5\x3f\xba\x4f\xa8\x7b\xf1\x58\x57\xf2\x5c\x1b\x33\x51\x8c\x2d\x22\x73\x9b\x0c\x36\x13\x56\x6a\x0a\x7d\xb9\xd1\xeb\x4b\x30\xb8\x9e\xf5\x44\x79\x30\x86\x20\x7d\x4c\xe3\xae\x63\x7a\x38\x21\x4a\xf5\x57\x7f\x66\xf4\x56\xc2\xe9\xc6\x77\x3a\x1b\x0d\x03\x09\x3b\xfe\x29\xda\x7e\x75\xd9\x47\xe0\x77\xe6\x10\x90\x3a\x00\x16\xf2\x4d\x73\xbe\xdd\x49\x11\x26\x94\x5e\x8f\x99\x32\x94\xa8\x43\xc8\x8e\x34\x72\xbc\x52\xb1\x92\x60\xe0\xf6\xf4\x13\xdf\xc1\x45\x84\x07\xb2\x27\x7d\xb7\xed\x11\x20\x2c\x0e\xd1\x68\xba\x17\xd8\xc5\x02\x2b\xff\xc8\xae\x7f\x9f\x7f\xb0\x50\x5e\xe8\x6f\x6b\x64\xce\x43\x13\xb8\x66\xb8\x3c\x4f\x30\xa6\x9d\x85\x1f\x5b\xa5\x4f\x4e\xeb\x10\x23\xc8\xc7\xcf\xcc\x2a\xe7\x77\x23\xdc\xdf\xd1\x55\x14\x23\x3b\xc4\x42\x8a\xdf\x9a\xf2\x9a\x5b\x7e\x0c\x94\xd5\xed\x24\x0a\xe7\xf2\x10\xa2\xd7\x4d\x3f\x38\xf9\xdd\x02\x42\xe6\xa6\x51\xe7\x9f\x29\x77\x18\xf0\x6a\x2c\xf5\x77\x79\xd5\x4c\x58\xe2\x78\x70\x95\xcc\xae\x0f\x84\x2e\x87\xf3\x01\x9a\xcd\xcd\x04\x93\xfb\xee\x15\x9b\x96\x56\x12\x44\x25\xb4\x4e\x7c\x3e\x73\x9e\x60\x56\x28\x17\xbd\x61\x68\x0f\xc1\xe1\xe8\x88\xd2\x4b\x95\x9d\x84\xf9\x23\x07\x77\xaf\x3b\xb9\x89\xa0\x92\xb5\xef\xb4\x8c\xb3\x04\xc1\x32\x22\xf4\xce\xd0\xb0\x26\x61\x76\xf7\x6e\xe5\x94\x18\x3d\x36\xb8\xa7\x98\x69\x6d\x35\x53\x61\x43\xcf\xbf\xdc\x8c\xca\xa6\x69\x84\xbb\xaa\xcf\x64\xea\x2f\xe4\x31\xb8\xf7\xa8\xbc\x2d\x7d\xa6\x38\xe1\xdd\xce\xdc\xab\xd6\xe3\xef\x94\x7d\xd5\xe9\x4d\x1e\x03\x23\x2c\xd8\x07\x3c\x79\xf5\x5b\xda\x91\xf0\xc9\xf6\xdd\xcc\xd7\xd7\x37\xb0\x41\xe4\x89\xdd\x99\xb8\x61\x1b\xc2\xb4\xce\xf3\x2e\x4f\x4a\x5e\xb2\x60\x5b\xa4\x92\xf4\xa6\x66\x17\xa1\xb8\xb9\xd3\x72\xb9\xe6\x0c\x82\x70\x5e\xee\x1c\xc9\x8f\xae\x84\x57\x2a\x53\xa4\x57\x7d\x5c\x4d\x90\xed\x9e\x36\x3c\xe7\xf1\x7c\x42\x98\x9c\xd6\xfb\xb3\x7c\x73\x08\xc9\x06\x89\xfa\x79\xc4\x41\x68\x6d\x5d\xf4\x29\x54\x25\x89\x0d\xeb\x63\xbe\xbd\xec\xf7\x1a\x64\x21\xdf\x23\xf9\x9d\xb2\xd3\x22\x42\xa7\x5f\x88\xf9\xa0\x96\x0c\x61\x9b\xc6\x26\x45\x0d\x3e\x75\x42\x61\xa4\xe6\xef\x95\x8b\x17\x12\x0e\x0f\xc4\x56\xfd\xc9\xdb\x48\x68\xdb\xc3\x6d\xc4\x4c\xb6\x20\x78\x74\x71\x75\xcd\x92\x77\x25\x58\xee\x94\xe4\x7c\xe0\xc3\x10\xce\xe5\x1f\x78\xf9\x3e\xbc\x9f\x85\x69\xeb\x17\x2f\xaa\x8b\xe0\x24\x74\xd4\x08\xc9\xb8\x8a\xfd\x66\x81\x7b\x71\x70\x98\x55\x27\x0f\xe1\x61\xc0\x97\xde\xc6\xc5\x59\x84\x32\x8b\x49\xac\x17\xd9\x06\x84\x38\xcb\xbb\xb3\x7e\x1c\xb3\x20\x78\x2e\xe6\x38\x76\x5f\xa7\x81\xe0\x31\x65\x5e\x9a\xc0\xa2\x1a\x42\xc2\x88\xe5\xf2\x8b\xf6\x1d\x84\x04\xe6\x6c\xe2\xe6\x7f\x77\x18\x30\x37\xc6\x74\x56\x2c\x7c\x40\x70\xcd\x6e\xe2\x49\x32\x6a\x21\x78\xfe\xba\xc7\x37\x23\x20\x8b\xd0\x9f\xbb\xe8\xc6\x62\xa1\x14\x42\x46\x9a\xde\xe1\xa8\xef\x77\x19\x5c\x68\xde\x13\x29\x1c\xff\x80\xa0\xd9\xb8\xf9\xd1\xc9\x88\xc7\x84\xa4\x0a\xb1\x56\xc9\x6f\x59\x84\xbd\x75\x73\xcb\x9d\xfb\x1d\x08\x9c\x52\xf7\x43\xab\x77\x14\x13\x92\x7b\x6e\x49\xc7\x2f\xee\x25\x58\xa5\xc4\x27\x4e\xde\x58\x4e\xd8\xb6\x65\xff\x93\xb8\x05\x9b\x09\x4f\xbf\x4a\xbf\x0e\xaf\x5f\x4b\xc8\x3e\x93\x2b\xaa\x17\x1c\xc4\xa0\x2e\x68\xec\xfb\x24\x5e\x3d\xc2\x52\x75\x8f\x8a\x05\xde\x12\x84\x2c\xf1\x6b\xd5\x05\x7d\xcb\x09\xe9\x45\x6b\xa3\xe6\x25\x29\x12\x62\xb4\x4b\xed\x15\x16\xcd\x61\xc3\x4f\xcf\x74\xf7\x27\x5f\xdf\xb2\x70\x92\x2f\xfe\x4d\x13\x2b\x8c\x30\xf7\xd0\x87\xda\xb5\xc7\xdb\x08\x66\x2d\xf2\x7d\xac\x3f\x3c\x6c\xd0\xec\xfb\x77\x78\xbd\x6d\x4f\x25\x9a\x36\xab\x51\xf1\x6b\x16\xa1\x6a\xa7\xe3\xde\x4f\xdc\x6a\x84\xab\x57\xf6\x57\x6f\xeb\x5c\x4b\x38\xf3\xbe\xe8\x9f\xe5\x71\x2e\x42\xbb\xeb\x4d\x0e\xa3\x63\xcb\x08\xa9\xdf\x27\xef\x32\x51\x39\xc6\x4c\x94\x59\xa7\xa2\x39\x4a\x9b\xc0\x82\xee\xb0\x82\xed\xdb\x56\x75\xc2\x35\xbc\x4e\xd6\xd9\x60\x45\xe8\xf7\xfa\xb0\xfe\xfc\x01\x21\x36\xd8\x4a\x8a\x7f\x7b\xf0\x64\x0f\xa1\x77\x4a\xea\x56\x8f\x04\x5d\xc2\x53\x2d\xe3\x03\x1c\xed\x5b\x08\xe1\xbc\x7b\x9e\x96\x9d\x54\x22\xd8\xf5\x4f\xe5\x3d\x2f\x92\x4a\xf8\xb5\x19\x2d\x0b\xc6\xda\x18\xb4\x2f\x4d\xfd\x62\x57\x1d\x43\xd8\xe0\x6c\xc5\x1b\x3d\xf3\x26\x61\x5e\xa6\x80\xcf\x51\xb5\xe7\x2c\x0c\x2a\xe9\x95\x26\xc7\x2f\xa3\x09\x1c\xda\xa3\x37\x90\x3e\xc4\x43\xb0\x7e\xfb\xc3\x33\x3b\xa9\x9a\xf0\xa4\xa4\x70\x4f\xe0\xdc\x93\x84\xec\xe7\x77\xaf\x6d\x5b\x22\x4c\xd0\xd9\x91\x30\xec\xb3\x70\x94\x05\x44\xc4\x9d\xd5\xf1\x10\x26\x64\x29\x56\xfa\xaa\xec\x31\x25\xf4\x1c\x33\x5f\x33\x36\xb4\x91\x70\x74\x58\x30\x7d\xd2\x11\x69\xc2\x48\x55\x45\xac\x43\x88\x10\x21\x3b\x6e\xb5\x46\x8a\x48\x0b\x0b\x8e\xc3\x7e\x17\xbc\xcf\xa4\x10\xe6\xad\xe0\x58\xae\x3d\xa0\x4d\xb0\xe1\x78\x1d\xa1\x3f\x93\x83\x30\xef\xca\xd5\x33\x96\xd2\x4d\xac\x09\x6c\x94\xf4\xd6\x7e\x66\x7c\x99\x05\xbd\x29\xb9\x9c\x4b\xb6\x4c\x27\xdc\x3b\xb5\x7f\x6f\x84\x92\x1e\xa1\x2a\xe3\xec\xcf\x47\x4a\x5a\x84\xdd\xae\x9d\x6d\x79\x8e\xba\x04\x7f\xce\xb2\xa8\x0e\x8f\x93\x84\x7b\xbb\x0f\xcc\xf5\x74\x4e\x20\x88\xed\xba\xa2\x7e\x45\xf3\x38\x21\xe5\x97\xa3\xd8\x3c\x9b\x63\x04\x59\xa8\x2c\xbb\x55\xd0\x52\x89\xb1\x53\x59\xdf\x0d\xae\x19\x13\x4a\x2f\x9c\x73\x69\xba\xa6\x4c\x78\xee\xea\x68\xbf\x65\xab\x1c\xa1\xed\xf1\x75\x6e\x93\x90\xcb\x04\x7e\xdd\xe3\xed\xc6\xe3\xf0\xdb\x56\x7f\xf2\x5a\x5f\x19\x83\x82\xd4\x3a\x65\xf7\x61\x0b\x82\xd7\xf5\x3d\x7a\x95\x89\x33\x09\x77\xdf\xbf\x94\xfa\xd8\x71\x9b\x81\x0d\xab\x78\x2b\x8f\x83\x34\xa1\xa9\x25\x44\x86\xef\xb1\x03\x61\x83\xd4\x8d\xc8\x60\x1f\x67\xc2\xbf\x95\x4e\x6f\x72\x4e\x5b\x12\x24\x2b\x1b\xbe\x0c\x09\x6c\x22\x7c\x9a\xf2\xed\xb5\xf1\x17\x23\x02\x4b\x61\x46\xf9\x43\x7d\x2b\xc2\x8c\xa1\x1f\x15\xbf\xd3\x74\x08\x8a\xeb\x65\x2d\x3d\x63\x16\x12\x96\xbf\x0b\xc9\x4b\x7b\xb5\x97\x41\x75\x9a\xfe\xdd\x85\xa9\x9e\x84\xb4\x8e\x60\xc1\x25\x71\x25\x84\x79\x1f\xf6\xac\x5c\xee\x5b\x45\x90\x8a\x18\xbd\xeb\x32\x7b\x2d\x81\xf3\xc1\x9f\x69\xfa\xf6\xdc\x84\xa6\xf5\xaf\x55\x7a\xb3\xf4\x08\x3c\x77\x47\x42\x06\x96\x89\x13\x2e\x4c\x33\xb3\x7d\xdf\x7c\x98\x0d\x47\x0f\x4c\xe3\xca\x2c\x9c\x4a\xb8\xfd\x76\x70\x40\xee\x64\x3b\xa1\xa3\xb7\xdd\xd7\x26\x34\x9f\xa0\x7d\xce\xf2\xf6\x05\x8e\x5b\x0c\x8e\xa9\x36\x9c\xbc\xb6\x80\x21\x34\x88\xce\x9c\xe6\xd5\x58\x4e\x10\x3a\x3a\x74\xce\xba\x29\x9d\xb0\xd6\x74\xe6\xf0\x2f\xb7\x60\xc2\x89\x47\x32\x6e\x3b\xf2\x0b\x18\x6c\xec\x39\xf7\x86\x73\x7c\x9a\xb1\xf2\xd1\xef\xe2\xf7\x49\x84\xe8\x24\x9f\x3d\xf5\x1f\xa2\x09\x2b\x9a\xb4\xe4\xdd\xe4\xe3\x08\xe1\x65\x66\x67\x39\x0c\xb7\x12\x64\x73\xf8\x64\x79\xbf\x2e\x25\xbc\xb5\xe0\x3b\xeb\xf2\x77\x31\xe1\x7d\xf9\x03\x1f\x4f\x95\xfd\x84\xb1\xea\x4f\x73\xe6\xea\xfb\x12\xd6\xac\x0d\x93\xb5\x0e\xb8\x4f\xf8\x2b\xb9\x50\xd6\xb8\xe6\x01\xe1\xf8\x2d\xb5\xbf\x27\x2c\x0b\x09\x2d\xb1\xa9\x51\xf1\x3b\xee\x13\x9c\x97\x18\x66\x05\xcd\x2d\x22\xf4\x6d\x08\x3f\x13\x73\xe7\x2e\xe1\x6a\xb0\x97\x58\x6f\x30\x0f\x81\x3f\x3b\xa1\xd1\xbe\xa0\x92\xc1\x5f\x85\x65\x4f\x6e\x98\xb7\x10\xdc\x9f\x72\xf3\x8a\x7f\xb8\x59\x09\xff\xd1\x8e\x3b\x53\xae\xea\x11\x96\x1c\x0c\x75\x17\x15\xd6\x25\x28\xca\x2a\x77\xe5\x35\x7f\x64\xe1\x7b\x2c\x6b\x27\xc3\x92\x25\xac\x9e\xd9\xc4\x3d\xe7\xb4\x24\xe1\x85\x75\xd2\xc3\x45\x87\x78\x08\xa1\xc5\xbb\x87\x97\xde\x2e\x25\xcc\x9f\xfa\x7d\xe7\x7f\x68\x4b\x92\x90\x2b\xdd\xf5\x81\x99\x28\x0f\x9d\xf7\x74\xa9\x8d\x23\xcf\xde\x20\x23\x67\xd0\x9d\x90\x78\x71\x06\x9f\x71\x57\x14\xe1\x8a\xef\xdb\xf7\xde\x53\xb6\x11\xc0\x28\x0c\x25\xbf\x33\x27\x14\x0d\xbb\x8c\xc5\x1f\x8d\x67\x26\xa6\xc4\x97\x5e\x3e\x17\x7c\xc4\x08\x3e\xf7\x35\xee\x1f\x8d\x5c\x44\xb8\xee\x30\x28\x34\x50\x5c\xc2\xe0\x66\x41\x59\x87\xf3\xba\x4c\x42\x4f\x74\xc7\xfd\x83\xbd\x7e\x04\x0b\xee\xfa\xdd\xb5\x72\x77\x08\x3f\xec\x0d\xbb\x6b\xc6\x31\xe5\xe0\xcd\xcd\x32\x12\x05\x0c\x94\x1e\xcc\xba\x5d\xf3\xff\x4c\x51\xa9\x26\x8b\xf3\x13\xb7\xfe\x2f\xbc\x56\x79\x67\x1b\x72\x5c\x96\x60\x53\xf6\xe0\x47\xea\xe0\x20\x0b\x1d\x32\xdf\xb7\x27\xb9\x39\x11\x8a\xa4\xb8\x8f\x59\xf3\x48\x10\xaa\x13\x2f\xfc\xed\xad\xc8\x20\x3c\xfa\xb8\x61\x95\xc1\xb0\x2b\xa1\xea\xdc\x01\x5f\x3e\xb1\x69\x84\x59\x2e\x7f\x73\xa6\x5a\x9e\x22\x74\x55\x95\x35\x6b\x1d\x96\x25\x2c\x5b\x11\x74\xcc\xf7\xc3\x79\x42\xbf\xe7\xd0\x97\xbd\x49\x42\x84\xc0\x2f\xad\x8e\x2a\x49\x5c\x04\xef\xad\x2e\x81\x55\x4d\x1a\x6c\x48\x7c\xb5\xf3\x5d\xc3\xe9\xd3\x84\x8f\x26\x51\xf9\xee\x75\xcf\x2a\xb1\xae\x6d\xb9\xf0\x11\x5e\x3b\xc2\xde\x79\x71\x2b\x3a\x0e\x2f\x22\x08\xf0\xe7\x68\x7d\xf0\x99\x4f\xe8\x0a\x38\xdf\xb5\xb5\x5c\x81\x30\x5d\xc1\xde\xeb\x50\x46\x11\x61\x4d\x85\x46\xc6\xa7\x19\xcf\x19\x4c\xe9\xda\x16\x69\x9a\x94\x4f\xe0\x95\xbb\xf2\xda\xf1\x79\x1d\x81\x75\x37\xdf\x84\x4b\xfa\x00\x03\xe3\xeb\xc5\xef\xb8\xfa\xe6\x11\x4e\x9e\x54\x4e\x1f\xcb\x98\x4d\xe0\x7f\x35\x22\x97\xf9\xd2\x86\xe0\x69\xd7\xfd\xf2\xb2\x71\x0d\x41\x79\x72\xd7\xeb\xbd\xff\xca\x09\x5e\x6b\x43\x1b\xa5\x64\x2e\x12\x62\x29\x58\x22\xaf\x97\x45\xd8\xba\xd4\x5d\x7a\xf4\x77\x35\x61\x8d\x5f\xdc\x92\x44\xc9\x20\x82\xa8\x8d\xb1\xd9\x9d\x2e\x4f\xc2\xdc\x1c\x46\x89\x7b\xc5\x1a\x82\x5d\x42\xb6\x8b\x2e\x4b\x8c\xf0\xf7\x79\x42\xc9\x8f\xcc\x34\x82\xc1\xb6\x34\x77\xcb\xb0\x20\xc2\x96\x9d\x9c\x9d\xb3\x3c\x0c\x08\xfc\x6b\x45\x0d\x55\xff\x7e\x67\xa1\x9c\x8c\x84\x22\xbf\x2b\xd0\x04\x34\x98\xfb\x17\x9b\x3e\x71\x10\x1e\x39\xdc\x58\x18\xd2\xaf\x4e\x70\x51\xaf\x54\x0e\x7e\x26\x4d\x78\x2f\xc1\x68\xd7\xf7\xe8\xb1\xe1\x68\x7b\xc8\xe9\xc6\x60\x37\x36\xdc\xe3\xd9\x66\xaa\x27\x35\x83\xd0\x99\x5d\xb3\xd1\xc7\x78\x21\xc1\xb9\x2c\xe7\x32\x5f\x4b\x17\x0b\x8a\x11\x1f\x34\xc3\xe6\x0a\x13\x56\x32\x6d\x7f\xcf\xcc\xd2\xfb\xff\xc4\x52\x5b\x11\xbf\xdd\xb1\x92\x04\x1e\xf7\xbc\x99\x59\x85\xea\x04\xa5\x8e\xc9\x42\xed\x19\x96\x04\x99\x15\x3d\x31\x31\xd6\xbf\x59\x30\xd2\xdb\xcc\x91\x64\x97\x45\xe0\xbc\x91\x9f\xa4\x46\x59\x34\x51\xb8\x39\xf7\x86\xa1\xd3\x96\x20\xbe\xac\x4a\x52\x41\x69\x36\xa1\xee\x8a\x37\xdf\x94\xe8\x47\x04\xa1\xbf\xd7\x0f\xf5\xa8\x14\x13\x52\xcb\xe7\xd5\xac\x19\xde\x48\x78\xe2\xbf\xf7\xe6\x5c\xff\x61\x16\x0a\x62\xb7\xad\xae\xd2\xce\x63\x21\xad\x4b\x9f\xff\xa4\x40\x3f\x0b\x86\xbe\x4f\xf2\xdb\xf8\x96\x12\xbe\xff\x2e\xeb\x7f\xf0\xce\x82\x26\xca\xff\xe1\x47\xde\x69\x23\x75\x99\x67\x95\x10\x32\xdd\x23\xec\xc9\x9d\x41\xb0\xe1\x0f\xf2\xbd\xed\x7f\x8b\xe0\x17\x16\x56\x17\xfc\x40\x86\xf0\x2a\xa0\x35\xad\xb3\xa0\x9a\x60\x37\x6f\x47\xbc\x85\x53\x26\xe1\xa3\xcb\x71\xf9\xc5\xa1\xcd\x0c\x96\x84\xb9\x7c\x8f\xd8\x56\x48\x18\x7b\x79\x5b\x42\xe9\xf1\x0a\xc2\x6c\x16\xdf\x4b\x99\x55\x12\x04\xc1\x37\x35\xc9\x89\x17\xdb\x58\x10\x94\x52\x5c\x5a\x33\xcb\x90\x26\xf0\x7f\x7f\xb4\xea\xfa\x8b\x2c\x93\x72\x19\xc2\xe9\x4a\x9b\x43\x8a\x8e\x65\x84\x7b\x75\x6a\x47\x88\x27\x8f\x50\x74\xef\xd1\xd5\x88\xce\x6c\x42\xbd\x9c\xe1\x9b\x8f\x16\x8b\x09\xab\xd7\x5d\xcf\xbf\xf4\xb0\x97\x85\xf3\x33\x74\x96\x27\x2d\xb7\x21\xc4\x26\xf6\x36\x4c\x79\xe5\x4a\x58\x2b\x66\x6a\x13\xe1\xe1\x44\x28\x7f\x33\xf5\xcc\xe6\x7a\x23\x82\x79\x49\xfb\xd7\x45\x11\x63\x2c\x0c\xb6\x5e\xb4\x7d\xa5\x45\x04\x9f\x33\x17\x5b\x36\x6e\xac\x22\xe4\xd6\x99\x3d\x88\x54\xb7\x23\x30\x87\x9e\x1f\x5c\x39\x56\x48\x70\xbb\x67\xd4\x96\x7f\x76\x09\xe1\xfa\xc0\x66\x5b\xa7\x62\x23\xc2\xbe\x84\xd4\x55\xc7\x8b\xd6\xb3\x95\x12\x6f\x91\x03\x72\xef\x9e\x56\x62\xb6\x7f\xe1\xf7\xca\xf6\x1c\x82\xfa\xc9\x35\x4f\x9e\x4d\x96\x25\xb8\x2f\x48\xb8\xca\x2f\xb4\xfa\x7f\x61\xcb\x05\xc5\x3e\xb9\xa7\x8a\x84\xf9\x27\x6f\xa8\xc4\x45\x87\x11\x98\xe2\x75\xbb\xb4\x57\x19\x11\x4a\xbf\x49\xdb\x6c\x77\x31\xa7\xdf\xda\x3c\xdd\x96\x67\x57\x13\xee\x66\xae\xb8\x9f\xa3\x29\x44\x88\x65\x3c\xc2\x13\x8f\xc4\x30\x58\x6b\x11\x69\xb2\xcd\xf1\x1c\xe1\x81\x13\x77\x75\xf3\x7b\x7d\xc2\x54\x27\x75\x8b\xfd\x06\xe7\x09\x41\x79\x83\x4b\x1f\x1e\xce\x61\xb0\xd2\xdc\xe1\x46\x7c\x7e\x1a\xe1\x98\x4c\xef\xe8\xe5\x33\x33\x08\x9b\x3a\x4b\x54\x39\x7d\xcc\x08\x7c\x95\xb9\x6b\x6a\x03\xd6\xfe\x2f\xe4\x87\x6c\x8b\x1c\x3e\xfe\x8b\x05\x01\x27\xa7\xdd\x4b\x8f\xf2\x12\x54\x6a\xfb\xa6\xe4\x35\xcf\x27\x78\xb7\x72\xde\x1b\xd9\xd4\xc4\x80\xd3\x9a\xcb\x27\xe1\xa9\x3e\xe1\x61\x4d\xfb\x99\xf3\x37\x25\x09\x71\x06\x0f\xb6\x5c\x53\x93\x20\xe4\x77\x69\xe7\xfa\xd6\x59\x10\xb4\x42\xdc\xaf\xd4\xfa\x0d\xb0\xa0\x7e\xef\xbb\xc3\x4a\xdf\xbb\x0c\x3c\xf9\x6a\xe7\x96\xb9\x2d\x20\x5c\x1a\xe2\x3b\x3a\x45\xae\x90\x50\xdc\x5b\x98\x17\x65\x21\x4e\x48\x78\x59\xd6\xfd\x61\x97\x2f\xe1\x81\x84\xa6\x57\xe9\xa4\x18\x06\xd2\x89\xcf\x9f\x77\x05\xc4\x12\x66\xfc\x7c\xbd\x71\xbd\xf7\x5e\x82\x8f\xc4\x4d\x9f\xa4\xb5\xc1\x0c\x4e\xb5\xd5\x73\x1f\x6a\x5f\x49\x78\xef\x7c\x3f\xf0\xd2\xa4\x79\x04\x29\x85\xec\x6f\xd3\xcc\xe7\x10\xde\x99\xe5\x37\x9c\x5c\xaf\x4c\x38\xae\x6f\x5e\x2b\x13\xcc\x4b\x70\x7a\x99\x11\xff\xe9\x82\xcc\x04\x7e\x47\x3f\xb8\xf3\xd2\x5c\x8c\x90\xf6\xe0\x4d\x74\xaa\xeb\x15\x82\xd6\xa7\xcf\xd5\x7d\x33\x37\x10\x14\x5f\xf2\xf2\xd7\xec\x56\x27\xe8\xdf\x5a\xd9\x21\xaa\x20\x45\x10\x3f\xed\xe5\xfc\xf6\x50\x53\x25\x7c\xea\xd4\x12\x27\xef\x93\x20\x94\xda\xf9\x7f\x39\x5d\xe4\x4e\x38\xd3\x1e\xb8\xaf\xa7\xf8\x32\x03\xcb\x92\xfc\x88\x9c\xfa\x35\x84\xf2\x27\xbf\xb2\xe5\xcc\xb4\x09\x87\x0b\x1f\x8c\x5c\x7c\x7c\xb8\x12\x5d\xe7\xf6\x2d\x3b\xe3\x73\x9e\xfe\xbf\xd0\x3b\xa2\x58\x52\x7e\x6a\x32\x21\x25\xfe\x27\x6f\x83\x86\x25\xe1\xe2\x6e\xcd\x9d\x3e\x1b\xef\x11\xb4\x35\x15\xdd\x2a\x67\x75\x13\xd6\x6e\xef\xde\x78\x77\x1c\x53\x9d\x8e\x5c\x7d\xd3\xf9\x9e\x70\xc0\x7a\xdf\xf7\xaa\xb7\x4d\x84\x8f\xd3\x6a\x4b\x1e\x7f\x39\x49\x88\x88\xb7\xb0\x35\x3d\x38\x85\x20\xe4\x54\x57\x34\x12\x07\x16\x84\x8f\x18\x71\xdb\x5c\xc8\x67\x50\xbb\xba\xe6\x89\xf9\xfe\x48\xc2\x5e\xc9\x94\x27\xc3\xdb\x17\x10\x1c\x3d\xeb\x5c\x0a\x7c\x14\x08\xd6\x0e\x87\x9e\xe7\xcf\x69\x24\xb0\x7a\x12\x78\x6d\x2c\x6f\x32\x10\x5f\xd1\x27\x79\xd0\xa9\x97\x40\x0b\xd4\xb2\xa5\x33\xf3\x09\xa1\xc3\xea\x57\x44\x2c\xf7\x12\x8c\x66\xff\xf6\xb9\xcb\xdc\x22\x88\xce\x95\xdc\x5a\xf7\x7c\x2e\x1b\xce\xe9\x0f\xf9\xaf\xec\xfb\xc2\x9a\x80\x3c\xbf\x8b\xfd\x47\xfe\xd7\x95\x50\xb3\x1f\xbd\xa7\x17\x35\x87\x50\x12\x52\xd1\x98\x88\xf1\xff\xa3\xde\xca\x59\xd5\xea\x03\x2c\x6c\x89\xe1\x50\x5e\xf7\xf0\x2c\xe1\xc6\xde\xfd\x5d\x0f\x32\xae\x10\xda\x06\x54\x32\x3b\x53\x2f\x30\x60\xcd\x0c\xd0\xe4\x2a\x9e\x4b\x38\x93\xcc\x54\x8b\x6b\x4d\x22\xc4\x45\x54\x26\xad\x72\xaa\x20\x3c\xd1\xd5\xf5\x29\xfb\x5d\x41\xb0\xe3\xfa\xbc\x7d\xc5\x83\xd5\x84\xc9\xe7\x55\x5b\x8e\xce\x5f\x4a\xf8\xad\x62\x63\xab\xbf\xfa\x08\x41\xb5\xc8\xad\x39\x75\x79\x0b\xe1\xce\x97\x29\xb2\x4f\x6d\xd2\x08\xaa\xf1\x05\x4a\xe6\xb7\x7c\x08\x4f\x66\x3e\xcc\x19\x76\x76\x26\x28\x8b\xe7\x7a\xf5\xc5\x6a\x10\xf4\x82\xb6\x75\xf1\x37\x27\x11\x36\x0d\x36\x77\x72\x86\xd4\x12\x76\xb4\x2a\x4c\xd3\xda\x53\x49\xf8\xe4\x9b\xe6\x50\x74\x5a\x9b\x60\x1f\x9b\x79\x75\xc3\x2d\x57\x82\xc6\xa7\x21\xf9\x63\xeb\xcb\x08\x9a\xaa\x3b\x79\xed\xbb\xd7\x13\xb6\x66\xdd\xe0\xcc\x3a\xf2\x84\xa0\xd9\x56\xe2\xfe\x42\xa5\x81\xa0\xf2\x34\xc6\xf8\x5b\x73\x11\x41\xed\xc5\xb3\xeb\x97\x17\x1c\x25\xec\x34\x11\xd9\x79\x26\x4f\x93\xe0\x16\x76\x2f\xc8\xb4\x6d\x84\x85\xd9\x9f\x33\x4e\x1a\xb5\x59\x11\xa6\x4b\x2e\x3b\xe0\x31\xc5\x8a\x90\xfe\xed\x7e\x51\x4c\xf1\x62\x82\x75\x72\xc8\x1a\xd5\x29\x6b\x19\x7c\xca\xda\xb8\xda\xa1\x4a\x9f\x60\xf5\xa1\xda\xf1\xe5\xbf\x74\xc2\x0f\x89\x4d\x7e\xdb\x1c\x83\x08\x86\x5c\xa1\xa9\xd1\xb7\xef\x10\x44\xa3\x0b\x9a\xfe\x43\x57\xaf\xad\x81\x6c\xc7\x05\xc2\x11\x81\xa5\xee\xd6\x31\x16\x84\x03\xae\x9d\x17\x83\x17\xea\x33\x13\xc5\x66\xd9\x52\xcd\xa9\x0b\x17\x12\xce\x09\x55\x8b\x0f\x08\xeb\x13\x7e\x24\x4e\x79\xa2\x92\xfa\x90\xa0\xbf\xef\x51\xff\xe1\xdc\x52\x42\x46\xa4\x6c\xb6\xbe\xfc\x29\x02\xd7\xda\xca\x17\xfe\xc2\x61\x84\x47\xdf\x56\xa9\xfc\x15\x09\x25\x68\x29\x89\xad\x95\xb7\xd3\x24\x1c\x1f\xa8\xb0\xe7\x89\x56\x27\x08\xcc\x15\xa8\x2c\x08\xf8\x55\x89\xc5\x2b\x6a\x79\x4f\xf3\x6c\x26\x8c\x14\xf5\x15\x45\x8e\x3f\x0b\x17\xb4\x78\xef\xd1\x58\xcc\x43\xd8\x3b\x29\xc8\x25\x93\x67\x84\x85\x07\xe1\x56\xc6\xef\xe7\x2f\x20\x1c\x9b\x73\x4b\xab\xb9\xd6\x95\x90\x3f\xe7\xd4\x83\xb8\xbb\xad\x2c\xc4\xed\xe1\xfd\x9b\x53\xfe\x85\x85\xc2\x58\xb5\xf5\x77\x16\x0b\x13\x64\xce\x94\x5b\x18\xad\xb1\x60\x83\xa8\xf5\xed\x47\x99\x49\x19\x04\xc1\xa9\x4f\x35\x26\x1d\x30\x23\x70\xab\x5e\x5f\xb3\xd6\x4d\x8e\x90\x7f\xfa\xfa\x9f\x8e\x88\x6f\x2c\x94\x2f\x6d\x35\xfb\x60\x78\x8e\x81\x48\xce\x9f\x54\x4e\xfe\x6b\x34\x81\x23\x07\x06\xab\x3c\x46\x4b\x08\xd7\x5c\x04\x9d\x54\xaa\x6c\x08\x63\xf8\xb3\x8b\x27\x7f\x15\x41\xf6\xae\x49\x44\x63\x4b\x0b\x41\x86\xf3\x60\xe6\xf7\x80\x2a\x42\xdd\x02\xb7\x40\xee\x92\x38\x42\xc7\xa7\x85\x55\xef\xc4\xf3\x09\xa2\x1b\x7e\xb6\x8d\xc9\x59\x12\x9a\x72\x9d\xb4\x1b\xa7\xe6\x13\xb4\x06\xf7\x5b\xfd\x87\xdf\xe7\xcd\x9b\x8e\xc4\x34\x10\xf4\x36\xae\xa9\x7b\x5e\x7c\x89\x41\x2e\xff\xeb\xef\x4f\xc6\xa7\x7d\x9b\xce\x89\x9d\xab\x77\x25\x18\x7d\x2b\xb2\xde\x64\x19\x43\x30\x9a\xfb\xc1\xf1\xec\x78\x51\x4e\xcf\x32\xb5\x7d\x72\x8a\xed\x4c\x2c\xdf\xc6\xfa\x76\xd7\xb9\x04\xe1\x6f\xa3\xe6\xc3\x06\x25\x84\xbb\x01\xbb\x35\x6c\xa3\x73\x09\x25\x79\x2d\xfc\xda\x9f\x4b\x08\xd6\x91\xdb\x9c\xd3\x37\x34\x30\x78\x9d\x3b\x62\xb8\x52\xf0\x06\xdb\x74\xfc\x4e\xe8\xfb\x7d\x4c\x20\xa1\xc2\xcc\xb3\x67\xcb\x93\x40\xc2\x9e\x6f\xf5\x8b\x82\xcc\x44\x08\xd5\x57\xb5\x64\x2e\xce\x5e\x48\x58\x71\xa6\xf4\xc1\x2d\x5f\x4b\x42\xdd\x01\x5e\x83\xa8\x98\xf5\x6c\xe0\xb1\x71\x91\xea\xe6\x97\x22\x44\x1c\xcf\x1f\xde\x38\x94\x4d\x50\x0b\xe6\x89\xff\x51\x93\xcd\xe0\xf7\x85\x9d\x2e\xe2\x1d\xdd\x0c\x42\x8f\xf1\xe9\x34\x26\xbf\x61\x30\xe8\x57\xda\x3b\x2b\xb7\x8a\x70\x23\xd0\x71\x93\x72\xd8\x64\xc2\xa2\x8d\xaf\xd5\x93\x16\x2b\x10\xa0\xe0\x74\x24\x18\xd3\x09\x7b\xbc\x0b\xd3\x43\xb7\x2d\x21\xb4\x5a\x15\xee\xb8\xf9\xfb\x06\x61\xb9\x75\xb6\x54\x3b\x6f\x1a\x41\x8d\x7b\x61\x6e\x3f\xcf\x7a\x82\x9a\x80\xd0\xe3\x13\xeb\x9d\x09\x6a\xdd\xab\x52\x9e\xd9\x4e\x22\xe8\xdd\xc9\xf8\xa6\x90\x75\x8e\xc1\xb9\x02\xef\x57\x16\xfc\x75\x84\xb6\x87\x1c\x6b\xae\x6d\x2c\x60\x83\xd3\x39\xde\x29\x6a\xff\x04\x08\xe7\x37\x5c\xe5\x1e\x58\x9d\x4b\xc8\x91\xe5\xdc\xf8\xec\xaf\x39\x83\x45\xb2\x06\xc5\x91\x3d\xd2\x84\x29\x25\xbf\x16\x99\x27\xf8\x30\x18\xbd\xa3\x2a\x7a\xc8\xf1\x38\x81\xef\xda\xec\x36\xd1\xad\x7b\x09\x25\xf2\x1b\x75\x96\x44\x27\x10\x5c\xeb\x46\xfd\x38\x33\xd6\x11\x84\x77\x2d\x7c\x56\x2d\x26\x43\x38\xb8\x6d\xca\xa7\xb7\x3f\x15\x09\xcd\x4f\x2d\x64\x03\x96\x26\x11\x9a\x97\x17\xcc\x9b\xa6\xff\x9e\xa0\xf9\xde\x5b\xec\xfe\x99\xf7\x04\x59\xa5\xa1\xc1\xfd\xd7\x4b\x08\x81\x12\xc5\xf7\x5e\x8b\xb4\x12\x26\x1d\x8a\x61\xba\x86\x6b\x08\xb6\xb1\xe1\x21\x8b\xca\xbd\x09\x1e\x36\x8a\xeb\xcc\x2d\xef\x11\xf2\xcd\x34\x78\x3b\x94\xaf\x13\x78\x9a\x23\x7c\x35\xab\x0e\x11\x8c\x1c\x87\xa4\x7e\x55\xfc\x64\x61\xfe\x8a\x5f\xdb\x49\xb2\x81\x70\xf1\xe6\xf7\x46\xbf\xa1\xdb\x84\x27\xee\x7d\x27\x02\x4f\x2e\x23\x0c\xdc\xbd\x66\x63\x75\xb5\x92\xb0\x37\x4e\x7a\x49\x4b\xe0\x4c\x82\xf1\xec\xdc\x82\xd3\xe1\xea\x04\xcd\xd5\x17\xf6\xcd\x2f\xe4\x25\xec\x52\x2f\x3c\x5a\x79\x5b\x86\xd0\xdc\x77\xda\x22\x63\xad\x20\x1b\xbe\x39\xee\x4f\xe4\x6d\xb7\x27\x0c\x9c\xbc\xe8\x1f\xb3\x4e\x9d\x20\x58\x93\x71\x65\x89\x8c\x11\x21\xb3\x48\xd6\x25\x33\x79\x16\xe1\xc0\xf7\xfa\x64\x9f\x1d\x03\x0c\xca\x5f\x7a\xbd\x36\xec\x0d\x24\xcc\x9d\xcc\xb5\x74\x45\x53\x3e\xa1\xd3\x35\xb7\xac\x24\xf5\x36\x83\x0d\xaa\xbb\x6f\x9b\xa9\xef\x23\xfc\xa5\x27\x93\xca\xb6\xec\x26\xfc\x79\x90\xe2\x22\xfd\xb8\x95\x85\x16\x55\xd5\xb9\xa9\x2d\x65\x84\xda\x0f\x3f\x96\xec\x7f\x56\x46\x68\xb8\x9d\xb0\x62\x7d\x9f\x30\x81\xdf\xe6\xab\xc2\xe6\x53\xae\x84\xda\xf5\x56\x3e\x33\xef\x19\x12\xf8\xa6\xcc\x11\x88\x8f\xf0\x26\x18\x0b\xb6\xb7\x4e\x32\xbc\x4e\x38\xff\xdb\x45\x61\xbb\xec\xd1\xff\x85\xc4\x49\xed\x32\xd3\xec\x8f\x12\x0c\x1a\xe6\x8f\x5e\x6a\x4a\x20\x7c\x9d\x72\x64\x4b\x30\xef\x23\x16\x7a\x8c\x2f\xbd\xd2\x10\xba\x4d\xf8\xb0\x73\x55\x81\x66\xbd\x24\xe1\x0a\x2f\x93\xe5\x96\x3b\x8f\xb0\x5a\xf1\xaa\xda\xbb\x06\x45\xc2\x8e\x90\xe3\x33\x26\xcd\x4c\x26\x2c\x70\x7d\xf8\x94\x6b\xc7\x3e\xc2\x16\x9e\x0a\xbe\xc7\x0e\x0f\x08\x9d\xcf\xaa\x7e\x05\x0c\x75\x33\x28\x5b\x7b\xd6\x73\x68\x6e\x1e\x83\x3b\xf3\xe6\x45\xf2\x1c\x39\x43\x78\xa3\xc1\xf3\xd2\x6a\x28\x93\xd0\x1a\x7a\x46\xdb\x67\x91\x3c\x41\xfa\xfd\xce\xba\x84\x23\x77\x08\xac\xcc\x20\x99\xc7\x35\xd5\x84\x79\x8e\xf2\xbf\x8a\x7e\xf6\x11\x7a\xf6\x5d\x18\xfc\x6f\xf2\x7d\x3d\xf5\xe0\x3b\x5e\x37\x36\x24\x3b\xe7\xad\xd9\xf8\xa5\x8a\xb0\x72\xc6\xe2\x69\xce\xe3\xd8\xf0\xfd\xbd\xf2\xcf\xba\x0b\x0c\xae\x6c\x32\x50\xfc\xaf\x2c\x59\x98\x73\x79\x9d\xa6\x27\x1b\xae\x74\x2a\xf0\x0e\xa5\x6f\x61\x43\xe2\x7c\x95\x8a\x1c\x29\x5e\x82\x7a\xde\x9f\xb1\x57\x76\x71\x04\x89\x23\x2d\x35\x56\x41\x8e\x84\xc3\xb1\x6a\x66\xa7\x3d\x83\x08\x12\x0b\xf8\x97\xaf\xcc\x59\x4b\xd0\x99\x7e\x3f\xbe\x2b\x7d\x0d\x81\xee\xf5\xf7\x8f\x36\x26\x13\x14\xa7\x29\xf4\xf9\x86\x9a\x11\x2a\x4d\xef\x4f\xd7\xed\x90\x21\x04\x6b\x6e\x0d\x54\x31\xb1\x23\x4c\xbf\xe7\xca\x33\xdb\xc8\x96\xd0\x77\xc9\x2f\x59\x5e\x27\x80\x70\x2c\xbb\x3b\xfe\x9a\xd8\x61\x82\xf6\xa3\x7d\xc7\xcc\x64\xf5\x08\xfa\x93\x9d\x8f\xde\x52\xb1\x65\x83\xee\xf4\xd4\xd2\x57\x21\xde\x6c\x98\x7d\xf0\x25\x67\xb6\xd6\x76\x82\xe0\x3e\xe1\x87\x1e\x5a\x5d\xac\x09\x9c\x75\x4d\x0a\x38\xfe\x96\x87\x26\xb0\x5d\xdc\x40\x4c\xf6\x5c\x54\x25\xd2\xc5\xff\x39\xa6\xff\x95\x27\xa4\x0e\x66\x19\xaf\x1e\x09\x25\xa8\xef\xea\x7a\xf5\xac\x97\x1d\xd6\xc9\xcf\x8b\x82\xfe\x3e\x23\xec\x98\xbf\x50\xfe\xe5\x77\x6b\x42\xbb\x22\x2b\xe3\xf2\xa2\x95\x84\x43\xca\x01\xa7\x4b\x46\xcc\x08\x93\x5e\x5e\x4d\x4c\xc9\x37\x20\x0c\xfc\x0b\x33\x0b\xe5\x3a\x40\x90\xb9\xfd\xf9\x88\x5e\xd4\xf8\x65\x80\x23\xfd\x52\x37\xe7\x4d\x82\xe8\x96\xb5\xe5\xb6\x99\x89\x84\xcf\xa3\x9f\x7f\x84\x2d\xcb\x25\x78\xb7\xe8\xc8\x2c\x0b\x6d\x22\x2c\x4a\xff\xf2\x3a\x74\xbc\xcc\x6e\x9c\xb6\x28\xef\xbd\x13\xe1\xf1\xe4\x65\xfb\x94\xc6\xdc\xd8\xf0\x59\xe1\x7d\x81\xcd\xfa\x83\x84\x30\x8b\xce\xc7\x2e\xd3\xf3\xd8\x26\xdd\x86\x57\xe7\xaf\x85\x3a\x11\x64\x0d\xb4\xcb\x5a\x83\x75\x08\xdb\x17\x17\xfd\xeb\x53\xb3\x25\xf8\x7e\x9c\x76\x43\xf5\xc2\x4c\x82\x82\xc8\xf7\x62\xa3\xdf\xeb\x08\xd6\xf5\x21\x52\x2b\xee\x96\x11\x5a\x4e\x9d\x9b\x59\x51\x7c\x9b\x70\x63\x55\xa6\xdc\x88\xc5\xf8\xa7\x60\x81\xe6\xef\x83\x33\xaf\x13\x1c\x2c\xb6\xbd\x5b\x33\x3b\x97\x20\xbd\x98\xf3\x5e\x93\x68\x0e\xc1\x58\xcc\xba\x03\xae\xd7\x09\x91\xaf\xff\x75\x6b\x7d\xde\x40\x58\x82\x7b\x3a\x2e\x42\x57\x19\xfc\x78\x35\x6f\x37\x73\x4c\x83\x10\x5f\x8a\xb7\x39\x3a\x46\x04\x83\xba\x6b\x3d\x4a\x77\xe6\x13\x9e\x7d\x49\xdb\x79\xa2\xee\x3c\x03\xfe\x87\xbd\x3a\x77\xaf\xca\x12\x9e\x72\x57\xde\x6a\x12\xe7\x21\xc4\xd7\x7f\x5e\x74\xb6\x5e\x8c\xe0\x2e\x66\xd8\x79\xcb\xa1\xb6\x12\x3a\x83\x29\x8c\xa7\xec\x5c\x9a\x40\xf8\xb6\xfc\xeb\xc7\xa6\x8c\xb2\x70\x28\x8e\xc3\x57\x63\xbb\x31\xc1\x21\x6f\xcb\xde\x7e\xcf\x2a\x42\xd2\x0d\x15\xc1\x07\xce\x79\x0c\xce\x9f\x48\xfc\x1d\x17\x92\x4c\x98\x21\xed\xe5\xf0\x48\x32\x85\xb0\x40\xa0\xf0\xb6\xf9\xd5\x54\x42\x61\x7a\x74\x91\x81\xba\x1f\x41\x7b\xce\x2c\xef\xaf\xcf\xf2\x19\x58\xfb\x1d\x7e\xbc\xec\x53\x30\x41\x2b\xea\x81\xcd\x26\xe3\x79\x84\x9f\xde\xce\xfa\xf9\x9d\xca\x84\x95\xdc\xdb\x57\xcd\x6b\x92\x67\x10\xfd\xd6\xab\xe1\xaa\xf7\x6a\x42\xf5\xd3\x39\x87\x43\xf2\x54\x09\x42\x7d\x27\x85\xf4\xa7\xba\x12\x2a\x7e\xbd\x57\xb2\x2b\x32\x21\x34\x1c\xfa\xf4\xa2\x4a\x72\x31\xe1\x62\xa4\xa9\x71\xd5\x1e\x23\xb6\xf2\x54\xba\x33\xba\xde\xad\x80\x85\x9f\xc9\x9c\xd5\xb3\xe6\x39\x11\x94\x7a\x5e\x1e\x71\x7c\xfa\x81\x85\xa0\xad\xdf\x77\x9e\x6a\x8a\x23\x0c\x6f\xef\xbf\xe4\x51\xc5\xff\xbf\x60\x61\x9f\x10\x70\x27\xde\x97\x60\xf1\x48\xa7\x8b\xcb\x5f\x9f\x0d\xf9\x17\xfd\x8f\x3f\xae\xd8\xc2\x60\xb2\x49\xc3\xd4\x1f\x0b\x15\x09\xac\x31\x4a\x79\x9b\x96\x43\xb8\x91\xb5\x43\xa8\xdc\x37\x9b\x20\x68\xf3\xf9\xe2\x7f\xa8\xeb\xde\xde\xfd\x6e\x7c\xda\x13\x1b\xbe\x40\x70\xd3\x26\xc2\xd9\xc6\xa5\xa9\xfe\xab\x74\x19\xf0\xc6\xd8\xce\x14\x3c\x62\xcb\x36\x89\xdf\xd9\x7c\xff\xb0\x1d\x2f\x61\xcb\xab\xcc\x40\x2f\x9b\x59\x04\xe5\xe0\x45\x45\x4a\x22\x87\xd9\x70\xf2\xd0\x5c\xb9\x33\x15\x62\x84\x29\xef\x37\xc5\x1f\x0f\xaf\x26\xac\x7b\x6a\xa1\x51\x10\x51\x4d\x08\x78\x3c\x60\x54\xa9\x1c\x45\x48\x10\xc8\x2e\x93\x58\x18\x49\x78\x18\x6e\x62\x2d\x1a\xa9\x42\x10\x16\xbb\x70\x36\x5b\xad\x80\xf0\x40\xc7\x5a\x3a\xcc\xa6\x81\x70\x37\xdd\xab\x99\xcb\xad\x85\xa0\xa2\xfc\xba\xe2\xcb\x8e\x07\x04\x09\xa7\xe1\xfd\x53\xc3\xab\x18\xd4\x13\x87\xf3\x7f\x93\x56\x6b\x90\x9f\xcc\x4f\x3f\x42\x2c\x67\x77\x5b\x75\xea\x09\x42\x66\xec\xcd\x4d\xa7\xf6\xdb\x10\x12\x2d\xcc\xbe\xa4\xa5\x24\x13\x44\xaa\xfa\x4d\x95\xb4\x45\x08\x2b\xec\x94\xa6\x3c\x9e\x3c\x89\xc0\xf7\x20\x77\x6e\xf3\xc8\x23\x82\x70\xe2\x9e\xc4\x19\x73\xef\x11\x64\xcf\x7c\x3b\x2f\x18\x3b\xfe\x72\x99\x95\xed\x95\xb0\xbc\x9d\x30\x4a\xc6\xf9\xd7\x84\x33\x09\xdb\xee\xdb\xf7\x58\xbd\xbf\x4a\x30\xb1\x3a\xfa\x30\x6e\x6b\x06\xdb\x84\x3f\xbf\x44\xcc\xf8\xd7\x12\x3c\xec\x77\xcb\x87\xd4\x4e\x25\xbc\x1e\x5c\x90\x60\xe9\x39\x8d\xf0\xa8\x51\x39\xb2\x5e\x4f\x90\x0d\xfd\x4b\xd6\xcc\xb9\xbe\xe7\x0f\x0b\xdc\x7c\x92\xc9\x15\x8b\xab\x08\x8b\x95\x2a\x66\xec\xed\xf3\x23\x74\x97\xb6\x6b\x56\x47\xef\x24\x38\xcc\x97\x36\xe6\x55\xb5\x21\xe4\x84\xbc\xb7\x5d\xf6\xf1\x2a\x83\xf0\x1f\x09\xde\x4c\x81\x13\x81\x2f\xfc\xb4\xe1\x2a\xdf\x05\x84\x91\x7e\x15\xa5\x79\x49\xcd\x0c\xe6\x0f\xe4\xde\xd3\x18\xfc\xc6\x82\xc0\xae\xfe\xeb\x9f\x3e\x8a\x12\x8c\x63\x67\x4f\xe9\x59\xf9\x8c\x85\x69\x1b\x8b\x79\x96\x6f\x90\xa7\x09\x50\xa2\x4f\xec\xaf\x73\xb5\x95\x88\x5a\xa5\xeb\xdd\x53\xe9\x49\x08\x9c\x3b\xbb\xd0\xfb\xa4\x34\xe1\x62\x10\x87\x6f\xd6\x59\x3b\x36\xf8\xdc\xad\xac\x0d\x8f\xcf\xad\x9c\x40\xf0\xe5\xde\x91\xd5\x9b\x2e\x11\x5c\xbd\x8a\x6d\xbc\xaf\x66\x12\x1c\x5c\x75\xf4\xff\x2b\x5f\x94\xfa\xe5\x67\x7e\xbc\x47\x08\x88\x35\x77\xaa\x77\xa8\x66\xc3\x01\x0f\xd9\x55\x6d\x15\xcd\x0c\x5a\xa7\x8c\x5d\x0d\x59\x5c\x4d\x10\xbd\x3d\x96\x64\x31\x78\x9b\xc0\x95\x43\xbe\x2b\xdd\x22\x19\x74\x75\x56\x6c\xf8\xaf\x0c\x9c\xcb\xf3\x6f\x33\x9b\x49\x28\xaf\x1d\xf1\xba\xc1\x27\x42\x88\x6c\x89\x89\x77\xf2\x0c\x26\x74\x9c\xd2\xd3\x55\x9d\xb9\x85\xa0\xf4\x9c\xf5\x22\x6c\xc6\x00\x0b\xef\x15\xde\x4c\x12\x3d\x6b\x4c\x78\xd4\x70\xf3\x8f\x88\x2d\xc3\x86\x53\x11\xa7\xd2\xa6\xfd\x3f\x48\x1a\xd5\x6c\xfc\xfe\xe6\xdc\xff\x82\xdd\x6d\x4b\xf5\xed\x9b\xef\x32\x88\x37\x28\x96\x71\x9b\x1e\x43\xf0\xeb\x6e\xcb\x7c\xc7\xfc\x26\x08\x7c\x59\xe3\xab\x38\x8e\x3f\x35\x73\x5c\xaa\xee\xd4\x13\xe4\x53\x2e\x67\xfd\xd0\xbb\x45\x30\xbc\xbd\xfd\x77\xcb\x89\x6c\x42\xd9\x95\xe3\x4f\x76\x8b\x0d\xb3\xf0\x6d\xb3\xe8\x8d\x57\x4d\x9e\xf4\x7f\xf8\xcd\xeb\xf0\xcc\xc9\xb4\xbe\x12\x5a\x15\x37\x46\x93\x5f\xbd\xa9\xc4\xb1\xed\xad\x8b\x16\xd4\x56\x10\xe6\x55\x75\xe8\x2e\x79\xa1\x49\xd0\xdb\xbc\x64\x76\x4c\xdd\x64\x36\x94\x73\x72\x0a\x07\x3d\x1d\x64\x61\xb0\xcc\x61\xf9\xf1\x13\x7c\x84\x33\xf5\x73\xb9\x35\x5e\xbd\x63\x4d\xc0\xe1\x46\x64\xe7\xb7\xf9\x53\x09\x05\x6d\xfb\x1f\x2f\x54\x39\x48\xe0\xa9\x12\x79\x6d\x7d\xac\x8e\x41\x45\x41\x90\xda\x42\x9e\x7b\x0c\x3e\xf2\x96\x89\xbf\xff\x65\x4a\x48\x72\xf7\xd3\xcf\xe3\x1c\x62\x41\x74\xe8\x62\xad\x76\xfe\x43\x06\x5f\x9b\xfc\xe2\x56\x71\xab\xd0\x04\x42\x66\x6f\x4c\xee\x3c\x5d\xcf\xc2\x88\x94\xda\xd0\xb4\xc5\xe9\x04\x0d\x89\xe6\xab\xca\xd1\x55\x84\x7b\x56\x5f\x24\x03\x8d\x17\x13\xd6\xad\x1e\x71\xe6\x0b\x9a\x49\x08\x28\x8f\x2a\x2e\xe6\xdd\x47\x70\x88\x99\x6b\x27\x3c\x7f\x0d\x21\xfa\x4a\x8f\xa4\x1a\xa3\x40\xf8\xf9\xbe\xf6\x53\xdd\x79\x41\x42\x5c\xd2\x28\xc7\x62\x8f\x65\x04\xfb\xbf\x11\x3b\x62\xe3\x4d\x08\xd2\x9b\xe6\x70\x95\x2c\xdb\x46\xe8\x56\x3b\x91\xb3\x4d\xde\x9d\xa0\x32\xc0\x63\x74\x71\x48\x8b\xd0\xf3\x30\xa4\x4a\xd2\xfd\x32\x21\x77\xf9\xcb\xd8\xb4\x8f\x3f\x58\x50\x28\x9c\x9a\x1c\xbc\xee\x2e\x61\x6d\x5c\x5a\x19\x97\xea\x03\x42\x12\xf3\xa6\x65\x76\xeb\x33\xc2\xec\xba\x8c\xd7\xe1\xa7\x18\x42\xeb\x92\xa2\xf4\xff\xca\x25\xd9\x30\x01\xd5\x1b\xbb\xc6\xef\xfe\x09\x05\x37\xba\xaa\x08\xd3\xb2\x17\xf0\xf3\xa7\x9e\x24\x54\xbc\x7e\xe5\xbb\x50\x33\x90\x60\x13\xe2\xb2\x71\x83\xd2\x6e\xc2\x2a\x4e\xae\xfb\x59\xa1\x92\x0c\x1e\xbd\xaa\xbf\x5e\x12\xca\x4d\x18\xf2\x4a\x7a\x28\xe5\x22\x48\x28\xd3\x7c\xbd\xd8\xd4\x8e\x45\x90\x98\x3c\xc7\xf0\xc8\xfd\x65\x84\xe1\xe0\xd0\x14\xc5\x6d\x1a\x84\xac\x75\xc1\xb1\xc6\xe3\x1f\xdc\x53\x12\x9f\x04\xee\x3b\x5a\xb3\x95\xca\x75\x6b\xcd\x33\x04\xd7\xd2\x04\xf2\x9d\xff\x65\xf8\x1e\xe0\x20\x4c\x3a\x66\xfe\xd7\xaa\xb5\x85\x81\x88\xbd\x52\x6d\x7b\xc8\x56\x42\xee\x59\x8f\x52\x01\xdd\x7d\x04\xc1\x9c\xf7\x0d\xe1\x9f\x17\x10\xa2\x8f\xea\x15\xfa\xda\x86\x31\x38\xf0\x68\xd6\xe4\xe7\xa1\x77\x09\xd9\x99\xb5\x7a\x3a\x92\x4f\x09\xc7\x3e\x26\x0a\x4b\xeb\x36\x13\xbe\xfd\x5e\x52\x70\xf8\xc3\x0d\xc2\x0b\xbd\xe7\xbc\x87\xba\xd9\x11\x3b\xd8\xf1\xad\x30\xfe\xfc\xff\xc2\xa4\x2f\xee\xcf\x4a\x13\x5e\xb0\xd0\xbc\xb1\xf1\xda\x66\xbf\x29\x04\x91\x50\x4d\xa5\x33\x0e\x99\x84\xd3\x3d\x2d\x2f\xf6\xfc\xbe\x4f\x38\x6e\xb2\x4b\x3f\x7c\x4e\x30\x83\x77\xf9\xbf\xde\x9d\x1e\x9f\x6e\x2d\x70\x3a\xe5\x73\xdc\x8d\x70\xe0\x78\x6d\x50\x7b\xbe\x2b\x61\xbb\xf7\xe6\x8e\x7f\x61\x47\x08\xbe\x52\x89\x58\x71\x3d\x91\x70\x44\x7a\x99\x64\x42\x96\x3c\x61\xcd\xb7\x27\xc9\x71\xd5\x9c\x84\x63\x41\x35\xda\x55\xdb\x66\x12\xf8\xdf\x85\x6b\x19\x6f\x51\x24\xcc\x96\xe0\xb8\x61\x78\x58\x99\xad\x8c\xa5\xa8\x24\x7c\xba\x3e\x93\xd0\xe0\xfa\x31\x4d\x7a\xa6\x24\x5b\x59\xd9\xf5\x87\xf9\x17\x51\x5c\x09\x91\x1a\xdb\xd6\xc4\x65\xee\x04\xae\xf3\x9d\xd7\x6f\x39\xe9\x10\xda\x34\xcf\x46\x1c\x96\xfa\xce\xc2\x25\xf3\xcd\xdf\x4f\x4f\x0d\x23\xc4\xda\x5b\x99\xf4\xd4\xc8\x10\x8a\xbe\x14\xcc\x2a\xb1\x3c\x42\xd8\x2c\xa7\xb6\x4c\xab\xf6\x10\xa1\x70\x6c\x93\x90\xcc\x95\x43\x6c\xc5\x32\xba\x50\x3f\xc0\x3d\x94\xb0\xfd\xb0\xb0\x8b\xf2\x95\x18\x42\x68\x65\xe2\xa2\xa7\xdd\x0b\x09\x3b\x83\xbd\xc4\x4e\x79\xc7\x12\x6e\x49\x0c\x3e\x1d\x33\x2a\x21\x70\xc6\x69\xff\x74\x71\x6f\x22\x98\x68\x19\x2f\xfd\x3b\x5e\x66\x35\x8e\x9c\xbc\xfc\x61\x33\x61\xfe\xb2\x2b\x6f\xb7\x0a\x3a\x11\x54\x32\x8b\xc3\x0d\x3f\xf9\xb2\x4d\xa3\x8a\x52\x81\x65\x6e\x26\x84\x03\xdd\x8a\x1c\x52\xb7\xba\x59\xe8\x2f\x94\xfe\xfb\xed\x8d\x2a\x4d\x20\x5a\x51\x74\xbf\x86\x9a\x17\x61\xf1\x97\x0d\x09\xf1\xc9\x93\x08\x49\xd2\x4b\x4b\xdf\x24\xb8\x13\x0a\x53\x7b\x97\x08\x2f\x48\x62\xd0\x3f\xc4\x71\x34\x44\xc6\x9a\xd0\xfc\xaa\xb7\xc7\x72\xe1\x52\x16\x2e\x3e\xdd\x5c\x91\xa0\x6c\x49\xf0\x28\x5a\x9e\xe0\xb2\xde\x89\xb0\x40\xb5\xe2\xfb\x64\x6d\x76\xec\x28\x61\xfa\x4b\x35\x6c\x08\xef\xde\x98\xdd\xec\x9d\x25\x46\xf8\xd7\x7f\xf9\x16\xd7\xc9\xad\x6c\xe5\xf0\x9d\x99\xef\x79\x56\x7e\x63\x21\xe4\x8f\x92\xf4\x3c\x41\x0d\xc2\xc0\xab\xfa\xc4\x76\xeb\x64\x82\xdc\xdd\xc1\x79\xc2\x4b\x2f\x10\x56\x8b\x1e\x17\x75\x99\x7c\x82\x60\xd7\xb4\x63\x57\xe2\xb5\x13\x04\xfd\x26\xce\xdd\xff\x02\xde\xb2\xfe\x07\x0c\xa6\x0d\x7f\x3c\x72\x69\x3a\x4d\xc0\x74\xe3\xc6\xa1\x0d\x42\xcf\x98\x89\xa2\x10\xeb\x5e\xf9\x26\x66\x32\xe1\x8f\x60\x4c\xcd\x45\xe7\x3e\x16\x62\xfe\x4a\x4c\xee\x3b\x61\x48\x13\x08\x08\xb2\x09\xc8\x11\x3c\x4e\xd8\x63\x92\x3a\x9d\x77\xc5\x1c\x82\x71\xbf\xb6\x81\x90\x97\x11\xc1\xfd\x2b\x9f\xfb\x71\x97\x45\x84\xe2\xfb\x5b\x07\x6c\xd4\x86\x59\x28\xb1\x4b\xbf\xda\xc3\x3b\xc4\xc2\x9a\x04\x31\x83\x42\xc5\x6c\xc2\x61\xc1\x4f\x62\xff\x21\xe6\xcd\x0b\xa5\x75\x2b\xd8\x8b\x6e\xce\xce\x98\xb0\x8d\xb6\x04\x1d\x21\x4b\xc5\xc5\xb4\xfb\xff\xc7\xc8\x9d\x46\xd5\x18\xb6\x7f\xdc\xa7\x42\x11\x4a\x85\x42\x93\x92\x68\xd6\xac\xae\x23\xd2\xa4\x41\x69\x1e\x35\x51\x52\x29\x8a\xa2\x42\x51\x8a\x92\xa9\x54\x08\x0d\x54\x48\x28\xa1\xda\x29\x19\x8a\x42\x21\x34\xa0\x32\x55\x48\xca\x2f\x8a\x67\xe5\x59\xcf\xdd\xbe\xd7\xdf\xba\xd7\xf3\xee\xb3\xbe\xc7\xf9\xa2\xd6\xde\xd7\x75\x9e\xe7\x9b\x4d\x88\x54\xf4\xcd\x7b\x3e\x5a\xfe\x33\x92\x50\x0d\xbe\x9c\x0f\x35\xc2\x23\x3b\x01\xcd\x2b\x6a\x4b\x08\xef\x5e\xe8\xcc\x5a\xa2\xa6\x45\x70\xfc\xe8\x7a\x4f\x21\x77\x1e\x21\x42\xe2\x41\xac\x60\x95\x12\x21\xcc\xad\x2b\xcb\x43\x3c\x81\xd0\xf8\xe9\x6a\xc7\x8f\x02\x73\x42\xf2\xb0\x45\xd6\xb6\x6b\xea\x84\x0a\xf5\xae\x2d\x7f\xac\xd3\x59\xa8\x38\xac\x76\x66\xee\x93\x4d\x2c\xd8\x1f\xda\x97\x93\x51\x25\x46\x63\x58\xde\xb8\xbf\x73\xbc\xd8\x39\x36\x70\x0e\x06\x96\x07\x7f\x7a\x42\x08\x7c\xb6\x5e\x59\x42\x94\x7d\x14\xb6\xc2\xb3\xe4\x2f\x32\xa2\xea\xc2\x5c\x57\x04\xff\x0b\x96\xd7\x67\x65\xbd\x0a\x09\x62\x2b\xdf\xdf\x2c\xd4\xea\x9c\xbe\x9b\x0d\x62\x3f\xa6\x37\xdd\x19\xc5\x81\x74\x01\xc9\xce\xff\x82\x9b\xee\x5c\x21\x37\x45\xf3\x7f\xa1\xfd\xe4\x96\xba\x1b\xa2\xb3\x08\x67\x4f\x2f\x5e\xab\xff\x69\x98\x41\xa0\x78\x9c\xf3\xbb\xfb\xc6\x84\x8f\xb1\x1f\x3c\x0b\x25\x67\x11\x72\x45\x1a\x2a\x4b\xe7\x97\x33\x38\xb1\xb3\xb8\x68\xc5\x23\x86\xc6\x90\x20\xaa\xdf\xa1\xf9\x99\xfb\x5f\x10\xb5\x9c\x79\xbb\x65\x65\x19\x61\x86\x48\x77\x7e\xeb\x7f\x61\x5e\x27\x6b\xc8\x31\xa4\x93\x19\x83\xbf\xb4\x65\x7c\x90\xcd\x6f\x06\x37\xec\x37\xef\x6e\xc8\x51\x22\x08\xf0\x15\x65\xdf\x17\xca\x25\x9c\x2b\x2f\xe2\x8f\x9d\x2b\x40\x78\x97\xbe\xfe\x6b\x91\x62\x39\x0d\x89\x84\xde\x1b\x3e\x54\x4e\x58\x73\xe7\xfb\xea\x91\xff\x42\xdd\xb9\xcc\xc1\xbf\xa3\xb9\x32\x32\xf7\x2e\xba\xee\x20\xf4\xd9\x6a\xc9\x44\xba\xec\x24\xc8\xae\xeb\x5c\xad\x59\x68\x42\x10\xd3\xd5\x11\xdd\xc2\x6b\xfb\x2f\x58\x3f\x17\x3a\x79\xe5\x92\x36\xa1\x21\x70\xc6\x13\x97\xc5\x5c\x84\x18\xdb\xf8\x56\xc7\x42\x6b\xc2\x12\xad\x24\xf9\x6a\x6c\x21\xb4\x88\x3b\xef\x7b\x92\xc6\xc7\x86\x6d\xdf\x73\xcf\x6b\x89\x28\x11\x22\xea\x62\x0b\x1e\xad\x12\x23\x98\x1e\xf1\x3c\xf9\xf2\x9c\x34\xa1\xa5\x8b\x47\xc6\x60\xf9\x46\x36\x64\x75\x46\xf0\xd5\xaa\x5f\x62\x20\xa7\xf5\xcd\xfd\xb5\xaf\x31\x21\x7b\xc4\x67\x4f\x81\xe9\x16\x36\x14\xfd\x3a\xd6\x99\xd3\x4d\x6c\x58\xb9\xe0\xd2\xdc\x6b\x17\xed\x09\xdb\x5a\x65\xd7\xe5\x73\x80\x19\x83\x6d\xe2\x23\x0b\xff\xaa\x87\x15\xd8\x90\xa4\xe1\xbc\x66\xe3\x49\x82\x73\x87\xcc\x7e\x75\xab\x70\x16\x46\x74\xb4\xd5\xe6\x18\x5d\x26\xbc\x53\xff\x5c\xbf\xc5\x79\x3c\x1b\xb6\xd4\x87\x3a\xbf\x11\x12\x24\xc8\x6a\x09\x5b\x72\xeb\x4c\x24\x7c\xd5\x6e\x10\x76\x18\x4e\xf9\x17\xca\xcd\xeb\x79\x4b\x54\x6a\x58\x18\xdc\x7b\x75\xe9\xc3\x78\x15\xfa\x07\x96\x98\x9e\xee\x78\xad\xf6\x84\x10\xab\x2f\x59\xb8\xff\x7e\x35\x1b\x76\x35\x76\x6f\x5d\xf9\xaa\xfa\x5f\xa3\xb0\xe4\xad\xe1\xa1\x4b\x37\x10\x7a\x5e\x9c\xe2\x5c\x70\x33\x8a\x30\x55\x64\x7e\xca\xbd\xe9\x57\x08\xc2\x9d\x3f\x3e\x87\x8c\x8e\x9e\x71\x71\x1d\xb6\xf1\x8e\x65\xc3\x9f\x75\xfc\x0f\xef\x2e\x89\x21\xbc\xfb\x76\x25\xda\x54\x70\x3f\xdb\x68\xbb\xf8\x82\xbd\x47\x35\x02\xd8\x30\xb7\xfa\xf4\x1a\xb9\x29\x17\x58\xe8\xb0\x29\x54\xe8\x79\x70\x95\xe0\x58\x67\xb6\xa5\xf7\xe8\x5b\xb6\x52\x99\x7d\x4c\x2b\x2c\x4c\x95\x50\xb4\x28\xe9\x87\xb1\x69\x0a\x0b\xb7\x96\x97\xc5\x2a\x0c\xf8\x11\xb2\x32\x06\xbc\xb7\xdd\x1e\xdd\xf0\xb7\xf4\x0e\xab\x24\xb9\x10\x3a\x5e\xbc\x8e\x0e\x57\xf3\x62\x21\xd4\x5f\xde\x31\xa8\x4e\x86\x90\xe5\x7e\xf0\x55\x74\xcd\x6a\xc2\xd6\x69\xab\xd2\xaf\x0c\x6a\xb2\xc1\xb3\x6e\xe1\xfb\x83\xa7\x16\xb1\x41\xf9\x87\xfc\x43\x7a\x52\x41\xe8\xb2\xa9\xb9\xda\x3b\xb9\x8e\x90\x2d\x7d\xea\x63\xad\x6b\x28\x41\x8e\x7b\x67\xce\x93\x40\x2f\x82\xc1\x61\xde\x71\x76\xc2\x5b\x08\x19\x36\xe7\xb7\xc4\xfd\xd4\x26\xcc\x2f\x5e\x96\x68\xc8\xb7\x84\x10\xa5\xa1\xc0\x7b\x2e\x39\x8f\x60\x7f\x45\x31\xe3\xa9\xf6\x43\x16\x1a\xea\x26\x38\x34\x8d\x62\x43\xac\xab\xfb\xa3\x51\x94\x07\x09\xff\x12\x2e\xac\x22\xa8\xbc\x6d\xe0\xb2\x1f\xfd\x04\x27\xaa\x98\x39\xca\x8f\xdc\x26\xb4\x5a\xb4\x08\x7d\x55\x2e\x21\xec\x11\x28\x98\x95\x31\x4b\x95\xd0\xea\xf7\x3c\xa6\x73\xfd\xe8\x35\x43\x67\x5e\x84\xdc\x60\x0e\x83\xbe\x92\xea\x77\x87\x9d\x7a\x18\xe8\x16\xca\xc7\xef\x3c\xf1\x93\x0d\xc1\x86\x6b\x7b\xb6\x0e\xa4\xb3\x50\x37\x58\x92\xb6\xee\xe4\x47\x06\x1f\x92\x1d\xb9\xdd\x34\x6e\x10\x1a\x5d\x96\xf1\x6f\x35\xb9\x41\xe8\x52\x2f\x70\xb9\x91\x2b\x4d\xd8\xe8\xc4\xb9\xed\xb0\x6e\x38\xc1\xb4\x4d\xb6\xde\xc0\x3e\x9c\x30\xa1\x59\xfd\x9a\x7f\xe4\x0d\xc2\xa3\xb5\x31\xc3\x0f\xdf\xf5\x32\xc8\xfd\x55\x51\x7f\xb6\xba\x90\xa0\x36\x3c\x31\xa8\xf9\x9b\x24\x61\xdd\xda\x3b\x0e\x4d\xdc\xf7\x08\xb9\x56\x8f\xf7\x68\xe5\x34\x12\x42\xd3\xa6\x27\x3b\xad\x1c\x66\xc1\x5c\xef\x7d\x9c\xe6\x68\x79\x19\xb4\xfd\x61\x2b\xcf\x3d\xc2\x69\x49\xed\x47\x52\xbb\xed\x09\xc3\x2f\x53\x22\x66\xc4\x46\x12\x32\x39\x9f\x27\x5c\xfa\xec\x46\xf0\xf0\x08\x78\x7d\x91\xcf\x8b\x50\xd1\x3f\xb3\x7c\xaf\x7a\x1c\x61\xbc\xd4\x82\xd0\x53\xd5\x0b\x09\x15\x5b\x1f\x05\xbd\x92\xb5\x21\x6c\xd9\xb6\x65\x27\xb7\x90\x24\xa1\x73\xc1\x04\x6f\xa5\x5d\xe1\x6c\xd8\x1d\x6f\xb4\xf3\xcb\xae\x4a\x42\x88\xc4\xba\xd9\x5b\xdf\x9f\x21\xf4\x7b\x17\xe9\x3f\x3e\x5c\xcb\xc2\x9b\xe4\x60\x7b\xd5\xab\x47\x08\x9f\x37\x4e\xe1\x88\x19\x5f\x46\xb0\x8a\x3c\xba\xaf\xb4\xa0\x94\x70\x7c\x66\xa6\xf4\x6f\x5d\x16\x41\xe3\xd1\x57\xa1\x3c\xcf\x14\xc2\x71\xf5\xd0\x55\x1b\x1b\x1e\xb2\x50\xaf\x2f\xb0\xe8\xc5\x0e\x4d\x42\xae\x62\x73\x8d\xbf\x94\x37\xe1\xa4\xd6\xfb\x17\xf5\x47\xc3\xd9\xb0\xe5\x50\xa0\x2a\xc7\x7c\x25\xc2\xed\x09\x86\x32\x1b\xef\xeb\xb1\x95\xff\x60\x73\xbf\xe1\xdd\x00\xde\x6d\x84\x55\xd6\x55\xba\x95\x69\xef\x18\x30\x29\xc3\x8b\xc5\x77\xfa\x10\xce\xec\xcc\x2e\xb0\x6a\xb1\x25\x7c\x55\x5c\xbb\xed\xcf\x54\x75\x02\xe7\xa5\x82\x05\x9f\xcf\xf2\x11\x8e\xb3\x0c\xd4\x9e\x9e\x17\xfd\x17\x9e\x5f\x76\xdb\xc7\xb3\xf2\x0d\x83\xa5\x5d\x3f\x53\x66\x72\xe5\x13\xf6\x2d\xd6\xf1\x15\x3c\xec\xfa\x2f\x1c\xbb\xaf\x3a\xc1\xb9\x6c\x36\x21\x5d\xb8\xb9\xcf\x34\x58\x90\x50\x93\x97\xb2\xf1\xee\x23\x71\x36\x70\xff\x7a\x72\xb6\xdc\x62\x1f\x61\xf3\x87\xc2\x93\x89\xc6\x67\x08\x9f\xd2\x1f\x4e\xcb\x7e\xfb\x95\x41\x6a\xd8\xda\xaf\xad\xe9\x12\x34\x06\xae\xb4\xc9\x86\xc6\xd5\xc7\x19\x38\xc7\xf6\x9a\x58\x5c\x56\x23\x9c\xcd\x38\xee\x71\x6b\xa6\x0c\xc1\x7d\xab\xca\xa5\xe5\x53\x24\x09\x89\xcd\xc7\x96\x58\xec\xe4\x23\xac\x59\xbd\xbc\x7f\xc1\xd0\x14\x42\x3e\x93\xff\x29\x93\x2b\xe2\x7f\xe2\xe1\xd1\x5b\x13\xdf\x86\xa7\x12\x8a\x7b\xce\xa5\x4f\x75\x9d\x49\x90\xbe\x50\xd6\xe6\x30\x45\x8a\x20\x7b\x2b\x70\x91\xff\x94\x19\x84\x56\x37\x97\xe7\xda\x36\x44\x90\xda\xbb\x8a\x7b\x75\xc0\x57\x06\x82\xcf\x73\x82\x5f\x65\xed\x26\x6c\x7f\xbc\x81\xf7\xf5\xad\x9d\x6c\x50\x3a\xbd\x5b\x6e\xaa\x99\x03\x41\xc3\x6a\xc5\x8c\x8a\xd1\x43\xee\xff\x2d\x31\x9b\x5e\x08\xbd\xf9\x22\x4b\xc8\x9a\xd6\xea\xb5\x8a\x4f\x9e\xd0\x5f\x78\xa6\x29\xfe\x8d\x25\x41\x25\xc3\x7f\xe9\x15\xb7\x52\x36\x34\x7e\xee\xb9\x74\x79\x14\x07\xb6\x4f\x27\xa9\xab\xfa\x84\x65\xaa\x5a\x8a\x4b\x5d\x8d\xd8\xca\x83\xde\xcb\xa7\xca\x37\x08\x12\x2a\xbe\xfc\x98\x91\x12\x27\x48\xa8\xbb\x13\x63\x2d\xda\x51\xc9\xc2\x3b\x05\xce\xb3\x5f\x2b\x0d\x69\x0c\x6f\xbe\xbc\xdb\x6c\xcd\x95\xc2\xc2\x62\xf3\x83\x8a\x56\xaf\x0e\xb1\xd0\x77\x27\x35\xec\xce\x94\x57\x2c\xb4\xfc\x3e\x27\xa5\x3f\xa9\x9c\x70\xfe\x64\xa7\xfb\xc8\x70\x25\xc1\x57\xdc\x36\x66\xb7\xe8\x51\x16\xba\xbf\xec\x56\x08\x6f\xbc\x40\x18\x7f\x70\xe6\xc3\x0f\x1a\x5b\x08\xb3\x7b\xcf\xab\x9f\x1d\xb2\x61\xa1\x61\xa9\x8a\x49\xba\xd7\x11\x16\x0e\x4d\x48\x99\xf6\xfa\xa4\x0f\x61\x5d\xfb\x8c\x22\xb9\xaa\x4a\x16\x1e\x94\x2d\x7c\xc2\x2d\x15\x43\xe0\x36\x14\x5b\xb4\x29\x3e\x9d\xf0\x2d\xde\xf2\xc1\x38\xa9\x1d\x84\x88\x94\x23\xd7\xf3\x7e\xdb\x13\xd2\x25\xbf\x6c\x3a\xd4\x93\x30\xfa\x7f\xc9\x99\xe1\xf1\x30\x03\x5b\x8e\xf0\xcc\xc4\x3d\xe9\x04\xe1\xd8\x9e\xd0\xe1\xb9\x7b\x08\x61\xbb\xc6\x6d\xdd\x54\xd6\xc3\xc0\xa2\x42\x4b\x3d\xee\xa8\x1d\x0b\xf1\x7a\x43\x4a\x26\x37\xcc\x08\xfa\x2b\x12\x27\x97\x95\xbd\x63\x30\x2b\x4a\xf4\xe6\x37\xf7\x22\xc2\xfc\xab\x26\x4d\x7d\xa3\xe0\xac\xfa\x2d\xba\x76\x6b\x36\xa1\xeb\xb2\xcf\xb4\x33\xbb\x6f\x11\x2a\xfc\x55\xcb\xff\x8e\x56\x8d\xdb\x53\x3e\x78\xc8\x96\x50\xcb\xab\x3f\xd5\xea\xb3\x27\x5b\xf9\x0f\x3e\x2b\xa9\x34\x31\x76\xdc\x84\xfe\xdf\xb5\xac\x73\x09\x46\x84\x1d\x38\x27\xd2\xe9\x56\x46\x48\x6f\x38\xe5\xb5\x3e\xb5\x90\xb0\x69\x86\xe0\x4b\x37\xc1\x44\xb6\x72\x2b\x33\x6f\x42\xc7\xe8\x9a\x0b\x33\x58\x15\x56\x3e\x0a\x84\x83\x01\x02\xba\x0b\xf7\xea\xb0\x15\x4f\x56\xb3\xc6\x51\x1e\x0b\xc2\x86\x17\x3b\x37\x99\xf1\xff\x64\xd0\xbb\x30\x7d\xf2\xac\xf3\x86\x84\x24\x89\xe2\x86\x71\x27\x0c\xd8\x90\xe0\xe3\xf6\x64\x64\x40\x89\x90\xdd\xa9\x7c\x62\x99\x2c\x18\x68\xc5\x6e\x4a\xee\x8b\x56\x67\x2b\xb6\x7b\x57\x2e\x58\x6a\xa2\x46\x68\x6c\xb8\xb9\x62\x83\xfc\x2e\xc2\xda\x1f\xe2\xf1\x2c\xe9\x10\xc2\x73\xc3\x79\x13\x97\xc4\x6d\x66\xc3\x92\x02\x95\xcc\x79\x0e\x96\x84\x8f\x73\x1b\x36\x9c\xfe\x21\x40\xf0\xb7\xd8\x16\xd8\xfb\xcb\x90\xb0\xc6\xe8\x53\xf2\xbb\x05\xe3\x08\x71\x7f\x56\xfb\x70\xce\x13\x22\x70\xa5\x44\xee\x51\x7c\x66\xc9\x86\x79\x0f\xc4\x67\x77\x65\x4e\x20\x6c\x8c\xb1\xd3\xd9\xfe\x83\x9b\x20\x32\x68\x36\x49\x61\xab\x21\x41\x25\xc2\xd3\x4a\xc9\xf5\x11\x61\xbe\x51\x95\xe2\xd3\xdc\xb7\x84\x95\xa6\x15\xfd\x3a\x57\x1f\x13\xb6\x7e\x7a\xb7\x66\xc5\xe1\x5b\x04\xaf\xb4\x18\x87\xf3\xf7\x52\xe9\x67\xe7\xf9\xa6\x17\xbb\x09\x61\x8c\x75\x5d\xda\x9e\xd5\x84\xe2\x1b\xeb\xa4\x64\x77\x3b\x13\xae\xbe\xa9\x72\x8d\x89\x51\x25\x14\x77\x1b\x29\x24\xf6\x17\x13\x26\x18\xc7\xec\x28\xf0\xae\x27\x94\x18\xd5\x69\x37\x64\x3e\x20\x0c\x7a\xbd\x0e\xcc\x1b\x3e\x47\xb8\xd9\xe3\xa3\x7b\xcc\xf1\x36\xe1\xe4\x38\x03\xd9\xe6\xf5\xb1\x04\xff\x6c\xe7\xc4\xb3\x59\x7b\x08\xa7\xdb\xb9\xfd\x0c\x56\x27\x12\xfc\xb6\x49\x0f\x5c\x5c\x1b\x40\xe0\xe2\x7d\xa1\xf9\xcc\x6e\x1b\x61\xf8\x79\xb1\x2f\x1a\xb7\xb3\xa0\xd4\x73\xa5\xbd\x85\xb5\x91\x70\x37\xb4\x7c\xde\x81\xac\x7e\x06\xdd\xd6\xeb\xe4\x76\xb6\x1d\x66\x81\x97\x99\x7a\x76\xb1\xf2\x63\x82\x48\xa6\x82\x67\xd9\xde\xd5\x84\xba\xa3\x26\x57\xbc\xd7\xef\x61\x21\xf8\xec\xbd\xcf\x6b\xcd\xdf\xb3\x10\x7c\x54\x7e\x91\xab\x66\x39\x41\x2b\x50\x60\xf6\xcb\xcb\xaf\x59\x70\xfb\x76\xc3\x7c\xe4\x75\x35\x21\xb5\xf3\x52\xc2\xf0\xc5\x54\x42\x7f\xdb\x3a\x51\x89\xc3\x7d\x0c\x82\x2d\x0d\xf8\x8b\xfa\xad\x09\xee\x8f\xf3\x1f\xf8\x6f\xea\x62\xd0\x9a\xab\x69\xa5\x3d\xcf\x94\x20\x32\x75\x64\x9a\x4e\x54\x22\x0b\xa2\xd1\xba\x4e\x9f\x6c\xd4\x09\x32\xb7\xf6\x0c\x97\x2b\x48\x12\xde\xc8\x3c\xd3\x74\x98\xbd\x9d\x60\x6c\xb4\x57\xac\xf2\xd7\x08\x83\xca\xfd\xd3\xa7\x6b\xd9\xf5\x30\x30\x54\x78\xb7\xe7\x8e\xac\x1c\xe1\x54\x5d\xf4\x80\xfe\xd9\xa3\x0c\x82\xd4\x1a\x5b\x62\x77\xcd\x21\x36\x04\x16\x5d\x93\x38\xb4\x80\x0d\xde\x03\xe5\x73\xb3\x92\x96\x12\xdc\x5c\xd2\x79\x42\xc5\x66\xb2\xe1\xe7\x4c\x8f\x6f\xc7\x34\x1b\x2a\x20\x71\x45\x87\xdf\x56\x30\x85\xd0\xc8\xfd\x26\x4c\x5f\x4e\x93\xf0\x58\xa3\x27\xca\x34\x60\x09\x1b\x8e\x66\x2c\x5b\x73\x4d\x3e\x8d\xa0\x1b\x37\xfd\xc6\x65\x79\x77\xc2\x8e\xa5\x75\xcb\x5f\x4a\xde\x26\x70\x7c\x8e\x30\x6f\xdc\x91\x4d\xc0\xdb\xf3\xd3\xf2\x96\x87\x12\x4a\x99\xf7\xa7\xa7\xc4\x76\x31\xf0\x3f\x33\xd2\x72\x6f\x4f\x33\x41\x6f\x6a\xf3\xf1\x67\x7b\x6e\x11\xe6\x07\x8f\x5b\xa4\x11\x90\x4f\x38\xff\xcc\xd3\xf4\xf1\x8a\x66\x16\x16\x4d\x12\xc5\xf0\xcb\x67\x84\xa8\x6e\x6e\x39\xb7\xdb\xf7\x08\xf5\x8b\xc3\x4a\xad\xe8\x26\xa1\x42\xdb\x65\xb2\x13\x4e\x11\x7c\x75\xc6\x79\x08\x9d\x5a\x4d\xd0\x34\x14\xfa\x62\x99\xc8\x41\x50\xff\xb8\xcf\x27\xc1\x9b\x8b\x20\xd2\x6d\x65\x0d\x97\xb9\x84\xc5\xe1\x3f\x8b\xdb\x15\xb6\xb1\xc1\x6e\xa7\xf6\x71\x95\xee\x6f\x0c\x1a\xbc\x1d\x15\x3f\xb8\x68\x13\x52\xf9\xf5\xee\xdc\x6c\x0b\x66\x61\x52\xfc\xfe\x05\x49\x09\xf3\x08\xc6\xeb\x5a\x16\x98\xce\xdf\x4d\xb8\x1e\xba\x6d\xbe\xb2\xb9\x20\xa1\x7d\xa1\xac\x61\x8b\xad\x2a\x1b\xd2\x99\xd6\x94\x7e\xf5\xf2\x0a\xdc\x7d\x1a\xef\xf7\x36\xed\x7c\x05\x9a\x78\x4f\xc6\x7e\x8e\xd8\x48\x98\x78\xad\x7b\x6f\x59\x8c\x1b\x81\xb7\xe9\x80\xd4\xbd\xc2\xc5\x84\x87\x0b\x96\x7d\x92\x9d\xba\x94\xad\xb8\x48\x9c\x09\xd0\xf9\x13\xc3\x86\xac\x57\x11\xfd\xb9\xd1\x91\x84\xd6\xf2\xf3\x07\x9f\xbf\xbe\x47\x78\x2a\xb6\x7a\x87\x79\x5d\x34\x61\x92\x81\xa8\xf6\x0f\x7e\x86\x05\x41\xcb\x15\x4f\x3b\x54\x37\x10\x6a\x36\x26\xdd\x35\x54\xbf\x4c\xc8\xb0\xec\x0d\xaf\x2f\x92\x23\x98\x9f\x73\x5a\xcb\x33\x4d\x85\xa0\x21\xd2\xea\xaf\xe2\x36\x9e\xb0\xac\x77\x79\x4d\xbb\xce\x2c\x82\xc5\x2e\x6f\xfd\xf6\x9b\xd5\x04\xc5\x74\x5c\xc1\xaa\x62\xc2\xc2\x98\x39\xe9\x83\xb3\x27\x12\x3e\xce\x68\x8c\xcb\xfe\x10\x48\xe8\x96\xf7\x67\x0e\x27\xd8\xb1\x60\x26\xda\x73\x56\xb6\x34\x82\xb0\xf7\xc7\xa7\x2a\x37\xdb\x24\x42\xc2\xc6\x68\x3b\xf9\xa5\x7d\x0c\x22\x34\x46\x72\x1a\x62\x24\x09\xc2\xb2\x56\x5b\xae\x7b\x48\x10\xf2\x85\x4b\x9f\xb4\x4e\x57\x20\x04\xce\xbf\x1d\x34\x4f\x4c\x91\x60\xa2\x68\xd8\x3c\xf0\xf2\x35\x83\x94\xca\x0d\xf6\xeb\xe5\xbe\xb2\xc1\x7f\xfd\x0b\xa9\x7c\x19\x05\x1a\x83\x91\xc3\xa4\x2d\xed\x97\xa7\x10\xde\x48\x76\xf4\x4c\xb5\x92\x64\xc3\xd1\xe7\x32\x99\xc3\x05\x5c\x04\xbb\xe9\x2f\x9d\x5f\xe9\x9f\x66\x41\xb3\xfd\xd6\xe2\x58\x03\x77\xc2\x62\xd3\x73\x9b\xe6\x7f\x7d\xc3\xe0\x83\xcb\xc9\xa3\x8b\xe3\x92\x69\x0c\x3f\xe5\xd7\x2c\x5d\x34\x8a\xd0\x9a\xa6\x82\x00\x3b\x8d\xff\x09\x81\x50\x4c\xe8\x0f\x3f\xf6\x2f\x24\xc7\x86\x58\x6f\x3e\x11\xcf\x86\x8a\xf4\x53\xbc\x87\xdf\xf7\x30\x38\x56\xec\xbf\xd0\xb4\xda\x8e\xb0\x91\xa3\x70\xad\x85\xf7\x15\x82\x53\xde\xf2\x1b\xae\xf3\x57\x12\xbe\x67\x0b\x25\x97\xff\x54\x22\xbc\x94\xd7\xb8\x28\x37\x47\x8e\x60\xdf\x90\xfd\xb1\xe7\x90\x23\x0b\x53\x20\x76\xe0\x2a\x5f\x22\xe1\xb6\xf2\x41\xcf\x35\xc5\x5e\x84\xae\xfe\x4f\x8f\xa6\x2c\x73\x24\x48\x58\x1a\x55\xcc\x0d\xa8\xfa\xff\x7e\x5c\xb3\x92\xc0\x19\x9b\xe1\x39\xfe\xc1\x7e\x82\x92\xd0\xf4\xfb\xf7\xf7\xd5\xb3\xb0\x7f\x64\xa8\xa9\xd6\xfd\x36\x0b\x1e\x61\x07\x9e\x4c\x4b\xaf\x26\xf8\xbe\xce\x4f\x30\x6e\x6b\x20\x70\x0f\x7e\xf6\x5d\xb8\x2b\x9b\x10\xd4\xd4\xb6\xf0\xcb\xc9\xdd\x84\x4a\x85\xda\x7d\x6e\xac\x62\x82\xbe\x86\xbc\xbc\xb3\x5e\x1d\x61\x8e\xdc\x8d\xfb\xdf\xd6\x54\x11\xe6\x98\xc7\x48\x14\x66\x5c\x23\x3c\x3c\x0e\x15\x5b\xc3\x52\x82\xfa\x48\x58\xee\x5c\x89\x40\x82\xbb\xe2\x5c\xb9\x37\xf7\xbb\x08\xcb\x8f\x54\x84\x57\x1c\xf2\x61\x41\xac\xe0\xb9\x76\x41\xec\x32\x02\x5f\xde\x57\xcb\xe8\x96\x10\xc2\xfb\x53\xfa\x89\x03\xf7\xa7\x12\x4a\x7f\x73\xf0\x3e\x0e\x52\x20\x1c\xaf\x37\xff\x64\xb6\x51\x9a\x50\xde\xc4\x94\x78\x66\x88\x13\xf2\x57\x4a\xd6\x0a\xa7\xcd\x20\xe4\x2e\x54\x62\xdd\xdb\x27\x44\xb0\xf7\xec\x92\x8d\x70\x58\x46\xd8\xb5\x5a\xa3\xe2\x65\x59\x0c\x41\x77\x85\x68\x8a\x5c\x52\x14\xc1\xed\xf7\xdd\x04\xdd\x6a\x6f\xc2\xf1\xca\x03\x01\x19\x93\x03\x09\x7f\x34\x4d\x62\xb5\x78\xf5\x09\x1f\x3f\x6e\xe9\xbb\x3f\x49\x80\xb0\x87\xd1\xb1\x2c\x3e\xb0\x96\x30\x3d\x35\xf4\x8e\xb4\x8c\x1d\xe1\x78\x9f\xa0\xc1\x45\xcf\xf9\x84\x3f\x2c\xfb\xc3\x27\x67\x7a\x11\x3c\x4c\x78\xc3\xe3\x8d\xd7\x11\xe6\x9c\x05\x85\x4e\x8d\x25\xe4\x58\x89\xd4\xef\xde\x67\x48\xe0\xd0\xef\xba\xa9\x3c\x7c\x94\x30\x98\xf2\xc2\xd4\x57\xe7\x20\x5b\xd1\xe7\x3f\xc1\x71\xd3\xe5\x18\xe1\x0d\x37\x97\x9f\x6c\xea\x30\x03\x6d\xb9\x1f\x19\xc7\xdb\xc7\x11\xb4\x0b\x82\xef\x38\x85\xff\x61\xc6\x30\x68\x6e\x7f\xff\xfa\xbb\x65\x84\x3b\xeb\x63\xbe\x1f\x5e\x39\x95\x0d\x83\x2d\x87\x0b\x6a\x4a\xc2\x08\x55\x67\x85\xec\xb2\x3f\x4a\x12\xca\x04\x8a\x27\x4e\xae\xd0\x21\xa4\x37\x6f\x18\xb7\x5e\x6c\x07\xe1\x9a\x8d\x79\x5b\xc9\x93\x0d\x84\x9c\xd8\x93\x9d\x79\x15\x87\x58\x98\x9c\x66\x9a\x6d\x7c\x5c\x92\xb0\x49\x78\x5f\xcb\xa1\xbd\x6b\x09\x07\x76\x35\x3d\x16\x2b\x5a\x49\x10\x6d\xd1\x9d\x9f\x5a\x30\x89\x30\xdc\x27\x7d\x22\x76\xb6\x1c\x61\x57\x77\xfb\x0e\x99\x05\x2a\x84\x47\x73\x5e\x24\x9b\xad\x68\x62\x30\x30\xd9\xf5\xb1\x9e\xb8\x0d\x61\xe6\xed\x71\x11\xe3\xcd\xad\xd9\x10\x26\xf7\xf0\x62\x90\x34\x3f\x61\xf7\x80\xd8\x55\x8e\xcd\xe3\xd8\x4a\xf3\xc8\xc3\xb3\xea\x55\xfc\x04\xe7\x84\x92\x7b\x97\xbf\xa4\x13\x16\xba\xbc\x38\xbc\xa7\xd1\x92\x60\xbe\x7b\x52\x90\x61\x85\x0d\xa1\xf0\xc2\x63\xd5\x46\x0d\x2d\xc2\xcc\x91\x3c\xfd\x96\x26\x1e\x42\xd5\x09\xc1\x95\x8f\xb7\x48\x10\xa2\x2e\x29\xc9\x69\xf7\x5c\x26\x6c\x99\x03\xd7\x1f\x41\x13\x09\xb3\x39\x86\xdd\x98\xf0\x8f\x0c\x56\xf4\xc6\x84\x57\x05\x44\x10\x4a\xc4\x2f\x88\xc8\x44\xaa\x10\x32\x3e\x73\xed\xad\x1d\xbd\xa6\xfe\x5f\x7c\xcc\xdf\xb3\x23\x3f\x9d\x83\xb0\x74\xb2\x7e\x9e\xca\x60\x08\xe1\x8b\x61\xe6\x8e\x89\x5d\x9e\x84\xb2\xfa\xb6\x94\x69\x3b\xb5\x08\x92\x95\xc1\x95\x4d\x27\x3c\x59\x58\xe4\x2a\xf7\x78\xd3\x83\x61\x06\x01\xd1\xba\xdc\xd2\x15\xab\x08\xf5\xaf\xdd\x64\xe7\x48\x08\x13\xae\xfc\x29\x77\xfa\x71\x7f\x3d\x61\xba\xac\xae\x9d\xe3\x2d\x3e\xc2\xd4\xf4\x6c\x53\xb9\x16\x2e\x82\xda\x73\xfe\x32\x91\x3e\x3e\xc2\x95\x5b\xc1\xb9\xe3\xcb\xc5\x09\x8c\x0d\xf7\xeb\x35\xf9\xc1\x84\xd0\x65\xfa\x09\xe3\x4c\x8e\x12\x62\x27\xb8\x1f\x75\xe9\xee\x63\xc6\xf0\xb4\xda\xec\xf8\x2c\x0f\x69\x16\x56\xed\x93\x52\xf0\x77\x1a\x4f\x88\x31\xc8\xdd\x98\x1b\x66\x4d\x38\xf7\xa5\xc4\x3c\xc7\x69\x11\xc1\xdf\x46\x24\x73\x9d\xda\x4c\x42\xc7\x9d\xb9\xe3\xcf\x9b\x59\x11\x76\xd4\x1d\xbd\x68\x6b\x74\x9a\x0d\x4a\x17\x53\xaf\x9c\x50\xaf\x24\x5c\xf1\x69\x2f\xb5\xdb\x9d\x4e\x50\x7b\x24\xed\xfd\xd0\x23\x83\x20\xf8\x66\xa5\xa9\xeb\x1f\x4b\xc2\xef\x69\xc9\x7e\x6b\x7e\x6d\x21\x1c\xca\x78\xc2\x2f\x17\x1c\x4c\x68\x0c\x9e\xa8\xd2\x35\x38\x9b\xb0\xc9\xe9\xe5\xef\x64\x01\x2f\x02\xbf\x84\xc1\x05\xc4\x98\x11\x8e\xbb\x6a\x07\xc8\x8e\x84\xb2\x60\x2d\x50\x6e\x9c\x58\xb4\x88\xd0\x60\x5c\x62\xb4\x30\xdc\x99\x85\xa6\x2d\xd2\xbd\x6b\x5f\xf5\x30\x68\xe2\x9f\xf4\xe0\xe5\x22\x77\x16\xec\x34\x4f\x1f\xf9\xf2\x6c\x39\x61\x3d\xc7\x37\x8b\x93\x15\xf2\x84\x1e\xcb\x11\xed\xc2\x7b\xfa\x84\xd5\xc5\x3d\xa5\x5e\xe6\xe2\x04\x9d\xda\xd6\xe5\x03\xcf\x24\xd9\x60\xc7\x31\xf5\x72\x7d\x6e\x73\x05\x4e\x3b\x19\x85\x28\x0a\x25\x13\x2c\x0b\xb9\x9c\xbe\x76\xa5\x11\x22\xab\xb4\x32\xf8\x0a\xce\x12\x26\x34\x06\xfa\x36\xa8\x9e\x22\x0c\xc5\x1b\x89\x1a\x95\x4c\x20\x70\xe9\x85\xad\x0a\x4b\xb5\x23\xdc\x3c\x3f\xc5\xa4\x2b\x2c\x91\x05\x53\xfe\x0b\x06\xb5\x35\xbe\x84\x6d\x47\x9f\x7f\xcc\xe2\xd9\x44\x70\x4c\x35\xad\xe6\xfc\xe1\x37\x7a\xb0\x7e\x52\xe4\xa6\x63\x4c\xb8\x0e\x8e\x35\xab\x0d\x96\x12\xda\x4f\x75\x19\xb8\x8e\x5f\x43\x68\x53\x91\x4e\x09\x5e\xe5\xc7\xc2\x07\x46\xb6\xf4\x88\xf8\x66\x82\xaa\xd3\xf2\xe0\x49\x47\x3d\x09\xd3\xbd\x7f\x7f\x4d\x12\x96\x26\xf4\xf9\xa9\x7c\xb0\x5b\xaa\x45\x90\x3d\x1b\xbe\xfa\x46\x5c\x09\x61\x43\xb0\x09\x4b\x2c\xd1\x8b\x0d\x95\xeb\x93\xdf\x3e\x4e\x9e\x40\x98\x56\x17\xcb\x11\xe5\xce\x4b\x78\x7e\xe5\x92\x99\xee\x99\x20\x36\xbc\xf5\x69\x94\x63\x9d\xf5\x1b\xbd\x54\x34\x4f\x39\x68\xbc\x9c\xf0\x69\xcb\xd0\xea\x69\xfb\x66\x13\x9c\x0f\xbf\x95\x9c\x7a\x64\x11\x1b\x14\x94\xb7\x94\x76\x5e\x3b\x4c\xc8\xe3\x7f\xb5\xd4\xba\x1e\x0c\xd6\xdc\x3b\x78\x7f\xfb\x19\x3b\x42\x93\x48\xfa\x75\xd1\x79\xb3\x08\x3c\xaf\xd4\x74\x65\x79\x94\x09\xca\xeb\xf5\x85\xeb\x46\xd4\x08\xc7\x7e\x14\x75\x38\x1f\x0c\x24\x2c\x7f\xf8\x46\xa2\x4c\x3b\x96\x50\x52\x27\xfb\xa0\x4f\xf9\xd2\xe8\xa6\xb9\xa4\x5a\xe2\x5d\x11\xa1\xc8\x67\xf7\xda\x6f\x17\x93\x09\x1a\x4b\x22\x72\x8e\xa4\x8d\xee\x9e\x26\x12\x66\x09\x4a\x0e\x84\x13\xbf\xbe\x4c\x9f\xf1\x48\x99\x10\x17\x58\x6b\x76\xf4\x56\x2e\x0b\x35\xca\x49\x3f\x52\xe7\x2a\x11\xd2\x4a\xd3\xff\x1c\xcb\x9f\x4c\xd8\xff\x6d\x55\x72\x17\xe3\x4f\x08\xfd\x95\xea\xbb\x5f\xc7\x92\x60\xb5\x31\x3b\xaa\xac\x4e\x85\xb0\x37\x24\xeb\xc5\xb5\x9c\xc5\x04\x85\x8a\x3d\xd1\x1f\xb3\x38\x08\x2b\x4a\x19\x59\x5d\x39\x7f\x82\x7d\x5d\xeb\xa0\xe7\x79\x17\x42\xf1\xab\x59\x0f\x82\x05\xac\x09\xb7\xd3\x43\xef\xc7\x6a\xe8\x11\xd6\x05\xd4\x59\xf2\x95\xc9\x10\x4a\x6f\x46\x88\xf6\x1c\xe3\x27\x18\x44\x84\x2f\xa9\xa9\x9e\x44\xb0\xe9\x68\xb3\x78\x27\xad\x4a\x28\x98\x24\x1e\x62\x33\xa5\x82\x81\x49\xe2\x9d\xe7\x37\xf7\xaa\x12\x7e\xdb\x68\x4a\xf0\x6e\x3c\xc6\x42\x75\xca\xab\x07\xef\xef\x7f\x60\xa0\x25\x97\x72\x61\xea\xaa\x4b\x2c\x68\x09\x54\x9f\x0f\xba\x26\x4b\x98\x34\x12\x2b\x51\x35\xf0\x9d\xc1\x13\x19\xb9\xd9\x21\xb3\x04\x08\xfd\x91\x49\x3f\xcc\x8f\x70\xff\x0b\x5e\x5f\x64\x1e\x73\x77\x2f\x23\x74\x09\x36\xc6\xc4\xa5\x2b\xb0\xa1\xd5\xf1\xa2\x83\xb5\xd4\x22\xc2\xa5\xba\x70\x1f\xcb\x2c\x6f\xc2\x9e\x4d\xc6\x77\x32\xcd\x95\x08\x33\x43\xfa\x4e\x5b\x5d\x97\x26\x98\x0e\x5e\xab\xf8\xf6\x5d\x87\xb0\xd8\xb9\xce\xda\x5b\xfe\x17\x83\x07\x7c\xf7\x94\x5a\x54\x24\x08\xcc\x03\x0e\xd5\x1f\xe7\xba\x19\x70\x9d\x1e\x7a\xa8\x59\x37\x89\xf0\xf9\xa1\xf3\xd4\x9f\x7a\x42\x84\xcf\x7b\xfb\x6e\xf6\xd9\xae\x60\xc3\x0a\xef\x9c\xb5\x47\x9a\xa5\x08\x5d\x35\xf2\x73\x57\xde\x5e\xcc\x56\x22\x0a\x64\x57\x7b\x2c\x6c\x65\x70\xf5\xf3\x01\x8d\xa1\x57\x5f\x18\x08\x16\x09\xc8\x0c\x59\xfb\xd1\x18\x5c\x24\xb7\xd7\xfd\xfd\x1e\x1a\x35\x27\xdd\x09\xd0\xe6\x22\x98\x7f\x95\x98\x38\x70\x41\x95\x0d\xaa\x11\x11\xab\x45\x3e\xa9\xb1\x61\x4e\xcb\x06\x04\xae\xe3\x26\xe4\x3a\x83\xf3\xd2\x41\x4d\x82\x64\x59\xae\x84\xc2\xf7\x2e\x06\xa2\xc9\x6b\xfe\x94\x07\x4a\x10\x14\xeb\x86\xbc\x4e\xf3\xf0\x12\x38\x0e\xfc\x8c\xca\x99\x2d\x4c\xf8\x66\x90\x7f\x5b\x68\xb1\x3a\xe1\x7b\x6c\xc3\xa2\x32\x0f\x2b\x36\x5c\xe1\x7b\xad\x1b\x44\x13\x09\x0b\xac\xfd\x1f\xdf\x08\xba\xc5\xe0\xc2\xfb\xbe\x8a\x3b\x05\x1d\x0c\xfe\x74\xd6\xf5\xf6\x5c\x69\x66\x43\x79\x63\x8b\xd6\xad\xed\x5c\x84\x57\x05\x3a\x69\x46\xcf\xfc\x09\xb6\x8b\x75\x75\x72\xa7\x38\x10\xbe\xb8\xe5\xb5\x5c\x1a\xb2\x23\x1c\x4d\x79\x9d\xc5\xb9\x44\x9d\xe0\x63\xa8\xab\xea\x68\x37\xc2\x8c\x21\xfe\xf6\xcc\xc7\x49\x4b\x0a\xd9\x10\xe3\xf0\x63\xde\x84\x8c\xd7\x0c\xd4\xbe\x72\x16\xeb\x4f\x30\x21\x7c\x55\xee\x9d\xe5\xf7\x5d\x8d\x70\xb0\xc1\x75\xcd\x2b\x46\x89\xf0\xf0\xcc\x94\xda\x17\x67\xe6\x11\x38\x9f\x5f\x97\xad\x14\x29\x27\x5c\x1a\xdf\x39\x54\xb4\xbe\x9c\xf0\xba\xaf\xf8\xa1\xc2\xb6\x4a\x16\x5e\x3c\x9c\x6f\xf1\xcb\xc7\x80\xc6\x10\xef\x22\x24\x42\x11\x61\x84\xf6\xf3\x67\x2f\x6e\xcd\x95\x22\x5c\x5c\xe4\xb2\x6b\xd5\xde\x25\x04\x71\xfb\x0d\xca\x15\x11\x1e\x84\x93\x46\x43\x1e\x0f\xfe\x18\x12\x02\xbf\xfd\xa0\x87\xcd\xf3\x08\x22\x27\x75\x2b\x4d\xd5\x6c\xd8\x8a\xcf\x05\x65\xd5\x27\xaa\x4d\x0c\x34\xff\x94\x7d\xb8\x30\xcd\x88\x70\x6d\x8f\xb6\x63\x93\x82\x14\xe1\x3e\x95\x9b\x17\x1e\x99\xc5\x06\xa5\x8a\x4f\x73\x8f\xfe\xf8\xc6\x8c\xe1\xbd\x75\xfc\xc6\x7d\x9f\x25\x08\x81\x31\x0e\x2e\xe5\x5e\x7a\x04\x9e\xfc\xf8\xcb\xf3\xa6\xf2\x12\xae\xab\x6f\x01\xcd\xaf\x62\x01\xdd\xdf\x34\xaf\xff\x31\x21\x6c\xf1\xdf\xf9\x81\x43\x69\x3c\xa1\xc8\xd5\xe6\x92\xed\xcf\x9d\x04\xbd\xa3\xaa\xae\x9f\x46\x9f\xdc\x11\xca\xed\x9f\xd3\x66\x48\x50\xff\xb6\xb3\x4f\xa8\x78\x26\xe1\x90\x0c\xa3\xb0\xf0\x8a\x20\x21\x24\x69\xed\xc5\x73\xf7\x55\x08\x9b\xeb\xdd\x6a\x2a\x24\xa2\x09\x3a\x57\x3f\xdb\x9c\xce\xb4\x24\x4c\x8e\xd3\xfc\xbc\x68\x8d\x0c\x81\x63\x56\x83\x52\xfd\x0f\x4d\xc2\x0b\xeb\xae\xd8\x93\x93\xce\x10\xee\x64\xba\x5b\xaa\x3e\xcd\x27\xc4\x99\x24\x99\xd4\x36\x36\x33\x98\x39\x53\x7d\x2f\x77\xab\x10\xe1\xe8\xf8\x43\xb9\x72\x67\x0d\x09\x3f\x22\x5d\x63\xb7\x3d\xb0\x26\x1c\xbe\x76\x27\x2d\xe8\x96\x0a\x21\x99\xcb\xbf\xfd\xa0\x5c\x16\x1b\x34\xd4\xfa\xf3\x36\x2a\xee\x21\x78\x28\xb4\xda\x5c\x39\xf3\x81\xc1\x9e\xaf\x61\xa5\xa9\xf1\x7f\x18\xc8\x9b\x75\xed\xdb\x7a\xd8\x98\x70\x87\xab\x61\x89\xe4\x7a\x39\x42\xea\xfb\x5b\x0b\x1e\x76\x4a\x12\xe6\x0b\xaa\x2e\xd8\x9d\x38\xba\xcb\x44\x9d\x1e\x29\x4b\x38\x45\x08\x23\x37\xdd\xca\xbe\xa7\x84\x1d\x23\xb9\xfb\x3d\xdf\x0d\x12\x6c\x3f\xd9\x6c\x92\x77\x78\x4c\x88\xdc\xf3\xb3\x73\x8e\xc7\x27\x42\x8e\x1a\xf7\xaf\xd3\x8d\x97\x08\x73\x34\xa5\x4c\x72\xa6\x5f\x25\xb4\x16\xa7\x46\xd4\x44\xd6\x11\xee\x15\x2c\x48\xc9\x2c\x4a\x26\x78\xfc\xdc\xa0\x25\xf9\xac\x81\xe0\xb7\x5f\x36\xa0\x43\x35\x85\x70\xde\x4b\xa9\x33\x30\x77\x2b\xe1\x22\xd7\x69\x47\x8e\x05\x67\x58\xf8\x70\xe4\xa5\xc5\xb1\x15\x61\x04\xe3\x40\xff\xfb\x01\x37\x0d\x09\xf3\xf3\x6f\xa9\xf5\x96\xc8\x13\x54\x8b\xaa\x2e\x57\xbe\xe1\x27\x88\xe9\x37\x4f\x57\x5f\xd0\xc8\x20\x5a\x4a\xf7\xc8\x17\x85\xcb\x04\xa7\x60\x49\xd7\x5d\x4f\x33\x09\xc1\xfd\x7a\x6e\xcb\xa3\xc6\x13\x4c\x4e\x45\xf2\x74\x2c\xef\x65\x10\xff\xfa\x4b\xcc\x8f\x8d\xf2\x84\x8c\xd4\xd4\x3f\x6f\xdb\x6c\x09\x23\x37\xac\x8e\x5d\x3e\xb2\x90\x0d\x01\x01\x2e\xfb\x16\x9c\xd6\x27\xa4\x0e\xf0\x30\x2b\xc2\x24\xd8\xd0\x30\xf1\x85\xbb\xdd\xfc\x1f\x0c\x2e\x0a\x67\xe6\x74\xf1\xe4\x12\xa2\x13\x4e\x1d\x51\x5f\x2b\x41\xa8\xd4\x99\xb2\xbf\x6f\xd0\x9d\xf0\x9b\x47\x70\x1c\x4f\xae\x35\x81\xbf\xdd\x2a\xd8\xd1\x7b\x06\x61\xa6\xd8\x8c\x8a\xd4\x62\x31\xc2\xa3\x85\x4f\xf7\x7d\xd2\x11\x21\x98\x1b\xdb\x15\x3a\x5e\x61\x08\x41\xf6\xad\xf7\x57\xfa\x4a\x11\x4c\x43\xfa\xce\x9f\x8f\x9e\xc8\x86\xc4\x9f\x8f\xa4\xad\x5b\xcd\xd8\x4a\xe7\xc3\x9f\x77\x47\xa2\x25\xfe\x05\xc7\xdb\x06\xdb\xb0\xee\x65\x05\xee\x75\x7b\x6f\x9b\x7d\xba\x9f\x81\xef\xe7\xd3\x2a\x1b\xc3\x79\x69\x0c\xfd\x6d\x3d\x81\x2a\xef\x85\x09\x92\x8e\x46\x53\xf2\x5a\x64\x08\xbb\x1d\x4f\x9f\x3e\xbe\xe5\x30\xc1\xce\x5b\xf9\xc4\x72\xa7\xf5\x84\x25\x4f\x45\x45\xa6\x05\x39\x11\x0e\xcc\x11\x36\xcd\x5e\xb0\x85\x50\x24\x95\x70\xf2\x82\xcb\x12\xc2\xec\xe5\x1d\xc9\x21\x19\xde\x84\x86\x81\x13\xce\xaf\x3d\x4f\xb1\x20\x37\x87\x2b\x5a\x40\x4a\x94\xf0\xa9\x61\xf0\x51\x5a\x9c\x34\x61\x7a\x9c\xe5\xe0\xb3\xbe\x62\x42\xe0\x92\x47\x3b\x9f\x8f\xe2\xe7\x0b\x7e\x97\x7b\x0b\x2c\x09\x36\x67\xde\x14\x38\x9a\xa8\x12\x9e\x15\xe8\x3c\xdd\x32\xc1\x99\xa0\xc6\xd9\x3a\x5d\x7a\xd6\x0a\x82\xf8\xb5\x23\xbb\x6d\xf8\x7b\x19\x28\x64\x92\x6e\x92\x09\x07\xe1\xb5\xed\xa9\xc0\xef\x1a\x33\x08\x79\x2c\xb9\xe4\x28\xe3\x9f\x0c\x66\x0e\xae\xdc\x13\x23\x69\x41\x98\xc0\x91\x7f\x3b\xe9\x81\x1d\x21\x24\x53\xc4\x6b\xaa\xfa\x78\x82\x44\x40\xd6\xb1\x83\xd3\x7c\x08\xdc\xf5\xe5\x66\x12\xa4\x45\xa8\xbd\xbc\xfe\x8e\xef\x5d\x77\xc2\x83\x9b\x4f\x7e\xd8\xac\x0d\x25\x34\x85\xe9\x2f\xba\xf6\x2d\x88\x70\x42\xc0\xc8\x43\x2a\xc9\x98\xa0\xeb\xf9\x5d\x49\x94\x7f\x3f\xc1\xfa\x55\xf6\x8c\x92\xd0\x3f\x0c\x16\x1f\x94\x8a\xf2\x9b\xe5\x47\x78\x50\xb8\xba\xef\x69\xc5\x01\x82\x65\x88\x80\x06\xd7\xe4\xfd\x2c\xb8\x5e\x0f\x88\xa3\xe1\xd3\x34\x86\xc2\x33\x6b\x02\x43\x35\xd2\x08\x47\x94\xae\xa8\xa8\x2f\x38\x46\xd8\x2a\x74\xb9\xf1\xfb\x8f\x6a\xc2\xe9\x75\x6d\xa6\x6a\xa3\xa5\x46\x2a\x23\xff\xca\xc1\x2c\xc2\x24\x13\xcb\x71\x5f\x44\x3d\x08\x7b\x02\x0e\xf2\x1d\xb2\xe5\x23\x78\x7a\x7f\x68\x39\x26\xe4\x44\xf0\x0b\x10\xdd\x4c\x91\xcb\x09\x8d\x73\x25\x8c\x7c\xcd\x4d\x09\x2e\x2b\xf5\xd4\xa2\xfc\xc4\x08\x61\x6f\x3e\xb6\xbf\xcf\x0e\x22\x28\xdf\x0a\x55\xb7\x3d\x3f\x89\xb0\xfb\x2d\xef\x2a\xd6\x07\x6f\xc2\xdb\x1b\xce\x5b\xa3\x3e\x2e\x20\x6c\xca\x12\xdc\x1d\x5e\xd8\xcd\x8c\xe1\x5e\xb7\x17\xf7\x01\x8e\xf7\x0c\xb4\x16\xea\x8f\x8b\x78\x68\x43\xb8\xf3\x7c\xf6\xd6\xf5\x55\xaf\x19\xb0\xec\xb5\xa6\x4e\x4e\xe0\xa7\x31\xc8\xd7\x2e\xb9\xfa\x36\xbc\x8d\x81\x83\xcd\x75\x6b\x7b\xf5\x3a\x06\x4d\x29\x4b\xcb\xbc\x4e\xad\xa6\x31\x9c\x8f\x91\x19\x08\x3f\x1f\x45\xb8\xd4\x1e\x13\x7a\x77\xc1\x33\x42\x61\xb3\xcd\xb4\xbe\x98\x7e\x06\x02\xe2\x5b\xf5\x8f\xed\x11\x25\x3c\x5b\x18\x52\x7d\x64\xed\x5c\xc2\xe1\x77\x6d\x62\x7b\x7b\x1c\x09\xdb\x16\xcf\x2d\xba\x65\xa6\x43\xb8\xbc\x51\xed\xcb\xc5\x9b\x05\x84\xbd\xaa\xfb\xd4\xff\xe2\x5d\xe0\xde\xb0\x69\x57\xb3\x09\x49\x03\x51\x2f\xca\x6e\x9b\x11\x2e\xc5\xfe\x41\x30\xb7\x3a\x1b\x82\x0c\xd4\xbd\x6c\xbe\xdd\x24\xc4\xde\x59\xa6\x11\x3d\xa9\x8c\x10\xa0\xa4\x6f\xf4\xf4\xd1\x7d\x16\x1a\xb3\xf9\x5e\xf8\xfc\xba\x49\x98\xd3\x99\x72\xf8\xef\x48\xea\x8c\xa7\xcb\xb3\x07\x95\x04\x96\x93\xb9\xc1\x5f\x4c\xae\x99\x61\xa6\xfe\xa7\x98\xf0\x45\x29\x31\xe1\x6f\x51\x5f\xe3\xb6\xc6\x01\xe3\x09\x7d\x17\x2e\xe4\x9e\xe1\xe1\x20\x84\x38\x74\xe8\x73\xc9\x89\x12\xe6\xc8\x2a\x9a\xff\xe1\x59\x45\x38\xe1\x9a\xd3\xea\x15\x6d\x4e\x98\x34\xdc\xe2\x3f\x98\x23\x41\xb8\xd3\xa9\xe3\xec\x54\x2f\x48\xd8\xe8\x76\xb4\xf7\xf6\xa5\x20\x42\xe3\xf3\x61\xce\xd9\x52\xe9\x2c\xdc\xfd\xd2\xff\x59\x64\x5d\x29\x81\x2f\x31\x88\xfc\xd6\xda\x12\xae\x99\x7f\xfc\x11\x57\x36\x9f\xf0\xc2\xfb\x86\xfe\xa5\x5c\x57\x82\xab\xe5\xd4\x98\x77\x49\xaa\x04\x99\x59\x06\xb7\xe2\x27\x2b\x10\xa4\x3e\xc2\xda\x65\xa4\xa7\x02\xa1\x9c\x83\xf1\x37\xec\x9e\x30\x50\x1b\x5e\x60\x64\x55\xd4\x40\xb8\x53\xd2\x72\xed\x59\xfe\x35\x16\x64\xa6\x8e\xe7\x4e\xf1\x7f\x4d\x08\xb1\xe2\x5d\xf8\x7b\x5d\x25\xc1\x72\xcf\xab\x6c\xed\x25\x2e\x04\x07\xf1\x3a\xee\x2e\x9f\x70\xc2\x60\x59\x7a\xc1\xf9\xd2\x9f\x0c\xf4\x8c\xff\x58\xe8\xec\xbb\x44\x08\xd5\xdf\xb8\xc0\x62\xff\x25\x82\xa5\xef\xd7\xec\x41\xd7\x1a\x82\xef\x74\xce\xf7\xe2\x45\x17\x09\x2f\x13\x76\xeb\xfe\x1d\xb9\x1f\xda\x7a\x37\xf2\x90\x0d\x41\xd4\x3b\xaa\xff\x72\xab\x23\xe1\xf8\xd9\x27\x52\x7f\x5a\xb7\x13\x54\x2b\xc3\xbd\x77\xa6\xd8\x13\x02\x02\x39\x6a\x78\xce\xf8\x10\xb6\xdd\xd5\x28\x58\xb0\x72\x17\x41\xf7\x94\x6d\x62\xff\x93\x87\x84\xcb\x62\xed\x37\x6f\x69\x71\xe8\x61\xa7\xee\xae\x7c\x09\x9e\xf7\x84\x91\x5e\x83\x4f\x3e\x0d\x39\x84\x89\x1a\x83\x2e\x72\x6d\xf9\x84\x2e\x63\xab\xce\xea\x97\x33\x08\xc3\x2d\xb3\x45\x8b\x77\x35\x32\xff\x80\x85\xba\xf2\x2e\x56\x87\x2e\xfd\xff\x02\x63\x5f\xba\xff\x59\xca\x6f\x06\xdf\xe3\xd7\x3e\x33\xbe\x75\x8e\xd0\xa2\x79\x8a\x63\x5c\xeb\x29\x42\x9a\xaf\xdc\x75\xae\x57\xbb\x09\xa1\xbe\x77\xbf\xf1\x26\xa6\x13\x76\x1d\x2d\x39\xf2\x4a\xf3\x04\xa1\x76\x73\xba\x29\xd7\x9e\x4e\xc2\xa1\x39\xef\xf6\x3a\x45\x7d\x24\xdc\xe5\xfa\xd2\xa0\x5e\xf4\x81\xb0\xf9\x6b\xc6\xf2\x87\x31\x1f\x09\xeb\xd6\x2d\xf1\x59\xde\x58\x42\x28\xcb\xf9\x23\x2c\xb6\xf8\x26\xe1\x39\x87\xd7\x13\x89\x6d\x17\x09\x5b\x5e\x6e\x3b\x63\xe9\xf4\x8c\xa0\xfe\x24\xec\x8a\x80\xc9\x33\xc2\x39\x55\xf3\xed\x46\x13\x9f\x12\x3e\xdd\x7a\x7c\xa0\xd6\xfd\x19\x0d\x45\x39\x48\xe4\xef\x2c\x20\xdc\xea\xc9\x5f\xde\xe7\x67\x45\xb0\x7b\xd7\x35\xa1\xb9\x46\x98\xf0\x21\xe2\xb2\x9f\x78\xda\xe3\x0a\xbc\x3b\xbc\x9d\x37\xc1\xe4\x0b\x81\xe3\xb5\xc8\xba\xdc\xc6\x4a\x42\x80\x6d\xd4\xd9\xb7\x05\x09\x2c\x7c\x39\xb1\xb2\xc2\xff\xd2\x29\xd6\xd8\x68\xc8\xcd\xea\xc2\xc7\x27\xd9\x63\x18\xca\x16\x5a\xaf\xb5\xaa\x89\x70\x7b\xf5\x23\x31\xbb\xaa\x5d\x84\xcc\x37\x31\xa5\x4d\xa3\xd0\x0a\x91\x2b\x91\x28\xbe\xc0\x1a\x2b\x93\xbf\x6a\xa8\xc9\x5e\xda\x4d\x28\xf1\xd5\xde\x19\xa1\xb4\x9b\xd0\x14\xe5\xe9\xf5\xb7\x5c\xb3\x96\xfa\x5a\x9e\xc0\x49\xb8\x24\xdc\x71\xfb\x40\x23\x43\x78\xc6\x15\xc6\xb3\x4b\xb7\x94\x60\x24\xed\x60\x53\x79\xa9\x92\xd0\xe0\xfc\xc3\x40\xf0\x40\x1e\x0b\x37\x37\x77\x84\xf1\x07\x3c\x21\xd0\x01\x8f\xe7\x09\xbf\xa3\x59\x63\x6b\xee\xab\x18\x27\x4e\xee\xf5\x24\x9c\xd3\xae\xb7\x1c\x2f\xe9\x4d\x78\xf1\x41\xe1\x9e\x86\xc8\x20\x03\x81\xf5\x12\x32\x30\x03\x03\x9d\x6e\xb5\x03\x66\x4f\x86\xd8\xb0\x7c\x43\x52\x67\xf7\xa6\xda\x0a\x6c\x1f\x28\xf6\x15\xf4\xa8\xaa\x40\x94\xf8\x7a\x97\x1b\x4d\x69\xf4\x0f\xec\xa9\xeb\xcb\xde\xaa\xb8\x90\xe0\x3c\x3b\x94\xf3\x56\x76\x33\x0b\x5f\x2f\x1c\x37\xfe\x5b\xfe\x03\xf7\xcb\xae\xd3\x6a\x1a\x47\x8f\x5c\xe3\x4f\xf2\x6f\x5e\x31\x99\x20\xd2\x97\x7d\x80\xa7\xb7\x94\x90\xfd\xdd\x2c\x3e\x62\xd7\x6b\x42\xfb\x06\x9f\x5a\xcf\xf8\xeb\x04\x51\x0a\x96\xb3\x48\xda\x4e\x28\xfa\xe2\x95\xf7\x5e\x33\x8b\x60\xc6\x7b\xf5\x40\xfc\xb5\x70\xc2\xec\x65\x2f\xf3\x17\xc6\x0e\x31\x70\x75\x99\x69\xc0\x48\xda\x11\x96\x1c\xcb\xd5\xcc\xfe\x62\x44\x08\xb1\x4b\x10\x55\x14\x90\x23\x6c\x77\x3d\x18\xb1\x7f\xd1\x00\x83\x61\xdb\xad\xaa\xeb\x6b\x38\x09\x06\x76\x8b\x37\x54\xb6\x71\xfd\x0b\x99\xbd\x03\xf2\x0e\x7c\x33\xfe\x85\x72\xd1\xe9\xf1\xfb\x87\x77\x10\x0c\xce\x0d\x46\x1b\x26\x98\x11\xda\x5e\x26\x64\x9f\x5b\xd8\x55\x81\xef\x77\x56\x05\x3f\x5a\xa5\x4a\xe8\x5c\xf0\x36\x71\xaf\x60\x02\x0b\x98\x3f\x67\xff\xba\xee\x43\x84\x46\x69\xae\x85\xfa\xa9\x71\x04\xe3\x3f\x5c\xe3\x2f\xdf\x39\x43\x78\x39\xf7\xcd\x90\xc0\xb8\x50\x42\xf2\x64\xab\xd6\x80\x11\x21\x42\x96\x5a\xc3\x0b\x97\xcc\x57\x0c\x16\x2e\x7a\x51\x5c\x3a\xc0\xfa\x17\x5e\x77\x04\x7b\x36\xe5\x8d\x27\xfc\x48\xbd\x19\xf9\xf5\xbb\x05\x41\xa0\xcd\x83\x8f\x59\x7a\x8a\x85\x29\x57\x37\xd4\xa4\xad\xac\x20\xc8\xed\x79\x53\x74\x69\x4a\x33\xa1\xfe\xbd\x04\x5f\xca\xde\x73\x04\x21\xfe\x33\x5b\x03\x5b\x05\x09\x11\xe2\xb5\xd7\xce\x73\x0b\x13\x1e\xa9\xd4\xfc\x96\x5f\x13\xcc\x06\xd5\x86\xc8\xc9\xe7\xbe\xaf\x22\x4c\xb9\xcb\x35\xdd\x8e\xe9\x63\x50\xed\x34\xec\x2b\xa9\xac\x47\xe8\x2b\x99\xf1\x4b\x37\xc8\x8e\x70\x47\x3d\xd7\x6f\x9c\xb2\x25\xe1\xae\x8b\xc8\xb3\x16\xce\xb3\x2c\x3c\x2b\x11\xaa\x96\x5e\x7f\x8b\xa0\xc0\xef\x54\xf4\xa5\xb9\x86\x85\x89\x0e\x4b\x92\x8c\x8f\x54\x12\xc4\xca\x22\x2d\xfa\x3b\x2e\xb2\xa0\xf3\x7b\xd1\xcb\xbf\x6b\xa4\x25\xed\xd2\x1c\xb6\x5d\x20\xb4\x3d\x3a\xdb\xb1\x79\x5e\x18\xe1\x52\xa3\xb0\x8c\x49\x77\x08\x0b\xca\x41\x3a\x07\x58\x49\x5b\x08\x9f\xf4\x2e\x4c\x31\x95\xf3\x66\x61\xff\xde\x03\x8a\xf2\xa2\xdb\x08\x6d\x5b\x13\x17\x6d\xd8\x18\x4d\xf0\xbf\x6c\x10\xc3\x92\xb9\xc7\xc2\xfc\x7d\xee\xcb\xbe\x8c\x4f\x64\x41\xea\xdd\xf4\xed\x39\x12\x91\x2c\x9c\xe0\x9f\x76\x56\xd1\x24\x9a\x30\xfb\x7d\xf4\xf3\x71\x11\x99\x04\x0f\xe7\x19\x91\xc7\x02\x7d\xd8\x60\xdb\x31\x70\xa5\x29\x47\x9a\xf0\xa3\xb0\x4c\xa3\xc5\xee\x39\x21\xd9\x67\x5c\x6e\xd6\xe2\xe7\x04\x71\x1f\x4e\x8d\x4e\xf7\xe7\x84\x1b\xd1\xba\x1f\xdc\x6c\x9e\x13\x2e\xb6\xd7\x8e\xe3\x5a\x7e\x8a\xb0\xa9\x7f\x4e\xda\x7e\x61\x53\x42\xe6\x86\x27\x5b\xfc\x15\xcd\x08\x0b\x7d\xea\x96\xdd\x4f\x0b\x22\xcc\xde\x34\x50\xf1\x39\x20\x84\xad\x54\x39\x47\xed\xe3\xce\x58\x48\x58\x65\x2a\x70\xc6\xf0\x81\x14\x61\xfc\xac\x62\xc5\x4e\xbf\x18\x36\x08\x6b\x9f\xe3\x61\x55\x2c\x21\x08\x7f\xe7\x77\x5b\xac\xcd\x43\x88\xd7\xe9\x10\xeb\xba\x59\xc3\xc0\x48\xc6\xda\x41\xfd\xc6\x44\x1a\x43\xa6\x71\xf9\x3b\x73\xdf\x2f\x0c\x3e\x9f\x95\xa5\x79\x1d\xf5\x2c\x34\x99\xf5\x85\x14\xf2\xb8\x10\xf6\x3a\xd7\x9b\xe9\x5d\x3b\xce\x82\xf4\x0d\x7b\xfe\xd3\x72\x66\x04\xc1\xd3\x83\x91\x85\x4a\x69\x2c\x34\xf0\xd6\xb5\xf3\xa6\xce\x27\x18\x6e\x8a\xec\x50\xac\x5d\x46\x38\x7b\xcf\xc3\x55\xa1\x73\x39\xc1\x3f\xc6\x6a\xa7\x6e\x54\x00\xc1\x47\x4f\x9e\xfb\xf8\xa1\xc5\x04\xa3\xf1\xfb\xa2\x5e\xea\x65\xb0\x95\x19\xdf\x04\x77\x9d\xb8\xf8\x9c\x81\x9f\xe7\x3d\xee\x4d\x3d\x5f\x18\x3c\x7e\x94\x78\x67\xe7\x0b\xa2\x7f\xc0\x65\x4f\x4e\x7d\x8a\x18\x8b\x70\x68\x70\xdb\xa9\xbf\x98\xb7\xa3\xdf\x23\x28\xa4\x98\x70\xcf\xc7\x72\xd3\xdf\xd2\xea\x73\xe9\x90\xa1\xdf\x75\xb6\x12\x3b\xf4\x5d\xbd\x7c\xe8\x2a\x41\xfc\x72\xbb\xd8\x7f\xa3\xfe\xdb\xfd\xb5\x01\x97\x1d\x09\xdf\x79\x2f\x39\x77\x47\x2a\x12\x5e\x58\x90\x9f\xb8\x3b\x2f\x21\x32\xed\xf6\x9b\x80\x3b\xfa\x84\x1a\x27\x1b\xf1\x7d\x43\x39\x2c\x7c\xfc\x33\xbd\xab\x7a\x99\x31\x21\x65\x83\xf7\x9b\xfb\xcb\xc5\x08\xcb\xb4\xd7\x0d\x9d\xdb\xac\x47\x50\x9f\x31\x7f\x6a\x6f\x69\x3d\x83\x20\xeb\x87\xae\xcb\x64\x56\x10\xba\x77\xec\x6a\xbf\x6e\x68\x4e\x10\xd8\x63\xbd\xf6\x66\xb3\x09\x61\xe2\x80\xd4\x7b\x81\x50\xef\x51\x2c\x91\x1e\x79\x6b\x47\x28\xe3\xbc\x33\xe8\xbb\xe0\x24\x21\xe5\xaa\x3d\x93\xe7\xad\x43\xf0\x59\xb1\xcf\xe8\x67\x45\x38\xa1\xe3\xf2\xac\x4f\xcf\x4a\x97\x12\xee\xc5\xda\xae\xdd\xaa\xbc\x98\x90\xff\x56\x76\x9b\xe3\xda\x3c\xc2\x3e\x9f\x69\x7c\x19\x33\xcc\x08\xcf\x3e\x1f\xd3\xe4\x2c\x39\x4c\x43\x1f\x7d\x6d\xad\x6f\x1c\x26\xb4\xa9\x72\x31\xf6\x1f\x55\x08\xb5\x16\xcd\x37\x21\xe0\x4e\xe8\xab\x0c\xcd\x72\x58\x26\x40\xe8\x9a\xef\x2c\xde\x25\xb9\xf6\x7f\xa2\x77\xe6\x38\x3b\x45\x73\x87\x7f\x21\x58\xbc\x6e\x1a\xce\xe9\x11\x9e\xd5\x17\xe4\x65\x65\x73\x12\x26\x47\x67\x29\x36\x1f\x74\x26\xb4\xbb\x94\xdd\x48\x56\xe3\x60\xc3\x59\x95\xe1\xe9\x82\x2e\x8d\x15\x08\x19\xe0\x48\x2b\xd0\xf2\x22\xcc\x5d\xad\x85\x06\x2b\x33\xc2\x2b\xe1\x86\x28\xbb\xbd\x0a\x04\x9e\xcc\x8c\x4b\x83\x3c\x72\x04\x9d\xf8\xcb\x13\x2b\x03\x4f\x11\x04\x6d\x8f\xf7\x36\x47\x54\x11\xbe\x1e\xe3\xb3\x8e\x2a\x4d\x22\xbc\xf1\x70\x32\x7f\x26\x9b\x40\x18\xf8\x63\xbb\x7d\x5e\xce\x52\x42\xb9\x43\xd8\x67\x9f\x2b\x49\x84\xfd\x09\x47\xb6\x7d\xca\x99\x49\x38\x21\xf1\xdb\xab\x62\x60\x2a\xc1\xc2\x65\xf3\x52\x26\x72\xd7\xe8\xe2\x7b\x2b\x5c\xd6\xef\x64\x43\xee\x9a\x81\x92\xf7\x42\x32\x84\x6b\xf3\xae\xb9\xc9\xcf\xd4\x64\x2b\xff\xc1\x96\x13\x1b\xc5\x15\xed\xbf\x31\x70\x30\xe8\x38\xb4\xf2\xd9\x64\xb6\xe2\xf2\x29\x7d\x45\xc9\xa7\x4d\x84\xfd\x93\x5f\x75\xa6\x34\xfc\x62\xf0\x66\xfe\x15\x81\x48\x11\x2d\x42\xc3\x66\xf3\x39\x01\xe7\x97\x10\x8c\x34\x9c\x5a\xdf\xc5\x71\x10\x3a\x13\xf5\xdf\x5a\x14\x9f\x26\xcc\x15\x33\x5d\x66\xf0\x44\x9a\xf0\xf6\x79\x9c\x5c\xd0\x39\x25\x42\x6d\x76\xb8\xda\x82\xbd\x5b\x09\x02\x74\x4e\xdf\x68\xf4\x79\x7d\xb7\xc5\xe7\x77\x6e\xaf\x12\x41\xa2\xb2\x26\xbd\x47\xc1\x98\x30\xd1\xda\xf8\x69\xc6\x7d\x0d\xc2\x44\x3e\xd3\xac\x03\x6d\x76\x84\x62\x83\x19\x1a\xfb\xcf\xab\x11\x0e\x70\x0c\x5e\xcf\x6a\x5e\x48\x38\xf3\x65\xdf\xe7\x03\xfd\x9f\x18\x7c\xef\xc9\xef\xee\x30\xe5\x27\xa4\x2a\x96\x92\xc5\x6a\x81\x7f\xe1\xc4\xc2\xa0\xf0\x9d\x11\x3f\x99\x7f\x20\x7f\x62\xfb\x14\x6f\x81\xaa\x8a\x21\xf5\xdb\xd9\x41\xc1\x86\x84\xa9\xcd\x23\x45\x4a\xe3\xce\x11\xd6\x8d\x93\x7c\xe7\x6f\x9a\x43\x58\xca\x84\x1e\xac\x94\x3f\x4c\x88\x53\xfb\x55\xd8\x21\x2a\x4a\x50\xf3\xc2\x5a\x19\x5f\x13\x82\xf1\x9e\x8e\x90\x27\xb3\x9a\x2b\xa0\x17\xfd\xa4\x63\xf8\xb8\x1f\xc1\x7f\x95\x9d\xc6\xca\x05\x2e\x6c\x68\x1c\xe6\xf5\x09\xdb\xe9\x42\x70\x9a\x2b\x31\x33\xa4\x4c\x90\x0d\x3b\x84\xfe\xf4\x1e\x1d\xbd\x38\xc6\xc5\x2d\xdd\x73\x72\x5c\x69\x05\x2e\x30\x8d\xe5\x2f\x05\xb3\x08\x21\x3e\xaa\xcb\xee\x36\x9d\x25\x94\x78\x68\x36\x7a\x3c\x1f\xdd\x51\x6e\x5e\x2d\xb9\x33\x5a\xb6\x7d\x57\x7b\xc2\x6d\xe1\x49\x48\x3b\x0d\xbb\xb8\x06\x6d\x42\xf2\x9b\x4a\xfd\xef\x26\xcb\x08\xdb\x45\x18\xb1\x6f\x0f\x0d\x09\x93\xb5\x87\x5c\x1f\x97\x56\x12\xae\x5c\x6d\xb2\xde\xaa\x68\x45\xf0\xe6\x9c\xd3\x32\xf4\x4c\x92\x0d\x3b\x32\xf7\x7a\x1b\x4f\xfd\xc2\xa0\x44\xcf\x84\x87\x43\xd2\x9d\xe0\xb4\x4e\x61\xbe\x57\xa9\x3d\xe1\x84\xbf\x6b\xe6\x8a\x5e\x0b\x42\x15\xdf\xbe\xc0\xd0\x41\x61\x82\xce\xb1\xdb\x2f\x0b\x77\x67\xb2\x50\x3e\x3b\xb9\x51\xd0\xdc\x98\xb0\xfe\xb1\x41\xbc\x82\xd9\x6c\xc2\xca\xe0\x39\x3f\x17\x4d\xd2\x60\x43\x48\x4a\xa3\xfc\x6d\x9d\xb3\x0c\xaa\x05\x0d\xf8\x1d\x2f\x9a\x13\x4e\x04\x7b\x9c\xef\x55\x74\x27\x78\xa6\x05\xee\x38\x96\x69\x41\x38\x12\x93\x16\x20\xce\xa9\x47\x10\xd7\x09\x9a\x5e\xf6\x75\x1a\x21\x6e\xe3\xa1\xc8\x25\xbd\x0a\x84\x8e\xbc\xee\x03\x11\x82\xe7\x59\x63\x05\x2d\xed\x26\x17\xc2\x1e\x33\x10\xf2\xbb\xca\xb3\x29\xfc\x17\x83\xce\x92\x83\xc2\xf2\x7e\x25\x84\xc8\xf0\xb6\xf5\xdf\xf8\xce\x12\x26\x7b\xf7\xfe\xb9\xf3\xf6\x3a\xe1\x74\x60\x73\x51\xb6\x42\x0d\x0b\x9f\x07\x45\xd3\xfb\x46\x47\xe2\xc5\x86\x92\x3b\x67\x05\x12\x3a\x4d\x98\xbc\x8e\x41\x77\xc2\xc7\xd0\x27\x5f\xbf\xa4\x39\xb0\x70\x6b\x72\xe0\xad\xd6\x03\x81\x84\x98\xa7\x45\xf2\xc7\xbb\xbc\x09\x2d\xd3\x3b\x9d\x4b\xbf\x2b\x13\x36\x37\x55\xbf\xba\x2a\xa7\x46\xa8\xf9\x39\x21\xf7\xd9\x2c\x4e\x42\xdd\xf1\x38\x99\xaf\x13\x6e\x10\x46\x8a\x86\xdd\x7b\x5b\x8b\x08\x95\x09\xc3\x3f\xe6\xfc\xc9\x63\x1b\xb5\xd9\x7a\xda\x4d\x15\xbc\x45\xe8\x4f\xf5\xb4\xf9\x9d\x78\x9e\x70\x4d\xef\x97\xda\x05\xf5\x2a\xc2\xd4\xf0\xab\x67\xda\x3b\x2b\xd9\xca\x55\x96\xcf\xf8\x8d\xd9\x26\x04\x8b\xe0\xa6\x47\x76\x4d\xf3\x08\xba\x87\xf6\xcf\x68\x6d\xde\x44\x28\x13\x1b\x49\x1a\xaf\xef\x44\xe8\xce\x6f\xb1\x5f\x20\xa1\x4b\x98\xf7\xc2\xde\x9a\x76\x2e\x22\xc8\x6c\x7e\xd2\xd1\x56\x99\x40\x30\xd8\xdc\xc4\xbd\xbe\x78\x3b\xc1\x27\xf0\xed\x51\x87\x91\xf5\x84\x78\xe3\xd0\x93\xaf\xbf\x8b\x13\xf6\xbb\xef\x0c\x10\x3c\x27\x41\xf8\x39\xe1\x5b\xf5\xca\x9e\x07\x84\x2a\xe5\xb7\x1b\x8d\x6a\x9a\x08\x46\x19\x96\x5f\xd6\xaa\x54\x11\x04\x17\xdb\xf6\xee\xf6\xdc\x49\xc8\xb7\xed\x3b\x5d\xfc\x4d\x85\xb0\x77\xb7\xfa\x87\xa5\xe9\x47\x09\xbb\x72\x6f\xe9\xa7\x9f\x59\x48\x08\x51\xfa\xf6\x20\x7e\x9e\x08\xc1\x56\xd8\xed\x86\xb3\x90\x3a\xe1\x61\x69\x4f\xfc\x5a\x49\x47\x42\xb6\x55\xd5\xcc\xb9\xd5\x4a\x84\xb5\x1f\x30\x5c\x9f\x3d\x8e\xa0\x61\x7a\x7a\x4b\xe4\xa1\xc3\x04\xce\x5e\xc3\xe9\xaa\x3c\xfa\x84\x79\x99\xf6\x4f\xaa\x7f\xe4\x13\x8e\x73\x68\x38\x3a\x9b\xb9\x13\x92\xa3\x32\x7c\x27\x88\x1d\x61\x03\x6b\xea\x4c\x63\x91\xf9\xf9\x84\xce\x1b\xd5\x11\x7d\x4f\x6b\x09\x50\x77\xca\x58\xc1\x53\x4b\x98\x11\x65\x96\x5c\x3b\xe7\x10\xc1\x79\xfb\x0d\x93\xe4\xac\x3e\x66\x0c\xa7\x19\x1d\xdb\x91\x59\x0d\x2c\x30\x8b\xe5\xea\x35\x3e\x1b\x12\xe2\x6c\x23\xeb\xb9\x0b\x4a\x58\xc8\xca\xbf\x7e\xcf\x38\xf9\x19\x61\xe2\xcb\xdd\xdb\xf3\xd6\xdc\x20\x4c\xfc\x23\xf4\x8c\x4f\xb3\x99\x30\x64\xb2\xd2\x59\x30\xe3\x19\xa1\xa3\x8e\x3f\x40\x73\xa7\x07\x0b\x69\x2f\x0e\x1c\xb5\x3f\xe0\x47\x30\x2a\xbc\xeb\x22\xbd\x44\x85\xb0\x36\xf4\x6b\x34\xea\x39\x08\x66\x55\xc9\x6e\xe3\xd7\xf5\x31\x78\xf0\xc3\x33\x30\xc4\x89\x8b\x50\xb5\x2e\x39\x5b\x4e\x2d\x84\xf0\x5e\x7d\x69\x75\x1b\x57\x08\xe1\x66\xf0\x33\x8d\x18\xa3\xb3\x84\xaf\x6f\x0b\x78\xfe\x22\xc8\xf1\xf9\xe7\x46\xc5\x03\x84\x0f\x0b\x4e\xaa\x14\xce\x99\x4f\x98\xb8\x2d\xf3\xaa\xb8\xa6\x1d\x21\x7f\xea\x1f\xce\x79\x4d\xcb\x08\x77\xac\xa2\xfd\xcf\x0a\xf5\x33\x98\x3f\xe3\xab\x81\xf3\xde\xd9\x84\xc5\x02\xfa\xf9\x66\xfd\x57\xd9\x11\x3a\x55\x3c\xca\x29\x8f\x90\x32\xd0\x6b\xfe\xb7\x1c\xfc\x76\x42\x66\xca\x2f\x67\x42\x61\xe9\x89\xa0\xcd\xbb\xf7\xb0\x95\xaf\x57\x79\x4f\xad\x51\x51\x60\x2b\xa7\x6f\xba\x27\x98\xdc\x54\x20\x38\x37\x9c\x9d\xbd\x67\x58\x81\x60\x22\x18\x5c\xf6\xbb\x95\x8f\x60\xb5\x6e\x87\xff\xb6\x1f\x13\x09\x61\x5d\x6d\x1b\x44\x66\x29\x11\x26\xc5\x77\x95\x75\x1c\x61\x08\x6f\xbf\x4b\x3e\xdc\xbd\x34\x98\xd0\x19\xcb\xfb\x7e\xba\x6b\x1f\x83\xbc\x87\x39\xdb\x94\xf7\xff\x66\xf0\xae\xef\x96\xb7\x84\x78\x11\xc1\x85\x57\xdb\x8d\xb7\xc0\x96\xa0\xc6\x15\xb9\xdc\x60\x13\x1f\xc1\xa2\xa7\xac\xf0\xb2\x74\x35\x41\x60\xe9\xe2\xb0\x81\xa9\x33\x09\x9c\xd1\xe7\xf5\x6a\x4e\x6d\x66\x43\xbd\xcc\xc9\xfc\xc4\x2b\x53\x08\x39\x3d\x71\x5c\xf5\x4d\x8e\x84\x9c\x23\x53\xcd\x8b\xa6\x9e\x62\x41\x7e\xf7\xd5\x70\xce\x8f\x7a\x84\x8c\xe0\x10\x4e\x7b\x2e\x09\xc2\x9d\x6f\xfe\x0a\x83\x99\xea\x04\xf3\x03\xc5\x0f\x5e\x27\x06\x10\xee\x27\xc9\x26\x6c\x55\x15\x22\x18\x4b\x1e\x5c\x96\xbc\x4f\x90\xf0\x22\x49\xdd\xfe\xb6\x49\x36\xc1\x25\xe4\xe5\x6d\xef\x8f\xdb\x08\xef\xf8\x4f\x2b\x5b\x79\x67\x10\x76\xa6\x86\x3e\x7e\xfd\x5b\x8b\xf0\xd1\xb4\xe1\x42\xab\xbb\x28\x41\xf2\xc9\x99\x5b\xc9\xcb\x3d\x09\xba\x6b\x9a\x39\x76\x29\x31\x84\x2d\x35\x71\x1f\xb4\x24\x84\x08\x07\xf4\xaa\x44\xe6\xa8\xf5\x31\xf0\xae\xf6\xde\xc4\x95\xff\x87\xc1\x12\xbe\xb3\xe6\x99\x9e\xaf\x18\xe8\xdf\x6c\x71\xe3\xa0\xf1\x84\x2b\x4a\x87\x2e\x9b\x49\x4e\x26\x34\x06\x6d\x6f\x6e\xbe\x6d\x4b\xe0\x7b\x6b\xbd\xf4\xc5\xcc\xb9\x84\x52\xc7\x66\x11\xb7\x02\x77\x42\x64\x8d\xe6\xcf\x7b\xb7\xcb\x09\x55\x56\xbf\xb6\x4e\x1d\x64\x11\xba\x87\x94\x2c\x05\xfe\xb8\x12\x02\x6e\x5d\x3b\x66\x79\x3d\x9f\x30\xc3\xdd\xc3\x7c\xa8\x63\x0a\xe1\x7c\xe6\xc8\xb8\x1e\x71\x67\x42\xf8\x60\xd8\xb4\xbc\xb8\xd1\xe3\x9d\x08\xe7\x94\xb7\x9f\x55\xff\x05\x27\x9e\xed\x17\xf9\xee\x0e\x32\xb8\x7e\xf8\xdb\xf1\xea\x4a\x5b\xc2\x83\xf0\x15\xee\x07\x33\x9c\x09\x93\x87\x9c\x7d\xa3\x96\x1b\x10\xaa\x9e\x3d\xaa\x8d\xbc\x19\x4f\xf0\x3d\xc2\xaf\xfa\x44\x53\x9e\x50\x79\xa5\xef\x7e\xf3\x3c\x0b\x42\x85\x97\xa0\xfa\xf5\x83\x41\x6c\xa8\xb7\x11\x71\x2b\x4c\x17\x24\x3c\x96\xfc\x5a\xb1\xfc\xb5\x11\xc1\xf0\x4d\xbb\xf8\xdb\xeb\x8b\x08\x93\x53\x34\xf5\x02\x5f\x3f\x62\x60\xbf\x4b\xb4\xfc\x5e\x86\x06\xa1\xa8\xad\xe4\x93\xb5\xdf\x12\x42\x54\x49\xcb\xef\x53\xb1\x7c\x84\x8a\x48\x6f\xa5\x8c\x2d\x03\x0c\xb6\x67\x7d\x4e\xdb\xfa\xdc\x94\xc6\x50\x5e\x25\xd4\x52\xc0\xfd\x95\x81\xd0\xda\xa7\xb1\x22\xd2\xe3\x08\xd2\xd7\xd6\x7a\xff\x90\xe5\x23\x48\xad\x30\x08\xe5\x17\x35\x20\xcc\xe5\x9a\x6e\xaa\x7d\xa2\xaa\x02\x85\x95\xc7\x1f\xee\x8e\x50\x20\x9c\x36\x9a\x5a\xe1\xdc\x30\xc0\xe0\xfb\xee\x63\x75\x01\x7f\x0e\x11\x14\x0f\x72\x2e\xfa\x8b\x5b\x8b\x17\xbf\x6c\x9f\x72\x95\xa0\x2e\x97\x56\xe2\x3f\x5a\x7c\xb6\xca\x08\x6c\xcf\xf1\x20\x38\xc8\x09\x1c\x6c\xe9\xb1\x63\x2b\x9f\x16\x72\x98\x5d\xbf\xeb\xcb\x56\xd2\x4b\x9c\xd6\x7c\x8f\xe4\x27\xc4\x74\x78\x7c\x98\x17\x39\x93\x20\x28\x62\x53\x19\xdc\x5b\xc7\xc2\xef\xd2\x57\x4d\x72\xb2\x85\x04\xcb\x0d\xb6\x66\x02\x69\x13\x09\xf2\xb7\x4a\x06\x54\x8e\xad\x24\xac\xad\xd9\x78\xc3\xe6\x69\x07\x03\xb9\xad\x1f\x22\x0b\x85\xab\x09\xda\xcf\x2f\xf5\xdf\x1e\x45\x5a\x8c\x52\x54\xcd\x28\xb8\x4c\xf5\xf8\x94\x8e\x7a\x11\x4c\xbc\xec\xd6\x1d\x35\xf4\x67\xa1\x67\xc7\x07\x0d\x12\xf5\x26\x84\x8e\x3f\xa5\xc3\xb7\x6d\x13\x5b\x91\xe0\x29\xd9\xcf\x55\xaa\x4c\xc8\x12\x33\x79\xe4\x9b\x62\x4c\x60\x04\x34\x4a\xb4\x7a\x75\x08\x9b\xb8\xd4\xb6\x08\x2c\x9d\x47\x98\x78\x3f\x24\x5b\xf0\xd0\x0c\x82\x4d\xc8\x84\x0d\xd9\xda\x83\xcc\x50\x5e\xa8\xe0\x83\xc3\x4b\x09\xe7\x1c\x3d\xd7\x17\xf9\x2c\x27\x14\x5a\xb6\x24\x09\x97\x7d\x60\xc6\xb0\x66\xa9\x5f\x82\xcf\x4e\x11\xc2\x13\x3e\xc1\x17\xfd\x83\xe1\x2c\x5c\x5b\x7f\x96\x25\xba\xf1\x0a\x61\x67\x61\xa0\xf7\x5d\x8b\x2b\x84\xae\xc1\x98\xed\x7f\x91\xd2\x1a\xbd\xc4\xa8\xca\x9d\x0d\x4b\x6a\xde\x25\xf7\x46\xee\x25\x74\x9b\x3e\xd8\xbc\x52\x67\x3b\xdb\xe8\xbd\xbf\x97\xd4\x0b\x3d\x5d\xc2\xc1\xe3\x99\xc7\x33\xe5\x55\x09\xe7\xaf\xf7\xe8\x6e\xfe\x28\x46\xd8\x7c\x36\x71\xc2\xac\xc3\xa6\x84\x02\x95\x47\x8f\xf9\xaf\x8c\x9e\x05\x6e\x8c\x48\x2d\x36\x39\xc2\x42\x87\xfc\x26\xb1\x79\x5b\x6f\x12\xa6\xfc\x96\x70\x09\x3d\x17\x47\x28\x6f\x6e\x2e\x53\x9e\x12\x46\x98\xf2\xa1\x75\xf5\xd5\x62\x4e\xc2\xcf\x9f\x11\x87\xa4\xad\x85\x09\xba\x05\x8f\xd7\x7b\xb7\x0a\x10\x9e\x0e\x57\x5e\x59\x3b\x5e\x9d\x0d\xc9\xc2\x3b\xb8\xe2\xb5\x2e\x11\xce\x1f\xe8\xe7\x0b\xb9\xf1\x8b\xc1\xac\xf3\x97\x36\x4d\x5a\xc3\x47\x78\xd7\x3c\xdb\x8a\xcf\xca\x9c\x0d\xf9\xbc\x21\x33\xf3\xf6\xb7\x57\xa0\xe5\xda\x5d\xcf\xbb\x19\x6a\x04\x41\xe5\x8c\xad\x71\xaf\x54\x08\x57\x73\x8f\xe9\xd9\x75\xf5\x31\xd8\xfb\xc5\x70\x6f\x64\x45\x14\x41\xfa\x9b\xaf\xd2\x11\xde\xdd\x84\xa4\xa1\xa0\xfb\xfd\xb2\x61\x04\xfe\xfa\x8f\x3b\x16\xca\xdb\x11\xb2\x1c\xef\x39\xb6\x9e\x31\x23\x7c\xc9\xc9\x6f\x6e\xbe\x2d\x4b\x48\x5a\x75\xaa\x47\x5d\x79\x0f\x61\xbf\xb6\xf7\x5e\x7f\x59\x77\xc2\x24\xab\xe3\x56\xbe\x95\x3a\x84\x81\x6d\xdd\xbf\x44\x26\x82\xc1\x53\x49\xd3\xe7\xcb\xc9\x8a\x70\xad\x6d\xf9\x7a\xb9\x67\x4b\xd8\x90\xba\xba\xe8\xa2\x9e\x78\x3f\x83\x1a\xcd\x69\x27\x12\xf4\xb9\x08\x95\xed\xb1\xae\x6a\xb9\x2c\x82\xfc\xee\xd4\xf0\x4f\x17\xc0\x60\x9f\xd8\xaa\x94\xab\xbb\x1d\x08\x8f\xaf\x6d\xfa\xda\x73\x59\x9c\x60\x65\x11\x93\x39\x2e\xe6\x13\x83\x27\x56\x13\xf2\xdc\x7e\xff\x64\xc3\x1a\x29\xd5\x71\x26\x98\x4b\x88\xe6\x2f\x29\xdd\x51\x27\x45\xa8\x72\x73\x12\x14\x36\x9e\x4e\x98\xf0\xc3\x59\x48\xc1\x4b\x85\x20\xa4\xc4\x91\xb8\xc3\x52\x84\x30\x5d\xef\x39\x77\xfa\x6f\x0f\x82\xab\x6f\xce\x82\xcd\x47\xc5\x08\x4f\x1e\xab\x14\xb7\x5d\x78\xcf\xa0\xfd\xa9\xdf\x89\xe7\x6e\x93\x68\x0c\x26\xda\x5b\x74\x4a\x5b\x2e\x11\x3a\xbe\xb9\x4b\xff\xc5\x96\xbc\x68\x6f\x95\xf6\x1b\x2c\x74\xb7\xef\xfa\x68\xd6\x76\x89\xb0\x28\x30\xe3\x9c\x75\x77\x1d\xe1\xe2\xae\x7d\xd6\x7f\xd7\x4c\xb8\x99\x6f\xb3\xcc\xc1\x85\xc0\xa7\x5c\x6a\x79\x3c\xdb\x89\xad\xe4\x6c\x52\x3d\x7a\x90\x15\xc0\x56\xf2\x12\x62\xad\xfc\xb6\xf0\x10\xe6\xd5\x75\x32\x73\x02\xcd\x09\x7a\x8f\x27\x0c\xac\x9a\x28\x40\x38\x6a\x58\x23\xb3\x8e\x71\x22\xbc\x3d\x7c\xb8\xfc\xde\xc5\x95\x84\xdf\xb3\x27\xf4\xba\x19\xad\x24\xa4\x95\xcf\x2a\x58\xb1\xe8\x13\x0b\x5c\xf5\x13\x39\x1e\xdd\x5b\x44\x28\x8e\xff\xe9\x97\x72\x36\x9b\x41\x7d\xc1\xc3\xef\x16\x3d\xe3\x09\x65\x8a\x32\x9f\x1c\x23\xd5\x08\xc6\xa7\x72\x67\x9b\x47\xaf\x26\x08\x9e\x97\xb2\x4b\x7d\x75\x89\xd0\xa6\xbd\x6a\xf7\x5f\xb4\x86\x26\x6c\xd8\xcb\xb8\x11\x9e\xb8\x25\x7c\x58\xc6\x28\x10\x26\xdc\xfb\xa3\x1b\xb0\x6c\x05\x61\x9e\x8c\xa7\xc0\xba\x71\x65\x84\x67\xc3\xd1\x0a\x73\xb4\x17\x10\x44\x77\xe9\xcd\xdc\x7f\xca\x84\x70\x91\x6b\xf6\xd2\xc1\x54\x23\xc2\xb2\xdb\x0f\x7e\xcd\x39\x63\x4f\x30\x75\x08\xda\xb7\xd9\x76\x3b\x1b\xae\xc7\x71\xdd\x5c\x3e\x2c\x48\x38\xb0\xe0\x45\xa7\xdd\x0c\x6f\x42\xc0\x06\xbf\x45\x1b\x57\x5e\x27\x64\xb5\xd0\x70\xe0\x28\x76\x69\x91\xf3\x4d\x8f\xa7\x2c\x3c\x98\xf5\xe9\xea\xdf\xd1\x82\x9b\x61\xfe\xc3\x5b\x6d\x08\xbf\x79\x6d\x8a\x96\x72\x5b\xb0\x95\x91\xa8\x5a\x87\xeb\x3e\x36\x6c\x45\x58\xdc\xce\x8a\xd3\x8e\x9b\x30\xc7\xb3\x8a\xc5\x7b\x6f\x3a\x21\xd2\xba\x73\xfb\x84\x72\x93\xff\x89\x8a\x8c\xce\xcc\xdf\x71\x6a\xff\x13\x7f\x3e\x9c\x98\xf0\xfa\xf4\x10\x03\x3b\xcd\xc4\xba\x61\x2f\x03\x82\xea\x07\x97\x0b\x2a\xbd\x2b\x08\xc2\x4e\x96\x75\x37\x35\x95\x08\xbf\x67\x16\xaa\x58\xdd\x9d\x43\x68\x34\x4f\x8d\x74\x4b\x59\x43\x28\xd8\x74\x82\x37\x69\xa5\x05\x41\xd9\xed\x74\x6d\x49\xb8\x0e\xe1\xf1\x0e\x39\x89\x80\x6e\x4f\x82\x7b\xc7\xa6\x38\xf7\x71\x03\x0c\x3e\x67\xaa\x1e\xed\xb6\x36\x27\x74\xee\xf0\x1d\xea\x5e\x64\x45\x63\x65\xba\xb0\xc8\x8c\xae\xb7\xc6\x84\x0e\xbd\xd5\x07\xdf\x76\x9a\xb0\x95\x45\x82\x46\x13\x0e\x70\x0a\x11\x0e\x95\xe5\x9f\x7d\x2c\xe2\x48\xf0\x55\xe6\x5f\xf5\xf0\xdd\x3a\x82\xef\x39\xe5\xc5\x51\x19\x4b\x08\x76\xab\xd7\x5d\x29\xf1\x3c\x42\xf0\x7c\xbc\x7d\x7e\x96\x92\x3d\x21\x7e\x76\x94\x18\x4f\xe4\x41\xc2\xc2\x43\x67\xec\x7d\xd6\x48\xb0\x61\x9a\xd0\x87\x76\x9b\xee\xa6\x0a\xf4\xdf\x97\xd5\x7d\xa2\xec\x49\x08\x6c\x73\x68\x3a\x30\xc9\x93\x20\x34\xeb\xec\xeb\x45\xd1\x87\x09\x25\x32\xed\x37\x93\x57\x9c\x23\x5c\xb1\x59\x59\x28\xba\xfe\x0e\x0b\x55\xae\x93\x9f\x1e\x18\x2d\x45\xb9\xaa\x7d\x8a\x15\x17\x08\x8b\x8e\x8f\x68\x77\x4d\xbc\x44\x30\xb8\x1d\x6f\xae\x34\x5a\x7a\x9a\x2d\x6f\x1f\xbf\x96\x4a\x58\x7c\xfe\xea\x83\xdf\x11\x33\x09\x4d\xab\x36\xd2\x11\xe3\x1c\x42\x53\xb6\xa9\x94\xd8\xc9\x63\x84\x43\xac\xb3\xdb\x0a\x5b\x4b\x08\x67\xcd\x57\x3e\xe5\xb6\x2a\x24\xb4\xd7\xf7\xaf\xdf\xb8\xe5\x22\xa1\x74\xd9\x23\x93\xa4\x5e\x41\x42\xea\x69\x2d\xa3\x34\xc5\x93\x04\x91\x35\x6d\xd3\x7f\x70\xa7\x13\x38\x0d\xca\x45\x54\xa7\x9e\x20\xf4\x7b\xad\x50\xf3\xba\xbf\x98\xf0\xe9\xbe\xa6\x94\xc5\xa6\xf1\x84\xf6\xe9\xdc\xcb\x4a\xdc\xd6\x10\x0c\x64\x5c\xe4\xbf\xa7\x8d\x1e\xa8\x9d\xbb\x97\xb9\x69\xc8\x10\xf6\x7d\xb8\x5d\x3a\x5b\x96\x93\xa0\xb6\x29\xa1\xd8\xdb\x51\x83\x70\x52\x6a\xee\xe5\x13\xcb\xf5\x09\xfc\x67\xae\xd6\x6a\xed\xf8\xc8\x20\xc5\xa8\xe2\xeb\xab\xac\x49\x04\x3e\xb5\xfe\x39\x37\xcd\x3e\x31\x58\xf1\x75\xbe\x7f\x8a\xe9\x4f\x06\x0d\x92\x86\x2e\x11\x91\xe5\x6c\x78\xf4\x21\x50\x68\xbf\x0f\x2f\x41\xcc\xe0\x47\xb9\xc1\xfc\x75\x84\xa7\x1a\xaa\xdb\x0d\x03\x8f\xb3\x21\xb5\xf6\x93\xb3\x60\x40\x3e\x21\xca\xdd\x40\xd3\x7a\xfb\x4e\x42\xb7\x98\xb4\x86\xee\x05\x6b\x82\x42\x80\xd9\x2b\xeb\x58\x2b\x42\x7b\xcd\xfa\xe8\x79\xcd\xcb\x08\x3d\x4b\x7f\xb7\xe5\x2b\x08\x12\x1c\x56\xe8\xbb\x2f\xda\xee\x46\x30\xfb\x65\x76\x31\x5c\x5d\x8b\x20\x25\xa8\x65\xe1\xd4\x27\x47\xe8\x3f\x7c\xf1\xe2\x85\xf0\xd7\x0c\x0a\x2e\xf8\xb5\xce\x16\xde\x49\x90\xb4\x14\x7a\xc5\x9a\xe8\x41\x58\x78\xc7\xc3\x20\xda\x2d\x81\x30\xd0\x61\xb1\x61\x29\xaf\x2c\xe1\x9e\xcc\xa9\x89\x7f\x2c\x0e\xb2\xa0\x9e\x2a\xbb\xf1\x9e\xab\x1c\xa1\x23\x87\xeb\x4e\xf8\x46\x0e\xc2\x85\x20\xd9\xf5\x2b\x4d\x87\x19\x58\x3d\x2e\x35\x73\x6a\x18\x60\x86\xdc\xd1\xfd\xad\x3e\x85\x90\x28\xf1\x94\xe7\xc2\x70\x32\xeb\x3f\x41\xb4\xee\xa7\x8c\xa5\xf9\x21\x36\x74\xaa\x3a\x4c\x0d\x61\x6d\x23\x4c\xaf\xb6\x3e\xf3\xf0\xe8\x36\xb6\xb2\xea\xe0\xe2\xf9\x7f\x1f\xc5\xfd\xfb\x77\x59\x1e\xfb\x91\xc3\x42\xf8\xf8\xc6\x7e\x37\x9f\x5b\x84\x9c\x77\x61\x1f\x94\xef\x56\x13\x1e\x0d\xf9\xcc\x49\xaf\xed\x23\x58\x6c\x17\x53\x4b\xe9\xd0\x65\x61\x99\x63\xea\xda\xaf\xd9\x67\x59\xf8\x5c\x27\x36\xff\xcc\x8b\x57\x04\xe9\xcd\x17\xc4\xbe\x0b\x56\x11\x66\xba\xbd\x94\x98\x7d\xdc\x97\x70\xfa\xa5\xa5\x66\xd4\xf5\x53\x84\x15\x19\x67\xc2\x26\x75\x6c\x24\x58\x8a\x7e\x3c\x59\x3b\xc9\x89\xd0\xb6\xe6\x6e\x02\x87\xce\x16\x36\x04\x6b\x3e\xdb\x5e\xbd\x79\x27\xa1\x62\xd0\xf0\xea\xec\x84\x2a\x42\xca\x85\xe9\xc6\x9b\x1a\x77\x12\x16\x17\xde\x58\x9e\xf1\x6d\x07\xa1\xfa\xde\x34\x1f\xd3\x79\xd1\x84\x9c\x9b\xef\x0b\x67\xad\x5a\x4e\xf0\x9b\x96\x75\x73\x20\x78\x11\xe1\x43\xd6\x56\x8f\x67\x36\x3c\x84\x39\xcc\x10\xb6\x94\x9d\x23\xa8\xaa\x08\x56\xde\xed\xf6\x23\x70\x3c\xab\x79\xed\xf0\xa7\x85\x41\xc4\xb8\x8c\x1f\x5d\xfe\x3c\x84\xa7\xfa\x81\x4f\x43\x97\x5a\xd3\x58\xd9\x2a\xb9\x26\x24\x3e\x6f\x3c\x61\xe7\x91\xf5\x95\xc2\xf5\x79\x2c\xd4\x29\xbf\x29\x39\xac\xb3\x9f\x90\xd5\x77\x9f\xc3\xe9\xfe\x4d\x16\xd2\xde\x4d\xdc\xc2\x64\xdd\x21\x4c\xb8\x5f\x24\xfc\x17\x4a\x5d\x67\xf6\xea\x4d\x0b\x66\x41\x43\xe8\xe4\xd6\x09\x22\xab\x59\xb0\x7d\xbe\xb8\x74\x2e\xd7\x29\xc2\x06\xb1\xd9\x6b\xd4\x2a\x93\x59\xa8\x8c\x9f\x62\x57\x50\xb0\x81\xd0\xf2\xd6\x9a\xaf\x79\xda\x79\x16\x5a\x76\x2f\x9a\x93\x28\x78\x90\xc0\xfb\xa2\x67\xc9\x9a\xf7\x49\x84\xcb\x8e\x5e\x8f\xc8\xb4\x88\x20\xf6\xd4\x44\xf3\xbc\x98\x27\xc1\x77\xa7\x1d\xcf\x63\xbb\xb5\x84\x75\x42\xbd\x53\x4f\x9e\x74\x26\x2c\x57\x08\x90\x5c\xe8\x65\x41\x58\x9d\x5e\xba\xa1\x27\xc1\x97\x85\x01\x3e\xfb\x73\x4a\x22\x95\x04\x43\x9f\xde\xc0\x71\xb7\x4e\xb2\x70\xa7\x67\xf6\xdb\x6a\xc7\x36\x16\x82\x76\x3d\xfa\x12\xdb\x57\xc9\xc2\xd7\x7b\xa6\xdf\x6a\x2f\x87\xb0\x90\x37\xfd\xcd\x95\x94\xb5\x85\x04\x8e\xc4\xdd\x09\xdd\x9a\x3b\x08\x1f\x8f\x5c\xf2\xe0\x8d\xa8\x61\x61\xb6\xbb\x07\x7f\xed\xd5\x13\x84\xa8\xea\x3f\x41\xdc\xdf\xef\x12\x74\x5a\x6f\xd7\x9d\x3c\x95\xcd\xc2\xdd\xfc\xe2\x57\x82\x52\x97\x09\x7a\x52\x05\xdb\xf6\x0f\x5d\x23\xbc\xdf\xfa\xe9\xd0\xcc\xc1\xa3\x84\x3c\xb7\x63\x32\xa5\x1d\x29\x2c\x14\xf0\x35\xe5\x46\xa6\x1d\x25\xf0\x7d\xb2\x4d\x15\x2e\xf7\x21\x6c\xf3\xba\xf3\x22\x55\xf7\x37\x83\x5b\x33\xb6\x2d\x51\xd6\xe3\xa3\x7f\x40\x8b\x7b\xa3\x67\xd7\x21\x8b\x7f\xc1\xd8\xf7\x52\x74\xb5\x7e\x69\x05\xb4\x13\xd2\x3c\x3e\xea\x6b\x12\x74\x2f\x69\xcf\xf9\x18\x6a\x4b\x08\x49\xfc\xde\x3f\x4f\xc7\x9b\x10\x37\xb5\xe8\x8c\xc0\xc4\x3c\xc2\xa2\x0f\xbf\x8e\xf9\x65\x29\x13\x16\x15\xb3\xb6\xcd\x9f\x1f\x45\x28\x39\x35\xce\x77\xa6\xca\x37\x06\x6f\x23\x92\xed\x5d\xae\xf9\x11\x94\x9c\x23\x86\x9c\xde\xcd\x20\xec\x7e\xd4\xed\xf7\xa2\xff\x10\xe1\xcd\x35\x86\x7b\x7f\x1b\x2f\x61\xff\x70\xc2\x73\x8b\x93\x16\x04\xde\xe3\x21\xab\x07\xd6\xf9\xb3\x41\x95\xbc\xa6\xdd\x17\xf6\x27\x14\x9f\xd4\x61\x32\xa3\xd2\x08\xee\x51\x31\xad\x99\xde\xc6\x04\x5d\x47\x1c\xb8\xe8\x6d\x47\xf8\x62\x31\x77\xbd\x7d\xe5\x7c\x42\xf5\x9a\x38\x7e\xcf\xef\x7b\x08\x32\x22\xfd\x2b\x1c\x97\x79\x10\xf6\x5c\x7b\x5a\x36\x47\xd9\x9d\x90\x33\x10\x93\xa3\xbb\xab\x90\x20\x95\xae\x3b\x74\xdd\xa0\x86\x85\x4d\x07\x77\x66\x7c\xdd\x61\x43\x78\x24\xab\x62\x66\xd1\xf1\x93\x19\xc3\xae\xe2\x15\xb6\x9f\xa5\x6d\x08\x33\x27\xaa\x9d\x8c\xae\xe5\x23\x94\xc7\xce\x53\x10\xf9\x69\x41\x88\x8f\xe9\xba\x5f\x63\xd3\xcf\x60\x43\xe2\xdb\xe4\x07\xeb\xe4\xd8\x4a\xe2\x61\xcf\x2b\x5d\xda\x8b\x08\x5d\x3f\x1f\x4a\xfa\x44\x84\xd0\x58\xd9\x53\x3b\xc5\x31\xdb\xbe\xad\x02\x09\xcb\xc4\x0f\xfb\x14\xf0\x12\xde\xfc\xe1\x92\xaf\x68\xf5\x64\xc3\x7d\x0b\x87\xa6\x19\x16\x7c\x84\x57\x50\x7d\xe4\x95\x34\x8b\x30\x38\x65\x76\xa7\xc6\xca\xf1\x84\x49\x17\x4d\x45\x4e\x7e\x96\x27\x5c\x39\xb5\xa7\x53\xed\xcf\x30\x83\xd7\x99\xe5\xf7\x7b\xed\x39\x09\x79\xdf\x06\x0f\xd1\x13\x2f\x42\x8b\x7f\xd1\xc6\xfd\x09\xd7\x58\x68\xf3\x7a\xe0\xfd\xff\x16\x7e\x6f\xda\xe5\xff\x98\xc1\x2f\xb1\xd2\xf9\x3e\x67\x16\x11\x62\x92\x9c\x67\xfe\x3d\xec\xfa\x3e\x59\x2f\x3a\xaf\x6c\x09\x1b\x42\x13\x7e\xff\xfa\x9e\xd3\xcd\xa0\x6c\xc7\xcc\x04\xd7\xa2\x1f\x0c\xb2\xb8\xb2\x75\x16\xce\xe3\x20\x18\x3f\xe7\x70\xd5\x5b\x2d\x44\xc8\xca\x99\x74\x72\xc5\x09\x7e\x42\xad\x7a\x6d\x99\x07\xd3\xc3\x80\xba\x6f\x31\x8e\x97\x3f\x31\xd0\x0e\x48\xf7\x89\x8a\xe3\xa4\x31\x68\xac\xd0\x0b\x2b\xfb\x75\x95\x41\x9b\x4f\x5c\xf1\x2b\xfb\x19\x84\x5e\xad\xfe\x72\xb7\x50\x4b\xc2\xd7\x97\xce\x79\xd7\x97\x05\xb0\x95\x78\x89\xe9\x97\x73\xf7\x7f\xad\x40\xb1\x69\x74\xbb\x85\xe7\x14\x82\xd6\x89\xe0\xed\xa1\x8b\x35\x08\x33\x4e\x74\xac\xd8\x12\x98\x4d\xd0\x97\x36\xce\x36\xcf\x1e\x4f\x08\x15\x3c\x64\x1f\xfb\x59\x9d\x0d\xc7\x93\x14\x44\xd6\x5f\xb9\x53\x31\x86\xbc\xab\xbf\x3e\xad\x9b\xcb\xd0\x18\xa6\x2e\x1c\x30\x9a\xf0\xa4\xb9\x02\x85\x55\x96\x61\xe5\xa9\x9a\xa3\x37\x59\x8d\xb3\x2e\x1b\x74\x09\xf3\xf3\x84\x83\x14\xd7\xec\x22\xec\x5a\x4a\x9f\xb4\x83\xec\x08\x0a\xe7\x87\x53\x6b\x78\xc4\x08\x76\x4f\xf2\xab\xca\xf2\x0e\x12\x2e\x0c\xb7\x7a\x0c\xed\xb5\x22\x64\x9e\xdd\x18\xb8\xee\xae\x14\xe1\x5e\xd6\xe0\xc6\xe8\x29\x1c\x04\xa5\x9f\xe3\xa2\x5d\x1d\x78\x08\x16\x07\xf8\x0f\xa7\xdd\xf0\x20\xa8\xa7\xb8\x9d\x51\x90\x4e\x26\x34\xba\xab\x9f\xc8\xbb\x19\x4e\x70\xf0\x1d\x8f\x05\x91\xbb\x08\x7e\xe5\xdc\xf6\x13\x34\xc3\xd9\x46\x67\x26\xed\x3c\xc2\x35\xfa\xe6\x3f\xa5\x38\xe2\x25\x3a\x4b\x84\xd0\x32\xf3\x97\xf9\x0e\x8f\xf7\x84\x8b\xb1\x37\x7e\xbe\x1c\xbe\x45\xb8\xe2\xeb\xaf\x92\x23\xd9\xc5\xc2\xe5\x8d\x31\xfd\x1a\x73\xf2\x59\x30\xa1\x9c\x8e\xbf\xa3\xbd\x3c\xcc\x2a\x5d\xed\xc7\x04\x71\x8d\x9f\xd3\x5c\xde\x3e\x26\x74\xdb\xf6\xbc\x6c\x79\x50\x46\xe0\x69\xac\xee\xca\x6e\x3e\xc3\xc2\x22\xf8\x54\x0d\xde\x29\x27\xec\xf9\x92\x3d\x53\x2f\x78\x3d\x0b\xed\x8b\x57\x57\xdb\x9c\x1f\x61\xa0\xa0\x93\xe0\xda\x31\x7a\xa1\xfa\x4f\xe9\x34\x9a\x32\x58\x64\xcf\x41\xd8\xcc\xbf\x7f\xae\xc5\x97\x79\x34\x56\xd4\xab\xb7\x09\x16\x26\xab\x11\x62\xd4\xb5\x0f\xf1\x8e\x97\x25\x7c\xb9\x2d\xf5\xf5\x64\xe4\x5b\x06\x46\x53\xdf\xa8\xa6\x47\x1e\xa0\x31\x1c\x33\x3a\x78\xbf\xac\x44\x99\x70\xe3\xa9\x57\xca\x33\x8d\x85\x84\xbb\x99\x93\xba\x67\x90\x1f\xe1\x77\xf1\x7c\x95\xae\x93\x5e\x84\x80\x4f\x57\x84\x1c\x4d\xfa\x18\x48\x33\x73\xed\x2b\x6b\x9d\x09\x0f\x4b\x3d\xda\xa3\x74\xef\x10\x8a\xdb\x4a\x79\xea\xe6\xcd\x23\xcc\x3a\x54\xaa\x98\xb4\x5c\x82\x50\xba\x48\xd5\xf0\x79\xc3\x2f\x06\x83\x91\x86\x12\xfb\xcd\x2e\x13\x7e\x7d\xfe\x60\x37\x67\x55\x0e\x41\xe4\xf0\x4a\x8e\xf7\xa5\xcd\x6c\xe5\x3f\xd0\x34\x2c\x73\xf8\x15\x7d\x9a\xe0\x16\xb9\xff\x09\x67\xcc\x69\x02\xff\x8f\xc5\x86\xe6\x03\x2e\x84\xd4\x33\xbb\xfa\x77\xab\x1f\x65\x2b\x12\x7d\xea\x2f\xf5\xf6\x26\x13\xf6\x64\xf1\x3e\xfa\xb4\xeb\x32\x61\x7a\x8f\xc3\x41\x77\x6f\x7f\xc2\x91\x3f\xbe\xb9\x2f\x83\xfe\x30\xb0\xff\xf9\x40\xf7\x6c\xcb\x2f\x06\xd3\x33\xc3\x4e\x8a\x05\x26\x11\x9c\x04\xac\x3e\xfb\x29\xe6\x13\x9e\xe7\x27\x85\x24\x7d\xfb\xc1\xe0\x78\x74\x21\xf7\xc3\xdb\x93\x08\xd1\x4a\x37\x32\x48\x26\x87\xd0\xe5\xb6\xc3\x27\xe6\xc0\x29\xc2\xa2\xb4\xc6\x95\xb3\x1d\xf7\x13\x64\x74\x56\x1e\x9a\x57\xe6\x4a\xb0\xfc\x43\xcb\x02\x2f\x1e\x24\x4c\x1c\x27\x5d\x2d\xd6\xef\x47\x48\x4f\xe5\xce\x6b\x57\x17\x20\x28\x0c\x0b\xab\xe6\xf8\x71\x10\xc4\x72\xb9\x97\x55\x3d\x50\x25\xe4\x6e\xe0\xf8\x2e\x83\x49\x84\x09\x06\xdc\x57\x07\x1a\x65\x08\xa2\x5a\xe7\x7a\xd5\xea\x8f\xb0\x17\xb7\xd9\x0f\x33\xe6\xd6\x55\x40\xd4\xef\xa7\xae\xd7\x77\x79\xc2\x75\xb9\xd5\x33\x6b\xf4\x95\x09\xaf\x5a\xd3\xeb\xbf\xb0\x96\x10\xe6\x36\xfe\x6e\x53\x7f\x26\x44\xf8\x55\xf0\x6d\x69\x3f\x4b\x83\x70\xae\xf0\x7b\xf6\x40\xc0\x2c\x42\xe1\xd4\x59\xbc\xf7\xd7\x29\x11\xc4\xa2\x2a\x93\x8e\xa5\xfc\x60\xa0\x6a\xba\xc1\xc6\x87\x57\x99\xc6\xa0\x18\xc9\x91\xb4\xf3\x46\x0b\x33\x06\x79\x9e\xfa\xf8\xe2\x03\x2a\x34\x86\xe5\xdf\x78\x8e\x55\x77\x7e\x67\x70\xb4\x7b\x52\xdf\x9c\x57\x87\x09\xb5\x2b\x79\xce\xac\x9f\x23\x45\x90\xee\xb0\x0a\xf4\xb1\x5c\x4a\x90\x99\xde\xae\x23\x53\x28\x4a\x48\xc5\x82\x0f\xe9\x43\x73\x08\xfa\x02\x09\xcd\xbe\x17\x7d\x08\xfd\x21\x9f\xed\x7f\x25\x4c\x22\x4c\x3e\x6f\x19\x96\xfc\x10\x0c\xa6\x4a\x8f\x3f\x6f\xfe\x7c\x02\x61\x7b\xa4\xc2\x7b\xf1\xa0\x42\x02\x5f\x46\x8c\xbe\xc4\x28\x5e\xca\x5e\x0c\xfe\x0b\x43\xf1\xbb\x7c\x76\x2a\x5c\xff\xc2\x35\xcb\xb5\xe5\xbe\x89\xb5\x0c\x62\xd4\x13\x25\x32\xd7\x4a\x12\xf2\x16\x26\xd7\xfb\xbd\x5c\xc9\x86\xa2\x1d\xd2\xd3\x83\x79\x06\x99\x31\x24\xea\xd4\x4f\x3e\xe3\x55\x5f\x81\x25\x5f\x15\x2e\x7f\x8d\x79\xcf\x40\xda\xfe\x5b\xbf\xc3\xc6\x05\x34\x06\xa3\x87\xe5\xf5\x07\x42\xe6\x12\xd4\x5e\x9d\x35\x1a\x3f\x23\x8f\xe0\xf2\x3d\x58\xe5\xbe\xb8\x32\xa1\x2d\xe6\xf5\x0a\xc5\xcc\xcb\xac\xb1\xb2\x29\x8f\xe7\xd1\x9a\xec\x1e\x06\x95\x67\x22\x6b\x25\x32\x96\xd3\x18\x94\xdb\x8c\x15\x7a\x3f\xb7\x33\xc8\x59\xfd\xbb\x51\xc7\x2c\xad\x02\xc3\xae\xbf\x1f\xa5\xf1\xcc\x25\xdc\x18\x71\x9b\xef\x6d\xc9\x41\x98\xd5\xbb\x6e\xe1\x17\x0d\x5b\xc2\x94\x41\x25\x79\x39\x5f\x5b\x42\xfa\x36\xbb\x26\xbe\x63\x1e\x04\x9b\xdb\x92\xd9\x96\x3f\xb7\xb1\x21\xee\xc0\xce\xee\x1d\x7a\x7e\x6c\x88\xcf\x49\x9e\x7f\x3a\xb1\x91\x19\xc3\xca\xda\xbe\x86\x52\x91\x27\x6c\x28\xb5\x34\x55\x6d\x75\x5b\x46\x63\x70\x5b\xf1\xf8\x21\x5f\x7b\x17\x83\xfa\xe0\x8f\x27\x15\xd7\xac\x22\xa4\xa5\x9c\x9c\xa0\x35\xc1\x98\x30\x33\xfa\xb0\xc2\x94\x34\x4b\x02\xa7\xae\x0a\xe7\x9c\x6d\xb6\x84\x70\xce\x7c\x7e\x5e\x8b\xe3\x2c\xf8\xf2\x7d\xac\x49\xee\x32\x21\xd4\xd6\x76\x8e\xe8\x9f\x93\x24\x9c\x5f\xd0\x6f\x5e\x76\x8f\x9f\xad\xcc\xe7\xaa\x53\xab\x7c\xca\x43\x70\x55\x09\x5f\x99\x3c\x59\x86\x10\xf9\xa5\xf4\xfa\xd0\xa2\x15\x04\x4f\x19\xf7\x36\x87\x2e\x2d\xc2\x9a\x29\x73\x8f\x46\xf8\x05\x13\xae\xef\x7b\x46\x69\x89\x5c\x04\xc5\xb3\xfa\x71\xfc\x8a\xf6\x84\x9b\x77\x8b\x7d\x14\x7f\x30\x84\xd6\x52\xa9\x3d\x87\x17\xa5\xb2\xc6\xca\x8c\x5f\x17\xb7\x1f\xfd\x39\x9e\xf0\x4c\xae\xc5\x44\x9b\xcf\x6a\xf4\x45\x14\xeb\x1f\x95\xad\x41\xd8\xfc\x61\xdc\xb4\x36\x3d\x29\xc2\x8b\x86\x95\x6b\x28\x77\xf4\x6f\xde\xbd\x2d\x81\x22\x67\x13\x16\xaf\x5f\x75\xe7\x8a\xb0\x0a\xe1\x77\x94\xe8\x51\xad\x37\x4e\x84\xe7\x9f\x33\x9a\x7e\x57\xc9\x10\xbe\x8d\x8c\x3c\x79\xd0\xb5\x99\xc0\x6f\x72\xf8\xfe\xec\xf1\xe2\x04\xbb\x0f\x17\xc2\x39\x6d\xf8\x09\x3e\x49\x02\x06\xf2\x07\x95\x08\x4b\xcb\xf7\x2e\x3c\x1a\xae\x4d\xf0\x0c\xb8\x2e\x58\xed\xa0\x44\x68\xb0\x7c\xf5\x2a\x2c\x64\x12\x61\xc7\xe5\x92\x29\x75\x16\x66\x04\x9b\x5f\x21\x6a\xde\x1e\x33\x09\xbb\x92\x64\x75\x5f\xfe\x14\x25\xac\xbd\x68\xbe\x6e\xbf\xd7\x0c\x82\xdd\xe2\x80\x81\x64\xce\x19\x84\x37\xc9\x11\x1f\xc7\xad\xd1\x20\xa4\xc6\xbc\x35\xe6\x36\x94\x22\xc4\x07\xa9\xbc\x89\x2b\x73\x26\x64\x0b\x4f\x7c\xeb\xb1\x48\x9b\xf0\x42\x6b\xad\x9a\xb6\x80\x20\x81\x37\x6b\xb5\xb0\xd1\x09\x33\xc2\xc4\x14\x1b\x83\x83\x92\xa6\x84\x36\xe9\x36\xdd\x65\xac\xbb\x2c\xcc\xca\x2d\xe2\x9b\xe6\x6e\x42\x28\x9b\x99\x26\x6c\x2d\x7a\x9a\x70\xe5\xc6\x82\xa2\x8c\xc8\xe5\x84\x4f\x21\x3e\x1c\xb7\x97\x2a\x13\xd4\x06\xa7\x49\x57\xaf\x22\x02\x77\xe9\x8c\xb9\xd3\x3f\x32\x04\x85\xc4\x69\x01\x77\xd4\xd2\x2a\x30\xf8\x27\xef\xa0\xf7\xda\xf6\x0a\x48\x3b\x4b\xab\x4f\x9e\x67\x48\xff\x0b\xae\x93\xa6\xed\x16\xe6\xd5\xfa\x9f\x98\xe6\xe8\x70\x43\x21\xab\xb5\x02\xf2\x0a\x7a\xf1\xae\x2b\xdd\x09\xfc\xdb\xed\xb2\x8e\xeb\x5d\x23\x7c\x7e\xb4\x51\xf0\xd0\x74\x1b\x36\xbc\x3f\x1c\xeb\xf5\x2d\x92\x9f\xd0\xa6\xb9\xcf\x49\x7c\x21\x18\x9c\xd1\xf8\xf8\x60\xe8\x95\x1e\x8d\x41\x3f\xf9\xe4\xd7\xb6\xd3\x43\x0c\x98\xae\x9d\xe7\xab\xdf\x78\x10\x5c\x8d\x5c\xf6\xf8\x16\x0c\x31\xb8\xbd\x34\x68\xeb\xd6\x11\x25\x1a\x83\x51\x69\x1a\x1f\xcf\x2c\x35\x36\x7c\x7f\x3e\xac\xe8\x2d\x6a\x43\xf0\x14\xb3\x66\xcd\x12\x5f\x4a\xd8\x2e\x67\xad\x54\xd2\xab\xc5\x86\x8a\xa1\x29\x3c\x1b\x17\x1b\xb3\xc1\xef\xfb\x73\x6f\x8d\x07\x7a\x6c\x98\x37\xf7\x5a\x9e\xea\x86\xda\x0a\x2c\xe7\x17\xb1\xc8\x11\xe2\x22\xcc\xb3\xb8\xfc\x6a\xa2\x40\x1c\x61\x43\x4c\x5c\x5b\xf4\x12\x86\xa0\xe8\xc3\xc7\xa5\xbc\x65\x1d\x41\xc7\xc4\x55\xb6\xef\x63\x04\xdb\xa8\x71\x30\xe3\xe2\x11\xc1\x7d\x84\xed\x3c\xe2\xb1\xf2\x4b\xd2\x08\xcc\x0b\xc3\xd5\x7f\x4b\xee\x31\x83\x0f\xfe\x87\x23\x08\xcb\xe3\xfc\x36\xee\xe8\xbe\x41\x58\x15\xd9\xc8\xc7\xb9\xd9\x97\xb0\x6d\x64\xc3\xc5\x69\xef\x17\x12\xdc\x06\x72\x3a\xaa\xe2\x74\x08\xf7\xd4\x78\x4f\x4f\xf1\xd6\x21\xc8\x2e\xd8\xae\xd7\xf6\x40\x83\xb0\xe5\xeb\x89\xdb\x5b\x9b\x8b\x08\x41\xf9\xcf\xfd\xbe\xcf\xac\x23\x2c\x2c\xe3\x5c\x18\x7c\xe8\x1e\x61\x77\x42\x4e\xaf\x9e\x6e\x20\x41\xef\x51\xe3\xb8\xb5\x7e\x7c\x84\x79\x35\xcc\xa4\xf6\xa4\x5c\x42\x83\x6b\xf0\xbb\x4f\xca\x5e\x04\xf7\xca\x49\xc9\xbb\x8f\xf1\x12\xb4\xf7\x4e\xd9\x1f\xa7\xaf\xc4\x86\x3e\xf3\x23\x05\x86\x19\x4d\xcc\x18\x9e\x6b\x49\x5c\x71\x39\x27\x47\x63\x90\x4a\x76\x20\x23\xbd\x37\x0c\xcc\x93\x97\x1b\x2a\xca\x39\x10\x56\x7d\x7c\x73\xc6\x59\x98\x87\x90\xe5\xf4\xd3\xfc\x1e\xb3\x91\x0d\x93\x93\x2b\xca\xef\xae\x12\x20\x58\x58\x2f\xdb\xda\x7b\x70\x3b\x61\xf1\xaa\x7d\xf3\x73\x15\xe6\x11\x16\xde\x5d\x7b\xea\x76\xe0\xe4\xd1\x53\xee\x88\x75\x63\xa4\x02\x81\x1a\x4e\x0d\x3b\xcc\x5e\x4e\x38\x58\x78\x4d\xf6\xfa\x1c\x39\x42\xc6\xcb\x7a\xff\x3d\x25\x32\x04\xce\xd7\x23\x77\x07\x76\xa6\x11\x16\xaf\x78\x61\x3a\x9f\xcf\x96\xd0\x7d\xee\x78\xac\xf9\xce\xcd\x2c\x48\xf9\xd8\x9a\x7c\xdb\x60\x47\x98\x79\x7d\xc1\x8c\x34\xe3\x20\x02\xe4\x03\x67\x15\xf0\x4a\x12\x3e\xa6\x8b\x4f\x6e\x50\x5e\x4a\x98\x7f\xf8\xb5\xec\xc6\x7d\xa7\x58\x63\xa5\xba\x22\xf6\x9e\xe1\xe6\xdf\x0c\xd6\xf8\xfb\x58\x1f\x18\xe7\x41\x88\xcd\xe3\x3c\x57\xf0\x70\x31\xa1\x7f\xbb\x4d\x4d\xd9\xc6\x0a\x06\xef\x3e\x8e\x5b\x24\x63\xc1\x43\xe8\x2c\xf3\x3f\xea\x6a\xa8\x42\x78\x9f\x76\x66\xdc\x7a\x05\x0f\x42\xbc\xcb\x81\x9f\x1e\xc7\xf5\x08\xbf\xc3\xf8\xe2\x2b\xe2\xf9\x08\x4e\x27\x62\x76\xe5\x9e\x9a\x44\x38\xc7\xaf\x7a\x3a\xc4\x5b\x96\x30\xe2\xa0\x96\x35\x7d\x47\x09\xe1\x5e\xe5\xf1\xc6\xd4\x72\x03\xc2\xe5\xe7\x77\x65\x68\xf9\x64\x42\x53\xa1\x91\xcd\x34\x47\x22\x08\xf4\x47\x5d\x7b\xad\x73\x9b\x30\x71\xda\xcc\xa3\xd7\x5c\xbe\x32\x98\xc0\x1d\x96\x74\xe9\xe0\x6c\x42\xc5\x41\x0f\xe7\x86\xc0\x1e\x06\x89\x9f\xe4\xcc\xa7\x48\x2d\xfc\x7f\xf8\xba\xf3\x68\xac\xde\xb8\x8f\xf7\x21\x9a\x24\xca\x90\x94\xcc\x54\x48\x86\x88\xec\xaf\x59\x69\x22\x43\x03\x49\x2a\x94\x88\x28\x14\x19\x2b\x4a\x42\x84\x34\x47\x64\x8a\x22\x2a\xdc\xa6\x48\xa1\x12\x1a\x0c\x51\x4a\xa5\x44\xa9\x3e\x0a\x9d\xa5\x67\x9d\xc7\x7d\xce\xfa\xad\xe7\x2f\xaf\xf5\xbe\xb6\x6d\x2d\xb6\x6b\x5f\xdf\xbf\x6e\x82\x4c\xfb\xcd\xb9\xad\x1b\xe5\x09\x69\x79\xe1\xdd\x6b\x0a\x8c\x09\xae\xcd\x22\x1e\x5f\xee\xfb\x12\x72\x67\xdc\x9a\xf1\x5d\x7c\x2f\x61\xf0\x58\xb7\x78\x54\xc5\x09\x16\x26\x79\x9c\x55\xda\x79\x40\x88\xf0\xd3\xee\xd8\xaa\x43\xdc\x55\x84\xac\xa4\x4d\xd6\xc7\x13\xb3\x08\x67\x55\x3f\x1a\xab\x5f\xcd\x22\x4c\x0d\x76\x54\xd6\x1a\x5e\x4a\x18\xbc\xba\x34\x61\x24\x7b\x32\x61\x81\xd4\x07\xf3\xef\x45\xdb\xd9\xe0\x1e\xce\x45\xd7\x8f\x0a\x10\x54\x05\x0b\xab\xae\xda\x6f\x22\xa4\x07\x9d\xf3\xb3\x98\xb1\x8c\x20\x19\xbc\xc3\xbe\x24\xd3\x9a\xa0\x3d\xef\x69\xdd\xdd\x05\xef\x19\xd8\x0a\xdd\x74\xf5\x6b\xb0\x25\x34\x2d\xac\x2f\xd4\x98\x2a\x4e\x98\xf9\xfd\x1c\x67\x60\x4a\x3a\x5b\xb9\x3f\x23\x65\x7f\xfe\x14\x35\x02\x4f\xaf\x51\xc5\xab\x03\x27\x08\x85\x4f\x6d\x4b\x35\xb2\xf6\x13\xb2\x76\xfa\x38\x9c\x2e\x32\x24\xac\x53\x54\x8d\x57\x6e\x97\x26\x54\x7d\x29\xba\x79\xa8\x4e\x94\x70\xdb\xed\x4b\x84\xdb\xce\x89\x84\xe8\x0a\x61\x2f\xc3\xa4\xb5\x84\xdb\x56\xbb\xfd\x9d\x65\x2d\x09\xb2\x4b\x4b\x1f\x28\x4f\xcf\x24\xd8\xac\xdc\xe2\xa0\x75\xd1\xea\xbf\x30\x33\x2f\x3b\xdb\xa1\x54\x9c\x70\xbd\xf4\x06\x67\xe3\xbb\x3a\xc2\xa3\x17\x4f\x72\x77\xff\x2a\x21\x38\x28\x84\x19\xcc\xea\x6a\x22\x5c\x5b\xa6\xb5\x77\xa3\x69\x03\xe1\xe3\x46\xcf\x13\x9e\xdf\x1f\x10\x4c\xcf\x4f\xd7\xdd\x32\x61\x05\x81\x5b\x7e\x38\xe2\xb8\x7c\x04\xa1\x4f\x63\xc9\xf7\x8c\x6f\x8b\x09\xba\xd9\x61\x13\xfd\x0d\x6e\xb2\xd0\x2c\xe8\x02\x3e\x11\x47\x82\xa8\x71\xd8\x5f\x8e\x39\x5b\x09\x81\x35\x39\x7d\x21\x29\x3d\xa5\x98\x7e\x23\x39\x6f\xeb\x0b\xee\xb1\xd7\x84\xaa\xef\x83\xfb\xbc\x2c\xdc\x88\x9f\xd7\x18\x22\xf1\x8d\x19\x47\x53\x97\xd1\xc8\xa9\xb3\xc2\x84\xb7\x47\xf9\x3a\xd7\x6c\xd0\x22\xac\xca\xbd\xa8\xbb\xd4\x75\x13\x81\xc9\x35\x30\xe8\x3b\x36\x91\xb0\xef\xed\x4b\xbb\xc8\xd2\xa7\x0c\x2e\x85\x27\x68\xe8\xff\x65\xb1\x10\xff\x74\xca\x2c\x5f\x2e\x3e\xc2\x95\x5f\xbc\x03\x0e\x1a\x0b\x09\x1b\x3b\x33\x98\x16\x57\x33\x42\xfc\xdd\x5d\x0a\x7a\x59\x46\x04\x89\xbe\x44\x2f\x53\x8e\x13\x84\xc6\xb9\xe9\xc6\xaa\x7b\xd7\x12\xb6\x65\xfc\x38\x6b\x15\x74\x90\xb0\xf5\x5b\x94\xe7\x76\x89\x39\x04\x77\x97\x65\x85\xb2\x36\x1c\x84\x58\xd1\x26\xf3\x85\xbb\x1c\x09\x27\x4f\xf9\xe8\x56\x37\x4a\xb0\xa1\x7b\xa3\x8c\x53\x73\xf3\x3b\x06\x96\x9a\xab\x2e\x8e\x88\x96\xb1\x61\x70\x24\xa8\x48\xf8\xf2\x6c\x1a\xc7\x26\xa9\xb9\x5a\x1f\xdf\x0c\x33\xe3\xa8\x10\xdf\x37\x74\xbf\x4b\x81\x90\x56\xa5\x57\xa5\xa4\xbb\x8b\x20\x70\x65\xba\x8a\xad\xd0\x5d\x42\x5d\xc8\x9c\x53\x5b\x1a\xdc\x08\x25\xce\x75\x36\xdf\x06\x5d\x09\x89\xb4\x45\xa1\xb0\x7c\x16\x41\xbd\x38\x62\xfb\x86\x05\xd2\x84\x9a\x79\xdf\x9b\x0c\xdd\x8c\xd9\xe0\x3f\x03\x67\xce\x1c\x10\x20\x74\xda\x58\xb5\x5c\xec\x5f\x4d\xd0\x8c\x36\xbc\x99\x1a\xe1\xc6\xc2\x83\x33\x21\x76\x8f\x7c\xef\x12\x2c\x0e\x67\x5d\xac\x1b\xc3\xd1\xaf\xc1\x9e\xff\xb0\x37\x44\x6f\x57\xb1\x95\x21\x41\x90\x33\x4a\x62\xca\xdd\x53\x84\xb9\x52\xca\x5d\xcb\x5a\x4f\x11\x4a\x86\xe4\x13\x46\x6b\x66\x11\xca\x17\xff\x15\x33\x76\x59\x4d\xf8\xf1\xc6\xd4\x7b\xa4\xcf\x8a\x20\xf7\xa2\xf1\xee\x99\x8a\x32\xc2\x15\xf0\x95\x3d\xe8\xcb\x23\x68\x76\x56\x73\x86\xfc\xcc\x22\xac\x5d\x68\x55\xa7\x71\xe4\x36\x81\x71\x96\xeb\xba\xd8\xf5\x9a\x81\x4b\xe4\x66\xbd\xf9\xef\x16\x11\xfa\x26\x99\xa4\xea\x7d\xfa\xcb\x20\x7d\x72\x19\x5f\xff\x29\x29\xc2\xa5\x98\xfe\x43\x36\x73\x76\xd2\x78\x19\xd8\x92\x3a\x85\xff\xc4\xab\xd2\x71\xe8\x88\x4e\x49\x6a\x9d\xad\x4b\x68\x68\x50\x9c\xcd\x8c\x4d\x76\x9e\xc7\x3b\x76\xff\x2b\x9c\x9f\x5d\x63\xec\xa6\x4d\x25\x18\xcf\xf3\x09\xc8\x3b\x53\x3c\x76\x1f\xef\x33\xfa\xc7\x8a\x09\x5b\x4f\x39\x7c\x2f\x30\xc8\x23\x4c\x2a\xf8\x2e\x61\x30\x56\x3e\x9b\x18\x39\xf3\x1c\xbd\x4e\x90\x2c\x12\x5d\xf6\x3f\xb8\xff\x54\x5b\xcd\x9d\xbd\x84\x89\xed\x4c\x5b\xe9\x7b\x9d\x70\xe4\x4f\xe4\xc0\xc8\xa9\xf5\x84\xd6\xcd\x9f\x26\x7c\xec\x2a\x27\xe4\xd5\xde\xd3\xde\x73\xfa\x19\x0b\xa9\x1f\x05\x17\xff\x2b\xa9\xa6\x5b\x02\xbf\x0f\x9d\x23\x68\xef\xbc\xd9\xfa\x0f\xf5\x4e\x8b\x06\x8f\xbb\x16\x11\x2c\x7b\x06\xa3\x0f\x27\xde\x23\x24\xa4\x1e\xdb\x25\x99\xd5\xc0\x42\x69\xed\x45\xf5\x7f\xa5\xef\xfb\x81\xbc\xd5\xf1\x07\x09\x7f\x8f\x6d\xb8\x7c\xe5\x5c\x18\x81\x09\x4a\xfb\xe1\x2c\x9f\x41\x10\x38\x10\xaa\xfc\x48\xf3\x10\x5b\xb9\x1c\xb4\x6d\x59\xfc\x18\xce\x5d\x98\x14\xfe\xd7\xda\x9f\xe0\xc4\x7f\xd8\xda\xc6\x21\x84\x10\xac\xf7\x9d\x6b\x8d\x6d\x08\x41\xcc\xff\x41\x55\x41\x5e\x1c\xe1\xe1\xe9\xa5\xda\xaf\x17\x84\x10\xe6\x3a\x94\x2c\xeb\xad\x0d\x21\x4c\xda\xbd\xe9\xec\xc4\x2f\x39\x84\xbc\x60\xc7\xfd\x21\x02\x63\x8f\xdf\xd4\xed\x66\xa7\xaa\x8f\xd3\x7f\xc0\xe0\x8e\xd7\xdd\xbe\x93\xfc\x84\x03\xbf\x5b\x7a\x2f\x3c\x5a\x4d\x50\xd8\xfa\xcc\x59\xfd\x43\x32\x61\xf1\x0d\x05\x41\x37\x3e\x57\xc2\xfe\x1d\xab\x34\xdb\xc2\x44\x08\xa7\x4b\x63\xa5\x33\x5a\x47\x18\x0c\xa5\xbc\x19\x4d\xab\x16\x24\x78\x4d\x0e\xb7\x7a\xa9\xb2\x8c\x0d\x5c\xe1\xe6\xf3\x6c\xcf\x3b\xb2\xc6\xcb\x37\xd7\xb8\x1d\xd8\xbc\xff\xbf\xf0\x6b\x4a\xcf\x17\xc1\x03\x87\x08\x1c\x87\x3e\xcc\xfe\xc1\xa7\x40\x28\xbc\xf8\xd1\x92\x73\xa7\x39\xa1\x48\xac\xf8\x44\x6f\xd0\x15\x82\xc8\x03\x1d\xe1\xcf\xff\x1f\xc4\x2e\x9a\x52\xdf\x60\x77\x99\x60\x15\xb8\x3b\x57\x3e\xf1\x1c\x21\x58\x90\xab\x37\xf2\x49\x11\x41\x4d\x2c\xb3\xb3\xc2\xfe\x14\x6b\x1c\xfe\xf3\x2a\x97\x7c\x6d\xab\x64\x61\xcb\xdc\x75\x02\x47\x54\x8a\x08\x4f\x1b\x0b\x7a\xde\xd5\xbb\x12\xe2\xb4\x39\x38\x75\x1b\x5c\x09\x9f\x06\xce\x71\x34\x5d\x75\x25\x5c\x75\xcb\x92\x7b\x27\xe1\x4a\x70\x97\x31\x2c\xbe\xca\x6d\xc9\x76\xcd\xb5\x57\x7f\x23\x47\x63\x3c\x08\xd3\x63\x46\xee\x2f\xe8\xf5\x20\x9c\x7e\x70\x3c\xb2\x34\x79\x3b\x5b\xb1\x72\x28\xb9\x96\x73\xc8\x8a\xe0\x76\xb5\x27\x31\x62\x40\x9a\x70\xe2\x4d\x80\xf8\x8f\x21\x19\xc2\x57\xb9\x72\xe5\x68\xfd\x02\x42\x56\x6a\xe8\xb6\x1b\x63\xe8\x58\xff\xf6\xd0\xa4\xf9\x75\x2c\x7c\x34\x95\xea\x5b\xae\x5e\x40\x10\xf8\x92\xe8\xfb\x6f\xa9\xed\xf2\xd9\xd2\x41\x05\x2f\x82\x90\xa4\x7a\x1a\x77\xb4\x17\xc1\xef\xd8\xe9\x35\x42\xf7\xf7\xb1\xc6\xcb\xbd\xc6\xd8\x27\xd5\xd7\x53\x08\xd3\xca\xac\x15\x55\xcb\xe6\x13\x38\xb3\x6f\x99\xdd\x6c\xba\x40\xf8\xf9\xc2\xbe\x7d\xd9\xcd\x32\x82\x09\x4f\xca\xc5\x3f\x52\xd7\x58\x38\xb1\x54\xd0\xe4\x8a\x5e\x22\xe1\xef\xd9\x5f\xcb\xd3\x1c\x93\x09\x3c\xae\x4a\x4f\x2a\xe7\xa8\x13\x26\x9b\x5f\xd1\x75\x53\xb6\x24\x54\xaf\x7d\xa2\x7a\x42\xf4\x12\x1b\x0a\x3e\xdd\x37\x99\x36\xc1\x9d\xe0\xe2\xfa\xd1\x3d\x61\xe4\x1e\xc1\x30\x60\xd5\x4a\x83\x23\xa9\x2c\x98\x38\x09\x0a\xb8\x2e\x2e\x21\x3c\xfe\xae\x2e\xaa\x71\xf6\x09\x0b\x5a\xa7\x73\x83\x6a\x5a\x4a\x08\x6a\xb2\x45\x51\xa1\xaa\x37\x08\x83\xe9\xac\x5b\x8e\x73\x8e\x12\x14\x72\x0a\xa6\x68\x6e\xaa\x20\x2c\xfd\x65\xe6\xf0\x63\xd7\x03\x16\xf6\x35\x5d\xac\x2a\x8c\xaf\x65\xa1\x7f\xc8\x7c\x6d\xf4\xe2\x56\x16\x26\xdb\x64\x67\x7f\xf6\xad\x65\xa1\x60\xb9\x8a\x53\xe3\xec\x02\x82\x82\x70\x86\x59\x9a\x42\x36\x61\xed\xf3\xb8\x37\xad\xdb\xcf\x13\x1e\x19\x5c\xb7\x1e\x7d\x99\xc5\xb6\xa4\x20\x6b\xc7\x7d\xff\xcb\x51\xc2\xa6\x69\x3c\xa2\x99\xca\xb6\x84\xc3\xb3\xaa\xd5\x2e\x0b\x7d\x67\xd0\x29\x12\xb5\x4d\x89\x33\x93\xc6\xb1\x5d\xbf\xf7\x5b\x09\x32\x08\x42\x11\xdb\xd5\xfe\x95\x27\x4a\xbf\x03\x95\x06\x2d\x09\xdb\x26\x37\x2e\xbe\xf8\xde\x82\xad\xfc\x2f\xf2\xa4\xf2\x62\xfe\x1d\xd1\x57\x97\xf0\x3c\x99\x69\xdb\xc3\x60\xca\x87\x86\xb7\x67\x9e\x49\xd0\x38\x9e\xb3\x92\xb8\xe7\x99\xf5\x30\xe8\x7a\xb7\xf4\xf9\x93\x88\xa5\x04\xfe\x2d\x57\x3b\xd6\x2f\x14\x25\x4c\xd5\x95\x7c\xa4\xb0\x49\x99\xb0\x26\x28\xe2\xfe\xa4\x52\x33\xc2\x9d\x25\xb2\xbf\x94\x35\xc5\x09\x6e\x5e\xc7\x9c\x8e\xb2\xac\xff\x0b\x3e\x9b\xd5\xb5\x52\x54\xc6\x26\x97\xfb\x7d\x1f\xe4\x26\xce\x26\xe8\x26\x30\xbc\xd9\x1b\x36\x10\xb4\xba\xfc\xfa\xbc\xf8\x74\x08\xb3\x5b\xb7\xdc\x99\xed\x37\x81\x10\x7b\xc1\x75\x53\x7e\xfb\x1e\x36\x9c\xfe\xc1\xd8\xaa\x73\xf1\x10\xa4\xc5\x94\xce\xf9\x8a\x4b\x12\x8e\xbd\xb6\x3a\xe8\xbb\xe4\x0f\x03\xe5\x67\xd9\x9f\x23\xab\x44\x09\xea\xeb\x15\x2e\x15\x16\x4d\x21\x28\x05\x9f\x48\xda\x30\xe0\xcb\x86\x9e\xfa\xd0\x77\xcc\x46\x77\xc2\x57\xc3\xee\xf6\x53\x59\x32\x04\x9b\x33\xbc\xf7\x2e\xdb\x66\x13\x5e\x67\x7d\x7c\xdd\xa1\x92\x42\x68\x69\x2d\x88\xcc\x90\x6e\x2c\xc5\xea\x3f\x47\x5e\xf6\xed\x89\x22\xc8\x9e\xf9\x72\xfb\xab\xdd\x08\x83\xa4\xfd\xc6\xbe\x91\xaf\x8d\x08\x9b\xec\xa7\xdd\xb0\x5a\xa0\xc6\x06\x4f\xa1\xa3\x6d\x73\x97\x35\x97\x22\x6d\xf2\xd4\xa5\x0a\x45\x2a\x04\xb3\xe3\x87\xeb\xc3\x7a\x96\xb3\xe1\xca\x5e\x9b\xe3\x2d\x25\x0c\x1b\xe6\x1d\x50\x9c\x21\x5b\x33\xc8\x60\xc1\x59\xd6\xb6\xc0\xb4\xbf\x0c\x26\x5b\x26\xcc\x39\x68\x69\x40\x50\x7b\xbd\xe8\x41\x83\xa1\x19\x0b\xd3\xcd\x1f\x78\x75\xf9\xa6\x13\x96\x4e\x74\x3c\x7d\x45\x24\x97\x70\xbf\x27\xf0\xd5\xb1\xdd\x79\x2c\x68\xcc\x17\x4c\x2f\x51\xcb\x25\xb8\x7c\x61\xb4\x05\xef\x58\x12\x5a\x2c\xfd\xf4\xd3\x0c\xbe\x32\xe3\x30\x71\xae\xfb\xd8\xa0\xde\xc3\x20\xea\x8d\x1f\xf7\xfe\xd3\x72\x84\x2d\x9e\x65\xb7\xa7\xec\x57\x27\x54\x77\xf7\xf6\x4e\x69\xa9\x60\xe1\xf9\xf0\xcd\x1e\x6e\xd5\x32\x82\x94\xe1\x3c\xae\xc6\x03\x77\x58\x28\xdd\x16\xe9\x3c\x47\xb3\x8c\x50\x21\xd7\x99\xa2\xb4\xae\x86\x10\xd6\xb6\xa8\xee\x91\x53\x1e\x0b\xc3\xe5\x03\x3e\x16\x62\x1b\x09\x59\xfe\x09\xaa\x79\xcd\xcb\x09\x23\xdd\x1d\xfb\x8f\x0f\x47\x10\x16\x25\xdf\x6f\xe3\x92\x11\x21\x2c\xec\xf2\x6c\xdf\xb1\x4f\x84\x50\xf0\x2a\x64\x91\xf8\xf6\xeb\xac\xf1\x72\xf0\xca\x54\xbf\x2e\x39\x4d\x82\xbb\xe8\xa4\xdb\xdf\xaf\x58\x11\x78\x23\x3c\xa7\x86\x47\xda\x13\x6c\x13\xa3\x2f\x0f\x56\x2e\x26\xe8\xb4\xf7\x78\xcc\x4c\x3a\xcd\x82\xde\x76\xaf\x0e\xde\x4e\x07\xc2\xc1\x67\xc5\x2f\x0f\x8d\xbd\xd6\xc5\xb2\x42\xad\x67\x7b\x7f\x62\xb0\x5f\xdd\xdf\xec\xd3\xb7\x2b\x34\x0e\xad\x4c\xf3\x9c\xc8\x68\x13\xc2\xca\xd8\x46\x1f\xce\x07\xd6\x84\x59\xd1\x5c\x6f\x12\x04\xa7\x12\xae\x88\x9c\xd7\x5d\xeb\xb7\x80\x60\x14\x93\x2e\x12\xd4\xa5\xc2\x86\x3f\x58\xa9\x6f\x77\xae\xb5\x14\x51\x45\x67\xd3\x17\x05\x38\x13\x4a\xa7\x5f\xd4\xf8\xb6\x7c\x07\x81\x37\x45\x0b\xb7\x9f\x8a\x10\x22\x4f\x36\x7c\x97\xed\x53\x20\xd8\x4d\x38\xd7\x7a\x57\x41\x8c\x50\x79\x7c\xe2\xdb\x81\xae\x4f\x0c\x84\x55\x4e\x30\x0a\x3a\xef\x19\xe8\x94\xeb\x7f\xb1\x49\x9f\x40\xa0\xa7\x29\x3c\xe5\xfb\xbf\x31\xd0\xd7\xbe\xf5\x85\x7f\x9e\x21\xe1\x04\x67\xf5\x05\x73\x9c\x64\x61\xa8\xf6\x25\xa3\x37\x7f\x2f\xe1\xaf\x82\xc7\xd9\x25\x0f\x57\x12\x8c\x3d\x23\x3a\xe5\x3b\xff\x32\x10\x8d\x31\x7d\xee\x7a\xde\x92\x60\x5d\xe4\x22\xff\xbc\x7f\x16\x1b\x0e\xa6\xfb\xc6\xd7\x1e\x51\x27\x34\x87\xf1\x0a\xaf\xed\xf8\xcd\x60\xe7\xbe\x2f\x82\xfd\xe6\x51\x84\x9f\x8f\x37\x08\x9f\x31\x8e\x20\x2c\xf3\xa9\xe5\xfd\x7d\x44\x93\x60\x10\xb5\xd2\xe4\xdb\xf3\xa5\x04\x3e\xe1\x30\x0d\x99\x19\xfa\x84\x3b\x3b\x7c\x76\x1b\x06\xa7\x11\x76\xe6\xda\x24\x3e\x94\xd9\x4a\xc8\x9a\x70\xe4\xe3\x95\x64\x47\x16\xcc\x65\xf6\xaa\x54\x9c\xeb\x66\xa0\xb7\x5e\xda\xb1\xb7\xa3\x9c\xf0\x93\x63\xd6\x16\xff\x70\x09\x36\xfc\xcf\x67\x93\x28\x10\x36\x84\x4f\xf2\x5d\xb7\xb3\x97\xc1\xde\x92\x55\x76\xf6\x2b\x6d\x08\x0d\xc3\x54\xb3\x49\xef\x05\x0b\x09\x49\xaf\x96\xaf\x7d\xaa\x47\xb8\xbf\x60\xe6\xf1\x09\x6f\x32\x09\xb5\xcb\x3a\x0f\xbc\x68\x56\x23\xf4\xfa\x3a\x5b\xfc\xaa\xab\x24\x5c\x7c\xa6\xfc\x75\xed\xec\x65\x6c\xb0\x75\x2d\x2d\x12\xdc\x35\xc4\x40\x77\x5b\xdf\x4a\x8e\x8c\xd3\x2c\xf0\xf0\x8d\xce\x4f\x97\xf3\x22\x9c\x1b\xc9\x2b\xec\x50\xfe\xc6\xe0\xfc\x0f\xdd\x2b\x41\x07\xb3\x09\x52\xb2\x2d\x27\x6f\xc8\xf7\x31\x18\x4d\xef\x15\xb9\xe0\x6f\x48\xe3\x78\xb3\xad\xed\x88\xea\x13\x49\x42\x69\x3c\xbf\xce\xcd\x49\x6b\x08\x55\x42\x46\xfb\x87\x1a\x2c\x08\x3c\x3a\x09\x7c\xa6\x2c\x23\x42\xf6\xe4\x05\xd6\x45\xd7\x38\x09\x95\x1b\x8e\xa5\x2c\x36\xb1\x20\x4c\x0a\xc9\xd9\xba\xdc\x4a\x97\xd0\x9f\x6d\x78\x53\x52\x56\x9e\xe0\x16\x30\xed\xa7\x36\xb7\x0e\x21\xbc\x20\x86\xb1\x15\x5c\x46\x38\x2d\x1b\x72\x52\xfc\xf7\x22\xc2\xea\x05\x3b\xea\x43\x8c\x9a\x19\x18\x9b\x7d\x1a\xca\x2a\x30\x23\xe8\x5c\xb6\x11\xe3\x71\xdc\xf5\x5f\x78\xf7\x75\x51\xd3\x7a\xdc\x25\xa0\xf0\xf7\x89\xf2\xfc\x2c\xc2\x5f\xe3\xbf\x89\x1b\x87\x1f\x11\x94\x17\x3c\xd9\xf2\xaf\xb4\x6e\xd0\x5b\xb0\xd4\xbd\x8f\x50\x69\x22\x7b\xf7\x5f\xd1\xfc\xd5\x95\x55\x7b\x63\x17\x41\xef\x88\x94\x89\x5b\xd5\x36\x82\x4e\x2e\xaf\x05\xef\x81\x0a\xb6\x62\x92\xf9\xe3\xda\x59\x25\x47\x82\x6d\x7f\xa0\x80\xbd\xa9\x31\x41\x5a\xc0\xe3\xb0\x18\x87\x16\x61\xd6\x06\x47\xfd\x8a\x0b\xeb\x09\x29\x6a\xc1\xe9\xc5\xa2\xf3\x08\xc6\x0b\x2f\x6d\x9a\xb1\x6a\x0e\xa1\xe9\x53\xf7\xb9\x37\x57\x9f\x13\x8e\x5b\x0b\xcc\x3c\xac\xd7\x4c\x98\xf3\x6e\xf5\x27\x9d\xa2\x76\xc2\xcd\x39\x5d\x2b\x0d\x6f\x3e\x27\x54\xbf\xfc\x92\xfc\x22\x27\x8c\xb0\x4b\x6d\xf5\x82\x89\x89\x29\x84\x68\xcb\x99\x1b\xfa\x8b\x2e\x13\xb6\xf6\xeb\x58\x5a\x64\xaf\x23\xec\x3a\x55\xb5\xcf\x58\x76\x23\x0b\x51\x3f\x5e\xb9\xeb\x07\x98\x13\xac\x32\x9c\x4e\x1c\xaa\xe0\x22\x1c\xf5\x89\xba\xec\xef\xc7\x49\x78\x18\x50\x91\xee\x7c\x6b\x22\x41\xf5\x49\x53\xac\x60\xb0\x16\x41\x4f\x4b\xf9\xf8\x32\xdb\x6b\x84\xd8\x76\x65\xd5\x45\xac\xbb\x04\x67\xee\x0f\x2f\xb7\xe7\xf9\xb0\x30\xf8\x6e\xd7\xf5\x2d\xfb\x33\x58\x18\x48\x5c\xba\x29\xc2\x34\x8f\xf0\x9a\x9f\x31\x1a\xb0\xbf\x44\x88\x7f\x1c\xfe\x55\x66\x4e\x27\xe1\x5d\x65\xe3\xee\xb3\x56\x79\x04\x83\xba\x7d\x0f\x3e\x3d\xb9\xcd\xe0\xec\xaa\xe1\x3b\xf6\xfa\xc3\x0c\x8c\xf8\x17\x7e\x89\xf8\xec\x49\xd0\x2f\xd8\xd2\xdd\xc7\xfd\x9b\x19\x47\x44\x5f\x5e\xd6\xfd\x84\x26\x06\x97\x85\xeb\xdf\x65\xe8\xa8\x12\xee\x29\x9b\x1a\x65\x89\xe5\x12\x24\x6d\xd5\xbb\x6c\x94\x9d\x09\x8b\xf7\xcb\xfe\xfa\xe1\xeb\x43\xa8\x50\x10\x1e\xdc\xfc\xc7\x8f\x20\xeb\x19\x1c\x7a\xed\xe9\x01\xb6\xa5\x81\xcd\x7b\xf3\xd7\xed\x08\x23\x58\xbe\xe2\xdd\xdd\x50\x1f\x4d\xe8\x7a\xd4\x50\x6b\xba\xe1\x08\xa1\xda\x1d\xa6\x3c\x46\x01\x84\x35\xc1\xcb\xf3\x86\x9a\x57\x10\x2a\x82\xe6\x09\x6a\x2d\x3a\xc9\x82\x8f\xf2\xe1\xcd\x07\x63\x57\x10\x1e\x7a\x6a\x84\xe9\x4f\xdb\x41\x10\x4a\x0d\x3b\x00\x2b\x49\xc2\xf7\x0e\x95\xb2\xd6\xf6\x4b\x2c\x6c\x14\x15\x6b\xd5\x29\xb1\x25\x38\x05\xb6\xbc\x56\xe8\xa9\x24\x14\xc9\x77\x0e\xbf\x73\xaf\x22\x7c\xff\x86\x73\xbd\x2d\x37\x09\x42\x2f\x3f\xf6\x3d\x99\x24\x4e\x90\xe9\x99\x16\x56\xfe\x39\xbf\x14\xaa\x3a\xf5\x16\x39\x61\x95\x2c\x28\xdf\xcd\x6c\x39\x39\x41\x9d\xc6\x21\x5c\xa2\xf2\xd6\xa7\x61\x19\x5b\x59\x27\xd3\x3a\x2f\xf8\x10\x0f\x61\xdf\xb9\x3d\x39\x53\x4e\x7c\x61\x10\xbd\xe9\xe0\x8b\x6c\xbb\x15\xf4\x7f\xa1\xce\x49\xf1\x99\x4f\x36\x17\xe1\x6a\xf0\xaf\x39\x0c\xa7\x04\x61\x67\xdb\x31\x2e\x6e\x44\x12\x32\xbb\xae\xb6\x1d\xcf\xd2\x27\xfc\xe6\x58\x9b\xe6\xb2\x6f\x2f\x61\x67\x37\xcc\xfe\x21\xdb\x9b\xc8\xec\xd9\x4c\x82\xa8\x75\xa1\xc3\xea\x74\x19\xc2\x93\xae\xa6\x8b\x6f\xe5\x0d\x09\x85\x2a\x13\xff\xf2\x9c\xb4\x22\x9c\xf9\x66\x97\xb4\x2d\xf4\x3a\x0b\x85\x6b\x65\xbe\xed\xc8\x32\x27\xdc\xae\x48\x58\xa0\xb6\x87\x9b\xf0\x78\x38\x20\x87\xb7\x7f\x32\xe1\xf1\x6e\x3b\xde\x87\x19\x1e\x6c\x88\x0e\x8c\x3a\x63\x5e\x3b\x95\x50\x39\x35\x2b\x3d\x9a\x88\xb0\xf0\xa5\xfc\xec\x6a\x79\x23\xc2\x82\xe1\xfa\x5f\xb2\x31\xda\x84\xb8\x9a\xe8\x90\xef\xd3\x5e\x31\xd8\xf5\x68\xdb\xbd\xa4\xeb\x75\x0c\xce\xcf\x7c\xdd\xce\x7a\xe0\x4d\x10\x7a\xb1\xd6\xf4\x6e\x5e\x1b\x0b\xfd\xe1\x6a\xeb\xca\xc7\x4a\x4a\xff\xea\x13\x57\xdb\x6a\x19\x0c\x9c\x6f\xb8\xf5\x5c\xf2\x32\xc1\xa9\x8b\x53\xba\x45\x42\x9d\xb0\x2c\x24\xdb\x56\x5f\x82\x9f\x20\x55\x76\x69\xd7\x85\xd7\x13\x08\x7c\xe1\xe1\x65\xe6\xac\xad\x6c\x70\x65\x32\x9d\xab\xd6\xcd\x22\x3c\x59\x1e\x6e\x15\x72\xc6\x91\x10\x53\xa6\x19\x3d\x14\xfe\x83\xc1\x8c\x20\x8d\x08\xf9\xa5\x4b\x08\xc6\x5e\x5e\xfe\x06\xd3\x15\x09\x3f\xdf\xb5\x56\xbd\x75\x55\x27\x24\x4c\xd9\xbc\x80\x56\xce\x24\x74\xee\x34\x96\x5b\xa0\xb6\x9e\x50\xd9\x71\xf0\x69\x49\xb0\x1e\xc1\xff\xdb\xf6\xe9\x4e\x24\x43\xf8\xbd\x21\xbd\x66\x23\x36\xb3\x60\x19\x92\xf0\xea\xd8\xee\xab\x84\xef\xdd\x66\xf2\x73\xb2\x4a\x4a\x21\x6c\x1d\x55\x6a\xcc\x3b\xca\x8c\xc3\x5f\xe0\xab\xf9\xc6\xd4\x0f\x0c\xb8\xb4\xdd\x6d\x6f\x7e\x51\x24\xbc\xf5\x59\xab\x70\x6e\xad\x16\x0b\x6f\xd0\xaa\x3c\xab\x56\x81\x70\x2e\x70\x77\x5d\xf4\x16\x29\xc2\x36\xb7\xdc\xf6\x73\xd1\xc6\x04\x29\xfc\x30\x7e\x76\x49\x8f\xc0\xcf\xda\xeb\x5d\x3d\x92\x4f\xd8\x2d\xb5\x23\x58\x72\x46\x2d\x21\xed\x5c\xd4\x2c\x4b\x89\x72\x16\x8e\xc9\xbf\x95\x90\x1e\x2b\xe7\x4c\xbb\xee\x85\x5b\x6f\x62\x83\xe4\x14\x4e\xcf\x55\x99\xbe\x6c\xc5\x44\x8f\xa7\xef\xdf\x19\x32\xbe\x55\x65\x50\x32\x66\x09\x61\xbf\xe4\x89\x4c\xa5\xf9\x27\x08\xba\xb5\x65\x55\x9f\x2a\x1e\x12\xbc\x9f\xf9\x35\x49\x19\xde\x26\x14\x74\x9d\x09\xfe\x38\x56\x36\x96\xed\x6a\xb6\xaf\x8d\x23\xf0\x79\x8a\x9f\xa9\xe6\x76\x21\x64\x76\x20\x5c\x3c\x71\x80\xc1\x54\xe3\x93\x9f\x0a\xf6\xca\x10\xbe\x9f\x5a\x50\x6c\x73\x9d\x93\xb0\x21\xfb\x96\xb9\xac\xcc\xd8\xb4\xe5\x7e\x7e\x2a\xbe\xc5\x10\x1e\x3b\xde\x5b\x9e\x9b\x65\x45\x38\x9d\x9a\xd1\xee\xa0\x52\x42\x10\x95\x9f\xb8\x75\x77\x5c\x29\xe1\xc5\x94\xb4\xae\xe7\x4f\xaf\x13\x02\x56\x99\x6d\xd0\x54\x71\x20\x94\xdf\xf3\x7b\xb9\xe5\x8e\x04\x41\xcb\x35\xec\x6b\x6d\xd2\x16\x42\xd7\x15\xff\xf7\xab\x5f\x3b\x10\xba\x9b\x6f\xf9\xb2\x2e\xaf\x22\xac\x5d\xc1\xad\x37\xe5\x1e\x2f\xa1\xc0\x4a\xe4\x4b\x53\xd9\x4b\x02\xc7\xc2\x2b\x2c\xf3\x57\xc5\x84\xa4\xc0\x64\xf7\xc4\xa4\x34\xb6\x92\x76\xe0\xd4\x59\xbb\x9a\x74\x82\xdf\x85\x2b\xd6\x7b\xe7\x79\x12\xc8\xbe\x3a\x23\xa3\xed\x18\x61\xe1\x12\x1e\x5b\x2d\x63\x73\xc2\xa3\x9b\xe1\xa1\xd1\xf5\x5d\x0c\x7c\xb6\xc5\xbe\x6f\x55\x1c\x60\xf0\x5d\xba\xd6\x6f\x63\xa7\x25\x41\xda\x40\x72\x42\xed\xe7\xc9\x34\x34\x1c\xf2\xf4\xe0\xa5\x58\xc2\x4b\xf1\x7a\xd6\xa5\xe4\xc4\xf1\x90\xfb\xfa\xc4\xb9\x3a\xad\xfd\x04\xbf\x14\xbd\x84\x57\xf6\xbb\x08\xf9\xb2\xab\x87\x8a\x6d\x06\x19\xdc\xb8\xf3\x57\x77\x6f\x74\x36\x03\x85\x01\xeb\x85\xdc\xbd\xaa\x84\xc3\x4c\xa2\x5d\xfd\x17\x67\x42\x83\x83\x33\x5f\x40\xa8\x3b\xa1\xc8\x77\xb2\x4f\x98\x9c\x22\x41\x52\x46\x82\xa7\x82\x53\x91\xf0\xb1\x63\xee\xa5\x43\xba\xfc\x84\xcf\x41\x1b\x1a\x8f\x91\x2d\x1b\x52\x35\xea\x3b\xc5\x53\x05\x09\x75\x98\xae\xb6\xcd\x61\x16\x41\xbe\x3a\x75\xe7\xaf\x4e\x09\x82\x1b\x57\xbb\xff\x87\xb1\x53\x54\xe0\xc9\x55\x47\xb5\x63\xcc\x09\x57\x8c\xe4\xae\xdc\x2a\xed\x63\x30\x31\xfc\xf6\x25\x69\x0d\x3e\x82\xd0\xf1\x49\x5d\x1a\x59\x07\x08\xd9\x2d\xea\x6f\xed\x94\x4c\xd8\xc0\xa2\x7b\x93\xd4\xf7\x8e\x30\x70\x5c\xa4\x2a\xa2\x3b\x31\x9f\x81\xfd\x83\x67\xce\x26\x4f\xba\xd9\xb0\x68\xcb\x9f\x3a\xce\x74\x1e\xc2\xcf\xe3\x61\x5e\x0f\xc3\x3f\x31\xd0\x4a\x16\xd5\x38\x69\x95\x4b\xf0\xe4\x66\x59\x3a\xd5\x3d\x63\xe1\xcc\x73\x45\x5b\x6d\xd9\x5c\x82\x26\x27\x47\x88\xe2\xf6\xaf\xcc\x38\x74\xb5\xaf\x28\x05\x6c\x9e\x4d\x98\xd2\x98\x2a\x67\x7c\x76\x94\x81\xbe\x46\x96\xd1\x9e\xfa\x12\x82\x7b\xce\x96\x57\x8f\xf5\x2a\x09\x5b\xb7\x59\x66\xdf\xb7\xf9\xca\xc0\xfb\x4f\x8d\x5d\x6b\xc6\x5d\x42\xa9\x74\xa3\x40\x71\x6d\x29\x1b\x62\xa5\xaf\xd8\x87\x4d\x7c\xc9\xc0\xb9\xf8\xd0\xa1\xb5\x79\x6b\x08\xfe\xf5\xf1\xad\x7b\xdc\x2c\x08\x9a\x27\xad\x3c\x2a\xe7\xdf\x67\x8d\x97\x23\xad\xf2\x57\x4a\x1e\x0e\x30\x10\xd8\xdb\xd7\x09\x5b\x71\xc2\x81\xe1\x63\x8b\xf8\xd7\x86\xb2\x20\x24\xdf\x97\xa6\xfe\x26\x81\xf0\x22\x33\xe4\xad\x72\x4d\x06\x61\x81\x89\x72\x5c\xda\xc0\x35\x16\x6c\xeb\xf5\xee\xf7\x2c\xaa\x26\x28\x8d\x24\xdb\x9c\x68\xca\x20\xc4\xc6\x6f\xda\xee\xe3\x6c\x41\xd0\x51\xec\x7a\x9b\xec\xbd\x9a\x86\x3e\x0f\x7b\x73\x57\xce\x24\x84\xe6\x9a\x95\x95\x35\x6f\x22\xf0\x76\x99\xca\xfd\x48\x38\x41\xd8\xbf\xce\xfc\xd8\x60\xf6\x31\x42\x6e\x9a\x53\xfe\xfb\x77\xa7\x08\x36\x8d\x5c\x9b\x66\xe6\x4b\x11\xc4\xd5\xae\xa4\x46\xf6\x98\x11\x76\xef\xad\x5b\xd4\x79\xe3\x26\x83\x80\xa6\x6f\x19\x85\xf2\xc2\x34\x0e\x8d\xfc\x5b\x82\xef\x0a\x07\x98\x71\x14\x64\x08\x38\x9c\xe8\x9c\x40\xe3\xb8\xc0\xdd\x35\xca\x77\xda\x98\x30\xc3\xe0\x24\x65\x7b\x54\x11\x1e\xb1\x84\x36\xb4\x55\x34\x12\x38\xf9\x52\x7f\x16\xb0\x72\x09\xa7\x1c\x26\x6e\x0f\x14\x75\x24\xbc\xb7\x38\x9a\x9b\x5e\xa2\x4b\xc8\xdf\x11\xd4\x9e\xe8\x9b\xcb\x42\xfb\x6f\xa3\x0e\x49\x8d\x1a\xc2\x2a\xbb\x7d\xb5\xf9\x1d\x63\xdf\xde\x27\xb5\x4a\xde\xf0\x39\x0b\xca\xc7\xab\x52\xcb\xb2\x2a\x08\xb3\x94\xd7\x4c\x94\x1d\xc3\xfc\x1d\xbe\xf3\x64\xc6\x90\xb6\x49\xbf\xef\x46\xfb\x43\xc2\xb9\x4b\xda\x3a\x4b\x7e\x3c\x24\xfc\xd6\x7a\x3d\x2a\xf6\xa8\x9a\x90\x37\xb9\x50\x59\x73\xac\x94\xfd\xda\xa1\xef\x97\x1c\xce\x82\xad\xa3\x64\x58\x04\x4e\x8c\x0d\x4d\x2e\x93\x1e\x1e\x8e\x62\x43\x6a\x63\xeb\xe4\xc7\xab\x9f\x10\xfe\x18\x87\x26\x95\x2a\xec\x26\xf8\xa8\xae\xf8\xf8\xf7\xc8\x26\xc2\xa3\x38\x6f\x8e\xcf\x67\xa5\x09\xb7\xfc\xbd\x9a\xad\xa6\x87\xb2\xe1\xf8\xa5\x2c\xc1\xfd\x87\x16\x13\xa2\x62\x1f\xa6\x3d\x1c\xa8\x23\x44\xc4\x4f\x5d\x10\x97\x58\x45\xb8\x7f\x79\xff\xb1\xd3\x63\x78\xb4\x7c\x9a\xe0\x3f\x1c\xeb\x19\x0d\x2a\xfa\xf5\x94\x70\x7a\x9b\x41\xe4\xe0\xbe\x14\x02\x6b\xd0\xc3\x70\x53\x51\x0a\x21\xf1\x69\x7d\xf6\xde\xf4\x54\x42\xba\x8b\x52\xf7\xf6\x53\xa9\x84\x15\x07\x55\x4a\x1d\x0b\x53\x08\x57\x98\x93\x1b\x0b\x64\x83\x08\x2f\xf6\x75\x77\x58\xd9\x3b\x13\x22\x34\xd4\x2f\x0d\x76\x54\xb0\xb0\xf9\xda\x4d\xa1\xb8\x5d\x9f\x08\xd5\x8a\x36\x87\x0a\xe7\xde\x67\xa1\x70\xb5\xff\x47\xd1\x6f\xdd\x84\x53\x12\xf3\xaa\xde\x59\x3e\x20\xc8\x8e\x1e\x33\xbd\xb3\xeb\x04\xe1\x85\xa6\xfe\xa9\x12\xb7\x42\x82\x53\xa8\xec\xcc\x46\x51\x07\xc2\xac\xb0\xd1\xb3\x0a\x4f\x0a\x09\x1c\x7e\x66\x72\x25\xf6\xdf\x18\x08\xcd\x6e\x30\x58\xe9\xc5\x45\xe3\x58\xd4\xbf\x69\xa3\x4a\xb3\x01\xe1\xaf\xac\x48\x3c\x67\xbf\x13\xe1\x57\x4c\x4f\xd6\xb4\xe3\x3b\x09\x1e\xd3\x0e\xaa\x85\x38\x58\x12\x1a\xcb\xf8\x84\x36\xb8\x55\xb0\x70\xc9\xd5\xc5\xf4\x58\x93\x1e\x8d\x43\x29\x66\xeb\xc9\x6f\xc7\x5f\x30\xc8\x7d\xf3\xa3\xe1\x9b\x6f\x17\xa1\xe5\xad\x46\x6e\x94\xb4\x1c\xe1\xb8\x5a\x51\x8a\xcf\xa6\x01\x16\x9a\x62\xea\xf6\xe6\xaf\xce\x20\x34\x19\x0b\x9b\x6d\xea\xbc\x41\x78\xc9\x3d\x52\xa2\x7a\x33\x9f\xf0\x46\x5c\x5a\xc0\xa5\x3a\x91\x30\xcb\x3f\xd4\xfd\x3d\x6b\x06\x61\xde\xe7\xf3\x6d\xea\xc9\xb7\x08\x91\x8e\x29\x81\x0b\xb4\xb6\x12\xb4\xf8\x9f\x37\x5b\xbf\xef\x66\x61\xde\x2d\x81\xe0\x69\xcb\x5a\x08\xd6\x62\xdb\xf2\xaf\x14\x4f\x25\xb8\x87\xdb\x35\x8f\x46\x5f\x21\x1c\x9d\xfe\xb9\xf8\x8c\x7a\x3c\xe1\xe0\xea\x65\x3e\x23\xca\xd7\x08\x6a\x89\xde\x32\xb3\x84\xce\x10\x4e\xeb\x47\xaf\x58\x3d\x31\x86\xa0\x5c\xbe\xb3\x50\x58\xb0\x96\x05\xdc\xe8\x5c\xfb\xf2\xcb\x1b\x42\xcc\xfd\xa3\x7a\x71\x71\x03\x84\x64\xed\x29\xe2\xa6\xb2\x5f\x08\xf5\x51\x92\x3f\xf9\x02\x7b\x08\x97\x9c\x4f\x89\xbc\x7b\x5a\x4a\x58\xee\xb1\xe4\x48\xdc\x91\x1a\x82\xd6\xfd\x19\xd5\xd1\x07\xca\x08\xa7\x6b\x3e\xbf\xf3\x4d\x20\x02\xa3\x3c\x7a\xd5\x45\xf5\x28\x21\x64\xcf\xbb\x97\x62\x79\xde\x84\xee\xc0\x3a\x49\xbe\x4e\x41\x02\x63\x75\x3d\xe7\x75\x77\x12\xe1\xb1\xcc\x87\x1f\xe1\x2e\x49\x84\xc9\x20\x67\x1c\xf3\x21\x94\xff\xe2\x33\x9d\x7f\xc1\x95\x90\x11\x75\xab\x24\xf2\xdb\x36\x42\x4a\xeb\x1b\x9d\x69\x29\x2b\x08\xf5\xdf\x26\xf5\x16\xfa\xad\x24\xb4\x7e\xdc\xbd\xb3\x71\xae\x04\x21\x7e\xd2\xa0\x84\x7c\xaa\x35\x61\xbb\x5b\x9b\xd8\xc5\x65\x7a\x04\x95\x14\x9e\xab\x7c\x6b\x39\x08\xa8\x59\xbd\xe2\x91\x43\x23\x61\x8e\xf9\x87\x84\x04\xc7\x07\x84\x79\xd9\x26\x96\xef\x82\x36\x12\xa4\xad\xb7\xb7\x5f\x36\x72\x24\xac\xac\x7f\xf6\x01\x35\x63\x87\xb1\xa2\x5b\x86\x33\x87\x25\x09\x12\xeb\x7a\xce\x49\xaa\x34\x10\x7e\x68\x2a\x34\x79\x9c\x4e\x60\x41\xd8\xff\x7a\xaa\x6c\xe5\x3e\xc2\x8e\x96\xd9\xda\x8b\xc3\xd6\x13\x56\x55\x7a\x06\xab\x49\x06\x8f\xed\xd3\x39\x0e\xab\xb3\x88\xf0\xb2\xfa\x6a\xfa\x64\x7d\x0b\x42\xa2\x8b\xfc\x48\xf5\xb6\x4d\x84\x98\xdd\x39\xd5\x54\xbe\x8a\x20\xa5\x6d\xbb\xa7\xca\x40\x9d\xb0\xdd\xf0\xfd\xf1\x64\x11\x73\x82\x86\x87\xa4\xc1\x91\xb9\xce\x84\xcb\xd7\x75\x57\x95\xbc\x35\x22\xf8\xf1\xbe\xd8\xec\xfd\xc9\x80\x70\x20\x7d\x38\x7e\xf1\xcd\x10\x82\xc8\x99\xdf\x37\x14\xec\xd5\x08\x01\x8d\x31\xf6\xed\xc3\x82\x84\xe2\x21\xcf\xaf\xbb\x77\x54\x10\xe4\x83\xa3\xf4\xd6\xde\x79\x45\x90\xe8\x54\xb2\x1e\x8c\xac\x23\xa4\xd9\x4a\xab\xc6\x84\x1d\x23\x44\xe4\xbc\x2e\x98\x76\xcc\x90\x70\x69\x75\x98\x8e\x9e\xa6\x12\xe1\xc1\x0b\x9f\xa2\xac\x89\x91\x84\xbe\x09\xdf\xe7\xea\xe6\x6c\x23\x84\xea\xdd\xbb\x3d\x94\xbd\x99\xe0\x74\x3b\x4f\x51\x48\x47\x8c\x30\xff\x38\x6f\x65\xd6\xd8\x6e\x63\x12\x36\xef\x09\x9f\xa1\x16\x61\x4b\x69\x65\xe0\xb7\xe7\xc1\x2c\xec\xfb\x18\xb0\x4c\xea\x9e\x03\x21\xf5\xe2\x9f\x40\xde\x23\x7a\x84\xc3\xaf\x65\xea\xc2\x07\x0f\x13\xce\xdb\xa9\xa4\xf7\xa7\xce\x20\x6c\xe4\x5e\xf3\xcb\x45\x7c\x3d\x1b\x36\x84\xed\xe7\xfe\x98\x21\x40\xb0\xed\x7a\xf4\x27\xe9\xe2\x76\x82\x56\xe9\xef\x72\xde\x95\xdd\x0c\x7a\x0f\x9c\x7d\xbf\x60\x9d\x39\x8d\x23\x8c\xdb\xbf\xac\xe8\x3d\x43\x70\xb9\x19\x7a\xed\x32\x4f\x21\x61\x65\xca\x91\x79\xb7\x46\xce\x13\xfa\xb8\xd4\x1a\xf6\xf2\x47\x12\xe6\xb0\x6e\xf2\x16\xbb\x5a\x12\x5a\xe3\x4d\xbd\x86\xc3\x54\x09\x79\xf6\x53\xb5\x0c\xe7\xbf\x25\x38\x9e\xd4\x65\x55\xe8\x74\x11\xe4\x1e\xee\xdb\x6a\xe4\x56\x40\xd0\x8c\xa9\x15\xe4\xaf\xcb\x27\x48\xb7\x38\xbc\xb6\x5b\x59\x40\x58\xd9\xcd\x0d\x65\x8e\x5c\x82\x7f\xe2\xec\xb6\x45\x67\xb4\x08\x4b\x9e\x0e\xf0\xcf\x8f\x97\x20\x6c\xe2\x99\xcf\xcc\xb1\x8a\x66\xc3\xc4\xa8\x68\x5d\xe7\xc7\xca\x84\xcb\x4e\x32\x0b\xee\x78\x15\x12\x74\x0b\x1c\x4e\xbc\xab\x4f\x26\x1c\x75\x5d\xe2\x99\x4a\xc5\x84\xab\x61\xef\x56\xff\x2d\x68\x63\xc1\x4e\xe5\x58\x51\xca\x58\x91\x5d\xb4\xad\xb5\x5b\x43\x9d\xc0\xc5\xe5\xab\xfc\xf5\x61\xfe\xd8\x00\x9b\x20\x7d\x90\xa5\x4b\x78\x74\x75\x46\xe5\xad\x87\x7b\x08\xe9\x3b\x0e\x25\xdd\xd9\xe2\x49\x48\xee\x4b\x6e\xba\x90\xbf\x83\xe0\xa4\xe8\xad\xa5\x7f\x7a\x15\xc1\xd8\xa3\x77\x34\x60\xa7\x2b\xe1\x68\xeb\x60\x0e\xe5\x18\x11\x66\x0c\xfd\x78\xfb\x69\x60\x15\xe1\xf3\xc2\xfa\x48\xc1\xe7\x71\x2c\x94\xd8\xf2\x47\x70\x4e\xab\x27\x34\xba\xfb\xe1\x4d\x73\x16\xc1\xa6\xe4\x60\x43\xe7\x18\x1c\xbf\xa7\xf6\xbc\x1e\x43\xe4\x2d\xcb\xc8\x21\xb9\x08\xc2\xa2\x57\x1e\x9e\x17\x0d\xc1\x40\xe4\xb3\xf1\x68\x8d\x83\x12\x61\x86\x43\x88\x86\xbd\x80\x2a\xe1\xa2\x88\x57\xdf\xa6\x07\xa9\x04\x8b\x9e\xd4\xd7\x93\x64\xa2\x09\xe5\x5e\xa3\x73\xef\xf0\xee\x27\x6c\x5b\xf5\x66\x4e\x40\x94\x11\x61\xed\x4b\xb5\x77\xea\x0f\xc5\x09\x61\x31\xaf\x57\x8a\x28\x5e\x21\x4c\xcc\xb7\xbd\x55\x6a\xdd\x41\x58\x69\xb9\x54\xd2\x5c\x78\x03\x41\xe3\xc5\x96\xa0\x7b\xa9\xbe\x2c\xfc\x7e\x9b\x6f\xb2\xfc\xf8\x7d\x42\xa8\x47\xf0\x04\xa5\x93\x86\x84\xd9\x35\x0a\x39\x83\x07\x1c\x08\xa5\x0b\x72\xf6\xbc\xec\x89\x27\xcc\x9f\x7a\xb1\x45\x67\xec\xf9\x59\x3e\x27\x78\xb7\x19\x67\x20\x0b\x5d\x77\x66\xcb\xba\x78\xbd\x22\xd8\x5f\xde\x2c\x73\xf5\xf4\x33\xc2\x9a\xa4\x6d\x7d\x07\xef\xd4\x13\xaa\x47\x15\x7d\x1a\x5e\xe4\x13\x0a\xea\x43\xca\x62\x5b\xf4\x09\xa6\x23\x76\x35\xaa\x89\x36\xff\x85\x70\xef\xbd\xcb\x56\x7b\xeb\x13\xae\x76\xb7\x2f\x3e\xa9\xb3\x84\xe0\x37\x65\x5d\x7d\x54\x24\x0f\x61\x68\x97\xe7\x60\xb3\x8c\x29\xc1\xb2\xf7\x81\x86\xc8\x99\x9b\x84\x47\x59\x35\xd7\xba\xe2\xa7\x8e\xbd\x92\xf2\xa7\xcc\x7e\x27\xf6\x5f\xf0\x9f\xa4\x73\xcd\x3c\xf0\x03\x83\xb8\x33\x91\x89\x85\x4a\xb9\x04\xe9\x07\x37\x04\xef\xfe\x49\x63\xa1\x76\xfe\xc6\x51\xf7\xc7\x47\x09\x29\xc1\x4e\x3c\xdb\x5a\x8e\x12\x6c\xcb\x3e\xae\xeb\xea\xd5\x20\xa4\x70\xfc\x1a\xca\xe6\x3f\x41\xb0\x69\xdb\x39\x30\xed\xb1\x21\xe1\xc9\xb1\xa8\xa1\x9b\xa1\xeb\x09\xed\xfa\x85\xf9\x07\xeb\x9c\x09\xf6\x02\xcc\xb2\xdb\x65\x2e\x84\x3b\x49\x36\x57\x13\x85\xb6\x10\x0c\x13\x5d\xaf\x55\x38\x7e\x65\xa0\xa0\x78\xaf\x72\xde\xa5\x0a\x02\xd7\x8f\x4d\x1a\x5a\xde\x43\x0c\x64\x7d\xda\xde\x17\x7b\xa9\x12\xd0\xba\xe8\x78\xed\xcb\x9d\x04\x9f\xf7\x6d\x8b\x54\xf7\x5c\x27\x78\x70\x38\x7f\x3a\xf3\x74\x35\xa1\x48\x16\x79\xfa\x52\xb9\x84\x33\x79\xf7\x99\x65\x0f\xe2\x08\x9a\x5c\x93\xb6\x8a\x3e\xa8\x21\xf0\xaf\x3c\xa7\x73\x95\x7a\x09\xb8\x2b\x7c\xd7\x3e\xfe\x13\x61\xa4\x76\xdf\x74\xd6\x9d\x0f\x84\x62\xc3\x41\x0b\xaf\x43\x8d\x84\x2f\x7d\x6b\x52\xad\x54\xca\x08\x45\x0d\xb7\x78\xee\xa7\x5c\x27\xf8\x76\xcb\xfd\x10\xff\x5d\x4d\x48\x98\x54\x6e\xdf\x3e\xfc\x82\xb0\xe7\xca\xda\xd5\xa2\x87\xa7\x12\x5e\x74\x3f\x0c\x16\x5e\x51\x46\xa8\xbc\x78\x27\x4c\xf2\x97\x36\xa1\xa6\xe7\xc3\x57\xb1\xe9\xe5\x84\x9a\xc4\xd5\x8b\xce\x7f\x5c\x46\x78\xbf\x56\xd8\x87\xf5\x7c\x17\x61\xbb\xd7\xe6\x6f\x0b\xd2\xea\x08\x3f\xd6\xd5\x06\x7c\xfd\x52\x47\x30\x18\xe2\xa4\xcf\x1f\xef\x13\x3a\x79\x82\x84\xbd\x4e\xdc\x23\x78\x6d\x7c\xa7\x3a\x53\xc6\x9a\x20\x11\x51\xed\xac\x59\x64\xcc\x56\x84\x2f\x68\x5d\x49\x7d\xb6\x81\x60\xb2\x74\x5f\xf6\x04\xaf\x75\x04\x95\x83\x45\xbf\xdc\x2b\x8a\x59\x30\x5b\x6d\x2b\xaf\xbc\x2d\x93\x90\xcb\x95\xe5\xd6\xfe\x6b\x07\x21\x79\x34\x74\xf4\xd4\x8e\x4b\x2c\xb8\x05\xa6\xef\xb9\x23\x68\x45\xe3\x60\x92\xfd\xae\x25\x9c\x38\x40\x30\x7f\x4f\x85\x2b\xf5\xf3\x09\xd6\x3f\x6e\x7f\x0a\x52\x57\x23\x1c\xf2\x9f\x91\x35\x29\xe6\x30\xa1\x3a\xb9\x47\xe5\xef\xcb\x4c\x16\xaa\x87\x33\xfb\x4d\xd7\xfa\x12\x06\x34\x17\xb5\x3f\x36\x7c\x45\x88\x18\xd4\xf6\x35\xb7\x88\x25\x68\xc7\x67\xae\x7c\xb9\x2b\x94\xd0\x71\xec\xeb\x25\x91\x85\x1b\x08\xc5\xeb\x85\x6a\x02\x2f\x85\x10\x54\xaf\x17\x38\xae\x4a\xbf\x42\x10\x96\xd8\xbc\x3b\xb4\x98\x87\x30\xe5\xb4\x56\x6b\xd5\xcc\xaf\xcc\x38\xea\x1f\x36\xa4\x65\xca\xce\x20\x3c\xf9\xec\x55\x1a\x17\xb1\x8c\xe0\x6c\x76\x5b\x6a\x73\xbb\x18\x41\xf2\xcd\xbe\x03\xfb\x8a\xcd\x09\xd3\x05\x5b\x7b\x43\x17\x2e\x23\x88\x36\xdd\x58\x71\x38\x49\x8c\xd0\xca\x97\x6e\x71\x77\xed\x14\x82\xc1\xc1\xb9\x4b\x2e\x7a\x71\x13\xfe\x38\xba\x8e\xf0\x0c\xd8\x11\xa4\xf3\xa7\xf2\xad\xdf\x6b\x4d\x30\xce\xb3\x7e\x22\xbe\xca\x8f\x50\x19\xd0\x9d\x31\x2f\xc9\x89\x70\x66\xe8\xde\x86\xbb\x1a\xc6\x84\xcf\xfa\xaa\x65\xc3\x97\x3c\x08\x15\xcf\xc4\xaa\x96\x30\x06\x84\x4f\xd5\xdf\xdf\x9b\xac\xef\x63\xc0\x6b\x78\xee\xa1\xa5\xa1\x13\x0b\x6f\x45\x7f\x2d\xdd\x2f\x1f\x49\x18\x99\x2f\xd0\xdb\x2f\x61\x47\x78\x3c\xaa\xe5\xb1\xc0\x79\x29\xe1\xcf\xdd\xac\xcf\x5d\x52\x7a\x84\x6f\x41\x71\x4f\xe6\x65\x7a\x10\x46\x4d\xb5\x6e\x07\xbd\x71\x20\x2c\xbc\xbb\x64\x7b\x43\xe8\x41\xc2\xc1\x39\x66\xd1\x99\x77\x8d\x08\xee\x8b\x14\xce\xbe\x4c\x70\x62\x43\xfb\x6c\xdf\xe3\x16\x02\x42\x84\xec\xa0\x27\x7a\xe5\x37\xaf\x12\x0e\x69\x5d\x7d\x7d\x33\xcc\x86\x0d\x45\x2b\x54\xc2\x2e\xe9\xe9\x12\x8e\x0d\xd5\xbf\x53\x64\x84\x09\x07\x3c\x32\x1b\x0f\x6e\x18\x60\xd0\xbc\x21\x2d\xf2\xf6\x04\x2e\xc2\xde\x59\x76\x32\x6f\x54\xa5\xd9\x60\x7b\x9e\x37\xbe\xd0\x2b\x8e\x81\x73\x51\xde\xbd\xb8\x95\xbc\x84\xb8\xe0\x62\x0b\xa1\xb2\x75\x04\xfd\xee\xcf\x01\x43\x8f\x53\x08\xe5\xb2\x6b\xb9\xa6\xac\x29\x23\x74\x92\x82\x63\xdc\xbe\x02\xc2\x21\xcc\x5c\xf5\x0f\xfc\xc2\x2e\x69\xff\x30\x73\x93\xd6\xcd\x60\x8f\x5c\xc2\x4f\x83\xca\x74\xb7\x39\x5b\x09\xa4\x11\x95\xb0\x33\xc0\x85\x30\x35\xff\x42\x91\x88\xf3\x2a\x42\xb7\x14\x8f\xac\xf8\xb5\x58\x82\x93\x93\x7f\x67\xb9\xd2\x66\xc2\xd0\xfa\x66\x49\xcb\x43\x17\x08\x3f\xef\xb9\x14\x96\xcf\x55\x20\x84\xce\x6a\x79\x3b\x4b\x4a\x8a\x20\x72\xe0\xc8\xcc\x0e\x6f\x2b\x42\xe9\xb9\xe5\xcd\x1b\x17\x24\x13\x16\x72\x8d\x28\x3d\x60\x0d\x33\x98\xb7\x5f\x6c\xc7\xf2\xf0\x47\x84\x53\xe2\x12\x4f\xb7\xad\x7f\x44\x28\x96\xe4\x5b\xe5\x5b\x38\x48\x70\xb9\xf7\xb3\x78\x8f\x76\x39\xe1\x8a\x4e\xdd\xea\x15\xd7\x92\x09\x77\xb9\x65\xad\x27\xcc\xb4\x21\x84\x4e\x7d\x6f\xbe\xb0\x7c\x11\xe1\xb4\x42\x43\xea\x2b\x93\x41\x06\x4b\xed\x76\xdd\x0a\x34\x95\xa6\x71\x9c\x4d\x39\x59\x18\xc5\xc9\x43\x58\x6e\xf7\x79\x91\xd3\xd6\x95\x84\xa1\x49\x55\x9f\xac\xdf\xf6\x96\x22\xea\x90\x49\xf6\xf1\xf9\xd1\x2c\xbc\x3a\x7e\xdc\x48\x40\x55\x8b\x70\x3a\x22\x2a\xbc\x31\x94\x9f\x70\xf6\x48\xf9\x57\x29\xf9\xc7\x04\x4f\x6d\x70\x8c\x66\x15\x10\xe4\xe7\x97\xdc\xd2\xfa\x59\x41\xf8\xb2\x2e\x42\x68\xcb\x95\x72\x16\xd6\x4d\xe8\x3f\x1b\x77\xaf\x97\xc1\xa4\xc7\x69\xd7\xfc\x2a\x66\xd1\x38\xba\x4e\xca\x47\xf7\x99\xaa\x13\xf2\x62\xad\x9b\x77\x8f\xb6\x31\x10\xb5\x89\x69\xe0\xec\xb7\x20\xb8\x27\x25\xde\xd9\x76\x5a\x86\xd0\x53\xda\x1b\xc5\x94\x87\xb3\xc6\x4b\xa9\xd8\x56\xe6\x30\x4e\x13\xac\xf3\x1f\xbb\x9e\xcc\xf6\x65\xc3\x3c\xbe\xc8\xa9\x1a\x9e\xd1\x84\xae\x92\x3d\x6f\xe6\x64\x7a\x12\x4c\xde\x07\xc7\x18\x5e\x08\x22\xe4\x15\xf3\x78\x35\x3e\x16\x26\xbc\xda\xaa\x37\x94\x5c\x92\xc7\xc2\x09\xe9\x3f\x2f\x93\xf9\xb9\x09\x6e\xde\xcf\x5b\x0c\x35\x47\x18\xac\x34\x4d\x9d\xff\x72\x29\x0f\xc1\xe0\xe9\xeb\x6e\xc1\xfd\xfc\x84\x7c\x29\xed\xc3\x7f\x3b\x74\xd9\xa0\xd2\x96\x73\xd0\xdd\xbe\x95\x81\xc7\xae\xaa\x7d\x67\x3d\x64\x09\x35\x75\x19\x5f\xab\xba\xf4\x09\xbe\xd7\xde\x71\x2d\xe4\x15\x20\x98\x74\x24\x0f\x56\x4f\x1e\x60\x30\x5c\xe1\x49\x31\x57\x5e\xb0\x50\x99\xb5\xcc\xf5\xb7\x7d\x39\xa1\xc4\xd5\x6b\xc6\x93\x43\xf5\x04\xbe\x95\x62\x6f\xd4\x5a\x73\x08\x75\x6e\x1d\x91\x7f\x72\x6a\x59\x58\x39\x4f\xb3\x61\xd0\x21\x9e\x20\x59\xe4\x32\xd7\x5f\xfe\x2a\x21\x7d\x7f\x55\x72\xe5\xb6\x52\xc2\x85\x51\x13\x39\xb5\x9b\x25\x84\x96\x9a\x79\x5e\x05\x32\x9b\x09\x37\x96\x45\x95\xcd\xdf\x57\x4a\x50\xd4\xad\x38\x1e\x2d\x52\x46\x50\x2e\x94\x6f\xca\x4b\xab\x20\xac\x12\xf9\xb8\x46\xd2\xac\x8a\xd0\xf1\x3c\x2a\xb7\x70\xac\x88\xcb\xec\xe9\x7d\x96\x13\x44\x08\x75\x95\x0b\xf0\xc8\xd2\x22\xb4\x37\xa6\xed\xfb\xbe\x28\x89\x70\x44\x45\xaa\xf1\xfd\xb1\x95\x04\x69\xce\xea\x4f\x9c\x6b\xcf\xb3\x30\xec\x22\x75\xda\x3d\x63\x0b\xe1\x7b\x4c\x93\xc3\x79\x8f\x58\xc2\xa3\x09\x13\xf4\x13\xde\x98\x13\x6a\x0e\x6d\x9d\x26\x92\xbe\x8a\x70\x26\xf6\x93\x56\xf7\xe1\x45\x84\x66\xcf\x9c\xb6\x6e\x61\x41\xc2\xf1\x88\x23\x8b\xbc\x38\xbd\x08\x8f\x5b\xee\x0f\x1c\x95\x5b\x44\x78\xa4\xde\x79\xfd\x96\x6b\x0c\x61\xe3\xfa\x51\xbd\xce\xc6\x72\x42\xfb\x5d\x97\xe9\x61\x2b\x3b\x4a\xe1\xc3\x6f\x76\x61\xc1\x04\xa2\xff\x0b\x5c\x11\x4e\x92\x6b\xf3\x27\x13\x82\xbe\x7f\x3a\x2c\x17\x78\x9d\xa0\xcd\x9f\xfa\x0d\x81\x95\x84\xc8\x87\x5b\x17\x44\xbe\xaf\x24\x7c\xdd\x62\xd0\xcc\xdd\xfc\x98\xf0\x26\xdc\xfb\xe8\xc8\xcc\x26\x82\x77\x85\xbc\x16\x6b\xac\x54\xfa\xfd\xd5\x29\x6f\x69\x22\x28\x92\xbe\xd4\x94\x8c\xfb\x2c\x98\x7f\x59\xa6\xbb\x35\xdc\x9c\xb0\xf1\xd7\xab\x6f\x3b\x2b\x26\xb0\x41\x20\xaf\xe8\x59\xdc\x61\x7e\x36\xa4\x05\x64\xf3\xe8\x2c\x61\x87\xa7\x5b\xdf\xeb\x93\x8c\x18\x5b\xb1\xde\xb3\x6b\xc3\x83\x82\x1f\x0c\xec\x8a\x36\x75\x7c\xab\xb9\x45\x98\xde\x6c\xa4\x32\xac\x56\x4e\xa8\x8b\xb3\x82\xd7\x8d\xc9\x04\xd7\xc8\x35\x96\x59\x1b\x04\xd8\x70\x34\xd7\xf4\xa8\x52\x1e\x0f\xe1\xf5\x82\x33\x56\x66\x12\x5e\x2c\xbc\x0a\xf7\x0a\x7e\x2e\xc2\x43\x78\xc6\xbb\x39\xd1\x57\x5e\x93\xa0\xf8\xc7\x90\xff\xea\x88\x21\x1b\xec\x8a\x72\x1e\x2c\x9a\xc1\xcd\x86\xa6\x32\x8e\xfb\xb9\xcc\x1d\x42\x7e\xc3\xfc\xca\x75\x33\x16\x11\xe4\xaa\xb4\x7c\x16\x5b\xc7\x10\xd4\x25\x1e\x8e\x1e\xe8\xde\x46\xb8\xd0\xbb\x7d\xe5\xb5\xcc\x45\xff\x85\xdb\x39\xcd\x61\x73\x4e\x2e\x22\x64\x8a\xb9\x37\x44\x4e\xeb\x67\xb0\x7e\x72\x2c\x73\x49\x4f\x83\x20\xd1\x9b\x9d\xb5\xe6\xfd\x12\xc2\x44\x6f\x8d\x37\x9f\x6f\xf9\x10\xf8\xf6\x34\xce\x67\x89\x5f\x24\xec\x1b\xad\x1b\xb4\x4e\xb0\x21\x94\x3b\xec\x2e\x73\xe7\x11\x27\x68\xbe\xb5\x3f\x3f\x77\xad\x18\x61\xdf\xc0\xbb\x95\x5b\xdd\xb4\x08\xcd\x3d\xeb\x2e\x18\x6e\x5a\x43\x10\xad\x33\x51\x90\x58\xa2\x45\x28\xe9\x14\xb4\x9a\x7c\x41\x9d\x50\xd2\x17\x23\xc6\x2b\x2a\xca\x56\xe6\xde\xd3\x73\x7a\x36\xf6\x57\xae\x3b\x98\xe7\xfe\x77\xe7\x5d\x42\x4f\xe7\xd4\xf2\x9c\x7b\xae\x84\xbe\xd5\x3b\xba\xea\xdd\x16\x10\xf8\x26\x07\x78\xc8\x57\xc9\x11\xaa\x7c\x93\x77\xf8\x35\x99\x13\x74\x67\x2f\x9d\x94\x7a\xdb\x91\x0d\x07\xf9\x2f\xfd\xee\x7d\x67\x47\x88\xe9\x6e\x10\x78\x68\xbc\x99\x20\x70\x33\x5a\x72\xca\x66\x1e\xc2\xa0\xfe\xa4\x8f\xe1\xad\x56\x84\xb2\x83\xca\xaa\x2b\x02\x1c\x09\x1f\x2f\xac\x31\x2e\x59\x76\x9a\x05\x65\xc3\xc9\x3e\x7f\x7c\xc7\xc6\x81\x8e\xd5\x19\x65\x92\x36\x04\xa9\x29\xb3\x1e\x1f\x38\x22\x45\xb8\x60\xcf\xfd\xd7\x9e\x65\x41\x30\x1e\x79\xd2\xfa\x33\x5c\x84\x10\x1f\x9a\xf3\x76\xc2\x89\x57\xa5\x28\xae\x16\xdd\x7f\xda\x7b\x1b\x8d\x23\xca\xa2\x36\xc2\xba\x5a\x89\x30\xc9\x30\x8e\xff\x66\x93\x06\xe1\xf0\x50\xd2\x09\x09\x66\x2a\xa1\xf5\x88\x53\x8c\x74\xaa\x36\xe1\xa5\xca\xea\xfb\xef\x2e\x2e\x65\x83\xfd\xda\x98\xa2\xf3\x01\x86\x04\x2d\x8e\xe2\x93\xc6\x12\xaf\x19\xbc\xdf\xf9\x4c\xa5\xed\xc7\x66\xc2\x5b\x85\x53\xfd\xe9\x5b\xf5\x08\xe6\x5e\x6d\x85\x33\x76\x1d\x26\xf4\xa6\xab\x56\x4e\xe0\x8f\x60\x61\xbf\xde\x85\xba\x96\x0f\xba\x84\xe6\x39\xfd\xdd\x59\x51\x29\x84\xf3\xfb\x7d\x47\xaf\x6d\xe4\x22\xa8\x77\x69\x5c\x88\x7f\x62\x41\xc8\x6a\xff\xfe\xf9\xe8\x96\x1f\x0c\x26\xdf\x6a\x36\x91\x11\x28\x24\x28\x99\xed\x8a\xfe\x3d\xbd\x90\x60\xbb\x50\xd3\x2c\xea\xa3\x3e\x21\xae\x98\xe3\x6d\x90\x81\x14\x21\x20\x35\xbc\xc5\xb1\x82\x83\x90\x95\x66\xd1\x76\x7e\x7f\x1c\xe1\xd1\xdc\xf7\x3c\x59\x3b\x15\x09\x3d\xd5\x8d\x3a\x6d\xbc\x32\x84\x6d\x46\x73\xae\x43\xf2\x2c\xe1\xe2\xdc\x33\x15\x9b\x67\x3d\x20\x44\x93\xc3\x05\x3f\xa1\x66\x42\x32\x77\x9b\xc0\xf9\xd4\x3b\x84\x14\xe9\x34\xbd\x3f\x4b\xe5\x09\xfd\x65\x03\x33\x6c\x8a\xbc\xd8\x50\x35\x69\xf2\x04\x8f\x73\xdb\x08\xa9\x8b\xb7\xd3\xfc\x78\x13\xc2\xcd\xd6\xf2\xbd\x37\x94\x84\x08\x22\x13\x0d\x75\x1f\x79\x2d\x25\x04\xdc\xce\xb6\x7e\x6e\x24\x45\x98\xd6\x6d\xe0\x06\x2e\x0e\x82\xa0\xf2\x95\xf9\xb1\xce\x82\x84\xa8\xc2\x2b\x5f\x5b\xea\x8d\x09\x9e\x97\xa6\xcd\xc8\x39\xc1\x62\xc1\xe8\xaa\xd5\xfe\xd9\xa6\x1a\x84\xf9\xcd\xf1\x87\x6d\xff\x7c\x64\xfe\x03\x95\xdc\x0b\xbd\xae\x79\x35\xfe\x17\x04\x6f\x1f\xdf\xe5\x67\x3c\xf6\x23\xfe\x5f\xec\xea\xe7\xad\x8e\x96\x92\x61\x43\xc2\xc3\x36\xa5\xd5\x05\xa7\x09\xaa\x43\x07\xe4\x77\x74\x66\x31\x98\x21\x72\xf4\xf2\x46\x79\x6d\x1a\xc7\xb7\x3b\x5c\x5b\x1c\x4d\x96\xb2\x61\x6f\x5d\x51\x41\xde\xb6\x79\x6c\x78\xab\x99\x15\xb0\x2b\xb6\x91\x81\xaf\xcf\x01\xaf\x04\x25\x01\x42\xa2\xc3\x64\x8d\xe6\x78\x41\x36\xe4\xa8\x1c\x6c\x6d\xe2\x1a\x66\xd0\x1f\x5c\xf3\xd1\xea\x6e\x1b\x83\xf5\xda\x0b\x2e\x96\x38\x58\x10\x14\x53\x9b\xe5\xca\x26\xae\x22\xc4\x1d\x8f\x3d\x90\xd7\xdf\xc5\x60\xe4\xce\xa1\xd4\xee\xe4\x4f\x0c\xf4\x86\x17\x34\x48\x72\xd8\xd0\x38\x52\x03\x72\xf5\x1a\xac\x67\x11\x14\xf3\xce\x2e\x6a\xb9\x6d\x45\x68\x16\x6e\x71\x3b\x31\xda\xca\x40\x74\x53\xd7\xb9\x69\x9c\xda\xc4\x06\xfd\xc0\x3b\x8a\x49\x9d\x0c\x0e\xac\xd8\x7e\xeb\x4b\x80\x35\x8d\x63\xbe\xca\xa1\x77\x52\x76\x0b\x09\x0e\x53\x3f\x6f\xb9\x94\x24\xcf\x86\xcc\x91\xd1\x78\x73\xc7\x8f\x0c\xdc\x33\x56\xbc\x2d\xfe\xfd\x9c\x19\x2f\x4f\x46\x5d\x16\x08\x6e\xed\x67\xf0\x38\x22\xb8\x45\xfa\x50\x04\xa1\xe0\x66\x48\x5a\xdf\xe6\xed\x84\x2a\x2a\xab\xf4\xfc\xf0\x81\x81\xe1\x12\x3b\x78\xbe\x31\xa6\x71\x44\xcb\x88\x4b\x6b\x27\xcb\xb1\xa1\xe2\xc5\xba\xd3\x0b\x2b\xfe\x32\xe0\xfa\xaa\xe9\xf0\xf0\x7a\x1e\xa1\xbd\x39\xf1\xea\xdb\x93\x1b\xd9\xf0\x5a\x59\x45\x42\xc3\xf2\x1a\x83\xc3\x1b\xb7\x26\xb7\xbc\xe3\x27\xac\x78\x8b\x9d\xd5\x0a\xfb\x09\xb9\xab\x27\x84\x8b\x2c\x95\x22\x9c\xf3\x0d\x0c\xdb\x11\xe6\x4b\x98\x69\xe9\xf1\x55\xca\x42\x98\x10\xbf\x62\xe8\x53\xd1\xd8\x11\xc2\x65\x79\xb7\xc7\x3c\x31\x61\x02\xb3\xdf\x5b\xae\x23\xd2\x86\x70\x3e\x30\x99\x43\xe3\xa7\x0b\xc1\x9a\xf3\x7b\x60\x6e\xea\x7a\xc2\xd1\xd1\xb0\xdd\x3c\x15\xc6\x84\x17\x83\xab\x2c\x43\x24\xde\x31\x68\x8b\x51\x92\x12\xcc\xa9\x63\xe1\x6b\x85\x4c\xac\xe5\xdb\xcb\x84\x67\x7f\xfa\x6b\x36\xe7\xcc\x27\x84\x9b\x59\x57\x04\x2e\x3e\x43\xa8\xaf\x68\x6a\xbe\xaa\x9a\x47\xd0\x7c\x91\x63\xe1\x7d\x34\x93\xb0\x63\xc3\x2e\x4d\xa1\x17\xeb\x08\x9b\xcf\xcb\xaf\xb3\x8e\xd8\x47\x98\x6c\xa7\xa8\x30\xe1\x66\x3f\x83\xe6\x90\xa9\x8a\x0a\x5f\x2c\x68\x1c\x6b\x65\x4c\x97\x7b\x37\xac\x20\x78\x18\x18\x9c\x71\x09\x55\x20\x7c\xb5\x08\x7e\x4d\xc7\x04\x09\xe7\x4e\x76\xfa\xe7\xfa\xab\xb1\xc1\x2a\x9d\x15\x6b\x51\x2a\x4d\xb0\xd9\xf8\xa8\x36\xcb\xcd\x94\xf0\x7b\xcf\xd1\xe5\x95\xf3\x54\x09\x7f\x0c\x9c\xb5\xbf\x3c\xb3\x25\xc4\x35\xef\xeb\xbe\xf2\x8a\x8f\xf0\xdc\xf4\x7b\x4d\xdd\x34\x0e\x36\x48\x09\x9b\xba\x37\x6f\x7c\xcb\xc0\xac\xf5\xc7\xc2\x24\x3d\x3e\x02\x37\xaf\xf1\x9d\x25\xb1\x4a\x04\xde\x14\x3f\xb3\x25\x73\x78\xd9\xe0\xeb\x34\xc7\x3a\xfc\x11\x17\x41\x5a\xf0\xc7\xd6\xee\xe4\x6e\x06\x0d\x3c\x8d\xbb\x12\xe9\x31\x1b\xe6\xd9\xaf\xdc\xe9\x65\xc3\x4f\xb0\x79\xdd\x6e\xf1\xbb\x9a\x87\x20\x30\x5a\xc0\x61\x29\x27\x42\x58\xb2\x8b\xa3\x70\xf1\x5f\x59\xc2\x47\x29\x31\xe5\xe4\xe3\xe2\x84\xba\x5a\xc3\x79\xae\x81\x99\x63\x1b\x88\xfd\x87\xe8\xed\x9d\x0c\x7e\x7c\x8d\x35\x15\x6e\x58\x4a\x88\x3d\x9b\xd9\xa9\x3f\x28\x49\xd0\x77\xd3\xf5\xf7\xeb\xe1\x26\x24\x6e\xe6\xde\xf8\xdd\xd4\x9d\x60\x53\xc0\x33\xf7\x76\x85\x13\xa1\x25\x65\xc7\xf5\x75\xc7\xbb\x08\x4a\x71\xb2\xca\x49\x02\xe9\x84\x1d\x4e\xbb\x9b\xd3\x19\x4b\x16\x9a\x7e\xe6\xab\xdd\x9f\x90\x3f\xf6\x5b\x95\xe5\xfd\x7b\xef\x0a\x21\xc5\x6e\x84\x37\x73\x6f\x25\x21\xed\x89\xce\xc6\x92\xd9\x29\x84\xa4\xb9\x4f\x67\x4f\xf7\xbc\x49\xf8\xdd\xd1\xe2\xd1\x68\xf6\x8b\x19\x47\x50\x68\xcc\xc4\x97\x41\x99\x84\xfe\xa3\x61\x8b\x63\x6f\xca\x12\x2a\x4a\x46\x14\x05\xef\x6f\xfb\x2f\x3c\xf9\xa4\x37\x6d\xfb\xa7\x85\xff\x05\x9b\xdd\xa2\xf7\xdd\x79\x13\x4b\x91\x7c\xa8\x76\xce\x01\xff\x44\xc2\xab\x91\x38\xb3\x0a\xfb\xc3\x84\x97\x86\x2b\xf7\x29\xb0\xdc\x08\xd6\x73\x3f\x3e\x13\x7b\x78\x9c\x50\xdb\xd2\x6a\xb1\x2e\xd3\x9d\xe0\xda\xfa\x32\x41\x72\xa1\x22\xe1\x77\x55\x8a\xf4\xaf\x82\x1e\x06\xb3\xdd\x0d\xbd\x8d\x96\xab\x10\xcc\x6c\x1f\xee\x3d\xe5\xb9\x8c\xe0\x70\x2a\xbb\x67\xde\x67\x35\x82\x73\xd8\xa5\x5c\x8f\xb0\x9f\x0c\x4a\x8e\xe7\x29\xc9\x55\xf1\x11\x7e\xf9\x8b\x77\x06\x89\x16\x12\x56\xae\xfc\x33\x55\x6c\x91\x10\xe1\xe9\x81\x87\x9a\x49\xf3\xa4\xd8\x60\xfe\xa4\x4f\x31\x27\xf3\x1a\x0b\x9c\x56\xc9\x41\x85\xe2\xfd\x0c\x64\x07\x2f\x04\x96\x17\x99\x10\x1e\x17\x71\xeb\x3d\x0c\xe1\x24\x4c\x7d\x1a\xf9\xa1\xd4\xde\x98\x70\xb0\xd1\x7b\xd8\xf6\xe5\x1f\x06\x4d\x2f\xcb\x7d\x05\x27\x2e\xa6\x71\xf0\xce\x79\xd8\xc0\xc4\x70\x10\xa2\x59\x9e\x11\xf5\x8f\x8c\x08\xc7\x46\x5c\x1e\x7d\xf8\x3a\x99\xd0\x68\xfb\xdb\xd0\x37\x8c\x61\xc3\x91\x4b\x26\xe7\xd2\x2e\x70\x10\xd6\xab\x85\xdf\x18\x91\x3e\x4a\x58\xdf\xf8\x75\x38\xa4\x3b\x94\x20\x54\x6d\xf4\xa0\x62\xb9\x3f\x41\x61\x55\x5d\x55\xd8\x88\x2e\x61\x5b\x5b\xbf\x74\x9c\x75\x06\x0b\xe5\x1d\xfa\x33\xbb\x34\x86\x19\xac\x8a\x2e\xde\x93\x17\xd0\xc1\x80\xe7\xa8\x95\xab\x62\xb5\x24\x61\xf7\xc8\xdf\x99\xfb\xb3\xf9\x09\xb4\xa6\x9f\x2f\xeb\x4f\x10\x0b\xbb\xec\x96\x74\x7c\xe2\xb1\x25\xf4\x2f\xeb\x97\x48\xbc\xa1\x4c\xc8\x68\xd2\x1e\xd2\x6c\xfb\xc3\x20\xf8\xc0\xe7\x7b\x01\xd6\x5b\x08\xbb\x7e\x99\x44\xfd\xfd\x53\xc4\x86\xe5\xa7\x03\x9c\xf9\x39\x4a\x19\x58\x76\xa6\xcf\xdf\x5a\x64\x4e\xb0\x4c\xec\x17\xbf\xef\xde\xc5\xa0\x37\x93\x4f\xac\x7d\xc5\x5f\x06\x9d\x12\x29\x4e\x77\xdb\x8c\x68\x1c\x53\x0a\x2f\xf2\x74\xf8\x3e\x28\x05\xcf\xe0\x9b\xe6\xf5\x0b\xaa\x08\xc2\xfe\xe7\xb9\xb4\x1c\xab\x08\x23\x86\x9b\x95\x9a\x26\x55\x10\xa6\x52\x88\x08\x57\xd8\x6b\x16\x5c\x42\x8c\x5d\x37\xfd\xad\x63\x81\xf7\xb7\x9b\x54\xc9\xe1\x62\x02\xd7\x2c\x1b\x83\x7a\x8f\xbb\x04\x4b\x1e\xa7\x67\x47\x3d\xef\x12\xde\x33\xbc\xc7\x4c\xc7\xf0\x4d\xf8\xa2\x5d\x2a\xc7\x5d\x02\x47\xb4\x80\xe3\x91\xb1\x92\xf6\xec\xfe\x36\x3b\x91\x12\xc2\xc2\xaf\x4e\x67\x02\x84\x4a\x08\x99\xea\xa2\xaf\xf8\xe7\x96\x10\xb2\x4d\x16\xe5\xe9\x8b\xb0\x97\xab\x39\x7c\x9c\x05\x2e\x67\x09\xc1\x2f\xdf\x2a\xc3\xe5\x05\x21\xa8\xf9\xde\x9a\xd7\x03\xc7\x09\x89\x8b\x2a\x17\xbd\x5a\x7d\x9a\x81\x7d\xec\x09\xe5\xc9\xf3\xf4\x69\x1c\xdf\xb4\xf2\x79\x77\x4f\x12\x26\x28\x7e\x89\x35\x9e\x90\x7b\x9b\xa0\x33\x57\x73\x62\x8c\x50\x2e\xe1\xcc\xb6\x4f\xce\x0a\x93\x72\x09\x33\xbb\x22\x57\x45\x8f\x15\xeb\xd1\xae\xc2\x59\xcb\xcb\x99\x71\x70\xfa\xdd\xb0\x9f\xf0\x50\x80\x30\x60\x31\x30\xad\xe8\x88\x08\x8d\x17\x0e\xd3\xe6\x9d\x5f\x74\x0a\x19\x1c\x86\x47\x83\xed\x6e\x03\xc2\x37\xef\x19\xed\x8a\x22\x33\x08\x2b\x0a\x2e\x0f\xb9\xd4\xef\x23\x68\x89\xfc\xaa\xe7\x4b\xab\x22\xac\xbb\xb0\xfb\x88\xe3\x8a\x61\x06\xf3\x03\x38\x0d\xf8\x56\xc8\x13\x44\x73\x26\xbd\xe2\x1c\x3c\x44\xe3\xe5\x7f\xb1\xf7\xe8\x96\xef\x7b\x12\x0e\x13\x96\x3e\xd8\xb2\xec\x7b\x6a\x27\x83\x0f\xf5\xeb\xbb\x1a\xd4\x56\x10\x36\x26\x49\x19\x75\x1f\x56\x27\xcc\x5f\xe6\x19\xf8\xd8\x31\x9c\x85\x68\xbd\x5d\x61\xf7\x17\x9a\x13\x7c\x62\xed\x14\xc4\x0f\x65\xb2\xe0\x10\xbc\x2e\x6b\x3a\x57\x19\x8d\xc3\x6a\x95\xcc\x69\xbe\x31\x90\xd9\xa2\x0d\x52\x77\xb2\xd8\xf0\x2d\x4b\x7e\xf2\x94\xc4\xcf\x0c\x8c\x25\x7b\x6f\x78\xa7\x7c\x65\x50\xd3\xf5\xb8\x64\xcf\x8f\x7c\xc2\xf0\xfa\xb7\xc6\xbd\x2a\x05\x84\x0e\xe3\x4d\x6f\xd6\xae\xcd\x21\x98\xe7\x39\xc7\xbf\x98\x5c\x41\x48\x96\xe7\x69\x79\x69\x76\x83\xc0\x75\x61\x87\xdb\x92\xc4\x2c\xc2\x43\xc7\x14\x23\xd9\x27\x79\x84\xae\xb5\x7d\x16\xba\xf1\xd9\x84\x7b\x8a\x21\x7b\xfc\xcf\x9e\x63\xc3\x14\x31\x49\xd5\xf3\x17\x1c\x4a\xe1\x53\xbc\x7b\x64\xd8\xde\x85\xe0\x77\x7d\xd9\xe1\x75\x5d\x1b\x09\x96\x42\x26\x3f\x67\xaf\x35\x21\x7c\x18\xcc\x78\xe2\xbd\x51\x8a\x50\x1f\x3c\x6f\x1f\x57\xe4\xd3\x52\x6c\x1e\xed\x56\x15\x9f\x3d\xcc\xe0\x40\x6d\x90\x44\x84\x4d\x18\x8d\xa3\x65\xe6\x09\x0f\xd7\x8f\x0e\x84\xf8\x24\x49\x75\xe9\xe7\xd3\xd8\x50\x79\x64\x5d\x6f\x89\x9b\x00\x1b\xec\xa3\xbc\x76\xdf\xb7\xee\x2a\x1d\x87\x5e\x7b\xfd\x0e\x25\x8b\x68\xfa\x0f\x08\xe8\x04\xeb\x8b\x25\x70\xfe\x9f\x58\x17\x61\xa1\xe0\x2d\x29\xff\x5f\xb8\x37\xbd\xb9\xca\xd5\x29\xb5\x14\x93\xff\xb8\x07\x26\x27\xa5\xb1\x50\xbf\xd3\xf2\x9a\x70\xf4\x3e\x16\x36\x34\xdd\x29\xdb\x74\x76\x27\x61\xd1\xfb\x89\x1d\xed\xf7\x8a\x09\x8b\x07\xe6\x47\x47\xf3\xe4\xb3\x90\x52\xcc\xd7\xc5\x51\xc7\x41\x50\x97\x6c\xa6\x5d\x6d\x82\xff\x85\x0f\x92\xaf\x8f\x3e\x39\xa2\xfe\x5f\x68\x57\xad\x08\x77\x9d\x96\x5b\x8a\xb8\x97\x0d\x09\x72\xb9\x46\x04\x0f\x97\x72\x79\x3f\x61\x0b\x42\xb5\x7e\xe6\x53\xa1\x7c\x49\x36\x08\x26\xd6\x19\x26\x80\x9f\x60\xd8\x77\xb0\x27\x66\xec\xf4\x55\xfa\xbe\x53\x79\xae\xeb\x5e\x82\x94\xbd\xb7\xdc\x40\xaa\x03\x21\x2c\xec\xa3\x83\x66\x5c\x1e\x41\x28\x5c\xdf\x6e\xb6\xf0\x6d\xc2\xdc\xde\x84\x6d\xb9\xe2\x59\x6c\x38\xe7\x9b\x33\x3c\x64\x71\x86\xf0\x3e\x3f\xba\x6d\xf0\xe4\x42\x82\x5b\xc3\xcb\x2d\x0f\x05\xb8\x09\x58\xe6\x94\x35\x4d\x7b\x21\x21\x2b\x58\x54\x4b\xf5\xfd\x52\x36\x1c\x97\xb9\x23\x27\xb7\xf5\x1d\x83\x29\x83\xa6\x1e\xa3\xfe\x3b\x08\x8f\xbf\x2c\x6f\x98\xff\xcb\x8e\xf0\x5b\x7f\xfb\xeb\x8c\x4a\x5b\xc2\xbc\xde\xeb\x8f\x87\x73\xf4\x09\x1b\xea\xe3\xe7\x86\x09\x3b\x11\x82\x1e\x1b\xde\x58\x75\xe1\x36\x0b\x76\xab\x27\x5f\xbf\x8e\x33\x04\xb3\x72\x37\x93\x84\x75\x65\x04\xb5\x8d\xf5\xb6\xda\xbf\x9e\x11\xae\x07\x55\x4d\xd3\xfc\xf1\x8c\xe0\xd5\xb4\x2c\xfb\xd8\x87\x0e\x16\x58\xe1\xac\x98\xa9\x63\x4b\xe7\xcf\xa7\x94\xbd\x98\x52\x45\x88\xee\xc8\x53\x1b\xdd\x7d\x98\xf0\x6d\x9a\x6e\xb7\x85\xac\x2f\x21\xbe\x8c\xab\x34\x6a\xe1\x08\x33\x8e\x27\x9c\x89\xfd\x6d\x25\xd1\x04\x73\x8f\x05\xba\x17\x0c\x4e\x11\x9c\x77\x3e\x15\x6b\x96\x4f\x66\xa1\xf6\x7c\xae\x70\x3e\x8f\x39\x8d\x63\xe7\x63\x03\xa5\xc0\xe2\x37\xa5\x78\x36\xaf\xd9\xe0\x90\x98\x10\xe1\xc7\x37\xf5\xf8\xe8\xa8\xd5\x84\xc7\x37\xd7\x66\x38\xd6\x5a\x10\xd4\x3a\xcc\x3b\xec\x6d\xf5\x08\xb2\xab\xe5\x1f\xbc\x7c\x51\x40\xb8\x5e\xf8\x5e\x30\x6e\x0c\xe6\x32\x7d\x93\x8e\x65\xb9\x10\xf4\xed\x1d\xaa\x72\xae\x2a\x11\xae\xca\x8e\xd4\x36\x19\x68\x10\x62\x87\x2b\xcc\x5a\x27\x8a\x12\xfe\x8a\xf7\x04\x7a\x05\xee\x22\x54\xcd\xcf\x32\xfe\xc4\x35\x8d\x50\x3c\xcb\x71\xda\x6b\x77\x47\xc2\xf3\x0f\xaf\x8a\x7b\x05\xc7\x76\x80\xce\xab\x52\x53\xcf\x48\x10\x44\x43\x0d\x38\x02\xcc\xcc\x09\xd6\x13\x85\x85\x79\xe3\x0d\x09\x3f\x0e\x26\xee\x09\xbf\x6c\x4f\xd8\xdb\xb7\xaa\x3c\xb8\x45\x82\x0d\x3f\x5e\xcf\xe2\x3c\xb2\x7a\x2a\x1b\x06\x16\x1e\x30\xd9\x3d\x58\xcf\x42\xa7\xbc\xb1\xcd\x41\xd1\x32\xc2\x8a\x6d\x36\xd7\xba\x2a\x0f\x12\x42\xb9\x16\x70\xbf\x12\xbc\xc5\x42\xc6\xed\xbd\x61\xff\x96\x7e\x1c\xbe\x2b\x94\x31\x1a\xca\x86\x20\xd1\x20\xf5\x27\xce\x85\x04\x95\x6c\xfe\x7d\x26\x37\x4b\x08\xa5\x56\x83\xcb\x9d\xa6\x97\x10\x6e\xe7\x26\x6c\x11\x73\x28\x26\xf4\x71\xf3\x1f\x33\x1d\x5b\x92\xf1\x79\xb7\xf1\x1f\x5e\x5f\x3c\xf9\xba\xa1\x37\x9d\xf0\x77\xea\xfe\xf3\x25\xa1\x71\x84\x17\xbe\x6a\x97\x02\x2e\xc6\x11\x9a\x77\xf3\x25\xb7\xa7\xbd\x65\xc6\xb1\x45\x34\x2a\x29\xb0\x9a\x93\xc6\xf1\xae\xc4\x2b\x32\x79\xbb\x1c\x1b\xe2\x7a\x2d\x9b\x1d\x1b\xa6\xb2\xe1\x7c\x88\xec\x45\x9d\xa9\x97\xd9\xf0\xcc\xf1\xf2\xdf\x33\xfd\xd1\x6c\x30\xf9\x24\xcd\x12\x91\x90\x27\xac\x79\xeb\xba\xd5\x3d\x7d\x2e\xa1\x27\xe6\xce\x8e\x92\x4f\xca\x84\xe0\xe5\x2f\x83\x55\xf8\x15\x09\xd3\x2b\x6e\x31\x7e\xd5\xba\x84\xa5\x96\x7d\xd7\xde\xee\x3f\xc8\x1a\x2f\x5f\x96\x29\x6c\xef\xbf\xfc\xa2\x14\x39\x7d\x2b\x8e\xad\x2d\x0b\x22\xfc\xda\xcb\x79\x7b\xc9\xd8\x99\x76\xd6\x3d\xe7\x98\x85\x85\x46\x84\x75\x3d\x12\xaf\x0e\x0d\x7f\x67\x10\xda\x79\xae\xea\xcf\x3a\x01\xc2\x5d\x5d\xcd\xfe\xac\xd8\xdf\x0c\xae\xe5\x2a\xdb\x07\xa8\xcd\xa6\x71\xcc\x57\xe3\x8a\x13\xf3\xfd\xc3\x20\xd1\x21\xda\xb0\xcc\xad\x92\xf0\xe3\x63\x5d\xca\xd0\x9c\x2a\x02\xc7\xd7\xe8\xfb\xbd\xb4\x8f\x85\xc9\xdf\x54\x27\xbb\x1a\xcf\x21\x4c\x0a\xb8\x37\xeb\x5b\x64\x13\x5b\x91\xf8\x69\xd4\xac\x94\xb1\x8b\x05\x91\xbe\xfd\x26\xaa\xce\xe9\x2c\xd4\x1a\x0e\x5c\x0c\x86\x01\x21\x3c\xfb\xe0\x79\xf7\xcd\xdb\x59\x28\x91\x28\x51\xe4\xdc\x67\x40\xd0\x50\xb1\x9a\x34\xe5\x48\x39\xe1\x7b\xa0\x75\x5f\xdc\xdd\x58\x06\x37\x78\xa4\x4f\x1e\xb8\xaf\x43\xe3\x18\x92\xd9\xb6\xd2\xe8\xb7\x14\xc1\xe1\xc6\x8c\xba\x33\xb3\x97\x10\x4c\x4e\xf6\x79\x3d\xf5\x58\xcc\x86\x92\x1e\x2d\xb4\x4b\x86\xb1\xc6\x4b\xd5\xbd\x57\x90\x28\x5d\xf2\x5f\x38\x25\x34\xef\xa8\xe7\x97\x4e\x06\xb5\x1a\x95\x1b\xcb\x02\xa6\x10\x56\x9f\xae\x91\x47\xb5\x0c\x1b\x54\xeb\x44\x6e\x9f\x4f\xe1\x60\x03\x7f\xf3\xea\x3b\xbb\x94\x2d\xd8\x90\xf8\xf7\xcd\xb9\xef\x3c\xb7\x18\x04\xdb\x56\xab\x2c\x75\xf8\xc3\x0c\xc5\x4c\x3f\x53\xb1\x77\x11\xfd\xff\xbf\x22\xbe\x26\xa4\xa7\x26\x57\x9d\x50\x6b\x1a\xbd\x64\xb3\x9b\x06\xe1\xda\x41\xc7\xc5\x4d\x7c\x82\x04\x1b\xdd\xfb\xbe\x02\x2f\x26\xb0\x61\x6a\x8c\xce\x81\xf8\x77\x77\x4a\x11\x25\xb9\x55\x73\x46\xf8\x47\x06\x0d\x91\x5b\xe7\xf1\x65\xf1\xd0\x38\xe2\x24\x7f\x86\xbe\xad\xff\x54\x8a\x69\x09\x43\xd5\x27\x2c\xbd\x09\x55\x62\xb3\x4d\x3a\x96\xe9\x10\x0e\x84\xe6\x87\xce\x2a\x33\x65\x83\xec\x25\x2d\xb1\xc5\x7b\x46\x98\x71\x9c\x52\x10\x4b\xd5\xcd\x9c\x48\xf0\x9f\x15\xfe\xe9\x48\x80\x05\xe1\xcd\x89\x79\xbd\xb6\x8b\xb7\x10\x34\x9f\x3e\x0c\xdd\x9a\x21\x4d\x68\x15\xd6\x0d\x7c\xdf\x7b\x9b\x85\x05\x5b\xee\xce\x96\xf0\xb1\x20\x2c\xb9\xd1\x7c\x30\x23\x4d\x9f\x90\x71\x4e\x30\x3e\xf1\xc3\x14\xc2\xec\x83\x1e\x77\x96\x58\x88\x13\x0e\x33\xdc\xc5\x42\xae\x36\x84\xa2\x77\xb3\xb5\xb3\xdd\x65\x09\xb5\xab\x77\xaa\xf2\xd4\x5f\x27\x2c\xce\x72\x39\x64\xf5\x9e\x9f\x0d\x5f\x9e\x5d\x1b\x78\x6a\x76\x93\xa0\xd8\x93\x74\x78\xc9\x9e\x6a\x16\x44\x1c\xf9\xa7\x95\x09\x3c\x2c\x85\xe3\x99\x07\xb7\x35\xa2\x17\xd0\x38\x72\xe3\xf3\xdf\xc8\x6b\xde\x67\xb0\xc1\xa7\x47\xd2\xff\xaf\x15\x21\x9d\x37\xc5\x6d\xd1\x39\x2d\x82\xc0\x35\x93\xe9\x9a\x87\x55\x08\x99\xf7\xfd\xb6\x58\x4c\x29\x2c\x45\xac\xf1\x89\x8c\xe9\xe9\xc7\x58\x28\x5f\xd5\x78\xe2\xde\x63\x23\x02\xef\x70\x03\xef\xe2\xf2\xcf\x0c\x14\x95\x9c\xc4\xd2\x38\xa5\x69\x1c\x35\x02\x6b\x75\xf8\x4e\x99\x12\x3e\xa7\x4f\x11\x79\xe8\xf9\x86\xc1\x31\xff\xad\x1b\xbd\x47\x4d\x69\x1c\x06\xfc\x23\xa6\x43\x5b\xd3\x4b\xe1\x61\xf1\xea\x9e\xfa\xb5\xe9\x84\xad\xda\x09\x7b\xab\x2a\x3b\x18\x88\x7f\x9f\xfa\x3b\xc2\x4f\x8e\xc6\x11\x6e\xf4\xd2\x24\x79\xec\x51\xf1\x7c\x60\x75\xa9\x8a\x6b\x05\x1b\x2c\xa7\x70\x0d\x2d\x6c\x08\x65\x87\x4b\xd0\xf2\x75\x2a\x61\x04\x9f\x9b\x52\x1a\x77\xec\xe6\x12\x8e\xfd\xfd\x2c\x7e\xf1\xcf\x2e\x82\xca\xab\x5f\x6a\xda\x4b\x75\x09\xab\x6b\xdd\x07\xc5\x15\x2c\x08\x45\x77\x7f\x3b\x5f\x10\x7d\x45\x58\x55\xf0\x5e\x41\x7d\x8d\x29\xe1\x78\x36\x93\x32\xfa\x71\x15\xa1\x6c\xbe\x53\x73\xed\xa6\x39\x04\x9d\x99\x62\x05\xb7\x54\x17\x13\x7c\xc2\x05\xaa\x3a\x5c\x4f\x10\x3e\x7a\x06\x14\x86\x96\xa7\x10\x18\xf5\x80\xe3\x82\x36\x7c\x6c\xd8\xce\x27\x14\xc4\xa7\x23\x49\x28\xf2\xca\xf2\xe1\x4b\x95\x21\x4c\xce\xdb\xf3\xcc\xa8\xe9\x27\x83\x88\x5e\x3b\xa9\x40\xde\x3c\xc2\x68\xe8\xe8\x3d\x51\x8e\x3c\xc2\xd6\xf4\x27\xa6\x9f\xee\x3b\x10\xba\x77\x28\xc5\x47\xf3\x5e\x23\x6c\xdb\x31\x2d\x84\x97\xef\x23\x03\xde\x63\x4b\x96\xdd\xe8\xed\x66\x83\x53\xec\x21\x1e\xcd\x9b\x42\x84\xfa\x93\xdc\x1b\x06\xb2\xe6\x10\x86\xfb\x7f\xce\xda\x2e\xd4\xce\xe0\xe0\x90\x82\xb8\xa5\xd0\x34\x1a\xc7\x70\x98\x58\x5e\xe1\xdd\x1a\x06\x7a\x7d\xdb\x1e\x57\xa5\xc9\x13\xf8\x36\xaf\x4c\x6c\x90\xdd\x4c\x98\x3f\x3b\xde\x5d\x7f\xb7\x3e\x21\x4e\x3e\x7a\x06\xa7\x99\x17\xe1\xe2\xef\xa3\x1d\x83\xcb\xa5\x09\x95\xc9\x35\xdb\x6f\xcf\x3b\xc5\xc2\x9a\x8b\xdc\x67\xdb\xf4\xed\x08\xa1\x12\xc7\x93\x23\x17\x7f\x67\xe0\xd9\xb1\xa0\xd4\x51\x2a\x9e\x85\x27\x5a\x47\x85\xf5\xa7\xaf\x24\x6c\x7f\x57\xb5\x49\x2a\x4a\x88\xa0\x32\x9a\xd4\xca\xdc\xfa\xce\x8c\xe3\xf9\x07\x9f\x0b\xcf\x9b\x72\x19\x14\xaf\xcd\xef\x95\x75\x2e\x23\x68\x8b\x3b\x78\x1c\x5a\xaa\x45\x50\x6c\xe8\xcc\x0d\x88\x32\x24\xc4\x7d\x78\xbb\xdb\xd8\x5b\x8e\xa0\x22\x7e\x7b\x96\x0b\x8f\x2a\x81\x4f\xd4\x92\x57\x2e\x55\x89\x10\xfe\x7e\xc6\x39\x9b\xbd\xfe\x6c\x68\x6c\x37\x0b\xeb\xd5\xfe\xc3\x60\x56\xcd\xd3\xd7\xe9\xdf\x84\x08\x9c\x3f\x56\xb5\xe8\xac\x88\x65\x83\xf8\x7e\x9b\x1b\xdf\x17\x6e\x24\xcc\x58\xbb\x41\x67\xe7\xcc\xcd\x84\x5f\x62\x7d\x4f\xf8\x3b\x7a\x18\xb8\x05\xfc\x5e\xe4\xa3\xa7\x42\x40\xbc\x5c\x45\x07\xaf\x0c\x41\xef\xcc\x5f\xac\xe3\x38\x47\xd8\x90\xcb\x75\x2b\x7e\x95\x07\x1b\x54\xff\x3e\xd5\xb2\x6e\xcf\x61\x81\x09\xcf\xfa\x72\xf5\xd5\x4a\xc2\x7b\x9d\x42\x25\x8d\xcd\x9a\x84\x89\x2f\xcb\xf9\xfd\x6e\x28\x11\xf8\xae\x6f\x59\xeb\x38\xf6\x60\xc7\xff\xbc\x12\xd7\xfd\x25\x83\x90\x59\x66\x1f\xb6\xab\xbb\x98\xa0\x8b\xa3\x5b\x61\xf5\x8c\xc0\x9d\xd8\xfc\x48\x24\xbb\x90\x10\x5a\x21\x26\x68\x28\x68\x4c\xb8\xb6\xdc\x4c\xcc\x4c\x2d\x9e\x05\xe9\x13\x83\x03\x35\xda\x0f\x09\x3b\xea\x44\xef\x2e\x75\xa9\x65\x61\x96\x52\xeb\xee\xec\xb6\x22\xc2\x34\xcb\xaf\x9c\x22\xd1\x2b\x08\x25\x03\x34\xcd\x5b\xbb\x9d\x10\x3c\xe5\x39\xc7\xad\x79\x2e\x84\xbe\x5a\x9e\xab\x9b\x06\xcb\x08\x2d\xdd\xab\xf2\x83\xb5\x8b\x09\xbf\xfc\x7a\x9e\xf2\xee\x7e\x41\x98\x75\xfb\x52\xa9\xc9\x8c\x04\xc2\xef\x80\x34\xbd\x75\x16\x5e\x84\xf8\xb3\xd2\xea\xac\x89\x3b\x08\x9d\x8e\xc1\x87\xcb\xae\x4d\x21\x34\x7e\x72\x69\xf0\x37\x92\x63\x2b\x25\x92\x25\xaa\xf1\x9f\x9b\x19\x6c\xe2\xba\x53\xc8\xff\xfc\x16\x61\x24\xbf\x90\x73\x87\xb0\x07\x0b\x7f\x4d\x47\x33\xc5\x77\x9b\x13\xd4\x3f\xf3\xa1\x4d\x7c\x19\xc1\x37\xd9\x77\xe7\x95\xbd\xf3\x08\xb3\x5f\x98\xd7\xee\xe0\x29\x60\x61\x09\x5d\xfb\xf2\xc1\xf3\x00\xa1\xf4\x0d\x09\xec\xba\xa8\x4e\xd8\x51\x3a\x72\xe3\xe4\x14\x0d\xc2\x2b\x75\xcf\xa9\x5c\x53\x55\x08\x9a\x0b\xcb\x6d\x2e\x6a\x94\x12\xae\xa6\xa6\x0c\xb4\x86\xcf\x21\x6c\x97\x34\x74\xfc\xf1\xcd\x9d\x70\xb9\xb3\xac\x53\x6f\x6f\x35\x0b\x9f\x9f\xbe\xf7\xf2\xd9\xbc\x89\x40\xcb\xb9\x32\x4f\x0c\x5d\x67\x41\x8b\x64\xf6\x2a\x9d\x75\x20\xac\x7b\x5f\x10\x3e\x77\x6c\xd6\xe6\xcb\x5a\x15\x24\x2d\xfb\x98\xc0\x74\x7c\xd6\xed\x30\x0d\x22\xdc\xc8\x8c\x52\x4b\xf0\x3e\x47\xe0\x0d\xdf\xfc\xd3\x8b\x15\xc9\xc2\x29\xd7\x25\x0f\x66\xba\xb1\x08\x05\xef\x0e\xf5\x1b\x1f\xf1\x27\x14\x09\x45\x44\x1c\x35\xf7\x24\x14\xea\xc4\x78\x4f\xfa\x60\xc4\x42\x88\x9f\xdd\x5d\xce\xfb\x1e\x04\xbe\x9e\x1c\x3b\xa5\x19\xc2\x84\x53\x02\x73\x1e\x65\x4e\xad\x27\xc4\xbc\x3f\x7f\xee\xe5\xe2\x23\x2c\xb4\xe4\x2f\xda\x48\xb9\xf1\x84\x43\xbc\x6e\x1f\xdd\xb3\xb6\x10\x16\x8e\xcc\xd0\x16\xb3\x78\xc4\x42\x58\x84\x8b\x73\xc4\xcf\x74\x42\x4d\xc9\x74\xbe\x7b\xc6\xe5\x84\xdc\x49\xe5\x3b\xfa\x75\x73\x09\xd2\xc9\x02\xc9\x02\xf6\x87\x58\x70\xda\x78\x53\xc6\x66\x4a\x25\x41\x51\x26\xf9\x70\xda\xc1\xd3\x84\xac\x5f\xda\x5d\x07\xfa\x1e\x13\x6a\xf3\xf6\x7e\x79\x9a\x59\xc8\x82\x2a\xff\x87\x0c\x41\x27\x25\xc2\xf4\xb3\x93\x53\x43\xb8\x45\x09\x72\xf7\x0d\x5e\xaa\x4f\xbb\xce\x82\x5c\xb6\x67\xda\x5f\xc5\x57\x84\x2d\x2b\xd6\xba\x28\x2f\xe8\x26\x44\x89\x05\x18\xc4\x3a\xbf\x24\x44\x77\x1e\x52\x9b\x68\x5e\x4a\x58\xb5\xb7\xfc\x87\x4b\x56\x2d\x0b\xb1\xa7\x1e\x89\x74\x6c\xaf\x2e\xc5\x09\x9f\x17\x25\x77\xde\xcf\xa4\x71\x78\x4f\xaa\x64\x2d\x9d\x29\x44\xd8\x72\xcd\xfd\xee\x5d\x8f\xab\x04\x39\x1d\xe7\xe0\xf4\xf2\x38\xc2\xd0\xf9\x69\x41\xee\x0e\xe1\x2c\xe8\x04\xc8\x5c\x36\x3a\x77\x95\xa0\x17\x73\x71\x4d\x49\x71\x13\x21\x64\x7f\xfa\x3a\x61\x79\x59\xc2\x6f\x85\xaa\xae\xac\xd1\xe9\x84\x9f\xaf\x12\xd3\xd6\x65\x4b\x11\xd2\x6f\x5d\xfa\xd0\x36\x54\xc9\x82\x3f\x9f\xe0\xac\x7a\x19\x71\x82\xc3\xa4\x8f\xa1\x7f\x55\xd6\x13\xb6\x73\x99\x5a\x3b\xfc\x2c\x21\x64\x14\x6b\xc8\x27\xd4\x49\x11\xfa\x7f\x5d\xb7\x76\x5a\xa4\x43\x78\x3e\x45\xef\xf3\x91\xe4\xb1\x73\xd1\xca\xab\xf6\x6e\xda\xa7\x09\x7f\x17\x7f\x98\x3d\xff\x75\x0e\xe1\xad\x59\x8e\x94\xe8\xe6\x50\xc2\xb7\xeb\xbb\x34\x7f\xff\xf0\x65\x61\xd9\x27\xf5\x8b\x4f\x37\xcf\x23\x74\x28\x0b\x2d\x74\xe1\xbb\x4b\x30\xea\x3d\x10\xbd\x47\xb9\x91\x01\x78\xf7\xac\x0e\xfb\x55\xcf\x40\x22\x9b\x13\xd3\xc2\xb7\x11\x26\xc7\xf6\x95\x4e\xda\x53\xc1\x40\x7f\x5d\xfc\xf4\xfa\xd5\x75\x0c\x6e\xde\x3d\xfb\xf3\xf4\x1b\x2e\x82\xb7\xaf\x42\xf1\x23\xd5\x37\x0c\x76\x9c\x16\x0e\x10\x8d\x73\xa2\x71\x54\xbf\xf7\x8a\xf0\x2e\xfe\xc6\xa0\x48\xe9\x77\xc6\x5a\xf9\x76\x06\x06\x23\xb9\x7c\x39\x75\x0b\x09\x26\x72\x93\x26\x28\xf7\xcf\x27\x6c\xd0\xd8\xfc\x68\xba\x43\x4f\x29\x86\xbf\x28\x1f\xf1\x5b\x27\x48\xb8\x7f\xb0\x78\x5a\xcd\xa3\x39\x04\x49\x7f\x8e\xd0\x1a\xa3\x3f\x0c\x9e\x7a\x59\x6d\x3f\xe2\x6f\x4a\xd0\xb8\xb8\x49\x2d\x40\x6c\x33\xc1\x87\x4b\x60\xf2\x02\xdd\x10\x36\xac\x3a\x55\x90\x9c\x25\xba\x86\x90\xab\xee\x7b\x41\x89\x59\x4a\x20\xe5\x86\xd5\xef\xa5\xd6\x10\xbc\x2f\x5e\x0f\x6f\xdb\x65\x49\x48\x97\x3f\xaa\xb3\x24\xb7\x82\xd0\x7a\x28\xdf\xa5\xfa\x59\x05\xc1\x2a\xb6\x0e\x9d\x95\xe5\x84\xda\x8c\xef\x15\x35\x63\x45\xaa\xf1\x9b\xc5\x20\xd2\x09\x2e\x11\xe2\x53\x9b\x9f\x3e\x21\x44\x69\xfa\x95\xa5\x59\x5f\x27\xb8\xd3\xb4\x0d\x65\x5b\x6b\x09\xc5\x2d\x6b\xd6\x27\x5c\xbd\x45\x98\x98\x8d\xb6\xdc\x1f\xe5\x84\x86\x75\xfe\x49\xbb\xfd\x3a\x08\xd9\x9c\x8e\xcf\x72\xf2\x9a\x08\x1b\x4e\x69\xe9\xfc\xbb\xe6\x2d\x42\x6a\x07\x54\x5d\x08\x35\xcb\xaa\xac\xb3\xda\x9c\x08\xfe\x16\x5a\x35\xe7\x89\x61\x61\xbf\x48\x7e\xc9\x9c\x8f\x59\x84\x2b\x8f\x7e\xee\x1c\x51\xd1\x25\xbc\x3e\xb3\x6e\x3a\xf2\x67\x11\x2a\xae\x4c\x5f\x62\x32\x94\x4b\x98\x5f\xe0\x9f\x37\xa4\x77\x83\x20\xff\x49\x6a\xc5\xbf\x52\xe2\x28\x20\x37\x9c\xbd\x9a\x0d\x42\xf3\xab\xd3\xe7\xae\x2d\x22\x04\x9e\xfd\xf1\xd3\x55\xe2\x1e\x6b\xbc\xcc\x8c\xdf\xb9\x6a\x62\x7b\x1a\xe1\x6d\xc9\xdf\x6e\x6d\xe1\x2a\x82\xf3\x9b\x66\xe1\xfd\xae\x8b\x09\x93\xd7\x48\xf5\x64\x27\xe6\xb1\x70\x66\x13\x47\x9d\x7f\xe5\x49\xd6\xf8\x35\x93\x1e\x78\xff\xe8\x33\xba\x49\x78\x99\x59\xf6\xb0\xeb\xc0\x3d\x42\xbe\x72\x08\xcf\xaf\xed\xf7\x08\x07\x6b\xa4\xb8\x4c\xe3\xd3\x09\x5f\xb6\x6d\xe6\xc9\xa2\x1c\x02\x7f\xf5\xa8\x9c\xbb\xf8\x3d\xb6\x8b\x15\xdf\x6e\x95\x3d\xe7\xa8\x46\x78\xb4\xbb\xc4\xf3\x73\xe7\x0c\x42\xed\x99\x83\x4e\xbf\x5f\xe9\x10\x72\x7d\xf7\x5e\x7f\x62\xe4\x41\x58\x76\xf4\x75\x29\x77\x64\x1c\x61\x7e\x83\x79\x45\x61\x94\x05\x01\x53\xfd\xa4\x2f\x9f\x2c\x27\x78\x4d\xba\xfc\xe0\x50\x8f\x1e\x81\xdf\x42\x2b\xe8\x96\x56\x1d\x61\x83\xac\xd2\xd5\x23\x29\x85\x04\xa1\x40\xd1\x9c\x57\xea\x26\x84\xbc\xf5\x1e\x2a\xaf\x7a\x27\x11\x2e\xf3\xd9\x47\x1e\x9f\xf0\x91\x41\x4f\x42\x75\xac\xf0\x9d\x3f\x0c\x22\x42\x23\xd4\xf5\xcf\xed\x25\x2c\x9f\x6c\x6b\x1f\x75\x7d\x02\xe1\xef\xc8\xfb\xf0\xb9\x3b\x12\xd8\x70\xd6\x84\x67\x7a\xc0\xdb\x19\x84\xd7\x22\x13\xc4\x56\xf1\x5b\x11\x66\x79\x5c\x1e\x11\xff\xc0\xcb\x86\xdf\xbb\x37\x3c\x33\xde\xf4\xa6\x14\xbf\x83\x4c\x39\xbf\xde\x75\x20\x94\xed\xbc\xb9\x49\xf6\x76\x35\xc1\x67\xb4\xb9\x74\x76\xf1\x1b\xc2\x7c\x59\xc7\x82\x39\x4e\xad\x84\xe7\x8f\x93\xf7\xc8\x8f\x2d\xbd\xfd\xce\x55\x79\xf1\x49\x34\xa1\xf5\xea\xce\x29\x41\xda\x17\x09\x26\x3a\x2e\xf0\xfb\x60\x46\xf8\x13\xa6\xa9\xbe\xfa\x9c\x06\x61\xab\x16\x6b\xe9\x1f\xd7\xcd\x84\x85\x03\x9f\x8a\xfe\x66\xd5\x13\xac\x2f\x5e\x93\x1a\x31\x3b\x4a\xd8\xb8\x61\x6a\x97\xdc\x4c\x43\x82\x49\x68\xf8\xe2\x7b\xb1\x0d\x0c\xe6\x28\xff\x3e\xfb\x68\x82\x1d\xa1\xf8\x83\x6d\x40\x66\xab\x21\xe1\xed\x99\x93\x45\x87\x34\x5a\x18\xb8\xf3\xc8\xbc\x74\x3a\x27\x45\x50\xd2\xbd\xac\x57\xc9\x11\x41\xb8\x2b\x30\x4b\x33\xb8\x45\x98\x0d\xbb\x52\xa4\xfd\x43\x65\xf7\x10\x7a\x46\x5e\xbb\xca\xd6\xf0\xb2\xe1\xc0\x7c\x59\xee\xc3\xdb\x17\x13\x9a\xa7\x5d\x1f\x19\xfe\x7a\x89\x05\xdb\xae\xdf\x5e\x8b\xdd\x2c\x08\x6e\xa6\x4c\xa1\xc7\xc2\x55\x04\xb7\xd2\x98\xc2\x67\x7b\xf7\x13\xd6\x45\x0b\x05\xfb\xca\xbf\x65\xc6\xb1\x63\x77\x5b\xe6\xd9\x2b\xd9\xa5\x58\xc0\x3d\xa9\xc3\xfa\xf4\xd3\x52\xf8\x15\xaf\xf9\x7e\x4b\x52\x85\x50\xb3\x9d\x7b\x9d\xae\x45\x1e\x0b\xe9\xb1\x27\xb5\xf2\xc7\x8a\xd5\x51\xde\xc0\x26\xe1\xef\x0c\xa4\x27\xfd\x0a\x52\x73\x32\x26\x70\xb9\xf0\x6f\x7b\x3a\x63\x2a\x1b\x38\x96\xac\x70\x5d\x1b\xcd\xc5\x86\xd1\x7d\xe7\x73\x13\xf3\x7a\x18\xf4\xb7\xe8\xce\xf8\xb0\x62\xec\x9f\xba\x74\x9e\xdd\x91\xa3\xdc\x04\xde\x8d\x91\x1f\xdc\xf7\x8e\xdd\x30\xf3\xec\xe9\x90\x15\xeb\x08\x9f\xa6\x1e\x6f\x94\xb3\x92\x67\x83\xce\x7b\x26\xe1\x9d\x69\x57\x29\xac\x5f\xec\xb5\x2e\xba\xe6\x4b\x08\xe8\x68\x8f\x1d\x30\x92\x22\xf8\x5e\xe0\x76\xf7\x98\x2b\x4a\xb0\xfd\xf4\xbb\xec\x5e\xdb\x52\x82\xfe\x62\xeb\xfe\xd4\x53\xfc\x6c\x38\x2e\x9c\x10\xbc\xde\x78\x2a\xa1\xbc\x70\xa2\x93\x71\x30\x07\xc1\x24\x32\x6c\x47\xac\x95\x1a\x61\x49\xa7\x6d\xc3\x81\x4b\x57\x09\x75\xd9\x0e\xdf\x2d\xa6\xa4\x10\x32\x32\x36\xf1\x0b\xee\x15\x24\xec\x9e\x28\xbb\x43\xcb\xe4\x0b\x03\xa3\x24\x3f\xbf\xa0\x9d\xef\x19\xec\x0b\xda\xe0\xb1\x55\x5b\x9d\x60\xdb\xfe\xce\x7f\xae\xbc\x1c\x41\xf7\x40\x40\xeb\x0f\xa5\x25\x04\x17\xef\xf9\x39\x4f\x34\x05\x08\x7f\xfc\xf7\x1d\xde\x75\xc8\x9e\x85\x5f\xaf\x5b\x45\x76\xea\xc5\x10\xd6\x04\xc6\xce\x6d\xaa\xaa\x22\x3c\x9f\xd3\xec\xc4\xa4\xcb\x10\x8a\xe4\x44\xbe\x6c\xe6\xe0\x20\x6c\x71\xcf\x8e\xb2\xff\x30\x36\x32\x3c\x38\x3d\xd1\x4e\xec\x36\xe1\xa9\xf9\xc7\x29\xfa\x8a\xa5\x84\x39\x72\x1e\xa7\x9f\x49\x97\x11\x78\x3b\xaa\xd4\xb4\x7f\x68\x10\xf8\xaf\xcd\xee\x94\x6b\x17\x27\xd0\xfc\x90\x57\x8a\x81\x17\x08\x22\x4f\xb8\x9a\x1c\x93\x94\x09\x27\x06\x5c\xf7\xae\x8b\xda\x40\xd8\x74\xf4\xab\x57\x99\x84\x12\x0d\xf9\x72\x6d\x2a\x4d\x12\x26\xe4\xe5\x75\xbb\xf1\xfe\x9e\x47\xb8\x1e\xff\x60\xd8\xfb\x4c\x03\x83\xea\x0f\xbf\x32\x7f\x5a\x4a\x13\x56\xfc\xdc\xe6\xa8\x32\x63\x2b\x0b\xd7\x8b\x5f\x2b\xea\x3e\xfe\xc1\x40\x53\xd4\xd7\x2a\x7e\x49\x39\x21\x43\xda\xd5\xfd\x94\x56\x19\xc1\xf9\x6b\x61\xd2\xbf\x72\x09\x09\xa2\xcb\xbe\x9f\x23\x0c\x2d\x89\xff\x70\xa5\x3e\x94\xb0\xa3\xe2\xf0\xcf\x1a\xe1\x5b\x6c\xf0\xd5\xff\x32\xc0\xa7\x5e\xcb\xc2\x59\x35\xab\x07\xff\x4a\x88\x1c\xb7\xf7\xad\xb4\xdd\x6c\x58\xb9\x6e\x7d\x85\xe0\xd4\x60\xb6\x62\x74\x3b\xde\x6b\xe2\x16\x35\x82\xc0\x96\xc5\x49\x9b\xef\x27\x10\x0e\x75\x3f\x3d\x1f\x32\xe3\x17\x33\x0e\x37\x95\x0d\xa5\x06\xd1\x19\x0c\x32\x74\x7c\x97\x72\xbc\xaf\x61\x70\xa9\xf0\x92\xc0\xf3\xa7\x5c\x84\xc1\x24\x53\xf5\x56\xfd\x6c\x42\xdb\x56\xd5\xa4\xa6\x17\x6d\x84\xd7\xb1\xa7\x26\x88\xdf\xbe\x4e\xb0\xac\x6a\x48\x9c\xf8\x43\x9d\xf0\xfc\x41\x4e\xa2\xc4\x51\x19\x42\x62\x57\xc1\x73\x87\x8d\x9e\x84\xcf\x89\xa9\x41\xad\x66\x2d\x04\x0f\x9e\xb5\x0a\xb6\x6b\x5a\x08\xd3\x37\x5a\xfc\x9d\x5f\x50\x43\x88\x4c\xd2\x78\xde\x16\x5d\xcd\x02\xb7\xcc\xd5\xb0\x7f\x4b\x4b\xd7\x70\x84\x70\x9e\xf6\x25\x0c\x7c\xee\xf3\x19\x28\xd2\x22\xe8\x05\x0c\x37\x2e\x3e\x76\x90\xd0\x5e\x54\x66\xe7\xb9\xdf\x8b\xf0\x70\xd1\x60\xcc\xcd\x4d\xbb\x09\xe1\x3f\xba\xa2\x25\xe2\x3c\x09\x27\x9d\xa7\xb5\x4c\xea\x4b\x24\xc4\x6b\x8b\xfa\xac\x9e\x98\x44\x70\xfe\xae\xfc\xb0\x58\x7d\x0a\x61\x49\x84\x70\x9a\x5e\x48\x67\x29\x92\xc2\x02\x24\x2d\xf9\x6d\xe8\x3f\x60\xff\xbc\x78\xd8\xb1\xb7\x95\xc1\xf0\x86\x07\xdb\xdd\xf4\x7c\x08\x7b\x53\x4e\xf8\x54\xcf\x30\x27\x74\x6a\xf6\x1b\x5f\x53\xd6\x22\xf8\x75\x3d\x5a\x22\x7c\x2e\x9b\x05\xbf\x16\x0d\xd1\x0d\x51\xdb\x68\x1c\xa6\x2f\x96\x65\x4e\x08\x9c\x49\x10\x09\xfc\xe4\xe4\xd7\xaa\x40\x70\x1e\x88\x28\xbb\xa4\xe0\x41\x48\x3e\xcf\xab\x76\x23\x49\x8e\xd0\x18\xf8\x33\xe6\x7b\xf9\x00\x83\xed\x3e\x4f\xf6\x6f\x8f\x4f\x60\x41\x52\xcb\x78\x70\x86\x75\x29\x0b\x35\x36\xfd\x53\x2f\x24\xab\x10\x72\x96\xfe\x1c\x34\xbf\xf6\x98\x20\x7f\xe8\x42\x6e\xaa\xee\x7d\x42\xf9\x9d\xf3\xf5\x5e\x8a\xc5\x84\x6b\xd6\x83\x19\x82\x57\x0b\x08\x79\x31\xce\xdb\xb7\xd4\x3f\x65\xa0\xed\x11\x3d\xec\xe5\xdf\xce\x06\x59\x1b\x93\xf9\xab\x6e\x4d\xa3\x71\x18\x08\xf1\x34\xbd\x53\x5b\xc6\x06\x73\xeb\x4f\x7e\xdb\x23\x6b\x18\x4c\x7a\x9b\x69\xf6\x7b\xb4\x81\xd0\xf0\x4e\xa4\x61\xa9\x80\x1e\xe1\xa9\xe5\xe4\x2d\x26\xde\xe5\xa5\x68\x6c\xbb\xc8\x1a\x55\x57\x24\x94\x76\x4c\x63\x9d\xd1\x59\xf6\x5f\x88\xff\x79\xe3\xbc\x83\xea\x83\x52\x38\x98\xdd\x56\xb2\x4e\x1c\x62\x30\xb0\x24\xcd\x75\x8e\xd8\x06\x1a\x47\x33\xd7\xc7\xac\x4f\x73\x2a\x4a\xf1\x21\xaa\x6f\x72\xca\x55\x0e\x82\x82\xda\x79\xee\x8d\xb2\x06\x6c\x98\xe7\xda\xea\x10\x7f\xa3\xbd\x14\xa9\x8a\xad\xdf\xa2\xb6\x09\x13\x58\xff\x0f\x23\x7f\x1a\x4d\x85\xfb\xfe\x71\xdf\x24\x1a\x55\xa4\x0c\x19\x12\x99\x55\x64\x56\xfb\x40\x25\x43\x86\xc8\x2c\x32\x46\xa1\x22\x43\xa5\x49\x28\xa4\x92\x52\x42\x19\x52\x1a\xcc\x94\x29\xdb\xd4\x48\x2a\x99\x2a\x24\x4a\x4a\x45\x84\x8f\x52\xee\xe5\xfb\xe0\xc7\xbd\xee\xff\x7d\xad\xeb\xd9\x6b\xbd\x0f\xcb\xda\x4f\xce\x73\x1f\xe7\x93\xfd\xf5\x99\xcd\xbd\x1b\x5b\xa6\x21\xca\xf9\x13\x5b\x5a\x26\x2b\xc1\x63\x1e\x55\xc5\xcc\xdc\x48\xe8\x7a\x1c\xb5\xab\x62\x8c\x97\xa0\xbb\x5b\x37\xfc\x54\xc4\x00\x63\x0a\x3b\xf6\xaa\x68\x8a\xd4\x31\xe8\xff\xc0\xf7\xbb\x9a\x07\xcf\xb4\x73\x10\xee\x87\xdb\x2d\x7f\xe2\xca\x39\xad\xfc\x0f\x06\x86\x0f\xeb\x7f\x76\x36\x97\x23\x6a\xfc\x2e\xcb\x9c\x11\x53\x42\x4c\xc6\x8a\xb6\x1e\x62\x12\x7e\x27\x75\xa5\xb2\x19\x57\x12\xde\xb4\x06\x5e\x0e\x3f\x5d\x41\x38\x5b\xaa\x3a\xf1\x5f\xb1\xe3\x5e\xfb\xeb\xc6\xc1\x42\xc2\xb6\x88\xbc\xa0\xdd\x57\x2e\x13\xea\x78\x35\xc5\x2b\x74\x12\x08\xb3\xca\x77\x6e\x5e\xb5\x2f\x8f\x89\x6a\x25\x06\x97\xef\xdd\x04\x02\xd2\x17\x77\xef\x9b\x44\xd3\x82\xdf\xef\x24\x8a\x0a\x98\x28\x99\x9d\xaa\x85\x05\x05\x04\xbd\x45\x52\x31\x7c\x5b\xcb\x08\xff\x2e\x9f\xe0\x78\xcc\x51\x44\xd0\x11\xfb\x2e\x3f\xe3\xce\x7d\xc2\x2d\x43\x8b\xa4\x9f\x01\x15\x04\xb6\xce\x24\x81\x32\x81\x74\x02\x47\xe4\xea\x1a\xff\x23\x99\x84\xbe\x83\x97\x97\x2c\xdb\xdf\xc7\x40\x12\xc3\x5e\x5e\xfb\x6c\x31\x13\x19\xa3\x85\x0c\x61\x8f\x06\xc2\x9b\xf3\x6e\xc2\xd1\x19\x35\x84\x3f\xc5\xe5\x3d\x5e\x6d\x85\x84\x43\xd9\x6f\xfb\x85\x36\xd5\x10\x12\xcc\x6f\xc9\xba\x27\x73\x10\x1a\x4c\x1a\xac\x2e\x6e\xfe\xce\x98\xc2\xdb\xe6\x97\x2f\xcf\x8d\x0f\x30\xe0\x3f\x76\x3a\xbf\xd5\x3b\x93\x09\x55\xb9\x7b\xe6\x66\xf1\x6d\x84\x91\xdd\x7f\x4a\xf3\x26\x57\x36\x7b\xbf\x2f\x2b\x7e\x5d\x6c\x23\x98\x1c\x35\x3a\x96\x9e\xe2\x44\xd8\xe7\xec\x62\x93\xf0\x2e\x85\xa0\x39\xdf\x26\xfa\x68\xbd\x2c\x13\xbf\x1e\x5c\x8a\x4e\x0d\x75\x27\x1c\xb3\xaf\x31\x3f\x6e\x79\x82\x90\xa9\x1b\xd1\x90\x2c\x51\x4c\xc8\x9d\x31\x98\xa0\x09\x97\x69\x30\x8d\x39\x1b\x6c\x73\x54\x8e\x30\x2b\xb6\x52\x99\xe5\xe5\x49\xc2\x8c\xb5\xd6\x7a\xad\x55\xa9\x84\x55\x7f\xb2\x8e\xb5\x87\xec\x26\xec\xbd\xb4\xbe\x39\x6f\x44\x93\xf0\xe0\xf5\x95\xd9\xb6\x3f\x43\x99\x88\x08\x70\xde\xfc\xf3\xbd\x14\x81\xeb\xdb\xa2\xc8\x5d\x19\xc3\x4c\xfc\x32\x76\x70\x38\xbb\xec\x21\xe1\xd3\xe8\x95\xb3\xef\x26\x51\xe8\xde\x9e\x15\xb9\xad\x8a\x70\xd7\xe0\xd2\xf1\x84\xc4\x0a\x82\xe0\xb3\xef\xae\xf9\x2c\x37\x09\x11\xbf\x63\xbf\x59\xff\x89\x23\x5c\xe1\xdb\xba\x58\xea\xcc\x4b\x26\x4e\xac\xee\x0d\xab\x72\xbb\x44\xd0\x35\xb5\x2c\xfd\xa1\x90\x4c\xf0\xb3\x32\xe6\xf8\x28\x18\x4b\x18\x8a\x7c\x2e\x75\x80\xdb\x9e\x10\x23\x7d\xfa\xdc\xf8\xdd\x34\xc2\xab\xeb\xc7\xb7\xae\x79\x6f\x4d\x90\x49\xe9\x75\x94\x29\xd3\x67\xe2\xab\x77\x8c\x73\x20\xef\x0e\xc2\xca\x67\x5b\x3f\xea\x74\x7b\x13\x8e\xfd\xb8\xb7\xe5\xb7\x4d\x12\x13\x4e\x1b\xb9\x43\x86\x16\xd6\x12\x58\x2b\x6b\x1a\xb4\x2c\xf2\x08\x2a\x8a\x57\xae\xff\x87\xff\x15\x0e\xf3\x59\x27\x44\x8f\xfb\x11\x4e\xad\x35\xd7\x64\x39\xe8\x44\x78\xd5\x52\xf4\xd1\xdb\x76\xdf\xb4\x72\x26\x68\xa3\x49\x9a\xd5\x49\x82\xe3\x62\xae\xbd\x5d\xde\x6b\x09\x9a\x77\x0a\xd4\x78\x57\x19\x12\xb2\x33\x35\x1f\xf7\xad\x1d\x62\xa0\x6a\x5d\x27\x33\xe8\x5b\x2a\x4d\x61\xbd\x61\xd8\xa1\x48\x33\x1b\x02\xaf\xc9\x4a\xf9\x9d\x79\x9a\x04\xd5\xbb\x5c\x63\x07\x1b\xdf\x31\xa6\x60\xfe\xe0\x51\xfe\xe0\xe4\x37\xf6\xb6\xa5\xd1\xe7\xbb\xaf\xb2\x12\x12\x5e\x7e\xe2\x18\xf9\xde\xcd\xc0\xb7\xec\xf4\x5d\xbe\x99\xcf\x19\x30\x9c\xa7\x7c\x53\xc5\x77\x1b\x81\xb3\x72\x50\x9c\x39\xc2\x47\x78\xd8\xbe\xa1\x40\xe1\x69\x1a\x21\x85\x91\x31\xcb\xfa\xd8\x0e\xc2\x52\x44\x5b\x44\xed\xb3\x9d\x56\x72\x67\x5a\x9a\xb7\x97\xf2\x11\x8c\xf2\x6e\x57\x7c\x9d\x2f\x4c\x38\xfd\x6a\x77\x44\x78\x06\x07\xc1\x77\xcf\xb6\xfb\xfb\x7c\x3e\x33\x10\xd1\x72\x33\xa6\x5d\xae\x6b\x1a\xce\x84\x1e\x5d\x79\xfa\xa1\x06\x61\x9d\xf0\x92\x5d\x96\x75\x47\x08\x5c\x5b\x8d\x3d\x7b\x79\x53\x08\x36\x77\x5f\xc4\x8c\xda\x3d\x24\xe4\xfc\x0e\x97\xd9\x99\x3d\x9b\x50\x1f\x5d\xa3\x7c\xa7\x95\x63\x1a\x1a\xb7\xaa\xfc\x9e\x67\xdc\xc8\xc0\x46\xde\xb5\xb9\xa7\x52\xb4\x08\x7a\xdc\xca\x0d\x37\x02\xac\x08\x27\xd8\xf5\xfa\xf9\xb4\xc5\x09\x6b\x45\x25\xcf\xdc\x58\x3a\x83\xf0\xe6\xb0\xfd\x5d\xff\x99\x13\x0c\x38\xa8\x15\xff\x63\x33\x73\x26\xac\xbf\x3f\x5f\xcb\xc8\x50\x92\xb0\xa9\x62\x65\xf3\xdb\xc0\x51\x06\xd2\xcd\xae\x2d\xaf\xe7\xe5\xa6\x29\xfc\x12\xd8\xe0\x73\xba\xe2\x69\x39\x8a\x1f\xf9\x06\x6d\x59\xa1\x4d\xe0\xce\x29\x08\x32\xf3\x79\x49\x58\x74\x5f\x30\x88\xb5\x2f\x80\x10\x1c\xff\xc7\xa4\x51\xe1\x18\x81\x6d\xa0\xad\xa4\xc2\x43\x83\x89\xc6\xda\xaf\x9a\xf5\xeb\x8c\x09\x3a\x6b\x6f\x19\xac\x94\xf0\x24\x3c\x91\x50\x9f\x30\x97\xb1\x25\xac\x2d\x5b\xf0\x33\x74\x30\x8f\x81\x79\x92\xeb\x93\x9b\x26\x5f\x30\xda\x97\xb9\x7d\xff\x43\x03\xd7\x56\xc7\x3b\xeb\xb3\x69\x6a\xf4\xf1\xdb\x93\x65\x1b\x0b\x77\xfc\x3f\x62\xdb\x0a\x05\x23\x39\x4d\x25\xc2\xa2\x7b\x39\x07\x0a\x9a\xcd\x09\x2e\x4e\x7a\x5b\xe4\x97\xaf\x27\x78\xb6\xbe\x58\xcc\x32\x67\xc6\x34\x1c\x90\x6d\xde\xd7\xb4\x74\x3e\x21\xe7\xd3\xf7\xa5\x8f\x55\x0a\xa6\x95\xd6\xf3\x2c\x3d\xfa\xeb\x87\x19\x53\xf0\xf9\xa9\x5e\xb5\x60\x29\x27\x4d\xc1\x6d\x8b\x38\xf3\xad\x8a\x3b\x21\x94\x2f\xe9\xce\xf8\x82\x06\x06\x6a\xf7\x49\x04\x9e\xe6\x32\x23\x78\xd5\x27\x86\xab\xf1\x69\x11\x1a\xf6\xf3\x28\x96\x88\xb0\x10\x4c\x1d\x33\x97\x76\x65\xba\x12\xc4\x2d\x44\x1e\xc8\x55\x69\x4e\x83\xe8\x0b\xf9\x04\xe5\x3d\x5d\x0c\xbc\xd1\x4d\xee\x0b\xd6\xf1\x20\xbc\xf7\x54\x0d\x41\x88\x03\x61\xf3\x1c\x79\x87\x25\xc3\x66\x84\x43\xc6\x36\xa9\x31\x61\x1b\x08\xf5\x7b\x8e\x76\x3e\x1b\x76\x26\x18\xf2\x1e\x38\xc1\xa5\xe4\x4c\xa8\x13\x31\x55\x6f\x48\x97\x22\xbc\xbb\xe7\xd6\xb3\x32\xd8\x86\xd0\xd9\x57\xdf\xb9\x31\x57\x97\xc0\x16\x37\xbc\x69\x51\x24\x17\xc1\x20\x67\x95\x0b\xfb\xb5\x3b\x4c\xac\x67\x15\x77\x31\xd9\xba\x97\x09\x4d\x03\xbd\xd8\x5d\x62\x7e\x84\x37\x8b\xb9\x73\x47\x0b\xdc\x08\x5d\xfb\x03\x04\xf6\x0f\xb0\x10\xe6\x06\x6c\x18\xf5\xda\xb1\x97\x10\x70\xab\x4a\x63\x28\x5c\x67\x1a\x12\x63\x67\xdd\x1d\x6a\x69\x22\x20\xe7\x4c\x76\x25\xcb\x23\x02\xd3\xb4\xed\x6d\xd4\xaa\x72\x42\xd0\x5e\x97\xf8\x30\x9f\x3a\x26\xda\x2c\xec\x0e\x46\x4f\x96\x99\xb2\x42\x83\x96\xb6\xbe\x84\xa2\x18\x93\x1f\x46\x97\xf6\x13\xf4\x77\x9f\xd4\xd8\x5d\xc2\x3e\x0d\x6e\xbb\x9e\xbd\x5a\xa2\xf2\xb6\x1c\xa9\x2f\xef\x89\xfe\x0d\x96\xa4\x29\xa8\x05\x1d\x90\x2d\x13\x64\xfd\xbf\x60\xbf\xec\xa5\x94\x62\xdf\xf9\xff\x0b\xf2\x47\x94\x96\xb3\xf9\x94\x13\x5c\x35\xc6\xab\x17\xf5\x24\x13\x92\xff\xb4\x15\x65\xfc\x19\x60\xa0\x8b\xfb\x23\x33\x6e\xce\x52\x82\x6a\x4a\xd3\x39\xe7\x88\xbb\x84\x38\x23\x8b\x65\x2e\x93\xd8\xe8\xed\xfe\xed\x98\xe5\x3f\x06\x0c\x03\xef\x77\x9a\xec\xbf\x52\x0e\xcb\x50\xa3\xeb\xaa\xea\x92\x84\x7f\x1e\x69\xdf\xda\x17\xd8\xd2\x54\x89\x63\xf3\x9b\x27\x3a\x7f\x36\x41\xb4\x79\x46\xf4\xd3\x87\x7c\x04\xf7\x07\xcf\x6f\x7d\xba\x5b\x4a\x48\x5c\x95\x76\xe8\x3f\x0c\xcb\xad\x11\xd9\x25\xb9\x9c\x70\x35\x75\xec\xcd\xd5\x34\x6b\xc2\xa2\xbf\x85\x03\x35\x03\x16\x04\xdb\x07\x0f\x7f\x33\xc6\xc0\x40\xd3\x81\x97\x0b\xaf\x1e\x1a\x67\xe0\xcc\xf1\xdd\xdf\x99\x21\x86\x34\x05\xe7\x94\x45\x8e\xaf\xcd\x25\xa6\x21\x89\xf3\xdb\x5f\xce\x6f\x72\x84\x4d\x2d\x75\xad\x95\xdd\xaf\xca\x21\x2a\xfd\xa3\x3f\x82\x43\x9e\x40\x5b\x3e\xfe\xa8\xab\x1c\x64\x40\x69\xf5\xf1\x1c\x95\x78\x49\x9a\xc2\x75\xed\xd1\x88\x45\x99\xff\x18\x88\x5d\x11\x10\x6c\xf5\xb4\x96\x70\x2f\x2c\x69\x5f\x93\x7c\x19\xc1\xca\xfb\xf4\x1e\xc5\xba\x00\x82\xd9\x59\x85\xbf\x59\x4d\x47\x09\x5f\x8b\x32\xed\xfd\xeb\xfd\x09\x1d\xcc\xa6\xaa\xed\x51\x5a\x84\xaf\xa7\xf6\x69\xef\x59\x6b\x4e\x08\xdd\xe7\x63\xfd\x85\x7d\x31\xe1\x48\xbd\x44\x4d\x7b\xcf\x7b\x06\x44\xb6\x6e\x32\x62\x31\x5e\x46\x58\x11\x20\x60\x77\x80\xfd\xf8\x34\x84\xbf\xd2\x11\xcb\xd6\x74\x20\xf4\x86\x0d\xb3\xad\x99\xc9\x42\xa8\x8a\x38\x9d\x2d\xb0\x48\x8a\xf0\x6c\xc0\x23\x7c\x44\x86\x97\x70\x3f\xe1\xc5\xab\x4f\xfc\xb7\x09\x2b\x14\xf2\x1e\x1d\xfd\x94\x41\x58\xf2\xaf\x75\xd7\xa5\xfe\x93\x04\x85\x42\x9e\x1f\x4f\x6a\x8e\x31\x31\x27\x7a\xc9\x85\xe7\xb7\xe6\x12\xf8\x47\x42\xe2\x6e\x26\xf3\x12\xf6\x15\x9a\xd4\x05\x37\x70\x11\xe2\x2f\x3b\x98\x39\x1e\x5f\x4e\x50\xe0\x3b\xa1\xa3\x6a\xa0\x4d\xf8\xa6\x36\x33\xf0\xc2\x4c\x5b\xc2\xf9\xcd\xef\x37\xbe\x29\xbd\xca\x84\xdf\xf5\x97\x2d\x0f\xd9\x2c\x08\xc2\x01\xbc\x4f\x33\x7f\xdb\x13\xd8\x29\xc4\x5c\x31\x3f\x89\x89\xed\x77\xbb\xda\xdd\xfc\x4f\x11\xf4\xde\x5c\xd1\x2b\xb4\xcf\x27\x1c\x0a\x7a\x2c\x7e\xfb\x85\x38\xe1\x64\xc8\x50\xcf\x44\x33\x1f\xe1\xec\xd7\x63\x23\x3f\xb4\x9e\x97\xe3\xed\xc2\x87\x2f\x6a\x9c\x73\x09\x61\x8b\x7a\x8f\x9a\x6b\xb7\x30\x21\xf2\x8b\xf7\xf4\xe0\xd6\x5c\x9a\x1a\xad\x11\x3e\x3f\xbe\x6b\xcf\xe4\x4b\x7a\xff\xed\x88\xbe\x73\xdb\x08\x6b\xb8\xab\xe2\xca\xc2\x77\xfd\x5f\x70\xdd\x9d\xd0\xb2\x4f\x7b\x0b\x61\xfd\x31\xa5\xb3\xf6\x33\xc5\x09\x85\x19\x33\x45\xfe\x96\x58\x10\xe6\x2d\xe7\xaf\xad\xd5\x9b\x60\xc0\xb2\x8c\xb7\x39\x6c\xc9\x46\x9a\x42\xef\x79\x56\x9d\xf5\xfb\x6f\x95\xa3\x2d\x29\x76\xf8\xd6\x95\x72\x42\x70\x5f\xd9\xa7\xac\xc9\x17\x9e\x98\xe2\x5b\x35\xe6\xe9\x99\x84\xdf\x9e\x83\x82\x5c\x4b\xf2\x09\xb3\xdf\x88\x9b\x1e\x59\x7e\x83\x90\x6a\x51\xf4\xfd\xb5\xd3\x7c\x82\x63\xd0\xf5\x42\xb3\x87\x89\x84\x41\xc5\x39\xfc\x03\x59\xb1\x84\x77\x97\x5e\x64\xfd\x0b\x79\xc5\xc0\xd5\x93\xf6\xde\x2e\xeb\x72\x99\x28\x76\x30\x48\x6e\xda\xb5\x8a\xa6\xa0\x67\xed\x93\xb4\x66\x69\x1e\x41\x49\xaf\x45\xa9\x90\x2d\x8f\xf0\xce\x37\xb1\xc5\x21\x35\x99\x09\x6b\x29\x93\x39\x02\xd7\x9e\x13\x14\xe7\x0e\x0c\xb9\xb7\xb6\x32\xc1\x7e\x70\x65\xda\xd3\xb4\xe7\x84\x36\xb9\x0d\x0d\x52\x69\x06\x04\xbe\xa8\x35\x2c\x2e\x1e\x0b\x09\x1c\xd2\xbf\x56\xa8\x5f\xb6\x23\xe8\x35\x74\x04\x09\x6f\x95\x9c\x86\xd8\x7d\x97\x4c\xcf\x2f\x25\x82\xc1\xe1\x2f\x29\x13\xbb\xed\xa7\x95\x1d\xe7\x4f\x78\xee\x1e\xd2\x21\x84\x4a\xea\x37\x7f\x7d\x1d\x42\xb8\xe6\xe8\x95\xd6\xac\x13\x49\x10\xee\x5c\xcb\xfc\xaf\x6c\xdb\x69\x71\x2e\xd8\x35\x8c\x30\xf6\xec\xef\x4c\x17\x36\x4d\x82\xd2\x73\x8d\xa4\xd7\xba\x66\x04\x47\xd5\xa5\x4e\x82\x0e\x66\x84\x92\xb5\x3e\xb1\x17\x0b\x15\x08\x6c\x6b\xe2\x2a\x72\x53\x2b\x09\xca\xe1\xed\xeb\xec\x54\xed\x09\xbe\xbb\xfb\x3e\xe9\x5e\xe2\x20\x08\x37\x2e\x14\x2a\xdb\x57\x41\xb0\x1b\x1a\x1f\xb7\xd8\xb8\x76\x1a\x1a\x56\x4b\xfe\x4e\xac\x18\x67\x4c\x41\x42\xe8\x9c\xda\xbf\xbd\xdf\x18\xd8\xc8\x71\xb8\xb4\x7e\x6e\x0f\x03\x26\xdf\x76\x3e\x3c\xd0\xf1\x93\x81\xe7\x47\x5e\x8d\x76\x58\xb6\x4e\xc3\x4c\xa5\x13\x86\x7c\x65\x8d\xe5\x30\x3e\xd7\xb3\x91\x3b\x62\x88\x81\xa5\xda\xa8\x39\x7f\xe0\x2f\x03\xc6\xb9\xdb\x8f\x3e\xfc\xd7\xc7\x40\xdc\x85\x0b\xcf\xe7\x9c\x13\x21\x58\xcc\x93\xb6\xbf\xc7\x90\x26\x58\xe6\xae\x7e\x27\x5a\x54\x4a\x38\x3a\x9e\xa6\xad\x7d\xfa\x3c\x13\xa2\xa9\x7f\x2b\x65\x0e\x2c\x22\x38\xde\x95\xcf\xb0\xcb\xd9\x40\x78\x39\xeb\xb1\x7b\xad\x27\x17\xe1\xa6\xbf\xaa\x52\x7d\xae\xd9\xb4\xf2\x3f\xec\x59\x55\x30\xf1\x45\xe1\x21\x63\x0a\x9a\x77\x66\xac\x4f\x8e\x9e\x43\x53\xf8\x96\xf2\xea\xad\x72\xff\x27\x06\xd2\x82\xcf\x9b\x6a\xa4\x19\x13\x5c\x5e\xff\xee\x33\x51\x35\x22\xdc\x30\x50\xff\xf7\xfa\xfa\x6b\x06\x44\x0f\x1c\x50\x51\xe5\xd2\x24\x98\xa7\xb9\xd4\x53\xbe\x17\x21\x7c\xb9\x7c\x69\x88\xc1\x09\x42\x5b\x75\x94\x55\xd9\x25\x31\x02\xaf\xc3\x08\xd7\x22\xd1\x30\x42\xa2\x87\x15\x9f\x80\x8e\x38\xc1\xe4\x50\xe7\x0c\x87\x59\x5c\x84\xeb\x7f\xad\x3c\x9a\x12\xd4\x08\x37\xc5\x7c\xc5\xe6\xdd\x55\x24\x8c\xd7\x5c\xfc\xc4\xa9\xc7\x4e\x48\xbd\x9a\xb9\x6b\xb8\x3f\x99\x89\xc8\xe4\x4d\xa6\x56\xc5\x81\x04\x59\x71\x77\x8d\xfc\xc3\xe5\x4c\xac\x62\xdb\xa7\x1a\x33\x4c\x84\xe7\x0f\xda\xcf\x4d\x04\xa7\x97\x43\x76\x43\x4a\x19\x67\xf1\x6e\x82\x3d\x57\x51\xef\x75\xaf\x73\xd3\x70\x46\x9b\x65\xb1\xbd\x40\x75\x39\x46\x77\x8f\xd4\x2c\x8a\xe4\xa6\x29\xf4\xfd\xb0\x68\x8e\xd8\xb8\x7a\x1a\x4a\x56\xa9\x5e\x50\x5f\xf8\x93\x31\x85\x4f\x09\x87\x3d\x9e\xf5\x47\xd2\x14\x5e\x7c\x31\x6a\xe7\xd5\xda\x4f\xd0\xe2\x0f\xd2\xbf\x12\x30\xc4\x80\x62\x9b\xf4\x3f\xe3\x98\x4e\x06\xec\xee\x2f\xf4\xc7\xb0\x18\xc1\xa3\xa3\x5d\xe4\xd0\x8e\x75\x84\xe6\x4c\x16\x27\xcb\x94\x8f\x0c\x74\xce\xb4\xba\x7d\x6a\xd7\x62\x9a\x86\xfb\x1c\x65\x6c\x5f\xcf\x13\x04\x47\x2e\xe6\x7e\xd8\x64\x4b\xd8\x39\xff\x51\x72\xe1\x67\x55\x82\x1d\x1b\x7f\xdc\x91\x5c\x3e\x82\x2b\xff\xf9\x39\xde\xb6\xe2\x04\xc9\x85\x37\xb8\xf2\x82\x22\x08\x0b\x0c\xe6\xcd\xee\x8b\xde\x4b\x10\xf5\x79\xec\x50\x30\x68\x46\x88\x59\xaf\x69\xb0\x31\x55\x9e\xa0\xd9\x5f\xba\xe3\xdc\xc7\xf3\x04\xd9\xc1\x04\x7d\xc3\xae\xc5\x84\xf4\xe6\x89\x5b\x2e\x7d\xc2\x04\xff\x9b\x97\x0e\x9f\x0f\xcb\x23\x78\x85\x08\xb1\x04\x45\x39\x13\xa2\x8a\x42\x66\xf4\x36\xbc\x21\x54\x4a\x5b\x37\x7e\x9e\xc4\x2f\xf1\x36\xee\x50\x87\x66\xc2\x57\xd7\x19\xd1\xff\x8d\xbe\x96\xae\x67\xa5\x53\x6e\x84\xdb\x33\x85\xb3\x05\x3f\x1c\x9e\x56\x86\xcc\xab\x5d\x46\x07\xc2\xa7\xa1\x5b\xf6\x49\xe4\xa8\x9b\x24\xe1\xe9\xb1\xb6\xcf\x23\x09\x51\x04\xde\x92\x31\x76\xb5\xd8\x79\x84\x6b\x2b\xda\x0e\xc7\xb0\x68\x12\xbc\x1e\xfa\xac\x7f\x79\x28\x9e\xe0\x59\xc7\x3b\x28\xd7\x75\x9e\xc0\x2c\xad\x60\xdd\xb9\xf6\x34\xa1\xde\xb6\xfe\x94\x49\xe9\x4f\x06\x94\x6a\xa3\x0e\x5f\x5f\xb3\x81\x20\x34\x18\x1e\x2e\xbf\x5a\x85\x50\xbd\x83\x11\xb4\xce\xce\x9c\x60\xe8\xd7\xa3\x11\xbe\x54\x6c\x1a\xd6\xbc\xbb\x2d\x22\x67\xdc\xc7\x40\x55\x4e\xb6\x6d\x9d\x6a\x26\xa1\xea\xe2\xa5\x1d\xc7\x12\x92\xa7\x41\x2d\xd0\x86\xeb\xde\x9f\x0b\x04\xd5\x96\xe8\xc8\x63\xa6\xdc\x84\x9f\xd1\x2d\xbb\xc5\x82\xaf\x96\x63\xa1\x4b\x64\xed\xba\xa1\x3c\xc2\xc2\x7f\x72\xc7\x3b\xb2\x97\x11\x94\x9b\xaa\xf4\x57\x6a\xbb\x13\xc2\x7e\xab\x4a\xee\x3e\xf9\x92\xb0\xa5\x73\xe7\xc6\xa0\x25\xa5\x84\x13\xda\x02\x97\xae\x55\xf8\x12\x4a\xf7\xed\xe2\x3f\xf7\x6b\x26\x21\x58\x5e\x4c\xb0\x52\x8b\x85\x50\x34\x18\xa7\x10\xd4\xa1\x44\xf0\xba\x67\xd1\xff\xc4\x23\x83\x39\x55\x3a\x37\x64\xbd\xa3\x73\xb7\x19\xd0\xf6\xa8\x5f\xfd\x2c\xd6\x9b\x90\xde\x32\x27\xf9\xe5\x3d\x37\xc2\xf9\xb9\x6c\x9a\x46\xe1\xd6\x84\x91\xd8\x3a\xbb\x82\xa7\xfe\x84\xb1\x20\x8d\xee\xcc\xe1\x57\x4c\xc8\x9c\x68\xdf\xd4\xf9\xd0\x9d\x50\x1f\x6a\x74\x7d\xd4\x82\x93\x20\x6d\xaf\x13\xf4\x89\x75\x11\x21\xef\xf0\x95\xeb\xcd\x29\x3f\x19\xb8\x17\xc3\x72\x6b\x0f\xa7\x06\x61\xe8\x8d\x31\xa7\xe8\x4e\x1d\x82\xc6\x48\xb6\xe1\xa1\xbd\x7a\x84\x20\x71\xbe\xcd\x97\xa5\x2e\x33\x51\xd8\x56\x79\x6c\xbd\x8b\x2e\x8d\x7d\xd5\x39\xdf\x14\xbd\x9c\x30\xee\xb7\xd5\x60\xc3\xa5\x4e\x06\x34\x8e\xa8\x8c\x09\x0c\xd8\xd0\x14\x18\xc5\x5f\x84\x1d\x6e\xbc\x63\x40\xdd\xfa\x73\x7f\x45\xe7\x5c\xc2\xb2\xdc\x6b\xcd\xec\x4a\xbb\xa7\x41\xe4\xce\x97\x4b\x5f\x04\xaa\xca\xe1\xeb\xde\xf4\xaf\xe8\x0d\x83\x60\x7b\x32\x58\x78\xc3\x5a\x6b\xc2\x66\xb9\xda\xa5\x7b\xb7\xcc\x25\xf4\xf9\xb3\xeb\x36\x5f\x8d\x63\xe2\x9e\xf7\x8f\xf8\x33\xcb\xb4\x08\x8f\x4a\x2a\x25\xd6\x7a\x1f\x20\xfc\x15\x08\x79\xfc\x64\x81\x15\x13\x6e\xf1\x42\xbe\x39\x67\x8d\x68\x0a\xbc\xb3\x9b\xe3\xf9\x65\xdf\x30\x70\xe3\x7d\xc4\x4a\xa1\x6b\x07\x09\xea\x6d\xcd\x8a\xd1\x7f\x8b\x08\x46\x3a\xd7\x0c\x24\x7c\xb2\x08\x27\xf2\xf7\x0b\xfe\x07\x99\x0e\x53\xf1\xf2\xd3\xc2\x84\x6d\x5a\x55\xe1\xe6\x5c\x22\x84\xab\x43\x86\x4d\x6b\xd4\x57\x10\xd2\xbe\x1a\xdd\x5c\x76\x78\x84\x81\xcf\x4e\x7b\xbe\x96\x88\x5d\x24\xbc\x28\x6c\xcd\x67\x7d\x22\x43\x50\x78\x2f\xfa\xb1\xc4\x9d\x9b\x50\x26\xd7\x5b\xd0\x59\x1a\x48\xf0\x68\x5d\xfc\x4a\xfb\xab\x0d\xc1\x2b\xa7\x6a\xaf\x83\xee\x5a\x42\xf1\xb1\xc5\x9a\x22\x73\xd2\x98\x48\x3c\xd1\x73\xb2\xd2\x4d\x99\x70\x48\x96\x7b\xf5\x52\x6b\x65\x9a\x2a\x4f\xdb\xd4\xb7\x3a\xd9\x3a\x10\x4c\x77\x7e\xb7\x69\x62\xd3\x26\x2c\xcd\x8c\x5c\xb6\x42\x68\x15\x61\x5e\xd3\xe1\xb1\xd9\x21\x4b\x08\x8d\x4a\x8b\x86\xf7\xcc\x72\x24\xc0\xe2\x5e\xc7\xc4\x44\x1b\x03\x92\xe3\xb2\xf7\x05\x8b\xd8\x69\x0a\xf4\x77\xec\xd7\xb9\x67\xe3\x0c\x2c\xfe\xd8\xb5\xdc\xfe\xf9\x42\x82\x24\x7b\xbc\xcb\xcf\xeb\xea\x84\x8f\x7f\x12\xd5\x0b\xcf\x8a\x10\x8a\xcf\x9d\x78\x1f\x7b\x68\x15\xc1\x95\x6f\x85\x23\xdb\x09\x51\x42\xeb\x0c\x21\x89\x86\xe4\xb3\x84\xc2\x19\x8b\x0e\x06\x94\xe9\x13\xec\x4e\xbb\x44\x6b\x8a\x71\x4f\x83\xc1\x79\xaf\x1d\xbe\xf3\x2f\x97\x63\x36\xff\x3e\x67\xe6\xe3\xc9\xff\xdc\x54\x5a\xf0\x62\x93\xc8\x34\x5c\x48\xda\xff\xa1\xc0\x9a\x97\x20\xaa\x67\x1f\x17\xd7\x60\x45\xd8\x60\x3c\xf4\xcd\x33\x4f\x82\x50\x50\x62\xe7\x24\xe5\x96\x41\xe8\x49\x61\xfb\x5d\x19\x7a\x91\xb0\xf6\xfd\xae\x33\x3e\xca\xe1\x84\xa3\x9d\x4d\xf6\x8d\xd2\xfe\x84\x4f\xa7\x3b\x7e\x7f\x1a\x4f\x21\xe8\x2f\xd5\xb8\xdb\x3d\xbf\x89\x09\x9f\x1d\x0a\x15\x25\xbf\x7c\x08\x5f\x9b\x4e\x51\xf7\x90\x0f\xa1\x60\x66\x8a\xd0\xeb\x91\x6a\x26\x62\x25\x9a\xdf\x8d\x3a\xc5\x10\x12\x3e\x9f\x4d\x6f\x75\x77\x26\xf4\xab\xaf\x55\xf8\x76\xc8\x93\x10\x66\x2d\x9f\x79\xa4\x66\xf2\xa2\x1d\x7a\xe6\x26\xeb\x9d\xc4\x04\xf3\x84\xf6\x2c\x5f\x65\x1b\x42\x47\x31\xcb\x51\xf1\xa7\x5b\xa6\xa1\x95\xf3\x3b\xe7\xd9\x9c\x3f\x0c\x94\x9e\x51\xcb\x5c\x71\x5d\x91\x50\x31\xc1\x95\x7f\xec\xb7\x19\xe1\xd5\x4b\x5b\x15\x15\x07\x27\x42\xdc\xa2\xc7\x1f\x65\x69\xe3\x34\x48\x4b\x71\xfe\x8b\x62\xb6\x97\xe3\xd9\x89\x79\x2c\x57\x32\x0d\x09\x82\x7a\xef\xde\x96\x87\xc9\x10\xfa\xbc\x8e\xc7\x1d\x12\x50\x24\xfc\xf4\x5c\x15\xcd\x23\x7b\x8b\xc0\xbf\xfd\xb2\x2f\x53\x6d\x0e\xe1\xf3\xee\x83\xb7\xbc\x27\xfe\x32\xfe\x0f\x98\xe7\x56\xd6\xf7\xad\xec\x2c\x87\xa4\xb0\xa7\x9b\xe3\x19\x79\x82\x71\x2c\xdb\xf2\xa4\x23\xe5\x4c\x14\x70\xfb\x6c\xe4\x28\x28\x27\xb4\x5a\xc8\x0e\xa5\xb8\xe4\x11\x0a\x3a\xbd\x63\x07\x0e\x76\x31\xc1\x3d\xd1\xb5\x4b\xe9\x41\x39\xe1\x91\xbf\x6d\xaa\x2d\xdb\x03\x42\x6c\xca\xda\x4c\x75\xf9\x30\x26\xfc\xfc\x2c\x25\x3e\xef\x8e\x21\xf8\xad\x30\x5f\x50\x1b\x18\x43\xe0\x59\x96\x9f\xcc\xcb\x52\x40\x38\xab\xdd\xe8\xfb\xf3\xd4\x4d\xc2\xf9\xdb\xbf\x66\x0c\xaa\x38\x10\xec\x0e\x89\x84\xbc\x5e\xb0\x8f\x50\xc5\x3a\x7f\x0e\x63\xb2\x70\x3b\xa6\x6c\xd8\xf1\xcc\x99\x20\xc7\xd1\x91\x66\x60\x7b\x8d\x70\xf8\x9e\x74\x55\x63\x69\x1e\xc1\x48\x82\x5f\xd1\x70\xeb\x7d\xc2\xcc\x2e\x89\xb1\x43\xb2\x31\x04\x8b\x6f\xc6\xee\x21\x77\xee\x10\x1a\x4d\x8f\xae\xab\x29\xce\x27\x6c\x63\xf9\xd3\xc3\xaa\x5c\x41\x88\x75\x5a\xf7\xf3\xe9\xfd\xf5\x84\x50\xe5\x27\xd2\x4f\xd3\x27\x18\xb0\x89\x19\xcd\x78\xd9\x3e\x30\x0d\x4e\xef\x76\xd0\x11\x61\x41\xc2\x91\x53\x3b\xf3\xd7\x67\x69\x10\xb6\x1d\x79\x1e\xac\xd2\x97\x47\x18\xfc\xc0\xce\xda\x58\x92\x4f\x98\x93\xce\xf5\xab\xfb\xa0\x35\xa1\x54\xf8\x94\x94\xed\xa0\x1d\xe1\x81\x71\xb5\xf4\xc2\x26\x45\x82\x1a\xff\x43\xbd\xbf\x6f\xc5\x08\x72\xfa\xf7\xfc\x1a\x8f\x9f\x62\x42\xec\xee\x3d\xc5\x64\x81\x71\x06\xfc\x7d\xb2\xfb\x79\xe7\xbf\x24\xa8\x49\xc4\x5e\x1b\x3d\x6d\x43\xb8\x9a\x27\x52\xb2\xe0\x6c\xe8\x34\x64\x5c\xbe\x9c\xb1\xd6\x4b\x97\xf0\x6d\xc3\x83\x31\xe7\x0b\xe2\x84\x8c\xf8\x52\x07\xe5\x2b\xf7\x08\x6a\xd7\x8e\xce\x8a\x38\xdc\xc1\xc4\xc9\x3f\x8b\xcd\xd6\x4c\x16\x07\x56\xa5\xb6\xb7\xf7\xde\x32\x70\xc1\xd3\xd9\x75\xd6\x30\x0f\x81\xc3\xf1\x42\xeb\xa1\x24\x57\xc2\x86\xde\x8d\xa1\x17\xa5\x93\x08\xdb\xd7\x84\x1a\xb5\xdf\xe0\xa3\x31\x0e\xbf\x1c\xcb\x4c\x01\x82\xe9\xdd\x4b\x51\xf5\x97\xc7\x18\x78\xc4\xb6\x40\xc0\x23\x3e\x90\x09\xff\xf3\x7f\xd4\xcf\x7e\x35\x20\x58\xd9\x2c\x0a\xf4\x7c\x54\x4b\xc8\xff\xa5\x3b\xe7\x5c\xcd\x19\x42\x56\x60\x8b\xa6\xd1\x62\x67\x82\xa2\xd1\xb1\x51\x87\x12\x3b\x42\xbf\xce\xe2\x9b\x13\x72\x66\x84\x2e\x69\xd3\x37\xab\x4a\xc5\x09\x99\x78\x36\x52\x11\xcf\x20\xe4\x79\x9d\x9c\xd0\xbd\xd2\x42\xe8\x79\x2f\x2b\xbb\x62\x91\x0e\x61\x63\x9b\xad\xb1\x82\xd4\x7c\x82\xf7\xf5\x27\xa1\xfb\x47\x4b\x19\x30\x35\xe2\x49\x33\x39\xd0\x35\x0d\x05\x31\xbf\xf7\x06\x0d\xb1\x12\x6e\x1a\xda\x9f\x48\x71\x78\xcd\xc4\xb1\x55\x77\x92\x52\x55\x2a\x09\x15\xae\x1c\x61\xbc\xbf\x97\x11\x4e\x1e\x7c\x95\xaf\xeb\xcb\x42\x88\x0a\xda\x6c\x3d\x63\xb6\x00\xc1\xe8\xf0\x1c\x06\x4f\x01\x18\x78\x9f\xd9\x21\xef\xb5\x99\x9b\xa0\xf0\xd6\xfc\xf7\xa0\x33\x2b\x21\x58\xa3\xff\x44\xe6\xef\x55\x84\x9d\x69\xd1\xab\x74\x76\xb8\x11\x56\x17\xcb\x6a\x85\x7c\x17\x23\xf0\xd8\x1c\xaa\x9c\x1b\xba\x9d\x90\xb0\xbb\x7b\xd1\x63\xb5\x0b\x04\xed\xc1\x45\xd9\x37\xb5\xa4\x08\xa5\xf5\x83\x8e\xac\x43\x23\x0c\x2c\xbc\xfb\xde\x69\x4d\x83\x3d\x61\x29\x9b\xfb\x5a\x7e\x91\x74\x42\x8a\x7b\xf8\x43\x96\x06\x1d\x42\xdc\x9b\x2d\x61\x6c\xd5\xfd\x0c\x2c\xdb\x9b\xd5\xe4\x5e\x14\x41\x53\x48\x88\x3d\xbf\xf2\x86\x5e\x06\xa1\x70\xf6\xb3\x83\xe9\x0b\x8e\x10\x34\x62\xaa\x1c\x2f\x58\xfb\x12\xce\x3e\x62\x7e\xf9\x9d\xa6\x4b\xd0\xf7\x2f\xdd\x35\xf0\xc0\x95\x50\xab\x7e\x46\x2a\x21\x21\x80\xb0\x2c\x44\xe0\x67\x7a\x94\x3f\xe1\xf2\x2e\x65\xe3\x80\xf5\xa6\x04\xdf\xa7\x29\xfb\xc3\x7d\x64\x09\x8b\x76\x4b\xdf\xd5\x1b\xbb\xcf\x84\x6e\xfd\x0e\xaf\x40\x0f\x7b\x26\x34\xae\x2a\xae\x7d\xcc\xdd\xc7\xc0\xf6\xe5\x59\x3b\x66\x2e\x5e\x41\x53\xf0\x0c\xd9\xc6\x55\x1e\x77\x9f\x01\xd6\xbc\xf5\xba\x33\x4f\x58\x11\xd2\x8b\x72\x1a\x5a\x16\xcf\x24\xf8\x0f\x8a\x3c\xbe\xcf\xb6\x9b\x30\xf7\x75\xe2\x05\x1e\x21\x71\xc2\x21\x9e\xf9\xf2\x59\xe6\x5b\x09\x33\x5f\x8d\x2a\x56\xc8\x1c\x24\x5c\xc8\xcd\x16\x7f\xb9\x9f\x08\xac\x26\x6b\xb2\x07\xf8\x25\x09\x3b\x1a\x24\x1f\x07\x07\x7d\x60\xa0\xc5\x3c\xa2\xe2\xd3\x5b\x21\x02\xbf\x46\xbf\xf3\xf8\xdd\xc9\x13\x93\x57\x78\xed\x57\x97\x39\x41\x7b\x16\xeb\xf3\x2a\x2f\x0b\xc2\xf1\x1b\x7c\x47\xf5\x9f\xb1\x12\xb2\xc2\x4e\x1c\xea\xb1\xbb\x4e\x58\x7d\x56\x4b\xdb\x30\x40\x85\xb0\xf9\x90\x5e\xae\xcb\xa3\x18\x26\xee\x15\x5e\xe5\xa8\xc8\x76\x22\x8c\x88\x97\x83\x7f\xb7\x0e\x61\xe4\xfd\xa2\x27\x3f\x25\x47\x19\xa8\xed\x19\xed\xdc\xbc\xb4\x86\xe0\x2a\x28\x21\x2d\xe2\xf2\x9a\x10\x68\xbc\x2d\xb4\x4f\x8c\x97\xa0\x1e\x6f\xd3\xeb\xde\x2a\x49\x30\xc9\x38\x29\xf2\xd0\x6a\x0e\x61\xdb\xd2\x70\xbe\xba\x94\xb3\x04\xa5\x75\x6c\x62\x5f\xad\x54\x08\x5f\x87\xde\xbf\x7a\x37\xb8\x99\x90\xf5\x3b\x7c\x4c\x51\x53\x8f\x30\x83\x43\x5e\x59\x53\x6f\x3e\x61\xb5\xe9\x25\xb5\xc8\xcc\xf5\x04\x0e\x97\x22\xce\xa0\xad\x3a\x04\xa5\xd7\x47\xf5\xbe\x1c\x56\x9f\xdc\x17\x73\x6e\x47\x46\x7d\x65\xa0\xc4\xe6\xeb\xc9\xf7\x21\xbd\x0c\x1c\xf1\xce\x0c\x14\x3a\x76\x88\x10\x64\x3e\x6b\x60\xa3\x36\x18\xd8\x62\xab\x65\xd5\xea\x69\x46\x38\xb5\xbc\x4a\xff\xf0\x7c\x1f\x26\x0e\x1f\x9d\x55\x1c\xd8\xaa\x45\x08\xf2\xab\xe6\xab\xdb\x54\x49\xe0\x3b\x58\x7e\x3a\x7c\x5d\x19\x41\x56\xa0\x31\x58\xe5\x58\x2a\xe1\xd0\x9c\x6b\x67\x24\xee\x3f\x20\x1c\xb9\x73\x78\x85\xfe\xfd\x2a\x82\xf4\x52\xad\x2d\x23\xda\x55\x04\xce\xf9\x8d\x3b\xbd\x97\x57\x12\x5e\xb0\xf9\x5f\x96\x90\xa9\x24\x5c\x38\x21\x15\xdb\xaf\x52\x45\x10\xfc\xe0\xef\xb3\x41\xb5\x8a\x50\x26\xb9\x5b\xc3\x33\x67\x36\xe1\x71\xfc\x9a\x65\x13\x2b\x85\x09\xbf\xbb\x3d\x3b\xb2\x54\xed\x08\x97\xe6\xbd\x2e\xfe\x35\x79\x8d\xcd\xde\x6f\x18\xbf\xc2\x3d\x8b\x89\x9e\xeb\x3a\xff\x38\x1a\xaa\x08\xaf\x4e\x06\xf4\xcc\x53\x69\x26\x2c\xff\x68\xfc\xe3\xd7\xda\x66\x82\x6e\x77\x54\x93\xbe\x6a\x33\x61\x8c\xcb\xe4\x97\xa8\x44\x3e\x81\x83\x47\x9d\xaf\xe3\x97\x22\x41\x7c\x67\x72\xee\xd1\xf2\x45\x04\x27\xee\x88\x6e\xf6\x07\xdb\x08\x2f\x74\x58\x1b\x66\xc8\x29\x12\xdc\x9a\xf3\x15\x97\x47\xbb\x10\xc4\x6e\x28\x6f\xef\xf9\x57\xc7\x44\xad\x75\x49\x92\x56\x7b\x25\x13\xe1\xaa\xf6\xb5\x11\x4d\xff\x18\xd0\x56\x39\xe5\xc6\xda\xf1\xba\x1c\x7b\x42\xdd\x6c\xcb\x25\xb6\xd0\x14\x52\xae\x6f\x17\x6f\xaf\x16\x26\x2c\x64\x6f\xcf\x3a\x69\xab\x4e\x88\xf7\x73\x51\xba\xa3\xe6\x41\xf8\x2b\x7d\xe9\xca\xe7\x86\xcb\x84\xae\x75\xe2\xb7\x38\x9e\x5c\x60\xe2\x26\x63\x43\x0d\xbf\x6d\x3e\x21\xe0\x32\x4b\xe3\x51\xb6\x67\x84\xcd\x0a\x52\x56\x9a\x90\x27\x3c\xfd\x66\x17\x56\x10\x72\x9b\xb0\xa6\x77\xc8\x7d\x57\x73\x23\xa1\x7b\x4b\x9a\x48\xdd\x03\x27\xc2\xac\x8f\xca\x52\x46\xe7\xd2\x09\x6b\x9c\xff\x1e\xd6\x30\x69\x20\x2c\x7a\xf8\x3d\x33\x74\xfe\x0e\x82\xa2\x98\xc1\xd0\xf3\x98\x19\x84\x50\x76\xf7\xdd\x7d\x82\xea\x84\x7f\xae\xdf\x96\xca\xb4\xda\x12\x0a\x5f\x8e\xdf\xb5\x5b\x19\xcd\x84\x4f\x7a\xfd\x4c\xed\xf1\x60\x42\x95\xf0\xd8\xe8\x59\xb6\x60\x42\x43\xc6\xef\x94\x78\x63\x3d\x42\x95\x62\xcd\x4c\x36\x91\x57\x04\xf7\x6a\xe3\xa3\xd7\x9e\x44\x12\xe6\x77\x67\xf8\xbe\xa8\x3a\xcd\x44\x42\xd4\xa9\xd4\x1d\xe7\x8c\x08\x05\xa5\x8b\x5b\xc5\x42\xb4\x09\xb3\xaa\x0f\xfe\xb3\x9e\xaf\x4a\xe8\x5c\xb4\x31\xb8\x37\x68\x36\xe1\xa9\xb3\xdc\x8a\xb6\xb5\x3b\x08\xfc\xf7\x68\x64\x40\x95\x9f\x30\xcf\x24\xd1\x22\x6c\x81\x3c\xe1\xb7\x87\x90\x86\x6b\x03\x0b\xa1\x3c\x3c\x9c\xfb\xa0\x94\x31\xa1\x4d\xe3\x6a\xea\xbe\xa1\x5d\x84\x15\x57\xd9\xee\xfc\x60\x95\x20\xb8\xf8\xfa\xb9\xd7\x6d\x17\x27\xbc\x4a\x37\xb3\x3a\xfd\x75\x2e\x81\xb1\xcc\x4d\x44\xef\x49\x2a\x41\xc4\x26\xc7\xde\x2b\x2b\x8c\xf0\xb1\xf9\xf1\x40\x8b\x93\x27\x13\xa3\xbb\x04\x3c\xb6\x18\x30\x08\x47\xf5\x1f\x38\x8e\x16\xb9\x11\x66\xf0\xc4\xc5\x1d\xfd\xe9\x44\xe0\xbf\x7f\xcb\xc3\x65\xf2\x85\x96\xbb\x50\xf0\x97\x99\x51\x39\x41\x6a\x62\x50\xb6\xf0\x61\x15\x13\xc2\xa3\xbb\x9b\xba\xf3\x8a\x08\x9c\x3b\x93\xdb\x92\x7f\x16\x13\x5e\xd8\xdd\x68\xae\x8e\xdb\x49\xc8\xb5\xe0\x68\x73\x37\x64\x12\x02\x7b\x73\x1f\xcc\x1c\x37\x24\xa8\xea\xcd\xb8\xf0\x6c\x97\x02\xc1\x7a\x76\x62\xa1\xe9\xc1\x05\xd3\x90\x24\x18\x3f\xfe\x5d\xb5\x94\x10\xff\x2a\x78\x8f\xb9\x38\x0f\xa1\xc9\xa9\xd6\x47\xa1\x53\x8c\x10\x94\xed\x2a\x75\x28\xea\x36\x81\xb5\x7a\xff\xb5\xed\xc7\xce\x10\x6e\x3d\x59\x5c\xca\xe9\x7d\x91\x70\x73\xec\xe3\xa6\xb5\x1b\xb5\x09\x29\xf2\x05\xa7\xcd\x57\x3c\x22\x54\x9c\x17\xd8\xb8\x4d\x26\x8f\x70\xde\xb7\xf4\xd3\xb1\x70\x19\x02\xef\xf8\x3c\x85\x7f\x9f\x0a\x08\xca\x16\x67\x77\x2e\xdd\xa1\x33\x0d\xb3\x42\xce\xf1\x5c\xfd\xa6\x46\x38\x7e\x79\xe4\x8d\x7f\x0e\x07\x61\xc1\xf2\xfd\x3c\x2c\x82\xb7\x08\x81\x25\x87\x25\x4d\x38\xf9\x09\xdc\xfd\x11\xbf\x0f\x58\x6e\x24\xc8\x6c\x38\xdb\x25\xc5\x48\x67\x42\xdd\xb9\xeb\xd7\xcb\x4c\x25\x82\xd3\xb1\x76\xee\xb8\xb5\x96\xd3\xf0\x3e\x79\xd8\x79\x6d\xee\x16\x42\xf4\xa0\x78\x8d\x97\x52\x39\xc1\xf6\xa6\xed\x9e\xe2\x66\x76\xc2\xd7\xbe\x6b\x4c\x41\x2e\x39\xc2\xe6\x8d\x5d\x96\xdb\xbf\x59\x13\x8c\xd9\x5d\x6a\x2e\xe8\x6e\x24\x6c\xaa\xcd\xb7\x1b\x3f\x15\xcb\xc4\xb6\x96\x08\x9e\xce\x88\x3a\x26\xf6\x16\x86\x1a\x36\x6d\xba\xc9\xc4\xa7\x86\x9a\x9d\x5c\x77\xab\x09\xeb\xd5\xfa\x7a\xf4\x14\x6f\x13\x46\x0c\xf4\x2f\xe7\xe8\xdb\x12\x76\x27\xd9\xbd\xb8\xa2\xb3\x8f\xa0\x2d\x6c\xa6\x5a\x54\xed\x47\x50\xab\x2a\x69\x5d\x6a\x70\x95\x89\x95\x0f\x62\x6f\x0b\x7f\xb0\x20\x34\x69\xab\x85\xeb\x9d\xcd\x61\x62\x5e\xf0\x86\x26\x91\xc9\xcd\xc8\x29\x7a\x51\xea\x6b\xd3\x84\x69\xe8\xa8\xcb\xac\x53\xbd\x61\x44\x58\x59\x5c\xfc\xaf\x6a\xbd\x24\xc1\x53\xb6\xe3\x70\xa2\x8c\x04\xc1\xe6\xc3\x76\xbb\xf1\xd1\x5e\x06\x6e\xa6\x3f\x1b\x59\xe6\x48\x84\x38\x6e\x51\x81\x15\x0b\xce\x13\x7a\xb8\x9f\x38\x6b\x7e\x30\x20\xd4\xb7\xad\xf1\xf5\x0b\xda\x48\xf0\x76\xbf\xc0\x9f\xaa\x74\x8b\x00\x7f\xa3\xf1\x7d\x3e\x95\x4c\xd4\x7f\xbf\xa6\xbf\xed\x52\xda\xb4\xd1\x70\x75\x4a\x5e\x62\xea\x1a\xc2\x1a\x1d\x85\xe6\xfd\x79\x57\x08\x5c\x05\x61\xdf\x4f\xea\xef\x27\x28\xbe\x74\xdf\xf6\xbe\xf2\x2a\x41\xe7\x5b\x01\xcb\x7c\xdf\x63\x84\x3a\x43\xd7\x26\xc9\x3c\x07\x42\x5c\xdd\xa1\x89\xbd\x37\x37\x12\xbe\x6f\xd6\xaa\x0b\x44\x09\x81\xb1\xd0\x37\xef\xc1\x3f\x5d\xc2\x15\x69\x1a\x62\x55\xd8\x36\x0d\x70\xde\xee\xdd\x6c\xaa\x4c\xb0\x93\x92\xbb\xf8\x56\x60\x0f\xe1\xc0\xe5\xbb\x32\x89\x3d\xe2\x84\x92\x93\x23\xd2\x9b\xd3\x4c\x08\xea\xd1\x66\x79\x5f\x12\x18\x34\xf6\xea\x64\xd3\xe2\xa2\x00\x82\x4d\xe3\x7e\x71\xd9\x40\x45\x82\xdd\x5f\xe1\x81\x2a\x59\x21\x82\xcd\xca\xe5\x6a\x29\x81\x4f\xcb\xa1\xff\xf4\x5a\x9c\x84\xeb\x52\x9a\x42\xa1\x83\xc6\xf6\x47\xac\x1d\x0c\xf4\xfa\xc9\x3e\x8e\x11\x3d\x45\x90\x08\xb4\x74\xbd\x3b\xa8\x49\x90\x39\xc5\xef\xd3\x7e\x8a\x8b\xb0\x7c\xd3\xbd\xc4\x09\xe3\x19\x84\x10\xce\xf7\x81\x7d\x15\xfc\x84\xbf\x42\x5c\xf6\xfb\xb8\x97\x11\xbc\x42\x32\x95\x3d\xfc\x4d\x09\x31\x4a\x63\xb5\xa6\x19\x7c\x84\xd7\x86\xcb\x39\xfb\x96\xc4\x13\xbe\x29\x15\x0f\xcc\xba\xc8\x49\xc8\x6e\xa9\xc8\x1a\xfc\xeb\x36\x0d\x77\x0f\xf9\x29\xc8\x1c\xea\x64\xe0\xcd\x88\x99\x8c\xc0\x84\x0d\x81\x6f\xac\x6c\x61\x77\xaf\x27\xa1\x55\xd0\xb1\xf2\xbe\x4d\x12\x13\xfd\xbe\x92\x4e\xdb\x2c\x0f\x12\x02\x53\x06\xdc\x3d\x5d\xf7\x12\x0a\x4b\x3d\x86\xce\xad\x37\x27\x64\x66\x71\xb6\x7b\x0c\x9f\x23\xcc\x93\x5e\xcd\x1a\x7d\xe9\x0d\xa1\x7f\x75\xe8\xf5\xc8\xfb\x85\x4c\xc4\x98\x36\xe8\x44\x16\x5a\x13\x54\x9b\xf6\xdf\x9c\xf9\xec\x09\x41\x32\x6f\xec\x63\xa0\x95\x3d\xe1\x38\x57\x7f\x5e\x45\xb4\x27\x61\xcf\x62\xcb\x88\xfb\x81\x5b\x08\x7d\x05\x82\x32\xf1\x61\x07\x09\xbc\x0d\x76\x87\x8f\x70\x6d\x23\x04\x32\x4f\x54\x34\xdc\x38\x4f\xd0\xc8\x78\xba\x4f\x68\x71\x03\xa1\x30\x7c\xae\xc9\xc2\xd0\xc8\xc9\xdb\x8b\x9f\xa3\xa5\x69\x0f\xc1\x38\x65\xb1\x60\x45\x8c\x39\x41\x52\x80\x5d\x84\x51\x36\xca\x80\xcb\x98\xb4\x94\x53\xe4\x04\x03\xdc\x0b\xc6\x8b\x34\x5f\x8a\x10\xce\x67\x85\xfc\xd1\xb0\x0b\xf8\x7f\xc4\x39\xe6\xc6\xa7\x0e\x26\xc5\x8c\x29\x6c\x77\x10\xbd\x54\x6e\x62\x40\x68\xb3\xb3\xd8\x7a\x58\xaa\x84\xb0\xf2\xce\x92\xc2\xdf\xe7\x37\x10\x6c\x84\xee\xee\x39\xf6\x23\x90\x89\x7b\x82\x31\xf3\xd7\xbc\x5b\x4b\x98\x18\x5f\xac\x68\x10\x24\x3f\x79\x07\x5f\x65\xf6\xdb\x84\x31\xa1\xe1\xf1\x7e\x67\x59\xc1\x46\x42\x4c\x92\x02\xa3\x66\xf5\x32\x82\xa4\x46\xcf\xdb\x43\x90\x22\x34\x09\xe7\xdb\x1b\x4b\x70\x13\x5e\xf6\xeb\x48\xff\x53\x52\x26\x7c\xa8\xd8\xc6\xc9\x5f\x6c\x49\xd8\x39\x74\x5b\xa5\xe4\x8e\x27\x81\x7d\x5c\xfe\x60\x47\xa1\x33\xc1\xe7\x15\x27\x6b\xa0\x54\x32\xa1\x99\x51\xe3\xb3\xa1\xd8\x87\x30\xec\xb8\xd7\xc2\xdd\xa2\x80\xf0\x06\x1d\x7e\x29\x19\x11\x84\xd7\x1d\xad\x8c\xb3\x6c\xa9\x84\x0d\xff\x7a\x93\xaa\xc5\x6a\x08\xcf\xce\x28\xe4\x06\xeb\xee\x27\x04\xc6\x37\x3f\x32\x1a\xb7\x22\x1c\x5c\x7c\x5a\x49\xc3\x5a\x8b\x30\xb7\x28\x29\x2a\xc6\x4a\x9b\x70\x52\xa8\xba\xf8\xdc\x11\x2b\xc2\xf2\x50\x8d\xec\x66\xc6\x75\x42\xcb\x63\xe5\xde\x1a\xdb\x40\xc2\x89\x84\x5b\x61\xcb\x0c\x55\x08\x17\xab\x05\x8f\xbb\xfa\x3e\x26\x84\xec\xbf\x71\x2c\xcb\xdb\x88\xb0\x7d\xd5\xe5\xa2\xd0\xa3\xc3\x0c\x44\x4e\x2c\x2f\x7c\x2b\x73\x81\xa6\x70\x50\xe0\xe9\x53\xb5\xca\xbb\xe5\x38\xf8\xf5\xf2\x0f\xab\x73\x17\x98\x68\xdd\xf5\xe9\xfb\x3b\xd3\x6c\x02\xff\xda\xad\xbe\xbb\x85\x5b\x68\x6a\xf4\x5a\xfb\xab\x69\x54\xe9\x3e\xc2\xb9\x64\x41\xd5\x07\x81\xe7\x09\x75\x6d\xec\x8b\x1d\xb8\x2e\x12\x8a\x87\x9f\x14\x74\x9d\x92\x62\xa2\x6d\x6d\xa1\xbe\x39\x77\x06\x13\xe6\xee\x62\x89\x31\x4f\x9c\x09\x52\x6f\x3f\x6e\x5b\x5d\x51\xc4\xc4\x57\x01\x57\x8d\x5e\x95\xef\x84\xda\x98\x63\x4a\x2c\x72\x03\x04\x9d\x56\xef\x93\x09\xef\x6f\x13\x72\x74\x84\x5b\xd8\x3e\x24\x13\x6a\x56\x1b\x3b\x89\x0d\xba\x13\x3e\x0f\x48\xee\x42\xc7\x3a\x02\xfb\x96\x8a\xd9\xd7\xcf\x29\x11\x34\xf8\x9f\xae\x34\xe6\x16\x27\x94\x0b\x31\x0f\xaa\x7a\x3f\x25\x1c\xaf\x74\xea\x54\x93\xdb\x40\xc8\x7a\x6c\x7b\x5a\xfa\x98\xd3\x34\xd8\x98\x75\x70\x28\xf9\x59\x12\xbe\xac\xde\x15\x9c\x58\xf4\x82\xe0\xd9\xd0\x57\xc5\x65\x14\x4c\x78\x93\xa9\x69\x90\x6e\xb7\x97\x10\xba\xd8\xd4\x89\x2d\xe5\x10\xe1\xbd\x0b\x4f\x7d\x52\x80\x1d\x21\xae\xcb\x9e\x39\x2e\xb1\x9c\xe0\xc3\xe7\xab\xdb\xe8\x2e\x4b\xf8\xfe\xb2\x4b\xdf\xb3\x9c\x9f\x50\x66\x79\x4a\xc0\xd2\xeb\x37\x03\xf1\x5e\xb1\x09\xa2\x25\xc6\x84\x9c\xa5\x37\xcf\x6c\xaa\x48\x63\x22\x8c\xcd\x7c\xd0\xad\x7d\x98\x81\x95\x32\xb3\xe3\x3c\x3b\x9c\x09\x0a\x8c\xbc\xce\x9c\xb0\x8d\x04\x8d\xe8\x6b\x1a\xc5\xb6\xa6\xd3\xb0\x6f\xc1\x2d\xc3\x95\xbe\x6c\x84\xb7\x22\x31\x73\xca\xa3\x97\x13\x06\x32\xcc\x5f\x5d\x1d\xd9\x3a\x0d\xdf\x1e\x36\x88\x98\x0b\xb2\x13\x84\x92\xff\xce\xbb\x89\x7a\x26\xc4\x9b\xbe\x7d\x65\x5c\xea\x66\xe2\x0f\x7b\xb0\xd8\xdd\xeb\xd5\x84\x59\x2f\x9d\x6e\x99\xa8\x14\x12\x4a\xce\xe8\xac\xae\xbf\xfc\x94\x60\xab\x65\xba\xd2\xe7\x4b\x33\xc1\x41\x26\x42\xd6\xe3\x58\x05\xc1\x8f\xe5\xf8\xcb\x2a\x89\x7d\x84\x1d\xfd\xad\x51\x32\x4e\xaa\x84\xf9\x16\xe7\x2c\x7b\x9a\x7f\x32\xd0\xfa\x6e\xb3\xb1\xbf\xab\x1e\x61\xa3\x66\xe2\xb3\x8f\xba\x69\x4c\xdc\x95\x65\x1f\x7e\x98\x29\x40\x63\x3d\x57\xfd\x87\x16\x2f\x26\xec\x90\x9c\xf1\x43\xde\xa0\xbc\x1c\xc3\x33\x5f\x79\x96\xd8\x70\x13\x0e\x26\x07\xf2\x05\x88\x8a\x13\x4e\xcd\x65\x8d\xf5\x0c\xe2\x24\x04\x5e\x8d\xec\x74\xfc\x2c\x46\x10\xbe\xff\x3b\x21\xb4\x9c\x97\x20\xa9\x9a\xa7\xfa\xe2\x03\x27\x61\xc7\x9d\x8a\xf8\xef\x9f\xae\x13\xc6\x9c\x18\x2e\x3f\x27\xa1\xd1\x38\xbc\xd5\xf8\x43\x23\xc1\xa1\xfe\xdb\x9f\xed\x2f\x45\x09\xa1\xdf\xaf\x34\x76\x8e\x2d\x22\xc4\x0d\xce\x9f\xf3\xaf\x8e\x9b\xd0\x75\xb2\xa5\xbf\xb5\xc6\x8e\xf0\xd3\x69\xd9\xce\x45\x15\x0d\x84\x24\xa7\xbc\xcc\x7d\xf7\xde\x10\x76\x0e\xb4\xbd\xfb\x0f\x0d\x0d\x27\x8f\xfe\x07\x83\xbe\xed\xeb\xf6\x4e\x42\xe6\x6c\xb8\xed\xbf\xc1\x34\x82\xc2\x7c\xb9\xcc\xc8\xda\x14\x02\xcf\xba\x94\x1f\x0f\x78\x92\x09\x9b\xf4\x4d\xcc\xe2\x1c\x6d\x08\x1c\xb7\x02\xd1\xf1\x72\x23\xc1\x72\x2f\xe3\x6d\xc8\xba\xb9\x04\xa5\x16\xed\x1c\x4f\xc7\x3e\x06\xee\x48\x47\x3c\xe1\x29\x90\x22\x54\x1d\xb6\xdf\xfd\x6f\x8b\x2a\x61\xf5\x60\x53\x8f\xfe\xfd\x4d\x84\xb1\xaa\x76\x39\xd3\xe3\x32\x84\x54\xce\xc0\x17\xd0\x31\x25\x7c\x49\x2f\xd5\x9e\xb0\xd9\x37\x0d\xb7\x6b\x25\x78\xbe\x7b\xeb\x13\x56\x71\x9c\x17\xf5\x32\x51\x27\xfc\xb4\x51\xb5\xf4\x39\x5e\x4b\x48\x5e\xec\x6f\xaf\x3c\xe3\x34\x13\x7f\xef\xdf\x79\x61\x12\xb6\x98\x90\x77\x8b\xee\xef\xab\x3a\x4e\xd0\xf8\x7d\xbd\x25\xb3\x6b\x33\x81\xe3\xdb\x8b\x2d\xcb\x84\x56\x13\xf2\xef\x50\xe0\xca\x4d\xaf\x09\x55\x41\x5b\xdf\xb5\x56\x1f\x27\xe8\x5c\x96\x34\xfc\xe2\xe9\x41\xb8\x93\xb5\x40\xea\x87\xe8\xf6\xc9\x83\x2b\x92\x5e\xbc\xff\x32\x21\xb2\x88\x5f\xf8\xd4\xf5\x2b\x04\xbe\x03\x0d\xfe\x22\x3f\xac\x09\x73\xc8\x7e\xbf\x6c\x9c\x21\x21\xa1\xa7\xf1\xfc\x87\x75\xe9\x84\x48\xf5\xee\xa3\x2d\x81\xb1\x84\x95\x67\xfd\xda\xed\xdc\x72\x08\x19\xc3\xf9\x67\xed\xbf\x17\x33\x61\x64\xb0\x37\x75\xa4\x7f\x03\x61\x97\x09\x67\x74\x9c\x95\x1a\x21\x50\x7a\xb5\x5e\xe0\x55\x59\x02\x6f\xad\xf5\xcf\x80\x80\xef\x0c\x2c\x78\x12\xbb\x29\xff\x26\x0f\x81\xcf\x2c\xfb\x99\xf7\xa3\xb5\x84\x99\x25\x67\x42\xfb\xb9\x8e\x12\x3e\xc9\xfc\x59\x53\x24\x74\x91\x20\xfa\xad\x76\xf6\xc1\xc9\xd7\xe0\xb9\x17\xd5\x5d\x69\xcd\x86\x04\xd6\xc7\x46\x2f\x26\x42\xb4\x08\x19\xca\x69\x16\x7f\x6a\x74\x08\x3f\x7d\xac\xc6\x49\x41\x87\x70\x78\xdf\x25\x2d\x93\xd7\x2d\x84\x8c\xdf\x75\x1f\x72\x37\xf8\x13\x4e\xaa\x04\xbd\x93\x8c\xb7\x9d\x06\x99\xb2\xde\x5b\x33\xee\x5a\x13\x6e\xdf\xf9\x9e\xac\xeb\x99\x47\x78\xac\x3f\xef\xdb\xf1\x27\x25\x84\x79\x95\xfd\x56\x67\xfd\xb7\x11\xb2\x25\x9a\x3b\xe9\xab\x00\x21\x53\xff\x62\xf7\x4e\x2b\x7e\xc2\xb2\x5d\x8f\x34\xcf\xbe\x9d\x41\xd0\xd3\xfc\xb2\xf5\xcb\x16\x2b\xc2\x8d\xd1\xbf\xa6\x0b\xdf\x37\x97\xc3\xf0\xc7\x57\x7f\xdf\x16\x0b\x02\x8f\x8a\xec\x9d\x97\x69\x6c\x84\x3c\xd6\xcd\xb3\x4f\xb8\x0f\x33\x50\xc3\xce\x3f\x11\x2a\xd6\xce\x80\xa7\xc7\x6e\x4f\x63\xbd\xc1\x69\x58\xda\xee\xfd\xb8\x59\xe4\xe5\x34\xdc\xee\xda\x9e\x25\x77\x97\x9b\xe0\xf5\x7b\x61\xc5\x8d\x46\x07\x42\x89\xcf\x1f\x19\x39\xcd\xed\x84\x23\x5e\x5e\x9b\xf4\x03\x38\x08\x22\x67\x86\xc6\xb8\x25\xdb\xcb\xb1\xcd\x2b\xa2\x2a\x23\x22\x97\x90\x63\xdb\x56\x3a\xf1\xed\x2a\xc1\xec\x45\x5b\x63\x8b\x55\x05\x41\x35\xc0\xe4\x2b\x4f\x99\xfc\xe4\x7b\xa3\xf5\x85\x75\xba\x2a\xe1\xb8\xe8\x42\xb0\x97\xfb\x10\x9e\x0a\x1c\x6a\x7e\xb0\xdd\x9c\xf0\x8c\xef\xdd\xaf\xc0\x42\x4b\xc2\xbb\x40\x4b\x69\x8f\x9b\xdb\x08\xee\xee\xef\x3a\x39\x8f\x56\x12\xec\xc8\x59\x64\x2c\xb5\x8c\xa0\x75\x77\xa1\x73\x7a\x55\x3a\xe1\x43\x97\xb5\x63\xde\xc7\x27\x4c\x1c\x3d\xd0\x8f\xad\x8e\x95\x04\x2b\x5f\xb9\x9f\x61\x93\x2b\xbb\xe1\xea\x78\xe5\x08\x6e\x7b\x42\xd2\xf6\xf6\xd3\x22\x7c\x12\x84\xc7\x99\x69\xab\x1e\xcf\x2e\x2a\x47\x47\xcb\xeb\xc3\x02\x74\x8f\xc0\x10\x7f\x7a\x61\xe4\x5b\x29\x61\xe1\x6c\xd1\x3d\x73\x45\xab\x98\x58\x39\xa3\xd9\x53\xbb\xa7\x94\xb0\xff\xe2\x55\xf7\xff\x46\xd9\xee\xb6\xaf\xf7\x26\x24\x11\xfc\xe3\xfe\x06\xbe\xf4\xab\x21\xd4\xb0\x67\x3d\x3b\xf0\xfc\x04\xe1\xc6\xab\xaf\x97\xce\x7b\xa7\xfe\x5f\xe0\xbc\x96\x35\xee\x2a\x46\xd3\x4a\x5b\xfc\x39\xcd\xec\xbd\x1e\xff\xef\x30\xa1\x79\xa6\xca\xdf\x4f\x8d\x10\x73\x96\xcd\x56\xc5\x92\x85\x50\x19\x77\xc3\xe8\xac\xe5\x62\x82\x4e\xbb\xe5\x56\x8d\xbc\x32\x42\xc9\xc2\x47\xf9\xf1\xc2\x7e\x84\x4b\x7a\xec\xe5\x6f\x3d\x36\x10\x76\xdf\x29\x92\x2d\xff\x62\x43\xe8\xd0\x8a\x15\x39\x6d\x3f\x7f\x1a\xbe\x67\x04\xd9\xd8\xfa\xd5\x95\xe3\xc4\xa7\xeb\x5f\x6c\xb4\xd8\x08\x3e\xa6\xf5\xea\xdf\x4f\x2c\x20\xc4\x19\x19\xfd\xda\x1e\x68\x44\x28\x7d\xf9\xe5\xbe\xad\xfa\x7a\xc2\x5d\xb9\xd2\xe0\xfc\x86\x75\x84\xc4\x2f\x7f\x0a\xf2\x73\x96\x12\x56\x55\xbc\xbf\xff\xde\xf7\xdc\x34\x94\x87\x2e\x4c\xe5\xc8\xe0\x25\xe8\xc8\x06\x3e\x75\x4a\xd2\x21\x44\xa9\x75\x6c\xca\x58\x79\x8a\x89\x83\x07\x8c\x1b\xe2\x19\x1e\x04\x4d\xc5\x48\x81\x59\x33\xc2\x09\x3a\x5e\x3d\x55\xad\x3d\xf6\x84\x0b\xa2\xbe\x66\xfa\xf2\x72\x84\x13\x07\x1f\x3d\xd5\xfe\xb0\x85\x70\x31\xfe\x49\x3d\xab\xb6\x2c\x41\xa7\x25\xbe\x60\xa1\xb9\x38\xa1\x9a\x57\x4d\xc1\x6a\xf6\x2f\x06\x0e\x9f\xcd\x9e\x9f\xd1\xf9\x8b\x81\xb7\x32\x65\x5d\x01\x91\xca\x84\x44\xb1\x74\xfb\xde\x31\x4e\xc2\xb2\x2b\xd7\xdd\x77\xbd\xbd\x45\x50\xfd\x9b\xac\x36\x63\x56\x31\x21\xb0\x5a\xbf\x71\x8f\xe1\x2f\x06\xb2\xde\x64\xbf\xd7\x55\x34\x22\x1c\xac\x17\x5e\xa2\xba\xf6\x39\x41\xf4\x8e\xdc\xc9\x2d\xf7\x62\x99\x48\x74\x6d\x9b\xd3\x62\x2c\x4c\x48\x34\x2f\xf2\x34\x59\x10\xcf\xc4\xbb\x9e\x23\xb2\xa1\xb7\x05\x09\x9f\x5e\xea\x69\xee\xc8\x63\x25\x44\xf6\x7e\x11\x48\xf8\x66\x30\x0d\x7f\x13\xc3\x2b\x2a\xd7\xfc\x28\x47\xc7\xa5\xb2\xaf\x0a\xf3\x52\x09\x07\x2f\x26\x30\x27\xc4\x6d\x09\xdb\xcd\x07\x7e\xde\x10\xfb\xc1\xc0\xcd\xf7\xda\xdf\x07\x7d\x86\x18\x48\xcc\x1a\x38\xd7\xbe\xd9\x9c\x20\x95\x31\x3f\xf5\x92\x15\x18\x78\x68\x17\x73\x43\x47\xeb\x0f\x03\xf3\xde\x3f\xa8\x3d\xd4\x63\x46\xe0\xe8\xfb\xf1\xf8\xd8\x81\x72\x82\x47\x86\xfb\x7c\x1a\x1d\x2b\x87\xe6\x1c\xb7\x8a\x58\x47\x35\xc2\x02\xa1\x00\x05\xd6\x34\x26\xa1\x25\xf6\xc6\x0f\x3c\x2d\x62\x4e\x95\x94\xc8\x8b\xdc\x99\x7f\x1f\x32\x60\xce\x16\xc6\xf4\x62\x4a\x11\xba\x18\xf7\xc6\x4c\x79\xed\x09\x6f\x0c\xe4\x6a\x4e\xfc\x0e\x22\xe4\xd9\x64\xda\x74\xda\x0d\x30\x90\x14\xfa\xf6\xc2\xd8\xd6\x59\x34\x85\x46\x61\x25\xf9\xad\x6b\xda\xcb\xb1\x6e\x83\xa0\x0c\xfc\xdd\x08\x66\xfa\xc2\xb3\xc6\x4d\xad\x08\xab\x6f\xbe\x8e\x7a\x7e\x7d\x26\x81\xed\x93\x45\xf6\xbd\x6d\x8b\x08\x23\xcb\xdf\x57\x16\x54\x79\x10\xfa\xc4\xd5\x35\x8a\xe4\xab\x18\xe0\x7e\x2e\x12\x93\x73\x58\x95\x10\xb1\xea\x84\xb3\xcc\x11\x4f\x9a\x2a\x5f\x33\x13\x43\x6f\x38\x2c\x25\x18\x1f\xe9\x63\x9b\x19\xb2\x92\x10\x95\x23\xda\x6a\x3b\xfb\xe2\x34\x04\xb9\x48\x0f\xb9\x0c\xc7\x12\x6c\x96\xd9\x6c\xf5\x39\xe4\x4d\x70\x4e\x4e\xff\xac\x91\xd0\xce\xc0\xc7\x73\xda\x0a\x3d\x7c\x6d\xd3\x10\xac\xac\xde\x51\x51\xa4\x41\x78\xca\x56\xbd\x31\x30\x4d\x98\x50\xe3\xea\x59\x23\xb8\xdb\x75\x1a\xc8\xf7\xe6\xbb\x7b\x46\x3a\x84\xda\x6f\xb7\x4a\xf6\x59\x4a\x13\x9c\x59\xee\xb1\xdd\x92\x8c\x61\xc2\x67\xff\x8c\xc6\x81\x42\x3b\xc2\xa6\x0d\x15\xc6\x3c\xa7\x17\x13\x56\xbc\xc8\x3d\x97\xdc\xe9\x4b\x38\x70\xc7\x4d\x20\x49\x7c\x3f\xc1\x65\x9e\x48\x0d\x4f\xa3\x04\xe1\x64\xfe\xac\x8f\x1f\x9c\x97\x13\xb2\xd3\xdb\x6c\xbc\x95\x02\x99\xe0\x4d\xf7\x4d\xd0\x13\x35\x22\x18\x0d\x49\xb0\xb4\x86\x28\x10\x9e\xed\xec\x38\xcc\x93\x60\xc1\x84\x78\x6b\x6c\x75\x95\xbd\x2b\xe1\x9a\xa6\x9b\x44\xd5\x1f\x45\x02\xe5\xf6\x6c\x75\x14\x60\x25\x4c\x24\x74\x9b\x2f\xc8\x35\x26\xf4\x3b\xed\x60\xa3\xee\x61\x06\x3e\xd7\x2f\x72\x8c\x1e\xe1\x23\x6c\xf4\x51\xb9\x69\xa5\xbc\x8d\xc0\x25\x3b\xeb\x64\xac\x80\x02\x41\xd1\xe8\xce\xaf\x79\xea\x25\x84\xde\xda\x85\x5c\x8f\x3f\x46\x11\x66\xc9\xbc\xd3\xf9\x37\xa2\x43\xe0\xfb\xc2\x7e\xe4\xa9\xef\x62\x82\xdb\xe1\xa4\x98\xba\xd3\xc6\x04\x7e\x91\x90\x23\x81\x4f\xb7\x12\x62\x6f\xe8\x85\xde\x50\x52\x20\x98\x16\xd6\xce\x5f\x65\xe2\x41\x18\x50\xc0\xdb\x5d\x8b\xf9\x09\x06\x55\x25\x5f\xc4\x75\xd3\x08\x47\xcd\xf8\x14\x3f\xcb\x88\x11\xaa\x4f\xc9\x85\xf6\xbf\x7c\xcd\x80\x82\x99\x93\x67\x0d\x07\x83\xb0\x5c\xe0\x7d\xb8\x53\x84\x02\xa1\x57\x6d\xd6\xb1\xa1\x82\x44\xc2\xc3\x0f\xf1\x75\x91\xdd\x8a\xd3\x30\x2c\xf7\x66\x93\x58\xef\x28\x03\xd2\x8f\x5a\xde\x0d\xa4\x89\x11\x58\xb7\x84\x30\x4f\x81\x9b\x30\xaf\x4f\xb3\xfb\xdb\x85\x7d\x04\x71\xc3\xac\x1e\x7d\xf5\x53\x84\x53\x75\xc7\x05\x65\xaa\xad\x08\x57\x85\x12\xc6\x23\xdc\x36\x10\x86\x8a\x67\x1c\xf1\x9f\x69\x47\x58\x2d\x15\xcd\x7a\x68\x9d\x29\x81\xe7\x32\xca\xfe\xf2\x8e\x33\x70\x1f\x41\x56\xd2\x7e\x4d\xe5\x50\xf1\x9d\xd0\xcc\xeb\xfd\xc5\xc0\xec\xe4\xb5\x51\xed\x1d\xbd\x0c\x70\x65\x3a\xda\x5e\x7f\x2e\x4f\x53\x38\xf2\xb8\xad\xc8\xf1\xba\x06\x61\xf1\xfd\x9d\x3a\xa3\x2b\x67\x10\x0e\x0b\xa4\x06\xe9\x8d\x0a\x10\x78\x36\x14\x6e\x8c\xd8\xaf\x4d\x18\xbd\x35\x30\x76\xa1\x97\x93\x20\xc6\x15\xe4\xf9\xb3\xbb\xb5\x1c\xdd\xd7\x6e\x3c\xda\x59\xb1\x82\xb0\xda\xd9\x7a\x8f\xca\x3a\x4d\x42\xef\x76\xb3\x04\x1f\xab\xaf\x0c\x0c\x0d\xaa\x5e\xed\x67\x4c\x4c\x43\x82\xb6\xce\xae\xf1\xed\x16\x34\x05\x25\xd3\xeb\x87\x95\x45\x6d\xa6\xa1\xe3\xe5\xaa\xc5\xbe\xf9\xf3\x08\x27\x6c\xa2\x37\x71\xde\xfc\xc8\x80\x94\x48\xec\xa3\xbb\xf2\x6b\x08\x7a\x12\xd6\x4a\x02\xbe\xa2\x84\xbb\xa3\xe2\xa7\x6f\x89\xdf\x26\xd4\x29\x04\x29\x25\x8e\x24\x11\xc4\xe2\x4f\xee\xab\x5b\xee\x47\xf0\x3a\xfd\x47\x39\x2d\x26\x74\x1a\x74\x9e\x5c\xff\x92\x54\xb9\x9a\x60\xd2\x12\xfe\x69\xf3\x72\xc9\x69\x65\xff\x82\x0f\x4f\x3e\xbc\xfd\x5e\x0e\xc7\x5c\xb9\xb8\xd8\xd6\x12\xc2\x85\x25\x7b\x64\x05\x2d\x2a\x09\xbe\xf7\xef\xaf\xd6\xb4\xb1\x24\x8c\x5f\x3b\xc7\x73\x30\xce\x8d\x50\x5e\x7e\x9c\xb3\x31\x6f\x2f\x81\xa7\xf5\x31\x6f\xd9\x32\x1b\xc2\x6c\xf7\x23\xbe\xfd\x19\x2e\x84\xf5\x46\xa9\x6f\x7e\x48\x3a\xd3\xd8\xe1\xfb\xbe\x2f\x43\xab\x08\xab\xcd\x47\xef\xff\x87\x67\xf3\xba\x92\xff\xc3\x40\xee\x5f\xb1\x57\x1e\xb7\x09\x7c\xc9\x3e\x2b\x66\xfd\xba\x4d\x58\x9f\xb3\xea\xc0\x1f\x9e\xfb\x84\x1d\x0f\x74\xef\x2d\xd5\x1d\x21\x44\x8f\x3f\xcb\x5c\x38\x89\xd0\x12\xff\xaf\xe6\x61\x3f\x08\xdb\x75\x85\xb4\x5b\x3a\x9f\x13\xee\x3d\x56\xbd\x13\x6e\x7d\x9d\x70\xbf\x47\x8a\xe3\xd6\x6e\x73\xc2\x5d\x01\xd6\x0a\x61\x6d\x6d\x42\x99\xeb\xce\xec\xa6\xe2\x12\x26\x36\xde\x57\x55\x9c\x58\x70\x8a\xc0\x3e\x7c\x59\x6e\xfe\xdb\x26\x06\xa2\x4b\x96\x5e\xcf\x98\xa1\x4e\x53\xd0\x72\x97\xdf\xeb\xec\x6c\x4e\xd8\x76\x65\xd7\xd3\xda\xc5\x9a\xd3\x30\x73\x7d\x48\xec\x91\x35\x89\x84\x57\xf2\xcd\xcf\x2e\x6f\x8a\x27\x44\xd5\xb1\x9c\x8c\x5a\x7d\x98\xf0\x6c\xad\x4e\x83\xfa\xd0\x16\x42\xb7\xf9\xdc\x7d\x55\x5e\xf2\x84\x55\xbb\x12\xbe\x95\xdd\x13\x20\x44\x6f\xe3\xbe\x9e\x29\xb4\x95\xd0\x6f\xf1\x51\x77\x3f\xaf\x23\x81\x67\xb4\xa6\xfb\xd2\xb2\x1b\x84\xb9\xfa\x5f\x0d\x24\x6d\x2f\x31\x11\x53\xb6\xc5\x82\x71\xe9\x34\x81\x3d\x31\xb1\x3c\x25\x76\x1b\x21\xcc\x6e\x0e\xbb\xdd\x5f\x5e\xc2\x1f\x6b\xf5\xef\xd5\x36\x61\x84\x5a\xc5\xec\x10\x7b\xb1\x65\x84\x22\x21\x57\x96\x17\x2b\x17\x12\x5e\x1f\x53\x6b\xec\x3d\xbe\x82\x10\xab\xa8\xa6\x94\x3e\xb1\x96\x60\x9e\xfa\xe3\x72\x5d\xb3\x30\xe1\xc0\x9a\xfd\x97\x43\x96\x8b\x11\xb8\x3e\x34\xc5\xbe\xfb\xb3\x82\xa0\xf9\x33\x5e\x3a\x62\xdd\x72\x42\x56\x10\xcb\x18\xd7\x67\x7d\x82\x94\xa5\xc3\xc3\x33\xdb\xc7\x18\xf8\x2c\x99\x2f\x71\x3c\x58\x88\xe0\x6a\xba\x8e\xb9\x45\xfe\x17\x03\xbf\xce\xcc\x5b\x25\xfb\x7e\x15\xe1\xda\x1b\x5d\xae\xf6\x03\xea\x04\x61\x09\x28\xd9\x59\x9b\x12\xa2\x35\xa2\x1f\x93\xb8\x14\x61\xc8\x75\x99\x67\xf8\xb7\x26\x06\x9e\xcc\xda\xb9\x66\xe5\x2d\x43\x42\xc3\xc1\x45\xae\xa6\xe3\x6b\x09\x09\xd6\xf6\xca\x56\x4d\xba\x84\xa6\x9b\x0f\xaf\x9b\xcc\x10\x23\x18\x3e\x57\x71\x71\xce\xd6\x98\x86\x2a\xb1\x98\x02\xdd\x47\xdf\x18\xd8\xdd\x39\x77\x95\x99\x8e\x12\xc1\x66\xf5\xe1\xea\x19\xf2\x1b\x08\x1b\x56\x66\xab\xaa\x0e\x4a\x11\xb8\xf2\xae\x25\x88\x8e\x36\x97\xe3\x83\xbd\x78\x05\xdb\x0a\x4b\x42\xa2\xa1\x92\xa7\x40\xcb\x2f\x02\x93\xe9\xc0\x1b\x3e\x6b\x90\x70\x53\xe1\xfb\xb3\xba\x92\x7e\x82\x54\xb6\xf2\xab\x80\xce\x2e\xc2\xc5\x58\xa3\x0b\xbe\x93\xf8\x62\xb5\x70\xe1\xcb\xd7\x6d\x84\x1b\x6d\xf5\x27\x6e\xb8\x27\x12\xdc\xc5\xb7\xed\x58\xc5\xb5\x9b\x70\xc0\x71\xef\xaa\xd4\x47\x0f\x98\xf0\xda\x3e\x6b\xc6\x77\xbf\x2f\x84\x03\xdb\x56\x89\xae\x2e\xff\x4c\xd0\x99\x70\x5c\xd5\xde\xf5\x86\xf0\xea\x52\x83\xc5\xb0\x41\x35\x41\x8c\x7d\x6f\x55\x61\x65\x32\x21\x84\xbf\xb8\x32\x33\xdc\x9b\xa0\xc2\xcd\x9e\xb8\xe4\xb2\x2a\x21\x59\xf4\x76\xc9\xdb\x56\x29\xc2\x3f\x15\x8e\xb0\xbf\x7a\x96\x84\x0c\xf7\xea\x98\x4b\x8b\x34\x08\x31\xef\x1e\x96\x1b\x86\x68\x10\x5e\xab\xc4\xc5\x27\x0e\xb5\x30\x50\x51\x5d\x9f\x24\x67\xf6\x89\x81\x09\x9b\x1f\xa3\x72\x2b\x93\x68\x0a\xcf\x7a\xf9\x24\xe4\x27\x71\xa4\x23\xc6\x30\x30\x67\xcb\xff\x85\x70\xef\xa2\xe7\x25\x7f\xde\x97\xa3\x83\xd7\xf2\xe3\xde\xf8\x1c\xc2\x2a\x7f\x99\x90\x89\xc3\x79\x34\xc6\x16\xcd\xb5\x76\xf2\x90\x9b\x1f\xf8\x10\xa2\x34\x89\x85\x4d\x1c\x77\x72\xbd\x62\x08\x37\x2c\x27\x04\x35\x17\xc6\x13\xec\xf4\x93\xdd\x62\x72\x52\x08\xf1\x3b\xb4\x8e\x6f\x8f\x34\x26\xec\x7c\x7a\x49\x9d\xdd\x75\x39\x81\xb7\xc2\xe6\x97\x95\xc6\x79\xc2\xf9\x7f\x35\x63\x89\x93\x1b\x6d\x68\xaf\xb3\x64\x5d\x58\x18\x61\xbf\xde\x9d\x92\x6e\x75\x7b\xc2\xef\x8a\x19\x17\x4a\x0c\x27\xaf\x18\xb5\x9c\xfb\x57\x74\xd7\x10\x02\x92\x2e\x9e\x6f\x78\xb9\x89\x50\xf0\x6b\x89\xca\x36\x1e\x75\x82\xd1\xa5\xaa\x3e\x51\x73\x41\x42\xa5\xe9\xdf\xf0\x4a\xb9\xf0\x69\x10\x61\x17\x7b\xe3\xf1\x2f\xb4\x1c\xad\xb7\x7a\x82\x5f\x79\x3f\x27\x9c\xe5\xd9\x2c\xa1\xb5\xb5\x80\x09\x9f\xca\xb5\x2a\x21\xd7\xff\x30\xb0\x8e\xfd\xbe\x99\x86\xdb\xc7\x69\xd8\x55\x36\x03\x11\xbe\x35\xe5\xe8\x8d\x8a\x12\x8e\x5b\x1b\x41\x78\xb0\xe4\xe7\x80\xd3\xca\x00\x26\xf6\x0f\x18\xcc\xcc\x9d\x08\x24\x78\x3c\xf2\x4f\xd9\xb7\x4e\x90\x20\xf8\x6c\xb0\xbf\x8c\x5d\x91\xb0\xe4\xf1\x33\x19\xf9\xa3\xf9\x04\x36\xd1\xba\xca\xa2\x65\x76\x84\xdd\xc3\xbd\x87\x8a\x86\xbf\x32\xa6\x60\x54\xbd\x48\x42\xfb\x3b\x17\xe1\xde\x0d\x46\xed\xe2\x78\x0b\x42\xe9\x1a\xa9\x20\xaf\xf9\x5b\x09\x1b\x07\xf7\xd5\xef\xda\xe4\x49\xb8\xd7\x73\x51\xe9\xc1\xfe\xad\x84\x10\x99\x5f\x58\xb1\x5f\x87\x90\x92\xc0\xf4\xbb\x9c\xa7\x44\x38\x27\x70\x21\x6e\x30\xf7\x0d\x03\xda\x8b\x77\x26\x5b\xdb\xf0\x12\xae\x34\x89\xaa\x8b\xe5\xaf\x22\xe8\xe8\x69\x77\xcd\xfb\xb7\x83\x09\x2e\x25\x6f\xc1\xd0\x3b\x5c\x04\xe3\x25\x6e\xd1\xb3\x12\x94\x08\x7f\x63\xc6\xf5\x07\x4e\x54\x10\x82\xb7\x6e\x7f\x70\x92\x4f\x99\x89\xbf\x7f\xa2\xb8\x5f\xed\xca\x24\xd4\x99\xf8\x3d\x0c\x34\xab\x22\xfc\x7c\xb8\x63\xec\xbf\xa2\xeb\xc7\x17\xa5\xbb\xdc\x9c\xf0\x2a\x47\xbf\x92\x53\xe6\x06\x41\x2c\x58\x45\x5a\x5c\x26\x97\xe0\xf8\x7b\x46\xd5\x4a\xc3\x7e\x06\x4c\xae\xbb\xfe\xfe\x62\xf3\x98\x50\x21\xba\xe5\x42\xac\xc9\x23\x82\xca\xd0\x8f\x85\xe9\xca\x29\x84\xf4\xda\x5d\x9c\x0e\x47\xb2\x09\xbd\x75\x9d\x9b\xad\x5c\xcf\x10\x78\xab\xa3\x02\xab\x3e\x5e\x24\x94\x1c\xb7\xc1\x38\x6f\x2c\x61\xaf\x8d\x85\xc1\xfb\xab\xcd\x84\x6f\xf1\x37\x68\x85\x71\x15\x13\x5a\xe7\x5d\xd8\xfc\xe2\x0f\x13\x6e\xfc\x75\xac\x58\xb0\x82\x8f\x30\xfb\xbd\x77\x40\xf0\x0d\x39\x42\x11\x7f\xfc\xf0\xd9\x98\x5c\x26\x62\xb4\xd9\x8c\xfa\x19\x01\x4c\x7c\xc8\x4a\xe3\x0f\x8e\x7d\xc3\x80\xf1\x72\x1a\xdd\x73\xed\x26\x21\xb3\xae\xfc\xf8\xde\x49\xd4\x9d\x8d\x8f\xd3\xff\x95\xc1\x9c\x2a\xf9\xe6\xdd\x37\xfd\x36\xee\x21\xb4\x6f\xb7\x0e\xc6\x86\x3d\x84\x2f\xb7\xe3\xf5\x92\x38\x8f\x4d\x2b\xff\xbf\x58\x9a\xc3\x99\xba\xb1\xc9\x97\x10\xd8\xff\x23\x34\xf5\x84\xdf\x34\x2c\xba\xc3\x16\xff\xfa\xe6\x66\xc2\xc2\x46\x16\x27\x27\xd7\x12\x26\xd8\x17\x86\xb7\x17\x19\x86\x10\x76\xb5\x9e\x0c\x4a\x55\xf5\x22\x08\x7a\xfb\x7b\x6d\x91\xd8\x40\xa8\x62\x1b\x35\xe3\x52\x70\x63\xe2\x9b\xff\xd0\x73\x9b\xf9\x4e\x84\x07\x55\x4f\x5d\xfe\x4e\xc4\x13\xfa\x0f\xb9\xb4\x86\xde\x7e\x4c\xc8\x6c\x74\xfe\x1e\x36\x89\xf9\xc7\xbb\x02\xc3\x27\xe1\xa1\xbe\xf8\x0e\x67\x74\x15\xe1\xc1\x65\xee\xf8\xf8\x17\x61\x04\x69\xdb\x74\xd6\x9d\x83\x12\x84\x1d\x25\xe1\x25\xcf\x82\xff\x32\xf0\x27\x75\x05\xcf\x57\x45\x21\x02\xd7\x67\x4b\x35\xa7\x34\x2e\xc2\xfb\x46\xcf\x60\x29\xbf\xdb\x84\xb0\xbf\xb9\x8b\x95\x9a\x4b\x09\xf9\x6d\xa7\xaf\x05\xcf\x5a\x44\x58\xc7\x54\x8b\xe0\x2f\x51\x26\xdc\x1e\xbd\x9c\xec\xbd\xc4\x70\x1a\x38\x1b\xb7\x69\x1e\x18\x9e\x60\xa0\xbf\xb1\x75\xe9\x4f\x5b\x37\xc2\x91\x62\x96\x9f\x0b\x5b\xaf\x12\x1a\x0a\xc7\xce\xed\xd6\xc8\x27\x38\xac\x9a\xe3\x7c\xbc\x45\x91\xd0\x1d\xe3\x90\x3d\x20\xe7\x4a\xb8\xe3\x17\xb5\x41\x95\x5d\x9f\x50\x39\x1e\x9d\x73\x3d\x85\x95\xb0\x6c\xa0\x5a\x33\xed\xc1\xec\x69\x48\xda\x31\x62\x32\xec\xc8\x42\xd8\x6d\xa0\xf6\x40\xd8\x4b\x89\x20\x12\xb3\x61\xf9\x36\x11\x5d\xc2\x6b\x3f\xd9\xfb\xc6\x1d\xa6\x4c\x94\xa2\x8e\x85\xf3\xdc\x6d\x82\x86\x64\x13\xb7\x68\xe5\x6d\x82\x6e\x8f\x7d\x82\xcd\x43\x75\x82\x66\xf0\xea\xd0\xbe\xb1\x42\x82\xd5\xe8\x85\x8f\x99\x2c\x95\x84\xa7\x91\x1a\xec\xb3\x3d\xa2\x09\x73\x3f\x0e\x7f\x94\xda\xc4\x24\x74\xac\x12\xda\xea\xbd\xbc\x98\x20\xa7\x27\x71\xb6\xdc\x20\x92\xf0\x54\x5c\xa2\x57\xe5\xf5\x63\x26\x7e\xf6\x1d\xf7\x3c\xf1\x23\x82\xa0\x6b\x74\xf0\x6a\xc0\x9e\x48\xc2\x57\xfd\x67\x92\x65\xce\x31\x84\x56\xd7\x75\x02\xd7\x5d\x6b\x08\xfc\x9b\x9b\x62\xd4\x55\x2a\x99\xd8\xd9\xf0\xf6\x31\x3f\x4f\x0c\xe1\xa0\x6b\x67\xe9\x8d\x8d\x79\x04\x4a\x7c\xba\xd4\x82\xed\x2a\xe1\x6f\xc5\xdf\x5d\xfc\xab\xc3\x09\x57\x7c\x1c\x4b\x3d\xe7\xdd\x63\x22\x56\xeb\x55\x89\x57\x54\x01\x13\x47\x65\x2a\x7d\x67\xff\xa9\x26\x94\xed\xd7\x4a\x68\x9f\xc4\x40\x4b\xcf\xc7\x47\x96\x1d\x4c\xbc\x19\x19\x3a\xcd\x6a\x52\xc9\x44\xd6\x11\x69\xbd\x4b\x59\xd5\x84\x9d\xe5\x29\x8b\xde\x18\x57\x32\xa7\xfe\xf8\x7f\x98\xcd\x7f\xe3\x46\x7e\x8d\x2b\xc1\xd1\x3e\xf4\xd3\xbb\xa7\xe7\x98\x60\x8b\x95\x78\x77\xa3\xc3\x8d\x20\xbe\x5e\x66\xb6\xb3\xf3\x31\x82\x74\x66\xd2\x52\x15\x03\x37\x42\x7a\x3f\x0f\x67\xe2\x71\x37\xc2\x1c\x99\xe3\xff\xfa\x85\x37\x13\xd6\xb4\xac\xde\x2f\x38\xfe\x9a\x70\xc9\x30\xc1\x73\xe7\x93\x12\xc2\x31\x77\xa1\x9e\x53\x42\x57\x08\xde\x77\x2d\x93\x67\x56\xbe\x20\xa0\x29\xca\xc6\x34\x39\x9c\x90\x14\x73\x28\x36\x39\xd5\x92\xd0\x25\xd8\xb5\xda\x67\x4f\x3e\x13\xe9\x0e\xc7\x4c\xb5\x1e\x9e\x22\x78\x49\x5d\x2a\x28\xc9\xbf\x4d\x88\xc4\x4c\xb5\xb9\xc5\x7e\x4c\x1c\x37\x67\x8f\x4c\x4b\xcb\x23\x94\x24\x49\x3c\xd7\xab\xa9\x61\x82\x2d\x25\xca\xe1\xc5\xa5\x76\xc2\xc0\x21\xc5\x46\x9e\xf0\x18\x82\x82\xa1\x75\xfa\xc3\xad\x4c\xc2\x09\x97\xcb\xee\x52\xbb\x57\x11\xfc\x14\x0f\xd8\xbe\x36\x12\x26\x6c\x0c\xe8\xbb\x33\x7e\xee\x1f\x03\x1d\x27\x5a\x85\x64\xa2\xf3\x09\x6a\x99\x6f\xec\xf8\xe4\xab\x08\x35\x8c\xad\x51\x31\xd9\x55\x4c\xe4\xb4\xf4\x6a\xb5\x76\x77\x32\xb1\xfe\xbd\xfe\x3f\xed\x1f\x39\x04\x1e\x6b\xcb\xa3\xab\x26\xfe\xfb\xb5\x86\x99\x9e\x91\x33\x2f\x12\xd6\xcf\xdc\xaf\x60\xed\x62\x4d\x60\x0a\x38\xcb\x6e\x2b\xb2\x22\x0c\x2c\xfd\xfd\x61\xf6\xcc\x41\x06\xea\x4b\x9f\xd7\xe7\xeb\xd9\x11\xac\x58\xaf\xec\xf6\xac\xaa\x24\xec\x2e\x64\xf9\xc5\xfa\x2d\x9d\x30\xf2\xcd\x60\xfd\x7b\x39\x26\x13\x0d\xde\x49\xab\xc3\xef\x6c\x26\xe8\x7f\x7d\xef\xc2\x90\x5c\x43\xd8\xb6\x72\x38\xc6\x49\x82\x41\x68\xc8\x0e\xdd\x7e\xed\x68\x1e\xe1\x55\xb7\x55\x77\xd0\xe1\x53\x4c\xa8\x59\x79\x85\x58\x7e\x0d\x25\x18\xa7\x6b\x55\xeb\x86\xde\x25\x44\xf0\xe4\xa5\xf8\xc7\x78\x12\xb2\xca\x0f\x49\xa8\x86\x15\x10\xae\x32\x0f\xde\xfe\x2b\x54\x40\xf8\x67\x17\xb5\x3e\xb0\xe2\x21\xe1\x7c\xfd\x5e\xcf\x93\x59\x4e\x04\x65\x7b\x53\xb1\x6d\xc9\x75\x0c\x1c\xf3\x28\xa8\x6c\xdb\xb7\x85\x90\x52\xd1\xaf\xfd\xa6\xcb\x8c\xd0\x26\x73\x77\xa4\xd1\x38\x83\xa0\xb2\x4a\xf0\x37\xab\x45\x06\xa1\xd7\x74\x60\x98\x6d\x12\x39\xa7\x0a\x4c\x2f\xab\x6d\x9f\x86\xf0\xbf\x19\x29\xb7\x2e\xed\x20\x60\x22\x73\x54\x74\xf4\xd8\xb4\x72\x60\xdd\x88\x4c\xdb\xe4\x5a\x17\x1f\xf7\x9b\xc3\x32\x23\x98\x90\x11\x35\xff\x72\x2d\x6b\x7d\x39\x7c\x36\xf0\x49\xd6\xc7\x16\x12\xd4\x1a\x74\x2c\xfe\xbf\x61\x9a\xdb\xf8\x6b\x79\x78\x05\xa1\x10\x5f\xe6\x89\x4e\x62\x99\xd6\xc4\x8a\xff\x3f\xd0\x39\xb2\xe1\x95\x73\x45\x00\x73\x6c\x67\xb2\x58\xed\x3b\x37\x42\xb7\x9f\x4d\xa2\x67\x9b\xf5\x54\xd8\xc4\xd1\xad\xb4\x33\x79\x2b\xfd\x2f\xdc\x62\x2c\xbb\x90\x68\xaf\x4f\xe8\xb0\x56\x29\xe2\xcb\x2e\x22\xac\xd8\x63\xe9\xda\xfe\x79\x98\x81\xae\xf9\xeb\x83\xd4\xf7\xbb\xd0\x14\x8c\xec\xcc\x07\xd8\x7a\x2f\x10\x7e\x65\x6e\xf3\x2d\xfc\x5c\x49\xd8\x73\xe3\xfd\xb3\x9d\xea\xb5\x0c\xe4\x77\x6c\xfe\xe7\xd6\xce\xa0\x29\xac\x19\xda\xad\x14\x15\x2c\x37\x0d\xd1\x5a\x49\x55\x4f\xfc\xe6\x10\x7e\x46\x5e\xde\x5c\x74\x4f\x99\x60\x9d\xbd\x65\x4b\xe9\x47\x33\x02\xf7\x7a\xa5\x64\xb6\xe7\x5d\x0c\x5c\xab\xbf\xe3\xcd\xb3\xf3\x3c\x13\x5c\xdf\xe4\x47\x96\xd5\x67\x11\xd8\xef\xcd\x68\x17\x9c\x84\xe4\x95\x87\x9e\x9c\x1c\xc3\x84\xb2\x74\x17\x1d\xed\xce\x2c\xc2\x85\x5a\x7f\xf3\xa2\x7b\x65\x84\xdb\x4a\x15\xdc\x27\x93\xee\x10\xb6\x0d\x38\xa4\x58\x05\xc9\x12\xde\x45\xcf\x98\xe5\xc1\x3d\x7f\x1a\xcc\x3d\x05\x1a\x37\xbe\x1c\x63\x20\x7a\x85\xa5\xd1\x0d\xf1\x2c\xc2\xef\x23\xfc\x81\xb1\x47\xaf\x12\x6e\xa5\x9c\xff\x31\xae\x1c\x4a\x50\xb8\xbb\x5a\xb8\x33\x44\x9e\xb0\xa1\x76\xb9\x4d\x9b\x90\x02\xa1\xf9\xf2\xdf\x87\x97\x3f\xaf\x25\x28\xdd\xda\x71\x4b\xb7\xa9\x92\xf0\xd8\x6d\xd7\x52\x96\xda\x4a\x82\xe3\xe9\xb9\x91\x21\xfe\x79\x4c\xc4\x0f\xf8\x57\xfc\x37\x52\x2a\x74\x79\xe9\x97\xb9\x65\x1a\x8e\xf0\x9d\x75\x92\x4d\x0e\x22\xb0\x16\x8d\xea\xae\x6d\x2a\x25\x48\xc5\xea\x8c\x88\xa4\x67\x11\xb2\x3e\xed\x58\xb6\x6b\x5f\x31\x81\xf3\xc7\x8a\x1d\x8a\x93\xa3\xcf\x9a\x15\xae\x76\x2b\x74\x08\x15\xc2\x8e\x1d\x51\xeb\x38\x08\x8b\x8a\xe6\x5c\x8b\xe8\x2f\x24\xdc\xbb\x9e\x77\xfc\xf4\x24\x0a\xe4\xe5\xd7\xb9\xda\xf1\x13\xbc\x65\xaa\x8f\xaf\xdb\xbd\x94\x10\x9d\x68\x5e\x75\x6a\xdd\x03\x42\x67\x7c\xe0\x82\xfb\xbb\x8e\x31\xd1\x16\x65\x94\xad\xdd\x55\x43\xb0\x96\x3d\x32\xf0\xdf\xe8\x03\x63\xa1\xa3\xef\xe4\xe7\xf9\x1f\xf6\xbe\x0d\xde\x65\xdb\x59\x46\x58\x5f\x96\x7e\xe0\xd4\xce\xf3\x84\xb6\x32\xc9\x05\xff\x15\xfb\xca\x27\x9f\xbc\x2f\x89\x10\xb8\xaf\x5c\x18\x94\xf8\x7b\x99\x70\xc6\x98\xcd\x92\xbb\x5b\x6e\x1a\x6c\x0e\x06\x7c\xb6\x0e\xb4\x21\xc4\x75\xf9\x89\xf7\xdd\x60\x25\x88\xbb\x21\x43\x69\xa6\x1b\x21\xf1\xa8\x5a\xd1\x44\xc8\x0e\x42\x7e\xa4\x62\x3d\x93\x5b\x92\xc0\xfb\xc7\xc6\x42\x3e\x94\x9b\xf0\x3b\x57\x9e\x6d\x98\xdf\x8a\xb0\x9e\xf3\xd5\xd9\x15\x72\x57\xa7\xc1\xe2\xec\xf7\x94\xa6\xb6\x0c\x42\xf6\xae\x3e\x95\xe3\xd6\xd2\x84\x4f\x0e\x6a\x77\xb8\x59\xc2\xa7\xc1\x80\xd9\xdc\xfc\xee\x93\x0f\xe1\x98\xd7\xb5\xf1\x4b\x2e\xc3\x0c\xa4\x08\x73\x2f\xd7\x3a\x6e\x4b\xb0\x74\x9b\x50\x6d\xa9\xdb\x4c\x50\x90\x3e\x7b\xb5\xfb\x09\x3f\x21\x5c\x8d\x83\xe7\x81\x06\x17\x21\x23\x40\xff\xc7\xfc\x1f\xb7\x08\x06\xe3\x65\x23\x07\x57\x1a\x12\xcc\x5a\x8c\x04\x35\x1b\x9c\x09\xdb\x24\x35\xff\xb9\x86\x38\x10\x6a\xe7\x5b\x8e\x5a\x8a\x58\x10\x6c\x1a\x54\xed\x7a\x9e\xaf\x27\xac\xa1\x38\x9f\xdb\x6f\x66\x11\xce\x8c\xd6\x6c\xaa\x58\x7e\x98\xd0\xf0\x5a\x46\xc8\xe6\xb6\x3e\x81\xa7\x40\xe6\xd9\xe9\xd5\xeb\x09\xff\x3e\xe4\x1e\x96\xb6\xfa\xc9\x00\xdb\x98\xd3\xc1\x75\x69\x91\x84\x13\x95\x5f\x7e\x88\x4d\xde\x6f\xdb\xff\x15\x3f\xe1\x1c\x29\x67\x22\xe5\xc4\x79\x2d\x5d\x05\x6d\xc2\xa6\xcf\x83\xe1\x8a\xa9\x47\x09\xdf\xb3\x78\xc5\x36\x3d\x95\x23\x34\xf2\xf4\x3f\xbc\x5e\xf3\x8b\x01\xda\x54\xbf\x39\xea\xb8\x3a\x4d\xc1\x60\xee\x77\xfb\x7c\xf3\x7a\x06\x84\x8a\x92\xd4\xbd\xf2\x36\x13\x7e\xbb\xe5\x49\x6d\x35\x7d\x4a\x50\x58\xff\x91\xa7\xf7\x6a\x21\x21\xa1\x58\xf1\xaa\xe9\x64\xf9\x12\xe7\x90\x6a\x3c\x89\x02\x9b\xfd\xb5\xaa\x93\x57\xdf\xff\xf0\xbb\xa1\x40\xda\xa0\xb6\x8e\xf0\xe4\xc8\xe7\xe2\x85\x35\x75\xd3\xca\x11\xf7\xaa\xf3\xe2\x7a\x15\x84\x63\xa9\x65\x9e\xdb\xe7\xef\x26\xd4\x5b\x66\x96\x0b\x24\x4b\x12\x70\x53\x42\xb6\x3a\x50\x98\x10\x19\x25\x38\xeb\xb1\x65\x21\x13\x9c\xf9\x72\x4b\xf6\x5e\x3c\x4e\x28\x2a\x72\x97\xd2\x6d\xf8\xc3\x80\xdd\x3c\xb7\x43\x8e\x1e\x6c\x84\xc1\x42\x77\x2b\x57\x29\x39\x42\xd5\x92\xf6\x3e\x3a\x21\x43\x38\x1b\x61\x58\x90\xd9\xd3\x4d\x90\x37\x28\x99\x30\xe0\x28\x26\x68\x75\x9f\xf8\xea\xb7\x2d\x8c\xc0\xfe\x67\xdd\x9c\xd4\xe6\x99\x04\x19\x0f\x1f\x6d\xfe\x80\xad\x04\x63\x6e\xe5\xb8\xc0\xcd\xfc\xd3\xd0\xfa\x7b\xde\x1a\xf3\x4f\xf7\x19\xb0\x8f\xfe\xcc\x72\xd9\x5b\x87\x30\xe8\x6b\x56\xe1\xf9\x20\x9e\x50\x97\xfa\x49\x62\x46\xa1\x3e\xe1\x42\x59\xfb\xf8\x7d\x91\xcd\x84\xb7\x17\x96\x3e\x8b\x5b\x32\xce\x40\xa7\x42\xcf\xd6\xce\xd0\x72\x82\x75\x50\xb8\x7f\x36\x5f\x0f\x41\xf0\x21\xa3\xf9\xb6\x40\x0f\xe1\xdc\x71\x6f\x86\x8a\x4b\x3e\x13\x3b\xe4\x2d\x9e\x34\xff\xf4\x24\x74\xc4\xe4\x73\x44\xf3\x6e\x24\x2c\xfb\xbb\x86\x23\xf0\x71\x39\x13\xed\xfe\x8c\x93\xda\x86\x81\x84\xcf\x2a\x16\xb1\x17\x84\xf8\x09\x6f\xd7\x31\x0d\x22\xd3\xcc\x08\x81\x99\x47\xf5\xae\xb6\xa8\x13\x14\x7b\x0d\xa8\xc7\x5e\x84\x10\x2a\xe9\x28\x5b\x94\xd4\x4b\x38\x13\xee\x90\xb8\xbe\x6f\x90\x81\x6b\xce\xcc\xbd\x0b\xd8\xd8\x09\xf1\x97\x99\x1d\x61\xd2\x2c\x84\xc6\x80\xcf\xec\xf9\xb2\xf3\x09\xd6\xff\xcc\x4d\xb5\xf8\x45\x09\x6b\xc6\x35\xed\x2f\xcc\xb9\x49\xc8\x8d\x51\xc9\xd9\x7c\xb1\x85\x81\x5a\x43\x13\xc7\xcd\x32\x3c\x84\xea\x27\x19\xc2\x9f\xff\x70\x10\x56\xfe\xfe\x70\x75\xfc\xf2\x26\xc2\xfe\x52\xf6\x02\xd9\xf2\x9d\x04\x4d\xc1\x92\x93\xbe\xbd\x2e\x84\x05\xc2\xa7\x84\x68\x7e\xd8\x34\xc8\xfe\x5c\x9d\xe9\x7e\xef\x03\x03\xde\x66\x3f\xaf\xf2\x4c\x94\x13\x52\xef\x47\x47\xa8\x47\x84\x10\xb4\xd2\x52\x7b\x66\x1a\x74\x11\x16\x2d\x51\xc9\xbf\xd5\x5c\x45\xe0\x38\x98\xcb\x54\x97\xfc\xce\x80\x92\x8a\x8a\xe7\x17\xbd\xe5\x84\x3f\xa3\xec\x7e\xa7\xc3\x74\xa6\x41\x20\xc8\x64\xff\x16\x9d\x61\x06\xa2\x95\x7a\x8e\x76\x9d\x09\x23\x3c\x5f\xdc\xe6\x91\xe1\xbf\x86\x50\x7e\xd6\x6f\x8e\x47\xf0\x72\x42\xd9\xce\xdc\x80\x65\x12\xbb\x09\x8a\xa1\x37\xa3\x1e\xa6\xf2\x11\x22\x57\x36\x6b\xff\x7d\xb5\x8a\x20\xb3\x39\x5f\xd0\xfb\x60\x19\x03\xeb\xef\x57\xee\xb2\xb7\xf8\x31\x0d\x32\x45\x2c\x3e\x01\x1e\x83\x0c\x54\x3d\x94\xbe\xc9\x93\xa1\x45\xe8\xf2\x7a\x91\xbd\x5a\xd5\x81\x90\x7a\xab\x3f\xd0\x03\xba\x84\x34\x2f\x13\x65\x23\x0e\x03\x02\x6b\x70\xb1\x49\xd8\x19\x01\xc2\xf7\xc3\xb9\x73\x56\xae\xe1\x20\xdc\x93\xdd\x2b\x92\xc2\x7a\x9d\x10\x5b\xbd\x7d\x5f\x40\xc3\x6d\xc2\xbb\x70\xe7\x87\x3b\xd2\x0e\x31\xd1\xbe\xc2\x38\x3e\x90\xfd\x09\x81\x6d\xcf\x2c\xc3\x3e\xfd\x19\x84\xa3\xb7\x67\x2d\xf8\x72\xf9\x16\xe1\xf0\x5d\xff\xdb\x9e\x83\x27\x08\xf6\x2b\x9f\x09\x89\xce\x38\x4e\xd8\xcb\x32\x58\x20\x36\x2c\x4c\xd0\x95\x5b\x21\xda\x37\xa1\x43\x78\x31\xcb\x73\x93\x97\x6d\x3a\xc1\xbe\xb3\xc1\xc5\x3a\x6b\x29\x41\xf2\xc7\x4b\xde\xd9\x6d\x2b\x09\x23\x4d\x1a\xc5\xb5\x6b\x79\x08\xbf\x37\x69\xd6\x8f\x26\xfc\x64\x20\xbe\x24\x42\xe2\x41\x1b\x17\x21\x7c\xce\xe0\xac\xea\xf4\x3e\x06\x4c\x0e\xad\x64\x1d\xe6\x66\xa7\x29\xf8\x2e\xa8\xac\x50\xca\x60\x21\xa4\x1b\x97\xe4\xee\xb3\xa8\x60\x62\xcd\xcb\xaf\x61\x07\x9c\xb7\x13\xf6\x64\x35\x7e\x1b\x95\x88\x20\x94\x26\x0a\x4b\x99\xbd\x59\x32\x0d\xec\x22\x06\x66\x4b\x8c\x86\x18\x90\x7f\xbd\xc8\xa3\xd2\xb5\x82\x70\x53\xb0\x81\x5b\x2d\x37\x8f\x90\x29\x99\xdd\xe6\x15\x7b\x87\xf0\xe2\x7c\xa7\xd8\xb8\xa6\x04\x61\xd4\xe1\x86\xfb\x8f\xf4\x87\x84\x36\x09\x76\xc6\xe8\xe3\x00\xc2\x8c\xf5\x72\xaa\x65\x06\xe5\x4c\xec\x78\x9b\x23\x7a\x52\xeb\x18\x41\x52\x49\x20\x49\x29\xf2\x1a\x13\xef\xb5\xbe\x18\x08\xd4\xdf\x62\x62\xef\x99\x9d\x37\x7b\xaa\x6d\x08\x6f\x6f\x17\xcf\x6c\x7d\xbe\x93\x70\x72\x51\x66\xdc\xcc\x93\x09\x84\xab\xa3\x57\x45\xce\xf2\xef\x21\x7c\x52\x15\xfb\xfb\x6b\x99\x24\xe1\xf6\x0e\xe5\x17\xbb\x76\x56\x10\xea\xa4\xe5\x1d\xdb\x86\x8f\x10\x7a\x1c\x3c\x3b\xef\x5d\x3e\x4d\x18\x3b\x28\x59\x6c\xb7\x99\x6b\x1a\x62\x3a\x4e\x59\xc6\x5a\xf3\x12\x1e\x6b\xf2\x6c\xb4\x93\x3f\x42\x28\x3b\x5b\xad\xea\x62\x10\xc0\x84\xf8\xf7\xdb\x2e\xa9\x45\x39\x84\xf3\x01\xcd\xdd\x96\xbe\x99\x04\xb1\x63\x46\x77\xb9\x1e\x8b\x13\x58\x4b\x9b\xca\xb7\x1e\x2c\x26\x94\x45\x85\x9a\xd7\x68\x16\x11\xd4\x64\x0d\xd9\xca\xcd\x1a\x19\xb8\x75\x76\x9b\x97\xfb\x8f\xb9\x34\x85\x38\xe9\x64\xa1\x8a\x81\x3c\xc2\xdf\xd9\xf3\xbe\x9c\x12\x7c\xc2\x44\xca\x93\x60\xde\xba\xb1\x4e\x06\xc6\xef\x1c\xd8\xfd\xd3\x42\x96\x20\xf3\x6a\xfd\x0b\xb9\x17\x3c\x84\x98\x82\xfc\x43\xc3\x2a\x0b\x09\xbd\x03\xeb\x36\xcc\x9f\xad\x42\xa8\xe7\x8a\x93\x7f\x13\x5d\xc1\xc4\x18\xf3\xdc\xd3\x05\x93\xc5\xf3\xba\xaf\xe3\xd8\x23\x65\xc2\x0e\xd7\xc7\x35\xcf\xe4\x52\x98\x58\x6b\x6a\x79\xe0\x6e\xa5\x01\xc1\xe6\xd3\x12\xed\x57\x1f\xd7\x12\xe2\xa4\x7e\xe9\xe5\x29\x05\x11\xa2\xc4\xab\xb6\x6f\x91\x4c\x26\xd4\xfc\x69\x1f\x32\x18\xca\x60\xe2\x5e\xec\xd7\xc5\x96\x8f\x36\x11\xde\xac\xd9\x2f\x71\x89\x4b\x94\xd0\xfa\xe3\xf3\x97\x03\x32\xd7\x08\x8a\x65\x7f\x4e\x71\xae\x90\x9f\x86\x85\x6f\xd7\x79\x16\xf5\xb2\x13\x54\x4d\x5e\x67\x70\x46\x6e\x26\x9c\x93\xfc\x31\x67\xfb\x67\x61\x82\xe8\x2d\xcb\x4f\xd6\x7b\x37\x11\x76\x3c\x79\x79\x76\xd9\x05\x45\x42\xb1\xdf\x8b\x23\x5f\xc3\x42\x09\x3c\x01\x65\x26\x8b\xbc\x58\x08\x6e\x17\x0e\x86\x5d\x9c\x6b\x48\xf8\x9c\x65\xe8\xbc\xb8\xd6\x8f\xf0\xa7\xae\x20\xb8\xf6\x9a\x27\x61\x89\xc1\x79\xb9\x1f\x1e\x8f\x98\x70\x37\x3c\x20\xbb\x22\xfd\x3e\x61\x01\x4c\x23\x7e\x29\xba\x10\x44\xa5\x4d\x82\x73\xb2\xe4\x08\x07\x57\x53\x73\xa2\x81\x30\xe1\xfe\xc3\xea\x59\x1b\x6c\xb8\x09\xb7\xfd\x46\x9d\x64\xac\x35\x09\xef\x77\x30\xf7\x47\x39\x3e\x21\x7c\x0b\x77\x55\x58\x12\x52\xc4\x84\x5d\xe4\x18\x8f\x4a\xdf\xeb\x72\x7c\x0d\x31\xf8\x30\xea\x72\x8c\x50\x7d\x6a\xbd\xd0\x51\x51\x1f\xc2\x3b\xef\x93\x0a\x12\x0b\xdd\x08\x35\x7c\xdf\x9e\xaa\x28\x3b\x12\x6c\xfd\x1b\x35\x63\x05\xd9\x08\x5b\xad\xe2\xb9\x7e\xb2\xac\x25\x2c\x7d\x9b\x12\xc7\x12\xcf\x3b\x0d\xef\x56\x4f\x98\x9d\x16\x52\x9a\x86\xa2\x0d\x8e\xff\xda\x56\xb7\x12\xec\x0e\x3b\xf9\xfd\x58\xc6\x4d\xe8\xcc\x6e\x3d\x21\x7d\x82\x93\x20\x2c\x34\x3e\x71\x22\xae\x94\x50\xda\x62\x3e\xfb\xd8\x24\x8e\x49\x6f\xee\x66\x46\xef\x26\x9c\x9d\x7d\x43\x4d\x52\xe5\x1e\xe1\x62\x5e\xe0\x97\xa6\xc2\x38\xc2\xa6\x4f\xcf\x2f\xae\x79\x19\x4e\xb0\xd9\x1c\x6d\x7d\xdd\x8e\xc9\xc4\x32\xe5\x06\x5b\xdb\x18\x25\x26\x5c\x8e\xdf\x15\x29\xd8\x58\x49\xf8\x55\xa3\xc9\xef\x50\xaf\x4c\x58\x99\xf3\x9b\x2d\x77\xe9\x08\xe1\xa7\xe8\xd2\xc3\xad\xe7\x0b\x08\x37\xe6\x71\x2e\x7a\xba\xfc\x1e\x13\x69\x35\xb3\x43\x9a\x0c\x5e\x10\xfe\x59\x69\xc7\xb5\x4c\x8e\xa2\x8f\x2e\xbe\xd9\x72\xa7\x86\x30\xbb\xa4\xfb\xa2\x5c\xed\x5e\xc2\xc8\xb8\x16\x6a\x95\x93\x09\x76\x06\xac\x0d\x5c\x02\x5d\x4c\x78\xaf\xf8\x34\xef\xe1\xe4\x92\xec\x74\x2b\xe7\xfb\x25\x49\x5d\x42\x71\xfe\xa6\x0d\xe6\x47\x8f\xd1\x54\xf9\x1f\x82\xa5\xb2\x9e\x18\x6f\x66\x21\xdc\x16\xc8\x5e\x78\x40\x38\x8d\xe0\x5d\x34\xce\x27\xf9\x41\x8f\x10\xfa\x27\x71\x41\x23\x99\x12\xbe\x44\x7d\xa1\x61\x9d\x25\x04\x93\xc6\xbe\xac\xdc\x52\x71\x42\xff\x50\x43\x77\xd2\xdd\x6b\x4c\xcc\x16\x7b\x75\x8d\x9b\x45\x9f\xa0\xf7\xa9\xd2\xe2\x8e\x15\x3f\xa1\x88\xc6\xd7\xfa\xff\xbb\x4a\xe0\xd3\x2a\xee\x56\x32\xcd\x61\x42\x88\x7d\x70\x5f\x3a\xe7\x63\xc2\xc7\xac\x03\x1e\x22\xbf\x3f\x12\x26\x1e\x7f\x8c\x7f\x98\xf2\x81\x90\x57\x77\x78\xe8\x91\x64\x21\x41\x31\x20\x49\xe6\xb9\xc1\x15\x26\x12\xe3\x86\xf7\x09\xa6\x1c\x67\x22\xe6\x5c\x6e\x89\xb0\x67\x1a\x21\xcc\x88\xb1\x6b\xc6\xa5\x95\x04\x87\x8b\x2b\x2d\x0e\xd7\x5a\x11\x4e\x36\xb9\xd6\xbd\xbc\x7c\x82\xb0\xca\x7d\x78\x03\x4b\xcf\x36\x1a\xd3\x3f\xdd\x60\x2b\x34\x9b\x60\x91\xf6\xf9\x7c\x40\x8e\x1c\x41\xeb\xce\x9b\xc1\x57\x2d\xaf\x09\x7a\xf3\x4f\xfa\xb9\x85\x69\x13\x5c\x06\x8e\x48\x06\x18\xd8\x4f\xc3\xfc\x66\xa9\x7e\xe9\x71\x1e\xc2\xe8\x55\x63\xea\x3d\xe0\x42\x08\xa8\x70\x8c\x58\xfd\xca\x8a\x10\x3a\x11\x2d\x22\xec\xb2\x83\xf0\x76\x5c\x3c\xd9\xfa\xa4\x2c\x41\x6e\x9d\xa2\xbf\xae\x97\x36\xc1\x98\x37\x7b\xff\xd0\xa6\x5f\x8c\x29\xac\x96\x9c\x9d\xad\x90\x33\x1d\xbc\x06\xcf\xdf\x70\xfe\x1a\x62\xc0\x68\x50\xea\xae\x35\x5f\x3c\xe1\x41\x5f\xd8\xdc\x4d\xbd\x4f\x08\xbe\xb9\xcf\xfd\x45\x17\xce\x26\x5c\xe3\x1d\xd9\xa7\x99\x10\x4f\x58\xf7\x56\x49\xb2\xa9\x47\x89\xf0\x9d\x5f\xe8\xc2\xf7\xee\x5c\x42\xca\x97\xfb\x91\x0b\xe4\x3a\x09\x3e\x66\x56\x9f\x83\x96\xcb\x10\x3c\x45\x8b\xa3\x58\x2e\xea\x4f\x43\xe8\xd5\xdb\xca\x06\x9b\x78\x08\x73\x43\xa3\x0e\x06\x77\x30\x09\x8d\xdc\xf7\x32\xfe\xc3\xde\x47\x95\x0b\x56\x46\x5e\x67\xe2\x60\xe4\xbe\x91\x9d\x1d\xe7\x08\x70\x3a\x79\x67\x5d\x5d\x20\x13\xdd\x2d\x3b\xde\xbd\xff\xb6\x95\x50\x79\x6d\x62\x62\x9d\xfd\x1c\x42\xa1\x45\xaa\xee\x87\xc1\x44\x82\xa6\x9c\xf3\xfc\x16\xd7\xd9\x84\xfa\xeb\x7f\x5e\x7c\x5d\xba\x86\x70\x68\x85\xf1\xad\xdf\xb2\xfa\x84\xdc\xb9\xf2\x62\x3f\x1b\xc5\x09\x34\x2a\x6f\x98\xbb\x8f\x9b\xf0\x85\xcd\x4b\x99\x27\x40\x84\x90\x2f\x87\x3b\x87\xf3\xba\x18\x78\xbc\xe5\xd0\x2f\x15\x8d\x7f\xd3\x40\x3f\x62\x24\x36\xdf\x67\x21\xdc\x7d\x1e\xc6\x2e\x7a\xaf\x8a\x50\xfc\xbd\x5c\x21\xe9\x65\x26\xe1\x7a\xdd\x26\x5b\xd6\xd9\xd6\x84\x2f\x5c\xa6\xe2\x9e\xdb\x34\x08\x35\xf9\x4b\xcd\x1d\xcd\x39\x08\x0a\x6e\xf5\xfb\x8f\x6c\x0d\x20\x94\x6a\xd6\x77\x28\x33\x12\x08\x2b\x3f\x58\xee\xfa\xa9\xfb\x90\x30\x64\x73\x65\xed\xbc\xb9\x1b\xa6\xa1\xad\x5b\x8e\x75\xee\xdf\x1f\x8c\x29\x6c\xcb\x6c\x34\x2a\x5c\xf0\x9c\x81\x9b\x45\xc3\xff\x1f\xbe\xfe\x34\x9a\xab\xf7\xff\xff\xbf\x93\x21\x89\xca\x9c\x44\x89\xa2\x49\x32\xa4\x71\x3f\x09\x21\x43\xe6\x54\x48\x21\xa1\x84\x28\xa9\x94\x8a\x06\x0d\x08\xa5\xcc\xc9\x54\x22\x94\xa1\xb2\x4d\x69\x50\x89\x0a\x29\x51\x34\xa9\x64\xee\x21\xd3\xb9\xbc\x2f\x7c\xf9\x9d\xeb\xb3\xfe\x97\xf6\x6d\xdd\x9f\xc7\x5a\x2e\xbc\xec\xbd\x8f\xe3\xd2\x7e\xe5\x3e\xdb\x97\xb0\x5b\x4e\xb4\xab\x82\xdb\x83\xf0\x5d\xe7\x83\x09\xb7\xa3\x05\xe1\x8a\x9c\x16\xd9\x2e\xd1\x20\x58\x85\x6f\xf8\x1c\x7f\x7a\x0d\x21\xb6\xf8\xcb\x53\xdb\x8e\x6b\x84\xe6\xc3\xb3\xb2\x06\x5c\x9e\x10\xc4\xd2\xf7\xf9\x5e\xd0\x3c\x44\x48\x1f\x2a\xac\x9f\x1a\xe0\x49\xc8\x38\x97\x13\xe2\xf3\x5c\x93\x20\x92\xaf\x60\x73\xa7\x57\x8c\xf0\xd5\x34\xa0\x80\xe7\xe5\x32\xc2\xfe\xdb\xfb\x2c\x6b\xcb\xb6\x12\x24\xae\x49\xac\xf2\xf9\xef\x73\x26\x01\x7f\x3e\x2f\xec\x19\x60\x60\xe5\xd1\xed\xd9\xfb\x63\x36\xc1\x51\x4a\x4b\xbb\xef\xed\x61\xc2\x39\xbf\xd6\x91\xdc\x60\x15\xc2\xac\x43\x1a\x93\x6e\x9c\x13\x25\x88\xae\x9f\xcc\xde\xd6\xef\x67\xa0\x3c\x51\x4e\x3e\x7e\xeb\x05\x76\xac\xfc\x1f\x78\x82\xc3\x1a\x4b\xf6\xb2\x45\xf8\x64\xeb\x61\xee\xb1\x23\x86\x90\xf6\xfb\x50\x52\xa2\xd4\x1e\xc2\xd6\x94\x39\x4e\x9b\xec\x44\x09\x36\x3d\x7f\x16\x26\xb4\xeb\x13\x46\x8e\x6e\x14\x70\xfb\x60\x4f\x98\xa8\xea\x6e\x58\xf9\xce\x77\x1c\xdc\xfe\x16\xaa\xd9\xeb\x1b\x10\x4c\xba\x2d\x06\xbe\xf7\x85\x13\xb8\xff\x84\xbf\xf6\xf8\xa9\x4c\x78\xd6\x9d\x72\x7f\xef\x2f\x11\xc2\xce\xf9\x37\xfb\x15\x5e\x73\x11\xdc\x85\x5d\x04\x2d\x8b\xd7\x12\x04\x5e\xed\x38\xa2\xf9\xb0\x94\x60\x0d\xcf\xf6\x6d\x96\xd9\x84\xba\xcd\x9e\x0f\x3b\x36\x97\x11\x4c\xf4\xea\x56\x0e\x05\x4b\x12\x9a\xd4\x0b\x03\x11\xb2\x9e\x50\x71\xef\x17\xf7\xa7\x97\xbd\x0c\x76\x67\x7f\x76\x2d\x52\x88\x27\x54\xda\xed\xe8\xfd\x0f\x07\x7f\x46\x70\x1c\x7f\x15\x42\x18\x68\x3f\x4e\x3f\x13\x0a\x09\x3b\xc5\x8d\x3e\xfe\x37\x4a\xd0\x8f\x31\xbd\x6c\x6e\xf1\xbf\xb0\xbf\x2b\xb6\x2a\xeb\x54\x1c\xa1\xae\xd0\x4b\xf6\xbf\xd2\xd7\x54\xe7\xa6\x77\x44\x90\x50\x99\x52\xe0\x57\x3c\x12\x42\x38\xda\xa6\xe2\xf7\xa5\x37\x99\xf0\xa9\xd2\xaa\x5e\x79\x69\x39\xc1\xdb\x81\xee\x86\xef\xd8\x45\xc8\xbf\x51\xf2\x8a\xf3\x52\x01\x8b\x4b\x41\xe9\x3e\x67\x64\xcf\xd1\x18\xbe\xf3\x0e\x6f\x72\x5b\x7e\x80\x30\x77\x38\xfb\xf3\xd0\x48\x2a\x21\x40\xf2\x60\x63\xdc\x85\x1b\xec\xd8\x28\x2d\x63\x7f\xa1\x6b\x87\x22\x21\xe2\x7a\x92\xaf\x59\x87\x2a\x61\xe9\xa3\x2c\xf7\xba\xbf\xa2\x04\x1d\x9e\x9a\x49\x1e\xab\xac\xc7\x61\x10\xab\x85\xc3\x5b\x45\x08\xaf\x79\x04\xfe\x86\x9a\x99\x12\x8e\xb7\x89\x04\x5c\x28\xce\x23\x04\x5c\xbf\xb6\xec\x47\x6b\x17\x03\xa7\x0c\x89\x13\x97\xaa\xac\x09\x53\x9e\xdc\xff\xf4\xe4\xe2\x34\xc2\xaf\x98\xc2\xf9\x22\x1f\x4d\x09\xf3\x2e\x88\x0a\xd4\xf1\xca\x11\x7e\xce\x4c\x4f\xe7\xfd\xf4\x9b\x81\xd7\x86\xba\x79\x43\xbc\xba\x34\x86\x3d\xba\xcf\xed\x83\x1e\x2a\x11\x12\x14\xae\x6f\xe7\xfc\xa8\x4f\xf8\x3e\xcc\xdb\x1e\x28\x27\x42\x30\xac\x72\xf1\x1d\x5c\xfe\x8f\xc1\xda\x53\xea\xf9\x4a\xc3\x5b\xc7\x95\x9e\x9a\xc2\xaa\xbd\x9a\x32\x84\x89\x1d\xd5\x7f\x59\x7d\x75\x42\x94\xc1\xbb\x00\xe3\x5f\x37\x59\x64\xa4\x59\xc9\x6f\x1d\x9a\x43\x90\x37\x60\x7d\xd2\x4e\xed\x20\x94\x34\xcd\x52\x34\x31\xd0\x26\xe0\xf5\x8f\xc2\x81\xc5\x9a\x84\xe2\xef\x56\x81\x8c\x0a\x1f\x21\x2b\xf4\x0c\xe7\xcd\x67\xc7\x59\x84\xed\xd5\x7f\x78\x26\x95\x25\x4c\x7c\xfa\x74\x20\xeb\x70\x29\xc1\x79\x7a\x93\xd0\x9d\x51\xf0\x3a\x6e\x3b\xfd\x5f\x99\x7f\xd1\x5a\xb1\x80\xaf\x98\x90\xe0\xb3\xf6\x40\x71\xd0\x0a\x82\xe7\x45\xd9\xa8\x67\x4b\x85\x08\xd5\xfb\x96\x9d\x6f\x9c\x56\x4f\x98\x1a\x9b\x5e\x63\x75\xea\x28\xc1\x2a\x72\x65\x8a\x4d\x4d\x17\x83\x37\xbe\x9e\x65\xdb\xfc\x55\xe8\x7f\xe0\xd1\x82\x91\x57\x8a\xf3\x16\x8e\x83\x54\x02\x87\xf3\x0f\x5e\x96\x1d\x2b\x55\x46\x5e\xa7\x69\x7f\x32\x41\xdb\x31\x59\x3b\x60\xe6\x04\x42\x85\xe9\x81\x29\xd3\x9a\x3a\x08\x53\x44\x2d\xdc\x6e\x7e\x7a\x4b\x50\xfb\xa8\xfe\xeb\x59\xe5\x15\x42\xb4\x6b\x6c\x38\x63\x61\x4f\xe8\xde\x76\xca\xfa\xd7\xaf\xff\xbe\x5e\x9c\x69\xaa\xac\x39\x8d\x60\xda\x71\xb4\xb0\x43\x62\x22\xe1\xc2\xdd\x6f\x95\xa6\xee\xdf\x18\xc8\x1c\xd2\x4c\xdf\x11\xb7\x8e\xf0\xc4\x5b\x40\x89\x23\x80\x6f\x1c\x0c\xac\xd8\x26\x97\xef\xb2\x84\xa5\xeb\xa5\x57\x27\x0a\x49\x12\xd4\xb2\x5e\x2d\x73\x30\x3c\x3d\xfa\x7e\xde\xde\xe4\x94\x7e\x85\x20\xb1\x71\xff\x8b\x9f\xd2\xb7\x09\x0e\x5b\x9e\x24\xaf\xea\xdf\x45\x98\xb8\x77\xa2\xdd\x41\x9b\x64\x82\xc0\xf4\xf3\x4f\x07\x32\x66\x10\x16\xac\xf7\x9b\x12\xac\xd9\xc4\x8c\x21\x29\xfc\xdf\xc8\x81\xd5\xd3\x08\x37\xb9\x4f\x9b\x95\x09\x45\x11\xdc\xf2\xe5\xbf\xc4\xfd\xac\x20\xf8\x49\xef\xbf\xef\xcb\x7f\x87\x85\xdf\x1c\xf5\xbb\xe7\x62\xac\x08\x6a\x66\x91\xd3\x64\x7e\x39\x10\x44\x1b\x6d\x26\x69\xd9\x46\x10\xfe\xb5\x46\xad\x67\x0f\x3f\x22\xe8\x35\x15\xbd\x1f\x4c\x17\x24\xd0\xbc\xd5\xdb\x12\x95\xfa\x18\xb4\x5e\xae\xd8\xfe\x59\x7b\x11\xa1\xb5\xa0\x5b\xce\xf8\x0a\xe7\xff\x27\x8e\xa6\xa9\x7f\x3b\x58\xa5\xfc\xbf\xa0\xcd\xb5\x3a\xea\xe8\x99\x56\x06\x5d\x56\x3b\x43\xec\xba\x53\x08\xe4\xf3\xe6\xb5\x78\xf7\x16\xc2\x97\xe0\x80\xc9\xc6\x9f\x4d\x58\xdc\xe2\x68\xdd\x29\x2a\x60\x43\xa8\xfe\x66\xfa\x2f\xb7\x67\x1d\xc1\x68\x82\xb3\xa6\x5c\x5e\x07\x03\x55\x2b\x8d\xac\xdd\x5d\x45\x45\x58\x58\x71\xbc\x33\xcf\x46\x88\x30\xa7\xe9\xab\x61\xa8\xa9\x06\x61\x06\xdf\x5d\xee\x57\x11\xfb\x08\x45\xf7\xb6\x5e\x8d\xf4\x91\x20\xb8\x57\xcb\x57\x2f\xd6\xd4\x21\x6c\x90\xf2\xbe\x11\xb4\x85\x8f\xe0\x77\xf4\xca\x87\x5b\x0e\x67\x8b\x70\x7e\xca\xf4\xc9\x5f\xce\x87\xb2\xd0\x16\xd5\xa9\x2c\x88\xb2\xa4\x31\x58\x9b\x6e\x93\xfe\xb4\x24\x81\xb0\xc5\xf2\x21\x9b\xb2\xce\x9e\x70\xa0\xe3\xa5\x9a\x41\x7c\x2d\x83\xd5\x46\xa9\x99\x47\x36\x4b\x10\xce\xec\x76\xff\xbd\xf8\xa4\x29\x61\xbd\xbe\xc8\x0a\xe1\x65\x46\x84\xc4\xe8\xda\xfc\xe6\xee\xe5\x84\xdb\x1b\xcd\x44\xfe\x55\xce\x21\xec\x76\xb3\x36\x39\x5b\xe5\xc5\x62\x4b\x86\x50\xab\x40\x4d\x02\xe1\xbe\x59\xf9\xfc\x01\x95\x2c\x16\xe7\x64\xfe\xa4\x2a\x26\x38\x11\x6c\xe3\xb4\x94\xd4\xb8\x03\x58\xa8\x72\x9a\xa9\xf2\x15\x85\x10\xd2\x16\xb0\xf3\xb7\xb8\x14\xb0\xf8\x74\xd9\xf0\xf8\xd9\xc6\x10\x42\x72\xd9\x81\x13\xee\x5b\xd5\x08\xd5\xd5\xe5\x3a\x3e\x7e\xa3\x7f\x4b\xbe\x23\x59\x67\xd5\x1a\xc2\x7b\x66\xd6\xac\xc3\x47\xbd\x09\xd6\xc7\xe6\x5c\x3d\x72\x23\x93\x45\x76\xff\x1a\x8b\xc9\xab\xfc\x08\x0f\x15\x9d\x8f\x9c\x2f\x8d\x61\xf1\xf6\x70\x95\x4a\x97\x74\x22\x8b\x38\x46\x46\xbb\xeb\xcd\xf9\x71\x6b\xe6\x25\xf7\x6d\xfd\x1c\x59\x4c\x68\x39\xe4\x67\xee\x12\xef\x4d\x48\xf8\x53\xd2\xb6\xbb\x38\x9d\x70\x53\xbd\x34\x21\xf1\xdd\xc9\x71\x23\x3e\xa3\xde\x45\xf2\x91\xd1\x04\xab\x9e\x29\xf3\xc3\x15\x1d\x09\xbf\x38\x54\x7f\xa7\x56\xdd\x25\x7c\x9e\x31\xdd\xaf\xc5\xa5\x85\x60\xaa\xaf\xcf\x95\x36\x5a\x9c\x9e\x0a\xfb\xbc\xdc\x69\x4f\x50\x17\x39\xb0\x5e\x32\xc6\x8b\xf0\x75\xc3\x06\x9b\x6d\xe7\xed\x09\x1d\x47\xaf\xd5\xee\xab\xee\x62\x50\xfb\x26\x7f\xa5\xd3\xd6\x12\x42\xd1\x1a\xcd\xb6\xe5\xb7\x4a\x08\x0f\xd2\x2b\x0f\xf0\xd7\x77\x13\xca\x47\x76\xab\x4b\x68\x3f\x24\xb8\x4f\xda\x7b\xfe\xeb\xd5\xa2\x71\x6b\xdc\xee\x8d\x94\xad\xfa\x9b\x4e\x18\xa9\x98\xb1\xa5\x4e\xf0\x26\xe1\x81\x91\x73\xae\xd2\x56\x77\xc2\xe7\xfb\x71\x22\x33\xcf\x5d\x24\x34\xcd\x4b\x66\x0b\x62\x2e\x12\xfa\xd7\x98\xfc\x35\xc8\x5d\x4f\xe8\xbd\xb8\x66\x65\xff\xf2\x0a\x06\x1a\xcf\x47\xb6\x3e\xdf\x2d\x41\x68\xda\xfa\x37\x34\x88\x63\x36\x41\xa3\xad\x22\xff\x4d\x80\x36\xc1\x68\xf5\x4b\xb5\x16\xe3\x15\x04\x2e\xce\xf8\x4e\xde\x79\x1d\x0c\x9e\x86\x1c\xcf\x34\x34\xda\x44\x90\xf9\x6b\x3b\xf9\x64\x8b\x10\x21\x58\x6a\x9b\xdc\x94\xf9\x11\x84\x8c\x92\x65\xfc\x1e\xda\x07\x08\xe7\x02\x94\x3c\xdf\xb8\xf9\x13\x7e\xe3\x77\xf7\xf3\xa0\x4f\x84\x9c\xe3\x07\x14\x3b\x06\xee\x12\x76\xb2\xd3\xfd\x7e\x0f\xe4\x11\xc4\xa6\x15\x18\x35\x1a\xdf\x25\xcc\x4a\x37\x6e\xf8\x30\x8a\xd7\xd2\x3a\xbf\xb5\x39\x6e\x32\xe0\x2c\xfc\xfb\x2c\x4f\xa1\xaa\x08\x11\xfc\xf3\x55\x04\xed\xb6\x10\xea\xa4\xb6\xe8\x4d\xd2\x0a\x65\xc7\xca\x61\x57\xff\x2e\xb1\xca\x0f\x45\x30\x5e\xd4\x70\x75\x45\xb6\x31\xc1\xe9\x85\x9b\xc4\xc4\x7a\x5d\x82\xd9\x22\xeb\x42\x91\x2e\x79\x82\x67\x8a\xeb\x0b\x1e\x66\x35\xc1\x33\x32\xa3\x33\x9a\x5d\x42\x98\xb3\x32\xb7\x33\x58\xbc\x9c\x70\xf3\xe1\xbc\xb6\x99\x1f\xdf\x12\xf4\xff\x3c\x4f\x7d\xa4\x77\x87\x05\xff\x89\xd5\x31\x5b\xcb\x0a\x08\x2c\x4f\xf9\xea\x57\xa7\x7c\x09\x47\x43\x8f\xfc\x18\x1e\xf4\x26\xfc\x8e\x38\x92\x65\x32\xf9\x2a\x8b\xee\x86\xb9\xcd\xb7\xba\x7d\x09\xd9\xd5\x7e\x41\xd6\x7b\x1c\x09\x3b\xb4\xde\xab\xa8\xb4\x34\x12\x88\x7f\x78\xe8\xe7\xd3\x1c\x42\x46\xc7\x82\xfb\x53\xef\x24\x10\xa6\x1f\xbc\x38\xd5\xae\x27\x9d\xd0\xb4\x57\x3e\x99\x57\xa4\x8c\x10\xfa\x22\xbf\x64\x93\xd4\x15\x42\xc3\xfc\xde\xa2\xfc\xa5\xbe\x84\x73\x83\x89\x92\x0b\xed\xaf\x11\x06\xd8\x99\x15\x6b\x66\xc7\x12\x5a\x25\x84\xc4\x0d\xfb\xce\x11\x44\x7f\x6b\x72\x54\xb7\x9d\x27\x38\xcc\xbd\x78\xe6\xa9\x5e\x2f\x33\x06\xe3\x96\x8a\x91\x69\x69\x4f\x19\x88\x65\x77\x99\xfc\x16\x11\x26\xf0\x6f\x5a\x55\x58\xb7\x2f\x90\x00\x43\xd3\xac\x18\xb3\xd5\x84\x53\x06\x27\xde\x49\x84\x5b\x13\x66\x77\x1f\x3d\x56\xc7\xab\x4a\xd8\x70\xcd\xa0\xa2\x5c\x54\x81\x30\x94\xc0\x58\x3e\x70\xfd\x41\x10\x99\xb4\xaf\xa6\xeb\x63\x3c\x41\x90\x4d\xbc\xe2\x7b\xa1\x94\xa0\x36\x5d\xe6\xf9\xe6\xab\xa5\xa3\xf7\x60\x9e\xcf\x12\xd7\x44\x82\xda\x34\x2e\x29\x49\xa1\xb3\x04\x07\xad\xf0\x29\x0b\x5d\x12\x09\x6f\xc5\x84\x63\x2c\x3f\x26\x10\xea\xda\x8a\xce\xa5\x08\xdd\x20\x6c\xec\xcc\x6a\xf8\xa1\xf8\x8d\x19\x43\x81\xd0\xb9\x7b\xa9\xe7\x85\x09\x6e\x1f\xf8\x9a\xa4\xef\x68\x12\xb6\x9a\xba\xcd\x55\x3f\xf0\x8a\xf0\x20\xf0\xd8\x3f\x05\xa3\x2f\x84\x62\x6e\xb9\x55\xad\xf1\xd1\x04\xd5\xd4\x95\xbe\x36\xd6\x73\x09\xfe\xdd\xfb\xde\x6d\x5f\xf3\x99\xc1\xe9\x88\x82\xd3\xd3\x16\xcf\x25\xdc\x5d\x56\xb6\xd0\x5f\xaa\x83\x41\xe3\xee\xaa\x9f\x76\x3b\xd7\x10\x0e\x49\xfc\xd9\x3a\xd7\x8d\x9f\x60\xec\x77\x60\x6f\x7d\xb0\x29\x41\xb7\xb2\xf4\x99\x84\x5b\x24\xa1\x77\xc1\xc9\xfb\x1f\x6c\x54\x09\x3f\xbb\xb0\x3f\x5b\x6a\x3a\x41\x5b\x2d\xbc\xcf\x7e\xb2\x20\xe1\x50\xf7\xa1\x09\xce\xc6\x32\x84\xe0\x73\x6d\x35\x17\xd7\xaa\x12\x42\x61\x30\x33\x97\x23\x81\x20\xec\x9b\x35\xc5\xfd\x86\x19\xe1\x74\xd8\x87\x39\x42\x6b\xed\xc7\x81\xeb\xa4\x47\xed\x1b\x66\x2d\x41\x5b\x69\xa1\xda\xfd\x42\x15\x42\xab\xa2\xfc\x22\xd3\x81\x78\x16\x8e\xad\xf5\xeb\xee\x93\x19\xe1\x98\xb7\xcf\xcc\x5a\xfb\x64\xc2\x91\xdd\xb2\xcf\x9f\x4a\x3a\x10\x64\x97\x2b\x37\x76\x0d\x05\x13\xa6\xd4\xa5\x45\x58\x3d\xd2\x20\xd8\x6a\xc7\xa6\xd9\x19\xf3\x12\xae\x58\x7d\x56\x9e\xb1\x61\x0d\xe1\x93\x84\x86\xf1\xb9\x28\x3b\x42\xae\xdc\x9d\xe3\x0d\xde\xb2\x04\xbf\x2d\x5a\xf5\xbd\x41\x8e\x04\xf9\x85\x8d\x4f\x3b\x5e\xcb\x11\xce\x4d\x37\x8c\xf1\x5b\x9d\x31\x0e\x1b\x38\x4c\x2a\xd8\x7f\x99\x04\x3d\x63\xad\xe9\xae\x8f\x6e\x13\x8a\xa6\x6f\x28\x0c\x7b\x24\x42\x38\xfe\xf6\xbc\x58\x9c\xf1\x64\x42\xd1\xd5\xdb\x4a\x8b\x62\xcc\xc7\x61\x66\x84\xeb\xe0\xfa\x6b\xa2\x84\x88\xa8\x70\xc5\xc8\x69\x77\x08\x0e\x12\xe6\x5a\x2f\x76\x81\x81\xb6\x57\xd2\x63\x9b\xcf\xd5\x45\xd8\x7e\xb3\xc7\xf5\x7c\xf0\x46\x1a\x43\xd5\xd4\xe1\xed\x7c\xa5\xd5\x0c\xe2\xbc\xb9\x56\x3f\x9c\xa9\x4c\x58\x6b\xa7\xd5\x17\x1e\x71\x9d\x05\xaf\x65\x07\x6d\xdc\x5d\xce\xe2\xba\x5b\xdc\x17\xab\x81\x2a\x16\x7b\xb6\xad\x13\xb0\x8e\x7a\xcc\xc2\x51\x61\x5d\x92\x5e\x4e\x05\x8b\x85\xe5\x37\x56\x34\x17\x86\x10\x6c\x74\x0d\x77\x85\x0d\x5c\x63\xb1\x35\x3c\xcc\x8b\x33\x2e\x97\x05\x9f\xde\xbe\x33\xef\xe6\x97\xb0\x58\xb7\x21\xa3\x38\xfb\x75\x2e\x8b\x7b\x35\xce\xd3\xf4\xb7\x24\xb1\xf8\x2a\x75\xc2\xb3\xf5\xf1\x79\x42\x54\x80\x7d\x4b\xf8\x41\x1b\x42\x59\x6a\x4d\x8f\x8f\x6b\x2a\x8b\xb3\xcd\x59\xc7\xbb\x27\x95\xb0\xf8\x19\x50\xa5\x79\x41\x23\x9a\xb0\xa5\xe7\xf2\xbe\x15\xf3\xbd\x09\x0b\xea\x3b\x96\xbb\xc4\x7e\x61\xb0\xcb\x78\xeb\x9d\x47\xbd\xbd\xe3\x70\xf8\xb4\xf3\xfa\x06\xbe\x0f\x45\x50\x91\x7b\xb0\x65\xbd\xaa\x1d\xc1\x41\x65\xad\xb5\xff\x8b\x09\x84\x6b\x3e\xeb\x98\xfe\xc2\x80\x71\x28\xe9\x9e\x30\xb0\xe9\xa9\x17\x41\xe6\xfe\xae\x60\xcb\xbf\x72\x84\xf0\xed\xab\x22\x65\xdf\x72\x13\xfe\x7e\x35\x59\x14\xfc\xa0\x94\xb0\xc4\x7a\xfe\xd0\xd9\x51\x68\x36\x3d\x4d\xc3\xc9\x52\x42\x5c\x39\x93\xf9\x35\x98\x1d\x37\x0a\xf8\x22\xf6\xf1\x7d\xf9\x2d\xc2\x49\x4b\xfe\xb0\xbd\x7d\x97\x09\xb1\xdb\x24\x39\xcd\x6a\x4f\xb1\x63\x45\xfb\xe5\x27\xe5\x0d\x1e\x97\xc7\xad\xf9\xc8\xa3\x17\x75\x6f\x6e\x28\x21\x7b\x24\x83\xff\xf7\x8d\x9b\x04\x9f\x83\xc2\x3d\x3a\x94\x4e\x90\x19\xae\x97\xdd\xc3\x1d\x4d\x70\x59\x60\x94\x36\xe5\xf0\x35\x42\x65\x5f\x2b\xc7\xfb\xbb\x8b\x08\x34\xfc\x5b\x79\x68\x21\x8d\xc3\xf2\xf6\x2b\xfb\x74\x47\x9f\xa2\xf1\xb5\xa2\x55\x8f\xfb\x97\x11\xda\xed\x3c\x07\x8b\xff\x2c\x21\xfc\x0a\xb5\xac\x52\x0f\x9b\x45\x58\xa5\x17\x9e\x37\x74\x09\x0c\xe2\x9f\xdc\x79\x6c\xfd\x29\x92\xf0\xd8\x2a\x22\x70\x55\xd4\x0a\xc2\x2b\xbb\x67\x36\x57\x87\x1c\x09\x1f\x4f\xb1\x33\xb6\x27\xdb\x12\x0a\x9d\xa4\xde\x6e\xe9\xbb\xcf\xa2\xfa\x83\xea\xc6\xf2\x4c\x55\x42\xc5\x31\xa3\xa5\xc1\x53\xf4\x08\xd3\x32\xa6\x48\xcb\x59\xe4\x11\xba\x45\x5c\x98\x5b\x4f\xf3\x08\x35\xc3\xff\x24\x85\x45\x2e\x8f\xc3\xf6\x7f\x51\x3b\x95\x0f\x08\x12\x8c\xcd\x74\x84\x0e\xcf\x6e\x63\xe0\xb4\xb1\xa0\x3d\xa3\x77\x02\x61\x65\xbb\x98\x97\xf2\xf4\x4a\xc2\xdf\xf5\x62\xa7\x54\x46\xd1\xa0\x79\xf9\xdb\xb2\x51\x4c\x8d\x99\x2c\x77\x24\x38\x99\x30\xbb\x91\x11\x16\x92\x2d\x67\xf1\x5e\xe9\xe0\xd1\x84\x1f\x31\x04\x9f\x6e\xe7\x7d\xd7\xf9\xe6\x12\xc2\xdf\x85\xed\x39\x5e\x79\x98\xb0\x60\x5b\xc4\xe7\x1f\x73\x6e\x11\x14\x36\xfb\xc7\xe9\x71\xe4\x11\x5e\xeb\x68\x8b\x72\x44\x65\x11\x82\xd6\x70\xa4\x64\x9b\xa5\x12\x3a\xd7\x6c\x2c\xe9\xd4\xf6\x25\x0c\xae\x57\x8f\xa8\xee\x73\x20\x30\x81\x5b\x94\xce\xbf\x2a\x24\xe8\x9c\x6b\xb2\xbc\xa0\x19\x4d\x98\x7b\xd7\x65\x4b\xc8\xee\x58\x82\x8d\x22\x67\xe4\xdc\xd4\x9b\x04\xaf\x19\x96\x7b\xd8\x18\x59\x82\xde\xc9\x81\x55\x0f\x26\x70\x13\x78\x1f\x76\xcc\xcd\x88\x16\x20\x04\x9c\xb9\x63\xb4\xbb\xc7\x95\x50\x14\xbd\xd2\x35\x34\x44\x97\x20\x9d\xff\xb7\xe9\xb3\x97\x1c\xc1\xea\x77\xb2\xbd\x6f\xad\x09\x61\x4e\x71\xea\xd5\xd7\xdd\x44\x98\xb1\x5b\xd6\xaf\x75\xf3\x6b\x82\x6e\xd2\xa0\x52\x72\x74\x28\x61\xfb\x22\xa5\xba\x37\xb3\x43\x09\x23\x1b\xef\xd7\x3d\xa9\x8b\x22\x18\x3f\x2c\xf4\xdf\x55\x1e\x4a\x98\x77\x65\xa7\xef\xbb\x87\x87\x08\xbb\x3a\x4e\xec\x37\x99\x93\x46\xd8\x35\x77\x4b\x8c\x80\xf2\xf6\xff\x85\x26\xaf\xe0\xb5\x5c\x51\x0a\x84\x3d\xa9\x17\x26\x9c\x7f\xa4\x43\x78\xb6\xb8\xce\xab\xe8\x4a\x33\x83\xfe\x2b\x02\x53\x3b\xea\x97\xd0\x18\x9e\x35\xe6\x9e\x70\x6e\xe8\x66\xc0\x19\x74\xa0\xc9\x6d\x83\x3d\xa1\xab\x5a\xa4\xba\xe3\x9e\x11\x81\xff\xec\xa9\xc4\xcf\xf9\x2a\x84\x35\x5b\xb5\xac\x4e\x99\x06\x10\xaa\x96\xde\xd5\xdc\xe0\x96\x40\x78\x2d\x52\x1f\xda\x96\x7f\x9d\x20\x1a\x29\xa9\xb6\xa5\x2d\x9d\xc0\x3b\x4d\x41\xba\x54\x6e\x13\xa1\xfe\x77\xb4\xda\xbf\x45\x5a\x84\xab\x0f\x37\x4c\x58\xb4\xd4\x9a\x30\x53\x6b\xee\xae\xc4\x52\x53\xc2\x09\xcb\x91\x26\xfb\x26\x23\xc2\xa9\xcb\x47\x3f\xc0\x28\x91\xf0\xd4\x8c\x2f\x60\xde\xae\x2f\x45\xf8\x3e\x41\xa6\xa4\xb9\x47\x93\xb0\xe8\x96\xba\x49\xf3\xc6\x99\x04\x0e\x65\x3e\xc7\xde\x84\x13\xe3\x70\xd2\x49\x56\xb5\x6f\x9f\x0c\xe1\x44\xcb\xe5\xd4\xca\x99\x7a\x04\x57\xd9\x5e\x1f\xeb\xc1\x1d\x84\xf8\x17\x95\x11\xce\xf5\xb1\x2c\xe6\xba\x96\xdc\x38\x3b\xf3\x2a\xc1\x2e\xf3\xd5\x9b\xd2\xec\x24\x16\xc9\xfb\xd4\x02\xf9\xd5\xaf\x12\xc4\x87\x42\x4e\xe8\x7a\x4d\x20\x58\x76\x5b\x5c\x08\x34\xef\x63\xc6\x50\x35\x77\xaf\xd3\xeb\x43\x03\x0c\x24\xaf\x3b\x99\x9c\x1d\xbd\x41\x16\x95\xbc\x99\x16\x13\x6c\x47\xf8\xbb\xb7\xc3\x57\xc2\x5e\x91\xf0\x52\xc2\x2d\xc6\xee\x21\x0f\x81\xc3\xb5\x26\x59\x2d\x28\x8d\x45\x71\x6e\xf6\xfa\x8a\x0b\x01\x04\x47\x0d\x8d\x6d\xdc\xce\x87\x09\xc5\x3f\x1d\x03\x85\x6d\x4a\x08\x06\x2b\x63\x34\x82\x55\x8a\xc7\xe1\xb4\x22\xf7\x4a\xe9\x35\xc5\x04\xdb\x9c\x37\x7b\xd2\xa5\x83\x08\x4b\xfc\x1e\x89\x7d\x3a\x1c\x48\x08\xff\xa7\x1b\x92\x93\x76\x82\xc0\x36\xaa\x4b\x91\xec\x89\x71\x6b\x14\x5c\x2b\xe6\x45\x39\x5e\x26\x6c\xc9\x3f\x79\x50\xdd\x2e\x81\x30\x87\xfb\xbb\xe9\x0e\x8e\xed\x04\xdd\xcd\xa6\x47\x3c\xa3\xf9\x08\x73\xf6\x4b\x55\x68\xc4\xf6\x30\x78\xdf\x3e\x7b\x20\x26\x55\x81\x70\x2a\xe2\xbd\x71\xe4\x67\x1d\xc2\x9c\x88\x37\xb9\x57\x4c\xd6\x11\xaa\xb6\xf5\xc0\x40\xd8\x9a\x70\x68\x6b\x6c\xc3\xd1\x34\x86\x90\xe3\x58\xb4\xa3\x85\x34\x08\xed\x0b\x96\xa9\xeb\xe4\xa4\x12\x2a\x8f\x9e\x6d\xbb\x24\xf2\x92\x60\xec\x7f\xdc\xa4\xfe\x71\x24\x61\x97\xb3\xc7\xc6\x1d\x13\xf7\x10\x06\x82\xba\x7a\x77\x09\x9b\x13\x6a\x2c\x36\xe7\xfd\xfc\x1e\x30\x0e\xa7\xa6\xae\x4a\x38\x68\xe9\x4d\x10\xbb\xd0\x31\x70\x7b\x99\x35\x21\xc4\xd6\x7e\xfe\x5f\xfb\xbb\x84\xad\x0e\x1d\x8a\x24\x73\x8f\xe0\xd2\x95\x32\xeb\xc5\xa3\xbb\x84\x0a\x9d\x6b\x35\xcc\x68\x29\xbb\xfb\xab\x4c\x7a\x9e\x23\x61\x9f\x70\x43\xa6\x95\xad\x2d\x61\x6a\x30\xe7\x1c\x77\x27\x27\x82\x7b\xc1\xb2\x34\x81\xb3\x47\x59\x9c\x90\x4d\x53\xed\x4c\x75\x24\x38\xa7\xd7\xcb\xa6\xc6\x9d\x20\x70\x89\x8b\x6f\x7b\x32\x4f\x89\x10\x37\xc0\x65\x59\xd4\xf2\x9e\x41\xb6\xf7\x96\x96\x4e\x2f\x4b\xc2\x27\x95\x30\x1e\xbd\x89\x33\x09\x1f\x77\x25\x77\xf4\x2c\xbf\xce\x62\xf0\xc8\x2a\xad\xbd\x0f\xee\x12\xcc\x6a\xbd\xaa\x2e\xeb\x35\x10\x44\x7c\x2c\x56\x68\x87\x66\x10\x3c\x5a\x87\x6c\x85\x25\x14\x09\x67\x85\x27\x9a\x1d\x0d\xca\x24\x3c\xdc\x1f\x69\xf9\xf3\x50\x18\x21\xbd\x2e\xf3\xe1\xc2\xc7\x57\x09\x8f\xdb\x95\xbe\x9a\xc5\xee\x26\xec\x88\x7a\x2c\xda\x9e\xb6\x8d\xb0\x66\xa5\x07\xaf\xdd\x06\xa7\x71\x23\xbb\x0d\x6a\x6f\xbe\xa8\xec\x21\x58\x8b\x3b\x86\x4f\x8a\xc8\x60\x61\xea\xc3\x3f\xc1\x6f\xef\x53\xc2\xb6\x0f\xe9\xa2\x1f\x2e\x15\xb2\x68\x5d\x7c\x4a\x7f\x8a\x79\x12\x0b\x85\xd2\x03\x06\xb3\x2e\x1f\x61\xe1\xbb\xff\xbe\x7d\x3c\xa7\xe3\xe8\x6e\x99\xff\xaa\xca\xcf\x63\x04\xad\xd5\x35\x9b\xed\x3c\x2c\x08\x17\xa7\xa5\x6d\x1f\x58\xfa\x92\xf0\xa5\x54\x3e\x39\xc3\x78\x1d\xe1\x0f\xc7\x4e\x87\xc4\xb0\x19\x84\x43\xdc\xdf\x7f\x24\xf7\x4c\x25\x08\x99\x69\xab\x2c\xad\xba\x46\xb0\x7f\xbe\xd0\x22\xd4\x53\x93\x90\xeb\xea\x37\x47\xc6\x36\x86\x70\xb4\x3f\xc9\xf8\x3f\x34\x19\x68\x45\xef\xba\x72\x98\x20\xab\x1f\xf9\xb9\xb0\xa7\x9f\x81\x7b\x56\xde\xc7\xd0\x6b\x1d\x0c\xbe\xfb\x8b\xd9\x75\x06\x5b\xd0\x18\x5a\x96\xda\x73\xff\xf2\x5f\x4e\x28\x30\x0d\xd0\xd4\xdb\x5e\xc3\xc0\xa3\x33\x6e\x75\xca\xcd\x7c\x42\x43\xeb\x1f\x1d\x8e\x9e\x7c\x42\xf6\x95\xf8\xf9\xc9\xa3\x65\xed\xb6\xc9\xd7\xac\x5d\x39\x09\xcf\x3e\x4b\xb7\x24\x69\x14\x8f\x83\xd0\x13\xcd\xcd\x1f\x2d\x7d\x09\x39\xa2\x35\x8c\x5a\x43\x29\xa1\x2d\x67\xa4\xf1\x7c\x6c\x31\xe1\x7c\xd3\x63\x97\x8e\xdb\xc7\x09\x91\x3f\x1e\x4e\x56\x52\x0a\x1f\x57\x62\x6f\x3d\xa9\x6e\x5e\x6d\x3d\x0e\x73\x6d\xc3\x4a\x5d\x8a\x73\x09\xff\xca\x5e\xb5\x4f\xd4\xcc\x62\x31\xfb\xce\x1f\x9b\x95\xdf\x13\xc6\x8d\x4c\xd7\xc9\x7a\x3e\x32\xdf\x4b\x38\x37\x51\x3d\xfd\xee\x8a\xc3\x04\x23\x32\xb2\x79\xff\x67\x2a\xe1\x45\x7f\xe5\x27\xf3\xcb\x72\xe3\x90\x99\x2a\x13\x99\x76\x6d\x31\xc1\xba\x76\x81\x81\x94\xca\x4a\xc2\xce\xae\x92\xb3\x33\xfb\x5c\x08\xb7\x57\x55\xa6\xf1\x6d\x49\x24\xdc\x7e\x9c\xd4\x1a\x31\xab\x98\x10\x53\xf9\xe3\x44\xa0\x5d\x16\x61\xa5\xe3\xa5\xf8\x86\x99\x87\x59\x14\x9c\x99\x50\xf5\xee\x3e\x0f\xa1\x7e\x2d\x77\xf2\xc8\xd3\x65\x04\xa7\x46\x09\x5e\xdb\x6b\x73\xc7\x41\xf6\x6b\x6a\xa0\xf9\xcf\x37\x45\x08\x45\xcd\x0c\x7f\xd9\x72\xc2\x3c\x6e\xe9\x1b\xb7\x06\xca\x08\x62\x5c\xaf\x35\x4f\xfd\x28\x23\x24\xc7\x7f\x0c\x09\x38\xfa\x94\x60\xdd\xd3\xf0\x47\xae\xb1\x89\x05\x23\x22\x1a\x57\x7f\xe2\x29\x61\xe6\x27\xe7\x43\x4d\xbd\x95\x04\x8b\xe3\xd6\x3a\xb3\x7e\x3f\x26\x24\xc5\xcf\x3c\xdb\xf9\xa7\x99\x85\xd7\xc3\x01\xbb\xcb\xa3\x38\x95\x35\x99\xa3\xe5\x47\x2d\x61\xa0\x73\xb6\xd3\xc5\xe1\x32\xc2\xe4\x5a\x9b\x25\x4b\x74\xfc\x09\x05\xbc\x0e\xfa\x72\x69\xba\x84\x0c\xbd\x70\x39\x19\x8b\x23\x04\xa3\x54\xc7\x6f\xb9\x13\x0f\x12\x24\x9b\xd4\x31\xfd\xa0\x07\x0b\x04\x0a\x84\x1f\x59\xb1\x83\xa0\xa0\x59\x74\x95\xef\x8c\x26\x41\xdf\xfe\xb9\x4d\x9f\xae\x0a\x41\x66\xed\x93\xc9\xd9\x92\xe5\x2c\x5c\xca\x14\xf7\xcb\x37\x66\x12\x0c\x1d\x9d\xdf\x1a\x5b\xa9\x13\x0a\x77\x67\xcf\x5d\x52\xa3\x47\xe0\xb4\x3b\xf0\xf8\xcd\xe2\x6b\xe3\x50\x67\x78\x6c\xf0\xeb\xbc\x38\xc2\xfc\x88\x59\x9f\x1f\x3f\xda\x4a\xb8\xef\xed\x3f\x47\xa1\xec\x35\x41\xfc\x48\x80\xdc\x4b\xa1\x02\xc2\xf1\x6d\x8b\x9f\xbc\x18\xc5\xa2\x8d\x1f\xb3\x57\x5c\xda\x4f\x10\x78\xbf\xea\xb1\xb3\x65\x2c\xc1\x71\x70\xe1\xe4\x72\xc4\x10\x06\xb4\x2f\x1f\xdf\xd4\xb0\x9f\xd0\x72\xf6\xe5\x2f\x79\xab\xec\x71\x6b\x3c\x3f\x1e\xb7\xc8\x5f\x1c\x49\xd0\x7c\xf1\x52\xfd\xde\xe4\x70\xc2\xfd\xc7\x27\x1d\xd8\x9a\x7c\xc2\x3d\xff\x0c\x8e\xd7\x1d\x11\x04\xd7\x4b\x53\x32\xa5\x0a\x03\x09\xbf\xa5\xdc\xee\xf9\xd8\x7b\x11\x5c\xdd\x66\xba\xd4\xcd\x16\x22\x0c\xf1\x1a\x2f\x14\xb4\x15\x26\xcc\x0a\x59\x61\xf8\xe8\x59\x27\x83\xcb\x1d\xd9\x6a\x1e\x5f\x7b\x19\xa8\xdb\x56\xbc\x35\xa8\x55\x25\x54\x1f\xe4\x58\x2f\xf0\x42\x83\xb0\x5f\xf3\x91\x62\xef\xbb\x21\x06\xe7\xac\xd6\x6b\x0c\x4e\x78\xcf\xc0\xfd\x6c\xed\xa7\x3d\xd2\x6b\x09\xde\xdc\x5f\xe4\xbd\x14\x67\x10\xea\x05\x32\x37\x4d\xf7\x99\x42\xe0\x76\x3a\xd3\xbd\x44\x5a\x87\xa0\x94\x19\xb4\x73\x42\xd8\x26\xc2\xb2\xd7\x87\x37\x04\x9e\x96\x23\x78\x6f\x7f\x5d\xfb\xfb\x9c\x08\xa1\xdd\x68\x72\xdc\xdf\x17\xc5\x2c\x82\xbf\x8b\x2a\xb8\xc8\xdc\x20\x38\xde\xeb\x7f\xec\xc5\x5f\x4d\x18\xd9\xea\x3d\xf9\x61\x6e\x39\xa1\x7c\xc7\x41\xb3\x7d\xa3\x25\xe0\x87\x4b\xf0\x9e\xf5\x57\x08\x01\x5a\xa6\xe1\x81\xab\x3c\x08\x7f\x94\x5e\x7e\x30\x11\xe5\x26\x2c\x51\xd2\x2e\xef\x97\xf4\x1c\x07\xf5\x79\x1d\xaf\xde\xcb\x1d\x24\xfc\x08\x6a\x50\xfd\xe6\xda\xc1\x40\x67\xa2\xec\xe6\x12\xd1\x2b\x34\x86\x86\xd9\xbe\x77\xff\x5f\x78\x0d\xe9\xdb\x7f\xbd\x50\x5d\x84\x4d\x56\xee\x0b\xfe\x70\x47\x12\xe2\xf5\xe3\x1f\xd8\xfd\x72\x26\x54\x36\x6b\x7d\x7b\xef\x92\x47\xd0\xc9\x57\xe0\x4e\xaa\xbd\x47\x70\xcc\xb4\x5c\x93\x57\xea\x49\xb0\xce\x69\x3f\x78\x71\xe7\x02\x42\xc0\xb2\xf6\xb6\x57\x37\x2e\x12\xfe\xed\x1e\x5e\x52\xaf\xc3\x49\xb0\x99\xf5\xc7\xc1\xe0\x99\xec\x38\x44\x4c\x32\x2f\x22\x4b\x69\xc2\x7e\xe7\x4f\xc2\x31\xd6\x4b\x09\x60\xd7\x3d\x0a\x4c\x55\x27\x28\x08\x77\x3e\xf1\xb2\x59\x4e\xd0\x92\x75\xb7\x5a\x7b\x8d\x93\x90\x7f\x60\x70\x9e\xa7\xef\x5a\x16\x37\x2f\xb7\x5b\xbe\xe2\x4a\x22\x34\xf6\xcf\xbb\xce\x6b\xb5\x93\xc0\xfd\x7e\x01\x6f\x9c\xc1\x32\xc2\x63\x03\x91\x6c\xf9\x38\x31\x02\x8f\xcf\x8d\x87\x67\x47\xfc\x58\x84\xf6\x4f\xfc\x3d\xdf\x7c\x1b\x21\x47\x5b\xb4\xb4\xff\x84\x35\xc1\xa4\xae\x44\x69\xa4\xb4\x8c\xc5\x97\xa4\x80\x11\xbe\x55\x23\x0c\x34\xf5\xa6\x16\x6d\xde\x53\xc6\x8e\xe1\xd3\xbf\x6a\xbe\x1c\xf7\x52\x16\x65\x9c\x93\x12\x24\x2d\x1d\x08\x1f\x74\x6a\x02\x66\x69\x6f\xa1\xfe\xa6\x57\x95\x07\xce\x4f\x27\xac\xe2\xb9\xc8\xac\xb7\x5e\x49\xd0\x36\x0f\xf7\xff\x68\x21\x48\x08\xb1\x48\x7a\xdc\xbc\x3e\x9f\x30\xb4\x53\x4e\x6e\x19\xaf\x05\x21\x7e\x42\x83\xc1\x2a\xcd\x39\x84\xb0\x48\xd3\x59\xcf\xc5\x84\x09\x74\xce\x49\xe4\x65\xe7\x1c\xc2\xf7\xdd\xb3\x06\xab\x2a\x04\x09\xcd\x05\x4a\x2e\x5a\x6a\x9b\x08\x25\x5a\x3b\x8a\x05\xfb\x18\x82\xc3\x82\x76\xdd\xb9\xa3\x07\x44\xad\xa9\xdf\x07\xdc\x9b\xe6\x10\x16\x5f\x93\xf8\xbe\x71\x81\x11\x41\xd5\x3f\x3b\x41\x37\x52\x8f\x50\x77\xd3\xe9\xc0\x91\x04\x53\x82\x60\x47\xe4\xe3\xf5\x37\x36\x8e\x43\x42\x88\xca\xd4\x02\x81\xe6\x22\x78\x3b\xb9\x99\x7e\xbe\x51\xc6\x42\x6e\x8e\xd5\xbb\xa4\xbf\x6e\x2c\xee\x37\x4c\x7f\xb6\x62\x35\x07\x61\x46\x7d\xb2\xd5\x56\xfb\x16\x06\xd1\xbb\x9f\x3f\xd8\xd9\xee\x40\x78\x19\x37\x8f\x95\xe2\x98\x4e\x90\x5e\x75\xfe\x77\x7e\x31\x17\xc1\x27\x44\x65\xc1\xe5\xa1\x4e\x06\x66\x2d\xa7\xbb\x64\x35\xe6\x13\x34\x97\xbe\x41\xac\xf0\x3c\x42\x94\xcc\xd9\x2d\xbd\x2c\x1f\xc1\xcb\xf1\xed\xde\x95\x95\x4b\xc6\xe1\xfb\x88\xce\x0d\xcf\xa6\x1f\xcc\x18\x84\xcb\xaa\x12\x9c\x5d\x0c\x69\x0c\xa2\xb2\x3c\xeb\x97\x4e\x0c\x2c\x42\xc0\x99\xd5\x87\xa3\x56\x6c\x27\x2c\xf7\x32\x7c\x79\x27\xad\x8f\x81\xb8\xfd\x4a\x61\xc3\xd6\x65\x84\xd6\xee\x21\xeb\xb4\x33\x7c\x84\x82\xdf\x1e\x76\x7a\x5f\x36\x8e\xc3\x88\xf9\xeb\x95\xd7\xef\xad\x20\xb4\x0e\x4e\x7d\xbd\x78\x9b\x04\xa1\x4f\xee\x61\x50\xc8\xf3\x2f\x0c\x64\xa2\x1e\x3d\xfa\xbc\x4f\x99\xb0\x5c\x30\x2a\xe6\xc9\x89\x93\xf4\x7f\xa5\xff\xfb\x48\xc9\x0b\x46\x8e\xc0\x3f\x57\xe9\xe4\x5b\x7b\x19\x82\x89\x5e\x33\xfd\x69\x72\x22\xf8\x3e\x39\xe0\xe6\x79\x77\x01\xa1\xbb\x14\xe2\x73\xa7\x4c\x26\xf4\x84\xac\xe7\xdd\x11\xc2\x4f\xf8\xe3\x6a\xb4\xf3\x91\xcc\x66\x42\xe8\x53\x1b\xcf\x49\x3f\x34\x08\x4e\x9b\x4d\x75\x2d\x6f\xab\x10\xa6\x36\x70\x0a\x4c\x63\x94\x08\xdc\x41\x66\x06\x6d\x9b\x0b\x09\x4f\x39\xd7\x65\x5d\x7f\x22\x48\x50\xbf\xeb\xb6\xf9\x53\x8a\x21\x61\x5e\x1c\xe7\xef\xac\x9b\xba\x84\xee\x6f\xdb\xee\x2d\xbb\xd8\xc3\xc0\xa8\xec\x17\xf9\x3e\x5b\x4e\x48\x7a\xd7\xeb\x64\x6b\x16\xc5\x42\x39\x5c\xef\x89\xe0\xc6\x95\x34\x86\x3d\x97\xac\x0e\x0a\xf7\x9a\x10\x34\x4a\x26\xa5\x3c\x9a\xb0\x6e\x1c\x6a\x15\x72\xa3\x2c\x05\x72\x09\x39\x31\x51\x02\x92\x8a\xbc\x84\xd8\x2b\x27\xd2\xbe\x9e\xf9\xc7\x80\x73\xe3\xda\x30\x95\x1b\xa6\x84\xcf\xc7\x33\xb8\x7a\xa4\x96\x8f\xc3\x85\xdb\xd5\x79\xb7\xce\x6e\x23\x5c\x9c\x74\xe6\xcc\xf7\x8c\x25\x84\x25\x05\x17\x79\xd6\x14\x5a\x11\x36\x7d\xb1\x3b\x33\xab\xb2\x8f\xc1\xe7\x01\xa1\xb5\xa7\x7c\x37\x11\xf4\x4b\xde\x1c\x98\x71\xf7\x2b\x83\x9d\x81\xbb\xff\x5d\x10\x33\xa2\x31\x98\x2e\x78\xc8\xef\x26\xf3\xba\x08\xaa\x05\x77\x64\x95\x62\x87\x18\x14\xe4\x3c\x54\xdd\x95\xa2\x49\x38\xca\x11\x1a\xf4\x24\xc3\x81\xe0\xf7\xe2\xd2\xd9\xbe\x73\x51\x84\x95\x01\x55\xd7\x6b\x87\x64\x09\x4a\x26\xab\xd5\xf7\xf0\x49\x10\x12\xf2\x4e\xbf\x18\x98\x26\x4f\x78\x2d\x94\xc3\x1f\x50\xbd\x88\x50\x6e\xcd\x1f\xae\xb3\xcc\x8e\x90\xfc\x62\x8d\x53\xcc\x0f\x86\x70\xb8\x65\x91\x63\xdc\x54\x2d\x42\xe6\x11\x8b\x48\xe9\xe6\xed\x04\xef\xec\xc5\x3f\x1c\xfc\x39\x08\x51\x96\x7f\xd4\x38\x44\xac\xc6\x41\xf7\xf0\xb2\xc5\x55\x93\x12\x58\x68\xd5\xfa\xcc\x96\x69\x99\x41\x10\xff\x56\xa5\x18\x5d\xe1\x41\x10\x10\xbe\x23\x1d\x1b\xef\x43\x28\x5d\x7c\xa0\x2a\x57\xd5\x90\x10\xf2\xa1\x41\xd4\xf4\xa4\x03\xc1\xe2\xda\x5c\x8d\xc7\x4a\xaa\x84\xa1\xc2\x74\x45\xde\x38\x09\xc2\xac\xdf\xb2\x37\xd5\x9f\x2c\x22\x5c\xa7\x84\xd8\x97\xf9\x1b\x09\x67\x3c\x92\x37\xe5\x46\x2c\x21\x7c\x4b\x17\x9c\xec\x5f\xd2\xcc\xe0\x84\xb1\xa4\x90\x21\x67\xdf\x38\x84\x85\x14\x3f\x7e\xbd\xa3\x97\xc1\x85\x55\xaa\x3b\xa4\x2f\x9c\x62\x51\xe4\xdd\xb7\xef\xc6\x6b\x1d\x82\x80\xb7\xbb\xca\xb5\xeb\x2c\xa1\x88\xdf\xbe\x78\xf1\xf0\x63\xc2\x77\xc3\x2d\xae\x52\xaa\xc5\x84\x02\xa9\x2f\x0a\x7c\x62\x37\x09\xa5\x13\x58\xd5\xc3\x95\xe9\x04\xf1\x37\xd3\x93\x3c\x5e\xa4\x13\x96\xb4\xb8\xd4\x1f\x1a\x2d\xf3\x54\xcf\xab\x51\xc3\x75\x16\x47\xdd\x22\x92\x4a\x33\x33\x08\x07\xa7\x48\xbc\x08\xf7\x4c\x26\x94\xd1\x70\xba\xdc\x15\x09\x82\x2f\xb7\x22\xe7\x16\xcf\x73\x04\x89\x3d\x45\x66\x4b\xe5\xee\x12\x5a\x07\xbe\x1f\xfb\x0f\x6a\x35\x87\xa4\xdf\x7f\x7a\xca\x42\xb8\x46\xa1\xe2\xbf\xf2\xf9\x7c\xe4\x21\xc1\x59\x53\x08\xc9\x27\xdd\x5f\xec\x5b\x6c\x4d\x88\x7c\x70\x23\xd3\xd1\x8b\x08\x9d\xca\xd6\xbb\x86\x57\x31\x04\xc1\xad\x7b\x8a\x37\x77\x2d\x27\xcc\x35\x17\x8c\x3d\x2c\x3c\x7a\x7c\xda\xb9\x7f\xda\xa1\x93\xb3\x08\xc1\x2f\x9a\xed\x56\x14\x1d\x23\x14\x74\x88\xdd\x17\xe2\xcb\x25\x14\x1a\x9a\xd9\xf5\x09\x3a\x10\x04\xfd\x62\xb2\xbe\x1d\xd7\x24\xd8\xfe\x0b\xb0\x0b\x6a\x35\x23\x48\xef\x9b\x28\xaa\x20\x9e\x30\x0e\x5d\xd3\x63\x2e\xb6\xba\x5c\x24\x98\x88\xe6\x94\x96\xbb\x9f\x60\x31\xe2\xcd\x31\x50\x5b\x2d\x40\xe0\x74\xfe\xba\x23\x4f\x70\x3f\x41\xa2\x27\x4c\x6e\x58\xd3\x9b\x00\xfd\x9d\x3f\xae\xab\x0b\x11\xf4\x39\x05\xbb\x6a\x46\x0f\x93\x16\x65\x35\x8e\x8f\xfb\xba\x19\x2c\xaa\xef\x9f\xb0\xb8\x8c\x83\x30\x69\xf9\xc9\xd3\x26\x57\x26\x10\x24\x14\x97\x5c\xd0\x97\xfa\xc1\xe0\x64\x5a\x9f\xf5\xab\x4d\x1a\x84\xcd\x1b\x36\xfc\x50\x18\x7d\x9b\x9e\xf3\x2e\xab\x53\xad\x05\x83\xd3\x52\x55\xe7\xb2\xcd\x93\x09\x03\xd6\x0f\x3c\x6e\x2c\x7e\x4a\xe0\x0b\xdc\xdc\xfa\xe1\x43\x23\x83\x86\xa1\x49\x22\x1c\xb2\x0e\x04\x87\x4f\x7b\x26\x78\xeb\xaf\x22\x28\x14\xea\x3c\xb3\x9e\x7a\x8a\xd0\xc9\xb3\x4a\xe2\xe9\xa3\x09\x84\xc8\x22\xe1\x23\x12\x1a\x57\x09\xfc\xab\x35\xeb\x1f\x86\x1d\x24\x2c\x6c\xae\xbc\x1e\xe0\x69\x4e\x50\x5f\xe8\xac\x1d\x72\xf6\x18\x21\xd3\xf6\xf0\x91\x38\xab\x07\x04\x6d\x6f\x53\xd5\x8c\xd1\x13\xac\xce\x0a\x33\xd5\xd7\xc6\xb2\x04\xa1\x57\x59\x22\xce\x07\xc3\x08\xa5\xdd\x85\x5a\x02\x6a\xb5\x0c\xcc\xdb\xcc\x27\x24\x15\x88\xd0\xff\xa1\xff\xfb\xa2\x77\x95\x3e\xed\x0c\x6e\xcd\xba\x29\x3b\xfd\x63\x39\x03\xb5\x8b\x1b\xb5\xb8\xef\x5e\x25\x44\xd8\xab\x1b\x4c\x3c\x94\x40\x38\xb0\xdc\x44\x91\x6b\xb4\x98\xfa\x1a\xa8\x75\x2b\x1d\x20\x8c\x58\xef\xbb\xdf\x97\x78\x60\x5c\x29\x58\xd7\xe4\x5c\x3d\x4b\x81\xe0\xbf\xe7\xac\x87\x66\xdc\x22\xc2\xdb\xe3\x3b\xb2\x6d\x34\x27\x11\x3c\x42\x1c\xaf\xba\x3e\x12\x23\x04\x7d\x7f\x5c\x72\xe0\x5d\x2f\x33\x86\xe2\xbf\x0b\xfa\x4a\x20\x49\x58\xc0\x2b\x1e\xc2\x3c\x2f\x63\xd1\x38\xfb\x8c\x8f\x65\xfd\x44\xc2\xcf\xe3\xda\x07\x38\xa4\xfe\x31\xb0\xcc\xda\x3e\x6d\x73\xb5\x21\x61\xe0\x47\x93\xd9\xab\x59\x2b\x08\x86\xcb\x62\xef\xf8\x4d\xed\x67\x40\xba\x6a\xc3\x5b\xbb\xe7\x10\x1c\x67\xc9\x4d\x6e\xec\x5b\x44\x18\x79\x20\xf9\x6f\xce\x0e\x09\x42\x68\xeb\xaf\x45\xaa\x2b\xdb\x19\x6c\x68\x48\xcd\xa7\xa2\x01\x06\x09\x6f\x1b\x3d\xbe\x8a\xb9\x10\xfa\x36\xc7\x2c\xdb\x3b\xa2\x3b\x0e\x3a\xde\xde\xab\xcf\x4c\xb7\x26\xd0\x4e\xa7\xe0\x7b\x9f\x67\x11\x62\x77\x07\x3f\xb7\xb8\x60\x42\xe0\x8c\x62\x7b\x56\x3f\x10\x24\xfc\xab\xda\x24\x16\xa9\xf3\xb4\x08\x01\x4f\x26\x7c\x6a\xf3\xd8\x44\xb0\x69\x6a\x48\xe7\x1c\x49\x1a\x87\xc2\xa3\x86\x72\x35\x11\x15\x45\xa8\xed\x9a\x39\xd0\xe7\xe0\x4f\x38\x79\xc1\xeb\xd6\x02\x73\x21\x82\xd5\x22\xa7\x11\xd6\x89\x73\x1c\x1c\xa6\xed\xbe\xa1\x3b\xff\x7d\x11\x46\x92\x27\x73\x77\xea\xd7\x31\x98\x6f\xbf\x36\xcd\x6b\x99\x18\x8d\xe1\x0c\x45\x37\xea\xe5\xb5\x31\xb8\x7b\xcc\xa0\xac\x76\xf1\x6a\xc2\x8d\x08\xd3\x36\xc3\x2c\x3d\xc2\xf7\x1d\xa2\x96\x35\x57\xf4\x09\xbf\xba\xad\x44\x57\x18\x49\x8f\xc3\xfc\xc0\xf0\x27\x5a\x52\xc2\x04\xe7\x18\xe3\xb3\x7f\x5e\xfa\x10\x5c\xad\xfb\x9b\x06\x9a\xa6\x11\xd2\x53\xfd\xd4\xff\xd9\x0f\x30\x18\x32\x5e\x2e\x2b\xee\x20\x40\x70\x7e\x9f\xd5\xf7\x65\xbd\x30\xc1\x2a\x7f\x97\x7c\x5d\x87\x2c\x41\x3b\xde\xd6\xf7\xe9\xdd\x61\x06\x9c\x62\x83\x7c\x4a\xc7\x66\x13\x7e\xd8\x66\xe4\xb8\xdf\x53\xa1\xb1\xc2\x93\x69\x51\x75\xf7\xe2\x69\x42\xc8\xfb\x8e\xb3\xe5\xe7\x4e\x13\x56\xcf\x59\x98\xf0\x5f\x99\x57\x56\xb0\x28\xcd\xbd\x91\x81\xc2\xe9\xcc\x83\x36\x49\xcb\x09\x91\x5f\xd5\xce\xb9\x9d\x56\x21\xe8\x9d\xbf\x77\xe6\x8e\xe3\x72\x82\xe4\x36\xfd\xfd\x1c\xe7\xaa\x8b\xf0\xec\x72\x97\xba\x4b\xf9\x79\xea\x9f\xfc\x64\xf2\xe8\x15\xd2\xec\x7e\x9f\xdc\x96\xdd\x84\x4f\x81\xeb\x38\x2f\xed\xd2\x20\x3c\xde\xb4\x7b\x53\xef\x6b\x19\x82\xac\x5c\x8d\x43\x42\xb0\x34\xc1\x29\x58\x28\x62\x38\x72\xdd\x38\x68\xfe\x4a\x3f\x1d\x72\xb4\x9f\x81\x9d\xec\x19\x3e\x05\xff\xb5\x84\xbf\x75\x2f\x24\xd4\x57\xe6\xb1\x88\x7f\x76\xa6\x77\xfe\x68\xd1\x94\x3d\xdd\x70\x4c\xb3\x8c\x81\xc0\x83\xd9\x59\xbf\x7f\x2f\x26\xf0\x70\x26\xde\x16\xef\x00\x83\x2e\xd7\xd6\x96\x17\xef\x1b\x18\xf0\xee\xe3\xe5\x4f\x3d\x68\x4a\xfd\x11\xe7\x4c\xe6\xce\xdf\x4e\x98\xbe\x7c\x92\xb2\x9b\x5c\x1e\xa1\xff\xc3\x8c\x3b\xa6\x1f\xb5\x09\xcc\x99\xb3\xb5\xeb\x3c\xc5\x08\x2e\xd6\xbb\x1b\xdc\x67\x38\x11\x4c\xf3\x43\x3d\x6f\x24\xaf\x24\x14\x4c\xdd\x95\xdd\x6c\xb4\x9e\x70\xc9\xb3\xd7\xb3\x73\x9e\x24\x61\xd3\x0b\x4e\xfb\xed\xbb\xa3\x8b\x50\x3b\xe7\x40\x97\x6d\xf9\x00\x03\x45\xe6\xe4\x97\x38\xc1\x65\x34\x86\x2d\xda\x5d\x32\x53\xff\x7e\x60\x90\x3c\xf1\xa8\x84\xbc\xf4\x6a\xc2\x12\x21\x97\xd8\xe1\x4b\xbb\x08\x2b\xe2\x2e\x1b\x38\x92\x1b\x61\xfa\xb2\xf6\x26\xd1\x97\x3f\x19\xf4\x4a\x6e\xb4\x55\x0f\xba\xcc\xc2\x6f\xc1\x7d\xc7\x6f\x32\x8b\x08\xdf\xca\xcb\xdc\xf7\x85\xc4\xb3\x38\xb1\x26\xb0\xde\xb0\x7b\x39\xe1\xe9\xf3\xfc\xa3\xbd\x01\x51\x84\x6c\x5b\xee\x61\xe1\x17\x97\x09\x3f\xbd\x5b\x25\x33\x1f\x8f\x3e\x66\x6d\x38\x1b\x77\x6a\xd9\x12\x12\x1e\xaa\xc7\x56\xc4\xbd\x2b\xc2\xe5\x3e\x6e\xaf\x80\xfd\xeb\x68\x0c\x0a\xc1\x1c\x3c\xb4\xaa\x97\x19\x43\xcf\xc3\xb5\x33\xec\x57\xac\xa2\x31\xd8\x14\x3b\x1d\xcb\x54\xa9\x2f\x82\x0b\xbf\xc4\xf6\xc3\xc5\xdb\x09\x7a\xde\x47\xed\xbb\xc4\x1f\x10\x16\x47\x7e\x7b\xeb\xe4\xa1\x47\x98\xe3\x59\x2a\x68\xa2\x1f\x45\xf0\x57\xcb\xff\x5a\xb0\x66\x1a\xe1\x6c\x5d\x62\x92\x1b\x45\xb2\x88\x14\x7b\xa0\x24\xa4\xea\x44\x58\x90\x5b\xb9\x26\xaf\xd4\x80\xb0\xa8\xb1\xaa\xb9\xdc\xd1\x94\x45\x9a\xa2\x97\x92\x41\xac\x04\x61\x41\x5f\xad\x49\x54\xc1\x76\x42\x94\xd6\xbf\x81\xbb\xd9\xb3\x09\x7e\x26\xae\xcf\xe2\x5b\xa7\x12\xaa\x2c\x1f\x99\xbf\x12\xe1\x22\x84\x25\x16\x1c\x5a\xb3\x65\x2d\xa1\xfa\xbb\xc3\x09\xf6\xc1\xe8\x4f\x30\xd7\xf5\x59\x90\xca\xc1\x71\x45\xc7\xfe\xc8\xe0\x3b\xb6\x8c\xc1\xda\xba\x40\xeb\x63\x27\x02\x09\xed\x31\x3f\x17\x9e\x9c\xf8\x9d\xc1\x8c\xcc\x3a\x87\x1b\x76\xa6\x34\x86\x8d\xb1\x39\xd1\x07\x0b\xdd\xc7\x61\xde\xf6\x5d\x96\x3a\x43\x22\x04\x37\x4b\xcd\xb8\x59\xcc\x23\x16\x01\x11\xef\x5c\x4f\xdc\xb8\x45\x68\xfb\x34\xd4\xfa\xd4\x41\x88\x20\xb4\xd4\x4b\xf4\xc5\x03\x3e\x42\xd3\xae\xb9\x17\xe6\xcf\x95\x23\x44\xf0\x7a\xec\xf1\x6f\xb4\x22\xf0\xac\x7b\x2c\x5b\xbb\xb4\x86\xc5\x8e\x24\xbb\x04\x8e\x69\x15\x2c\x4e\xc7\x70\xd9\x55\x2d\xbe\xc3\xa2\x27\x55\xe3\xa6\x4b\x24\x07\xe1\x1d\x7a\x9e\xb8\x7b\x5d\x24\xc4\x1a\x9e\x89\x10\x7d\xa2\x3e\x0e\x8d\x93\xd5\x36\x16\xa9\x7d\x62\x70\xd1\xe2\xef\x3c\x52\x97\x21\x28\x2e\xcc\xda\x99\x98\xd7\xcc\xa0\x71\xba\x84\xc5\xcc\xc7\xf1\x0c\x96\xcb\x55\xd4\x94\xcc\x17\x25\x1c\xff\xd6\x3c\x55\x4c\x5a\x8a\x70\x54\xde\x6d\xd5\xe4\xc4\x2f\x0c\xe4\x7b\xad\x73\x2a\xe3\x53\x09\x2f\xe7\x9f\xae\x7b\x39\x3d\x68\x1c\x52\x0d\xf3\x02\x17\x05\x2c\x21\x18\x2d\xb0\x12\x33\x56\x1e\x62\xc6\x50\x1b\xeb\xf6\xf9\xd8\x7a\x19\x82\xd3\x90\xc4\xec\x2d\xbd\x9c\x04\xf9\x53\xab\x84\xef\x9a\xaf\x20\x7c\xc8\x50\xf9\xe6\x31\xb3\x85\x19\xc3\xcb\xc0\x29\x27\xa5\x39\x9a\x18\xb8\x45\x69\xad\x39\xf7\xc7\x94\x60\xba\xb1\x7e\xc5\x36\xf1\x41\x06\xd5\x77\x65\x8d\xca\x2e\x38\xd1\x18\x66\x9f\x75\xda\x3c\xf1\x87\x0e\xe1\x9d\x45\xde\x8b\x8d\x6b\x43\x08\xed\xbf\xd3\x27\xed\x59\x33\x9d\x90\x25\xb6\x2f\x38\xf9\xf7\x55\xc2\xdd\x5c\xa5\xbc\xc1\x42\x1e\x42\xe5\xc2\x93\x33\x8e\xf4\x6d\x22\x74\x06\xdd\x7f\xb9\x38\x6c\x22\xc1\xae\xe8\x77\x4c\xb6\xc8\x3c\x82\x4c\xd8\xf6\xc3\xc7\x1e\x18\x10\xc2\xce\xaf\x91\xb7\xef\xe2\x22\x68\xf3\xca\xf8\x39\xb5\xcd\x25\xb4\xbd\x7a\x3c\x69\xe1\x24\x5f\x82\x52\x74\xed\xe1\xce\x94\x44\xc2\x4e\xef\xcb\xee\x77\x7e\x26\x10\x76\xfe\x41\xe1\x7b\xee\x1b\x84\x95\x97\xbe\x6a\xf8\x78\x13\xe1\x4e\xb5\xd2\x50\x9e\x8d\x1a\x41\x41\x69\xe6\xaf\x2b\xd3\x7f\x15\x61\xc3\x9e\xad\xbf\x4d\x78\x05\x08\x76\x01\xe9\xbb\xdf\x1e\x5a\x41\x48\x7e\x12\xc4\x66\xa5\x5c\x65\xa1\xe7\xc1\x79\xa3\x64\xda\x4a\xc2\x64\x4f\x97\x55\x27\x4e\x29\x11\xec\x7f\xb5\x16\x31\x5d\xd7\x09\x51\x95\x6a\x6f\x97\xf6\xfa\x10\xae\xac\x5f\xee\x38\xd2\xa5\x47\xd0\xb9\xa6\x2f\xfc\xd5\x70\x29\x61\xf3\xde\x9c\x3b\xe9\xfe\x7f\x19\x70\x9d\x8b\x58\xd9\xf9\x48\x8f\xf0\xd4\x6f\x67\xd2\xe4\x45\x47\x09\x72\x07\xbe\x6f\xda\x6f\x6f\x42\x50\xfd\x2e\x73\x29\xb3\x48\x8f\xb0\xa9\x3f\xd3\x9c\xeb\x63\x0d\x21\xa8\x37\x6e\xc8\x44\xe6\x0e\x41\x9b\xb3\xed\x83\xe7\xe2\x32\x42\x58\xb3\x81\xc7\x0f\xcb\x72\x16\x5a\x01\xb1\x7d\xaf\x79\x3c\x69\x0c\xba\xdf\x92\x7c\x0f\x6a\x6c\x27\x1c\xbb\xc9\xbd\x63\x17\xe7\x44\xc2\x97\x13\xf7\x0c\x53\x25\xd7\x8d\xc3\x39\x99\x08\xe3\x85\xe6\x2f\x19\x3c\x6d\x94\xdf\x54\x1b\x9f\x4f\x88\xe6\xf6\xe8\x4e\x33\xd3\x25\x84\x97\x2d\x9d\x3c\xf1\xbe\x2f\x8b\x3f\xc7\x5f\x28\xa4\x4f\xb2\x22\xd8\x4f\xf7\xa8\xb2\x2c\xf5\x23\x5c\x29\x52\x7f\xb4\xc1\xc0\x8a\x70\xbf\x43\xe9\xc1\x60\xe4\x02\x42\x90\xf0\x97\x13\x4e\xbe\xdc\x84\xae\x63\x3c\xf2\xbc\x33\x24\xc7\x95\xb3\x62\x4d\x46\xad\x67\x95\x08\x82\xc9\x27\x72\xc2\x39\xd5\xc6\x95\x84\x22\xc5\x13\x0b\x9e\xfc\x66\xa0\xb1\x53\xe6\xa5\x37\xc7\x3c\x42\xa4\xb2\x58\x9c\xd9\xc3\x39\x84\xcc\x39\x6c\x4c\xec\x33\x51\xea\x3f\x95\xb0\xe1\xc7\x4f\x33\xc2\x59\xb7\xe8\xba\xcc\x52\x2d\x82\xe9\x92\x3f\x8e\xaa\x35\x67\x08\xcb\xe7\x1f\x91\xe8\x1b\xdd\xce\x18\xf7\x66\x6d\x31\x55\xdd\x40\xfd\x3a\x0a\x5b\xb9\xeb\x42\x09\x6b\xc9\xfc\xe6\xa5\x15\x59\x84\xeb\xeb\x2f\xf0\xac\x1d\x9e\x40\xb8\x12\xff\xc9\x3f\x71\xd9\x37\x06\x77\x9a\xe5\xe4\x12\xe6\x4e\xa3\x31\xcc\xbb\x7a\x39\x4e\x89\x47\x68\x1c\xcc\x82\x7f\xf8\x98\x8e\x6e\xe5\x0f\xf5\x76\x79\x34\xbc\x54\x27\xec\x75\xb1\x89\xdd\x8a\x65\x84\x95\xb5\x73\x57\xca\x98\xae\x21\x78\xd4\x47\x8b\x9e\x5a\xa6\x4e\x78\xd5\x5d\xb8\x42\xc8\x6f\xc6\x38\x7c\x9d\xc7\xf1\xa2\x48\xf3\x27\x03\x91\x73\xef\x6a\xf9\x97\x3a\xb1\xa8\xdd\x50\xd4\x75\xe7\x63\x23\x61\x59\xdf\x62\xcf\xc5\x1e\x9f\x08\x0e\x8f\x0e\x48\x9d\x11\xab\x26\xf0\xdf\x53\x71\xed\x37\x4c\x26\xdc\x5f\xbd\xd4\xcd\xe6\xeb\x55\x42\xc1\xb3\x6a\xc7\x2b\x0e\xd1\x04\xfe\x63\xd7\xde\xdf\xdf\x1c\x4d\xf8\xb3\x3a\x65\xf9\x7f\xc5\xd1\xb6\xce\x7c\x68\x79\x0c\x61\xde\x7c\x31\x9f\x61\x2e\x67\x42\x35\x3b\xb3\xae\x8d\x3f\x8b\x45\xcd\x71\x93\x14\x2d\xb3\x78\x82\xd6\xc2\x1d\x5e\x36\xd7\x5c\x58\xbc\x29\x29\x36\x0b\xc9\x8b\x20\xb4\x58\xba\x3f\xa8\xd4\x29\x21\x84\x31\xfd\x58\xfe\xae\x88\xb0\x3e\x3b\xec\x14\x1f\x0f\x4b\x88\xf4\x96\xdf\x54\x9e\xcf\x12\xf8\x7e\xaa\x3c\xf8\x76\x3c\x8c\xc0\x97\x6e\xe1\xd8\x2f\x70\x80\xd0\x75\x73\x7e\x60\x67\x99\x3f\xe1\x10\xff\xed\xd8\x59\x91\x1a\x84\x93\x07\x93\xbd\xeb\xf4\x3b\x18\x7c\x30\x56\x75\xeb\x10\x9c\x42\x98\xf2\xef\xda\xd9\x65\x91\xfe\x84\x64\x63\x3d\x98\xeb\x8a\x13\xbe\xe8\x6a\x25\x25\xaa\xbe\x60\xd0\x3c\xb0\xd2\xb6\x85\xe5\x26\xec\x60\x13\x53\x25\x9b\x67\x11\x7e\x29\x4f\x52\x6b\xf4\xe4\x1b\x87\x77\x0d\x11\x9a\x1e\x17\x7a\x19\x2c\x6d\xb0\x3d\x1c\xbb\x29\x75\x1c\xa6\xfc\x9d\x5f\xc1\xdc\xbc\x48\xc8\x94\xda\xfd\x6a\x27\x5f\x30\x8b\xa2\x6b\x5b\x03\xba\xfa\x5d\x09\x3e\x6b\x52\xcb\xdb\xde\x2e\x23\x0c\x33\x1b\x57\x1d\x6a\x14\x20\x04\x59\x66\x58\xb1\x8a\x1a\x84\xd3\x5a\xbf\x9f\x4f\xb8\x3b\x8d\x20\xe5\xb8\x8a\x7b\xed\xe9\xed\x84\x3b\x2e\x46\x96\x75\x8d\xda\x84\x08\x07\xc9\x67\x2d\xa3\x9b\xcd\x2d\x01\x33\x66\xb8\x7f\xd4\x20\x14\x59\x1a\x87\x4d\x94\xdc\x40\x10\x35\x0f\xc8\xbc\x27\xac\x49\xb0\xdf\xff\x45\x57\x22\x78\x84\xc1\xd1\x95\x7b\xc2\x06\xb8\xe4\x09\x0f\xf5\x5e\x36\x2a\x34\x0b\x12\x1e\x6e\x4e\x59\xbf\x69\x9d\x11\x61\xd8\xeb\xee\xbc\xd4\x6f\xda\x84\x04\xfb\x92\xd8\x18\xd6\x86\xb0\xf6\x9b\xb9\xb4\x05\xf7\x5a\x42\x5e\xc0\x54\xc5\x49\x8d\xba\xe3\xa0\xfb\xa1\x7a\x5e\xef\x65\xc1\x71\x10\x2e\x3f\x9b\x6b\x77\xe9\xe9\x7f\x1f\x5b\xd0\x4d\x2a\x5e\x45\xc8\x39\xde\x6a\xc3\xc5\x7d\x72\x1c\xce\x4c\x1a\xe9\x97\x5a\xa5\x3a\x0e\xee\x97\x5f\x16\x6c\xbd\x2d\x37\x0e\x67\xfd\x53\x4b\xdf\x6f\x34\x22\xcc\x78\xcb\x71\x40\x34\x62\x25\xe1\x87\x64\x79\xbf\x5f\xb0\x06\x61\x16\x67\x36\xbf\xd3\xa6\xa9\xa3\x5b\xef\xb6\xad\x3c\x59\x3f\x19\x78\xb8\x89\x84\x1d\x51\x93\x22\x94\xf2\x97\x1f\xfa\x39\x2d\x83\x60\x35\xb5\xca\xd2\xa8\x54\x91\xb0\x5c\x42\xec\x94\xc4\x36\x35\xc2\xa0\x80\x47\x7b\x47\xa7\x3e\x21\xed\xd3\xbe\x2e\x37\x0d\x75\x82\xdc\xb4\x93\xf9\x17\x9c\x4e\x12\x82\x53\x38\x1b\x07\x2f\x2e\x26\x74\x15\xbd\xef\x9f\x9c\x23\x4d\x98\xe9\x29\xdb\x70\x63\x8e\x38\x21\x60\xef\xdd\x8b\x7c\x67\x0c\x09\xef\xdd\x2c\xfc\x7b\xf6\xae\xa7\xfe\x65\x4b\xbf\x4a\x25\xad\x22\x7c\xd6\xfb\x78\xf8\xf7\xf0\x47\x06\x79\xab\x2e\xde\x88\x53\x94\x22\x68\xe9\xca\x39\x72\xb4\x59\x13\x12\x32\x4b\x82\x99\x2b\x97\xd9\xb1\x72\xf6\xf7\xcc\x3b\x95\x5c\xe6\x84\x5f\x3c\xfb\xee\x24\xc4\x69\x13\x72\xe4\xf8\xbd\x6b\xb7\x2f\x26\xb4\xe8\x31\x4f\xcf\xa8\x4d\x27\x88\x74\xcf\x9c\xbb\xb5\xb5\x84\xc1\xcb\x91\x5b\x8e\xba\x12\xbb\x08\x56\x5f\xb6\xa9\xbf\xbd\x12\x40\x63\x25\x32\xb7\x32\xf7\xed\x5a\xe9\x71\x98\x27\x2d\xa9\x94\x58\x78\x61\x1c\x42\x02\x2e\x65\xbd\xfb\xb0\x9f\xf0\x63\x48\xed\xc9\xb7\x5b\x33\x09\x73\x36\xe7\xf2\x9e\xf1\xbc\x4b\xc8\xdd\x3f\xd9\xe9\x3f\x14\x0a\xc6\x75\x9e\x1e\x85\xad\xf3\xb9\xa0\x93\xa3\x28\xce\x15\xdb\xfb\x5d\xcb\x69\x1c\x34\xb8\x67\xfd\xfe\x92\x1f\x3e\xae\x28\xc9\xd5\x64\x7d\xbc\xa7\x49\x88\x9a\x94\xf7\x61\x19\xaf\x10\xa1\xce\xcf\x49\x68\x8b\x48\x0a\xc1\x79\xa9\xa5\xe1\x56\x1d\x29\xc2\xa2\x26\xc1\x9a\x26\x4f\x33\x82\x46\x82\xcb\x95\xd4\x3f\x8b\x09\xfd\xce\x1f\x2f\xb9\xce\x76\x24\xf4\xa5\x29\xc5\xc9\xcc\x9a\x47\x78\x2d\xa3\xec\x95\x1f\xaa\x4b\xf8\xdb\x52\x57\x78\x68\xaa\x36\xe1\x5a\x9b\x64\x6c\xa0\xad\x32\xe1\x54\x10\x4f\xd1\xab\xac\x0f\x0c\xda\xbc\x3a\x05\xf8\x6c\xf2\x08\xca\x55\x71\x2a\x3b\x0c\xb3\x09\x37\xde\xcc\xd8\xdb\x6c\x51\x41\x28\xb5\x9a\xd5\xe9\x6c\x97\x4e\x88\x8a\xfd\x6d\xf9\x69\xb4\x78\x44\x94\x16\xcc\xcd\xb1\x24\x2c\x94\xe6\x14\xae\x74\x2d\x65\xc7\xca\x21\x57\x37\x61\x7e\x4b\x5e\xc2\xbe\x23\xf1\x7e\xdc\x8f\x7c\x08\xfe\xb9\x2d\x41\xdc\x6f\x12\x09\xab\xc4\x94\x5d\xe3\x07\xed\x09\x47\x7c\xef\xe7\x74\x7c\x5e\x4e\x70\x92\x37\x9a\x79\x6e\x4f\x03\x83\xc2\xae\x8c\xc8\x9d\x76\x62\x34\x06\x26\x2c\x28\xe7\x93\x61\x43\x11\xb6\xaf\x78\xb1\x60\x5b\x86\x09\xa1\x3f\x5f\x65\x11\x4a\x96\x11\x7e\x6f\x3f\x79\x2a\x4e\xca\x9e\x10\x9d\xbb\xac\x84\x4f\xe9\x10\xe1\x8a\x61\xe0\x3c\x05\xd5\xe5\x84\x15\xb9\x4f\xee\xf7\xe7\xcc\x22\xb4\x55\x48\x7e\xbd\xf8\x7e\x12\xa1\xc3\xbc\xeb\xa0\x5c\xad\x2c\x61\x91\x52\x8f\xfb\xbf\xf7\x0b\x09\x02\x27\x2b\x03\x3c\xff\xd5\x31\xe8\x7a\x77\xfc\xb0\xb5\xdc\x62\x82\xeb\xcd\x9b\x07\x33\x6b\x46\x18\x18\xbc\x72\x37\x29\x8b\xe7\xa2\x31\xac\xf6\x16\x4f\x4c\x13\xed\x61\xe0\x42\xbf\x75\x4d\xe5\xb5\x08\x47\x4a\x67\x57\x6e\x09\x0b\x23\xb8\x65\xda\xe8\xc5\x3b\xa4\x8c\x2b\x27\x05\xad\xf6\xdc\x36\x0a\x20\xb8\xce\xd5\x16\xd3\x5c\xbd\x84\xf0\xf1\x95\x60\x4a\xf1\x79\x33\xc2\xc1\x32\xdf\xdb\x7b\x38\x38\x09\xc7\x0b\xfc\x9b\xf2\xae\xab\x13\xd6\xf0\x1c\x35\x4b\x9a\x65\x43\xb8\xec\xfb\xf2\xfa\x64\xcb\x63\x84\x9e\x47\x51\x33\xc5\xe3\xd6\x11\x7e\x4f\xd5\x4e\x66\x8e\x19\x10\xb4\x87\x93\x8e\x18\x27\xac\x25\x4c\xb2\x4b\xf7\x97\x9d\xe9\x47\x88\x9c\x9c\x3a\x78\x49\xf5\x18\x81\xdb\x49\xb7\xfb\xdf\xa4\xaf\x0c\xdc\xd5\x79\xb6\x9d\xbc\xd5\xcf\xe0\x5a\xaf\xc2\x80\x9b\x7f\x17\x83\x6b\x37\x6c\x76\x68\x2f\x9a\x40\x58\xd0\xa9\xe4\xb4\x31\x68\x16\xc1\x75\xeb\xa5\x4a\xfe\x19\xeb\x09\x07\xf4\xbe\x3a\x73\x3e\x2a\x20\xac\xab\x9b\x1e\xf9\x1f\xf8\x77\xae\x2e\xff\x0f\xaa\xcd\x93\xeb\x92\x2f\xbd\x63\xb0\xe0\x7e\x23\x4f\x6a\xa5\x37\x8d\x41\x89\x73\x73\xbe\xe9\xc3\xb9\x84\xdc\xad\x87\xb8\x39\xb9\x4c\x08\xe9\x3f\x56\x39\xd9\x2e\xd6\x25\xe4\x66\xf8\xee\x30\x1e\x96\x20\x88\xf5\xaa\xd9\x1f\x31\x12\x26\x78\x4e\xbd\x9e\xf5\xef\xde\x1a\x42\xd3\x86\xe5\xb1\xce\x6f\xe7\x8c\x43\x73\xd8\x41\x57\x89\x60\x7f\x06\xab\x5d\x6b\x3b\xf4\xf7\xae\x26\xc8\xff\xe2\x3c\xcc\xd3\xa6\x39\x0e\xfa\x37\xef\xbf\xd8\xbd\xa0\x8b\x41\xc2\x8d\x47\xab\xd3\x62\x39\x08\x19\xef\x06\xe6\x97\x54\x64\x13\xa2\xfd\x64\x3f\x85\x1d\xe2\x22\x3c\xd7\x98\x50\xdd\xef\x2f\x47\xb8\x27\xfd\xf1\xa2\xf8\x25\x71\xc2\xd4\x08\xa1\x2d\x93\x43\xce\x13\x8e\x3e\x5f\x54\xb9\xe3\x8a\x38\x41\x5a\x20\x96\xab\x78\xa1\x18\x21\x50\xeb\xe7\xc7\x87\x3e\xf3\x09\x76\x5b\xa5\x32\x06\x95\xf4\x09\x17\xfd\xdf\x7a\x39\x5f\x0e\x67\x11\x3a\x65\x69\x44\xfd\xec\xcf\x0c\x1a\x76\x5c\xad\x79\x20\x9d\xcd\x20\x6e\x69\xe9\x0c\x67\xef\x87\x04\xd7\xa2\x5f\xeb\xff\xc3\x01\xe5\x45\xf3\xc4\xfc\x9a\x8a\x60\x1d\xa7\xb1\x47\x2d\x68\x0d\xc1\x7a\x58\x87\xd5\x2e\x76\x23\xc8\xa7\x4c\x98\x63\xa2\xf6\x94\x30\x27\x5a\xfc\x44\xff\x91\x3b\x84\xc7\x8e\xfc\xa2\xba\xff\x92\x08\x42\x49\x0b\xd9\x6e\xbb\x32\x42\xf9\xdd\x9e\x36\x59\xf5\x32\x82\x41\x7c\x7b\x8b\xf0\xb4\x4a\x16\x2a\x6e\x0a\x0b\x3f\xcc\xd3\x25\x48\x94\x16\xff\x8c\x73\x48\x28\x82\xe7\x86\xfe\x9f\x27\xd8\x55\x34\x06\x66\xd3\x65\xad\x37\x2b\x7b\x19\xb8\xec\x7f\x7c\x72\xd6\x23\x86\x60\x3e\xfb\x7c\xd3\xde\xa9\x9b\x08\xd5\xca\x3c\xa6\xa9\x29\x3a\x84\x69\x9b\xbe\x3d\xfc\xe4\x66\x44\x78\xa0\xa5\x96\xf4\xbb\x6c\x3e\xe1\x6e\x79\x21\x7b\x61\xab\x18\xe1\xcf\xda\xfd\x25\x29\x46\xba\x04\xae\xcf\xbb\x16\xb6\xdc\xd5\x20\x2c\xfc\xf1\x2d\xb3\xba\x33\x97\x85\x7a\x03\xdf\x7e\x5f\xa3\x78\xc2\x91\x74\x35\x9d\x05\x6b\xde\x13\x0a\x95\x9d\x57\xca\xfd\xfd\x48\x90\xe8\x08\xb4\xe8\x10\xc8\x27\xf8\xd6\xcf\x7c\x32\xf2\xa2\x84\x70\x63\xd8\xc8\x51\xf2\x58\x27\x03\xe7\x5b\x1d\x7d\x13\x3d\x4c\x09\x81\x78\xa2\x1f\xc1\xb9\x81\x70\x87\xf7\x7b\xc5\xd4\xa5\xc7\x08\x4d\x6d\xe5\x97\x5c\xf3\x3f\x30\xf0\xb5\x75\xfa\x20\x13\x95\x46\xd8\xa5\xde\x59\x12\x97\x1d\x4b\xa8\x4e\x5a\x73\xf2\x85\xee\x3c\x42\x6f\xe1\xfa\xe6\x5b\x4a\xb2\x04\x41\xaf\x60\x9e\x98\x7c\x5d\xc2\x72\xcf\x5f\x89\x41\xae\x5e\x84\x92\x03\x9c\x7f\x7b\x13\x8f\x8f\xc3\x9e\xaa\xbf\xa7\x4b\x57\x5d\x25\x9c\xf6\x3d\x61\xea\xe5\xcb\x41\x30\x8a\x5c\xe1\x39\xd1\xc1\x62\x1c\xc2\x96\x7c\xf1\x09\xd4\x3b\x45\xe8\x89\xb3\x6b\xc8\x9c\x18\x4a\x08\x89\xbf\x34\xe3\xce\x8f\x3c\x16\xf3\xd3\x17\x54\x3d\xce\xef\x60\x60\x74\xe7\x8f\xd7\xc5\xdd\x1d\x0c\x8e\x38\x4d\xdb\x3f\x7c\x5f\x93\xfe\x07\xb8\x6a\xcf\x73\xa8\xde\xde\xfe\xbf\x10\xfe\x35\xca\x6c\x9e\x25\x0f\x81\x3f\xfb\x20\xf4\x27\xcb\x12\x64\xca\x2d\xa6\xfd\xe9\xb6\x19\x87\x64\x8e\xee\xf8\x00\xe9\x43\x0c\x92\xef\x5b\x3e\x30\xfa\x24\x40\xd8\x7e\xe8\xcb\xea\x75\xce\xa5\x84\xd3\x12\x52\xeb\x78\xe7\x96\x12\x3e\xec\xb4\x5e\x9c\x6f\x51\x46\xb8\x2a\x75\x4f\xbf\xbc\xae\x94\x60\xd9\xfe\x26\x75\x7d\xa6\x16\x61\xa1\x92\x8a\xda\xd5\x17\x7d\x0c\x26\x1e\x31\x8b\xee\xe5\x28\x27\x08\x4e\x34\x68\x36\x50\xce\x26\x9c\x75\x3c\xdc\xd4\x37\x5a\x6e\x79\x3f\x36\x52\xbb\x19\x40\xe0\xf1\x0d\xb6\xb9\x7d\x2f\x85\x50\x31\x77\xe1\x9f\x23\x9c\xa7\x8b\xb0\x3d\x90\x79\xa9\xaf\xa8\x4f\xb8\xb4\xc7\x59\x60\xba\xb8\x32\xa1\x93\x7f\x59\xe7\x19\xc1\xab\xe3\xa0\x55\x37\x75\xb5\xed\xe7\x50\x82\x9e\xe4\x01\x93\xab\x1e\xb7\x08\xef\x1d\x25\x92\x1d\x9b\x75\x08\x1f\x9d\x0d\x4b\x42\x3f\xe7\x33\x68\x8d\x75\xa8\x2d\x50\x56\x27\x5c\x32\xd9\x7c\xfd\x01\xbb\x98\xd0\xe3\x3b\x55\x68\x5a\x87\x28\xa1\x29\x4e\xfe\x49\x2c\xd3\xce\x8c\x21\xd2\xa2\x69\x52\x8c\x62\x5e\x11\xf4\x0a\xbf\xe7\x28\xaf\x0e\x21\xf4\x96\xee\xdd\xea\xef\x74\x91\x90\x6d\x37\x98\xac\x5b\x21\x45\x68\x32\xea\xb0\xef\xac\xec\x66\xd0\x50\x5e\xe8\x7f\x20\x5b\x86\xa0\x52\x90\xd2\x98\x53\xdf\xca\xe0\x45\xc2\xd0\xfd\xbc\x05\x3c\x84\x64\x96\xcb\x6d\x90\xbb\x88\xc0\xad\x2b\x39\xb8\x3e\x2e\x7d\xf4\x5c\xc6\xa1\xf6\xe0\x58\x16\xe1\xbc\xf9\xed\x15\xc3\xa3\x23\xd1\x9c\x4d\x2b\xac\x5e\x08\x11\xa6\x5f\xe5\x39\x34\xfd\xb2\x26\xe1\xfe\xdf\xef\xd3\x6f\x9a\xef\x27\x18\xe6\xee\x94\xfe\xb6\xe0\x10\x83\x4b\xad\x3d\xb9\x09\x2a\x45\x04\xc9\xe7\xd2\x48\x1c\x85\x93\xda\x83\x39\x8b\xde\xdc\x23\xcc\x95\x4c\xf8\xe4\x71\xa2\x94\xe0\x9a\x10\x76\x4e\x95\x8a\x59\x4c\x5d\xf1\x31\x40\x7c\x45\x31\x8b\x9b\xd7\x15\x66\x5d\x79\x10\x4c\xb0\xb1\x09\x1c\x59\x7c\xfc\x1c\xe1\x5f\x48\xd4\xc3\x25\xb7\xbf\x33\x48\x38\x96\x18\x3c\xcd\xc3\x98\xd0\xb7\xf1\x53\xd7\xb0\xec\x06\xc2\x4a\x13\x9d\xa4\xdf\x9a\x42\x84\xb2\x7b\x8b\x56\xb6\x3a\x4c\x20\xb4\xca\xac\x1c\x14\xaa\x69\x66\xa0\x7c\x5f\x63\xbf\x18\x88\xd0\x68\xe6\xd9\xf3\x7d\xad\x29\xc1\x97\xe3\x46\x85\x71\xc5\x5e\xea\xcf\x5a\xd5\x66\xd1\xbd\xec\xff\xae\x28\x10\xd4\xea\x70\x7b\xd9\x5c\x84\x0a\xd7\xb6\x01\x66\x6f\x2b\xe1\xc6\x73\x7e\xfb\x62\x9d\xeb\x84\xe6\x97\xe6\x37\xa7\x77\x55\x13\xda\xd6\x99\x46\x65\x5c\x0e\x21\x6c\xda\xbe\xbc\x2d\x99\x33\x87\x10\xd8\xa4\x95\x95\xbb\xfb\x18\xe1\x04\xd7\xca\x89\x7c\x41\xa1\x84\xc0\x8b\xc1\x86\x33\x0e\xdc\x22\xb4\xea\xad\x6d\x8b\xee\xce\x25\xcc\x2c\x14\x7a\xf0\x1f\x02\xe7\xdc\x0a\xd3\xdd\x52\xc7\x22\x30\xfa\xe1\xb6\xff\x8a\xfd\x26\xce\x8e\x43\x7b\x77\x50\xbf\xad\xfc\xfc\x16\x0d\x87\xff\xbb\xe2\x3d\xb7\xae\xef\x24\x75\xef\xb1\x90\x70\x2e\xf3\xc9\x46\xb3\x8d\x04\xfd\x9c\x02\x83\xd0\xa6\x8d\x84\xc7\x09\xed\x92\x3b\x5f\x97\x32\xb0\x0f\xd1\x8f\xb3\xc4\x1c\xfa\x1f\x48\xd9\x13\x7a\x60\x5d\x45\x03\x83\xaf\x07\xf5\x84\x4a\xe2\x84\x08\x39\x95\xba\x77\xe5\xef\xc8\x12\x3a\xbe\x7c\x97\x2e\x8c\x3e\xc2\xc2\x45\x6b\x7d\xa5\x67\x43\x2f\x03\xc9\xe4\xe9\x6f\x17\x1e\xef\x62\x10\x53\xb0\x9a\xe7\xe6\xb9\x70\x1a\x03\xc7\xe9\xfe\xac\x03\x1c\x2b\x09\xa2\xba\xbd\x6f\x45\xaf\x2c\x26\xbc\x54\x3e\x28\x27\xee\xfe\x8f\xc1\xe1\xb7\x45\x56\x4c\xe2\x43\xc2\xf4\x97\xd9\x99\x9b\xdf\x3d\x21\xec\xdf\x9c\x99\x3b\x5f\xe9\x0b\x0b\xaf\x23\x32\x5e\xfc\x9a\x25\x84\xec\xf5\xe1\x0a\xff\xad\xa1\x74\x8b\xbd\x16\x75\x97\x59\x08\xef\xd9\x30\x43\xd9\x6f\x3b\x8d\x41\x12\x89\x25\xab\xff\x5a\x8c\x2b\xc2\x59\xd5\xad\x9c\xe1\x9b\x09\x09\x73\x45\xec\x02\xf8\x72\x09\x4e\xb2\xc7\x6c\xdc\xa7\xe7\x12\x56\xdd\xed\x77\xdc\x26\x6b\x4e\x50\xd8\xa6\x63\x16\xe4\xaa\x46\x08\x62\x34\xf9\xbb\x79\x4d\x09\x35\x79\x2b\x77\x68\xbf\x5f\x43\x18\xaa\x1e\x4c\x95\xbe\x75\x9d\x85\x49\xe9\x39\x9d\x80\x91\x30\x16\xa9\xee\xd9\xaa\x3c\xff\x4e\x10\xbe\xef\x7e\xce\xbb\x72\x6f\x34\x41\xf5\x8a\x48\xaa\x80\x6c\x29\xe1\xed\xcf\x70\xa9\xff\xe0\x28\x5d\xa9\xbc\xfa\xbf\x51\x58\xb4\x8f\x50\xa1\x3b\xe1\x4d\x7d\x68\x92\xdb\x1b\x87\x71\x78\xf2\x5c\xd7\x3b\x44\xd3\x80\xc0\x2f\x6c\xf9\xcb\xf0\x8c\xfd\xb8\xd1\x9d\xbf\x77\x7e\xb8\xd7\xa8\x11\xc2\x3c\xad\x86\xc5\x5f\x2e\x24\x58\x87\x1f\x7b\x7d\xfc\xaa\x22\x21\xb9\x86\x5b\xfe\xe2\x19\x15\x02\xc7\xbd\xcf\x5e\x93\x72\xb2\x08\x43\xca\x83\xed\xc7\x57\x66\x10\x06\x9d\x94\xbe\x96\xa7\x98\x12\x3e\x6d\x91\x70\x3f\xd1\xa3\x49\xf0\x72\xd9\xe4\x53\xf8\x5e\x97\xa0\xac\xdb\xe7\xff\xf5\xe7\x31\x02\xc7\x8a\x53\x45\x15\xee\xfb\x08\x13\x97\x94\x14\x4a\xad\x89\x23\x94\x65\x72\x2c\x9a\x11\x75\x95\x50\xb2\xdd\x8c\x9d\x93\x52\xcc\xa2\x45\xaa\xe4\xd1\xbf\x99\x19\x84\xcf\x93\xbf\x4d\xe5\x49\xd1\x26\x5c\x3e\xd2\x20\x34\x6b\x4e\x27\x33\x86\x91\xe5\x7b\xfc\x36\x1e\x1d\x66\xf0\xed\xd4\x17\xed\x1b\xed\xca\x34\x86\x12\xff\x37\x53\x56\x96\xce\x18\x07\xdb\x0f\xf7\x05\xe3\x02\x85\x09\x89\x5a\x83\x9a\xcb\xea\xf5\x09\x12\x7b\xfc\x38\x82\x96\x30\x84\x4d\xed\x2b\x26\xc6\xd4\x3b\x13\xba\xbb\x1f\xb7\xee\xb1\x9b\x4a\x30\x70\x1c\xb0\xe8\x9e\xe9\x48\x88\xe7\xb1\x8a\x6c\xdb\x14\x4e\xb0\xcb\x10\x74\x3e\xe3\x9b\x42\x08\xb0\x9f\xd4\xba\x46\xa1\x84\xe0\xef\x18\xb5\x3d\x36\xc6\x97\xe0\xf1\xa7\xd6\xa0\xf4\xb0\x05\x21\x54\x3e\x8c\x57\x43\x3b\x9d\xc5\xe2\xf0\x49\xd9\x15\x6a\xd7\x59\xe4\x4a\x7f\x7a\x9a\x9e\xe7\x47\x50\x33\xde\x66\x76\xea\x8f\x05\xe1\xf2\xbc\x24\xbf\xb4\xb9\x1a\x84\x35\xbc\x2e\x0f\xcf\xbe\xcd\x63\x61\xfb\xa3\x32\x6a\x42\xe9\x0a\x82\xe4\xd6\xbf\x3a\x3d\x0e\x4a\x84\x77\xef\xf9\xde\x19\x98\xf7\x30\x50\xdc\x72\x28\xe5\x40\x50\x04\x8b\xf2\xc0\xae\x77\x47\x45\x12\x58\x44\xff\x48\x94\xb6\x4b\xf6\x21\xcc\xf8\x23\x7c\x56\xfb\x99\x11\x61\xe6\xd3\x6f\xf9\xff\xa6\x1d\x25\x70\x7f\x5c\x1e\x31\x5b\x4a\x91\xc0\xa7\x9d\x93\xa1\x12\x7d\x80\xc5\xc6\xcd\x5e\xbf\x0f\xb8\x39\x12\x7e\xff\xbb\x2a\xd7\x9e\xa4\x4f\x58\x3e\x4b\xa9\x22\x55\x77\x90\x81\x5e\x8c\x80\x7b\xa8\x37\x2f\x8d\xa1\x75\x93\x43\xd9\xed\x9b\x6c\x11\x42\x32\x32\xbe\x6d\x4e\x2a\x23\x84\xdc\xfe\xfe\x69\x79\xf8\x2b\x16\xed\x29\x8e\x67\xdf\x04\x56\x12\xae\x55\x2d\x4a\xcc\x0b\xad\x26\xb8\xb4\x4f\xcf\xee\xdf\x91\x4d\xe0\x4a\x19\xb8\xfa\x1f\x36\xdf\x2a\xd8\x63\xc7\xd3\x4c\x20\x83\xc4\x43\xd7\xcf\x7f\x22\xec\x2f\x6a\xdd\x1d\x37\x0a\x53\x8a\x72\x9e\x6f\x59\x4b\xd8\x66\x31\xb0\x39\x66\xb4\x6c\x48\xfb\xba\xfb\xa5\x40\x33\xc1\x66\xf0\xfc\xc5\x6e\xf3\x44\x42\x0c\x9f\xcb\x14\x73\xfd\xcb\x84\xa3\x77\x83\x2c\x65\xd6\x5c\x27\xa4\xbd\xb8\xfa\xdd\xf1\xd3\x21\x82\x71\x73\x74\x41\x7c\x50\x16\xa1\x42\x66\xff\x7e\x39\xdb\x60\xc2\xfb\x68\x49\xb9\xd5\x77\x0e\x13\xea\x2a\x8e\x0f\xd6\xac\x5b\x49\xb0\xfd\x2e\xb9\x81\x2f\xcf\x9d\x60\x91\x7e\x31\x6a\xa6\x7e\x25\x8b\x99\xcf\x3a\x6f\x3b\xbf\xb7\x64\xb1\x37\xa9\x34\x67\x89\xb1\x34\xe1\xc4\xd6\x99\x1c\xd2\x7f\x3c\x08\xe5\x51\xcf\xb8\xae\x2e\xab\x26\x54\x99\x39\xbd\x39\xb3\xb6\x89\xb0\xfd\xa4\x95\x72\xa5\xe2\x5b\xc2\x97\xd7\xd6\xd0\x4a\xae\x26\xdc\xf4\x39\xb8\x80\x47\xe0\x0d\x41\xb3\xaa\x3e\x5d\xbf\x77\x90\xc1\x60\xa2\x94\x94\x9e\x96\x27\x0b\x9b\x87\x8a\x4d\xb1\xf2\xd6\x84\x7b\xdf\x1b\x17\x5f\x93\xf7\x1b\x87\xb6\xfa\xa3\x53\x86\xa7\x07\x12\x54\x76\xbb\xae\x8e\xf1\xac\x23\xb8\xca\xac\x35\x51\x0f\x2b\x20\x04\xdd\xdf\x5e\x61\x65\xbb\x9d\xd0\xda\x7c\xfd\xaa\x82\xa0\x39\xa1\xf8\x8e\xae\x5a\x0e\xff\x33\x16\xbc\x1e\x2f\x8e\x1b\x1c\xca\x21\xd4\x4c\xcc\x3b\xfc\x6a\xa3\x20\xa1\xa9\x68\xca\x9b\x2f\xef\xb7\x13\x62\x73\xb8\x0a\x43\x03\x7a\x18\xc8\x2b\xaf\x12\x5f\xe2\xdc\xcf\x60\x58\xf2\xca\xe0\x9f\xa8\x87\x84\x7d\x99\xb3\x16\x1f\x3b\xfb\x89\xf0\x4e\x37\x6c\x77\x43\x5d\x27\x21\xef\x97\xdb\xbc\x56\x83\x2e\x42\x4b\x42\xbf\x89\x90\x74\x3b\xc1\xbc\xb4\xe6\xe4\x1e\xb5\x16\x42\xce\xe7\x10\x88\xf7\x65\x13\x92\x8f\xff\x2c\x14\x32\x18\x7d\xda\x1b\xe4\xdd\x3c\xd9\x95\x45\x10\x29\x7f\x34\x22\xba\xfc\x1e\xc1\xfc\x6a\xa0\xaf\xbb\xfb\x21\x82\xc3\x56\x76\xa3\x7b\x57\x2c\x21\xe9\x51\xb5\xd5\xa0\xe6\x71\x82\xae\xb2\xa7\xb0\xde\xe8\xde\x4e\xdc\xeb\xdd\xcb\xbe\xef\xba\x04\xc5\x81\xde\x3d\xc7\x83\x92\x09\xf7\xba\xef\x0b\xfe\xf2\x3b\xcc\xc2\xaf\xad\xec\x27\xd7\x34\x07\x42\x5e\x44\x9c\xdb\xe1\xbe\x59\x84\xd8\x64\x8d\x2f\xeb\xca\x9d\x08\x86\xfe\x2a\x53\xfe\xad\x3d\x47\xa8\xd7\x3b\x1f\xd2\x37\x7b\x13\xc1\x74\xa6\x93\xf4\xd0\x5b\x6b\x82\x4d\xa7\xab\x7e\xbd\xb9\x11\xa1\xbc\x74\xe8\xdc\xdb\x60\x1d\x02\xe7\x48\xa6\x8d\x6f\xe2\x20\x03\xbf\xb9\x6f\x53\xca\x8d\x9e\x13\x36\xa4\xac\xb5\xd8\x11\x93\x4f\x30\xdb\x96\x50\x6b\xa3\x76\x80\xf0\x95\x5b\xe3\x47\xf9\xe1\x5c\x16\xb3\x4f\x0a\x0a\xbc\x4a\x6c\x64\x11\xa1\x78\x3d\xa8\xd9\xf9\x29\xe1\x7c\x8f\xe5\xcf\xb2\xd1\xd1\x8e\x83\x2f\x7d\x79\x8d\x8a\x09\xfc\x73\x5f\xed\xdb\xb5\xd9\x9f\x30\xe7\x66\x69\x58\x65\xf5\x15\x82\x85\xce\x93\xd9\x75\xe9\x57\x08\x05\xd2\xbf\x66\xeb\xa9\x64\x12\xde\x29\xaf\x96\x77\xd7\xf3\x27\x38\x7d\xdf\x59\xff\xaa\x34\x98\x10\x77\x7d\xdb\x44\xdb\x20\x11\x82\x8b\x69\xd3\xf1\x3d\x0d\xcb\xc7\xa1\xfc\xf4\x70\xdb\x7a\x1d\x41\x82\x83\xc9\xbf\x22\x09\x71\x35\xc2\x57\xa1\xac\xdf\x8b\x6e\x0e\x31\x48\xc8\xde\xbc\x49\xc0\xd1\x8a\x60\xe6\xb9\x4b\xe4\xb9\x4b\x34\xa1\xb5\xe2\x55\xc1\xb2\xfc\x43\x84\xf5\x5b\xf7\xbf\xdf\xcf\x99\xc9\x60\xe5\x1c\x9f\x94\x86\xfe\x12\xc2\xde\x26\xce\x67\x59\x01\x25\x84\x05\x41\x12\xb7\x17\xf0\xbc\xa2\xb1\x51\xbc\xc9\xef\xb5\x71\xc7\x8b\x08\xdd\x89\xbc\xd2\x03\xf6\x37\x08\xf7\xd8\x9f\x7d\xef\x44\x0b\x09\xef\x47\x6e\xd6\x5c\x9e\x58\x4c\x98\xb2\xc3\x30\xf1\x71\x54\x16\x61\x7f\x7e\xe4\xfd\xff\xca\x59\xbb\xbf\xb6\x73\x64\x1f\x11\x7a\x4f\x71\xcc\x4e\x19\x12\x26\xec\xba\xdb\xf3\xe7\x66\x62\x05\x8b\xd6\xc3\x24\xa1\xa1\xf2\x83\x10\xc0\x55\xbd\x6b\xe9\xc9\x97\x84\x4f\xa1\xae\x73\xd2\x25\x76\x10\xae\xfc\x48\x12\x8f\x8e\x7f\x40\xf8\x5a\xb0\xeb\x43\xd5\x35\x0e\x82\x43\xec\xb1\x9f\x6b\xa7\xca\x8f\xc3\xbf\x24\x3e\x5e\x19\xb3\x97\x0c\x5c\xba\x9c\x7e\x3a\xad\xbe\xc7\xe2\x65\xcb\x35\xc6\x6c\xff\x36\xc2\xba\x9a\xe1\xf6\xfe\x26\x25\x82\x5c\x68\x9b\x51\xd5\x97\x9d\x84\xba\xa6\x4d\x67\x36\x2c\xd3\x23\x24\x5f\x75\xdd\x53\xeb\xa7\x4d\xf8\x70\xbe\xe0\xfc\xf7\x3c\x05\x42\x5b\xba\xa5\x82\x42\x70\x01\xc1\xb2\xf3\xf5\xa4\x91\x27\x07\x59\xac\x3f\xae\xe2\xa4\x70\xd6\x86\x10\x10\x3c\xdb\xd0\x72\xf9\x72\x42\xe4\xfe\xfe\x23\x55\x99\xc6\x84\x4f\x11\xb1\x1f\x45\x76\x29\x12\xda\x7e\xcf\xab\xbe\x15\xcf\x49\xe8\xfa\x2c\xd2\xfe\xd9\x67\x3d\xa1\xfd\x60\xc2\xcb\x8d\x0e\xf7\x08\x42\xbb\xb3\xdf\x7f\x7e\x70\x89\xc5\x70\xbc\x14\x3b\x98\x6a\x4f\x48\x7a\x6f\xda\xd7\xcf\x79\x94\x20\x73\x30\xc3\x95\xcf\x5a\x8e\x50\xeb\x71\x4a\xc0\xe1\x78\x2f\x03\x8d\x22\xc9\x3d\x07\x2e\x48\x13\x9e\xdf\xff\xbc\xff\xd2\x50\x37\x03\x99\x82\xb6\xbd\x91\xdc\x6b\x68\x0c\x33\x5d\xc4\xee\x3b\x6e\x9d\x41\x98\xba\xed\xe5\x4a\x03\x2d\x5e\xc2\xa2\x4d\x2d\xe9\xde\xeb\xc5\x08\x1c\xd5\x5a\x27\x5d\x4b\xa6\x11\x0e\x9e\x7c\x3d\x27\xe2\xd4\x53\x42\xd0\xcc\xe6\x40\x55\xfb\x58\x42\xa8\x81\xb8\x50\xb8\xfb\x19\xc2\x8c\x6b\xcf\x75\x04\xe6\x85\x13\xa6\x66\x1a\xb7\x2f\xba\xde\xc2\x42\x39\xee\xf2\xa9\x4b\xa3\xa3\x2d\x5b\xfc\x32\x6e\x59\xf0\x12\xae\xeb\x96\xa9\xde\x2f\xea\x63\x20\xb5\x1b\x1a\xbc\xb7\x96\x13\x12\xf6\x4c\xe9\x1b\x1c\x2a\x21\x6c\x13\x78\xeb\x1c\xfc\xa3\x8e\x30\xe9\x7c\x8d\x8c\x60\xef\x4b\x42\xb8\xdd\x07\xee\x9f\xbd\x8f\x59\x7c\xeb\x19\x4e\x3f\x37\x3a\xba\xc9\xb5\x75\xa6\x58\x47\x09\xe1\xf9\xc4\xc4\xa6\x9f\x96\xf3\x09\x85\x4e\x9d\x5b\x7b\x6a\x95\x08\x17\x4c\x5b\x5d\x16\x47\x14\x11\x24\x3a\x0d\xeb\xe3\xe5\x5a\x08\x57\xde\x6e\x2b\xda\xe3\x57\x44\xe0\x59\x68\x93\x1c\x63\xcb\x12\x54\x02\x03\xfa\x0f\xb5\x3d\x22\x18\x89\x1d\x39\xc6\x9b\x6e\x4a\x30\x17\xd8\x52\xe4\x39\x94\x49\xb0\x73\xf8\x3a\x75\x50\xe4\x15\x41\x26\xff\xf0\x17\xf7\xab\xc5\x84\x79\x22\xed\xe9\xbb\x14\x4a\x09\xda\x19\x1f\xe3\xfe\xea\x7a\xb2\xf0\x99\x5e\x72\x67\x56\x9c\x19\x21\xce\x50\x71\x7a\xf6\xa3\x6d\x04\xe9\x01\xf7\x8b\x1f\x3f\xd8\x11\xba\x5a\x56\xe4\x72\x6f\xf1\x22\x68\x0c\xe9\xf6\x4b\x2c\x5c\x4d\xd8\x66\xc3\xf1\x32\xec\x53\x23\xe1\xbb\xf7\x5a\x93\xe8\x1f\x1f\xa9\x7f\xe3\x9f\x45\xeb\x6c\x6b\x08\xbb\xfe\x69\x29\xa5\x6d\x88\x24\xdc\xfd\xd6\xd9\x3a\xe2\x58\x4b\x58\x78\x7b\xf0\x52\xea\xfd\x8f\x04\xce\x67\x5f\x75\x1f\x38\xdc\x22\xf4\x56\xb6\x0b\xab\xff\xab\x63\xd1\xd0\xec\x2b\xda\xd0\x91\x45\x58\xc4\x55\xb9\xf0\xd1\xcc\x5b\x84\x5b\x62\xf3\x7a\x8e\x2d\x3b\x44\x38\x96\x3d\xcb\x62\xa9\xc7\x65\x82\xc2\xf0\xfa\x4d\x29\x93\x15\x08\x11\x65\xc7\xd2\x82\xe4\x17\x8d\x2b\x77\x6c\x67\x04\xdd\x11\x4d\x23\xa8\x6a\xb6\x3e\x3a\x31\x23\x8d\x60\x17\xa2\x6b\xdc\x24\x3e\xbe\xdc\xda\x5c\x78\xfc\xf8\x28\x66\x39\xd4\xee\xda\x3c\x68\x4b\xb0\xfb\x19\xf1\x6c\x95\xe4\x41\x16\x66\xc5\x22\x7d\x73\xd6\x6e\xa7\x31\x04\x85\xb4\xd7\x37\x18\x7a\x13\x06\xba\x2b\x2e\xfc\xde\xef\x4d\x48\x2c\x08\x5e\x70\x33\x6e\x90\x41\xf4\x09\xed\xb4\x39\x3e\x01\x34\x86\xbd\x8b\x1f\xff\xe6\xbf\x23\x4f\x98\x46\xaf\x33\x36\xb5\x8f\xbe\x01\x16\x94\x88\x3e\xd9\x7b\x9d\x45\xc4\x8d\x5b\x8a\x75\xd3\x7d\x08\x72\xcb\x2a\x8a\x93\x9f\x57\xb0\x38\xfe\x73\x87\xea\xda\x3d\xb5\x84\x15\x29\x69\xbd\xb7\x27\xbf\x65\x61\x72\xee\xda\x9c\x76\x8e\x27\x84\xc2\x7d\xd3\xba\x0e\x9c\x7b\x48\xd8\xbd\x7d\x86\xbf\xb8\x9b\x0e\xa1\x95\xe7\x8d\xf8\xc5\x0b\xa1\x2c\xde\xa7\xbb\xd4\x7e\x18\xa9\x26\x58\x7b\x94\xdd\x6e\xf8\xf3\x96\x30\x97\x2b\x50\x9e\x57\xa4\x90\xb0\x23\x89\x47\xf2\x45\xe1\x74\xc2\x3a\x9b\x9c\xf2\x92\xfe\xbb\x2c\xde\x7d\xe4\x3e\xf7\x2d\x2d\x9d\xb0\x5d\x49\xfa\x8a\xe8\xe7\x8f\x84\xb4\x67\xf7\x56\x6c\x9c\x7b\x8f\x30\xf3\x9a\xff\xf5\x5f\x19\x15\x84\xca\x81\x6f\xc3\x3b\xd6\x99\x12\xe4\xe0\xc1\x35\x63\xc3\x3d\x82\xc5\xe7\x8d\xfa\x0f\x95\x4a\x08\x97\x04\x53\x27\xd9\xfd\xcb\x61\xb1\x6c\xdd\x6a\xa9\x07\xa3\xe5\xd3\x5d\xd7\xa0\x06\xae\xfd\x84\x84\xa4\x63\xff\x4e\x2a\xf9\x13\xbc\x14\x79\x6e\x84\x47\xf9\x10\xea\xc3\xb2\xba\xb2\xbf\x8c\xfe\x8f\x24\xde\x36\x98\x71\x48\x87\xe0\x62\x94\x72\x37\x5b\xde\x86\xf0\xad\x5b\x60\xf2\xac\xc8\xcd\x84\xcc\x4e\x39\xcd\x4b\x9f\xf2\x08\xf7\xa7\x04\x36\xff\x12\x7f\x39\xfa\x34\x75\xda\xb0\xea\x73\x18\xa1\xe5\x49\x9c\xb0\x80\x62\x10\x8b\xfe\x17\xfa\xf7\xef\x39\x27\x12\xf0\xe0\xda\x2f\x8e\x16\x2b\xc2\x77\x65\x4f\xa7\xf3\x81\x27\xc6\xe1\xed\x9b\x3d\xf1\xd7\xc3\xef\x11\xf6\x9e\xb7\x3e\xf3\x1f\x7a\x92\x2e\x3c\xdf\xb4\xf1\x63\x11\xc2\xbf\x6f\x31\x5c\xf9\xd5\x8d\xe0\x7b\x39\x86\x7f\x73\x5e\x28\x8b\x9f\xd1\x53\xee\xf1\x89\x96\x11\xaa\x6e\xcf\xff\x77\xa4\xa2\x95\xc5\xb0\xed\xec\x23\x55\x93\x72\x09\xfa\xa5\x6d\x8d\xfb\x72\x33\x08\x5f\xef\x85\xb8\x79\x47\xdf\x67\xb1\xc7\x74\x50\x54\xd6\x6b\x02\x81\x27\x48\x3d\x5a\x77\x64\x33\xe1\x66\x85\xf7\x4c\xa9\x3f\x49\x84\x49\x1e\x13\x27\x26\xb5\xef\x22\xfc\xa8\x5e\xc3\xef\xb2\xf7\x11\x61\x9f\x59\xc6\x8d\xeb\xa3\x65\x11\xff\x43\x97\xa5\x82\xae\x04\xd9\x84\xc6\x94\x72\xfd\x84\x22\x1c\xd9\xf0\x88\xab\xfd\xba\x37\x8d\x41\xb6\x53\xc1\xef\xe0\xf5\xad\x84\x37\x11\x2b\x1a\x1b\x94\xe2\x58\x18\x87\xc5\x04\xaf\xbf\xc3\x41\xb8\xb0\x43\xc9\xcd\x49\xf7\x02\xe1\xe7\x9b\x53\x22\x5c\x3c\x3b\x58\x1c\xe7\x78\x74\x3a\xfa\xf1\x05\x42\x0a\xbf\xac\x4e\xc7\x4d\x43\x82\x59\x9c\xa5\xa9\xb6\xeb\x6b\x16\x47\x53\x06\xf9\xb5\xa4\xef\x12\x56\xe7\xcd\x5a\xfc\x27\x48\x8e\x70\xc4\xfc\xab\xab\xf0\xdd\x09\x84\xb2\xc3\x33\x83\x3d\x7d\xd4\x09\x07\xf5\xbe\xa5\x5a\xff\x99\x37\x0e\xda\xf3\x1c\xab\xd2\xe2\xda\x19\x7c\xbd\x72\xe6\xb9\x50\xaf\x33\xc1\xa6\xde\x62\x65\x76\x6a\x3f\x83\x7f\x47\x07\xdb\x56\x4b\x7e\x65\x50\xa7\xad\x34\x62\x52\xc2\x49\xa8\xd8\xf5\x8a\x37\x51\x39\x93\x10\x3a\xec\x9c\xb7\x30\x7b\x0e\xe1\xac\x9e\xcb\x12\x79\xde\xd1\x33\x65\xa5\xe5\x13\xc1\x83\xa9\x84\xb2\xd5\x31\x55\xcf\xec\xf2\x08\x33\x4f\x5e\xf1\x1d\x72\xde\xc6\x42\xa0\xd6\xa6\xf8\x69\xc2\x6c\x42\x4a\xae\x40\x85\x98\x49\x18\x41\x32\xc6\xd2\x92\x23\xdd\x9e\x20\xfd\xe7\xed\xe5\xc8\x6d\xb3\x09\xd1\xb1\x7c\xdd\x15\xed\x23\x0c\xfe\x95\x2c\xdd\xc6\x55\xf9\x9d\x41\x8f\x39\x5f\x0e\x57\xe3\x67\x06\x9d\xc6\x29\xda\x5e\x12\xe2\x84\xd2\x65\x52\xf7\x87\x9d\x35\x09\x4b\x8f\x6d\x9b\x7a\xa5\x85\x21\xe4\xd9\xbf\x17\x1a\x56\x9a\x41\xd8\x6e\x76\xa6\xb9\x72\xb0\x8f\x81\xd0\x8c\x8f\x43\xf7\x56\x99\x10\x86\x16\x16\x68\x3c\xd9\x60\x44\x78\xa2\x30\xfd\x98\x6a\x76\x0b\x03\x5b\xad\x9c\xc4\x19\xf7\x3c\x08\x9b\x1e\x9b\x0b\xb8\xfe\x32\x23\x5c\xbe\x17\xf3\xbe\x59\xf5\x21\x61\x7f\x86\xf6\xd0\xd7\xff\x07\x9a\x6b\xf6\x2e\xfa\xf6\xff\x40\x2c\xe0\xc3\x63\x25\xe5\x7d\x84\x8e\x8d\x55\x16\xfa\xf5\x9e\x04\x46\xed\x76\xb5\x60\xe3\x3e\xc2\xfc\x93\x37\x8d\xea\xdf\x5f\x22\xc4\x9a\x7b\x37\x6a\x26\x6c\x27\x44\x48\xfe\x91\xf9\xa1\xe8\x44\xe0\xfe\x66\x96\xb0\x37\xa6\x89\x41\x70\x42\xef\xab\x80\x15\x73\xe9\xff\x0b\x7b\x72\x7c\x4f\x55\x1e\xfc\xca\x60\xe2\x33\xb3\x9d\x99\xf7\x2e\x10\x78\xb6\xdd\x9a\xb5\x69\x5b\x09\x8b\x1e\xd3\x60\xab\x8e\xe2\x18\xc2\xee\x96\x2d\x4b\x2e\x3e\x79\xc0\x62\x1d\xcf\xb9\x27\x27\xb8\xea\x09\xdc\x25\xa7\xfe\xb5\x24\x8e\x30\xc8\xde\xac\x5d\xd1\x20\xf1\x82\xe9\xbf\xf4\xf0\x91\xd0\x9a\x20\xfa\xff\xbf\xa2\x62\xc2\xe5\xa7\x57\x37\xcd\xf9\x5f\x68\x18\x4e\x0d\x4d\x4e\x1f\x60\xe0\x3c\x58\xb7\x97\x23\xcc\x82\x10\xee\xc2\x5b\x14\xa2\xca\x4b\xa8\x17\xb9\x6f\x99\x68\x2c\x30\x0e\x72\x59\xce\x1c\xa1\x37\x39\x09\xcd\xde\xb7\xd5\x9e\x78\xfc\x63\x90\x95\xf6\x3c\xf8\x99\xe8\x2f\x42\x30\x87\xc2\x39\xaf\xc9\x3f\x08\xa7\xb8\xae\xc5\x04\x2d\xfa\x43\xc8\x34\x08\x96\xf1\xf8\xf2\x9a\x70\x98\xe1\x3a\x54\xac\xb1\x85\x10\x7f\x33\x0d\x4b\x75\x52\xc7\xa1\x40\x7c\xc2\x22\xc5\x51\x48\x9c\x97\xcb\x0e\x89\x0b\x25\xf4\x7f\xa5\xa5\x4f\x9e\xbd\x63\xa0\xb3\x06\x1f\x2e\xce\x8e\x22\x68\xb2\x3e\xdd\xba\xd3\xa3\xc7\x61\xd9\x55\xe1\x47\x9c\x97\xac\xc6\xe1\x95\x49\x8e\xfe\xa5\x0b\x36\xe3\x8a\xf6\x1a\xc5\xdd\x93\xf5\xb7\x10\x94\x27\xbd\x33\x79\x3d\xe8\x44\x98\x5d\x39\x54\x66\xb0\x65\x3d\xa1\xc7\xe7\x45\xc0\x1f\x83\x57\x84\xa5\x11\xa7\x7f\x5e\xdc\xfa\x8a\x10\xc5\x57\x71\xa6\x47\xc7\x8a\x70\xa3\x48\xf6\xeb\xf6\x1d\xb6\x84\xc0\x64\x72\xd8\xff\x79\xf4\xfc\xfa\x23\xe2\x47\x84\x33\x43\x50\xd4\x1d\xb9\xc0\xbb\x6e\x0a\x81\x73\xc1\xaf\xa8\xca\x98\x6b\x2c\x6e\x0b\x7c\x28\x16\x2c\x77\x20\x98\x18\x97\x94\x7e\xde\xbe\x92\xc0\xb1\xdb\xc6\xf1\x73\xbd\x12\xe1\xc5\xa2\xd9\x9d\x8f\x8b\xf5\x09\x2b\x96\xbc\x5f\x10\xa9\xe2\x48\x70\x5e\x9b\x19\xdf\xd6\x73\x8c\xc0\xcf\xa1\x18\xeb\x61\xb4\x8b\xd0\x93\xe3\x7d\x5f\x6f\xab\x29\xa1\x7c\x5e\x82\x7d\xf4\xc9\xd5\x04\xfe\x53\xc1\xb7\x3b\xd5\x05\x09\x26\xbe\xfe\x0a\x9e\x46\xb9\x2c\xce\xba\x7a\xfe\x4b\x3d\xee\x48\xf8\xa7\xa7\x2d\x58\x1e\xc6\xb2\x90\x13\x4b\xca\xd2\x9d\x2f\x42\x08\xfe\x71\xb4\x72\x9a\x79\x31\x8b\xbf\xe7\x78\xf8\xbc\x9e\x26\x12\x6c\x23\x85\x0c\xaa\xb7\xae\x27\x94\x1c\xd7\xe1\x72\xb9\xb9\x82\x30\x5b\xfe\x85\x38\xef\xb5\x30\x42\xfc\xd2\x0b\x69\x4b\xf3\x72\x58\xd8\x29\x7d\xec\x36\x77\xf6\x21\xc4\x0e\x8f\x3c\xef\x2d\x93\x21\x5c\x5d\xf1\x53\xa8\x77\x95\x2e\x61\x0a\x37\xfb\xca\x30\xf2\x3a\x0b\x79\x5e\x89\xc2\xac\x55\x95\x84\xf9\xa4\x12\xcd\xcb\x5f\x44\x08\x71\x7b\x7c\x65\x89\x90\x1c\x21\xa1\xf1\xb9\xb0\xe5\x04\x59\x42\x46\xfe\xe1\xf2\xb5\x41\xe7\x09\x6d\x2f\x8c\xf2\x97\x88\x1b\x13\x9c\x3c\x34\x7b\xfe\x7c\xd7\x24\x9c\x57\x16\x9f\x3f\x49\x62\x80\x41\xfe\x07\xcd\x8e\xf2\xd1\x9f\xd2\x3b\x7c\x79\x4b\xa8\x7c\x2a\x41\xbc\xbb\x2d\x2a\xc9\x3e\x95\x60\xe4\x58\xec\xf6\x1f\x2e\xae\x5f\x2e\x10\xf6\xc8\x92\xf0\xea\x6f\x4d\xe5\x9c\x17\xa7\x08\x97\x2d\xbd\x4e\xdf\xf6\xda\x3c\x6e\xf4\x7f\x65\xf0\x6f\x1d\xdf\x0c\x77\x13\x42\x63\x12\xdf\x02\xa1\x13\x29\x04\xb9\x09\xae\x5b\x76\x46\x8b\x13\x1a\x86\x7e\x37\x8b\xbb\x10\xc1\xa2\x3a\x40\xc3\xc6\x70\x21\xe1\x4e\x4d\x64\x8f\x66\xa5\x07\xc1\xce\x38\xc7\x5f\x4e\xf5\x32\x0b\xeb\x66\xb3\xfc\x04\x71\x1f\xc2\x9b\xb5\x2d\xf9\xde\x09\x7b\x08\xbc\x32\x6f\x6e\x5d\x18\x0e\x66\xe1\x73\x80\x5b\x7d\xd8\x77\x2e\x61\xe3\x57\xbf\xea\xe7\x7b\x43\x58\xc8\xaf\xd2\x75\x4e\x8c\x7f\x42\x88\x35\x93\x92\x4b\x18\x85\x8a\x87\xd7\xb1\xff\x50\x96\x3d\x22\x20\x2e\x94\x44\x68\xb1\x9f\x9b\x1b\xf2\x4a\x89\xb0\xf6\x6e\xe7\xab\xbe\x3d\x3a\x84\xbb\x37\xcf\x4c\xa8\xb0\x54\xfe\x5f\x88\x8b\xfa\xff\x31\x76\xa7\xc1\x58\x87\xfd\x1f\xf7\x2b\x44\x52\xd9\x09\x95\x48\x29\x94\x5d\x85\xf3\x4b\x52\x49\x65\x49\x85\xb2\x6f\x09\x65\x49\x14\x42\x29\xa2\x10\x5a\x48\x59\x43\x21\x94\x2c\x85\xd3\x92\x68\xb7\x55\xa4\xc5\x9a\x94\xca\x96\x3e\xd2\x72\x8f\x6b\xe6\xfe\x73\xcf\x5c\x73\xcd\xfd\xc8\x6b\xde\xdf\x63\xc6\x8c\xf1\x3b\x7e\xc7\xf1\xe4\x3c\x0f\x6e\x8c\x53\xeb\x64\x40\x7c\x68\x7f\xf9\xd5\x6f\x46\x84\x0c\x7a\xbf\xfe\xb7\x7a\x1c\x13\xe3\x57\xba\x2d\xe7\xb8\xba\x12\x16\xf3\xfb\x3f\xe1\xb1\x51\xa5\x71\x9b\xa3\x35\x3b\xb9\xba\x19\x68\x10\xbe\x65\xfd\x63\x99\x31\x61\x74\xe1\xad\xf5\x89\x77\x56\x13\x76\x7a\xa8\x2c\xdd\xb1\xdd\x60\x1a\x78\x56\xdc\x1f\xec\x1d\xcd\x62\x42\x82\x97\xe5\xea\x83\x7d\xe3\x0c\x88\x16\x5e\x2d\x65\xcd\x4d\x27\x3c\x5e\xd7\xd2\xf2\xf9\xb0\x2e\x41\x73\xed\x09\xa5\x45\xbe\x7b\x09\xf3\xe3\x72\x6a\x6f\x57\x6b\x11\xf8\xf6\x9d\xd3\xa8\x9f\xd0\x99\x86\x25\xc9\x42\x29\x48\x50\x22\xcc\x09\xfc\x31\x5f\xe3\xf7\x72\x42\x5d\x40\x63\xc8\xa7\xb5\x8e\x04\xb7\xfa\x63\x81\x4f\xc4\x8f\x4d\xc3\xff\x8d\x34\x05\x2d\x7e\xf5\xbf\xce\x9f\x86\x83\x95\xa3\x51\x61\x43\xd7\x08\x17\x36\xd6\x70\x71\xb5\xe5\x13\xf6\xe4\x44\x85\xcf\xd2\xca\x25\xa4\x59\x78\xf2\x7c\x9e\x5c\x73\x69\x7c\x99\x86\x88\x7d\x3a\xa1\x5f\xbc\x49\x2a\x71\x69\xc2\xb4\xb2\x95\x6f\x48\x6a\xe4\x71\x3e\x73\xaa\x38\x1f\x3f\x9d\xd4\xb2\x2a\x8a\x50\xd4\x30\x5a\x14\x1e\x7a\x8d\x10\x56\x6c\x98\x13\xb7\x43\x95\x90\xb0\xe4\xa5\x12\x0b\xeb\x32\xc2\x22\x8f\xe6\xb7\xef\x1f\x2e\x25\xbc\x1e\xd0\x5c\x26\x7e\x7d\x15\xc1\x79\x38\x64\x93\x94\x99\x2a\x41\xca\xfd\xfa\x3d\xbd\xcc\x99\x84\xc1\x67\x15\x52\x13\xf4\xac\x02\xaf\x96\x3f\x7b\x7c\xc0\x26\x87\xf0\xfb\xc5\x68\x95\x83\x50\x1a\x4d\x95\xff\x43\x7f\x1e\xb3\x24\xde\x41\x90\x60\xa6\xca\x29\xca\xea\x52\x40\xb0\x74\x37\xd4\x6c\xe1\x31\x26\xc8\x38\xf3\x25\x2e\x50\xe1\x24\xc4\xfc\x9e\x77\x67\xff\x9e\x58\x42\x97\xb0\x98\x58\xe3\xe3\x2a\x42\xf1\x2d\xee\x86\xc6\x35\xa6\x84\xcf\x67\xb9\x9b\x37\x67\xed\x22\x6c\x0c\x3c\x32\x3b\xed\xf4\x2e\x82\xaa\xce\x40\x8e\x46\xee\x0d\xc2\x78\x9b\xbe\xe3\xaa\xa4\x68\x42\xbc\x68\xc3\x4f\x8b\x53\xbd\x0c\xe8\x2f\x54\xd8\xf4\xef\x77\x19\xc1\xae\x2f\xb9\x31\x9d\xed\x3e\x41\x24\xb9\x43\xf3\xdc\xe7\x1e\x26\x2e\xa5\x1d\x14\x99\xa7\x5e\x48\x08\x38\xa4\x31\xa1\xb6\xc3\x92\x20\xa6\x7d\xf0\xdb\x55\x51\x5f\x26\x66\x76\xae\xdc\x79\x37\xd2\x8b\xf0\x69\x61\xa4\xe0\xc7\x47\xf3\x09\x77\xcb\x3f\x66\x8b\x45\x5e\x25\x64\x3e\xdc\x72\xec\xb6\x45\x29\xe1\x78\xc4\xb5\xaa\x82\x49\x7c\xec\x8d\x52\xf8\x69\x5f\x4a\x08\xb6\xe8\x90\x6c\x4e\x14\x27\x28\x58\x84\xad\xaa\xdf\x75\x9b\x20\xfc\xe0\xf1\xa2\xb2\x4b\x4d\x04\xdb\xf3\x9c\x9f\x75\x34\x32\x08\x63\xed\x46\x09\xac\x2e\xa6\x84\xef\x23\x29\x1f\xe4\xc2\xcc\x08\x97\xc5\x6f\xb7\x6f\x73\xe7\x27\xfc\xb0\x6a\x8f\x73\x75\x14\x9d\x86\x07\x7e\x4f\x5a\x62\x2a\x6d\x2a\xb0\x37\x68\x4b\x21\xab\xdc\xf3\x0a\x18\x3c\xb3\x19\xc9\x0e\x3f\x46\x53\x78\xb6\x60\xe3\xb7\x3b\xfb\xaa\x98\x10\x4c\xdc\x37\xfe\xad\x2f\x98\x10\xb5\x58\x6a\x9f\xcb\x9e\x22\x42\xd2\x6a\x91\x9d\x37\xc4\x86\x08\x13\x97\x85\x1d\x4c\xe7\x35\x10\xae\x2d\x3e\xc8\x1c\x55\xbf\x45\xd8\x9f\x7b\xf9\xeb\x7f\x70\x34\x31\x4e\x65\xf4\xee\xbd\x69\xa3\x03\x72\x52\x32\x3f\xf2\x6f\x13\xf2\xac\x86\x3d\xcc\x54\x37\x11\x6c\x78\xf2\x4f\xb9\xcb\xd4\x10\xc4\xf6\x39\xf2\x78\x8c\x0b\x11\x92\x5d\x14\x36\x85\x4c\x3e\x44\xef\xe2\x75\x7c\xfd\xd4\x8f\x30\x71\x62\xb5\x66\x74\xca\x97\x50\x9a\x82\x74\xf3\x9a\xf5\xfc\xd2\x1f\x2a\x10\x6d\x30\x54\xfe\x9d\x47\x9a\x10\xa7\x76\x34\xc4\x77\x79\x04\xc1\x67\x43\xcd\x9d\xac\x12\x47\x42\xd6\x0b\x96\x5f\xed\x2a\xd9\x4c\x5c\xab\xf0\x78\x50\xc0\x51\x4a\x88\x67\x6f\xd9\xd2\x2d\xe7\x47\x78\x65\xe3\xfd\x8a\x9e\xfc\x64\xe0\xf2\x8a\xe5\x1f\x8c\x54\x39\x69\x0a\xfc\xed\x6e\x1d\x8b\x65\x6e\x11\xf2\x74\x36\xe2\x69\xe6\x32\x82\xa1\xe2\xe3\x17\xaf\x7c\x95\x09\x45\xe5\x1d\xe9\x66\x9f\xee\x12\xbe\x9a\xbe\x69\x5c\xc7\x59\x4a\xe8\xdf\x5b\xf5\xb5\x53\xa4\x92\x90\xb3\x74\xed\xa2\x87\xc1\x8a\x84\xc2\xed\x73\xdc\x2e\xc7\x1c\x22\x48\x4a\x9c\xd9\x9b\x2a\xc1\x39\x0d\x0f\x33\xba\xd4\x53\x97\xb6\x55\xc0\xff\x8f\x99\x6a\x8c\xc9\x1d\xc2\x0d\x85\x4b\x17\xe6\x6f\x36\x26\x28\xb3\xee\x8e\xda\xf6\xbc\x81\x90\xb2\x5f\xf6\x83\x66\xdc\x6b\x02\x5b\xf1\x97\x3d\x61\x0b\x2a\x08\xef\x66\xfc\x90\xf1\x58\xfc\x80\x89\xb4\x2d\x1c\x7c\x39\x11\xd9\x84\xf7\x9e\x73\xe2\x17\x70\x0c\x12\xbe\x25\xaf\xd9\x7e\xa8\x60\x88\x60\x29\x17\x5f\x2c\x34\x63\x90\x50\x5c\xa1\xc4\xbf\x69\xfe\x20\x21\xda\xb5\x48\x3f\xda\x2d\x82\xd0\xf9\x60\xe5\x6a\x97\x3d\x8f\x09\xf7\x8d\x3f\xcc\x6e\x9a\xd5\x48\xf0\x73\x1e\x49\x63\x33\xd9\xc3\x84\xf5\x59\xcd\x5b\xca\xb3\xa3\x09\x0f\xad\x9e\x6a\xc9\x1d\x36\x27\xd0\x72\xdd\xaa\xcc\x8f\x9a\x84\x8a\x35\x67\x8a\x5f\x1a\x14\x10\x14\x9a\x1e\x34\x9f\x71\xc9\x26\x7c\x2a\x3d\x1b\x1d\x7f\x7e\x35\x41\x43\x43\xa9\xb1\x2d\xae\x9a\xf0\x32\xe5\xc4\x29\x7e\x89\x07\x84\x93\x3e\xc7\x25\x18\x9d\x35\x84\x14\xb1\x3b\x23\x99\xd5\x41\x84\xc5\xbb\xc3\xfd\xbe\xdb\x07\x11\x8a\x4e\xc8\xad\x1d\xd8\xbc\x9f\xe0\x72\xfa\xba\xac\x6d\x50\x2c\xe1\xaf\x08\xf3\x9a\x39\x87\x18\x21\xd5\x2d\x34\x76\x75\xbf\x27\x21\xd6\x52\xe2\xf6\xfa\x17\xbb\x09\x89\xf1\x23\x51\x81\xd1\x13\x0c\x5c\x3e\x63\x3c\xf4\x78\x62\x1d\x61\xbd\xd0\xf2\x2c\x2e\x0b\x1d\xc2\xa0\x9f\x45\x63\x15\x2b\x37\x21\xc9\xfe\x0b\xd7\xbe\x4d\xc9\x84\x5e\x8b\xcb\xbe\xc3\xe9\x7a\x04\xef\x72\xeb\xf1\x0d\x3a\x36\x84\x0d\xe6\xa3\xa1\x65\x4a\x7a\x84\x8f\xea\x89\xdb\x2d\x23\x8a\x08\x07\x9a\xb3\x7e\x6c\xed\x6e\x60\x4e\x95\x0b\x05\x91\x07\x0f\x1c\x2e\x26\xac\xed\x33\xed\x3d\xbb\x2e\x83\x90\xb6\x61\x70\x70\xd1\x2a\xbf\x69\x10\x38\x77\x84\xf3\x6f\xfb\x6a\x42\x65\xee\xb5\xc1\x5f\xab\xb5\xa6\xe1\xd6\x58\xd7\x5b\xc3\xaa\x7b\x84\xaa\x3f\x75\x09\xd6\xed\xc3\x0c\x0c\x65\x4a\x26\x54\x4b\xb5\x12\x6a\x8e\x4b\x68\x8f\x5d\x78\x4d\x58\xbe\x70\xdc\xe5\x3f\x65\x99\xfa\xd8\xc6\x05\xf3\x66\x13\x4c\xb7\x45\xc4\x7f\x3b\x18\x4f\x18\xb8\x9c\xa8\x77\xf7\x84\x0c\x13\x71\x7f\xb2\x57\xe4\xad\x76\x26\xc8\xff\xb6\x5f\xf7\x4f\xf4\x20\x61\xce\x4c\x2b\x2d\xdf\x33\xe5\x84\xd4\x4b\xfd\x5e\x66\x4d\x77\x09\x1a\x56\x4f\xee\x5c\xbf\x67\x4c\x38\x56\xc1\x73\xa6\x86\xe9\x4c\x28\xe2\x4a\xfd\x1d\xa9\xd3\xcb\x40\xd0\xa3\x22\xb5\xf4\xa5\x73\xe8\x7f\xa1\x4e\x86\xd7\xef\x53\xab\x26\x61\x70\xdb\xd1\x2f\x02\x73\x47\x18\x28\xdc\x17\x7b\xa1\xc1\xe3\x38\xe1\xc4\xc3\xb9\x02\xae\xc1\x47\x09\x9a\xb3\xdb\x85\x2d\xf4\xac\x09\x07\xfb\xb6\x05\xae\x16\xbc\x41\xd8\xee\xba\xf8\x97\xca\xe2\x47\x84\x3d\xef\x5a\xca\xc2\xec\xef\x33\xd1\xf9\x4f\xcd\xc8\xfd\x60\x3e\x13\xe1\xf5\xa1\xaa\x12\x95\xcf\x08\x33\xf5\xa2\x0e\xee\x5e\xe5\x4f\xf0\x96\x8f\x58\x97\xfc\x22\x86\x20\xcf\xda\xff\xec\xca\x7e\x0f\x82\xa2\x8b\x5c\x48\x41\x51\x15\xc1\xc4\x96\xde\x48\x88\x5e\x23\x58\x7a\x5f\x97\x72\x54\x3b\x4d\x78\x73\xdd\xe4\xb9\x7a\xc8\x29\x82\x0d\xeb\x8a\xdf\xad\xdc\x29\xd3\x46\x8e\x3d\xba\xcd\x6a\x0a\xe7\x09\x7e\x95\x9a\xbb\x75\x7d\x6a\x09\xd5\x1c\xfe\xa3\xe7\x76\x48\x12\xe6\x49\x6f\xae\x3b\x12\xe4\x48\xa8\x48\xd5\x66\x08\x3c\x37\x23\x1c\xf7\xb2\x39\x5b\xb7\xaa\xbc\x02\x39\xb2\xeb\x5a\x2b\xb4\x4d\x08\x5b\xf6\x8e\x89\xfc\x28\xb7\xa5\xa9\x62\x76\xa6\xcc\xd8\xc0\x9b\x9b\xb0\x6c\x96\x27\xf7\x97\xb2\x50\x26\x7e\x45\xb4\xf8\x7c\x17\xe8\x24\x08\xb4\xfe\x79\xed\x5c\xfa\x99\xb0\xb1\xc1\x61\xd7\x53\xf6\xcb\x84\x4f\x87\x25\xdc\x6b\x45\x8e\x13\xbe\x8c\x6a\x8c\x66\x06\x3b\x13\xc4\x4f\xd6\xb1\x31\x4a\x2d\x99\x38\xde\x54\x78\xf1\xab\x91\x00\x8d\xbf\x55\x7f\xd6\xba\xe1\x08\x21\x43\x60\xf6\x8f\x8b\xc1\x1c\x04\xdb\xe1\x67\xf1\x2e\xbf\x04\x09\x7c\xf3\xde\xe8\x44\x3d\xcd\x26\xdc\xcb\xca\x7f\x1d\x7c\x3a\x98\xd0\x24\x2e\xa6\x79\x7e\x76\x30\x41\xa6\xfd\x4b\xee\xcb\xda\x00\xc2\xfd\x23\x6f\x1b\x66\x77\x06\x11\x32\x97\x73\x56\x5c\x67\x09\x26\x2c\xe2\xea\x74\xf8\x76\x23\x88\x30\xa6\xbc\x65\x66\xce\xdc\x54\xe6\x54\xb1\x7d\x9d\xd4\xb7\x78\xc4\x9b\xf0\xf3\xb6\xc5\x9c\xab\x47\xa2\x09\x9b\xc3\xad\xbf\xeb\x49\xaa\x11\xca\x9d\xde\xa6\xff\x16\x4e\x20\xd8\x99\x9c\x0a\xfd\x37\x89\xac\xa5\x1a\x6c\xbc\x87\xa3\x09\x6d\x9e\x01\xfa\x2e\xdc\x41\x84\xb9\xf5\x87\xc3\x22\x52\x24\x09\xec\xec\xf2\x99\xd6\xfc\x05\x84\x3a\xc9\x8a\x59\x07\xa4\x6a\x98\x38\x39\x7c\xe3\xd6\x3d\x0b\x36\x82\x49\x9a\x6f\xe6\xce\xb7\xde\x84\x68\x56\xc1\x5e\xb5\x35\xcb\x09\xbe\x7b\xd7\x3e\x10\xb9\x6b\x43\xa8\xfb\x55\x78\xf9\x1b\x7b\x2a\x13\x7e\x7d\xcf\x49\xd6\x92\x9f\x70\xf5\x71\x6b\xf7\xa5\x37\x3d\x0c\x68\xf1\x5d\x4e\xaf\x0f\x90\x23\x7c\x5f\xae\xa7\xe9\xb7\xd0\x9e\x20\x16\xf6\xe9\xcb\xc4\x03\x27\x42\xfd\x97\xc6\x2c\xd9\x9b\x43\x0c\xa8\x6c\x55\x5f\x14\xa1\x7e\x89\xb0\x53\xc4\xfa\xc1\x0a\x5d\xc6\x34\x04\xf5\x45\x69\x5a\x68\xae\x27\x98\x19\xbd\x92\x9f\xc3\xaf\x46\xb0\x64\x1f\x69\x39\x52\x20\x4d\x90\x8c\x98\xb7\xe9\xc1\x6d\x5e\xc2\xd0\xb1\x86\xb0\xcc\x37\x2a\x84\x8d\xbf\x06\x33\x1e\x09\xa7\x30\x51\xe3\x20\xfb\xac\x47\x91\x9b\x20\xda\x93\xd5\x90\x20\xa9\x4d\x58\x1f\x7b\xd5\x3c\xe6\xc8\x1f\x06\xae\xef\x0c\xbc\xb0\x99\x8d\x9d\x70\xc4\xe8\xf4\xab\xa5\xe6\x07\x08\x96\xcf\xe9\x67\xd8\x92\x01\xc2\xcd\xca\xd7\x26\x2e\x3b\xfa\x09\xe7\xf6\x1d\xb7\x66\x8f\x6d\x25\xf8\x35\x57\x5c\x0c\x9f\x1c\xe5\xcc\x2e\xef\xba\x71\xff\x05\x61\xf7\xa2\x07\x46\x23\x75\xb1\x84\x97\x6d\xeb\xb3\x8f\xef\x96\x25\x38\x2a\xcf\xaf\xdc\x30\x79\x67\x6e\xf9\x75\xbc\x7a\xeb\x28\x3f\xc1\xaf\xfd\x54\xeb\xe6\x4b\x73\x09\x9a\xc1\x33\xf5\x59\x55\x56\x10\xd4\xc2\x8e\xf5\xcc\xbb\x2f\x45\x10\xbc\x34\x5a\x23\x39\xf8\x9b\x81\x14\x27\xd1\xa6\x01\xd7\x00\x26\xba\x2f\xd8\x1e\xe5\x9a\xe7\x48\x90\xd9\xe3\xb0\x58\xc5\x6e\x35\xc1\x57\xa3\xcb\xa6\xff\x26\x1f\x61\x75\x8f\xd4\x44\x6c\xb6\x24\xa1\x86\xc3\x5a\xe5\xb1\xe6\x66\x02\x17\xfb\xac\xa6\x30\x33\x2d\xc2\xca\x2d\x25\xe5\x03\xab\x0d\x08\x06\x2c\xfd\x26\xc3\x42\xa2\x04\xed\x9b\xf5\x82\x77\x97\x1d\x23\x44\xde\xb1\x9b\xbb\x96\xe9\x44\xb8\xf6\x5a\x55\x79\xe7\x66\x73\xc2\xb9\xed\xec\x43\xc9\xee\x7b\x09\x4b\xbc\x0e\xf4\x3b\x46\x6d\x24\x88\x5f\x3b\xfd\xe7\x8a\xf5\x3a\x82\x8b\xa2\x1d\xf7\x4c\x1a\x63\xa0\x34\x49\xa6\xaf\xf1\x35\x37\xe1\xa5\x62\x59\x44\xab\x93\x30\x81\xdf\x53\xf3\x61\xcf\xca\xb9\x04\xde\x6f\x3d\x1a\x86\x63\x1a\x04\xad\x63\xaa\x49\x03\x69\x7a\x84\x65\x2f\xdb\x14\xdc\xde\x18\x11\xd4\x34\x6c\x25\x5c\x06\x0f\x11\xce\xfd\x2b\xda\x39\x96\x7a\x80\xb0\x73\x57\xa5\xca\x81\x8b\x05\x84\x0f\x23\xad\x8a\xbb\x7f\x18\x12\x8e\x08\xcf\xcd\xfa\x6e\x71\x7a\x1a\x7a\x8f\xf4\x7b\x38\x71\x3a\x13\x76\x71\x63\x57\x12\x7a\x19\x70\xe7\x28\x1d\xeb\x70\x3d\x48\x90\x1d\x0e\x0c\x0f\x6d\x2c\x26\x0c\x0c\x3e\x9d\x1b\xbf\x43\x85\xc0\x71\xef\xf9\xd7\x6d\x82\xa6\x84\xea\x02\x83\x73\x03\x31\x7a\x84\x9c\xe5\xde\x55\xfe\xbd\x73\x08\xc3\x7a\xdc\x32\x47\x9d\x95\x08\x45\xd9\xbf\x2f\xb1\x7d\xdd\x42\xa8\x09\xce\x8f\xd3\x3b\xf4\x8f\x01\x35\x85\xaa\x4d\xd9\x35\x33\x08\xd2\x36\x13\x61\xf1\x6f\x9d\x08\x7e\x9f\x2f\xfe\xd3\xbb\xfc\x87\x81\x79\x6f\xaa\x97\xcb\x75\xc8\xd2\xff\x2f\x74\xfd\xbe\x77\x31\xa7\x57\xe2\x7f\xe2\xd8\xf0\x04\xfb\x88\x71\x10\x13\x87\x4c\x97\xcf\x5b\x3d\xff\x59\x05\xbe\x3e\x61\xe5\xbd\x74\xf1\x0d\x21\xf0\x83\x13\x43\xf7\xc6\x1b\x42\x71\xf4\x35\x8b\x59\xb6\xef\x09\xf6\xec\x33\xf4\x77\xc7\xb7\x10\x22\xf7\x14\xdd\x52\xbd\xc1\x24\xfc\xb5\xbf\x28\xd6\xf0\x26\x97\x20\xb7\xb7\x28\xc5\xe4\xc8\x30\x03\x85\x56\x12\x15\x1d\xe1\x4b\xe9\x7f\xe1\x98\xe1\xb5\x39\x87\x3e\xbe\xac\xc0\x69\x9f\x82\x2c\x53\xf3\x54\x42\xa0\xab\xd7\x39\x9b\x4d\x09\x04\x4d\xd1\xf6\x41\x91\x10\x0d\xc2\x33\x31\xbe\x5d\x2f\x1e\x54\x13\x4c\xaa\x78\x38\x82\x1e\x24\x11\xb6\x18\xfc\x08\x4c\xd5\xa8\x24\xb4\x14\x67\x75\x3e\x9f\x1c\xb5\x99\x77\x65\xe5\xed\x95\x20\xd8\x8e\x97\xcf\x39\xa8\x76\x8e\x10\x76\xf5\xcb\x9c\xe6\x42\x69\xc2\xdf\xd9\xbd\xc2\x09\x1c\x85\x04\xf7\xc2\xd3\xd2\xe1\x06\xff\x18\xd0\xd1\x19\x56\xf0\x18\x36\x21\xf8\xf8\xae\x87\xf0\xc5\x75\x04\x6b\xa7\xe7\x5b\xc3\x4c\x55\x09\x47\x4c\x84\x0f\x8c\xcf\x5d\x4a\xc8\x89\xd8\xbe\xbf\xb8\x5f\x80\xb0\xec\x42\x32\x9f\xad\xa3\x08\xe1\xa4\xc3\x52\xfe\x42\xf6\x70\xc2\xbe\x44\xe3\xe7\xdc\x6b\x14\x08\x99\x9f\x8a\x93\x4a\xf3\x8c\x08\xbb\x54\x8e\x2f\x5e\xbf\xdc\x88\x30\xc0\xf6\xd7\x6f\x75\x4d\x11\xe1\x67\xfc\xe3\xdc\xb3\xbc\x9d\x84\x12\xcf\xc5\xdf\xae\x19\x5e\x63\x42\xfd\xa0\xed\x23\xc3\x15\xdb\x68\x0a\x8a\x43\x9a\x9a\x97\x76\xc7\x33\x91\xfa\x84\x3b\xfe\xe3\x67\x79\x42\xe8\xc6\x65\xa2\x55\x9d\xb2\x84\x34\x8f\x8b\xe2\xfa\x9f\x8a\x09\xf1\xd5\x65\xc5\x29\xa2\x26\x04\x3e\x03\xd7\xdd\xea\xbd\xf6\x84\x77\x06\x0b\xfa\xeb\x16\xd8\x13\xfc\xc6\x6b\x55\x4f\x87\x7b\x11\x92\x79\xee\x9c\x54\x5e\x23\x43\xb8\xdc\x7e\x36\xac\x3d\x5a\x88\x30\x7c\xfb\xd5\xed\x84\x83\x39\x04\xe5\x94\x7b\x3b\x24\x9b\x0e\x30\x71\x7f\x9d\xe7\x22\x07\x61\x5d\xc2\xac\xfd\x02\xe1\x9e\xb2\x3d\x84\x43\x31\x13\xde\x15\x0b\xdb\x08\x17\xf5\x4b\x0b\xd9\xe4\x99\x84\x58\xff\x3b\x81\x8f\xee\x45\x13\x0e\xfe\xcb\xd4\x5f\x29\x19\x45\xb8\x3b\xb0\xe9\x6f\xed\xdf\x70\xc2\x0b\x4b\xe7\x24\xea\x3c\x4c\x08\x89\xc8\xd9\x7c\x7b\x22\x9a\x70\xd2\xce\xcd\xd9\x6f\x20\x89\xe0\x79\x7b\xc8\xd5\xd7\x29\x8e\xc0\xfe\x82\x6f\x2c\xf9\xcc\x47\xc2\xdd\x97\x3d\x8f\xb8\xba\x6d\x08\xfa\xa7\x04\x65\x97\xb2\xad\x98\x86\xee\xf1\x07\x73\xfb\x86\xc1\x80\x5b\x84\x2f\x4b\xa2\x87\x21\xe1\x73\xdb\x4c\x2b\xe1\xef\x6e\x4c\xf0\x57\xb9\x67\xb0\x2c\x39\x49\xa8\xd9\x9d\xab\x7a\xf4\xaf\x17\xe1\x9b\x99\x71\x5a\xd6\xc8\x31\x26\x4c\xec\x7d\x84\x2d\x99\x9b\x99\xd8\x26\xd8\x68\x2e\xae\x2e\x44\x08\xf8\x17\x7d\xa1\xa3\x68\x29\xe1\xca\x42\x15\xe5\x0a\xc6\x2e\xc2\x1e\x25\xfe\xd5\xaf\xa2\x04\x09\xe9\xb5\x05\x5f\x44\x0f\x6e\x22\x9c\x2f\xb9\x7c\xbc\x74\xbe\x21\x21\x89\x65\x40\x31\x3a\x4d\x68\x1a\x9c\x83\xf5\x67\x0c\x51\x74\x05\x7e\xed\x6f\x1c\xee\xd7\xd4\x27\x2c\x3f\xc3\xca\x77\x7f\x2d\x18\xf0\x08\xbe\x5e\x75\xfd\xef\xd0\x34\xbc\x8a\xb1\x7d\xff\x71\xc3\xbd\x8a\x29\xc4\xdd\xd7\x71\xa8\x0e\x4c\x21\xdc\xcb\x1f\x39\xa5\xe1\x3d\x1d\xca\xe2\xbc\x6a\x29\xfc\xeb\x08\x7f\xff\x3c\x0d\x55\x7c\x5d\xc5\x44\xad\xdc\x1c\x55\xef\x4a\x5e\x9a\xc2\x72\xdd\xb9\xfe\x9a\xed\x2f\x19\xe8\x5e\x6d\xdf\x78\x2b\x88\x8d\xb0\x61\xf0\xf2\x6a\x3e\x4e\xc1\x69\x18\xf1\x0d\x78\xfa\xc7\xa0\x8c\x20\x34\xd1\x69\x27\xbc\xcf\x86\x20\xf0\x26\xf4\xe1\xd6\xa0\x2e\x06\xb4\x6f\xdc\x72\xbc\xbe\x75\x23\x21\xf6\x6a\x43\x57\xe3\xc4\x13\x42\x45\xe4\xd2\xf6\x86\xa0\xea\xc9\x13\xd6\x9f\xd9\xdc\x49\xf7\x09\x11\x46\x3c\xa3\xc7\x25\xbd\x08\x85\xeb\x6c\x05\x4f\xbd\x6f\x62\xe0\xa7\xab\xd0\x59\xd6\xca\xc9\x0d\x56\x75\xa3\x61\xa8\xa0\x3e\x21\x7c\x65\xd6\xcf\xd0\xd7\x3b\x08\xb9\xe3\x1d\x91\xa2\x0f\x25\x09\xe3\x33\xe3\xdf\x57\x19\xae\x23\x88\x9c\xfe\x6b\xd0\x79\x49\x9f\x30\x62\xf0\xaf\x5d\x39\x4d\x8e\xe0\x6e\x6e\xf3\x74\x79\x95\x37\x21\xf7\xdd\x5b\x11\x95\xf5\xd3\xc1\x1c\x72\xd8\x70\x47\xd3\x9d\x10\x73\x75\x9d\xc3\x23\xed\x63\x84\xd5\xae\xe7\xc7\xa3\x1b\x4c\x08\x79\xe9\x57\x4c\x9f\x5d\xb3\x25\x28\xb6\x73\xc7\x3f\xe8\x2e\x22\xb0\x30\x95\xdd\xd7\xe9\x9a\x10\xac\xeb\x4a\xfd\xd8\xeb\x0c\x09\x55\x7c\x62\xc3\x32\xc3\xac\x84\xfe\xe7\xbd\x31\xfc\x03\x37\x09\xfc\xd1\x77\x4e\xec\x6f\xba\xc3\xc4\x1b\xdd\x2e\xb7\x8a\xc0\xcd\x84\xc8\xc3\xb1\x41\xb7\x1f\xd2\x34\xd4\xe9\x76\x9f\xab\x3e\x90\x59\x01\x81\xf0\x0e\x4b\x0f\xff\x62\x82\xf0\xa5\x31\xfe\x84\x86\x38\x42\xb1\xa4\xcc\x89\x56\x91\x00\x26\x3e\x65\x73\xb7\x15\x3d\xdd\x45\xc8\x1b\x5c\xbb\x4a\x36\xb6\x90\x50\xe4\xa9\x7f\x43\x6a\xe7\x1d\x82\xdb\xc0\xa3\x7a\x8f\xdc\x50\xc2\x47\xbb\xee\x73\x7f\x25\xd8\x09\x76\xb7\x39\x79\x5f\x3c\x29\x21\xe8\x0a\xf9\x24\xfd\x1d\x2b\x21\x34\x1d\xf1\x3b\xb5\x67\xb0\x84\x20\x50\xfc\x77\x50\xc9\xe4\x30\xc1\x53\xf7\xaf\xaf\xf2\x47\x4f\x82\x72\x60\xc1\x02\xe1\xd2\xb7\x0c\xb4\x65\xd9\x54\x7c\x1f\x13\x27\xdc\x5f\xb5\xc0\x67\x68\xbf\xca\x34\x8c\x66\xa4\x99\x2f\xd3\x6a\xaf\xc0\x39\x61\xac\xb9\x60\x5a\x46\xd8\xa7\xa5\xff\xe4\xf2\x24\xba\x4e\xe8\xca\xdf\xbd\xee\x49\xe8\xdb\xb2\xc9\xf8\xe7\x9a\x4a\xe6\x54\x39\xf9\xce\x69\x83\xed\x4f\x11\x82\xd7\xa8\x8e\xef\x1a\xfb\x5e\x06\xe2\x7f\xdc\x39\xbc\xf8\xfb\x46\xc2\x85\xaa\x05\x5a\xaf\xb6\xc9\x12\x16\x79\xfb\x0f\xda\xca\xab\x13\xb2\xfe\xee\xfe\xfd\xde\xe7\x1f\x03\x61\xa6\x33\x86\x7f\x56\xed\x23\x5c\x0d\x3b\x38\xe6\xc6\x3a\xf9\x7c\xcd\x62\x5d\xb2\x53\x4d\x99\xa6\xa0\xde\xb8\x78\x88\xef\xb2\xc8\x34\x14\xa8\xb3\x9f\x98\xd3\x2c\x4b\x18\x29\x48\xff\xde\xbd\xc9\x9c\xb0\xd5\x63\x47\x90\x6e\xd0\x0f\x06\xaa\x0e\x35\x37\xb4\xfe\x66\xa1\x29\x3c\x96\x0e\x31\x7d\xe4\x35\x9b\x70\xc8\x9e\x5b\xda\x84\xe7\x0c\x41\xa8\xde\x26\x2c\xea\x97\x37\xe1\x5d\x99\xb9\x9d\x56\x6f\x38\x61\xbe\x47\x4c\x7b\xc5\x81\xa3\x84\x8b\xdf\xfd\x4e\x6d\x6e\xf4\x21\xec\xd0\x38\xfd\x8e\xb7\xe3\x3c\x61\x25\xcb\xeb\xfb\xcb\x36\x9d\x21\x5c\x8a\xae\x7a\x3a\x6e\xc1\x47\xb0\xdd\xfa\x44\xed\xaa\x8a\x0e\x81\x47\xc6\xeb\xd5\xbd\xce\xd8\x69\x90\xbe\xfc\x1d\xdb\x95\x8b\x09\x3f\x5b\x1e\xc6\x1e\x9d\xc7\x4b\x50\xcc\x10\x2b\x89\x4a\x58\x4b\x38\x68\x64\xf7\x46\x4b\x79\x2d\x41\x7b\xae\xe9\x72\x8f\x82\x20\x26\x14\x3a\xd4\x3e\xe5\x06\xd4\x13\x4c\x1e\x14\x3c\x5a\xb2\xfa\x1d\xa1\x4f\x24\xea\xa5\xec\xb3\xc7\x84\x35\xfe\x67\xdf\xee\xd4\x8c\x21\x7c\x14\xdd\x59\xde\xf9\xca\x88\xe0\xb7\xaf\x3a\x39\xf5\xdc\xd6\xe9\x78\x56\x75\x8a\x7d\xe6\xd7\x0a\x18\xaf\xd0\xa9\x99\x99\xb3\x8d\x50\x72\xc1\xe5\xf7\xc6\x75\x3b\x09\x39\xf2\x42\xf2\x6a\x59\x8a\x84\x83\xdf\x6d\xd3\x6d\xd6\x48\x10\xde\x5b\xcd\x7a\x55\xfa\x7e\xf2\x9a\x5b\x62\xaa\x9a\xab\xa7\x43\x10\x14\x15\x57\x88\x1b\x8a\x21\xf0\x5c\x70\xd3\x7e\x79\xec\x22\x81\xf1\x75\xcf\x0f\xeb\xd8\xb4\x0a\x7c\xb7\xd9\xf3\x54\x58\x54\x86\x60\x64\x3a\xa7\xcc\xbc\xd5\x9b\x50\xa1\xf8\x4e\x61\x62\xd9\x0d\xc2\xfd\xa3\x12\x8b\xec\xff\x6a\x13\xce\xdc\xf9\x15\xab\xae\xcc\x4e\xb8\x26\xec\x11\xa0\x79\x23\x92\x30\xef\x94\xa5\x52\xf1\x6d\x73\x26\xfe\xf4\x8a\x04\x85\xa5\xde\x26\x6c\x5f\xa7\x69\x63\x9c\x9c\x4b\x28\x0e\xf8\x79\x73\xa1\x56\x21\xe1\xed\x9e\x0c\x8f\x84\xa8\x52\x02\xcd\xbf\xe7\x3a\xb6\xeb\x20\x13\x5a\xf6\xaf\x3f\x86\xed\xbe\xce\xc4\x79\xf5\xd3\xc3\x8b\x3c\x8f\x30\x31\x3c\x67\x78\x60\xe3\x03\x57\x26\x96\x1e\xe8\xfa\xbe\x47\x3e\x85\xc0\x88\xb8\xb6\xfa\xee\xe4\x5b\x2f\xb5\xf7\xb0\x4c\xe8\x73\x45\x42\x49\x77\x8a\x4a\x53\x2b\x11\x7a\xb7\x59\xa4\xe7\x9b\xde\x21\xd4\x78\x0b\x1a\xfb\xd7\xde\x21\x54\xec\x5c\xec\xf7\x34\x2c\x89\x30\x96\xfc\xb3\x66\xa0\x25\x9b\x20\x16\x3a\xc3\x30\x60\x72\x14\xb5\xaf\xd0\xa8\x3f\xfd\xd8\x34\x48\xfe\x48\x89\xbf\x75\xed\x18\x81\xd5\x65\xe5\x88\x67\xb7\x17\x41\xf0\xd7\x23\xea\x6e\x8d\x25\xc8\xf3\xcb\xdb\x7b\x98\xdc\x25\x38\x04\x38\xee\x72\xd8\x11\x44\x70\x28\xe3\x6d\x5e\x74\x7b\x80\x31\x05\xf5\x7a\xd1\x03\xa3\x2c\xb3\x08\xb3\x1a\x62\xc7\x17\x68\x39\x10\x1a\x05\x53\xd7\x84\xdd\xe5\x25\xc8\xfd\x0a\xbf\x77\xef\x9a\xd5\x34\xf4\x68\xc8\xce\xd4\xda\xc1\x4f\x88\x1a\xce\xe5\xcb\x55\x8d\x27\xf0\xbd\x6e\xb5\x37\xab\xac\x22\xac\xaa\xd1\xdd\xb2\x70\x78\x80\x30\x1c\xb6\x97\xb7\x5d\x22\x9f\x09\xf1\x79\xac\xc7\x4d\x27\x47\x55\xd6\x21\x23\x7b\x26\x51\xa2\x71\xf6\x57\x84\xb0\x3a\x61\x2c\xf3\x73\xed\x3d\xb1\x8f\x0c\xe4\x39\x09\xbd\xf4\x2e\x5f\x4a\x53\xe0\x18\x74\xcc\xad\x08\xe8\x62\x60\x59\x84\x44\x84\xfb\x43\x0d\xc2\x2f\x41\x75\xf3\x32\xb6\x75\x84\x6b\x9a\xdc\x09\x2d\xff\xf9\x74\xa5\xda\x55\x1c\x83\xa6\x7e\x04\x67\x97\x2f\x91\x6d\xce\xdd\x4c\x08\xbc\xe3\xcd\x7b\x55\x59\xc4\x44\xbd\xfe\xa6\x9f\x03\x5f\xb3\x08\x03\x09\xcb\xd9\x6d\x5f\x9e\x20\x3c\x72\xff\x9a\xb1\x34\xda\x95\xb0\x63\xbe\xd7\xea\x9f\x0e\x6a\x84\x27\xcd\x55\x87\xa5\xb3\xf7\x13\x92\xa3\xfe\xf6\x1f\x30\x10\x21\x34\x7b\xd5\x73\x7e\x7c\x74\x66\x1a\x3a\x76\x8e\x6f\xbc\xc8\x54\x20\xc4\x3f\xba\xaf\x6c\x66\x2c\x46\x50\x4c\x5d\x16\x6d\x23\xea\x3d\x0d\xae\x07\xf3\x54\x7c\x34\x19\x84\x17\x31\xd6\x1a\x82\x47\x54\x09\x61\x17\xfd\x57\xa7\x1b\x1b\x10\xfc\x05\xb2\x83\x3a\x5d\xab\x09\xe5\x6f\x67\xb8\x09\xce\xf7\x26\xf4\x6e\x11\x8c\xe7\x5a\x7b\x71\x1a\xe6\x33\xab\xe7\x9d\xb1\x3f\x4e\x60\xae\xde\xd8\xba\xf0\xb1\x25\x41\x7f\x65\x60\xa8\xb8\xb9\x0e\xa1\x2c\xda\x47\xe9\x88\xb0\x38\x61\x64\x55\xf6\xfd\x18\x07\x25\xc2\xd7\x8a\xb6\x1b\x96\x11\xca\x04\xed\xbd\x26\x77\xfa\x3c\xcf\x11\x34\xcf\x99\x38\xd4\xdb\xef\x21\x3c\x5a\x6c\x7c\xf2\xb3\xf1\x1a\x42\x24\x9f\x5b\x7f\x79\xc0\x4f\x06\xc4\x5c\x96\xce\xeb\x0d\x1b\x60\xe0\x02\x2f\xdb\xaa\x55\x67\xd8\x08\x89\x79\x92\x17\xfa\xe3\x79\x08\xa7\xb6\x75\xb3\xea\x36\xef\x23\xe4\x58\x25\x9e\xfb\x71\xeb\x01\x03\x77\xb9\x47\xf7\x3f\x49\xe0\xa7\x29\x8c\xfb\x74\x2b\x73\xe4\xbf\x62\x4c\xa1\x4b\x2b\x3f\x78\x5e\xd0\x2e\x9a\x42\xb6\x57\xe1\x8d\xf9\x9e\x8d\x8c\x29\x64\xf0\x17\x3e\xfc\x77\x6a\x72\xf3\x0c\x68\x8a\xbc\x98\x24\x34\x0d\x09\x6d\x1c\x97\xce\xb9\xa9\x11\xd8\x77\x9e\x2e\xdb\x71\x54\x7a\x1a\xe6\x35\xd5\x06\xa7\x6e\x8e\xaf\x00\xf7\x02\xc1\x2b\x5b\x5f\x4b\x12\x42\xda\x17\xc8\xdd\x8a\xe3\x9f\x06\xa1\x5f\xd1\x41\xb3\xcf\xbd\x60\xa0\x59\xe3\x47\xcf\xdf\x50\x1e\xfa\x3f\x8c\x3f\x70\x4f\x75\xe4\xb4\xfa\xbf\x9f\x98\xeb\xb8\xfc\xf0\xbe\xb1\x46\x06\xee\xbf\xfe\xfe\xc1\xa2\x73\x05\x61\x53\xc0\xb2\x95\x1f\x35\x8b\x09\xda\x5f\x3d\x34\xbd\x39\x55\x08\xb2\x33\x7e\x2e\x8c\x53\xdc\x48\x60\xdc\x3a\x50\x30\xa0\x77\x68\x1a\xee\xed\xd5\x5d\x6f\x9e\x1d\x44\x08\x92\xf1\xcb\xe0\xed\x3e\x45\x38\x91\xce\xb9\x3a\xe1\x9b\xc8\x34\xa4\xb5\x5a\xe9\x19\xce\x1c\x61\x20\xe0\xb0\x71\x90\x85\x64\x2f\x03\xda\x67\x0b\x6b\x37\x3a\xee\x23\x94\x73\xbb\x4f\xcc\x7c\xb2\x79\x1a\xce\x1b\x46\x9e\xda\xd2\x22\x4e\xf8\x73\x40\x61\x94\xa1\xc1\x3d\x0d\x63\xdd\xe2\xca\x13\xfb\x7f\x32\xf0\x45\x60\xc3\x11\x8e\xd4\x4d\x84\x77\xee\xe7\x43\xf8\xca\x2a\x08\x27\x6f\x4b\x9b\x9e\x2a\x9d\x4d\xe0\xb8\x2c\x3a\x97\xb5\x5b\x8d\x70\x4f\x50\x3a\xe7\xd4\x8f\x46\x06\xd2\x75\xc2\xe4\xdc\xfa\xb6\x10\x02\xe8\xac\x33\xdb\x1b\x3d\x82\xfd\x69\x9d\x2b\x02\xef\x1c\x08\xaa\xbd\x7f\x92\xbc\x0b\x07\x18\x18\xd3\xda\x9c\x3b\x18\x97\xcb\x44\x7b\x29\x7e\x14\x3d\x3f\x4b\x78\xe6\x15\x3a\x9a\x90\xaf\x44\x48\xff\x9e\x2d\xad\xb1\x53\x90\xd0\x23\x30\x70\xfa\x86\xd5\x0a\xc2\x82\x65\x8c\x96\xd2\x93\x9c\x04\x9f\xf9\x5c\x03\x75\xbc\xdf\x19\x88\x36\x33\x71\xe4\xec\x36\x21\x08\xa5\xff\xb9\x38\xa7\xf4\x1f\x03\x1a\x4e\x76\xdb\xe2\x07\x27\xdf\x16\x5b\xee\xf7\x69\x70\xbb\x10\xfe\xd5\xcc\x2c\xd6\x51\xdd\x4f\xd8\x35\x78\x7e\x4c\x33\x60\x1d\xe1\x51\x7f\xcc\x5d\xef\x18\x5d\x82\x13\xe7\x1d\x53\x7b\x31\x01\xc2\xd6\x3f\xc6\x4d\xdc\xcc\x52\x06\x1a\x36\x5d\x76\xe3\x64\x29\x22\x74\x5a\x2b\x44\xf3\xec\x6e\x22\xd8\xe5\xd6\x6e\xe2\x9b\xc4\xef\xd5\xd1\x86\xd2\x9d\x97\x08\x78\x9a\xf8\x2a\xf4\xc7\x95\x69\x45\xa2\x9d\xe5\x8a\x8e\xf9\x25\x42\xe5\x02\x8e\x37\x6c\xdf\xd2\x09\xe1\x31\x91\xc7\x87\x6a\x37\x10\xbe\xf1\xdf\xae\x5e\xfe\x01\x8c\x29\x7c\xcf\xdc\x26\x5e\xc9\xf9\xb6\x02\x99\x8d\x57\x5b\x2c\xd7\x46\x13\x78\x75\x4a\x23\x35\x0d\xdc\x09\x1e\xbf\xef\xb3\x67\xdf\xf2\x23\x28\x89\x95\xff\x51\xd6\x10\x20\xcc\xec\xfa\xf1\x57\x7d\x8e\x0c\xa1\xf2\x2f\xeb\x52\x61\x89\xfd\x84\x66\xae\xf4\xc1\x9e\x1a\x07\x82\xcc\x31\xa7\x07\xdb\xc7\x4d\x09\x4d\xc2\x8c\xba\x85\x27\xad\x09\x87\x6f\x07\x98\x16\x1e\xf1\xfa\x6f\xb0\x2d\x0d\xd8\xff\xd1\x9f\x67\xf2\xdc\x39\x23\x72\x70\x9e\x24\xc1\xce\x6e\x8d\xa8\xf0\xd3\xc9\xb3\x4e\xfe\xc8\x70\x92\x70\x03\x13\x2f\x74\xdf\x54\x08\x4d\x96\x94\x85\x23\x0f\x57\x9c\xf2\x21\xe4\x67\xba\xd0\xe0\xe7\x7b\x4c\x24\x2c\x61\x79\x96\x1d\x55\x44\x18\x51\x18\x56\xe1\xde\xdd\x45\xd8\x7f\x4b\x25\x64\x61\xb8\x23\xa1\xbe\x67\xcb\x6a\xff\xb4\x9d\x04\xc1\xae\xb3\x15\xa7\x95\x14\x09\x0d\xf1\x1f\x66\x89\xed\x5d\x42\xe0\x30\xe5\xee\x6f\xb9\x62\x44\x88\xe7\xd8\xa7\x26\x5d\x67\x4e\x70\x19\x3d\xb9\x62\x20\xfe\x2c\x13\x2e\xd7\x17\x9d\xde\x71\xd7\x61\xda\x1a\xf7\x7c\x81\x7f\x52\xc3\x91\x04\x5f\xd1\x32\xfb\xd0\x19\x51\xd3\xca\xc9\x06\xd9\xb3\x4b\xea\x4f\x13\xac\x2c\x2f\x30\x96\x5c\x1d\x20\x88\x88\xdf\x3d\x71\x52\x34\x99\xa0\xb4\xdb\x3d\x7c\x8b\x68\x35\xc1\x8d\xe3\xfe\xc9\xd3\xfe\x85\x84\xc7\xa6\xc6\x2a\x09\x06\x81\x04\xf6\x63\x2b\x46\x29\xa4\x96\x09\xb7\xa4\xd8\xf6\x57\xa5\x89\x04\xf9\x9c\x0f\xe7\xfc\x9f\x3a\xfe\xbf\xdf\x23\x50\x46\xa8\x89\x91\x78\x56\xb5\xcc\x93\x50\xb6\xbc\x67\xaf\xee\xb3\x10\xc2\xef\xc6\x09\xa7\x47\xc1\x4e\x84\x2e\xe9\x84\x13\xde\x9c\x27\x09\xdd\x73\x3f\xe5\x66\xb8\x34\x32\xf1\x73\xc7\xb0\x7b\x83\x46\x1a\x13\x0a\x1f\xbf\x74\x2e\x5c\xf5\x92\x09\x75\xf6\x8c\x93\x91\xf1\xd9\x84\xcf\xe7\x87\xbc\x3b\xf7\xfb\x12\x9a\x5f\xc9\xe6\x1c\xfe\x78\x82\x50\xeb\x3e\x72\x2b\xef\x5b\x30\xc1\x65\xef\xe3\x2b\xed\x2e\x5e\x84\x1f\x6f\x86\xb8\x3c\x74\xbc\x98\x38\x2f\xb7\x63\x65\xc1\x2c\x47\x82\x73\x5c\x85\x73\xbb\x85\x17\xe1\xcb\x9d\x84\x57\xc7\x33\xab\x08\xc1\xcd\xb1\x16\xb7\x3c\x88\xd0\xcd\x3b\xf2\x27\xd0\x67\x2d\x61\xee\x8f\x76\xdb\x78\xab\x34\x42\x8a\x4d\x7b\x17\x7f\x1e\x0f\xa1\xa2\x36\x44\x35\x2b\x47\x9a\xb0\x51\xce\x3d\xcd\x61\x2d\x0f\x61\x38\xc9\x7f\x74\xe1\x58\x3a\xa1\x33\xf7\xdc\x77\x83\x1a\x77\xc2\x9c\x4b\xe2\x7d\x7d\x09\x8a\x04\x91\x91\x05\xc3\x63\x4b\xc5\x09\x8f\x36\x71\xbe\xf8\xbe\x6a\x3e\xe1\xd0\xad\x94\x7a\xdd\x8b\x7e\x04\xd9\xe7\xf2\xda\x9d\x1b\xd7\x13\xee\x05\x89\x9c\x54\x6b\x7b\x45\xf8\x7d\xd4\x65\x65\x47\x4d\x29\xc1\xca\xca\xd1\x3b\x4f\xcc\x8a\xe0\xb4\x32\x2c\xc6\x5c\x75\x0f\x61\xf3\x42\xf3\x65\x2a\xf5\x29\x4c\x98\x58\x96\x0b\xad\x71\xdb\x49\x98\xe9\xec\x6b\x14\xef\xcb\x45\x78\xd5\xfa\xfa\x53\x52\x4c\x79\x05\xe2\x9e\xda\x3b\xef\xb8\x73\x9b\xd0\x53\x76\x79\xfe\x03\x07\x4d\x42\xde\xfc\xcf\xcf\x95\x26\x6f\x4d\x67\xd2\xe7\x32\xee\xa7\xbf\xaa\xc0\x89\x6f\x16\xc2\xf3\xd6\xca\xd1\x14\x86\x75\xce\x77\xc6\xa7\xff\x66\xa0\xdb\xbe\x70\xf9\xcf\xf0\x37\x15\x18\xb5\xb3\x6f\xf4\xe1\xd9\x42\x90\x88\xf2\x66\x7f\xde\xac\x46\x78\xc6\x62\x5b\x62\x38\xf1\x9e\x81\xf5\xfc\xa2\x7c\xff\x9e\xe6\x11\x9c\x57\x70\xb6\xb1\xc8\xe5\x11\x16\x6e\xb8\xda\xb3\xac\xfa\x3a\xa1\xd1\x26\x56\xb6\xed\x6b\x29\x41\xf1\x21\x8b\x96\xec\xec\x21\x06\x32\xae\xa6\xfe\x64\x79\x92\x47\x53\x88\xcb\x6d\x79\x72\xba\x2c\x8d\xa0\xa6\x7b\xee\xc5\xeb\xc0\x13\x84\x9e\x13\x57\x85\x8d\xbb\x38\x08\xb3\xd5\xb4\x4d\x77\x9f\x7b\xc5\x40\xfa\xf0\xa0\xbd\xef\xbd\xb9\x84\xd9\xaf\xe7\xc9\xbc\x5d\x94\x46\x58\x72\x86\x3b\xea\x50\xc7\x4e\x42\xe2\x39\xce\x03\x1a\xba\x47\xa6\x81\x51\x74\xec\xc5\xbe\x72\x79\xc2\x39\xfa\x35\x92\x33\x77\x21\x21\xda\x73\x48\xe7\xa1\xba\x3a\x41\xe1\xc8\xc5\xae\xc2\x63\xb3\x09\xeb\x72\x17\x6d\x8d\x3c\xb1\x75\x1a\x38\x77\xba\xcc\xcb\x59\x0c\x06\xd8\x8f\x2c\x8a\x1a\xff\xf4\x94\x50\xfb\x5c\x2c\xfd\xd7\x24\x1e\x59\xe8\xfc\x98\x53\x19\x48\xf8\x36\x7f\xc0\x90\x91\x7c\x91\x60\xe4\x74\x5a\x31\x24\xf9\x26\x13\x0f\xae\x08\x85\x05\xf7\x87\x10\xde\xe8\x9a\x36\xc3\x30\x88\x20\xde\x7f\xfa\xca\x9c\xac\xf3\x84\x6a\xc1\xc2\xf2\x5f\xe5\x5e\x04\x7f\x99\xd8\x3d\x46\x5b\xaa\x08\x0b\xf7\x07\x8b\xf0\x64\x57\x10\x16\x8c\x6f\xff\x7b\x7a\x6f\x3e\x41\x37\xec\x76\x40\xf3\x9b\x6a\xc2\x99\xc8\xc3\x4f\x92\x67\x8b\x11\x5a\x0b\xad\xd7\xcd\xe0\xda\x46\xa0\x04\xf7\xa1\xc0\xcf\xf7\x09\xef\x6f\xfd\x4c\x5c\xfe\xd3\x8f\xf0\xe9\xdf\x81\x03\x2b\x36\x72\x13\x12\x9f\xbb\xed\x92\xd3\x39\xcf\x84\xc9\xa9\x8a\xdf\x66\xef\x97\x11\xec\x82\x19\x9d\xc7\x4f\xfd\x64\xa0\xe0\x4c\x26\xaf\x3e\x3c\x09\x5f\x34\x36\xe8\xf3\x5a\x6c\x23\x7c\x18\xfc\xe2\xbf\xa3\x4b\x8b\x20\x1d\x98\xc9\xf6\x44\x82\x97\x30\x7a\x76\xb1\x69\xc0\xb9\x25\x84\x33\x9a\xd6\xfd\x95\xdb\x67\x4e\x83\xab\xb6\x59\x98\x75\x6f\x28\xc1\x3b\x38\x38\x29\x37\x67\x3f\x13\x37\xa3\x2d\x6d\x9b\x4b\x6d\x08\xfe\xe3\x1e\xf5\xb3\x7b\x16\x13\x82\xdb\x93\xfd\xbf\xab\xce\x27\x8c\xef\xef\x39\x16\x7a\x3a\x67\x1a\x3e\xb8\xf7\xe5\xa5\xc8\x95\x4d\x2b\x57\xf4\xb2\x96\xc4\xca\x39\x10\x86\xca\xbf\x4a\xc5\xc5\xdb\x4e\x2b\xff\x87\x25\x0d\x52\x26\xe1\x8b\x97\x11\x78\x99\x37\x99\x01\xc9\x3c\x84\x62\x03\x36\x9f\x7f\x06\x0a\x04\x5f\xd7\x08\x61\xa7\xe1\x26\x06\x4e\xa8\x67\x3d\x4f\xb8\xc6\x46\x28\x3e\xbd\x6a\xfb\xd9\xc2\x9f\x0c\x1c\xa8\x7b\xf0\xf0\x46\x28\x3b\x41\xbf\x63\xcd\xca\x65\x17\x86\x18\x38\x3c\x53\xcd\x34\x5f\x9f\x85\x20\xb4\xc7\x81\x96\xc7\x6d\x26\x24\xd9\xcc\xe8\x5e\x1d\xbe\x7f\x1a\x3c\xe6\x3d\x2b\x97\xad\x78\x5f\x81\xd8\xc6\xdc\xbc\x61\x9f\x30\x42\xc6\xb3\x91\x2f\x8b\xa2\xbe\x10\xe2\x8f\x27\xe4\x19\x5d\xfc\x42\x58\xbc\xf5\x90\x7f\xe0\xdd\x7e\x42\xa3\xe5\xc4\x79\xc6\x64\x19\xae\xa9\xab\x7e\xad\x54\x43\xd8\xf1\x73\xee\x21\x65\xdd\x1a\x82\x26\xd3\x25\xf7\xc9\xd6\x1a\xc2\x7d\xe9\x5d\x71\x55\x93\xa3\x85\x85\x5b\xdc\xec\x02\x52\x09\x79\xea\x19\xb1\xc7\x36\x3c\x25\x5c\x0f\xb0\x75\x3b\x7a\xa0\x96\x70\x89\x6f\xfc\xf2\x63\x8b\x12\x42\x63\x6c\xe7\xc6\xec\x15\xcd\x04\x96\x47\xe5\xe1\x3f\xa3\x1e\x10\x38\x2d\x72\xc4\x0f\xe7\x56\x11\x36\xf0\x48\x78\xdf\x9c\x1c\x15\x49\x44\xbf\xa9\x7a\xb0\x97\x30\xf8\x68\xe6\xb1\x92\xd7\x8e\x4c\x88\x16\x05\x1d\x4d\x1a\xbd\x4a\xe0\xbb\xb5\x45\xcd\xf7\xe7\xf6\xa9\x35\xe3\x6b\xdf\x95\x88\xbb\x0e\x32\x10\x5b\xdc\xd3\x33\x7f\xe5\x1e\xfa\x2f\x30\x19\xde\x16\xba\x3c\x68\xf9\xff\x84\x2d\x67\xe9\x95\xdd\x43\xeb\x09\x01\x25\xc7\x5d\xab\x4e\x39\x10\x2e\x71\x8e\xeb\x33\xbe\x19\x13\xbc\x4f\xee\x7c\x58\x92\x96\x49\x58\xff\xa6\x21\x71\xab\x1e\x37\x61\xad\xc1\x93\xdb\x1a\x03\xc2\x84\x9f\xfd\xaa\xb2\x42\xfb\x3a\x18\xd0\xfd\xfb\x46\xf3\x37\x83\x49\x10\x1d\x0b\xdc\xc7\xef\xff\x80\xf0\x36\xd4\x7f\x4e\x6b\x4c\x34\xc1\x29\x3a\x75\x55\xfe\xe6\x16\xc2\x82\xbd\xf2\x25\xb1\x21\x55\x04\xf7\x9a\x26\xe7\x05\x81\xdb\x09\x42\xc7\xd4\x22\xcb\x44\xfa\x19\xe8\x0b\x7c\x16\x7b\xe9\xf8\x4c\xfa\x5f\x60\x79\x7d\x83\xeb\xf3\x81\x3c\x82\xce\xd7\x51\x09\x66\x6d\xdb\xb4\xa2\x95\xf1\xcf\x51\xcc\x6b\x19\x61\x67\xaf\xad\x96\xb2\xde\x61\x42\x75\x1d\xd3\x73\xf3\xa6\x4c\xc2\xc7\x92\xcb\x4b\xc7\xcb\xda\x09\xd9\xf7\xfe\x2c\x8c\x4e\xec\x27\x8c\x70\x3f\x29\x1b\xe5\x1c\x22\xb0\x7d\xf6\x32\x17\x3c\x59\x42\x30\xcb\x88\x5e\xdc\xc6\xd8\x4d\xd8\x56\x5a\x93\xc2\xf4\xb8\x49\xd0\x7b\x93\xdb\xd9\xf1\x66\x17\x61\xa6\xbd\x51\xa3\xdf\x01\x73\x42\x9d\x1c\xfb\x66\xa7\xfa\x09\x06\x46\x82\xab\xd6\xfd\xd3\x16\x26\x04\x4d\x08\xf4\xb3\xe5\x24\x32\xe1\x56\xb2\x53\x32\x35\x6e\x29\x21\xee\x50\xe6\xfb\x4f\xc5\x13\x0c\xec\xcb\x0d\x13\xd2\x3b\x92\x43\xb8\xef\x72\xff\xa6\xdc\xf6\x66\x02\xc7\xd5\x83\x4e\xf7\x0b\x6a\x08\x0b\x3a\x37\x87\x59\x04\xe5\x10\x7c\xa4\x53\x8c\x0f\x59\xb5\x10\x2e\x14\x26\x04\x2a\x5c\xaf\x23\x44\xb5\x05\xcd\x98\x39\x6a\x42\x20\xb9\x44\xd3\x89\xd3\xe1\x84\x5f\xf7\x65\xd2\x67\x4c\x96\xa3\x2f\x23\x1a\x24\x57\x5a\x11\xb2\xe4\x0a\x04\xcf\x3f\x3f\x4c\xe0\xf4\x36\xe9\x7c\x65\xb7\x8a\xb0\xf7\x78\xc8\xca\x41\x3d\x5e\x82\x7e\x9e\xe2\x9a\xfa\xe4\x03\x84\xdf\x71\xeb\x56\x8f\xd8\xef\x9e\x06\x3e\x76\xe6\x29\x36\xcb\x4c\x82\xd4\xf0\xec\xb8\x6d\xb7\x5a\x09\xef\xdb\xb6\xc4\xf6\xbd\x2d\x24\x94\x53\xae\x0f\xcb\x8b\x97\x84\xb4\x23\x5f\xa5\x97\x1c\xab\x21\x2c\xe2\xf8\x7b\xc2\x95\x11\x4a\x88\xb1\xdd\xd9\x72\x83\x3b\x8a\x30\xcc\x63\x93\xf5\xac\xef\x34\x41\x7a\xe0\xef\x52\x05\xb3\x50\x02\xe7\xde\x33\xe1\xc2\x15\x86\x84\x89\x12\x4b\xb3\xb6\x42\x6e\xc2\xcc\xf3\x2c\xfc\x42\x7e\xca\x04\xef\x04\xed\x10\xdd\x8f\x0c\x82\xd4\x3c\xbe\x20\xde\x7f\x02\xd3\xf0\xe6\x25\xff\x2d\x5f\xb1\x2d\x84\xb3\xfd\x1e\xeb\xf9\x7f\xdd\x24\x6c\xea\x3a\xf1\xfd\xcf\x52\x17\xc2\xc1\x16\xcb\x0f\xc9\x83\x3b\x09\x1b\x02\x86\x83\x4b\x66\x3f\x60\x62\x77\x8f\xc0\xbf\xf9\xea\xc3\x0c\x68\xff\xdc\xfa\xe9\xe2\xdc\xb3\x34\x85\xf3\x63\xc5\x37\x56\x6c\x32\x26\x94\x6c\xde\xca\x61\x9f\xfb\x9f\x0f\x31\x30\xcb\x8f\x3a\xbf\x94\x70\x93\x3d\xbc\xc1\x70\xe1\x79\x42\xbd\xf3\x4e\x85\xa3\x86\x27\x09\x91\x8c\x3d\xb9\x8a\xba\x4f\x2b\xc0\x27\xf6\x90\x63\x01\xa7\x2a\x61\x9b\x53\x9f\xcc\xfc\x81\x2c\x26\x1c\x92\xfd\xe5\xe7\x6c\xb8\x41\xc8\x15\xd2\xfb\xf2\xfa\xcc\x25\x26\x5a\xd3\x73\x74\xba\x52\x57\x12\x2e\xbe\x5f\x19\xa0\x7f\xb4\x81\x10\xe4\xe0\xb9\x34\x51\xe8\x3e\xa1\xec\xb4\xaa\x51\xd7\x9f\x57\x04\xeb\xc4\xb1\x27\xd2\xcd\x15\x04\x59\x33\x37\xb6\x6f\x3f\x27\xaf\xfc\x0a\x51\x1d\x71\x2a\x31\x4c\x08\x47\x64\x7a\x57\x7c\x6f\x26\x3c\xc9\xfb\x14\x5d\x36\x89\x61\x46\x44\xb6\x5e\x4e\x15\x41\xce\x62\x9d\xe0\x62\xad\x4f\x0c\xcc\x79\x7c\xad\xd9\x96\xd5\x89\xa6\xf0\xd0\x6c\xcb\x0b\x1f\xfd\xe9\x65\x49\xb1\xbe\xc6\x1c\x19\x91\xff\x86\x63\xc5\xf2\x0a\x1e\x6a\xcd\x0c\xac\xb1\x13\x0b\x5b\x72\x4f\x91\xa6\xc0\x55\x6d\x7f\x6e\x96\xb1\xed\x34\x88\x27\xa6\x97\xde\x2b\x95\x25\xdc\xac\x49\xe5\x2b\x51\xdd\x45\x10\x3a\xe4\xad\x36\x61\x67\x4c\x60\x7c\x14\x6b\x88\x6d\x25\x42\x59\xa8\xc3\x8d\xc6\xb3\x77\x09\x0d\x96\xd5\x2a\x17\xbe\xdc\x25\x3c\xf2\xed\xf8\x91\xa3\xf1\x90\x70\x6f\xcd\x5a\xe3\xbb\x66\x2f\x98\xb0\xec\x0c\x66\xbb\x38\x39\x1a\xad\x7c\xa3\xc9\x7a\xc1\x8b\x70\x32\xb4\x65\xec\xf7\xfa\x7b\x4c\x3c\xf3\x57\x5c\x7e\xcf\xde\x87\xa6\xb0\x5b\xda\x21\xfa\xe3\x85\x02\x42\xd6\xcf\x7f\x17\xc3\x59\x0b\x98\x58\x71\xdd\xc4\xe5\x53\x71\x39\x13\xd7\xf9\xda\xd5\x54\x83\x2e\x13\x22\x62\x47\x79\xb7\xc4\x32\x09\x0e\xe3\xaf\x5f\x8c\x6c\x8f\x21\x64\x24\x2f\x6d\x9a\x53\x69\x4f\x68\xdf\xc8\xf6\xf0\x30\x5f\x28\xa1\x8e\xe1\xfa\xac\xc1\xf1\x30\x13\x92\xec\x91\xcf\xd8\x73\x1c\x09\x8f\xdf\x2e\x7f\x54\xc3\x53\x4e\x30\xb0\xe5\x5f\x78\xfd\x89\x26\x21\xbb\xb0\x55\x77\x44\xf2\x05\x61\x87\x43\x2d\xbb\xc6\x95\x16\x82\x0e\xf3\x19\x43\xf8\x5b\x3e\x61\xdb\x9f\xdc\x5f\x3b\x6d\xde\x10\x8e\xbf\x34\xb7\x32\x9c\xc4\xf6\x57\x46\xcb\xe4\x58\xac\x09\xf5\x16\x4f\xbb\x3a\xdb\xe2\x09\x83\xab\xd2\x14\xa5\x5c\xec\x98\xe8\x78\x58\xec\x38\x63\xdc\x9a\x90\xee\x77\x32\xce\x6a\x9f\x2b\x61\x56\x66\x5f\x72\x93\xdf\x46\x82\x62\x8f\x82\xfc\x62\x67\x25\x82\xf4\x03\x47\x6d\xae\x5d\x1b\x09\x76\x43\x6d\x67\x95\xe6\xd7\x12\xe4\xa2\x5d\xca\xfa\x9f\xa5\x13\x1c\x55\x4d\x2c\x8e\x9d\x4f\x27\x68\xae\xe0\x49\x92\x8b\x3c\x49\xf8\x53\x2a\xe3\xf3\x9f\x91\xd9\xde\xb2\x7d\x6c\x25\x99\x04\x96\x79\x0c\x71\x5a\x70\x93\xb0\x67\xfe\xdb\xb5\xd1\xdb\xe3\x09\x2c\xcc\x44\xbe\x8d\x7a\x3e\x84\xba\xca\xec\x8e\x6d\xc5\x9b\xa7\x41\x48\x46\xe1\x55\xe8\x93\x9e\x0a\x08\x74\x1d\xbc\xb5\x6d\x43\x24\x21\xf3\x83\x99\xc2\x73\x79\x6b\x42\xd4\x83\x53\x4b\x7a\xb3\x42\x08\xc7\x5e\x8c\xbe\x6a\x28\xbe\xc9\xc4\xea\x5b\x11\x1d\x7e\x36\x05\x84\xba\x95\x8e\xe6\x9f\xdc\x0b\x08\xf1\x4a\x2f\x65\x9c\x02\x96\x10\x66\x69\x69\x36\x9f\x0d\x8a\x67\xc2\xed\x82\xb0\x31\x7f\x3d\x0f\x21\x79\xf4\xfa\x59\x95\x35\xdc\x04\x29\x89\x26\xb6\xdd\x43\xe7\x08\x0f\xd4\x8c\x8f\x79\xda\x89\x12\xc2\x77\x3e\xe7\xde\x10\x20\x4c\x38\x72\x28\xf4\x60\xe5\xde\xdd\x84\x9f\x9d\x4f\xce\xcc\x4f\x32\x21\xb4\x34\xa8\x9d\xaf\x76\xe0\x25\x18\x08\x56\xe7\x35\xaf\xbc\xc8\x44\x42\x6e\xec\x41\x9e\xd2\xc9\xfb\x81\xc0\xfa\xaf\x6f\xc2\x0d\x09\x9f\x96\xbb\x2e\x5e\xac\xdd\x48\x50\x29\x96\x6e\x7b\x9d\x1a\x4d\x68\xe0\x4a\xe6\x8b\x9b\xfc\xd7\x0a\x0e\x35\x5e\xda\xa2\x52\x45\xf0\xca\xeb\xec\xa8\xef\xb3\x27\x5c\x70\x2d\x3c\x79\x7a\x12\x4f\xbd\xdd\x17\xcb\x52\x2c\x61\x3d\xdf\xd2\xe7\x2f\x1e\x3a\x10\x72\xbb\xda\xfc\x63\xe6\x86\x10\xfc\x2f\xad\x75\xba\x9d\x75\x92\xc0\xbe\x28\x65\xdd\x8d\xb7\xfa\x84\x60\xf9\x25\x69\x3b\x16\xa7\x33\xe1\xd9\xbe\xd5\x69\x8f\xfa\x5b\x82\x9e\xc2\x90\xbf\x46\x6a\x07\x13\x1c\x92\x6f\x6d\xf9\x96\xbc\x25\x68\xd7\x3d\x31\x6f\xb9\xff\x8c\x70\xef\xc2\xd7\x46\x37\x46\x0e\x13\xdf\x8b\xf6\x49\x1c\xb9\x5c\x48\x18\xf6\xeb\x28\x9a\x5b\x59\x48\xf0\xee\x33\x5b\xbe\xc1\x53\x8a\xe0\xd0\xc6\xba\xe1\xf8\xa3\x9f\x0c\xd4\x1a\xc7\x17\x7c\xdf\x2d\x40\x78\xd7\xcd\x55\x2f\xbd\x7b\x29\x41\x98\x29\x59\x54\x52\x63\x4d\x60\x5f\xb2\xaa\x4f\xf9\x68\x31\x41\x2d\x8f\xf3\x3b\xbb\xf5\x0d\x82\x99\x67\xfe\xdd\xb2\xbb\xb5\x84\x4f\xa3\x87\x4e\x95\x4f\x62\x80\xd3\x49\xee\xce\xde\xfd\x84\xcb\x09\x91\x2f\xe5\xfe\x46\x10\x02\x6d\x17\x5d\xda\x75\x36\x74\xda\xa8\x60\xf5\xdd\x4b\x5c\x97\x9d\x08\x63\x3f\x22\x68\xe1\x69\x27\xc2\x8b\x97\xea\x3e\x4e\xaa\x2c\x84\x9e\x9a\x4d\xf9\x31\xa5\xb7\x09\x8b\x92\x6e\xbd\x65\x64\xdf\x21\x88\x37\x14\xcc\xff\x4f\xb9\x5e\x7b\xc1\xe2\x6c\x63\x02\xe1\xef\x2f\x8d\xee\xfd\x8b\xaa\x09\xdf\x34\x4a\x78\xef\x0a\x1e\x61\xc2\xd2\xa5\xea\xd4\xc6\xcf\xe5\x04\x7d\x9e\x58\x6f\xfe\x5c\x3b\x26\x22\x8e\x49\x58\x3d\x8c\x6f\x60\xc0\xf7\xea\x37\xb3\x7d\x06\x97\x68\x0a\x2b\x1c\x67\x0e\x7d\x9a\x99\x42\x08\xf3\x29\xe0\xac\xda\x30\xf9\x4b\xab\x33\xcf\xc5\xf2\x9f\x98\x86\x27\x1a\x7d\x72\x8f\xbd\x9d\x09\x7e\x52\xdb\x39\xee\xe8\x1e\x22\xb8\xdf\x30\xf0\xcf\x0b\xc8\x26\xbc\x4e\x59\xff\xb9\xc8\x70\x3e\x81\xfb\x90\xcc\xe7\x33\x27\x6c\x08\xf6\xab\xbf\x3a\x46\x5e\xda\x42\x30\xab\x8e\x8b\x61\x3e\xde\x48\x60\xd1\x39\xa1\xf5\x67\xf2\x7e\xe9\xfd\xe3\x87\x50\xe3\x45\x33\x26\x02\xba\x7f\xb4\x48\xf5\xf2\x10\xd6\x31\x0d\x5d\xce\xc6\x06\x13\xba\xce\xf8\xf2\x1e\xbe\xc4\x4a\xf0\x3d\x67\xe7\xf9\xce\x55\x96\x70\xcf\x73\xb0\xc8\x32\x57\x96\x20\xaa\xb5\xce\xb2\xd8\x73\x29\xa1\xb8\x63\x46\xdd\x46\x73\x29\x82\xd0\x25\xa1\x27\xff\x1a\x26\x4f\xc4\x66\xfa\x23\xfc\xbf\xde\x33\xd0\x6d\x27\x16\x46\xbd\xea\x84\x5b\x0b\xce\xb9\x8a\x2a\xe8\x13\xe2\x0e\x9e\x72\xd6\x28\x54\x23\x68\xc8\x38\x15\x9f\xce\x92\x20\x98\x96\xa6\x7a\x4d\xf0\xce\x26\xa8\x2c\x29\xbf\xba\x21\x48\x88\xb0\x76\x46\xf3\x40\xb2\xd4\x39\xc2\xd0\x68\x6c\xf5\x08\x9b\x32\x61\x7b\x92\xdc\xc4\xb9\x3b\x63\x0c\x48\x35\xe5\x79\xb6\x24\xaf\x26\x68\x99\x78\x19\x26\xac\x29\x25\x64\xec\x9f\xe3\xf2\x77\xc1\x38\x03\x9f\x10\x34\xf3\xd3\xe4\xd6\xad\x9a\xf4\xe2\xd1\x17\x6b\x1d\x82\xbc\x79\x51\xd5\xaf\xc2\x4e\x06\x92\x52\x66\xbf\x0b\x75\x8b\x61\xc2\x35\xaa\x45\xa2\x44\x61\x0f\xc1\xe1\xd5\x61\xd7\xa0\x2b\x3e\x4c\x7c\x11\x0a\x7e\xb2\x22\xb5\x9b\x09\xfd\x7c\xab\x89\xb7\xad\xf9\x84\xab\xec\xc6\xfb\x99\x6e\x1b\x09\x6a\x4b\x32\x6f\xbe\xbb\x76\x9b\x09\xae\x1d\xdf\xa4\x1a\x0f\xdd\x23\xf4\x9e\x37\x68\x3e\x94\x59\x4d\x10\x0e\x59\x48\x0d\x93\xc5\x76\xe5\xd1\xaa\x16\x97\x58\x82\x81\xcd\x82\x0d\x37\x44\x1a\x09\x6c\x5c\xd7\x1f\x5d\x8b\x6f\x20\xb0\x27\x68\xb7\x0f\x8f\x3d\x21\xd4\xd7\xd7\x16\x24\xc6\x36\x10\xba\x72\x79\x0a\x4f\x57\x36\x10\xee\x2a\x45\xbe\xf6\x10\xba\x4a\x28\x31\x5e\xc3\x1a\xbf\xcf\x91\x10\x59\x16\x7e\xc3\xe4\xf3\x15\x82\xc6\x45\x4d\x31\xc5\x8e\x7b\x04\x8b\x1e\xe7\x7f\x56\xa7\xc2\x09\xd2\x4f\x0a\x54\x3d\xe3\x24\x08\x22\x19\x86\x1f\x0d\x26\x6f\x30\x31\x1d\xdf\x2c\xb3\x7f\x9f\x24\x3c\xcc\xee\x99\xd5\xc0\x90\x27\x04\x73\xcf\x5e\xbb\x6b\xdb\x4d\x26\x9e\xc8\xc7\x5f\x5b\xa0\x9f\x4e\x30\x49\xed\xcc\x36\xd3\x4b\x27\xa8\x2a\x7f\x14\x62\xdf\xb3\x95\xc0\xb1\x7e\x87\xd0\xab\x88\xf3\x84\x3f\x5b\x5a\xfb\x5e\x86\x7c\xa8\x80\x51\xdc\xab\xd6\xd7\xc6\x7a\xf4\x7f\x18\xb7\xd8\xd2\xb8\xfd\xf4\x3b\x06\xb6\x0d\x05\x14\xa9\x5d\x73\x66\x62\x9d\x74\xdc\xa1\xa7\xb5\xbb\x09\x5a\x2a\x45\x17\x6f\xcd\x6e\x62\x60\xcf\x1b\xfe\x65\xee\x1a\xda\x84\x56\x95\x6b\x3c\xfe\x25\xcb\x09\xd9\xf5\x4f\xd7\x34\x1a\xc9\x10\xbc\x7c\x5d\x9c\x07\x2c\x18\xd3\x10\xfc\xb7\xd2\x2d\x43\xd9\x6d\x1a\xe4\x2d\xbf\xf2\x28\xcc\xf7\x24\xb8\xcf\x58\xb1\x6a\x60\xcf\xf9\x0a\x48\x0d\x5e\x7e\x78\xa9\x43\x93\xfe\x17\x9a\x66\x79\xeb\x3b\xd7\xf2\x10\x6c\x83\x1d\x1a\x32\x4c\x5f\x32\x30\x67\x4b\xe1\xcd\x25\x13\x26\x84\xf4\xdc\x67\x33\x04\x9a\x75\xff\x27\x16\xa5\xc8\xda\x5f\x0c\x95\x23\xa8\xb8\x1d\x29\xef\x89\x9d\x4d\x38\x29\xdf\x38\x63\x75\xa6\x20\xc1\x63\x56\xf2\x98\xfc\x89\x8e\x0a\xf4\x3f\xd1\xd2\x50\xf7\xeb\xaa\x80\xe8\xcd\xbe\xe0\x3d\x3e\x3b\xe8\x7f\xc1\x5f\xa5\x63\xb3\xcb\xad\x85\x84\x8e\x2b\x05\xad\x4f\x1d\x14\x09\xbe\x79\xd9\x02\xe2\x51\x2a\x84\x35\x7c\xdb\x74\xda\xd3\xf2\x09\xf9\x30\xe4\x3a\xe8\xe3\x48\x50\x73\x7d\x3e\xb6\xf7\xe4\xbe\x69\x25\xac\x5f\x98\x47\x22\xd6\x94\x90\x75\x7c\x9b\xf9\xc1\xad\x4b\x09\x91\x19\xe6\xce\xa7\x0f\x5c\x27\x14\xf2\x78\x2f\x80\x5d\x25\x21\x74\x6e\xed\xdb\xff\x94\x8a\x10\x4e\xa1\x3f\xa9\x65\x04\x2d\x75\xbb\x1b\x49\xbc\x15\x84\x4f\xcc\xc2\x17\xff\x29\x39\x8f\xde\x6f\xd3\x59\xe3\x41\xc8\xda\xda\x77\xdc\x76\xec\x3a\xc1\x57\xe5\x53\x7b\xb3\xdd\x1e\x42\xfa\xc9\x5d\xfb\xfb\x8f\x5b\x12\xe2\x1f\x67\xea\x57\x26\x1f\x9a\x56\xcc\xd9\x2d\xd8\x56\xd4\xda\x10\xd6\xf7\x9c\xa8\xcd\x14\xd9\x42\x30\xce\x33\x64\x69\xb6\xad\x64\x62\xd8\xd1\xe5\xc7\x53\x93\x32\x42\x86\xf6\xde\x4d\x09\x3e\x1e\x84\xc5\x02\x75\x5d\x0f\x66\x14\x10\xae\x5e\x79\x36\xff\xc1\xbc\x9b\x04\xf9\x8f\xa1\x61\x35\x93\x45\x75\x5b\xc1\x86\xa3\x51\x55\x84\x8e\xb6\xec\x79\x46\x0f\x02\x08\x9b\xd4\xf2\x2e\x7e\x31\x4f\x23\x24\x75\x1e\xfa\xde\x69\xb0\x91\xc0\xa3\x65\x21\xed\xf3\xbe\x9f\x81\xe5\x9a\x9a\x92\x89\xec\xb1\x84\xf9\x9c\x7d\xd5\x23\x1b\x62\xa6\x61\x25\xbf\xab\xea\x3b\x63\x0d\x82\x97\x7b\xa7\xcd\x68\x10\x2f\x61\x28\xbe\xd6\xf2\xb6\x86\x32\x21\x7b\xd3\x9f\x8f\xf6\x42\x07\x08\x5f\x38\x9f\x57\x26\xde\x88\x22\x84\x1d\xfb\x72\xf2\x77\xf8\x5d\x42\x88\xc7\xdd\xa0\xe1\xc0\x1d\x04\x6f\x87\xbd\xca\x5c\x63\x02\x04\x8b\x03\xda\xe7\x1a\xbe\x95\x11\xfe\xb4\xf8\x86\xfc\x18\xde\x45\x30\x72\x8c\x8e\xf7\xb0\x18\x64\xa0\xc1\x8e\xf7\x81\x51\x90\x15\x21\x41\x76\x56\x59\x80\x5f\x30\xe1\x4f\xb2\xd5\xa0\x9d\x92\xfc\x34\x14\x47\xb0\x5c\x1e\xf8\xc6\x49\x38\xe3\x92\x75\xb3\xf1\x52\x53\x05\x4e\x9c\xbe\xbf\x7b\xbe\x10\x37\x41\x3f\xe0\xf9\xf0\x3e\x1e\xb1\x69\x48\x2f\xd9\x91\x36\x62\x5a\xc7\x40\xe9\x68\xab\x44\xec\x17\x6f\x42\x2d\xc5\x94\x3b\x94\x6e\x26\xfc\x92\x3b\x6f\x70\xdf\x86\x97\x20\xb1\xf3\x60\xde\x3d\xd7\x93\x4c\xac\xee\x90\x6b\x76\x90\x15\xa7\x29\x74\x48\x05\x74\xed\x88\xd8\x3f\x0d\xce\x6e\x6f\xb9\xd3\x8f\x4f\x5e\x0b\xaa\x0b\xd6\x27\x2f\x29\x63\x60\x6f\x46\xf7\xfb\x24\x21\x71\xc2\x5c\xeb\x66\x1e\xde\xdc\x26\xe6\x78\xf0\x4a\xe1\x6f\x27\x92\x98\x53\x93\x75\x5f\xbf\xf6\xa6\xe4\x77\x33\xa6\xe0\x6d\xba\x54\xa6\xb8\x3d\x92\xa6\xd0\x10\x3f\xae\xc2\x26\x60\x47\xd8\xf6\xe5\x51\xd9\x93\x21\x0d\xc2\x88\xfb\xb1\x9a\x17\x71\xb1\xd3\xd0\xe4\xc9\x88\x7e\xd8\x66\x43\xf0\x48\x7a\xb2\x68\x4d\x4e\x11\xe1\x4b\x5f\x82\x20\xff\xf7\x5b\x84\x4b\xc5\xf2\xfb\x86\x7d\xad\x08\x01\xb2\x46\xb3\x37\x06\x1a\x13\x82\xda\x14\x3b\xd7\x5d\x34\x22\xe8\xc5\x14\x85\x72\xea\xf4\x33\x10\x62\x7f\x69\x36\xee\x35\x30\x30\x14\xe8\xe7\x12\xfb\x67\x36\x4d\x41\x55\xf4\x5f\xfe\xcd\xaf\xa3\x0c\x9c\x3d\x29\x77\xe1\x6c\xa7\x0c\x21\xae\xf7\x22\x3b\xeb\x44\x01\x61\x5f\x4f\xea\x78\xf2\xe6\x35\x04\x3b\x0d\x87\x97\xa1\xeb\xc5\x09\x91\xdd\xbf\xde\xbe\x6c\xe0\x25\x34\x1e\x7f\xb1\xe6\x65\x83\x36\x61\xc2\x49\x7a\x07\xa5\x4b\x12\x7c\xc4\xcd\x16\x66\xbb\x38\x13\x7c\x0b\xcf\x88\x55\x6c\x38\x3c\x0d\x8a\x1b\xe7\xee\x2a\x5d\xb3\x92\x20\x7d\xab\x6d\xef\x65\xc7\x6b\x04\x53\x5f\xb9\x0f\x66\xf3\x4f\x11\x14\x7e\x3b\x39\xdb\x32\xb4\xa7\x41\xce\x7a\x70\xae\xef\xdd\x31\x06\x0a\x6e\xc8\xe9\x49\x29\xca\x12\x56\xdc\x0e\xea\xd6\x3e\x9a\xc7\xc4\xc8\xc4\x82\xc5\x8a\x93\xbb\xe1\x1e\x97\x9f\xdf\x42\xcc\xb9\xa6\xa1\xee\x6f\xc5\x13\x95\x23\x6f\x2b\xb0\xd1\xdd\x60\xcc\x25\xa3\x82\x20\xaf\xdb\x17\x7e\xf4\xcf\x5b\x06\xf8\x74\x16\xa3\x70\xf5\x0c\x9a\x82\x3e\xd7\x6d\x96\x3c\xeb\x21\x06\x22\x6b\xe2\x02\x0e\xef\xda\x44\xb8\x7a\xc2\x46\xc5\xb7\xed\x28\xe1\xda\xab\x93\x42\x72\xf7\x27\x18\x88\x7e\xd8\xfb\x6d\xfd\xb1\x2f\x0c\xdc\xf8\xc0\xdc\xac\x24\xa5\x49\x48\xba\x54\xce\x2a\x79\xf7\x31\xe1\x25\x47\xec\x2b\x89\x49\xac\xa8\xb4\xb8\x7f\x7b\xe2\x34\x41\x87\x35\x49\x92\x73\xc5\x0d\x42\xac\x86\x9a\xd1\x81\x63\x7f\x19\x53\x18\x66\x8c\x7d\x36\x28\xe7\x20\x5c\x0c\x52\x2d\xdc\xc4\x6e\x4a\x90\x8f\x81\xcf\x2f\x81\xa5\xd3\x70\x29\x74\x28\x7d\xb0\x81\x83\x70\x24\xfc\x90\xce\x19\x01\x53\x42\xd2\xed\xc5\xed\x4b\x27\x4f\xb4\xd6\x71\xfe\x9d\xb3\x33\x3a\x08\x92\x12\x7c\xe1\x2f\x1c\xad\x09\xc6\x29\xf3\xf8\x15\x95\x16\x13\xb8\x64\x86\x38\xab\xdf\x73\x4e\x83\xe7\x7c\xfd\xf5\x37\x2e\x65\x57\xa0\x56\x47\x28\x30\x4c\xa0\x96\x70\x7f\xa9\xe5\xcd\xcc\xf1\xf5\x84\x44\x81\x47\x0f\x2f\x99\x6b\x11\x84\xcb\x0c\x2a\x75\xf9\xee\x11\xce\xe9\xf4\x9d\x99\xdf\x71\x94\x09\xef\xbe\x75\xf7\x6d\xae\xe9\x11\x9a\x7e\x5e\xf7\x7a\xe6\xa2\x4d\xb0\x0e\x63\x6d\x34\xbd\xaa\x47\x60\xad\x30\xe6\xba\x6d\x25\x4d\xd8\xd7\xee\x26\x57\x66\xcf\x4f\xc8\xe5\x3e\x7f\x71\xe5\xb3\x04\x82\xab\x57\xbb\xd6\x35\xc3\x2b\x04\xc5\x8c\xbb\x23\x1e\xad\x95\x84\x79\x29\xbf\x58\x62\xd7\x17\x11\x0c\x77\x0d\xf7\xc5\x84\x55\x13\x36\xc4\x5d\x9b\xff\xbe\x62\x2f\x21\x33\x04\x97\xdd\x5e\xac\x21\x0c\x15\x58\x76\xca\x9c\xe2\x24\xd4\x05\x1b\xac\x59\xb1\xce\x9a\x30\xcf\x43\xf9\x9e\xd5\xde\x72\xc2\xf8\xd6\xe5\xcb\x3c\x6a\x9f\x10\x0e\x9a\x79\xd9\xeb\xc5\x84\x13\xae\xcd\x74\xf1\x7b\x99\xbe\x75\x1a\xdc\x3f\x3c\xdd\xbb\x55\x90\x8d\x70\x25\xda\xf1\x8d\x62\xc9\x3e\x42\x6e\x9b\x1f\xb5\xcf\x48\x63\x82\x53\x77\x86\x51\x55\xcc\x56\xc2\xee\xf3\x83\x7f\x42\x5c\xff\x32\x90\xf5\xcc\xc9\x76\xeb\xfe\xaf\x0c\xa4\x7d\x48\x18\xcc\x16\x53\x22\xdc\x3c\xbb\xbb\x33\x69\x6f\x13\x03\xff\xd6\xad\xe5\xd8\x3f\xb2\x8e\xa6\x20\x23\x9b\xb9\x2f\x56\xc0\x91\x20\x97\x7b\x64\xc5\x7c\x1f\x76\x42\x4e\x20\x6f\xcc\x73\xbf\x0d\x04\x31\x6d\xa5\x16\x91\xaf\xea\x84\xab\x87\xd2\x1f\x47\x6e\x9b\x60\xc0\x23\xa5\xe5\x76\xf2\x7c\x09\x42\xec\x47\x09\x0f\x85\x6e\x43\xc2\x5d\x81\xe0\x19\x0b\x77\x17\x10\xda\xe6\x84\xcc\x95\x77\x38\x40\xc8\x17\x7f\xa5\x54\x55\x71\x89\x89\xe3\x9b\x54\x0a\xfe\x26\x9a\x10\x7e\xcd\x7d\xba\xc6\x9c\xd7\x82\xf0\xb2\xf5\xec\xd6\x8b\x3a\xeb\x08\xe6\xfe\x99\xd4\xa3\xd4\x41\xf0\x1d\xd8\x60\xac\x27\x57\x4f\xb0\xd2\xbd\xb9\xef\x4d\x8f\x13\x61\x76\xee\xad\xbb\xbe\xcf\x9a\x09\x07\x4c\x9b\xaf\x9d\x7d\x23\x46\x18\x6e\x5f\xa3\xdd\xb9\x47\x87\xf0\x36\x86\x4f\xb1\x64\xf7\x7e\x82\x8c\x1a\x5f\xd8\x43\xf3\x25\x84\x86\xb7\x5f\x6d\x96\xe4\x98\x11\x8a\x58\x7f\x98\xed\x74\x5f\x4f\x90\xbc\xe8\x2a\x21\x76\x42\x9e\xf0\xf0\x6e\xda\x3b\xf5\x15\xb7\x09\xe7\x1e\xd7\xfd\x79\x6c\xb9\x87\xf0\x63\x50\x43\x4e\x30\xe6\x26\x61\x0d\x4f\x7b\xdb\xaa\x47\x29\x84\xb3\x57\xc3\xb9\xf5\x9c\x57\x11\xe6\x9f\x09\x3e\xf3\x70\xd9\x55\x82\xed\x82\xde\x8c\x00\xd6\x12\x26\xae\x0d\xb4\xf7\x77\x88\x5b\x10\xcc\xce\x7e\xbc\x55\x38\x4f\x97\x10\x15\xfb\xcb\x9f\xf1\xe6\x25\x03\xf5\x82\x81\xb3\xbc\x44\xb9\x69\x0a\xeb\xa2\xdf\x94\x88\x5c\x6b\x60\xe0\x4e\xfa\x0f\xeb\x9c\xcd\x5a\x84\x47\x3f\x94\x5a\xaa\x97\xc6\x11\x3c\x56\x09\x97\xf4\x2d\x93\x63\xe0\xf6\x68\xb0\x24\xdf\x88\x39\x4d\x61\xfe\xe8\x9d\x93\x63\xfc\x73\x08\x22\x2b\x7b\x7a\x35\xdc\xbb\x18\x50\xfd\xbd\xd4\x30\xaf\x6a\x27\xa1\x72\x6f\xd7\x89\xb1\x76\x7d\xc2\x87\xab\x43\xbe\x1e\x31\xf7\x69\xdc\xad\xde\x76\xcd\xd7\x58\xc2\x86\xd7\x21\x5c\xf2\xd7\x44\xa7\x41\x7e\xbd\x0b\x8f\x46\x5c\x6d\x05\x7c\x8c\xeb\x85\x85\x44\x64\x08\xda\x6f\xf5\x24\xd8\xfc\xb4\x08\xf2\x4b\x34\xba\x0e\x28\xad\x22\xf8\x6a\x9c\x94\x77\xee\xd5\x27\xa4\xf3\x2e\x3a\xa3\xa3\xa7\x46\x78\xf6\x74\x4d\x8d\xd1\xdb\x7f\x0c\x6c\xfd\x5a\xa4\xce\x25\xd8\xc6\xc0\xda\x7a\xb6\x25\x7b\x34\xb6\x11\xd6\xa4\xff\x7a\x31\xe0\x7b\x9b\xe0\x7b\x60\x5e\x95\x6f\xe3\x15\x82\xd5\x60\xa3\xa4\xab\x71\x1c\xe1\xce\x9f\xfc\x85\xce\xe9\x96\x04\x7a\xb6\x12\x01\x27\xce\x12\xa8\x8d\xb3\x6c\x8f\xae\xf1\x7f\x83\xc6\x26\x79\x85\xe8\x8d\xac\x04\xb6\x57\xa9\x3e\xfc\xaa\xae\x84\x18\xde\x60\x65\xa6\x90\x2e\xe1\x87\xc4\x87\x25\x33\x2c\xcc\x08\x1b\xdf\x66\x97\x07\x8b\xef\x20\x7c\xd0\xd0\x49\xb5\xf8\xc3\x42\xd8\xc1\x48\x92\x5d\x61\x24\x4b\x38\xf1\xa3\xec\x95\xc3\x67\x8e\x69\x50\xf6\xf9\xed\xda\xae\xcb\x32\x0d\x06\x5b\xf9\x59\x36\xa8\xcc\x20\x2c\x39\x94\x15\xfc\x31\x37\x86\x70\xb9\xe5\x21\x9b\x83\x58\x21\x61\x4b\x43\xf2\xac\x81\x18\x5d\xc2\x81\x81\xad\x96\xdc\xda\xb7\x09\x6b\xcd\x45\x4f\x7c\xa8\x0a\x21\xc8\x35\x78\x48\xb4\x5f\x39\xc4\x44\x4f\x85\x4f\xd1\x8d\x7f\x17\x08\xa3\xac\x1f\x03\x14\xc7\x5d\x08\x8b\xf9\xff\x32\x9a\x02\xae\x11\x5a\xde\x06\x5f\x8f\xd3\xbe\x4c\xe0\xce\x31\xf3\x0a\x75\xbc\x40\x38\x57\x57\xf8\x72\x49\xd3\x4e\x42\xfb\x2a\xcb\x61\xfd\xef\x73\x08\x3d\xdb\x59\xcb\x83\xae\x0c\x33\xb0\x70\x95\x7c\x3b\x4f\xfc\x67\x42\x81\xef\x8f\xfa\xdc\x65\x61\x84\xf8\x59\x87\x78\x37\xf7\xd4\x13\xda\x6c\xa5\x47\x1c\xf6\x3c\x24\x6c\xbb\xb0\x72\x27\x53\xe9\x3c\xe1\xee\xa2\x2f\xf2\x97\x0f\x47\x33\xb1\xbe\x3a\x46\x63\xa6\x6d\x2c\xa1\x27\xed\xee\xce\x10\x66\x1d\x21\x89\x51\x79\xfa\x52\x49\x39\xe1\x94\x55\x06\xa7\x99\x68\x2a\x61\xde\xda\xd1\xeb\xf9\xe7\xae\x33\xe1\xd9\xc7\x7a\xc3\xf5\xf9\xe4\x43\x79\x58\x4d\x27\xe3\x75\x11\x8d\xaf\xf0\xca\xcc\xad\x17\x23\xc4\x46\x2c\xd2\x5c\xfa\x30\x8d\x50\x1e\x66\x11\x6b\x9e\x9f\x49\xf0\xad\x5d\xbf\x7b\xbd\x35\x1f\x41\x35\xf8\xbc\xf9\xfd\xc9\x13\xe0\xf5\xf7\xf7\xa5\xc5\x37\xce\x25\x54\xa5\x7d\xb4\xc8\x14\x8c\x21\x9c\xc4\x81\x9f\x33\x83\x72\x09\x4b\xea\x93\xec\x37\x7f\xdf\x42\x98\x57\x13\x19\x21\x66\x58\x44\xb8\xac\x72\x71\xcf\x31\x75\x2f\x26\xd6\xbc\x49\x93\xfe\x26\xbf\x87\x30\xf6\xf3\xd4\xc5\x94\x63\x33\x08\xed\x3c\x39\x46\x9e\xdd\xb5\x0c\x3c\xff\xdb\x6d\x52\x96\xcd\x4a\x53\xe8\xba\xdc\x14\x5c\x75\x7c\x25\x61\x9b\x87\x9a\xe8\x9e\x19\x87\x09\x36\x5d\x36\x6f\x7d\xaa\xe6\x12\x46\xbf\xf7\x29\x18\x08\x48\x13\x38\x42\x34\xdb\x96\x8b\x47\x4f\xc3\xde\xbe\x8f\x61\xdf\xe3\x9d\x08\xb1\x5b\xc7\x72\x38\x96\xa6\x10\xca\xab\x14\x4c\xbb\x8a\x34\x08\x8f\x72\x56\xf2\xfe\x08\x54\x21\xcc\x7c\x76\xe3\xd6\x8b\x5a\x69\x42\xfd\xed\x47\x3c\xeb\x75\x43\x98\x98\x63\x17\xdc\xa0\x6b\xbe\x9b\xd0\xa9\xd4\xf4\x96\xe3\xa6\x36\x41\x3f\xcd\x99\xf7\x8f\x16\x37\x41\x31\xde\x9c\xe5\xa4\xde\x79\xc2\xf6\xbd\xfe\x7f\x53\x0f\x6a\x10\xd4\xc2\x2e\x19\x32\x3b\x56\x13\xdc\x06\xf7\x9b\x6f\x95\xb8\x49\xe0\x15\xbb\xb3\x78\x4e\x9b\x12\x61\xd6\xab\xc1\x4f\x33\xd6\xc5\x13\xdc\x64\xaa\xb4\x4d\x2a\xf3\x08\xf6\x6b\xe4\x06\x0e\x9f\x4d\x26\xf4\x46\xea\x3d\x72\x11\xbb\x49\xb8\x1c\xd9\xb3\x71\xb7\x7c\x35\x13\x46\x4b\xff\x8d\xb5\x16\x69\x11\xd2\xbc\x3e\xdf\x13\xfc\xcd\x20\x2c\xea\xdf\x72\x52\x22\xa4\x92\x20\x70\xf8\xce\xbd\x6b\x73\xee\x12\x34\x8f\x15\x2b\x47\xa8\x29\x13\x94\xb7\xef\x4c\x9a\x6b\x76\x97\xa0\xed\xf9\xe5\x97\xb5\x50\x3b\x13\xc3\xe1\x2c\x25\xc3\xea\x72\x84\xc7\xe7\x2f\x9a\xc6\x07\x0b\x10\x76\xbd\xdb\xef\x66\x73\x15\x0c\xb4\x2c\x08\xb4\x4a\x2f\x19\x64\xe0\xd0\xc6\x17\x15\x6f\x0f\xd6\x10\x06\x7f\x6f\xf3\xba\xbb\xec\x2f\x03\x4a\xf6\xbe\xbf\x15\xfd\x6e\x10\xd8\xdf\x99\xff\x19\x73\x5c\x37\x0d\xf1\x4d\x91\x75\x2b\x7d\x7f\x31\x70\xbd\x76\x16\xeb\xbf\xb5\xb5\x0c\x6c\x5e\x26\x60\xcf\x2b\xc9\x46\x53\x90\x61\xbf\xd6\xd2\xd7\xdb\x5a\x81\x98\x8b\xb3\xd6\xed\xf6\x5e\x48\x38\xbf\xdd\xed\x8a\xdb\x31\x1f\x42\xf2\xb1\x15\xe2\xdb\xae\x48\x11\xca\x6a\x02\xef\x15\xe5\x8b\x12\xbe\xff\xd9\x9f\x7f\x60\xbe\x39\x61\x76\x57\x0f\xb6\x08\xd8\x12\x16\xc7\x7f\x5a\x27\x81\x19\x04\xcd\xb4\x89\xfe\xf2\x9f\x0a\x84\x5b\x56\x3f\x9f\xac\xae\x13\x27\x58\x89\x8e\x9c\x3f\x52\xb8\x93\x90\xa5\xe2\x57\x23\xf0\x41\x88\x10\xa5\x55\xda\x3d\xea\x2a\x48\xc8\xab\x8b\x72\xfb\xdc\xfe\x93\x01\xdd\xcf\xf9\x2b\x5a\xc3\x66\x10\x64\x3d\x1d\xf6\xcf\xdb\x29\x47\xe8\xaa\x6f\x10\x0a\x30\xde\x47\xd8\xfb\x5a\x2e\xc3\x6a\xf2\x7c\xa6\xd4\xac\xb0\xd1\x7a\xb1\x0c\xfd\x2f\xbc\x95\xe4\x9f\xc7\xee\x58\x4c\xb8\xf3\xc9\xd9\x64\xf6\xff\x07\xb3\x17\x73\x70\x8b\x9f\xbb\x4d\xe0\x19\x67\x9e\xba\xae\x71\x85\xe0\x6b\xc4\x75\x3f\xa1\xc6\x86\xe0\xbf\x88\xfd\xbb\x7c\xc5\x15\x42\xff\xf0\x9e\xee\x8b\x66\xa6\xcc\xa9\xd1\x85\xde\xc7\xad\x69\xc9\xdb\x08\xb3\xdf\x5c\xc8\x4a\xae\x8d\x25\xcc\x51\x96\x8f\x30\xea\x0e\x67\x22\x93\x43\x3c\xe2\x47\xf0\x6e\x42\x4d\xbb\xe2\x45\x63\x57\x69\x02\x12\x45\xcb\x3f\xef\xb8\x4b\x60\x63\xcc\x98\x21\xfc\xb2\x90\x50\x39\xf2\x6e\xc4\xef\x53\x13\x13\xb1\xbb\x66\x67\xfc\x67\x64\x78\xa0\x73\x79\x95\xe7\x32\xc2\xa9\xca\xc5\xc6\x23\xa7\x4b\x08\x33\xdf\x5a\xf5\xbc\x6c\x0b\x26\xfc\x16\x89\x9f\x38\x21\x92\x45\xa8\x4f\x74\xed\xcd\xdf\x91\x45\xb0\xe0\xb7\xb5\x58\x46\xd7\x99\xf0\x9a\x19\x18\xfd\xc6\xef\x31\x13\x2d\x4d\x97\xfe\xe6\x4d\x8e\x62\xed\x9f\x5e\x88\xf5\x70\xfb\x6f\x28\x0f\xe2\x7f\xff\x56\xd4\x9d\x10\x28\x71\x29\xa4\xeb\xe0\xf4\xd1\x05\x97\xe3\xfc\x77\x7e\xc7\x10\x26\xc4\xb6\x7b\x87\x56\xa5\x4c\x2b\x6a\x69\xb5\xb3\xb8\x3e\x05\x12\x8e\x94\x22\xad\x91\x2b\x80\xa0\xb5\x45\x5f\xe9\xe4\xf1\x3e\x06\x98\x57\x58\xe7\x7e\xd8\xab\x40\x53\x10\xf9\x96\x72\x77\x7f\x08\x1f\x61\xd5\x66\x89\x26\x3e\xe3\x75\x93\x7f\xd5\xdc\xb7\xa3\x2a\x02\x84\xb2\xe1\xdf\xed\x1b\x3f\x69\x11\x7c\x64\x0f\x0b\x8b\x8a\x76\x10\xd8\xd4\x3b\xa4\x2c\x15\xf6\x10\x44\x5b\x57\x2b\xf3\x3e\x18\x62\x40\xdd\x4c\xbc\x52\xc6\x96\x9b\x60\xd7\x1b\x19\x7f\x78\x90\x85\x90\x71\xf3\x77\xa2\x9b\x1c\x1f\xc1\x32\x39\xdc\xf9\x69\xa1\x26\x81\x19\x75\xdb\xb5\xe5\xa9\x05\x21\x39\xf6\x4b\xe0\x53\x49\x19\xc2\x28\x87\x4f\xfe\xfc\x0d\xaf\x19\x70\xbc\xb7\x4c\x37\x34\xda\x93\x50\x74\x2a\xef\xd6\x57\xbd\x14\x26\xd2\xf5\xd2\xee\x55\x77\x3e\x25\x4c\x98\x8a\xc7\xd7\x4d\x42\xf9\xf9\x8b\x1b\xcc\x49\x7c\xe5\xe2\x19\xe1\x9a\x84\x51\xf3\x0e\xbd\xaa\x49\x3c\x32\xde\x6b\xd1\xc6\xb2\x89\x09\xaf\xeb\xee\x9c\x1f\x2d\x83\x09\xfb\xb5\xfc\xb8\xa4\x86\xf5\x08\x3a\x4d\xc3\x01\x5a\x23\x1b\x08\x27\xb5\xcf\x18\x45\x8a\x9f\x61\xa2\xee\xde\x02\x99\xb2\xa7\x2b\x08\xbb\x6c\xfa\xd2\xeb\x8f\x4a\x13\x56\x4c\x8c\x8f\x38\x44\xef\x24\xdc\x34\xa8\x48\x32\xac\x9e\x49\xf0\xfa\xf3\x78\xb7\x84\xf1\x12\x42\x71\xb3\x7d\x48\xfb\x89\xa5\x84\xc4\xad\xfe\xc3\x8b\xef\xed\x25\x3c\x2e\x47\x9d\xce\xd1\x85\x84\xf0\xc0\x0f\x1f\x9c\x38\x38\x09\xc7\x99\x66\xf5\xfa\x92\xc6\x84\xca\x2c\xd1\x76\xd3\xfd\xe6\x84\xa0\x4f\xdb\xc3\xfb\x22\x3e\x33\x10\x45\x19\x5b\x1f\x7d\xab\x21\x64\xfc\x3a\x9e\x33\x7a\x28\x83\x89\xcf\x4f\xd4\x5a\x3a\x18\x75\x4c\xac\x42\xb4\xd2\x7f\x46\xec\x19\xce\x98\x93\xa5\x49\xc8\xf5\xd7\x31\x8d\xdf\xc8\x4e\xf8\xb7\x48\xe2\x4b\x83\xb5\x14\x81\xdb\x8d\xc3\x64\x75\x6c\x3e\x73\xaa\xc0\x43\x4b\xd6\x7e\xbd\x14\xc1\xce\xf8\x5b\x76\xf6\x83\x3a\xc2\x91\xe6\x15\xa7\x7b\x39\xe2\x99\x10\x71\x77\xff\x76\x67\x12\xcc\x42\xb3\x7c\xf7\x90\x7c\x26\xd6\x1a\xc8\xba\x5f\x9a\x2c\xf1\xbe\x87\x5a\x86\x7c\x4a\x09\xbf\x12\x87\xfd\xb7\x5d\xc9\x23\x54\x2f\x0f\x5b\x3c\xfe\xeb\x3c\x61\x1e\xc3\xb9\xcd\x7f\xcb\x26\xc2\x4a\xb9\xea\x7b\x7b\xcb\x05\x69\xbc\x7b\xbd\xdf\x83\xaf\xcf\x99\x58\x79\x7b\xbf\xfd\x2c\xed\x13\x84\xed\xea\x8a\x96\x6c\xac\x65\x84\xc5\x72\x9e\x24\xf9\xa0\x9c\xe0\x13\x2d\x58\x26\xb2\xc4\x85\xf0\xa8\x4a\x6f\x57\x6c\xa4\x1c\x21\x65\xd5\xce\xf3\x3b\x6f\xb2\x12\xbe\xd6\xf4\xbd\x0c\x5c\x7a\x9c\xb0\x5e\x9f\x7b\xff\x9d\xcc\x02\x06\x12\x19\x23\x5b\x3a\xad\x57\xd1\x7f\x41\x94\xc2\x85\xa6\x81\xf5\xb3\xa6\x81\xe3\xad\xca\xc0\x8e\xdd\xda\x84\x57\x4a\xcb\xb4\x3c\x52\xf6\x31\xa7\x4a\x0e\xd7\x02\xb6\x03\xb1\x83\x0c\x2c\xbd\xb7\xb0\xfe\x54\x1c\x27\x41\xb3\xe2\xd9\x4b\xa3\xa6\xf9\xff\x13\xb9\xec\xcb\x6e\x49\x15\xb4\x32\x60\xa3\x68\xf9\x67\xd7\x65\x76\xc2\xd9\xda\xb4\x4f\x87\xfb\x85\x09\xeb\x95\x96\xa7\x70\x26\xd8\x12\x56\xbb\x7d\xd9\x21\xf7\xbe\x93\xd0\xbe\x3b\x68\xc9\x55\x93\x97\x04\x41\x05\x0e\x0e\xd6\x67\x9d\x84\x1d\x1b\xce\x2c\x3f\x27\xfc\x88\xd0\x33\xe8\xeb\xd3\xf1\xad\x9c\x70\x7d\xa6\x78\x62\x61\x4e\x15\xa1\xf6\xec\x11\x99\xa8\xbf\x85\x84\xfd\xd8\x2c\xc6\x1b\x51\x48\x30\x4c\xbe\xeb\x7f\xe8\x46\x1d\x13\xd4\xd6\xc4\x95\x98\xf7\x88\xb0\x2f\x83\xc3\x73\xb7\x41\x16\xe1\x70\xe6\xf6\xd1\xa1\xc3\x35\x04\xb3\x89\xda\xfd\xa7\x56\xdd\x23\x78\x5b\x9f\x79\xb1\x37\xad\x97\x70\xba\xf3\xf6\xaa\x3d\x93\x6b\x54\x35\xbf\x1f\x38\x25\xb2\x95\x09\x33\xf6\x5b\x3a\x3a\x7a\x27\x09\xa1\x47\xd7\xf9\xfc\x2c\xf4\x24\x60\x74\xee\x8d\x79\x5e\x3f\x19\x78\xaf\xa5\x31\xb7\x33\xa3\x9b\x81\x93\x35\xf4\xc6\x01\xe2\x84\xcb\x29\x9b\x56\xbd\xbd\x77\x99\x09\xeb\xb0\xd8\x38\xe6\xa7\xcf\x0c\x54\x5d\x7e\xeb\x12\x16\xa9\x42\x90\xaa\xdf\x9c\xda\xed\xb2\x8b\xa6\xca\xff\xa1\x5f\x30\x35\x45\xa9\x53\x84\x70\xc4\xd2\xee\xf9\x5a\x51\x05\x82\x43\x9f\x84\xba\x8a\x78\x2c\x41\xec\xe6\x93\xdd\x13\x7e\x0a\x84\xd5\x1c\x83\x8d\x5b\xdd\x04\x09\x5c\xc2\xa3\x16\x81\x4c\x1d\xc2\x45\xa1\xdf\x4b\xcf\xf3\x1d\x27\xe8\x1e\x4d\x7c\x52\xd7\x72\x7d\x1a\xae\x9c\xd3\xfb\x97\x59\x5d\x45\xd0\xe7\x57\x34\xfd\x4f\xb9\x5d\x6c\xa5\xc1\xe2\xee\x40\xe0\xca\x2c\x09\xbc\xd9\xee\x4c\x58\x94\xc0\xd9\x31\x6b\xb2\xb0\x1b\xbe\x6f\xbe\xf1\xe7\x0a\x73\xaa\x08\x25\x9a\x1e\x9f\x1d\x6f\x4c\xd0\x7f\xa3\x7b\x88\x53\x5f\x89\x50\x32\x62\xb6\x5e\x2b\xc3\x9a\xb0\x91\xd3\x68\xf5\xfe\x76\x4b\x42\x42\xf6\x17\x87\x87\x7f\x77\x11\xc4\x94\xcf\xd8\xf5\x5b\xf0\x10\x46\x5a\x5d\x6f\xc4\x4f\x6e\xd8\x0b\xb9\xae\x1a\x1e\xee\xfa\xc9\x80\xd0\xef\x19\x49\x0a\xea\x12\x84\xde\x2c\xcd\xf3\xbf\xfb\xe3\x09\xbe\x3c\x03\x83\x11\x75\xd5\x04\xeb\xde\xdf\x9d\x6d\x05\x8b\x08\x52\xd6\x5e\x6b\x07\xcc\xd5\x08\x1f\x37\xab\x6f\x73\xbe\xb5\x9d\xe0\x97\x73\xae\x9c\x5b\x4b\x8b\x50\x59\xce\xc2\x92\x36\x66\x4a\x90\xb9\xd7\x1d\x75\xf4\xb2\x3f\x61\x83\x7f\x71\x68\xbb\xe0\x66\xc2\x97\x2a\xf3\x0f\x9c\x76\x29\x4c\x1c\xfe\x18\x6b\xb8\x75\xe5\x29\x82\xe5\x6a\xa7\xef\xbe\x8d\x44\x60\xb7\xa8\xca\xd9\x9a\xfd\xba\x02\x2b\xc7\x19\x76\x01\xe7\x1c\x09\x01\xc7\x79\xce\xfe\x09\x2c\x66\xc2\x42\xec\xaa\xc0\xfc\xe8\x0c\x42\x8d\xdd\x6d\xd9\xff\x60\xde\x87\xd4\xed\xf3\x66\x8c\x30\x30\xd4\x74\xfe\xb7\xb2\xc2\x01\xfa\x2f\xf0\xc9\xdf\x9e\xf6\xf1\xa9\x33\x21\xea\xa9\x8a\xdc\x27\x7e\x3e\x82\x78\x3a\xaf\x83\xc4\x0a\x3f\x82\x97\x5d\x8a\x78\xd6\xb6\x66\x26\x9a\xbc\x6e\x46\xf2\x7d\x8b\x63\xe2\x72\x5b\x7d\xd4\x65\xa3\x43\x4c\xac\x33\xd1\x7c\x2a\x5a\xa5\x4b\xe0\x6a\x91\xb6\xbe\xf9\xd5\x8e\xc0\xc7\xb1\xea\xba\x83\xfc\x1a\xc2\xec\x2f\xdc\x12\x87\x74\x8d\x08\xeb\x47\xe7\x56\x08\xb3\x25\x12\xec\x75\x4c\x1c\xaf\xaa\xf8\x11\x9a\x32\x4e\x27\x7e\x75\x94\x22\xbc\x98\x21\xb0\xb0\xc3\x78\x1b\x41\x59\xff\xd7\x51\x55\x2d\x1d\x26\xae\xd9\x92\xe9\x68\x7d\x1c\xe1\xc3\xfe\x4f\xc6\xd1\x2a\x23\x04\x8d\x47\xdf\x64\xad\xde\x3c\x25\xc8\xf4\x5c\xf4\xda\x17\x15\x44\x98\x1f\x55\xc5\x35\x1b\xc5\x84\xa0\xad\x0b\x98\xd5\xd2\x21\x4c\xf4\x4b\x19\x24\xf3\xc9\x95\x12\x1e\xc8\x34\x3e\x64\xcb\x6a\x25\x64\xcc\x96\xda\xad\xcf\xda\x41\xe0\x12\xac\x51\x95\xf6\x79\x47\x48\x1c\xe7\x2a\x5b\xe0\xf5\x88\xf0\x3d\x77\x5b\x09\xdf\xd1\x14\xc2\x8f\x2d\x5d\x1b\xff\x03\xed\xa1\xba\xd3\xb3\xe2\x0f\x13\x7c\x78\xbf\x44\x45\x5b\xfe\x64\xe0\x11\x87\xe4\x4e\xcd\x33\x21\x34\x05\xaf\x97\x47\x15\x0f\xbe\x2b\x22\xdc\x8f\x12\x96\x48\x3c\x5f\x4c\x38\x51\xf2\xed\x7b\x46\x41\x3b\x03\xdf\x56\x5c\xec\xe0\xe0\x5e\x41\x08\x2a\x7e\x79\x41\x88\x69\x40\x48\xca\xe1\x73\x49\x9d\x75\x92\xf0\x62\xe0\x05\xb3\x40\xf6\x1a\xa1\x7f\x93\x51\x71\x4e\xe1\x06\x42\xdd\xe7\xbb\x73\x16\xb4\xb2\x12\xd8\x73\xbf\xe6\x6c\x53\x92\x27\xd4\x3a\xcc\x54\x4c\x4e\x9c\x45\x90\x2c\xe5\x55\xca\xb7\xaa\x63\x42\x48\x74\xd4\xe4\x97\xfc\x1c\xc2\xe3\xda\x6b\x12\x4e\xfe\x41\xd3\xe0\xfa\x60\x64\x46\xc2\xb8\x24\xc1\x76\xb3\xa4\x01\x4a\x55\x09\xcf\xf4\xf8\x5e\xef\xc9\x9e\x60\xe0\x7e\xc7\xba\x53\xbb\x27\xaf\xcf\x6b\xb5\x3f\xfc\xdd\xda\xf3\x9d\x81\x15\xab\x8e\xa6\x3c\x5f\xec\x41\xff\x05\xe7\xc3\xee\x2a\xbb\x8d\xfe\x65\x20\x4d\xde\xc9\x59\x4e\x61\x39\x61\x2c\xe2\x77\x41\xa2\xc0\x5c\xc2\x42\x75\x5b\xae\x0b\x8a\x52\x84\xb6\xc5\x1f\xf9\xae\xf2\x29\x10\x14\xf6\xbc\xef\x56\xe7\xcd\x25\x3c\x76\x68\xc9\xdc\x3e\xbf\x82\x90\xaf\xfa\x59\xe8\xdf\xf3\x4a\xc2\x95\x8e\x5d\x7a\xb3\x7c\x77\x10\x0e\xd4\x09\xa7\x54\x09\x9f\x23\x78\x0e\x5e\x55\x68\xf7\xab\x24\x08\xcf\x38\xfa\xe1\xe8\xe8\x5d\x82\xa0\xd2\xbe\xd4\x17\x1d\xc2\x04\x61\xb7\x95\x36\x33\xab\xf6\x4e\xc3\x9d\xec\x21\xcf\xc4\x5e\xfe\x69\x30\xcf\x59\xee\x7d\xf0\xea\xbb\x0a\x78\xef\x2c\xfe\xe9\x60\x53\xca\xc0\xf5\x5d\x3c\x1f\xcf\x9b\x54\x10\x06\xdd\xdd\xf5\x4d\x52\x13\x99\x18\xdf\x76\xdd\xc0\xc8\xad\x92\x20\xd7\x73\xbd\xeb\xa8\x87\x17\xc1\x12\x06\x03\x37\x0e\x0d\x32\x50\x70\x72\xdb\xf1\x19\x5d\xb3\x69\x0a\x0f\xb6\xcb\xbf\x50\xdd\xca\x42\x68\x78\xc1\xe7\xac\x16\x2f\x45\x78\xe3\x61\xbf\x45\x4f\x7f\x05\xe1\x94\x43\x92\xfd\x83\xfb\xcd\x0c\xf8\x6e\x2a\x9f\x10\x4e\x4f\x21\xf8\x70\x9d\xf8\x5b\xc0\x7a\x9d\xc0\x5d\x56\x15\x62\xf9\xd6\x9a\xb0\x2a\xb7\xd5\xe6\xeb\xc0\x79\x26\x76\xae\x2a\xd7\x51\xe4\x0e\x25\x58\x04\xbe\xbc\xf1\xdc\xa7\x97\x81\x0b\x6f\x2a\xcc\x6f\x56\xa9\x11\x34\x77\x67\x98\xaf\xfb\xfd\x98\x81\xb9\xbc\xb7\x17\x29\x2c\xe5\x26\x1c\x28\x97\xb6\x0e\x90\x1c\x65\xc0\x73\xb4\x53\xd3\xf0\x5b\x38\x81\x6f\x8b\xed\x1d\x83\xff\x8e\x13\x27\x16\x8b\xbf\x0d\x61\x23\x0c\x1c\x70\xae\x11\xdf\x5a\x48\x28\x4c\x91\xda\x12\xfe\xbc\x9f\x20\x32\xf7\xd3\x7a\xee\x7d\x4d\x04\xab\x9f\xe1\xa3\xcd\x79\xe7\x08\x3b\x44\x38\x67\xff\x39\xc2\x24\x78\xfe\x98\xb5\xdf\xa7\xb6\x89\x30\xc4\xd2\x55\x19\x3a\x23\x9b\x60\xe1\x2d\x5b\x5d\xe7\xfe\x89\x81\x25\xfe\x2b\x7b\x7c\x8b\xd8\x08\x96\x01\x9f\x52\x07\x0a\x7a\x19\x50\xb3\x4b\x2f\xd3\xd1\xe7\x27\xe4\x44\xce\x3a\xc4\xe2\xe4\x46\xf8\xf5\x6c\x57\x64\xab\x86\x0d\xe1\x40\xce\xc0\xbb\x13\x73\x6a\x08\x17\xfa\x8f\x88\x45\xc8\xf6\x13\x4e\x89\x48\x5e\x0c\x9b\x84\x74\xac\xf6\x31\x47\xd6\x26\xc2\x99\xb5\x7d\x22\x8e\x6c\x4d\x04\xe7\x33\x67\x05\xe7\xda\xfb\x13\x9c\x5c\x34\x73\xba\xd6\x04\x11\x94\x84\x3f\x5c\x2f\x7b\x79\x84\xb0\xb7\xc9\x47\x21\xd3\xbb\x97\x01\x9e\x4f\xd7\x82\x17\xce\xf9\xcc\x84\x4e\xc2\x71\x01\xe1\xe4\x6a\x26\x06\x27\x46\xdb\x87\x13\x9c\x08\x47\xb6\xfd\xd6\x64\xd9\xee\x4e\xe8\xb1\x98\x18\x59\xae\x5b\x49\x28\x35\xc8\x3c\xdd\x52\xc8\x46\x78\xc9\xd2\xdf\x24\xd9\xb2\x8c\xe0\x93\x13\xc1\xa9\xe8\xb3\x87\x70\xf6\x66\x62\xc9\x00\xcf\x66\xc2\x8e\xb9\x0d\x33\xa3\xed\x66\x13\xce\x04\xf1\x8d\xc6\x71\x2b\x13\x64\x9a\x0a\xab\x6e\x1d\x11\x9d\x86\x13\x56\x73\x3b\x95\xae\x59\x13\x9e\x6d\x14\x19\xec\x92\xd6\x20\x24\xae\x14\xff\x75\x73\xc2\x84\x90\xdc\x2e\xf5\x79\x2c\x54\x91\x70\xca\x27\xd0\x2e\x76\x6e\x25\x41\x93\xdd\x6a\xef\xa9\x25\xf2\x84\xd8\xc7\xf6\x37\x12\xe4\xb5\x09\x76\x6d\x5d\x9f\xcc\x8b\x36\x10\xdc\x8e\x0a\x9b\x09\x46\x4c\xc7\x25\xff\x35\x81\x76\x91\x31\x4c\xf0\xd7\xb0\x9f\xd8\xe3\xa5\x42\x28\xfc\x53\xfc\xa0\x50\x40\x81\xa6\xca\xc2\xcf\xdd\x97\x12\x03\x0c\x09\x42\x23\x67\x7d\x75\x8d\x64\x09\x1a\x5e\x92\x0f\xaf\x5f\x35\x26\xec\x13\x3a\x95\x7a\xdd\x6f\xd3\x34\x34\xbf\xff\xdc\x47\x9c\x6b\x09\xba\xe2\xf7\x35\x95\x2d\x74\x09\xfa\x31\x61\xc1\x7f\xf9\xea\x09\x97\xa4\x0c\x7e\x73\x3c\x5c\x43\xb8\xa2\xe5\x9a\x65\xdb\xb6\x82\x90\xad\x21\x98\xbd\xb9\x7c\x3b\xe1\x6b\x03\x67\xb6\x88\x7c\x21\xe1\x63\x7c\xbd\x76\xab\x52\x21\xe1\x60\x77\x0d\xcf\xf7\xb1\xfb\x04\x23\x7f\xaf\xde\xd7\x93\xc5\xd4\xd6\xcd\xf9\x4a\xba\x21\xe1\x58\x46\x97\xca\x9a\xa6\x1d\x04\xe7\x7d\xbf\xe5\x2c\x97\xec\x9a\x36\xfa\xbf\xf2\xf0\xee\x8c\xef\x47\x83\x4e\x10\x5e\xc7\xd4\xcc\x2f\xd1\x09\x62\x22\xa2\xb3\xdd\xea\xd7\xe6\x64\xc2\xe8\xbb\xeb\x2c\x89\x9c\x44\xa8\x53\x8f\xed\xb8\xff\xd0\x88\x30\x53\x5f\x7b\x55\xf0\x76\x03\x42\xc0\x23\x77\x14\x7f\xd9\x42\x98\x7d\xd6\x67\x49\x68\xd3\xb2\x69\x38\x72\xec\xf9\x6c\x4d\x67\xa1\xc9\x5d\xfd\xc3\x97\xe7\x3c\x03\x0c\x3c\x7d\x9f\x15\x9d\xf4\x50\x8a\xf0\x75\x28\xf5\xaf\xe3\x66\x3b\x42\x1b\x17\x0f\xff\x5f\x1e\x41\x42\x4c\x6f\x71\xb9\xf3\xc4\x3a\xc2\xdb\x19\x9a\xf6\x57\x76\xb8\x10\x56\x5d\xd6\xdd\xc5\x2d\x32\xf9\x52\xd8\x98\x3f\xa4\xb0\xa1\x80\x89\x1d\xd5\x51\x3b\x3a\xf2\x7e\x30\xe0\xb4\x6a\x71\x9e\x53\x68\x39\x61\x7d\x21\xdf\xe9\xef\xdf\xea\x26\x9f\xf7\xa7\x2d\xd6\x93\xc5\x2b\xe8\x80\xb9\x83\x4b\x11\x81\x4f\xe8\xd5\x8a\xb3\xed\xc9\x84\xd3\x31\x52\x6b\x57\xe6\x19\x13\x4e\x9c\x0f\xea\xb3\x1d\x5e\x48\x38\xb2\xab\xc9\xf5\x45\xe0\x86\x69\x18\x5b\xef\x96\xa6\xb7\xe7\x5b\x05\xcc\x2a\x0a\xf2\x34\xad\xee\x13\xe4\xaa\x9a\x1f\x08\x59\xc5\x4c\x83\x64\x8b\x70\x88\xfe\x8f\x00\xc2\x2c\x1e\xab\xb0\xb9\x1b\x62\x09\x11\xce\xd2\x2c\x6b\x0d\xb4\x09\x73\x22\x2f\x9c\xd5\xbe\xae\x4e\xb8\xc2\xe0\xee\x3b\x7f\xc7\x88\x20\x63\x64\xb1\xb5\x40\x6a\x1b\xa1\x51\xe5\x9a\x98\x8f\x17\x3f\xe1\x2c\xc7\xc2\x76\x9b\xb0\x5f\x0c\x9c\x9a\x10\x59\xdb\x11\x3c\xce\x80\xa0\x9d\x69\x4e\xbe\x85\x12\xc1\x5e\xe8\x8c\x4e\xdd\xc9\x12\x26\x16\x18\x46\x1d\x4d\x2e\xaa\x21\x58\x9e\x1e\x56\xad\x4c\xaa\x22\xf0\x2a\x3c\x59\x9f\xfa\xb2\x8c\xd0\xf6\xbe\x34\xf3\x3f\xa3\xff\x5b\x13\xf4\x86\xdb\xe9\x7a\xc4\x21\xc2\x83\xc7\xfb\x7e\xed\x8c\xe8\x64\xc0\x2c\x3f\xcf\x7b\xeb\x42\x7f\x26\xba\x57\x2b\x96\x2f\xca\xa8\x21\xec\xdd\xcc\x71\x4c\x6c\x12\xbd\x59\x6a\xe1\xeb\x36\x7a\x12\xaa\xe6\xa9\xf6\xac\x76\x79\x45\x38\x70\xe2\x3c\xbf\x86\xff\xf4\x35\x1e\xe1\x46\xca\x22\xef\xb4\x09\x2b\x76\xaf\x53\x6c\x95\x2a\x60\x42\x69\x6d\xb3\xc8\xd3\xe7\x2b\x09\xb2\x1f\x8d\xbb\x1c\x45\x5d\x08\xaf\x85\x17\x8b\x73\x06\x39\x12\x2c\x98\xa2\x1f\x83\xbe\x5e\x22\x9c\x09\xab\x1e\x3a\xf2\x70\x13\x41\x78\xcf\xc2\xb3\x7c\x02\x46\x84\x6a\x95\x51\x27\x19\x8b\x45\x84\xd7\xaf\x8e\x2a\x1d\x1d\x58\x4e\x58\x69\xfd\x60\x7d\x5b\xde\x56\xc2\xda\xbf\x25\xfb\xd4\xc2\xc7\x18\x53\xc8\x68\x5d\x66\x3d\x73\xb3\x10\x21\x46\x24\xe6\xf9\x27\x19\x49\x42\xea\xe8\x99\xbf\xd7\x63\x94\x09\x5f\x3a\xe4\x56\x8d\x84\x24\x12\x54\x63\x4c\xfb\x59\xb7\xd7\x11\x9e\xa8\xde\x5a\x96\x9a\x24\x4f\x10\x2b\x5d\x90\x9a\x37\xcf\x88\xb0\x96\x87\x7f\xdf\x3c\xb9\xf5\x84\x03\x2d\x66\x55\xbf\x22\x57\x10\x0c\x2c\xfb\x57\xcb\xa5\xcf\x23\x24\xbb\x1b\x9f\xfb\xb0\x39\x8f\xf0\x2e\xf3\x49\xa3\xbe\xcd\x1f\x06\xbc\xa3\x60\xf5\x2d\x58\x85\xa6\x30\x22\x3e\xca\x2e\x1b\xd5\xc1\x9c\x2a\xc5\xc3\x21\x35\x32\x3b\x0c\xfe\x1b\x0c\x9b\x67\x77\xd8\x6a\x0a\x10\x3e\xa6\xc5\x56\x28\x04\xa4\x13\x12\xe4\xf2\xb8\x74\x5b\xa5\x09\xf5\x3d\x8b\x14\x5e\x2c\x63\x9b\x06\xa7\x67\xea\xcb\x3e\xe5\x2f\x20\x58\x5d\xde\xe6\x63\x40\x7a\x84\xcd\x1d\xff\x0f\x61\x77\x1a\x4d\xf5\xff\xfe\xf1\xbe\x0c\x09\x85\x14\x21\x91\x21\x51\x64\x0c\x89\x7d\x99\x52\x94\x4c\x91\xa9\x0c\x45\x29\x89\x0c\x95\x46\x73\x91\x90\x52\x44\x45\x86\x06\x15\x29\x53\xb2\x4d\x69\x10\x11\x92\x0a\x29\x52\x52\xc9\x90\x17\x49\x67\x69\x9d\xf3\xcb\x8d\xef\xfa\x9f\x5b\x1e\xeb\x79\xed\x9b\xfb\xf3\xfe\x5c\xef\xb5\xac\xb5\x85\x12\xef\x1a\x1d\x2a\xc5\x1d\x9f\xd5\xcf\x34\x27\xcf\xf9\xff\x03\x4b\xdb\x2d\xe7\x3e\x9b\x7c\x05\x54\x6e\xd4\x5d\x9b\xbb\x37\x9d\x20\xfd\x53\xf9\x36\x8c\x3f\x13\x78\xb2\x11\x8a\xe6\xbb\x84\xab\x9f\x72\x16\xa7\xdd\x39\x4a\x58\xe8\xb5\x4b\x3d\xbe\xed\x01\x21\x75\x58\x67\xc5\xc2\x16\x06\xa1\xbe\x3a\x6a\x76\x99\x85\x1e\xc1\x93\x4b\x58\xcd\x2d\x49\x8f\xf0\xcc\xd8\x51\xfc\x4a\x9c\x18\xe1\xe0\xe8\x6f\x8b\xd7\x5c\xbf\x19\x18\xed\xfd\x28\xf4\xfa\xe1\x2f\x06\xda\x4a\x76\x8b\xf2\xa7\x65\x13\x86\x26\x78\x6e\x89\xbd\xbb\x4d\x78\x7f\xb9\xaa\x6c\x99\xff\x7c\xc2\x18\x8f\xe2\xba\xe4\x9f\xab\xa7\x22\x4a\x6c\x7a\xac\x4c\x3f\x03\xcf\xee\x5b\x4c\xdb\xf0\xf9\x00\x81\xff\xe9\x65\xe1\x76\xb9\xc9\x9b\x4b\xe3\x92\x57\x4f\x9f\xbe\x22\xc4\xff\xe6\x15\x4f\xd9\x53\x42\xd0\x2e\x9f\x93\xd0\x74\xbe\x80\xe0\x26\xb1\x3a\x6f\x57\x63\x3e\xc1\x9a\xf5\xc1\x25\xc7\x27\x3f\x08\xe7\xae\x3f\x88\x74\x98\x84\x26\x6b\xc3\xf3\x4b\x17\x13\x08\x96\x9e\xd3\x2d\xad\x27\xcb\x89\x0e\x03\x03\x8b\x49\x48\x4e\x8b\xdc\xda\x1e\x51\x41\xa8\xb4\xe2\x6a\x6d\x9b\x04\xaa\x3a\xae\xff\x85\xc3\x4b\xa3\x43\x3b\xdf\x97\x13\x12\x8e\x89\x76\xc5\x7e\x4b\x23\x2c\x6e\x78\x73\x69\xed\xbc\xc7\x84\x4e\xe9\x94\x8b\x9c\xfc\x93\x2f\xcd\x4d\xf7\x4e\xa9\x94\x32\x09\xec\x4a\x7b\xb9\x17\x0e\x85\x4f\x81\xfd\x55\xa6\x8d\x64\x4c\xd8\x94\x12\xcc\x77\xc3\xc8\xce\x49\x82\xf0\xe6\x5b\xfe\x9a\xbd\xdf\x56\x12\xbe\x89\xef\x13\x9a\x6f\x58\x41\x38\xb2\xc4\x34\x9a\xc5\x52\x97\x50\xcc\xa1\x3e\x67\x5f\xf8\xb4\x29\xf0\x59\x58\xe7\xb9\xc1\x7e\x90\x81\xe9\x33\x13\x8c\xee\x24\xaf\x22\x98\x3d\x3d\xd6\x11\xf7\x6a\x3f\xe1\xb9\x35\xf6\x05\x67\x04\x4d\x41\xfb\x25\x1d\xb3\x5d\x2b\xd2\x08\xa3\x03\x6d\xb9\xc2\xa6\xdb\x08\xf3\x5b\xda\x27\x0a\x2b\x96\x4e\xc1\x9a\xa5\x79\x7e\xc6\xfd\xc9\x04\x6d\x0e\xc5\xb4\xa4\x25\x46\x04\x9d\xec\x48\x47\xe1\x0b\x89\x04\x77\x8d\x3f\x12\xdb\xcf\x59\x11\x74\xe4\x7c\xde\x7c\x64\xf1\xf8\x2f\x18\x08\xbf\xcb\xf1\x5f\x27\x3b\x05\xaa\x5e\x17\xea\x4e\xa6\x8b\x11\xe6\x27\x5c\x2f\x89\x9b\x21\x46\xc8\x4d\xaf\xbb\x99\x77\x45\x97\xc0\x5e\xdf\x98\xd2\x50\xbc\x9c\x70\xf4\xf0\xda\x9b\x99\xe1\xe9\x84\x8d\xf9\x02\xaf\x62\x39\xaf\x11\x0a\x96\xce\xac\xf5\xce\xa9\x27\xa4\x73\x8e\xb8\xbf\x2b\xbd\x4d\x68\x3d\xa5\xbe\xa9\xca\xf8\xcc\x14\x04\x2e\xcd\xca\x0e\xee\x9a\x60\x20\xd9\x2e\x4c\xca\x7c\xa1\x38\xe1\x92\xbb\xbc\x78\xe4\x9c\x9f\x0c\xec\x08\x2e\xb0\xbe\x11\x34\x83\x70\x52\xc6\x25\xae\x75\x3a\x0b\xe1\xa1\x47\x48\xa5\xd3\xcb\x6c\x26\xfa\x66\xac\x16\x1a\x9d\x1b\x4c\xe0\xea\x8d\xfd\x5a\x23\x52\x41\xc8\x20\x85\x48\xae\xc7\xb7\x08\x9b\x33\x4a\xda\x3f\xf3\xfc\x20\x28\x6a\x7e\xdb\x3e\x43\xef\x09\xa1\x7d\x43\xb4\x4a\x60\xec\x33\xc2\x45\xeb\xd6\x74\xb6\x05\xc1\x84\xb8\xec\x96\xc5\x65\xe2\x2f\x09\xbb\x82\xc5\x1d\xc4\xbc\x02\x09\x81\x1a\xa5\xb7\x7e\x2d\x14\x24\x1c\x89\xe1\x15\x35\x51\xe4\x9a\x82\xb8\x06\xc7\xf6\x95\xe7\x56\x4f\xc1\x2e\x89\x2d\x35\x9a\xa2\x12\x53\x90\x6e\xc9\x2a\x54\x62\xeb\xcf\x1c\xed\x38\xc6\x29\x70\xfd\x02\x61\x4f\x76\x8f\xa0\x49\xb3\x07\x61\x6f\xd5\x27\x95\x8b\xe2\x52\x84\x59\xe2\x23\xe1\x56\x45\x0b\x08\xbf\xec\x17\x3e\x38\xba\x69\x8c\x01\xbe\xa1\xf6\xdc\x16\x0e\x5b\xc2\x96\x63\x56\xc1\xd3\x38\x68\x0a\x54\x2b\xe6\xbe\x7d\x3e\xf2\xb5\x14\x09\xae\xae\x2b\xcf\xf5\xcf\x21\xf4\x8c\xdd\xe3\x2d\x5b\xae\x49\x78\xcd\x3a\xef\x4c\xaa\xd4\x3d\x82\xcd\xb1\xd0\xa1\x8b\x11\xb9\x84\xf4\xf2\x6f\xbe\x81\x2f\x1f\x13\xb6\x98\xdc\x58\xb9\x88\x3d\x9f\xe0\xf6\x39\x9a\xf3\x3e\x5d\x20\xac\x3b\xb8\xf1\xe3\xd7\x90\x5c\x82\x7a\xe6\xbd\x70\x9e\x15\x15\x84\xe4\xac\xb2\x83\x1b\x5a\x1e\x12\x9e\x7b\xcb\x55\x3f\x2d\x0a\x20\x84\x7c\xce\x62\x7f\x60\xd9\xcb\x40\x6b\x62\xf2\x41\xb5\xcf\x8b\x09\xa9\x45\xf1\xe2\x87\x74\x1c\x08\xe9\x86\x77\xc6\x2c\x7d\x1c\x09\x81\xa1\xde\x33\xcf\x1c\xb7\x20\x84\xb9\x38\x7f\x3d\x6e\x6e\x48\xf8\x93\x59\xb9\x64\xf7\xb8\x06\x61\xdf\xca\xf7\x03\xbc\x6f\xe6\xfc\x9f\x60\x0b\x79\x27\x39\x78\xb0\x83\x81\x66\xef\x21\x2e\x83\xf9\x1f\x18\xf8\x38\x11\xcc\x39\xfb\xfe\x49\xfa\x0f\xc4\x49\x5a\x6f\x3b\xf1\x4e\xe5\xbf\xd0\xdc\x51\x34\xb4\x79\x81\x2f\xe1\xd9\x8d\xfa\xe5\xef\xf9\xdc\x08\x79\x5b\x4e\x8d\x1f\x10\x55\x25\x7c\xbb\xb9\xf1\x56\x97\xa0\x12\xe1\x78\x96\xd7\x06\x96\xba\x86\x52\xac\x31\x8f\x3f\x7d\x6c\xd9\x62\xc2\xd6\x34\x47\x29\xbf\x99\xb7\x08\xfb\x07\x05\x6c\x92\x0c\xcf\x12\x2c\x96\xad\xae\xe7\x29\xbf\xc7\xc4\x08\x33\xf7\xe8\xdf\xd1\x0c\x1b\xd7\x79\xcb\xee\x4c\x30\x70\xe6\xbb\x54\x5d\xfb\x4c\x7d\x82\x7a\x9c\xd3\xa2\x98\x1e\x63\xc2\xfd\xd7\x6f\x36\xf2\x3d\xfd\xc5\x40\xc0\xf0\x40\x36\xe7\x84\x00\x21\x84\xf5\xcb\x06\x87\x56\xcb\x29\xe8\xf4\x56\x14\xa9\x89\x6c\x60\xfc\x83\x9e\xa1\x0d\x67\xd1\xd0\x4c\xfa\x87\xd7\xb7\xfd\x56\xd4\xcd\x5b\x33\x05\xbd\x1c\xbf\x9f\xd8\x66\xd5\x10\x1a\x04\x58\x67\x9f\xe0\x3b\x4d\xd0\xbb\xd0\x78\x2b\x40\xcd\x8f\x20\xbc\xbf\xeb\x72\xfb\x02\x45\x82\xbe\xc8\x6b\xdb\x57\x03\xf5\x04\xbb\x89\x23\x47\x24\x66\xe5\x10\x2e\x48\x71\x1b\x74\xa9\x1c\x27\x68\x7d\x6e\xb6\x8c\xdf\xec\x47\x18\xfb\x94\xf3\x24\x5b\x58\x8e\xe0\xf6\xb4\x55\xf8\xf4\x2a\x25\xc2\x84\xe8\x89\x8b\xce\x5f\xb9\xa7\x40\x7b\x65\xe9\xac\x9e\x6b\xac\x53\x70\x4a\xc3\xce\xfa\x51\x50\x34\xc1\xb6\x3a\x24\xe4\x2f\x52\xbd\x1f\x16\x86\x0f\xb1\x4d\xc1\xa5\xfd\x1b\x3f\x8b\x7f\xdb\x49\x88\xb9\xe0\x6a\xb1\x7e\x73\x0c\x21\xd5\xff\x5a\x75\x8f\xe9\x41\xc2\xef\x23\x0f\x93\x0f\x7e\x03\x03\xd7\x97\xf0\x2f\xd9\xcd\x8c\x63\x42\x22\xf5\x52\x99\xcf\xd5\x78\xc2\xdd\xc3\x57\x5e\x2b\xe7\xd6\x11\x2c\xdf\x74\x2e\x58\x93\xfc\x82\x90\xb6\xc6\xf5\xea\x19\xc1\x1e\x26\xcc\xda\xfb\x8a\x43\x97\x57\x13\x98\xdb\x98\xcb\x5e\x73\x7b\x13\x2a\x65\x63\x86\x63\x5b\xc3\x09\x99\x15\x89\x49\xcf\xab\xce\x13\x7e\x84\x78\xcb\x8e\x7d\x08\x27\x5c\xed\x1c\x6c\xb5\x98\xb1\x8f\xc0\x29\xb7\xb5\x71\x64\x38\x95\x90\xc4\xf2\xea\x67\x26\xbf\x10\xfd\xbf\xff\xec\xc0\x4d\x98\x9f\xae\x9b\xb5\x39\x2c\x89\x30\x7f\xc5\x1d\xc7\x36\xe7\x7d\x84\xf5\xfe\x5a\xcd\x16\x4b\x03\x09\xbf\xb7\x17\xeb\x32\xec\x8a\x99\x98\xb7\x33\x69\x65\x89\x73\x02\xa1\x4b\x4f\xd8\xe8\xd1\x1e\x01\x02\xb7\x6a\xc4\xfc\x37\x0f\xa4\x08\x9f\x05\x0f\xc4\x9f\xb1\xcf\x63\xc2\x69\x76\xe4\x9f\xdf\x09\x6d\x84\xdc\x81\xac\x66\x96\xde\xb7\x84\xf1\x5d\x1e\xdf\xfb\x0e\x5f\x27\x9c\x3c\x2c\x32\xc1\x11\x16\x40\x78\xeb\x6e\x77\xd5\x67\x98\xc9\x84\x91\xe1\xaa\x92\x23\xc1\x2b\x09\x9f\x5f\xb3\x88\x39\x0d\x5c\x23\xec\xd9\xfc\xd2\xa9\x5b\x63\x88\xe0\xb1\xe8\x7e\xcd\x27\xea\x27\x7c\xe9\xb5\x2e\x8c\x5c\x72\x93\x70\x72\x34\x4c\xf7\xd2\xce\x77\x04\x91\x05\x66\xda\xd5\x0b\xf8\x09\xc6\xe9\x97\xcc\x93\x0b\x24\x08\x26\x1b\x2f\xac\xfc\xaa\x9f\x45\x78\x71\x64\xbf\xcd\xa9\xb8\x6b\x04\x6d\xb7\xb4\xef\x16\xa5\x8a\x04\xbd\xd8\x8e\x77\xfd\xd3\x4d\x99\xe0\x4d\x10\x35\x0f\x70\xd8\x38\x79\x26\x28\xf0\x16\xe5\x5a\x10\xc6\x9d\x17\x57\x68\x70\x46\x13\xac\x6e\x0f\x5d\x0c\x16\x4b\x61\xfe\x2b\x0f\xb7\x53\x25\x9f\xdd\x13\x06\xd4\x3b\x5d\x0e\x6c\x7b\x95\x42\x18\xb0\x53\x36\xbb\xf1\x26\x8f\x10\xf5\xcd\x3f\xcf\x7a\xc9\x61\x82\xf1\xbe\xd2\xb3\xbb\x5a\x8d\x09\x8c\x1a\xbb\xb2\x63\x21\x1b\x09\x4d\xd5\xf9\x29\x9c\x0a\x2e\x84\x3b\x4d\x57\x5e\x24\x9b\x99\x12\x02\x38\xac\x36\xc5\x74\x55\x32\x91\x28\xd6\xed\x7d\x74\xe0\x18\xa1\xd0\x2b\xb4\xe7\xf9\x3b\x75\xc2\xb2\x2d\x0a\xb1\x45\xcf\xf7\x13\xae\x07\xcd\xef\xb9\xcf\xae\x48\xf0\x0f\xf3\x5a\xc1\x1b\x54\x44\x38\x76\xbe\x6d\xe3\xea\xaa\x07\x84\xdc\x8f\xcb\x8d\x2f\xe8\x9e\x20\xc8\x5d\x1f\x37\xf4\x5f\x7a\x88\xe0\xba\x2b\x7e\x03\xdb\x9a\x71\x06\x8e\x0b\x24\xff\xaa\x9d\x27\x4d\xff\x10\xb6\xeb\xde\x68\xf6\xec\xf6\x52\x48\x71\x5b\x35\x84\x24\x69\x13\x16\xcd\xfd\x91\xb6\xf2\x4a\xc8\x14\x3c\x6a\x35\x69\x37\x39\x74\x96\x60\xff\xb0\x60\xa6\xff\xc1\x97\x84\xec\x55\x9b\x3f\x57\xfb\xbe\x22\x5c\x96\xd6\xb7\xf6\x57\xda\x47\xd8\x13\x3b\xfd\xdb\xf4\xdc\x4b\x4c\x68\xf8\x45\x85\xad\x3c\x2d\x4d\x70\xc9\x91\x74\xab\x48\x18\x64\x40\xe6\xd9\x01\xf6\xab\x2d\xad\x4c\x70\xb4\xd6\x49\xf7\xdf\xb2\x25\x24\xfe\x1c\x4c\x68\xd0\xdf\x40\x30\x15\x49\x88\xa9\x4f\x69\x23\xc4\x94\x27\x04\x3e\x9f\xc4\xca\x39\xf2\x0d\xa2\x5b\x0b\x08\x0d\x0e\xb7\x96\xff\x16\x2d\x20\x5c\x6c\x59\x3e\x7b\xc3\x8a\x65\x84\xfc\x2c\x13\x53\x87\xfb\x77\x09\x1c\x4b\xc7\x52\x1e\xcc\x63\x25\x6c\x78\x56\x93\xb1\xf3\xe1\x15\x26\xea\xfa\x76\xb9\x3b\xb0\x2e\x25\x38\x96\x14\x2c\xb4\x18\xea\x64\x42\xc8\x76\x61\x8f\xf5\xe2\x72\x26\x7e\x1f\xad\x4a\xf9\xb4\xfb\x16\xe1\xc4\x9f\xa1\x80\x57\x41\xd7\x08\xce\x5e\xfc\x72\x5c\xda\x9d\x84\x87\xf7\x96\xe8\xfe\x45\xbf\xd2\x9f\x39\xc3\x37\xdf\x10\x6e\xe8\xea\x8d\x2c\xa9\x3d\x42\xd8\x58\xec\x39\x8d\xfb\xf5\x95\x29\x85\xbb\xd4\x72\x7a\x41\xba\x09\x41\x6d\xb9\x3e\x97\xce\xc7\x24\x26\x2e\x72\x25\xe9\x8e\x74\xea\x10\xb6\x16\x2a\xb9\x2e\xee\x56\x24\xb4\xd5\xee\xaf\xa9\xe7\x3e\xcf\xc4\xd0\x99\x1d\xb9\x21\x5f\x95\x09\x3a\xd7\xdc\x39\xf6\x5d\x3d\x49\x38\xf9\xf5\xb5\xb6\xef\x6a\x4f\x42\xd2\x99\xa3\x0b\xc6\x5e\xa9\x13\x06\x0f\x3e\x13\x33\x2d\x5f\x42\xf8\xb4\x4e\x72\x96\xb6\xc5\x7c\xc2\x26\xa6\x8d\xb6\xea\xba\x34\x82\xed\x1e\xa7\xcc\x2d\x07\xca\x09\xcd\xe2\xfa\xae\xfb\x16\xb8\x11\x9c\xed\x9d\xbd\xe3\xcf\x1b\x12\xe6\x3d\x16\xaf\x8a\x9a\x2b\x40\xf8\xf1\x3e\x79\xbc\xd6\xd4\x8d\x60\x5f\xcd\xb1\x76\xe2\xc8\x03\xc2\x63\x3c\xeb\x15\x14\xb9\x4d\x30\xfa\x63\x34\xbd\xfb\x6d\x03\x41\xb7\x90\x91\x70\xf9\x79\x24\x61\x5f\x64\xbc\x7d\x78\x76\x3c\x81\xff\xd3\x66\xe7\x46\x35\x75\x42\xa4\x82\xc5\x25\x5f\x9b\x25\x84\xa8\x9b\x8b\x05\x2e\xfe\x7a\x41\xb8\x97\xc6\x6d\xbb\x7c\x5f\x06\xe1\xc3\x0a\xbd\xe3\x1d\xd3\x4c\x08\x26\x73\x79\x7d\xe2\x54\xac\x09\xc3\x65\xeb\x1f\x4a\x06\x78\x11\x56\xc8\xa5\x54\x1c\x3c\xb2\x68\x0a\xd2\xb6\xfb\x25\x06\x7c\x69\x2f\xc5\x49\xb7\x63\xbb\x76\x87\x37\x11\x9e\x0d\xd9\xbf\x3a\xbb\xbf\x91\xc0\x79\xd7\xf6\x4d\xbc\xf0\x33\x02\x23\x6c\x96\x3c\x9b\xcf\x33\x82\xc7\xfa\xcb\xa5\x7e\x5c\x8f\x09\x21\x57\x83\x06\x64\x39\x4e\x13\xfa\x95\x13\x75\x2c\xb7\x1e\x23\x94\x28\x6f\x9a\x1e\xcb\x1b\x4b\x18\xb9\xc1\xf5\x55\x79\x71\x23\x13\x33\x24\x05\x1d\x7b\x5c\x0e\x12\xae\xa4\x2f\xd6\x7a\x50\x60\x4d\x98\xb1\xa5\x7f\xa9\xef\x60\x21\xe1\x7e\x74\xef\xa8\xef\x48\x1e\x61\xd9\x40\xe6\x9b\xf9\xd1\xd5\x84\x1f\xed\x75\xe5\xcb\xce\x6d\x9b\x02\x93\xdd\x97\xf6\x2c\xf7\x95\x26\xa4\xbf\xe1\x31\x6e\x7d\x25\x49\x28\xf1\x7f\x2b\xd1\x19\x1f\x4b\xd8\x63\xb8\x75\xcf\xbd\xac\x58\x42\xa3\x63\x9b\x75\xa1\x46\x37\x03\x5c\xa7\x4e\x4b\x04\xce\x3a\xce\xc4\x32\xae\x57\xc5\xe1\x0d\x07\x08\xca\x85\xf6\x5a\x32\xef\x73\x09\x6c\xee\xc5\x99\x95\x31\x07\x09\xe9\x55\x8b\x83\xbf\x85\xed\x23\xc8\xfd\xe2\xfa\xbe\xf9\x89\x18\x21\xda\x22\xec\x42\x87\xf7\x0a\xc2\x97\xb7\xcb\x8e\x09\xcf\xe1\x27\x5c\x7d\xe9\x25\xf7\xad\x69\x88\x01\xd9\x6b\xd9\x4d\x05\x77\x36\x12\xee\x84\x37\x9d\x72\xf9\x38\x93\x70\xec\x56\xe2\x9d\x0d\xc7\x5c\xa6\x40\xb2\xcd\xa6\xc8\xba\x76\x2a\x24\x16\x0a\x2b\x37\xac\x56\x9b\x82\x19\x87\x6c\x45\x9e\xcd\xfd\xc6\x80\xf0\xa7\xdb\x4d\xc6\xb2\xf9\x84\xaf\xe7\x5f\xa5\x47\xbf\xa9\x64\x22\x4f\x53\xd9\x55\xfa\xee\x16\x82\x5a\x59\x0e\xeb\x82\x80\x6d\x4c\x6c\x08\xb8\xf9\xce\xf2\xfc\x22\xc2\x9c\xdf\x0a\x73\x79\xa2\x0b\x08\x6b\xbc\x58\xbb\x67\x4f\xe2\x65\xc8\xdb\x26\x3d\xee\x1f\x8c\x7f\xe8\x66\xb5\x7a\xff\x3e\x7f\x72\x07\xcc\x93\xfb\x71\x9a\xd5\x9c\xb0\xa9\x5d\x2e\x62\xc1\xee\xdd\x53\xb0\x70\x7f\x69\x79\xcb\xc4\x7a\x42\x93\xfe\xae\x87\x85\x9b\x62\x08\xcc\xb3\xdf\x43\xd7\x73\x58\x13\xe4\x97\xf0\xaa\x1e\xb8\xad\x4e\x18\x3b\xc1\x12\x2c\x14\xbf\x97\xf0\x9e\xfd\x4e\x36\x7f\xf4\x6e\xc2\xcb\xd2\xbb\x7b\x7f\x8f\x3d\x64\xc2\xb4\x5c\xef\x82\x32\x6b\x01\x61\xcc\xe3\xf5\xab\x15\x56\x99\x4c\x0c\x24\x67\x05\x7f\x4d\x4f\x25\x6c\x8f\x51\x39\x66\xe4\x1d\x44\x88\x58\x20\xa7\xaf\xb7\x30\x8e\x09\xd7\xd8\xb7\xa9\xfe\x5b\xaf\x10\x66\xd5\xf7\x9f\xfe\xae\xe5\x41\xf8\xce\x16\x59\x68\x18\xf6\x90\x10\xff\xe7\x63\x7d\xee\xae\x4c\x02\xcf\x68\x9b\xd7\x9b\xfb\xb7\x08\x0d\xc5\x39\x02\xab\x4b\x2b\x98\x98\xf3\x75\x51\x44\x92\x70\x15\xa1\x22\xa7\x6d\xd0\xaf\xf2\x3b\xc1\x53\xea\x8f\x9d\x67\xeb\x53\x26\x14\x8e\x1e\xf7\x7a\xdb\x5c\x49\x70\x75\x74\xb2\xb0\x9f\x2c\xff\xfb\xf0\xff\x10\xb5\x3c\x5c\xd1\xfe\x4f\x34\xa1\xa8\xa3\x67\xc8\x86\x33\x85\x89\x80\x9c\x2a\xab\xcc\xa7\xa7\x08\x33\x96\x33\x0e\x4c\xf0\xa7\x30\x51\x99\xc8\x1e\x75\xcf\xe4\x14\xa1\xdb\xa2\xa1\x67\x7a\xf2\x12\xc2\x61\xab\x43\xaf\xc6\x0a\x8d\x08\x11\x37\x12\x35\x03\x27\xdf\x8c\x9c\x2f\x0b\xee\xc4\xae\x09\x27\x2c\x37\x5f\x27\xc5\x6b\x14\x4e\x78\xe5\xe7\xd2\x3b\x90\xb8\x91\x20\xde\x90\x67\x7c\x7a\xf3\x3a\x82\x80\x61\xa5\xe5\x8d\xaf\x42\x04\x27\xcd\x96\xc0\x97\x0a\x1a\x84\x27\xdb\xe6\x9e\x8a\x67\xc8\x11\xf4\xea\xf8\x9b\x2d\xb2\xd7\x13\xb4\xb6\x6e\xd7\x16\x3f\xfa\x82\x81\xb8\xb9\x66\xcf\xad\x22\xf3\x08\x9b\x3f\xae\x33\xd0\x93\xdf\x34\x05\xf6\x69\x3b\x4f\xa9\x5f\xf5\x26\x68\x70\xe4\xcf\x7e\xdc\x37\xc2\xf8\x87\xba\x20\xe9\x25\x47\xff\xa8\x12\xfa\x58\x36\x72\xdc\xee\x97\x20\xac\x3d\x77\xdb\xeb\xe8\xc3\x57\x84\x68\xad\x4a\x9b\x22\xd3\x22\xc2\xb7\xfc\x10\xdf\x19\x1b\x0d\x08\xd3\x63\xef\x39\xef\xa8\x1b\x66\x40\x79\x9d\xfd\x43\x8e\xd2\x04\x42\x46\xd6\x77\x13\x8b\x17\x53\x21\x7a\x7f\x1f\xbb\xd7\x99\x30\x82\xdc\xb1\x4b\xdf\xad\x8c\xb6\x11\xca\xb7\xa9\x33\x58\x06\xc2\x08\x3b\x76\x9f\x8e\x60\xf5\xb2\x22\x08\x57\x38\xf5\xb1\xb4\xdc\x20\x34\xee\x96\xa8\x3c\xae\x56\x40\xd8\xb7\x24\x50\x22\xec\xfd\x36\x42\xa9\x74\xcc\xdc\xf2\x2f\xae\x04\xcc\x96\xda\xde\xf7\x45\x80\xc0\xec\x2b\x98\x50\x0c\xe5\x26\x2c\xbc\xdf\x17\x75\x5f\xea\x0a\xe1\x7a\x69\xd2\x37\x3b\xa3\x3c\xc2\x1c\x83\xe4\x53\xd2\xf3\xce\x13\x06\x65\x4e\xf0\xfb\xcc\x2c\x25\x98\x1a\x5f\x74\x58\x5d\x1c\x46\x70\xdb\x51\xb1\x20\x4e\x20\x90\xf0\xd2\xda\x60\x6f\xe7\x85\x0e\x82\x07\x6f\xd5\xdd\x4f\x4d\x0d\x04\x6f\xc7\xc7\xe2\x55\x71\x75\x04\x8e\xdd\x7d\x3a\xbf\x37\x96\x13\x5c\x57\xdd\x78\xdb\xf9\xf8\x1b\x03\x6a\x67\xe7\x68\xb1\x67\x98\x12\x26\xee\x7e\x69\x64\x2d\x31\x21\x18\x3c\xee\x62\x6e\xf1\xe0\x20\xec\xb8\x7b\x4e\x71\xed\x78\x33\x03\x27\x9b\xef\xcf\xb8\xc7\x61\x46\xd8\x94\x6d\xf7\xeb\xb8\xa0\x23\x21\xe6\xe7\xac\xad\xf2\xc2\x52\x04\xcf\xd4\xb3\x76\xdb\xca\xaa\x08\x7d\xdb\xe7\xed\xe4\x51\x2d\x27\xa8\xdf\xcc\x5a\x14\xf2\xee\x3b\x03\x8b\x2b\x5d\x43\x5d\x1c\xad\x08\xe1\x15\xab\x3a\xa3\xea\x95\x09\xc9\x3f\x2b\x86\x9e\xcc\x90\x23\x1c\xd8\x76\xe2\xd8\x88\x68\x11\x81\x3f\x9b\xd9\x27\x3e\x9e\x43\xa8\xed\x38\xae\x6e\x2a\x7b\x9f\xe0\x3e\xf0\x83\xbf\xe1\x80\x2f\x13\xca\xb7\x87\x2d\xa4\xdc\x4f\x11\xa2\x52\x58\x5f\x9a\x09\x3d\x61\x40\x40\x69\xb6\xf8\xfa\x5f\xe3\x53\x10\xd1\x7c\x61\x82\xa3\xb9\xa1\x14\x32\x2f\xbd\xf6\x44\x7f\x3e\xc9\xc4\x6d\x3f\x81\xbb\x32\x83\xb1\x4c\x88\x1c\xdf\x53\x14\xb7\xb7\x98\xb0\x55\x28\x55\xfd\xf1\x69\x37\x82\xb4\xc2\x5e\xd6\xa1\x33\xe2\x04\xfe\xae\x8e\x7b\x67\xd4\xb2\x09\x4b\xb3\x8a\xd3\xd5\xea\xaf\x13\xba\x87\xf7\xb0\xde\x3e\x75\x96\x09\x69\xeb\x15\xf7\x4f\x6e\x69\x67\xa0\x75\xf8\xab\x7e\xae\xd1\x53\x42\xb8\xe1\xfa\x43\x7b\xad\xce\x31\xd1\xa7\x2c\x56\xec\xa3\x14\x45\xc8\xac\x45\xc0\x92\x33\xee\x04\x37\xd6\xa8\x16\x1d\x97\xb3\x4c\xdc\x27\x73\xb6\xcd\xd1\x67\x08\x1b\x5c\xb8\x0a\x2e\x09\xfc\x64\xc0\xcd\x3e\xc4\xd3\xaf\xf4\x3f\x21\x63\x97\x36\xe0\xf7\xa8\xff\xbf\x60\x19\x3a\xef\xe3\xe2\x4c\x5d\x42\xe8\x51\x3e\x8b\x55\xf5\x75\x4c\x24\xfe\x14\xf6\xbc\xba\xb9\x9e\xd0\x28\x13\xf6\xe7\x4a\x93\x2a\xa1\x81\xdd\x71\x05\xff\x35\x7b\x82\xc7\x9c\x91\xed\x22\x7e\x7c\x84\x3d\x4c\xe1\x96\xf5\x87\x33\x08\xec\x91\xd1\x77\x2f\x0b\x27\x12\x82\xbd\xbe\xc6\x5c\x6e\xb8\x4b\x18\x95\x90\x7f\x74\x3d\x75\x9c\x81\xc4\x47\x69\xdd\x86\x9d\xca\x04\x51\xa5\xd4\xe1\xcd\x5f\xdf\x32\xff\x15\xa5\x1a\x6b\x87\x53\xd7\xa7\x11\xb2\x3e\xae\xd7\x79\x16\x68\x4f\x18\xeb\x7c\xc1\xe2\xf0\x41\x88\xc0\x19\x1f\x64\xcd\x2b\x73\x8c\x20\x65\xa0\xcb\x75\x6b\x13\x27\xe1\x80\xf3\xda\x0e\x63\x83\xf7\x0c\x08\x59\x0b\xb0\x69\x09\xd5\x32\xa0\xa7\x5a\x3a\xc0\xf6\x46\x82\xe0\x56\xec\x1f\x72\x65\x9e\x1f\xe1\xe7\x47\xf9\x79\xa7\x16\x17\x30\x47\x7d\x9d\x3d\xff\x86\xd7\xc3\x6b\x47\xd7\x3e\x90\x24\xb0\x29\x25\xe3\x6a\xc9\x35\xc2\x2f\x9f\xf0\x5d\xe6\xde\x19\x84\x84\x5b\x6a\x91\x1b\x6c\xed\x08\xb6\xca\x09\xfc\xf3\x2f\x9a\x12\xec\x2e\xf1\x1d\xf8\x38\x5f\x9f\x20\xf9\xa5\x28\xe7\x8a\xa2\x0b\xe1\xb9\x7d\xab\x88\xa8\xfb\x5d\xc2\xb9\x50\xe5\xfd\xde\xf1\xe2\x04\xe7\xfd\xd6\xee\x86\x2b\x55\x08\xdf\x76\xcf\xf8\x34\xfa\x35\x66\x0a\xd6\x9c\x11\x98\xff\x32\x2d\x88\x20\x74\xbf\xc2\x68\xc4\xef\x28\xa1\xd7\x96\x0b\x11\x19\xa9\x04\xff\xa2\x8d\x33\x25\x2d\x16\x11\xb4\x67\xcc\x7d\xb1\xb6\x73\x26\xa1\xf8\x75\xe7\x77\xad\x30\x7e\xc2\x29\xb9\x05\x31\x59\x06\x87\x4a\x31\xcc\xc9\x2b\x76\xda\xf7\x2c\xfd\x5f\x98\x98\x6d\x2f\x5f\x16\xca\x4e\x58\xa8\xb5\x7f\x5e\xc6\x39\x07\xc2\x78\x8b\xd1\x2d\x4e\x3f\x37\x26\x72\x56\x9e\xfa\x61\xf5\xb1\x8e\x89\xcb\x3b\xb5\x76\x59\x4c\xc2\xe5\x0b\x23\x3f\xc6\xad\x8c\x09\x1d\xc6\xe9\xe5\x99\x8f\x3c\x09\x2d\x4c\xf5\x91\x75\xa6\x47\x09\x02\x4d\xba\xbf\x06\xde\x86\x10\x2c\xc3\x47\x32\xca\xbe\x1e\x60\x42\xe8\x79\x03\x5f\xb6\xcf\x49\xe6\xbf\xd1\x9e\x4e\x5b\xbf\x94\x75\xa1\x84\x5c\xed\x9a\xa4\x01\xf3\x50\xc2\xed\x89\xe6\x65\x6f\x77\x87\x12\xb6\xca\x07\x6d\xca\x33\x0d\x25\xbc\x9a\x29\x9f\x91\x6a\x16\x4a\x78\xd9\x63\x24\x5f\x24\xe2\x4a\x28\x4a\xaf\x50\xfe\xf3\xcb\x8f\x50\x65\xfa\xfe\xe9\xcd\xde\x2a\x26\xf2\xf6\x37\xaa\x3a\xbc\xf7\x9b\x32\x3a\x96\xb7\x40\x7a\xc7\xc1\x43\x04\x9e\x48\xe2\x08\xeb\x89\x26\x64\x1b\x6e\xbd\x6c\xbc\xb4\x8a\xa0\x57\x14\xb0\x38\x5f\xa6\x8a\x50\x24\x74\x79\xf3\x86\xcb\x77\x09\x95\x19\xc1\x32\xbb\x6d\x73\x98\x60\x17\x79\x32\xb6\x9e\xab\x8a\x70\xe7\xe5\xf2\xcb\x3b\x27\x4b\xf0\xe1\x41\xe9\x97\x4b\xaa\x08\x46\xd7\xef\x47\x5d\x3f\x9a\x43\xd8\x20\xbe\xa7\x7e\xda\xcb\x7a\xc2\x4e\xce\x81\xcb\xfc\x2b\x1a\x08\xd3\xc7\x78\x0f\x94\xd4\x96\x10\x22\x50\x16\x8a\x56\x07\x82\x7f\x1f\x6d\xec\xd6\x08\x21\x24\x7f\x7d\xbb\x6f\xf0\xf6\x79\x02\xef\x36\xd9\x76\x91\xf7\x1a\x04\xce\x0d\xfe\x15\x2a\xd7\x92\x09\x8c\xa7\xfa\xd9\x9e\xf9\xfa\x04\xd3\xb3\xd1\xd9\x02\x9b\x57\x13\xe4\xbc\xf7\x44\x6b\xba\x2b\x13\xd6\x96\x68\x36\x0a\x4c\xd3\x24\x38\x29\x71\xdf\xe2\xcd\x7d\xc6\x44\xa4\x79\x96\x78\xfa\xe1\x11\x06\x46\x8f\xcd\x10\x9d\xbd\x59\x81\x20\xf9\x34\x88\x2b\xee\x88\x20\x61\xb3\x93\x5e\x6e\x95\xb7\x3b\x41\xfd\x91\x9e\xe6\xee\x2f\xc1\x04\xff\xe3\xce\x01\x8b\x12\xd3\x99\x08\xc8\x54\x9f\xc3\x2f\x1a\x4c\x48\xd3\xe0\x7f\x73\xde\xb5\x90\xb0\xfb\x1d\xeb\xda\x34\xfb\x39\x84\x22\x8b\x2c\xa3\xe3\x1a\xfb\x08\xae\x8b\x8f\xe7\x44\xae\x35\x20\x44\x09\x7c\xbb\xe1\xab\x31\xc0\xc0\x62\xb7\x93\x91\x7a\xb9\x15\x4c\x48\xb6\xf6\x5b\x0e\x9c\x32\x24\xbc\x50\xde\xed\x7e\x59\x54\x87\x60\xf0\x74\xe0\x50\xa6\xa2\x13\x13\x99\xf9\x71\x9f\xce\xf7\xb8\x12\x7c\xdb\xf4\x95\xb5\x16\xf1\x12\x62\x79\x45\xb4\xe5\xc7\x2f\x10\x72\xe2\x2b\x6b\xcb\x1e\xaa\x11\xfe\xbc\x1a\xe3\x0e\x5b\xaa\x44\x78\xe6\xbf\xed\x10\xa3\xfd\x2e\xc1\x55\x6a\x6c\xdf\x70\xe6\x33\x82\xd9\xae\x6e\xf3\xe7\x3c\x55\x84\xc1\x50\x74\x73\x71\x7e\x64\xc0\xb8\xe3\x7d\x4c\xf5\xe5\x3a\x42\xcd\xf4\x6f\x1f\x5e\x45\x38\x12\xa4\x1d\x6e\x48\xe7\x1d\x3f\xcc\x84\xc9\x9e\xae\x1a\x3e\xe1\x44\x26\xd8\x76\x72\x15\xda\xb1\x19\x10\xb6\x8c\x3e\x9e\x79\x31\xac\x94\x60\x25\x20\xca\x19\x1d\x66\x45\x70\x3f\x3e\xe3\xde\xae\xd7\xfa\x53\x60\xa7\xf3\xfd\x11\xfb\x89\x2e\x06\xbc\x33\xe6\xcd\x1d\x7d\x90\xcd\x84\x65\xc8\xac\x8e\xea\x17\x93\x0f\x88\xb7\xfc\x58\xe4\x31\x47\x82\xe5\x9c\x8a\xb9\x1f\x54\xbb\x98\x68\x91\xff\x63\x2e\xf8\x43\x77\x72\x25\x09\xd0\x39\x6e\x31\xca\xc0\xa9\xaf\xba\xf9\xdc\x6f\xb2\x98\x28\x73\xd2\xad\xd8\x38\x33\x89\x09\x6d\xff\x63\xee\x5b\xd9\xb7\xd1\x3f\xc4\x5d\x92\xcb\x64\xc8\xdf\x24\xe4\xbb\x59\xff\x38\xa0\xe8\x4b\x78\x1a\x29\x98\x97\x69\x9f\x4a\x58\xf4\x35\xee\x10\x67\x57\x00\x81\xdb\xc3\x71\x7d\x80\x3a\x3f\x81\xe7\x53\xa8\xd9\x2f\x8e\x8d\x84\x62\xb6\xb1\x7d\xa3\x0d\x82\x84\x4b\xaf\xa2\xc5\x64\x4b\xb6\x12\x5e\xb3\x7f\xcb\x39\x5c\x68\x49\xe0\x08\x8d\x27\xe1\x99\x0c\xc2\xf1\xe9\x27\xf2\x95\x9e\x2c\x21\x88\xf2\x1c\xdf\x22\x74\xcb\x9b\x60\xbc\xb7\x6d\xa0\x41\x68\x72\x05\x78\xb0\xe9\xab\xce\x2d\x45\xc2\xd1\xf6\x23\x95\xad\xdb\x17\x10\x9e\xf7\xa8\x8d\x5d\x28\xe2\x22\x9c\x8c\x2b\xfc\x1a\x75\xcf\x9f\x50\x78\xf0\xfc\x82\x0d\xef\x7e\x31\xb0\xd3\xa8\x3a\x24\xd1\x16\x0c\x1c\x2b\xfb\x92\x94\x9e\x68\x4c\xf0\x77\x29\x7f\xca\x39\x79\x4d\x91\xe4\xe6\x28\x99\xa9\x7a\x96\xf0\xa0\xf2\x47\xfa\x5f\x5c\xe2\x3d\x32\x77\xa8\x2a\x84\xd0\xba\xe3\x48\xcd\xde\x21\x1b\xc2\x74\x21\xf3\x96\xb1\x32\x69\xc2\x69\x36\xe5\x9f\xfa\x7b\x39\x08\xa5\xfb\x36\xed\xc9\x58\xb7\x86\xc0\x76\xa2\xeb\x66\xf4\x39\x6f\xc2\x89\x37\xa2\x57\xa2\x0f\x79\x13\x78\xb5\xca\xf7\x7e\x1c\xb4\x23\x78\x06\xb0\xa7\xb0\x7e\x36\x23\x14\xfe\xdc\x2c\xcd\xf2\xd0\x82\x70\x74\x8c\xdb\xe6\x59\x90\x21\xc1\xe5\x91\x90\xc9\xc6\x2f\xc6\x84\x80\x1d\x41\x46\x0f\xf2\x2e\x30\xd1\xd0\x28\xf9\xd3\xea\xfc\x75\xfa\x87\xc0\xf7\x8b\x0b\x3f\x2e\xbc\x4f\x60\x0f\x15\xe8\x7e\x65\x71\x97\x10\xfc\x50\xa0\xa2\x70\x4f\x1b\x03\xdb\xb4\x9c\xfb\x54\x2e\xcc\x23\x58\x45\xdf\x4f\x76\xe4\x5e\x4d\xc8\x95\x8e\x12\xd9\xfe\xfb\xd2\x14\xc4\x13\xbf\x42\x34\xff\x79\xc2\x0f\xa6\xd6\xb5\x83\x16\xea\x04\xee\x25\x7f\x3e\xdb\xb0\xf3\x12\x0e\xb1\x3d\x92\xcc\x2b\x5d\x4c\x38\x78\x64\x8e\xc3\x13\xee\x11\x06\xcc\xd6\x2b\xea\x6d\xbb\xa8\x47\xf8\x25\x71\x4b\x69\x55\x89\x34\x81\x39\x6e\xeb\x99\x93\xee\x49\x88\xf2\x2c\x91\xec\xdd\xe4\x4c\x78\x99\x58\xda\x61\x59\x20\x4b\x10\xbe\x90\x66\x1b\xe4\x38\x87\xb0\xa0\xc1\xeb\xf3\x69\x8f\x04\x26\xe2\x9e\x17\x7b\x0b\x9f\xf7\x26\x04\xe9\x8e\x67\x72\xf3\x94\x32\x71\x63\x7b\xe6\xf6\xab\x67\xf4\x09\x22\x03\x29\xb6\x47\x2d\xc3\x09\x27\x1f\xaa\x8a\xb9\x35\x86\x13\x82\x1e\x54\x6c\x70\x2e\x88\x25\xe8\xc7\xf5\x8b\x05\xa4\x6c\x27\x74\x87\x09\x09\x68\xf7\x28\x12\x6c\xf8\x5e\x73\x4d\x8f\x93\x20\x3c\x3e\x7c\x5d\xd5\xf6\xf0\x76\x42\xe6\x03\xd7\xdf\x6f\x26\x57\x89\xc5\x81\xbf\x72\xac\x5d\xa4\x09\xd3\x15\x32\xaf\xf1\x8f\xce\x26\xe4\x35\xf6\xf2\x89\xce\xf8\xc4\x40\xda\xb5\x38\x1b\xce\xcf\x5a\x04\x55\x3f\xbd\x24\xa5\x44\x35\x82\x6d\xf4\x75\x55\xf5\x80\x07\x84\x84\xbd\x96\x0f\x7f\xc8\xa6\x30\xb1\xf0\xf2\xd3\x83\x8e\x87\xa7\x11\x0c\x8a\xfc\xf7\xfd\xb6\xe5\x24\x88\xbd\xf5\xbd\xc3\xd7\xac\x49\xb8\xc3\xb9\xfd\xb6\x8b\xdf\x62\x42\xef\xbb\x8a\xa2\xc2\x3f\x1b\x09\x7d\x7e\xee\x1b\xb9\xbd\xf2\x99\x38\xac\x51\xca\xb7\x6d\x86\x06\x21\xe6\xce\xc7\x8e\x41\xc3\x65\x04\xb1\xfa\x94\x79\xbb\x5e\xdc\x25\x5c\x6a\xca\xb5\x8c\xcc\x3e\xcc\x84\x56\x6b\xa8\x7f\xc0\xa0\x07\xa1\x34\x76\x57\x45\xc9\x32\x7e\xc2\xbb\xbb\x27\xea\xb9\xbf\xa6\x33\xe1\x75\xbd\xb7\x7c\xf3\x97\x28\x02\xcb\xfc\x77\x9b\x1f\x6e\x76\x25\x38\x5e\x48\xf5\x1a\xdd\x7d\x81\x89\xc8\x16\xe5\xa7\x5a\xbe\x6b\x27\x8f\xee\x95\x7a\xe5\xc7\x79\x08\x8b\x8c\x66\xd6\x24\x98\xe8\x12\xd4\x4e\xbf\x15\xb9\xf4\xd5\x8d\x09\x1d\x0d\xbd\xe9\xc6\x5e\xea\x84\xeb\x2b\xd6\xd6\x9f\xab\xe8\x65\x20\xca\xba\x30\xdb\xf1\x7a\x3a\xa1\x54\xd5\x70\x65\xa6\x71\x0e\x13\x65\x47\x12\xa4\xc3\xf9\x35\x09\xcd\xfc\x35\x41\xb1\x1c\x76\x84\x98\xce\x0f\xc2\xc9\xf9\x7c\x84\xd6\x68\xd9\x8f\x5e\x8a\x0c\x42\xb8\xb2\xac\xe9\x2e\x36\x1f\x26\xde\x7b\x6a\xf4\xa4\x9a\x2b\x11\xdc\x65\x67\x0f\xdd\xaf\xe9\x67\x20\xb5\x82\xbb\xdc\x3c\x20\x96\x30\x7d\xc8\x75\x69\xf2\xe9\x3b\x04\xc1\x28\xad\x6e\xbd\x89\x6d\x04\x56\x25\x0b\xa7\x9e\xe1\x0d\x04\x73\xe7\x1d\x72\xad\x2d\xca\x84\x93\xb3\x38\x67\x33\x3d\xc4\x09\xaf\xb3\xbf\x5b\xb1\x07\x8a\x10\x5e\x3a\x5c\xae\x62\x57\x4f\x9b\x82\x2d\x9c\x39\x92\x5e\x47\x4f\x11\x9c\xc3\x02\x1f\x15\x5d\x54\x22\x94\x3d\xf7\xa2\xe1\x88\x03\x84\x25\xca\x69\xda\x46\xa7\xe5\x09\x9b\x63\xc3\x3f\x98\x9c\xad\x22\x6c\x4c\xd8\x2d\x78\x26\x46\x9e\x90\x2e\xfd\x5b\xe4\xf6\xf0\x19\x82\xe3\x8d\x9b\xa6\x47\x9f\x35\x10\xdc\x96\xda\x5f\x6d\x19\x69\x22\xd4\x2c\xaa\xdd\x26\xb8\x28\x83\x50\x93\x70\x99\xf3\xc5\xe3\xe7\x04\xd6\xe1\x1f\xce\xa3\xbf\x56\x13\x98\x33\xa2\xf8\x1c\x2c\x58\x09\x66\xbe\x7d\x4d\xdd\x42\x27\x09\x3e\x22\x59\x26\x87\x3e\x96\x13\x66\x0d\x57\x8a\x95\xa6\xa8\x13\x1e\xa4\xb0\x79\x2c\xfd\x59\x4e\x78\x75\xdb\x67\xc7\xc5\xf8\x0a\x26\x38\x46\xa6\x37\x88\x47\x7d\x64\x82\x5f\x61\xf5\xef\x87\xaf\xf6\x32\xf1\xc5\xaa\x97\x19\xbc\x3d\x8f\xa0\x6f\xa7\x76\x44\x4a\x24\x87\xa0\xc3\x53\xa1\x1c\x7f\x34\x9b\x10\x3e\xab\xf9\xea\xdf\x91\xc4\x43\x66\xdc\x5f\xfc\xe1\xbf\x36\x3b\x86\x6d\x2f\x21\x7a\x8f\xd0\xf0\xda\xbc\x08\xc2\x92\x21\xc5\x9f\x33\x6a\x17\x11\x94\x62\xef\x70\x8f\x14\xf1\x11\x7a\x83\xb7\xe5\xde\x3c\xb4\x82\xd0\xac\xbe\xe2\xc6\xec\xad\x4b\x08\x5f\x6e\xfb\x74\x1b\x06\x82\x81\xfe\xb9\x37\xb6\x84\x89\xc9\x10\x6e\x31\xd2\x6c\x34\xcc\x78\x08\x25\x5c\x1c\x3b\xa5\x7c\x04\x08\x26\x97\x76\x74\xbd\xdd\x7d\x87\xe0\xee\xc4\x3b\x74\xb9\x52\x83\xe0\x22\xb3\x41\x5a\xe4\x9a\x0a\xa1\xb9\x41\xe1\xa4\x4e\x9c\x0e\xe1\xe1\xfa\x1d\xab\xdc\x0e\x67\x13\xec\xed\x3f\x28\xa6\x27\xb9\x13\xb8\xcd\x8a\xd5\xa2\xa2\xcc\x99\xd8\xca\x57\xf8\xdb\xac\x3f\x88\x10\xbf\xee\xee\xd2\x47\x1f\x82\x08\x8b\xb3\x53\xae\x90\x7c\x08\x41\xa2\xf3\xb2\x62\x79\xf8\x5e\xc2\x8a\x85\x91\xbd\x7c\x9d\x8f\x09\x99\x01\x33\xd6\x89\x3e\xdc\x4d\x38\x5a\x51\x79\x8e\x51\xa1\x48\x30\x97\xb7\x5b\xbb\x24\xc8\x80\xd0\xf1\xf9\xc1\x60\xe2\xe3\xc9\x0d\x7d\x69\x9d\x18\x5b\x83\x3b\xa1\x62\xcb\x95\xfe\x1a\x83\x5c\x26\x8e\x75\xdd\x7f\x63\x91\x96\x46\xb8\x62\xe3\xe3\xd7\xaf\x26\x41\xf0\x58\xf9\x46\x3e\x7c\xd7\x52\xc2\x86\x3a\xe9\x1a\x6a\x67\x27\x2c\xd3\xb7\x4b\x3f\xf1\x68\x2e\xa1\xf0\x82\xd6\xcb\x88\xbb\x7c\x84\xf6\x30\x8f\x98\x88\xa4\x18\x82\x55\xc2\xce\xc0\xf3\xc1\x85\x84\x82\x1b\xe5\x87\x83\x4b\x45\x09\xdd\x67\xf7\xff\x99\xbd\x6e\x16\xa1\x34\x9b\x53\xdc\x97\x2b\x9f\xc0\xce\x36\x57\xd3\x8b\xb3\x80\x09\x95\x56\xd5\x77\x7d\x7a\xd6\x04\x51\xcf\x1f\xf8\xfe\x66\x2f\x21\xff\x71\x4d\xa1\xd3\xca\x42\x06\x7c\x89\xc1\xc3\x6b\xaa\x49\xf0\xff\x16\xff\xe0\x50\x0b\x27\xe1\x9b\xea\x6d\xa6\xba\x95\x11\xa1\xa8\x99\xdd\xd0\xe0\xee\x02\xc2\xb3\x62\xde\xef\x27\x53\xae\x11\xec\x43\x3e\x95\xd4\x1d\xeb\x61\x20\xf1\xdc\x1e\xed\x27\xa1\x91\x4c\x2c\xb2\x91\x18\x1d\x11\xab\x20\x98\xef\xbe\xe5\xf3\x29\xb7\x90\x50\xe1\x3d\xd1\x3e\x37\xb7\xf2\xbf\x20\xea\xb0\x6f\x0b\xcf\xe4\xd7\x78\xcb\x49\xf1\x8b\x63\xf3\xb4\x09\xa1\xfe\x2d\x72\xf3\xda\xb6\x12\x2e\xfd\xac\x5a\xad\xdb\x63\x4e\xf0\x5b\xe9\x13\xa6\x7f\x47\x92\xb0\xea\x64\x7a\x9e\x87\x8f\x28\x81\xdb\xe8\x7d\xf7\xa1\x3e\x77\xc2\xa6\x90\xce\x8c\x5e\x69\x35\xc2\x82\x95\x76\x57\x37\x19\xf6\x12\x1e\x15\xf1\x78\xfa\x3f\xb9\xc1\x44\xdc\xda\x95\x49\x7f\x71\xc5\xfa\xf1\xaa\xf6\xb0\xeb\x84\xf2\x6f\xde\x8f\x78\xa6\x4b\x12\x0e\x8f\x48\xb9\xab\xf4\xde\x26\x1c\x4c\xe7\x77\x4e\xba\x9f\x45\xf8\x18\xd4\x51\xf3\x28\x7e\x07\x81\xdf\x2d\x4c\x79\x41\xb7\x31\xa1\xea\x00\x1b\x26\xcc\x9c\x09\x55\xbf\xef\x84\x2d\x0c\x59\x40\x38\xc2\xe6\x2c\x9f\xf0\x3c\x66\x0a\xee\x98\xcd\x50\xfc\x24\x2e\x4f\xe8\xdd\xb6\xae\x59\xb5\xc8\x91\x89\x46\x8b\x95\x3c\xee\x45\x86\x84\xbc\xc1\x25\x7f\xae\xdb\x95\x12\x06\x7b\xee\x1c\x93\xdd\x59\x4a\x78\xcf\x77\xc8\xf1\x55\x70\x39\xf3\x5f\x11\x32\x78\x74\xec\x65\xcb\x71\xc2\x88\x24\x8b\x2d\xdf\x9d\x56\x26\x36\x0b\x46\x1e\x39\xa1\x1a\x44\x98\xd3\xc5\x72\x52\x3b\xf5\x02\xfd\x2b\xbf\xb8\xb6\xb5\xc9\x95\x73\x12\x9a\xc8\xee\xe6\xf2\xa0\x25\x84\x86\xe4\x57\x8f\xfc\xf6\xf6\x31\xfe\x61\x85\xf8\xab\xc3\xc2\x66\x9f\x18\x38\xbc\x89\x4b\xe7\xed\x23\x45\x42\xdc\x79\x59\xce\xd5\x27\x1e\x30\x31\x2c\x5c\x18\xf4\x41\xf9\x21\xe1\x7e\xcf\x12\x8f\x23\x8d\x76\x84\x40\x4f\x5b\x91\x6f\x22\xaf\x98\x70\xec\xba\x29\xde\xcc\xa1\x47\xc8\x51\x49\x1b\x5f\x89\x73\x04\xaf\x89\xc6\xfd\x29\x09\x9a\x84\x1f\xba\x7a\xef\x1d\xc5\xb6\x11\x9e\xba\xf2\xf8\x71\x2d\xbb\x49\x08\x7d\xe4\xcc\xa7\x3a\x11\x45\x30\xbb\x28\xbd\xef\x7a\x78\x09\x41\x38\x75\xbd\xf6\xeb\x89\xac\x29\x88\xa9\xfb\x23\xff\x6d\xf4\x34\xf3\x5f\x51\x3f\xac\x70\x4c\xe5\xc8\x6e\x82\xbd\xf8\xd7\xa0\x5b\x45\x87\x09\x55\x24\xbd\x61\x3c\x6c\x37\x41\xb5\x4e\xd7\xaa\x64\xa5\x09\xf3\xdf\xe8\x3b\x67\xf8\xaa\x7b\xf3\x4e\x10\xe6\x29\x6b\x7d\x71\x56\xf5\x9d\x52\x78\x6d\xd3\x99\x1f\xa3\x2d\x08\x36\x96\x29\x96\x16\xfa\xe5\x04\xa9\x86\x83\xe5\xaf\x57\x36\x32\xa1\x36\xaf\x48\x40\x84\xca\x09\x43\xae\x3e\x57\xe4\xb7\xc7\x11\xe6\xfe\x1a\x48\xa2\xaa\xeb\x84\xfe\xbd\x1b\x8f\x18\xe8\x5d\x66\x42\xe2\x64\xc9\x46\xb7\x78\x6f\xfa\x07\x07\x6b\x4e\xd3\xa0\x99\x55\x0c\xa8\x15\xda\x48\x64\x1e\x0c\x61\xe2\x9a\x67\x61\xdb\x61\xf6\x75\x84\xd4\x97\x42\xbb\x2a\x67\xa8\x13\x62\x96\xb1\xd6\xaf\x2a\x92\x23\x24\xec\xdf\xe1\x90\xa1\x7a\x8f\x89\x5d\xea\x4d\x33\x95\x65\xf3\x99\x70\xd8\x51\x6b\xd3\x7f\x3a\x91\x89\x5f\x2b\x43\xda\x6c\x3f\x9f\x26\x44\xfc\x7c\x7b\x57\xfb\xad\x3b\x41\x21\x4d\x65\xcc\x96\xe5\x35\xc1\xe0\x40\x83\x70\x5f\xe3\x6b\x82\xa6\xe6\xf2\x6d\xd3\xd2\x2a\x09\xbf\xd6\xf6\xab\x67\x4f\x7f\x4d\x70\xb9\xb6\x22\xee\xbe\x7b\x39\xa1\xdd\x22\x44\xfc\xea\xae\x08\x82\xf9\x7a\x73\x3b\x95\x08\x11\x82\x92\x88\x42\xa6\x6c\x4f\x17\xe3\x1f\xf4\x26\x20\xca\x52\xf2\x9e\x81\x71\xf7\xb3\xb5\x0a\xce\x12\x84\xa1\x37\x36\x43\xad\xbf\x2a\x08\x89\xa7\x8f\x9f\xf6\x14\x2b\x23\x14\x96\xbf\x49\x2c\xf8\xf4\x80\xd0\x21\x26\xab\xc5\xf9\xa1\x82\xf0\xc5\x4c\xc7\x33\x70\x71\x14\x21\x66\xbf\xdf\xcc\x53\x66\x16\x04\x1d\x77\xfb\x73\x41\x66\xd7\x08\x0f\x2b\xb3\xf6\x36\x4f\x62\xf5\xc9\xe5\x2b\xd9\x3e\xac\x26\xcc\x70\x8e\x9d\x55\x74\x61\x35\x61\x5f\x64\xed\x59\xd1\x44\x69\x02\xe7\xb9\x52\x93\xcb\xda\x9b\x08\x9f\x5d\x33\x93\x3e\x68\x6e\x65\x42\x20\x97\xaf\x44\xf9\xbe\x3a\xfd\xc3\x5c\x5f\xbf\x3b\xda\x5e\x3d\x0c\x78\x24\x18\x5f\xd1\xb3\x18\x61\x40\xc1\xa8\xd7\x83\x65\xf7\x34\xfa\x87\x98\x9c\xae\xaa\xc4\x8e\xe9\x84\x6d\xe7\x3a\x17\x94\xe9\x58\x11\xae\xbd\x64\x7b\xcc\x69\xba\x80\xa0\xa8\xe0\x95\x3e\xef\xb7\x24\xa1\xd4\x7b\x91\x81\xca\x51\x23\xc2\xdd\xf4\x05\x6c\xa1\x2b\x36\x12\xce\xa7\x6a\xf4\x0d\xac\x17\x9c\x02\xb3\xd5\x1f\x3c\xe7\x2c\x04\x03\x15\xcb\x9d\x3a\x86\xb8\xfa\x19\x30\x63\x2a\x2f\xe2\x2b\x9a\x49\xa8\x6e\xb1\xee\x3c\x27\x34\xc2\x40\xdb\xdb\x96\x9f\x0e\x9e\x9a\x04\x8d\xea\x23\x8a\x19\x52\x1a\x04\x5d\xd9\xfb\x1f\xcf\x6a\x81\xf1\x0f\x2a\xfc\xa7\x1b\x53\x4f\xf2\xd1\x3f\xc8\x48\x44\xca\x4d\x57\x6c\x62\x8c\xfa\x77\x4a\x6d\x99\x3b\x87\xf0\x73\xfc\xfc\x91\x69\x91\x8b\x09\xcb\xa7\x7d\x69\xe5\x29\x0e\x20\xec\xa9\x2d\xbf\xf0\x3b\x60\x07\xe1\x88\x5a\x58\x96\xb1\x9f\xf3\x14\xb4\x6f\x09\x3f\xe1\x9a\x69\x41\x08\x74\x35\x1f\x51\x5f\x7f\x85\xb0\x92\xdb\x4b\xba\xc1\xf4\x0a\xa1\x3e\xf0\xed\xc4\x5a\xbd\xe2\x29\x08\xcb\xde\x7d\x2d\x25\x31\x8b\x90\x1e\xfe\xc2\xaa\xf3\x60\x36\x61\xfb\x82\x05\xc2\x2e\x1d\xf5\x84\x2e\x05\xad\x15\xbf\x77\xb2\x10\xb6\x1d\x9c\xb5\x68\xcf\xd1\xbd\x04\x1d\xa5\x23\x22\x75\x33\x1e\x31\xe1\xfa\xe6\x47\x68\x4c\xa9\x00\xe1\xf2\x9a\x92\xbe\xb4\x6f\x2f\x08\x66\x57\x5f\x44\x58\x5e\x6f\x24\xd4\xfa\x1a\x33\x44\xfd\x1b\x09\xd5\x4d\xa5\x43\xf7\x4e\x55\x12\x8c\x33\x7c\xa5\x64\x0d\x5f\x11\xe6\xec\x97\x5e\xa4\x92\x50\x49\x68\xf9\x91\x6c\x35\xba\x76\x98\x01\xd3\x91\x0c\x99\x7a\xa9\xab\xf4\x0f\xf3\xdf\x06\x7d\x69\x5c\x13\x4d\x58\xa3\x34\xc4\x71\xfd\x40\x3c\xe1\xea\xb8\x88\x7f\x71\xee\x36\xc2\xdc\x4d\xbe\xaf\x2d\xbe\x97\x10\xce\x38\x74\x3d\x10\xd4\x74\x23\x38\xb2\x47\x2a\x6d\x9d\xb6\x96\x90\xd8\x98\xe6\x1d\x90\xbd\x9f\x70\xfe\x96\x84\x6a\x77\xc8\xe4\xaa\x75\xea\x97\xfc\x44\xcb\x22\xc2\xd7\xe9\x3e\x55\x5a\x4f\x96\x12\x8e\x56\x8a\xfa\x48\x28\xd6\x33\xf1\x8a\x6f\x8f\x95\x23\x43\x8d\xe0\x53\xac\xe8\x34\xfc\xb6\x90\x90\xb9\x8c\x5d\xf9\x2f\xc2\xd2\x1e\x32\x16\xf4\x35\x31\xfe\x81\x37\x95\xa3\xa7\xf9\xa1\x12\xe1\xfa\xb7\xdf\x25\xb6\x61\x02\x04\xe7\x8a\xae\xf9\xb2\xd5\xa6\x84\x4d\x89\xab\x3f\x6f\xda\x67\x40\x58\x59\xf2\x62\x8f\xef\xbb\x08\x26\x3a\x7b\x2f\xcc\xde\xdd\x28\x4b\x68\xb4\x33\x52\xc8\x3a\x12\x4f\x38\xed\xb2\xa0\xf5\x57\x5d\x3a\xc1\x55\x35\xb0\x36\xab\x3d\x9d\xb0\x8c\x6d\xc5\xb7\x39\x51\x46\x04\x4d\x2f\x6f\x7c\x38\xc7\x47\xa8\xdd\xa1\x76\x62\xbc\x76\x90\x01\x8e\x6f\xf7\x33\x79\xeb\xa6\x13\x2e\xa8\x98\x9d\x3a\x5f\xd5\x42\xc8\xf2\x57\xb9\x56\x95\xbd\x69\x0a\xbe\x87\x7f\x3a\xfe\xe9\x4d\x2b\xe3\x1f\xaa\xf9\x0b\x6f\x1e\x5b\x2f\x49\x30\xe1\xb8\x47\x9f\x33\xe7\x10\x0c\x6f\x49\x28\xec\x55\xbb\x48\x78\x50\x30\xff\x64\x60\xa7\x1e\x41\xea\xc0\xe0\xfe\x0a\x61\x35\xc2\x83\x43\x76\x8e\xb3\x24\xa7\x13\x24\x74\x9d\xd3\xd7\xfb\x9e\x26\x38\x8d\x18\xa7\xd9\x6d\x6f\x65\x42\x6e\x74\x5a\xbb\x4a\x75\x3e\x03\x52\x45\x2e\x82\x32\xd3\xe3\x08\xf5\x6b\x0c\xf5\x85\x98\x65\x04\x9d\xa4\xdc\xce\x38\x93\x4b\x84\x79\x6d\x7a\x3f\x35\x44\x26\xb7\xb9\xd8\x2a\x7d\xc7\x2b\xe5\x84\x2e\x0f\xf5\xa7\xbc\x79\xaa\x84\xc7\xc5\x43\x07\x85\xf7\xae\x61\xe2\xa4\x43\x51\x92\xd2\xb4\x74\xc2\x8e\x03\xdd\xa9\x8f\x52\xae\xd0\xbf\x52\xa4\x18\x57\xf0\xf2\xbb\x22\xa1\xc8\xeb\xe3\xdd\x75\x79\xfc\x04\xb7\x8a\xad\x6b\x16\x97\x58\x4e\x41\x64\xf1\x95\x37\x6a\x23\x3f\x18\x30\x1a\xca\xdd\xd6\xb1\xc7\x92\x70\x49\xe1\x75\x6d\xc5\x12\x3b\x82\x43\xc7\x5d\x0e\xf9\x39\x2e\x04\xcd\x31\x9f\xe0\x47\x6d\x76\x53\xb0\xf9\xcf\x30\xab\x2e\x1f\x4a\xb1\x61\x47\xc5\x6b\xe1\x2d\xef\x19\x08\xfe\x78\xea\x88\xa0\x16\x0f\x41\xe5\xec\x34\x9a\xed\x29\x49\x88\xee\x76\xf2\xdd\xf6\x52\x9f\xe0\x57\x71\x54\x62\x49\x8d\x01\x81\x04\xca\xce\x8c\xfe\x96\x25\x04\x3c\x52\x60\xd9\xf7\xc1\x8e\xe0\xe3\xee\x71\x3b\x8e\xdf\x93\x20\x2b\x6a\x57\xc4\x59\xcf\x20\x2c\x15\x90\x6f\x6a\x0b\x52\x23\x98\x3d\x93\xfd\xf4\xf6\xb4\x34\xc1\x64\xdd\xe5\x79\x1a\x1a\xb7\x98\x48\xd2\x9d\xf7\x63\x94\x6f\x2f\xc1\xfa\x7d\x5b\xcc\x25\xc9\x42\x82\x45\x15\x67\xb0\xd5\xed\x32\x06\x96\x7f\x7f\x7f\x76\xfe\xe7\x2d\x84\x5b\xbf\x33\x2a\x6b\x64\xb9\x08\x27\x04\x3f\x31\xbd\x9e\xac\x22\x54\x34\x94\xa8\xb9\xb7\x7f\x66\x20\x73\xd5\x61\xa7\x34\x16\x4b\xfa\x07\xa5\x45\xac\xe7\xcc\x26\x1f\x2b\xbd\x36\xee\xf5\xef\xa6\xfd\x60\xe0\xf5\xef\xaa\x17\xfb\xdf\x6b\x10\x42\x8a\x0e\xe4\x0b\x46\xb4\x31\xf0\xd6\xc8\xb6\x2b\x3c\x3c\x8e\x20\x60\x75\x52\x2f\xa4\xb4\x92\x70\x63\x9d\xb2\x70\x9c\x76\x26\x61\x41\x11\xf7\xcf\xd3\x26\xca\x53\x70\x6b\x6e\x8a\x56\xb4\x7d\x1f\x03\x62\xad\x86\x35\xa9\x1a\x76\x04\x99\xa5\x9b\x73\x5f\x4e\x5e\x9b\x3c\x17\x3d\xdd\xa5\x95\x20\x45\xf8\x25\xff\x72\x37\x6e\x58\x13\x92\x4e\x98\xc8\x2f\x7f\xb1\x80\x10\x6f\x13\x7a\x44\xb4\xdd\x8b\xa0\x54\xbb\xe3\x4a\x87\xff\x5c\xc2\x99\x84\xcc\x1d\xbb\x8d\x86\x19\xd8\xf0\x7a\xd3\x8d\x4d\xb7\xae\x13\x16\xf4\x5c\xaf\xd9\x60\xb2\x8a\x30\xb3\x93\xc3\xe2\xcf\x55\x1f\x02\x66\xe7\x6b\xbe\x7a\xbf\x86\xa0\x2a\x65\xb6\xfe\x95\x07\x11\x1c\xb7\x72\x29\xc9\xdd\x5a\x46\x68\xe4\xcd\xfa\x55\x74\x79\x01\xc1\x65\xdf\x85\x33\x69\x2b\xf5\x08\x43\x2c\x9f\xda\xca\xde\xa7\x12\xc4\x52\xf9\x56\x6a\x9d\xec\x67\xe0\x4b\x71\xa7\xf9\xf8\xb9\x45\x84\x0c\xc3\xeb\x6c\xc1\x8d\x6d\x4c\x84\x68\xea\x3c\x88\x10\xdd\x40\x08\x7f\xf4\xe8\xf9\x4c\xcd\x62\x06\x12\xe6\x98\x76\xb9\xbe\xd3\x26\x48\xe5\xbf\xdc\x31\xa1\x3e\x9b\x50\xb6\x3a\x23\x56\x78\xf5\x2a\x42\x50\xc4\xcc\x27\xdb\x13\x55\x08\x39\xc9\x8e\x9f\x6b\x9e\x7f\x60\x20\xf2\xfc\x83\xa6\x95\xaa\x6a\x84\xa8\xd0\x65\x85\x2d\x2d\x52\x04\x9b\x2d\xca\xcc\x98\xe2\x30\xc2\xe1\x9c\xfb\x19\x7d\x8e\xd6\x84\xc6\x1f\xea\xfb\xf1\xb4\x90\xb0\xa9\x7e\xb5\xfc\xf2\xf4\x5c\xc2\xcc\xad\xb3\x4c\xfe\x96\x55\xb7\x4c\xf6\x73\x5f\xc9\x25\x68\x19\xc8\x0b\x26\xe5\x9e\x66\xe2\xf7\xaf\x6c\xc7\x8b\xc7\x42\x09\x05\x33\x16\xb6\x2d\x32\x1d\x61\x60\x96\x45\x75\x82\xfc\x1e\x3e\x82\xed\x2c\xa9\x73\xf7\xf4\xe3\x09\xa7\x0e\x63\xc7\xff\x1f\x4e\x7e\xb4\xf4\x3e\x38\xab\x68\x0a\x6c\xfc\x0f\x5f\xfc\x0b\xee\xcb\x3c\x25\x23\xfb\x5e\x30\x10\x78\x73\x5c\x66\xf1\x57\x23\xc2\x90\xb9\xac\x82\xcb\xc9\x79\x84\x52\x27\x9d\x61\xe9\x88\x61\x06\x86\xcb\xc4\xe4\x03\x7b\x57\xd1\x3f\xc8\x3c\x3b\x94\x7a\xa5\x6b\x36\x41\x7d\xe0\xfe\xc5\x15\xba\x5d\x0c\x8c\xce\xda\xf8\x75\xa7\x86\x36\xe1\xf3\xf5\xe4\xae\xf3\x22\x86\xf4\xaf\xfc\x0f\x51\xdd\x46\xdf\x54\x7b\x85\x09\xec\xeb\x3c\x8b\x9f\xca\x12\xe1\x47\x1d\xeb\x79\x2b\x49\x09\xc2\x32\x9d\xfd\xd3\xfb\x67\x58\x10\xd4\x7c\xe3\x77\x1e\x1a\x73\x21\x18\xfe\x3e\x77\xd4\xb4\x5d\x99\xb0\x3d\x3e\x69\x6f\x28\xbb\x06\x21\xce\x4c\xe3\x82\xaf\xd3\x26\xc2\xd5\x00\x6d\xed\x89\x97\x4e\x04\xa1\xd5\xc3\x57\x27\x7c\x1c\x09\x3b\x5d\x43\xd7\x29\x71\x6b\x12\xce\xc5\xbc\x54\x5e\x9f\xe3\x49\xf0\xcf\xb8\xb7\x32\xb7\x7d\x05\x41\x39\xb5\xb8\xaf\xf8\x73\x22\xe1\xe0\x95\x48\x1f\x6b\xc9\xe3\x84\xae\xc2\xb7\x7c\x5a\x35\x3f\x08\x69\x8b\xd8\x2b\xd6\xb3\xfc\x20\xdc\x28\x9f\xeb\xe4\x31\x54\x4e\xd0\x38\xf9\xc9\x27\x80\xbb\x82\x20\xab\xea\xe5\x78\xea\x83\x14\x81\x5f\x63\x38\x71\xad\x55\x30\x13\xd1\xee\x7f\xac\xca\x6a\xec\x08\x35\x0f\x94\xa5\xbf\x4a\x89\x13\x36\x05\x14\x87\x5f\x58\xc5\x4b\x10\xda\x70\x3a\xdb\xda\x6b\x94\x81\x96\xef\xc5\xbc\x42\x69\x9a\x84\x72\x17\xc6\x4f\x05\x35\x03\x42\xec\xa2\x41\x8e\x53\x7f\x56\x10\xa2\x66\x48\x5a\x36\xd5\xb2\x12\xe4\xc2\x64\x67\x15\xdd\xb1\x20\x88\xd9\x0d\x44\x37\x6a\xae\x26\x68\xeb\x6f\x3a\x6b\xbd\x49\x82\x70\x67\x5e\x8b\xf5\xe1\x99\x62\x84\x8a\x4b\xa9\xbc\xfc\xe5\xa6\x84\x57\x4a\x21\xaa\xeb\xb9\x43\x08\xd7\x13\x0f\x6c\x61\x09\x8d\x20\x78\xef\xb2\x78\xa6\x5f\xaf\x44\x48\x6f\x57\x5b\x6a\x23\xa9\x49\xe8\x33\x3e\x5c\xdd\x2f\xd0\xcf\xf8\x07\x2d\x51\xad\x3d\xb6\xb7\xf2\x08\x4b\x7b\x46\x74\x64\xe3\x95\x09\xf3\x7c\xb6\x28\xd9\x1e\x71\xf9\x2f\x18\xca\x5e\xe0\xb1\xac\xd4\x21\x74\x7d\x60\x3e\x7e\xf8\xc3\x99\xb0\xb7\x63\xde\xcf\xb7\xcb\x75\x08\x37\x57\x7d\x9f\x35\x96\xdc\xc1\x80\x9a\xa8\xb5\xfd\x52\x4d\x49\xfa\xbf\xa0\xe7\x11\xfc\xc4\xef\xc0\x47\x06\xe6\xa5\xd9\xbc\xe6\xe9\xaa\x65\x42\xcd\x5e\xfd\xb9\xb0\xda\x5d\x82\xc1\xe1\x00\xa3\xef\xac\x86\x84\x65\xf7\x53\x67\x6b\x3a\xb4\x11\xcc\xf2\x7f\x3f\xef\x0a\x78\xcd\x44\xdd\x35\xae\x59\x0a\x5b\xc3\x98\x28\x9d\x6b\x6f\xa4\xbf\x3a\x94\x10\xc8\xf1\x98\x56\x3b\xaa\x10\x36\xf9\xf5\x5b\xbb\xbc\x67\x10\xe4\x06\x86\x0e\x6b\xb2\xdd\x25\x0c\xeb\xef\xbf\x32\xd7\xe3\x0a\xe1\xb8\x4a\x72\xd3\xe2\xb9\x5d\x84\x47\xa3\x79\x57\x7d\x63\xc3\x08\x6d\x4d\x73\x1e\x32\xaf\xdf\x9d\x82\xd6\xb8\x2b\x8b\x3f\x26\xdc\x25\xcc\xbe\x61\xc1\x55\x36\x59\xce\xbc\x10\xdb\x79\x98\x7d\x3b\x13\x7b\x63\x25\xee\x9b\xec\xf6\x24\xdc\x2a\x4b\xaf\xb4\x16\xd9\x4c\xff\xca\xff\x50\x1d\xd2\xd6\xb8\xf1\xe1\x39\x42\xc4\xfb\xef\x9d\xfa\x5c\x62\x84\x93\x3e\xeb\xf6\x19\xb5\x0f\x33\x60\xbb\xfe\x42\xe0\xd9\xef\x9f\xa6\x40\xe6\x89\x86\xdb\xf6\xc3\x33\x09\x5f\xde\xbe\xdc\x96\x6d\x7d\x99\x70\x34\xe6\xc4\xb8\xa7\x59\xf0\x54\xcc\xf4\xdf\xd8\x76\xe2\x3e\x61\x9e\xcc\xd3\x9c\xbf\xb8\x6a\x20\x3e\xbb\x7d\x12\x07\x8d\x14\x64\xe3\xd2\xaa\x98\xf0\x7d\x61\xbc\xea\x6f\x11\x1c\x66\x7f\x55\xfd\xc4\x83\xb0\x20\xde\x75\xdf\xcf\x6f\x6e\x04\x09\x25\x95\x3a\xee\xde\x02\xe6\xbf\x51\x82\x69\xf6\xe2\x76\x6d\xb7\x29\x1f\x66\x44\x7a\x7f\xfc\x28\xac\x4f\x90\x7a\x90\xa9\x52\x22\xb7\x9d\x10\xfb\xf2\xc6\xa9\xa6\xb4\xe9\x04\xbb\xc2\xd2\x90\xc4\x97\x0d\x04\x3b\xed\x92\x21\x85\x1b\x36\x84\x39\x7b\x43\x17\x7d\xad\x67\x23\x04\xa8\x14\x74\x2c\x14\x68\x67\xc0\xbc\x75\x9c\x4b\xdd\x4f\x8f\xb0\x53\x25\xe2\xe1\xd9\xaf\xde\x84\x1b\x57\x39\x99\xca\x87\xb7\x10\x6e\x47\xfb\xbd\xd9\xca\xa7\x41\xb8\xfe\x79\xf5\x88\x5c\xcb\x35\x82\xa7\x67\xc4\xd5\x03\x5b\x94\x09\x15\xdb\x0c\x53\x26\x16\xee\x26\xc8\x88\x9c\xec\x6b\xf4\x30\x21\xcc\x57\x7a\x9a\xe6\x64\x28\x41\xe8\x15\xc9\x3a\xe8\xbd\xaf\x90\x90\xb6\xd1\xa0\xd0\x39\xac\x8e\xf0\x5a\x6e\xdc\x30\xc0\xe1\x26\x21\x66\xef\x5d\x4f\x35\xfd\x7c\x42\x6b\x63\xdc\xce\x0f\xd5\xae\x84\xed\x79\xc7\xdf\xd5\xdb\x4a\x12\x32\x1e\x7b\x99\xa4\xfa\xe8\x10\x5c\x15\x9e\xec\xd1\xa0\x67\x53\x0a\x63\x96\x4b\x77\xe1\xc6\x5f\x0c\xd4\x56\x9e\xfd\xbe\x99\xe5\x25\x61\x06\xfd\x7c\xb2\xe5\x64\x07\x61\xcf\x96\x69\x0a\x35\xe5\x05\x04\x9b\xeb\x5f\xbf\xdc\x7c\x56\x40\x88\x08\x4e\x32\xbf\x3e\x09\xf3\x20\xe7\xd1\xa5\x9d\x77\x09\xe3\x2d\x1e\xa1\xb9\xef\xee\x12\xce\xf7\x19\x6f\x5b\xcd\x7b\x8f\xf0\x73\x8d\x51\x29\xef\xe4\x68\x55\xe3\xc0\x0c\x85\x88\x58\xc2\xb8\x4d\xfe\x6b\xd7\xfd\xce\x04\x2d\x95\x09\xa7\x3f\xee\x4b\x08\x85\x17\xab\xeb\xd4\x6e\x38\x13\xf4\xd6\xff\x92\x8c\xa8\xb5\x22\xb0\x1c\xbf\x3b\xcf\xb8\x3d\x83\x89\x89\x17\xa6\x78\xec\x96\x4f\x48\x0b\x3d\xf0\xec\x4a\xe0\x28\x03\x79\xbd\x05\x61\x99\x5f\x86\x19\x50\x62\x1b\x0f\xdf\xbd\xb8\x92\x90\xd3\x6d\x22\xcb\x1e\x1b\x4a\x38\xdd\x7b\xae\xcb\x78\x81\x37\xe1\xe1\xdb\x5e\x9d\xe0\xdf\xca\x04\x63\xdc\x35\xe3\xe1\xe1\x24\x6c\xb7\xcf\xb2\xd4\xe9\x9c\x43\xe8\xd8\x67\xe4\x35\xd6\xb1\x8f\xd0\xbb\xfb\xd3\xab\xc8\x7b\x72\x84\x63\x67\x0c\x36\x04\x6c\x0c\x27\x1c\xfb\x95\x5b\xf6\xe1\xe7\x63\x42\x90\x53\x52\x73\xdd\x66\x4b\xc2\x63\x0d\x69\x3f\x77\xb5\x40\x82\xcc\x6d\xdb\x80\xde\x57\x2e\x04\xaf\x86\xb7\x3b\x2e\x7d\x4b\x62\x42\xe3\xd0\xab\x8f\x8d\x9f\x6f\x30\xb1\xc2\xd4\xf0\xb4\x8d\x93\x15\xa1\xc2\x43\x61\x7b\x4a\x3f\x83\x20\x16\xef\xcd\xb1\x24\x66\x37\x21\xd7\x7f\x61\x5f\x91\x96\x1e\x41\xfc\x95\x4c\x43\x5b\x70\x17\xc1\x67\x8d\xe0\xfa\x98\xfc\x77\x84\xa4\xdd\xe7\x96\x9c\x67\x74\x10\x04\x42\x1b\xff\x7c\x58\x79\x9d\xf0\x2b\xed\x70\xa2\xe9\x0a\x7f\xc2\x3c\xff\xe7\xb2\xc7\xb7\x97\x13\x42\x24\x6e\x2e\xb2\xff\x9c\x46\xa8\xde\x78\x93\xd3\xf5\x15\x2b\x61\x96\x45\x53\xd5\x90\x8c\x06\xc1\xad\x2f\x3d\x7b\xc3\x82\x5b\x04\xb6\x21\x77\x4d\x09\x86\x01\x61\x7a\xcd\x8e\xda\x66\xaf\xad\x84\x35\x12\xeb\x42\xef\x1c\x52\x23\xb0\x36\x69\xac\x91\x59\x2e\x45\x78\xda\x50\x9c\x12\xfb\x4c\x8a\x30\x87\x5e\xf9\x3e\xf4\xf8\xca\xc0\xaa\xcc\xe9\x8a\x32\xa3\x91\xf4\x1f\xf0\xbe\x1a\x55\x3d\x7a\xf9\x3d\x03\x4b\x95\x9a\x58\x45\x66\x12\xe1\xea\xd9\x41\x87\xc8\xdf\x29\x84\x6f\x86\x3f\x57\xb8\x4f\xbb\x41\xa8\x30\xe8\xc2\xee\xe4\x7c\xc2\x97\xe9\x07\x4e\xb4\x0c\xbc\x22\xc4\xd3\xd8\xa7\x5c\xf3\x1a\x82\xd4\xd0\x38\xa3\xb0\xe3\x07\x13\x33\x39\x20\xdb\x3a\x39\xd2\xd3\x1f\x13\xbc\x6b\x6f\x39\x05\xd6\x13\x5a\x49\x6f\x0a\xb3\x08\xaf\xbd\xad\x1d\xb4\x62\x37\x12\xdc\xa2\x34\x39\xd2\xf8\x6c\x08\xcc\xb1\xf8\x91\xbc\xaa\x7d\x4c\xf8\xa6\x1d\xdc\x32\xfb\x16\x3f\xe1\x08\xfb\x17\x61\xae\xf9\x15\x84\xbd\xf5\xcd\x2b\x54\xd2\x1e\x13\x56\xf9\x9f\x99\x90\x60\x6b\x60\xe2\xa3\x59\x41\xd1\xb4\xcf\x0d\x04\xeb\x1a\x9b\x04\xa5\xc9\xd1\x60\xcd\x91\x9e\xd2\x5f\x7e\x84\x5d\x5f\xd7\x3f\x35\xb4\xdb\x45\x38\x92\xe4\xa1\xbd\x2d\xec\x10\xc1\xbb\xf6\x70\xfb\xfd\xb3\xc7\x08\x3c\xcb\xb9\xfe\xd4\x24\xb9\x11\xee\x33\xd2\xae\xf8\x05\x06\x11\xa4\x12\x36\x18\x08\xb2\x1f\x26\xbc\xf0\x3d\x9c\x66\xbb\x2f\x86\x70\xab\x21\xe9\xa9\xda\xf3\x3d\x4c\xe4\xa9\xba\x8e\xa7\xf1\x06\x11\x34\xce\xbb\x1d\xa8\x66\xbd\x47\xd8\x6e\x32\xe6\xcb\xda\x74\x9a\x70\x8f\xc5\xe2\x59\x3f\x9b\x17\x61\xd5\x27\x0b\xbe\x5d\x11\x7e\x84\xcb\xcd\x05\xb5\x3c\x72\xd6\x4c\x28\x6c\xd4\x66\x5d\x3c\xbc\x9a\xe0\x96\x3a\x3e\xb2\xf6\xc9\x01\x1a\xbd\x8a\x02\xab\x0c\x31\xc2\xeb\xb6\x9b\x36\xd1\x33\xcf\x32\x91\x9e\xb7\x79\x5e\xa1\x63\x01\xfd\x43\x51\x35\x9b\xd6\xfc\xad\x05\x04\x77\xda\xa1\xff\xf0\x4f\x26\xe1\xf3\x5a\x79\x73\xfd\xde\x64\xc2\x93\xd7\x87\x58\x77\x9e\xd4\x9c\x02\xbd\x4f\x6d\xcc\x7d\xdb\x87\x4b\xb1\x6b\xd7\x37\x07\xce\x2f\x6b\x08\x0f\xd9\x57\x66\x9e\x91\xd9\x4e\xb8\x9f\xdf\x53\x3e\xfd\xae\x20\x61\xa4\x24\xc3\xeb\x66\x8b\xce\x14\xac\x0f\xc9\x18\x4c\xbf\xa8\x49\x90\x39\x6e\xb6\xb3\xd8\xfa\x07\x03\x7b\x3a\x25\x9a\x59\x3c\xd7\x10\x24\xe2\xae\x4c\x94\x8f\x2e\x25\xec\xa8\xb9\x96\xe6\xf1\x75\x3e\x41\xaf\x76\xbf\x8e\xe3\xac\x2c\x26\x5a\x03\x3e\x17\xc6\x0d\x35\x11\x6a\xa2\xc5\x8c\xc3\xb4\x5f\x10\xa4\xdf\x94\xdd\x97\x62\xf9\x4a\x58\x3b\xac\x71\xd6\x24\xec\x02\xa1\x20\xf4\xdc\xfd\x3e\xad\x50\x82\x5d\x05\xc7\xe8\xd3\xaf\x26\x84\xf5\x4a\x59\x2d\xfc\xa9\xc1\x84\x81\xb3\xd1\x71\x23\x27\x3c\x08\xce\xcf\xbb\xba\x3f\x0e\xce\x25\xec\x5d\xf8\x9a\x47\xfb\xbe\xcf\x94\xf2\xe6\xf2\x9e\xa3\x61\xd3\x1a\x4b\xa1\x7b\xf4\xca\x78\xf4\x9f\x9d\x84\xea\xb9\xb7\x6d\xee\xae\xd6\x24\x7c\xdf\xd9\x30\xfa\xe8\xba\x10\x21\x71\x36\xaf\x9e\xf0\xf8\x6b\x26\x0a\xbf\xf5\x0f\x59\xe1\x36\xa1\xbb\xfe\x94\x50\xd7\x1f\x6f\x42\xb0\x57\x9b\x5e\xc2\xcd\x9f\x0c\xb4\xa6\xf0\x84\x86\x1d\x97\x20\x34\xc5\x33\xdf\x9d\xb4\x5b\x44\x50\x8b\x99\xd5\xb0\x76\x9a\x38\xc1\xac\xe4\x6d\xf5\xef\x54\x76\x02\xeb\xab\x61\xd5\xd2\x32\x6b\x1a\x2d\x0b\xca\xdd\x62\x25\x43\x50\xcc\x78\x71\x1f\xbb\x7a\x18\xd0\xcf\x38\x28\x3d\x94\xcc\x46\xff\x50\x9f\x3c\xad\xa4\x42\x57\x88\xa0\x27\x23\x30\x71\xb2\xcf\x80\xb0\xff\xba\xd5\xef\xa5\x6b\x4a\x09\x05\x3c\x7a\x7f\x7a\xae\x65\x12\x44\x6d\x6c\x04\x3f\x4d\x42\xef\x45\x42\xb8\x95\xe5\x2d\x82\x39\xf3\xc1\xeb\xf9\x1b\x7b\x18\x68\x1d\x36\xeb\x40\xfa\xf0\x14\xd4\x36\x98\xb2\x08\x2f\xe2\x20\x18\xf3\x34\xcf\xf0\x1a\xd4\x25\x98\x47\x36\x2c\xfa\x24\x7a\x9c\xb0\x22\x9a\xc7\x95\x7b\x8b\x1b\x61\x5e\xe4\x4d\x2d\xe6\x97\x44\x26\x42\x6d\x62\x86\xaf\x47\x3a\x12\xb2\x4c\xd7\x0f\x9b\x3c\xa8\x26\xbc\x04\xaf\xe0\xb5\xae\x52\x42\xde\xec\xf2\x74\xee\xea\x8d\x04\x67\x71\x03\xdd\xd6\x08\x79\x02\xcd\xe2\xba\xdc\xba\x74\x72\x5d\xb0\xe0\xe0\xc2\xcf\x32\xc2\xd1\x9e\x82\x8b\x3c\xb7\xab\x08\xd5\xf5\xa2\xdb\x6e\xed\x3a\x42\x50\x38\x38\x70\xb4\x62\xee\x6e\x82\x7f\x9e\xf1\x8a\x3d\x6e\x51\x4c\x7c\x4e\xcf\x2e\x3b\x7e\x42\x91\xe0\xe8\xb0\xcb\x6c\xe1\x55\x41\x02\xe5\x3f\x75\x2a\xf3\x3d\x47\xf8\x14\xad\x14\xd5\xfd\x6e\x1a\x21\xc4\x47\x42\xe7\x70\xef\x77\x06\x5c\x84\xf2\x6e\x19\x2e\x9e\xdc\xf8\xff\x3f\x8c\xf0\xdc\xe4\xd7\x35\xaf\x63\xc0\x82\x5d\xde\x66\xf9\x9b\x1e\x06\x78\x8e\x7f\x9a\x3e\xa0\x35\x97\xe0\x2a\x9a\xb7\x3c\x7b\xe9\x04\x03\xda\xe7\xde\xf5\x9a\xae\xe5\xa6\x7f\x78\xff\x2e\x7b\xfe\x2d\xae\xb7\xa5\x90\x76\x1b\xdc\xe0\xe4\xcb\x45\x28\x5f\xb7\xce\xf1\xc1\xca\x39\x84\x15\xb2\x42\xde\x2a\x03\x77\x09\x11\x2f\x5a\x2a\x59\xfa\xd6\x10\xde\x45\x9d\x3a\x63\x1b\x61\x4f\xe0\x55\x6a\x2d\xe6\x1d\x3d\x36\x05\x37\x3e\x6a\x44\x95\x54\xba\x10\x3e\x75\x59\xef\xdf\x73\x69\x2d\xe1\x9b\xf6\xfc\x9c\xda\x6a\x1e\x42\xd2\x05\x7d\x16\x7f\x5d\x77\xc2\x40\x7c\x4d\xe1\xcf\xfc\x42\x42\xb6\x55\x9a\xf3\xd0\x24\x24\xfd\xee\x86\x9c\x6d\x3e\x43\xd0\xeb\x5c\xab\xe7\x33\xff\x38\x13\xab\x43\xa4\x5f\x6e\xf3\xd0\x22\x08\x76\x6b\xf0\x0f\xae\xb9\x43\x90\xbd\xed\x35\xfe\x45\x70\x07\xe1\x56\x84\xdc\x59\x29\xb1\x44\x82\xce\x2e\x77\x8d\xc7\xa7\x76\x12\x3e\x7f\xf2\xed\x9c\x25\xfd\x87\x81\x7e\xde\x8e\x77\x3f\x54\x26\x18\x28\x3d\xd8\x7c\x70\xbd\xda\x00\x03\x06\xab\x7a\x53\x56\xaa\xb8\x10\x0c\xc4\x8b\xbf\x98\xff\xee\x61\x80\x95\xf5\x45\x93\x5b\x94\x04\xc1\xed\x96\x40\x41\x7d\xad\x1d\x41\xe4\xed\x25\x79\xfd\x9b\xca\x04\x83\x8a\xf9\x33\xb6\xd8\x2b\x13\xcc\x17\x7d\x7f\xec\xd7\xa0\x4c\xb8\x74\x56\x78\x5f\x99\xf1\x11\x42\x9f\xab\xde\xb0\xf6\xd2\x87\x84\xee\x6b\x37\x6e\x47\xed\xdc\x48\x28\xcf\x0b\xe6\xed\x7d\xb0\x8f\xc0\x62\xf8\x59\xd0\x6f\x96\x0d\x41\x42\xed\x89\x66\xc7\xfa\x65\x84\x98\x63\x3c\x0a\x8e\x6f\x23\xa7\x94\x73\xa7\x78\x7d\x35\xa4\x3a\x4b\xb1\x89\xf7\x7d\xf0\x3b\xeb\x45\x84\xed\xa9\x57\x37\xb8\x65\x1b\x12\x52\x1e\x8f\xd7\x1e\x5e\xa7\x44\xd0\xae\x9d\x79\xfb\xe0\x62\x55\x82\x5f\xc9\xbb\x69\xcf\xd7\x98\x13\x0a\x3e\xcf\x5f\x1b\xd5\x7c\x81\x90\xe8\x72\x42\x67\xe7\x9a\x20\x82\xe2\x2f\x2d\x4f\xe1\xd3\x26\x84\xef\x5a\x91\x0b\xca\xfb\xd3\x08\x19\x1e\x51\x96\xc7\x58\x95\x09\x81\x95\xbb\x14\xe2\xb7\x18\x13\xec\xbd\xe2\xb4\x27\x02\x7d\x09\xe7\x48\xea\xeb\xa2\x66\x15\x82\xd1\x9a\x07\x2a\xc7\x42\x59\x08\xa5\x7b\x5d\xc2\xcf\x94\xf6\x31\xa0\x26\x72\xe6\xf7\x7b\xf6\x09\x06\x32\x8d\x4e\xce\x52\x5b\xd7\x37\x05\xda\x43\x55\x67\x79\xa3\xfa\xa7\xe0\xfd\x71\xb1\x93\x57\x04\x96\x10\xb4\xca\x8a\x26\xe6\xf0\xe6\x32\xf1\x2e\xd2\x26\xf1\xfa\x6a\x73\x42\xca\x7b\xd7\x3e\x84\x2d\x25\x6c\xdd\x77\x9d\xb5\x6c\x41\x17\x61\x6d\xe0\xc3\xde\xa1\xd8\x76\x02\xe3\xa0\x4a\xda\xb0\xc2\x6b\xc2\x70\x4a\xce\x76\xaf\xe9\x1d\x84\xef\x4a\x55\xd5\x3a\xdc\x1d\x04\x99\x0b\xf3\xcf\xa7\x4f\xcf\x63\x62\x4c\xd1\xc7\xd7\x3e\x39\x82\xa0\xce\x2f\x25\xf4\xc9\xf7\x24\x13\x8f\x73\x9a\xe6\x45\x74\x5a\x13\x84\x1e\x73\x33\x3d\x7c\x46\x19\xa8\xcb\x50\xa8\x6a\xbe\x93\x46\xb0\x92\x35\xfc\x7e\xc3\xb2\x85\x01\x29\x09\xd7\xa5\x85\x19\x22\xf4\x0f\x1e\x41\xb1\xd2\xe5\x6c\xf3\x09\xc1\x1f\x1b\xf9\x04\x1c\xe2\x08\x0d\xad\x9b\x7a\xaa\xcb\x4e\x13\x14\x8d\x9d\x62\x37\xeb\xf6\x33\xf0\x38\xe3\x3c\x4f\xcb\x91\x08\xc2\xf2\x23\x1b\x4b\xe6\xe7\xdb\x13\x92\x25\x9c\x98\x39\x72\xbb\x99\x18\x4f\xef\x0c\x92\xda\xdd\x4b\x50\x64\x4a\xf6\xf0\x3c\x4c\x26\x5c\x1b\x3e\x96\xdc\x5e\xff\x8c\x70\xd1\xf0\x76\x52\x78\x7c\x3e\x13\x6b\xb5\x07\x34\x56\xb8\x4a\x12\x68\x43\x93\xa2\x7e\x36\x3b\xc1\x71\x68\xfe\x83\xf0\xa6\x6d\x84\x9d\x12\x15\x83\xf6\x0d\x6c\x84\x4f\xe7\x7b\xc4\x32\xf7\x77\x31\xb0\x90\x2d\xc7\xb9\xab\x5c\x7d\x4a\xb1\xed\x1d\xa9\xd8\xd4\xa3\x4c\xe0\x09\xca\x39\x23\x67\x98\x40\xb0\x10\xe4\xac\xcb\x4e\xcd\x25\x80\x4d\xbc\xfe\xc6\x24\xee\x59\x9f\x11\x12\x5e\x25\x48\x58\x9f\xe4\x26\x74\xc2\x5a\x61\x0a\x96\x9f\x12\xcc\x48\x74\x1e\x64\x20\x48\xe4\xba\x4a\xaf\x5b\x14\x41\x7c\x8b\xf3\xaf\xb3\x26\x15\x84\xac\xf7\x85\x3a\x65\x39\x4f\x09\xb6\x5d\x36\xc1\x0f\x46\xf2\x09\xcb\x82\x32\xe7\x57\xb7\x7c\x62\x60\xcf\xac\xf3\x0a\x46\x02\x42\xf4\x1f\xc8\xae\x6b\x2c\x7c\xee\x3a\xfd\xbf\xe0\xe7\xb1\x34\x87\xb5\xe5\x3d\x03\x3d\x8e\x97\xf4\x85\x93\x67\x13\x18\x0f\xd4\x72\xba\xeb\xfd\x09\x9b\xc2\x2a\x5a\xaf\x0b\xac\x26\x94\xba\xde\x5c\xce\xb3\x9b\x93\xc0\xb4\x3e\x50\xf6\x61\xb6\x31\xc1\x63\x5c\x73\x4b\xac\xa4\x00\xc1\xb3\x3d\xc5\xbb\x74\xa9\x1b\x41\x29\x2a\x70\xcb\xfb\xd5\x6e\x84\xd2\x53\x37\xfc\x13\x6e\x1b\x13\xf4\x15\xe7\xef\x72\x78\xbc\x88\x10\x5d\xd8\xdd\x11\xea\x20\x41\xd0\x3d\xf0\x4c\x3e\xf0\xa3\x18\x21\xef\x51\xbd\x44\xed\x2c\x53\x26\xce\x4b\x7a\x48\x06\x9d\xb7\x24\xe4\x18\xde\x9e\xaf\x10\xa8\x3d\x05\xc2\x3e\xdc\xac\xcb\x59\x3e\x33\x20\xba\x65\xf8\x21\x73\xd5\x05\x26\xb4\x1a\x67\x68\x17\x76\x6d\x20\xbc\x6b\x9f\x6b\x20\x5a\xa2\x4f\xd8\xee\x7b\x41\xcb\xef\xab\x33\xc1\xf4\x86\x42\xc1\xe0\xc0\x6f\x06\x3c\x38\x4e\x9e\x1f\x8b\x95\x26\xf8\x6a\x64\xb8\x8d\x39\xef\x22\xc8\xec\x59\xf8\x8c\x8d\xc7\x95\x46\x8b\xdd\x07\x9b\xba\xe6\x10\xe2\x2d\x17\x71\x3c\x3a\x57\x48\x98\x5f\xa3\x54\x51\xa5\xec\x32\x05\xe6\xf2\x91\xeb\xcf\x65\x78\x10\x1e\xb0\xce\xfb\xf5\x23\x4c\x94\xb0\x5c\x2f\x7f\x07\x57\x09\x1b\xa1\xfb\x4e\x5d\x6a\xd4\x8b\x99\x53\x30\xf0\xe1\x48\xdc\x89\x2c\x65\x82\xc6\xd3\x52\x29\xb7\x4f\xe6\x84\xad\x1b\xfb\xed\x77\x93\x39\xe1\xd9\x48\xf1\xd0\xd5\x5b\x07\x08\x6c\xb7\xbc\x4e\xb5\xed\x3d\xf4\x5f\xf8\xf9\xaa\x81\x7f\x8e\xcb\x0c\x42\x65\xab\xcb\xd1\x1d\xcb\xee\x11\x7e\xcc\x4d\xb6\xa8\x97\x4e\x27\xc4\xd7\xed\xf0\xcd\xe7\x33\x20\x34\xb3\x8a\x85\xe4\xdc\xd7\x22\xb0\x1c\x7b\xd2\x57\x61\x70\x70\x0a\xa4\xeb\x44\xaa\x5f\x97\xbb\x10\x36\x3a\x15\x3b\x44\x4b\x78\x13\xae\x77\x3e\x59\x38\x96\xbb\x8d\xb0\x78\x7d\x90\x8e\xe8\x62\x15\x82\xa0\xb4\xfb\x52\x6f\xad\xed\x04\xfd\x09\x56\x53\xf7\x23\xd2\x04\x43\x1e\x7e\x11\x45\xd1\x2a\xc2\x90\xce\x7e\xbf\x70\x41\x5d\xc2\xe6\x19\x46\x56\x07\xdf\x29\x11\xde\x73\x4a\xca\x9d\x68\x36\x27\x04\x75\x2f\x97\x2c\x08\x5f\x49\xd8\xf9\xc7\x56\xd3\xa4\x9a\x9f\x60\x9c\xac\x98\x2f\x63\xa9\x4d\x50\xf4\x34\xcf\x12\x3c\xde\xcf\xc0\xf2\x77\xa5\xa1\xbc\x05\x26\x84\xd2\xdb\x92\xef\xd7\x5a\xea\x12\xec\x2e\xf3\xdf\xbe\xa8\x9a\x5b\x8a\xc6\xbb\xb7\x0e\x14\x26\xad\xa5\x7f\x78\xb4\x2a\xe2\xad\xdb\xe1\x8a\x52\xa8\xb8\xf8\x75\x6a\x7f\xda\x47\xd0\x7d\x6d\xd8\xb2\x66\xf0\x0a\x13\xed\x5d\x3e\xef\x1e\x06\xbb\x10\x6e\xb1\x6c\xb1\xad\x76\xb5\x26\x34\x14\xb9\x58\xfa\x3b\xcc\x24\x58\xbd\x48\x64\x91\xeb\x99\x41\x70\x3e\xe1\x70\x5f\x81\x3f\x8f\x90\xbc\x36\xfb\x8b\xb5\x62\x17\x61\x24\x6d\xa8\x27\xdd\xa4\x95\xd0\xf8\x6b\x44\x6f\xef\x8d\x06\xc2\xec\xe8\x59\xf7\x3a\x1e\xe5\x10\x26\x34\x1c\xcc\x62\x2d\x0a\x09\xf4\x36\x6f\x51\xbe\x4b\x14\xc1\x66\xf0\xd8\xb3\x88\x71\x3e\x82\xa2\xc0\xa8\xef\x78\xf9\x5a\xc2\xe6\x98\x64\xdb\xd2\x14\xe3\x29\x45\x22\xee\xcb\x53\x2b\xd2\x23\x24\x96\x2b\xc7\x3c\xd9\xdc\xc0\xc0\xf4\x7b\xb3\x72\x77\x2f\x1f\x9c\x82\x9c\x71\xc9\xda\x41\x8d\xa6\x52\x44\xef\x6a\xde\x16\xdd\x69\x4c\x70\x5a\x93\x54\x17\x62\xb0\x8c\xe0\xf6\xec\xe5\xb5\xf7\x17\xc4\x08\x6b\xde\xdf\x9b\x9b\x73\x67\x3f\xa1\x98\xd1\x6d\x7e\x36\xc3\x94\x20\x65\x7d\x3e\x7a\xb9\xbc\x2d\xe1\x71\xf6\xc8\xef\xad\x19\x73\x09\x17\x97\xb9\x9f\x7b\x5f\x23\x30\x05\xb1\x6d\x59\x0d\xb8\x5b\xcd\x84\x4d\xed\xc6\xa7\x9c\x75\x7a\x04\x53\x05\xf6\x25\x6e\xc4\x20\x68\x29\x5c\x52\x92\xa9\x94\x27\x1c\x90\x2f\xf9\xd0\x99\x05\x06\x04\x1c\xe2\x7f\xd6\x6a\xcf\x22\xe4\xdf\xdb\x3b\xfa\x23\x70\x3e\x61\xfd\xba\xfa\x09\xeb\x2b\x9a\xcc\x7f\x45\x6c\x54\x65\xa7\xe4\x9f\x21\x06\xae\x79\xb2\xd9\xc8\xf3\xfc\x60\x00\xa7\x9e\x3b\x30\xdf\x8d\x4c\xc1\x7e\xeb\xca\xd8\x0d\x63\x39\x04\x13\xdd\xc1\x47\x0f\x16\x4e\x27\xb0\x18\xd5\xd8\x5b\xe7\xb9\x12\x3e\x17\x7c\x51\x49\x5a\x6b\x4d\xb8\x79\xdd\x7a\x24\x7e\x66\x00\xc1\x49\x7d\x31\xf3\x06\x97\x1a\xe1\xb0\x5e\xb3\x0f\x9b\x81\x18\x21\xac\xcc\x8d\xce\x47\x4a\x11\xa4\xcc\xeb\xc4\xcc\xf6\x25\x10\xb4\xaf\xfa\x15\x0a\xe9\x2a\x13\x74\xc6\x7f\x6f\xf9\xf2\xa1\x98\xc0\x11\x25\x1b\xfd\x17\x99\x19\xdc\xd9\x4f\xd6\x56\x30\xf1\x7a\x50\x21\x72\xa0\x23\x96\xa0\x6a\xfa\x78\x48\xda\x4f\x9f\x60\x71\xa8\xb7\xba\x26\x43\x98\xa0\xb2\xa6\x6e\xe1\x8a\xc0\x19\x04\x2f\xcf\x2f\xd3\xeb\x23\xc2\x08\x3c\x9e\xf3\x83\x4e\xd4\x04\x31\xff\x15\xd3\x9c\xdb\x5f\xaf\xee\x03\x03\x99\x9a\x1b\x8f\xfe\xe4\x1a\x63\x40\x7c\xed\x60\xd4\xef\xde\x7b\x8c\xd1\x9f\x17\x73\xcb\x6c\xbf\xfe\xef\x2f\xb8\x2e\xf2\x15\x59\x96\x8d\x4e\x41\xf0\x32\xb1\xea\x99\x13\x2b\x08\x92\x5d\x1c\x5b\x0b\x85\xd6\x13\x76\xda\xf2\xf4\x1a\x1c\x36\x26\x9c\xce\x91\x1b\xda\xe6\xa4\x4e\x38\xa7\x3d\xd7\xc5\xc7\x5a\x95\xf0\x9b\xac\x43\x6b\xba\xd9\x08\xd5\x3a\x29\x3f\xfe\xfe\xd8\xdd\xff\xe0\xa6\x94\x65\x5c\xfa\xcc\x9e\x50\xd9\xc4\xea\x9c\xa3\x63\x44\xc8\x57\x1e\x3b\x27\x5c\xcf\x20\xac\x71\xef\x33\x90\x68\xb4\x20\x08\x9c\x3d\x7e\x77\x6d\xa6\x26\x81\xdd\x5e\x8b\x75\x7f\x64\x15\x03\x75\x07\x7d\x74\xd4\x38\x59\x09\x6e\x6f\xf6\x0b\xfe\xd4\xe6\xa2\x7f\x45\xe2\xed\xba\xe0\xf8\x96\x09\x06\xf8\x96\xa9\x75\x7c\x3c\xb8\x9d\x10\x70\x7a\xf6\xd5\x37\x81\xb1\x53\xe0\x6d\xb7\x41\xf5\x97\x7e\x3c\xe1\xcc\xea\x90\x6e\xef\x23\x76\x84\xb4\xb7\x89\x3e\xb9\x09\x8b\x09\x55\x0e\x27\x8e\xea\x2c\x1f\x67\xe0\xd7\x8b\xea\x73\x09\x0e\x03\xff\x05\xe5\x82\xc7\x9e\xf7\xba\x73\x4a\x11\xa2\xe7\x7e\xf0\x63\xde\x09\xc2\x47\x47\xf9\xc0\x8c\x58\x1b\xc2\xea\x17\x23\x2f\x4d\x6a\x9c\x08\x9d\x2b\x8e\xf5\x09\x72\xad\x20\x18\x5e\x4b\x08\x55\xf1\x29\x64\x42\xa3\x4a\xbd\x29\xfe\xf9\x1e\x82\x37\x07\xde\xca\xa4\x08\x13\x76\x72\x1f\x7a\xba\x69\xef\x01\x82\xff\xc3\x0b\xc7\x20\x7e\x87\x50\x5c\xb8\xee\xc0\x95\x7d\x37\xfe\x4f\x10\xeb\xf9\x44\xc5\x9b\xbe\x84\xf8\x83\x26\x7d\x06\x34\x87\xd0\x23\xff\x4e\xef\xc9\xea\x7c\x42\xca\xb9\x0b\x6f\x55\x05\xf3\x09\xe3\xf7\x58\xc2\x6f\x5f\xbe\x4f\x98\xd9\xa7\x70\xe9\xd6\x24\xce\x6f\x94\x0d\x12\x3d\x51\x3c\xa5\xfc\x0f\xe9\x89\x0b\x0e\xbc\xb8\x62\x4c\x30\xa8\x5b\xbd\x54\x33\x57\x84\x70\x7e\xd4\x29\xa2\x61\x86\x1e\xa1\xde\xd9\xab\x77\x7c\x47\x03\xa1\x7f\x63\xb2\x93\x74\xd2\x23\xc2\xcb\xfd\x07\x16\x24\xb2\x55\x12\x9a\x33\x33\x22\x8d\x3b\x67\x10\x14\x78\x9f\x09\x0e\x6c\x68\x67\xe0\x49\xa5\xec\xef\xfd\xb2\x3f\x19\x90\x19\x2f\x7e\xfb\x65\xf2\x0e\x77\x71\xd1\xec\x0a\xd3\x34\xf1\x29\x48\x2e\x79\xf1\x3b\xa2\xa1\x99\x81\xb1\xb0\x59\x1f\xab\x76\xce\x27\x14\xce\x98\xb1\x5f\xa5\xd6\x9a\xb0\x5f\xfe\xd7\x1a\xe1\x5c\x03\xc2\xcb\x18\xd5\x95\xc5\x02\x65\x04\xf1\xb1\xf9\x3b\x33\x7e\x6c\x23\x4c\xe4\xae\x78\x90\x70\x7c\x1f\x73\xd4\x7d\x8e\x58\xda\xc7\x60\x82\x5d\x9b\x79\xd4\xb7\xca\x12\xc2\x98\x52\xc3\xb4\xbf\x68\x18\x96\x59\xfb\x75\x12\xaa\x77\xf6\x8d\xda\xbe\xcd\x22\xf4\xfb\x1d\x5e\xe0\xfa\x72\x3f\xe1\x47\x98\x7d\xfc\xbb\x64\x7e\x42\x94\x77\x9c\x81\xf6\x4f\x29\xc2\xbc\x89\xbd\x92\xaa\x75\xda\x53\x30\xb1\xd6\x5f\x5b\x53\x4e\x86\x20\x57\x9f\xfd\x7a\xb8\x33\x90\x70\xc9\xe6\x94\x29\xfb\xc4\x63\x26\x9e\xa4\x84\x72\x7e\x6c\xb0\x26\x88\xc7\xcf\x5e\x64\xcf\xa6\x4e\xa8\x78\x70\xa2\x67\x81\x73\x2c\x41\x78\xdb\xe0\x3d\xc5\xe4\x15\x84\xb8\x96\xc7\xdc\xf3\x26\x0e\x12\x6e\x7e\xbe\xca\xfe\xab\x71\x72\x0b\x96\x3b\x74\x7b\x78\xa1\x0f\x21\xf6\x64\xe8\x86\xf1\xbe\xc0\x29\xa3\x17\x5d\x02\xa7\x77\xdd\x3d\x41\xd8\x26\xba\x77\xb6\xbb\x4d\x24\xe1\x97\x78\x99\x89\xe7\x64\x71\xa3\x2b\x8e\x6b\x97\xc7\x13\x6a\xb2\x66\x05\x7c\xd9\xf0\x8b\x81\x78\x19\xfd\xb1\xde\xbb\x73\xe9\x1f\x5a\x02\x5d\xb3\x4e\x1f\x94\x22\x0c\xbe\x49\x11\xfd\xe0\x2f\x46\xb8\xf0\x81\xab\xeb\xde\xe4\x77\x8d\x6b\x36\xf7\x8f\xb8\xca\x8b\x53\x50\xbc\x4e\xcf\x22\xa3\xf7\x38\x61\xcb\x45\xd7\xb7\x75\xcd\x39\x04\x27\x79\xc3\x48\x0b\x1b\x33\xc2\x32\xb7\x9a\x79\x77\x7c\x73\x08\x8b\xcc\xd8\x0f\x2d\xb9\x99\x4b\xa8\x5e\x98\xff\x3b\x77\xb2\x0c\xd4\x9c\x62\x3b\x7b\x63\x2f\x81\x33\xfd\x60\xcb\x4b\xb9\xd3\x84\xb9\x35\xba\xc1\x22\xbe\x77\x19\xff\xf0\x60\xec\xfe\x12\xe5\x8a\xe9\x84\xfd\x25\xf6\x73\x1c\xa4\x1c\x08\xd1\xb7\x72\xea\xf9\x05\xd7\x10\x76\xe8\x39\xc6\x31\xcf\x6a\x11\xd8\x96\xfa\x2c\x34\xbe\xb8\x84\x10\xf3\x50\xbf\x34\x5f\x4e\x84\x60\x53\x64\x91\xa6\xaf\xc2\x4a\x90\xe1\x3a\xe6\x1d\x94\xad\x4f\x88\xfe\x33\x70\x38\x29\xc2\x95\xc0\x5d\xf8\x5b\xb3\xe6\xc1\x43\xc2\xd3\x65\x41\xcb\xb2\xd4\x0d\x09\x0b\xeb\x4b\x66\x57\x70\x74\x31\xf0\x53\x54\xa4\x54\xb3\xc9\x92\xf0\x24\xb6\x3d\xc7\xa3\x7f\x17\x21\x63\x67\xe7\xf9\x67\xd9\x4e\x84\xc0\xc1\x7b\x5c\x4f\xaa\xf5\x08\x8f\x4b\xdf\x86\xfb\xe8\x29\x10\x64\x6a\xc3\xcf\xf1\xe5\xa8\x11\xea\x2d\x9b\xb7\xae\x68\xf3\x26\x34\x0a\xd5\xed\x48\xdb\xc4\x4b\xa3\xf1\x9e\x36\x15\x06\xa1\x4c\x58\xf6\x74\x66\xee\xdf\x2e\x47\xe8\x3c\x26\x88\x5d\xd6\xbe\x84\xce\x1f\x8f\xb2\xe6\x0e\xff\x64\xa0\x8e\xa7\x6b\xb9\xc4\xcc\x8b\x84\xab\xfa\x87\x18\x15\x12\x0b\x08\xfd\x3e\x13\x57\x62\x82\x59\x08\x2e\xbf\x6a\xef\x55\x0e\xaf\x22\x38\x7e\x39\x78\x5e\x54\x64\x2b\xc1\xd0\x69\x36\xb7\xd1\xc4\x36\x42\x21\xef\x9b\x47\x73\x4a\x1d\x09\x87\xac\xa2\xba\x6f\xdf\x59\x4b\x30\x7e\x57\xda\x17\xf9\x4e\x85\x30\xef\x73\x18\xeb\x1a\x73\x7e\xc2\x07\xee\xb1\x88\xa8\x8f\x93\x77\x1e\xb9\x64\xce\x1d\x3d\x86\x04\x8e\xf7\x7c\x57\x3e\x5c\x7d\x30\x05\xee\xa7\x62\x15\xba\x26\xd1\xb5\x2a\x74\xd7\x97\xdc\x62\x06\x7e\xfa\x79\x1a\x5d\xb1\xd1\x25\x24\x56\xd8\xec\xd1\x19\x93\x25\x7c\x91\xfe\x1a\xf6\x7a\x78\x37\xa1\xd9\x67\x69\xa0\x20\xcb\x6a\x42\xa8\xf8\xfc\x81\xc1\x6b\xa6\x04\x1e\x66\x14\x8b\x4d\x52\xd9\x14\xb0\x6c\x8b\x7d\x6c\x56\x9f\x4f\x30\x54\x72\x69\xb2\x9e\x2c\xca\xe9\xf1\xad\xcf\x4f\x78\xfe\x17\x3e\x27\x8a\x48\xdd\x79\x1a\x4c\xd8\x90\x93\xb6\x2a\xc9\xd9\x8b\x20\xac\xb0\x51\xe9\x6e\x94\x06\xe1\xf2\x77\xa3\xcd\x8e\x51\x19\x84\x85\x81\xbb\x3b\x67\x08\x88\x12\x26\x32\x1e\x55\xfc\x3a\xa1\x4e\xe8\x5c\xf8\x79\x78\x9f\xd0\x9a\xc9\xa3\xfc\xd4\x09\xb9\x9d\x2e\x84\x71\x6e\xaf\xc6\x84\x93\xba\x84\x3f\x6d\x4a\xf2\x43\xa7\xba\x4b\xe1\xe1\x3d\x3b\xf4\xeb\x5e\x13\x82\x5a\x59\x50\x54\xd8\xe4\xb5\x5c\x60\xfe\xef\xd7\xa1\x47\xcd\x09\x2b\x05\x7e\xf5\xde\x70\xb0\x22\xe4\x3f\x7f\xee\x77\x8b\x45\x9d\xb0\x52\x2a\xe6\xa3\xc7\xfb\xe3\x4c\xc8\xb4\x0b\x05\xd4\xde\x96\x22\x8c\x1a\xaf\x5d\xf5\x62\xb9\x19\xa1\xbe\xba\x28\x73\x47\x9b\x01\x81\x2f\xab\x62\x64\x71\x5d\x3f\x03\xc5\x63\xe1\x41\x4d\x6f\xbf\x30\xf0\xe8\xf2\xb2\xdc\x15\x52\x32\xf4\x0f\x9d\xa7\x2b\xdd\x16\xfb\xf8\x12\x9e\xf5\x94\xf5\xbf\x08\x19\x61\x40\xf6\x43\x18\xdb\x95\xa3\xd6\x84\x45\xdf\x85\x56\x45\x1c\x5f\x45\x60\x97\xbf\xb7\x3c\x73\xbe\x12\xa1\xb9\x36\xe1\x97\x92\x7f\x41\x29\x04\x56\xd5\x16\x4e\x7c\xd4\xa2\x7f\xf8\x36\xaf\xd6\xe7\xc9\xca\xd6\x52\xcc\x90\x3e\xde\x5c\x38\xe0\x46\x18\x75\x9b\xfe\xe6\xf4\x61\x4b\x42\x47\x7f\x64\xff\x12\x2d\x0b\x42\xff\x13\x4e\xef\x13\xfe\x8b\x09\x13\x8a\xfd\x3c\xfd\x87\x16\x12\x44\xe2\x2f\xce\x56\x2d\xdd\x42\x60\x4f\x94\xe5\xaa\xdf\xa2\x4c\x50\x53\xb1\x4f\x59\xb7\x32\x70\x0a\x76\xab\xec\xb9\xf3\xed\x52\x17\x03\xea\x02\xbe\xc6\xd2\x4b\x58\x09\x23\xdb\xd3\x6d\x9b\x54\x06\x19\xd8\xd1\x2d\xdc\x32\xa2\x2c\x44\xb8\xf4\xfe\x72\xe3\x8d\x15\x37\x98\x98\xcf\x59\xa2\x6d\xaf\x24\x43\xff\x70\xa3\x60\xab\xf3\x91\xb8\x4e\x06\x96\xef\x0b\xc9\x6a\x4a\x98\x47\xff\x90\x1a\xd1\x98\xc3\x4c\xd8\x47\xf8\xe9\x95\xbf\x59\xee\x4e\x36\x61\x97\xe0\x44\xfb\xdf\xb2\xda\x73\x43\x74\x8f\xe3\x34\x82\x79\x59\x4f\xd6\xef\xb6\x40\x82\x84\xc2\xe3\x0b\xdd\xd7\x26\x97\xbb\x8b\x29\xbb\xff\x22\xaf\xdc\x27\x73\xfa\x03\x6f\xc2\xc9\x43\x79\x3f\x1d\x9d\x8f\x12\x6e\xcf\x7a\xee\xd4\xe6\x74\x80\x70\x44\x96\x5f\x32\xc3\x7b\x23\xe1\xcc\xec\xf0\x18\xef\x39\x47\x09\xea\xf5\xc9\x5c\x9b\x37\x9b\x13\xd2\xcf\xa4\x7a\x48\x2a\xf3\x4c\xc1\xf1\xe5\x2f\x56\x5f\x16\x1f\x64\xc0\x66\x59\xf9\xb4\xb6\x99\x6b\xa7\x94\xd4\xc1\xcc\x6a\x79\x99\x37\xa5\x38\xf6\x7d\x4b\xa6\xf8\xa3\x1d\x04\xa1\xfb\x8b\x07\x9d\x4e\xd8\x10\x22\xc4\x84\x42\xa5\x22\xe4\x08\x5d\x0f\xee\xde\xec\xd4\x10\x21\x08\x5c\xef\x56\xce\x36\xab\x62\x22\xe8\x25\x9f\x71\xa6\xd7\x66\x42\xca\xa1\x03\xcf\x9a\xf6\x58\x11\x2c\x32\x3d\xf9\x5b\x5c\xcf\x33\xb1\x2b\xff\xd8\x7d\x3d\x5f\x23\xc2\xbe\x8b\xca\x26\x5c\x6d\x7b\x09\x5b\x6e\x79\xd9\x4a\xc4\xdb\x12\x4a\x96\x1b\x06\xe4\x76\x9a\x12\xd6\x2f\xdd\xc9\x4c\x72\x5f\x47\xf8\x23\xa8\x77\x3c\x64\xa1\x0b\x13\x27\xc9\xfa\x00\x1f\x4f\x10\x41\xf7\x73\xae\xd2\x05\xee\x55\x53\xd0\x73\x9c\x95\x67\x85\x62\x0f\x03\xa7\x95\x62\xc7\x16\x37\xac\x21\x24\xdd\x56\xfd\x2a\x55\xa6\x48\x18\xd3\x59\xa5\x58\x5d\x26\x46\xf8\x11\x20\xe3\xc6\x72\xbf\x9f\x81\xbc\x35\xf3\x17\x75\xae\x2b\x27\x04\x46\xb6\x26\xee\x7d\xaf\x4a\x48\xde\xc4\x91\x0c\xdd\xb0\x29\xb0\x3a\xb8\xfd\x21\x46\xa7\x96\x72\x81\x8e\x78\xa9\xb8\x87\xa5\x60\xb1\x56\x8a\xbe\x52\x14\x49\x90\x5a\x57\xbc\x89\x55\x26\x93\x50\xca\x9a\xa1\xfb\x17\x9e\x01\x05\xf2\xef\x2f\xe6\x30\x11\x26\x7d\x49\xd1\xb3\xe9\x39\x13\x73\xca\x5e\x0a\x31\x82\x6e\x12\xec\xfe\x98\xdd\xcb\x8d\xba\x43\xa8\x5a\xf7\x38\xf3\xed\xca\x3f\x0c\x6c\xaf\xeb\x5e\xd5\x93\x3a\x87\xc0\x5d\x7f\x5a\xd7\xb1\x60\x3d\xe1\x4d\xb3\xb6\xee\x16\x16\x2b\x82\x5d\xda\x99\x83\x15\xde\x06\x04\x1f\x3f\xeb\xad\x21\x22\xf7\x18\x68\xe9\xae\xd0\xda\x35\x32\x87\xa0\x3d\xe1\x9e\x9a\x90\xad\x45\x48\xb9\x3d\x77\xff\xdc\x5e\x2b\x42\x92\x72\xff\xa1\x52\x1d\x33\xc2\x36\x11\xe7\xf4\xe9\xb5\x96\x84\xa0\x03\x16\x5b\x93\x62\x79\x08\x45\xb5\x2e\xc9\x13\x07\xda\x18\x28\xbf\x3a\xbb\xbd\x4a\xda\x90\x50\x6e\x9c\x97\x7a\xe8\xca\xd6\x29\x78\xf8\xa2\x2e\x78\x96\x52\x3d\x03\x07\xdf\x14\x7f\xe1\x58\xe4\xcc\xc4\x91\xd9\x0e\x16\xeb\xdf\x7c\x62\xa0\xbd\xa4\xaf\x70\xef\x2a\x67\xc2\xc4\xbb\x5f\x9b\xd2\x45\xbc\x09\x9f\x1e\xec\x70\xd4\x48\x65\x23\xe4\x7d\xab\xb5\x7f\x53\x2c\x46\x78\x14\x10\x32\x18\xde\xe7\x4b\x10\xee\x92\x9e\xb5\x4d\xc6\x67\x0a\x9a\x0f\x75\xed\xbf\xa8\x52\x42\xe0\xfe\x56\x64\xf2\x17\x36\xd7\x3d\x87\x32\xcd\x4b\x08\x7a\x4e\x31\xa2\x7f\xcb\xea\xe4\x4d\xa1\xab\xb6\x2f\x26\x1c\xd3\x6a\x59\x91\xa6\x7e\x87\x70\xbc\xb5\x42\x7b\xeb\xca\x3b\x04\x96\x0f\x95\x4f\xd9\xfa\x13\x09\xbe\x6a\xcb\x05\x14\xc4\xfd\x08\x4f\x8b\xaf\xf9\x0f\x71\x94\x4e\xc1\xed\x0b\xc9\x11\x63\xcf\x8b\x08\xdf\xd4\x35\x4d\x45\x73\xef\x10\x5c\x2f\xad\x50\x79\x39\xf3\x30\xc1\xae\x8a\x34\x66\x9c\x56\x23\xf4\x7d\x77\x9f\xc7\xfb\x8e\xf3\xbf\xe0\x14\x9a\x7b\xac\xe7\xe0\x3d\xc6\x7f\x20\x90\xa3\x50\x72\x4f\xb6\x34\x61\x91\x9d\xb0\xde\xb3\xb7\xd2\x04\x39\x29\x8e\x93\xb3\xce\xcf\x23\x38\xbc\x1b\x48\x61\xe3\x61\x21\x7c\xbd\xb4\x73\x50\x89\x93\x41\x90\xfd\x63\x72\xe7\xb3\xf0\x55\x82\x76\x56\x3d\x17\x5f\x82\x3f\x21\x35\x78\xdb\x36\x3e\x03\x45\x82\x58\xd0\xcc\x5f\x1a\x8b\xf8\x08\x2a\x13\x65\xcc\x5d\x35\x79\x84\xab\xbd\x15\x3f\x56\xb6\xb1\x13\xe6\xa4\xca\xdf\x28\xf3\x59\x49\xe8\xbc\xbb\x35\x26\xb9\xc7\x82\xb0\xc2\x41\x7a\xaf\x43\xab\x38\xe1\xa9\x63\xa4\xea\x89\x80\x9d\x84\xf8\x64\xde\x27\xf3\xe5\xb3\x08\xae\x98\xa7\x16\x23\x17\x46\xe0\x4c\x5a\x67\xe5\xf5\x39\x98\xb0\x7c\xcf\x9f\xcc\x4b\x4e\x4a\x84\x68\xc5\xed\xdd\xb2\xf3\x99\x84\x0f\xcf\xf3\xd9\x9b\x92\x96\x11\x38\xbf\x3b\x8d\x77\xc4\x3d\x63\x20\x42\xdb\x72\x8d\x06\x33\x90\xfe\xe1\x9d\xea\x66\x9b\xfb\x22\x7e\x84\x4b\x33\x2b\xad\x8e\xec\x61\x25\x08\xaf\x78\x2d\x3e\x52\x3c\xc0\xc0\xa9\x66\xad\x2b\x02\xa9\x03\x0c\xe8\x88\x0b\x19\x77\xac\x0a\xa6\x7f\x28\x7f\x3a\xd8\xc5\xfc\x14\x47\x08\x72\xfc\x7d\x7b\xe9\xf4\xcf\x84\x0f\x2b\x7f\x36\x14\xbe\x9b\xbc\x34\xaf\xeb\x10\x74\x9f\x7c\x4e\x3d\x52\xa2\x4e\xdf\xd3\x5e\x46\x90\x96\xb8\xca\xa1\x3d\x38\xca\x40\x27\x78\x24\xe3\xba\xdd\x08\x4e\x0d\xba\x01\x21\x19\x4f\x08\x2f\x0e\x0f\xb2\xae\x66\xbf\x45\x70\x10\xf6\xdd\xa4\xcb\xeb\x42\xd8\xea\xcc\x5d\xed\xff\xff\x30\x5e\x9f\xe1\x58\xc7\xfd\xff\xc7\x4b\x21\x51\x59\x11\xa9\xec\x11\x32\x22\x22\xdf\x37\x91\x48\x4a\xb6\x50\x42\x4b\xa2\x34\xa8\xcc\xb2\x1a\x88\x92\x96\x51\x89\x52\x91\x59\xe6\x69\x25\x4a\x91\x94\x4a\x48\x25\x1a\x1a\x24\xaf\x52\xfc\x0f\xdd\xb8\xb8\x8e\x7f\xc7\x75\xfc\xee\x3d\x8e\xe7\xcb\x1d\x4e\xe7\xe7\xfb\xf9\x3e\xb7\x23\xd8\x5f\xe1\x0a\x5c\x7b\xcb\x8a\xd0\xa5\x63\x97\x72\x41\xbd\x8f\xc1\xfb\x5c\x89\x54\x41\x1b\x41\xc2\xa5\x61\x73\xf7\xd9\xc1\x21\x84\x91\x78\xc9\x25\x43\x6c\x11\x04\xf1\x80\xac\x9c\x03\x6f\xda\x18\xc8\xa8\xb9\xdb\x9c\x78\xad\x4b\x63\x70\x8c\xdd\x16\xb2\x31\x79\x12\xa1\x78\xeb\xef\x24\xa7\xa1\x77\x0c\x3a\x36\xa8\x4d\x9f\xa4\xb2\x94\x70\x30\x89\x37\xb2\x7d\xcb\x08\x33\x06\x9e\xa6\xbb\x02\x8d\x95\x92\x84\xdf\x89\x17\x17\x5c\x8b\xfe\x35\xae\xf8\x9a\x1e\x95\x51\x96\x99\xc8\x42\x81\xf4\xa4\x85\xc1\x09\x6a\x04\x4f\x3b\x45\x5d\xad\x6d\x3b\x09\xfd\x7e\x96\x0d\x16\x8f\xa2\x58\x10\x11\x10\x0c\x7d\x79\x4f\x95\xe0\x16\x67\xc4\xae\xf1\x41\x8e\x70\xb7\xc3\xac\x7e\x6e\xd3\x77\x06\xb5\x99\xdc\x32\x17\x73\xd4\x08\x87\x15\x96\xeb\x28\x17\x2f\x18\x87\xcb\x07\x1b\x9c\xed\x04\x2f\x97\xe1\x7b\xfd\x07\x21\xfd\xd0\x29\x84\x32\x8e\x39\x17\xbe\xcd\x11\x21\xac\x91\x71\x5c\xae\xf0\x51\x98\xc0\x59\x7e\xfa\xc5\x9c\xd4\xc3\x84\x8b\x13\x82\x06\xa7\xe6\xfa\x11\xa6\x26\x59\x28\x5f\x0b\x52\x25\xe8\xd9\x99\x7f\xdc\x9c\x78\x8a\xa0\x3c\x37\xcd\x6d\xe0\xe7\xe8\x75\x25\xf2\x08\xcf\x88\xc5\x8a\x71\xb0\xd9\x78\xb8\xe9\xfc\xd0\x30\x03\xdf\xdd\x27\x48\x77\xc6\x14\x82\xdb\x9b\xa9\xbe\x7d\xf6\xfd\x0c\xf6\xa7\x70\xff\x3a\xf8\x70\x22\x8d\x41\x7d\xe0\x89\xca\x87\x07\xd5\x65\x38\x21\xbd\x6d\xdf\x54\xe5\xa9\x84\xce\x5e\x89\x11\x5b\x69\x3e\x42\x99\xbf\x55\xdf\xcc\x56\x8f\x7f\x41\x48\x70\xe3\xce\xb9\xe7\xd9\x08\xbc\x65\x8b\xd9\xfb\xf9\x17\x12\x94\xba\x0f\x29\xb8\x5f\xd4\x27\x0c\x7e\xad\x39\xe6\xbb\x82\x8f\xf0\x5e\x66\xe2\x70\x5f\x3e\x37\x61\x5d\x6e\xf1\x8a\xd7\xa2\x0b\xc6\x21\xce\xc5\xc5\xe1\xc2\xc4\x42\x66\x0c\xd7\x43\xb9\xf7\x19\x0e\xf3\x11\xdc\xb7\x4c\xd2\x6b\x79\x1f\x40\xf0\x35\x17\xfa\xcc\x2f\x67\x4c\xd8\x2c\xf0\xb8\xe3\xfc\x47\x19\xc2\x72\xf6\x37\x05\x7b\xee\x4a\x10\x9a\x26\xed\x97\xdc\xb8\x37\x93\xc0\xeb\xcb\xde\x35\xeb\xd6\x45\x42\xff\xbc\x23\x83\x12\x45\xef\x18\x64\x29\xea\x5f\xec\xd2\x9e\x45\x63\xe0\xd8\x60\x88\x8c\xdc\x85\x84\x7d\x3b\xd2\xb8\x97\x4a\xdd\x26\xf4\x67\xed\xdf\xf5\xcc\x7b\x2f\x61\x84\xcd\x3b\xde\x45\xd4\x81\xf0\x36\x4b\x6a\xd5\xbc\x32\x6d\x42\x62\x66\x4d\x73\x58\x7f\x39\xe1\xe1\xbe\x8c\xe7\x0a\x6a\xb7\x08\x17\x39\x0c\xe6\x91\x70\x09\x0b\x5b\xf4\xbe\xb1\x85\x8f\x4e\x37\x9a\x9f\x3f\xdc\x27\x16\x45\x58\x9a\x22\x6d\x6e\x1d\xb4\x98\xc0\x1e\xb7\xc2\x30\x50\x9e\x8f\x10\xb8\x36\xb4\x94\x47\x69\x3e\xe1\x38\xe7\x3d\xe6\x54\xc2\x84\x71\x60\xbe\x37\xc9\xe8\x2b\x9a\x10\x12\x17\xf0\x0f\x79\x9f\x8a\x25\x54\x7c\x3e\x57\x5d\x1c\x24\x4e\x58\x2c\x73\xd8\x4b\xd6\xcc\x92\x50\x5d\x95\x20\x7d\x5f\x51\x91\x10\x2b\x64\x7a\x89\x2d\x79\x2e\xc1\x76\xc6\xd3\xac\xb2\xe0\x0d\x04\x23\xd9\xc2\x75\xcf\xd4\x8e\x13\x64\xfc\xdb\xbe\x2f\x9a\xb2\x93\x85\xf4\xbb\x62\xe6\xcc\x87\xf5\x84\xa5\xaf\x8e\x54\xe5\x58\xcb\x11\xaa\xdf\x6d\x53\xd3\x5d\x74\x88\xd0\xb6\x29\x6f\x1d\x97\xe7\x69\xc2\x60\x7d\x43\x1d\x3b\x3f\x17\xa1\x97\xa7\xe2\x44\x5b\xd2\x29\x02\x19\x5c\x93\xbc\x79\xc8\x97\xe0\x5b\x7c\x77\xfd\xcc\x6d\xb7\x09\xe9\x27\x1e\x28\x2c\x9c\x28\x42\xc8\xe6\xfa\x7c\x43\xf1\x94\x1f\x0b\xc9\xde\x36\xd7\xf3\x34\x62\x09\x67\x9a\x59\xf3\xf2\x47\xe1\xbf\x62\x51\xe6\x87\xa1\x10\xc2\xc2\xc1\x48\xe7\xa4\x98\x66\x06\x0f\xb7\x47\x56\x3d\x91\x09\x20\x5c\xfc\xb2\x6e\x52\x8a\xa6\x21\xc1\x68\xb0\xe0\x8c\x6c\xf1\x0c\xc2\x51\x3f\x27\x35\x21\xb5\x7e\x06\x7d\xd7\x27\x7b\x1d\x5f\x3b\x9b\x30\xa5\xe2\xad\xba\xac\x97\x05\x61\xc9\xa5\x85\xec\xfc\x7e\x66\x04\xa3\xa6\xc2\x2f\x09\xb3\x89\xa0\x17\x25\x18\xc3\x59\xca\x22\xe8\x6a\xdb\x35\x73\xf2\x29\x11\x66\xf0\xf0\xed\x58\x18\x6d\x4b\x68\x9f\x79\xb8\x4b\x97\x23\x70\x1c\x62\x53\x3c\x74\x8d\x5b\x5c\x08\x82\x97\x63\xa6\xdc\x19\xb9\x44\x98\xf5\xfa\xaa\xa3\xe7\x83\x62\xc2\xd6\x8b\x5c\x73\x56\x0d\x5f\x26\xb4\xa8\x15\xee\xfc\x18\x72\x92\x30\xe5\xc2\x8a\x46\x19\x71\x47\x42\xe5\xf5\xab\x93\x9f\x4e\x30\x24\x34\x34\x7d\x37\x9b\xd3\xb2\x88\xd0\xda\xb8\x7a\xe8\xe9\xab\x0b\xff\x82\xc8\xc1\x04\x6e\xa7\xc6\xf2\x32\x4c\x8f\x32\x3d\xb6\xb3\x42\x93\xc6\x60\x2b\xa6\xb1\xe4\xaa\x18\xfb\x38\x1c\x92\xe1\x76\xb9\x3d\xf3\x1b\x03\xc7\x10\x59\x5f\x8f\xa9\x26\x84\xcd\x86\xd3\xb3\x2c\x2f\x7c\x66\xe0\xab\xf2\xf0\xcc\xa4\x53\x44\x63\xa8\xd0\xff\x65\x76\x67\xf4\x76\x7a\xf9\x73\x63\xeb\xe9\x3a\x65\x02\x5b\x65\x99\x49\x6a\x83\x12\x61\xb8\xb0\x40\xa2\x31\x67\x90\xc1\x85\xad\x5f\x66\xe9\x34\x0a\x10\x86\x6f\xa4\x3a\x84\xdf\xe7\x26\x2c\x1a\x2a\x78\x30\x7b\x95\x32\x61\xf1\xdb\x6c\x3d\xbd\x9e\x99\x04\x63\x7d\x21\x35\xb6\xee\x0a\x06\x5b\xb6\x0a\xd5\x37\x6d\x9c\x40\xff\xc0\xaf\xd0\xb6\xa8\x27\xad\xf6\xff\x82\x85\xde\xb9\x85\xe6\x0a\xce\x84\x87\x93\x1a\x0f\x4b\x0a\x7b\x10\x5e\x59\x1a\x7e\x7e\x39\x3d\x85\x30\xe5\x49\xaa\xc8\xc6\xba\x2a\x82\xe0\xd7\xec\xc4\xde\x9d\x29\x84\xde\x48\x2f\xce\xbf\x53\xc4\x8b\x53\xed\x45\x6b\x9e\x31\x63\xa8\x0d\xba\xa1\x9c\x2c\xfd\x9b\xc1\xbe\x98\x59\xca\x5a\x4c\x1c\x8d\xc1\xfa\xc6\x48\xd3\x24\x95\x20\x42\xb0\xcc\xd3\x0f\x31\xa9\xdb\x08\x0a\xbc\x82\x1b\xf6\x6c\x37\x22\x9c\xba\xc4\x6c\x90\x34\xcc\x20\x68\x0d\x96\x3d\x95\x18\xc5\x56\x95\x92\x27\x82\xb1\xa1\x04\xb1\x5d\x2f\xd6\x4c\x2f\x5d\x46\x78\x36\xb8\x41\x58\xa1\x48\x8c\xb0\x9a\x79\x9d\xf4\x86\xfd\x0a\xe1\x85\x8c\xa1\xa0\xd8\xd2\x1f\x0c\x82\x7a\x17\xb3\xcc\x07\x3b\x18\x88\xb3\xad\x5d\xbc\x2b\xe9\x30\x8d\xe1\xf1\x93\xe7\xdb\x4b\x34\xce\x8c\x2b\xbd\xf3\x22\x7b\x9f\x54\xdd\x63\x60\x6e\xc4\x12\xb0\x7c\xf9\x81\xc1\xd3\x0a\x47\xb3\x90\x72\x0e\x82\xfe\xa0\x87\x95\x6f\xc7\x20\x33\x86\xf0\xa8\x15\xe7\x2d\x4f\xfa\x12\x46\x26\xac\x1c\x99\xac\x78\x9a\xc6\xca\x16\xff\xf0\x0e\xf1\x2b\xd3\xc6\xa1\xe0\x53\x84\x85\xfe\xf2\xf5\x04\x81\x05\x79\xb5\x4b\xbd\x56\x10\xcc\xf3\x37\x1f\xbc\x94\x6d\x45\xf0\x3c\x77\xee\xe0\xee\x1a\x6d\xc2\x34\xa6\xfb\x91\xb5\xd0\x08\x03\x81\x4d\x41\x53\x73\x26\x58\x11\x4e\xfc\xdc\xba\xf7\x55\x52\x1a\xc1\xe1\xc3\xbd\xa7\xe7\x77\x9c\x27\x7c\xea\x6e\xfd\x3d\xb0\x32\x8e\x50\xbf\xf7\xc2\xc2\xf9\x67\x5e\x30\xf8\x95\xf2\x9a\xaf\x6d\x4e\xff\x38\x7c\xe6\x0d\xae\xb8\xe7\xf8\xa4\x0c\xd7\x15\x94\xef\x0e\xf2\x4a\x13\xaa\xc3\x4b\x7e\x2a\x6a\x4f\x20\xf4\x6d\xd7\xf0\xf5\xf1\x3d\x38\x0e\x6c\x27\x4d\xc3\x6f\x8c\x7e\x3a\xaa\x53\x9e\xbc\xf3\x7b\xd3\xc2\xa0\xe5\xd3\xbe\x55\xd5\x87\xe3\x08\xd5\x4a\x46\x2f\x17\xcd\x0a\x22\x64\x7c\x88\x98\xf2\x51\x52\x94\x50\x98\x30\xf4\xad\xe7\xb2\x25\x41\x28\x4f\xaf\xab\xa6\x59\x85\x30\xb0\x21\x61\x53\xc6\x09\x23\x42\xc4\xad\x07\x83\x81\x9c\x4b\x09\x23\x7f\x5c\x07\x44\x5a\xb5\x08\xdb\x34\x73\x5c\x2d\x6e\x6e\x20\x74\x75\xcd\x9a\xd7\x10\xe8\x46\xe8\x1c\x3c\x78\xdb\xed\x8f\x2d\x21\xf3\x7b\x5d\xd4\x12\x8b\x57\x0c\x56\x64\x3a\x96\xeb\x73\xf2\x12\x26\xfb\xae\x0c\x0b\x8e\xd1\x21\x98\x96\x0e\x4f\xdd\xab\x56\xc7\x8c\xa1\x48\x43\x43\xdb\xe1\xc8\x4e\xfa\x5f\xf8\x93\x9f\x33\x60\xf6\xa1\xb9\x0c\xf3\x2c\x94\x6e\xf0\xcd\x37\x20\x44\x5d\x68\x2b\x7d\xf1\x61\x80\x81\xce\xb1\x97\x6a\xdf\xe2\x4e\xd2\x3f\x30\xfc\x6e\xd1\xb2\x0e\xe5\xa6\x32\xac\x37\x8d\x48\x55\x8b\xdf\x4f\xb8\x5b\x3c\xe1\x81\x92\xf8\x53\x82\x67\xe2\xfc\x2d\x83\xfe\xe7\x09\x17\xa7\x4f\xd0\xf9\x8b\xaf\xa2\xac\x3c\x8b\xc0\x08\x42\x7b\x7a\xe6\xa9\x87\x59\x1a\x04\x57\xcf\xd8\xc7\xb7\x64\x2e\x13\x1e\x0b\xab\x46\xe0\xa5\x28\x41\x99\xb1\x4f\x4f\xdc\xf2\x83\x41\xbe\xf2\xc8\xe3\x2f\x86\x5a\x84\x2d\x07\xe3\xd7\x7d\xb5\x95\x24\xc8\x98\x58\x96\xe4\x8c\xfe\x1f\x36\x9e\xba\x15\x5f\x5d\xb4\x93\xfe\x81\xa3\x3c\x89\x11\x07\xf2\xf2\xcb\xa0\x31\xad\xe5\x71\x47\xe1\x05\x42\xe2\x8d\xa5\x1b\x14\xae\xee\x20\x98\xff\x58\x74\x2c\x82\x6d\x27\x21\x9e\x83\xef\x46\x20\x97\xd7\xb8\xf2\x40\xa6\x3e\xaf\x40\x35\x8a\x30\xcd\xe0\xb6\x62\x7d\x61\x2c\xc1\xe5\x16\x4f\xe2\x83\x51\x9c\x6d\x3f\x41\x0f\x46\xa7\xfd\x97\x4d\x33\xd7\xf6\x84\xb2\xc6\xca\xa4\x93\xc1\xaa\x86\x9f\xe2\x08\x9d\xc9\xae\x46\x47\x6c\x0e\x8c\x43\xbc\xb5\xd9\x80\xe3\xb4\xad\x04\x81\x95\x51\x0f\x87\x0e\x1f\x20\xdc\x5c\xee\x1a\x97\x94\x72\x80\xf0\x95\x43\xe2\x4e\xbd\xb9\x09\xa1\x57\xd8\xe7\x4b\x9a\x98\x25\x61\x4b\x52\x80\x80\x40\x93\x35\x41\x65\xa6\x45\xa0\xef\x1e\xb5\x71\x18\x7d\x3f\x96\x31\x9f\x45\x78\x3c\xa0\xa1\xbb\x86\x7d\x21\xe1\x63\xd3\xdd\xbb\x6d\x87\x17\x13\xfe\x38\x0a\xdd\x52\x50\xbb\x42\xd0\x5c\x73\x79\xfb\xcd\xd3\x36\x04\x93\x25\xe5\x52\xa9\x11\xe5\x2c\x48\xa9\x47\x16\x9a\xb7\x87\xd3\x18\x1e\xbd\xb1\xb1\x4b\x92\x0d\x26\xd4\xdf\x59\x5f\xa6\xb2\x6b\x26\x21\xfd\xc2\xa1\xa0\x0e\xab\x6f\x0c\xde\xe7\x3d\x9d\xdd\x59\xa5\x43\xa8\xce\x3a\x27\xd0\xf3\x31\x99\x20\x26\xdc\xa7\x57\x2a\x92\x32\xae\x90\xd6\xe4\x63\xf3\x9c\xd9\x08\x06\xa7\x62\x57\x1d\xb4\x53\x23\x6c\x3c\xa7\x3f\x85\x27\x68\x98\xc1\xfa\x05\x51\x03\x87\x5c\xd8\x08\xef\x4f\x98\xed\xbf\x54\xa5\x49\x78\xde\xc5\xb9\x98\x6d\x52\x1a\x0b\xf6\x27\xf5\x06\x94\x87\x2a\x08\x51\xec\x02\x77\xff\x62\x4b\x9b\xf9\x54\xb5\xfc\x52\x16\xec\x15\xf4\xaf\x1d\xe9\x2b\x26\xe8\x89\x72\xce\x8d\x19\xb4\x21\xa8\x9f\xda\xb3\x3b\xd8\x64\x07\xa1\xf3\x54\xa9\xc8\x82\xe5\x44\x30\x36\x3e\xe3\xe9\x9c\x22\x4b\x38\xf5\xe9\xe5\xc5\x93\x57\x07\x18\x74\x5c\x5b\xdd\x95\xff\x65\x3d\x41\xe1\x4c\xc5\x8e\x85\xed\xf9\x04\xe6\x8a\x83\x4e\x86\x83\x1a\x21\x46\x6c\x28\x53\x91\x67\x29\xe1\x08\xc7\x50\xc3\x8c\xa4\xd0\x71\x28\x6d\x59\xb5\x94\x7f\xb6\x2a\xc1\x67\xad\xeb\x34\xff\x8f\x12\x84\xc2\x5f\x2a\xdc\x15\x0c\x3f\x21\x4f\x20\x63\xd5\xe4\xb5\x72\xe3\xb0\x52\x51\x67\xff\xce\x65\x15\xe3\xe0\x7d\x7f\x55\x9a\xcf\x28\xb6\x16\x59\x88\xdb\x9e\xce\x24\x4c\x5e\x38\x99\x3b\xea\x78\x26\xe1\xf5\x83\x92\x57\x2b\x1e\xdf\x24\xcc\xa8\x70\xc8\xf4\x5b\x9a\x42\x58\xa6\xae\x12\xfc\x17\x9f\xb6\xfd\x7c\xe6\x31\x20\x49\x38\x77\x8a\xff\xc6\x19\x4b\x1d\xc2\x9f\x4d\x89\x32\x9b\xdf\x95\x13\x96\x5f\x4b\x29\xd9\x30\x0a\xee\x64\xcd\x75\xae\xa3\xb0\xce\x33\x90\xb9\x56\x9c\x4d\xe8\xe0\xcc\xc8\x91\xbe\x30\x9d\xf0\x51\xa7\x60\xe2\xd1\x5c\x31\x82\x5d\xdc\xcc\xe6\x5a\x0e\x59\x82\xf2\x87\x8d\x1f\xb6\x6d\x4d\x26\x04\xf1\xf8\x70\xce\x9c\x7e\x96\x30\x6d\x4f\xe7\xcb\x85\x0a\x97\x09\xc2\x05\xf1\xd1\xaf\x57\x86\x11\xac\x0d\x3e\x75\xa7\xdc\x54\x23\x4c\xf2\x3f\x7e\x69\xd5\x57\xa9\x71\x30\x8a\xd7\x7c\x3e\xe9\x53\x16\x83\x82\x3b\x64\xc8\xe3\x54\x49\x78\xca\x6a\x71\x58\x98\xc8\x41\xf8\xb8\xfc\xf0\x9b\x68\x8f\x52\x02\xf7\x9a\xd7\x15\x91\xa3\xd0\xf4\x39\xe0\x7b\xe0\xe3\x49\x16\x20\xd3\x5f\xa8\x11\x59\x48\x48\xf1\xd2\x9a\x7b\x78\x74\xda\xa2\xb7\xdd\xfb\x90\x47\xc8\x38\xb4\xec\xfd\x12\x2d\x2e\xeb\xff\xaf\xe9\x92\xe4\xa5\xae\xdb\xb2\xbe\xff\x37\x24\x7f\x6e\xe2\x78\xfa\xd5\x67\x1c\x16\x1b\x9e\xd6\x88\x9a\x9c\xff\x2f\x34\x0f\x1d\x9c\xf3\x17\x3f\xce\x9f\xea\x89\x3b\xb7\x8f\x10\x5a\x71\x3a\xe8\x31\xf7\x2b\x06\x71\x1c\x3c\xd6\xbb\xd5\x26\x12\x4e\x07\xbe\xb0\x6e\xaf\x93\x24\x1c\x38\xf7\x8e\x5d\x5f\xd8\x84\x60\xbf\xed\x84\xfc\xfd\xa8\x7d\x04\xcb\xb3\x6f\x97\x87\x9b\xb1\x8d\x43\xe9\xec\xf2\xa1\x67\x82\xdf\x19\x3c\x3f\x99\xaf\xb7\x63\xbb\x12\xe1\x5a\xe9\x03\xb7\x77\x87\x5d\x08\x07\xd7\x6c\x6f\x70\x9d\xb6\x91\xe0\xf0\x3e\x38\xe9\x29\xbf\x33\x21\xba\x65\xbe\x71\xff\x2e\x5b\x82\x67\xd1\xe7\x7d\xed\x5a\x56\x84\xdc\xc0\x39\x1e\xfb\xe7\x6a\x11\xee\xd8\xfc\x11\xbe\xb5\x59\x94\x60\xfb\x4d\x85\x4b\xcc\x73\x98\x41\xe3\x9d\x75\x06\xd7\x44\x8a\x09\xce\x92\x27\xf4\x3b\x6b\x72\x08\x1b\xdf\xe4\x26\xfe\x2d\xff\x41\x40\x79\x90\x7f\xb6\x71\x0b\x83\x4f\x71\x33\xb7\x6b\x57\x4c\x26\xf0\x57\x2d\xaa\xbb\x5d\x6f\x49\x98\xbd\xd7\xcc\xe3\xed\xdb\xd0\x71\xf8\xed\xfc\x46\x62\x30\x73\xdb\x38\x24\xdc\x17\x5c\xbb\x60\x5b\x3b\x83\x5f\x07\x9b\x74\x6d\x32\x35\x08\x7c\xaf\x4c\x44\xa3\x9c\x23\x09\x1e\x72\xcb\xa4\x8b\x1b\x8a\x09\x0d\x3b\x4c\x24\x8e\xb4\x08\x11\xea\x5e\xc4\x5e\x33\x35\x90\x20\x30\xc7\x55\x3f\x3f\xe3\x5b\x47\x68\x8d\xd8\xb1\xa8\xa0\xf4\x02\xc1\x67\x8f\xf8\xc0\xed\x97\xc7\x09\xc6\x43\x11\x93\x95\x4e\x4a\x11\xfa\x32\x8e\x6c\x90\x78\x70\x9c\x50\xa5\x2c\x95\x5a\xf9\x35\x8d\x85\xd4\x7c\xf1\xfa\xcb\x3b\x05\x08\xb2\x6f\x3a\x4c\xb2\xed\x62\x09\x3d\x35\x45\x6c\xbf\xd9\x9f\x30\x38\x55\xdb\x14\x59\x78\xfe\x37\x03\x0e\x1b\xed\xe5\xcb\xe4\x15\x09\xdc\x73\x7b\xb6\xf0\x1e\x91\x27\x6c\x6d\xf8\xf6\xd9\x55\x9b\x8f\xc0\x1e\x28\x38\x38\xf9\xf7\x64\x82\xf4\xe7\xc5\x5b\xef\xdf\x10\x20\x7c\x9e\x57\xa5\x1c\x77\x8d\x8b\x40\xb3\x4c\xf8\xcb\x2e\x9b\x12\x04\xed\x74\x5e\xf1\x2a\x6f\xf9\x17\x5a\x19\x99\xfc\xa9\xaa\x8d\x0c\xae\x70\xac\xcb\xf9\x9e\xc9\x4e\x68\x7c\xec\x26\x7c\xd6\x73\x15\xe1\x6e\xc9\xc8\xf9\x8d\x8a\x66\x84\x7b\xb4\xde\x39\xf4\xa7\x2e\x41\xfb\xd2\x13\x0b\x21\x9e\xe9\x84\xaf\x77\x2c\xae\xdd\x35\x1e\x7d\xf7\xfc\x96\x57\xf9\x84\x7f\x29\x8d\x41\x58\x68\xdf\xaf\xea\xd8\x89\x84\xb8\xec\x81\xe4\x8f\xcf\x9d\x09\xc7\xf6\x96\xae\xff\xc6\xa8\x13\xde\x39\xdd\x6b\x73\x56\x37\x23\x44\x3b\x05\xed\x90\x37\x4d\x25\x3c\x32\xb9\xb9\xf3\xcc\xf2\x54\xc2\x4a\xf3\x82\xd2\x79\x67\xac\x09\xcb\xb4\x87\x14\xec\xcf\xad\x20\xac\xb9\xd6\xf1\xdc\x8b\x5d\x75\x1c\x46\x22\x92\xbe\x66\x45\xbe\x62\xd0\xb9\x61\xd7\x85\xa6\x0b\x39\x84\x69\xdb\xc3\x5e\xf8\x57\xae\x24\xec\x0f\x10\xd9\xa9\xdf\x63\x44\x18\x1c\xd8\xcd\xbd\x7e\x7f\x38\x41\xf4\x70\x60\x5a\x8a\xb2\x33\xc1\xa5\x94\xdd\xfd\xfc\x9f\x35\x84\x10\xd3\x27\xcd\x1c\x5f\xd4\x09\x03\xd5\x42\xd6\x57\xb6\xaa\x10\xb2\xcb\x27\xdc\x5c\x3e\xa1\x99\xc1\x1f\xb3\xb0\x4d\x41\xe5\x6f\xc7\xe1\x63\x9b\x98\xe4\x11\x77\x5e\xc2\x32\xbb\xce\x8a\x7d\x31\x69\x04\xce\xcb\x51\x2a\x37\x02\x4c\x08\x5d\xa9\x1b\x9b\x33\x99\x38\x16\x0c\xab\x63\xc2\xfb\x8e\x5f\x22\x38\x4d\x94\x30\xfa\x35\xbf\x92\xc1\x49\xee\xb5\xb6\xb6\xde\x07\xe9\x1f\xb0\x29\x5a\x96\xb5\x7f\xee\xc6\x71\x48\xce\x4d\x89\xf5\xae\x0f\x66\x8d\x95\xa0\xc1\x19\x49\x7f\x3f\x8b\x03\xdf\x9e\x74\xad\x7b\xdc\xce\xe0\xe1\xd3\xf8\xfa\x49\x46\x3b\x68\x0c\xce\xfd\xb5\xf3\x3f\x76\x79\x10\x64\x96\x26\x26\xfe\x6a\xd9\x4a\x70\x7e\xd9\xd6\x22\xb3\x24\x81\x60\x91\x96\x53\x26\x3b\x8a\x70\xe1\xc8\xe3\x7f\xf1\x66\xf0\x94\xfb\xc1\xa8\x03\x0c\x3e\x04\x9d\xb2\xdd\x18\x11\x46\xe8\x2a\xf3\x71\x6a\xf6\x9a\x4d\x50\x97\x1f\x8c\xab\x0d\x5a\x42\xd0\xb0\x15\xad\x90\x8c\xd3\x24\x70\xd5\x54\x09\xbf\xcb\x38\x4f\xa8\xf1\xcc\x69\x65\xeb\x39\x46\x68\x3b\x31\x91\xf3\xa7\x7c\x53\x19\x46\x32\x25\x6b\xe6\xed\xc8\x23\x64\x5d\x3e\xf6\x4b\xaf\xef\x26\xe1\xc9\x13\xf1\x63\xf1\xd7\xab\x19\x14\xc9\x6f\x6e\xe5\xb2\xac\x65\x90\xfb\x2c\xfb\xcd\xc8\x0d\x76\x42\xc1\xd6\x09\xdf\xb9\x63\x27\x11\x3e\x2e\x9e\x5a\xf1\x96\x87\x8f\x90\x99\x26\x70\x45\x79\x83\x06\xa1\xe8\x99\xf1\x99\xe1\x4e\x55\x42\x41\xed\xbc\xe5\xec\xf6\x53\x08\xbd\xd3\xa6\x96\x1c\x34\xd6\x21\x3c\x8c\xcd\x5b\xd4\xbc\xec\x23\x83\x06\x15\xdf\xa3\xf7\x55\x26\x12\xc2\x05\x03\x62\x82\x2b\x7c\xfe\x05\xc5\xab\x67\x7e\x7d\xaf\xae\x1b\xf7\x87\xaa\x3a\x73\xcd\x2f\x2d\x39\x98\xc6\x10\xfc\xc3\xf4\xb3\x59\xca\xe8\x0f\xeb\xfc\x38\xf2\x79\xf2\xe8\xf5\xc0\x50\x79\x20\x6d\x2e\x27\x81\xb5\xf8\x7d\xa5\x82\xe3\x6f\x66\x0c\x1a\xc7\x06\x7e\x07\xdf\xbc\xcf\x40\xd0\x76\x67\xc6\x4a\x8e\x26\x06\x26\x1e\x8a\x0e\xdf\x6d\x78\x69\x0c\xc7\xfa\x77\xd9\x4e\x91\xba\x42\x18\x92\xb8\xe3\x3e\x70\x57\x93\x30\x31\xc9\xd4\x49\xd6\xe6\xe8\x38\xd4\xb4\xe9\x64\xd2\x9e\xc3\x84\x8a\xb7\x29\xac\x6b\x39\x1c\x84\xa2\x16\xa9\x37\xbf\x73\x55\x09\x41\x47\x37\x04\x94\x94\x0f\x30\x48\x4c\x3c\xe2\x54\xdc\x3a\x83\xc6\x30\x33\xf9\xa3\x93\x9b\x6f\x3c\xe1\xa3\x9b\x41\xaa\xeb\x28\x7c\x3d\xa3\x97\x8f\x38\x9e\xfe\x17\xda\xde\x5d\x3d\x72\x86\x6f\x09\xe1\xb6\xce\x63\xfb\xec\x69\x03\x0c\x86\xb8\x37\x5d\x8f\xdd\x3f\x91\xa0\x18\x68\xc4\x73\xf9\xea\x6c\x1a\x2b\x1f\x3b\xcf\x99\x1c\x64\xef\x66\xd0\xa9\x39\xfc\xf6\x73\xcb\x76\x42\xa8\xe0\xf2\xa4\xa4\xac\x1d\x04\xeb\x32\xc3\x1b\x5a\x0d\x2a\x84\xed\xee\x39\x4f\xca\xa3\x94\x08\xd5\x6a\x9d\x15\xd1\x83\x0a\x04\x51\x0f\x49\xbd\xeb\x01\xe9\x84\xa2\x27\x59\xfb\xe7\x28\x06\x11\x56\x91\xdd\x25\x49\xaf\x78\x42\xc2\x3b\x22\xb3\x6f\x2b\x08\x5f\xea\x3d\xb6\x1d\xee\xad\x21\x4c\x34\xab\x36\xb8\xa7\xd9\xc7\x20\x94\x27\x71\xfe\xd0\xe8\x27\xf8\x1f\x2c\xfd\x74\xe7\xcc\xb9\x4a\x1d\xc2\x92\xbe\x4a\xe1\x83\xa1\xa7\x09\xe7\x79\x24\xd4\x76\xe7\xde\x24\xac\x7e\x9e\xd6\x91\xce\x96\x4a\x70\x73\xe3\x2d\xb7\xcf\xfc\xce\xc0\x0e\xbf\x37\xf3\xd7\x68\x10\x36\x4e\xeb\xf0\xb9\xa4\xad\x4f\x18\xec\x19\x59\x51\xd4\x24\x31\x0e\x3c\xb7\xf5\xaf\x45\xf8\x6c\x20\x3c\xde\xa5\xfe\x50\x5d\x27\x8f\x35\x56\xb8\x5d\x2d\x56\xbd\x75\x9a\x40\xb8\xcb\xda\xf7\x69\xc3\xec\x8d\x04\xbf\x6c\x85\x44\xdf\x6d\xc9\xe3\x30\x78\xe4\xc5\x76\xe9\xf0\x04\x82\x9c\x79\x66\x8b\x9a\xaa\x28\xe1\xfc\xfc\x8f\x6b\xaf\x9b\xbe\x2a\xc3\xa1\x53\x26\xf7\x36\x5b\xec\xa2\xff\x85\x23\x57\x5c\x8f\x79\x2d\x98\x4c\x70\xda\xac\xb5\x4d\xb8\x60\x21\x81\xb3\xd9\x3f\x5d\x46\xd2\x84\x50\x66\x79\xf5\x79\x79\xc5\x04\x82\x53\x5c\xf1\x37\x49\xe1\xe2\x71\xf8\xd3\xa5\xbb\xf9\xbf\xcb\xd0\x62\x76\xf6\xf4\x13\x77\x18\xa4\x4a\x5c\x5a\x74\xe2\x79\x1a\xe1\xe0\x81\xd0\xe5\x13\x52\xa7\x11\xd8\x0a\xbd\x67\x5d\x2c\x9b\x43\x88\x39\xe5\x35\xf0\xaa\xc3\x83\xc0\x5a\xcd\x9e\xa8\xcd\x35\x79\x1c\x5c\xf7\xcb\x45\xad\x56\xfd\xc6\x60\x44\xc5\xd6\xce\x3a\x49\x9e\x60\x7d\xd5\xe4\xcf\x6a\x64\xb1\x70\x77\xba\xb0\xf2\xd9\x0e\x79\xc2\xba\xa1\x93\xf2\xef\x9e\xb2\x13\xd6\xda\x74\x95\xca\x08\x2c\x21\x70\xa4\x5a\x09\x96\x36\x08\x11\x24\xeb\x96\xb9\x0e\x95\x7f\x66\xa0\x9a\x1c\x31\xc5\xe6\xe9\x7c\xc2\xba\x75\xee\x5c\x07\x26\xcb\x12\xde\x57\x2d\x73\x5f\xda\x6c\x4f\x88\x8a\x0b\xbd\x67\x9c\x6a\x4e\x50\xb3\x79\x59\xdb\x79\xdd\x90\xd0\xbc\xa2\x5b\xdd\x22\x4e\x8a\xf0\x58\xe4\xc5\xec\xb9\x9f\x17\x8c\x83\xf4\x7d\x19\x51\x36\xbe\x7e\x06\x5e\x15\xe2\x01\x37\xbb\x15\x08\xf6\x76\x83\x72\x36\x36\x6b\x08\x75\x12\x4b\xb5\x25\x04\x2d\x09\x17\xb3\xb6\x2e\x62\x6e\x5b\x12\xce\x0b\x1e\x36\xc8\xde\xe8\x47\x88\x8a\x7d\xce\xbe\x36\x69\x01\xe1\x45\xe6\xad\x53\xbf\x4f\xf0\x11\x42\x84\x6e\xf3\x05\x1d\x53\x21\x04\xcd\x78\x75\xe8\x8b\x3c\x3b\x61\xd5\x32\xbb\x90\x27\xd3\x46\x1f\x64\x4f\x1e\xb8\x9d\x88\x12\x23\xd4\x2d\xd3\xe2\x09\xb3\xb6\x22\x9c\x5e\x29\xde\xfb\xb6\xb6\x80\x05\xff\x97\x9d\xe6\xb2\x7c\xe2\x04\xe3\x5f\xca\x59\x31\xe1\xb2\x04\x8f\x73\x7a\x9e\xbc\x3e\x19\x0c\x98\x41\xaa\x52\x9e\x7c\x9b\xc0\xdb\xb5\xd5\x35\x77\x4d\x1f\x0b\xde\x09\xcb\x8b\x63\x8f\x55\xb0\x30\x25\xdc\xe3\xdb\xdf\xa9\x56\x47\x7e\x9d\xbc\xd5\x51\x16\x7e\x0d\x15\x6b\xcf\xe3\x28\x20\xec\x31\x9c\xc0\xa5\x74\x74\x88\x41\xf0\xae\xe5\x4d\x9c\x91\x56\x84\xde\x3b\xcb\xc2\xd7\x91\x23\x41\xb6\xe7\xb8\xdb\xc9\x93\x19\x04\xc7\x77\xab\x02\x9a\x2d\xf6\x13\x92\x43\x6a\xbe\xd4\x6d\xab\x23\x68\x76\xc4\xad\x89\x8c\xa9\x20\x9c\xb8\x7b\xfa\x85\x52\x5c\x21\xc1\xbf\x70\x53\x0b\x37\xdf\x3e\x42\x0e\x7b\xa3\x51\x34\x9f\x25\x41\xc1\x77\xc3\xe1\x99\xbf\xd6\x13\x52\x75\x67\xfd\x98\x2f\x95\x43\xf0\xbe\xb7\x54\x5a\xf1\xbf\xb0\xd8\x61\xbb\xe5\x5f\xe4\x9c\x59\x98\x7e\xeb\xcb\x11\x82\x19\x8f\x78\xa6\xff\x54\x7f\x42\x57\xc6\x53\xc7\x75\x8b\xfa\x19\x84\xec\x8a\x9b\x72\xea\xc6\x0c\x82\xde\x53\x2e\x1e\x05\x33\x8d\x71\xa8\x17\x8f\x62\x1d\xfe\xe4\x3c\xae\x34\x1f\x79\xea\x1e\x61\x3d\x67\x1c\x4c\x17\x6b\xb7\x08\x58\xef\x20\x28\x65\x44\x6e\xe8\xba\xd1\x4a\x10\xd0\xf2\xaf\x33\x7e\xff\x84\x20\x7a\x41\xee\x85\x9d\xee\x2b\xc2\xf4\x4d\xa1\x5e\xb7\x4e\x94\x12\xdc\x2c\x57\xdc\xa8\xdd\xbc\x92\xc0\xe6\x28\x6f\xb4\x66\x79\x0c\x61\x6f\xe2\xf2\x68\xd3\x9d\x83\x0c\x9e\xcf\x56\xf4\x91\x6d\x3d\x38\xae\xbc\xae\xbd\x74\x4f\xfa\x7a\x15\x83\xdb\xdc\x97\xdf\xbb\x4f\x5a\x4c\x38\xd8\x76\xf9\xee\xf5\x32\x0f\xc2\xed\xb9\x42\x3b\x38\x13\x53\x08\x17\x63\x26\xb5\xbc\x5c\x72\x8a\x70\xa5\xfe\xe8\x3d\x89\x1c\x79\x42\xd6\x91\xe3\x4e\x07\xef\xac\x19\x57\xfe\x83\xe7\x2d\xeb\xc5\x0a\x05\xb3\xca\xc6\x70\xa0\x64\xc1\x2f\xa7\x4f\xe5\x84\xce\x49\x46\x7c\xce\xa3\xf8\x72\xd8\xef\xbe\xe9\x8d\x67\x04\xa5\xb0\x4b\x43\x6a\x8d\xe9\x04\x7b\x31\xd1\x87\x8e\xa3\x93\x4a\x62\xf9\x2e\xa1\x23\xd1\x84\x83\xd6\xf9\x7b\x37\x4d\x8b\x1e\x57\xfe\x03\x8e\xd5\x41\xb6\x5a\xc7\x96\xb2\xb0\xa1\xc0\x6c\x8d\x60\xa9\x17\xe1\x58\x77\xfe\x6f\xbd\xd7\x37\x09\xad\xa9\xe7\x23\x77\xb7\x96\x10\x96\x38\xcb\xc9\x1a\xae\x2e\x20\x3c\xfe\xa0\xed\xfb\x4b\xa3\x94\xa0\xc2\x5e\xc7\xd7\xd9\x19\x4f\xb8\xeb\xe8\x35\xb1\x61\xf9\x75\x16\xa4\xb6\x0e\x3f\xf8\x51\x93\x49\x38\xea\x70\xff\x90\x72\xe8\x6d\x16\xcc\x6f\xba\x5b\x77\xdf\x4c\x24\xfc\x9e\x7e\x1d\x9f\x13\x96\x12\xc2\xdd\xa5\x0a\x26\x9f\xbb\x40\xd8\xec\xac\x35\xc8\x71\x2e\x9b\x90\x20\xd0\xfd\x45\xc4\x2e\x87\xc0\x26\x24\xf9\xea\x6f\x19\x98\xea\x60\x6b\xff\xc8\x9a\x60\x30\x61\xa2\xfe\x87\xa0\x9d\x84\x47\x1e\x2b\xc5\xe5\xbd\xdd\x58\x63\xd3\x31\xa7\x3f\x5a\xf5\x17\x95\x08\x71\x7a\x0d\x8a\x6b\x56\x17\x13\xc2\xa7\x16\xe7\x77\xcd\x5f\x47\x50\x3b\x1c\x9f\xb5\x98\x43\x93\xd0\x6f\xde\x20\xa7\x9e\xa3\x46\x10\x77\xd9\xcb\x2b\x9c\x60\x4a\x08\xac\x5a\x65\x1d\x18\x6f\xc0\xc2\xba\x05\xb2\x1b\x1a\x1c\x7a\x19\x34\x46\x3f\x08\x58\xff\x94\x8d\xc0\xa6\x3b\x5f\xcc\xb5\x2b\x94\x35\x56\x46\x36\x1e\xaf\x56\x3f\xc8\x31\x0e\x8e\x4a\xc7\xbd\xdd\xd8\xac\xff\x85\x9e\xa3\x5e\x39\x6f\xa7\xbd\x62\x20\xef\x22\x9b\xf6\xe9\xcc\x32\xc2\x93\xdd\xf5\x77\x8f\x57\xee\x27\x2c\x1b\x29\x37\x4f\xe9\xde\x4f\x28\x09\x48\xa8\xb8\x99\x11\x3b\x0e\xbd\x6a\x6d\xa7\x15\x9d\x22\x08\xe1\x2e\xd3\x59\xdf\xac\xd3\x08\x97\x74\x1e\xe7\x71\xe4\x7b\xb1\xf0\x65\x7e\x68\x9a\xda\x73\x57\x82\x7c\xef\xbd\x07\xb7\x1e\x67\x12\x96\xd6\xba\x25\x48\xed\x2b\x26\x2c\x1b\x3a\x9d\x58\xfc\xf6\x06\x81\xde\xf7\xad\xe9\xec\xc8\x24\x3c\xc9\x98\x74\x2f\x7d\x5a\x18\xe1\xee\x15\x3b\xc5\x45\x1c\x1b\x09\xa1\x0a\x41\x32\xb3\x82\x37\x12\x96\xca\x84\x89\xf8\xe6\xe7\xb3\x30\xa9\x56\xb4\xa4\x55\xce\x9d\xf0\xbc\x77\xee\x8b\xcf\x25\xc5\x04\x83\xa4\xc9\x92\xe5\xf2\x25\x84\x21\xfb\x57\xb6\x5e\xab\xad\x09\x0d\xd3\x86\x72\xf3\x6b\xa2\x09\xfb\xce\x58\x87\x56\x58\xf1\x12\x64\x78\xf3\x2b\x63\x27\x67\x32\x63\x78\x7b\xef\x5e\xe3\x76\x15\x59\xc2\xf1\xca\xaf\x0d\xdb\xae\x4d\x25\x44\xbe\x91\x0f\xd9\x27\x7c\x89\x10\x78\xb7\x39\x76\x6d\x9c\x19\xc1\x5b\xd0\x54\x74\x51\xd5\xc4\x7f\xe1\x5b\x44\x87\x9a\xd8\x93\x0e\x06\x43\xac\x62\x79\x69\xef\x8d\x84\xa4\x4e\xcd\xae\xa0\x96\x7e\x06\x9c\x06\x5c\x2d\x66\x9d\x12\x84\x79\x96\x0e\x77\x66\x4d\x7f\xce\x42\x53\xc3\x42\xf6\x95\xa3\x45\x75\x9d\xe5\x8a\xdd\xfb\xd4\x08\x8b\x17\xab\x7f\xdd\x2b\xfb\x9d\xc1\x37\x51\x0d\xdd\xa4\x69\xcb\x08\x3f\xae\x74\xac\xf6\x75\x5d\x4a\x38\xe8\x22\xfe\x84\x7d\x44\x94\x90\x61\x2b\xfe\x2b\x35\x44\x82\xd0\xd8\xb6\xc7\xc2\x7d\x59\x21\x41\x66\xaa\xde\x70\xf5\xa0\x31\xa1\xab\x3e\xbf\xc7\xe0\x4f\x3b\x41\x4c\xc2\xe5\xea\x33\xae\x46\x42\x77\xd6\x91\x96\xbf\x98\x6a\x91\x3c\xe9\xc5\x28\x44\x96\x3e\x9d\x71\x16\x67\x09\xdb\x96\xc7\xaf\x3f\x34\x10\x47\xe8\x69\xb8\x21\xfb\xee\xf6\x1a\x82\xd2\xd1\xb5\x2e\x1b\x67\x9e\xfe\x17\xde\x2c\x74\x6f\xe0\x5c\x6f\x4f\x30\xd8\xd0\x34\xe7\xc5\x80\xfd\xb8\x32\xcc\xfe\xe0\xbb\x7b\xd8\xe8\xb9\xfa\x76\x8a\xc9\xac\x8c\x0a\xc2\xcd\x04\xe5\x2c\x1e\xab\x8a\x71\xe5\xc7\xd9\x55\x5f\xf3\x7a\xf4\x09\x67\x2c\xfb\x5c\xa5\xd6\x98\x10\x1e\x58\xa8\x48\x7d\xbf\xc2\x4d\x10\x68\xe8\x98\xce\xed\x75\x9c\xd0\x7a\x3b\xcf\x7e\xb6\x92\x3b\xc1\x9d\xff\x63\x67\xfe\x24\x09\xc2\x46\xcb\x14\xae\xa3\xe6\xf7\x08\x4d\x32\x3b\x65\xa4\x94\xd8\x09\x2e\xb9\x1a\x01\x2b\xb7\x3b\x8e\xc3\xc3\x77\x47\xfb\x23\xb5\x24\xc7\xc1\xea\xfb\xf3\xac\xb3\xdb\xb2\x09\xab\x92\xe2\xd7\xb4\x5a\x7e\x60\x60\xa7\x38\x58\x7e\x24\xad\x90\x70\xe8\xfc\x2c\x71\x77\xcf\xed\xe3\x30\x67\xe1\xe2\x0a\xa5\xc2\x6d\xff\x42\xf9\x95\xfe\x7d\xe9\x3f\x54\x08\xe7\x5a\xd2\x0f\x74\x17\xd8\x12\x2e\xea\xee\x10\x1d\x8c\x36\x26\x64\xe7\x16\x7f\xfe\x14\x22\x47\xb0\x33\x79\x70\x40\x72\x4b\x01\x81\x33\xe8\xe9\x41\x13\x8f\x02\x82\xa2\xc2\x12\xb3\xe0\x13\x49\x84\x28\x1f\xd7\x92\xe8\x79\xf6\x84\x4c\x69\xd7\x8c\xf5\xd1\x76\x04\x88\xb8\xbe\xff\x26\x76\x66\x1c\xdc\x5e\x48\x7d\xf8\x65\x16\x41\x78\x7a\x73\x97\xc1\xa2\xd5\xbf\x18\x28\x7c\x4c\xdf\x72\xdc\xbe\x8c\xa0\xef\xa4\x71\xf4\xe4\xc4\x0a\xc2\xaa\x9e\x54\xf3\x67\xc6\xa9\x04\xe3\xc1\x3a\xe1\xbf\x85\x5d\x77\xe5\x9e\x30\x38\xd0\x4f\xe7\xb4\x05\x2f\xab\xef\xb2\x10\x30\x95\x7f\x6b\xff\xcd\xc7\x04\xb3\xee\x68\xab\x99\xea\x0f\x09\x9b\x63\xc2\x8f\xc6\xed\x69\x61\xe1\xf2\x8e\x0d\x7d\xf5\x72\x95\x04\xa9\xd6\xaf\xfc\x69\x7c\xa7\x58\x98\x37\xb2\xb5\xdb\x3b\x30\x9f\x85\xdc\xeb\xfb\x36\x74\x06\xe6\x11\x3a\xfb\x6a\x13\xa2\x3d\x73\x09\x9f\xa3\xe5\x17\xd3\x93\x3c\xc2\x27\xbd\x0f\xa9\x5a\xf7\x7c\x09\x55\xdf\x18\xab\xa3\x1e\x17\x59\xf0\xe0\xb4\xd5\xc9\x6f\xcd\x65\x81\xfd\x91\xd8\xda\x76\xdf\x47\x2c\x1c\xd2\x69\x35\x94\x7b\xfd\x9a\x85\x45\x8f\x27\xcf\x31\x50\xbb\x4c\xd0\xd6\xde\x6f\xb2\x3c\x7e\x3f\xc1\xdc\xbe\x50\x53\x4e\x3a\x99\x85\x33\xaf\xf7\xf0\x2f\x78\xb7\x9f\x50\x13\x66\x55\x3b\xfd\x72\x05\xc1\xe3\x88\x66\xf0\x9a\x08\x29\xc2\x3b\x37\x6c\xe2\x5f\xf9\x95\x41\x6d\xf8\xe6\x8b\x31\xe6\xe5\x84\xe9\xd3\x95\xcb\xf6\xde\x78\xcc\x82\x6f\xe3\x82\xf5\xd2\x5c\xc5\x84\xb8\x99\x71\x8d\x7f\xa7\xa8\x6b\x6b\x54\x0b\x83\xf5\x08\x5f\x3c\x65\x4e\x9e\x28\x63\x11\xf2\x63\x44\xf2\xcc\xae\x74\x94\xc1\x73\xc9\x0c\xf5\x73\x1e\x8b\x68\x0c\xbb\x34\x25\xcb\x7f\x4b\x3e\x29\x43\xf0\xb0\x40\xfd\x64\x99\xbd\x84\x73\x7c\xe5\x3b\x7d\xf6\x58\x8d\x43\xae\x51\xf6\x99\x96\x87\x1a\x84\xbb\x8d\x9f\x87\x16\x5b\x7b\x12\x0e\xed\xf9\x58\xd1\xd4\x2a\x4e\x58\xb8\xfe\xfb\xe2\x4b\xc9\x1c\x04\xbf\x9a\xb8\x92\xda\x3d\x85\x2c\x18\x1f\x79\xa8\x1c\xf4\xba\x9c\xd0\x52\xc9\x56\x53\xf8\x31\x8d\xa0\xc5\x35\x5f\x60\x77\xb3\x07\xc1\xb0\x78\xd7\xfe\x8b\xbc\x92\x84\xd6\x1d\x49\xcd\x85\x1f\xd2\x09\xd6\xea\xf7\x7d\x4e\x1e\x95\x20\x4c\x0b\xbf\xda\xc6\x91\xf5\x94\x01\xb7\xb7\x46\x9d\xaf\xfb\x39\x1a\xc3\xc1\x68\xa9\xcd\x66\x75\xb7\x08\x1a\x19\xed\x21\x7e\xa3\xc5\x63\x76\x9e\xd5\x5f\xbc\x3b\xf7\xb1\x65\xa1\xd4\x9e\x7f\x41\x5e\xfd\xd3\xef\x1b\xb1\xac\x32\x54\x8a\x75\xb3\xd6\x7f\xae\x66\x41\xe8\x7b\x55\x0d\x7b\x60\x21\x01\xe4\xdc\x3d\x22\x6b\x49\xa8\x9f\xea\xb7\x3e\x4e\x37\x92\x85\xbd\xf5\x89\xf7\x3a\x5a\xa2\x69\x0c\xce\x3f\xa4\xe6\xc9\xdf\xde\x4d\x58\xa2\x27\xea\xac\xd5\x5e\x44\x58\xdb\xa4\xf1\x75\xae\xe6\x7e\x42\x16\xef\x4b\x95\x8f\x27\x2e\x13\x7e\xcf\xd5\x9b\xb5\xf1\xe4\x65\x42\xbf\x81\xac\x80\x60\x58\xf3\xb8\xf2\xa5\xc7\xcd\xfc\xd2\xc3\x38\x82\x62\xc8\x49\xaf\x99\x8f\xe2\xc6\x95\x26\x99\xe2\xcc\xaa\x25\xd6\x04\xf3\x8e\x43\x61\x2b\xcc\xe5\x08\xb3\xe5\x12\x7f\xe7\x15\x09\x13\x84\x24\x96\xed\xac\xb3\x2e\x23\x24\x1c\x58\x67\xf2\x78\xba\x0b\x41\xf1\xf5\xea\x41\xad\x80\x93\x2c\x3c\x19\xf8\xb5\x41\x6a\x62\x15\x61\x05\xf7\xf0\xd3\xcd\x73\xd3\x09\xeb\x05\x58\x5f\x77\xb0\xee\x10\xd2\xe6\x15\x8b\xfd\x9d\x3e\xa6\x64\x2c\x7f\x73\x78\x0f\x0b\x26\xa9\x7e\x0f\x5b\x22\x72\x08\x07\x4c\x8f\xde\xae\x0b\xc9\x21\x4c\x7f\x2a\xa1\x93\x19\x99\x43\x28\xdc\x71\x33\x6f\xcd\x69\x57\x02\x7b\xca\x9d\x0f\xa4\xb5\x8e\xd0\x2a\x11\x30\x21\x28\xd1\x9d\x70\xe2\xe8\xea\x35\x39\x29\x1b\x09\x97\xdb\x1f\x27\xaa\xec\x8f\x24\x88\x1f\x39\xf2\xe9\xb6\x38\x43\x50\xdb\x54\xaf\x71\x2a\xcd\x9b\xf0\xf0\xfb\xbe\xf8\xd2\x40\xc1\x71\x68\x75\xab\xb5\x2d\x92\xed\x67\xb0\x2a\xb7\xfb\x05\xd7\x56\x7e\x02\xd7\x70\xcd\xee\xab\xa5\x0c\xe1\xcf\x86\xfd\xa5\xc3\x61\x2a\x04\x76\xa7\xe4\x17\x01\xcb\x8f\x31\xe0\xf3\x3c\xf5\xf1\x83\x96\x16\xe1\x1c\xb3\xc8\x41\x53\x59\x93\xb0\x62\x65\x4b\xf5\xfa\x95\x3c\x04\xd3\xa5\x57\x1f\x9c\x9f\x6d\x45\x88\xdc\x25\xb0\xa4\xde\xbe\x8e\x81\x7c\xbe\xe7\xaa\xea\xf5\x56\x84\xaf\x5b\x3a\x6f\x5b\x96\x5f\x26\xe4\x3b\xed\x5d\x6b\x35\x8a\x9f\x5f\xa6\xe8\xf7\x0e\xa5\x8c\xc3\x76\x92\x97\xbd\x2c\x5b\xc1\x80\x3b\xd4\x42\x26\x7e\xf1\x24\x82\xfe\xa2\xa8\xd3\x4d\xbf\xf5\x08\x99\xd7\x1c\x0e\x4d\x8d\x4a\x23\x7c\xb8\x55\xdd\xc9\x35\x8a\xc2\x5b\x8f\xd3\x35\xa2\x0f\x13\x7a\x56\x37\xdb\xbe\x3b\x38\x9b\x50\xf4\x6e\x6b\xd1\xd1\xf3\xf6\x84\x82\xa5\x81\x26\xd3\x67\xc9\x8d\x2b\xc5\x8f\x66\x75\xcc\xb4\xe6\x1e\x07\x8b\xcc\xbd\x0b\xf3\xd4\xfb\xca\xd0\xb9\xd2\x5d\x1e\x76\x03\x0c\xbc\xd8\x66\xbe\x17\xfa\x3d\x97\x30\x24\xad\xa3\xd0\x93\x63\x44\x68\xff\x2a\x16\x52\xc6\x21\x47\x58\xf7\x7b\xe0\xe4\x26\x7d\x0e\x42\xcf\xfc\xd7\x8c\x74\x74\xc0\x38\x98\xff\x98\xb4\xe5\xc9\xce\x49\x04\xcb\xe3\xe1\x8e\x57\xfb\x53\x58\xc8\x2a\x33\xbc\x92\xe5\x56\x4f\xb0\xa8\x3e\x5a\xdd\x61\x57\x4b\x38\x36\xc3\x25\x5c\xa0\xb7\x90\x60\x6c\x7e\xa3\x52\x7e\x82\x3d\x21\xcf\x72\xa4\x67\x99\xbf\x2e\x81\xdb\xff\xda\xd5\x75\x7e\xc2\x84\xe1\x0c\x65\xae\xc2\xc3\x46\x04\x2e\x7f\x8b\xca\xb8\x28\x86\xe0\x7b\x5b\x9a\x6d\xff\xf7\x45\x04\xb7\x8f\x95\xfb\x6b\x5c\x55\x09\xbd\xb6\x0a\xb2\xaa\x89\x7c\x84\x79\xb5\x59\x21\x73\x92\x37\x8d\x83\xc6\x99\xda\x19\x85\xad\x4e\x04\xfb\xe2\x6f\x5d\x5f\x2b\xf5\x09\xc3\x5c\x53\x67\xcf\xe7\x1d\x66\xd0\x7f\xfc\x6b\xf7\xc3\xe7\xf5\x65\xb0\xa9\xee\x3c\x38\x55\xd6\x8e\xfe\x81\xe7\x4f\x6d\xa3\xd9\xbf\xcb\x11\x9c\xfc\xdf\x2e\xcf\xb8\xb0\x91\x70\x6f\x53\xa9\x55\x6f\x95\x1e\xa1\x46\xfc\x95\x83\x30\x8f\x26\xe1\x5c\x56\x73\x30\x85\xda\x11\xa4\x1f\x59\x93\xd0\xd4\xc9\x84\x2d\x35\xc1\x0b\x99\xee\x32\x82\xfb\xc5\x3f\x05\x31\xf5\x61\x84\xc9\x46\xb7\xdc\xcd\x44\xd9\x09\x1e\x27\xee\xbe\x7a\xf0\xb2\x96\x01\x7f\xcc\xcb\xa0\x7d\x52\xbf\x18\x38\x71\x5f\xb4\xfc\xb6\x41\x9e\x60\x26\x21\xed\x6e\xab\x29\x44\x98\x3b\x77\xa7\xe6\xa0\x4f\x21\xe1\xfd\xf5\x73\x6e\x7f\x21\x5d\xac\xbe\xce\xa8\xc0\x9a\xf0\xda\x6c\x5f\x59\xe0\xdc\xf5\x04\xb7\xee\x8d\xb7\x24\x5a\x18\xc2\xe7\x84\xfe\x27\x8c\x73\x2a\x21\x61\xe7\xdc\xbd\x2e\x19\x95\x84\x43\xf9\x26\xea\x34\x5a\xac\x3a\xa6\xf4\xfe\x9d\xd4\x9c\xe7\x6e\x3e\xd0\x25\x47\xb8\xfd\xc1\xda\x35\x43\x2d\x85\xe0\x92\xb3\xe0\x94\x0a\xc7\x21\x82\x09\xb7\x5f\xdf\xe7\xbc\x64\xc2\x89\x49\x21\x2d\xc1\xad\xce\xe3\x50\x79\xf0\xaa\x33\xab\xd9\x93\xf0\xac\x58\xd3\xf9\x44\x8c\x2a\x61\x86\xe6\xd9\xbe\xda\x2e\x4e\x42\x17\xe6\xbd\x96\xbe\x92\x42\x58\x70\x4a\xca\xd5\x47\xcf\x80\xa0\x94\xa9\xf0\xfa\xbe\x68\x3e\xa1\x6a\x81\x75\xe4\xb1\xa7\x7a\x04\xe7\x6a\xc1\x07\x03\xde\xe9\x84\x1b\xf5\x3b\x32\x67\xe7\x71\x11\x9c\x9d\xd6\x1c\x1f\xa8\x6e\x62\x61\xfb\x70\xb3\xdd\x91\x67\x8f\x09\x77\x34\x65\x5c\xb7\x05\x55\x11\xc4\x3e\xcc\xb7\x5a\x6a\x5d\x4a\x18\x51\x77\xda\x60\xaf\x50\x41\xd8\x92\x7b\x73\xc6\xa1\xc4\x32\x42\x8b\xfd\x9f\x84\xa4\x85\x15\x04\x8d\xea\x57\x2f\x26\x1f\x15\x27\x38\xe5\x74\xcc\x9b\x33\xe5\x0a\x0b\x93\x9e\xac\xde\xe6\x98\x9d\x42\x10\x49\x98\x27\xb5\xd8\x4e\x89\x70\x61\xef\xce\xb5\x85\xa2\xae\x2c\x9c\x96\xfe\xd2\xd8\x16\x7e\x9f\x20\xb6\x6a\xca\x65\xa5\xf3\xb9\x04\x8d\x13\xbd\x72\x5f\x05\x2d\x08\x76\x3a\xa5\x46\xe7\xda\x27\x10\x7e\x73\x57\x7b\x94\xf6\x44\x13\x96\x65\xab\x7a\x9d\x8f\xa8\x20\x48\x57\xe9\x39\x1b\xce\x28\x21\x14\xf4\x76\x5e\x7e\x69\x5d\xc2\x1a\x9b\xea\x8e\xde\xc8\x4c\xe9\xad\x24\xd4\x6e\xce\x3c\x31\xb0\xe0\x00\xc1\x63\x9e\xac\x53\xdd\xa4\x74\x82\xd3\x8e\x17\x7b\xd4\xec\xfd\x46\x0f\xb4\xc7\x47\x74\x38\x04\x09\x6a\xbf\x2d\x34\xaf\xa8\x1f\x1f\x87\x0c\xef\xe7\x77\xed\xd7\x7f\x67\xf0\x7a\x44\x59\xd7\xd9\x5d\x94\x10\x6e\x70\x91\xb3\x3f\x58\x9d\x30\xe3\xc9\x97\xbd\x83\x2e\xaa\x84\xa6\xbe\x00\xc1\xaa\xd9\xd2\x84\x99\x07\xd5\x77\xde\xf4\xe7\x25\x14\x05\x05\xb5\x8a\x1f\xca\x27\x98\x86\xdd\xcc\x89\xf4\x2e\x26\x7c\xb9\xf8\x70\x75\xad\x70\x2e\x0b\x01\x87\x1d\x34\xce\x19\xa6\x12\x86\xd2\x43\x33\x8f\x8c\x4e\x3e\xbc\x6a\xa2\xd5\xf5\x87\x08\x73\x45\xaf\xab\x1d\x08\x3d\x44\x50\x93\x4c\x5e\xd0\x79\xf4\x10\x41\xbd\xb8\x78\xd3\xda\x87\xe3\xcb\xf6\xdc\xed\x03\xc3\xa3\x85\x57\xbd\x6d\xe0\xda\xbd\x58\xc2\xf7\x99\xbb\x1e\x75\xf5\x7b\x8f\x2b\xc1\x73\x4d\x4f\x44\x6f\xd2\x23\xc8\xc5\xf5\xfe\xb2\x97\x57\x22\x8c\xe4\x7e\xc8\xb1\x6e\x6c\x63\x30\x57\x31\x6a\xbd\x31\xef\x0d\xc2\x9b\x23\xfd\xab\x32\x44\xce\xb2\xc6\xca\x52\x93\x3a\x09\xc5\x15\x13\x08\x25\x3c\xc6\xd1\xd3\xff\x6c\x20\x5c\x3c\x20\x99\xd6\x78\x7f\x36\x61\x60\x8b\x97\xd0\x2c\xaf\x47\x84\xf2\x33\xa1\x27\xf7\x45\x34\x12\xd6\xb0\xa9\x5d\x8a\x0b\xad\x20\xc4\x74\xd7\x0a\xfb\x45\x18\x12\x7e\x36\x5f\x8f\xad\xbe\xeb\x45\xd0\x5e\x20\xa6\xb8\xa8\x4e\x9b\xb0\x29\xde\x6f\xaa\xe9\x7b\x37\x42\x4f\x71\xef\xcb\x5d\x25\x33\x08\xcf\xfc\x6f\xad\x09\x5a\xb6\x88\x70\x22\xf8\x65\x4b\xae\x7d\x1e\x83\x7b\x1a\xb1\xf1\x5c\xb6\xcb\x09\x3c\x4f\xa6\xb9\x28\xbf\x32\x24\xcc\x3b\x67\xb9\xf6\x8b\xe9\x74\xc2\xb9\xf6\xcb\xfe\x5d\x2b\xf9\x09\xe7\x9f\x3f\xdb\x41\x4d\x49\x84\xbb\x16\x3f\x1b\xae\x66\xfa\x11\xda\x2b\x2e\xbd\x52\x5c\x7f\xbb\x0c\x7d\xef\x6a\xb4\xa3\xd2\x8b\x08\xc3\x62\x7d\x6b\x8e\x8d\x62\x61\xf4\x5d\xa9\xbf\xb8\xe4\x78\x29\xfc\x45\xaf\x26\x21\x51\x4b\x4f\x70\x0f\x2f\x3b\xa1\x4c\x4a\x8d\x7f\xca\x6c\x63\xc2\xaf\x59\xd7\xab\x3c\x5f\xc9\x8d\x43\x89\x82\xe6\x33\x8e\x1b\x2d\xcc\x18\x42\x77\x5c\x5f\x30\x3d\xd8\x95\x30\xf1\x8a\xfb\xf1\xee\x9a\x4a\x06\xef\xd5\x39\x1f\xef\x3e\x6c\x4a\x63\x90\x7c\x28\x7e\x7e\x6b\xbf\x09\xc1\xbe\x84\xfb\xd4\x84\xc4\x4d\x2c\x9c\x5d\x2e\x5d\xff\x52\x22\x95\xb0\x5d\x74\x41\x77\xdb\xbc\x54\x02\x4f\xc4\x9c\x1d\x25\xa3\xe7\xa1\x85\xf9\xac\xde\x49\xd6\x15\x04\xa1\x90\x8c\xdc\x64\xbb\x0a\x82\x58\x9b\x48\x31\x6b\x83\x12\xe1\xcd\xb2\x8e\x7d\xbe\x13\xc4\x19\x34\x44\xb4\x96\xbc\xbb\x1d\x4a\x63\x88\x14\xee\xb4\xbb\x59\x74\x7a\x5c\x61\xe3\x5a\x94\xc1\xe1\x29\x4f\x70\xaa\x5b\xa2\x34\xa1\x5c\x9a\x70\x6c\xc9\x1c\xc7\x03\x57\xf6\x12\x34\x2a\x8b\x96\xed\xef\x15\x23\xb8\x4a\x6a\x5c\xfc\xe3\xfc\x9b\xc1\x9d\x69\xdf\xae\x6e\x51\x3d\x49\xc8\x7f\xab\x65\x95\xf1\xda\x8d\xf0\x67\xd9\x17\x11\x51\xf7\xc4\x71\x08\x9f\xf2\x6c\x60\xc5\x1b\x6b\xc2\xa7\xdf\x91\x53\x4b\xaf\x4f\x26\x68\x2d\x19\x72\x36\x5f\x30\x8b\x70\x56\xd0\xd1\xb7\x79\x63\x3c\xa1\x72\x5b\xc0\xfb\x5c\xdb\x7c\xc2\xc6\xe7\xdf\xec\xfc\x4e\xc7\x13\xec\x0e\xf2\x7a\xaf\xbd\x6c\x40\x88\xf1\x94\x67\xcf\x3c\x20\x48\xd8\xd0\xa9\x27\x64\xd3\x36\x83\x10\xe2\xa1\x75\xe6\xf9\x4b\x71\xc2\x50\x78\xe5\xf6\x9c\x18\x05\x02\xdf\xeb\xf7\xdc\xdf\x8b\x2d\x08\xf7\x5f\xb4\x6e\x9c\x5b\x33\x81\x90\xeb\x1c\x53\x37\x6d\x07\x11\x36\x73\xab\x2d\x89\xdd\xf4\x92\x41\x66\xa0\xb7\xcc\xec\xdf\x3e\x84\xc1\xae\x67\x0e\x62\x8f\x8f\x13\x1e\x67\x59\x3f\xe9\x19\x92\x27\x48\xfb\xf9\x3a\x27\xdb\x58\x11\x76\xb4\x71\xed\x92\x8f\x92\x27\x4c\x8c\x14\x55\xda\x77\x54\x9f\x90\x7e\x77\xe7\xfd\x76\x63\x7d\x42\x77\x7a\xdb\xc6\x47\x19\x36\x04\x99\xa2\xfb\xa2\x1e\xae\x5f\x18\x9c\x8d\xf6\x5d\xbe\xf7\x9c\x20\x61\xf0\x4f\x2e\xa3\x26\x9a\x4e\x98\x7b\xa3\x69\x5a\xef\xec\xf1\xe8\x1f\x56\xc1\xc7\x81\x4d\x84\xc8\x29\xb5\x5c\x57\xd3\x23\x08\x4f\xfa\xbb\x7e\xc6\xd4\x6d\x19\x87\x25\x0a\x39\xbf\x95\x5a\x9c\x08\x9f\x22\x9f\x2d\xaa\xd8\xaa\x4b\x30\xd4\xb1\x9d\xc6\xa9\xed\x46\x48\x7e\x50\xba\x39\x59\xdc\x84\x70\x65\xf7\xcf\x87\x0a\x0a\x96\x84\x7d\xe7\x37\xf0\x2d\x95\x49\x64\x61\x4a\xdf\x9c\xaa\x32\xb5\x72\x82\x4a\x25\xc9\x3c\x70\xac\x61\xa1\xb0\x78\xed\x80\x9a\x41\x16\x41\xf4\xb9\xf4\x03\x69\x4e\x4f\x42\x99\xd1\x3c\x97\x4c\x95\x38\x42\xf4\xb9\x04\x77\x9e\x77\xb9\x84\xca\x59\x97\xe9\x4e\x53\x0e\x0b\x07\x7c\x9a\xdd\x93\xd4\x94\x08\x9d\x4b\x8a\xab\xd3\xce\xc4\xb3\xf0\x85\x79\xc6\x33\xf3\x27\x3f\x61\x89\xf8\x0a\x9e\x53\x6e\x82\x04\x1f\xf6\xc4\xa8\x8e\x99\xc7\x09\xcd\x9b\x3f\xb1\xad\x08\x26\x42\x4e\xc3\x3d\xdb\x29\x17\x14\x08\x1f\x4b\x6e\x2e\x4f\xf5\x14\x23\xf8\x2e\x14\x0a\x3d\x09\x61\x82\xbd\xc3\x2e\x6b\x8e\xd5\x02\x04\x21\xbb\x1f\x56\x93\xca\x55\x09\x6f\x66\x8a\x7e\x99\xe3\xcb\x45\x88\x9f\xd8\xe8\x74\xed\xb5\x31\x81\x67\xca\x1b\x5b\xa9\x3f\x3b\x08\x9c\xfa\xcd\x6f\xd4\x12\xea\x09\x67\xf5\x7e\xeb\x2d\x0b\xb2\x22\x18\x5c\x17\x99\x19\xa6\xe8\x3c\x0e\x07\x97\x79\x27\xb7\x48\xcb\x12\x14\x74\x4c\x6f\xcf\x0a\x49\x21\x0c\xcf\xe7\xf5\xf7\xf5\x59\x44\x10\x5c\x1f\x10\x7d\x7f\xf6\xac\xd1\xdf\xcb\x32\xe1\xea\x2a\x5e\x42\xaf\x98\xcc\xcf\x84\x35\x71\x04\xd5\xed\x56\xd6\x29\xf7\x66\x12\x3c\xf7\x1d\x17\x19\x64\x04\x08\x8f\x17\x19\xa7\x37\x5a\xa7\x10\x8e\x34\x8b\x2f\xf0\xd0\x4b\x24\xfc\x28\xb8\xff\x68\xeb\x7f\xe1\xf0\x6b\xfb\xc1\xa7\xd7\xe7\x10\xf8\x06\x2e\x7c\x7c\x6c\x68\x44\xf8\x7e\xbf\x76\xc7\x7a\x1e\x6b\x82\xf7\xf4\xf2\x55\xd7\xb8\x04\x09\x22\x11\x02\xe9\xef\xce\xec\x26\x34\xee\x55\xb6\x38\x2b\xb6\x9f\xa0\x19\xdc\x54\xdf\xfa\x69\x0f\x81\xb3\xcd\xe9\xd3\xe4\xf5\xbc\x84\x37\x2a\x91\x09\x8f\xdc\x0d\x08\x2f\xdd\x2e\xc5\x4e\xae\x3c\x4f\xb8\x6b\xcf\xf1\xe5\xc3\xae\x74\x42\xd5\x8a\x90\xa4\x7d\xc3\x92\x04\x0b\xff\xb7\xd1\xcd\x47\xd7\x10\x5c\x0e\x9b\xb0\x39\xd9\xa8\x11\x5c\xb2\x33\x1f\x7e\x09\xec\x63\xa0\x5f\x14\xfe\x2d\x5b\x2a\x8e\x85\x16\xbe\xea\x4f\x45\x4d\x9a\x84\xc6\x9d\x29\x11\xb3\x46\xbf\x71\x36\xed\xec\x8f\xd7\xf8\xba\x10\xe6\x3e\x08\x7e\x7a\x5d\xd7\x91\xb0\xb2\x6d\x44\xed\xa4\xc1\x22\x42\xcd\xb1\x9b\x09\x0e\xeb\x8d\x09\xdc\x2b\xf6\x3c\xd9\x3c\x81\x9b\x20\xf2\xe1\xb7\x9d\xda\x2b\x53\x82\x60\xc3\x52\x7b\xfd\x4e\x6d\x42\xca\x3d\x7e\xc1\x85\x3c\x57\x08\x3c\xfb\x67\xed\x97\xeb\x36\x22\xd8\x4d\x7e\x76\xbc\xe2\x81\x21\x61\xef\xd9\xf4\xfa\xab\x9c\x53\x09\x27\x7f\x3e\x5a\x31\x4f\x78\x05\xa1\xba\x79\xba\x75\x57\xe3\x4f\x06\xeb\x7e\xc9\xff\x74\x5f\x25\x49\x78\xb3\xa1\x43\x62\x41\x9b\x26\x61\xd1\xcf\xe3\xf5\xb8\xa3\x4d\x28\x16\xcc\x4c\x32\xcb\x3a\x4c\x68\xcd\x64\xaf\x2f\xdc\xbc\x83\xb0\xb6\x43\x64\x86\xee\x94\x14\xc2\xbe\x59\x8a\x7b\xb4\x45\x4f\xd0\x4f\xf7\x69\x6f\xd8\x67\xb2\x11\xca\x3b\xd7\xee\x5a\x15\xbf\x8c\x70\x79\xdd\x55\xe5\x6b\x2d\x33\x08\x72\xee\xda\xdb\xcf\x97\xde\x20\x74\x9e\x51\x59\x2a\x23\x33\x9f\xe0\x69\x2a\x92\xbb\x78\xa2\x35\xa1\x50\x00\x5d\x0a\x42\x72\x84\xa0\x84\x6f\xad\x7b\xa2\xb8\x08\xa7\xa7\xfb\xaf\x8e\xa8\xf9\xc9\x20\xdb\x30\xc0\x7a\xaf\x65\x06\x61\x47\xe6\x9d\xcc\xe9\x85\x3f\x18\x24\xa8\xdb\xb0\xb1\xa6\xad\x22\xf4\x69\xab\x9c\xdd\xbf\x84\x9b\xc0\xbf\xfd\xde\x88\xb0\x3e\x1f\xe1\x89\xd5\x3d\xa3\xf5\x16\xbc\xff\x13\xca\x8f\xca\x8e\x4c\x16\xeb\x63\x30\x14\xc1\x93\xe6\xd7\x3b\x85\x30\xb2\x21\x27\xf1\x73\x4c\x2d\x61\xfa\x2a\x2e\xad\x97\x39\xd7\x08\x02\x53\xf8\xab\x4b\x67\x64\x13\xae\xb8\x04\xbe\x0b\x79\x5e\x49\x10\x9a\x54\x6d\xed\xb7\xe0\x11\x0b\xdb\x9b\x43\xf2\x4d\x9c\x77\x11\xee\xd9\xc4\x1e\x73\xd9\xb9\x98\x70\x46\xfc\xea\x93\xb5\x62\xf3\x09\x97\xe7\x64\x15\x85\xcc\x99\x44\x50\x68\x38\x38\x8d\xd7\x7e\x33\x81\x63\xca\xcb\x59\xba\x2a\x7f\x18\x30\xc4\x52\xfc\xb2\xeb\x31\xa1\xd3\x20\x50\xec\x62\xdf\x1b\x1a\x2b\xb9\x53\xfa\x8b\x0c\x2b\xab\x08\x2b\x13\xb7\xb2\x99\xed\xf6\x22\xdc\xfe\xb3\xd9\xbd\x48\x54\x8f\xa0\xae\x29\xc5\x2d\x69\xe0\x45\x50\x17\x0e\x3e\xf9\x7a\x55\x19\x61\x4b\xa4\xcd\xa6\xbf\x68\x92\x9c\xa2\x61\x29\xd4\x45\xa8\x68\xfb\x24\x24\x5a\x58\x38\x6e\x9a\x2e\xfa\x2a\x6c\xb7\xe1\x16\x42\xe6\xc2\x43\xf3\x3c\x73\xef\x12\xb6\x1a\x3a\xe4\xfb\x72\x5f\x21\x54\x3e\x3b\x2e\x9c\xaa\x65\x49\x98\x1d\xff\xd4\xff\xe2\x53\x79\x82\x91\xe4\xde\x87\x62\x2e\x39\x84\x98\xd4\xe0\x80\x76\xd3\x59\x04\xa3\x29\x0d\xbf\xfa\x75\x2f\x13\x7e\x25\xfd\xb6\x14\x90\xb7\x23\x2c\x0b\x28\x28\xf4\x9f\xea\x4c\x78\x1d\x5b\xa6\xf8\x63\xee\x2c\x42\x5f\xf9\xdc\x7b\x7c\x6c\xd7\x08\x3c\xa9\x21\x3b\x17\x29\x9d\x23\xcc\x0c\xad\xef\x19\x69\xdb\xf4\x2f\x70\xbc\x7c\x97\xb6\xa3\xfe\x1d\x83\x4d\x31\x86\x22\x4f\xcb\x1d\x09\xf1\x51\x01\xad\x4b\xa5\x32\x08\xec\x9f\x74\x1f\x1a\xf0\x1d\x27\xf4\x6b\x0e\x0f\xfc\x7e\x6c\x49\xe0\x2c\xb0\x9c\xd8\x73\xa6\x9a\x50\xf8\xc1\x4e\xe5\x45\x4e\x1e\xa1\xa4\x6a\x9a\x7b\xbd\xa1\x04\xa1\x41\x6a\x61\x60\xc9\xe8\x59\xd5\xa4\x73\xee\xd5\x12\xe5\xef\x0c\x26\xe7\x88\x36\x55\x0f\xdb\xb3\x20\x3a\x6f\x78\xf6\xd5\x3c\x75\x1a\x43\x57\x60\xb7\x25\x6b\xc3\x4c\x42\x53\xdd\xac\xb7\xd1\x8f\xa2\x09\x5e\x97\x6e\x8b\x7f\x97\xb2\x25\x14\xf6\xfe\xf4\xb7\xde\x25\x4a\x68\x95\xca\x56\xf1\x68\xf3\x26\xb0\x96\x25\xdb\x4b\x2a\x5e\x22\x9c\x39\xfa\x6a\xed\x49\x3e\x03\x82\xeb\xc7\x94\x2f\x97\x24\x95\x09\x03\x31\x6e\xf2\x12\x53\x35\x08\xd1\x93\x3e\xd4\xb4\x56\xeb\xd0\xcf\x3a\xe3\xdc\x85\xe2\xab\x09\xf5\x1d\xed\x23\x3e\xd9\x9b\x09\x87\xe3\x6a\x23\xad\x98\xc7\x2c\x70\x9f\xe1\x17\x4a\xa9\x9e\x4b\x50\x4c\x55\x5a\xd3\xf9\xe3\x22\x0b\xb2\x35\xee\x41\x33\x0f\x29\x13\x92\x6a\xbd\x6c\xce\x2b\x1d\x25\xdc\x9f\xa0\x6e\x23\x5f\xea\x43\x78\xe2\x68\xae\xb9\xeb\x91\x09\x41\xd0\xf7\xc9\x97\xe1\x18\x1d\x02\x12\xb9\x83\xbd\x5c\xa6\x10\x1a\x78\x25\x14\xce\xca\x54\x11\x22\x9e\xbf\x8b\xae\x36\x5e\x40\x68\x8e\x65\x1b\x51\xde\xab\x4b\xd8\xfd\xf5\x74\x0b\xfb\xc7\x78\x82\x8a\x62\x7c\x82\xc3\x5c\x3e\xc2\xf7\x8a\x77\x2c\xb3\x5b\x4b\xc7\x61\x85\x9e\x4d\xc4\x9f\xd5\xed\x0c\xa4\xf6\xd4\x3f\x1b\xae\x3f\x48\x68\x9b\x1d\x38\xe1\x73\x78\x26\x21\xef\xd5\xe3\xe5\xbd\xa3\xe8\xd1\x7a\xb8\x5b\xba\x74\x2f\xe1\x4b\xac\x5a\x07\xb3\x5d\x8d\x60\xb5\xe9\xd6\x4a\x8f\x89\xc1\x04\xee\x78\x99\x6c\x1f\xf7\x61\x66\x0c\x8e\xc6\x86\xe2\xed\x7f\x46\x18\x98\xdf\x3c\x26\x3c\x91\x9b\x8b\xb0\xb1\xdd\xc4\x65\xe5\xfc\x6c\x82\xca\xf6\x5d\xd1\x7f\xb1\xdb\x72\xed\xf2\x65\xc3\x0d\xac\xb1\xd2\xb5\x5f\xba\x75\xce\xbd\x5b\x84\xeb\xaf\x27\x79\xcc\x6d\x2e\x20\x58\x38\x37\x04\xfe\x2d\xff\x3f\xa6\x54\x17\xa6\x5a\xb2\x46\x1f\x24\x3d\xab\xef\xa4\x3f\x3f\x4e\x30\xef\xd5\xa8\x35\xfb\x59\xce\x20\xd8\x23\xe6\xf3\xf3\x92\x30\x82\x24\xa7\xf3\x69\x37\x01\x17\xc2\x01\x95\xcd\x5b\x0e\xaa\x3e\x27\xd8\xa9\x6c\x5c\xd5\xff\xa3\x8b\x60\x7e\xe6\xa0\xb6\x49\x43\x2a\x81\x63\xf8\xd9\x6a\x87\x6f\x95\x84\xe4\xad\xb6\x2b\x8a\x35\xf7\x13\x9a\x79\xec\xfd\x16\x15\xcf\x20\x84\xb7\x88\xf4\x57\x5a\x8b\x12\xd2\xb2\xa3\x18\x29\x63\x71\x82\xe5\x0d\xdd\xfa\x5d\xc9\x42\x84\x93\x3c\x8d\x9c\x87\x3e\x2d\x21\x38\x86\x9c\x7f\x99\xda\x5a\x4e\x58\x3c\xf2\x8e\xc3\xcb\xec\x1e\x41\x40\xb7\x89\xbf\xd9\x37\x9f\x10\x94\x6b\x14\xaf\x73\xa9\x92\xd0\xc7\xb6\xdf\xcb\x2e\x6b\x39\x41\x02\xe9\x06\x2b\x0c\x96\x8e\x43\x6c\x71\xdf\xc8\x85\xc3\x23\x0c\xf2\xf6\x4e\xff\x1a\xb7\x57\x9c\xf0\x3b\xee\xea\xd6\x43\x9e\xdd\x0c\x74\xec\x6f\x0d\xed\xf4\x11\xa7\x31\xec\x49\x4a\x2f\xdc\x7d\xf3\x3e\x83\xf8\x65\x21\x47\xee\x9d\x7b\x44\xa8\x8a\x0a\xf1\x0c\xf9\xe1\x4b\x58\x59\xa5\x62\x51\x7f\xea\x02\x21\x2a\xbb\x7e\x38\xeb\x47\x33\x0b\x8f\xdc\x5c\x6f\xf5\xb4\x34\x13\x2c\x8f\x06\xc8\xce\x37\xbf\x44\xb0\x5d\xb1\x26\x29\x75\x64\x2f\x0b\x6d\xd7\xfe\x24\x18\x7a\x95\x13\xd8\xf5\xda\x1d\xb4\x9c\xcb\x09\xb3\x53\x6f\x65\xd9\x6c\x2d\x27\x94\xfc\x6e\x3f\x66\xaf\x57\xc9\x42\x97\xd6\xe1\x65\x0e\xa3\x48\xef\x6b\x3a\xb0\x54\x37\x92\x30\xfb\xea\x3a\xe1\xbf\xc5\xee\x56\xad\xcc\x47\xae\x48\x42\xd8\x24\x23\xa1\x2e\xbb\x6a\xc2\x64\xce\x95\x17\x22\xcf\x95\x12\x78\x1b\xc5\x33\x97\xce\xae\x26\x64\x08\xfd\xce\xbb\xb1\xa8\x8a\x85\x1c\xb1\x54\xf5\x8d\xba\xd5\x04\xeb\x43\x73\x3f\x74\x54\x68\x11\x4a\x5b\xf6\xea\x1f\xff\x58\x4c\xe8\x33\x59\xc9\xff\x17\x5f\xe6\xb7\x5c\x70\x92\xd7\x63\x8d\x95\x4c\x1b\xcb\xbe\xeb\xdb\xf2\x08\xc1\x9f\x45\x7e\xba\x7a\xfd\x13\xfb\xad\x42\x3d\xdd\x46\x91\x55\xed\xc0\xfc\xc5\x60\xd1\x91\x11\xdb\x5f\xc5\x84\x44\x55\x13\x91\xad\x0f\x73\x09\x4c\x68\x6d\xf4\x96\x51\xb0\xcb\xa5\x4e\xb2\x7d\x9c\x4b\x78\xb6\x24\xd7\xf7\x6f\x49\xe9\x88\xfe\x64\x33\x5a\x38\x6d\x7a\xba\x67\xbe\x6b\x26\xbc\xff\xb0\x2e\xca\x84\xf3\x2e\x0b\xf1\x9d\xfb\xe7\x1b\x3c\xa8\x22\x3c\x78\x53\xf8\x49\x2a\xa8\x92\x20\xfe\xc8\x4f\x65\x86\x4a\x32\x81\xc3\xfa\x9c\x80\xf5\x81\x0a\xc2\xec\xc4\x1d\x9a\xcf\xfc\xfe\x37\x66\x3e\xf1\xb6\x7a\xbd\xed\x22\x81\xbf\xee\x64\xc2\x29\xce\x8b\x84\x8f\xc2\x76\xed\xe7\x9e\xa7\x10\xd6\x70\x65\xa8\x5d\x58\x7d\x91\x30\xfc\xb0\x52\xe5\x8d\xdb\x05\xc2\x0e\x09\xdd\x48\x65\x9e\x5c\x42\xad\x9f\x9f\x84\x57\x75\x0e\x61\xb2\x86\xf6\xe7\x30\xe9\x2b\x04\xee\x17\x32\x3b\xff\x4e\xe7\x7d\x7a\x1c\xda\x92\xaa\x08\x5f\xd7\xbf\x7c\x55\x62\x76\x99\xa0\x99\x57\x69\xf9\x50\xa6\x9a\x20\xc5\x35\xb5\x2e\x54\xed\x0a\xa1\x7d\x9a\x66\xd2\xb7\x9a\x2a\x42\xb0\xc0\x55\xf7\x92\x55\xd7\x58\xd8\x36\x6d\xc1\xad\x02\xae\x52\xc2\xa7\x4f\x0b\x56\xe5\xb8\x34\x32\xb8\x97\xd6\xb4\x76\x28\xc5\x94\x20\x64\x7a\xdd\x3c\x50\xc3\x91\xf0\x67\x9d\x7a\x5e\x5c\x62\x17\x83\x2b\x2b\xbf\x68\x74\x0b\x09\xd1\x18\x3e\xec\x17\xa9\x19\x64\xbf\xcf\xe0\x56\x9d\xe1\x34\xf9\x25\x79\x2c\xbc\xdf\x3a\x65\x40\x0b\x3e\x34\x86\x17\x87\xbc\xd3\x94\xd9\xde\x30\x98\xa8\x50\xd6\xf0\x39\xf1\x34\xe1\x87\xe1\xdd\x49\x37\xe7\x13\xa1\x92\xb2\xc3\x22\xf7\x0b\x11\x4c\x3a\xba\x9c\x2b\x5e\x58\x10\xb8\x16\x4a\x66\xba\xb5\x0b\x10\xf6\x23\xc8\x64\x37\xa7\x00\xa1\xe3\x40\x50\xcf\xc5\xf4\x2c\x42\x91\x55\x69\x82\x76\xee\x27\x06\x78\x1b\x2a\x94\xa4\x71\xbe\x6c\x0c\xa7\x06\xbe\xcb\x4f\x14\x7f\xc1\x20\xcd\x42\xdb\xe3\xcf\xe5\xb3\x84\xfe\xa6\x2d\x16\xc3\x71\x55\x04\xa3\xb0\x18\xce\xb9\xf3\x27\x12\xc4\x5d\xbb\x33\x86\xba\xc0\xe0\xde\xf5\x1d\x23\x67\x0e\xa9\x12\xfa\x26\x48\xca\x7b\x3f\x53\x25\x08\x71\xf6\x06\x0b\x35\x89\x12\xdc\x8d\x66\x05\x85\xe7\x5a\x12\x2c\x5b\x53\x3b\x43\x26\xaa\x10\xcc\x9c\x12\x6b\x36\x8c\x3e\x9f\x1f\x68\xb0\x7b\x25\x09\xaf\x25\xbc\xeb\xf7\xde\xad\x12\x7c\x92\xf0\xc8\x8d\x53\x3d\xec\xc9\x79\x42\xc3\x8b\xa0\x1f\x4d\x35\x5f\x18\x78\x70\xb0\xcd\xe1\xed\x19\x1e\x07\x47\x89\x4d\xfc\xee\x69\x8a\x04\x61\x9d\x02\x0e\x2b\xb6\xf9\x84\x00\xed\x65\x5f\x22\xde\xcf\x27\x3c\x2e\x5e\x30\xef\x5a\xc5\x4a\x82\xd8\xa9\xbe\x95\xdf\xc5\x84\xc6\xe1\xfa\x85\x34\x11\xfb\x58\x4b\x82\x9b\xad\xbb\x4a\x57\xce\x6b\x06\xb7\x29\x65\xa2\x74\xf7\x73\x42\xec\x71\xf9\xf3\xfc\xad\xcf\x08\x4b\xbc\x35\xd7\xd8\x45\xd4\x10\x1c\xd6\x1c\x7b\x76\xde\xd7\x84\x70\x50\x10\xf6\xe5\x32\x35\x2c\xcc\xd7\xba\xc9\xc4\x76\x17\x10\xee\xd4\x5f\x88\xf0\xb8\x1c\x4e\xd8\x7d\x5f\xae\x27\xf0\xdd\x42\x42\xe9\x82\x2a\x7e\xfe\x03\x17\x58\xa8\xed\x1f\x70\x3e\xee\x76\x91\xa0\xf7\x4a\xd2\xa9\x25\xc8\x95\xa0\xd4\x9c\x17\xe2\xfa\xd3\x89\xa0\x51\xae\x2a\xa6\x79\x53\x83\xe0\xc2\xd7\xa8\x98\xbf\x47\x85\x20\xcd\x18\xdd\xde\xb9\x84\x83\x50\xda\x16\xed\x3a\xd7\xdc\x89\xb0\x2d\xa4\xc4\xb5\xea\x46\x05\xa1\xc7\x70\xf7\xdc\x03\x6b\xca\x09\x1d\x3e\x66\x43\x19\x1c\xe5\x2c\xd8\x3c\x4a\x54\xb5\x7e\x54\x43\x68\x50\x75\x3c\xa0\xec\x99\x4f\xf0\xaa\x93\x73\xff\x15\x97\x42\x60\x3b\xca\x7f\x39\xa4\x34\x97\xb0\x9c\x6d\xeb\xe6\x7d\x2d\xb7\x08\x57\x94\xed\x83\x75\xab\x77\x11\xb6\x7d\x9c\x75\xce\x41\x24\x98\xb0\xf8\xd9\xed\xd3\xc5\x93\x73\x58\xe8\x3b\xb5\x83\x3d\x45\x66\x0d\xc1\x7f\x52\xce\xfd\x1b\x25\x3c\x04\x39\xd7\xfa\xe8\x81\xee\x3a\xc2\xd3\xeb\x9d\x71\x29\x1b\x5d\x09\x8a\xde\x31\xef\x58\x66\x73\x09\x3d\x17\x95\xd1\x7a\x70\x1f\xc1\xbc\x7d\xa1\x71\x85\x29\x2f\x41\xcf\xa9\xac\xea\xdb\x72\x5f\x42\xa8\xe2\xd2\xe9\x3a\x5c\xae\x84\x53\x6d\x22\xc1\xb3\xa7\x2c\x25\xb0\xd8\x46\xb4\xac\xcf\xa8\x13\x5e\x44\x78\xcb\xc6\x73\xd6\xb0\xe0\x37\xbc\xac\xc8\xc9\x38\x8c\x10\x5b\x31\x3f\x8a\x97\xa5\x48\x10\xcf\xcf\x74\xe8\x53\x2d\x27\x5c\x3f\xd8\xf5\xe6\xb6\x4b\x19\x81\x57\xbe\x34\x5a\x44\xa7\x9c\x10\xd0\xfd\x58\x29\xc9\xac\x9c\xd0\xdd\xbe\xa2\xa5\xf8\x55\xec\xe8\xdd\xdd\xdc\xac\x67\x75\x0c\x81\xfd\x59\xaf\x97\x44\x02\x27\x21\x6e\xb1\x67\x19\x57\xe0\x55\x06\x37\x74\x1e\x0a\x36\xf5\x2d\xa3\x31\x24\xf4\xc9\x99\xe9\x85\x7e\x67\x60\xa4\x2b\x5a\x55\x22\xe8\x44\x90\x6a\x5c\xc7\x7f\x3e\x7b\x2d\x61\x66\xd6\x87\xa2\xe9\x0b\xe3\xc6\xe1\xde\x09\xa7\xeb\x07\x2f\x85\x11\xb2\xf7\x6c\x29\xef\xf0\xf5\x24\xec\xd5\xe2\x08\x2b\xdd\x58\x42\x58\x1a\xaf\xbd\xcd\xbb\xe7\x15\x83\xe2\xc9\xf5\x33\xc2\x8a\xf2\x08\x3a\xfa\x5e\xcf\xe4\x3c\xcb\x09\x3b\xce\xad\x48\x2b\x9f\x3f\x8b\x20\x14\x13\xfc\xaa\x7a\x4b\x1a\xa1\x5a\x6f\x07\xc7\x20\xf7\x45\xd6\x58\xb9\xfc\x65\xc6\xc1\x38\xff\x5f\x0c\xb8\xe5\xf9\xdf\xe5\x4b\x4f\x20\x5c\x4c\x12\x93\x79\xbb\x3a\x82\x85\x60\xdd\x6d\x35\xcd\xaa\x16\x34\x86\x39\xdb\x8c\x37\x6a\xad\x08\x25\xb0\x8c\x16\xdd\x39\x9f\x65\x38\x0e\x32\xd6\xc3\xb2\xdb\x27\x54\x11\x8a\x9c\x16\xfb\xd5\x70\x57\x11\x86\xdc\x12\xbf\x7d\x3b\x96\x45\x70\xbc\x59\xd8\x7b\x67\xb4\xac\xb8\xbf\xbc\xf1\x72\x9c\x0f\xe1\xc0\x31\x4f\x45\x7e\xa7\xcd\xff\x2a\x5b\x3d\x32\x7e\x3e\x2a\x5b\x4f\x50\xda\x39\x64\xff\x70\xd1\x4e\x42\xdc\x19\x75\xd5\x77\xb5\x46\x2c\x4c\xe2\x6e\x51\x97\xdb\xe3\xc3\x40\x66\x1d\xff\x27\x3e\xd5\x34\x42\xb9\xd0\x9f\xe6\xbf\x38\x72\x59\x6e\x12\xff\x28\x36\x44\x05\x7d\x55\xa8\x71\xf9\xbf\x61\xd3\xf4\x6c\x5b\x89\x07\xeb\x09\xab\xa2\xa5\x3d\xf9\x0a\xd4\x09\x8b\xef\x9c\x0e\xd9\xea\xe6\x49\xa8\x78\x2d\x6e\x6a\xdc\xce\x4e\xb8\xfb\x87\xad\x55\xac\x4a\x8d\x30\x7f\x21\x9b\x77\xc3\x64\x1f\xc2\x3e\xbd\x14\xde\x97\x9d\xd6\x84\x70\xc3\x86\x63\xce\x53\x9e\x97\xe1\xd2\x59\xfe\x6f\x8f\xe4\x59\x04\xfb\x48\x75\xa3\x5a\xef\x33\x2c\xc4\xbf\x3f\xd3\xa7\x7e\xa6\x96\xf0\x6d\x6d\x4f\x7e\xd8\xd2\x6c\x42\xd6\x0d\x4b\xa5\x17\xb9\xd2\x84\xca\x63\x2e\x7c\xb2\xd7\x88\x85\xa1\x47\x1f\x45\x58\xce\x0e\x04\xeb\xf6\x95\x43\x6b\xbf\x6d\x23\x5c\x52\x66\x05\x47\xe6\x17\x12\x1a\xca\x4f\x9b\xe7\xe5\x82\xc1\xc5\xed\xb3\x8d\x38\x25\x55\x69\x0c\x6d\x35\x02\x1c\xf9\xb9\x1a\x04\xb9\xc6\x59\xb5\x79\xe5\x25\x04\xfd\x5d\x65\xe2\x23\xd1\x79\x84\x9d\xdb\x4c\x6a\x2c\xfc\x4f\xb1\x30\x77\x99\x83\x82\xc3\xb4\x6c\x42\xc8\x35\x3b\xfe\xe9\xb2\x16\x04\x13\xcd\x9f\xc7\x79\x9c\xf9\x08\x66\xda\x72\x43\x3f\x52\x84\x08\xa9\xab\xd2\xdd\xb5\x0f\xad\x27\xd8\x9d\x52\xa9\x0c\x58\x12\x45\x28\xf9\x5e\xff\x7a\xda\x2e\x13\x42\xe6\x2c\xff\x2f\x6f\x5a\xf3\x09\xf3\x42\xf9\xa6\x35\x5e\xd4\x23\x88\x8b\x56\xde\xf2\xaf\x34\x25\xb4\x57\x84\x7b\x6d\x86\x16\x41\x67\x85\x4f\xf0\x8f\x8f\x9a\x84\x97\x49\x03\x3b\xcd\x8a\x8a\x58\xf0\x3e\x66\xb0\x27\xe6\x6e\x35\xc1\x71\xc6\x2b\x59\xef\xa2\x15\x84\xae\xa2\xec\xc7\xfa\x0d\xd6\x84\x93\x1f\xda\xbd\x8a\x03\x56\x12\xaa\x2b\x1e\x48\xdf\x31\x36\x23\x38\xad\x8d\x09\x2f\x0f\xd8\x49\x08\x97\xb8\xb0\x6b\xe7\x83\x77\x0c\x3a\x96\xfa\x8d\x6c\xe1\x55\xa6\x31\xb0\xed\x79\xfb\x35\xea\xe4\x9d\x32\x2c\x36\xca\x28\x4d\xa8\xbf\x46\x50\x4d\x1f\xc8\x2d\x31\xfc\xc9\x60\xe5\x81\x2f\x37\x32\x66\xf1\xd3\x3f\xb0\x40\x86\x6f\xc3\x14\xcf\x05\xff\x82\x4b\x5d\xea\x80\x61\xc0\xbd\x32\xb4\x86\x9d\x17\x4f\x7c\xa8\x4b\xa8\x58\xd5\x12\x96\x94\x2a\x41\x88\x9b\xa6\x7a\x77\xa6\x01\x2f\xe1\xd0\x84\xc6\x91\x0c\x1d\x55\x82\xa2\x7a\xe6\x9a\xf9\x7c\x73\x08\xd3\x92\xa2\x34\x77\xf6\xb2\x8f\x83\x66\xd3\x42\x2b\x41\x9b\x4e\x06\xc5\xc5\xa1\xe9\x0e\x27\xb2\x09\x31\x41\xbc\xdb\x8d\x22\xb2\x09\x6f\x3c\x3a\xbc\x8a\x56\x16\x13\x34\x58\x3c\xb6\xfc\xf5\x5b\x08\xf7\x5d\x9e\xd9\xf0\xf5\x7b\x10\xb4\x24\x37\xdd\x5d\x22\xeb\x42\x48\x4c\x1f\x50\x6c\x2d\xd3\x25\x84\x5f\x9b\xd2\xbf\xc5\xe6\x0a\x61\x46\x41\x70\x79\x5d\xfb\x62\x82\x98\xf5\x44\xcf\xa1\x0e\x2b\xc2\xcd\x94\x07\xab\xd6\x3b\xb9\x8e\x83\x54\xca\x99\x74\x1b\xc1\x5e\x06\x2f\x15\x78\xaa\xf3\xfa\x67\x13\xa2\x8b\xcb\xfe\x3c\xf0\x96\x26\x94\x7c\x15\x08\x09\xea\x9a\x40\x08\x5b\xee\xdc\x3d\x7d\xf4\x2d\x39\x56\x52\xd5\x2b\x99\xd3\x93\xf0\xfc\x6e\x4e\xbc\xf0\xef\x5c\x16\x86\x3f\x9e\xcc\xf8\xb1\x72\x84\x41\x6a\xfd\x61\x61\xc3\xf7\xc9\x04\xa7\xcd\x8f\xbe\x05\x8a\xf7\x30\xd8\x73\x29\x60\x68\x8f\x8e\x18\x8d\x21\xec\x52\xa5\x6f\x60\x57\x15\xe1\xaa\x24\x8f\x73\x7e\xf6\x2d\x16\x94\x0e\x89\xe9\xe5\x29\x56\x11\x1c\xa4\xd8\x4c\xa2\x8e\x5e\x21\xf8\x67\x7a\xec\xed\xe9\xdc\x40\x88\xfa\xe0\x9b\x7f\x7a\x6f\x1c\x0b\x6c\x82\xfa\xe7\x65\xbe\xbb\x13\x56\xad\xac\x78\xf4\xcb\xc3\x8e\xa0\x76\xab\x70\xf0\x6d\xe3\x55\x42\x83\xc5\x03\x7f\x7f\x93\xe3\x84\x3c\x2e\x39\x5d\xae\xfc\x24\x16\x9e\xbe\x2d\xcb\xfc\xee\x23\x41\xc8\xdf\xfa\x22\x64\x8b\xb0\x05\x41\x60\x99\xbe\x58\x44\xd0\x77\x06\x76\x21\x99\x52\xbd\x3f\xbb\xc6\xe1\xce\xc1\xbe\xfa\xe9\xca\xbc\x84\x79\x7a\x1b\x82\xd1\xe0\x4f\x28\x33\x4d\xb4\xed\x68\x75\x26\x14\xbf\x0a\x59\xd3\xa3\xee\x4a\xc8\x5d\x3f\xeb\xca\x83\xe0\x21\x06\xab\x6f\x5d\x08\xe8\x15\x4f\xa3\x31\x88\x18\xd7\x5f\xfb\x8b\x80\xe8\x29\x55\x97\x14\x6c\x08\xe1\xee\xcf\x9d\x4f\x0f\x2f\x1d\x57\xfa\x8a\xef\x95\x7b\xce\xb5\x1c\x57\x1e\xaf\x7b\x2f\x52\x39\x49\x96\x30\xb2\x40\x75\xd1\xd1\x96\x54\xc2\xab\x65\xf9\xcf\x75\xbf\x5c\x64\x81\xf7\xfe\x37\x0e\xf1\xa1\x8b\x2c\x48\xb8\x34\xec\xd1\x56\x9e\x4a\x38\xde\xdb\x5b\x38\xf3\xf1\x17\x06\xdb\xe8\x8d\xab\x4f\xac\x1e\xc1\xeb\x93\xa5\xe9\x3b\xa9\x7e\x06\x59\x6b\x1d\xe5\x94\xf8\x2d\x09\xf1\xeb\xa2\xd5\x4f\x4d\x2d\x22\xec\xdb\xe7\x39\x47\x3b\xcd\x9f\x20\x77\xe0\x7b\xc6\x88\x0e\x3f\xa1\x30\xd6\xdb\x61\xc1\xb6\xaf\x0c\x0a\x0e\xc9\xbd\x5a\xf5\x65\x02\xa1\x43\xa4\xf8\xe5\xe6\x08\x3e\x82\x74\xa3\x45\x6e\x72\x58\x15\xf3\x1f\xfc\x94\x79\xc7\x7f\xa1\x6f\x02\x61\x36\x47\x61\xb5\xc4\xcd\x35\x84\x85\xbb\xbc\xad\x82\xdc\x4e\xb1\xc0\xdd\x3a\x71\x5b\x59\xc6\x15\x82\x9e\x4b\xca\x29\xcb\x3f\xa1\xa3\x27\x9c\xb4\xb8\x4b\x6c\x28\x81\xf7\x6b\xaa\xfd\xd2\x61\x6b\x82\xb9\x2d\x29\xdc\x3e\x65\x44\xd8\xc3\xdf\x18\x18\x36\x3b\x6d\x1c\xa6\x6a\x08\xff\xfe\xfa\x7d\x03\x41\xad\x2b\xcf\x55\xe6\x30\x27\x21\xa2\xab\xaa\x25\xbf\x48\xf0\x7f\xe2\xd8\xd1\xf3\x21\xa6\xfb\xde\x31\x60\xe7\x38\xe4\x52\x57\xc8\x45\x78\x7d\x3b\xbe\xcf\xc5\xea\x14\x61\x51\xb2\x83\x7b\x76\xcc\x54\xc2\x5d\xc7\xc9\x4d\xef\x3f\xf1\x12\x5e\x4c\x9f\x18\x9e\xbe\xe3\x27\x03\x77\xee\xf2\xaa\xda\x83\xde\x04\xae\x88\xcd\x9b\xca\x95\x6c\x08\x96\x7f\x14\x14\x25\xaf\xae\x24\x48\xdc\xeb\xf8\x55\x2c\x62\x49\xa8\x7a\xc8\x77\xf3\x8e\xcd\x56\x82\xe0\x33\xfe\x60\x53\xaf\x85\x84\x70\xbe\xaa\x3f\xf3\xc9\x85\x70\x78\xb3\x0f\xe7\x61\xab\x79\x84\x55\xcf\x12\x6b\xe5\xf6\x69\x13\x1a\x5b\xdf\x1e\x78\x7c\x6a\x15\xc1\xc6\x80\xef\x80\x5d\xcf\x4f\xd6\x58\x19\xca\xfc\x76\xbf\xc3\x7c\x98\xc1\xa4\x1d\xf3\x1b\x6f\x4f\xea\x63\x70\x3e\xe5\x65\x4f\xe2\xce\xe1\x71\xd0\xee\xea\x39\xfa\x47\x50\x80\xa0\xb4\xb8\x25\x98\xeb\xac\x30\xc1\x43\x31\x37\x5b\x4a\x7c\x16\x81\x57\xd8\xf1\x49\x87\x18\x0f\x41\x82\x5b\x46\xbb\x75\xfa\x54\xc2\xa1\x43\x7f\xf2\xb7\xa8\xce\x20\xf8\x49\x7c\x60\x84\x1e\x18\x12\x26\x0b\xfe\x12\x9f\x1a\x63\x4c\xb8\x1c\xb8\xa9\xb6\x78\x7f\x3c\xe1\xf5\x5e\x9e\x77\x69\xd1\x72\x84\x7e\x56\xaf\x90\xff\xf1\xef\x0c\x14\xc4\x5a\x96\x99\xe6\x16\x10\xac\xf9\xa7\xb0\x0d\x14\x54\x13\x8a\xb8\x85\x06\xea\x0c\x6f\x11\xf6\xa4\xf7\x07\x66\xc9\xa7\x13\x76\xdc\x11\x5a\xa1\x1d\xba\x87\x60\x20\xdd\xba\xd0\xf7\x5b\x05\x0b\xb3\xef\x86\xa4\xe5\x6c\xad\x64\x41\xdb\xe5\xae\xb5\xb1\x53\x25\x0b\xad\x57\xdc\x8f\xce\xf3\xdb\x43\x70\xfe\xba\xa2\x6a\xf1\xe8\xb7\xea\x43\xd2\xa6\x45\xe1\xbc\x0f\x08\xfc\xda\x87\x62\x2c\xe2\x0a\x09\x4f\x83\xb3\xb5\x22\x4c\x82\x09\x72\x1f\xb6\x9c\x77\xfe\xd4\xce\xa0\xc5\x7d\xc1\x0f\xee\xac\x5e\x06\x6f\x2c\x43\x38\xaa\xd5\xd7\x10\xdc\x7e\xfa\x68\x9a\xfc\x5a\x43\xf0\x98\x50\x51\x9c\x79\xd4\x98\x30\x9f\x2b\xb6\x37\x82\x67\x3a\x21\x3b\xe2\x47\xd3\xf3\x3d\x3c\x84\x87\xbb\xc5\x6f\x27\xd5\xb5\x32\xb8\xb3\xa9\x57\xf8\xf1\x5e\x1b\xc2\xf0\x82\x73\x46\xce\xbb\x1d\x69\xac\x7c\x9d\x7c\xf9\xf4\x6c\x6b\x8e\x71\xa8\x1c\xa9\x3d\xb7\x35\x52\x95\x70\xee\x7e\xfe\xdc\xc0\x4b\x8b\x08\xb6\x9e\xab\x9e\x3b\x34\xc8\x10\xf2\x4a\x8d\xce\x2f\x57\x30\x25\x84\x27\xdf\xc8\x4e\x16\xe0\x22\x94\x14\x4d\xd8\xa8\x56\xca\xf7\x2f\x5c\x37\xf9\xd0\x6b\xdc\x76\x98\x60\xb0\x89\x56\x2c\xff\x2f\xd4\x6d\xbd\x54\xf1\x92\xe3\x08\xe1\xf1\x6d\x91\x6d\x32\xed\xaa\x04\x09\xdb\x57\x37\x6f\x3c\xeb\x65\xa0\xb0\x36\x27\x77\x0f\x97\x01\x41\xfb\x40\xe6\x0a\xc9\xe6\x2d\x04\x7e\xd6\x6b\xbf\xad\xda\x1f\x18\x08\xea\x6f\x7c\x3d\xcb\xdc\x83\xfe\x81\x19\x3c\x3f\x15\xed\xeb\xb7\x12\x04\x62\x27\xc8\xfe\xa8\x15\x22\x64\x16\x48\x8b\xf5\xd6\x3c\x61\x70\xe9\xe9\x43\xc3\xa3\xed\x72\x34\x06\xb9\x8e\xb9\x45\x1e\x61\x69\x65\x63\xd0\xbd\x92\xff\x7c\x9d\xe0\x4c\x82\x99\x5c\x72\x83\xc8\xd4\x18\x42\xeb\x25\x4b\x8b\xcc\x80\x00\x82\x96\xea\x69\xd9\xdc\x55\xf3\x09\x22\x4e\xcd\xbd\x7a\x8d\x37\x59\xb8\x3f\x3b\xe4\xf3\xf4\xc5\x4b\x08\x51\xc3\xd7\xbf\x7d\xfd\x24\x49\x68\x09\x77\x55\xaf\x36\x9e\x4f\xf8\xdd\xcd\x92\x5b\x52\x33\x95\xd0\x11\x7c\x56\x81\xe3\xc7\x06\xc2\xd7\x90\x74\xce\x4e\xfd\x1c\x42\xad\x85\x75\xb8\x81\x4c\x36\xe1\x7c\xb9\x6c\x91\xb7\x45\xf2\x38\xc8\x76\x2c\xe6\x89\xda\x79\x9d\x70\xfc\xc8\x50\xca\x8e\xd1\xf2\xa3\xcd\x4b\x21\x31\x6f\x27\xa1\x58\x9f\x8d\xcf\xd5\xad\x9b\x19\x03\x9b\x69\x84\x5f\xd8\x31\x67\xc2\xba\xd5\x02\x3c\xb7\x1d\xc5\x08\xb6\x61\x61\x6c\x22\x62\x16\x04\xf7\x09\xc2\x7d\x5a\xb7\xf9\x08\x1f\x36\xcc\xf6\xe1\x3e\xa0\x4f\xc8\x2f\x98\x76\x61\xca\x23\x30\x28\x69\xbf\x73\xb3\x7d\xdf\x62\x1a\x43\xd0\x6f\x35\xbb\x2f\x5c\x8b\x09\x22\xc1\xcd\x56\x5e\xc5\xbb\x09\x61\x7f\x32\x7d\xb5\xeb\xb4\x08\x8b\xcf\xf5\x3c\x78\x1f\xad\x4b\x98\x26\x3d\x7b\xdb\x9e\xa2\xf7\x0c\x54\x93\x83\x3a\x57\x57\x73\xd3\x3f\x50\xa8\x33\xc9\x7c\x82\xff\x6a\xc2\xfe\x9f\x0e\x05\xf3\x57\x5b\x10\xda\xe5\x9b\xe7\x7b\x9f\xe5\x27\x4c\x17\xb8\x37\x63\xb3\xef\x6a\xc2\xb3\xa5\xf1\xcf\x4d\xe2\x24\x09\xfa\x53\xee\xac\x31\x7a\xa2\x4c\xf0\xb3\xfd\x50\xa1\xed\xab\x4a\xe8\xb5\x5e\x28\xe2\x74\x68\x90\x01\xd9\xb8\x57\x3c\x9d\x2e\x4c\xe0\x38\xb1\x54\x99\x73\xa5\x00\xe1\xdd\xc5\x8e\xca\xb9\x59\xa2\x84\xa3\xef\xb2\x77\xdc\x75\xe6\x25\x04\xb8\xc4\x0d\x85\xdf\x54\x1f\x07\xab\x8f\x5a\x5f\xd9\x7f\x4c\x19\x87\x3b\xfe\x26\x36\xab\xf6\x4c\x25\x58\x2f\x5a\xe7\x1a\x94\xac\x49\xd8\xa5\xbd\xc5\xab\x52\xde\x8e\xa0\x19\x7c\xef\xf2\xd3\x17\xb6\x84\xf3\x4d\xb9\x16\x37\x6f\x58\x12\xdc\x0b\x76\x4b\xaf\x7e\xb0\x8c\xf0\xa3\x7b\x78\x2d\x39\xce\xa4\x9f\xe5\xe2\xdf\x27\x69\xa5\x95\xc1\x2a\x9f\xa7\x82\x37\xf8\x06\xa1\x68\xfb\x01\xb7\x4f\xb9\xfe\x84\x43\xbf\x86\x17\xad\xbd\x7b\x60\x5c\xd9\x52\xf0\xd4\x6a\x61\xa4\x2b\x61\x7a\xf6\x12\xfd\x13\xf1\xab\x09\x03\x0f\x24\x70\x7e\xda\x20\x03\xa5\xaf\x3f\x5e\x0e\x69\x8c\xbe\x16\xb6\x47\xbe\xf7\x3e\xcd\x4f\x58\xbd\x2d\x77\x09\xa3\x61\x49\xd8\x19\xaa\x7e\x7a\x77\xe0\x6a\x82\xef\x16\x61\xe1\x67\xf6\xe2\x04\xf3\xaf\xaf\xc9\xa6\x24\x92\x85\x97\xab\xf6\x9b\xec\x5e\x9f\x41\x78\xdf\x26\xac\x39\xcb\xd7\x88\xc0\xad\x2b\x70\x6b\xd7\xc6\x2a\x66\x0c\xf1\x87\xdf\x5a\x28\x5b\xcf\x20\x34\x2d\x14\x8e\x51\x36\x3c\xce\x02\x39\xbc\xf2\xe7\x14\xd6\x21\xdc\x5f\xf6\xe6\xe1\x62\x49\x6f\x82\xc9\xe4\xf3\x66\x1d\x1f\x16\x11\x94\x6a\x37\xf5\xa5\x3f\x4c\x20\x5c\x82\x51\xf0\xde\x63\x87\x08\x3d\x79\x2b\x2d\xba\xc5\x0d\x09\x8b\x03\x78\x94\x34\x37\x09\x11\xf8\x4d\x9d\xe6\x07\x4a\x54\x95\xc1\x70\x47\xc6\x81\x86\x2b\x8b\x08\xb1\xdb\x9d\xc2\x76\x79\x8d\x30\x98\xb9\x48\x2b\xb0\xcf\x4f\x92\xc6\x90\x3f\x75\xc6\xb6\x2f\x75\x6a\x84\xf2\xb7\x0b\x5d\xdc\x34\xa7\x10\x24\x78\xfd\xdc\xd6\x6d\xd5\x24\x94\x98\x7e\x77\x59\x1b\xf3\x83\xc1\xc1\xf6\x18\xcb\xc5\x05\x32\x84\x8d\x0d\x52\x3b\xec\x0a\xb2\x09\x6a\xdf\x03\xd6\xfc\x71\xc8\x21\x3c\xbb\xf5\xc3\xef\x7b\xb0\x3a\x0b\x67\x07\x6e\x89\xeb\xe6\x4c\x26\x98\xdd\x4e\xce\xd8\x22\x92\xc9\x42\x7f\x55\x59\x49\x57\xc7\x6d\xc2\xc2\xc2\xe7\x56\x37\xce\x45\xb0\x70\x5f\x3c\x5f\x5c\x77\xdd\x6d\xc2\xba\xb4\xad\x2e\x7f\xa7\x7d\xf5\xa5\x09\xf2\x27\xcf\x11\x76\xde\x30\x48\x14\xb5\x4b\x20\xec\x33\xf5\x4e\x48\x8c\x8c\x27\x38\xac\xda\x72\xe8\x57\xe8\x39\x82\x5a\x5c\x32\xff\xf3\xa0\x60\x82\x93\xde\xcd\x93\x6c\xdf\xcf\x10\x5e\x3e\xfb\x15\xd0\xb8\x3c\x9e\x30\x98\x33\xcf\x6a\xae\xee\x71\xc2\x26\xe7\x97\xfa\xde\xd2\xfb\x08\x3a\x8e\x1f\x13\xad\x1a\xdb\xca\x50\xe8\x2a\xbd\x52\x6d\xba\x39\x61\xeb\x8e\xde\x59\xd3\x92\x57\x11\xbe\x18\x33\x95\xd7\x6a\x2d\x69\x6c\x3a\x0f\xf0\x57\x31\xb3\x09\x65\x51\xac\xf2\x04\xd3\x6e\x06\x4c\xd5\xa9\xf9\xaf\x1e\x5a\xd3\xff\xc2\xe7\x02\xcf\x92\xbe\x05\xb7\x19\x64\x2d\xb4\xb7\xea\xbf\xc2\x45\xb8\x3f\xe4\xb6\xcd\xa5\xd0\x80\xe0\xe7\x5e\x31\x1c\xc8\xc4\x12\x3e\x40\x42\xbd\xb1\xe1\x2c\x81\x73\x97\xd3\x3b\xd6\x54\xad\x7f\x61\xdd\x8c\xf7\xd1\x75\x3f\x34\x09\x71\xc5\xa2\x71\x11\xde\x6b\x09\x2f\x24\x74\xa2\x2b\x7b\xae\xb0\x50\x94\xcc\x3c\x6a\x99\x72\x88\xa0\xc8\x0a\xde\xf3\xc8\x77\x39\x81\xb7\xe2\x1c\xaf\xa0\x81\x3e\xa1\xcb\x38\xa3\x68\xa3\xab\x3a\xa1\x7f\xe7\x3d\x36\x87\xd3\xa2\xe3\xe0\x7f\xb1\x4d\x3c\xfa\xce\x04\x42\xe2\xcb\xc7\x3d\x7b\x73\x52\x09\x23\xb9\xbf\xd7\x3c\x69\x76\x23\xe8\xbe\x0a\x5a\xd2\xe9\xee\x4a\x30\xe5\x8c\xf2\x6f\x58\xf9\x83\xc1\x57\x6f\xc3\xd7\x3e\xdc\xcb\x08\x26\xa7\x05\x23\xc4\xfa\xe4\x09\x5e\xc2\x69\x5b\x45\xfc\xfa\x19\xec\xdd\x34\x94\xe0\x72\xc7\x87\x05\xb7\xd9\x1b\x92\xae\x1b\x8f\x30\xf8\x35\x1c\x77\xc6\x61\xf4\x24\xf8\xff\x11\xc7\xc5\xc9\xc9\x1b\x79\x97\xa0\x56\xa9\x51\xad\x21\xb3\xfb\x5f\xe8\x89\xe9\xdc\x2c\x55\x79\x9b\xa0\x35\x2f\xb3\xa2\xe2\xd7\x13\x82\xaf\xce\xa3\xdd\xcc\x68\x89\x98\xec\xdc\xcd\xf9\xf5\x33\x61\xd5\x88\x6c\x89\xde\x68\xf9\x23\x7f\xa5\x3b\xd4\x37\x9b\xb0\x58\xe8\x81\x9a\x73\x6c\x08\x41\x4c\x64\x57\x9c\x91\x6f\x19\x83\xc8\xfb\xfd\xb2\x92\xa1\x16\x84\x94\xa2\x63\xb7\x4a\x17\x6c\xa1\xb1\xf2\x1f\x7c\x57\xb5\xcd\xe2\x29\x63\x27\x84\x78\x7d\x65\x77\x93\x79\x5a\x06\xe9\x63\x8d\x1f\xed\x9f\xaf\x27\x1c\xd5\xff\x1d\xfb\xca\xc2\x85\xc6\x4a\xd5\xfd\xb4\x89\xef\x76\xf3\x12\xf4\xbb\x9e\xef\x32\x77\xc9\x25\x5c\x60\x53\xf9\x21\xcb\x9d\x4b\x88\x95\x18\x9a\xde\xdb\xb4\x91\x90\xda\xbc\x0c\x9b\xe7\x4f\x23\x84\x5d\x4d\xbc\xeb\x7a\x37\x9f\x81\xb7\xbd\xd6\xe7\x9c\x89\x7c\x04\xfd\xa6\x06\xc1\xdf\x0a\x96\xe3\x70\x2b\x2f\xe6\xb8\xd1\xd9\x36\x06\xd5\xe1\x57\xdb\x64\x5f\xcc\x23\x28\xd8\x1a\x0a\x7d\x62\xdb\x4a\xe8\x5c\x5a\x1a\xbb\x59\xcd\x82\xb0\xf1\xa9\xfb\xea\x8c\x8f\xfb\x08\x66\x7a\x46\x3f\xb7\x14\xa9\x11\x3a\xcf\xdd\xbf\x72\x30\x30\x82\x70\x9a\xe7\xc3\xf0\x12\x5f\x1f\x82\x67\xc2\xbe\xed\x45\x81\x3e\x04\x79\xf9\xb5\x3d\x55\x9b\x82\x09\x42\x6b\x2f\x5a\x3b\xbf\x57\x26\xac\x6d\xb9\xde\x71\x4c\xb7\x6c\x1c\xde\x97\x4c\x0c\x2f\xff\x5a\x4a\xf8\xb9\x5b\xc5\xcb\x38\x35\x80\xb0\x3c\x97\x67\x5f\xb1\xa3\x1f\x61\x52\x4d\x2e\x3b\x77\xc1\x79\xc2\xd2\x96\x5e\x96\xa3\xfd\x5a\x82\x77\x57\x90\xe0\x86\xd3\x36\x84\xc9\x06\xa7\xb7\x06\xde\x7e\xcd\x20\xf7\xa4\xab\xa5\xbc\x95\x10\x8d\x01\x5c\xed\x07\x8e\x68\xb9\x8c\xc3\x8d\xa1\xe3\xf3\x27\x07\xa8\x10\xac\xb3\x7d\xf7\x06\x1d\x5e\x43\x30\xf1\x5b\x3d\xc8\xee\xf1\x9a\x19\x83\x8c\xbe\x0b\xdf\x4d\xa1\x47\x65\xd0\x16\x70\x7b\xc8\xd6\x26\x48\x10\x98\xf5\xea\x70\x6c\xac\x09\xe1\xac\x9e\xa5\x76\xb2\xbf\x2a\x61\x88\x22\x8d\x67\x46\x4b\x10\xd6\x99\x84\xcc\x0b\x10\x7a\x53\x06\xf1\xc4\x20\x8e\x75\x86\xf9\x84\xa1\x89\x49\xf7\x17\x32\xf9\x34\x56\xe2\x42\x2f\x46\x37\x46\x3b\x12\xfc\xfd\xfd\x8e\x6f\x66\x39\x13\x94\x39\xbb\x8b\xee\xbd\xc9\x20\x70\x9e\xe8\x4e\xbf\x64\x7a\x9f\x90\x7c\x8e\xeb\x5c\xe3\x8b\x8b\x84\x5f\x4e\x25\xd1\xa9\xa3\xe5\x71\xd6\x83\xa7\x73\x5f\x8c\xde\x83\x52\x02\x0e\x2a\x85\x05\x13\x84\x6f\xfe\xe4\x0a\x7f\x1a\xc6\x1a\x9b\x6e\x78\xed\x37\x9d\xad\x39\x87\xb0\xd2\xed\x82\xea\xd1\x10\x5f\xc2\xc5\xe7\x5c\x0f\xba\x5f\xce\x1c\x07\xab\x22\x3d\xd9\x69\xd2\xec\x84\x62\xed\xdd\x75\x5d\x37\x94\x08\x36\x1e\x8d\xc7\x36\x6d\x15\x1b\x87\x5b\x4f\x7f\xce\x5b\xae\xa4\x3c\x0e\xdf\x72\xd3\xd4\x96\xce\x6d\x2e\x43\xa5\xf0\xfd\x47\xd3\x8f\x2e\xa3\x31\xcc\x39\xf4\x61\x5f\x80\xde\x9c\x71\xd0\x3d\x71\xfe\x46\xea\x86\xe0\x71\x45\x20\xd0\x32\x21\xaa\xe2\x27\x33\x86\x16\xce\x49\x52\x06\x7d\x4b\x08\x67\x1e\xd4\x5c\x2d\xbf\xc4\x4b\x18\x2c\x2e\xb4\x33\x3e\xbc\x96\x70\xa6\xff\xf3\x88\xc4\x8c\x46\x82\xae\x9c\xe6\xac\x13\xd3\x6e\x32\x28\x66\xc5\x49\xdb\xbc\xd4\x21\x7c\x8f\x59\xac\x1b\x6f\xc0\x47\xb8\x91\x2b\x29\xee\xd5\x3d\x87\x10\x3d\xf4\xc5\xc5\xb3\x64\x3b\x21\xbe\x94\x32\xa2\x72\x05\x08\x2e\x56\xb7\x1c\x1e\x9a\x9e\x25\x7c\xdf\xc1\x53\xf0\x17\xa7\x6b\xa4\xb6\x1e\x09\x4f\x64\x41\xe1\xd2\xf1\x2d\x7b\xf6\x86\x11\x94\xfc\x94\x66\x9b\x95\x98\x11\xd8\x26\xf4\x0a\xaa\x08\xe9\x13\x5e\x4e\x2c\x2a\x17\xd0\x8b\x24\x14\x95\x54\x9f\x7e\xe6\xa3\x43\xf0\x38\xbe\xc3\x2f\xc2\x66\x21\xe1\xe2\xf6\xe8\x0c\xfe\x65\x05\x04\x0d\xa5\xeb\xcc\x54\x93\xdd\x84\xd7\x9a\xa1\xa7\x17\x3e\xc8\x23\xbc\xe4\xaf\xe5\x7e\x98\xab\x45\xc8\x93\x89\xdc\xed\x28\x12\xcf\xe0\x40\x60\x95\xad\xfe\x75\x13\xfa\x07\xbc\x13\x38\xfd\xb6\x1b\xb4\x96\x41\x68\xfd\x8a\x05\x1f\x1c\x5f\x96\xe1\xfb\x74\xbf\x06\x21\x9e\x6e\xe6\x1f\xd0\xd0\x32\xe9\xeb\xe7\x5d\x4e\xff\x0b\x3a\x06\xc2\xb3\x3d\xe6\xb4\x94\xe1\xdd\xca\xcd\x76\xc7\x2b\x74\x08\x8c\x4a\x9e\xa2\xad\x9d\xfc\x38\xe8\x98\xdf\x31\x5f\x70\x7d\x02\xa1\x77\xa2\x6f\xc5\x03\xcf\xd7\x0c\xc2\xdc\x9f\x2b\xb9\x1f\xf1\xa1\x31\x5c\x59\xbf\x46\x74\xfb\x85\x25\x84\xc9\x1f\x75\xda\x6b\xce\x5c\x22\x08\x19\xdf\x74\x88\xca\x95\x27\x84\x5f\xba\x1d\x97\xbc\x7a\x01\xe1\xea\x86\xb0\x36\xd6\x0f\x59\x02\xdf\xe9\xd8\xbb\xd7\x3a\xab\x18\x48\x89\x4d\xe3\xeb\xe3\x36\x26\xb0\xe5\x48\x26\x6c\x90\xd7\x22\xcc\xaf\xe3\xf8\x7e\x22\xdf\x90\xd0\xba\x77\x5b\x74\xd1\xcf\x39\x84\xe6\xe5\x9b\xea\xbd\x8d\x65\x09\x93\x6c\x95\x2a\x5e\xdd\x1a\x62\x20\xbd\x73\xda\xb4\xfd\x70\x27\x88\x2b\xff\x5c\x58\xfa\x86\x97\x60\x7d\x4b\x27\x20\x45\xe5\x38\x81\xea\xb8\xbc\x93\x62\x93\x08\xd7\x57\xb8\x05\xfe\xae\x8b\x20\x24\xf4\x37\x7b\x34\x7a\x1e\x25\x1c\xd8\x79\x8f\xed\xcc\x01\x77\x42\xbd\xd5\xdb\xd2\x74\x5d\x1f\x82\x4c\xf9\x59\xd5\x97\x3c\xba\x84\x6f\xf7\x06\x6e\x49\x6b\x9f\x61\x61\x5f\x4b\xf6\xc6\xcc\x1a\x1f\x82\xc6\x9c\x79\xfb\x9f\x3a\xaa\x11\x4c\xda\x27\x4f\x75\xbc\xa6\x4f\x3f\x7b\x4f\xec\x18\xb1\x11\x24\x04\x1a\x35\xbb\x4b\xfb\x4c\x22\xb4\xd5\xaf\xb0\x7c\x58\x26\x48\xe8\xab\x51\xed\x7a\x59\x2a\x45\x58\xca\x39\x9f\xe7\xd4\xe6\x69\x04\xcd\xd2\x33\xb1\xc5\xd3\x97\x12\x0c\x96\x47\xbd\x83\x4a\x3a\x81\x53\x2f\x26\x7d\xe0\xff\xf1\x6d\xa7\x51\x35\xfe\x61\xff\xf7\xa9\x34\xd0\xa4\x01\xa1\xa4\x41\x85\x34\xd1\x24\xe7\x91\xa8\x94\xe6\x42\x28\x1a\x29\x32\x45\xa2\x24\x95\x90\xb1\x48\x45\x69\x24\x15\x9a\xa3\x79\x37\x89\x06\x43\xa8\x24\x32\xa5\x41\x66\x0d\x1f\x25\xee\x95\x07\x57\xfb\xbf\xae\xdf\x7d\x3d\x7b\xad\xf7\xb1\x5b\x6b\xef\x76\xe7\xb9\xbf\xc7\x5a\xed\x31\x54\xa8\xf2\xbd\x0d\x60\x89\x10\x24\xad\xbc\xce\x70\x3c\xb3\x27\x2c\xc9\xd1\x7f\xd9\x28\xbb\x9a\x0d\x6f\x5f\x5c\x6d\xa9\x55\x5a\x40\x58\xd5\xac\xf1\x44\xd5\x63\x26\x81\x7b\x80\x57\xd1\xca\x4d\x91\xc0\xe9\xe9\xe1\x3e\xa4\xb7\x8b\x0d\x7f\x1c\x22\xe4\x22\x15\x04\x09\x8f\xa6\xdc\xd9\xda\xdf\xb2\x84\x60\xbe\xc4\xdc\x49\x49\x43\x82\x50\xd9\x60\xb8\xf2\x94\xfd\x04\x42\xe5\x5f\xe1\x67\x17\x0a\xb5\xd8\x60\x57\x6a\x78\xc3\xf1\x71\x27\x03\x6f\x8e\x99\x3c\x65\x8e\xb3\x08\xfa\x91\x59\x93\x93\xb2\xc5\x08\x41\xe9\x0a\x23\xad\x17\xe4\x09\xae\x2f\x83\x33\x86\xe7\xa8\x12\x0a\xe7\x46\xb6\x16\xea\xce\x22\x04\xee\x5c\xe6\xa0\x71\xe7\x17\x83\x14\x43\x9e\xc8\x9c\x49\x8b\x08\xad\x92\xa3\x9a\x75\xbd\xaa\x84\x5d\x93\x5b\xec\x0c\x0d\xb6\x12\x72\x6e\x1e\x8a\xdd\x97\x62\xcc\x06\xff\x7c\x3a\x21\xe3\xdb\xcd\x60\xd8\x7d\xde\x4e\x93\x02\x5d\xc2\x24\x59\xf3\x8c\xeb\x67\x3d\x08\x86\xab\xec\xd3\x5d\xb6\xb8\x12\x8c\x55\x96\xcf\x2e\x74\xf6\x21\xe4\x19\xd7\x99\x9d\x76\xb2\x25\x84\x35\x1f\xf2\x16\x5b\xa1\x46\x70\xd9\xf6\xc7\xdb\x4c\x5a\x86\xb0\xb3\x32\x5f\x39\x4c\x7a\x1d\x61\x7d\xf7\x6b\xfd\xd6\x3a\x5b\xc2\xb5\xda\xaf\xb9\x8a\xaf\x87\x18\x1c\x1f\x7e\x63\x2e\xb7\x8a\x97\x60\x65\x96\xf2\x93\x95\xda\xc4\x40\xfa\xd8\xcf\xa0\x0f\x65\xba\x84\x67\xf9\x4b\x57\xbe\xed\x0b\x66\x43\x77\x49\xf1\xac\x81\x46\x27\xc2\xfe\xeb\x8b\x2e\xa9\xaf\xfb\xc9\xa0\xf5\xca\x85\x09\xd7\xd6\xfc\x66\x60\x67\x92\xf1\x43\xcb\x49\x93\x60\xf1\xd6\xc3\x5d\x61\xa2\x22\xc1\xae\x33\xae\xf1\x6a\x8f\x18\xe1\xc2\x4a\x5f\x57\x25\x87\xf9\x84\x28\xd7\xe8\x18\x13\xf9\xb1\x65\x7b\x7f\x2a\xd7\xde\xab\xc5\x2c\x4c\x99\x54\xe5\xb5\x2a\x65\x1d\x0b\x1c\x59\xb9\x8e\x07\x0c\x5c\x59\x58\x8f\x67\x5a\x17\xef\x6f\x23\x58\xac\xe5\xd7\xd4\xf5\x5b\x47\xf8\xec\x2a\xf5\xf7\xcb\x61\x23\x42\xc4\x2b\x81\x99\x8e\x2d\x7b\x08\x07\x7e\x8d\xb8\x46\x37\xb8\x12\x2c\xbf\x1f\xc9\x8f\xbd\x60\x41\x88\x7c\x20\x52\xaf\x59\x2b\x4e\x30\x6a\x18\xcd\xf3\x90\xff\xc1\x40\x56\xd5\xa5\x77\x53\xfd\x13\x06\xf6\xdd\x06\x8a\x57\xed\x16\x10\x36\x7d\xeb\x36\x9e\x94\x26\xc1\xc2\xd7\xfb\xcf\x87\xd6\xf9\x11\xe1\x77\x4c\xf1\x3e\x65\xef\xc5\x84\x20\x4d\xfe\xfb\x2a\x13\x8d\x08\x4b\x12\x34\x7e\x08\x4c\x1b\x62\x90\x1e\x35\xb3\x3c\xed\xcb\x0e\x1a\xc7\xf5\x9b\x1e\xfe\x62\x9c\x5a\x84\x15\x55\x6f\xb6\x54\xfb\x45\x12\x2e\xb8\xd5\xfd\x8a\x76\x5b\x4f\xb8\x14\x53\xb4\xef\xdc\x3b\x4f\xb6\xd2\x96\x7f\xa4\x59\xcc\x8e\x97\xb0\x4b\xb2\xbc\xb4\xdd\xdc\x8e\x70\x78\xf7\x2c\xf9\x85\x42\xc6\x84\xc8\x90\xed\x7b\x56\xb6\x30\x84\x9f\x65\x43\xba\x2f\x3f\x0e\x33\xe8\xfd\x36\x33\x20\xd4\x3a\x97\x85\xa2\x89\xd3\x57\x5e\xc9\xbb\xc5\xc2\x94\xe6\xb9\xe8\xeb\x38\x32\xb6\x78\xdc\xa4\x14\xf3\x5d\x84\x13\xa7\x6d\xe5\x6c\x85\xaa\x08\x6e\x4c\xa9\x5e\xc8\xa3\x12\x02\xcf\xd2\xef\xf9\x65\x81\x95\x84\x69\x27\x93\xdb\xe6\x15\xdc\x23\x58\x3f\x7e\xf8\x63\xa2\x59\x03\x21\xc0\x6a\xde\xae\x7b\x7d\x77\x58\xf8\xa2\x2d\xf9\xbb\xe6\x9b\x37\xe1\xe5\x6e\xad\xe5\x8f\xe3\x12\x09\x14\x39\x7c\xeb\xfc\xc1\x04\xc2\xc0\xd3\x95\xfe\xd5\xd7\xd2\x09\x65\xf5\x22\xb7\xde\xa5\x27\x12\x24\x16\x0a\x44\xf6\xea\x1e\x22\x34\x07\xa9\x3d\x3c\xbf\x31\x9b\xad\x2c\x57\x96\x6f\xdb\x35\xba\x84\x00\xf1\x46\xc7\x29\xbf\xad\x08\x8f\xf2\xba\x56\xcd\xdc\xf5\x86\x81\x8c\x47\xd1\xd7\x49\xc3\x26\xf4\x1f\xb8\x52\xca\x6a\xb5\xd9\x33\x89\x70\xdd\x3b\x46\xba\x5b\xfc\x4d\x39\x1c\x34\x7b\x64\x0e\x1f\x4f\xa0\x71\xbc\x8a\x78\x56\xfa\x63\xfa\x69\x82\xfd\x37\x4d\xcd\xfd\x5c\x4d\x0c\x14\x04\xe4\x37\x0c\x1d\x74\x20\x14\xe8\x26\x2b\x2f\xf3\xdd\x44\xc8\x18\x3c\xba\x3e\xac\x4e\x80\xd0\xb7\xfb\x8b\x68\x75\x7e\x2e\x0b\x2e\xef\x26\x58\x59\x4b\x2c\x24\x18\xbc\x7d\xb7\xc1\xa7\x63\x94\x81\xbc\x6b\xb1\xab\x66\xb1\x2d\x21\x3d\xfb\x7b\x8f\xad\x4c\x3f\x83\x02\xc7\xc8\xd0\xd5\xbd\x33\x69\x1c\x0b\x7d\xf6\x1c\x7c\x16\xb2\x8c\xb0\xb2\x3e\xb5\xee\x42\xb6\x36\xa1\x4c\x4e\xad\x52\xd9\x63\x1e\x61\x49\xbe\xcf\xa6\x2d\x87\x72\x58\xf8\x5a\xc2\xd2\x7e\xec\xa3\x42\x78\x75\x6b\x92\xc5\xfd\xb3\xe1\x84\x79\x3f\xe7\xbd\x3e\xb6\x42\x9e\xf0\xc4\xb0\x9e\x33\x83\xcb\x83\x60\x29\x71\xf9\xf4\x3d\x51\x47\xc2\xd1\x8f\xeb\xe4\x02\x7b\x6d\x09\x22\xf7\xdd\xe9\xfa\x01\x51\x36\x5c\x76\x2b\x6a\xaa\x1d\xbb\x07\xff\x0f\x9a\xce\x2a\xdb\x94\xb5\x1d\x29\xc7\xa6\xf7\xbf\xec\x06\x6f\xf1\x10\x6e\x19\xae\x4a\x6c\x9c\xdd\xcf\x20\xfc\xda\xe7\xd2\x23\x27\xa6\x13\x94\x52\x9c\x59\x37\x16\xb7\x12\x3c\xf9\xac\x05\x86\x76\xeb\x10\x54\x33\xbc\x13\xf2\xf5\xef\x11\xae\xed\x15\xfe\xb1\xe6\xef\x72\x82\x20\xa7\xea\xe1\x2d\x7a\x73\x09\xb3\x6c\x4c\xc4\x53\x27\x9a\x12\x2c\xc5\x4c\x55\xe8\xe7\x0a\xc2\x95\x83\xab\xee\xca\x6e\x39\xc4\x42\xa7\x96\xa9\x45\x68\xab\x21\x61\xe5\x2f\xb9\xad\xed\x27\xe6\x13\x72\x1a\x24\xfa\x4c\x73\xf4\x09\xfb\x74\xab\xf3\xda\x6e\x4d\x20\xbc\x31\x30\x8d\xee\x87\x29\x1b\x76\x4f\xcc\x58\x30\x47\x64\x06\xe1\xe6\xa6\x8b\x52\xeb\x35\xc4\x08\xb3\xf7\xc5\x6e\xbf\x7f\x7a\x26\x1b\xa4\x2e\xef\xd4\x59\x7f\xa9\x88\x0d\xa6\x1c\x77\x47\xd4\x5b\xcf\xb0\xa1\x9a\xd3\x31\xd6\xc7\x46\x9f\x30\x19\xba\xcc\xba\xed\x57\x08\xfb\x76\x98\xb9\xae\xd1\x5c\x45\x98\xac\xff\x29\xcc\x67\xf9\x30\x83\xbf\x82\x37\x4f\x9d\xea\x17\x25\xcc\x9e\xb3\xb9\x8d\xb3\x89\x83\xc0\xb7\xaf\x8a\x72\x9d\x6d\x09\x9c\x9b\xb8\x3f\xa7\x38\xdd\x22\xcc\x7e\x68\xac\xa4\xd4\xb1\x86\x90\xa7\xc3\xa1\x3c\xdb\x24\x91\x10\xb0\x7a\x64\x6f\xe5\xd9\x79\x04\x2f\xe6\x37\x8f\x49\xa9\x3c\xfd\x5a\x90\x29\xec\x76\x62\x0a\x61\xb9\x96\x40\x84\x11\xe2\x09\x2b\x8e\x2f\x9e\xaa\xab\xb9\x8d\x85\xf5\xab\x3f\xce\x32\xe9\xce\x26\x98\x48\x95\x4a\x33\x9f\xb3\x09\xdc\x37\xe5\xfd\xdf\x5b\xbc\x60\x60\x35\x4b\x2a\xcb\xe4\x86\x00\x81\xeb\x5d\xf0\x82\x07\x06\xdc\x84\xcf\xe1\x1f\xd6\x70\xa8\x7c\x64\xb0\x79\xd9\xe5\x27\x4d\xc7\xc4\x09\xca\x7f\x9f\x5d\xed\x5e\xa4\x4a\x48\x10\xba\x11\xe7\x7f\x79\x3e\xc1\xf4\xc4\xa7\x43\xba\x31\x17\x09\x7f\x59\x47\x76\xf3\x29\x99\x12\xb8\x27\x3a\xda\x2c\x31\x3d\x4a\xb8\x6e\xf7\xea\xde\xe2\x31\x48\x7d\x0d\xb9\x79\xba\xf6\x08\x41\xd5\xb0\x21\xdc\x7a\xbf\x15\x21\x7a\xd2\xda\xcd\xb2\x9e\xfa\x84\x0b\xaa\x45\xbc\x77\xd7\x6d\xfe\x2f\xdc\xfd\xb5\xe3\x72\xc9\xc3\x35\x84\xfd\x99\x87\xbb\x93\x77\x4a\x11\xde\x4d\x64\x09\x7d\x11\x11\x27\xc8\xcd\x6f\x6d\x74\x54\xdd\x41\x90\xfc\x93\x15\xac\x26\x63\x4b\xf8\xb0\x2c\x77\x82\xef\x57\x07\x82\xb1\xa9\x2a\xaf\xbb\xef\x30\x83\x8a\x45\x8b\xf2\x8f\xec\x33\xa1\xff\x0b\x96\xca\x9f\xa2\xb9\xac\xe5\x09\x12\x35\x9c\x7e\xee\x06\x69\x84\x16\xc9\xbd\xbc\x71\xd7\x66\x12\xea\xb8\xa2\xb6\x89\xcf\x5a\x45\xc8\xfe\x2c\xf0\xb5\xad\xd0\x8e\xb0\x65\xfa\x23\xeb\x40\xc3\x55\x84\x54\x21\xdd\x3b\x96\xa2\x42\x84\xb9\x73\x4d\x78\x4b\x36\x1c\x61\x43\xaa\x4c\x7c\xe9\xf4\xc9\x8e\x04\xfb\xf3\x73\x8e\xa7\xed\x52\x26\xd4\x3d\x5d\xe4\xcd\xab\xcf\x4d\xd8\x73\x70\x3d\xa3\xac\xaa\x48\xd8\xe4\x30\x9f\xdc\xf9\x16\x13\x5a\xce\xef\x78\xaf\xf4\x44\x86\x10\xf6\xc8\x38\x28\x69\xa6\x04\xe1\xeb\x4e\xbe\x7b\xc1\x8e\xb2\x04\xaf\xe1\x93\xd9\x1f\x33\x44\x08\x0d\xb7\x4f\xf1\xaf\x0b\xe1\x21\x48\xdc\xc9\x39\xe7\xc1\xa3\x41\xe8\x9c\x39\x9a\xf3\x2b\x45\x76\xec\x2f\xbd\x25\xf3\x72\x47\x0a\x1b\xb4\xd3\xb6\x09\x79\xb6\x5d\x22\xf8\x34\x35\x35\xb4\x9e\x30\x25\x2c\x7a\x55\xcc\x93\xb3\xf4\x79\x39\x9a\xad\xae\xbd\x8e\xbd\xbe\x8e\xfe\x03\x97\xdf\x3f\xe1\xac\x9d\xa0\x47\xc8\xd8\xea\xd9\xe0\x37\x55\x90\xe0\xf4\x7c\x4f\xe3\x56\xfd\x14\x16\x64\x0e\x5a\xad\x6f\xfc\xe3\x4a\xe3\xa8\xad\x49\xab\x29\xcc\x6a\x61\xd0\x3f\xd3\x53\x61\x83\x5c\x1b\x03\x66\x81\x51\xfc\x67\x6e\x3d\xfa\xbf\x30\xed\x6a\x92\xc6\x51\xe5\x99\x04\x71\xef\x86\xf0\x1b\x93\x8f\x94\x63\xa5\xdc\xcb\xa9\x97\xfc\x2c\xe9\xff\xc2\xdf\xd6\xa9\x4e\x1f\xfe\x6d\x8c\x51\xf2\xdb\x7f\xfa\xb1\x58\x30\xa2\xee\xdc\xb6\x78\x61\x42\xf8\xb2\x1e\xc9\x0f\x1d\xea\x84\x97\xda\x16\x21\x67\x17\xe5\x11\xd4\x2b\x86\xe7\xdb\xc6\xdb\x10\xa4\x55\x38\x0d\x7b\xba\x56\x11\x46\xe3\x2f\xc5\xf9\x4d\x15\x26\xbc\x16\x4f\xcd\x97\x7e\x30\xc0\x40\x79\x8a\xc1\x26\x65\xce\x49\x04\x97\xc7\x87\x64\x34\x73\xbe\x33\xd8\x53\x2d\xbd\x33\xa6\x63\x35\x21\x5f\x8e\x8f\x4f\xa8\x2e\x86\x85\x4b\x9b\x78\xee\x79\x18\x7a\x10\x3c\x66\xbd\xba\x30\x6d\x86\x35\x61\xe0\x50\x42\xaa\xed\xdc\x64\x16\x8e\x6b\xf5\x84\x46\xec\x76\x24\xb0\x82\xb4\xee\x8a\x94\xef\x26\x70\xf5\x6f\x57\xa9\x56\xb6\x24\x0c\xbc\x72\x28\xb1\x92\xe3\x27\xa4\x65\x2a\xf4\x9a\x2f\xe3\x22\x38\x0a\xbe\xde\xaa\x78\xe7\x0f\x83\x19\xc2\xa1\x1b\x1b\x73\x96\x11\xec\x9c\xd6\x1f\x3e\x5d\xab\x4f\x78\xe3\x22\x5d\xe9\x7e\xd2\x93\xb0\x3c\x7f\xe1\xa3\x6f\x37\xd4\x09\x2e\xda\x23\x55\x3c\x3a\x1a\x04\x9d\x81\x90\x4d\xb6\x7e\x57\x08\xd1\xdb\x97\x4f\x91\x69\xc9\x22\x3c\x7e\xed\x74\x59\x4b\xff\x0d\xe1\x20\xaf\x6f\xe0\xcc\x9c\x37\x84\x90\x8f\x1b\xce\x19\x05\x77\x13\xf2\x7b\xcf\xac\x76\x2c\x7f\x4a\x78\xae\x5c\xee\x5f\x75\x7f\x27\x61\xde\x2b\x09\x11\xe5\x73\xe7\x58\x08\xb6\xbb\xf9\xf4\xfa\x86\x2a\x16\x8e\xde\x7b\x32\x7c\xf4\x88\x3b\xc1\xd8\xb8\xb6\x99\xd1\x8a\x27\x04\xf3\x9c\xbf\xf6\xd8\xf7\x27\x83\x73\x97\x9c\x8d\x44\x33\x9d\x69\x1c\x83\x82\x8b\xd2\x3a\xde\x2b\xb2\x21\x25\xfb\xf9\xc4\x12\x73\x53\x42\xc3\x4b\xde\xc3\xf2\x19\x60\xfe\x03\x0b\x78\xcc\x3f\x6b\x9f\x2b\x2e\x87\x45\x7e\xfb\x8c\xfd\x75\x57\x09\x41\xf5\xda\x73\xe6\x89\x57\xb2\xf0\x43\x4d\xe5\x86\xce\xd6\x69\x84\x73\xe2\xe1\x6f\x83\xd6\xd4\x31\xd8\x67\x29\x20\xae\xfd\x6b\x23\xfd\x07\x26\x6e\xfa\xd9\xe4\x59\xf2\x82\x81\x89\x6d\x71\xbe\x4d\xc2\x5a\xb6\x9f\xc2\x57\xa1\x79\x57\xde\xdb\xd2\xff\x85\x81\xdc\x55\x5b\xae\x2d\x2d\x67\xc0\x7b\xad\xd2\xf5\x48\x4d\x25\x0b\x69\x6f\xc4\xde\x46\x14\x3d\x64\xe1\x6b\x94\xfa\xe7\xc2\x89\x15\x84\xa9\x1d\x99\xc9\xcb\x7e\x57\xb2\xc0\x7a\xb6\x72\xce\x59\xa5\x22\xc2\x45\x37\x91\xab\xab\x35\xce\x10\xde\xda\xce\xe9\xd9\x71\xcb\x87\xf0\xb9\x31\xfd\x51\xc5\xa0\x1a\x41\xb2\x8b\x04\xd7\x39\xc9\x11\xfc\x2b\x79\x8f\x89\x58\x27\x12\x58\xbc\x4d\x87\x36\xdd\xda\xcb\x82\x93\x5f\xae\x96\xa6\x78\x0d\x61\x6f\x86\xa2\xde\xad\xa1\x32\x82\xe6\xf4\xad\x5b\x3f\xae\xba\x4d\xf8\xed\xc9\x39\x83\xcf\xa2\x9c\xf0\xb7\x63\x77\xc9\xe4\x63\x65\x84\x29\x53\x72\x7f\x7f\x93\x2a\x23\x9c\x53\xb1\x3b\xcb\x32\x28\x27\x38\x7f\x8c\x73\x55\x8e\x6f\x64\x21\xb7\x47\xea\xd3\x01\xd1\x32\xc2\xab\xad\x2d\x5c\x1f\xdf\x97\x12\x52\x86\x8d\x62\x1f\x7f\x2f\x25\x6c\x5c\xff\xc4\xf6\x78\x77\x29\xc1\xa5\x6d\x60\x37\xfe\x68\x10\x8e\xdd\x7c\x4f\xfc\xaf\x55\x09\x0b\x5d\xd7\x37\x8a\xad\x5b\x4b\xd8\xb6\xb0\x3a\xd3\x36\x62\x90\xc1\x3c\xe3\x90\x73\x3b\x77\xf6\xb2\x21\x76\x57\x8f\x99\xd7\x9d\x27\xe5\x70\x1c\x8c\xd9\xb7\xfc\xa9\x35\x41\xf9\xa2\xe8\x62\x41\x7b\x19\xc2\xb3\xa3\x4b\x0a\xed\xfc\xac\x09\x7a\x85\x87\x8a\x82\x33\x95\x08\x9f\xf9\xb7\x7e\xde\xd2\xa1\x43\x48\x76\x90\xce\x95\xf2\xe0\x20\x8c\x9e\xdc\x37\xf3\x6e\xba\x14\xc1\x74\xc2\xfe\x4f\xbb\xef\xe7\x10\x76\x3d\x5f\x35\x79\xe9\xc2\x1c\xc2\x76\x21\xc6\x95\xff\x7e\x2c\xc1\xfd\xa9\x58\x50\x52\x9b\x33\x61\x73\x90\xb1\xdd\xb3\x43\x89\x04\xa9\x63\x05\x9e\x7f\x2e\xd5\x11\xae\x4b\xff\xb6\x18\x9a\xec\x41\xd0\xdc\x5d\x66\x1a\xdd\xee\xca\x86\x05\x87\x9d\xdb\xc3\x76\xef\x25\x6c\x7f\xe2\x9b\x69\xee\xb0\x9d\xb0\xb7\xae\xc6\xdf\xc5\xd2\x9f\xc0\x5f\x35\x73\x49\x54\xc1\x5e\x82\xe5\xbb\x58\x4f\x0d\x5b\x4d\x02\xab\xd2\x86\x6b\x46\xc1\x51\xc2\x8c\x80\x65\x5b\x4f\xab\xcd\x25\xb8\xef\x79\x7a\x51\xac\xcf\x9e\x0d\x9e\x8e\x36\xbc\x22\x1d\x22\x04\x77\x73\x67\xc3\xf3\x01\xb1\x84\xc0\xa9\x5e\x7f\x32\x8c\x0c\x09\xdf\xe3\x23\x14\xb5\x9f\x49\x12\x66\xe9\x6c\x5e\x11\xfc\x57\x9f\xa0\xef\xfc\x4d\x6b\x65\xef\x6c\x36\xec\xae\x3f\xa3\x14\xfa\x6c\x94\x41\x2d\x47\xc4\x17\xd9\x39\x0b\x08\x22\x01\xf3\xda\x2f\xd1\x2e\x42\x72\x61\xc6\x55\xe1\xdf\x1b\x09\x9a\x77\x47\x3c\x27\x5e\x7f\x5b\x8e\x37\x22\x5e\x57\xcc\x77\x88\x11\xf6\xbf\xda\xb1\x79\x96\xa8\xc5\x7f\x61\xe9\x16\xa1\x3f\xac\x13\x52\xff\x85\xa9\xe6\x57\xa3\xae\x74\xde\x61\xd0\x6a\xfc\xcc\x4b\xe0\x8b\x13\x81\x5b\x72\xd9\x1b\x9b\xbc\x21\x06\x72\x79\xf6\xae\x05\x41\xa2\x04\xe5\xdc\x50\x57\xab\xea\x38\x42\xc8\x1f\xde\xb8\x44\x17\x39\x42\x86\xf4\x9c\xc2\xa5\xcf\x78\x09\x2f\x57\xec\x6b\x5a\x36\xcf\x9c\x10\x60\x37\x72\x4e\xe2\xe4\x02\x82\x6b\x64\x73\x5b\x4d\x8c\x0c\xc1\xe5\x6e\x63\xcb\x99\xde\xa9\x84\x73\x03\xab\x4c\x57\xc4\xde\x20\x9c\x30\x9d\x7b\xf6\x66\x8f\x1e\x21\x73\x66\xf5\x76\xde\x2f\x13\x09\xbe\x12\xfa\x9e\x93\xfd\x05\x08\x41\xa7\x22\x93\x76\x5a\x8b\xb2\x95\x8a\x79\x55\x8a\x1b\xf7\x8a\x10\xc4\x54\x4c\x3c\xa3\xa4\x22\x59\x50\x13\xea\x62\xde\x98\xcb\xb1\x8d\x3c\x76\xb9\x9c\x6d\x1c\x3b\x10\xf5\xf9\x77\xea\x7d\xad\x5b\xce\x06\xa7\xcd\x8d\x65\xa2\xcc\x06\xc2\xee\x90\x55\xbb\x67\x29\x6a\x10\x2e\x85\x7d\xe5\xfb\xb3\x3b\x99\x30\x25\xf7\x93\xf2\xdc\x42\x6d\x02\xb3\xb8\xf0\x6a\xf4\xd1\x17\x84\xa8\x5a\x8b\x25\x9c\x11\x0d\x84\xe8\x23\xcd\x0a\xd2\x9b\x9f\x13\xee\x58\x4f\xe2\x0e\xdc\xf4\x84\xf0\x68\xc9\xc3\xd7\x11\x3b\x36\x11\x9e\xbf\x9f\x1e\x25\xa7\x9a\xcc\xc2\x93\xe2\x8d\x0b\xf8\x7d\xa7\x12\xe2\xfc\x0a\x99\xf5\x75\x1d\x84\x17\x6e\x07\x65\xb6\x3d\x69\x23\x9c\xa5\x23\xd7\xbf\x4f\xc8\x26\xe8\x9d\x5c\xb2\x6d\x84\xa3\x80\xb0\xf9\xcd\xf3\xc6\x10\xbd\x04\x42\xf2\xa7\xad\x5a\xa1\x33\xcc\x09\xfd\x46\xeb\x8c\xa6\xfe\x36\x27\xc4\xbf\x62\x78\x5b\x8f\x9a\x11\xca\x9f\x78\x18\xa6\xd4\x25\xb3\xc1\xf8\x99\x8f\x2c\xa3\x16\x46\x30\xef\xd1\xef\x0f\x92\x0c\x27\x24\x0e\xf7\x4c\xe7\x1b\xb6\x64\x41\x67\x57\x2c\xf7\x1c\xb3\x0a\xc2\x9c\xd9\x9c\x1e\x06\xd7\xe2\x09\x6f\x54\x5a\xf6\xad\xb5\x49\x20\xe4\xfb\x3c\xdc\x76\x33\xa8\x90\xb0\xe7\xd2\x54\xc9\x09\x1b\x9e\xb0\x95\x83\x5f\x9f\x72\x2f\xbe\x62\x4b\xb0\x3a\x6e\xb1\x48\xd9\xcf\x9b\xb0\xc7\x26\xd5\xf1\x94\xd4\x1a\x82\xf8\xd2\x09\xaf\xb2\x7d\xb5\x09\x07\x7c\x4c\xee\x29\x2e\xbe\x4c\x48\x5b\xc6\xd3\x67\xa9\xd8\xc7\x82\xd3\xe0\x4c\xff\x78\x33\x7f\x82\xff\xd0\xea\xa8\xac\x6e\x13\xc2\x88\xc1\xb4\x86\xb8\xf6\xb1\xb5\xfb\xee\x97\x8d\x8e\x93\x22\x09\xad\xb3\x4b\xe4\x79\xe3\xc3\x59\xe8\x94\x1a\x68\x53\x90\x8d\x26\x8c\xb4\x5f\xb7\x57\xd1\x89\x26\xa8\x8b\x2f\x9e\x3b\xdb\xdc\x88\x05\x13\x49\xfe\x26\xe3\x77\x51\x84\x4c\xed\x43\xdc\x6f\x97\x44\x13\x1c\x4d\xb6\xf1\x98\x8d\x24\x12\x44\x96\x57\x7c\xd8\xa1\xc8\x41\xf0\x4a\x94\xad\xf8\xf4\x6d\x98\x41\xff\xab\x9d\xf0\xd0\x9f\x48\xe3\x70\x1e\x38\x19\x75\x42\x5c\x99\x0d\x72\x69\x57\xb7\x7f\x1b\xb4\x25\xf8\x6a\xf6\x7a\x76\xfd\xb0\x21\x2c\xd3\xcc\x6e\x7f\xc5\xcf\x4f\x30\xff\xb2\xd7\xde\x52\xb3\xaa\x1c\xd5\xa9\xcb\xa5\x3f\x94\x5c\x21\x9c\x59\xe2\x65\xf1\x0f\x81\xb9\xea\x07\xee\xdf\x5d\xc8\x86\xad\xbb\x44\xfe\x78\x18\xe4\xb3\xb0\x57\x6c\xb7\x4a\xb4\xe5\x0f\x06\x49\x6f\x2a\xbf\x39\xcb\xe7\xd2\x38\x62\x7f\x72\x44\x8b\xaf\xb1\x24\x34\xe8\x7e\x52\xb2\xf3\x92\x25\x18\xcc\x88\xfc\xf4\x2c\x4a\x98\xf0\x33\xd0\x35\x4c\x5a\x6e\x0a\x61\x65\x7e\x41\xc9\x28\x3f\x11\xa4\x87\x58\x53\xdd\x16\x6e\x66\xc3\x1f\xa6\x76\xb6\x2e\xef\xdb\x72\xb8\xbd\xbe\x96\x67\xa6\xfc\x94\xc1\xdf\x8c\x4c\xb5\xfe\x83\x15\x04\xc5\x2e\xfb\x8f\xff\xe0\xf6\xa3\x7a\xd5\x3f\x04\x8e\x26\xb8\xed\x3e\x5b\x5e\x8e\x3e\xed\x87\xb7\xbb\xb6\xac\x22\x64\xfe\xfd\x56\xfc\x3c\x4c\x9e\x0d\xfc\x4d\xbd\x1b\xdd\x13\xa7\x11\xbc\x4f\xdb\x85\xd7\x79\xb5\x12\xae\xf3\x07\xbe\xd8\xe7\x66\x45\x78\x96\xc3\x5d\x65\x7c\xc1\x81\x85\xe5\x5d\x8f\xcd\x0b\x1e\x48\x10\x4a\xaa\x2c\xae\x15\xae\xe5\x62\xc3\x21\xf5\x7b\xb6\xce\x3f\xbe\x30\x58\x98\xb9\xce\x7f\x5f\xea\x1d\xc2\x8c\x09\x7c\xe2\xdb\x3a\x64\x09\x16\x25\x17\x7f\xfd\x79\xa9\x43\xd8\xae\x1d\x5d\x21\xb5\x8c\x83\xb0\x3c\xdc\x42\xc5\xd8\x37\x99\x70\xbd\xa7\x2c\xf5\xd0\x9a\x74\x82\xf1\x82\xce\x12\xa3\xb1\xf2\x59\x48\xb5\xec\xda\x43\x0b\x02\x8f\x9a\xd2\xf2\xea\xae\xa7\x0c\xec\xc3\x53\x23\x4f\x5e\xee\x28\x47\x49\xa4\xd4\xfa\x3b\x06\xdf\x98\x71\xec\x7e\xf2\xa6\x5f\x7c\xef\x08\x03\x97\xd7\xe5\x59\xc2\x2c\x5d\x42\x81\x77\xc1\xf3\xc9\x99\x8b\x08\xa9\xe2\xa1\xa3\xe7\x26\x39\x12\xbc\x02\x46\xae\xab\xbe\xd5\x63\x41\xba\xcd\x5c\xe3\xf7\xde\x95\x84\x0a\x6e\xff\x9f\x47\x93\x26\x11\xfa\x8f\xd1\x40\x83\xaf\x2c\x81\xaf\xf3\x05\x97\xcd\xfe\x3f\x0c\x4a\x3f\x7e\x48\xfd\x36\xc3\x8b\x10\x75\x55\xd9\xb7\x90\xf4\x09\xd7\x16\xc6\x1c\x79\x72\xb3\x98\xd0\x92\xac\x11\x8c\xe5\xab\x09\x26\xe7\x1e\x5d\x71\xde\xac\x4f\xe8\x4e\x28\x89\xcf\x56\x65\x08\x0f\xd6\xef\x95\x3d\x3f\x04\x06\xf9\x29\x1f\x22\xb3\x4d\x65\x08\x0e\xe9\xbd\xa1\xbb\xc7\x36\xb3\xff\x8d\xdc\x8b\xe7\x6a\xb9\xae\xb5\x33\xa8\xde\x1a\xf2\xc4\xf7\xf5\x64\xc2\x9b\xc7\x4f\x0c\xc2\x8e\xde\x61\x03\x05\xd8\x3c\xf8\x87\xc9\xfc\x01\x23\xff\xe0\xb6\xa3\x60\xc4\xe0\x47\x0e\x83\x81\x19\xda\xc5\x29\x19\xf9\x04\xef\xf8\xe1\xae\xf8\x85\x6e\x84\x37\x55\x73\x3e\x4d\x79\xb3\x87\xad\x08\x5c\x76\x4b\x4d\x48\x93\x24\xec\x0a\xea\x8b\x57\x32\x53\x23\xd8\xdf\xcd\x5b\x20\xb7\x52\x93\xf0\xf3\x43\x92\xc2\x87\x28\x17\x02\x1d\xae\xdf\x51\xf3\x6b\x15\x21\x51\x4d\x5c\xeb\x60\x77\x34\x0b\x82\xdf\xb2\xeb\x46\x3e\x26\x13\xbe\xd8\xbf\xe7\x75\x7a\x62\x4b\x08\x33\x7e\x75\xfe\xee\x8d\x15\x84\x37\x07\x05\x38\x75\x16\xae\x24\xf4\x3c\x13\x7c\x77\x29\xaf\x93\x81\xa7\xe5\xf5\x95\xea\x9a\xca\x34\x0e\x33\xde\x59\x93\xf6\xf5\x58\x10\x0a\xa3\x07\xe4\x4f\xee\x1f\x61\x50\x98\x2f\xbe\xad\x6a\x55\x2b\xc1\xca\x74\xc9\xc7\xf6\xf4\xe7\x04\x5a\xbc\xeb\xcc\x11\x91\x42\x42\xac\xb0\x06\x64\x5b\x15\x09\x5d\xcf\x0a\x7a\xdb\x2b\x38\x08\xca\x12\xba\x79\xcb\xf3\xce\x12\xa4\xb3\x23\x4e\xe7\x9f\x32\x24\xb4\xb4\x4b\x09\x25\x7b\x5a\x11\x56\x6b\xb9\x73\x58\x9d\x33\x22\xb8\x1e\xd1\x3d\xa6\xe7\x33\xc4\x20\xcc\xaf\x7d\xcb\xbc\xf6\xe9\x04\x4d\xff\x19\x37\xb9\x1d\x44\x08\x7f\xb8\x13\x96\x4e\x2b\x71\x23\xa4\xd6\x28\xbf\x50\xe0\xbf\x43\xd0\xfc\x30\xf2\x6e\x4b\xef\xd8\x79\x5e\xcd\x46\xc2\x28\xd0\x8d\xd0\xb6\x8c\xff\xcb\xf4\xcb\x86\x84\xa7\xfb\x6d\xd2\x3e\xbd\xca\x21\x78\x75\xff\x2e\x8b\xea\xdb\x43\x58\x3d\x4d\x65\xf5\xea\x16\x6f\x82\xf4\xe5\x47\x0a\x3d\x4a\xba\x84\x4e\xaf\xfa\xde\xca\x12\x1b\xc2\xe9\x43\x7e\x0d\xdd\x63\xbb\x5e\xc5\x14\x0f\x6d\xfe\xea\x54\x82\xa9\x49\x02\xdf\x9f\xe3\xd9\x84\x3a\x2f\xc1\xa7\x5f\x4f\x54\x12\xd6\x05\xd6\xcb\x8c\x8e\x95\xf3\xa3\xfe\xcb\xc2\xab\x36\xb1\xc1\xf8\xac\x9c\x2f\xff\x1e\x27\x82\xbc\x8f\xb4\x78\xa0\xd1\x41\xd6\x78\x09\x78\x95\x78\xe0\x49\x4f\x00\x81\x6f\x60\x74\xa8\x2f\xa9\x8b\xc1\x1f\x49\xd1\x43\x79\x87\x6d\x08\x07\x54\x26\x18\xfc\x0e\xd5\x27\x24\xb9\x4b\x3f\xdc\xef\xaa\x40\xf8\x28\xe0\xac\xe1\x7c\x25\x82\xf0\xdd\x3f\xbd\x4b\xcf\xcb\x97\xad\x84\x44\x55\x36\x5c\x59\x14\x4e\x98\x3c\xd8\x95\x72\x6a\x9d\x11\x61\xc1\xfc\x46\x95\xa8\x7a\x07\x42\x68\xc7\x2f\xdf\x2f\x82\x41\x6c\xe0\xfe\x90\x9a\x93\x92\x9e\x42\xd8\x92\xb4\x2a\x69\x81\xd1\x11\xc2\x5a\xe6\x4e\xd4\xd2\xc6\xa5\x84\x88\xda\xbd\x5b\x67\x5f\xda\x4d\x30\x91\x3c\x5d\xa8\x9c\x36\x8f\xb0\x2a\xf9\xe5\x56\xbf\x45\xf2\x04\x83\xf7\x73\x7e\x86\x8a\xaa\x13\x64\x22\xbd\x3d\x17\x5c\x1b\x64\x70\x66\xc3\x40\xae\xff\xe0\x4d\x42\xfc\xa7\x79\x36\x3b\xf7\x5e\x67\xe1\xe4\xb4\xfa\x6b\x5c\x2d\xf7\x58\xa8\xfc\xac\x30\x85\x63\x25\x8b\x60\xdd\xfd\xfe\xe2\xb1\xcd\x89\x04\x3b\x81\xb4\xaa\x61\x87\x9d\x84\xdb\xd9\xdc\x37\xf7\x34\x3b\xb3\x95\x17\xc6\x4b\x2f\x5c\x88\x49\x27\x38\x85\xf1\x2e\x8c\xbd\x95\x4e\x98\xe1\xa3\xbd\xcb\xea\xf0\x1e\xfa\x95\x78\x5e\xe3\xbb\x49\x02\x0b\x31\x26\xe2\x9f\x18\x0b\x6f\xc2\xe7\x3f\x65\x26\x75\xc9\xb3\x08\x06\x21\x13\xe7\x66\x2a\xd7\x94\x23\xe9\x68\xd6\x46\xc9\xab\x19\x04\xab\x4f\x4a\xfa\x2a\xd3\x93\x09\x9d\x0f\x97\x0e\x37\x9d\xae\xa5\xf1\x91\x9b\xe9\x0c\x47\x1d\xdb\x69\x84\xc8\xd0\x99\x11\x7b\x3f\x09\x10\x94\xe4\xe2\x62\xa0\xbe\x8b\x20\x32\x90\xa0\x3c\xcc\x12\x20\xe8\x5f\x2a\xe8\x38\x51\xf1\x85\x01\x7a\x83\x5f\x2b\xb5\x73\x13\x6a\x8b\x4c\x8e\x61\xa8\x95\x35\x5e\xe2\x59\xc7\x4e\xcc\xcc\x7c\x5c\x8e\xa9\xaf\x3c\xa6\x45\x3a\xe7\x12\x12\x25\x32\xcc\xd3\xe6\xd7\x10\x0a\xcd\xe6\xc7\xbe\xbc\x73\x9d\xf0\xb0\xfc\xf6\xf5\x6d\x72\x7d\xcc\x38\x62\x1e\xde\x95\x39\x1d\x94\xcb\xe0\xe1\x23\xeb\x32\xf3\x4f\x9d\x0c\x02\xdd\x8a\x46\x73\x3f\x1c\x65\xe1\x7e\xf5\x5a\xf7\xcf\x74\x9f\xb0\x6c\x6e\x8f\x65\x5a\x6d\x1b\x0b\x7d\x6f\xdf\x88\x7f\x88\x3b\x49\xe8\x53\x36\x35\x7e\xbe\xb9\x8a\x70\xe2\x94\xfa\xf0\x02\xed\x0d\x84\x9b\x7d\xdd\xb5\xb9\xe5\x96\x84\xec\x06\x8b\x6d\x29\x72\xb5\x04\xca\x6c\x53\xf5\xd5\xb8\x4b\x50\x98\xe5\x27\x1b\x20\x77\x97\x20\x50\x6a\x16\x97\xe6\x96\x4c\x10\xef\x14\xce\x7e\xb6\x36\x99\x20\x6d\x31\x7b\x62\xe9\xbf\x6f\x1d\x28\x38\xfd\xed\xe5\x09\x27\xcc\xd6\xf2\xbd\x98\x31\x35\x9e\xb0\x7a\x4d\x57\xd0\xbf\xc7\x34\x71\xcc\x91\x6e\xb7\x5d\x4c\x88\x58\xb1\xdf\xc0\x6f\xb7\x32\xc1\x8e\x29\x68\x5b\x38\xf1\x29\x21\x40\x24\x65\x96\xd6\xdf\x26\x42\x28\x6f\xba\x59\x50\xd2\x6d\x82\x59\xed\x33\x1d\x03\xb7\x53\x2c\xf8\x8a\xaf\x5f\x96\xf0\x39\x97\x90\x9f\x90\x99\xfa\xae\xad\x8a\x05\xae\x6a\x23\x0f\xc9\x57\x0e\x34\x0e\x03\xd5\x82\x00\x9d\x3b\x17\x09\x7a\xcf\x06\xcf\xa7\x4c\xc9\x21\x84\x19\x1c\x70\x50\x72\x71\x66\xc3\x39\x27\x6d\xce\x3e\x53\x2f\xb6\x62\xb4\xb0\x71\x5e\x04\x47\x14\xe1\xc1\xaa\xb0\x33\x5e\x2a\x76\x84\xb3\x1a\x97\x5e\xda\xc5\x18\x10\x6c\xc3\xb7\xdf\xe4\xbe\x54\x41\x88\x3e\xf9\xa4\x70\x72\x48\x31\xe1\x5c\x5c\xcb\xe4\x7f\xa5\xcd\x6c\xb2\xc3\xaa\x8e\x25\x04\xf1\x2b\x2e\x59\xad\x2f\x24\x08\xaf\x6a\xb2\xeb\x1b\xc3\x67\x13\x6a\x2b\x7e\x4b\x79\x2e\x5d\xcf\x06\xb3\x49\xef\x4d\x44\xe4\x9e\x32\xb0\x8a\x2a\x39\x7e\xe4\xfc\x25\x16\x14\x87\x07\x62\x64\x8f\x70\xd2\x38\xf2\xcf\xda\x9f\x8b\x92\xdc\xc1\xc2\xa4\xd2\x1b\xa2\x27\x36\xce\x20\x34\xeb\xc4\x79\x7b\x4d\xfe\xc6\x20\xae\xc1\xdc\x7f\x6f\x02\x27\x8d\xa3\xdf\xe0\x78\x60\xe4\x97\x7e\x06\x8d\x1b\x8d\xee\xcd\x5d\x65\x40\xe8\x11\x5c\x20\xd3\x66\xa6\x4f\x78\x20\x6e\xfd\x51\xe0\x8f\x25\x41\x5b\xe3\x75\xb0\x9a\xcc\x74\x82\xd7\xde\xa9\x8f\xa7\xfb\x79\xb1\xe1\xed\x8f\x47\x99\xde\xf7\x8d\x08\xb1\xea\x06\x02\xe5\x73\xff\x30\x70\x72\x08\xd8\x5e\xd3\xb8\x88\xc6\x71\x7f\xca\x83\xa8\x13\xdd\x31\x84\x97\x12\xb3\x14\x75\x26\xc9\x13\xd6\x6e\x95\x79\xa8\x5e\x3a\x83\xe0\x7e\x67\x06\xe7\xe9\x3e\x35\x36\x38\xf9\xe5\x2f\x0f\x9e\x92\x5d\x8e\xbd\xc6\x1f\x13\x95\xb6\x69\x11\xa2\xdf\xf8\xcc\x35\xfa\x7a\x80\x20\x3f\xb5\xc9\x2b\x23\xc2\x83\xe0\x77\x3a\x2e\x38\x72\xfb\x63\x16\x1a\x3b\x82\xa5\x7e\x9b\xd9\x10\x72\x63\xf2\x5e\xfb\x7a\x98\xb2\xa0\xbf\x3e\x48\x58\xb6\x7d\x39\x21\x44\x7c\xe1\x8e\xcf\xca\xaa\x84\x43\x36\x9f\x93\xae\x58\x6a\x10\x36\x99\x67\xc9\xbe\x93\x3d\x4e\xf8\x7c\xd9\xf0\xc2\x9a\xad\xb2\x6c\x25\xd3\x5d\xb5\x79\xed\x15\x3e\xc2\xe5\x58\xa3\xcc\x08\xce\x2e\x06\x2b\x1e\x70\x4a\xf8\xba\xcf\x27\x48\x6c\x4e\xb3\x34\xd9\xae\xc8\x86\x5e\x8d\x6b\xf9\x52\x5c\x7f\x98\x71\xcc\xd4\x9e\x1c\x32\xe7\x97\x20\x8d\x43\xe4\xd9\xe5\x27\x57\xa6\x36\x95\x23\xf4\x69\x8c\xbf\xdd\xd3\xd5\x84\x80\xfc\x6d\xa1\x8f\x06\xdc\x09\x19\x8b\x4f\x0c\xa9\x4b\xba\x10\xc2\x4d\x76\x4b\x6c\xdb\xc6\x47\x70\xf4\xd7\x8a\xcc\x4a\x21\x82\x40\x0a\x8f\xe1\x5c\xa7\x20\x36\xf8\xef\x33\x70\x3d\xbe\xf7\x0e\x21\xe7\xc3\xf4\x25\xff\xe0\x34\xa3\xa1\xb2\xcf\x9b\xbd\x70\x54\x5a\xc4\xeb\xc2\xf3\xbf\x60\x36\x73\xcf\x6f\x89\x2d\x17\x09\x29\x3b\xc5\x32\x4c\xba\x04\x09\x4a\x7f\x9e\xce\x7d\xbc\xc1\x86\xd0\x97\xf5\xac\xea\x2d\x87\x13\x5b\x49\x9d\x6f\x2a\xf5\x27\x77\x0a\xc1\x6c\xc7\xd9\xbd\xdb\x83\x96\x12\xbc\x5f\x5c\xfc\x7a\xb2\x71\x09\xe1\x23\xdf\xfe\x0d\x82\x91\x45\x04\xff\xb3\xc9\x26\x53\xc6\xe0\x31\xb2\xf9\x51\xed\xec\xf7\x2c\x88\x19\x4a\x8b\x0a\x8d\x15\xbf\xf5\xe2\xe1\x0a\x99\x7b\xd8\xd0\x95\x75\xee\xa1\xdf\x2f\x7f\xb6\xa2\x95\x93\x54\xbf\x31\xbf\x84\x35\x5e\x38\x8c\xf9\xbe\x2b\x67\xef\x25\x74\x97\xdf\xee\xc8\x69\xf3\x66\x2b\xfb\xb6\xaf\xdb\x92\xfc\x24\x8c\xad\x1c\xb4\x8d\xcb\x66\x54\xd5\x08\xc7\x16\x44\x96\xbf\x5e\xa0\x4f\x58\xa2\xc3\x55\xa3\xc6\x4c\x20\x2c\x94\x69\x0d\x75\x5b\x7a\x83\x60\x7e\xf7\xc3\x1d\xd1\x80\x7c\x82\xe4\xd7\x6b\xde\xff\x30\xef\xce\x46\x8b\xce\x39\x1b\x08\x9c\xcf\xa2\xfb\x37\x47\x6e\xfd\xaf\x52\x3e\x78\x2a\xc8\x7f\x6e\x14\xe1\x7c\xfe\xcf\xe0\x8f\x36\xd1\x04\xa9\x4b\x77\x5d\xfd\x4e\x55\x12\x32\xfa\x77\xd9\x29\x69\x54\xb1\x70\x8a\x5f\xf8\x78\xcb\x96\x4a\xb6\x91\xf9\x5d\x2e\xd1\xa7\x97\x23\xc7\x3e\x57\x13\x43\xef\x28\x96\x11\xa6\xad\x0d\x33\xbc\x38\x50\x49\xf8\xf0\xa8\x7d\xe1\x8f\xee\x2a\x82\x9a\x48\xe9\xb9\x5f\x6f\x72\x09\x67\x5a\xca\xa7\x79\xf7\x55\xb1\x8d\x78\xce\xad\xb9\xdf\x36\x56\xfe\xd6\x1e\x9c\xae\xbe\x68\x01\xe1\xc5\xf9\x70\xb3\x9d\xb1\xb2\x84\x59\xb3\x72\x52\x05\xcd\xb3\x08\x2e\x1d\xb3\xbf\x8b\x0b\x1c\x23\x0c\x55\x15\x7a\xb8\x37\x8f\x5d\x29\xbd\x89\x55\xa7\x7f\x3b\x10\x5e\x76\xfc\x58\x7c\xb8\xf9\x12\x61\x98\x7b\x50\xea\xcc\x58\x91\x91\x2a\x16\x7e\x5d\xb0\x8c\xa0\x72\x7a\xf9\xbb\xf3\x0e\xaa\x6c\x45\x8c\x7f\x8a\xf2\xf2\x22\x61\x82\x2c\x6f\xfb\xee\x8b\xc9\x7c\x6c\x78\x3d\xfb\xd5\x5e\xd5\xc1\x6e\x66\x1c\xfe\x0e\x8c\x1f\x67\x5a\x1d\x83\x9a\x5a\xc9\x69\x05\x87\x34\x08\xb3\xb6\xc5\xbf\x78\xe5\xc1\x4b\x48\x6c\xb7\x0d\x49\x10\x2d\x20\x4c\x4d\x7d\x30\x65\x62\xa2\x2b\x61\xfb\x93\x79\x34\xea\x5a\x44\xc8\x15\xb1\x8a\xfe\x3b\x86\x0b\x0a\x3f\x07\x1f\x3e\x3b\x49\xd8\xee\x94\x78\x33\x2d\x28\x85\xf0\x53\x62\x9b\xd9\xbc\x4d\x9a\x6c\x28\xf8\xc6\xb1\x39\x44\xd7\x9d\x85\x7d\x82\xb7\x1b\x16\x3b\xcc\x21\xdc\x9f\x60\xf7\xd1\xef\xaf\x3c\xa1\x25\xe8\xdd\x2c\xeb\x45\x3c\x04\xee\x92\xac\xd7\xa6\x8e\x43\xcc\x38\x6c\x67\xf8\x79\x44\x7c\x93\x26\xc8\x73\x2a\xc6\x3c\x7f\x2b\x41\x88\xfd\xbc\xd1\xb2\x90\xa5\x47\x90\x7d\x75\x23\xe5\xac\xd8\x4f\x06\xf9\x2a\xb3\x64\x34\x5c\xf3\x69\x1c\x5c\x26\xd1\x43\xd5\x72\x5e\x84\x99\xbe\xaa\x3a\xff\x8a\x46\x8a\xb6\x4e\xa6\xa5\x2b\x1b\xfc\xfc\x5a\x1f\xff\x3d\xb3\x97\x35\x5e\x44\x94\xf4\xd2\x12\x7f\x5e\x24\x74\x0d\xad\xdf\x79\xd1\x78\x39\x21\x2e\x46\xcc\x61\xe3\x83\x64\x82\xc9\xd4\x39\x0f\xf3\x36\x3b\xff\x17\x50\x2b\xf0\x74\x92\x4c\x14\x81\x27\xab\xba\xf8\xb9\x6b\x16\x61\x6b\xaf\xec\x94\xc9\xeb\xb3\x09\x83\x53\xb7\x97\x89\xeb\x10\xc1\xa9\xe1\x50\xb8\x4f\x59\x02\xfd\xb2\x6a\xbd\x57\xe1\xb0\x85\xc0\xc9\xba\xaa\x6b\xb2\x71\x0b\xe1\x75\xf3\xc3\xc8\xbb\x09\x19\x04\x8b\xa1\xd9\x3a\xe0\x3b\x4b\x88\x9b\x36\x73\x9a\x81\x58\x08\x5b\x11\x12\xd3\x7b\x21\x52\x72\x90\xd0\x55\xb1\x26\xbb\xa5\x41\x94\xb0\xb1\xee\xba\xee\x13\x87\x76\x82\x78\xd8\xe1\x77\x8f\xc6\xc0\x6b\x6b\x5b\xf7\x78\x0c\xcf\x26\x7c\x5f\x3f\x2b\xb9\x92\xb0\x21\xc5\x6a\xf2\xde\xa5\x3b\x08\x62\xbf\x38\x75\xee\xcc\x12\x25\x54\x26\x34\xb6\x9f\x6c\x58\x40\xb0\x0a\x3c\xe1\xa1\x34\x76\xfb\x89\x77\xe1\x5f\x6c\xa0\xbd\x8e\x70\x7a\x5b\x44\x54\x59\xfd\x04\xc2\xdf\x82\xc9\x42\x92\xb1\xab\xd9\x70\xe7\x7b\xe7\x4f\x26\xf2\x3b\x83\xec\xf7\xb6\x3b\x0e\xa4\x09\x11\x9a\x0e\x71\x49\x67\x2e\xe9\x62\xf0\xfb\xee\xa9\xc3\xd2\xa7\x36\x13\x6e\x96\x74\xea\xac\x19\xa9\x20\xb0\xd2\x37\xb7\x2b\xdc\x7c\xcb\x02\xdf\x84\x96\xe6\x83\x96\x95\x84\xa0\xd7\x4f\x0c\xba\x57\x54\x12\xe2\xce\x7c\xbb\x74\x6c\xe1\x72\x42\x6b\x6f\x70\x70\xba\xd7\x4d\xc2\x87\x8f\x17\x2f\x19\x9d\xcc\x65\xc1\xd3\x79\x07\x77\x4f\x9d\x21\x41\xff\xfd\xb1\x35\x4b\x3f\x2b\x12\xf6\xc5\x76\x4b\x3b\x9c\x18\xbb\xa9\xcf\x77\xab\x56\x3f\x59\xc3\x20\x55\x4f\xc0\xe7\xd3\xad\x09\x34\x8e\x33\x33\x1b\x96\x9c\x89\x68\x61\xb0\x7b\xa2\x42\xda\x32\x72\x23\x28\xfd\x32\xbc\x71\xd1\x71\x32\xa1\xa1\x81\x63\xc3\x6e\xc3\x34\x16\x1c\x2d\x86\x96\x6e\x11\xcf\x22\xbc\x5b\xe7\x5d\xab\x91\xf2\x9d\x85\xe7\xca\x5b\x27\x65\xcd\x1f\x60\x61\x87\x36\x57\xf0\xa3\xe4\xef\x2c\x1c\xdd\x6c\xfd\xb5\x6f\x73\x38\x0b\xf6\xf5\x7d\xcf\xb5\x0b\xf7\x10\x9c\x9e\xf1\xef\x97\x1f\x83\x66\x98\x7f\x8a\x5d\xf9\x1e\xc2\xb9\x88\x94\xeb\x62\xbd\xe6\xff\x05\xc7\x3e\x53\x97\x5b\xf7\x05\x09\x0a\x17\xac\xd6\x76\x87\x71\x12\x8c\x7c\x1b\x3e\x4c\xe5\x15\x25\xa8\xbe\xbe\xe9\xb8\xa3\xd5\x8e\xc0\xf9\x9e\xa3\xea\xf9\x1a\x4d\xc2\x61\xa9\x45\xc1\x21\xb2\x7a\x6c\x45\x72\xb7\xc5\xc9\x8b\xba\xd3\xd8\x30\xe5\x8d\xf3\x34\xeb\xaf\xbb\x08\xa7\x74\xcf\x7f\x7b\xa3\xef\x42\x28\xaa\xa9\x79\xd6\x72\x73\x27\x41\xb0\xdd\x46\xcf\xf7\xd4\x46\xc2\x88\xa0\x8f\xa2\xf4\x4a\x79\xc2\xaf\xb7\x8d\xf5\xae\x75\x63\x0b\x9e\xc9\x0c\x4d\x9f\x9a\x73\x6c\x48\x6c\xd8\xe6\x57\x39\x97\x21\x94\x18\x3f\xed\xdf\x2d\xb8\x8c\xa0\xf4\xf5\xe6\xd4\x4b\x7e\x53\x08\xc1\xc7\xf4\x8a\x6f\x05\x78\xb1\x20\xb0\xd3\xed\xa9\x9e\xd0\x35\xc2\x83\xbd\x12\xb7\xdd\xbf\xaf\x27\x68\xb3\x6c\x6a\xd5\xf7\x9b\x10\x2e\x7c\xfe\x68\x61\xa1\x3b\x9b\xd0\x1b\x5b\x92\xf3\xe1\xf8\x69\x42\x7e\xf7\x5e\xfb\x8a\xa0\x72\x16\x4c\x7c\x45\x92\xee\x74\xcc\x21\x50\xd7\xc3\xf0\x54\x8e\x1c\x82\xfc\x24\x45\x75\xdb\x1b\xcf\xc7\xce\x02\x19\xeb\x02\x57\xf4\xb3\xc1\x6c\x78\x77\x48\xbe\x6c\x35\x03\x85\x6f\x7c\xe4\x54\xf3\x91\xc1\x7b\xc6\x6a\xff\x89\xc0\xc7\x2c\xf4\x29\xf8\xc7\xd7\xd9\x5f\x23\x0c\x1a\x66\xbd\x2b\x39\x6d\x40\x48\x59\x23\x71\x63\xd1\x61\x07\x36\xec\xe9\x93\x95\x59\xc0\x27\x4e\xc8\xdb\x6c\xc1\x2d\xaa\x79\x9a\x30\xc0\xba\xfa\xd7\x4d\xca\x85\xb0\xbf\x3b\xaf\xb1\x50\xdd\x85\x10\xcb\x38\xaf\x7d\x77\xc3\x95\x10\x55\xe8\x59\xdf\x3f\x75\x25\x21\xd5\xa9\xbc\xd6\x3b\xc4\x94\xb0\xd5\x6d\xbf\x69\xe0\x41\x6b\x82\xf1\x12\xd9\xc3\x31\xf2\x8b\x09\x12\x3d\x43\xcb\xd2\x1a\x25\x09\x76\x2f\x9e\x6f\x51\x19\xd9\xca\x42\xba\x97\xa8\xeb\x5b\x9e\x3c\xc2\x02\xe5\x57\x0d\x5b\x26\xa4\x11\x02\xfb\xf2\xad\x8d\x34\xf2\x08\x67\xbf\x77\x3e\xf9\x6c\xb7\x86\x90\xf9\xee\xcc\x92\x19\xbe\x67\x09\x5e\x99\xc3\xbf\xd5\x0b\x37\xb2\x61\xca\x65\x63\xbe\x62\x41\x31\xc2\x9e\xaa\x8a\xa9\x3a\x0b\xa2\x09\xfb\x4a\x43\xfd\xb7\x1b\xc6\x10\xf8\x25\x7d\xba\xfc\xf7\xbf\x67\x70\xec\x67\x20\xe7\x77\x46\x8e\x30\x93\xeb\xea\x82\x0d\x5c\x43\x0c\xb8\x72\x5c\x36\xd6\xbd\xdd\x45\xe3\xb8\x76\xb6\xc9\xe7\xec\xa8\x18\x1b\x9c\x0c\xa5\x9e\x72\x97\x17\x11\x72\x2e\x4c\xb8\x66\xc3\x2a\x22\x44\x1d\xb8\x36\x91\xb3\xa8\x88\xd0\xfe\x30\xc3\xd1\x76\xac\x08\x87\x94\x69\x49\xdb\xd8\x10\x3e\x06\xc4\x7f\xf9\x78\x52\x83\x10\x10\x7f\xf9\x87\xee\x4b\x5b\x36\x2c\x9e\xf3\x3d\xf1\xad\x8d\x15\xe1\x4e\x6e\xf6\x9e\x86\x0d\xb7\x09\xd2\xf3\x8d\x4e\x4c\x37\xa9\x24\x9c\xce\x1a\x35\xf0\x8a\x59\x4f\x98\xca\x41\xcc\xa6\xa6\x3c\xc2\xdd\x2d\x7c\xad\x51\xc7\xbf\x33\x08\x3b\x11\x56\x3b\x31\x7c\x2a\xa1\x73\x42\xec\x0d\x8d\xe9\x93\x09\x51\xc2\x0d\xe1\xab\x38\xc4\x08\xbd\xcd\x0a\xc1\x27\x5a\xa5\x08\x46\xf3\xf8\x4f\x69\x0d\x14\x13\xb6\xf2\x2c\x36\x9f\x9f\xa7\x42\xd8\x10\xd7\x16\x9b\xfa\x72\xef\x7f\x61\xfa\xcb\xd1\x79\x57\x4c\x5f\x31\xd8\xb4\xe8\x52\xf4\x9e\xca\xdd\x84\xfe\xb4\x99\x2d\xe7\xfd\x89\x60\x5c\xdb\x59\xed\x7f\xe7\x0e\x0b\x2a\x8e\x32\x39\x2a\x15\x51\x84\x8e\x3b\x9e\x29\x8f\xf7\x65\xb0\x90\x7b\x7d\x51\x7d\x6d\x5b\x14\x21\x2e\x56\xbc\x7d\x8d\x6d\x38\x41\x88\x67\xf5\xad\xdd\x71\xcf\x08\x17\x97\x6a\xe7\xba\xbf\x57\x62\xe1\xf8\xa0\x6e\x4b\x6c\x9f\x0b\x0b\xa6\xdb\xce\x5b\x18\x9d\x8e\x61\x41\xdf\xed\xcc\xd9\xd9\xc5\xfb\x09\x05\x85\x19\x5d\x36\x5e\x53\x09\x45\x8f\xda\x0f\x70\x99\xb9\x13\x78\x2e\x08\xe9\x86\xa9\x4c\x23\xd8\x1c\x29\x3b\xed\xeb\xec\xc3\x86\xef\xd2\x8f\x59\xc3\x21\x62\x04\x96\xfd\x49\x87\xfc\x15\x57\x09\xef\xbf\x79\x28\xb5\xd4\x6f\x66\x81\xd7\x26\x74\x94\x67\xff\x6c\x1a\xc7\xc9\xaf\x5f\x0d\xe2\x23\x2f\xb2\x70\xbc\x39\xb4\x33\x3e\xe8\x37\x83\xa8\x42\xe1\xc5\x09\x3c\x1a\x34\x8e\x6d\x9f\x1d\x6b\x79\x56\x8b\xb1\x81\x6e\x8f\x86\x78\x73\x19\x12\x66\xef\x97\x99\x6f\xa4\x36\x87\xa0\xe6\x90\x32\xdf\xd0\xd5\x9b\x10\xea\x62\x15\xf8\xfc\x73\x0b\xe1\x4a\x65\xf9\x60\xb9\x80\x32\x21\x54\x66\x96\xc0\x47\x3d\x62\x83\x59\xae\xa0\x99\xbe\xab\x2a\x61\x55\xd2\xa3\xe6\xa9\x6b\x2f\x13\x8e\x1f\xff\x7b\xcc\x68\x5a\x31\xc1\xf3\xaf\x67\x53\xdb\xb4\x32\x42\xd8\x22\x9e\xc1\x85\x3c\x9e\x84\xa6\xa2\x76\xf5\x18\xff\x0a\x42\xf3\xfb\x91\x15\x35\x55\x5c\x84\x6e\x2f\xdd\x69\xba\xc5\x93\x08\x36\x07\xaf\x95\x54\xe7\xe6\x13\xd2\xa6\x3f\xad\x6c\xec\xd6\x23\xbc\xc9\x5f\xc8\x7a\x70\xe1\x28\x1b\x82\xdf\x1d\xd0\x3b\x7c\xef\x18\xe1\xd5\x5c\x8e\xe6\x16\x2b\x55\x42\x97\x4b\xe3\xb2\x92\x79\xdd\x0c\xf2\x25\xbe\xf7\x28\x84\x5d\x23\xcc\x96\x9b\x32\xba\x52\xaa\x82\x10\x51\xf4\x72\xd6\x9a\x1c\x6d\x42\xf1\x8d\xb7\xa6\x0d\x7e\x7c\x84\xba\x4f\xd1\x59\xf6\x5b\x73\x09\xd5\x4c\xbc\xc5\xdd\xce\x95\x84\x33\x42\x07\x46\x64\x64\x15\x08\xe2\xb3\x2c\xd3\x95\x58\x13\x08\x79\xbc\x19\xcb\x6b\xb6\x1e\x21\xd8\xf4\x18\xb1\xc4\xc7\x0e\x95\x93\x05\x3e\x5f\xfb\xb9\xb1\x98\xc0\xb9\xed\x98\xdc\x3a\xff\x3c\xc2\xf9\xfe\x69\xbd\xfd\x63\x45\x52\x2c\xcc\xec\x13\x67\x05\xa1\xe3\xc5\x1e\xab\x9b\xd9\x2f\x09\xeb\x7e\xa4\x9e\x9b\xa4\x54\x43\xe8\x67\x7a\x2f\xa7\x9f\x4d\x60\x61\xa3\x17\xe7\x92\x2b\xe6\xaf\x08\x7b\x9f\x7c\xd6\xa9\xec\xd2\x24\x38\x59\xa7\x9d\x76\x7f\x30\x8f\x20\xd2\x98\x98\xe6\xa8\x6d\x43\xb8\xc4\xeb\x65\xf7\x67\x7f\x21\x0b\x3f\x8f\xb4\xa8\x17\xa5\x67\x13\x5c\x26\x8b\xa8\xdf\x1c\xd9\x4e\x48\xbe\xba\xd8\xd8\x3b\x67\x88\x41\xc0\xf1\x58\x9e\x3b\x1a\x9c\x34\x8e\xbf\xc9\x93\x6b\x3b\x76\x0a\x13\xf6\x9c\xc8\x36\xc8\x3b\x2c\x41\xc8\x19\x92\xb3\xf2\x1b\x38\xc5\x06\xef\xb5\x83\x53\xbe\x7c\x97\x24\xc8\x9a\x3c\x8b\xd1\x51\x1d\x66\x50\xb2\x34\x69\x4d\xa6\x87\x18\xc1\xdd\x65\xc4\xc3\xf6\xe6\x52\x42\xe3\x6d\xe1\x6c\xbf\xaa\x2a\xc2\x9c\xbe\xa5\x55\x23\xae\xbc\x04\x6b\x73\xfe\x43\xa6\x63\xdb\x89\xcd\xd5\xc4\x3b\xf3\x63\x55\xd9\x20\xe8\xe1\x91\x94\xaa\xae\x46\xd0\xa3\x94\xc9\xd5\x7e\x9a\x04\x81\x40\xc5\xda\x93\xbd\xe2\x04\x43\xe5\x8f\xd2\x6b\xee\x64\x10\xb4\x87\xca\x79\xd6\x8e\xc1\x38\xbf\x62\xc5\xe5\x82\x08\x16\xfc\xe2\x59\x3f\xec\xc6\xca\xa9\x17\xf6\x25\xcf\xbd\xd7\x13\x5c\x46\xb2\xb6\xc9\x9f\x5d\xc7\x56\x78\x4f\xdd\x9b\x70\x77\xe9\x76\xd6\x78\x99\x1d\x7f\x6c\xdb\x5f\x4e\x45\xc2\x87\xc5\x7f\xaf\xdb\x28\xcd\x27\xc4\xfe\x9c\x61\x39\xad\x62\x05\xe1\x5d\x51\xf4\xa6\x8b\xdb\x1f\x11\xfa\xde\x45\xf8\xfc\x76\xac\x20\xd8\xdd\x36\x7a\x39\x61\x51\x16\x81\xaf\x99\xeb\x5e\xbc\x8a\x36\x61\xed\xe4\xb0\x0d\xf5\xeb\x1e\x10\x16\x0d\x88\x6f\x5d\x75\x8d\xc6\x76\x88\xa4\x75\x25\x22\x1e\x84\xc0\xab\x09\xa7\x17\x0c\xe4\x12\xda\xfc\x05\xae\xe4\xfd\x3f\x68\x97\xef\xe2\xe8\xe8\x69\x26\x3c\x34\xb6\x4c\xc9\x1e\x2b\xff\x83\xc0\x3b\x4b\x6f\x19\x7b\x6d\x23\xc8\x27\x99\x0d\x64\x89\x79\x11\xde\x85\x4c\xd2\xb5\x60\xf9\x13\xbe\xa9\xf8\xca\x66\x8f\x95\xcf\xba\xfd\x12\xde\xad\x3b\x08\x05\x2b\x5f\xbb\xe6\x3f\xbc\x47\xf8\xdb\xa5\x77\xa2\x89\x23\x8d\xa0\xd5\xf2\xfb\xa2\x89\x6b\x1a\x61\x73\x85\xf9\x94\xc4\xd1\x62\x42\xd2\x56\x8b\xc1\xf8\x31\xf0\xfc\x11\x9b\x5e\xbf\xd8\x81\x20\xfa\x29\xfd\x82\x79\xd1\x2e\xb6\xd2\x74\x9a\x0c\xff\xe1\xa9\x60\xf7\x77\xe9\xe3\xea\x04\x3f\xb5\x65\x6d\xcb\x39\xa6\x13\xdc\x7a\x92\x2a\xe7\x04\x5c\x27\xa8\x59\x58\x8f\x16\xdf\x2d\x63\x41\x3a\xff\x79\xb4\xfd\xcd\x64\x42\x81\xc0\xfb\xc6\x61\x37\x13\x82\xf7\x71\x51\xfd\x41\x43\x27\x02\x23\x53\xeb\xe9\xdf\xb4\x9f\x90\x93\xb7\xc1\xa5\xb6\xed\x3a\x0b\x4f\x47\x7d\x7b\xa7\xf4\x3f\x61\xe1\xbc\xf4\xd9\x09\x81\xbc\x0a\x84\xb4\x67\x7d\xc6\x95\x5b\x85\x09\x1b\x7d\x79\xa4\x7f\xa9\x88\x10\xa4\x9f\x4f\x16\x99\xe9\xad\x4d\x38\xf9\xf3\xdb\xee\xf2\xad\x29\x84\x7b\x3c\x6a\xbb\x7d\xa7\xcc\x24\x18\xd6\xac\x8e\xce\x09\x76\x24\x78\xbd\xda\xe6\x95\xfb\xdc\x88\xd0\x52\x28\x66\x70\xb4\x52\x93\xe0\xe3\xb3\xcf\x65\x47\xfd\x56\x82\x67\xb0\xde\xaf\x87\x15\x95\x84\x93\x92\xca\xaf\x0d\x5b\xab\x08\x6b\x45\xaf\x7e\x74\xd2\x4a\x26\x70\x77\xbd\x50\xf3\x8c\xfb\xc2\x20\x4e\xd5\xe0\x30\x23\x2a\x49\x48\x15\x8c\x0c\xf0\x12\x99\x45\xf8\xb1\xd9\x46\x0c\x5f\x89\xa0\xb4\xc0\x64\x7e\xea\xe3\x42\xc2\x7b\xf1\xd4\x03\xdf\xaf\xac\x23\xf0\x36\x44\x3c\x3e\xa8\xeb\x48\x48\x9d\xed\xa4\xd8\xb5\x68\x3d\xe1\xd5\xe2\x03\x21\x96\x16\x2b\x09\x46\x0f\xf9\xee\xaa\xac\x15\x21\x90\x8e\x47\x8b\x63\x40\x0f\x03\xce\x77\x16\xb5\x77\x8f\xf3\xd3\x38\x9e\x9b\x2d\x3c\xaa\x15\xf0\xa2\x1c\xab\x63\xdc\xed\x9b\x9f\xc4\x12\x86\x67\x0b\x24\xd4\x4a\x64\xb0\xf0\x5b\xea\x5e\xee\xfc\xea\x9b\x2c\xf4\x35\xbc\xeb\xbd\x3e\xe4\x43\x28\xae\x7d\xf6\x2e\xd2\xd6\x82\xf0\x58\x89\x54\x22\x76\xae\x21\xb4\x5d\xb9\xb4\x39\xf1\x6d\x3f\x83\xea\x75\x81\x01\xf3\x17\xe7\xb2\x90\x35\x3c\xbc\x6b\xb3\xd8\x4c\xc2\xe3\xa0\x2f\xf7\x75\x4c\x35\x08\xa7\x17\x96\x3a\x9d\x38\xdb\x41\x28\xfe\x31\x3a\xaf\x5e\xec\x15\x21\x38\x51\x7a\xf1\x62\x85\x0e\x42\xfc\x4a\x41\xed\x84\x15\x8f\x08\xa5\x49\x37\xbd\xce\xa4\x5b\x12\xb6\xa0\x93\xf1\xe1\x90\x24\x38\x4c\x68\x74\xdd\x73\x33\x9f\x50\x69\xfc\xd6\xef\x1f\xe6\x9d\x1b\x8c\xf8\x87\x7b\xef\xf6\xf3\xfc\xc3\xa2\x9c\xfd\xd7\x7d\x0e\x0d\x33\x28\xe0\xf5\x1f\x76\x11\x5c\x41\xa8\xf7\x71\x5b\x3d\x79\xdb\x51\x16\x58\x7e\xd2\xbb\x67\x64\xc7\x11\x76\xa7\xff\x75\xcd\x90\xcf\x29\xc7\x7d\xde\xb5\x46\x25\xd7\xac\xe9\x3f\x60\x95\xe3\x92\xe7\xdc\x52\x5d\x0e\xbb\x0b\x7a\x29\xa6\xb1\x62\x84\xd6\x4d\x87\x77\xd8\x5b\x66\xff\x17\xbc\xa7\x7b\xae\xfd\x7f\x61\x54\xf1\x37\x72\xbb\xb7\x1d\x61\xcd\x01\xb7\xd9\xa7\x27\xa9\xb1\x95\xff\x81\xfe\x8a\xef\xac\x6e\x5b\x5e\x82\xad\x57\xf9\xf2\x89\xa3\xfb\x09\x96\x5e\xf5\x56\x36\x13\xb9\x08\x56\x49\x75\xfd\xc7\x3d\x97\x10\x72\xfa\x83\x7e\x74\x1c\xf6\x23\xf0\xdd\x16\xbb\xd5\x64\xe4\x4e\x88\x9b\x9d\x2e\x51\xd3\xbd\x8a\xb0\x52\xed\xb7\xbf\xd7\xb7\x24\xc2\xc4\x5b\x0f\x7f\xd9\xa9\x64\xb1\xf0\xdb\x9f\x55\xe4\xdf\xfc\xb8\x1c\x8d\x2f\xb6\x95\xce\xdd\x59\x4d\xff\x81\x42\x7b\xb5\xa6\xf5\xfd\x15\x6c\x65\xc1\xbd\xf6\xad\x5b\x15\x23\x09\xa2\xb2\xad\x55\x1d\x0e\x17\x08\xb5\x81\xb5\x56\xff\xca\xff\x86\xc2\x68\xcc\xdd\x93\xc1\xfd\x0c\x70\x78\xde\x3d\x9d\x4c\x2d\x02\xa3\x78\xf2\x48\x99\xf2\x5c\xc2\xd3\x1a\xa1\x7d\x37\xf2\xb3\x09\x34\x74\x46\x4a\x2e\xa2\x8e\x41\xf2\x89\xd1\xcc\xb6\xc8\x06\xc2\x11\x3f\x8e\xf3\x01\xaf\xaa\x09\x7f\x2c\xef\xdb\xa7\xf8\x55\xb3\x15\xd6\xd7\xde\xdc\x87\xc9\x2c\xc2\xfd\x5d\x65\x49\x2b\x3f\x55\x10\x9c\x56\x6c\x53\xfc\x57\x8a\x7f\xbf\x6b\xe1\x9f\x51\x49\xd0\xa5\x77\x3b\x87\x43\x2a\x09\x3c\x7a\x07\x53\x38\x24\xf6\xb0\x50\x7f\x7c\xde\x9f\x5d\x97\xca\x09\x53\x8f\x48\x5e\xcf\x77\x18\x60\x70\xfe\x89\x78\xd3\x17\xbb\x11\x06\xd6\xe9\x5d\xce\x4f\x6d\x38\x08\xfb\xec\x62\xa4\x6f\x38\x86\xb3\xb0\x24\xf3\xca\x61\xb5\x5b\x61\x04\xf5\xf5\x4e\x37\xa6\xdf\x33\x24\xd4\x79\x86\xac\xfd\xad\xbe\x89\xa0\xd0\x31\x53\xe3\xa5\xdf\x6f\x06\xde\x2e\x6a\xfb\x19\x9f\x0a\x16\x9c\x3f\x3e\x8e\x9e\xf0\xe1\x22\x61\xc1\x8b\xd9\x5b\x6c\x19\x17\x42\x46\x8b\xd0\xa9\xc9\x5e\x8b\x08\x7a\xea\x83\x97\x5d\x96\xe9\x10\x1a\x0f\x4d\x8e\x7c\x76\x78\x21\xc1\x72\x62\xb8\x8a\xe4\x5f\x7b\x82\xad\x6b\xd2\xda\x1a\xdd\xb1\x0f\x8e\xc0\x13\x22\xc6\xab\x27\x10\x4a\x6a\xb8\x5e\x36\xdc\xef\x62\xe0\x9b\xb3\xf3\x81\xc0\xd5\xe5\x84\xfe\x9a\x1a\xad\x6d\x0e\xd2\x84\x13\x9c\x6e\xef\x95\xc5\xe6\x12\x24\x58\x52\x0b\xb2\xca\xc5\x09\x61\x9c\x87\x06\xf8\xd2\xff\x32\x68\xca\x3a\x57\xae\x75\xdb\x8e\x70\xe5\x9e\xa6\x52\xf1\x7e\x55\x82\xf6\xc6\xc4\x67\x8a\x16\x56\x04\x96\xd2\xce\x7b\x66\xf9\x8b\x08\x79\x7a\x8a\x82\x97\xce\x17\xb0\x60\x36\x2f\xa4\xc6\xd5\x7c\x39\xe1\x4c\x9f\xc6\x4a\x93\xe5\x0b\x09\xce\x7f\xb5\xaf\xab\xea\xc8\x11\xf2\x1e\x87\x37\xdb\xb4\xc5\x95\x43\x65\x95\x46\xca\x12\x53\x43\xc2\x66\xd5\xfa\x8d\x17\x3d\xec\x09\xa2\x23\x3f\x2e\x53\xcd\x7c\x82\xf1\x8b\x8e\x90\x9e\x69\x53\x08\x22\xfb\x55\xdd\x9e\x39\xcc\x25\x04\xbc\xb1\x49\x2b\x7f\x37\x81\xe0\x2f\x17\xec\x65\x1e\x14\x42\x58\x94\xed\xf2\x47\x71\x95\x03\xe1\xc7\xbd\x3f\x81\x7b\x54\x39\x08\xab\xe4\x7d\xdf\xe4\x19\xcc\x25\x3c\xfa\xda\x24\x79\xa9\x3f\x8a\xa0\x3c\x7d\xb6\xb8\xad\x57\x37\x03\xc7\x57\xb6\x92\xc5\x0f\x85\x69\x1c\x67\x6e\xdc\x1b\xda\xa8\x7b\x87\x81\xb8\xcd\x42\xeb\xd2\x01\x16\x41\x4c\x53\x5e\x38\xb5\x67\xec\x57\x37\x30\x79\xe2\xfd\x7e\x4d\xc2\xb7\xf7\xe2\x87\x06\xb8\xd4\x09\x49\xab\x3e\xba\x5f\x5b\x6a\x44\x58\x9f\x74\xe1\x94\xf1\xaf\x2d\x84\xca\xee\x53\xc7\xae\x3d\x50\x21\x94\xff\xfc\xb2\xb1\xb5\xc6\x81\xf0\x65\x59\x7d\x2c\xab\xc3\x8c\x0d\x47\x2e\x0a\x0d\xff\x7e\x28\x49\x30\x6f\x76\x68\x49\xf8\xf4\x9d\x81\x6b\xc6\x47\x9d\x52\x13\x5e\x1a\x47\x74\x7e\x41\xb8\x5e\xcf\x0c\xc2\x27\xb9\x15\x39\x1e\x5b\x57\x13\x6e\xa9\x40\xde\x66\x99\x0d\x21\xd6\x58\x6f\xf9\xa7\x75\x13\x09\x62\xda\x9d\x01\xaf\x65\x74\x09\x1f\x2f\x2f\x0f\x7d\x5c\x72\x9e\x0d\x75\xd3\xb8\xd5\xf7\xe4\xb8\x12\xce\x7a\x16\xcf\xdb\x7e\xc0\x9e\xb0\x50\xf5\xfe\xbc\xfb\xaa\x47\x08\x2a\xf6\x1f\x39\x67\x99\xad\x26\x68\x58\xbe\xbe\xb3\xe9\x2c\x17\x21\x6e\x64\xcd\x85\x17\x5b\x3f\x33\xb0\x5c\xc4\x97\xd7\x5e\x6d\x41\x90\x5a\x72\x6f\xfe\xe0\x43\x75\x42\xea\xa2\x89\xd5\x01\x3e\x1f\x19\x64\xce\x11\xad\x0b\x17\x5c\x4a\xe0\x16\x88\x3c\x34\x71\x40\x8b\x60\x14\x37\xc4\xa3\xe9\x13\x41\x98\x1f\x7b\x32\xc2\x2c\x48\x97\xb0\x2f\x62\xc2\x07\x66\xd1\x1a\x82\x2f\xb7\x59\x44\xe8\x52\x7d\x42\x02\x57\xa8\x45\x63\xb2\x30\x21\x78\x56\x91\x95\xf2\x45\x29\xc2\x81\xbd\xf7\xf5\x93\xd3\xcd\x09\xdc\xf1\xe2\x47\x4e\xf5\x57\x11\xae\xad\x2c\x5d\x7e\xf9\x6b\x15\xe1\x5b\x53\x17\xb7\xd8\x9d\x62\x42\xe7\xe6\xbd\xfb\x4a\xfc\xd9\x47\xdf\xe5\xea\x86\x4c\x8a\x52\x08\x93\x8a\x85\x6e\xcd\xe7\x28\x21\x5c\x7d\x70\x7e\xf4\xec\x9f\x7a\xc2\x9b\xce\xcc\x9e\x53\xdf\x52\x09\xd7\xcc\xff\xb0\xce\xf4\x6a\x11\x42\x5f\xda\x0c\x05\xfb\x86\x97\x63\xfe\xde\x1f\xd9\x0a\x01\xc6\x84\x6e\xe5\x76\xf7\x0f\x67\x36\xd2\x78\x89\x4b\x8a\x0c\x7f\xc0\xa1\x48\x70\xbd\x15\x5f\x63\x31\x4f\x83\x10\x29\x73\x40\x42\x7f\x76\x11\x83\x2d\x3f\xd6\x2c\xfd\xb9\xc8\x98\xc6\xf1\xc0\xcd\x2d\xfc\xc8\x85\xd9\x84\xd0\xbf\xf6\xfc\x9b\x5e\xdc\x20\x6c\x14\x7c\x76\x55\x21\x66\x01\x21\x60\x57\xf0\xf3\x92\x58\x65\x36\x8c\x8a\xda\x25\x19\x47\xa9\x12\xb4\x56\x57\xeb\x71\x99\x68\xb1\x95\xff\xc1\x55\x83\xe4\x4f\x91\xf5\xfc\x6c\xc8\xb8\x9f\x99\xf7\xc7\x67\x0b\xe1\x5e\xa2\xb5\x6c\x5b\x9c\x0e\xa1\xe0\xe3\xe9\x59\x51\x75\x69\x84\xbc\xc2\x4c\x55\x1e\xe3\x09\x84\xc6\xcc\xf8\xb0\xf9\xdc\x77\x09\x52\x47\x5e\x0a\x08\xcf\xbf\x4b\xf0\xb5\xfc\x9c\xa0\x20\x9b\x4d\x90\x16\x9f\x7e\xd5\x61\x81\x07\x61\x96\x5b\x71\xc9\x97\x36\x61\xc2\xdf\xba\x03\x5c\x34\xf6\x72\x74\xdf\x3c\x9d\xf6\x6b\xec\xfd\xfa\xdf\x30\x34\x9a\x74\xca\xea\xe7\x0c\x42\x48\xe8\x81\x25\x0b\xc5\x6b\x08\xc9\xca\x4a\xa2\x49\x39\x9c\x84\xda\xdd\x03\xdb\xcb\x8b\x4c\x09\x97\x2f\x32\xe9\x6d\xd6\x2b\x08\x4f\xf6\x6f\x88\x2f\xf3\x57\x25\xc8\x6d\xb5\x7e\xc8\x27\x79\x9d\xc0\xdd\x20\x6f\x25\xf5\xf7\x20\xa1\xeb\xa6\x62\x6c\xc8\xd6\xf3\x84\x88\x26\xd9\xbc\x1a\xa7\x44\xc2\x7a\xb7\xb5\x35\x4e\xd7\x27\x10\x22\x6b\x34\xdc\x56\x36\xd8\x13\xf8\x5f\x7a\xce\x59\xd7\xe9\xc0\x56\xbe\x0a\xde\xfd\x7b\xab\x73\x1d\xc1\x68\xc5\x06\xad\xce\x0e\x45\xc2\xcd\x50\x9f\x1d\x2b\xc7\x9e\xf3\xae\xaf\xc5\x1b\xeb\x87\xb4\x68\x1c\x3b\x1a\x42\xfa\xa3\x56\x1a\xb1\x95\xff\x79\xf2\x87\x5e\x6d\x3b\xfe\xad\x65\x84\xc1\x92\xc0\x6d\x26\xbe\x0a\x06\x34\x8e\x6e\x75\xe7\xe9\x21\xce\xe2\x84\x68\xd1\xf0\x0f\xf1\x29\x26\x04\xfe\xfd\x07\x9e\x2b\x97\xae\x25\x24\x4c\x9a\xcc\xbc\x3b\xe3\x48\xa8\x70\xfc\xb1\xc8\xec\x72\x31\xa1\x39\x39\x6a\x74\xe1\xbb\x1c\x82\x73\x8e\xf7\xd5\xd5\x63\x45\x7f\xd5\xbb\xc0\x75\x35\xf7\x09\x2d\xcd\xa5\x91\xd7\xb7\x57\x12\x84\x13\x2f\xf3\xc5\xed\xaa\x22\x70\xdf\xfc\xdd\xf6\xaf\xa4\x0c\x74\x4e\x50\x2d\x60\x08\xdd\x82\xfd\xd6\x93\x7f\xfd\x60\xb0\xf6\xcf\x8e\xaf\x95\x65\x03\x0c\xa6\x47\xba\x59\x9d\xcd\xb8\x45\xe3\xc8\x67\x75\xf1\x79\x28\x76\x10\x96\x3f\x12\xe4\x3b\x37\x56\x64\xac\x25\x34\x39\xa6\x3b\xff\x17\xe4\x0b\x4f\xa6\x3e\xcd\xd4\x66\x2b\x27\x72\xfd\x62\xef\x69\x47\x11\xd4\xf4\xfc\x83\x5c\x64\xa3\x08\x09\x09\x7d\x3b\xd4\xc2\x1f\x13\x74\xed\x5b\xd6\xfe\x43\x98\x71\x55\xee\x97\x97\xef\x08\x65\x52\xe5\x12\x7a\x5c\x0f\x09\x7b\x1a\x66\xac\x52\x1e\x1b\xa9\x04\x1f\x57\x19\x6d\xcd\x20\x7c\xe7\x12\x51\x8a\x31\xbc\xc6\x56\x84\x5d\x16\xf4\x45\xbd\xc9\x20\x5c\x4b\xad\xfd\x25\xd7\x7b\x8e\x90\xbb\x9b\x69\x1e\x7e\x3c\x8d\x50\xac\x23\xde\xfe\xc3\x54\x8e\xd0\x63\x96\xfc\xd4\xff\xf9\x3a\x42\xe5\xbd\xed\x5b\x47\xf4\xd5\x08\xe1\x1c\x4b\x72\x7c\x19\x77\x42\x86\xfb\x95\x24\x8e\x72\x6e\x02\x73\x21\x50\x5f\x31\x44\x87\x20\x87\x17\xf7\xdc\x8a\x2b\x08\xab\xae\xbf\x65\xa5\x5d\x11\x61\x03\xe7\x8d\xe9\x2f\xe4\x0e\xbe\x65\xc6\x71\xd0\x43\x55\xa7\x39\xc5\x94\xc6\xe1\x54\xe0\x74\x6c\xd4\xf6\x03\x33\x8e\x5d\x2b\x16\x4f\xaf\x9d\xc1\x41\x48\x4a\x74\x6c\x4e\x57\x5f\x48\x70\xef\x2f\x7f\xcd\xfd\xa6\x9b\x81\x42\x47\xe3\x22\xdb\x59\x82\x34\x8e\xa2\x75\xb7\x58\xee\xe7\x27\x12\xba\xc4\xee\x1e\xfb\xb9\xf6\x04\xa1\x79\x6f\xcb\xa8\xc9\x94\xdd\x84\x2f\x8f\x92\x56\xd5\x29\x5e\x63\xe1\xdc\xec\x3b\x8e\xc1\xe2\x37\x08\x4e\x2d\xcf\x27\x72\xf7\xa7\xb3\x21\xef\xc0\x87\x97\x53\x7a\x33\x08\x62\xd5\x55\xf9\xfd\xed\xd6\x04\xc3\xe8\x91\x6f\x8e\x8f\xcf\xb2\xe0\x6a\x22\xfe\xf6\xfd\xd1\x20\xc2\xd3\x56\x97\x59\xab\x9a\xec\x08\xe5\xbb\xf7\xe4\x06\xfb\x6a\x13\xdc\x96\xbc\xb5\x3e\x28\x9b\x49\x90\xe3\xab\xbb\xce\x38\x72\xb1\xe1\x54\xd1\xf6\x00\x5b\xb1\x4b\x6c\x10\x58\xbd\xe4\x6a\x5c\x4a\x08\xa1\x46\xf8\x77\x86\xe0\x8d\x13\x84\x8a\x4e\xe2\xb0\x8e\x1a\x7b\x4f\xd3\x27\xf1\xb9\x7f\x1f\x66\x50\x7f\xa6\x3e\xbd\x69\xae\x24\x61\x15\xab\xed\x6a\xcb\x9c\x20\x16\x56\xf0\xdf\x9f\x28\x34\x9a\x42\x08\x7d\x9c\xe3\xe4\xeb\x9f\x4b\xd8\xbc\x60\x60\x43\x2f\xef\x55\x82\x6e\x92\x17\x25\xdc\x61\x08\xbe\x7b\x3a\xb4\xbf\x46\x24\x12\xd0\x79\xa4\xf2\x6c\x78\x29\xe1\xa9\xf5\xc7\xf9\xdf\xa6\x37\x10\xac\x65\xf7\xfe\x3e\x1a\x6f\x4b\xe8\xbc\xbe\x35\x7e\xd1\xf7\xed\x2c\xb8\x3b\x0f\xa7\xf3\xa7\x07\xb2\x8d\x86\x6e\xbf\xa2\xdb\x0f\xd4\x09\xb1\xd6\x87\x77\x4e\x4a\x30\x22\x04\xcb\x25\x95\x4e\xed\x34\x24\x98\x0f\x8d\x48\xcf\x9f\xbb\x86\x60\x11\x58\xa3\xea\x9e\xc0\xcd\x86\x5f\x82\x6a\x3e\x82\xee\x9f\x19\x78\xbb\xb6\x24\x4c\xa8\x50\x24\x1c\x33\xb0\xe9\x2f\xf8\x28\x49\x38\xe8\x75\xe3\x80\xd9\x94\x89\x84\xfd\x65\xeb\x03\x17\x18\xcd\x21\x3c\x3b\xe3\x16\xb0\xff\x0e\x17\x61\x5e\xd0\x31\x09\x93\xeb\xa7\x08\x15\x9c\x01\xc2\xc7\x14\x0f\x11\x9a\xe3\x3f\x16\x19\xae\x2d\x20\x54\xf1\xa5\x56\xee\x7d\x7e\x9b\x85\x05\x15\x5d\x5e\x1b\xbb\x6c\x08\x81\xc6\x71\x6b\xf6\x4b\x2b\x13\xce\x7f\x39\x6a\xe2\xeb\x2f\x4c\x98\x34\x18\x77\xdc\xe2\xa3\x0f\xa1\xea\xd9\x8d\x34\x63\x1f\x27\xc2\x7d\x56\x41\x27\xf7\xd3\xb3\x04\xc7\x46\xdf\xae\x70\x75\x0d\x02\xb7\xef\xa6\x9f\x8d\x73\x26\x10\x74\x87\x52\xfb\x33\x3d\x19\x82\x10\x39\xf0\xdc\xff\xf1\x9b\x41\xf9\xcc\xd5\xb5\xee\xda\x46\x04\xc3\xe3\x96\x32\x86\x07\x1b\x08\x4b\x38\x97\x44\xad\xdf\x2e\x41\x58\x2d\x7a\x60\xcd\x77\xa7\x48\x02\xff\x95\x1f\x67\x36\x44\x5f\x65\xa1\x1d\xd5\x03\xea\x55\x3a\x34\x8e\xfe\x29\xf6\x03\x0e\x1e\x6d\xe5\xbf\x3c\xd2\x7e\x0d\xe8\xfa\x10\xb4\xaa\xde\xe9\xdc\x2f\x51\x24\x44\x08\x86\xb5\x3b\xc8\x39\xb3\x70\x43\xc5\x6e\x50\xd7\x6b\x1e\x21\xf6\x43\xf2\xa3\xf9\xe2\x9c\x04\x87\xdf\x8d\x95\x0b\x54\x55\x08\x32\xc2\xdf\x6e\xb7\x1f\x1c\x62\xa0\xf8\x4e\xa2\x79\xee\xd0\x5c\x82\xd1\xd2\xc2\x3e\x61\x7d\x69\xc2\x41\xfd\x6b\x93\x59\xb7\x27\x12\x66\xf0\xff\x11\x78\xf4\x67\x3a\x61\x85\x6e\x74\x78\x41\xff\x10\x83\xb9\x96\xb7\xeb\x3e\x04\xce\x20\xd4\x3a\xf4\x36\x79\xbd\x16\x26\x98\x44\x4c\xe9\xb7\xce\x99\x4f\x38\xf0\xde\xf1\xc3\x85\xd3\xae\x84\x0b\x32\xae\xd5\xa1\xfc\x2f\x08\x5a\xc3\xcd\x07\x0b\xa4\x76\x10\xe6\x0a\x6b\x44\x8d\x34\x45\x10\x0e\x28\x9f\x7b\xbe\xfa\x46\x04\x61\x2a\xf7\x96\x8e\xb9\x52\xa1\x04\x29\x99\x37\x49\x66\x93\x2a\x09\xfc\xe5\xd9\xb6\xa6\x8a\xeb\x08\x1e\x09\xf6\xa3\xc1\xc5\x82\x84\xf9\xc6\x87\xd2\xcb\x8f\xb5\x30\x48\x9a\xb0\x5c\xd8\x9e\xd3\x83\xd0\xba\xfd\xbd\xb0\x82\xb1\x16\xa1\xb7\x4c\xb6\x82\xf7\x70\x0e\x61\xa7\xbc\xa3\x57\xde\xeb\x42\x82\xed\xb7\x09\x47\xe0\x71\x8e\x90\x69\x69\xcd\xd5\x26\xee\x43\xd0\x3f\x15\x9c\x28\xbf\xb6\x88\xa0\x21\xfd\xa3\xa1\x42\xff\x15\x81\xcb\xe1\xea\x9a\x95\x7c\x6f\x08\x2f\x4c\xf3\x7e\x06\x85\x2f\x24\x98\xd7\xf0\x3c\xda\xd7\xd5\xca\xc2\x87\xf4\x5b\x4b\xb7\x54\x96\xb2\xe0\x61\xfa\x2b\x72\xda\xf9\x6e\x42\xb0\x45\xfd\x9e\x7b\x51\x3f\x09\x7b\x6c\xa7\x18\xf6\xb7\xd4\x10\xd4\x47\x84\x9a\x9e\x8d\xbc\x64\xa0\xdd\x26\x99\x63\xaf\xf6\x8e\x0d\xd5\xbc\xaf\x72\x7a\xb6\x89\x12\x7e\xb0\xd6\x2f\xd9\xf5\x7e\x1e\xe1\x97\xd0\x1d\xde\x5b\xb3\xee\x12\xee\xfb\x8b\x79\xc8\xbf\x4e\x24\x3c\x1f\xd2\xe6\x3b\xa9\x31\x40\x30\x8b\xef\xda\x54\xed\xd2\x40\x78\x57\xf3\xa9\x70\xb9\xd1\x20\xe1\x81\x87\xf3\x8a\xc2\xb1\xeb\x63\x31\xdf\xa6\xfc\x8c\x72\x1b\x42\x64\x37\xe7\x60\xc3\x31\x6b\x42\x6d\x62\xe0\x29\xf3\xfc\x05\x04\xc3\xe4\x6d\xb3\x2a\xaa\xeb\x09\x2d\x13\xc2\xff\x28\xee\x34\x20\x38\x4d\xd5\x13\x5a\x69\x33\x95\xd0\xbd\xe6\xb7\xc6\xbb\x1b\x60\xd0\x55\xe0\x75\xcd\xba\x50\x88\xad\xb8\xbb\xf2\xf4\x5d\x7e\xb8\x81\x20\x57\xda\xf0\x61\x46\xe2\x26\x1a\x2f\xd6\x95\xeb\xb8\x07\x0c\x0a\xcb\xe1\x31\x18\x1b\xd3\x11\x24\x41\xb8\xf2\xcd\x51\x88\x77\x37\x37\xc1\x66\xdb\x89\xca\x84\x97\x4f\x09\x6a\x6a\xf5\xf2\x97\xae\xbd\x20\x3c\xdc\xd1\x69\xbf\xa1\x43\x9a\xa0\xc0\xc5\x2d\x26\xd6\xcc\x43\xe8\xf7\xcc\x1e\xbc\x6a\xe8\x4c\x28\xb8\x1f\x35\x54\xb3\x46\x99\x80\xf4\x84\x92\x03\x6e\x66\x84\x97\x17\x6e\x3f\x4a\x30\xf5\x20\xac\x76\x35\xeb\xec\xb5\x9e\x44\x48\x73\x2d\x7d\x71\x6d\x77\x3f\x83\x9b\xe9\x92\x1e\x87\x73\xf4\x68\x1c\xfe\x91\x6e\x7b\x08\x2f\x19\x6c\xd0\xd0\xda\xd2\xd5\xa9\x49\xe0\x7e\xef\x64\x98\x68\xce\x49\x58\xe0\x99\xe6\xc0\x27\x67\x4b\xf8\x36\xe3\xa4\xcf\xca\x13\x56\x84\xa0\xd3\x06\x1c\xeb\xdc\x52\x59\xe8\x9d\x75\xc1\x39\xc5\x7a\x35\x41\x6b\x99\x95\xe2\x1b\x4d\x5d\xc2\xa3\x7a\xee\x13\xb1\x2a\x85\x84\x7b\xce\xad\xe7\x6f\x25\x65\x12\x8e\x99\xf6\xc5\xd5\xb7\x98\x12\x02\xff\x3e\xbc\x75\xef\xc5\x79\xc2\xa1\x55\xab\xee\xcf\xea\xaf\x25\xe8\xdd\xde\x94\xa9\x5a\x53\x4d\xa8\x50\xfc\x59\x62\x9a\x2a\x41\xb8\x3a\xb1\x53\xff\xa5\x6d\x11\x41\x2f\x30\xe4\x8f\xf0\xa3\x2b\x84\x5e\x8e\x9f\xdd\x7d\x7d\x13\x08\x11\x8a\x86\xfd\x6a\x0e\xda\x6c\x88\x31\x30\x1b\x5d\x72\xe2\x55\x39\x1c\x87\xc3\x42\x4f\x0d\xe6\xb0\xb0\x75\xd5\x54\x09\xa6\xc9\x85\x70\x71\xbf\xc8\x6e\x57\x1a\x64\xb0\x4d\x42\xb3\x51\xfa\x44\x0e\x21\xb0\xfa\xec\xbd\x29\x71\x27\x09\x96\x02\x66\xa3\xfc\xbd\xdd\x04\xee\x1d\x3d\x11\x6f\x22\x9a\x08\x37\x8b\x8d\x2e\x08\x0d\xbd\x24\x0c\x47\x7b\x47\x0b\x8c\x61\xd3\xab\x99\xe7\xa6\x8e\xc1\xd7\x64\x4f\xe5\xbf\x91\x47\xd3\x57\xc7\xc4\x17\xc5\x84\xb8\x0b\xcd\xd1\x2e\xa3\x21\xf4\x6b\xd2\x77\x07\xbd\x47\x49\x84\x1d\x85\xc6\x41\xf9\x1a\x79\x84\x49\xe7\xdb\xfb\x15\xf2\x62\x09\x6d\x65\x13\x26\x1f\x0f\x93\x24\x0c\xce\x17\xf2\xb5\xf6\xed\x61\x7e\x6d\xac\x6d\xe3\x9d\x56\x45\x88\x39\xbd\x4b\x25\xec\xfc\x0a\xc2\xed\x1e\x81\x02\xeb\x1b\x7b\xd9\xb0\xfe\x65\xf2\x7c\xee\x9c\xf5\x84\xd7\xd1\xf2\x8f\x22\x74\x96\x13\x5c\x4f\xec\x0e\xee\x31\x5b\x46\xf8\x10\x2b\xa1\x9f\xa6\x3b\x9d\xe0\x6c\x72\xf0\x79\xd3\x5d\x3b\x82\xca\xfe\x8b\x49\x9b\xad\x2e\x13\xa2\x0e\xda\x3e\xb2\xd8\xd5\xce\x20\xbb\x79\x57\xb6\xcc\x90\x0b\x8d\x63\xe3\x42\x05\xd9\x13\x19\x37\xcb\xb1\x5b\x6e\x4b\x7f\xde\x06\x5b\x42\x37\xa7\xd2\xbc\x53\x2e\x32\x84\x0e\x0b\x95\xc3\x87\xe5\x5e\x33\x78\xb5\x56\x13\x6e\x0b\xef\x11\x0e\x0f\x9f\xb7\x8b\x4a\x59\x47\x98\x6c\xaa\x23\x38\x54\x5a\x49\x98\x51\xbb\xee\xfd\xef\xb7\x0f\x09\x45\x12\xcf\xed\xff\xe1\xe3\xf7\xa3\x65\x18\xc3\xb3\xd6\x9d\x5f\x3c\x53\x2f\x10\x32\x26\xec\x3b\xe5\x5b\xe9\x41\xf0\xd5\x10\x3c\x5b\xbd\x21\x8c\x90\xf7\xa5\x48\xde\xca\xf1\x08\x61\x79\xb5\x71\xfa\x13\xf1\x43\x04\xe5\xa3\x97\x2e\x2d\x9c\x19\x4e\xb0\x11\xed\x11\xe3\x2e\xb5\x1f\x5b\x18\x67\xc4\xe5\x05\xb6\x13\x0a\x6e\x99\xbb\x27\x8d\x41\x94\x2b\xe4\xd3\xf1\xf4\x07\x84\x1f\x5b\x0e\x5c\x6f\xdf\x3e\x8d\xf0\xb8\xbc\xff\x5b\x68\xa9\x17\x61\xc5\xc3\x6e\xde\xb6\xa4\x72\x42\xfc\xc7\x69\x3e\x9d\xfa\x3d\x84\x03\x54\xf6\xe2\xf9\x58\xf9\x1f\x18\xd4\x58\x27\xd0\x5b\x11\x82\xcb\x87\x87\x19\x97\x04\xe3\x08\x3e\x51\xf9\x2a\xa1\x67\x72\x58\x68\xef\xcc\x94\x2b\x99\xe3\x4e\x38\xaa\x7f\x32\x37\x2c\xec\x28\x41\xa6\x7d\xe4\xaa\x77\xa9\x22\xe1\xd3\x0b\xce\xf0\x9e\xf0\x79\x84\xc3\xe9\xa3\x7e\x59\x3b\x83\x58\x48\x89\x28\x2b\xe2\xf7\x5e\x45\x98\xfd\xfd\x78\x68\x45\x96\x30\xa1\xe4\xa0\xbe\x07\xc7\x96\xdb\x04\xcf\xe8\xe8\xb5\xdf\x46\x97\x10\x3e\x71\xdc\xba\xc2\x35\x92\x4c\x30\xde\x36\xfd\x87\x67\xc3\x7b\x06\x2f\x66\x70\xe5\x96\x5a\xca\x10\x74\x06\x07\x86\xea\x4d\xa6\x13\x74\xf2\x83\x85\x32\x5e\x2c\x23\xdc\x8c\x7b\x28\x11\x10\xb2\x94\xb0\x26\x61\x6d\xf5\x03\x5e\x2b\x82\xdf\x75\x05\xa3\x39\x8d\x73\x09\xb1\x73\xbc\x8e\xb4\x9a\x4c\x22\x4c\xb1\xfb\xe9\xb8\x3e\x51\x91\x50\x71\xf9\x41\xa9\x94\x8a\x18\xe1\xac\x3a\xcf\xf3\xdf\xfd\xfc\x84\xe1\x17\xdd\x61\xc3\x17\xff\x30\x78\x7a\x9e\xd7\xe4\xf0\x61\x1b\xc2\x67\x8b\x27\x99\xc1\x4b\xf7\xb1\x50\x6f\xfe\xf8\xc3\x83\x7c\x69\x02\xf7\xfe\xbf\x22\x0a\x02\xbc\x04\x49\xeb\xd2\xc6\x53\xad\x44\x38\x5b\x90\x1b\xa0\x3c\x76\x34\xb5\x2d\xf0\xd9\xa7\xa7\x5b\x4a\xc8\x6a\x38\x3f\x98\x1d\x51\x46\xa8\x9e\x77\xc2\xf2\xdf\xe8\x9b\xbb\xac\xff\x1b\x3f\xd1\xb1\x1d\xf0\xb7\xbe\x86\x87\x15\x21\x8c\xab\xe1\xf8\xb5\xe8\xf5\x84\xb4\x81\x2e\xdf\xd7\x16\x6d\x0c\x3a\x27\xdc\x2b\x9c\x68\x76\x94\xb0\xc7\xd4\xbb\x34\x54\xe9\x1e\x0b\x6b\x84\x0e\xf1\xad\xaa\xb0\x23\x48\x1c\x8b\xe5\xbe\x29\xf7\x93\xc1\x56\xf3\x46\x93\xc5\x33\x82\x59\x18\xae\x2a\xf0\xd4\x54\x78\xcd\xa0\xda\x6d\x81\x60\xfc\xd8\xab\x48\x9e\x30\x1a\x62\x1a\xe5\xc4\x86\xb2\xb6\xaa\x3a\x33\xd7\x47\x0c\x36\xd8\xdd\x76\xd7\x3c\x5a\x46\x28\xfd\xbc\x61\xfb\x7b\xce\x1b\x84\x77\x02\x4d\x9b\xdb\x62\x6b\x18\xf0\x70\xbe\xb9\x58\x9f\xc0\x47\xe3\x78\xd4\xf0\xa9\xec\x40\x44\x0b\x83\xf4\x0a\x5e\xc5\xeb\x7f\x36\x11\x3e\x72\x3e\xbb\x52\xcc\x69\x43\xe0\x72\x7a\xc2\xff\x29\xc7\x8d\x70\x35\xfa\x38\xaf\x51\xcf\x06\x02\xb7\xf8\xfe\xf8\x8b\x4b\xb5\x09\xd9\xe7\xbf\x7c\x14\x0d\x11\x21\x6c\x37\x3f\x97\x3c\xe5\x85\x10\xe1\xd5\x6f\xc3\x80\xaa\x5f\xb2\x84\xba\x95\x59\x92\xfa\x25\xa2\x84\xa2\xf3\x12\xb4\x48\xc5\x8e\xc0\xbb\xf6\xd3\xde\xd3\xdb\xd6\x10\xaa\x17\x5d\x1b\x7a\xf9\x70\x33\x1b\x76\x09\x5a\xee\xf3\x5b\xc6\x4d\x48\x7c\x2e\xa0\x65\x30\x18\x42\xb8\xf9\x63\x45\xaf\x90\x9b\x02\xa1\xa2\x5b\x6c\x5f\x40\x77\x18\x21\xf5\x53\x4a\xff\xdd\xf5\xf3\x08\x8c\xbd\xa9\xd3\xf0\xdd\xbd\x84\x47\xed\x45\xe6\x3f\x52\xfe\x32\xd0\x4d\xbd\x98\x59\x5f\xa6\x40\x50\x50\x7a\x13\x7a\x7e\x4e\x0c\x61\x7e\x67\x5a\xdf\xf3\xb9\xf3\x08\xa7\x7b\x93\x9f\xf4\x69\x48\x13\xec\xf9\x4d\xf8\xd6\x97\xb6\x10\x74\xa7\x3d\x59\xaf\x31\x70\x86\xf0\x6e\xed\x17\x9b\x56\xfb\x4a\x16\x2e\x84\x9d\x31\x0e\x58\xff\x8c\x81\xc9\x16\xa7\xbe\x20\x69\x3b\x82\xcd\x96\x09\x17\x0b\xba\x45\x08\x5b\xb5\xd3\x79\xb6\x6e\xdc\x4a\xd8\x26\xe9\xba\xf7\xba\xdf\x65\xfa\x55\xbc\x42\x52\xf9\x80\x0c\xe1\xe1\x13\xbb\xfb\x32\x75\xa6\x04\x43\x95\x52\x63\xa7\xcc\x22\x82\x71\xa1\xc3\xb6\x1b\x11\x8f\x09\xfe\x89\x11\x12\xff\x0a\x47\x9d\xfe\xab\xab\x5f\xae\x13\x94\xbb\xd2\x04\x06\x4e\xa7\x11\x5e\x9e\xb2\x60\xb9\xc4\x38\x11\x7e\xae\xcb\xdf\xb7\x5c\x4c\x8b\x85\x2d\xba\x1f\x2a\x4e\x5a\x38\xb1\x8d\x8e\x35\x25\xc9\x8e\x9c\x16\x27\xac\xf8\xfb\x58\xc7\x40\xb6\x90\x50\x61\xc3\xda\x5c\xf5\xb7\x85\x85\x84\xbe\xf8\x48\x47\x8b\x42\x42\xa4\xad\x8b\x49\xe9\xba\x74\xc2\x8a\x23\x76\xe5\x02\xe9\x39\x84\xf3\x0d\x7c\x4f\x1d\xfc\xeb\x08\x9b\xf8\x43\x78\x2b\x0e\xd6\x11\xac\xe4\xf8\x7a\x1c\xc7\xca\xce\xcc\x0f\x3d\xc5\x33\x5c\x08\x13\x05\xf2\x65\xa7\xc2\x99\xb0\x51\x6d\xad\xfa\xbc\xfe\x50\x42\xf0\xfb\xf7\x1b\x3b\x2e\x59\x10\xa6\x3a\x2e\x96\x73\xab\x3f\x4f\x98\xe8\x6e\x7f\xbf\xe8\x78\x39\x61\xbd\xcb\x48\x56\x40\xd4\x71\xc2\xfc\x94\x5d\x52\x69\x4e\x9b\x58\x38\xb7\x68\xe9\x97\xc7\x52\x47\x09\x0f\x1d\x2c\xfd\x77\xaa\x6e\x26\xac\x31\x2e\x8c\x38\xc2\xc7\x4f\x10\xc8\x38\x3b\x11\xef\xd2\x08\x43\xf2\x3e\xe1\x8a\x46\xfa\x84\x5f\xf6\xc2\x33\xc3\x4c\x04\x09\xb9\xcb\xf2\x8d\xce\x73\x73\x11\xf8\xbe\x1a\x7b\x5f\x8b\xcf\x21\x4c\x76\x7d\x7f\xa5\x72\x61\x15\xa1\xb5\x93\xb9\x27\x78\x2b\x87\xe0\x3d\xbd\x67\x93\xf5\xd3\x67\xac\xf1\xd1\xfe\xf9\x59\x42\x77\xe4\x1d\x08\x8b\x4e\x9c\xde\x1a\xca\x6b\x42\x70\xcd\x3a\x33\xaf\xf5\xe1\x36\x42\xd1\xda\xd9\x97\x87\x55\xb5\xd8\x1e\xf3\x22\x5d\x50\xe8\x8e\x2d\x2f\x41\x5d\xcd\x72\xf8\x9b\xfd\x34\x42\x7d\x6b\x68\xc3\xed\xa3\x95\x04\x85\xb9\x9d\x35\x87\x16\xbf\x27\x18\x85\x1d\x1d\x28\x1c\x2b\xcd\x0d\x47\x96\x49\xae\xd5\x20\x58\xfe\xfb\x67\x4d\x0e\xc2\xca\x2c\xe5\xac\xa2\xb5\xb7\x08\x56\xed\x16\x12\x0a\x6a\xd2\x84\x5f\x8b\xb4\xc2\xe2\x5d\xa6\xb1\x41\xe6\x51\x4e\x78\xe2\x1b\x19\x36\xa8\x29\xae\x39\xfb\xa5\xb9\x99\x41\xf5\xd2\xc4\xb8\xe1\xd7\x53\x08\xa6\x7f\x14\x9b\xe7\x8e\x3c\x24\xa4\x1c\x0c\xad\x2e\x6a\x7a\x4b\x68\x89\x10\xf8\xe9\xc2\xf7\x88\xf0\x71\xb2\xd9\xec\xb4\x19\x77\x08\x07\x85\xf9\x32\xa7\x27\x6e\x67\x83\xcc\x77\x35\x4b\xad\x90\x35\x84\x43\xad\x6d\x77\x23\x03\xb3\x08\xc5\xe2\xc9\x37\x42\x62\x6f\x10\x3c\xcf\x69\x6c\xf2\xf8\x95\x49\xd0\x3c\x29\x20\x66\x68\x96\x46\x30\xdf\x63\x19\xbe\x45\x33\x87\x0d\x6e\x9f\x7b\x4b\x19\xf1\x1c\x42\xf2\x99\x80\xc8\x19\x3a\xe5\x84\x73\x33\xac\xfc\xdd\xc7\x46\x02\x95\x23\xf3\x73\x4c\x53\x08\x4d\xf9\xe1\x8d\xff\x3f\x98\xcc\x17\xa4\xfd\xc0\x57\x9c\x70\x51\xa6\x75\x5b\xd7\xfa\xd3\x84\x11\x8f\x2f\x3f\x38\x0e\x6a\x10\x0e\x3a\xc7\x58\xf2\x94\xe8\x10\x72\x5f\x3b\xba\x9f\xbe\xb8\x82\x85\xb2\x54\x37\xf5\xd2\x75\x0b\x08\x2f\x2e\xff\x38\x36\x7b\x36\x17\x41\xc2\x96\x23\xf5\x47\x0b\x43\x18\x5a\x66\x1d\xba\x69\x85\x3a\x61\x97\x41\xec\x48\x98\x04\x1f\xa1\x9a\xb5\xff\xcb\xa8\xfc\x1b\x06\x2a\x67\xba\x67\xed\x77\xec\x24\xd4\x8b\xbf\x8b\x0b\x5e\xde\x43\xb8\x36\x71\xf8\x62\xba\xe4\x6b\x82\x78\x9c\xc6\xba\x9e\xd5\x0d\x84\x85\xa7\x87\x06\xc3\x5c\x1f\x13\xaa\x9a\x67\xae\x08\x8f\x8a\x26\xac\x8b\xb9\xc0\x94\x84\x4d\x25\x2c\x7c\x61\x1e\x3b\xd4\xe2\x41\xd8\x67\x61\x36\x12\xa0\xb4\x95\x50\x7e\x56\x5b\xe8\xd4\x69\x59\x82\xef\xbe\xc9\x73\x55\x82\xcc\x09\xf7\x62\x6d\x73\x36\x88\x5b\xb2\xe1\x5c\x9f\x53\x75\xa2\xd8\x4f\x06\x1a\x29\xc3\xc1\x2a\x62\x9c\x04\x47\x46\x28\xf5\xa5\x5f\x2e\x01\x83\xbf\xce\xfe\xc3\xdc\x69\xb3\x54\x9f\x66\xdd\x67\xa1\x8b\x87\x75\x64\x99\x50\x06\xa1\x2a\x54\xae\xec\xdf\x68\x73\xc2\xa7\xb5\x5f\xee\x7a\xfc\x17\xf6\xa9\x5f\x3d\x91\xaf\xef\xc8\x56\x64\x38\x65\x6f\x6c\xe9\x0f\xf8\x2f\x50\xcc\xd3\x57\x8b\x0f\x4d\x25\xbc\x9a\xaa\x6f\x51\x76\x56\x9b\x85\x89\x3b\x6f\x86\xdc\xbd\x52\x48\x78\xb8\xab\xfd\x6d\x77\xcc\x71\xc2\xf7\x17\x21\x4b\x13\x14\x62\x58\x80\x51\x86\x87\x7e\x19\x18\x2c\x97\x5b\x93\xb3\x65\xf7\x76\x42\xe4\x63\x56\x7a\x80\xda\x26\xc2\x8f\x03\x19\x85\x85\xb5\x6a\x84\xac\x53\xc1\x7e\x37\x8b\x16\x12\x4e\x2b\x3d\x90\x4a\x95\x33\x22\x68\xd4\x58\xed\x7b\xb3\xd0\x80\x70\x4f\xdd\x8f\x34\x5e\x8b\x12\x52\xd2\xbc\x0c\x9d\x9f\xab\x13\xe6\x5f\x3c\xff\x22\xfe\xa7\x3c\x41\x3e\xa2\x8e\x93\xe3\x31\x11\x4e\x3c\xee\x1b\xf5\xb1\x12\x23\x1c\x58\xac\x50\x25\x11\x29\x42\xd0\x6b\x35\x72\xbe\x29\x79\x89\x85\xb5\x03\x12\x8b\x6f\x5f\x6f\x20\xd8\x8e\x7a\x5d\xe9\x70\xf4\x20\x6c\x79\x10\x67\x91\xba\x5b\x90\x50\xe5\x72\xdc\x92\xc7\x8a\x87\x60\x2d\x95\x52\x69\x54\x3c\x99\xe0\x39\xfa\xcd\x41\xf9\x6d\x25\x83\x27\x1d\x9e\x2c\xae\x99\x63\xd7\x60\xdc\x9e\xcf\x4e\xba\x26\x04\x45\xb3\x2d\xdf\xde\xe6\xaa\x13\xb2\x87\xf3\xfb\x57\x64\x8d\x30\x38\x28\xd6\x20\x1e\x13\xf4\x80\xb0\xf7\x7d\xb3\xc8\xf3\xf7\x4f\x08\xaf\x92\xf8\x32\xa6\x8f\xd6\x11\x3e\x76\xd4\x2d\x97\x34\x8f\x26\xb8\xf3\xac\xd4\x69\xfc\xd2\xc8\x42\x6a\x99\xc4\x51\x87\x9b\x05\x84\x49\x57\x9f\xd6\xef\x9c\x3b\x48\x58\xd7\xf6\xa3\x57\x21\x6b\x94\xa0\x72\xe3\xf8\x60\x91\x41\x22\x0b\xe7\xfa\x4b\xdc\x1c\x44\x84\x09\x8f\x9e\xc6\xfc\x92\x0f\x4a\x26\x5c\x6f\x08\xce\x4b\x52\x94\x24\xa8\xeb\xdc\xdc\xb1\xe5\xda\x2b\x06\x4b\x63\x9b\x0d\xcd\x8c\x36\x10\xa4\x7e\x8f\xf0\x2a\xfb\x9b\x10\x84\x8e\x5e\x7e\xed\x59\x1e\x4c\xf8\x56\x59\xa9\x79\x37\x28\x83\xf0\xa1\xec\x6a\xf8\x94\x13\x0e\x04\xee\x47\xc2\x4a\x7b\x78\x6d\x08\x3f\x16\xa6\x9e\x7d\x36\x3c\x83\x0d\x8d\xbf\x26\x7d\x2a\x10\x5a\x42\x90\x9b\xba\xf4\x6f\xd5\x19\x75\x36\x48\x78\x6c\xbf\xbb\xe2\x2d\x2f\x61\x60\xd9\x70\xb7\x91\x06\x2f\x21\x95\x26\x95\x55\x6c\x17\x25\xe4\xea\x9d\x4b\x0a\x7e\xe3\x45\x78\x3a\xe2\x96\x54\xac\xa8\x4a\xd8\x17\xdc\xde\x6f\x52\x2c\x4e\xe8\x9e\x7e\x73\x89\x76\xcd\x37\x06\x3a\xc9\x3a\x9b\xfc\xc2\x12\x59\xb8\x76\x55\xee\x34\xd7\xc7\xf9\x04\xad\x1a\xc1\x16\xf1\xbf\xb2\x6c\x88\xb9\x25\x70\x32\xc6\x52\x97\xa0\x55\x39\x93\x6f\x7e\xb8\x34\x1b\xd4\xbf\xf1\xaf\x7f\xb0\x9b\x83\xf0\x27\x85\xf7\xd8\x60\xb5\x04\x61\x7e\x74\xfc\x14\x7e\xd7\x50\x82\xc6\xe6\x07\x77\x3a\x76\xdd\x63\xd0\xde\x9e\xfa\xd6\x51\x64\x0f\x8d\x63\x78\x89\x78\xae\x7d\xd0\xbd\x72\xe8\x2b\x86\x68\xbd\xb8\xca\x22\x70\xed\xf2\x68\x9d\xfa\xe3\x3b\xe1\xd8\xe1\x95\x3c\x92\x4c\x0f\x21\x6f\xa6\x67\x98\xcb\x9f\x54\x42\xb0\x50\xa9\x6a\xb5\x4b\x2c\xe1\x50\xd9\x37\x59\x6d\x6f\x67\x82\x93\xac\xfe\x4f\x61\xfe\x8d\x84\xf9\x2c\xc3\xf9\x33\x9b\x75\x09\xdc\x33\x0d\x63\x0e\x0f\x2c\x26\x9c\x99\xdd\xec\xfb\x89\x57\x85\x50\x73\xd9\xe6\x67\x47\xfd\x04\x82\x70\x0c\xeb\x4f\xdf\xd1\x49\x84\xe3\x2f\x1e\x9e\xd9\xdf\x9d\x4d\xe8\x8e\xf2\x17\x6a\x58\x64\x45\x90\xbf\x7c\xb5\xac\x95\xe7\x0a\xe1\x49\xee\x09\x63\xe7\x78\x0d\x42\xb2\x87\x4b\x42\x9f\x5a\x3a\xa1\x67\xc5\x5e\xc1\x0d\xb1\x62\x84\x26\x8b\x23\xf7\x2e\xba\x96\x13\x12\x26\x3a\xff\x52\xca\x16\x25\x6c\x14\xf8\x12\x19\xf2\x95\x08\xc5\x62\xc7\xf8\xb7\xd4\x31\x84\xf3\x3d\x81\x6f\x8a\x5b\x96\x13\xde\x37\x2f\xa6\xf3\xe9\x46\x6c\x38\x35\x4f\x5e\x73\x62\xba\x12\x41\xde\xec\x72\x65\x90\xfd\x2b\x06\xc5\x51\x6d\x3d\xcf\x4e\x0b\xd1\x7f\xa0\x7d\x69\x89\xf4\x21\x1e\x59\x36\xe8\xb4\xed\x53\xf0\x7a\xb4\x94\x70\x32\x4a\xbe\xb7\x46\x71\x1a\x21\x69\xc3\xa6\xb4\x5e\x69\x35\x82\xc9\xc2\xcb\xfb\x3c\x84\xc5\x09\x9f\xb2\x8c\x37\xcc\xbd\xcc\x4d\xe0\x37\x73\xb4\xd6\xaf\x9c\x43\x98\x3e\xe3\xe8\x89\x7d\x5f\x9e\x32\x08\xbb\xa4\xde\x76\x20\x76\x2e\xe1\x94\x40\xdd\xc1\x53\x72\x5a\x84\xbd\x43\x57\xbe\x76\xbf\xec\x64\xc1\xe6\x93\x2c\xcf\x8e\x95\x0e\x84\x92\xbb\x90\xd0\x56\xfa\xc5\xa0\x78\xe3\x9e\xbc\x8a\xfa\x58\x42\xf9\x6f\xb9\x58\xe1\xbf\xcb\x09\x9e\xfd\xd7\x6f\x98\x3d\xab\x25\x14\x18\xcc\x98\x90\x31\x38\x85\xb0\xc8\xf2\xa2\x92\xa6\xc8\xf9\xf2\xff\x0b\x6f\x43\x0e\x4f\xb6\x52\xb2\x27\x8c\xcc\xbc\x54\x6f\x91\x7a\x8f\x50\xe2\xe4\xfd\x63\xe7\xd3\xcb\x84\x44\x8b\x9d\xa9\xf3\xbe\xdd\x27\xb4\xcc\xd8\xbc\xdc\xca\xae\x9e\x10\xfa\xf9\xe8\xec\x37\x67\x3f\x11\x0a\x76\xc8\x5f\xab\xfc\x50\x46\x30\x6d\x2f\xfd\x2b\x3b\xb9\x88\x85\x35\x1e\x8f\x47\xbb\x36\x2c\x20\x3c\xdd\xa7\xff\xd2\x2e\xef\x14\x0b\x14\x10\xf9\xe7\x9b\xa0\x16\xc1\x31\x39\xab\x6c\xa2\xa2\x3c\xc1\x3b\xd4\x23\x36\xeb\xb0\x13\xa1\x6a\x73\x6d\xea\x83\x3d\x73\x09\x03\x19\xcf\x66\x0d\x5a\x4f\x20\x58\xaf\x8b\x3c\xd6\x3d\xc2\x43\xd0\x15\xad\x5d\xe5\x55\x23\x49\x18\x95\xd5\xd3\x6a\x52\x55\x26\x68\xea\xc9\xb2\xfe\x24\xa8\x13\xf6\x07\x94\x9c\x12\xe6\x1d\x62\x20\x7a\xe6\xc0\xfd\xd6\xcd\x4b\x68\x1c\x75\x71\xa2\x47\xce\x15\x0e\x31\x70\xcb\xb8\xcb\xbb\x73\x38\x91\x50\x15\xa4\x14\x15\x68\x7e\x88\x20\x18\x1a\x25\x7a\xbd\x74\x05\x61\xdd\x53\x8f\x3d\x59\x6f\xaa\x58\x68\xe0\x09\xdd\x73\x41\x50\x9a\x70\xf1\x07\x3f\xdf\x9f\xc6\x5c\x16\xd4\xf4\x2a\x2c\xee\x16\x1f\x64\xa1\x6b\xf1\x8e\xe9\xa5\x0e\x76\x34\x8e\x9f\xd1\x1e\x5f\x15\x4d\xf6\xb2\x21\xc8\x4b\x59\xc4\xe8\xed\x52\x42\xa6\x94\xc0\xbb\xbd\xd7\x65\x08\x7c\xdb\xcc\xcb\x72\xc5\x2b\x58\xc8\xba\xff\xc1\x38\xfe\xf2\x00\x83\x0b\x86\x16\x4b\x3a\xa3\x44\x69\x1c\x9b\xe6\xdb\x9c\x7e\x90\x98\x42\xf8\xf2\xd4\xa5\xc9\xe1\xbe\x3f\x81\x57\x51\x72\xda\xcc\x6e\x67\x02\xe7\x50\xdc\x24\xfd\x6a\x1f\xc2\x5f\x05\x33\xef\xd4\xd1\x97\x0c\xe2\x5d\x77\x06\x66\xbd\xff\xc1\x86\x59\xcb\xd5\xa6\xf3\xcb\x70\x12\xca\x9b\x0e\xe4\xd9\x2e\x74\x22\x30\x99\x82\xd9\x8f\x52\x67\x12\x06\x86\xfe\x8a\x46\xfc\x4a\x27\x38\x6b\x3b\xd5\x4f\x53\xad\x22\x1c\x58\x96\xf8\xfa\xfa\x0e\x3b\xc2\x2a\xe1\x94\x20\x07\x05\x2b\x42\xe0\x44\x0d\x77\xcf\x78\x05\x82\xed\xe1\x39\x0d\x7b\xe5\xf5\x09\x5f\xf7\xf3\x71\x06\x45\x0f\x31\x98\x96\x1f\xb6\x70\xb9\xa7\x0f\xc1\x58\x35\xe1\x93\x5e\x79\x12\x41\xf8\x84\xfa\xa9\xf3\xab\x83\x09\x3b\x8a\xbe\xad\xbd\xb0\x7c\x16\x61\x20\x58\xa5\x78\x30\x43\x83\x0d\x83\x36\xc2\x2f\x76\x54\x2a\xb1\xc1\xf3\x94\xc0\xf1\xd8\x03\x0f\x18\x14\xe4\x4c\xfd\xec\xfa\x40\x8c\xf0\xcb\x96\x6f\x92\x99\xd0\x2a\x36\x38\x1f\x49\xea\xf9\x6e\xc1\x10\x2e\x33\x53\x5d\x57\xdb\x59\x10\x0e\x19\x96\xee\xe0\x16\x1f\x64\x70\xee\x6a\x28\x6f\x8f\xc5\x53\x82\xfc\x02\x1d\x3f\x8d\x9a\x4b\x84\xd3\x2a\x6f\x0a\xe6\x07\x95\x10\x52\x4f\x59\xcf\x79\xb4\xd5\x95\x70\x70\x9b\x95\x9b\xe7\x30\x0f\xc1\x4e\xa1\xbb\xb2\x93\x97\x97\x70\x39\x22\xa0\x4c\x64\x6a\x39\xe1\x47\xf2\x91\x8e\x76\xb1\x54\x16\x06\xb7\xaf\xce\x32\x69\xaa\x26\xf0\x5f\x4a\x1d\xba\xb9\xc7\x8b\x70\xa0\xfe\xc0\x64\x11\xbf\xdb\x84\x4d\x1f\x2e\x7e\x3a\xee\x6f\x48\x68\xb1\x72\xbc\xbe\xc7\xf7\x08\x1b\x7a\x6e\x1a\x3c\x48\xf2\x48\x23\xac\x3b\xf4\x62\x47\x6d\xed\x2d\x82\xb9\xac\xc0\xdc\xa3\xd2\xdd\x84\x4b\x87\xbf\x17\x35\x9a\x5c\x25\xd4\x64\x4d\xe3\x5a\x58\x95\x42\xf0\xd8\x7f\x56\x71\xef\x4c\x09\x82\xa3\x54\x80\xce\xad\xfa\x53\x2c\xf8\xf4\xba\x19\x9f\x5d\x90\x4e\x58\xe5\xba\x3a\x25\x52\x21\x9d\xe0\x5d\xb3\xbc\xee\xa7\xd2\x55\xc2\xa4\xbb\x3c\x83\x31\x21\x41\x04\xdf\x2f\xaa\x3c\x9d\x15\xde\x04\x5e\xf7\xe7\x9e\xfa\xb3\x27\xfc\x7f\x7c\xfd\x69\x34\x95\xef\xff\xff\xff\x57\x84\x46\x25\x69\x90\x32\x14\x32\x84\x54\xa2\xec\xa7\x52\x4a\x89\xa4\x8c\x11\x45\x48\x64\x4a\x92\x42\x83\x06\x32\x47\x51\x2a\x91\x44\x66\x99\xf7\x69\x28\x91\x50\xa4\x32\xa5\x01\xcd\x49\x52\x0f\xa4\xfe\x8b\xb5\xbe\x2f\xfb\xb3\xfe\xfd\xde\xd7\x6e\xeb\xfe\x3c\x5c\x70\x72\x9c\x8e\x63\xb9\xb0\x09\xcf\xe6\x1f\x7c\xce\xb5\x6b\x1c\x41\x93\xd9\x55\x97\x5a\xd0\xc5\x82\x87\x6f\x92\xbe\xea\x13\x01\xc2\x91\x00\x8f\x3f\x51\x5c\xba\x04\xee\xc3\x81\x1f\x4b\xd6\x97\x13\x5c\x50\xb9\xcf\x7f\x59\x39\xc1\xe4\xcb\x3d\x56\x56\x74\x24\x83\xe0\x5b\x33\x77\x3e\xdf\x51\x4e\xd8\xa4\xf6\x45\xf7\x55\x99\x16\x21\xac\xef\xd8\x7e\x13\xb1\x5a\x82\x70\xdb\xad\x34\xd3\x61\x18\x39\x77\xba\x5b\xdd\xbc\x44\xb0\x5e\xb5\x5b\x4a\x99\xae\x10\x4a\x0d\x24\xb9\xd5\x4e\x04\x13\x02\xdf\x6c\x5d\x3a\x02\xcd\x09\x87\x24\x3a\x97\x85\x10\x9e\xab\x48\x05\x35\xbc\x72\x21\xbc\xfb\xea\xdf\x72\x4f\xec\x06\xc1\x4f\xdf\x31\x76\xc9\xa5\xed\x84\x4d\x3b\x9f\xda\xfc\x5e\x7d\x8d\x19\x2d\x05\xfc\x6b\xd6\xdc\x1e\x3e\x3f\x8f\x9b\x32\x7d\xef\x89\xfb\xe2\x84\xf8\xf3\x01\xa7\xbd\xbd\xb6\x13\x42\x72\xed\x84\x92\xaa\x12\x08\xdd\x57\x57\x17\x7d\xb3\xb9\x4c\xb8\xf6\xe7\xf9\x65\xcf\x8a\x07\x84\xfc\xdc\xcc\x92\xe8\x39\x6b\x08\x29\xb6\xe3\xa2\xfb\x93\x7f\xb1\x70\xe3\x58\x81\xcb\xd5\x28\x35\xfa\x07\x12\x3f\xf8\x31\x36\x0d\xdf\xd8\x10\x3a\xeb\xe6\xa7\x22\xa9\x4a\x78\xd7\x19\x56\xf3\xdd\x45\x9e\x60\xac\xa9\xf2\xf2\x8d\x31\x3f\x07\x24\x34\x2d\x76\xe8\x30\xf2\x1c\x30\x31\x0f\xdc\x53\xbb\x56\x8f\x90\xec\x73\x9c\xad\xe5\xd5\xc9\xc2\xdb\xcb\x6d\xe1\x7d\x4b\xd2\x08\x5c\x4a\x22\x57\x1b\x4f\xf5\x11\x36\x7a\x31\x6f\x95\x3e\x75\x11\x56\x6c\xdc\x23\xda\x23\xf0\x9a\xb0\x4d\x4c\x94\x3f\xf1\xea\x61\xc2\xb6\xa9\xac\xe9\xbc\x2d\xae\x84\xb8\x05\x33\xa6\x15\x82\x87\xe0\x2a\x5e\x56\x99\xff\xdc\x96\xb0\xd9\x7c\xc8\xa0\xef\xe4\x4a\x82\xc7\xf3\xdd\x3b\xff\x3a\xdc\x65\xe1\x8e\xf9\x1e\xb3\xb8\x49\xc7\x69\x14\xab\x73\x92\x1a\x14\xb3\xe7\x13\xea\x3e\xa9\xde\x88\x6f\x31\x22\x48\x0c\xac\x7a\x3b\x71\xf8\xa5\xe7\x30\x70\xce\xe7\xee\x0a\x71\x82\x84\xc1\xe2\x19\x81\xda\x5b\x09\x3d\x33\x2b\x6a\x5a\x06\x37\x10\x62\xfd\x7f\x6d\xaf\xe0\xbf\x4e\x58\x1a\xaf\x93\x31\x82\xd4\x6b\xf3\x1c\x55\xdd\x2f\x13\x3e\x8c\xf7\x99\x5e\x63\xa8\x44\x90\x9d\x30\xb1\xbb\xf8\xe3\x26\x02\xef\x61\xed\x49\xd7\xbf\xf0\x11\xcc\xbf\x8b\x3e\xb9\xef\x49\x1c\x88\x99\xb0\x20\xce\xf8\xd0\x2f\x16\x56\xe8\x4c\xdd\x9e\xfb\xfe\x3a\x41\xfb\xe8\xbd\xa9\xda\xcb\xee\x31\xd8\xf7\xda\xd5\xf7\x78\xf8\x06\xc2\x93\xf1\x33\xbe\x54\x94\x49\x11\x4e\x7a\xcd\xb5\xef\x1b\x0c\x25\x1c\xed\x6e\x5f\xc5\x36\xbd\xc1\xc0\xa2\xe4\xc6\xd3\xfb\xfe\xb9\x04\xc9\x36\x3f\xed\xab\xb7\x42\x09\xec\xc7\x0b\x6d\xbc\xee\xdd\x26\x78\x86\x0c\x4e\xf6\xfc\x3f\x48\x1d\xfb\xe4\xe5\xa1\x61\x7c\x9e\x70\x2f\xb8\xda\xd6\x93\x10\xbe\xd7\x55\x80\xbb\xd1\x97\xb0\xd2\x41\xfc\x6e\x4e\x6b\x08\xa1\xe8\xac\xea\xce\xdc\x66\x6f\xc2\x81\x95\x9b\x42\x4e\x5b\xfb\x11\x2e\x55\x2a\xb6\xe8\x88\x6a\x13\x36\xad\x12\x08\x2d\xda\xa0\x47\x10\x69\x30\x9d\x7e\xe6\xcb\x26\x42\xa7\x48\xc7\xd0\x44\xe7\x29\x84\xf0\xeb\xee\x7f\xb3\x0e\x1e\x26\xb4\x5d\x2a\x75\x36\x98\xc0\x70\x20\x77\xaf\xe3\xcc\xb4\xcc\x10\xc2\x07\x89\x33\x93\x1a\x5f\x7d\x66\x41\xa6\xd1\xbb\xe3\xaf\xfe\x5b\x82\xff\xa5\x9c\x81\x9e\x53\x1d\x84\xaa\x17\x3c\xfc\xe9\x29\x6c\x82\xf7\x93\xb5\x31\x53\xa2\x1f\x12\xa2\x1a\x65\xbf\xd4\x3c\xd5\x24\x28\x3f\x8a\x64\x47\x4a\xaf\x20\xcc\x7e\x3d\x83\x76\x79\x2f\x27\xe4\xef\x0a\x4e\xbf\x6f\x2d\x46\xb8\x71\x44\x4d\xf8\xd5\x58\x6d\xc2\xd5\xcf\xee\x86\xbf\xea\x2f\x30\x38\x7e\xd6\xad\x52\x4c\xbe\x9a\x80\x8f\xfc\xd2\xeb\xc6\x67\x10\xe2\xe3\x3e\x5d\x6b\x51\x3c\xc9\xc0\xc2\xa5\xb4\x42\x46\xf6\x1a\xe1\xea\x83\x41\x72\x28\xca\x26\x2c\x4c\x54\x2a\x33\x72\xd1\x25\xc4\x18\xa9\x0f\xa8\xff\x5c\x4f\xd0\xaf\xbb\xfc\x47\x28\x5d\x9a\x50\xff\x29\xba\xcc\xf6\x95\x34\x61\x82\xc7\xdc\x1d\x7b\xef\x25\x11\xe4\xce\x0a\xfe\xb0\xca\xdf\x40\xe8\x58\xd2\x64\xf4\x9b\xff\x06\x03\xef\xcd\x9e\x4c\xf2\x86\x7a\x82\x47\xfa\x9b\xa5\x29\xc3\x48\x3e\x9c\x6c\x16\xc9\xfd\x82\x20\xaa\x3f\x24\xf8\x4c\x24\x9b\x20\x5d\xd0\xf8\x77\x23\x96\x11\x2a\xcf\xad\xfb\xd8\x35\x74\x9c\xa0\xfb\xd9\x7b\xa2\xe4\xf7\x55\x84\x85\x01\xa5\x7f\xb4\xe7\xab\x13\x2c\x4e\x9c\x5e\x74\x47\x64\x22\x81\x68\x8b\xeb\x13\x1b\x53\x82\x55\xc1\xec\xf6\x4a\x8b\xb5\x04\xfb\x98\x23\x39\xb2\x13\x75\x08\x71\x32\x07\xcf\x4c\x6d\x9c\x4d\xd0\x4b\xca\x9f\x91\xde\x5b\x48\x58\x6f\x2a\x73\x38\x76\xbd\x19\xc1\xd1\xd9\xe9\x46\xfa\x21\x61\xc2\xbe\xaa\xcf\x77\x9b\x79\xb9\x08\xb3\x0c\xa6\xa9\x7c\x55\xe0\x26\xdc\x54\xf7\x0f\x7d\x55\x6e\x41\xf8\xd6\xf9\x49\xe4\xc3\x26\x5f\x42\xf5\x67\x79\x5d\xf7\x76\x69\xc2\x61\x85\x92\xcb\x07\xb6\xd9\x13\xee\xd5\xe7\x0c\xb5\x68\xe6\x12\x56\xb3\x2b\x5f\xa6\xbd\x11\x27\xa8\xdc\x6e\xd9\xd0\x49\x7c\x84\xaa\x7b\xe3\x1c\x14\x9c\xb3\x08\x7b\x04\xb7\x71\x2f\xb0\xac\x22\xf4\x86\x57\x58\x88\x49\xb2\x09\x2b\xa6\x2e\x6c\x6a\xbc\x78\x81\x90\xc3\x75\xd1\xae\x70\x47\x15\xe1\xf0\xc5\x97\x2c\xf9\xd2\xbd\x84\x8d\x35\x57\xa4\x37\xcb\xa4\x13\x44\x0e\x0c\xa9\x7d\xf2\xcd\x22\x64\x8a\xec\x95\x9d\xbc\x85\x9b\x50\x9d\x2a\xa2\x58\x78\x9d\x8f\xf0\x60\x68\xb1\xf9\xeb\xef\xe9\x04\xe5\x16\x5a\x1b\xb4\xe8\x3e\xa1\xab\xa4\xe7\x74\xb6\xd0\x63\x06\xd2\xea\xba\xf3\x23\x34\x82\x08\x77\x8e\x7c\x8e\x85\x66\x10\x61\xd9\xba\xf8\xef\x5c\x86\xdb\x08\x37\x84\x77\x6c\x37\x6a\xde\xce\x51\x8c\x1e\x6c\x3c\x72\x65\x8d\x22\x61\xdc\xa1\x35\xa1\x9b\x7f\x4b\x12\x62\xbc\xa4\x76\x1e\x79\x78\x82\x90\xca\xa7\x73\xbe\x72\x70\x1c\xe1\xc5\xc2\x9d\x61\x5f\x07\xe4\x09\xb9\xef\xf6\x5e\xf6\xb3\x8b\xe0\xc0\xdd\xed\x69\xda\x0f\x8b\x3c\x08\x3e\x26\x7a\x16\xa6\xbf\x0c\x08\x41\x2d\x89\xaf\xa6\xb1\x4f\x12\xcc\xe7\xba\xd9\xd5\xae\x73\x25\x54\x7f\xcd\x70\xfe\xe9\xa1\x4d\x10\x56\x0a\xf7\x28\x3c\xce\x43\xf8\xb3\x37\x23\x40\x32\xcf\x87\x90\xb0\x33\xd7\xd2\x2c\xd2\x9d\xf0\x52\xfe\xd5\xc3\x9c\x26\x09\x82\xc7\x8a\x1b\x66\x4b\x94\x7a\x59\xc8\xd4\x9e\xf0\x45\xf1\x7c\x0a\x61\xb6\x49\x80\xcb\xd1\x10\x4e\x9c\x9d\xb0\xe6\xd3\xca\x0d\x3b\x08\x7d\xcb\x33\xdb\xef\x66\x99\xff\xab\x54\x49\xee\xbe\x6e\x5a\xe1\x4b\x28\x77\xb9\x97\x3d\x69\xa0\x9c\x70\xe3\xcd\xe9\x9b\x59\x0a\x59\x84\xea\x6f\xad\xbf\xc5\xb9\x93\x08\xf7\x9e\x6f\xac\x11\x9d\x53\x44\x48\xcf\x9c\x71\xe1\x81\x60\x11\xc1\xaa\x2e\x3b\xc8\xba\xa3\x80\x10\xbc\xd7\x6d\x70\x64\xb4\xda\xab\x78\x95\x6e\x5b\x21\xa1\xb7\xd5\xe9\x5d\xf3\x44\x45\xc2\x4b\x72\xef\x70\x3d\x2a\x4b\x28\x5f\x3e\xeb\x00\x2f\x6b\x0a\x61\xf1\xa7\x81\x5f\xe2\xc5\xb3\x38\x60\x38\x6d\x62\xb9\xe8\xe3\x36\xd6\x28\xfa\xcc\xed\x9c\xee\x94\xf4\xb2\xf0\xea\xc3\xd9\x93\xbb\x27\x09\x10\xaa\x0a\xf5\x63\x3b\xc7\x1c\x26\xdc\xef\x91\xfd\x2d\x16\xe9\x42\xd0\x4b\xbd\xd0\xf9\xea\xe8\x7d\x16\xda\x56\x29\xbe\x18\x9a\x58\xca\xa0\xd5\x4f\x34\xf2\x9a\x5a\x15\xa1\xe7\xb3\x75\x9b\xec\xb9\x0c\x42\xbb\x54\x83\x83\x74\x14\x0f\x81\x9f\xef\x92\xe5\x02\x6d\x09\x82\xf7\xc2\xf8\x3d\x7c\x29\xb9\x04\x57\x11\xc5\x83\x4b\x6e\xf8\x70\x60\xbe\xca\x6e\xbf\xa5\xae\xd9\x84\x84\x4b\xc1\xdd\x7f\xbc\xab\x09\xab\x59\xba\x1a\x8a\xc3\x45\x2d\xb7\x63\xf3\xdf\xe1\x32\x85\xcf\x66\x70\x56\x90\x09\x61\x73\xc8\x8d\xeb\x62\x96\x51\x84\x1d\x0f\x6e\x55\x38\x31\x7b\x38\x46\xcb\x3c\x4a\x76\xb7\x5d\x95\x21\x4c\xab\x7b\xd8\x10\xb4\x73\x2f\x21\x3b\x74\x3c\xd7\xfa\xd8\xa7\x0c\xb6\x0c\xf1\x84\x26\x39\xc4\x30\xb0\x58\xb2\x7d\x45\xa2\x60\x10\x83\x7c\x37\x99\xaf\x46\x02\x19\x6c\xd8\x5a\xba\x38\xaf\x7d\x6b\x40\xff\x0b\x3a\x69\x41\x1f\x4f\x0d\x2f\x7e\xd0\x97\xbc\xe7\x80\x55\x04\x03\xcd\x33\x4e\x83\x7d\x07\xaa\x09\x2f\x12\xca\x8d\x7e\x0e\xc3\x66\xc8\x88\x67\x4a\x42\xf6\xf0\xd5\xd5\x39\xe3\xdb\x3c\x01\x82\x31\xd7\xa1\x85\x6b\xac\x7b\x59\xf8\x90\x36\xe9\xca\x2b\x63\x73\x1a\x85\x8e\xa7\xa8\xfb\xc1\xd7\x15\x84\xb0\x9e\xa5\xaa\xed\x97\x05\x09\xef\xe6\x1c\x5c\x24\xd2\x1b\x41\x58\x37\xb8\x3d\x6d\x7d\xf0\x05\x82\xd7\x6d\xf6\xd8\x9a\xd7\xf1\x0c\x42\xbc\x1a\x6c\x4c\x8f\x0b\x13\xee\x9e\xe4\xf7\xae\xf9\x7a\x8f\xa0\x71\x28\xc6\xce\x90\x0e\x71\x60\x43\xcf\x93\xa1\xcc\xfa\x1a\x06\xb7\xb2\xaa\x3b\xcf\x7a\x66\x12\x4e\xce\xce\x9a\x74\x3f\x3c\x81\xd0\xeb\x75\x35\xc7\x41\xe6\x1a\xe1\x5e\x4f\xc9\x2f\x9f\xc1\x73\x04\xef\x59\xa7\xae\x14\x8f\x0d\x21\x78\x3e\x3d\x10\xa1\x8a\x74\x06\xb6\x3b\x76\x34\xba\x6e\x17\x23\xe8\xb2\xa2\x97\x9f\xb2\x72\x26\x2c\xe3\x73\x14\x50\x73\x58\x47\xc0\xd3\xc9\x2e\x43\xa6\xa1\x0c\xaa\x2b\x5e\x59\xef\x5c\x5d\xca\xe0\x91\xbf\x87\xdb\xcc\xd9\xd9\x04\xdf\x6f\xfc\xae\x75\xae\x69\x04\xc1\xc0\x5b\xac\xe5\x7d\x3e\x84\xb5\x33\x78\x17\x1a\xd8\xce\x20\xa8\xef\x76\xb8\x79\xf8\x62\x3a\x21\xdf\x46\x3b\xe3\xc7\xdd\xe5\x84\xad\xaf\xdf\xc5\x6e\xef\x2f\xe2\xc0\xe9\x8c\x8d\x89\xad\x97\xdf\x32\xf0\x68\x58\xaa\xdd\x25\xf5\x88\x70\x6a\x5b\xb1\xf3\xc8\xe8\xee\xc3\xb1\x01\x5d\x7f\xac\x09\x2d\xd5\xba\x5f\x76\xea\xec\xe1\x28\xff\x41\x8f\xfb\x51\x65\x74\xd6\x52\x42\xc2\x82\xc5\x0f\xbe\xdd\x36\x27\x3c\x16\xfd\x39\x7e\x1b\xd7\x7c\x42\xaf\xe9\x78\x03\x87\xd6\x4d\xff\x82\xdd\x06\xfd\x14\x17\xa1\x42\x82\xf9\xf5\x47\xda\x26\x81\x57\x08\x15\x13\x1d\x3e\x64\x1a\xa4\x10\xac\x32\xf8\x03\x37\xc5\x88\x13\x94\x83\xc4\x2e\xd5\xf6\xde\x25\xbc\xbb\xb2\x7d\xf3\x0c\xcb\x53\x84\xb2\x27\x3b\x48\xf0\x56\x29\x61\x66\x84\x61\x89\xf9\x44\x0f\x06\xdc\x87\x0d\x65\x66\x0c\x97\x5f\xcf\x32\x4d\x78\x92\x6c\x08\x8a\xb3\xee\xe8\xd9\xeb\x87\x13\x9a\x25\xbd\xbf\xde\xbd\x1f\x40\x30\x89\xff\x36\x69\x97\xf8\x25\xc2\xa1\xbf\xe3\xa4\x07\xb6\x79\x11\xb8\xa7\xed\x39\x35\x2e\xef\x38\xa1\x67\xea\xbc\x55\xe6\x93\x95\x08\x4b\xe7\xef\xd5\x1f\x2f\xb1\x85\x30\x35\x79\xbf\x70\xf5\x97\x1c\x06\xca\xeb\x3f\xa8\x1b\x57\x8c\x27\x44\x04\xd8\xad\x3d\x72\x48\x8f\xa0\x13\x27\x67\xaa\x55\x93\x42\x88\xbb\xff\x52\xf3\x40\x5d\x0a\x21\x45\x6a\x50\xe2\x9d\xd4\x13\x8e\x72\x33\xa0\x72\x4c\x79\x93\x31\xe1\x76\xd0\xd6\xe9\x0b\x5f\x9a\x12\xfa\x1e\x64\xdd\xf6\x55\xb3\xe7\x28\x2d\xc1\xbc\xdf\x8a\x32\x36\x10\x1e\x25\x24\x18\x1c\xff\x9e\x49\xb8\x90\x71\xf6\xad\xe5\x01\x39\xc2\xd1\x6a\xe7\xd3\x2a\x03\xda\x04\x1d\x7e\x71\xf5\x8b\x5a\x39\x84\x9f\xd7\x6f\x49\x70\x0f\xef\xf7\x05\x87\x8f\xfc\x98\x76\xc1\x85\x10\x29\xe0\xbf\xcd\xe6\xb0\x1f\x41\x63\xb9\x85\xcb\xac\x37\x7f\x59\x70\x54\x1d\x94\xe1\xba\x6c\x44\x30\xcf\xba\xf9\x74\x6c\xb8\x26\x61\x7f\x52\xd7\x95\xdd\x21\x37\x58\xf8\x3b\x95\x6b\xdc\xd5\xb0\x29\x84\xe3\x5d\xe6\xc9\xcd\x67\x37\x72\xc0\xe4\xcc\xdf\xad\x9b\x0c\x2e\x33\xb0\xde\xe7\xb3\x72\xfb\x01\x7e\x82\xe3\xd4\xec\x4d\x3b\x4a\xe2\x09\x9b\xfa\x92\x57\x27\xd7\x17\x13\x52\xcb\x98\xa5\x29\xbf\x6a\x19\x64\xa4\xb5\xe6\x9e\x6e\x2a\x26\x34\xcd\xd0\xf5\xb4\xc3\x57\x16\xce\xb5\x85\x2d\x13\x2c\x3c\x42\xf0\x7d\x93\xb1\x82\x39\xcb\x89\xa6\xbf\x56\xb3\xcb\x8f\x6a\x10\xd4\xc3\x4c\xbe\xca\x6c\x5c\xce\x81\x20\xa9\x93\x49\x9a\xb3\xb9\x08\x16\x3f\x52\x36\xfb\x45\x2a\x10\x7a\xb9\x32\x87\xf6\xf3\x88\x71\x20\x6b\x8d\xde\x89\xc2\xce\x26\x16\x5e\x4c\x9f\xb2\x57\x4d\xde\x84\xe0\x50\xb4\xf6\xed\xc1\xe7\xf6\x84\x17\xeb\xe7\xb4\x2e\xfc\x14\xce\x81\x54\xfb\x41\xb7\x21\x2d\x2d\x82\x40\xe2\x8f\xee\x3b\x3d\x75\x2c\x5c\x89\x4d\x89\xe4\xb2\xdf\x43\xa3\xe8\xc8\xbe\x22\x17\x53\x24\x41\x38\x23\x70\x39\xf0\xc7\xba\xa5\x04\xe9\xfa\x9a\xac\xb5\x3c\x33\x08\xcf\xb8\x2d\xf8\xa2\xd2\xc7\x11\x1a\x7d\x43\x63\x5c\xc7\x08\x12\x56\x4c\x7b\x3b\xb3\xc5\xe2\x3b\x0b\x62\xb6\xe7\xc7\xbd\xe4\x22\xc2\xae\x8c\xd6\x15\xd6\x91\xcb\x08\x19\xe2\x27\xdc\x3b\xab\xdc\xd9\x28\x8e\x2f\xb8\x12\xa9\x65\x4b\x90\x6a\x99\x7e\xbe\xf5\x0d\x43\xd0\x7b\x7b\x78\x5b\xfd\x87\x32\x82\xe8\xa5\x19\x97\x54\x76\x29\x0e\x6f\xf3\xfe\x9e\x92\x62\x7e\xea\xd7\x0e\x6b\x12\x29\xdf\x45\x10\xac\x7a\xba\xca\x78\xf8\xfd\x21\xd9\x7c\x2f\x6f\xae\x67\xe0\xbf\xf0\x7b\xd1\xeb\x1b\xa2\x2f\xe3\x39\x20\x34\x67\xd1\xa5\xbb\xf5\xe6\x1c\x48\x79\xa9\x52\x68\xe8\xbe\x84\x20\x50\xd6\x9f\x7a\xc9\x99\x4d\xd8\xaa\xb0\x60\xee\x38\xef\x2c\x16\x64\xfa\x65\xaa\xd9\x41\xf9\x84\x6a\x9d\x64\x8d\x11\xec\xda\x37\xe6\xca\x08\xee\x64\x8c\xbd\xbd\xdd\x7a\x3b\xc1\x30\x26\xf3\xe6\xa7\xa0\xe3\x1c\x65\x9e\xfb\xea\xda\xb4\x56\x7d\x8e\x12\xe7\x25\xaa\x76\x79\x78\x4f\x37\x6b\xcf\xd6\x71\x50\x73\x20\x88\xef\x41\xae\xce\x14\x09\xc2\xbd\xe6\x15\xbb\x67\x3a\x25\x12\xfa\x37\x4f\x5e\x36\x02\x15\xa3\x75\xdf\x9c\xb9\x0b\x08\xc6\x08\x60\x8f\x94\x3f\x1d\x9f\x8c\x6b\x4e\x5b\x13\xb2\xbf\xf9\xad\xd8\xb8\xc9\x84\xa3\xfc\x87\x4f\x8d\xad\x2f\x23\xa7\xae\x23\x64\x3d\xd5\xe3\xbf\xe9\xe4\xcd\xc6\x06\x83\xde\xa3\xbb\xbe\x9c\xa3\xff\x85\x73\xd7\x10\x28\x71\x72\x3c\x61\xe2\x7c\x1d\xcb\x3f\xc3\xf7\x4b\xd7\x2d\x95\x86\x5f\xf6\xdd\x24\x68\xed\x5e\xd3\x2e\x79\x36\x84\x30\x55\x7c\xf5\x19\xd9\xdb\x21\x84\xf3\x1e\xfb\xc6\x86\xeb\xda\x33\xe8\x2d\x9c\x59\x51\x51\x77\x94\xf0\xa5\xe1\x95\x9c\x9d\x4a\x39\xa1\xfd\x4e\x4f\x97\x3a\xb7\x35\xc1\x83\x47\x25\xcf\x45\xc0\x88\x20\x7a\x2a\xf5\xa9\xb4\xcd\x5e\xc2\x71\xee\x2c\xdd\xfb\x21\xa6\x84\x75\xf3\xae\x4d\x95\x19\x2a\x25\xc4\x4d\x1b\xbf\xdd\x37\xe4\x05\x83\x95\x5d\xee\x7d\x23\xa5\x78\x4e\x2e\xf7\xdf\x2a\x23\x42\xea\x83\xc2\x6b\x3d\x55\xf7\xd8\x30\x8b\x3f\xf8\xea\x6e\x63\x07\xc1\xf5\x9c\xe7\x3b\x01\xbf\xd7\x04\x85\xf8\xd2\x69\xd3\xe4\xbf\x12\x16\xf5\x16\x09\xab\x35\x34\x13\xb2\xf6\xd7\x4c\xf9\x6b\x96\x48\x10\x17\xd5\x30\xb8\x91\x7f\x90\x30\xa9\x97\x79\x2b\xf6\xe8\x20\x41\x6d\xcd\xde\x50\x6f\xe1\xe3\x84\x55\xe5\xef\x54\x2a\x5f\xce\x24\x3c\x8e\x5f\xd2\xfb\xe4\xeb\x5f\xd6\x28\xb4\x27\x9c\x5f\x7d\xa2\xee\x17\x0b\xf3\xef\xa7\x24\x7a\xaf\xe8\xe1\xc0\x8f\xdc\xe6\x81\x44\x29\x36\x0b\x3c\xd5\xdd\xc1\xce\x56\x1b\x09\xfa\x43\x59\xd2\xc2\x87\xc5\x39\xd0\x2e\x3a\xa0\xf0\xca\x66\x2c\xa1\x52\x68\x6d\xff\xeb\x1f\xbf\x59\x30\xcb\x4e\xeb\xcb\x98\xff\x97\x05\xb5\x85\x19\xc5\xc7\x6a\x6b\x08\xee\x3b\x04\x1d\xc7\x45\x3e\x21\xdc\xae\xf8\xc0\x1a\x81\xc7\x1d\xdd\x19\x03\xac\x1b\x04\x9b\x33\xae\x0d\x16\xf2\x39\xc3\xf7\x8c\x4b\xae\x8d\x2b\x6f\x10\x3c\xdc\x25\xd6\xfd\x3a\xb9\x9c\x70\xc8\x5c\x2e\x23\x65\xf7\x0f\xd6\x68\xb9\xe5\xb3\xf0\xd6\x9b\x45\xb3\x08\xbf\x27\xf7\xbd\xf9\xfa\xb6\x83\xd5\xaf\x60\x77\x7c\xc6\x23\x27\x06\xec\xa0\xac\xcb\x31\xa5\xb3\x09\xf1\x52\xac\xd6\x71\x53\x0b\x09\xf1\x75\x7a\x61\xe9\x77\x1f\xb1\xa0\x7b\x75\x7c\xf5\xb4\xbb\xab\x69\x14\x93\x13\x4d\xde\x84\xca\x8a\x71\xe0\x8a\x68\x6a\xef\x98\x63\x92\x04\xa3\x86\x8e\xb6\x14\x23\x37\x06\xbc\x8d\xfe\x13\x64\x5f\x28\x10\xe6\xdf\x69\x5e\xf6\x5d\x5e\x92\xe0\x5b\x57\xb1\x54\xde\xc5\x94\x10\xe5\x73\x9e\xff\xb2\xe3\x37\x16\x9e\x24\xe6\xed\x8a\x0f\xca\x25\xc4\xed\x7f\xa6\x3c\x4b\xba\x98\x20\x7d\xe9\xc2\x52\xa5\xe5\x01\x0c\x62\xca\x8f\x8e\x0b\xd9\x75\x96\x46\xb1\x6e\xff\xd5\xe8\xba\xfd\x63\x09\x5e\x17\x7e\xcf\xfd\x6e\xdc\xc4\x06\xd7\xd7\x0e\x31\x01\xe4\x12\x96\x46\xcb\xc8\x7c\x17\xc8\x23\xd8\x4e\x1a\xf3\xbb\x67\x18\xd9\xe9\xcc\xf9\x8b\xe6\x1e\x84\xc5\xdb\x64\xb3\xa7\x2f\x94\x21\xf4\x3f\x7e\xfa\xd4\x63\xde\x21\xc2\xbc\x8f\x09\x9a\xfe\x32\x56\xcc\x68\x59\x94\x2c\xd4\xac\xc5\x53\xc3\x42\xf6\x20\x0c\x8f\xb4\x70\xd1\x28\xfe\x16\xad\x48\x2a\x2f\xea\x67\x21\x9f\xf7\xad\x5f\x87\x58\x22\xe1\xa6\xd0\x37\x1f\x89\xc3\x06\x84\x88\x89\x99\xf2\x36\x1e\xb9\x04\xd6\xe4\x63\x9d\x4f\x82\x1b\x08\xb5\x8a\x09\x71\x36\x11\x0d\x04\xd9\x55\xc5\xd4\x30\x5c\x7a\x42\xe4\x9e\x69\x06\xef\xe5\xc0\x6b\xbb\xcc\x1f\x9b\x7c\x8f\x13\x5e\xee\xeb\x58\xde\xeb\x1b\x41\x08\xd4\x9e\xc5\x8c\x8c\xfe\xc3\x35\x9d\xde\xb3\x91\x29\x6b\x09\xd7\xff\xac\xfb\x5d\xa2\x19\xc9\x8c\x96\xff\xa0\x27\x05\x33\x12\xd0\x20\x44\x8d\xd3\x69\x5e\x11\xec\x49\x98\xc1\x37\x18\xcc\xc5\xed\x4c\xd0\xf8\x7c\xdf\xce\x56\x77\x2e\x61\xb9\x5e\xa1\xf2\x1f\x03\x2f\x0e\xe4\xd4\x68\x0e\x7c\xef\x38\xc5\x51\x56\x2c\xce\xe4\x95\x0e\x1b\x60\x61\xc6\x75\xec\x2f\x96\xfe\xc6\x82\x48\xfe\x5e\xed\x5f\x0b\x26\xd1\x28\x04\x44\xf3\xb0\xfe\x40\x29\x07\x92\xb5\x32\x8f\x3d\xbf\x77\x95\x70\xb0\xb1\x35\x65\x04\xe2\x13\xd9\x7d\xd5\x6e\x6f\x58\xf0\x7d\xbe\xbf\xf6\x81\x6c\x3e\x1b\x56\x37\xc4\xa3\xb8\xec\xa7\x10\x4a\x5f\x26\xbc\x88\x1e\xf7\x97\x05\x97\xb3\x67\xaf\x6d\x9c\x26\x4c\x88\xf0\x3d\xf3\x44\xaf\x66\x19\x61\x4b\x40\x9f\x81\x53\x7c\x26\x21\xb3\x7e\xa2\xc3\xff\xc5\x7f\xa3\x0f\xce\x9f\x43\x67\x5b\x4e\xfc\x9f\x30\xe9\x8f\x6e\x35\xbe\x32\xf7\x5f\xb8\xf2\xba\xd5\xde\xae\xfa\x01\x1b\xed\x41\x6d\x39\x6e\xc3\x9b\xe0\x3f\x7c\x2b\xac\x9d\x28\xd6\xaf\xc8\x81\xa3\xe2\x79\x7f\xdf\xe2\x07\x0b\x7b\x2e\x35\x3e\x17\x39\x94\x43\x58\x18\xba\xad\xa7\xe9\xc3\x62\x82\xba\x78\xed\x2e\x9d\x03\xeb\x09\x27\x42\x6b\x3f\x7d\xd2\x5f\x49\xf0\x74\x0c\x56\xf1\x6a\x58\x48\x10\xe2\xd2\x0f\x50\xdd\x17\xc8\x8c\x96\xa6\xb8\xb4\xf5\x7b\xba\x5e\xb2\xe0\xdf\x58\xf1\x34\xfd\x35\x43\xf8\x75\x7a\x9e\x62\xa6\xc6\x22\xc2\x8a\xf3\x83\x4d\x8e\x33\xef\x11\x4e\xfa\xa9\x0f\x25\x55\xad\x27\x64\xeb\xd4\x1d\x6f\x35\x66\x71\x60\xec\x03\x55\x9e\x29\xd3\x6e\x10\x92\xb6\x29\x5b\x6b\xde\xb1\x64\xa0\xf1\xd8\xf1\xc3\xb2\xe2\xe5\x84\xac\x5b\x6d\x0e\xdc\xb3\x56\x70\xe0\xc8\xcb\x29\x86\x93\xa9\x88\x19\x2d\x51\x61\x02\x39\x0d\x5f\x1f\xb2\x70\xfa\xc4\xb7\xfe\xc5\xb3\x1a\x59\x30\x4d\xf7\xf1\x1b\xbc\xbd\x86\x46\xc1\xa7\xf8\xbe\x9e\xb9\x33\x86\x03\x11\x67\x0e\x1c\xfb\x32\xdb\x99\x03\x5f\x8a\xd8\xbd\x6d\xe5\x37\x59\x78\xa1\xf3\x58\x34\xb3\x47\x90\x90\x39\xdf\xd4\xde\xf3\xce\x5d\x42\xca\x89\x7b\xad\x23\xd8\xdd\x65\x25\x9b\xbc\x2d\x88\xc1\x0b\x0d\x75\x45\xf9\xb9\x77\x08\x1e\x02\xdd\x13\x0f\x0f\x8f\x14\xd6\x94\xca\x4e\x6a\xb1\x25\x2c\x6f\x73\xd9\xc0\xfb\xcb\x8e\xf0\x2d\xfc\xd4\x6d\x56\x9f\x1d\x47\xf9\x0f\xd7\x53\x8f\x0b\x1d\x36\x71\xe0\x40\x47\x98\xe6\xab\xc4\x70\x6b\x82\xbd\x72\x6d\x0d\xa4\xaf\x10\xd8\x0b\x7f\xdd\xad\xee\x4e\x20\x58\xf7\x4d\xfa\xf6\xeb\xf0\x04\x42\x89\x8a\xd4\x47\xe9\x33\xab\x08\xc2\xc5\x47\xf8\x9f\xf5\xe4\x10\x12\xfd\x16\x35\x2f\xd8\xd0\xc8\xc2\xac\x79\x2e\x19\xae\x0b\x7e\xb2\x30\xf5\xd9\x84\x9f\xf5\x15\x09\xc3\x7f\xd0\xcc\xa2\x47\x8a\xa6\x5e\xcb\xb6\xfd\x39\xe9\x2c\x58\x1f\x3e\x90\xf4\xed\x80\x36\x61\x5e\x90\x62\xa4\xc6\x6d\x7d\x42\xbf\xdb\x5e\x8b\xc2\x15\x05\x0c\xfc\x95\x78\x7a\xbd\x57\x06\x11\x0c\x8a\x3f\x69\x25\xe5\xe7\x13\xf8\x75\xcf\x2d\x79\xbb\x84\x97\xa0\x59\xc2\xbb\xf8\xa9\xd4\x71\x42\x56\x4d\x67\xe2\x2e\x2b\x55\xc2\x9f\xe4\xcd\x36\x9d\x92\x03\x2c\xbc\xdb\x56\x7b\xbe\x72\xe5\x22\x42\x48\xf8\x04\x1f\xcc\x3e\x47\x30\xb4\x2a\xdd\x63\xe2\x7e\x81\x60\x6a\x53\xb6\x50\x28\x3e\x82\x40\xdf\xea\x79\xd7\x4c\xf5\x27\xfc\x4e\xfc\xb6\xa4\xeb\x76\x10\x41\x3f\xdc\xe0\xe0\x65\x76\x04\xa1\x51\x69\x9f\xf9\x9a\xfd\xd1\x04\x61\xd3\xa1\x2b\xa1\x45\x51\x84\x33\x9a\x91\x86\x5f\x84\x22\x09\xc9\x1e\x5f\x74\x8d\x95\x23\x09\xda\x2b\x0b\xbd\x62\x6c\xc2\x09\x1e\xe7\x26\xc8\x99\xd8\x5d\x21\xa8\x7b\x7e\x59\x76\x6a\x5b\x04\xe1\x92\xe2\xb5\xc9\x63\x2b\x6c\x09\x79\x0f\x57\xf3\xd6\xcf\x0c\xe3\x28\xb3\x52\x1e\xae\x2d\x3e\x34\x93\xd0\x1b\x77\xac\xbb\x66\x9e\x0f\x21\xac\xb8\x4e\xe7\xb5\xc6\x35\x06\x6f\x87\x4c\x3e\xb6\xff\x91\x20\x84\x1d\xe3\x6f\x57\xc2\x78\x42\xc3\x8a\xd4\x4d\x2d\xc6\xe5\x84\x6f\xd3\x0b\x5a\x0b\x26\xe4\x12\xbc\xba\x2c\x2e\x94\xf9\xaf\x21\x4c\xca\x7d\x93\x54\x7b\x7d\x21\x07\x2e\xfa\x3d\x9b\x15\xf3\xec\x07\x6b\x14\x7d\x83\x0b\xae\x38\x7f\xb4\xa5\x51\x34\xc5\xce\xb9\x7f\xc8\xf7\x07\x0b\x4b\x8c\x26\xc5\x6f\xf2\xbd\xc0\xc6\x38\x23\x77\xc7\x47\xec\xa5\x34\x0a\xcb\xb0\x19\x63\xef\xdd\x7f\xcd\xc6\x87\x9a\x45\x67\x8f\xd4\xaf\x21\xfc\x1d\xa4\x5d\xec\x4f\x92\x84\xe7\x62\x65\x6a\xeb\x5f\x68\x11\xe4\xee\x3e\xcc\xe8\x9c\xad\x44\xd0\xc9\x79\x2e\xec\x63\x70\x8a\x60\x67\xa5\xa8\x60\xf8\xd8\x97\xb0\x76\xcb\x0b\x39\x55\xf1\xfb\x04\x7b\x1d\x81\xa4\x8a\xc0\x52\x42\x82\xf1\x51\xde\x11\x64\x97\xaf\x93\x38\x1f\xd3\xc4\x1a\xc5\x01\x1b\xf1\x0c\x8b\xa6\x34\x42\xd7\x51\x38\x9a\x0f\xa3\xca\xf3\x70\xad\xd9\x30\xa4\x17\xf5\x1b\xef\x1c\x46\x2c\x77\x8d\xff\xcf\x7a\xa3\x7f\xc1\x78\x4b\xe5\x82\x9b\x39\xa9\x04\x03\x76\xd1\x51\x55\x55\x39\xc2\x2f\x9f\xd4\x93\x9b\x1a\x2a\x08\xa9\x6b\xdf\x35\x8e\x99\xd3\x40\x58\x7d\xff\x66\xc2\xd8\x61\x5c\x4b\xf9\x53\x56\xb6\x65\x1f\x61\xd1\x8c\xb3\x61\xd5\x83\x56\x84\x5a\xc3\x27\xf1\x6f\xcb\x8e\x13\x06\xc6\xcd\x79\xbe\x5c\x67\x1f\x61\x96\xca\xa4\xe3\x99\x87\x4d\x08\x27\x8e\x2a\xfe\xb6\x15\x33\x21\x74\xac\x57\xac\xca\x9e\x9c\xc4\xe0\xa1\x4f\x4c\x97\x21\x4f\x22\xc1\x98\x31\x79\xb1\xc4\xb8\x82\x70\x66\xb3\xa7\xa7\x9f\x79\x05\x61\xa7\xd9\xb4\x87\xf9\x09\xb1\x0c\xf2\xdf\xbe\xbc\x56\xfd\xce\x8d\x60\xfd\x7e\xd0\x36\x52\xfd\x24\x8d\x96\xb4\x59\xd7\x24\x4f\x67\x6c\x25\x74\x4f\x2b\xb6\x95\x7e\x3d\x81\xd0\x35\x5e\x2c\x68\xfc\x2e\x6e\x0e\xa4\x64\x39\xd9\xbe\x3f\xd2\xcb\xc2\x9c\x67\xf2\xd6\xea\x01\xd9\x04\xcb\x01\xa9\xcd\x29\xbe\xb9\x84\x44\x35\xfd\x1b\xa9\xc3\xb0\xad\x5c\x3f\xc9\xc9\x6e\x1b\x07\xde\xb5\xd9\xad\x1d\x73\x7a\x3c\xe1\x45\x45\x6b\x9c\x36\xd7\x0a\xc2\xf9\x1d\x53\x5f\x7c\x14\x0e\xe3\x80\xaf\x0b\xf7\x93\xea\x7b\x3c\x84\xa8\x5b\x17\xc7\x7f\x7f\x9d\x4f\x08\xee\x31\x31\x59\xd5\x71\x9c\x60\x65\xa7\xe9\x3b\xb8\xcc\x9d\x30\x78\xf8\x58\xc6\xd1\xc9\xab\x08\xa7\x2e\xed\xaa\xdb\x23\x18\x45\x58\x39\xf8\x41\x7c\x9c\x41\x0c\x03\xc7\xfd\xcc\x8f\xb1\xc3\xf8\xaf\x38\xb5\xce\x3e\xa0\xa7\x7f\x89\xc1\x59\x61\x35\x75\x55\x43\x6f\xc2\x90\xf0\xf2\xac\x02\xc9\x1c\x06\xa7\x82\x5b\x0b\xed\x0e\x1c\x23\xcc\x1e\xf8\xd9\x1f\x2b\xde\xc2\xc0\xda\xe1\x1c\xeb\xcd\xb7\xeb\x0c\x36\x25\x8c\x17\x92\xea\x3f\x46\xb8\xe0\x25\x3b\x23\x7c\xa3\x1f\x8d\x16\x32\x3a\xbc\x78\x9f\xd6\x75\xc2\x64\x8f\x2d\x2d\xbe\xea\x67\x18\xf4\x1d\x50\x1a\x0a\x6b\xd4\x20\x38\x8a\x25\x7f\x7b\xaa\xba\x8c\x03\x3e\x57\x5d\x5f\x6a\xd5\xbd\x60\xa1\xfd\xfe\x07\x7b\xae\xd8\xe9\x84\xde\xc5\x7f\x9e\xed\xe9\x5d\x4d\x38\xf3\xb0\x44\x5c\x68\x69\x1c\xa1\x32\xb5\xaa\x57\x4d\x3a\x8e\x10\xf1\x3b\xc5\xc8\x43\x62\x3b\xa1\xf6\xc8\x32\xae\x03\x4e\x7a\xcc\x68\xb9\x7c\xd0\xcd\xed\x8a\x01\x1f\x61\x88\xeb\x73\xb0\xb3\x68\x0e\x61\xcd\x86\x9e\xa9\xc2\x9d\xcd\x84\x69\xdf\x36\x1a\x2d\x32\x7b\x45\xc0\xd2\x45\x35\x79\xdc\x6f\x18\xd8\x5e\x5c\xfb\xf1\x56\x70\x07\xa1\xb0\x5f\xf0\x0e\x22\xfd\x08\xcb\x65\x25\xa7\x3c\x3d\x7c\x9e\xf0\xd7\x4c\x7b\xf2\xb4\x15\x91\x04\x73\x51\xb1\x07\xfc\x2b\x6e\x11\x3e\x3b\xa8\x0a\xdf\x3b\x1d\x40\x90\xad\xdd\xd2\x1e\x1a\xe5\x47\x38\x8f\x2c\x19\xf1\xa4\x30\x82\xad\x64\xb9\xd3\xca\x09\x61\x84\x4d\xa6\x97\xef\x1b\xa7\xf7\xb1\xf0\x69\xda\xe9\xf5\x02\x66\xb3\x08\x37\xbc\xb5\xf6\xf7\xa6\xe5\x12\xdc\x0f\x7e\x12\x90\xaf\x4c\x21\x58\x4e\xaf\x4b\x1b\x7c\x1a\x47\xb8\xb9\x6a\xb6\xd4\xae\xa8\xe1\x6f\xc7\x65\x40\x5e\xe1\x6a\x17\x0b\xf9\x7f\x67\xaa\x5a\x73\x4f\x23\xec\x29\xc5\xee\xc5\x96\x01\x84\x2b\xd5\x3f\xaf\xcb\x0d\x63\xe1\x76\x79\xa7\x5a\x93\x69\x04\xff\x23\x4b\x34\x3d\xe2\xd3\x19\x5c\xfa\x65\x70\xfa\xe2\xa4\x4c\xc2\x8e\x90\x67\xf3\xd6\xcc\xcf\x23\xac\x2d\x24\xad\xba\xaa\x3c\xc2\xfc\x6d\x43\x61\x0f\x7e\xba\x11\xbc\x15\x6e\x15\xfc\xf6\x3c\x4f\xe0\x79\x2c\x2a\x79\xfd\xb0\x25\x41\xcf\x52\xf2\x81\x7a\x93\x15\x33\x5a\xe0\xf4\x55\x7d\x4e\xd1\x0e\x02\x5b\x73\xe1\x2d\x99\x7a\x75\x42\xc7\xcd\x77\xcf\xbe\xda\xcb\x12\x3e\x8e\xd1\x11\xfd\x69\x36\x96\xb0\x33\xc4\xd1\x62\x6e\x92\x2c\x61\xc3\xf1\x9d\xbc\x0a\x92\xe5\x84\x96\xe9\xcd\x4f\x17\xf6\xaf\x26\x1c\x13\x0f\x2c\x7d\xad\x57\x40\x10\xd0\x78\x2d\xf2\x66\x18\x95\x2b\x4a\xd4\xee\x6a\x37\xb2\x46\x21\xf8\xd9\x78\x87\xd2\xf2\x58\x82\xc2\x15\x3e\x8d\x5b\x75\xd6\x04\x7d\x3d\x21\x76\xd2\x4b\x59\x82\x5f\xc2\x9d\x6a\xbf\x37\x0f\x09\xfa\xa7\xc7\x3a\xf4\xaf\xbb\xc6\xa0\x27\x7a\xfc\x56\xa5\x79\xf2\x84\xc9\x8b\x3d\xbd\x26\x7f\x9f\x47\x78\xe1\x64\xaf\xbc\x7e\xf2\x35\xc2\xd4\x1d\x89\x85\x4f\x0d\x35\x39\x60\xb2\xe8\x3d\x8f\x91\x9f\x35\x07\x26\x3b\xc7\xee\x9f\x1f\x29\x44\x28\xaa\xdc\xc4\x77\x22\x71\x25\x61\xb0\x37\x3f\xf9\xf6\xa7\x09\x1c\x30\xe9\x0e\x33\x52\xed\xfa\xc1\x1a\x45\xe0\x19\xd5\x3c\x39\xb5\x5c\x16\xce\xf7\xac\xc9\xfa\xa5\x7a\x90\xa0\xb1\xae\x50\xe7\xd7\xdc\x2e\x16\xda\x83\x3b\x03\x62\xdf\x0a\x12\xb8\xe3\x3d\xda\xed\xfd\x5e\xb0\xd0\xaf\x70\x6a\xd2\x9c\x98\x08\x82\xca\xa2\x93\x7e\xd9\xe6\x86\x84\x66\xbb\xa7\x3f\xc7\xec\xdd\x4e\xd8\x28\x88\x82\xca\xbf\x12\x04\x97\x02\x31\x25\xf9\x45\xe3\x08\x03\x2b\xcc\x5a\x2f\x29\x7b\x10\xde\xc5\x8e\x4b\x19\x74\xad\x24\x6c\xf4\x10\x7e\xa0\xe7\x72\x89\x30\xae\xba\x51\x6e\xfe\xe7\xe9\x84\x23\xa1\xb1\xea\xbf\x05\xe7\x11\x94\xb5\x42\xa3\x8e\x2a\x2b\x71\x20\xdd\xec\x4b\xa6\x69\x6c\x0d\x1b\x3a\xcd\x6f\x6d\x76\x69\x37\xb1\xf1\xe2\x16\x33\x37\xcb\x7b\x0a\x8d\xc2\x73\xb9\x7e\xf0\x5f\x91\x9b\x84\xba\x25\x7e\x16\xfa\xcf\x6d\x09\x57\x1c\xdb\x77\x84\xed\xbf\xc9\x60\xbb\xfd\xd1\x8c\xd7\xc6\x62\x84\x87\x4e\xf2\x5f\x77\x2f\xbe\x41\xb8\x2c\x56\x7f\xa6\xfb\xcb\x74\xc2\xf7\xc3\xf9\xcf\x06\xfb\x7e\xb0\x30\xb8\x65\xa6\x6c\x77\x9e\x04\xe1\x2b\x97\xe2\x52\x77\xae\xe1\x27\x66\xfd\x66\xec\x1b\xff\xa5\x84\xd3\xfd\x8b\xf6\x5b\x85\xc9\x12\xce\xc4\x05\x04\x48\x5e\xe7\x25\xd8\x75\xba\x1d\x75\xfa\xbe\x8c\xb0\xc1\x3e\x36\xd5\x45\x73\x39\xc1\xa1\x2b\xf8\xd8\x8f\x94\x6d\x84\x30\x91\x2d\xce\xbb\xac\x95\x08\xf1\xfb\xa6\xcb\x1d\xfb\xf4\x8c\x85\x05\x72\xca\x16\xf7\xa3\x7d\x09\x57\xd2\x5f\x6b\xb6\x3e\x16\x27\x28\x4d\x6a\x3f\x78\x81\xe1\x27\xbc\x7a\xd7\x78\xab\xef\x88\x14\xe1\x56\x46\xd5\x8a\xca\x21\x6d\x82\xf1\xfb\xb6\xba\x82\xdb\xf3\x08\x63\xc3\x07\x14\xd6\x84\x3d\x62\x63\x20\x6a\xf5\xf3\x5d\x26\x93\x08\x73\x65\xc7\x6a\x3e\x0b\x34\x27\xa4\xaf\xa9\xbe\xb8\x59\xc1\x88\xb0\x5e\xd0\x49\x46\xb9\x41\x8e\xb0\xac\x8b\xe6\x47\xdf\xf8\xc4\xc2\x9f\x9a\xdb\x8e\x42\x55\x3f\x38\xc0\xaf\x39\xe1\xeb\xfe\xd0\x67\x2c\xbc\xe6\x69\x48\x18\xff\x8d\x9b\x20\xa0\x1b\x8e\x04\x83\x19\x04\x9e\x6f\x7e\x03\xe8\xee\x61\xe1\x62\xd7\xd8\x82\x31\x32\xc2\x04\xa1\x13\x4c\xde\xdf\x2f\xbf\x59\x38\x62\x9e\x9a\x3b\xa1\x75\x0b\x41\x4a\x4f\x86\xfb\xed\x62\x1d\x82\xed\x1e\xc1\xbf\xd3\x6b\xfb\x58\xd0\xe9\xee\x0d\xfc\x6e\x79\x9d\xf0\x6c\xc3\xd6\xa6\x89\x36\xff\x44\xaf\xe0\x9c\x76\xef\xd3\x7e\x04\x8b\x95\xe2\x99\x0a\x93\x43\x09\x0e\xf7\x3a\xca\xd2\x03\xfc\x08\x6d\x79\x3a\x5d\xeb\x2e\xfb\x71\x94\x70\x16\x6f\xe1\xde\x9b\xdb\x09\x65\xba\xe3\xb2\x7d\xa2\x4a\x08\x4a\x7a\x77\x5c\x2f\x51\x18\x61\x2a\x73\x40\xc0\x62\xa6\x3b\xe1\x6f\x6b\xfa\x93\x59\xc9\x6e\x84\x2d\x5e\x9d\x73\x6e\x2e\x0f\x64\x70\xe5\xf1\xf2\xbd\x8b\x14\xbd\x08\x97\x2f\x32\x2e\xe2\xfe\xa1\x84\xd8\x99\x55\xd2\x63\x34\x43\x09\x2b\xcf\xdf\x8e\xd1\x0f\x3d\x4e\x50\x5e\x89\x69\x77\x13\x4b\x08\x71\x81\x2b\x67\x87\x6c\x8f\x26\xb8\xd7\xd6\xaf\xfa\x34\xb0\x87\xb0\x6b\x83\x70\xc5\x39\xc6\x90\xb0\x3a\xc5\xe7\xd2\x6c\xef\x48\x82\x46\xa4\x81\x6d\x5d\x62\x08\x21\x7a\x6b\x73\x70\xa5\xef\x39\x06\xe7\x7c\x82\x33\xf6\xab\x45\x10\xc6\x36\xcb\x29\xc5\xab\x95\x13\x6a\x5e\xb6\x5b\x3a\xcd\x2d\x27\x2c\xfe\xe0\xa6\x9a\x30\xbb\x9c\x10\xe1\xc4\x63\xa5\xa9\x58\x4e\x78\x1d\x50\xa1\x29\x28\x52\x4e\x50\x13\x79\x68\xe0\xd4\xa9\x4f\xf8\x35\x6f\x75\x4e\xef\x1f\x7f\x06\xdc\x19\xbe\x6a\x75\x16\xca\x04\xb9\x9f\xd2\x4b\xdd\xb6\x6e\x25\x8c\x6b\x6e\x34\x32\x1f\x94\xe1\x40\xc9\xc4\xbf\x3c\xdd\x0a\x60\x61\xf2\xf1\x0c\xf1\xd5\x0d\x2e\x84\xa7\xfb\x02\x36\x2a\x6a\x97\x10\xc6\x5e\xfd\x55\x34\xd5\x8e\x4d\xe0\xdf\x7b\xdb\xbd\x4c\xbc\x84\x90\x72\xee\x4d\xa7\x84\x07\x43\x28\x92\x7f\xf9\xda\x54\xf0\x09\xe1\xd0\x92\x98\xc5\xbb\x4c\x4a\x08\xf9\x2d\x76\xb5\x16\x76\x37\x09\x17\xfd\x57\xe9\xaa\x88\x1a\x31\xf0\xce\x99\x13\xe1\xfc\x8c\x8b\x20\xf1\x5d\x41\xe3\x84\xce\x55\x82\xb2\x66\xa7\xf2\x37\xbb\x04\x82\xa3\xc7\xe5\xa3\xb4\x6e\xeb\xff\x83\x25\x41\xf4\x66\xf3\x84\xe3\x8b\x7b\x59\xff\xc0\xb7\x4d\x3e\x7b\x4c\xe2\xb4\xe9\x1f\xa8\xd7\xd8\x67\x3c\xab\x44\x94\xf0\x28\xef\xf7\xcd\x55\xf5\x92\x84\xd7\x15\x52\xbb\xd7\x9d\xd0\x24\x14\xbd\x5e\xe6\x34\x95\x51\x24\x44\xcc\x57\xdd\x1c\x75\xa2\x8b\x05\x51\xc5\xc3\xe7\xbc\x0f\xaf\x25\xd8\x98\x87\xc8\xfe\x28\x5a\x43\x58\xfa\xf5\x55\x91\x8f\xfc\x06\x82\xb9\x95\x71\xc2\xd2\xbf\xb3\x09\x49\x65\x4c\x0b\xeb\xe1\x27\x16\x4a\x6f\xcd\xc9\xe8\xea\x1f\x47\xf0\x57\x57\xe2\x2f\x8f\x1a\xde\x3b\xbb\x7c\xb2\x76\x4c\xd3\xe6\xc0\xd8\x15\x4c\x0a\x57\x55\x2b\x1b\x46\x54\xd8\x73\xb4\xf5\x13\x0b\x83\x96\xe3\x0a\xcd\xa4\xd5\x69\x14\x7f\xda\xbe\xae\x28\x52\xde\xce\x51\x7e\xbe\xda\x65\x7a\x5e\x68\xfa\xbf\xd0\x17\xae\x37\xd0\x10\x5d\xcb\xc2\x3b\x09\x8d\x38\x8f\xd5\x36\x84\x76\xe7\xab\x87\x0e\x0d\xad\x63\xf0\x23\xab\xa8\xd7\x35\xe0\x0c\x8d\x62\xe7\x29\x66\xac\x6f\x53\x18\x07\xec\xc5\xce\x9c\x0e\x71\xce\x22\x88\x4f\xcb\x35\x5d\x5a\x37\x96\x03\x9d\xe9\xe5\x43\x9d\x7f\x6f\xb3\x60\x70\x2e\x68\x4d\xe5\xbd\x2f\x2c\x7c\x7e\xaf\xd1\x61\x31\xfe\x3b\x07\x0a\x1f\x4e\x7e\x76\x86\xa9\x66\x8f\x82\xf5\xf5\xfd\x65\xd3\x1d\x32\x34\x8a\x23\xbb\x1f\xba\x4b\x56\xaf\x26\x2c\x6a\x5a\xa5\x3b\x8f\x35\x86\x90\x24\x14\xb4\x7e\x1d\x57\x12\x07\x66\xc8\x7c\x54\x2d\xf6\xb2\x27\x2c\x3f\x68\xf1\x64\x5a\x79\x3a\x0b\xbb\x36\xdc\xaf\x56\x2c\xcb\xa7\x51\x5c\xc8\x8b\xbe\xf2\xff\x81\x89\xde\x76\x2a\x71\xe5\x66\x1c\x78\x96\xaa\x18\xb7\xdb\x9d\xcd\x8c\x16\xae\xb8\xa4\xcf\x03\x56\xd3\x09\x73\x79\x23\x74\x16\xa7\x7f\x64\xe1\xfd\x3c\x5d\xcd\xbd\xbc\xb3\x69\x14\x32\xaa\x32\xa9\xca\x42\xaf\x58\x28\x1c\x83\x18\x51\xa5\x3f\x2c\xdc\x13\x79\x77\x35\x3f\xad\x8f\x85\x8f\x4e\x59\x7c\xc6\xc1\x82\x84\x2f\x32\x81\x0e\xb5\xe3\xf4\x69\xb4\x5c\x9f\xc4\xad\xc5\xf3\x3b\x89\xb0\xfd\xb7\xba\x87\x84\xe6\x6d\x42\x52\xfc\x2e\xd5\x85\x07\x37\x72\xc0\x37\x3e\xc4\xc7\x63\x30\x84\x70\x53\x5e\xe6\xae\xc5\x3d\x5f\x0e\xec\x3d\xc8\x07\xde\xf1\xe9\x84\x76\x1b\xf7\x58\xf6\x18\x5f\xc2\x42\xbe\xda\xee\x82\xbf\xc1\x84\xa3\x02\x7c\x12\x5a\x3f\xc7\x10\x4e\x1d\x0b\x4b\x52\xcf\x59\xcf\x01\xad\xe9\x01\x85\xae\xac\x19\x1c\xd0\xcd\xd1\xfb\x75\x65\x7c\x35\x0b\xd9\x45\x55\x4b\xda\x96\xf6\xb2\x30\x91\x6c\x55\xe4\x72\x9c\x08\xed\x9a\x95\xf5\x26\x8b\x4f\x10\x9a\x9e\x65\xa7\x59\x73\x59\x13\x3e\x7f\x08\xbc\xf5\x37\xff\x2c\x21\xcd\x67\xc2\xd7\x75\xd3\xce\x12\x0a\x4d\xa2\x1e\xcc\xbe\x6d\x41\x98\x72\xc3\x2b\x59\xee\xc4\x06\x02\xff\x8b\xd9\xe5\xab\x34\x17\x13\x32\xc4\x30\xf1\xd9\xed\x47\x84\xc4\x8a\xf9\xe7\x25\x2f\x3c\x23\x5c\x0a\xf2\xdf\x2e\x3b\x8c\x25\x66\xd3\xef\x9d\x7c\x1e\x43\xf0\x3e\xcb\x9b\xb3\x78\xa4\x14\x19\x1e\x79\xfa\x40\x93\xc1\xd7\xe9\x85\xe7\xdc\x9e\xfb\x11\xdc\x7e\xc4\x84\x8e\x99\xe9\x4d\xd0\x3e\x75\xe8\xf4\x0c\xd5\x48\xc2\xef\x1f\x9a\x9f\x6c\x6c\xac\x08\x61\x5a\xdb\x3f\x3d\x3a\x1b\xc0\xe0\xc6\x4c\x9f\x3d\x8a\x5c\x3f\x58\x58\xa0\xfe\x29\x75\x91\xe0\x0c\x42\x84\x8a\xee\xe9\xea\x44\x6f\x66\xb4\x88\x1c\x2d\x49\x65\x35\xf2\x10\x22\x05\x5d\x54\xc7\x37\xe4\x33\x38\x58\x2f\xd2\x9b\xfc\xf2\x1b\x0b\x62\x9b\x2f\x25\xd7\x48\x4d\x25\xa4\x34\xa7\x3b\x9a\x94\xf2\xfd\x0b\xdf\xdb\x32\x0d\xd6\xaa\xce\xfe\x17\xd6\x39\xdc\x9b\x07\x27\x3e\x0e\xd4\x29\xae\x9a\xb6\xe5\xe2\x1c\xc2\x52\x0d\xfe\xcc\x38\x2b\x2d\xc2\x2f\x35\x39\xd1\x98\x68\x55\x82\x85\xbb\xbf\xb0\xdf\xa3\x99\x04\xb1\xc2\x07\x26\x71\xc2\x53\x09\xdb\x2a\xf3\xac\x56\x6c\x5c\x43\xf8\xb1\xb4\xe5\x75\xda\xa4\xa5\x84\x4d\x4f\xb3\x0c\xf7\x18\xd4\xb1\x70\xe8\xe0\xc1\x1b\x65\x3f\x66\x10\x06\x1d\xff\x4c\x59\xca\xbb\x90\x70\x65\x5e\x64\xa8\xe4\xd5\x59\x84\x83\x6d\xea\x6a\x17\x15\x4f\x10\x5a\xd7\x6e\x93\x35\x4f\xbd\x48\x38\xbb\xd7\x61\x8d\xcf\xed\x4f\x2c\x44\x9f\xe8\x58\xb1\xf9\x54\x31\x83\x2b\xcd\x36\x1f\xcf\x3b\xcf\x21\xc8\x2b\xbb\x25\xdb\xe5\x0f\x9f\xc3\xb9\xe2\xf5\xdd\xc2\xae\x11\x58\x66\xd5\x15\xcd\xd3\x43\x09\x96\x0a\x1d\xde\x8b\x96\x39\x12\x72\xb8\x8d\x7e\x46\xd7\x1e\x24\xf0\x6e\xe2\xb6\x8b\x7e\xbe\x8a\xf0\x71\xea\x76\xab\x94\x0d\x17\x19\x28\xac\x3a\x64\xb4\xfd\x74\x17\x0b\xdd\xa2\x4f\x27\xa4\x59\xcc\x20\xd8\x8a\xfc\x2a\x9d\x55\x7d\x97\x03\xee\x1a\x7f\xa5\xaa\xe6\x7d\x61\x8d\x62\x7c\xa5\xf0\x12\x9b\x8a\x6f\x2c\x6c\xf8\x28\x74\xc0\xa5\xe7\x0b\x0b\x9b\x22\x17\x6a\x25\xf2\x0a\x11\x8e\x2e\xcc\xd0\xda\xac\x32\x7c\x7e\xfe\x7f\x65\xb3\xca\xe7\xd8\x8c\xca\xf7\x2c\x9c\x8d\xb4\xe4\xda\x68\x24\x40\x58\xc2\xdb\x54\xbc\xe2\xda\x76\x0e\xd8\xd6\xbe\xf2\x49\x92\x16\x22\x08\xeb\x46\x3d\x1c\xac\x4b\x20\xa8\xb4\xfa\xbb\xf4\xd5\xfb\x11\xb8\x1b\x43\x6b\x7e\xa6\x89\x12\x0a\x05\x3a\x62\xd7\x3f\x54\x25\x2c\x8d\xb5\x09\xbf\x55\x7f\x97\x03\x2b\x55\x07\x17\x8c\xa0\xfc\xcb\x9f\xdb\xea\xb3\x6b\xd9\xd0\xe4\x0b\x3c\xa3\x72\xba\x8a\x81\x77\xd5\xd2\xe9\xe3\x57\x9f\x61\x10\xbe\xe8\xd0\xa0\xbe\x5e\x3e\xe1\xc8\x91\xc6\xd2\xcd\x46\x53\x08\xb2\xb1\xb9\x9f\x5f\x3d\x18\xcb\x81\xc1\x24\xe7\xed\x3d\x61\xe5\x6c\xa4\x86\x9d\x71\x39\xf2\xc5\x83\x81\xf0\xf2\x49\x3b\x62\x0c\x26\x10\x0e\x97\xa8\x9d\x9d\xf9\xb3\x84\xb0\x27\x0d\xfd\xeb\xfa\x4a\x08\xaf\x77\x5b\x6b\x6a\x0e\x43\xae\x70\xed\x75\x83\x05\x09\x1c\x78\xe0\x26\x7f\x6e\x04\xc7\x56\x17\xde\xe8\xdb\xcc\x43\xc8\xe6\x0b\x98\xa5\xca\xf6\x65\xd0\xb1\x7e\x89\x7a\x73\x8e\x33\x61\x9c\x6b\x76\xff\x90\xc6\x3e\x02\xf6\x59\x7a\x70\x4f\x9e\x4a\xe0\x55\xd8\x24\xe7\x95\x24\x47\x58\x65\x3b\x2e\x98\xf5\x54\x93\x20\xa6\x1d\x6c\xef\x94\xbe\x83\xa3\x74\x0b\x66\xcf\xb8\xc2\x8c\x21\x98\x47\xca\x04\xa7\x88\x28\x73\x14\x18\x5b\x14\x25\x95\x7c\x62\xc1\xfc\xda\xe3\x8e\x77\x73\x7e\xb3\xd0\xb8\x69\xe9\xca\xdb\x9a\xc1\x0c\xf4\xbf\xd6\xf7\xd9\x76\x3d\x24\x08\x76\x39\x28\x6e\xdd\xd6\x4a\x48\x35\x74\xf4\x4b\x3a\x7d\x9f\x20\xb5\xfe\xb9\x67\x2c\x5f\x1b\x41\x89\x95\x28\x92\xbe\xb7\x94\x20\x50\xfd\x64\x28\x91\xff\x16\x03\x29\x21\xbe\x55\xf5\xe5\x79\x84\xb9\x02\x01\x77\x6f\x77\xef\x20\x68\x0e\xbd\xb8\x16\x9e\xd9\xc9\xc2\xc9\xa4\x8b\x2a\x2e\x1b\xb3\x09\xba\xbe\x11\x67\xf8\xda\xb6\x10\x0e\xcf\xfd\xf9\xed\xd7\x55\x3d\x42\x56\xc6\x79\x69\xf9\xc7\xf7\x18\x7c\xb1\xaf\xcc\x98\x71\xa7\x88\x20\xba\xac\xe2\xf2\x5b\x9a\x45\xf8\xac\xc5\xa5\x55\x92\x71\x8a\xe0\x26\x16\xe0\xd5\x7f\xbb\x99\x50\x6e\x22\x3e\xe8\xf0\xe1\x0d\xc1\xbb\xe2\xf5\xd2\x16\xb7\x0e\x42\x59\x8e\x98\xe6\xa1\x8b\xf9\x84\xc9\x87\x24\x55\x85\xea\xf2\x09\x73\x06\xe7\xef\x7f\x59\xf5\x8c\x20\xf3\xd4\x72\xfd\x1b\x1f\x7f\xc2\x94\xca\xc4\x36\x97\x9b\xd7\x09\xe1\x9a\x47\xe7\x0f\xec\x70\x26\x94\x3e\xdc\x7d\x35\x75\xe3\x4a\xc2\x02\xb0\xcc\x3f\x0a\xf4\xb2\xb0\x8b\xdf\xe0\xc4\xa6\x16\x0d\xc2\x87\x03\x51\xc8\xaf\x06\x0b\xaa\x9e\x3d\x5b\xc6\xe7\xc7\xd1\x28\x78\x2c\x6f\xb7\x3a\x65\xef\x63\x46\x4b\xea\xb9\x82\xd9\xcd\x73\x22\x38\xa0\x13\x7d\xa7\x63\x6e\x4c\x38\x47\x39\xf6\xb8\x5b\xac\xc7\x25\x9d\x41\xfa\x37\xf7\x9e\xcb\xcf\x1c\x09\xdf\x4b\xcf\xea\x24\x1c\x2c\x25\xe8\xf7\xec\x2b\x5d\x91\x99\x44\x78\x6d\x7d\x73\x99\xc5\xb8\x7a\xc2\x3c\xdf\x0b\xdd\x23\xe5\x40\xa7\x55\x55\x99\xa2\x15\xa1\x29\x7e\x89\x37\x4b\xbb\x94\x03\x69\x4d\x97\x8d\x92\x3e\x04\x10\x5a\x8c\x5f\x2c\xd3\xcf\x75\x20\xb8\x7f\xb5\x98\xf2\xad\xfb\x04\x21\xf7\xf1\xbb\x8b\x6f\x4f\x9d\x20\xf4\x65\x49\xbe\xef\x3d\xb0\x87\xd0\xa1\xfb\x3e\xe5\xcd\x73\x43\x06\x87\xee\x3c\x4c\x97\x95\x39\x49\x70\x70\x39\xe5\x1f\xf2\x78\x3f\x21\xd2\xac\x9c\xa7\xeb\x58\x1d\x1b\xd9\xdd\x36\x51\x32\x9e\x45\x84\x77\x79\x17\xb7\xc9\x2b\x15\x11\x16\xd4\x4f\x5b\x35\x52\xfe\x1b\xc9\x06\x78\x26\x73\x1d\xf5\x26\x0c\x3c\xd6\x58\x18\xfb\x36\x9f\xb0\x6d\xbe\xf3\xdf\xdf\xd3\x6b\x09\x3f\x1a\x3e\x97\x9b\xb6\xb9\x11\x32\x65\x27\x6d\x2f\x55\x2d\x27\x14\x0c\xed\xd7\x97\xe3\xeb\x67\xe1\x68\xee\xb2\x65\x83\x52\x77\x09\xce\x2a\x73\xb4\xcf\xb5\x55\x13\xb6\xd4\x2d\x91\x5f\x1f\x71\x85\x30\xcb\x79\x81\xc8\xc8\x68\xcb\x83\xbe\x88\x2b\x69\x06\x84\xb3\xaf\xe4\xd8\x45\x13\xad\x08\xd7\xd2\x32\xd4\x97\xb9\xe7\x13\xce\x1e\xfe\x62\x99\x31\xbc\x38\x24\x7b\xfb\xcb\x56\xff\x0a\x82\xef\xd5\x39\x93\xcb\x2e\xe4\x13\xa2\xbf\x08\xb7\xca\xe4\x67\x11\xf4\x35\xa2\x25\x1d\x8d\xeb\x09\x1b\x82\xce\x5c\x5d\x22\x79\x92\xe0\x79\xda\xcc\x71\x51\x61\x3e\x21\x78\x12\xbf\x99\x5c\xc9\x0a\x42\x96\x3d\x37\xab\xc4\xe1\x38\x21\xeb\x39\xcf\xd7\x97\xca\x42\x84\xe7\x7e\xcb\x93\xdf\x86\xa5\xff\x4f\xcc\x08\x4e\xfb\xd9\xb3\x85\x8b\xd0\x91\xb9\x67\xf7\xa9\xd2\xe9\x04\x15\xfe\xec\xaf\x0b\xd6\x65\x13\xb8\xad\xb9\x2c\x83\x6d\xef\x10\x26\x69\x5f\x3e\x54\xef\x94\xcf\x8c\x8e\xc6\xfe\x92\x0e\x9e\xf1\x91\x8b\x20\xb8\x64\x20\xa1\xa2\xd0\x9e\x30\xbe\xa5\xe3\xe0\x35\x99\xa9\x84\xe2\xf2\x34\xb7\xeb\xb7\x0e\xfe\x0b\xc7\x9b\x0a\xf4\xcf\x1b\x8a\xfd\x0b\xe1\x42\xdd\x4b\x02\x26\xa5\xb3\x31\x2b\x44\x79\xe8\xe3\x8f\x78\x82\xcb\x91\xc5\xeb\x7f\x16\xfc\x65\x41\x34\xb5\x61\xc9\x65\xde\x08\x02\x7b\x7d\x8e\x77\xa1\xaf\x31\xa1\x67\xf5\xe3\x3c\x94\xcc\x20\x0c\xdc\x7d\xa5\x3e\xb7\x5c\x85\x60\x7c\xe6\x5d\x8b\x9a\x48\x30\xa1\x2e\xe4\x93\xa4\xf6\x8b\x5c\xc2\x9e\x2f\xea\x51\x86\x37\x9f\x11\x96\x3d\x72\xe9\x7f\x55\x5e\x47\x60\x8f\xdf\xc8\x5e\xd7\x62\x48\x70\x3d\xc9\xad\x38\xc6\xd6\x9c\xc1\x3c\x1b\x99\xa8\xc0\x45\xf7\x38\x46\xd3\x3c\x8e\xb9\x9e\x67\x2b\x10\x6a\x26\x95\x27\x1e\xd6\xe3\x22\x74\xa6\x2c\xb0\x36\xbf\x7a\x9a\xf0\x79\xed\xc4\xa9\x2e\xde\x86\x84\x33\xaa\xcd\xb3\x8e\xae\x5a\x49\x48\x76\xee\x17\x08\xff\xb1\x95\x90\xf4\xfd\xfa\x2d\x9e\x80\x32\x42\xb7\xe2\xd0\xf6\xae\x37\x65\x84\x13\xe1\x3a\xbc\xc9\x9a\xa5\x84\x05\x2a\x5e\x3f\xd7\xdc\x2a\xe5\x18\xdd\xcf\x8e\x90\x0d\x7d\xc3\x10\x3e\x72\xf3\x73\x2b\xbe\x64\x08\x85\x07\x32\x32\xe7\x58\x32\x04\x81\x08\x1e\x07\x8b\x87\x0c\x21\x65\xba\x42\x12\x6f\x11\x43\xd8\xec\xe0\x37\x36\xe9\xdd\xf0\x75\xc0\xec\x57\x94\xea\xb2\x70\x06\xdf\x7d\xf7\xe9\xc9\xd4\xb0\x09\xcb\x9e\xdd\x92\xbe\x70\xb0\x94\x41\xac\xf1\x83\x67\xf7\x6b\xd9\x84\x6b\x47\xde\x2d\xee\xcc\x66\x13\x56\x7d\x31\x2b\xbd\x31\x5c\xbe\x44\x2b\x1b\xaa\x6f\x4e\x25\xa4\xca\x76\x7e\xda\x52\x56\x47\x58\x22\xee\x7d\xff\x72\x59\x26\xe1\x86\xf4\x6f\xe9\xf3\x3b\xcd\x08\x46\xac\x8f\x9f\xc4\x9e\x54\x11\x12\x1f\x14\xcc\x90\x91\xbf\xc1\xc0\x4c\xba\x72\x7f\x9e\x4d\x21\x21\x75\x69\x43\xdd\xc1\x5b\xc5\x04\xe7\xdb\x1a\xf3\x45\x87\xd7\x4c\xfc\xd6\x30\x99\x77\xf8\x60\xc6\x18\xac\x6c\xff\x70\xf7\x04\x83\xf1\x87\x24\xd7\x4d\x3f\x77\x9a\xf0\xa7\xbd\xbb\x71\x27\x42\x08\x6f\x37\xf5\x8c\x71\xea\xbf\x4a\x78\x22\xe7\x56\xaf\x7e\x2a\x84\x30\xb6\x3c\x2d\xff\x55\x6a\x01\x21\xb8\xf3\xcf\x2c\xd7\x38\x65\x82\xcc\xf4\x26\x49\x9d\x31\x73\x08\x7e\xaa\x97\x1e\x0f\xdd\xb9\xce\x40\x89\x65\xeb\x29\xa1\x7c\x9b\x41\xda\x00\xb7\xbf\xeb\xfc\x12\x42\xc1\x2c\xe1\xd5\xaa\x67\xf2\x19\x2c\x74\xeb\xad\xd6\xfc\x5a\x42\x58\x70\x9e\xbf\xd6\xaf\xd0\x94\x30\xdb\xc3\xa2\x74\x4b\x7e\x02\x41\x63\xfc\x33\xfe\xdd\x0e\x39\x84\x62\xbd\x6d\x0a\x2b\x1f\x9e\x22\x58\xc6\x6c\x32\xd5\xcd\x5b\x4b\x28\x71\x5d\xc4\x48\x1c\x51\x26\x84\xa4\xcd\xd7\x9f\xe8\xf3\x9d\x85\x83\xba\xa7\x8c\xa4\x9e\xca\x11\xde\x37\x10\x4f\xba\xd0\x3e\xc2\xa2\xfa\x55\xbf\x13\x1f\xcc\x23\xec\xf1\xd8\xcb\xd5\xf3\x5c\x87\x70\x89\xe5\xd5\xb9\x36\x7a\x1e\xe1\x4b\xfe\x8a\x62\x4d\x9e\x6d\x84\x69\x66\x06\xcc\x01\x9b\x35\x84\xe0\xbb\xab\x17\xfb\x35\x6c\x22\x64\x14\x15\x30\xcc\x56\x0d\x42\xc1\x9f\x0d\xb1\x75\xa1\xa1\x0c\xd6\xdf\x37\x7a\x7f\x4f\x71\x1e\x61\x1f\x23\x7c\xd5\x90\xab\x88\x20\x7f\xd2\x7e\xba\x47\x64\x05\x83\x65\xba\x5a\x35\x23\xc5\x5e\x65\x92\x64\xf1\xab\x30\x42\xd3\x8f\x64\xa5\x6f\x03\x49\x84\x45\x76\x33\x4f\x32\xfd\xed\x84\x4f\xe6\xb3\xd6\x17\x0d\xa3\x8e\x5f\x2b\xb9\x4c\xaa\x80\xf0\xf5\x45\x8a\x94\xb8\xa6\x39\xa1\x6d\xba\xc8\x86\xd7\x77\xec\x98\xd1\xe2\xbd\x7f\xee\x85\x1b\x06\x7c\x84\x9b\xeb\x53\xb8\xe7\x8f\xfd\xc9\xc2\xa6\x62\xc7\x08\x45\x11\x3d\x82\xc0\x4e\xeb\xe8\xd2\x5d\xe6\x04\xde\xc6\x79\xcd\xeb\x8f\x46\x10\xf2\x8e\x21\x3a\x22\xf7\x31\x83\xa0\xe6\x7e\x1f\xe9\xe4\x52\x02\xd9\x0c\x38\x18\x4e\xbb\xc0\x60\xcb\x75\x03\xf9\xce\x34\x61\xc2\x26\xc1\x67\x86\xb7\x95\x7a\x58\xf0\x8d\x88\x2b\x30\x0d\xf9\xc3\x82\xd3\x4f\xf1\xc0\x3b\xef\x53\x09\x2b\x15\x3d\x3f\xf3\x74\xff\x6f\x68\x2c\x3c\xfa\xfa\xad\xe3\x29\x42\xb1\xf4\x8f\x95\x75\x7f\x87\x4f\x68\x35\xeb\x13\xe7\x1f\x31\x25\xe4\x4f\x2c\x3e\x36\xd7\xf3\x14\x21\xca\x40\xfb\x53\x70\x9b\x2f\x41\xc1\xde\xcf\xf1\xf5\xd6\x53\x84\x8a\xf0\xe2\x67\x1a\x7b\xdc\x09\xb3\x0d\xdd\x6b\x3f\x64\x6b\x13\xb4\x94\x17\x68\xfe\x36\x90\x20\x2c\xbc\xe0\x23\x57\xd9\x33\x9d\x90\xd2\xef\xff\x3e\x7e\xbc\x14\x21\x34\xf2\xa1\xd4\xd2\x5f\xfc\x84\x8e\x1f\xeb\xc7\x5f\x08\xd1\x27\xdc\x61\xa9\xba\x3e\x17\x55\x20\xb8\xbd\x1c\xf0\x18\x5b\x15\x45\xd8\xb0\xd1\x49\xc1\x3a\xfe\x30\x83\x43\x61\xb9\x77\xfc\x8e\x2a\x13\xd2\x3e\x7e\xfa\xd1\x76\x2b\x8d\xb0\x56\x3b\xef\x86\x89\x52\x2e\x21\x50\x4a\xf7\xb4\x7c\x98\x2f\x01\x8b\xc5\x5c\x5a\x15\x2d\x08\xf6\x91\x7c\xc7\x07\xbd\x87\xaf\x03\x3f\xaf\xff\x2e\x3d\x9d\x47\xd8\x66\xd5\x2e\x6c\xe6\x93\x47\xf8\x3e\xc6\x51\xbe\xea\x6c\x0a\x81\x91\x78\xf7\xb1\xee\x7b\x2e\x41\xf2\x62\xf7\x83\x39\x25\xfe\x04\xee\x9b\x66\x76\x4d\xbc\xfe\x04\xe7\x04\xb1\xfb\xbc\x8d\xfe\x84\x93\x13\x74\x3e\xda\x5d\xf0\x27\x18\x6f\x57\xfa\x31\xdd\xd5\x97\x20\x74\x7c\x63\xc5\x51\x2d\x7f\x82\xc2\xe3\xd2\x43\xcd\x2d\x9d\x0c\xc6\xb5\xec\x58\x70\xe5\x78\x0c\x83\x47\xf6\xbe\x5b\x46\x30\xe5\x98\x66\x05\xef\xaf\x53\x04\xa7\xa7\xa7\xbf\xd0\xa1\x42\xc2\xbd\x93\x8f\x16\xea\xad\x3c\x46\x30\x36\x8c\x79\x7b\x5b\xef\x28\xa1\x98\x97\x5f\x5c\x2f\x6b\x1b\x07\xb4\x6f\xcd\x0a\xed\x70\x4e\x60\x70\x78\x9c\xf8\xf7\x30\x8d\xdf\x2c\xe4\xcd\x0e\x5d\x60\xb3\xf4\x0d\xc1\x5a\x26\x6b\x4a\xff\xf9\x1c\x82\x8a\x42\xf7\xd6\xa7\x1a\x65\x84\x0d\xd5\xc1\x37\x6d\x9b\x3d\x09\x89\x31\x6d\x59\xab\x76\x99\x11\xbe\x68\xc8\xfb\xd7\xe8\x5e\x20\x04\x18\x9d\x9a\x25\x23\x6d\x4c\x90\xd5\xdd\x18\x29\xbb\x56\x91\xf0\x45\x6e\xcf\xd9\x23\x1f\x8e\x10\x36\x77\x5d\x4b\x6f\x08\x5c\x4a\x58\x74\xc2\xc3\x94\x1d\x3a\x95\xa0\xbe\xa9\xae\xf7\xf2\xf0\x45\xfe\xff\x1f\x11\xe3\xde\xde\x8b\xfb\x2c\x4d\x28\x6f\xbf\xf8\x3b\xe7\xf6\x4c\x42\x68\x54\x8b\x4d\x6e\x58\x34\x03\xa9\xf2\x59\x5b\xf8\x8e\x5d\x22\x68\x49\xae\x8e\x09\x9e\x5b\xc9\x82\x93\x56\xc8\xe9\xa2\x00\x3e\x42\x41\x94\xd6\xaf\xb5\x46\xf3\x09\xb1\xb7\xd6\x8e\xb9\xb2\x98\x21\x58\xa9\x49\xb7\x4c\x15\x29\x24\x04\x1c\xac\x0f\xe7\x1f\xc6\x95\xc1\xa5\x7e\x5c\x8f\xda\xd9\x58\x69\xde\x38\x63\xf9\xba\x07\x0c\xde\xdc\x7d\x22\xb3\xed\x4c\x2a\x41\x52\xa6\x6a\xcc\x1f\xcb\x44\x42\x8f\xd4\xad\x79\x86\x6e\x53\xff\x85\x47\x5b\x1e\xc5\xcc\x69\x2e\x25\x8c\x65\xae\x3b\x8e\x60\xee\x42\xf9\xb0\x28\xcb\x06\x06\xb6\x3c\xb9\x27\x47\xca\x04\x57\x91\xb8\x25\x1a\x9f\x18\x58\x3a\x88\x61\xa4\x4c\xb3\x9e\xa2\xe0\x79\xfa\x10\x41\xc5\x69\xfd\xe0\x8a\x39\xae\x1c\xe5\x3f\xf8\x4a\x9f\x6e\x92\x74\xdf\x46\x70\x2b\xbf\x63\xdf\x77\x63\x2f\xe1\xfd\xc1\x88\x09\xea\x1f\x4f\xff\x4f\xa8\x2c\x77\x89\xdb\x30\x64\x4e\xe0\x09\x8a\x55\xac\x9e\xb6\x9c\xb0\x72\xe1\x8d\xdf\x73\x0a\xfa\x58\x38\x33\xf5\xce\xca\xfc\xcf\x1f\x39\x31\xf0\x93\xdb\x74\x60\x2a\x21\x3e\x6c\x79\x51\x5a\xdd\x43\x36\x36\x45\xe7\xad\xcf\x7a\xb2\x83\xfe\x81\x67\xa9\xb3\x4b\x0b\x0c\x34\x08\x3e\x76\xf2\x61\x2f\x5b\x3c\x09\x7f\xd2\x8c\xb9\x99\xae\xfb\x84\xbe\x5d\x3f\xdd\x35\x97\x17\x11\xd6\xb4\xbb\x04\xef\x1c\xbe\x7f\x1d\x67\x6f\xff\x76\x32\x5f\x8a\xd0\x27\xf3\xec\x83\x9b\xf1\x77\xd6\x28\x6e\xaa\x99\x3c\xcc\x0a\xfb\xc9\x81\xce\x7d\xf9\xf2\x9b\x37\x6c\x24\xb8\x3d\x9a\x94\x98\x92\xba\x81\x40\xaf\x6e\xa5\xbc\x6f\x28\x20\xa4\xee\x99\xb9\x77\x4c\x49\x14\x21\xf9\xc5\xa9\x74\x30\x79\x84\x03\xe7\x85\xa4\xf8\x22\xef\x32\xb8\x5d\x66\xb0\x75\x64\x8d\x92\x5b\x18\xbe\x9b\x75\x32\x98\xa9\x1d\xba\xda\xad\x27\x9f\x46\xe1\x14\x7c\x6f\x85\xd0\xcf\x7c\x42\xfb\xf3\xc2\x7d\x23\x65\x53\xc1\xde\xa9\x23\xf8\x6d\x25\x99\x98\x7b\xbf\x85\x85\xfa\x03\xaf\xfe\x9e\x1f\xb8\x41\xf0\x16\xac\xd6\x7a\xd4\x37\xc4\x82\xe1\x09\xa1\x45\x9a\xc3\x27\xe1\x07\x92\x6c\x17\xcd\xbe\x78\x06\xc7\xcf\x3f\x8f\xbb\x2d\xa8\x48\xb0\xbc\x19\xcc\x55\x5c\x23\x47\x10\x7b\xa4\xf3\xe1\x44\x42\x29\x41\xa9\x61\x70\xdb\xb1\xc9\x55\x04\x87\x64\x93\xa0\x04\xd5\x52\x02\xdf\x45\xfd\xe8\xa3\xc3\x05\x21\x71\x8a\x23\x6b\x16\xb5\x49\x86\xf3\x2e\xb5\xe7\x40\xa2\xae\x66\xec\xb1\xbb\xfb\x09\x1a\xcf\x03\x9f\x3c\x7a\xc0\x39\x32\xbb\xdb\x6d\xfa\xfd\xe9\x2c\xc2\xf7\x2a\x7f\x91\x56\x21\x01\xc2\xa4\x0f\xfb\x56\xc6\xb0\xfe\xb2\x70\xab\xf8\xd2\x65\x8f\xae\x3e\x16\x4e\x94\x07\xb0\x53\x3e\x19\xd1\x28\x5a\x42\xb8\x16\x0e\xa4\xcd\x26\xdc\x3f\x66\x78\x73\x68\xab\x12\xa1\x6b\xe7\xe5\x75\x39\x37\x5f\x30\x08\x17\xcc\xc4\x1b\xf6\x23\x82\x53\x5c\xfd\xb4\xad\x47\x0a\x08\x95\xf4\xb8\x51\xa7\x6d\x36\xe1\x52\xb1\xba\xc8\xfb\x1b\xe6\x1c\xf0\xed\x59\x1e\x94\xce\x5c\x66\x41\xac\xa2\x7a\xc6\xc3\xb3\x6b\x09\x51\x27\x06\x02\xdf\xf2\x66\xfc\x0b\xbf\x1f\xf2\xc7\x8f\xa0\xb8\x29\x58\x62\xb2\xab\x0d\x41\x41\x33\xb2\xb8\x6d\xdf\x3e\x8e\xf2\x1f\x4e\x1d\xba\x92\xaa\xe4\x26\x48\xc8\xef\x0d\xf1\x48\xec\x98\x4f\xb8\xbd\xd1\x21\x7b\x4e\x27\x37\xa1\x97\x35\xe3\x93\x1d\x44\x09\x12\x91\x81\xfd\x11\x1a\xc5\x84\xeb\x9d\xe1\x3b\x04\x3c\xcb\x08\x15\x95\x3d\xfd\xb5\xac\x6a\x06\x03\x7f\xc4\x18\xe9\x13\xdb\x18\xbc\x9c\x52\x70\xe7\xce\xb7\xab\x04\xa4\x54\xc6\x2c\xdc\x79\x92\xa0\xbe\x25\x20\x61\xd9\x3c\x2b\x06\x8f\x6f\x3e\x9a\x35\xe1\xd1\x1e\xc2\x11\xc1\x9d\x81\x6d\x17\x6c\x69\xb4\x2c\xdd\xe0\xb7\xb8\xe6\xb1\x1b\x41\x45\x75\x80\xff\xf4\x3c\x61\xc2\xcf\x57\x6e\xc1\xb3\xdd\x89\x03\x33\x7d\x55\x9a\xea\xcd\x07\x59\x28\x8c\xda\x12\x17\x54\x59\x42\x68\x5c\xe8\xfa\xde\xff\xe8\x75\xc2\xc3\xf7\x53\x22\x2c\xbd\x9a\x19\x5c\x12\xfd\x90\x2c\x7c\x2f\x94\xb0\x6a\xda\xf6\xec\xd6\xc1\x52\x42\x69\xea\x7a\x07\x65\xd3\x10\x42\xfc\x2c\x3a\x66\xb4\x8d\xcd\x60\xcf\xe1\x6f\x07\xca\x0f\x3d\x25\x2c\xf3\x08\x2c\x73\x71\x2a\x21\x58\x6e\xbe\x5e\x39\x4e\xab\x84\x10\x6e\xdd\x9a\x69\x2f\x56\x48\xf8\xc1\xf7\x45\xeb\xe8\xe9\x12\xc2\xce\x2d\xf5\x95\x3b\xe6\x09\x11\x92\x03\x0d\x45\xea\xce\x4d\x23\xa4\xb5\x09\x9d\xfe\x1b\x1d\xc9\x81\x0b\xb2\x75\x0b\x1b\x1f\x5d\x27\x2c\x09\x38\x9f\xb3\x79\xae\x24\x21\x69\xcf\xe6\xdd\x6d\x81\x1b\x08\x7c\x09\xeb\x2b\x74\x9b\x5e\xb1\xe0\xf1\x67\xed\x7c\x2b\xd5\xd7\x1c\xc8\xb3\xab\xac\xb0\x10\x6f\x61\xe1\xc2\x1b\x27\xbb\x3b\xf2\x92\x04\x5a\x5b\xa4\x30\x36\x59\x9f\x03\xea\x22\xaa\xd7\xfb\xaf\xcf\x21\x9c\xca\x6b\xbc\x7c\xf0\xbb\x06\x07\xe6\xf6\x84\x6d\x2c\xad\x6d\x60\x8d\x42\x64\x49\xf6\x82\xf4\x18\x11\x1a\xc5\x3c\x3e\x1b\x21\xc3\x40\x36\xa1\x2b\x32\x78\xdd\x08\x6c\xf8\x57\x71\x69\x7c\xbc\x4f\x78\x5f\x82\x31\x63\xcd\xee\x11\xb8\x2e\x4f\xed\x30\x1a\x1e\xed\xcb\xe3\x77\x0e\xc9\x39\xcb\x40\x6c\x32\x8f\xd9\x94\x87\x87\x09\x72\x69\x2c\xde\xfa\xee\x34\x1a\x2d\x7b\x67\x4e\x39\x7c\xcc\xd5\x88\x63\xcd\xdb\x0b\x3f\xd4\x9e\x6f\xb9\x4c\xc8\xf6\x79\x75\xc3\xc3\x34\x8b\xe9\x77\xb9\x37\x5e\xab\xf0\x2e\x83\x9a\xaa\xf7\xb2\x07\xc2\x96\x12\x5a\xd7\x56\x4d\xd6\x17\x3d\x46\x78\x69\x69\x25\x8e\x96\x64\x06\xfb\x9e\xfb\x66\x5e\x0c\xaa\x24\xec\xd8\x20\x7c\x40\x24\x4c\x82\x70\xb4\xfa\xc7\x5c\xb5\x13\xda\x84\xcf\x47\xfa\x78\xb2\x82\xf6\x13\x82\xdb\xa5\x8d\x7d\xc8\x80\xf0\x23\x71\xdd\x21\xb9\x8b\x96\x84\x83\x6a\xce\xfe\x69\x4a\xd2\x04\x51\x6b\xeb\x53\x36\x77\x76\x70\x14\xcf\xd8\xa0\x40\xef\xdb\x12\x84\xbb\x2a\x01\xe7\x92\x62\x1c\x38\xca\xb8\x75\xa6\x3d\xf1\x2f\xb8\x08\x15\x96\xb2\x62\x0d\xfe\xbb\x99\x51\x68\x77\x7f\x9f\x6b\x5f\x66\x4d\xe0\x1d\xd8\x74\x66\xdd\x1a\x33\xc2\xab\x21\xe7\x22\x25\xf1\xed\x84\xda\xe6\xb7\x5f\x03\x4a\x2c\x09\x5d\x05\x2a\x3b\xfc\xa3\x86\x58\x98\xde\xe4\xec\x37\x8e\x5e\xb1\x70\xf9\xc0\x62\xf5\x63\xb3\x22\x09\xd9\x6f\xc7\xef\x62\xb4\xf4\x39\xf0\x59\x53\xff\xf6\xaa\x9a\x35\x04\x97\x0c\xaf\x59\xe5\xf3\x89\xd0\x6b\xda\xfe\xea\xc1\xee\x59\x84\x86\x32\xf3\x1d\x5b\xbe\x4d\x25\x4c\xbe\xe4\xf8\x48\x65\x95\x14\x07\x9e\xfd\x1c\x6b\x62\x35\x5f\x8a\xe0\x94\x6a\xb2\xeb\x5d\x8f\x26\xc1\x49\x2e\x78\x8a\x48\xa2\x2e\xf5\x9f\x57\xd4\x75\x60\x8c\x09\xef\x25\xdd\x96\x8f\xbb\xb2\x8c\xf0\xcd\xe2\x13\x4b\x07\x91\x04\x5b\xb7\xf3\xcd\x29\x7c\xbf\x59\x08\xe4\xc9\xcc\x83\xac\x00\xa1\xad\xe2\xd4\xce\xab\xa2\xdd\x2c\xfc\x36\x7c\xff\xb5\x77\x9b\x00\x21\xd1\xf7\x82\x92\x2a\x5d\x20\x98\xdf\xb4\x57\xc8\x70\xb8\xc5\xe0\xe0\x5d\x8d\xb1\xe7\x8e\x97\x12\x8a\x3c\x42\x2f\xdd\x19\x97\x4b\xf8\x3b\xf0\xf6\xe8\x86\xd3\xa5\x04\xd3\xe7\x7f\xaf\x1a\x08\x82\x85\x34\x75\x4b\x8f\xdb\x87\x58\x04\x13\x29\x47\xd5\x81\xda\x12\x42\xe4\xe9\x26\x85\xd7\xd1\xc9\x84\xed\x67\xbf\xc6\xf1\xfb\x94\x10\x66\x46\xb5\xea\x0a\x16\x1c\x20\x7c\x5d\x57\x76\x61\x64\xcd\xe6\xbd\xd6\x95\xf5\x46\xdc\x04\xd9\x42\xad\x79\xab\x9d\x22\x18\xec\xa9\xa9\x39\x39\xb3\x6c\x37\x41\xa2\xd8\x30\xce\xd8\xcd\x92\xe0\x11\x61\xbf\xd2\x53\x4e\x68\x18\x61\x5a\xb3\xb2\xee\x10\x1a\xe2\xcb\x9e\xbe\x8c\xb9\x43\x50\xe4\x6a\x5d\xa5\x1c\xc2\x43\xf8\x54\x36\x29\xb9\x60\xaa\xe7\xbf\xa0\x70\x7c\xef\xc6\x3d\x7b\xd6\x12\xe6\xd4\x0a\x29\x7c\x28\x54\xf8\x17\x7e\x5c\x0b\xa9\x8d\x8e\x35\x20\xe8\xdf\x8e\x92\x3f\xf1\x67\x25\xa1\x66\x75\xf7\x29\xae\xdf\x1b\x09\x9f\x8d\x2f\x34\xc4\xfd\x11\x24\x5c\xca\x61\x72\xdb\xa4\x4a\x08\x69\x63\x7b\xbc\x02\x27\x1f\x22\xa8\xcd\x39\x69\xfc\xc9\x6b\x2b\x33\x5a\x92\x05\x3d\x6e\x88\x24\x26\x73\xa0\xce\xd6\xa1\xa5\x69\x63\x29\xc1\xeb\xdc\x4e\x91\xed\x39\xcf\x09\x7f\xd5\x93\x45\x9b\x87\xcb\xac\x6b\xf6\x7b\xab\xbc\x14\x08\x97\x05\x2d\xd6\x71\xbf\xd3\x26\xc4\xad\x6d\xf1\x52\x8f\x9b\x46\x18\x0c\x17\x9b\xc8\x7e\x5d\xc9\xe0\x37\xcf\x60\xd0\x6c\xd1\x4b\x6c\x2c\x59\x3e\xbb\x2b\x4f\x55\x8d\x10\x3d\xee\xf4\x69\xc3\xb9\x86\x84\x7c\x91\x03\xc2\x7c\xb2\x0d\x2c\x28\xe5\xb4\x37\xf3\xad\x2e\x22\xe8\x9d\x30\x71\xa9\x08\x8f\x63\xb0\x57\x32\x27\x65\xa4\xcc\xd7\x1e\xd0\x9a\xdc\x74\x84\x20\x11\xfb\x68\xf5\x99\xc8\xc3\x84\x3b\xb5\x5b\xeb\x0b\xbe\x2e\x21\xf8\x19\xeb\xac\x73\x9c\xbe\x95\x03\xdf\xb8\xdf\xba\x37\x6c\x6c\x62\x63\xc0\xdb\xe5\xc9\x91\xbd\x19\x84\x4d\x27\xd5\x96\x86\x0c\x43\xe0\xd2\xa3\xd2\x33\x4f\x14\x39\xc0\x5e\x18\x93\x93\xaa\xa3\x44\xa8\x6a\x5f\x5b\x21\x77\x6c\x13\xa1\x28\xfe\xfb\x51\xff\xad\xdf\x58\x10\x1a\xf7\x74\x49\xe9\x91\x05\x84\x8e\xe3\x07\x7c\x92\x0c\x25\x69\xb4\x5c\xe3\x57\x3d\x74\xff\x7a\x09\xe1\xf9\x55\xd5\xf6\xa3\xc3\x30\xde\xe9\x1e\xf7\xc8\xb2\x84\xf0\xcc\x77\xaa\xf6\xc8\xc8\xe4\x62\xe6\xc3\x54\x61\x01\x42\x50\xb7\xd9\xa2\xdd\x79\x8b\x09\xb9\x8e\xf1\xae\x86\xbd\x2e\x04\x2b\xc1\x7d\x5d\xa1\xaa\xe3\x09\x27\x56\xf4\x68\x97\xce\x15\x22\x94\xea\x47\x17\x64\x36\xd5\x11\xd2\x66\x0d\xa9\xdc\x9f\x58\x4a\x58\x33\xe4\x2a\x35\x38\xcf\x8b\xf0\xe4\x82\x99\xfe\xdc\x9c\x62\x8e\xd1\x14\xb3\x8a\x72\x81\x6b\x5a\x84\xc5\x95\xb9\x7f\x83\x5f\x82\x05\x03\x95\xa7\x6f\x0e\xdd\x62\x08\xe9\x0e\x6e\x8b\x2a\x7a\xf2\x08\x3f\xce\x6d\x37\x1e\x29\x99\x23\x9f\xda\xc2\x10\x1e\xf4\x1d\xb2\x7c\x1c\x24\xcb\x81\x5d\xf5\x33\x6a\x76\x84\x36\x10\x44\x62\x26\x5d\xd5\x76\x2b\x25\xfc\xda\xdd\x28\x9f\xcb\x7d\x97\xa0\x27\xfa\xe4\x83\xd3\xf6\x97\x84\x8c\x3c\xcb\xc1\x91\xd1\x7f\x58\x4b\xb3\xd6\x97\x2c\x2c\x20\x88\xf3\x5f\x5c\x30\xe7\xdb\x63\xc2\xfa\x25\x26\x7a\xe3\xbf\x3e\x26\xc4\xbc\xfa\xd0\xdf\x9c\x9e\x4c\xe8\xcd\xe5\x7e\xc9\x35\x5c\x9e\x14\xfd\xb0\xe2\x49\xad\x26\x3c\x3c\x76\x31\x66\x79\x8a\x2b\x21\x65\xc1\x24\x17\xa3\x33\xc9\x84\xcc\xce\xb5\x7b\xec\xf6\x46\x12\x2a\x3c\x9e\xd7\xc4\x1e\x3d\xfc\x2f\x70\xff\x48\x75\xde\xec\xb4\x8f\xc0\x7d\xc9\xbb\xe3\x5d\x37\x0f\xe1\x3d\xdf\xeb\x33\xfe\x07\x18\xc2\x51\xc9\x15\x9d\x23\xc8\x8a\x9a\x94\x3b\x82\x5a\xaf\x6e\xff\xae\xb3\xb2\x04\x03\x51\xa5\xf3\x9e\x79\x65\x84\x15\x2f\x77\x1d\x4b\xcf\xc8\x22\xe4\xd9\x6a\xc5\x8f\x94\x9a\xc3\xab\xf7\x95\x0c\xa5\x10\x82\x17\x3c\x93\x12\xe6\xba\x43\x58\x66\xb8\x67\x82\x93\xa7\x27\xc1\xfe\xc1\xca\x16\xc7\x61\x24\x5a\x5e\x4b\xe1\x0b\xf1\xe0\x28\xaa\xe3\x7f\x8d\xfd\x15\x7d\x84\xe3\x81\xa7\x71\x2d\xdd\xe9\xbf\xa7\x88\xb0\x88\x57\x20\x8c\x95\x54\xc1\xc0\x2b\x6c\xe7\xb9\x91\x62\xa7\x8d\xc6\xba\xe1\xc7\x3b\x0a\x2e\x3d\xfe\x71\x36\x6c\xc2\x93\x39\xcd\xf9\x39\xe3\x6b\x09\x3b\xbf\x6c\x7f\x36\xc9\xb1\x93\xc0\x75\x6f\xdf\xd0\xa4\x2d\x17\x39\xd6\x58\xd6\xe5\x38\xea\x4b\x4a\xfe\x0b\xcf\x12\x7a\x53\x3d\x7d\xb2\x09\x89\x75\x59\xf6\x23\x28\xf8\xe0\xd1\xe2\x76\x22\x9b\xe0\x1a\xf0\x79\xb2\x4d\x62\x16\x21\x37\x96\xf7\x9b\xd7\xf0\x68\xa2\x24\xdf\xb4\xee\xa8\x95\x84\xb5\x9e\x33\x1c\xfa\x2f\x4f\x20\xb8\x96\x05\x4f\xa9\xe2\x29\x25\xe8\x87\x4f\x10\x51\x14\xbf\x4b\x98\x72\xc4\xeb\x67\xe5\x70\xe1\xde\xaf\x35\x75\x93\xe1\x1d\x0e\x28\x4e\x5d\xa5\xcd\x34\x9c\xe4\xc0\xb4\x87\x3a\xda\x3f\x87\x1f\x42\x71\xe7\xe4\x9d\x21\xc3\x0f\x61\x41\x69\xad\x1e\xf7\xe3\x32\x42\xf4\xbe\xaa\x47\x7a\xda\x0c\xe1\x14\x5f\xc7\xde\x91\xb2\xfe\xf3\x94\xfe\x2a\x6b\x01\xc2\x0e\x3d\xa9\x63\xea\xd7\x23\x09\x57\x16\x7f\xdc\xa7\x54\xaf\x49\x88\x19\x3c\x58\xe3\xff\xe0\x16\x61\x8e\x8b\x8a\xab\xf5\x02\x6e\x82\x1f\xd7\x22\xe9\xb3\x6d\xe2\x04\x45\x54\x6a\x8a\x67\x2f\x20\xc4\xde\xf0\x56\x6f\x56\x71\x24\x24\xf9\x2c\xd0\x9d\x72\x61\x3f\xc1\x73\xaa\x4e\xcd\x89\x83\x3f\x58\x98\x6e\x94\x98\x52\xb4\x25\x81\x60\x5c\xc7\x93\x6b\x67\x93\x40\x28\xfe\x70\x74\x7b\xc9\x03\x4f\x82\x84\xbd\x97\xda\x0f\xf5\xab\x84\x62\xa1\x79\xb5\x23\x23\x93\x8f\xa2\x4f\x7e\x3a\x9a\x10\x54\x6f\x88\x55\xdd\x13\xdc\x4e\xf8\x32\xa7\xe8\x59\xd8\x03\x2b\x0e\x88\x1c\xb2\x7a\x4c\x1d\x31\x84\xa8\xc3\xb7\xaf\x44\xf7\x36\x12\x7a\x27\x14\x99\x57\x47\x17\x12\xae\x09\xfc\x3a\xc1\xe5\x26\x40\x58\x1c\xa9\x58\xb4\xd1\xc9\x8b\x60\xa3\xf5\xc3\xd8\x65\x46\x15\x61\xed\xfa\xdd\xa6\x8f\xe2\x72\x09\x02\x62\x77\xf3\xcc\xef\x45\x13\x2c\x9f\x47\xfa\xdc\xbb\x1b\x4d\x90\xfb\x79\x4d\xe2\x8c\xa7\x3e\xc1\x68\x8d\xcc\x98\x33\x4f\xc5\x09\x6a\x06\xaf\x26\xe5\xcd\x3d\x48\x98\xb3\xd3\xd0\xea\xcf\xe7\x4a\x0e\xdc\x5d\x79\xb8\x74\x9b\xe1\x4d\x0e\x48\x06\x74\x2d\xb2\x73\x88\x20\xcc\xb7\x3c\xd6\x98\x55\x72\x9a\x81\x5e\xf7\xf7\x97\xaa\xe1\xcf\x08\x52\xeb\x25\x77\x0a\xde\x7e\x46\x98\x13\x78\xbb\x67\x06\xfb\x3d\x61\x85\x23\xcb\x39\xb4\x8b\x4d\xd0\x10\x8c\x7a\xbe\x4c\x66\x0d\xc1\xde\xfa\xfe\x60\xdf\x97\xd5\x84\x71\xe5\x4a\x21\x4f\xf7\xf7\xb0\xb0\xf5\xf1\xa2\x47\x1b\x03\x94\x09\x5d\xb6\x46\x06\x16\xe7\x65\x09\x8f\x0c\x85\x1f\x09\x7f\x12\x25\xd8\xfa\x67\x3f\x4f\x0d\xe5\x26\x04\xec\xdd\xe8\xf0\x5c\x5d\x8e\x60\x75\x70\xb2\xce\xe7\xd7\xba\xff\xc2\xa0\xcc\x02\xa9\x7b\x27\x54\x08\x71\x03\x29\x99\x63\xae\x4a\x11\x32\x8b\x1b\x7d\xbe\xbd\x5a\x43\x58\xf7\x74\xa9\xef\x16\x3e\x11\x82\xd4\x60\x4c\x3d\x8f\x1f\x2f\x61\x81\x82\xd8\xae\x6d\xcd\xbf\x59\xf8\x10\xf4\xbe\xee\xf5\x63\x59\x42\x7b\x93\x6f\xfb\x81\x27\x53\x09\xef\x76\x6d\x1d\xe3\xfd\x4b\x82\x20\x57\x35\xee\x76\x7b\xf3\x42\x82\xa5\xfe\x34\xab\xf8\xf5\x6a\x04\x0b\xaf\x8e\x0f\x16\xbc\x36\x84\xef\xf2\xeb\xea\xbb\xcc\x8f\x71\xa0\x76\xb3\x4b\xde\x3e\x75\x13\xc2\xef\xa7\x51\xa9\xbe\x97\x4f\x11\xec\x7d\xed\xde\xe6\x3c\x59\x45\x30\x61\x99\xfd\xf2\x9f\xbe\x92\x90\xb0\x93\x7b\x47\x39\x6d\x20\x0c\xdd\xeb\xe5\x71\x34\x72\x21\x8c\x3d\x3d\xa6\xf7\xb7\x61\x13\x0b\x57\x4f\xef\xe8\xdd\x4c\x0c\x21\x6a\x9b\x4f\xf5\xdb\xfc\xeb\x04\xeb\x3b\x6f\xcb\x3a\x95\x12\x19\x78\xe8\x24\xab\x8d\x8c\xbc\xa2\x9d\x96\x3d\x91\x17\x22\x48\xf7\xda\x8b\xf2\x9f\x7c\xcc\xc2\xcb\x95\x13\x66\x47\xf8\x58\x12\xb6\xb8\x69\x1e\xc5\x5b\x4d\xc2\xe5\x0e\xb9\x73\x91\xc7\xfb\x59\x10\xdf\xf5\x73\xe3\x73\xfe\x09\x84\xde\xe4\xa0\x2f\x51\xfa\x4a\xff\x13\xf6\x4f\xa7\x6d\x3c\xb2\x4c\x90\x03\xf9\x17\xa7\xff\x6c\x29\x92\x26\xa8\xcf\x16\xc9\xba\xc5\x52\x23\x54\xfe\x7a\x91\x72\x3b\x7f\x1e\xc1\x74\x8b\xf0\xab\xfd\x41\x7c\x84\xbc\xb5\xdd\x06\x6e\xc6\xa7\x38\x10\x98\xa1\xb5\xd9\x61\xec\x54\x0e\xa8\x49\x8b\x30\x93\x2b\x95\x08\xae\xee\xdc\x86\x31\x13\x17\x12\x54\x6c\xb9\xee\x5f\xd4\x2c\x63\xc3\x37\x21\x7d\x85\xf6\x91\x63\x84\xac\x35\xa6\xa2\x27\x36\x9b\x12\xdc\xb6\xda\xaa\x5e\x0b\x93\x26\xf4\x9c\xb0\x9f\x2e\x74\xc6\x80\xb0\xed\xe4\xdf\xc9\x02\x47\x37\x70\x60\x70\xc9\xea\xf5\xad\x2d\xa1\x1c\xd8\xfc\x4a\xc7\xfa\xba\x96\x29\xe1\x8f\x9b\x77\x73\xa0\xab\x33\xa1\xf2\x53\x4b\xa0\xc6\x69\x55\x42\x74\xb5\x8e\xda\xfc\x83\x2a\x04\x89\x65\xbc\xfa\x15\xce\x45\x0c\xd6\xb9\x5a\x5b\xfc\x1d\xbe\xbc\xdd\xe0\xd3\xac\x1d\x13\xb6\x9d\x03\x8f\x8a\x8d\x64\x90\x29\x46\x70\xdc\xd0\x1c\xa4\x3b\xfc\x55\xe7\x9a\xcf\x68\x06\xff\x1c\x47\x88\x49\xca\x2f\xcb\x99\xa9\xfc\x2f\x7c\x7f\xbf\xed\xb8\xa0\xfe\xc4\x7f\xc1\xf0\xfb\xfd\xfc\x90\xfa\x19\x84\xc5\xca\x71\xf2\x4b\xce\x2e\x21\x3c\xba\xf2\x64\xd7\xdd\x3d\xda\x1c\x08\x59\xf3\x6a\xfd\x0c\x8b\xbd\x1c\xa5\xf4\xda\xab\x93\xcf\xff\xda\x13\x3e\x88\xb4\x7c\x79\x3f\xa7\x9c\x19\x2d\xff\x61\x9e\xf3\x16\x6d\x8d\x69\xfb\x08\x91\x7e\x1f\xae\xae\x5c\xa0\x45\xc8\x77\x4e\x6c\x0f\xcf\xe3\x23\x04\xaf\x73\x14\xb9\x13\xb9\x86\x50\xfa\xb2\x31\xf4\xd4\xc0\x2d\x06\x4a\x4e\xd7\xa4\x77\x2f\x37\x21\x4c\xfd\x7e\x74\x59\x95\xdd\xf0\x1b\x3b\x4f\xde\xba\xb4\xbb\x80\x60\xa1\x72\xbd\xb9\xb6\x36\x9e\x10\x2d\x90\x69\x61\xd7\x37\x85\x30\xe5\x0f\x7f\x07\x66\xae\x25\xd4\xe5\x5e\x1c\x23\xbd\x6e\x0f\x61\xd9\xda\x8a\x00\xb7\xe1\x6b\xf3\xd1\xe2\x13\x7d\x12\xf6\x7b\x68\x14\xfb\x2f\x45\xda\x7d\xca\xdc\x49\xd8\x7d\x65\xe5\xd4\xf9\xe1\x0b\x08\xdf\xaf\x7b\x45\x04\x4c\x5e\x40\x88\x62\xe2\xe3\x4e\x5e\x8f\x27\xa4\xe8\xbb\x6a\xb3\x17\x1e\x23\x3c\x63\x78\xea\x2b\xf7\x09\x12\x84\x07\xfe\x1c\x9f\x2c\x22\x4c\x78\x52\xf9\xfe\x65\x86\xfc\x1e\x82\x4c\x05\xca\xce\xcd\x9e\x47\xb8\xac\x5f\x1d\x7e\xbd\xc8\x84\xc0\xa5\x7d\x8c\x67\x70\x4b\x3d\xc1\xed\x72\x41\x66\xd8\xc7\x16\x82\xad\xf3\xc7\xcd\x6d\x22\xcd\xd4\xff\x68\x1f\xdf\x33\x81\x56\xc2\xd5\x96\x53\x7b\x7f\x1f\xbe\x4b\xc8\xe5\x6e\x29\x78\x52\x7d\x9f\xe0\x98\xa1\x6f\x19\x7a\xff\x21\x0b\xde\x45\xc7\x57\xb4\xd9\xf0\x12\x76\x3f\x3a\x90\xff\xe2\x4b\x1a\x0b\x6d\x2e\x6b\xc6\xb3\x56\x35\xb1\x20\xb2\xef\xe1\xec\x57\xd3\x67\xd0\x68\xf9\x0f\xbc\xa2\xca\xbd\xf9\x1b\xee\xb3\xd1\xbb\x58\x69\x70\xe6\xc9\x02\x82\x58\x4b\xc2\xe1\x8e\x4d\x93\x08\xf2\xe7\xef\x14\xdc\xcc\x4d\x67\xc1\x2e\xc8\xc4\xa0\x73\x5b\x3a\xe1\xa9\x33\xf7\xaf\x8e\x61\xa8\xe6\xcd\x99\x3a\x52\x7a\x2c\x3d\x2f\xfe\x30\x2a\xe3\x28\xe6\xea\xde\x8b\xaa\x57\x58\xfe\x4f\xa4\x54\x1f\x7e\x9a\xa5\xa5\x4c\x10\x6e\x89\x19\xb7\x6c\xfa\x36\xc2\xcc\xf7\x1d\x3d\xaa\x59\x9b\x08\x8a\x33\x55\xcc\xd2\x5c\x4c\x38\xe0\x2e\xd2\x6e\xab\x15\x1e\x4b\x68\x2f\x9b\x57\x74\xab\x38\x96\x60\xcf\xbe\xb7\xf1\xc3\x0d\x7d\x42\xae\x70\x7a\x5e\x55\xb2\x04\x41\x72\xf2\xc9\x56\xfd\xef\x6f\x59\x30\xaa\x2f\xcf\x3a\xe5\xbb\x8a\xa0\x5c\x39\x5b\xd0\x58\xfa\x11\x61\xc1\x8f\x13\x2d\x73\xe6\x74\x30\xd8\x96\xc5\x65\x11\xbb\xe9\x1a\x83\x5c\xa1\xb9\x1f\x77\x0c\x8f\x42\xe2\x1b\x9c\x9a\x22\xdf\xb0\x20\x0a\x5e\xb6\x9e\x72\x24\xa1\x34\x44\x44\xff\xb1\xb4\x0d\x81\x61\x06\xf7\x89\xf4\x7a\x71\x94\xd8\x50\xa5\xfd\x76\x5e\x76\x84\x73\x37\x37\x88\xcc\xd6\xdf\xc6\x40\xd1\x40\xde\xf3\x98\xf8\x49\x42\xab\xaf\xed\x8d\x4f\xde\x0d\x84\xee\x12\x6d\x1b\xc3\x8b\xb7\x08\xfb\xb8\xa4\xdc\x3e\x0f\x17\xf9\x83\xe1\xdc\xbf\xca\xd3\x09\x12\x2f\xbc\x2d\x9e\xb6\xba\x12\xbe\x05\x06\x5f\x9d\x3e\x74\x84\x70\x6b\xed\x83\x9b\x7a\xee\xeb\x09\xa7\xc3\x3f\xb5\x7e\x3e\x11\x46\xd0\xf8\xac\xe5\x9f\x78\xe2\x05\x0b\x95\x5e\xb1\xe2\xa1\x3a\xb3\x08\xa9\xc2\xd6\x73\xdf\x7c\x18\xde\x5e\x61\x2e\x7b\x4c\x93\xcc\x08\x17\x5e\xa6\x1f\x99\x19\xb3\x87\x03\x95\xea\xd6\xbf\x12\x78\x67\x12\x3e\x36\x5d\x59\xf1\x53\xb5\x80\xb0\x91\xa7\x71\xfc\x53\x85\x2d\x84\xa4\x16\xe5\x03\x72\x8e\x81\x0c\xfe\x6c\x95\xd5\xff\xa3\x56\x44\x30\xe9\xb7\x98\xf9\xde\x44\x89\x70\x1c\xbf\x3f\x56\x7f\x99\x4e\x50\xe1\xba\x59\xff\x7d\xc1\x7b\x16\xdc\x1f\xd7\xea\x1d\x2f\xd8\x41\xe0\x5f\xbf\xd8\xdf\x3a\x40\x80\x03\x16\x95\xf7\x8a\xfa\xd9\x6e\x1c\xc0\xdb\xec\x99\x7c\x42\x33\x09\xab\xa6\x7c\xbf\x55\x58\x93\x4d\x48\xe2\x96\x98\xf0\xdd\x25\x8f\x81\xe1\xab\x4a\x63\x8d\x5d\x6c\x82\x4a\x78\xd5\x8d\xe0\xe6\x0b\x84\xc8\x4a\x26\x36\xcb\xc1\x94\x03\x8f\xab\xc2\x6f\xc4\x2a\x8b\x33\xa3\x25\x50\x53\x7e\x85\x45\xfe\x6c\x82\x7c\x53\x6e\xda\xfc\x81\x6d\x84\x75\xe1\x05\x7a\xe9\x3f\x55\x38\x10\xaf\xb5\x37\x21\x20\xd0\x83\x03\xf5\xee\x69\xfd\x1e\xd9\x5b\x09\x9e\x52\x22\xae\x69\x2e\x7d\x2c\x14\x1f\x33\xf9\x14\xa0\xf8\x86\x85\xd5\x0d\xc1\x01\xe8\x3a\x4b\xa3\x08\x55\x93\x4a\x10\x2c\x6a\x67\xe3\x8b\xac\xed\x0e\xd6\x27\x35\x82\x9f\xe2\x93\xba\xfe\xa5\x2b\x38\x70\x7f\xdd\xf3\x33\x62\x0a\x4e\x04\xbe\x8d\x4d\x93\xe3\xd8\xde\x04\x81\x37\x1f\x56\x4b\x2b\x0e\x1f\xd0\xf2\x5c\x78\xee\xd7\x17\x13\xf4\x3a\xb8\xdb\x04\x42\x22\x19\x64\xfd\x74\x92\xe9\xcb\x2b\x20\x1c\x5a\xfc\xd7\x60\x64\x0d\x3b\xd7\xab\x31\x6d\xfb\x39\xc2\x04\x9d\x97\x5d\x2f\x87\xf1\xf4\x62\xcd\xe4\xd4\xee\xb3\x04\xa5\xae\x09\xf2\x79\xa1\x67\x09\x6e\xc9\x83\x61\x3e\x6f\xa3\x98\xd1\x35\x2b\xbf\xcd\xff\x75\xbc\xa8\x80\x50\x1e\xd6\xd2\x3e\x4f\x2c\x97\x50\x33\xc5\xdd\xe0\xc4\x70\x59\xde\x12\x11\xa4\xb0\xe3\x10\xe1\xd0\xd3\xdd\xf3\x4d\xa7\x35\xb2\x71\x75\xcc\x97\x86\xe7\x67\xf5\xe9\x1f\xb0\x3b\xfc\x6c\xcf\x4b\x05\xab\x7f\x61\xa9\xa8\xef\x1b\xd5\x43\xaf\x59\x68\xd7\xd8\x2d\x3c\x6f\xa5\x24\x41\xef\x11\x7b\x61\x88\xb8\x1a\xc1\xfa\xf9\xdf\xfb\x81\x35\x73\x09\x52\x02\xfb\xce\xd7\x4e\xbc\xc5\x06\xd7\x58\xd5\xa6\xba\x87\x1b\x68\x14\x67\x8d\x3e\x4c\x9d\x6d\x2f\x4b\x48\xf5\xb9\xd7\x7d\x87\x7b\x11\xc1\xad\x89\x47\x38\x72\xb3\x26\x83\x9c\xc6\x95\x8d\xc6\xef\x0f\x11\x4c\x2f\x89\x1f\x9c\xdd\x2b\x48\x90\x53\x3e\x50\x3b\xeb\xf8\x2b\x36\x34\xe7\x25\xf9\x66\xaf\x32\x27\xcc\xd1\xd7\xa8\xe9\xe1\xb2\xa0\xd1\xf2\x1f\x16\x4d\x3b\xc2\x7e\xc3\xce\x60\xe3\x60\xd3\x2c\xa1\xa0\x93\x2c\x82\xb3\xf6\x9b\x7d\x93\xf5\x1e\xb2\xa0\x34\x78\xf3\xb3\x7b\xcd\x16\x82\x97\xfb\xac\xe5\x37\x7d\x8d\x09\xb5\x8f\x3a\x15\xfc\xaa\xb6\xd2\xe8\xe8\xd4\xb9\x87\x6f\x65\x84\xc6\x13\xf4\x5d\x95\x67\xd8\xd4\x49\x12\x94\xeb\x6a\x5b\x65\x83\xa6\x11\xea\x3c\xb7\xc5\xd7\x05\xeb\x13\x16\x5a\x9f\xf9\xf3\x50\x6e\x1b\xa1\xc1\xf1\x7d\xd4\x8c\x3f\x19\x84\x9f\x21\x6e\x86\xa7\xba\xcb\x08\xbe\x59\x2b\x7b\x75\xd6\x46\x10\x96\x1b\x4f\xa9\x7b\x30\x34\x8f\xb0\x59\xc4\xa0\x5b\xd4\x74\x2d\x61\xac\xd8\xfe\xb7\x9b\xd6\xdc\x24\xcc\x7f\xfd\xbb\xf6\xe0\x30\x14\x75\xdf\xcf\x36\x8b\x0a\x62\xb0\x64\x79\xb3\x82\xda\x9f\x24\x66\x74\x64\x91\x6f\xd2\xed\x3b\x14\x41\x10\x7e\x89\xe3\x9b\xd5\x22\x08\x26\x27\x4f\x26\xa8\x8d\xbd\x40\xf8\xb1\xfa\x40\xd0\x08\x2e\x9a\xce\x4f\xe9\x66\xfc\x19\x88\xe9\xbf\xb1\x51\x2e\x57\x26\x1c\x16\xdd\xbc\x65\xf3\xe5\x72\x42\x42\x27\x44\xbf\x53\x39\xa1\xa1\x53\x66\x73\x53\x6c\x39\xe1\xb4\xfa\xc9\x55\xe2\x66\x5b\x86\xef\xa9\xfb\xb7\x99\xcc\x77\xe3\x80\xe3\xea\x82\x0d\xbb\x25\x72\x08\x3c\x41\x6f\x87\xe4\x6f\x5d\x24\xec\x5a\xd9\xab\x1a\xcd\x9a\x41\x68\xf7\x7a\xa9\x5a\x95\xbc\x97\x03\x6a\x42\x97\x96\xb0\xd9\x9e\x1c\x48\x98\xdb\x27\x2d\x17\x23\x4a\x08\xe2\x1f\x5f\xb1\xd9\x3d\x63\xf8\xfe\xd4\x9d\x3a\x82\xcd\x31\x0f\xff\xf6\x4c\xb9\x43\xe0\x61\xcb\xb4\x2e\xdb\xfd\x92\xa0\x38\x49\xef\xc6\x0b\x0f\x5f\xc2\xc2\xd3\xb9\xf2\x0e\x17\x25\x08\xd3\xc6\x0e\x0d\xda\x4d\xcf\x22\x18\x5f\xb1\xd7\x3b\x73\xb5\x94\x70\xae\x57\x6a\x9a\xc9\x86\x12\x42\x77\x97\xdf\x84\x32\xa9\x15\x84\x39\x66\x13\xd8\xce\x3f\x13\x08\xdc\xc9\xb6\x7c\xa2\x1b\x54\x08\xa1\xea\x35\xf1\x16\xae\x97\xd8\xb0\xfa\xb0\xef\xc2\x91\xc2\x56\xd6\x28\x9a\x8a\x94\x7a\x57\x7a\x8c\x23\xcc\x60\xea\x4e\xd8\xe9\xcc\x25\xe4\x96\x9d\xd9\x92\xd9\x35\x83\x90\xb5\x6e\x51\x7b\x9d\x32\x0f\x61\xc6\x31\x2f\xd3\x44\xe1\xf5\x04\xc7\xa8\xa6\xcd\xd2\x26\xb6\x1c\xe5\xb6\xfb\xfd\xea\x73\x86\x13\x08\xba\x61\x9f\x27\x9d\xcd\x90\xe3\x28\x4b\x02\x25\x6c\xfa\x1e\xd4\xb0\x90\xa9\xc2\xc8\xbe\x3a\xb5\x87\xb0\x4a\xfc\xa2\xd3\x3e\x73\x03\x82\x6c\x23\x6b\x57\xce\x39\x65\xc2\x92\x23\xc7\xd4\x1e\xa6\x0e\xb2\xa0\x9c\xbe\x3d\x42\xc9\xea\x10\x41\xd0\x9e\x8b\x55\x56\x13\x4f\xb0\xe4\xfd\x53\x99\xbc\x6e\x1e\x61\xdc\xd9\x94\x9a\x2b\xe7\xa5\x08\x12\xd2\x29\x1a\x4a\x37\x86\x58\xa8\xb1\x48\x8f\x14\x7c\x77\x80\x41\xfa\xe3\xf8\xdd\x86\x63\xf6\x12\xaa\xf8\xef\x77\x7f\x6c\x9e\x47\xf8\x2b\xd5\xf8\x7d\xae\xbb\x34\xa1\xad\xf3\xb8\xf4\x11\x51\x39\xc2\x33\x2b\xf6\x17\x43\xf5\x02\x42\xc7\x4b\xf9\xe7\x71\x09\xfd\x2c\x74\xfe\x38\xe5\x29\x1e\x35\x97\xb0\xf6\x56\xf0\xce\x92\x76\x03\xc2\xad\x17\x8e\x13\x73\x66\x6e\x26\x68\xbe\xda\x69\xc6\x52\x1f\x4f\x10\xd4\x22\x5d\x69\x37\x35\xc2\xb2\xdd\x7f\x2f\x67\x8c\x7b\x44\xf0\xd4\xb9\xb0\xa1\xcb\xbc\x80\x10\x72\x39\xea\x60\xb4\xf0\x41\x82\x6c\xd5\x76\xcc\x9b\x19\xc7\x81\x39\x8f\x83\x99\xd8\x5b\x77\x98\xff\x4a\xff\x21\x99\x41\x69\x3e\x1b\xc2\xd2\x20\xad\xc1\xad\xb9\x16\xa3\x21\xef\x72\xd8\xa4\x37\x3b\x3c\x46\x83\xe9\x4d\xab\x9b\x9a\x2e\x2b\x09\x49\x72\x52\xaa\x2c\x75\x5d\x42\xa8\x7b\x52\xb4\xf0\xdc\x1c\x0e\xfc\x2c\x64\x67\xfc\xdf\xf2\xa9\x5e\xa2\x6a\x40\x4e\x97\x50\x52\x7f\x28\xbb\x24\xf9\x02\x21\x96\xcf\x76\x67\x68\xed\xd4\xff\x89\x3e\x81\xfa\x33\xa1\x4b\xf2\x58\x48\xe2\xd9\xd5\xab\xdd\xe4\x47\x88\x8f\x5d\x74\x9e\x15\x18\xf7\x2f\xbc\x4c\xc8\x3c\xae\xf2\x6d\x37\xc1\xce\xeb\x39\xd3\x13\xea\x44\x88\xf8\x2c\xc8\x7e\xbf\x78\x17\x47\x91\x28\x35\xec\x09\xe0\x96\xe0\x28\x8f\xc5\x34\xd5\x37\xf0\xfb\x12\xce\xfa\xd8\x4f\xbd\xa0\xe3\x4b\xd8\xa7\x7b\xb7\xa1\xcf\xd0\x87\xa3\xbc\x59\xb3\x62\xeb\xb4\x3b\x8e\x04\xe8\x48\xc7\xfd\xa9\x3e\x41\xe8\x0f\x36\x5e\xdc\x53\x18\x47\x58\x31\xf2\x2f\xb0\x04\xc2\x93\xd6\xf3\x9d\x23\xe0\xd5\xdd\x93\xfb\x7f\x61\x52\x64\x55\x1a\x34\x75\x3b\x41\x7b\x97\x62\x02\x7b\x95\xe1\xbf\xca\x1f\xe3\x19\x6d\x67\x2a\x77\x13\xf2\xcc\xda\x9e\x64\x89\xb0\x09\xce\x42\x6e\x48\x3a\xde\x45\x50\x15\x0d\xff\xee\x69\xd5\x45\xd0\x12\xdf\x55\x1d\x59\x59\x4a\xf0\xca\x37\x28\x7a\xe2\xd0\x45\x18\xa2\xb2\xcc\xf6\xaf\x65\x84\x3e\x95\xab\x39\xd6\xe3\xa7\x10\x1a\x15\x2a\xd9\x9f\x11\xf1\x2f\x68\x7c\x29\xbc\xf0\xfa\xe6\x9e\x7f\xe1\xfe\x99\xc9\x9b\x46\x7e\xa6\xdd\x56\xe7\xcd\xc2\x86\x7f\x99\x1b\x02\xad\xf7\xbf\xf7\x2b\x27\x38\xe4\x28\xcf\xce\xf6\x2e\x27\x38\x9a\x28\x7e\x0f\x6c\xab\x65\xb0\x5e\x50\x9f\xed\x77\x27\x9c\x50\xe5\x36\xb6\xfd\x4b\xfd\x66\x82\xee\x8b\xb6\xd8\xf7\xa2\x25\x84\x39\xb6\x7c\x35\x23\xd0\x7d\x13\x7f\x60\x51\x62\x09\x21\xea\xfc\xed\xc5\x7b\x8f\x5b\x12\x54\x76\xc8\x84\xae\x6a\x53\x26\x38\xd4\x33\x5e\xed\xd7\x4b\x09\x8b\xae\x2b\x9c\xfd\xf3\x35\x8c\xe0\xf0\x84\x5d\x78\x31\xf6\x02\xa1\xfb\xed\xec\x77\x45\x57\x2e\x10\x42\x96\xc7\xef\x9a\xa0\x16\x45\xff\x3f\x3e\xee\x34\x9a\xca\xff\xfd\xff\x7e\x32\x96\x0c\x99\x53\x99\xe7\x92\x21\x43\xc2\x79\x20\x63\x12\x22\x43\x0a\x95\x32\xa4\x08\x25\x95\x90\xa1\x41\x29\xa5\x34\x87\x06\x53\x83\xb1\x34\xb0\x91\x94\x54\x44\x2a\xd2\x9c\x26\x32\x95\x7a\x89\x72\xad\x5a\xeb\xff\xdd\xfb\x5a\xeb\xb3\x7e\xb7\xde\x8f\xf5\x3c\xf6\x0d\x36\xeb\x74\xbc\xdd\xd8\x88\x2d\xbf\xaa\xb1\xac\x67\x27\x21\x6e\xf1\xe5\x9b\xfe\xf7\xcb\x09\x47\xe6\x69\xb9\xcd\xa9\x9d\x43\x18\x6e\xe4\xeb\xbe\x24\xc3\x47\x78\x69\x36\xad\x2f\xc0\xfb\x2c\x21\x06\xb3\xda\x95\x45\xd2\x09\x59\x73\x5f\xb7\x6e\x0a\x0b\x24\x28\x28\x99\x4b\x7e\xb3\x3d\xc0\x42\x67\xd8\xfa\x13\x93\xee\x56\x13\x1b\xd3\xf6\x4e\xf6\x51\x6f\xac\x26\x94\xde\x7d\x2b\x24\xb8\x71\x11\x01\xbc\xa7\x33\xbb\x35\x5a\x58\xf0\x98\x30\xae\xbf\x71\x7a\x0d\xe1\x50\xfc\xbe\x29\x41\x27\x2b\x08\x96\xa6\xab\xdb\xc7\x1b\xd6\x10\x3a\x9a\x6a\x5d\xdc\x1f\xd6\xb3\xa0\x1e\x4c\x52\x96\x42\xca\x84\xad\xb2\x17\x27\x4a\xe6\x5c\x24\x7c\x1a\xf5\xbc\x24\xf1\xdf\x60\x3a\x62\x1f\xed\x2c\xdf\x49\x48\x73\x0f\x76\x1c\xd2\x49\xe5\x28\x51\x8e\x6e\x67\xfe\xa1\x77\xff\xc4\x58\x85\xad\x93\x09\x9d\xee\xc7\xfc\x5b\x7d\x35\x09\xea\x69\x2e\xbb\x6a\xe5\xd3\x09\x4d\x73\x17\x7a\xcf\x51\xdf\x4f\x88\x95\x9e\x17\xea\x11\x1d\x4f\x88\x4c\xdf\x59\x3b\x94\xbe\x92\xb0\x24\xd8\x71\xb9\xa2\xf3\x64\xc2\x78\xb1\xb9\x11\x5b\xb4\x96\x11\x32\x8d\xdd\x93\x7c\x1d\xcb\x08\x3f\xaf\x8c\xec\x76\x37\xbc\x43\x98\xa9\xf1\x68\xe9\x3f\x7c\x50\x10\x97\xba\x94\xb0\x96\xf0\xe2\x48\x49\xa2\xf5\xc2\xad\x84\xe1\x2f\x7b\x5d\x5d\xec\x42\x08\x37\x3b\x04\x49\xc7\xe8\x03\x03\xf7\x56\xff\x4f\x96\x1f\x72\x58\x58\xb6\x72\x63\x9c\xcb\x86\x87\x84\xcd\x66\x8d\xbe\x2b\xc5\x4b\x09\xdb\x75\xce\x56\x26\x37\x3c\xaa\x82\xd7\xc7\x1a\xdd\x93\xcf\xfc\x08\xba\xe3\xeb\x8d\x2d\x62\xfc\x09\x57\x9f\x9b\x87\x39\x70\x05\x12\x7b\x34\xfa\x7b\x60\xc7\x82\x12\x01\x82\x50\x74\xef\xf4\xda\x85\xf1\x04\x77\xdb\xfc\xb3\xeb\x17\x7a\x13\x8a\x44\xfb\xa6\x0c\xd4\xd9\x11\xb2\x05\xdc\xae\xe7\x3c\x48\xe7\x40\xb5\xcd\x50\x62\xd1\x89\x78\x42\xa2\x47\x9e\x4c\x64\x9a\x01\x61\xef\x29\xa7\xf9\x36\xe7\xa4\x08\xbd\xdc\x35\xd1\xc9\x67\x14\x09\xf1\xbe\xef\x9d\xde\xcc\xf1\x27\xf0\x96\xaf\x77\x9c\xb2\x7d\x1e\x21\xc6\x3f\xc1\xf4\xdb\xd7\x40\x42\x82\x42\xf5\xdd\x93\xe1\xca\x84\xa7\x02\x81\x69\xfd\x13\x44\x09\xfe\xaf\x82\xdc\x16\xb6\x5f\xe0\x40\xb7\xcc\x8b\x0b\xa7\xf8\xa6\x10\xde\x08\x8f\xc9\xf3\xb5\x2a\x13\x66\xd5\xae\xe1\x0a\x9c\x36\x8e\x70\xb8\x5c\xa6\xe7\x9e\x83\x2e\x81\x97\x67\xce\xb1\xfe\xfb\x72\x1c\x58\xe1\x70\x71\x93\xf9\x4f\x61\x42\x8c\xe6\x5a\x1d\xad\x85\x3d\x0c\xbb\x54\x1e\xb3\x7b\x76\xee\xf6\x4d\x82\x93\xc0\x81\xcd\x4d\x61\xe2\x84\xb7\xe7\xd5\x4c\xd5\x22\x57\x13\xb6\xc6\xfd\x5e\xaf\xbb\x64\x3e\xe1\x5a\xad\xdb\x1a\xb5\x16\x79\xc2\x53\xae\xee\x71\xa5\xfb\x67\x12\x52\xbe\xf6\x9f\x30\xbd\xe7\x4c\x08\x99\x70\x7d\xc0\xe3\xb4\x3d\x61\xfd\xb9\x4b\xfb\x74\xd5\x06\x18\x1c\x38\xf6\x48\xb1\x78\x98\x87\xe0\xf5\xe9\x87\xf2\x55\xa5\x72\xc2\xca\x9e\xd7\xe7\xaa\x52\x55\x09\xae\x23\x66\x2a\x16\xef\x66\x12\x3e\x45\xba\x69\xcc\x3b\x38\xc8\x40\x56\xef\xd2\xad\xa1\xef\x43\x0c\x7c\x12\x87\xb7\xae\x98\xf7\x96\x81\x7f\x66\x7c\xe3\xdd\x3a\x3d\x42\xfd\x82\xc7\xbb\xf7\x58\xeb\x10\xf6\x07\x0b\xeb\x5f\x8d\xed\x65\xb0\xf1\xae\x93\x53\xf1\x26\x29\x62\xc3\xcd\xcc\x63\xf1\xd2\xa5\x77\x19\x64\xb8\xb4\x9c\x1d\x3c\x39\x81\x30\xa3\x7f\xf7\xd2\xac\x61\x30\x48\xaf\x6d\x53\x68\x70\xe9\x60\xc0\x9b\x58\x1b\x32\x10\xde\xc9\xe0\xa9\xe0\xae\xef\x49\x3c\xab\x09\x2f\x7e\xdb\xdf\x7d\xe7\xe6\x45\x58\x75\x7a\x53\x5b\xbd\x9e\x03\xe1\x4c\x3c\x93\xa1\xa8\x63\x4a\x18\x3b\x11\x71\x33\xc4\x4e\x97\xe0\xe7\x2d\x7a\x32\x27\xae\xea\xef\x6e\x59\x29\xf2\xf6\xaa\x0c\xe1\xec\x3a\xff\xea\x7d\x7c\xef\x19\x9c\x71\xdc\x6c\x7a\x26\xf8\x3c\x0b\x29\x07\x77\x89\xac\x2f\xde\x48\x58\xd5\xbd\xf9\x55\x50\xfa\x5c\x42\x64\x5e\x41\xd9\xe2\xa9\x65\x84\xe5\xa7\x87\x14\x8a\xbf\x7c\x67\xf0\xb5\xe4\xdc\x17\xef\x18\x15\x42\xa3\x49\xa6\x5f\xcd\xca\xf5\x1c\xc8\x12\x7a\x2a\x7b\xaf\x3a\x92\x70\x26\x33\x6b\x86\x70\xcf\x01\x42\xf6\xf8\x29\x8c\x5a\xd6\x42\x82\x8b\xe0\x93\x90\x1b\x03\x7f\x18\xa8\x45\xbb\xae\x9d\xc8\x2d\x4a\x78\xaa\x38\xe9\x60\x71\x94\x21\x07\x2e\x27\x69\x73\x1f\x4f\xbe\xc3\x40\x71\xc6\x76\x9d\xb7\x4e\xa6\x04\xee\xe6\xa4\x9e\x25\xb6\xe2\x84\xd7\xc2\x6d\x5c\xb6\x87\x45\x09\x8f\x53\x5a\x0b\xf6\x68\x05\xfe\x17\x06\x9e\xe7\x6c\xac\xe0\x1b\x66\x60\xb1\x76\xe3\xc6\xeb\xf9\x1d\x2c\x4c\x49\xa9\xea\x74\x4b\x2f\x61\xc1\x21\xfe\xda\x75\xc5\x2e\x25\x02\x7f\xb3\xc1\x1e\x7f\x47\x79\xc2\xdb\xb0\x98\x0a\x29\xf9\xf1\x84\x8a\xa8\x98\xd9\x57\xda\xd4\x09\x6d\x5f\x77\x4e\x3c\xdd\xac\x42\x48\x14\x11\x9b\x31\xdd\x5f\x80\x20\x9c\xf6\x84\xb7\xda\x4f\x97\xb0\xed\xd2\xf4\xf7\x9f\x14\x44\x09\x6f\xaf\xad\xef\x19\x18\x98\x41\x98\xb0\x66\x96\x95\xd3\xb5\xfd\x84\x24\x9b\x36\x99\xf0\xeb\x8a\x84\x06\x9f\x94\x07\x8e\x85\x9d\x0c\xca\x67\x6d\x1d\x9b\x5d\x95\x48\xf8\xbd\x78\xd2\xad\x95\x3b\x18\xc2\x2c\x23\x09\xd9\x1f\xc6\xa6\x84\x1d\x8d\x13\x1c\x6f\xb4\x1b\x12\x2c\xd3\x44\xbf\xd8\x6b\xeb\x11\x0a\x1d\x9e\xfb\x26\xde\xe4\x27\xa4\xf8\xde\x7b\x79\xd7\xd9\x97\x10\xc4\xf7\x28\x99\x3b\x30\x90\xa3\xfc\x16\x51\xed\xd8\x66\x2c\x4a\xe8\xf7\xb8\x56\xb9\x33\xcc\x82\xa3\x9c\x34\x1b\x76\xdf\x23\xf4\xba\x0a\x97\x32\x93\xbe\x77\x6f\x9d\x4f\xc3\xbf\xf4\x9d\x03\xe6\x86\xfe\xef\xc4\xdb\x67\x47\xcb\x37\x87\xab\x13\x66\x95\x6f\xbc\x1d\x75\xb4\x87\xc1\x9b\xa7\xe3\x77\x2d\x08\x56\x25\x5c\x7d\x32\xd1\x89\x39\xc0\x47\xb8\xa8\xb6\x78\x47\x73\x72\x1a\x0b\xd3\x3f\xf0\xb6\x56\x47\x2a\x13\x9e\x1d\x5d\x15\x66\xb4\xba\x83\x81\x8b\xf3\x92\x97\x72\xcb\x95\x08\xdc\x2e\x93\x3a\xca\x67\x4e\x27\x4c\x56\x7d\x69\x2c\xec\x66\x4c\x18\x58\x23\x50\xd0\xcf\x32\x22\x2c\xcc\x5d\x72\xe5\x5d\xb5\x22\x61\xf6\x93\x44\xae\x68\x8d\x89\x84\x56\xb7\x24\xde\x48\x59\x51\x42\xc0\xad\x13\x8a\xd5\x64\xcf\x51\xf4\xca\xaf\x6f\x4a\xd9\x64\x40\xb0\x4b\xb8\xbb\x71\x74\x86\x21\x47\x71\xdf\x6b\xb1\xbe\xac\xaa\x9f\x01\xb7\xf9\x84\x03\xf6\x8b\xe2\x08\x0b\x15\x22\xa6\x2a\xe9\xda\x10\x24\x6f\xdc\x7e\x57\x39\xd7\x92\xb0\xc7\x42\xfb\x4e\xd2\x67\x0f\xc2\xa7\xa0\xfa\x12\xab\x39\x8b\x08\x8b\xf7\xbc\xcd\xd2\x59\x61\x40\xd0\x58\xf3\x44\xa9\xa1\xcd\x86\xc0\x9a\x3a\x54\xb8\x6a\xd4\x81\xd0\x12\xd1\xee\x99\xb8\x4e\x9f\x90\x2b\x72\x38\x56\xc0\x42\x9c\xb0\xd3\x77\xe1\x99\xb1\x05\xc2\x04\x26\x33\xd0\x31\x7e\x91\x33\x07\xfc\x0e\xc4\x55\x2e\xd4\xe5\xe6\x40\x9c\xcf\x9b\x4b\x67\x6d\x47\x18\x36\x24\x65\xad\x8d\xe6\x1c\x6b\x62\x20\xbf\xff\x6a\xf2\x60\x2d\x1f\xe1\xf1\x3e\xef\xcd\x9a\x53\x0f\x12\x26\xec\x93\x74\x4f\x98\xb9\x80\xe0\x78\xe8\xf6\x61\xc3\x60\x39\x82\xf7\xe6\x31\xde\x55\xbc\xee\x84\x4f\x25\xa9\xdf\x4e\xf7\x0a\x13\x6c\xd7\xbf\x35\x9d\x12\xa5\xc0\x81\x03\x36\x3a\xf9\xfd\x3c\xa5\x2c\x76\x91\x3c\x24\xcf\x35\xbd\xc7\xe4\xbf\x30\x21\xcb\x64\x67\xf8\xf6\x66\x06\x8b\x45\xa7\x99\x05\x4d\x55\x24\x6c\x3b\x53\xde\x1c\xb2\xeb\x27\x83\xc4\x19\xbd\xeb\x52\x7a\xa7\x11\x1b\x26\xde\x61\x17\x1f\xf1\xfe\x62\x50\xe2\x18\xdd\x3d\xa5\xc9\x98\x70\xba\xef\x71\xc4\xc4\x09\xa1\x84\x9f\x8f\xab\x42\xa3\x46\xf4\x09\xf9\x71\xc5\x11\x82\xd1\x8a\x04\xc5\xd6\x0d\x49\x23\x32\x7b\x09\xdd\xa5\x46\xb2\x43\x9d\x97\x08\xb2\x16\x8d\xbd\x4e\x94\x49\x30\xbe\x10\x39\x7b\xc9\x7c\x35\x42\xc2\x1e\xdb\x58\x2a\x55\x25\x88\x3c\xb1\xb4\xf2\xb9\xa1\x43\x30\xff\x13\xfe\xe9\x85\x96\x22\x41\xf7\x6d\x9d\xa8\x52\x70\xe4\xdf\xa7\xaa\xdd\xb2\xac\x94\x70\xc2\x1b\x95\xe9\x57\x95\x17\xb8\x13\x32\xe6\xef\xda\xf6\x5d\x7a\x36\x81\x7f\xaa\xb9\xc2\x69\xdd\x1f\x0c\xc4\x56\xfa\xe9\x62\xe9\x10\x83\x46\xd5\x20\xad\x99\x07\x35\x08\x3c\x02\x9d\xc9\xa7\x5a\xa6\x72\x60\x86\xbf\x8b\x9a\x24\x6b\x0a\xe1\xc6\x02\xed\x7b\x51\x8a\x42\x84\xdd\x2b\x43\x6a\x93\x54\x16\x12\xfc\xa4\xc7\x2d\xff\xa2\x32\x89\x20\x3e\x65\x5a\xc6\x3e\xe3\x01\x86\x8d\xdd\xfd\xed\x0f\xb4\xf6\x28\x10\x94\x2f\x36\xdb\xbc\x3b\xa4\x4b\x38\xb5\x67\xe9\x9a\x9b\xb2\xd6\x1c\xd0\xb3\x1d\x1c\x0c\x0b\x54\x20\x3c\xa3\xdb\xfb\x06\xcf\x3a\x12\x6c\x0c\x45\xb9\x7e\x64\xbe\x66\xe0\xf2\x23\x5d\x54\x61\x81\x0f\xb1\xa1\x3c\x99\xff\x83\xb6\x4d\x15\x83\x38\xc1\xb3\xa6\x0b\xd4\x47\x18\x28\x2e\x73\xf8\x98\x10\xdb\xcf\x81\x5f\x35\x85\xbe\xa7\x4e\x75\x30\xd0\xdb\xbc\xe2\xb7\xc4\x6d\x79\x42\x79\xc4\xf4\x88\xae\xcb\x6f\x18\xac\x3a\xb5\xbc\xa6\x24\x40\x9a\xfe\x03\xd5\x4e\xdb\x2c\x94\x9d\x9a\x19\x90\xd5\x81\xa6\x3f\xbf\x2b\x18\xc8\xdb\x79\x7c\x79\xf1\x86\x88\x8d\xd0\xf3\xd1\x93\xe4\x8d\x67\xb3\xd8\xe5\x86\xd7\x3b\xbf\xb5\x03\xca\x04\x87\x95\xc5\xdd\xb0\xcf\x60\xb1\xcb\xff\xf0\xda\x50\xa5\x7b\x78\xf5\x6b\x06\x4b\x95\x5f\xd8\x45\x16\xd5\xb0\x10\x35\xcb\x67\xc0\xb0\xc1\x93\xe0\x61\xe1\xa3\x72\xca\x78\x0e\xa1\xf4\x64\x4a\x72\x6c\x97\x2d\xe1\xf5\xc5\xcd\x39\x52\x03\xf2\x84\xee\x81\x61\xb1\x92\xde\x23\x0c\x3e\x2a\xdf\x52\xf5\x12\x71\x20\x28\x27\xe6\xee\xd7\x7e\xb7\x82\x30\x2b\x52\x52\x36\xd4\x76\x0e\xc1\x72\x8a\xd6\xb3\x8b\x91\x7c\x04\xf3\x9a\x9d\x79\xa3\xdb\x84\x08\x0b\x4f\xb5\x3e\x51\x95\x9d\xc8\x01\xc7\x59\x66\x1b\x54\x43\x47\x18\x2c\xf2\x49\x34\x4b\x35\xf3\x27\xfc\xd9\x37\x18\x73\xc2\xf6\x60\x15\x6c\xb3\x97\x32\x2d\x55\x91\x2c\x54\x5c\xba\x7d\x64\x93\xeb\x42\xc2\xea\x94\x5f\x89\x7f\x42\x56\x12\xbb\xbc\xbb\x7e\x64\xa1\xe8\x3b\x47\x42\x7e\xdb\x94\x9a\x5b\x65\xe2\x84\x54\xe7\x9b\x0e\x07\xbc\x2d\x08\x7d\x4b\x7d\xbb\xce\x1c\xd9\xc2\x82\x5d\xdf\x93\x61\xb3\xbf\xdf\x4e\x46\x6a\x9e\x43\xf8\xc1\x9f\x0c\xac\x57\xaf\x28\x4d\x3d\x2f\x4b\x6c\xb8\x29\x4d\x58\xf8\xae\xf8\x0b\x03\xf1\x2f\xd2\xf3\xb8\x43\xc0\x20\xe7\x43\x50\xf0\xb7\x59\x43\x1c\x80\x69\xbd\xcb\xeb\x86\x32\x06\x67\x0a\x82\xbc\x91\x19\x40\x88\x09\xcf\x8e\x9f\x23\xe7\x44\x90\x52\x73\x17\x25\x2b\x2b\xc2\x50\x73\xf8\x94\x8a\x89\xe3\x09\xaa\x6e\xaa\x0d\x4f\xd7\x59\x12\x4e\x7d\x08\xd0\x9a\x2b\x52\x47\xa8\xfb\x6a\x20\x1f\x33\x6f\x3e\xe1\xd3\x42\x33\xc7\x46\x13\x86\x90\xa3\x12\x22\xb3\x6f\xb7\x15\x61\x6a\xcf\x14\x99\x3f\x27\x57\x12\x58\x8f\x8d\x06\x6e\xaf\xb7\x22\x1c\xb8\xd2\x56\xdf\x38\xac\x4c\xd8\xa9\xec\x1f\x67\x25\x3f\x9b\xe0\x73\xd0\xe8\x7e\x7f\xd1\x18\x83\xd9\xc9\x9a\x91\x76\x87\x15\x08\xb7\x24\x57\x9b\xc6\x27\x4b\x12\x24\x2b\xb2\xd3\xa6\xda\xbb\x13\x4e\x98\xbb\xee\xfe\x70\xc9\x86\xf0\x6a\xed\x93\xdc\x39\x42\x0a\x84\x25\x97\x87\xe5\xd2\x83\xe6\x13\xae\xd2\x18\x57\xf8\x1c\x4b\x82\x71\xd8\xbd\x6b\x32\xfb\x17\x12\x1e\xbc\xdc\xee\xac\x5b\x63\x45\x28\x52\xd8\xf9\x87\xbb\x1b\x0c\xa2\xce\xfb\x58\xf9\xaf\xb9\x46\xf0\x51\xec\x1b\x33\xad\xfe\xbb\x91\xf4\x8a\x29\x1f\xbe\x61\x48\x70\x7c\x75\x74\xd3\xe5\x59\x33\x09\x7b\xd7\xd5\x1f\x8a\x9d\xa7\x49\x08\xb5\x71\x2d\x4a\x0b\x30\x25\x84\xa7\x54\x1a\x08\x8b\x2b\x11\x1e\x6e\x3a\xe5\xf9\x56\xd8\x8b\x03\xe6\xc7\x0c\xcf\xdf\xb5\x13\xe1\xc0\x51\xa7\x37\x41\xfc\x09\x3d\x0c\x3e\x4b\xf3\xef\x3a\x71\x54\x96\xd8\x28\x60\x14\x5c\x3a\xda\xbe\x33\xf0\xcb\xb2\xbb\x59\xb8\x4b\x91\x30\xbf\xb8\xc3\x58\xdc\xc7\x88\xb0\x3d\xac\x50\xc8\x2f\xc3\x90\xb0\x7d\xf3\x2d\x6d\xdb\xc7\x32\x04\x13\xa1\x49\x49\xa1\xd9\x4f\x19\x04\xf2\x4f\xdd\x7b\xc8\x45\x8d\xd8\x78\xff\x82\xcf\xda\xc5\x42\x93\x03\x3e\x73\x94\xef\xc7\xd7\x8d\x32\xf0\xe8\x9b\x60\xa2\xed\xd5\x51\x85\xe8\xdf\x31\x9b\xd7\x5d\x99\x45\xff\x01\x87\x82\x64\xdf\xa3\x8c\x2e\x61\x8e\x6f\x8d\xd6\x89\x03\x5a\xff\x05\xdb\x8b\xdb\xaa\xab\xca\xb6\x11\x32\x53\xb8\xc4\xb3\x67\x6f\xe4\x28\x26\xa7\x8e\xde\x8c\xf7\x8d\x20\xec\xde\x27\x24\x33\x79\x73\x32\x0b\x0a\x72\xcd\x99\x85\x17\x96\x13\xb2\xa6\xf3\x88\xc9\x09\x88\x13\xdc\x04\x1a\x84\xc3\x32\x94\x08\x69\xd3\xb2\x05\xca\x1d\xdb\x58\x38\xd1\xf7\x28\xea\xbc\xf8\x1d\x16\x8e\x5c\xef\xf6\x7b\x74\x54\x98\xa0\xdf\x10\xbf\x7a\x67\x0c\x8b\x05\x0f\xd1\x20\xd7\x77\xdb\x05\x08\x47\x2a\x2d\x9c\x1c\xeb\xfb\x19\x36\xcc\x0e\x8e\x3b\x77\x20\xe7\x16\x83\xf0\x8c\xd0\x08\x41\xd7\xcf\x0c\xb0\xb7\xf5\xf6\x94\x5f\x86\xc4\x86\x5d\x30\xf7\xc7\xb2\x4b\x12\x84\x68\xed\x27\xe3\x16\xab\x4e\x27\xdc\x9a\x17\x57\xad\xa5\xf7\x91\x41\xd0\xb0\xe8\xb2\x47\xa1\xf6\x84\x98\x94\x9c\xc2\xb3\xeb\x0d\x08\xde\xa2\xcb\x4f\x04\x8a\xa4\xb0\x60\xcf\xe5\xb3\x3b\xb5\x45\x97\xd0\x9d\xb0\xe7\x76\xf6\xae\x7e\x06\x5f\xfa\xd7\xe6\xbf\x97\x10\x22\x04\x8d\x66\xbf\xde\x11\xe4\x46\x70\x79\x2a\x67\x65\x3e\xcd\x9d\xb0\xeb\xea\xd5\xf0\x12\xd1\x97\x84\x5c\x79\xe6\xd1\x1c\xfb\x8f\x84\xef\x2f\x77\x46\x5b\x9f\xaf\x27\xa0\xee\x55\xc1\x8b\x1d\x6f\x09\xce\x2b\xf6\xca\x3e\xcf\x97\x25\x88\x8f\x46\xac\x88\x73\xbc\x41\x38\xe4\xc2\xdb\x70\x76\xd6\x47\x06\x1a\xa9\x87\x33\x4c\x46\x45\x08\xf1\x1e\x2d\x67\x0e\xaf\xf3\x20\xf0\xfe\x86\xed\xa6\xde\x59\x84\xa1\x69\x0a\x19\x77\x78\xb5\x08\x82\xe8\x0b\xd6\x9b\x35\xc8\xa0\x2e\x77\xf5\x0f\x0d\x0f\x5e\xc2\xf8\xd9\x15\x43\x93\x35\xa5\x39\xd0\x15\xb2\x60\xec\xf0\x82\x93\x0c\xb6\x69\xd8\xd8\x7a\x72\x59\x11\xec\xe7\xc8\x1d\x3c\xf1\xf7\x57\xf4\x7f\x88\x2c\x33\x30\x8f\xbf\xf2\x9a\xc1\x9b\xe3\x69\xe3\x55\x87\x17\x11\x8a\x57\xb4\x5e\xc9\x5d\x7a\x97\x60\xec\x2f\x2b\x6f\x6e\x1c\x4a\xb0\x39\xbd\xf1\x4d\x78\xf1\xb3\x2a\x3c\x3e\xf3\x52\xb2\xb8\x55\x93\xd8\x30\x4f\xd5\x56\x76\x29\xf9\xc1\xa0\x73\x62\x48\xac\xd9\x0f\x23\x42\xd7\x16\xcf\x4b\x43\xb9\x8b\x09\x71\xa5\xa2\xcb\x03\x97\x6a\x12\xd6\xca\x04\xad\xa8\xde\xc5\x4d\x08\xdf\x90\xe0\x52\x28\x6a\xc1\x01\x56\xb8\x07\xf7\xeb\x69\x9b\x38\x50\x34\x2d\x31\x45\xc7\x3c\x94\xf0\x3d\x4d\x53\x48\x6f\xa9\x15\xa1\x67\x66\x8a\x9f\xb2\x87\x0f\xc1\xda\xbb\xf4\xaa\x8b\x98\x24\xe1\xc2\x5e\xe3\xd6\x93\x39\x5c\x84\xae\x73\x97\x27\x6d\x38\x91\xc0\x81\xfc\xbb\x29\x8b\x9c\x78\x46\x19\xfc\xee\x53\x7a\x1c\xd9\xc5\x4f\x38\x74\x53\x3d\xc5\x4b\xd7\x96\x90\xe2\xf9\x6a\xb8\x49\x7a\x25\x07\xec\x8b\x24\x2d\x05\xdc\x15\x09\x75\xda\xd2\xb3\x27\xf0\x38\x10\x1a\xae\x2c\xaf\x5c\xd1\x32\x8f\xf0\xc1\xcb\x64\xb3\xd3\x06\x22\x78\x2e\xce\x5e\x6b\xd7\xa6\x4f\x98\x19\x30\xc6\x0b\xcf\x25\x84\x03\x31\x4e\x77\x53\x1b\xdc\x08\x5b\x2a\x83\xfd\x5b\xea\xe5\x08\x65\x87\x7a\x7b\x76\x5d\x96\x24\xf0\x56\x37\x7b\x9d\xbb\xcd\x45\x58\x59\x7f\xe3\xba\xca\xb5\xa3\x84\xd9\xdc\xd8\x7b\xf0\xf7\x4a\x02\x4f\x53\x76\xfe\x07\xb9\xad\x84\x1f\xb7\x06\x17\x29\x8a\xac\x24\x78\xea\xbe\xe8\xd5\x0e\xe5\x27\x18\xbf\xfd\x1c\x98\xbf\xde\x89\xd0\x92\x96\xb7\x63\xc3\xef\x6e\x06\x62\xe5\x9b\xf7\x84\x2d\x78\xc8\xa0\x54\xf5\xd5\xd1\xa8\x76\x49\x82\x5f\xca\x41\xa3\xa8\x85\xf3\x09\x21\xea\xdb\xde\x65\x4e\xb5\x20\x68\x5d\x32\x74\x4b\xe6\x57\x26\x5c\xc9\x5b\xee\x11\xf5\xe0\x19\x03\x3d\xab\xdb\x57\x13\xfc\x34\x08\x13\x8c\x7c\x4b\x63\x62\x17\x12\xc2\x43\x56\xeb\x1d\x52\x9a\x4b\xd8\x50\x24\x2b\xdd\x7e\x2f\xa0\x0a\x97\x63\xa3\x4f\xfe\xaa\x76\x25\xcc\x52\xd1\xf8\x70\x42\x8b\x38\x50\x9c\x3f\xe1\xe7\x2d\x95\x71\x84\x6d\x02\x47\x27\x44\xcc\x91\x22\xe8\x5f\x13\x5b\xd8\xbb\x6c\xc1\x7f\x41\xcc\xc6\x25\x24\xfd\x8c\x15\x21\xa6\xe6\x58\x57\x54\xfe\x39\xc2\x49\xbe\xab\xd5\x79\xd2\xdf\x18\xa8\x64\xcf\x9f\x93\xed\x70\x86\xe0\x66\xa3\x5f\xd2\x77\x3e\x87\x50\xb1\xc7\xae\xe1\x1f\x72\x07\x4b\x44\x57\x04\x2e\x25\x6c\x55\x75\xdf\x7e\xcf\x6a\x80\xc1\xce\x49\x5c\x49\xae\x61\xf2\x84\x5d\x65\xcf\xb6\x76\xdc\x9b\x4d\xd8\xb2\x71\xd2\xca\xbd\x5e\xd2\x84\xd1\x85\xf6\x3a\x23\x13\x4b\x08\xac\xb5\xe4\xbf\xc0\xd2\x86\x10\x64\xf4\x75\xf5\xb2\x1c\x86\xb0\x76\x7f\xc4\xea\x7b\x19\x17\x08\x4b\x0c\x16\x6e\xfe\x55\x6c\x4f\x98\xf0\x72\xa8\xcd\x52\x6f\x2a\xe1\xd4\x2e\x9f\x9e\x9a\x0c\x0f\x42\xb0\xf3\x51\xa9\x90\x6d\x1b\x09\x39\xae\x62\x36\xd2\xe9\x1e\x84\xb3\x7b\x67\xee\xd0\xd5\x34\x27\x48\xff\x59\xb5\xfa\x7b\x99\x3e\xe1\xf8\xb5\x3c\xee\x54\x45\x7d\x42\x4c\xc9\xa5\xed\xcb\xdc\x7b\x18\x1c\xb8\x7f\xce\xdb\x5f\x5c\x8a\x50\x1e\x73\xfc\x90\xf6\x76\x6d\x02\x97\x15\xd7\xf1\xe3\x8e\xcb\x09\xf3\xde\x3e\xdb\xd1\x67\x14\x48\xf0\xce\xb1\xe4\x5f\x37\xb1\x89\x41\x4e\xa7\x9f\xd1\xd4\x02\x15\x62\xa3\x6d\xed\x41\x91\x79\xa7\xb9\x08\x91\x93\x5c\x3c\x93\x1e\x28\x12\xb2\x46\xa4\x2f\xa8\x57\x74\x32\x68\xaf\xaa\xda\x61\xb3\x60\x21\xb1\x51\xf1\x2d\x32\x6f\xef\x93\xef\x0c\x1b\xd2\xe7\xa7\xfb\x1b\xaa\xcf\x24\x36\x44\x9e\xcc\x8a\xf2\xb5\xdc\x5f\x05\xbd\x11\x25\xef\x08\x6b\x86\xe0\xa5\xee\x1b\x98\xef\xe8\x47\xf0\x7d\x6a\x5b\x35\x73\xcf\x6c\xc2\x15\x11\x93\x1d\x02\x5d\xd2\x84\x30\xfd\xd3\x02\xe7\x7f\x8c\x31\x58\x56\x22\x74\xed\xf6\x41\x2d\x82\xf9\xca\xd7\x76\xc9\x7e\x3a\x84\xbd\xde\xe6\xa7\x4b\x37\xeb\x13\xde\x2f\xb1\x38\xa5\x14\x77\xa7\x0a\x3f\x12\xf3\xa5\x2d\xba\xd7\x12\x1b\x8d\x5f\xae\xee\xee\x8d\xec\x63\x10\x15\x14\x66\x7a\xb6\x4e\x82\xf0\x64\x4c\xb6\xa1\x3c\x9d\x87\x03\xfb\x4e\x97\x46\x70\xef\x1c\x64\xd8\xf0\xfb\x99\x7b\xab\x62\xa3\x2a\x21\xd1\x62\x92\xda\xfc\xf3\x33\x09\x6f\x93\x9c\x79\x8b\x63\x3a\xab\xa0\x7c\xf6\xf0\x92\xbd\x47\x04\x89\x0d\x9e\xfc\xcf\x3d\xfe\x8b\x67\x11\xc4\xd7\x77\xfd\xfe\x3a\x83\x87\x90\x3f\x61\x99\xd5\x1b\xb3\x51\x06\xe7\x15\xae\x75\xce\xf5\x98\xc6\x51\x5e\x96\x97\x34\x8c\xf5\x7d\x61\xf0\xa3\x38\xd8\xb8\x61\x9c\x08\xb1\x8b\x8a\xbf\xa3\xc9\x99\x47\x2f\xaa\x30\xd8\x3e\x70\xef\xd2\xd1\x04\xc2\xdd\x93\x3c\x03\x8d\x99\x43\x0c\x74\x4d\x64\x56\x2b\x90\x36\xfd\x07\x0c\x16\xea\x6f\x55\xfa\x7d\xb1\xea\xff\xc2\xe7\xa7\x5b\xf7\xe5\x59\x59\xd0\x7f\x20\xfc\xa0\x57\xa0\x87\x81\x2c\x61\xd3\x16\xd6\x44\xa9\x73\x7f\xf7\x79\x6d\xf7\xf7\x5c\x46\x32\x04\xfd\x8c\xb4\x73\x87\x4e\xd8\x13\xa2\xbf\x61\x71\xc2\x04\x27\x16\x66\xf6\x9c\x96\x2e\xe7\xb5\x20\x5c\xfa\xbc\x48\x30\xfb\xef\x0f\xf7\x66\xcd\xc0\x7b\xf7\x22\x65\x62\xe3\x59\xef\x61\x87\xa1\xca\x1e\x86\x8d\x6c\xc1\x75\x6b\x6e\xb8\x77\x71\xe0\x4e\x5f\xa7\x7a\xdd\xef\xb6\x2a\x36\x2e\x2f\x50\x98\xb5\x34\x7e\x21\xe1\x5b\x5d\x8b\xc1\x9f\xd3\x29\xc4\x2e\x26\x35\x0f\x07\xdf\x85\x8d\x30\x70\x56\x3b\xaf\x9d\x27\x55\x42\x08\x9d\xa1\xfa\x20\xff\x2f\xa2\xcb\xb7\xce\x9f\xf0\x75\x22\x07\x84\xc6\xbf\x3a\xe6\xbe\x56\x84\x03\xb5\x06\xe9\x61\xcd\x27\xac\x09\x8f\x6c\xc7\xaf\x48\xfd\x68\x41\x70\x1f\xbd\xb7\x3e\x5e\x60\x88\x81\x55\x58\x7c\x6c\x79\x81\x12\xb1\xb1\x4b\x7d\x6f\x9d\xbf\xe6\x73\x86\x8d\xf2\x43\x05\xf7\x25\xb4\x75\x08\xad\x82\xef\x9e\x68\x7d\x1f\x47\x58\xfc\x4b\xfc\x97\x74\xa8\x07\x07\xcc\x78\xe2\x6e\xa9\x08\xcf\xe0\xc0\xd6\xd0\x87\x45\x4b\xfd\xb9\x08\xd6\x63\xf5\x29\x2b\xae\x8b\x12\x5c\xa6\xad\x91\x8e\x9c\xe1\x42\x60\xa9\xbf\x9a\xa7\xff\x61\x84\x81\xae\x8e\x87\xc2\xd7\x4a\x69\x62\x43\x4e\x23\x71\x5d\x8d\xa3\x0a\xe1\x5c\x69\xc6\xfb\x94\x22\x09\x42\xa1\xb6\xe1\xa4\x51\x5a\x4c\x48\xbc\x25\xfb\x7e\x8b\xbc\x16\x41\x57\xcf\xe3\x75\x96\xc5\x30\x83\x6b\x2b\xa2\xe8\xee\x2a\x25\x82\xcd\x86\x83\xcf\x26\x3e\xfb\xcc\x40\x3d\xf5\xa1\x58\xcd\x74\x01\x62\x63\xc7\x9a\xa9\x4e\x93\xbe\xd8\x12\x66\x7c\x6c\xdd\x79\xf0\xbd\x11\x07\x96\x1d\x6e\x4c\xf3\xbf\xdf\xcd\xb0\x11\x6b\xf1\x83\xab\xd8\xe5\x29\x03\x15\x7d\xd1\xe1\x50\x2d\x35\x42\x44\xe7\x98\xa5\xa7\xa3\x25\xc1\xfe\xa8\x61\xf1\xbc\x86\x78\x8e\xe2\x27\x71\xb6\xff\x5b\x71\x17\x83\xa3\xb2\x65\xbb\xa2\xd4\x27\x10\xb6\xa7\x54\x3b\x15\xf1\x4d\x23\x28\x1c\xd3\x2d\x13\x6e\xf1\x26\xb4\xf6\xd6\x94\xf2\xbe\xf6\x26\x34\x8f\x5d\xf5\xda\x7a\xc1\x94\x60\xce\xd5\xfe\xab\xe6\x8f\x24\xc1\x27\xec\xa1\x8a\x5c\xc1\x30\x83\x82\x45\xe3\xd6\xdf\xde\x2f\x4e\x68\xf8\xbe\x65\xd9\x1d\x9e\x19\x1c\x58\x22\x78\xf0\x5d\x6b\x9c\x24\x01\x77\x93\xa2\x2e\x4a\x09\x11\x54\xd6\x09\x9d\xca\xd2\x98\x4d\x98\xb5\xe2\x73\xa2\x78\x10\x0f\xe1\xcb\xa6\xb5\x5e\xd7\x23\x1a\x09\xa9\xf7\xbf\x3e\xb8\xf6\x17\xf7\xb7\x1f\x75\x7c\xff\xea\x7e\x15\xf8\xb8\x17\x94\x55\x0e\x9a\x12\x5c\x83\x3d\x1e\x94\x59\x28\x12\x46\xe6\xcb\xf9\x3d\x3e\xae\x4d\xe0\x3f\x90\xf1\x7b\xd1\x45\x0b\xc2\xf7\xf4\x2b\x25\x8d\x81\x2c\x16\x72\xe6\xc7\x7d\xf8\x57\x86\x03\xd6\xa5\x96\x5f\x1c\xc7\x81\x0b\x3f\xee\x19\x09\x49\x3b\x71\xa0\xdd\xa4\x44\x33\xe7\x26\x1f\x07\xb4\x23\xce\x2f\xec\x2b\x52\x20\xb8\x38\x68\x06\x65\xec\xb8\x46\x30\xff\x5c\xbf\x51\xec\x59\x09\x61\xe2\x3d\x93\xfb\x6e\x42\xf6\x84\x88\xc5\x35\x17\x4c\x2b\x8d\x09\xca\xcb\xc7\x25\xf0\x25\x0f\x30\x48\x41\x97\xc3\x25\xe6\x00\xb1\xa1\xf6\xd9\x7d\x6b\xac\xd8\x76\xc2\x6a\xfd\x29\xdf\x6f\x3d\x32\x24\x2c\x99\xd0\x50\x72\x54\x6d\x88\xc1\x9b\x5f\x7c\x01\x2d\x1a\x6d\x1c\x38\xf1\xd1\x27\xc7\x24\xc3\x84\xa0\xe8\x53\xbc\x6c\x83\xcf\x2d\x82\xc9\x4a\x6e\x7c\x13\xeb\xac\x82\x75\x5e\x96\x67\x85\x8c\x1f\xb1\x31\x3e\xb6\xc4\x41\x27\x48\x83\xd0\xa0\x77\x65\x67\x89\xc3\x32\x16\x34\xa6\x1f\x50\x9f\x14\x3c\x9b\xb0\xb9\x26\xbb\x31\x20\xea\x00\x83\x6b\x05\xce\xf9\xe7\x37\x0d\x72\xe0\x14\x7f\x47\xee\xcb\x6b\xad\x55\xb0\x9a\xb3\x2a\xd5\x4c\x99\x87\x10\x9a\x24\x71\xdd\xe4\xfa\x04\x42\xc8\x42\xaa\x79\x10\x3e\xcc\xa0\x2b\x6d\x5e\x6d\xde\x46\x7d\xc2\x31\xef\xca\xf0\x33\xf7\x3c\x08\x6e\x73\xa2\x24\x8f\x70\x9f\x20\xe4\x9e\x08\x4c\x4f\xeb\xd7\x23\x28\xff\x51\x79\xe0\xbc\x3d\x87\xf0\xdd\x24\xda\x76\xf5\xbc\x03\x2c\x8c\x96\x36\x34\x5e\xf7\xb1\x21\x5c\xe7\x5f\xa5\xd6\x5e\xa2\x43\xa8\x4c\xdb\x50\xfe\x69\xb2\x3d\xe1\xaa\x69\x7a\x14\xff\x27\x03\x0e\xe4\xf0\xbc\x6e\x09\xe8\x09\x21\xec\x11\x28\x7f\x17\x69\x67\x47\x18\x48\x37\x31\xde\xf4\xed\x35\x8b\x5d\x26\x57\xcb\x75\x35\xd5\x73\x13\x0e\x87\xeb\x3c\xd0\x76\xed\x66\x30\x64\x5b\x3b\xbf\xf4\x30\x0f\x41\x2f\x6a\xd2\xf7\xd6\xd2\x87\x55\x68\x38\xc8\x2d\xa5\x7d\x34\x89\xd8\x48\x99\x6e\xb0\xf2\xdf\x1f\xa9\xff\x41\x31\x28\x7d\x99\x82\x44\x18\xb1\x71\xd8\xee\xb0\xef\x8f\xbf\xcf\xb1\xff\xe1\xc3\x9b\x3f\xfe\x89\x3c\xaf\x38\xb0\xe5\xe6\xc9\xae\xb8\x6a\x7e\x42\xeb\xbc\x57\x4e\x8c\xbc\x02\xe1\xd2\xc5\x23\x25\xfd\xad\xcd\x0c\x5e\x36\x3d\x37\xfe\x9a\xa3\x40\x6c\xfc\x7a\x7b\xb5\x30\x3c\xef\x36\x03\x19\x53\xe5\xd0\x59\xbf\x9e\x57\xc1\xf6\x63\xcb\xe5\x6b\xef\x06\x19\x36\x72\x67\xa7\x3d\x5d\x2f\xfd\x80\x03\xbf\x0b\x1d\xa2\x73\x3e\xea\xd2\x7f\xe0\xe9\xab\x87\x21\xcc\x19\xf3\xff\x82\xfd\xf3\x14\xda\x18\xfa\x91\xc1\xac\x57\x33\x25\xe4\x35\x25\x08\x9d\xb3\x82\xce\xf0\xfc\xbe\xca\xe0\xd9\x4f\x81\x84\xd6\xcb\x82\x04\x89\x77\xad\x87\xca\x7f\x69\x73\x60\x42\xfe\xa9\x4e\xc1\xcf\xef\x19\xdc\xfa\xbc\xed\x67\x6c\x47\x1b\x83\x7b\xf2\x05\xb1\xaf\x63\x55\x08\x86\x89\x12\x6b\xa7\xd9\xa9\x13\xbb\x88\x1e\xf2\xd7\xf6\xdd\xd2\xcd\xa0\xd7\x63\xb5\x9f\x56\xdc\xc7\xaa\xe1\x1c\xef\xcc\x11\xc5\x19\x04\xc3\xaf\xfd\x7b\x8e\x6c\x52\x25\x34\x26\xec\xe3\x99\xae\x21\x4b\x88\xdc\xcd\xcf\x48\x69\x5a\x13\x9c\x6d\x7e\x7c\xbf\xb4\xca\x84\xf0\xab\x7a\x46\x8e\x77\x8b\x31\x41\xe1\x9c\x9d\x97\xd9\x7a\x5d\x42\xc7\xe4\x32\x3d\x27\xc1\x18\xc2\xd4\xa6\x6f\xca\xe1\x6e\xb7\x18\x98\xcc\x5d\x6e\xbf\xba\x5c\x89\x70\xf6\xd8\x58\x90\xc1\x6b\x6d\x62\x17\xd1\xa9\xfb\x8d\x5b\x8d\xc4\x09\x1d\x49\xc6\x02\xe3\x72\xa6\x12\xf2\xef\xc8\xc7\x66\x4f\xe2\x26\x7c\xe9\xf7\x0a\x98\xc3\x35\x8f\xb0\x2b\x4f\x41\xab\x55\xc7\x9a\x03\x9a\x2f\xca\x1d\x23\x6b\xcd\x38\xe0\xec\x7a\x78\x8a\xde\xad\x02\x06\x1e\x59\x71\xc5\xf5\x2e\xf6\x04\xf5\x94\x3d\x25\xf7\x2d\x16\x13\x36\x8b\x89\x27\xbd\x9c\x39\x9b\x70\xfa\xe8\xb9\xf8\x91\x0d\x22\x84\x49\x2d\xde\x6d\xc7\xb8\x83\x09\x4d\x3c\x5e\xf9\xc7\x55\xe6\x12\x9e\x35\xb5\xbb\x75\xac\x32\x26\x18\x1c\x48\x2c\x8f\xf5\x94\x24\xac\xdf\xcd\xbc\x28\x12\x78\xc3\xe0\x82\x57\x44\xc8\x1f\x35\x57\x62\xc3\xee\x8e\x49\x9a\x70\xf5\x04\x0e\x04\x16\x64\x64\xdf\x33\x18\x65\x30\xf7\x59\xd3\xef\xfc\x24\x71\xc2\x75\xab\xe2\xb1\xa5\xbc\xab\x39\x50\x66\x2d\x72\xc3\xe8\xa5\x3f\xe1\xa3\x79\xe6\x76\x81\x09\xcb\x08\xd1\xf9\x01\xf3\xef\x76\x7b\x10\x6e\x5a\x07\x45\xdf\xce\x56\x21\xd8\xbf\x2f\xb2\x5f\xa2\xeb\x47\xd8\x78\xd0\x7c\x6b\x52\x81\x23\x61\xeb\xd1\xfc\xd3\xb3\x44\x06\x19\x08\x36\x6a\xc4\x5d\x09\xda\x47\x6c\x70\x75\xde\x1c\x12\x9f\x1d\x41\x28\x90\x4a\xa8\x0b\xf6\x97\x27\xf8\xf4\x77\x79\xd7\x06\x8d\x23\xac\x7a\xa7\xb2\xa9\xb3\x4b\x83\x03\x2b\x62\x63\xe2\xdf\x1a\x85\x30\x50\x7c\x96\x28\xee\xe2\xb2\x8a\x10\x2b\xf7\xa0\x4e\x83\x7f\x1a\x21\xf5\x59\xdd\x96\xf8\x19\x8e\x84\x9a\x6d\x8b\xb9\x2d\x98\x32\x82\x5a\x7d\x88\xec\x3f\x2c\xb1\x7d\x5f\x3a\x5c\x23\x4d\xb8\xa6\x3a\x5d\xa2\xae\xeb\x23\x83\x43\x96\xa6\xfb\xec\xf4\x74\x09\x05\xb3\x4e\xad\x73\xb2\x53\x21\x6c\xd4\x4c\xb6\x7a\x74\x5c\x83\x20\x57\xaf\x29\xac\xaa\xde\xcb\xe0\xcc\xb6\xac\xec\xcf\xdb\x6c\x08\x35\xf5\x27\x8f\xeb\x2f\xd1\x27\x90\x59\x72\x49\xe9\x0c\x45\x82\xec\x07\x37\xeb\x8b\x1b\x5d\x38\xa0\x3e\x45\x53\xf5\xe2\xf4\xed\x84\xda\x47\xe2\xc2\xff\x30\xc5\xae\xe9\x87\xf0\x96\x63\x1c\x10\x79\x73\x36\xc3\xcd\xf5\x60\x15\x52\x54\xdf\xf9\x87\xed\x91\x26\x36\x06\x79\x5f\xbd\xa7\x8d\x32\x04\x01\x8b\xa2\xf4\xe6\x5d\xba\x84\x98\xb0\x63\xbb\x7e\x8d\x73\x20\x68\xcc\x88\xbb\x26\xff\xcb\x81\xa0\x12\x90\x18\x59\xa3\x6e\x4c\x28\x3a\xf9\x6a\xa7\xd1\x41\x3e\x42\xe4\xe9\x53\xb7\x9f\xcf\x2f\x22\x28\x55\xdf\x22\xdb\x05\x45\x04\xe5\x65\x82\x75\xa7\x4f\x15\x13\xf8\x06\x45\x5f\x6f\x39\x6f\xc3\x81\xf2\x81\x9f\x5b\x3a\x3b\x73\x08\x71\xf1\x4a\x05\xff\x20\x14\x6b\xd0\x0e\xd3\x95\x04\xae\xb0\x43\x7f\x74\x5f\x45\xb3\xd8\x65\x58\x72\x63\x46\x57\x84\x35\xa1\x39\x48\xc1\xed\xfc\xd5\x5c\x42\xe5\xf9\x50\xef\x9a\xe0\xf9\x04\x77\xfe\x09\x39\x39\xed\xbf\x18\x24\x3b\xfb\xb3\x04\x96\x72\xc2\xe7\x91\x82\xe0\xbf\xcd\xd1\xf0\xc0\x6f\xfd\xb5\x4f\x18\xc2\xf5\xb5\x8b\x07\xec\xe7\x5e\x23\x14\xdd\x52\x7c\x9d\x90\x7a\x83\xb0\x58\xcb\xa9\xc0\x63\x5d\x39\x41\x0c\x2f\xf5\x48\xa8\x90\xc5\x1e\xcd\x15\x94\x76\xdc\x2d\x9c\xca\x81\x9f\x5f\x57\xe6\x04\x77\x3c\x63\x90\x99\x30\xf8\xc4\xf7\xa3\x02\xc1\x51\x22\xf8\xe7\xf2\x32\x31\xc2\xa0\xe3\xfd\x20\xe7\x04\x21\xc2\x21\x11\x9b\xdf\xf9\x8e\x66\x04\xa3\xa7\xa5\x8d\x7d\x8b\x93\x59\xa8\xd8\xf3\x78\xac\xe8\xed\x5a\xc2\x3b\x99\xad\x81\x39\xf6\x6d\x0c\xc6\x7f\xbb\xab\x13\xe9\x2a\x47\x6c\x7c\xfa\xda\x22\xfa\xe1\x8e\x09\x41\xcc\xaf\xd5\x73\xe0\xac\x3b\x41\xdc\x8f\x67\xef\x21\x73\x1f\xc2\x73\xbf\x0d\xf9\x1a\xe7\xa4\x09\xf2\x1d\xcb\xc6\x7e\x86\xeb\x13\x36\x52\xe3\xdc\xac\x94\x6f\x0c\xc4\x9b\xea\xaf\x0b\xff\xb0\x23\x6c\x91\x8d\xba\xb4\xe6\xa7\x3a\x07\x62\x6f\x4e\xee\xb3\xff\xd1\xc1\x60\xe1\x27\xc1\x38\xef\x0b\x5f\x18\x4c\xfc\xda\xbd\xad\xcd\x51\x88\xd8\xe8\x8f\x33\x4c\x13\x29\x92\xe6\x80\x97\x97\xbf\xfe\xba\x8d\xaf\xaa\x30\xcf\xc3\xa6\x5d\x48\xc4\x81\xd8\x78\xb8\x2c\xd2\x32\x5d\xc2\x94\xc0\xb3\x79\x18\xb3\x44\xc5\x08\x2b\xab\x17\x69\xda\xfa\x19\x13\x52\xfa\x34\x9e\x6f\x5c\xa7\x49\x90\xca\x4b\x2b\xed\x4b\x6d\x62\xb0\x48\x60\xe1\xd7\x1f\x0e\xeb\x08\xaf\xbd\xfa\xcd\x7e\x3b\xc8\x12\xb2\x0e\x94\x44\xfd\x9e\x51\x4e\xb8\xfb\x25\xff\xc8\xe2\x6e\x29\x42\xeb\xdc\xa7\x36\x36\x3b\x7b\x18\x36\xf2\xb3\xcf\x66\x5e\x34\xd3\xfa\xf7\xe1\x84\x77\x8b\x73\xb9\x08\xd3\x5a\x2d\x44\x4f\xf9\x2f\xe6\xc0\xcf\x8a\xea\xe5\xd7\x7e\x77\x32\x70\x0d\xd3\x35\xa9\x5b\xcd\x45\x50\x7f\xaa\xe8\x92\x64\xfb\x82\x61\x23\x2c\x70\xc0\x74\xdd\xad\xb9\xc4\xc6\xa9\xdb\xea\xc3\xd3\xbd\xab\x38\x50\x30\xb2\x48\xec\x1f\x3c\xf5\x1d\x1e\x3c\xb6\x6c\x64\x50\x24\x65\x33\xf8\x7b\xf9\x1c\x1a\xb6\x6f\x0a\xa8\x14\xfd\x56\x05\x8f\xcd\xd9\xdb\x4f\x0a\x79\x12\x8e\xe8\x0a\x3b\x1a\x25\xaf\x27\x1c\x78\x34\xba\xdc\xe0\x5c\x3a\x8b\x3d\xd2\xd8\x9f\x5d\x51\x7f\x4c\x82\x70\x36\xb8\x6b\xb6\xcf\x5c\x39\x8e\x62\xc5\x73\x21\xb2\x68\x71\x09\x03\xc5\x13\xfd\x7a\xc1\xb5\x62\x04\xe5\xd7\x7b\xf1\xbb\xbf\x9a\x20\xaf\xe6\xb3\x6d\x7f\xe3\x27\x16\x76\xaa\x9f\x11\xf9\xf3\xb7\xac\x89\x9b\x62\xf7\xe5\xf5\x9b\x2a\xb8\x27\x1b\x3f\xf0\xb1\x5f\x4e\x10\x7a\xf8\xb9\x27\xb5\x99\x87\x20\xa3\xbc\xe1\x4b\x60\x93\x09\x61\x6f\xe7\x4e\x83\xe8\xaf\xd6\x04\xe9\xaa\x1f\x15\x61\xd2\x5a\x84\xd6\xab\x2d\x0f\x97\xec\xed\x22\x28\x17\xf6\x72\x8d\xef\x2b\x25\x98\x94\xbc\xce\xde\xf5\x3c\x8f\xe0\x6a\x37\xd7\xd8\xc2\xad\x85\x30\x1c\x1a\xcb\x7b\x72\x71\x34\xe1\xcc\x01\x1d\xb7\x24\xcb\x03\x84\x5e\xbb\xaa\x5d\xdd\xce\x07\x09\x79\x77\x0c\x6a\x9d\x14\x96\xb1\xb0\x6b\xf0\xd2\xac\x86\xdc\x03\x04\xaf\x7b\xdf\xb7\xfc\x0c\xd9\x4b\xe0\x53\xda\x5e\x28\xac\xb9\x90\xd8\x23\x79\xb3\xfa\x67\x6f\x62\x7c\x08\x19\xf7\x6a\x03\xeb\x4f\x6d\x63\xe1\xce\x24\xdd\x41\x29\x87\x78\x42\x65\xa4\xca\x28\x4b\x33\x97\x85\xdd\x25\x82\x62\x42\x4e\xf1\x84\x3b\xe7\x16\xe9\xb9\xe9\xd9\x13\xf8\x97\xb9\x2c\xb9\x11\xff\x82\x61\x43\xa9\xb4\x65\x9b\x99\xcc\x52\x82\x88\xcc\xa7\xb8\x15\x3a\x1f\x19\x8c\xde\x13\x18\xce\x3c\xec\x4b\x70\xbd\x95\xb3\x39\x6f\x77\x3e\x0b\x41\xfb\x84\x6e\xec\x17\x9c\x41\xe8\x5a\x79\x70\x56\xd3\x6b\x05\xc2\xf0\x8c\xcf\x92\x66\xb3\x3d\x08\xe6\xe3\xce\x49\x37\x84\x4c\x22\xdc\xda\xab\xbd\xdc\x70\xc0\x95\xd0\x97\x9e\xdf\xec\x76\xe8\x2d\x8b\x5d\x76\x8b\x5e\xbd\x20\x9d\xfe\x86\x41\xe6\xd5\x9e\x53\x45\x99\xd2\x04\x25\xe1\x52\x97\x7b\xeb\xb9\x38\x20\xb9\x3f\x30\x7a\xfa\xda\xce\x2a\x6c\xd2\x0c\x73\x0e\xbd\xee\x46\xa8\xed\xdb\xd0\xc4\xa8\x5d\x26\x48\x25\x9a\x1c\x55\x12\x96\x24\x24\x7d\xf3\xe9\xf9\x96\x9b\x47\x98\xe7\x4f\x0f\x47\x55\xaf\xb2\x20\x7c\x79\xea\xbd\x18\xb1\x2b\x04\xbb\x47\x23\xad\x96\x96\x71\x84\xa1\xe8\x0a\x2b\x8f\x9e\xb6\x2a\xec\xf6\x0f\x8d\xfc\x5a\x7d\x90\xd8\x18\xef\x75\xc8\xa0\xfa\x7b\x23\x0b\x8b\xfb\x0e\x67\xff\x2b\x1f\x5e\x64\x2d\x73\xe7\x0f\x23\x6c\x69\xbc\x55\xb6\x7c\x63\x0b\xe1\xa7\xf1\x52\x93\x4d\x0b\x1f\x11\x72\x9e\x6f\xbc\x71\x39\x28\x99\x05\x4f\x07\xd1\x93\x3c\x21\x2d\x84\x4d\xbf\x75\xf5\x95\x9b\x8f\x13\x5a\x3a\x9d\xfd\x9b\x06\xcb\x09\xaf\x97\x87\x84\x5c\x68\x37\x26\x5c\xf8\xed\xe0\x6f\x7b\xd2\x9d\x70\x28\xe9\xee\x8a\xce\x7e\x79\xc2\xfd\xd9\x4b\x1b\xbe\xc5\xbe\x65\xc0\x3f\xb7\xaf\x6b\x71\x7d\x3b\xe1\x9c\x69\x83\x58\x79\xc2\x33\x42\x27\xf2\x6c\xf7\x07\xb6\x13\x22\xa7\x1d\xdb\xf5\x6f\x64\x70\xca\x6b\xde\xf8\xb3\x6b\x09\x01\x9b\xba\x66\x3d\x8a\x2b\x26\x84\x2c\xdd\x93\xb1\x3d\xf6\x0c\x21\xe4\xda\x65\x43\xa7\xb5\x1f\x19\x24\x37\x71\x4d\x4e\x08\x97\x21\x36\xfa\x0f\xcf\xf9\xbe\x25\xf7\x27\x03\xed\xc7\xcb\xcc\x12\x9b\x56\x12\x7c\xed\xb5\xe5\x96\x8b\x9b\x13\x22\x9a\xbb\xbd\x1b\x7f\x2e\x23\xb8\xbd\x3d\xa3\xdc\x56\xb3\x9a\x30\xc3\x2f\xd7\xc5\xa8\x78\x32\xc1\x75\x9b\xd1\xc3\xe1\x9b\xba\x84\x09\xa6\xc7\x9a\xb7\x24\x3f\x67\xc0\x7d\x45\xe7\xc8\x99\x66\x6e\xc2\xa2\x49\xf7\x33\x0d\xe7\xcb\x10\x16\xd1\x8a\x97\x8a\x2f\xd2\x19\x36\x5c\xbe\x7e\xdb\x2f\x72\x99\x8b\x70\xae\x4a\xad\x6b\xbf\xa8\x3f\x41\xe9\xf5\x4c\xd3\x33\x8f\x75\x09\x4b\xb8\x03\x1e\x3c\xdd\x27\x46\x08\x70\xb7\xb1\x39\x9f\x32\xc0\x40\x3b\xf5\x83\xec\xda\x22\x3e\xc2\xc7\x29\xc7\x33\xab\x43\xed\x09\x86\x26\xa1\x47\xc2\xaf\x88\x13\x66\x1c\x72\xbe\x37\x5f\x5d\x90\x70\x3f\xfa\xcf\xb7\xbd\x34\x83\x60\x3b\xd7\x68\xf5\x4f\x83\x09\x84\x26\x77\x57\xbf\x92\x15\xe3\x09\xfe\x4a\x5b\x7c\xd7\x7d\x4d\x21\xbc\xb7\xfd\x7c\x23\xf8\xde\x2c\x42\x57\xe3\x5b\xd5\xa7\x6a\x2a\x84\x0b\xed\x96\xad\xa2\x59\xae\x04\xeb\x51\x9f\x0d\xce\x73\x1c\x08\xdb\xd7\x66\x0e\x4c\xb5\x6a\xab\xc2\xf5\xc3\xa7\xf4\x92\xc7\x8a\x59\x38\x62\xd2\xf4\x48\x89\xbb\x91\x10\x3f\xc0\xcf\x4a\x35\xde\x4f\x48\x48\xef\xe1\xf5\xb0\x39\x41\x48\xb6\xdb\xb3\xff\x99\xc7\x7e\xc2\x7a\xd6\xb7\xfa\xc9\x3d\x11\x84\x8b\x07\x0f\xb5\x5c\x76\x4d\x20\x3c\x4f\x56\x73\xbe\x27\xa6\x4f\xc8\x5f\x32\xe1\xfd\xe7\x03\x62\x84\xa4\xd4\xa1\x6a\x3d\x8f\xb3\x2c\x5c\xde\x77\x46\xfc\xa2\xbf\x1a\x21\xfd\xe9\x8b\xd2\x6f\x25\x49\x04\xef\x92\xf2\xd3\xdf\xdf\x2a\x13\xd6\xf5\xce\x0b\xb6\x77\xd1\x23\x98\x84\x46\x17\x6f\xf5\x16\x27\xf0\x6a\x7c\x90\x90\x96\x97\x20\x90\xd2\x6f\x93\xf9\xaa\xd6\x04\xf5\xa0\xc6\xfe\xde\x0f\x16\x84\x8f\xbd\x47\x33\x0e\xbf\x54\x21\x8c\xaf\x18\xea\xde\x33\xe8\x46\xa8\x4c\x78\xfe\xc7\x3b\xdd\x8c\x20\x19\xe4\x15\xd3\x76\xa7\x9c\xb0\x77\x9a\xeb\xfb\xcf\x71\x44\x58\x72\xc6\x4b\x6f\x93\xd3\x02\xc2\x2b\x13\xdd\xcd\x25\xe1\x16\x84\x73\xef\x16\x9f\x29\xda\xbd\x88\xf0\xe0\x43\xc0\xfa\x3a\xfe\x95\x84\x15\x5b\xf6\xbb\x4e\x50\x50\x24\x3c\x4c\xbe\x55\xe1\x19\x25\x45\xf8\x75\x7d\x76\x77\xa1\xf5\x6c\x0e\x4c\x1e\x1c\x98\xe4\xab\x75\x8d\x05\xeb\xdc\x82\xaa\x73\x6d\x65\x84\x98\x48\xef\x94\x52\x87\x4c\x16\xe6\xef\x2d\xd4\x98\x32\x2b\x80\xb0\xca\xc7\xe8\xc7\xef\xaf\x2b\x09\xb2\x39\x7d\x13\x7f\xac\x06\x83\xc5\x0f\x72\x33\xc6\xe5\x17\x12\xf6\x47\x4e\x9d\x7c\xe1\x76\x1a\x61\x74\x6c\xc9\xc8\x8c\xbe\x9d\x84\x5d\xf6\x1f\xde\xe7\x17\x12\xa1\x3f\x2a\x5f\x43\x57\x70\x1e\xc1\xa5\x65\x7e\xe5\xfc\x65\x27\x08\x37\x17\xca\x66\x29\x45\x86\x12\xec\xc6\x39\xac\x9d\x32\x34\x9f\xd0\xb9\x34\x0e\x9a\xc3\xf7\xaa\xb0\x7b\x42\xee\xec\x93\x41\xa2\x04\xe2\xc9\x3b\xec\x27\x67\xc5\x81\x41\x1d\xcb\xdb\x21\x7e\x33\x08\x70\x68\x77\xbe\xbc\x24\x8f\xf0\xfb\xc3\xbb\x7d\xe2\xa2\x7c\x84\x62\x8b\xc7\x7d\xd2\x46\x93\x09\xeb\xe6\xc8\x1f\xec\xe8\x1a\x4f\x98\xcd\xdf\xe1\xff\xbd\xc4\x95\xd0\x6a\xab\x95\x6e\x3e\xd3\x89\xb0\xf4\xb9\xf9\x39\xde\x37\xf3\x09\x5b\x34\x66\xc4\x3f\xfa\x32\x89\x60\xbe\xea\xd8\xde\x4f\x86\xfb\x59\x48\x5b\x2c\xa5\xab\x92\x63\x49\x28\xdf\xe8\x78\x47\x25\x7c\x15\x07\xf2\xf3\x0e\x95\x07\xd9\x75\x33\x48\xcb\xaa\xf5\x13\x9b\x67\x48\xd0\xf7\x68\x4b\xf7\x14\x73\x25\x2c\x13\x7f\xfb\x73\x41\x56\x17\x83\x37\x66\xc6\x7a\x67\x45\xd5\x08\xad\x59\xc9\xaf\x9c\x92\x3d\x08\xc3\x03\xba\x0f\xbe\x74\xc4\x12\x8c\xce\x16\xbe\xd9\x32\xcd\x91\x20\x9f\x23\x7b\x3f\xf2\x8a\x0c\xe1\x85\x43\x8d\x71\x75\x92\x3e\xc1\xfa\xc7\x50\x5c\x68\xf7\x2f\x06\x7f\x0e\x0b\xa6\xe8\x37\xab\x12\xf2\xd5\x6d\x0f\x9f\xdd\xea\x48\x28\xaa\x0e\xf2\x75\x62\x59\x13\x5c\x56\x49\xe5\x55\xf3\xf3\x13\xc2\x43\xbc\xb8\x1f\x84\x28\x13\x1c\x6e\xbc\xda\x7b\x2c\xcf\x96\x30\xdb\xb9\xb0\x8c\x75\xa3\x91\x61\xa3\xcd\x70\x5a\xbb\xbc\xd8\x18\x03\x5d\x7b\xf1\xe0\x5d\x5f\x62\x08\x31\xfd\xce\x6e\xa9\x6d\xef\x09\x19\xe9\xa1\x3a\xdb\xb6\xac\x27\xf0\xa9\x67\x1f\x49\x9b\x1b\x4f\x90\xf3\xd9\x90\x65\x20\x1b\x42\xf0\x29\xf0\x1e\x3b\x17\xb0\x95\x85\x49\x17\x4a\x17\x6b\x7b\x84\x13\x0e\x59\x4e\x2f\xb2\x2c\xbb\xc0\x82\x8e\xd7\x78\xfb\x1f\x42\x41\x84\xd3\x87\x58\x01\xc5\xa7\x74\x09\x45\x86\xc5\xf9\xa3\x86\x17\x08\xdc\xcd\xe7\x5a\xbf\x5f\x4f\x25\x88\x1c\x7a\x3f\x90\xb1\x29\x95\xa0\x18\xec\xf0\x78\xaa\x9e\x17\x0b\x2a\x36\x9d\xd9\xa4\xba\x83\xa0\xe5\x90\xcb\x73\xf5\xf4\x06\xc2\xed\xfd\x76\x8f\xe0\xe4\x40\x98\x5e\xa9\x6a\x5b\x14\xe4\x40\x38\xf0\x76\xe3\xa8\xe4\x3b\x65\xc2\xfa\x05\x5a\xe2\xcf\xf9\x2d\x09\x0d\x42\xf3\x6e\x6e\x34\x3d\x48\xa8\x3f\xde\x21\xe6\xf5\x4c\x97\xa0\x2d\x77\x6d\xda\x9d\x2b\x2a\x84\x4b\x97\x7b\x22\x86\xb2\x64\x09\xcd\x03\x6a\xbd\x55\xd1\x9d\x55\x68\x94\x7d\x4d\x86\xe6\xdc\xf4\x1f\x48\x7e\x7e\x6f\x7f\xdc\xfa\xc9\xff\x85\x0b\x0d\xa2\xa1\x4d\x75\xd5\x0c\x12\x9e\x2f\x58\x7f\x46\xcf\x8b\xf0\x72\xaf\xd2\x99\xad\x4b\xe6\x10\x94\x27\x7e\xa8\x95\x6c\xd6\x26\xd4\x6f\x2c\xb0\x96\xce\x1b\x4f\x80\xd9\x06\x8d\x63\xdc\x72\x84\x79\x75\xda\x5f\x0a\xf4\xbd\x08\x6f\x1a\xce\xe7\xbd\x5d\xe1\xcd\x51\x5c\xd3\x5c\xa4\x2e\x38\xf4\x32\xd8\xfc\xbe\xef\x93\x42\xf4\x08\xc3\x2e\xcf\x7c\x42\x56\x57\xc7\x4f\x26\x74\x2c\x4b\x65\xac\x7a\x46\x18\xcc\x5d\x90\x93\x39\x73\x9b\x3f\xe1\xc3\x44\x9d\xeb\x6a\x43\xd3\x09\x49\xb2\xbe\x45\x82\x3e\xaa\x84\x33\x41\xcb\x6c\xa4\xb2\xe5\x08\x49\xe2\x0d\x2b\x4c\xe2\xbc\x08\x41\x11\x4a\x37\x16\x18\x05\x10\xae\xbc\x08\x1a\xd9\x90\x66\x4b\xd8\xbd\xc7\xf6\xf1\x85\xd7\x3b\x09\xca\x83\xce\x85\x2b\x15\x0a\x09\xcf\x62\x93\xa7\xdb\xcf\x5c\x45\x10\xde\x7f\xe8\x55\x7a\x92\x2f\x21\x28\xf0\x68\xb5\x81\x56\x22\x41\xb8\x6f\x49\x9f\xdd\xdf\x51\xc5\xcb\x7b\x79\x8e\x4a\x6e\x04\x81\xa7\xed\x5e\xeb\x59\x5a\x84\x63\x2f\x34\x75\xd3\x24\xf4\x08\x7b\xf6\x47\xf7\x74\xcb\x0f\x30\xd8\x92\xb1\xe8\x6e\xda\x80\x1a\x21\x2b\xee\xd0\xd2\x8e\x39\xfa\x04\xd5\xb7\xc3\x73\x84\x2e\x4b\x12\xfc\x73\xbf\x4f\x5d\xf2\xcb\x8c\xa0\x76\xbf\x4b\xf9\xb8\xd6\x28\x83\xcd\x7c\x37\x5e\x8a\xc2\x93\xd0\xc0\xfb\xa6\x64\x74\xd6\x3c\x42\xb9\x06\xaa\x4a\x26\xe8\x11\x5a\x17\xd2\xd3\x44\xee\x2d\x04\xd7\x9f\x2f\x82\x34\xa4\x94\x08\xfb\xd2\x82\x67\xb5\x67\x8d\x30\x98\xd0\xf4\x33\x70\xf2\x57\x59\xc2\xd1\x8f\xc1\xe6\xab\xfa\x84\x09\x4d\x0b\x79\x86\x75\x78\xa6\x13\x64\x1d\x5f\x1d\x5c\xa0\xeb\x43\xd8\x9a\xde\xb2\xbe\xe9\xef\xbb\x31\x27\xd7\xc2\x2a\xd1\xf9\x07\x83\x61\xcf\x25\xb7\x9a\x8e\x2c\x20\xf4\xdc\x2e\x3e\xeb\x7a\x60\x3a\xe1\xc0\x9a\x3f\x47\x75\x3b\x5c\x09\x57\x22\xe2\x1c\xd2\x93\xcc\x09\xb9\xc7\x79\xdb\x2b\xb3\x3f\x32\xe8\x2c\xec\x31\x91\xc9\xf0\x20\xb4\x0c\x84\x6c\xc9\x3c\x99\xcd\x01\x63\x93\xf8\x03\xff\x10\x39\xdd\xc8\x72\x6f\xcb\x15\x82\x30\xf7\xd3\x8f\xa2\xfa\x45\x84\x7c\x89\x60\x77\x2b\xbd\x22\x82\xaa\xa0\xb2\x70\x70\x56\x2d\x21\xa6\x2b\x21\xf5\xdf\xc8\x4e\xcd\xf8\x9a\xcc\xa7\x7c\x82\xe5\xf6\x5f\x1b\xde\x6e\x3f\xc7\xc2\xaa\xfe\x83\x7a\x55\x1f\xcf\xb1\xc0\xba\xea\xa7\x26\xf4\x2b\x9f\x10\x95\xfb\x7c\x42\xd6\x60\xfe\xdf\xb5\xf7\xea\x04\xc5\x8b\x67\x09\xdb\xce\xa4\xbe\x7b\x59\x7d\x96\x20\x6a\xb9\xf2\xcc\xc8\x92\x6c\x1a\xd6\x39\x73\xe2\xf0\x2f\x59\xc2\xf4\xa2\x53\xf6\xdf\xce\xfe\xbd\xaf\x5a\x44\x98\x5f\x37\x4a\x27\x38\x9d\x9f\xd4\x32\x2e\x6b\x3b\xe1\xc8\x95\xb0\xc8\xd0\xe9\x8e\x2c\x94\x77\x4d\xae\xf1\xd7\x7a\x44\x30\xfc\xd1\x36\xec\x34\x45\x8b\x03\x3f\x5f\xf4\x3f\x48\xb7\x99\x48\xb8\xce\x8a\x99\xbd\x87\xd7\x92\xe0\x92\x68\x65\x3e\x69\xa7\x1e\x21\x9b\xe5\x69\x54\x75\x74\x15\x07\x3a\x92\x7a\x59\x65\x37\xec\x09\x52\x19\xbf\xfa\xa2\x9e\x27\xb0\xf0\x4d\xa5\xea\x70\xf1\xf6\xf5\x04\xdd\x75\xc3\x7b\x13\x1b\x35\x09\x0b\xd6\x2b\x45\x46\x3b\xce\x20\x98\x1d\xe7\x72\x93\xdd\xc2\x43\x28\x5e\xb3\x6b\xf3\xc1\x1b\xbd\x0c\x84\xa6\xb9\x2f\xe9\xb9\xb2\x99\x05\x67\x15\xe7\x8c\x8b\xee\x60\xe0\xa1\xea\xa0\x27\x69\xc9\x4d\x38\x55\xe8\x6d\x7c\x44\xd6\xf5\xbf\xd0\x16\x70\xa0\xe4\x50\x8c\x05\xa1\x2e\x71\x85\xa4\xe8\x34\x25\x42\xa9\xc0\xb5\xb8\x8b\x6d\xfa\x04\x0b\xb3\x91\xb2\xeb\x3e\x3e\x04\x9f\x25\xf1\x65\x61\xbf\x9c\x09\xeb\xae\x6f\x5e\x25\x6b\x67\x45\x38\x77\x4e\x58\x3a\xfd\xcd\x62\x0e\xcc\xc9\xcf\x7c\x1e\x3b\x59\x94\xf0\x49\xbb\xf4\xc8\x71\xbd\x7e\x06\xef\x6c\xbe\xea\xb2\x4e\x75\x30\x98\xbb\xe5\xf1\xe1\x3d\x19\xd7\xaa\x50\x36\xe8\x68\xb4\x50\xc7\x9b\xd8\xd8\xe2\x1f\x19\x76\x50\x2e\x82\x60\x39\xa9\x4f\x71\x8d\xf5\x78\x42\x85\x63\x51\x87\xdf\xdf\xab\xe3\xe4\xf6\x53\x3b\x84\xd7\x3d\x62\xc1\xfb\x68\xcd\xd5\xca\x27\x67\x89\x8d\xef\xae\x17\xb2\xfe\xff\x20\x41\x0d\xb3\x45\x36\x1b\x39\x90\x15\x62\x18\x75\xf9\x87\x3e\xa1\x6a\xa7\xdb\xe4\xcb\x37\xc6\x11\x04\xcd\x97\xa9\x71\x95\xf0\x11\xf6\x47\xdc\x2a\x98\x5e\x04\x06\xbf\xa6\x49\x97\xb7\x2b\x5b\x10\x96\xaa\xe5\xac\x39\xf4\xc2\x83\x03\x1d\xfb\x95\xf7\x75\x24\x4a\x10\x6e\xc6\x1e\x37\x3b\x3a\xdc\xcf\x40\x33\x6d\xc8\xe0\x60\xfa\x14\x42\xc6\xfa\x57\x4e\x5e\xcd\x43\x0c\x1b\xdc\xd7\x96\xf0\x68\xc9\xab\x10\x1b\x9b\xd3\x9e\x3d\x4b\xaa\x5c\xc2\xc2\x61\xfb\xbc\x2d\x41\xc7\xc5\x08\x05\x91\xd3\x79\xc7\xdb\x8e\x31\x08\xb5\x5c\x3d\x37\x6c\xd4\x92\xd8\x78\xd9\x21\x77\xfe\xb9\xd3\x43\x06\x6e\xbc\xef\xe3\x42\x0f\x2e\x27\x28\x59\x69\xde\x5e\x25\x65\x47\xd0\x25\xef\xe1\xf8\xbb\xca\x84\xb9\x5b\xd5\x97\x7d\xf8\xf8\x83\xc1\xc0\x06\x59\x89\xbe\x49\x62\x04\x55\xe3\x0f\x73\xd7\x95\xf1\x11\xcc\xf8\x5f\xea\xcf\xd7\x39\x4b\xb8\xd3\xbf\x4b\x50\xe3\xea\x2c\x42\xe2\xde\x6b\xdf\x9f\x09\x4e\x27\x24\x5b\xcd\x74\x7d\x39\x7a\x8d\xb0\xda\xd3\xf2\xf8\x58\x5f\x06\x0b\x9a\x17\xb2\x5a\x9e\x1e\xaa\x20\x18\xad\x1a\xe7\xf4\xfa\xef\x68\xe7\x8d\xd1\xbe\x2d\x1d\x07\x08\xd3\x0e\x6e\xee\xe1\x55\x9d\x47\x78\x50\xa1\xde\x36\xed\x36\x2f\xa1\x5e\x62\x73\x4a\x82\xbc\x32\x41\x71\x5d\x3b\xff\xaa\xe1\x23\x84\xf4\x95\x26\xa5\x53\x6c\x96\x70\x60\xdb\x08\x44\x06\xde\x3e\x66\xa0\xad\x32\xfb\xf9\x89\x8d\xfd\x0c\x4e\x58\x1f\xe1\x09\x38\x2d\x41\x50\xe7\x0d\x78\x7f\x44\x8f\x87\x20\xbb\x64\xa2\x7c\xa8\x1f\x17\x07\x76\xb7\x15\x08\x56\x3e\x9c\x47\xa8\xa9\x14\xd4\xca\x13\xb0\x27\xc4\x15\x5e\x1f\xee\x28\xda\x41\x58\x63\x79\x4b\x36\xe6\xcd\x64\x42\x41\x77\x96\x99\xe5\x52\x6e\x82\x88\xc6\xd2\x47\x55\xd3\xc7\x11\x9c\x75\x47\xdd\x3f\x59\xf3\x12\x06\xd7\xb3\xc8\x2b\x86\x9f\x03\x73\xd4\x95\x93\x84\xea\xf8\x09\x77\x67\xee\x5e\xe0\x59\x2b\x42\x58\xa3\x98\x64\xde\x79\x48\x85\x70\xfb\x81\xde\xc9\x32\x17\x49\x82\x99\xff\x73\x31\x46\xa2\x96\x41\xf3\x82\xc2\xd6\x25\xdd\x13\x09\x92\x82\xf7\x7c\x26\xbe\xea\x65\x30\x66\x30\x33\x48\xb1\x4c\x86\xe0\xbe\x25\xb6\x62\xd9\xf3\x2f\xcc\x7f\xe0\x41\xf1\x66\x31\xd3\x52\x53\xfa\xbf\xd0\x72\xf8\xa4\x54\x70\xda\x5d\x06\x01\xd7\x65\x1f\x08\x9e\xf2\x21\x3c\x7b\x22\x5a\x9c\x70\x7e\x13\x21\xb4\x5c\x23\xe5\xe3\x23\x7f\xc2\x49\xed\x19\xcf\x0b\x8c\x8f\x11\xee\x8c\xf6\xae\xe0\xe1\x56\x21\x78\xdf\x3b\xd6\xe8\x92\xd7\xcf\xe0\xda\xe7\x3f\x15\x5a\x1f\xf5\x09\x4e\xb7\xad\x1a\x5c\x9f\x7c\x67\xb0\xe4\xae\x4e\xf0\xca\xc8\x7c\x16\xbb\x38\x78\xaf\x9f\x92\xf2\xde\x88\xd8\x78\x59\xf3\xd3\xfe\x48\x9d\x2a\x07\x3c\x85\xbe\xbc\x34\xd2\x6a\x66\x90\xe8\xbe\x5d\xda\x85\x4f\x97\x60\x66\xfc\x38\x7b\xdc\x80\x3a\x21\x66\xd2\xb0\xa5\xb0\xdf\x54\x82\xbd\x78\x8d\xe9\x63\xdf\x14\xc2\xc4\xb3\xe5\xf3\xb2\x77\x27\x12\x06\xfa\x76\x28\x5d\xac\xcf\x21\xa8\x06\x74\x59\x98\xff\xca\x21\x6c\xbb\x91\x33\x98\xd9\x93\x43\xa8\x42\xdb\xd1\xe3\x16\x1e\x04\xa9\xad\x85\xe3\xee\x9f\x9b\x48\xb0\x94\x2e\xb4\x30\x7c\xe3\x4f\x78\x19\x39\x72\xc5\x64\x74\x09\xc1\xac\xbc\xdd\xe7\xa3\xb1\x0c\xe1\xc9\xf7\xfd\x7d\x45\xf3\x04\x08\xaf\xdc\x9f\x4b\x5c\xd9\xe7\x4b\xb8\xef\xfc\xfa\x5b\xaa\x8f\x05\x41\xf8\x76\x55\x6b\x8a\xc7\x00\x83\x16\xc3\xc7\x9d\x2a\x93\x6d\x09\xf1\xa7\x52\xa5\xae\x7b\x58\x71\x60\x9a\x75\xc3\xdb\x8e\xaf\x09\x2c\x28\x7d\x9d\xbd\xe7\xa5\xfd\x08\x83\x4a\xfb\x3a\x38\xcc\xbf\x40\x6c\x5c\x60\x25\x7b\x0a\xdc\x49\x25\x1c\x5f\xbd\x6d\xed\x1d\xc7\x77\x0c\xe4\x6f\x24\xce\x85\x6b\x17\x07\xba\x9c\x4b\x85\xde\xab\x0e\x32\x78\x68\xa0\xe8\x7b\xf8\x84\x14\xa1\x48\x68\xae\xf8\x39\xbb\xfd\x84\x44\xef\x8f\x4e\x3d\xce\xfa\x84\xc6\x8a\x5d\x22\xa3\x73\xc7\x11\xbe\x6d\x69\x53\x21\xc9\x15\x84\xb7\xbe\x1a\x23\xa7\xbf\x19\x11\x96\x84\x9a\x1c\x7c\x3b\xfe\x0f\x83\xdb\x99\x93\x9e\x95\x2b\x8a\x12\x82\x6f\x0b\xcf\x9a\xa5\x5d\x46\x98\xed\x6e\xb2\xf4\x1f\x7e\x65\xb6\x89\x59\x65\xbe\x63\xe0\x3a\x73\xc7\x9b\xa6\x49\x6a\x7f\x2f\xc7\x13\x97\x6d\x36\x57\x22\x94\xdc\x5f\x67\xbf\x59\xea\x3d\x83\x1b\x1f\xfa\x2b\x16\x57\x8d\x30\x78\x3e\xc3\x3e\xf6\xd9\x07\x6b\x42\xe1\xf3\x16\xf1\xb9\x26\x95\x84\x8e\xf0\xf7\xf1\x13\xea\xae\x10\xde\x2c\xc8\xeb\x32\xf9\x5b\xd4\x3f\xdc\x4d\x6c\x9e\x5a\x4b\x38\xf4\x56\x6f\x71\x0f\x4f\x2b\x83\xa7\x9b\xe4\xcf\x7b\x54\xd4\x13\xf8\x2e\x5d\x53\x3f\x6d\x72\x87\x85\xd2\x67\x13\x37\x2f\xfe\x5b\xdc\x44\x7b\x5c\x1d\x2e\x7b\x10\x32\x1e\x77\xde\x39\xb4\x0b\x0c\x22\xae\xc8\x1e\x95\x12\xac\x22\x5c\x72\xfe\xf6\x36\x86\xaf\x81\x05\x0f\xc3\x4b\xf3\x2a\x05\x6e\x12\x0e\xbf\xbf\x39\xf3\x8b\xc8\x07\x06\x17\xa7\x91\x91\xeb\x98\x18\xe1\xe5\xee\x46\x4d\x8d\xa7\x95\x84\xe1\xdc\x13\x35\x7a\x95\xb9\x04\x73\x63\xc7\xb2\x7f\x25\xad\x74\xc6\xd2\xad\x9a\x2c\x42\x41\xd8\x1e\x0b\x77\xef\xe6\x2a\x44\x3c\xe5\x75\xac\x11\x93\x22\x36\xe4\x2b\x65\xbb\xa4\xf5\xf9\x09\x23\x63\x21\x32\xe3\x4f\xdb\x12\xd4\x4e\x1e\x28\x33\xb0\xf1\x26\x70\xfd\x7a\xfe\xcc\xe5\x44\x2d\x41\xfc\xc3\xd5\xe8\x7b\x1f\x6a\x08\x6b\x7a\xc4\xce\x7a\xf7\x37\x56\x41\xc5\x3b\x22\xa4\x6a\x9e\x27\xb1\x91\xf5\x59\x62\x8d\xcc\xe4\x6a\x16\xbb\xf8\x39\xf4\x7b\x2e\x73\xd6\x24\x44\x0c\xcf\xc8\x90\x0c\x9e\xf6\x7f\xa2\x5f\x2d\x61\x17\xb7\xb0\x1c\x21\xf4\xc3\x57\xc1\x9e\xf3\x63\x0c\xbb\xf0\x74\xe6\x9f\x2a\xf0\x1d\x60\x20\x6e\xae\xf1\xe0\xcd\xcf\x6f\x0c\xfa\xf7\x5a\x6f\x9e\x2c\xe4\x4a\xff\x81\xef\xc5\xc5\x2d\x6a\x2d\x2a\xff\x05\x63\xee\xe5\xbc\xfb\x77\xbe\x67\x70\xdd\xbf\x6d\xed\x99\xc8\xbf\x6b\xaf\x6a\x56\x5e\x69\x99\x3f\x61\xb6\xff\xd3\xf9\x32\xc7\x88\x70\xda\x3b\x26\x5a\xff\xba\x05\x61\xa8\xce\xae\x27\xee\x8c\x0a\x0d\xbb\x88\x89\x6f\x1a\x1b\x4f\xd8\xe3\x7b\x65\xad\xf0\x2d\x3d\xc2\x1d\xe6\xa8\xaa\xca\xdd\x89\x84\xe4\xa9\xe7\xb5\x60\xf0\x87\x81\x63\x5b\xf1\xbe\xb3\xac\xf1\x84\x75\x45\x55\x6a\x05\x6b\xca\x08\x2e\x6e\xb1\xdc\xbf\x7c\x0d\x08\x97\x8e\x07\xaf\xb4\xa7\x99\x84\xd0\xaf\xdb\xbd\xab\xb6\xf7\x30\x38\xaf\x38\xd5\xbb\x73\x83\xc6\xdf\x3b\x80\xf1\x97\xf2\x97\x26\x04\xf3\xb9\x07\x5e\x45\x18\x75\xb0\x50\xff\x90\xd1\x99\xae\x59\x4d\xd8\xd9\xaf\xd8\xa6\x60\xff\x94\x70\x3d\xa7\x77\x81\x6c\xc2\x2b\xc2\x97\xd0\x1b\x59\x2f\x0e\xb4\x10\xf6\x86\x35\xa7\x7e\x11\xae\x26\x0c\x15\x5f\x1b\x9e\xf1\x5e\x99\xc0\x25\xf5\x31\xc3\x19\x75\x2c\xac\x74\x5d\x18\x93\x1a\xec\x48\x78\x68\xef\x9c\x38\xf1\xea\x6c\xc2\xcc\x07\xa5\xef\x83\x3c\xb4\x09\x77\x7f\x65\xf8\x5a\xe5\xf1\x11\x26\xbf\x3a\x6d\x7d\xc9\x59\x94\x30\x79\xe6\x46\xc5\x4e\xd3\x23\x2c\x6c\xf1\xe9\x7d\x20\xc5\xa5\x42\x18\x5b\xeb\x69\xac\xb2\x6e\x35\x21\x4c\xb4\xfe\xfd\xd7\x4a\x33\xc2\xbe\xf4\x99\xf5\x0a\xd1\x7f\x9f\xa6\x73\x44\xe5\x0a\x6a\x65\x08\xea\x99\xb2\x5d\xa1\xb1\x3c\x84\xc0\x1f\x59\x83\xa5\x62\x12\x84\x5d\xc5\x8e\x51\x93\xe4\xee\x12\x2c\x97\xcd\xcb\x7f\xaa\x5b\x47\x08\xbf\xa0\x1f\xf7\x54\xbd\x8e\x20\x2f\x6f\xbd\xa7\xc1\xf7\x16\x81\xff\xce\x79\x4d\xb5\xbf\x58\x18\xd8\x56\x9a\xee\x7d\x8b\xa0\xe8\xf7\x5a\x85\xb9\xce\x39\x4a\xae\xcd\x1d\xdb\xa6\x5c\x47\x10\x1f\xee\x69\xbd\x7b\x3c\x9b\x70\xa9\xf8\xe9\xcd\x7f\x58\xef\xbb\x5b\x73\xf8\xd9\x3e\x16\xd6\x18\xad\x59\xcc\xbb\x6e\x07\x21\x2b\xbb\xeb\xc0\x75\xcf\x54\x42\xc1\xcc\x20\x79\x85\xff\xdf\x8b\x43\x4f\xce\x19\x1e\x6c\x4b\x20\x7c\x99\xfd\xa1\xd1\xe0\x49\x02\xa1\xeb\xf3\x46\x5f\xed\xc2\x04\xc2\x25\xf5\x2d\x6b\x0d\xff\x16\xd5\x91\x79\x53\x4f\x55\x70\x96\xbc\xaf\x6b\x3c\x8e\x0c\xaf\x23\x98\x7c\x0d\x56\x5c\x53\x9a\x48\x38\xd6\x70\x30\x50\xe4\x47\x38\xa1\x4c\x39\x33\x2c\xf3\xef\x28\x3f\xda\xc6\x6d\x9b\xbf\x29\xe1\xa6\xbc\x59\x4a\x5b\xde\x0f\x06\x7c\xd7\x1e\xdc\x3f\xa9\x35\x95\xb0\x3a\xef\x7a\x52\xef\xe9\x59\x84\x1d\xcf\x9f\xa7\x46\x17\x9c\xe0\x40\xf8\xa7\xa8\x81\xb5\x95\x51\x04\xe9\x7c\x9d\x49\xea\xe2\x07\xff\x0b\x81\x05\xeb\xfc\x7d\x74\xa6\x10\x96\x0b\xec\x91\xea\x09\x7e\xcc\x40\x32\xfa\x58\xdb\x96\xe5\xb3\x08\x19\x5b\xf9\x2e\x68\x6c\x9b\x41\xf8\xb4\xc8\x35\x52\xec\xfb\x04\xc2\xfd\xa3\x9f\x07\x87\x0a\xdf\x32\x20\x2e\x2b\x51\x8f\xec\xc5\x84\x9f\x9b\xef\x7a\xe4\x0a\x79\x13\xbb\x24\xbd\x09\x18\x3a\xba\xc5\x9b\xc0\x1b\x53\x29\xbf\xea\xa5\x37\x47\xb9\x76\xab\xf9\xce\xa9\xea\xa5\x04\x91\xa8\x4d\x85\x52\x87\x3d\x08\x07\xf6\x3d\xcc\x7b\x59\x3e\xca\xe0\xc4\x9f\xa4\xce\xe2\xaf\x42\x04\xd3\xba\x5f\xa7\x59\x9f\xa4\x09\xbc\x3e\x2b\x36\x5c\xd5\x1b\x47\x60\x8a\x98\x3b\xbc\x26\x43\x0c\x1b\xf6\x2f\xec\x1f\x2d\x58\x7c\xbf\x0a\x0f\x96\xcd\xf9\xd1\xbe\x7e\x21\x21\x20\x71\xf5\xf8\xf7\x31\xb3\x09\xcc\xc5\xe2\x2a\xe3\x3d\x53\x08\xe7\x1c\x17\x09\xaa\x85\x4e\x22\x6c\x0d\x8e\xba\x6f\x61\xbd\x92\xf0\xbd\xcd\xbf\x81\xef\xb6\x07\x0b\xed\x3e\x0f\x59\x52\x05\xe5\x84\x82\xed\xef\xd4\x0a\x0e\x95\x13\x98\x33\xef\x9e\xfc\x2b\xdf\x98\x77\x2b\x4a\xa2\xec\x58\x30\x54\xaa\xd9\xc1\x73\x3a\x8f\x60\xa7\xb1\xff\xe5\xd7\x71\x17\x08\x57\x1e\xce\x6f\xfc\x69\xff\xb4\x0a\xdc\x3d\x85\x81\xd3\x4b\xf5\x88\x8d\x5b\xcf\x43\xde\x9d\x9b\xd2\xcf\x20\xe5\xc0\xc8\x96\x47\x4b\xfa\x19\xf0\x0c\xb8\xf6\xcf\xb6\x91\xa1\xff\xc0\x29\x1e\x03\x47\x89\x43\xf2\xff\x85\x12\x7e\xe3\x06\x3f\x8f\xe7\x55\xb8\xdd\xaa\xbb\xc6\x76\xee\x45\x16\x04\xa2\x36\x5d\x99\xec\x5a\x46\x58\xdf\x34\xb4\x2f\xc9\x22\x92\x20\x9a\x21\xea\x62\xee\x7f\x8e\xb0\xb8\x65\x5f\x71\xf1\xea\x71\xff\xef\x3f\x20\xd9\x2c\x48\xbf\x34\x3d\xd9\x24\x40\x84\xd7\xb6\x37\x4f\xdb\x1c\x59\x4d\xa8\x55\x13\x6f\x78\xf5\x4a\x85\x50\xb0\xe1\x83\xa7\xac\xd4\x20\x03\xd3\xb2\xa6\xbb\x17\x85\x2c\x08\x0f\xf9\xce\x0b\x86\xcb\xc5\x10\xb6\x3f\xf3\xe2\x53\x28\x1c\x62\x50\xf9\x62\x74\xfc\xcd\xef\x3f\xd8\x18\xce\xa8\x39\x52\x5a\x50\xfb\xbf\x13\x67\xe5\x72\xad\x72\xbc\x54\x08\xd9\x36\xc7\xc5\x3d\xee\xcd\x27\x8c\x9f\x55\xfd\x75\xd7\xa7\x12\xc2\xf1\x75\xd9\xd3\x79\x27\x7a\x70\x60\xdd\xbe\xa7\x7d\x1f\x4b\x04\x09\xe7\x96\xb7\x2e\xbc\x30\xec\x46\x30\xbc\xd5\x2c\x3c\x21\x4d\x8c\xd0\x3e\xb8\xfb\xc6\x93\xe8\xbf\x7b\xbe\x8a\x7d\x7e\x9b\x88\x24\x21\x67\x53\x9b\xd5\xbe\x45\xd2\x84\x2b\x65\xb9\x0d\x2a\xd9\x33\x09\xd5\xbb\x5e\xef\xd2\xcf\x16\x22\x5c\xfe\x72\xd5\x3d\x22\x3a\x99\xf0\x66\xb7\xf0\x03\x99\x71\x4b\x08\x2b\x4a\x6f\x08\x97\x76\x8f\x31\x50\xf6\x70\x0b\x1b\x78\x63\x4d\xb8\xf0\x35\x52\x74\x6e\x10\x11\xe6\x7d\x56\x5a\x6b\x50\xad\x49\xb8\x36\x63\x7f\xcf\xe7\xca\x71\x84\xb6\xa5\xfb\x6c\x0d\xa6\x4f\x21\x74\x1a\x61\xb8\x4c\xa9\x8d\x05\xdd\xcb\x9f\xc6\xdb\xf7\x2b\x11\xfc\xf4\xbb\xee\x75\xdb\xcc\x25\x3c\x0e\x3c\xca\x2f\xaf\x67\x43\xc8\x9d\xf1\xb5\x67\xca\xd4\x69\x2c\xd8\xd5\x66\xcf\xae\xee\xba\x46\xa0\xb4\x3a\x8b\xd5\x45\xd7\x09\x42\x15\x67\xbe\xdf\xfc\x5b\x16\x19\x3c\xeb\x4d\x51\xdf\x4b\xb0\x3a\xe9\x1a\x38\x3e\x79\x16\xe1\xcc\x83\xaa\x76\x0d\x96\x0a\x21\xc0\xa9\xdb\x2a\xd5\x49\x91\xe0\x6f\x16\x9c\xfa\x78\x4c\x84\x10\x37\x53\xa0\x6f\xe6\xdf\xb7\x3b\xdb\x6a\xe9\xcb\x4e\x01\x6d\xc2\xaf\x29\x5c\x69\x63\x9f\x34\x09\x4a\x42\x69\x9b\x53\x9e\x7a\x13\xb6\xbf\x89\x8e\x35\xae\xd3\x22\x98\xf3\x1e\xf9\xb9\xd9\xce\x9d\xf0\x6b\x45\xe7\x79\x6e\x87\x10\x0e\x7c\xfc\xf8\xda\x7f\xe4\xd5\x52\x82\xf0\xaf\xa0\xa5\xce\xdc\x96\x84\xd6\x83\x5b\x7c\x2f\xf7\xca\x10\x7a\x2a\xcc\xbf\x3f\xc8\xe2\x21\xec\x41\x72\x7a\xcc\x74\x17\xc2\xaa\x58\xee\xfc\x51\x13\x13\x82\x55\xc9\xb3\x47\x03\x3f\x16\x10\x26\x6a\xd4\xbd\x99\x79\xbb\x86\x20\x36\x3d\xe2\xc2\x27\xd7\x6a\x16\x44\xce\xfe\xa6\x13\xa9\x9d\x2c\x44\x5b\xee\xce\x6b\xaf\xae\x66\xc1\xc6\x61\x51\x6f\x7a\xe8\x45\x82\xd1\x8b\xbe\x56\xdb\x8e\x78\x82\xd8\x43\x83\x29\x5f\xbe\xc5\x73\x94\xff\x61\xbd\xe8\x4c\xdf\x14\x37\x01\xc2\x88\xdb\xf7\xbd\x59\x0f\x59\x84\xf9\x51\xde\xf2\x89\x62\x26\x84\x68\x66\x68\x13\xdf\xf8\x2b\x2c\x6c\x88\x6f\xd0\x28\xd9\xd7\x44\x58\xd5\x96\x57\x3d\xac\x50\x4d\x48\x0c\x5a\x7b\x8f\x3f\x94\x8b\xe0\x6c\xdc\xe0\x52\xf8\xbb\x93\x41\xfc\x1c\x2d\x91\x62\xd9\x2f\x1c\x58\xf6\x98\x2f\xe6\x80\xc4\x44\x02\xed\x0c\x7e\xe1\x2c\x7c\x99\x05\x7b\xa7\x3d\xe6\x3f\x23\xb3\x08\xe1\x93\x1e\xed\xea\x63\xc5\x12\x36\xae\x69\x14\xe2\x56\x58\x40\x70\x08\x31\x53\xae\x90\x15\x24\xec\xb1\x1a\xf7\x60\xab\x92\x25\x07\xce\xaf\x93\x98\x54\xf2\x90\x08\x3a\xeb\x26\x49\x29\x4a\x98\x12\xbe\x7c\xbe\x9b\x1d\xa6\x95\xce\x81\x9b\x33\xb3\x1c\xb7\x4b\x87\x13\xa6\x16\xae\xaa\xbc\x99\x2b\x45\x30\xef\xc9\x78\xb4\xe4\x81\x3e\x21\x7b\x95\xb0\x6a\xfd\x52\x2e\x02\x57\xc5\xa4\x3e\xb1\xdd\x67\x59\xd8\x9a\xd6\xd8\x3d\x59\x37\x9e\xd0\xbb\xdf\x20\xe4\x82\xb5\x35\x61\xf3\xaa\x42\xcf\x49\x13\xd2\x08\x9b\x12\x9b\x32\xe4\xb8\x83\x09\x66\x31\xb6\x9b\xc7\x15\x18\x12\xe4\xa6\x99\xfd\xf8\xb2\x75\x3b\xe1\x4b\x53\x61\xd0\x24\x43\x1f\x8e\xb2\xf5\xd8\x9e\x37\x4f\x63\xb7\x10\x8e\x9d\x91\xdb\xf5\xb2\x91\x45\xb8\x3e\x2d\x8d\xfb\x91\x56\x31\xa1\xcc\x35\xc0\x52\x47\xed\x0b\xa1\xb8\xba\x49\x69\x4d\x42\x0f\x61\x46\x5b\x77\x93\xd2\xdf\xa2\x72\xe5\x81\x7a\x5e\xe8\x5b\xc2\x2e\xf1\xfc\x1b\x9a\x5b\x7d\x09\xd2\x27\x97\xb6\xdb\xe7\x2f\x22\xac\xb4\xd2\xcd\xda\xec\x7a\x9a\xe0\x12\x67\x5d\xf8\xb1\x26\x90\x85\x55\x67\xdd\x13\xaa\xc6\xfb\x13\xb2\x07\xf5\x54\x3c\xce\xaf\x23\x7c\xd5\x9d\xf3\x9c\x6b\xd4\x99\xa0\x1f\xf1\x8d\x4f\x63\x46\x17\xc1\x6d\x44\x4d\xef\x39\xd7\x27\x82\xf9\x97\x90\x9a\x8f\xaf\xfb\x08\xa5\x3b\x63\x46\x8a\x0e\xbe\x26\xec\x51\x5a\x3f\x6a\x1f\x77\x89\x70\xdf\x4e\xae\xe3\xac\xdd\x45\x82\xc2\x4d\x59\xa3\xc1\xf7\x1e\x2c\x74\x1c\xac\xbb\x3f\x3b\xed\x12\xa1\xb9\x85\x4f\x6d\xfc\xa2\x58\x02\x7f\x7f\xd0\x53\xdd\x9e\x06\x02\xcd\xf9\xd1\x11\x7b\xdb\x9c\x70\xb5\x5a\xc2\x9e\x6f\x2c\x9c\x20\xd5\xba\x3d\xd6\x40\x96\xfb\xef\x97\x21\xb7\x26\xe9\xf3\x52\xc2\x8a\x95\x59\x75\x12\x2a\x07\x38\x70\x3b\x71\xb7\x75\xad\x7f\x1a\x41\x33\x69\x67\xfb\x11\x4f\x1b\xc2\xc2\x99\x79\xab\xb9\x8e\x3a\x11\xa4\x9c\x1f\x26\xcb\x67\xe9\x11\x6a\x9b\xb2\x33\x9e\xef\x91\x26\x2c\xf8\xd2\x3a\x98\x34\x77\x90\x41\xfb\x09\x8b\x8a\x9b\xd9\x11\xc4\xc6\x4f\xcd\x37\xbf\x17\x6a\x49\x12\x56\x6a\x4a\x5c\xbf\x1d\x55\x47\xd8\xcc\x9f\x3b\x14\x6d\x7b\x9c\x30\xf5\x51\xe3\xaf\xe6\xda\xf3\x1c\xe8\xf2\xfb\xa1\xf1\xe8\x2f\x76\xdc\xf4\x2e\x7a\x15\x9f\xc8\x81\x1f\x5b\x5b\xa3\xbf\xd5\xef\xe1\x40\xb0\x9a\xb5\x81\x85\xd7\x69\x16\xe4\xec\x1e\xdb\x7c\x76\x89\x26\xe4\x4b\x8a\xa4\xa9\xea\x07\x10\x9e\x07\x58\x9f\x99\xec\xe7\x4e\x98\x99\x9b\x65\xf4\xf1\xf4\x6a\x42\xd3\x49\x9e\x0f\xcd\x9d\xc6\x04\xd5\x27\xcb\x15\x4a\x22\x5d\x09\x71\x2d\x66\x4f\x26\x9d\x52\x21\x68\x8e\xf3\x5f\xe3\xc9\xa3\x4f\x90\xf6\x8d\x39\x34\xf0\x4d\x80\x10\xc4\xb7\x62\xd4\x7e\xcb\x00\x83\xcd\xe1\x3f\x0b\xeb\xf7\x2d\x61\xa1\xb3\x66\x70\xcf\x12\x47\x2d\x62\x23\xae\xf3\xf3\x93\x83\x82\x45\x55\x70\x73\x75\xab\x50\x1a\x15\x25\xfc\x18\x3b\x3f\x35\x67\xb2\x1c\x01\x8b\x34\xe2\x8b\xd7\xf0\x13\x16\xe9\xcd\xd1\xfe\x58\x29\x4f\x08\x34\x1a\x5a\x3a\xcb\xa2\x92\xc0\xf7\x5b\x58\xf7\xe2\x03\x65\xc2\xcb\x8d\x3b\x59\xfc\xf9\x7f\xd7\xfb\xce\x2b\xb5\x2a\x55\x26\x84\xc4\x53\xe7\xbd\x86\x85\x78\x08\x7c\xc2\x59\x7f\xec\xa5\x3d\x09\x63\xaa\x77\x8b\xf7\x2c\x9c\x4e\x38\x32\x33\xdc\x50\xba\xb8\x90\x20\xdc\xb5\xcc\x77\x99\xc0\x3c\xc2\x8b\xcd\xf3\xd5\x77\xee\x7e\xc6\x42\xf8\xcd\x0f\x51\x43\xfb\xd5\x08\xd9\xa3\x92\x43\x85\x81\xd1\x1c\x70\xa8\x37\xbc\xb1\xd6\xf5\x05\x03\x8b\xa5\x4a\x0b\xb7\x76\x99\x12\x44\x46\x4f\xde\xdf\xb7\xd6\x9e\x70\xe5\x41\xc6\xb1\x68\xd7\x3c\xc2\xb2\x69\xa3\x25\x6a\x16\x97\x59\xb0\x58\x6e\x67\xc5\x3a\x31\x44\x98\x2e\x39\xd0\xe4\xd2\xf0\x8d\x70\x2e\x4f\xcb\x66\x56\xed\x37\xc2\x82\xdf\xb7\x19\x1d\xe5\xab\x84\xd4\x2d\xcf\x26\x7d\x8d\x2e\x27\xec\x2d\x8c\xf9\xd6\xd2\x01\x06\xbf\x67\x5e\x09\x88\xaf\x9e\x4b\x90\x8f\xee\x6d\x3c\x91\x7f\x9e\xb0\xce\x5d\xb6\xf9\xd8\x3f\x08\x0d\x7d\xcd\xbf\xb1\x93\x20\xd1\xa0\x90\xd8\x22\xb5\x9c\xd0\x16\x2a\x79\x26\xff\x57\x05\x61\x57\xce\xd4\x1a\xa9\x54\x43\x02\x9d\xb7\xe6\x76\x3c\xac\x4e\x78\xbb\xdb\x6f\xed\xc9\xbf\x3b\x81\xa6\xd1\xcb\xfa\x42\x73\x7b\x82\x41\xc1\xf3\xae\xad\x9e\xea\x1c\xd0\x71\xdf\x18\xd6\xb7\x38\x90\x03\x7e\xf6\xe9\x82\xf2\x8b\x2c\x08\xdb\x3e\x2d\xb3\x59\xec\xf6\x91\xc1\x29\x8b\xb3\xd7\x52\x3c\x27\x13\x1b\xb5\xbf\x06\x77\x9f\x88\x50\xe0\x40\xef\x9e\xdf\x17\xc4\xec\x0d\x09\xde\x17\xaf\x4d\x4b\x72\xcb\x22\x04\x4a\x6e\x0d\xc8\xb6\xdd\x46\xa0\x60\x99\xb6\x6f\x19\x23\x0c\x3c\x6f\x45\xcc\xd7\xfa\x5a\x44\xa8\xbb\xaa\xa9\xa5\xab\xbd\x9b\x90\x11\x59\x29\xe5\xaa\xd1\x4a\x50\xab\xcb\xd5\x93\x2b\x0f\x24\x1c\xbf\xb8\x89\xb5\xce\xb7\x86\xd0\x2f\x5a\x62\x5c\x27\x07\x06\x2d\x9f\x3f\xf1\x99\x57\xda\x10\xae\x5e\xac\xcf\x14\x6c\xb1\xe7\x80\x32\x85\xcd\x16\xcd\xe0\x21\xac\xb8\x55\xb4\x73\xfe\xbd\x32\x82\xb5\x83\x16\xeb\x95\xba\x22\xe1\x43\x71\x52\xa3\xf6\xb2\x2f\x0c\x1b\xc7\x7c\xf7\x0a\xcd\xcf\x6c\x66\xa0\xb9\xe1\x4f\x91\xff\x26\x23\xc2\xb2\x34\xbb\xb4\x19\x87\x7e\x32\xc3\x43\xc2\x6b\xac\x4c\xe4\xe8\xff\x9d\xf8\x72\xb4\x4e\xc3\xeb\x41\x17\x83\x3c\x19\x1d\xe3\xc2\xe5\x93\x09\xab\xca\xb4\xdb\x7d\x75\x26\x12\x76\xae\x78\xc5\x27\x3a\x51\x8b\xd0\xde\x7b\xac\xce\x7c\xea\xe5\x2a\xa4\xad\x1a\x57\x7e\xc3\xa0\x8b\x90\xad\x75\x7e\xcf\xb6\xe1\x2a\x0e\x1c\xf8\xd3\xca\xb7\x28\xa6\x94\x60\x64\x3f\xf2\xe9\x5f\xd9\xdf\x76\xab\xda\x63\xe3\x3e\xc2\xdb\x09\x69\x9b\x8a\x4e\x24\x12\x46\xfa\xb9\xeb\xd7\xcf\xbc\x4a\xc8\xbc\xf2\xae\x22\x60\xfb\xdf\x1b\xbb\x59\xc9\x58\x63\xef\x2b\xc2\x6e\x47\xff\x55\x1d\x22\x1d\x04\xdd\x15\xed\x99\xff\x5e\x33\xeb\x8a\x14\x32\xbe\xef\x64\x41\xd8\x62\xf8\xa1\x42\x79\x32\xa1\x79\x20\x78\xae\x55\x64\x32\xe1\xba\x81\xf1\x63\xf7\xcc\x64\x62\x8f\xea\xb9\x15\x5b\x4d\x3c\x1a\x08\x5f\xaf\x4f\xad\xac\x47\x02\x21\x20\xd4\xe3\x4b\xd0\x9a\xa3\x84\x84\x03\xb9\x1f\x65\x46\x2a\x08\x82\x87\x4e\x25\x44\x3d\xbc\x4e\x38\x7f\xb1\xa7\xd2\xac\x7d\x23\xe1\xb4\xe4\xda\xba\xcb\x7f\xd6\x12\xe6\x3c\xf5\xde\xf1\x26\x56\x93\x60\x3b\x36\x2d\x7e\xe0\x8f\x1f\xe1\x73\x73\x74\x74\xbd\x8b\x25\x61\xed\xda\x0a\x1f\x91\xe6\x8f\x0c\x44\x44\x7e\xc5\xc8\xbd\x94\x22\x6c\x96\x5a\xa5\xe8\x0c\x31\x0e\xdc\x8f\xc8\xd0\xff\xd4\xaf\x4d\xf8\x20\x67\xb7\xfb\x81\x8d\x2a\x41\x6d\x68\xa5\xcd\x11\x47\x53\x82\x20\xd3\x68\xbd\x5f\x5f\x8f\x10\xe9\x36\x3e\xdc\xe8\xe7\x44\x82\xc8\x06\xd3\xc4\x82\xcf\x03\x0c\xec\xcc\x72\xd7\x92\xfa\x4f\x06\xe3\x77\x08\x58\x98\x2a\xa5\x12\xe6\xe0\xc5\xe4\x7f\x98\x9d\xff\xda\x0f\x6a\x93\x09\xea\xee\xcf\x13\x86\xf9\x55\x08\xea\xbc\x37\x4d\x8e\x4e\x36\xe1\xc0\xb3\xb4\xc9\xcb\x3b\xc2\xb5\x39\x50\xfe\x54\x3a\x96\xd9\xde\xcf\xe0\xc0\x86\xfe\x40\xd9\x57\x16\x84\x8f\xaa\xa9\xf7\xae\x4e\x1e\x60\xd0\x10\x16\xe1\x1d\xcb\x7d\xba\x8a\x8d\xa6\x23\xbf\x9b\x0f\xe6\x70\x11\x26\x8f\xcd\x90\x2a\xb5\x76\x21\xf4\x39\xcc\x3e\x5d\xf1\xd5\x92\x90\x71\xed\xe5\xc9\x31\x5e\x4b\x42\x7b\x73\xc0\x4b\xd9\x49\xa6\x84\xc8\x34\xab\xdc\xfb\x9f\x94\x08\x3d\x5f\xa4\x85\xf8\x73\x3b\x18\x64\xec\xa8\x92\x7b\xe2\x79\x8c\xd0\x5d\xd1\xfb\x4a\x39\x55\x8b\xa0\x7b\xcf\xa5\x5f\xeb\xbd\x3b\x61\xb5\x77\xca\xcf\x37\x87\xbc\x09\xbb\xa7\x74\xfb\x16\xde\x70\xe1\x40\x85\xe8\x9a\x0b\xea\x43\x05\x84\xf5\x8d\xaa\xab\x1f\xa7\xaf\x21\x4c\xeb\x9e\x1c\xc9\x5f\xfa\x9e\x81\xce\x38\x9b\xf8\xe4\xcd\xca\x84\xf8\xd0\x0b\x9f\x27\x0e\x5c\x66\xb1\xcb\x31\x8b\x1d\x9e\xbc\x06\xf6\x84\x44\x3f\x31\xcd\x05\xeb\x78\x08\xab\x0c\x6f\xf1\x3d\xbf\x31\xcc\x60\x8d\x57\xb7\x75\x73\xd2\x17\x06\x69\x06\xb2\x55\x5d\x4f\x7b\x19\x74\x1d\x4e\x4a\x58\xbc\xd6\x94\x90\xb4\x69\x20\xe8\xcc\xed\xf9\x04\x2f\xdb\x6b\xee\xef\x97\xec\xe4\xc0\xf6\xd5\x83\x53\x44\xc5\xb7\x12\x8e\x09\x44\x5d\x30\xfe\x6d\x4c\xd8\xad\x55\x7f\xe5\xa3\xe4\x37\x06\x67\xd5\xb7\x8f\x46\xef\xe7\x22\xcc\xed\x8f\x72\xb3\xc9\x11\x20\x68\x0e\xe6\x19\x55\x85\xf5\x32\x38\xe9\x57\x7e\xfd\x6b\xd9\x02\x42\xef\xc6\xe4\x47\x1f\x7e\x80\xc1\x45\xa7\xad\x96\x2d\x93\xf5\x89\x8d\xf3\x81\xee\x29\x0f\x7f\xb7\x32\xa8\x2d\x1d\x55\xb0\x5c\x24\x4a\xb0\xbc\x3d\x57\xb6\x50\xe9\x00\xe1\x4e\x62\xc1\x64\xc1\xe9\x23\x0c\xc4\x1f\xfe\x8e\x71\x96\x28\x23\x48\x2e\xd9\xb5\x32\x43\xac\x8c\x90\x61\x76\xf1\xca\x59\x47\x3b\xc2\x07\xe5\x43\xbd\xd2\xa1\x1f\x19\x24\x3b\x26\x79\x9c\xfa\x3a\xc8\x01\xbd\x37\x1d\x61\xa7\x47\xee\x33\xe0\x9a\x94\xdc\xa8\x18\x3c\x9b\xb0\x63\x7f\x4c\xd9\xd0\x39\x69\x82\xec\xd4\x2b\xe3\xde\xbf\x70\x20\xec\xfb\xdd\xe4\x90\x1b\xbf\x88\x10\xb5\x66\xd8\x7a\xde\xad\x4a\x82\xcc\x13\x01\x73\x79\xe6\x22\x61\x91\xf9\xb1\x4f\x77\x46\x2d\x08\xbe\xca\xed\xbf\xab\xda\xc4\x08\xab\x24\xcb\xde\x6a\x04\xf1\x11\xe2\x6f\x3f\x9e\x3e\x65\x7b\x13\x03\xe9\xcb\x2f\x1d\x16\xdb\x5a\x13\xd6\x09\xd7\xab\xcc\x35\x35\x25\x4c\x9c\xa9\x39\x27\xcc\x29\x92\x85\xf6\xb4\xad\x06\xf6\x99\xdc\x84\x6d\xee\x21\x22\x67\x23\x15\x39\x50\x35\x6e\xbc\x4d\x73\x66\x17\x03\xbb\x86\x9d\xe3\x78\xc2\x79\x08\x23\x81\x25\x9f\x78\x5a\xb5\x08\x02\xa2\x15\xb3\x27\x35\x1b\x12\xde\xee\xaf\x8f\xc8\x0e\x53\x23\x44\x6e\xd8\xf7\xfa\x79\x91\x27\x07\x4e\x3d\xe9\x1b\xee\x7f\xf9\x8a\xc1\x71\xa5\x9b\x71\x12\xcd\x95\x84\x6a\x8c\x77\xf7\xdc\xcd\x09\x79\xcd\x8a\x3f\xb9\xdf\x0b\x38\xb0\x7f\x43\x8b\xe7\xeb\xaf\xd3\x08\xbd\x57\x33\xd7\x5e\x8c\x7a\xc0\x60\xfc\xed\x5d\xfc\x03\x57\x37\x11\x1b\x6f\xff\xf8\x65\xdd\x1d\x10\xe4\x80\xc9\x2c\x3b\x6f\xe9\x9b\x3b\x08\x18\xb7\x60\xe2\xb8\x0f\xaa\x1c\xb8\x50\x3f\x35\xe9\xce\x7b\x6e\x42\x69\xc0\xd2\xfa\xe3\x6f\x24\x08\x77\x2b\xf2\xa3\x1a\x1e\x94\x55\xe1\x93\xaf\xa5\xf8\x5a\x33\x45\x82\x89\x73\xe1\xa6\xfd\x7b\x84\x08\xc2\xdd\xa6\x36\x8b\x63\x73\x58\xe8\xe9\xef\x7b\x63\x71\x43\x82\xe0\xdb\xd9\xb2\x71\x2f\xaf\x2a\x21\x97\x5a\x1a\xac\x9c\x6d\x09\xb2\x81\xcb\x33\x22\x4e\x67\x13\xe2\x7a\x97\x7c\x8e\x7a\xf8\x93\x41\xc0\xde\x2f\xfe\x01\x8e\x60\x86\x6d\x94\x9b\x47\x1e\xf1\xd1\xff\x3b\x31\x50\xf3\x31\x2f\x68\xe4\x37\xc3\xc6\x32\x05\xb3\xdc\x0f\x3c\x13\x08\x52\x52\x72\xe2\xc3\xe7\x35\x08\xfd\x5d\xaa\xde\x71\xc6\x03\x0c\x9e\xba\x5c\x31\xbf\x93\xc0\x45\xf8\x7e\x55\x70\xe8\xa3\xc3\x7b\x06\xa3\x6f\x1f\xad\xd2\x75\x1c\x63\xa0\x7b\xe5\x90\x5e\x6d\xcf\x49\x16\x0a\xeb\xd4\x33\x0d\x8d\xb9\x08\x36\x4f\xfa\x96\x5f\xe8\x1e\x60\xd8\x60\xfc\x4c\x2f\x7f\xb6\xee\x62\x70\x5c\xbc\xca\x49\xfc\x46\x37\x83\x3d\xc2\xae\x47\x79\xf4\xd5\x09\x12\xe7\x8b\x2f\x9d\x8b\x9e\x43\x48\x16\x0d\x4f\x63\xa6\x18\x11\x3e\x5c\xf2\x59\x58\xce\x57\x43\x50\x88\x38\xcf\x55\x92\x7c\x91\x10\xfc\xb8\xbf\xf3\x98\xff\x1c\x42\xc5\x18\x23\xd5\x24\xf5\x93\x41\x6b\x5a\xe9\x96\x82\xfd\x63\x0c\x8e\x14\x29\xb5\x24\xdb\x6f\x20\x36\x14\x97\xa9\xb8\x8d\xdb\xab\x45\x60\x49\x48\x77\x89\xd7\xe7\x13\xc6\xd6\xfc\xfc\x15\x32\xac\x4b\x78\xd3\x99\x7e\x21\x6a\xcb\x5c\xc2\x86\x23\xca\x31\xdf\x46\x64\x08\x7a\x56\xc1\xc9\xba\xf6\xe2\x84\x0e\xe9\xb3\x35\x43\x29\x0c\x07\x76\x35\x9e\xf9\xe9\xf3\xf7\x4a\xf1\x3f\x04\x7d\x19\x4c\xac\x76\x9f\x46\x6c\xa4\x36\xec\x1c\x0a\xba\x35\x81\x10\x38\x54\xd2\xc3\xdc\x77\x20\x7c\x09\xbd\xfc\xa7\x4f\xcf\x80\x20\x56\x77\xa4\x78\xf0\x09\x11\x42\x8f\xfa\x3a\x65\xea\x47\x72\x20\xfc\xf4\xaf\x80\xfd\xbc\x12\x84\xca\x43\xfe\xbf\x25\xba\x6b\x08\x8b\x77\xf7\x96\x9e\x2c\xab\x21\x8c\x55\x08\xa6\x49\x2b\x6a\x12\xce\xe5\x34\x74\xb8\x6f\xb6\x20\x34\x1d\xe1\xc5\x91\x32\x51\xc2\xdd\xb5\x5a\x2f\xcf\xd9\x8c\x31\xc8\x8f\xf2\x9d\x93\x2d\x60\x45\x6c\x64\x1c\xee\xf4\x76\xf6\xba\xc3\x40\x6e\xa6\xfe\xf4\xf0\x70\x6b\x42\xc7\xab\x25\x3b\x2e\xa9\x39\x11\x9a\x04\x4e\xc8\x58\xcf\x99\x4d\x08\x28\x15\xdd\xeb\x66\xaf\xcb\x81\xb7\x07\x0f\xcd\x5f\x57\xf5\x9a\xc1\x4d\x87\x69\xe9\x4f\xf7\x58\x10\x5c\xf4\x32\x47\xff\x1c\xe3\x23\x74\x9a\x5b\x8e\x13\x0a\x99\xf9\x7f\x22\xd5\x71\xea\x91\xe8\x4d\x1f\x18\xdc\x5a\x23\x52\xb8\x2d\xb3\x90\x20\x9a\x31\xf0\x3d\xd6\x6a\x31\xe1\x7b\x68\xd5\x41\xdb\x07\x0e\x84\xb4\xc3\xdb\xc4\xae\xee\xf3\x22\x28\x7e\xad\x2d\xbe\xb8\x75\x19\xe1\x98\xad\xa6\x84\x77\x9d\x08\xe1\xd1\xbc\x28\x87\x13\x49\xde\x1c\xb8\xea\x2c\x6f\x57\x1e\xf4\x83\x41\x71\xfe\x70\xfb\xd7\xa8\xf1\x84\x7d\x3c\x9e\x7c\xdb\xb8\x65\x09\x0b\x74\xdb\x68\x47\x85\x35\xe1\xd9\xb6\x0f\xbb\xee\x1e\x2a\x27\x44\x1a\x3f\x8a\xf8\x87\xfb\x77\x57\x1c\x69\x7e\xbe\x99\x05\x1b\xbe\x3f\x12\x4c\x58\x09\x41\xb8\xff\x86\xcf\xbf\x91\x65\xb0\xd0\xb9\x7d\x2d\x31\xff\x27\x42\x13\xe2\xbc\xf5\x77\x54\x71\xe0\xda\xd2\x05\xe3\x02\xdc\xcb\x08\x9f\x2e\x4e\x39\xbd\xf4\x4c\x36\x0b\x77\xd3\x4d\xba\x06\xa9\x8c\x63\xa4\xf6\x5c\xcd\xf0\x66\xa6\x0c\x21\x52\x76\xf7\x8b\x31\xfe\xe3\x2c\x98\x96\x04\xac\xae\x7e\x56\x41\xe0\x8b\x0e\x5c\xe5\xe9\x3b\xc2\x20\x2b\xd0\x63\xfa\x59\x91\x89\xc4\xc6\xd4\xca\x36\xe3\xe7\x62\x4d\x0c\x8a\xbd\xf4\xbd\x84\x5d\x66\x10\x92\xa2\x94\x9c\x25\x1e\x08\x13\xc2\x0c\x5f\x2f\x5b\xae\x72\x8e\x05\xc3\xf8\xca\x6f\x77\x6e\xdd\x24\x6c\xdc\x62\x7f\xe7\xda\xfc\x2c\x16\x8e\x54\x7d\x7a\xf3\x38\xff\x02\x61\xea\x8a\x7d\x3a\xb5\x0b\x6a\x08\xa2\x37\xe4\xae\x58\x45\x15\x11\xce\xfd\x5a\xe7\xfb\xc5\x31\x88\xc0\xed\x7f\x51\x6a\x7c\x7b\x25\x0b\xdd\x22\x37\x25\x6d\x12\xcc\x58\xec\x51\x48\x52\xe3\x4b\xd7\x68\x49\x42\x21\xb3\x54\xda\x71\xca\x36\xc2\x2d\xee\x47\x93\x73\x66\x58\x11\x64\xf8\x6e\x49\x1e\xd5\xfd\xbb\xee\x3d\x8b\x28\x1a\x95\x99\x41\xe0\x0f\xf1\xb7\x71\xf1\x4d\x27\x54\x67\x70\x9f\x9e\xa2\xbd\x9d\xb0\x26\xcf\x57\x6a\x9d\x77\x2a\x61\x93\xf1\x81\xf0\xe1\x28\x1f\x42\x40\x9c\x02\xff\x72\x91\x08\x8e\x32\x14\xff\x72\xf7\xa0\x8e\x28\xe1\xcb\xa9\xc8\x4f\x19\xea\xd1\x84\x2b\x9f\x8d\xb7\x1b\x1b\xe6\x12\x2c\x2b\x92\x22\x55\xa6\x17\xb0\x60\x7c\xe6\xdb\x9f\x8f\x12\x8f\x08\x13\x32\xc7\x6d\xe5\xbf\x73\x9e\x90\xf6\x6a\xff\xbd\xc5\x4d\x8b\x09\x0e\x4e\x0b\x8e\x84\x58\xc4\x10\x92\x74\x07\x65\x46\xf7\x39\xb3\x60\xe4\x9b\x6a\x72\x3d\x7e\x13\xe1\x52\x0d\xad\x09\x0d\x5f\xc7\xc2\x42\x9b\x63\xb5\xcb\x16\x5a\x13\x1b\xb6\xe7\xad\xef\x4c\x0d\x1c\x66\xd0\xb4\x29\xde\x7c\xd3\x54\x03\xc2\xb5\xd3\xa2\xfc\x23\x02\xba\x04\x6a\xda\xd7\xb4\xbc\x44\x86\x70\x24\x68\x6d\xc7\xfc\xcb\x02\x84\x05\x93\x76\x1d\xe8\x9c\x33\xc2\x60\x69\x5d\x7c\xf7\xa7\xda\x18\x62\x03\x3a\x0a\xad\x6d\x3a\x92\x84\xdd\x12\x23\xb2\x43\xdd\x17\x08\x0f\xcb\x8d\x22\xd1\xdb\xc5\xc0\xa0\xf2\xf0\x72\xaf\x1e\x39\x62\xc3\xbf\xf0\xe1\xe1\x04\xcd\xc6\x2a\x94\xef\xb0\x0e\x19\xd3\x9b\x46\xa8\x3b\x3d\x23\x2c\x32\x26\x89\xb0\x45\xaa\x50\x87\xff\xfa\x0a\x42\xc4\xed\xc7\x0e\xbc\xeb\x6c\x09\x52\xaf\x94\xf6\xf8\x7f\x33\x24\xc4\x0e\xf4\x67\x70\xcd\x72\x26\xb8\xe9\xca\xe4\xda\x97\x2c\x22\xec\x59\xd0\x54\x57\x75\x5d\x97\xf0\xbb\xc2\xe4\xb6\x67\xdd\x44\x02\x57\xe7\x8b\xce\x8b\xb9\xc7\x08\xc1\xaa\xc5\xa5\xb3\x24\xcc\x39\x30\xa1\xac\x43\xbc\x9f\xf5\x8e\xc1\xa7\xe5\x59\xf2\x7e\x37\x7d\x08\xcb\x3f\x0f\x9c\xb2\x38\xf2\x80\xd0\x51\xa0\x7c\x57\x85\xa9\x65\xe1\x6d\xa0\xc9\x06\xe5\x86\x2e\x16\x56\xb1\xde\xbe\xb6\x0e\xbf\x4d\xe8\xb9\xd0\x29\xdd\x71\x26\x8d\x70\xec\x8a\xbc\xcd\x7a\x67\x49\xc2\xd6\x77\x43\x67\x06\xc2\x6b\x08\xef\xce\x15\xea\xa8\xac\xaa\x21\xc8\x7c\xcd\x3f\x56\xd8\x53\x4d\xf8\xb3\x2d\xf9\xe6\x6e\xeb\x1a\x42\xf1\xf9\x7b\x35\xf3\x57\xd6\x12\xcc\x17\x07\xce\x3c\x95\xab\x45\xf0\xf4\x12\xbb\xea\xba\x5e\x89\xa0\xf8\x3b\xd1\xbb\x63\x74\x02\x61\x9b\xe5\xb1\xee\x4f\x9a\xd9\x84\x4d\xbd\x35\x9f\x6b\x58\x17\x09\x02\x0f\xb7\x73\x85\x9c\x58\x40\x60\xad\xa2\x6f\x53\x0e\xf6\x33\xd0\x68\xa8\xa8\x7a\xf2\xa6\x8e\x85\xab\x3a\x6b\xb9\x85\x7e\xd5\x12\xf2\xee\x6f\x1c\x10\xda\xd5\x47\xe0\xe2\x69\x72\xd3\xb8\xd2\x4b\xf0\x98\x38\x71\xd1\xa3\xd6\x67\x84\x4d\xc9\xdd\xe2\x87\x0f\x9f\x67\x41\x67\xf2\xf3\x76\xad\x86\x1a\xc2\x83\x26\xed\xa7\x49\x0d\xed\x84\x0f\x03\xb5\xaf\x3b\xaa\xd7\xb2\xe0\x39\xd5\xb7\x70\xde\xa4\x4f\x04\x53\xaf\xaa\x79\xbb\xad\xde\x13\xbc\x66\x3c\x7c\x27\x9f\x91\x43\x48\x10\x95\x5e\xb5\xa0\xe4\x16\x01\xd3\xfc\xef\xf7\x1f\xca\x21\x3c\xf9\xfe\xc8\x72\xc6\x9e\x4e\xfa\xff\x18\xf9\xf3\x60\x2e\xdf\x3f\xee\xff\x4f\xa5\x44\x0b\x22\xad\xa2\x14\x51\xc8\x1a\xd5\xf9\x94\x25\x91\x25\x6b\x96\xb2\x45\x8a\xa4\x28\x69\x57\xb6\x8a\x92\xad\x45\x88\x64\x69\x41\x64\xdf\x5e\xb6\x28\x4b\x49\x94\x0a\x95\x44\x1b\x51\xe1\xa1\xa2\xdf\x78\xcf\x6f\x3e\x5e\xd7\x5c\xcd\x35\xdf\xff\x6e\x73\x7f\x1e\x33\x66\xcc\x79\x1e\xe7\x71\xfc\xf3\xc2\x19\xc5\x07\x22\x2e\x03\xdb\x58\xa8\x3d\x9f\x1d\x69\x79\xba\x82\x85\xe5\x0a\xf7\x62\x7d\x13\x3a\x19\xf8\xba\x64\x68\x8f\x3c\xd1\x25\x94\x39\x3a\x6c\x6e\x58\xae\x46\x98\xf8\xf5\xc3\xfe\x93\x52\x37\x08\x19\x0f\x9c\x8f\xe7\x5b\xdf\x65\xc3\xce\xc3\x67\xa4\x45\xb7\xa9\x13\xfc\x92\x1f\x2b\xbb\xee\x70\x24\xfc\x35\x15\xdc\xec\x38\x51\x85\x40\x85\xdc\x0a\xaf\x86\x45\x09\xe7\x9d\x03\xd5\x39\x9d\xe6\x11\x1c\xfd\xc4\xf5\x1b\x8b\xb9\x08\x53\x2e\xbb\x5a\x26\x7e\x0b\x26\xb8\x28\x78\x3d\xc8\x4e\xad\x66\xc0\xe2\x7b\x18\x56\x69\x6a\x43\xb8\xac\xee\x96\xb5\x73\x83\x06\x61\x20\x53\x6c\x5e\x70\x4e\x21\xa1\xe4\xf2\xab\x5e\xad\x23\xd5\x0c\x84\x8c\x82\xdf\x2b\x8b\xdd\x27\x3c\x76\xeb\xb4\xb0\x6a\x57\x23\x9c\xcd\xce\x71\x3a\x6c\x2f\x42\xf0\x75\xbb\xdc\x25\x12\x38\xc4\x40\x6b\x93\xe9\x88\x56\xc2\x6c\xc2\x25\x95\xcd\xad\xb9\xa1\x51\x04\x4f\xa3\x7a\x59\x49\x0e\x53\xc2\x93\xd5\xd3\x5a\x05\x4f\x7e\x24\xe8\xec\x3c\x37\x4d\x7d\xfb\x10\x03\xdf\xec\x5b\xdb\x46\x16\xbe\x67\xf0\xf2\xb7\xd1\xdd\xfc\x75\xb2\x84\xe4\x16\xb7\x97\x3e\xf1\x92\x6c\x50\xdd\x65\xf6\x62\xf9\x99\xb6\x12\x98\x7b\xbd\xde\x3b\x61\xb7\x22\xe1\xd3\xfa\x45\xce\xa7\x3c\x1c\x09\x6d\xf3\xbe\xa6\x27\x28\x6b\x13\x04\x02\x3d\x2f\x1a\xca\x08\x11\x96\x88\x25\x2b\x96\x5e\xb1\x25\x7c\x4c\x72\x1d\x39\x6f\x58\x47\xe8\x99\x3a\x31\xb7\x26\x22\x99\x85\xf9\x0e\xc1\x7f\x6d\x24\x4b\x08\x52\xf6\xcb\x3f\xa6\x69\x54\x13\x2c\x32\xaf\xa6\xff\xd9\x5e\x4d\x68\x52\x19\x48\xb2\x5c\x59\x4a\x48\x23\x81\xbe\x34\x61\x0b\x42\x40\xef\x42\x4b\x19\x3d\x6e\x42\x5d\x76\xf4\x39\x89\xe8\x7d\x04\x39\x47\xdf\xed\xb5\x19\x3c\x84\xf4\x96\xa4\x92\x4b\x49\x1c\x04\xe9\x25\xcb\x6b\xd5\x1f\x1c\x64\x03\x85\xbf\xbf\x7a\xe2\x6e\x31\xe1\xeb\x9c\xbd\x3b\x64\xaf\x64\x10\x16\x38\x4f\xbf\xad\x62\x51\x4a\x68\x9c\xfd\xeb\x90\x50\x5a\x12\xc1\xec\x64\xaf\x86\xa4\x68\x2b\xe1\xe6\xba\x03\x2f\xe2\x03\x2f\x13\xcc\x2f\x74\xbd\xae\x95\xf7\x27\x48\xdd\x2f\xf8\xc9\xb1\x6c\x35\x41\xb4\x50\x5c\xe5\x75\x1a\x2f\xe1\xf8\xdf\x9e\x24\x61\xde\x89\x84\xe8\x2a\xd7\x87\x79\x12\x07\x09\x77\x7d\x0e\x1c\xe1\x0a\x70\x27\x2c\xb7\x78\xe6\xfd\x83\xff\x32\x21\xcc\xc4\xe4\x55\xec\x41\x25\x82\xcb\x46\xf2\x7f\xa2\x94\x48\x90\x36\x5d\xa7\x60\xb9\xdb\x9c\x90\xbd\x65\xd8\x78\xd2\xc3\x46\xc2\xe1\xb9\x3d\x25\xf9\xed\xe5\x84\x0b\xeb\x45\xb8\x38\xbf\x14\xb2\xf0\xce\x83\xd3\x27\x24\xbe\x8c\x60\xa3\x28\xf6\x44\x36\x7c\x2b\x21\x3b\xf5\xd4\xd5\x03\x55\x62\x84\xbd\xaa\x82\xaf\xf9\xbd\x52\x59\x10\x95\xba\xe6\xdb\xfe\xe0\x19\xe1\x68\xe7\x80\xb1\x50\x49\x19\x61\xc9\xea\x11\xe9\x19\x6b\x9e\x11\x32\xd2\xab\x3d\x5e\x8f\x8d\x0c\x5c\x0a\x8d\xb3\x79\xf7\x11\xbc\x1d\x9a\x24\x9e\x7e\x8d\x67\x61\xd4\xac\xef\xf2\xd4\xe0\x32\x42\x8d\x01\xf9\xcc\x79\x2e\x4e\xf8\xe3\x13\x12\x7d\xea\x99\x37\x41\xbd\x20\xea\x4b\x0b\xf7\x04\x42\xbd\xb0\x51\x54\xfd\x4c\x4d\x82\xb4\x8d\xfe\xf6\x89\xc1\xcb\x08\xda\x46\x53\x52\x32\xae\x2d\x20\x6c\x7c\xe8\xa6\xf6\xec\xcd\x12\x42\xde\x36\xdb\x33\x1c\x31\x82\x84\xbf\x1c\x36\xf9\x1a\xce\x6f\x18\x78\xdd\x2c\x8a\x77\xef\xb1\x20\x78\x34\x3f\x5e\x98\x2c\xf6\x91\xc1\x21\x5b\x21\xe7\xb9\x9b\xa2\x69\x1c\x9a\x5f\x7a\xe6\xff\xf0\xe8\x64\xc0\x5f\x89\xef\xe1\xc6\x93\x08\xb9\xbe\x7c\x96\xa7\xb1\x8e\x90\x7c\x7d\x76\xd8\xc7\x79\x2c\xc2\xb9\xa8\x88\xef\x5d\x63\xd8\xee\xd4\xd1\x6f\x63\x97\x41\xd8\x2f\xcd\x94\xfe\x37\x5a\x3f\xf4\xf2\xc8\xa3\x8e\x6d\xff\x42\xdd\xbb\x3f\xdc\x0f\xae\x1d\x27\x28\x9d\xdb\x20\xd4\x29\xcc\x47\x38\xc1\x69\xf4\x78\xca\xd2\x12\x82\xc0\xa2\x2c\xca\xab\x2c\x25\x9c\x69\xf2\xee\x8a\x29\x89\x23\x74\x2d\xd2\xa4\xbb\x5f\x4a\x09\x4e\xf3\x06\x8c\x6f\xd4\x47\x13\xaa\x96\x62\x7a\x5d\x4c\x02\x0b\xf3\x15\xc2\xb3\xec\xda\x9d\x09\x5e\x27\x73\x1b\x5e\xaf\xcd\x27\xe8\x7c\xb5\xb6\x2d\xbc\x1b\x4a\x90\xdf\xb3\x50\x59\x80\xff\x11\x0b\x96\xe6\x82\x03\x1c\x9d\xcb\x08\x89\x91\x37\x0f\xbf\x11\x08\x23\xec\x8a\x4e\x39\xa5\xa6\x1e\x46\xb0\x39\xb9\xf0\xb2\xe7\x51\x59\x82\xd0\xd6\x97\xd9\xc6\x6e\x2a\x84\x0f\xd6\x0b\xf5\x36\xdc\x49\x66\x41\x7d\x16\x4f\xe6\xbe\x19\x1c\x84\x86\x46\xcd\x56\x9f\xf3\xdb\x09\x26\x09\x9e\x5f\x04\x77\xcc\x27\x4c\xe4\x28\x7d\x71\xf5\xab\x2e\xe1\xd3\x84\x7b\x42\x9d\xd1\x62\x6c\x70\xf0\x58\xd1\x26\xa5\xcf\x49\xb8\xb9\xd8\x48\xe2\xc6\xc2\x4d\x04\x07\xb9\xab\x9b\x66\xac\x15\x23\xe8\xfc\xd9\xe4\x63\xa0\x77\x98\x90\x24\xd9\x52\x3d\x7b\x63\x28\x41\xfb\xa8\xde\x4a\x3d\xc1\x53\x84\x3c\x07\xd1\x7b\x8a\x1c\x96\x84\x1c\x49\x67\x15\xb3\xaf\x12\x04\x8b\x74\x21\x95\xdf\xd6\xc2\x84\x49\xba\x31\xbc\x6f\xf3\x26\x12\x26\x9e\xd8\x29\x30\xb3\xdc\x9e\x70\x32\xb7\x4c\xc6\xa2\xe7\x2d\xe1\xe8\xd9\xcf\x59\xbc\x56\xb1\x84\xce\xca\xde\x83\x5b\xf8\xae\xb3\x90\xa9\xb6\xf1\x90\x92\x50\x30\xe1\x4d\x80\x7d\xab\x86\x6d\x1c\xa1\x76\x67\x7f\x60\x29\x77\x35\x41\x76\x51\x6b\x62\x46\x89\x02\x21\x24\x71\x78\x95\xea\x41\x45\x82\x0c\x7f\xe9\xcb\xd4\xc2\xfd\x04\xa1\xef\xa5\x75\x25\xcf\x6f\x12\x36\x71\x5e\x12\xf3\x9a\xc2\x4b\x38\x75\x60\x8b\x99\xc8\x9f\xbf\xcc\x38\x22\x07\x28\xfa\xec\x2a\x0f\x1a\xc7\x82\xca\xc0\x19\xbb\x6a\xa7\x12\xb6\xab\x9c\x9b\x6c\xb7\x5d\x81\x60\x7e\x74\x43\x76\xf1\x2e\x0d\xc2\xe6\x47\x2b\xc3\x7c\x57\xd8\x13\xd2\x79\x0a\xbb\x2b\xaf\x4b\xb1\xe1\xec\xf1\xed\x6d\xe2\x6d\xb2\x84\x5f\x0d\x59\x51\x35\x45\x9b\xd9\xca\xff\xa0\xd7\x33\xbd\x64\x6a\xf6\x61\xc2\xd2\x3b\x7d\xe7\x5b\xb5\x8e\x11\x06\xf7\xaf\xa5\xef\x7a\xf9\x6c\x23\xde\xbd\x4f\x0e\xdc\xe1\xda\x4e\xd8\xbc\xd6\x7c\x76\x54\xe6\x1c\xc2\xbd\xd9\xa6\x65\x33\x26\x58\x8e\x7d\x6e\x3c\x39\x47\xce\x0b\x11\x82\x57\xdd\xb4\x55\x95\xe1\x23\x3c\xac\x14\x3a\x99\x3c\x6b\x3d\xe1\x7e\x50\xfa\xf0\xa4\xf3\xef\x59\xe3\x65\x90\x37\x6b\xc1\x0b\xeb\xa7\x0c\x76\xa6\x06\x7e\xff\x33\xd1\x84\x20\x67\x34\x71\x51\xc0\x34\x27\x36\x5c\xe2\x8f\x5b\xb2\x20\x6c\x39\xa1\xf3\x71\xe8\x4f\xa9\x73\x4b\x09\x7d\x81\xb7\xf6\xef\x55\x96\x26\xc8\x17\x9d\x88\x33\xe7\x16\x21\x1c\xa8\x6e\x7c\xb3\xf1\x74\x1f\x83\x66\xd6\x80\x67\xcc\x45\x17\x82\xcd\x8b\x45\xfa\x56\x8e\xf5\xac\xf1\x12\x1d\xa6\x23\xad\x28\xa8\xc8\x86\x3d\x5f\x96\xda\x58\xad\xd1\x20\xc0\x78\xc0\xfa\xef\x2b\x4b\xc2\xa4\x19\xb6\x2e\xd3\x97\xed\x67\x2b\x13\xef\x3f\x0f\x3b\x30\xc8\x4b\x10\x8a\x77\x2e\xd8\xf4\x61\x2b\x5b\x51\x89\x8f\x78\xea\x17\xf3\xa9\x04\xeb\x42\xe4\x5c\xfa\xbe\x74\x30\xc8\x7c\xc2\xf1\x60\xef\xf4\x2e\x06\xc1\x95\x6b\x9d\x78\xc5\x04\xe9\xff\x85\xe5\x31\xc6\x1e\xaf\x33\x27\x10\x24\x97\x6f\xfe\x64\x5d\x2c\x4c\xb8\xa8\xff\x32\xdf\xae\xde\x92\xd0\x32\xb0\xb5\xf9\x91\xba\x02\x41\x87\x67\xeb\xba\xb3\x59\x42\x84\x94\x49\x5c\x3a\x65\xef\xa6\x10\x8c\xd4\x37\x6a\xbb\x95\x1a\x10\x5e\xad\xff\x92\xa0\xeb\x67\x40\x98\xcf\xdb\x96\x14\x1d\xe2\x41\x88\xdb\x25\x97\x5d\xf7\xe0\x02\xe1\x87\x8b\xb9\xec\x99\x8d\x82\x84\x27\x85\x46\x0e\x39\x4f\x25\x09\xf7\x35\xb6\x6a\xae\x2d\x53\x26\x58\xa7\x6f\xb1\x52\xbb\xa8\x41\xc8\x4a\xdd\x25\xa0\xf9\xca\x9a\x90\x57\x6a\x72\xc7\xc3\x50\x9a\x50\x6a\x26\x62\x5d\x7e\xc8\x82\x70\xc9\x55\xd0\x3e\x50\x5d\x93\x30\xf1\xdc\xf0\x3e\x29\xbf\x02\xc2\x94\x4b\x2a\x4e\x05\x26\x05\x84\x2a\x9d\x05\xd3\x2c\xbc\xd7\x10\xa6\x15\x3f\x30\x57\x08\x23\xc2\x99\x27\xe7\x57\xf5\xff\xa8\x26\x0c\x8f\x94\x8a\x1e\x48\xcc\x20\xc4\x1f\x6a\xdf\x25\xfe\xa1\x81\x85\xbe\x67\x8e\x4b\x9e\xa5\xdc\x27\x54\xda\x45\x24\xd4\xd4\xa9\x11\x74\xb3\xa6\x2d\x3e\x0d\x4e\xc2\x32\x3b\xb5\xe4\xe7\xcb\xbf\x30\x58\xf1\x5a\x29\xeb\x97\x4c\x77\x09\x62\xe4\xcd\x73\xb8\xcd\x57\x12\xe6\xcf\x5a\xae\x56\x2e\xb1\x8c\x30\x95\x87\x67\xc2\xed\xba\xb1\xab\x50\xdb\xcf\x03\x3b\x7d\xe2\x08\x1e\x57\x3f\x15\x1a\x7c\xdc\x4a\xe8\xd2\x6b\x59\x5d\x76\x7e\x0d\xc1\xeb\x48\xc2\xb4\x8b\x9f\xd7\x10\xca\xac\x46\xc3\x22\xae\x2b\x13\xe8\x48\xa8\xd8\x96\x24\x51\x82\x58\x82\x03\xcf\x9f\x79\xa2\x84\xa2\xee\x37\xb2\xa6\x09\x99\x2c\xa8\xad\xd8\xad\x7d\x42\xff\x1a\x21\x38\x70\x68\x29\x7f\xf3\x36\x42\xb6\x94\xdc\x9a\x5e\xa3\x04\xc2\xb6\xfe\xd5\xc2\x3b\x16\x79\x13\xac\x1e\x71\x55\x63\xf2\x1d\x16\xee\x89\x0d\x16\xc5\xa5\x1f\x24\x74\xef\xf2\x5c\x7a\x6f\x6c\xc3\xaf\x9f\x3f\x45\x60\xc3\xf5\x5c\xc2\xb1\xb9\xaf\xdf\x4f\xbb\x13\x4b\x50\x4d\x7a\x3b\xc7\x82\x37\x8c\xb0\xf4\x50\x33\xf7\xfa\x0b\x21\x04\x55\x7b\x91\x3f\x2b\xa2\xfd\x08\xf3\xb9\x05\x38\x8d\xa4\xeb\x59\x48\xe9\x63\xc9\xf7\xbb\xfb\x13\x8c\xca\x4e\xfb\x6c\x4a\x39\x46\xd8\x1a\xdf\x5e\x1e\xf7\xc2\x87\x85\xb6\x7b\x3b\x75\x1e\x4e\xe1\x27\x7c\x38\x21\xba\x5d\xf4\x55\x33\x03\xa9\xce\x00\xf3\x80\x37\xfc\x34\x8e\xa5\x9d\xf3\xf5\x4b\x74\x0c\x08\xdb\xb3\xb7\xf1\x08\x72\x6e\x24\x28\xf9\x55\xdc\xed\xbf\x36\xc0\xe0\x63\xf8\x92\x96\x68\x71\x43\x82\x83\x98\x5e\x52\xf0\x0d\x5d\x82\xb6\x9c\x6e\xa8\xaf\x3f\x1f\x1b\xf8\x93\x56\xe9\xbd\x70\x78\xc9\x40\x7e\xf3\x7c\xa3\xf4\xd1\xeb\x84\x07\x13\x7f\xfb\xac\x5b\xe0\x4f\xd0\x7a\xe6\xce\xd3\x63\xd6\x40\x50\x89\xd1\xfc\xfe\x1f\xac\xbe\x69\x0d\xba\x5d\xf5\x25\x8c\xcc\xef\xe3\x1c\xad\xdf\x42\x88\x50\x96\x10\x94\x90\xbe\x4a\xe8\xee\x3b\x71\xc0\x33\xcc\x9f\xb0\xe7\x53\xda\xe1\xb2\x99\xfe\x84\xa5\xcb\x7c\xc4\x8b\xe9\x1e\xc1\xaa\x73\x87\xd3\x04\x5f\x23\x02\x77\xe6\x15\x93\x69\xe2\xef\x19\xdc\xb9\xc2\x51\x52\x3d\x73\x39\x61\x6f\xcc\xc5\x77\x21\xfc\xbb\x58\x98\x63\x7e\x2c\x3c\xa0\x5d\x9b\xe0\xa3\xf2\xe6\x98\x7e\xa0\x2c\x61\xe3\x81\xd0\xb5\x37\x36\xdb\x11\x5c\x4b\x76\x75\x5e\xb1\x95\x26\x4c\x9c\x17\x3a\xed\x49\x8d\x0a\xe1\xba\xd0\x6a\x49\xf3\x77\x4d\x25\x98\x5e\xae\xd3\x6e\x3b\x54\x46\xe3\x38\x24\x77\xc2\xfb\x70\x7a\x01\xc1\x9f\xa7\xb3\xb9\xed\xba\x02\x0b\xc9\x47\x14\xaa\xff\x1b\xb9\xf4\xa5\xc4\xec\x75\xbb\x48\xc8\x1d\x34\x3f\x9c\x63\x12\xc2\x56\xfe\x6f\x60\xb4\xdb\xd8\x66\x89\x28\x21\x3e\x33\x71\xad\xe9\xd6\xed\x04\x9d\xab\x89\x77\x03\x4d\x12\x08\xd7\x4e\x4c\x58\xf1\x59\xca\x99\xd0\x7c\x6d\x91\xbb\xb0\x90\x28\x61\x81\x8f\x69\xc5\xc0\x92\x87\x0c\x0a\x42\x73\x7f\x94\xfa\x7a\x13\x3e\xe7\xae\x8a\x54\xd4\xd6\x22\x38\xa7\xcf\x99\x96\xb5\x6a\x2a\x41\x5f\x22\x7f\x76\xe8\xf0\x24\x02\x7f\x55\x4a\x5f\x67\xff\x37\x06\x62\xc2\x2a\xed\x9e\x15\x1c\x84\x47\x13\x64\x27\x67\xb6\xaa\x12\x84\x4c\x9c\x44\xc5\x0f\x2d\x23\xcc\xb0\x9d\xb7\xff\xa6\xa8\x3a\x21\x1e\x6d\x83\x45\x6a\x2b\x09\xcb\x44\x3a\xef\xf7\x8e\xf2\x11\x0e\x09\x3d\xdf\xb4\x7e\x45\x29\xe1\xc9\x1a\xa7\x51\x0f\xb1\x52\x82\xbf\xc8\xd9\xa2\xeb\x3d\xce\x04\x49\x7e\x1d\x47\x63\x85\x1e\x06\x53\x1a\x85\xab\xf8\x2f\xaa\x12\x5e\x3f\x72\xcb\x8f\xb6\x0e\x23\xcc\x3a\x38\x59\x50\xf3\x44\x36\x0b\x0f\x37\x9a\x4d\xd1\x99\x96\xc7\xc2\xd1\x75\xaf\xa2\xf5\x4e\x65\xb3\xe0\x15\x6c\xdf\x7c\xe0\xad\x07\x61\xd1\xbe\x20\xd9\x1f\xac\x28\x42\x4d\xc4\x6e\xe6\xcb\x51\x35\xc2\x3d\x7b\x66\x8e\xe9\xdd\x58\xc2\x8c\xb5\xef\xbb\xc3\x86\x56\x11\x7c\xd5\x06\x1b\x8e\xb5\xce\x21\x3c\x7d\xbe\xc0\x40\x67\xfa\x61\x42\xdc\xc6\x07\xe9\x53\xdf\xba\x11\x8e\x6c\x55\xae\x96\x36\xf7\x23\xfc\xb2\xac\xd7\x2b\x7f\x93\x49\x58\xd3\xa9\xbc\xb2\xcb\x64\x11\x41\x6f\xc5\x6f\x31\x63\xad\x08\xc2\xdb\x16\x0b\xb9\xba\xfb\x72\x04\xa3\x7c\x97\x27\xaa\x6b\xa4\xd8\x50\xd3\x77\x74\x45\xe3\xfe\xe2\x12\x5c\x97\xae\x33\x10\x29\x76\x60\xe1\xd3\xef\x50\x55\xff\x0d\xc2\x84\x1f\x37\x77\xbb\x34\x07\x6d\x24\xec\x7c\xd7\x6b\xf9\x3e\x55\xe9\x5f\xb8\x95\xc7\xf7\x3d\x6a\x6e\x33\xc1\xe6\xc8\xac\x6e\x9e\x80\x67\x84\xd1\x16\xad\x74\xaf\x1f\xb7\x09\x9a\xf3\xdc\xa7\x1e\x1e\x43\x8b\xeb\xf4\xc5\x55\xf5\x27\x08\x8a\x1f\xd7\xfb\x26\x6b\x1c\x24\x6c\x72\x9c\xf3\xcc\x9e\xe3\x27\x83\xf4\x1e\x3d\x3f\x2d\xa5\x7d\x2c\x28\x57\x1c\x7f\xd7\xce\x57\xc0\xc2\xf4\xbb\x35\xd7\x47\x26\x9a\x97\xc0\xd8\x99\x7b\xa8\x20\x86\x9b\xc0\x6f\x65\xef\xbe\x51\x93\x8b\x0d\x15\x12\x29\xad\x2b\xd2\x1a\x4a\xd0\xfe\xdc\xb4\xea\xb7\x9b\x11\xe1\xc0\xa9\x3d\x55\x57\x7d\x4f\x12\x86\x4a\x47\x73\x76\x0b\x94\x12\x4a\x36\x29\x3e\x3b\x32\x67\x3e\x21\x7e\xa1\x6c\xab\xcd\xab\xf5\x84\x9a\x43\x31\x9c\x7f\xd3\x54\x09\x69\xf5\x37\x9e\xa9\x56\xd6\x31\xb0\x4b\xd7\xf5\xed\x4a\x94\x26\xcc\x38\xb5\x4e\x78\xc4\xe5\x00\x1b\xac\x4a\x8f\x4f\x28\x10\x9b\x4d\x70\x9a\x20\x7f\xf2\xcf\xb5\x10\x16\x5e\x2e\x37\x10\x7b\xf5\x20\x85\x85\x78\x66\x64\xc9\x83\xb5\x13\x09\xcd\xa1\x2f\x45\x2b\xc6\xae\x42\xff\xc3\x42\xf9\x3c\xe7\x62\x53\x56\x09\x16\x5c\xbe\xd6\x1f\x9b\x53\x4c\xc8\x11\x7c\xbc\x2c\xdb\x53\x8c\xc0\xab\x1f\xb2\xf6\xb7\x55\x26\x41\xe7\x57\x63\x50\xc4\x9e\x10\xd6\x78\x09\xfe\xcd\xe5\xa7\x50\xaa\x45\x48\x8f\xe6\xc9\xb9\x3d\xe5\x22\x41\xa0\x53\xa4\xfe\x3f\x3c\xe0\x0b\xab\x5e\xf0\xc7\x80\x70\x8a\xa9\xfb\xce\xb5\xa8\x83\x70\xce\xc7\x2d\x8a\xe7\x69\x03\xe1\xb7\xdf\xed\xa8\xad\xac\x05\x84\xa8\xfe\xed\xdb\x1e\x34\x0d\x30\x10\xde\xec\x7a\xaf\xe8\xbe\x24\x41\xb9\x29\x6d\xe2\x86\x01\x2e\xc2\xfd\xad\x13\xaa\x82\xa2\x6f\x11\xe6\x9c\x36\x6c\xb3\xbf\x71\x8b\x30\xad\x40\xe3\x40\x54\xe2\x03\xc2\x5b\xde\x23\x3c\x0e\x63\xe5\x7f\x90\x8b\xbd\xf7\x5b\x71\x99\x11\x1b\x46\x84\xb9\x97\x75\x8f\x7d\x77\xfe\x07\x87\x21\xf5\x9e\xb6\x1f\x49\x04\xad\xd8\x96\xb5\x83\x4e\x1e\x2c\xdc\x54\xee\xb9\xa5\x3b\xbb\x8c\x60\xb9\x31\x36\x71\xc3\x04\x0b\xc2\xad\x17\xd6\x99\xed\x65\x59\x2c\xdc\x38\xab\xb4\xa8\x75\xd5\x45\x1a\x87\x7d\xa8\x4d\xa5\x75\xfd\x51\x42\x53\x89\x89\xdf\x5e\x97\xb1\xcf\x0d\xcf\xfa\x76\xe1\xfc\x21\x66\x1c\x8b\x86\x0f\xb8\x98\x09\x4e\x26\x7c\xf2\x94\x5f\x5c\x9b\x3c\x95\x30\xcd\xaa\x20\x4d\x5a\x74\x0e\x21\x5c\xf3\xde\x85\xd8\x30\x77\x82\x50\x5e\xfb\xa5\x77\xd9\xbb\x09\x99\x95\x5a\x2f\x5a\xde\x27\x13\xf6\x73\x5a\xf2\x4c\xbc\x93\x47\xd8\xb6\x61\x4a\x7b\xc8\xe9\x97\x2c\x74\x6d\x5d\xe6\xb4\xcb\x5c\x84\x60\x2f\x7e\xdd\xb3\xd2\xc1\x9f\x85\xc7\x1d\xab\xb2\x24\x79\xb2\x08\x13\xd5\x9a\x65\x4e\x1f\x7b\x4e\xd0\x3d\xed\x9a\xec\x33\x06\x79\x49\x8d\xda\xff\x46\x9a\x7e\x1b\x8f\x69\xbd\xdb\xcb\x86\x33\x0d\x61\xce\x22\x1b\xdf\x33\x70\x3c\x50\x19\xd9\xd0\x92\x4c\x68\xcf\xbd\x2e\xa7\x1b\x5b\x48\xb8\x91\xde\x74\x50\xf3\x91\x0e\x61\xdf\xf7\xed\xf9\x4e\x7b\x75\x08\x9f\x7f\x5d\x7d\xf9\x30\x20\xae\x04\x0f\xe4\x1d\x0e\xeb\x0c\x26\x11\x2e\x19\x09\x4b\xcb\xb4\x6e\x21\x5c\xb4\x7c\xed\xd8\x34\x79\x2e\x61\xbb\xb2\x7b\xe4\x34\x1f\x39\x36\x98\xab\x95\xed\x99\x68\x39\x89\x05\xd1\xf2\x29\xc7\xba\xfc\x53\x09\x03\xe7\x7f\x3c\x0e\x1d\xfb\x52\xfb\xf5\x87\xd8\xcd\xde\xd3\x40\x30\xfa\x7b\x64\xc5\xf7\x74\x16\xc1\xfd\x6c\xee\x8b\x33\xf7\x5b\x59\xd8\x64\x97\x50\xf0\xed\x4e\x34\xe1\x81\xc3\x42\x8f\xdd\xe2\xf1\x04\x81\xfd\x4e\xda\xeb\x5e\x99\x12\x4e\xda\xbe\x1b\x79\xf1\xe2\x3c\x61\x4f\xe4\xfc\xd4\x82\xdb\x67\x59\xc8\x8b\x3d\x7d\x3c\x28\xeb\x11\xc1\xc8\x6c\x82\x76\xc8\x18\x1e\x98\x7e\xba\x1e\x9b\x1c\x4c\xc3\xdd\xd2\x41\xeb\x59\x19\x84\x4b\xeb\xc2\xd6\x28\x39\x25\x13\xe0\x9d\x72\xfe\xe8\xf5\x75\x04\x6e\xce\xcd\x56\x22\xc5\xa2\x84\x9e\x4a\xa9\xa9\xbe\x2f\xcd\x08\x6d\xcb\x16\x3d\xbb\xbb\x6e\x36\x61\xfd\x7d\x07\xfd\xd6\xeb\xdf\x19\x9c\x5c\x15\xb6\x5b\x6f\x44\x88\x20\x3e\x65\xfb\xb1\x57\x4b\x8c\xfe\x85\xf5\xde\xb9\x89\x3c\x2b\x96\x12\x86\xea\xbe\x5e\xf9\xdc\x62\x47\x68\x9f\xfc\x2a\xaa\xfe\x2d\x27\xe1\x78\xa6\x9c\x76\x84\x91\xde\xff\x13\xde\xfd\x53\xce\xae\x7e\xb8\x81\x90\x68\xfc\xc6\x41\xfc\x76\x01\x81\xcb\x2d\x65\xd1\x99\xc6\x02\x82\xc2\x87\xc3\xb7\xb9\x35\xd6\x11\x82\x6e\xb5\xec\x7d\xb2\x78\x31\xe1\xd5\xea\x2b\x05\x05\x0f\x47\x19\xd8\x86\x5b\xfe\x6a\x98\xc4\x4b\xb8\xf0\x35\x88\xa1\x3d\xa7\x08\x11\xfa\x14\x69\xbf\xd9\x8b\x90\x28\xaf\xc4\x59\xbb\x45\x8e\xa0\x62\x36\x3f\xf1\x6a\xfc\x1c\x42\xec\xbe\x67\x26\x99\x86\x92\x04\xe7\xca\xec\x00\xdd\x9e\x0c\x42\xc8\x07\xf3\x27\xaf\x5c\x86\x19\x5c\x6c\xb5\x53\x94\x76\xbc\x43\x10\xf9\xde\xbe\xb7\xc6\xf5\x2e\xe1\x46\x46\xcd\xe9\xb9\xef\x77\x10\xba\xf9\xcc\xb7\x4b\x89\xcb\x12\xa8\xe3\x5c\xdf\xa3\x23\xe2\x04\x95\xc7\x32\x0b\x23\x9f\xbe\x65\xc6\xb1\x4a\x51\x3e\xd2\x3a\x42\x95\x90\xe9\xd0\x15\x97\x7a\xfe\x36\x21\xa3\x72\xe1\x23\x95\xed\xa5\x04\xe9\xe0\xa3\x5f\x7f\x36\x95\x12\xaa\x5e\x2d\xe8\x4c\x0a\xac\x26\xbc\x58\x6f\xbc\x5b\xfe\xef\x7d\x82\x90\x5d\xb5\xc4\x2f\xfb\x3c\xc2\x06\xbe\xad\x3f\x27\x5e\x4b\x21\xec\x9f\xfa\xc5\x5a\xef\xd7\x13\x42\xd6\xf7\x25\x12\xe9\x29\x4f\x09\x43\x79\x7d\x81\x53\xaf\x36\x13\xc4\x36\xaf\x9f\x3e\xcf\xed\x1c\x61\xe5\x84\x4e\xbb\xf2\x83\x61\x84\xc5\x41\x92\xbd\x37\xa7\x9e\x23\x2c\x76\xbc\x25\x1a\xd1\xe0\x4d\x88\xb2\x97\xce\x9b\xa2\xf5\x88\x70\xef\x4c\xf9\xbb\xf0\xd0\x72\x16\x1e\xd6\xd6\x6b\x1f\x3d\xf8\x94\x85\x22\x25\x8c\x46\x47\xd7\xb2\xb0\xac\xd2\x72\x55\xa4\x59\x3e\x21\xc5\xa5\x7f\x13\xe5\x5f\x20\x7c\x7c\x66\x61\x75\xf7\x42\x39\xe1\xfc\xdf\x95\xf9\xb2\x07\xee\x13\xce\xbe\x42\xab\xcb\x95\x4a\xc2\xbb\xd2\xbe\xce\xc1\x49\x9e\x84\xe5\xd5\x79\xf5\xbd\x9f\x3d\x08\x42\x1b\xaa\x4b\x97\x98\x1d\x22\xcc\xdd\xaf\xb4\x7a\xd6\x40\x2e\xc1\xf0\xb5\x7d\x7c\xe5\xe1\x77\x84\xcc\xad\x9c\x22\xf6\xab\xb2\x08\x9b\x95\xf6\xa8\xbc\x5a\x91\x4f\xb0\x13\xf6\xbe\xe9\x59\xe1\x43\xc0\xe5\xfc\x25\xba\xfc\xe2\x04\xa9\x45\x09\x26\x6b\xe6\x18\x12\x72\xbb\xbc\xb8\xe5\x6a\xf9\x08\x2a\x1f\xdc\x0b\x7f\xdf\x5e\x4e\x98\xfc\x76\x73\xdd\x89\xb7\x5b\x09\x87\x3a\x66\x71\x64\xb8\xde\x24\xa8\xe7\x7c\x88\xff\x2b\x79\x8b\xa0\x3d\xca\x19\xc3\x97\x54\x42\x08\x3a\xf3\xfd\xb6\x7d\x89\x1a\xe1\x40\xe1\x09\xbf\x55\x12\x0a\x84\xb7\x3f\xdd\xf6\x79\x4d\x3e\x46\x30\xae\xac\x68\x9e\xf4\x3c\x83\x10\x97\x61\x2c\x73\xad\x31\x9e\xb0\xfa\xc2\x75\x3b\x0f\x7d\x22\x08\xec\xe4\xee\xaa\xb3\x54\x22\x18\x79\x7f\x7f\xf2\x34\x6a\x0a\x41\xfe\x85\x94\x75\x74\x64\xe4\xff\x13\x1d\xf1\x3f\x74\x0c\xbd\xbb\x18\xa4\x08\xed\x3a\x5d\xf5\x5c\x91\x60\xdf\xf6\x42\xc3\x32\x6b\x3f\xe1\xe2\x3c\x6b\xe1\xd2\x39\x0f\x08\x5b\xbb\x8a\x24\xdc\xee\x9f\x66\x61\xbe\x76\xe8\xfe\xca\xfb\x51\x84\x77\xdf\xad\xd7\x6c\xfc\x16\xc1\xc2\x60\x4e\x57\x86\xda\xf4\xc7\x2c\x68\x74\x88\xed\x51\x92\x4c\x63\x61\x5f\x5d\xf2\xc2\x25\x7c\x9e\x84\x0d\x57\xee\x16\xb7\x28\x68\x10\x66\x9c\xac\x38\xaf\x7d\xe2\x12\xe1\xbe\xd0\x3c\xf1\xef\xcf\x0d\x09\x17\xd6\x77\x18\x05\xa4\x4b\x11\x26\x4f\xf7\x14\x4d\xba\x65\x48\x48\xb9\xa0\xb5\xe8\x9b\x6e\x2e\xe1\xa4\xb3\xc7\xc9\xee\x8c\xd7\x2c\x08\x18\x97\x1c\x2c\x78\xf1\x93\x85\x2d\x91\x46\x9d\x2f\xed\x1e\x13\x3c\xa2\x8f\xd5\xbe\x51\xfd\xc2\xc2\x0f\x89\xaa\xd7\xd9\x19\xe5\x84\x67\xfa\x82\xdc\xb1\x87\x93\x09\xdb\x39\x56\x04\xac\x5f\x9b\x44\xa8\x7f\xad\x95\x14\x6a\x9e\x4a\xb0\x75\xb9\xfe\x66\x87\x47\x3e\x0b\x87\x6e\x5b\x1d\x52\xd7\xbc\xc7\x82\x7b\x99\xe0\x97\xf7\xeb\x92\x09\x5b\x17\xaf\xef\x48\xc9\xca\x20\x14\x35\x3c\x70\x1a\x96\xca\x20\xac\x5f\x19\xdf\xe8\x65\x3e\x99\x60\xf6\x46\x63\xb7\xe4\x01\x3e\x1a\x0e\x5a\xf6\xe7\x73\xa8\x26\x61\x76\x90\x65\xfb\x15\x79\x4d\x82\xbd\x5b\xcc\x8f\x4b\xb6\x3f\x18\x54\xe9\x79\x8d\x44\xe8\xaa\x13\x9c\x39\x5f\x8b\x9b\x45\xad\x22\x2c\x5e\xba\x67\x5d\x9a\xbd\x1a\x1b\x02\x97\xc6\xfc\xdd\xf9\xa5\xa9\x04\x93\xff\x3e\xbc\x77\x60\x7e\x36\xa1\xd4\x24\xb9\x66\x7a\xd0\x6d\x36\x08\x3a\xe6\x77\xff\x31\x0e\x27\xfc\x1a\xce\x9b\x71\xf3\xf3\x16\x42\xc1\x9b\xfc\xe2\x39\x3b\x7f\x33\xf0\x93\x33\x33\xed\xcc\xd4\x66\x2b\xb3\xc4\xef\x3b\x7b\xff\xe2\x22\xbc\x5a\x11\x9b\x7b\xc2\x5e\x84\xb0\xa4\x68\x75\x9d\xc0\x4b\x6f\x82\x69\xc9\xa2\xb5\x11\x66\xad\x04\x6b\xa7\xc7\x43\xca\x87\x9f\x11\x86\x07\x72\xd3\x0c\x13\x26\x12\xf0\x3a\x5b\x2c\x84\x6b\x3d\x61\xfe\xb1\x78\xbe\xe2\x19\x5a\x04\xbb\x3a\x7e\xde\x9c\x74\x05\x42\xa4\x41\x80\x83\x1d\xaf\x3a\xe1\x7d\xbb\x9a\xf4\xf4\x23\x92\x84\xe9\x3a\x05\x3f\x6e\xea\x32\x84\x3b\xc1\x3f\x7d\x02\x57\x36\x13\x8e\x59\xb7\x96\xc9\x59\xa6\x13\x58\x13\x12\x27\xda\xd4\x44\x10\x3c\x15\x8d\x6a\xa5\xf5\x3b\x59\x28\xe8\xba\x75\x51\x4f\xf3\x1e\xe1\x9c\xaa\xcf\xfd\x87\x62\xa9\x84\x08\xaf\xa7\x06\x8b\x5c\x3b\x18\xdc\x5a\xb7\xff\xaf\xd7\x66\x45\x82\xd8\x0c\xdd\x5e\x6f\x17\x75\xc2\xe8\xe0\xe5\x1c\xa7\x9e\xb9\x84\x3d\xe9\xed\x85\x76\x3e\xb3\x08\x66\xb7\x5f\x71\xa4\x5c\xe3\x24\xc4\x8f\x38\x5c\x51\xb1\xb9\x4d\x10\xf6\xbe\x3b\x57\x1c\x97\x08\xb2\x35\x45\x64\x7c\xe7\x05\xe1\xf7\x02\xf1\x52\xf3\x0f\xed\x84\xb0\x73\x7c\x85\x2f\x13\xb2\x08\x6b\x7f\xda\x6e\xaf\x5b\x7c\x8a\xf0\xbe\x73\x47\xc7\xce\x80\x62\x16\x3e\x4c\xe8\x5e\xda\xb1\xb8\x94\x85\x5b\x1e\x67\x2e\xa5\x96\xcb\xb3\x50\x38\x92\x29\x7d\xcf\x6c\x0d\xc1\x22\xad\x7a\x78\xbf\x45\x32\x21\x9f\x5f\xb1\xcd\xde\xc0\x95\x20\x1d\xce\x93\x5e\x7c\xa7\x83\x10\xdf\x18\x67\x9d\x5e\xd6\x41\x38\x93\x75\xbc\x4a\xdd\xd4\x95\x30\xf5\xcb\xdb\xdf\x22\xb7\xc1\x40\xf7\x69\x56\xeb\x9e\xb5\x37\x09\x3f\xb6\x4b\xcb\x0b\x35\x95\x13\x0c\x62\xfd\x27\x3d\x95\x6e\x25\xb8\xdf\x5e\x9a\xb9\xf7\xce\x5b\xc2\x48\xa7\x53\xe2\x99\xb0\x1e\x16\x16\xca\xf1\x3e\x93\xdf\x5f\x31\xf6\xaf\x73\x5f\x7c\x72\x46\x05\x61\xff\xcf\xfb\x9e\x9e\xbd\xce\x84\xc2\x86\x39\xcd\x3a\x62\xbe\x84\xf0\x53\x19\x17\x04\xe2\x83\x09\x2c\xe3\x45\x5b\x7a\xa2\x3c\x08\xfe\x81\xd7\x53\x5a\xd6\x9a\x11\x7a\x0f\x36\x2f\x3e\x33\x49\x98\x30\x52\xf5\x60\x95\xb7\xc1\x3e\x42\xbb\xf4\x92\x56\xaf\x65\x8e\x84\xe5\x15\x45\x92\x2d\x0b\x4b\x09\xf3\x26\x8a\xce\x1b\x5e\x52\x4e\xb8\x56\xcd\x91\x15\xca\x59\x48\x08\x94\xdb\xfa\xfc\xc2\x54\x1f\x42\x67\x8e\xd9\xb7\x33\xfe\x36\x84\x95\xe7\x77\x2c\xe7\xf9\xfa\x8c\x70\xa4\xf8\x04\x57\xe6\xd1\x6a\xb6\xb2\x62\x4f\xe2\x68\xa6\xc7\x16\x82\x38\xff\x9a\xc4\xb3\x92\x3e\x84\xfa\x99\x95\xcb\x0f\x34\xcb\x12\xb6\x54\x70\x0e\xb6\x4a\x96\x12\x5c\x77\xd6\x6c\xbc\x7f\xf0\x13\x03\x23\x15\x5b\x83\xb6\x87\x46\x84\x39\xa3\x5d\x8f\xc2\x17\x10\x21\x25\xd8\x57\xb3\xf7\x90\x12\x61\x61\x40\x42\xa9\x7e\xf8\x0f\x06\xdf\x9b\xe6\xbf\xfe\xb9\xe1\x12\x21\xec\xc0\x56\xbd\xf6\x37\x53\x09\x65\x62\x67\x6c\xb4\xbc\xb7\x10\x22\x47\x1b\x2d\xae\xde\xe1\x22\x54\x0f\x5a\x64\x29\x95\x5c\x63\xc3\xa7\x39\x93\xa4\xad\xce\x1e\x21\x68\x7d\x76\xf7\x90\xbc\x3e\x83\xb0\xf2\xd7\xb9\xb3\x01\x92\x44\xd0\x08\x5d\xb8\x52\xb3\x31\x83\xf0\xbb\xf5\xa5\xde\xfc\xe6\x47\x84\xc0\x0f\xd2\x42\x45\xb5\x85\x84\xf5\x25\xfc\xbb\xb6\xfc\xc8\x60\xa1\xfd\x8f\xf2\xd7\xaa\xb8\x34\x82\x60\x6f\xc2\x71\x0f\xee\x73\x84\x85\x4b\x4e\xd1\x95\xda\xb9\x84\xa6\xa3\x1f\x67\xaf\x2a\x95\x24\xf8\x06\x47\xe5\xb3\x56\x4e\x27\xdc\x55\xbb\x70\x72\x28\x48\x84\xf0\xd1\x5d\x79\xbe\x5e\xbf\x06\xc1\xe5\xf6\x5d\x6f\x75\x13\x6e\x36\xc8\x73\x7d\x79\xdc\x31\xed\x0d\x83\x52\x61\xc5\xfe\xbf\x9e\xcf\x08\x02\x3e\xef\xeb\x03\x2c\x38\x09\x47\x0c\xd4\xf7\xbe\x38\xfc\x9d\xc1\xb6\x81\x3d\x81\xf3\xda\xaa\x08\x3d\x12\x75\xc2\x29\x01\x57\x08\xa5\xca\xf7\x3d\xff\xa4\x9d\x65\x81\x5b\x71\xf5\xd1\x3a\xab\x64\x16\x46\x44\xdc\xec\x9e\x44\x95\x12\xf6\x5c\xbc\x92\xac\x12\xe5\x4e\x28\xaf\x35\xf1\x30\xe1\xcd\x65\xc3\x43\xd9\x46\xe7\x85\x57\x1f\x12\x04\x15\xdf\xcb\xcc\xe3\x3b\xce\x06\x7d\x8b\xbb\x42\x3e\x4b\xc6\xce\xdc\x01\x13\x4d\xcd\xf7\x28\x12\x4e\x5d\x53\x76\x89\x34\x5d\x49\x38\x32\xb2\x76\xb9\xc5\x8e\xc5\x84\x1f\x76\x3a\xa7\xab\x3d\x38\x09\x1b\x05\xea\xad\xef\x5f\x51\x20\xb8\xc8\x04\x1c\x7a\xf2\xfa\x07\x83\x63\x73\xc5\x4a\x8b\x92\xe2\x08\x3a\x93\x25\xa6\x74\xfb\x3b\x11\xe6\x5f\xb2\x51\xbd\xff\xdb\x99\x70\xa5\xe0\x50\xde\x3e\xbd\x3d\x04\xf1\xcd\xf3\xaf\xbc\xfc\xe8\x4a\x70\x7a\xfc\xfe\xf3\xbe\xb2\x97\x84\xd5\x3b\x0e\xbd\xf6\x0d\xf9\x4a\x50\x99\x70\x24\xf0\xe4\x18\x82\xa2\x2a\xef\x3c\xe5\xcb\xff\x17\x7a\xae\x6b\x85\xa6\x69\x79\x11\x1a\x67\x3d\x10\x14\x8b\x60\x11\xe6\xd9\x4e\x6b\x75\x9f\x9d\xc7\x42\xc3\x33\xf9\xef\x73\xce\xdd\x27\xb8\x34\x89\xf2\xd3\x70\x09\xa1\x48\xd7\xcb\x57\x6d\x0c\x83\xa6\x07\xca\x35\xc6\x20\x6f\xeb\x5e\x7d\xbf\xa9\x90\xd0\xf1\xe6\x93\xe2\xe7\xac\x09\x84\xb0\xad\x79\xb2\xef\x46\x94\xd9\xca\xfe\x27\x37\x8d\x76\x15\xf5\x33\xe3\x58\xf5\x3e\x3d\xfb\xef\x5c\x5d\x1a\x87\x42\x87\x8c\x97\xbd\x7c\x1b\x03\xaf\x33\x0e\x13\x7f\x7f\xbb\xcb\x42\xcb\x2d\x75\x7e\xf3\xe5\xa2\x84\xa5\x41\x7f\x7d\x23\x3e\x1c\x23\xb4\x5b\x68\xb8\x88\x57\x75\x10\x8c\x24\x57\xac\xee\xef\xb5\x20\x6c\x9b\x9d\x6a\xd4\x57\x10\xc2\x82\xc6\x13\x8d\x13\xb9\x0b\xe4\x09\x37\xdf\x2d\xf7\x72\x18\x68\x60\x30\x2d\xf6\x9b\xfb\x96\x1d\x7d\x6c\xd0\x5c\xf9\x68\x6f\x30\xf3\x84\xc1\x53\x96\x48\x7b\x6a\xa6\x32\x41\x69\xe6\x91\x67\x32\x97\x96\x10\x6c\xbf\xac\x14\x9a\x65\x5f\x43\xd0\x97\x91\xbd\x1f\x5a\x77\x9c\xd0\xd1\x3b\xf5\x6e\xb5\x94\x34\xa1\xd5\xec\x57\xcf\xce\x00\x86\xc0\x5a\x2e\x57\xae\x34\x76\xd0\x4f\x77\xfe\x59\x7f\xb5\x55\x94\x50\x3d\xe4\xf2\x34\xe5\x9a\x11\x81\xd5\xe6\xed\x9e\xef\x7a\x88\x85\x7e\x89\xbf\xcd\x83\x9e\xda\x84\xbc\xe9\x4f\x13\x2d\xfc\x35\x08\x77\xb2\x1e\x04\x8b\x3a\xeb\x13\x66\x9e\xdf\x92\x60\xb6\xe8\x2a\x1b\x5a\x16\x1c\x7d\xfa\x1f\x12\x6e\x27\xfe\xfd\x3f\xf1\x50\xd9\x50\xed\x0d\xc3\x45\xe8\x6f\x7b\x95\xf5\xe3\xb6\x03\x5b\xf9\xbf\x21\xbd\x24\x60\x65\x4d\x73\x54\x09\x1e\x58\x76\x04\xcc\x96\x5c\x48\x88\xdb\x1e\x16\xf0\x2b\x55\x8f\x0d\x07\xf7\xfc\x5c\xf5\x3b\x62\x09\xe1\xbe\xe5\x43\x95\x5c\x49\x3e\xc2\x3c\x23\xf1\x19\xdb\xe3\x05\x08\xb3\x97\x4e\xfd\x68\x4f\xd2\x84\x70\x89\xc5\x9d\x83\x35\xcb\x08\x07\xfe\x72\xae\xb6\x9c\xb4\x9e\x20\xdd\xb5\x32\x7e\x48\x70\x0d\x61\x77\x6a\xcc\x2d\xb9\xec\xab\x2c\xf8\xf5\x7a\xca\x79\x05\xc9\x11\x0c\x45\x12\xb6\x54\x3d\xdc\x4c\x30\x50\xe6\x7e\x63\x7a\x70\x31\x61\x49\xb3\xd2\x3b\xf5\xcd\x1c\x84\x44\x77\xcb\x85\x37\x1e\xaa\x13\xd4\xd5\x67\x7d\xce\x52\xcf\x62\x70\xc3\x5f\x6b\x7a\x18\xb7\x08\x21\xbc\x7a\x8e\xd2\x1a\x0e\x0e\x36\xf8\x85\x6d\x6a\x8b\x4e\xe6\x23\xe4\x0c\xb5\xc8\x4c\x7e\xa6\x44\xd0\x2b\x28\xdf\x8f\x63\xb3\x08\xe7\xdd\x17\xf9\x18\xe7\x4d\x24\x0c\xef\x95\xf4\xe8\xb9\xd1\xc3\xe0\xec\xcc\xcc\x8a\xf2\xfe\x65\x04\x57\x13\xd7\x11\x09\x4c\x21\xe4\x28\xdc\x74\xaf\xd3\x50\x27\xcc\x9c\x98\xb5\x7a\xd6\x64\x5e\x42\xc1\xb4\x83\x93\x76\x7c\xd8\x4b\x18\x74\xb9\x18\x6d\x9c\xac\x44\x28\xf3\xd5\x7e\xd6\xe0\x28\x4b\xb8\xc7\x5f\xb3\xb1\x77\xd6\x7e\xc2\xae\xdf\x27\x24\x03\x54\x27\x11\xf6\xfe\x5c\x17\x76\xf2\x58\x07\x83\xae\x6c\xcd\xe4\x67\xdd\x93\xe8\x1f\x28\xea\x93\xec\x72\x73\x9a\x48\xb0\x0d\x73\x6c\x3b\x64\xaf\x4e\x18\xf8\xc6\xf0\x5c\x32\x7d\xcb\xe0\xf4\xc2\xd9\x2f\x46\xe6\x4c\x27\x4c\x4a\xac\x35\x0e\xd9\x16\x48\xa8\xe0\x8b\x0a\xce\x5b\x56\xcc\x06\xaf\xfc\x22\xf7\x91\x65\xcd\xcc\x38\x0e\xa7\xbd\x99\xb2\xd3\x73\x31\x8d\x23\xa4\xf3\xf8\x7e\xad\x97\xdd\x0c\x82\xf7\xca\x4a\x5c\xa2\x1f\x0c\xb2\x66\xf4\x3f\xba\x90\x92\x4e\xa8\x28\x9e\x57\xd0\x32\x06\x8b\xd7\x7b\xe7\xbc\x1c\x83\xa1\xf9\xe6\x55\x33\xdf\xee\x60\x2b\x4a\x19\x1d\x5f\xe2\xcf\xd8\x12\x76\x2f\xcd\x10\x4b\xe7\xdc\x46\x90\x65\x16\xbe\xb1\xdf\x63\xcb\x86\x5a\x89\x69\x7f\xbe\x66\xda\x13\xa2\x62\xf3\x9e\x9f\x79\x27\x42\x90\xd8\xd1\xb2\x61\xff\x89\x61\x06\x6a\x89\x52\xab\xb7\x6b\xfd\x65\xf0\x22\x20\xd1\x53\x2f\x50\x8b\xc6\xf1\x7c\x7d\xf0\x17\x93\xce\x84\x12\x8c\xdc\xbc\xaa\x33\xbc\x4e\x9e\x60\xf3\x27\xee\xf0\xb0\x9f\x1f\x0b\x61\xf6\x3e\x7c\xa4\x2a\x40\xa8\xa9\x08\xac\x7d\xa0\xf7\x84\x30\xdd\xf5\x4c\x4e\xe5\x18\x5c\x85\xb8\x36\xfc\x57\xe4\xdd\x93\x9a\xe6\x2f\x7f\xca\x1a\x2f\xb7\xe7\x36\x75\x1c\x7d\x76\xf6\x5f\x38\xc5\xeb\xfe\xc5\x67\xca\x55\x16\x4e\x16\x67\x59\xff\x39\x78\x84\x90\x23\x9b\x17\x60\xe1\xb7\x97\x50\xb9\x72\xc2\xe2\x01\x25\x65\x82\x60\x7d\xec\x6f\xbe\xcf\x2b\x09\x0b\xf3\x63\xad\x16\xc4\x76\x96\x80\x02\xd7\xfb\x85\xac\xaa\x60\xc1\xbb\xa0\x8b\x27\x7d\x6d\x0a\x0b\xb7\xbf\xbe\x5a\x3e\x12\xd9\xc9\xc2\x8c\x96\xb5\xbb\xfe\x2b\xcf\xb8\x15\x67\xcf\x52\x93\x21\x0c\xb7\x88\x9c\x5d\x6a\xcb\x47\x68\x7a\x29\x66\x9e\x11\x3c\xc8\x8c\xa3\x4f\x27\xc7\xe4\xb1\x82\x12\x8d\x63\x45\x99\x47\xa2\xa9\x95\x28\xe1\xb3\xbe\xda\xa6\xf2\x74\x7d\x82\x6b\xd1\x53\x2e\x2d\x9e\x95\x84\xcf\x77\x47\x64\x3d\xb5\x14\x09\xbc\x5f\x2e\x86\x0e\xde\xf5\x63\xa1\x54\xf8\xcd\x60\xa2\x57\x12\xe1\x7e\xfd\x2b\xc1\xf0\x9c\x24\x42\xfa\xdc\xa3\xbc\x43\x57\xcf\x11\x9e\xcd\x10\xcb\x13\xdb\xbc\x9c\x60\xef\x9f\x25\xef\xf7\x77\x35\xc1\x76\xa5\x39\x62\xba\x04\x08\x7c\x52\x4d\x0e\xef\xce\xca\x13\xce\x6a\x67\xf8\x0f\x79\xe9\x10\x24\xac\x43\xac\x59\x07\x9f\x12\x9e\xba\xbc\x6d\x98\x90\x72\x8f\x50\x13\xc6\x17\xf9\x64\x92\x2b\x61\x58\xdb\xae\x6f\x55\x87\x0b\x61\xe7\x4f\xad\xd4\xe8\xf3\x2e\x84\xf9\x37\x57\x6d\xf9\x79\x2f\x9f\xb0\xeb\x94\xa5\xe9\xf7\x31\x20\x76\xf2\xdc\x7b\x46\xfe\x84\x13\x0b\x5e\x0b\x9d\x1c\x7b\x1d\x38\x6f\x14\x74\x7f\x8f\x8a\x66\xc3\x2b\x99\x4b\x7b\x57\x7e\x3b\x40\xf8\x1e\xf4\xa8\x44\x78\xb8\x87\x81\x9e\xe2\x8c\x9e\x6b\x2b\xb7\xd0\x38\x78\x6d\xb4\x83\xad\x9b\x04\x08\x06\x07\xcf\x47\xce\x9d\x54\x49\xc8\x15\xbf\x3a\x6b\x83\xeb\x59\x82\xa7\xaa\x78\xeb\x6f\x07\x47\xc2\xb6\xf7\xaf\x5b\x96\x36\x3a\x10\x04\xa3\xe6\xce\xab\xea\xf8\xc4\x20\xb2\xc2\x54\x56\x84\x4b\x8d\x30\x79\x64\xd5\x8a\xc9\x93\xc2\x09\x22\x89\xea\xf5\x72\x7b\x12\x59\x50\xab\xd9\xb2\x2e\xc6\xfc\x08\x0b\x32\xcf\xae\x7f\x83\x8f\x27\x01\x43\xc9\xdf\x2a\xcf\x2b\x12\xfe\x98\xfc\x7d\x39\x63\xd3\xcd\x12\x24\xe8\x69\x1c\x73\xd8\x2c\x49\x58\xb2\x5f\xbb\x2b\xf9\x8f\x26\x41\xee\x8c\x5e\xde\xc3\x46\x0e\x42\x6c\x98\x44\xa7\xf3\xdf\x11\x06\x4d\xbe\xa6\xf2\x05\xcf\x27\xd0\x38\xfe\x5c\x9a\x33\x52\x7a\xac\xa2\x04\x89\x67\xf6\xd8\x5e\xf9\x5e\xc6\xc2\x2c\x31\xa6\x29\xdf\xf7\x33\x0b\xc6\xbe\xbc\x41\xef\x23\x4b\x09\x1c\x6d\xaa\x8f\xb5\xca\x0b\x09\x39\xbb\x52\xbb\x02\x4d\x54\x09\xb2\x8f\x11\x38\x70\x77\x03\xe1\xa4\x15\xc3\x57\x6c\xbc\x99\xb0\x32\x31\x3e\xc0\xf4\x19\x2f\xe1\x93\xdb\xcf\xee\xd7\xf9\x5d\x0c\x5c\xb2\xfb\xb3\xe7\x9e\xd0\x20\x64\xdf\x19\xb4\x9d\xf9\x6c\xec\xde\x1c\x7d\xa6\xf2\x55\x41\x3e\x61\xd9\x82\x77\xfe\x72\xa3\x3c\x84\x5e\x47\xb9\x94\xb5\xf7\x35\xd9\xa0\x9b\xba\xb3\x3d\xa8\x24\x9a\x41\xa5\x4c\xc6\x6d\x0b\x27\x19\x42\xa1\xcc\x95\x70\xf3\xe6\x72\x36\x44\x3f\xf1\x58\xb9\xe2\x67\x31\x0b\x5e\x8d\xa3\x0f\x45\x14\x33\x08\xa7\x9b\x65\x06\x88\x52\x09\x4a\xda\xbb\x76\xb9\x65\x6f\x23\x14\xec\xa9\xd9\xc9\x15\xb1\x8c\x50\x58\x5f\x37\x63\x72\x9e\x1c\xe1\x3c\xd7\x87\x68\x1b\x5a\x4d\xf0\x5c\xef\xc4\x61\xba\x77\x0a\x41\x5d\x72\xda\x9d\xc6\x85\x73\x09\x83\x32\x82\x6f\xe2\xa2\x57\x13\xce\x3c\x36\x08\x1c\x52\x5b\x4b\x78\x35\x79\x8d\x55\xe5\xd4\x50\x36\xac\x98\x97\x62\xf3\x4a\x50\x9b\xd0\x17\x67\xc2\xa1\x92\x7c\x81\x50\x7e\x6b\xe2\xf6\x80\xf4\xef\x0c\xbc\x78\xcb\x3a\xb6\xcc\xde\x41\xd0\x10\xe3\xf4\x75\xbd\xe1\x44\xe3\x85\xf3\x6c\x40\xb1\xc3\x1f\x01\x82\xd4\x95\xce\x87\x9f\xf6\x47\x12\x34\x7b\x94\x23\x8f\x1e\x89\x24\xf4\xbf\x5f\xfa\xba\x5f\xf6\x30\xa1\x35\x3c\x43\xf3\x92\x96\x1b\x21\xa4\x48\xe8\xc0\xf1\xb5\x4a\x84\xfa\x61\x1e\xb1\xd4\x15\xdb\x59\xe3\xa5\x4a\x26\xb6\x3f\x20\xa5\x87\xc1\xf2\x19\xe1\xbf\x22\x44\x5f\x94\xe0\x6a\xce\xb6\x2f\x8f\x9b\x54\x68\x1c\x16\xa7\xde\x29\x85\x5e\x78\x5c\x82\x97\xe7\x27\x47\xcc\x58\x32\xb6\xab\xf7\xb9\x7c\x3d\x14\xa3\x41\xf8\xea\xd4\xdb\xe4\x1b\xb9\x9e\x20\x21\xff\x46\x89\x95\xce\x41\xc8\x7f\x98\xf6\x78\xdd\x81\x42\xc2\xf4\x1b\x36\xaf\x5f\xad\xd3\x25\x28\x49\xac\x79\xcd\x5f\x35\x81\x0d\x4f\x7d\xe2\x7e\x5e\xdd\x53\x58\x02\x96\xca\x53\xfd\xf9\xcb\x88\x60\x7a\xb4\xb8\x2f\xc0\xb5\x82\xe0\xbd\xe2\xea\x3a\x9c\xf6\x22\xec\xfb\x5d\x67\xba\xc9\xe4\x00\xa1\xc5\x6a\xf9\xce\xfe\x75\x2e\x84\xa0\x3d\xea\xea\xd5\xca\x57\x08\xdd\x1d\x9d\x6d\xe7\xb6\x5c\x65\xa1\xbd\x66\xc1\xb1\x1e\x73\x25\x42\x72\xea\x0e\x8e\xab\xf2\x23\x0c\xbe\x78\xab\x3a\xad\x33\x37\x20\x58\xf9\xbc\x38\xbd\x53\xbe\xf8\xbf\x1f\x7c\x24\xcb\x6b\x06\x04\xf7\xd3\xdf\x1d\xe5\x07\x04\x08\x87\xda\xab\x3f\x7c\x89\xb0\xfe\x7f\x22\xe6\xe3\xc5\xc2\xe0\xcb\x19\x25\xff\x40\x48\xdd\xd6\xd0\x29\xef\x3f\x30\x08\xcd\x55\x3d\x3e\x81\x99\x4d\xe8\x94\x94\xbd\xc7\x1b\x7a\xee\xff\x1b\x8a\x6c\x2f\xc8\x6f\xe0\xe9\x66\xc6\x61\x2e\xab\xbb\x48\xfd\xa0\x19\x6b\xbc\x0c\x66\x5c\x65\x9d\xf4\xbb\x42\xe0\x6b\x6b\xc8\x8f\x75\x8a\x24\x58\x6d\x10\xf2\xfe\x1c\xd4\xcf\xa0\xf9\x66\x16\xd7\xc9\x3a\x21\x1a\xc7\xee\x94\xca\x5a\x45\xe1\x01\x06\xa5\x21\xc9\x2b\x57\x55\x67\x95\x40\xdc\x59\xd9\xae\xe8\xab\x31\x8d\xc3\xca\x61\x8a\xe7\x89\xec\x9a\x12\x48\x34\xec\xb0\xf7\x0a\xd4\x26\xa4\xaf\xd1\x3c\x63\x29\x40\x04\x7e\xb7\x15\x31\xb2\x7d\xbb\x09\x2c\x0f\xf9\xa2\xdc\x92\xab\x04\x2f\xbb\x27\x77\xdf\xf4\xf9\x11\xfa\x24\xf2\xab\x99\xcc\x40\xc2\xb1\xd3\x9a\x8f\xd3\x56\x1d\x62\x41\xa7\x84\x15\x1a\x7e\xf3\x18\xe1\x69\xab\x7b\xd4\x51\xe3\x32\x42\xe2\xae\x0d\xf3\x0b\x12\xcb\x08\x93\x5c\x02\xc4\xb6\x1e\xad\x20\xf0\xe7\x4e\xf8\xbc\xdf\xe0\x1a\xe1\xa9\xce\x75\xb1\x3f\x37\xee\x10\x04\x4e\x4f\x77\x4d\xec\x71\x63\xc3\x3d\xa7\xaf\x9b\x74\x64\x4f\xb3\x61\x76\x86\xe9\x26\x92\x28\x21\xdc\xfe\x91\x2a\x69\x90\x1a\x4a\xb0\x3e\x25\xa4\x72\x2a\x7a\x19\x41\x71\x7e\x4d\xf1\xc5\x04\x43\x42\xee\x14\xad\x19\xb1\xba\xab\xd9\x70\xac\xbb\xf8\x39\xe7\xa3\xd6\x12\x18\x5e\xde\x78\x52\xac\xf5\x0b\x03\x2e\x25\xd3\x09\x51\x02\xe2\x84\xd8\x2d\x47\xfd\xf5\x56\x99\xb0\xc6\xcb\x26\x81\x2d\x1b\x46\x4c\x54\x08\xdf\xce\x5c\x77\xcb\x5a\xa0\x4c\x18\xe1\x91\xaa\x50\x2f\x75\x22\x6c\x9c\x55\xa1\xad\x7d\xaf\x90\x85\x6d\xb3\x1e\x1c\xaa\xb3\xd5\x25\x24\xd5\x4c\x54\xf9\xfb\x2a\x8c\xc1\xed\x86\xd2\xed\x3a\x6a\xb2\x84\x61\xd7\x8f\x8e\x3a\x89\x33\x08\x47\x1c\x37\xee\x4b\xd8\x62\x43\x98\x32\x3a\xb2\x54\xbc\x31\xbd\x04\x16\x4f\x15\xbf\x65\x64\x37\x31\xf0\xb6\x77\xdf\xb0\x4b\x41\x8e\xc0\x6b\xa8\xbe\xe6\x68\x4a\x3f\x83\x99\x47\x9c\xae\x57\x4c\xde\x44\xff\x40\x89\xa2\xa7\xee\x17\xf1\x37\x25\x68\x09\x9d\x21\x76\xf9\xb8\x21\x21\x3e\x8b\xf3\xb5\x9a\xdb\x6a\xc2\x57\x8d\x8c\xad\x07\xe5\xe7\x10\x4a\x66\x7e\x72\xcb\x8b\x4a\x20\xac\xf8\x6a\xfb\x26\xe8\xa0\x33\xe1\xd7\x46\x61\xde\x78\x6e\x6b\xc2\xc8\xea\x1d\xce\x69\x86\x09\x04\x96\xfd\x65\xc9\x05\xe6\x09\x84\xe7\x67\xeb\x35\x5e\x3c\xb4\x27\x1c\xd8\x15\xb5\xc6\x48\xc3\x97\xf0\xf8\x88\x85\x2a\xbf\xa6\x15\x61\xe5\x91\x1b\xb3\x38\xa3\x9d\x08\xc3\x4d\x09\xbd\x9c\x82\xbe\x84\x9f\xcb\xd5\x3f\x3b\x5f\x28\x27\xb8\x71\xbc\xdc\xa0\x37\xe4\xc7\x82\xce\xde\x43\xc1\x7b\x5f\x3d\x22\xf4\xd6\xf5\x59\xca\x59\xa6\x11\xb8\xf3\xcd\xd3\x8f\x9c\x1d\x62\x30\x8f\x75\xfb\x43\x8e\x65\x16\xa1\x80\x5f\xca\xfa\x3f\xc4\x9a\x36\xea\x86\x6f\x5b\x4c\x08\x68\xee\xa2\xd0\x6c\x6b\x42\xb3\x4d\x41\xa3\xdd\xed\x35\x84\x12\xbb\x4c\xc9\x2b\x3b\x96\x12\x78\xf5\x2f\x3b\x4c\x70\x13\x25\xec\xab\xd4\xb9\x70\xd1\x84\x9f\x70\x7f\x71\x60\xa3\xa5\x66\x2c\x0b\x13\xb9\x36\x27\x94\x8e\x6d\xdd\xe1\x6e\x3c\xde\x41\x36\x06\x04\xbb\x16\xe7\x1c\x53\xa5\x11\x06\xa1\x7a\x45\x4f\x8a\x1f\xab\x11\x4c\x1c\x13\x7d\x1a\x9f\xef\x26\x2c\xbe\x61\xf0\x84\xff\x6c\x19\x81\xeb\xcd\xdf\xa8\x23\x67\xca\x08\x9b\x72\xd2\x9f\x9b\x37\xe6\x13\xb6\x5d\xfa\x94\x52\xc3\x62\x11\x12\x2e\x7f\xf6\xfd\x6f\x94\xbb\xba\x22\xb8\x8b\x33\x94\x90\x23\x92\x5f\x24\xd0\x7e\x91\xad\xfc\x0f\xfc\x47\xa5\x5e\x2c\x55\xba\x4a\xa8\xb6\x37\xf6\xed\x3f\x74\x83\xd0\xb0\xea\x60\xeb\xb4\xec\x8f\x0c\xea\x06\x02\x37\x1c\x9a\xf5\xfa\x5f\x68\xbb\xe6\xba\xeb\x6e\x21\x07\xc1\x8d\x49\x59\xb5\x5a\x4a\x84\xd0\xbb\x99\x29\x9d\x9c\x1c\x49\xc8\x7b\x39\xe4\x98\x76\x7e\x88\x19\x87\xd5\xb9\x80\xb5\x59\xef\x73\x19\xc8\x4d\x98\xb2\xd0\x60\xff\x43\x42\xc1\x24\xef\xb2\x3b\xc6\x86\x84\xbd\x6b\x42\x56\xe6\x04\x3a\xb2\xb0\xa7\xd8\x48\xae\xe7\x48\x0f\x03\xf7\xfa\xba\x55\x35\xa2\xd7\x08\x26\x7e\xaf\x5e\x57\xac\x92\x25\x9c\xd5\x13\xcf\x33\xcf\xfc\xc9\x40\x48\xd1\x2d\xe4\xc8\x23\x5f\x1a\x87\x65\x5e\x7c\x56\xd6\x2c\x17\x82\xf7\x9e\xf9\x13\xa7\x0e\x05\xb0\xc0\xb5\xa8\xf1\xa9\xcf\x1c\x23\xc2\xae\x55\xb7\xb6\x85\x18\xd9\x13\x34\x8f\x99\xaf\xfc\xd4\x21\x44\x38\xca\x9d\xf0\x69\x57\x75\x31\x21\xa9\xf7\x64\xcc\x31\xad\xe9\x84\x93\xd1\x9d\x5f\xad\xdb\xfb\x19\xc8\x48\x7f\xe2\x3b\xf9\xe3\x23\x1b\xe6\x61\xb8\xb9\xeb\xee\x08\x83\x69\x5e\xbf\x3e\xf9\xf7\xc5\x10\xbe\x6e\x55\x9b\xc6\x3b\x28\x47\x88\x2b\x35\xd2\xcd\x97\x5a\x4c\x50\xff\x3b\xeb\x49\x6a\xdc\x7b\x06\xe7\xc4\x75\x6a\xbf\xcd\xcd\x66\xe1\x66\x75\xca\x81\x5b\x12\xc7\x09\x6f\x4e\x05\xd5\x7a\xe9\x6c\x21\x2c\xd7\xeb\x5f\x63\x97\xee\x48\x48\x15\x3c\x54\x59\x17\xc6\x45\x38\x1d\x30\xfb\xee\xcc\xa1\x03\x04\xd5\x46\xb9\xdd\x2b\x2d\x52\x08\x86\x92\xbb\x22\x25\xa0\x41\xf0\xb8\x7b\x71\xe2\xf5\xc5\xf1\x84\xb6\x6d\x03\xbe\x31\xbe\x55\x84\x7e\x4e\xd7\xbd\xb3\x63\xaa\x08\xd7\x72\xd3\xda\x94\xe2\x3f\x31\x10\xc8\x7f\xc8\xe2\x7c\xb0\x94\xf0\xc9\xdc\x3a\x59\x6c\x81\x1c\x61\x24\x50\x7f\x85\xf8\xed\xf3\x6c\x30\xdf\x7b\xc3\x73\xd9\xfb\x3d\x04\x4e\x55\x45\xfb\xfd\x52\x12\x84\xd8\xb6\xe4\xc2\x89\xb4\x80\x50\xd7\xef\x70\xb1\xac\x60\x0b\x1b\x12\x25\xd6\x64\x5f\x5d\xa1\x40\xe8\xe3\x31\x79\x91\x33\x65\x84\x81\x1b\x63\x65\xd5\x4a\x0e\x84\xec\x2b\x43\x61\x67\xb5\xcb\x59\xb8\x68\xaf\xb0\x6b\x5b\x71\x31\xa1\x63\x63\xbe\x53\xa6\xa7\x09\x41\xbb\xcf\xf1\x9b\x26\x57\x08\x0b\xbf\x3c\xc4\x3f\x0d\x0c\x6d\x27\x70\x27\x8a\xb5\x7f\xba\xa3\x4b\xf0\xda\x95\x63\x79\x7c\x9d\x1d\x61\xe6\xf6\xbd\x23\xa1\x8f\xcb\x59\x48\x96\x5d\x30\xd7\x37\x4a\x96\x10\x64\xe8\x7f\x7b\xe8\xf0\x6c\xc2\xab\xb5\x06\x65\xf2\xe7\x4c\x09\x32\x39\xc2\xbd\x4e\x61\x43\x0c\xae\x0c\xaf\xcb\x58\x11\xb5\x9a\xc6\x51\xf8\x5e\xe6\x4a\xf1\xa9\x5b\x0c\x86\xaf\x98\xbd\x3a\x25\x3c\x99\xa0\x7f\xb6\x3c\x6e\x1d\xa7\x26\x61\xa3\x79\xc7\x92\x83\x38\xf5\x2f\xfc\x5d\x9a\xaa\xae\xb4\x7f\xf3\xbf\x30\x32\xca\xf2\xd3\x99\xb1\x8b\x0d\x6d\xac\x1b\xb1\x77\x7e\xf1\x13\x7e\xf8\x89\x05\x1c\x8c\x1a\xbb\x18\xbe\x1d\x8e\x35\x9e\xa8\xcf\x06\xd7\xed\xf6\x87\x64\x4a\x39\x09\x15\xb6\x99\x33\x67\x79\x0a\x10\x82\xac\xb2\x67\x16\x8c\x6d\xef\xcb\x67\xc7\x0d\xe5\xff\x1f\xd0\xdf\xa1\x1a\x13\x2f\x6f\xf7\x2f\x78\x3c\x6c\x91\xaf\x0e\x3e\x44\x78\x70\xc5\x45\x6b\x6a\x5b\x2a\x0b\xd7\x37\xe5\x6e\xf8\x71\x9b\x8b\x70\x99\x67\x55\xdd\xa4\x77\x31\x6c\xf0\xae\xba\x3f\xe5\x52\x50\x1c\xe1\x56\x12\x14\x0a\x14\x6f\x10\xba\x9a\x6e\x6f\x9d\x35\x67\x0b\x61\xd4\xe7\x98\xd6\xdc\xbf\xe2\x6c\x18\x5a\xd2\xf1\x55\xa6\xfd\x38\x1b\xf4\xd2\x7a\x32\xa9\xc8\x8b\x60\x35\xef\xd9\x33\x2d\x0e\x2d\xc2\x11\xb5\x6e\xee\xef\x75\x6f\x19\x68\xc8\x0c\xc9\xa6\xef\x5a\x46\xb8\x7f\x62\x8e\xc9\xa5\x72\x4f\x36\xe8\x36\x15\x3a\x48\x3a\xeb\x10\xdc\xdf\x9f\x13\x4a\x53\xb8\xcc\x82\xfd\x16\x33\x83\xd4\x05\x23\x0c\x46\x42\x14\x9e\x57\x0e\x5c\x61\x21\x20\x29\x4e\xe4\xe9\x68\x19\xc1\x71\xde\xab\x0d\x97\xcf\x59\x13\x04\x84\x1e\xaf\x2e\x5c\xaf\x4e\x08\x2a\xd2\xe5\x0c\x77\x57\x27\xb8\x7e\xfb\xa4\x56\xb1\xeb\x00\x21\xfc\xcb\x47\xf9\x9f\x4d\x0e\x6c\xe5\xb3\xa5\xd7\x60\x53\xbe\x18\xe1\xcf\xf4\x8a\x98\x15\x91\x4b\x08\x67\x43\x22\x07\xaa\xdb\x4c\xd8\xe0\xac\x5c\xa0\x33\x4d\xab\x91\x41\xe9\x91\xdf\x33\x2e\x7d\xbd\x49\x90\x7a\x66\xb8\xfb\x41\x5d\x11\x61\x66\x15\x73\xad\xaa\xad\x8c\x90\xb3\x2c\xb1\xff\x88\x4e\x12\x21\x92\xb3\xc6\xb3\xdb\xb2\x8c\xb0\xc0\xad\x80\xeb\xe8\x58\x31\x88\x9f\x3b\xdb\xe1\x94\x3b\x1b\xae\x98\xf1\x4f\xbf\xe5\xe3\x4f\x48\x09\x5f\x5e\x7a\x86\xc7\x85\x6d\x34\x47\xba\x6e\x6f\xc0\x5c\x6f\xc2\x8f\x69\x4d\xf1\x49\xdb\xce\xb0\xc6\xcb\xff\xa0\xa2\xa7\xb1\xf3\x6e\xde\x5c\x82\xb7\x74\xce\x34\x25\x09\x3e\xc2\x8f\x91\xaf\xcf\xa7\xfd\x54\x65\x43\xcf\xd1\xad\x95\x5f\x16\x65\x30\x58\x6d\xf6\x73\x7a\xf1\xde\x09\x84\x9c\x76\x81\x06\x5f\x5d\x7b\xc2\x49\x27\xd1\x53\x42\x77\x76\xb1\xc1\x6b\xa9\x76\xc2\x4d\xce\xea\x12\x18\xda\xde\x3e\xd2\x15\x27\x42\x10\x5e\x13\x1d\xbd\x44\xc4\x8b\x20\x1c\x5f\x66\x56\xf9\xd9\x9c\xb0\x54\x79\xd3\x41\x7d\xc9\x0d\x04\xe1\xe9\xfb\x8a\xfa\x8d\xc2\x09\x47\xce\x7d\x58\x6b\xa7\x51\x4e\x50\x55\xda\xb7\x6b\xcb\x94\x70\x16\x16\xde\x8e\x6f\x9e\x1a\x6b\x48\xf8\x0d\x67\xeb\xaa\x10\x22\xc4\xce\x4a\x4a\x9f\x96\x3a\xca\xe0\xea\x99\xc3\x95\xbb\xdb\xd7\x10\x02\xbb\xd3\x63\xd4\xcd\xf3\x08\x45\x16\xfe\xee\xff\x27\x04\xf4\x4f\x35\xac\x29\x64\x95\xa0\xe9\x1a\x57\xa3\xca\xa2\xe7\x0c\xa4\x92\x9f\xad\x70\x2a\x92\xa7\x71\x3c\x8a\xeb\x5b\x61\x68\xf4\x85\xc1\xc5\x43\xb2\x5c\x2c\x9e\x28\xc2\xa8\x86\x4f\xc3\x9d\x01\x27\x42\x4f\x37\x47\x5c\xbd\x6a\x00\x6b\xbc\xb4\x9a\x7d\x48\x29\xf0\x10\x20\xe8\x7b\x6b\x06\x79\x78\xab\x13\x62\xaa\x0d\x3f\x19\xbc\x5c\x41\x58\x58\x31\x23\xdd\xa4\x51\x86\xb0\xbe\xfb\x45\x86\xf9\x85\x85\x04\xf7\x98\x98\xf0\xd8\x15\x1e\x04\xa7\x61\x25\xb7\xe9\xa3\x2e\x84\x15\xdc\xaa\x03\x4e\xda\x02\x04\x95\x69\xdf\x25\x4c\x1f\xf2\x11\x84\x36\xab\xa7\xce\xfd\xc8\x4b\xd0\x1f\x3c\x9b\xd7\xf5\xe0\x37\x83\xd8\xdf\x4f\x2b\x52\xd2\xbf\xb1\xc1\xec\xbe\xbf\xe3\xef\x8a\x15\x04\xbd\x1c\x5e\x71\x83\xcd\x0b\x08\xfe\x56\x9c\xb7\xe7\xf6\x28\x13\x0e\xb8\xcd\x8e\xda\xf4\xf1\x19\x83\xf7\xdb\xbb\x25\x15\x1a\xbf\xb3\x41\x66\x37\x0c\x9a\xcb\x55\x69\x1c\xcf\xf3\x43\x4e\x14\x68\x44\x13\x0c\x45\xf6\xad\x14\x58\xf3\x98\x35\x5e\xf6\xf9\x86\xe6\xed\x9c\x99\x44\xe8\x78\x7a\xb3\x60\xaf\x74\x12\xc1\x31\xe8\x7a\x54\x90\xcd\x0c\xc2\x51\x9b\xb6\xf6\xca\x41\x1e\xc2\xa5\x81\xb4\xc0\xbb\x1c\x3a\x84\x9d\x0e\x97\xf7\x3b\xb9\x4a\x10\x36\x1b\x0a\xf7\xdd\xba\x33\x97\x90\xe3\x7a\x70\xda\x4b\x69\x39\x82\xb7\xef\xc8\xaa\xea\x0b\x6b\x09\x0f\x9f\xa6\x3b\xac\x36\xcc\x62\xb0\x6a\x93\xa9\x84\xf3\x73\x3d\x82\xde\xb7\xd3\x99\x65\x11\x9e\x2c\x98\x92\x5b\x51\x29\xd7\x79\x42\x5a\xf9\x4b\xa7\xc8\x8c\x1b\x34\x5e\xc2\x2f\xfb\x47\x87\x4e\xb3\x21\x18\xcd\xfb\x7d\xc4\xfc\xe6\x76\x42\xf7\xa5\xde\x83\xcf\x8d\x36\xfe\x0b\xe0\x5a\xf9\x7a\x91\x5e\x3b\x83\x13\x8a\xef\xce\x94\xb6\x68\x11\x86\x8e\xd5\xc7\x3b\x46\x72\xb2\xa1\x01\x71\x8a\xa7\x6a\x07\x98\x71\x2c\xb3\xdf\xd3\xb0\x4a\xaf\x89\xc1\x7c\x65\x91\x62\xe9\x20\x5f\x16\x94\x57\xae\xd6\xbc\xe4\xbe\x85\xe0\x96\xec\xb9\xff\xe2\x2d\x05\x16\xa6\xd8\x75\x04\x49\xea\x9a\x10\xf4\x5f\x36\x8a\xbf\x4a\xbd\x40\xc8\xe7\x57\x73\x97\x1e\x76\x23\x3c\x53\x0d\xbe\x61\xc2\x0a\x25\xd8\x44\x18\x86\xbf\xdf\xe8\xc2\x82\x4a\x4e\x85\x1f\x8f\x76\x26\xa1\x69\xff\xee\x59\xa7\x4f\xda\x11\x82\x27\x0d\x88\x1f\xf8\xbd\x87\x30\xa7\x41\xd3\xa2\x75\xe6\x7e\xb6\x51\x34\x77\x7a\xee\x8d\x25\x97\xd8\x50\x76\x45\xf8\xf1\xd2\xf3\xd9\x84\xde\xec\xd5\x02\x6b\x3b\xb3\x08\x6d\x43\xf3\x4f\x17\x45\x67\xb2\xc6\x47\xa5\x8a\x1d\xdb\xf8\xf7\xce\x21\xcc\xd6\x58\xed\x63\x7c\x28\x83\xb0\xe1\x93\xb7\x92\x95\x8e\x17\x21\xd1\x5a\xe9\xec\x2f\x0b\x0b\xc2\xd7\x8b\x0f\x3e\x8b\x5a\x8f\x32\xe0\xf8\xd0\x4d\xfa\xa2\x3b\x59\x70\xd8\x9c\x6b\x30\xd9\x2f\x80\x85\x3b\xbb\x85\x9e\x5a\xb8\xc7\x13\xfc\x1f\xb7\xe9\xda\x04\xdf\x25\x88\x38\x55\x71\x4c\xad\x8f\x27\x64\xeb\x5c\xbb\x59\x5b\x6b\x4c\x18\x70\x7c\xf4\x49\x80\xb1\x20\xcc\xbc\x2b\xf4\x36\xf7\x87\x23\x0b\x8a\xa7\x16\xef\xdb\xfd\xde\x9b\x30\xda\x90\x19\x1f\x5c\x6e\x4a\x38\x79\xea\xd1\x8f\xb7\xe1\xea\x2c\xc8\xbd\x0e\x3c\x92\x67\xf6\x87\xc1\xbd\xc9\xfc\x4e\xce\x3b\xed\x08\x07\xc2\x37\xb5\x2d\x7c\xa7\x4f\x98\x1f\x17\xf0\x50\x37\xd6\x82\xb0\xc7\x32\x4d\xff\x8a\xde\x72\x42\x47\x88\xd5\x01\x53\xeb\x49\x84\xc8\xab\x5f\xb3\x6a\x76\x98\x13\xd6\xb4\x5c\xf9\x93\x54\x34\xc0\x8c\x63\xc5\x79\x9f\xc7\x5f\xd4\x78\x08\x82\x33\xb6\x1d\xfb\xe2\x21\x4f\x58\xfa\xf0\xec\x8d\x39\xa7\xc7\x4e\x9e\xbd\x73\xef\x2f\xab\xc9\x20\x2c\xaf\xdb\xf0\xd9\x64\xab\x0f\x41\x61\xd5\x8d\x17\x0b\x83\x4e\x10\x2e\x3f\xf8\xf9\x66\xa7\x6f\x2c\x61\x7d\xc0\xe6\xf8\x47\xe9\xde\x04\xfb\x1b\x32\xbb\xf3\x4a\x02\x08\x4f\xca\x96\x6b\x14\x7d\xff\xc6\xe0\xee\x94\x40\x13\xd9\xb0\x34\xc2\x9d\x91\x18\x55\x1b\x69\x17\x82\xcc\x52\x51\x91\xf0\x53\x0b\x08\xf6\xa7\x59\xe6\x87\x5e\x85\x11\x24\xeb\xf9\xb3\x7c\xe4\x23\xd8\xca\x4a\x85\x99\x4b\x36\x5f\x5b\x4d\xe8\x13\x5d\x68\xe2\x5c\xb9\x96\x50\xe0\xd9\x5a\xff\xe0\x77\x08\x0b\x8d\xba\x2a\x5b\x2c\x2d\x64\x09\x19\x6f\x6b\x4b\x4e\x06\x5f\x20\x38\x86\x67\x9a\x0e\xb5\x9f\x66\xc3\xd3\x45\x01\x23\xd1\xa1\xba\x84\xad\xfd\x83\x34\x4b\x58\x92\x30\xe2\x7a\xe1\xc3\x73\xf3\x53\x6c\x88\x9d\xba\x56\x81\xd3\x41\x9e\xf0\x32\xb7\xd0\x66\xbf\xf1\x46\xc2\x6b\xfd\xf0\xa0\x8e\x78\x0e\x82\x63\xe1\x15\xae\xfd\x8f\x4d\x08\x05\x7b\x3f\xee\xb7\x3a\xe1\xca\x56\x4e\xbe\x5e\x6d\x77\xa5\x77\x39\x41\xe9\xbe\xf2\x70\xd9\x0f\x35\xc2\x2e\x2e\xff\xbf\x53\x67\xf6\x33\xd8\xbd\xf6\xd3\x71\x45\xed\x53\x84\x13\xfb\x38\x1b\x6c\xb4\xca\x08\xeb\x1e\x4d\xfe\x60\x3b\x86\xd8\x70\x5e\x01\x03\x81\x50\x82\xc5\x5c\xbd\xf0\x7c\xc5\x09\x6c\x10\xd8\xdf\xcc\xa7\xd7\x37\x85\x90\x3d\x60\xbb\x77\xbe\xc7\x5c\x82\x4f\x69\x9e\xd7\x77\xae\x60\xc2\x82\x65\x3a\x0e\x9f\x92\xd4\x08\x5b\xca\xee\x77\x7f\x71\xb3\x27\xdc\x70\x14\x38\xbe\x23\x7b\x0d\x41\xca\xd2\x41\xbd\xa7\x65\x2d\xe1\xc5\xe2\x5f\x55\xf3\x74\x4f\x12\x66\x76\x7f\x58\xf9\xc7\x61\x07\x61\x76\xb4\xec\xb9\xbc\x1a\x25\x82\x6a\xaf\xdf\xbb\x6b\x1a\x82\x84\xb8\xda\x49\x39\x09\xb6\x39\x84\xc6\x7c\xcb\x6d\x37\x8b\x2d\x09\x66\xad\x6f\xf5\x3f\x86\x70\x11\x76\x4e\x36\x5f\x43\xe9\xbc\x6c\xb8\x23\xf8\xe3\xb1\xbd\x28\x18\x1c\x3a\x29\xd1\xaa\x76\x6c\x2a\xc1\x23\xee\x68\xac\xa5\xd4\x06\x36\xf0\x3b\x58\xa8\x14\xd0\xd8\xc5\xf0\xd3\xb5\xd7\xe7\x6d\xae\xb1\xf0\x33\xf8\xb4\xc0\x54\x0b\x63\x1a\x87\xc8\x04\xaf\xdd\xb9\x71\x0a\x04\x5f\x67\xef\xd4\xb4\x47\xe1\x04\xc1\xc1\x95\xd3\x32\x36\xaa\x10\x46\x9a\x7e\x0d\x65\xcf\x32\x20\x08\x4e\xb9\xe2\x6f\x68\xb6\x86\x70\xa3\xfb\x7b\x66\xfb\x6d\x3d\x42\xb1\x58\xed\xad\x91\x82\x3b\x2c\xb8\x06\x36\x4f\xe0\xb9\x27\x4d\x38\xe8\xbd\xac\xb7\x01\xee\x84\xcc\x07\x28\xaf\xf9\x1d\x49\x38\xee\xd9\x76\xd7\x58\xc6\x82\x85\xcf\x27\x2f\xd8\x45\x7c\x52\x22\x1c\x2f\x95\x3e\x52\xd9\xef\x49\x88\x7a\xbb\xe9\xd7\xf2\x89\xf2\x84\x9e\xd6\xd8\x2e\x31\x85\x8f\x0c\x0c\x59\xa9\xc1\x33\x64\x87\x19\x30\xd3\x46\x2f\xf0\xff\xe2\x23\xe8\x34\xa7\xbb\x3b\x98\x2c\x20\x44\xf0\x68\xef\xd9\xc2\xf4\x31\xb8\x64\x11\x7c\x69\x5a\xb7\x21\xe1\x53\x5a\xa2\x4a\xc9\xdf\x7d\x2c\x24\x5e\xab\x57\x18\xa9\x5a\x48\xf8\x34\xaa\x99\x3d\xe8\xbc\x88\x50\x57\xbf\xac\xaf\x56\x41\x87\x10\x9e\xd3\x26\xcc\xe9\xb3\x94\x50\xbc\x69\xe2\x89\x08\xbe\xe9\x04\xfd\xf8\x80\x4e\xf9\x98\xcf\x0c\x76\x6b\xa7\x8f\x4e\x8e\x12\x27\x94\xab\xf8\x92\x7d\xc5\x3e\x36\x3c\xbf\xe8\xdd\xe5\xb5\x57\x8c\xb0\xcd\xf4\xc9\xe7\x9d\xfb\x76\x12\xce\x0c\xd8\x5d\x9d\x37\x77\x0a\x21\x3d\xa7\xbe\x59\xbd\x53\x98\xad\x8c\xf8\x1d\x70\xdb\x78\x82\x87\x90\xb1\x59\x5b\x4e\xe6\xc5\x22\x82\xdb\x41\x31\x9d\x98\x7c\xdb\x7f\x21\xfc\xb6\xe7\x75\xe3\x86\x0d\x04\xf7\x11\xfe\x8b\x42\x6b\x23\x08\x92\x2b\x0d\x13\x25\xf5\x45\x08\x25\xfc\xac\x58\xa9\x6f\x1d\x84\x97\x81\x76\xb9\x87\x96\x55\x10\x7a\x63\x97\x4c\x7f\x17\x94\x43\x58\xbf\xc5\xa2\xcf\xda\x3a\x9b\xd0\xcd\xaf\x39\xc1\xad\xae\x90\x6d\xcd\x24\xfd\x8c\x4d\x77\x7f\x67\x10\x72\x0b\xf6\x45\xdf\xf4\x0a\x23\x24\xf1\x07\xad\x78\xd7\x97\x41\xf8\xb2\x77\xa7\x96\x98\x55\x18\xa1\x7c\x17\x93\xa5\x1a\xb9\x95\xd0\xe7\x9b\xa1\xa3\x96\x37\x9f\x10\x52\x5b\x36\xf5\x52\x2f\x2f\x21\xcf\x6d\xff\xc9\x96\xe7\x37\x09\x12\xfe\x53\x43\x73\x25\x54\x09\x79\x47\xdf\x76\xbf\x59\x96\x49\x10\x3c\xd6\x2d\xb9\xef\x5c\x26\xa1\xf3\x9c\x9b\x1d\x47\x5a\x07\x0b\x33\xdf\x19\xc5\xfe\x57\x74\x2e\xb0\xe2\x56\xf7\xda\x13\x6a\xae\x9a\xf8\x69\x7c\xb3\x21\xac\x30\x37\x71\x1c\x5c\xbe\x95\x70\xc7\x3b\x72\x6b\x42\x8f\x3d\x1b\x66\x05\x7a\xed\x3a\xe2\xaa\x43\x10\x96\xfc\x5c\x66\xb3\x50\x9f\xad\xac\x4a\xb9\x38\xec\x92\xa1\x43\xa8\x13\x9e\x1e\xad\x34\xe9\xde\xd8\x33\x1f\x2f\xf1\x1f\x58\x2d\xaf\xbf\x3c\x3a\xd0\xc3\x8c\xe3\xad\x9f\xa8\xe0\xb5\xd2\x2e\x06\x6b\x2d\xf5\x54\xc2\xc6\x76\xa4\x05\xeb\xba\xee\x2d\xeb\xf7\x67\x43\x5f\x4e\xbe\xe3\x47\x27\x41\x82\xbf\xf9\xee\xac\xb5\xfe\xbb\x09\xeb\x26\x4c\x9e\x2b\x58\x64\x42\x48\x34\x5f\x7f\xc3\xff\xf9\x26\x42\x0f\x2b\xc9\x69\x4a\x91\x36\x61\xd0\x89\xa5\x5d\xc1\xad\x4e\xc8\x51\x65\xad\x32\xcf\x5c\x4e\x18\xd6\xfc\x22\xb5\x76\xa8\x96\xb0\x41\xff\x5e\x94\xc9\xba\x1a\x42\x6e\xcc\x67\xb5\x75\x63\xe5\xdd\x0b\xc5\xd4\xd1\x61\x07\x82\x61\x4f\xe9\xda\x15\xb7\x4d\x08\x6d\x36\xd1\xa9\xbf\x7f\x27\x11\x82\x66\x5c\xed\x6f\x8a\x2b\x66\x41\x3d\x29\xa3\xf2\xbf\xa2\x37\x5c\xbe\xa4\x8e\xf7\x2d\x83\xea\xbb\xd2\x7b\x6a\x78\xfb\x18\x38\xf4\xfd\x15\x3e\x5e\x75\x88\x60\xba\x73\xe6\xcf\x8c\xd9\x51\x84\x8d\x32\xbf\x67\x4c\x88\xf3\xa7\xf1\xd1\xd5\x9b\x25\xe7\x6a\x32\x79\x08\xf9\xcf\x22\x5e\x85\xbd\xdc\x46\xe0\x29\x7a\x7a\x44\x76\x3e\xc3\x06\xab\xbd\x35\xce\x9e\x19\x73\x09\x6f\xbf\xac\x9d\x65\x59\xe0\x48\x30\x9d\x3a\x3a\xeb\xb9\x74\x1e\xc1\xb0\x17\x4a\x2f\xbe\xa4\x12\x3a\x79\x0c\xc2\xff\x83\x31\x95\x7e\xfa\xec\x97\x48\x10\xf2\x5a\x68\x9b\x59\x90\x48\x78\xd4\x1c\xc4\x5f\x95\x9c\x4c\xb0\x74\x3d\x73\x69\xb4\x63\x27\x0b\x1e\x53\xe2\x5a\x26\xec\x13\x20\xcc\x4f\x68\x3c\x11\x3b\x91\x97\x20\x9b\xfa\x6b\xe1\xe1\x8f\xca\x6c\x30\x5d\xed\x79\xab\xb1\xe9\x2e\x21\xff\x5e\x65\xab\x87\xfc\x6c\x42\xd2\xf3\x34\x57\x6d\xe7\x7a\xc2\x1d\x9a\xda\xaa\xbc\xb8\x9e\x70\x6b\xef\x33\xbd\xa6\x8e\x56\xc2\xde\x63\xdc\xca\x3f\x39\x58\x04\x85\x0b\x27\x5e\xab\x95\xe5\x12\x2a\xb3\x53\xa5\xef\x27\xe7\x11\x6a\xfb\x64\x82\xb3\x77\x9d\x66\xc3\xdb\x07\x47\xb7\x4d\x34\xe1\x22\x18\xf2\xb9\x5d\x9a\x71\x31\x9e\x70\xef\xc7\xfd\xe5\x73\xae\x6c\x26\x3c\x5a\xd5\xef\xa7\x64\xed\x4c\x30\x13\xb9\x1a\xf6\xe5\x66\x12\xc1\x70\x4a\x0f\x93\xa5\x14\x4c\x38\x1a\xa4\x6e\xb3\xb2\x51\x83\x90\x36\x77\xfa\xb2\xa6\x07\x09\x04\x7d\x32\xee\xee\xfc\xb9\x82\x70\x7e\x75\x69\xac\x93\x96\x1d\xc1\xfd\x5e\x48\x9a\x40\xac\x12\x61\x67\xfe\xef\x1f\x56\xc9\x52\x04\x2e\x16\xf7\x07\x41\xa7\xef\x0c\x8a\xfd\xdd\xcb\x95\x56\xb6\x33\xa8\x7a\x3f\x94\x1a\x73\x70\x0b\xe1\x4b\xa9\xfd\x9c\xc8\x11\x0d\xc2\xd1\xf0\xa7\x7d\xab\xb2\x74\xe9\xff\x7f\xe1\x35\x66\x43\x72\xfb\xd1\x4d\x32\x51\x93\x08\xa7\xf1\x3a\x6e\xf4\x85\x15\xc1\x7c\x5e\xc4\x91\x69\xf7\x03\x59\x10\x17\xad\xfa\xe0\x95\x2b\x43\xf0\x2f\xde\xf0\x79\xe0\x72\x17\x83\x73\xf6\x6f\xaf\x50\xb7\x22\x61\xc8\xf1\x5a\x66\x53\xd4\x46\x1a\x2f\xe7\x2e\x85\xae\xf9\xfa\xed\x0c\x0b\x56\xb6\x39\xcd\xb7\x84\x7e\x30\xf8\x79\xfe\x52\xf0\xe2\xb9\xb2\x84\x45\x51\x2d\xb5\xfb\x23\xe5\x09\xa9\x9a\xd9\x5b\xbe\xe9\x79\xb0\xc6\x0b\xcf\xb4\x5a\x53\xee\x0f\xcd\x0c\x32\xae\xcb\xb5\x1c\x3b\x72\x8a\x85\xdf\xdb\x5e\x5e\x28\xf6\x9b\x4d\xe3\xe8\xad\xb9\x8c\x55\x7c\xed\xcc\x38\xb2\x54\xbb\xf4\x33\x87\x15\x08\xb7\x7c\x2f\xbd\x73\x56\x49\x60\xe1\xc9\x8b\xcf\x97\x2e\xe9\x7d\x67\xc6\x91\xb7\xf1\x8d\x4e\x3c\x77\x6b\x09\x6a\x7f\x97\x1e\x8b\xe5\x5f\x42\xc8\xbc\xfd\x50\x74\xdf\x9f\xed\x6c\xd0\x0a\x8f\xbb\x27\x6d\x5c\x41\xb8\xe8\x5e\xeb\xa0\xf3\x3d\x9b\x30\x73\xf3\x8e\xbd\x87\x13\xbc\xd8\x46\x02\xdb\xa6\xbd\x1a\xee\xca\x22\x2c\x7b\xae\xfe\xe0\xbb\x59\x19\xc1\x46\xc7\x96\x5f\x2f\x3d\x84\x40\xd5\xc7\x97\x09\x7d\xbc\x40\x58\x71\xb1\xb1\xc7\x45\x3e\x88\xb0\xce\xa6\xce\x90\x33\xea\x02\xdb\x9a\x85\x1a\x2a\xf5\x17\xd5\x27\x11\x8c\x8f\x37\x19\x59\xc4\x4c\x26\xbc\xd2\x72\xe6\xeb\x28\x09\x23\xd0\xf9\x63\x12\xff\xe1\xc6\xee\xbf\x3b\x35\x7f\x72\xb0\x10\x14\xfe\x47\x45\x3f\x51\x9a\x20\x7b\xef\xc1\xeb\x07\x0d\xf2\x6c\x18\x78\xad\xfe\xe8\x44\x5c\x67\x09\x48\x29\x4e\x64\x9f\xd6\x62\xc2\x9e\x96\x1d\x5b\x0f\xc6\x8a\x10\x44\x84\xd6\xad\xa8\xe2\x17\x21\x70\xce\xca\x7d\x27\xb1\x6f\x2e\x21\x79\xd4\x7a\x99\x4f\xc4\x30\x03\xde\x37\x1c\xfa\x17\xae\xac\x23\x48\x1c\xfa\x19\x3c\x41\xd8\x87\x70\x2b\x45\x6f\x42\x41\xf1\x27\x06\x1a\xef\x0f\xaf\xbc\x2a\xdb\xc0\x86\xc8\x17\xca\x45\x8d\xd6\x13\x69\x1c\xb3\x4f\xf0\x07\xec\x4a\xe0\x63\x43\xac\x26\x53\x6a\x56\x9d\x42\x38\xb6\x3e\xf8\x95\x7f\x2d\x18\xe0\x6a\xcb\xf4\xb3\x4c\x0a\x61\xeb\x46\x8b\xcb\xff\x21\x36\xe0\x90\xdb\x5b\x9d\x78\xc2\x50\x36\xf7\xa7\xf7\xef\x2c\x58\xe3\xa3\x2b\xd3\x3c\xe7\x73\x89\x6c\x23\xe8\xff\xdc\x9f\xb5\xf5\x54\x0c\x5b\xe9\xa8\x8e\x5d\x1a\x96\xb3\x9b\xad\x58\xc5\xec\x7b\xd8\xf4\x5e\x90\x20\x90\xa0\x7d\xec\xa4\xf2\x5d\xc2\x1a\xe7\x73\x6b\xcb\x2a\x4e\x11\xfe\x7a\xcc\xf6\x5e\xeb\x7a\x8a\x20\xa2\xed\x54\x24\xed\x74\x8a\x50\xbb\xd9\x36\xd5\xc8\xa0\x9c\x35\xbe\x26\x6e\xbe\xcf\x2c\xf5\xf4\x53\x04\xa3\xf9\x57\x45\xa3\x53\x4e\x11\x1e\x70\xf4\xcd\x9c\x93\xce\x3e\x5a\x19\x7c\xf3\x8a\x94\xa7\x36\x41\x43\xf7\x6b\x6e\x80\x0a\x07\x1b\x86\xe5\x3f\x7a\xe8\x4b\xc9\xb0\xa1\x51\xd8\xd2\x3f\xa1\x7f\x32\xe1\x68\xf4\xae\x9e\x32\xee\x8b\x2c\xd4\x3d\xc6\xc6\x58\x11\x4f\x82\x84\xaf\x75\xab\xe1\x1d\x03\x42\xa5\x8e\x6d\xa4\xd3\x87\x10\x16\xbe\x5d\x7a\xa2\xb6\xa5\x27\x8f\xf0\x3d\xed\xcf\x14\xaa\x5d\x4f\x98\xc3\x0a\x95\x31\x1e\xbe\x4d\x88\x1a\x9a\x7c\x73\x89\x4b\x1e\x61\xc9\x85\xe3\x06\x87\xc5\x92\x08\xbb\x8b\x2a\x6e\x6d\x7a\x33\x99\x30\xb9\x79\xc9\xc9\x38\xd5\x3b\x84\x89\x46\x0d\x65\x2e\x4a\x4d\x84\x99\x43\x6b\x9c\x58\xe9\xd9\x2c\xa8\x1b\x56\xf1\x73\x49\x36\x10\xd6\x7d\xa5\x9c\x1e\xbe\xa7\x84\x3f\x7a\x89\x19\xf9\x66\xa1\x84\x76\x37\xde\xcc\x28\xff\x8b\x04\x99\x3c\xbf\xc1\xe3\x4a\x37\x09\x21\xf5\x92\xba\x1b\x72\x7d\x08\xb1\xeb\x1a\x27\xfd\x31\x0a\x25\x0c\x72\x2e\x36\x88\x39\xf2\x94\x85\x05\xfb\xf8\x4e\x3f\xa9\xdb\xc2\xc2\xbb\x59\x05\x72\x23\x7f\x2e\x12\x24\x95\x23\x4e\xd6\x3f\xff\xc5\xc0\xee\x36\x67\x9e\xa4\xec\x5c\xc2\xc6\x6d\x02\x9d\x7e\xa3\xcf\x4b\x30\x73\x87\x59\xe0\xa6\xc1\x18\x82\xd6\xcb\x47\x36\x1d\x1b\xe2\x08\x2f\xfb\x4f\x66\xff\x57\xd6\xf5\x27\x79\x3b\x66\x4a\x11\x3a\x15\x48\xff\xcd\x36\x51\x16\xd4\x6e\x3e\x12\xfa\x56\x65\x44\x48\xcb\x8b\x96\x11\xb6\xb2\x24\x9c\x0b\x5d\x2f\xa3\x3d\x5d\x8d\xc0\x2d\xa6\x71\xed\x7b\xee\x24\x42\xf8\x9b\x75\xbe\xaf\xa2\xca\x08\x19\x7b\xb6\xbf\x0b\xd8\x9e\x45\x98\xfc\xd6\x39\x48\xbd\xff\x3e\xe1\xfb\x90\x6a\xdd\x1d\xca\x26\x74\x78\xaf\xea\x13\x17\xbf\x48\xb8\xbe\xf7\x80\xf8\xfc\xd0\x8b\x84\x2f\x61\x9f\x99\xad\x8f\x23\x59\x50\xf2\x97\xf3\xde\xbb\xfa\x3c\xe1\xd7\x55\xa9\x7a\x43\xa1\x1b\x6c\x6b\xce\x27\xf2\xae\x2e\x9d\x7e\x89\x60\xd0\x5b\xee\xb5\xc2\x20\x9a\xd0\x70\x34\x7b\x5b\x7b\xe3\x35\x82\x86\xac\xd8\xee\x6d\x41\xd1\x04\xee\x8f\xd6\x9b\x83\x7d\xa3\x09\xae\xea\x17\xba\xf9\xe7\xc7\x12\x8e\xca\xed\xed\xa5\x6d\xb1\x04\xa3\x1f\xc3\x07\xfd\x7f\xee\x21\xcc\x0c\x49\xdf\x61\xd6\xbf\x81\xb0\x4b\xe9\x46\x98\xb2\x53\x38\x1b\x24\x92\xf3\xba\x97\x71\xaa\x13\xb6\x2c\xcd\x5a\x54\xeb\xa1\x4c\x38\x71\x5b\x90\xe7\x78\xab\x2d\x61\x8e\x94\xbf\xc6\xba\xfc\xb5\x84\xba\x9f\x8b\x4b\xf8\x75\xc5\xd9\x50\xf8\xa4\x31\x61\xe3\x9e\x05\x6c\x78\xd3\x96\x1f\x24\x54\xd5\xc4\xe0\xd4\x32\x99\xcc\x79\x4b\x47\x18\x74\xfb\xe9\xdf\xe6\xbe\x2c\x40\xe3\x58\x9e\x14\x33\x58\x3a\xa1\x81\x41\x43\x57\x4d\xe0\x8a\x3f\x44\xa8\x5f\x5c\xa4\x57\xb3\xbe\x8d\x41\x86\x71\x57\xa4\x40\xb1\x1a\x8d\x23\x3e\xd6\x69\x39\xa7\xde\x63\x06\x16\x36\xb5\x2d\xff\x5d\x6a\xb6\xee\xb7\xcb\xb8\x2c\x61\xc8\x06\xce\xa8\x66\xab\xcb\x85\x5c\x84\x9b\x52\x9c\x13\xca\x76\x81\x41\xc0\xcc\x5d\x2d\xf9\x10\x24\x4c\x3d\x35\xe1\xaf\xc9\x86\x57\x2c\x4c\xd7\xda\xbd\xd3\x4c\x31\x8a\xa0\xff\x30\x79\xdf\x5e\xbe\x8d\x2c\x24\x6a\x95\x1c\x8b\x0a\x2f\x24\xf0\xf4\x1c\x4c\x9d\x78\xd1\x84\xd0\xe4\x3d\x75\xc2\xec\x99\xf3\xd8\x30\x74\x46\xf4\x9a\xe0\x54\x51\xc2\xe5\x37\x22\xf9\x0b\x9e\x74\x33\xf8\xa2\x27\xf0\x8d\xe3\x09\x07\xfd\x0f\xc3\xb3\x34\x5a\x6c\x55\xb3\x59\xa8\xc7\xe6\xf9\x02\xbc\x11\x84\xd0\xde\x5d\x96\x27\x07\x4d\x08\xdb\x16\x38\xcf\x8e\xdd\xf4\x83\x19\xc7\x8f\x86\xc6\x0b\xbf\x07\xeb\x4a\x70\xa1\x84\x23\x4d\xc6\x47\x94\xe0\xe3\x64\xd5\x56\x6a\x96\x46\x60\x4a\x2c\xbf\x97\x8d\xc1\xa8\xce\xa9\xef\xc6\x84\x73\x84\xf7\xd5\x17\x97\x8f\x7a\x4c\x22\x68\x3d\x74\x9b\x75\xdd\x75\x09\x1b\x76\x1b\xf3\xec\x8b\x6c\xe0\x20\x3c\x51\xf7\x59\xe7\x78\xe5\x05\x83\xc6\x97\x67\x16\xba\x5a\xaa\x10\xde\x6e\x4a\xb9\x34\x25\x45\x95\xc6\x4b\x84\xdc\x0b\x2f\xdd\xf7\x3f\x18\x04\x9e\xac\x5b\x7e\x69\x33\x17\xe1\xae\xc6\x43\xc8\x35\xc9\x11\x22\x16\x9f\x9b\x9a\xf8\xf6\x05\x61\xc7\x2b\x61\xdb\xfe\x8d\x45\x04\x39\x03\x23\xe9\x6f\x2a\x36\x84\x3a\xcf\xdb\x57\x67\xde\xfa\xce\x8c\x43\xf5\x57\x5e\x5c\x9c\x99\x22\x41\xd4\x74\xae\x63\x40\x91\x39\xa1\xe1\x56\x92\x00\x2d\x31\x26\xa4\x9e\x18\x98\x5d\xe9\xac\x4b\x98\x3d\x94\x15\x79\x7e\x48\x99\x10\x5e\xa0\x6a\xa0\x3e\x98\x48\x38\xd0\xea\xd7\x99\xfe\x74\x94\x41\xf3\xd4\x81\x0a\xcd\x2a\x41\xfa\x07\x24\x9b\x38\x43\x74\xa7\x8d\x32\x78\x2b\x22\xdb\x77\x7e\xd2\x6c\xc2\x36\x95\xab\x7c\x82\x5b\x97\xb3\x61\xf2\x42\x9e\x42\xf9\x04\x31\x82\xfe\x99\x89\x0a\xfb\x74\xf5\x08\xda\x6e\x96\xb2\xea\xeb\x23\x58\xa0\x8d\x7d\x3d\xae\xc3\xc5\x2c\xcc\xfb\x11\xd1\x70\xe2\x05\x0f\x61\x41\xb2\xb9\x7d\xd3\xc2\x4c\x16\x82\xcf\xbd\xc9\xd0\xf0\x93\x25\x70\x56\x68\xce\x38\xf4\x2b\x8b\xb0\xff\xee\x01\xfe\xe4\x28\x01\x82\x6c\x57\x8a\xfb\xf6\x83\xb7\x08\x66\x67\x24\x0b\xad\xc6\x30\x79\x81\xc5\x93\x0d\x41\x55\x84\xfa\xb8\x09\xde\x96\x63\xc5\xa0\xc5\x21\xed\xa6\xee\x36\xc2\xfb\xa6\xf4\xaf\x9b\x16\xb9\xb2\x95\xff\xc1\xf6\xa8\xe9\x83\x3f\xc6\x5c\x04\x5e\x0a\x39\xdf\xe1\x6a\x4d\x58\x77\x27\x62\xd4\xe5\xb1\x0c\xa1\xae\xef\xe0\x6e\x95\x9c\xd5\x84\x06\x5d\x1f\x6f\x87\x46\x6b\x82\xfe\xac\xe4\xb7\x85\xfe\x22\x04\x4c\xe6\x99\x9a\x2f\x6d\x4a\x38\xbd\xfa\xd4\x16\xb1\x4c\x3b\xc2\xdb\xce\xf6\x7d\xea\x07\xb6\xb0\xe1\xf5\x66\xd6\xc1\x47\x63\xa7\x4b\x2b\xf7\xe9\x87\x15\x46\x2c\x08\xf3\x07\xb9\x13\xc3\xbc\xa7\x10\xe4\x36\x8a\xad\x51\xcc\xe1\x67\x2b\x3e\xf7\x38\x3e\xb4\x84\x2d\x23\xe4\xe4\x85\x28\xdf\xe3\x5b\x4d\xf8\xb6\x2f\x3e\x73\xc8\x79\x35\xdb\x48\xec\x5e\x6f\x85\x54\x6c\x4b\x09\x42\xec\x6a\x2c\x16\x8d\x5d\xc4\x6d\xa6\x16\xdc\xe2\x38\x6a\xc2\x86\xd9\xc1\x69\x87\x86\xaa\x39\x09\xbf\xba\xa7\x56\x5c\xbd\xfc\x96\x41\xe5\xf3\xcb\x0d\xeb\x86\x1d\x09\x0e\x36\x3f\xca\xba\x22\x2c\x09\x51\x3e\xee\x1e\x16\x51\xd2\x84\x8f\x73\x0b\x4d\x8e\xfe\x58\x4a\x60\x7e\xea\x4c\x55\x88\x89\x61\xc3\xf9\x67\x15\xb1\xaa\x3c\xc7\x09\x93\x7f\xf6\x0a\xb6\x8c\xfd\x2d\x75\xc3\x99\xc7\x76\x3e\xde\xca\x06\x9f\xe6\xde\x1b\x0f\x06\xc1\x8c\xa3\xf0\x98\xde\xe1\x47\x97\x36\xd2\x38\x9e\x34\x64\x1a\x4e\x9d\x75\xa5\x04\x72\xb6\x05\x32\x1b\xc4\xa7\x10\x04\x0e\x48\xbc\xf1\xbd\xb7\x81\x0d\x8f\x23\xb4\xef\x3f\x5c\xdb\xc6\xe0\xbd\xee\x33\xbf\x6b\x8b\x36\x13\x6a\xe7\xdd\xdd\xb6\xee\x96\x0a\x41\x3e\xdb\x68\xf0\x82\xdc\x1c\x82\xc8\xa8\xa9\xad\xd2\xd8\xa5\xff\x7f\x78\xbe\x57\xe3\x0f\xe7\xb4\xed\x6c\xd0\x29\xb4\x4d\xca\xea\x58\xce\x86\xbe\x13\x55\x5c\xdf\x37\x3f\x66\xf0\x7e\x02\x47\xc5\x8e\x4a\x05\x42\x1b\x5f\x53\xf9\xce\xb1\x37\x6e\xbe\x43\xe8\xb9\x5d\x32\x2a\x34\x0e\xf0\xae\x56\x2b\xbe\xd1\xca\xe0\xdd\xbc\xa6\x7a\x59\x9b\xdf\x0c\x14\x75\x3e\xd7\xbf\x3d\xa5\x49\xff\x40\x75\xbc\xd5\xb4\x65\x99\xff\x04\x73\x50\xaa\x3d\x2c\xe9\x07\x83\x66\xf1\xa3\xbf\x84\x27\x10\xe1\x40\x52\x50\xcd\x9c\x6f\x72\x6c\x28\x5b\x68\x35\xa0\x14\xf3\x8b\xc1\xbe\x73\x81\x15\xe1\x53\x96\x12\x3c\x64\xf6\x44\x0b\x73\xd9\xb3\x41\x4a\xae\x3f\x2c\xd3\x48\x82\xf0\xa9\x7e\x5a\x4d\x6e\x19\x27\x61\xb7\x54\xa2\xb1\xf8\xcf\x2d\x04\x11\x9d\xa5\xf3\xb5\x3f\x95\x13\x84\xd6\xf6\x3a\x2a\x7c\x28\x27\xf8\x25\xe5\x2e\xdd\x7a\xa9\x9c\xa0\x77\xb7\x42\xe9\xbf\xd2\xed\x98\xb6\xf8\x3f\xbc\xb7\x12\x14\x7b\x32\x2f\x81\x90\xb2\x45\xe8\x43\xed\x18\x26\xad\x48\x2a\xd2\xde\xb2\x90\xe0\xff\xb5\xff\xda\x63\x5d\x5d\x36\xe8\x57\xaa\xcf\x5f\x79\x56\x80\x20\xb3\xfe\x6b\xca\x16\xd3\x0a\x06\x87\x3f\x30\xba\x67\xfa\x05\x08\xaa\xae\x7f\x79\xd5\x3b\x9f\xb2\xd0\x38\x28\xb1\xe9\xec\x58\xf9\x1f\x42\xb9\x75\xbf\x96\x5b\x65\x33\xe3\x28\xec\x32\x5c\xc0\x0d\x0d\xfa\x07\xac\x03\x33\xdb\xfb\x1a\x86\x99\x7f\x60\x60\xf7\x39\x96\x93\x7a\x7b\x09\xb8\xf2\x9e\x3e\x8a\x88\xb3\x22\x4c\x8a\x7d\xfb\x52\x7a\xd6\x22\x36\xf8\x39\x5c\x7e\xf9\x36\xe2\x2d\x83\x77\x2e\xb9\x77\xe2\xbe\x13\xa1\x6f\xc7\xca\x90\xc5\x8b\xa5\xd9\xe0\xea\x96\xcd\x9a\x5d\x31\x9b\x50\x27\xd1\xb6\xd8\xe4\xbb\x38\x81\x5b\x31\xef\x76\x4d\x9f\x24\xe1\xf6\xa4\xd1\x21\x1d\x7b\x35\xc2\xd9\x49\x96\xbd\xab\x1e\xca\x10\x36\xee\x1e\x9a\x1d\xfe\xb2\x99\xc1\x6c\xdb\xb4\xb0\xb5\x6a\xd2\x84\xcc\x2c\x57\x77\x21\x8e\xef\xcc\x38\x22\x0a\x27\xbe\xdb\xc4\xfd\x8d\x41\x43\x6a\x57\x62\xad\x56\x2a\x0b\x79\x57\xbd\xee\xf2\x72\x70\xd1\x38\xb4\x9a\x2a\x6f\x6e\xfe\xcc\x41\x98\xb9\xbb\x6a\x26\x7a\x4a\xd8\x30\x12\x19\xd7\xe8\xf2\xb1\x84\xd0\xbf\x43\xdb\x7d\x70\xac\x5c\x7a\x19\x67\xd7\x35\x7d\x29\x61\xdb\xba\xa3\x8a\x5b\x58\x09\x84\xe0\x41\xab\xa6\xb9\x0b\x45\x08\xd6\xd2\xdb\x7e\x6b\x30\xdb\x08\x7b\x8c\xe6\xcb\x9e\x77\x52\x20\x24\x6c\x3d\x27\xf0\xc6\xc2\x9a\x70\x6a\x4b\xc2\x89\xd3\x07\xcd\x08\xb1\xf9\x16\x1b\x24\x98\x11\x06\xa5\x95\x92\xfc\x6a\xb3\x8b\x58\x10\x37\x94\x09\xf9\x2a\x2d\x44\x60\xe2\x14\x5e\x9c\x6f\x34\x23\x88\x89\xa7\xcc\x59\x3a\x75\x94\xc1\x93\xb6\xbf\xf9\x03\x7f\x67\x11\x96\x6e\x7e\x97\x12\xfe\x6e\x32\x61\x56\xe9\x3d\x4d\xb9\xc5\x2b\x08\xdd\xbc\xa5\x6d\x9f\x15\xa4\xd8\x8a\xe7\xc1\xe6\x62\xdb\xd1\x4b\x04\x1e\xe5\x0d\x67\xcf\x71\x5c\x66\x2b\x0a\x8b\x91\xfb\x20\x2d\x9c\x0d\xee\x56\x5f\x14\xf3\x8e\xfe\x61\x80\x8e\x47\x47\xac\x76\x09\xd3\x3f\x90\xfe\x44\x78\xc2\xd7\xe2\xf6\x12\xac\x7a\x43\xf5\x7d\x1f\x06\x18\x3c\x51\x30\x98\x6b\xdc\xa5\x4f\xe3\x50\x38\xd8\x71\x98\x99\x26\xcd\x86\x23\x1b\x8e\x1d\xde\x38\xf6\x88\x4e\xd9\xf4\x7d\x54\xd1\xc0\x8f\xf0\x7e\xea\x52\xed\xa1\xd7\xc1\x6c\xa5\xe3\x98\xcc\xdc\x70\xa7\x40\x66\x1c\x79\xd7\x24\xcf\x1c\xbf\x68\x4c\xd8\x97\x7b\xd6\xc9\xc6\xd2\x84\xc6\xcb\x12\xf5\xc4\xd5\x3b\xce\x2b\xff\x0b\xd1\xf1\x71\x3b\xbe\xbd\x18\x64\xc6\xf1\x79\x63\x8a\xcd\xcf\xaa\x3f\x0c\x86\xee\xf1\xf3\x5f\x14\x5c\x46\x48\xce\x5d\x64\x5c\x35\x76\x70\x18\xe9\x5e\x74\x67\x52\x89\x32\xc1\x77\x4a\xf3\x85\xb8\x2b\x4f\x19\xac\xd9\xd3\x6b\xbf\x6e\x2b\x17\xfd\x03\x47\x5b\xb5\x64\x84\x5b\x73\x99\x7f\x40\xf3\xfe\xd3\xda\x6b\x0d\xaa\x04\x93\x39\xd3\xec\x75\x46\x1b\x4b\x50\x8f\xf7\x5a\xcd\x97\x65\x69\x1c\x47\x39\xc3\x44\xf5\xc4\x26\xb0\xe1\x11\x56\xa5\xec\x57\x22\x36\x08\xec\x2f\xae\xdf\x27\xfd\x99\xc1\x86\x97\x87\x5b\xd2\xce\xeb\x10\x70\xf9\x5d\x96\x0c\xde\x31\xa8\x57\xae\x8d\x7f\xf7\xab\x80\x20\xbb\xc8\x70\x7a\xf1\xbb\x02\xc2\xe5\xaa\x81\x27\xff\x95\xff\xc1\xc0\xc6\xd8\xa7\xef\xe0\x02\xc2\xe0\x57\x51\x19\xb5\x24\x67\x82\x82\x68\x5a\x6f\x8b\x88\x39\xe1\xeb\xaa\xd5\x62\xbc\xdb\x74\x09\xf5\xbb\x4e\x5e\x30\x3f\x39\x8b\x30\xab\x69\x45\xa3\x7c\x70\x1c\x0b\xcf\x66\xae\x6b\xb5\x7c\x5c\x41\xe3\xf8\xa1\xfd\x21\x56\xaf\x95\x1d\x7d\x0b\x8f\x06\x5c\xb8\x53\xca\x56\x7e\xbe\x61\x1e\x8f\x98\x5b\xfc\x0b\x32\xa1\x8a\xcc\xe8\x4b\x05\x82\x43\x4a\xd8\x8f\x67\x1e\x19\x84\xe8\x4c\xff\xe9\x09\x99\xe9\x84\xc3\x9a\xc3\xf2\xdc\x2f\x6f\xb1\xa0\x5c\xd5\x37\x6f\x28\xb1\x94\x30\xe5\xed\xcd\x70\x2e\xdb\xdd\x84\x9c\x07\x0d\x3f\xb3\xbb\x8e\x11\xae\xff\xb6\x5d\x77\xee\xf1\x01\xb6\x91\x42\xa3\x8f\xf7\x3d\x0f\x01\x02\xa3\x9e\xae\x57\xb2\x78\x2a\x41\x63\x3a\xbf\xd5\xd1\xab\x61\x6c\x50\xdc\xfe\xf0\x6f\xb1\xe6\x31\x42\xd2\xeb\xd2\xa4\x3c\x7b\x41\x42\x99\xeb\xd3\x8a\xda\xee\xf9\x04\x8b\x2c\xb3\x53\xaa\x41\x76\x6c\x88\xf4\x7d\xae\x99\xf9\x47\x80\xd0\x50\x78\x77\xae\xc1\xa6\x70\xc2\x09\xab\xdd\x33\x5d\x9e\x0e\x33\x70\x6c\xdf\x3d\x27\x53\x52\x87\xb0\xf3\xd8\x99\x98\x5f\x52\x11\x84\xd4\x0e\x95\x87\x3b\xce\x76\x33\xe3\x58\x26\xcc\x64\x7f\x53\x2d\x2f\xc1\x0b\x0b\x43\xdf\x94\xba\x59\x04\x65\x91\xaf\xf9\x13\xdf\x76\x33\xc8\x13\x76\xea\xd3\x89\x09\xa2\x71\x5c\x3b\xda\x5e\x6e\xb6\xda\x9e\x20\xf7\xa2\xe1\xe6\xe4\xc5\x33\x08\x87\xdf\xc4\x4c\xeb\xe5\xf8\xc5\x8c\xe3\x81\x68\xe8\xb2\xea\xdc\xb5\x84\xc4\xe9\x89\x9f\xd3\x07\x96\xb0\x21\x39\x69\x78\xd1\x8b\xc3\x23\x0c\x36\xc9\xcd\x59\x79\xac\xe6\x05\x83\x9e\x56\xbb\x9f\x5e\x8f\x3e\x31\x48\x77\x09\x8b\x93\x32\x48\x21\x9c\xc8\x74\xcf\x3c\x6f\xc7\x4b\xd8\x68\x3f\xe3\xcf\xaa\x81\x8d\x84\xf5\x85\x26\x9b\xfb\x5d\x1d\x09\xfe\x0f\x8e\x9f\xaa\x93\xd4\x20\x7c\x2f\xbf\x6c\x55\xdd\xbb\x86\x20\xfe\x85\xa7\x22\x43\x55\x84\xad\x5c\x5f\x70\x63\x13\xcb\xf7\x05\x83\xb5\x71\x2f\xe4\xee\x2f\x9c\x4c\xd8\xc5\x77\xb3\x25\x70\xd6\x65\xc2\x95\xee\xf7\x8b\xce\x8c\x61\xe4\xe4\xe3\xfb\xbf\x0f\x45\xb0\xe1\xf8\xb3\x16\xa9\xd6\x32\x3b\x42\x5c\xaa\x1d\x39\xba\xcd\x21\x7c\x9e\xa9\xa9\xf9\xfc\x72\x01\x81\x7b\xc6\x9a\x99\xa7\xd2\xb2\x58\x70\x79\xb2\x60\xc6\xd2\x83\x95\x84\x93\x2b\xaf\xc6\xfd\x37\xb2\x18\x70\xac\x3f\xb4\x77\x0e\x1b\x18\xc5\x37\x53\x72\x0e\x16\x10\x3e\xbc\xa9\x6f\xb9\x10\xdc\xcc\x56\x76\xb4\x59\x73\x5d\xcc\x10\x25\x4c\xff\xd9\x51\xb3\x75\x6c\xf1\xdc\xe3\x6a\x93\xce\x30\x0f\x08\xdc\xfd\x3d\x45\x73\x9a\xab\x08\x05\x99\xf3\x02\x6d\x47\xb2\x09\xc7\x45\x3b\x9d\x8b\x3a\x0c\x08\x52\x7a\xe7\x9b\x66\xd6\xaa\x13\x02\x84\xbb\x0d\x4e\xf6\x2e\x21\x6c\xfd\xb1\x2b\xff\x6d\xda\x64\x36\x28\x73\x4e\xdc\x11\xf2\x74\xa4\x04\x99\x1b\xcc\x1c\xb5\x1a\x4f\x10\xee\x5d\x09\xcd\x3d\xf3\x48\x8b\xa0\x63\x50\xf3\xec\xc9\x3e\x7b\xc2\xb2\xd5\x4a\x45\x9f\xcd\xc7\x0e\xed\x47\x06\x1f\xc7\x6e\x5e\xc9\x86\xfb\xd1\x82\xfe\xb3\xed\xbc\x4a\xb0\x46\x22\x65\x6a\x50\xe5\x6c\x82\x99\xd3\xb7\x4f\x75\x29\x96\x6c\x10\x17\xd1\x38\xbd\x76\xe9\x66\x42\xd5\x27\xe1\x99\x82\x5a\xf2\x84\x27\xa5\x57\x4e\x7c\x14\x9f\x46\x08\xd9\xd7\x5e\xa3\xf6\x27\xf0\x5f\x10\xfd\x7b\x6d\xa5\x62\x7d\x2e\x1b\xcc\xf7\xed\x1f\x55\x18\x43\x4d\xf6\xcc\x7b\xed\x11\x05\x84\xb4\x42\x8e\x17\xaa\x91\x05\x84\xaf\x7c\x53\x99\x80\xb1\x37\x2e\x7b\xe2\x48\xe9\xcd\xbf\x5b\x09\x4e\xaf\xaf\x7d\x8d\xb9\x65\x49\x38\x1e\xa4\x16\x67\x6c\xa0\x4f\xd8\xb3\x78\xe0\xcc\x79\x13\x51\x82\x81\xfa\x85\x8c\x4b\x8b\x04\x08\xea\xfa\xdc\x1b\x6a\xfe\x24\xb1\xb0\x35\x7e\x60\xd0\xea\x3d\x07\x61\x54\xe5\xbb\x64\x67\xa2\x2a\x61\x70\x3f\x9f\xf1\x4e\xbf\xe5\x84\xd3\x8f\xa4\x4a\xfa\xef\x05\xb0\x61\xf3\xc0\xf6\xdd\xe6\xdd\xee\x84\x91\x97\x5e\x83\x9e\x47\x78\x09\xb7\xf3\x0f\xfe\x9a\x13\x62\x49\x38\x10\xa6\x79\xfa\x55\xc3\x7a\x42\xb4\x48\xf5\xfd\xc8\xb7\x8b\x09\x3a\xa7\x1c\x2e\x4e\xf8\x21\x49\x78\x2b\x99\x1d\xb2\xe3\xef\x0f\x06\x26\xd1\x8a\x29\x25\xaa\x39\x2c\x7c\xf8\xcc\x37\x45\x93\x23\x81\x50\x15\xd2\x58\x97\xff\xa1\x90\x10\xbc\xf6\xff\x47\x79\x9f\x07\x63\x19\xf7\xff\x1f\x77\x45\x42\x8a\x28\x7b\x65\x4b\x21\x2d\x84\x50\xc7\x9b\x90\xb4\x92\x54\x64\x29\x22\x21\xa9\x2c\xa5\x92\x10\x15\x29\x92\x25\x65\x0d\x51\x2a\x22\x22\xe7\x69\x49\x1b\x42\xb6\xa4\x24\xa2\xb4\x2f\xe4\x85\xd2\x3d\xba\x67\x2e\xe7\x35\xf7\x35\xdf\xf9\xdd\x7f\x79\xcc\xf3\xfd\x31\x63\x39\xe7\x38\x3e\xef\xec\x5b\xd3\xea\x53\xd9\x88\x9d\x65\x2e\xb5\xee\x52\x31\x61\xed\xa1\x80\x6f\xa2\xa3\x67\xb2\x56\x1e\x37\x51\x9f\x6f\x42\x10\x4d\xd3\x77\xba\x72\x52\x93\xf0\xed\xd8\xd0\x81\xb0\xd1\xd5\x53\xfd\x90\xc3\x59\xc3\x94\x6b\x6c\x84\x3f\xdb\xb6\x96\xbf\xe8\x14\x8d\x41\x44\xca\x63\xc1\xb6\x35\x4b\x09\x45\x8a\x0d\xd5\xdd\x7e\xca\x1c\x38\x16\x9e\x27\x51\x2a\x70\x8e\x8d\xa5\xec\x77\xc1\xf3\x1d\x73\x09\x43\xce\x13\x2b\x37\x5d\xea\x62\xb0\x15\x9f\x24\x78\x53\x7a\x38\xa0\xb4\x3f\xb3\xbf\xfb\xe0\x0f\x0e\xe8\xa8\x85\x0e\xfe\x34\xd8\x41\x63\x50\x4c\xfb\x72\xe7\xe3\x35\x59\x0e\xbc\x9a\xfe\x6d\xbe\xfa\xd5\xdb\x6c\xec\x7a\x23\x19\xdb\xbd\x39\x87\x70\x7c\xe4\x77\xcc\x6a\x89\x7c\xc2\x78\xd9\xd7\xbe\xa7\x9f\x7f\x62\x50\xa0\xa1\xa1\xc6\xcd\xbd\x80\xf0\xfc\x98\x48\xb9\x57\xe1\x11\x36\xec\x42\x32\xf4\x95\x5c\x5b\x19\xe4\x5d\x7b\x90\x2e\xdf\xb6\x92\xc6\x70\xaa\xa4\x3f\x76\xcd\xf8\x69\x04\xd5\xa9\xd3\x1e\x47\xdf\xd8\x4e\x78\xbd\x3d\x73\x36\xeb\xc2\x46\x02\xbb\xee\xfd\xd3\xe5\xfd\x8b\x09\x87\x16\xc7\x3e\x59\xfe\xf5\x2c\x41\xb6\xc6\xc6\x7e\x4f\x81\x34\xa1\x39\x69\xb8\x45\xe1\xb6\x10\x61\x93\xfa\x96\x97\x65\x07\x4a\x09\x4e\xdc\xe2\x01\xa5\xa3\xd8\xbe\x3b\xa0\xff\x1f\x5e\x45\xe7\xdb\x85\x3d\x67\x11\xfc\x3e\x68\x34\x85\x8e\x22\x55\x3e\xdb\x98\xf5\x92\xc5\x31\xb2\x6a\x11\xba\x24\xca\xb3\x83\x60\xa4\x1f\x1c\x34\x72\xae\x8c\x20\x58\x77\x2b\xf7\x1f\xfe\x53\x2a\x0a\x8e\x72\xaf\x62\xb1\x09\x02\x3a\xb5\xcc\xca\x0a\x36\x41\x2e\xdc\x5b\xeb\xc2\xa3\x72\xc2\xd6\xa6\x67\xdb\xff\x8d\xbc\xbb\x86\x7b\xba\x8c\xc4\x08\xe6\x65\x06\xc7\x0c\xf5\x84\x08\xe2\x6f\x1d\x55\xb3\x86\x76\x12\x6a\x1d\xbc\x28\x58\x46\x91\x90\xd9\x99\xb5\x6f\xfb\x9b\x25\x84\xbb\xf7\x94\x6f\xf1\xca\xcc\xe0\xc0\xc1\xf1\x91\x2f\x57\x5d\xf8\xc3\x40\xe8\xfe\xc7\x76\x69\xf3\x79\x04\xee\xaf\x32\x36\x86\xc2\xfb\x08\x62\x49\xdf\x30\x94\x33\x8d\xd0\x60\x50\xa3\x6f\xe5\x33\xcc\x40\x96\x67\x89\x28\xd7\x9d\xab\x84\xcd\x3e\x7c\xef\x27\x8c\x62\xc3\x9f\x90\x0f\xe2\x75\x31\x6c\x7c\x8c\xb2\x35\xfc\x37\xfa\x0f\x3c\x2e\xc6\x14\x3d\x15\xb6\x22\x68\x3e\x9e\x46\x9a\xde\x17\x39\xca\x7f\x50\x6f\xb5\x79\x30\xe5\xf0\x34\x42\xfe\x2f\x99\x93\x8d\xfa\xaa\x84\x28\x19\xfe\xda\xb7\xbb\x56\x71\x20\x6b\xc2\xa1\x37\x0b\xb9\x1b\x18\x94\xdf\x91\x11\xb9\x95\x7a\x83\xb0\x36\xd1\x63\x99\x68\x5f\x04\x61\x96\xac\xd7\xec\xbb\x11\x56\x04\x5e\xb3\x17\x4b\xa5\x3c\x8e\x12\xac\x36\x9d\xfc\x53\xe6\x36\xcc\x40\xd2\xef\xec\x40\xe8\x8c\x24\xfa\xbf\x90\xe9\xdd\x2f\xd2\x6f\xbd\xe9\xff\x84\xc5\xbd\x03\x2d\x29\x85\xe2\x84\xae\x0b\x0a\x15\x67\xea\xe7\x10\x1a\xcc\x0b\x1e\x7c\xe7\x23\xc2\x02\x56\xb3\x9c\xbb\xd0\x1c\x82\x52\xee\x9e\x12\x01\x89\xbf\x0c\xb6\xe7\x0b\x66\x99\x14\x1a\x12\x56\x6c\x9f\x53\x23\x1c\x57\x46\x78\x29\x2e\x74\xe7\x1f\x04\x7f\x17\xfd\x79\x29\xfd\x86\xc1\x56\x69\xff\x80\xad\x58\x4b\x70\xc9\x52\x31\x9d\xe4\x30\xc2\xc0\xb9\xe5\x8a\xe6\xe0\xa3\x00\x1a\x43\x77\x6d\x95\xa0\xf4\xd2\x0b\x6c\x4c\x7e\xf5\xfd\xe5\x2e\x3e\x37\xc2\xc4\xd0\x4b\xc9\x37\x1b\x8b\x09\xcf\x0b\x8f\x6e\x11\xdf\x19\x4c\x50\xd3\x99\xaf\x97\xfc\xae\x98\xd0\x11\xb6\xf7\x3d\xeb\x8e\x32\x61\xfe\x01\xfd\xca\xfa\xc8\xc5\x04\xde\x9e\x59\x79\x2b\x27\xad\x64\x63\x43\xd3\x8c\x23\x31\x46\x57\x09\x17\x26\xa9\x94\x96\x05\xc9\x71\xc0\x4f\x62\x7b\x6c\xf1\xec\x61\x06\xaf\x46\xda\xdf\x7e\xbb\x72\x83\x10\x61\x99\x79\xdc\x27\x21\x9d\xb0\xbf\xe1\x6d\x4e\xa9\xab\x1b\x07\xec\x3f\x59\x7a\x97\xf6\x7f\x67\x50\xa9\x62\x73\x7c\x8a\x41\x01\x61\x7b\x8d\x7a\x4b\x66\xf7\x1e\x0e\x48\xde\xd9\x75\xb2\x79\xe6\x12\x02\x93\xf3\xce\xf5\xd6\xb3\xdf\x0c\x9c\x52\xb2\x4e\x39\x9a\xaa\x12\x32\x9b\xaa\xab\xb7\x4d\x36\x23\xa8\x3e\x2d\x0b\xfe\xf1\xd6\x9c\x03\x0b\xf8\xad\x6f\x7d\x5f\x71\x9a\x03\xa7\xed\x94\x36\x4e\x66\xc7\x10\x6e\xdf\xb8\x79\x6b\xaa\xca\x24\xc2\xdd\xf8\xfb\x1e\xeb\xba\x26\x11\x7a\x8f\x9a\x5b\x28\xdd\x5f\x45\xe8\xa3\x8b\x43\xa5\x1b\x2c\x38\xe0\x32\x77\xd9\xf1\xdf\xd2\x8b\x68\x70\xf5\x8b\x13\x7c\x4f\x36\x13\xaa\x76\x3f\x18\xfc\xb4\x4d\x87\x90\x70\x35\xbb\x81\xdf\x74\x22\x41\x67\xbe\xa1\x5d\xdd\x74\x73\xc2\xf8\xd9\xfb\x5e\x37\x6a\xe9\x11\x9c\xfa\xe6\xac\xb8\x77\x77\x2a\x21\xb6\x53\xe9\x4f\xae\x9f\x08\x61\xe1\x32\x33\x35\xf7\xfd\x3f\x18\x7c\xc8\x0e\x12\x8c\x99\x67\x42\x78\x69\xe4\x6e\x39\x14\xae\x48\xb0\xde\x26\xb8\x7e\xdc\x44\x39\x42\x7e\x85\x96\xb5\xf9\xc3\xef\x0c\x04\xd3\x93\x6b\x46\x7e\x2d\x25\xdc\xd3\x3f\x52\xdf\x6e\xa8\x47\x30\x99\x55\xa1\x25\x67\x92\xc7\xc6\xfb\xcc\xc8\x92\x81\x17\x47\xd8\x28\x68\x6e\x2c\xb9\xef\x9c\x4f\xf8\xd0\xbc\xe9\x58\x7d\x60\x25\xa1\xba\xc7\x5c\x24\x4e\x55\x82\x10\xa5\xb6\x7f\xaf\xee\x27\x43\x82\x59\xb3\x97\x8e\xdd\x9b\xe5\x84\x8b\x37\x93\x87\x14\x26\x0f\x32\x10\x10\x70\x94\x10\xbb\xa6\x4b\x48\xf8\xb1\x63\xf5\x15\xfd\x10\xc2\xaa\x4d\x77\x0a\xb6\x29\x69\x11\x36\xb3\x54\x8b\x9e\x7d\x2e\x22\xcc\x9e\x5a\xcf\x5b\x7d\x84\x9b\xb0\xd9\xf2\xfe\x8e\x2f\xb6\x86\x84\xfa\xa1\xc1\x7b\xac\xea\xa5\x04\x49\xfe\x75\xe7\x07\x27\xca\x12\xa2\xfc\x6f\x9a\x4f\xff\x23\x4f\x30\xd7\x50\xfd\xb0\xee\xca\x5f\x06\xfd\xb6\x79\x0e\x01\xbd\x1f\x19\x98\x94\xfc\x3a\xce\xab\xc5\x47\x58\x5c\xcc\xaa\x97\xdd\xa5\xc5\x01\x01\xad\xb5\x6b\x43\x65\x94\x09\xf7\x2b\xc4\x87\x3b\xbc\x4b\x18\x5c\xb4\xda\x96\x97\xaf\x6a\x4d\x60\x56\x8e\xf8\xed\xda\xe8\x40\x63\xe5\xac\xf3\x1d\xd5\x08\xd3\x5e\x06\x4b\x2e\xbd\x79\x16\x2e\x9f\x41\xf0\x73\x2d\x99\xe8\x29\x5b\x48\x38\xfc\xae\x44\x58\x03\xca\x04\x11\xdf\x3f\xe1\x16\x36\x9b\x09\x8e\xbd\xd9\x9e\xf1\x22\xc6\x1c\xf8\x22\xad\x7b\x2c\xee\xac\x38\x07\x16\x88\x2c\x09\x49\x0e\x7c\xc8\x40\xc7\xb9\xb5\x3a\x62\xb0\x84\x70\xec\x83\xcd\xae\x7d\xac\x41\x06\x3e\x0f\x2c\xb7\xcf\xae\x52\x27\xa4\xcc\x71\xc1\xfb\x35\x0e\x84\xa9\x6e\x82\x56\x41\x77\xed\x09\x06\x71\x01\x6f\x5e\x24\xef\x20\x14\x86\x8b\xd5\x15\x2e\xd6\x21\xb8\xba\xbf\xbb\x3d\x62\x2b\x4a\x48\x3a\x51\x66\xbc\x6d\x8a\x29\x07\x0e\x3f\xbc\xb2\xed\xf1\xed\x2a\x06\x9b\xdb\xf9\x8e\xb9\xeb\xf8\xb3\xe1\x69\x92\x7d\x6a\xcd\xcf\x0a\x42\xf5\x22\x9f\xe7\x27\xa3\x4a\x09\x3a\x07\xfe\x84\x3b\x5d\x64\x13\xda\x3f\x14\xb8\x3c\x1a\xae\x20\xa8\xbc\x93\x39\x3a\x7c\x26\x8e\x8d\xf5\x9d\xb6\x91\xc9\x96\xe3\x09\x4d\x6d\x79\x92\xb2\x27\x2e\x10\xe4\xfc\x96\xb1\x9d\xda\xef\x12\x5e\xf3\x5c\xeb\xfc\x78\xe1\x2e\xe1\xb3\xc0\xae\xcf\xff\xca\x46\xe3\xb5\xd3\xe6\x3c\xdd\x4a\x50\xde\x7e\x5e\x73\x77\xe8\x4e\x42\x50\xae\x73\x95\x70\xe9\x31\xc2\xd2\x06\x95\x3a\xed\xa6\x20\x36\x4a\xd4\x1e\x6d\x7d\x37\x6c\x47\xd0\x75\xf8\x92\xb1\xd6\x70\xf4\x9e\x68\x7f\x94\x4b\x5c\x77\x3a\x41\x41\x4c\xe1\x60\x48\xb6\x21\x1b\x5b\x0e\xb4\xe4\xef\x67\x79\x12\x5e\xc6\x3d\x78\x32\xef\xa2\x04\xe1\xaa\x4a\xc8\x6e\xb3\xc0\x52\x02\x97\xfd\x06\xf1\xd3\x9f\x8f\x13\xee\x5e\xea\x10\x74\xcd\xcf\x23\x28\x3c\xff\xd6\x38\xee\x4e\x1e\xa1\x7e\xc7\x25\x87\xbf\xa3\x85\x7d\xae\xad\xe4\x5f\x69\xde\xd6\x57\x6b\xa6\xeb\xcc\x81\x3c\xfb\x25\xcd\x2e\x3b\x76\x73\x20\xf6\x0e\xf7\x12\x27\x81\x9d\x84\x8f\xd1\x96\xab\x0e\xb1\x67\x11\x2e\x2c\x55\x9a\x98\x9a\xa6\x41\x18\xbe\x7b\x48\x82\xdf\x48\x8d\x50\x5d\xba\x6e\xe3\x69\xee\x3f\x0c\x36\xaf\xd4\x38\x97\x6d\x23\x4e\x98\xb1\xef\x79\xb6\xf1\x9f\x2c\xc2\xaa\xe9\x0b\x56\xaf\x50\x6a\x22\xd4\xa8\xc9\xdd\xe0\xaa\x2b\x25\x04\x46\xe4\x49\x69\x6a\x07\x12\x54\x02\x8c\xad\x26\xf5\x26\x11\xec\x83\x5e\x1f\x9f\xbc\x58\x86\xf0\x8a\x3f\x8f\xe7\x15\x8f\x28\x07\x6a\x0b\xad\x94\xb9\x9e\x38\x70\xa0\x3c\x33\xf0\xec\xf7\xe4\xa9\x84\xc4\x07\xef\xa2\x67\x9d\xe4\x21\x4c\x32\x77\xfb\x14\xbb\xdd\x81\x03\x4a\x45\xb1\x96\x1f\xf7\x2f\x22\x70\x9b\xfa\x9a\xcc\xde\xbe\x8b\x20\x5b\xe9\x34\x3c\xdf\x66\x23\x81\x6b\xce\xf9\x6e\x6f\xef\xe7\x84\x60\xcb\xbe\x9a\x61\x6d\x16\x21\x36\xf7\x96\xf7\xed\xc6\xeb\x6c\x74\x7e\xda\x7e\xfb\xf2\x5c\x16\xc1\x73\xf3\xa5\x6d\xc6\x0b\xcd\x08\x53\x4d\x4e\x2f\x3a\x6d\xda\xc8\xc6\xe3\x43\xbd\x6d\x30\x5b\x4c\xf0\x98\x94\x37\xbb\xbb\x38\x87\xe0\xce\x3f\x61\xf1\xeb\x09\x65\x84\xba\xf7\x13\xed\xb7\x67\x97\x10\x82\xb8\x44\xd6\xb5\x66\xb2\x08\x71\x8a\x0e\xcd\xa7\xdc\x13\x08\x8e\x91\x9f\xa6\x5d\xfa\xf1\x93\x05\xde\x71\x4f\x8f\xea\x3d\xae\x27\x14\xeb\x6a\x45\xee\x40\xe6\xe8\x8a\xaf\xe0\xd2\xc9\xad\x41\xe8\x3c\x1c\xb2\x4f\x28\xe5\x2c\x61\xad\xd1\xda\x33\x49\xbe\x69\x1c\x65\xc5\x39\x6f\xdb\xc1\x62\x3f\x82\xea\xce\x01\xc1\xb9\x45\x6b\x08\x6a\x6e\x53\x06\x95\xaf\x28\x12\xee\x39\x18\xf4\xe6\x36\x31\x84\xee\x3d\xa7\x15\xce\x9a\x5c\x27\x64\x44\x46\xcd\xda\xc9\x57\x41\x38\xa6\xa5\x70\xfa\x77\x7c\x39\x61\xfa\x88\xf1\x9c\xe0\x0d\xa3\xb7\x0c\x2e\x97\x6f\x0e\xa3\x23\xab\xb3\x42\xcb\xd6\x4b\xba\x70\xe0\x7c\xf5\x01\x6f\xae\x6c\x05\xc2\xc1\x8e\x1f\x29\x6b\xa3\xd7\x10\x04\x27\x5f\x3f\xf9\xa4\x89\x87\xa0\x9e\xdd\x24\x6d\x37\x45\x9f\x60\xd0\x73\x66\xf9\x8e\xf1\x89\x1c\xb0\x98\xd5\xb6\xa4\x61\xf4\xbe\xe0\xfe\x52\xd7\x5b\x45\x4d\x89\xa0\xfe\x51\x37\x99\x5f\x5d\x90\x50\xad\x61\xe2\xbe\x67\xdb\x78\x02\x57\x8c\xc1\x20\x4b\xf3\x1c\x21\xd0\xa4\xa5\xdc\x64\xc1\x32\x82\xc8\x65\xbf\xe5\xbb\x7c\x2c\x08\x2a\x9b\x0a\x16\xd4\xe8\xf3\x73\x60\xfa\xb1\x4a\x0d\x95\xb0\x7a\x16\x34\x06\x59\x4b\xf6\xbc\xca\x22\xf0\xb9\xcf\xb0\x51\x9e\x76\x91\x8d\x1d\x89\x41\x6f\xc5\x34\x83\x09\x03\xcb\x9d\xef\x8a\x6f\x50\x1f\xbd\x53\xfc\xe8\x6b\xfb\x92\x4f\x38\x50\x74\xa2\xb8\xa0\x3c\x9d\xd0\x5b\xf7\xed\x6d\x94\x04\x9b\xd0\x63\x19\x61\x20\x38\xff\x2d\x41\x27\x61\xe3\x38\xa1\xda\x87\x04\x8d\xea\x7a\x9d\x00\x3a\x40\x90\x72\x28\x15\x09\x53\x3b\x49\x08\xf0\x2d\x51\x0c\x5c\x10\xc1\x86\x55\xda\x24\xb3\x0c\x87\x78\xc2\x36\xbf\x97\x37\x15\x12\x42\x08\x8d\xda\xdf\xa4\x4c\xe7\x9e\x20\xe4\xdc\xb5\xab\x0a\xf0\x0b\x26\xc8\xde\xe5\x6f\xf3\x6e\x0d\x21\x68\x75\xcc\xfa\xd4\xfb\xb1\x94\x60\x27\x5f\xfe\x98\xfb\x49\x04\x61\xcf\xf2\x8e\x38\x3b\xdb\x43\x84\xe7\x4b\x78\xfb\xdd\x77\xf9\x13\xda\x35\xb8\xe8\xbe\x33\x2f\xa1\xa5\x2b\xfb\x59\x0b\xdb\x98\x8d\x81\xaf\x62\x2b\x32\x74\x9a\x18\x5c\x7a\xd7\xe1\x1d\x61\xdc\xcf\x20\xb8\xe9\x44\x80\x66\x5c\x1b\x7b\xac\x6c\x9c\xb3\xe0\x6b\xd3\xa9\xf1\x84\xb2\x9c\xc8\xcb\x7a\x76\x86\x84\x13\x2b\xec\xbc\xce\x9d\xf1\x21\xb8\xf7\x99\x3a\xa6\x7c\xbf\xc9\x81\x0f\xeb\xb8\x8f\x9b\xb9\x35\x72\x94\xe0\xed\x19\x31\x49\xa3\xb8\x17\xfe\x54\x92\xff\xaa\x33\x61\xba\xa4\x84\x57\xd1\x6a\x3b\xf6\x58\x71\x74\xe2\x33\x09\x88\x0e\xe4\x28\x82\x0d\x81\xdc\xbd\x5e\xcb\x09\xca\x81\x3a\x5b\x66\xcd\x36\x26\x3c\x5d\xf9\xb4\x6a\x43\xe1\x66\xc2\x67\x8b\xf8\x4b\xa5\xab\x8a\x09\xe7\x72\x26\x86\x9d\x99\x51\x4c\xf8\x30\x78\xaf\xb5\x67\xce\x75\x82\xb6\x47\xdf\x9a\x8b\xa9\x39\x84\xf1\x03\x93\xcf\x0e\xdd\x28\x26\x94\x3c\xb1\x12\xd5\x5f\xef\xcc\xc6\xef\x17\x73\x52\xde\xdc\xbd\xc9\x46\x88\xe0\x5f\x0d\x69\xcf\xa5\x34\x86\xd6\x8a\xe3\xaf\xf5\xd2\xc2\x08\xbd\xb5\x8f\x78\x4a\x42\x72\x09\x2a\xbf\x63\x33\xc7\x47\x6a\x10\x82\xb4\xb7\x8c\xff\x3b\xf9\x36\x1b\x5b\x3e\xc8\x4f\x3e\x1d\x29\x40\xb8\xa8\xf4\xe7\xc7\x53\xc9\x26\x06\x21\xa7\x43\xf6\xb9\xef\xc8\x64\xe0\x93\xb8\xf5\xfa\xbc\xa7\xc2\x84\x64\xc5\x0b\x57\x8a\xc5\xe4\x08\x1b\x2b\x77\x06\xbd\xaa\x1f\x62\xb0\x31\x74\x97\xbb\x52\xe7\x2c\xc2\xb1\x71\xb1\x5f\x82\xef\xfd\x62\xc6\x30\xd3\xe2\xee\xb1\x8a\x6d\x0c\x8d\x41\xd0\x7a\x89\x48\x73\xd4\x62\x42\xf8\xea\xf7\x5b\x96\x0d\xb4\x32\x50\xfe\xb8\x29\x21\xee\x68\x1e\x8d\xc1\xbc\xac\x5b\xeb\xba\x4f\x3d\x83\xa3\x15\x1b\xf5\x85\x85\x32\x59\x63\xd8\x7a\xea\x74\xdb\xe9\xc1\xbf\xcc\x18\xf2\x44\xf6\xe8\x1a\x2c\xbe\xcf\x42\xd0\xae\x56\x17\xbe\x1e\x75\x42\x16\xb3\xcd\xc5\x86\x5b\x96\x50\xeb\x72\xdd\x75\xf0\x93\x28\x07\x82\xc6\x1f\xbb\x26\xee\xfb\x9a\xc1\xa5\x43\x52\x93\x9d\xa5\x35\x08\x95\x5c\x49\x59\x23\x8e\x36\x84\x5e\x9d\x37\x35\x5c\x2c\x65\x42\x1d\x55\xee\xbe\xfb\x51\x9c\x50\x5e\xa0\x6d\xcc\xf3\x6a\x80\x01\xdb\x76\x9d\x43\x53\xef\x04\x42\x77\xd0\xe3\xbc\xc4\x39\xdc\x84\xcf\x6f\xa6\x76\x94\x5d\x5a\x4e\x58\x1a\xc7\xb7\x95\x4b\x6e\x31\xe1\xe3\xb1\xa5\x4e\x3a\x9f\x32\x09\x5b\x8e\x9f\x38\xde\x63\x63\x47\x88\xa8\x0b\xfe\xe8\x9a\xf0\x8e\xc1\xd4\x76\xe5\xec\x67\xa7\xa7\xd1\x18\x36\x9a\x4e\x6c\xa4\xb6\xef\x0c\x76\xee\xf8\xc0\xd2\x50\xf4\x67\xa3\xbe\xc8\x31\xbb\xc0\xf5\x24\xc1\xeb\x43\xf8\x74\xcf\xfc\x30\x42\x43\xc1\x8b\x7e\xbb\xc4\x3e\x06\xb3\x73\xfb\x76\xee\x9e\xf2\x9a\x41\x9f\xec\xa0\xa0\x75\x9e\x2a\x8d\x21\xf7\x91\x16\x0c\x4a\x02\x09\x77\xf7\x8d\xec\x1a\x67\x74\x9c\x03\x36\xec\xd3\x49\x7b\xd7\xdd\x20\x48\xdd\xf5\x31\x2a\x9a\x16\xc4\x81\x8c\xc7\xcf\xda\x94\x96\x24\xb1\x50\x2b\x1c\x72\x72\xf6\x40\x39\x83\x1b\xf7\x3d\x3f\x4f\x7c\x1c\xc5\x46\x81\x15\x8f\x1a\x04\xb9\x08\xac\x1e\xf5\xa1\x57\x23\xcd\x2c\xcc\x09\x6c\xe9\x79\xab\x1d\x4e\x63\x98\x51\x3c\x51\x51\xac\x66\x90\x41\x75\xcf\x3a\x81\xe6\x90\x1c\xc2\x2f\x5e\x01\xee\xb4\x33\x8b\x09\xfb\x54\xbf\x7f\x54\xbc\xe9\x4a\x48\x3e\x7d\x3c\x69\x6e\xa1\x0a\x61\xba\x44\x6a\xc5\x99\x9a\x25\x84\xeb\x9b\x0f\x7a\xb5\x4b\xde\x65\xb0\xff\xbd\x5c\xe3\xce\x01\x2d\xfa\xbf\x90\xa9\x64\x50\x64\xfd\x43\x9c\xf0\x6d\x62\x88\x6a\x4b\x76\x39\x21\x93\xf1\xd3\x9b\xb8\xef\x1c\xe1\x43\xb8\xde\x87\xa3\x3a\xb7\x08\xe1\x47\x70\x72\xdb\xf1\xd1\x8f\x71\xa8\xf0\x00\xcf\xe8\x68\x58\xf9\xb7\xa9\xb4\xd8\x3c\x42\x41\x92\x00\x3f\xf7\xf9\x5b\x84\x17\x5c\x67\x76\xa6\x9e\x99\x46\x10\xad\x35\xea\xd3\xfd\xf2\x89\x19\x83\xd4\xad\xd8\xd7\x0f\x45\xdf\x31\x58\xd1\x99\xa6\xc6\xa7\xa6\x4d\x90\xcc\x2d\x4e\xdf\xe2\xfb\x9e\xc1\xb9\x56\xff\xc5\x1a\xce\x1a\x04\x0d\x79\xaf\x40\xb1\x3d\x2b\x08\x0e\xbb\xbd\xd2\x24\x8d\x32\x08\xa6\xac\x63\x5e\x07\xaa\x7e\x31\x48\xbc\xcf\x4e\xff\x3c\x49\x97\xfe\x07\xe6\xa7\x9a\xff\x5c\xe3\x38\x9e\x70\xa1\x63\xa1\x48\xb8\xaa\x12\xc1\xc7\x6d\x9b\xfc\xba\x2a\x7e\x42\x91\x41\x95\xdf\x52\x57\x57\x0e\x0c\x0f\x26\xbc\x28\x5a\x64\x43\x40\x4d\x61\x7a\xab\x6e\x2f\x03\x27\xef\x03\x62\xce\x2d\x05\x04\xf9\x52\xa9\x81\x1b\xd3\xbd\x39\xb0\x4e\xec\xaa\x8d\xe0\x07\x19\x42\xaa\xf4\x84\xb4\x59\x5a\xd2\x1c\xc5\x4a\x4f\x67\x7c\xd3\xf9\x37\x2c\x44\xaa\x5d\xad\xf1\x4f\x76\x64\xe3\x5e\x96\xf4\x3b\xeb\xba\x0b\x6c\x74\xae\xfb\x9a\xbb\x74\xa4\x90\x06\xe5\xef\x3c\xd1\xfc\x64\x41\xe8\xee\xfa\x19\xe7\x18\xb3\x8d\x60\x93\x5c\x16\xbc\x75\xcf\x10\x83\xae\x34\xeb\xb5\x37\x2a\x0a\x08\xf9\x5c\xa1\x77\xae\x33\x6c\xc2\x4d\xe9\x53\xdf\xe6\x04\x95\x13\xa4\xfd\x9e\x86\xce\x7f\x51\xc2\x86\xad\x8a\x70\xb4\x53\x91\x35\x41\x63\x6b\xf2\xb1\x24\xcd\x27\x04\x03\xae\x25\xdc\x59\x9b\xea\x09\xfe\x97\x2d\x32\x7a\x5c\x4b\x09\xd1\x87\x4e\x7a\x5d\x1b\x2d\xc5\x1d\xda\x27\x36\x7f\xae\x22\x9c\x4c\xd4\x1c\xdf\x31\xe3\x3e\x41\xb6\xe2\x9c\xa5\xb6\xd8\x7d\xc2\xaa\xd6\x63\xce\xed\x67\x36\x12\xae\x8b\xe6\xdc\x38\x59\x6d\x42\x98\xad\xeb\x3a\x29\xac\x6a\x31\x41\x62\xd8\x5a\xce\x66\xa2\x31\xe1\x28\x23\xc3\xb5\xfc\xd2\x0d\x06\x81\xe2\x1b\xd7\xbb\xf8\x38\xd2\x18\x66\x36\xbf\x57\xf2\x31\x4d\x21\xb4\x54\xe9\x26\x7f\x51\x2b\x25\x84\xa7\x7f\xcf\xb7\xba\x95\xce\xc6\x9f\x60\xdd\x24\xe9\xce\x3b\x04\xe5\xe4\xfe\x69\xda\x0d\xb7\x09\xb1\x7a\x8e\x0b\x45\x2f\xdc\x26\x38\xd4\x9e\xb5\xf9\x87\x11\xbb\x85\x56\x96\x3a\x9c\xc5\x62\x66\xc0\xd7\x2d\x8f\x1b\x08\x56\x77\xb2\xac\xb7\x8d\x62\xbb\x99\x5e\xaf\xd5\x28\xbe\x76\x8f\xa4\x05\x9f\x2f\x23\xb0\xff\xb0\x0f\xfc\x1b\xbd\x33\x7a\xb1\xa8\x62\xe0\x12\xa1\xb0\xed\xf0\xe6\xdf\xb7\x62\x38\xca\xca\xd0\x67\x27\xcb\x7e\x24\x71\x94\x33\x17\x35\x0a\x34\x37\x86\x10\x2e\xfd\x3a\x22\xb6\xf2\xae\x04\xc1\x26\xca\x5e\xbf\x68\x55\x3b\x0b\x2f\x0c\x02\x16\x4f\x9c\x9c\x42\x63\xd8\x18\xe2\x78\x7f\x83\xbb\x02\x41\xf9\xf6\xec\xdf\x42\xd2\xa3\x8b\x8b\x5b\xca\x50\xfc\x6a\x63\x42\xca\xc3\xd2\x10\x53\x6f\x13\x82\x6d\xe9\xc1\x16\x71\x5e\x13\xc2\x1b\x2e\x76\xc2\x1e\xd9\x95\x84\xf4\xd3\xdf\x72\xd7\x8f\x08\x13\x2e\x37\x3b\x56\x87\x9b\xcf\x25\x7c\x79\x7f\x70\x87\x94\xbb\x34\x41\x23\xeb\xf0\x6e\x1f\xc7\xdb\x04\xc5\x78\xcf\xcc\x4e\xab\xdb\x04\x67\xe3\xe6\x0d\x17\x2c\xa2\xd9\xd0\x35\x9a\xf6\xcb\x7b\x74\xc4\x2f\xc3\xee\xfd\x36\x4d\x98\x50\x74\x47\xe3\xc2\xe6\xc4\x9d\x04\xe3\xb5\xaf\xe7\x46\x9d\xe1\x23\xe4\x8a\x44\x5e\x2d\xbd\x69\x49\x58\xf9\x25\xa5\x5b\xb0\x4c\x95\x10\xf2\xe9\x69\xa5\x62\x3b\x3f\x41\x97\x0e\x3d\x78\x1c\x54\xc7\xc2\xfa\xf1\x2e\x61\x46\xd3\x2e\xb0\x51\x8b\x84\x95\x07\x1a\x16\xd0\x18\xe6\xcb\x0e\x5e\xaa\xbc\xe2\x47\xa8\x2e\xa8\x9c\x6b\xbc\x58\x89\x03\x4a\x6b\x52\xdf\x49\x7c\x74\x62\xc3\x69\x8b\x9a\x8d\x68\x80\x30\xc1\x74\x85\xea\xe6\x2b\xbd\x6f\x19\x4c\x19\x0c\xff\x12\x5b\x5c\x41\x38\xd0\x15\xdf\xa2\x3f\x50\x46\x28\x61\xf5\x1e\xcb\x5a\x71\x9b\x0d\xb1\x15\x2d\x25\x1b\x1f\xe4\x13\x32\xa5\xcf\x09\x4f\x8c\xaf\x20\x08\x73\x2d\xbb\xfd\x6d\xb0\x94\xb0\x7e\x7b\x73\xca\xfe\x29\xf7\x08\xf3\x75\x8a\x3d\x5c\x9b\x0f\x13\x1c\xbb\x05\x2a\xfc\xd5\x8e\x12\xf4\x75\x8e\xdd\x5d\xde\xdc\xcb\x8c\xc1\xbe\x47\xb3\x33\x74\xc7\x13\x16\x0a\x77\x2b\x7b\x2e\xb9\xb3\x85\xc0\x9a\xa6\x75\xab\xc7\xe2\x00\xc1\xf7\xe0\xc4\xac\xbe\x68\x4f\xc2\x7b\xf5\x90\xdd\xfe\x97\xb4\x09\x2d\x6d\xbf\xf3\x6e\x5f\xde\xc3\x46\x9b\x96\xd4\xb1\x80\x97\x86\x84\x29\xf7\x7c\x35\xcc\xbe\x71\x13\x5c\x56\xd9\x7f\xf8\x95\x33\x91\xb0\x78\x56\xbf\x51\x52\xe7\x08\x83\x53\xbc\xb3\x8d\xb6\xd6\x26\x11\x82\x45\xb5\xf4\x8f\x04\xec\x24\xe8\x3f\xdb\xbf\xe4\x87\xa1\x3d\xe1\x41\x76\xcf\x4c\xe5\x2b\xbb\x09\xe9\xc7\xfb\x8e\xfa\x2c\xf3\x23\xd4\x96\xcc\x1a\x29\xa8\x58\x4f\x78\x25\xfc\xf8\x43\x51\xff\x33\x06\x93\xb2\x0f\x6e\x51\x17\x57\xa7\x31\x3c\x16\x94\xfa\x60\xf8\x7c\xf4\x7f\x11\xd5\x30\xac\x70\xed\x36\xc1\xb1\x43\x29\x4a\x40\x2a\x92\x8d\xb7\xce\x43\xec\x69\x53\xd6\x10\x7c\x7e\xfb\x4c\xd5\x49\x30\x22\x3c\x9e\xc0\xfb\xe0\x5d\xf8\x37\x06\x76\x02\x57\x02\xcb\xb8\xf4\x09\x1d\xf2\x8e\x82\x7d\x45\x17\x09\x29\x6e\x73\xc4\xce\x3c\x4e\x27\xac\x5d\x90\x12\x66\x21\xe1\x44\x28\x10\x5a\xb7\xe8\x1f\x7e\xdb\x97\x2f\xbd\x23\xce\x59\xbe\x6d\xd8\x2a\x24\x57\xb9\x8e\xf0\xee\xae\xb5\xab\xe8\x4d\x2e\xc2\xad\x24\xd7\xe3\x5d\xa7\x44\x09\x4e\x6d\x5b\x5f\x9a\xbc\x1a\x61\x70\x3a\xdb\x6e\xf0\x41\x51\x1d\x03\xff\x15\x6f\x37\x75\x0d\x9f\x63\xe3\x8c\xb2\xae\xfb\x6e\x89\x08\x1a\x43\xcd\x5a\x53\xff\x5f\x33\x38\xcb\xf1\x39\xbf\x2c\x3c\x0e\x16\x10\xba\xf2\xfd\xfc\xc7\x7f\xaa\x60\xc3\xf1\x6e\x93\x69\xe0\xdd\xb9\x34\x78\xc6\x60\xd2\xf2\x23\x56\x84\x82\x08\x97\xcb\xdf\xbe\xef\x24\x5c\x99\x31\x5f\x93\x27\xe4\x1a\xa1\x51\xb4\xe7\x98\xd3\xcf\x6b\x84\x40\x8f\x77\x79\x4a\x71\xb5\x84\x95\xd3\x4f\xf1\xf3\xa7\x1c\x25\xe4\xae\x3f\x64\x32\x3e\xc6\x9f\x8d\x80\x6b\xf9\x75\xda\x51\x47\x09\x85\x33\x5e\xfd\xd2\x61\xde\x33\xb8\x5e\xae\x7c\x25\x47\xc3\x93\xc6\xd0\xb4\xf0\xf1\xd3\x29\x37\x4d\x09\xec\x08\x5b\xd9\x65\xab\x33\x09\x02\xcc\xa1\x5f\x1b\x71\x9e\x90\xdc\xd1\xb1\x46\xd6\xe0\x19\x7b\xac\xb0\x3e\xd7\x44\x9f\xbe\x75\x8e\x10\x17\xf6\xa3\x2b\xa1\xd5\x87\xf0\x73\xd9\x64\x8d\xb7\x2d\xfe\x84\x2b\xcb\x8c\xd7\x4b\xe6\xd6\x11\x06\xc4\xa4\xd7\x16\xad\x05\x1b\x09\xc9\x39\x65\xff\x4a\x74\x1a\x4f\xd3\xba\xfa\x32\x42\x6b\xd0\xa7\xac\x3d\xfc\xaf\x19\xe8\x6c\xbb\x18\xef\x74\x58\x92\x70\x67\x4a\xba\xe2\xe5\xd7\x9b\x08\xd2\x8e\xf2\xfe\x57\x1f\x2f\x22\x04\xf9\x8c\xe8\x6c\x95\x9a\x4e\x38\x3b\xb9\xf1\xc8\xf3\xd2\x47\x0c\x88\x2f\x4f\x33\xdd\xe6\x27\x03\x46\x21\xde\x39\x87\xfb\x11\x0b\xdf\x0a\xd3\x94\xbd\xc6\x0f\x32\x63\x10\x2d\x4f\x7a\x27\xf8\xe3\x25\x03\x11\xb1\xb8\x59\xc3\x79\x9f\x19\x8c\x58\xbf\x9b\xf5\x45\xe1\x30\xc1\xb2\xd6\x30\x41\x6a\x86\x22\xa1\x97\x3b\x49\x7c\x0a\xbf\x12\x21\xff\xd3\x99\x22\xcd\xf0\x0b\x6c\x54\x1c\xf1\xbb\x7d\x5e\xb9\x8d\x90\x6b\x29\x71\xb0\xe1\x46\x2e\x61\xca\xf3\x7b\xe7\x3e\xa8\x4c\x27\xa8\x3e\x53\x71\x66\xf6\xcb\x10\xee\x5a\x4f\x37\xbb\xca\x9a\x4c\x48\x2a\xbd\x5e\x2b\xbd\x20\x83\x50\xc0\x7d\xcf\x4e\xf8\x46\x3e\x21\xe6\x6a\x83\x69\x66\xd0\x4a\x82\x93\x48\xd4\xfb\x47\x27\x4c\x08\xa6\xcf\xa6\xce\x9d\x1a\x9e\x4a\x83\xcf\xcb\xb3\x53\x8d\x0b\x08\x96\xad\x35\x85\xad\x76\xd1\x04\xa1\x3d\x49\xd2\xf7\x0e\x25\x10\x0a\x5f\x3c\xf6\x55\xd9\x90\x46\x38\xb2\x5f\x78\xad\xd9\x9b\xb5\x1c\xb8\x78\xce\x86\x47\x2f\x42\x8f\xa0\x43\x77\xff\xcc\xb5\x5e\x43\x18\x72\xde\xec\xd8\xca\xcb\x43\x28\x88\x9c\xb0\xec\x6a\x4c\x17\x83\x45\xdf\x2a\x7a\x8f\x8a\x7f\xe5\x40\xcc\x26\xde\xee\x49\xfa\x0b\x08\xf9\x0b\x96\x59\x65\x9c\xae\x26\xe8\x8d\xcc\xaa\x6a\xdc\x99\x47\x70\x29\x70\xba\x98\x93\x11\x41\x78\x73\x7d\x66\x67\xee\x6a\x3b\xc2\x42\x6f\x9b\xe0\xc9\x75\x8b\x38\x60\xff\x71\xf0\x8e\x6a\xf2\x17\x06\x0b\x36\x65\xed\x0f\x9f\xa7\x47\x50\x8c\xb3\xd4\x09\x3b\x5a\xcf\xc6\x65\x9b\x48\x85\xc8\xca\x62\x42\xd8\xa3\xa2\x50\xde\x51\xdc\x17\xf2\xe5\x91\x94\x34\x25\xec\x0d\x1d\x2e\xc8\x29\xf4\x24\x44\x7e\xd3\x9c\x98\x92\x60\x4e\xe8\xda\x70\xc7\xd8\x67\xb5\x05\x47\xe1\xfb\xfb\xd8\x5c\x4d\x75\x05\xe1\xe0\xca\xe1\x9c\x98\xd7\x3b\x08\x77\x78\x87\xd4\xcf\xf1\x14\x12\x1c\x65\x0f\xaf\xe8\xfe\x5d\x40\x38\x56\x5e\x19\xbc\xb6\x48\x91\x50\xd5\x29\x71\xaa\xf6\xe6\x1c\x42\x72\x6b\x8a\xa7\xfd\x44\x22\x9c\xda\x30\xdd\xdd\xb6\x72\x3a\xc1\x7e\x5f\x97\x69\x40\x6e\x1a\xe1\xf2\x56\xb3\x46\x56\x82\x27\xc1\x28\x4a\x67\x95\xc2\x8f\x55\x04\x35\xc1\xde\x17\x6d\x56\xf3\x08\xd5\xeb\xaa\xe3\x25\x5e\x24\x13\x8c\x2b\x7c\xfa\x2d\x5d\x8c\x09\xda\x86\x0a\x09\x45\x9f\xe4\x09\x4f\xdf\x31\xaf\x7d\x37\x94\x12\xde\xdc\xb8\xff\xe2\xe5\x7a\x41\x82\x16\xcf\x41\x9f\xaf\x5f\xbd\x09\x7a\x27\xaa\x74\x7f\x08\x29\x11\x5e\x9f\x39\xf8\x94\xbf\x7a\x22\xe1\x77\x5d\xe0\xc3\x70\x01\x27\x42\x85\xe9\xd1\x3a\xc1\xb6\x95\x84\x86\x97\x4d\xc7\xae\x3f\x5b\x47\x88\x54\xbf\x79\x9f\xc5\xd2\x26\x0c\xe8\xc2\xee\x94\xb2\x0c\xe1\xd7\x54\x1e\x63\xd5\xfd\x7e\x84\x08\xf3\x0d\x0b\x02\x72\x57\x12\x36\xdb\x4b\x66\x36\x56\xad\x24\x74\x6f\xb6\x57\x71\x93\x34\x24\xdc\x66\x8e\x5c\xdd\x99\x1e\x46\x40\x76\x0d\xcf\x49\xb9\x52\x36\x16\x64\x15\x9f\x88\x61\xf8\x08\x5f\xdd\xdd\xff\x56\x3e\xb2\x27\x54\x8a\x6d\x1d\x49\xbc\xbf\x88\x20\x5f\x72\x30\x4e\x24\xc1\x90\x03\xd6\xfb\x54\x65\xd7\x65\x97\xb2\xf0\x59\x25\x72\xe3\xc7\xdd\x77\x09\xef\x52\xce\x1d\x10\x92\x17\x22\x58\x9f\xaa\xeb\x5d\x51\x7c\x93\xa0\x94\x1f\xb2\x20\x7e\x41\x14\xe1\x81\xca\x0c\x93\x2e\xe1\x24\x82\x7c\xc7\x78\xe6\x97\x85\x1c\x81\x37\x76\xc1\xfd\xa6\x44\x09\x82\x6a\x9d\x51\xa6\xe7\x91\xe9\x84\x5d\x18\x4f\xe1\xcb\x2d\x08\x22\xe5\xca\x07\xd3\x66\x6d\x22\x9c\x12\x4a\xd1\x70\x33\x35\x21\x74\xdf\xb6\x2d\x68\x3a\x1a\x43\x70\xdb\x36\x60\x11\x93\x3f\xc4\xa0\x77\x4e\xf3\x62\xdf\x6b\xaf\x18\xec\x29\xd4\xda\xd9\x1e\x68\x41\x58\xdd\x3f\x72\x91\xaf\x62\x25\xa1\x47\xa4\x37\xcc\xbe\xb0\x9c\xd0\xc8\xb7\x29\xdc\xf3\xd2\x08\x83\xa4\x8c\x8b\x97\x8c\x8b\x1c\x08\x97\xb2\x72\xae\x33\xda\x8e\x34\x56\x66\x17\xfd\x7d\x10\x3f\xe9\x02\xc1\xcd\x6b\x6d\xd6\x7a\x95\x22\xc2\xf7\x14\xef\x98\xa8\xe8\x9b\x84\x3b\x6b\xe4\x0f\xb8\x28\xa6\xb2\xc1\xf7\xb7\xe5\xf8\xd0\xdb\x55\x84\xbc\xa7\xe7\x2e\xfb\xb7\x2d\x25\x8c\x77\xb1\xdd\xb1\x5c\xf6\x3d\x83\xc9\xcd\x41\xdf\x56\x26\xee\x26\x1c\xfe\xa3\x31\xfb\x42\xc9\x24\xc2\xaa\x35\x8f\x0c\xf3\x96\xcc\x23\x4c\xf4\xf0\x13\xd0\x3e\x1a\x4b\x28\x17\xcb\xf8\x68\xe4\xec\xc2\x81\x6b\x6d\xae\x1b\xa4\x7d\x66\x10\x14\x5d\x77\x4e\x32\x78\xbd\x8d\xf0\x99\x15\xf5\x72\xf8\xe7\x22\xc2\xe2\xd7\x2d\xa1\xeb\x9f\x98\x13\x3e\xcd\x96\x1e\x27\xd6\x0d\x06\x87\x1e\x4c\xb5\x1a\xda\x7e\x9a\x8d\x89\x62\x46\xf0\xc8\x89\x24\x2c\xcb\x6d\x3b\xf8\x9e\x35\x8b\x50\xda\xec\xeb\x5e\xdc\x74\x8d\x03\xe7\x02\xcc\x16\xc4\x26\x86\xb0\x31\x52\x53\xbe\xe1\x54\xca\x2d\x36\x76\x28\x0f\x77\x15\x8d\x8e\x5a\xa7\x99\xbd\x17\x8b\xdd\xce\x81\x07\xb3\x8a\x1b\xb3\x15\x6c\x38\x8a\x86\xcb\x46\xe7\x15\xc9\x7c\x84\x28\x0d\xf9\xe1\x04\xc9\x12\x82\x76\xe1\x50\xee\x1c\x8d\x45\x84\x27\xc6\xb6\xeb\xff\xf0\x6c\x22\x6c\xee\xb6\xd3\x6a\x8a\x3d\x4e\xb8\xa4\xa4\x39\xcb\xd0\x4c\x92\xf0\xf2\x6c\xcc\xe6\x37\x82\x8a\x04\xf1\xba\xf6\x7d\x1d\x4d\xa2\x84\xfa\xd9\xcb\xbd\x26\x2e\x18\x64\x60\x77\xc1\xa9\xe4\xf3\xa9\x87\x0c\x56\x2b\x38\xdb\x2d\xdf\x2f\x48\x63\x78\x5b\xf0\x55\xb2\x47\x47\x84\x90\x9a\xcb\xae\x4b\x1b\xdc\x47\x70\x0b\x3d\xee\xa5\x78\xeb\x1a\x41\x5d\x4d\xa2\x70\x49\x54\x23\x0b\x05\x57\x79\x7f\xaf\xfb\x71\x82\x30\x65\x72\xf9\xe1\x85\x05\xba\x84\x04\xee\xdd\xb6\x8d\x33\xb9\x09\x13\xac\xd5\x74\x58\xc2\xcd\x84\x5f\x6f\xda\xa7\x5d\x7f\x97\x4f\x68\x16\x2f\x6c\x49\xb3\xad\x22\xec\x2b\x73\x90\x49\x16\x1a\x1d\x09\x66\x6c\xd5\x11\x6c\x26\x04\x0a\x14\x39\x19\xdc\xca\x21\x14\xed\xca\x9c\xd5\x99\x58\x4c\x58\x96\xde\xbe\xd5\x2f\xac\x98\x10\x54\x78\xe2\x60\x96\x62\x31\x61\x69\x89\x21\xdf\xc7\x9b\x39\x84\x29\xd2\xe3\x36\x24\xe5\x18\x12\xba\xbf\x4d\x48\x9f\xa2\x7e\x9f\x50\x2e\x53\x97\x79\xe5\x6f\x25\xa1\xdc\xf4\xcb\x21\x81\xd1\x22\xa5\x1b\x70\x35\xd3\x37\x87\xe0\xa8\x63\xfb\x47\x21\x75\x0f\x1b\x89\xa6\x07\xce\x1e\x3e\xbb\x89\xc6\xb0\x5d\xad\x64\xb7\x4e\x63\x22\xc1\xdd\x4e\xd5\xf1\xe0\x5b\x5b\xc2\x6f\xbd\xfa\xc4\x2f\x99\x16\x04\xfe\x2a\x5e\x1f\x3e\x4d\x35\x36\xe6\xb3\x2e\x46\xef\x30\xb0\x26\xe8\xac\x6c\xf2\x45\xcd\x36\x82\x59\x76\xaf\xd4\xd3\x23\x07\x09\xd6\x67\x6f\x76\x6c\xeb\xb1\x22\xc0\x71\x73\x65\xd5\x7d\x11\xc2\x13\x9f\xf7\x7b\xc2\xc6\xcf\x20\xfc\x98\x16\x96\xe6\xeb\x34\x83\xf0\xe4\xef\xca\x22\x5f\xc1\xb5\x1c\x50\x9d\x37\xe7\x09\xaf\xfc\x17\x16\xf6\xce\xf5\x1d\x5e\xa3\x14\x49\xc0\xd3\xc8\xdc\xb9\xf1\x95\x04\xb3\x66\xdf\x4a\xe7\x9e\x47\x84\x95\xcb\x0f\xac\x1e\x9a\xc1\x26\x78\x89\xd7\x59\x2f\x2d\xce\x24\xf0\x6b\xce\xb9\xfb\x0f\x45\x21\x5c\x2f\x2d\x8a\x38\x8b\xc1\x32\xde\xc7\x8b\xb7\xa5\x73\xe0\x60\x7a\x0d\x7b\xfd\xea\x2b\x1c\x08\xe1\xc9\x3f\x27\xef\x7c\x85\xa0\xd7\xb0\xfb\xfa\xf7\xc7\x31\x84\xd4\x16\xf1\x23\x66\xcb\x42\xd8\x08\x98\xba\x40\xb7\x58\xfe\x3e\x61\xa7\x77\x77\xa2\xd9\xbe\x52\x36\x82\xf4\xaa\xb8\xb9\x9f\x5d\x25\xac\x8a\xb5\xa9\xdd\xf5\x5c\x77\x74\x6f\x91\x8e\x78\xc5\xb3\x93\x60\x38\xd9\x41\x32\xdd\x50\x81\xf0\x49\xf0\x70\xdf\xc8\xf5\x58\x36\xdc\x4b\xb5\xbf\x6f\x4c\xd0\x27\x9c\xaf\x65\x34\x4c\x2f\xd4\x11\x54\xae\xcd\x6f\xbf\xdb\x95\x4e\x88\x62\x04\x3b\x5d\x0b\x53\x09\x7a\xc9\x79\xe3\x34\x57\xc4\x10\x76\x9e\xba\x12\x3d\xc3\x22\x84\xf0\x38\x82\xd7\x6f\x83\xef\x31\xc2\xdc\x3a\xe1\x4d\xe1\x3e\xcd\x2c\xb8\xd9\x39\x66\xd4\x35\x3f\x67\x60\x58\x79\x2e\x23\xf9\x88\x10\xa1\xa1\x6d\xb5\x62\x52\x92\x15\x7b\xac\x54\x7e\x3d\xb1\xfe\x28\x4b\x95\xe0\xcd\x0e\xbd\x93\x6a\x18\x41\x38\xbf\x71\xaa\xad\x68\x44\x39\x21\x2a\x64\x68\x95\xef\xb2\xf2\xd1\x0b\x7a\xaf\xe1\xa1\x40\x16\xe1\xef\xee\xb4\x4f\x87\x46\xcb\xeb\x63\x07\x20\x75\xa8\x9c\xb0\xb5\xa3\x76\x49\xe9\xe8\x77\xad\xc9\xbc\x7d\xc8\xf4\x7b\x00\xc1\xe5\xcf\xcb\x65\x35\x7a\x11\x84\xbc\x76\xf9\xeb\xdc\x75\x01\x84\x75\x8f\x6b\x73\x0e\x8d\x9e\x31\xd0\x77\x0a\x3e\xbe\xfd\x2d\x03\xa9\x13\xd7\xd2\xce\x0d\xcb\x10\xde\x1b\xdd\xdc\xb9\xfa\xb3\x3b\x1b\x36\x92\xed\x19\x8d\x16\xda\x84\xd8\xf8\x4e\xf9\x49\x4e\x3b\x08\xad\x49\xa5\x5f\x9a\x60\x48\x68\x6d\xd1\xea\x74\x95\xe7\x25\x98\xde\xfc\x9e\x34\x4b\xe9\x2a\x61\x29\xff\x9f\xdd\x2b\x4b\x77\x12\x56\x2d\x9f\x1b\xf3\x2e\x7a\x2b\x1b\x1f\xec\xa3\x6f\xe8\xff\x71\x24\xbc\x5c\x90\xad\xd0\x2f\x1b\x4d\xb0\x58\x34\x2e\x2a\x79\x67\x34\x41\xb4\x34\xe6\x50\xca\xf8\x5c\xc2\xd4\x1c\x33\x89\x0c\xd6\x49\x36\x68\x58\x5f\x2d\x75\xb4\xb8\x96\xc8\x54\x4f\x77\x17\x25\x3c\x12\x7e\xd1\xb4\xf7\xe3\x1d\x42\xaa\x45\xc5\xad\x46\xff\xd9\x04\xbb\x90\x63\xeb\xda\x2e\x65\x13\xa2\xb0\x69\xf6\x7f\xe3\xb2\x50\x54\x4f\xee\xae\xdd\xff\x0b\x6d\xcb\x78\xef\xf3\x8d\xa4\x11\xf4\x82\x66\xb6\xf1\x8d\x5c\x20\x1c\xbd\x68\x10\x17\x16\xf3\x88\x90\x90\x78\x53\xd8\x52\xeb\x11\x1b\x27\xf7\xec\x15\x17\xd8\xcf\x22\xa8\x49\x5c\x93\x11\x7c\x59\x42\x50\x58\x95\x1f\xbe\xa9\x52\x9b\xa0\x28\xcc\xb5\xe3\x82\x6a\x28\x1b\xea\x8f\x53\xbe\x67\xdd\x2d\x27\x88\x6c\x9a\x1d\xb1\x3d\x3c\x8d\xb0\xfe\xe3\x36\x03\xb5\x7b\xe5\x04\xc1\xc3\x8b\xc6\x55\x6e\x34\x20\xec\x9b\x78\x6b\xc6\x51\x5b\x33\xc2\xcf\x4d\x31\x9a\x81\x47\x55\x09\xee\x06\x19\x6b\x2f\x3f\x14\x23\xd8\xfe\x1a\x5f\xcc\xf7\xe1\x0d\x0b\x51\x25\x6f\xb6\x0c\x2d\xd4\x22\xdc\xfc\xbd\xd2\xe7\x8c\xca\x0e\xc2\x8c\xc1\xf3\x89\x6d\x87\x64\x09\x0f\xf5\xc3\x32\x4e\xf3\x4f\x20\xc8\xe5\x0e\xf1\x9f\x0d\x6c\x60\x81\x39\xc3\xc7\xab\x59\xf3\x82\x81\xe8\x1a\xdd\x09\x35\xde\xb3\x68\x0c\x7a\xef\x07\xd7\x4d\xe2\x1e\x4f\x50\x12\xdc\xdc\x75\x27\xcb\x9c\xb0\x73\xb6\x03\xb3\xb9\xd0\x84\xe0\x7b\x22\x5c\x3d\x2c\x47\x94\x03\x49\xed\xa7\x23\x44\x2a\x2a\x08\x31\xef\x2b\x8f\x0b\xf6\x97\x13\x92\x23\xe2\x23\x66\x36\x54\x10\x9e\xab\xdd\x60\x1f\x8c\x2d\xe7\x38\x33\x2d\x2c\x51\x7b\xaa\x55\x20\xe1\x85\xae\x52\x95\x49\xce\x19\x82\x79\x9f\xb9\xea\xe9\x0f\xfc\x84\xd0\x7c\x8d\xc4\x74\x4b\x47\x42\xe2\x95\x11\x05\x6b\x15\x23\xc2\x97\xba\xb8\xf1\xb3\x9e\x07\x13\xe4\xd3\x6e\xed\xa9\x13\xd1\x23\x5c\x0b\x6a\xdd\x99\x2b\x3f\x8e\x50\x76\x62\x71\xd6\x06\x5e\x1b\x0e\x6c\x5d\xff\x29\x2f\x6a\x0e\x3f\x01\xd1\xab\x9d\x7e\x95\x6b\x32\x70\xf5\x99\x9b\x2e\x36\xe1\x3c\xc1\x85\xeb\xb2\x21\x7b\xe9\x65\x0e\xb4\x1e\x64\x5b\x9d\x18\x7d\x2c\x2f\xb4\x30\x7d\x95\x76\x59\x81\xa3\x38\xeb\x95\x15\x7a\x56\x81\x19\xc3\x8b\x35\xaa\x79\x23\xfb\xd2\x68\x0c\x7d\xdc\x6b\x1f\x44\x4b\x16\x10\xde\x3a\x98\x55\xab\x77\x96\xb2\xc7\x46\x9b\xd6\xc7\x1a\x77\x68\x39\x10\x9c\xd7\x47\x5f\x9c\x7e\x2b\x82\x3d\x56\x84\xfd\x06\x17\xbb\xa9\xec\xe6\x38\xa3\x9a\xeb\x3c\x90\x70\xf9\x3c\x21\xfa\x96\x40\xa1\x74\x3f\x9b\x20\x79\xbb\x68\xfa\xbc\xcb\xf7\x08\xb7\x86\x7b\xef\x28\x9d\x38\x47\xd0\x75\x0d\x6c\x3a\xf8\x66\x31\x61\xf1\xbd\x34\x9b\x63\xb7\x6e\x12\xba\xd7\xc8\x9c\x8e\xf8\xcd\x22\x3c\x9f\xd1\xef\x11\x39\x8a\x33\x7d\x86\xac\x6a\x51\x57\x82\x8e\xc7\xe3\x63\xb2\x71\xe7\x09\x7f\xed\xfa\x37\x0c\x94\xed\x27\x84\x0f\x9d\xfc\x3c\x2f\xdb\x8b\x10\xc9\x7d\x72\x1c\x6b\x8e\x07\xe1\xd6\x60\x9b\xa3\x6f\x66\x1c\x1b\x91\xa7\x43\xc2\xae\xdb\xb9\x13\x46\x32\x72\x33\xe3\xbb\x12\x08\xba\xf6\x32\x2f\x03\x6d\x1c\x09\x9f\xe4\x17\xcf\xb3\x4d\xf4\xe4\x28\x6f\x5a\x2e\x9b\xfe\xfb\xa8\xff\x7f\x71\x81\xe0\xd9\xcc\xbf\xb5\x95\x29\x23\xec\xeb\x0c\x9f\x9e\x96\x75\x87\x20\x78\xb6\x5f\xef\x5f\x69\x93\xd1\xfd\x5a\x62\x66\x48\xf8\xc0\xe2\x2d\x0d\xf5\xd0\xa7\xc1\xf6\xf7\x7f\x06\xb7\x4f\x25\xfc\x56\xd5\x1c\x0e\x6d\x70\x21\xf8\x84\x9d\xdc\xa2\x2d\x14\xc0\x1e\x2b\x89\x1f\xf2\x25\x7e\x08\x64\x12\x52\xb6\x06\x5e\x97\x59\x5d\x48\x08\xdd\x77\xe6\x6a\xb6\xb3\x23\x81\xe5\x90\x69\xbf\xc6\xf5\x22\x7b\xac\x2c\xcc\x7f\xbc\x69\xd2\xe8\x4f\x31\x52\xfd\x66\x58\xee\x80\x29\x1b\x87\x6f\xee\x29\xe3\x5b\xe6\x44\xd8\x65\x7f\x4d\x67\x6b\xbb\x05\xe1\xf1\x23\x13\xef\x86\x73\xe3\x08\xa1\x3a\xc1\xeb\x7f\xbe\x36\x20\x7c\x8e\x2f\x7a\xf4\xc8\x20\x99\x03\x83\x51\x1f\x82\xaf\xff\xf8\xc0\xe0\xb3\x6c\x9a\xe0\x64\x17\x23\xc2\x33\xd9\xe0\xb5\x75\x72\xeb\x08\xa1\xd3\x96\x4f\x2d\x90\x9c\x4c\x70\xfa\xd3\x16\x27\xb8\x60\x09\xe1\x41\x81\xe5\xf4\x0d\x71\xdc\x04\xb1\x6f\x0b\xad\xa2\x85\x3e\x32\xb8\x9f\xec\xaf\xb0\x6d\xe4\x3e\x0b\xfe\x5c\x01\xbc\xe7\xcb\xed\x69\x0c\x51\x87\xae\x47\x3f\xff\x7c\x9d\x03\x01\x56\xb8\x90\x3c\x8a\xf3\xe3\xaa\x4a\x45\xae\x66\x71\x8c\xec\x02\x06\xf4\x62\x7a\xb6\x11\x9e\x8a\x6e\xf5\xba\xbd\x48\x9d\xa3\xfc\x07\x1a\xa6\x76\x6f\x78\x46\x7f\x65\x85\xc5\x49\xeb\xb9\xcc\x6f\x13\x16\x17\x36\xa7\xcb\x5b\x96\x13\xd4\x6b\x0c\x67\x1f\xd3\x6d\x65\x8f\x95\x2b\xad\x57\xf7\xf5\x5f\x8d\x26\xac\xb9\xb5\xb9\xff\x43\x50\x34\x61\x8e\xe7\x36\xff\x97\x73\x67\x10\x6e\xfd\xe0\xd2\x31\x5f\x70\x8e\xd0\x32\xf7\xe8\x9a\x0b\x1d\x8a\x04\xe7\x83\xc2\x6b\xfa\x73\xb4\x09\xe7\x34\x6b\x97\x09\xf9\x6a\x12\xfc\x97\xbc\xf8\xf9\x21\x35\x85\x90\x3a\xa4\xe9\x37\xa4\x4f\x04\x23\xc1\x7c\x89\x63\x98\x4e\xc8\xf3\xbf\x3b\x5e\xe0\x93\x21\x07\xbc\x0f\xf5\xb7\xb6\xad\xe1\x21\x2c\x58\x32\x7b\xa6\x41\xa3\x34\x41\xd5\xf2\xec\x39\xa1\xa5\xc2\x84\x53\x69\x26\x8f\x63\x7b\xb4\x09\x3a\x5b\x3e\x55\x5d\x89\x9d\xc1\x81\x02\xcb\xa1\x69\x12\xcd\x7d\x0c\xf6\xea\x39\x94\xac\xf7\x5a\x48\x63\x18\x0a\xb9\xe3\xfb\xe1\x70\x3c\xc1\x4d\xc9\x6e\x55\x98\xbf\x19\x81\x3f\xdd\x24\x70\xb0\x5e\x7f\x74\xd3\xbf\x1f\x7e\xc5\xc8\x83\x0d\xdd\xa4\x39\x5a\xcb\x8e\xa4\x70\x60\xd9\x19\xb3\xd8\xd8\xae\x14\x36\xfa\xbe\x45\xfe\xd2\x95\xca\x20\xcc\x3f\x1d\x55\x9c\xac\x77\x95\x30\x7e\x9e\x12\x9f\xfd\x92\x97\x2c\xcc\xa0\x18\xe3\xa0\x17\x2a\x84\x1f\x5e\x42\x23\x6d\x13\x8e\xb0\xc7\xca\xb6\x9e\xd2\xa1\xf2\x85\x4d\x2c\x94\x56\x0d\x65\x3d\x8e\x98\x48\x38\xdb\xa9\x66\xc2\xcd\x2d\x4d\xf0\xef\xf2\x69\x0b\xb0\x1d\x66\xe0\xb8\xbb\xcb\xa8\xf0\xd3\x71\xc2\xcf\x8a\xef\x1d\x31\x1e\xa2\x84\x68\xb3\x2f\x69\x07\xb7\x66\x10\x5a\xd9\x25\x1f\xbb\xdd\x7e\x30\x48\x7a\xf1\xf1\xaf\xce\x7a\x59\xc2\x4f\x49\xe8\x2f\xb8\x7c\x86\xa0\xac\xb0\x43\xf8\x95\x44\x24\xc1\x32\xae\xac\xa0\xa4\xd9\x93\x20\x54\x1d\xd5\xa4\xeb\x20\x4f\x48\x8c\x0e\x15\x5a\x2a\xb1\x94\x70\xa4\xc8\x45\x6d\xbd\x6c\x1c\x07\xfe\x30\x5e\x0d\x72\x8f\xeb\x19\xa4\x0f\x9f\x48\x55\x3b\xa3\x43\x30\x80\xc9\x5a\xad\xf9\xe3\x08\xbc\xef\x96\x14\x6a\xcf\xfa\xcd\x40\x79\xbc\xca\xd2\xef\xcb\x66\x11\x5a\xdc\xc5\x02\x13\x7b\xbf\x33\xd0\x5e\x65\x3a\x54\x9c\x3b\x8e\xc6\xb0\x5f\x66\x59\x70\x7f\x03\x11\x32\x36\x47\xb4\x4f\x34\xdd\x4b\x08\x76\x51\x35\x8e\x49\xfd\xcd\xc0\xb8\xbd\x3e\xcf\x33\x3d\x85\x60\x69\xe0\xa2\xfe\xd8\xe6\x0f\x83\x3d\x81\xdf\x7e\x8a\x36\xab\x12\x5e\xf0\xbf\x8d\xad\x08\x63\x13\x64\x3e\x06\xe9\x1e\x66\x55\xb1\x71\x25\x6e\xea\xc3\x7f\xe5\xe7\xf5\x87\x2e\xb9\x4e\xf7\x58\x90\xf9\xe8\x36\x90\xf8\xdb\x96\x70\xe6\x95\x74\x65\xe6\x3b\x39\xc2\xba\xfe\xe5\x15\xd3\x2e\x8b\x10\xf8\xde\xf5\xa5\x4f\x1f\xd7\xc7\x40\x61\xab\x6a\xc9\xf8\x8f\x13\x08\xf7\xee\x89\xb4\xdf\xf9\x9d\xc7\x81\x1a\x23\x1f\x4f\xb1\xa4\x76\x06\x4d\x3b\xfd\x7a\x53\x78\x02\x09\x13\x2a\xb9\xde\x8b\x3c\xff\x46\x78\xd8\x3a\xdf\xfe\x60\xd2\x37\xc2\x9f\x67\x4e\x85\x36\x8f\xbe\x12\xd0\x55\xd7\x58\xa5\x58\x4f\x08\x3b\xe3\xbd\xe7\x7b\x5c\x20\x21\xe3\x60\x47\xec\xfc\xa7\xd7\x08\xbc\x4e\xbb\x9f\x08\xf6\x0d\x31\x63\x98\xef\x6d\x2f\x65\xd4\x32\x99\x90\xc9\xf2\xdc\x9e\x3d\xa3\x86\x81\x57\x98\x61\xd3\xb6\x34\x2b\x82\x84\xba\x40\x1a\x6f\x88\x39\xe1\xed\x32\x2a\x9a\x36\x59\x91\x90\x14\xdf\x52\x70\xc0\xd3\x8c\xb0\x5e\xcc\x3e\x87\x2d\xb4\x9f\x20\x51\xc3\x9d\xde\xfe\x73\x1e\xe1\x57\x86\xd2\x60\x49\x8e\x29\x21\x2b\x51\xe9\xba\xd9\x9e\x20\x42\xec\x84\x94\x89\x95\xe3\x44\x39\x30\x3e\x4f\x5e\x73\xc2\x67\x11\xc2\x2d\xa9\xd3\x25\x77\x5b\xda\x09\x3b\x3e\xf9\x9c\x53\xee\xed\x26\x64\xd2\xc9\x14\xfe\xb9\xef\x09\x4d\xa9\xf6\x99\xb7\xad\x7b\x09\xbb\x04\x1c\xbb\xac\xaa\x62\x08\xd5\x9a\x2a\xcc\x19\x15\x16\xa1\xef\x89\x53\x5f\xc9\xa7\x10\x82\xa8\x9a\x88\xaf\xf2\xe8\xd2\x96\x36\x92\xf9\x30\x69\xb2\x0f\x41\xf5\xed\x57\x9d\x9e\x29\x2b\x08\x3c\x87\xa7\xfa\x5f\xae\xf9\xc3\x60\x44\xeb\xec\xc6\x85\x0a\xc7\x09\x8f\x4f\x2f\xb6\x37\xc9\x37\x23\xb8\xfc\x4d\x8c\x08\xc9\x0b\x27\x98\xed\x3b\x7c\x69\x77\x6e\x09\x1b\x36\x19\xe9\xf9\xce\xff\x05\xd5\xd5\x5a\x47\x76\xab\x9f\x20\x2c\x89\xdc\xc1\x2a\x9f\xbf\x83\x8d\x77\xfa\x71\xa5\x26\x91\xc1\x04\x23\x2f\x76\xa0\x87\x82\x03\x41\xf4\xee\xce\x47\x62\x41\x7a\x84\x73\x37\xaa\x0c\x82\xf5\x7b\x19\xbc\x8b\x34\x31\x69\x90\xbd\x4c\x63\x10\x2e\x53\xe5\x12\xf9\xf5\x80\x60\x67\xfa\x48\xec\xd3\xeb\x32\x42\xeb\x40\xf8\x12\xf1\xb4\xfd\x1c\x08\xdb\xf0\xd9\x4f\xf3\xc7\xe8\xfa\x2e\xf0\xb6\xa7\xaa\xeb\x20\xe1\x92\x6d\xac\x7b\x67\x4d\x2e\x41\xf9\xee\x8d\xbf\x91\x5f\x1d\x09\x6e\xee\xbb\xb7\xfe\xfc\x1a\x4e\xe8\xd9\x0b\xb9\x83\xa1\xbb\x08\x7b\xaa\x96\x8b\x89\x0c\x78\x13\x5a\x5c\xe6\x9c\x77\x0e\x5a\x49\x08\xe3\xb3\xbd\xbb\xd1\xe2\x26\x21\xee\x6c\xef\xda\xe0\xff\x02\x97\x86\x5a\xf4\xfb\xaa\xed\x1c\x10\xf6\x53\x2a\x92\xbb\x69\x4f\xe8\x8e\xdf\xf2\x4b\xd1\x3b\x86\x3d\x36\x9a\x70\xdf\x3c\x76\x66\x8d\x13\xe1\xb5\xe4\xb3\x6f\x87\x37\x89\x10\x78\x5f\xee\x2e\xf9\x32\x3c\xcc\x8c\xa1\x41\x25\x8b\x2c\x47\xca\x19\xf8\x2b\x56\x8e\x53\x4c\xce\x21\x04\xab\xa4\x7c\xca\xe8\x52\x24\xb8\x7a\x2f\x97\x0a\xe5\x5f\x4a\xe8\xaa\xb4\x39\x50\xdd\xa0\x40\xd0\xf8\x91\x74\x46\xf9\x4f\x27\x03\xc3\xc4\x9f\x71\xac\x29\x06\x84\x0d\xda\x5f\x56\x1c\x3c\x69\x4e\x48\x3b\x7e\x51\x67\xc9\xcc\x73\xec\xb1\x22\xb5\xc8\x54\x21\x4d\x60\x88\x81\x96\x78\x42\x4f\x7b\xaf\x03\xa1\x71\xfb\x92\x15\x5c\xad\x65\x04\x3b\x51\xfe\x47\x2d\x6f\xca\x38\xca\xf6\x1b\xf9\xde\x43\xfc\xdc\x04\xb5\x96\x63\x1a\x79\x8a\x52\x84\x97\xe6\x0b\xf7\x67\x8c\x7b\x46\x48\x9a\x12\xb9\x6e\x97\x52\x1d\x61\xa7\xbf\x0b\xcd\xdd\x53\x4f\x08\x69\xbc\xb4\xf4\x6f\xd5\x3d\x02\x2b\xb8\xf6\xcb\x7c\x85\x3a\x42\xcf\x6a\xcb\x8b\xab\x86\x23\x09\x0b\x57\x4f\x8c\x13\xa8\x09\x24\xb4\xb5\x76\x58\xeb\x1d\x59\x44\xf0\x3c\xb1\xd4\xdf\x3a\xa1\x89\xc1\xa5\xe5\x73\x8e\x8a\xfb\x0e\x73\xc0\xa9\x63\xc3\x01\x91\xa5\x8d\x2c\x5c\x49\xac\x54\x19\xa8\xaf\x25\x9c\x6c\x3d\x7d\x26\x23\x75\x90\xc1\x3e\x39\xf3\x57\xd1\x5c\xf5\x04\x2d\xc5\xf9\x6d\xad\x4f\xca\x08\xc6\x86\x5b\xef\xc5\x94\xe4\x10\x36\xa4\x56\xb6\x7c\xc8\xbb\x43\xc8\xd5\x74\xfb\x3c\xb7\x91\x8f\x03\xb6\x52\x3c\x92\xd3\xff\x18\x72\xc0\x70\x61\x8d\x81\x7c\xd2\x33\x16\xee\x1f\x3b\xff\x64\xed\xcd\x7e\x06\x66\x82\xfa\xd6\xf3\x34\xe6\xd2\x18\x0e\xed\xee\x52\x78\x58\xcc\x4b\xb0\xd7\x70\xdd\xb0\xff\x27\x17\xa1\xc8\xff\x9d\xed\x89\x55\x83\x0c\xb8\xdd\xfd\xd6\x9e\x18\xfa\xc5\x60\xb9\xd1\xd2\x83\xba\x17\x7e\x30\xf8\xd6\x31\xdd\xc5\x56\xae\x81\x01\xbf\x89\xdf\xf0\xdf\x48\x05\xc2\x9e\x62\xc3\x4d\x91\xbf\xb6\x13\x5c\xaf\xb9\x19\xfb\xfc\x12\x26\x08\x87\x1d\x7c\x7f\x34\x21\x88\x03\x49\x75\x2d\x22\x91\xd7\x5f\x31\x08\x7a\xf2\x6e\x1a\x33\x51\x8f\xd0\xb5\xb6\x50\xdd\xd0\x66\x98\x41\x59\xc2\x3a\x05\xb7\xa1\x74\x82\xf8\xc6\xa6\x65\xd3\xf4\x32\x08\x87\x64\xae\x74\x25\xa5\x73\x13\x36\xb8\xb2\xdb\x55\x2e\x08\x11\x94\xb7\xae\xf9\x73\x25\x46\x9b\x70\x49\x78\xe5\xbe\x4c\xd1\x4b\x84\x1d\x62\x93\x2d\x66\x17\xda\x11\xac\x2d\xda\xdc\x6e\x44\x5a\x10\x1a\x94\x5f\x2c\x15\xca\x9e\xc4\x01\x3d\x3f\xae\xe1\x64\xf1\xd7\x2c\x60\x8a\xaa\x64\xf5\xa6\xe5\x84\xf5\x9d\xdf\x1d\xce\x98\x9a\x13\xa2\x9f\x82\x5f\xb0\xcb\x8c\x20\x6b\x7d\xf1\x79\xc7\x25\x39\x42\xfc\x40\x73\xab\x91\x4b\x37\x83\x5d\x60\xfd\x99\xf8\x47\x9b\xf0\x4b\x79\x60\xfc\x0a\x7d\x15\x02\x9f\x6b\x52\xac\x96\xe2\x64\xc2\xa5\x23\x53\x1f\xa9\x35\x5d\x22\x64\xaf\x7f\x70\x28\x76\xef\x34\xc2\x9a\x81\x1e\x63\x51\x4c\xa6\xc1\xaf\x3c\x4e\xa7\x43\x74\x09\xbf\x52\x87\xb3\x6f\xfc\x5c\x46\x48\x30\x39\xfe\x57\xb3\x67\x33\x21\x6e\xbb\x9f\xd6\xcb\xca\xf5\x84\x9e\x3d\x3c\x11\x61\xa5\xbf\x19\x84\x1a\x5e\xbe\x79\x5e\xda\x95\x50\xd2\xc2\xfd\x21\xcd\x4f\x96\x60\xfb\x62\x5e\xe7\xae\x3e\x53\x82\xf4\xc8\x06\xfd\x73\xe9\x44\x38\x96\x49\xaf\x56\xef\x91\xe5\xc0\xb5\xc8\xf0\xb6\xfa\x15\xe7\x58\x48\x35\xff\x18\xc0\xf3\xb6\x90\xa0\xca\x77\x54\xd2\x31\xa6\x94\xf0\x90\x7d\xf5\x82\x8a\x4d\x05\x1b\x72\xeb\x65\xad\x1e\x18\xb0\x09\x16\x67\x47\x2e\xc7\x3e\xfd\xce\x60\xb8\x4c\x6f\xdb\xc3\x7b\xe3\x69\x0c\x51\x02\x5c\xf3\x35\x8e\xbe\x60\xe1\xb4\xfe\xbc\x22\xb7\x92\x35\x84\x9a\x38\xcb\xe3\xcd\x91\x2b\x39\x90\x7c\x61\x6a\x1e\x5b\xf9\x23\x03\xf7\x1e\xdd\xfd\xaf\xbe\x30\x84\xfa\xe0\x6d\x5b\x04\x25\x35\x08\x11\xeb\x4e\x85\x3a\xfe\xad\x60\xe3\xda\x90\xc3\xb9\x2f\xfb\x1e\x12\x3a\x5c\xb5\xed\xff\x21\x78\xd2\x90\xc0\xf5\xb5\x85\x84\x8a\x55\x77\xc2\x37\x3a\xc4\xb0\x31\x55\x92\x07\x62\x25\xc5\x84\x7d\xce\x7f\xa7\xce\x7f\x50\x46\x78\x91\x39\x4e\x58\x5e\x28\x97\xf0\x6b\xa3\x4a\x91\xe1\x39\x1d\x42\x55\x16\x4f\xfb\xf8\x43\x46\x84\xde\xbe\x25\x97\xdc\x87\xb5\x09\xa9\x55\xbf\xc7\xcd\xfb\x64\xce\x51\x04\x65\xb7\x2d\xa9\xf4\xf5\x20\xb4\x4c\x89\xd6\x10\x51\xde\xc7\x51\x02\xf4\x9f\xec\x6f\xec\xb3\x26\xec\xfc\x2c\x92\xf5\xe4\x95\x01\xe1\xeb\x46\xad\x5d\xaa\xd7\xef\x10\x8c\xf5\x4e\xed\x6b\x34\x9d\x41\x10\x33\xbd\x76\xb6\xbe\x4f\x8d\x50\x98\xd0\x93\x96\xbd\x7b\x26\xa1\x7a\x46\xf6\x7a\xdb\x15\x0d\x84\x75\xf7\x74\x27\xdc\x18\x2d\x67\x8f\x35\x2f\xbe\x71\x71\x1c\xe1\xc0\xb3\xdc\x2f\x7c\x86\xca\x84\x2b\xde\xf6\x37\xdd\xf8\x64\x09\x6d\x2f\xd7\x4a\xe9\x8b\x58\x10\xde\x54\x73\x29\x0d\x85\xc6\x73\x40\x94\x69\x1d\x1a\x1c\xc5\x20\xdf\x11\x21\x9f\x75\x73\x08\xf3\x6f\x1f\xc9\x17\x3d\xfb\x9a\xc1\x5e\x6f\x76\xfe\x86\x38\x3d\xc2\xae\xa0\xf3\x35\xaa\x83\xa1\x6c\x58\x55\x38\xf1\xa7\x79\x06\x12\xc8\xa5\x71\x60\xb2\x57\x10\x8d\x15\xbf\x63\x96\x4d\xf9\xdd\x7b\x09\x26\x57\x83\x5e\x68\x1e\x7c\xc4\x40\x9f\x5b\x9f\x79\xb1\xb2\x8d\x81\x47\x58\xbc\x14\xcf\xc9\x1c\x82\xf6\xa0\xb7\xed\xb5\x0b\x0a\x84\x77\xde\x69\xdd\x96\x97\x65\x39\xb0\xf9\xe1\x5e\x83\xb2\x94\x57\x2c\xfc\xf9\xe1\xf3\xdb\xec\xe4\x45\x36\xe4\x17\x7f\x91\xdd\xca\x24\x13\xce\xf8\x99\x84\xa8\x9c\xcc\xe7\xc0\xe1\x6e\xed\x6f\xb9\xdb\x8b\xd8\x63\x65\xbf\xcd\xfe\x38\x15\x57\x33\x42\x76\x59\xea\xaf\xb2\x07\x42\x84\x9f\x6f\x0d\xb6\x6c\xd7\x89\x26\x24\x78\x5c\xb4\xdc\x77\xa6\x9f\x81\xc9\x46\x81\x4d\x2e\x61\xe6\x04\x89\x17\x8b\x66\x2d\xcd\xf7\x25\x2c\x3f\xb1\xfc\x7c\x86\xe6\x0e\xc2\xaf\xdc\x9c\xae\xbc\x49\x8a\x84\x65\x13\x1e\x8e\xd3\x32\x32\x25\xcc\x9f\x36\x61\x28\x58\x48\x86\x10\xf6\xe8\x7b\xca\x78\xae\x7c\x16\x6c\xb2\x8b\x75\x87\x79\x5e\xb0\xc1\xfb\x53\x62\x60\x78\x61\x3d\x61\xd7\x60\xf2\xbe\x1b\xb1\x65\x04\x5b\xae\x5b\x86\xc5\xaf\x7d\x09\x1b\xab\xd6\xec\x7b\x78\x71\x13\xc1\xac\xe9\x39\x8f\xfb\x12\x43\xc2\x3a\xb1\x34\xdb\x0e\xdd\x05\x84\xdd\x8d\xed\xea\x1f\x2c\xe5\x08\xe9\xea\x89\xbd\xca\xc7\x64\x09\xc6\xf1\xd6\x11\xe6\xe7\x85\x08\x2a\x51\xba\xb2\x23\x3f\xe6\x73\xe0\xb5\x45\x52\x9d\xb5\x4c\x17\x0b\x53\x72\xeb\x6f\xe6\xd6\x2f\x25\xf4\x7b\x3c\xe0\x3b\xe6\xb1\x8d\x10\x62\x60\x33\x64\xe0\xa6\x47\x60\x39\xf2\xdf\x9c\x13\xbd\x8d\x10\xfe\x69\x82\x8c\x7a\xfb\x66\x42\x7f\x9b\xc9\x8a\xaa\xb7\xbc\x84\x13\x7a\x1d\xaf\xc4\x86\xcb\x08\xcd\xfa\x19\xfb\x5c\x1d\x8c\x09\x6b\x57\x99\xfa\xd8\xc7\x3d\x60\xe3\x02\x9b\xa5\xcf\xb3\x52\x82\x60\x26\x5f\xfb\x27\x59\x7f\x2b\xe1\xfb\xc7\x35\x99\x4d\xa6\x5b\x09\x1b\x12\xb8\xce\x09\x09\x6f\x22\x74\x4e\x2f\x89\x9f\xe9\x39\xc0\xa0\xe2\xc8\x8c\x71\xce\x1e\xd2\x04\xaf\x09\xd1\x3c\x5b\x16\xff\x61\x50\x69\xe0\x95\xf4\x4e\x41\x9f\xb0\x2b\xfc\x97\xd7\xaa\x27\x8f\xd8\x18\xce\x5b\xbd\xff\x5f\xb1\x3d\xdc\xf6\xb7\x3f\xb5\x97\x81\xe7\x55\x8f\xac\x9f\x29\x15\x34\x86\x7b\x9b\x95\x95\x55\xea\x59\x84\xb9\xda\x4d\x35\xca\xa3\x98\xd2\xaa\x7d\x6f\x41\x7a\x12\xa1\xea\x8e\xb9\x4d\xfc\x67\x16\x21\xe4\x7c\x8f\x59\x97\x5f\x06\xc1\x90\xd9\xb4\x67\xfe\xe8\x99\x6d\x42\xcd\xe6\xbd\xc2\x3b\x09\x92\x5c\x99\x93\x98\x7b\xc7\xd9\x63\xe5\x3f\x58\xb8\x4c\x61\xe5\xed\x61\x37\xc2\x9a\xcb\x32\xa7\xaa\x24\xae\x11\xa6\xdb\x0d\xb8\x7f\xd1\xdd\x4e\xf8\x68\xec\x76\x75\xda\xdd\x4d\xec\xb1\xe2\x13\x9a\x27\xeb\xdb\xe9\x46\x38\xe6\xee\x91\x23\x71\xaf\x80\xf0\x35\x38\x72\xbe\xe2\xaf\x62\xc2\x66\x63\x63\x89\xc2\x39\x7b\x09\x9e\xe7\x22\x1f\xdc\xcc\x76\x21\x68\x57\x90\x75\xd4\x6a\x5f\x36\x26\xf5\x74\x6f\xb9\x6c\xed\x41\xf8\x21\xa9\xb1\x86\x5d\x91\xc4\xc6\x1a\xcf\x43\xc5\x31\x56\x17\x08\x51\x96\xcc\x95\x56\xaf\x52\xc2\x06\x39\xa1\xfa\xd9\x29\x47\x58\x50\xf8\xcc\xbe\xba\xbe\xfa\x34\xfd\x0f\xac\xf3\xcb\x4c\x76\x0e\x9c\x48\xc8\x29\x33\x72\xfe\x2b\xe2\x44\x58\x30\x63\xcf\xdd\x3e\xc5\x22\x42\x33\x9d\x16\x99\x14\xfe\x94\x50\xeb\xfc\x79\xc1\xbf\xc2\x76\x51\xd2\xde\xcf\x63\xc7\x81\x80\xae\xa9\x96\xa1\xe2\x36\x84\xe6\xa1\x6d\x33\x5b\x86\x2d\xfe\xd7\x99\x0d\xfb\x22\xe4\x35\x33\xcd\xfe\x17\xf6\x38\x89\xc8\xc5\x17\x4e\x21\x5c\x77\x37\x3c\xb5\x27\xe6\x30\xe1\x52\xc3\xc6\x03\x37\x37\x9a\x73\xe0\xa8\x5e\x73\x72\x95\x96\x09\x07\x9c\x3a\xa3\x6f\xf3\x4a\x09\x13\x16\xc5\xff\xa6\xbd\x8d\x95\x84\x0e\xaf\x9a\xa9\x87\x76\x65\x11\x56\xae\x67\xd5\x1e\x9a\xfb\x83\xb0\x6b\x8b\xd8\x8d\x03\xa3\xc8\xda\x90\xe8\x55\x29\xfe\x83\xa0\x9c\xb7\xd6\xf1\x47\x6e\x0b\x21\xe8\xc4\x0e\xb5\xf4\xa3\xe7\x09\x42\x07\x34\xab\x4e\xb1\xa2\x09\x29\xe7\x55\x42\xca\xe8\x3c\xe1\xdb\x2e\x81\xe6\xb4\xd1\xd1\x8c\xf0\xc9\xd7\xcc\xc2\x96\x12\x2e\x0b\x28\xd4\xec\x2d\xcd\x23\x18\x5e\x91\x4e\xbf\xb3\x5f\x95\xf0\x88\x27\xc2\x3d\x54\x21\x9c\x10\x20\xf7\xd6\x5d\x52\xd4\x83\x30\x3f\x79\xed\x87\x3c\x4b\x5b\x02\xab\xed\x5a\x43\xc1\x21\x79\x42\x17\x3b\x27\xc9\x51\x3b\x86\xd0\x29\xac\x5f\xdf\x68\x2f\x4a\x60\xaf\x60\x19\xf2\x1e\x2a\x23\xbc\x3f\xea\xfc\xe7\xbf\x31\xeb\xeb\xf2\xda\xff\x46\xcc\x6f\xbb\x4a\x6f\xfb\x14\x82\xd2\x8d\xaf\x86\x35\x46\xa9\x84\xbc\x45\xe2\x4e\x11\x62\xc9\x1c\xe5\xff\x17\x65\x0b\x25\x7f\x4b\x69\xa9\x12\x02\x7c\xaf\xf5\xba\x08\x87\xb1\x41\xd1\x3f\x32\x3d\x43\xf5\x08\x6e\xe9\x77\x97\x07\x97\xa9\x11\xde\xe4\x5f\xda\xad\xe5\x3a\x89\x60\x2b\xd8\xfe\xfb\xf7\x1a\x83\xd1\x57\x77\x98\xca\xea\x6e\x03\xc2\x09\xde\x14\x8d\xcb\x46\xf2\x1c\x08\xae\x15\xd8\x35\xeb\xd3\x27\x06\xbb\xbb\xab\x45\xee\xff\xd6\xa0\xc1\xdb\x7b\x83\x77\x44\xd4\x32\xe0\xab\x5a\xf8\x28\xee\xfb\x76\x1a\x43\xc6\x60\xfc\x6e\xff\x55\x0b\x09\x5c\x5e\xf1\x57\x57\xdc\xb0\xa7\x41\x11\x37\xee\x91\x57\x4f\x09\x2c\xa9\x4d\xd7\x73\xd6\x1d\x27\xf8\x3c\xf8\x1e\xda\xb1\x71\x1c\xa1\x21\xe9\x8a\xce\x94\xd4\xcd\x84\x58\x25\x33\x57\xbf\x0a\x25\xc2\x6d\x77\xee\x65\x12\xab\xe7\x10\xb4\xac\x5e\x2b\x4e\xda\x7d\x9d\xe0\x30\x7f\xa4\xa1\xde\x77\x11\xe1\xd1\xde\x07\x86\x5c\x89\x02\x04\xc5\x29\xd3\xcf\xa9\xe7\xe7\xb0\x51\xbb\x39\x5f\x74\x93\xe2\x43\x42\x8c\x94\xd7\xfe\xa1\x80\x99\x04\x83\x66\x1e\x47\xb5\x40\x7b\x0e\x5c\x1b\x10\xce\xbd\x9f\xa9\x4e\xf8\xf4\x76\xa0\xf0\xe0\xc1\x3f\x0c\xf6\x6f\x61\xdf\xec\xf0\xdc\x4e\x78\xba\x20\x8c\xdd\x3b\x65\x35\x61\xbc\x75\x9d\xdb\x0a\x3d\x1d\x42\xc4\xd5\x8d\x3b\x2f\x57\x88\x13\x6c\xae\x4a\x49\x0b\x71\xfd\x66\x10\x97\xf5\xf4\x5a\x58\x71\x2d\x03\x57\xae\xf8\x5e\xf1\xcd\x17\xd8\xd0\x66\xb7\xec\xde\x9c\x6f\x48\x10\x4a\x28\x08\x72\x4c\xe0\x23\xd0\xa6\xbc\x7d\x1d\x5c\xeb\x08\x77\xda\x14\x75\xcf\xf6\x77\x33\x48\x91\x17\xaa\xf8\x71\xc4\x82\x10\x71\x22\x5e\x51\xd8\x5f\x9c\x03\x47\xa4\xfe\x5c\xaf\x5f\x69\x40\x08\x17\x0f\xfa\x70\xe9\xa7\x15\xc1\xfb\xad\x69\x8e\xf7\x7a\x13\x8e\x91\x94\x4c\xf5\x69\x33\xdd\x22\x06\xde\x99\xad\x89\x6f\x78\xde\x32\xe8\xba\x54\x99\xbb\x6e\xaa\x2c\xe1\x76\xc3\x0d\xe1\xfb\x52\x45\xac\x31\xd4\xdc\x9e\x95\x74\x79\xd6\x3c\xfa\x1f\x68\x33\xfc\xf9\xf1\x6c\x6c\x07\x0b\x46\xef\x26\x6d\x5f\x59\xf5\x9c\x8d\x10\xb7\x9c\xdd\x12\xba\x9f\xd9\x88\x2b\x2c\xf8\x9b\xd3\x5d\x4e\xd8\x95\xb5\xe3\xc6\x5a\xf1\x85\x04\x7b\xab\xe8\x1d\x5e\x59\x0f\x08\x45\x1b\x2e\xa6\x46\x28\xb5\x31\x10\x09\x16\xf3\xbb\xb2\x79\x31\x01\xd2\x3e\xe3\xae\x25\xff\x64\x30\x6f\x4e\xdd\xea\x92\x8d\xe2\x84\x2d\x11\x2f\x1f\x0d\x4e\xf5\x20\xcc\xfb\xb9\xa8\xe2\xa2\xcc\x14\x42\xdc\x8e\xd5\x3e\x4f\x2c\xbc\x38\xe0\x2d\xd7\x6d\xaf\x36\x83\x8f\x20\x12\x6f\xcf\xfa\xda\xb5\x85\x10\x36\xef\x76\xe2\x13\xd6\x2d\xc2\x9a\xc6\x19\x7c\xc9\x73\xa3\x09\x55\x3d\xd7\x0f\x16\x55\xdc\x25\xd4\xb9\x0e\xdb\xfd\xa9\x30\x23\xa8\xf3\xae\x91\x3a\xa6\x97\xc4\x86\x6a\xa3\x97\xbf\x6d\x84\x0c\x21\xf4\x83\x8d\x8c\x71\x63\x36\x61\xdd\x01\x97\xbf\xf7\x44\x0e\x10\x0a\xdf\xdd\x7d\xd4\xa1\x52\x4b\x68\x38\xbe\xe8\xcc\xf2\xc5\x9b\x08\x65\x13\x73\xb8\xa7\xfc\x50\x24\xcc\x5d\xb2\x71\xed\xb7\xd9\xce\x84\x33\xdf\x9a\x17\xed\x7c\x60\x4b\x08\xe1\x6e\x58\xbb\xa2\x6c\x0b\xe1\xe2\x4d\x61\x9e\xd3\x6b\x8c\x69\x30\xdf\x53\xde\x90\x35\x83\xa0\xfc\xc4\xd3\xaf\x58\x86\x08\xf7\xc2\xfe\x9e\x1d\x2a\x51\x25\x4c\x09\x31\x5f\xe4\x22\xaa\x44\x58\x7f\xaf\xbc\x52\x64\x86\x10\x41\x6a\x5e\xbf\xbd\x41\xdd\x4c\xc2\xf1\x35\xdf\x0c\x6c\xaa\x0d\x09\x6b\xac\xdf\xe4\xb5\xe4\x0e\x33\x58\xb7\x36\xcb\x4d\xe0\x63\x3e\x21\xe8\x5a\xdb\xa4\x43\x31\xe3\x08\x22\xef\xad\xfa\x27\x5f\xda\xf8\xbf\x30\x62\x22\xfc\x33\xe0\xeb\x63\x06\x41\xcb\x06\xca\x13\xbc\xf4\x08\xae\x39\xb7\xdf\x5c\x9c\x63\x46\xf0\xb0\x9d\x22\x34\x75\x9d\x1a\x41\xb6\x85\x44\x8e\x0b\xcc\x22\x9c\xad\xb0\xdb\xfe\xf6\xf9\x15\x16\xc2\x23\x4d\x0c\x55\x42\xb7\x13\xbe\xf0\x0a\x77\x2f\xf0\x75\xa2\xc1\x22\xf6\x29\xe5\xaf\x1b\xff\xf3\x15\x69\x29\xa9\x9a\xb9\x0d\xed\x2c\x94\x2e\xfe\x3d\xf5\xf1\x6e\x6d\x42\xf1\x7d\xee\x97\x55\x8f\x56\x12\xae\xf8\x87\x4c\x49\x3e\xf5\x94\xd0\xe7\xd2\x70\x3d\xfd\x40\x0e\x41\x66\xeb\xc3\xa5\xee\x17\x5b\x19\xe4\xbe\x3d\x6e\x72\x23\x3a\x99\xe0\x71\x26\xd1\x7b\x55\x2c\x27\xb8\xac\x1c\x6b\xbf\x45\xd9\xd3\xe0\x1f\x8d\x12\xb7\xc2\x52\x82\x62\xf4\xe1\xf2\x3d\xcf\x1d\x08\x56\x7e\x96\xc3\x53\xb7\x38\x10\x26\x76\x4e\x5e\xdd\x5a\x67\x4a\xf0\x2d\xf9\xbc\x7d\xe9\xcf\x4f\x0c\x96\x04\xbc\x3f\xd6\x67\xba\x96\x70\x43\xe5\xc9\x8b\x15\xc7\x46\x18\xe4\xdd\xb8\x55\xba\xf0\x8d\x1a\x21\x79\x72\xc4\xeb\xa1\xe7\x07\x08\x2b\xd5\x37\x77\x46\xab\x97\x12\x42\x23\xf9\xa5\xe5\x73\x1c\x38\xf0\x6b\xc2\x9e\x0d\xdd\x7d\x0b\xd8\xff\x63\xf4\x3a\x7b\x47\xce\x3a\xc9\x3b\x04\xc1\xa0\xe4\x5f\xff\x0d\x5e\x3b\xd6\x5c\x8f\xf5\x60\x80\x23\x12\xc1\xd7\x4e\x56\x13\xde\x27\xa8\xbf\x49\x9c\xcc\x26\xf0\xc3\xf4\xd7\x96\xe6\xc5\x84\x34\x71\xdd\xdc\x28\x53\x41\x82\xb2\xd8\x8d\x49\x1b\x65\x17\x70\x20\xe9\xe8\xe1\x49\x4d\x22\x9f\x18\xb4\x87\x29\x7f\x98\x7b\x4d\x73\xf4\xb9\xf2\x78\x6e\xba\x7d\x0c\x1b\xfb\xdb\x34\xe4\xae\xcd\x2d\x27\x78\x1d\xb4\xf0\x0e\x39\xf2\x98\x8d\x67\xc3\x31\xe3\xea\x17\x26\x10\x9e\xf7\x38\x7b\xae\x87\x23\xe1\xef\x3c\xff\x82\x49\xbe\x5a\x04\x79\xbd\x85\xee\xaf\x64\xd7\x13\x24\x3d\xd3\xab\xb7\x57\xdc\x23\xfc\x5d\xe7\xa4\xfa\x72\x8a\x16\xc1\x7b\x4a\x76\x56\x50\x9d\x08\xe1\x5e\x8a\x2e\xcf\xac\xbc\x69\x84\x74\xeb\xd9\x1a\x17\xa7\xce\xe3\x40\xcd\x9c\x57\x6f\xb2\xa3\x35\x09\x3f\x0b\x3d\xa6\x9c\xf0\x36\x24\xcc\x5e\x39\xf5\x99\xe5\xb7\xb9\x84\x8b\xd7\x7d\x6a\x7f\xf6\x2c\x21\xa4\x9e\xa8\xd6\x3d\x97\x54\x41\x70\xc8\x68\x4c\x37\x51\xa8\x67\xe3\xa1\xe9\xa4\x91\x7d\x4e\x6c\x42\xfc\x4f\x5e\x35\x3d\xa1\x66\x36\x9e\xd5\xe9\x8b\xb8\x5b\x9d\x22\x98\x89\x2c\xac\xf7\x5e\x13\x48\x78\xfb\xf5\xa1\xef\xef\xa7\xd1\x84\xf7\xab\xb2\x8d\x4d\x9c\x0e\x12\xa4\x66\xae\x39\x1e\xb1\xc1\x93\xa0\x7e\x2b\x8d\x2b\xc0\xf2\x10\xe1\xba\x49\x48\x90\xab\x4a\x0a\xc1\xa1\x54\xd2\xf7\xf4\xe3\x70\x42\xad\xd8\x90\xfa\x8d\xce\x18\xc2\x62\x8b\xa6\x9c\x3f\xa6\x1e\x04\x5e\x21\x52\x6b\xfe\x5e\x48\x68\x2e\xb0\x77\xba\x6d\xe7\x49\xf0\x15\x4a\x1a\xfa\xd8\x7d\x84\x8d\xf9\xc7\x02\x73\x13\xac\x63\x09\x97\x02\xf7\x04\x87\x86\xc4\x12\x56\x68\x3d\xb5\x9d\x2a\x1d\x49\x78\x18\x91\x9b\xdf\x97\xe9\x4f\x60\xc9\x3c\xfe\x2b\x6f\x6c\x46\x48\x60\x37\xce\xd6\x73\x19\x47\x60\x99\xed\x8c\xbd\x64\x7e\x86\x60\xf1\x57\xe2\x7c\xfc\xc4\x73\x1c\xe5\xfd\x84\x89\x11\x97\x7e\x04\x13\x26\x97\x97\x86\xcf\xee\x0f\xe6\x28\x33\x2d\xc2\x03\x44\x5f\x9d\x25\x2c\xf2\xfe\x65\x5b\xe4\x36\xba\xd7\xfc\x61\xcf\x5f\xfc\x7a\x0b\xe1\xc3\xfc\xce\x85\x02\x27\x36\x10\xe6\x1c\xcc\x89\xd5\x58\x11\x44\x58\xd8\x12\x1f\x29\xb8\x61\x25\xc1\x81\x79\xba\x6a\x97\xcf\x37\x06\x06\x0b\xa7\x25\x5a\x67\x1c\x61\x21\xc1\xb5\xc0\x71\xc7\xa7\xd3\xf4\x7f\x21\x27\x5e\xd6\x7a\xe3\xe8\x5d\x28\xa1\xf3\x23\xff\xc4\xe9\xf9\x04\xd7\xf4\x39\xd6\x87\xa6\xcf\x21\x08\x0d\xee\xed\xd7\x0f\x5e\x42\xe0\x99\x14\x32\xd3\x33\x77\x35\xa1\xb2\x4a\x9b\x9b\xa7\xc3\x9e\x70\x54\xe4\xb3\xf9\x1f\x6b\x33\x0e\x7c\x56\xf2\xe9\x8a\x0a\x9b\x4b\xe0\xdd\x97\x56\xc7\xde\x2c\xc1\x51\x32\xd6\x7c\xf7\xfb\x5b\x21\x40\x58\xfe\x23\x4f\xf2\x8b\xde\x7e\x42\xdb\x9c\x96\xfb\x7d\xbe\xe6\x84\xeb\xf5\x3c\x6b\xb7\x55\xe8\x11\x76\xee\x51\x7a\xfd\xcc\xbd\x93\x41\x57\xe1\xec\x33\x8a\x01\x7f\x18\x94\x1e\x1f\xd1\x74\xe9\xb1\xa6\x31\x6c\xf9\x63\x2d\x92\xc6\x2f\x40\x28\xe6\x96\x2f\xa8\xae\x76\x27\xf0\xcd\x5e\xba\x72\x71\x1a\x43\xe8\x14\xbf\x7c\xeb\x4a\x1a\x8b\x03\x5f\xb8\x54\x32\x5c\x46\x2e\x11\x3a\x1f\xee\xbb\xc8\xff\x66\x05\x41\x79\xef\xcf\x7d\x33\x52\x6e\xb1\xc7\x70\x26\xdc\xc7\xc6\x6d\xda\x22\x82\x80\xc0\xde\x85\xca\xf9\xc7\xd9\x90\xd4\x71\xd8\x73\x2e\xbe\x94\xe0\xab\xfd\x2a\x56\x67\x75\x0b\x21\xb2\x5c\x7e\x73\xb0\x42\x1c\xa1\x7e\xf5\xba\x13\x6f\xf3\xfd\x08\x7b\xe7\x0c\x6c\x0a\x54\xf3\x23\xa4\xec\x46\x31\x02\x12\x09\x3a\xb6\xbb\x79\xea\x14\x7b\x18\x68\x18\x4a\xbf\x15\xf7\x0b\x24\xd4\xfe\xe6\xa9\xf9\x87\x6e\xcd\xfe\x3c\x45\x03\xc3\xff\x85\x12\xd1\xbf\x23\x81\x09\x7b\x38\x20\xb6\xe4\xe8\x1f\xe5\xf9\xfb\x08\xe1\x69\x29\x3f\x4e\xaf\xb3\x26\x5c\x1d\xf1\xcc\xba\xe5\x1f\x49\x58\x1f\x3d\x7f\x9c\x89\xb7\x22\xa1\xef\xe1\xec\xc7\x07\xce\xac\x21\x58\x34\x18\x69\x27\x86\xae\xa0\xc1\xb3\x62\x33\x37\xbb\xca\x10\x12\xbb\xf4\x45\x3f\xaf\x74\x20\x64\xce\x65\xc7\xbc\xb0\x9a\x47\x68\x16\xbd\xec\xbc\xe1\xf8\x6e\x8e\x12\xd7\x62\xed\x5f\x32\xa9\x8a\x81\xfa\xae\x98\xe2\xba\xec\x57\x0c\x2a\xfd\xcb\x83\xae\x28\xf6\x73\x60\xbb\x93\xf4\x94\x0d\x53\x1b\x58\x98\x39\x4f\x34\x5b\xa8\xa7\x8f\xc1\xb9\x8a\x93\x6d\xc1\x7d\x03\x0c\x18\xb5\x03\xab\xf2\xdb\xe7\x10\x5a\x97\xb3\x07\x6f\x7e\x5b\x41\xb0\x63\xeb\x9f\xda\xda\x76\x98\xd0\x29\x6b\xea\xf6\x5b\x60\x11\xe1\xa2\x5e\x5a\x4a\x6a\x7c\x18\xc1\x7d\x5b\xed\xeb\xc7\x9e\x1b\x59\x90\x7d\x2e\x17\xa2\x74\xd5\x8b\x30\x92\x7e\x20\x86\x6f\xa5\x3e\xe1\xfc\x4d\x71\xf1\x55\xd7\xa5\x09\xed\x8a\x66\x41\xe9\xa9\xb3\x08\x9d\xbb\x6a\xe6\xfc\x1e\xaf\x4e\x68\xbf\xb3\x67\xef\x79\x6f\x4b\x82\xa1\x77\x27\x2f\xd3\xae\x36\xba\x9c\xf5\xef\x9e\xb0\x68\x35\x21\xfd\xd7\x86\x6e\x95\x69\x9b\x09\xcb\x5e\xe9\x66\x47\x0a\xaf\xe6\x18\xa5\x05\xea\x6d\xda\xf7\xda\x93\xe0\xe5\xdc\x95\x53\x77\xd9\x9b\xa3\x8c\x7f\x78\xb1\x62\xd7\xfc\xf3\x84\xe9\xc9\x52\x9e\x71\x7c\x7a\x04\xc3\xdf\x13\xaf\x2b\xdd\x14\x20\xe8\xfe\x90\x3a\x9a\x2a\xa9\xc4\x81\xae\xef\x93\x1f\x96\xb0\x04\x09\x1e\x4e\x47\xe2\x62\x0c\xbe\x30\x78\xdb\xd3\x9d\xb9\x42\x57\x91\xb0\x5d\x66\xaf\xea\x78\xbf\x49\x84\xfb\xf9\x59\x91\x05\x17\x97\x10\x4e\xf5\x4d\x75\x0d\x90\x06\x83\xc5\x57\x7a\x1b\x94\x42\x94\x08\xa7\xdb\x49\xc2\x40\x55\x8e\x03\x19\x9d\x77\x72\xba\x2d\x53\x38\x70\x52\x69\x9a\xef\xb1\x99\x97\x39\xf0\x54\x67\x8d\x52\x13\xb7\x0d\x81\x2f\x44\x61\xc7\x43\xa5\x6b\x2c\xc4\x2c\xf2\xca\xfe\x68\x0b\x06\xfc\xd3\x43\x95\x3f\xfd\x5d\x4c\x50\x4d\x0f\x6f\x17\x5a\x6b\x4a\xc8\xdc\xba\x2a\x24\x65\x7b\x02\x61\xd1\xf3\xa0\xbd\x5d\x07\x79\x08\x56\xaf\xb9\x77\x6d\x33\x37\xe6\x80\xae\xbd\xd6\xfe\x74\xb3\x01\x06\x5b\x1e\x07\x97\xc6\x87\x2e\x26\x98\x5c\x9b\xfd\x2b\xbc\x7d\x22\xa1\xdd\x7f\x76\xfa\x9c\x8a\x4f\x0c\x04\x07\xd6\x6c\xa8\xec\x18\x60\x70\xdb\x66\xfd\xd5\x87\xf1\xc3\x0c\xd2\x6f\x2d\xb0\x3d\xaa\x2e\x4e\xd0\x7c\x72\xd3\x6c\xba\xe3\x6c\xc2\xc1\x71\x33\x8c\xdc\x16\xc9\x10\xd8\x3e\x93\xef\x45\x56\xcb\x70\x94\x80\x2d\xdc\x8f\xf3\xfd\x4c\x08\x07\xb3\xbe\x36\xf2\x46\xae\xe6\x28\x9f\x06\x7b\xe7\xf2\x9f\x98\x40\xf8\xd9\x9d\x96\x52\xd3\x3d\x8d\x70\xbe\xf2\xab\xc5\x3c\xad\xc5\x84\x3b\x9b\xe7\x36\x59\xde\x68\x66\x30\x43\x5f\xe3\xa9\x7c\xd2\x38\x02\xfb\x67\x53\xfc\x0a\x7b\x73\xc2\xd0\xae\x47\x6d\xbb\xf3\x04\x09\x0d\x96\x03\x26\x8b\x5f\x49\x70\xc0\x44\x65\x93\xc4\xcf\xde\x7e\x06\xb9\x5c\x06\x1f\xbb\x73\x7e\x31\x88\xda\x15\x73\x62\xfa\xd3\xc7\x0c\xa4\x77\xde\x58\xad\xf1\x59\x8d\xf0\x75\xff\xda\x2d\xcc\x42\x7d\x82\xa1\xa6\xce\xd3\x36\xd9\x3e\x06\xbe\xcd\x1d\x0b\x66\x19\xeb\xd1\x18\xc4\x7c\xcf\x8c\xf3\xf2\x2e\x67\x70\x71\x8e\xf7\xa1\x13\x7b\xd2\x58\x10\x70\xf0\x4e\x7a\x13\x93\x47\x38\x68\x24\x6b\xf8\x0f\xc9\xfe\x55\xbf\xff\x61\x7f\x56\x68\xc1\x3f\x04\xbe\x5c\xd5\x3c\xfd\x0a\x1f\xc1\x65\xda\x43\xa1\xd8\x9d\xef\x18\x2c\xf4\x38\x91\xde\x3c\xce\x92\xb0\xd3\x59\xe8\x6b\xf7\xb8\xad\x84\x67\x6e\xf3\x86\x84\x6b\x25\x08\xf6\x17\xab\x3c\x16\x15\x2d\x24\x4c\x98\xef\xb2\xf3\xd6\xcb\x9d\x84\xc3\xb3\x3a\x75\x1b\x8d\x77\xd2\xe0\x25\xf6\xf8\xec\x54\x39\xc2\x5f\x0d\x19\x2f\xcb\xa4\x21\x06\xc6\x5b\xfe\x74\xa6\x9d\x54\x27\xd8\xa6\xba\x1e\xed\x71\x5a\x48\x08\xdb\x8c\xa7\x82\x23\x7b\xd8\x18\x7e\xe2\x2e\xf4\xc8\x40\x89\x30\x3f\x6e\x89\x76\x46\xef\x7c\x82\x5d\x62\x30\xb1\xc4\x13\xd8\xe0\xfb\xf2\x65\xbe\xb2\x71\x12\xe1\x2b\x7f\xec\x7d\xf6\xcb\x9b\x84\xe4\xdb\xc9\x7b\x23\x2c\x6e\x10\xe4\x8b\xbf\x7e\x0c\x19\x2f\x41\x28\xbf\x59\xe5\xe2\x32\x2c\x4e\x28\x95\x4e\x98\x71\x7d\xb6\x2c\xe1\x4a\x47\x9b\x9c\xbf\xe2\x2a\xc2\x3b\xd1\x2c\xa7\x3a\x7e\x4b\xc2\xf1\x29\xc9\xe7\x96\x4e\x33\x21\xec\x70\x5d\x6a\xc3\x6b\xa5\x4e\xd0\x98\xe0\x32\x38\xef\xcb\x6b\x16\x8e\x36\xcf\x1b\x7a\xdb\xb0\x95\xc6\xb0\xa3\x3a\xab\x75\xea\x86\x3a\x06\xb5\x6e\xfb\x3a\xfa\xab\xaf\x11\xee\x2f\x6c\x8f\x16\x79\x19\x45\x48\x76\x0e\x68\x8d\x89\xe0\x26\xec\x15\xbb\x72\x8d\xfa\xd6\xfe\xbf\x41\x79\x07\xdf\xfb\x0b\xbc\x1b\xfe\xff\xc4\xc1\x68\xa1\xf3\xfc\x12\x62\xff\x6f\x58\xf9\xda\x71\xfa\x81\xf9\xa5\x6c\xec\x2e\x28\x96\x0b\xe0\xf9\xc1\xa0\xe1\xf5\x9c\x4e\xe9\xa1\x3c\xc2\x94\x25\x7e\x72\x3e\x89\x1f\xd8\xb8\x11\x32\x12\xe3\x3d\x0a\xb6\x95\x7f\x93\xcc\xaa\xaf\x6c\xec\x37\xde\x61\xd6\xbb\xeb\x25\x1b\xe3\xfb\x1e\x7f\xb9\xbb\x49\x87\x20\x2e\xac\x23\xaa\x18\x78\x80\xa3\x58\xb7\xb7\xbd\x1d\xea\xff\xca\xc0\x2b\x58\xe4\xe7\xd2\x37\x42\x04\xe7\xf5\xeb\x58\x3b\xf2\x16\x12\x7c\x3e\x77\xa8\xff\xcc\x90\xe6\xc0\xd0\x99\x74\xcd\x63\x5d\x05\x0c\x56\xab\x07\x8e\x14\x39\xae\x22\xc8\x3b\xb0\xb2\x3f\x44\xa9\x11\x96\xd6\xaa\x5f\x9d\x3c\xba\x74\xfc\x07\x33\x67\x0e\xad\xf0\xaa\x5a\x41\x28\xfc\x51\x99\x39\xe5\x3a\x27\xae\xce\x9f\x2d\xac\xad\xf2\x97\x81\x9f\xb7\xc5\x14\xfd\xb9\xdb\x08\x33\xcf\xdd\x7b\xfd\xd0\x5c\x9f\x90\x77\xc2\x45\xfa\xeb\xbc\xf5\x04\xd3\xd7\x8c\xa4\x69\xc2\x12\x42\x86\xe7\x95\xdb\xf7\xf6\x8c\x23\x84\xbf\x8d\x78\x5e\xeb\xb0\x93\x10\xd4\x50\xe5\xfe\xec\x2b\x18\xf8\x04\x1d\xbd\xff\x2c\x59\x85\xc6\xb0\x23\xf1\xae\x83\x47\x66\x15\x0b\x41\x87\x1d\x22\x2e\xa6\x4e\x24\x0c\xc7\xa4\x2e\xec\x5e\x34\x81\xc0\x65\x19\x11\xb7\x78\xd7\x19\x82\xa7\x94\xfb\xc8\x85\xc2\xd9\x84\xad\x3e\xd5\xfb\x5b\xaf\x78\x12\xfc\xe2\xf2\xee\xc7\x88\xae\x24\x74\x28\xd7\xda\x49\x88\xf3\x11\x1a\x0e\x7e\xb5\xac\x75\x98\x4c\xa8\x7f\xe4\x19\x77\xf7\xd1\x3e\x0e\xac\x1e\x19\xa8\xcb\x69\x3e\x48\xb8\xba\x69\x68\x42\xee\xf0\x4b\x06\x87\x4d\x96\x2a\x69\xcd\x94\xa0\x31\x78\xa4\xde\x0a\x0b\x75\x07\x03\xe3\xb2\xae\xfc\xf1\xf2\x12\x04\x77\x8b\x3e\x81\x99\x47\x7f\x32\x58\xb1\xad\xb6\xd1\xae\x64\x31\x8d\x61\xe3\x05\x49\xfe\x36\xfe\x1d\x84\x6b\x8d\x82\xaa\xec\x7a\x55\x82\xc7\x1a\x39\x81\x23\x4b\x76\x10\x9c\x1e\x70\xf5\xce\x7a\x77\x8e\xe0\xf6\xa9\xdc\xdf\xf2\x55\x2a\xa1\xfe\xea\x8d\xb0\x7f\x65\x3e\xcf\x1e\x9b\xe3\xa9\x1e\x04\x1f\x3b\xc3\xef\x2e\xcd\x1d\x0c\x3e\xff\x3a\x72\x5a\x7a\xf4\xcf\xcb\xfe\xb8\x5a\xf6\x97\xaa\x2a\xc1\xb0\xef\xc9\x4f\xb2\x75\x25\x4c\xfd\x6d\xd9\x2e\x21\xbe\x9d\xa0\xd7\x58\x26\xec\xff\x7a\xf9\xe8\x72\xe7\xd2\xdd\xd7\xbf\x92\x90\x24\x60\x56\x68\xe7\x37\x9f\xe0\xff\x6e\xca\x70\x5d\xd4\x0f\x66\x0c\xbe\x57\xe7\x09\x46\xd7\xbf\x62\x61\x6a\xce\x6e\x9b\x00\xff\x4a\x36\xf6\x8b\x5c\x7a\x94\x9a\x7d\x8f\xb0\x7f\x6d\x60\xe6\x22\xe1\x48\x42\xd7\x83\x2c\x51\xab\x27\x0f\x09\x8f\x16\x7b\xf8\x0e\x85\x5c\xa6\x41\xd9\xb2\x9a\xc0\x93\x5a\x84\x08\x8f\x60\x2f\x3d\xe9\x9f\x0c\x4e\x37\x3a\x0f\x0d\x07\x18\x10\x96\x93\xda\x8e\x07\x72\x12\x84\xae\xd9\xcb\x8c\x58\x7f\xa7\x11\xcc\x84\xfc\x3a\x5f\x1f\x96\xe6\x28\x05\x1b\xaf\x36\x5e\x7c\x30\x81\x90\x98\x79\x4c\xf2\xde\x09\x2e\x8e\xa2\x7e\x22\xef\xd6\x93\x96\xb7\x0c\x7c\xc6\x39\x0b\x3a\x4c\x56\x26\x9c\x4b\x49\xb0\xd3\xb4\x6e\x67\xa0\x4f\x97\x82\x0f\x1f\xe6\xa6\x31\x9c\x74\x6d\x6f\xe9\x7c\x2e\x4c\x68\x9e\xc9\xf2\x50\x02\x37\x61\x58\x65\x58\xc6\x42\xee\x32\x21\xc4\x2c\xb4\xbd\xde\xa8\x98\x20\xfc\xde\xb2\xfb\x43\xf7\x03\xc2\xdd\xe6\xbd\xef\x7a\x47\xe1\xf7\x84\xfb\xd4\xbf\x12\xa4\xda\xbc\x2e\xd2\xb4\x83\xf0\x2c\x63\xc1\x2f\xe1\xc6\x5b\x84\x9b\x4b\xd8\x56\x09\x35\x75\x84\x6d\x67\xb7\x6a\x4f\x1f\x2d\x5e\xbf\xd6\x4e\x48\x9f\x7c\x9e\xf0\x22\x6a\xde\xd2\xae\xb4\x64\xc2\xbb\xe2\xe5\x89\xcd\x89\x79\x04\xe5\xc3\x39\x55\xaf\x3b\x8d\x09\xce\xb4\x53\xc9\x28\xee\x3d\x03\x7f\x4b\xda\x5f\x58\xcc\x43\x50\xcf\x50\x49\x4b\xb0\x18\x66\x70\x44\xee\xeb\x32\xd1\x6f\x42\x84\x75\xfb\xb9\x30\xed\xab\x2e\x07\xe4\x24\xe5\xd3\x27\x9b\xbb\x10\x2c\x16\x48\xe5\xdd\xbf\xd5\xcf\x40\x24\x4d\x51\xc1\xb1\xbe\x8f\x81\xde\xb4\xca\xf1\xdc\x3d\xb2\x84\x65\xfe\xcb\x36\x0d\xaa\x4e\xe0\x40\xeb\xf2\xcd\x2b\x83\x34\xfb\x98\x31\x6c\xba\x1d\xaa\xb1\x62\x4f\x01\x0b\x22\x11\xc2\xb5\xe9\xb5\x61\x34\x86\x70\x8b\x9f\xf3\x56\x95\xc9\x12\x5c\x94\x9b\x1e\x05\x9d\xba\x46\x78\xdc\xbc\xc9\xfc\xc4\x28\x4a\x92\x94\x74\x82\x47\xe1\xa9\x14\x11\xb0\x79\xfa\x03\xc2\x69\xf1\x82\xc3\xb9\x73\xb7\x10\x7a\x22\x6f\xa5\xeb\x1d\x28\x62\xc1\x4d\xbf\xdf\x8e\x59\x14\x45\x38\xa5\x63\xbc\x65\xb6\x6f\x01\xc1\x59\xd8\x7e\xf3\xca\x67\xc6\x84\x9c\x0d\xd7\x04\x0a\x59\x72\x84\x38\x3d\xaf\xa3\x32\x77\x8f\xb3\x71\x6a\xda\xef\xd3\xbc\xb6\xc1\x34\x86\x7d\x53\xe3\x4f\xf5\x5f\x59\x47\x10\xbd\x3f\x79\xea\xd3\x81\x39\x84\x36\x99\x69\x13\xd4\x4e\x2d\xe6\x40\xc5\x53\xaf\x8c\xdb\xd1\x9f\x18\x3c\xe9\xe8\xef\xdc\xc8\x1f\x47\xb8\x7a\x88\x4f\xea\x8c\xca\x01\x0e\x3c\x33\x0a\x29\x97\xbd\x2f\xcd\x01\x07\xbb\xdf\x19\x6a\x59\x7d\x0c\xcc\xce\x2d\x5a\x24\x15\xc0\x45\x30\x72\x2d\xaa\xf2\xff\x32\x9e\x60\x59\x69\x12\x37\x79\xd5\x32\x42\x4a\xdd\x9b\x59\x59\xc3\x73\x08\x2d\x7d\x76\x5b\xaf\x94\xd7\xb1\x90\xb6\xfe\x66\xe8\xf2\x0b\xb3\x08\xb3\x3b\x3e\x0b\xc7\x0f\x9d\x27\x94\x7c\xe0\x2a\x50\xe6\xf7\x60\x63\x8a\x5e\xfd\x32\xdd\xda\x8b\x84\xa9\x27\x1f\x78\xd7\x0e\xb1\x09\x2c\x91\xdc\x6a\xef\x38\x3e\xc2\x39\x85\x81\xbd\xfa\x03\xbf\x18\x7c\xf7\xbe\x30\xfb\xbb\xa4\x31\xe1\x4c\x9f\xce\xe4\xcf\xd9\xea\x84\xb4\x17\x73\xad\x56\x7d\x51\x21\x9c\x89\x9a\x68\x56\xb3\x40\x99\x20\x90\x9a\x7a\x32\xe6\x02\x43\xd8\x56\xb3\x76\x57\x53\xd8\x12\x82\x6a\xc9\xf2\x49\x6a\xd3\x04\x08\x6c\xfd\xad\xeb\xfc\xf8\xbd\x09\x7e\x82\xa9\xaf\x22\x52\xc7\x11\x1c\xca\x75\x3c\x3f\x5c\x53\xe1\x40\x92\xd5\x5f\xef\xdd\xdb\x06\x19\x04\x8c\x0b\x18\x96\x6d\x9b\x46\x58\x5a\x51\xd5\xbd\x6b\xdf\x55\x42\xc5\x0c\xf9\xa1\x01\x43\x17\x36\xfc\x4f\x1d\xb9\xfc\x5a\xe0\x02\x21\x66\x6e\xc9\xd0\xf7\x49\xa1\x84\xd5\xf6\x23\x8b\x74\xd3\x82\x09\x6a\x41\xc7\x25\xe4\x94\xd2\x08\x2b\xa2\xf4\x3e\xfb\xdd\x3c\x4b\x78\xd0\xb3\xfb\xc0\x8e\xdc\x4b\x84\x5e\xa1\x2d\xdb\x7e\x7e\x09\x23\x7c\x11\xd7\x2b\xde\xcb\x95\x4c\xf8\x1b\xd8\xc0\x72\x0b\x48\x21\xbc\x37\xd7\xad\x71\xf1\x89\x22\xdc\x5e\xa2\xbf\x63\x78\xe5\x69\x82\x50\xc3\xe6\xeb\x17\xa6\x6b\x11\x6e\x3e\xb8\x7d\xc0\x72\xf9\x04\x0e\x58\x2d\x70\xac\x1b\x3f\x8b\x87\xe0\xb3\x8f\x4b\x9b\x6f\xcf\x3b\x06\x2e\xaa\x39\x79\x8f\x5a\xf4\x08\xf6\x06\x5a\xb1\x81\x73\xbf\x33\x30\x5a\x7e\x28\xef\x9b\xf5\x0c\xc2\xb5\x8a\x2a\xd9\x2d\x25\x47\x08\x35\x8f\x1d\x4e\xae\x31\x8f\xe1\x40\xc7\x04\x09\x2e\xb9\xa5\xdf\x19\x70\x7b\x57\x87\x09\x44\xf5\x32\xb0\x2b\xdd\x18\x9d\x39\xe1\x01\xc1\xff\x4e\x73\x65\xfb\xed\x27\x84\xcc\xdd\x07\xe7\xaf\x49\xad\x23\x5c\x58\x3c\xcf\xf9\xdf\x88\xa7\x76\x86\x99\xb1\xdb\x02\xc2\xba\x85\x3a\x8f\xaf\x34\x9b\x13\xc6\xfb\x46\x4b\x45\x86\x7c\x60\x70\x32\xf0\x9d\x82\x9b\xd6\x64\xc2\x4f\xdb\xc3\xcd\x57\x9e\x4c\x24\xc8\x59\xe8\xe8\xc6\x5f\x3d\x4c\xb8\x2f\xd3\xce\x9b\xac\x72\x86\x8d\x9d\xbf\x75\x14\x2f\x8e\x96\xc3\x11\x8d\xd5\x5e\xcc\x67\x06\x52\xb5\x3e\x11\xda\xf2\xe3\x08\x57\x3d\xeb\xe6\xcb\x9f\xf9\xc8\xe0\x53\xe1\x5e\x5e\xbb\xc3\x9a\x04\x76\xb7\xb7\xe9\xb4\x0a\x73\xc2\x8a\xc6\x64\x37\xdd\x0b\xd3\x38\x10\xc8\x7d\xee\xe0\x4c\x85\x8f\x2c\xf8\xcf\x9a\x5b\x90\xa3\x72\x8d\x85\x30\x19\x95\xb2\x43\x31\x53\x09\x4a\x53\x3c\x13\x9b\xb8\x62\x38\x40\x2f\xbe\x4f\x0e\xb6\x7b\xc9\x40\xfd\xc4\x24\x09\xcb\x27\xd9\x84\xd2\xfa\x4d\x23\xac\xa3\x8e\x84\x3c\x05\x31\xad\x16\xff\xd9\x04\x9b\x01\xd9\xd7\x34\x65\x2a\xc1\x58\x33\x37\xb0\x4c\x52\x8c\xb0\x93\x8f\xcb\xbb\x3e\xef\x2e\x41\xf1\xc4\xc2\xb2\x25\x8a\x9e\x84\x87\x9f\x6b\x3e\x0f\xbc\x92\x27\x48\x15\x6a\x95\x36\x48\xff\x66\xd0\xfe\xe9\xb8\xcb\xd3\x0e\x79\xc2\x6b\x41\xb1\xce\x67\x7b\xbe\x31\xe8\xed\xcb\x1d\x38\xe4\xb2\x8f\x8d\xa9\x3b\x7c\x4b\xfc\xd6\x8a\x10\x8c\xac\xac\xd4\x4e\x2d\x9f\x48\x98\xa0\x6c\xee\xb1\x62\xbd\x1a\x61\x76\x6c\xa7\x0c\xcf\x4e\x17\x82\xe8\xd2\x89\xca\x33\x64\xe5\x08\x4f\x3e\xe0\x95\xba\x97\x2c\x21\xb4\x45\xaa\xa5\x29\xa2\x8b\xc1\x40\xa4\xdf\xd5\x89\x33\x27\xd1\x18\x9e\xbe\x6e\xbc\x31\xbc\x48\x9f\x10\x1b\x15\xe8\x78\xe3\xf6\x09\x36\xe0\xea\x73\x5a\xbc\xf5\x2c\x7b\x6c\xa4\xda\x3d\x2e\x30\xfe\xda\x6f\x06\x5b\x34\xf8\xf9\xbd\x35\x64\x08\x07\x6a\xa5\x0d\x8e\xbe\x5d\x41\x50\x78\x6a\x77\x7e\xb9\xa5\x06\x61\xe2\xf7\xdb\x25\x37\xc5\x0c\x09\x1b\xab\xae\x2f\x90\x2b\x58\x42\x68\x9c\x77\x74\xd7\xac\xfa\x6e\x06\xef\x27\x1f\x91\x33\xf5\x32\x25\x3c\x78\x9d\x74\x42\x3e\xed\x04\xe1\x28\xe9\x0e\xe5\xbd\xf1\x21\xe8\xbf\xfa\x50\xd7\xee\xad\x4d\x90\x19\xba\x7c\x2a\xa0\xfe\x08\x41\xdf\xc9\xa8\x7b\x5f\xac\x29\xa1\xb5\x7a\xd6\xf4\xea\x19\x43\xcc\x18\x44\xde\x0e\x28\x5f\x71\x91\x20\x4c\x9c\xf5\x53\x53\x60\xe7\x5d\x0e\xac\xb1\xc9\xae\x88\x78\x1a\x41\xf0\xbc\x9a\xc2\x0a\x3a\x5a\x49\x38\xd4\x9f\xf9\x40\x71\x5c\x1f\x03\x77\xcb\xa3\xbe\xd6\x97\x4a\x69\x0c\xeb\x8f\x9d\x88\x1f\x94\x8d\x27\xe4\xec\xdd\x27\x61\x9e\xe4\x40\x48\xee\xe9\xce\x7b\x35\xfa\x5a\xfe\x0f\xdc\xbc\x84\xba\xfe\x81\x67\xc1\x70\xd5\x3f\x6c\x3d\xb4\x6d\xf9\x2c\x9b\x0a\x06\x9e\xbd\xb9\x92\x5d\xa2\x62\x04\xe7\xe7\x93\xdb\x3c\xd6\xae\xe1\xc0\x4d\x1d\xf1\x84\xfd\x5c\x46\x6c\x3c\x96\xab\x4a\x99\xbd\x7e\x2a\x8d\x41\x69\xce\x97\x07\x67\x17\x8c\x6e\x56\xf7\x53\x67\x06\x3f\x22\x82\xa7\x62\x5d\xab\xb4\xa6\x07\x61\xcb\x91\x21\x23\x7e\xe6\x3d\x83\xd2\xd6\xf6\xb8\x59\x1e\x7a\x34\x06\x6a\xea\x92\x8a\x82\x0c\xa1\x9a\xe7\x4f\xc0\xfa\xff\x0f\x23\x77\x1a\x4d\xe5\x1f\xf6\x7f\x5f\x22\x94\x52\x42\x85\x94\x50\x84\x90\xc8\x90\xf3\x20\x24\x85\x4c\x99\x55\x48\x51\x48\x45\x84\x32\x6b\x52\x28\x51\x9a\x28\x29\xd2\x80\x24\x91\x4d\xa8\xa4\x32\x45\x93\x8a\x06\x54\xca\x10\xf9\x90\xb8\x97\xdf\xbd\xd6\x65\xaf\xf5\x6f\x5d\xeb\x7a\xf6\x5a\xef\xe3\xfb\x68\xdb\xe7\x3e\xbf\xc7\x13\xfe\x2d\x0c\xee\xe4\x6c\xbb\xfd\x63\xad\x3a\x8d\xc3\xcc\xf1\xe7\x7a\xbb\xc4\x17\x0c\xee\xe5\xed\xf7\x79\x9c\xcf\x4d\x48\xa9\x9c\xd0\xf7\x2e\xc2\x93\xf0\x28\x46\xc8\x40\xc5\x99\x87\x90\x58\xa1\xe7\xf2\x6a\x9a\x00\x61\x7d\x6c\x33\x37\xf7\x95\xa9\x04\xae\xd5\xb7\xb6\x6f\x79\x7b\x82\x0d\x36\x2c\x63\xfb\x6e\x56\x01\x0b\x23\xd9\xa2\x1f\xfe\x2b\x3a\x15\xbe\x2f\x2a\x0d\x5b\x18\x2c\xcc\xe7\xb9\x3d\x9b\xff\x17\x83\x03\x6e\x75\x07\xbc\x2f\xcc\xa4\x71\x98\xdc\x61\x36\x1c\xfb\xd9\xc9\xe0\x87\x45\xe7\x8f\x19\xd2\xda\x04\x9d\x39\x47\x9d\x05\x45\xe6\x12\x2e\xca\x97\xd6\xf6\x77\x48\x11\x1e\xbe\x9b\xf7\xdc\x23\xa3\x83\x81\xf2\xe0\xc0\x99\x19\xfa\xe7\x59\xb8\x77\xf3\xa9\xb5\x25\x12\x08\x3d\x3a\xd3\xdf\x5e\x13\x52\x24\x04\xe5\x98\x55\x9c\xbc\xbb\x90\xc0\x7d\x72\xf9\x60\xb4\xb6\x1e\x21\xb7\xc6\xa6\xe5\xed\xa3\x45\x84\x89\x6f\x1f\xcf\x99\x5e\x54\x4a\x78\xef\xa2\xc9\xf5\xe2\x69\x29\x41\x41\x64\x77\xfd\x7f\xe5\x8e\xed\xd0\x7c\x95\x0f\x0b\x08\xc2\x87\x1b\x82\x97\xf4\xf0\x13\x46\x2d\x86\x14\x3a\x5e\x2e\x24\x34\xed\x0c\x3d\x19\x79\x7f\x15\xa1\xe0\x76\x40\x63\xe3\x52\x41\x02\xe7\x39\xc3\xa5\xb3\x0b\xe5\x09\x93\x1f\x14\xae\xe2\x91\x89\x24\xbc\x30\xff\xec\xf7\x1f\x82\x38\xbe\x9e\x9e\xf4\xf9\x4e\xc9\x60\x7e\x00\x8b\xaa\x33\x09\x27\x3f\x96\x5b\xb6\xf9\xcd\xfa\x17\x0c\x97\x9d\x59\xda\x30\x37\x8b\x41\x45\x79\x40\xe1\x37\xdb\x51\x06\xdb\x77\x5f\x0e\xeb\xce\xf5\x24\xbc\xbe\x93\xd1\xb4\xbc\x39\x9b\x10\xa3\x6b\xe9\xae\x3e\x86\x15\xf6\x9f\x8c\x97\x9f\xfa\xc9\xe0\x46\xbb\xd9\x04\xcd\xbd\xcb\x08\xd5\x4e\x6d\xee\x6f\x8e\x86\x12\x9a\x48\x5c\x83\xdb\xb7\x81\x35\x5e\x82\x5f\x87\x75\xf5\x0e\xd4\x30\x98\x64\x13\xf6\x4b\x59\x49\x90\x90\xbb\x66\x43\x41\xf9\xc9\x11\x06\xd7\x9d\x3a\xd5\x25\x97\x3b\x13\xdc\xe3\x74\x5a\xdf\x67\xa8\x12\x46\xbe\x82\x57\x6d\xdf\x0c\x42\xf4\x6e\x2f\x38\x88\xcf\x25\x08\x2e\x78\xa2\xbc\x27\xea\xe0\xbf\xe0\xa5\xf2\xfe\x7e\x41\x6e\x10\xa1\x30\x57\x74\x8b\x09\xe9\x11\x9e\x10\xbf\xab\x7d\x96\x24\x61\x3b\xef\xbc\x60\xbf\xfb\xb3\x08\xb1\x92\xef\x83\x97\x6b\x8b\x13\x4c\x4d\xd2\x39\x45\xd2\x05\x08\x67\xaa\xef\x19\xcd\x2b\xed\x66\x80\x4e\xf1\x49\x17\x0e\x5d\x27\x7c\xdb\x57\xcb\x19\xe2\x2e\x4c\xb0\x15\x3c\xd2\xce\xec\xda\xcb\x86\xdd\xc1\x57\x05\x8f\x3c\x76\x23\x6c\x35\x75\x4b\xe2\xdd\x30\x93\xa0\x79\xf7\xaa\xea\xed\x98\x05\x84\xb4\xf6\x8f\x9b\x5f\xc4\x9c\xff\x17\x36\x84\xdc\x7c\x6c\xb1\xa4\x85\x81\xeb\x2b\xaf\x4b\x0f\xa5\xec\x59\x10\x3f\xf2\xfc\xf0\xbc\x10\x3f\x42\x7e\xf8\xbc\xc5\x4f\x9e\x4f\x27\x5c\xb9\x21\xe0\xc7\xf0\xcc\x22\x84\x0a\x5e\x7e\x65\xf8\x44\x8b\xf0\xcb\x35\x9d\x53\xdf\xe7\x02\x0b\xf7\x2a\x22\xf3\xe2\x5f\x3d\x61\xa1\x62\x84\xc7\xfc\xd6\x91\xeb\x2c\xe8\x19\x2e\xbe\x36\x7d\x2a\x8b\x85\x82\x07\xcd\x76\x23\xdf\x33\x59\xe8\x50\x89\x58\x37\x70\x70\x1f\xc1\x5b\xbf\xad\x95\xd7\x30\x92\xa0\x7a\x78\xc0\x49\x20\x25\x8d\x90\xf7\xfd\xd1\x67\xc6\x30\x9a\xc0\x6f\xbe\x74\xd2\x90\x9f\x20\x41\x3f\x9b\xb5\xf9\xbd\x47\x18\x1b\x2e\x4a\xf3\x78\x2d\xdc\xb3\x9d\xd0\xfa\x72\x7d\x54\xc0\x5d\x22\xcc\xb2\x5c\x72\x71\x69\x93\x2d\xc1\x39\xb2\xe4\xc4\xcc\x43\x0b\x09\xcb\x3d\xe7\xf3\xf4\xb9\xc8\xb2\x41\x4e\x68\x86\xd0\xf5\x1e\x41\x36\xe8\x8d\x76\xef\xfe\x19\xf1\x8b\x19\x87\x57\xc2\xce\xd3\xea\x7a\xca\x34\x8e\x17\x5e\xc7\xcd\x87\xcf\x34\x32\xd8\x31\x73\xee\x86\x95\x7a\xb3\x08\xca\x19\x42\x9b\x6c\x84\x8c\x09\x55\x7d\x39\x9d\xba\x4b\x56\x10\x14\x05\x46\xb7\xbf\xb2\x1a\x66\xe0\xea\xbc\xff\xfe\x15\x85\x61\x06\x73\x87\xa2\x3f\x31\x8b\x94\x08\x49\x5d\xaf\x33\x32\x5a\x66\x12\x44\x27\x4f\x30\x09\xdd\x29\x4f\x08\x1a\xec\x3c\x20\xb2\xea\x38\x1b\xb6\xa4\xd9\x7e\x10\xba\x2d\x48\x10\x6c\x3b\xb4\x3e\x9f\xe3\x3d\x83\x4d\x56\x71\x10\x7f\x25\x40\xc8\x5c\xb8\x54\x22\xb6\xd8\x94\xa0\xdf\xe1\x2f\xee\xed\x66\x49\x18\x1a\x8e\x28\xae\x11\xd7\x23\x2c\xdb\xd8\x30\x7f\xf2\x88\x00\xc1\xce\x24\x2a\x8f\x39\xf0\x9b\xc1\x5d\xa7\xc2\x25\x81\xce\xc7\x69\x1c\xca\xeb\x1a\xf2\x78\x0d\xfd\x09\xbf\xd6\xaf\x59\xe0\x7f\xb2\x88\x10\xf2\xa6\xcc\xea\xe1\x92\x13\x04\x55\x95\xcb\x7d\x6b\x6c\x4e\x10\x0a\x8b\x4c\x1e\x79\x1e\xe2\x25\xd8\x6e\x9c\x69\xbd\x56\x28\x82\x50\xa4\x66\xca\x17\xb2\xe0\x29\xc1\x70\x44\x5e\xef\xb6\x49\x29\x61\xd1\x6c\x64\x07\x8f\x15\xc1\x0c\x91\xe8\xb0\xa1\x3b\x04\xf5\xb8\xac\xc1\xb3\xf2\x97\x08\x99\x6a\x61\xa1\x56\x76\x97\x08\x39\x07\xb4\xa4\x23\xbd\x2e\x11\x16\x74\xf8\xbc\x5e\x31\x35\x9a\x90\xc1\x57\x2d\x71\x63\x66\x34\xe1\xf4\x88\x5c\xe2\xea\x86\x56\x06\x5e\x69\xeb\x42\x5a\x76\x55\x12\xd4\x95\x83\xb2\xfe\xc3\x9b\xc3\x5e\x83\xbb\x9e\x5c\x22\xf8\xf6\x5d\x92\xf1\x7c\x72\x9a\xb0\xb3\xbb\xa0\xd6\x69\x7e\x34\xe1\x97\xcc\xa5\xa4\x65\xfe\x65\x84\x73\x15\xa3\xa2\xab\x1e\x95\x11\x16\xfe\x38\xb4\x86\x6f\x56\x0a\x61\xb7\x7a\x7b\xbb\xf6\xf9\x14\x42\xcb\x5f\x81\xd1\x26\x6e\x21\x42\xcf\xfa\x6b\xfb\xb6\x56\x65\x11\x7a\xee\xfc\xba\xb0\xdf\x72\x0f\x21\xda\x2a\x52\x78\xf6\xf3\x58\x42\x59\xc7\xde\x58\x51\xa1\x6d\x2c\x04\x77\x66\x34\x37\x3c\x89\x65\x1b\xf1\x7c\x45\xe8\xea\xaf\xbb\x09\x11\xc7\xc9\x7f\xe5\xf6\x3b\x04\xd5\xa3\xae\x53\xba\x82\x52\x08\x6b\x3f\x4f\xef\x74\x4b\xcc\x23\xcc\x6d\x8d\x0f\x35\x0b\xb2\x22\x2c\xfc\xbd\x2c\x44\xb6\x7a\x2e\xe1\xb2\xb6\x92\xe3\x9c\x4b\x52\x6c\xa8\xe0\x1b\xee\x9c\xb0\x46\x88\x70\x6f\xf9\x63\xdb\x29\x27\xe2\x09\xef\x9c\x9e\xc4\x74\x73\xcd\x26\xf8\xcc\xfe\x22\x30\x53\x5e\x99\x30\xbc\xb7\xde\x5c\x65\x91\x32\x21\x42\xfb\x77\x5a\xd7\x21\x7d\x82\xbe\x78\x12\x44\x7e\x7d\x67\x70\xa1\xf0\x4e\x45\x97\x9a\x16\x8d\x63\x7d\xcd\xbd\x66\x0b\xbf\x12\xd6\x78\xb1\x3c\x97\x3f\x35\xe9\x75\x3f\x03\x8d\xaf\x9f\x97\x08\x7d\x72\x27\x04\x70\xfa\x56\xb6\xcb\x6b\x11\xcc\xed\xd6\xbc\x4b\xcd\xd6\x24\x04\x17\xed\xfd\x29\xeb\x71\x84\x85\xa8\x13\x6a\x0d\xdd\xcb\xe3\x59\x78\x38\x7d\xf2\xe4\x29\x2f\x59\x2c\x48\x45\x4d\xdc\x95\x6e\x64\x47\x98\xfb\xf8\xaf\x14\x23\x12\xc5\x02\x3d\x8a\x36\x11\x1f\xda\x47\xf8\x53\xa6\x54\xe6\x95\xf7\x95\x41\xf1\xa1\x8b\x02\x9f\x12\x8f\x10\x76\x71\xf1\x7b\xf8\xdd\xe6\x26\x58\x07\x0e\x2d\x9a\x22\xb9\x90\xd0\xb7\xe6\xfb\x95\xe8\x1b\x3f\x19\x3c\x5b\x69\xde\xdd\xac\x3f\xcc\x0c\xd6\x1a\x99\x2b\x96\x6f\x20\xb4\x6f\x91\x55\xb8\xb4\x6b\x2a\xa1\xba\xe4\x7c\xe5\xc0\x9a\x2e\x06\x85\x4f\x3e\xf4\x9f\x28\x96\x24\x04\x59\x1d\x89\x34\x7a\x32\x8b\xd0\x3b\xc5\xcd\xa6\xff\xfc\x14\xc2\xf3\x87\xfb\x44\x9d\xa6\xcb\xb3\xe1\x6c\xb8\x46\x60\x1e\x37\x27\x0d\x1a\x48\xb1\xbc\xcf\x7e\x61\xb0\x5f\xec\xd2\xf2\xb8\xa1\xdf\x6c\x28\x56\x48\x34\x52\x78\x5e\x5b\x82\x46\x9d\x9b\xc6\x3a\x9f\xa5\xc6\xae\x3a\xfa\x95\x7a\x42\x2b\x09\xcf\x7b\xde\xcd\xad\xef\xea\x67\x20\x66\xa8\xbf\xd3\xee\x62\x27\x83\x2d\xe2\x55\xab\x85\xf7\xab\x12\x4e\xf3\x07\x2d\x53\x74\x99\x4e\x48\x59\xa7\x8b\xfa\x16\x6b\x82\xea\xe0\x6b\x21\x83\xec\xef\x0c\x52\x5f\x3f\x36\xd6\x9c\xdf\xca\x06\xa5\xc7\x95\xc3\x52\x0b\x6a\x18\xcc\x89\x5b\xba\xe3\x95\xbb\x26\xe1\x91\xbb\xc2\xa6\xf0\x38\x17\x36\x9c\x31\xc8\xb4\x4d\x2c\x29\x65\x70\x7a\xb6\x18\x4b\xf0\x6d\x1c\x61\xc3\x66\x49\x03\x9d\xe0\x1f\x0c\x56\x66\xb6\x16\x1d\x59\x67\x49\xb8\x5b\xd3\x3f\x2b\xa6\xdb\x93\xd0\x7e\xd8\xc8\xfc\xa1\x78\x2d\xc1\xae\x61\x72\x78\x94\xe1\x4b\x42\xce\x9c\x5d\xfb\xff\x2b\x5f\xcb\x35\x72\x55\xef\x9f\x27\x84\x6c\x7b\x59\x71\x86\xeb\x2c\xc1\x4a\x48\xda\x5c\xa3\x49\x85\xf0\x5b\xf0\x47\x7a\xb2\x02\x0f\xe1\x69\x54\xf9\x95\x2a\x46\x98\xb0\x4a\x2e\xe5\xd2\x42\xbb\x8b\x04\xb7\xd3\xb3\xe7\x64\x14\xc4\x13\x9a\x7c\xec\x6f\x4f\xf2\x4b\x20\x44\x2f\xe9\x8c\x28\x7c\x6b\x43\x28\xcd\xa8\xb4\x08\x75\x0a\x21\xf4\xee\xfc\xdb\xdf\x74\x3b\x80\x0d\x4e\x19\x1c\x6b\x2d\x74\x3c\x09\xc9\xaf\x4a\x86\x37\x2c\x2a\x20\x3c\xf6\xbd\x37\xa5\xd9\xbe\xb6\x04\xfd\x0f\xcd\x73\x65\x82\x38\x68\x1c\xcb\x6c\x5e\x5f\x68\xbe\xdf\xc3\xe0\xa6\x2c\x17\x9f\x47\x94\x0f\x41\x40\xaa\xcd\x5b\xde\x67\x19\x21\x8c\x7f\xe0\xad\x57\x19\x37\x61\xea\x3a\x67\xeb\xf0\x8c\xf9\x84\x19\x0d\x76\x9e\xe9\x1f\xd6\x11\x5a\x75\x65\x57\xfe\x54\x15\x21\x24\x79\x7b\xfe\xb1\xb4\x09\x66\xc3\x55\x9f\x27\x81\xad\x45\x9b\x08\x53\x32\x3d\xf6\x3f\x54\x5d\x46\xf8\x75\xb6\xfe\xd6\xf3\x64\x5f\x82\x45\x60\xa6\x8d\xa5\x6e\x39\x21\x6e\x56\x7a\x86\x6d\xd0\x42\xc2\xc4\x6b\x1e\xed\xfc\x87\x16\x10\x96\xa8\x7b\xdf\x5a\xbb\x32\x9b\x20\x22\x14\x91\x7d\xc6\xb4\x88\x30\xe0\xb7\xec\xb1\x98\xda\x63\xc2\x94\x73\x19\xc2\xd9\xc7\x36\x10\x8e\xf7\xe5\x5d\x60\x75\xa4\x11\x7a\x52\x55\x17\x97\x8e\x21\x5c\x28\x40\x39\x5a\x6d\x1b\xa1\xd1\xa4\xd0\xde\xf1\x50\x04\xe1\xc3\x4a\xae\x7b\xbe\xd7\xb6\x13\x62\x8d\x33\xc3\xa6\xd5\x8a\x13\x0e\x76\xce\x4b\xfe\x50\x72\x74\xec\x09\xf4\x4a\xff\x5d\xe8\x4c\x10\x9b\xd7\x5c\x76\xaf\x63\x1e\x41\xea\xcf\x4e\xcb\xf7\x8e\x33\x09\xf7\xde\x55\x89\x6a\x9e\xd8\x4a\x98\xaf\x2a\x37\x89\xd5\x33\x8d\x10\xe7\xb3\x4c\x5d\xec\xbb\x14\x41\x5f\xa3\x61\x0b\xa3\x57\x43\x10\x4f\xc8\xde\x39\xab\x67\x37\x61\xea\x66\x05\xd9\x9a\xe2\x55\x84\xc9\x4b\x7c\x12\x2d\x7e\x25\x13\xf4\x3e\x71\x6c\x3d\x1e\x9e\x46\x58\xb5\xdb\x77\x46\xb0\xdf\x6c\x42\xa4\x89\x77\x1d\x9f\xd2\x4a\x42\xd1\x8e\x98\x20\xde\xed\xdd\x0c\xce\xff\x19\xaa\x17\xec\x8a\xa2\x71\xcc\xda\xbc\xe5\x5e\x7d\x93\x28\x1b\xee\x87\x85\x84\xb7\xcf\xd3\x27\x44\xbc\x7b\xf7\xaa\x76\xc5\x67\x06\x32\x95\xc4\xcf\x7d\x98\x8b\xc6\xe1\x35\xf9\xe0\x4f\xab\x21\x5b\x02\xaf\xee\xa6\xf3\x9a\x4b\xb5\x09\xbb\x6f\x39\x32\x82\xb2\xf3\x08\xbd\x4f\x0e\x67\x5a\x9e\x59\x40\xf8\x58\xb3\xf6\xe1\xb3\x43\x42\x04\x97\xe4\x89\x61\xef\xa7\x4c\x22\x84\xc9\x09\xb1\xa6\xfe\x7d\xc6\x42\x89\xe7\xd2\x8d\x93\x4f\x6b\x10\x34\xd7\x8a\x66\xb6\x7f\x0e\x23\x6c\x08\x8e\xd5\x8f\xf2\xe3\x20\xdc\x93\x78\x39\xa5\xf6\x44\x3e\x0b\x1b\x27\xed\xaf\x5d\x6e\x5c\x4d\x58\x7c\xf2\xea\xc8\x18\x06\x0f\xf3\x0f\x3e\x7e\x5a\x44\xd8\x16\x22\x13\xb5\xc4\x4f\x82\x30\xf9\x63\xce\x56\xd5\x56\x19\x42\x0c\x6b\x95\x5a\xde\x3c\x29\x82\xc5\x4e\xab\xf3\xdf\x5b\x73\x58\x10\xf3\x29\x7a\x54\x66\x92\x4b\x30\x76\xaa\xc9\x2c\x29\xb7\x26\xbc\xe4\x51\x16\x18\xf6\xe0\x24\xd8\x38\xf4\xfc\x99\xb8\xad\x93\x81\x6b\xdf\x83\x24\x89\x0d\xc2\x84\x11\x1d\xa5\xc8\xab\xce\xd3\x09\xbd\xd7\x55\xb4\x2e\x1f\x77\x21\x54\x24\xdb\x1d\x79\x9c\xba\x90\x90\x26\xf3\x63\x4d\x52\x56\x12\x21\x4c\xa2\xd1\x34\x69\x42\x08\xe1\xf2\x64\xa7\xd0\x7d\xdf\x77\x10\xc2\x46\x4f\x9c\x30\xc8\xb6\x21\x88\xda\x9c\x4d\x98\x28\xb0\x9e\x10\xd5\x6b\x9b\x90\x93\x7c\x95\xd0\x8a\xc1\xbd\x39\xca\xe7\x08\x6a\xcd\x1f\xf5\xde\x4f\x48\x1a\xfb\x66\xbd\xfd\x19\x36\x06\x95\x0c\x37\xb3\x47\xbe\xa5\x0c\x8e\x04\x77\x9b\x3f\xd6\xbc\x48\xe3\xa0\xb0\x5d\x42\x57\xaa\xcb\x4b\x20\x28\xcf\x23\x23\xbf\xb4\x94\xc1\xda\x69\x89\x9f\x9d\xb6\x8c\xb2\xa1\xa0\xc1\xaa\x3f\x78\x59\x3b\x83\x84\xa7\xbf\x14\xf2\x47\x4e\x10\x14\x37\x58\x6d\xae\x54\x71\x66\xc1\x61\x80\x9c\xde\xa5\xf9\x12\x42\x97\x2c\x30\x73\x5d\x26\x42\xd8\xf3\xf3\xeb\x1c\xba\x7f\x80\x0d\x59\x2d\x92\x15\x2f\x0c\x8c\x09\xab\x86\x96\x6a\x9d\x3e\x92\x46\xb8\x33\xac\x5b\xb7\x35\x5f\x81\x06\x97\x6d\x0f\x3d\x63\x77\x9b\x85\xd7\xda\x4a\x6a\xba\x98\x48\x58\xce\xdf\xf0\x86\xfb\xf8\x03\x42\x7a\x95\x6d\xe2\x2b\xa6\x98\xad\x0c\x65\x0d\xbf\x33\xf8\x75\x9f\x0d\xfe\xd7\x24\xd5\x6d\xeb\x8e\x10\xcc\xfc\x23\x43\xb9\x07\xef\x8f\x3d\xc0\xa5\x7f\x0e\xf4\xd5\x12\xbc\xa6\x38\x1a\x2e\x6c\xd3\x23\x38\x3a\x59\x77\x97\x5d\x7c\x55\x82\x68\x94\x1f\xb5\x3d\x3c\x8d\xc6\xb1\xfa\x76\xc7\x2e\x93\x21\x45\x36\x34\x3c\x55\x32\x29\x51\xdf\x49\xa8\x97\x68\x3b\xac\x5c\xc8\x62\x81\x6e\xbe\xe9\xba\x3f\x56\xa4\xa3\x92\xad\x72\xfa\xd6\x13\x22\x66\x29\x0c\x7b\xad\xb0\x20\x2c\xb1\x7b\x34\xcc\x6c\xaf\x26\xcc\x11\x76\x3b\x71\xfe\x75\x31\xa1\x65\x8f\x61\x4b\xbb\xb9\x02\x61\x75\x8d\x78\x69\x79\xb1\x0c\x81\xfb\x8f\xf6\x60\xd8\xfc\x39\x84\x2e\x97\xa0\x8b\xa5\x07\xb2\x08\x77\xe3\x0f\xdb\x5f\x0b\xf4\x25\xfc\x49\x9b\xab\xf3\x33\xdc\x97\x30\xe1\x60\x9f\x8c\xcf\xb0\x37\xe1\xc2\x75\x17\x09\x8b\x9b\x09\x84\x9c\x3d\x4b\xdc\x2f\x99\x38\x11\xa4\xbf\x7e\xdf\xf2\x75\xc7\x71\x36\x38\x6c\x18\xd5\x39\xb3\xc2\x90\xa0\xb3\xfb\x7c\x9b\xa5\xd2\x6b\x06\x47\xae\xb4\xf9\xae\xdd\x26\x45\x90\xfc\x68\x2e\x1e\xd5\xfd\x8e\x19\x07\x97\xc2\xd9\x4c\x7f\xf9\x59\x04\x99\x48\x8d\x74\xb2\x91\x20\x24\x0e\xd7\x28\x4a\xc4\xff\x62\xa0\x10\x13\xbb\xe7\xdc\x8c\xb1\x95\x42\x69\xef\xea\xa0\xce\x18\x82\x86\x6d\xf5\xbc\x1d\x29\xd7\x09\xc2\x1b\xaf\x16\x67\x4f\x4b\x26\x48\xcf\x4c\xdf\x75\xf1\x09\x27\xe1\xef\x8b\xb2\xbf\x7e\xa6\x7c\x04\x21\x0b\xf7\xd1\xc9\xfc\x79\x04\x2f\xe7\x53\x46\x23\x33\xf3\x08\x3c\x22\x91\xca\xff\xe1\x80\xeb\xa8\x6e\xb1\x67\x25\x0b\x9f\xfd\x7d\xb8\xfe\x8e\x95\xd3\xf9\x1b\xe4\x0b\x42\xe3\x09\xcf\xba\x6e\xf6\x67\xae\x77\x25\xcc\x9c\x3d\x31\xc1\x7b\x97\x07\x5b\x19\xba\x70\xaf\xb6\xee\xdb\x56\xc2\x9a\xae\xe8\x4e\xeb\xc2\x3d\x84\xc6\x20\xdd\xef\xda\x8f\x36\x12\xac\x0a\xf9\x3f\x08\x9c\x8b\x63\xa1\x39\xf6\x77\xd4\xfc\x6e\x71\xc2\x63\x8f\xf7\x7f\xb8\xfd\xbe\x10\xd6\x15\xf7\xc7\x1c\xe7\xfa\x40\xc8\x72\x96\x38\xb5\x63\xcf\x7b\x42\xe9\xb1\xd2\xd0\xf7\x26\xe5\x84\xc7\x15\x1e\x3f\x07\x78\x3e\x10\x14\x46\xbe\xc3\x68\x6f\x0b\xe1\xc5\x81\x94\x25\x3a\x7a\xb9\x84\xad\xcb\xa0\xb1\xe7\xc9\x4d\x42\x49\xd4\xee\x27\xb2\xce\xd7\x08\x9c\x73\xc3\x8e\x31\xc9\x39\x84\xfb\x6b\xa7\x95\xc6\xdd\x89\x25\xe8\xa7\x06\xdb\xd6\x2c\x1d\xfb\x9c\x57\x2b\x2f\x2a\x2d\x17\x20\x6c\xdb\x38\xc1\xde\xdf\xc3\x92\x0d\xed\x17\xb3\x6b\x52\x8f\xcf\x25\x24\xbe\x99\xd7\x5e\xeb\xb9\x95\x20\xf5\x76\xb1\xd9\x8a\x91\x18\x16\x34\xeb\xf2\xf9\x6f\x7b\x56\x13\xac\x3f\x34\x4f\xbf\x7c\xf6\x0d\x61\xda\x85\xbc\xbb\x17\xc7\x60\x90\x66\xb3\x6b\x77\x5c\x31\xe1\xe3\xed\x33\x6f\xa5\x9b\x8f\x10\x4e\x9e\x09\x3a\xac\xb0\x79\x03\x21\xfc\x80\xbd\xc6\xdd\x84\x44\x16\x8c\x8d\xce\xc9\xf1\x9e\xb6\x25\x4c\xf3\x11\x9d\xe6\x5d\xd3\xce\x40\x4c\xce\x63\xd6\xcb\xe9\x75\x0c\x26\x6c\x6a\x5c\x15\xda\xd4\xce\x86\xd8\x55\x6f\x65\x1e\xbe\x31\x21\xec\x5e\xd9\xba\x3d\xab\xdc\x98\x20\x72\xee\x56\xde\x26\xad\x53\x84\x8c\xac\x5d\x3e\xba\x5f\x57\xb0\x8d\x24\xd2\xfd\x6a\xd5\x66\xac\x22\x2c\x30\x7f\xd4\xa4\x7e\x65\x01\xa1\xd4\x25\x7d\xef\xef\x6a\x09\x82\xcd\x94\xd2\xd7\x25\x98\x4c\x68\x08\xf6\x32\x7c\xb4\x89\x8f\x90\xb3\x38\x79\xc9\x8e\x99\x33\xd8\xb0\xe4\x8b\xf1\xe5\xeb\xaf\x9e\x96\xc0\xdf\x75\xb2\xcd\x47\x45\x57\xc2\xa8\xec\xd3\x33\x66\xde\xd3\x08\x73\x06\xb4\x0f\x39\x6d\x50\x24\x48\x98\x4d\x0c\x39\x12\x2a\x47\xc8\x5b\x51\xa0\xea\xf1\xb0\x80\x20\x60\xfe\x6e\x9f\x9c\x48\x3d\xe1\xe6\xc1\xcf\x57\x44\x57\x8b\x10\x52\x2c\xf8\xa3\xf2\xc4\x4d\x09\x5d\xe5\x5f\xae\x4d\xcd\x5b\x48\xa8\x19\x5e\x27\xbc\x79\xb3\x3a\xa1\xa4\x2c\x02\x5b\xa4\xe6\x11\xf8\x14\x37\x5e\x59\xa9\xd1\xcf\xc0\xb1\xcd\x45\x3d\x63\xea\x0a\x1a\xc7\xa1\x47\x86\x7d\x0a\x1c\x73\x09\xe1\x86\xfd\x47\xc3\xe2\x15\x09\x3d\x46\xb2\x07\xcf\xaa\xbf\x2f\x41\x96\xfb\x50\xae\xee\xac\x00\x1a\xc7\x4b\x11\x83\x89\x4b\xbe\x6b\x10\x9c\xdc\xcf\x9f\xbc\x77\x23\xbb\x04\xce\x26\xac\x4d\x1b\x04\x37\x13\xa4\x96\x54\x15\x27\x9e\xb4\x23\x3c\x58\xfe\x27\xed\x77\xb3\x32\xe1\xd5\x4b\x8f\xb6\xb7\x46\xe7\x09\x47\xf7\x7e\xa8\x8c\xd6\x3c\x48\xe8\xdc\xf6\xf1\xc4\x82\xdb\xdd\x0c\xd4\xbe\x7e\x6b\xf0\x49\x55\x20\x98\x97\xf9\x49\x9a\x84\x18\xb2\x61\x8e\xe4\x39\xeb\xfd\xb3\x4a\x98\x71\x98\x9d\x51\x53\x7b\x2c\xce\x45\x30\xbc\xb6\xc0\xcb\x62\x69\x3b\x83\xf4\x59\x9e\xa3\x6b\x94\xc7\xf6\x2a\x47\xae\xe2\x5f\x7b\x64\x08\x0e\xd3\x8a\x37\x99\x34\x8d\x30\x30\xc8\xe0\xbf\x33\xd0\xd1\xc5\x80\x67\x57\x8c\xf4\xc2\x98\x39\x34\x8e\xb5\xdd\xdc\x46\x2a\xe7\x5e\x95\x8c\x43\x7e\xbf\x45\x49\x5e\x29\x37\x8d\xe3\xb1\x72\xc1\x01\xc3\x27\xcb\x09\xcb\x6e\x45\x57\x35\x0e\x2a\x12\xa4\xc3\x79\x59\xbc\x3d\x65\x6c\x90\xfb\x9a\xbb\xfd\x5d\x1f\x8b\xad\xb0\x34\x7f\x5d\xf9\xff\xcf\xd8\x96\xaf\x89\x53\x3c\x48\x08\xef\x0b\x4a\xf4\x5d\x7c\x90\x90\xb9\xd3\xc1\xec\xc3\x57\x5f\xb6\x72\x6f\x62\xab\xdf\x4b\x7e\x1f\x82\x98\x69\x61\xab\x93\xe6\x21\x02\x7f\xe4\x59\xb9\x88\xed\x99\x84\x9e\x63\xb1\xe5\x55\xbb\x32\x09\xf7\x46\x94\xb7\x09\xc7\xa4\x12\x9e\x1e\xfa\x63\xfd\x3e\xb7\x94\x85\x4d\x75\x5f\xa2\x0e\xdc\x4d\x25\x3c\x71\xec\xf0\x3b\x56\xd1\xc8\x82\x50\x54\x90\x86\x43\xd1\x41\x82\x84\x71\x60\xc3\xda\xe2\x99\x84\x6d\x6a\x2a\x5a\xc2\xa5\xc2\x84\x4d\x49\x5a\xd3\xbe\xe7\xf7\x30\x30\x48\xa8\xe7\xe2\xcf\xb2\x22\xb4\x59\xee\xfb\xa1\xff\x74\x25\xc1\xe6\xca\xcf\xd8\xfe\xdc\x32\x02\x9f\x93\x24\xe7\xd3\x1e\x33\x82\x9e\x4e\x75\x6a\xe5\x0d\x0b\x82\x80\xe7\x49\xed\x62\x1d\x4d\x82\xc6\xc3\x28\x75\x8f\xaa\x11\x06\x12\x2b\x2e\xd5\x71\x9f\x76\x24\xa4\x37\xca\x5c\x68\x31\x50\x26\x1c\x5a\x5a\x6e\xf3\x6d\xa5\x14\x41\x53\x41\x6b\xf6\xa1\xa4\x15\x04\xd1\xc2\xa4\x1d\x86\x45\x52\x84\xa9\x5a\xad\xc1\x1b\x3e\xdc\x66\x41\xb0\xe8\x9e\xa3\xe4\xf1\x12\x36\xcc\xd7\x5c\xcb\x6c\x72\x3e\xc9\x42\x5b\xd5\xad\x88\x87\x3a\x3d\x0c\xfe\x28\x1e\x1f\xbe\xba\x67\x23\xa1\xe8\x1c\x47\xec\xeb\x92\x70\xc2\xca\x3f\xeb\x1e\x34\xa4\xd9\x13\xda\xe7\x29\xab\x7b\xff\xf1\x63\xc1\x20\xaf\x3f\x67\xf3\x2f\x35\xc2\x42\x2e\xcb\xa4\xde\x0f\x3a\x84\x53\x33\x2c\x53\x53\xed\x3d\xd8\xf0\xcb\x61\x9a\xbd\xb3\xb2\x21\xc1\x47\xfd\x06\xfa\x93\xf4\x09\x1d\xa7\x5d\x1d\x9b\x87\xec\x09\xf5\xcd\x5d\xb9\x27\x63\x5d\x08\x7b\x27\x2b\x64\xf0\x7b\x0f\x30\x38\x7b\x68\xe0\xf8\xf6\xed\x4b\x09\x07\xe2\xae\x75\x28\xb0\x64\x09\xdf\xa6\xef\xa8\xe5\x94\xb9\x47\xc8\x14\xec\xca\xdb\x7e\x2c\x86\x90\xbc\xe1\x49\xc9\xc5\x97\xb9\x84\xf7\xf9\x52\xcb\x9f\xcd\xbe\x47\xa8\x13\x89\x7c\xf1\x38\xf9\x01\x21\x87\x6f\xe3\xb7\x8a\x35\xed\x0c\x56\x70\x85\x5d\x9c\x61\x3e\x89\xc6\x11\x29\xfe\x4b\xeb\xeb\xf3\x2e\x06\x76\xf7\x64\x57\x8e\xd0\x06\x42\xcd\x87\xb9\xb2\xc1\x47\xac\x09\xf7\xe4\x67\x2b\xf0\x4d\x36\x27\x5c\xaf\x18\xa0\xbc\x45\xab\x09\x6b\xb6\x9c\x3c\x33\x8d\x57\x8b\xf0\x33\x66\xde\x43\xd1\x06\x6e\x42\x77\xbc\x8a\xf2\x9c\xf9\x16\x84\xca\x01\xbe\x4f\x73\xa6\xd4\xb1\x50\xf7\xd1\xe5\xce\x88\x34\x8b\x05\x95\xc9\xa9\x6e\x13\x17\x58\x12\x12\xdb\x67\x6b\x07\xa6\x5c\x23\xd4\xb9\x3a\x79\x9f\xaa\x31\x25\x24\x5c\x5d\xfa\xf8\x60\xf0\x30\x03\xb3\xd3\x86\xe5\x12\x25\x9b\x68\x1c\x64\x3f\x25\xe8\xf6\x49\x59\xc2\xe0\xf6\x94\x84\xbe\x42\x22\xd8\x1f\x16\x2d\x4d\x55\x9e\x46\x38\x35\x2f\x62\xf7\x0a\xf9\x21\x66\x1c\x6b\x25\x44\x6f\xa8\xb5\x3f\x2b\x81\xad\xdb\x40\x6e\xcc\xfc\xbb\x84\xcf\xc1\xea\xaa\x7d\x73\x4b\x08\x17\xcf\x2f\xe7\x2e\x92\xb0\x23\x18\x6b\x19\x9b\xff\x75\xbf\xc6\xc2\x94\x57\x9c\xfc\x93\x12\x5c\x09\x57\xbe\x57\x15\xe8\xc7\x14\x12\xf4\x04\x5f\x67\x99\x8b\x96\x12\xec\xa7\x9d\xcf\x33\x1c\x2b\xda\x5d\x5d\x1c\xc3\xc2\xce\x84\x7d\x41\xb3\xfc\xcb\x78\x9d\xd9\xca\xb7\xdb\x03\x49\x1f\x4d\x8f\xb3\x61\xe5\x80\xd1\xbe\x9a\x5d\xbc\x2c\xd4\x44\xef\x0a\xd2\xee\x8e\xa2\x71\xcc\xf1\x9f\xef\x94\xa9\xec\x4f\x68\xbf\xb5\x26\x94\x4f\xbb\x83\x81\xaf\xcb\x3c\xd9\x53\x52\x0e\x04\x1b\x95\x2b\xd3\xde\xc4\x4d\x22\xac\x5a\x58\xe7\x7b\xfb\xe1\x34\x36\x2c\xcb\xe0\xba\xdc\x61\xc2\x4f\xe8\x95\x09\x2a\x1f\xdc\x3c\xc4\xa0\x29\xc4\x50\x7d\xd0\x4c\x9c\xc6\xe1\x5d\x1f\xd1\x70\xc7\x4d\x80\xe0\x73\x5e\xd5\x4c\xff\xf8\x00\x83\x3b\x87\xa6\x6d\xe3\x9e\x65\x42\x58\xcd\x4c\xbd\x72\x84\x0c\x08\xa5\xfb\x62\x1f\x84\x39\x71\x10\x38\x97\xc8\x2b\xc6\x0f\x7a\x12\x14\x86\x86\xda\xff\xae\x9f\x4f\x88\xdd\x50\x79\x6d\x40\x79\x33\x41\xc5\x3b\xe9\xa1\x53\xa8\x24\x61\xfb\x5f\x8d\x1d\x12\x76\x36\x84\x13\x2b\x55\xdb\x54\xa1\x4c\x78\xea\x21\xad\xdd\x9b\xc9\x4d\xc8\x8a\x3a\xed\x7c\x9f\x47\x83\x20\xe9\x3b\x41\xee\xc9\x8f\x0a\xc2\xfb\x79\x4b\xb7\xbf\x91\x76\x20\xc8\xbd\xdf\x90\x5f\xf8\x65\x6c\x61\x88\x6e\x38\xf1\x3d\x4f\x82\x0d\x42\x4d\xdc\x54\xb4\x7a\x35\xe1\xe3\x9e\xd2\x09\x9b\xce\x98\x13\xe4\xb2\x7e\xeb\xe4\x46\x09\x11\x5e\xad\x71\x9c\xf2\xc5\x4a\x9d\x0d\x8b\x63\xcf\x3f\x38\xab\xd7\x52\x82\xe7\xab\x4f\xe8\x9a\x9c\xd2\x26\x9c\x3c\x90\xf0\x30\xe2\xb7\x14\x1b\x92\x3d\x8a\x04\x78\x23\x1f\x31\xe0\x75\xe6\xed\x71\x6a\xbe\x4c\x98\xd0\x6f\xa6\x37\xb1\xf5\x24\x61\xc8\x57\x47\x30\xc0\x3a\x87\xa0\x3c\x58\xf8\xe5\x38\xcf\x73\x42\x9d\x89\x96\xe3\x7f\xe0\x7f\xf5\x0c\x86\xbc\xcf\x09\x9c\x32\xed\xac\x63\x63\x65\x74\x6a\xde\x03\xe1\xb8\x3d\x84\x88\xb6\xc1\x88\xbb\x2f\xa2\x08\xf2\x2a\x0b\xdd\xbe\x04\x9c\x23\x58\x0d\xaf\x3f\xf4\x24\x7e\x0f\x21\x51\x2e\xa4\xf1\xd8\x97\x3d\x63\x6f\x99\x8e\x65\xbe\x4a\x3b\x08\xc7\x57\xf9\xab\xa5\x5c\x58\x40\x30\x7a\x21\xab\xd4\x74\x60\x12\x41\xa2\x3f\xd8\x4d\xcb\x5a\x86\x70\x8a\x5e\x5e\xce\xd0\x75\x26\x2c\x5e\xb0\xea\x52\xcc\x0a\x5d\x42\xc7\x70\x9c\x73\xed\x72\x11\x42\x4f\xa3\xa8\x7d\x9b\xe8\x24\x42\x86\x68\xde\x40\xc5\xf4\x09\x84\xd3\xfb\x1e\x36\x57\xf2\x19\x12\xd4\x67\xac\x37\x99\x77\xf4\x3a\x0b\x46\xa1\x9b\x59\x0e\x1e\xb7\x08\x3b\x77\x48\x0c\x94\xd7\x5e\x26\x88\xad\x8d\x37\x60\xd2\x6f\x11\x06\x3c\x2c\x0f\x1e\xac\xbb\x4c\xe0\x8f\xde\x28\x98\xde\x77\x99\x90\x57\x34\x4d\xbc\x8d\x77\x21\xe1\xc3\xc8\x14\x55\x21\x2e\x35\xc2\xf3\x75\x89\xbe\x1f\x93\x3b\x19\x3c\x9f\x35\x3b\xd4\x64\x8d\x09\xc1\xb6\x73\x87\xe0\xdd\xcc\x48\x1a\x2f\xae\xbb\xf4\xaf\xb7\xba\x8b\xb2\xe1\xc3\xac\xcc\xe9\xb5\x4e\x6b\x09\x66\xb7\xaf\xac\x9a\xb2\xbd\x93\x81\x5c\x6f\xb2\xd7\x50\x56\x24\x61\x92\xe5\x09\xe7\x1a\x87\x1c\x42\xef\x95\xdf\x7a\x3b\x2a\x2c\x08\xba\xb9\xa1\x93\x3d\x02\xd7\x12\xb6\x36\xf4\xdb\x88\x28\xef\x62\xe1\xc3\x4d\x59\x61\xbb\x5e\x17\x82\xe9\xc3\xf2\xd4\xdc\x99\x2e\x84\x8b\xf3\xee\x1e\xb6\xfd\x3d\xc2\x8c\xc3\xb5\xc1\xae\x39\xa8\x5e\x83\xc0\x2b\xaf\x62\xd6\x26\x97\xc3\x1a\x2f\x4a\x7b\x96\x87\x71\xe8\x99\x11\x7c\x4c\x44\xdd\x3c\xfe\x4c\x20\xb8\x7c\xec\x35\x7a\x20\x7a\xb7\x04\x6e\x37\x27\x5f\xea\xff\xb3\x8a\xc0\x7a\x5c\xbe\x5d\xd2\x67\x15\x8d\x97\x01\x8d\xa1\xbe\x0e\x81\x72\x06\x3e\xab\x07\xab\xb6\x5a\xdb\x11\xbe\x5d\x7d\xf2\xb3\x2c\xb9\x92\x85\xd3\x66\x2e\xa3\x82\x89\xe2\x84\x85\x8a\xcf\x0a\x8f\x4c\xe1\x25\xf0\xbc\x94\xde\x98\x24\xc7\x45\x78\xaf\x72\xea\xfb\xcf\x15\xa3\x0c\x7c\x06\xa4\xd6\xf6\x7d\xdf\x46\xe8\xba\xbc\x6f\x9d\x45\x97\x2b\x21\x7e\xc1\x1e\xd1\xae\x16\x07\xc2\xd2\xb0\xd6\x00\xd9\x91\x85\x84\x4b\x3b\xf6\x2c\xfc\xce\x2d\x46\x70\x0b\xd4\xed\x3a\x85\x41\x06\x03\xd2\x03\xd6\xe5\xc2\xb3\x09\x96\xfe\x86\x47\x6d\x8f\x09\x10\x0e\x88\x2a\x8c\x7c\xf4\xb8\x4d\x68\x28\x2b\x95\x74\xd2\x5f\x4f\x90\x9b\xfb\x3b\xcc\xf5\xf8\x72\x42\x98\x45\x74\x4e\x63\x9b\x39\xe1\xd0\x86\xc0\xf5\x8b\x2e\x84\xb1\xe1\xa3\x86\xe2\xdf\x84\xaf\xde\x84\x67\x0b\x7e\xa1\x91\xeb\x0f\x03\x01\x8b\xaa\xc4\xf8\xcd\xee\x84\x49\x9d\x02\xbd\x57\xcc\xf7\xb0\xa1\x2b\xb7\x2b\x7d\xc9\x88\x1b\xc1\x32\x63\xe2\xc6\x6b\x57\x0b\x09\x37\xb5\xfb\x92\x27\x5e\x5c\x43\xd0\xff\x90\x20\xbf\xd3\xcd\x81\x70\xe8\x81\x8d\x54\xf5\x01\x29\x82\xd9\xb7\xd8\x53\x21\x27\x34\xd8\xa0\x9d\xbe\xa6\xa3\x67\x6c\xd5\xff\x1f\xd8\x66\x89\x6f\xd6\x4f\xe9\x67\xc6\x21\x78\x43\xd1\x36\x4d\x56\x91\xfe\x01\x9f\xfd\x1f\x4a\x92\xe2\x7a\x18\x68\xd8\x0d\xf0\x27\xc7\x1f\x24\xc4\xfa\x14\x7e\xf2\x51\x50\x22\x08\xf0\x70\x18\x7e\x32\x9e\x4c\xc8\x2a\x3c\xe3\x75\x8f\xf7\x28\x1b\x6c\x0d\x4d\x65\xdc\xea\xa3\x08\x22\x26\x9f\x1c\x7b\x3f\x19\x13\x9e\xc7\x35\xf6\x48\x9a\xea\x11\x0e\x25\x3c\x0e\xa8\xe4\xed\x65\xf0\xc4\xb2\xb3\x41\x62\x36\x07\x41\x2f\xfc\x7e\xd7\xe2\x15\x1c\x84\xd4\xa5\x7c\xfe\x5f\x8c\xb6\x11\xbe\xbe\x78\xcc\x25\xb2\x45\x8d\x30\x27\x5b\x29\x7b\x99\xed\x65\x16\xa6\xc7\x27\xba\xbd\xfa\x54\xc7\x60\xda\xac\xce\xbb\x07\x5f\xdc\xa6\x71\x88\x9a\xce\xaa\x3f\xf0\x5f\x29\x6d\x79\xda\x71\xd1\xf5\x5f\xc8\xb0\x59\xfe\xf4\x77\xba\x0b\x5b\x51\x58\x59\x7b\x27\xe7\x3a\x1f\x41\xef\x75\x3e\xa7\xd5\x2e\x3d\x42\x7a\x71\xe6\xd5\x92\x4d\x96\x84\xd5\x8f\x5e\x4d\xe8\x98\xe5\x40\x48\xab\xea\x9b\xb3\xc3\x76\x22\x21\x65\x4d\xc1\x5b\x6f\x3f\x1e\x36\xdc\x63\x5d\x33\x9a\xdb\xc2\x49\xc8\xd1\xdf\x67\xbd\xc7\x52\x8b\x30\xdf\xc8\x34\xd0\xea\x92\x10\xc1\x6b\x3a\x5f\xc5\x54\x91\x59\xff\x42\x7e\x61\xcb\xfa\x85\xb6\xbb\xff\x05\xf5\x09\x6b\x5a\x7e\x44\xcf\x20\xbc\x1e\xf8\x51\xa7\xbc\x7e\x2d\xa1\x68\x8f\xdf\xe9\xc4\x47\x0c\x61\x81\x9d\x42\x48\x76\x69\x0c\xc1\x4e\x6c\xbf\x88\x74\x4b\x39\x1b\x32\x1b\x25\x3b\x1e\x3f\x7c\xc0\x56\x4c\xcf\xad\x1f\xf9\x75\x38\x9e\xf0\xa7\x2d\x4b\x75\x9b\x7b\x3c\x21\x5b\x28\x36\xd6\x32\x26\x9e\xb0\xb5\xdb\x4f\x63\x6b\xee\x24\xc2\xd5\x8f\xae\x7e\x29\x8b\x98\xff\x15\x23\x19\x2f\xac\x37\xbb\xba\xfc\xdf\x10\x5d\xa2\x15\xb1\xfc\xd0\xee\x7f\xa1\x5b\x4c\x6e\x51\xb9\xf6\x02\xc2\xba\x84\x26\x9e\xa4\x14\x11\x36\x7c\xd5\x6f\xf1\xbe\x38\x7b\x26\x41\xed\x81\xde\xcc\xe9\x67\xba\x18\x1c\xe9\xd3\x7c\x92\x1c\x69\x44\x50\x29\x34\xd4\xf3\x0a\xe2\x23\x94\xb6\x17\xff\x58\x7d\x62\x19\xe1\xc9\x46\x0d\xa9\x9e\x64\x1f\xb6\xc2\x2f\x6d\x9c\x7c\xef\xe2\xbb\x12\xb4\x97\x7f\x0b\xd9\xf3\x75\x1e\x41\xfc\xec\xf4\x3d\x86\xd2\x4b\x08\x22\x15\x51\x02\x5c\x4d\x0b\xd8\xd0\xfb\x6e\xde\xfc\x9f\xf6\x8d\xcc\x38\x62\x77\xbe\x39\x2b\x2c\xb8\x9a\xfe\x01\x59\x7b\x3b\xc5\xcb\x07\xac\xd8\x0a\x4f\xed\x8e\x97\xb3\x7e\x8a\xfd\x0b\x7e\x8a\x37\x52\x7d\xbc\xe6\xb3\xe1\x80\xb0\x55\x84\xd9\xbd\xf9\x84\xa7\xb9\xaa\x1e\x52\x82\xca\x84\x93\xe2\xe9\xa7\xf3\xcf\x4d\x21\xac\x0b\x0c\x8e\xf5\xd7\xe5\x20\x34\xda\x4e\xd5\xcb\xe3\x67\xb1\x30\x28\x94\x90\xe8\x1a\x66\x40\x98\xfa\x29\x68\xb2\xe3\x35\x07\x16\xe2\xfa\x39\xbd\x59\xa6\x0a\x04\xa1\x49\x1f\xf4\x4a\x3f\x2f\x20\x74\x7f\x34\xed\x90\xd2\x98\x42\x18\x1c\x8d\xc9\x48\x18\xfb\x30\x35\xec\xb2\x66\x2b\xb5\x57\x12\x5a\x15\x3a\x7f\xe6\xb8\xd4\x13\x7a\xcb\xab\x75\x4a\x23\x72\x09\x0d\x83\x93\xbd\x2a\xec\xeb\x09\x85\xe7\xf6\x5b\xed\x9b\x9d\xc2\x82\xce\xca\xf0\x3c\xe1\xc4\x74\xc2\x1a\xe3\x10\xce\x05\x57\x52\x09\xb2\xda\x07\xe6\xde\xe7\x0b\x67\x21\x47\x91\xd7\xc8\x50\x3b\x9e\x90\x3e\x7f\xc3\xa1\xa6\xb0\x5c\x82\x8c\xf1\x6c\xb1\x59\x67\x5a\x09\x1b\xd7\x3c\xb5\xf8\xf9\xe3\x3d\x81\x46\x72\xb6\xc7\xb6\xe7\x13\x36\xcd\xed\x38\x26\x37\x3b\x82\xf0\xb6\xe8\x5d\xe3\x89\x88\xa3\x84\x54\xd3\x1e\xe3\x1b\x13\x62\x09\xc2\x5c\x6b\x39\x3d\xce\xf9\xb1\x20\x34\x70\x36\xa2\x2d\xf3\x08\xa1\xbe\xe4\x70\xef\x8b\xc6\x70\x82\xd7\xce\xd4\x2d\x5b\x2f\xdc\x27\xd8\x6e\xb9\x24\x22\xf4\x3d\x92\x60\xe2\x3d\x41\x27\xcb\x30\x9e\xad\x74\x0c\x2d\xbd\x2f\x58\x9b\x4e\x50\x4a\xf4\x79\x65\xd2\x12\x4c\xa8\xe2\x5a\x6f\x5c\xb3\x2a\x9d\xd0\xf7\xc0\x69\x67\xe0\xb2\x73\x04\xdf\xdf\xe9\x15\x7c\x71\x0f\x09\x53\x7f\x97\x9e\x30\x7f\x98\xc7\xc2\xd6\x94\x70\x7a\x1c\x97\x43\xa8\xdd\xcd\xd5\x20\xf9\x30\x8c\xf0\x86\x09\x9c\x7b\x7a\xc1\x69\x16\xe2\xed\xea\x38\x6b\xcc\x52\x59\xc8\x32\xae\xe4\xbb\xd3\x1b\x4e\xf8\xb6\x63\xb6\x64\x7f\x91\x34\xa1\xb1\xf9\xcf\x9d\xef\x8d\xf1\x84\xee\x1f\x3f\x44\x7e\xaf\x7b\x47\x70\x9c\xfa\x89\xb3\xc0\xe0\x3e\xe1\xfc\xc1\xdd\xe1\x01\x7c\x56\x84\x63\x72\xd5\x9b\x9e\xa6\x86\x12\x62\x34\x84\x56\x46\xf7\xbe\x24\x4c\xda\x7a\x29\x32\xb9\xb0\x9a\x90\xec\xf0\xfa\xba\xdd\xed\x5c\x82\x75\xe0\xda\x64\xc7\x39\xaf\x08\x17\x47\x0a\x4e\x70\xbc\x2d\x26\x08\x2c\xd8\x18\xc7\x73\xa4\x96\x10\x13\x3b\xc1\xef\x7a\x67\x1e\xa1\xe3\xf0\xdb\xe7\x17\x64\x6b\x08\xbd\x71\x07\x65\xb5\xbf\x04\x11\x26\xe9\x6c\xde\x2b\xa4\x73\x90\x70\xc5\xd5\xe8\xf2\xd2\xc4\x3b\xac\xf1\xd1\xc5\xef\x67\xb7\x7d\xff\xd0\x42\x68\x5b\xb2\x7b\x27\xc7\xcb\x40\x82\xdc\xe0\xcf\x89\x66\x6b\xe3\x59\xe3\xe5\x40\xab\x93\x8b\xca\xc3\x23\x04\xdf\x55\xb6\x47\x83\xab\x54\x09\x7b\x4f\x97\x33\xb7\xf2\xd4\x09\xfe\x8f\xe2\xf7\x5d\x8b\x34\x27\xd4\x2d\x74\xbc\x75\x53\x6a\x3e\x81\x4c\x55\x5c\x16\x1a\xc8\x10\xb4\x0e\xab\xae\x29\x4c\xfa\xcb\xa0\xdd\xeb\x63\x1c\xf7\x16\x65\xfa\x07\x5e\xad\x3d\x76\x37\x32\xb0\x8c\x81\x70\xf7\x4f\xbf\xd0\xed\x95\x0c\x5a\xf6\x56\xd7\xd5\xa5\x49\x8f\xdd\x0a\xd2\xf7\xbe\xfd\x6a\x44\x58\xd5\x6c\xea\x52\x92\x22\x49\xd8\x55\x3a\x6f\x7e\xfd\xd3\x1b\x84\x33\x7f\xaa\x5e\xfd\x87\xa7\xcb\x7f\x7b\x3b\x70\x67\xb2\x30\x37\x76\x9d\x6b\x58\x61\x29\xa1\xce\xeb\x42\xd6\x7f\x23\xf7\xc3\x7d\x93\x1a\xc6\xa0\x78\xa6\x33\x6e\xf8\xd1\x1e\x36\x7c\xe5\xaa\x4d\x2d\x3f\x7a\x9c\xa0\xf5\xbd\xe2\xb6\xd8\xa4\x10\x42\xdd\xf3\x7e\x9f\xdd\x9f\x37\x11\xec\x97\xfc\xe1\xcf\xbf\x7e\x84\x85\xbd\xc7\x76\xf4\x49\xc7\x6d\xa7\x71\x9c\x3c\xd6\x5c\xd4\xa1\xb6\x92\x20\xb7\x21\x49\x30\x47\x78\x39\xa1\x48\x29\xc6\x86\x29\xbc\xcf\x86\xa1\xdd\x4b\xf4\xb7\xde\x09\x23\xb8\xd5\x7b\xac\x91\x57\x8b\x21\xfc\x7d\xba\x60\xae\xa7\x51\x05\xe1\x93\x65\x48\xf0\x3d\xc5\x18\xb6\x91\x5b\xd6\x9f\x2d\x79\x37\x13\x08\x6d\x92\x3b\x1c\xec\x0e\x24\x10\x5e\x34\xff\xe8\x2b\xe2\x3d\x43\x48\x92\xe7\xdb\xb4\xbd\xf0\x38\xc1\xd0\x91\x35\xa7\xb7\xff\x05\xa1\xa8\x72\xea\x83\x59\xef\x13\x08\xee\x7c\x23\x62\xc3\x52\x35\x84\xa0\x19\xb3\x9f\x3a\xd4\x3c\x27\x8c\x6c\x9c\x73\xd1\x6e\x0c\x99\x0a\x2b\xe7\x08\xf3\xd7\x10\x74\x79\x44\x8f\xda\x8e\x95\x51\x61\x2a\x14\xdb\x9c\x49\xd8\xb1\x34\x29\x49\xec\xae\x01\x41\xc1\xaa\x7a\x75\xca\xd6\x02\xc2\x1b\x57\xde\xc2\xc2\x81\x27\x84\x89\xb3\x25\xe3\x4f\x8f\x15\xf1\x0b\xb3\x36\xaa\xf7\x84\x13\x96\x5a\x79\xf4\x79\x6a\xa6\x11\x2e\xae\xeb\xd3\xac\xcc\x08\x23\x14\x1b\x3e\x79\xb0\xd4\xb4\x9b\xc1\xb0\x99\x4b\x57\x9c\xb7\x36\x41\xe2\xd6\x28\xb7\x59\x19\x11\x2e\xf5\x79\x56\x0c\x2e\xd5\x24\xa4\x2f\x70\xad\xd8\x65\xa9\x4a\x68\xd4\xde\xf1\x79\x58\x51\x9e\x30\xff\xb6\xc7\xb3\xd5\x49\xf3\x09\x9e\x9f\x6d\x46\xdd\xde\x2b\x10\x1e\x99\xa4\xc9\xef\xd1\x29\x23\xec\x7e\xa9\x72\xa8\xbc\xa8\x96\xd0\x68\xaf\xb4\x58\xb2\x3d\x97\x05\x56\x5e\x50\xc1\xad\xe5\xb2\x84\x8d\xee\x7d\xc3\x01\xeb\xee\x12\x6a\x1f\x45\xad\x7c\x9e\xf6\x81\x85\x93\x4d\x55\xcf\xff\x2b\xbe\x33\xce\xb5\x37\x7b\x89\x10\x38\x3d\x35\xcd\x4f\x4e\x2f\x25\xec\x2e\x92\x7a\x7e\x32\x47\x9b\x20\x39\xd5\x54\x96\x3f\xae\x9f\x41\xae\x5f\x6e\xd3\xa1\x6d\x5f\x19\xd8\x88\x57\x1f\xdc\xe7\xaa\x4e\x78\xe6\x56\xde\x9a\x91\xec\x46\xf8\xf6\xf1\x54\x6c\x4b\xe1\x44\x42\x1b\xcf\xb1\x90\x67\xdf\x26\x12\xd6\xf3\xad\x94\x54\xbd\x3a\xb6\x9e\x44\x93\xb9\xcd\xaf\x85\x84\xde\x57\x1a\xfe\x0f\xb5\xce\xb1\xf0\xe0\x56\x7a\x72\xf5\xec\x21\x06\x2d\x89\x1a\x6b\x4a\x52\xf4\x68\x1c\xcb\xd3\xdd\x32\x2d\x3a\x67\x12\x76\xee\x6a\x7f\xc8\x59\x76\x98\xf0\x49\x2e\xfa\x5e\x97\xc8\x11\xc2\xfe\xe4\xc0\x29\x7e\x52\xe7\x08\xbf\xea\x1a\x6e\x66\x7d\xd4\x24\x54\xb4\x6f\x1e\xba\x75\xc6\x97\x60\xe6\xfe\xfa\xc2\xd0\xe9\x34\x42\xf8\x94\xfd\xf2\x33\x92\x3c\x08\x71\x6e\xaf\x5f\x5c\xdb\xe6\xce\x56\x2a\x0f\xb7\xbe\x15\x9e\x70\x86\x05\x8f\xf5\x1b\x32\xdd\x83\xbd\x09\x6f\x93\x24\x3e\x46\x4a\x9c\x23\xf8\xb8\xef\x8e\xfc\xb8\xab\x85\xb0\x3e\x30\xdc\x96\xaf\xe0\x35\xc1\xf3\xfb\xc1\x65\x6a\x45\x39\x84\x89\xda\xe7\xf2\xd2\x42\x1c\x09\x9b\xca\x59\x9b\xab\xd7\x25\xb1\x60\xa4\xb9\xe0\x7e\x16\x87\x23\x41\x88\xc3\x63\x5e\x9b\x8a\x23\x21\xc0\x2c\x8a\xff\xe2\x95\x16\x82\xb2\xf1\x64\xc1\xfb\x9f\x3e\x10\x5e\x2e\x36\x9b\x71\xd9\xe7\x0d\x21\xb4\x38\x6e\xce\xfc\x9e\x32\x82\xd6\xea\xd5\x0d\x77\x52\x5b\x09\x6e\xaf\xc4\x0d\x92\x5b\x1f\x10\x5c\x1d\xe5\x39\xab\x1c\x4a\x09\x15\xa1\x72\x1a\xcb\xf2\x1c\x09\xae\x49\x95\xa2\x5a\x91\x27\x09\x17\xee\x2f\xba\x3f\x6f\x5e\x0a\xe1\x48\x35\xbf\xf1\xbc\x1a\x76\xac\x77\x58\x1e\xf0\x1f\x56\xa7\x34\x0f\x19\x85\x95\x12\x8e\xdc\x61\xa2\x7b\x7d\x4a\x09\xd3\x17\x7f\xbe\xe0\x1c\x58\x4a\xa8\x1c\xad\x95\x7e\x19\x51\x4a\xf8\x73\xa4\xb9\x46\xf6\x6c\x29\xe1\xd8\xd9\x1b\x81\xf3\xf3\xf2\x09\xdc\x9a\x5f\x24\x3b\x16\x95\x11\x2a\x7e\x26\x66\xf3\x6f\x67\x11\xf4\x52\x4f\x34\x4d\x1b\x43\x48\xca\x6e\x49\x7d\xb1\x8b\x84\x6d\x6f\x75\xe2\x04\xc6\x4a\x90\x9a\x45\xa9\xea\xf1\x0c\xc2\x82\x43\xf3\x94\xca\xd4\xaf\x10\x7a\xf7\x15\xbc\xb8\x9b\xc1\x62\xe1\x67\x4f\x0c\x5d\x1a\x2b\x45\x7b\xe7\xb4\xe9\x8c\xc1\x6e\xa8\x8f\xe3\xbf\x33\x43\x05\x76\xef\xad\x35\x0e\x11\x24\xef\x05\x7c\xfd\x7c\x29\x89\x20\x52\x19\x75\xb4\xff\x46\x2f\x83\x61\xb9\x8d\xf7\x06\x1e\x77\x31\x88\x71\xdc\xa4\x3b\x59\x66\x06\xe1\xf0\x69\x2d\x95\x5c\xc9\x1e\x06\x4a\x56\xae\xb2\x53\x26\x0f\x31\xb0\x30\xd5\x54\x9f\x94\x33\x99\x60\x3b\xcb\x2f\xe7\x9d\xc1\x5a\x82\x16\x2b\xd0\x73\xf2\xe6\x7d\x84\x1b\x13\x56\x1e\xf4\x13\x7f\xc5\x40\x29\xba\xbf\x79\xca\xd6\x85\x04\xab\x2f\xb3\x3b\x1e\x65\x47\xd3\x78\xc9\xd8\x2b\xe8\xf4\xa9\x5f\x91\x60\x76\xf1\x70\xf6\x6b\x73\x4d\xc2\x7b\x17\xf7\x7d\x5a\x9d\x63\xbf\x36\xdc\xef\x5f\x6c\xb8\xa4\x4e\xb0\x5a\x79\xcc\x7f\xeb\x4f\x19\xc2\xa6\xdf\x3a\x16\xab\x0a\x53\x08\x77\xd2\x34\x96\xc6\x8f\x3a\x12\x7c\xcb\xbc\x16\x9e\xd8\xac\x4c\xf8\xca\x68\x45\xd8\x7d\x99\xcb\x86\x8b\xde\xab\xde\x87\x8d\x6e\x24\x04\x54\xbb\x48\x09\x37\xf4\x31\x98\xb4\xfe\x85\x84\xd4\x6e\x5b\xc2\xcd\x84\x7d\xca\x87\xfa\xad\x08\xb5\x37\xca\x7a\x7d\x6a\xd4\x08\x59\x6b\xdf\xef\x9f\x38\xb7\x86\xc1\xea\xd8\xf6\xf7\x7f\xb4\x3b\x19\xac\x0d\x72\x2c\x12\x50\xff\xc4\xe0\xba\xca\x67\xf1\x99\xa6\x22\x84\x56\xa1\xcb\xb6\x2b\x73\x17\x13\x42\x2d\xda\x74\x86\x8f\xa5\x12\xee\x96\x4d\x2b\xf1\xdc\x2b\x4f\x78\x7f\x6d\xd5\x8c\xf2\xc7\x33\x09\x61\x13\xca\xab\x8f\x0e\xab\x11\x02\xbb\x2e\xea\xc8\x76\xe9\x10\xce\x8f\x70\xbf\xb8\xeb\x29\xc7\x06\xa5\x97\x16\x7c\x3b\x98\x76\x06\x49\x02\xa3\xe6\x0e\xbb\xe6\x12\x5e\xf5\x3d\xcd\xee\x89\x6a\x65\x10\xc7\x57\xc5\x35\xef\x4d\x19\x1b\x4e\x3f\x0f\x0b\x76\xbd\x34\x81\xc0\x67\xb6\x8c\xa2\x3a\xdb\x19\xdc\x6a\xd0\x3c\x2e\xc7\x9a\x4e\xb0\x4b\xd7\xd6\xbf\xcb\x31\x91\xa0\x7d\x2e\x64\x47\x56\xc9\x1a\xc2\xf2\xae\x53\x9b\x6f\x96\xb4\x30\x68\xf6\x0e\x10\x32\xdf\xb8\x88\xb0\x35\xe6\xfb\x1e\xe3\x9d\x7a\x34\x5e\x4e\x2f\x88\x5e\xc4\xf5\xf5\x26\x83\x1f\xa1\x6e\x95\xeb\xac\x34\x09\xa6\xcc\x88\xc2\xee\x8b\x6e\x84\xd4\x59\x73\xf6\xce\x0a\xf1\x1c\xdb\x2b\x1d\xe2\xec\xcf\xa8\x10\xb6\x95\xbb\x54\x4f\xfd\x78\x8e\x20\x7a\x28\xf3\x92\x69\x76\x11\x6b\x1c\x56\x41\x53\x7d\x9d\x3a\xed\x08\x32\x33\x57\x36\x39\x78\x1d\x60\xe1\x49\xdf\x87\x3b\x73\x97\xc4\x11\x22\x0d\xf7\xb4\x77\xf5\xd9\x13\xb4\x99\x2b\x97\x2d\x78\x0d\x09\x1d\xbf\x57\x48\xb2\xae\xd8\x13\x6a\x2c\x64\x3e\x4d\xde\x60\x43\xa8\x68\xd5\x10\x50\x7e\xb4\x92\xd0\xc4\x6f\x1b\x37\x27\x20\x9d\x85\x35\x1e\x8b\xbf\x1f\xe0\x4e\x27\xdc\x34\xd3\x95\x2d\x76\x0d\x66\xe1\xa7\x6b\xb8\xc7\x13\xe5\xf3\x04\xed\xf5\x11\x59\xfc\xc7\xee\xb1\xf0\xe7\xd4\x54\x92\x36\x3d\x4f\xe8\x52\x75\x68\xfc\x3b\x25\x9a\xf0\x63\x61\xc1\x1d\xa1\x75\xc7\x08\x93\xdc\x95\x8f\xf1\x1f\x34\x20\x34\x0f\xdf\x4b\xbb\x92\x5a\x4a\x88\xf9\x68\xe9\x1c\x90\xd5\xc7\x20\x9b\xf3\xa7\x53\xc4\x2b\x4b\xfa\x1f\x0c\x9a\xf0\xcb\x89\xe6\xf1\x11\xf2\xcb\xe6\x1d\xc2\x6f\x37\xc2\x75\xbd\xd7\xaa\x01\x87\x8b\x09\x53\x53\xb6\xe9\x3d\x71\xbb\x4d\x78\x76\x64\xe4\xd6\xd1\x95\x22\x84\x19\x5f\xf6\xde\xba\xef\xaf\x4c\x68\xd8\xd9\x5a\xe3\xaa\xaa\x47\x98\xb3\x63\xc5\x8a\xae\x8e\x2e\x06\xf2\xc5\x8f\x77\xd8\x98\xe8\xd0\x38\x44\x78\xf3\x64\xde\x64\x2c\x26\xcc\x6f\x18\x6c\xab\x52\xcc\x26\xfc\x3c\xfd\xc9\xa8\xa3\xc8\x96\xb0\xf9\xa9\xad\x6f\xfe\x25\x7b\x42\xc7\x8b\x15\x6b\xa6\x55\x27\x11\x14\xf8\x66\x2e\xfc\x9c\x5b\x49\x08\x0b\x7d\xca\xe1\x7c\xfc\x32\x0b\x1b\x83\xbc\xe4\xf6\x5b\x2d\x23\x98\xa8\x3c\x39\x2a\x54\xb3\x92\x50\xf6\x49\x32\x43\x7a\xb0\x9b\x19\x47\x60\x77\x7e\xaf\x93\x74\x39\x83\x4b\x67\x56\xbd\x78\x52\x7c\x8a\x30\xcb\xe4\xa8\xcb\xa9\xb6\x58\xc2\xf4\x56\x43\xc5\x82\x73\xd6\xff\xc2\xfa\x35\x6b\x6c\x62\x95\xa4\x08\xed\x76\xc5\x09\x49\xce\x9c\x04\x93\xa6\x35\x7b\x5b\x13\xe6\xd2\x60\xe7\xcb\xfd\x62\xdf\xa6\x10\x56\x0b\x78\x1c\x08\x5d\xae\x4f\xf8\x5e\x75\x9e\x2f\xb4\xf7\x3e\x21\xbc\x6c\xea\xae\xc2\xe8\xe7\x04\x5f\xb1\x97\x12\x32\x22\xa6\x84\xe1\x28\x97\xee\x4b\xdd\xed\x0c\x44\x14\x9b\xf4\xf8\x4b\xc7\x2e\xfa\xff\x0f\x96\x5d\xd1\xfe\x75\x75\xef\x20\x83\x13\x5e\x46\xbf\xf8\x7e\xcb\x10\xde\x65\xf7\xe9\x06\x6c\xb5\x21\x28\x72\x06\x39\xcb\x1d\x9c\x43\xb8\x77\xb9\x5c\x32\x68\xb7\x0a\xe1\x57\xbc\x97\x71\xdd\x49\x22\x6c\xb0\xdc\xf8\x60\x4a\xa9\x15\x1b\xd6\x6b\x7d\xb2\x6e\xda\xc1\x8e\x90\x6d\x35\xe7\x92\x7a\x57\x10\xf8\x6d\x8e\xa6\xfb\x1d\x1d\x61\xe0\xb9\x5a\xe9\xa1\x81\xe4\x55\x16\x14\x9e\x1d\x8b\x68\x3b\x9e\x4f\x10\xd1\x90\x3f\x7b\x37\x25\x9f\x10\xf9\xb1\xbc\x91\x8e\xb5\x32\xb0\xf9\x3c\x41\x5d\xfc\x71\x3a\x0b\x9b\x8d\x6e\x57\xea\x3c\x57\x26\xf8\xb2\x34\xdc\x74\x05\x26\x11\x0e\xcf\xbf\x90\xce\x27\x14\xc7\x42\xd0\x8c\xfe\x8a\xfd\x3f\x6f\x10\x04\x17\x65\x7f\x52\xfe\xd3\x44\xb8\xd3\xe8\xd4\xb9\x3e\x34\x92\x60\x93\xa9\xc5\x51\x7c\xdb\x9e\xe0\xff\xc1\xfb\x67\x8a\xe4\x05\x16\xd4\x83\x52\x7c\xd3\xe4\xb7\x11\xa6\x54\xf1\xce\x29\x39\xd3\xc3\xa0\xfa\xb0\x43\x9a\xf8\xad\x39\x84\xea\x2d\x3b\x77\x64\xd4\x6e\x21\xbc\xd6\xda\xad\xef\xf4\xdf\xbf\x3e\xae\x6e\x6b\xdd\x33\xbd\x92\x50\x3c\xd0\xff\xa0\x70\x5b\x2d\x81\xe5\x1c\xa2\x60\x38\x06\xcd\x6b\x2e\xfc\x77\xc7\x70\x77\x73\x7e\xd7\xd1\xd5\x46\x04\xa5\x57\xc3\x23\x71\x77\xf7\x10\x36\x0a\x6b\x84\x2f\xcc\xde\x4d\x50\xa8\x2b\x92\xf3\x8e\xde\x4f\x98\xbc\xe9\xe6\x90\x90\xc8\x56\x02\x4f\xde\xb3\x79\xf3\x46\x03\x08\x1b\x07\x77\x96\x97\x38\xca\x10\x24\xf9\x7f\x1a\x6d\x09\x99\x4a\x78\x34\xbb\x7d\xd9\x5f\x45\x03\x42\x85\xe7\xe0\x80\xbb\xaa\x1a\xa1\xdc\x60\x68\xea\x8e\x9b\x65\x0c\x36\x0d\xf6\x1f\xe8\xb7\xab\x64\xf0\xb1\x4a\x6d\xf4\xcb\x64\x27\x82\xa1\xfd\xf3\xe4\x45\xad\xee\x84\x37\x1b\x36\x9f\x7d\xb9\xcf\x99\xc6\x47\x6b\x3f\x08\x79\xfe\xe2\x8a\x27\x78\x15\x8a\x49\xf1\x9b\xcc\x21\xdc\xda\xb4\xe3\x79\x9d\xb4\x1b\xe1\xda\xa1\xe8\x72\xdb\xf6\x77\x2c\xb4\x88\x6e\xfe\x14\xc4\xb7\x86\xa0\x68\x3c\xda\x69\xd5\xac\x4d\x38\xac\xc8\x6b\x2b\xeb\x1b\x45\xc8\xfb\x7d\x65\xfd\xb6\x2e\x25\x42\xf3\x27\x09\xdd\xcb\x1d\x63\x9f\xf3\xb2\x1b\xab\xa3\x6d\xab\x18\x70\x6d\x78\x15\xa5\x64\xec\x48\xb8\xfa\x42\x89\x7b\xa2\xf1\x6c\x82\x52\xc0\xe4\x97\xf5\x0a\xb2\x6c\x38\x39\x79\x7a\x18\x06\x27\x12\x02\x14\xa2\xea\xef\xcb\xb1\x58\x38\x17\x1a\x24\x7a\x26\xbc\x96\xf0\x70\x7d\x64\xf5\x1f\xa7\x56\xc2\x84\x3b\xd2\xe9\x3e\x3a\xa9\x04\x4b\x07\x71\xb5\x96\x59\x85\x2c\x58\xee\xeb\xd6\x33\x5f\x50\xc7\x82\xcb\x1a\xe9\x73\x25\xd5\x27\x08\x1f\xcf\xef\xb7\x96\x9d\x73\x80\x20\xec\xad\xa7\xef\x97\x12\x40\xf0\x59\xae\xde\xae\xa5\xbc\x9b\x10\x9f\x94\x9e\x7f\x6c\x9f\x13\xa1\x4a\x2d\xe7\xa6\x40\x40\x1e\xe1\x9c\x21\x1f\xeb\xa7\x42\x03\xc1\x50\xea\xca\x27\xd1\x7b\x55\x04\x5d\xbb\x23\x9f\xae\x46\x68\xb0\x61\x9a\x45\x26\x82\xc5\xf7\xb2\x10\xf8\xe2\x41\xdc\x66\xa3\x22\x82\x51\xf9\x0f\x87\x44\x6d\x65\xc2\xe2\xb7\xea\x5f\x96\xa4\xf3\x10\x14\xd6\x28\x49\x2b\x5f\x77\x27\xbc\x93\xd8\x7c\x61\x06\xa3\xcd\xc2\xe3\x53\xf9\x02\x7f\x67\x9d\x26\x74\x5a\xed\x4b\xf0\xd9\xa0\x46\x58\xad\x7d\xf2\xf3\xb2\x8d\x2d\x25\xe0\x0b\x90\xb8\x75\xf5\x85\x27\xe1\x4f\xf1\xaf\x17\xe7\xe7\x39\x13\x36\xdd\xd6\x16\x5c\x70\x71\x84\x19\x87\xdc\x0e\x47\x8b\x75\x8d\x75\x25\xf8\x14\x19\x5c\x5b\xcc\xa5\x46\x68\xf5\x52\x4c\x75\xa8\x37\x26\x5c\xfd\x3d\xd1\xcd\x74\x92\x2e\x21\x7b\x8a\xcc\x6c\xff\xbc\x3e\x06\x0a\x9e\xb7\x95\xe4\x07\xcb\x08\x11\xe1\x8f\xb6\x68\x47\x15\xb3\x70\xe4\x7a\xa3\x24\x4f\xfa\x5f\x66\x1c\xef\x46\xcf\xe4\x97\x59\xf6\x32\x38\xfc\xcd\xbc\x6e\xfb\x86\x5e\x06\x9d\x36\x73\xa3\x56\xae\xf8\xc5\x60\x75\xbb\xee\x0f\xa9\x6f\x0c\xc1\xf6\xc4\x86\x61\xef\x1b\x9a\x6c\x38\xc0\x27\xf3\x84\xdf\x4c\x83\x20\x6f\xf7\xc6\xea\x2a\x29\x10\x46\x23\x52\xbf\x27\xa6\x2f\x23\x18\x67\xa4\x04\xad\x0d\x7a\xc3\x80\xf7\x5c\x8d\xb4\xc8\x73\x7d\xc2\xad\x9e\xba\x8f\xcb\x7a\xcc\xd8\x30\xdf\xe1\xd7\x8d\x08\xe9\x07\xff\x82\xcf\x87\xa6\xec\xb2\xa4\xed\x04\xd3\x52\x4f\xd3\xfb\x8b\x5c\xd8\x4a\xec\x07\x57\x8e\xbd\x35\x17\x59\xe3\xc5\x7a\x5d\xf7\x75\x1f\x53\x4d\xc2\xc9\xf5\x27\x15\x17\x6c\x0f\x24\xac\x5e\x72\xce\xe7\x66\x41\x26\x61\xae\xcf\xcd\x03\x2b\x5e\x58\x13\x0e\xeb\x9e\xd4\x74\xdc\x6b\x4c\x50\xdf\xaa\xae\x75\xb9\xf4\x0f\x83\xbe\x44\xc7\x51\xbf\xa6\x2b\x2c\x0c\xf8\xd2\x8a\xaf\x0f\x78\x09\xbe\x6d\x03\x5f\x6a\xc2\x0b\x08\xba\x42\xd6\x49\xd9\x5f\xd7\x13\x26\x48\xde\x94\x6e\x08\x57\x61\x8d\x97\x48\x51\x29\x77\xeb\xbb\xb3\x09\x89\x12\xdc\xf9\x8e\xd6\xc3\x0c\xac\x6e\xa6\x5d\xb2\xad\x59\x40\xe3\x38\x60\x35\x9b\x67\x95\x8a\x08\xa1\xd3\x4b\x3c\xce\x4b\xaa\x9c\xb0\xe5\xf6\x53\x13\x8d\x03\x59\x84\x4d\x8e\x2e\x9b\xa6\x4d\x77\x21\xfc\x0d\xfc\x75\xf0\xb2\x59\x20\xc1\xcd\x6d\xaa\xb4\x73\x9a\x2f\xdb\xc8\xd3\x4f\xb8\xaa\x27\x4d\x8c\xf0\x3d\xee\xd2\xcc\xa9\x3b\xe6\x10\xa6\x6c\x68\x9c\xe6\xdd\xaf\x49\xc8\xce\xbc\x92\x74\xad\xdf\x92\x70\x51\x2f\xc6\x34\x00\xeb\x08\x47\x5a\xfb\x95\x6e\x6d\xba\x4c\xf8\x91\x76\xf3\x53\x50\x45\x0e\x41\x4f\x63\x57\xe0\xcd\x5b\x3e\x84\xfd\xae\x82\x2f\xac\xbd\x0d\x08\xe2\xe6\x2d\xf5\x43\x1a\xa2\x84\x1b\xb1\x8a\xd3\xdc\xd7\x06\xb3\xa0\xd0\xa0\xb5\xde\x54\x71\x37\xa1\xc6\x37\xdb\x38\x3b\xd6\x81\x20\x56\x2a\x37\xaa\x33\x73\x6c\xdd\xad\xfd\x51\x9a\xec\x74\x9b\xb0\xeb\xb1\x02\xcd\x3c\x7e\x9f\x50\x57\x95\x9d\xb8\x75\x72\x31\x0b\x75\xc7\x47\x6a\x39\xc7\x7e\xbe\xee\x89\x2d\xbb\xb1\x6c\x6e\x05\x21\xc1\xe4\xea\xa4\x6a\x47\x7d\xc2\xef\x64\xa9\xa8\x25\x29\xba\x84\x19\xcf\x4c\x17\xdb\xf3\x4d\x26\x08\x16\x5d\xb9\xb8\xae\xd1\x8b\x30\x94\x19\x91\xa3\xb4\xc8\x80\x90\xe8\x7e\x93\x6f\xc5\x54\x6e\x82\xc3\x99\x42\x73\x2f\x23\x1e\xc2\x12\xe1\xb7\x03\x72\x6d\xaa\x84\xee\xb4\x52\xdd\xb7\x5f\xa6\x12\xbe\xdb\x3d\x7e\x38\x5f\x6c\x17\x21\x37\xa5\x47\x7a\x4f\xee\x35\xc2\xbd\x14\x21\xcb\x23\x26\x25\x84\xa0\x53\xeb\xd6\x1c\x9f\x50\x49\xf8\xb3\x52\x7c\xcb\xa3\xb1\xad\x29\xf5\x84\x5e\xd0\x42\xc9\xd9\x84\x89\x2e\xb6\x1b\xd5\x18\x0e\xc2\xc6\x2b\xc7\xd4\xe5\x82\xa6\x13\x8e\xa7\x0c\x54\x1c\x6c\x9f\x4d\x38\x7f\xf0\xe2\x20\xff\x4b\x73\xc2\xf6\x96\x0b\x0e\x9f\xc5\xcc\x08\xdd\x49\x7b\xde\x2e\xb1\xe5\x25\x5c\x3a\xbb\x29\xea\x4d\xd2\x08\x83\x8c\x90\x46\xe9\x8d\xba\x62\x04\xef\x86\xf8\x99\xaf\xf8\xf2\x09\x86\x3f\x82\x23\x7b\x6a\xde\x11\x0c\x4e\xb5\x39\xbc\x1c\x2b\x31\xd3\x85\x8e\x4a\xee\x49\x23\x98\xbc\x9b\xba\xc9\x69\xd0\x84\x90\xea\x82\x4e\xe7\xce\x42\xc2\x9f\xcd\x9d\xb7\xcb\xba\x0a\x09\x2a\x4d\x65\x31\xff\xe1\xfd\x46\x6f\xe1\xd2\x31\x48\xe9\x7c\x12\xbd\xbf\x61\x3d\xc1\xf9\x8b\xbb\xea\xb9\x48\x47\x82\x66\x61\x78\x82\xf1\x6c\x6b\xb6\x92\x1d\x3a\x57\xfa\xcc\x42\x7f\xc2\x65\x8d\x19\x53\xb5\x6c\xf6\x13\xb2\x9c\xe5\xd7\xec\x3f\xfa\x8a\x60\x3a\xd3\x20\x32\x86\xf3\x29\x61\xf7\xb7\x0f\x96\xf1\x9a\x12\x84\x1c\x13\xfd\x2d\x5e\x8d\x0c\xc1\xb1\xf2\xa6\x60\xfa\xbb\x02\x82\xff\x82\x43\xa3\xd9\x87\xf2\xd8\x4a\xbc\x7a\xf4\xe7\x4b\x63\x08\xb7\x0a\x76\xdc\xb3\xd1\x84\xb0\xf7\xd9\xe7\xc1\x55\xd1\xd7\x08\x29\xbf\x06\x1a\x84\xd4\xcf\x12\x64\x75\xcf\x7c\xe6\x75\x4c\x20\x18\x47\xfb\xfa\x2a\xbd\xcb\x25\x28\xa6\x5f\x3b\x3c\xad\xab\x80\x05\x75\x99\x94\xcb\xa6\x79\x45\x2c\x24\xbc\xbb\xfc\xf1\x5b\x71\x28\xe1\x40\xe4\xf9\x6b\x9d\xcd\x05\x2c\x34\x86\x5c\x5a\x28\xfd\xad\x80\x85\xc7\xad\x86\xa5\xbb\x65\x42\x09\x77\x23\xb4\xc4\x94\x1a\x72\x09\x9f\xa4\x65\x04\x9c\xeb\xf3\x58\x88\x70\xff\xbc\x62\xc1\xb4\xf5\x84\xf7\x62\x1a\xd6\xe7\xaf\xd7\x10\x26\x4e\xd4\x3e\x98\x60\x58\x4a\x38\x35\xdd\xc6\xcb\xcd\xb1\x80\xb0\xd1\xb1\xc2\xe8\x6d\xca\x6a\xc2\xc7\xa7\xf7\x43\xb2\x72\xcf\x12\x9c\x62\x8b\x66\xfa\x06\x14\x10\x1a\x03\x36\x38\x7a\xf8\x95\x11\xc2\x2c\xad\x07\x6d\x7d\x8a\x09\x32\x53\x9e\x04\xcc\x4c\x4a\x20\xf0\xe6\xcb\x4f\x58\x9a\x50\x49\x48\xd6\x28\x97\xb8\xe2\x55\x44\x70\xbe\xd6\x96\x29\x1b\xf0\x92\xb0\xe8\x7e\xd7\xd4\xf4\xb1\x12\xcb\xbf\x63\xbd\xd4\x91\xc3\x84\xf3\x47\xda\xd5\x8c\x99\x3d\x84\xaf\xa2\x3f\x16\x95\x9a\x6f\x25\xe4\xbb\xe8\x56\x2d\xf5\x0f\x20\x64\x3d\x2d\xcf\x9a\x51\xec\x42\x38\x6a\x11\x36\xbd\x69\xfb\x64\xc2\xc6\x56\x1e\x99\xdd\xd5\xa6\x04\x91\x98\x8d\xc6\xdb\x3f\xed\x65\x83\x70\x43\x0c\xc4\x3d\x5d\x09\xf9\x4a\x8c\x9c\x80\xc1\x6d\xc2\x12\x6e\xc7\x8b\x01\x37\xae\x11\x02\xce\xaa\xa9\xef\x9e\xab\x42\xa8\x5f\xb5\xf4\xc0\xb4\x27\x53\x08\xfb\x7d\x22\x35\x0b\xb8\xf6\x12\xdc\xe3\x66\xed\xd0\x56\x4c\xfd\x07\x06\x57\x73\xda\xfd\x17\xdc\x5c\x1f\xf0\x67\x4d\xd8\xc2\x86\xf4\x53\xf1\x3f\x13\xfe\xba\xb3\x15\xae\x73\x61\x37\x26\xd6\xda\x11\x76\x65\x84\x79\xee\xbf\xdb\xc2\xe0\x6f\xa7\xfa\x5f\x3b\x21\x7d\x1a\x07\x2b\xf4\xea\xf5\xf8\x37\x3f\x19\xb8\x15\xdd\x32\x31\x89\xbf\x45\x58\xb5\xb7\x58\xfd\xea\xd5\x19\x84\x2b\x86\x09\xeb\x83\x33\xd4\x08\x4f\xdd\xd7\x0d\x0d\x3e\x7d\xf0\x7f\x83\x9c\x3f\xef\x66\xdd\xd6\xa3\x04\xd5\xa6\xc9\x2a\xfe\x25\x47\x09\xb1\x9f\xf4\x5e\x64\x35\xed\x63\x2b\x8b\x77\xa6\x6c\xa3\x8c\x30\xb6\xb2\x7c\x53\x42\xe2\xa9\x92\x54\x82\x85\xd6\x34\x56\x5b\x42\x2a\x5b\xa9\x3a\x2c\xc0\xeb\xf8\xf5\x3c\xc1\xc1\xec\xed\x3e\xef\xfb\xa9\x84\xc6\xc6\xc5\xd3\xf4\xd2\xfe\x30\x38\xf2\x55\xd0\xeb\x51\xe3\x4e\x82\x4c\x72\x29\xf3\xbb\x78\x2b\xa1\xea\x71\xcb\x83\x2b\x4d\x2a\x84\x7b\x9f\x22\xbf\xa9\xee\xfc\xc3\x80\xb7\xc6\x2d\x86\x4b\x57\x87\x60\xe2\x6f\xbe\x78\x5e\xdf\x07\xc2\xfd\x9b\xd7\x1d\xff\x3c\xf8\x48\x08\x1b\x6c\xc9\x1c\xcc\xff\x42\x38\x25\xe5\xdb\x71\x58\xef\x0e\x41\x27\x78\xdb\xfc\x7d\xeb\x3e\x12\x72\xf6\x46\xac\x1c\x1e\x3b\x33\xfc\xe3\x1e\x85\x7f\x8b\x20\x38\x0f\x64\xfd\x5d\x7b\xe6\x2a\xa1\x7e\xfb\x51\xcb\xe1\xc0\xab\x04\x9d\xe6\xb0\xea\x1a\xa7\xeb\x04\x3f\x9f\x63\x7e\x22\x11\x57\x09\x4e\x53\x77\xbe\xe3\x30\x89\x24\xac\x74\x4a\x9d\xd2\xbd\xc2\x8f\x60\x6b\x92\x78\xa1\xe5\xc1\x25\x82\xce\xd2\xc2\x3e\xae\xbb\xd6\x63\xdf\xd0\x6b\x12\x67\x33\x27\x12\x7a\xce\xac\xfa\xa2\xf1\x28\x8c\x20\xfe\x6b\xff\x34\xb3\x6d\x57\x08\xfe\x3d\x6f\xe6\xfc\xc9\xca\x20\x2c\x2f\x3f\xa1\x9e\xfd\x56\x80\xa0\xfd\x35\xfd\x7b\x57\xb2\x12\xa1\xad\xfd\x8d\x2c\xd7\x43\x03\xc2\x61\x89\x11\xe1\x26\x1b\x19\xc2\xdc\xf9\x2f\xe8\x9a\xe4\x0c\x82\xd6\xd5\x99\x4f\x0e\xdd\xec\x66\x10\xfb\xa3\x6a\xd7\xcd\xb0\x32\x16\x88\x7b\x7d\xfb\xc2\xe0\x2a\x16\x38\x0f\x39\xe9\x68\xbd\xe4\x20\xe8\x1c\x3f\xab\x94\x77\xf0\x16\x41\xc5\xc4\xcf\xe0\x93\x54\x36\x0b\x2d\xcd\xed\x19\xcf\x03\x67\x11\x74\xed\x0b\x2e\x9c\xe5\x9a\x49\x60\xc4\x13\x03\x96\xdb\xba\x10\x7a\x3f\x45\x5f\xf5\x9e\x68\x48\x70\xc8\xf9\x74\x28\x40\x52\x84\x10\xc4\xf3\x72\xdf\x92\x27\x06\x04\xe5\xc8\xa0\x9e\x9b\xc9\xf3\x09\xa1\xab\x16\xc8\xb9\x58\x4b\x11\xac\x7a\x8a\x5c\x8a\x24\x56\xb0\x15\xff\x2f\x0b\xbf\xfb\xa8\x94\x33\x98\x70\xfc\xdc\x35\x7e\xb1\xc5\x84\xaa\xd3\x67\x95\x1e\xec\xe1\x60\xc3\x09\x4f\x75\x13\x86\xfb\x19\x83\x37\x6e\x0e\xed\xe6\xbf\x02\x59\x28\xe6\x2e\xff\xda\xb9\xe8\x1a\xc1\x31\x55\x24\x61\xf9\xaf\x2c\xc2\x40\x7d\xd4\xc5\x0d\x1c\x3b\x09\x3d\x7b\x4e\x15\xfd\x37\xf2\x6f\xb3\x53\x7f\x34\xe4\x41\x10\x9d\x57\x5c\x38\xf5\x8e\x2b\x61\x55\x5f\x78\xb3\x6c\xa7\x07\xe1\x9c\x1b\x87\x5e\x90\xb4\x27\xdb\x19\xb9\x4b\x1c\xaa\xd1\xb1\x01\x84\x33\x3b\x45\x8f\x09\xdd\x35\x20\xb4\xae\xfe\xce\x5b\xee\x94\xf4\x7f\xc3\xb5\x93\xf9\x3c\x7e\x59\xe7\xff\x05\xde\xf4\x5f\xc9\x05\xef\x04\x09\x65\x3b\x9b\xd1\x56\xd4\xc2\x20\x59\xf2\x84\x52\xde\x05\x69\x1a\x87\x84\x4d\xcb\x99\x08\xb1\x5a\x06\x97\x56\xce\x7c\x54\x99\xb4\x98\xe0\x50\x30\xba\xf0\x67\x5d\x34\xe1\x70\x88\x8a\xe4\x32\x47\x1b\x02\xf2\x8f\x5d\x17\xfd\xe0\x41\x68\x6f\xe2\xbd\x7c\xef\xf8\x73\x42\xb3\xe4\x1d\x27\xd9\xd5\x8b\x09\x12\xb2\x53\xf6\x65\x4b\xa9\x12\x82\x0e\x87\x2d\xb3\x30\x99\xc9\x86\xb5\x7e\xbd\x47\x4e\x57\xcc\x20\xb4\x35\x64\x6e\x4d\x3c\x3f\x91\xd0\x76\x21\xfa\x3d\xe7\x09\x7e\x42\xa9\xa2\xda\xf7\xc9\x02\xfc\x04\xb5\xd3\x36\xb6\x5b\x62\x5a\x19\xf0\x9d\x2f\x5e\x7b\xbe\xfe\x23\x83\x37\x85\x57\xa4\x47\x7e\x0c\xb2\xc1\xf1\xc6\xd9\x0d\x8a\x0f\x8c\x09\x3f\x5e\x1b\x6c\xde\xc9\xf1\x87\x01\x33\xd5\xff\x18\xf7\xa1\xd3\x84\xbd\x51\xd5\x83\x71\xfe\x6b\xd8\x60\x1e\x61\x97\x1b\x1a\xbf\x8a\xa0\x93\xde\x31\x7d\xd5\xf0\x7c\xc2\x44\xd7\x2b\xe7\x4b\xf4\x92\x59\xe3\xe5\xe6\xa4\xfe\x5f\xcf\x34\x33\x09\xfe\x4b\x96\x0a\x55\xdf\x31\x27\x34\x07\xbe\x8e\xbd\xa4\xed\x49\x08\x7a\xbd\x2c\x53\x5f\xfc\x2a\xe1\x43\x68\xd7\xe6\x39\xdd\x11\x84\x76\xa1\x4b\xa5\x5e\xa9\x42\x84\x0b\x0d\x33\x6e\xd7\x6d\xb9\x45\x88\xb7\x48\x7d\x27\x21\x7b\x80\xa0\xde\xbc\xfe\xf5\xdc\xd3\x21\x84\x85\x29\x7f\x10\xa3\xb4\x85\xa0\xcf\x61\x31\x21\x22\x6b\x36\x21\x61\xf1\xb5\x6a\xe1\xd8\xdb\x84\xb5\x96\x75\xdb\xc4\xea\x93\xd9\xa0\xb8\x65\x7d\x29\xf7\xab\x83\x84\x3b\x32\x05\x29\xf2\xe6\xe2\x84\xa8\x3a\xb5\x4b\x17\x2c\x56\x12\x4a\x4f\x3c\xe0\x13\x8c\x58\x42\x38\xf9\xd0\x6f\xcf\xae\x24\x09\x36\xc4\xf2\x7c\x13\x16\xb0\x79\x57\x82\xc7\x7e\x1f\x97\x5a\x8f\xbd\x2a\x4f\x3d\x38\xbc\xab\xf9\xa9\x1e\xe1\x22\xbf\xb2\xea\x92\x5e\x69\xc2\xc5\x00\x79\x05\x47\xd1\x5f\x0c\x16\x89\x5b\x27\xa8\x7a\x5d\x24\x4c\x09\xe2\x11\x1f\xe6\x3f\xc3\xc2\xab\x78\xbd\xc0\xe9\x13\x35\x08\xad\x3d\xfd\x3b\xbb\xfb\x06\x19\x28\xad\xf8\x2e\xca\x54\x6e\x25\xec\x57\x1c\xf0\x75\xec\x4b\x22\x64\xf3\x2e\x31\x71\x48\xda\x40\x38\xd1\xfd\x7b\xa3\xf0\x76\x7e\x82\xe9\xab\x53\xfc\xdf\x46\x87\x19\x34\xf1\x7e\x1a\xfa\x11\xa6\x4b\xf8\x16\xab\x79\x2b\xf7\x9e\x13\xe1\xc7\xc5\xd4\xe8\xef\xb3\x94\x09\xed\x4a\x29\x0d\x12\x8f\x35\x08\x05\x7b\xda\xba\x8d\x7f\x88\x10\x1e\x84\x9a\xbc\xbb\x72\x6d\xec\x6f\x31\x54\xc7\xd5\x32\xdd\x9d\xad\x14\xbe\xd8\x55\xae\xe2\xab\x49\x48\x3c\x70\x6e\xf9\x8a\x4f\x2a\x84\xb2\xb5\x4f\x36\xdf\xb9\x5f\x49\x98\x9c\xf5\x70\xee\x2c\xf1\xe9\x04\x9d\x02\xc3\xed\x0f\xc2\xcf\x12\x42\x06\x77\x3e\x9e\xf4\x79\x03\x1b\x9a\x8f\x89\x84\x86\xd5\x6b\x12\x42\xf7\xea\x7d\x76\xc4\x4d\xc2\xa4\x15\x9b\x24\xea\x15\xee\x12\x36\x8a\x2b\xf1\x4e\x35\xd4\x21\x3c\xd1\x5b\x94\x1a\x3c\xf3\x17\x83\x8c\xf2\xda\x39\x15\xee\x19\x04\x95\x8c\x61\xb1\x60\xcb\x62\x1a\x2f\x1a\x3e\x9c\xf7\x6e\xbc\xda\xc2\x86\x15\x5b\xf7\xa6\x6d\xb9\xb7\xf7\x5f\x88\xe3\xf0\xe6\x9f\xbd\x42\x87\x50\x99\x3b\x2f\x4b\xde\x21\x8c\xd0\xdb\xdc\xd7\x18\xb9\x87\x87\xe0\x7a\xe4\xdd\xbc\x26\x19\xc5\x7f\xa1\x7f\xff\xcd\xc8\x77\x56\x3d\x0c\x26\x35\xf9\xe9\xbe\x38\x3e\x99\x90\x7f\xe2\x77\x94\x40\x9e\xfe\xff\x0a\x7f\xae\xa5\xde\xb7\x0f\x07\x11\x16\xec\xfc\x62\xbc\xe9\xfc\x69\xc2\x82\xce\x49\xd6\x2a\x0b\xd3\x09\xa2\x4e\x85\xcc\x19\xff\xf8\x7f\x61\x42\xcc\x5c\xde\x32\x61\x55\x82\xc1\xa5\x14\xcb\xb3\x89\xb7\x09\x01\xbb\x92\xe5\xd3\xd7\xdd\x21\x6c\x1e\xe8\xb8\x5a\x23\x16\x4c\xf8\xbb\x2f\x73\xc9\xf1\xf8\x10\xc2\xf6\x20\x8e\x8a\x4d\x22\x93\x08\x1b\x8e\xdf\x2d\x88\xeb\x2d\x60\xe1\x16\x3e\xb8\xee\x9c\x37\xc8\xc0\xa0\x91\x77\x65\xfb\xd8\x1d\x39\x75\xa8\x60\xe6\xe9\x46\x7b\xc2\x76\xde\xf0\x59\xc5\x62\x6e\x04\xf1\x13\xfa\xa6\xdb\x0d\xb7\x10\x9c\x7b\x85\x69\xf0\x99\xd7\xd8\xd3\xbd\xc4\x6a\x32\xaf\x23\xe1\xa0\x3d\x67\xd9\xc6\xe0\xcd\x84\xde\xe4\x61\x9f\x67\x53\xa7\x13\x84\x13\x6b\xca\x4e\x74\xe4\x12\xae\x1f\x34\x9c\x38\x35\xc4\x90\x0d\x53\x38\x94\x0e\x4c\xb5\x7b\xc4\xe0\xe3\xa6\xd9\xde\xc6\x96\x93\x09\xc5\xf6\xe9\x7b\x17\x95\xd9\x11\x6e\xd8\xd7\x17\xb9\xce\xeb\x60\xf0\xdb\x67\x6e\x74\x90\xf0\x44\x1a\xc7\xa3\x69\x87\xa2\xd6\x71\xb7\x32\x70\x1b\x3d\xfe\x45\xbe\xf6\x2a\x83\xf0\x5f\x19\x65\x9f\xcf\x95\x11\xc4\xb2\x13\xb2\xfe\x83\xf0\x7a\x9e\x0d\x33\x39\x9f\xb0\x15\xfd\xdd\xb1\x3e\x4d\x67\xdd\x08\xb9\x85\xee\x13\x83\x4e\x1d\x63\x8d\x97\x1f\xc3\xd6\x4d\x5f\xdd\x83\xd9\xce\x68\xe8\xd5\x5d\x30\x1b\x5b\x77\x38\x6d\x16\xde\x9b\x2b\x28\x44\xb8\xa2\xb0\xce\xb3\x48\x4b\x83\xc0\x3f\xe2\x74\x45\x61\xad\x34\xe1\x6d\x9f\xe5\xc6\xed\x65\xdf\x18\xa4\xf8\x5f\x31\xe4\xcd\x9d\x4e\xb8\xfb\xf5\xeb\x07\x91\x12\x39\x02\xf7\xd7\xaa\xcb\x6b\x54\x85\x09\x4a\xbe\x2a\x67\x0e\xff\x39\xce\x82\xb5\xc2\xc2\x82\x19\xa6\xb3\x08\x73\xc3\xcf\x4f\x2a\xd0\x16\x66\x43\x9a\x39\x8f\xc0\x7c\xeb\x56\x06\xf1\x75\xdd\xc7\x04\x6b\xeb\x09\xb5\x3c\xbb\x42\x8e\x2f\xb8\x45\xb8\xd1\x9a\x69\x78\x47\xeb\x09\xe1\xd3\x79\xd5\xb9\x35\x5a\xa6\x84\xaf\x56\x97\xd2\x32\xbb\xb6\x12\x9e\x04\x0e\x38\x9c\x29\x5e\x44\x38\x22\xbd\x60\x4a\xcc\x51\x21\xc2\x29\x07\x97\x1f\x01\x1c\xae\x84\xf9\x62\x77\x3f\xff\x16\x55\x25\x94\x6e\x59\x76\x9d\x12\xe7\x11\xea\xfe\xa8\xeb\xef\x99\x79\x83\x90\x35\xb8\xc6\xe9\x94\xc6\x0d\xc2\x51\x8d\xdf\x37\x8b\x53\x5f\x32\xe8\xba\xb4\x53\xe2\x73\xa8\x14\x8d\x23\xed\xfb\x20\x0d\xf1\xe5\x31\x98\x58\xef\xb5\x7c\xf4\xf8\x01\xd6\x38\xfa\x13\xef\xe4\xf3\x9b\x86\x11\x3a\xf2\x43\xa4\xe3\xcd\x7d\x08\xeb\x12\x8b\x1e\x3d\x15\xe0\x25\xec\xee\x1c\x35\xe9\x16\x5b\x4b\x48\x5a\xff\xd0\xf5\xe1\x44\x22\x14\xbd\xf8\xde\x7f\xe6\xc1\x42\x42\x7d\xc5\xad\x95\xf2\x5d\x81\x04\x93\x0e\x97\xac\xf6\xb9\xa7\x08\x17\x6f\xbf\xcb\xdf\x6f\x74\x86\x41\xca\x8f\xed\x5e\xc7\x76\x2c\x26\xbc\x0e\xd7\x08\x9c\x29\xe4\xcf\x06\x8f\xc7\x26\x0b\x2c\x2b\x84\x09\x4f\x6e\x56\x71\x55\x39\x97\x13\x52\x5f\x1a\x2c\x2a\x38\xd8\xcd\x40\x64\x8f\x63\xdf\x5c\x8d\x04\x82\x90\xac\x0f\xa3\xdb\xbf\x95\x70\x6e\x66\x45\xf6\x34\x23\x2e\x82\xbc\x4b\x56\x70\xce\xd3\x24\xc2\xf3\x57\x7f\xde\xaf\xfd\x36\xcc\xa0\x47\xf4\xc5\xd1\xcd\x57\xe6\x13\xbc\x3d\x1d\x9d\x27\x3d\xef\x67\xc6\xe1\xf6\xab\x3b\x2c\xed\xec\x22\x82\x47\xf2\x60\xef\x72\xa7\x1c\x82\xd9\x89\x3d\x5f\xdf\xae\x9c\x48\x10\x13\xbc\x70\xab\xae\x49\x9f\xf0\xd3\xde\xdd\x29\xe8\xd6\x59\xc2\xec\x2d\x81\x05\xe7\xfd\xd3\x08\x33\x92\x38\x3f\xca\xca\xfb\x12\x8c\xc4\xeb\xa3\xa4\x4a\xa3\xd8\xf0\xfd\xed\xb6\xfa\x01\xf9\xfd\x84\x75\x23\xae\xcb\x8b\xed\x53\x09\xaa\xfb\x14\x25\x9e\x9c\x3c\x4b\xb8\x6d\xef\x57\xbd\x3c\x2a\x9b\x05\x0b\x81\x07\x56\x4a\x39\xb9\x04\xe7\xf7\x2b\xaa\xec\xa3\xba\x19\xec\xde\xbd\x2b\x22\xe0\xad\x19\xe1\x64\x64\xfb\xb4\x3d\x65\x17\x08\x37\xe4\x9a\x0b\x05\x26\xe8\x13\x9e\xc6\xe8\xdc\xd6\x78\xba\x8e\xf0\x7e\xfa\xef\x55\xf2\x97\x35\x09\x6f\x15\x4f\x72\x94\x9e\x9f\x4d\x88\xde\x92\x7e\x55\x6a\xfa\x28\x83\xd9\x8b\xfc\x79\xb7\x76\x8a\x11\x8e\x1f\x76\xda\x50\xed\xd5\xc5\xe0\x89\xf2\x75\xf5\xe7\xc6\x2e\x04\xd4\x7e\x83\xc0\xae\xa7\x84\xde\x90\x41\x9b\xa1\x4f\x37\x58\x30\x09\x76\xbf\x95\xb3\xfa\x29\x21\x47\xc4\x3c\x7f\x24\x6c\x3b\xa1\xa3\xeb\x42\x76\x7b\xa1\x33\x21\xad\x31\xcb\x64\x59\x8c\x23\x61\xd3\xd7\x7d\xf6\xab\x55\x3b\x19\xe4\xee\x68\x17\x73\xa8\xbd\x4e\xd8\x9c\xfb\x9a\x39\x21\xf6\x8b\x41\xb1\xa2\x83\x99\xdd\x91\x9d\xf4\x0f\x38\x4c\x38\xf5\xbe\x3c\x77\x0a\x61\xe9\x4d\x75\x0d\xee\xb1\x17\xbd\xcd\xfa\xcb\x1d\x4a\xd2\x2b\x09\xaa\x23\x5b\x1d\xd6\xa8\xb9\x11\xea\x36\xd8\xcc\xba\x78\xca\x8a\xb0\x4e\xf8\xee\xc1\xa5\xdf\x46\x18\xac\x3b\xa6\xa1\xc6\x25\xc7\x41\x50\x34\x5b\xf5\xca\xa2\xa4\x8a\x85\x55\xf7\xce\x4e\x36\x1f\xc3\x74\xe3\x47\x1a\xff\x61\xf8\xf7\x83\x88\xf7\x03\x0f\x59\xf8\xb2\xbf\xc8\xb0\x47\xa1\x9a\x05\xdd\x3b\x35\x62\x23\x9d\xb9\x04\x7d\x07\x2d\x77\xdd\xf0\x57\x2c\x48\xb5\xb9\xdd\xed\xb6\xca\x21\xbc\x7d\x31\xb3\x4b\x65\xce\x59\xc2\x05\xed\xe7\xab\x2c\xec\x5b\x18\xe4\x87\xbf\x7b\xb4\xa4\xb6\x94\xc6\xe1\x9f\x75\x2c\xdf\xf0\xa8\x1c\xc1\x30\xc1\xc1\x40\xfe\x77\x2f\x81\xfb\xc0\xe3\x8d\x6b\x02\xcb\x09\x72\x9e\xbc\x57\xdf\xa4\x89\x10\xe2\x7c\x74\x5f\xf1\x9a\xe4\x12\x3a\x24\xee\x9e\x5c\x1a\x73\x89\x05\xd9\x79\x7a\x46\xda\xa1\x0f\xd8\x46\x4a\xb9\xc3\x7c\x2d\x25\x16\x84\x8b\xfb\x43\x0e\x77\xb6\x17\x12\x3e\xf5\xf2\x89\xe9\xc8\xcd\x26\xdc\xe3\xa8\x71\x32\x55\xbf\x43\x10\x15\xb4\x9e\x35\x7d\xfa\x5e\xb6\xf2\x3f\xa8\x09\x48\xd9\xc0\xdb\xce\x4b\x10\x9f\x69\x71\xbf\x29\x3b\x89\x90\x4c\x91\x29\x0e\xda\xc9\x04\xdf\x51\x19\xbe\x73\x41\x05\x84\x44\x61\x8d\xd8\x70\x7f\x03\x82\x93\x67\x90\xf6\x3c\x6e\x73\x82\x8f\x0c\x57\x93\x73\x63\x01\x61\xd4\x32\xd3\xeb\xbe\x42\x3e\x0d\x2e\xb6\x5f\x55\x17\x5a\xc8\xc2\x6b\x9e\x9b\x7b\xff\x9b\xfc\xe5\x95\x64\x6c\xda\xee\x13\x3c\xbf\x57\xb7\xae\x1f\x83\x6a\xd0\x6f\x81\xff\xca\xff\x8c\xd6\x5d\xf0\xb9\xe9\xfb\xb9\x88\x60\x9b\x50\x7d\x86\x33\xf3\x0e\x21\xfc\xfe\x66\xc5\x09\x57\x2b\x08\x66\xb1\x36\x3d\x0b\x22\xca\x09\x3e\x9d\x97\x0e\x70\x8e\x95\xa3\x3b\x6d\xb4\x8c\xfe\x7a\x10\x56\xed\x3b\xf2\x63\x22\x47\x28\xc1\x54\xa2\xc7\x6d\xab\xca\x41\xb6\xa2\x57\x58\xd4\x3b\xbb\x64\x2b\xa1\x84\xcf\xd3\xd6\x30\x22\x8c\x50\x65\x66\x32\xa1\x27\xd0\x82\x20\xb3\x4c\x43\xb4\x5e\x22\x82\x50\xdf\xa6\xe8\xfe\x30\x2a\x99\x05\xf9\xc1\xec\x89\x62\x6a\x2e\x84\x19\xa3\xbb\x43\x67\x7c\x5d\x44\x58\xf1\x42\xb1\x66\xf2\x9a\x38\xc2\xbe\x67\x0f\xa7\xcf\x98\xa4\x41\x70\xd2\x9d\x67\xb9\x54\x53\x8f\xe0\xde\xc2\x21\xa5\xf5\x4b\x8c\x70\x2d\x55\xd0\xae\x67\x41\x05\x41\x6c\xaf\xa7\xb4\x93\x78\x35\x61\xe5\x71\xae\xe4\x63\xce\xfe\x2c\xfc\x78\x74\xfa\x76\x82\x47\x1a\xa1\xab\xd1\xb8\x2e\xb8\x23\x8f\x70\x52\xee\xe0\xd5\x5b\xf7\xf2\x09\x4f\x14\xec\xf7\x8a\x09\x66\x11\x4c\x98\x24\xbb\x65\x8b\x53\x09\x93\xee\xea\x5b\xee\xd7\x2a\x27\xb4\xdf\xb2\x3d\x11\x36\x06\xdb\x2b\xa3\x36\x85\x01\x0a\x84\xf4\xaf\x4f\x57\x48\x7c\x7a\x55\x82\xa2\x27\x8e\x15\x83\x62\x33\x69\x1c\x77\xa6\x9e\x3a\x99\x16\xb3\x83\x85\x86\xdf\x9c\x8b\x74\x37\x3f\x2b\x01\xf7\xf3\xcb\xfe\x99\xf3\xb5\x09\x06\x0f\x72\x7e\x2a\x5e\x5f\x48\x88\xbe\x7d\xfe\xc6\x95\xf0\x1e\x06\x2f\x54\xe3\x72\xf6\x7c\x90\x64\x2b\x9d\x77\xd7\x3d\xcf\x15\xfb\xf3\x2f\x38\x90\x53\xfb\x84\x43\xcb\xe8\x1f\x78\xd7\x77\xad\x22\xd6\xf6\x2d\x83\x73\xeb\xdc\x7f\xf4\x70\x2c\x21\xf8\x2a\x89\xec\x8c\x4f\xda\xcd\x06\xd7\xd9\x0d\x73\x64\x06\xd5\x09\x1d\x85\x17\x57\xa7\x0c\x73\x12\x36\xde\x0c\x7a\xe3\x91\xbf\x88\x0d\x81\x0e\xac\x99\xac\x43\x5c\x04\xc5\x75\xde\x7c\x2b\xc6\xee\xb6\xbf\x74\x12\x2f\x7c\x9c\x71\x9d\x20\x2b\x23\x6d\xc3\x67\x57\x42\x30\x57\xf2\xa8\xc8\x5f\x73\x80\x85\xb0\xbc\x69\x93\xca\xf6\xe6\x10\x34\x63\x57\x9b\x7f\xfe\xb2\x85\xb0\x38\x7c\x56\xd9\x03\xa5\x2d\x2c\xe4\xd8\x87\x8b\xbd\xcf\x75\x27\x90\xd9\x9f\xb0\xfa\xad\xd6\x84\xeb\xbd\x0a\x6d\x87\x9e\xee\x21\xbc\x73\xdf\x3c\x2f\xcc\x43\x85\x20\xf6\x25\x22\xeb\xeb\x7a\x25\x82\x3a\xb7\x72\xf5\xc4\xaf\xa3\x0c\x3c\xb6\x9e\x90\x99\xbc\x83\x9f\xc6\x71\x3f\xe4\x59\x1a\xd7\x81\x7a\x66\x1c\x9f\x0d\xba\x1e\x09\x05\xa4\x13\x42\xff\xbe\xbe\xf5\x1f\xf2\xb9\x3e\x85\xfa\xf4\xef\x26\x94\xae\x2c\xbb\x59\x33\xa3\xb1\x04\xdf\x78\x86\x14\x9d\x53\x96\xd3\x3f\xf0\x5e\xf4\x4d\x9b\x49\xaf\xca\xbf\xa0\x26\xcd\x1f\x3a\x83\x83\x8b\x0d\x23\xf3\x52\xf5\xfa\x1e\x33\x04\xa3\x39\xda\x55\xfe\x59\x69\x04\x81\x83\x77\xf7\x6a\x17\x1c\x22\xc4\x73\x96\x69\xad\x75\xdf\x4d\xd8\x76\x88\xd1\xbf\x13\x78\x8c\x85\x1a\x35\xd3\xb5\x25\xc7\x13\x08\x73\x97\x56\x89\x94\xb7\x1e\x64\x41\x96\x07\x52\x3d\x81\x0b\x08\x13\x7f\xd4\x9f\xe2\x51\xb6\x20\xdc\x1b\x3a\xff\xfb\x93\xa0\x26\xe1\xfc\x9a\xca\xb3\xf5\x07\x37\x12\x34\x02\x36\xc9\xa6\xd8\x6a\x10\xbe\xee\x9d\xd1\x78\xec\xaa\x3a\x61\x76\x42\xf1\x1f\x73\x83\x5b\x04\x23\xa9\x44\xc7\x7d\x3b\xed\x08\xfb\x63\xae\xf9\x6f\x4d\xda\x44\xc8\xec\x0c\xe1\x3e\x1f\x03\x66\x1c\x87\xe7\x6c\x4d\xf1\x2b\xa9\x2d\xc1\x76\x21\xce\x6a\xd9\x97\x32\x84\x2d\x4d\x13\x96\x67\x76\xaa\x10\xec\xaf\xad\xfe\xcc\xf3\xa3\x87\x41\xde\xe3\xc0\x8e\xf5\x73\x5f\x32\xf8\xd4\x3a\xc9\x75\x9d\x73\x11\x8d\x83\xd6\x29\xb8\x9f\x35\x2d\x22\x04\x8e\x3a\x96\xfc\x57\xea\xf4\xb2\x35\xd2\x93\x39\xd8\x70\xe0\xd0\xee\xd8\xde\xbf\x4e\xff\x82\x45\xa7\xc0\xb5\x7d\x5b\xb2\x4a\x50\x35\x6b\xeb\xf9\x1e\xd1\x65\x84\xe5\xdb\x3d\x4f\xb1\x54\xd3\x4a\x30\x18\xd4\xa8\xf9\xed\x94\x1b\x8d\xe3\x88\xe9\xef\xfe\xab\xcb\xa7\xb3\x21\xce\x71\xa4\xea\x4f\xa8\x2c\xe1\x2c\x07\x57\x86\xdc\x75\x15\xc2\x5a\x91\xf3\xea\x3e\x59\x72\x84\x42\x4d\xa1\xea\xba\xc4\xbb\x2c\x14\x9c\x6f\x28\xba\xa2\xf1\x96\xc0\x1d\x32\xca\xba\x3c\x06\x6d\x6f\x96\xbc\xa7\xea\x53\xc2\xfd\xa3\x41\x9b\x4e\xad\xb7\x24\x4c\x4f\x9b\x51\xfd\xf5\xe2\x6c\x36\xcc\x9c\xd3\x1d\x53\xc6\x99\xcc\x1a\x2f\xcf\xb3\x9e\x72\xbd\xf0\x13\xfe\x17\xf8\xb3\x07\x52\xcb\xa7\xdc\x2a\x19\x5c\x96\x78\x54\xeb\x83\x36\x61\xe9\x40\x52\xce\x05\x0e\x86\xe0\x69\x7c\xf6\x45\xee\x77\x75\x16\xf8\x7d\x9d\xb4\x0b\xa6\x5c\x21\xa8\x66\x04\x7f\x15\xd8\x54\x4b\x30\xd7\x11\xd8\x6b\x78\xec\x3d\xe1\x77\x44\x7c\x80\xc5\xa3\x72\x42\x5a\xd6\x4f\x11\xef\xb8\x29\x84\x9c\xbb\x7a\x3b\x6c\x5a\x39\x08\x9c\x1f\xe7\x6f\xb0\xf0\x9d\xcc\x56\x46\x2f\xdb\xcc\x19\x55\x31\x26\x0c\x30\x92\xd9\xcf\xf8\x8d\xd9\xca\x93\xa9\x57\x84\x9f\x6d\xe6\x21\x70\x67\x84\x84\x5d\xe9\x9e\xc6\x06\xff\x88\xa3\xac\xd8\xb6\xdf\xcc\x3f\xf0\xea\x28\xe2\x0a\x5e\xf5\xfe\x0b\x51\x52\x55\x17\xea\x42\xa6\x13\x1e\xdf\xf1\xb8\x24\x78\x6f\x15\x61\xaa\x40\xec\xe4\xfc\xac\x15\xff\xc2\x09\x0b\x59\xb3\x5d\x1d\x22\xff\x82\x91\xaa\x3e\x67\x19\xd7\xfb\x12\xfc\x9d\xff\xd9\xb6\x30\xa2\xac\x04\xfa\x9a\xaa\xb6\xdc\x93\xad\x68\x1c\xe1\xc6\x39\xf7\xf9\xc6\x2e\xe8\x1f\x0c\x56\x8e\xfa\xf4\x9b\x10\xc2\x4e\xca\x29\xb6\x1d\x9c\x41\xf8\x7c\x6c\xed\xdd\xbd\x42\x2e\x04\xc3\xfa\x4d\x87\xf7\x44\x9b\x11\x02\xab\xba\xbc\x85\x66\xf2\x13\x96\x54\x3a\xe8\x1b\xc7\xc8\x12\xca\xbc\x4e\xdb\x9e\xbb\x9d\x46\xf0\xca\x54\x98\xb9\xfd\x76\x0a\x41\x4a\x28\x57\xc2\xc9\x71\x0e\xc1\x91\x47\x45\xee\x28\xd7\x55\x42\xfe\x7d\xc9\x87\x17\x8a\x33\x09\xdf\x58\x4b\x8f\xee\x1c\x32\x20\x58\x5c\xc8\x55\x31\x5b\x37\x91\x0d\xa9\x95\xbf\xfb\xae\x2f\xe3\x65\xc3\xed\x0f\xcd\xe7\x0b\x8f\xce\x26\x74\x14\xbb\xb8\x0f\x46\x96\x12\xbe\x59\xa7\x2d\x74\x7e\xce\x41\x83\xc7\xae\xfe\xbc\xbc\x2c\x88\x05\xf1\xe6\x17\xcd\xcf\x13\x07\x18\xc4\x2e\xa8\x99\x7b\xf5\xd8\x62\x1a\xc7\xc3\xab\x16\xf1\x53\xd6\x3e\x67\xf0\x40\x98\x6f\x70\xea\x5d\x03\x42\x71\xf3\xc7\x6e\xfd\xa5\xbe\x6c\xe8\xae\xd0\xbf\xfe\x30\x32\x92\x85\xe6\xf8\x95\x62\xcf\x85\x85\x09\x55\x1b\x3f\xb7\xf9\x4a\x9c\x62\xc3\xeb\x25\x1a\xde\xbb\xc7\x40\x66\xa7\x3f\x1f\xe6\x9b\xc3\x86\xcc\xf8\xcf\xe6\x21\x32\x73\x08\xdc\x02\x89\x53\xc2\x27\xce\x21\x9c\x9a\x11\x7c\x83\x5a\x04\x08\xd7\x9e\x79\xc7\xcf\x08\x8b\x66\xc3\x1d\x73\xde\x84\x4e\xb5\xcb\x6c\x08\xfb\xb0\x94\xf5\x1f\x62\x97\xa5\xee\x5c\xfc\x8c\x9b\x20\xe1\x7b\xb0\x52\x7e\x91\x2d\x1b\x16\x6e\x17\x0a\xf8\x20\x2b\xcc\x06\x57\x83\xe8\x90\x2d\xab\x75\x09\xe0\x3a\x99\xb6\xdf\x79\x2d\x41\x17\xfd\xc1\xeb\xce\xad\x61\xc3\x8d\x58\x7b\x31\xd5\xb0\xcb\x04\xf1\xa1\x4b\x09\xd3\x95\x73\x09\x92\x8d\x77\xad\x27\x7a\xec\x25\xbc\x56\x6b\x8d\xd4\xf0\x5e\x40\x10\x89\x7e\xfa\xd8\xfe\x82\x11\x61\x24\xbe\xbf\x6b\x7f\xa5\x22\xa1\x53\x3a\xad\xfe\xd1\x9e\xe5\x84\xab\x39\xfa\xab\xe7\x1d\xe7\x24\x1c\x10\x91\xca\xbc\x1f\x69\x44\xe8\xfa\x16\x9f\xf4\x7e\xe1\x77\x06\xeb\x26\x04\x7e\xd7\xd3\x31\xa1\x7f\xe0\xe9\xae\xe6\x91\xbd\xea\x9b\xff\x05\xdd\x49\x1c\xef\x8c\xfa\x79\x09\x6b\x6f\x56\x05\x9f\x6d\x3b\xc3\x42\xe5\xe6\x2c\xa3\xea\x45\xc6\x84\x6e\xa1\x04\x9d\x7e\xcb\x09\x84\x0b\x8e\x5e\xd6\x97\x72\x78\x08\xac\x8d\x89\x67\xbd\x4e\xd7\x10\xbc\x94\x2a\x7d\x2e\xe9\xd5\x12\xaa\x02\x63\xbf\x6d\x5a\x5e\x4b\xe8\x31\x12\x9f\x9a\x67\x54\x4b\xf8\xb8\xb9\xf1\xdd\x22\x83\x5a\x02\xe7\xe9\x18\xb5\x8d\xbe\xe7\x08\xee\xed\x01\x32\x3e\x5b\xd3\x59\xd8\xc8\x95\xe8\x6e\x11\x7f\x81\xa0\x36\xd3\xb9\x6e\x87\xe6\x39\xc2\xc6\xef\x0f\x47\xdf\xe7\x5d\x20\x78\x67\x37\x4e\x51\x69\xb3\x24\x9c\xf4\x79\xaf\xfc\x70\x29\x1f\x41\xf4\x56\x8f\xc1\xd7\xec\x45\x84\xbf\xf1\x27\xee\x6c\xe3\xd5\x63\x43\xbb\xfb\xfb\x5f\xcd\x42\x12\x84\x19\xa1\xab\x2b\x78\x44\xcb\x59\xd8\x60\x5d\xf6\xf1\xe5\xce\x7a\x06\x9a\x51\x69\x59\xda\x77\x7e\xb1\x61\x4d\xd0\xb6\xc5\x8a\xb3\x7f\x33\x78\x2d\x60\xdf\xa9\x16\x73\x81\x90\x1a\xab\x28\xed\x58\xb6\x8a\xf0\x6a\xb5\x44\x13\x4f\x69\x29\x21\xa8\x3c\x69\xb1\xee\xbb\xe5\x6c\xe0\x7d\x76\xad\x5c\x24\xe0\x22\xe1\xf6\xb3\x89\xd2\x4b\x75\x7c\x08\xaf\x7f\x6f\xdf\xff\x5f\xb9\x6b\x35\xe5\x59\x7f\xcc\x76\x02\x4b\xc4\xff\x64\xef\xa7\x0c\xc2\x64\x47\xa9\xdd\x1d\xd3\x17\xb2\x21\x36\xef\x0f\x77\x65\xfd\x4c\xc2\x8c\x59\xe7\x8d\xce\xd6\xcd\xa2\x41\xdd\xcf\x53\x26\x72\x6a\x10\xe4\x92\x38\x06\x15\xfd\x5a\x18\x48\xd7\xde\xd7\x17\x0f\xb0\xa4\x7f\xe0\xfd\xaa\xa7\x47\xda\x1b\x54\xff\x85\x95\x4b\xef\x39\x9e\x38\xd3\x50\x32\x8e\x6b\xb2\x6e\x7b\x66\xed\x4d\x24\x38\xdf\x30\x6f\x36\x2b\x38\xc1\x06\xd5\xd5\x9e\x95\x6b\x6b\x17\x11\x9c\x39\x63\xf7\x9f\xfa\x33\x8d\x0d\xc9\x61\x27\xbf\xdd\x58\x75\x87\x41\xaf\x50\x43\x6d\x45\xa5\x24\xe1\xb8\x44\x5d\xb8\xd5\xc3\x16\x06\xf7\x0b\xc3\x9e\xcb\x64\x8d\x5d\x99\x0c\x79\x04\x23\xf3\xfa\x18\xcc\x5d\xf1\x38\xa9\xe8\xaf\x24\x8d\x23\x38\xb5\x64\x6b\xe4\xd4\x96\x12\x54\xce\xdb\x29\xbf\xb5\x91\x21\xc4\x0c\xea\xdc\x5a\x61\x7d\x90\x0d\x57\xff\xae\x10\x3b\x23\xe7\x49\x30\xe4\x28\xea\xe7\x8c\xd3\x27\xac\x6b\x99\x72\xb9\xdc\x81\x87\x90\xee\x6b\xa6\xf9\x67\x5b\x37\x83\xcb\xcf\x69\x66\xef\xe7\x9d\x34\x8e\xfa\x7d\x17\x80\xd1\xe5\x04\xcb\x86\x4f\x5a\x5d\x06\x36\x04\x41\x6e\x74\x3f\x9c\x21\x46\xd8\x1a\x25\x54\xb9\xcc\x7f\x39\xa1\xa5\x45\xcb\x7a\xd3\x90\x20\x61\x9b\xc4\x92\x4b\x7e\xd6\xdc\x84\xe3\x2f\x8f\x87\xa4\xbc\x48\x21\xa8\x05\x73\x96\xd7\x85\x5c\x27\x34\x89\x56\xcf\x1b\x90\x2b\x21\xd4\xbe\x11\x5e\x66\x21\x50\x4e\x98\xa0\x5d\x17\xcd\xff\xb6\x9c\x70\x96\x4b\xa9\x97\xef\xfe\x52\x82\x8d\x67\xec\xfc\x51\x2d\x03\x82\xee\x3a\x4b\x5e\x3f\x6d\x16\x1b\x96\xdf\xbd\xca\x19\x26\xe8\xca\x86\xee\x9d\x5b\x02\x9f\x0f\xc9\xb0\x81\xb7\xbd\xd3\xec\xed\x5e\x03\x42\xa3\xbd\x61\xe8\xcf\x5b\x1a\x04\x83\x77\x95\xb5\x15\x67\x04\x09\x66\xd7\x5f\xb4\x58\x6c\x1f\x61\xc6\xa1\xe1\xb4\xf8\x48\x80\x77\x53\x09\x1c\xbc\x76\x59\xb2\xcc\x5c\x09\x02\xfe\xcf\xa3\x9f\x58\x2f\x23\xac\x32\x39\x34\xcc\x2d\x6e\xc2\x86\x1d\xa9\xd9\xba\x2e\x5b\x57\x11\x1a\x6d\xcd\x7e\x6f\xfa\x6d\x41\xb0\xfb\xd1\x74\x47\x49\x31\x9b\x30\xbd\x3e\x8b\xb7\xf8\xe9\x30\x83\xd2\xfa\x88\x55\x47\x6d\x66\xd3\x38\x3a\x1e\x77\xcc\x93\xfb\x32\x99\xd0\x7f\xed\xfe\xa3\x93\x3c\xd3\x09\x67\xd6\xfa\xec\x0e\x59\xb7\x9e\x0d\xbc\xf6\xaa\x17\x9a\xaa\x66\x10\x34\x4b\xae\x9f\xf5\x95\x57\x21\xa4\x86\x2e\x50\x51\x8d\xed\x64\xe0\x60\x3c\xa1\xb7\xc0\x6e\x06\xa1\xd7\xe5\x53\xc7\xc1\xf3\xa2\x6c\xf0\x10\xf1\x6f\xca\xdc\xff\x98\x81\x9d\xc4\x4b\x31\xab\x7b\x93\x08\x31\x2b\x7c\x26\xfd\xa9\x49\x22\xf8\xac\xdb\x3f\xe4\x16\x66\x44\x90\x0a\x7a\x15\x68\xc8\xcf\x45\xf8\xd2\x6e\xb3\xf9\xff\xe3\xd3\x4f\x83\xb9\xfc\xff\xff\xff\x3f\x64\x29\x64\x2d\xb2\x6f\xd9\x4a\xf6\x50\x3a\xee\x14\x8a\x4a\x76\x15\x95\x35\xb4\xd1\x42\xa2\x45\xb6\x94\x4a\x14\xa2\x92\x44\xa4\x92\x25\xa5\xc8\xd3\x12\x6d\x94\x54\x54\x4a\x25\x85\x50\x2a\x74\x4b\xc5\x7f\x7a\xcd\xfc\x3f\x9e\xdf\xf9\x35\xef\x53\x2e\x73\xbd\x9d\x33\x8e\xe3\x78\x3c\x66\x34\xde\x55\x61\x43\x07\xff\x7b\xad\x13\x8a\x4f\x2b\x21\x71\xf7\xd6\x81\x4b\xa7\xe7\x12\x76\xbb\x3e\x16\xf1\x4b\x5c\x4f\x08\xdc\xd2\x93\x1d\x19\x55\xc8\xc2\xba\x4d\xeb\x6f\xf7\x88\xad\x20\x9c\xf1\x90\xf0\xaf\x5d\x6c\x4d\xe0\xdd\x3d\x45\x48\xf6\x95\x1c\xc1\xd6\x78\x77\x5c\xff\xc8\x20\x83\xaf\x3a\x63\x0b\x34\x94\x7e\xb3\xe1\xf3\x3d\x19\x0d\x37\xbd\x2e\x36\xb4\xdb\x5f\xfa\x2d\xba\x47\x8e\xc6\x91\x31\xf5\xa1\x78\xee\x8e\x37\x95\xf0\x2b\x7d\x9f\x18\x71\x57\x86\x10\xb1\x77\xf6\xe9\xec\x01\x61\x82\xce\xd0\xbd\xce\x80\x74\x13\xc2\x9b\x5f\x9d\xe6\x21\x13\xa3\x09\x46\xd2\x55\x4b\xb7\x75\x9a\x10\x86\x6d\x8b\xd3\x85\x92\x67\x12\x26\xc5\x95\x4e\x0f\x7c\xa1\x4f\x80\x71\x53\xc2\x68\xb7\x3e\xc1\x6a\x67\x18\xb7\xb9\xdc\x02\x42\xed\x3a\xc9\xce\x25\xfb\xf4\x09\xcb\x9e\xac\x68\x30\x4a\x10\x21\x4c\x8c\x7d\xaa\xd8\x2e\xc1\x0e\x2f\x51\x47\xa7\x43\xc7\x8e\x11\xee\xac\xf4\xdf\xf0\x1f\xe2\x34\xc3\xfb\xbe\xbe\x54\x23\xc4\x08\x07\x1d\x61\xa6\xab\xb2\x41\x79\x85\xeb\xe2\x19\x0f\x6e\x33\x90\x3b\x57\xba\xc0\xe5\xc4\x01\x16\x6a\xf8\x36\x5d\xcb\x7e\xab\x43\x08\x0c\xb9\x7e\xc4\x66\xbf\x3d\x1b\x96\xb4\x36\xcf\xf9\x76\xcd\x94\x50\xff\x79\xf1\xcf\x9f\xbd\x8b\xd9\x4a\xa6\xea\xba\xfb\xb7\x3c\xb9\xd8\xe0\xd4\x9f\xd7\xe7\xa0\xd5\xc3\xa0\x7f\xcb\x61\xbf\xe1\x46\x2e\xc2\xb0\x5c\xc5\xcc\x95\x4f\x16\xfd\x0b\x46\x9d\xf3\x53\x5e\xa5\x1f\xfb\x17\x16\x06\x56\xfa\xf8\xaf\x8a\x22\x1c\x4c\x97\x98\xac\xc3\x59\x43\x30\xb2\xce\x76\xa8\x93\xb9\x46\xe0\xf5\x5e\x3d\xb4\xe3\x5b\x37\x03\x4b\x35\x97\xa4\x7b\xed\x1a\x04\xb1\xb6\xd3\xfe\xcf\x0a\x5c\xd9\x30\x55\x65\x7d\xce\x8a\x03\x73\x08\xdc\xaa\x9f\x26\x44\xac\x5d\x40\x10\x7e\x56\xb2\xd4\x71\xd7\x09\x82\xae\x51\xe2\xf3\x96\x29\x69\x84\x81\x87\xd1\xbf\xbe\xc5\x1d\x66\x83\xc7\xea\xaf\x2a\x7b\xf8\x0a\x09\xc7\x5d\x36\x3e\xcc\xd3\x2d\x22\x6c\x90\xae\x99\xfa\x1f\x6c\x8c\x4d\xb2\x73\x73\x77\x11\x2e\xf0\x9d\x36\x5e\xac\x7c\x8c\xb0\xd3\xef\xe4\xac\x1e\xbe\x2a\x36\xec\xe6\x8f\x3e\x63\xf4\xa6\x80\x0d\x35\xeb\xf5\x8b\xfa\xe1\x4b\x88\x7d\xb5\xb0\x3d\xf7\x97\x10\x41\xdd\x47\xcc\xd4\x76\xb3\x0b\xe1\x8c\x20\xaf\xd0\x74\x6d\x5b\x42\xb1\x6c\x73\x98\xbe\x38\x2f\xc1\xba\xd7\x60\xf6\x63\xed\x2c\x82\xc2\x86\xd5\xbf\x56\x32\xeb\xd8\xa0\x69\xf1\xce\x7c\xf0\xb2\x23\xa1\x00\x51\x0f\xaf\xcb\xb3\xa3\xa8\xe8\xf1\xd5\xb9\xf3\x05\x08\x86\xee\x86\x7b\x2f\x4d\x18\x61\xa0\xe3\x6d\xc2\xfd\xa6\xad\x90\xc1\xd4\xb0\xdd\xcf\xcf\xf1\xab\x11\xda\x32\x67\x1e\xb5\xf8\x76\x89\x50\xec\xbb\xaf\x75\xe1\x5f\xc4\x89\x86\xe9\xf1\xec\x7c\xc4\x56\x1e\xcd\x0d\xef\x60\xfd\x76\xf9\x9f\xa8\xc9\x8d\x57\xdb\x91\x33\x8b\x0d\xbf\x64\xdf\x27\x1e\x17\xcd\x23\xdc\x08\xe9\x38\x9f\xfc\x17\xd1\xdc\x82\xcf\xfe\xc3\x05\x8f\xe0\xb7\x09\x31\x2b\x08\xfe\xab\xb7\x3f\x3c\x71\x3c\x84\xad\xfc\x1f\x8c\x4a\x3b\x1e\x9a\x6a\xeb\x12\xae\xbf\x3f\xa7\xf2\xb6\xe9\x3c\x21\xa2\x99\x75\x50\xe9\x83\x3f\xfd\x9c\x24\xf9\x67\x4c\xba\x76\x3c\x60\xa3\x98\x79\x47\x56\xb8\x39\x1b\xf6\xe9\xc9\xdc\xe1\x39\x5e\x44\xa8\xb6\x11\xd9\xca\x31\xa1\x90\xb0\x78\x4d\x3d\x87\xe4\xe4\x8b\x04\xc1\xc5\xab\xf5\xcd\xb3\x1b\x09\xaa\x49\xaa\x07\xfe\x9b\xc8\x78\xd0\xf6\xdc\xe6\x18\xc2\x97\x88\x88\x9c\x9a\xe5\x91\x04\x19\xde\x30\x21\xe1\xc1\x6b\x04\xdf\x74\x07\xdf\xfb\x2f\x22\xd9\xa6\x43\xae\x67\x79\x95\x2e\x47\x13\x5c\x6e\x36\xb4\x87\x5e\x0d\x25\xf0\x6f\xbe\xc5\xab\xa9\x9b\xc3\xc2\x25\x0e\xdf\x35\x32\x07\x76\xb0\x4d\x0a\x3d\x76\x02\x47\xf7\xd8\x11\x0e\x7d\xef\xbe\xa8\xc8\x70\x13\x5a\xc2\x9d\x8e\xc7\xfd\x5a\xfd\x3f\x11\x27\x22\x9e\x71\xe5\x62\x0d\x21\xef\x51\x24\xe7\xb3\x1b\x57\x08\x7d\x69\x79\x0f\x7e\x67\xe7\xb3\xb0\x35\xfb\xed\xe0\xc9\x92\x1a\x02\x47\xc8\x8b\x57\xc5\x35\x35\x04\x13\xc9\xe7\x0e\x17\x6c\xea\x58\x30\x99\x63\x72\x62\x5f\x71\x0c\xe1\x47\xf8\x0d\x48\x78\xee\x27\x14\x58\x5c\xdd\xc2\xc9\x7f\x9d\x70\xe0\x96\xdd\xc1\x45\x9f\x0f\x10\x5e\x57\xc6\x1f\x4c\xd5\x3a\x4b\xd0\xa8\xb1\x9f\x7c\x39\x31\x9f\xc0\xa7\xd1\x53\x9d\xe9\x79\x81\xc0\xd5\xd9\xb7\xd4\x77\xd9\x59\xc2\x8c\x1a\xfb\x1d\xc2\x86\x17\x08\xc1\x33\x8f\x3d\xec\xec\x3f\x43\x38\x50\x78\xa3\xb9\x4b\xba\x9a\xb0\xec\x6d\xde\x1d\xd5\x66\x79\x42\xbd\x68\xd5\xd3\x98\x35\x22\x84\xa0\x1f\xea\x01\xe9\xcb\x7e\x30\x38\x51\xbb\xe4\xd6\x7d\x61\x76\x84\x5e\x39\xed\x38\x50\xfd\x85\xc1\xc3\x85\xd6\x9f\x62\x65\x57\x11\x5a\x9f\x6b\xb5\x17\xf1\x56\x13\xd6\x5b\x1d\x5e\xa1\xa2\xe4\x4d\x30\x79\x1e\xe2\xe7\x14\xb6\x95\x20\xaf\x98\xb9\x2c\x3d\xfa\x02\x1b\x0e\xb8\xab\x4e\xe3\xdc\x2c\x42\x98\xc6\x51\xa6\xcc\xcf\xf2\x24\x88\x8c\xfc\x4a\x38\xd7\xe1\x4d\xf8\xa0\x1d\xa9\xd5\x26\x1b\xcf\x82\xba\x72\x4e\xe5\xd1\xba\x3c\x42\xbb\xc3\xdb\x37\xfc\x7f\xff\xb2\x9e\x5d\xb2\x5b\x96\xf0\xb7\x94\x75\xae\x31\x6a\x1d\x79\x42\xa8\x49\xad\x88\xbc\xf6\xee\x06\xa1\xa6\x78\xa8\xfe\xd1\xb1\x5b\x84\x03\x5d\xb9\xcf\x73\x66\xa5\x13\x7e\x09\xbc\x7c\xfc\x3e\xf3\x1c\x21\xb8\xff\x6e\xe5\xfb\x2d\x7b\x09\x46\x2f\x2c\x1e\x5f\x0d\xad\x62\x41\xde\xae\xdb\xcd\x5f\x5f\x8a\xf0\x81\x95\x7f\xb3\xd4\x7e\x90\xc1\x64\xef\x13\x86\x06\x2f\xfd\x08\xe9\x6f\x84\x4f\x59\xca\xa7\xb3\x81\xbb\xb7\x69\x49\xc1\xe9\x34\x42\x4d\x82\x5c\xf1\x83\xc4\xa3\x84\xfd\x9a\xaa\x8f\xa3\xe5\xd7\x11\x3c\x47\xda\xee\x36\x06\x7f\x65\xf0\x67\x77\xfd\x9f\x10\x57\x03\xc2\xf3\x78\x51\x4e\x25\x57\x09\x42\x27\xed\x9d\xf4\x2a\xfa\x0b\x83\x1d\x93\x33\x6f\x36\xad\x3e\x41\xd8\xc6\x34\x0b\xd5\x18\xfb\x12\xbe\x34\xd6\x2f\x9d\xe0\xe0\xce\x56\xfe\x0f\xb6\x79\x1a\xa3\xbe\x8b\x37\x11\xae\x94\xf4\x55\xab\xeb\x6d\x22\xb8\xf1\x75\xed\xb5\x2a\xbd\x40\x98\x38\xf4\xb3\x4c\x2f\xb2\x8e\xb0\x39\x69\x42\xd3\xb1\xfc\x27\x04\xe5\xdf\x1f\x76\xe8\xfc\x2d\x9f\x2f\x66\xef\x39\x6e\xe3\x4b\xa8\xab\xd4\x8e\xf2\xb3\xf6\x25\x68\x6e\x5c\x91\x2b\xa1\xbe\x97\xb0\x36\xe6\xdb\xfe\x74\x07\x4f\xb6\x49\x61\x67\xec\x75\x91\xab\xdb\x09\x6d\x1f\xef\x9f\xd3\x2b\xd9\xca\x86\xd3\x4e\x42\x4e\x2a\x51\x49\x2c\x98\xba\xa6\x17\x9c\x6c\x56\x27\x98\x27\x9e\xd9\xf3\x55\x27\x99\xd0\xe5\x99\xde\xe5\x97\xe5\x4d\x88\x37\xd0\xe3\xac\x4e\x9b\x47\x88\x79\x5b\x2f\x36\x30\x61\x88\xc1\xec\x33\x37\xef\x67\xec\xd9\xc1\x82\x44\x8e\xf5\xe1\x0b\xe9\x86\x84\xf3\x2e\xe5\xb3\xeb\x6e\x4c\x20\xf4\x3e\x7e\x33\x73\xed\xc1\xa9\x84\x53\x3f\xf3\x74\x63\x9e\x0d\x32\x88\xbd\x9e\xfb\x75\x5b\xa8\x36\x8d\x23\xfe\x50\xeb\xf4\xca\x08\x4e\x42\x63\xd8\xdc\x4a\xf2\x2f\x25\xc8\x55\x4e\x9b\xee\xac\x03\x06\x32\x5d\xcd\xab\x0d\x74\x54\x69\x1c\x0f\x74\x62\x33\xc4\xb2\xeb\x2b\xd1\x7d\x6d\xd8\x2a\x58\xaa\xbb\x12\x99\xa1\x12\xa2\x47\x06\x87\x18\x9c\x5b\xf4\x40\xf3\x90\xfb\x10\x03\x33\x03\x2f\x81\xf3\x81\xa3\x6c\x25\x3c\x54\x31\xbd\x4f\xfa\x1d\x1b\x14\x25\x93\x32\xad\x74\x96\x13\x4a\x36\x9b\xba\x6e\xba\x2f\x47\x18\x90\x78\x7a\x50\xb9\x66\x2f\xe1\xfd\xb9\xcc\xb0\xa0\x94\x4a\xc2\x60\x9f\x65\xe7\x53\xa7\x24\xc2\x6f\xa1\x1f\x97\x36\xff\x2d\xc5\xfb\xb3\x50\xdd\x79\x9e\xa0\x58\x2a\x5a\xb2\x78\x55\x34\x21\xd0\xed\x9e\x9c\xab\xe8\x24\x82\x66\xa5\x5c\xea\x9d\xc0\x11\x66\x1c\x77\x8e\x9f\xef\x5c\xcc\xf1\x81\xc1\xc2\x7d\x16\x76\xab\xad\x2c\x08\x0d\xbb\x2f\xe6\xbc\x93\x9e\x48\xe8\xf7\x92\xdd\xd5\x9a\xdf\xcd\x20\x0b\xe0\xbd\x1b\x25\x4b\xb8\x11\xde\x53\xde\xbc\x34\x83\xb0\xa8\xf8\xb5\x42\x43\xc3\x4e\xc2\xca\xcb\x11\x47\xda\xc2\xdd\x09\x6f\xcc\xb3\x67\xbd\x8e\x8a\x25\x08\xde\xab\xe3\x5b\xff\x88\x87\x50\x3f\x27\x76\x4c\x7e\xb5\x05\x1b\x96\xd9\x06\x29\xad\x19\x1a\x66\x20\xcc\xed\xed\xd5\xb0\x3c\x88\x20\x5b\x3d\x81\x53\xab\x46\x99\x30\x96\xf3\x34\x87\x99\x6a\x4f\x98\xb9\xe9\xfe\x96\xda\x0d\x2b\x09\xf6\xe9\x93\xf2\xf9\x84\xd6\x13\xb6\xd3\xd5\xec\xdd\x49\xba\x84\x0d\x1c\xbf\x3f\xb2\xbe\x28\x13\xd6\xfb\x65\xf2\x2d\x1b\x99\x46\xe0\x74\x98\x71\xe8\x0f\xe3\xc2\x06\xeb\x8f\x6b\x7b\x23\xed\x93\x2b\x71\x72\x7b\x54\xe1\xf4\x05\x53\x09\x6f\x5e\x7e\x0b\xed\xca\x5c\xcc\x06\xa3\x22\x41\xa9\xa8\x70\x39\x42\x40\x65\xc4\x0f\xba\x6c\x43\x68\x4c\xbc\xed\x98\x3f\x04\x06\x69\xc6\x8f\x45\xf8\x0b\x74\x69\x1c\xf7\x55\x9a\xc4\xa6\x25\xbc\xae\xc4\xd7\xd9\x8b\x96\xf3\x7e\x18\x60\x70\xef\x65\x42\xc5\x3c\x6b\x4d\x1a\x47\xfb\xb7\x5c\xb5\xee\x8b\x97\x2a\xc7\xb1\xac\xf3\x56\xa5\x89\xa4\x1b\x8d\x63\xef\xc4\xdd\xb3\xae\x4c\x2e\x23\x14\xcc\x9b\xbe\xfa\x06\xcf\x59\x42\xd2\xf5\x35\x13\x52\x58\x63\x0c\xdc\x63\x6c\x2e\xad\xab\xfc\x7b\x8e\x76\x08\x0f\x77\xdf\x37\x95\x30\x96\x71\xef\x58\xf9\x31\x4f\x06\x9a\x26\x0d\x87\x9e\xf2\x18\x10\x7a\xb3\x1a\x1a\x65\x6b\xa5\x08\xab\xe4\xc3\x67\xde\x5e\xea\x4d\x68\x3d\x71\xbf\x59\xea\x81\x15\x61\x4b\xae\x01\x73\x58\x5c\x93\xb0\xfc\x44\xfa\xa8\x6e\xd9\x16\xc2\xb4\xfe\xbd\xdd\x51\xe9\xb6\x04\xfd\x62\xc5\xb1\xd1\xf6\xf5\x04\x4a\x91\xca\xfb\xe6\x26\x43\xe8\x4b\x98\x17\xc4\xb9\x61\x0e\x1b\x62\x0c\xf3\x1c\xec\xba\x44\x09\x4d\x7b\x6d\xbb\xbe\x9f\x3d\x4f\x68\xfb\xd9\xba\x69\x49\xa4\x1f\xa1\xa1\x3e\x72\xbb\xee\xd9\x64\x16\x36\xb1\xf4\x43\x1e\x2a\x86\xb1\x4d\x9c\xca\x35\xa7\x57\x54\xfb\xb0\x70\x98\xd5\x60\x9d\x6c\xb1\xe9\xef\xd3\xad\xf8\xab\x78\x47\x11\x41\x6f\xdd\x69\x3b\xff\xcf\x85\x6c\x18\xd3\x14\x39\x74\x42\x7d\x2b\xe1\xc1\x81\xdc\x52\xcd\x13\x1b\xd8\x0a\x2b\xef\x4a\xbc\xee\x59\x23\xc2\xcf\xc1\x81\x9f\xeb\x25\x73\x09\x23\xe6\xe2\x6b\xfd\x6b\x3d\xfe\x05\xeb\xf7\xdb\xbe\xb7\xac\xb6\x21\x4c\x53\xd1\x88\x16\x2d\xd5\x23\x6c\x16\x3b\x6d\xa9\xce\xab\x46\x68\xee\x1f\xbe\xba\x31\x4c\x88\x60\xc1\x53\x7b\x2f\xb6\xc1\x92\xb0\x50\x6c\xd4\x36\x79\xff\x01\x42\xa1\xdb\x7a\xcb\x40\xf3\x1c\x82\x91\x9f\xdd\x84\x99\xad\x66\x84\x04\x1f\x8f\x92\x47\xcb\xd2\x58\xe8\x56\x98\xea\xa7\xe2\x35\x83\xc6\x51\xe5\xd5\xb4\x4e\xae\xe6\x00\x21\x6b\xec\xe8\xd7\xe4\x8d\xb3\xd9\xa0\x49\x8d\x61\x79\xee\xde\x84\x0b\x42\xde\xe5\x95\xa9\xd7\x08\x7c\x6d\x8b\xeb\xea\xed\x23\x09\xef\x39\x74\xa4\x1d\x1d\xbd\x09\xbb\xaa\x13\xcd\x7b\xe7\x37\xb0\x70\x4d\xd1\xaf\xef\xee\x2e\x31\x42\x4c\xf2\xf4\x4e\xe5\xfe\x53\x0c\xf6\x0a\xbd\x38\x4d\xe6\x5b\x09\xc2\x2c\xef\xe6\xe7\xa7\x5c\x08\xc3\xa7\xcb\x8e\x6c\x13\x9b\x4d\xa8\x8b\xd3\xd1\x11\x38\xee\x4d\x48\x38\x3f\x31\xd3\xe3\xdd\x09\xc2\xda\xd3\x47\xce\x0b\xe5\x85\xb3\x61\xa7\x73\x6f\xef\x52\x93\xeb\x0c\x5c\xde\xc5\x0d\x9b\x1d\x59\x47\xc8\x5e\x7b\xa7\x6f\xf2\xb4\xdb\x2c\x24\x0f\x73\x29\xf2\xa7\x48\x11\x9e\xe7\xbc\xaf\x69\x59\x98\x4b\x38\x17\xe2\xdc\xa0\xb1\xe7\x3c\xe1\xa6\xbd\xd1\xae\x50\x45\x5f\xc2\x6b\xef\x1d\xd6\xcd\xd3\x94\x08\x5e\x1f\xda\x53\xe6\xd9\x4c\x22\xf8\xe9\x84\x29\x9d\x79\xe3\x44\x30\x59\xde\xb4\x39\xcc\xd7\x80\x0d\x05\x5c\x1e\xb7\x47\xc2\xa6\x10\xca\xfc\xa4\x73\x1f\x98\xdc\x26\x0c\xe8\x74\xb4\xec\xf8\xcd\x49\xb8\x62\x33\xd9\x46\x28\xcf\x95\x0d\xfc\x37\x5c\x8f\xf8\x3d\x88\x24\xec\x88\xc8\x3b\x17\xc1\xb5\x98\x60\xb0\x45\x53\xfd\xb1\xae\x1e\x61\xf2\x0b\xb3\x2d\xf9\xd3\x4b\x58\x88\x5a\xd5\xf5\x5b\xe4\xf4\x56\x82\xbb\x9c\x9e\x81\xe3\x74\x05\xc2\x81\xf4\x5d\x22\xf4\x53\x87\x60\xf0\x30\xfa\x59\x5a\xb6\x08\x61\x4f\xf7\x96\xa0\xc2\x02\x4b\x42\x85\x2b\xeb\xfe\x9e\x7d\x2b\x08\x2b\x4f\xf6\x3b\xf2\x4b\x29\x10\x7e\xd5\x29\xca\xf1\x56\x1c\x23\x48\xaf\x4e\xaf\x35\x9c\xae\x4b\x90\x57\x52\x2d\x9c\x78\x27\x88\xd0\xb9\x3c\x67\x64\xe5\xc6\xc2\x4a\xf0\xf7\x34\x67\x9a\x37\x54\xb3\xa0\xa4\xf0\x4a\x73\xdf\x44\x2f\x42\xf2\x9a\x0f\xa6\x22\x95\x5e\x84\x2b\xac\xa2\x7a\xa6\xd3\x85\xd0\x34\xef\x7b\xc9\xec\x8f\x92\x84\x9a\x0b\x71\x4b\xb4\xa5\xe7\x12\x2c\x76\x05\x46\x7c\x58\xa5\x40\x10\x7b\x76\x77\xff\xa3\xc3\x7a\x04\xdd\x8d\x37\xfa\xdb\x33\x26\x10\x8c\x29\xc0\xf4\xa8\xae\x01\xa1\xf3\xb3\xf3\xbb\xe8\x31\x19\x02\xc3\xb9\xd7\xf7\xc5\xb6\x30\x82\x11\xe7\xca\x51\x9d\x52\x71\x42\xc5\xe2\xb9\x5a\x76\xb9\x16\x6c\x90\x0c\x5a\xa2\x79\xcf\x7d\x02\xa1\x78\xbe\x25\xe6\x25\xee\x21\xbc\xf8\x31\xcc\xe7\x2a\x3b\x8d\x50\xaa\xc1\xa5\xfb\x22\xd8\x87\x30\xbf\xc7\x63\x6d\x87\xe6\x0a\x42\x73\x8b\xdc\x27\x8b\xe9\x5a\x04\x25\x27\xee\x57\xdd\xdb\xa6\x12\xe6\xcd\xce\xa8\x1b\x71\xe5\x20\x34\x3f\x3c\xea\xe7\xd3\x6f\x4f\x90\xe9\xae\x3f\x99\x79\x34\x94\x0d\x15\x77\x15\xa4\x7f\xb4\x3b\x13\x0c\x4d\xac\x54\x1b\x4d\xed\x08\x0e\x6d\xef\xa4\x17\x9d\x12\x25\x6c\x5b\x77\x75\xb1\xe3\x8b\x61\x06\xeb\xca\xfc\xb7\x59\x7b\x4f\x22\xd8\x05\xa7\x19\xf1\xf8\x74\x30\xe3\xb0\x98\x1c\xf2\x5d\xd6\x6c\x88\x41\xd6\xe0\xe2\xd7\x6b\x2b\x85\x09\x1d\x45\xbb\x44\x0e\x7d\xb6\x66\xc3\x40\xff\xc2\xb7\xd2\x2f\x7a\x18\xa8\xa5\xd8\x0d\x0f\x36\x3a\x13\x12\x6e\x7f\x7c\x45\x75\x4e\x04\x4e\xf9\x17\x25\x62\x85\xe7\xd8\xb0\x61\xc4\xb3\x71\xa3\xeb\xd5\x4a\xcc\xd3\x6d\xbc\x14\x30\xa4\x43\x48\x5b\x79\x97\x33\x28\x78\x3a\x21\xdc\x90\x16\x5f\x1f\xd3\x21\x58\x99\xb9\x3d\x9f\x59\xa7\x47\x38\x52\x27\x19\x58\x13\xca\x43\xe0\xb6\x15\xd8\xb5\x3e\xc9\x9d\x0d\x01\x71\xb5\x3c\x11\xc3\x60\xc6\xc1\xa3\xbd\x3c\x76\xf9\x5c\x23\x82\x92\x99\x56\xd1\x43\x17\x4b\x1a\x2f\x27\x9e\xaf\xb8\x30\x66\xf3\x90\xc1\xd7\xf9\x6f\x4b\xd5\xf5\x6a\x08\x57\x1b\xff\xc8\x04\xa6\xba\x10\xe6\xef\x35\x5f\x22\xdd\x59\xcd\xc0\xa2\x5b\xfc\xa8\x55\x39\x27\x8d\x43\x75\x4b\x57\x95\x90\xf1\xd3\x4a\xa8\xbe\x1c\xdc\xc2\x1d\xd4\xc2\x20\x65\x50\x45\xf0\xb0\xc8\x59\xc2\xda\x33\x35\x01\x5e\x7f\x66\x10\xbe\xf8\xc9\xed\x75\x89\xd6\x20\xd4\x6f\x14\x11\x8c\xba\xac\x42\xb8\xef\x1c\x7f\xed\x31\x7d\x63\x20\xb7\xfd\xf3\xcc\x04\xdf\xab\x84\x9f\x81\xd6\x66\xe7\xda\x1f\xd1\xcf\x34\xde\xdf\xba\xa1\x71\x84\xfe\x8a\xe7\x93\x2b\xeb\xf7\x13\xf2\x1d\x7e\x0f\xbd\x32\x8f\x26\x0c\x6d\x9b\x7f\x6b\xaf\x63\x35\x0b\x26\x3c\x62\x67\xc5\x37\x9d\x60\xe1\xb1\x5d\xb2\xb6\xc6\xc9\x38\xc2\x1e\xce\xdf\xdb\x07\xf9\xc3\xd9\xb0\x72\x88\xb7\xc2\x64\x6a\x0b\x03\xb9\x20\x79\xd1\x09\x9b\x8c\x09\xcb\x9f\xca\x2f\x97\xed\xcf\x20\x94\xf8\x9c\x97\xe3\xdb\xf3\x84\xf0\xcd\x2d\xea\x48\x93\x80\x18\xe1\x59\xdb\xc9\x7a\x15\xc1\x65\x84\x60\xfe\x9d\x5d\xba\xe1\x1a\x04\xbb\x03\x71\x58\x10\xfc\xf7\x03\x1b\xaf\xdc\x3f\x4d\xc7\x90\xb0\xd4\xa1\x45\x75\xe5\x92\x85\x2c\xec\x34\x16\x5f\x11\xee\xef\x4d\x88\xd3\x6d\x19\xd5\xba\x2f\xc6\x86\x9c\xe7\x0e\xa9\xe6\x9f\xf8\x08\xe1\x97\x5f\x6a\xaf\xaf\xf9\xc6\xa0\x30\xb4\x71\xce\x5d\x66\x35\x81\xcb\x2b\x69\xb8\xfd\xd0\x67\x06\xaf\x76\x0a\x0b\x9c\x78\xe5\x42\xe0\x7e\xff\x2a\x22\xc0\xce\x9b\x10\xb8\xbf\xbf\x35\xf2\xe1\x29\x36\xa8\x1f\x3a\x1b\x70\x6c\x12\x27\xc1\xab\xde\x68\xb8\xbf\xfc\x27\x83\x0d\x76\xd3\xcd\x44\x3f\xab\x11\xda\x5b\x92\x76\x85\x5d\xb0\x27\x58\xd7\x37\x14\x3e\x0d\xe8\x65\x20\xc5\xcf\xb7\xf0\xd6\x11\x21\xc2\x96\x86\xe9\xd9\x66\xdf\x04\x09\x57\x1c\x97\xde\xe5\xcc\xea\xab\x84\xee\xcf\x88\x5e\x7b\x4b\x13\xc2\x83\x45\x7e\x5f\xcb\x6f\x08\x11\xda\x23\x7d\xd0\xba\x4e\x91\xa0\x32\x6f\xe1\xfa\x8b\x9a\x93\x08\x92\x16\xfc\xc5\x2f\x12\x3c\x08\x07\x5e\xf7\x08\xba\x8d\x38\x12\x14\x7d\xa5\x2e\x7e\xea\x69\x61\x90\xff\xf2\xa4\xb7\x88\x8a\x36\x0b\x3c\x6b\xa6\x84\x88\xb8\xcd\x27\x9c\x88\x38\x38\x50\x1f\x51\x40\x30\x7f\xf9\xf9\x55\xff\x10\x0f\x21\xfb\xcb\x4e\xf1\x8b\xa1\x3e\x04\x11\xe9\x16\x71\xd7\x68\x2f\xc2\xce\x74\x26\xfc\xa3\xe1\x52\x42\xe7\xf0\x97\xfb\x9f\xa7\xf2\x10\x2e\xec\xb8\xa6\x75\x65\x56\x00\xa1\xce\x2f\x28\x7c\x0a\xff\x7f\xff\x30\xe6\xa1\x79\xc5\x42\x82\x0d\xfd\x52\x92\x65\x93\x66\xfd\x60\xe0\x34\x5b\x75\xea\xea\xae\x1f\x0c\x5e\x2e\xf3\xf0\xd3\x11\x51\x21\x38\x3b\xc6\x36\x56\x44\x05\xb1\xe1\x9e\x87\x9f\xcd\xa5\x62\x77\xc2\x81\xdc\x83\xf9\x49\xf3\xb5\x09\x32\x99\x92\xe5\xd6\x8e\xf2\x04\xd6\xf6\xed\xa7\x8b\xa6\x12\x41\x25\xea\xb5\x5d\x5b\xc4\x44\x82\x2c\x53\x9e\xed\x11\xa0\x41\xd8\xf9\x2e\x23\xef\x48\xbd\x15\xe1\x0e\x7f\xb4\xec\xa4\xc3\xc9\x84\xa5\xbf\x26\x6d\xfa\x3a\x34\x9f\x30\x3b\xf8\xe5\x11\x7f\x55\x59\xc2\xf0\x0f\x85\x84\xa4\x28\x0e\x42\x75\xdf\x9c\x3f\xe0\x16\x26\x7c\x24\x8d\x39\xb1\x3f\xf5\x08\xcf\x1a\xfa\xe6\xad\x5f\xaf\x4a\x58\x56\xd9\x31\x53\xa0\x63\x19\xc1\x41\xde\x50\x9d\xd7\xea\x2b\x83\xe2\xfc\xb7\xbe\x4b\x2a\x35\x09\x9b\xc5\x27\x59\x04\x4b\x4b\x11\x84\x12\xa4\x4b\x76\x95\x4d\x24\xcc\xfb\xf0\xf8\xc6\xc5\xaf\x0e\x84\x49\xee\x09\x66\x1c\x45\x2b\x08\xf3\x82\xa0\xde\xfb\x52\x91\x10\xf0\xee\xfb\x8e\x03\x42\x5c\x04\x93\xcb\x86\x47\x02\x2c\xd4\xd8\x50\xc3\x27\x39\xfb\xe9\xbe\x26\x06\x4a\x69\xa3\x8a\x87\xe4\xfc\x09\xa1\x2a\x45\x91\x61\xeb\xcc\x08\x5f\x27\x8c\x29\x1c\xfb\xa1\x43\x58\x6d\xd8\xbb\x75\x7f\xf7\x3e\xc2\x63\x9d\x67\x90\xe9\x1d\x65\xd0\x3a\xfd\xcc\x8f\xf5\xb7\xb6\xd2\x3f\xd0\x54\xf0\xac\xdc\x73\x41\xd4\xbf\xe0\xe6\x25\x40\xaf\x3b\xb7\x10\xce\x66\x4d\x99\x2a\x5d\xea\x40\xd0\x69\x9b\xb2\xd8\x96\x8b\x08\xc9\xcb\x8e\x1a\x7e\xbc\x6e\x4c\xa8\x8c\x31\x7a\x2f\xd2\x96\x44\xd8\x26\xb7\x65\x63\xc6\x9c\x41\x06\x6e\x33\x25\x1c\xb2\xf5\xbb\xd9\x10\xf2\xf6\xb8\xdd\x0d\xd1\x31\x06\x1f\xcc\x84\xf6\x1d\x91\x14\x22\xd8\x1c\x30\x5f\xd4\x98\xa9\x46\x08\x11\x13\x3e\x6b\x1c\xb8\x96\x50\xac\x71\xc3\xb2\x69\x97\x13\x41\x7c\xed\x0e\x97\xa7\x1c\x13\x08\x4a\x3b\x8e\x14\x8d\x9d\xe1\x62\x83\x71\x54\x41\x77\xdc\xf0\x1f\x06\x77\x8e\x45\x35\xb4\x7f\x12\x23\x74\x4a\xff\xf1\x90\xff\xca\x45\x50\x9e\x71\xd8\xd2\xc7\x7c\x26\xa1\x79\x91\x9d\xd5\x66\xbe\x09\x6c\xb8\xeb\x3d\x23\x4e\x0e\x9f\x19\x48\x30\xdf\x6c\x87\xb9\x06\x19\x0c\x97\x88\x79\xb8\xa8\x2d\xa0\x71\xa8\xff\xdc\x8d\xee\xc9\x5e\x84\x50\x1d\xc7\x42\xd9\xef\xaf\x18\x5c\xba\xb1\xe1\xc2\x99\x29\xde\x04\xc1\x49\xc2\x09\x4d\xf2\x7c\x84\x96\xb0\x23\x0a\x3f\xd3\xa7\x10\xf8\x64\x33\xc6\xa6\x96\xf1\x11\x0e\x0d\xbc\x68\xd4\x3c\x34\xc0\x60\xa0\xf3\xdc\x96\x3f\x0b\x57\x12\x82\x0c\x53\xad\x6c\x8a\x39\x09\x56\xca\xcf\x76\xd5\x5a\xce\x22\x8c\xac\x7c\xb6\xed\xce\x57\x11\x42\xe4\x31\xc5\x17\xf7\xec\xf4\xd8\x50\x32\xe3\xc7\x94\x68\xa1\xef\xcc\x38\x8a\x4c\x04\x8f\x5c\xdd\x9b\x44\xb8\xfe\x34\x4b\xea\x3f\x94\xa6\xcd\xd3\x99\xf1\x69\x3d\x21\xcf\x8a\xf5\x70\xf7\x77\x30\xc8\x73\x3f\x77\x68\x93\x7f\x0f\x83\x13\x1a\x36\x4e\xe9\x7e\xaa\x04\xa3\xac\x37\xb1\x8f\x9c\xc4\x08\x5a\xbb\xde\xc6\x18\xad\x72\x25\xb4\xcb\xcf\x74\x1a\xbe\xeb\x42\x70\x5c\x66\x1f\xf6\x6e\xab\x1a\xe1\x88\x9b\xab\xb6\xec\xb4\x00\xc2\xd5\x1c\xd1\xf6\xde\xac\x11\x06\x93\xc3\x42\x4c\xe4\xa6\xe8\x10\x14\x22\x2f\xde\x73\x8c\xfb\xfb\x0b\xaf\xaa\xd1\x9e\x91\x22\x4e\x98\xb3\xd7\xca\xbb\x60\xa2\x1a\x61\xee\xee\x41\xc9\x23\x92\x93\x09\x13\x3f\x6e\x97\x9e\x98\xc7\x41\xc8\x0f\x17\x12\x33\xbe\x6b\x4a\xf0\x0a\x4a\xd5\x28\x70\x27\x82\xd5\xe1\x81\x63\x62\xaf\xa7\x11\x9c\x78\x0f\xa6\x5d\x70\x9e\x46\x50\xbf\x79\xf2\x76\x31\xbf\x01\xa1\x8a\xf9\x73\xf3\x82\xc2\x1f\x06\xd7\xfd\x7e\x24\x3c\xcc\x52\xa7\x71\x78\xf8\xba\x0a\x6c\x8f\x0d\xa8\x44\xdf\x68\xfb\xed\xfb\xb3\xbe\x33\x48\xf7\x5d\xf5\xfe\x49\x0a\x37\x8d\x43\xc0\x66\x51\x9c\x6e\x57\x63\x25\x36\xdc\x3f\x67\xdb\xd3\xa1\x43\xc8\xb1\x9a\xea\x17\xc8\xe7\xcc\x86\x25\x13\x55\x2a\xf4\x2e\xf2\x10\x44\xbe\x54\xa5\x89\xcf\x51\x24\x84\x7b\x47\xfc\x16\x1b\x60\x08\x6d\xa2\xfb\xe3\xe4\x7f\x28\xb1\xa1\x3b\x5a\x7e\x41\xca\xde\x48\x36\x2c\x32\x3d\xe0\xf8\x4c\x7f\x21\x21\xf6\x92\xcc\x86\x7d\x53\xad\x08\x4b\xf5\xef\xcb\x1c\x7f\x2d\x46\xf0\xbe\x69\x79\xe4\x40\x7f\x1b\x03\xd9\xe8\xf8\xf8\x83\x2f\x27\x12\x24\x27\x0c\xce\x73\x29\x1d\x61\xe0\xe5\xb3\xdf\x6e\xeb\xa6\xb9\x04\xab\x5c\xdb\xcf\x15\xe7\x33\x09\x06\x22\x96\x8d\x6f\x07\x19\x42\xd6\xc4\xe0\x63\x6b\xda\xf4\x09\x1f\x62\x77\xa7\x9b\x5e\xff\xcc\xe0\xe8\x7c\x29\xbd\x90\x1b\x16\x84\x4a\xcb\xfd\xef\x45\x87\x0c\x09\x29\xc6\x76\x65\x27\xad\x67\x10\x7e\x14\xd2\x49\x89\x5e\x7e\x42\xb3\x6f\xfb\xfb\xb4\xc7\xc3\x0c\x1a\x12\x5d\x3a\xcd\x6a\xe4\x08\x24\x71\xd7\x66\x8f\x5c\x00\x61\x17\xeb\xba\x8a\xd0\x05\x39\x42\xe8\xe2\x8d\xd2\x8b\x6f\xda\x11\xb6\x9b\x77\xb9\x5e\xd1\x0d\x22\xe4\xce\x8a\xe5\x73\x91\x9a\x41\x78\x34\x79\x78\xd9\x5c\x5e\x11\x82\x0f\x7f\xb6\x9f\xb1\xd8\x02\xc2\xc6\x8a\x57\x0f\x2c\x35\x89\xc0\xff\x2d\x7e\x82\x86\xf1\x2c\x42\x52\xa9\x72\xef\x48\xea\x3b\xd6\x78\xf9\xee\x6b\x65\x1f\xd7\xd5\x51\x89\xac\xad\xca\x01\xbe\xa2\x4a\x84\x43\xd1\xd2\x27\x39\xd4\xad\x08\xfc\x05\x73\xfc\x8f\x18\x7d\x60\x8d\x97\xdc\x93\x07\xcb\x84\x85\x15\x09\x61\x1f\xc7\xbc\x17\x54\xaf\x24\x54\xad\x32\x50\x9a\x72\x6f\x05\x61\xc3\x89\xdc\xd2\x38\xd7\x18\xc2\xc1\xec\x28\xe7\x49\xb1\xf9\x84\xaf\xf9\x0f\x22\xfd\xce\x1e\x27\xc8\x7c\x3c\xc7\x6d\x79\x76\x07\xe1\xde\x9c\x10\x8b\xe2\xe4\x54\xd6\x78\x11\x29\x99\x70\x92\xb9\x15\x47\xb8\xf0\x78\x87\x4e\x45\xe2\x66\xc2\x66\x2e\x2f\x05\x01\x3e\x73\x82\xd6\x50\x41\x96\xe6\x7b\x09\x42\xb6\xed\x6d\x7d\x59\x1b\x35\x42\x76\x82\xa9\x7e\x6c\xd7\x12\x82\x89\x62\x8d\x8d\xff\x80\x01\x21\xe5\xec\xa3\x8f\x7b\x3d\xbc\x08\xab\x0e\x5c\x75\xdf\xd3\xaa\x4b\x18\xb4\x4a\x95\x69\x3e\xc7\x4d\x10\xcc\xbf\xd8\xf4\xea\x82\x30\x61\x40\x73\x90\x04\xc3\x3b\x19\x1c\xe9\xfa\xf4\x7a\x74\xfe\x22\xc2\xf7\x79\xcc\xb4\x49\x3c\xcb\x09\xa2\x97\x0f\x08\x34\xc8\x0b\x13\x1a\x9d\xfd\x45\xd6\x2c\x72\x24\x5c\xff\x55\x2c\x70\xfc\x93\x25\x81\x1c\xea\xcc\x0e\x3d\x9a\x4a\x38\x9d\xb5\x6a\x5d\xdd\x12\x63\x82\x81\x73\xaf\xbf\x3e\x97\x04\x1b\xb8\x0c\x0c\x27\xe4\x38\x1f\xaf\x1c\xc7\x55\xf5\xc6\xb5\xa7\xb3\x38\x08\x56\x97\x17\x4e\x0a\x54\x53\x24\x68\xac\x0b\x12\x34\xb3\x31\x26\x1c\x3a\x92\x20\xf8\xf6\xd6\x26\xc2\x63\xce\x2f\xa9\x2a\x4d\x36\x84\x31\xfb\x6b\x6d\xcc\xbb\xb5\x84\x37\xca\x6e\xee\xe2\x0e\xdb\xd8\xca\x5b\x81\xf7\x99\x47\x68\x1a\xa1\x4d\xe7\x5b\x44\xeb\x1d\x1b\x82\xcf\xee\xc1\xf5\x62\x0d\xaa\x6c\x98\x97\xb3\x26\x6b\x29\x47\x66\x25\x04\x4b\xef\x6c\xb8\x64\xac\x4f\x38\xd0\x34\xf6\xe3\x94\x51\x33\xc1\xb8\xf4\xdd\x97\xe5\xfd\x33\x08\x9e\xfb\xf7\x65\xd8\xef\x9e\x4a\x23\xc7\xe6\x47\xbf\xf3\xfa\xff\xff\xc0\xaa\x1d\x0e\xb5\x9f\xe0\x4e\x58\x74\x43\x49\x28\x70\x5d\x10\x61\x4f\xc5\x46\x51\x0b\xe1\x6f\x0c\xd2\xfa\x6f\xca\x35\x9d\xe2\xa2\x71\x44\xbe\x9f\x73\x80\x6f\xda\x0f\x06\xc6\xd7\x2e\xc9\xcb\xde\xa9\x22\x54\xdf\x94\x4d\x2e\x29\xa9\x20\x48\xc4\xbc\x54\x73\x79\x50\x40\x78\x3d\xdd\x6b\x6a\x3b\x5f\x21\x61\x8f\x70\xef\xd0\xd4\xe4\x3c\xc2\xd5\x7d\x55\x77\xfe\xc3\x86\xb8\xb7\x3c\x69\xba\xd5\x84\xa7\xca\x9d\x6b\x24\x34\x36\xb0\x60\xaf\xb8\xe6\xf8\xd7\x75\x07\x08\x11\x5b\x5b\xd5\x32\x0a\xab\x08\x1e\xcb\x36\xeb\x37\xd5\xd6\xb2\xf0\xcc\xc4\x29\xf8\xbc\xdd\x05\xc2\x87\x64\x87\xc3\xeb\x1f\xc7\x11\x76\xde\x6b\x58\x67\xac\x57\xc1\x02\xd5\xbf\x0a\x99\xdf\x17\x4c\xc8\xb9\x0f\x5e\xdb\xdb\xc7\x09\x67\x6c\x8d\x3f\x86\x3a\xa4\x12\x9e\x09\x3e\xc9\x37\x9d\x97\x43\xd8\x94\x33\xa3\x7d\xff\x5f\x5c\xee\xda\x33\xb4\xbf\xeb\x21\x0b\x6b\x37\x1d\xce\x39\xf4\xb7\xe8\x09\xa8\x5c\xbf\xa1\xe5\x48\x08\x59\x37\xc5\x5e\x2f\xf2\xef\xa9\x3a\xa5\xe5\x86\x0c\xcc\x58\xe3\x25\x5e\x79\x5b\xfa\xae\xdb\xbe\x84\xe0\x5b\x82\xeb\x0b\xdb\x73\x59\x10\x58\xdd\x12\xe8\xbf\xc6\x90\xc6\x11\x92\x32\x2d\x20\xcd\xc6\x96\xa0\xe8\x76\xc4\x25\x2d\xac\x96\x90\x11\xaa\x51\xce\xfc\xba\x48\x10\x91\x08\x2a\xf8\x6e\x99\x43\x50\x1b\x56\x7e\x7f\xe2\xef\xc4\x72\xbb\xee\x34\xb5\x67\x17\x61\xbd\x42\x44\x91\xaf\x48\x36\x61\xca\x95\xfc\x2f\x8b\xad\x8c\xd9\xf0\xfb\x8d\xba\xf7\x5c\x89\x56\x06\xd7\x2d\xc7\xde\x28\x3d\xf7\x21\xd4\xca\x7e\x37\xcf\x15\xf6\x21\xcc\xe8\xdb\x36\xb5\x23\x5e\x99\x30\xab\x57\x50\x6c\xb5\xd7\x5c\xc2\xe5\x7b\x13\x07\xa4\x64\x0d\x09\x58\x5c\x99\xb0\xe7\xfe\x30\x03\xd5\xb9\x2f\x7e\x18\x6f\xb2\x25\x7c\xd6\x45\x28\xe7\x4c\x75\x02\x6b\xfa\x8c\x9c\x53\x5b\xf4\x08\x9e\x27\x87\x32\xad\x3f\xe8\x12\xc4\xaf\xae\x19\x5d\x1b\xa2\x4a\xb8\x7f\x56\xe5\x95\xd8\x16\x03\xc2\xf5\x14\x45\xc7\xd1\x1e\x1f\xc2\x36\x9b\xb5\xbe\x32\xce\x2e\x84\x27\xfe\x9f\x66\x24\x87\xa4\x12\x2a\x18\xd1\x33\x65\x13\xb7\x13\xcc\xef\x72\xbe\xbc\xeb\xbe\x84\x70\xa3\xfe\x9d\x77\xe0\xf0\x0e\x16\x8a\xbf\xba\xde\xb9\xbc\x2a\x84\x50\x65\x5d\x9e\xba\xcc\x3c\x8b\xd0\x74\x23\x7d\xe9\x35\xd9\xcb\x2c\xa8\xde\xbf\x30\xda\xbe\x34\x8b\x30\x7b\xbb\x16\x73\xf6\x9e\x2f\x61\x7e\xdc\xa9\x33\x69\xd7\xc2\x09\xd2\x77\x5b\x82\x2c\xb7\x1a\x10\x0e\xb6\x09\x7c\x97\x0a\x7a\xcc\x40\x72\x6c\x60\xc0\xc0\x6d\x0e\xe1\xfc\x99\x8d\xf5\xcf\xe6\x09\xb1\xa1\x6e\x40\xa0\x9a\xef\xba\x30\xe1\xba\x90\x7c\x77\xac\x19\x17\x1b\xc4\x0a\xcb\xab\xd6\x33\x4e\x04\x7f\x4e\x5f\xc9\xd7\x91\x7a\x84\x00\x5f\xc3\xf3\x6b\xeb\xe4\x09\x07\x14\xc3\x9b\xd2\xde\x38\x10\x1e\x3e\xfe\xb3\xa5\x34\xc0\x8e\xa0\xd1\x51\x22\xbf\x4a\x8f\x8f\x10\x2c\xf2\x43\x61\xe0\x80\x01\xc1\x67\x24\xe5\x84\xd1\x7c\x22\x28\xb7\x0c\x88\x2f\xd3\xdf\x46\x90\x7e\x5d\x7f\xc4\x23\xc3\x9c\x30\x5d\xa2\xab\x54\x61\xcb\x7c\xc2\x3e\xa9\xc3\xf5\xc6\x66\x9c\x84\x8c\xc0\xf0\x7e\xe5\xb9\x4e\x84\x57\xf9\x93\x5b\x8e\x16\xe4\x13\x1e\x54\x3e\xad\x7e\x2a\x71\x86\x60\xdb\xb5\x75\x65\x7f\xfe\x3e\x42\xec\xec\x39\x02\xab\xfa\x2c\x09\x37\x22\xea\xad\xae\xaf\x6d\x62\xe0\xb8\x7c\xf9\xee\x58\xcd\x09\x34\x8e\x2d\x1f\x24\xb2\x0e\xf2\x71\x11\x78\xfa\x76\x96\x0e\x56\x99\x11\x9c\x6f\x46\x07\x4b\x09\xeb\x12\x3a\x3e\x3e\x14\x53\x58\xe4\xc4\x86\xfa\x30\xac\x3b\xa3\x22\x46\x98\xd5\x1c\xdf\xb9\xd0\x27\x9b\xf0\x44\x57\x34\x38\x5b\x3b\x9b\xf0\x3b\xc8\x29\x2f\x6d\xf1\x31\x82\x6e\x64\xd8\x82\x83\x36\x4d\x04\x19\x1b\x01\xce\x69\x0f\x07\x08\x1f\x5c\xb7\x65\x3b\xcf\x4a\x20\xec\x4e\x5d\x62\x5f\xf6\x22\x99\xd0\x34\x45\x68\x35\xe7\x2f\xf7\x7f\xe1\xc3\x6b\x65\x8b\x80\x70\x11\x42\xff\x27\xed\x1d\xd2\x4a\x23\x0c\x0c\x16\x8d\x39\xbc\x10\x15\x24\xc4\x4a\x95\xc6\xed\x7f\xa7\xcd\x86\xd9\x89\x32\x37\x1a\xfb\x97\x10\xb4\x82\xcc\xcb\x3c\x2e\x4e\x20\x64\xbb\xb5\x35\x7b\x75\xac\x25\xf0\x68\x05\x07\x6c\xcb\x59\x49\xf0\x3b\xbe\x3a\x7c\x69\xa3\x03\x61\xe5\xd6\x48\x19\x71\xcd\x5a\x82\xd8\x9a\xc3\x0f\x16\x4d\x2e\x25\x88\x55\x66\x49\xed\x2f\xad\x21\xec\xf0\xbb\x55\x3d\x6f\x49\x2d\x61\xc3\xb7\x89\x47\xb7\xf1\xe6\x12\x66\x79\x2f\xdc\xb1\xe8\x70\x13\x81\x49\xe2\x9c\xda\xc9\xd7\x48\xd8\xb5\xdb\x65\x27\x8f\x4b\x3a\x61\x6d\xf8\x94\xee\x50\xee\x34\x82\x49\x82\xf4\x9c\x39\x6f\xcf\xb2\x20\x57\x57\x5d\x3e\xf8\x2c\x9d\xf0\xe4\x42\xd3\x71\xbf\x45\xd7\x08\x4e\xda\x5a\xf3\x1f\x85\x36\x10\xf2\xee\xbd\xb5\xdc\xa7\x71\x82\xa0\xa6\x3b\xe5\xd0\xa6\x95\x8f\x08\x66\xb5\x7e\xef\xf7\x04\xa7\x12\xac\xed\x84\xcd\x9e\x34\x28\x12\x76\x6e\xf7\xee\x2e\x1b\x9b\x42\x68\xcb\x0e\x3f\xfb\x72\x9d\x01\x1b\x5a\x43\xf4\xaf\x24\xe7\x75\x54\x62\x5d\xed\xd9\xd7\x7f\xca\xb8\x08\xe5\x82\xce\xe1\xb2\x65\x16\x6c\xd0\x8c\x0f\x72\xbc\x3f\x3c\x8b\x10\x3f\xd7\xcd\xde\xca\x33\x99\x30\xbf\x0d\xaf\x0e\xd6\x0a\x12\x34\xab\x3e\xce\x53\xdb\x2a\x4a\x58\x10\xd1\xfb\xe2\x72\x98\x03\xc1\xe6\x65\x59\xf6\xbb\x9f\xc6\x84\xc0\x46\x17\xf7\x1f\xbe\xe6\x04\x4b\xdb\x63\x67\x4f\x18\x78\x13\xce\x14\x7d\x78\xe4\xe0\xbc\x90\xb0\xeb\xcd\xad\x96\x39\x95\xeb\x08\x51\x97\x0f\x48\xec\xff\x21\x46\xf8\x70\xcb\x7d\xc5\x3b\xd7\xa9\x84\xf5\xfc\x59\xa6\xbf\x7a\x4d\x09\xf6\xe2\x71\xac\xe8\xe0\x6a\x06\xd1\x05\xbb\x9d\xbf\xbb\x5a\x11\x6c\xa2\x36\xae\xbb\xb3\xb7\x83\x20\xcf\xa9\xf8\xfa\xde\x77\x47\xc2\x66\xb7\x85\x63\x3b\xf5\xcc\x09\xe1\x17\x4d\x02\x8d\x9e\xaf\x27\x48\xdc\x9e\xbe\xe9\xbe\xf2\x7c\x02\xff\x19\x4d\xe3\xd9\xaa\xf2\x84\x95\xfe\x2b\xaf\x24\x58\x1a\x11\xfc\x3f\x38\xeb\x35\x1d\x1c\x60\x70\x31\x93\x27\xe6\xd1\xb2\x21\x06\x8e\x3e\x53\x0c\x46\x8f\x76\x33\xe0\x3f\x10\xed\xf9\xd5\x43\x88\x90\x66\x12\xea\x26\xe4\x6b\x4f\x28\xc8\x79\xfb\xd4\x39\x6a\x0e\xa1\x65\xf7\xdb\xd7\x42\x39\x5a\x84\x34\xb2\xc9\x9c\xbe\x53\x89\x30\x62\xe8\x2e\xe0\xa9\xae\x4b\x48\x70\xad\x52\x2d\x3e\xd9\xc2\x00\x95\xf7\x55\x96\xe8\xf3\xd0\x38\x5c\x8f\xce\xfe\x70\xbd\xa3\xa6\x12\x4f\x6e\x7e\xda\x27\x24\x9f\x4d\x48\xd8\x6c\xe1\xf8\x35\x5d\x91\x70\x67\x41\xcb\x1b\x3b\x7f\x0e\x36\x1c\xbb\xb8\xb1\x40\xcd\xaf\xb1\x12\x05\x53\xef\xfa\xd8\x8f\x69\x12\x2e\x45\x95\xcd\x8d\x5f\x1a\x4a\x30\x3f\x2b\x98\xfa\x1f\xde\x7e\x6d\xe0\xe8\x89\x11\x21\x28\xcd\x55\x69\xd4\xf0\x36\x22\xdc\x8a\xb1\x68\x8a\xf6\xbf\xc5\x82\x58\xa0\xe2\x9c\x37\x1e\xb3\x08\x71\xbf\xd2\xb2\xcc\x3f\x6f\x66\x61\xe3\xe9\x7a\x7a\x76\x47\x9d\x30\x2f\xdf\x2f\xf9\x80\xd1\x62\x42\xb8\xb6\xe9\xa9\x49\xaa\xfc\x84\x4b\x76\x33\x85\xd5\x82\xb7\x10\xf6\x14\x47\x2c\x91\x2d\x5a\x4f\x98\xf2\x69\xd3\xce\x43\x29\xdf\x19\x68\xa9\x1d\x75\xbb\x7a\x46\x8f\xf0\xb4\x3f\xe9\x90\x4d\xdd\x3c\xc2\x8e\xb8\xf3\xd1\xcf\x57\xa9\x10\x4a\xf4\xac\xb3\xc4\x64\xeb\x18\x9c\xbc\x61\x70\x78\xcd\x62\x33\x1a\xc7\xa5\xcd\xc7\x77\x4d\xfc\xa2\x40\x30\x93\x3a\xf3\xaa\xaf\xed\xef\x3b\x2a\x67\xa2\x56\xfe\xf9\x20\x82\x94\xd5\xf0\xbd\xcb\xab\xad\x09\x3f\x0b\x6a\xcf\xa4\xfb\x8e\x30\xd0\x2e\x13\x93\x59\xb6\xde\x85\x30\x33\x49\xf7\x4d\x46\xb8\x05\xe1\xa7\x43\xbe\xca\xf9\xdf\xcb\x09\x1a\x6f\x6b\x77\xed\x5a\x2b\x4e\x28\xdc\x6e\xbe\xa6\x3a\xd6\x94\xe0\xfc\xfe\xa1\xae\x70\x88\x0b\x1b\xd4\x9e\x79\x8c\x71\xc6\x75\x32\x90\x8b\x75\xee\x47\xee\x10\x83\x17\x52\x7c\x15\x2a\x97\x95\x08\x97\xb2\x56\xed\xe3\xb2\xd1\x22\xb4\x5b\xed\x29\x4b\xea\x9e\x4a\xb8\x15\x78\x63\xb2\xe3\xc7\x23\x84\xa1\x98\x57\xfe\x93\xb2\x7a\x19\x3c\x44\xcf\xee\x86\x22\x63\xc2\xb9\x35\x13\x4b\xa6\xbc\x34\x22\x4c\x9b\xe7\x99\xce\x7f\x7c\x31\x81\xe3\x47\xd8\x25\x99\xc2\x01\x06\x16\x89\xae\xe2\x77\x9f\x24\xd0\x38\x5a\xb4\x6f\x14\x19\x8d\x25\x11\x82\xba\xcf\xa5\xff\xbf\xb8\x7d\xe1\xda\x54\x01\x69\x2d\x42\x40\x60\xd3\x1f\xc3\x59\x43\x0c\x84\xdb\xa5\x1f\xdb\x73\xeb\xd0\x38\xb6\x5a\x8c\x59\xde\x35\x91\x27\x38\x0e\x5f\x72\x58\xcb\xa5\x45\xb8\x37\x71\xf6\x9d\xc9\x12\xdc\x04\xa6\xfb\x4c\x88\xfb\x23\x6f\xc2\x6b\xaa\x9a\xd9\x2f\x62\x4e\x78\x97\x72\x79\x6d\xbc\xb1\x0e\x41\x8a\xf5\x26\x79\xa1\xb9\x26\x61\xbe\xd9\xbc\x45\xa2\xc6\x2a\x04\x19\xcf\xcf\xb2\xa5\x57\x7e\x32\xc8\x3a\x5f\x16\x30\xb8\x58\x92\x50\xeb\xfa\xe8\xd5\xca\x10\x63\x36\xb4\x1d\x9e\x7c\xfe\x41\xe4\x1d\x06\x5b\x53\x8f\x8b\x78\xc9\xcd\x20\x78\xe4\xbf\xb1\xdc\x7f\xcd\x87\x10\xb5\x5d\xed\x42\xcf\xea\x9e\x4a\x7c\xb7\xa8\xe7\xee\xf6\xe2\x24\x58\xe8\x94\xb0\xd6\xea\x27\x10\x66\x86\xd7\x67\x7f\xe7\xb7\x27\x48\x1c\x6b\x2e\x08\xc8\x9b\x46\x58\x2a\xf3\xd8\xf8\xc9\xcb\xc9\x84\x67\x7b\x92\xcb\x84\x4a\x39\x09\xfe\xd3\xaf\x7a\x1d\xdd\xd4\xc3\x60\x76\x6b\x8f\xaf\xcf\x5c\x0b\x42\x53\x90\xd2\x5b\xa9\x66\x31\x82\xb0\x68\xfc\xda\xf9\x35\x0b\x08\xe1\xef\x3f\x23\x67\x4c\x8e\x20\x78\xc7\xac\xa5\x7e\xdf\x5c\x42\xee\xf9\x6a\xfd\xeb\x9b\xc4\x09\x39\x87\x43\xc7\xda\x75\x1d\x09\x8f\x16\xd6\xfe\x7a\x5d\xa4\x44\x68\x18\xe4\xfe\xec\xae\xcb\x49\x70\x8f\xa4\x8b\x55\x0b\xed\x09\x75\x02\x0d\x4f\x54\x52\x04\xd8\x30\xd3\xc0\xf1\xb0\xa5\xcd\x20\x83\x73\xeb\xb6\xae\x09\x59\x14\x4b\xd8\xa7\xa9\xe4\x99\x1a\xef\x44\x88\xdc\xe0\xc3\x59\xbe\x4d\x92\xa0\x14\xbe\xe3\xa4\x45\xd1\x44\xc2\xa7\xc7\x2a\x9a\xc3\xc9\x3d\x0c\x1c\x8d\x03\xa2\x1e\xac\x98\x4e\xb0\xd0\xbc\xfc\xb2\xa7\x5f\x8c\x30\xd0\xce\xed\x59\x1f\xc2\x41\x38\x24\xc9\x5f\xa6\x77\x56\x96\x20\xb1\xdb\xf3\x46\x3f\xb3\x9a\xa0\xe5\x5c\x71\xdf\x67\x57\x2c\xc1\xd4\xc9\xfd\xc0\xc2\x3b\xeb\x08\x63\x2f\x42\xd4\xf2\x3e\x0b\xd3\xcf\x88\x4f\xdc\xee\x1f\x14\x09\x01\xda\x41\xb3\xf4\xc4\xdb\x19\x3c\x1b\xb9\x30\x30\xb3\xeb\x18\x0b\x9e\x1c\xaf\x54\xb6\x7e\xbe\x4a\x48\xdd\x5a\x34\xbc\xe5\x2f\x66\xae\x51\x3b\x30\xac\x71\x96\x20\xb8\x65\x51\xb6\xef\xa1\x31\x06\xfe\x2f\x39\xae\x0b\x7f\x9b\x48\x68\xdd\x35\xa8\x2e\x42\xbf\x18\x68\xaf\xd3\x9f\x59\x92\x6c\x48\x78\x37\x78\x34\x2f\x76\xe5\x6f\x06\x8f\xec\x1a\x77\xed\x5a\x5c\x45\xc8\x10\xba\x1c\x7f\x20\x69\x0b\xc1\xa1\x6e\xe8\xc4\xcd\x3f\x51\x84\x87\xa5\x07\xaf\x84\xfa\xef\x22\x5c\x6e\x79\x03\xe5\x8f\x16\x84\x70\x96\xf0\x41\x1d\x62\x11\x58\x99\xe5\x55\x7d\x8e\xd5\x84\xd4\xd1\xa4\xd0\x3c\x8e\xc7\x84\x12\xdb\xcd\x4e\x1c\x4b\xd8\xa7\x3d\x29\x07\xfd\xf5\xf6\x9c\x25\xd8\xbb\x57\x66\x4d\x90\xc8\x60\xc3\xff\x77\x52\x2e\x7c\xe1\x1a\x2e\x99\x41\x70\x61\x76\xbe\xad\x38\x7a\x91\xb0\x4b\x41\x5a\xed\xcf\x84\x93\x6c\x28\x1d\xcb\xf5\x4b\xea\x3e\x4e\x68\xfb\x52\x1c\x7e\xa5\x2f\x9d\x6d\x32\xbf\xf7\x7b\xdf\xcc\x89\x57\x09\xc9\x2c\xc1\x19\xbb\xba\x8a\x09\xcf\x63\x12\x67\xf9\xcf\x3b\x41\x10\x92\x7f\x71\x5a\x76\xee\x09\x42\xed\xec\x59\x07\xa7\xf0\x2c\xa0\x9f\xee\x7b\x1b\x6e\x3d\x69\x25\x04\x37\x68\x38\x95\x8c\x56\x10\xba\x76\xcc\xba\xbd\x3b\xa2\x8e\xb0\xe2\x4e\xfe\xd5\xa2\xbf\xa5\x54\xbb\x81\xb9\x55\x7d\x93\x05\x0b\x09\x6b\x1e\x97\x0d\xb1\x84\x35\x0d\x05\xd7\xd6\xc6\x66\x12\xf4\x77\x7a\x72\xad\x5f\x52\x42\x30\x94\x5d\x66\x51\xe2\x96\x4d\x30\xe3\x6a\x3d\xca\x25\x56\xc5\xc2\xfb\xbe\xbe\x4d\x39\x35\x87\x08\x1c\xa2\x13\x8b\x1b\x0f\x5d\x24\x14\xf8\xcf\x79\xb3\x4a\xbd\x98\x70\x64\x77\xbd\x93\x8a\x7f\x35\x41\xbe\x5c\x4b\x68\xfd\xdb\xeb\x84\x53\x21\x36\x96\x2b\x8e\x54\x13\x84\x1f\xcd\x9f\x9b\xbe\xd7\x9d\xe0\x75\xf8\xd7\x61\xb7\xa2\x6a\x42\x5d\x7a\xa9\xa9\x38\x73\x83\x10\xf8\xa1\xf2\xe5\x84\x83\x67\x09\xc3\xf1\x7e\xd7\x98\xc2\x6a\xc2\xea\x4f\x9c\xd3\x87\xbc\x62\x09\x1b\x6f\x17\xe8\x1b\x79\x65\x12\xe2\xf7\xac\x17\x58\x2d\xbe\x89\x50\xce\xd3\x58\x30\x63\xaf\x22\xe1\xad\xdf\xca\x3d\x27\xaf\x2a\x10\x96\x3d\xaa\xb2\x5f\x18\xa2\x44\x18\x4d\x39\xaa\xe1\x22\xa4\x48\x50\x6d\x12\xcb\x6c\x77\x17\x26\x78\x8e\xf9\xc9\xd7\xf3\xe8\xb1\x21\xc0\x4e\xea\xee\x57\xe1\x63\x95\xc8\x14\xcf\xbe\xaa\x92\xa8\x49\x68\x53\x3a\x3c\xfb\x7d\x24\x17\x61\x1b\xcb\xbb\xc6\x39\xc4\x92\x90\xaa\x2d\x1b\x9a\x78\x4b\x8f\xf0\x35\x62\x66\xdf\xad\x5d\xf6\x84\xf2\x63\x2b\x93\xa6\xfe\x58\x46\x88\xba\x2f\x16\x9f\xad\x22\x4d\xe8\x33\x84\x6f\xe3\x13\x6b\x82\xd1\xbb\x23\x29\x8e\xb5\x0b\x09\xb8\xf7\x84\xc7\x9a\x9b\x97\x70\x87\xfa\xb3\x75\xb3\xcd\x08\x1f\x36\x6c\xc9\xb6\xf2\xb1\x27\xc8\x5b\x14\x0b\x1f\xb8\xef\x49\xb8\xdc\x1e\x9c\x35\x49\x45\x9e\xb0\xf6\x8f\x58\xd5\x9a\x00\x7e\xc2\x3b\xb3\xc4\xa1\xe9\x9f\x2d\x08\xa5\x27\x83\x9a\x7d\xf6\xbd\x65\xb0\x29\x5f\xa2\x40\xd2\xcb\x9c\x60\x75\xa6\x95\x5f\x7b\x8b\x2b\x21\xa0\xca\xa1\x7f\x9a\x8e\x35\xe1\xe6\xec\xd0\xc5\x32\x66\x56\x04\xf1\x1d\xb2\x15\x47\x9f\x05\x11\xde\xf0\xd9\x7c\xb0\xf8\x2d\x45\x18\x5e\x5a\x77\xdb\x73\xe1\x52\xc2\xe1\xde\x79\xa7\x22\xef\xfc\x62\x20\x1b\x7e\x20\x42\xa5\x4b\x92\x90\xf4\xf5\xf1\xa5\xb2\xc1\xed\x84\x15\x0d\xb4\x6d\x62\x83\x24\x61\xe1\x9e\x9c\x8c\xf6\x24\x2f\x42\x2c\x17\x1e\xae\xaf\x65\x08\x89\xd6\xd7\x8e\xc7\x3c\xe2\x25\xcc\x29\xba\x9d\xc9\xa5\x38\x93\x90\x78\x70\x7a\x44\x48\x23\x27\x41\xd9\xe6\xba\x40\xc7\x03\x0e\x42\xc5\xda\xe6\x81\xc8\xbe\x29\x84\xe7\x2b\xf5\xd4\x63\x5e\x2d\x22\x1c\xab\x6e\x7f\xf1\x87\x0c\x09\x2a\x22\x47\x7b\x7e\x3d\xd5\x27\xe8\x4c\xef\xd9\x3e\x43\xbb\x9f\x41\xb9\xb3\x5c\xde\xfb\x82\xe5\x84\x99\x5b\x2d\x3d\x3c\x14\xec\x08\x9f\xe6\x45\x0a\x5b\x3e\xd2\x23\xbc\xed\x9c\xdd\xb4\xe5\x1a\x0f\xa1\xf0\x10\xdf\x94\x25\x41\x83\x0c\x56\x94\x1c\x5d\xa1\xe3\xba\x8c\xc0\x93\xb3\xe9\xd8\x09\x43\x53\x02\x67\xf8\xda\x99\xb2\x43\x8d\x84\x80\xdb\xef\x3c\xa7\xff\xc5\x9e\x96\x5b\xbd\xa2\x46\xa2\x84\x47\xda\x15\x2b\x66\xdf\x51\x61\xc3\x96\xf8\xd7\x9e\x92\x29\xcd\x0c\x82\xe2\x0a\x45\xf6\x4e\xd6\x20\x9c\x0d\xe4\x8f\xd9\x25\xa0\x4f\x48\xb1\x3a\x90\xa8\x11\xa8\x4b\xf8\xf9\x68\xb8\xb7\x35\x46\x93\xe0\x16\xa6\xe9\x1b\xb6\x71\x21\xe1\xe6\x35\xfb\x18\x5b\x95\xbf\x77\x67\xb9\xf6\xd2\xa3\xda\xe2\x84\xb3\xe9\x15\xea\x3b\x56\x28\xb0\x21\x24\x69\x6f\xa2\x97\xc5\xab\x4a\xc4\x79\x26\xdc\x89\xe5\x89\x22\x2c\x6c\x0c\xf4\xcf\x98\xa5\x45\x18\x6b\x8a\xb7\xfb\xcd\x63\x45\xb8\x78\xa6\xeb\xa2\xdc\xdf\xe3\xd4\x96\x91\x6d\x42\x8d\xbf\x16\xb0\xe1\xc1\xa7\xf0\x24\xeb\x8a\x21\x06\xf9\xaa\x23\x9c\xc6\xa6\x3e\x84\xb9\x0f\x6a\x0f\xff\x19\x92\x23\x7c\x1b\x58\xda\x1d\xb5\x72\x11\xe1\xae\xdc\x17\x93\xd2\x37\x56\x84\x75\x7b\xbe\xbe\xc9\x19\xe4\x22\xcc\x7c\x90\xb9\xe1\xfd\x34\x4d\xc2\xde\x7a\xd3\xeb\xdb\x6e\x31\x04\xb9\x13\xb6\xf4\xf3\x5a\x05\x0b\xe7\x5d\x29\x4b\x71\xa2\x27\x21\x58\xd7\x61\x95\xac\xe5\x5a\x82\x55\x6d\xe0\x43\xa7\x15\x2b\x58\x58\xf3\xc0\xdd\xf5\xf8\x34\x3d\x42\xd4\xfa\xa7\xb2\x39\xa6\x52\x04\xab\x0f\xce\xcf\x96\xcb\x84\x10\xa4\xa6\xa7\xf0\x44\xff\x92\x21\x0c\xdd\x1e\xda\x38\x65\x68\x1d\x0b\x37\xbb\xb7\xcf\x37\x63\x04\x09\x72\x3f\x85\xbc\xad\xfe\x7e\xbd\xb2\xaf\xdd\x2f\xca\x31\x34\x22\xe4\x25\x0f\xaf\xba\xf1\xf7\xf0\x3d\xb3\x70\x51\x45\xcf\x51\x1b\x36\x54\x9d\xf4\x5c\x66\xaf\xa1\x47\x78\xb0\xdf\xbc\xdd\xca\x5f\x9b\x90\xb1\xf5\xe0\x57\xc7\x9c\x07\x0c\x66\xae\x79\xa5\x10\xd0\x6a\x45\x98\x3d\xf7\xcb\xb3\xad\x89\x96\x04\xe3\xd7\x7f\xbc\x77\x84\x81\xc1\x4a\x31\xb2\xbc\xa9\x3e\x91\x20\x26\x50\xab\x1d\x3e\xa6\x41\x98\x74\x81\x63\x48\xa0\x5b\x86\x20\xfb\x61\xda\x2d\xcd\x1d\xcb\x08\xed\x86\x2f\x14\x26\xce\x9a\x41\x38\xa4\x7c\xe4\xe2\x7e\x5e\x35\x36\xfc\x7c\xab\xb0\xa2\x72\xa8\x85\x41\xa4\x66\x54\xbc\xf3\x92\xf7\x0c\x2a\x44\x39\x9a\x92\x76\x7e\x63\x83\x8d\x85\xe3\xb1\xe1\x4c\x5e\xc2\x8c\xe8\xe9\x5c\x67\xcd\x2a\x18\x8c\xd1\xd8\xcd\x1c\xf7\x13\x34\x0e\xc3\xbd\xc9\x56\x2a\xe7\xed\x08\x5f\xbe\x36\x3b\xc9\x65\x3c\x24\xc8\xb9\x18\xf5\xb9\x4f\xd8\x41\x48\x0b\x52\x95\xdf\xfe\x7e\x1f\x0b\xfd\xe4\x72\x55\x54\x7c\x16\xe1\x84\xf7\xc0\xda\x27\xe7\x4c\xd8\x20\xb0\xb3\x5b\x44\x22\x6b\x3d\x41\x74\xef\xfb\x0a\x28\x89\x13\xb4\xf8\xea\xce\x05\x84\x19\x11\x86\x36\x1d\x5a\x2b\x74\x55\x92\x30\x10\xe3\xcd\xbd\xa1\x6d\x19\xc1\xb8\xfa\xf7\xaa\x15\xfb\xb5\x08\x5d\xef\xf9\x85\x82\x1b\xc1\xa0\x46\xa6\x67\xc9\x5c\xcb\xd5\x04\x8d\xd9\x86\x4d\x87\xb4\x56\x13\x4c\x2f\xfb\xa4\x9d\xdc\x7c\x9e\x85\x57\x57\x74\x5d\x0a\x2a\xdc\x09\x17\x0e\xec\xde\x20\xe7\xc9\x10\xe2\x72\x55\xed\x4d\xc5\x97\x10\x16\xe9\xb9\xcf\x35\x38\xb4\x88\x70\x6f\x93\xb3\xc0\x7e\x63\x86\xc0\x61\x5f\xb6\xd4\x6d\x82\x04\x21\x2b\xea\x44\xe8\xfc\x25\x3f\x99\xf1\xb2\x50\xd1\x6c\xf6\x54\x0e\x61\x42\xc8\x2a\x9f\x59\xdf\x33\xa4\x09\x7c\x3c\x1d\x2a\x1f\xdb\xb6\xb2\x70\x49\x37\x63\x8a\x5b\xbc\x2a\x41\x2e\x3a\x39\x30\xe3\xba\x3b\xc1\xa7\x63\x67\x64\xf9\x06\x6b\x82\x70\x84\xc5\x1d\xe1\xec\x28\x42\x52\x4f\x7a\x66\xef\xba\x63\x6c\xe5\xc2\xe3\x2c\xad\x00\xe1\xf9\x04\xa7\x99\xb3\x47\x2b\x4e\xfb\xb2\x15\xdb\xd7\xb6\x3b\xb6\x3e\x98\x40\xa8\xdb\x6f\xd5\x52\x22\xfc\x93\xc1\x8a\xee\x23\x45\x6f\x93\xbe\xb1\x21\x4c\x64\xaa\xce\xda\x9a\xb9\x84\x8d\x87\x64\x64\xe7\xf3\xcc\x27\xf8\x7a\x18\x4d\x0c\x8d\xcc\x62\xc3\xaf\x19\x2b\x7d\x38\x92\x86\x98\x71\x5c\x13\xe2\xf1\x76\x71\x5a\x45\xd0\x1f\xdd\xa7\x39\xc1\x16\x0c\xde\xb6\x30\xa4\xbd\x63\x13\x41\x22\x20\xf3\x7b\xf5\xd9\x0c\x42\x70\x4c\x4a\x4a\xd5\xb7\x12\x42\xfe\xf0\x06\xff\xff\x10\x72\x3c\xf1\xfe\x6a\xd1\x22\xc2\x05\x89\xa5\xb5\x9c\xf5\x2b\x09\x8d\x4b\x1d\x04\x1e\x6f\xb4\x26\x1c\xde\xc7\x7b\x3c\xe0\xef\x83\x96\x78\xc1\xf4\x8b\x46\xb9\x32\x41\xf7\xd8\xf7\x06\x9b\xe6\x69\x04\x15\xa9\x69\x4b\x0d\x95\x1e\x33\xb0\x09\xec\x7c\x20\x3c\xfd\x27\x1b\xae\xf1\xab\xee\xe5\x4a\xe5\x22\xa8\xcb\x97\xde\xf2\x5b\x91\x4d\x98\xde\xa8\x18\x5c\x7b\x33\x93\x50\x58\x5a\xe2\xe2\xb7\x47\x83\x70\xed\x67\xf5\xc1\x7b\xcf\x54\x09\x61\x23\x99\x95\x87\x0f\x0a\x10\x9e\x86\x39\xf2\x9a\xcf\x38\xca\x06\x3e\x25\x46\x9e\xa3\x22\x84\xf0\x6b\x77\x54\xfc\xcd\x2c\x63\xc2\xc1\xd9\xab\x15\xcb\x43\x79\x08\x75\x9b\x1e\xb4\xab\x5c\x9e\xc1\x86\x18\x27\xef\xfe\xdb\xee\x13\x08\xcc\xd7\x37\xfe\xc1\x5b\xed\x08\x61\x36\x72\x62\x59\x02\xcd\x0c\x5e\xbc\xf0\x3f\x9f\x70\x5f\x88\xc0\x31\xab\xb4\x65\x93\xee\x18\x03\x9f\xbd\x27\xf5\x26\xb9\x0f\x33\xd0\x33\xe9\x1c\xee\xde\x57\x4b\x68\x5f\xd3\xb6\xed\x64\x7f\x0d\x0b\x59\x4d\x13\xc2\x02\xa6\x5f\x63\x61\xe5\x02\xeb\x8d\xcf\xd4\x6e\x13\xcc\x6d\x6e\xb6\xaf\x7c\xb6\x96\xa0\x3f\x95\x3a\x65\x36\x4e\x22\xf4\xa6\xee\xfd\x73\xe1\x64\x35\xc1\xe0\x67\xda\xd9\x6b\x39\x49\x6c\x50\xf9\x5d\x88\xd6\x29\x11\x84\x98\xe3\x7c\x29\x6e\x53\xf8\x09\xa5\x45\x5e\x87\xbb\x4d\x78\x09\xa1\xa7\xfc\xc2\x8d\x37\x8a\x11\xf4\x4a\xb2\x72\x66\xe6\xf1\x10\x78\x3a\xd3\xe4\xe7\x3d\x8e\x63\x83\xfc\xd0\x46\x97\x98\x55\xde\x04\xb7\x1d\x8f\x95\x65\xbc\x9b\x19\x18\x95\xd6\x6e\xdb\x2d\xc2\x41\xe3\x68\x35\xad\xe8\xf9\x26\xa0\x4d\xe0\x7a\xb0\x21\x9d\x7b\xc0\x88\xb0\x41\xdc\x52\xa0\x48\x42\x91\xa0\xa8\xbd\xe5\xaa\xbd\x94\x3e\x61\xb2\x9c\x88\x55\xf8\x29\x6d\x82\xed\xda\x40\x6d\xed\xd1\x85\x84\x7d\x93\xa7\x8b\x6d\x0f\x30\x26\x74\x09\xfb\x3c\x6e\x6e\x79\xce\xe0\xcd\xe8\xf7\xcf\xc6\x0b\xfc\x09\x8d\x99\xcb\x0f\x71\xc5\x73\x11\x4a\x4f\x9f\xe2\xdf\xab\x2c\xcb\x06\xdb\x07\x97\x25\xe8\xd7\x9b\x4a\x74\x04\xee\xdc\xdf\x91\xaf\x48\x58\xb0\xe3\x9e\x9e\x3e\x7d\x62\x60\x32\x9a\xba\x30\xa3\x9b\x08\x15\x2f\xec\x56\x6f\x8c\xd0\x20\xc4\x2e\xaf\x0f\x78\xe6\xdb\x52\x89\x17\x17\xce\x3d\x2a\x5c\xa0\x4b\xe3\x78\xa8\xbb\xfa\x9a\x96\x30\x43\x08\x5e\x54\x74\xbe\x3b\x77\x01\xe1\x54\x6c\xb3\x56\x5e\x8d\x35\x41\xaa\x8d\x4c\xc3\x3b\xb5\x08\x88\x79\x17\x7b\x85\x8b\x8f\xc0\x7b\xcb\x56\xec\xb9\x91\x35\x21\x2c\xc9\x81\xaf\x6d\x73\x4e\x25\xce\x49\xf0\x5f\xbe\x7e\x29\x8a\xc6\xf1\xfc\xd8\xbc\xb7\xaa\x5a\x7a\x6c\xa8\x08\xa9\x48\x59\xb5\x6f\x06\xc1\x36\x5e\xac\xc9\x2c\x62\x11\xc1\x54\x75\xe1\x13\x9f\x5c\x71\xc2\x2a\xae\x07\x89\x43\xf6\x93\x09\x85\x9b\xb9\xee\x27\x5c\x54\x27\x7c\x9e\xfa\xaa\xca\xec\xf5\x2c\xc2\xc2\xd3\x4f\xf7\x2c\xd9\xa4\x4b\x88\x96\x99\x17\xf0\xfe\xb7\x2a\xe1\x54\xa2\xd2\x1f\x9b\x13\x86\x84\xfd\x7d\x8e\xe9\x7b\x12\x43\x08\xd5\xce\xe9\x1b\xa7\x0b\xd8\x13\x42\x35\x5b\xb9\xb8\x07\x79\x09\x67\x63\x6f\xd7\x16\xb6\x6d\x27\xac\x75\x6d\xd4\x7e\xf8\x58\x87\x30\xf5\x89\xfa\xf9\x03\x1f\x3e\x30\x50\x0e\xce\x5a\xf0\x56\xb7\x96\x81\x75\x48\x59\x81\xed\x56\x11\x1a\x47\x83\x89\x90\x7d\x4b\x3c\x27\x21\xa8\xd7\x35\xd1\xab\x9e\x21\x28\x61\x91\xee\x6b\x13\x21\xc2\xda\x0e\x0b\x4a\x52\xfb\x7b\x55\xd3\x58\xe5\xf2\x1f\x24\x37\xcd\xee\x9b\x5c\xef\xf2\xf7\xba\x22\xb1\x3e\x54\x6d\x06\xe1\x53\x64\xa5\xab\xca\xfc\x05\x84\xba\xc0\xc0\xd3\xe5\x87\xbe\x31\xc8\x4d\xaa\x90\xe9\x78\xc1\xd0\x3f\x60\x91\xfd\x63\xa1\xc1\x95\x19\xff\xc2\x5e\x8e\x75\x2b\xba\x6e\x0e\x32\xa8\x3a\x53\x2e\x72\x87\x47\x91\xc0\x79\x3e\x32\xce\x70\xf9\x44\xc2\x6e\x83\x57\xb6\x89\xb1\x23\x0c\xec\x84\x3c\xef\xf0\x4d\xfa\xce\x86\x40\xa7\x27\x7c\xda\x6b\x1f\x32\xc8\xdb\x28\xf3\x6c\x83\xd5\x14\xc2\xb0\xd5\xd0\x66\x5f\x35\x07\xc2\xd4\x51\xdb\xa6\xc7\x55\x76\x84\x20\xa3\x3a\x81\xc9\x3e\x1f\x18\x5c\x4b\x89\x60\x75\xcc\xd0\x22\x24\x9b\xcc\x2f\xf8\xf2\xe2\x1c\x21\x31\xb4\x70\x82\x3e\x6f\x3c\x41\x57\xdc\x50\xe1\x4a\x63\x04\xc1\x88\xb3\xa0\x3b\xe0\x77\x1d\xe1\x8e\xd5\x8c\x65\x6b\x44\xf6\xb0\xd0\xba\x70\xc8\x30\xcf\x72\x07\x41\x70\xda\xee\x83\xcf\x4f\x1f\x21\x34\xa6\xbe\x76\x9a\x91\xe6\x44\xc8\xbd\xfd\x4e\x75\xea\xe1\x4c\xc2\x87\x78\xd1\xf2\x1f\x1b\x67\x12\x0e\xcc\xe0\xbd\x90\x99\x7a\x8c\x85\x8f\xb3\x8e\xc9\x68\xa9\x97\xb0\x20\x7b\x4a\x7f\xb7\x22\xf7\x43\x02\xef\x68\x8b\xc7\x92\x9f\x0f\x58\xd8\x90\x26\xf5\xe0\xc6\x9d\x72\x82\x62\xd3\x8d\x75\x0f\x28\x89\x05\x25\x81\xfb\xaa\x26\xef\xdf\x31\x58\x92\xf2\x62\x8a\xad\x86\x29\xfd\x03\xc1\xb5\xc6\x96\xc2\x7f\x76\xfe\x0b\xf9\xd1\x4b\x03\x9c\xd7\x04\x13\x14\x18\x9b\x59\x27\x62\x4c\x09\x87\x9a\x96\xda\x6e\xba\x37\x95\xa0\xb8\x8a\x71\xd8\xde\xdf\xc7\x80\x79\xdb\x68\xb6\xfe\xf6\x5b\x36\xac\x5a\x37\x5b\xd9\xbb\x4c\x82\x30\x33\x3e\x58\x88\x2f\x48\x9d\x7e\x2a\x1f\x31\xb6\xe7\x91\x26\xe4\xe4\xbe\x93\x39\x20\xa5\x40\xd0\x3f\xb8\xaf\x3e\xd3\x09\x0c\x58\x83\x9b\x9d\x96\x54\x69\x11\xf6\x2b\x1c\xfc\x33\x28\x71\x9c\xa0\x76\xb4\x28\xdb\xbf\xc5\x9c\xe0\xf8\x42\xb4\x66\x83\x2a\x18\xbc\x97\x49\xeb\x52\x3a\x50\x48\x88\x72\x57\x76\xe4\xfc\xd2\x40\xe3\x65\x6e\x74\xd2\x46\x87\xc5\xfb\x08\x42\xd1\x2a\x61\xda\xfd\xd6\x84\xb8\xc7\x06\xaa\xd2\x58\x44\xc8\xae\xf8\xa5\xa6\x23\xa4\xc0\x86\xf8\x4d\x72\xfc\x2a\x5e\xb2\x84\x05\xd6\xf7\x9a\xec\x52\x9b\x08\x96\x45\x1b\x66\xf4\x89\xbf\x61\xa1\x20\xaa\x3a\xeb\x43\x5c\x2d\xa1\xbc\x24\xef\x56\xc5\xba\xe9\x04\x67\xb3\x82\xc8\xdf\x6a\x45\x84\x79\xcd\x9f\x74\x38\xd5\x8b\x08\xcb\x9f\x6f\xfd\x5d\xb0\x79\x15\x1b\xfe\xec\x5d\xac\xdb\x3b\xbc\x9a\x30\x79\x68\x8f\x82\x5a\x92\x03\xe1\xf7\xb7\x89\x29\x56\xbe\x4e\x04\xa3\xba\x06\xc7\xa7\xd5\xd1\x6c\xd0\xf2\x8b\x96\x1c\x5a\xe7\x47\x18\x93\xf3\xdf\x11\xf6\x4b\x85\x10\xd4\x31\x94\x7b\x04\x87\xd9\x70\xd5\x6e\x8f\x6e\xfc\xee\x4a\xc2\x0f\xcf\xe7\x3d\x2b\xec\x26\x11\xaa\x56\x3b\xf6\x9d\xbf\x66\x43\xb8\xde\x13\x95\x5a\x7c\x6a\x0f\xe1\x50\x6b\xfe\xef\xec\xba\x52\xc2\xc4\xc9\x9f\x5a\x96\x15\x74\xb0\x10\x14\x74\x56\xe3\xc1\x40\x1a\xc1\x5f\x78\xe9\xd6\x9f\x3f\x75\x08\xe6\x4b\x02\x6f\xac\xfc\x90\xcd\x42\x66\xc3\x23\x4f\xcd\x97\x97\x69\x1c\x53\xce\xef\x9c\x37\x5d\xa4\x80\x90\x7b\x46\x51\xb9\x73\xeb\x20\x83\x60\x3d\x63\x93\xc3\x3b\x5f\xb2\xa1\x35\xe8\xd6\xa9\x57\x17\x79\x08\xc3\x02\x16\x6d\x09\x0b\xfa\x18\xf8\xbc\x3f\x98\x20\x70\xac\x96\x05\x48\xc4\x35\x4c\x8d\x9b\x49\xa8\x94\x1d\xd8\x93\x9b\x78\xe6\x5f\x90\x52\xf5\xdf\xf8\x50\xa4\x88\xf0\x2c\xf3\x6e\x24\x53\x50\x43\x30\x58\xb6\x58\x90\xfe\x22\x54\x2f\xc0\x87\x43\xb8\x88\x10\x6d\x56\x52\xa5\x2e\xbc\x94\x90\x79\xed\xea\x48\x60\x94\x02\xc1\xa7\x4f\xed\x98\x77\x82\x02\x41\x30\x51\xfb\xe5\xcd\x3a\x07\x42\x5e\x87\x08\xb7\x8d\xb6\x3b\x61\xf9\xe9\x46\x85\xf9\x6a\x5b\x09\xf7\xfa\x7e\xb8\x27\x35\xa6\x10\xee\x94\x2a\x0f\x3b\x7b\xd6\x10\x1a\xf9\xbc\xd5\xf5\x43\x33\x08\x96\x59\xbd\xa2\x77\xe8\x1a\xc1\xab\xdc\xe6\x49\xc9\xc8\x71\xc2\x9d\xe9\xae\x6f\xd6\x71\xef\x27\xbc\x3e\x5a\x2e\x33\x71\x30\x91\x6d\xd2\x09\xd3\x36\x4d\x79\xa6\x40\x58\x6a\xf9\x79\x83\xf9\x86\x9f\x0c\xec\xe7\x5f\x18\xda\x35\x5c\x43\xb8\x67\x29\x59\x54\x37\xa7\x96\xb0\xa1\xf3\x4a\x7d\xbf\x7b\x25\xa1\xb7\x0b\x46\xdb\x46\x6f\x12\x64\x26\x37\xbe\x5a\x74\xb5\x9a\x20\x37\x72\xb1\xc7\xfa\x5a\x35\x41\xa6\xf7\xd6\x13\xc7\x13\x2c\x82\xa6\x4e\x2b\xe7\x7f\xe5\x77\xca\xdc\xc6\x63\x1a\xfa\x2c\x0c\xef\x3a\x38\xba\x6d\xe3\x4a\xc2\x53\x3f\xcd\x1b\x77\xcb\xd7\x12\x76\x1d\xed\x8d\x64\xb6\xac\x21\x0c\x97\x9f\xed\x98\xe3\xb8\x9b\x20\x99\x1b\xf4\x48\x71\x99\x2a\x61\xef\xb1\xbb\x6f\xf9\xd7\x64\x12\x26\x0f\x9e\xba\x93\xee\xf7\xb4\x12\x8d\x29\xa6\x0b\x25\x7f\xbb\xd3\x3f\xe0\x5a\x5d\xe7\xb4\xc9\x72\x12\x1b\x96\x6e\x3e\x13\x51\x91\x17\xfc\x2f\x1c\xb2\x74\x34\xda\x67\x2e\x48\xb8\xeb\xe6\x3f\xd3\x6c\x9a\x2f\x0b\x7e\x1d\xfa\x01\x7c\x5f\x7e\x31\x08\x69\x48\xad\x95\xd1\xbb\x43\x88\xf6\x4b\x2a\x38\xe1\x72\x83\x90\xf1\xb0\xfc\xe0\xa7\x69\x11\x84\x44\x3b\x9f\xd6\x5b\x29\x5e\xcc\x38\x7e\xf4\x59\xe6\xe5\xcc\x18\x64\x90\xf1\x27\xab\x6d\xf5\x05\x0f\x82\xdc\xaa\xe9\xac\x5b\xa5\x4e\x84\x95\xa9\x9b\xd3\x2e\x7a\x87\xfd\x0b\x77\xb3\xfd\x34\x05\xd3\x14\xfe\x05\xe5\x32\x1e\xb9\x86\xb7\x2d\x95\xe0\xf9\xa6\x74\x60\xd6\xe5\x79\x84\xb7\x35\x5c\xbf\xc5\xdc\x72\x58\x50\xec\xff\xf2\xf0\x94\xdf\x7b\x16\xee\xf3\x98\xe9\x04\x66\x36\x10\xf6\x17\x3f\x15\x9e\x1c\xd3\xcc\xc2\x8c\xfb\xba\x82\xf7\x55\x1e\x13\xb6\xf9\xc5\x4b\x4d\x11\xaf\x22\xe4\x06\xfc\x68\x6e\x63\x7c\x08\x6d\xe7\xbd\xfb\xf6\x94\xac\x20\x28\x47\x4b\x5f\xdb\x3b\x29\x99\xe0\x73\x4a\xae\x2a\xe4\xec\x41\xc2\xf4\x9b\x3d\xd3\x53\x5c\x37\x13\xde\xdf\xf7\xfa\x3d\xfb\x7a\x0d\x61\xdb\x37\xc7\x34\x25\xaf\x5a\xc2\x27\x0b\xde\xa6\xaa\x49\x8e\x84\x85\x23\x16\xfb\xde\x5d\x70\x21\x9c\x5d\xfe\x5d\x23\x7b\xc0\x89\x20\xb7\xa3\xb0\xa4\x34\x86\x9b\xf0\xa4\x32\x88\xd5\x2b\x6d\x4b\x30\xb4\x9c\xe1\xa7\xfb\x6d\x39\x61\xdf\x9e\x31\xb1\x7d\xfd\xef\x18\x2c\xcc\xf5\xb4\x54\x0d\xb7\xa7\x71\x28\xde\x7b\x7c\x60\xdd\xd8\x3c\xc2\xd9\x52\xcf\x8a\xeb\x8f\x5d\x08\x4c\xea\x4b\x71\xd6\x34\x0b\xc2\x82\xd9\x22\x03\x2d\x4b\x4c\x08\x6d\x37\x97\xf8\x9e\x1b\xfc\xc8\x20\xcb\x5e\xae\x6b\xe2\x37\x0b\x82\x55\x51\xb9\xf5\xf5\xb7\x2a\x04\xef\xd7\xb2\x51\x96\x9f\xbe\x32\x78\x9a\xb7\xff\xf4\xb0\x18\x17\x8d\xc3\xad\xc9\xe9\x5b\x59\x49\x6b\x25\x4a\xc2\x9b\x78\x4c\x72\x1c\x08\xb6\xd6\xf2\xd1\x11\xf9\x5b\xd8\xe0\x5f\x77\x7e\xe5\x97\xab\x1e\x04\x67\x5d\xde\xf8\x37\xfb\x6c\x08\x31\x3c\x72\x62\xd2\x05\x4a\x84\x17\x4a\x57\x65\xf9\x5d\xce\x12\x52\xcd\x2a\x8f\x1b\xcd\xcc\x66\x61\xc7\xcb\x06\x87\xe1\x5d\x3e\xf4\x0f\xb8\xac\x7f\x1f\xb2\x31\xbd\xe0\x7f\x02\x2d\x0d\xab\x06\x0c\xcb\x09\x87\xda\xca\x16\xff\x57\x8c\x72\x64\x2f\xa9\x79\xf8\x12\x04\xf7\x37\x5d\x8a\x5b\x68\xc8\x56\xfe\x0f\xae\x42\xb9\xfe\xab\xd5\x9c\x08\x1c\x12\x97\x34\xbe\x4d\xb3\x26\xfc\x6a\x0f\x52\xdf\xac\x31\x8b\x0d\x4f\x9c\x27\x2b\xea\x5f\x6a\x65\x20\xd2\x5f\x58\x71\x90\x4b\x8f\x50\xae\x76\x44\x58\x44\x76\x31\x81\xdf\xde\xfb\x46\xc2\x47\x3e\x82\xc1\x0f\x23\xcb\xf2\xdb\x39\x84\x33\x2f\x3a\xba\x6f\xfe\x3f\x70\xea\x5d\x5b\x22\x6f\x97\x4d\xb8\x3f\xe0\xa0\xab\xe1\x29\x42\xb8\x65\x59\xd6\x15\x39\xdd\x9d\x30\xfa\xe6\xb8\xdd\xcf\x21\x3e\xc2\x99\x40\xa4\x87\xb4\x0d\x30\xa8\x21\xa9\xf5\xdd\x79\x86\x04\xf1\x17\xf1\x3a\x39\x69\x3a\x04\xff\xf0\x62\x81\x64\x69\x35\x82\xb7\xca\xef\x1d\x89\x4f\x0d\x08\x4a\x5f\x5f\xf9\x8c\xce\x3b\x4e\x30\x3e\xb9\x7b\xf5\x95\x49\x57\x09\x7f\x74\x85\x54\xeb\x93\x23\x2b\x51\xf1\x7b\xdd\xc9\x85\x53\xed\x09\xcb\x96\x44\xcd\x53\xda\xec\x42\xa8\x6f\xcc\xcf\xf8\x34\xdb\x81\xc6\xa7\xf0\xea\x44\xe1\xeb\xf7\xa4\x09\xfc\x93\x92\x39\xaa\x3e\xe9\x11\x56\x9d\x10\x0d\xed\xde\xa7\x4a\x98\x5f\xf7\xbb\x29\xe1\x60\x15\x21\xd8\x3c\xf6\x41\xdc\x81\x2a\xc2\x3a\xe5\x28\x8d\x8c\x44\x63\x42\xa2\xf8\x96\x60\x03\xce\x32\xc2\xdc\x32\xf1\xab\x42\x35\x75\x84\x90\xdb\x7b\x45\xff\x83\xce\x9d\x96\xcc\xd9\x83\x07\x59\x78\xbc\x52\xec\x79\xd5\x4e\x5f\x82\x61\xe6\x9a\x8c\xb7\xef\x82\x69\xbc\x74\xbf\x9c\x3d\x82\xe2\x85\x84\x7c\xde\x8a\xce\x77\xdf\xb3\x08\x21\x32\xb3\xcc\x07\x26\x16\xb2\x41\xc3\x74\x93\xbe\xb7\x86\x7e\x25\x86\xca\x79\x47\xd6\x4d\xf0\xa7\x71\xdc\x9f\x93\xee\x76\x65\x56\x09\x61\x44\xe0\x65\xe6\x7f\x58\x9d\x63\xbc\xa4\x2b\xa6\x88\xb0\x3a\xf7\xf3\xbe\x91\x1f\xc7\x08\xc9\x75\xb7\x0f\xfc\x37\x59\x3d\xfd\xb6\x59\xfd\x93\xd3\xbf\xe0\x59\x17\xb9\x47\x71\x99\x3e\x81\xe7\x49\x83\xea\xaf\x2c\x59\xc2\x70\xb8\x79\xcb\xc3\xdb\x86\x84\x2f\x25\x1f\xe6\x9b\x9b\x17\x10\x3a\x76\xdf\x54\x59\xf0\xff\x60\xdd\xf3\x09\x5d\xf3\x6e\xf8\x11\x42\xe6\x76\x04\x71\x5c\x3d\xcb\x1a\x2f\xff\x07\xa3\x8f\x3c\xb1\xd5\xf7\x8c\x08\x4e\x9d\x7d\x8f\xf6\x44\x15\x31\x90\x5e\x12\x3b\x7b\x66\xba\x0d\xfd\x2f\xe8\x1b\x2e\x39\xcd\xab\x36\x9d\xb0\x25\x44\x6f\x59\x82\xce\x0f\x06\x2d\x43\x07\x53\xc5\x7a\xcd\xe8\x7f\xa1\x5e\xc6\x6f\x6e\x87\xb0\x2a\x41\x2d\x6d\x01\x4f\xf3\x96\x01\x06\x56\x5c\x0e\x11\xbb\x74\x86\x19\xa4\xcd\x48\x3a\xf3\xf3\xb3\x34\x8d\x23\xea\x75\x84\xc1\x70\x6c\x33\x83\x75\xa7\x6c\xf3\x93\x05\x4b\x09\x9b\xd5\xfa\x14\x38\x95\x4c\x09\x62\xfa\xc2\xee\x0a\xdc\xd5\x6c\xd8\x9c\xec\x38\xf7\xc4\xbd\x33\xff\x9a\x62\x4e\x4c\xf8\x72\x8b\xe3\x0c\xe1\x6b\xd8\xc5\xa4\xff\x60\xea\x21\x5a\xc1\x37\x9c\xc1\x56\x3c\x3e\xbf\xf9\xde\x1d\x38\xc2\xe0\x92\xc1\xda\xeb\xc7\x03\x4e\x11\x36\xd7\xad\xb0\xd9\x90\x9e\x4d\x30\x50\xaf\xbc\x57\xae\xbb\x98\x60\xf5\xd2\x34\x67\x91\xea\x22\x42\x77\xc0\xd7\x04\xeb\x50\x73\x02\x33\x76\xd7\x76\xa3\xd9\x75\x42\x79\xd5\xe3\x34\x29\xe9\x2e\x06\xb5\x2e\xbe\xeb\xbb\xca\xb4\xe8\x1f\x78\xd9\x3f\x32\xd1\x20\xa5\xae\x12\x36\x1f\xb5\x73\x36\x2f\xbd\x4a\x38\x4a\x11\x1b\x22\x3f\xa7\x56\x62\xf2\x89\xde\x92\x7d\x4f\xe4\x68\x1c\xa3\x87\x55\x34\x03\x8d\x56\x11\x76\xcd\xf5\x77\xba\xe2\xf3\x80\xb0\x49\xfe\xa1\xd1\x9f\xd4\x66\x42\x7e\xa4\x65\xed\xd7\xef\x76\x84\x64\xcd\xf9\x0a\xbb\x35\x1a\x58\x98\x7d\x7e\x99\x86\xb7\x57\x23\x0b\x7f\xd2\xb5\x0f\x8e\x08\xd5\xd2\x3f\xe0\xdd\x35\xeb\xd0\xa5\x4c\x13\x36\x68\x2d\xa6\xf7\x37\x6b\x1c\x08\x63\x51\x8e\xad\xb1\x15\xcd\x84\x47\xe2\x86\xc2\x87\x4a\x9b\x09\xab\x0e\x9b\x19\xc6\x24\xd4\x10\xa2\xde\x2d\x9c\x32\x81\xb7\x9a\x10\xb0\x39\xde\x6e\xe7\x93\x2a\xc2\xf9\x95\x0b\x1a\x4f\xc9\x9f\x67\xc1\xd9\xa4\xd0\xee\xbe\xec\x33\xc2\x31\xa7\x09\xee\xe9\x56\x7b\x08\x36\x53\x5c\x1a\x82\x17\xec\x21\xc4\x9f\x36\x09\xba\xfd\xdb\x8f\xa0\x29\x9a\x6e\xc6\xd3\xb4\x9a\x30\x55\xf6\x91\x7c\xc2\xb1\x44\x42\xab\xa6\xc6\x15\xa5\x8b\x5e\x6c\xe0\x6a\x5c\xb0\x54\xaa\x8f\x83\x70\xd0\xcc\xf4\x1c\x77\xa0\x24\xa1\x9b\x5b\xcb\x53\xcd\x40\x8c\x70\x25\x7f\xee\xc7\xb8\xba\x4e\x06\xb7\xaf\x73\xf5\x54\xa9\xfd\x60\x10\x7d\xff\xd4\xcb\x4e\xd5\x61\x06\x0a\xc7\x5f\x5b\xdd\x6b\xfc\xcd\xa0\xba\xd6\x27\xa3\xb0\xd8\x94\xc6\xb1\x5b\xfa\xc9\x11\x91\xc9\x03\x0c\x16\xbc\x73\x61\xb8\xdd\x46\x19\x0c\xdf\xbd\x1c\x25\xe1\xc2\x49\xe3\x98\x22\xa6\xd6\x64\xd3\x59\xcb\x20\xa2\xac\xfd\x52\xea\xe2\x5f\x0c\x2e\xed\x5d\x1b\x3b\x67\x46\x0e\xe1\xc5\xd6\x54\x69\x45\x8d\x1c\x42\xfe\x29\xd7\x16\x85\xbf\x48\x9f\xf4\xe4\xd0\x6b\xa1\x08\x42\x6d\xf1\x6a\xed\x10\xc5\x88\x7f\x95\x39\x86\x3f\x54\x56\xec\xd9\x4e\xf8\x53\x1b\xfc\xe0\xbf\xe7\x22\xe4\x41\x67\xab\xa6\x94\x09\xa1\xa7\x7d\x95\xcb\x48\xa8\x02\x41\xc2\xa3\xf3\x47\xbb\x7a\x26\x61\xdb\x21\x03\x17\x59\xc1\x4b\x6c\xd8\xa1\x9b\xfc\x47\x70\xf3\x45\x82\xfb\x68\xd5\x82\x19\xdf\xab\x58\x70\xd9\x5f\x7a\x4d\xfa\xef\xe4\x7a\xf5\xd7\xcb\xda\xfb\xdb\x08\x59\xbc\x31\xf2\x53\xdc\xb6\x11\x5c\x6e\xb9\xc2\x38\x60\x13\xe1\x67\xf0\xdd\x03\x91\xe7\x54\x59\x08\xe1\xcc\xd0\x72\x5f\xb8\x91\x90\x1f\x72\x38\xe8\xd3\x8a\x44\x02\xf3\xee\x46\x1c\xf7\xfe\xdb\x2c\x2c\x96\xf1\x78\xc0\x5d\xdc\x46\x90\x19\xf4\x1a\xbd\x72\xbe\x8d\xe0\xf1\x42\x2a\xcb\xca\x36\x9e\x85\xd4\x92\x04\x86\x2e\x5f\x25\xf8\xed\x28\x69\x8c\x34\x33\x23\xec\xe9\xf9\xf3\xe2\x75\xca\x71\xc2\x97\xb6\x1e\x8e\x21\xc5\x6d\x6c\x68\xf2\x0d\x1e\x33\x39\xc7\x4b\x28\x1d\x6b\x7c\x61\xe8\x55\x46\xf8\xf6\x50\x49\x65\xd1\xd5\x77\x04\xe6\x83\xf2\xc9\x98\xb8\x77\x84\xf5\xa7\x94\xcd\x62\x7a\x73\x09\x8b\x9b\x22\x7e\x6e\xcb\xfd\xc4\x60\xd2\xe2\xe0\xce\xbd\x93\x26\x11\x1e\x45\x9f\x7b\x14\x73\xe7\x26\xe1\x92\xe4\xb2\xa9\x1f\x67\xf8\x11\xf6\x88\xdc\x76\xbc\xa8\x9a\x3e\x8e\x9f\xed\xb3\x96\x9f\x73\xcd\x21\xf4\x94\xdf\xea\x56\xb1\xcd\x21\x04\xb4\xa7\x79\x99\xec\x8d\x26\xc4\x47\x5d\xd9\x10\x71\x66\x01\xe1\xc9\x8f\xf7\xf1\x57\x13\x38\xd9\x10\x78\xf1\x74\x7b\xd4\x8e\x74\x16\x04\x57\x2b\xdc\x7d\x3a\xf2\x9d\x41\xca\x79\x43\xad\xf9\x1e\x6f\x09\xa7\xcc\x1f\xdc\x30\xfd\x8b\xa8\xa4\xde\x74\xcd\x97\x55\x04\x15\xc1\x6f\x4f\x5e\x4d\x60\x08\xf5\xe7\xbc\x8e\x04\xaf\x51\x21\x24\x0a\x33\xfa\x51\x4e\xcf\x09\xbf\xb4\x0f\xe2\x60\x9c\x1d\x61\xef\xa5\x1b\xf7\xc4\x2a\x64\x08\x74\xd1\xb3\x29\x6e\x1e\x27\x1b\xec\xec\xe5\x16\x8e\x1c\xe4\x27\xa8\x69\xa8\x7a\x4f\xdb\x94\x4a\x48\x3c\xbe\x61\xd6\xc3\x4b\xd3\x08\x63\x1b\x98\x98\x57\x6e\x7f\x98\x71\x4c\xad\x3e\xa5\x13\x3a\xf7\x1c\x83\xda\xb4\x35\x8a\xfc\xce\x42\x84\x52\x81\x95\x0e\x6d\xdb\xcf\x12\x34\xed\xcf\xae\x57\xcd\xcb\x22\x2c\x4c\x90\x54\x7a\xf5\xb7\xd4\xbf\x73\x5b\x64\x26\x73\x8e\x60\x7d\xe9\x4f\xbb\x56\x70\x12\x61\x91\x5a\xdd\x82\x38\x53\x1d\xc2\x32\xe5\xad\x2b\xef\xc4\xab\xb2\x61\xc5\x9a\x26\xb5\xcd\xae\x77\x2b\xc1\x8a\xfd\x36\xc4\xc7\x5d\x45\x58\x3d\x5b\x99\x83\x6b\x97\x2b\xe1\x89\xe0\xfd\x05\x1d\xa3\x37\x08\xef\x36\x4f\xed\x1d\x95\x2b\x60\x61\x51\xdb\x92\x24\x97\x77\x93\x08\xbb\x3a\x87\xa2\x96\xe8\x79\xb1\xa0\xd6\xf8\xf4\x64\x9a\x50\x09\x21\x37\x82\x47\x60\x3d\x7f\x09\x21\x30\x64\xd0\xf7\x55\x44\x2c\x0b\x12\x4f\xa7\x48\xa6\x84\x14\x13\x1c\x3f\xa5\x7e\x9e\x2e\x34\x9f\x50\xbd\xae\x36\x35\xdf\xde\x93\xb0\x25\x65\xeb\xdc\x65\x7a\x76\x84\x14\xe7\xf6\xf3\x67\xeb\x1e\xb0\xc6\x8b\xb3\x85\xba\x5c\x6f\xed\x2c\xc2\xce\xf5\xdc\xc6\xfc\xad\x6d\x0c\x24\x73\xeb\xef\x85\xdb\x3c\x21\xa8\xe7\xcc\xd6\xdc\x59\x7c\x93\x70\x63\xfe\x77\x0e\xa3\xf9\x49\x04\x4f\x67\x4f\x79\xf5\x47\x6b\x08\x9b\xe2\xce\x66\x79\xaa\x4f\x23\x04\x56\xd9\x94\x4f\xf3\xae\x20\x64\xe6\xc7\xe8\x09\x7a\x56\x10\x3c\x58\x0a\x4f\xbe\xbd\x2c\x21\xf0\x1f\xd6\x69\x11\xf8\x5b\xb8\x97\x2e\x9f\xbd\xed\xf6\x79\x36\x18\x1c\xfb\xe5\x5c\xd6\xf0\xcf\xb2\xb1\x55\x20\xe3\xe9\xe9\xeb\x04\xf9\x95\x4b\x0d\x6c\x7e\x7a\x12\x62\xdb\x74\x9d\x4f\xeb\x5b\x13\x9e\x58\xdd\x8d\x5b\xfd\xbe\x90\xc0\x39\xad\x47\x41\x73\xf9\x6e\xc2\xc8\xac\xdf\x05\x7e\x45\x92\x04\x8b\x51\xce\x33\x97\x0b\x27\x11\x86\x8e\xaa\x4e\xfe\xb0\xf6\x0d\x83\x40\xae\xc6\xa3\x56\x87\xcb\x08\x2d\x92\xc9\x67\x92\x27\xfd\x62\x70\xec\xc4\xf9\xfa\xb2\xb7\xc1\x2c\xe8\x4d\x5e\x34\xfa\x2e\xfe\x31\xe1\xcb\xe7\x29\xc2\x3d\xc5\x3e\x04\xc1\x85\x5b\x46\x5f\x1a\x9f\x20\xcc\x3d\x2c\xef\xf8\xe4\x78\x21\x41\x45\x5b\xfd\xe1\x66\x19\x5d\xc2\x5d\x99\xda\xd3\x7e\xa7\x66\xb2\x61\x76\xce\xa5\xae\xbe\x49\x25\x0c\x96\xae\xfc\xfe\xb9\xa0\xe7\x4d\x25\x62\x38\x77\xac\x9a\xaf\xe6\x49\xe3\x90\xb8\xd2\x2f\xd5\x26\xfc\x9c\x81\xed\xb5\xed\x45\xcf\xbb\xbf\x30\x68\xf9\xbc\xc2\x6b\xc1\x94\x59\x34\x0e\xd3\x9b\x39\xa7\x1f\x68\x3d\x64\x30\x65\x54\x5e\x8f\x6b\xae\x02\xc1\xe3\xb8\xbf\xa4\xb8\xfe\x77\x06\x3a\xdc\x37\x06\x27\xeb\x95\x11\x14\xa2\xc2\x15\x7f\xd4\x5d\xa7\xf1\x72\xb2\xcb\xfb\xc4\x7f\x98\x55\x3b\x6a\x67\xd1\xa7\x48\x58\x99\x1e\x2c\x1f\x90\x70\x85\x20\x55\x1c\xca\xe5\x67\xdf\x47\xb8\x99\x1d\xf8\x24\x93\xff\x37\x21\x5d\xea\x53\x98\x8b\x49\x39\xa1\xd5\x35\x76\x9b\xec\xda\x3e\xc2\xc1\xdb\xf6\x2b\x82\xb9\xef\x13\xce\x44\x1b\x9c\x7e\x3e\xb2\x9d\x70\x42\x8a\x2f\xb9\x6a\xd6\x15\xc2\xd3\x88\x11\xdb\x8c\x9b\x5b\x09\x73\x84\x19\x63\xfe\xaa\x78\x42\xec\x5e\xc7\xc1\x99\x3f\x0f\x12\x66\x73\x2f\x5c\x73\xaa\xef\x21\xe1\xc2\xb2\xf8\x3e\x39\xe5\x5a\xc2\x96\xe5\x5c\x13\x06\x72\xbd\x09\xf1\xb3\x68\xd1\x69\x4e\x45\xc2\x4e\x26\x46\x78\xed\x53\x0b\x36\xf4\x2e\xd9\xf6\x7a\x50\x57\x93\x0d\x57\x65\x8b\x85\x1c\xcd\x7a\x19\xd4\x6d\xf7\x13\xcd\x0d\x1a\x62\x20\xef\xaa\x65\xc3\xdf\x28\x4c\x78\x34\xa1\xa1\xe9\xf8\x46\x6b\x42\x51\x6b\xda\x91\x94\x6b\x8b\x08\x8d\xad\xbc\xcd\x62\xa3\x52\x84\x2e\xe7\xc9\xc7\xda\x5b\xb5\x09\x6e\xc1\xdd\x13\x63\x13\x0a\x09\x19\xdd\x17\xcf\xaf\x51\xac\x22\x2c\x93\x7d\xef\x6c\x59\x56\x45\xe8\xf9\x91\xfb\xf4\xbf\xc9\xc4\x3a\x39\xc4\x22\x35\x9b\x70\xac\xe9\xc5\xab\x75\xbd\xba\x84\xab\x1f\x77\x8a\x25\x86\xdf\x26\x1c\xbd\x2a\xb7\xdc\x7b\x75\x29\x41\x28\x29\xf2\xe3\x36\x1b\x5b\x42\xdb\xd2\x18\xa9\xc3\xfb\xf9\x59\x98\x12\x90\x79\xca\x69\xbb\x1b\x21\x64\x41\xcb\x3c\x2b\x8e\xc5\x84\x3b\xcb\x0a\x25\x63\xe0\x4d\x98\xba\xe0\xa1\x33\x0e\xac\x22\xa4\x6c\xd0\xd0\x0c\x2b\x55\x24\x9c\xd6\xd9\x38\x38\x67\xce\x63\x06\xc3\xac\xa7\x2a\xdd\x13\xe6\xd3\xff\x42\xca\x93\xfc\x43\x11\x5c\xf7\x2b\xa1\xcb\x7f\xc3\x46\x46\xe7\x2e\x03\x61\xcb\xa1\xc8\xba\xb2\xe9\x84\xb4\xae\x7d\xc5\xdb\x67\x98\x12\xbe\x37\x68\x5c\xba\xc8\x21\x4e\xe8\xb0\xf4\x50\x30\x92\x59\xf0\x3f\x21\x34\x8f\xff\xe2\x25\xfb\x49\x04\x45\x4d\xb7\xd1\x1f\x4d\xd2\x6c\xe5\xaa\x04\x57\xb3\x8a\xe0\x27\x06\xd5\xdb\x65\x57\x34\xf7\x3a\x13\xd4\xd4\x6f\x7f\xdc\xbe\x6c\x26\x61\x97\xd6\xf6\x78\x11\x13\x25\xc2\xa2\x45\x9f\x4f\xac\x48\x9c\x44\x90\xde\x56\x7c\x64\xd0\x6b\x84\x01\x9f\x3a\xe4\x75\xa6\xf0\x13\xbe\x3c\xd0\xde\x72\xe9\xcf\x4a\x42\x9b\x4e\x82\x51\x96\x93\x1e\xe1\x85\x85\xc3\x8a\xed\x4f\x17\x13\xd6\x65\x3c\x7f\xf2\xd2\x46\x90\x0d\xfb\x26\xe6\xc5\xdf\xde\xf2\x83\xc1\x21\x97\x5d\xba\xed\xa2\x7f\x18\x44\xce\x55\xe7\x75\x93\x28\x25\x24\x09\x58\xe7\xda\x75\x48\x12\x76\x3f\x2d\xe6\x9e\x39\x68\x4b\xb8\x20\x68\x36\xc3\xfb\xef\xf5\x42\xf6\x86\x5c\x76\xc0\xd2\x0f\x0c\x72\x52\xbc\xb3\xe3\xfb\xc6\x18\xb4\x49\x77\xac\x12\x0a\xf0\x20\x2c\xa8\xf6\xe9\x31\x7a\x28\x4a\x68\xa4\xe0\x3c\xc5\xea\xaf\x0c\x8e\x57\x2c\x99\xd7\xdf\xae\x40\x90\x2c\x32\x77\x64\x4c\x19\x82\x60\x6d\xbf\xba\xe1\x04\x22\xfc\x38\xb2\x42\xd2\x3b\xb6\x9a\xb0\x6a\x54\xc8\x73\x6c\x72\x3c\xa1\x22\xc1\xec\xea\xbe\x1d\xc5\x84\x58\xb9\x0d\x1d\xff\x61\x7d\x4b\xd6\xbd\x9f\x3f\xdc\x08\xcf\xbc\x5b\xaa\x8a\x04\x57\x10\x12\x23\x67\xfd\xb1\xb6\x0b\x62\x9b\xfc\xb3\xf4\x5f\xe4\x38\xf0\x11\x6c\x34\x3e\x4c\xee\xf9\x9a\x41\x48\x3c\xc2\x75\x51\x78\x92\x07\x21\x8d\x5e\xc6\x35\x18\x35\x56\x22\x9f\x31\x15\xca\xf8\x58\x48\xe3\x08\x15\xed\xbc\xf0\x36\xc4\x87\x90\x60\xaf\x5e\xfe\x2c\x7e\x06\xe1\x6c\xd7\xae\xc2\xd6\x30\x07\x82\xbd\x4b\x7c\xe6\xc9\x8f\x4b\x09\xcb\x6a\xf6\x28\xf6\x58\xcf\x22\x74\xc6\xad\x3f\x2b\xb7\x7b\x94\xc1\x4c\xa5\xc6\xe6\xe8\x66\x47\xc2\xc3\x9c\x0b\x3a\x4f\x34\x1c\x09\xcf\x4c\x77\x59\xea\x26\x59\x12\x44\x0b\x45\x0e\x1e\xbd\xa3\x43\x08\xeb\xee\xb7\x16\xb9\x27\x4e\x30\x3d\x95\xe7\xf1\x85\xf3\x23\x83\xf5\xca\x2d\x52\x69\xed\xdf\x18\xf0\x1a\x6c\x8c\xae\x76\x54\xa2\x71\x2c\xef\x70\xed\x72\xee\x1e\x65\x50\x37\xed\x49\x98\xd2\xed\x89\x04\xd5\x5e\x96\x0d\x97\xde\x08\x33\x8e\x2f\x39\xc5\x0f\x2f\x78\x95\x55\xa2\xed\xb2\xc5\xf2\x86\x61\x77\x82\x59\xb2\x79\x78\x22\xc3\xcf\x86\x66\x4e\xaf\xa4\x54\x3e\x3b\x36\x4c\x3a\x7e\x22\x40\xf9\xbb\x08\xe1\xb1\xf8\x89\x83\x43\x7f\x5f\x7a\xea\x55\x62\x75\x05\x8b\x26\x11\x36\x5e\x68\x0c\x76\x98\xf8\x8d\xc1\x07\x8f\xc5\xae\xfe\x95\x06\x84\xfe\xa7\xb7\x65\xee\x6f\x53\x63\x41\x7d\xe9\x5d\x54\xff\x9a\x42\x50\x74\x7c\x50\x85\xba\x12\x42\x76\xb2\xc6\x0a\xbf\xfb\xb2\x84\x22\x3b\x2d\x8f\xe6\x53\xfc\x84\x7d\x2f\x82\xee\xf6\x59\x8a\xfe\x0b\x7e\x91\x32\xab\x6f\x86\xc6\xfc\x0b\x73\x1f\xd7\x54\xd6\x44\xc4\x10\xf6\xab\x1b\xf7\x96\x4a\xcc\x24\xe4\x89\xfb\x8b\xf5\xf3\x18\x10\x56\x58\x41\x2a\x7a\xa9\x05\x41\x6e\xe5\xa8\x76\x75\x5a\x09\xe1\x17\x87\x5c\xe7\xb2\xd0\xa9\x04\xeb\x73\xbf\x8b\xaf\xd6\x2a\x12\x8e\x0f\xbc\x6e\xba\xba\x4b\x8c\xb0\x69\x49\xd7\x1a\xf7\x0b\x5c\x84\xef\x62\x65\x5b\x7f\xcb\x72\x10\x74\xcb\xbc\x3c\x67\x0e\xea\x10\x96\x7c\xbb\x73\xeb\xde\x7e\x49\x42\xba\xc9\xb6\x26\x6e\x0f\x1e\xc2\x9b\xbb\xc7\xda\x23\x83\xe6\xb0\x70\xa1\xe3\xd9\x66\x41\x0f\x65\xc2\xdc\x8c\xc7\x7c\x93\x1c\x97\x12\x7a\xaa\x7a\xb7\xcf\xfc\xf3\x8a\xc1\x7d\x2e\xf7\xa2\xc3\xce\xbc\x34\x8e\xf9\xe6\x0e\xef\xef\x9c\xbf\xc7\x40\xbe\xe8\x7b\xab\xa2\x91\x2e\x41\x45\x7a\xca\xd6\xfe\xed\xba\x04\xcd\xd8\xbb\x6d\x39\x1b\xf7\xb2\xf0\xe3\xf6\x1d\xc3\x87\xf6\xdc\x84\xa2\x25\xd3\xd3\x62\x97\x94\x13\x02\x47\x87\xf7\xee\xdc\x51\x46\xf0\x57\x5c\xf1\x30\x27\xf4\x06\x61\xc4\xa0\xe4\x89\xed\xce\x30\xc2\x27\xa9\x09\xa2\xf5\xfb\x76\x12\x96\x7a\x88\xb8\x1d\x76\xfc\xc1\xc0\x34\x2d\x4d\xe1\xa8\xbf\x30\xe1\xa8\xf8\xb7\x79\xbc\x93\xbf\x33\xf8\xa9\xfb\xb2\x94\xdb\x97\x97\x30\x6b\xe5\x26\xee\xcf\x3f\xa6\x10\xaa\xe7\xf0\x28\x1b\x3a\x70\x12\x8e\xa4\x7e\x4c\x96\x76\x76\x27\x7c\xb8\xa4\xf2\x65\x5d\x76\x24\x1b\xe4\x12\xd7\x6f\xe9\x7c\x79\x9c\x10\xa4\x99\x6c\xf3\xfb\xce\x71\x42\x4f\xe2\xf9\x57\xf2\x59\x97\x09\xad\x97\xe3\x5e\x65\xcb\x88\xb2\xa1\x68\xa7\x7c\xca\xb1\x02\x7e\x42\x50\xf6\x7e\x2d\x51\x43\x73\x82\x90\x6f\x6d\x8c\xae\xb1\x35\x21\x2c\x95\x5b\xb4\xe1\x9c\x33\xa1\x22\xec\xcb\x73\x7e\x6d\x43\xc2\x14\x17\xee\x5b\xfd\x86\xe7\x18\xec\x34\xf2\xda\x95\xcf\x53\x4d\x28\x38\xb7\xb8\xec\xd2\x44\x30\xa8\xb2\x3f\x1e\x59\xce\x6a\x25\x98\x75\x34\x8d\xee\x33\x6d\x25\x84\x5e\xa8\xe3\x55\xe6\x6b\x25\x5c\x7f\xfd\x6c\x55\x25\xff\x33\xc2\x9a\x52\xa7\xa9\x16\x7e\xad\x84\xcb\x43\xe5\x61\x7a\x4d\xf9\x84\xa0\x15\x49\xe6\x12\xad\xf9\x84\x0c\x2e\xde\x0e\xbd\xd1\x5c\xc2\xef\xbc\xaf\xfd\xb3\x0a\xfe\x4e\x19\xca\xc7\x9e\xdd\xcf\x27\x7c\xb4\x7a\x70\x76\xac\x25\x9f\xa0\x95\xd4\x7d\x67\xff\xa4\x62\x02\x8f\x4e\x54\xc0\xe2\x87\x85\x04\xeb\x57\x62\x37\x6e\x4f\x2e\x26\x98\x56\x3b\x47\xdb\x7c\xbe\x42\x88\x33\x5e\x94\xba\xe1\x47\x32\x21\xc1\x3a\xc3\x2e\x5f\xd0\x8d\xd0\x6b\x72\xdc\x2d\x7f\x5e\x28\xc1\xab\x54\x82\x33\x8a\xb9\x4d\x70\x2f\xab\xde\xf7\xe7\xc1\x35\xc2\xe7\x25\x25\x53\xe5\x6a\x3a\x58\x50\x98\x22\x21\x11\xfd\x77\x3a\x57\x5f\xb9\xd4\xae\x59\x87\xb0\x56\xa4\x59\xaa\x76\x93\x2a\x61\x75\xbb\x64\xb1\x7b\xff\x53\x82\x9f\xdf\xe4\xf5\xba\x91\x6f\x09\x2b\x4e\x18\x5d\x98\xf3\xb8\x91\x70\x64\x30\x75\xd9\xda\x70\x03\x42\xc3\x52\xa1\x74\xf1\xb2\x65\x84\xbd\xac\x80\x69\x2e\x8b\x06\x08\xc6\x16\x6d\x2a\xf3\x92\x06\x08\xe9\x15\xd1\x6e\x7e\xab\xee\x12\xfa\x5d\x63\x78\x73\x39\xfc\x08\x5d\x73\x26\xaa\x58\xcc\xd8\xc1\x42\x57\x7a\xd3\x62\x23\x5e\x27\x42\xf6\x7e\x13\xb7\x43\x99\x8e\x84\x9b\x17\x8d\x63\xc3\xb2\x3a\x18\x44\x59\x90\xff\x2f\x47\x53\x82\x53\xe3\x90\x9f\xf3\x71\x0d\x42\x86\x04\x97\x8a\x4d\xf1\x7b\x06\x34\xf4\xe6\x7a\x1e\x57\x2d\xa1\xd5\x60\xbb\x98\xd7\xcd\x1a\x82\xb8\xd0\xcc\x6d\xc7\x16\xbd\x61\xe1\x6c\x6d\x86\xf9\x7f\xc5\x6b\xee\xb7\x25\xc9\xdf\x6f\xb0\x70\x33\x71\xe7\xfc\x05\x8b\xf3\x08\x1e\x42\xaf\x6d\x2d\xf6\xe4\x11\x74\x8a\x9d\xaa\x17\xef\xcf\x65\xe1\xd4\xa3\x5b\xc7\xaf\x59\xe5\x11\x7c\xe9\x2d\xe7\xf9\x92\x5c\x1a\x2f\xef\x0d\x2f\xb7\xf2\xdc\x3d\xc5\xc2\x23\xbe\xdd\xb7\xa2\xa5\xb6\x11\x1c\xad\xdd\x3f\x17\x4c\x28\x23\x9c\x6e\xe0\xe2\xf2\xbc\x9d\x4c\x70\x33\x99\x55\xdc\xf0\xe2\x3a\xe1\x93\xea\xef\xd2\x10\xb1\x4c\x02\x47\xda\x48\x98\xeb\x33\x5b\x82\xe4\x70\x5e\xeb\xb4\xf3\xab\x08\x93\xb7\x3a\x47\xca\xd9\x6c\x27\x98\x78\x3e\x1f\xf5\xee\xd8\x44\x48\x1b\x60\x14\x2f\x0d\x19\x10\xb6\xdd\xe2\x8a\x3d\xc5\x61\x47\xd8\x12\xa4\xbe\xf2\x5e\xac\x16\x61\xae\xbe\xd2\x50\x7f\xcb\x37\x06\x3e\x7e\x71\x13\xce\xfa\x19\x13\x1e\xcb\xf3\xeb\x98\xbd\xf9\x48\xd8\x7a\xcf\xbb\x92\x57\xff\x01\xe1\x53\x56\xb0\x6a\x4b\x61\x10\xe1\x8d\xbc\x6f\x55\x95\xc6\x5d\x42\xaf\x2d\x5d\xf2\x6a\x7a\x47\x30\xf2\xcd\x71\xeb\x14\x7a\x47\xd0\x99\x37\x30\xac\xb8\xbb\x99\xa0\x50\x17\x9a\xfd\xda\xfb\x2e\x61\x97\xc6\xf3\x64\x83\xc7\x25\x2c\x24\x6d\x7e\xdc\x2b\xc5\x3a\x4d\x90\x48\xd4\x6b\x54\x9e\xf0\xa9\x12\xe5\xfb\x2b\x5f\x57\x16\x7c\x60\x70\x27\x2c\xf7\xff\xc7\x87\x7d\xc6\x63\xfd\xff\xff\xff\xcf\x2e\xa3\x50\xb2\x4a\x92\x55\x51\x56\x76\xaf\x07\x2a\x23\xca\x2a\x0a\x45\xca\x28\x54\x34\x54\x22\x91\xd9\x32\x8b\x54\x44\x46\xa4\x84\xa6\x71\x98\xa5\xa1\x8c\x34\xd0\xd4\xd2\x90\x0a\xdd\x23\xfc\x2f\xde\x27\x3e\x8e\xdf\xe5\xdf\xe5\x7b\xca\xf5\x72\x7b\xbc\x4e\x38\x71\x1c\xaf\xe7\xe3\x79\x28\x87\x67\x1c\xa4\x71\xa4\x6e\xbc\x13\xe6\x1d\x1f\x40\x28\xbc\x3d\xb8\x65\xc1\x12\x21\x02\xab\x45\xff\xc5\x82\x62\x23\x82\xb6\x9a\x75\xa1\x66\xdf\x74\x42\xec\xf6\xec\x8e\xc1\x3e\x37\x42\xd6\x13\x67\xfa\x94\xf5\x93\x41\x75\xd6\xb5\xb6\xde\x84\x3c\x82\xf6\xd9\xe4\x4b\x43\xc5\xea\x04\x53\x35\x53\x87\x8f\x25\x46\x84\xc4\xc9\x15\x2f\xd4\x18\x43\x42\xf3\x76\x65\x0b\x53\xb7\xbf\x0c\x9c\x8b\x13\xf9\x33\x33\x42\x59\x48\xea\xab\x4c\xec\x0b\x5a\x46\x98\x63\xf4\x69\x5a\x86\xa6\x09\x21\xdd\xac\xd2\xcc\xa2\xf9\x16\x0b\x23\xfe\xfc\x1b\xca\xde\x28\x10\x2a\xe4\xef\x5f\x18\xbe\x35\x9f\x30\xb1\xa5\xed\xd2\xd0\x4c\x6f\xc2\x37\xdb\x1c\xe1\x63\x4f\x82\x08\x92\x67\xcf\x5a\x05\xbc\xd8\x48\x10\xf5\x51\x0c\xb8\xfa\xf8\x10\x0b\x22\x59\xef\x38\xa6\xdb\xd4\xb2\xf0\x54\x6c\x82\x67\x82\x79\x1c\xe1\xd0\x10\xdf\xca\x76\x1b\x47\xc2\x02\x7e\x44\x3d\x3a\xaa\x48\xc8\xf1\x30\xb4\x15\x58\x16\xc1\xc2\xe8\xf0\x13\x7d\x51\xa3\x18\x16\xe2\x86\x35\x12\x3b\x7f\x39\x11\xf2\x57\xac\x5e\x97\xfd\x67\x36\x21\x60\xb3\x68\x9e\xe3\xd2\x69\x04\x6e\xf9\x67\x2d\x07\xac\x86\x18\x84\xdd\xbe\x18\x68\xdf\x6c\x43\xf0\xee\x52\x1c\x8c\xd4\xe7\x20\x14\x2c\xbc\xb9\x20\xe4\xa9\x02\xe1\x4c\xc6\xf6\xa1\x97\x09\xbe\x84\xe7\xeb\x11\xd0\xbd\xed\x05\x83\x83\xe1\x35\x8d\xef\x16\x5c\xa1\x71\x7c\x0b\x3a\x30\x92\x32\xb3\xac\x12\xfc\xbf\x27\x2e\xf7\x7d\x74\x8b\xd0\x24\x2f\x30\xbc\xc9\xe2\x2e\x21\xc4\x4b\xa4\xe6\x48\xf2\x7d\x42\x67\xb9\xae\x81\xad\x69\x24\x21\x64\xf5\xa2\x82\x49\xba\x8d\x04\x3f\xa5\x57\xcd\x8a\x17\xe3\x08\xf3\x34\x0f\x06\x36\x44\x47\x12\xf6\x38\xba\xed\xf0\xe8\x93\x22\xcc\x54\x9c\x58\x79\xf7\xe7\x64\x82\xe7\xca\x0b\x72\xc5\x90\x23\xf4\xf9\x5c\x3f\x3d\xb1\x28\x99\xb0\xb6\xe4\x41\xc9\x7f\x70\x74\xf0\x98\x33\x7c\xc5\x87\xf0\xed\xc7\xb7\x96\x23\x87\x16\x10\x3c\x0e\xcb\xe8\x7c\xfd\xed\x46\xa8\xb5\xfb\xd1\x56\x56\x73\x81\x05\xd5\x2b\xca\x01\x37\xf2\x0a\x08\xee\xd1\x26\xdd\x54\xbd\x85\xb0\xcc\xf9\xed\xf7\x54\xf7\x52\xc2\x1e\xe9\x2b\xdb\xed\xfc\x3a\x18\xec\x74\xb8\x36\x7f\xd8\x6c\x37\x8d\x43\x42\xd0\xd7\x8a\xbb\x52\x9d\x50\x95\xb5\x64\xdb\xfb\x6d\x26\x84\xee\x1c\x7e\x7f\xaf\xdc\x19\x6c\x88\xb6\x7e\x6e\xdf\x71\xc2\x9b\x85\x9e\x2d\x2a\x2b\x7f\xeb\x1a\x11\xcc\x93\xfa\x3b\xe7\x2e\x51\x24\xec\x5f\xb5\xaa\x5f\x5f\x76\xec\x61\x8d\x65\x31\xbf\xea\x24\x09\xdb\x55\x4e\x74\x9f\x3e\xa2\x4e\x68\x11\x75\xf7\xfd\xbb\x69\x2d\x1b\x26\x15\xed\xe5\x73\x17\x3d\xc8\x06\x33\x93\xec\x5e\xcb\x77\x01\x84\x84\xe9\xa6\x7c\x7c\x09\xed\x0c\xea\xf4\x3b\x3f\x2c\xe5\x9a\x4a\x78\x73\x49\x45\xd4\xda\x5b\x9d\x0d\xb9\x69\x93\xad\xa6\xa6\x8e\x1d\x88\x39\x4b\xcb\x65\x2f\x5a\x12\xda\x0b\xbf\x44\x99\xec\xb9\x4f\xd8\x43\x9a\x46\x53\x77\x44\x11\x72\xbb\x3f\xee\x70\x7f\x75\x9a\x60\x2d\x94\xf2\xc6\xbe\xf3\x2c\x0b\xa3\x2b\x52\x8c\xfd\x3e\x79\x13\xee\x8b\x5f\x6c\x2c\x3f\x85\x4a\x9c\x8b\xdc\x20\x6e\x7e\xe7\x28\x0b\x83\xe1\xdc\x6a\x46\xcb\xa3\x58\x50\x9c\x71\x6b\xda\x5f\xae\xad\x84\xc9\x07\x7d\xee\xdc\xbe\xd8\xc2\x42\x98\x7b\xdb\x71\xd7\xa6\x2a\x82\x77\xa5\xcf\x41\x57\x85\x0c\xc2\xa2\xd1\xfb\x89\x83\xb3\xd6\x10\x9e\xd7\x5c\x88\x7f\x70\xd7\x81\xb0\x36\xde\xa0\x61\x5f\xee\x5a\xc2\x7b\x41\x5e\x03\xbe\x60\x33\x42\x71\x84\x46\xba\x46\x95\x26\x61\x2e\xc7\xdb\x4a\xff\xb7\xfa\x84\x1d\x66\xa5\xaf\x83\x1e\x2c\x22\x34\xbc\xaa\x3e\xf3\xe3\xe8\x56\x82\xf4\xdb\x3e\x05\xf7\x89\x77\x58\x58\xff\x74\x77\xd7\xe5\xad\x97\x08\x89\xb4\x75\x41\xfe\xd5\xd3\x84\x99\x5b\x45\x33\x16\xb7\xfa\x12\x96\x1e\x28\xcc\x5e\xec\x59\x43\x58\xbe\x2b\xf8\x7d\xf6\xc0\x63\x82\x9d\x97\x79\xa1\xde\xf3\x7b\x84\x88\xb5\xb1\x7e\x6f\xb7\xd4\x10\xa4\x3d\xc5\x8f\xbe\xbe\x9a\x40\x18\xb9\x90\xb0\x21\x53\xb3\x96\x05\x87\xa2\xdc\xaf\x9d\x32\xe5\x04\x05\x6d\xe5\x23\x41\xc1\x11\x84\xcb\x93\xb2\xb9\xf6\xdc\xd9\x49\xb8\xa7\x91\x7c\x30\xe0\x04\x0f\xc1\x79\x34\xf7\xcc\xca\x06\x73\x42\xf8\x8a\x0d\x53\x76\x1f\xdf\xc4\x86\xdb\x16\x7f\x44\xce\xac\x98\x46\x38\x90\x65\x92\x96\xd8\x6e\x4b\xc8\xee\xae\xb9\x1c\xa8\xb9\x94\x70\x70\xde\xf0\x96\xc2\x62\x55\xc2\x5c\xdf\xc4\x73\x8f\xbf\x26\x54\xc2\x42\xb7\x78\xe7\x05\x91\xb5\x84\xb0\x63\x2f\x62\xee\x04\x79\xd3\x78\xc9\x3a\x64\x60\xb6\xb6\x44\x92\x90\xbe\xac\xfb\x43\xfe\xd5\x4f\x0c\xba\x4d\xd3\x63\x39\x32\x6c\x08\xbe\x2b\x53\x6e\x1e\xde\x58\x40\xe3\x65\x83\xf7\xda\xb6\x86\x91\x49\x04\x8b\xdf\x1a\xaa\xca\xe7\x9b\x58\xd0\x95\x7d\x53\xdf\x68\x55\x47\x78\xa8\x12\x95\xed\x36\x58\x41\x10\x7b\xeb\x5f\x18\xd4\x1b\x4a\x98\xd4\xb5\xeb\x6b\xa9\x45\x25\x41\xf9\x72\xdd\xc0\xb2\x69\x1e\x04\xfe\x28\x0b\x69\xb9\xfa\xed\x2c\x14\xee\xe0\x68\xcf\x5e\xee\x4e\xa8\x98\x6a\x3f\x32\x77\xd7\xd8\x66\x3e\xfa\x42\x67\xe3\xd9\x9d\x2c\xb8\xdc\xf8\x1a\x92\xbf\xbc\x9e\x10\xef\xe3\xaa\xe8\x18\xd6\x4c\x08\x9c\x74\x48\xba\xe4\x70\x19\x41\x7c\x43\x81\x84\xcb\xd9\xfd\x2c\x84\xda\x58\x2d\x69\x5d\x51\x4e\xf0\x3e\xf9\xf1\xea\x2c\xa3\x72\xc2\xd2\xa7\x2d\xc6\xdf\xfc\xb7\x10\xc2\xc2\x7d\x5b\x63\xd5\xe5\x09\x9b\x5a\x56\x16\x5c\x88\xab\x66\xc1\x5a\x24\x6d\xe1\x35\x69\x79\x82\x81\xc0\xdf\xb4\x8f\x25\x5b\x08\xbd\xd3\xa2\x75\xb8\x46\x1d\x08\x95\x05\xaf\x6c\x8f\x86\x9a\x10\x4e\x24\x37\x1a\x08\xce\x5d\x4a\x88\xcc\xa9\xcb\xf2\x0c\x5d\xc0\x06\x57\xcf\x87\x7a\x83\x72\x1e\x84\xea\xc6\x35\x47\x3a\xe7\x84\xb3\x20\x38\x27\xe9\x88\xed\xd3\x45\x84\x39\xbb\x6b\x0f\x6a\xdc\x36\x27\x50\xc9\xd9\x67\x33\x4b\x1b\x2b\x91\x7d\xa0\xef\xc8\xf1\x65\x7f\x19\xe4\x5e\xd3\x0d\x0f\xb4\xd5\xa0\x71\x88\x18\x1d\xa4\x9d\xbb\x96\x11\xa4\x5f\x72\x89\x49\xbc\xcf\x61\x21\x44\xef\xa1\x8c\x5c\x61\x0e\x0b\x5e\xb1\xe6\x53\x3f\xc7\xbe\x65\xe0\xa2\xd9\x5d\x5b\xef\xa7\x47\x78\xbb\xb6\x63\xe2\x2b\x9f\x73\x84\x82\x28\xc5\x93\x2c\xe5\x24\x82\x78\x94\xc2\xac\x8d\x2a\xfa\x84\x52\xc5\x11\x9e\x1a\x15\x33\x42\xa8\xa0\x48\x50\x8f\x87\x3e\x61\x6f\x9a\x1e\xa7\xf6\xac\x5e\x06\x0b\xbe\x9b\xef\x9f\x2a\xf7\x87\x0d\x89\x2f\x8f\x7e\x78\xf7\xbe\xa0\x12\xb5\xd1\x1e\x21\x6a\x89\xba\x34\x8e\xb8\x54\xc3\x83\xeb\x2c\x0e\xb3\x61\xd5\xb3\xd1\xb5\x3b\x67\xec\x26\x64\x9f\xed\xdc\xa5\x24\xd5\xcb\xe0\x4b\xe6\xad\x5f\xba\xe6\xdc\x84\x3d\x1d\x1f\x9a\x9b\xdf\xfe\x61\xb0\xf1\xf1\xb5\x17\x9a\x63\x1b\xda\xe0\x4c\x8b\x0b\x75\x2c\x0d\x36\x44\xad\xeb\x70\x39\xe5\xad\xc3\x06\x93\xaa\xdf\xed\x77\xb9\xea\x58\xe3\x45\x61\x4d\xfc\xf4\x35\xd3\x94\x08\xba\x3e\x5b\x4f\xfd\x7d\x24\x4e\xb0\xdf\x50\x9c\xd0\x7a\x41\x84\x0d\x2a\x5b\x8a\x66\x30\x42\x51\x0c\xf2\x9d\xfa\x0c\xf8\x5f\xc6\xb0\x70\x31\x3d\x3b\xae\xd0\xa4\x9a\x41\xe9\xf3\xcc\x6b\xe7\x77\xf5\x31\x10\x8d\xb6\x56\xde\xf3\xbe\x8c\xb0\x42\x44\xdf\x58\xe9\x70\x2b\x21\x53\x70\xbf\xf8\xae\xb1\x92\xac\xf3\xf4\x89\x40\xbe\x17\x81\x53\xb2\xc5\xd9\x62\xea\x25\xc2\xb5\xa7\xd3\xcf\xda\x1a\x25\x13\x7a\xef\x68\x7c\xcf\xfb\x96\x36\x76\x79\x3c\x3f\xba\xcb\x79\x3e\xe1\x63\x6a\xd7\xec\xcb\x9c\x62\x84\x36\xe1\x19\xee\x1b\x7e\xe8\xb1\x95\x66\xfb\xfd\x85\x7a\x49\xdb\x09\x0d\x19\x03\xea\x2f\x2e\x6f\x67\x2b\xb7\xa4\x8d\x6c\xe4\x42\x44\x09\xca\x7f\x6f\x14\xef\x0d\x6e\x62\xe1\x97\x8f\xaf\x56\xd0\x3a\x4b\xc2\x71\xbd\x2f\x5b\x0a\x9d\xb8\x09\x86\xd7\x7e\x1c\x98\x51\x96\x4c\xb8\xbc\xcd\xdc\x54\x22\xee\x2f\x03\x95\x65\xdf\xfa\xb6\x2d\x9d\x43\x38\xb4\x6d\xbe\x63\xa1\x89\x27\x21\xfe\xc4\xdf\x09\xae\xce\x22\x04\xff\x4b\x49\x1d\x2d\x13\x45\x08\xd3\x62\xe7\xe6\x96\xbb\xcf\x23\xa4\x7d\x35\xb9\x7c\x37\x4d\x94\x90\x35\x7d\xd8\xc0\x3d\x61\x26\x21\x7f\x77\xac\x7f\x59\xfe\x08\x83\x21\xd7\x39\x0e\x5c\x3f\xc2\x69\x1c\x35\x92\x51\x62\xe8\xba\x56\x89\xea\xba\xc8\x67\xa0\x26\x42\x82\x7c\xe8\xec\xcf\x6f\x6a\x08\x92\xfa\x37\x5b\xc3\xc2\x27\x13\x42\x7f\x68\xea\xfe\x74\xb0\x24\x9c\x71\xfa\xfd\x6d\xc8\xcd\x82\xa0\x63\x92\x10\xfd\x78\xaa\x2a\xc1\xa9\x79\xa2\xd6\xfc\x92\x59\x84\x24\xfe\xcd\xa5\xef\xa5\xb5\xfe\x85\x74\xd7\x05\xdf\x1c\xf9\xb6\xfc\x13\x59\x6b\xbd\x34\xee\x0b\x11\xde\x9f\xf1\x28\xd9\x6a\x38\x8b\x20\x77\xd3\x39\x68\x68\xd9\x3c\x42\xc4\x92\xcd\x4f\x93\x97\x8c\x32\xd0\x9d\x78\xdb\x40\xa5\x65\x37\xe1\x4a\x53\xf2\xea\x73\xbc\x75\x2c\xec\x4c\x15\x1b\xb4\x89\xaf\x21\x4c\xd9\xa1\x7d\x6a\xf5\x72\x6d\xc2\x62\x4f\xee\x33\x4a\x76\x17\x09\x77\xb9\x37\x39\x1c\x32\xca\x21\x14\xc7\xdc\x3e\xcb\xc4\x6e\x24\xec\xce\x2a\x29\x9b\xf3\xac\x90\x70\xac\x3d\xf2\x5a\xf7\x87\xfd\x04\xa1\xfa\xd2\x23\xf4\x6c\x90\x41\x42\xcf\xc8\x6d\xcf\x41\x3d\x1a\x87\xc2\x55\xc5\x29\xcf\xe6\xce\x21\x1c\x6f\xf8\xf6\xba\xe7\xee\x1f\x06\xc3\x2b\x79\x66\xe5\x32\x4a\x04\x37\x66\xa2\x5c\x72\xd0\x04\xc2\xfc\x57\xf7\xfb\x9c\xe5\xe7\xb0\xe1\xdd\x3b\xb3\xeb\xfc\x87\xb7\xb3\x41\x5d\xaa\x5e\xd3\xce\x51\x94\xd0\x69\x97\x1b\xee\xee\x15\x46\xa8\xee\xe0\x29\x70\xbf\x24\xcc\x86\x3d\x43\x8a\xbd\xb5\x6b\xa6\x12\xde\x86\x14\xd9\x96\xa7\x7a\x11\xaa\x12\x77\x3b\x8c\x72\x82\x81\xf5\xdc\xf8\x5a\xbf\x8a\xe5\x84\x05\x5a\xaf\xda\xbb\x8d\x93\xd8\xb0\xd3\x26\xd6\x68\xff\x8e\x68\x82\x64\x84\xc1\xf4\xf7\xce\xb3\x08\x97\x3f\x68\x3e\x3e\xbf\xac\x8f\x41\x6f\xcb\x91\x29\xb5\x4b\x26\x13\xee\xd9\xae\x11\xbd\x71\x81\x83\x0d\x73\xc0\x7b\x69\x41\x70\x7b\x25\x84\x2b\x4f\x4c\x57\xf7\x5d\x42\x10\x71\x7f\x9c\x7d\xfd\x9a\x08\xc1\x14\xa7\xdb\x47\x9e\xce\x27\x18\xfa\xf4\x6a\x55\xaf\x17\x26\x0c\x72\xfa\x7a\x36\x14\xfd\x62\xc0\x6c\x28\x5c\xfb\xdd\x62\x02\x41\xac\x6b\x4e\x8c\x95\xdd\x2f\x06\x12\x57\x1a\x85\x4c\x9f\x7e\x65\x90\x3a\xbf\xdd\x82\x79\x1c\x41\xe3\xa8\x7f\xbb\xcf\x56\x21\x6a\x23\xc1\xf5\x19\x93\x77\xf5\xb2\x07\xe1\x95\xa4\x7c\x5c\xa2\xb1\x1a\x61\xca\x97\x97\x9b\x2c\x53\x4c\x08\x47\x9e\xd8\x8b\x36\xd9\x18\x12\x02\x6f\x4d\xf6\x73\x2b\x7c\xcb\xc0\xe1\x0f\x47\xa6\xb1\x84\x11\x8d\x83\xa6\x56\xbf\xf3\x54\xaf\x65\xb0\x2d\xf5\x42\xb8\xc2\x9a\x59\x84\x73\x93\x04\x0b\x1d\x0f\xeb\x10\xda\x42\xee\x9b\xc5\xbc\x5c\xc2\x86\xaf\x31\xba\x31\xbd\x52\xaf\x2b\xf1\x92\xff\x7c\xad\xea\xc5\x3c\x06\x79\xad\x53\x3d\xdf\xef\x2e\x20\x58\x28\x25\x75\xbc\x1b\x43\x58\x5c\xaa\x33\xcf\x05\x7f\x82\x4c\x81\xfa\x8c\xc8\x8a\x4a\x82\xe3\x6c\xfb\xdb\xfd\x47\x1a\x58\x78\x95\xbb\x52\xea\x6e\xc5\x6b\x16\x2c\x3e\xac\xe2\xfb\x31\xe5\x01\x0b\x8b\xeb\x27\xef\x33\x8a\xdf\x4d\xf0\x96\x58\xc5\xab\x7e\x6b\x27\x61\x31\x4f\x59\xa3\x5c\x69\x16\x0b\x4b\x24\x33\x07\x07\xa6\x44\x13\x52\x4f\xad\xee\xf8\x6a\x10\x48\x50\x38\xba\xee\x44\xc7\x17\x27\xc2\xdc\xd7\x1a\x3a\x3e\xac\x7d\x2c\xec\xd6\x57\x5d\xa6\xf4\xc3\x8a\xf0\xdb\x7b\x7b\xab\xa2\x9e\x14\xc1\xcf\xf4\x9d\x5a\x46\x9e\x10\x61\xb7\xfe\x5f\xa3\xeb\x0f\x14\x09\x0e\x09\xb3\x77\x5f\xf3\xea\x63\xc6\xb1\x63\x68\xf7\xb7\xd8\x62\x30\x10\x0a\xf3\xd3\x1c\xaa\x13\x20\x1c\xd5\x2e\xe3\xbd\xb5\xb1\x9d\x81\x75\xc5\xd1\x84\xc2\x15\x2a\x84\x79\x67\xb9\xdf\x98\xfb\x6b\xb1\x61\xd5\x6e\xbf\xa3\x5f\x26\x95\x30\xe0\x0d\x37\x5b\xbe\xf4\x55\x04\xc1\xf1\xf2\xb3\xf3\x4e\x27\x5f\x33\xd8\xf9\x49\xf4\x53\x4d\xd9\x3c\x1a\x47\xee\xcb\x88\xa1\xc9\x5c\x96\x84\xd8\xcf\x03\x47\xd6\x45\x0e\x30\xd8\xb8\x60\xd5\x60\xe0\xfb\xe3\x84\xa2\xdf\x7c\xef\x1a\x1e\xb9\x13\x6e\xf3\xa8\x28\xdc\x0a\x0f\x26\x94\x5f\xee\x0b\xe7\x5e\xcc\x10\xf2\x7f\x45\xdc\x3d\x6d\x60\x46\x70\xbd\x2d\x3e\x37\x7b\xd4\x85\x50\x3a\xfb\x7d\x89\xef\x13\x03\x42\xf1\xf9\x96\xb5\x4d\x9e\x36\x84\xfd\xa1\x9b\xf6\x76\x84\x1c\x64\x83\x63\xaf\xe7\xbc\xfa\x80\x20\x82\xfb\xc0\x83\x67\xc1\x6d\xaa\x84\x33\xa6\x3b\x5f\xae\x1c\xcd\x27\x3c\xca\xb7\x64\x38\xfc\x6e\x11\x38\x4d\xda\x2d\x04\xe2\x44\x09\x77\x85\x17\xc7\x29\xd8\xc8\x10\xba\xac\xa2\xa9\xbf\x27\x94\x30\x5b\x40\xff\x72\xa4\xb5\x09\x81\xe7\x57\x99\xc9\x84\xba\xd6\x4a\xfc\x2c\x74\xd1\xb1\x13\xb1\xa1\xff\x0b\x32\x5d\xad\xa1\xb1\x8b\xc7\x3e\xab\xc6\xc3\x32\xde\xfc\xca\x84\xe6\x4d\xc2\x1f\x4f\xef\xfe\xcd\x8c\x43\xfb\x70\x83\xa2\xe1\xee\x45\x84\x02\x91\x7d\xaf\xdd\x4e\xed\xa5\xf1\xf2\x3f\xa4\x3a\x4d\xab\x78\xad\xf4\xa6\x12\xf7\x9c\xa4\x2e\xd4\xbf\x38\x41\xe0\x12\x8c\x50\x8d\xb5\xe5\x26\xe4\xa5\xa7\x5b\xf5\x96\x0a\xb1\xe1\xf2\x60\x5a\x8b\xe9\xa6\xd9\x84\xcc\xd6\xa7\xed\x59\xee\x19\x2c\x84\xb6\xb5\xc6\xdf\x2a\xb9\x4e\xf8\xe8\xb8\xab\xff\xbe\xe0\x1d\xc2\x37\x85\x33\x3a\x7a\xdd\xcf\x58\x90\xb9\x66\x56\x94\x90\x73\x81\xa0\x1d\x31\x63\x55\x5b\xc7\x75\xc2\xc5\x20\x91\x4d\x97\xf2\xb4\x08\xda\x7b\x3c\xd4\x93\x17\x95\xfc\x0b\x3e\xe6\x5d\xa2\x1a\x99\xfe\xff\xc2\x6e\x81\x67\x12\xc5\x46\xec\xc5\x7d\x67\xf9\xe2\x93\x76\x13\x09\x0f\x55\xd5\x5e\x06\x5c\x90\x27\x2c\xfd\x69\x56\x94\x3f\x91\x97\x20\xf4\x21\xbe\xb0\x27\x72\x26\xc1\x74\x3e\x6f\x58\xa3\x6a\x0e\x0b\xf9\x77\x94\xda\xda\x13\xc2\x58\x70\x72\x1a\x99\x12\xb4\xf9\x3a\x21\x4c\xce\xc7\xef\x9d\x4e\x09\xe1\xec\xe2\xe8\xc3\xdd\xbb\x6b\x09\x86\xb9\x9c\xb3\xce\x6d\xbf\x4e\xd8\x78\xbe\x96\x7f\x6f\xcf\x55\xc2\x51\xc5\x6b\x17\x4d\x2b\xb2\x08\x9a\x9a\xfc\xe5\x42\x4d\xf6\x84\xb0\xf7\x4d\xea\x47\xbe\xac\x20\xb8\x95\xf4\xa4\x37\xcc\x9a\xc1\x36\xfa\xdf\xff\xa3\x7e\x6d\x68\xaf\xe2\xe4\x0b\x84\x0f\x1e\xab\x75\xb9\x95\xe5\x08\x47\x6f\xcf\x6c\x57\x20\x4e\x42\x8f\x7e\xad\xa9\xb6\xd2\xd8\x87\xff\x7c\xe0\xf7\x58\x9d\x24\x16\xba\xac\x17\xe8\x1d\x09\xb8\x46\x48\xf6\xe5\xee\xba\x3a\x77\x3e\xc1\xd9\x2f\xe4\x31\xaf\xbf\x08\x41\x57\x93\xa7\xff\x71\x5a\x2c\x41\x4b\xf0\x96\xfc\x39\xf5\xbd\x84\xd0\xe2\x57\x85\xcd\x9f\xed\x08\x9f\x3d\x5e\xae\x5e\x36\xbc\x9e\x60\xff\x2c\xc2\x7c\x66\xb4\x2a\xa1\x24\xa6\x66\x8e\x83\x41\x12\x1b\x56\x5a\x71\xca\xef\x2a\x39\x4c\xd8\x51\x1b\x79\xed\xef\xe8\x00\x03\xeb\x03\xc7\xdf\x1a\x65\x70\x10\x16\x3c\x71\xf3\x1a\xf9\xac\xcb\x86\x9e\x05\xd5\x5b\x8e\x05\x6d\x66\xa1\x20\x5a\x31\x6f\xc5\xfa\x7a\x06\x3a\xee\xa1\x03\xb2\x5e\x6b\x08\x55\xf4\xe3\x44\x61\xca\x4a\x42\xc9\x76\xcd\x9d\xee\xa7\xa6\x11\x42\x6e\x77\xc7\x4e\x1b\x2c\x61\x83\xe6\x5b\x9d\xe7\xc9\x3b\x9d\x08\xce\x6a\xbf\x9e\x9c\x4c\xa8\x24\xcc\xf9\xa1\x7b\xd2\xda\xfe\x02\xc1\xff\x77\xeb\x0a\xd5\x84\x5d\x6c\x08\xcf\x0b\xbf\xac\xd3\xf2\x99\x41\xde\xdf\x20\x8e\x37\x6b\xeb\x08\xbf\xd6\x18\xbd\xdc\xfa\x77\x19\x21\x74\xc3\x24\x1b\x7f\xa3\x41\x06\x6d\x02\xd2\x71\xd3\x8f\x3c\x67\x20\xf5\x56\xb3\xac\x31\xc2\x8e\x60\xb2\x72\x2d\xf7\x29\x57\x63\x42\xa1\x7d\x74\x75\x80\xa8\x3c\xc1\xc2\x55\xfd\xea\xab\x1f\xc6\x04\x5e\xeb\x17\x5d\x0b\x22\x67\xb1\xc1\xe7\xf3\x27\x0d\x8b\xc7\xab\xd9\x70\x7b\x6b\x50\x5c\x78\x46\x13\x83\x47\x91\x2a\x56\x2f\xbe\xd7\x57\x62\x60\xff\xaa\x6d\x83\x26\x7b\x68\x1c\x1b\x5f\x7c\x8d\xe6\x69\x18\x62\x90\x1f\xbf\x30\x75\xa3\x5e\x1d\x61\x4a\xf0\xe6\x5b\x37\x4f\xce\x25\xec\x38\x2a\x5c\xf2\xc6\xca\x88\xa0\xf2\xe3\x47\xd2\x81\x04\x35\x82\x69\xb2\xe7\x22\xab\x4f\x5c\x04\x8e\x63\x82\x7b\xd5\x5a\x26\x13\x1c\x8f\xc6\xce\x8f\x59\x22\x4b\x38\xaf\x1a\x2f\x31\xed\xec\x6f\x06\xaa\x65\x1e\x79\x0b\x27\x88\x11\xa4\x6e\x87\x5e\xd3\xf9\xb9\x8c\xa0\x70\x7f\xc6\x34\xe1\x8a\x35\x84\x25\xf2\x3f\xef\xa6\xbe\x9f\x4a\x08\x9e\x74\xbc\xf0\x80\xf6\x4b\x06\xa5\x5a\x5f\x3c\xcf\x59\x0c\x33\xc8\xde\xba\x34\xc9\xdb\x4e\x92\x90\xcc\xe9\xf4\xf4\x5e\xcb\x56\x36\x74\x5a\x6d\xda\xa4\x34\x76\xee\x64\x09\xde\x1a\x51\x4a\x16\x24\x48\xbd\x96\x7a\x66\x3b\xaa\xcc\x86\x9a\xb5\x31\xc7\x56\xeb\xf0\x13\x4e\x46\xc7\xe7\x74\x5e\xef\x63\xa0\x9f\x38\x6d\x6b\x84\x98\x08\x21\x3c\x3d\xbf\xc4\x40\x66\x13\x1b\x9c\x8c\x2c\x45\x6b\x4d\x6e\x54\x42\x57\xe5\x73\x94\xc2\xeb\x45\x84\x84\x13\x51\x05\xcb\x8c\xb4\x08\x9e\xd3\x1f\x26\xe8\x9a\x58\x11\xac\x0a\xfe\x1e\xb4\x76\xe2\x23\x14\x5c\x8a\xc2\xf7\xc3\x73\xd9\xf0\xcc\xd0\xb3\x54\x2b\xf5\x07\x03\xa5\xfe\xb3\x71\xd6\x3d\x66\x84\x3a\x1b\xf5\x99\xc3\xce\x6e\x04\xce\xbf\x8f\x06\xa6\x57\x2a\x10\x16\x85\x9d\x73\xfc\xf2\x24\x8e\x50\x11\x77\x33\x59\x44\xdc\x88\xe0\x5d\x32\x14\x28\xdc\xab\x4b\xb8\xf2\x96\x31\x0f\x68\xdd\x44\x38\xaa\xda\x34\xa9\xad\xc6\x90\x90\x9e\xb0\x40\x74\xa1\xf8\x00\x03\x55\x27\xa9\xcf\x33\xb6\xf4\x33\xf0\xab\xf8\x99\xf4\xf8\xde\x2a\x82\xa6\x18\xd7\xca\xd7\xa7\x7b\x19\x5c\xee\xf7\xb1\xd2\xe1\x8c\x20\x28\xf0\xce\xf0\xa8\xb3\x19\x66\x70\xb9\x69\xda\x5f\xf5\x4c\x47\x42\xbb\xa2\x91\x92\x69\x58\x00\x21\xa3\x63\xa2\xb4\x68\xb5\x13\xc1\xf6\xc3\x64\x9b\x9c\xa0\x59\x04\x8b\xf4\x79\xae\x09\x39\x35\x0c\xe4\x1e\x9f\x72\xa2\x12\x2d\x1a\xc7\x8b\x82\x19\xbf\x38\x8f\xa8\xb1\xc1\xb7\x2b\xf1\xab\xcf\xb4\x1f\x0c\x26\xde\x8c\xa8\xcf\xdd\x2a\x4f\x10\xde\xd0\xb3\xe9\x55\xaa\x02\xa1\x31\xed\xca\x89\xd8\x7e\x41\x42\xfd\x51\x5b\x53\x4d\xe7\x29\x6c\x70\x8b\xf5\x4a\x7f\x31\xa3\xb6\x72\x1c\x83\x87\x73\x82\xa6\x76\xb3\x08\x3a\x7a\x12\xce\x0a\x87\x58\x04\xad\xcd\x9b\xbf\x3d\x71\xbd\x45\x58\x59\x2f\x21\x34\x78\xb0\x86\x10\xe8\xe3\xb4\x89\xb7\xe1\x12\x0b\xa7\x3a\x9e\xce\x3e\xe3\x98\x40\x40\xef\x8b\x1f\x1e\xf7\x12\x08\x8e\x64\xd3\x55\x40\xf5\x84\x9c\x65\x7f\x37\xae\x58\x52\x4e\xb8\xca\x7b\xea\x76\xe6\xcc\x00\x42\x0f\xf7\xd1\x39\x82\x32\x16\x84\xd5\xd6\x96\x9b\x78\xeb\x66\xb3\x61\x93\x82\x77\xae\xe8\xba\x89\x84\xaf\xbc\x05\x0f\xfa\x67\x55\x12\x3e\x9c\xfe\x26\xaa\x75\xa7\x82\xf0\xa2\xfe\x9c\xef\xe2\x77\xb7\x08\x62\x26\xab\x23\x06\xc6\x46\xb3\x2b\xa2\x23\xae\x3e\x37\x26\xdc\x73\xc9\x70\x94\x7b\xb0\x70\x1c\x7f\x6c\x03\x07\x5f\x5f\xaf\x61\xa1\xa1\xba\x3e\xce\x25\x5e\x88\x20\x7c\xc5\xf4\xc6\xe4\x68\x53\x42\x01\x4f\xe4\xed\x4f\x65\x4d\xac\xf1\xb2\x9c\x7b\x69\xd2\x6e\xb9\x37\x0c\x3e\x89\x73\xd8\x66\x1f\xc8\x24\x54\x16\xf9\xf0\xf7\xfc\xc9\x22\xd4\xdd\xbc\xec\xdb\xa7\xe6\x4e\x98\x9d\xa3\xfc\xe2\xc9\xb4\xd9\x6c\x28\x1e\x3a\x93\xd1\xb5\x49\xfa\x5f\x38\xb0\xe5\xb0\x49\xc5\x1f\x31\xc2\x55\xa3\x7d\x42\x01\xa6\x8a\x04\x33\x8e\x96\xd3\x25\x37\x3e\x30\x30\x29\x9e\xbc\xc1\x47\xb6\x92\x70\x59\xa4\xe7\x46\xbf\x73\x39\xa1\xaf\xf7\xfe\xec\x2b\xb6\x9d\x2c\x08\x1a\xeb\x1d\xff\x6f\x64\xd3\x3c\x32\xf7\xe5\x8c\x65\x84\xc1\xd8\xb7\x03\xf1\xa1\x7c\x84\xef\xee\xca\x5c\x17\x4e\xa9\x12\x3e\x88\xde\x7e\xe2\x16\x6b\xc2\x86\x0d\x3b\x04\x67\xb5\x95\xbd\xac\xc4\x6e\xcb\x83\x7e\x1e\x57\xcb\x08\xc7\xba\x6c\xed\xbb\xb7\x5e\x24\x4c\xe4\x7f\x6e\xf8\xeb\x7c\x3e\x61\xed\xbc\xec\x5a\xa5\x59\xe5\x04\xa1\x84\xa6\xe8\xa4\xea\x20\xc2\xf6\xfe\xa7\x13\xdd\xd7\x27\x12\x04\x83\xc5\x56\xf0\xe4\x6b\x10\x1a\x77\x0d\xfd\x31\x4d\xb9\x46\x58\x94\x97\x6f\x77\x54\x5e\x8d\x90\xf6\x26\xde\x7e\x82\x4c\x20\xe1\xd4\x11\xb9\x33\x31\xcd\xd5\x84\xa0\xda\xdd\xbd\x89\xc1\x0f\x08\xfd\xc5\x6e\x4b\xd4\xd2\x5a\x09\xbe\xca\xc9\xca\xaf\x5d\x6a\x08\xbe\xdc\x6e\x97\xbf\x7f\xba\x4b\x88\x53\x7f\xc4\x5c\x4f\xab\x25\xe4\xcc\x13\x1f\xb4\x94\x63\x08\xb1\x82\x4a\x65\x71\x01\x1a\x84\x75\x55\x82\xd1\x3f\x8c\x4e\x10\xb8\x4d\x0f\x7f\xf8\xfb\x6b\x3e\xa1\x57\x78\x6a\xe2\x35\xbb\x3b\x04\x37\xa9\xdb\xf5\x1b\xf6\x57\xb0\xa0\x10\xf6\x69\xd3\x7f\xe5\x56\xfa\xe2\xea\xff\xd0\xa3\xbe\xa9\x61\xee\xcf\x79\x04\xd5\x4e\xb9\xf5\x23\xed\xce\x04\xde\x82\xe3\xf7\xf5\xce\xb9\x13\xac\xf4\x93\xa4\x7e\x65\x98\x12\x84\x86\xd7\x04\xcb\x5c\x7e\xc7\xc0\x6d\x47\x38\x47\xd2\x07\x75\x1a\xc7\x50\x8b\x73\xf4\x1f\x9e\x97\x0c\xb4\x24\x7b\x8b\x85\x86\x8d\x08\x97\xa7\xf4\xd5\x65\x4c\xd4\x20\x04\xd8\x57\xcf\x2c\xbf\xa4\x48\x58\xff\xe0\xd4\x37\xdf\xa9\x89\x2c\xac\x9e\xa8\x10\xd0\x37\x6b\x0d\x21\xfe\xc9\xf7\xc2\x10\xdf\x7c\x16\xe6\x35\xc5\xcf\xb7\x8f\xca\x67\xc1\xa1\x22\xac\xff\xfd\xc7\x34\x16\xa2\x0f\x48\x08\xbc\x60\x2e\x13\x52\xb6\x2d\xde\xf1\x58\x35\x93\xd0\x64\x52\x59\x7d\xc9\x55\xfc\x5f\xe0\x5d\x78\x69\x8e\xf7\x67\x16\x61\xa2\xdf\x6b\xbd\x5c\x81\xb7\x0c\x84\xf4\x35\x87\x1e\x1d\x4d\x20\x6c\x39\x52\xa7\x95\x71\xf7\x09\xe1\x94\x57\x7b\xac\xdf\xab\x27\x84\xb7\xc9\x7f\x92\x2e\xbe\x7c\x42\x70\x0d\x56\x2c\x6b\x6d\x7b\x42\x18\x14\xbb\xa3\xb5\x65\x6c\x14\x5a\xab\x6a\xf0\xfe\xd7\x29\x42\xca\x68\x99\xe7\x39\x8b\x18\xd6\x78\x51\x91\x1c\xb9\x75\x7a\xe8\x10\xc1\xdf\x73\xd8\x75\x8b\x65\x0c\x61\xfd\xa9\x8e\xc1\xcd\x42\x2e\x04\xab\x85\x3f\xac\x15\xf6\xcb\x12\x28\xd9\xd3\xc8\x2c\x4b\x9d\x30\x79\x47\xfd\xba\xf2\x64\x3e\xc2\xd0\x5a\xee\x24\xf9\xe7\x2f\x19\xc8\xf3\x2e\xbe\x1c\xef\xb9\x94\xf0\x3a\x37\x62\xc3\xfc\xeb\x9d\x0c\xc4\xa2\xda\xd6\xdd\xe7\xb0\xa7\x71\x8c\x44\x3d\xda\x10\x6e\xd3\xcf\xa0\xa3\x6a\x8b\xdf\x9b\xc5\xb1\x04\xb9\x8c\x8f\xfb\xf2\x47\x63\x09\x35\x86\xc6\xc1\xad\x13\x77\x10\x9a\x1b\x5a\xb5\x5b\xf6\xcc\x23\xc4\x25\xbc\xae\xd6\x5c\x66\xf7\x2f\xdc\xd2\x9f\x24\xe9\x5a\xa0\x48\xf8\x5a\x74\xf3\x57\xca\x66\x59\x82\xd4\xc9\xae\x23\x7f\xa3\x96\x10\x6e\xf0\xcc\x8a\x39\xf7\x76\x01\xc1\x64\x09\x77\xc7\xec\x3f\x9f\x19\x48\xaf\x98\x52\x10\x56\xc3\x43\xb8\x5b\x2c\x34\xa1\xe8\x94\x0a\x21\xf2\xd8\xce\xcd\xba\x32\xd2\x04\xdb\xfa\x12\xed\x59\xa3\x9a\x04\x5d\xf5\xfa\x39\x7f\x07\xd5\x08\x77\xc4\xce\x7d\x4a\x17\x9e\x4a\x78\xa2\x69\xbd\x58\x46\x76\x88\x19\x07\x22\x5f\x3b\x7c\x9a\x2c\x44\xe0\x0e\x76\x09\x9d\xf4\x4a\x80\xb0\xe8\x6a\xbf\x42\x0e\x97\x06\x81\xf8\x4f\x9a\x49\xaf\x79\xc0\xc0\xe6\xb1\x0a\x87\x0a\xb7\x24\x21\x47\x20\x82\xe3\xa5\xf9\x49\xc2\x92\x79\x01\xc7\x35\x2c\xd9\x31\xd2\x1a\x58\x7f\xe9\xfb\x5a\xc2\x2b\x8d\x54\xc1\xb3\xca\x2e\x6c\x48\x08\xf6\xb3\xf5\xb9\x15\x4f\x78\xdc\xfb\xfc\x7a\x92\xfc\x1e\xc2\xfb\x6a\x85\xa7\xcb\x92\xf7\xb1\xb0\xbf\x4c\xb9\x48\xf0\xdd\x5a\x1a\x47\xfd\xc2\x80\x3d\xb2\x31\xa2\x84\xc3\x9f\xc4\x94\x37\xcf\x56\x20\x9c\xc5\x9c\x80\x67\xd9\xfb\x08\xcf\x07\xec\xf5\x0d\xae\xee\x22\xfc\xfc\xa2\xb8\x27\x8a\xa3\x99\xa0\xf1\xa9\x6b\x5f\xc3\xa9\x3b\x04\xab\xbd\x71\x32\xaf\x6e\xdc\x24\xf8\x5a\xfe\x0e\xd2\x58\xcb\x41\x58\xbf\xba\x46\xa2\x58\xea\x05\x83\x25\x5b\x97\x9e\xff\xb2\x87\x9f\xc6\xb1\xba\xe5\xeb\xaf\x39\x5a\xfe\x2c\xfc\xfa\x28\xdc\x5a\xf6\x8d\x9f\xb0\x7f\xf9\xef\x8f\xcb\xf9\x4d\x09\xf1\xca\xa1\x93\xaf\xc6\xbe\x63\xe0\xb4\xf5\x85\xec\xb2\xad\xfa\x04\xe6\x9b\xc9\xc6\xc0\x55\xda\x04\x93\xdf\x67\xa3\x96\x2b\xda\x12\xfa\x3f\xe9\x37\xb7\x7d\x99\x4c\x68\x7c\xf3\x30\xd3\xe6\x90\x0f\x1b\x2c\x46\x75\x14\x36\x39\xba\x11\x94\xe4\xe6\x37\xbe\xda\x36\x8b\xf0\x65\xf0\xcf\x2f\x9e\xb0\x50\xc2\xbb\xac\xac\xfc\xd6\x1b\x1c\x84\xc6\xc8\xa2\x4b\x05\xdc\xcb\x08\x1f\x5f\xdc\x68\xd9\xb8\xf8\x22\x21\xee\xf3\xbe\x92\xbf\x3e\x63\x5f\x87\x47\x1a\xb2\x2a\x9a\x8a\x04\x31\xf3\xd1\xfb\x61\x1b\x35\x09\xda\x01\x92\x82\xde\x1c\xcb\xc7\x96\x02\x35\xcd\x05\x3f\xb9\x09\x16\x57\x0c\x12\x79\x8e\x67\x13\xd2\x04\x8f\x77\x18\xaf\x2b\x63\xa1\x40\xcc\xb8\xf5\x73\xa8\x03\xc1\x2b\x65\x1f\xcf\xf0\x94\x95\x84\xdb\x95\x8f\x78\xdd\x1d\x45\x08\x5c\x46\x0a\x55\xef\x35\x66\x12\xe8\xc4\x3b\x89\xbd\x1a\x65\x04\xbb\x0f\xb6\x35\xee\x6a\x65\x04\x5b\xad\xaa\x0f\xed\x49\x3d\x0c\x14\x26\x96\x18\x49\x64\x5b\xd3\x38\x9c\x44\xae\x46\x09\x3d\x31\x24\x6c\x5f\x96\xa1\x78\xce\x5d\x9b\x60\x77\x77\xeb\x8d\xef\x90\x23\xe4\x8b\x2c\x95\x2d\xf9\xab\x44\x98\x64\xf8\x36\xca\xdd\xac\x88\x10\xf4\xdc\xc5\x60\x2e\xa7\x26\x21\xf9\xa0\xc6\x75\xeb\x78\x5d\x42\x54\xc3\x80\x9c\xf0\x0a\x51\x42\xc7\xf5\x05\x03\x45\xdd\x2a\x04\x47\xcb\x0c\x35\xa3\x9e\x5e\x06\x9d\x9f\x0f\xab\xdc\x1e\x5b\x7f\x7c\x2d\xee\xf9\x39\x07\x3e\x67\xc6\xc1\x77\xda\x51\x6e\xc7\x76\x0e\xc2\xbe\x29\x99\xfa\x8f\xe3\xe6\x10\xf8\x7e\x96\xf5\x9b\xb8\xca\x13\x5e\xce\x88\x38\x9c\x78\x73\x36\xc1\xd4\x73\xb2\x41\xe7\x70\x5b\x25\xd2\x76\x36\x4e\x8c\x7c\xf9\x8b\xc1\x9c\xc4\xc1\x3f\xf2\xe7\x17\xd1\x38\xf8\x57\x3d\x9f\x6f\x90\xde\xc2\x80\xef\xf6\x99\x25\xed\xe6\x12\x04\xce\x3b\x4b\xef\x0a\x2d\xdc\xfd\x2f\x14\x7c\xfd\x32\x54\x26\xf6\x82\xc1\xa4\xf5\x8f\xb2\x8d\xbd\x8c\x09\x2b\x6f\xad\xc2\x7a\x33\x1e\x42\x41\xa0\xe5\xac\x17\xc7\x8b\x09\x2b\x72\xa3\x65\xd6\x3c\xe3\x22\x5c\x72\x8a\xfc\x75\x7e\x86\x30\xe1\xef\xa5\xd7\x1c\x33\x62\xe6\x10\xd2\xb1\xc9\xfd\x33\x4f\x0f\x03\x63\xaf\x99\x9b\xa4\x3e\x7d\x60\x83\x99\xc4\xe9\x9c\xdd\x3c\x6f\x18\xd8\x88\xa9\x97\x9d\x36\x74\x61\xe1\x84\x6c\x7b\xa0\xfb\x9a\x74\x16\xa6\xe8\xc5\x1d\x9b\x31\x79\x23\xe1\xe4\xd3\x4f\x93\xe2\x17\x4c\x22\xec\x11\x4c\x4d\x7a\x0c\x5e\x42\x6a\xbf\x41\xf8\xa4\x3b\x59\x6c\xf8\xd4\xfa\x70\xfe\x81\xe5\x9d\x84\x8a\xdc\x4e\xae\xf9\xc6\x15\x04\xa5\x3d\x43\x76\xfc\x63\x23\xe9\x8e\x11\xa9\x45\xc2\x4e\x84\x23\x0f\xe7\x35\x68\xc4\xc9\xb2\x95\xff\x3f\x8c\x27\xc5\x15\x2f\x9b\x23\x49\xf8\x79\xe9\xc1\xe6\x75\xb1\x39\x95\xd8\xeb\x35\xcf\xee\x86\x61\x31\xc1\xfe\x70\x97\x80\x73\x63\x3a\xc1\xec\xf7\xf7\x5b\x3e\xdf\xcf\x13\x86\x4a\x2a\x27\xde\x1a\x1b\x7d\x58\x76\x76\xb3\x5d\xe9\x0e\x02\x6f\x86\xec\xb9\xa7\x85\x27\x08\x53\xed\x12\x74\x6e\x2c\x90\x22\x08\x2b\xac\xaf\x38\xac\x36\xc0\x8c\x43\xa6\x68\x51\x46\x4d\x76\x65\x25\x2c\xe4\x38\x04\x33\xce\xf1\x12\xb6\x89\x28\xb6\x95\x46\x1a\x11\x6e\x1e\x59\xbd\x56\xd6\x8c\x9f\xe0\x2d\x7b\x7b\xc8\x8a\xf3\x27\x83\xe5\xba\x0e\x3b\x8e\x8c\x2d\x5f\xed\x59\x36\x75\xad\x8a\x1e\x6c\x98\xb5\x71\xb5\xd7\x7f\xbf\x2c\x76\xaf\x7a\xb2\xf3\x60\x63\x3f\x83\xdc\xc1\xf5\x01\xe6\xc2\x69\x04\x67\x26\xa6\x7a\xa3\x48\x1a\x41\xa1\xb1\xe4\xfb\xff\x0b\xce\xd9\xa3\xa5\xda\xba\xde\x04\x37\x9b\x45\x81\x5a\xeb\x7a\x59\xe0\xde\xc7\xa7\xf4\xfb\x8e\x37\x8d\xa3\x39\xf1\xdb\x87\x94\x68\x5b\xc2\x88\x93\xda\xb3\x9b\x7f\x4f\x13\x0e\x7c\xfd\x6a\xd5\xb7\xb3\x91\x20\x7b\xb4\xb4\x33\xe2\x61\x35\x0b\x51\x31\xdf\xf1\x7d\xac\x54\x0c\xd6\xdd\xfb\x0f\x5d\xe2\x0b\x15\x83\xf5\xc3\x09\x4d\x8d\x8b\xef\x2c\xb1\x8f\x22\xbc\x15\xc9\x3f\x9f\xe3\x3c\x8d\xc0\xdb\x24\x9d\x76\x72\xa7\x18\x41\x49\xc2\x62\xc6\x03\xa9\x10\x16\xa2\x8f\xb4\xa8\x58\x25\x9e\x20\x6c\x0c\x28\xbd\x61\x9a\x93\xc2\xc2\xb1\xf8\x64\x73\x89\x8a\x13\x84\xd2\xdb\xb7\x8f\x25\xbe\x7d\xc7\x20\xa4\x73\x7b\xdb\x3a\xd5\xa9\x84\xda\xc9\xd7\x3a\x33\x3d\x3f\x32\x88\x49\x29\x8c\x5c\x38\x45\x9b\x30\xfd\x6c\x3c\xdf\x9d\xcd\x60\x70\xe4\x6a\xb8\x0b\xcf\xa3\x3b\x0c\xfe\x1e\x9b\x93\x42\x4e\x97\x08\x25\x93\xb8\xb5\x54\x1f\x57\x12\x74\xc5\x97\xdf\xd5\x1b\x60\x08\x19\x1b\x37\xb8\x2d\x9e\xbb\x85\x10\x1b\x59\x1b\x20\xb1\xd5\x9f\x70\x67\x4f\xf7\xbd\x2d\x63\x1f\x51\x49\xf1\xdc\x1d\x77\x5e\xee\x24\xc8\xac\x12\xee\x90\xa8\xd1\x26\xdc\xd4\x4f\x4a\x10\x99\x21\x49\x50\xef\x7e\x21\x37\xdf\x44\x8d\xb0\xdd\x60\x97\xaa\x89\x12\x27\xe1\x40\xc0\x37\x4b\x1d\x5e\x53\x42\xf2\xe3\x1f\x19\x17\x8a\xab\x09\x6b\xf6\x5c\xdf\x3b\x6b\xf1\x45\x16\x3e\x08\x7a\x4f\x0c\xb7\x4e\x24\xa8\xfd\x4c\xeb\xfc\xc8\xec\x22\x9c\x5d\xd0\xbc\xac\xe6\x62\x25\xc1\x4f\xea\xcc\xb9\x07\x07\xf4\x09\x5f\x47\xa6\x4e\xfd\x3e\x7f\x22\xc1\x4b\xfa\xb7\x46\x4a\x79\x36\x1b\xde\xdc\xec\x5f\x59\xc5\x7b\x98\xc0\x29\xd5\x2a\x15\x37\x7d\x1f\x61\xba\x73\x6d\xc8\xa1\x2a\x05\x02\x77\x65\x97\x6d\xed\xa8\x31\xa1\xea\xf7\x1f\x8e\x1d\xb1\x57\x08\x45\xd9\xf3\xd6\x0f\x24\x5e\x25\xac\x7c\xa2\xe2\x1a\x78\xf6\x39\xe1\x70\xcf\x47\xdf\x1d\x8b\x9e\x10\xb4\xca\x16\x4e\x2e\x93\xbe\x46\x28\xff\x9b\x72\xf9\xf1\xf7\x30\x82\xe0\x24\x01\xee\x3b\x52\xc1\x84\xb4\xe0\x19\x7a\xd1\x63\x65\xa9\xed\xe6\x9f\x57\xee\xcc\x26\x1c\xfe\x3c\xed\xd9\xd0\x37\x7d\x82\xfd\xd7\xe1\xfa\x61\x66\x2e\x41\x40\xec\x93\xf4\x21\xa9\x25\x84\xfd\x8f\x54\xae\x57\x55\xdb\x13\x24\x6f\x76\x4a\x27\x27\x15\x13\x6c\x77\x88\x4e\x5f\x2d\xf3\x9d\x41\xa8\xc4\x8f\x05\xb9\x01\x5a\x2c\x78\x29\x5d\x11\xd9\x77\x69\x1d\xc1\x4c\xc2\x40\xca\x66\x9d\x2d\x61\x7b\xc3\x94\x4c\x55\x2c\x61\x61\x5d\xcf\x41\xfa\xc6\x55\x41\x60\xcd\xbb\xd5\x23\xcb\xef\x41\x70\xce\xbc\x7c\xa4\xb1\x64\x15\xa1\x2f\x2d\xf1\x79\xc6\xf6\x2e\x06\x77\xf9\xee\xc7\x04\xb5\x6c\x23\x9c\x6c\xb5\x6d\xfa\x41\x0e\x04\xf5\xc5\x96\xcf\x79\x36\x54\x10\x16\xd5\x37\xec\x0e\x8f\x95\x27\x4c\x4d\xeb\x9e\xaa\xa4\xf9\x92\x81\x0c\x2f\x5f\xe5\xe5\x55\x2d\x0c\xe2\xae\x9b\x17\x34\xf4\x5b\xd0\x38\x54\xb3\x9e\x5e\x0f\x73\x57\x27\xc4\x6f\x7d\x50\xbb\xd4\xf9\x0a\x0b\x2e\x39\xaf\x36\x5e\x6f\x90\x25\x28\x05\x1e\x5a\x10\xf3\x73\x3d\xc1\xae\x82\x66\x57\x2f\xdf\xc6\x56\xfc\x3d\x1a\x26\xdc\x98\x1e\x4e\xd8\x9a\x67\xbc\x78\x6d\x5c\x38\x5b\x11\x77\x7e\xb5\x75\xff\xd8\x9a\xf1\xe0\x54\xdb\xe9\x3f\x0e\x7c\x84\xce\xb7\xe7\x0f\x28\xf3\x3d\x24\x2c\x34\x4f\xa6\xe0\xbc\x5e\xc2\xe9\xe9\x67\x2f\x2c\x3d\xd3\x42\xc8\x36\xd9\xa2\x79\x41\x23\x89\xb0\x49\x57\xc0\xc4\xb4\x39\x9e\x60\x9d\xb1\x5f\xf6\xf6\xc8\x41\x16\xde\x9e\x39\xd1\xfd\xe2\x68\x38\x0b\xbd\x02\xb6\x96\x9d\x97\x93\x58\xf8\xb0\x7b\xab\xd8\x61\x8b\x43\x2c\x84\x7d\x4a\x1c\xe4\xd3\x0e\x22\x14\x1a\x04\x79\xa4\x5a\x57\x10\xee\x8a\x1f\x3f\xbd\xed\xcb\x23\x16\x62\x86\x17\xe9\xb7\x96\xb9\x10\x4e\xf2\x7e\x3b\x6c\xbb\x5d\x83\x70\x6d\x9d\xf0\x9c\xe0\xc7\x3e\x2c\xac\xd1\x62\x7a\xab\xd6\x77\x56\x42\xb0\xfb\x53\xff\xe4\x13\x8e\xf4\x0f\x6c\xbf\xda\x98\x28\xab\x22\x45\x78\x15\x9e\xa3\xdf\xa8\xe8\x4e\xd8\x70\x42\xf0\x69\xbe\xa8\x11\x21\x6b\x66\x8a\xbc\xeb\x5c\x11\xc2\xfd\xb4\x07\x5d\x75\x5e\x9d\x95\x78\xfe\x5a\xbb\x84\xf9\x99\x41\xe8\xd7\xe4\x65\x5d\xb3\xb4\x25\xa8\xe4\x9d\xeb\x57\xcd\xb2\x23\xcc\xf4\xd8\x93\x26\x16\x91\xc9\x1a\x1f\x2d\xb4\xfa\xd8\xf9\x6d\x87\x30\x41\x59\x31\xa4\x20\xdb\x63\x88\x41\xe1\x6f\x3a\x53\xea\x55\x40\x90\x6c\xff\x6c\xf4\x1f\x1a\x79\x7a\x36\x1a\x1d\x65\xb1\xc6\xcb\x4a\xcb\x2a\xd1\xff\xe0\xbb\x44\xdb\x58\x37\x6a\x2d\xe1\xbd\x53\x7d\x42\x46\xbe\x0c\x6b\xbc\x3c\x55\x78\xf3\x4e\x67\x0c\xfa\xb5\x5c\xb7\x1d\x83\x44\x08\x8b\xd7\x99\x2e\x6b\x5d\xfc\x89\xc1\xdb\xfd\x2a\x0b\xf5\x39\xbd\xe8\x1f\xb8\x23\xf0\xe4\xf4\x3e\x03\xcd\x7f\xa1\xc7\x5c\x47\xdf\x2c\xc8\x88\x0d\xb5\x8f\x9e\x46\x54\x9c\xfd\xc3\xa0\xf9\xf5\xd9\x0d\x4b\xaf\x6c\x20\x2c\x17\x9f\x7f\x20\xfa\xb1\x3d\xe1\xda\x9e\x63\x0d\x6e\x9a\x61\x04\x6f\x1f\xda\xfc\x63\x70\x0f\xe1\xf1\xb1\xd8\xb3\x14\x12\x4d\x08\xba\x38\x1c\x25\xeb\x90\x40\x68\x6f\xb8\x51\xe8\xfd\x54\x85\x30\x7f\xb3\x69\x55\x75\xbd\x38\x21\x64\x4e\x67\x52\x8b\x77\x28\x1b\x76\x35\x48\xf8\xf6\xce\xd8\x4e\x68\x4c\xbe\x1d\xff\x25\x44\x83\xa0\x77\x53\x74\xc9\xaf\xcc\x05\x04\xe5\xc8\xa5\xe2\xdb\xc6\x96\x9c\xbe\x95\x71\x01\xb2\x03\x91\x6c\x88\x98\xf0\xee\xc4\xd9\xd0\x6d\x84\x29\x71\x5a\xf6\x3e\x9d\xc7\x08\x6f\xb9\xc3\x9e\x6d\x5e\x97\x40\x50\xe0\x0e\x7a\x12\x97\x68\x4f\x30\xd9\x3c\xa5\xbe\x99\xe1\x20\x08\xda\x89\x58\x5e\xf4\x13\x24\x34\x9c\x11\x4e\xbc\x89\xa9\x6c\x48\xf6\xf9\x19\xfb\xaa\xad\x8f\x19\xc7\xb4\xbb\xe7\xc4\x73\x7e\xcc\xa4\x71\xc8\x7c\xf8\xc2\x67\xdf\x75\x9d\x81\xb0\x69\x55\xd7\x6d\xde\x7e\x06\xc6\x4a\xdb\xec\xe7\x0e\x4e\xa0\x7f\xe0\x6b\x12\x54\x5a\x27\xbe\xac\xc4\x94\x25\x9a\xf9\x75\xef\x27\x12\xb6\x1b\x4e\xb8\x11\x36\x76\xca\x7c\x71\xf0\xcd\x9c\xb1\xea\x0c\xc1\x70\xd2\xbb\x3f\x55\x8e\x67\x08\xa1\x02\xdf\x4a\xef\x1f\xac\x64\x21\xf0\x6e\x73\x95\x50\xed\x09\x42\xc6\xca\x23\x3f\xea\xc6\x46\x35\xa1\x5b\xc3\xa3\xe7\xb8\xb2\x61\x9e\x75\xe4\xd0\xa3\x7b\x6e\x6c\xe8\x17\xf8\xf6\x21\xf6\xbe\x1d\x41\x5d\xdb\x2c\x43\xf8\x8a\x05\x61\xdd\xa9\xe4\x99\x1f\x58\x2e\x04\xa5\xec\x47\xce\x2a\xc7\xaa\xd9\xb0\x64\x9d\xfa\x43\xa5\x61\x16\x0b\x96\x49\x9c\x3f\x32\x4c\x9a\x09\x14\x91\x16\xc6\x27\x79\x99\xb0\x7c\xd9\xbb\x28\xd5\xb1\x67\x3e\x6b\xfb\xbf\xef\x8b\xdd\x4d\xf8\xe6\xf2\xf4\x90\xff\x31\x2f\xb6\x32\x35\x6e\x82\xe9\x69\xbe\xdd\x6c\x25\x32\xff\x9d\x8a\xa9\xbf\x21\x81\xfb\xe8\xde\xb9\xf6\x9c\x8b\x09\x59\x8f\xb8\xbc\xe8\xf9\xda\x7f\x21\xea\xd9\x9b\xeb\x0d\xc9\xfe\xff\x27\xa2\x1d\xb7\xb9\xf5\xed\xda\x40\x68\x7d\xa3\x3e\x35\x76\xb3\x3c\x41\x5b\x35\xcc\x5d\xf0\xaa\x09\xc1\x44\x60\xde\x1f\x37\xe1\x51\x66\x1c\x97\xb7\xfd\x35\x4d\x3c\x5b\x55\x09\xd6\x9d\xf7\x61\x61\x4f\xe7\x12\x78\x55\xbd\x0c\x0a\xbe\x99\x10\xde\x1a\x3b\xde\x17\xd1\x59\xc4\x86\x1f\xde\x5f\x83\xec\x5f\x29\xb3\xe1\x76\x74\x5f\xc0\x7d\xbb\xcf\x0c\x66\xc6\x4a\x68\x79\xde\xd7\x20\x4c\xcb\xee\x0e\xe6\xb3\x9a\x40\xe0\xcb\xec\xcc\xb2\xb0\x56\x23\x9c\xea\x4f\xd4\x0f\x38\x3e\x97\x20\xf9\xd5\xaa\xdd\xcc\xd4\x88\x20\x67\xb8\xd0\xe6\x25\xf7\x5f\x06\xc3\xa9\x07\xf4\xb9\x79\xf4\x08\x8f\x72\x3d\xb6\x5e\x30\x1e\x66\x30\x7a\xc2\xbb\xe1\xfc\x19\x53\x42\x82\xff\xda\xcd\xaf\x3c\x43\x58\xa8\x8a\x70\xc9\xfd\x1b\x59\x40\xc8\xdc\xf7\x39\x5f\x6e\xec\x00\xfa\x1f\xe6\x6f\x2e\x1d\x19\x38\x74\x85\xe0\xd4\xd3\x3b\xbf\x23\xee\x0a\x81\xe9\x69\x2c\x0f\x8f\xb4\x20\x14\x4d\x0d\x10\xbc\xe8\x55\x48\xf0\x2a\xe6\x0c\xf1\x9c\xee\xcc\x86\xfd\xb7\x64\x56\xf2\x2d\x48\x20\xd4\xca\xfc\xe0\x60\x79\x14\x12\x8e\x16\x4a\xab\xfd\x07\xef\x15\x12\x71\x5d\xbf\xfe\x30\xa8\xf2\x55\xdb\xb1\x38\x32\x93\xe0\xc9\xbb\x70\xd9\xe0\xd1\x4c\xc2\x53\x7f\x57\xe7\xa7\xeb\x7c\xd8\x60\xbf\x4e\x40\x60\xde\x49\x61\x36\x54\x77\xf1\x9d\xdf\x56\xb2\x82\xb0\xf5\xcf\x2d\x45\x73\xa3\x17\xac\xf1\xe2\xc7\xef\x2e\x65\x9e\xd2\xca\xc0\xc8\xf2\xd2\xca\x7a\xf7\x2a\x42\xff\xbb\x15\x06\x3b\xc5\x2f\x11\xde\xaa\xd5\x75\x6a\x1e\x6c\x27\x08\xf8\x6e\x4d\xd6\x1a\x03\x97\xde\xa9\x68\xc5\x0d\xb7\x59\x08\x3f\xb4\xd4\xee\xbf\xd1\x61\x4e\x0f\xd1\x79\x36\x67\x09\x25\xbc\xfb\xaf\x79\xab\x9c\x65\x2b\x3f\x15\xd2\x3f\x8b\x8f\x2d\x03\xdb\x3a\x79\x7f\xb7\x54\xee\x20\x44\xb9\xde\x10\x0b\xe0\xbf\x40\x10\x2f\x13\xcb\x5e\xed\x91\x42\x60\xb9\xd8\x6c\xb7\xfd\xa4\xc0\x86\x8f\x03\xab\x97\x46\x15\x18\x13\xea\xc2\x97\x73\x6e\x7e\xd8\xcf\x8c\x23\x8a\x99\x6e\xb4\x6f\x24\x81\x20\xae\xb2\x87\xe7\xfb\x9e\x78\x1a\x2f\x31\x9d\xa6\xdb\x77\xf0\x9e\x27\x24\x71\xb7\x6a\x5b\x59\x5e\x24\x5c\xec\xe0\x6c\x94\x57\x37\x23\x74\xde\xbb\xfe\xc3\xfd\xa6\x08\xe1\xc5\x37\xd9\x4a\x8e\xc1\x3e\x06\xf6\x59\xef\xdb\xbc\xde\xb7\x12\x42\x31\x7b\x86\xd4\xe2\xe7\x04\xb7\x18\xed\xfa\x25\x7a\xe5\x04\x4f\xb5\x62\x41\xd6\x97\x33\x04\x07\x5d\x57\x8d\x55\xcf\x38\x09\xbb\x93\x9e\xcd\x49\x9b\x50\x41\x98\x78\x3c\xbf\xcb\x34\xf7\x3c\x0b\x0b\x57\x1e\xf9\x30\x29\x34\x86\x50\x35\x7d\xf5\x3c\x51\xe1\x21\x06\xad\xf3\xae\xcc\xf3\x57\x9c\x40\xd8\x79\x40\x53\x30\x9b\xb9\x49\xe8\xd8\x73\x73\x76\xad\x57\x05\x61\x96\xbf\xf3\x0a\x8d\xa8\x66\x06\xed\x59\x86\x43\xaf\x4b\xf8\x68\x1c\xdf\xac\x93\xaf\x2f\xe7\x9a\x40\x18\xba\xf1\x7a\xb8\x71\x59\x2a\x21\x7d\xb8\x8e\x6b\x85\x79\x04\x21\x65\xa9\x61\xa7\x49\xec\x01\xc2\xc2\x5e\x8f\xa3\xb7\x12\x8a\x59\x68\xf0\x2d\xb7\x0f\x69\x0f\x67\x7b\x66\xa5\xc1\xc0\x9d\x06\x2d\x4d\x82\x87\xae\xcb\xdb\x7b\x8b\xcf\x13\xf6\xe6\x4c\x3d\xd3\x72\x32\x8b\xf0\xfe\xec\x92\xd3\x42\xad\x06\x84\xf2\x80\x1b\xc3\x01\x62\x7d\x0c\x96\x24\x72\xa5\x0c\x75\x4a\x11\xbc\x86\x27\x7f\xef\xd7\x48\x20\x04\xaf\x93\xfc\xf6\xea\x73\x1f\x83\xfe\x3d\xee\x2b\x8f\x6f\xf6\x65\xe1\x66\x4e\xfe\xfe\x2c\x73\x3d\xc2\x8c\xee\x73\x9f\x96\x48\x89\x10\x2a\x86\x9f\x71\x96\x5f\x17\x24\xa8\xca\x6b\x0a\x36\x7f\x9e\x40\x48\x99\x33\xf5\xa9\xd5\xa7\x45\x04\xc5\xf6\x87\x0f\x55\xc3\xc2\xd8\xd0\xf2\xd5\xe8\xef\xf2\x37\xbe\x84\xae\x59\xf2\x1a\xe2\xc5\xfd\x0c\x0e\xcf\x39\x60\xb8\x45\x41\x9e\xd0\xf7\xf4\x54\xe2\x8c\xaa\x3c\x02\x23\xf1\x38\x2d\xfe\x81\x12\x1b\xfc\x42\x34\x42\x12\x2e\xbf\x60\x40\xb1\xa7\x16\x75\xdc\xeb\x67\xb0\xf1\x99\x4c\x93\xbf\xae\x01\x8d\x23\x75\xd3\x0b\xa7\x29\x97\x2a\x19\x88\x44\xac\x9e\x93\xec\x32\x81\xf0\x7a\x8a\x77\x98\x63\xbb\x1d\x61\x8f\xbf\x57\xdf\x9d\x90\xbf\x0c\x04\x77\x9e\x3c\xef\x77\x7f\x11\x81\xd3\xfc\xb1\xb3\xeb\x84\x29\x84\xb5\x61\xed\xc2\x62\xbd\x46\x6c\xa8\xd9\x52\x9a\xd7\xb7\xd3\x98\xad\x3c\x92\x4e\xd2\x0f\xb6\x73\x1d\x7b\xc5\x6d\x16\xfc\x7f\x21\xd3\x13\x90\x6e\x90\xae\x4d\x08\x1c\xd1\x68\x72\x10\x1b\xbb\x4e\xf2\xf5\xec\xfa\x13\xc3\x41\x98\x12\xef\xad\xbd\x69\x7b\x1e\x61\x93\xd7\x88\x47\x87\xae\x08\x21\x97\x4b\x72\xf7\x0d\x33\x37\xc2\x65\x43\x03\xad\x87\x3f\x97\x11\xba\x6f\x96\x5b\x1c\x8a\x51\x26\x18\x73\x95\x35\x13\xa7\x3c\x41\x69\x6f\xff\x49\xbd\xc6\x99\x84\x89\x2b\x65\xa4\xbf\x9c\x28\x26\xd8\x04\x70\x39\xed\x7b\x6a\x48\x48\xb4\xdf\x63\x38\x5b\x6f\x84\x01\x4f\xa4\x97\xfc\x48\x18\x17\xc1\xe5\xfa\x0f\xa7\x63\x9c\x46\x84\xdd\x4f\xde\x2a\xb9\x18\x9b\x11\xca\x17\x85\xaa\x2e\x28\xf9\xc3\xe0\xe4\x35\xb8\x2d\xd5\x59\x4d\xf0\x2b\xdf\xf3\xd8\xb1\xbb\x80\x10\xfd\xfe\xf8\xe3\xe9\x9f\x9c\x09\x6e\x87\xee\x7a\x65\xbe\xe0\x27\x1c\x7c\xe4\xe7\x96\xa7\xf3\x85\x41\x7c\xbc\xd6\x37\x85\x98\x8f\x0c\xdc\x0e\xc7\xd6\x98\xf4\x18\xd3\x38\x0e\xae\xb8\xb2\xd8\x7f\x9d\x3e\xc1\xc1\xea\xfa\xae\xe8\x85\x5c\x84\x8d\x0f\xa9\x6c\x6d\xaf\x2a\x61\x9e\xae\xbb\x94\xbb\xc5\x5c\xc2\x97\x58\x93\x35\x6b\x77\x4e\x27\x84\xdf\x58\x18\x62\x33\x77\x32\x21\xb2\xf1\x4e\x60\x7a\xf7\x74\x82\xdc\xc5\xfb\x17\x2c\x9d\xb9\xd9\x70\xe8\xfe\x2c\xa1\xaf\xa6\xfa\x04\x93\x54\x85\x74\xef\xc7\x36\x04\xc9\x23\x73\x07\x05\x4d\x84\x08\xc1\x5b\xdb\x45\x47\x96\xcc\x26\xac\xd0\x5b\xbc\xc1\x2e\x63\x1d\x61\x9f\x68\x35\xb7\x5f\xc8\x2e\xc2\x8f\x97\x41\x1b\x1b\x73\x2c\x09\x4e\xe9\x9a\xa1\x35\x98\x4d\xb8\xf5\xc4\x4e\x82\x67\xd6\x2c\x42\x45\x58\xb8\x92\x65\xac\x38\xe1\xc3\x2b\x13\xd7\x4e\xe9\x5f\x0c\xd2\xef\x6d\xfe\xb6\xd7\x52\x8d\x50\xbd\xda\x62\xf3\x86\x11\x6b\x42\x98\xd4\x0b\x87\xd3\x03\x60\xb0\x84\xb7\xff\x62\x97\x86\x19\x8d\xa3\x42\x79\xfb\x9b\xa1\xec\x16\x06\xcd\x1d\xaa\x31\xb7\x78\xcf\x11\x94\x2f\x69\xfc\xfc\xb6\xdd\x95\xe0\xb9\x92\x7b\xda\xa5\xf7\xce\x04\xcd\x33\xee\x7b\xcb\xbe\xca\x11\xe2\x75\xb4\x56\x17\xe6\x68\x13\x4c\x14\xab\xa6\xae\xca\x16\x25\x84\x3f\x3b\x92\x73\xb8\xd3\x95\xf0\x51\x2f\x65\xc9\x80\xaa\x03\xa1\xef\xf9\x92\x17\xe5\xe7\x5f\x33\x90\xd6\x58\x38\x5c\x29\xa5\x49\x90\x8c\xe9\x75\xad\x34\x70\x20\xd8\xae\x72\xd8\x70\xbc\x97\x87\xb0\x8b\xef\xdc\xbc\x77\x8f\x44\x08\x0b\x3f\xdf\xc8\xd7\x30\x99\x44\xd0\xce\xec\x54\xd0\xad\x1c\x65\xb0\x4d\x61\xf5\xee\xb7\xc6\xf3\x08\x46\x9e\x85\xd1\xfb\x4f\xef\xa0\xf1\x72\x54\xc8\x20\x59\x44\xda\x96\x90\xbe\x7b\x53\xe0\xee\xe3\xe2\x84\xae\xf7\xfe\xf6\xe5\x19\x5c\x04\x57\x3d\x9b\xf9\x1a\x6b\xb5\x08\xe5\x57\xcc\x32\xa7\x17\x79\x13\xe6\x6f\xe2\xd9\xde\x73\xd6\x86\xf0\x5d\xd1\xc1\x59\x4e\x7a\x1b\x61\x51\xc7\xa9\xe4\x9f\x83\x0b\xd8\x90\xdd\xb9\x50\xb8\x71\xf2\x5f\x06\x22\x6b\x07\xac\x3f\xf8\x57\x11\xde\x17\x45\x7b\x96\x7f\xbe\x41\xe8\xbd\x29\xe6\x1d\xb4\xe8\x1b\x83\x77\xb3\x39\xef\x75\x24\x9b\x10\x46\x56\xfa\x76\xd5\x4d\x58\x48\xe8\x58\xfc\xe1\x45\xe7\x44\x2e\x42\x8d\x6e\x60\xcf\x0a\xb1\x9f\x0c\xba\xbf\x4a\xb9\x46\x6a\x65\x10\xce\xb4\x6d\x4b\x9f\x36\xd4\x38\xb6\x66\xf4\xeb\x7c\x51\xe5\x23\xa4\x07\xde\xdb\x3a\x61\x44\x83\xc0\xf3\xe9\xe2\x80\x40\x81\x20\xe1\x93\xa4\xe1\xd1\xa5\x92\x6f\x18\x04\xa7\x65\x29\xca\xb2\x16\x13\x32\x17\xae\xb7\x2b\xcc\x75\x22\xcc\xb6\xb2\x95\xbb\xbb\xd4\x91\x90\x68\x79\x36\x6b\xf0\xeb\x30\x83\xa3\x9f\x56\x64\x2b\xc4\xba\x12\x0e\xaa\x7b\xb8\xa9\xa8\xca\x13\x5e\xfa\x0f\x9c\x2e\xfa\xb4\x80\x20\xf9\x59\xd9\x63\x74\x9a\x16\x81\x25\xa0\x71\x21\x21\xb5\x9f\x81\xa3\x2c\xd7\x8d\x8c\xe1\x1f\xff\x82\x73\xc4\xda\x9b\xd2\x37\xf8\x08\x8a\xb5\x22\x61\x3b\xf9\x5e\x33\xb8\xf1\xe8\x7c\xde\x22\xe4\x12\x8a\x2e\x49\xfb\xa5\x26\x3f\x63\x8d\x97\x28\xb1\xf6\x50\x89\xce\x70\x02\xdf\xec\x6f\x8f\x1c\x38\x0f\x11\x6c\x87\x4b\x94\xa5\xf7\x86\x11\xfe\xac\xd2\xf3\x73\x59\x15\x46\x90\xe4\x3c\x13\x31\x90\x1a\x46\x68\x76\x0d\x0f\x0d\x5f\x98\x46\xe8\x9c\xf0\x27\x67\xad\xdf\xd8\xfe\xec\x35\x81\xeb\x50\x5e\x29\x21\xe0\x7b\xbb\xf2\xd4\xd2\x52\xc2\xd0\x13\x6e\xdf\x69\x63\xf8\xd1\x30\xff\x86\x8c\xfd\x05\xc2\xdf\xad\x95\xe6\xa3\x49\xc1\x6c\xb8\x3f\x2d\xa2\x53\x26\xcd\x8b\x35\x5e\xc2\xce\xdd\x72\x8d\xef\x4c\x20\x9c\xd8\x66\x65\xbd\xba\xa4\x96\x05\x9b\xe7\x67\xbb\x9f\x6c\x8a\x20\x1c\xae\x78\xce\x5f\x3e\x86\x92\xe7\x6a\x69\x32\x07\x4e\x11\xb6\xdc\xe6\x38\x5a\x68\x59\x46\xb8\x3d\x10\x14\xfb\x72\x5e\x10\xe1\x69\xf1\x85\x9f\xf7\xbb\x2a\x08\x02\x01\x75\x7e\xc6\x32\xf7\x09\x99\xc6\x8f\x65\x1f\x8c\x95\xff\x61\x31\xf7\xb6\x9c\x95\xeb\xd7\x11\x5e\xaf\x92\x08\xbd\x7c\xb6\x86\xf0\x95\xab\xbe\x5a\x2f\x64\x02\x41\xe4\xb9\xcf\x46\x97\x17\x4b\x08\x61\x1e\xd7\xb2\xf6\x86\xc9\x11\x7e\xc8\xc4\xda\xff\x56\x92\x27\x3c\xdb\x55\x71\x7f\xf3\x88\x1e\xe1\xfd\x0d\xa3\x2d\x71\x7d\x57\x09\x2f\x85\x0e\xa7\x58\xd6\xc9\x12\x6e\x7a\xfe\x3d\xfd\xe1\xa1\x26\x21\x4e\xa1\x62\x1a\xcf\x83\x01\x06\x92\x5e\x13\x1b\x3f\xc9\xaa\x11\x8c\xde\x9e\x62\x1e\x9f\xe5\x21\x14\xfe\x9c\x73\x79\x23\xb7\x0b\xa1\xb4\xeb\x4e\x9e\x91\x80\x2d\x61\xda\xaa\x1b\x9b\xa7\xcc\x9f\x42\xd8\xb7\x29\xfe\x99\x5a\x96\x04\xc1\x35\xe4\xf3\xf6\x98\xe2\x74\x36\x08\x1b\x8a\xab\xf6\xed\xd8\x43\x68\xe5\x3e\x58\xc8\x7f\x21\x9e\xc0\xa9\x36\x6c\x9f\xd6\x2b\x41\x80\x81\x95\x4f\xdb\xc2\xe9\x84\xbf\xdc\x8d\x5d\x4f\xac\x17\x11\x2c\x4f\x3f\x78\xb8\xf6\x8e\x16\x41\x3b\xe2\xdd\x79\x49\xd3\x59\x84\x73\xfa\xae\x42\x39\x5e\x33\x08\x7e\x3d\xf7\x03\x35\x95\x6d\x08\x75\x0d\x4f\x3e\xd5\x0e\xed\x25\xd4\x4e\x4a\x98\x7b\xf5\xb9\xde\xd8\x6d\xfd\x97\xb5\x75\xc6\x54\xc2\xf5\xf5\x1f\xc4\x2c\x1b\x2d\x08\x2b\x1d\x34\xc4\x8c\x4f\x76\x33\xf8\xe4\x33\x61\x5d\x71\x9f\x3c\xa1\xc8\xe2\xa4\x87\xe8\x45\x11\x42\x5a\x9e\xd6\x76\xdf\x18\x33\xc2\x8b\x07\xdb\xde\x1f\x1a\x70\x21\xa4\x71\xbf\x30\xde\x74\x6a\x1a\x41\x37\xd7\xd8\xee\x3c\x4f\xc2\xff\x89\xf3\x5b\x7e\xdb\x34\x8a\x6b\x11\xee\xf2\x2a\xd8\xa4\x34\xcf\x27\xb8\x7e\xd5\xbb\x10\xa8\xb7\x9a\xe0\xdc\xd9\x11\x79\xd9\x79\x0a\xa1\x6e\x73\xf2\xa3\x25\x21\xea\x84\x96\x33\xdd\x29\x27\xb6\x28\x13\x6c\x5e\x1d\xdb\x7b\xe0\x35\x3f\x21\xdd\x42\xb0\xc3\x96\xf2\x09\x89\x49\xdf\x67\xeb\xc9\xf0\x11\xe2\x5f\x7b\xce\x3a\x52\x74\x9e\xf0\xab\xa1\xab\x48\xf9\x64\x00\x21\x39\xbd\xc4\x6b\x62\xe3\x52\xc2\x64\x3b\x81\x5d\x33\x0d\x93\x59\x60\x0a\x1f\x9c\x9d\xec\x7c\x8a\x70\xf5\xf3\xb3\xd1\xce\xf2\x59\x04\xee\x7b\x01\x9c\x75\x23\xa7\x08\xb2\x9a\x01\x6f\xfd\xbf\xb9\x11\x74\xf2\xbe\xbe\x77\x39\xf9\x9a\x01\xcf\x4c\x05\x9f\x25\xc1\x4e\x34\x0e\xaf\x07\x8b\x3a\xdc\x37\x4c\x27\x74\xfd\xee\x3c\x3e\x59\xa3\x8f\x41\x6c\x66\xe7\xfc\x02\xa1\xe5\x84\x4b\x7c\xbb\xca\x84\xaa\xf5\xd8\x50\x79\x27\xb4\xab\x67\x52\x09\x83\xb3\x99\xcd\x7b\xbe\xa9\xcb\x10\xaa\x0c\xdb\x7f\x49\x56\x58\x12\x34\x17\xb6\xf4\xd8\xcd\xd4\x23\x24\x6e\x11\x9a\xdb\x37\xb8\x91\x05\xdd\xe0\x9f\xf3\x2c\x9f\xc7\xd1\x38\xae\x1c\x4a\x30\x78\xd9\x7b\x82\xe0\x2d\xeb\x7b\x9d\x99\xa7\x48\xf0\x8f\x6a\x7e\xe1\x64\x66\x43\x68\xf0\xd4\x7d\xdb\x70\xc5\x88\x30\xed\x52\xcf\xea\x33\x55\x46\x04\x13\x16\x9f\xc5\x3e\x4f\x5b\x82\xa8\xec\x0d\x2c\xdb\xa6\x4e\x08\x57\x51\x5e\x6b\xa2\x2c\x43\x28\xff\xc9\x59\xdc\x2a\x09\x06\xc5\xb3\xf4\x1e\x36\xbd\x3b\x4e\xb8\xf5\xf7\xbc\xec\xb1\x4e\x59\xc2\xdd\xc2\xc7\x4f\xde\x44\x68\x11\x26\xcf\xe1\x49\xb9\x26\x3e\x8d\x70\x24\xa5\x58\x44\x6f\xda\x1b\x06\x75\x7c\x4d\x36\xa5\xbc\x93\x08\x37\x7e\xad\xe3\x0d\x7f\x73\x9f\x41\x7f\xd1\xa4\xfc\x45\xcf\xf7\xd2\x38\x0e\xd7\xcb\x55\xe9\xfd\x51\x61\xc3\xd6\xa1\xb6\xe4\xb3\x33\x0f\xb0\xd0\x9f\x35\xfb\xfb\xcc\x3f\x97\x09\x32\xbc\xd7\x94\x9c\x3f\x5f\x26\x4c\x2b\x39\x69\x11\xf4\xe5\x16\xe1\xf9\x0e\xd9\x6e\x3b\xee\x22\xc2\x97\x2b\x51\x77\xe3\xed\xa6\x10\x84\xf2\x2a\x07\x17\xac\x39\x47\x70\x10\x6e\xe7\xe7\x88\x57\x27\x48\xba\x98\x6b\x6a\x2f\x0a\x60\x2b\xff\x83\xb5\xd3\x52\xad\xb9\xe7\x02\x08\x7c\xfd\x92\x57\x4e\xfb\x97\x31\x38\xc4\xff\x44\x73\x95\xc8\x31\xc2\xd2\x62\x43\xd6\xe5\x45\xa1\x84\x43\x7e\xaf\x5d\x33\xde\xe4\x13\x74\x4a\xdb\x0c\x1f\x3b\x5c\x23\x30\x4f\x7a\x5c\x22\x7b\x77\x10\x26\x7a\x48\x1e\xfe\x0f\x23\xea\x16\x5a\xf5\xc9\x53\x08\x3e\x9f\xdd\xe4\xd7\xff\xdd\x4d\x28\x91\x49\x5d\x28\x91\x2e\x4a\xc8\xb4\x37\x7d\xa0\x7f\xbd\xa5\x12\xf5\x01\xf9\xfd\x5d\xd3\x85\x69\x1c\x83\xda\x1b\xb9\xd2\x97\x2d\x22\xdc\x7d\x96\x90\x12\xde\xea\x42\xd8\x6c\xfc\xeb\x45\x62\xc7\x7c\x42\xb7\x76\x90\x57\xc6\x01\x55\x02\x8f\x60\xd5\x85\x5d\xde\xf1\xac\xf1\xf2\x3f\xbc\x9f\xb9\x74\xf2\x9e\xc0\x5e\x06\xf3\x17\xb6\xe6\xf2\xe6\x88\x10\x4a\x3f\xcf\x6d\x71\x73\x98\x40\x68\x63\x5d\x55\x5f\x3a\xb2\x81\xa0\x9f\x75\x30\x57\xe3\x7b\x0a\x1b\x34\x84\x85\xb6\xdf\xbb\xc7\x45\x30\xa9\x11\xd0\x34\x8c\x90\x23\x04\x75\x0a\x18\x14\x3f\x0f\x60\x83\x6b\xb3\xcf\x0e\x35\x79\x5d\x42\x9a\x6a\x97\x91\xc4\xac\x00\x02\xd3\xca\x91\x1b\xf2\x62\x0e\xe1\xfe\xfc\xa3\x23\x0d\x02\x89\x84\x88\xa8\x57\x9f\xd5\x1f\xae\x23\x44\x2c\x92\x59\xed\x28\x7e\x86\x10\xb9\xfe\x41\xe3\x13\xb3\x08\x02\x67\xe5\xfa\x60\x1f\xab\x13\x84\x19\x79\xfa\x61\x5b\x1a\xb5\x09\xd5\xd5\x1b\xce\x6f\x16\x00\x83\x9a\x84\x85\xb7\xb4\x8a\x1f\x30\xd0\xb9\xb0\x55\x2f\x70\xd7\x24\x1a\xc7\x50\xb3\xc9\x27\xfe\xb7\xad\x95\xc8\xff\x2a\x1c\x61\x62\xd9\xcf\x80\x65\x1b\xc3\xba\x95\x31\x8d\xc6\x91\xea\xb8\xe5\xbd\x6a\xe9\x37\x06\xbd\x4a\x66\x0b\xee\xbc\x9d\x49\x50\x9d\xe0\x11\xc2\x59\xd0\xc4\x80\x4b\xa7\xf2\xd5\xb6\x5d\x13\x08\x5b\x96\x37\xfc\x9c\xec\xc0\x49\xe0\x50\xea\x9b\x30\x53\xf5\x0f\x83\x5a\x77\x89\x64\x89\xde\x0c\x82\x96\x95\x83\x73\xe1\x79\x5d\xc2\x8a\xb7\xad\x87\xa2\x5a\x47\x19\xec\xbd\xd2\xcb\x9d\x1e\xff\x85\x81\x43\xe4\xb2\xc5\x1f\x2e\x74\xb3\x61\xae\x82\xb4\xe9\x47\x8e\xc7\x0c\xa4\xab\x6e\xc8\x0b\x99\x59\x11\x5e\xcf\xdb\x5e\x33\xc1\x7b\x3b\xc1\x85\xff\xbb\xe7\xa8\xc5\xd8\x77\xb9\x32\xf6\xeb\xb9\xcd\xc6\x84\xdd\x0f\xa5\xc5\xff\xfb\x8d\x28\x41\xa5\xce\x72\xbd\x3f\x8b\xb0\x3e\xc0\xe6\x81\xbd\x6c\x09\x21\x62\x20\x45\xc3\x75\xac\x64\x39\x26\xf0\x17\x0d\x4c\x62\x83\xf9\xfa\x67\x8c\x9a\xa2\x0d\x61\x5d\x5b\xa4\x51\x4b\xda\x2d\x42\x30\xbf\x99\x64\x68\x8a\x1e\x61\x87\x7e\x4d\xd6\x8d\xdf\x9b\x08\x9d\x8f\x56\xdb\xef\xd4\x4b\x65\xe1\xfb\xf4\xe9\x4c\xea\x8e\xef\x0c\x14\x7d\xae\xe6\xde\xb1\x9c\x4c\x58\xb6\x65\x27\x3d\xb5\x2f\x66\x21\xa7\x64\x8f\x42\x6d\xba\x32\xfd\x03\x34\x3a\x7b\xfa\x40\xe5\x44\x36\x40\x3d\x4a\x71\xc7\x84\x10\xd6\x78\xc9\x53\xb5\x7c\xa8\x52\x18\xc3\x82\x67\x1c\x7e\xb5\x35\x19\x11\x92\x5a\x7e\x7f\xbc\xd1\xa6\x43\xf0\xe6\x70\xd1\x88\xf7\xd3\x21\x38\x55\x74\x7c\xcb\x6a\x1f\x66\x70\x38\x99\x73\xd3\xef\xad\xd7\x08\x33\xed\x7f\xe7\xd4\x44\x2f\x26\x74\xe9\xf3\x49\x6d\x0d\x11\x20\x94\xed\xab\xbf\x65\xf9\xf3\x20\xe1\xa0\x3c\x6f\x9d\x6c\xc7\x52\x82\x81\x91\xcb\x83\x25\x75\x06\x04\x7b\xf3\x7b\x97\x7e\x7e\xf8\xc1\x60\xfb\x68\x79\x64\xb6\xd6\x24\x1a\xc7\x1a\xd7\x07\x27\xdb\x0f\x7d\x64\x60\xe5\xb9\x22\x49\xc2\x6a\x2a\x61\xe7\x24\x15\xcd\xe9\x63\xe7\x8e\xe7\x81\xb9\x1d\xf6\xda\x21\x04\xf3\xe5\x6a\x7a\xa9\x5f\x96\x13\x5a\xe5\xf6\xe7\x87\x7c\xf7\x24\x8c\x24\x8e\xee\xf4\x49\xcf\x26\xdc\x7d\x35\x97\x37\x65\x6c\x8b\xf3\xba\xb9\x37\xf4\x54\xac\x3d\x41\x95\xd7\x9b\xeb\xa2\xe8\x00\x83\xd4\x1b\xa1\x6e\xe2\xbc\xd3\x09\x9e\xa9\xd7\x5e\xde\x36\xf6\x64\x43\xc9\xaa\x3a\x95\xc9\x9f\xb6\x11\xe2\x16\xa4\xa5\xf1\x47\x80\x01\xc7\x43\x41\x83\x84\xb4\x0c\x82\x80\x44\xf7\xa9\x90\x8c\x0c\xc2\x62\x73\x75\x0e\x8f\xe0\x83\x84\x6b\xe5\x17\xab\xdd\x56\x9d\x26\x58\xb6\x73\xc8\x6c\x18\x43\x5e\xd2\xce\x35\x7f\x6e\xd6\x32\x08\xf8\x24\x70\xea\x64\x3e\x8b\x01\xe3\x10\xd4\xf6\xb9\x43\x82\xc6\x21\xfc\xb0\x70\xf5\x21\xf3\xc9\x84\xa4\x5c\x91\x7a\x8f\xe9\xab\x09\x9b\xc2\xcf\x9c\x0b\x59\x3b\xf6\xb2\xb2\xc2\x42\xa6\x32\x99\xa0\xf6\x7c\x83\xb8\xea\xfb\x1c\xc2\x9b\xbc\x72\xde\xb5\x22\x2b\x08\x46\x26\x53\x9f\x9a\x57\xa4\x11\x7e\x1c\xb7\xf3\x3e\x6a\x66\x41\x58\x74\xb5\xce\xe5\xd4\xea\x4e\x06\xa3\x2d\x6e\x6f\x1f\x9e\x90\xa0\x71\x48\xd7\x18\xb7\xa4\x74\x45\x11\x38\x2a\xce\x68\x04\x4f\x3c\xc7\xc2\x9f\x77\x86\xdc\x2b\x2e\x1f\x22\xa8\xfa\xd5\x5c\x54\x34\x29\x20\x1c\x35\xf8\x79\x29\xaf\x53\x87\xe0\xec\x93\x61\x68\x72\xb4\x8f\xc1\x4d\xd9\x64\xdd\xd2\x2c\x6d\x42\xdf\xb0\x7e\x47\x82\xbd\x1e\x21\xa9\x34\x8c\x5f\x6e\xdb\x3c\x42\x87\xf7\x4d\xb3\xf5\x02\xd3\x08\x65\x65\x09\x6d\xb3\x2d\xcd\x09\x0f\x99\xa0\x09\x2c\xc9\xbb\x2c\x4c\xec\x17\x89\xcb\x1f\x3b\xcd\x07\x1d\x6a\x22\x43\x3b\x26\x13\x4e\x61\xd2\x94\x48\xb5\x69\x84\x5d\x93\xb0\x30\x70\xbf\x15\xa1\x6c\x94\x7b\xf1\x39\xd1\x28\x82\xa0\xe2\x5e\xe9\x55\xcf\xa6\x13\x64\xbb\x6a\xae\x0e\xb1\x7e\x33\x90\x76\x58\xa2\xf2\x76\x8f\x3c\x61\x7e\x77\x69\xb9\x7d\x9b\x0e\x6b\xbc\xf0\xa4\x7a\x5b\xcd\xfd\x31\x97\x30\xf0\xe4\xc7\x91\x49\x4c\x13\x83\xc4\x33\xd2\x9e\x67\xac\xee\x57\xe2\xe9\x17\x89\xb7\x4b\x64\xdd\x69\x1c\x11\xa9\x72\x73\x79\x8f\x17\x13\x72\x0a\x16\xb8\xc9\xaf\xbe\x4a\x28\xce\x3a\x61\xdd\x52\xe5\xc8\xc2\xb4\x37\xbd\x6d\x52\x25\x9b\xe8\x1f\x10\x6b\xdd\x41\x96\x17\x9b\x08\x45\x87\xd7\x2b\xff\x87\x66\xae\x69\x8b\xb5\x06\xce\x11\xd6\xb9\x68\x17\xc9\x8c\x61\xd2\x95\xab\xc1\xc8\x3c\x45\x70\x77\xb2\x9a\x34\x69\x72\x0a\xe1\x81\x26\xaf\x9f\x7a\xca\x26\x42\xda\x83\xb5\x0f\x22\x57\x88\x12\x04\x7a\xdc\x1f\xc7\x26\x99\xb0\x21\x21\x40\x4a\x9c\xc3\x4a\x83\xb0\x4c\x66\xcb\x64\xb5\xb7\xe7\x08\x96\x37\x65\x06\x7a\x46\xcf\x11\xea\xe3\x04\xaf\xef\x9a\x55\x48\x70\xb4\xdd\xb0\x37\x4a\xf8\x26\x21\xe0\x9d\xd4\x71\xb7\x86\x6b\x84\x03\xa2\x09\xb3\x76\x0a\xdd\x24\x1c\x9f\x97\x37\xf2\x9e\xbf\x8a\xe0\xfd\xbc\x6c\x9e\x97\x63\x04\x61\x95\x72\xe1\xc9\x4e\x5b\x73\xc2\x6d\x5e\x61\x81\xaf\x15\x6f\x18\x6c\x95\xfb\xb5\xa5\x7a\xea\x30\x03\x69\x4b\xd5\x94\xb6\xe3\x16\x04\x43\xc5\x16\x68\x76\x38\x10\x2a\xf3\x7b\x0d\x7e\x87\x1b\x12\xb8\x72\x03\x2c\x6f\xba\x89\x13\x82\xf4\x0e\x36\xd8\x4a\x4f\x25\x2c\x1c\x9a\x36\xb8\x4b\x42\x89\xf0\x81\xcf\xe0\x9b\x7e\xe4\x16\x36\xdc\x3c\xb8\xfc\xd6\xd4\xfc\x50\xc2\xfb\x94\x00\x2f\xf9\x5d\x03\x0c\x14\x96\x78\x37\xde\xb9\xa2\x45\xb0\x7a\xf3\xb4\xe7\xcd\xd7\x42\x02\xd7\xdf\x6d\xfb\x44\x1e\x5c\x61\x61\xcd\x96\x0f\x4f\xb9\xd4\x6b\x08\xfb\x36\x7e\xe2\xb4\x4b\x6e\x22\xcc\xf9\x23\xcc\xcb\x3d\x56\xac\xb4\xca\x2a\xff\x83\xff\xf1\xc5\xa7\x4a\xcb\xa3\x08\x71\x6a\x39\xdf\x62\x8b\xf7\x13\xbe\x97\x9a\x8c\x9c\xff\xd8\xc3\x20\x9d\xfb\x9e\xf4\x42\x7d\x2d\x82\x86\x72\xa5\x97\xbd\x85\x38\xa1\xbd\x3d\x86\xe3\x8b\x98\x04\xe1\x99\xd4\x84\xe4\x59\x69\x1b\xd9\x10\x7b\xed\xe4\xe7\xa9\x3c\xff\x6d\x83\x33\x54\xe2\xef\x9c\x22\x6c\xba\xbb\x6c\xcd\xfc\x46\x63\x82\xc4\x8d\xa1\x13\x83\xbd\x1b\x58\x28\xae\x12\x4d\x56\xd2\x4e\x21\x48\xc7\xaa\xd7\xde\xbe\x69\x40\x30\xdd\x9a\xb2\xb3\x95\x4f\x8d\xe0\x92\xe3\xcb\xd7\x99\xfb\x99\x41\xe3\x90\x83\xf4\xad\x58\x5d\xc2\x49\xa7\x0b\x0e\x4f\xce\xff\x61\x60\x44\x79\xca\x9b\x3b\x35\x08\xa9\x46\xc3\x87\x05\xe2\x43\x09\x1f\x75\x3b\xda\xd6\xcc\xf6\x27\xdc\xbc\x7a\x40\x68\xf3\x3e\x0d\xc2\xf7\x6a\xef\x8c\x6d\x81\x73\x09\x6b\x33\xf2\x85\x3b\xaf\x8b\x13\xca\x9d\x4d\x25\xf6\x6b\x31\xf4\xe7\xe1\xf3\xf7\x05\x27\xec\x08\x3b\xde\x54\xdf\xf2\x70\x3f\x4f\x88\x3f\xc7\x4c\x6e\xd9\x68\x46\x78\x33\xb9\x6a\xad\xe7\x9b\x28\x82\x77\xf5\x5e\x19\x8e\xc2\x68\x42\x84\xd1\xe4\xc0\xaa\xc8\x55\x04\x97\x09\x9d\x57\x82\x9a\x32\x59\x88\x08\xc9\x1b\xe1\x3f\x60\x40\xc8\xec\x34\xea\x70\x3e\x32\x8d\xd0\xbe\x25\xe4\xb0\x62\xa0\x04\x41\x3e\x80\xdf\xf6\xd9\xc5\x73\x84\xd7\x96\x0e\x91\x5b\xef\x6e\x25\xa8\x78\xc9\x34\xc5\x2d\xfb\xcb\xe0\xe9\xce\x17\x0a\xe5\xa7\xb5\xe8\x1f\xc8\xfd\xfc\xb2\x68\xf8\xdb\x86\x7f\xc1\x35\x37\x7b\x4b\x57\x84\x08\xa1\xa8\xfc\xfc\x93\x58\xff\xc3\x04\xaf\x7e\x95\xc6\x0d\x5f\x8d\x09\x1a\xbf\x54\x34\xa3\xa6\xbd\x26\x78\x6f\xe2\xe4\xf9\x0f\xf1\xe9\x17\x2b\xfe\x43\xd6\x9e\x22\x11\x63\xae\x22\x42\x72\xe4\xe9\x3d\xfd\xaf\xb2\x09\xbd\x1c\x2e\x6f\x06\xce\x54\x13\x34\x06\x33\xb4\x8f\xb4\x2b\xd0\x9f\x19\x3d\x6b\x8a\x0f\x1c\x66\xa1\x28\x7f\xaa\x72\xb2\xa7\x0e\x8d\x43\x4e\xe0\xa9\xa6\xdd\x65\x01\xc2\xe7\xa1\x60\xed\x05\x6b\x64\x09\x9b\xf6\xab\x5e\x5b\x60\x6c\xc0\x86\xb5\xef\x04\x6e\xdc\x29\x0f\x62\x10\xf8\x37\xee\xe1\xc3\x09\xd6\x84\x80\x3d\xf1\xdb\x7e\x7f\xed\x65\xb0\x97\x44\x2c\xd6\x98\x73\x11\xa6\x28\x96\x7f\xdf\xb3\x8b\x8b\xb0\xc6\x6a\x35\xff\xae\x65\x7b\x08\x89\x4a\x9a\x8d\xc7\xf7\xd7\x10\x5a\xff\x24\xf1\xc6\x46\xdf\x24\x9c\xcd\x54\x8f\x71\xd2\x8b\x27\x7c\x39\x97\xd4\xb2\xed\xe0\x76\x42\x78\x69\x4f\x67\xa6\xf5\x75\xc2\xfb\xcb\x6d\x16\x27\xd6\xf3\x13\x8c\xc3\xab\xa4\x72\x1c\x79\x08\x66\xef\xfa\xbc\x1f\x15\x7b\x10\x16\xdf\xb1\x62\x31\x1d\xd7\x09\xc6\x3b\x19\xc9\x1d\xb1\x6d\x84\x85\x59\xc1\x3b\x76\x8e\xe1\xdb\xd0\xfe\xe8\x5d\x63\x08\xb0\xfa\x12\xbc\x6d\x0c\x97\x46\x4a\x8b\xda\xbb\x0c\x09\x69\x95\x9f\x96\x2c\x4e\x08\x26\x5c\x0d\x70\x30\xf8\x39\xbc\x88\x20\x7b\xce\x2c\xa7\x8d\xb1\x26\x08\xd8\x0d\xe8\x9d\x9b\xe7\x43\x90\x5e\x5c\xec\x72\xd1\xa7\x82\x60\x5a\x18\xf3\xe1\xe7\xce\xed\x2c\x90\x96\x96\x48\xf2\xd0\x20\x03\xad\xe5\x2e\xad\xbd\x06\xc7\x09\xb9\x25\x8b\xc4\xb6\xb5\x06\x13\x9e\xc2\xcf\xdb\xd0\xdb\x87\x60\x1a\xde\xeb\xa9\x7a\xd1\x8d\x40\x4d\x77\x6f\xce\xfc\xaa\x47\x70\xe1\x34\x78\x39\xf5\xf8\x45\x42\x7e\xc9\xb5\xad\x2f\x75\x9c\x08\xe1\xdc\x89\xd3\x24\xd5\x5d\x09\xaa\x2e\x3b\x67\x4d\xd5\xb3\x27\x48\x9b\x3e\xe6\x52\xca\x5d\x4d\x38\x96\xb7\x2e\x89\x23\x52\x9f\x70\x48\xf3\xf6\xe4\x6d\x46\xa6\x84\xbc\xa8\xe3\x9f\xc2\x06\xe3\x09\xfe\xdf\x7a\x2b\x54\x86\xc0\xc0\xe4\x6d\xfa\x7c\xd3\x23\x22\x84\xec\x85\x1b\x6c\x44\xce\x4c\x21\x98\xf2\x4a\x4c\x57\xfe\x6b\x46\xd8\x92\x29\xe9\xb3\x46\x8e\x9b\x30\x33\xa8\x34\xb8\xd9\x43\x9c\x20\xbd\x79\xf9\x77\x9d\x4c\x75\x42\xc9\xfd\x54\xad\x54\x57\x5b\x42\xf0\x74\x8b\xba\x5f\x8f\xa2\x08\xd1\x9b\x1a\xbf\xbe\x14\x59\x46\xf8\xd1\x99\x3a\xeb\xeb\xe8\x59\x82\xd7\xc9\xc5\x07\x96\xdd\x95\x20\x98\xf4\x89\x0d\x6e\x6a\x78\x47\x58\x30\x71\x73\xa6\xd5\x53\x77\x36\xd4\xde\x5c\x75\xcd\xe5\xd6\x5d\x82\xc2\x73\xd7\x8c\x60\xcb\xd3\x84\xbe\x6c\x1e\x39\xa1\x14\x7b\x16\x58\x35\xf6\x7d\x09\x2a\x1c\x84\x67\x59\x65\xe7\xfc\xad\x0b\x08\xc9\xfb\x27\x99\xcb\x1f\x26\x36\xe4\x4e\x4d\xf8\xfe\x39\xb5\x9f\x81\xc1\xa8\x7a\xc6\x42\xd1\xd5\x04\x6b\x17\x6e\x99\x19\xfb\x7d\x09\x96\xbb\xd4\xe4\x02\xaa\x4d\x08\xb3\xce\x87\x84\x8b\xed\x3b\x4a\x30\xe1\xfa\xca\xfb\xee\xd4\x29\x42\x8b\xa3\xff\x96\x8c\x7d\x4d\x84\x45\x01\xbb\x3a\x6d\xd4\x1e\x12\xe8\xc9\xdd\x93\x4d\x87\x1b\x09\xf7\xa7\xc4\x87\x96\xcc\xdc\x48\xa8\xba\xb3\xf3\x79\xc4\x81\x72\x02\x67\x81\x64\xab\xfb\x8e\x3c\x42\xf3\xa4\xf8\x93\x3c\xb5\x1b\x08\x9e\x0d\x41\x9b\xff\x7b\xe6\xab\xdf\xd0\xaf\x3a\x27\x5f\xc2\x95\xf3\x0d\xa2\x31\x9f\x6e\x12\xa4\x5c\x8f\x66\xe4\x08\x7b\x13\x12\x26\x56\x3c\xb4\x98\xb7\x86\x35\x5e\xe8\x4e\xc1\xec\x5f\xd3\x42\x09\x7c\x66\x9f\xb6\xa8\xfb\xf4\x30\xf8\x99\xfe\x7a\x86\x61\x81\x37\xa1\x3d\x35\xd2\x31\x2d\xd1\x88\xe0\x74\x60\x43\xb3\xde\xb5\x16\xc2\xaf\x21\xe5\x80\x05\xf7\xaa\x09\x12\x8d\xe5\x86\xa1\xd6\x57\x08\xfb\x1a\x78\x7f\xe5\x35\x3f\x20\x98\x15\xb1\xc4\xf6\xbd\xad\x25\xac\xe0\xfa\xa5\xd7\x5c\x58\x45\x70\xb0\x9f\xca\x1d\xc2\x2a\x23\xf8\x8e\x6a\x9e\x6f\x68\x2b\x27\x28\xfd\x11\x4e\xcd\x38\x5a\x4b\x78\x26\x3c\x2f\xf2\x4f\x4e\x15\xc1\x28\xf9\xf2\xcd\xdb\xc3\x87\x08\x2b\x2d\xaa\xdd\x67\xa7\x65\x13\xfa\x6d\x04\x8e\x17\xe9\x55\x10\x0e\xbe\xba\x35\x22\x10\x56\x4a\x78\x22\x5d\x6d\xe5\x1f\x76\x9d\x30\xcc\x3d\x71\xe1\xb1\x9f\xea\x84\xc2\x8e\xf0\xba\xf9\x85\xa2\xf4\xa7\x6a\xf5\xf9\x38\x19\x2b\xc2\x3d\xe6\x9d\xec\xca\x40\x6d\xc2\xf3\xc6\xf5\xde\x21\x27\x8c\x09\x86\x19\x33\x03\xd2\xed\xfa\x18\xfc\xde\xf2\xc6\xf0\xe9\xd4\x9b\x84\x6e\xf5\xfd\xe6\x5a\x5d\xef\x59\xd8\xa2\x13\x98\x23\x31\x23\x87\x85\x97\x23\xb1\xfc\xcf\xc7\x46\xbe\x23\xf9\x7a\xf7\xd2\x42\x09\xb3\xfc\x16\xbc\x99\x22\x70\x97\xb0\x6f\x66\x1f\xf7\xfc\xa3\xcf\x59\xb8\xbf\x5d\x82\x57\xe7\x77\x19\x41\x54\xf3\x6a\x76\xf4\xb1\x14\xc2\xde\x55\x5a\xca\x3f\x37\xa6\x13\x4e\x5e\xd7\xd8\xaf\xf5\x3e\x92\xe0\x33\x63\x20\xd9\x4f\xfe\x34\xe1\x8c\xe9\xc0\xfb\xdd\xea\x01\x84\xb3\x42\x53\x78\x3e\x3f\x38\x42\xb8\x20\x73\x54\xbb\x42\xf8\x0a\x0b\x3d\xfb\xc3\xde\x6e\x16\x6b\x20\x78\xb7\x74\x64\x1b\x9c\x19\x61\xb0\xfd\xef\xa4\x8e\xd1\xd4\x0b\x84\x97\x4f\xb3\xfa\x37\x96\x5d\x24\x98\xdf\xb4\x52\x5d\x98\xd5\x4a\x70\x18\x1c\x6e\x0b\x99\x5e\x4d\x78\x71\xed\xa5\x44\xdc\xc3\xdd\x84\x34\xd1\x6d\x57\xcc\xee\x89\x10\xce\x4b\xf8\x2e\xf7\x8d\x5d\xc5\x86\xb6\xe0\x8a\x27\x9a\x75\xaa\x84\x65\x8c\xf4\x8e\x2f\x93\x97\x13\x24\xf9\xa9\xf9\xae\x6e\x01\xe1\xb8\x9d\x74\xb7\xac\xf6\x45\xc2\xad\xfd\x7b\x56\x6f\x74\xdc\x4e\xd8\xee\x98\xe3\xfc\xee\xef\x47\x06\x2e\x09\x7f\x72\xcf\xd9\x15\x10\x22\x1a\xb3\xdc\x32\xc7\xf0\xc8\xbd\xdc\xaa\xd9\x3d\x8e\xad\x48\x4e\x96\x37\x52\x1c\x72\x21\x7c\xa8\x95\xe2\x51\xf5\x9b\x44\xf0\x39\x16\x56\xfb\xb5\x5a\x82\x20\xfe\x2e\x34\xe2\x95\x52\x0d\x03\x95\x75\x23\xde\x23\xa5\xcb\x69\x1c\x93\xba\x35\x55\xbd\x77\xbe\x61\xc6\x71\x95\x63\xbb\x99\xc3\x06\x21\x1a\x87\x74\xe2\xc6\x28\xf1\x6c\x75\xc2\x86\xf0\xe9\x85\xef\xf4\x16\x13\x66\x75\xf7\x30\xd3\x2e\x6a\x11\x5a\xbc\x23\x1f\x30\x2b\xec\x09\xde\x56\x85\x64\x5d\xa8\x4e\x50\xea\x9a\x21\xbb\xc4\x96\x97\xa0\xe1\xbb\x66\xc3\x8d\x01\x1b\x42\x5b\xa0\x6f\x8c\x9a\x8a\x32\xa1\x7e\x76\xe7\xd1\x55\xfc\xa6\x84\x4b\x77\xbb\x8d\xf6\xd4\x94\xb2\x30\x57\x74\xe4\xbe\xb3\x62\x11\xe1\x27\xef\xdf\xc4\x90\x91\x26\x42\xc1\x8c\x2d\x9c\xf7\x26\x35\x13\x46\x3b\x64\x1a\x59\x7c\x95\x84\x8f\x47\x4b\x26\xdf\x29\x91\x27\xf0\xaf\x08\x6f\x33\x9c\x6b\x47\xa8\xca\x5e\x9d\x2b\x16\xa1\xf7\x2f\x4c\x5a\x7d\x68\xb6\x8b\x64\x26\xe1\xa9\xa7\xe7\x89\xcb\x06\xd1\x6c\xe5\xc6\x91\xdf\x6d\x6b\xac\xcf\x10\xe6\xfa\x55\x1c\x0b\x7d\x7d\x69\xec\xfa\x13\xf1\x68\xa4\x75\xed\xbf\x50\x94\xba\x73\xd1\x06\xaf\x17\xcc\x3f\x20\x27\xa3\x72\xef\x6f\x2d\x2f\xa1\x77\x79\xc2\x8c\xf9\xae\x96\x84\x5f\xf7\xb4\x0d\x5a\xfb\x86\x19\x1c\xcd\x1f\x7c\x6e\x39\x3b\x8b\xc0\xdd\xb8\x3f\xaa\xe8\x99\x28\x41\x99\xd3\xb1\xb6\x68\xf9\x44\x36\x98\x4f\x39\xa9\x66\xb1\x97\x83\xd0\xf7\xda\x64\xae\x91\x97\x39\x21\x54\xbb\x79\xff\x9e\xf5\x92\x84\x51\x3b\x83\x05\xd1\x7e\x05\x84\x45\x13\xcf\xbf\x9d\xc8\xda\x40\x68\xd9\x5c\x61\xa9\xd9\xe3\xc6\x56\x96\x25\xcb\xae\x69\x38\x25\x4f\xc8\xc8\x5a\x9b\xe2\x49\x21\x2c\xf4\xd5\xbd\x97\xe1\x6e\xce\x23\x38\xe5\xde\x79\xc8\xb1\xaa\x8f\xc1\x0d\x6e\xab\xdb\xda\x82\x4b\x09\xed\x79\x1b\xbe\xcf\xf1\x99\x4d\xc8\x48\x8a\x9e\xfe\xc3\x3f\x91\x85\xed\xed\xe6\xf7\x7a\x2e\x15\x13\xa2\x77\x14\x15\xf8\x0e\xd5\xd1\x78\xd9\x13\x90\x35\x52\x2f\xdf\xcf\x60\x5d\xc2\x97\x7c\xa1\x29\xab\x09\x4e\xcf\x93\x2a\x53\xce\x5c\x61\xc1\x5a\x3e\x47\xbd\x7e\xd3\x5b\x06\x2a\x36\x27\x37\x57\xce\xee\x61\x10\xd4\xb9\xb1\xfa\x83\xaa\x2e\x41\xf3\x75\x91\x94\x44\xd3\x32\xc2\xca\xad\x9f\xe6\x6d\x0f\x4c\x25\x84\x1d\xac\xbb\x47\x81\x29\x04\x8f\xd1\xd2\x9c\x7b\x82\x91\x84\xa0\xa2\x59\x67\xda\xcf\xe4\x11\x76\xfe\x9d\xfc\x27\x7b\x68\x19\xc1\xe3\x91\xfe\x79\x91\x1a\x13\x82\xe0\xb3\xf9\x52\xd9\xe2\xfa\x04\xae\x19\x17\xee\x84\x88\x3f\x61\xf0\xe4\xe4\xb9\x83\x3d\x6f\x88\x10\x9b\xf3\x53\xe3\xd5\xa4\x1f\x0c\xb4\x4a\x87\xac\xa6\x7c\xba\x41\x08\x8c\x75\x29\xfb\xf2\x60\x6c\xa1\x0d\x2c\xe4\xd3\xb1\x0b\x25\x7c\x7e\xbe\xcf\x6d\x65\x63\x2c\x21\x66\x45\x69\x9d\x71\xe1\x6b\x06\xe9\xc7\x47\x1b\x1c\xe3\x15\x08\xee\x71\x7f\x0a\x2a\x33\x04\x08\xbb\x3f\xf4\xd6\xf6\x6e\x51\x24\xcc\xe4\x0d\xf5\x2a\xb4\x3a\x4b\x98\x2c\x17\x48\x41\x3a\x67\x09\xbb\xcc\x0c\x6d\x1f\x1d\x51\x20\x34\x37\x89\x38\x85\xbb\xbb\xb2\xa0\x97\x2c\x3e\xc3\x69\x79\x55\x25\x8e\x7d\xbe\x30\xb8\xae\x3e\x89\xfe\x01\x8f\x98\xc7\xd6\x13\x56\xcc\x26\xfc\x6e\xba\xa6\xb4\xfd\x81\x31\xe1\x46\xe0\xf6\xd3\x67\x6c\x47\x19\x04\x49\xb5\x3c\xba\xc7\x3b\x8d\x50\x9f\x66\x5e\xa1\x10\x26\x40\x18\x19\xb0\x98\xb6\x6c\xb7\x00\x61\xd6\x60\x9e\xb4\xf5\x7e\x22\x9c\xdb\xba\x2f\x6e\xd9\x2c\x49\x82\xe3\xca\xe0\xc1\xec\xfa\x25\x04\x1f\xf5\x92\xe3\x4f\x58\x02\x04\x0d\xb7\x9b\x0f\x97\x55\x4a\x11\xbe\xcf\x57\xff\x8d\x45\xf3\x08\x36\xa6\x1b\xf2\x76\xaf\x90\x25\xfc\x5d\x2e\x13\x37\x51\xf8\x18\x0b\xe6\x15\x67\x6e\x85\xdc\xd0\x21\xd8\x15\xea\x97\xdb\x75\xeb\x13\x78\x5f\x04\xa6\xe5\xde\x54\x23\x9c\x2a\xca\x17\xc9\x4e\x7a\xc7\xe0\x90\x51\x45\x36\x5f\x0e\x07\x21\xae\x43\xc0\x27\xcd\xd9\x82\x90\xa4\xbb\x71\x0a\x8f\x8c\x36\x1b\x24\x4b\x7d\xea\x53\x97\x3f\x64\x70\xaa\xfc\xd5\xeb\x7b\x2e\xc2\x84\x63\xc2\x59\xcf\xe6\x6e\xd4\x66\xc3\x97\xfa\x3b\x77\xaf\x66\xbc\x66\xf0\x41\xb6\x4a\x2a\x5c\xc3\x9e\xa0\xa5\xae\xd6\xe4\x71\xf9\x04\x81\xfb\x4b\x98\x99\x02\x13\xf4\x7f\x62\x45\xbe\xef\x19\xbd\x39\x92\x04\xb1\xa5\xf5\x01\xdf\xd6\x4e\x20\xf8\xd8\xf3\xb5\xf1\x2e\xa9\xfd\x3f\xa1\xd9\xfd\x7b\x8e\xd8\xa3\x6c\x36\x50\xde\xe2\xa0\x0f\xe6\xec\x45\x87\xbf\xc5\xc0\xa3\x91\xbd\x70\x68\x0f\x4f\x90\x9a\x51\x3e\xb6\xa8\xf7\x0f\xad\xde\x1d\x46\x88\xdf\x3f\xe9\x6a\xd4\x82\xb3\x2c\x14\xe5\x2e\x5f\xe3\x30\x56\x2a\x65\x35\x4a\xac\x39\x42\x69\xbc\x04\xc7\xe4\xea\xca\x67\x65\x12\x8e\x94\x58\xed\x12\xbb\xdf\x4f\x18\xe2\xed\x35\x1f\xb9\xd7\x4f\x58\x73\xb2\x3e\xe0\x67\x66\x26\x21\xdf\xc3\x3f\x49\x2b\xe6\x22\xc1\xda\xf1\xe0\xe9\x37\x63\x23\xcf\x54\xfd\x80\xbb\x63\x28\xf8\xb9\xb4\xe1\x6f\xb6\x3b\xc1\x45\x62\xb9\x8e\xf9\xa9\x58\xc2\x28\xd7\x85\x03\x33\x56\xed\x23\x54\x2c\xbe\xfa\x72\xd5\xfa\x25\x84\x63\x2b\x84\x95\xef\xe8\xde\x26\x18\x1e\x58\xb1\xed\x64\xf6\x03\x16\x66\x4c\x52\x9e\x25\x33\xf6\x8c\xae\xce\xac\xc0\x1f\x1f\x8a\x08\xc1\x17\x4b\xdc\x3e\xa9\x1e\x22\x04\x70\x94\x85\x58\xab\xd7\x31\xf0\xd9\xb0\x7b\xab\x09\xef\x15\x82\xd7\xeb\x7d\x1e\xf5\x43\x5a\x04\xe9\xe9\x7b\xac\x04\xeb\x78\x09\x4d\xaa\x05\xa7\xaf\xdb\x2d\x27\x74\x37\xb5\x71\x57\x2e\xbf\x44\x68\xc2\xe7\xef\xab\x6d\x78\x08\xb1\x0d\x3d\xeb\x76\xcc\xd1\x62\xc3\xe1\x75\xd3\xa2\xa7\xa4\x77\x32\x48\xff\x5d\xa7\x70\x2a\x6f\xf6\xd8\xeb\x34\x3c\x52\x58\x6d\x88\xc1\x47\x3b\x66\xcd\xb3\x95\x3a\x34\x8e\x67\xa5\x72\xe1\x07\x9b\xa4\x09\x1b\xb6\xd4\x2a\x25\x07\x8b\xd1\x9f\x23\x5e\x42\x17\x5f\x2c\xfd\xdf\x5f\xc4\x64\x5f\x7e\xdd\x90\xc8\x4d\x18\x4d\x6e\x48\x3e\x64\xb2\x8f\xd0\xee\xd6\x1e\x17\xbf\x4e\x9c\xb0\x2e\x81\xeb\xfb\xa7\x26\x75\xb6\x12\xf6\x80\xa7\x4c\x89\x2f\x99\xb0\xba\x39\xc6\x6b\xc3\x7a\x0b\xc2\x56\x87\x1b\x35\x2d\x6b\x8f\xb0\x70\xc2\xfb\xd2\x3d\x97\x29\x82\x84\xbe\x9d\x5a\x9e\x25\x56\x4f\x59\x50\xca\xbd\x5c\x34\x6a\x68\x46\x08\xf3\xcf\x9d\x3d\x60\xef\x48\xd8\x95\xb9\x6c\x42\x03\x66\x13\x3e\xaf\xd9\x92\x5d\x2d\x70\x8d\x90\x6f\xb0\xfe\xe4\x01\xe3\x5a\x42\xaf\xdc\xa0\x01\xaf\x73\x03\xc1\xcb\xa0\x09\xdc\x63\x68\xcd\x36\x53\x52\x56\xbe\x49\x58\xfa\x2c\x8e\x55\xa0\x55\xc0\x82\xff\xfc\xe9\xf6\xf1\x7b\xd5\x09\x8b\xad\xbf\xbb\x3c\x79\x55\x4f\xc8\x3c\xc1\xbd\xf3\x3f\x5c\x15\x72\x14\xfd\x75\x37\x9f\xe0\xf8\x39\xf7\xec\x11\x69\x43\x82\xf4\x9e\xc9\xf6\xbc\x5b\xaf\xb0\xf0\x26\xad\xf5\x51\x54\x9c\x29\x41\xbc\x27\xb6\x47\x64\xc6\x39\x42\xc8\xd5\xc7\x6b\xf3\xd3\x7e\x30\x38\x6a\xe8\xf7\xe5\xe5\xfa\x99\x34\x8e\x6a\xbb\xd6\xb5\xdd\x1f\xa6\x11\x04\xbc\xaa\xfb\xf5\x12\x27\x10\x12\x03\x92\xcf\x8b\x1c\xfc\xcd\x8c\xa3\xd1\xbd\x7b\x47\xaf\xb5\x36\xa1\xa5\xc3\xee\x8b\xe1\x3d\x30\x90\x68\xdd\x9e\x79\xe8\xc3\x59\xc2\x9b\x63\x8e\x9b\x4e\x06\xa6\xb3\xe1\x5b\xfc\x85\xad\x5f\x2e\x1a\x13\xc4\x2f\xed\x75\xff\x7a\x74\x15\xe1\xea\xe1\x3f\x25\xcf\x44\xe6\xb0\x95\x4d\xeb\xaf\xbb\xbc\x1c\xbb\x92\x58\x5e\xf7\xfb\x78\xe5\x87\x25\xe1\xc4\xfc\x40\x03\xbf\xa7\x42\x04\xab\x22\xad\x85\x9b\x1e\xd6\x10\x36\xaa\x08\xfc\xdc\xb3\xbf\x80\xf0\xf5\xad\x5a\x77\xdb\xd5\x2a\x16\x52\xce\xbc\xae\xfd\xaf\xf4\xbb\xef\xbe\xcf\x79\x5f\x88\x30\x2a\x52\xc7\x18\x45\x72\x12\x3e\x6a\x17\x1c\xed\x91\xe2\x25\x44\x67\x4c\x71\xdd\x95\x7b\xf5\xff\x44\x90\x44\x41\x65\x64\x03\x17\x41\xd0\x3b\x7b\x7a\xd3\x12\x0f\x16\x8c\x97\x37\x9d\x70\x32\xe2\x26\x1c\xba\xca\x23\xf7\x25\xee\x39\x0b\xc9\x7f\xe8\x56\xf4\xf2\x24\x42\x77\xc1\x97\xa9\x1c\xde\xaf\x58\x10\x52\x88\x2f\x9a\xb4\x22\x9c\x50\x22\x57\x35\x41\xd8\x6d\x13\x0b\x3b\xb9\xd2\xcb\xb6\xb6\x04\xb2\x20\xa3\x78\x79\x4d\x9e\x4b\x08\x41\xec\xe8\x2d\xe7\xdc\x96\x64\xc2\x5c\xa7\x9d\xc3\x03\x8d\x19\x84\x93\x86\x57\x49\xd4\x34\x8a\x50\x27\xea\xfa\xe1\xbf\xf2\xe7\x51\xf0\xe7\x73\xb9\x7e\x84\x00\x11\x1f\xee\x50\xde\x64\x82\x00\xeb\xea\xd1\xbd\xfb\x12\x08\x85\xc6\x1a\xf7\x1e\x24\x9d\x21\xbc\xf8\x9a\x38\xf5\xc0\xc7\x18\x42\xa6\x53\x33\xcd\xbd\x91\xcb\xc2\xcb\xd9\x72\x2f\xc2\xc3\x83\x09\x2e\x3a\xe7\x2e\x9c\x72\x92\x27\xf4\xfb\x54\x3c\x1e\xbd\xbb\x8e\xa0\x7b\xb2\xb8\x72\xa2\x9b\x23\x21\xa1\x7d\xef\xfc\x57\xc6\x9a\x04\x99\x67\x97\x5e\x35\x38\x75\x31\xb8\x28\x67\xe0\xfd\xb1\x43\x91\xc6\xd1\xd3\x99\xf4\x5b\xec\xf4\x4f\x06\x42\xda\xa3\x79\xc3\x73\x95\x08\x8e\x42\x1a\xf6\x71\x31\x8b\x08\x6e\xd2\x49\x6e\x03\x3d\x43\x0c\x5c\x4b\x46\xd3\x0e\x8b\xac\x26\x2c\xfc\x75\x57\xfe\x9a\xb8\x39\xc1\x67\xcf\xe3\x81\x97\xeb\x97\x13\x8e\x91\xc6\xe3\xd3\x62\x72\x84\xcf\xef\x96\x4c\xf8\x25\xd8\xca\xc2\x11\xbf\xf3\x95\xde\x8e\x75\x2c\x6c\x6b\xce\xe1\x77\xd2\xbb\x45\x58\xd2\x58\xf5\xb4\x47\x9e\x45\xd0\xdb\x98\xfc\xba\xa6\x9e\x93\xd0\xa7\x96\xbc\xeb\xe2\xe5\x78\x36\x14\x94\xcc\x9c\xfb\xe0\x77\x73\x25\x7e\xc8\xca\xd4\x85\x77\x15\x13\x7e\x9b\x73\x34\xf3\x0a\x8c\x1d\xea\x5d\x4d\x9e\x2f\x0a\x27\x13\x0e\xcc\xe4\xfe\xd0\x2c\x74\x97\x90\x60\x74\xf8\x62\xe9\xdd\x43\x04\x9f\x28\xab\xdd\x9e\x3a\x89\x2c\xbc\x76\xd8\xfb\x20\xe6\x6e\x2b\xc1\x25\xf9\x6c\xdf\xf2\xea\x56\x82\xbd\x4a\x6e\xf0\xbb\x55\x2d\x84\x5c\xc1\xc6\xe5\x27\x2e\xb1\x08\x25\xee\x6b\x0e\x8f\x4e\x91\x27\xbc\xfa\xee\x9c\xa2\x5b\x60\x42\xd8\x3f\xaf\xbf\x48\x60\xe9\x4c\x42\xec\x72\x81\x34\x33\xbe\x35\x84\x3f\x66\x6b\xee\x2a\x37\x19\x10\x9c\x8f\x54\x86\xe8\x08\xdf\x67\xc1\xd4\x35\xea\xe6\xe6\x1f\x97\x08\xab\x83\xaa\x8e\x84\xed\xd1\x21\x70\x9f\xf2\x70\xb5\x57\xdf\x4d\x58\xb3\xe6\x8b\x47\xf5\xd5\x1d\x6c\x50\x41\xd4\x7a\x81\x29\x5b\x08\x41\x86\xb5\xde\x09\xbb\x4a\x09\xf2\x67\x6a\xda\xc3\x5e\xdb\x12\x3e\xdd\x1d\x7e\x76\xe2\x11\x37\x61\xad\x7f\x59\xca\xc6\xa9\xde\x6c\x18\xf2\x0d\x31\xfd\x79\x60\x0e\x1b\x6a\xab\xb6\xe6\xda\xb5\xf9\x13\x62\x42\x32\x63\xdf\x2d\xca\x26\x3c\x11\x0c\x9f\x18\x7a\xe2\x38\xe1\x2b\xcf\x90\x6f\x79\xf3\x45\x06\x99\x5f\xe2\x1a\x86\x43\x38\x69\x1c\xd2\x21\xdd\xfa\x8f\xb4\x5e\x32\x08\xca\x39\x37\xad\x7b\x98\x9f\xc0\xc4\xcd\xfb\x28\xe6\x7b\x9b\x05\xff\x97\x3c\xcf\x52\x47\x2f\x10\x76\xe5\xab\xce\x9d\xf5\xfe\x02\xe1\x45\x5c\xcc\xff\xc7\x88\x9d\x46\x53\xfd\xc5\x7f\xff\x0f\xc9\x50\xca\x94\x88\x94\xa1\x48\x92\x29\x43\xc3\xe7\x4d\xe6\x4a\x11\xa1\x81\x0c\x25\x15\x51\x92\x42\x45\xa4\x41\x65\x2c\x29\x29\x99\x87\x4c\x0d\x24\x39\x86\x28\x94\x88\x34\x51\x34\x28\x4a\xca\x90\x17\x25\xff\x55\xeb\x7f\xfd\x9c\x1b\xdf\xf5\xbb\xae\x7b\x8f\xf5\x7c\xef\xc5\x3a\xe7\xac\xb3\x3f\x7b\x1f\x5e\x6f\x89\x32\x16\xa6\x4c\xba\x9d\x79\x93\x2b\x93\xf0\xe7\xd1\x8c\xb0\xf8\x78\x4b\x82\xbf\x51\xf3\xbb\xe9\xab\xac\x08\xfa\xe7\x62\xf8\xe5\x93\xac\x09\xe1\xd6\x67\x9c\xfb\xaa\x8d\x09\x41\x4c\xfa\x14\xbd\x91\x54\x16\x8e\x64\xd4\x1e\x57\x5b\x17\x43\xd8\x97\x3d\xdc\xf9\xc7\x3c\x90\xa0\x7c\x97\xbf\x2f\xf6\xe4\x66\x42\x54\x69\x96\xf1\xde\xb7\xd3\x09\x59\x5d\x46\x8a\x0e\xab\x32\x09\x5e\x1b\x5a\x0f\xb6\x69\x66\x12\x9c\xf6\x15\x06\x6d\x78\x29\x45\xd8\x15\x92\xb7\x28\x57\xca\x87\x0d\x39\xef\xd6\x70\xb5\x5f\x74\x22\xbc\xf8\xf1\x6a\x49\x36\xa6\x13\xd6\x89\x06\xce\x91\xe1\x9e\x44\x08\xef\x0d\x94\x5c\x1d\x39\x81\x70\xf4\xde\x8e\x2e\x46\xc6\x82\x0d\xcd\x5f\xec\xcd\x99\x27\x1f\x18\x1c\x7e\x31\x6d\x84\x6b\x40\x95\xe0\x67\xf7\x74\xb7\x51\x36\x37\x21\x63\x68\x97\xe9\xcc\x9b\xcd\x0c\xbe\x4e\x13\xb8\x5d\xd3\xb3\x86\x50\x19\xb3\x72\x23\x8b\x2b\x9c\x30\xcc\x3d\x47\xf9\x1f\x7a\xe6\xda\x0f\xbe\xb5\xb9\xca\x82\xae\xb3\x4e\xaf\x52\xd6\x1e\x42\xbe\xc4\xe3\xab\x3f\x0f\x65\x10\x12\xb4\x13\x3d\xea\x74\xe3\x08\xc6\xfa\x1e\x4e\x5a\x67\x32\x08\xb5\xb3\x9c\x7c\x3a\x44\x27\x10\x8a\x97\xbe\xf7\x9f\xa9\x53\xcd\x8c\x83\x3b\xf2\xb4\x90\xfa\x8b\x2a\x06\x53\x8d\x03\xb3\x2e\xef\xff\xcd\x40\x61\xa0\x53\xc2\xba\x51\x9a\x50\xdc\xfa\x51\xe9\xb9\x8d\x1c\x21\x23\x40\x52\x63\x06\xe7\x17\x06\x76\xeb\x86\xaa\x1f\x3e\x23\x42\x59\xff\xc3\x99\x6e\xac\x38\x36\xd8\xda\xef\x59\x57\x39\x76\x88\xe0\x30\xb4\xe1\xbb\x4b\xd8\x10\x03\x2f\xde\xe6\x96\xc2\xa5\x44\xe3\xf0\x94\x90\xec\x58\xf3\xa7\x8f\xc1\xa2\x53\x57\xda\xf9\x4d\xa7\x10\x9c\xab\x0f\x4d\x4c\x3d\x34\xcc\x80\x29\x11\x17\x7a\xf8\xc7\x8d\x90\x9e\x4a\xf6\x95\xb9\xe6\x84\xf2\x67\x2b\xeb\x8c\x67\xaa\x11\xe6\xac\x5f\x7f\x87\x2f\x5c\x92\x90\x60\xf7\xf5\x51\x6e\xda\x7a\x36\x34\xbe\x9d\x2d\x56\x5a\x3b\x8b\x50\x91\x77\xfe\xa2\xf6\xb3\x68\xc2\xc3\xb8\xf3\x2e\x2e\x26\x66\x84\x82\xc4\x7d\x35\xb1\xc7\xa3\x08\xb6\xc6\x2b\xbc\xbf\x7f\xee\x63\x30\x65\x77\x78\x43\xd7\x99\x7e\x06\x3f\x7d\x23\x67\x8c\x75\x99\xd1\x38\x1a\x63\x1b\x8d\x9a\x63\x14\x08\xdc\x76\xe5\x49\x3f\x85\xd2\x08\xe2\x0b\x65\xbf\x7c\x5b\x66\x44\x38\xa0\xe4\x7f\xf5\x88\x5b\x05\x0b\xba\x83\xa9\x9a\xbf\x3a\xe3\x09\xce\x21\xb7\x05\x75\xf9\x56\x12\x5e\xe4\xe6\x4a\xcf\x7a\x52\xc1\x86\xdb\x4f\xaf\x6d\x9c\x30\xda\x40\xe8\x5b\xf8\xd4\xff\xf7\xf7\x4a\x42\xc1\x01\x8d\x3c\xc7\xe6\x22\xc2\x22\xed\x86\x65\x53\xc5\xef\xb3\x21\xe8\x4b\xc8\x48\xa5\xdc\x4a\x42\x42\xa4\x9a\xbb\x9b\x9f\x1b\xa1\x5c\xaf\x22\xea\x65\x62\x03\x1b\x02\x9f\xd7\x29\xed\x90\x9f\x49\x78\x7c\x32\x6f\xd6\xb1\xe6\x79\x84\xee\xcb\x74\x41\xe7\xfb\x37\x06\xbd\x6e\x9f\xa4\x7e\xbe\xf3\x63\x90\x15\xff\xe8\xcc\x35\x65\x11\x42\xc2\x52\x4e\xb3\xb9\xde\x9b\xd8\xd0\xb2\xe7\xde\x2a\xce\x61\x2d\xc2\xc7\x88\x80\x80\xcb\x77\x75\x08\x37\x66\x4e\x39\x20\x9f\x62\x4c\x88\x9e\xfd\x78\xc6\x70\xf6\x35\x36\x38\xef\x6a\x5a\x3f\xec\xdc\xcc\x02\x5c\xdf\xa9\xfc\x2b\x43\x95\x25\x95\x69\x1f\x9d\xfe\x57\x14\x71\xdf\x77\xdd\x13\xb4\x9e\xa0\x95\xa0\x18\xf8\x29\x43\x8e\xe0\x12\xe0\x7f\x32\x58\x39\x83\x0d\x61\xc2\x17\xc7\xd6\x2c\xce\x66\xc1\xd6\xd8\xc2\x2b\xe4\x6f\xb9\xdd\xf7\x64\xe4\x1f\x82\xf7\x77\x05\x75\xab\x6e\xfc\x2f\xd8\x35\x49\xe6\xf8\x67\x59\xb0\x15\xdb\xa1\x53\xf5\x17\x7f\xce\x24\x74\xad\xcd\x1d\x70\x61\x79\x13\x6c\xb4\x1e\xda\x4c\x08\xb1\x20\x3c\xd1\xaf\xff\xa3\xb4\x46\x93\xc0\xd2\x1e\x88\x59\x11\x7c\x99\x0d\xb2\xc6\xb7\x2e\xbb\xd7\xc7\x12\xa6\x1b\x40\xf6\x8d\x48\x29\x41\x43\x7b\xfa\x65\x81\x29\x1b\x08\x33\xbb\xb6\xac\xdf\x97\x36\x87\x10\x93\xce\x77\xb8\xb8\xea\x36\x0b\x5c\x31\xd2\x31\xbf\xce\x68\x13\xf6\xde\xd1\xd8\xfc\x75\x5d\x3a\x0b\x11\x1b\x87\xb8\xfa\x5a\x0c\x09\x8e\x09\x8a\x5c\x89\x8d\x13\x08\xb9\x05\x9f\xba\x95\x83\xae\x12\x5c\x77\xac\x56\x12\x97\xcc\x67\x21\x6a\x55\x72\x6b\x09\xeb\x06\x41\xf2\x51\xcb\x59\xc3\xf0\x79\x04\x37\xee\x37\xb6\x45\x25\x5e\x84\x86\x84\x3e\x29\xbf\xd8\x15\x04\xfd\x85\x93\xf9\x8a\x3f\xcc\x21\x04\xbf\x75\xdf\xfc\x85\xff\x38\xc1\xe8\x70\x50\x97\xd9\x07\x5f\x36\x4c\x79\x1f\x35\xeb\xdf\xe7\xd5\xba\x67\xc3\xa7\x3c\xd1\xc5\x04\xaf\x60\x8d\x58\x9e\xb1\x93\x04\xf9\xa3\x5c\x46\x67\x64\xc0\x40\x52\x68\xec\x50\xbe\xbf\x36\x61\x34\xa3\xf6\xba\x92\xe2\x28\x83\x9f\x89\xaa\xea\xbd\x1e\x16\x84\x23\xc5\x35\x0a\x57\x0a\x2b\x4a\xa1\x28\xb9\x4b\xec\xa1\x92\x15\x41\x25\xef\x73\xa0\x6e\x8d\x3a\x21\x9f\x73\xed\xf5\x83\x96\xf2\x04\x93\x3f\xf5\x8e\x99\xdb\xaf\x12\xb6\x3f\x59\x75\x85\xef\xd7\x42\x42\xef\x85\x0d\x7f\x7e\x53\x04\xc1\xde\x61\xf6\xe4\x0f\x48\x24\x74\x08\x1c\x36\x4d\x39\x57\x48\x10\x3b\x62\x35\xf3\x1f\x8a\x26\xc8\x4d\x52\xb3\x0a\x23\x2c\x64\xee\xbd\x6d\x6f\x9a\x4b\x60\x5d\x25\xeb\xde\x56\x0b\xc2\x24\x85\xa2\x47\xa6\xc6\x32\x6c\x28\x95\xad\x5b\x55\x30\xe7\x17\x83\x86\xac\xf9\x27\x79\xbf\x7e\x2a\x85\x86\xf2\x05\xc3\xf7\x8e\x93\x08\xd3\x3a\xdf\xe6\xfb\x76\xfe\x62\x30\x60\xa8\xeb\xde\x7f\x4c\x91\x30\x5d\xbd\xa0\xe4\x89\x54\x0a\x41\x95\x2f\x5f\x4a\x37\x7f\x13\x41\x75\xed\xba\x12\x8e\x9a\x0c\xc2\x73\xef\x86\xfb\xc7\x75\xfc\x08\x6f\x9d\xad\x07\x75\x1a\x39\x09\x8e\xf7\x7c\x8b\x43\x77\x9e\x26\x94\x27\xb9\xf8\x46\x5d\xdb\x42\x88\xaa\xdd\x7c\xf4\x9c\xf4\x35\x82\xd0\xac\x13\x0d\x41\x69\x73\x09\x82\x1e\x45\x8e\xb1\x4b\x27\x13\xc2\x55\xd7\x68\xc9\x76\xcf\x63\xc3\xb4\x60\xbd\x35\x09\x41\x0f\x18\x74\x9f\x3b\xb2\xfc\xa7\x78\x19\xe1\xa2\x8f\xf8\xe9\x46\xb7\x70\x42\x42\x95\xfb\xc6\xcf\xdc\x89\x2c\xcc\xe6\x59\x3f\xed\xdf\x68\x53\x90\x53\x64\x8f\x4e\x0c\xa1\xec\xe1\xfe\xf4\x7f\x08\x79\xd7\xda\x37\x60\x71\xb4\x74\x1c\x9f\x22\x5b\x97\x6c\xb3\x75\x20\x1c\x5b\x6a\x3d\xb7\x30\x48\x90\x20\xd9\x26\x35\xef\xf8\xc8\x34\x42\x4b\x9e\x8b\xbc\xe3\x95\xdf\x0c\xce\x9e\x72\x15\xde\x7f\x56\x94\x70\xf5\x04\xf7\xbe\xfd\xa5\x77\x08\xd5\x2f\x3e\xab\xfa\x7c\xd6\x21\x54\xb7\x8b\x5c\xb2\x9e\x2e\x45\x30\x7a\xae\xe8\xe1\xff\xfe\x01\x21\x39\x38\x7d\xe8\x1f\xfc\x72\xdb\x36\x7e\x6c\x7b\x40\x98\x1a\x1c\x62\x32\x2d\xea\x1e\xa1\xc7\x66\x97\x6d\xac\x82\x13\x41\xb5\xca\xa2\xaf\x91\x7b\x05\xe1\x7e\xd2\xd0\xc9\xa6\xca\x7b\x84\x88\x92\xa3\x1f\x0a\xcb\xee\x11\xbc\xeb\x7d\x8f\x59\x85\xdc\x25\x78\xc4\xf8\x65\xd5\xff\x1d\xcd\x98\x2a\x62\xa4\x52\xa1\x4f\x88\xbd\xbe\x2f\xbf\xab\xc0\x82\xa0\xf4\x58\xda\x66\x77\x4c\x01\xe1\x7e\xd9\xc2\xbe\xe4\x2f\xd2\x04\xe5\x65\x65\x77\x15\x1d\x8a\x58\x70\xf5\xf6\xd1\xdc\xe1\x70\x98\xc0\x84\xf4\x65\x2b\x4e\xb6\x25\x28\x26\x2c\xe0\x48\x29\xba\x46\x10\x39\x20\xaa\x19\xb1\x51\x8c\x30\x56\xe3\x56\x62\xa2\xbb\x8e\xf0\xaa\x3b\x86\x23\x44\x9d\x8b\xb0\xf4\xf1\x97\xd5\x23\x1c\xdd\x0c\x7c\xfd\x1a\x9b\xdc\xbb\x27\x13\x8e\xbc\x9f\x31\x2a\x1a\x62\xcc\x86\xe6\x2f\x0b\x52\x05\x2f\x34\x32\xd8\x1b\xea\xcd\xf0\x6f\x99\x48\xe3\x28\xcb\xbc\x18\xf7\xcc\xbd\x81\x19\xc7\x15\x83\xec\xb5\xdb\x74\xfb\x18\xe4\x36\x37\xa1\xbb\x7b\x3a\xc1\x23\xb7\xa2\x5c\x67\x78\x05\xe1\x48\xe9\x99\x3b\x91\x3c\xcb\x08\x07\x76\x59\xdb\x1b\xc8\x3e\x60\x8d\x17\x55\xa5\xe9\x0d\x12\xb1\xed\x0c\xf8\xd4\xe7\x7f\xec\x39\x60\x4c\xe8\x5d\x2a\x12\xca\x52\x9a\x46\x18\x8d\x95\xfe\x36\xff\x95\x2f\x1b\x62\x85\x76\x6f\xd9\xba\x53\x94\xf0\x5e\x3e\x56\x53\xa4\x6e\x94\xc1\x2c\x45\xa3\xe3\x53\xe3\xbd\x09\x3d\xf1\xeb\x9f\x9a\x1c\x6d\x2a\x45\x53\xc7\x65\xe7\x7c\xd5\x19\x34\x0e\xfe\xfd\xe5\xbd\x86\x2a\xc3\x0c\x5e\xea\x45\x3e\x69\xd7\x2c\x20\x2c\x1e\xe2\x76\x76\x70\xb8\xcf\x02\x97\x53\xc4\xa9\xcc\x7d\x55\x2c\x2c\x6e\x3c\x15\xb0\xf3\x6c\x1d\x0b\xf1\x5c\x9b\xc2\xc4\x24\xaf\x13\x2e\xd5\x6d\xcd\x5d\x98\x15\x42\x28\xe2\x74\x9a\xf9\x4b\x71\x0a\xc1\xec\xda\xec\x0c\x4e\xcf\x09\x6c\x98\xf3\x8d\x53\x68\x53\xd1\x53\x06\x7d\x15\x6b\x7f\xb8\xad\x94\x21\x64\xd7\x56\xae\xae\x96\x51\x23\xcc\xf0\x99\x15\x7e\x30\x77\x0e\x41\x23\x64\xdf\x05\x93\xd0\x2f\x0c\x3a\x72\x66\x5d\x77\x3a\xf1\x86\xc1\xb7\xf7\x29\x1b\xae\xf3\xf6\xb2\xe1\xe3\x19\xc7\x23\x9a\x6b\x27\x13\x3e\xb9\x86\x44\xf4\xdf\xfe\xfb\x2f\x14\x87\xfb\x83\x92\x7e\x31\xb8\x59\x32\xd7\x49\x65\xa5\x29\xe1\xe4\x88\xbd\x72\x96\xfd\x62\xc2\x53\x43\x41\x8e\xe6\x88\x9f\x0c\x0e\xf5\x71\x45\x3a\x9a\x47\x10\xbc\x35\xe5\x82\x1d\xf7\xed\x21\xac\xfb\xe1\xde\x71\x40\x3a\x9f\xb0\x3b\x2e\x5a\xc5\xee\xec\x06\x16\xce\xe6\x29\xed\xe9\x2a\xba\xca\x42\xdf\xa7\x98\x89\x36\x7f\xcb\xff\xac\xd9\x71\x7a\x5f\xf2\x32\x11\x55\x36\x04\xd6\xb8\x69\x48\x56\x2c\x61\x43\x50\x71\x51\x8d\x77\xdb\x01\x36\x08\xf8\xe4\x3e\xbc\xb6\x46\x84\x20\x3e\xc9\xd9\x8e\x11\xd5\x21\x48\x55\xfc\xbc\x48\xdc\x0c\xe1\xf9\xc9\xc6\xde\xfe\xb0\x3d\x04\x1b\xb1\x89\x29\x93\x8f\x0d\x31\x48\x63\x1d\x72\x57\xff\x90\x49\x38\xbc\x98\x2b\xd0\x9f\xab\x98\xe0\xaf\x75\xd6\x77\xb6\x79\x09\x5b\x91\xe9\x7d\x97\x25\xb0\x65\x23\xe1\xec\xe1\xcd\x7b\xd4\xee\xcc\x60\xa1\x55\x71\xce\x75\xf3\x14\x37\x82\x9c\x9a\xf2\x8b\x96\x83\xe5\x84\x30\xab\xdf\xaf\xa4\x0f\x6d\x22\xdc\x8b\x9b\xcb\x11\xf9\xd2\x96\xf0\xbc\xc9\x24\x6f\xea\x0a\x2b\xc2\xdd\xcc\xb2\x9b\x93\xef\xe8\x11\x02\xdf\x16\x3a\x0b\xfa\x38\x12\x42\xfb\xee\xf1\xaf\x5c\x28\x4f\x58\x34\xc3\x4e\xf3\xf7\x39\x21\xc2\xa6\x6f\x25\x8a\xcb\x4a\x75\x08\x3f\x38\xbf\x5f\xb3\x9f\xe2\xc8\x06\x7d\x6b\xb7\x5e\x8e\xbf\x5b\xf7\x9c\x23\x9c\x9c\x15\xb5\xe2\x84\xb4\x7d\x1e\xa2\xb2\x67\x45\x08\x4f\x22\x0e\x7d\x16\x91\x90\x26\x64\xc5\x6f\x97\x5f\x60\xce\x45\x68\x7d\x17\x58\xe7\x20\xd4\xc1\x20\x22\xf8\xe6\x60\xe9\x97\x69\x84\x8d\x67\xba\xf9\x86\x66\x4d\x27\x8c\xcd\x34\xae\xb7\x4b\xc8\x25\xbc\xef\xbb\x35\xed\x87\x9c\x30\x21\x76\x8a\xef\xc4\x5a\xe6\x10\x0b\xfe\x1c\x9e\x71\xcb\x8f\xe5\x12\xea\x04\xf7\x72\xaf\x29\x0f\x26\xc4\x84\x5c\xac\xd1\xd8\xd6\xc6\x42\xb1\x84\x98\x5e\x6e\x64\x2e\xc1\x35\x58\xa7\x2e\xa9\x45\x8d\xd0\x7c\xf3\xc7\x97\x7d\x6b\x63\x08\xfa\xae\x0b\x13\xcf\xb7\xb8\x10\x02\xdd\xab\xa5\x06\x32\x83\x09\x19\x39\xb5\xbc\x86\x76\x5b\x09\xc7\x0f\x66\x5a\x2a\x06\x59\x10\x0c\xd5\xfa\xb6\x6d\xe8\x94\x24\x54\x28\x7e\x2c\xbd\xed\xec\x42\xf0\x6c\x98\xd8\xfd\x33\x61\x80\x41\xf1\x12\x97\xb3\x89\x43\xb2\x34\x8e\x2d\x0a\x49\x9b\x04\xd7\xf7\x33\x78\x25\xad\xcf\x1d\x37\x61\x84\xc1\x97\xa8\xeb\x17\x86\x4d\x23\x09\xa9\x9a\x97\x33\x56\x34\xf3\x13\x92\x9e\x14\x1e\xc5\x47\x67\x16\xaa\x82\x6f\xe9\x7b\xbe\x8d\x27\x30\x51\x0b\x85\x23\x8f\xbf\x66\xc1\xe1\x8d\x74\xb7\x15\xcf\x65\x82\xc8\x6a\x21\xe7\x3f\xc2\x97\x08\x5a\xdf\xdf\xac\x2b\xd7\xe7\x20\x14\x2d\x7b\xf5\xb8\x9d\xcb\x8c\xf0\xb1\x6c\x49\xc3\xd8\x6f\x61\xc2\x66\xab\xc8\x63\x15\x9f\xb8\x09\x5f\xd6\x05\xfd\x7a\xe8\xdb\xcf\x8c\xe3\xc9\xa1\x9d\x9d\x5c\xaa\x1c\x04\x01\x45\xcd\x36\xaf\xb5\x03\x0c\x06\xaa\xde\x7c\x3a\xa8\x75\x9b\x10\x7e\xb8\xa6\xe1\x1f\x0a\x36\xdf\xd1\xf5\x16\x2f\x63\x41\x49\xfb\xe6\x9d\x7f\xa5\xe3\xe1\x29\xbe\xaa\x88\xf8\xff\x02\xa7\x53\x69\x9f\xf4\x69\x5f\x42\x5d\x91\xf9\x47\x5b\x9b\x22\xc2\xf7\xad\x6f\xfd\x84\xb4\xdd\x09\x2b\xf7\xa7\x15\x84\x05\x16\x11\xac\x96\x3b\xef\xd4\x7b\x7d\x81\x50\x2e\x95\xfe\x30\xec\xc4\x09\x42\x86\xac\x66\xef\xc5\xd8\x3e\x06\x99\xc3\x93\x95\x1c\x37\xcb\xd0\x38\x5e\x7a\xf2\x25\xd6\xb4\x7d\x65\x50\xb1\x27\x50\x5d\x25\x7c\x35\xe1\x41\x5d\xab\xb5\xaa\xa7\x01\xc1\xf7\x88\x7b\xdc\x51\x7b\x22\x54\xe5\xab\xf0\xde\x9d\xa4\x4e\xb8\x53\x6e\x68\xfe\xfe\xda\x6f\x06\x53\xdc\x5d\xaf\xb8\xbc\x5f\x40\xe0\x5a\xe7\x7e\xf0\xda\x0a\x19\x36\xdc\xbe\x7a\xe5\xe0\xf1\x44\x0e\x36\xcc\xea\x48\xbb\xc1\x1b\x6a\xfd\x5f\xd8\x75\x83\x16\xc8\x3e\xc9\x63\xc3\xf7\x0b\x46\xae\x8c\xbe\x01\x1b\x02\xb7\xe8\xa4\x76\x5f\xfb\xc8\x8c\xa3\xa6\xd6\xb9\xea\x13\x47\x1d\x0b\xd1\x97\xd7\x30\x6d\x3b\xa3\x09\x1e\x9d\x5a\x2b\x79\xc2\x9c\x09\x89\x65\x85\x51\xb3\xcc\x67\x12\x2e\x9d\x9f\xa1\x93\x64\x7b\x8c\x0d\xd5\xa6\x8e\x3f\x1d\xd7\x48\x12\x4e\x2f\x9b\x5c\x50\x9b\xa8\x47\x90\x2a\xbf\xb0\xf0\x9b\xd9\x1c\xc2\xb2\xc6\xe3\xcf\xbc\xab\x75\x09\x2a\xed\x32\x6a\x07\xea\xd4\x08\x5f\x77\xb6\xce\x57\xf6\x98\x49\x98\x97\xa7\x74\xef\xd2\xd4\x09\x04\x91\x53\x29\xef\x8e\x6d\x2b\x26\xcc\x34\x5f\x6e\xb8\x60\xcd\x85\xff\x42\xb5\x77\xf9\x12\x65\xbb\x28\xc2\xd3\x3e\x25\xb9\x87\xf5\x5d\x0c\xac\x9e\x2c\x4d\x92\x0f\x30\x23\xd8\x0c\x7f\xdf\xb7\xb2\x60\x12\x21\xf4\x7d\x05\x4f\x47\x90\x09\x61\x4e\xb1\x4f\xcd\x35\xed\xd9\x04\xbf\x79\x72\xb5\xab\x6b\x95\x09\xc6\xca\x26\xeb\x74\xd7\x8e\x30\x70\xef\x0a\x6c\x17\x0f\x3e\xca\x82\x09\x74\xde\x0b\xc6\x2a\xd2\x38\x12\x67\xbf\xb7\x69\x98\xd0\xc3\xfc\x07\x24\x22\x93\x5e\x9c\xd0\xd3\xa1\xff\x27\x1c\xf8\x71\x54\xd2\x0d\x37\x19\x1c\x39\xf2\xc0\x70\xb6\x04\x3f\x61\xfe\x9e\x70\x1f\xda\xd8\xcb\x8c\x23\x77\xf8\xda\x8b\xf8\x53\xfd\x6c\xa8\xbd\x94\x9b\x6e\x72\x9b\x8b\xc6\xc1\xb3\x2e\x58\x6f\x38\xb3\x9f\xc1\x6d\x01\x1a\x5b\x15\xc0\x10\x26\x3b\xdf\x8f\x6e\x2d\x57\x23\x4c\xf2\x4f\x53\x7c\x9f\xf3\x81\x81\x60\xf3\x77\x83\xb0\x9b\xca\xf4\xbf\xe1\xa1\xef\xc7\xab\x9b\x03\x05\xff\x0b\xea\xf3\x9a\x65\x53\xcd\xea\x19\x08\x79\xbd\x3d\xba\x23\x57\x99\x70\x25\xf9\x98\xf5\xc6\x72\x71\xc2\xaa\x14\xbb\x94\x3b\xf6\x3a\x6c\x30\x5b\xa7\x37\xf0\xec\x9e\x07\x41\xe1\x9c\xed\xc2\x23\x6e\xa6\x84\x54\x15\x2e\xd1\x81\xf5\xce\x04\x35\xe5\xa2\xc3\xe1\x65\xe5\x84\x9d\xfb\x5c\x1e\xfb\x71\x14\xb3\x60\x7f\x59\xdc\xbb\x99\xab\x9c\xf0\x3a\x61\x74\xbb\x94\x5d\x0d\x21\xe2\xda\xda\xee\x6f\x62\x89\x04\xc7\x39\xf3\x2d\x0e\xa9\x5e\x20\x98\xce\xf9\x94\xbd\xd3\xaf\x81\x85\xcd\xfa\x5a\xae\xc6\x93\x82\x09\xe5\x2f\x79\x8b\xde\x64\xf7\x13\x46\xe6\xf0\x56\xcb\x99\x78\x11\x3a\x7f\x7a\x0c\x8c\xd8\x7a\x12\x24\x56\x5c\xf3\x54\x79\xe0\xc5\x86\x7d\x99\x8b\xc4\x17\xb6\x7d\x67\xc6\x91\xfb\x21\xe6\xea\x8c\x5d\x7d\x0c\x66\x6e\x8a\x1c\x0d\x5f\x71\x8b\xb0\xbf\xa1\x5f\xc4\xc3\x35\x87\x90\x7e\x6e\x7b\xe2\x51\xe7\xb5\x84\x40\xd5\x9b\x4f\xda\x87\xcc\x09\x05\x83\x05\x3b\x05\xfd\x26\x10\xbe\xe5\x74\x15\x37\xe4\xaf\x24\xdc\x14\x8c\x2b\xd0\x90\x5f\xc6\x86\xf6\x4b\x3f\x2f\x6a\xae\x78\xc1\xa0\xe9\xf4\x46\x9b\x67\xbe\xd7\x09\xf5\x47\x7f\xbc\x9b\xa7\x5a\x48\x60\x1e\xaa\x4f\x98\x81\x1b\x04\xef\xb9\xcb\xcc\xba\x97\xae\x20\x1c\xb8\x69\xff\xe6\x6e\x1c\x1f\x61\xf6\x95\x30\xed\xba\x82\x10\x36\x84\x6b\x6e\x54\x30\x68\xdd\x4e\x38\x51\x2f\x77\x6a\x65\x45\x3c\x21\xf4\xab\x76\x66\xe8\x94\x4c\xc2\x3d\x4b\x4d\x6f\x89\x3d\xeb\xd8\xb0\xae\x2f\xdf\xed\xf7\xbd\xa7\x0c\x58\x82\x3d\xe9\xd6\xee\xf7\x09\x6e\x1b\xb4\x6a\x3a\x1f\x54\xb2\xc0\x31\x5c\xf1\x4c\xe5\xf9\x30\x83\xac\x73\x32\xc5\xf5\xc2\x8e\x84\x99\xfa\x8e\xe1\x89\xbd\x13\x08\xd5\xcf\xc4\xfd\x43\x05\x39\xd8\xf0\xf5\xbc\xaf\xdd\x8d\x3c\x75\xc2\xb5\xa7\x36\x5c\x06\x73\xef\x13\xea\x97\x75\xe5\xee\xab\x4d\x64\x61\x41\x5a\x99\x57\xf4\x58\x3e\xa1\x7d\xde\x99\xb7\x87\x7f\xa7\x12\xae\x69\xce\x5b\x5c\xc0\x7d\x9f\x70\x2c\x6c\x6e\xe7\x4d\x9d\x45\x84\x81\x3d\xb9\x56\xb7\x97\xef\x64\x83\x96\x4d\x92\xa0\x4b\x8c\x05\xa1\xf4\x6c\x18\xff\xed\xd7\xe6\x04\x53\xc4\x8a\x46\x6e\x16\x24\x18\x36\xab\x0e\xec\xcd\xb7\x66\x43\x5a\x3d\x57\xbd\xa7\xe0\x85\x52\x5c\x3b\xf2\x66\xd2\x59\x1e\x63\x42\xea\xbb\xeb\x7e\xac\xc8\x58\xc2\x85\xb7\x32\xdb\x9b\xe3\xa3\x08\x86\x0b\xbe\x78\x55\x74\x27\x13\xec\xf2\xde\x1f\xe8\xfa\x92\x4c\x58\x5b\x59\x19\xad\xaf\xac\x47\x98\xf7\x78\x6c\xbb\xf0\x4c\x7d\xc2\x89\x99\xab\x4e\xb5\x8c\x24\x13\xf2\x14\x78\x9f\x29\x85\x0a\x10\x2e\xef\xf9\xbd\x6e\xc3\xb1\xe4\x52\xb8\xa8\x1a\x3e\xb1\xfe\x18\xc4\xc2\x7b\x43\x85\x02\xcd\xe0\x85\x84\x39\xdd\x25\xfc\x6d\x51\x5c\x84\xa7\x0b\xed\x47\xce\xbf\x3e\xcd\xc2\xf5\x6c\xcb\xc9\x0b\x1e\x3e\x20\x0c\xb6\x6c\xd3\xdc\x19\xb6\x97\x85\x6f\x53\xa5\x5e\x0e\xc8\x7d\x27\x5c\x7c\xaf\xa5\xfc\xf9\x56\x2f\xe1\x46\xb1\xe7\x70\xa7\x4b\x15\x61\xa6\xfb\x12\x41\x9e\x35\xdb\x08\x47\x53\x02\xbd\x55\x82\xf6\x11\xac\x63\x2e\x4f\xab\x9b\x78\x8e\xa0\xbd\x32\xf4\xf6\x6a\x4e\x67\xc2\x83\xcb\xfb\xc5\x8e\x46\x6c\x21\xdc\xdd\xb9\x66\x89\xed\xc5\x7e\x06\x8f\x9f\x8a\x75\x78\x4a\xd4\x12\x94\x4e\x8d\x2e\x8f\x0b\x15\x23\x74\x94\x6d\xaf\xee\xf6\xd1\x21\xfc\xd9\x2f\xc6\xc1\x29\x93\x46\xe0\x75\x1f\xb8\xd5\x2a\x71\x95\xd0\x7e\xd1\x6f\xc3\x8b\xfb\xa2\x84\x00\xad\xdf\x9d\x27\x02\xb5\x08\xcf\x2d\xbe\xf4\x58\xed\x50\x20\xcc\x36\x8f\xe7\x35\xf5\x6a\x24\x5c\x9b\x69\x6e\x8e\x49\xc7\x08\x6f\x6d\x9e\xaa\x65\x6d\xd1\x24\xc8\x1c\x08\xe5\xfd\xea\xaa\x49\x30\xdb\xe9\x69\xb2\x33\xcb\x8d\xe0\x73\xfc\x8e\xb2\xd4\x3b\x51\xc2\x77\x5f\xef\xe7\x9b\x96\x73\x11\xf2\x77\x4f\xbe\xb5\xed\x6c\x17\x83\xc8\x2e\xeb\x28\x8d\x14\x2e\x82\xf3\xdc\x97\xb3\x5f\xeb\x9d\x63\x43\x6a\xcd\x86\x8f\x6b\x66\xef\x23\xec\xbc\xe4\x65\x1d\xdd\xa4\x4b\x18\x5a\x1b\xac\xc1\x3b\xfa\x87\x41\xd3\xca\x38\x95\x07\xea\xe7\x58\x70\xbe\x99\xcf\x3f\xfc\xc4\x94\xe0\xfe\xf5\xf7\xdd\xde\x9a\x7d\x34\x5e\xbc\x4e\xe4\x1c\x4b\xbe\x31\x81\xa0\x18\xf1\xe8\x96\xb7\x84\x01\x6b\xbc\x58\x4f\x09\x3d\x7c\xf4\x71\x37\x83\x70\x01\x45\x26\xdd\x58\x95\x90\xab\xa6\xaa\x7e\xf6\xe6\x2c\x42\xf4\x00\xc7\xb3\x80\x12\x41\xc2\xe7\xc9\x09\x12\x93\xaf\x4e\x24\x24\x5d\x11\xc0\x89\x19\xb7\x09\xce\x96\x37\x23\xee\x8a\xdd\x26\xcc\x7f\x3d\x63\xc3\x52\xe1\xe3\x6c\xa8\xec\x71\xfc\x25\x3c\x31\x99\x70\x6f\xd3\xe8\x13\xd5\x35\x97\xd8\x30\xc6\x1d\x27\x3b\x32\xef\x0f\x83\xf0\x52\xe5\x56\x41\xef\x32\xc2\xce\x9e\xa6\x87\x53\xfd\x1d\x08\x57\xbf\x19\x9e\x1d\x68\xbc\x47\x18\x16\xb9\x50\xf7\x75\xe6\x73\xc2\xa0\xa8\x8c\xf6\x6d\x81\x0e\x82\x93\xac\x56\x05\xd5\x36\x11\x24\x76\xed\x94\xff\x3d\x52\x4f\xf0\x89\xbe\xf2\x29\x36\xe6\x3c\xe1\xd6\xe3\xbd\x49\x25\xf3\x42\x08\xc6\xb2\x3f\x4e\x3b\xf1\xa5\xb3\x70\x21\xe9\xf4\xf9\xb7\x62\x77\x58\xf8\xe4\xb3\x87\xf3\x5f\x59\xc4\xf5\xc0\x79\xf6\xf6\xcb\x84\x37\x27\x7c\xcb\x22\xb4\x3f\x31\xb8\x94\xb8\xeb\xa8\x4a\x80\x1e\x21\xf5\x45\xce\x48\xb5\x4f\x29\x21\xe7\xf0\x1f\x7f\xe9\x64\x6e\x82\xe6\x26\x19\x9e\x18\xbd\x29\x84\xa1\xc6\xcd\x95\x77\x6f\x75\x32\xe3\xb8\xbe\x30\x99\x73\xe6\x93\x97\xa5\x10\x92\x5f\xba\xa3\xaf\x7b\x12\x61\xe2\x59\x99\xe0\x03\x9e\xe2\x84\x39\x96\x4f\x67\xcc\xbf\x72\x8c\x0d\x01\xc3\xfb\x1e\x2c\x8e\x72\x22\x7c\x09\x8a\x2b\x10\x9d\xb1\x80\x30\xf5\x64\x8e\x4f\xd0\xa5\x0a\xc2\xeb\x67\x0f\x2f\x8c\xde\x6c\x67\x70\xe1\xd2\xbc\x0e\x53\x93\x38\x16\x44\x0f\x94\xee\xdc\xd9\xa8\x4b\x98\x79\x7b\x76\x89\xe1\x0b\x01\x02\x7f\xc7\xe5\xde\x99\x32\x17\x08\xf3\x03\xa2\x66\x1b\x0b\x5f\x20\x28\x3c\xf1\xe0\x7a\x58\x6c\x4e\xc8\xf0\xe1\x1b\x3d\x33\xd5\x89\x60\xfc\x3d\x63\xf6\x6b\xbd\x44\x42\xa3\x45\x58\x80\x99\x7a\x22\xe1\xd4\xb3\x86\x43\x8e\xa6\x85\x84\xe9\xa6\x57\x2f\x72\x26\x2c\x20\xc8\x09\x6c\xbb\x2c\x59\xe5\x4c\x78\xba\x3e\xe8\x5c\xa5\x5f\xce\xdf\x7b\xd3\x33\xc9\xea\xbf\x30\x1b\xc8\x5e\xca\x58\x7d\x66\x81\xf7\x81\xcd\xf6\x7f\xa3\x91\x4d\xc1\xc1\xcf\x2c\xd7\xb3\x61\xf9\xf7\xcf\x23\x29\xbd\x2b\xd9\xca\xd9\xaa\xc4\x52\x4e\x7f\x21\x82\x5a\xc1\x4e\x31\x31\x4b\x0f\x82\x8a\x9a\x89\xde\xda\xee\x14\xc2\xde\xea\xef\x9f\x65\xf5\x2a\x09\xf7\x8d\x7e\xcd\x12\xbc\x12\x47\xa8\xe9\x52\x9b\xff\x6f\x74\xdb\x33\xf4\xc7\x25\xc1\xd9\x84\xb2\x07\xfa\xb7\x9a\xbe\x25\x10\x0e\x16\x04\xcb\x99\xf6\x9c\x26\xb4\xfd\x5e\x1d\x93\xba\x7e\x88\x41\x24\xdf\xa6\x0e\x05\x89\xcb\x04\xde\xdd\x69\x3d\x65\x6d\xe1\x84\x69\x95\x6f\x37\x3f\x53\x35\x23\xc4\x4c\xe7\xef\x7f\xd1\x25\x43\x90\x95\xe8\x8d\x7f\xc9\xfd\x86\xc1\x89\xb2\xa5\x37\xf7\x65\x36\x32\xf8\x2d\x67\x56\x94\xd5\x74\x9e\xc6\xf1\x46\x28\x74\x81\xfe\xdf\x1d\xdb\xf9\x20\x63\x20\xee\x52\x40\x28\x69\x38\x9e\xeb\xf7\xdd\x91\x30\xc0\x31\x9a\xec\x3f\xeb\x37\x83\x4c\x43\xd5\x55\x2e\x73\xc5\x08\x3b\xf3\x2a\xa6\xfe\xb4\xe7\x24\xdc\x1b\xb1\xf3\x7f\x78\x5d\x89\x0d\x56\x05\x0d\xa7\xaa\xdd\x85\x09\x2f\x43\xa5\x0a\xd3\x3b\x76\x11\xe4\xbf\xbe\x91\xbb\xa9\x98\x49\xd8\xe6\xbc\x79\x5e\xce\xc3\xbb\x04\x81\x63\x63\xe7\x12\x38\x0b\x08\xcc\x85\x1b\x49\x27\xa4\x5a\x18\xb4\x25\xe4\xdf\xe4\x7b\xa9\x4e\xb8\x52\x45\xbb\x17\x86\x87\xb1\x30\xe3\xcd\xf4\x05\xca\x7f\x91\x35\x78\xfe\xb6\x89\x7c\x05\x0b\x6b\x2a\xf6\x2f\x10\xcf\xbe\x4e\x98\xc5\x2f\x54\x77\x8f\x2f\x93\x05\x6d\xeb\xa8\x63\x73\x62\x5a\x58\x18\x8a\xbe\x60\x37\x7d\xa8\x84\xb0\x69\xaf\x44\x9d\x85\x9d\x11\x21\x7e\x65\xe1\xf2\x96\xcd\xe2\x84\xd0\x33\xb2\xfc\x1e\x39\xab\x09\x7f\x36\x1e\x7f\xa7\x99\xc7\x4d\x70\xd2\xb7\xf7\x4f\x8b\x72\x61\x43\xe6\xf9\xb7\x6e\xe5\x66\x3f\x18\x44\x2e\x4e\xee\x4b\x39\xff\x99\x81\xe0\xcc\x69\x8e\x7b\x87\x5d\x59\x78\x6e\x38\x1c\xd1\xbd\x3e\x96\x90\x50\xdb\x97\xbe\x4e\xe7\x37\x33\x8e\x3a\xf3\xd7\xe9\xf5\x4d\x49\x84\x27\xdb\x16\xfd\x08\xea\xf0\x25\x4c\x4c\x37\xb8\x71\xc8\xfa\x14\xc1\x6a\x46\xff\x20\x37\x46\x19\xc8\x4c\x66\x95\xae\x38\xe8\x40\xb8\x77\xa0\xbb\xf7\x76\xf8\x06\x82\xca\xc3\x86\x4e\xc5\x1b\x7d\x0c\x9e\x26\x95\x1f\xa8\xd3\xb5\x20\xec\xd4\x99\x7e\xe7\x27\xbf\x3f\x1b\x76\x64\x70\x25\xb9\x18\xad\xa3\xe1\x3c\xcb\xb5\x06\xde\x22\x04\x8d\xdd\xf2\x3d\x17\xd4\xe7\xb3\x61\xd8\x7a\x92\xdf\x1b\xed\x8f\x0c\x0a\x16\x65\xef\xd9\xc7\xad\x42\x78\xbb\xe6\xa7\xd8\xab\xd2\xd7\x2c\xac\xb0\x3d\xaa\x12\xd9\x71\x8f\x50\xfe\x22\xcf\xe2\xd8\x9b\x5e\x06\xd6\x8e\x6e\x25\x3e\x9a\xc1\x84\xae\x43\xf7\xc4\xf7\xff\x85\xed\x86\x9f\xa9\x37\xae\x87\x12\x52\xd6\x0d\xa5\x72\xba\xfb\xb2\x70\xb8\x5d\x76\x0e\xef\x96\x34\x16\x94\x39\x62\x84\x6c\xf2\xde\x32\x88\xb9\xd6\xfa\x21\x50\x6e\x2a\xe1\xda\x86\x4b\x0d\xeb\x1f\x0f\x32\x68\xcb\xb9\x91\x93\x97\x18\x4d\x70\x3c\xee\x6b\xcb\x3f\x96\xc0\x1a\x2f\xff\x03\xfd\xd4\xd7\x81\x56\x16\x1b\x08\x2f\x0b\xfd\xa6\x0c\xf1\x09\x13\x52\xb7\xed\xde\x16\x3f\x7b\xc6\x7f\x61\x67\xa4\xdc\xd6\x83\x1e\x6a\xff\x05\x93\xf3\x61\xfc\x55\x35\x6d\xa5\xc8\x16\x15\x90\x99\xe7\xb4\x90\xb0\x6a\xcd\xcc\x73\xdb\x2f\xe9\x10\x66\x04\x5a\xee\x96\x9f\x30\x81\xb0\xc3\xf0\xeb\xe2\x93\x6b\x67\x12\xda\x44\x36\x7d\x33\x69\xe7\x27\x6c\x59\x23\xfe\xf9\x92\xc8\x0c\xc2\x7e\xbe\xb6\xc0\x66\x99\x29\x84\xbd\x0d\x83\x8d\xc6\xdd\x03\xcc\xff\xff\x63\x8f\x0a\x21\xeb\xb7\x9e\x59\xb5\x88\x2e\x61\xe1\x24\x8e\xac\x79\x4b\xd7\x12\xf2\x35\x42\x67\x35\xa4\x4f\x21\x70\xbd\x59\x56\xdf\xd1\xeb\xc2\x06\x99\x3d\x97\x73\x1f\x1f\x13\x22\x18\xfc\xb4\x96\xb6\xb0\xee\x60\xe0\x12\x9a\x32\x69\xfe\x03\x47\x1a\x47\x14\xd7\xe7\x3f\x8d\x8c\x28\xe1\x38\xcf\xa6\xda\x49\x3b\x74\x08\x53\x1a\x5f\x0a\x6c\x0a\xe0\xfd\x7b\x18\xfc\x78\x2c\xe3\x70\x0f\x33\x8e\xe3\xac\xd9\x37\xbe\xf5\xf6\x33\x38\xb6\x50\xfa\xb3\xfc\x8e\x22\x42\xd9\xd4\x90\xd8\xb6\x19\x8b\x09\xd7\x97\xc4\xbc\x5c\x3a\x69\x3d\x1b\x7e\xb8\xae\x9b\x38\xf1\xb0\x30\x21\x43\x2b\x5a\xfc\x48\xcb\x5c\x42\x54\xea\xc9\x94\xaf\xbc\x29\x2c\x28\x7b\xba\x0b\x8a\xbf\x4d\x20\xc4\x29\xda\xed\x69\xee\xfa\xc2\xc0\x64\xb4\xe9\xe5\xc6\xc3\xad\x6c\xf0\xae\xed\x5f\x5c\x5c\xdd\xcd\x60\xf1\xce\xdf\x09\x52\xe2\x8f\x09\x57\xbe\x7f\x3b\x66\x1e\x52\x46\x50\x8c\xfd\x5d\xcb\x79\xaa\x8c\xc0\xbf\x79\xc5\xa1\xc7\xfe\x7f\x6f\x8a\x47\x22\x5b\x6c\x96\x7f\x66\xa0\xec\x1a\xa2\x73\x29\x45\x8b\xc6\xa1\x31\xed\xc9\xd2\x8d\xb7\x0d\x08\x1f\xfd\x0b\x37\x2d\x9a\xaa\x44\xd8\xf3\x50\x2d\xee\xb3\xac\x29\x61\x7b\x64\xdf\x0e\xdd\x55\x92\x84\x24\x91\xa6\x9c\x87\xc7\x78\x09\x6b\xe5\xaf\x72\xfd\x59\x9d\x49\x88\xbb\x39\x2f\x3e\x51\xb1\x90\x50\x99\xb8\xb7\xd8\x65\x46\x03\x0b\xe9\x8f\x95\x5b\x55\xd6\xea\x11\x2a\x22\x2e\xf9\xb5\xee\xcc\x61\x21\xf8\x50\x8c\xfc\xa9\x96\xd5\x34\x8e\x5b\xdb\xc5\xe7\xfc\xea\x6a\x63\xb0\x47\xea\xa2\x9d\xcc\x3a\x33\xc2\x91\x8d\x23\xb2\x26\xa3\x05\x84\xb9\x5d\xba\xbb\xf6\x3e\x89\x60\xc3\xbc\x99\x6b\xb4\xd6\xab\x5c\x24\xec\xe2\x3e\xf9\xe4\x93\xbd\x20\x61\xe8\xbc\x78\x6e\xf3\xe9\xa9\x84\xc7\x1c\x53\x03\x7b\x9e\xf0\x12\x3e\xd3\xc3\x57\xd1\x55\x72\x84\xd0\x7e\xdd\x13\xcf\x5e\x3e\x63\x70\xde\x44\xdc\x55\xfa\x7b\x3f\x1b\xaa\xa6\x85\xc7\x5f\x6d\xe7\xa3\x71\xc8\xd8\xa5\xbd\x38\x11\x24\xc9\x86\xda\x1b\x57\xf3\x07\xd7\x2d\x62\xc3\xeb\x7b\x9c\x9b\x46\x77\x54\x11\x42\xf2\x6f\x79\x9f\xb8\x37\x87\xf0\x60\x79\xe0\xed\x1d\xe2\x96\x84\x6a\xc9\x8f\xc1\x31\x91\x0c\x61\xac\x7d\x79\x31\x49\xa8\x12\x98\x17\x1e\x03\x7f\x8e\xc6\xb1\xf0\xdb\x91\xc7\x37\x2e\xd1\x8e\x05\x8d\xf7\x5b\x66\x26\xa6\x1d\x23\xdc\xda\x77\x66\xc7\x94\xaf\x06\x04\xd9\xdd\x7b\xf7\xf9\x67\xa9\x11\x4e\x75\xda\x37\x8a\x18\x2c\x25\x64\xae\xbf\xaa\xbe\x6d\x44\x90\xa0\x9c\x3a\x25\xf5\x66\x8a\x0e\x41\xd9\xc1\xc3\xd5\xcf\x57\x90\xe0\xb5\x8d\xe3\x17\x5e\xa4\xb1\x70\x30\xfe\xe9\x97\xbd\x3f\x32\x59\xb8\xa3\xf6\xf4\x17\xd7\x67\x2b\x1a\xc7\x7c\xf5\x6d\x69\xfb\x57\xf0\x11\xae\x54\x9b\x6d\xbd\xb8\xb1\x82\x50\x27\x7a\xe2\xc0\xcc\x74\x49\x82\xc7\xc1\xaa\x91\xc2\x8b\x71\x84\xa2\x8f\x06\xda\x1b\x7b\x34\x08\x01\x75\xe7\x1f\xa6\x8e\x9d\x66\x21\xbf\xb2\x7e\x7a\x58\x5e\x22\x61\xa8\x28\x26\xb4\x7b\xb0\x8c\x20\x10\x21\xb1\xc2\x31\xee\x1e\x41\xa3\x6a\xec\x43\xd7\xdf\xb2\xbf\x4c\xe8\x58\xea\x9e\x93\x04\xcd\x5a\xad\x1b\x42\x8a\xf9\x04\xa7\x34\xb7\xa8\xd0\xa6\xb3\x04\xfd\xeb\xa1\x72\xfd\x83\x0b\x08\x7b\x0b\x45\x05\x8d\x98\x9f\x0c\x42\x4c\x96\x6e\xfe\xda\xcc\x10\xb4\xa5\x3e\xfe\x38\xca\x1f\xc4\x86\xd3\x56\xa6\x56\xff\xbe\x5f\xf5\xd1\x0a\x65\xd5\xa7\x85\x08\xe6\xf9\xea\x73\xf2\x62\x7f\x33\x58\xf8\x6b\x09\x7f\x7e\x86\x04\x21\x4b\xc6\xd6\xc4\x72\x81\x33\x41\xe0\x9b\x5d\x6f\xd6\x9f\x65\x84\x3c\xe5\x87\x11\x4a\x4f\xb5\x09\xb1\x42\x59\xdc\x15\xbd\xe2\x04\xa3\xd7\xe6\x41\x5b\x5f\xaa\x12\xf6\x73\xdf\xb4\xd6\x3a\xac\xce\x86\xa0\xa7\x47\x7d\x9d\x4a\x3e\x96\xa2\x70\x45\xc9\xa2\xf2\x07\x85\x84\xcf\x6a\x72\x05\x6f\x5e\xdc\x24\x68\x1b\xb2\x34\x0d\x04\x6e\x12\x62\x37\x4d\x9b\xa5\x7c\xe5\x26\xdb\xc8\xde\x74\x91\x80\xe7\x64\x51\x82\xf7\x0d\x5f\xf7\x5c\xde\x7b\x84\x49\xc2\x2d\xad\x83\x8d\x99\x84\xba\x95\x86\x3d\x73\x4a\xcb\x58\x58\xbe\xe2\xda\xc5\x7f\xa3\xfa\x01\xe5\xc4\xf5\xcf\x22\xd9\x70\x63\xb5\xd5\xc7\x4c\x8f\x85\x84\xab\x7f\xe6\x05\x7e\xdb\x9e\x4f\x58\x53\x9a\xaf\x10\x7f\x2f\x8d\x85\x53\xa2\xe7\x5c\xf1\x56\x90\xf0\x62\x64\x61\xe7\x79\x3b\x51\x36\xbc\x69\xbc\x24\xd3\x7e\x68\x09\xc1\xa5\xea\xb5\x51\x56\xdd\x3e\x82\x32\xad\x4a\xbe\x99\x90\xfd\xf7\x21\x2c\x10\x39\x6b\xc3\x41\xc2\xc3\x84\x2a\xfe\xd0\xed\xb5\x2c\xf4\x0f\x9f\xf4\x7c\xe6\x92\x47\xf0\xb2\xa9\xbc\xcd\xd3\xe3\x49\xa8\x28\x92\x4b\x74\x70\x54\x27\x3c\xbc\xdf\x3d\x38\x7b\xc9\x7e\x42\x90\xcf\xf4\xc3\x4a\xaa\xde\x84\x52\x55\x83\xe2\xac\x4a\x75\xc2\xdc\x12\xed\x9a\xb4\x00\x41\x82\xf1\xd2\x31\xc3\x35\x2a\xbf\x19\x8c\xed\x09\x3b\xf9\xb3\x91\x83\x30\xe9\xd3\x80\xc8\x81\x24\x4e\x82\xdf\xc0\xb2\xae\xaf\x19\xd3\x09\xca\x83\x1c\x0d\xd6\x5b\x04\x09\x1b\xe7\x86\x4c\xdb\xa1\x67\x49\xa8\x57\xd9\xc5\x17\x22\xc0\x49\xd0\x16\x78\xd5\x68\x90\x3b\x89\xe0\x99\xa6\xd9\x2a\xaf\xcc\x47\xa8\x7b\x16\xfb\xf1\x53\x80\x18\xa1\xfc\xd4\xb7\x91\xe3\x77\xbd\x09\x8b\xad\xb6\x58\xb4\x3f\x2e\x24\xc4\xed\x2a\xca\xcf\x6f\xd4\x24\x9c\x8b\xf3\xdd\x92\x6f\x3a\x9f\x20\xbd\x40\x4e\xd5\xe9\x56\x3e\x21\xb7\xe9\xfe\xe4\xd6\x45\xde\x84\xf4\x89\x11\xda\x93\xfc\x5d\x09\xf7\xf7\xeb\xea\x16\x6c\xdf\x4a\x38\xf2\x74\xd7\x9a\x6b\xbb\x56\x10\xd4\xb7\x4a\xa8\x74\xda\xa8\x12\xa6\xc9\xd7\xda\x9f\xc9\x14\x27\x48\xba\x4d\xf6\xdb\xeb\x32\x97\xa0\xad\xd0\xd9\x96\xcb\x70\x11\xb2\xcb\xf8\x33\x2d\xad\x14\x08\x7b\x39\x1f\x69\xb8\xed\x35\x67\x43\x48\xcf\x64\xc9\xcc\xbc\x45\x84\x27\xc9\x23\xdf\x47\x9b\x93\x59\xc3\x07\x86\x6e\x37\xe8\x98\x12\x7e\x17\xac\xe8\x39\x7f\x40\x8d\x70\x37\xfd\x69\xfd\xb2\xfc\xc5\x04\x5f\x87\xa6\x9a\x80\x14\x0d\x42\xbd\xf7\x54\xf9\x38\xe3\x42\x02\x8f\x68\x7b\x41\x89\xc3\x51\xc2\xaf\x39\x48\x37\x8f\x5d\x47\x10\x95\x69\xdd\xb4\xb8\xc0\x81\x70\x84\xeb\xf8\x98\xe6\x5f\x08\x95\xcc\x36\x38\xb5\x52\x9a\x90\x77\x59\x23\xe6\xe8\x85\x65\x6c\xc5\xb3\xd4\x67\xe3\x01\x13\x7e\x82\xd1\x69\x8f\xb1\xa4\xe6\x72\x16\xce\x6d\xf1\x7d\xb3\xb8\xec\x25\x0b\xd5\xe6\x25\x27\x99\x8f\xe5\x2c\xdc\x73\x59\x6f\x3b\xb6\xed\x3e\xe1\xfa\x64\x65\xc7\x33\xc1\x76\x84\x95\xe7\x6a\xbf\xf3\x8f\xb8\x11\xee\x06\xcb\xf0\x0d\x4e\x5c\x4d\xd8\x96\x03\x7f\x2b\x29\x7d\xc2\xf9\x0d\xd5\xa2\x0b\xb5\x04\x09\x8e\x7a\xc6\xdb\xa3\xab\x38\x68\x38\x78\x70\x12\xa7\xa3\x2b\xa1\x8c\xca\xaf\x39\x28\x19\x12\xb8\xf7\xef\x7e\x3c\xdd\x43\x9a\x20\x62\x3f\xb2\x52\xab\xba\x8f\x81\x95\xf8\xba\xba\xbc\xb5\x2f\x18\x78\x84\xea\xd9\x1c\x1f\x15\x25\xd8\x2e\xbf\x3c\xc3\xd1\x55\x8c\x0d\x1d\x07\xdb\xfc\x8e\xa6\xf3\x13\x9e\xaa\xed\xfd\x91\x21\x63\x4a\xc8\x2a\xbd\xe3\x67\xfe\x42\x84\x30\xf4\x30\xee\x8b\x9d\xed\x20\x83\x6f\xbf\x2e\x1c\xf0\x98\xf6\x94\xe0\x3e\x38\x59\x4c\x4d\xc3\x9d\xf0\x23\x6d\xa4\xc4\x56\x44\x9f\xd0\x76\x96\x64\x8e\xef\x2e\x23\xd8\xd7\x92\xaf\xcc\x4c\x3e\xc2\x9b\x8c\xef\xc7\xbb\x4a\xa6\x13\xbc\xb6\x76\x77\x7e\x98\xec\xca\x86\x69\xab\x52\x1a\x44\xaf\x89\x11\xda\x4e\x7c\xdf\xe2\xb0\x30\x9a\x85\xbb\xfb\x53\xd4\xdc\x39\x6e\xb2\x90\x94\xad\x5c\xda\x54\x6e\x4e\x98\x3f\xbf\xaa\xa5\xf7\xfe\x10\x83\x8a\x1c\xd9\x73\x61\x3d\x5e\x34\x0e\xc9\xa6\xf4\x1b\xe9\x5b\x15\x09\xea\xd1\x6b\xc7\x2e\x75\x2d\x20\x0c\x2d\x29\x68\x7a\x1b\x3e\x81\xf0\x7c\xfa\xf2\x29\xdf\x1f\x8b\x12\xf2\x1c\x3a\xe7\x18\x9f\x28\x24\x88\xfd\x51\x39\x3f\xd7\x29\x85\x50\xbe\xd7\x5d\xdc\x69\x87\x27\x1b\xd6\x2e\x54\xbf\x54\x6e\xfb\x80\x41\x48\xe8\x87\x46\x41\xfd\x6a\x06\xa6\x7a\x85\x4b\xf3\x2d\xec\x08\x7e\xde\xd9\xd3\x8d\x73\xe6\x10\xdc\x99\x4b\xfe\xb2\xa2\xae\x84\x6f\x1b\x26\x36\x58\xf1\xda\xb3\x10\x68\x35\x57\xf5\x73\x8f\x0a\x21\xff\xa3\xd2\x37\x3b\xd5\x83\x6c\xc8\x2a\xb4\x4a\x11\xac\x15\x25\x2c\x3e\x71\x7f\xb2\xf1\x7b\x39\x82\x1d\x5f\xc3\x05\xb3\xa9\x45\x84\x1d\xfd\x5b\xbf\x3e\x2d\xfe\xc5\xe0\x96\x45\xc6\x16\x77\x2f\x73\x1a\xc7\x12\x9b\x93\x5e\x62\xda\xd2\x84\xf9\x9d\xcb\x16\xa8\xed\x10\x25\x5c\x3f\x2e\x55\xd0\x1e\xa5\x42\x18\xf4\x40\x8e\x96\xff\x02\x82\x97\x70\xd9\xe5\x37\x17\x8d\x09\x9d\x97\xb7\x37\xe5\xa5\x8b\x11\x5a\xbf\x88\x48\x4e\xfe\xca\x4b\x30\x37\x9f\xea\x73\xc2\x69\x25\x1b\x16\x77\xec\x72\x30\xd8\xdd\xcf\x20\xf4\x58\xcf\xac\x77\xa7\x65\x09\x7e\x57\xa3\x1e\x88\x07\x0c\x30\x78\xa3\xef\xb0\x76\x83\xd6\x10\x03\x9e\x90\xb2\x05\xcd\x87\x2b\x09\x01\x57\x73\x15\x9f\x74\xbe\x65\x90\x9c\xee\x29\x1c\xb9\x81\x87\x70\xdd\xd1\x59\xa1\xf4\x61\x0b\x83\x97\xa3\xd3\xd2\x77\xbc\x68\x67\x60\x74\xe5\xc1\x3d\x79\xf3\x61\x36\x14\xd8\x99\x38\xdb\xf4\x0c\x30\x88\x4d\x7c\x56\x32\x35\xaa\x8b\xc1\x17\x17\x9e\x1d\x8f\x4e\x89\xd2\x38\x34\x4e\xfe\x4e\x0e\x5b\x66\x4f\xf8\xb6\x3b\x47\xf0\x4b\x27\x3f\x81\xb6\xae\x94\x72\xe4\x9e\x4c\x30\x9c\x29\xfa\xb3\xe5\xc1\x3b\x06\x9a\x09\xdf\x44\x66\x99\xa9\x13\x76\x66\xba\xa8\x0e\xb9\x2b\xd0\x70\xca\x66\x2d\x1d\x51\x41\x42\xde\xf5\x93\xbf\xd3\x79\x64\x09\x12\x17\x4a\xee\xd8\xa7\xc8\x13\x36\xcb\xa9\x1a\x24\x8c\x49\x12\x5c\x64\x2e\xad\xb2\xff\x2c\x4b\xa8\x17\xf8\x53\xf0\x61\xdf\x0f\x06\x82\x11\x7b\x97\x48\x9f\x5e\x44\xe3\x10\x1a\xdb\x31\xba\x6d\xe0\x3b\x83\x7d\x85\xbb\xc5\xe5\x3f\x55\x12\xf2\x77\x4a\x70\x38\xd8\xad\x26\x34\x65\x7d\xde\x5e\x31\x43\x9e\x60\x6c\x5d\x72\xa6\x7b\xe3\x54\x42\x1e\x97\x9f\xa2\x78\x86\x30\xe1\x88\x7b\xfe\x86\x96\xa1\x5b\x0c\xee\x84\xd5\x9b\x3d\xec\xf5\x61\xc1\xee\x7c\xc4\xd7\xa5\xbf\xeb\x18\xec\xd6\x6c\x24\xe9\xc1\x0e\x36\xec\x8d\x6d\xf1\x1e\x95\x32\x22\xb0\xbe\x73\x55\x0b\x49\xdf\x64\x41\xb8\xb4\xea\xbb\x8a\x6c\x05\xe1\x69\x9d\x82\xd1\x16\x97\x48\x82\xd9\xd5\x43\x2f\x72\xea\x03\x08\xcd\x82\x33\x52\xe5\x0e\xe4\x10\x78\x2a\x7c\xa2\x07\x8d\xea\x08\xca\x6a\xc7\x62\xb6\x2d\x3f\x47\x58\x17\xfd\xf0\x57\x97\x79\x14\x41\x6b\x64\x75\x69\xab\xda\x1e\xc2\xb5\x01\x2d\x4f\x11\x95\xbb\x84\xb2\xfd\xef\x2e\x5d\xb4\xf5\x23\xec\xfc\x7a\x32\xc2\x74\xd6\x11\x82\x55\xae\xf0\xe1\x13\x97\xae\x12\x12\x8e\x9d\xff\x6c\x94\x7a\x95\x10\xce\x63\x9c\x15\x3d\x35\x91\x85\x6f\xb3\x86\x7f\xdb\xae\xdb\x40\x18\xec\x52\x6b\x5b\x16\x2a\x47\xe8\x6a\x92\xa8\xd2\x13\x4a\x23\x98\x6b\x7a\x48\x7d\xb8\x33\xc0\x8c\xa3\x2e\x4a\x54\xad\x4e\x70\x1a\xfd\x07\xbc\x47\x77\x75\x2f\x17\xe3\x21\x14\x9d\xb6\x8b\xbe\xb1\xeb\x3a\xa1\xc5\xf0\xe5\xc0\x33\x01\x49\x42\xc7\x7e\xe1\x9e\x1d\x9a\xe1\x2c\xa4\x5c\xcd\x1b\x7a\xd1\x5f\x4d\x08\xda\xa8\xff\xe6\x6b\xd3\x16\x82\x44\x96\xee\x91\xe2\x3f\x75\x84\x74\xdf\x47\x96\xa6\x47\x19\xc2\x81\x76\x8b\xfb\x59\x29\x43\xcc\x38\xb6\x0c\x55\xe8\x2b\xd8\x3f\x63\x30\xf3\xe4\xd8\xe5\xb4\x8c\x74\xc2\x6b\xe5\xe2\xa3\x9f\xaf\x1e\x21\x1c\x13\x9d\x67\xdd\x18\xc7\x47\xc8\xb1\x18\x79\x59\x28\x37\x8b\x0d\x23\x52\xfe\x6d\xbf\x5e\x18\x10\xb6\x2e\x9c\x2e\x31\xb3\x84\x93\x70\x6a\x7d\xb9\xf4\xa7\xcf\x8b\x08\x19\xf9\xe7\x1e\x44\xe8\xcd\x21\xac\x0e\xb0\xae\x36\x31\xe2\x24\xf4\xc7\xce\x9f\x7f\xd2\x36\x96\x0d\x33\xf7\xef\x92\x94\xef\x7e\xc3\xa0\xf2\xa9\xf3\x6e\xb3\xb7\xb3\x08\x0a\xb9\x21\x73\x8e\xb9\x0b\x10\xfc\x42\x53\x4c\xae\x1e\xd6\x61\x43\x8a\xc9\x0d\x53\x89\xe0\x2e\x06\xef\xee\xbb\x7b\xf6\xc7\x0e\x32\x28\x1f\xbe\xac\x7c\xcd\x7a\x11\x8d\x63\x38\xa6\x38\xca\x3e\xa4\xbd\x14\x7f\x76\xac\x9e\xfb\xfd\x5e\x19\x0b\x0e\xd5\x0d\x4f\xb6\x0b\x71\xd0\x38\x8e\xd4\xf3\x86\x2c\x59\x32\xcc\x8c\x63\x03\x2d\xbb\xbe\x7e\xfe\x30\x83\x9a\xfc\xa8\xca\x83\xe2\x3c\x04\xad\xdc\x62\x87\xe4\x8c\xa3\x2c\x3c\x8e\xee\x5b\x99\x20\xf9\x9b\x81\xc9\xe6\x73\xcb\x07\x9c\x6f\xb0\xd0\xfc\x28\x82\x4f\xc2\xaa\x9c\xd0\x59\xac\x12\x14\xed\x55\x4e\x38\xba\xcb\xf7\xee\x69\xd5\x9d\x6c\xb0\x2d\x14\xe5\x57\x1f\xdd\xcd\x56\xee\x28\xa8\x70\x78\xd6\x0b\x13\xe6\x2a\x4e\x39\xfa\x54\x5a\x9f\xd0\x34\xf7\x6c\x05\x6f\xf5\x59\xc2\xb0\xe7\x9d\x84\x99\xfc\xe5\x84\xb3\xfe\x81\x9f\xe7\x4c\x29\x27\xe8\xfa\xf6\x75\x6d\xbd\x90\x40\x50\x0a\xb5\x3d\xd7\x7a\xab\x8c\xe0\xb2\xfb\x89\x59\xf7\xfb\x6a\xc2\xc2\xd1\x61\xdf\x7f\xb0\xd5\x49\x56\xfd\xf2\x17\xf1\xc7\xcf\x1b\x47\xea\x39\x11\xe6\xec\x3d\x36\x53\x5c\xc8\x87\x90\xbd\x40\xb5\x6f\xaf\xf2\x49\x16\x2e\x28\x3b\x9c\x76\xcd\xdc\x46\xb0\x34\x49\xdb\x66\xbd\xd9\x8b\x90\xec\xaf\x6e\x63\xf0\x62\x84\x81\xe3\xa3\x4f\xc2\x7c\x6a\x62\x34\x8e\x0e\x87\xba\xa2\x85\xf3\x42\x09\xad\xf3\x26\xad\x11\x3f\xfc\x94\x90\x76\x6b\x4f\x7d\x54\xb5\x18\xe1\xde\xc1\xbc\x18\xbf\xad\x71\x84\xc8\x3a\xa1\x9a\x85\x12\x8a\x04\x31\xe1\xfe\xa1\xd5\x93\x79\xd9\x20\xa7\xd5\x14\xb6\xba\xec\x21\x83\xd7\xc3\x21\xd3\x7a\x22\x13\x08\x53\xb6\xb7\x07\x2d\x9c\x5b\x4e\x68\x9e\xd0\xf3\x46\xdd\x6a\x2f\xe1\xb4\xb9\xf2\x6d\x9b\x67\x32\x04\xf5\x11\x33\x65\x21\x05\x73\xc2\x94\x98\x2f\xd5\xb7\x95\x66\x11\xaa\xb2\x8e\x2e\xb6\x76\x4f\x66\x21\x7e\x6a\x9f\x89\xc3\x80\x08\xe1\x9b\x90\x77\x69\x47\xe4\x64\x42\xa0\xde\xb6\xf9\x5c\xd6\xab\x09\x07\x16\xf3\x3c\x53\x8a\xfb\xc9\xe0\x4b\xc7\xd6\x8c\x4f\x73\xf9\x09\x36\x95\x37\x57\xda\x73\x05\x12\x9e\x3e\xfa\xb6\xad\xf5\xc5\x65\xc2\xe5\xcd\x1f\x06\xda\xe6\xfd\xbd\x2f\x1c\xf6\x32\x3a\x32\xc8\x4d\x38\xe9\xb9\xe6\xc7\xdc\x40\x5b\x36\x6c\x2e\xca\x7e\x39\x6b\xc6\x6e\x36\x64\xf3\x44\x29\x9e\xba\x12\x48\xd8\xdf\x5f\xc6\x37\x2c\x9a\x44\xd8\x71\xec\x5d\xb9\x5a\x43\x2a\xe1\xd0\xd2\x7d\x3c\x0b\x7e\x75\x13\x56\xd5\xbc\x39\x33\x52\x53\x41\x78\xfb\x2a\xec\x66\xcd\x1b\x55\xc2\xb0\xcd\xac\xe5\xe2\xeb\x14\x08\x85\xdb\x1d\x0d\x46\x36\x9b\xb0\x61\xf1\x11\xbb\xe5\xd1\x47\x7a\x18\x98\xae\x1e\xab\x4c\x7f\x36\xc8\x60\xa1\x45\xe5\xfb\xde\x61\x31\xfa\x0f\x68\xea\x77\x68\x06\x57\x3f\x65\xfe\x03\x4b\x6d\x22\x24\x9d\xd3\xe7\x10\xf4\xe5\x4e\x7b\xa5\x9d\x55\x20\xfc\x30\x90\x7b\xe6\x22\xac\x4f\x90\xe4\x12\x1c\x0d\xef\xcb\x60\x81\xbf\x60\x88\xd5\xe3\x5c\x47\x30\xbc\xd8\x7f\x69\xdb\xa2\x06\x82\x56\xcb\xd2\x05\xb7\xda\x2b\x09\x27\xf9\xaf\xba\x65\x15\x95\x12\x76\xdf\xf4\x78\x66\x17\xf1\x81\x10\xb4\x57\x58\x50\xb6\xa0\x94\xa0\xdd\xba\x69\x9f\xa9\xb5\x08\xa1\x58\xcc\xef\xcc\x96\xd3\x82\x84\x44\x4f\x9d\xa9\x13\xdf\x1d\x24\xf8\x35\xbf\x9a\xb8\xef\x90\x38\xc1\x69\x65\xb5\xff\x96\x92\xe7\x0c\x12\xcd\x8c\xb4\x7f\x75\x11\x61\x52\x65\xac\x6e\xcb\xbd\x31\x06\xbf\xc7\x56\x3f\x76\xd1\x5e\x47\xe3\x38\x23\xa4\x71\x8f\x2e\x4e\x24\xc4\x55\xbe\xb1\x3f\x1a\xad\x43\x30\x3f\x23\xfd\xe3\xb4\xae\x24\xe1\xe0\x90\xe1\x9a\xd8\x19\x5a\x04\xb1\x43\xfd\xd9\x85\xd9\x3f\x18\xc8\x3c\x58\x92\x23\x9c\x15\xc7\xc2\x0a\xa1\x69\x61\xc9\x3f\x05\x09\x21\x23\x6f\x66\x5d\xb9\x70\xa7\x14\x5d\x81\x7b\x67\x57\xe4\xaf\x24\x64\xa4\x06\x1a\xa4\x08\xe8\x13\xe4\x14\xd3\xc4\x37\x51\x22\x6b\xbc\xac\x7b\xbb\x75\xd8\xe6\x6e\x4b\x29\x3c\x63\xa4\x5f\x7f\x8c\x91\xa0\x71\x04\x72\x74\x26\x2e\xde\x61\xc4\x86\x4f\x32\x4d\x37\x72\xf2\x16\x13\xb2\x4e\x7f\x70\xc9\x0f\xd0\x26\x78\x3a\x0d\x0c\xdf\x56\x0d\x63\xe1\x55\xd8\x67\xa3\x5a\xce\xb9\x84\x81\x51\x8f\x31\xc3\x0f\xe7\x09\x02\x8e\x97\x6f\x3c\x1a\xca\x27\x7c\x93\xad\xda\x68\x34\x16\x49\x18\xbc\xbe\x74\x6d\xcf\x7b\x3e\xc2\x13\xbb\xeb\x87\xeb\x65\xe7\x13\xb2\x53\xd7\xa7\x3b\xfa\x1a\x10\x7c\xe7\xe6\xa8\xef\xe1\xde\x4d\x28\x2d\x5c\xbd\x8c\xa7\xc6\x96\x70\x50\xca\xa1\xb0\xeb\x81\x30\x61\x9a\xf6\x89\x17\xb1\x3d\xef\x18\xa8\x8a\xcc\x70\x5a\x1b\x1e\x4f\x48\x73\xd9\x3f\x2a\x23\x77\x8c\x05\x9b\xf2\x1b\xad\xdf\x0b\xfa\x19\x7c\x94\x58\x6e\xb4\xb0\x6b\x29\x21\xd6\xad\x6f\xf5\x12\x3f\x39\x82\xc4\xbd\x91\x5b\xae\x67\xe2\x58\x38\x38\xfc\x4a\xa2\xf6\x96\x14\x21\xe2\x6a\x6d\xe1\xaa\x1a\x51\xc2\x2a\xc1\x23\xa3\xbf\xbe\xce\x25\x5c\xb5\x65\xea\x17\x1d\x12\x21\x6c\xfe\x7d\xfa\xc8\xd3\xcb\x36\x04\xd1\xa6\xfd\x99\xc2\x46\xf2\x84\xe1\x28\xdd\xe5\x93\x77\x27\x13\x38\x05\x2e\xcf\x09\x73\x8c\x24\xa8\x45\x64\x7e\xf8\x91\xc6\x41\xa8\xbf\x7a\x78\xf1\xe3\x47\x41\x6c\x30\x5d\x1c\x7d\xb0\x35\xd7\x98\xf0\x99\xf5\x99\xab\xb1\x6b\x3d\x41\x45\xe0\x26\xaf\x06\xaf\x2a\xe1\x84\x6f\xf7\x62\xad\x83\x60\x60\x71\xfc\xa3\x1f\x47\x99\x08\x41\x20\x5c\x36\x4e\xf9\xaa\x36\xe1\xc1\xf6\x81\xa7\x1d\x5b\xbf\x30\xc8\x0a\xf4\xfb\xf0\xe7\xd1\x7a\x82\x98\x51\xc0\xfe\x98\xd9\xb3\x09\x46\x70\xa8\x98\x71\x73\x84\x81\xde\xcb\xec\x3a\xe5\x4c\x57\xc2\xbe\xd7\x46\x89\x5d\x2c\x55\xc2\xcf\x8f\x6a\xac\xe5\x3b\x84\xd8\xa0\xa2\xde\x37\x71\xd9\x77\x43\x42\x4d\x95\x1c\x47\xaf\xda\x32\x82\xb0\x5a\x4a\xd3\xb0\xd8\x73\x06\x15\x61\x4d\x23\xfc\x39\xfd\x0c\x7e\xde\x9f\xce\x27\xb7\x5c\x83\x30\xbd\xa7\x67\x30\xe4\xa3\x2d\xa1\x90\xf3\x81\xf3\x96\x95\x26\x04\xad\x65\xd7\x1e\x0c\xc9\x6d\x27\x9c\x76\x57\xb7\x99\xfb\x7b\x84\x41\x65\xc2\x45\x33\x5e\x71\x7e\x82\x68\x8c\xe0\xfb\x97\x25\x93\x08\x8b\x83\xca\xd7\xf0\x37\x2b\x13\x38\x5e\xf9\x4d\x1c\x9e\xcb\x41\xd8\xb3\x6b\xfe\xae\x48\x87\xfd\x2c\x48\x49\x2c\x35\x2e\x39\x6a\x48\x38\x58\xde\xef\x5f\x7b\xa3\x85\xc0\x2c\x91\xa2\xe6\x6f\x57\x59\x10\x3f\x14\xb9\xf7\x85\x56\x21\xa1\xc4\x6f\xfa\xaa\xdc\xf4\xa2\xbf\x37\x10\xf9\x35\x39\x5b\x2a\x59\x38\x2f\xa1\xb2\x81\x4f\xb8\x8c\xe0\xfc\x72\xe5\xe9\x6d\xc5\xe7\x58\x48\x3f\x5e\x50\xaa\xb4\xfd\x07\xe1\xdb\xe4\x57\xc9\xab\x6f\xbe\x65\xc1\xd4\x59\xd9\xcd\xdf\xb4\x88\xb0\x7a\x85\x4d\x63\xaa\x88\x3f\xa1\xd0\x72\x9e\xb4\xb9\xc9\x64\xc2\x91\x9c\x83\x62\x4b\x74\xce\x11\x02\x32\x2e\x5e\x16\xee\xcc\x20\x70\xc4\x79\xf8\xd4\x0a\x0c\x30\x78\x3c\xc3\xbb\xc9\xff\xc5\x0d\x82\xce\xc8\x2c\xdf\xff\x1b\x5a\xed\x97\x4c\x98\xe7\xb6\x91\x70\x59\xcb\xfc\xe8\x5c\xef\x75\x6c\x25\x5e\xd4\x6e\xb9\xbe\x3e\x7b\x69\xd9\xf9\x6b\x5f\xba\x89\x06\x61\xd1\x91\x46\xf1\x88\x64\x5b\x02\xd7\xcf\xf3\x77\x7b\x8b\xa5\x09\xa3\x8b\x4f\xf1\xec\x8d\x9f\x48\x28\xf8\x91\xbf\xec\x7b\xaa\x30\x1b\xb2\x97\x44\xdd\x19\x8e\x9b\xc5\x06\xf5\x73\x3b\x77\xf7\x55\x9b\x13\xb6\x59\x77\xad\x28\x55\xea\x65\xf0\x3e\xfc\x4c\xcd\x12\x47\x21\x42\x7c\x98\xd1\x20\x6d\xe3\x20\xa8\xae\x10\x17\x6b\x5f\xab\x4f\xe8\x7a\xdc\x59\xf1\xba\x7d\x3a\x21\xd1\xbf\x91\x7b\xf5\x16\x3e\xc2\x32\x91\xa9\xbe\xae\x7d\x13\x09\x06\xf7\xda\x95\x97\x7a\x34\x31\x28\x59\x77\x2c\x32\xfc\xb6\x35\x81\xa7\x47\xc5\x61\x30\xc9\x84\x0d\x6f\xe7\xb7\x9c\x4f\x2a\x98\x4c\x50\x34\x39\x34\xcf\xa0\x5d\x8f\xe0\x7b\x57\x4f\x75\xc6\x33\x4d\x82\x70\x5a\x4b\x48\x97\x50\x7b\x29\xa4\x9a\x8d\xfc\x39\x14\x2c\xe9\x3f\x30\xfc\x7c\xde\x6b\x73\xb7\x84\x52\xc4\x89\xbe\x5a\x13\xe7\xa3\x4b\x30\x11\xb3\xb8\x62\xfa\x8d\x8f\xd0\x62\x61\x68\xe5\x33\x66\xcb\x06\xe1\xdb\x4d\xf9\xf7\x17\x58\x13\x16\xd7\x35\xf8\x2f\x5d\xc6\x43\x78\x70\x62\x9b\xd0\xe3\xde\x0d\x84\x88\x67\x93\xcf\x7c\xbe\x3b\x9d\x90\x23\x70\x28\x3c\xf2\xcf\x25\x42\x73\x48\xb4\xd1\xea\x7d\xa5\x84\x27\x4e\x63\x2b\x1f\xe9\x65\x13\x14\x5a\xcf\xbf\x9d\xeb\x99\x45\x38\xbc\xf7\xc9\x93\xad\x4a\x42\x84\xd6\xb5\x9f\x6c\xde\xcd\xcf\x20\xb8\x78\x7f\xbb\xc6\xd9\xbe\x83\xa0\xa8\x63\x95\x65\xb8\x3d\x95\x90\x5b\xe0\xe4\x26\x35\x61\x23\x21\x6b\x9d\x96\x9a\xb7\xca\x36\x42\xaf\x71\x57\x2a\x23\xf0\x83\x41\x71\xd4\x3d\x8e\x77\x9b\x1b\x4b\xb1\xea\x52\xd9\x6a\xe1\x14\x23\x1a\x47\x91\xb9\xff\xea\xb5\x7f\x5f\x8e\x95\xc9\xeb\xed\x8a\xfb\x7f\x31\x08\x58\xa1\x76\x3b\xc7\xf4\x28\x8d\x43\x64\xa2\xc1\x1e\x21\x85\xed\x0c\xf8\xaf\xbf\x47\xa2\xd0\x26\x42\xf3\x6b\x8f\x85\x01\x41\x4a\x04\xcd\x9d\x3c\x13\x6e\xad\x99\x4d\x28\x9b\x92\x75\x4a\x56\xb7\x9f\xc1\x72\x07\xcd\xa2\x2c\x05\x21\xc2\xc7\x18\xd7\xfd\x5c\xc1\x8b\xd9\xe0\x3c\x21\x34\x7b\x9e\x38\x18\xc8\xf3\xfb\xf2\x2a\x78\xa5\x11\xbc\xae\x37\x2d\xcc\x97\xbb\x4c\x18\xf2\x53\xe3\x6f\x7a\x60\x42\x90\x16\x91\x35\xd2\x7f\x0b\x06\x37\x3d\xbf\x9d\xda\x2f\xfc\x8e\x41\xf2\xf7\x8f\xc2\x38\xad\x4d\x98\x3b\x3a\xe3\xf2\xda\x28\x3b\x42\xb8\xdc\xf6\xb0\x05\x65\xbc\x84\x4f\xdb\xd4\x9d\x37\xdf\x2d\x20\x84\xa4\x55\xa6\x24\x14\x71\x10\x5e\x1b\x0f\x17\x4c\x2a\xe7\x23\x1c\x5d\x57\x77\xe5\xd3\xdf\xad\x60\x95\x95\xb6\x73\x8a\x9e\x06\x41\x2d\x70\x69\xcf\xce\x95\x1a\x84\xa7\x61\x5a\xfd\x1f\x35\x2d\x08\x17\x87\x5d\xb6\xca\x32\x42\x84\x03\x51\x70\xda\x9a\x03\x06\xaf\xee\xbe\xe2\xdd\xca\x71\x90\x85\x00\xdf\x6b\x47\x2e\x66\x08\x10\xa6\x2d\x92\xba\xc3\xff\xfc\x11\xc1\xe8\xea\x8f\x53\xff\x70\x46\xbf\xe6\x70\xc9\x60\x13\x0b\xce\x29\x5e\x4a\x53\xfe\x96\xc7\xc7\x25\xeb\x27\xff\xc5\x44\xbe\x28\x81\xd3\x43\xf7\x08\x73\x05\xa4\x42\x27\x5a\x45\x10\x76\x7f\xa2\xc7\xb3\xc7\xce\xb2\x95\xcc\x21\x5d\xae\xf5\xdb\x8e\x12\x4e\x59\xab\x5d\xfe\x57\x8a\x0a\xc4\x8a\x17\x05\x44\x12\x94\xbb\x7d\x78\x56\x48\x9c\x21\x88\x3f\xec\x37\xdb\xb8\xf4\x34\xc1\xcd\xa5\x59\xd1\x72\xde\x59\xc2\xe2\x86\x1b\x02\xef\x07\xda\x09\x4b\x26\x1c\x5b\x19\x98\x73\x85\x60\x68\xd3\xd1\x31\xbb\xbe\x8a\x10\x3a\xda\xf1\x48\xfa\x2f\x14\x2c\x9d\x57\xfc\x43\xb4\x86\x40\xe7\xac\xbf\x58\xf3\x74\xe6\xf6\xe8\x49\x91\x84\x94\x23\xfb\xab\xbe\x7c\xb9\x41\x30\xfe\x59\x55\x62\xf9\x23\x82\xc0\x4d\x47\x0a\xb5\x52\x0f\x12\x3e\x2b\xc7\x0e\x1f\xda\x12\x4c\x70\x5b\xee\x2b\xeb\xd2\xc4\x4b\xa8\x90\x9c\x8b\xaf\x16\x1f\x99\xff\xc0\xfa\x5e\xdd\x88\xdc\xed\x22\x84\x37\xfa\x8f\xce\x9c\x1d\x54\x25\x68\x7c\xec\xf3\x9b\x72\x5d\x91\x70\x73\xc7\x62\xef\xad\x13\x25\x08\xa5\x43\x81\x09\xcd\x95\x5c\x84\x05\xaf\x77\x57\x49\xff\xbd\x49\x2f\xe7\xda\xb5\x6a\xca\x1a\x73\x42\x95\x77\xcb\x9a\xe4\xa1\x55\x84\xca\xcf\xc2\x4a\xdb\x96\xc8\x11\x7e\x57\x86\x59\xf2\x6d\xeb\x65\x60\x35\xef\xf3\x8f\xac\x51\x75\xc2\x60\x80\xed\xab\xf2\xd7\x4b\xd9\x10\xfd\xdc\x56\xaa\x68\x5f\x03\x83\x70\xb7\xba\xe4\x65\x91\x4e\x84\x95\x66\x8b\xb2\x42\x37\x4f\x23\xd4\xbe\x7e\x39\xc0\x91\x76\x92\x0d\x0d\x4e\xa7\xa7\x0f\x46\xee\x67\xc3\xe9\x36\x03\xb1\x25\x49\x89\x2c\x7c\x77\xf9\xbd\x23\x7e\x99\x0b\x21\xac\xd3\xd1\x63\x9a\xc5\x22\xc2\x77\xc9\xc5\x35\x79\xf1\xaa\x84\x24\x4d\xad\xe0\x92\xf9\xc2\x04\xab\x1f\x2e\xaf\x43\x6b\x27\x11\x9e\x5d\x8d\xf7\xf1\x3a\xf8\x99\xc1\x9c\x2b\xdf\xd6\x3e\xca\x9f\x42\xf8\x5d\x51\x59\xca\x69\xf9\x93\x81\x5e\xbc\x54\xea\xa7\xed\xda\x04\x31\xc9\x41\x8d\x4f\x7b\x93\x09\xef\x2b\x9f\xea\xba\xb6\xab\x12\x2e\xa8\xa9\x71\xe8\xdc\x10\x62\x43\xdb\xd2\xe2\xbd\x95\xba\x8a\x6c\x70\xef\x5b\x53\x98\xb5\xe8\x59\x29\x7a\x9f\x71\x0d\x0c\x5d\x34\x24\xe4\xba\xc8\x55\xfd\xfe\x92\x40\x98\xaa\x28\xf9\xa5\x95\x15\x4f\x88\xb2\x0c\x73\xf5\xfe\xe4\x40\xa8\x8e\xcf\x32\xfb\x6c\xab\x41\xf0\x28\xdf\x6f\xdc\xe2\x25\x46\xd8\xf4\xd4\xe4\x95\xbc\xab\xd4\x7f\x41\xa5\x22\xea\xcc\xa6\x35\x6f\x19\xe8\x9e\x2f\xd6\xfa\x2c\x9f\x4a\x50\xaf\x98\x1a\x5c\x35\xbb\x9c\x70\x9c\xbb\x21\xe2\xaa\x4f\x32\xe1\xa5\x57\xf2\xeb\x80\x88\x31\x06\x1c\x37\x2e\x5f\x73\xd1\x8a\x67\x61\x9a\x85\x97\x74\xc7\x85\x24\x42\xf5\x89\x97\x36\x55\xd6\x77\x09\x92\x3d\xaf\xd4\x8a\x3c\x1e\x12\xde\xd8\xc8\x07\x7e\x8e\xcb\x27\xa4\x09\x78\xba\xdf\xe7\x30\x20\xac\x4f\xf5\x14\x5c\x6a\xb7\x9c\x30\xb2\x7f\xbe\x82\x76\x90\x36\x41\x97\x9f\xf7\xb7\xf0\xae\x4f\x0c\xb4\x4f\x70\x87\x0f\x5c\xe1\x25\x0c\x3b\x24\x24\x5a\x06\xc4\xb2\xc6\xcb\x92\xd9\x41\x17\xaf\x09\x08\x12\xae\xea\x4c\x5c\x50\x11\xac\x4f\x30\x7b\x79\x6f\x6d\xe4\x72\x39\x42\xf6\xa3\x1c\x0d\x57\xff\x0d\x04\x9d\x27\x6b\x27\xc6\x57\x31\x04\xab\xfe\x96\x06\xa1\xdf\x02\x04\x81\xe4\x0c\x2e\x29\x61\x1b\xc2\x2d\x1d\x45\x99\xfa\x2e\x17\xc2\x87\x31\xa9\x26\x8e\x13\x16\x84\x98\xef\xb5\x33\xde\xb3\xf6\x10\xf6\xb4\x5c\x2b\xfd\xb3\xec\x0d\x83\xaf\xcb\x3f\x4a\xa8\x54\xad\xa6\x71\xc4\xd9\x8b\xd9\x28\xbb\x8e\x30\x30\x8e\xdd\xa4\x3e\xb6\x4a\x9d\xa0\x7a\xd7\x84\x35\x1c\x98\xcf\x82\x5c\xf4\x57\xed\xc1\x96\xd9\x84\xfe\xa3\x7b\xb5\xde\x3b\x2d\x22\xd4\xcd\x17\x3e\xc2\xad\x90\xc0\x82\x56\xdd\x7c\xe1\x48\xe3\x74\x82\x40\xf7\x8a\x80\xb7\x33\xd6\x13\xde\xdd\x3c\x6f\xfc\xa5\xb9\x9d\x41\xf3\x73\xe7\x43\x79\x77\xb8\x09\x52\x1b\x2e\xeb\xab\xf3\xbd\x67\x80\x86\xde\x60\x09\x5f\x05\x82\xce\xe2\xe5\x1a\x82\x7a\xc9\x04\xdd\xcb\xfa\xfd\xa5\x69\xe6\x04\x81\x46\xd3\xe1\x43\x16\x57\xfe\x0b\x3b\xb6\xcb\x4c\xb0\xde\xef\x4c\x08\xf7\x51\x35\x9d\x7c\xd2\x8d\x50\x3b\x7b\xfa\xbd\xce\xb3\x77\x59\x18\x9e\x13\x18\x3a\xf1\x97\x17\x61\xdd\xe4\xaa\xc6\x05\x89\x5b\x09\xb9\xb7\xb6\xad\x7b\x23\xbd\x89\x0d\x4b\x2b\xb3\x5a\x7b\x8f\xd9\xb3\xa1\xc1\xa9\xf2\x66\xf8\x1e\x2e\xc2\xd6\xda\x23\x2b\x3e\x4d\xea\x67\xd0\xee\xe5\xef\xe8\xe7\xca\x47\xd0\xb8\xe1\x76\xa9\x66\x91\x18\x41\xb8\xeb\x9b\x35\xbf\x6c\x1e\x61\xd7\xcf\x14\xc1\x8d\xfb\x2c\x08\xcf\x47\x94\x53\xf4\x55\x74\xd8\xc0\xa9\x94\x98\x32\x26\xf3\x83\xc1\x27\xbe\xa0\x53\x7b\x6d\x2e\x11\x78\x79\xea\x97\x9a\x2b\xdd\x66\xc1\xce\x70\xe0\xed\x27\xbf\x60\x82\x68\x49\xfe\x88\xfc\xc9\x01\x06\x06\x4a\xd1\xfb\x1f\xb1\x72\x69\x1c\x6b\xba\x15\xbd\x36\xbe\x69\x26\xd8\x8e\x96\x2d\x7d\xf0\xb7\x3c\x1a\xd4\xd0\x5a\xc0\xbf\x9e\x30\x59\x2b\xed\x47\x8c\x93\x13\x5b\x99\x26\xb8\xa2\xb2\xc5\x60\x0b\x5b\x59\x73\xdd\x60\x51\x7a\xbb\x06\xc1\x9d\xfb\xe8\xfa\x06\xc7\x7a\xc2\xcd\x79\x53\x9e\xca\xfc\x6e\x65\x30\x7c\xc0\xf8\xd8\x25\x9b\x09\x34\x8e\x90\x5f\x56\x1c\x3d\x4f\x04\x08\x43\x29\x95\xeb\xa6\xfe\x9c\x48\x58\x77\x21\x33\x27\xf9\xfe\x1c\xc2\x7c\x8e\xd0\x7b\xd6\x34\x8f\xe0\x74\xb3\x37\xdc\x20\x56\x9c\xf0\x79\xff\x88\xda\xaf\x47\x22\x84\x85\x51\x93\x44\xe6\xed\x99\x44\x10\xbb\xae\x6d\xb9\x60\xc5\x00\x83\x29\x37\x76\x5e\x2c\xde\xcc\x41\x30\x9b\x56\x3e\xeb\x99\xfe\x56\x36\x8c\x0e\xc6\xec\x32\x8c\x16\x25\x94\x3c\x3e\xe2\x3f\x71\xa8\x9d\x01\xbf\x8a\xd5\xc7\x9c\x0b\x85\x04\x8f\xb0\xe5\x45\x1f\xea\x83\x09\xd9\x99\xb9\xee\x2d\xd6\xce\x84\xea\xa0\xd8\xed\x96\x3b\xb4\x09\x3c\x53\x0e\xc5\xc9\xc4\xbb\x12\xce\xde\xb6\x5e\xa6\x28\xb3\x9d\x05\xa5\x13\x6d\x06\xba\xc9\xba\x84\xfa\xb8\xc5\x97\x04\xbc\x56\x11\x26\xf2\xbc\xa9\x0a\x3d\xa4\x4e\x58\xb1\xa8\xf7\x85\xcf\x3b\x6e\xc2\xa6\x92\x66\xbb\xfa\x14\x3f\x16\xda\xf6\x32\xe2\x6e\xfe\xb7\x08\x9a\x2b\x7c\x8d\xcf\x6d\x5e\x4a\x98\xa4\xfe\x42\x64\xf1\x05\x2e\xc2\xfd\x30\x07\x9e\x8d\xfe\xb6\x84\xa5\x9a\x07\x26\xb4\xf0\xfd\x60\x30\xd0\x9c\x5a\xad\x6a\xc9\x4d\xe3\x58\xa1\x72\x71\xea\xfb\x97\x22\x6c\x10\x9f\xf6\x28\x6e\x95\xdb\x67\x06\x97\xd7\xcf\x9f\xa8\x69\x5f\x44\x48\x51\x95\xdf\xf0\x72\xeb\x2e\x82\x83\x92\xf2\x4c\x25\x85\xbf\xbb\x5f\xa3\xeb\x35\x85\xdf\x91\x04\xc3\xde\xba\xe6\xa6\x72\x6f\x42\xf4\x98\xfa\x2d\x38\x2c\x24\x18\xc5\xa8\x9e\x33\x3c\xc9\x41\xd0\x90\x2b\x1a\xe3\x92\xcf\x21\xb4\x35\xa4\x57\x38\x6e\x49\x22\x04\xcf\xff\xf3\xbb\x35\xfc\x0e\xc1\x8d\xea\x4a\x54\x3e\x5d\x21\x78\x2b\xa7\xc6\x4d\x8b\x0b\x24\x14\x76\x5b\xaa\x9b\x4c\x3b\x43\x70\xfb\xf2\xa7\xb9\x89\x33\x8c\x70\x32\xd3\xcb\xec\xf6\x80\x3f\x41\x73\xf4\xb9\x8f\xe6\x1f\x51\xc2\x50\xdb\x97\x15\x27\xf4\xd6\x12\xf4\xf3\x6b\x6e\xe4\x3c\x90\x20\x4c\x29\x8c\xfa\xb4\xab\xf4\x0a\x61\x69\xd8\x90\xf3\x35\xd1\xe9\x84\x0b\xf9\xd1\x9b\x5a\x9d\x0c\x08\x6d\xdf\xa7\x68\xdc\x7c\x27\x4e\x30\xd6\x14\x72\x9a\x67\x3a\x95\x10\xd0\xcf\xab\xad\x78\x6a\x19\xa1\x71\xb3\xa7\x69\xe1\x57\x49\x82\x12\xff\xba\x9d\x3e\x87\x2c\x09\x46\xf3\x57\x85\x07\xac\x10\x27\xdc\x99\x1a\xe0\xdf\x54\xf6\xf7\xad\x9b\xc4\x9f\xfd\x5d\x6d\xfe\xdf\x7d\x75\xf7\x48\x79\xf9\x2d\x42\x86\xa5\xe5\x84\x92\x07\xc9\x2c\x48\x26\x49\xc7\x48\xec\xd4\x26\x6c\xee\x63\x8e\xc4\x06\x3d\x25\x08\xb8\x6d\xd9\x19\xb8\x53\x8b\x50\xc5\x39\x7d\x4e\x29\x8b\x8f\xd0\xa9\x66\xd9\x25\x1d\xa0\x45\x08\xd0\x6e\x38\xd1\x7e\xe1\x37\x83\xea\xb8\x55\x71\x1e\x53\xfe\x30\xe0\xbd\x71\x3c\x99\xeb\x62\x17\x83\xab\xfb\x78\x9e\x17\x29\x18\x13\x8c\x77\xee\xb5\xa8\xd9\xb4\x8a\xe0\x62\x24\x7a\xa3\x32\x5f\x84\x70\xc9\x7e\xaa\xe3\xa6\x87\xfe\x6c\x38\xa5\x21\x2e\x73\x68\xd5\x74\x82\x93\xc4\xd8\x33\x71\xff\x20\x16\xca\x56\xb5\xdf\x09\x3e\xfe\x8b\xc1\xa2\xbe\xe3\x22\x83\x75\xb1\x2c\x30\x6d\xac\x3d\x35\xd3\x32\x09\x2f\x75\x37\x26\x79\xb8\x59\x12\x66\x1f\xe0\xd0\x8c\xb9\xa1\x43\xb0\xf3\xbc\xd0\xd8\x94\x3b\x8f\xf0\x44\xe2\x74\x08\xd4\xae\x10\xe4\x6c\xeb\xb3\x14\xb6\xae\x64\x83\xb7\xd5\x6e\x99\xea\xd4\xd2\x52\x54\x8b\x1e\xbd\x1e\xaa\x16\x45\x88\x98\x74\x2e\x20\xaf\x5c\x92\x20\x2c\x1e\x75\x8c\x57\xfd\x22\x21\x49\xec\x66\xbf\x58\xf6\x45\x82\xb4\xc9\x34\x47\xf7\x23\x56\x84\x4d\xed\x42\xc3\x95\x0b\xfa\x98\x71\x9c\x0e\x8e\x55\x48\x69\xe3\x26\x18\x69\x8a\xdd\xfd\xf5\xe2\x02\x61\x91\xa3\xdb\xe8\xe9\xb6\xed\x84\xdb\x32\x76\x6f\x45\x82\x1b\x09\x03\x16\x97\x6f\xe4\x48\x3e\x25\x38\xb8\x17\x28\xdc\x5a\x1e\x4f\xc0\x9e\xef\x3c\x71\xbb\xc7\x98\xff\x80\xd6\x25\xcb\x84\x0c\xd3\x1d\x0c\x66\xef\x9e\x1d\x1c\xe8\x10\x4b\xb8\x3b\xa8\x7d\x95\xdb\x7e\x8c\x81\x75\xf5\x99\x49\xcc\xa2\x15\x84\x96\x09\xa9\x21\x4a\xd9\xbc\x84\xdb\xfe\x49\xab\x0a\xae\x09\xb0\xe1\x53\xcb\x95\x35\xb9\x3a\x85\x0c\x1e\xa9\x78\xca\x4e\xdc\x17\x48\xe0\xf5\xfc\x76\x32\x4c\xe5\x35\x21\x71\x11\x4f\xd6\xb6\x73\x65\x84\xfa\x0c\x6f\x96\xdd\xac\x66\x16\x7e\xbc\x77\x95\xf2\xdb\xf3\x81\x60\x15\x9b\x36\xc1\xa2\xe6\x1e\xc1\x5f\xac\xb0\x71\x60\x66\x39\x41\xc6\x40\xdc\x24\x66\xf4\x1e\x61\x40\xcc\xc1\x3d\x3a\xb1\x93\x41\x1c\x4f\x9c\x8a\xe3\x18\x43\xe3\x10\x7a\x96\xb2\x96\xa5\xa3\x4e\x90\xdf\xa5\xca\xed\x59\x75\x95\x85\xeb\x7b\xc5\xb7\x2c\xe1\xd3\xa0\x71\xc8\xef\x30\xd3\x0a\x91\xe0\x23\xb8\x4e\x9f\x39\x62\x37\x5d\x88\xa0\x94\x94\x65\xba\xda\xc8\x86\x50\xa5\x60\x91\x3f\x36\x35\x8c\x20\x38\x3d\x20\x62\xa1\xfc\x35\xc2\xc5\x5f\x0a\x35\xa3\xdb\xbb\x09\xfb\xee\xdb\xae\x1d\xfc\x8b\xb5\x9d\x52\x79\x1e\x8e\x1f\x68\xb8\xc3\x67\xd2\x43\x81\x62\x02\x4b\xe5\x9b\x5e\xbf\x87\x23\xc1\xb1\xed\x65\xc2\xd8\x79\x33\x02\x71\x2c\xd4\x5e\x71\x20\x9b\x85\x2e\xcd\x9d\x53\xed\xb3\x13\x09\x66\xa6\x22\x9e\xf1\x0b\x9c\x08\x49\x02\x6f\x93\xb4\xef\x5a\x11\x76\x84\xf9\x3a\xbe\x71\x70\x21\x1c\x94\xaa\x2e\xd9\x7c\xf3\x27\x83\xb6\x2b\x32\x5b\xbc\xf3\xd6\xd3\x38\xd6\x0c\xcd\xbc\x3e\xeb\xc6\x5c\x42\x56\xc0\xf7\x87\x93\xda\x05\x08\x09\x55\x8e\x45\x23\xc9\xc2\x84\x5a\xfb\x69\xa1\x4f\x39\x53\x09\xbb\xcc\x5c\xf7\x7b\x68\x9d\x27\x6c\x69\x69\x31\x1c\x52\xd4\x27\x9c\xe0\x5f\xad\xbc\x80\x0e\x10\xe6\x37\xaf\xa8\x99\x96\xbc\x87\x50\xb4\xcc\xea\x89\xd8\xbb\x8f\x04\x0f\x4d\xeb\xca\xb1\x07\x1f\x09\xbb\xdd\x38\xc5\xc3\xf6\x7f\x20\x34\xa6\x67\x70\x4c\xff\x3b\xe2\x51\xfd\xb2\xfc\xb8\x71\x08\xe1\xb5\xf6\xcf\x13\x17\xb8\x72\x08\x86\xcd\x9c\x9b\x6a\xe7\x46\x11\xcc\x24\x56\x99\xde\x5c\xa1\x47\x10\x2b\xf2\x4d\x0c\x3f\xc2\xc1\x06\xef\xce\xb7\x5c\xf6\xe9\x97\x08\xb1\x43\x83\x5c\x8d\x22\xc7\x08\xb0\xc8\x1b\x93\x5a\x3c\xc8\xe0\xe8\x21\x4e\x17\xd6\xb9\xdb\x84\x05\x27\xee\x07\x27\xeb\x5b\x10\xfa\x97\xbd\xce\x5e\x68\x3d\x83\x10\x79\xe8\xd9\x80\x4f\xa9\x21\x21\x5e\x3c\xea\x7c\xcb\x4a\x6e\xc2\x73\xf7\x46\xb1\xf8\x33\x32\x84\x5f\xbe\xe0\x94\x91\x5e\x47\x98\xfa\xd0\x73\x4b\x77\x48\x06\x61\x49\x8d\x6d\xae\xcd\x1c\x7f\x42\x5f\x89\xdf\xf5\x45\x27\x1e\x13\x44\xf9\xf5\x17\x2e\x6d\xce\x23\xfc\x51\x54\xce\xbe\xbb\x4f\x9f\x10\xb9\xda\x21\xc7\x81\x65\x4d\x68\x96\xd1\xc9\xcc\xcd\x22\x42\xb3\x04\x46\xe4\x76\xa9\x13\x7e\xcb\xdf\xb5\x94\x4b\xca\x23\xc8\x2a\x2e\x97\x7f\xb5\xf1\x3c\x61\x74\x77\x74\x40\xe8\xa9\xbf\xcf\xba\x35\x77\xd7\x04\x2c\xee\x22\x1c\xbd\xe3\x7a\xa9\xb5\xa3\x9b\x90\x6b\xb6\x2c\xd7\xef\x6f\x99\xfd\xb3\x32\xbb\xef\xce\x3d\xc2\xcb\x83\xdf\x0a\xf6\xd5\xec\x21\x64\x24\xe5\x78\xfc\x43\x87\x56\x4b\x75\xed\xc3\xa3\x2c\xb4\xad\xbc\x7f\xb4\xe3\x8d\x2b\xe1\xcd\x7b\xe9\x6b\x02\x8d\xda\x84\x1e\x77\xa1\xd1\x2b\x07\xe6\x10\xac\x17\x2d\x52\x6e\xf3\x12\x21\xd4\xee\xdc\x15\xfa\xce\x24\x91\x50\x3e\x4d\x3b\xf8\xc9\x22\x11\x02\x97\xf7\x35\xd5\xb4\x5f\x9a\x84\x5f\xba\x1f\xc5\x3c\x52\xaf\x10\xae\x1c\x70\x5f\xf8\x2b\x97\x87\xe0\x13\x38\x52\x76\xb2\xc6\x9a\xa0\xad\x6d\xb0\xb9\xd7\xa2\x9e\x81\x57\x9d\x87\xba\xeb\x73\x35\x1a\xc7\xc5\x63\xfc\x2a\xcc\xe4\xa7\xa5\x10\x30\xb0\x91\x9e\xb8\xd3\x96\xb0\x95\x33\xe7\x71\xd8\x14\x43\x36\x5c\xb7\x13\x9e\x6f\x9f\xd5\x56\x8a\xde\x10\xc3\xb8\x59\x27\x96\x11\xa6\x7b\xbf\xda\xcc\x77\x40\x8e\x30\x62\x22\xbb\xeb\xfd\xcc\x5d\x6c\x08\x9b\x73\xf1\xfa\x76\x79\x6f\xc2\xec\xd3\x57\xe4\xc4\x3f\xd8\x12\x36\xa7\x84\x06\x26\x6f\x68\x67\x70\xef\x95\x9b\x85\x47\xf8\x4f\x06\x5e\x09\x72\xd1\xcf\x6a\xf9\x09\x1b\x22\xe2\xf8\x02\x07\xf7\xb1\xc1\xa9\xb3\x37\xe9\xf4\xdf\x83\x4c\xde\x27\x65\xf7\x4e\xad\x72\x82\x15\xc7\x8b\xb3\xab\x12\xf5\xd8\x30\x75\xba\xca\xe9\xe4\xfb\x5c\x84\x02\xd9\xc5\x73\x07\x27\xc9\x10\xf8\x38\x3c\x1a\xbd\xdf\xc9\x12\xdc\xba\xbb\xda\x39\xae\x39\x12\x9e\x1c\xf4\xd9\xd8\x78\xcf\x92\xd0\xb0\xfc\xb2\xa9\xf5\xd0\x66\xc2\xb3\x92\x49\xea\x77\xe7\x3d\x25\x9c\xd4\x28\xe0\x33\x4f\xe0\x27\xdc\xb7\xb5\xe0\x3e\xe7\x1a\xc2\x06\xdf\x43\xbb\x87\x05\x4d\xd6\x13\xe4\xcc\xde\x2a\x4d\x7a\xbd\x9a\x90\x3d\xfa\x85\xf9\x74\xe6\x00\x61\x6f\xfe\xc9\x2e\x91\x6b\x5e\x04\x1f\xd3\xd6\xe0\xde\x4f\x4e\x84\xd4\x93\x11\x15\xc7\x17\x87\x13\x1a\xca\xd4\x8a\x6b\xb7\xa9\x11\x1a\x8e\xfd\xd1\x34\x08\x93\x23\xa8\x4b\xfc\x18\x8d\x9a\xbf\x90\x20\x2e\x93\xe7\xb3\xab\x57\x94\xd0\x9e\x9d\xef\x64\x3b\xed\x37\x83\x1d\x82\xe9\xc9\x2b\x85\xf6\xb3\x30\xb4\xad\x60\x48\xaa\x15\x0c\x5c\x55\x4f\x4d\xd5\x97\xdc\x4b\x90\xcc\x59\x3f\xad\xec\xc1\x4a\xc2\x87\xb4\xed\x09\x2a\x3f\x26\x13\xde\xd4\xff\xda\xa2\x27\x6a\x4f\xb8\x72\x62\x57\x58\xea\xae\x64\x16\x32\xa8\xfc\xf1\x11\xfb\xcb\x04\x8b\x5f\xba\x27\x0c\x5b\x5e\x10\xde\xad\x0a\x6e\x8e\x54\x7c\x46\x30\xde\xa6\x38\xc2\xd5\x71\x87\x30\x47\xd4\xa0\xb1\x21\xc1\x92\x10\x92\x32\x65\xcb\xce\x88\x68\x82\x76\xbf\xcd\x87\xf7\xd7\xad\x09\x5b\xef\x47\xad\x59\x72\xc1\x92\x85\xa6\xe5\xba\x47\x2f\x2a\xad\x24\xc8\x74\x65\x33\x1d\xe7\x16\x13\x0e\x16\x95\x84\x27\x6d\xd5\x24\x28\xc4\xd9\x77\xa6\xeb\x95\x13\x4e\xb7\xef\x1d\xfd\x07\xc5\x18\x46\xc9\x3e\x89\x45\x08\xff\xb3\x56\xe8\x13\xcf\x0d\x42\x94\x3f\xef\xa9\x7f\xa3\x50\xa3\x36\xaf\x8c\xbf\x10\x9c\x78\x56\xea\xeb\x2e\x4f\xc2\x67\xd5\x62\xe9\x0d\xf6\x3e\x6c\xe5\x7b\x8e\xbc\x76\xc9\xc3\x58\x82\xe3\x36\xe3\x80\xae\xd1\xf5\x84\x86\xd2\xb8\xfa\xf5\x9b\x34\x08\x77\xa4\xab\xaf\x27\xdf\xb9\x4b\x58\xe2\xe8\xcf\x4c\x58\x76\x99\xb0\xb5\xdf\x6c\xc6\x50\xaa\x0e\x41\x70\xe9\x94\xbb\x8f\x79\xd6\x13\xac\xcf\xbe\x8d\xbe\xe1\xa2\x46\x98\xba\x3a\x2c\x37\xa4\xc5\x92\xf0\xa2\xd6\xf7\x8e\xee\xfc\x0d\x84\x9e\xc7\xab\x13\x5a\x1d\x56\x10\x8e\xc7\x8d\xad\x73\x90\xed\x67\x90\x38\xf9\xb5\xf6\x76\x9f\x77\x84\x53\x81\xba\x4d\x97\x16\xb6\x94\xa2\x26\xbf\xb3\xbe\x6a\x96\x3d\xfd\x07\x16\x24\x4d\x38\xd5\x77\xe7\x15\x03\x3f\xaf\x98\x13\xb5\xcf\x9a\x19\xcc\xbb\x7d\x6a\x86\xf5\xd5\x42\x82\x98\xfe\x3b\xcf\xaa\xdc\x42\xc2\x7c\x1b\xe3\x82\x4f\xd3\xda\x08\x5f\xb9\x75\x0a\xef\xff\x2d\x29\xf1\x5e\x5c\x12\x8b\x0e\x11\x2a\xde\xe8\x0b\x77\x2c\x0e\x20\xcc\x14\xfb\x21\x35\x55\xc5\x9b\x70\xe5\x4a\x9a\xd4\x89\xb8\x1d\x04\xa6\x35\x2f\xa4\xd8\xda\x96\x70\xe6\x5e\x0e\x63\xb0\xd1\x96\x60\xd9\xa7\xeb\xfe\xf5\x95\x15\xc1\x7d\xd9\x2c\x47\x17\x59\x73\x42\xd9\x3b\x69\x3c\x19\xbd\xcc\x86\x6d\xc7\xf6\x6e\x3d\x66\x9f\x44\x70\xca\xaf\x5b\x92\x98\x7c\x89\xe0\xd5\xdd\x13\x24\x97\x19\x45\x98\xa5\x6b\xb3\xfb\xfe\x6c\x6d\xc2\xf9\xe5\x0a\xe9\xeb\x13\xcb\x08\xd6\xf9\x8f\x1c\x8b\x1a\xd4\x09\x22\xab\xe5\x25\x1b\x9e\x9c\x26\xc8\x47\xae\x3f\xf3\xec\xa7\x39\x1b\x0e\x1d\x4c\x7f\x75\xe0\xd3\x62\x42\x4a\x7d\x70\x83\x46\xf5\x41\x42\xe3\xd9\x04\xee\x5a\x5e\x23\xc2\xcc\xc4\x0f\x17\x9e\x8c\x18\x12\xdc\xda\xe6\x17\x3d\x49\x4b\x24\x14\x36\x7a\x1e\x57\x9c\xad\x41\x30\xd9\x29\xbd\x3f\xbf\x76\x3a\x1b\x6c\x3e\x48\xf8\x0d\xfd\x3d\x03\xce\x38\x37\x5b\xdd\xd2\x91\x9f\x86\x7d\x5e\x7c\xd5\x5e\xe5\x4a\x38\xf7\xf1\x97\x97\xff\xab\x20\x82\xb1\xd2\x87\xcc\x22\x7d\x0e\xc2\x23\x9e\x39\x3b\x43\x66\x38\xb1\x41\x50\xef\x00\xef\x9a\xeb\x1b\x09\x31\x8b\xad\xa3\xf7\x5b\x47\x11\x2c\x74\x12\xd5\x8f\x7f\xeb\x60\x90\x90\x3e\x5b\x69\xb0\x64\x0b\xe1\x17\x6f\x47\x5c\xcc\xae\x9b\x84\x1f\xaf\x2f\x6d\x69\xce\xfc\x7b\x20\xb6\xee\x18\x3c\xb2\xa5\x87\x01\xe7\xfb\xd5\x5d\x82\x87\x35\x09\x1c\x96\x73\xb3\x93\x0e\xcd\x25\x98\x4d\x79\xb4\xe7\x77\xc4\x36\xc2\xe1\x36\xd9\x7c\x95\x70\x1f\xc2\xe1\x4e\xe7\x24\x13\xf5\xa3\x6c\xf0\x92\xb9\x92\xb7\xb6\x3c\x94\xa0\xf3\xf0\xf9\xed\x77\xf2\xdd\x0c\x34\x4f\x65\xdb\x74\x2f\x02\x83\xbe\xed\x0a\xe2\x1f\x35\xa7\xd3\x38\x0e\xd8\x3d\xde\xd5\x66\x5a\xcf\x60\xc3\x00\xf7\xda\x25\x86\x63\x0c\xaa\x02\x04\x97\x8c\x0c\xa8\xd2\x38\xfe\x67\xcd\x66\x8d\x60\x7f\xa7\xd5\x39\x2c\xac\x52\xeb\x51\x3f\xf1\xc0\x89\xf0\x73\xfe\xed\x09\xd7\xb2\xe6\x11\xcc\xf7\xeb\xb6\x94\x66\xcc\x26\x6c\x9f\x10\xef\xb2\xb9\xf6\x30\x61\xf7\xc5\x6c\x35\x3f\x2b\x75\x42\x8d\xba\x19\xdf\xfd\x33\x2c\xc2\x97\xb7\xd6\x8f\xec\xfb\x97\xb0\xb0\x67\xd9\xfe\x93\xeb\x4f\xce\x26\x3c\x0f\x5c\x35\xc7\xf6\xd2\x36\x36\xac\x3d\x1c\xec\x38\x7c\x48\x98\x10\xa9\xeb\xdf\xd8\x58\x54\x41\x58\x34\xe8\xdc\x3b\x63\x6b\x22\xc1\x5b\xf4\xb8\x8b\xe5\x26\x2b\x82\x41\x61\xf0\x47\xa1\xb3\x87\x09\x11\x4e\x5e\x51\x13\xae\xf9\x10\x3e\xc7\xdd\xa8\x55\xee\x5f\x4a\xf8\xe1\xd2\x34\xff\xcf\x89\x59\x04\x99\x41\x11\xd9\x0b\x3a\x49\x2c\xb4\xad\x75\x1f\xe1\xde\x71\x9f\x85\xe9\x6d\x3e\x0f\x9e\xb3\xce\x12\x86\xaf\xcb\xca\x0e\xb6\xfd\x60\x20\x3b\x37\xd5\x4d\xd9\xe8\x3d\x1b\x16\x78\x2f\x5f\xd9\x65\xd0\xc7\xc0\xc5\x4b\x20\xfc\xf3\x42\x1d\xc2\xec\x62\x4d\xe3\x01\x3f\x3f\x36\xbc\xab\x9b\xf9\xb6\xa2\xd4\x9d\xa0\xb9\xf1\xeb\xfe\xeb\xb1\xd3\x09\x29\x77\x8b\xb4\x8f\x06\x89\x12\x7a\xaa\xce\x0f\xe6\x68\x1f\x22\x0c\xff\x2a\x9f\xfa\x0f\x8b\x7a\x62\x34\x0c\x7a\x3d\x09\x96\xdb\x13\x85\x37\x79\x4a\x12\x8c\xb9\x27\x9d\x99\xa5\x99\xc8\x86\x43\xd9\xbd\x0a\x1b\xf6\x9c\x21\x18\xad\x08\xdd\x6a\xb7\x6e\x2f\xe1\x48\x73\x9a\xb7\x83\xd9\x57\x06\x7f\x64\x79\x5e\x48\xff\x76\x25\x18\x3d\x88\xd0\x92\x09\x4b\x24\x08\xbe\x7a\xa6\xbf\xfd\xd8\x15\xc2\xd5\x43\x9d\xcb\xb2\x64\xa3\x09\xb6\x67\xf8\x0d\x93\x0e\x7d\x67\x20\xf3\xa8\x38\xda\x72\xed\x14\x1a\xc7\xe3\xf9\xcd\xc3\xc5\x5b\x54\x08\xc3\xf3\x44\xb8\x3d\x67\xdd\x26\xf0\x5f\xb9\x31\x77\x92\x5e\x1c\xa1\xf4\xbc\x8c\x29\xd7\xa2\x42\x42\xc0\xaa\x34\x6d\xfd\xe9\x65\x2c\x1c\xba\x77\x49\x77\x4c\x29\x8f\x20\x52\x26\x13\x54\xd7\x34\xc4\x60\x8f\xfe\x29\x8b\xc4\x57\x8b\x08\x99\x31\x35\xac\x17\x9f\xf8\x09\x91\x5f\xce\x6e\x36\xbb\xba\x98\x60\xfc\xc1\x5e\xea\x97\xfb\x56\x42\xd8\xa6\xce\xbe\x60\xa7\x8d\x84\xe4\x73\x93\x8e\xb2\xec\x1d\x08\x87\xec\xbd\xd4\x59\xa2\xd2\x04\x8b\x31\x71\x19\xe1\xed\xfd\x0c\xd4\x3f\x4e\x4e\x68\xce\xd3\x23\x9c\xbe\x60\x30\x77\xd5\x71\x77\x82\xd9\xf4\x97\xe4\x92\x24\x4a\xe0\xcf\xfd\x2c\xbc\x60\xae\x2f\x1b\x42\x63\x4e\xf6\xd6\xee\x3d\x4e\xf0\xda\xc4\x8a\xcf\x9a\xc5\x49\x88\x9d\xb3\xc7\xb9\xfe\xd6\x5b\x66\x1c\xd2\x6b\x1e\xaa\x36\xb7\x2e\x23\x44\x46\x27\x78\xcd\x0b\xa8\x24\xc8\x6f\x56\x0c\x5a\xe0\x5b\x4b\xe8\x16\x4a\xbc\xdf\x53\x96\xcd\xc2\x0a\xfe\x9e\xa4\xb6\xe5\xb5\x84\x35\xf7\x84\x06\xfd\x9d\xb3\x08\x65\x26\x99\x99\xd7\xec\xd2\x08\xf3\xbf\x4f\xba\xb0\xe3\xb7\x1b\x61\xc3\xaa\x6d\x07\xe6\xa6\x57\x11\x84\x32\x7e\x38\x26\x45\x05\x12\xac\x9f\x3e\xb2\x9d\xf6\x35\x99\x85\xb0\x2e\x3b\xb3\x55\x72\xf9\x2c\xb8\xc6\x37\xcc\xb2\x51\x3a\xc3\xc2\xd2\x49\xac\x21\x55\x8b\x60\x82\xae\xbe\xf8\x99\xfe\xbb\xc1\x84\x92\x89\x7d\x05\x9b\xd3\x79\x09\xb3\x3f\x1c\x78\x1d\xf8\xf7\x0f\xfe\x1f\x0c\x6b\x2c\xf2\xb9\x5c\x30\x99\xf0\xb6\x8f\xc3\xe9\x52\x71\x21\xa1\x53\xf2\xd2\x3c\x3d\xff\x1a\x42\xc6\xd2\x21\x66\x64\x47\x2b\xa1\xa3\xa9\x7a\x9a\x4f\xff\x2b\xc2\x9e\xf5\xb3\x72\xec\x1c\x5b\x09\x65\x1f\x6a\xb3\xb5\xff\xae\xb9\xb3\x31\x7d\x2f\x47\x97\x2f\xe1\xeb\x5d\x85\xa9\xaf\x52\xf5\x08\xa9\x59\xf9\xef\xb9\x15\x77\x10\x6a\x65\xcb\xf4\x8f\xcf\x58\x4d\x38\xfb\xdc\x2c\xb1\x20\x52\x8b\xb0\x22\x6e\x57\xc0\x57\x99\x3c\x42\xad\xbc\x94\x6b\xd8\x9b\x39\x84\x80\x2f\x3d\xab\x8e\x0f\xf2\x10\x1e\x1c\x0d\x9d\x79\xf3\x7e\x0e\x0b\xfc\x0a\x9c\x45\x96\x24\x43\xb8\x3d\xd8\x2a\xe9\x21\x52\xc5\x42\x4b\xc4\xaf\x1d\x76\xfa\x0f\x09\x2a\x0b\xe3\xa7\x9c\x14\xf5\x21\xd4\x18\x4d\xfc\xfc\xb4\x72\x3a\xa1\xa8\x49\xc6\xc0\x6a\xc5\x4f\x06\x09\xa2\xf1\x9b\xbf\xf0\x2f\xa0\x71\x48\xda\xde\x16\x7c\xbb\xaf\xbb\x14\x9f\x1f\x3d\x95\x08\xcf\xd6\x26\x58\xa8\x6d\xfb\xec\x51\xa6\x49\x58\xba\xce\x25\x97\x94\xc1\xe0\xcd\x44\xbb\xfb\x2f\x65\xd7\x12\x0c\xab\xd7\x5d\x35\x3d\xfb\x9d\xc1\xa8\x85\xc1\xd6\x94\x13\xa6\x84\x12\x81\x2f\x9f\x27\x96\x2c\x21\xb0\xba\x4a\x9f\xef\x0e\x11\x20\x98\xbf\x93\x2e\x69\xcf\x97\x20\xd4\xec\x72\xfe\xd3\xf1\xc8\x95\xd0\xea\x38\xfa\x30\xb1\x80\x87\x70\xb2\x62\x0f\xd7\x35\x9b\x64\x16\xe2\x73\xe5\xce\x75\xc5\x71\x10\x4c\x94\xa2\xce\xe4\xfa\x5b\xff\x17\xda\x4f\x65\x05\xbf\x3f\xad\xff\x5f\x98\xde\x69\x5f\x6d\xb7\xeb\x13\x03\xd9\x90\xbd\xca\xd1\x69\x67\x09\x0f\x4a\x13\xae\x94\x46\x9e\x26\x3c\x8d\x36\x5e\x5d\x2c\xdd\x57\x0a\x2f\xe5\xda\x93\xbc\xa5\xbb\x68\x1c\xa6\xae\x5b\x32\x95\x7f\x2a\x10\x96\x85\x5f\x7b\x10\xef\x70\x9b\x90\xfc\x64\xf2\x59\xc3\x2f\xe2\x84\xa6\x47\xeb\x4b\x9d\xf2\x26\x12\x98\x93\x19\x6a\x9c\xe1\x62\x6c\xa8\xe0\x37\xcf\x98\x96\xf6\x91\x41\xdd\x8f\x97\x7a\x41\x45\xdc\x84\xa9\xa7\xfa\x65\x99\x81\x49\x6c\x68\xee\xe6\x95\x31\x78\xd3\xc1\xc0\xe1\x58\x6c\x23\x67\xeb\x05\xc2\xac\x2b\xca\xcf\xc4\x0e\x2a\xb3\x61\xf6\xa2\xa5\x95\x9e\xbc\x32\x84\xa2\xcb\xeb\x83\x04\xca\x1b\x18\xf0\x9e\x48\xcd\xb4\x1c\x9a\x40\x28\xb8\xdf\xdb\x7a\xb8\xf3\x22\x0b\xdd\x6e\x41\x47\xb3\xc7\xc6\x18\x7c\x8b\x08\x68\xe2\xef\x5a\x4a\xe0\x95\xe0\x7e\xe7\x72\xfa\x2b\x83\x27\x49\x53\x5f\x9d\x0f\x8d\x24\xe8\xde\xfd\xe4\xb6\xd0\x54\x90\x60\x77\xba\xae\xbe\x8d\xb1\x26\x9c\x32\x9e\x72\x66\xc7\x55\x0e\x82\x7b\x5f\x63\xfc\x60\xb7\x2e\x1b\x5e\x8b\xf4\x19\xcd\xe8\xe8\x62\x60\xb3\xf7\x49\x8e\xc8\x17\x79\x42\x67\xf1\xc4\x09\x57\xa3\x7a\x19\x98\xfc\xd2\x4c\x7d\x9c\xb4\x93\xc6\x31\x96\xcd\xf7\x3e\xa9\x6b\x25\x61\xf9\xc2\xd1\x1b\x3d\xc5\xf3\x09\x87\x56\x6f\x59\xc5\x17\xb9\x84\x20\xf2\xc9\xf6\xe3\x9a\xa2\x3f\x0c\x1c\xce\x6a\xef\x59\xff\x31\x83\x90\x98\xf4\x27\x75\xe7\xba\xf5\x84\x69\x2f\x83\xd7\x8e\x15\xf5\x32\xf0\xfa\x9d\x6f\x5d\x67\xa4\x49\xe3\xd8\xde\x5b\xb6\xcc\xfa\x83\x32\x1b\xda\x0b\x1f\x05\x7a\x8c\xca\x10\x0e\x1c\x89\x5f\xe7\xb1\xfe\x0e\x0b\x3e\xda\x0c\x97\xd1\x71\x43\x02\xe6\x17\x1c\xbb\xb3\x99\x87\x0d\xe5\x6a\xf9\xcf\x3d\xc3\xc6\x18\xb8\xe7\x1b\xdf\x08\x95\x0a\x66\xa1\x63\x22\xc5\x76\x48\xf1\x10\x72\x95\x7a\xd7\x2d\x3d\xb2\x9e\x0d\x12\x6b\x15\x0e\xb7\x45\x19\x10\x7a\xe6\x7e\x4b\x3d\xd9\x71\x8a\x85\xa0\x3b\x63\x2d\xa5\xb3\x83\x09\x3a\xc2\x53\xaf\xf1\x7c\xed\x60\xe0\xb7\x75\xf9\xe3\x0f\x97\x2b\x08\xaf\xa2\x2d\x6c\x78\x6e\x2d\x23\x70\x15\x1f\xeb\x50\xdd\x22\x42\xa8\x73\x4e\xf9\x21\xfc\xf1\x1b\x83\x80\x6f\x13\x4b\x3b\x37\x6f\x24\xac\x8a\x59\x9e\xfe\xfd\xc9\x1a\x82\xaf\xe7\xb4\x9c\xb7\x69\xdc\x84\x98\x83\x9f\x3a\xc2\x23\x36\x10\x34\x6f\x4f\xba\x12\x3e\xfd\x1e\xe1\x84\xef\x84\x8d\x4f\xea\xcd\x09\x89\x33\x25\x79\x35\x8a\x9c\xd9\x70\xd7\x21\x38\xa2\x53\x49\x84\x30\xb0\xb9\x6f\x83\xf9\xb5\x8d\x84\xd8\x9d\xe7\xdc\x44\x4c\xfa\x99\x71\x84\xa9\x1c\xe0\x88\x32\x99\x41\x78\x7e\x79\x60\xb6\xdb\x46\x01\xc2\xc9\xe3\xb9\x76\xab\x4c\xad\xd9\xd0\xbe\xff\x50\x78\x52\xa7\x28\x61\xe8\xce\x93\xaf\x5b\x1a\xea\x09\x77\xae\x5e\x99\x22\xff\x67\x1d\xe1\xc8\xd6\xfb\xe1\x47\x22\x0a\x09\x86\x1b\x0e\x06\x14\xcf\xb5\x26\x28\x5a\x9d\x7d\xb3\x4b\x48\x88\x0d\xda\x4a\x7b\x38\x77\xe5\x3c\x63\xa0\x27\xdf\xf8\x75\x91\xb7\x24\xe1\x2d\xb7\x8d\xf8\x86\x33\x0a\x04\xf5\x7e\x2f\x56\x4c\xd0\x10\x83\x99\x81\x13\xf7\x65\x4c\xbf\xcd\xa0\xf2\xa4\x69\xdf\x0b\x15\x3d\x82\xd0\xeb\xe6\x14\x9e\xd4\x1b\x2c\x74\x66\x7e\x28\xde\xe8\x5c\x4c\xa8\xe8\x8c\x9f\xe8\xdb\xf9\x99\xd0\x72\xa7\xb6\x66\xcf\x5f\x14\x2f\x63\xad\xdd\x3b\xab\x86\xb0\xed\xec\xb6\x31\xce\xdb\x09\x6c\x98\x2b\xbe\xea\x55\x4a\x42\x32\x0b\xad\xbb\x73\xa2\x0d\x27\xf8\x10\x38\x76\x75\x15\x9b\x59\x85\x11\x64\x8a\x2e\xe9\xa9\x14\x45\x10\x14\xce\x0c\x27\xf4\x64\x6e\x27\xc8\xef\x97\xbd\x51\x10\xe6\x48\x88\xbb\xbb\xb6\x2e\x30\xdf\x92\x50\xd8\x82\xa4\x33\x61\xaa\x84\x8d\xff\x1f\x23\x77\x1a\x4d\xf5\xfb\xff\xf1\x9e\x32\x54\x24\xf3\x94\x21\x53\x28\x09\x15\x42\xfb\x6d\x08\x65\x4a\x89\x24\x22\x8a\x8a\x42\x14\x19\x4a\x45\x51\x19\x1a\x50\x2a\x95\x21\x43\xc8\x2c\x25\xdb\x94\x94\x06\x94\x4a\x94\x68\xa6\xd2\x40\x5e\xa8\x9c\xa5\xb3\xd6\xcf\x3e\x6b\x7d\xd7\x7f\x9d\x5b\xfb\xb1\x9e\xef\x6b\xdf\xd9\xec\xeb\x73\x5d\x77\x76\x5b\xb5\x8c\xd5\x5e\x7e\x16\x7c\x14\x65\x7f\x5c\x72\xa5\x8d\x81\x53\x31\xbe\x0b\x84\x3c\x5b\x98\xb8\xba\xc6\xe1\xbc\xdd\x14\x23\x82\x3d\x6f\x79\x3b\xc7\xcb\x7a\x26\x78\x33\x72\xda\x3e\x5c\xd8\x4d\xc8\x11\x4a\x9e\x79\x62\x4c\x8e\x90\x36\x47\xec\xb0\x3e\xf7\x7d\x06\xf6\x9f\x66\xd4\xfb\xac\xea\x67\x81\xe5\x71\xe9\x96\x97\xd6\x7c\x84\xbe\xa1\xb9\x36\x6c\x9c\xa7\x09\x4e\x5e\xd5\xba\xf9\x1e\x7b\x08\x4f\xc4\x7a\x4b\xd2\xbf\x5b\x11\xf6\x46\x73\x07\x78\xf5\x0b\x13\xde\xc5\xdf\x7c\x64\x16\xdf\xc6\xc0\xe2\x1b\x96\xae\x2d\x49\x67\xab\xb1\x6b\x96\xf8\xb2\xce\x9a\x97\x8c\x49\xbc\x4c\x5d\x3a\xa8\xa2\x34\x85\x70\xfc\xec\xd4\x7a\xcb\x72\x0e\x42\x79\x06\x5f\xe9\x4b\xae\xd9\x2c\x50\x66\x5f\x2b\xaa\x3c\xed\x27\x03\xaf\xe4\xce\x18\x57\xaf\x9d\x4b\xe0\x75\x5a\xb3\xe3\x38\x67\x24\x13\x51\x8b\x3f\xb4\xbb\xef\x91\x25\xe8\x2d\x5f\xd4\x95\xee\x24\x4a\x98\xe7\xfb\xc0\x7b\x86\x90\x3a\x8d\x84\x1d\xeb\x12\xa9\xba\x51\x0d\x67\x95\x88\xc5\x71\x4b\x14\x69\x12\x8f\xb6\x6d\x38\x25\x5f\x75\x9e\x81\x66\xae\x77\x8c\x80\x12\x13\xc2\x86\x8e\x73\x5c\x45\x3b\x38\x09\x83\xdb\x78\x24\xda\xaf\xcc\x23\xc8\xd5\x38\x7f\xa8\x09\x5c\x4a\xb8\x74\xa3\x45\x30\x59\x79\x80\x01\xf1\xfa\x45\xf2\x75\x1c\x02\x84\xe8\xe7\x9c\xfa\x1b\xc5\xd4\x09\x7d\xf7\xc7\x1c\xdd\xb3\x88\xf0\xe9\xd4\xcd\xe5\x25\x1d\x3a\x84\x65\x96\xaa\x2b\x97\xea\x73\x10\xda\x42\x17\x5e\xdc\xd6\xb9\x98\xf0\xa3\x6d\x5f\x60\xf2\x47\x71\x82\x56\xb8\x3f\x83\xc4\x4f\x31\x71\x75\x6b\x4e\xf1\xdd\xaf\xa2\x84\xb7\x6f\xbf\x57\x15\xc6\xfe\x64\x40\x2f\x7f\x9a\xb6\xe8\x1b\x43\xfa\x0f\x98\x87\xcd\x7e\xaa\x1d\xf5\x92\x81\xfb\x57\x3c\x5a\x0d\xcb\x4e\x11\x9e\xa4\xe4\x6b\x58\xcf\x9b\x45\xf0\x9d\x33\x75\x44\xac\x6c\x29\x41\x6f\x83\x3a\xa7\xc8\xbd\x66\xc6\x64\x29\x29\xaa\x62\x38\x95\xb5\x32\xb0\xe6\x31\x97\x40\x72\xd1\x12\x82\xd0\xdd\x35\xc9\x1e\xdf\xeb\x08\xa2\x8c\x19\xa7\x5a\x6f\xd7\x10\xce\x7f\x54\xee\x55\x56\xac\x61\x19\x7d\x61\xaf\xad\x68\x9d\x73\x89\x10\xca\x9e\x3c\xfa\xf5\x57\x0c\xc1\xcc\xf6\xfe\xf1\xda\x2f\x31\x84\x10\x4e\xdd\xd0\x76\x0f\x05\x16\x1c\xe0\xa3\x27\x16\x81\xea\x04\x6e\x95\xe7\xa5\xab\xf4\x7c\x09\xad\x5c\xa9\x66\x8f\x07\x43\x08\x59\x56\x41\x82\xa9\x21\xcb\x09\xe7\x52\x1a\xdf\xaf\x0e\xcb\xa4\x91\xde\xce\x3f\xac\xaf\xe0\x8b\x10\x3c\x68\x69\xdf\x4a\x58\xb3\x59\xa2\xf1\x9e\x7e\x33\xa1\x7e\x81\xac\xea\x8b\xcb\xca\x84\xa4\x73\x65\xed\x6f\xb8\xae\x12\x9e\x2d\xe1\x3e\x1d\xf0\xb7\x81\x70\x9f\xf7\x58\xd6\xbf\x22\xd0\x5a\xf1\xc2\x4f\xde\x93\x05\xed\xde\x89\x9d\xdb\x02\xae\xb3\x94\xc3\x65\xe2\xbc\xdf\x6b\xbd\x09\x1d\x55\xce\xcc\xa2\x08\x5b\x82\x72\x4d\x5a\xb4\xc8\x29\x3d\x02\x09\x3f\xf0\x2c\xb0\x2b\x26\x88\x77\x90\xe5\xa9\x2f\xf3\x09\x41\xa3\xeb\x84\x5f\xdc\x54\x21\xf8\x1f\xd8\xa8\xbd\xed\x8d\x32\xe1\xc1\x46\x9f\x8e\x36\xce\xad\x2c\xf8\x66\xf6\x6b\xae\xcd\xb0\x01\xa1\xe8\x51\xec\xfe\x3d\x59\xc2\x84\xf5\x67\x42\xe7\x0b\x1b\x70\x12\x6a\xd4\x67\x8f\x15\x54\x88\xb1\x80\x4a\xf3\xd6\xee\x9c\xb8\x29\x3d\xef\x10\x18\x37\xbf\x1e\xc5\x84\x97\xe4\xdf\x6d\xf2\xeb\xce\x10\xb6\x95\x5d\x10\xdd\xe2\xa1\x4e\xd0\x8c\x56\xcf\x8e\xeb\xb9\x40\x30\x6e\xb4\x7f\xd1\x59\x6c\x47\xa8\xf4\xb8\x9f\xe9\x10\xaa\x4b\x88\xab\xff\xfa\xa3\xfc\xb2\x3c\x41\x67\xaa\xd2\xde\x43\x37\xfb\x19\xf8\x3b\x97\xf9\x55\xd9\xa5\x97\x81\xd9\x7f\xd9\x5b\x77\x3a\xf3\x13\x22\x7f\x8b\xea\x7f\xe2\xb1\x60\x81\x55\xcf\x7c\x97\x4d\xa7\xb4\x58\xd0\x79\x2c\x22\x8d\xf9\xf7\x32\xe1\x46\x6c\x89\x6a\x66\x7a\x39\xe1\xeb\x7b\x97\x1f\x0d\x09\x16\x04\x81\x33\x5e\x39\xfd\x19\x6e\x84\x57\x7e\x81\x2b\x93\x66\x1c\x26\xbc\x7e\xec\x76\x87\xbf\x4d\x96\xc0\xe9\x92\x94\x91\xe6\x6f\x49\x30\x96\xbb\x11\xd2\xc2\xb3\x94\x50\x64\x2c\xb8\x44\x34\x62\x0a\xe1\xda\x75\x81\x72\xef\x4f\x0e\x84\xd1\xe3\xfa\xfb\x1e\x1d\xe8\x63\x20\xf7\xbb\x5a\xc6\x1d\x79\x53\x82\x07\xf3\x86\xf4\x7c\xd1\xa3\x84\x71\x33\x2f\xa9\x5b\xb5\xab\x08\xfb\xc2\x2a\xb3\xc2\x4f\x68\x12\xaa\x07\xbb\xff\x98\x8b\xcf\x26\xd4\xcc\x76\xf8\xed\xbc\xbb\x9f\x81\x67\x17\xde\xd7\x78\xab\x27\x31\xc1\x28\xfc\x35\x1a\xf0\x33\x8e\xe0\xf0\x77\x86\xc9\xfa\x1c\x75\x42\x93\x9d\xc8\xc2\xd0\xa9\x41\x84\x23\xa6\x91\x3c\xd1\xb9\xb6\x84\xbb\x0c\x97\xef\xab\x7a\x8c\x09\x5a\x3f\x9c\x3e\xb7\xbf\xd2\x24\xfc\x98\x7b\x4b\x84\xbf\xf3\x30\x13\xd3\xb9\x3e\x58\x55\x91\x2b\xa1\xee\x89\x80\xcb\xf2\x03\xce\x84\x1f\x4b\xcc\x19\x2b\x6e\x28\x11\x9a\x3b\x2d\xd8\xbc\x3e\x3c\x23\x2c\x2d\x39\xe6\xb9\xa7\xe7\x19\xe1\xa3\xe9\xef\x9b\xef\x74\x6a\x08\xe1\xfb\x78\xd9\x07\x43\x7e\x33\xc0\xe9\x75\xa6\x26\x29\x25\x98\x26\x31\xef\xfe\x7d\xe5\x67\x67\x84\x09\x02\x22\xa3\x95\x4b\x3d\x3b\x09\xdc\xdd\xcf\xc5\xcb\x1d\xeb\x08\x55\x5c\x19\x3b\x8f\x34\x6f\x20\x84\x8b\xda\xac\xfa\xf3\xa4\x8e\xd0\x5f\x37\x5f\xf4\x5c\x6f\x3d\x41\xce\xfe\xed\xac\x99\x3a\xd5\x84\xeb\xc7\x2f\xb9\x9a\x16\xd5\x13\xe2\x2f\xf8\x9e\x7c\x71\x30\x97\x65\x8d\xdb\x32\x61\xdb\x5a\x4e\x26\x41\x3d\xd5\x43\xe0\x6f\x78\x35\x81\xd1\xe8\x50\x8f\x5f\xd5\x84\x38\x4e\xf1\x81\xa9\xae\xd5\x84\x13\x85\xca\x4f\xe4\x7f\x56\x13\x76\x19\x64\x94\x6f\x99\x27\x47\xd8\x98\xc6\x10\xe6\x6c\x51\x66\x41\xe1\x1e\x27\xfe\xe9\x67\xdb\xab\xa1\xb8\xbe\x70\xce\xb2\xfd\x3a\x84\xf8\xfb\xbe\x5b\xf7\xb1\x07\x12\xc4\x97\xe4\x4f\x99\xd6\xc2\x4b\xa8\x7c\x60\xa6\x7a\xcc\xc6\x92\x09\xc7\x85\xb5\x11\xcb\xf9\xbc\x09\x57\xd5\x12\x0a\xf5\x9a\xbe\x32\x70\xc1\x42\xe8\xf2\x86\x8f\x7f\x18\x68\xaf\x09\x77\xef\x55\x9d\x41\x68\xf3\x58\xa7\x24\xb5\xe0\x07\xe3\x3f\xf0\x33\xf6\xb7\xa5\x58\x77\x47\x35\xfc\x42\xdc\x38\x74\x3a\x78\x08\x97\xde\x5a\x9c\xe5\xbc\xe9\x4b\x10\x58\x9f\xba\xc4\x62\x5a\x18\x0b\xfe\x37\x2a\x19\x58\x38\xad\xc8\x86\x87\x90\xfa\x9e\xe7\xf4\x5b\x0e\x21\x96\x72\xb7\xa2\xc9\xec\xfc\xba\x3b\x0c\xd4\x73\x97\x47\xfc\xfd\xf2\x93\x81\xea\x53\x79\x87\xf8\x97\x8b\xd3\x24\x64\x46\x9e\x95\x1c\x8d\xbe\xcf\xc0\xf2\x27\xc6\x17\x14\xae\xa7\x10\xb4\xf7\x0b\xaf\x92\x9e\xb7\x85\x05\xeb\xc4\x77\xfb\x29\xae\xe0\x26\xac\xb9\x72\x2d\xf2\x94\xd8\x5a\x16\x08\x8e\x0e\x0b\xdf\x3c\xc5\x41\xd8\x39\x2a\x72\x9c\x93\x23\x89\x89\xe4\x02\x3d\x87\xfc\x23\x97\x08\x4e\x46\xb2\x2d\x0a\x82\xb5\x84\x84\xb4\xee\x63\x41\xfd\xf1\x84\x1b\xa7\x4e\xe7\x9d\x51\x0a\x21\xa8\x05\x1d\x75\xb6\x9d\xf1\x8c\x60\x2d\x3a\xfc\x67\x58\xe5\x26\x21\xcc\x29\xf3\x69\xe6\x83\x6f\x04\xde\x4b\x46\xaf\x73\xa6\xd9\x12\x8e\x7a\x3a\x56\xf6\x6c\x1a\x65\x40\xc2\xf0\xfe\xdf\x9d\x43\xbd\x2c\xd8\xd1\x73\x45\xb4\xba\x8e\x9d\xc0\xc3\xf1\xb8\xf2\x9d\x39\x3f\xa1\xad\x11\x17\x0c\x4c\x6c\x09\x03\x11\x1d\xfa\xe2\x4e\x26\x84\x5c\xad\xc8\xaa\x24\x4b\x39\x42\xa2\xb2\x9e\x59\x57\x8d\x28\xe1\xf7\x4c\x35\xcd\x6b\xfc\xc6\x84\xba\x9c\x85\x65\x1d\xfc\xd3\x09\x7f\xce\x96\x77\xa4\xbe\x55\x22\xcc\xdb\xbc\xde\x82\x4b\xc3\x8c\xe0\xfa\xf5\xb3\x49\x7c\xaa\x02\x61\x6a\x1e\x73\x59\xc8\x47\x1f\x82\xec\xb3\x1d\x16\xb5\xd7\x5c\x09\xc7\x02\x54\x67\xf1\xd4\xad\x21\xc4\xe4\xef\xad\x3e\x20\x1e\xcd\xc4\xf1\x33\xe2\x2a\xa9\xd3\x1e\x32\xf1\x77\xff\x40\xf3\x5d\xb7\x97\x04\x25\xc7\xbe\xbc\x7c\x99\x8f\x84\x44\xc9\x15\xcf\xdf\x06\xb5\x13\xcc\xf6\x87\xd6\xbd\x1e\xaf\x21\x28\x4f\x11\x5e\x3d\x98\x18\x46\x58\x6a\x39\x73\xf8\xf9\x83\x72\xc2\xd5\xe2\xc8\xab\xca\xfc\x67\x08\xf7\x79\x4c\xe2\x5d\x45\x4c\x08\xef\x4e\xb8\x7e\x33\x5d\xf7\x9a\x30\x27\xf5\x9e\xcd\x3f\x04\x89\x48\x0b\x8d\x4d\xbb\x49\x48\x49\xa1\x0a\xbb\xf7\xab\x09\xcd\xfb\x4f\x6c\xbe\x2a\x90\x40\xd8\xba\x49\x31\x76\xab\x6f\x1b\x21\xf6\xec\xa1\xce\x2d\xdf\x1a\x08\x8c\x67\xaa\xeb\x3c\x5e\xbb\x11\xbe\x7e\x55\x5c\x7c\x70\x5a\x0a\xe1\x5d\xcc\x80\x7d\xcb\xf7\x79\x84\xd0\xc5\xda\xee\xde\x7d\x51\x04\xf1\x65\x56\x66\xe6\x41\x86\x84\xbc\x15\x21\xb5\x0f\x5f\xbd\x67\x20\xeb\x76\x57\xe8\x96\x95\x73\x09\x89\x7c\x0e\xa1\xa1\x9b\x39\x59\x70\x3a\xd2\x2c\xb6\xa4\xff\x69\x35\xa2\x93\x83\xde\x2b\x17\xa6\x13\x3c\x37\xb3\x37\x68\xf6\x4d\x25\x6c\x5f\x35\xfa\xb8\x21\x45\x94\xb0\xce\xbc\xf0\xd9\xab\x94\x4e\x06\x04\x5e\x6b\xdd\x66\x4e\x6c\x83\x4b\x13\xc4\xb6\x07\xbc\x2a\x26\x38\x08\xb9\xc6\x24\x1d\x95\x25\x2c\xb8\x72\xf2\xe8\x82\x59\xdf\x18\x93\xf0\xd5\xe5\x7d\x31\x4d\x55\x8e\xe0\x27\xcd\x68\x1f\x9a\x38\x57\x37\x68\x5f\x8c\x8b\xb0\x9c\x49\x50\x9f\xf1\xee\xc2\x5d\xe7\x41\x06\x1a\xaf\xc6\xed\xee\x78\xdb\xc3\x82\xe6\x3b\xc7\x9f\x6a\xaf\xfb\xc2\xc0\x66\x85\x6f\x73\xf7\xcd\x9d\xcb\x84\x6e\xbf\x8e\xf5\x5c\x87\x08\xc2\xab\xf4\xca\x19\xe7\x97\x99\x12\x12\x92\x73\x35\x84\x46\xed\x08\x6e\xd9\x27\x8a\xf7\xad\x58\x42\x48\xfa\x90\x96\xd2\xb1\xe6\x20\xc1\xe5\xc1\x79\x95\x1d\x15\x96\x04\xad\xa7\xa1\x2f\xfc\x45\xe7\x13\x46\x98\xf7\xfc\xa7\x9d\x79\xc7\x80\xf4\x07\xa9\x0f\x4f\x0c\x45\x08\xdd\x14\x28\x92\xf5\x9d\x87\x90\xa0\xf6\x50\x63\x19\xf7\x12\x82\x88\x89\x43\xef\x13\xbd\x4f\x0c\x3c\xfa\x20\x38\xb5\x27\x6e\x2e\x4d\x22\xe1\xa3\xd1\x08\xb7\xb2\x00\x61\xe8\x95\xcd\x8e\xde\x05\x57\x98\x10\x3c\x6c\xf0\x7a\xae\xe4\x5d\xc2\xf4\x7b\xeb\xb9\xd8\x76\x28\x10\x54\x14\xf1\x7b\x45\xd0\x14\x82\xbe\x41\xe3\x2c\xd5\x85\x25\x8c\x49\x9c\xb5\x7e\x22\xa1\xc6\xc3\x4e\x68\x18\x92\xea\xd2\x31\xd5\x24\xb4\x78\x07\xef\xfd\xb8\x6a\x16\x61\x8e\xb2\xf6\x6f\xaf\xbb\x45\x84\x54\xc1\x9f\x57\x8a\xf5\x77\x11\x1e\xd5\x9e\x1c\x12\xdd\xe0\x4f\x78\xda\xf7\x47\x4e\x28\xc1\x8d\x90\x9a\x7b\xea\xe4\x13\x53\x23\x16\x28\xe4\x9d\x7f\x64\x9d\xf9\x8e\x01\x05\x9d\xbd\x7b\x6f\xd9\xac\x23\x2c\x20\xd3\x87\x4a\x3b\xa2\x98\x08\x9c\x57\x78\xcb\xf7\xa7\x19\x13\xe7\xf8\xee\x67\x1c\xe6\x32\x24\x70\x9e\xbf\x16\x14\x60\x9b\x44\xd0\xc9\xfc\x19\xeb\xa5\x70\x92\x89\xba\x23\xd9\xdd\x1b\x05\xed\x08\x82\x89\x21\x8a\xe2\x5c\x02\x04\xa9\xee\x5f\x01\xc9\x53\x37\x12\xc2\xcf\x6f\x4e\x9f\xa9\xe1\x4f\x30\xfc\x73\x29\xde\x77\xb1\x01\x61\xd1\xe1\xd5\x07\xed\xce\x7f\x61\xa0\xf1\x9b\x9f\xa4\xeb\x6b\x61\xc2\x8a\xc3\xf6\xb4\x6f\x83\x16\x41\xed\x69\xfc\xf4\x0b\xf7\x34\x18\x30\x22\xf7\x30\x89\xa9\x19\xf4\x1f\x58\x53\x75\x20\x7d\x4a\xb4\x0c\x0b\x6e\xfb\xdf\x7a\xb8\x41\xb0\x88\x30\x9a\x2c\x36\x2d\xe4\x47\x29\x03\x7f\x2e\xdb\xb9\x72\x4c\x9c\x3f\x13\x35\xb6\xc6\xed\xcd\x18\x60\x40\xd4\x2e\x27\x7f\xf1\xdb\xdf\x2c\x68\xbf\x62\xa9\x6f\x68\xf3\xa0\x1a\xf7\x25\xa6\xc5\xc7\xd6\x6c\x24\x3c\xdc\xb9\x6d\x85\xdf\x5d\x17\xc2\xa7\xd6\xc5\xef\x3c\x5c\xcc\x08\x03\x85\xa2\x67\x02\x64\x05\x09\x6a\x9b\xb7\x56\x2a\x08\x56\x12\x54\xa2\xdb\xfb\xc7\xa5\x8f\x32\x11\x55\x9a\x63\x18\xa8\xc6\x41\x38\x76\x9f\x3f\x63\x53\xb7\x24\xe1\x75\xc1\xe3\xd0\x11\x17\x36\x82\x19\xbb\x5f\xea\xd4\x5d\xdb\x09\x12\x21\x67\x37\xe8\x7e\x79\x42\x38\xb4\xd3\x21\x90\x8d\xed\x09\xe1\x69\x4e\xc1\xb8\x30\xe7\x63\x82\x3c\x53\xe9\x2c\xdb\x8a\x2a\xc2\xd5\x5d\xbf\x97\xf1\xf1\x3b\x10\xb4\x0e\xfb\x57\x8d\x8f\x81\x01\xc3\x37\x0d\x3c\x37\x54\x54\x09\x73\x3c\xde\xe4\x73\xf8\x4d\x67\xc1\x8e\xb9\x37\xee\x15\x5c\x78\x5e\x3d\xc2\xdb\x91\xb9\x74\x74\x05\x61\x05\xde\x4e\x1b\xe1\x4c\x27\x70\xad\x4d\x3e\xe3\xad\x96\x46\x70\x7f\x3d\xbf\x7a\x5f\x4c\x0e\xe1\xd1\xcb\x6c\x93\xde\x4d\xe5\x84\x63\x71\x8b\x3a\xe3\xae\x9c\x21\xac\x0c\x90\xe5\x38\xb5\xd9\x9c\xb0\x74\x4f\x5a\x6e\xe7\xe9\x2c\x82\xc3\xdb\xe6\x2b\x69\xa9\x25\x04\xed\xa7\x9f\xcd\x89\xb6\x13\x02\xd5\xa7\x7a\xb3\xef\x4e\x23\x9c\x96\x3e\xb5\x4f\x6c\xae\x3f\xc1\x67\x8f\xcd\xde\xf2\xb7\x97\x09\x6b\x17\x87\xab\x33\x0b\x96\x13\xde\x65\x44\x94\x46\xcd\x34\x21\xd8\xa9\x72\x3e\xd0\xfe\x39\x93\xd0\xf9\xe1\x5a\x7a\x59\xe6\x14\x82\x5a\xc0\xcf\xef\x61\x59\xe9\x04\x7b\x29\xe9\x67\x37\xce\xa7\x13\x18\xee\x3b\xb4\xd6\x0e\x44\x33\xb1\xc3\x4b\xe4\xfb\x94\x5d\x5b\x08\xb7\x3e\x8c\xeb\xb2\x3f\x25\x82\xa6\xe4\xe9\x73\x21\xd2\xb1\x04\xbb\x1d\x9f\x63\x1e\xb5\x6f\x23\xac\x5a\xd4\x5b\xf7\xec\x48\xed\xff\x09\x8e\x87\xc1\x9f\xe5\x2c\x23\x09\x7c\xe1\xed\xcf\xf3\xfa\x8e\x11\x34\x77\x5b\x36\xb3\x77\x1e\x63\x29\x0e\xed\x79\xb7\xfc\x5a\x58\x4b\xcb\x3b\x73\xc5\xaf\x5e\x57\x09\xeb\x7e\xfc\x08\xb0\x92\xba\x4a\xc8\xdd\xeb\xc7\xdf\xbd\xe9\x1c\xe1\xd0\x87\xba\xfa\xa0\xf2\x6c\x82\xde\x5b\xb5\x66\x6b\xe9\xab\x84\x95\x83\x61\x25\x47\x1e\xa5\x12\x8e\x96\xf8\x4a\xc6\xd4\x97\x12\x06\x96\x7f\x2e\xb9\xc1\x53\x4a\x90\xbd\xfb\x66\xb3\xe8\xa2\x1a\x82\xf4\xd5\x3f\x16\xef\xc5\x4a\x09\x12\x91\x66\xce\x4c\xa7\x4b\x84\xd2\x3e\xa5\x75\xc1\xdc\x07\x08\x2e\xf1\xcb\x6e\x66\x7e\xb1\x25\xa8\xdd\xfd\xe9\xfd\xcb\x27\x8d\x20\x13\xca\x76\xca\xea\x41\x35\xa1\xad\x6b\xe5\xed\x0c\x1d\x57\x82\xfb\xda\xa2\x96\xdf\x61\x6d\xd5\x98\x2d\x52\xe5\xa4\xe2\x68\x43\x93\xd8\xdb\x9c\x97\xd8\xa6\xdc\x5d\x8d\x1d\x61\x49\x35\x77\x54\x2e\x10\x02\xdf\xce\xff\x72\x2c\xcd\x8d\x70\xee\x1e\xc3\x45\xc3\xcf\x96\x60\x79\xad\xde\x24\xf3\xbe\x10\x61\x5a\xde\xc7\x5d\xd2\x3d\x0d\x04\x79\x01\x49\xbb\xd8\x78\x27\xc2\x7c\xde\xd9\xc7\xe2\xe6\x68\x13\x96\x6d\x69\x3e\xe1\xe8\xc4\x45\x08\x1f\x5f\xff\xcb\xf4\xd9\x69\x16\x1c\xa9\xee\x67\x9b\xd7\x72\x8f\x09\xc5\xa6\x3b\x31\x77\x35\xcb\x08\x5f\x0f\x54\xee\x77\x79\xec\xc5\xc4\x89\x1f\x53\xfd\x7c\xa5\xc4\x08\xcb\xdb\xfa\x8e\xf8\xda\x2b\x12\x6c\xc4\x15\x9a\xf7\xbe\xe6\x22\x48\x4d\x6f\xb9\x2b\x1d\xf8\x8e\x01\x3b\xb7\xe7\xf6\xab\x9f\x36\x10\xb2\xe6\x2e\x5c\xed\xac\x9f\x43\x58\x33\xb0\x9f\xa7\xf9\x7e\x2d\x61\xfc\x5a\x87\xda\xe8\xd3\x5a\xc2\xbe\x47\x8e\x27\xe3\xef\x76\x33\xf1\x73\x6f\x81\xd0\xd8\x44\x51\xe9\x3f\xf4\xee\xdf\x48\xec\x02\xcf\x76\x14\x26\x10\xb4\xf6\x28\xaf\x1f\x8d\x4b\x20\xfc\x4d\x3d\x1c\xb1\xbb\x64\x3f\xe1\xa5\x77\x16\xe3\xe6\x8a\x04\x82\x0c\x9f\xf2\xd4\xb9\x21\x9b\x08\xaa\xd7\xd3\xc2\x2d\x1f\x1c\x26\xa4\xe6\x3b\x40\x6a\x60\x16\xa1\x48\x33\xe9\xea\x5c\x0b\x09\x82\xaf\xa4\xb9\xb7\x89\x5d\x37\x63\x12\x43\xd6\xc3\x47\xc4\xbd\x37\x12\x38\xed\x86\xf6\x2c\xeb\xf8\xcb\x40\xc8\xa1\x2f\x46\x4a\x76\xea\x04\x69\x97\xe8\x8a\xd5\xfe\xbc\x84\xb0\x62\xae\x0b\x23\xb7\x6a\x98\x70\x8f\x31\x38\x91\xb6\x35\x9d\x20\xcf\x1f\xa9\x1d\xc1\x28\x25\x24\xa6\x67\xff\xd4\xa3\x52\xc2\x68\xdf\xad\x19\xfa\xff\x1f\x88\x5f\xad\x09\x8f\x9c\xe3\x4b\x88\x9e\xc3\x28\x0f\x39\xb4\xf3\xbf\x0a\xcf\x52\x3d\xf6\xb9\xa5\x91\x84\x24\xa9\xd0\x2a\x8b\x63\x91\x04\xfb\xe6\x5d\xf6\x83\xc5\x91\x2c\x23\xe5\xcc\xd9\x86\x01\x07\x74\x09\x26\xd2\xb9\x34\xc6\xd8\x46\x70\xee\x38\x3d\x70\x5f\x40\x9e\x60\x56\x56\x15\xf4\xac\xc4\x98\xe0\xc3\x36\xed\xc5\x91\xa9\x5a\x84\xde\xa4\x29\x2f\xdd\xba\xda\x18\x10\x58\xfa\x85\xbd\x7e\x55\x06\x61\xf7\xa5\x95\x9f\x35\x96\x6a\x10\x3e\x6f\xfa\xfb\xd8\x49\x65\x84\x01\xbf\xda\x8d\x9b\x3d\x92\x53\x08\x97\x3a\xbd\xd6\xc5\x1a\xb5\x30\xa0\x7b\xb2\x2b\x5f\xdf\x22\x99\x70\xb3\x32\x73\x3c\x60\xc4\x91\x10\xcb\x57\x0d\xab\x6b\x65\x84\x47\xd7\x23\xc5\xe2\x4f\x9a\x11\xda\x36\x2a\x28\x2a\x86\x89\x12\x94\xe5\x76\xbd\x98\x57\x3c\x9d\xf0\xe0\x88\xaa\x2b\xb7\xc6\x49\x26\xa2\x06\xe6\xca\x6c\x4d\xf7\x23\x28\x3b\x7b\xfc\x11\x8d\x53\x26\xd8\x2d\x2e\xce\x17\x93\x97\x24\xf0\xf9\x5b\xf3\x39\x3f\x36\x25\x4c\xb9\x65\xf2\x26\x60\xf7\xb3\x6a\xf4\xea\xe4\x55\x9e\xa9\xd5\xa0\x49\x0c\x96\xbc\xdc\x19\x28\xa2\x41\x10\xcd\x27\xf3\xdf\xdd\xc5\x04\x83\x34\xa5\xe1\x81\xbf\x25\x84\xad\x8b\x3c\x5c\xaa\xd3\xed\x09\x55\x33\x1a\x86\x3d\xab\xa6\x13\x16\x8a\xcc\x5c\x36\xb0\x98\x8b\x05\x3c\x4b\xbd\x8e\xe6\xc7\x58\x12\xe6\xb5\xd9\x72\x7d\xdb\xfc\xbe\x1a\x5f\x4e\xd9\x9e\x59\xa9\xa4\x45\x93\x88\xfa\xfb\xb7\xbc\xf6\x3e\x1f\xa1\x7e\x95\xb7\x39\xa7\x50\x21\xe1\x24\xcf\xac\x5b\xa7\xb3\x2b\x08\xa9\x31\x8a\xd6\xca\x65\x39\x84\x4f\xf7\x2f\x69\x6b\x99\x35\x12\x7e\x5f\xd8\xd4\xa5\x31\x81\x19\x47\xa6\x79\x06\x76\xde\x22\xf0\x5b\x33\xdd\xf6\x2d\xbb\x45\xc8\xb2\x71\x34\xdb\xe8\xbd\x85\x70\xa1\x78\x2c\x4d\x00\xd7\x27\x9e\x90\x16\xa2\xa1\x4b\x1f\x13\x7a\x57\xf5\xc6\xe7\x0c\xc9\x12\x84\x13\x7e\x36\xd4\x6e\x96\x22\x4c\x6f\x12\x13\x79\xe7\x2a\x4f\xd8\x15\x97\xf2\xfb\x7e\x93\x18\x61\x96\x74\x0f\x87\xef\xdd\x4c\xc2\x2f\x1f\x2f\x1b\xaf\xf4\x42\x16\xc4\xd5\x0a\x3f\x7d\xc1\xab\x44\x38\xf0\x20\xb8\xc5\x31\x28\x94\x10\x57\x2c\x37\xba\x27\xe0\x0e\xe1\x26\xff\xdb\x59\x8d\x37\xaf\x33\x11\x78\xdd\xdb\xf9\xe0\xb9\x16\x82\xcc\x9b\xab\x5f\x33\xd6\xb5\x13\xb8\x0e\x9f\x94\xbb\xca\x5e\x4c\x18\x4c\xec\x7a\xda\x2e\xb4\x99\x50\xff\x66\xa1\x57\xcc\xcc\x0e\x42\xcc\x50\xc2\x1a\x0e\xfe\x1a\x42\xf1\xc2\x21\x6b\x65\xf6\x1a\x82\x5d\xe4\xcd\x88\x7f\x65\x65\xfa\x89\x6e\xb3\x0b\x57\x09\x73\xb7\x77\x84\x4d\x59\x9a\x4d\xe0\xdd\xb3\xc6\xf3\xa8\xf1\x21\xc2\xed\xa4\xe2\x83\x12\xc2\x87\x26\x36\x87\x9c\x60\xe7\xfa\x3c\x82\x41\xd1\x27\xa7\xea\x7b\x87\x08\x43\x07\xdc\x5e\xf1\xf2\xe5\xd0\x48\x3b\x37\xef\x82\x59\x39\x84\x6a\xf1\x1d\x7f\x7c\x5e\x67\x13\xbc\x2b\x8a\xaf\xa9\x4d\x94\xff\xc1\x9d\x97\x7b\xa1\xab\xab\x13\x13\x46\xa3\x41\x26\xf3\xd7\x78\x10\x4e\x7e\x68\x4f\x3e\xe2\x2f\xcb\x84\x9f\x55\xff\x6c\xee\xb4\xcd\x04\x55\x7b\xf7\xba\xa8\xc7\x2a\x34\xb9\x66\xce\xf0\xa9\x33\x7f\x78\x03\x09\xa1\x9d\x4f\xcd\xcf\xc4\x5b\x13\xe6\x2f\x7e\xb6\x3a\xcc\x7c\x31\x41\x66\x19\xff\xeb\x00\x8f\x19\x84\x8b\xcf\x7f\x3f\x17\x95\x0a\x61\x42\xf1\x59\x31\x43\xa5\x32\x9d\x89\xab\x82\x53\x0b\xfe\xfd\xc6\xbb\xc7\xa7\x79\xf1\xab\x1d\xd3\x08\xfc\x4e\xe2\xb7\xff\x15\x79\xad\xe8\x68\x89\xed\x8d\x4c\x3c\xbe\x71\x21\x36\x6b\xb7\x26\x81\xe7\xe6\x6d\x55\x69\x9f\x71\x06\x1c\x79\x44\x39\xad\xb7\xab\x10\x9e\x8c\x24\xad\x63\xdb\xc6\x4e\x50\x9c\xd3\xb5\xa1\x2c\x78\x0d\x61\xc1\x54\x93\xd4\x8f\xdb\xac\x09\x07\xff\x88\xbc\xf8\x92\xb6\x93\x05\x61\x05\x43\x73\x1e\x35\x2a\x12\xda\x02\x5e\xa9\xef\x97\x65\x12\x52\xd5\x07\x14\x9b\x54\x8d\x09\xab\x5d\xa5\x05\xe7\xea\x56\x10\x9a\xf4\xac\x96\x7f\xdf\x6d\x46\xe8\x8f\x19\x2a\x6d\x0e\x0f\x60\xc1\xed\xfb\x5c\x35\xf9\xfc\xa2\x84\x2f\x57\x32\x56\x71\x83\x9d\xd0\x93\x29\x70\xf0\x7a\xb4\x33\xc1\xe5\x5c\x18\x6f\x50\xae\x07\x61\x49\x70\xda\x34\xe5\x85\x60\xa0\xe8\xf9\x95\x81\x7b\x92\xf2\x84\xc7\x4f\xcd\x2c\x7f\x1d\x1d\x66\x60\x4e\xc1\x65\x49\x9e\x05\x5a\x34\x89\xdf\x1e\xaa\xa1\xb7\x4b\xbe\x30\x90\xbe\x6b\x95\x10\xdb\x15\x69\x82\xf2\xb6\x93\x02\x3e\xce\xd6\x84\x8f\xe9\x9d\x31\x98\x3e\x93\x20\xd8\x6d\x70\x77\xef\x35\x55\xc2\xc7\x2a\xd7\x3d\xfd\xc7\xf6\x12\x46\x63\x0d\x3a\xf3\xcf\x9b\x12\x94\x5d\xbe\x1e\x59\xb7\xf8\x18\xa1\x38\xe1\x9c\xfa\x76\x04\x13\x56\xce\xd2\x93\xe5\x99\x53\x4b\x58\x3f\x4b\x78\xa4\x43\xdc\x84\xb0\xa8\x6e\xa3\x90\xea\xd3\x75\x84\xe5\xe1\x35\x8f\xe2\x85\x4f\x11\x8c\x2c\x56\x44\xfb\x6e\xdd\x42\x60\x18\xcd\x1b\x0d\x3c\x65\x49\xf0\xbe\x51\x6f\xf9\x67\x79\x20\x41\x25\xf5\xe1\x80\xa7\xeb\x1a\x82\xee\x4e\x0b\x85\x99\xe1\x1b\x09\x9f\x37\xce\xff\x3a\x4d\xdd\x86\xb0\xe6\x82\x7c\xaa\x60\xf3\x62\xc2\x1a\xed\x69\x5c\xb7\x2a\x2b\x08\xc7\x3d\xec\xbb\x0d\x47\x22\x09\x79\x17\x07\xda\x14\xb6\x35\x10\x98\xa1\xf2\x14\x31\x81\x81\xd5\xee\x91\xff\x50\xf1\x7c\xd6\x99\x31\x89\x00\x82\xa4\x7c\xe6\xa0\x5a\x48\x00\x4b\x69\x9e\x72\x60\x73\x5f\xf3\x46\x42\xef\x0c\xa5\xc0\xdc\x85\x51\x84\x47\xf2\xbb\xd9\xfe\x6a\xbb\x13\x2e\x89\x18\xdf\x99\x12\x31\x8b\xb0\xf9\x50\xf7\x54\x49\x47\x37\xc2\x65\x5b\xa3\x97\x6b\x2e\x94\x10\xbc\xe3\x12\xc3\xaa\xf7\xdd\x20\xdc\x56\xba\x7c\xa2\x05\x37\x09\xb6\x6f\xe2\x9a\x8a\xfd\xa5\x09\x9c\xcb\x6d\x8a\x64\xdd\x92\x08\xdb\x8f\x79\x34\xfd\x83\xdd\x8a\xab\x35\x49\x3e\xaf\x19\xa8\x78\x24\xfe\x75\x81\xcb\x59\xc2\xb3\xf9\x2b\xfa\xf4\x8f\x4e\x7c\x2c\x5f\x78\x67\xab\x88\xc8\x11\x12\xbe\x3a\x25\xaf\x52\xfd\xcb\x80\xdb\xca\x07\xc5\x9f\x1c\x24\x09\xe1\x4f\x4f\xaf\xe4\x3d\xb7\x81\xb0\xfa\x8b\x48\xf4\xbd\x0e\x53\x42\xd7\x12\xf5\x17\xd3\xc6\x4d\x09\x95\x67\x04\x7e\x75\x56\xa9\x10\x86\x33\xaa\x3f\xe4\x2e\x1c\x61\xc0\xe7\xc2\xee\x8b\xb6\x1b\x44\x09\x17\x5f\x28\xcd\xb8\xd0\x78\x99\x70\x6c\xe7\xac\xfc\xd3\x65\x57\x09\x2e\xde\x7a\x0e\x66\x6b\x2d\x08\x95\x37\xc4\x45\x32\xb7\x8d\x33\x90\x72\xf5\x43\x65\x8e\xbe\x28\x41\x29\xa1\x26\xe2\xd3\x06\x21\xc2\x6b\xf7\x9c\x6e\x7f\xf1\x89\x03\x71\xa0\x51\x6e\x40\xd7\x39\xc2\xb0\xa1\x58\xe5\xe5\xb9\xe9\x84\xd2\x53\xe1\x87\x3a\x9e\x94\x13\xf6\x98\x2e\xb9\xea\x2d\xdf\xc3\x80\xea\xa5\x54\xe5\xcd\x1b\x25\x09\xf6\x3d\xe3\x57\xd8\x8e\xcf\x27\xc4\x17\xca\x79\x0f\x6f\x2e\x27\xdc\xd5\xde\x2a\xda\xf7\xb2\x90\x90\xbf\x55\xa2\x60\xe6\xde\xe9\x04\x9b\x5d\x91\x73\xac\xbb\x75\x08\x79\x75\xf6\x97\x37\x96\xb6\x31\x11\x57\x17\x2f\x28\x10\x3f\x8f\xb0\x70\x13\x7a\xd2\x84\x93\x08\xbd\xf7\x94\x8b\x82\x26\x60\xe0\xf1\xc0\x65\xbf\xfa\x0e\x82\x2c\x07\xc7\x85\xcd\xfa\xb1\x4c\x4c\x29\xd8\x38\xeb\xe2\x8b\x1d\x84\xbb\x86\xe9\x2e\x76\xcb\x3c\x08\xa7\x84\xc2\xcf\x6a\x1c\x15\x25\xbc\x8f\x79\x72\x65\x41\xb2\x1e\x81\xef\x19\x97\x9e\x66\x68\x1d\x61\x57\x41\xb0\xb5\x89\x4f\x19\xe1\xc8\xa2\x7c\xa9\xce\xc2\x38\x82\x80\x72\xe7\x86\xc6\xa6\x41\x06\x16\xb8\x17\x97\x2c\x17\x36\x27\x7c\x56\x8f\x13\xc9\xde\x33\xc6\x40\xfa\x25\xbf\x6f\x6f\x9e\xa5\xd2\x24\xd0\xc4\xb7\xeb\xca\xfb\x1f\x0c\x5c\x77\x0f\x31\x3b\xc6\x33\x8f\x30\xff\x75\x7d\x7e\xe1\xe3\x52\xc2\xe6\xe9\xb9\xdd\xa1\xb9\xd7\x09\xae\x97\x86\x0c\xf4\x3a\x17\x11\xd4\x66\x4b\x35\x7e\x7d\x67\x41\x88\xc9\xfa\x13\xd0\xca\xbe\x98\x70\xf5\xa1\xdd\xa5\x32\x95\x5a\xc2\xcd\xd2\xa4\x7a\xcd\xfc\x12\xc2\x78\x08\x47\x56\xe4\xd5\x12\x82\xd6\xcd\x9d\xbb\x7e\x28\xb6\x12\x4e\x9f\x59\x3f\x35\x6a\xa2\x8c\x2f\x15\x35\xee\x31\x28\x27\xf4\x0e\xbc\x98\x92\x22\x16\x4c\x90\xd1\xef\xff\xea\x7f\xe2\x00\xc1\x4e\xb9\xa1\xdf\xe0\x7c\x30\x21\x52\xeb\xc5\x30\xf7\x8f\x5d\x2c\x23\x03\xf3\xe8\x64\x19\xa7\x14\xc2\x1a\xd1\xe3\x07\xeb\x3e\x2e\x21\xcc\xfe\xe8\xbf\x6a\xdc\xed\x17\x03\x3a\x97\xf4\x3e\x59\x2e\x0a\x65\x42\x3f\x66\x9d\xad\x0a\xb2\x08\x9b\xd4\xd9\xaa\x87\xbd\xef\x32\xb1\x3e\x4f\xbf\x47\x46\x21\x9b\xd0\x17\x65\x7d\xf3\xcc\x7d\x4e\xc2\x11\xfd\xb6\xfd\xc3\x3a\x7a\x84\x22\x2b\x7d\xf2\xaa\xbf\x46\x58\x7b\x7c\xb8\x34\x8b\x7d\x23\xc1\xec\xfb\xb9\x65\x9c\x4b\x8e\x13\x16\x8c\x5d\x7d\xdb\xb3\xfb\x03\x03\x79\xe5\xfd\x6b\x5e\x07\x6b\xd2\x7f\x60\xfa\xdc\x6c\xcd\x03\xb7\x4e\x11\x5a\x82\xe7\x99\xc8\xc8\xe8\xd0\x08\xff\x9c\xa2\x97\x92\x9e\xff\x7b\xc5\x99\xf5\x5a\x89\xd1\xfe\x53\x09\x09\x86\x2d\x2b\xde\x7c\xce\x22\x54\x3a\x7c\x3f\x6f\x5d\xdc\x44\x18\x7d\xb4\xdd\x9d\xc3\xb5\x8a\x70\x47\xc8\x55\xa5\x72\xe2\xba\x99\xa4\xd2\x71\x76\xd6\x0b\x6e\x16\xa8\x71\x8b\x09\x5a\xff\x4c\x67\xc1\xf6\x14\xb3\x23\xf9\x2b\x3d\x09\x47\x82\x9d\xf6\xe9\x6c\x9d\x41\xb8\xf0\x44\xc9\xcb\xe6\x42\x01\x41\x21\xea\xd9\x72\x8d\x27\xa9\x04\xc9\xc8\xb1\x9f\x9a\xd3\x44\x09\x12\x5d\xc5\xa5\xdd\x43\x69\x84\xce\x53\xf5\xb6\x21\x5f\x6a\x09\xc9\xd3\xc2\x6d\x6b\xb7\x6e\x22\x78\x98\xc8\x96\xf3\xdb\x6c\x21\x30\x39\x79\x56\xce\xbe\x57\x47\x88\x2e\x95\x51\x9d\x97\x71\x90\xc0\x95\x6d\xa7\x55\xf5\xf9\x0c\x4b\x91\xfd\xa3\xcf\x34\x7f\x7b\x80\x10\xbe\x41\x6c\x66\xdf\x58\x28\xa1\x20\xb2\x6d\xf6\xa3\x94\x9d\x4c\xd0\xda\x7d\xbd\x9e\x2f\x42\x59\x46\xde\xc9\x4a\x0f\xb9\x36\x5b\x13\x12\x3a\xd8\x55\x0d\xde\xd6\x10\xf4\x37\xa4\xb7\x1d\x37\xb1\x27\x5c\x4d\xf1\x4a\xbc\xca\x58\x43\x18\x1d\xd1\x1d\x8a\x29\xf4\x23\x18\x1e\x7c\xe7\x9d\xf2\x6e\x8c\x01\xed\x9f\xc7\x3c\x0c\xe4\x9c\x08\xe6\xc3\xcb\x33\x33\xb4\x93\x08\x49\x0b\x89\x21\x1e\x28\x4a\x38\x79\x3d\x7f\xf0\x6c\x52\x1f\xc1\xdb\x6e\xfc\xd5\x92\xcc\x06\xc2\x29\x01\xf7\x79\x2f\xf2\x26\x76\xba\x5d\xa3\x09\xc6\xd1\x0d\x04\x8e\xfa\x21\xdc\x7f\x7b\x83\x90\xb3\xbd\xfe\xf5\xbd\xcb\x55\x4c\x9c\x4f\xb5\x63\x2b\xd8\x78\x92\x89\xf4\x2d\xdf\xf6\x0c\xda\xed\x24\xb8\x8a\xd5\xe5\x7a\x7f\xb2\x24\xb4\x4a\x7c\xfe\xf5\x40\xce\x83\x89\x04\x6b\x9a\x72\xfb\xeb\x62\x42\xce\x9e\xf6\x6c\xe1\x18\x47\xc2\xcf\x2c\x91\x87\xee\x0e\x75\x84\x3b\x17\x5e\xb4\xf1\x6c\x60\xc5\xd4\xea\x13\x97\xa5\x5f\x3e\x26\xa8\x6d\xfd\xc1\x69\x1b\xd0\x4a\x98\x6b\xe1\xe4\xc2\x3b\x31\x0a\xbf\xe2\x5d\x9e\xbe\x22\x84\x90\xe4\x66\xf7\xbc\x71\xa3\x2f\x41\x7d\xeb\x32\x83\x57\x67\xc2\x09\xcb\xa4\xca\x97\x55\xcf\xcc\x64\x4e\x16\xf7\x30\xed\x63\x9f\xe7\x64\x12\x72\xef\xf8\x32\x96\xea\x8c\x32\x90\x17\x57\x2b\x15\x23\x33\x9d\xe0\xba\x41\x61\xef\x06\x37\x0d\x9a\x2c\xff\x83\x75\x6a\xf3\xbe\xcf\xa7\x66\x10\xf6\x5c\xd8\xe2\x13\xb9\xe4\x0b\x03\xab\xc5\x4b\xdc\xdb\x8a\xed\x09\x3b\xbe\x38\x18\xd7\x58\xa6\x11\x22\x6f\xc5\xe5\xab\x3e\x88\x26\xb0\x37\xdd\x9d\xbd\xee\xe6\x09\x26\x44\xe7\xf4\x06\xef\x3c\xfd\x8e\xe0\x93\xf8\x6e\x81\xbb\xce\x5b\x42\x6f\xfc\xae\xeb\x0b\xa5\x5b\x08\xae\x73\xab\x6f\x0d\x59\x64\x30\x31\xe6\xb6\xc5\xab\xc1\x60\x2d\xe1\xf8\x78\x5c\x2d\xff\x2d\x26\xe1\x91\xbe\xc1\xef\xbd\xf7\xf5\x99\x88\x6f\x13\xe4\x60\x3e\x6e\x64\xc2\xd3\x6b\xc7\x41\xad\x03\xcf\x99\x68\x5d\x79\x3b\xe9\xa2\xd4\x35\x42\xa4\xee\x55\xb5\xef\xab\xa2\x09\xe7\xda\x4f\x2f\x4a\xea\x3f\x45\xc8\xd4\xcd\xbc\x25\x18\xdf\xcc\x44\x69\x0d\xe3\xb1\x6a\xb7\x31\x13\x7e\x79\x45\x47\x5a\xae\x06\x13\x4e\xaa\x5d\x1a\xf9\xed\x51\x42\xe0\xda\xb2\x51\xb9\x4c\x68\x98\x01\x8e\x4b\x61\xfe\x35\x5d\x21\x34\x09\xd3\xcd\x77\xc3\x4e\xf8\x1a\x12\x3a\x72\x39\x0c\x34\xf3\x34\x09\x19\xcf\x03\x04\x4d\x02\xf9\x09\x1f\xcf\xdd\x8c\x28\x12\x52\x23\x0c\xcf\x12\x69\x4a\x37\x2e\x24\xc4\x9f\x8d\xb8\xdc\xd6\xdc\x43\x98\x16\xbc\xb5\x42\xaf\xfa\x0c\x21\xf6\xe2\xdc\xec\x17\xda\x2a\x84\xdc\x84\x77\x6e\x17\x3a\x4b\x09\xaf\xd9\x6f\x6a\xfd\x43\x84\xbd\x7e\xf6\xf9\x09\x04\x8a\x04\xcd\x6d\xf7\x11\x25\x04\x1f\x14\x4d\xdb\x66\xea\x41\x28\x5c\x5b\x11\x7a\x2f\xa6\x84\xe0\xd7\xaf\x73\xe3\x13\x77\x31\xe1\xc6\x12\x39\xd7\x9e\x38\x37\xc2\xfd\x0b\x15\xf1\x6c\x96\x8a\x04\x8b\xbf\xdc\x5f\x8f\x1c\x76\x20\x78\x16\x05\xfd\x54\xf2\x33\x27\xa4\x1c\x9a\x99\x2d\x3d\xb1\xc1\xd1\x8f\xfd\xba\xee\x6a\x3b\x09\x5a\xe3\x92\x22\xd3\x3a\x34\x08\x9e\x38\x5c\x14\x3e\x4d\x83\x10\x6c\xe7\x51\xb3\xc0\xcf\x99\x70\xdd\x30\xef\x90\xf7\xf4\x95\x84\xe4\xbc\xf4\xf7\xdf\xa5\x65\x09\x9f\x16\x1e\xb1\x3c\xb0\x5f\x8c\x50\x50\x23\xa9\x9a\xd0\x5f\x46\xb8\x3a\x26\x21\xde\x95\xb4\x97\xb0\xaa\xdb\xa9\x43\xe8\x9a\x06\xe1\x0d\x8f\xef\xcb\x0c\x76\x7b\xc2\xb5\x8b\x3e\x45\xb9\xfb\xe4\x08\x4f\xd6\x6f\xa9\x4c\xe1\x17\x26\x7c\xef\x66\x2b\x17\x5d\xa4\x4c\xb8\xbc\x24\xee\x48\xaf\xc3\x1d\xc2\x5b\x33\x03\xcb\xdf\xea\x4d\x84\x8b\x46\x2e\x2f\x7d\x63\x86\x19\x70\x3f\xca\x55\x64\x73\x5c\x90\x60\x36\x3b\x42\xc9\xd1\x96\x8b\xd0\xec\x22\x6c\xcc\x1f\x26\x40\xd8\x62\xcf\x33\x3b\xf5\x51\x2b\x03\xce\x73\xce\x04\x3d\x5a\xb4\x8c\xf0\x90\xd7\x54\xad\xe9\xb2\x01\xa1\x41\x8a\xe7\x99\x73\x54\x21\xe1\x8e\xc9\xde\x70\x5d\xe7\x22\x26\xa6\x5a\xb8\xff\x72\x3e\x7a\x98\x30\x67\x28\x48\xe2\xf0\xde\xc3\x84\xa2\x25\xc3\x87\x23\x0e\x1d\x23\x0c\xa6\x8f\xd5\x67\x6c\x6b\xaa\xc6\x5f\x35\xfb\xe7\xeb\xc5\x8f\xd1\x24\x66\x0d\xbf\xe4\x4f\x90\x8b\x23\x9c\xba\xb2\x6c\xe3\xae\x40\x26\xe1\xa1\xda\x8d\xbb\x82\xc7\xce\x11\x8e\xa4\x46\x5f\x1a\x9e\x52\x4b\x98\xad\xbe\xb0\x9b\xf9\xa7\x86\x30\x7d\x68\xfd\xc8\x34\xd3\x9b\x4c\x64\xd7\x8a\x05\x7f\x72\x2a\x24\xc8\xaf\x0b\x88\xf9\xb7\xc6\xf4\xe2\xb6\xf3\xb7\x97\x85\x13\xc4\x93\xad\x66\x0d\x3e\xf0\x67\xe2\x12\x9f\xf6\x19\x03\xad\x70\x82\xc3\xc3\x2d\x26\x3f\xbb\xc3\x58\xd6\x24\x5c\xfb\x72\x5d\xcb\x34\x9f\x30\xf3\xce\xeb\x61\xc7\xac\x21\x06\xd6\xfd\xcc\x4c\xd8\x95\x3d\xc2\x82\x8c\xd4\xc4\xbe\xbe\xbf\xed\xd5\x70\x3c\x74\x30\x33\xf5\xb1\x01\x4d\xc2\xf5\x74\xa7\x75\x7f\x4f\x30\x0b\xb4\xc5\xcd\xee\x1b\x47\xb8\x12\x2e\xd6\xff\xbe\xa0\x64\x18\x4f\x58\x5b\x65\xdb\xd2\xf8\x4c\x97\x30\x4f\xea\x87\xc3\xda\x5f\xe6\x84\x2e\xee\xaa\xd8\x27\x4f\xda\x08\xbb\xa3\x3e\x70\x0a\xf4\xdf\x26\x58\xdd\xba\xbe\xe0\xc7\x9b\xf5\x04\x97\x77\xde\x0f\xef\x4c\xec\x75\xfd\x1a\xef\x63\xe3\x43\x0c\x59\xa0\x67\xbd\x8c\x4c\x9e\xf4\x10\xae\x87\x08\x5a\x5b\x96\xd4\x13\x4a\x0a\x35\x74\x12\xcb\xea\x09\x61\xbe\xcb\xbf\x4f\xfb\x9c\xc7\xc4\x21\x89\xd2\x7b\x3c\xc9\x3d\x84\x05\x33\xc7\xbb\x1c\x4d\x3b\x09\xf7\x24\x25\x2d\x92\x27\xd6\x3c\x9b\x9d\xb3\xf4\xde\xe2\x50\x16\xac\x3f\xa0\x5a\xf4\x47\x3d\x94\xd0\x26\xa1\x70\xe7\xfc\xee\x42\xc2\xba\x4f\x63\x2e\xef\x03\x0b\x09\x9b\xb4\xfc\xcb\x95\xed\xf7\x12\x54\xd7\xd4\x04\xf2\x08\x05\xb0\x94\xcf\x5b\x92\x37\xfa\x0d\x9f\x22\xac\xbe\x7f\x46\xd8\xfe\x44\x10\xe1\xf9\xdc\x7b\x09\xcf\x0c\xce\x12\xa6\x5b\xdd\x9e\x6b\xf1\xa3\x90\x09\x9b\xe7\xab\xdf\xbe\x8e\x2a\x22\x28\x6e\x14\xf5\x1a\xdd\x17\x45\xa8\x92\xfc\xc9\xf7\xc7\x97\x8d\xf0\xe2\xda\xe3\xb6\xf7\x0d\x0b\x09\x9a\xdd\x19\x5e\xe7\x97\x96\x13\xd6\xdc\xca\x72\x5c\xb4\xd9\x88\xd0\x73\x2e\x58\xe2\x9b\xc4\x5f\x06\xa4\xe3\x5a\xca\xb9\xc5\x66\x11\x1e\xba\x78\x2a\xf4\x09\xce\x21\x9c\x4f\x4e\x6f\xe3\x28\x2d\x25\x68\x3a\xfa\x7d\x3c\x55\x96\x46\x28\xcc\xd8\x72\xd7\x6e\x77\x2d\x41\xcc\xdd\x39\x38\xc0\x35\x8d\xc0\xcd\x1f\x61\x27\xd5\x58\x45\x50\xd4\xea\x58\xdf\x66\xb1\x9e\x50\x99\xcb\xb9\x5a\xaf\x2b\x80\xf0\x3d\xf2\xc0\x12\x4b\x1e\x7f\xc2\x7a\xc5\x73\x1e\x77\x8f\x16\x11\xfe\x48\xbc\x92\xa8\xd9\x7c\x95\xe0\x7f\x39\xf6\xd7\xc2\xfd\xc9\x04\x55\xce\x00\xbb\xf2\x89\x4d\x66\x47\xc0\x56\x9e\x3b\x97\x77\xd3\x7f\xc0\x90\x33\xf4\xe8\xdf\xad\xe1\xff\x85\x84\xc2\x29\x46\x3e\x37\xf7\x10\x4a\xad\x2a\x2e\x2f\xd6\x9d\x43\xb8\x62\x69\xb5\x24\x59\x4f\x89\x70\xee\xde\xec\x23\xd1\x53\x0f\x10\x4e\x98\x5c\xb9\xa7\x31\x98\x44\xd0\x2f\xdc\xd8\x12\xae\x58\x43\x58\x22\x3e\x5a\x7e\x47\x7c\x1a\x61\xe7\xaa\x9d\x2f\x63\x5b\x96\xb2\x80\xc4\x7f\x2f\x08\x2a\xd6\x22\xb8\x68\x6e\x5d\x46\x6f\xf2\x08\xce\xcb\x94\xfa\x66\xcf\xba\x43\xe8\xda\x91\x99\x8f\xbe\xf5\x04\x3e\x31\xa5\xb7\x7f\x66\x38\x11\x42\x13\x35\x8a\x16\x44\x0b\x11\x64\x6e\xac\xfc\xfa\x78\xa1\x10\x61\xe4\x1d\x9f\xe5\xdf\xb7\x3f\x18\x18\x49\xfa\x7d\x28\xf8\x44\x0f\x03\x49\xb4\x52\x3d\xe1\x85\x29\xc1\xba\x44\x2f\x93\x6d\x39\x2f\x21\x25\x76\x8d\xbf\x16\xbb\x0b\x61\x46\x48\xb0\x47\x42\xd8\x07\x06\xae\x5e\xfa\xf4\x5e\x66\x6c\x01\x4d\x82\xdf\x8f\xb3\xe1\x79\x69\x77\x35\xd4\xfd\x37\xef\x74\xef\xf0\x63\x8e\x3c\xfc\x3a\xcf\x31\xd7\x8a\xe0\xd8\x71\x38\x85\xed\x63\x1f\x03\x3e\xd2\x5a\x97\xbc\xef\xad\x25\x38\x04\x5e\x2c\xeb\xda\x2d\x45\xe0\x93\xaf\xcf\x53\x8f\x7a\xca\x80\xc4\x9e\xf1\x1a\xf6\xad\x36\x34\x89\xe1\xc3\xaa\x17\x17\x0d\xad\x22\x04\xee\x5d\x7f\x29\x51\x7c\x3a\xa1\xe1\x71\x8e\xfe\x8a\x0c\x09\x82\x02\xd7\x41\xcb\x9a\x18\x73\xc2\xee\x97\xd4\xb8\xeb\xc8\x7c\x42\x90\x87\xf2\x63\xb9\x18\x2b\xc2\x75\xd9\x80\x4d\x17\x2b\x04\x08\x8b\x06\x4a\x6b\x68\xe2\x46\xc3\x5c\xad\x56\x10\x66\xce\x41\xb0\x7b\xb1\xf5\xbc\xec\x3b\x4e\x16\x68\x9a\x54\x6c\x13\xda\xb6\x86\x90\xed\xbe\x25\x6e\xab\x50\x1f\x03\x3b\x6f\x84\x6c\x91\x34\x5f\x43\xb8\xf2\xc7\x8a\x7b\xd9\x96\xb9\x84\xef\xae\xf1\xd2\x31\xa2\x1e\x04\x87\x8d\xb3\x9a\x9e\xc4\x0b\x10\xee\x3d\x6b\x94\xd6\x7c\x30\xc4\x80\xec\xaf\x33\xd7\x4c\xf5\x2f\xd2\x7f\xe0\x6d\x87\xf0\x5a\x89\x4e\x17\xc2\xa9\x5f\xe9\xc6\x17\x6e\x26\x32\x27\xcb\xff\x10\x3e\xbb\x5a\xcc\xf3\xae\x32\x61\x83\x44\x50\x9b\xca\xc6\x16\x82\x54\x2c\xbf\x25\x97\x48\x19\x13\x55\x5c\xab\x03\x9c\xc3\x5a\x09\x81\x67\xbe\xad\x35\xf2\x3e\x47\xd8\x6d\x9a\xeb\x23\xad\x72\x91\xb0\xad\x6f\xc1\xa3\xa0\xe1\x60\x82\x8d\xd4\x16\x4b\xe1\xdf\xc1\x84\x9f\x96\xf5\xbf\x1a\x8c\x4f\x32\x21\x2a\x75\xa3\x29\xe6\x04\xeb\x68\x48\xaa\xf7\xe5\x8a\x7b\x7b\x09\x0a\x7b\x96\x7e\xf0\x49\xae\x65\x22\xe4\xb0\xc1\xe9\xc0\x86\xbd\x2c\xa3\x5d\x1d\x7b\x4a\xfd\xbf\x2c\x26\xfc\xb0\xfa\xc8\xbd\xc3\x6e\x1e\xe1\x72\xa6\xe0\x78\xd7\x63\x21\xc2\x78\xc3\x06\xde\xd7\x26\x89\x84\x2b\x46\xa1\xd2\x42\xda\x71\x04\x65\xa9\x6b\x07\x17\xae\x9f\x4f\x38\xef\x62\x7c\x5a\x7d\xd6\x12\x82\xdc\x94\xe0\x32\xd3\x10\x1b\x42\xb5\xe7\x25\x75\xcf\x68\x5b\xc2\x89\x58\xee\x37\xde\x43\x44\x98\x85\xc6\x63\x63\xee\x0b\x08\x66\x4b\xad\x63\x14\x78\x54\x09\x97\x3b\x97\xa4\x6c\x3b\xdd\xc3\xc0\xa6\xf2\xba\x46\xdf\xe5\x53\x09\x22\xd7\xd3\x25\x7f\xa5\x1e\x67\xc1\xc7\xdd\x61\xb7\x37\xa9\x9c\x23\x38\x24\x73\x46\x8a\xd5\xce\x20\x38\x9e\x6b\x7f\x35\xf6\x66\x17\x13\x07\x45\x6c\x99\x36\xfa\x55\x34\x89\xee\xe4\x92\xb7\x54\x11\x44\x98\x3a\x27\x68\x58\x49\x68\x3d\xa1\xf5\xa4\x98\xd2\xf8\xd4\x06\x82\xc1\xee\xba\xa6\xbf\x13\x48\x0e\x1f\xbe\xc6\x7e\xe3\x1e\x61\xf6\x93\xdc\x83\xfc\x32\x97\x08\x27\x94\xbe\xe7\x1a\x8e\x5d\x22\xe8\xdd\xcb\x5a\x2d\x74\xfb\x12\x61\x67\x85\xf4\xbb\x29\x13\xa3\xdb\x69\xda\x97\xad\xb7\xee\x25\xb4\x0f\xea\x3f\x31\x89\xbe\xc2\xc4\xd3\xb1\xb5\xef\xad\x36\x1d\x22\xf4\x2e\x77\x33\x7c\xe9\xb4\x89\xd0\x66\x9b\x90\x21\x9b\xf4\x87\x01\x99\x58\xbd\x94\xd1\xdb\xba\x84\x94\x98\x57\x5d\x5c\x3c\xd3\x59\xe0\x7c\xfe\xdd\xce\xa6\xa2\x35\x2c\xe8\x88\x7c\xa8\x70\x29\x40\x8d\xa5\xf0\xfd\x4a\x1f\xba\x18\x60\x40\xa0\x97\xc9\xfc\xe2\xa9\x0b\x09\x85\x56\xbf\xf7\x9e\x3c\xda\xc3\x40\xb8\x6f\x8a\x54\xb2\x8b\x24\xe1\xab\xb7\x15\xe7\xbd\xeb\x3b\x68\xb2\x9c\xd0\x58\xfe\x2e\x77\xdb\x1c\xc2\xed\x1f\xca\x1a\xae\xa7\xb5\x08\xfb\xda\xff\xba\x2c\xaa\x6e\x27\x2c\x8f\xde\x10\xe0\xa8\x9c\x4b\x70\x57\x3d\xef\xb9\x62\xf3\x0f\x06\xb2\xe5\x1b\x6d\xfe\x0c\x7c\x60\xa0\x83\x43\xaf\x6c\x7b\xdf\x34\xc2\xc6\x05\xb2\xcf\x06\xbb\x95\x69\xb2\x1c\x72\x0f\xbe\x66\xdf\x3f\x87\xf0\x31\x27\xb6\xd1\xbe\xdf\x90\xa0\xd9\x57\x33\xc5\xa7\x29\x98\xe0\xf8\x61\xde\xdb\xa6\x93\x7c\x04\x6f\xe7\xd7\x3b\x53\xf8\xa6\xff\x17\xc4\xc4\x5e\xf5\x2c\xb0\x90\x23\x34\xd6\xf5\xfc\x35\x1d\x58\x4a\x70\x1b\x9f\xb9\x77\x95\x99\x3d\xc1\xf6\x94\x6d\xc7\xa5\x22\x0d\xc2\x2d\x15\x99\x75\xf1\x06\xca\x04\xcf\x14\xd7\xd2\xcc\x55\x32\x84\xe5\xd9\x17\x79\x17\x7d\x9e\xb8\x94\xe8\x54\x4c\xaf\xff\xf2\x82\x31\x09\x81\xf1\x62\xd3\xa2\x17\x0a\x84\x85\xea\xa6\xbd\x5e\xf2\xd2\x84\xbb\x4d\xb9\x53\x46\x75\xd9\x08\xc7\xfb\xb6\x04\x47\x38\xc5\x12\xc6\x4b\xda\x36\xaf\xe4\x3d\x41\x58\xbf\xe0\x66\x1f\xbb\x93\x20\x61\x5e\xba\xd5\x0a\xb6\x41\x06\xe1\x58\x4d\xbe\xcf\x9d\xf1\xe3\x04\xde\x99\xfb\xa4\x96\xfa\x05\xb2\x20\x98\x4f\x38\x42\xa3\x49\x8d\xd0\x61\xd6\x25\x22\xa7\x5c\x43\x30\x78\x7f\x63\x8b\x65\xd6\x41\xc2\x93\x5d\xcf\xce\xe6\xf4\x6d\x20\x38\x9f\xf5\x96\xbd\x5f\xbb\x82\xc0\xbb\x5f\x61\x86\xb5\x9f\x1e\x41\xfc\x24\x7b\xce\xcc\x0b\x8b\x09\xee\x91\x5a\xe1\xda\x11\xf3\x08\xdb\x6e\x30\x77\xe6\xcd\x8c\x24\x84\xbb\x5e\x5e\x2f\xea\x22\x4c\xd8\x70\x27\x4f\xdb\xd9\x6e\xa8\x1a\xf2\xb3\xf8\x05\xd4\xc5\xe5\x09\xf3\x44\x74\x3c\x73\xd5\xcc\xff\x03\x23\xe7\x7f\x5e\x16\x6f\x37\x20\x7c\xf9\xb1\xbb\xb6\x55\x7a\x27\x21\xd8\x3e\xea\xc5\xa3\x6a\x36\xc2\xe1\xe8\xe9\x56\xfb\x77\x44\x10\xdc\x4f\xc8\x94\x68\x5f\x0b\x20\x84\xed\x1c\x0f\x8c\xe0\x56\x25\x64\x30\x9c\xe5\xcd\x9e\x8c\x31\xd0\xf9\xf2\x52\x7b\xf1\x96\x31\x06\x1c\x73\xe7\x73\x24\x7e\x9b\x46\xff\x17\xc4\x53\x6e\xdb\x3c\xe2\x66\x23\xd8\x1a\x60\xb3\x66\x6d\x17\x03\x96\x57\x04\xce\xec\x9c\xfd\x95\x05\x9d\x55\x6f\x17\x72\x1a\x19\xd2\x24\x16\x6d\xf5\x68\x8f\x8a\x94\x23\x6c\xaf\x59\xb8\x22\x5d\xc7\x82\x05\xf6\xa3\xd6\x4b\x0a\x1c\xcd\x09\x59\x9f\x5a\x65\x12\x45\xc4\x08\xde\x4e\xbc\x32\xd2\x39\xf2\x2c\xb8\xcd\x21\x7f\x32\x62\xbd\xd2\x7f\x21\xa2\xe4\xf9\x17\xc9\x8e\x33\xd5\xb8\xbb\x75\xa3\xf0\x9c\x02\x25\xc2\xb7\x58\x6b\xe9\x16\xa6\x01\x41\x6a\x2e\x7f\x69\x4a\xc2\x4c\xc2\x1e\xef\x63\xcd\x39\xb1\xf5\x84\xfe\x3d\x86\x86\x25\x71\xf5\x84\xf0\x8c\x8e\x2d\xeb\x47\xea\x08\xc7\xef\xd5\x94\x15\x4f\x14\x81\xd2\xd6\xd6\x87\x06\xe7\x58\xf0\x61\xed\xc7\xcf\x7f\x5c\xcf\x11\x04\x41\x03\x67\x55\x59\xcb\x9c\xdb\xdc\xf7\xf2\x92\x6f\x10\x52\xff\x0e\x95\xf7\x56\xde\x24\xac\xe1\x7e\x6a\x55\xf5\xa4\x8a\x70\x4a\xef\xa6\x62\x65\x44\x15\xa1\xf5\xe5\xd7\xd5\x29\x0a\x49\x4c\xe8\xac\x16\x3e\xca\xdd\x53\x45\x68\x7a\xfa\xe7\xea\xb2\xa0\xcb\x04\x4e\x43\x49\x57\xeb\xdf\x4e\x04\xab\x97\x3c\x4f\x0e\xa4\x95\x12\x1a\x1e\x4a\x05\x34\x06\x56\x31\x27\xd7\xc8\x29\xcc\x33\x08\xb5\xac\x25\x98\x89\xc9\xe8\xbd\x74\x3b\x43\x58\xf3\x7c\x2c\x4c\xe1\xdd\x6d\x42\x81\x89\x5e\x51\x94\xea\x46\x02\xbf\x8a\x25\x97\xc6\x25\x6e\x42\xc0\xbd\xef\xe6\x41\x47\x7a\x08\xdd\xd3\x07\xd2\x76\x3a\xf7\x12\xe6\x25\x05\x32\xe6\x76\x14\x11\x8a\xdd\x6f\x57\x0a\x49\xf4\x12\x92\xde\xad\xdc\xcd\xa1\x57\x43\xb8\xb8\xcc\x2e\x58\xf5\x6b\x1c\xc1\xd9\x34\xe8\x29\xd3\x7b\x3d\xe1\xc5\x7d\x01\xf7\x5b\x7f\x5d\x59\xa0\xb7\xe9\x31\x77\xdd\x0f\x4d\x82\xa5\xcf\xe2\x2f\x29\xe3\xd6\x84\xec\x70\xd5\x0c\x1f\xa9\x1e\x42\xc4\xa7\x0b\x71\xbc\x12\x3d\x04\x13\xf3\x6a\xab\x56\x83\x57\x04\xc6\xab\xed\xda\xe5\x22\x1d\x84\xd9\x47\xf9\xbb\xd4\x26\x6e\x29\x4e\x4e\x05\xfb\xc5\x4a\xfc\x08\x25\x8a\x6f\xb6\xe8\x74\xae\x65\xa2\xb5\x5c\x20\xd2\x67\x65\x0b\x81\x5b\x62\xcf\x97\xa6\xfb\x37\x08\xe7\x6f\xc6\xbe\xf1\x6a\x2f\x26\xd4\xf2\xbf\xff\xf9\x1c\x46\x84\xa4\x1d\xd3\x7c\xd5\x0a\xf4\x09\x7a\x7f\xa6\xef\xbf\x27\xbd\x92\xf0\xf6\xd5\xe5\x7e\xcf\x24\x49\xc2\xb5\x92\x9e\x85\xce\x47\x24\x09\xad\xa3\xbb\x55\xab\x4c\x46\x18\xc8\x7b\x6c\xbe\xc0\x5e\xd2\x81\x20\xf4\xac\x51\xd9\x28\xc3\x99\x70\x8c\xcb\xca\xef\xf4\x8c\x75\x2c\x50\x70\x9e\x95\xe0\x7e\x49\x83\x20\x6c\xf5\xb8\xab\xc4\x72\x36\x0b\x1e\xed\x92\x7e\x9b\xd0\x39\xc2\xc0\x91\x14\xc3\x28\x2d\x35\x71\x42\x8d\xee\xad\x96\xca\xae\x2c\x06\xbe\x95\x7c\x3b\x9d\xb3\xdb\x90\x26\x61\xdc\xf7\x4e\xe8\xf4\xc5\x41\x06\x54\xbc\xea\x25\x1b\x8e\x68\x12\x16\x39\x45\xfc\x5a\xed\x6c\x4c\xb8\x78\x44\x35\xe4\x9d\x6c\x24\x61\x7b\x46\xc3\xac\x8b\x9f\x7e\x32\x26\xc1\x73\xb5\xae\xa4\x6a\xca\x14\x42\x97\x49\x11\xcf\xd4\x5a\x43\xc2\xbe\x86\xb1\x0c\xd3\x1f\x60\xa0\x38\x65\xc4\x32\xb4\x21\x84\xb0\xf2\xb8\x53\xb6\x1e\x1b\x3b\x61\xd8\x2f\x4e\xd6\x75\xb3\x3b\xe1\x65\xdf\xbe\xab\xfd\xd7\x56\x11\x3e\xcc\xbf\xce\x56\x2d\xa8\x4f\xb0\x7c\x39\x73\xa1\x4a\x94\x01\x61\xb7\x6d\x70\xd3\xf8\xeb\x83\x2c\x08\x90\x59\xeb\x13\x35\x76\x8c\xf0\xbd\x6e\xea\xde\x1b\x46\x37\x09\x0e\x8d\xdb\x37\xdd\xd3\x3e\xc4\x44\x88\xd0\xb3\x69\x6e\x89\xfa\x04\xc9\x32\x21\xbd\x3f\x65\xaf\x08\xe4\x21\x7a\x3e\x45\xf0\x12\xc1\xf2\xb0\x92\x84\x46\x4d\x07\xa1\xdd\xed\xa0\xd9\x71\xdd\x42\xc2\xd8\xfc\xe3\x4b\xb4\x6c\x92\x08\x43\x77\x05\x36\xb8\x3a\xee\x21\x74\x4c\xcf\x0d\x7f\xfc\x4a\x9a\x05\x5f\xfa\x33\xef\xe4\xfa\xb6\x32\x10\x28\xab\x7f\xdc\xc2\x29\x9d\x90\xd0\x7f\xe2\x0e\xff\xd2\x95\x84\x00\x11\xf1\xa1\xb5\x59\x05\x4c\xac\xcf\x55\x13\x2e\xbf\xb2\x76\xe2\x5f\xf4\x66\xf6\xf1\xcc\x4a\xc2\x03\xa6\xb8\x22\xef\xf2\x2c\xc2\xb1\x5d\xdf\xf7\x0f\x6d\x5f\x4a\x58\xfa\x69\xe0\xbb\xf0\x14\x55\xc2\xa2\x37\x07\xbf\xad\x10\x56\x22\xe4\xe5\x65\x6c\x8b\xb9\xae\x41\x50\x57\x65\x7b\x1f\xa4\x6b\x46\xc8\x15\xd0\xfe\xd1\xb7\x5c\x8e\x10\x28\xed\xfd\x5d\xe2\x86\x01\xe1\xea\xcc\xf7\xaf\xd7\xb6\x48\xb0\x20\x9f\x3f\xa8\x31\xa0\xb4\x9d\x81\x17\xe6\xde\xb3\x2d\xa4\x16\x11\xe2\xab\x96\x7a\xeb\x7a\x5a\x10\xea\x2d\xde\x96\x87\xfc\xd1\x23\x6c\xbe\x9a\x9f\xf1\x79\x44\x98\x30\x95\xbb\x24\x39\xf3\xa8\x09\xe1\xa9\x8f\xa7\x89\xba\x97\x3e\xc1\x4b\x57\xbb\x2d\x3e\xaf\x87\x01\xf7\x9d\x1f\x9c\x4f\x68\x2e\xa2\x49\x74\x54\xc4\xaf\x4e\x97\x56\x63\x41\x22\x67\xc4\xec\xd0\x5b\xc5\x04\xa9\xcd\xde\xd3\xf3\xf3\xcc\x09\x6d\x0e\x4b\x73\x1d\xae\xfd\x62\xc0\x87\xdf\x69\xd1\x46\x3e\x09\x42\xfb\x2d\x07\xff\xe5\xf3\x96\x12\xde\x9c\x7c\x3d\x85\x87\x67\x01\xa1\xf4\x76\x58\xbe\x5e\xf1\xf3\x6a\xb8\xf3\x25\x7a\x0d\xb2\x69\xd2\x24\xa4\xc3\xfe\x96\x25\xd7\xcf\x25\xcc\x2b\xed\xcf\x4a\x4e\x32\x27\xe4\x28\xad\x9a\x29\x56\x57\xca\xc4\x97\x80\x23\xc7\xf7\x27\xda\x10\x14\xaf\x15\xe5\x3e\x1b\x35\x22\xc4\x1c\xf8\x54\xa6\x9e\x68\x44\x30\x54\x32\x93\x4f\x5f\xa5\x4a\x58\x75\xb1\x98\x4d\xb2\xd3\x98\x20\x1b\x5f\x1b\x93\xf7\x6a\x26\xe1\xcd\x09\xe1\x75\x91\x09\x5b\x08\x27\x9d\x5b\x0f\x6a\xaf\x35\x21\x5c\x5e\x1b\x37\x50\xe9\xa1\x4b\xa8\x63\xf6\xf2\x7e\x0f\x16\x24\xbc\x7f\x55\x1c\xd2\xf8\x76\x31\x21\xd8\xa9\xb0\xbd\x7d\xb6\x20\x61\x98\xb9\xa6\x77\x83\x63\x26\x61\xb9\x4c\xcf\x80\xc2\x5a\x65\x82\x8b\xf5\xaf\xee\x35\x25\xab\x09\x71\xb2\x4b\x54\xbc\xd6\x2a\x12\x76\xc8\x76\x4d\x75\xf1\xfa\xc8\x18\x49\x2d\xfd\xeb\xca\xed\xcf\x44\x7c\xa3\xbf\xe8\x95\xeb\xd9\x84\x1d\xaf\xb4\x57\xee\xb8\x53\x4d\xd8\x7b\x7e\xdf\xeb\xb9\x9f\xd7\x12\x4a\x0e\xd6\x25\x85\xdb\xd8\x12\x9e\x74\x68\xd9\x99\xb6\xa8\x11\x72\x6e\xba\xb7\x34\xbc\x56\x21\x0c\x7e\xde\x72\xd3\x5a\x68\x21\xa1\x82\xd9\x13\xa8\x2e\xe7\x41\x60\xfc\xe8\x2d\x49\xba\xbf\x99\xe0\x67\xec\x26\xa8\xef\x7a\x81\xa0\xdf\x7a\xd4\xf0\x1f\x7a\xbf\xcd\x7c\xea\x3f\x94\x48\x78\x31\x1a\x21\xf8\x6b\xf6\xc4\xbb\x74\xfc\xde\xb3\xff\x7e\x5e\x8d\xaa\x5a\xff\x3f\x3b\xfb\xec\xe8\x3f\x10\xb7\xce\x40\xd3\x7c\x5e\x12\x13\x42\xdd\xa6\x2f\x3c\xab\x5b\x19\xb8\x57\x1b\x55\xe8\xfd\xe1\x36\x81\xfd\xd7\xa1\x4b\x65\x22\x5d\x4c\xe4\x54\xfa\xd6\xc9\xee\xae\x65\x82\xb9\x47\x9f\xbd\xea\x4b\x2e\x21\xdf\xf7\x61\xf2\xe0\x79\x77\xc2\xe1\x6f\x37\x37\x44\x17\x5b\x12\xa4\x4f\xcf\xff\xf4\x69\xb9\x1e\xc1\xd2\xc6\xf4\xa4\xb0\xa4\x32\x21\xf8\xa1\x3b\x47\xb0\x51\x3a\x61\x5c\x38\x91\xc3\x56\x58\x9b\xf0\x79\xc3\xfb\xa2\xfb\x8d\xc1\x04\xdd\xef\x4f\x77\xec\xeb\xb0\x23\xcc\xb0\x58\xa5\x95\x20\x68\x4e\xb0\xcf\x8f\x61\xd7\x0c\xb0\x27\x2c\x7a\xf2\x22\x6c\xd7\x03\x23\x42\xac\xbd\x60\x24\x77\xb7\x3f\xe1\xf7\xa0\x4d\xb8\x16\x3f\x07\x61\x73\x80\x98\xe9\xf4\xb0\x1a\xc2\x15\x49\x71\x8d\x69\x13\xd0\xd7\xdd\x71\xfc\x1f\x0a\x6f\x64\x15\xb7\x8d\xdd\x22\x2c\xbe\xf0\x6c\xfc\x5f\xb9\x92\xd0\x75\x87\x6f\x7e\x0e\x0b\xec\x7e\x7b\x54\x9c\x5c\x71\xe1\xbf\x46\x1f\x75\x5e\x16\xcf\x9c\xc0\x7c\x53\x1d\xa9\x6c\x9f\x03\x04\x63\x69\xf3\x5f\xb7\x9b\x13\x98\x93\xc5\x40\x69\x24\x25\x75\xe5\x16\x96\x35\xa5\x33\x1a\x5a\x17\x4c\x0d\x22\x64\x45\x7e\x78\x98\x33\x63\x0b\xe1\x48\xdb\x81\xbb\xd9\x5f\x73\x09\x92\x21\x0f\x79\x6e\x3f\xc9\x25\x3c\xdc\x27\x7f\x37\x59\xe7\x18\x61\x40\x5d\x52\x4b\x7c\x34\x97\x10\x07\x73\xde\x85\x0e\xfc\x84\x0d\xdd\x6f\xd5\xae\xfd\x3c\x47\xd8\x5e\xb9\x27\xdb\xd7\xe6\x3b\x03\x45\xbb\x6c\x0e\xd8\xc6\x6f\x21\xec\x0f\x99\x11\x6d\x13\x3a\x85\xb0\x91\x53\xc6\x24\x43\x6e\x2e\x41\xc5\x25\xdf\x53\xc0\x6d\x1d\xe1\x5b\xe2\x52\xfb\x20\xfe\x45\x04\xfd\x0f\xcf\x56\x7d\xcd\xb4\x24\x64\xaa\xbb\x47\x3c\x3f\xa1\x47\xf0\xd0\x2c\x8b\xe9\xde\x35\x87\x10\x2b\x7e\x9a\x3b\x20\x3d\x98\xd0\x10\x25\xea\x22\x32\x71\x44\x5e\xfe\x4d\xee\xda\x91\x08\x01\xfa\x0f\x7c\x4f\x67\x5b\x5e\x52\x32\xc4\xc0\xb1\xa2\x6b\x0f\xdc\xcd\x79\x59\xde\x75\x6d\xe0\xe8\x5d\x93\x89\x35\x31\x4d\xa5\xf2\x2f\xb5\x4d\x68\xb2\xfc\x0f\x1f\xd7\x2a\x70\x1f\x88\x1b\x66\x20\xba\x25\xc3\x88\xb3\x36\x87\xd0\xd9\x8c\x1f\x53\x56\x95\x13\x24\x0e\xb7\x36\xae\xaf\x1b\x64\xe0\xd3\x8d\xe5\xba\x77\xe5\x83\x09\xf2\xb9\xe1\xe6\x41\x9b\x94\x08\x9a\x4d\x86\xcb\xdb\x95\xcc\xfe\x0b\x35\x6f\x57\x5f\x65\xbf\x60\x40\x28\x96\x29\x19\x7f\x50\xa1\x4c\x90\x61\xcb\x2c\x14\x1f\x3d\x41\x28\x3b\x74\xfd\x04\xf6\x36\x13\xee\xb6\x26\x1d\x3e\xb5\x44\x97\xa0\x57\x18\xd6\xf7\x41\x6c\x39\xe1\x6d\x92\x81\xf8\x70\x93\x10\xa1\x6f\x65\x6e\x55\x67\x9c\x12\xc1\xde\x66\x4a\xd0\xed\x89\x43\xb3\x67\x42\xa7\xe2\xf7\xe9\xd3\xff\x13\x6a\x9c\xd6\x32\x4c\x45\x42\x74\x6f\x52\x98\x5c\x60\x3e\x21\x65\xd3\xda\x79\xb9\xd5\x52\x2c\x60\xc8\xaa\x99\x70\x29\xf0\xb3\xa0\xd7\xcf\xf6\xf6\x92\x16\x1e\x82\xbe\xd8\x6e\x95\x55\x2e\xd5\x84\xdc\xb4\x58\x13\xeb\x1f\x12\x84\xdb\x7d\x42\xa3\x4b\x03\x6c\x09\x91\xee\xfc\x39\x62\x66\x0b\x09\x3b\xef\xa2\x7f\xf3\x6d\x79\x42\xbd\x63\x90\xf6\xfe\x37\x26\x84\xd3\x75\x19\xd7\x86\xa2\x4d\x09\x5a\x3c\x3d\x89\xcf\xe6\xeb\x10\x96\x7c\xcd\x9f\xbf\x7d\xc4\x62\xe2\x2f\x68\x72\x31\xf6\x9b\x36\x61\xde\x9c\x67\xec\xaf\x3f\x7c\x60\xe0\xd0\x9c\x24\x5e\x33\x29\x39\xc2\x6b\x83\x00\xd5\x95\x4d\x03\x0c\xbc\x39\xb0\xb4\xfb\xf2\xf0\x29\x9a\xc4\xb5\x14\xfb\xfe\x85\xfb\x77\x12\xb4\x4e\x33\x44\xb4\xde\x5f\x26\xd4\x6c\x2b\x57\x30\x4a\xca\x26\x24\x70\x5d\xe2\x0b\xf7\x51\x27\xd8\xd8\x3f\xba\x76\x70\x91\x31\xc1\xbf\xd2\x73\xd5\x76\x5f\x11\x42\x8d\x95\x42\xae\xa6\x88\x32\x61\x74\xf5\x94\x04\x29\x09\x45\x82\xa5\xaa\xc7\x48\xc2\x2d\x6e\x82\x91\xf0\xe5\x9b\x2b\xb8\xd7\x13\x56\x3a\x6d\x34\xe4\xfb\x14\xc5\x02\x7f\x9e\x96\x8d\xfc\x6d\x11\x84\xde\xd6\x29\x5d\x0f\x96\xc9\x13\x7c\x42\xeb\xcf\x0d\x6e\x6b\x65\xe0\x77\xf7\xea\x57\x06\x46\x7f\x58\x50\x50\xe1\x72\xc3\x71\xf6\x02\x9a\x84\x08\x5b\x73\xb3\x8d\x59\x1d\x61\x6b\xf3\xd6\x03\x0a\x12\x6b\x09\x17\xd6\xca\xcf\xfc\x45\x91\x2c\x88\x47\x86\xcd\x65\x05\x39\x42\x97\x56\xea\x12\x32\xd5\x26\xc4\xf1\x54\xc7\x04\x74\x0b\x11\xaa\x02\xbc\xaf\x6b\x54\xd6\x12\xa2\xbf\x88\x34\xac\x17\xcb\x62\x4e\x96\x9e\xf3\x1f\xd7\xd5\x72\x69\x10\x1c\x14\x7d\x07\x4f\xee\x10\x25\x88\x46\x1d\x70\xbb\x6f\xf5\x80\xb0\x77\xad\x54\xf0\xbe\x8a\x56\x42\x98\x4c\xa4\x65\x4e\x5e\x13\xa1\xe2\x39\xfb\xd3\xe6\x89\x51\xb6\xb7\xa3\x6d\xdf\x4b\x25\xc2\xa0\x7c\xde\x98\xf5\xfd\x50\xc2\xfd\xed\xae\x22\xaa\x1b\x84\x08\x01\xec\x3c\x96\xbd\xa2\x67\x09\x39\x4e\x57\x74\x0e\xec\x3b\x47\x10\xad\x9e\xd5\xa5\x33\xbb\x98\x70\x7e\x8f\x44\x7e\xc4\x5a\x67\x82\x55\xf7\xd9\x9c\x37\x69\x06\x04\x05\x8b\xa1\x3a\x37\x6e\x41\x42\xd0\x86\x29\x1c\x3b\xc4\x12\x08\xb6\x1b\xbf\x2b\xfe\x35\x72\xfe\x3f\xd1\x6f\x27\xf5\x44\xc8\x58\x89\xe0\x71\x33\xed\xa8\x54\xbd\x05\xa1\xe8\x91\x0f\xc7\x6e\xe9\x1d\x84\xef\xbb\xf9\x1f\x64\xc5\xcd\x27\xec\x0b\x4e\xbf\xb4\x32\x71\x1e\xe1\xfa\x8f\x4c\xc6\x82\xe7\x66\x04\x99\xb3\x6f\xab\x97\xe6\x18\x11\x4e\x9f\xad\x9e\x2d\xff\xdc\x83\x70\xeb\x57\xe8\x22\xff\x3f\xc9\x4c\xbc\xee\x59\xe7\xab\xb3\xc3\x87\xa0\xb7\x54\xf2\xe5\xa3\xe7\xeb\x08\x3e\xcc\x2f\xab\xe7\xf4\x15\x30\x30\xc5\xf4\xd1\x5c\xf1\x32\x23\x42\x8f\x40\x9a\xd5\x8e\xf6\x41\x06\xec\xde\x4b\xdb\xcd\x0f\xd0\xa4\x49\xf8\x66\x97\x76\x9f\xea\xad\x60\x80\x57\x2c\x88\x9d\xbb\xb5\x9c\xd0\x1d\xa2\x7c\x50\xf8\x64\x25\xc1\xbe\xbc\x55\x72\x95\x8a\x00\xc1\x26\xa4\xce\xe4\x6f\x53\x1e\xa1\xd2\x79\xc7\x87\x3f\x13\x50\xb1\xe0\x33\x6f\xd4\xcb\x27\xb8\x45\x35\xe9\x74\x7e\x94\xfd\x2f\xec\x50\x15\xcb\x57\xbf\x76\x95\x46\x5e\x1a\x37\x88\xba\x39\x11\x0a\x7f\x16\xa5\xe8\x1b\x1d\x22\xbc\xb8\x7c\xe5\xef\xde\xcb\x6c\x04\x43\x37\xef\xbd\xee\x13\xbb\x57\x63\x11\xdf\x43\xbe\x2c\x6d\x42\x09\xdb\xf6\x85\x9c\x87\x17\x13\xd6\xad\x29\x37\x91\x94\xd0\x27\xe8\x2c\x31\xcb\x4c\xd9\xc7\x24\x0c\xc5\x9a\xde\x38\x37\x81\x9e\xe1\x3b\x51\x8d\xa7\xef\x11\x4c\x57\x55\xef\xbb\x18\x28\x48\x90\xc9\xe2\x1b\xce\x65\x56\x11\x6e\xeb\x8f\x68\xd9\xf6\xf1\x12\xfe\xfc\xd9\x7e\xa3\x9c\xc3\x81\x70\x69\xc6\xb7\xf3\x95\x77\xf4\x09\xf1\x0a\x87\x42\x15\x4c\x97\x10\xc2\x29\x23\xff\xf5\xb9\xf7\x4c\xac\x97\x15\xb7\x51\x6e\xe8\x24\xe8\x38\x2d\x91\xdb\xe4\x29\x41\x23\xf3\x4b\xaf\xc6\x99\x4c\x21\xec\x9e\xbf\x75\xcb\xc5\xc8\x39\x04\xa6\xa2\xcf\x32\x89\xfd\x26\x84\xa2\x0f\x0a\x9e\x83\xbd\xa2\x84\x63\x66\x32\xda\x92\x59\x47\x08\xbb\x92\xbe\x3e\xdb\x27\x5d\x4b\x08\xf1\xbf\xf4\xf6\x39\xa3\x96\x90\x63\xfe\x5a\xb5\x63\x02\xb3\x6f\xcf\x71\xfa\x57\x22\x78\xb5\xfd\xff\xe1\x62\x64\xd9\xe9\xee\x3d\xb6\x84\x37\x07\x6d\x7f\x96\x35\xd8\xb3\xe0\x96\xd6\x3e\x8f\x02\x36\x37\x42\xa9\x61\x60\x7a\xe8\xf8\x00\x03\x9e\x32\xb2\x97\x6f\x88\xf4\x30\x10\xf1\x2b\xaa\xac\xea\x8d\x37\xa1\x70\xe1\xac\x2f\xd9\x99\xcb\x09\x5f\x57\x7c\x6e\xad\x54\xd1\x26\xe4\x24\x3d\xde\xec\xcd\xa6\x45\x98\xca\x9e\x5b\xc2\x96\xac\x44\x10\x7e\xf4\x74\x9a\x84\xe4\x1e\x82\x3f\x71\xa9\xcb\x9a\x10\xe1\xd1\xe7\xb6\x01\xe1\x55\xad\x0c\xcc\x5d\x61\x6f\x72\xc8\x3c\x89\x89\xe2\xc0\x23\x3e\x7b\x57\xa8\x11\xb6\x6a\x08\x8d\x59\x87\xa9\xb3\x40\x89\xd7\xa6\xdf\xf7\xb5\x00\x21\x7b\x64\xdf\x9f\x87\xf2\xbf\x18\x08\xb3\xa8\xd3\xa9\x96\xaf\x61\x62\x5e\x56\xd8\xd7\xb2\x89\xcf\xfb\x69\x08\x6f\x18\xc7\x8c\x46\x02\x23\x7a\x5f\xd4\xc2\xfa\x23\x84\x7d\xd6\xbb\x85\xcf\x68\xf2\x13\x3a\x9a\xa3\x1b\x8f\xda\x1e\x22\x5c\x5b\xc5\xf5\x60\xbf\x4e\x27\x81\xef\x77\xd4\xba\x88\x09\xd8\xa6\x1f\x36\xfe\x57\x7e\x9e\xbc\x3d\x85\xaf\xa1\x90\x70\x54\x7a\xea\x8f\x4a\xbe\x1a\x82\x63\x54\x0b\x77\xc0\x83\x7e\xc6\x24\x5e\xdc\x8d\xde\x4a\xe5\x82\x34\x89\xe9\x2a\xbb\x0c\x0e\xba\xd4\x32\xb0\x63\x5a\x3a\x5d\xbd\x21\x46\x90\xd3\xaa\x4f\x3b\x7f\x46\x90\xe0\x71\xc8\xf9\xe6\xf9\xb1\xf3\x84\x33\x83\x9a\xb1\xff\xd0\x68\xec\x69\x9b\xd9\x74\x91\xd0\x3f\xae\x71\x62\x84\xbe\x11\x56\x3f\x9b\x27\xe2\xfa\xbd\x8d\x10\xb7\x85\xef\xcd\xa1\xcf\xa1\x84\xda\x73\x7d\xd3\xe6\x89\xc6\x11\xde\x67\x7e\x32\xe7\x89\xa9\x23\x64\xc5\x34\xcf\xa4\xe7\xe7\x98\x28\x8e\xf0\xbe\x6f\x23\x7e\x85\x90\x38\x3b\x6d\xc1\x81\xa8\x3a\x42\x4b\xc8\xa0\x8b\x3b\x7b\x55\x35\xa6\xbd\x74\x39\xfb\x23\x20\x9f\x30\xe0\xc7\xed\x35\x38\x81\xe2\x07\x61\xf5\xe3\x5a\x47\x09\x8a\x4b\xec\x72\x1e\xea\xa5\xb3\x8c\xd2\xf8\xef\x2d\xfd\xb3\xc9\x99\x05\x45\xe9\x71\x2a\x0f\x0a\xb6\xb2\x94\x03\x8f\xb6\x5c\xe1\xba\x3b\x8f\xf0\x25\xc9\xa7\xf1\x3d\xe7\x1c\xc2\x8c\xa5\x6d\x6a\x1f\xf4\x8d\x08\x87\xde\xbe\x95\x54\xba\x30\x83\xf0\xaa\x65\xa6\xda\x73\x46\x00\xe1\xd5\xf8\x11\x1b\x9d\xa6\x25\x04\x93\x92\xa7\x4a\xfe\x13\x4f\xd3\xc6\xd1\x68\xa7\xcf\x1b\xb3\x08\x37\xa2\x65\x43\x03\x8e\x7b\x12\xbc\xa2\x74\x8f\xad\x5b\xaf\x40\x48\xaf\xe1\xfe\x28\x15\x3b\x87\xd0\xb1\xef\x8d\x0c\xfb\x1f\x39\xc2\xf5\x19\x4a\xf2\x4a\x61\xe2\x84\x0b\xbb\xac\x4a\x16\x35\x55\xb0\x60\x9a\xfd\xb0\xc3\x3f\xe8\x4d\xe5\xb5\x3a\x56\x56\xc2\x52\x5c\x9f\xd8\x64\x1d\x37\xf6\x67\xc1\xeb\x92\x07\xb3\x9c\x87\x7e\x33\x26\x4b\xff\xb2\x48\xe7\xc7\xd9\x3e\x2c\x6b\xda\x18\x5d\xb2\x07\x65\x42\xfe\xff\x41\x28\x39\xc9\xd0\x19\xb2\x84\x25\x3a\x1d\x3a\x9c\x45\x6c\x84\x87\xef\x79\x78\xd3\xfd\x8d\x09\x46\x7c\x0a\xab\x1d\x22\xf3\x99\x78\xf7\xf9\x4c\x43\x6d\xa6\x32\xc1\x64\x5e\xc4\xad\xd1\x29\x7c\x84\x27\x1c\xca\xba\x4d\xce\x4a\x84\x81\xd7\x53\xbe\x8b\x3e\x1b\x60\x60\x6b\xea\x3d\xee\xd0\xd0\x2c\x82\xfb\x33\x79\x6f\xb6\x46\x55\xc2\x01\x2c\x57\xf8\x25\xad\x4a\x18\xb0\xf6\x9e\x6e\x38\xbe\x8c\xd0\x60\x71\x66\xea\xd6\x7d\x9b\x09\xf1\x9b\xbe\xbc\xec\x73\x2a\x22\x34\xf6\x0b\x8e\x5d\xf9\x91\x49\x20\x4b\xef\xae\x69\x05\x0d\x84\x63\xbb\x0f\x28\x32\x15\xf7\x12\xee\x24\x3c\xe4\xf9\x91\xfa\x82\x01\x1e\x93\x30\xd7\x00\x5f\x49\xc2\x7b\xb6\xdf\x67\xeb\xb2\x24\x09\x21\x4d\x1c\x5e\x0f\x43\x16\x13\x0e\xd4\x5b\x56\x54\x3c\x5a\x48\x28\x8d\x9d\xfa\x4b\x27\x86\x87\x60\xc4\x69\xc8\xf1\x66\x15\x3f\x21\x66\xe0\x32\x43\x64\x09\x37\xe1\x52\x5d\x8d\x72\xfc\x35\x7b\x42\xd0\x23\xc7\x0b\x47\x23\xad\x09\x4f\x56\x18\x91\x55\x4c\x2b\x03\x5f\x8e\xad\x9a\xfd\xab\x86\x9d\xd0\x95\xb1\x71\xea\x3c\xe1\x99\x2c\xf8\x7f\x7f\xf0\x70\x2a\x41\xcc\xce\x3d\x6a\xfe\x76\x23\xc2\xc7\x8a\x5b\x67\xbf\x57\x69\xb1\xe0\x98\xc5\xc7\x53\xde\x73\xc1\x80\xe3\x2f\xe9\x1a\x35\xb5\x30\x26\xe2\x4e\x08\x94\x89\x2c\x36\x27\xe8\x86\x74\x9c\xc9\xe1\x1c\x66\xe0\x8a\x4a\x8b\x40\xbc\x92\x26\x61\xd5\xfa\xa8\x2b\x2b\x55\xca\x09\xab\x7f\xf0\x8f\x49\x94\x2c\x20\xdc\xe0\x18\x78\xa7\xa6\xfc\x96\x89\x04\xf1\x77\xcf\xe7\x47\x1e\x23\x3c\x57\xbf\xc8\xe6\xe2\x43\x04\x91\xcc\x69\x33\xc6\x5e\xda\xb2\xe0\xe3\x95\x9e\x47\xf3\x1b\x1e\x57\x4f\xc2\x9b\xee\xa5\xbd\x54\xdf\x4c\xff\x17\xe6\x0a\x3c\x64\x7f\x83\xcd\x84\xf7\x1b\x04\xfa\xb3\x03\x13\x09\xc1\x1d\xe1\x35\x4e\x71\x7a\x04\xae\xa9\x12\x09\x3c\xee\x0f\x09\x2d\x27\x4c\xaa\xff\xa1\xbb\x32\x2f\x83\x57\x37\x8b\xa0\x6a\x33\x95\x63\x81\xdc\x03\xc2\x96\x6b\x67\x24\x79\x27\x46\xaf\x6d\xdb\x22\xd5\x16\x17\xb1\xa0\x28\xe4\x24\xfd\x83\xd5\xa2\x70\x95\x7f\x90\x7c\x5f\xe0\xf9\xf2\xd9\x59\xc2\xb6\xa4\xa3\x43\x37\xcf\x5a\x12\xf2\xba\x2c\xde\x65\xcb\xaf\x22\xcc\xdf\x5e\xb1\x52\xbc\x9b\x93\x30\x10\x30\x30\xa8\xa4\x70\x80\xc0\xc7\x36\xe2\xfb\xe3\x78\x1d\x13\xc3\x85\xdf\x24\xdb\xfb\x22\x08\x26\x17\x4b\x1f\xcb\x48\x1d\x21\x5c\xc6\x9d\x36\x85\xfe\xc3\x84\xe5\xfb\x74\xfd\xee\xc5\x9c\x26\x5c\x7e\x3f\x1e\x79\x8a\xed\x30\xe1\xd9\x8c\xe6\x3d\x8d\x46\xed\x4c\x7c\xee\x16\xba\x2a\x26\x7b\x84\xb0\x7a\x49\x97\x78\x62\xfd\x71\x42\xa3\x90\x8f\x88\x1a\x67\x2c\x4b\xc9\x5b\xff\x6e\xff\xc2\xe4\x23\x84\xfd\x03\x5d\xec\xf3\xb5\x23\x08\xd2\xe4\x3d\xe8\x10\x38\x95\xb0\x22\xfa\xe5\x4c\xe9\xf2\x35\x84\xdc\xab\x3b\x2a\xdd\xd2\xd7\x10\xc6\xb9\x4d\x24\xed\x3a\x0c\x09\xcb\x8e\x3e\x79\xf9\xc4\x49\x84\x30\xf3\xec\x70\xb2\xe6\xab\x6a\x26\xd4\x33\xc7\x46\x9b\x3d\xaf\x11\x98\xf1\x77\x4c\x3f\x0e\x3d\x65\xe2\x74\x6e\xd1\x61\xce\x88\x3a\x82\x50\x47\xec\x31\xcb\xb0\xe7\x84\x5d\x51\x33\x45\xad\x26\x60\x1f\x11\xb7\xc7\x62\x02\xd9\xbf\x7a\x3f\xfc\x1b\x71\x6c\x13\x53\xee\xbc\x6e\x4d\x58\xc4\x29\x29\xfc\x50\x7b\x25\xa1\xb0\xd9\xf2\x61\x96\xd8\x1a\xc2\xb2\x8a\x36\x8e\x8a\x8d\x9e\x04\xa1\x4d\x6e\x45\x67\x39\xfc\x98\x30\x49\x7c\x74\x78\xd6\x8d\x5a\x42\xf8\xd4\xee\x8a\xad\x8b\xea\x08\x2f\x76\x6d\x3a\x9e\x35\x7e\x88\x09\x47\xe3\xb9\x5b\x46\xcc\x38\x08\x5f\x43\x07\x3f\x6f\x7a\xca\x4f\x78\x73\xa5\xcd\x8d\xaf\x77\xe2\x0b\x7b\xf3\x8c\x8c\xf2\xa6\x25\x84\x47\x23\x3f\x6e\x47\x5c\x1b\x64\xe0\x82\x7c\x45\xe5\x95\xb5\xc5\x84\x29\xdb\xef\xb7\xfc\x43\xc1\x91\xcd\xd7\xae\x58\xbd\x63\x4e\x96\x53\x4b\xbe\xe8\x7d\x0f\xf3\x26\x9c\xc9\xdd\x3d\xf0\x67\xd8\x9b\x30\x38\xee\xe2\xff\xd5\x78\x3b\x4b\xf9\x1f\x42\x36\x05\x9d\xbd\x7c\xc3\x9f\x05\x3b\x07\x9b\xed\xdf\xdf\x09\x20\x64\x38\x9e\xd7\x5c\xad\xed\x4f\xe0\xae\x70\xff\x2b\xc6\x13\x40\xe0\x13\x89\x9b\x96\x5b\xee\x45\x70\x90\x94\xda\x66\x63\x95\x45\x68\xcc\x71\xde\xb2\xc5\xb1\x86\x89\xa4\xe8\x75\xde\x66\xcd\xf5\x84\xad\xc9\x05\x47\x73\xa7\x57\x10\xb2\x79\x1f\x6d\x7f\x2e\x39\xcc\x40\x9c\xce\xf6\x83\xd5\x1f\x0e\x33\xb1\xb3\x77\x56\xae\x09\x43\x8e\xb0\x82\x5b\xf1\x6e\xfa\xc9\x75\x84\xea\x91\xe4\x93\xc6\x6b\xcc\x08\x8f\x17\x9c\x0c\xb9\xc1\xdd\x52\x8d\x13\xf4\xe9\x4b\xa5\x18\x1b\x81\x67\x9a\xa9\xeb\x54\xb3\x99\x84\x57\x8e\x3e\xc1\x8d\x56\x92\x04\x0b\x91\xa3\xb1\x72\x7b\xbc\x09\x7f\x9b\x36\x69\xa6\x71\xf9\xb2\x14\x55\x2d\x83\xb3\xcf\x6e\x6a\x12\x2e\xa9\xe9\x68\x74\x2e\xaa\x24\xec\xf2\xdb\xd2\x50\x97\x58\x4b\x38\xb6\x3d\x29\xd6\xf5\x46\x15\xe1\x80\x69\xef\x93\x82\xc7\xcd\x84\xcf\xca\xb1\xc1\xff\xc0\xd3\xd0\x2f\x69\x75\xb0\x91\xd0\x54\xd1\xa4\x71\xa5\xa7\x99\xa0\x59\x50\xdc\x90\xbd\xb7\x96\xa0\x1d\x23\xcb\xd7\xc2\x59\x40\x18\x61\xa8\x72\x70\x9f\x5a\x41\x78\x1f\x70\x52\xd5\x7c\xac\x80\x40\xd7\x53\x3c\x63\xfe\x16\x10\x24\xca\xd4\x3f\x5d\xe4\x27\x02\x5f\xea\xc0\x94\x2f\x4c\x76\x82\xd6\xf0\xce\x12\x39\x8d\x34\xc2\xaf\x71\xbf\x0d\x83\x01\x55\x4c\xb4\xbd\x9e\x69\xed\x15\xf5\x9c\x60\xc1\xb7\x22\x35\xff\xe8\x1d\x02\x1f\x46\xf6\xed\xdd\xaf\x47\x88\xe2\x7a\xbe\x24\xd9\x4d\x81\xf0\x69\x57\xf7\x22\xa5\x1e\x36\x82\xd8\x40\xbf\xd3\xc9\xa8\x22\x42\x7f\x9e\x85\xc3\x2c\x8f\xeb\x04\x49\x5e\xae\x64\x83\x91\x61\x06\x3e\x9c\x1b\xe1\x1f\x4e\xbc\xcb\xc0\x14\x85\xf2\xb1\xed\x6e\xda\x04\x63\xdf\x01\x2e\xbf\x24\x30\xa0\x7a\x50\x6a\xec\xfb\x81\x03\x84\x8b\xd7\xd6\xf8\x7e\x58\x15\x41\x38\x1a\xbf\x33\x43\x47\x3e\x93\xd0\x1a\xbc\x37\xfa\x77\x16\x3b\x21\xc6\xfd\x5d\xdb\xce\xa5\xab\xff\x0b\x77\xf3\xf8\x47\x95\x75\x3a\x19\x10\x09\x4e\xd5\xa8\xf6\x8f\x23\x04\xdc\x19\xf8\x14\xcf\xd4\x25\x0c\x8f\xb6\x37\x0a\xee\x8e\x21\xa8\xfc\x3a\x7d\x3c\xb1\xed\x35\x03\x7b\x9a\xfc\x14\xd6\xbf\x53\x22\xf4\xb1\x97\xa6\x3b\xc9\x99\x12\x8a\xa7\x97\x9c\xca\xf6\xca\x63\x42\x63\xfb\xcc\x69\x26\xf9\x8a\x84\xb5\x9a\xdb\xdb\xbb\xf3\xd9\x08\xab\x82\x4e\xb4\x94\x3e\xe1\x20\x70\x74\xec\x14\xb1\x71\x2b\x21\x88\xb5\xb9\xc2\x73\x02\xbd\xfc\x59\xeb\xa3\xd8\x23\x98\x28\x3e\x6a\xd1\xf3\xaf\x18\x6e\xff\x25\x3b\x26\xb4\x9e\x50\xff\xd7\xfa\xf7\xf8\x66\x67\x96\xf2\x3f\x30\x4f\x95\xe6\x8a\x38\x28\x13\x3c\x5e\x31\xf9\x79\x27\xb6\xdc\xbb\x4a\xed\xca\xff\xb0\xd7\xb5\xc5\xd7\xc4\xf8\xf2\x7f\xa1\xfb\xca\xbb\xc3\xff\x30\x7e\xfd\x5b\xbe\xe1\x1a\xdd\xff\x82\xcc\xd4\x7b\xb6\x86\x12\x63\x0c\xcc\x15\x96\x5a\x2e\x50\x5a\x4a\xf0\x9a\x7a\xce\x21\x6c\xc4\x8e\xd0\x61\xf7\x51\x3e\x45\xd8\xe1\xbf\x60\x7b\xce\x87\x33\xd9\x6f\x35\x41\xb6\x7d\xb6\x94\x85\x4f\x5a\x35\x9c\x5f\x70\x0d\x75\x35\xff\x66\x20\x70\xb8\xb2\xbb\x7b\x93\x26\x4d\xe2\xe5\xc9\x5e\xbb\x03\xfd\x4f\xaa\xf1\xe9\xa2\xbc\xca\xf6\xb0\x4c\x82\xe4\xce\x59\x69\x1d\x2f\xc5\x08\x45\x27\x77\x5d\xb3\x88\xd8\x45\xb8\x55\xa8\x5b\xc6\x3d\x14\xc5\x82\xb5\x57\xda\x95\xbd\x39\xb3\x09\x29\x6c\x5e\xb1\xbf\x74\xce\x12\x98\xcb\xd4\x05\x98\x85\xfc\x84\x9d\x73\xce\x29\x76\x18\x70\x11\x5e\x49\xdd\xa9\x1a\x35\x39\xc1\x44\xaf\xa4\x7f\xe3\xad\xd3\xa5\x84\xf8\x43\xd1\x61\x8e\xf7\x4b\x09\x25\xcb\x35\x0f\xfc\x2b\xe2\xc7\xcd\xce\xfc\xc3\xc3\x5c\xdd\xb5\x63\xfa\xd9\x84\x6f\x5b\x82\x0e\xab\x45\xdc\x25\xc8\x45\xf7\x06\xb5\x87\x16\x31\x11\x61\x6c\xa5\x2a\x1f\xc8\x41\x70\x6c\xf5\x89\xb3\x4a\x34\x22\x14\xbe\xcd\xf8\x2a\x17\xaf\x41\x48\x9c\xa2\xd5\x61\x35\xa5\x84\x60\xfd\x53\xe9\x5b\xf9\xfd\x25\x84\x08\xb6\x5d\x61\x6f\x8c\xed\x08\x56\xba\x79\x8f\x6c\xd6\xae\x21\xac\xbb\x57\x7d\x73\xe5\x03\x6f\x26\xa4\x4e\x9f\xaf\x97\x14\xf8\xc8\xc0\xe0\x66\xfb\x80\x8f\x9b\xe7\x12\x64\xb6\x18\x2d\xb8\x26\xe1\x40\xb8\xc2\x54\x7c\xda\xd5\xb1\x8d\x05\x65\x9d\x0f\x02\x38\x83\x4e\x13\xea\x3f\xfd\x9e\x73\x54\x6a\x21\x21\xf1\x69\xc1\x06\x0e\xc5\xf7\x0c\x14\xd4\xbd\xce\xcf\x3f\xc0\x45\x68\xee\x35\xea\x8b\x90\x9b\x43\x78\x68\x5e\x36\xb4\x5c\xe2\x2b\x63\x12\x9b\xec\xf6\xcf\x34\xb3\xff\xc6\x80\xbb\x37\x87\xd3\xb6\x23\x29\x4c\xdc\x9a\x2f\x29\x69\xb5\x32\x87\xa0\xc2\x77\xfb\x96\xe5\x04\xe6\x14\x35\xb8\x1e\xdf\x96\x4e\x38\xfc\xe9\xc7\x0e\x8b\xcc\xd3\x04\x71\x8f\x9a\x88\x81\xf6\x5f\x0c\x70\x8e\xcd\x9d\xb3\x63\xf8\x1a\x21\xa6\x4d\xc8\x76\x56\x25\x1b\xe1\x05\x57\xec\xe3\x30\x17\x21\x42\xcd\x2a\x7e\xb7\xa5\x2a\xca\x04\x8d\x05\x55\xd9\x17\x9c\x35\x09\x17\x6f\x97\x3d\xf6\x72\x3b\x4d\x18\xde\xdf\x15\xe8\x76\xfc\x7e\x35\xe6\x0b\x47\x76\xcd\xf9\x33\xc2\x98\x84\x47\xc1\xea\x42\x43\x86\x26\x21\x59\x7f\xd4\x65\x55\xc2\x28\x03\x7f\x97\x45\x4b\xfc\xf5\xda\x44\x78\x17\xbf\x23\x3e\x8e\xcd\x93\x70\xcb\xb0\xe1\x98\xd8\x79\x1d\x42\x65\x0d\x2a\xf7\xb8\x27\x12\x72\x0b\x3a\xdb\xb8\xa5\x99\x4c\xac\x57\xa9\xdf\x6f\x16\xbc\x9f\xf0\x77\x61\x5b\xfd\x6a\x91\xb3\x84\x96\xeb\x23\x17\xba\xe4\x32\x08\xbc\x3c\x1b\xe5\x3b\x62\xc5\x08\xb3\xd9\x0a\xbe\xef\x6c\xe0\x25\xdc\x5d\x1a\xa8\x5c\xc4\x57\xcb\x84\xf0\xde\xb6\xde\x83\x27\xc4\x08\x43\x73\x55\x2a\xf6\x3d\x61\x10\x34\x02\x2d\x3a\x0f\x7b\xc4\xb3\x40\x68\x44\xf7\xfa\xac\xf8\x68\x42\x54\xbd\xa0\x6c\xf7\xd0\x7c\x42\x5d\xed\xbd\x75\x89\xb7\xb5\x09\xa1\x76\xd5\xcf\x17\x3c\x4a\x24\x74\x27\xef\x56\xaf\x0d\x15\x23\xec\x6b\x0e\x2e\x30\xe0\x95\x20\xa4\xdb\x19\xc7\x1e\x48\x16\x20\xcc\xdf\xdb\x9a\x65\x98\x6d\x4c\x90\x94\x35\xee\xe8\x9b\xb8\x3f\xdb\x3e\x7c\xeb\xf0\x41\x46\x96\xd0\x7b\x28\xbf\x44\xc2\x5b\x94\x30\x34\xc3\x5c\xc2\xb0\x8c\x08\x25\xc3\xec\x57\xb9\xfe\xe4\x11\xce\x35\x6c\x93\x18\xce\xe7\x65\x81\x92\xe2\x3b\x41\x13\xb3\x6f\x8c\x49\xec\xbb\x70\x4a\x4d\x73\x11\x3f\x4d\xe2\x57\xba\xe5\x65\x53\x4b\x77\x42\x4a\xa7\xf6\xb7\x4f\xa1\x3c\x04\xf6\xd5\x4d\xba\x7f\xf4\x07\x19\x78\x9f\xdc\x17\xdc\xdd\xc9\x45\xf0\xdb\x95\x65\xb7\xfb\x86\x1c\xc1\xa1\x7b\xc9\x73\xf5\xd9\xf7\x09\x61\x1d\xb7\x65\x63\x34\xea\x58\xb0\xca\xd5\xb0\xe2\xac\x46\x39\x4b\x11\x55\x6a\x36\x9e\xe9\xe5\x45\xb8\xdf\x58\x12\x7c\xf9\xf6\x06\x96\xf2\xa2\x85\x79\xba\xf8\xa0\x1d\xc1\xa0\x39\x33\xe0\xd4\x94\x63\x84\x27\xfb\x8b\xd3\x8a\x4b\x66\xb3\xc0\xd1\xda\xb9\x65\xdf\x57\x4b\x16\x0c\x09\x1e\xbc\xfa\xcd\xea\x15\x03\xa7\x73\x96\xe8\x15\x98\x0b\x10\xb4\x53\x17\x09\x96\xae\xdd\x43\xc8\x5c\xed\x3c\xde\x2f\x72\x85\xb0\xfb\x5a\x8f\xb1\x66\x4b\x26\xa1\x68\xbc\xff\x84\xce\x8e\x0d\x2c\x10\x17\x2c\x2c\x6f\xb8\xd7\x55\x8d\xed\x32\x7f\x2d\x7f\x2c\xff\xcd\x40\xe2\xc2\x3c\x1f\xb5\xf0\xe5\x34\x89\x9f\xb2\x07\x04\xe5\x92\x6f\x57\xa3\xca\xb1\xf6\xec\x7b\x3d\x43\xc2\xfc\xf2\xb2\xe7\xad\x03\x62\x04\xef\xd1\x9c\x17\xbb\xd7\x0a\x12\xb2\x84\x06\xab\x3c\x7d\x6a\x99\x88\xd4\xed\xb8\x7d\xb6\xb3\x8f\xe0\x3f\x4f\x7c\x5c\x60\x56\x07\x13\xdd\x96\x1a\x6f\x92\x26\x8a\xc3\x9e\xfe\xaa\x19\xb1\x8f\x09\x22\x92\x0c\xef\x0c\x05\x2e\x02\x6f\x04\x5f\xe6\xa8\xb4\x3f\x0b\xbe\x6d\xb0\x9d\x56\x7e\x8a\x83\x70\xdc\x78\x64\xcd\x16\xa5\x6e\x02\xbb\x8b\xed\xe2\x83\x77\x72\x09\x0d\x77\x42\xb8\xad\x93\xdf\x12\x22\xf3\xea\xd3\x87\x93\xde\x12\x20\xef\x63\x75\x62\x02\x37\xea\xa3\x7e\x06\x1f\xea\x21\x7c\xaa\x2d\x8d\x2f\x52\xfa\x4a\xc8\x38\x5f\x7e\x6d\xeb\xb4\x2a\x82\xf3\x75\x5d\x8f\xef\xcb\x3e\x13\x2c\x3f\xbd\xed\xfa\x3a\x01\xb9\x23\x39\xd3\x1f\xf7\x56\x11\x4c\xbf\x69\x2b\xfd\x5b\x23\x97\x51\x75\xee\xf7\x05\x75\x02\x8f\x95\xe1\xbb\xb8\x73\xe5\x04\xd7\xa1\x85\x26\x8a\x86\xe9\x84\x9e\x92\x9d\xbb\x4c\x4c\xdf\x12\xbe\xdb\x3a\x7b\x6f\x6e\xcf\x27\x08\xdf\xd9\x64\xf6\xc0\x36\x92\x20\x41\x91\x72\xab\x42\x66\x13\x8e\xda\x9f\xe1\x5f\xe1\xbe\x82\xc0\xd1\x6b\x33\x3c\x32\x16\x46\x38\xf7\x63\x65\x86\x5b\xf2\x36\x16\x84\x1f\x5f\x9f\x1e\x28\xe4\x49\xf8\x54\xb3\x76\xd1\x9a\x5d\x12\x2c\x28\x7c\x36\x5f\x76\xc1\xa1\x65\x84\x42\x09\x99\x6e\xc1\x29\xde\x04\xf6\xcc\x02\x39\xe3\xfc\x38\x26\x8a\xf6\x35\x49\x77\x7c\x0d\x24\xdc\x37\x5a\xa7\xec\xf5\x6a\x23\x41\x6d\xaa\xd8\xa0\xf5\xd3\x4d\x04\xf5\xa4\xf8\xa2\xb3\x1c\x8a\x84\xe8\xc0\x1f\x55\x0b\xcc\x97\x10\xbe\x51\x81\x86\x98\x67\x11\x81\x2b\xc0\xf8\x5d\x7b\x78\x11\xc1\x6f\x03\xfb\xb8\x99\x54\x31\xe1\x49\x97\xef\xef\x37\x7a\x82\x84\xe4\x65\x1f\x7b\xca\x26\x4e\x71\x7a\x71\xa7\x82\x95\x6e\x0a\x12\x4e\x2e\xde\x9d\x52\xce\x3d\xca\x40\xc3\xe5\xf4\x39\x06\x8a\xc3\x0c\xa8\x7b\x7a\xca\x68\x16\xcb\x13\x38\x64\x6d\x87\x7d\x67\xe4\x32\x11\x2f\x2b\x97\x90\x6d\x2f\x46\x93\xf0\x93\x58\x70\x74\x9c\xa3\x92\x60\x7c\xe9\xe9\x8a\x66\x59\x7d\xc2\x89\xb2\xe2\xee\xc4\x89\x4b\xcd\xfa\x5d\xfa\x6e\xe9\x29\x8e\x84\x77\x91\x3a\x09\x97\x4d\x56\x11\x1e\x05\xd5\xeb\x07\x8c\x74\x33\xf0\xe2\x8f\xb4\x6e\x4a\xf0\x34\x82\x60\x47\xe1\xa6\x9f\x1f\xef\x10\x6c\x13\xaf\x71\x2e\xf5\xcb\x25\x70\xcf\xe0\x52\x2d\x98\xdd\x42\xf8\xea\x6e\xe1\x92\xec\xf9\x9a\x90\xa3\x71\xe4\xcc\xab\xf6\xc7\x04\xcb\x86\x0f\x5a\x6e\xa9\x57\x99\xb8\xf8\xf3\xfd\x03\x39\xe3\x9f\x4c\x7c\xbb\xee\x33\x3e\x7e\x2f\x9d\xf0\xe1\xec\x63\x8e\x8e\x35\x15\x84\x87\xba\xc9\x3d\x8f\x8e\x16\x11\xb6\xfb\xcc\x2f\x3a\x7e\x2b\x8f\x10\xb2\x64\x4e\x55\xfd\x8e\x16\x96\x22\x29\xda\x3b\x6b\xfd\xe2\x13\x2c\x98\xd2\x7a\x58\x79\x43\x5f\x28\x0b\xce\x65\xa9\xfe\x35\x95\xde\x4c\xd8\xf4\x72\x49\xab\x6d\x41\x2a\xe1\xfc\xad\xf2\x88\xc3\xdb\x9b\x99\x10\xe0\x0f\x49\x6f\xb4\x76\x24\xb8\x33\xcb\x36\x7d\x39\xbf\x91\x05\x03\x99\x3b\xb4\x42\x49\x84\xa0\xac\xcb\x75\x38\x7b\xe5\x21\xc2\x0f\x93\x07\x3c\x8c\x98\x0c\x02\xf7\x1d\xef\x59\xe9\x0b\x3f\x10\xc4\x93\x98\x89\x99\x13\x30\x6a\xdd\x66\x73\x65\xe1\x07\x1a\x99\xb7\xcd\x23\x6b\x22\x08\xb4\xcb\x3e\x28\xa8\xd8\x40\x90\x6b\xd7\xee\x31\xb6\x3c\x41\x58\x3d\xee\xe5\x37\xe7\xe7\x2d\x82\x54\xdc\xc9\xd4\x7f\xb8\x2b\xc6\x58\x20\x3b\x81\x95\x86\x0b\xda\x64\x93\x8c\x08\x6e\x67\x4d\x0d\x6f\x67\x78\x12\xd2\xce\x1a\xdd\x30\xca\xf9\xcd\xc0\x70\xac\x81\xd8\xcb\xe6\xc7\x0c\xf0\x36\xfc\xdc\x15\x35\x4d\x94\x20\xe4\x92\x70\xe4\x93\x7d\x13\x21\x2f\xee\xc0\x8b\x85\xc7\x0d\x09\xe7\x22\x76\x88\x15\x57\x94\xb3\x80\xbd\xe9\xa0\xfa\x3f\x1c\x65\xcf\xfb\x6a\x28\x93\x4d\x38\x1d\xdf\xd2\x34\x47\x3e\x90\xa0\x9a\x76\x7c\xe6\x22\xcf\x28\xc2\x83\x07\x46\xaf\xeb\x2b\x4d\x09\x63\x59\xb6\x7c\xb2\x13\xcf\x16\x79\x23\xbb\xa9\xf7\x4f\xec\x65\xc1\xdf\x51\xaf\xd7\x22\xe7\xdd\x08\xd1\xa1\xc9\x8e\x33\xcc\x2f\x11\x12\xc7\x2a\xf4\xa4\x0f\x1c\x26\xfc\x92\x6f\x4b\x55\xba\xe1\x4a\x38\xb3\x3e\xdd\xb7\x72\xd9\x6a\x82\xa6\xc7\xb6\xfc\x9b\xcf\x94\x08\x39\xcf\x6b\x73\xb6\x6a\xf8\x11\x06\xd5\xc5\x9c\xbe\xdc\x3a\x43\x30\x6c\x58\xf4\x7d\xc7\xf3\x01\x06\x0e\xb8\x5c\xb2\x16\x1c\x72\xa4\x49\x70\x8e\xbc\xb7\x39\xed\x20\x4a\x78\x3f\xfb\x6f\x5b\x76\xbc\x1f\x13\xae\x05\x76\x39\xfb\x74\xaf\x13\xbe\x6c\xda\x54\x34\x5c\x58\xc3\xc4\x53\xce\xbe\x34\xf0\x1e\x24\x44\xfc\x2a\xaa\x3b\x2a\xbe\x87\x90\x77\x7e\xd9\xd6\xc7\x88\xa0\xc9\xd1\xb2\xf0\xde\x4b\x02\x87\x1b\x08\xd9\xad\x56\x53\x3a\x53\x1f\x11\xde\x96\xad\x5b\xe8\xaf\x51\x46\x28\x58\x7e\xd0\xe5\x1f\xbc\x15\xad\xfe\x8c\x3c\x8a\x25\x38\x3c\x3d\xb8\x7f\x86\x7d\x25\x41\xed\xdc\xf3\xc6\xe9\x13\x30\x88\xdf\xf2\x6d\xc6\x96\xcb\x84\xfd\x02\x0b\x74\x79\x26\x4a\xed\xf5\x05\x0a\xff\xd6\x08\x3a\xf5\x4f\xe7\x0d\xd8\x4f\x20\x27\x0e\x93\x79\x63\xbb\x09\x96\x75\x9f\xd5\xfb\x4e\x67\x12\x3c\x5f\xde\x14\xd3\x62\x0b\x22\xec\xac\xe2\xbc\x18\xa1\x77\x98\xf0\x43\xe6\xc4\xb9\x59\x78\xc6\x82\xbb\x6f\xde\xf7\xf2\x4d\xa0\xe4\xe8\x09\xef\xe7\x75\x17\x09\xfc\xeb\x1f\x9d\xff\xf2\xe0\x12\x21\x6d\xe8\x70\xfb\xa5\xf4\x5e\x06\xf8\x1e\x05\x2b\x7c\x5a\xaa\x42\x93\xb8\x18\xc6\xf6\xfd\x99\x45\x47\x35\x94\xf6\x79\xc9\x84\x99\xae\x24\x58\x49\xe0\x93\xfd\x9a\x0f\x0c\xcc\xb8\x73\xf1\xa9\xe0\xe3\xef\xff\x85\xc3\x59\x51\x73\xd6\x7e\x67\x27\x34\x09\xaa\xd9\xf7\x9c\xcd\x60\xa2\x6f\xd9\x94\xeb\xaf\xc4\x9e\x10\x4a\xaa\x37\x49\xae\x59\x76\x99\x70\x2f\xa1\xfc\x8d\xec\xe9\x1a\x42\x5a\x64\xe8\xe7\x77\xef\x6b\x08\x21\x73\xe4\xdc\x98\x8f\xbf\x11\xf6\x38\xe9\x96\x1c\xdf\xff\x8d\x60\xbe\xb4\xc4\x57\x76\xf9\x1b\x06\xb8\x47\x2d\x2a\x83\xcb\x3a\x19\x38\xe9\xbb\x74\xea\x87\xb3\x11\x84\x9f\xc7\x15\xeb\x02\x9e\x98\x12\x14\x3e\xef\xa6\xb5\xa3\xf3\x08\x61\x57\x3a\x06\x9f\x73\x0b\x13\xd6\xe9\x2f\xff\x71\xd4\x7a\x31\x41\x22\x09\xdf\x6d\x5e\x48\x11\x0a\xbd\xac\x13\x15\x36\x2c\x22\xd8\xcc\xdc\xfd\x22\x68\x4c\x9d\xc0\xbe\x4f\xeb\x7b\x45\x80\x6d\x35\x9c\x4f\x8c\xbb\xef\xb2\xba\x4c\xa0\xa5\x9b\x5c\x04\x96\x0e\x32\xd0\x38\x94\x5f\x2d\xb2\xdc\x8a\xe0\x9d\x58\x39\xe0\x1a\xb7\x92\x50\x6e\x7f\xdb\xfa\xd6\x63\xab\xff\x87\xaf\x3f\x8f\xa6\xea\xff\xff\x3f\xee\x4a\x94\x06\x43\x54\x08\x51\x24\x53\x94\x4c\x0d\xfb\x69\x56\xc9\x14\x8a\x94\xcc\x25\xa5\x92\xa2\x22\x43\x03\xd1\x40\x52\x89\x42\x84\x4c\xa1\x8c\x95\x63\x0e\x91\xe6\x92\xa9\x41\x89\x42\xa1\x7a\xa0\x74\x2d\xad\x6b\x7d\x9c\xdf\xba\xde\xd7\xf7\xbf\xdb\xba\x3f\xf7\xaa\xbd\xf6\xde\xaf\xfd\x3a\xe7\x1f\x87\x0d\x22\x2b\xfe\x66\x73\x3d\x51\x24\x94\x59\xf3\x7c\xcb\xaf\x7f\xc6\xc0\xcb\x4c\xfe\xf9\x25\x75\x3e\x82\xb7\xfc\xaf\xbb\xd7\x15\x8e\xb1\x21\x4e\x41\x50\xf6\xef\x06\x1b\x42\x30\xe7\x8e\x9e\xa8\x7d\x65\x84\x5f\xbc\x59\xf1\x1b\xda\xdd\x08\x75\x2b\x83\x66\x2b\xae\x75\x23\xe8\x44\x0f\x27\xdc\xb5\x72\x24\xf4\x04\x70\x39\xa9\x1b\xb2\x8f\x1a\x22\x92\x3e\xd7\x4a\xee\x26\x5c\x55\x08\x4b\x0d\x6d\xd9\x4d\x68\x29\xa8\xda\x5f\x94\xe8\x41\x50\x72\x59\x5c\x74\x5a\xd6\x91\x10\xb4\x8d\x02\xe3\x1a\x45\x08\x8a\xdf\xf2\xee\xe6\xd9\x2f\x26\x8c\xd8\x5e\xe7\xad\xfd\x20\x4d\x78\xf6\xc2\xf6\x40\x87\xab\x19\xc1\x5a\xfa\x97\x9e\x56\xdf\x27\x06\xde\x77\x9f\x7e\x7f\x37\x3b\x8c\xd0\x2b\xb0\xdf\xd8\x21\xfe\xf4\x38\x86\x5c\xde\xe5\x45\x24\xec\x20\xac\x7c\xf3\x64\xad\x86\x9d\x22\x1b\xf8\x53\x6e\xd8\x1c\x38\xb2\x96\xa0\xa0\x33\x70\xda\x46\x44\x96\xe0\x72\x76\xc7\xe8\x52\xe7\xa5\x84\x07\xfa\x2f\xc5\x7e\x56\x2c\x20\xac\x5a\x01\x99\x57\x9b\x7e\x30\x08\x30\xae\xb3\xd7\x74\xd8\x40\xd0\xe5\xb9\x96\x38\x49\x77\x16\x61\xd0\x7d\xce\x0a\x49\x7b\x13\x42\x59\xd1\xe4\x1f\x95\xe7\x74\x08\x93\x9b\x03\xeb\x26\x35\x76\x30\x78\x94\xd4\x6b\xc2\xe7\x35\xf6\x41\x5f\x6f\x6e\xbc\xcd\xd9\x99\x84\x95\x46\x1d\xeb\xae\x2b\xd9\x13\xe2\x1b\xa5\x4c\x93\xb8\xd8\x71\x75\x9e\x88\x7e\xa3\xab\x1a\xc1\x27\x39\xf8\x7d\xdd\x6f\x41\x82\xfe\x31\xe9\x4f\x27\xe6\xe7\x13\xa4\x5a\x37\x5d\xf2\xde\x78\x8b\x20\x11\x36\x6d\x43\x38\xab\x87\xc1\xae\x8c\x4b\x52\x47\xd5\x3c\x69\x1c\xfd\xcb\x8a\xa4\x6d\x36\x89\xb3\xe1\xe0\xa3\xc5\x25\x9f\xa2\x2b\x19\x6c\x6b\xd2\xf7\x60\x59\x0f\xb1\xc1\x6b\x5a\xb8\xf2\xa5\x69\x2d\x25\x38\x52\x7b\x71\xea\x80\xaf\x3b\x61\xdd\x96\xc1\x55\x07\x46\x66\x10\x36\x6c\x98\xbb\x3a\xc9\x99\x9b\x90\x37\xeb\x40\x9f\xb9\xb4\x39\xa1\xaf\x69\xe7\x8d\xb7\x9c\x3c\x84\xb6\xc7\xde\xb6\xf7\xa3\x4d\x08\x42\xaf\xdd\x4e\x0d\xed\x28\x61\x61\x3d\xcb\xb1\x7c\xee\x8f\xfb\x04\x95\xc6\x1e\xf5\x2f\xe9\xa5\x84\x57\x9f\x73\x8c\x84\x7b\x6a\x59\x38\x6f\x5c\xf9\x52\xf4\x7a\x29\xe1\xf2\x1c\x0e\xd3\x7f\xa3\xb3\xe1\xb3\x3e\xb6\x2c\x3e\x4f\xf0\x7f\x7d\x6c\xaf\x72\xc3\x79\xc2\x56\xa3\xd3\x67\x4e\x2e\x4f\x26\x54\x99\x6a\x65\x94\xfa\x9e\x27\xd8\x19\xdd\x2f\x97\x6b\xf0\x25\x34\xed\xef\x5a\x5b\x28\x15\x49\x78\x12\x74\x92\xf3\xd4\x14\x07\xc2\xcb\xc7\xcd\x5b\x93\xa3\x58\x84\xe9\x3a\x39\x4a\xff\x60\xe2\xda\x15\x2b\x37\x3d\x9c\x60\xe6\xf3\x50\xb4\xe9\xe7\x45\x02\x57\x7f\xbe\x26\xe7\x27\x1f\x36\x8c\x7a\x2e\x5f\x92\xe0\xee\x46\x28\xf0\xd6\x79\x5a\x6a\xbe\x9e\xb0\xc4\x76\xf5\x93\x0d\x33\x0e\x12\x4e\xea\x2a\xb7\x5a\x06\x86\x12\x5e\x27\x25\xe4\xcc\xc6\x22\x42\x97\xfa\x6c\xc7\xda\xd2\xa5\x84\x02\xbb\x2f\xf1\x96\x4f\x05\x09\x23\x9e\xab\xca\xb9\x25\x0b\x08\xe7\x3d\x62\xb6\x24\x44\x89\x12\x94\x44\x27\x69\x8c\x1c\x4c\x21\x94\x6c\xe3\x34\x70\xfb\xbe\x85\xa0\x96\x66\x29\xd4\x79\xd3\x99\xad\xf8\xdd\x2b\xfd\x6a\x9b\x50\xc0\xc2\x45\x71\x33\x13\xb1\x79\x97\x08\xe1\xb7\xf9\xda\x66\xea\x8e\x9d\xbc\xf8\xcf\x8b\xaf\xb5\x1b\x09\x1b\x9a\x6f\xee\x0a\xe3\xaa\x23\xbc\xf0\xb7\x59\x1d\x21\x76\x97\xf0\x3b\xea\x6e\xe0\xbf\x63\x38\x96\xf7\xf3\x4d\x7a\xe5\x43\xb8\x63\xb5\x90\xf9\xec\x51\x48\x68\x9a\xdd\x92\xfd\x27\x3a\x8f\x6d\x74\xeb\x51\x7a\xd1\xc9\x26\x75\xc2\x36\xa5\xb0\x4f\x8d\xb2\xa2\x84\x14\x46\x79\xfa\x9a\xab\x65\x2c\xb4\x70\x6e\xcc\xff\x96\x74\x92\xa0\x6d\xec\xde\xf0\x0f\x4a\xd5\x22\xef\xd6\xe6\x65\x13\x94\x8e\x71\xba\x3b\x4e\x7d\xc6\x86\x47\xea\xce\x3c\xc8\xa8\x60\x2b\x1a\x3d\xfb\xe6\xae\x32\x2f\x27\xfc\xca\x5f\x7b\xae\x75\xec\x1d\x2c\x32\xda\x5a\xb4\xaf\x2a\x89\x0d\xb7\x8b\x64\x8c\x47\xb6\x5c\x63\x2b\xb1\xeb\x3c\xf7\xee\x1f\x83\xcb\x85\xac\xa2\x1d\xe6\x5e\x6c\x38\xfe\xdd\x24\xdd\x25\x28\x93\xc0\x7a\x39\x23\xb2\xa8\x60\x2f\xa1\xd9\xf7\x25\x4f\x8a\x91\x37\xa1\xc5\x26\xcc\xdc\x5b\x37\x8d\x50\xed\x94\x18\x58\x76\xd4\x8a\x70\xee\x59\x4d\x58\x06\xac\x09\xfe\x3e\x81\x6f\xca\xdb\x36\x12\x78\x9a\x12\xc2\x77\x8b\x4b\x11\xa2\x1e\x5e\xfd\x78\x35\x36\x85\x60\x3d\x35\xc0\xa6\x74\x5a\x19\xe1\xe6\x17\xa5\xa5\x2d\xf3\xf2\x08\x95\x0b\xcc\xcf\x47\x7a\xee\x27\x3c\xd9\x57\x1b\x16\xbc\x6f\x90\xc1\x39\xf9\x60\x27\x46\x47\x96\xa0\x7b\xfd\xdc\x2d\xed\x3b\xca\x84\xae\xb9\x5a\x77\xf8\x1f\xc7\xb1\x41\xe1\xb0\x01\xcf\xe7\xb1\x2d\x4e\x2b\x75\xab\xf1\x5c\xff\x54\x06\xa5\x3d\x41\xe1\x2e\x06\x9d\x0c\x74\x87\xce\x88\x4c\xd1\x15\xa6\x71\x24\x69\x95\xd7\xfc\x38\xf7\x8b\xc1\x19\x97\x75\xbf\x85\x5f\x3c\x2a\xc1\xe2\xae\x64\x85\x85\xaa\x66\x04\xa5\xa4\xbd\x09\xac\xe5\xa7\x59\x68\xb6\xf2\xad\xdc\xac\x77\x83\xa0\xdc\x78\x6c\x96\x9a\xc5\x0d\x02\xe4\x45\xb9\x8b\x4d\x55\x08\x6e\x19\x05\xd1\x67\x67\x98\x10\x4e\xef\x1a\xf4\xf0\x5c\x3f\xcc\x80\xb5\x33\x77\xd3\xd1\x0b\x9a\x34\x8e\xf9\x0f\x13\x4d\xb8\x79\x86\x19\xd8\xad\x3f\xa2\xd5\x75\x6e\x2b\x61\xa7\x6e\x5d\x69\x8b\x91\x01\x41\xff\xcc\x71\x81\xc2\x04\x01\xc2\xf0\xd6\x19\x4b\x1d\x7a\xb5\x08\x07\xbd\x8e\xba\xca\x7c\x12\x27\xcc\xb5\xe3\x7b\x5f\xa5\x19\xca\x86\x0a\x93\xfc\x5d\x9c\x1c\x46\x84\x01\x6b\xe3\x70\x3f\x01\x2d\xc2\x20\xb7\xfb\xfc\x5b\x73\xd6\x11\x02\x3c\x6f\xca\x97\x1f\x9b\x4f\x48\xbb\x5d\x34\xed\x8d\x1e\x0f\x21\xc8\x28\xd8\x54\xc4\x2d\xa2\x04\x77\x2c\x3e\x3e\xc8\xcb\x9e\x43\x68\xd2\x9c\x7f\xaa\x5b\x93\x93\xa0\x3d\x78\x62\xf7\x94\x9c\x0a\x06\x92\x1c\x6a\x2a\x93\x57\x9b\x12\xce\xfa\x19\x5b\xf4\x9e\xd2\x63\x83\x4a\xc4\xef\x1b\xd2\x13\xf8\x09\xcb\x06\x96\xad\x58\x57\x3c\x97\xb0\x56\xb6\x4f\xe2\xf7\x88\x17\x1b\xde\x6d\xdf\x2c\x7f\xaa\xf6\x0f\x83\xb6\x37\xbe\xef\x7d\x6c\x95\x08\xf7\x52\x17\xee\x29\x13\x9b\x4a\xc8\xf5\x30\xd8\x1d\xf0\xdc\x92\x90\x7b\x26\x7e\xdd\x15\xc5\x49\x04\x0b\xc3\x78\xd1\x7d\xcf\xc4\x09\x5c\x0b\xf8\xe3\x6f\x7e\xe6\x65\x83\xca\xae\x4f\xaf\x1f\x6d\x79\xcd\x8c\x63\x86\x40\xf0\x84\x36\xa7\x20\x16\x12\xa5\xaf\x8a\xc6\xb4\xf0\x11\x04\x8b\xa5\x12\x7c\x65\xdd\x08\x93\xed\x2e\x3c\xe8\xd9\x9e\xc8\xc2\xf2\xa2\x37\x4e\x8f\xcc\x2d\x08\x2f\xdf\x4f\xff\x90\x1a\xed\xc9\x42\x95\xb3\x5f\x89\xee\x86\x5c\x16\xb8\x4a\x12\x5b\x77\x6a\xcd\x23\x04\xeb\xfd\xcc\x5d\x5f\x57\xcc\x86\x98\x1f\xb3\xbc\xe2\x82\x4b\x08\x07\xee\x07\xbe\x6d\x29\x28\x22\x0c\x19\x2d\x4b\x2e\xec\x2c\x26\x9c\xfc\x73\xe2\x4a\x43\xbe\x04\x21\xfe\xe8\xcb\x47\xc3\x2c\x69\x36\x18\x5c\x5d\xe8\xf0\xd3\xaa\xb5\x04\x8f\xdf\xef\x2f\x7f\x5f\xaf\x4b\x68\x2c\x30\xd7\x2b\xb8\xb3\x83\x10\xdb\x67\x73\x2c\xe2\x8b\x0b\x81\x2f\x57\x3f\xc4\x30\x72\x25\xe1\xcd\x80\x9a\x62\xce\x79\x51\xc2\xd9\xed\x7b\x46\x65\x13\x7f\x33\x88\x35\x9c\xa4\x1e\xda\x3e\x81\x20\x6e\x19\x75\x74\xd5\xc4\x05\x84\x85\x09\xe6\xe2\xe6\x4b\x17\x11\x56\xa9\xae\xb1\x3e\x64\x68\xcd\x06\xdb\x99\xbd\x17\x8e\xf5\xcd\x27\x94\xad\x11\x39\xa9\x95\xb4\x82\xad\xbc\x3c\xf7\x6e\x5e\x8e\xe9\x07\x06\xc9\xab\xeb\x3d\x9c\xf9\x97\x10\xcc\xb6\x88\x4c\x31\xb7\x35\x27\xbc\x8a\x08\x9f\x96\xf1\x5d\x9b\x60\xdc\xf6\xc2\xea\x62\x56\x07\x83\x9f\xd6\x9a\xb2\x03\x21\x0b\x09\xaf\x68\xf6\x06\xab\x90\x70\x1a\x2f\x13\x4f\x17\xd9\x76\xcd\x7d\xcf\xc0\xb9\x6f\xb0\x35\xf4\x91\x17\xe1\xfc\xe6\x73\x11\xf3\x0c\x83\x08\xd7\x85\x3e\x9f\x50\x3d\x73\x81\x70\xe5\x8b\xe2\x4f\xdb\x1c\x6b\xc2\xb6\xe9\x8f\xca\x64\xfc\x23\x09\x01\xc8\xd6\xee\xda\x3b\x9d\xe0\x11\x78\x4b\xd7\x7c\x40\x88\x0d\x37\xec\x2a\x9f\x8a\x29\xbf\x65\xd0\x6e\xd6\xf1\x3b\xb5\x5a\x8d\xf0\x5e\x36\x60\x34\xe7\xea\x7c\xc2\xc9\x7b\x3f\x9f\xea\x20\x9d\x86\x76\xa7\x47\xae\x5b\x94\x41\x78\x38\xf2\xa2\x6c\x0c\xff\x0b\xa2\x8d\x1b\x62\x4c\xd7\xad\x25\x3c\x2d\xec\x5d\xa5\xf7\x25\x90\xb0\xe0\xcc\xec\x87\x82\xdb\x82\x08\x33\xbc\x7b\x66\x26\x5c\x3e\x4e\x20\x89\x23\x89\xd7\x3b\xc2\x58\xe3\xc7\x3c\x5d\x51\x9d\x91\xa7\x1e\x44\xb8\xf7\xac\x43\xe9\xbc\x70\x24\xa1\xb8\x90\x33\x76\xbe\xdc\x69\xc2\x4c\xd5\xc2\x19\x2a\x4d\x61\x04\xc7\xaf\x9f\x63\xce\xc9\x7a\x11\x2c\xba\x36\x47\x5f\x5c\x35\x95\x60\xd8\x93\xff\xb7\xe5\xd3\x3a\x42\x68\xd5\xea\x3d\x2d\x16\x5b\x09\xbf\xdd\x67\xad\xb9\xe1\xae\x4c\x28\xb5\x4c\xbe\xa2\x7f\x51\x89\x30\xb9\x7f\xbe\xb8\x8b\xe0\x67\x06\xdb\x6d\xa6\x85\x75\x88\x73\xd3\xff\x05\xaf\xba\x2b\x71\xce\xf7\x86\x18\xcc\x34\xd6\xfa\x29\xfa\x64\x2e\xc1\x63\xf2\x7c\x56\x6b\xc8\x1c\x82\x4e\xcc\xa9\x8d\xd3\x2e\xcf\x26\x5c\x74\xba\x1a\x37\xe3\xa1\x29\x61\x47\x89\x84\xf0\xd3\xa7\x2e\x6c\x38\xc7\xed\x9c\xff\x11\x6a\x84\x84\x33\x3e\xbb\x74\x5e\x38\x10\x8c\xb2\x3f\x8a\x14\x17\xfa\x10\x42\x35\x66\xad\x35\x84\x16\xa1\xb0\x65\xde\x29\xd1\x19\x82\x04\xf7\x49\x33\x3a\xfa\xec\x27\x11\x32\x1b\xb2\x55\x26\xdd\x5c\x4a\x30\xb8\xff\x7b\x91\xd3\xa0\x12\xc1\x79\x28\x4e\x42\xa3\xb0\x8b\x41\xdb\x4c\xa3\xf2\x50\x51\x6e\xfa\x0f\xfc\xef\x54\x37\x95\x79\xcd\x31\x2f\x9b\x42\x48\x39\x26\xce\x12\xbf\xba\x94\x50\x15\x7c\xf5\xd6\xb0\x69\x19\x21\x96\x37\x44\x45\xfd\x49\x34\x21\xea\x55\xa0\xfe\xfe\x5d\x0e\x04\xeb\x52\xc7\x92\xc3\xbb\x13\x08\x5e\x19\x5d\xb5\x8b\xaf\x2d\x20\xb8\x5d\x79\x19\xe6\xc6\x72\x22\x34\x6b\xb4\xa6\x6e\x75\xac\x62\xa1\x2d\xc5\xa4\xeb\xc2\x5a\x2d\x02\xdf\xed\xb4\x3d\xd9\x46\xb6\x2c\x2c\xfa\x1c\xf3\xc3\x9e\xae\x12\xae\x59\x57\xba\x8f\xaa\x4e\x27\x38\xac\x97\xc8\xb1\x0a\x93\x26\xa4\xc9\xa5\x95\x4d\x99\x2b\x41\xe8\x5f\xbb\x7b\x55\x41\xb9\x2e\x41\x7a\x74\xd7\xf6\xf7\x57\x42\xd9\x10\xb2\x32\x83\x09\x59\x66\x48\x30\x70\xdc\x3f\x50\xe0\x34\x8b\x50\x30\x3d\xf4\xb5\x4d\xe9\x26\x36\x28\x3e\x3a\xbe\x68\x30\xfc\x7e\x09\x32\x5f\xde\xfe\x62\x95\x23\x47\xd0\x33\x75\x59\x72\x33\xa6\x9d\x81\x4e\xbf\x64\xcb\xb5\x64\x7e\x82\xfb\xc5\x45\xa3\x0d\xd6\xd6\x6c\xe0\x50\x58\xf2\x3a\x91\xb7\x9e\x41\x01\xba\x56\x59\x0d\x87\x13\x3a\x0b\xda\xc3\x33\x3a\x3f\x31\x08\x18\x58\x98\x16\x93\xc7\x43\x50\xef\x9d\x2b\xf1\xa5\xf5\x00\x21\x48\x4e\xbb\x27\x54\x4c\x9f\xf0\x75\xa8\x40\xe0\x50\x5a\x36\xe1\xdd\xec\x97\x8d\xfb\x33\xb3\x09\xa1\x3f\x37\x25\xe5\x0d\x65\xb0\xe0\xfb\xa8\xb4\xf0\x5f\x29\xbb\xed\xed\x27\x26\xe0\x42\xb8\x3f\x75\xed\x8c\xe9\x3d\x4e\x84\xf7\x3f\x5e\xe9\x99\xa7\x6d\x27\x7c\xe0\x7e\xfc\xc6\x28\x86\xbd\x68\x17\x7b\x7d\x6c\x38\xb2\x9b\x90\xb8\x7f\x96\x68\xcd\x6e\x59\x82\x9b\xf3\x85\x6a\x73\x2b\x2e\x42\xff\x9c\x83\x26\x5c\x47\x3c\x59\x28\xe6\x2b\x9b\xda\xfd\x46\x83\x50\x55\xb9\x78\x9d\xda\x19\x55\x42\xe4\x11\x73\x8e\xc5\x31\xce\x84\xe9\x67\x5e\x51\xc1\xc6\x18\x16\x84\xff\x1a\x88\x56\xd4\x2f\x24\xdc\xd8\xb4\xa5\xf5\x5a\x5e\x2d\xc1\x30\xc5\xb5\xd1\xf9\x41\x09\xc1\xd4\x36\xf4\x3b\x57\x76\x2e\x41\xa9\x69\xc2\xe6\xa7\x35\xd5\x84\xa8\x85\x2e\x83\x56\x59\xb9\x84\xed\x6f\x5d\x63\x9f\x86\xa8\x13\x34\x96\xf9\xa9\x57\x1e\x1c\x61\xb0\x77\xde\x67\x23\x51\xdf\x64\xc2\x4b\x3b\xbe\xd1\xde\x79\xc9\x84\xe4\xd3\xf7\xc5\xfe\x95\x25\x8a\x16\x91\xdc\xc5\x11\x04\x8d\xa0\x9d\x22\x45\xed\xce\x04\xc3\x0d\x47\x5a\xa5\x7c\xb8\x09\x2a\xf6\x27\x9b\x1f\x24\x88\x11\x84\xfe\x44\x6f\x5a\x11\x3d\x83\x20\x66\x5a\xe9\xcc\xdf\xec\x47\x48\xcb\x5e\xfb\xe4\x9b\x9d\x08\xe1\xfd\xc0\x14\x26\x64\x7e\x36\xe1\xf8\xb1\x88\x4b\x07\x5a\x67\x10\xca\x4e\x45\x3f\x3a\x5d\xf7\x96\x81\xe4\x85\x73\x49\xa9\x1b\x95\x08\x49\x1f\x7d\xa6\xbe\xe6\x5c\x48\xf8\x5a\xef\xf9\xf7\xfb\xf5\xc9\x84\xac\x79\xce\x22\xef\xbb\xe4\x08\xbb\xce\x8b\x77\xff\xb9\xea\x4d\xe8\x9a\xfc\xfa\x41\x4d\x9c\x36\xe1\x90\xba\xe6\xf4\xd7\x6d\x72\x04\x47\xb1\x6b\x97\xa5\x9d\x2b\x59\xe3\xc5\x2c\x32\xe1\x90\xb4\xf8\x00\x83\x1f\xe6\xa3\x66\x4e\x43\x3a\x84\x4f\x4b\xec\x0b\x97\x88\xa4\x10\x8a\x5e\x97\xd8\xb4\x47\x49\x12\xca\x15\x26\x36\x64\x4e\x9e\x45\x58\x2a\x73\x75\x06\xfe\x88\x13\x78\x9c\x2c\x46\x76\xc7\x71\x12\x0a\x9a\x0d\x92\xf7\xd4\x46\x10\x92\x3f\xb4\x7b\xa4\x29\x16\x13\xe4\x92\x63\xae\x98\xba\x14\x13\x3e\xcb\xac\x11\xba\xd5\xbe\x91\x90\x3d\xdf\x72\x3d\x3d\x8c\x23\x4c\xb7\x6e\x56\xf7\x1b\xf1\x23\x54\x0f\xce\x33\x91\xce\x77\x21\x7c\x8d\x5e\xe5\xfb\xa2\x55\x9d\xe0\xbd\x4c\x62\x93\x48\xfc\x35\x16\xee\x9f\x7f\xe4\xb6\x5a\x73\x1e\xa1\xcd\xd8\xd2\xba\x7d\xc6\x03\xc2\x47\xe9\xec\xba\x27\x5f\x53\x08\x13\x69\x6d\x94\x84\xc4\x03\x82\xf2\x96\x79\x5f\xa4\xe7\x2e\x24\x5c\xeb\x15\xd4\x58\x7d\x24\x88\xa0\x7d\x45\x5f\x7a\xca\xdb\x33\x6c\xc5\xbf\xb2\x5a\xba\xe7\xe8\x31\xc2\xd5\x2d\x21\xe5\xa7\x79\x8f\xb3\x15\x0e\x01\xdf\x3b\x7b\xbb\xfd\x08\x6f\x37\xea\xce\x68\x91\xd7\x21\xbc\x2e\xb9\xdc\xb1\xdb\x6e\x1a\xe1\xe1\xe7\x93\x51\x17\xad\x0d\x09\xb3\x1b\x5b\x78\x5b\x58\x33\x09\xfa\xaa\x1e\xc7\xfa\x5f\xf6\x31\x08\xd5\xf1\x3b\xfe\xb7\x4a\x8c\xc6\xf1\x79\xca\xea\xf7\xcd\x38\xce\x60\xb4\xa6\xdb\x34\xeb\x42\x34\xe1\xd8\x09\xde\xa0\x09\xb6\xd2\x84\xe4\xab\xed\x4b\x6b\x5d\x54\x08\xdc\x8d\x83\x8a\x47\x6b\x5e\x31\xb8\xf4\xb0\x46\xef\x36\x47\x30\x61\xe6\xaf\x25\xe2\x3e\x4b\xfd\x09\xd6\x5f\x83\x83\x1f\xb4\x97\xb2\xf0\xa2\xb0\xe8\x9e\x04\x6b\x94\xc1\x3d\xc7\xc9\xaf\x24\x34\x22\x58\x78\x95\xf1\xfd\x6d\xda\xa9\x78\xc2\xe0\x45\x9f\xad\x4d\xe9\x66\x04\xd7\xf4\x16\xe3\xfc\x95\x89\x84\xfe\x6e\x9d\xc1\xfb\xb7\xfc\x08\x1f\x4a\x25\x8d\x1a\xf9\x76\x12\x6c\x5b\x2e\xd5\xee\x3e\xdc\x49\x38\xfd\x6c\x56\x50\x76\xc6\x27\x1a\xaa\xd5\xca\xd8\x3b\x16\xec\xbe\x8e\x94\x55\x9e\xba\xc3\x82\x15\x6b\xe3\x9b\x3a\xc7\x32\xc2\xed\xd7\xa6\x86\x85\xa6\x69\x84\xa1\x54\x9f\xd0\xb3\x9d\xbb\x08\xbe\x9a\xbb\x24\x3c\x5d\x57\x10\x8e\x2e\xa9\x9e\xc7\x2f\x26\x49\xd0\x9f\xbf\xca\xea\xdd\x5c\x33\x42\x73\xb1\xdf\x9a\x09\xb6\x1a\x84\xb3\x17\x4e\x1e\x9a\x3a\xff\x22\x0b\x97\x47\xf3\xb2\x0b\x37\xf2\x13\x1a\x52\x6b\x9b\xac\x6d\xb4\x08\xcb\x7f\xe5\x94\xa7\xe9\x6e\x23\xac\x3d\xfa\x36\xd3\x95\x4b\x92\x10\xad\xbd\x4e\x29\x3a\x38\x91\x05\xcb\xc7\x4d\x9f\xd4\xda\xc5\x09\x8e\x86\x93\x07\x35\x62\x37\x12\x1e\xac\x16\x3e\x27\x94\x17\x4a\xf8\xbb\xed\x51\xc3\xb2\xf3\x91\x04\x3e\xdb\xda\xb2\x83\x51\x47\x08\x77\x8f\xed\x0e\x4c\x9c\x19\x44\x38\xb1\xa6\xfa\xf0\x85\xf0\x32\x16\xe8\xdd\xd6\x42\x51\xeb\x00\xc2\x46\x19\x9d\x37\x1d\xdb\x13\x08\x16\x0e\x49\x13\x5f\x9b\xad\x27\xf4\xbe\xa9\x9a\x76\xad\xf6\x20\x41\xff\xab\xef\xed\xc2\xca\xa9\x84\x46\xdb\x35\x79\xce\xc1\xd3\x09\x12\xef\x5e\x64\x09\x0f\x1b\xb2\xa1\x40\x39\xd1\xf3\x6d\x87\x1e\xa1\xea\xc6\x55\x75\x9f\x98\x7d\x84\xb4\xd1\xe4\xbe\x03\x8d\x82\x04\xef\xf2\x80\xc8\x6c\x37\x33\x36\xac\x53\xe7\x7e\x3c\xea\x1d\x48\xb8\xf3\x50\xab\xd1\xbb\x36\x9b\xf0\xb1\x6f\xa0\xf0\x5f\xb9\xc0\x6d\x53\x90\x97\x76\x82\xb0\x5f\xf1\xe7\xe9\x45\x72\xe5\x0c\xee\xd4\x2d\x4e\xd7\x31\x70\xa2\x71\x28\xd7\xe7\x76\xdf\x6f\xf9\xc6\x60\xad\xcd\xda\xc2\xe7\x9e\x5b\x08\xef\xb3\xa3\x97\x1a\xed\xd0\x26\xbc\x58\xb3\x79\x5a\x4b\xb2\x10\x61\x61\x5c\xef\xfb\x1d\x3c\x47\x09\x3a\x1b\x23\x4e\x4b\x9c\xdd\x46\xd0\xf6\x3a\x50\x38\x73\xa7\x27\xc1\x62\x81\xa6\xee\x9f\xd7\x3a\x04\xe3\xcc\xea\xdc\x53\xb7\xe7\x12\xfe\xbc\xed\xea\xda\x14\xfa\x86\xc1\xa6\x09\x75\xfe\x76\x7b\x46\xd8\x90\x5e\xef\x28\xfe\x45\x60\x12\x61\xc7\x23\x49\x0e\xeb\x8f\xd3\x08\xa7\x02\x87\xb3\x17\x3d\xfa\xca\x60\x9e\x5b\x81\x49\xc0\x7c\x09\x42\xb0\xb2\x74\xdc\x1c\xee\x12\xc2\xc6\x6f\xfe\xc6\x67\x0e\x56\x10\x4e\x36\x87\x9f\x14\x1b\xda\x4b\x30\x1b\x9c\xf0\x66\x51\x5e\x1f\x83\x07\x7f\xdf\x4c\xfd\xb2\xad\x86\x20\xf8\x5b\x6f\x78\xda\xf2\x26\x82\xdb\x22\x4f\x65\xd1\x13\xf6\x84\x88\xf0\xfe\x19\xd1\x39\xea\x84\xe7\xa5\x7b\x38\x3e\xfd\xd9\xc0\x06\xd1\xb8\x32\x95\x54\xff\x8e\x12\x58\xae\x9e\x53\xa0\xb8\x65\x01\x21\xdd\xe9\x90\x42\xf1\x69\x11\xc2\x86\x1c\x65\x19\xcf\xab\x1f\x19\x34\xe6\x71\x19\xa7\x59\x18\x13\x1c\x35\xae\xe5\xd4\xb6\x97\xb3\xc6\xf1\xe7\x5b\xc8\x95\x7f\xf8\xac\x7d\xfd\xd7\x9e\xcd\x65\x84\x51\xbd\xa9\xac\x6f\x67\xab\x08\x67\x1e\x3c\x38\xfb\x7d\x0c\xe6\x7e\x99\x8d\x91\xbb\xa3\x58\xd8\xfa\x3d\x78\xed\xbf\xf2\x56\xed\x82\xb3\x52\xdd\x79\xc2\x36\xc6\x3b\xdd\x74\xfb\xc1\xff\x42\xac\x76\xe7\xec\x86\xc6\x33\x84\x80\x89\x11\x05\xbf\x25\x97\x13\x64\x5a\xa4\x39\x7f\x5c\xdf\x4a\x68\xfc\xca\xf0\x4c\xbd\xae\x42\x10\xb9\x1f\x2d\xab\xf5\x71\x2d\xc1\x91\x77\xd7\x0d\xc3\x45\x61\x2c\xb4\xe8\xd6\x7f\x69\x3a\x37\x91\xc6\x11\x5a\x16\x69\xa4\xbe\x7c\x31\xe1\x77\xbb\xdb\xf7\x0f\x67\x35\x09\x3e\x25\xb2\xee\x6a\xd1\x3f\x18\x7c\x63\x9a\x9b\xf4\x0e\xab\xd3\x38\x4a\x4f\x2f\x50\xf5\xc8\x6f\x61\xc6\x71\x77\x62\xe8\x1e\x3d\x7b\x0b\x1a\x87\xfa\xe1\xea\xac\xc4\xe7\x83\x0c\x2a\x86\x6e\xcf\x7e\xa5\xb2\x9c\x10\x24\x75\xe7\xc0\x87\xf8\x60\xc2\x90\xa0\x51\x41\xdb\xb2\x1f\x0c\x14\xb2\x42\xfc\x3b\xea\xce\x10\x22\x7d\x6d\x9a\x36\x0c\x73\x10\x36\xbc\xd5\x15\x32\x2b\xfb\xce\xc0\xdd\xe5\xb6\xd3\x33\x51\x21\x1a\xc7\xd6\x2b\xc2\x98\xa5\x52\xc3\x8c\xe3\x5a\x9e\xab\x61\xd9\xcb\xef\x0c\xea\xfd\xfc\x6b\x0d\x6d\xe5\x68\x1c\x4d\x19\x95\xd2\x52\xc1\xb6\x84\x25\x06\x6f\x2d\xfa\x1c\x57\xb0\x81\xc3\x56\xc4\xf0\x3e\x87\x26\xa1\x6a\x4a\x88\x50\xe8\x4b\x49\x36\x34\xf3\xd4\xc6\x04\x3b\xf3\x11\xe2\xce\xde\xc9\x49\xfa\x2e\x47\x08\xb1\x63\xf9\x29\x0b\xfb\x12\x4c\x6d\xe2\x0e\xfe\xd5\xba\xcb\x86\x97\x07\x1c\x7d\x38\x65\xe3\xd9\x10\xa7\x65\x64\xe9\x52\x16\x4e\x78\x36\xad\x28\x99\xbf\xf6\x2c\xe1\x57\x6d\x99\x82\x73\xa8\x3d\x41\xeb\xaa\xbb\x5b\x41\x5d\x20\xe1\x65\xc0\x0e\xdb\xe7\xeb\xed\x08\x0a\xd3\xda\x4e\x7e\x9c\xf0\x9d\x81\x43\xdb\x95\xc2\x22\xd7\x2c\x1a\x87\xce\xd7\xc6\x5b\x59\xf5\xa5\x2c\x4c\x7e\xfa\xe3\x24\x45\x5d\x67\x61\xe2\xb2\x79\x4b\xfe\x8d\x4e\xdd\xe0\x0e\x26\x4b\x07\xc2\x68\xf6\x04\xbb\x0e\x0b\x07\xb6\xf2\x3f\x94\xed\x72\xd6\x6b\x95\xdf\x4d\x58\x32\xe7\x95\xfc\xf6\x8e\xe7\x84\x4b\xbc\xb5\x65\x6f\xd7\x64\x10\x42\x9b\xae\xa6\xbe\x1b\x43\xba\xd9\xab\xbd\xfb\x37\xc7\x12\xfe\x18\xd7\x5c\xee\xfb\x15\x41\xc8\x32\x8b\x58\x74\xda\xad\x84\xd0\x51\xe6\x8a\xb0\x31\x1c\xf5\xdf\x7e\xe9\x63\x6e\x14\xe1\xab\x9d\x5b\x52\xf0\x58\xf1\xd6\x6d\x98\x9d\xe5\x51\x42\xd0\xeb\xba\x36\xcd\x35\xfd\x30\x41\x50\x92\xfb\x90\xd4\xd5\x24\xb6\x22\x10\xe6\xa3\x69\x6d\x2e\x45\x10\xb8\x53\x3b\x63\x99\x80\x18\xe1\x72\xfc\x09\xbe\x05\x5f\x22\x59\xf0\x15\xbf\xb2\x47\x67\x12\x0f\x41\x54\x55\xb2\x39\x36\x62\x3e\x1b\xcc\x24\x34\x74\x06\xe5\x67\x13\xe6\x3e\x16\xf2\xd5\x31\x91\x21\xb4\x99\x85\x6e\x5c\xc6\x25\x42\x98\xf2\x6c\xb0\x4b\xf0\xcf\x54\xc2\x87\xf5\x35\xf3\x3f\x5d\xae\x61\x60\xda\xb9\xe0\x52\xe8\x83\xf5\x84\xc0\x79\x31\xcf\x37\x17\x09\xb3\x21\x6a\xfe\xa5\xa2\xdb\xbf\xf8\xd9\xc0\xcb\x70\x66\xf3\x26\x58\x33\xe8\xd9\xb3\xd2\x86\x93\xdf\x8a\xd0\xcc\x3c\x7b\xa6\x1c\x9d\xc0\x82\xaa\x61\xa1\xdc\xe3\xcb\x92\x84\xcd\x6b\xef\xc7\xf3\x38\x5e\x21\xe4\xad\x7c\xd4\xa5\x3c\x24\x44\xe8\xfe\x1d\xab\x25\x50\x31\x81\xa0\x2f\x3c\xba\xd5\x37\x66\x35\x21\xbc\x21\xca\x5a\xc0\xb2\x93\xc1\x64\xe6\xdc\x60\xee\x05\x2e\xfa\x0f\x98\x74\xb8\x68\x70\x56\x9e\xf8\x2f\xf4\x54\x6f\x71\x63\x2e\xcf\xa0\xa1\x83\x22\xa3\xb8\xa8\x46\xf8\x2d\x99\x5a\xad\x77\xe0\x1a\x0b\x4b\x53\x54\x62\xf6\x0c\x1c\x22\x3c\x96\xae\x0b\xd5\x2b\x9f\x4d\x60\x3d\x7b\x71\x5c\x7f\xea\x75\x82\x6f\x88\xfc\xdd\xcb\x3f\x4b\x09\x62\x7c\xc6\xcf\x04\xcf\xea\x13\xb2\x6f\x6f\xbb\x17\xb3\x53\x87\x10\xb4\x51\xde\x5d\xa2\x47\x86\xa0\x7a\xae\x24\xc2\x56\x4e\x82\xa0\xf0\xba\xe2\x6d\x6c\xb2\x3b\x83\xb3\x0a\x86\x8f\xa7\xfd\x51\x26\xec\xb8\x24\xf7\x2b\x25\xe0\x17\x83\xa3\xa3\x5d\xbe\x7c\x5e\x3a\x34\x8e\x76\x95\x1a\xe7\x33\x05\x2b\x08\xe5\x9b\x79\xbf\xb3\x0e\x05\x12\x74\xf8\x38\xab\xdd\xe3\xe4\x08\xca\x8a\xa9\xed\x69\x5d\x02\x84\xac\xd6\x3f\x71\xae\xd5\x5f\x19\x1c\xb3\xf6\x57\x93\x38\x40\x84\xe5\x8b\x6e\x3a\x2c\x1e\x36\x26\xfc\xa8\xb7\x5d\x70\xa3\x52\x8d\x70\x2f\xa2\x3d\xff\x4d\xeb\x42\x82\x8c\x3a\x4f\x83\xc5\x95\x08\x16\x16\xfc\x8d\x92\xf6\x94\x79\xcb\xc0\xfb\xf2\xae\x85\x29\x75\xf7\x08\x52\x3d\x57\x73\x22\x13\x3e\x11\x0e\x44\x19\x2f\x7e\xb3\xe3\x0d\x0b\x3f\xee\xd7\x7b\x38\xbd\xbd\x47\xf8\xe4\x10\x1e\x2f\x21\x75\x9f\x90\xf7\xf6\x8a\x71\x46\xa5\x2c\x21\xde\x20\xc5\xd9\xcd\xe7\x26\xc1\xe6\x64\xf8\xcb\x94\xbd\xcf\x09\x81\x16\xef\x83\x1e\x94\x3f\x25\xa8\x7e\x3a\x92\x96\x3c\x56\xe6\x5f\x1a\xd8\x9d\x38\x75\x3f\xc1\xfc\x8c\xb7\x88\x7f\xfc\x56\x42\xa2\x9b\x73\x5c\xf0\xb6\x32\x42\xf0\xe8\xfa\xaf\x47\xc7\xca\xff\x70\x74\x18\xee\xd5\x66\x1b\x08\x2f\xef\xf9\x14\x35\x4d\xb9\x4a\xe8\xf3\x17\x97\x95\x54\xe6\xfa\x2f\x70\xfa\x38\x9a\xf0\x2a\x4f\x20\x78\x2e\x18\xda\x6e\x59\x90\x44\x78\xd7\x35\x5d\x76\x53\xec\x15\x42\x13\x23\x27\xcc\x57\x21\x47\x58\x64\x59\x78\x58\x4c\x66\x32\xe1\xdc\xd2\xd8\xae\xc7\x17\xf3\x08\x7b\x57\xeb\xa6\x2a\xdb\xe6\x10\xbe\x5c\x34\xc9\xcf\x10\xac\x27\xc8\x0b\x16\x34\x5e\x13\xfe\x45\x90\xf3\xdf\x91\x10\x39\x86\x0f\x67\x26\xfd\xde\xb5\xa9\x84\x90\x15\x6c\xe0\x3c\xf5\x63\x29\x61\xc6\x1f\x8f\x84\x82\xc9\x69\x04\x87\xd6\x4d\xf2\x74\xb8\x8c\x90\x6e\x79\x71\xb7\x42\x62\x1d\x61\x30\xc0\xc5\x3a\xa4\xb5\x9f\x81\x65\xea\x9e\xb8\x62\xd7\x25\x04\xdf\x05\x6a\x17\x2d\xda\x14\x08\x17\xdc\x34\xbc\x8f\x28\xbc\x27\x58\x56\x26\xa5\xfb\x8c\x61\x5a\xc1\xcc\x83\x86\x19\xb9\x84\x25\x93\x96\xe7\x34\x65\x5d\x61\xe1\x6e\xe4\x7a\x2f\x8f\x1f\x9e\x84\x9e\x87\x93\x67\x5d\xba\x98\x46\x88\xd7\xf3\xca\x51\x6f\xaa\x23\x94\xcf\x76\x3c\xe7\x54\x9e\x47\x70\xb1\x3d\xf5\x7d\xf1\x6a\x3b\x42\x75\xe0\x3b\xd6\x7d\xce\x39\x6c\xe5\xc0\x7c\xcf\x2d\xc2\x59\x7b\x09\xf9\xa6\x6f\x4d\xdf\x4d\x92\x23\x3c\x97\x95\xee\xf7\xce\x2d\x23\x94\x3d\xcc\x6d\x53\x5f\xcf\x22\x7c\x15\xe4\xaf\xf0\x54\x8e\x27\xa8\x4d\x6e\x76\x6c\xaa\x69\x2b\xc1\x9d\x2d\x85\x61\xc5\xeb\xa4\x09\x73\xdd\x5e\x5f\xf7\x53\x7f\x40\x38\x5e\x3b\xfb\xe1\xe9\xc6\x1c\x42\xa9\x52\xd4\x5d\xf9\x68\x65\xc2\xa5\x57\x37\x86\x56\x39\xb6\x11\x1e\x1d\x4a\xef\x5a\xd7\x99\x4b\x30\x12\xb2\x3d\xee\xe2\xd3\x4e\x30\xe4\x3d\xc2\x2b\x16\x90\x44\x38\x66\x7a\x3a\xe6\xba\x68\x12\x0d\xc9\xc5\x06\xdb\x94\x26\x11\x74\x94\xec\x2a\x2f\xe7\x9f\x26\xc4\xb4\xc5\x2f\xe0\xbb\xb7\x9d\x50\xdb\xd9\x2b\x2a\xb4\xab\x99\x41\xf3\xe4\xc0\x67\xba\x8e\xcb\x69\x1c\xad\x49\x3b\xd6\xed\x3b\x9f\x48\x58\xb7\x5c\xdb\xf7\xd0\xe2\x5a\xc2\x11\xa5\xf3\x2e\x4a\xb7\x7e\x31\x88\x08\xac\xdd\x1b\x7c\x58\x88\x20\x76\xef\xbb\x63\xc1\xf3\x76\xc2\xf4\xe7\xe2\xc2\x4e\x7b\x5a\xc7\xae\xb7\x61\x5a\xfe\x58\x19\xe1\x5c\xe0\xa7\xda\x91\x4f\xf0\x2f\xbc\xef\x14\xf5\x25\x90\xe0\x16\xf3\xe6\x53\x7a\xa3\x2e\x81\x7f\x43\x68\xfb\xd1\xd4\x15\x84\x35\x27\xb6\x9e\x94\xcd\x98\x40\xe8\xbb\xf3\xfa\xef\xc0\x84\x0b\x6c\x18\xaa\xf1\xde\xc8\x35\x7b\x01\x21\x6f\xe6\x66\xbf\x62\xc7\x51\x06\x1e\xae\x95\x4f\x4f\x2b\x70\x10\xb4\xd6\x76\x76\x17\x87\xea\x11\x8c\xef\xeb\x7d\x1e\x3a\x6a\x4d\x70\x9b\x5a\x34\xb1\x45\x46\x94\x30\x72\xc3\xc0\xed\xb4\xb4\x08\x0d\xf9\x95\x14\x7f\xb6\xe4\x22\x54\xa9\x08\x2f\x1d\xe5\xbd\x40\x28\x5a\xd9\xef\x78\xd1\xc7\x85\x0d\x56\x4b\xd6\x6d\x3d\xdb\xbf\x90\x70\xf6\xb1\x46\x7e\x56\x5d\x08\x41\xa0\xcf\xa0\x5b\x3a\xf4\x10\x41\xdb\x7b\xb5\x8f\x7c\x92\x3c\xa1\x51\xe6\x8d\xda\x95\x00\x41\x36\x1c\x1c\xcc\xc9\x36\x7f\x5f\xc0\xe0\x43\xf6\xee\x02\xe1\xf0\xcf\x0c\xf4\xa5\x02\xb4\xb3\x8d\x56\x12\xba\x0a\xaf\x47\x7b\xdd\x5a\x46\x98\xfd\xc7\x87\x47\x63\x95\x0a\x61\xf3\xed\x6b\x46\x17\x2e\x1f\x23\x1c\x58\xff\xfd\xd3\x15\xa1\x6b\x2c\xdc\x7c\x2e\x95\xb4\x73\x96\x01\x41\xec\x5c\x75\xae\xf1\xc8\x25\x42\x4e\xf0\xe7\x24\xfe\x12\x2b\x36\x88\xee\xb5\xda\xab\xbf\x40\x98\xa0\xc3\xbb\x8b\xb9\x94\xa7\x4c\xd8\xdf\xb9\xcb\x2f\xdd\x20\x9f\x70\x28\x84\xce\xde\x75\xf7\x20\xc8\xcb\x0a\x1a\x4f\xaa\x08\x22\x0c\xf2\xed\xba\x97\x5a\xe4\x46\x90\x7c\xac\xff\xed\x9a\x6b\x36\xdb\x68\xf3\x86\xea\x81\xd3\xd2\xa1\x84\x87\x93\xab\xf4\x04\x9e\x5c\x24\x0c\x6f\x3d\x6f\xc6\x3c\x4a\x25\x48\xcd\xed\x78\x3a\x7c\xe8\xdf\xcf\x81\x45\xfc\x94\xfa\x73\x81\x60\x39\x74\x9d\xce\xb4\x5d\x22\x0c\xca\xcb\xdf\xe1\x72\x38\x4e\xd0\xbf\x34\x35\x71\x57\xa7\x0f\xa1\x49\xf2\x40\xaa\xfe\xdc\x03\x84\x86\x75\x1f\x22\x96\x84\x4e\x24\xb4\x5d\x8c\x37\x12\xd4\xb4\x62\xc3\x5a\x27\xd9\x8c\xa6\xdf\x82\x84\x0d\x7c\x0b\xbf\x7f\x38\x5b\x41\xb8\xfb\xd8\x74\x02\x6b\xb3\x0f\x0b\x03\xfb\x9b\x4b\x1a\x67\x70\x12\x34\x79\x1a\x94\x2b\x1a\x14\x09\x5a\x8a\x81\x3e\x52\x85\x5d\x0c\x86\x3e\xab\xae\x8a\xed\x10\xa0\x71\x68\x2f\x57\xf0\x53\x30\x10\x23\x8c\x84\x89\xce\x0a\x5a\xa2\x49\xb0\x7d\xbe\xa3\xe3\xc6\xa8\x14\xa1\x71\x7e\xd9\x01\xf7\xcd\x05\x84\x73\xff\xfe\x2e\xd4\x07\x06\xb6\xad\x17\x66\xd6\x2f\xa9\x24\x0c\xaf\xd2\xac\x88\x48\xd5\x27\x44\xe5\x88\x27\x6d\xb6\xab\x22\x1c\x99\x72\x27\xe5\xe4\xd6\x2a\x42\x6e\xfe\x55\xdd\x2d\x63\x25\xcb\xf6\xe4\xb3\xd1\xd6\x70\xc2\x94\x34\xdd\x17\xd1\xac\x0c\x42\xab\xee\xd5\xfd\x7a\xe5\xc7\x08\x83\x65\xca\x42\x85\x16\xfb\x08\xe2\x8e\xfb\x5d\x38\x02\x3b\x19\x54\x04\xde\xfd\x92\x93\xc8\x4f\xe3\x78\x95\xcb\xcd\xa1\xf9\x45\x82\x20\xd0\xff\x92\xb5\x70\xec\xe4\x17\xbe\xaa\x71\x2c\xe3\xe1\xa6\x71\x74\x3f\xc8\x99\x74\x55\x61\x09\x5b\x39\x3e\x47\x33\x76\x81\x8b\x02\x1b\xae\xca\xeb\xc5\xcb\x24\x48\x12\x2e\x7c\xee\x9b\xa1\xf2\xe2\x39\xc1\xf3\x42\xe2\xdb\x7d\xf7\x5e\x10\xb6\x55\xbc\x5f\xb1\x7f\x0c\xd5\x9d\xeb\x3b\xb9\x4d\x9e\x13\x74\x4a\x9c\x62\xfe\x8d\x4a\x79\xfc\x02\x86\xee\x26\x10\x1a\xf3\x82\xf5\x72\x1a\x2f\x13\x78\x04\xcf\x69\xec\x4b\xbf\x4e\xc8\xde\x7e\xdd\x7f\xcb\xf5\xe3\x84\x0f\xee\x21\x29\xf5\x23\x63\x9f\x87\x79\x4c\x34\xb1\x37\x85\xf0\x71\xb9\x48\x88\x2c\x56\x10\x24\x4b\xbe\x78\xce\x6e\xaf\x67\x20\x31\x77\x2b\x9f\x7d\xb0\x0f\x61\x55\xc8\x93\x5c\x1b\xd2\x22\xec\xb8\x78\xfc\x74\xf8\x74\x01\xc2\x95\x6e\x2f\x8e\x94\x81\x05\x04\x53\x9d\x23\xb2\x43\xcf\x67\x11\xb8\xe7\x5b\xe7\xf0\x1f\x0a\x25\xec\xf3\x9d\x59\xcb\x9a\xe1\xc4\x06\xe7\x3b\x5e\x51\x8d\x25\x63\xeb\xc2\x53\x3b\x5a\x3a\x54\x8a\x90\xff\x58\x75\x97\xc6\x3e\x6d\x36\xb0\xec\x83\x15\xbf\x74\x48\x11\xf6\x08\x8a\x6e\xbb\x55\xfa\x95\xc1\xf3\xc5\xb3\x7f\x18\x6a\x0b\x10\x2e\xfe\x7d\x97\xc2\x67\x5a\x4f\x58\xc5\x68\x9f\x95\xb4\x2d\x26\x8c\xae\x98\x28\x34\x60\x7f\x9f\xf0\x75\x34\xc9\x7a\x42\x7d\x20\x0b\x2d\x1f\x46\xb5\x17\x8f\x5d\xe7\xf7\xfb\xaa\xa7\xd5\x39\xaa\x12\xe4\x5f\x49\xce\x37\x7b\xba\x8b\xc6\x4b\x78\xc3\x23\x56\x41\xd1\x1b\x06\x65\xa7\xb4\xe7\xd8\xac\xbd\x4a\xb8\xf5\x6e\x66\xdc\x0c\xe7\x47\x04\x91\xca\x42\x9d\x7f\x90\x8e\x32\xcc\xd2\x7a\x5c\x44\x48\xdd\x29\x90\xa8\x78\x22\x82\xa0\xf0\x65\x8d\xe2\xdb\xf0\x64\x82\xcf\xbe\x6f\xba\x53\xc7\x6e\xb7\x5d\x6e\xee\x83\xda\x64\x7e\xc2\x0e\x8b\xe8\xe5\x6e\x31\x1a\x84\xcf\x4e\x31\x05\xab\x9a\x95\x69\x7c\x54\xd8\x74\xbc\xc1\xe3\xa7\x04\x1b\x46\x4f\x04\x9c\x91\x1e\x3b\xc3\xcb\x7f\xfd\xb2\x17\x8c\xdd\xee\xff\x5f\xac\x5a\xa8\x69\xe2\xd3\x20\xca\x06\x87\xf6\x0b\xf6\xa2\x3c\x9d\x0c\xd2\x3e\x5f\x4e\x76\x3c\xbc\x80\xc6\xc1\x67\x63\xbc\xf8\x7a\xf3\x71\x06\xe9\xf7\x9d\xb3\x8b\x1b\x27\x12\x8e\xc6\x09\x9a\x1d\x17\xe5\x61\x43\x8c\x45\xf3\x5e\xf9\xbe\xcf\x0c\x32\x42\xa3\x77\x25\xcd\x53\x20\xdc\x48\x79\xbe\xf3\x30\xc7\x41\x36\x88\x75\x94\xf5\x5f\xf2\x58\x49\xf8\xfa\x9d\xeb\xa7\x65\x08\x17\x61\xf9\x96\x2c\xd3\xac\x9d\x5c\x84\x6d\xfc\x0e\x5a\xe7\x13\x0a\x09\xb2\xf1\x61\x1e\xff\x60\x1a\xf9\x23\xef\xc6\xa5\x26\x06\x16\x41\xc5\xef\x9c\x8c\x6e\x13\xb2\x1e\x6c\x3b\xf6\x70\x4f\x03\x0b\x86\xeb\xcf\xd5\x38\x8f\x15\x96\xbf\x55\xe0\xd2\xb9\x5e\x84\x59\x57\x7e\x1c\x35\xbe\xa1\x41\x68\x81\xd4\xed\x33\x6d\x37\x09\x32\xd6\x55\x47\xb6\x35\x4a\xb0\xe1\x59\x45\x8f\xa6\x93\xcc\x6a\x82\x8a\xeb\xa9\xc2\x9b\x7d\x16\x04\xb1\xaa\xbd\x45\x53\xc6\xae\xf3\x37\xed\x17\xda\xb6\x49\xfc\x04\xed\x2f\x3f\xb4\x71\xdc\x82\xc6\x8b\x4e\xd4\x9d\x64\x8d\xb1\xf5\xb5\x7b\xa2\xe5\xb5\x7f\xf7\x7d\x75\x6d\xe6\x74\x61\x2e\x6e\x1a\x87\x2b\xe7\x8f\xcd\x8c\xa5\x24\x1b\x56\xc9\x7d\xf0\xb2\x7b\x5a\x4e\x30\xcc\x0e\x39\xd8\x3e\x29\x85\x00\xfe\x67\x1b\xbf\xad\xd0\x61\x83\x94\x4f\x57\xc7\x7d\xb5\x5e\x66\xfc\x5f\x96\x99\x37\x24\x7f\x30\x55\x96\xe0\x3b\xa4\x38\xbd\x6a\xd2\x26\x1a\x2f\x9e\x56\x8f\x14\xe7\xd8\x7f\x67\x30\xa2\xdd\x55\xb1\x50\xf1\x19\x03\xdf\x11\x5b\x95\x9e\xd8\x62\xc2\x95\xd3\xa7\x1c\x52\x22\x6b\x09\x86\xa1\x27\x1d\xfe\x95\xbd\x55\xca\x22\xbd\x63\xa8\xd0\xca\xb9\x38\x27\x3b\x98\x30\xd5\xe2\x63\xcf\x23\x46\x8b\xc0\x77\xab\xe7\xbc\xe6\x1e\x67\x42\xcc\xdd\x61\x7e\xdf\x36\x2d\xc2\xd4\xb8\x30\xc7\xaf\x1f\x15\x09\x37\x4f\x5d\x36\xfa\xa1\x44\x04\xbd\x9b\xaa\x98\x5e\xbb\x98\x30\xcf\x24\x46\xbf\x43\xfc\x06\xa1\xe5\x51\x6f\xbb\xb2\xdc\x52\xc2\x2c\x91\x2a\x8d\x15\x4f\xa6\x12\x24\x3d\x7f\x4a\xfb\x99\x73\x10\x9e\x72\xc5\x34\x4f\xdf\x32\x97\xf0\x34\xa4\xb7\xe0\xf0\xfc\xcf\x0c\x8e\x04\x2c\x98\xab\x15\xc0\x4f\xe3\xb0\xb0\x58\xda\x73\x9b\x21\xb6\xb2\x47\x69\x95\xd9\xa5\xdb\x3f\x18\x94\x67\xb6\x24\x1f\xda\xf9\x8d\x01\x22\x0f\xcf\xf4\x3e\xe7\x43\x98\x5c\x77\x63\xd1\xc1\x31\x9c\x38\xbe\x27\x67\xcd\x67\x4d\x82\x9f\xb8\x42\x95\x97\xb5\x13\xc1\xba\xcd\x24\x4b\xb3\x58\x8f\x10\x3a\x52\x7e\xc0\x77\x94\x93\x90\xd3\x18\xd8\x1a\x32\xb6\x01\xe5\x7f\xbc\x25\x25\x5c\xff\x82\xa0\xe1\x7d\x74\xbf\x06\xcb\x97\x35\x3e\x5a\x61\x50\x5e\xb6\x88\xff\x30\xe1\xf4\x75\x47\x3e\x29\xef\x32\x02\xf7\xac\x5a\x89\x82\xc2\x70\x42\x41\xb5\x95\x8f\x4a\x67\x08\x5b\xf9\x1f\xd6\x70\x1d\xfe\x90\xf8\x48\x80\x90\x1f\xfb\xac\x8e\xa5\xdd\xc5\x8c\xe3\xfc\x06\x01\xab\xc2\x00\x71\xfa\xbf\x10\xfd\x71\xe1\x13\x87\xc8\x51\x06\xc1\x1e\x91\x99\xc3\xef\x4e\x11\x16\x79\xbd\xfe\x3d\x6c\x69\x4e\x08\x74\xd9\x7e\xae\x71\x97\x06\xe1\x50\xe9\xcb\xfa\x30\x79\x1e\xc2\x9b\xec\xfa\x9d\x8b\xf3\x67\x10\xaa\xf5\xa5\x4a\xe7\xac\x9c\x40\x48\x68\xbc\x62\x9e\xae\x26\xf7\x5f\xd8\xe2\x2d\x32\xed\xaf\xfd\x1d\x06\xeb\x3f\x54\x56\x9e\x63\x66\x12\xc2\x65\xfd\x36\x08\x90\x24\x61\xce\xba\x5e\x3b\x0a\x58\x49\x90\xe5\x57\x9e\x10\x49\xda\x04\xf7\x96\xe8\xc9\xbd\x1d\x0b\xd9\xd0\x21\xaa\xb6\xab\xf7\x73\x11\x61\xd4\x63\x83\xad\x56\x7e\x0c\xe1\x70\xce\xfa\x17\xc1\xa5\x2c\x82\xad\xfa\xdc\x75\x9a\xd7\x5b\x09\x2d\xdc\xc5\x8a\x06\x5f\xea\x09\xdf\x95\x7f\xcd\x93\xe2\x6b\x25\xcc\x14\xf2\x3a\x18\x3d\x94\x48\xa8\xce\x13\x35\x9a\xf6\x8d\x35\xf6\x5f\x14\x52\x6e\xd8\x04\xc2\xfa\xba\x29\xbe\x03\xfc\x46\x04\x01\xd5\xd1\xcc\xe0\x5f\x33\x08\x07\xf5\xd6\x69\xf7\x7f\x9e\x46\x30\xfa\xea\x15\x58\xf8\x6b\x25\xc1\x33\xb4\xe1\x89\x51\x8d\x0e\xc1\xf9\x93\xab\x90\x98\x96\x1c\xc1\xba\x57\x43\xe5\xc9\x7a\x0d\x42\x99\x4f\x4f\x8f\xc8\x89\x25\x6c\x98\xdf\x5d\x58\xba\xb8\x70\x90\xc1\x40\x9f\xd9\x1d\x03\x5b\x35\x82\xb3\xcc\xb1\x39\x6e\x2b\x44\x08\x27\x8f\x24\xdc\x0c\x7c\x90\x4f\x88\xd2\xce\x48\x6a\xd9\xdf\xcb\xc0\x4f\x58\x34\x4d\xbf\xae\x9c\xc0\xa9\xf8\x2c\xf4\xe9\x9d\x1f\x0c\x2c\xd5\x0c\xc2\xfe\x2d\xea\x64\xc3\xb6\x94\x25\xdd\x53\x09\x97\x98\x89\xb7\x5f\x1b\x2a\xd1\x78\xf9\x26\x6e\xaf\xaa\x3e\xb6\xa8\xb5\xab\x6f\x7e\x94\x19\x5b\x7a\x99\xf2\x16\x43\x26\x33\xb9\x09\xb3\xec\x2e\x19\x0f\x8c\x1a\xd1\x78\xb1\xb9\x98\x75\x6e\xd6\x3a\x49\x02\x9f\xbf\x9e\xd0\x97\x8d\x03\x0c\x14\x6f\x68\x06\xcc\x59\xa2\x44\xc8\xcf\x57\x11\xc8\x58\xb7\x9e\x30\x6f\xe0\xdb\x03\x77\x9f\x70\xc2\x60\xb7\x56\xf4\xdc\x86\x1f\x0c\xda\xb6\x2b\xd5\xef\x77\xbc\x46\x30\x9c\x71\x5c\x77\x92\x13\x3b\xae\x5b\xb7\x67\xae\xee\xd9\x42\x90\x0b\xf0\xb9\x56\x11\x3a\x9b\x35\x5e\xfe\x87\x3e\xb9\xc8\x0e\x11\x43\x69\x42\x7b\x68\x1e\xe7\xb9\x40\x0d\xc2\xad\x79\x73\x0c\xcf\x8c\xc6\x12\xc2\xeb\x4e\xdd\xbc\x33\xbd\x86\xa0\x26\x77\x64\x4d\xe7\xfe\x12\xc2\x10\xf7\x21\xaf\x23\x5a\x65\x84\x41\xd1\x76\x6d\xe3\xfb\x79\x84\xed\x9e\x6b\x7e\xdf\x5d\x99\x42\xb0\xda\xa1\xfb\x40\x7a\xfe\x5e\x16\x3c\xd3\x07\x56\x18\x6c\xbd\x4c\xa8\x9b\xf8\xa2\x9f\x37\x27\x97\xe0\x24\x6d\x6f\xda\xf4\x32\x84\x70\x29\xe6\xf2\x15\x57\xab\x65\x84\xbc\x40\x53\x71\xe1\xd5\x77\x09\xc2\xbf\xfa\x92\x66\xbb\x9f\x24\xc4\xd6\x97\x67\x7f\x3a\x52\x46\xf0\x99\x15\x6f\xad\x1e\x70\x86\x05\x79\x67\x26\xc6\xe9\xc5\x6c\xc2\x42\x93\x06\xff\xac\x5c\x59\xc2\xea\x0f\x7d\xc9\xa3\x25\xae\x84\xd1\x6b\xf1\xb7\xed\x76\xeb\x12\x8e\x45\x24\xf6\x32\xcf\xa2\x59\xd8\xb1\xeb\x7c\xca\xcd\x8c\xf7\x2c\x6c\x59\x26\x5b\xac\x60\xf9\x98\xb0\xa5\xe2\x43\xc1\xaf\xd9\xd9\x84\xcb\xf7\x7e\x7e\x30\x1b\x54\x26\x54\xb7\xf1\x07\x0c\xdf\x2a\x27\xc8\xad\x51\xdf\x6c\x5c\xf3\x94\x30\x47\x79\xab\xee\xdc\x07\x4f\x09\x46\xfc\x13\xcd\xe7\x3c\xcc\x22\x0c\xe7\x1f\x9f\x5e\x9b\x5e\x4e\x70\x39\x27\x31\x6b\xb8\x3d\x8c\x50\xf0\xf1\xee\xaf\x15\x09\x96\x84\x44\x31\x05\xcf\xc9\x65\x2c\xc2\xa3\x03\xc9\xbc\x3c\xe6\x37\x08\x93\x52\x17\xc4\xdc\x72\x7f\x42\x70\x78\x59\xf8\xc0\xe6\xc2\x35\x36\x6c\xee\xba\x2c\xf0\x69\x4d\x28\xe1\xd1\xa3\xeb\x7e\x3e\x97\x0e\x12\x3e\x19\x6c\xda\x32\xc5\xf3\x14\x41\x21\xf0\xb7\x8e\xe5\xda\x83\x84\x4d\x0f\x46\x17\x2c\xbd\x91\x40\x28\xda\xf5\x49\xba\x3e\x69\x22\x21\xf5\x71\xfd\x8a\x98\xb9\x4a\x6c\xf0\x65\x19\x2f\xb5\xf1\x7b\x52\x82\x9c\xbf\x87\x56\x1a\x4f\xe0\x27\x2c\xea\xee\x3f\x6b\x3b\x31\x98\xf0\xa7\x2d\xfd\xc5\x99\x3b\x43\x0c\x0c\xee\x99\xfc\xca\xb2\x9a\x49\xd8\xf3\x64\x9a\x8a\x6f\x6f\x26\x61\x53\x60\x9a\xf7\x63\x35\x03\x82\x7b\x50\x80\xd0\xa1\xd0\x62\x02\xe7\x3e\x85\xdd\x92\xe1\xcd\x04\xc3\x06\xbb\xa5\xde\x95\x15\x84\xdd\x73\xc5\x8c\x66\x76\x17\xb2\xf0\xb6\xef\xce\x92\xb3\x79\x15\x04\x93\xae\xe7\x92\x81\x07\x6f\x11\xd2\x37\x27\xb5\xbc\x89\xb9\x4d\x30\xe1\x6a\xe7\xfb\x7a\x34\x8a\xf0\xfd\x65\xbd\xcb\x97\x6f\xa9\x04\x83\xf2\x63\x05\x3d\xdc\x79\x84\xc1\x25\x3b\x0b\x8d\xb2\x22\x08\x9f\xe4\x2e\x70\x6f\x2f\xbe\xc6\x42\x4d\xde\xae\x3d\x2f\xee\x46\x11\x9e\xdd\x62\x72\x4c\x93\x23\x59\x28\xc9\x51\xe4\x88\x9a\x7e\x87\x60\x77\xb4\x6e\x47\x8b\xff\x32\x82\x51\xc8\x83\x82\xe3\x2a\x71\x2c\xc8\x9a\x5f\xe3\x3e\xc7\xff\x97\x41\xff\xcf\xe0\xb7\x45\x32\x29\x04\xf9\x24\x9a\x76\xfb\x76\x07\xe1\xd7\x9e\x01\xef\x35\x3c\xef\x08\xc9\x9f\x36\xa4\x94\x97\xc5\x13\xdc\x4a\x07\x4c\x47\xfd\xc3\x09\xf9\x8b\xfb\x0a\x4b\xf3\x92\x09\xe9\x67\x7e\xd0\x23\xa5\x32\x16\x04\x47\xde\x6c\x74\x9e\x74\x94\x20\xd3\x69\xb0\x65\x52\x7a\x18\x21\xf3\x48\x33\xa7\xdb\xc0\x00\x03\x65\x8e\xac\x67\x25\x3e\xcb\x09\x01\x3b\xbb\xf9\xa6\x89\x2b\x11\xca\x92\xca\x17\x4d\xd6\xfe\xc5\xe0\xf5\xc2\xe1\x9b\x77\xbe\x99\x11\xae\xaf\xca\x8c\xcf\x7a\x21\x4f\x58\x6c\x96\x62\x6f\x2b\x24\x4b\xa8\x3a\xdc\x34\xfd\x2d\x17\x07\x81\xeb\xc2\x1b\x8d\x05\x51\xdf\x18\x54\xef\xe6\x92\x6b\x31\x5d\x46\x10\x6a\x2e\x5f\x10\x6e\xfd\x8d\xc1\x91\xe7\x2a\xf5\x7f\x46\x0e\xd1\x38\x5c\x6d\xda\x4b\xdc\x05\xa7\x13\xe4\x1a\xce\x29\xc7\xd9\x3f\x26\x6c\x6d\xe5\x6b\x59\x7a\x56\x95\xd0\x75\x88\x47\x33\x32\x66\x12\x41\xf5\xec\x04\xd3\x89\x6d\xbc\x04\xd7\x53\x76\xf3\x86\xfb\x84\xfe\x4f\xbc\x8b\x91\xad\x7b\x77\x26\x92\x85\xdd\x3e\x72\x16\x09\x7a\x53\x09\xd9\x4b\x07\x63\xcc\x3f\x7a\x11\xba\xf9\xee\xae\xc9\x51\xb4\x27\xf8\xff\xd9\xed\xd0\x73\xcb\x9c\xf0\x8b\x75\xec\xd3\x43\xdf\x95\x84\xa7\xe2\x0d\x75\x31\x1b\x2f\x12\xfa\x65\xba\x9e\x70\x6c\x7d\x42\xa0\xf9\x8b\x9a\x78\x5b\x8a\x08\xdc\xc7\xd6\xef\xe8\xd6\x7a\x4a\x38\x37\x7b\xb9\x71\x8d\x55\x24\x0b\xce\x29\x56\x2b\xc5\xfe\x9e\x21\x98\x74\xbf\x78\xfb\xe0\x50\x0c\xe1\xc7\x7e\xaf\xa1\x4f\x11\xb7\x58\x58\x6d\x9a\x93\xbc\x29\xe9\x04\x41\x75\xcd\x55\x39\x8b\x30\x49\x02\xbf\x55\xdb\xbd\x57\xe2\x4b\x09\x8e\x6d\x6d\x2b\x2e\x3d\xb1\x22\x9c\xce\x3c\xf9\x14\x73\x2d\x08\xd7\x4c\x3f\x4f\x5e\xd9\xf5\x96\xa0\x56\xec\xdf\x87\xe3\x5f\x09\x67\x5a\xdc\x5d\xce\x2f\x6a\x25\xf4\x3f\x6a\x31\xa8\x70\x7d\xca\xc2\xb2\xdd\xab\x1d\xfe\x1d\xf3\xea\xcf\xec\xb7\xf6\xfd\xa9\x84\xa4\xc4\x32\xc7\x03\x79\x81\x04\x1b\xd5\x44\x01\x1b\x03\x11\x42\xc8\xb3\xac\xea\xef\x57\x24\x09\xcf\x7e\xc6\x96\xe4\xd5\x2d\x22\x4c\xed\x2d\xd9\x4f\xa6\x63\x5f\xfa\x0a\x54\xf5\x44\xdb\xca\x18\xac\x36\x39\x66\x77\xea\x61\x10\x8d\xa3\xf8\x63\x6a\xfc\x93\xfa\x85\x84\xd9\x6a\x09\x99\xaf\x9e\xad\x26\xc8\xca\xdf\xf2\x9c\xd6\x6f\x41\x08\xdf\xf4\xa5\x5f\x2e\x79\x32\x81\x5f\x7d\xe2\xf4\x49\x5a\x13\x08\x8e\x8e\x5c\xd1\x05\x1e\x99\x84\x07\x95\x7d\xa6\x3f\xea\x94\x09\x27\xb2\x2f\xba\x25\x6e\xd0\x22\xac\xd4\xd6\x69\xe9\xdc\x25\x43\x78\x7b\xaf\xcd\x3a\x7d\xe3\x3c\x42\xc3\x2d\x2f\x5f\x8c\xea\x10\x8a\x9e\xca\xd4\x4b\xf1\x66\x11\xf4\x94\xcc\x1e\x4c\xde\xaf\x46\x70\x57\xb0\x5d\xe5\x37\x71\x90\xc1\xfd\xcc\x55\x0b\xfd\xb7\x0c\x32\x58\xb0\xfa\x50\xe5\xb3\x88\x2e\x06\x7a\xf9\x3d\x43\x1a\x39\x53\x09\x83\x19\x1f\x3e\xdb\x3d\xd2\x25\x6c\x95\xf6\x5d\x57\x3f\xe7\x36\x0b\x07\xf7\x3c\xdb\x30\xc5\xd4\x98\xc0\xc5\x3d\x5d\xeb\xe7\xda\x95\x84\x56\xa1\x18\xfb\x21\x3f\x4b\x42\x16\xd7\x05\xb5\xfd\x62\xdc\x04\xa1\xb7\x93\x96\xf1\x58\xcd\x23\x4c\x92\x8e\xdb\xa8\xec\xf4\x93\x81\x87\xea\x6e\xa7\xde\x2f\x4a\x84\xa3\x4e\x0b\x9e\x1c\x6f\x5b\xc6\x86\xe8\x0d\x45\x23\x47\xbf\x3c\x2f\x81\xd9\x52\xfb\xad\xce\x77\xd7\x12\x0c\x0e\xbf\x71\x88\x1f\xfb\x9e\xfb\x3f\xe8\x79\x4d\xa8\xda\xa2\x9e\x4c\xb8\x7d\x6c\xed\x81\x84\xa5\x77\x08\xdf\x1b\x7b\xaf\x45\x17\xd7\x10\x34\xed\xa6\x25\xcd\xeb\xd9\x4a\xb0\x7b\x70\xbe\x86\x67\xa1\x24\x61\xbb\xd2\xb2\x94\xce\xf5\xbd\x0c\x2e\x7e\xdf\x5a\xbb\xd8\xa7\x92\x85\x9c\xfe\xb3\x1d\x9a\x02\x03\x0c\x76\x08\xdc\x4b\x7f\xdf\xfe\x9c\x85\x43\xad\xbf\x0f\x17\xeb\x95\x12\x74\x77\xc9\xdc\xfc\x87\x4e\x65\x45\x4b\xe5\x19\x2b\x09\x4e\x9f\x5a\x6b\x5a\x56\x2b\x11\xa6\x06\x29\x5f\xbe\x3c\x6c\x49\xb8\xc9\xac\x55\xd4\xff\x7c\x97\x05\x7d\x4e\x9d\x85\x9b\x39\xd2\x08\x8a\x4c\x7e\xcd\x6f\xef\x5c\x1a\x2f\x25\x9f\x97\x6f\x35\xbd\x70\x82\x85\xdf\xb1\xf3\xcc\x82\xd3\xab\x59\x78\x35\xf7\xa4\x60\x9f\x9a\x1b\xe1\xfb\x77\xe9\xd9\x1f\x0f\xee\x20\x84\x8f\xb4\x81\xef\x6d\x22\xe1\x54\x88\xf9\x5c\x83\xe1\xcf\x84\x8f\xca\xbf\x1c\x4d\xfe\x1f\x18\x3e\xf4\xfb\x93\xff\x2c\x97\xb0\xd6\xec\xcf\xc9\x89\x7c\xa5\x84\x7b\x1a\x3c\x06\x62\x73\x22\x08\xb3\xeb\xd2\x96\x2c\x3a\x72\x8a\xd0\xf8\xa9\xec\xb6\xda\x0b\x27\xc2\x45\x77\xd7\xc7\xaf\x56\x24\x13\x0e\xbf\xba\xb9\xa7\x75\x71\x25\x61\xed\x92\xaf\x41\x36\x0d\x89\x84\xae\x6b\xc1\x01\x16\x8b\x2a\x09\x1d\xcb\x6d\x6f\xee\xa9\xbf\x46\x70\x8e\x9e\x22\xf6\xa1\x6a\x3b\x61\x33\x9f\xcc\x79\xce\x4b\x1f\x09\x13\x57\xa9\xed\x3e\x10\x59\xc1\xc2\x0b\xdd\xc3\xde\x4e\xb1\xef\x58\xd8\x2c\xbd\x52\x25\x5f\xaf\x91\x85\x39\x47\x5e\xec\x71\x8d\xba\x4f\xd8\xe8\x38\xe5\xdb\x24\xde\x3c\x82\x82\xa5\x98\xf7\x52\xa7\x3c\xc2\x3d\x59\xad\xfa\x95\x5a\xee\x2c\xc8\x85\x72\xe8\x6f\x51\x38\x4a\xe3\x98\x94\x2d\xf1\x39\x2e\xf3\x28\x21\xec\xef\x93\x27\xce\xa7\x42\x09\xd7\xef\x77\xed\xe0\xae\x0f\x25\x74\x3a\x48\x05\x29\x3e\x09\x25\xf8\xdb\x2d\x78\x26\x3f\x21\x9e\xb0\x3b\x4f\x4f\x20\x23\x2f\x8b\x70\x30\x88\x9b\xb5\xa8\xb8\x90\xf0\x2d\xf8\x6c\xc4\xa5\x1d\x8a\x04\x5e\x7d\xbe\x65\x3b\x04\x56\x10\x16\xe7\xf1\x15\x51\x8a\x3f\x1b\x2a\x17\xad\x97\x3e\x15\xba\x93\xb0\x79\x77\x7e\xc9\x22\xbf\x61\x06\xb9\x61\x5b\x76\xee\x5b\xdc\x4d\xf0\x1a\x71\x16\x48\x56\x2f\x67\xc3\xf3\x0c\x8d\xd7\xfe\xe7\xc2\x08\x17\xd5\xcd\x3f\x3b\x32\xa5\x84\x43\x3b\x8c\x84\x33\x3c\xef\x12\x96\x2c\xfc\x3e\xcc\x1b\x17\xcf\x56\x78\xbe\xf1\x6f\x5c\x10\xe9\x49\x50\xab\xab\xcd\x5b\x1a\x79\x9b\x10\x17\x2d\xff\xf4\x55\xd0\x0d\xc2\x95\x45\x6b\x64\x3a\x05\x4a\x08\x0b\xa7\x52\x74\xc1\xa6\x4c\xd6\x78\x39\x7a\xc6\x55\xb5\xf5\x4b\x3c\xc1\x3b\xf6\x97\xff\xe0\xbb\x78\xc2\x96\x3b\xf9\xf1\x7f\xce\x95\x11\x78\x9b\xb8\x86\x3b\xfe\x70\x10\xb4\xbb\x14\x1f\xd5\xff\x5c\x49\x48\xbb\x6b\x26\x23\xf8\x46\x87\x70\x31\xa1\x57\x9b\x8e\x2e\x23\x8c\x04\x27\xb8\x7a\xb6\xf0\x13\x26\x8e\xfc\x08\xb1\x3f\x18\xc2\x82\x5d\xd2\xf1\x80\xa9\x0a\x3e\x84\x97\xb5\xc3\xf2\x67\xaa\xe7\x11\x2a\x6b\xd2\xbf\xcc\xf1\x1b\x61\xb0\xc3\x7a\xbb\xf8\xd2\x38\x1b\x42\xe5\xb1\xb4\xa3\x1e\xa5\xa7\x08\x26\xb1\xc7\x3e\x1f\xac\x0d\x22\x8c\xbc\xc9\xbe\x35\x42\x09\x04\x65\x6d\xc1\xbb\x57\xc7\x60\xbf\xa0\xba\xfa\x5f\xd1\x78\x3f\xba\xef\x3b\xcf\x5c\x82\x99\x6a\x85\xf5\x04\x07\x01\x42\xbd\x01\x7f\x4b\xe2\x71\x73\x36\xc4\xdd\x93\xf2\x1c\xad\x9c\x4d\xb8\xfe\x76\x56\xc4\xa7\x88\xe5\x84\xed\x05\xda\x3a\xdb\x3e\x69\x12\x9c\x62\x4e\x4c\xf1\xd0\xe5\x23\x7c\x3c\x73\xb6\x33\xd5\x75\x35\x41\xea\xa5\xcd\x50\x86\x83\x0e\xc1\xaf\xfd\x56\xd3\xf5\xc3\x7c\x6c\x98\xb5\xf5\x18\x17\xef\xed\x51\x06\x73\x3e\x85\x38\x5c\x9d\xa8\x4a\x38\xa4\x79\x5f\x71\xf3\x41\x23\xc2\x43\xf5\x8a\xb5\xa9\x5e\xf3\x08\xf5\x2e\xf5\xef\xb3\x3b\x78\x09\xa6\x0f\xe4\x4f\xfa\x97\xb9\xb0\xfe\xbf\x3f\x95\x17\x48\x38\x76\xe2\x94\xb2\x94\x49\x1f\x33\x0e\x6f\x9f\xc2\x1b\xdc\x0f\xc2\x4b\x10\xd3\x5c\x19\xfd\x97\x47\x9b\xd0\x93\x2b\xfa\x27\x70\xdb\x34\x42\x46\x90\x84\xd2\x5e\x0e\x79\xc2\x21\x2d\xe9\xfe\x24\x5f\x07\x42\xad\xf4\xf1\xc2\xbb\x4a\x82\x84\xf3\xab\x8a\xb9\x8c\x0e\x4b\x10\xec\x59\x13\x76\xcc\x9a\xb2\x86\x10\x64\xe1\xf3\x2d\xab\x7a\x31\xa1\x30\x71\xb7\x9a\x86\xff\x06\x16\xa4\x2c\x95\xa7\xd5\xb9\x4a\x11\x46\x66\x5f\x49\x7f\xcf\x3d\x81\x30\xfc\x6b\xf2\x44\x8e\xce\x8f\x0c\x1a\xbf\xcf\x9c\xfa\xdd\x36\x9c\xa0\xb8\x85\xf3\xc9\xbd\x8a\xfb\x84\x5f\xdd\x4a\x7f\xff\xa1\x60\xb3\xa3\xf3\x5a\x99\x54\x42\xe2\x66\xb9\x97\x47\xcb\x0b\x09\x4a\x4e\xdf\x0e\x9b\x9f\x28\x24\x4c\xf5\x5f\xe8\x9d\x2d\x50\x44\x48\x14\xb6\xcc\xcb\x9f\x6d\x4d\x90\x75\x5b\x3b\x6c\xd9\x3d\x8d\x70\xa7\x44\xeb\xf1\x71\x19\x11\x36\x4c\xea\x39\x5f\x6e\x10\x32\xc4\xc0\xc1\x54\xc0\x43\x42\xcf\x8f\x10\x58\x5d\x71\xb8\x69\xc7\x52\xc2\x40\x43\x51\xd9\x8f\x8c\x7e\x06\xa5\x37\xe6\x0b\xc5\xda\x6a\x10\xb4\x2c\x12\x65\xe5\x5d\x97\x11\x84\x3b\xda\x9b\x1b\x7a\x46\x19\x9c\x2f\xfe\xfe\xbc\x3c\x66\x01\xa1\x90\xab\x7c\xd1\xa9\x97\xd7\x08\x7b\xfe\x0e\x54\xbc\x92\x8f\x22\xd4\x1f\x2c\xd8\x54\xd1\xcb\x4b\x50\x96\xf5\x96\x7d\x7e\x7e\x06\x21\x40\x62\xd3\x6d\xee\x47\x03\x0c\xa6\x74\x36\x39\xbf\x58\x33\x89\xc0\x1c\xc4\x0e\x2e\xa7\x83\x84\x01\x03\x9f\xf0\x36\xfe\x1b\x6c\xe0\x9e\xa9\xb2\x41\x57\xf5\x14\x61\x50\xc6\x6d\xde\x86\xe9\xd7\x09\x99\xfe\x9f\xf2\x96\xdf\x2d\x24\xb4\x0e\x07\x5d\x88\xdf\x5b\x40\xe8\xb8\xa4\x3c\x38\xac\xc5\x49\x68\xae\xb5\x9f\x72\x56\x6f\x0d\xa1\xeb\x84\xf2\xd7\xdb\x9c\x4b\x08\x94\x20\xb0\x5b\xe4\xa8\x3f\x1b\xe4\xe7\x5f\x77\x1d\x3d\xa6\x42\x60\x36\xb8\xb6\xbd\x8a\xfa\xc3\xe0\xc7\xe9\xa7\x49\x3b\x79\xb8\x09\x0b\x6e\xe6\xce\x4d\x0b\x96\xa3\xf1\x72\xf5\xdb\xba\x8d\x6a\xb7\xa5\x08\xbe\x62\x8e\x5e\x17\x4a\x75\x09\xc3\xf5\x3c\xfd\x33\xbf\xaa\x12\xfa\xf9\xa4\x16\xcc\x49\x98\x48\x88\x72\xde\x2d\x7b\x4b\xf5\x00\x41\x6f\xee\xce\x9e\xbe\xf6\xb3\x2c\x14\x2b\xca\x0c\xed\x3b\xc9\x41\x38\xff\xa8\xf6\x6f\x4b\x61\x39\x0b\xa6\xa7\x95\xb3\x6f\xfb\x4a\x10\xbc\x76\x2e\x0a\x7a\xfd\x75\x01\xe1\xc6\x81\x37\xdf\x6d\x3b\x02\x09\x03\xea\xbd\xdb\x93\x97\x1d\x24\xc8\x97\xe9\x98\x3c\x5d\x67\x4d\xd8\xa6\x66\xb4\xd4\xf4\xf8\x26\xc2\x32\xa5\xf7\xd3\x65\x1b\xd4\x08\xf5\xc1\x81\x1f\x57\x1e\x97\x21\x8c\x8e\x1a\xdc\x31\x4c\x9c\x4e\x88\xb8\x2c\xf4\xd5\xa3\x29\x8e\xe0\x6f\x30\x79\x9d\xed\xab\x5b\x04\xeb\x8e\xc3\x3b\x4e\x8a\xe8\x10\x6c\x96\xfe\x6a\xdc\x57\xac\x48\x38\xb1\xf9\xd7\x11\x33\x55\x6d\xc2\xce\x82\xd4\xdf\xeb\x93\x23\x08\xb6\x4d\x2d\x32\xbf\xb4\x6b\x59\x98\xa3\xa7\xd1\x04\xdf\xb1\xfd\x2b\x7d\x5f\x58\xfe\x7c\x17\x02\xef\x2c\x9f\x03\xea\x11\xf6\x84\xcc\xdd\xca\xfc\x56\xaf\x14\x09\x26\x37\x7b\x7f\xac\x9c\x2a\x41\x90\x0f\xad\x29\xd1\x12\xd0\x26\xec\x5f\x3a\xc7\xd1\xe7\xcc\x6c\xc2\xa9\x94\x10\xf1\xc2\x4f\xc9\x04\xbf\xfa\xc3\x7e\x49\x55\x7b\x09\x93\x96\x4a\x9d\x38\xb1\x3b\x95\x0d\xbb\x7d\x53\xff\xb4\xeb\x05\x11\x2e\x87\xf5\x6d\x5f\x3b\xfd\x36\xe1\x4f\x8d\xc6\x42\x8e\x00\x43\xc2\xe1\x4d\x12\x91\x5e\xeb\x54\x08\x55\xe6\xad\x5b\x13\x27\xfd\x66\xd0\xe9\x11\x3e\xd1\x37\xab\x83\xc1\x97\xf3\x6a\x0b\xaf\x95\x29\xd0\x38\xd6\x04\xad\x9f\x77\xa6\xfb\x07\x33\x0e\x91\xfd\x03\x6f\x3d\xd2\x79\x08\x7b\x6a\xe5\xb5\x8d\xea\xf8\x08\x0b\xec\x7d\x5b\x0e\x54\xdb\xb3\x61\x4e\x0d\xa7\x08\xef\x9d\xa7\x0c\x0c\xd6\x2e\x9b\x2b\x9c\xc5\x47\x88\x6a\xdd\xa6\xe0\xfe\x4e\x82\x90\xa3\xd4\x32\x24\x77\x6a\x0a\x21\x2d\x6b\x28\x67\xe6\x95\x72\x36\x64\xaf\x3d\xc7\xfc\x43\x53\xdf\x8f\x30\x8e\x22\x2b\x42\x46\x55\xea\x74\xa7\x67\x67\x09\xd7\xd2\xa7\x59\x2e\x38\xe4\x4d\x38\x3e\x33\xe2\x45\xdd\xda\x5d\x2c\x54\x4c\xf9\xca\xeb\x33\x57\x95\xc0\xd1\xb1\xd6\x2e\x31\xb9\x8c\x70\x2d\x76\xb9\xe1\xff\x8b\xa4\x63\x59\xa3\xcc\xa9\x5b\x84\xe0\xa3\x4a\xdb\x56\x8f\xe1\x7e\xdf\xe4\xa5\xff\x7f\x30\x58\xda\xda\xf4\x37\xc1\x9b\x30\xf8\xfb\xf8\xf1\xa6\xeb\xde\x6c\x65\xe1\xa4\x9f\x9e\x45\x4f\x5c\x59\xe3\xe5\xf0\x9b\xa0\x2d\xfd\x35\xf9\x6c\xd8\xbc\xb8\x22\xfb\xf0\xd7\x46\x82\x02\xec\x02\xe3\x7f\x7b\x12\x02\x9d\xfa\x78\x56\xaa\x19\xb0\x10\x39\x87\xef\x66\x59\x4b\x34\x6b\x7c\xf4\x3e\x86\xe3\x94\x67\x88\x16\xc1\xa8\x7f\x52\xac\x58\xf0\x4b\x06\x87\xac\xa6\x9e\xfb\xc8\x59\x45\xb0\x4c\x4a\xe5\x75\x96\x2c\x25\x84\x85\x2d\xdb\x72\x41\xe2\x08\x0b\xeb\xbb\x64\x4c\xd3\xfb\xd5\x09\x87\x74\x42\x8b\xb6\xff\x34\x27\x3c\x76\xf5\xbd\xc0\xfb\xba\x9b\x01\x6f\xb3\xb7\x53\xd4\xeb\x65\x04\x19\x5e\xbe\x17\xa3\x9f\x13\x09\x4f\xee\x5d\xb6\xef\x9a\x76\x89\x90\x93\xed\xb6\xf4\xa5\xb7\x35\xe1\xe3\xf9\x54\xa1\x2f\xa3\x16\x6c\x58\xb3\x37\x8d\x67\x17\x27\x18\x9c\x9a\x9f\x0f\x37\x3b\x53\x82\xa4\x50\xc3\x97\x3f\x4f\x8f\xb0\x60\xad\x7a\x5b\x59\xe9\xa7\x21\xc1\x75\xca\x96\xac\x66\xa9\x34\x16\x6e\x68\xcf\xd4\xe1\x17\xe2\x20\xec\xdf\xe9\xf3\x78\xb6\x8c\x3d\x21\x84\x27\xaa\xe2\x66\x7e\x03\x41\x50\xe5\xf0\x3d\xcd\xe7\x19\x84\x0e\x0d\xeb\x2d\x29\x66\x57\x09\x83\xd9\xe2\x1b\x66\x9f\x7d\x4f\x98\x52\x3d\x2d\x71\x41\x75\x35\x41\x60\x95\xbc\xb5\x69\x63\x3e\xe1\xfc\x61\xd9\x88\xcf\x03\x3b\x58\x28\x61\x5d\x15\x0a\xdd\x93\x45\xf0\xdd\x62\x62\x9b\xb6\xd8\x86\xb0\x77\xe7\xae\x7a\x56\x6b\x29\xc1\x71\xd3\x9f\xfc\xa2\xd8\x7a\xc2\xee\xf7\x7f\x6d\x35\x45\x8e\x11\x36\x55\x0f\x3f\xe8\xbd\x90\x40\xd8\xe8\xfd\xe1\xc0\xb6\x55\xd2\x04\xa9\xae\x9a\x70\x6d\x0e\x15\x42\x51\xd1\xa3\xf4\xb4\x4b\x4a\x84\xee\xbb\x11\x33\xc2\xce\xcc\x23\xf4\x3c\xfc\x7b\xf2\x4c\x04\x2f\x21\x6e\xd1\xc4\xf3\x87\x7f\x5a\xb0\xa1\xbb\x2e\xc9\xa2\x71\x58\x90\xe0\x3b\x69\x53\xed\xc2\x2b\x3a\x04\xe1\x25\x5b\xe7\x4c\x48\x78\x4a\x60\x6c\xc8\xcf\x62\x47\x0e\xc1\x32\x88\xb3\xf3\xfe\xef\x2c\xc2\xc0\xfa\x7d\x9b\x32\xad\x6e\x10\x76\x3b\x5c\x95\x5c\x99\x96\x4d\xd0\x98\x19\xb0\x65\xa2\xd3\x4e\x36\x14\xfd\x74\x3f\x36\xfa\x4d\x88\x70\x32\x48\x33\xd2\x34\x7b\x13\xe1\x6d\x6c\x8f\x89\xd3\xcf\xe9\x84\xb4\x61\xe5\x95\x53\x77\x73\x13\x42\xbf\xd8\x3f\x8a\x69\xe4\x23\x1c\x69\x10\xeb\xde\xa4\xaf\x45\xd0\xad\x93\x5f\x75\xec\x88\x0a\x41\x40\xd0\x64\x86\xb2\xe8\x13\x06\x9a\x4e\x57\x92\x95\xb5\x47\x19\x7c\x68\x18\x54\x78\xf6\x20\x8d\xd0\x26\x91\x79\xb0\x65\xd9\x5f\x06\xa3\xb6\x8f\x8e\xfe\x9d\xb0\x94\xb0\xc8\x7a\xa5\xf1\xb2\xb0\x50\x42\xb5\x7b\x85\xcd\xf3\x09\x5c\x2c\x9c\x1d\x7e\xf1\x2e\x7c\xe3\x0e\xd6\x78\x39\x9d\x77\xda\xa0\xd7\xdd\x94\xc0\xd2\xdf\x51\x14\x6c\x74\x90\xb0\x55\xfd\x86\x55\x81\x98\x25\x61\xd1\x04\xb1\x1a\xd7\x66\x7d\x42\xc3\xf3\xf3\x33\x25\x05\x44\x09\x62\xb9\x9b\x8e\xaa\x56\xdd\x21\x34\xfa\xcc\x78\x60\xa4\x53\x4e\xd0\x94\x8c\x7d\x5d\x79\x30\x87\x05\x1d\xf1\xcb\xfa\x7b\x4f\x54\x10\x86\xe6\x6e\x58\x1d\x6b\x17\xca\xc2\xf6\xc3\x22\x8f\xf5\xed\x4e\x11\xb6\xcf\x9f\x99\xec\x9c\xb8\x9b\x70\x3c\x63\x8a\x83\xa6\xcf\x2e\xc2\x72\xe7\xac\x7b\x6f\x85\xc2\x08\xc6\xe5\x5b\x57\x98\xbe\x10\x20\x5c\x52\x5d\x99\xf0\xbe\x72\x1a\x61\xba\xad\x7b\x8b\x41\x5e\x2b\x61\xe3\xbd\x75\xc3\xea\xc9\x39\x84\xa0\xfd\xda\xd1\xfa\x63\xe5\xdb\xcb\x06\xbd\xd7\xcb\x9e\x13\x12\x47\x52\xe7\x7a\xf2\x73\x13\x0a\x9f\x48\xdb\x7f\xfb\x39\x99\x0d\x33\x93\x22\xbe\x79\x55\x76\x31\xe3\xd8\xb1\xd1\xc6\xa1\xeb\x75\x20\xc1\x37\x54\x72\x39\xe7\x48\x3a\xa1\xe2\x55\xc7\xfe\xba\xbe\x60\x36\x24\xed\x6c\xfb\xfd\x38\xce\x9d\x70\x76\x70\x2d\x56\xae\x0f\x2f\xc1\xa6\xef\x67\x5c\xd3\xd2\x5e\x33\xe8\x63\x14\x17\x07\xdd\x91\x22\xf0\x77\x1c\x7c\xb2\x9c\x4b\x91\xc6\x4b\xca\x90\xcb\xf4\x95\x91\xa3\x0c\xa4\x1b\x96\x77\xee\x3c\xb3\x91\x60\x5a\xdd\xd3\x97\x5c\xa9\x47\x50\xbe\x55\x29\xea\xdf\xb0\x89\xad\xf8\xbf\x9d\xb0\x39\x30\x55\x97\x20\xa3\x3a\x35\xf1\xe6\x63\x6e\x42\xa0\xd5\xc5\xe8\xcb\x35\x7f\x18\xd4\x48\x16\x63\x62\xcd\x02\xc2\x1a\xfe\xeb\xe6\x51\xcb\x6e\x8c\x6d\x1c\x1e\x0a\x3b\x1f\x9c\x20\xb4\x6c\x9a\x1c\x39\x74\xcd\x85\x20\x95\xa0\x60\x13\x53\x1f\x47\x90\xaa\xbd\x1d\xaf\x1c\xe0\x43\xe0\x32\xff\xc6\xea\x74\x75\x20\xa4\x70\x34\xc5\xfd\x8a\xbb\x4c\x38\xaa\xce\x95\xfe\x53\xfc\x2f\x83\x05\xe5\x6d\xdd\x0f\xad\x1f\x33\x48\xeb\x37\x74\x46\xee\x1c\x82\x71\xe3\x67\xd3\x32\x83\x2c\x02\x86\x84\xdd\x2e\x8a\xdb\x13\xea\x12\x16\xdc\x7b\x32\xf9\x3e\xe1\xe5\x2b\xe3\x17\x8f\xc7\x10\x62\x98\x51\x5b\xf4\x27\x93\x70\xed\x2b\x57\xe7\x99\xb8\x74\x82\xa3\xe4\x51\x11\x3e\xcd\x61\x06\x93\x46\x53\x97\x73\xf1\x6b\x10\xcc\xcc\xfa\xe6\xd1\xde\x1e\x06\xbb\x06\x27\x9b\xc9\x84\x16\x12\x12\x1f\x7e\xb3\x5b\x11\x66\x45\xb8\x91\xca\xb5\xcd\x25\x4e\x88\xd0\xfe\x56\xcc\xd2\x90\x25\x47\xf8\x28\xb8\x69\x6e\xe8\x42\x1e\xc2\x8a\xd9\x2f\xa5\x7f\xfe\x54\x20\xac\x7e\x79\xc2\x67\x51\xb9\x20\xe1\xa6\x4c\xf3\xc6\x6b\xee\x96\x6c\x78\x3c\x70\x9c\x75\xb6\xba\x9c\x41\xd9\xde\x57\x5b\x4c\x03\x05\x09\xde\x3e\x1e\x23\x05\x3b\xce\xb3\x21\x56\xf4\x8f\x14\x5f\xcf\x59\x42\xaa\xfb\x7c\xe9\x03\x29\x5a\x84\xee\x5f\x83\x35\xbd\x1a\x16\x84\xc2\xe5\x51\x91\x46\x25\xd9\x84\xcd\x2a\xef\xdc\x4f\x77\xba\x11\x1a\x58\x1a\xe7\xbe\xce\x55\x21\x2c\xfb\x6d\x62\x70\x65\x85\x30\x61\xff\x89\xa4\x48\x4b\xb5\x15\x84\x8b\xef\x95\x9e\x69\x67\xaf\x20\xa8\xe6\x7f\xe9\xfb\x5a\x9c\x41\x58\x28\xbc\xf7\x8b\xf1\xad\x0c\x02\xcf\xbc\xf9\x0a\x1e\x63\x0f\x92\x45\x0f\xbd\x2a\x09\x15\x26\xac\xbc\x52\xd1\x73\xa0\x7f\x80\x41\x83\xf8\xf6\xbe\x2b\xaf\x35\x09\xa3\x5e\x23\x11\xe9\xba\x2f\x08\xfb\x22\x6f\x4e\x69\x8e\x8f\x25\x78\x3f\xd2\x74\xdc\x77\x23\x96\x10\x7f\x7b\xef\x8a\x9e\x7b\xde\x84\x4f\xae\x8b\xe2\x6b\xe6\x71\x12\x2e\xfd\x58\xb3\xd7\xd7\xb2\x84\xd0\xe0\x2a\xae\xf3\x0f\xdd\xdd\xd3\x6e\x2b\x1f\xdc\x47\x10\x59\xbf\xb3\xc7\xda\xd1\x84\xad\x14\xb7\x77\x4b\x15\xcb\x9b\x11\x92\x05\xb2\xda\xdf\x8b\x3b\x12\x94\x8f\xfc\x78\x6b\x93\xa6\x45\xc8\xd9\x3f\x99\x9b\xb9\xb3\x9d\x90\x1a\x32\xbb\xe0\x84\xcc\x0a\xc2\xdc\xbf\x9d\x45\x3c\x91\xf3\x08\xc3\x9e\x55\x3a\x47\x2f\xbd\x67\x10\xa2\x75\x78\xb1\x99\x9a\x10\x21\x72\xcb\xe9\x35\x7b\x85\xdf\x31\x98\xd2\x7b\x32\xd2\x54\x7f\x35\x21\x72\x9e\x5e\x73\xcf\xc4\x93\x04\x5d\x97\xa4\xc9\xd1\x7b\x84\x09\x53\xcd\x05\x5c\x6c\xb7\xbd\x65\x30\x6c\xb8\xc0\xfd\x83\xc8\x4a\xc2\xdf\x09\x2e\x16\x13\x13\xcd\x08\x1f\xe3\xe3\x4a\xf9\xaf\x4c\x20\xfc\x99\x53\xf9\x46\xd9\x77\x90\x41\xcd\x31\x81\x2a\xb5\x57\xb2\x84\xfa\x44\xbb\x57\x5b\xdf\x6e\x24\xe4\xbe\xb9\xbe\xfc\xa2\x89\x25\x81\xaf\xb0\x5b\xb7\xee\x89\x0b\x21\xce\x63\x9b\xff\x8a\x96\x14\x82\xaa\x71\xc5\x15\xd3\x0f\x29\x84\x03\xe4\xa5\x2c\xfd\x6c\x98\xc1\x45\xcb\x8c\xdc\x7c\x59\x59\xc2\x81\xac\xa1\xe4\xdc\xc7\xe6\x84\xac\xd7\x99\x49\x06\x67\xa5\x08\x25\x4a\xbf\xc5\xde\x79\xca\x10\x76\x2c\x2d\xeb\xbb\x9a\x34\x81\x90\xe8\xea\xcf\x77\xc2\x8e\x8f\xc0\xda\x39\x24\xd0\xb7\x50\x8f\x0d\x49\x4f\x9b\x3e\x9f\x7e\x2b\xc4\x86\x0f\xdf\xa5\xe5\x9b\xbf\x1e\x63\x43\x4e\xd2\x9c\xb9\xb3\xd6\x08\x11\x8a\xd3\x05\xf7\xf8\x4d\x97\xf9\x2f\xdc\xf3\xe0\x16\x0f\xf7\xe5\x20\xc4\x36\xf7\xa4\x5c\x8b\xd2\x20\x7c\x6d\xd6\xe1\xcc\x6a\x3c\x4f\x38\xaf\x16\xa9\x1b\xcf\xcd\x22\x5c\xe2\x91\xbf\x35\x69\xf3\x25\x36\x14\x6f\x92\xce\x39\x5c\x7c\x9d\x70\xcc\xfe\xb4\x95\xc3\x8a\x6b\x84\x16\x8e\x2b\x1d\xb9\xde\x57\x09\x2f\x5f\xbe\xad\x76\x1c\x2b\xf1\x36\x79\x4c\xe2\x1f\x6e\xc2\xfe\x09\xd2\x2b\x19\x8f\x99\x04\x8e\xde\x22\x29\x97\x43\x45\x04\xe3\x43\x1f\x32\xf7\x89\x59\xb0\x41\x3b\xaa\x80\x7f\xc2\x71\x41\x42\x5a\xda\xda\x81\xd5\xac\x7c\xc2\x8e\xc5\x15\x4b\xbe\x86\xa9\x10\x5e\x1d\x6d\x4a\x3e\x31\xcd\x88\x70\xba\xac\xe4\x90\x90\x8c\x3a\xc1\xbc\xb7\x31\x34\xde\xd8\x9b\x85\xc4\x1e\x2b\x8f\x25\xcf\xb6\x13\x6a\xf2\xd7\x59\x7b\x6d\xd0\x21\xbc\x71\xa9\xf9\xa8\xa9\xba\x9c\xb0\xd5\x6d\xaf\xf4\x8c\x91\x21\x06\x77\x7f\xeb\x4b\xe8\x84\xc9\x12\xae\xd8\xab\x5c\xe8\xfe\xad\xfb\x5f\xb0\xf8\x1a\x71\xf0\xa5\xf7\xc1\xff\x42\xf9\xc5\x9d\x0b\xbf\xec\x3b\x42\x58\xd2\xb4\xd4\x4e\xa7\x67\x06\xc1\x62\x97\x0d\x77\x49\x44\x01\x21\x39\x2d\xa6\x7d\x16\x7f\x05\xe1\x6e\xe7\x29\xce\xea\xa5\x3f\x58\xd8\xa7\x59\x3d\x53\x60\xac\xe8\xd7\x4d\x0c\x90\x97\x49\x20\xdc\x17\xd5\x70\x6f\x9f\x9d\x47\xa8\x59\x7b\xd8\x7d\x46\xae\x04\xc1\x31\x35\xed\xf9\x91\x48\x53\x36\xe8\x24\x0e\x5e\x4c\xdb\xa5\x4c\x38\xd7\x22\xb3\xb2\x27\xe1\x25\x03\x83\x14\x55\xb7\xd3\xc5\xbf\x18\xf4\xcb\x05\x5e\x7d\xba\xd8\x7e\x6c\xaf\xec\x0f\xac\x99\xb5\x9e\xf0\xf9\x4a\x87\x8e\x5d\xaf\x36\x61\xef\xbe\x9f\x03\x5b\x87\x9a\x4b\x20\x95\xc9\xd7\x9d\xc4\x37\x8d\x70\xff\x58\xd5\x94\xd7\x0e\x9d\xcc\x38\x12\x9c\x6c\x76\xee\x0a\x9b\x4e\x48\x9a\xa2\xec\xca\x1d\xb2\x8c\x30\xbc\xe9\x3b\x6f\x52\x9b\x22\x61\xa6\xb0\xd5\x88\xca\x55\x29\x42\xcd\x3e\xc1\xd7\xd3\x67\xae\x22\x98\x95\x76\xeb\x0e\x75\xf3\x10\xfe\x2c\x36\xf0\xdd\x77\xe6\x25\x83\xdc\x2f\xbf\x9d\x2e\x15\x8a\xd0\x38\xb6\x1f\x7b\xe8\x6e\x6b\x33\xc0\x8c\xe3\xe7\xb1\xe4\x23\x7a\x6d\xc2\x34\x0e\x7b\x73\xdd\x96\x0a\x8e\x87\x0c\xe4\xf5\xfa\x04\xb6\x97\x64\x33\x30\xe6\x68\xb4\x98\x1a\x76\x83\xc6\x21\x67\xa1\xae\x66\x63\x70\x88\xd0\xb7\xe8\xa8\xf8\xaa\x03\xd3\x08\xfc\x68\xd8\x7e\x64\x0d\x1f\x1b\x7c\x73\x26\x3a\xd5\xb9\xff\x60\x30\x7f\x45\x7d\xc7\xe9\x45\x39\x04\x89\x3d\x49\x5c\xa3\x76\x15\x84\x54\x3d\x13\x97\x06\xa1\x15\x6c\x48\x7a\xe9\x1a\x1f\xf0\x46\x90\x50\xd2\x3a\x4b\xc6\x6a\xdd\x2a\xc2\x4a\xfa\xd5\xf1\x66\x7a\x06\x1b\x18\x41\xa3\x25\x1b\x32\xd3\xc6\xde\x7e\x12\x13\xfe\x61\x93\xc5\x4d\xce\x86\xd7\xf6\x04\xf1\x8d\x49\x5d\xab\xa2\x06\x19\x54\x25\x57\x58\x6b\x3b\xfe\x60\x50\x2d\x78\x72\xf1\x9e\x00\x7e\xfa\x0f\x44\x97\x37\x26\xa4\xac\xff\xc9\x60\x84\xda\xef\x2d\x56\x70\x27\x9c\x53\xac\xd1\xd3\x88\x3e\xca\x06\xb7\x1d\x2a\xa7\xec\x18\x59\xc2\x89\x4e\xd3\x6f\x53\xbf\x0d\x30\x88\x4d\xab\x4a\x76\x91\xf8\xc0\xa0\x5f\xd6\xb8\xb8\xe9\x02\x17\x61\xb8\xab\x7c\x43\xc1\xbb\x38\x42\xb6\xbd\xfe\x3b\xfd\x2d\x7c\x04\x26\x68\xe1\x02\x61\xc9\x55\x6c\x78\x38\xb4\x94\xe7\xd6\xc4\x86\x12\x38\xde\x8c\x9f\xf8\xf3\x8b\x10\xe1\xca\xa4\xd2\xdc\x87\x66\x2b\x09\x25\x23\x5b\x3f\xc9\x7b\xcd\x21\x34\x4a\x6c\x11\x0b\xca\x2e\x24\x64\x1e\x4f\xb9\x57\xa4\xc2\x4b\x98\x32\xb8\xf2\x6a\x4b\x0a\x27\x81\x38\xdc\xbe\xb9\x8c\x5d\xc3\x92\xa0\x3b\x6a\xf9\x6e\xcd\x25\x58\xf2\xec\x2d\x1f\x59\xa5\xb0\xf0\xe1\x42\xde\x85\xd6\x2b\x4a\x84\xe0\xa6\xd1\xa7\x71\x53\xc3\x08\x2f\x33\x43\x77\xf8\xef\x5f\x47\x58\x7b\x4e\x59\x2e\x64\x8a\x19\x5b\xf9\x1f\x36\x5a\xce\x88\x65\x65\x4f\x25\xc4\x6c\x16\xf0\x0d\xfb\x73\x81\xb0\xb0\x72\x5d\x89\xf7\xfe\x64\xc2\x9e\x79\x1e\x2b\xaa\x3a\x8d\xd9\x90\xfa\x62\xaa\xd3\xe5\x37\x9a\x6c\xc8\x7e\x1c\xc6\xb3\x39\x84\x7d\xe4\x10\x98\xfb\x43\xe7\xa0\x10\x21\xa4\xab\x60\x4d\xfd\xdd\x37\x0c\x4e\xbf\xba\xfe\x22\xee\xb6\x01\xfd\x5f\x48\xe8\x3c\xe9\x54\xf0\x41\x98\x90\x2d\xd6\x5e\xd7\xa4\x93\x4d\x20\xc7\x63\x85\x56\x8a\xb7\x08\x4a\xc6\x83\x6f\x7a\xd5\x7c\x09\xe2\x97\xd4\xe5\x3f\x76\xa5\x11\x12\xde\xb5\xf8\xdb\x69\x47\x12\xfe\x5c\xe7\x3d\xbd\xbe\xdb\x88\x30\x75\x7f\xe4\x89\xcd\xdd\x03\x0c\xd2\x29\x75\x8f\xc5\x87\xc9\x04\xa3\x43\xd2\xda\xda\xe1\x15\x25\xe8\xb4\x3b\x22\xd6\x78\x27\x90\xc6\xa1\xc7\xfb\x24\x85\x27\x2a\x80\xb0\x48\x3a\x73\x56\xe6\x1f\x6f\x42\xdc\xaf\xd0\x6e\x8e\x7b\xf1\x04\x5b\xcb\xed\x73\x16\xe3\x3a\x0b\x8e\x92\xc6\x86\xcf\x43\x26\x13\x04\x46\x79\x6a\x5b\x92\x84\x08\xc1\xd1\xf6\x7c\x45\x8c\x00\x41\xaa\x22\xc4\x69\xc7\xa1\x1f\x25\x08\x3d\xa6\x64\xe1\xea\xb2\x81\x90\x24\x7d\xf7\xf2\xee\x42\x2b\x42\x97\x42\xb9\xcc\xb6\xb1\xb7\x96\xe7\xaa\x87\x1a\x72\x9b\x95\x09\x57\x0c\x23\x4f\x3e\x0c\x2c\x26\x24\x64\x9a\x2f\xbb\xb5\xff\x02\x1b\x0c\x55\xe5\xa2\x7c\x03\x2f\x11\xf6\xc4\xcb\xde\xf7\xbf\xb0\x8c\x70\x7b\x8f\x8f\x83\xfb\xde\xb9\x84\x81\xaf\x15\xe9\x3e\x59\x2b\x08\xd1\xbd\x61\x56\xf6\xa2\x5c\x04\xd1\x99\x37\x5d\xac\x1d\x7c\x58\xa8\x19\xd0\xcb\xbc\xd6\x17\x4b\x08\x30\x79\x6c\xb8\xb1\x26\x8d\x90\xcf\xba\x21\xfc\x0f\x05\x7b\x38\x15\x2e\x94\xbd\x63\x60\x93\xaf\x2f\x25\x64\x27\xc8\x56\x84\x04\x65\x7d\xb2\xe4\x8d\x68\x1c\x61\x05\x81\x77\xff\x2a\xd6\x31\xc8\xab\x14\x7b\x7d\x6e\xb3\x38\xc1\x5a\xbd\xff\x84\xc9\xcf\xe5\x6c\xc8\x5e\xe3\x7e\x53\x5c\xee\x17\x83\x3c\xa7\xa5\x46\x7f\x4e\x2d\xa2\xa1\xe7\x1c\x39\xdd\xa3\x6b\x68\x28\x4b\x68\x62\xa7\x90\x09\xa1\x57\xbe\x6e\x59\xf3\xfe\x72\x82\x3f\x9d\x52\xf2\xcc\xab\x26\xfc\x8d\x4d\xef\x6c\xf7\x7b\x41\xf0\xcb\x3a\x35\xa9\x65\x6c\x24\xba\xf9\x94\x75\xf4\xa6\x8b\x04\xd3\xe7\xe9\xaf\xbf\x09\x88\x11\x96\xac\x4a\x16\x4d\x29\x5a\xc8\x86\x03\x25\xf7\x6e\x9e\x50\x99\xc3\x86\x70\xbb\xfd\xac\x05\xed\x05\x84\x95\x8f\x0d\x12\xe3\xee\x3d\x67\x8d\x97\x76\xb7\xf5\xb6\x33\x32\xbc\x09\x96\x7a\xf6\xb1\x9e\x1f\xf5\x08\xe7\xaf\x25\xef\x57\x9f\x51\x44\x10\xcd\x3d\x6c\xd9\xba\xf4\x0e\x41\xa5\x7f\x51\x97\xda\x58\x99\x18\x3b\xff\xd6\x27\x6e\x6f\x36\xb4\x8a\xf5\xf6\x74\x94\x96\x12\x9e\xac\x9f\x3d\xc4\xab\x97\x4f\x50\xd3\xf6\xb5\xc8\x0c\xa9\x66\xc1\x29\xf4\xdd\x97\xcb\x32\x2d\x2c\x8c\x04\xb3\x72\xf8\xc6\x46\xc1\x31\x17\xb7\x7d\xea\x3e\x40\x38\xce\x3f\x37\x85\x67\x8b\x0b\x0b\x97\x2b\xf9\x24\x35\xef\xee\x24\x78\x2c\xbe\x12\xd8\xbd\x7c\x0f\x0b\x02\x77\xc8\x73\x57\xc7\x01\xc2\xf2\xc9\xde\x07\x3f\xe9\x14\x11\x6c\xae\xe5\x09\xc8\x5a\x16\x11\x32\x17\x3c\x79\xf1\xa8\xdd\x97\x70\xce\x56\xfd\xc7\xde\x7c\x3f\x82\xe7\x35\xe9\x0e\xa3\x74\x4f\xb6\xf2\x38\x5e\x65\x74\x7f\xaf\x37\x1b\x5a\x45\x75\x84\x5f\x4d\x3e\xc8\x56\x4a\x77\x5b\xe5\x09\x4f\x7f\x48\xb8\xe0\xd6\x90\x38\x93\x4b\x81\xc0\x7d\xc9\xa3\x78\xd5\x49\x2d\xc2\x0b\x45\xe1\xb8\xfb\xef\xa5\x09\x01\x4d\x5f\x97\x77\xdf\x9b\x44\x38\x30\xf3\x7c\x5d\xe6\xc4\x85\x04\xe3\x76\x2f\x43\x87\x76\x67\x82\xe7\x92\x91\x59\x35\xbd\x1b\x08\x9e\x67\x7a\xd2\x39\x77\x49\x10\xa6\xdf\x34\x08\x9e\xce\x9d\x4d\x50\xe1\x39\x29\x90\xc7\x93\x4d\x88\xab\x8e\xf9\xf0\xaf\x08\x6e\x9b\xfd\xa5\x74\xae\x0b\x61\xe3\x89\x00\x6f\xde\x31\xc4\xbb\xdb\x24\xef\xac\x3a\x47\xf8\xee\x7d\x8d\x73\xb5\xf2\x32\xc2\x90\x72\xf6\xe7\xf9\xcd\x03\x0c\xf6\xb2\xf8\xdf\x1d\x69\xff\xc4\xe0\xc1\xac\xa2\xcd\x1e\x0e\x7f\x19\x94\x7e\x7c\xf0\x2d\x4a\xc9\x80\xa0\x19\xdd\x7a\xc4\xcd\x61\x2e\x21\x25\x7b\xfd\x1b\x53\xde\x33\x04\xb9\x98\xd1\x97\x7a\x9f\xdc\x59\xf8\xf2\x25\x63\x9f\xfc\xe2\x7c\xc2\x77\x65\xa5\x87\xed\x37\x66\x13\x26\x9b\x84\x67\x4e\x56\xf9\xc2\x8c\xc3\xa3\xe0\x41\x77\xaa\x84\x0a\xe1\xea\x27\xa5\x4f\xfa\xb3\x88\x70\xe0\xee\x34\x52\xad\x98\x45\x18\x48\xb8\x6a\xfa\xe3\x70\x6d\x09\x78\x4c\xfb\x73\x0c\x07\xd7\xd1\x38\x0a\x9f\x54\xe5\xe6\x87\x4b\x10\x86\x65\x9f\x6e\x98\x24\xbc\x9c\x30\x72\x64\x7f\x96\xf2\xde\x43\x04\xf7\x98\x4d\x17\x46\xf7\x96\x12\xb8\xfd\x7d\x99\x15\xe7\xa7\x11\x6c\xa6\x89\x3c\xe1\xdd\x35\x85\x20\xfc\x7e\xc3\x47\x6b\xa5\x0d\x04\xc1\xe9\x2a\x46\x2e\x35\x5f\x18\x54\xbd\x6a\x17\xfe\x61\xe7\x47\x88\xb8\x65\x31\xf1\x92\xeb\x65\xc2\x7b\xb7\xbb\x06\x4a\x01\xa3\x0c\x9e\x3e\xeb\x3d\x29\xda\xac\x4c\xd8\xec\xc1\xbd\x44\x20\xd1\x99\x0d\x1a\x7a\x1e\x55\xfd\x82\x4f\x19\xcc\xdd\x68\xfe\x60\xe6\xf3\x43\x2c\x38\x7e\x79\x78\x57\x54\x71\x3a\xe1\x6f\x69\x71\xd8\xd0\xcb\x74\xc2\x9b\x06\x91\x35\xdc\x82\xb6\x6c\xd8\xab\x71\xd4\x41\x66\xda\x16\xc2\xf1\x96\x61\x95\x41\x85\xf5\x84\x7b\xad\xb3\xaa\xbe\x3a\x4c\x27\x48\xcc\xeb\xd8\xba\x75\x45\x1b\x83\xdf\x85\x52\xa6\xde\xab\xb2\x09\xd7\x3f\x9d\xdf\xe8\xff\xcb\x9b\x10\x28\x93\x9e\x79\x31\xd5\x83\x05\xf1\xe5\x3b\x35\xed\xee\x44\x10\x3a\x78\xd6\x1f\x7c\xe9\xbc\x9d\xc0\x55\x38\x55\x63\x64\xba\x37\xc1\xaa\xf2\xce\x50\x90\x59\x00\x21\x63\xaa\xda\xfe\x6d\xa9\x7e\x2c\xf4\xb5\xfa\x37\xc8\x94\x46\x13\xa4\x4d\xad\xe2\xfe\x21\xfc\x99\x9e\x6c\xdb\x87\x68\x42\xa9\xd0\x01\xab\x64\xd7\x54\x82\x9b\x95\x96\xdd\x03\x81\x9b\x2c\x58\x34\x57\x6d\x39\x16\x96\x4f\x58\x20\x1a\xb8\xb1\x7b\xef\x2b\x42\x66\xfc\xf6\xa4\xf3\x1b\xf2\x09\x1a\x75\xbf\xfc\x79\x22\xf3\x09\xaf\x2e\xdf\xbe\x66\xcf\xd2\x27\x14\xca\x1e\x1d\x16\x7a\xf3\x8a\xc1\x71\xc1\xb5\x72\x87\xb8\x64\x69\x1c\xef\x2f\x6a\x67\x2a\x3f\x6e\x63\xa0\xd2\x6a\xc2\xfb\x2b\x61\x2a\x21\x4b\xc3\x97\xeb\x9d\xea\x25\x36\xb8\xa9\x7f\xa8\x9c\xbe\x27\x84\x60\x37\x6a\xef\xf4\x75\x5b\x1b\x0b\x53\xfa\x3e\x1c\xef\x1c\xc3\xbb\xeb\xd1\x1b\x46\x27\xbf\x61\x41\xf6\xe4\xbc\x15\x93\xb7\x16\x12\xe4\xe7\x7d\x59\xf2\xde\xf9\x03\x83\x65\x53\x3c\xfc\x5c\x5e\xf2\x12\x9e\xbc\x1e\xfa\x38\xf3\x9b\x15\x61\x4e\xe9\xe8\xea\xd2\x0a\x1b\x02\xdf\xfa\xb9\x31\xa5\x1f\x95\x09\x33\x9f\x7c\x5d\x1c\x25\x39\xc2\x40\xb9\x5a\xb5\xdf\x12\xfb\x08\x53\x0e\xce\x7b\xda\x2d\x36\xc8\xe0\x44\xd2\xf7\xc6\xdd\x5e\x9e\x04\xb1\x92\xd7\x4b\xaf\x07\x6c\x22\xac\x3f\xff\xf3\xdb\x76\xc3\x65\x84\x0b\xfa\xf6\xbc\xb5\xfc\x22\x04\x6b\x21\x27\xa4\xe4\xe5\x10\xee\x27\xda\xdd\x9b\xff\xfe\x09\x61\x65\xf1\xbc\xb0\x94\xf8\x3a\x16\x26\x35\x89\xe8\xbb\x3e\x11\x23\xf8\x6d\xf7\x5a\x5d\xa6\x3a\x89\xf0\xd0\xeb\xb9\xeb\xe0\xb2\x39\x6c\x25\x42\xa1\xe0\x77\xd0\x88\x00\xc1\xce\xbc\x52\xe4\x87\xdb\x2c\xb6\x72\x7f\x68\x3e\x87\xda\xe4\xc8\x12\x54\x99\x55\xf6\x7e\xde\x90\x4b\xc8\x5b\xbc\x76\x09\xc7\xa4\x48\x82\xb9\x41\xee\x9a\x91\xa2\x5c\x42\xda\x9b\x4d\xc9\x8d\x3a\x97\x08\xb6\xf1\x87\x8b\x6c\x52\xaf\x11\x82\x13\x37\x73\xa6\x5a\x95\x11\x6e\xaa\xea\xd4\x3e\x17\xbd\xcd\x42\xb2\xc3\x2e\x19\xdb\x8b\xab\x09\x72\xa1\x76\xdf\xd0\x59\xc3\xe0\xd5\x5e\x8e\xc3\xf6\x43\xb3\x09\x0b\x96\x6a\x7f\x35\x11\xbe\x4b\xd8\xf8\xf0\xf3\xa6\x91\xf7\x25\x84\x35\x2a\x4f\xe2\x9b\x5b\x6e\x10\x96\x46\x39\x5c\xf9\x1b\x37\x91\x50\xf1\xd9\xa0\xee\xb1\xbb\x31\x1b\xce\xae\x9e\x76\x5b\x5d\x72\x0e\x81\x4f\x84\x4b\x76\xfd\x52\x51\x42\xdf\xf9\x49\x73\x1a\xbf\x72\x10\xee\xc4\xae\x55\x1e\x9e\xe5\x48\xd0\x0d\x8f\x75\x9e\x6c\xe4\x40\x48\xda\x60\x2e\xaa\x5f\x18\x49\xd8\x7a\xd9\x54\xcf\xbf\xb4\x95\x41\x9c\xcf\xf2\xa3\x24\xb2\x87\xc6\x31\xdc\x5f\xdc\xbc\xef\xad\x14\x21\x9f\x89\x3d\x90\xe9\xe8\x46\xc8\xd2\xec\x5b\x6f\x20\xc2\x10\x72\x97\x9d\xe7\xbb\x7c\x6f\x27\x21\x63\xe1\xdb\x88\x9b\x8b\xfc\x09\x2e\xef\x42\xf8\xfd\x4f\xc7\x10\x5a\xca\xab\x72\x51\xae\x4b\xd0\x36\xde\x79\xbf\xb1\x37\x8d\xa0\x3f\x61\xd7\xac\x33\x3d\xb2\x84\xe8\xc6\x50\x9e\xd8\x86\x53\x84\x93\x51\x86\xbb\x4f\xa9\x0a\x11\x84\x5f\xbd\x7b\xf8\x59\xf7\x2f\x83\x3a\x83\x9e\x48\xcf\x43\xd2\x34\x8e\xc5\xcb\x6e\x6e\x0e\x91\x7c\xc7\xe0\xae\x52\xb4\x96\x5e\xf7\x5f\x06\xea\x9d\x23\xd7\x45\x76\xe9\x13\xf4\x7a\x9e\x7f\x9e\xe5\xba\x84\x60\x97\x67\x3c\xba\x6d\xba\x1e\x1b\x1c\x55\x8c\xa4\xda\x62\xe7\x10\x92\xa5\xdd\x8e\x38\xf7\x2f\x26\x68\x9e\x54\xab\xc9\x3b\xd9\xc7\xc0\x57\xc3\x55\xd3\xea\xaf\x03\x8d\xa3\xff\x7a\x7e\xe4\xd9\x5f\xb5\x25\x58\xfd\x74\xe2\x03\x29\x51\x0b\x02\x8f\xa8\x28\x5d\x56\x33\x27\x98\xd6\xee\xeb\x0f\x12\xcb\x27\x7c\xf2\x72\x09\x10\xee\x4c\x25\xf0\x7e\xbf\x31\xf7\xd4\xc4\x7d\x84\x6d\x46\xfc\x8e\x6d\x9d\x0e\x84\xca\xac\x16\xe1\xbd\x21\x9e\x84\x29\x1f\xf8\x1d\xe5\x32\x6c\x08\xea\x05\xe1\x6d\xeb\xce\x59\x12\x9c\xcf\x69\xaa\x96\x7f\xd0\x25\x94\xed\x1c\x78\xa3\x60\x9e\x45\xf0\x16\xb2\xc9\xf0\xb9\x7f\x81\x05\xbd\xaf\x5d\xef\xea\x1b\x5c\x09\xfa\x8c\x70\x27\x5f\xa1\x24\x41\x6b\xa2\xdb\x79\x91\x27\x49\x84\xc5\x52\x55\xaf\x2f\x7e\x4a\x22\x5c\x56\x32\x5f\xbb\xd4\xc9\x98\x0d\x01\x5e\x66\x4a\x9d\x3a\xad\x0c\x36\x6d\x5e\x9a\x10\x7e\xb5\x82\x05\x46\xfe\xfd\x81\x87\xe6\x3e\x84\xe7\xad\x1f\x24\xd5\x1c\x92\x58\x08\xab\xf7\xa8\x2a\xed\xbd\x48\xe3\xb0\xd9\xc2\x15\xf5\x70\xf6\x25\x42\xaf\xde\x74\xde\xc3\xb2\x93\x09\x8f\x3e\xd6\x0e\xbf\x93\x5e\x46\x38\x56\xde\xa0\xd5\xbb\x58\x9d\x10\x64\xc5\xb9\x6e\xd3\x22\x29\x42\x45\x49\x5f\xeb\x9b\xd9\xbd\x0c\x4e\xce\x57\xda\xce\xf1\x76\x05\x41\xf3\x95\xc6\x93\x23\x7e\xef\x08\x62\x7c\xdb\x13\xeb\x92\x0f\x13\x3e\x7a\xa9\xac\xb4\xbc\xbc\x91\xe0\x76\x79\xe8\x69\x84\xd8\x53\xc2\x3a\xe9\xeb\x3c\x51\xaa\x8f\x09\x7b\x54\xce\x6d\xfb\x57\x78\x46\xca\x4d\x0a\xf7\xc4\x11\x14\xe8\x63\x5f\xc1\xf9\x6c\x16\xa4\xae\x33\x07\x67\xa6\xe5\x11\xa2\x4d\xae\xca\x16\xf8\xdc\x21\xf4\xe6\xd4\x39\x04\x8f\x3d\x75\x0d\x67\x1c\xac\x79\xcc\xf6\xd0\x38\xd2\x67\x9f\x7b\xb5\x7f\xec\xa9\x73\xb2\x7b\x3d\x4b\x6f\xc5\x4d\x82\x6d\xc6\xe9\xdc\x57\x1c\xb6\x84\x49\x8a\x4d\xa3\xf8\x13\x43\x50\x19\xfe\x90\xba\xe6\x5c\x02\xe1\x90\x27\x67\xbd\xf6\xaf\x00\x82\xf1\xd5\x6f\x55\xd9\xf3\x25\x09\x6d\x11\x17\xd5\x53\xcd\x7c\x09\x7e\x8b\x5a\x9e\x7a\x57\x9a\x13\x56\xb8\xd5\x6f\xe5\xd3\x77\x22\xac\x39\xfb\x37\x67\xe3\x8c\x62\x42\x9e\xc5\x8c\x23\x59\x96\x27\x59\xe8\xe3\x52\x2a\xb7\x8f\x10\x27\x9c\x96\xd8\xf3\xae\x57\x58\x95\xd0\xb4\xe4\x96\xc9\xf6\xf0\x99\x04\xdd\x29\x27\xca\x15\xdb\xf4\xd9\x10\x22\xfd\xb3\xe0\xb5\xfd\x67\x06\xdd\xe2\xb9\x5b\xf6\xde\x56\x24\xd8\xfa\x36\xbc\xbf\x2b\x99\x44\xf8\x31\x3f\x33\x36\x2a\xd7\x8a\x70\x35\xc4\xfe\xd2\xbe\xd7\xd9\xac\xf1\xb2\xc9\xd3\xd7\x2c\x6f\x58\x9e\xf0\xb9\x5b\x61\xcd\xb1\xc2\x0b\x04\x87\x4c\x6f\xfe\x8d\x41\xb7\x09\x59\xfa\x7d\xee\xed\xc3\xb7\x09\x39\xe2\xdc\xb5\x03\x5a\x49\x84\xc4\xe4\xac\xce\x35\x96\x09\x84\x60\xcd\x7b\x31\x69\xdb\x2a\x58\x08\x5b\xe4\xf4\xd5\xbf\xa3\x88\xb0\xfc\xc7\x46\xfe\x91\x67\x52\x04\x2f\xa9\x60\x8f\x6e\x79\x31\x82\x5d\x5d\x53\xb8\xf4\xbb\x2c\xc2\xf2\x28\x99\x7e\x4e\xbe\x5c\x16\x4c\x47\x2f\xbe\x92\x09\x13\x21\x5c\xd7\x38\x1d\x33\x5b\x4f\x9b\x70\x4e\xd2\x30\xe2\x61\xab\x2d\x21\xc5\xeb\x86\xd2\x41\x9e\x4c\x42\xc8\xc4\x4d\xd7\xe3\x7a\x5d\xd8\xb0\xb1\xc8\xd9\x56\xb0\x4f\x90\xa0\x6b\x45\xfd\xdf\x52\x1e\x13\x24\x9b\x1b\xde\x44\xfd\x7f\xf8\xf8\xd3\x68\xaa\xff\xf7\xff\xff\x36\xa5\x52\x86\x0a\x99\x8a\x52\x84\x06\x73\x34\xbc\x0e\x32\x46\x2a\x63\x03\x0d\x4a\xa1\xa8\x54\xc8\x90\x31\xa4\xc1\x10\x2a\x45\x65\x68\x42\x65\xa8\xcc\x36\x2a\x0d\x84\x10\x49\x14\xa9\x28\x94\x28\x0f\x4a\x9d\x4b\x6b\x9d\x1f\xfb\xbf\xd6\xfb\xf7\xbd\xb4\x6f\xeb\x7e\xbc\x36\xdb\x5e\x7b\x38\x9e\x57\x14\xc5\x11\xce\x95\x5d\x2b\x6e\xe3\x2d\x21\x14\xf4\x06\x64\x58\x4c\x2e\x21\xbc\x7e\x78\xfb\x4d\xb8\xf9\x03\xc2\xa4\xca\x8c\xcc\xf5\x63\x65\xb2\xab\xfa\xab\x48\x57\x2f\x42\x49\x71\xb9\xff\xa0\xf6\x61\xc2\x65\x71\xf5\x5c\xed\x0f\xde\x6c\x23\x4d\x93\xac\x9c\xe1\x80\x03\x84\x77\xbc\x25\x55\xfd\x15\x3e\x04\xee\x88\xac\x30\xf5\x0f\x21\x04\x95\xd6\xcd\x59\x9d\x5c\x43\x0c\x1c\xce\xe5\x87\xbf\xde\x20\x46\x48\x74\x5d\x50\x33\xed\xf1\x4d\x16\x86\x07\x36\xf6\xad\xab\x89\x27\x9c\xd4\xd3\xad\x96\xca\xd3\x60\x41\x54\xfa\xcf\xf1\xa9\x1b\xcb\x08\x2f\x0b\xaa\x1c\xaf\x2a\x29\xb3\xf0\xad\x79\xc5\xbe\x2b\x3b\x7c\x09\x17\xcb\xf7\x7a\x85\x9c\x3b\x43\x98\xf7\xf6\x86\xc2\x9d\x83\xf6\x04\x07\xed\x37\x47\x1a\xd7\xa7\x12\xca\x9c\x47\xae\xce\xe6\x0c\x20\x38\x15\x07\xfe\xac\x5b\x74\x95\xb0\x7f\xc3\x12\xb1\xe3\xc9\xe6\x84\xd7\x56\x03\x8f\x06\x07\xc3\x59\xd8\x7c\xdc\x68\xad\x10\xbf\x25\xc1\xea\xfd\x2e\xb3\x4c\x23\x23\x42\xb1\x63\x8c\xd2\xd1\x92\xfb\x84\xea\x46\xfb\xf3\xca\xa3\x15\x84\x49\x87\x55\x9b\x4f\x73\x3f\x22\x14\x5e\x28\xf9\x72\xde\xa1\x96\x90\xa6\x69\xe6\xb2\x64\x6c\xf4\xd0\xf7\x5d\x80\xe0\xe8\x59\x42\x50\x57\x5c\xb7\xc8\xe2\x3a\x16\x0e\xc6\xcc\x9d\x3c\xcd\x3f\x9e\xb0\x5e\x37\x4f\x46\x85\xff\x1c\x21\x6e\xcd\xbd\x5c\x81\x82\x48\x42\x4f\xbd\x85\xc5\x6c\xe5\x5b\x04\xff\xbe\xf3\xb5\xf2\x7e\xaf\x58\xc8\x34\xd9\x39\x2d\x5e\xae\x99\x85\x27\xdf\x02\xe2\x13\x8f\x1c\x22\xdc\x8e\xd8\x6d\x57\x76\x75\x6c\xd3\xbb\x17\xad\xd5\xf5\x70\x1f\x81\x5b\x69\xef\xa3\x74\x83\x52\xc2\xc8\xd4\x6f\x3f\x7c\x7f\xe6\x11\xb4\x77\x70\xae\x8f\xaa\xbc\x4b\x70\x3e\x18\xf0\xe6\xdf\xc8\x22\xea\xe8\xbc\x60\x25\x1b\xc2\x0a\x3e\xcd\x05\x1b\x2d\x25\x09\xf1\x86\xa7\x22\x4f\x3b\x9c\x65\x41\x7a\x57\xe2\x36\x0e\x95\x93\x84\xc4\xe4\x76\x87\x48\xd7\x93\x04\x8f\xb9\xcc\x13\xcb\x74\x05\x42\xe3\xbc\x29\xdf\x9d\x23\x0a\x09\x8d\x6b\x38\x07\x7b\x93\x2e\x10\xa6\x96\x34\x3e\xfa\x87\xd2\x53\x2b\xb6\xd8\xdd\x0b\x22\x7c\xbd\xa9\x9c\x26\xd5\x14\x44\xd0\xc8\xdf\x67\xd0\xf2\xe7\xca\x7f\xe1\xe3\xfa\xd9\x8b\xf4\xe1\x4c\xb8\x1f\x14\xac\x6a\x68\xb0\xeb\xbf\x60\xf1\x86\xa7\xce\xf8\x59\x10\x6b\xbc\xcc\x69\xd1\x2f\x0a\x5f\x6c\x4a\x08\x39\x6d\x7b\x5e\x24\x54\x86\xc0\xed\xb8\x6c\x65\x4d\xb2\x29\x1b\x12\x7d\x0b\x47\x97\x8f\x4c\x27\xd4\x2e\x2e\x9d\xd7\xff\x24\x85\xc0\xa9\xf0\x35\x59\x71\x6d\x1b\x83\x41\x01\xce\xbe\xb9\x17\xc6\xbe\xe8\x55\xe6\x9f\xa8\x8c\xf1\x27\x48\x2f\x0f\xdb\x29\xb5\xdc\x9f\xc0\xbb\x70\x4a\x45\xd5\x21\x3f\xb6\x72\x62\xf1\x6e\xf9\x5b\x55\x51\x6c\x58\xc9\x79\xfd\xa3\xf2\xbc\x58\xb6\xb2\x44\xfd\x27\xbd\x2a\x0b\x21\xb4\xbe\x71\xc9\xb5\xb6\xb5\x27\xb4\x75\x4a\x7e\xdc\x1b\xf2\x90\x20\xd6\xfa\xc7\x68\x8d\xa6\x09\xa1\xe0\xc5\x26\x95\xa8\x84\x75\x84\xd5\xe9\x82\xcd\x79\x8b\x37\x12\x2c\x03\x22\xe7\x71\x9b\xe4\x10\xd6\x59\xd6\x57\x49\x77\x65\x12\x78\xba\x9d\xba\xbe\x8a\xce\x27\x64\x08\xdc\x2b\x62\x5c\x1f\xb2\x70\x74\x8f\xb2\x62\xf1\x85\x37\x0c\x1c\x0f\x4e\x4c\xd3\x1d\xe0\x22\xd8\x1e\x3f\xe8\xdb\xff\x37\x89\x60\x9d\xbe\x9d\xf3\xed\x8a\x12\xc2\xc2\x03\xf7\x8d\xdb\xc6\x60\xdb\x76\x6e\x63\xef\x71\x30\xb0\xab\x4e\xbc\xef\x6f\xe8\xc8\x82\x93\x9c\x23\xdf\xbf\x57\x82\xf2\xe3\x7b\xf9\xb1\xfe\xe5\x84\x38\x81\xca\xda\x7f\x38\xe4\x10\x61\xa4\x6c\x5e\xce\x36\xd2\xdc\x61\x6a\xf8\x0f\x69\xe7\xa5\x27\xef\xf6\xb8\xc0\x06\x51\x9f\x67\x19\xbb\xc6\x70\xc5\x35\x72\x63\xe5\x74\x7b\xc2\xda\x67\x12\xe7\x16\xe5\x9a\x11\x0e\xbd\x57\x1c\x15\x52\x4a\x65\x61\x8a\x9b\x42\x85\xe2\x93\x7c\x42\x9f\x95\x21\xf7\x8e\xbb\xf9\x84\x79\xd9\x0f\xca\xed\x5f\xe4\x13\x66\x85\x37\xce\xbd\xea\x5f\xce\xc2\x86\xa2\xe6\xf5\xcb\xd7\x5a\x11\xbe\xee\x3b\xdf\x63\x1e\x2d\xc2\x06\x3b\x8f\xc7\xce\x6d\x15\x93\x09\x69\x6a\x7c\x45\xcf\x7b\x56\x13\xbe\x06\x65\x1b\xd7\x6b\x59\x13\xee\x2d\x9a\x6f\x18\x53\x9c\xc6\x86\x3a\xd5\xd4\x0f\xb1\x63\xe0\x54\x3b\xbf\xe0\xa9\xcb\x67\x66\x1c\x22\x75\x8e\xc5\xdc\x27\xb2\x58\x90\x8d\xef\xbf\x92\xe5\x53\xc2\x82\xbc\x86\x5e\xdf\xf6\x43\x9a\x04\xb7\x9b\x6b\xa6\x75\x75\xce\x24\x14\x88\xc6\xad\xe0\xfa\xb4\x9e\x10\x7e\x68\xd1\x26\x56\x82\x0a\x1b\x2e\xbf\x38\x38\x6b\xda\x97\xbf\x0c\x4e\x7c\x34\x11\x5b\x15\x7a\x93\x10\xe5\x5c\x3c\x70\x61\xb8\x88\x85\x07\x85\x3c\x1f\x33\x42\x1d\x08\xc7\x3e\x71\x1b\xc9\x1d\x9a\x45\xd8\xfd\xec\x10\xd7\x8e\x08\x0d\xc2\x62\x97\xf9\x69\xce\x93\xb3\x59\xd0\x4f\x8b\x7d\x95\xd5\x72\x80\x85\x83\xeb\x1c\x8a\x4d\x1e\x06\x13\x0e\xb5\x1a\x5f\x54\x76\xdc\x45\xf8\xb9\x54\x76\xb5\x63\xc4\x6f\x66\x1c\x33\xf9\xb5\x9b\x3c\xbd\xf5\x09\xab\x5e\x69\x7f\x5a\x72\xfb\x1b\x03\x7f\x4d\xb5\xae\x93\xc6\x56\x84\x99\x1a\xbf\xef\xae\x1e\x75\x27\xc4\x5b\x7f\xd5\xe0\x14\x36\x24\x24\xfe\x88\x49\x78\xed\xb9\x99\xf0\x48\xaf\x2e\x6b\xbe\x9f\x2e\x41\xe4\x86\xfb\xf5\xae\xfb\x3a\x84\x38\xa5\xda\x2b\x11\xae\xb3\x09\xe9\x7d\xda\xc7\x9e\x3e\xb9\x44\x70\xfd\x7d\xa3\x70\x45\x9c\x13\x61\xb8\xaf\x5d\x80\xdb\x7f\x0e\x1b\xf2\x8f\x1b\x14\x75\x44\x2b\x10\xa6\xca\x96\xc6\x4b\x4f\x5d\x4f\x88\x4e\xdd\x2d\x18\x2d\xce\x43\x50\x5f\x71\x4c\xa2\xbf\xbe\x8c\x85\x34\x6b\xd6\xe9\x79\x62\x2a\x04\x11\xd5\x49\xb9\x0a\x12\xaa\x04\x3e\x77\x69\x15\x13\xdf\x87\x84\x03\x06\xc6\x57\x5c\x04\x54\x08\xbf\x02\x8b\x1a\x16\xff\x14\x24\xbc\xf1\x94\x4b\xca\x92\xdd\xcb\x86\xd3\xfa\xd9\xf9\x2d\xf9\xc2\x84\xb3\x9d\x12\xb3\x44\xd2\xdb\x09\xee\x6f\x6b\x2f\x70\x6b\xde\x27\x08\x6b\x58\x35\x8b\x38\x2b\x12\x26\xb6\xa6\x18\xac\x32\x5b\x48\x68\xe6\xca\x78\x3b\xe9\x33\x07\x21\x94\xaf\x7c\xbb\x4a\x82\x10\x1b\xde\xb5\xb6\xa9\x3f\x3c\xf4\xa4\x04\x2e\x53\xd3\x8f\xdd\xe9\x76\x22\xf0\x38\x1b\xdd\x89\x5e\x21\x4f\x38\x1f\xfd\xb4\x7e\xa3\x4a\x30\x21\xc4\xb7\xd2\x40\xad\x55\x81\x90\x2b\x96\x18\x35\x5b\x7a\x3d\x41\x78\x9a\xdb\xdb\xb3\x29\x97\xd9\xb0\xe5\x93\xbb\x90\xfc\xfd\x3d\x84\xd9\x85\x8b\xda\x34\x5c\x8c\x08\xb6\x61\xc7\x0c\x8c\x0d\x72\x59\x90\x87\xb8\xdd\x04\x7f\x86\x70\xa5\x95\x65\x63\xba\xb8\x85\x81\x95\xef\xfc\xc3\x5f\x94\x3d\x59\xe8\x77\x8e\xd6\x3e\x4a\xeb\x09\xab\x57\xbe\xd9\x16\x91\xc7\x10\x6c\x7c\x15\xed\xb7\xcc\x9e\x41\xe8\xe0\x2f\xd7\x94\xfc\x42\x84\x4f\x3b\x9f\x95\xef\x9b\xf0\x8e\x41\x46\x1c\xff\x5c\x21\x61\x35\xc2\x85\x20\x1d\xff\xe9\xcd\x65\x0c\x9c\x85\x44\x78\x62\x22\xe6\x11\xea\xde\x6e\xb6\x77\x77\x2d\x20\x64\x2c\xbb\xb3\x21\xad\xa7\x93\x41\x7c\xa6\x6c\xc7\xb5\xb1\x4f\x3f\x3b\x9d\x00\xc1\xd3\xd6\x9c\x84\xac\xb4\x39\x61\xd1\x67\x66\xb3\xc1\x91\x2b\x50\x4f\xdb\x6f\x1d\x21\x6e\xe1\x3e\xa3\x06\x37\x0b\x42\x68\x85\x6c\xcf\xfb\xcb\x9f\x08\x15\x5f\x9e\x24\x2f\xb3\xf9\x44\x30\xca\xb4\x1f\x94\xa8\x6f\x62\x41\x5c\xe9\x4a\x88\xcf\x81\x5e\xc2\x02\x7e\xaf\xe1\xb4\xd8\x32\x82\x86\xfc\xaf\xd2\x01\xe7\x2a\xc2\x24\x99\xf7\x7c\xb3\xd3\x9f\x13\x3a\xec\xf0\xde\xd9\xbe\x88\xb0\x36\xc1\x7a\x5d\xf5\xca\x2b\x84\xd6\x1a\xbd\x96\xa1\x6b\x0f\x08\x5d\x4d\x76\xf3\x9e\xec\x8b\x25\x2c\xd9\xd7\x30\x52\x15\x93\xc5\x82\x5a\xb4\xf7\xa5\xd1\xe7\x93\x09\xca\x62\x6b\x0e\x3a\xfd\xcc\x21\x70\x36\x8f\xac\xc8\xbf\x94\x49\xd8\xd6\x77\x32\xf7\x5f\x51\xcc\xe3\xb8\x9c\xf6\x26\x88\x90\xa7\xbc\x41\x69\xf7\xfa\x6d\x84\x53\x4e\xd6\xad\xf1\x4d\x43\x04\xa1\x5c\x9b\x9c\x73\x63\x10\xb3\xda\xb4\x2d\x66\x0c\x73\x5c\x7c\x36\x84\xb6\xa4\x13\x46\x6d\xcc\x36\xee\x55\xcd\x66\x21\xc9\x72\x4e\xbb\x69\x7c\x3e\xe1\x56\xf4\xec\xea\x86\xc2\x42\x42\xcb\xbb\x73\x49\xcf\x83\xca\x08\x82\x0f\x62\x07\x8d\xda\x2e\xb1\x95\x57\x07\xb8\xd3\x63\x5d\x45\xd9\xf0\xcb\xed\xb2\xd2\x87\xba\x12\x36\x74\x44\x95\x0f\xe5\xc9\x7c\x62\x2b\xb9\x02\x8a\x95\x8b\x2e\x89\x10\x26\x8d\xf4\xf7\xf7\x69\x8e\x30\xd0\xde\x20\xfa\xd9\xe1\xe5\x24\x82\x5f\xd3\xef\xd1\xd4\x86\x25\x34\x5e\xfe\x07\xb1\x48\x93\x20\xff\x9c\x1f\x0c\xec\x77\x7c\xd3\xfb\x9c\x1a\x46\x58\xba\xe8\xaa\x73\x57\x1c\x17\x41\xff\x48\xd8\xf4\xcd\x9f\x0b\x09\xe2\x41\xea\x51\xf2\xca\xaf\x09\x15\xe6\x2d\x6a\x2a\xb1\x77\x09\x8e\xa2\x1b\xb7\x8d\x26\xbe\x60\xd0\x1b\x96\x10\xf9\xd3\xa1\x9f\x0d\x6d\x5f\x5f\x5f\x51\x59\xf2\x89\x01\xf7\x0c\xc9\x21\x91\xea\xe7\x04\xcd\xf5\xbc\xbe\x1f\x1c\x5f\xb2\xf0\x25\xf7\x9b\xf4\x54\xcd\x32\xc2\x46\x87\x55\xbf\x5c\xd5\xeb\x09\x35\x1f\x4a\x07\xbf\xbe\x78\x4c\x70\x98\x62\xf2\xfd\x47\xc5\x07\x16\x4c\xcf\xb1\x66\x7f\x1f\x2b\xb5\x1f\xf7\xef\x1a\xbe\x10\x4a\x28\xed\xcf\x34\xe2\xff\xba\x97\xf0\x48\x6e\x6b\xcc\x4b\x89\x77\x84\x70\x89\x01\xf5\xc6\x31\x78\xad\x91\x9d\xab\xbc\xab\x94\xb0\xa1\xe3\x9c\xf0\xb1\xe2\x66\x82\x22\x4f\x4c\xdb\x0a\xb9\x3a\x82\x6a\x77\x74\x4b\xe6\x2d\x09\x42\xb7\x6f\xe2\x9f\xfd\x33\x86\x18\x78\xad\x7f\x52\x50\xe9\xbf\x87\xfe\x03\xb7\x4c\xea\x9c\xa5\x2f\xcd\x26\xdc\x9b\x68\xf7\xed\x68\x4a\x36\x0b\x67\xaa\xc3\x12\x75\x0b\x2c\x08\x3d\x4f\x7f\xdb\x4e\xf7\x90\x20\x5c\x3d\xab\xba\xff\x93\xa5\x36\x41\xf2\xe5\x03\x4b\xb5\xfb\x7c\x04\xb5\xf0\x2f\x53\x7e\x7f\xe1\x22\xdc\x3c\x95\xfb\x5a\xe1\xfa\x37\x06\xe6\x5e\x6f\x14\x14\x67\xab\xb0\xc6\x0b\xd7\x79\x3d\xcf\x4c\xc1\x6f\xcc\x70\xe1\xcf\xa6\xcf\x92\x1c\x84\x20\x73\x9b\x3d\x87\x4f\xcb\x12\x22\x3c\x2a\x4b\x7a\xf7\x88\x13\x3a\x6e\x34\x7d\x5c\xf2\x6e\x16\xe1\x84\xd6\x0a\xcd\xfa\xd2\x19\x84\x64\xaf\xd8\xda\x7d\x95\x33\x08\xca\x2e\x96\x7a\xd3\xe3\x06\x19\xa4\x7f\x4d\x9f\xa5\x7b\x7e\x23\xe1\xcd\xcd\x85\xbd\xfd\x33\x4b\x08\x8f\x22\x3b\xba\x23\xe3\x56\x13\x5c\xfd\x2f\xa4\x85\x1b\x09\x10\xb4\x1d\xb5\x47\x53\xc7\xde\xc1\x61\xe7\x25\x8e\x09\xa6\x72\x13\x24\xcc\x7d\xc4\x6e\x5e\xe3\x23\x58\x07\x38\x84\x97\xe4\x68\x10\x96\x0a\x9a\x28\xd5\xd7\x8b\x13\x5a\xb9\x16\x4d\xf4\x9a\xb3\x84\x70\xa7\xad\xaf\xe1\x90\xc7\x42\x42\xd4\x8c\xe6\xca\xc0\xa4\x2f\x0c\xb2\x6b\x1e\x7f\xd1\x99\xf4\x91\x0d\x4e\x45\x1b\x14\x7a\x53\x38\x09\xd7\xa6\xdc\x6e\x33\xb6\x5d\x4c\xd0\x48\x0d\x61\x52\x17\xcb\x13\x44\xcb\xed\xfa\x2e\xb5\xcb\x11\xb8\x4d\x58\x13\x2f\xbe\x37\x24\xc4\x5a\x97\x2c\x2f\xeb\xff\xcb\x20\x37\xb5\xdb\xdc\x56\x8f\x9b\xf0\x5c\x32\x76\xf2\xea\x36\x3f\x36\x50\x83\xd6\x86\xeb\xdf\x55\x08\xf4\xb0\xc9\xee\xee\x2b\x2f\x02\xf7\x53\x91\x69\x0b\xc7\xb6\x78\xeb\xbf\xc3\xf2\x85\x2a\x0f\x09\x11\xfd\xdf\x39\xee\x4f\xb5\xfb\x2f\xac\xf1\x32\x35\xf7\x9d\x73\x96\x0d\xce\xfc\xa3\xeb\xdb\x7e\x5f\x25\x3c\x71\x4c\x72\x5f\xbb\xa8\x94\x70\xf7\xf5\xef\x29\xba\xc1\xf6\x6c\x45\xc8\xe9\xea\x4d\x97\x2b\xa1\x84\x6b\xb5\x27\x73\x7b\x36\x7b\x13\x54\x02\x3a\x6c\x44\x74\xb2\x09\xc6\x8f\xf5\xcd\x05\xdf\x66\xb0\x50\x57\xbf\xa3\x4a\x78\xac\xe4\xec\xaf\x72\xc9\x75\x9f\x45\xf8\x7c\xf1\xc2\x2f\xff\xb0\x63\x84\xa8\x4e\xab\x9d\xd7\x2c\xd6\x13\xb2\x63\x6c\x6d\x3f\x6b\x58\x10\x76\xa9\xab\xcd\x7d\x74\xcc\x94\x05\xeb\x37\xa7\x56\x25\x9c\x98\x4e\xd8\xd8\xdf\xb7\x9a\x09\x90\x24\xe4\x87\xc6\x70\xe4\xed\xf3\x60\x83\x46\x68\xa4\x56\x5d\xd3\x2c\xc2\x85\xbf\xd5\x81\x2d\x7d\xb6\x04\xbe\xa9\x95\x7f\xa7\x77\x8a\x10\x2e\xef\xf5\x7a\x27\x3a\x5f\x92\xb0\xb1\x60\xc6\xa8\xf9\x42\x2b\xc2\x44\xb9\xc2\xfc\xd9\xbc\x06\x04\xa5\xd3\x7d\x97\x8b\xed\x34\x09\xa5\x2d\x47\xde\x69\x6f\x11\x25\xe8\x08\x0e\x0d\x1c\xb1\x6e\x2f\x41\xf7\xd4\x5b\xbc\x12\xb6\x43\x0c\x7a\xc2\x99\xc5\xa6\xaf\xce\x12\xcc\xe6\xcf\xfa\xc3\x6f\xc9\x8e\xbd\x92\xf9\x82\xf7\x5b\x77\x13\x04\x7d\x9a\x9c\xf7\x1b\xaf\x62\xc3\xb5\x47\x93\x1b\xf2\xd2\x7c\x59\x78\xc8\x0b\x87\x1b\x33\x06\x19\x44\xce\xf9\x12\x79\x7b\x99\x27\x8d\x63\xd8\xbf\xd3\x7d\xe1\x07\x31\x82\xf1\x90\xf0\xda\xb9\xf2\xb7\x08\x3a\x92\x0b\xcb\xeb\x1d\x22\x09\xd9\x96\x81\xfb\xb6\x85\xad\x22\x04\x1f\xe7\xc8\xf9\x56\x74\x8c\x0d\xd7\x5e\xda\x4c\xc8\x37\x5f\x4a\x38\xb9\xff\x47\x91\xd6\x56\x79\x82\x8c\xe4\x72\xa7\x57\xbd\x9a\x84\xa2\x33\x46\xcb\x28\xc5\x91\x90\xc7\xbf\x4c\xbb\x8d\xe3\x01\xa1\xbd\xde\x40\x6c\x9f\xa7\x34\x21\x4e\xdb\xfa\xfb\xb3\x8b\x51\x04\xbf\xb4\x84\xc4\xdb\x33\x2c\x08\x2d\x43\xac\x0b\xdf\xb2\xc2\x09\x62\xd7\x79\x02\x46\x42\x2c\x09\x3c\xf3\x8f\x68\x36\x48\x6e\x24\x8c\xce\xbf\x12\xf4\x7a\x72\x34\xe1\x27\x9f\x9a\x48\x77\x65\x20\x0b\xad\xd7\x95\x3a\xf2\x9c\x32\x09\x39\xeb\xae\xa4\x4b\x1f\xcf\x64\xc1\xcb\x72\xb8\xcc\x37\xbc\x8c\x70\x2e\x86\xe7\xa8\xed\xbe\x4c\x42\xed\xfd\xd7\x39\x89\x3f\xca\x09\x43\x8c\xe4\x55\x3e\xc7\x68\xc2\xc4\xeb\x9e\xce\xdb\xca\xd5\x08\x5d\xca\x22\xba\xe1\x25\xfb\xd8\xd0\xe1\x32\x83\xb3\x79\x51\x1c\xc1\x75\x87\x69\x90\x6c\xb1\x1e\x61\x52\x92\xe2\x2e\x83\x35\xd2\x84\xef\x2b\xb8\x05\xde\x3e\xd2\x25\x74\xaa\x3d\x9b\xe9\x12\xa0\x47\x78\xf6\xa1\xf0\xaa\xc8\x6f\x13\xc2\xa4\x82\xf3\xd3\xed\xbd\xcb\x98\x71\xa8\x5d\xd9\x65\x69\x67\x6d\x4c\xe3\xf8\x3a\xba\xe3\xe6\x75\xa7\xe9\x6c\xa8\xf0\xdb\xd5\xf9\xb1\x24\x85\xd0\x65\xb0\xbd\x73\x62\x6f\x0e\x21\xc4\xb5\xa6\x42\x28\x3a\x8a\x85\x95\x4a\xda\xeb\xa6\x8f\x61\x15\x07\x4b\x20\xf8\x47\x16\xa1\x25\x9e\xeb\x47\x95\x5f\x16\xe1\x68\x85\x18\x77\xda\xe3\x2c\x02\x75\xdb\x08\xec\x4d\xcb\xa2\xf1\x6b\x64\x0d\x17\x66\xc6\xde\x4d\x64\xc1\xa8\xea\x75\xdf\xda\xbe\x19\x04\xd9\xc9\x81\x69\x47\x52\x8a\x09\x03\xc5\x2b\x3f\x29\x3d\xcc\x67\x41\x6f\x7f\xcd\xe8\x50\x5a\x31\xe1\xf1\x05\xc9\xfb\x19\xf5\x87\x59\x28\x2c\xf4\x97\x5a\x1f\xb1\x9b\x85\xe3\x9a\x1e\x01\x81\xf7\xcb\x09\x3f\x94\x0f\x5e\xe6\xd1\x2b\x27\x3c\x19\xfe\xa3\xab\xb1\x61\xec\xd4\xfe\xff\x2f\xde\xfe\x8b\x9e\x66\x3b\xa7\x10\xba\xdf\xd8\xb7\x6d\xad\x48\x26\xcc\xef\x8c\x1e\x30\x33\x48\x21\x58\x98\x1c\x4f\x4b\x0e\x4a\x66\xbb\x86\xd7\xda\xe6\xcc\xfb\xc8\x75\x6c\xe8\xb2\x2a\x8c\x4d\xfb\x73\x97\x60\x74\x23\xfb\xa7\xd6\xac\x7b\x04\x0f\xbf\xef\xcb\xb5\xc7\x90\x98\xf4\x51\xe7\xd0\x7c\x43\x36\xac\x10\x0e\x2c\xae\x6c\xfc\xc5\xa0\x27\xe9\xde\xe7\x95\x7b\xb4\x69\x1c\xa6\xd6\xaf\xbe\xbd\x1a\x95\x22\x08\x7b\xc6\x2f\x88\x58\x63\x4f\x48\xa9\x18\xf8\xfd\x26\xff\x27\x33\x3c\x6d\x31\xeb\x6f\xcc\x4a\xfa\x7f\xdd\x42\x6c\x0a\x47\xc1\xba\xd8\xbf\x0c\x38\x93\x75\x8f\x59\x35\x30\x04\x87\xa2\xcc\x85\xd7\xcc\xcb\x08\x17\x37\x9c\xe8\xbb\x7a\x39\x8f\x85\x0c\xcf\x96\x10\xce\xbe\x52\xc2\xdf\xc3\x17\x45\xfe\x8d\x86\x1d\x55\x22\xe3\xf6\xad\x25\x0c\xfb\xdd\xfa\xb9\x54\x3f\x9d\x85\x8c\x83\xd5\x2f\xe3\x91\x43\xb8\x76\x35\x61\xcb\xa1\x7a\x3b\xc2\x21\xf1\xcf\x69\x6f\x33\xd6\x12\x4e\xf8\x5d\x12\xfc\xfd\xf1\x11\x81\x31\x61\xde\xb2\x38\x23\x08\x66\xb5\x8a\xf6\x41\x67\x04\x08\xe7\xff\xfc\x3a\xbd\x22\x55\xe8\xff\xc4\xcd\x39\x8f\x2a\x3f\x48\x3e\x63\x20\x43\x9f\xb7\xe6\xbd\x5b\x40\x68\xfe\x70\xfd\xe4\x93\x84\x32\xc2\x93\x45\x4d\xc1\x6b\xaa\x39\x09\x5d\x0b\x0e\x6c\x2a\x98\xbe\x8a\xb0\x3a\xc8\x76\x93\xc7\xc6\x23\x04\x03\x19\xdb\xa8\x91\x9f\x32\x04\xb9\xc7\x45\xc6\x4d\xda\x07\x09\xa1\x99\x14\x65\x37\xc3\x98\xf0\xe8\x29\xaf\x79\x83\x4e\x2a\xe1\x43\xc2\x19\x56\x4d\xff\x00\x83\xfb\x0f\xb9\x14\x7a\xff\xae\x24\x5c\x79\xe9\x9b\x73\x72\x44\x8b\xb0\x38\x74\x6e\xf5\xe2\xe8\xdb\x25\xb0\x96\xba\xb2\x39\x61\xff\x52\xfa\x0f\xa4\x6c\xa9\x3b\xb3\xd4\xe2\x76\x09\x62\x15\x83\xab\xaa\xb8\x0a\x09\xce\xdf\xa6\x3f\xb7\x7c\x52\x48\xd8\x72\x6f\xe2\x9c\x37\xc5\xa9\x04\x8b\x5d\x96\x99\xa1\xee\x09\x04\x81\x80\x9e\xae\x14\xe7\x5e\x66\x1c\x41\xfa\xc1\xc7\x0f\x34\xae\xa2\x71\xf8\x6d\x5c\x7e\x8f\xff\xc1\x2e\xb6\x12\xab\x9d\xea\x38\xbd\xbd\xb8\x04\xb2\x71\x01\x37\x02\xc7\x9e\x31\x19\x47\x9b\x0a\x8f\x47\xca\x84\x3f\xc5\x51\x7f\xb6\x3d\x0b\x65\x2f\xda\xed\xd1\x56\xd6\xef\x4a\x70\xc6\xb6\x81\x79\x75\xf9\x1a\x61\xbf\x7d\xd2\x9f\x93\xed\x57\x68\xfc\xee\x3b\xb6\xdd\x7f\x76\xdb\x4e\x83\xb0\xe7\xd9\x81\x61\xae\xb6\x1d\x6c\xe5\x82\x55\x4f\xd0\xc3\x4b\x45\x0c\x0e\x18\xac\x7f\xec\x26\xc3\x41\x38\xf6\x43\xf4\xb6\x90\xf4\x7d\xc2\x91\x39\xae\x03\x4a\xc2\x5d\x0c\x8e\xf9\x25\xba\x30\x0d\x93\x08\x9b\x9f\x08\x87\x9f\x4a\x5d\x40\x48\x6c\x17\x11\x5b\x2a\x69\x44\xe3\xa3\xef\x7d\x1a\x36\x7e\x63\xbb\x54\x68\xf7\x04\x79\xa9\x1d\x1e\x04\xf7\x34\xcd\x25\xd3\xb4\xef\x12\xe2\x0c\x46\x86\xce\x3b\xfc\x65\xf0\x76\xe6\xc6\x03\xa6\xdf\x26\xd1\xff\x85\xff\xfd\x9c\x2b\x07\x9e\x7c\x17\x17\xdf\x48\xd8\x2e\x5d\x70\x4f\x5d\xb0\x8c\x30\x92\xfe\x72\xf9\xeb\x63\x77\x08\xa7\x63\xfa\x56\xe4\xdb\xe7\x11\x4c\x9c\x2a\x3f\x2f\xbf\x7b\x8a\x85\xd5\xed\x23\x3b\xe6\xb8\x15\x11\x78\xd4\x8c\xd6\x88\xbc\xf0\x22\x48\x0e\x5c\xff\x92\xe7\x5b\x42\x78\x3f\xc0\x78\x7f\xdd\x72\x9b\x0d\xc9\x53\x1d\xea\xe3\x65\x89\x30\x7b\xb7\xf1\xbc\xde\xb1\x65\xf1\x6f\xd7\x9f\xed\x75\x63\x1b\xe1\xff\x81\xff\x3d\xb0\x85\x46\xb1\xbd\xf1\xc6\xc1\x2c\xf0\x25\xc4\xda\xba\x5a\x2c\x25\x98\x55\x37\x56\xdc\xf7\xcb\x25\xc8\x6d\x33\x3f\x33\xe5\x7d\x32\xe1\xce\x10\x55\x77\xb5\x2c\x27\x8c\xcc\x6d\xdd\xf0\xb3\xf1\x20\x1b\xae\xba\x39\x75\xf3\x19\xd8\x10\x5a\xed\x12\x47\x9d\x96\x24\x11\xca\x3d\x7f\x71\xcc\x9f\x10\x4b\x78\x96\xb2\x21\xd2\x40\x48\x96\xd0\xa6\x1e\xf1\x4a\x4a\x8c\x8f\xe0\xb1\x57\xda\x37\xa8\x42\x99\x90\x55\x93\xeb\xc2\x75\x60\x26\xe1\xbb\x69\x5f\xf9\x4a\x33\x19\x82\x40\xec\x0d\x93\x67\x87\xda\x09\x1b\x0b\x05\x2c\x92\xbb\x9e\x12\x2e\xf7\xfb\xec\x55\xe7\xcf\x20\xb4\xbe\x78\xab\x6b\xcd\xd1\x4e\x90\x18\x50\xac\x7b\xfe\xad\x94\x70\x7f\xbe\x57\xe7\xbf\x7f\x47\x93\xbf\x41\xd3\x84\x6f\xca\x73\xc2\xf2\xad\x06\x32\x13\x79\x2a\x09\x52\x8a\xd9\xfa\xc9\x39\xe5\x04\xe9\x89\x11\xcb\xf6\xae\x0b\x21\x30\xb7\x3a\x3b\xba\xa5\xae\x13\x56\x8a\x41\xfa\x3b\x6f\x47\x09\x42\x5c\x7a\x2c\x9c\x7e\x4c\x22\xb4\x46\x8b\x09\x24\x08\xe4\x10\x7e\x54\x66\xad\xb8\xca\x91\x43\x98\xbb\xf5\x8c\x5b\x24\xbf\x01\x61\xfb\xab\x40\x89\x83\x0e\x9c\x84\xba\xc8\xd7\x19\xb1\xfc\xd2\x6c\x10\x4c\x54\xb9\xbf\xc3\x8d\x93\x70\xd1\x33\xff\xb6\xcb\xf2\x8d\x84\xc3\x35\x15\x5e\x1b\x6c\xe5\x08\x89\xdd\x9d\x01\xc3\xa9\xf3\x09\x8c\x73\xc3\xcc\xec\x1c\x59\x42\x87\xb1\xfc\xe5\xbf\x4a\x82\x04\xe3\xd6\x99\xef\xeb\xae\xa9\xb0\xe1\xc7\x84\xbf\x59\xc7\x55\x0d\xd8\xb0\xee\xa1\xa5\xc8\xbc\x72\x69\x36\x28\x7c\x96\xf6\x36\x65\xcd\x66\xc3\x25\xb1\xb7\x9b\xf8\x02\x1e\x33\x78\xb3\xdf\xba\xd5\x38\x57\x9f\xb0\x27\x3e\xf0\x3b\x9f\x52\x39\xa1\x36\xa9\xb0\x27\x2f\x2c\x97\x50\x3f\xd2\x70\xf2\xc0\xd1\x2c\x42\xed\xbb\xb3\x93\xa7\x8c\x8d\xd4\xdb\x54\xee\xd6\x67\x45\x11\x44\xd4\x37\x3f\x92\x68\x62\xc7\x77\x6e\x99\x1b\xcb\x32\x4f\x12\xce\x31\x77\x1e\x57\xdf\xce\x64\xc1\x46\xed\xce\xc3\xad\x99\x1e\x84\xaf\x3a\x17\x44\x4d\x74\xee\xb2\xb0\xff\xcc\xed\x40\x9b\x03\x1f\x09\x07\xbe\x4d\x33\xbc\xec\xa2\x4b\x98\x26\x7b\xa9\xee\x79\xc2\x6c\x82\x5f\x54\x50\xcd\xf4\xdc\xbf\x0c\x5c\xe5\xc4\xd6\x7a\xc4\x59\x13\xbe\xd5\x8e\x7c\xcd\x70\xba\x4e\x50\x63\xf1\xce\x96\xcc\x8e\x62\xc3\xee\xb2\xfd\xcb\x7a\x6b\xa2\xc6\xf6\x9a\x53\x79\xbf\xb3\x7d\x09\x6f\xb5\x57\x1c\xd7\x2a\x92\x26\xb4\xff\x65\x5d\x60\x15\x09\x12\x74\x3e\xdf\x70\xd5\x94\xc8\x64\x21\x70\x07\x76\x4d\x5c\x79\x80\x20\xc0\x15\x5b\xb1\x58\xd9\x81\x50\xd8\x2f\x9c\xb1\xb5\xde\x95\x10\xb7\x5f\xed\xd9\xbc\xc7\x12\x04\xf3\x19\xb2\x4b\xc2\x3f\xcf\x23\xb8\x5c\x88\xdc\x11\x77\x6a\x84\xc1\x6a\xde\x01\x11\x81\x39\x49\x84\x18\x9f\x9b\xe1\x76\x5f\xf3\x09\x67\xdc\x8a\xe7\x3b\xab\x04\x12\x78\xbb\x8a\xf4\x45\x6b\x96\x11\xea\xb4\xdd\x3a\xe6\x2e\xc9\x24\x54\xfa\xf9\x39\xad\xf9\xbe\x96\xe0\x5e\x5c\xb7\x6e\x51\xe6\x72\x42\xd9\xb0\x51\x9c\x0f\x94\x09\xcb\x55\x0f\x98\x98\x77\xaf\x27\x08\xa5\xc6\x16\xa7\x1a\x30\x04\xee\xfb\x37\x45\x62\xd6\xad\x24\xdc\x5b\x1d\x37\x39\x49\x68\x05\x41\x6b\x39\x97\xda\xfe\x77\xcd\x25\x10\xcd\x54\x13\xee\x5a\xeb\x41\xe3\x98\x5c\x73\xfc\xd6\xdc\xd3\x83\x0c\x0e\x7d\x1d\x0d\xb5\x2b\x7f\xcc\xe0\x70\x96\xde\xe5\x85\x59\xdf\x19\x94\x2c\xaf\x7c\xd9\x78\xfa\x15\x03\xf1\xa7\x33\x75\xb3\x62\x36\x12\x8e\x7f\x3f\x9d\xf3\x78\x96\x2d\x8d\x17\xa5\x0b\x3b\xb7\xef\xe0\xd9\xcb\x06\xa9\x9a\x54\x89\x32\x68\x12\xb6\xa6\xdf\x56\x4a\xb2\x26\x16\xee\xd8\xce\x7e\x5e\xaa\xb5\x8e\xd0\x98\x74\x73\x62\xb3\xb9\x1a\xe1\xa2\x44\xcf\x85\xf3\x57\xa7\x13\xe2\x52\x12\xcc\xcd\xda\x26\x10\x32\xec\xdf\xac\x4e\x39\x23\x43\x68\x31\xe2\x57\x92\x0e\x9c\x49\xd8\x9f\xb4\xe6\x50\x60\xb9\x2a\x61\x7a\x31\x5f\xdb\x52\xcc\x23\xac\x60\xce\x9f\x4f\x10\xe0\x26\x54\x85\xc3\xfa\x0e\xcf\x1f\x06\xfe\x36\xc2\x2f\x47\x11\xc2\x82\xf6\xc2\xa9\xfe\xef\xf8\x4c\x68\x1c\xa7\x6b\x4f\x6d\x3b\xf3\xa9\x97\xc1\xd9\x7b\xce\xb6\x92\xab\x0e\xb2\xe0\x23\xd2\x73\x60\xa0\xea\x07\x03\x01\xf7\x5f\xad\xb3\xee\xa7\x11\x66\x1e\x29\xa9\xaa\xcb\x67\x47\x7a\xdc\x0c\x85\xfa\x31\xd0\x8f\xfb\x86\x8d\x2d\x6b\xd8\xd0\x31\x73\xd7\xbd\x9f\x3b\xad\xd8\xca\xab\x36\x26\x74\x81\xcb\x3a\xc2\x8d\xef\xfa\xbb\x63\x8b\xa3\x09\x73\x7f\x49\xca\xaf\xff\x2c\x42\x98\x8b\x15\x97\x85\x22\x57\x10\xa4\x26\xbb\x9d\x4f\xbc\x3d\x8b\x10\x2b\x7c\xbe\xe2\x61\xf1\x47\x06\x37\xff\x24\xeb\x6d\x9a\xfa\x92\xf0\x64\xd3\xc3\xc4\xd6\xb4\x3c\xc2\x59\x9d\x76\xed\x74\xd9\x14\x42\xfb\x62\x2b\x8b\x03\x5d\x8d\x84\xac\x0a\xae\xf9\xb5\x59\xae\x84\x59\xfd\x67\x8c\xcb\xaa\xeb\x09\xbb\xe5\x36\x79\xe7\xce\x6b\x22\x2c\x7d\x20\x35\xef\xd8\x8f\x7c\x16\x1c\x6c\x47\x2e\xcc\x8f\x4b\x27\x98\xf6\x68\x15\x18\xdd\x4d\x26\xa4\x48\xba\x1c\x9f\xf6\xd1\x9d\x20\x52\xf1\x7b\xab\xc3\xf9\xbb\x84\xc1\xe5\xb9\x33\xa9\xb3\x90\x50\x7d\x2f\x79\xc0\x52\xd1\x8b\x0d\x3e\xe7\xc3\x43\x16\xf4\xb9\x13\xd6\x47\xf5\x6b\x19\x49\x9d\x23\xb8\xad\x6f\xeb\xde\x16\x75\x9a\x70\xa6\xcb\x76\xa4\x3f\xe7\x2c\x0b\x3f\x9d\xd7\x24\x04\xef\x7c\x4b\xd0\x9a\x66\x16\x16\x34\x86\x76\xd3\x0e\x1d\x0f\x87\xb1\x03\xb6\x57\x43\x65\xab\xcd\x09\x16\xa6\xd8\x85\xf9\x38\x84\x3d\x23\x34\x3d\x9f\xf7\x3b\x47\xe3\x1d\xe1\x67\x70\x86\xe8\xfe\xf8\x77\x04\xc3\x54\x1e\x79\xcf\x65\xef\x08\xdb\x5c\x8e\xb1\x74\xe4\x9e\x11\x0a\x34\x8d\x02\xd2\xac\xad\x58\xc8\xfb\xa1\xe2\x24\xa0\x67\x44\xf8\xa5\x5b\xb6\xc1\x93\xa3\x92\x81\xb3\xc8\x43\x7b\x47\x8e\x09\xc4\x86\x8f\xdc\x31\x79\x89\x7a\x84\xee\x10\x57\x39\xaf\x2b\xba\x84\x45\xde\x14\x5b\xfb\x2b\x82\xb0\xc0\x66\x65\xdb\x60\xd7\x01\xc2\xf1\x67\x3f\x3b\x1e\xd4\x04\x13\xe4\xdd\x1b\xec\x5d\x1e\x5b\x10\x1c\x3d\x8e\x7f\xf3\xe1\x30\x27\xbc\x6d\xad\x72\x9f\x35\x64\x48\x28\x1e\x56\x90\x6d\x9e\x3d\x95\xb0\xe4\x8b\xd6\xc1\x83\x4f\xbb\x19\xd4\x1e\x96\x0f\x97\x1d\xcc\x24\x3c\x8d\x29\x31\x7e\xc6\x99\x45\x88\x9d\xdb\xed\xf1\x0f\xfe\xef\xa6\xf4\x98\x59\xee\x26\x9c\x92\x7e\xb3\xbd\xf5\xa5\x05\xe1\xf0\xf3\x4b\x1b\xbf\xef\xde\xc3\x36\xfa\x5f\x19\x6d\x7e\xee\x12\x26\x76\x82\xd0\x19\xf7\xe9\xcb\xaf\xa6\x77\x0c\x8e\xc9\xc5\x87\x0e\x3e\x01\x1b\xbc\x7b\x72\x58\xa2\x36\x9f\x18\x54\xbd\x9b\xf4\x7c\xe3\xf2\x93\x84\x67\xa7\xf5\xd2\x27\x72\x6c\x26\x88\x3f\xf2\x91\xb8\x92\x1b\x4f\x28\xe5\xf1\x71\x98\x10\xf3\x90\xd0\x3f\xeb\x96\xb7\x97\x51\x0a\x41\x43\xb4\xd7\x5d\x7b\x40\x8a\x10\xdb\x33\xd0\xb8\xf6\x9e\x1c\xe1\x94\xa3\x8c\xdf\xa7\x64\x73\xc2\x99\xe4\x1f\x57\xdf\x31\xf7\x08\xca\xe9\xa6\xa3\xab\xeb\x9c\xd8\x20\x1b\x7f\x38\x6f\x64\xa7\x3d\x41\x31\x32\xd9\xe4\xa7\x27\x07\xe1\xcf\x82\xc0\xc7\x0b\x94\x67\x10\xcc\x4a\x3f\x79\x3c\x75\x1e\x61\x60\x1e\x23\xdb\xfb\x61\x99\x29\xc1\xf8\xaf\xd9\xea\xd1\x0c\x0d\xc2\xbd\x75\xb5\x9c\x4d\x6d\xa6\x84\xbe\xc9\xbf\xf7\x17\xba\x65\x11\x14\x45\x1d\xab\x0b\xc6\xd0\x9a\xfa\xf8\x53\xf8\xaa\x15\x84\x4f\xc1\xab\xb4\x3a\x15\x55\x08\xa6\xed\x49\x8b\xd5\xd7\x2d\x24\xd8\x73\xef\x19\xa9\xef\x5b\x41\xf8\xb8\x20\xbc\x4b\x82\x73\xf9\xd8\x16\x97\x77\xf7\x72\x41\x3b\x61\xd8\xe9\xeb\x54\x2b\x95\x1a\x02\xa7\xbe\xea\x36\xd6\xf7\x27\x04\x49\x07\x1b\xe5\xf8\xe0\x12\xc2\x83\x21\xf1\xe5\xff\x46\xc3\x53\x74\xdc\x2d\x3c\x4b\x08\xbd\x1a\x03\x53\xb0\xea\x32\x41\xd1\x95\x6f\xe6\xfa\xcb\xeb\x59\xd8\x24\x76\xe9\xce\xd0\x58\xf9\x1f\x3c\xda\x32\x26\x88\x54\x9c\x20\x4c\xf2\x90\x28\x7f\xea\xd8\xc5\xc0\x60\x73\x6f\x9d\x4e\x69\x23\xe1\xb9\x61\x9e\x47\xd0\xd8\xb6\x7c\x67\x53\xd7\xd1\x98\x53\x55\x84\xe2\x62\xa3\xad\xbe\x5f\x59\x6c\x23\xae\xc5\xc9\x02\xc7\xf6\xb2\x08\x49\x6e\x4d\x42\x5b\x8c\xf7\x12\xce\x9a\x0e\xed\xf9\x57\xe6\x71\xf0\xdd\x5a\xa8\x19\x43\xb8\xf2\x63\x83\x13\x6f\x34\x17\x81\x7f\xe4\xc8\x87\xe2\x44\x16\x1b\x9a\x3a\x32\x3a\xec\xc6\xee\xd5\xff\x8c\xfb\x63\xcf\xd7\x25\x84\xcc\x5e\x79\x56\xe4\x0b\x71\xc2\xce\xf0\xbb\x39\x5f\x78\x44\x08\xbd\x9f\xe6\x87\x9e\xdd\xa2\x42\x98\x1a\x5c\xbb\xc5\x3a\x9b\x8b\x60\x9f\xf2\xd9\xc4\xe7\xb0\x1a\xa1\x46\x60\xbe\x08\xf7\xee\x2c\xc2\xad\x39\xb8\xe1\x5a\x3e\x85\x70\x6a\xc2\xcd\xba\x0c\xd1\xeb\x04\x7d\xe3\xeb\x38\xf0\x3d\x91\x20\x36\xed\xe4\x55\xa9\x82\xc3\x04\xc7\xd1\x5f\x1a\xf3\x3c\x6a\x09\x87\x36\x67\x4e\x9b\x60\x5a\x4b\x48\x37\x5a\xd2\xb2\x2e\xa7\x8a\x70\xe4\x8b\x63\x83\xdb\x92\x1a\xc2\xd3\x70\xcf\x6d\x87\x74\x6b\x09\x66\xe2\xf6\xca\xb3\x9d\x73\x09\x05\x17\x0f\xa9\xaa\x6c\xbb\x4f\x68\x30\x0b\x0f\x78\x66\x91\x4f\xd8\xbb\x2a\x44\xdf\xca\x31\x9b\xed\x9a\xe4\x84\x89\xc5\xeb\xc5\x4e\x13\x56\x9f\xde\x71\x27\xbe\xfe\x0a\xc1\xf2\x80\xb9\x4a\x8f\xd0\x5e\xc2\xcb\xdb\x9f\x16\xbc\x17\xb7\x65\x2b\x83\x7b\x73\xe6\xc8\xd8\x1b\x12\x6c\xce\x77\x0d\xb1\xec\x76\x10\x62\x0f\x09\x4d\xf7\xf5\xdc\x42\xb0\xb9\xb3\xab\x45\xb2\x7e\x39\xc1\x42\x45\x7e\xa7\xec\xb0\x30\xc1\x55\x40\xab\x6d\xc3\x6a\x7d\xc2\x97\x29\xb6\xcb\xbe\x18\x15\x10\xa6\x67\x5d\x89\xcc\x2f\x52\x23\xf0\xe7\xe8\x6e\x96\xba\xd9\x42\xd8\x1d\xb8\xf0\x82\xe6\xd8\xe3\x99\x59\xb0\x50\xf1\xb3\x6c\x3e\xe1\x4e\x5d\x4c\x4c\x9a\xba\x2b\x41\x4b\x36\x84\xcb\x66\x42\x3f\x83\xfe\xa9\xcf\x9f\x38\xda\xfd\x24\xcc\xda\x20\xef\x97\x91\xd8\x4d\xb8\xe1\x72\x23\xf2\x50\xfb\x1b\x02\x93\x74\x4c\x74\x66\x63\x11\xe1\xc8\xa4\x8c\x3f\x07\xe7\xf1\x12\x56\xcb\xfe\x58\x3d\x95\x4b\x9c\xb0\xfb\xc9\xb0\xfd\xc9\x2f\x27\xd9\x70\x56\x20\xe7\x54\x7e\xb1\x06\x21\x79\xe1\x91\x9c\xf0\x6f\x5b\x08\x11\x59\x42\xbd\xf3\xd7\x6c\x21\x5c\xfc\xcd\x65\xf4\x72\x57\x0a\x0b\xcc\x8a\x5b\xfe\xa3\x61\x2e\x84\xad\x96\xb7\xdc\x0b\x5c\x76\x10\x8a\xfa\x12\x4f\x3d\x9a\xb0\x81\x60\xbc\xbd\xad\xe1\xe0\xeb\x1b\x84\x81\x94\xd9\x73\xfb\x3c\x0b\x09\x9d\x0e\xdf\xfa\x54\xc3\x74\x09\xb7\x59\xb5\xdf\x9e\x9e\xe6\x25\xc4\x39\xec\xdd\xfb\x32\x4b\x80\xe0\x12\xb6\x68\x4d\xcb\x69\x4b\x82\xf2\xe2\xd7\xf5\x71\x21\xbb\x09\x11\x0b\xbb\x6f\xa7\xf7\xea\x13\x16\xeb\x8b\x5a\x75\x1f\x35\x21\xf0\xe4\x45\x0f\x5e\xca\xd2\x21\xc8\x9f\xd1\x39\xf1\xe5\x94\x3b\xe1\xd9\x46\x0b\x8d\x0b\xeb\x88\x30\xb4\x2b\x64\xea\xa2\xd9\x9c\x6c\x70\xdf\xf8\x24\xd6\xfe\x45\x6b\x09\xee\x6e\xfc\xb2\x5d\xdb\x44\x99\x70\x2b\x9a\xbb\xf8\xe9\x11\x3e\x36\x18\x2a\xff\x1e\xf5\x9e\x69\x41\x50\xb0\x95\x58\xfa\xba\x9a\x87\x70\x5c\x76\xc9\xa7\x3d\x1f\xf8\x09\x5f\x27\x77\xac\xa8\xcb\x35\x23\x38\x6f\x6d\x3d\x63\x71\x8c\x97\x70\x69\x8e\xfd\xdb\xef\x71\x3c\x04\xd7\x69\x11\xa2\x1b\x92\xbf\x33\x58\x2e\xb0\x2d\x57\xe1\xbc\x1e\x61\xe9\x8c\x9c\x45\xaa\xd2\x4a\x84\x6d\xdd\x21\xb3\x3f\xd8\x5d\x20\x2c\xf8\xed\x6a\xd2\xa3\xb8\x9b\xf0\x43\xe0\x87\xa9\x86\xf6\x4e\xc2\xa2\xcc\xd2\x3e\xcb\xf7\xf2\x84\x15\xb3\xed\x3b\x78\x5e\x0e\x32\x68\x8b\x8c\x3a\xa0\xb2\x40\x96\xf0\x20\x6e\xc6\x9f\xac\xd0\x39\x6c\x50\x30\x95\xca\x93\xb4\x1e\x60\x20\xe9\xf6\x4c\x6f\xbd\x28\x2f\x61\x20\xb0\x53\xa7\x65\xae\x31\x61\xb5\x49\x8f\xcf\x06\x3e\x3d\xc2\x92\x49\x57\x2f\xf4\x47\x4c\x25\x84\xb6\x08\x46\x8a\x1e\x15\x21\xf0\xf0\x6c\xff\x95\xc4\x78\xb1\x61\x52\x20\x77\x55\x70\xf9\x3e\xc2\xa2\x2e\x8b\x64\x89\x4b\x2b\x08\x99\xb6\x1d\x9a\xc7\x9c\xef\x13\xac\xd7\x4d\x89\x30\x90\xda\x4c\x68\x36\xd2\xb0\x4d\xf0\x9b\x43\x58\x51\x16\x31\x7d\xe0\xd1\x0c\x42\x78\xd2\x71\x9d\x09\x46\x3b\x09\x6b\x3f\x66\x17\xf6\xf8\x88\x13\x6c\xd3\x8b\x36\xab\x57\x3c\x20\xec\x4c\x72\x12\x5d\x21\x65\x47\x18\x1c\xda\xec\x54\x1a\x96\xc4\x86\x4d\x25\xae\xdf\x7f\x1d\x55\x23\x84\x4e\xbb\xa3\xae\x55\xc5\x45\x58\x74\xce\x3b\x2c\x7d\x81\x24\x41\x5c\xb1\x2b\xf9\x93\x13\x37\x41\xf1\x96\xcd\xe6\x47\x05\x26\x84\x78\x33\x05\x9e\x5d\x16\x16\x84\xe0\xdb\x4e\xbe\x6f\x17\x17\x13\x0c\x86\x15\x64\xc5\xb9\x0c\x09\xe7\x8d\x95\xec\xb3\x6d\x96\x12\x5c\x13\x56\x0b\x47\x9b\xd9\xb1\x81\xd3\xe8\x5d\xfb\x83\x03\x7d\x0c\x8c\x42\x6d\x3d\xdd\xdd\x47\x18\x14\x3f\x9f\xff\xf2\xb4\xa6\x15\xc1\xc3\x68\x60\xd2\xb1\x6b\xaa\x84\x86\xb4\xf6\xa4\xbc\x7d\x1c\x84\xdb\xc1\x82\x1e\xcb\x0e\x9b\x13\xcc\xb4\x0d\x8e\x6f\xc8\x5e\x43\xe0\x2f\x5e\x3f\xf4\xf9\xf0\x0e\xc2\xa5\x45\x86\x3d\xf7\xbc\x2f\xb2\xb0\xea\xd1\xbb\x54\xa7\x46\x6b\x82\xc7\xed\x60\xdd\x23\x7f\x27\x11\x96\xea\x1f\xeb\x3e\xb9\xe7\x13\x83\xbb\xfe\x61\xfc\x73\xd6\x5b\x10\x7c\xde\x9c\x7b\x18\xc2\xa1\x42\xd0\x2f\xe5\x35\xf9\xf4\xc1\x90\xad\x6c\x31\x92\x93\x97\xfd\x29\x46\x48\xdb\x53\x39\xb1\x36\x47\x89\x70\xc1\x3e\x2c\xf3\xe1\xd2\x2f\x0c\x6a\xca\x2b\xdc\xdf\x98\x15\x11\x3e\x2b\xbf\x31\x34\xfe\xad\x40\x68\xab\x68\x9f\xbb\xd1\xec\x01\xc1\x36\xd5\x21\xe8\xe4\xaf\x11\x06\x7c\xb1\xae\x2e\x1e\x87\xb9\x09\x86\xbf\xfc\x5b\xe5\x82\x0e\xb3\x41\xec\xe3\xeb\x69\x7a\xf3\x66\x10\x46\xdf\xff\xe4\xd3\x71\xbb\x4f\x78\x70\xee\x4d\xef\xd9\x7b\x57\x09\x1d\x7f\x3b\xbf\x4f\x1b\x3b\xac\xf9\x3d\xd2\xbc\x3c\xb7\xe3\x1e\x21\xba\xda\x6f\xb7\xe4\xf7\x73\x84\xf8\xdd\xef\x33\x27\x1c\x0c\x20\xac\xd3\x2b\xbb\x97\xbc\xbf\x9c\x85\xa3\x26\x89\x07\x27\x95\xc4\xb3\x60\x3d\xbf\xb5\xbd\xd7\x2b\x80\xc0\x25\x20\xf5\xea\xa6\xca\x7d\xc2\x6a\xad\xd7\x2f\x37\x07\xc7\x10\x5e\xbd\x92\xd9\xd2\xe4\x10\xc6\x82\x96\xfc\x02\x1d\xd3\x95\xc1\x84\x3a\x21\xed\x9a\xd6\x9a\x00\x02\x67\xbb\xc6\x8f\xe4\xaf\x81\x84\xdd\x12\x12\x0a\x1f\x1d\x8f\x11\x0c\xb6\xf4\xea\x4a\x44\x1d\x27\x0c\x8e\x88\x5d\x53\x7d\x1e\x4c\xd0\x0f\x17\xef\x17\xfd\x7c\x82\xf0\x3b\x3d\x38\x90\x67\x7b\x34\x61\x95\xf5\xfe\x8f\x24\x7a\x92\x70\xc6\xe3\x77\xb7\x3d\xe7\x76\x82\x5f\xc3\x93\xbe\x6d\xf5\xb2\x04\xc5\xce\xb6\x37\x05\x6a\x60\x50\xf7\xe2\xa2\x13\x9f\x93\x26\x8d\x43\xa0\x2a\x30\x45\xc6\xc1\x8f\x81\xfa\x26\x9e\x96\xc5\xe7\x75\x09\x6e\x33\xbc\xca\x1e\x57\xad\x21\x38\x6d\x5a\xcb\x5f\x1e\xbe\x9e\x60\x56\xb3\xed\x91\x54\xb5\x2a\xe1\x13\xd7\x81\xcb\xfb\x22\x17\x11\x3e\x5e\xdc\xbf\x57\x33\x83\x87\xf0\x59\x73\x5d\xf1\x84\x9e\x7e\x06\x4e\x53\xf4\xf6\xdd\x7e\x2c\x4b\xe0\x7b\x6a\xac\xf8\x3e\x5f\x9c\x20\xb8\x5e\xaa\x3d\x6e\xf7\x5f\x06\xa1\xc2\x7d\xce\x59\xa7\x65\x08\x1d\xef\xde\xfe\x55\x76\x59\x4e\x28\xda\x3c\xf9\xcc\xc3\xde\x05\x04\xcd\x96\xc0\x97\x5b\xce\x8b\x10\xae\x2c\xdd\x34\xec\xf6\x3a\x67\xec\x4c\xed\x34\x4f\xda\x50\x96\xf0\x4e\xb5\x23\x64\x56\x30\x11\xb8\x0a\xef\x4e\xea\xf1\xd2\x25\x7c\xee\xb6\x3b\x9d\xd1\xfc\x87\xc1\x46\xfb\xe5\xd3\x8f\x3a\x12\x21\x2b\x75\xdd\xaa\x30\x3f\x57\x82\xd0\x8e\x9b\x86\xc9\xeb\xbe\x33\x98\x60\x39\xeb\x7a\x41\xe3\x11\x1a\xc7\x1c\x5d\xcb\xba\x73\xb3\xb4\x09\xf2\xb5\xb1\xea\xd9\x4b\x67\x11\x4e\x95\x86\x4b\xec\xfe\x5e\x4a\x78\xea\x46\xbc\xbd\x7f\x4f\xb0\x30\x1a\xe4\x9b\xb2\x33\xfe\x09\xa1\x5c\xe9\xb8\x94\x45\x33\x0f\x81\xbf\x41\xd7\xfc\xd0\xc3\x62\xc2\xcc\xe4\xb3\xd3\xb5\x0e\x57\x10\x2a\x8e\x5c\xd6\x7d\x36\x25\x89\x70\x7d\xab\xea\x6d\xe9\xb5\x4a\x04\x1f\xde\xcd\x16\x9f\xd7\xe5\x11\xf6\xf6\x3f\x17\xf2\xdf\x9d\x4f\xd0\xea\xf4\x76\xdd\x17\x2b\x46\x50\x68\xf6\xda\xcd\xbd\x23\x89\x85\xbf\xfc\x5c\xd7\x4e\x2a\xbf\x23\x08\x5b\x54\xc6\xd8\x37\xbf\x25\x68\xf8\x37\x79\xfe\x2b\x4f\x84\xfd\x76\xd6\xd9\x3c\x20\x58\xd0\xd4\x6a\x95\x23\x0b\x09\x7f\x19\x23\xfd\x34\xaa\x21\xf8\x7f\x12\x5f\x6e\xc3\x5f\x4a\x58\x51\xe4\x3c\x3b\x53\xe0\x19\xc1\xe4\x98\xa0\xc6\xfb\x4f\x41\x84\xec\xcc\x2e\xed\x9a\x5f\x0b\x09\x2a\x77\x64\xd6\xd5\x76\xba\x10\x4a\xcb\x64\x4f\x05\x7d\xe2\x25\x3c\x8c\xa8\x5d\x62\xbe\x69\x2e\x61\x71\xd9\xc7\xa3\xdd\x92\x3c\x84\xa5\xeb\x47\xdd\x07\x66\xf8\xb0\xe1\xb7\xb6\xf9\xc8\xaf\x20\x7b\xc2\xd0\x9f\x53\x09\x15\xe9\xc6\x84\x0f\xdb\x78\x95\xb3\x7e\x3f\x61\x10\xb1\xfe\xc7\xfd\xa7\xda\xb9\x04\xb5\x35\x6e\x7c\xeb\xff\x6e\x24\x44\x68\xdd\x10\x3b\xd7\xb9\x94\xa0\xf9\x4c\x3a\xf3\x64\x54\x26\x0b\xd9\xbb\x56\x5d\x9d\x22\x7a\x80\x70\x77\x5f\xa9\x64\xea\x63\x86\x70\xb2\x5d\x2a\xfb\x70\x54\x2c\x0b\x02\x87\x1b\x2f\xea\xaa\x94\x13\x72\x8f\xc8\xca\xc9\x07\xfe\x66\xd0\x7a\xba\xed\x2e\xef\x04\x65\x42\xea\xf4\x21\xd1\x2b\x35\xb2\x84\xe9\x8f\x3d\x14\xa6\xf9\x9a\x11\xdc\xb9\x27\x5d\xa9\xe6\xb8\xce\xc2\x4f\xb7\x59\x83\x96\x1f\xf4\x09\x1d\x51\x0b\x0b\x27\x44\x67\x11\x18\xb1\x6e\x3d\xb7\xc0\x2b\x84\xb5\x87\x9a\xb6\xfe\x2b\x5c\x2f\x8d\x66\xcc\x55\x8a\x26\x74\xde\x08\x6d\x36\xaa\x2d\x22\x34\xeb\x54\xf2\x79\xce\x49\x21\xf8\x6f\x5c\xac\xae\x26\xe3\x4b\x10\x78\x79\xb1\x49\xcf\xd0\x87\xad\x34\xbf\x6a\x32\x28\xfd\x7e\x98\xb0\x2e\x43\x2c\xf8\xa5\x70\x08\x41\xc9\x6c\x69\xf8\x6b\x09\x5e\x02\x02\x94\xda\xcb\xcb\x62\xd8\xf0\xee\x67\x5b\xb3\xdc\xdb\xcd\x84\x49\x83\x51\x79\xab\x77\x6e\x20\x64\xdf\x9c\x39\xff\xd4\x1b\x1b\x82\xeb\xa9\xc3\x4b\x9b\xf7\x97\x11\xa6\xb4\x0f\x48\xdc\x3c\x33\x9f\xa0\x70\xd9\xfe\xc0\x91\x94\x41\x06\xb2\x13\x3a\x27\xde\x96\xe3\x22\xac\xb5\x95\x19\x0d\xa9\x9c\x48\x68\x38\x3e\xcb\x5e\xdf\xfe\x27\x83\x8e\xf2\xc8\x90\x4f\x81\xef\x19\x58\x4c\x9a\xa2\xd3\x38\x7b\x2e\x21\x29\x25\xef\xe9\x47\x9e\x50\x16\x72\x85\x5f\x8b\x1d\x0d\xcb\xa6\x71\x28\x9c\x91\x58\xed\x3b\x06\x9f\xa6\x36\xe9\x3d\x42\x69\x84\xd3\xaf\x06\xd5\xf7\xca\x6a\x10\x94\xce\xbe\xfc\x15\xf0\x23\x89\xd0\x31\x2b\x9a\x11\x5c\xdf\xcf\xe0\x88\xa4\xd8\xc8\x94\xfc\xe9\x84\x3e\xb7\xc8\x79\x13\xe2\x57\x10\x7e\xdb\x6c\x7f\x37\xc9\x67\x06\x41\x7a\xeb\x4d\xbd\x76\x65\x11\x42\xc0\xb4\x54\x1f\xc7\x3b\x7f\x19\x2c\x08\x78\x52\x55\xb2\xf1\x17\x03\xa3\x9e\xd5\xa5\xcb\x6e\x4c\x21\x1c\x7c\xed\x3c\xa3\x7f\xca\x54\x82\xd9\xe4\x1b\x77\x7e\x8e\xe4\x13\xc4\xce\xd7\xb5\xfe\xc3\xda\x8d\xf2\x57\xa3\x36\xdc\x24\x3c\xb7\x7c\xbb\xb3\x2e\x4d\x9e\x60\xe2\x60\x96\xa2\x6c\x5d\x46\xc8\x2a\xd1\x32\x9a\xb9\x88\x8f\xa0\x9d\xc1\x99\x7e\x20\xb3\x98\x60\x9e\xbb\x54\x6a\x72\x7c\x11\x41\x75\xa4\x52\x4d\x7b\x93\x3a\xe1\x08\x67\xab\x3b\x9f\x9d\x31\xe1\xe6\x9d\x63\x53\x24\xaa\x44\xd8\x70\xc5\xdd\xe6\x4e\x8e\x51\x35\x83\xc4\x91\x20\xce\xd4\x09\x96\x04\x7e\x8b\xa8\x4f\x53\x27\x0a\x11\x1a\xb5\x62\x4e\xc9\xfc\x50\x27\xdc\x74\x4d\x76\xe2\x1b\x8d\x23\x4c\x0a\xbd\x71\x3d\x83\x16\x10\xd6\x24\xf0\x48\x76\x14\xee\x63\x43\x8f\x60\x68\x68\xe5\x06\x25\x36\xec\x32\x4d\xfb\xb3\xc5\xba\x98\xc0\x63\xbf\x71\xaa\xac\x65\x31\x41\x2a\x5e\xbd\x57\xdd\xf3\x3a\xe1\xa3\xfc\x36\x49\x8d\x31\x7c\x5b\xb2\x6d\x8d\xd6\xcf\x56\x06\x05\x16\xf2\x49\x0e\x92\xdd\x0c\xb2\xfb\x6e\x59\x2c\x3e\xae\x4b\x38\x59\x42\x5c\x86\xf5\x32\x84\x17\x1d\x59\x37\xe3\x7c\x53\x09\x73\x7e\x74\x84\x97\xfe\x79\x4e\xb0\x9a\x69\xaa\xdb\xf8\x32\x99\x70\x7c\x89\xe7\xfe\x1d\x7b\x2a\x09\x0b\xa6\xca\x15\x7e\xef\xc8\x25\x2c\x09\xbc\x28\x76\x36\xdc\x91\xb0\x69\xf9\x97\xe2\x44\xa5\x87\x84\x88\x9e\x07\x9b\x62\x7a\xd2\x58\x58\x97\x1b\x52\xa2\x20\x54\x40\x50\x39\x36\xaf\xe9\x8e\xed\x43\xc2\x86\x53\x13\x9a\x29\x57\x9f\xd0\xed\x35\x3b\x2c\x91\x35\xf6\xa6\xfe\x76\x10\x97\xfe\x1b\xfa\xbd\x65\x4b\x74\x6f\xae\x61\xc3\xa9\x77\x6d\x6b\x6a\x27\x3e\x64\x61\x4e\xfa\x73\xeb\xaa\x6f\x85\x04\x4b\x91\x5b\x05\x9a\x42\xb7\x69\xbc\xfc\x0f\x6d\x67\xa7\xc9\x19\x8c\x3d\xbd\xff\x43\x5f\xb0\x57\x55\xf0\x3a\x0e\x36\xcc\x4d\xd0\x89\x3e\xcf\xd3\xcd\xe0\x83\xa6\xd9\xe0\x81\xa8\x73\x25\xd8\x75\x23\x51\x6c\xa5\xb7\x01\x8d\x83\x73\x5f\x99\x5d\x73\x45\x3b\x83\xd0\x93\x82\xe5\x92\xef\x87\x19\x54\x9b\x79\x76\x08\x4f\x34\x27\xb8\xeb\xb9\xc8\x4b\xb7\xcd\x62\x43\xd6\x8a\x63\xbe\xe2\xcd\x5d\x0c\xf2\x8c\xb3\x7c\xae\x17\x1d\x27\xbc\xac\xcd\x0e\x58\x1e\x0c\x06\x35\x82\xd9\x4f\xef\x79\x4f\x25\xb4\x0e\x59\xde\x52\xa9\x37\x62\x83\xa4\xc6\xf5\x2d\xb7\xa6\x1b\x12\x8a\x4e\x95\xac\x0c\x70\x9f\x4c\xe8\x74\x4f\xab\x74\xdd\x20\x45\x78\x34\x50\xed\xb5\xd3\x74\x2e\x1b\x9e\x49\x98\xec\x97\x38\xdf\xc6\x40\x24\xf0\xd1\x8e\x55\xd9\x73\x08\x37\xc2\x1a\x0f\x0e\xda\xfd\x61\x10\x95\x6b\xa6\x59\x37\x72\x98\xc6\xc1\xda\x31\x28\x99\x73\x20\x95\x50\x79\x5e\x5a\x23\x7b\x0c\xcf\xb2\x39\x66\xac\xe4\x2f\x27\x5c\x29\xf5\xa9\xcc\x98\xcc\x49\x48\x9b\xd4\x30\x69\xa6\x67\x00\x61\x57\xe6\xcb\x5d\xdb\x54\x07\x18\xf4\x34\xce\xd7\x3a\xa0\xa8\x45\x38\x6a\x58\x6a\xfb\x21\x70\x88\x01\x5a\x39\xa4\x12\x9c\x27\x11\xfe\x94\x88\x57\x45\x5f\x35\xff\x3f\x51\xf4\xca\x4e\x9a\x43\x26\x97\x30\xe9\x78\xcb\xc9\xe9\x96\x43\x0c\x74\x3b\x2b\xd5\x16\x16\x14\x13\xd6\x70\x0f\x0b\x6e\x7f\x9b\x4b\x68\xe4\x9c\x13\xf5\xaf\xfc\x0f\x46\xa1\x6a\x77\x6d\x25\xfd\x09\x2d\x5a\x21\x73\x15\x04\x64\x08\x2a\xbf\x33\x34\x1f\xbd\x4c\x25\x24\x5c\xd2\x98\x73\xa3\xbd\x9a\x60\x3c\xaa\xdd\x7f\x42\x49\x9e\x60\xd9\xbf\xf0\x92\x55\xfd\x67\x06\x2a\x73\x0c\xf3\x54\x4a\x55\x08\xc5\xf5\x12\xdf\xfe\xbd\xb4\x8e\x9f\x36\x58\x75\x94\x7b\xec\x77\xd5\x4f\xd1\x77\xaa\xbd\x4c\xb8\x72\xd1\xf0\xe0\x8e\x86\xeb\x84\xfd\x73\xbe\x0a\xfa\x8f\x8d\xba\x54\x25\xf7\xaa\x1d\xb7\x61\xc3\x8d\x1a\xa3\xbc\xae\x9a\x77\x0c\x8e\x66\xd9\x98\x71\xe7\x84\xb2\xe0\xf1\x79\x24\xb6\xe6\x1b\x8b\xb0\x63\xc6\x2f\x71\x93\x2f\x2c\x42\xca\xed\x81\x39\x6d\xf1\xce\x84\xf3\x6d\x1b\x8c\x16\x78\x1d\x22\xe8\x1a\x6b\xa5\x7f\xd0\xd0\x24\xec\xcb\x90\xcb\xb8\x67\x31\x81\xa0\xb1\x62\xa0\x7b\x65\xb9\x32\x83\xcf\x21\xa6\x55\x27\x1a\xb6\xd2\x38\x5a\x1c\xa5\xa5\x38\x6d\xa4\x09\x4a\x0e\x1e\xf7\x73\xad\x97\x10\x54\x0c\xe6\x37\xc4\xc6\xcd\x26\x9c\xb8\x76\x7c\xff\x99\x78\x51\xc2\x8b\x47\x8f\x9c\x7e\xfb\xf6\x33\xe3\xd8\x16\x72\x59\x61\xc5\x0e\x30\x70\xe2\xd2\xdc\x3f\x43\x77\x1e\x8d\x97\xb2\xbd\x7b\x7d\x1c\x2b\x96\x10\x0a\x44\x7c\xb5\xdf\xcd\xd1\x22\x74\xbc\xbe\xf6\x73\xd2\xd9\x64\x16\x1e\x99\xd9\x19\x27\x3a\xfb\x11\x9e\xc7\xed\xfc\x10\xb4\x47\x89\x20\x7b\xff\xa6\x50\xfa\x4b\x39\xc2\x45\x89\xe6\xf6\x8a\x2e\x1d\x82\xc2\x4a\x8f\x4c\x2f\x39\x05\xc2\xed\xd3\xc7\x0f\xcd\x15\x4c\x65\xc1\x39\x7b\x49\x55\xb8\xfb\x1c\x42\xbb\xf2\xf3\x8e\xf9\x63\x07\x84\x85\xf9\x5f\x83\x74\x33\x96\xd1\x38\x9e\xda\xcb\x30\x0b\x15\x6a\x19\xf4\xd8\x3f\x95\xad\xd6\xb1\x24\x14\x36\xae\x8a\x3c\x7b\xac\x94\x85\x8f\x9a\xea\x19\x23\x37\x84\x08\xc1\x96\x5e\x2a\x3c\xfd\x9d\x0c\xa6\x44\x18\x7d\x96\x59\xbc\x8f\x85\x77\x7f\x7a\xc5\xd2\x84\xa6\x11\xc2\xe4\x32\x92\x16\xef\x93\x24\x70\x37\xe5\xdd\xe2\xf5\xd6\x21\x28\x5e\x7b\xbf\xbb\x3d\x4d\x99\x30\xf8\xed\x37\xdf\x7b\xcf\xe7\x0c\x54\xfb\xae\x47\xf3\x0d\xe9\x12\xb8\x22\x56\xa8\x4a\x3e\x03\x83\xb0\xcd\x9f\x95\xd2\x78\x6f\xd0\x38\xba\x17\xc9\x29\xb7\x3c\xb9\xc6\x56\x3c\x4e\x9e\xbd\x7a\x7d\x0c\x7e\xdf\x69\xe3\x8b\xa8\x4d\xff\x27\xec\x2b\x6b\xa4\x27\xcd\x15\x27\x58\xee\x5b\x6e\x76\x59\x4b\x9f\xd0\x70\x28\x6e\xa6\xd3\xad\x2a\xc2\xb7\xf8\xd9\x0f\xeb\xeb\x52\x09\x26\xbf\x5f\xd4\x44\xac\xbd\x4b\x58\x35\xa1\x63\x46\xde\xdd\x58\x82\xc0\xb9\xe1\x05\x83\xcb\xaf\x12\x5a\xf7\x1f\xe9\x9c\x77\x7e\x1e\xa1\xf2\x4b\x98\x70\x74\xdb\x5d\xc2\xb5\xcf\x21\xdd\x87\xf6\xcb\x10\x26\x04\x5a\x6e\xc9\x56\x19\x60\xc0\x9a\xeb\xfd\xc6\x7e\xc1\x30\x1b\x5c\xb7\xd8\x88\x9e\x0b\x1f\x60\x50\xbb\x45\xa3\xc8\xd0\xcc\x94\x10\xb2\x57\x74\xfb\x85\xdf\x7c\x84\xec\xbc\x27\x35\xc7\xbf\xa4\x12\x16\xec\x3e\x59\xd4\x91\x2a\x46\x50\xeb\xee\x12\xdd\xfe\x72\x80\x41\x7c\xf4\x85\xbe\x6d\xa5\x1f\x19\x1c\x0f\xba\x3a\x23\xfd\x0b\x1f\xe1\xc7\x73\x61\x91\xcd\x41\x52\x84\x89\xb7\xb6\x71\x2f\xbd\xb2\x8c\x0d\x96\x56\x1b\x78\xcc\xb8\xeb\x19\x38\xcb\x16\x2e\x2b\x17\x9c\x4b\x50\x9d\xca\xfb\x2a\x27\x73\x1d\x41\xdd\xe3\x45\xe9\x24\xef\x41\x66\x1c\xfa\xaf\xd5\xcd\x04\xae\x4c\x24\xe8\x45\x28\xcb\x2a\x36\x30\x84\xad\x9a\x59\xc6\xfe\x2a\xc9\x6c\xf0\xd4\x7b\xb5\xbc\x63\xf1\x76\xc2\x7b\x4d\xe7\xa7\x9f\xd5\xee\x11\xfc\xee\xe6\xfc\x59\xbb\x7e\x32\x61\xd4\xde\xee\xed\x83\xb2\x6e\x06\xc9\x4c\xec\xfe\xf8\x40\x6e\xc2\x4b\xa9\x77\x61\x27\xec\x27\x11\xd4\x45\x44\x86\xa2\x52\x3c\xc6\xd6\xb0\xe1\x7d\xf3\xac\x46\x18\xbc\x75\x0c\xde\x2b\x7f\x74\x80\x0d\xba\xdb\x8c\x07\x63\xf3\x38\x08\x9b\x33\xbd\x7f\xf6\x5f\xd5\x24\x2c\xde\x67\x9a\x7e\x2a\xda\x86\x60\xd4\x71\xfe\x95\x2a\x67\x14\x0b\x3e\x29\x41\x26\xeb\x85\xe2\x09\x77\x42\x1c\x8b\xe6\x9a\x6e\x24\x7c\x7a\x3c\xd7\x67\x97\x90\x2d\xa1\x2c\x2a\xc0\xf9\x85\xbc\x19\xc1\x56\xdc\x6b\x2b\xf7\x3d\x63\xc2\x8b\x9f\xee\x53\x8a\xe5\xae\x13\xf4\xa5\xd3\x05\x6b\x3d\x45\x09\x3c\x56\x12\x05\x9d\xa2\x22\x04\xde\x9a\x8a\x5a\x1e\x17\x35\x42\xac\x69\x8f\x81\xa4\xc3\x2f\x06\xcb\xeb\x67\xf4\x55\xfc\x32\x26\x64\x94\xf3\xa8\x0a\x14\x65\x12\x2c\x6b\x8c\xad\xd5\x62\x82\x59\x78\xe4\x20\x16\xca\xf1\x29\x9b\xe0\x48\xfa\xa7\x95\xcd\x7b\x58\x50\x48\xe0\x99\x13\xd7\x97\x4d\x90\x96\x58\x3c\x31\x35\xfc\x37\x03\x57\xde\xb9\xf9\xf3\x94\x4d\x09\x77\x16\xe9\x79\x0c\xc8\x3d\x63\x20\x35\x61\xef\xaa\xeb\x9e\x33\x08\x03\xc7\x93\x13\xd6\x84\xb8\xb0\x21\x5b\x5d\xf8\xd5\x21\x37\x6e\x42\xc1\xda\x0f\x25\xf6\x33\xaf\x11\x24\x8d\x07\x47\x43\xc3\x57\x11\x26\x4d\xaa\x19\x89\x59\xb4\x8a\x70\x74\xf5\xd6\xc5\x9e\x03\xbd\x0c\x46\x4f\x4e\xeb\x98\xe5\xf2\x89\x41\xda\x8c\xa0\x5d\x59\x86\xdd\x6c\x90\xa8\x71\x9c\xfe\xeb\x04\x27\xa1\x56\x32\xbc\xb9\x53\x72\x16\x21\xd9\xe7\xeb\xfa\xcf\x15\xbd\x0c\xee\x4e\xb8\xd2\x3b\x85\x4b\x81\x10\x18\x73\x75\xf9\xf9\x5d\x73\x08\x91\xfd\x53\xac\xb3\x8f\xa5\x12\x06\xb5\xe6\xb8\xfc\x43\x93\xef\x2c\xe7\x3b\xdf\x0f\x10\x76\x0d\x15\xae\xf7\x2d\xb8\xcb\xc2\x41\xad\xd6\x07\x2d\x7a\x77\x09\xa2\x93\x5f\x56\x16\xcc\x16\x24\x5c\x0b\x9c\x69\x25\x7d\xf3\x16\xe1\x73\x93\x4f\x66\x21\x87\x01\x61\x8d\x5c\xb2\xb4\xec\x5e\x5d\xc2\xf7\x94\xe3\x77\x79\x0f\xc7\x11\x5e\x16\x66\xbc\x99\x2d\x7e\x95\xe0\xac\x6b\xd2\x25\x10\x69\x45\xe8\xec\x38\xf9\xa1\x6a\x8b\x23\x5b\xc9\x5b\xf6\xc4\xc1\xd7\x7b\x1a\xc1\xf3\x93\xba\xfd\x29\x7e\x7f\x82\x8f\xf0\x83\xf5\xbf\x36\xdc\x21\x64\xab\xa9\xea\xe5\xcd\x6c\x22\xdc\x3d\x95\x13\xe2\x3d\xad\x81\x30\x2f\xd4\x5d\x2a\x6d\xcd\x03\x42\x77\xce\xd7\xc8\x60\xef\x55\x84\x5c\x71\xa1\x6b\xeb\x22\xcf\x12\x42\xc3\xef\x84\xec\xd8\x27\xfc\x5f\x88\xea\x11\x56\x5a\xf3\x3c\x91\xa0\x33\xc7\x3e\xc7\xf0\xf4\x4c\x42\x0f\x79\xfe\x79\xab\x20\x4b\x58\x27\xd7\xf9\x5e\xce\xa2\x8e\x05\x26\x34\xec\x77\xd2\xa4\x17\x84\x22\xd1\x99\xd3\x95\x7a\x9e\x12\x1a\x5b\xd6\xcd\x98\x1e\x11\x4a\xf0\xfa\x76\x29\x39\xde\xfe\x32\x0b\xb7\x9f\x54\x9c\xf0\x88\x3d\xcc\x42\xf9\xa9\x83\x6b\x99\xc7\xa9\x2c\x70\xef\xfc\x7a\x7f\x95\x1a\x8b\x85\x16\x33\x2e\xcf\x09\x1e\x4e\x2c\x8c\xec\xbb\xff\xed\x91\x40\x04\x0b\xdd\xe1\x6f\x2f\xec\x50\x8c\x60\x81\x8b\x7f\x20\xf4\xa8\xb1\x3f\x61\xc7\x50\xbd\xea\xd7\x98\x00\xc2\x03\x8f\x7d\x79\x7c\x2d\xf9\x84\xc7\x8a\x6a\xa2\x51\x49\x56\x84\x41\xd3\xd3\x8e\xa6\xe2\xd3\x08\x41\x59\x7b\xf3\x73\xb4\x54\x08\x76\xf6\xed\x67\xf8\xc4\x73\x08\xda\xeb\x56\x94\x24\x2d\x1c\x62\xe0\xc3\x57\xc1\x12\x52\x9f\x45\xe3\xe0\x37\xff\x2c\x5e\xfe\x4d\x8a\xa0\x21\x2c\xd6\xb9\x7b\xe7\x32\x02\xaf\x4e\xfc\x79\xef\xc1\x3b\x84\xdb\xfc\x83\x3c\xbd\x21\xca\x84\x2f\x61\x83\x22\x4a\xf9\xbc\x84\x20\x1d\xde\x3e\x8b\x53\x3c\x04\x6d\x6b\x3e\xa3\x35\xcb\xb2\x4a\x70\xf2\xd8\xd2\xcd\x8f\xb4\xe6\x12\x42\xf2\xf2\x9e\x47\x29\x39\xb3\xa1\xae\xa0\xdd\xa4\xdb\x66\x35\x21\x3b\xb8\x74\xbe\xfd\x92\xc9\x04\xc1\xf0\x4b\xe1\x6f\xb7\xcd\x27\x7c\x4d\x7e\xf1\xac\x6e\xe0\x16\x83\xea\xa5\x27\x02\x2e\xca\xc9\xd3\x38\x8e\xb9\xdd\x5b\x16\xb3\xb6\xb6\x64\x38\xb4\x70\x99\x81\x9e\x3c\xe1\xfa\x91\x02\xb9\x70\x2b\x63\x82\xa3\xa0\xec\x9c\xe7\x63\x1b\xba\x92\x55\xee\xe2\xe7\xba\x69\x84\xe3\xb3\x42\xd4\x0d\x73\xcf\x11\x5a\x14\xfa\x8c\x3a\x66\xe6\x12\x56\x15\xac\x16\xb7\x76\x5b\xc2\x82\x21\xeb\xfd\x0f\xb3\xb1\x0f\x1b\x61\xdb\xc9\x8e\xdc\x4f\x3b\x18\xec\x1c\xba\x70\x68\xba\xf1\x6f\x36\x04\x0d\x7d\x8b\xcf\x23\x6e\xc2\x09\xf9\x35\x9a\xb9\x59\x60\xf0\xe2\xc3\xd7\xea\xde\x30\x5e\xc2\x44\xde\x05\x57\x38\x75\x39\x09\x02\x87\xee\x68\xcb\xea\xd4\x31\x28\xff\x3c\x5f\x37\x28\xfa\x2a\x0b\xa6\xb7\xae\xff\xb0\xbf\x75\x96\x90\xdf\xff\xe4\xec\xfb\xbd\x72\x84\x88\x0f\xf6\xf6\xd7\x45\x7a\x18\xe8\x2c\x1a\x49\x8b\xe0\xdb\x40\xd8\xa7\x37\x23\xe1\x61\xc4\x1e\x82\xbc\x48\x5d\xe5\x9f\x57\x9a\x84\x6e\xcf\x86\xda\x0f\xc7\x5f\x30\x38\xb0\x53\x47\x55\xbc\x88\x8b\xc6\x21\xbb\xcc\x1b\xb9\x0d\xf3\xd8\x70\x5f\xa5\xea\xcf\x01\x7d\x3b\x82\xc7\xe1\xb2\xeb\x77\xe4\xd2\x08\x5a\x1e\x56\xd7\x2c\x34\x9c\xd9\xb0\x5c\x76\xd3\xf1\x79\x8b\x8c\xd9\x8a\xf8\xa0\x82\x5b\x5d\xd8\x55\xc2\x2a\xef\x61\x85\x07\x67\xae\x12\xa6\x4e\x9e\xb7\xf1\x1f\x3c\xbf\x54\xff\x2a\x1f\xc3\xfb\xe7\x5e\x97\xff\xbf\x28\x4c\x13\x5d\xa3\x2a\xe2\x4f\x88\x3b\xa5\x57\x6a\xe1\x7e\x84\x50\x9f\xb9\x73\x40\x49\xc9\x97\x10\xaa\xad\xeb\xfd\x6f\xc4\x67\xd6\x73\xdc\xe9\xbd\x32\x61\x7a\x88\x96\x55\x66\x5c\x17\x83\x4c\x3d\xc7\xbf\x37\x8e\x0b\x13\xf6\x5a\x6d\xce\xe8\xab\x74\x2b\xc1\x1f\xbf\x0c\x66\xdd\x61\x0e\xc2\x81\xf7\x17\xce\xf6\x54\xfd\x60\x70\xbf\xc4\x39\x85\xb5\x34\x89\x90\xa7\xdc\x52\xe2\xd4\x7c\x89\xe0\xbb\xc0\x54\xea\xa3\x6a\x38\xa1\x67\x09\xb9\xff\x1b\x6d\x8c\x75\x9c\xd1\xb7\xd4\x7a\xec\x54\xb1\x76\xaf\x67\x93\x0a\xe1\xc1\x17\xe9\xe4\x82\xb5\xe5\x25\x38\x96\xdb\xf9\xb4\x56\x71\x3a\xa1\x4b\xa8\xb1\x42\x5a\x58\x87\xf0\xf3\x55\xee\xa1\xc8\x22\x73\xc2\x56\xee\xb9\x4b\xf8\x77\xa8\x13\x16\x1e\x56\x1f\x90\x5a\x29\x46\xb8\x1e\xc1\x73\x41\x27\x82\x8b\xf0\x55\xff\xdb\xb6\xa6\x6a\x6e\x02\xf3\xd6\xd1\x5b\xf8\xd9\x04\xc2\x42\x19\x91\x5b\x3b\x9d\x96\x11\x12\x3d\xf2\x64\x36\x67\x4c\x25\x7c\xf6\x8c\x0f\x59\xfc\x51\x9f\x10\xd3\xf8\xdd\xfb\x76\x6f\x35\xc1\xd6\xf6\xee\x39\xa7\x08\x6d\xc2\xfe\xbc\xe1\xb6\x98\xa2\x1f\x84\xa0\x43\xf1\x41\xb7\xd2\xda\x09\x26\xaf\xa4\x98\x63\x57\x0a\x09\xba\x97\x36\x4b\x49\xc8\x75\x13\xb6\xec\x11\x70\x9e\xbd\xf5\x2d\xe1\x68\xed\xa7\x91\x2f\xdb\xda\x09\x95\xe9\x53\x1f\xcd\x7e\xd7\x4a\xb8\xc3\x21\x30\xb1\xf3\xc0\x5b\xc2\x95\xd1\xc6\x56\x95\x07\xe9\x84\xdb\x9c\x8f\x95\xce\xdb\x0e\x30\x38\xad\xe1\x3f\x31\xf7\x88\x20\xc1\xa5\xc8\x8f\x59\xab\xcc\x45\xc8\xfc\x10\xef\x39\x43\xea\x2f\x83\x67\x3c\xe6\xd5\x1f\x87\x0e\xb3\x90\x59\x7c\x64\xaa\xc9\xe5\x00\x42\x7c\xd1\x99\x8d\xbf\x12\x67\x13\x74\xa2\x0c\x27\xad\xda\xf5\x80\x30\xd1\xf4\xf9\x8d\x4d\xf9\x2c\x1a\x7e\xf5\xa0\xf8\xe1\xe8\xd8\xb7\x45\xd5\xb1\xaf\x53\x3d\x75\x08\xb3\x8a\xa4\xb7\xc5\x70\x9a\xb3\xc1\x3e\x71\xd9\xa8\xd2\x49\x43\xc2\x1c\x45\xe9\xa5\x61\xa7\x77\x10\x5e\xdf\xb8\x7c\x35\xf9\x5a\x34\x0b\x79\xdb\x5f\x44\x59\xac\x28\x23\x78\x95\xb8\x9e\x78\xb7\xe3\x12\x21\x87\x33\x7f\xab\x6b\x7d\x0d\xc1\xcd\x58\xd1\xfe\xf0\xcb\x1a\x42\xcc\xc7\x17\xae\x5e\x63\xb8\x9e\xff\x57\xf5\x5f\x91\x5c\xa9\xc3\x5b\xfe\xc7\x82\x85\x40\x99\xbd\xb7\x94\xef\xb9\x11\xdc\x7c\x8c\xe6\xfd\x5e\x7a\x88\xe0\xf5\xd8\xb2\x31\xc8\x60\x1f\xa1\x82\x7f\x9a\xe1\xd1\x23\xdb\x09\x0f\x62\xb9\x39\x83\x44\x0e\x11\x4a\xbe\x9b\xdd\x1a\x7d\xb2\x93\x20\x75\xe3\xab\x78\xab\x77\x06\xa1\x59\xe8\xc1\xd6\x1b\x7a\x26\x84\x0e\x21\x8e\x6f\xaf\xa7\x94\x11\xfc\xe4\x34\x2e\x70\xea\x0d\x30\x48\x4b\xe7\xd8\x2c\x26\x27\x4c\x88\x89\x0c\x59\xb2\xcd\x76\x32\xe1\x61\xaf\xf7\xef\xdf\x51\xcd\x84\x67\x5d\x77\x0e\x72\xee\xad\x26\xc4\xa6\xc5\x5c\xff\xcb\xc5\x1a\x7b\x60\xf1\x7e\x9e\x4f\x0f\x11\xca\x39\x7c\x07\x06\x4e\x6c\x23\x78\x9d\x17\xf3\x7e\x70\x4b\x9e\x90\xbf\x89\x4b\x7b\x76\x57\x0a\x61\xde\xc5\x30\x95\x80\x94\x54\x42\xf8\x17\x85\x25\x9c\xdf\x06\x18\x54\x0b\x94\xf2\x0f\xee\xeb\x60\xc3\xaa\x83\x62\xab\x8f\x79\x70\x12\x6e\xbe\x6b\xde\xec\x71\x25\x89\x70\xe9\xa0\xe4\x9d\x07\x29\x9c\x84\xee\x08\x8b\x1d\x23\x55\x13\x08\xcf\xa6\x2c\x71\xe0\x29\x18\x64\xe0\x3f\x1a\x5e\x7c\x54\x5a\x90\x70\x74\xeb\xd0\x21\xd1\x78\x0e\x42\x67\x97\xfb\xbe\x6c\x35\x03\x82\x19\xb7\x55\xc5\x90\x75\x29\x81\x65\x65\x3d\x52\xaa\x60\x46\x78\x23\xba\xe2\xca\xf0\xcd\xe5\x84\xa1\xc5\x6a\x19\x66\x4a\xbc\x84\x15\x33\x5c\x85\xfd\x93\x17\x11\xda\x94\x65\xb7\x09\xa8\x55\x97\x60\xc4\x64\xde\xd3\x67\x1d\x7a\x34\x8e\x65\xbf\x2c\xb4\xce\xfe\x58\x46\x48\x1e\x6a\xd2\x69\x30\x7b\x48\x78\x7b\xef\xea\x7e\x05\xd6\x0b\x16\xa2\x82\x94\x8a\x06\xe7\x3f\x24\x4c\xc8\x49\xa9\x55\x5c\xab\x4f\xf8\x21\x24\xf7\x76\x9e\x0b\x1f\x1b\x5e\x56\x96\xdd\xab\xdd\xf0\xac\x04\x73\x3a\x57\x7e\x57\x59\x65\x46\x38\x5d\x38\xfd\xd5\x07\x0e\x45\x42\x48\x54\x58\x80\xb5\x7b\x31\x61\xb8\x41\x55\xf8\xa5\xb1\x35\x21\xbf\xa8\xfa\xf6\x17\xdf\x77\x0c\x72\x96\x49\x26\x34\x62\x32\x8d\x63\xc1\x35\x2d\x99\x8f\x47\xe7\x10\xf2\x34\xe3\xe6\x56\x56\xe9\x12\x52\x8e\xe9\x76\x04\xef\xdb\x4e\x68\x54\x32\x11\xbe\x8d\x11\x06\x2f\x37\xc4\x3f\x0b\x55\xe3\x27\x98\x2a\x39\x75\x7c\xb0\x53\x23\x7c\xd8\xc9\x27\xf4\xc0\x42\x8e\xf0\x94\xf3\xa4\xf3\xfe\x2b\xb2\x84\xa0\xe4\x56\x91\x18\xbe\x60\x82\xe4\xe7\xb2\x7d\x1d\xf3\x17\x13\x7e\x3d\x12\x6c\xef\xbb\xbc\x96\xb0\x56\xa6\x32\xcb\x73\x99\x07\xe1\xe6\xc8\x25\xaf\x95\x0b\xeb\x09\x57\x02\x13\xa7\x6f\xdb\x34\x9d\xc0\xdd\xd0\xb5\x33\xf3\x54\x3e\x21\xcb\x7d\x47\xbe\xd4\xd8\x66\x7c\x6a\xc6\xeb\x7b\xce\x97\x52\x09\x3a\xcb\x5a\x0a\x36\x7b\xad\x25\x54\x4e\x7b\xdb\x11\x36\xf3\x3b\x33\x8e\xa0\x8d\xad\xf9\x9f\x5c\xde\x94\x40\xb1\xa8\x40\x68\xb3\xcc\x59\x16\xe4\x57\x4d\x33\xb0\x9d\x9f\x41\xb8\xbc\x57\xf3\x72\x44\x67\x0d\x0b\xfc\x61\x56\x3a\x27\xab\xf4\x09\x32\x3f\x65\xfb\x62\x34\x02\x69\x58\x51\x24\x3c\xf2\x52\x19\xe1\x47\x98\xd8\xdc\x45\x71\x83\x0c\xc2\x9f\x69\x19\x6c\xab\x9e\x41\xb8\x72\xef\x7e\xd3\xbc\xd3\x60\x30\xe4\xbe\xfd\x98\x60\x6e\x32\xa1\x57\x26\xf0\x93\x7f\x62\x17\x03\x09\x73\x0a\x72\x69\xe2\x24\x24\x99\x86\x24\x2c\xbf\xa2\x45\x48\xdf\xbc\x4a\x27\x66\xa5\x16\x21\x7b\xd3\x24\xd3\x37\xc6\xf9\x84\x92\xd8\x15\x4e\x72\x3e\xf7\x09\xbd\x7b\x7c\x6f\xfd\x43\xe4\x54\xaf\xe7\x97\xc6\x9e\xd4\x62\xab\xa8\xf7\x82\x9d\xc7\x09\xfd\x4d\x7f\xb5\x1e\x54\xef\x26\x44\xf3\xc1\x73\x8d\xa3\x08\x61\x9b\xfb\x92\x52\xa5\xdd\xfc\x04\x1e\x0b\x57\xb9\xa8\x0d\x7e\x84\x93\xa7\xe4\x2e\x70\x04\xce\x22\xd8\xef\xad\x1c\x65\xbd\x51\x27\xb4\x15\xa4\xeb\x4d\xab\x59\x4e\xd8\x16\x31\xb4\x4d\xf9\xb1\x39\xe1\xce\x14\x89\x2e\xa1\xfe\x64\x42\xb8\x86\xe5\xaf\x9c\xdf\xc9\x84\xbf\x06\x3e\x13\x6c\x0e\xad\x20\xb8\xc8\x67\xa5\x8a\x4e\x21\xc2\x93\x41\x83\x44\x71\xc7\xd5\x6c\xe0\x4d\xbc\xc3\x51\xfa\xfd\x5a\x09\xb8\xde\xad\xf1\x5e\x7a\x7b\x2e\x61\x6e\xc1\x86\x3b\x5a\xfa\xe9\x84\x0b\xf7\x03\xb8\xaa\xf6\x4e\x20\xa4\xf0\xae\x36\xd4\x57\xf8\xc5\x20\xe0\xe2\xf3\xc9\xbe\x21\x32\x84\x1f\x65\x1b\x2a\x33\x87\x84\x08\x35\xc2\x49\xdb\x72\x7c\x27\x10\x7a\x32\xff\x94\xfe\xe2\x98\x47\xc8\x49\x58\xc7\x1b\xae\x1f\x4e\x38\xaa\x46\x9f\xf7\xee\x2a\x25\xe4\x44\x04\xdb\x0a\x2e\x50\x22\xa4\xee\x9e\xfb\xd7\x70\x02\x07\xe1\x2f\xe7\x32\xcd\xdb\x1f\x54\x09\x57\x97\x29\x71\x34\x9d\x79\xc0\x86\x69\xb3\x1a\x53\x1a\xc7\xb0\xe8\x6c\x64\xc0\xae\xa8\x07\x04\x49\xf3\xd8\xc4\xe6\x33\xec\x98\xbe\xa2\x66\xfe\x9f\x5c\x7b\x82\xcf\xc0\xa2\xdf\xad\x7d\x16\x6c\xe5\xed\xac\x83\xd9\x92\x25\xdb\xd9\xca\xd7\x86\xb7\x8b\x5e\xde\x17\x23\xdc\xef\x16\x5f\x1a\xff\x7c\x07\xc1\xff\x88\xf5\xf3\xc1\x9b\x45\x2c\xf4\xde\xee\x0e\x4f\x58\xb9\x8c\x50\x91\x76\xc8\xcb\x6b\xbe\x2a\x81\x4e\x3f\x3f\xa7\x3a\x76\x9c\x5f\xb9\xb5\xc4\xc2\xcd\x26\x8f\xe0\xbf\xfd\xd8\x45\x56\x65\x31\x1b\xd4\xe2\xdd\x9c\xdc\x9e\x96\x13\xfa\x97\x7d\x3d\xa6\x55\x5b\x4e\x10\x8b\x90\x5a\x96\xf5\xba\x9c\xf0\x76\xb3\x1a\xff\x84\xf8\xfb\x04\x94\x44\x36\xc7\x44\xe5\x13\xfc\xa5\xfa\xd7\x5c\x8b\xbc\x4f\x88\xa2\x0b\xcd\x82\x5c\xbc\x84\xf6\x46\x9b\xbb\xcc\xad\x11\x66\x1c\x09\xbf\xab\x72\x6d\x57\x70\x11\x2a\x64\x52\x72\xf2\x43\x33\x09\xa7\xb7\xac\xf2\xfa\x26\x14\xc0\x06\xa7\x94\x2f\xeb\x92\xf6\x47\xb3\xe1\xe6\x8a\x0c\xf1\x11\xaf\x68\xc2\x2a\xdb\xee\x54\x91\x46\x1b\x82\xe8\xb4\xe9\x87\xb2\x1d\x1d\x09\xad\x6e\xfd\x87\x5f\x1f\xb3\x20\xd4\x5e\x5e\xb6\x5b\x75\x74\x19\x61\xd1\xbc\x87\xc5\xde\xee\xbf\x18\x1c\xdd\xd3\x11\x96\x20\x7b\x87\x50\x9c\x30\x60\xdb\x5c\x9d\xcb\x02\xaf\xc5\xd4\xca\xc4\xb1\xe2\xe3\xf6\x64\xc6\xc9\x60\x57\x42\x4c\x5d\x86\xbf\xd2\x18\x4c\x5d\x25\x46\x99\x1b\x5e\xff\x85\x07\x67\x8c\x96\xe8\x77\x79\x11\xe6\xfb\xaa\xbe\xdd\xbf\xce\x82\x30\xf0\xb8\xf2\xd4\xc0\x0c\x03\x82\x40\x63\x6a\x71\xa4\xad\xcd\x7f\x21\xc9\x8d\x23\x68\xc9\x01\x73\xc2\x2d\x4a\x2a\x68\xda\xff\x9d\xc1\x70\xcc\x21\xf9\xc7\xd7\xe7\x13\x16\xef\x1f\xf2\xbf\x60\x66\x4e\x70\x8e\x6d\x7d\x78\xc1\x67\x06\xe1\xd5\xf6\xc5\xcb\xdc\xbd\x7f\x33\x98\x69\x31\x9a\x58\x9e\xa5\x42\xe3\x30\x7e\xd2\xea\x62\xda\xa6\x41\xa8\x3a\x30\x6a\x13\x9b\x60\xca\xc2\xa6\xfa\xdd\x39\x2f\xed\x12\x08\x46\x09\x3e\x55\x2e\x07\x93\xd8\xd0\x61\xb5\xfb\xde\x3f\x5c\xac\xbe\xbe\x2d\xb2\x30\x89\xc0\xed\x2b\xbc\xd4\xdc\x4b\x8f\xa0\x70\xfa\x93\x9c\x9b\xd8\x74\x82\x8d\x6a\x6d\xe5\xa5\x9d\x5b\x09\x3e\x8f\xfd\x34\xce\x67\xac\x24\xe4\xd4\x0a\xf2\x3c\x1a\x9e\x45\xf8\x26\xfa\xf2\xcb\x6c\xa5\x5f\x0c\xba\x55\x59\xce\xa2\x1f\x54\x08\xaf\x35\xcf\x4b\x1a\x19\x7f\x63\xd0\xe8\xc2\x75\xf4\xf0\x85\x2e\x06\x49\xd3\x9a\x9c\x47\xcd\x7f\x32\xe8\xdc\x6c\xab\x1a\xd6\xb2\x8a\xc0\xeb\x3d\xf5\xbd\xba\xae\x03\x61\x28\x7e\x66\xf2\x60\xa1\x2c\x81\x46\x8a\x24\xc3\x53\x1b\x18\xfc\xe6\x57\x33\x8e\x71\x11\x21\xb8\x79\xbe\xf7\xbe\xfe\xf0\x0f\x83\x17\xc7\x05\xbe\xcb\xf9\x0f\x30\x58\xc8\xbb\xe4\x3a\x97\x93\x0c\xb1\x61\x40\x31\xe0\x86\xe9\x10\x33\x0e\x65\x5e\xcd\xaf\x12\x5a\x0d\x25\x10\xe9\xdc\x3c\x49\x77\x60\x3d\x61\x7e\xa3\xdf\xa9\x9d\xf1\x7b\xd8\x90\x23\x7f\xcf\x25\x21\x86\x87\x50\x7a\x59\x70\xd6\x8c\xa9\x9e\x04\x09\xeb\x80\xef\x1f\x56\x88\xfd\x17\x7c\x37\x18\x19\xba\x8e\x1d\x33\x67\x0a\xa9\x2e\xf9\x07\xbd\xc3\xc3\xbe\xfa\x8e\x16\x84\xa6\xfd\x3c\x69\xf2\x7d\x1c\x6c\x38\x7d\x7b\xfd\xac\x8a\x7d\x85\x25\xb0\xed\xb2\xba\xee\x27\x71\x86\xd0\xb1\xd0\x45\x8b\x43\x68\x80\x41\xdd\x00\xcb\x26\xaf\x65\x90\xc1\xbc\x95\x77\xdd\x06\xa4\x86\xd8\x70\x28\x3e\x67\xe1\xcb\x12\x4d\xc2\xab\x09\xda\x56\xfb\x03\xcd\x08\xa3\x5b\xc2\x64\x5e\x4f\x71\x24\x3c\x39\xd3\x46\xdd\x7f\xec\x08\x17\xc2\x86\x92\x82\x0f\x07\x10\xec\x96\x88\xcd\xb6\x9b\x6d\x40\xd8\xec\xed\x9b\x93\x7b\x8d\x83\xd0\x7f\xa0\xaf\x29\x26\x44\x9d\x30\xf9\xb3\x56\xfd\x92\xac\x45\x84\x78\x0f\xd1\x3b\x52\xdb\x36\x10\xfc\xb6\x17\x89\x1b\xf5\x1a\xb0\xa1\x76\x89\xaa\xad\xc6\xd0\x1f\x66\x1c\x57\x46\x56\xbf\xdb\xfa\xa2\xb5\x04\x22\xc1\x6f\xcb\x3c\x9b\x87\x18\x14\x79\xa8\x1d\x59\x3b\xa0\x48\xe3\x88\x11\x5e\x3e\xf3\xeb\x9a\x89\x6c\xa8\x66\xcc\x3b\xfe\xbc\x79\x59\x82\xc5\xca\x3d\x37\xb7\x64\xff\x2e\x01\xb7\xfb\xda\xbb\xaf\x79\x38\x08\xe9\x4b\x06\xbd\x34\xbc\xb9\x08\x0e\xd3\x64\xb2\xbb\x14\xee\x13\x42\x6b\x14\xfb\xbe\x04\x7d\x65\xc6\x31\xfc\x20\xf0\xf5\x46\x25\x51\x1a\x47\xf3\x02\xe7\x18\xe5\x94\x65\x84\x88\xfc\x1f\xfc\xdd\x3a\xca\x84\xe8\x13\x8b\x7f\xda\x58\x3f\x27\xdc\x89\xbc\x15\xb7\x71\x0c\x46\x01\x22\x27\xf9\x84\x73\x09\x8b\x57\xf7\x1e\x6e\x5a\x1d\x4a\xe8\xff\xfc\x67\x82\xf1\x66\x0d\xc2\xdf\xcf\x07\x5e\xa7\xec\x96\x25\x58\x96\x4a\x65\x96\xa7\xb7\x33\x78\xff\xfa\xb3\x48\xce\xb6\x2f\x0c\x42\x76\x3b\xf7\xd7\x07\x45\x13\xde\x4d\x59\x73\x78\xbb\x96\xfe\x7f\xe1\xec\xa3\x45\x2c\x67\xa3\x6a\x06\x1f\x22\x12\x36\xfe\x09\x50\x23\xc8\x6f\x9f\xa0\xf4\x45\x90\x21\x9c\x3b\x5b\x10\xf3\x24\x29\x86\xb0\x55\x69\xd6\x02\xb5\x5d\xdb\xd8\x70\x4a\x6c\xb6\x60\x82\x7b\x1f\x83\xee\x44\xf5\x55\x17\x0f\x6f\x26\x18\x78\xbd\x9d\xba\x5e\x24\x89\x10\x5c\x6f\xb0\xee\x87\x60\x12\x21\x72\xf3\xb1\xc9\xfe\x97\x22\x09\x8a\xa6\xbf\x6f\xa7\x38\xdf\x60\x8d\x17\x75\x85\x0f\x23\x57\x6f\xcf\x24\x14\x5b\xf6\x1a\x2c\xf8\xa6\x45\x68\x4b\xf2\x14\x0f\x54\x76\x20\x38\x9c\x56\xde\x2f\xc5\x2f\x46\xf0\x8a\x62\xfc\xd5\xbd\x44\x09\xc2\xd5\x53\xbb\x5d\x7e\x6a\x12\xb6\x54\x2f\xe4\x0f\xee\x13\x27\xbc\x33\x3a\xcb\xff\xfb\xed\x4e\x82\x88\xd4\x63\xef\xf3\x37\xbe\x33\xf0\x0a\xee\xf0\x9b\xa7\xbe\x97\x60\xba\x58\xaa\x59\x68\x1e\x8b\x30\xd5\x63\x96\xe5\xb3\xfc\xd9\x84\xa7\x4d\x19\x52\x46\x3a\x32\x84\xdf\x05\x4b\x92\x86\x9c\x1d\x58\x90\x5f\x5b\x3a\x98\xc2\xbf\x9d\x70\x57\xb5\x78\xff\x2d\x59\x13\xc2\x5e\x73\x49\xf1\xb4\x9b\x6f\x19\xc8\x76\x9d\xde\xa5\x7c\x39\x8e\x85\xf8\x0e\xff\x05\xba\xdf\xae\x10\xf6\x70\x34\x09\xf9\x5a\xaf\x20\x98\x0e\x06\xf7\xef\x4f\xec\x60\xc6\xb1\xc2\xb5\xa8\x34\xe9\x82\x16\xa1\xe4\xf3\x26\xff\x90\xd7\x7f\x18\xfc\x1d\x1c\xf0\xcf\x3c\x13\x5f\x82\x25\xb1\xbb\x03\x66\x6c\x9e\x4a\xe3\x50\x0b\x2f\xda\xa1\x9a\xa6\xce\x86\xd1\xf3\x9d\x67\x7a\x6f\x7b\x12\xa6\x0b\xfa\x5d\x29\x7e\x20\x4f\x30\xcd\xfe\xa2\xef\x10\xa4\x4c\x08\x79\xe3\xb0\xc0\x7d\x9a\x3c\xa1\xdd\x4a\xe6\xfa\xdd\xcc\x39\x84\xba\x12\xd3\x2d\xce\x1b\x7f\x32\xd8\x1a\x97\x25\x18\xb2\xdb\x90\xe0\x1d\xf1\xea\xd5\xb1\xe2\x65\x04\xe7\x29\xfd\xd2\x6e\xa7\xcf\xb2\x61\xeb\x26\xff\x82\x87\x01\x87\x08\x23\x22\xae\x11\x03\xb3\x15\x09\x7c\x5f\x16\xab\xb4\x1d\x5d\xca\x06\x6b\xfe\x4b\x61\xe2\xfa\x07\x18\xe4\xdf\xe6\x1b\x59\xf5\xe7\x1b\x83\xe5\x1f\x32\x1e\x94\x89\xad\x20\x7c\xdf\xe3\x74\x83\xa7\x99\x8f\xb0\x76\xe6\x79\x1d\xed\x65\xc1\x6c\x38\x9a\x90\xfa\x61\x77\x79\x3c\x61\x90\x5b\x47\x7f\x1d\xc2\x08\x26\x6d\x31\xdb\xb7\x5a\xce\x20\x9c\x4c\x63\x6d\xd9\xce\xa7\x49\x98\x53\xea\x75\xff\xea\x72\x15\x42\x13\xaf\xc7\x54\xb9\x1f\x1c\x84\xe3\x81\x49\x79\x4e\x2d\x7b\x08\xb7\xb2\xd2\xef\x8c\xec\x36\x22\xb8\xad\x0b\x7c\x1c\xc3\xf9\x9b\x81\x21\xd5\xec\xfb\xf3\x66\x06\xe1\x6f\x6c\xc6\xcf\xdd\x07\x16\x11\x6c\x8b\x5a\xb7\x96\x0e\x1f\x66\xc1\xb7\xa2\x7f\xf6\xd1\x3b\xed\x0c\x44\x56\x5b\x5f\xd3\x9c\xab\xcb\x82\xed\x6a\x8e\x19\x95\xa2\x67\x09\x46\xc7\x7f\x2f\xbd\xb1\x6d\x3a\x41\xc0\x5b\x62\xa9\x66\x76\x22\x1b\x52\xd2\xa3\x45\x8b\xf7\xda\x11\xec\xd2\xcf\x5f\xbd\x3c\x73\x13\x81\x2b\x96\x57\xba\x67\xc3\x09\x16\x32\xa3\xcd\xad\xbe\xaa\x6f\x66\xbb\x26\x6b\x66\x98\xfa\xc0\x1c\x71\x82\xe8\xd5\x27\x0e\xfb\xd2\xe2\x09\xaf\xbc\x95\x63\x38\x93\x54\x08\xd9\xca\x97\xd5\xe4\x1f\xc9\x12\xba\x6a\x82\x14\xb4\x97\xa9\x11\x74\x9c\x1e\xb8\x3c\x3d\xac\x48\x38\xaa\x74\x90\xff\x98\xea\x66\x82\xd3\x36\x93\x03\xa7\x5e\x5b\x11\x9a\x6e\x24\xd5\x08\x8b\xac\x26\x34\x9e\x0f\xdc\x74\xf1\xc0\x0c\xc2\x05\xce\x9e\xb7\xf4\xd0\x8a\xe0\xdd\x75\xb2\x6d\xb4\x6d\x32\x81\xdb\xbc\x55\xc8\x30\x23\x92\x0d\x36\x15\x82\x6f\x76\xab\x9f\x24\x84\xad\x56\x6d\x59\x7d\x3a\x8e\x60\x29\xec\xb7\xc3\x28\x30\x92\xa0\x56\xd7\x60\xf1\x84\x3b\x8d\xa0\xe3\xc0\xd5\xa9\xf1\xb2\x9e\xa0\xcd\x3f\xd7\xa5\xf1\x71\x09\x61\xf0\xdb\xd1\xb5\x76\xbb\x4b\x08\x53\x03\x9e\xea\x29\xbb\x95\x10\x7a\x9e\x88\xae\xd9\xf7\xbc\x84\x90\xde\x9d\xba\x20\x2d\xa1\x8c\x60\xf9\xc1\x56\x61\x7d\x6f\x29\xc1\x6b\xca\xbb\x24\xe9\xe5\x65\x84\xe9\x96\xcb\x0f\x3c\x6b\xbd\x42\x90\x6e\xbd\x38\x6f\xbd\xef\x61\x82\xf5\xcf\xb7\xd7\x0d\x26\x15\x12\x9c\xed\xfa\x2f\x46\x1f\x2e\x27\x54\xa7\xf0\xe6\xfc\x43\x65\x9a\xef\x9d\x06\xf5\x48\x36\x48\x71\x5d\x3b\x31\x4b\x83\xbd\x7c\x9a\xf3\xe0\xec\x2b\x8e\x23\x84\xa5\x47\x2e\xf6\xaf\xaa\x77\x60\x2b\x4d\x7a\x77\x36\xce\x83\x27\x5b\x89\xd9\xad\xf1\x8a\x59\xb6\x92\xb0\x7d\xa3\x53\x53\xa7\xfc\x74\x42\xb0\xfe\xdf\xf9\xc9\x65\x31\x04\x71\x87\xb2\xa4\x4b\x63\xa8\x2b\xf7\xe1\x96\x1e\xb6\x27\xec\x39\xaa\x19\xed\x7f\x71\x23\x61\xc1\xdd\x6b\x37\x39\x4e\x72\x13\xee\x3f\x99\x57\x27\xb0\x25\x87\x20\x59\x2c\xb4\xc2\xa9\x92\x45\x58\xb2\xc8\xe2\xae\xd4\x11\x43\xc2\xa4\xbb\x95\x87\x2e\x39\x2b\x13\xca\x47\x24\xc2\x25\xf4\xa4\x08\x86\xeb\x5b\xf3\xf3\x2c\x53\x08\x43\x87\x9c\xa4\xe2\x0a\x84\x08\x65\x67\x86\x5c\x33\x8a\xcb\x09\x07\xae\x6e\x3f\x79\xbd\x62\x15\x61\x02\x2b\x76\xed\x75\x69\x71\xc2\x65\xb5\xf8\x4d\xbf\xfc\xc0\x60\xcd\x87\xf4\x18\xef\xcf\xfa\x84\x4d\xea\xb1\x72\x26\x27\x8d\x08\xd1\xf7\x72\x27\xba\x14\xfa\xb3\x21\x2b\xa9\x6a\x5d\x55\x8b\x23\xc1\x33\xe7\xe7\x9e\x23\x27\xca\x08\x6f\x3a\xec\xeb\x26\xbe\x29\x23\x38\xb8\x1e\x95\xb4\xec\x9a\x44\x78\x7a\x39\xde\xcd\x6b\x32\x07\xe1\x5d\xd6\x9c\x12\x79\x71\x19\x36\xa8\x0c\x4e\x71\x4c\x6f\x5a\x40\x68\xd0\x03\x7f\x7d\xe0\x64\x82\xc4\xb0\x59\xe8\x82\x51\x4b\x36\xe8\x44\xa4\x9c\xe0\xc8\x5c\x45\xb0\x7a\xb2\x32\x59\xee\xe3\x22\xc2\x86\x99\xef\xff\xaa\x8d\xfd\x15\xb7\xd7\xfa\x5a\x6c\x37\xd2\x23\x1c\xf6\x3c\x1e\x9e\xde\x34\xf6\x3d\x78\x76\x38\xd6\xe5\x97\x14\xa1\x77\xb2\x8d\xf9\xd9\x1b\x0c\x1b\x94\x86\xa7\xcf\xf7\xe9\xac\x64\x60\x10\xdd\x37\xc8\xbd\x24\x8a\x60\xb8\x56\xe9\xcf\x69\xe5\xed\x6c\xb0\x3e\x27\x74\xd7\x27\xb8\x87\xc1\x16\xe1\x66\x46\x2c\xcb\x84\xf0\xb1\xf0\x4d\xbb\x4f\x70\x2a\x0b\xcb\x9b\x6c\x27\x9f\xaa\x33\xa7\x71\x1c\x19\x88\xac\x0f\x7f\xb0\xf6\xbf\xd0\xfd\x89\x93\x5f\xa5\x4d\x9f\xf0\x61\xa2\x88\xc9\xce\xf3\x9a\x04\xcf\x80\xf6\xea\x1f\xda\x8b\x08\xb5\x56\x67\xb7\xac\xde\xc7\x4b\x78\x6d\x6c\x71\xfd\xfa\xae\x5f\x0c\x32\xe4\xde\x88\x73\x15\x7f\x63\xc3\xf5\x06\x99\xc7\xe2\x2d\x22\x84\xe6\x9f\x3d\xd3\x3f\x9b\x2f\x21\x14\xd7\x88\x18\x2d\x8d\x0b\x23\x68\x1b\x2d\xad\xd8\xe5\x35\x91\xb0\x96\xcf\x2f\xf9\xe1\x40\x2e\x41\xca\x9c\xff\xb2\xa0\x5b\x26\xc1\x61\xf2\x31\xd7\x57\xca\xf7\x08\x6d\x93\xd4\xa3\x3c\x55\xef\x11\xf6\x19\x37\x0e\xb0\x3e\x6d\x24\xd8\xcf\xb5\xe2\x6f\x53\xc9\x23\x54\x2b\xfa\x5a\xbe\xab\xf2\x22\xb4\xf7\x91\xe2\x3a\xb3\x50\x82\xab\xd1\xac\xda\xc6\x7b\x5c\x84\xcd\xb1\xab\x87\x83\xf5\x55\x08\x17\xc3\x1b\xef\x71\x0e\x0f\x33\xc8\xad\xff\x9c\x92\xb7\x43\x81\x10\xc9\x73\x5b\x68\xf8\xfe\x74\x02\x2f\x77\xae\xcd\x50\x2a\x27\xe1\xb6\x5b\xe0\x4e\x1d\x0f\x5d\x82\xf6\x20\xe7\x14\xed\x04\x07\xb6\xd2\x25\xa8\x61\x99\x16\x31\xc4\xe0\xd6\xf0\xea\x55\x46\x01\x73\x09\x3b\xd3\x7a\x5f\xe6\xda\x4c\x25\x88\x6f\x09\x58\xdc\xe9\x71\x8a\x60\x55\x23\x1b\x75\x74\xf1\x2d\xc2\xe4\xe8\xd0\x62\x95\x89\xa6\x84\xe1\x4d\x57\x96\xd4\x0f\x66\x10\x76\xd9\xbf\xb8\xe8\x3a\x57\x8c\x50\xd4\x34\xb4\xf4\xdc\xd8\x8a\xae\x5a\x3d\xff\xd0\x87\x3d\x4f\x09\x8f\xbf\x78\xd7\xfc\x43\xb4\xf7\xd5\xd1\x7f\xf0\x91\x0e\xdc\x5a\xdf\x93\x4a\x90\xdb\x15\x74\x78\xf1\xf5\x53\x84\xe3\xeb\x56\xfa\x8e\x9a\x26\x10\x28\xad\x65\xca\x7d\xa1\xd7\xcc\x38\x8a\x33\x9e\x54\xa1\x8c\x93\x10\x6e\xbe\x67\x81\x8b\x81\x1a\x61\xb1\x27\xcf\xe5\x96\xe9\x99\x04\xe7\xac\x7b\x53\xf8\x63\x9f\x10\x76\x2b\xac\x54\x7c\xfe\xbe\x8a\x30\xdf\xdd\x26\x15\xfb\xd3\x08\xb3\xc3\x0a\x3b\x83\x44\xa3\x09\x56\x8f\xfd\x6e\xdc\x0e\x2a\x25\xcc\xef\x67\x76\xfe\x83\xd2\xa9\x86\xaf\xb7\xc6\x50\xa1\xcf\x7a\xf5\x0f\x3e\xb7\x28\xbe\x3d\x29\x88\x0d\x0f\xcb\x66\xc7\x8a\xd0\x2d\xc2\xd6\xa4\x3a\x91\xbc\xc2\x63\x84\x92\xaf\xc9\x0b\xb6\xe8\x04\x13\x82\xb5\xb7\x7e\xba\x3d\xe0\x4e\x98\xef\xf2\x49\xdb\xe4\xaf\x3f\xe1\xe0\xd5\x37\x0b\x9a\xb3\x62\x08\x2f\xcc\xed\x72\xfe\xc1\x9b\x75\x42\x5b\xfa\xcb\x6e\x82\x90\x9d\xbf\x98\xb2\xe1\xf3\x12\xcc\xd1\x7d\xd9\xcc\x5a\xf7\x8e\xb0\xd6\x73\x55\x2f\xa3\xd6\x42\x58\xb0\xa9\xd0\xe0\x5a\x68\x21\x61\xf5\xe2\x33\xfc\x33\x03\x73\x09\x9b\xd3\x78\xeb\x0d\x93\xa2\x09\x65\x93\xca\xa2\x8a\xdc\xee\x13\x02\x38\x7f\xbc\x9d\xdd\xe4\x49\x98\x24\xb9\x7a\xde\x0f\xaf\xf9\x84\xf4\xe9\x9f\xfa\xaa\x1d\x16\x10\xe4\xf6\x8d\x88\x70\xbf\xb3\x27\xd8\x88\xcf\x16\xa9\x69\xbf\x44\xc3\x13\xbf\xac\x8f\x9e\xeb\xf2\xff\xbc\xc5\xd1\x99\x51\xdb\x4b\x64\x82\x09\xe9\x17\xae\x9a\x2a\x7a\x1f\x24\x28\x38\x29\xb2\x96\x4f\xd9\x4c\x70\xe9\x76\x3c\x25\x35\x65\xcf\xff\x89\x5d\x8f\x23\x56\x29\x89\x3f\x64\xc3\x3b\x45\x51\xb3\x12\xc9\x86\xff\x1a\x59\xeb\x39\xf2\xa8\x0c\x3a\x12\x92\x6b\x3e\x7c\x76\x19\x1d\x64\xa0\xd7\x79\x5a\xc8\xa4\xa5\x8f\x41\x54\xd3\x96\x8b\xcd\x47\xf4\x69\x1c\x9d\x0a\xe2\x09\xbf\x1f\xbc\x2a\xc1\x9b\x60\x01\xdf\xfd\xab\x84\x09\x51\xa1\xd7\x3d\xe7\x2f\x5e\x4a\xe8\x51\xfc\x7b\xe5\x6a\x96\x28\x21\xa9\xc1\x76\x56\x95\x56\x00\x6b\xbc\x28\x2b\xdd\xe3\xdc\xaf\xfd\x95\x81\xd2\x89\xef\xe9\x55\x2d\x0f\x08\xde\xdf\x96\x0a\x66\xce\xc8\x63\x21\x50\x71\xfb\x4c\xd1\xc7\x0d\x2c\xd8\xcc\x9b\xf3\x6d\xb2\x40\x1e\x0b\xf3\xb6\xe6\x6a\x78\xe7\xdf\x22\xf0\x2c\x12\xf6\xe9\x14\x8e\x27\x7c\x71\x99\xbb\xeb\x97\xd5\x33\x42\xd6\x9f\x87\xdb\xcd\xbe\xb5\x10\x5c\x2a\x9e\xcf\xf2\x88\x78\x41\x28\x48\x19\x9e\x73\x78\x0c\x0f\x9b\x72\x25\x3d\xc7\x30\xe1\x90\x42\x74\xf3\x84\x9b\x84\xcb\x5f\xbc\x54\x5b\x4e\x94\xb2\xa1\x6a\x95\x93\x7a\xde\xd8\x68\x59\xaa\x83\xe4\xbf\xf2\xd2\x6e\x1d\xcf\x3f\x48\xda\x0e\x1a\x3e\xba\x97\x48\xb8\xf8\xa2\xfc\xe8\x94\x8f\x0f\x08\x86\xb1\x4b\x5b\xed\x36\xc5\x8d\x2d\x14\x71\xe7\xc5\xc3\x92\x08\xef\xc3\xf6\xbe\xf8\xe0\x16\x4f\xf0\xec\xf0\x2b\xbc\x5c\xf9\x8c\x90\x61\x69\x75\xfa\x1f\xee\xbe\x29\xdf\xa6\x78\x35\x8b\x70\x5f\xd5\xa8\x46\xe0\x4d\x29\xc1\xee\x1b\xc7\xb2\xf8\xa5\xba\x84\xf9\x05\x47\x83\xf5\xaf\x45\xb2\x50\xcb\x29\x3a\xd9\xf6\xd9\x13\x82\x83\xf4\xde\x5d\xff\x20\xe7\xae\xb0\xe6\xaa\xc0\x5d\x42\xf8\xaa\x2d\xbe\x16\x31\x3a\x84\xfe\x4b\xdf\xef\x6e\xf5\x1d\x65\x60\xd4\x79\xa1\x7c\xe3\xf7\x57\x0c\x3e\xae\xaf\x4e\x78\xa7\x3b\xc0\xe0\x62\x35\xbf\xf0\xa9\xc7\x89\x04\xcb\xa5\x07\x0a\xac\x07\x4e\x12\xdc\xdd\x9d\x6b\xaf\x48\x87\x10\xb2\x57\x2e\x28\x2e\x79\xeb\x4e\xc8\xc8\xca\x95\xb9\x6b\x19\x42\x70\xb4\x78\xa0\x7b\x31\x39\x8d\x30\xcb\x6d\xbf\x8c\xf5\xef\x08\x82\x8a\xe7\xd6\x19\x96\xd7\xfc\x08\x7f\x84\xab\x0e\xde\xf7\x0f\x62\x61\x6a\x76\x51\xe3\xa5\x1b\xfe\x84\x20\x1b\xaf\xfd\x37\xd7\x9c\x25\x2c\x3f\x3d\xfb\xf0\x47\x8b\x7b\x84\x87\x45\x5e\x92\x32\x3b\xb3\x09\x8a\xae\x6b\x1b\xa2\x03\x6e\xb0\xa0\x5e\x51\x7e\xc2\x4f\x2a\x82\xa0\xc0\x13\xa9\xfa\x6f\xf4\xa6\x76\xc7\x87\x37\xd3\x8e\x11\x94\xdc\xf5\xde\x29\xa1\x80\x50\x17\xc6\x5a\xbc\x41\x6a\x98\x41\xc7\x1c\xc7\x17\x9f\x4f\xd9\x13\x2e\x1e\x6a\xef\x9f\x1d\x25\x43\x88\x4c\xed\xbc\xca\xf1\x77\x0a\xc1\x67\x02\x5e\x1a\x2b\xfb\x12\x6e\x35\xf6\x27\x35\xf4\x2c\x23\x84\x6d\x5a\xaa\x93\xd7\xb7\x89\x30\x39\xa1\xf1\x54\xc3\x9b\xdd\x6c\xe0\xbd\x97\xf8\x23\x47\xc4\x9f\xc0\x79\xd7\x4f\xfe\x4f\xf3\x1a\xc2\xbd\xc7\x76\xfc\x93\xa5\xa6\x12\xe6\xce\x95\x38\xe0\xbf\x76\x6c\x01\x3c\x62\x14\xae\xe9\x3b\xc2\xe0\xfb\xd9\xc5\x0d\x5a\x17\xdd\x68\x1c\x1f\x62\x3f\xed\x10\xd4\xaf\x67\x90\xb1\x4d\xa0\xe6\xee\xd6\x7e\x06\x2b\x53\xc4\x6c\xf6\xcf\x1a\xdb\x3e\xda\x0f\xfe\xff\xf8\xb8\xf3\x60\x2c\xfb\xff\xff\xff\xa8\x54\x4a\x96\xa2\xd2\x82\xb4\xa2\x08\x25\xd4\xf1\xa4\x88\x28\x21\x4b\xa4\x6c\x69\x51\x59\x93\x2c\x57\x48\x59\x52\x92\x8a\x8a\xec\x42\x96\x24\x15\xc2\x69\x89\x90\x2c\x45\x28\x11\x2a\x2d\x28\x4b\xf5\x50\xca\x6f\x5c\x33\xdf\xb7\xf3\x37\x73\xcd\xe7\x2f\xb7\xb9\x3f\x5f\x73\x8c\x31\xe7\x71\x9c\xcf\xe3\x1f\x3b\x75\x45\x93\x59\xf8\xf1\xe6\xd3\x59\x77\xd7\x0a\xc2\xc3\xfb\xcb\xd6\x17\x69\x94\x13\xf4\xe7\x15\x1c\x7a\xcc\xcd\x4f\xf0\x49\x08\x93\xfa\x19\xba\x9b\xf0\x65\xe6\x64\x97\x3f\x3f\xc4\x08\x56\x0f\x8d\x84\x77\xcc\xf9\xce\x20\x7e\xe8\x9d\xaa\x97\x1c\x2f\xa1\xa1\xb0\xb9\x29\x73\xdb\x0b\xc2\x34\x0d\xfb\x7d\xa5\x6f\x76\x11\xa4\xb2\xe6\x4b\xa8\x4d\x39\xc9\x86\x21\x18\x47\xfd\x39\x2b\x47\x70\x7b\xbf\xe6\x86\xd0\x7b\x21\x82\xf7\x8e\x2a\xd1\x77\xeb\xc3\x59\x50\xed\xd8\xa3\x7c\x51\xbf\x92\x20\x10\xd6\xa9\xb5\xf2\x4c\xc5\xf8\xe3\x44\x90\x83\xd7\xae\x92\xb0\xf1\x4d\xc6\x81\x2c\xb1\xd9\x04\x93\xce\x06\x87\xe2\x8f\xf3\x09\x82\x62\xbc\xdd\xa7\x1e\x9c\x26\xc8\x7e\x95\xaf\x9e\x74\xc4\x92\x0d\xc1\x22\x6f\x72\x27\x77\xb4\x16\xa1\xb1\x5c\x35\x28\x75\xd6\x34\x82\x6f\x76\xcd\xf0\xd8\x6a\x4e\x82\xc1\xea\x45\x96\x1a\x5b\x79\xd9\xd0\xf6\x5b\xc7\xe5\xe7\x61\x1e\x42\x9a\xd9\xaf\xa9\x87\x79\x1b\x18\x08\x4e\x71\x1b\x61\x5d\x15\xa5\x09\x04\x68\x9b\x2d\x34\x2a\x16\x23\xe8\x2e\xae\xe2\x7a\xc0\x2a\x1c\xdf\xc5\x9a\x97\x7c\xb7\xcf\x21\xfc\xee\xd3\xc8\x93\xdf\x93\x44\x58\x69\x2f\x7d\x7e\x34\x3e\x87\x46\x3e\xed\xe4\x34\xd9\x1c\xcc\xc2\x59\x9d\x43\x95\xb3\xf4\x1f\x12\xfe\x96\xae\x37\xde\xfc\xb1\x8d\x30\x98\xfd\x7a\x53\xa2\xcb\x43\x02\xd7\x8b\xd1\x05\x42\xd5\xf7\x59\x38\xee\xfd\xac\x4c\x75\x51\x34\x21\xff\xda\xf2\xba\xaf\xef\xef\x12\xba\x6d\xbb\xbf\x6c\x2b\x7c\x42\xb0\xdc\xf5\x77\xab\xcb\x0e\x21\x42\xe1\x98\x5a\xf7\xdf\x88\x2f\xcc\x04\x2e\xde\x16\xfe\xed\x26\x32\xfe\x39\xfa\x7f\x30\x75\x4c\xd4\x12\x9b\xdb\xc2\x40\xf8\x90\xfb\xa5\x84\xac\x53\x84\x13\x86\x2b\x52\xba\xdc\x87\x18\x7c\x92\x0b\xe1\x72\x11\xfd\xc3\x20\x9e\x5b\xfd\x1c\x77\x56\x07\x41\xbf\x45\x71\xb6\x65\x4e\x11\x61\xa4\xc7\x63\x55\x52\xbe\x3f\x41\xe2\xa2\x27\x95\xf7\xc5\xb0\xa1\x51\x5e\xd8\x7b\xe6\x85\x61\x66\x02\x33\x7f\xcb\x3f\xf1\xd9\x75\x9e\x26\x30\xcc\x54\x85\x8d\xee\x79\xce\x60\x78\xab\xc4\xad\xa4\xea\x17\x2c\x58\x95\xac\xcc\x4f\x73\x38\x4e\xc8\xfb\xc7\x75\x7d\x88\xdd\x5f\x06\xae\x42\xd7\xbd\xe1\xfd\x9b\x81\xb1\x52\xa8\xf0\xe2\xa2\xf9\x84\xdf\x5d\x0e\xd5\xf7\x92\xc4\x09\x76\x76\xcf\x83\x1f\x26\x9e\x23\xfc\xc8\xd4\x9b\xb6\xa7\xd6\x8f\xe0\xf1\x3a\x49\x70\xf8\x87\x3f\x81\x5b\xb2\xce\xa1\x4d\x3c\x87\x35\x51\xbe\x4c\x92\xad\x9f\xb1\x20\x80\x50\x73\x71\xf1\x74\x25\x96\x0b\x41\x63\xe0\xea\x94\x59\x0b\x1e\x13\x7e\x72\xb6\x1a\x88\xf0\x67\x11\x82\x67\xdd\x0f\x1d\x74\xbe\xcd\x1a\x89\x6a\x29\x51\xe3\xae\x61\xa1\xa7\x37\x53\xbb\xac\x3b\x83\x30\xe7\xd3\xdb\xe1\xcd\x9b\x22\x59\x88\x8e\x3a\xe6\x3c\xef\xcd\x2d\xc2\x07\xd7\xf9\xed\x57\x6e\x76\x33\xb0\xd7\x6e\x5d\xac\x32\xa9\x88\x81\x45\xcd\x6b\xea\xd9\x73\x90\x26\x4a\xe5\xa7\xa5\x5f\xa3\xd7\x56\x32\x90\x1e\x5a\x28\x9e\x2e\x6a\x49\x70\xd3\x8a\x1c\x73\x75\x16\x25\x2c\x29\x9b\xf2\xd6\xff\xd6\x5a\x82\xff\xb6\xc6\xc0\x07\xd3\xe7\x13\x32\x1d\x70\x3f\xa7\xf5\x3e\x0b\xeb\x4f\xc8\x87\x9c\xd9\x9e\xc5\x42\x71\xc1\x92\x53\xd3\x76\xed\x26\x94\xa9\x8a\x68\x6f\xb6\xdb\xca\x86\x5c\xed\x0d\xca\xcb\xac\xfe\x30\x38\xb7\x80\xd7\x60\xdb\xb5\x77\x0c\x5e\x8a\xae\xb8\xd7\x58\x7c\x85\x60\x63\x91\xba\xad\x31\xef\x29\x21\xdc\xff\xa8\xb8\x4b\xbd\x39\xc1\xe1\x95\x5e\x31\x6b\xbb\x13\xa1\xbf\x5b\x48\xa7\x24\x54\x8d\xb0\x26\x68\xd5\xdf\x54\x63\x7d\x82\xde\x40\x8d\xb4\x76\x94\x21\x61\x06\x5f\xe9\xa1\x5f\x16\x85\x6c\x88\xce\x7b\x1d\x94\x74\x43\x8f\x70\xf4\xdd\xa6\x38\xc5\xfd\xea\x04\x79\xa1\xb9\x06\x8a\xfe\xba\x04\x0d\x91\x3f\xa1\x1f\x35\xd7\x12\xc2\x36\xb9\x25\x2d\xfc\x2d\x44\xe0\xf9\xc3\x1d\xa5\x3e\x6f\x39\x21\xf0\xf8\x50\x8d\xee\x1f\x59\x82\xd0\xa2\x01\x61\xed\x22\x0d\x36\x6c\x74\x8c\x25\xbf\xf7\xab\x09\x76\x15\xb4\x45\x3a\x20\x98\x90\xc8\xf9\x20\x59\xbe\x72\x39\x21\x74\xa5\x59\x94\x80\x80\x2f\x0b\x1d\xf7\x57\x0e\xf1\x84\x5d\x25\x88\xad\x8f\x62\x9a\xcf\x36\xb1\xd0\xfb\x65\xd7\xcc\x7f\x8b\xc4\xb6\xde\xb6\x39\x83\xe1\x84\xd8\xcb\xfa\x11\xa3\xf5\xcb\x08\xb2\x9d\xdb\x54\xcf\x34\x2c\x26\xf8\x95\xda\xd9\xe8\xc7\x8e\x31\xb8\x2e\x1a\x48\x91\x66\x97\x58\x78\xdc\xba\xc8\x62\x28\xc5\x9e\x60\xb2\x32\xfe\xe0\xc9\x8b\x2f\x09\x3b\x27\xd1\xce\xed\x42\xb9\x84\x9b\xdc\x9a\x3f\xae\x71\x96\x10\xa2\x12\xce\x70\xb9\x59\x3d\x25\x04\x76\xde\xd0\x7a\xe7\x5a\xc3\x86\x64\x15\xbf\x88\xeb\x0b\x3d\x08\x2b\x4c\x9f\x5a\x7b\xad\x77\x27\xfc\x79\x37\xb0\xc6\x3c\xcf\x93\x50\x75\x67\xba\x70\xbf\xa7\x27\xe1\xb4\x24\x5f\xeb\xc8\xe6\xcb\x04\xb1\x63\x85\x8a\xb3\xef\x1d\x21\x98\x4d\xd7\x6c\x4b\x3a\x54\x4b\x90\x70\x97\x15\x15\x8b\xc9\x25\x14\xac\x4a\x38\x99\x68\xf8\x9c\x50\xf1\x65\xc0\xfb\xdf\x91\xac\x65\x78\xf8\xba\xc3\xda\x04\x7f\x89\xdb\xb7\x3c\x34\xe3\x58\x38\x2d\xf0\x4e\x7f\xa5\xc9\x43\x82\xce\x9f\xdc\x3d\xbd\x11\x5e\x84\x84\xb5\x1d\xd3\x0f\xdd\x8a\x60\x61\x6b\xf1\xd8\x95\x23\xce\xc7\x09\xc5\x96\xdb\x52\x62\x17\xb9\x12\x34\xbe\xf5\x3f\x9a\xbe\xff\x0c\xc1\xb1\xc3\x55\xbf\xce\xda\x9c\xf0\x36\xa0\xa0\xfd\x99\xaf\x19\xe1\xe3\xd9\xe8\x91\x1c\x3d\x4d\xc2\x8e\x3d\xd9\x17\x16\x5e\xdb\x44\xd8\xbc\x67\xfd\xf5\x7f\xbc\x53\x09\x3b\xda\x2e\xef\xf7\x8c\x9b\x44\x70\xb7\x99\xba\xfa\x0d\xa3\x47\x18\xab\xbb\xc7\x15\x28\x15\xcb\xc2\xd1\xec\xd8\x69\x12\x92\x6f\x09\x81\x46\xc3\x6f\x65\x2f\xd5\x10\xd2\xea\x0c\x47\x2b\xcf\xd5\x12\xde\x1c\x30\xde\x74\xdb\x7c\x21\x41\x4e\x68\xe6\xc5\xf5\x07\x17\x10\x76\x54\x24\x6a\x0c\x7d\x8f\x65\x61\x96\xff\xcd\xd6\x2c\x5b\x4d\x82\x55\x62\xea\xf4\x8b\x56\xdf\x18\xfc\x25\xe3\x2b\xbd\x91\xfc\x04\xa9\x1b\xdf\x24\x83\x8d\xbe\x33\x78\x1b\x72\x46\xcf\xa0\x7f\x3f\x4d\xc0\xe7\x79\x3f\x57\x6e\xb6\x3f\x0b\x4b\xef\x15\x04\x37\xaf\x9f\x4b\xf0\x7d\xbe\xfa\x57\xf0\xbc\x5d\x04\x7d\x7d\xe9\x29\x92\xbb\xc5\x09\xb3\x9a\x06\x1a\x6e\x6e\xc9\x65\xc1\x7c\xdb\xe2\x8b\x37\x07\x6f\xb0\x40\x65\xab\x46\x9f\x96\x3f\x60\x61\x45\x8b\x56\xe1\xbf\xe5\x6a\x9e\x4f\x46\xa3\x9d\x2b\x0b\x0b\x3b\x93\x4f\x37\x0a\xe4\x10\xd6\x55\xc4\xbf\x53\x7a\xbe\xf6\xbf\x70\xb1\x7f\x36\x6f\x7b\xc5\x5d\x82\x9c\xaf\xca\xb3\xc7\x33\xce\x10\x26\x5b\xbe\x2f\x2f\xb4\x5f\x4f\x50\xab\xfc\x2a\xf6\x33\xc6\x94\x20\xbb\x34\x52\x40\xbd\xf9\x0a\xe1\x83\x65\xe9\x94\xf3\x77\x8b\x08\xf6\xbe\x8f\xbf\xc8\xa6\x94\x10\x5e\x54\xb6\x72\xad\x1d\xc7\x87\x4b\x67\x2f\x2f\xd2\x30\x64\x61\x4b\xb4\xc0\x94\x49\x39\x27\x08\x9b\x8e\xbc\xa7\x12\x41\x6f\x42\xb4\xf5\x9e\xb9\xb9\xad\x8e\x84\x06\xa1\x18\xbd\x31\x8d\x3b\x84\x1f\x81\x9c\x63\x1c\xac\x77\x0c\xe6\x29\x84\xf7\x0f\x71\xe9\x10\xa6\xd3\x5f\x83\x1a\x7f\x19\xc2\x03\xa5\x92\xd6\x97\x9a\xb3\x08\xcd\x35\xfa\x49\x9d\xdb\x4e\xb0\xa0\xbb\x2b\xd4\xcc\x46\xfe\x3e\xa1\xe4\x4f\x46\xc2\x2d\xbd\x67\x45\x38\x2b\x13\x20\x59\x3f\xfe\xee\xf3\x3f\x1c\x88\xf4\xdc\x55\x26\x3e\x83\x40\xdc\xe6\xed\xfb\xaf\xad\x26\x9c\x8a\xd6\xbb\x51\x4b\xcb\x08\x6b\xc2\xaf\xb8\x4d\xf5\xe1\x23\x58\x0d\x5e\xd9\x54\xba\x73\x2d\x41\x58\x4e\x88\x7b\x4a\x28\x2f\x21\x8c\xff\x15\x8f\x55\x4c\x22\x1b\xdc\xdd\xd5\x45\xf3\x9b\x8a\x09\x33\x5e\xf7\xdc\x98\x16\x76\x99\x85\x13\x7e\x6b\x39\xe4\xfa\xca\x68\x02\x39\xed\xd5\x42\x77\xca\x7d\x09\x8e\xcc\xca\x94\x7b\x3b\x9c\x08\xc7\x3d\x0f\xff\x23\xaa\x73\x92\x20\xb1\xef\xed\xad\xed\x9d\x93\x08\x0e\xbf\xe6\x6e\x9b\x53\x57\x44\xc8\x69\xb9\x7c\xcd\x6a\x6b\x1c\x0b\x9f\x74\x0b\x5d\xb8\x25\x6f\x13\x1c\x22\xdd\x17\x1b\xe3\x2a\x41\x96\xe3\xbe\x67\xd5\xe4\x70\x16\xdc\x4e\x7f\x3a\xe3\x61\xd6\x47\x28\x1a\xfb\xb5\x70\x1f\x77\x1c\xe1\xa4\x87\xef\xf1\x4d\x29\xcb\x08\x67\xd4\x03\x6c\x4b\x78\xe5\xd9\xf0\x39\xb6\x86\xd7\x4e\x75\x15\x81\xbf\x5b\x58\x3d\xae\x5d\x93\xe0\x76\xe7\x8f\xcd\xde\xaa\xcd\x84\xc8\x1e\x23\xbb\xcd\x1e\x0d\x84\x02\xfd\x80\x4d\xfc\xdb\xd3\x09\x1b\x5b\x1c\xd7\x84\x25\x6f\x27\xa8\x94\xbb\xe8\x2d\x98\x63\x44\x98\x6d\xbd\x9e\x9f\xe3\x63\x11\xc1\x35\x95\xfb\x09\xc7\x70\x1e\xc1\x5b\xbd\xf3\xde\x58\x4f\x11\x61\x33\x37\xe6\xa6\x3d\x15\x21\xf4\x7e\xb2\x4a\x33\x50\x99\x41\x98\xee\xf4\x61\x89\x72\xcc\x6a\x82\xdc\xbc\x27\xb2\x19\x31\xab\x08\x2b\x37\x17\xc4\x9d\x4f\xb3\x64\xe0\x7f\x52\xfc\xbe\xa4\x48\x05\x83\xab\xcb\xe5\x77\x46\x27\xc8\xd1\x04\x14\x9e\xa4\x75\x64\x25\xbe\x2a\xc2\xc5\xad\xb9\x77\xfd\x8d\xd7\x10\xe6\x74\x2e\xf9\x9c\x76\x41\x98\x50\xad\x99\x1c\xae\xd5\xf7\x81\x41\x55\xa3\xd4\x83\x03\xc3\xd9\x2c\xa4\x37\x3c\x9f\x1b\xe8\xa5\x48\xe0\x77\xaa\x1f\x4a\x0a\xb9\x4d\x78\xa9\xf3\xd5\xae\xbb\x55\x82\xa0\xd7\x16\x38\xa9\xdb\xce\x97\xa0\x2b\x2e\xc0\x88\x37\x95\x13\x02\x22\x8a\xd7\xb8\x84\x57\x10\xb8\x78\xda\xba\x3f\x1d\x4d\x27\xcc\x16\xc9\x18\xde\xc7\x37\xca\xe0\x8c\xa9\x61\x86\xc2\x33\x7e\x42\x59\xd9\xb2\x9b\xe9\xda\x7a\x04\x1b\x73\x61\xe5\x2d\x07\x37\x10\x6c\x8d\xe5\xfe\x29\x28\xe6\x24\x54\x9e\x57\xea\xb9\x6e\x55\x42\xd8\x23\x9c\x34\xfa\x73\xbe\x3e\x41\x89\x6b\x81\xfb\x87\xbe\x1c\xc2\x8c\xe8\x1c\x7f\xce\x54\x43\x82\x07\x97\xd9\xa4\x87\x45\xcb\x08\xeb\x0e\x8d\xb8\xc4\x8d\x3e\x24\xcc\x77\x7b\x93\x1a\xfb\xb7\x9a\x90\xb9\xce\xb2\x65\x8b\xd1\x2a\x42\xe5\x85\xc6\x90\xac\x87\x9b\x09\xab\xc5\xe4\x32\xbc\x12\x36\x13\x8a\xb7\x9e\x78\x92\xfa\x78\x13\xe1\x77\xe2\xe6\x59\xda\x42\xd5\x2c\x34\x89\xbd\x99\x1e\xe2\xb4\x9e\x60\x9a\xd3\xe7\x31\xfa\xfe\x2f\x03\x7d\xe5\x30\x83\x4f\x22\xc5\x04\xe1\x5f\xa2\xca\x9b\x5e\xea\x11\x6e\xcf\xdf\xea\x35\x14\xef\x47\x30\xbb\x67\x38\xb4\x62\x54\x81\x0d\xc6\x99\xc2\xe9\xf7\xce\xc6\xb2\x90\x19\x90\x16\xa5\xa3\xc7\x41\x70\x8c\xff\xe3\x60\xdb\xd5\x4a\x30\x3f\x25\xf5\xb8\xf6\x5e\x03\x41\xff\xb1\xbc\x43\x87\xdb\x3d\x42\xb5\x81\x75\xd2\xc0\x8b\x20\x82\x8c\xb8\xb0\xac\xe7\xc6\x8f\x0c\x96\x09\x1c\x59\xba\xd5\x71\x2f\x4d\xc0\xfe\x53\xb6\xb1\xe0\xd6\xef\x0c\x6e\x16\xed\x7b\x95\xd6\x1c\xce\x82\x68\xd4\x76\x2e\x83\x81\x70\x16\x46\xf3\x07\x3e\x9f\x5c\x93\x43\x98\x77\xd2\xb3\xe0\x54\x9f\x28\x61\x4c\x66\xff\x03\xbd\x6a\x3e\xc2\xf9\x4b\xbb\x55\x0d\x76\x0a\xb0\x41\x54\x3d\x5f\x31\xa4\x4d\x95\x10\x2a\x9b\x77\xcb\xdc\xc1\x9e\x50\xec\xf8\xf6\x66\x92\x0e\x1f\x21\xcc\x28\x4c\xa6\xc8\x75\x36\xe1\x5e\xe8\x9e\x45\x1a\xaf\xc4\xd8\x20\x95\xe1\x5e\x3b\x99\x3e\x15\xa1\x66\xf7\x0c\xa6\x7c\x5b\x0e\xa1\xef\x43\x5d\x5a\x57\x74\x02\x0b\x4b\x33\xfd\x9f\xd5\xe7\x2f\x21\x54\x55\xa7\x66\x9f\x9f\xf2\x83\x01\x9d\xbc\xc2\x71\x4d\x76\x0e\xa1\x54\x82\x97\xf5\xda\x50\x9a\x50\xac\xd6\x12\x5e\x93\xcb\x4d\x98\x75\x7c\xdf\x6d\xe9\xe9\x6b\x09\x2e\x4a\xdc\xd9\x8d\xc1\x5e\x04\xce\xc1\x2d\xaa\x7b\x0f\x58\x11\x34\xef\x9c\xdf\x1c\x3f\x79\x2b\xc1\x78\x7f\x44\x8e\xf3\xd4\x46\x02\xcf\x82\x84\xdf\x31\x99\xa5\x84\x67\xc7\xbe\x7e\x5e\x1e\x34\x9b\xd0\xf1\x45\x5f\x7e\x90\x4f\x9b\xe0\x6e\x31\xcb\xe4\xc7\xc0\x00\x83\x14\xd9\xaa\x2a\x0d\xcb\x49\x34\x01\xf5\xc3\xbb\x1d\xce\xf2\xbe\x67\xa0\xa9\xde\xb8\xf2\xaa\xc2\x66\xc2\x8a\x49\xd9\x3f\x95\x6e\xc8\x12\xda\x22\x2d\x2a\x8a\xcc\x6c\x08\x3f\x0b\x7f\x46\xa9\xbf\xd0\x21\x44\xbe\x22\xcd\x07\xa7\xef\x13\xf6\x06\x1c\xf7\xee\x28\x6d\x2b\x82\xc5\x3e\xdb\xf9\x51\xf9\xe2\x34\x01\x66\xe8\x9f\xfe\x6d\xde\x4f\x18\x5c\xe6\x48\x33\x92\x6f\x0c\x21\x14\x27\xd5\x04\x4e\xff\x79\x8a\x60\xb6\xe0\xa7\x56\x88\x5c\x09\x41\x6a\x54\x38\xbe\xd5\xa2\x9f\x30\xa7\x38\x42\xcb\xfe\x42\x27\x41\x3b\xb3\x32\x58\xdc\xa1\x8e\x10\xf5\xe9\xbd\xc5\x87\x0f\x3e\x04\x4b\xbb\xf3\x26\x15\xab\x52\x08\xdb\x57\x29\x7f\x19\x58\x5f\x4f\xd8\x98\xdc\x2c\x3e\x3c\x10\xc8\xc2\xac\x7c\x8d\xcb\x02\xa6\x2c\x02\x77\x10\x6f\x9f\x65\x58\x2e\x21\x7d\xeb\x62\xeb\x03\x71\x4e\x04\x0f\x37\xde\x81\x98\x9e\x30\x42\x45\x86\xa4\xc3\x8b\x1b\x8e\x84\x4f\x99\xa7\xe5\xba\x16\x8b\x13\xb6\x77\xde\xfa\xec\x54\xb9\x82\xf0\x6c\xad\xff\x8f\xa7\x65\x5b\x08\x5b\xdb\x76\xf6\x5d\x1b\x50\x22\xf8\x9f\x54\x5a\xb7\x6e\xc6\x00\x03\x01\xcf\xa5\x03\x2e\xba\x3f\x18\xc8\xb8\xad\x5c\xe2\x74\xa5\x80\x90\x39\xa9\x4d\x16\x03\xfd\x2c\xdc\x3c\x13\x2f\xec\x2c\xcb\x62\xa1\x3d\x46\xd4\xd1\x36\x37\x93\xc0\x28\xf9\x49\x5c\xfb\xaa\xc8\x06\xa3\xb0\x90\xcd\xd6\x81\x9d\x0c\x56\x07\x5f\x2e\x98\x55\xfc\x86\xc1\xf7\x4e\x7d\x4d\xbf\x70\x4f\x42\x64\xea\x39\x6d\x31\x2d\x57\x36\xec\x99\x9a\x2d\x76\xc5\x47\x9e\xf0\xcd\xf6\x07\xcb\xf4\xe4\x2c\x36\xf0\x46\xa4\x4e\x5e\xe5\x38\xc6\x40\xa9\xf4\x3d\x37\x36\x66\x10\xf8\x0e\x0e\x45\x1d\xac\xf6\x23\xb8\xba\x69\x1e\xb2\x9d\x14\x4f\x10\x3d\x95\x29\xbc\x70\x72\x3c\xe1\x87\xc5\xb1\xcf\xd1\x05\xb1\x84\xaf\xc9\xf6\x0d\x0b\xc6\x8b\x70\xc3\xc9\x96\x38\xce\xa3\x84\xd1\xbd\xb7\x7f\xf8\x9e\x3c\x40\xb0\xed\x98\x9b\x52\x7b\xf7\x28\x1b\x2a\xff\x0e\xaf\xf2\x94\x3a\x46\xd8\x70\xf8\xd4\xca\x5d\x4e\xc7\x09\x6d\xa1\xef\xa7\x87\x16\xe4\x10\x2c\x4d\x1a\xdd\x3e\xc4\xe5\x10\x32\xf2\x93\x1e\x5f\x1c\x2f\xd2\x4d\xa3\xab\x75\x39\x0c\x09\x6b\x0a\xe3\x64\x0c\x2b\x58\x04\x98\x6b\xf5\x6c\x19\xdd\x4d\x78\xee\xe3\xbb\x50\xe1\x90\x10\xc1\x87\xc3\x75\x5e\xc7\x4e\x13\xc2\x01\x59\x89\x9e\xaf\x0f\x55\x08\xca\xcb\xcc\x4f\x1f\x69\xdc\x48\xa8\x3d\x30\x23\xbf\x7d\xc6\x22\x42\x88\x44\x09\x87\xfd\x4c\x0d\x42\x57\x92\xe1\xf0\xf1\x4d\x2b\x09\x8f\x1c\x46\x45\x92\xb3\x53\x09\xdf\x2f\x0b\xa0\xab\x77\x03\x41\xf0\x71\xa5\x52\xaa\xd9\x74\xc2\x59\xbf\x75\xe1\xbb\x95\x53\x08\xf3\x96\x59\x17\x0b\x89\xcf\x27\xcc\xad\x58\xd3\xb4\x77\x8f\x26\x81\x57\x78\xfe\xe5\xcf\xe6\xbf\x19\x1c\xfb\x41\x92\xfb\x54\x96\xd3\x04\x62\x67\x4f\x6a\x12\x16\xef\x64\x26\xce\x78\xf2\x15\x49\xd6\x08\x89\xd1\x04\x7c\xdb\x2d\x53\x1d\x8e\xf7\x30\xf8\x2e\xed\x27\x72\xf5\xc4\x2f\x06\x62\xbf\x73\xc6\xfe\xfa\x7f\x65\x43\xdd\xc8\xb2\xed\xbf\xd7\xdf\x62\xe0\xd5\xb0\x96\xeb\xd4\xb6\x2c\x42\xd0\xc2\xa8\xbc\x57\xae\xd3\xc6\x37\x6a\xc1\x3f\x63\x2e\xbf\x18\xa4\x9c\x10\xff\x55\x24\xda\xcf\xa0\x3e\x2e\x52\x2f\x91\x7e\xb3\x61\xe7\xb2\xb0\x33\x7b\xba\xca\x8a\xd0\xbe\x5e\x43\x54\x5f\x55\x8b\x90\xbe\x54\xf5\xb4\xe3\xd7\x25\x04\xf5\xe3\x86\x9c\x6f\xb2\x7a\x19\x68\xdb\xc7\xae\x71\x3d\xe1\x48\x28\x77\xe9\x30\x0c\xd7\x11\x26\xac\x78\xaf\x3b\x1c\x90\x39\x9d\xa0\xd8\x51\xda\xe2\x62\xc6\x4b\x98\xde\xf7\xdd\x26\xa7\x73\x33\x61\xa1\x6e\xab\x74\x44\xed\x77\x06\x76\x37\xfd\xa2\xde\x45\x4b\x13\xba\xac\x72\x63\x0e\x67\x08\x13\x8a\x83\x7c\x1f\xbd\xf7\x5a\x4a\x90\xc9\xdb\x6b\x38\xbb\xf2\x3e\x41\x3e\x48\xa6\x6a\xd3\xb3\x1b\x2c\xec\x9f\x91\x5f\x30\xe5\xcd\x43\xc2\x96\x5f\x62\x91\xf3\x02\xd2\x08\x4b\xfb\x6d\xbb\xd6\x3e\x0b\x61\xe1\xf4\x77\xb1\xb1\x80\x18\x2f\x42\x54\xd6\x6b\xb7\x7f\xe2\xd2\x08\xcf\xe6\xec\x4d\x8f\xbb\xf9\x8c\xf0\x57\xaf\xc5\xe8\xc5\x17\x2b\x82\xd9\x17\x4d\x79\x21\x8b\x20\x42\xf4\xc0\xbe\xd6\x6d\x6b\x8a\x99\x09\xd8\xc5\x32\xcc\x9e\xe6\x5f\x0c\x06\x2c\xa6\x47\x9e\xbc\x9a\x4e\xe0\xfe\xd6\xab\x34\xc6\xb1\x8a\x30\xf9\xca\xa1\x45\x51\xd1\xcb\x09\x1a\x85\x33\x22\x74\x2e\x66\x11\xae\xd8\xba\x05\xe7\x7c\x29\x20\xbc\x9c\x79\xf2\xc4\xbd\x71\xd4\xda\x07\xc7\xef\xbb\x3a\xfe\x57\x2d\x1f\x0b\x58\x95\x58\x40\x08\x94\xd9\xee\x7c\x7f\x7c\xf4\x60\x7d\xca\xed\x43\x42\x36\x84\x4b\x23\x8d\x67\xb2\x55\x8e\x11\x4e\xe8\xcb\xb6\x3d\x31\x3f\xc6\x36\x12\xe5\x51\x0a\x69\xb6\xb9\x4a\x48\x77\x4e\xda\xff\xa4\x3e\x83\x50\x50\x37\xf5\xa3\xf2\xe1\x7a\x16\x1c\x16\xa8\xc6\x2d\x34\x4f\x23\x8c\xad\x92\x3e\x2f\xb4\x3e\x9e\xb0\xce\x67\xce\x91\x5b\x22\x8d\x0c\xba\x8e\x4e\xb5\xf8\x52\x23\x4c\x58\xfc\x2e\xd7\x87\x57\x96\x83\x0d\xaa\xdb\x0a\x23\x2b\x5a\x8b\x99\x09\x9c\x4c\xec\xac\xbc\xa0\xfc\x8d\xc1\x42\x9d\x2d\x7d\xf1\xa6\x7c\x84\x75\x5b\x5f\xeb\x1b\xe4\x8a\x11\x9e\x79\xf0\x95\x84\x7d\x12\x26\x58\x56\xda\xf6\x75\x76\x6e\x27\x38\x0c\x7e\x16\x5f\xde\xcc\x45\xf0\x6c\xac\x39\xbe\xe5\x4d\x31\x83\x2a\x73\xd1\x32\xdd\x81\x6c\x82\x48\xf7\xe6\x94\x36\xd5\x24\x16\x36\x49\x2c\x98\xf4\xca\x36\x85\x70\x21\x8d\xa3\xe4\x50\xe0\x02\xc2\xdc\x77\xd7\xc4\x56\xce\x3d\x4d\x98\x31\x35\x3e\xb4\xe7\x8d\x39\xc1\x64\xa7\xb9\xc5\xdf\xd1\xed\x84\x1f\xb6\xe9\x21\x03\x3b\x62\x09\x4d\xe4\xad\xc7\xed\x10\x49\x70\xfe\xd0\x65\xbf\x54\x8d\xd8\xa0\x2e\xb7\xfd\x5c\x89\xf7\x47\x06\xa7\xb5\xac\xde\x7e\xdc\x58\x42\x88\xb8\x12\x63\x74\x6b\x43\x17\x83\xc2\x1f\xb2\x4f\xbb\x6f\x67\x10\x94\x9b\xd5\x13\x6f\x1a\x14\x13\x1a\xca\x1f\x07\xf1\xa9\x08\x13\x36\x3c\xaf\x6d\x8f\xcb\xef\x66\xc0\xcc\x8d\x4f\xbe\x25\x7b\x96\x26\x70\xd6\x3f\x72\x47\xb8\xd4\x3a\x36\xdc\x94\xb5\x19\xa1\x9b\xea\x04\x73\xcb\x5c\xb5\x76\x99\x85\x84\xde\xe9\x61\x9e\xca\x17\x1e\x10\x1e\xb6\xb5\x08\x5b\x9a\x6c\x20\x24\x07\xfa\x5b\x9e\xf6\x9e\x4b\x68\x4a\xff\x3c\x59\x2a\x71\x2f\x0b\x2b\x0d\x4d\xf4\x2c\x0e\x7e\x67\xe0\xec\x5c\x1d\x7c\x96\x4f\x8e\x60\xe3\xa4\x7a\x79\xd8\x7b\x39\x61\xce\x8a\x63\xde\x23\x03\x8f\x08\x8c\xf5\xdc\x0d\xbf\xc6\xc1\xa7\xce\xa3\xa3\x93\x1e\x47\x68\x5e\x16\xee\x75\x5b\x61\x8c\xc1\x8d\xa7\xc7\x23\xeb\x3e\xe8\x13\x6e\x7c\x3b\x28\xa3\xe3\x25\x4d\xc8\x30\x8d\x77\x78\x5d\xbd\x90\x20\xff\x35\xfa\x88\xf3\xfe\x95\x84\x64\x57\xbf\x79\x42\x49\xf3\x09\x57\x52\xa8\x6d\xcc\xe3\x27\x03\xe7\x63\xf7\xca\x79\xf8\x1d\x08\xad\x5c\x77\xa7\x76\xec\xe0\x25\xbc\x6d\x5d\xdc\x7c\x31\xb0\x94\xf0\x6b\x68\xa6\xca\x26\xbd\x32\x42\xb8\x56\x8c\xeb\x09\xcd\x5c\xb6\x32\xe9\x4d\x42\x76\xd2\xb7\x7c\x42\xec\x1a\x83\x98\xb5\x02\x8f\x08\x5f\xe7\x5e\x9e\xea\x3a\xe5\x11\xc1\x61\xfe\xed\xa6\x4f\x85\x89\x2c\x2c\x38\xd4\x35\x2d\x56\xe5\x0e\xc1\x68\x6d\xda\xee\x10\xbb\xef\x0c\xee\xa8\xd7\x5b\xfd\xba\x28\x4f\xb8\xae\x29\x5d\x9a\xc1\x7a\x4e\x50\xe0\x98\x9b\xf6\x2f\xca\x4e\xbf\xf4\xc8\x1c\x47\xad\xf8\x75\xe7\x29\x7e\x37\x09\xd9\x49\xa6\x1b\x86\xb7\x9d\x21\xac\x0e\xe0\x2a\x58\x9b\x58\xcf\x42\xc6\x46\x84\xbe\xa9\x9a\x4f\x90\xa8\xeb\x6e\xb2\x95\x29\x27\x3c\x1a\x9a\x9c\xed\xa0\xa9\x4a\x48\x17\xda\x29\xd7\x93\xbe\x89\x10\x65\x95\x13\xe5\x9d\x19\x4b\xc8\xfd\xe7\xda\xed\x67\xfd\xe7\x09\xa3\xaa\x55\x27\x3f\x45\x9c\x20\x7c\xf9\xde\x7a\xae\xa6\x6e\x7c\x9d\x6b\x30\x76\x88\xcc\xb3\x26\x5c\x6a\x77\x14\xcc\x0d\xaf\x26\x3c\x67\xb6\x68\xbe\xf0\x2d\x26\xc8\xd6\xb5\xce\x0c\xd5\xcb\x26\x54\xcf\x15\xb6\x6c\x0a\x5f\x42\x38\x33\xec\xcc\x31\xcd\xf5\x36\xc1\x36\xe1\xb4\x32\xef\xb3\x38\xc2\x87\xd0\x9d\x4b\xb5\xcd\x4a\x09\x15\x2b\x1a\x5a\x95\xc7\xfc\x09\x29\x49\xde\xbb\x24\xc3\xcf\x10\x8e\x73\x05\x6f\x31\x16\x14\x21\xa8\x0d\x36\xfb\xc9\xf1\x24\x10\x5e\x9f\xf7\xeb\x7b\xbb\xdb\x98\x50\xa1\x60\xd1\xff\x7a\xf1\x1c\x42\x19\xcf\xf1\x0b\x1b\x59\x46\x2c\xf8\x99\x67\x9f\x6c\x58\x52\x47\xf0\xb0\xb9\x79\xe3\xf1\xe6\x97\x84\x9e\x0b\x46\x7d\x07\x13\xaf\x11\x04\x8d\x83\xb2\x71\xcd\x87\xf0\x2e\xfc\xb0\xa3\xb6\xa4\x08\xe1\xb1\xc8\xc1\x79\x15\x49\x43\x0c\xe2\x1b\xa4\x0f\x5e\xe2\x1b\x60\xc7\x75\xab\xe1\xbe\x69\xd3\x08\x31\xef\xb9\x32\xaf\x7d\xed\x61\xb0\xe8\xc3\xe7\xc1\x4f\x89\x4b\x08\xef\x4a\x8d\x66\x2d\x39\x70\x86\x26\xca\xff\x50\xc6\x13\xba\x9d\xa3\x5e\x80\xd0\xec\x3b\xaf\xed\xef\xd3\x79\x04\xf7\xa3\x0f\x78\xe6\x3f\x90\x67\xc3\x3c\xbe\x56\x91\xe5\x33\x04\xd9\x60\xbd\x71\xb1\xbf\x87\x6e\x63\x11\x7c\x1d\x9f\x78\x6a\x0d\xea\x13\xfe\x8c\x89\x7c\xe6\x6e\xa8\x27\xdc\x7e\xc3\x23\xae\x76\xd8\x98\xa0\xf8\xd6\xae\x5e\xb6\xc3\x6d\x7c\x55\xdb\xff\x7e\x95\xbd\x01\xc1\x6f\xec\xc8\x95\xdf\x4b\x0a\x59\x48\x16\xb8\xdb\xbb\x6f\x51\x39\x21\xfa\xce\x2d\x0f\x79\x23\x6e\x42\xc3\xfe\x9c\xf7\xde\x2f\xb8\x08\xaa\xc3\x11\xc7\x96\xbd\x9f\x49\x10\x30\xbb\xa0\xf3\x76\x72\x29\xa1\xb6\x73\x69\x6d\xfb\xf7\x79\x04\x03\xed\x5d\x11\x5d\x23\xcf\x08\xa7\x56\xf2\xcb\x47\x9c\xbc\x49\x70\x31\x5f\x59\xf6\xec\x3b\x17\x61\xf7\xe5\x75\xa2\x93\xa2\xe2\x59\xb0\xef\xa9\xb0\xd0\x5f\xbf\x96\x70\xad\x78\x8d\x6e\xcb\x94\x45\x04\x7d\xd9\x52\x6d\xff\x9a\x39\x84\xdd\xb7\x6a\x9d\xbf\x5e\x7a\x5f\x04\x1e\xe1\xa4\x20\xf1\x15\xd3\x08\xab\x2a\xf9\xc3\xdf\x7f\x5c\x45\x38\x54\x35\x1a\xef\xb5\x25\x96\x10\xf2\xcd\xe1\xa6\xc7\xc9\x83\x84\xe0\x93\x9d\x7c\xd1\x1f\x66\x11\xfc\x07\xea\xbb\x4b\x56\x36\x11\x3c\x2b\x2e\xaf\x31\x98\x53\x41\x08\x5d\xd4\x51\x57\x52\xb0\x95\x50\x19\x3c\xaf\xd0\xf9\xdc\x74\x42\xa0\x78\xf9\x4a\x6e\xaf\xbb\x84\xd8\xd7\xb3\x1e\x6c\x1c\x87\x2f\x7f\x8c\x8b\xe2\xb9\x30\x82\xc3\xa4\xf2\xc3\x6a\x9e\x87\x09\xce\x7b\x37\x5c\xac\x1a\x14\x23\x24\x24\x16\x09\x1e\x35\x64\x11\xba\x54\x2e\xad\xfc\xee\xb7\x99\xa0\x12\xb4\xdb\x72\x5b\x66\x02\xe1\x58\xcb\xb3\xa5\x83\xfc\x5f\x98\x09\xf0\xd1\xc7\x9e\x69\x9a\xb5\x0c\x64\x6e\x3d\xe0\x2d\x0b\xdd\x4e\xc8\x3f\xe5\xd0\xfe\x4d\x40\x93\xd0\xd0\xbe\xc7\x72\x5a\xff\x52\x42\x7d\xa9\xdd\x71\xd6\xed\x83\x84\x5c\xf9\x68\xe3\xac\x3b\x7b\x08\x7a\x2f\xe7\x7a\xc9\xbb\x58\x12\xf6\x66\x3f\xb9\xcd\xfb\xfc\x33\x03\x15\x37\x5b\xa1\x99\x1a\x73\x08\x26\x8f\x04\x0a\x0f\xfb\x6e\x22\xcc\x98\xf3\x68\xa7\x43\x57\x3a\x41\x98\x7f\x41\xf5\x29\x7b\x35\x82\xb4\xc3\xeb\x7d\xf6\x86\xc7\x09\xd1\xe6\xab\x37\xad\xe2\x6d\x23\x2c\x4a\x96\x2f\xb0\x5c\x3a\x9b\xe0\x16\x7f\xab\xdf\x38\x48\x8e\x10\xb1\xb2\xc4\x48\x61\xde\x6b\x42\xa1\xdd\xdf\x56\xf3\x98\x3a\xc2\x12\xf3\x3f\xe2\xc2\xfc\xaf\xd9\x46\xab\xfa\xff\x76\xbe\x7b\x9d\x4b\x10\x8f\x3d\x15\xae\xdd\x30\x83\xd0\x11\x98\xb1\x93\xc7\x6a\x25\x61\xc7\x8e\xb3\xc6\x5e\x2f\x62\x08\x1f\xce\x7f\xd9\x56\xe2\x5c\x48\x28\xb5\x92\xb5\x95\x7b\x5d\x48\xc8\x0a\xdd\x1d\xec\x5e\x67\x4e\x68\x5c\x67\x7a\xd7\xeb\xb1\x15\xe1\x5e\xf1\xfb\x8d\x8d\x8d\xe2\x6c\x70\xd8\x7a\x8f\x55\xf3\x16\x0c\x5e\xba\xbf\x0d\x69\x9b\x9d\x46\x10\x5a\xa4\x75\x61\xaf\x39\x11\x4e\x86\x45\xc9\xcc\x8e\x98\x44\xd8\xda\x75\xec\xb6\xfe\xac\xbb\x84\x9c\x54\xb3\x4a\xaf\x29\xf7\xfe\x0b\x41\xeb\x4d\x8c\x7f\xcc\xbc\x47\x58\xfc\x69\x96\x7b\xf1\x8c\x7a\x16\x76\x1d\x52\x3b\x71\x87\x09\x24\x18\xbc\x76\xd2\x57\xf4\x8f\x25\xe4\xcd\x6c\xd2\x77\xd5\xda\x45\x98\x1c\xec\xf8\x73\x8e\x9a\x2a\x21\xa2\x53\xd7\xfb\xb5\x8f\x24\x21\xc3\x7e\xda\x90\x6c\x65\x3c\x1b\x22\x2c\x99\xc7\xba\xac\x72\x82\xb2\xe4\xe3\x87\xeb\x6b\xac\x08\x3f\x35\xb4\x1e\xd9\xad\x3a\xcf\x56\x36\x3e\x68\x3e\x25\xb7\x86\x9f\xd0\xe3\xf2\x79\x4b\xf7\x7e\x79\xc2\x97\x82\xe4\xc4\xf7\x79\x59\x84\x04\xa7\xd4\xd6\x85\xe3\x4f\x63\xbb\x2a\x7b\xc9\xc8\xa5\x4f\x09\x7b\xd7\xc7\xbc\x92\x8b\xab\x21\xac\x28\xaf\x9a\x26\x3f\x8e\x8e\x50\xeb\x8f\xc2\xcf\x4b\x08\xea\x2d\x6e\x63\xff\x62\xd1\xa8\x41\x97\x4b\x7e\x09\x41\xc7\x85\xf7\xfc\xbf\x65\xe0\x89\xea\xdd\x96\xf1\x72\x51\xff\xf2\xaf\xd7\x51\x05\x84\x05\x4e\xfa\x2e\xba\xe9\x41\x6c\x50\x34\xa8\x8b\xfa\xcb\x23\xc2\x86\x3b\x7e\x57\x2b\x74\x2a\x4d\x09\x33\xa6\x35\xfb\x71\xae\x3c\xcd\x86\xa8\xc3\x3f\xb5\x95\x6f\xc6\x12\x7e\x08\x32\xd9\xde\xe3\xaf\x8a\xe6\xf3\x6a\x18\xc7\x1a\x27\x9a\x80\x92\x6c\x86\xec\xef\x2f\xf2\x84\x57\x8e\x33\x9e\x5f\xf7\x16\x22\x70\x76\xfc\xbd\x6a\x78\x61\x0b\xa1\x49\xba\x5b\xe6\xf3\xcf\x5d\x84\xc7\x06\x0d\x91\x7c\x36\x45\x84\xc6\xde\xeb\x65\x8d\x16\x45\x04\xa9\x0d\xea\x75\x65\x9d\x93\x09\x46\x26\x49\x5b\x3d\x8b\xc2\x08\x37\x86\xae\xad\x1f\x3d\xeb\x42\xc8\x3b\x31\x3b\x6d\x8a\x62\x08\x41\xac\x9e\x57\xcd\xaf\x34\x91\x41\xf8\xe6\x63\x7e\x72\xcf\xb2\x09\x3a\x77\xb2\x1e\x4d\x3d\x93\x4d\x78\x7a\x6f\xb3\xd1\xbf\xe5\x7e\xdb\x8a\xaa\xb8\x33\x25\x2c\x84\x97\xfc\x79\x62\x9a\x2f\x4c\x10\xaf\xf2\xbc\x38\x93\xab\x8e\xf0\x56\xdc\x33\x91\x77\x1c\x61\x33\xd7\xf7\x9f\x5a\xd6\x4c\x78\x5c\x24\x6b\x6d\x18\x5c\x4f\xe8\x98\x77\xee\xaa\x1d\x47\x14\x21\x64\x99\xa1\x55\xab\x40\x2e\x21\xf4\x87\x43\xba\xd5\x79\x29\x42\x77\xec\xf9\xcd\x89\xbb\x58\x6c\xb0\x74\xec\x2b\x89\x71\xda\x43\x68\x9b\xca\xb9\x47\xf1\xa8\x30\xc1\xe7\xb9\x5e\xcc\x18\xff\x73\xc2\xf9\x69\x5e\xb9\x7f\xc7\xf1\xff\xca\x88\x21\x2c\x4b\x26\x15\x13\x78\xaa\x2d\x98\x9f\xfe\x52\x84\x6d\x75\x1c\x9c\x1c\xe9\x87\x09\x0d\x91\xa9\x5c\x4b\x54\x59\x6c\x90\x33\x97\x0c\x76\x3b\x26\xcc\x86\x95\xd7\x93\x7c\x54\x4c\xf3\xd8\x60\xd0\xb8\x53\x69\xe3\x38\x22\x44\x1e\x0e\xab\x14\x6f\x24\x1c\xf7\x27\x95\x23\xe3\xbf\xe9\xe4\x0d\x7f\x06\x38\x67\xd7\x12\x6c\xde\x79\x79\x71\x8d\xc3\x6a\x5b\xa9\xd8\xa2\xf4\x27\x84\x49\xd7\x32\xa6\xfd\x35\x28\x20\x84\x9c\x27\xd1\xb5\xe3\x57\x16\xef\xf8\x7e\xce\x83\x25\x47\xb0\x2c\x39\xba\x35\xaf\xed\x11\x1b\x44\xdf\x73\x54\x97\x5f\xdd\x40\x90\x5d\xb8\xfe\x68\x6d\x61\x31\xa1\xe4\xc7\xfb\x20\xb3\xea\x7b\x84\x8f\x89\x1b\xb4\xcd\xb3\x32\x08\xda\x3d\xd7\x36\x0c\x3f\xb9\x47\xb0\x7a\xba\xff\x2d\xa7\x40\x18\x61\xf7\xde\x9c\xc7\xde\x39\x41\x84\x56\x9b\xc8\x69\x11\x4f\xce\x13\xde\xe5\x1c\x9a\xff\x5a\x5e\x86\xed\xcc\xe3\x11\xfb\x4d\xee\x9d\xcf\x19\x9c\xbe\x21\x35\xff\xf4\xad\x7f\x68\x02\x96\xb3\x0f\xaf\xd0\x59\x3f\x9f\xf0\xe3\xe9\x8e\x64\xd1\x94\xb7\x45\xa0\xe3\x72\x42\x8b\xd4\xc2\x59\x13\xe0\x34\xce\xd5\xce\x69\x37\x25\xdc\x8f\x5b\x71\xa8\x46\x59\x9c\xb0\xcd\x4a\x67\x8e\xd0\xfc\x40\x16\x34\xa7\x18\xf1\x5a\x2a\x2c\x24\x94\x2b\x2c\x97\x19\x7b\xce\x22\x98\x4a\x08\x71\x5a\x68\x49\x12\xbc\x5d\xe6\xad\x62\xb6\xde\x27\xbc\xcb\x5f\xad\xfa\x2f\xac\x43\xca\x8a\x46\xda\xf2\x58\x38\x5f\xf8\xcd\xe1\xf6\xbb\x07\x84\x17\xbf\xda\x19\xbd\x0f\xd3\x08\xb3\x3a\xd7\x44\x5c\x49\xdd\xcc\x86\x0d\xa5\xc9\xa2\x1a\x17\x46\x19\x3c\x37\x77\x3a\x34\xb2\xdb\x8f\x30\xf4\x3c\xe6\xeb\x35\xe7\x50\xc2\x21\x8e\x82\x31\x47\xc1\x60\x82\xb5\x86\x9d\xd7\x27\x65\x0e\xc2\x9e\x8f\xbe\xb2\xdc\xdf\xa6\xfd\x9f\x90\x4a\x38\x5f\xb0\xfb\xdf\xff\x18\xaa\xef\xf4\xa6\x27\x77\x19\x61\xe8\xaa\x88\xb9\xd8\xeb\x21\x06\x17\xb8\x04\xb5\xe4\x5d\x97\x12\xc2\x0f\xcf\xb8\x3b\x62\x5f\xc7\xa0\xae\xdc\x8f\xdb\xea\x94\x00\xa1\x54\x65\xfe\xc6\xca\xa6\x15\x34\x51\xfe\x77\x1d\x03\xd3\xb0\xfc\xe2\x15\x6a\x04\xc3\x3f\x2d\x8b\x94\xaf\x2f\x20\x54\x88\x86\x35\x47\xbd\xf8\xc0\xe0\xf8\x60\x31\xec\x3a\xd4\x08\xa5\x5d\x7b\xae\xfc\xf1\xb1\x26\x48\x3c\x59\x12\x79\x64\xef\x31\xc2\xa1\x7e\x7e\xdf\xf2\x7e\x35\xc2\x8a\xc0\x33\x3a\x9e\x77\x57\x10\x72\xa6\x9a\xb3\xb6\xc9\x6c\x26\x6c\xcc\x32\xaa\x0e\xae\xd7\x20\x38\xbb\x2b\xb4\xdd\x3e\x2a\x46\x50\xaf\x96\xdc\x1b\xae\x74\x8d\x0d\xde\x2e\xd2\x25\xa3\xea\x5c\x84\xb2\x65\x52\xfb\xae\x1a\xaa\x11\x34\xa6\x9c\x14\x55\xac\x6f\x65\xf0\x5d\xd7\x43\x37\x20\xd6\x89\x85\x35\xb7\xea\x55\xd3\xb5\x63\x09\xe2\x81\xaf\xff\x14\x9e\x62\x11\x7a\xed\x96\x39\xbb\xed\xda\x4b\xb8\x7f\x51\xa8\xb4\xee\xde\x5a\x42\x16\xdf\xb3\xcd\x6d\x2d\x5d\x0c\x2e\xf0\x51\x7d\x46\xaf\x13\x21\x3e\x2a\x45\x74\xc3\x21\x43\xc2\xe1\x5b\x3c\x3a\xf6\x0d\xbb\x08\x77\xc7\x26\xbd\x14\x94\xd1\x22\xa8\x78\x7b\x48\x2e\x4e\xe1\x24\x28\xf8\x15\xa9\x85\x34\x8d\x30\x38\xb8\xa3\x54\x5e\x7c\xd6\x4c\x9a\xc0\xeb\x1d\x61\xe9\xdf\x2d\xb8\xd9\xb0\x38\xbd\x6a\x45\x1c\xf7\x42\x82\x8b\xd1\x26\xed\x63\x29\x29\x04\xe7\x15\xa3\x9c\xa9\xf1\x7b\x08\x0d\xfd\x7b\x94\x8f\x69\xcf\x22\x3c\xda\xdd\x49\x52\x67\xb7\x13\x0a\x2c\x77\xef\xea\x5b\x13\xce\x56\x2c\xf7\xad\xb8\xa2\x3f\xd4\xc9\x40\xce\x8b\xaf\xf4\x26\x1e\x10\xb6\x5f\x3a\xec\x36\x3f\xf5\x09\x0b\xb9\x2e\x73\x16\xfc\x8b\xc2\xbb\x3b\xab\x16\x94\x06\x10\x36\x06\x29\xad\x2f\x9a\x9c\xc8\xc2\x9f\xd1\xa3\x07\x14\x6f\xfc\x43\x13\x23\xd5\x19\x97\xd3\xcf\x57\xf3\x12\x96\xc8\x3d\xde\x79\x2e\x63\x8c\x41\xc3\x03\x65\xab\xe6\x3d\x11\x84\x96\xed\x15\x3c\x31\x3d\x0c\x61\x4d\xda\xf3\xea\x0e\xef\x19\x84\xf2\xf7\xbd\xc2\x9f\xca\x62\x08\x61\x47\x73\xa3\xb8\x75\xfd\x08\xe7\x1c\x9e\xdf\x37\xff\xe7\x20\x41\xb6\x41\x3a\x42\x39\xf3\x18\x81\xe7\xe9\x65\xf1\x6f\x22\xf7\x09\x6b\xa2\x62\xd2\x97\x18\x1a\xb1\x41\x46\x6a\xe5\x06\x81\x38\x39\xc2\x6b\xc5\xfc\xc1\x3d\x0a\x42\x84\xac\x66\x9e\x0d\x97\x67\x69\x10\x2c\xde\xac\xd4\x57\x7b\x1c\x46\xb0\x5e\xae\x4e\x2a\xb3\x0b\x59\x70\x34\x9d\xc9\x75\x25\x77\x17\xe1\x81\x59\xc9\xa6\x4b\xdc\x5f\x19\xf0\x3d\x5d\x7d\xd3\xbc\x5a\x8a\xc0\x53\x75\xd7\xf3\x56\xf0\x93\x22\x88\x5f\xad\x14\x4c\xfb\xda\xcd\x60\xe1\xd1\x31\xe9\xa7\x8d\x59\x0c\xbc\x77\xda\x44\xc8\x5f\x4b\xa7\xff\x0b\x5d\xda\xca\xe9\xbd\x3e\x56\x84\x77\x19\xc9\xe2\xf6\x8f\x0f\xb0\x26\xca\x93\xaa\x2b\x95\x9f\x6f\x1d\x61\x3b\x73\x60\xd6\x52\x31\xcb\x4b\xfb\x09\x1f\x8c\xec\x17\x2b\xac\xd9\x4c\xb0\x37\xdb\x22\x2a\xe6\x24\x46\xc8\x4a\x54\x58\xeb\xa5\x52\xc0\x86\x77\xc6\xd7\xf2\xdf\x6f\x49\x22\xa8\x97\x06\x5d\xf8\xb7\x8c\xad\x98\x93\x97\x6f\x9b\x48\x98\x1f\xef\xcd\x97\xdd\x76\x96\x90\x2c\xb5\x66\x96\xe5\xd7\x31\x06\x26\x15\xa1\x93\xe3\x97\x3e\x24\x5c\x50\x3c\xf0\x32\x6e\x1c\x92\x27\x06\xf8\xde\x86\x67\xb0\x90\xaf\x91\xf9\x5c\xb9\x32\x81\xd0\x69\x6a\x71\x24\xc3\xc7\x91\x60\xfd\xf7\xc1\xb7\xae\xbc\x99\x84\xc4\xba\x84\xcf\x4a\x3d\xcb\x08\x6f\xf7\xa6\x76\xce\x53\x76\x22\x58\x17\xb7\xae\xe0\xf7\xbd\x4d\x98\x73\xf9\xc8\xb2\xac\xf1\x2d\xe3\x27\x6f\xfb\xf5\x20\xc3\x25\x04\xd1\xe0\x27\x4d\x09\xd3\xb2\x09\x4b\x9b\x3c\xf9\x67\x3d\xd5\x20\xdc\xe9\x1e\x68\xf8\xcd\x65\x40\xe8\x0f\x28\x82\xf9\xa3\x42\x06\xbd\xbe\xa9\x1c\xa2\x2a\x87\x09\x1e\x32\xf4\x32\x4a\x3b\x9a\x30\x56\xb0\x51\xbd\xdf\x4d\x96\x0d\x41\x2c\x91\x73\x3b\x5e\x8c\x30\x70\x7e\xbb\xf8\x91\x90\xff\x6c\xc2\x35\xce\x38\x21\xed\xa0\xe9\x04\x26\x74\x53\x6c\xcf\xca\x43\x84\x47\xbd\xab\xb9\xb8\x8e\xf9\xb1\xd0\xce\xdf\xb4\x66\x6f\x01\x07\x41\x54\xfd\x9f\x3f\x95\x6a\x3b\x08\xcb\x7f\x0d\x69\x66\xc4\xcc\x20\x54\x49\x3e\xff\xd2\xd0\xf9\xbe\x08\x5a\x2f\x7e\xcd\xdd\x28\xa1\x4e\xf8\xda\xdb\x32\xf0\xd5\x43\x8e\xd0\xb5\x7c\xcf\x6a\x63\x9e\x5b\x84\x6c\x03\x2e\x89\xd6\xd8\x10\xc2\xe4\x8d\x8a\x1d\x7f\xd7\xfa\x8c\x3f\xd5\xcf\x87\x73\x1f\x3c\x4b\x18\xc9\x7a\xa0\x96\xfc\x21\x94\xd0\x7e\x2c\xcd\xdd\x44\xc4\x97\x10\x27\x19\x6d\xeb\xde\xe3\x4d\x78\xf0\x5b\xfd\xa6\xe4\xc3\x3d\x84\x20\x2b\x2f\xfa\x54\x58\xc2\x86\xc9\xde\x02\x2a\x36\x59\x25\x04\xd6\x73\x7d\x81\x7f\xcb\xb3\x78\xce\xb9\xbf\x94\x96\x13\x1c\x84\xfa\xf6\xcf\xa8\xd1\x25\x7c\x6e\x32\xc8\x3a\x5c\xbd\x88\xe0\xe8\xff\xd4\xfa\x65\x75\x2e\x61\xde\xa7\x35\xe7\x0f\x8d\xdc\x26\xe4\xde\x28\x19\xfe\x39\xc7\x85\xd0\xe3\xf6\x57\xb2\x69\x78\x90\x81\xd0\xe4\x24\xb7\xdb\x9f\xbe\x31\x23\x2e\x0f\x22\xd6\xfa\x0b\x10\xfa\x87\x87\x78\xcb\xfd\x14\xd9\x70\xa4\x66\xfe\x1d\x95\x8c\x05\x04\xe3\x78\x15\xbf\xc9\xa7\xe2\xd8\x70\xa0\x6a\x9f\xc7\xca\x79\x5e\x6c\xb8\x7a\x7e\xe5\xe6\x77\x21\x1f\x19\x9c\x1d\x28\x10\xa9\xbb\xff\x93\xc1\x52\xe9\x58\xbd\xdb\xc7\x55\x09\x87\xec\x25\x2f\x2f\x7e\x58\x4f\x60\x78\x9a\x6a\x6c\x45\xdb\x08\x8e\xda\x83\x09\x47\xbe\xbe\x24\xe8\xcc\x15\xeb\x7b\xb4\xaa\x84\xe0\x76\x3d\x7a\x6e\xd8\x81\x0e\xc2\xe2\xd7\xf1\x9e\x3e\x46\xe1\x04\x21\x85\x34\x85\x23\x75\xa7\x09\xae\x9e\xdd\x21\x27\x3a\x7c\x08\x3e\x4a\x07\xd2\x75\x16\x9d\x61\x21\xf8\x97\x4a\xc4\xee\x05\xcf\x09\xa6\xcc\x06\xf1\x8e\xc4\x14\xc2\xe9\x7f\x7e\xa9\xe4\xfb\x3d\x21\xcc\x9a\xc2\xa8\x64\x72\x55\x11\xb8\xaf\x56\xec\x0c\xea\xbe\x4c\xd0\x34\x1d\xf9\xb1\x51\xeb\x2c\xa1\x58\xac\x53\x80\xa3\xad\x83\xe0\xb9\xf6\xc5\xd6\x55\xdc\x19\x84\xde\xd3\x65\x59\x6b\x84\xea\x08\xce\xb6\x1f\xbc\xce\x0d\x3e\x21\x9c\x89\x7f\x9e\xf3\xeb\x45\x16\xe1\xc2\x86\xd1\xc1\x4c\xd7\x0c\x42\x90\xb3\xcc\x14\x55\xb9\xeb\x04\x8b\x69\x8d\xa6\x02\x46\xa9\x84\x59\x87\x39\xcd\xee\x84\x7a\x12\x2e\x57\xb4\xd4\x5f\x3e\x19\x4b\x88\xbb\xd8\x70\x69\x6e\xbf\x0d\x1b\x60\xb0\x66\xd9\xcc\x55\xed\x45\xf0\x91\x4f\x3c\x33\x37\xcf\x92\x20\xba\x41\x4c\x76\x59\xaa\x06\xa1\xb1\xed\x94\xf2\xb3\x14\x05\x02\xf7\xcc\x77\xbf\x5f\xba\xfe\x61\xf0\xb4\x47\x3b\xf8\x5a\xf6\x62\xc2\x0e\xdd\x5b\x3e\x09\xb7\x35\x69\x64\x89\x62\x57\xf7\x2d\x31\x82\x93\x9b\x59\xc8\x0d\x1b\x2e\x82\x93\xf6\x0d\xdd\x23\x7c\x4b\x08\x26\x73\x4d\x1b\xb8\x4f\x48\x12\x76\xea\x7a\xe6\x48\xc6\xe6\x11\x8e\x56\x87\x89\x0f\x7a\x69\x12\x06\xaf\x9b\x88\xfd\xf3\xcf\x0d\xc2\xcc\xed\x82\xff\x88\x9c\x79\x4c\x50\x50\xdb\x3d\xc3\x6b\xbc\x88\xaf\x6f\x15\x3a\xec\xed\x41\x28\xf9\x13\x24\x24\x3c\xe7\x1e\xa1\xee\x79\x42\x5b\x4d\x7b\x0e\xc1\xd0\xc4\xea\x7b\xc3\x13\x1d\xc2\x25\xbb\xb1\x75\xa1\x79\x7f\x18\x6c\xf7\x3f\xb2\xe2\xa3\xef\x75\xfa\x0f\xec\xed\xf4\x79\xac\x5a\xb2\x8a\x0d\xff\xd8\x49\x1a\xae\x39\xbc\x8c\xf0\x75\xda\xc7\x0a\xfb\x4d\x43\x0c\x2e\xeb\x1d\x35\x0f\xf1\xea\x2f\x02\x04\xaf\xff\xbe\xc7\x67\x4d\xff\x01\xdb\xcf\x73\x7b\x78\x1b\x06\x8a\x20\x95\x35\x66\x10\xdc\xdb\x45\xf0\xf9\x67\xb0\xdb\xe7\x4f\x32\x61\xfa\x3f\xaf\x62\xde\x2f\x4e\x22\xd8\xae\xe1\x39\x98\xfc\xbc\x9e\x30\xf6\xe8\x4f\xed\x4a\xa5\x33\x84\x55\x7f\x3f\x1e\xf0\xb2\x97\x26\x18\xcc\xbd\xde\xfd\x63\xbb\x23\xe1\xe8\x89\x29\x37\x27\x7d\xaa\x23\x2c\xf0\x96\xda\x1e\xea\x93\x49\x90\xd2\x6d\x51\xcc\x11\x66\xd1\xc8\x54\x15\xf5\x95\x1e\x0d\x84\x63\x53\xa7\xa7\xdc\x17\x09\x23\xc8\x26\x3d\x16\x7b\xc6\x1f\x46\xd0\x2f\x09\x15\x50\xe7\x0c\x23\x2c\x68\xba\x1a\x64\xfc\x20\x80\xc0\xed\x7b\x3f\xbc\xa2\x9f\x45\x78\xe1\x61\x64\xdd\x33\x35\x85\xa0\xe1\xa2\xd1\x7d\xdd\xd7\x9d\xd0\x9b\x28\x79\x47\xd6\xe8\x1a\x61\x30\x28\xf8\x83\x9f\x41\x24\x61\xf1\x12\xdf\x38\x8e\x1c\x77\xc2\xa7\x87\xe6\xbc\x4f\xc7\xef\x29\xe1\xef\x6e\xa5\xf3\xb6\xbb\x10\xf8\x0b\x86\xae\x7d\x7d\xe0\xcc\x56\x42\xfe\x34\x24\xee\xb0\xb1\x23\xc8\x67\x3a\xeb\xe9\xe5\xdb\xb1\x95\x39\x43\xf7\x03\xee\x84\x72\x12\xda\xf5\xc3\x5b\xdc\x57\xe6\x11\x22\x77\x79\x9c\x8e\xda\xb7\x92\x60\x30\x27\x3a\x6a\xe8\xad\x07\x61\x79\xcd\xdf\x94\xa7\xc2\xae\x84\xd1\xb6\xf0\x57\x7b\xc5\xfa\x19\x98\x3d\xd8\x25\x9e\x1e\xf7\x8b\x0d\x9c\x66\xa3\x9f\x43\x0f\xcc\x26\xdc\xbc\x91\xa0\xd6\xee\x77\x80\x90\xfb\xd5\xc0\xe9\xfb\xdc\x99\x84\xf9\xaa\x73\x14\xaf\x2f\xbb\x4d\x10\xb0\xcc\xcf\x16\xf1\x48\x27\xf4\x7e\x4b\xb8\x51\xb1\xfc\x22\x1b\x0c\x07\x42\xa6\x1f\x2a\x2c\x27\xcc\xab\x8b\xee\x1d\x79\x1b\x42\xd8\x15\xb8\xc3\xb2\xf6\x58\x20\xe1\xe2\xf5\x30\x6d\xbf\xe7\x01\x84\xa9\x31\x3b\x3c\x95\xd6\x5f\x60\x81\x27\xe8\xf7\xcb\xed\x1f\xfd\x08\x57\x24\x3e\x6e\x9d\xc4\x1b\x4e\x68\xf9\x3c\xd0\x79\x61\xee\x2e\xc2\x0f\x8f\xcb\xae\x1f\xee\x0e\x32\xd0\xd8\xb7\x65\x61\xad\xee\x03\x02\x7f\x5c\x4b\xcc\xf1\xa3\xf2\x04\x45\x56\xd5\x89\x41\x97\x22\x42\xa8\xfd\x54\x6d\xcb\xe3\x45\x84\xc9\x7b\xae\xec\x9e\x73\xad\x84\x35\x31\x52\x58\xf7\x6a\x88\xa7\x2e\x98\x50\xdb\x9f\x63\x6f\x76\xf4\x14\xa1\xab\x78\x72\xe6\xa7\x13\x59\x04\xa9\x8e\x62\xeb\x8b\xee\x59\x84\x34\x87\x36\x1b\xc3\xa3\x81\x04\xb3\xb7\xf5\x82\x5d\xcf\x8a\x08\xbc\x37\x0f\x85\x5a\x3d\x29\x22\x94\xd8\xa8\x0a\x04\x5e\x4f\x27\x28\x8c\x5d\x73\xd0\xba\xe8\x41\x30\x0a\x50\x53\xfd\x2a\x9f\x4f\x50\x8e\x50\xbc\x6c\x39\xfb\x32\x0b\x17\x4f\xbf\x8c\x0d\xb0\x73\xa6\x09\x94\x47\x19\xdc\x0b\xdb\xe1\x4c\x68\xdb\x78\x6c\xb5\xef\x9b\x29\x84\xc7\x5e\xad\x87\xa5\xe2\x2e\x13\xc2\xac\x85\x16\x4b\x35\xd5\x12\x7e\xab\xb6\x5e\x65\x69\x5e\x21\x7c\xe6\xda\xad\x6f\xf3\x34\x94\xf0\xfe\xea\x76\xff\x64\xa9\x4b\x84\xca\x8c\x1b\x91\x3a\xd7\x2f\x13\x84\xb8\xb7\x44\x0a\xcf\x7a\x42\x08\x58\xbc\xc5\xb7\x7e\x4a\x25\x61\xd1\x1d\xff\xdc\x65\x8a\x71\x84\x8b\xfe\xcd\xb5\xc9\x9b\x64\x09\x57\x1f\xb5\xef\xbd\x17\x68\x4d\x70\x78\x9d\xf2\x7d\x7e\xbf\x31\x81\xbf\x27\xe1\x10\x3c\x9f\x33\xe0\xde\xa0\xc2\xf3\x69\xbd\x03\x4d\xe0\x9f\x25\x0b\x7a\xb2\xfc\x16\xb2\xa1\x64\xc9\x46\x93\xb9\x56\xf3\x09\x0b\x92\x0b\x97\x0d\xb6\x2b\x11\xd4\x97\x68\x97\xe8\x4a\xa5\x10\xe6\x16\x0d\xac\x3e\x20\xe8\x40\x58\x96\x99\xb7\xe4\x21\x8b\x9f\x20\xaf\x2c\xd3\x16\x35\x1c\x43\xd0\xe2\xf3\x90\x95\x65\xf2\x08\xa5\x6d\xfb\x4d\xa7\x5f\xb9\xc1\x86\x49\xf9\xb5\xab\xbc\x34\x0e\x10\xec\x37\x7d\x2c\xde\xef\x58\xc9\xc2\x05\x5e\x9b\xcb\x17\xbf\xd4\x10\xcc\x46\xe7\x56\xea\xdd\xa8\x24\x88\xdc\x1a\x7d\x35\x29\xf2\x0a\x61\x68\x95\x49\x74\x9f\xd3\x5f\x06\x9e\x42\x4d\x1b\x95\x4a\x96\x12\xc6\x3c\xd4\xaa\x03\xe7\xd6\x32\x70\xdf\x5d\xef\xad\x98\xf3\x97\x81\x60\x7e\xe7\x9f\x60\x8e\x45\x34\x01\xa1\x8d\x94\xd3\x1e\xfd\x9e\x41\x97\x9a\xd7\xea\x2b\xbf\xa4\x09\xef\xde\x3a\x9e\x38\xe1\x73\x9f\x50\x54\x99\xce\x2d\xdf\xbf\x94\x70\xde\xd6\x81\x39\x21\x96\x46\xb8\xbe\xba\x69\x47\xce\x1b\x29\xc2\x8e\x67\xbf\xdd\x67\x7f\x8f\x26\x74\x49\xe7\xcf\x30\xfa\x6d\x49\x18\x1b\xfb\x67\xbf\x63\x6e\x2a\x0b\xcf\xbc\xa5\x43\xea\x43\xac\x08\xdf\x8c\x9f\xff\xb3\xe8\xb9\x12\x21\x62\xb2\xd5\xe6\xea\x8a\xd3\x84\x8c\x81\xcb\xd5\x3b\x9e\x65\x10\xd2\x8c\x5f\xed\x30\x4a\x39\xcd\xc2\xb1\xe1\x14\x5d\x9e\x9e\x2d\x84\x0b\xab\xdd\x2f\x97\x2c\x95\x27\x5c\x63\xe6\x70\x08\x8a\x84\x12\x6e\x4a\xbf\x8e\x14\x57\x90\x20\xf0\xec\x0e\x2b\xfa\x13\xeb\xc1\x82\xc8\xa6\x52\x2d\xdd\x64\x1e\xc2\x64\x67\xa3\xd6\x60\xb7\x87\x0c\x6e\x98\x7d\x3b\x7e\x67\xa1\x10\xb1\xe1\x61\x45\x88\x2b\x77\x12\x41\xd7\x34\xce\x96\x57\x29\x9b\xd0\x39\xcc\xb3\xdb\x75\xca\x7e\x82\x6e\xc5\xee\xbf\x27\xad\x54\x08\x9a\xa7\xa5\x1c\x4c\x7a\x6f\xb2\xe1\x72\x6a\x29\xa9\xf0\x9d\x27\xcc\xea\x3f\xd2\x7a\x57\x86\x45\x78\xe3\xb1\x42\xff\xed\xa2\x54\x42\x93\xda\x14\xeb\xf0\xbf\xa5\x04\xa7\x18\xfb\xd7\x05\xed\x53\x08\xc3\x6d\x2b\x8f\xb2\x92\x06\x98\x09\xd4\x86\xbe\xe3\xb3\xf5\xba\xc2\x42\x94\xce\x3b\x57\x3f\xef\x18\xc2\x6e\x3f\xdf\x55\xef\xe5\xbe\xb1\xa0\x7a\xfa\xd9\xee\xa1\x88\x18\xc2\x1b\x25\xb1\xdf\x2e\x2d\xe2\x84\x37\xa1\xd9\xc2\x82\xb1\x26\x6c\xb8\xe1\x6a\xaa\xe6\x6d\xb0\x99\xb0\xc7\x29\xe1\x6c\x41\xb9\x27\x21\xcb\x65\x72\xcb\x74\x55\x13\x36\x9c\xab\x2a\xf9\x95\xa8\x5a\x53\x84\x97\x6e\xeb\x7f\x3d\xe0\xd2\x24\xe8\x55\xbf\xe4\x11\xd3\xe6\x26\xe4\xdb\x46\xd7\x58\x39\x47\x10\x42\x12\x97\xea\x5c\x90\x2b\x63\x8d\x7c\x29\x6a\x97\xae\x70\xa2\xff\xf7\x13\x7b\x43\x5e\x33\x93\x6b\x8f\x13\x16\x7a\xfd\xd8\xbb\x6f\x53\x32\x0b\x75\x16\x5b\x4f\x16\x96\x24\x11\x2e\xee\x0e\x70\x5f\xc3\x08\x10\x76\x8d\x86\xbf\x56\x6f\x7d\x45\x58\xf0\x6b\x95\x4f\x5e\x64\x15\x8d\x74\x9d\x19\x7a\x59\xd9\x46\x98\xbf\x53\x5e\xec\xe9\xd0\x5d\x16\x04\xca\xe7\xd6\xa8\x6f\x2b\x23\x0c\x4a\x97\xd8\xa7\x55\x05\x11\x52\x5e\x0b\x0d\x99\x5e\x0a\x60\x43\xf0\xcb\xf0\x5d\xbb\xc7\xb1\xc0\x61\xfd\x64\xd4\x06\x10\x5c\xeb\xf2\xe0\x95\x9b\x4e\x58\x71\xfa\xfc\x95\x67\x12\x2e\x84\x75\xdf\x7b\x4f\x75\x35\xbf\x22\xcc\xfb\x76\xac\xe3\xed\x38\x8e\x1c\x28\xd5\xfb\xb7\x84\x25\xdd\x51\x5c\x5f\xd2\x4c\xe8\xdc\x6a\xc0\xbb\x3a\xca\x9c\x50\x96\x50\x61\x28\x23\xf5\x90\x85\xa9\x89\xf9\x2d\xaf\x2e\x15\x11\x9c\xfd\x6d\xbd\xfe\xff\xe8\x15\xfd\x59\x5b\x79\x55\x8d\x20\xe6\x1a\x55\x98\xd6\xdb\x4c\xf8\xd4\x2b\x6a\xbc\x72\x69\x3a\x61\xdf\x4d\xbe\x68\xe1\xa5\x07\x09\xc7\xa5\x9b\x6b\xef\xad\x3d\x48\x38\x1c\x97\xfb\x2c\x41\xdd\x86\x6d\x34\x29\xf2\x88\xd0\xc6\xa5\x0c\xa1\xe1\x73\xe0\xb4\x55\x89\xe2\x04\xa9\x32\xa3\x70\x09\xe1\x05\x04\xfe\xe5\xcf\xf2\x36\x2a\xeb\x12\x82\x62\x9e\x4f\x1f\x6c\x54\x65\xc3\xa8\xf6\xd9\x87\xa6\x2e\x0a\x84\xcf\xf3\x36\x66\x7c\x36\xd1\x63\x2b\xff\xc3\xd1\xb9\xa7\xec\xea\xfb\x5b\x19\xf4\x2d\x48\x5a\xbb\xbb\x9a\x93\xad\x3c\x11\x5b\x28\xed\xc7\xd3\x56\x84\xfb\x2a\x69\xb3\x83\xce\xe7\x11\x8c\x2f\x4a\x05\x05\x8e\xe3\x67\x57\xda\xdf\x80\x71\xec\x3d\xd5\xe1\x65\x28\xea\xc5\x86\x23\x3b\x73\x56\xb8\x96\x98\x10\xfa\x58\x7c\xf3\xe5\x4e\x6c\x25\xf0\x17\x15\xcd\xb9\xb3\x91\x8f\x60\x14\xd5\x1e\xa6\x55\xf3\x95\xc1\x62\x1d\xb3\xb9\xab\x6d\x7c\x08\x36\x5a\xaf\x7f\xac\xd0\xd1\x63\x83\x54\xb6\x1c\x77\x61\xf0\x5d\x42\x9f\xfd\xa0\xac\xe5\xe1\xbb\x84\x0e\xcf\xf6\x8f\xfd\xb8\xc5\x42\x4c\xb4\xf2\x2c\x91\xba\x1b\xe3\xd7\x31\xa9\xcf\x68\xbd\x41\xd0\x36\x90\xac\xdf\x78\xe8\x1a\xdb\x68\xb0\xbd\xe0\xbe\xe6\x57\x19\x42\x97\xf0\x9a\xf5\x5c\x65\xfe\x2c\xc4\xe4\x15\xbf\xe2\x52\x2d\x26\x38\x76\xfb\x5c\xfd\x17\x1b\x23\x77\x9a\x24\xbc\xea\x62\x4d\x94\x99\x2e\x2a\x65\x3f\x0e\x14\x13\x2c\x57\xdc\x32\x3d\xae\x1d\x48\x58\x2e\xbf\x4b\xc7\x2f\xd6\x9a\xb0\xc6\x61\x5a\x7a\xc5\xaf\x5e\x06\xae\xdc\x1b\x22\xf6\x19\x72\xd1\x04\x6a\xfb\x26\xdf\x7b\x7a\x62\x12\xc1\xd9\xa8\x76\x9f\x76\xe3\x5a\xc2\x9d\xe4\x5b\xa6\x2e\xf3\x23\x58\x18\x3a\x9c\x7f\x52\x4f\x39\x90\xf0\xfa\x4f\xf4\xa5\xe9\x6f\xce\x10\xc2\x9a\xf4\x6b\x1a\x07\xa6\x10\xa4\xb6\x57\x7b\x1c\xd5\x7b\xc8\xc2\x80\x8c\x6c\xb5\xf3\xf2\x6f\x0c\x16\x71\x4a\xfc\xc8\x90\xfe\xcc\x20\x52\x60\xf3\x7b\xb9\xb0\x05\x04\xe9\xc4\x92\x8e\xd7\xb9\x6f\x18\x24\xd9\xad\x16\xf0\xbc\x6f\x44\x13\x90\x5d\xe6\xf6\x2a\x96\x53\x84\x20\x94\xb5\xb7\x9e\x12\x72\x09\x5e\x53\x59\x76\x01\x5e\xb9\x84\x6d\x77\xa7\x86\x1e\x28\xd8\x48\xc8\x29\x2c\xf2\xb2\xdb\x66\x45\xd8\xff\x73\xa5\x77\x68\xd9\x66\xc2\xf7\xea\x4d\x73\x77\xbd\x12\x23\x58\x44\x84\x7f\xb5\x12\x39\xc8\x42\xcc\xa2\x78\xd7\x97\xa9\x3f\x19\x14\x5a\x15\xec\x39\x9c\x24\x49\xd0\xfb\xe7\xec\xa6\xcc\x00\x49\xc2\x52\x0b\x0f\x66\xb3\xaf\x12\x1b\x46\xaa\x9e\xf2\x9f\x3c\x98\x42\x08\xbc\x58\xb5\x7f\xec\xc6\x05\x42\xaa\xa6\xd9\x89\x2b\xdb\xf2\x59\x70\xd4\x90\x6a\x08\xd0\xcc\x23\xf0\x73\x8d\x3e\x8d\x5b\xb8\x9b\xc0\x99\x7b\xf6\x9b\xd6\x21\x71\x36\xd4\x09\x5e\x9e\x35\x39\x6e\x31\xe1\xfb\xd6\xc5\xdb\xeb\x95\xb6\x11\xfa\x86\x67\xbb\x27\x99\xbc\x60\x26\xc0\xe5\xa2\x10\x3a\xdd\xf0\x17\x83\xcf\x82\xcf\xee\x0a\x3d\x9c\x4a\xf8\x19\xbe\x25\xdd\x77\xc6\x6a\x42\xb5\xc9\xf1\xb7\xd6\xb5\xfa\x84\x2d\xbe\x76\xa5\x1c\xc5\xcd\x04\xae\x98\xbb\xfc\xac\x90\x3b\x84\xa9\xca\xcb\xcf\x7e\x4b\x7a\x40\x90\x29\x9b\xae\xe1\xee\xbd\x8c\x85\x40\xef\xbc\x63\x8f\x43\x6e\x11\xce\xc5\xaf\x8e\xfc\x3d\x65\x3b\x61\xd1\x91\x84\x13\xae\x09\xea\x84\x5f\x37\x2c\xa5\xb9\xb6\x6b\x11\xb8\x65\x1f\x3f\x2a\x15\x2e\x27\x2c\xd8\xb6\x8f\xb7\x22\xc9\x9e\xb0\xe2\xd3\x9a\xe4\x5b\x3f\x45\x09\x9c\x3a\x47\xd2\x8e\x4b\x89\x13\x5c\xb5\x9f\xe6\x6c\x59\x38\x9d\x10\x96\x6c\x35\x64\xf9\xce\x8c\x90\xa0\x71\xd2\xbe\xab\xe1\x35\x0b\xc7\x2a\x02\x9c\x96\xdf\xe7\x22\xbc\x92\xf8\x61\xc1\x21\xcc\x45\xc8\x89\xbb\x73\xe2\xa1\x20\x3f\x01\x32\x7d\x99\x12\x31\x73\x09\x06\x2d\x16\x49\x1a\x37\xb6\x11\x6e\x7f\x2c\x4e\x7c\xab\xfd\xb7\x08\x67\x5c\x14\xd2\x9f\xaf\x48\x20\x08\x16\xc4\x1e\x29\x57\x96\x24\x44\xee\x15\xbd\x60\xb0\xc6\x88\x90\x2c\x71\x9b\xb1\x90\x3e\x4a\x68\xfa\xb1\xa7\x36\xc1\xce\x86\xd0\x71\xce\x4a\xca\xed\x9b\x20\x01\x97\xdb\x52\x8b\xfa\x66\x13\x44\x74\x5d\xe3\x67\xae\xe5\x24\x44\x27\x59\x3a\x56\xbd\x94\x25\x14\x75\xe4\x89\x7a\xeb\x2e\x24\xac\x58\xf5\xea\x54\x9d\xbb\x23\x1b\x52\xf5\x07\x0c\x4e\x5b\x89\x11\x6e\x31\xde\xc1\xe7\x6e\x8e\x32\x60\xae\xa6\x38\x65\xae\x16\x27\xcc\xb9\xce\xf3\xca\xe1\xfb\x5a\x42\x5f\x84\xfa\x9c\x3d\x9d\xeb\x08\x23\xcf\x2e\x5e\x53\xbe\x2f\x4e\x48\xf3\x0e\xae\x3d\x54\x6f\x41\x90\x19\x4e\xe6\x35\xca\x54\x20\x68\x5a\xd5\x1b\xd5\x3b\x2c\x21\xec\x37\xa4\xd7\x77\x68\x06\x41\xcb\x39\xa8\xe7\xec\x6c\x71\x02\xb9\x0b\xb5\xe0\x98\x18\xa1\xb1\x61\xea\x27\xdb\x84\x54\xc2\xc6\x3b\xab\x83\x7c\x6e\x56\x13\x6c\x5d\xbe\x0d\x9d\x2c\x16\x20\x1c\x69\x76\x4a\xea\xbe\xb2\x9e\x10\x99\xde\xe0\x6a\x97\xbc\x96\xf0\xb5\x59\x72\xca\xc6\xd6\xa5\x84\xda\x69\xfc\xfb\x36\xde\x64\xc7\xf2\xa2\x7a\x2b\x9e\xa8\x60\x36\x3c\x7b\xd1\x25\xb6\x2f\xd5\x87\xb0\x57\xf4\xf6\x94\x52\xae\x30\xc2\x40\xfb\x92\x67\x6e\x51\xbf\x18\xac\x8d\xfb\x91\xfa\x5b\xf2\x05\x1b\x66\x6b\xda\x77\x6d\x5d\xdb\xc3\x06\x3e\x0f\xbd\x9f\xdd\x3b\xbd\x09\xf7\xef\x1d\x59\x62\x16\xe5\xcc\x86\xb8\xbd\xba\xbf\x7a\x55\x8d\x08\xc3\x43\x7c\x5d\xf2\xf3\xd6\xb1\xe1\x82\x44\xf4\xc8\x25\xa9\x29\x84\xf5\xaf\xaf\x6b\x1f\xab\xb5\x26\xb4\xac\x08\x7c\x63\x15\x3c\x9d\xa0\x79\x60\xfe\xb3\x94\x94\x69\x84\xd6\x3b\x6f\x77\x95\x1c\x5c\x45\x08\xaa\xbc\xf2\x70\xd4\x5a\x91\x20\x56\xe9\x2d\x19\x79\x91\x97\xb0\x63\x5a\x89\xc4\xf5\xbb\x6b\x09\x9f\x3a\x3f\xa6\xee\x30\x00\x83\x39\x7f\x6f\x8a\xbe\xdd\xae\x42\xd8\xc1\x48\x5c\xfc\x6e\x2b\x45\x98\x52\x6d\x2d\xbc\xa4\x6c\x35\x61\x96\x9a\xac\xae\x90\xb1\x3c\xc1\x88\xa3\xdf\x76\x45\xd8\x72\x42\x0d\x8f\xe5\x82\x87\xee\x8f\x08\xa7\xcf\xdd\x79\x2e\xfa\x42\x82\x60\x5d\xb1\xbd\x8e\xf3\x7d\x3c\xa1\xe3\xc3\x40\x80\xc5\xd3\x78\x42\x54\xe6\x58\x6d\xc5\xfd\x24\xc2\xeb\xf3\x67\xdd\x1f\xdd\x99\x45\xd8\x3d\x2b\xfc\xbc\xea\x71\x11\xc2\x53\xa1\x0d\x95\xfc\xf7\x84\x08\x37\xcd\x06\xad\x07\xf7\x64\x12\x52\xc3\x85\xc2\x9f\x9f\xd3\x27\xe8\xf8\x36\x3d\x4a\x8e\x09\x65\x21\xbc\x72\xf7\xab\xab\xa9\x06\x84\xa9\xf1\x1b\x92\x0e\x0c\x1a\xd2\x48\xe7\xe3\x4f\x9b\xee\x24\x10\x5a\xdb\x85\xf3\xda\xf9\x14\xd8\x70\xca\xe2\xc2\x60\xf0\xf3\x9f\x0c\x2e\x99\x1b\x5b\x15\x4d\xf7\x26\xd4\x3d\x7c\xb8\xa7\xc7\xaa\x8c\xe0\x14\xfa\xbe\x34\xe9\xbe\x1c\x81\xf3\xe3\x32\xdb\x24\x69\x2d\xc2\x70\x6f\xd2\xa5\x59\x8f\x96\x13\x64\xd5\x9b\x6c\x9a\x17\xf5\x30\x88\xd5\x5a\xdc\xd4\x06\x51\x9a\xc0\xef\x1a\xfd\xfd\xd5\xb1\x9c\x6c\xb8\x59\x94\xbc\x4b\x4a\x4e\x99\x0d\xee\xb1\x7d\x01\x6f\x87\x6b\x8a\xd0\x3d\x6a\x21\xb0\xad\x5b\x92\x10\xf8\x74\xa0\x29\x2d\x61\x1a\xa1\xba\xf9\x61\x87\xa6\xc5\x6c\x36\x68\x2e\xc3\xcf\xb7\xeb\x2b\x8b\x90\x7c\x74\x6e\xc6\xd5\xae\x4b\x2c\xd8\x7f\xd6\xda\xfc\x65\xc9\x23\xc2\x8b\x5f\x1d\xba\x4e\x51\x39\x04\xad\x53\xf1\x15\xf7\x8c\x63\x09\xb3\x95\xc7\x1e\x71\x9e\x4f\x23\x8c\x74\xff\x70\x4b\x98\x93\x44\x68\xba\x9f\xfe\xf7\x88\x3b\x27\xc1\x5c\xe2\xfa\x8f\xaa\xbc\xdb\x04\x0d\xfe\x4a\xdf\x13\x5c\x26\x84\xa6\xb4\xbf\x7d\x65\x46\xda\x6c\x08\x14\x6c\x39\x73\x7d\xf4\x37\x83\x04\x4b\xf9\x7c\x89\x07\xcb\x09\x79\x4f\xc2\x64\x44\xe3\xf7\x11\x6e\xd8\xbe\xe5\xba\x7b\x62\x11\x61\xf0\x69\xea\x3d\x45\xee\xd9\x04\xa5\x69\x4a\xf1\x8a\xdf\x37\x12\xc4\x4f\xad\x0f\x70\x78\xec\x44\x88\xf0\x50\x09\x78\xb9\xac\x94\xc1\xba\xa9\xaa\x6e\xa6\xc9\xf6\xf4\x1f\x30\x1c\xf8\x24\x75\x6d\xb1\xe8\x7f\x41\xb8\x64\x45\x48\xc9\xfb\x3b\x0c\xfa\xae\x89\xcd\xea\xf5\x5e\x40\x58\x5d\xd5\xa8\x76\xa4\xcc\xfa\xbf\xb0\xee\xd2\x40\xd6\xb2\x1c\x51\xc2\xd4\x92\x88\xdb\xc6\x77\xd6\x10\x7e\xfe\x7d\x78\xdd\x45\x32\x99\x70\xec\xd7\xd7\x8f\xab\x85\xad\x09\xbd\x0d\xf7\x76\x96\x57\x3d\x25\x3c\xd5\x94\x50\xf0\x68\x79\x48\x10\x50\xa9\x5d\xe7\x37\x7e\x5b\x48\x3e\x59\x74\xbd\x36\x5b\x82\xb0\x28\x71\x59\x41\xf0\x6f\x29\xc2\xa7\x93\x1e\x29\x96\x71\x73\x08\xc3\x4f\xc4\x73\x7d\xcf\x96\x12\x8e\x3b\xdf\xe1\x9d\xbb\xea\x34\x61\xce\x27\x77\x2b\xd3\xaf\xbb\xd8\xc0\xbc\x79\x72\xad\x56\x7c\x3e\xa1\xc8\x92\xd3\xe3\xd6\x57\x5e\x82\xc3\xcc\x7f\x76\x38\x6c\x55\x64\xc3\xe1\xd2\xb9\xd6\xb3\xf9\x17\xb3\xa1\x5b\x27\xbd\x4b\xf6\x4e\x3a\x41\x28\x6e\xfa\xa1\xfb\x56\xc1\x84\xc1\x97\x05\x5a\x42\x6a\xc1\x84\xd9\x7d\xef\x6f\xea\x58\x1c\x22\x08\xf4\x6d\xbb\xaa\x14\x1b\x4c\xe8\xc9\xdd\xd9\x9a\xf1\x52\x8b\xe0\xe9\xea\xb5\x63\x4b\xc6\x86\xff\x13\xaa\x07\x14\x02\xb6\x16\x09\xff\x17\x9c\x2c\x3c\x9f\x1e\x96\xde\xc7\x86\x4b\x9f\x33\x9a\x33\x47\xe7\xb0\x61\x4a\xa3\xca\x52\x37\x5b\x17\x36\x6c\xb0\x4e\x57\x90\xe0\x1f\x62\x60\xbd\xef\xfc\x9f\xca\xe7\x6a\x84\xfb\x37\x6f\x78\x27\xd6\x2c\x25\xb8\x26\xcd\x69\xae\x0a\xb1\x27\xf0\xb6\x7f\xd4\x56\x3c\x2f\x4e\x28\x29\x3d\x19\xb0\x6d\xff\x74\xc2\xb0\xa0\x50\xd3\x1c\x49\x27\x36\x04\x58\x67\x36\x1c\x71\x9a\x44\x10\x08\xee\x88\xe4\x95\x4a\x63\xa1\xd1\x6b\xe5\xf5\xd9\xf7\x9d\x09\x18\x8e\xf8\x71\xd7\xae\x87\xc1\x0f\x9b\x88\xbc\x5f\xce\xec\xe8\x08\xd2\xff\x23\x38\x63\x32\x21\xc8\xd2\xdd\xd2\x52\xf7\x14\x0b\x33\xe7\x7f\xbb\x54\x50\xf8\x98\x85\x9b\x46\xa6\xe7\x3f\xbf\x75\x22\xd8\xda\x45\x6d\x38\x76\xdb\x84\x50\x10\xb5\xdd\x22\xcc\xab\x87\xc1\x0c\xff\xf9\xef\x34\x86\xc3\x09\x42\xd1\x42\x91\x55\x83\x2b\x08\xd6\x22\x3b\xf2\x7f\x47\x86\x12\xde\xc5\xce\xe8\x98\xdc\x27\x47\xd0\x2d\x6c\x6d\x5d\xd1\x65\x45\xf8\xed\xdc\x6b\xfd\xaa\x5d\x8f\x90\x37\xac\xb5\xb8\xd9\xf5\x23\x83\x2f\x39\x4b\xf5\xa3\x23\x94\x08\xab\x6c\xa4\x1a\x26\x75\x9f\x26\x2c\x5a\xcd\x91\x3b\x79\x1c\xc6\xea\x62\x2b\x45\x96\x2f\x26\xcc\x5c\xe3\x7b\x27\xf8\x9a\x32\x61\x49\xab\x72\xda\x3e\x29\x79\xc2\x61\xc5\xed\x27\x15\x57\xcd\x25\xbc\x8c\xbe\xcb\x9a\x7c\x45\x8c\x60\xec\xea\xe0\x78\xcf\x50\x90\xb0\xce\x4f\xd5\xe3\xb3\x27\x27\x61\xcb\x21\xdb\x76\xee\x52\x3e\x42\x8c\x7a\x80\x52\x93\xb8\x34\x1b\x9e\xea\xf3\xa7\x84\x6c\x1f\x65\xb0\x6c\xeb\x88\x6f\xb6\x78\x7d\x11\xa6\xbf\x48\xcd\x7e\xb4\xf8\x22\x4d\x60\xf8\xf9\x0a\x5b\x85\x47\xa9\x45\x13\xf8\x67\xaa\xbd\xf4\x11\x7c\x20\x58\xaa\xbd\x0f\x0a\xb3\x1b\x24\xa4\x7d\x19\xd6\xbc\x60\xd5\x4a\xf0\x49\x6d\xf9\xb0\xfa\xd4\x17\x82\xdb\xd1\x96\x98\x7f\xcf\xf4\x54\x95\x1d\xad\xb1\x2f\x23\xdc\x3b\x77\xaf\xbc\x22\xa4\x94\xd0\x74\x43\x4d\xd0\xac\xb9\x80\x60\x6e\xfa\xdd\xcc\xa6\x32\x9d\xf0\x76\x9e\xc3\x87\x27\x49\x8f\x08\xa6\xeb\x1c\xbf\xde\xba\x1f\xc5\xc2\xd9\x20\x17\xc9\x73\x42\xd2\x84\x05\xa3\x0d\x26\xf5\x9d\xc3\x0c\x46\xbd\x4d\x57\x67\x7e\xe4\x26\x9c\xdd\x90\xb8\x55\xed\x90\x2d\x41\x7e\x79\x9a\xde\xfa\xc1\xfd\x84\xdc\xee\x10\x2f\x8e\x85\xd1\x84\xb7\x97\x1e\x76\xbf\xd1\x55\x27\xa4\x45\x0c\xd6\xe7\xee\x2a\x23\x98\x7e\x0c\x4f\xbe\x2b\x5b\xc2\xc2\x0f\x0e\xfd\xfd\x4d\x27\xb2\x58\x08\xf7\xd6\xe4\x7c\x97\x16\x4b\x90\xb3\xd8\xdb\x57\x6b\x7a\x95\xb0\xd0\xf8\xfe\x3d\x0e\x33\x6f\x42\xbd\x65\xc6\xc2\x75\x1a\xa7\x08\x97\x82\x82\x22\x2d\xc3\xf7\x13\xe4\xec\x2f\x27\x07\x84\x5d\x24\x58\x6d\xfe\x95\x79\x8d\x78\x09\xd7\x5b\x4d\x3c\x26\xf1\x0d\x10\xf8\x9a\xcd\x34\xfe\xf1\xc9\x25\x48\xb7\xb5\xbe\x3b\x35\x0e\xeb\x1d\x77\x1e\xfc\x0b\xdd\x63\x4b\xfc\xd3\xe3\xdd\x09\x9f\x47\x3e\x95\xc7\x45\x95\xb0\x80\x8f\x1e\x2d\xd5\x53\x15\x09\x52\xad\xfb\xbf\x9a\x8c\xdf\xb9\xff\x83\xd9\xc9\xef\x4b\x13\x0a\xdb\x8b\x60\xe7\xe9\x26\xb1\xd5\xea\x35\xe1\x7a\xfc\xc1\xb3\x8a\xdc\x9d\x84\xf4\xb7\x25\x27\x27\x3d\x79\x4f\x48\xd9\x72\x6b\x46\x4a\x5a\x26\x61\xbf\xe6\xaf\xf8\x92\x05\xb1\x84\x4b\x1e\x22\xbb\xc6\xce\x1e\x20\xf8\x8b\x7e\x5d\x7a\x7b\x47\x29\xa1\xd1\xfc\xb4\xcd\xc0\xa5\x68\xd6\x48\xac\xc1\x40\xc4\xc3\xe5\x84\xea\x67\x4d\x6b\x14\x78\x96\x10\xbe\x36\xae\xcd\xd8\x6a\xfb\x81\x60\x98\xaf\xd4\xb6\x7b\xdb\x07\xc2\xc3\x51\xce\x7a\x9b\x1d\xb1\x84\x23\x67\xb5\x54\xaa\x6d\xb3\x09\x07\x84\x42\x1c\xcf\xf6\x97\xb2\x30\x77\x6a\xb8\x8a\x62\x8a\x00\xa1\xe9\x45\x5b\x5b\xec\x02\x5e\x42\xa3\xb8\x76\xcf\x93\x27\x4b\x09\x61\xb3\xa3\x77\x86\x9f\xb3\x27\xd0\xe8\x89\x4b\x46\xeb\x2b\x09\xed\x4b\xdf\x9c\xfa\xf5\x28\x98\xb0\x78\xcb\x67\x1d\xbf\x20\x0f\xc2\xa2\xa8\x5e\x89\x77\xc2\x9b\x09\x9a\x9e\x9f\xbc\xbb\x39\x3c\x58\x48\xda\x7b\x31\xb3\xce\xc9\x8e\x85\x9b\xf7\x6a\x5a\xe3\xdc\x74\x08\x8b\xb7\xe5\x1c\x0e\x0c\x5e\x48\xc8\xfe\x78\xd3\x24\x69\x03\x07\xa1\xbf\x2b\x59\x5a\x8e\x7f\x2a\xe1\x07\xac\x42\xe5\xe6\xfb\x13\xe2\x67\x68\x5c\xf3\x51\x67\x08\x0e\x5a\x9f\x0b\xb2\xcd\x4e\x10\xda\x1c\xaf\x18\xcc\xfa\x21\x46\xe8\xba\x7d\xa5\x32\xa4\xcc\x99\x20\x77\x2e\xf9\xf0\xc9\xcd\x0b\x09\x51\xe7\x4a\xff\x44\x3d\xe2\x25\xb8\x05\x66\x2f\xaf\x78\x24\x47\x68\x29\xde\xf3\xec\x62\xcf\x72\x42\xeb\x6c\x1b\x31\xad\x0c\x45\x82\xa1\xbc\x51\xdf\x3d\x4f\x25\x02\x4b\xd0\x2c\x62\x21\x24\x08\xce\xf2\x49\xc2\x4f\xea\xc0\x60\x79\xd6\xde\x1d\x1f\x82\x42\x08\xea\x76\x2f\x35\x1f\x46\xcd\x22\x78\xc8\x05\x08\x4c\xb3\x34\x26\x8c\xca\x30\x77\xf9\x87\xf3\x09\xe7\xbe\xe7\x59\x26\x84\x9b\x10\x32\xbf\x1d\xad\x8e\x78\xdc\xcf\xe0\x9e\x1a\xa9\xa6\x7b\xad\x22\x48\x0a\xeb\xf0\xfd\xb4\xd4\x20\x68\x69\xe6\x7d\x7c\x9a\xea\x42\xf8\xb2\xad\xe9\x73\x81\xef\x71\xc2\xab\xad\x5f\x76\xf1\x5c\x8d\x27\x4c\x3f\xb3\x6b\xcd\xf0\xa7\x24\x82\x54\x6a\xc1\x19\x49\xd6\x2e\x36\x94\xb2\xbc\x2d\x03\xf7\x4b\x11\x36\x99\x55\xbf\xb4\xb8\x71\x86\x90\xda\xbe\xe6\x81\x4c\x6b\x09\xe1\xf1\x91\xd0\x17\x79\x01\x9a\x84\xd9\x96\x6b\x4d\x6f\xbb\xaa\x11\xde\x4e\x5a\x3c\xc3\x60\x6f\x2d\x21\x66\xf6\x3b\x77\x93\x49\x97\x08\x2d\x22\x4b\x7b\x7c\x52\xea\x08\x93\x0b\xde\x31\x7f\x2e\x5d\x20\x54\x45\x2e\x7d\x26\xbd\x97\x9f\x30\xf9\xe3\x9b\xbd\x77\x1c\x7d\x09\x22\x9c\xa6\x67\x57\x18\x47\x12\xbc\xf7\x1d\x96\x3e\xdc\x3f\x83\x70\xe3\x7a\x46\xb7\xcc\xc3\x51\x66\x02\x6b\x52\x75\x66\x5a\xbf\x5e\x4f\xff\x17\x5e\xc6\x3a\x2c\x5a\x34\x4f\x90\xc0\xc7\x2f\x79\xf7\x57\xe6\x5b\x06\xdc\x4b\x9f\xaf\x5e\x76\x51\x81\xfe\x03\x56\x5f\x6f\xcf\x7b\x14\xf2\xa4\x08\x17\x55\x63\x66\x93\xe1\x5d\x82\x81\xd8\xa5\xe9\xa7\x6e\x0b\x13\x42\x52\x3a\x57\x4c\xe6\xcb\x67\x43\xd9\xcf\xab\xc9\xfa\x29\x32\x84\xfa\xca\x90\x0d\x2a\xc7\x84\x09\xdb\x3d\x95\xef\x4d\xae\x2e\x64\xc3\xe2\xac\xbb\x57\xa5\xdd\x8a\x09\x0d\x31\x89\xab\xbc\x8f\x9d\x25\xcc\x4b\x30\x2c\x91\x4c\x0b\x20\x50\x6c\xf0\xa9\xa6\x77\xde\x04\xe5\xed\xfa\xe5\x29\xe3\xb8\x5e\x70\x46\x52\xfe\x83\x26\x21\x6b\x47\x70\xa7\xc4\xa1\x65\x84\xe7\x2a\x3f\x7c\xf6\x1d\xdc\x41\x50\x08\x0a\x17\x2f\x4b\x14\x20\xe4\x99\xb4\xf4\x6d\x3d\x5b\xcf\x40\xb8\xe6\xd1\x82\x06\x1b\x05\xfa\x0f\x88\x95\xe6\x17\xb6\xe8\xe4\x15\x8d\xd4\xda\x55\x06\x5d\xfd\xc3\xa0\x70\xf6\x4b\xdf\x19\x5a\x0a\x84\xfd\x66\xde\xfb\xbe\x0a\x1e\xa0\x89\x72\xd2\x70\xa9\xfd\x4e\xa3\xb7\x45\x70\xf7\xce\xdd\x6c\xfb\x6a\x7c\xfb\x75\x52\x9f\x93\x25\x2d\x4f\xd0\xfb\xbc\x53\x62\xd7\x69\x05\xc2\x1b\x1b\xb7\x6d\xcf\x85\x05\x09\x77\x7f\xcc\x4e\x3e\x78\xca\xb1\x08\xa7\x3e\xcf\x77\xff\x7d\x48\x9f\xd0\x25\xc7\xd7\xa8\xda\xb5\x8c\xe0\xbb\x4d\xa7\x99\x57\x74\x11\x21\x44\x75\x9d\x68\x91\xc3\x72\xc2\xe9\x8e\x80\x19\x21\xb6\x26\x84\x4f\x23\xe7\xfd\x64\xea\xf4\x08\xce\x0f\xaf\x98\x5e\xee\x5d\x4e\x68\xff\xd3\xa9\xf0\x6b\x8a\x00\x61\xc8\xe2\xe4\xb3\xf2\x5d\x75\x0c\xe4\x1d\xf6\x29\x15\x1a\xfe\xfe\x2f\x9c\x5d\x36\x6c\x2e\x77\x2a\x94\xfe\x03\x8d\x1e\xab\xe5\xec\x78\xfe\x32\x13\xe0\x34\xda\xdd\x6f\x28\x25\x44\xb8\xf0\x49\xa0\x68\xd6\x34\x37\xc2\xae\x65\xf1\xb6\x5c\x36\x36\x84\xae\x55\x32\x17\xad\x92\x56\xb3\xe1\x54\xdf\x14\x3d\x61\xe5\x1f\x0c\x0c\x73\x3e\x8b\xc8\x4e\x5b\x45\xa0\x7b\x92\xd1\x62\x3c\xca\x04\xce\x1d\xa5\x59\x53\x5b\x16\x10\xcc\x4e\x89\x16\x9f\xb4\x33\x20\x2c\x69\x8c\x28\xda\x72\xcb\x92\x05\x95\x17\xde\x9b\xfa\x4b\x83\x69\x02\xbd\xfc\x32\xdf\x04\x3c\x37\x13\xd4\xf2\x36\x38\x28\x7e\x99\x44\xe8\x94\x9d\xab\x12\xe6\xe4\x47\x78\xdf\x37\xab\x55\xfc\x71\x16\xe1\x92\xc2\x0b\xd3\x8c\x35\x67\x09\x4f\xab\x15\x42\x92\xf7\xad\x22\x9c\x9b\x12\x70\xbb\xd0\xcd\x80\xd0\xed\x36\x4d\x67\x1e\x67\x15\xe1\xf1\xcf\x72\xcb\x8d\xb1\x23\x0c\xee\xec\x2a\x66\x64\x3c\x75\x09\xef\xde\x26\x0a\x77\xdd\x95\x21\xec\xc9\x8b\x51\x3a\xd4\x2f\x48\xd0\x07\xae\x16\x6c\xeb\x62\xb0\x21\xf1\xcb\x47\xc7\x0d\x2e\x84\xb6\x57\xac\xc1\x9a\x15\xd5\x84\xc7\x0a\x93\x56\x4a\x0c\x5e\x24\xac\x3b\xfc\xc6\x66\x92\xd2\x79\x16\x8c\x65\xe6\x64\xda\x9f\xf3\x23\x3c\x7f\xb7\xee\x8f\x4e\xe0\x55\xc2\x0a\x31\x2d\x5e\x8d\x95\xb7\x08\xfc\x6a\x3b\x5f\x4d\xfb\x98\x40\x10\x69\x1f\x7c\xd0\xcb\x53\x48\x48\x16\x78\xa9\xdb\xf9\xb6\x80\x60\xb9\x78\x21\xdf\xd7\xf1\x12\x1f\xd9\xfc\x31\xf9\x63\x1c\x21\x42\xc1\xce\xce\x40\xa3\x85\x85\xf6\x8d\xad\xed\xfc\x17\xa6\x13\x0c\x12\x47\x76\xf8\x24\x75\x32\x13\xb0\xde\x23\x37\x3f\xe3\xc1\x24\x82\x65\xe1\xb7\x47\x05\x5a\xd3\x09\x97\x0e\xbd\xab\x50\x6a\x9b\x41\x78\x78\xa2\x2e\x78\xcf\xb1\x29\x84\x13\x81\x56\xfe\x6a\x3b\xc5\x08\x8f\x74\xe7\x75\xcf\x4e\x91\x27\xdc\xbc\xee\x7e\x1c\x23\xf1\x2c\xf0\xdd\x8d\xf8\x21\x39\x53\x8b\xf0\xdc\x25\x8d\xe3\xe6\xf9\x86\x22\x18\xef\x6f\xe7\xcd\xfa\xce\x22\x3c\xf3\xca\xa9\xce\x1c\xc7\x42\xb3\xb7\xb5\xe9\xe3\x98\xa7\x5d\x18\x3c\xa9\xfe\x2a\xe1\x60\xd5\x96\xa7\x67\x0b\x1f\x11\x14\xbd\xb2\x8f\xcb\x3a\xe6\x12\xf6\x58\x87\xed\xcb\x7f\x9c\x4a\xd8\x1b\xb1\x44\x8b\xf3\xd9\x15\x16\xb2\xa7\xda\x72\xc4\x8e\x14\x10\xa6\xab\x2a\xef\xad\x96\xbe\x46\x68\x09\x4d\x8a\x95\xcb\x4d\x63\xe1\x8a\xd0\x48\x79\xa7\xdf\x35\x82\xb3\x16\xe7\x99\xe9\x65\x81\x2c\x18\xde\x19\x31\x2b\x8e\xb8\x46\x28\xf5\x3a\xaf\x7e\xd1\xcf\x87\x70\xa1\x70\x57\x5e\x87\xc9\x1d\x42\xe0\xb9\xcf\x9d\xc9\x5b\x4f\xb3\xc1\x65\xa4\x7a\xea\xd7\xe2\x8d\x84\xef\x12\xd6\x7e\x2a\x03\xc7\x08\x26\x81\x69\x73\xaa\x5b\x8d\xd8\x30\xda\x38\x58\x9f\xf5\x67\x1f\x61\xee\xd4\xfc\x0b\xd7\xee\xaf\x26\x1c\x9a\xb2\xd7\xf2\xae\xea\x59\x42\x7c\x7a\xe9\xde\xfc\x41\x35\x42\xe0\xf1\xd7\x81\x2e\x2a\x4b\x09\x8e\x7c\x3a\xad\x5f\xee\xac\x20\x18\x6b\xd9\x6a\x78\x4e\xed\x62\xa0\xf2\xf9\x91\xb5\x22\xb7\x18\x81\xef\xb9\x29\x77\x9d\xdb\x74\x42\x80\xf3\x70\x5e\xe0\xc5\x99\x84\xd3\x17\x5a\xd7\x9c\x3d\xa2\xc5\xc2\xcf\x9b\xc6\x1f\x7f\x67\x0f\x32\xe8\xdf\x5c\xe8\xe9\xf4\x68\x32\xa1\xaf\x83\x53\x3e\xf2\x3c\x27\x1b\xfe\x98\xdc\xb5\xec\x49\xe1\x26\xd8\x68\xf2\x4a\x59\xec\x57\x23\xf4\x88\x6e\x32\x9c\xf3\x87\xc6\x9f\xaf\x41\x11\xdb\x4a\xe7\x12\x12\x37\x63\xae\xc4\x46\x0f\x42\x7f\x7e\x96\x4e\x49\xfe\x28\x83\x6d\xdd\x36\x53\xd7\x2d\xe1\x25\x0c\x95\xae\xdd\x12\xa1\xc6\x10\xf6\xdf\x57\x56\xbe\x7c\x79\x3f\x0b\x5a\x8a\x9f\x05\x9b\x9d\x7c\x68\x02\x25\x89\xcd\x63\x73\xed\xf4\x08\xba\xeb\x7e\xe2\x48\xd8\xb3\x22\x38\x2f\x2d\x7e\xba\xef\x62\x31\x21\x38\x4f\xc8\x6f\x44\xb8\x80\xd0\x7c\xa4\xa9\xeb\xdf\xb2\x6c\x06\x4b\xbf\xa3\xc9\x9b\x60\xab\xe4\x93\xd2\x27\xee\x43\xd8\xfa\xea\x58\xea\x43\xed\x0c\x16\x9e\xe8\xd8\xa5\xfb\x46\x95\xb1\x60\xe9\x25\x5f\x54\x10\xe3\x43\x78\x11\x30\x6d\x6c\x4b\x62\x07\x83\xa3\x61\xef\x32\x0f\xde\x5d\x4f\xf8\x50\xad\x79\x67\x58\x5d\x82\xb0\xbb\x44\x6a\x4c\x69\xa7\x06\x41\xd0\xe3\x98\xa9\xad\xcb\x06\xc2\xac\x06\x3f\xf5\x75\x43\x2a\x04\xd3\xf2\x98\xcb\xb6\x1a\xa6\x84\xaf\x1d\xdd\x67\xaa\xfc\xa2\x09\x97\xdd\xa2\xf2\x74\xc7\xbf\x72\x33\xa6\xbd\xe1\x65\x04\x77\x10\x64\xde\x30\x16\x67\xae\xba\x13\x82\x22\xab\x72\x6a\xbe\x76\x33\x78\xfa\xdb\x39\x75\xdb\x8a\xa5\x84\x45\x3b\x04\x35\x4f\xd5\x7d\x62\xf0\x26\xce\x75\x84\x79\xbc\x91\x26\x10\x55\xb1\x32\x40\xf6\xe3\x74\x36\x38\xc4\x39\x96\x77\xd5\xd9\xb3\xd0\xd8\x34\xc5\xf3\xdc\xe1\x21\x06\xe7\x22\x2d\x96\xe4\x0c\x29\x11\x0e\x68\x24\x55\x34\x2d\xb5\xa0\x89\x72\xb8\xa6\xfa\xcf\xe3\xf1\x0d\xc2\xae\xeb\x5b\xef\x82\x0d\xfc\x84\xb2\xb8\xb6\x80\xb7\x41\x9f\x19\x4c\x57\x89\xfc\x12\xf1\xe3\x0c\xe1\xfe\x2e\xe3\x17\x22\x03\xec\xb0\x0b\xea\x7b\x61\xeb\xb3\x90\xd0\xfe\xae\x5a\xa3\x67\x1e\x17\x1b\x9c\xf4\xa2\x93\xb9\xff\x2e\x25\x04\xda\x1b\xad\xcc\x12\x91\x24\xd8\xbb\x14\x2e\x57\xd8\x7b\x90\xa0\xe9\x34\x79\xff\xb4\xd9\x1a\x84\x15\x92\xdf\xd3\x6c\x32\xb2\x18\x6c\xf3\x3d\x7a\x6b\xf6\x1f\x0e\x42\xac\x62\x5c\x9d\xfc\x12\x65\x82\xe9\xc1\x9f\x72\xfd\xcb\xa4\x08\x17\xff\xd1\xb9\x3a\x87\x9b\x21\x1c\x4d\xf9\x7a\xfe\xde\xb1\x75\x84\xe8\xfb\x9b\xb6\x18\x18\xf0\x10\xcc\x75\x38\x35\xa6\x6d\x78\xc7\xa0\xeb\xfe\x5d\x17\xef\x69\xe2\x84\xc1\x27\x53\x0d\xf7\x9b\xcc\x22\x0c\xe7\x90\x49\xa6\xe8\x26\xc2\x93\x03\x33\xca\x5b\x2b\xf2\x09\xc6\xab\xf7\xa4\x5a\xb6\xff\x65\xb0\x38\x51\x50\xa1\x3f\x5b\x92\xa0\xe2\x54\xf3\xfb\xc4\xc1\x79\x84\x9f\xcf\x8f\x9f\x0d\xd4\x9b\x4d\x30\x09\x0b\xd3\xeb\x91\x5f\x42\x68\x4f\x3b\xdd\x22\x3f\x73\x2f\xc1\x44\xb1\xf1\xe1\x8f\x03\x7e\x0c\xb8\x1e\xcf\x7a\x9a\xbf\x4e\x82\x60\x79\x7f\x6e\xac\x88\xf1\x16\x42\xfa\x89\x67\x73\xd2\x5f\xf0\x10\xf6\xf8\xde\xdc\xbd\xcf\x6b\x11\xe1\x0c\x87\x33\x9f\x4f\xcc\x19\xc2\x1d\x1e\x11\xa5\x2f\x09\xd9\x84\x59\x4e\x8b\xc3\x2b\xa6\x5c\x23\x54\x77\xf4\x8e\x72\x7f\x5f\x44\xd0\xba\x68\xb5\x06\x52\xcb\x09\x83\xcd\x87\x47\xf9\x68\x80\x41\x0b\x85\x76\xd8\x16\x7e\x67\x43\xe3\x6e\x45\xa7\x1a\x45\x01\x82\x49\x72\xa0\x6b\xf9\x94\x64\x82\xcc\xc3\x01\xd7\xa3\xe3\x77\xa5\x4d\x79\xe3\x9a\x27\x0e\x25\x04\x0f\x9b\x25\xcc\x47\xdf\x12\x42\x40\x47\x62\xf4\x96\x3f\xc5\x04\x99\xb4\x62\x71\x19\xf7\x72\x82\x5d\x43\xfb\x77\xf5\xbf\xc5\x04\x9d\x5a\xde\x75\x8b\x3e\x27\x10\xae\xfc\x53\x7a\x73\xe6\x38\x2a\xbe\x71\xe8\xed\xac\x8e\x27\xf4\x6d\x59\xde\x5e\x5a\x9a\x40\x78\xa0\xf5\xad\xa3\xbd\x9c\xfd\x4c\xd8\xa5\x5b\xd3\xd2\xbd\x9d\x08\x3f\xa4\xee\x0d\x2d\xcb\xb0\x21\x70\x1e\xd8\x66\x27\xf9\xda\x9c\xf0\xe0\xb2\xb1\xcd\x3f\x17\x76\x13\x0a\xc5\x44\x18\xd5\xa7\x5d\x04\xf3\x4d\xed\xab\xd3\xbc\x0b\x08\xcb\x55\x7e\x89\x5b\xaa\xff\x20\x54\xb5\x7f\x8b\xb8\x7a\xba\x80\xf0\x26\xd0\x42\x64\xc7\x85\xeb\x84\x7d\xfa\x21\x66\x9a\x35\xdf\x18\x48\xf7\xfd\xfa\xc8\x93\xa3\x44\x58\x72\x30\xc6\x51\xf2\x8a\x3a\xe1\xb6\x8c\x8b\x58\x85\x90\x3f\xa1\x6e\xb1\x79\x08\x57\xbc\x09\xc1\xe2\x8a\xc2\x3b\xd5\x5e\x53\x82\xb2\x7b\x8d\xa2\x6b\x9c\x34\x41\xf7\xe2\xf4\xa3\x57\x52\x0c\x08\x41\xc6\x0b\xb6\xec\x3c\x1d\xc5\x86\xfe\x83\x67\x26\x7d\x6e\x7c\x5e\x84\x99\x6f\x37\x3d\xfe\xda\x29\x41\xf8\x18\xe0\x55\x9a\x91\xa2\x4e\xf8\x26\x94\x75\x72\x96\x5c\x3c\xe1\xef\x97\x45\xbf\xd6\xef\x54\x26\xf0\xbd\x77\xb3\xd0\xbc\x9a\xc2\xc2\xc9\x9b\x59\x09\x6f\x66\x3f\x24\x84\x5f\x3a\xd8\x94\xf2\x59\x98\x90\x79\xcc\xea\x95\xe5\xd9\xd9\x04\xd5\x65\xd5\xf7\x93\x5a\xb4\x08\x05\x22\x27\xfb\xce\x2c\x5b\x48\xd8\x6d\xbb\x5e\xe9\xd5\x15\x0d\xc2\x99\xf3\xbb\x2e\x3d\xc8\x96\x25\x38\x0e\x76\x9a\xd8\x64\xbf\x64\x70\xe0\xe6\xa1\x55\x4e\x2e\xe7\x08\xd7\x53\x7c\x24\xbc\xa7\xe9\xfe\x17\x5e\x94\x6d\x5c\xd4\x5a\xf9\x80\x0d\xde\x0f\xd6\x55\x48\x4e\xd9\x4c\xd8\x35\xda\x21\x11\xca\x2a\x24\xb4\x3f\x08\xce\x5f\xdb\x5e\x48\xd8\x76\x7d\xfd\xbe\x7f\xe1\xf1\x74\xca\x87\x4a\x0e\x03\x82\xcf\xd6\xd4\xdd\x16\x9f\xb7\x12\xb4\x65\x16\x5d\x33\x59\xa1\x43\xc8\x3b\x64\x9e\x72\xa4\x6e\x1a\x21\xfb\xcc\x6f\x51\x46\x34\x9c\x85\xbf\x6d\x8a\xf5\x9d\x35\x15\x84\xd5\x9f\x97\xa5\x08\x36\x57\x10\xa6\x7e\x0a\x16\xe3\x38\x5a\x4e\x90\x0c\xeb\x31\xfa\x6b\x57\x4e\xf0\xb4\x7c\x28\xdd\x34\xe6\x4e\xb8\x9f\x2c\x78\xec\xc8\xdd\x60\xc2\x33\x0b\x0d\xc5\x43\x11\x41\x84\xcd\xa5\xbd\xcd\x5e\x07\x4f\x13\x46\x7f\x0f\x5f\xa9\xcc\x0a\x26\xf8\xbc\x14\x3b\xe0\xb5\x78\x7c\xcd\xf8\x14\x1e\x30\x63\xb0\x84\x60\xb6\xc8\xed\xdb\x0a\x4f\x67\x16\x32\x9c\x56\x3f\x3e\xbf\x67\x3b\xa1\x6c\x64\xb9\x57\x97\xb1\x1d\xe1\x53\x6a\x7d\xe2\xed\x73\x37\x09\x0b\x87\x87\xb6\x94\x6c\x3d\x4b\xa8\xdd\xba\x2e\xf4\x98\x47\x08\xc1\x42\x5f\x41\x58\x69\xf8\x0a\xc1\xaf\x33\xe0\xa9\xda\xc7\x6b\x84\x22\xe3\x47\xb1\x8e\xef\xd9\xe1\xf2\x62\x47\xb8\xd8\x8d\x05\x84\xd8\xde\x01\xdb\x6c\xf3\x6e\x66\x02\x27\xac\x8d\x8f\xec\xbd\x3a\xc2\x80\x4f\xea\x43\xea\xaa\x14\x30\xe0\xcd\xf1\xed\xe0\x8a\xbe\x47\x13\x98\x3a\xbf\xd7\x60\xd2\x38\x1a\x92\x85\x7d\xff\x05\x57\x76\xaf\x60\x77\x5e\x19\x03\xe3\xe4\xd1\xdd\x46\xa7\x7b\x18\x18\x0d\x3a\x84\x70\x59\x71\xd3\x04\x8a\x3f\xe6\xd5\xfd\xf5\xf4\x2f\xc2\x7b\x75\xbd\xb3\x0e\x97\x13\x59\x70\xd7\x12\x7d\x9c\xee\xe0\x4d\xa8\xe8\xe7\xed\x38\x51\x78\x9e\xb0\x6a\xef\x51\x8d\xa7\xc1\xf2\x84\x9f\x87\x5c\x1c\x96\x6c\xad\x25\xdc\x32\x8d\x15\x95\x4d\x18\x64\xd0\xf9\xad\xfe\x6f\xc7\x6f\x4b\x9a\x80\x72\x62\xad\x76\xf1\x7b\x29\x82\x60\x4c\xa1\x95\xc1\x24\x03\xc2\x02\xa1\x33\xd4\xd8\x9c\x43\xd0\xaf\xec\x64\xe2\xcc\x2a\x09\x19\x7c\xab\x43\x32\x8c\x6f\x11\xd4\x8f\x5f\x71\x5d\xe7\x78\xf9\xbf\xf0\xfd\xfa\x0e\x0e\x65\xa7\x39\x84\xc5\x3b\xcb\x3e\x9a\x28\x73\x12\x9e\xde\x2e\xe6\x38\x25\x75\x82\x0d\xd1\xf7\xb2\x93\xfd\x4e\xbc\x67\xb0\x4b\xd7\x66\x52\xaf\xf2\x62\x42\xd9\xf2\x78\xd1\xee\x80\x66\x16\xfc\x72\xef\x1a\xaa\xf7\x24\x12\x36\xbd\x35\x99\xb9\xff\xe0\x35\xc2\x93\x3d\x6a\x27\x35\x9d\xa7\x10\x1e\xdf\xc8\x78\xf7\xea\xa1\x3b\xe1\x50\x82\x38\xff\x4e\xde\xcb\x84\xaf\x55\xd1\x47\x7a\x5e\xcd\x1a\xff\x4e\xa9\x79\x6a\x6d\x17\x4c\x10\x3d\x20\x2a\xac\x9b\x55\x4a\x08\x3d\x1b\xb4\x7d\xf5\xf8\x47\x34\x6b\x51\xc4\x5f\xcd\x3f\x41\x84\xf7\x21\x47\xeb\xff\xc5\xab\x74\xa9\x53\xa9\xfb\xc2\x08\xb3\x6b\x6f\x2f\x18\x90\xf0\x24\xc4\x5a\x8a\xc5\x7c\xe2\xbf\x42\x90\x52\xdb\x32\x53\x26\xf2\x14\x61\xd3\xe3\xe8\xba\x97\x79\xb3\x09\xf2\x6e\x7b\x2b\x9f\xb9\x73\x11\xe6\x4c\xb6\xb8\xb1\x3c\xea\x2e\x21\xfe\x9d\xe0\x9d\xf7\x99\xfe\x84\x7b\x71\x3c\x8a\xde\xc1\x81\x84\x12\xd6\xe9\x51\x3f\xa7\x31\x66\x02\xfd\xfe\xe6\x47\x4f\xee\xb6\x63\xa1\xae\xd2\xff\x2d\x67\x0f\x37\x21\x23\x56\xdf\x67\x64\x34\x8b\x90\x78\xa3\xd9\xee\x01\x5f\x17\x0b\x1f\xa7\x06\x84\x2f\x9a\x74\x97\xa0\x33\xbc\x66\xc3\x91\xea\x4e\x06\x65\x0a\x31\xb5\x35\x95\x52\x04\xdf\x97\x5f\x3e\x48\xa4\x69\x10\x36\x0f\x49\xae\xf1\xbb\xd5\xc7\xc0\x2e\xc8\xf0\xf7\x83\x6e\x67\x16\xb6\xbc\x5b\xfa\xfb\xfe\x06\x22\x70\x36\x94\xa8\xb5\xcf\xdb\xcd\x06\xe9\x58\xae\xec\xfe\xdf\x8b\x09\x3a\x49\x2e\x67\x43\xa5\xab\x08\x3b\x5f\xd1\x41\xaf\xde\x9b\x2c\xb4\x44\x5a\xde\x79\x1d\x9d\x49\x08\x95\xe5\xf2\xe3\x3b\x92\x45\xf8\xea\xbe\x67\x09\xc7\x39\x4d\xc2\xe1\xc1\xf6\x47\x07\x93\xe2\x59\x08\xd4\x5c\x8f\x0f\x6a\x0a\x34\x81\xbf\xd3\x0e\xc4\x88\x5d\xd6\x23\x68\x75\x5a\x9d\x73\x6e\x34\x60\x21\xb5\xff\xf6\xe8\xa5\x74\x15\xc2\xb6\x59\x3c\x0f\x7f\xbd\x5a\x4f\x08\x1d\x36\x69\xe5\x2e\x58\x44\xd0\x08\xc8\xca\x3c\x22\xae\x42\x98\x3e\xc8\x93\x9d\x13\xf2\x86\x81\xf3\xb6\x90\x1a\x89\xbe\x41\x06\x0f\x84\xe9\xce\x8c\x0b\x06\x84\xfc\x82\x27\x0a\x8d\xde\xba\x04\xfd\x27\x06\x4a\x27\x6d\xaf\xb2\xe0\x16\x33\xe2\x91\x32\x4d\x87\x26\x10\x74\xda\x29\xd1\x65\x8d\xf8\x7f\xa1\xa5\xd7\xe0\x8f\x7c\xed\x10\xf3\x1f\x78\x95\xbd\x37\x4e\x7c\x07\x18\xb8\xab\x9c\xb9\xb4\x5f\xd7\x84\xd0\x73\xeb\x90\xec\xbe\xda\x08\xc2\xde\xbd\xa2\x52\xe7\x14\x2f\x11\xf6\x1b\x57\x5d\x33\x0f\xb3\x66\xc3\x37\x4f\xff\x0e\xcb\x60\x37\x42\xb0\x01\xb7\x40\x4b\x79\x31\x61\xda\xc2\x6d\x93\x77\xaa\xf8\x13\x6e\x47\xa6\x84\xeb\x34\x7e\x60\xd0\x1c\x6b\x5e\x71\x6f\xcb\x00\x83\x5b\x0b\xe2\x63\xa4\xef\xbe\x2a\x42\x4b\xcf\x43\xc5\xc5\x7b\xc4\x08\x75\xe4\xc0\x48\x79\x8c\xef\xe1\x4b\x34\xcb\x6e\x1b\x4c\x27\x28\x14\x6a\xff\x23\x30\x12\xc1\xc2\xda\xd9\x8e\x3f\x13\xaf\xef\x20\xc4\x69\xf8\xc8\x7b\xff\x4e\x65\xc1\xea\x91\xc3\xba\xf5\x45\x0b\x09\x4b\x8a\x39\x3e\x24\x34\x5c\x21\x98\x69\xf9\x8b\x8b\x94\x98\x13\x3e\xed\x7a\x12\xe0\x2c\x78\x99\x35\x51\xfa\x4e\xd4\x3d\xf9\x7c\x7b\x39\x41\xe1\x88\x1b\xe3\xaf\x72\x97\x70\xde\xa8\x31\xca\x50\xc6\x97\x0d\x57\xc4\x9f\x35\xa7\xcb\x1c\x27\xd4\x7c\x2b\xdd\x1b\x67\x71\x86\x90\xce\xcd\xef\xbc\x51\xac\x8a\x90\xbd\x67\xbd\xcb\xe4\xee\xf3\x84\x72\x9a\x25\x69\x23\x7b\x92\x70\xf0\x94\x88\xa8\xfb\xd7\x60\xc2\xc7\xbb\xef\xf3\x0a\xfa\x6e\x10\x9e\xfc\x7f\x7c\xdc\x59\x34\x56\xff\xfb\xff\x71\x43\xc6\x0c\x21\x49\x92\x14\xa1\x49\xa6\x92\x6a\x5f\x48\x42\x69\x52\x91\x42\x28\x09\x95\x14\x9a\xa5\x32\xa4\x91\x26\x85\x0c\x65\x4a\x86\x10\x21\x6e\x63\x09\x65\x8a\xca\x10\xa2\xa4\x24\x2a\xbc\x10\xfd\x57\x1d\xfc\xdc\xff\xb5\x3e\xeb\x7b\xf6\x58\xcf\x6b\x9f\x60\xdf\x7b\xbf\x2f\x07\xf7\x66\xa7\x21\x61\xa1\xdb\x84\xa4\x4d\xf1\x43\x9f\x96\x5e\x24\x14\x2f\xce\xdd\xe7\x5b\xea\xca\x06\xc5\x2d\xfa\xc5\xfc\xf7\xd6\x10\x6e\x84\xcc\x13\xfc\x62\x2f\x41\x88\x78\x33\xe9\x67\xbb\x9e\x12\xc1\xc7\x75\x41\x51\x9b\xa5\x17\x41\xbe\xd2\xf5\x41\xde\x19\x2f\xc2\xef\xd5\x95\x11\xdd\xa4\x47\x70\xcf\x0f\xf4\xf4\xfb\x51\xcf\x40\x75\xd3\x8e\x49\xd9\x0b\x37\xd2\x38\x86\x35\xce\x35\x3f\xaf\xe9\x66\x30\xfd\xcd\xf7\xef\xa7\x87\x14\x09\x2d\x4d\x47\x97\xec\x5e\x65\x4a\x68\x5a\x2e\xc0\x63\xa3\x7c\x86\x50\x55\xf5\x3e\x78\xc2\xa1\xd3\x84\xe8\x7b\xa6\xb2\x27\x37\x9c\x26\x84\xb4\x64\x29\xaa\x7b\x9f\x26\x6c\x1d\x4e\xfa\xc1\xef\x6e\x4e\x50\xe3\x9c\xb8\xf5\x64\xd1\x35\x82\xea\xfc\x47\x51\xa2\x8d\xa7\x08\x5f\x9a\x02\xb9\x3f\xc4\x9d\x24\xd4\x0c\x95\xdd\xe0\x4e\xb5\x24\xf0\x56\xbe\x70\xe1\x38\xea\x49\xb8\x7c\xe4\xeb\x13\x53\xd3\x9b\x04\x1e\x99\x09\xfd\x2a\xc3\x57\x09\xf5\x87\xef\x7d\x51\x4c\x39\xc4\x06\xbb\x94\x70\x71\x49\x6d\x57\x42\xfc\x43\xb1\x5a\x4e\x6d\x51\x82\x67\x98\xe5\x91\xf5\x51\x4b\x09\xfe\x11\x65\x81\xe2\x93\xec\x58\x58\xcd\x3f\x29\xb9\xde\x25\x9b\x40\x67\x3f\x6d\x97\xb4\x7a\x4b\x30\x9f\xeb\xfa\xc1\xa1\xa8\x84\x90\x3b\x3c\xad\xc4\xd8\x2d\x9b\xd0\xbf\x3b\xc1\x34\x74\xb6\x02\xe1\xfe\x58\x7a\x40\xe4\xdc\x61\x66\x1c\x93\x96\x9e\x38\x3f\xec\xdc\xc9\x40\xd9\x41\x74\xc3\xc7\x05\x53\x09\x6e\x27\x33\x93\x58\x55\x37\x59\xa8\x75\xdf\x71\xdc\xcd\xc7\x88\xf0\xd8\xda\xe2\xae\xe6\x9e\x4d\x04\xd6\xf5\xf6\xea\x2a\xd7\x7e\x06\x4b\xc0\xf1\xf9\xc3\x65\x27\x82\xee\xb6\x31\xbc\xfb\xb1\x8e\xf0\x4b\xfa\xdd\x12\x63\x75\x2b\x82\xc7\x5e\x01\x2d\x2e\xd3\x0b\x84\xd7\xe9\xdb\x65\x2c\x1f\xc8\x11\x6e\xf9\x9e\x10\x96\x14\xfa\xc2\xe0\x1d\x67\xe2\xc3\xd0\x15\xcd\x84\x55\x1d\xe6\x1b\xfe\xe1\x4e\x5b\xcd\x61\xc3\x1f\x0d\x84\x7e\x97\x9e\xb5\x6a\x25\xed\x84\x9e\x23\xbf\xba\x66\xf6\x25\x13\x44\x37\x84\x3f\x7f\xd0\xe0\x4d\x78\xf7\x87\xe7\x2c\x53\xf2\x94\xf0\xe2\x85\xf7\x41\xef\x9a\xb9\x04\x7d\xeb\x7b\x8b\x9d\x2d\xe2\x09\x23\xdd\xd1\xbe\x12\x1c\x2f\x08\x0d\x31\xa7\x42\xe4\x45\xce\x13\xd6\x46\x8a\xd2\x01\xcb\x5a\x06\xd9\xe5\xbd\xe1\x8f\xf4\xf7\x11\x5e\xf4\xc6\xca\xd8\xc5\x9d\x21\x28\x34\x94\xf5\x35\x99\x04\x11\x5a\x56\xeb\x7e\xd8\xb7\x7f\x2b\xc1\xe1\x3c\x57\x57\xdc\xdb\x95\x04\xff\xdf\x8b\x97\x3a\x2c\xdf\x43\x08\xd7\x9b\x9b\x95\x0b\x69\xc2\xc7\x25\xbb\xd6\x1f\xd8\x25\xc3\x86\x9e\x15\x99\x8f\xb2\x12\x87\x19\xc4\xbc\xe5\x95\xb4\x6f\x09\x22\x28\x94\xb4\x58\x97\xcf\x76\x25\x5c\x55\x4c\x08\xf5\x5f\x7a\x90\x90\x36\xfc\x31\x77\xbd\x95\x1a\x41\x47\xb6\x59\x48\x37\xca\x9e\x20\x37\x6d\xaa\x77\xd4\x9a\x39\x84\x74\x7e\x91\x90\x69\x81\x0a\x84\xb3\xc1\x33\xa1\xf5\x4d\x9a\xf0\x8e\x67\x65\x48\xc6\x9f\x34\x82\xd1\x14\xa3\x78\xcf\x0d\xcb\x08\x4d\x99\x0f\xae\x7d\x78\x2d\x4b\xb0\x48\xfd\x96\x6d\x64\x6f\x45\x78\x92\xde\x12\x3f\x39\xa1\x9f\x19\x87\xdb\xf1\x25\xd1\xb9\xe1\xc5\x79\xf0\x66\x76\x97\x67\x66\xc9\x10\x12\xb4\x76\x7a\x34\xba\x4c\x25\x64\x2f\xdf\x31\xdf\xc3\xbe\x96\x41\x72\x91\xfe\xdc\xf5\x91\xe2\x34\x8e\x61\x7b\x6e\xd5\xed\x3f\x9b\x18\xf4\xda\x2c\xfd\x31\x7c\x5f\x91\xf0\x40\x81\xf3\x74\xe4\xab\xb7\x79\xa8\xdf\x6a\xe5\xa3\x20\x55\x4c\xff\x01\x99\x8d\x46\x8a\xf3\x02\x2e\x11\xee\x9b\x3f\x3b\x90\xf9\xc8\x9e\x0d\xab\x73\x56\x1d\xbe\xd9\x36\x93\x0d\x3e\x5f\x1d\x5a\xb7\x2d\xaa\x67\xb0\x30\xc9\xa6\x36\x71\xbe\x1f\x41\x7f\xce\x4e\xee\xce\x30\x22\x3c\x5a\x30\xc5\x5d\xf8\xe7\x27\x66\x1c\x0d\xdc\x97\x06\xe9\xcb\x07\x36\x84\xbe\xe0\xfd\xb3\xee\xd2\x2d\xfa\x0f\x1c\xdc\x65\x56\x6e\xa0\xa3\xf8\x5f\xe8\xfa\x19\x5e\xf6\xa9\xfe\x3b\x33\x0e\x99\x25\x92\xf3\xec\x5a\x27\x11\x78\x0e\x8a\xcc\x3a\xab\xbc\x84\x0d\x07\xae\xdf\x3b\x25\xf0\xfa\x17\x03\x4e\xc3\x4f\x02\x10\x5e\x49\x68\x7b\x7b\xeb\xd8\x30\x4f\x39\x83\xe3\x8b\x3b\x0e\x1e\x35\x11\xa0\x71\x84\x9e\x7d\x66\x2a\xc9\x2b\x48\x70\xbc\xdb\x3f\x41\x79\x58\x91\xc0\x2f\xb5\xcc\xe0\xd9\x95\x15\x04\x6f\xc1\x17\x33\xe3\xca\x5a\x19\x58\x85\x8d\x16\xa9\xc5\xeb\x12\x76\xa6\x58\xcf\xd7\x68\xf8\xcd\xe0\x48\xe2\x80\xe5\xb3\x5c\x39\x42\x47\xf4\x92\x2f\xf3\x38\x22\x08\x56\x7e\xb2\xed\x41\xce\x1c\x84\xf8\xad\x73\x4f\x6c\xf0\x70\x24\x28\x3e\x49\x99\xea\xa9\x3c\x9f\x60\xf4\xd6\x5c\xa9\xd6\x72\x35\xe1\x64\x5d\xc6\xce\x7d\x13\x54\x09\x8c\x9b\xc6\xee\x80\xc3\xae\x84\xd8\xd8\x37\x4b\x1e\x9c\x9b\x46\xb8\x78\x7a\x69\x69\x84\x9b\x32\xe1\xa1\x59\xec\x74\xf5\x45\x13\x08\x8b\xaf\x7e\x29\xfe\xb0\xf1\x05\x33\x8e\x1b\x3f\xdc\x9f\xaa\xf8\x71\x12\xf6\x0a\xed\xfd\xdd\xa0\x56\xcf\x80\xe7\xd0\xc6\x1f\x01\x9e\xdc\x34\x0e\xa6\x85\x6f\x4c\xe4\x2d\x27\x81\xd9\x32\xb5\xf9\x8a\xcc\x55\x16\xa6\xcd\xb8\x35\x79\xec\xca\x32\x42\xb6\xab\xcf\xe7\xb7\x97\x8a\x09\xca\x8a\xbf\x16\xf9\xba\x17\x11\x1e\x6e\x7e\x36\x47\x2a\xa4\x98\x30\xcd\xdb\xa1\xd8\xda\x78\x84\x81\xe7\xa9\xbe\x1d\x6b\x1b\xb7\x11\x38\x6b\x4c\x44\x27\xfd\x4a\x25\x70\x4d\x8e\x5f\xbf\x31\x69\x36\x81\x67\xa7\x89\xaa\xd6\xba\x29\x84\x9c\x0b\x65\x7f\x24\x24\x6f\xb1\x60\x77\xe5\xa8\x64\xda\xa5\xed\x84\xbc\x35\xcb\xb7\x69\xeb\x13\x41\x7f\x77\xec\x81\x9d\xfc\xb2\x84\xb0\xf9\xd6\x72\xdc\x7c\x7c\x84\xe0\xc9\x1e\xfd\xfa\x6b\xfb\x19\xac\x55\xf7\x1b\x79\xd4\x78\x8b\x60\xb9\xee\x60\xf6\x4c\xd3\xc5\x84\x67\xd2\xb3\xc6\xa2\xe3\x27\xb1\x21\x24\xa3\xdf\x5f\x7a\x84\x8b\xe0\xa9\xfe\xed\x59\xa5\x82\x2e\x21\xfb\xed\x0d\x69\xbd\x0f\x23\x0c\xb6\x29\x2a\xae\x59\x3b\xe3\x33\x03\x11\xdd\x23\x6f\xa4\x97\x4e\xa3\x71\x28\xe0\xf4\x6a\xa5\xb4\x7a\x06\x59\x6a\xb4\x7d\xed\x6e\x7d\x82\x92\xb1\x52\x80\xe6\x49\x03\x02\x9f\x90\xc0\xec\xfe\xc2\xc9\x84\x88\xb8\xf7\x4b\xdb\x77\x08\x11\x46\xc4\x9e\x3e\xae\xb9\xf0\x83\xc1\xa4\xea\xe0\x75\x27\xaf\x46\xb3\x60\x78\x3e\x65\xbf\xdc\x7d\x17\xc2\x91\xda\xc0\xa6\x57\x75\x1d\x0c\x6a\x9b\x6e\x4f\xbb\xef\x59\xc7\x06\x89\x79\x97\x6c\x0c\x27\xbd\x64\x30\xd7\xef\xa8\x4b\x5f\x64\x3f\x03\x13\x2f\x55\x11\xee\xd2\x8b\x84\x18\x63\xa1\xaa\xad\xe7\x96\x13\xae\xec\xe5\x98\xf0\xbd\xe4\x16\x1b\xbe\x98\x94\xf1\x4d\x51\x38\x43\x58\x53\x3b\x72\xbe\xa4\xe0\x34\x0b\x51\x7b\xf6\xd6\xbb\x57\x24\x10\x2a\x85\xae\xeb\xba\x65\x2e\x26\x68\x7f\xea\x7e\x3c\xf1\xd1\x0f\x06\x6a\x91\x32\x47\xdb\x02\x8d\x09\x53\xe6\x6f\xee\xe9\x6b\xdb\x42\x50\xe3\x48\xf4\x81\xc3\x12\x82\xca\x92\x33\x87\xd3\x3b\x25\x08\xaf\x8d\x1f\x15\x9d\x88\xe5\x24\xf8\x07\x09\x66\x67\x97\x7e\x60\x20\x62\x9d\x3b\x7f\x58\x46\x84\xc6\xf1\x2d\xb1\xa4\xe8\xe8\xb6\x85\x84\x45\xcb\xf6\xef\xb0\xea\x79\x97\x87\xf3\xf2\xfb\xe8\xae\xaf\x29\x8d\xe3\x60\xef\xca\x0b\xbb\x72\x24\x08\x17\xcd\x44\xa6\x2e\xb9\x9d\x42\x50\x66\x39\xeb\x6c\x71\xc8\x25\xf0\x8e\x2e\xb8\xe0\xf2\xb5\x88\x20\xbe\xb0\xdb\xb0\xec\x4a\x2a\x0b\x75\x8f\xf8\x3f\x9c\xff\x53\x44\xf8\xe6\x0b\xf1\x59\xaa\xcf\x58\xe8\xfe\x39\xcb\xbd\x42\xa6\x98\xb0\x2f\xae\x5a\x4f\x92\x37\x92\x50\x5a\x70\xfd\x62\xb7\xcb\x2d\xc2\xa7\xcb\x2a\x57\x58\x4f\xef\x12\xda\x87\xaf\xfa\x2e\x1d\x0a\x27\xe8\xaf\x7b\x14\xf0\x2a\x2d\x86\x60\x22\x18\xf0\x48\x12\x9b\x09\xc2\x1e\x5b\xc5\x63\x79\xae\x11\xdc\x72\x9d\x55\xfe\x41\xc1\xc8\x8a\x7f\xe6\xc1\x73\x84\x09\xac\x97\x46\x9f\xdb\x12\x09\x0b\xb7\x73\xc6\x26\x29\x89\x10\x4c\x55\x66\x09\x78\x59\x75\x30\xe3\x68\xb2\xab\xe3\x74\x16\x6c\xca\x43\xdd\xe2\x9d\x71\xd9\x6d\x37\x08\x42\x4b\xad\xf8\xb9\x6e\x18\x10\x2c\xed\x37\x24\x18\x48\x08\x12\x26\x3e\x10\xd7\x08\x3a\x9b\xc9\xc2\xd9\x8e\xae\x7a\xbb\x29\x37\x59\x78\x68\x26\xad\xff\x59\xf9\x14\x21\x76\xc6\x73\xd1\xaf\x93\x1f\x11\xda\xd6\x3d\x29\x2c\x72\x9e\x4e\xb0\x8a\xb4\x94\x8e\x7b\x5b\xc7\x60\x2d\x9f\xc2\x0e\xdd\xef\xfe\x2c\x1c\x5b\xd7\xe6\x65\xd4\x25\x46\xe3\x18\xb9\xbc\xa2\x5c\x79\xb2\x3a\x1b\x0a\xf4\x68\xfb\x97\x63\x0b\x09\x51\x46\xe7\x05\xd3\xfe\xde\xea\x92\xdc\xeb\xf2\x04\xba\x94\x08\x17\xad\x2d\xd6\x26\xa7\x6d\x21\xbc\x95\x8d\x1f\x3a\x99\x29\x44\xf0\xf6\x09\x2c\xbe\xc8\x2d\x4b\x18\x2b\x89\x96\x70\x5b\x30\x99\xa0\x7e\xd5\x30\xa0\xaa\xe4\x0a\xa1\xea\x49\xa6\x8b\xfb\x2d\x05\xc2\x84\xce\xa5\x29\x31\xcf\xb4\x08\xf3\x96\x25\xf6\x95\x3a\xfb\xb0\x43\x62\xd5\x62\x25\x93\x30\xc2\xce\x8a\x34\x51\x27\xeb\x30\xb6\x52\x38\x73\x8f\x52\x62\x16\x1f\x41\xcb\xe2\xf2\xb3\x57\x47\xf9\x09\xa7\x3e\xf1\xcd\xe8\x50\x15\x64\xc3\x63\x8b\xa3\xce\x17\xc7\xa2\x19\x38\x1f\xad\x2f\x31\x9c\xba\x89\xf0\xb2\x9d\xb7\xed\x82\xf2\x6e\x36\xdc\x71\xf1\xba\x55\x56\x75\x9a\x0d\x1e\xfb\x9f\x57\xb1\xe6\xef\x67\x43\x22\xdf\x02\xf9\xe3\x71\xf2\x04\xf7\xba\xdd\xe5\xed\x9b\x04\x09\x3d\xaf\x1c\xbc\x66\x26\x82\xc1\x85\xad\x2e\x93\xf9\xed\x6d\x08\x6f\xee\xef\x6a\x38\x3b\xf6\x88\x30\xe4\xac\xf1\xb2\x7e\x30\x93\xe0\x6b\x2b\xcd\xd1\xb1\xf6\x5d\x1e\x6a\x53\x0a\x7f\x7a\x9e\x30\xa3\x71\xb8\x96\x7e\x15\xaf\xe1\xaa\x60\x90\xf1\xdb\x23\x50\xd2\xec\x15\xe1\x57\xe0\x84\x2d\xdd\xef\x7f\x33\x38\xb1\x27\xc0\xd6\xf2\xc2\x73\xc2\xf2\x7c\x5b\xc3\xf7\x97\x16\x10\xb2\xdc\xeb\x15\xd6\xf5\x2a\xb3\xc1\xa6\xfb\x51\x23\xb7\x74\x1e\x83\x85\x46\x25\xbb\x38\x2e\x4c\x24\xfc\x2e\x39\xf4\xea\xe1\x7b\x79\xc2\x7d\x1f\x39\xc7\xef\xf6\x77\x09\xb7\x1f\x8c\x44\xe9\x7f\x2b\x24\x18\x2d\x33\xfa\xce\x39\xea\x45\x18\x3b\xd7\x22\x7a\x7a\x51\x01\x1b\x78\x63\x92\xef\x6f\xf3\x3e\x41\xb0\x37\x7f\xca\xf5\xe6\xef\x19\xe9\xb8\x5d\x4d\xc8\xbc\x66\x19\x1a\x87\xf2\x0a\x3f\x93\xd7\xaa\x6d\x0c\x66\x44\x1d\xad\x60\xf1\xfd\x3d\x7e\x2f\xdc\xde\x9d\x68\x65\x40\x98\x9b\x59\xb3\xb5\x89\x3b\x85\x50\x72\x20\x97\xfe\xc1\x31\x7a\xfa\xe4\x92\x29\x7b\xd9\x10\xb6\xe5\xf0\x3b\x05\xb3\x36\x06\x4f\x97\xdc\xd5\x3e\x1d\xc6\x22\xfc\x88\x3b\x24\xf8\x0f\x1b\xb7\xfc\xbc\xfe\x0f\xcf\x85\x64\xa3\x9b\x3d\x58\x84\x0f\x85\xd3\x67\x88\xc5\xb0\x08\x0f\x8c\xfb\xce\x4c\x17\x3f\x49\x58\xa4\xa9\x20\xf8\xb8\xc0\x88\x50\xaf\x6a\x2e\xd9\x1b\x61\x4e\x30\xd9\x10\x9b\xdb\xe8\x6b\x46\x90\xef\x52\xc9\xf9\x53\x18\x49\x38\xaa\xaf\x55\xb9\x30\x39\x82\xf0\x65\x24\xd0\x39\xeb\xf1\x65\x82\x6f\xf4\xa2\xb7\x95\xa2\xbd\x0c\x3a\xb8\x84\x24\x3b\xfa\x8c\x08\xcf\xea\xde\xbb\x2a\x04\xf7\x32\xd0\x08\x68\x99\xaa\xf9\xd6\x80\x10\xe5\x1e\x6e\xb0\x7c\x9b\x02\x61\x53\x8c\x15\xcf\xac\xbd\x03\x0c\x3c\xb5\x47\x0b\x2c\x0e\xab\x11\xcc\x64\xd7\x8e\xb9\x67\x3e\x22\xd8\xb6\x36\xc8\x0e\x4f\xcf\x24\xac\xfd\x6e\x51\xa2\x55\x31\x89\xb0\xbc\xd9\x7a\x13\xef\xc4\x21\x66\x1c\x77\xfc\x15\xbf\x6c\x34\x2d\x22\xec\x92\xda\x30\x75\xd3\x5f\x14\xac\x09\x60\xa9\x04\xbc\x22\x0c\x86\x2a\x2d\xbc\xbf\xac\x96\xf0\xa7\x52\x87\xf3\xdf\xe8\xf3\x0c\xa7\xc2\xe6\x3b\xbb\x09\x8e\x91\x73\x7f\x6e\x5b\xf1\xf2\xef\x32\x52\xb8\x26\x2f\xfa\x3e\x21\xcb\x6f\x42\x8e\xfe\xef\x62\x36\x6c\xd6\xfd\x7e\xef\x1f\x72\x16\x9c\x8a\xc8\x0a\xce\x25\x4c\x4e\xc8\xff\xd2\x59\x64\x45\x38\x56\xde\xd5\x5f\x75\xbc\x8e\x60\x51\xfc\xda\x3e\xd8\xf9\x3d\x61\x22\x4f\x5f\x47\xb3\x6b\x1d\xc1\x75\xea\x5b\x96\xcb\xef\x67\x84\x43\xdb\xcd\xb7\x0b\x70\x6d\x20\xe8\x56\x38\xcc\xfb\xd8\xf5\x9e\x41\x0c\x13\x9b\xc3\x17\x32\x87\xc6\xd1\xc5\x54\x87\x21\x63\x8c\x81\xc6\x34\xad\xc0\xb1\x17\xfd\x0c\x94\x0e\x39\x5c\xcf\x1c\x52\xa2\xff\xc0\x9c\xb5\x1b\x1b\xef\x5a\x36\xe6\xe1\xd8\xe0\x54\xb7\xd1\xad\xcb\x09\x4a\xb9\x92\xa7\x57\x7f\xba\x4b\x98\xf9\xe0\xcd\x05\x9f\xa5\x81\x84\x00\xbf\x23\x5f\x3a\x9a\x6e\x11\xbc\xda\xa2\xa6\x9e\xb0\xfc\x4c\x78\x93\xb8\x83\x63\xe2\x0e\x7f\x16\xb6\xdc\xdc\xec\xa7\x11\x59\x44\xb0\xf6\xad\xdc\x39\x55\xc3\x8e\x10\xb1\xaf\x66\xf1\xcc\xd4\x5c\x42\xcb\xf3\x37\xdd\x77\x27\xcc\x20\x44\xd6\xe6\x7c\x49\x68\x36\x23\x24\x3c\x90\xe3\x4d\x1d\xb8\xc6\x86\x8f\xc7\xb7\x5b\x8a\x3b\x2b\x12\x5c\x67\xdd\x9b\x18\x54\x6d\x48\x98\x6c\x97\xe8\xb3\xfd\xc0\x59\xc2\x91\xc0\xa3\x46\xcd\x7f\x5f\xd9\x49\x87\x9c\x75\x58\xd2\x0c\xe1\xf2\x44\xcb\x20\x9f\xbb\x1b\x08\xbd\x0d\xf7\xdc\xd7\xf8\xdd\x63\x83\xd8\xf2\xad\x0a\xa5\xef\xce\x11\x96\xae\xb6\xd2\x16\xf8\x39\x8d\x70\xd2\x60\xe2\x04\xd6\xc6\x49\x04\xf1\xfc\xc6\xd7\xc7\x87\xfd\x09\xcf\x16\x71\x84\xef\x58\x7e\x8c\x70\x7a\xe5\xaa\x02\xfb\xdd\x07\x09\x61\x46\xe0\xa8\xbe\x79\x9c\x20\x36\xe5\xf0\xb1\x8c\xd5\x06\x04\x81\x7c\xfb\x8b\x43\xf7\x15\x08\xfa\x32\x73\xba\x0d\x34\xe2\x08\xea\x67\xf6\x15\x24\xc7\xfa\xb2\x90\xc3\x1f\x34\x7b\x96\x4d\x0c\x0b\x19\x15\x0d\xb7\x22\x9b\x33\x08\x09\x3c\xae\x22\x9f\x37\x3c\x65\x61\xa6\x7c\xf1\xae\x5b\x32\xd1\x84\x3f\x0f\x65\x66\x3e\xe5\xa9\x22\xac\x0f\x3d\xdc\x58\x50\x99\x4f\x78\x72\x21\x2e\xa6\x97\xb3\x90\x20\x19\x71\x3b\x77\x4d\x80\x3f\xa1\x78\x9f\xba\x9b\xc8\x48\x37\x83\x8f\xee\x63\x4b\xbf\x8d\x72\xd0\x38\x4e\x64\x66\xc5\x7c\xf9\xb1\x81\x90\xf3\x32\x35\xfe\xd3\xf9\x24\xc2\xd0\xeb\xa7\x49\x77\x3c\x4f\x10\xa2\x66\x3f\x5e\x71\xe5\xd8\x49\xc2\xed\xe0\xa7\x2d\x5b\x8f\x5f\x62\x2b\x76\x13\x6f\x9d\xeb\xf7\xbb\x45\x70\x59\x57\x94\xa1\xfd\xe1\x3c\x61\x6e\xde\x36\x89\x34\xdf\x5b\x04\x03\x2e\x15\xd5\x0d\xab\x59\x84\x53\x47\xe2\xe6\x99\xdd\x51\x24\x4c\x5e\x74\xdb\x30\x73\xe9\x17\x06\x32\x0d\x1e\xf3\x7b\x3d\x04\x69\x1c\x1a\x75\x13\x83\x5c\x95\x86\x18\x1c\xfb\x64\x24\x32\x70\x45\x98\x30\xb5\x7d\xd3\xf5\x53\x27\xc4\xd9\x60\xf3\xf8\x9e\x4a\xcf\x09\x4e\xc2\xe4\xaf\x37\x92\x43\x45\xfa\x18\x5c\x70\x9e\xb7\x30\xcd\x29\x83\xd0\x97\xaa\xbb\xea\x1f\xee\x5c\x17\xb6\x6b\x2a\x6b\x66\xe1\x78\xe8\x9b\xd8\x94\xbf\x65\x4d\xd3\x48\xb4\x6c\xee\xee\xff\x09\x11\xeb\xbd\xf2\x49\x53\x8e\xfc\x4f\x68\x38\x6d\xa9\x15\xd0\x59\x41\x68\x33\x3b\x31\x94\xc0\x1b\x43\x38\xee\x54\xad\x7a\x2e\xe0\x29\x83\x18\xf7\x4d\xed\xae\x42\xdc\x84\x90\x29\x2b\x7f\x3e\x9c\xa3\x43\xa8\x17\x59\xa0\x26\x9c\x9b\x4a\x30\x77\x7f\x63\xf0\xa3\x22\x9a\xa0\xae\xa6\xdc\x1b\xe0\x57\xc4\xa0\x79\x30\x5b\x57\x46\x7e\x3d\x8d\xc3\xff\xcb\xf7\x0f\x4d\x2f\xc5\x08\xeb\xde\xf8\x15\x6b\xda\x15\x12\x1c\x46\x4a\x36\x5d\x49\x4f\x22\x98\x38\xfe\x5c\xf3\x4d\x51\x8a\xb0\xf2\x98\x41\xd1\xb9\x6d\x57\xd9\x30\x65\xcf\xd2\x03\xbd\x3b\xdc\x09\x8a\xf3\xaf\x6a\xbc\x2e\xfe\xc1\xc0\xb5\x4b\x4c\xd1\xc6\x29\x89\x70\xc3\xfc\xca\xe3\xf7\xb5\x91\x04\xed\x68\x99\x5c\x69\xc7\x24\x1a\x1f\x2d\x8c\x94\xbe\x70\x77\xd3\x55\x36\x70\xf1\x49\x4c\x4e\x38\xe1\x49\x28\xfe\xc0\x53\xfe\x66\x70\x37\x5b\x29\xf5\x7b\xa0\x2a\xf8\xf7\x47\xf6\x4d\x4c\xf7\x08\xb5\x36\x23\xfc\x51\xb5\x3e\xb5\x2d\xc5\x8f\xe0\x28\x5a\x96\x93\x70\xec\x05\x21\x68\xce\xf6\x6c\x2f\x29\x59\x36\x3c\x9c\xf4\x76\xd3\x9d\x1d\x5a\x6c\x10\x79\x97\xb5\xf5\x8d\xee\xcb\x3c\x9c\x3d\xf4\xf6\xa3\xf4\x48\x12\x61\xf1\xd2\x13\x9f\x8e\x35\x3c\x22\x74\x58\x4e\xed\x1b\xbb\xb3\x84\x30\xba\xc3\xd7\xf6\x1a\xbf\x0c\x21\x7a\xde\x8e\x22\x31\xf5\x12\x06\x79\xaf\xdc\x1a\xce\x4a\x7e\x66\x40\xf5\x59\xc7\x86\x1b\xd7\xd3\x7f\x60\xb9\xb6\x7e\xfe\x95\x83\xea\xff\x85\xd5\x31\xdd\x07\x65\xfc\x3a\x18\x28\x37\x2b\xf1\x04\x56\x69\x11\x1e\x69\x4a\xdf\x6d\xeb\x5e\x48\x28\x38\x71\x51\x62\xbb\x68\x3e\x21\xcf\x37\xce\xc5\xf1\x57\x15\x21\x2c\x7e\x25\xab\x7d\x7e\x39\xe1\xf1\x55\xf5\xe6\x98\x39\xe5\x84\x29\x53\x42\xae\x48\xbd\x4e\x27\xf8\xeb\x3d\x2f\x6f\xfe\x3b\xfa\x6a\x78\xcd\xe4\x84\x52\x1a\xa1\xe8\xeb\x92\x91\xfc\x97\x0f\x09\xd6\x09\x39\xcd\xc9\x2e\xf1\x84\xed\x82\x3a\x77\x2d\x94\xef\x13\xb6\xe6\xd6\x7c\x3e\x41\x05\x04\xb3\x98\x65\x14\x92\xea\x46\x68\xbe\xff\x42\x9b\x63\xf6\x2f\x66\x1c\x33\x26\xa9\x79\xa7\xcf\x7c\x9b\x87\xce\x9c\xa9\xf1\xdd\xcf\xac\x08\x9d\xce\x07\x79\x93\xd7\x9e\x21\x4c\x38\x29\xf6\xb0\x3d\xd2\x95\xe0\xe5\xad\x5b\xf7\x9a\xc7\x91\x50\xdc\xbf\xed\xcc\x8d\x32\x2d\x42\xd6\xc6\xe7\xfc\xf5\xda\xcf\xf2\x10\x50\xb1\xb9\xb8\xde\xb6\x80\xf0\x5d\xc2\xa9\xf1\x1f\x02\xfd\xd7\x3f\xba\xbf\xe3\x1e\x5b\xa9\x31\x0a\xeb\x1a\x19\x73\x23\x1c\xa0\xe6\x9e\x35\x46\x7e\x84\x9b\xfa\x76\x7d\xbb\x67\xe5\x13\xea\x8f\x3e\xf8\x63\xf7\xe5\x05\x61\x5e\x65\xd2\x1a\xf1\xbf\x0f\x07\xa1\xaf\x5e\xd5\xff\x4a\x87\x54\x36\x67\xf0\x35\x5f\xc2\xfb\xf8\x0b\xeb\x63\x36\xfa\xd2\xd0\xe5\x2c\x99\xb0\x3b\x66\x2c\xd4\x15\xf0\xe9\x6a\xe5\x5c\x25\x7c\xaf\x0d\x0a\x58\x9d\xef\x33\x7e\x09\x62\x52\x7f\xd6\x1c\x95\x38\x49\xc0\xfc\x9b\x5a\x95\x32\x27\x09\x9e\x91\x9c\x6a\x0b\x54\x8e\xb3\x8d\x22\xec\x8e\x6f\xb8\x7d\x3a\x8f\xa0\x5d\x20\x3d\x77\xc5\x3a\x1f\xc2\xce\x0c\x8e\xb5\xd9\x13\x67\x13\x26\x29\x6f\x6c\xca\xab\xce\x23\x3c\x7f\x73\xfb\xee\xbb\xa1\x3c\x82\x55\xf0\x98\x5e\x90\x73\x00\x5b\xe1\x35\x14\x4d\xd0\xe8\xbb\x40\x78\xee\x39\xa7\x30\x6a\xf3\x39\xc2\xb7\xf4\xfa\xa4\x93\x33\x4f\x10\xf4\xe4\x37\xab\xbb\x7c\x49\x64\xbb\xc6\xa6\x21\xfb\x9e\xba\x96\x1f\xc1\x4d\xe1\x96\xe5\xc5\x3d\x65\x04\xc1\x91\xd1\xba\xbb\x7a\x65\x04\xb5\xd0\x02\x1e\xc3\xbf\x65\xd5\xcf\x6b\xd1\x5e\x6a\x49\x84\xad\x99\xb5\xbe\x67\x75\xef\x10\x1c\xb7\x14\xe7\xdf\x50\x8e\x23\x84\x72\x75\xf7\xbe\x1c\xfa\x48\x28\x39\xf2\xed\x74\x66\x5b\x0b\xa1\x3d\xcb\xb6\x52\x46\xff\x3d\xc1\xeb\xaa\xcc\x3e\xab\xe6\x38\xc2\x68\x5e\xea\x21\xa1\x57\x77\x08\xd7\x6f\xa9\xd7\xdc\x59\x78\x8e\x85\xc3\xae\x21\x8f\xef\xc7\x9e\x25\x68\x2e\xde\x77\x78\xba\xc4\x29\xc2\xf2\xdd\x92\x5f\x8a\x07\xd2\x09\xc9\x5b\x2b\xd7\x29\x5a\xca\x13\x6e\x6d\x36\x33\xbd\x71\x2d\x8e\x70\x66\x8e\x76\xf0\x6e\xed\x60\x82\xa4\x08\xf7\xb3\xef\x2a\x45\xff\x85\xab\xdd\xa4\x3c\xb4\xc6\x85\xb0\x5e\x3a\x73\xfb\xc3\x86\x74\xc2\x46\x67\x8b\xcf\x22\x31\xd9\x84\xb8\x92\x3f\x67\xf4\xe6\xd6\x13\xe6\xc6\x09\x4d\xe0\xd0\x35\x26\xb4\x2e\x90\x5f\xb7\xeb\xa6\x11\xe1\xf7\x05\x9d\xcb\x9b\x05\x45\x08\x16\xb1\xbf\xfa\x67\xea\x4d\x23\x0c\xed\xb2\x88\x3a\xfd\x4a\x86\x30\xe8\x26\x7f\xba\x6c\x6f\x1d\xa1\xc1\xf4\x0b\xe7\x00\x25\x10\x6a\x29\xd1\xcf\x50\xfc\x24\x0b\x25\x93\xf4\xfd\x83\xe0\x49\x58\x90\xdf\xbb\xe1\x40\xd1\x03\x42\xf5\xe3\x64\xbe\x72\x95\xc3\x84\x88\x73\x33\x79\xa6\xfd\xf6\x64\xa1\x6c\x93\xc2\x77\xb7\xe0\xa3\x2c\x30\xaf\x7d\xa6\x35\x2a\x1d\x26\xbc\x2e\x1c\x28\xb0\x8f\xca\x24\xec\xf3\x8e\xec\xd8\xfc\xbc\x80\x85\xc5\x86\xc6\x0b\x36\xd7\x2f\x23\x94\x65\x6d\x14\x75\xf8\xf1\x9c\x90\x5e\xc9\x8c\x39\xf6\x24\x10\xee\xbb\xed\xfe\xad\xe9\x13\xc5\x82\xf8\x1e\x6e\xd3\x86\xfa\x54\x16\xda\x26\x07\xdd\x75\xed\x0f\x26\xdc\x3b\xf1\x23\xb0\x71\x86\x1b\x81\x9a\xb9\x7f\xc5\x1c\x93\x27\x7c\xba\x77\xe0\xad\xa3\xa5\x0a\x21\xfb\xfb\xf2\x53\x57\x17\x67\x12\xac\x3b\x2e\xf2\x2e\x77\xc8\x26\x84\x16\x28\x88\x7c\xcf\xf6\x23\x88\xed\x5b\x9d\x79\xa7\xdd\x8a\xf0\xfb\x6e\x67\xe3\x9e\xce\xbb\x84\xe1\x1b\x96\xd7\x4e\xa5\xbe\x22\x78\xbe\x14\xbd\x71\x41\x66\x2f\x0b\xbf\x54\x83\x6e\xce\xd6\x15\x21\x44\xf7\x1e\xde\x3b\xa2\x99\x4d\x08\x5e\xcf\x19\x7e\x33\xa8\x93\xc1\xec\x95\x7b\x47\x45\x5a\x13\x18\xbc\x7e\x74\xd1\xc0\x62\xb2\x19\x8d\x23\x7f\xc0\x28\x6a\xfb\x8b\x79\x84\xac\xcf\x6e\xeb\x47\xc7\x66\x13\x92\x9c\xca\xef\xb8\x4c\x32\x25\x74\x2d\xfc\xdd\x77\xd8\x74\x02\xe1\xb5\xd2\x2b\x8b\x93\xbd\xab\x59\x98\x70\xbc\x8a\x67\x5d\xc1\x08\x83\x6f\x9a\x0d\xce\x02\x72\xab\x08\x1b\x46\xf5\x98\x17\x03\x46\x84\x03\xc2\xfd\x33\xde\xab\x4a\xb3\xc1\xbb\x77\xe0\x91\xce\xa4\x01\x06\x03\x07\xf6\xbf\x56\xa8\xbc\x41\x10\x7d\x69\x7a\xeb\xe9\x43\x23\x36\x84\x26\xc6\xff\x12\x1f\x5c\x4d\xa8\xd6\xf4\xe3\xb7\x8f\xe1\x22\x68\x28\xeb\xf0\xf8\x68\x96\x12\x2c\x17\xe5\x4e\xf9\xf2\x6b\x3e\xe1\x88\xba\x57\xd6\xab\x77\xbc\x04\x21\xfb\xe7\xa2\xea\x57\xa7\xb0\xa1\x91\x51\xad\x33\x5d\xee\x4b\xf0\xaa\xcd\xb9\x34\xef\xc0\x0b\xd6\x78\x09\xbd\x1a\x93\xf2\xd3\xe6\x1c\xe1\x9a\x42\x08\x67\x41\x0a\x37\x61\x88\x3f\x79\x73\xe5\x74\x75\x02\x73\x8e\x09\x3c\x30\x26\x4c\x50\xb2\x09\x9e\x7e\x72\xd5\x1f\x06\xb6\x05\x8a\x33\x52\xec\x16\xd1\x38\x24\x94\x85\x63\x67\x04\x95\x31\xd8\xe8\x1e\x55\x72\x7b\x5b\x15\x83\x91\x6a\xcf\xd7\xcf\xa0\x44\xe3\x38\xc5\xc7\x24\x27\xab\x36\xe6\xc1\xef\x47\xd6\x15\xdb\xf7\x9b\x09\x88\x5d\xab\xf6\xea\xef\x52\xfb\xc0\x8d\xe5\x70\x62\xca\x46\x02\xef\x3a\xbb\x58\x70\x97\x11\x56\x8e\x2d\xbb\xdd\xe3\x96\x44\x50\xb0\x9c\x59\x1e\xb3\x55\x87\x10\xf9\xc7\x78\x8f\x82\xe0\x19\xc2\x1b\x57\xb9\xa5\xff\x60\xf2\x74\x7f\xf1\xa0\x58\x00\x21\x4c\x4c\x70\x44\xdc\x37\x8a\x10\xea\xca\xf9\xcd\xb2\xb1\x9b\x41\x0b\x9f\xf5\xab\xe6\x44\x29\x42\x17\xab\xc3\xff\xf3\x9d\xc5\x6c\x30\x5b\xf5\xf5\xda\x14\xd5\x4e\x06\xfb\x0c\xf6\x57\x99\xbe\x2f\xa4\x71\xd4\x5c\x38\xdb\xf9\x0f\xca\x8f\x9a\x5e\x44\x74\xa4\xb2\xe1\xe9\x2b\xb5\x39\x91\x7f\x51\xfe\x70\x73\xad\x5b\x65\x1d\x03\x1f\xaa\x6a\xed\x3c\xaf\x41\xd8\x94\x9a\x2c\x5a\xf2\x61\x1a\x21\x26\xe3\xa4\x5c\xcc\x61\x49\xc2\x86\x4d\xda\x5b\x57\xf0\x4e\x22\xd4\xb4\x53\x55\xb5\xea\x43\x42\x84\x76\x80\x49\xb8\x7d\xd6\xdf\x9b\xad\xcc\x7e\x8b\xfa\x12\xc2\xb7\xfd\xbf\x9e\xea\xe4\xdf\x66\x61\x61\xe3\xd1\x2c\x33\xbd\xc9\x84\x2d\xf6\xb1\x7d\x3d\xfd\x29\x84\xd9\x4f\x27\x4d\x49\x7e\x9b\x42\x38\x96\x1e\x60\x25\xb1\x8f\x83\xd0\xf9\x9a\xe7\x18\x79\xc6\x13\x56\x46\xd7\xfc\x3e\x30\x5b\x95\xa0\xa0\xa5\xc1\xf4\x38\x3c\x27\x30\xc9\xb2\x61\xef\x6d\x57\x10\xee\xae\x69\xdf\xae\xfe\xfc\x27\x33\x74\xfa\x78\x26\x8f\xeb\x53\xc2\xf2\x24\x19\x0e\x8f\xba\x34\x42\xfb\xb1\xdf\x52\x13\xfe\x96\x04\xeb\x25\x15\x25\xc9\x7e\x84\x0d\x6e\xcb\x04\x16\xef\x53\x24\x30\x73\xdf\x5d\xf1\x5a\x7e\x89\xf0\x53\x5f\xae\xe9\xfc\x17\x3d\xc2\x85\x58\x9e\x0a\x41\xff\x9f\x0c\x24\x68\xf9\x2f\x39\x9e\x28\x82\xda\xb6\xec\x99\x96\x12\x51\x84\xfc\x39\x4a\x8b\x9c\x9c\x22\xd9\xca\xff\xe1\xc8\xa4\x9d\x7e\xd6\x2d\x45\x04\xdf\x95\xb7\x26\xc4\x74\x9c\x26\x28\x18\x17\x7e\xf7\x57\x49\x67\x2b\xff\x87\xb8\x9a\xca\x52\xe3\xd7\x67\x08\xb5\x3f\x52\xb4\xdd\x1f\x1e\x24\xe8\x8c\xed\x77\xd0\xa8\x7f\xc2\x82\x7b\x8c\xe9\xaa\x0a\xa5\xb3\x84\x6e\x11\xd3\x87\x8b\x5e\xef\x26\x2c\x56\xb8\xf0\x84\x41\x1c\x81\x57\xe6\xb3\x96\x43\xd7\x04\x82\xac\xd5\xb1\xec\xdc\x05\x73\x08\x4f\xbf\x69\x09\xd8\xea\x6a\x10\xba\x3d\xcf\x89\x9c\x8d\xbe\x48\xc8\x09\x9a\x2e\x64\x9d\xa2\xfc\x77\x69\xff\xa1\xf3\x7b\x38\x8a\x85\x95\x3d\x65\x92\x97\xf2\x3a\x19\x3c\xcc\xda\xb4\xe5\xde\xcd\xb9\xf4\x1f\x98\xe1\xb9\xd0\x44\xd1\xb9\x39\x0f\xca\x5b\xef\x8b\x7a\xac\xeb\x64\x10\xec\x7c\x33\x7b\x20\x66\x03\x61\x6c\xfd\xfb\x13\xcb\xab\x8c\x08\x49\x03\x67\xc6\x3e\x7c\xea\x67\xb0\x27\x53\xe9\x5e\xb3\xde\x47\x06\xac\x0c\x23\xf1\xa1\xf9\xda\xf4\x1f\xa8\x7a\xb5\xca\x45\x87\x19\x60\xc6\xf1\xc9\x8d\xc7\x60\xa7\xdb\xdf\xdf\xea\xa1\xd3\x3e\xd6\x2b\x0d\x09\x15\x83\x8b\x6d\x63\x14\xa7\x11\xf6\xcd\x38\x21\xe0\x10\x3a\x81\x90\xd7\x18\x9f\xe6\x2e\xfc\x90\xd0\x37\xb6\xcb\x70\x52\x7f\x08\x61\xb6\xfe\x13\x99\xbd\x79\xc6\x84\x8c\xd9\xf2\x95\x78\x74\x83\x60\x42\x73\x15\xca\xef\xec\x27\x6c\xb7\x38\x79\xfe\xd7\xfb\x63\x04\xd3\x97\xb9\x45\xd7\xb3\x92\x08\x35\xc7\x04\x4c\x5d\x22\x52\x08\xf2\xe9\x79\xbb\x0e\xfc\x58\x48\xb0\x18\xc1\xc5\x25\x39\x9d\x0c\xee\x8e\x55\x1a\x90\x2e\x18\x1c\x1a\x1b\x10\x9f\xf2\x3a\x8b\x05\x8d\xbd\xbe\x17\xfc\x52\xd5\x68\x1c\xc3\xb2\x3e\xc4\x79\xc5\x99\xb0\x6b\xf7\xe0\x0e\x83\x05\x63\x0c\x04\xf3\xdd\x1d\xde\xcb\x4d\x24\x3c\x73\x93\xe7\x17\x1a\x55\x24\xe8\x3d\x10\xb3\xe1\x98\x38\xca\x40\x77\x9b\xbc\xda\x97\xd5\x7f\x18\x68\x2a\x6f\x3a\x76\xdd\x49\x8b\xfe\x17\x86\xd6\x17\x14\x99\x7a\x3d\x65\x50\xa9\x32\xf3\x5e\x58\xd3\x2e\x42\x00\x7f\xea\x14\x83\x67\xa9\x2c\xdc\xc8\xe5\x1b\xa9\x96\xbd\x40\x88\x9b\x50\xd2\x19\x64\x77\x82\xc0\x33\x6d\x72\xa5\xdb\x6a\x2f\x82\xea\xfc\xb3\x02\x7b\xd6\x9f\x20\xe8\xbb\xbc\x0f\xa9\x7d\x7d\x92\x70\x21\x74\xdb\x88\x89\xe8\x3d\x16\x44\xd7\xdc\xcf\xff\xf9\xf5\x01\xc1\x54\x30\xf4\xe9\xc2\xce\x65\x84\xa9\x25\xce\x15\x37\xae\xe5\x10\xb4\x7a\x4b\xef\xe4\xd7\xaf\x25\xe8\x4a\xf6\x2c\x88\x3a\x1f\x42\x70\x12\x9e\xf7\xc5\xd7\xff\x09\x0b\xe5\x06\xba\x6a\x9b\x16\x56\xb2\xf0\x45\xfb\x9a\xb3\x6a\x71\x02\x81\xa7\x72\x56\x8d\xbc\xa8\x05\xa1\x3b\x1f\xd7\xc2\x32\x15\x09\xcf\x83\x39\x8b\x44\x6f\xad\x27\x9c\x7d\x28\xd7\xb6\x72\x6f\x27\x03\x31\xe5\x32\x11\x15\x85\xdf\x6c\x18\xbd\xf9\x39\x39\xc0\x9e\x97\xf0\x42\xed\xea\x14\xd1\x2a\x63\x42\xb2\xca\x53\x2f\xfb\x48\x29\x82\x8d\xb1\x71\x4f\xea\x36\x27\x82\xdc\x47\xf3\xd7\xba\xc6\x8f\x08\xd3\x57\xce\x5b\x7e\xa3\x2b\x97\xc0\x79\xe9\x7e\xf1\xad\xe0\x00\x82\x98\x10\x9f\xdc\x53\xe1\x9d\x84\x5a\xf9\x4c\xc9\xa6\xaa\x20\xc2\x3c\x57\xfd\x9a\x47\xf6\x4f\xd9\x50\x76\x52\x48\x9d\xbf\x78\x25\xc1\x68\x63\xc8\xed\x96\xb1\xc9\x84\x72\xde\xe4\xe4\xa1\xf3\xea\x84\x5d\xf9\xbb\x25\xd6\x5e\x35\x26\xd4\xb5\xf0\x95\xa6\xf2\xaa\x11\x9e\xae\xd5\x59\xb3\xbe\xd8\x90\x50\xb9\xea\xa3\xf7\xd4\xaf\xab\x09\x19\x75\xb6\xed\x83\xfb\x93\x09\xa6\xbd\x0e\xb5\xe6\xab\x8c\x08\xb3\xab\xed\xf6\xbd\x2f\xd0\x21\x64\xfc\x5c\xa5\x2b\xcd\x9a\x45\x88\xac\x3f\xc6\x37\x71\x77\x1f\x03\x57\x87\x47\xd2\x39\x07\xfa\x18\xec\x48\xaa\x91\x68\xbd\xdf\xcc\xc0\xd4\xc5\x3f\xf7\xcc\x65\x0d\x42\x64\x47\xd2\x96\x2b\x3e\x5c\x84\xe5\x41\x6b\xe6\x8f\x1c\x5b\x4f\x38\x2e\x14\xd9\x2d\xec\x65\x48\xf8\xe0\xb6\x5e\x60\x51\xea\x22\x42\xe0\x4a\xcb\x4f\x5d\x1c\x33\x09\xd6\x71\xed\x95\x7e\x22\x85\x84\x9d\xf3\x99\xf4\x42\x85\xcf\x84\xd0\x13\x7a\xdd\x1d\xbb\xef\x10\xc6\x7a\xf2\xcd\x6b\x4a\x1a\x09\xd7\x2e\x7b\xbf\x9e\xbe\x26\x8b\xe0\xb2\x75\x4e\x55\xed\xfd\x12\xc2\xd6\x79\xd7\x3d\xb7\x68\x14\x10\x0e\xa5\x9f\xde\x34\x22\xfb\x96\x85\xb1\xcf\x4d\x7b\xa5\x12\x8a\x09\xd1\xc3\x35\xbe\x42\x9c\x4f\x09\x67\xab\xa6\xb5\xef\x2f\xa8\x62\xe1\x52\xed\x13\xa1\xfd\x3b\xcb\x58\x98\xe1\xe4\x0b\xa7\x2b\x3b\x08\x63\x7a\xf7\x95\xfa\x05\x22\x08\xc2\x9b\x24\x9c\x7b\xde\x1d\x22\xbc\x8f\xd6\x7f\xa2\xd4\xb0\x88\xb0\x73\xab\xca\x99\x12\x25\x1e\xc2\x3e\x8f\x0c\xd3\xfe\x1d\x92\x04\xa3\x9c\xdd\x89\x9e\xfe\x22\x04\x95\x08\x3b\x55\x56\x4c\x2b\x83\xf7\x91\x9a\x6f\xf1\x9d\x9f\xfe\x17\x66\x1e\x5c\xf6\x61\x63\x5a\x3f\x83\xb6\xe5\xaf\xcf\x2d\xfb\xbd\x9f\xa0\x39\xf1\x90\x7f\x7d\xab\x29\x81\xcb\xf1\xa0\xe5\xf6\xed\x60\xb0\xf2\x9e\xe2\x55\xb9\xfa\xb7\x0c\xcc\x3f\x2b\x6c\x1f\x2c\xe1\x25\x58\xde\x35\xff\xf1\xc2\x60\x94\x81\xf0\x24\xa5\xd4\x72\x0e\x6b\x82\x8f\x7a\x97\x56\x9f\x4d\x34\x41\x52\xd5\xce\xd2\xa6\xff\x24\xe1\x43\xf2\x4a\xf3\x5b\xf1\x1a\x84\x5d\x5a\xaf\x82\x63\x1d\x2e\x12\x36\x1b\x1f\x79\x1f\xe3\xf3\x9a\x30\xc2\x95\xc6\xe2\x09\xaf\x24\xc8\xbf\xf3\xdc\xf8\xf4\xef\x42\x55\x23\xf3\x46\x24\xea\xfb\x71\x82\x6c\xf8\x16\xc3\xae\x08\x37\x42\xc4\xab\x16\x26\x5d\xe8\x24\x21\xfc\xca\x0c\x05\xa9\x64\x77\x42\x62\xf4\xe0\x9b\xc6\x69\x52\x04\xcd\x75\x61\x6f\xaa\x33\x14\x08\x43\xb7\x9a\x54\xe6\xfc\x9c\x43\x70\xb5\xb8\xb7\x5f\x64\x45\x3a\xe1\x80\xdb\xa3\xba\x99\xc9\xda\x84\x23\x3b\x14\x1a\xbd\xb9\xb5\x08\x0e\x3b\x5f\x79\x9f\x5e\xae\x49\xc8\x5a\x1f\x7c\x54\x2e\xe7\x2c\x0b\xf5\x4f\xba\x0c\xde\xe8\x97\x12\xf2\x5b\xac\xd6\xdf\x94\x2b\x25\x14\x9a\xb7\x0a\x6c\x6c\x0a\x24\x14\x9c\x7f\x6b\xb7\xe0\xca\x5d\x82\xdc\x44\x56\x9e\xfe\xd1\x31\x06\x37\x97\x3a\x3c\xbd\xbc\x73\x1e\x8d\x43\xce\xbb\x82\xb3\x34\x19\xcc\x38\xea\xbb\x0f\x9e\x57\xda\xf9\x9a\x41\x71\x75\x56\xb0\x53\xb5\x24\xe1\xe4\xc5\x29\x76\xdd\x35\x82\x84\x33\x27\x22\x3e\xc9\x7a\xe8\x10\x6a\x0f\xe0\x70\xd8\xa2\x8d\x04\xa9\xfb\xdf\x12\xd4\x17\x2f\x22\x4c\x3f\x77\x72\xf8\xb2\x77\x38\xc1\x78\xed\x51\xbd\xe0\xcd\x07\x08\xab\xed\xea\x97\x7f\xab\x17\x24\xd4\x77\x07\xc7\x9f\x8d\xe5\x22\x28\xcf\x8f\xb4\xe1\x70\x63\x08\xf6\x05\x03\xf5\xeb\x04\x66\x13\x1a\xaf\xd9\x15\x9b\xad\x52\x27\x14\xb6\xfd\xe0\x38\xc2\xb3\x92\xb0\x4d\xcd\xb5\x3a\x36\xd8\x84\xe0\xcd\x25\x7e\xc5\xca\x66\x11\x81\xdb\x43\x76\x41\x20\xc7\x6f\x06\xf2\x07\x52\x77\x0f\x07\xe8\x10\xb8\x43\xce\xff\xd2\x8b\x8c\x24\x24\x54\xdf\xaa\xa8\x7a\x97\x4d\x08\x0b\xf3\x50\x5a\x74\xaa\x80\xd0\xa1\x71\xe7\xca\xe3\xdf\xf1\x84\xeb\xae\x22\x52\xa5\x1b\x8a\x08\x6b\xbe\xbb\xed\xca\x74\xf5\x21\x7c\xba\xb6\xe7\xcd\xd8\xd7\xd3\x04\x9d\x7b\xbd\xb6\xf2\xeb\xaf\xb0\xc0\x15\xab\xee\x8e\x27\x57\x08\x13\x2e\xdc\xbd\x9a\x5b\xe1\x46\x50\xd0\x55\x3a\x22\x74\x2e\x99\x50\xd1\x7b\xe8\xd8\xbc\xbc\x07\x84\xa7\xd1\xc7\x7d\xa7\x47\x85\x10\xbe\xd4\xf7\x9b\x6e\xcc\xbb\x44\x48\xbd\xe7\xab\xfe\x7b\xd2\x1d\xc2\xc8\x88\xb5\x52\xdb\xc3\x68\x82\xf4\x32\x59\x52\x0f\xf1\x26\x0c\x67\x9b\x0b\xbd\x6b\x1e\x63\x70\xaf\xb4\x32\xfa\x5a\x74\x28\xa1\x4d\x7e\xba\xb6\xca\xb3\x0c\x42\xc7\xbb\x3d\xa9\x9e\xe5\xec\x58\x1c\xe2\xf0\xfc\xa2\xa4\x1b\xa1\x6b\xff\xec\xda\x3d\xd1\x0e\x84\x83\xae\xe1\xaf\x14\x44\xdc\x08\xf5\x8e\x59\x67\x2f\xe9\xa4\x12\x2c\xe5\xdf\x35\x46\x39\xb5\x12\x02\x02\x17\x9d\xd4\xee\xaf\x23\xa4\xe5\x3c\x5b\xbf\xb9\xa8\x85\x20\xb9\xc6\xe8\x6c\xac\x74\x29\xa1\xf6\x9d\x65\xfa\x80\x5e\x26\xe1\xda\x96\xf9\x53\x2f\x97\x1e\x21\x3c\x3b\xf3\x25\x5a\x40\xa6\x80\xb0\x5b\xb0\xf3\xe6\x9e\xdd\x0b\x09\xe7\x38\x66\x4d\xef\xfa\xfb\x0a\xe8\x3b\x7e\xaa\xeb\xca\x37\x7e\xfa\x0f\xe4\x17\xe7\x98\xff\xfb\xec\xd4\x55\xb7\xc5\x0e\x84\xf9\xb2\x20\x5e\xad\xee\xe8\x6d\x7e\x9c\xb0\x2b\xf2\x5d\xaf\xcb\xe7\x78\x16\xae\xbc\x5d\x23\xdc\x19\xaf\x4a\xf8\x70\x4f\x60\x74\x4f\xd3\x45\x42\xc4\x90\xaa\xe2\xe6\xe5\xd9\x84\xc9\x9f\xd6\xf5\xd7\x44\xfc\x5d\x77\x7e\xe4\x8f\xa6\xee\x59\x43\x30\x0a\x94\x69\xfd\xd9\xbd\x9a\xd0\x74\x64\xee\x02\xe5\xb8\xaf\x0c\xd2\xf9\x4c\x53\xaf\x6b\x71\xd0\x38\x66\x9f\xde\xf7\x29\x77\x0e\x07\xc1\x98\x7b\x93\x84\xf4\xa5\x37\x0c\xa2\x77\x1a\x18\x9f\x9d\xa0\x46\xff\x01\xbb\xb7\x7b\x8c\xfb\x82\xc6\x18\x48\x08\x99\xd8\x1c\xbd\x31\xca\x40\xd0\xca\x2c\x60\xc6\xbd\x49\x04\x15\xf7\x6e\xbe\x94\x83\xba\x34\x5e\xf4\xae\xde\x0c\x8e\x96\x29\x63\x60\xf7\xe8\x45\xcb\x70\x41\x1a\x0b\x29\xe5\x1b\xeb\x9c\x72\x8f\x12\x1b\xe6\x5a\x2c\x09\x49\x3c\xcc\x86\x19\x7a\x95\xc2\xb6\x33\xbb\x18\x0c\xee\xef\x8b\x6b\xdd\xbc\x94\xb0\x79\xb4\xce\x9b\xb9\x68\x4e\x68\xfa\x28\xb6\xce\x64\x73\x1e\x0b\xb7\x7e\xde\x2a\x76\xeb\xac\x67\x61\x86\xd0\xb5\xa0\xdb\x79\x41\x04\x81\xf3\x7b\xbd\xa7\x05\x89\x10\x32\x87\x44\xd6\x8d\x0a\x0a\xb0\x81\x7b\xf8\xa4\xb4\xa5\x3b\x1f\x61\xda\x22\xd5\x15\x13\x83\xe5\x09\xe6\xee\x2b\x2e\x6d\xed\x49\x21\x4c\x3d\x61\x3f\x57\xd0\x7a\x33\xa1\xd4\x86\x23\x46\x53\x75\x33\x21\x26\xf8\xc5\xf1\x03\xd3\x85\x08\x8b\x32\x75\xed\xc5\x6f\x7e\x65\x50\x2a\xef\x52\x64\xf0\xab\x9d\x41\xc2\xc2\xfc\xdd\xfc\x6e\x53\x09\xa1\xb6\x26\x71\xff\xfe\x15\x6b\x7c\xae\xe5\xf8\xbf\x87\xde\xff\xc0\xa0\x8e\xb9\xac\x91\x34\x3f\x21\xc0\xd2\x5a\x54\xe7\xec\x5b\x66\x1c\x22\xbf\x0c\xd2\xc4\xe8\x39\x03\xad\xf3\x45\x8d\xa7\x7a\xf8\xe9\x3f\x10\xfa\xa2\xb1\x6a\xdf\x9d\xcf\xcc\x38\x8c\x38\xc2\x5f\x34\x36\xf0\x13\x4e\xa5\xd5\x49\xa6\x64\x4d\x27\x44\x04\xf1\xb8\x2a\x1f\x4f\x26\xcc\x38\x75\xf8\xc1\xc6\x7b\x1c\x84\x80\x8c\xf2\x00\xaf\xc5\x09\x2c\xcc\xd8\x96\x73\xb1\xca\xf5\xef\x71\xee\xb2\x94\xfd\x96\xcb\xe5\x0c\x72\x2f\x2b\x85\xec\x5d\xfe\x2a\x0f\x81\xd6\xa7\xce\xcc\x1e\x7b\x40\xff\x0b\x2c\x9f\x90\x89\x9a\x7f\x37\xa1\x19\x4e\xb3\xaa\x8c\x1a\x9e\x10\xa2\xd6\x3d\x5f\x7e\x62\x78\x88\x41\xf8\x6f\xef\x0f\x4e\x86\xd2\x84\x78\x97\xba\x87\x76\x15\x5c\x04\x2e\x91\x5f\x1e\x60\xc9\x10\xea\x8c\x79\x2a\x4b\x1f\x4a\x11\x3e\xd5\x0e\x6c\xff\xbd\xda\x90\x20\xff\x6a\xc3\xcf\xaf\x5c\x76\x84\x70\x2b\x3b\x5b\xcf\xf2\x83\x84\xcd\xe7\x19\x8d\x43\x5a\x9e\x84\xee\xec\x29\x9c\xe7\xbd\x16\x13\x2a\xdb\x12\x53\x72\x36\xd7\x31\x30\x59\xf0\x21\x77\xa6\x87\x2c\x41\xfd\x9a\xcb\xb2\x0e\xb3\x1a\x06\x8d\xb9\xde\xd7\xe7\xda\x7d\x61\x30\x35\xae\x45\x7b\xf1\xf0\x6f\x06\x75\xbc\x4a\x38\xde\x32\x87\xd0\xa6\xda\xb8\xe8\x7a\xf9\x5c\x82\x58\x3d\x97\x9e\xb9\x59\x1a\x41\xbb\xb8\xa1\xc6\x63\x7e\x02\x61\x2f\xf7\xf4\x94\xaf\x56\x11\x6c\x78\x12\x22\x63\x72\x7d\x16\x7b\xa9\x1c\x1a\x9d\x23\xfd\xc9\x81\x30\x49\xcb\xbd\xe0\xd8\xcd\x0d\x6c\x65\x0f\xae\xb7\xac\xca\x77\x60\x2b\xeb\x3c\x8f\x9c\x78\xb2\x63\x07\x61\xe2\xe9\xe0\x66\xf3\x5d\x9d\x0c\x0e\xf5\x0f\x8b\x32\xf4\x93\x0d\x33\xa6\xac\x6e\xd4\xfe\x2d\x46\x68\x93\x1b\x58\xcc\xcb\xcc\x22\xcc\xb0\x1b\x69\xdd\xf8\x3b\x9d\xd0\xbe\x57\x44\x7b\xee\xcb\x60\x82\xf4\xe1\xe9\x9c\x7b\x66\x3e\x26\x08\x97\xe9\x6d\x29\xe0\x0b\x26\x20\x6b\xef\xde\x5b\xda\x66\x04\xcf\x37\xbe\xbc\xb7\x6d\x0e\xb1\x41\xd0\x7f\xb9\xf1\xbe\x03\x7b\x08\x0a\x71\xfa\x95\x71\xc1\xc1\x2c\x84\xed\xf2\x9e\xda\x68\xeb\x4e\xb8\xd1\xd7\xbb\xb7\x75\xd8\x9d\x70\xf8\x73\xc7\xba\x69\x8b\x4a\x09\xdd\xbf\x4b\x65\x3e\x94\x85\x12\x6a\x45\x92\xd4\x0d\x96\xe5\x11\xb2\xee\xda\xad\x6c\xd9\xfc\x8a\xd0\xde\x73\xe6\x25\x79\x44\x11\x8c\x77\x0b\x8a\xbd\xb2\xad\x27\x38\xce\xe7\xbe\xf2\xef\x9a\xa7\x06\x95\xcb\xda\xed\x2f\x12\xfa\x9e\xf7\xbd\xb4\x93\x8e\x63\x61\xd6\xac\xa4\x99\x16\x7e\xae\x04\x65\xa5\x63\x2d\x1f\xfe\x8e\x56\xdb\xbf\xbe\xea\xa2\x77\x88\xf0\xc0\xd0\xc0\x2d\x52\xfd\x17\x83\xac\x6d\x57\x0e\xb4\xcc\x16\x25\xc8\x08\x48\x34\x1c\xd4\x9d\xf9\x5f\x10\x8b\x9d\x18\xf5\x2e\x54\x81\x70\x09\x5e\x4a\x67\xeb\x97\x12\x82\x83\x1c\xf8\x4c\xde\x9f\x20\x98\xc8\x44\x4f\xf3\x74\x6d\x21\x5c\x2c\x8c\xe6\xf1\xf8\x0b\x1f\xfb\x7a\xd3\xc6\x69\x2c\x82\x79\x92\x61\xf5\x62\xc7\x10\x42\xd8\x84\x63\x83\xf6\xfb\xf3\x08\x11\x89\xa7\x02\xb8\xea\x1e\x10\x06\xa2\xd2\x6e\xcc\xe5\x5a\x45\x98\x9d\xa5\x31\xcd\xe4\xf5\x01\x36\x6c\xbc\xaf\x22\x16\x12\x3e\x8f\x0d\xbf\xbd\xdf\xf1\x9c\x88\x06\x83\xf3\x6b\x73\x15\x99\x0c\x4b\x02\x7f\x4d\xd9\x74\xd5\x43\x5b\x08\x03\x8f\xb5\x37\x5a\x0c\x1d\x23\x58\x34\x4f\xcf\x5e\x37\xe3\x0c\x0b\x2b\x43\xbf\x9f\x2a\x3d\xb6\x91\xa0\xdc\x5c\xd4\xb4\x5f\x66\x16\x61\xd4\x59\xb8\xa7\xb2\x41\x8b\xf0\xb4\x28\xfb\xf5\xd2\x16\x73\x82\xfe\x82\x9d\x0a\x4a\x11\x9b\x08\xcd\x9f\xce\x4e\x1d\xb8\xa5\x4c\x08\xb7\xdb\x6e\xd4\x6d\xaa\x47\xb8\x1f\xe4\x3b\x5c\x6e\x36\x9f\xa0\xae\x19\x32\xbd\x39\xf6\x32\x0b\xfe\xe2\xfc\x4d\x32\x42\x5a\x84\x75\xc9\x29\xb2\xae\x2e\xd7\xd8\xe0\xd8\xd7\xd8\xf4\x5e\x8b\x45\x58\x25\x39\x9b\x47\xa3\x3d\x92\xc0\x35\xdb\x6c\x3d\xd7\x5a\x39\x82\xb4\xed\xd2\x9f\xd1\xd1\x3f\x18\xfc\xb9\xb8\x9c\xa5\xf0\xd0\x97\xc6\x91\x99\x11\x56\x8f\x6c\x0f\x42\x5f\x90\xa1\xd6\xd1\x8c\x87\x84\x78\xe3\x55\x7d\x21\x4f\x0a\x08\xeb\x45\xf5\x86\x59\x6b\x0d\x09\x19\xd9\x6a\xd1\x55\x93\x62\x08\xef\x35\x0b\x7e\xbf\x8a\x93\x22\x7c\xeb\x5e\xcb\x9b\xee\x2c\x41\xd8\xbf\x7b\x43\xa2\x0e\xaf\x1e\x61\xf0\xd7\x7a\x87\xf5\x9b\x6d\x08\x55\x0c\x5f\xf7\xb0\xb2\x32\x1b\x0c\x0c\x26\x72\x5f\x0f\x10\x25\xbc\xd9\x2f\xa3\xfa\xf4\xa1\x18\xe1\x90\x4f\xb1\x73\x70\xe2\xeb\x3c\x28\xc4\x3f\x69\xe7\xcf\xf4\x66\xe1\x59\x70\x39\x97\xdd\xd0\x02\xc2\xbb\xbb\x2f\x4f\x8e\x7e\x5d\x47\xb8\x7d\xa4\x71\xb6\x34\xad\x25\xbc\x52\x95\xd3\x1d\xd9\xb8\x96\x30\xef\x8f\xea\xee\xe4\x58\x23\x42\x46\xbd\x8d\x63\x82\x29\x3f\x21\xb7\xe8\x7e\x4a\xc4\x79\x2e\xc2\xf1\x14\x4d\x8f\x9e\x67\x9c\x04\xfa\xed\xdb\x62\x63\x39\x85\x0d\x26\xe6\x0e\x37\xab\xf5\x3f\x30\xb0\x76\x3a\x85\x17\xa3\xf9\x84\x17\x55\xf7\x2c\x8c\x2e\x6c\x24\xe8\x9d\xab\xb9\x97\x22\xb7\x83\x10\x7b\xf6\xb2\xc5\x30\x23\xc1\x06\xfd\x20\xeb\x15\x3c\x33\xd4\x09\x21\x2d\x97\x3a\x55\xdf\xd6\x31\x70\x5b\xf4\xe2\x52\xc6\x2c\x75\x42\x9b\x80\x91\x13\x1a\xb8\x09\x79\x3e\xa1\x5f\x66\xd6\x70\x12\xcc\x06\x84\xec\x2b\x04\x4f\xb3\xa0\x55\xfc\x58\xe4\xe2\x69\x75\x1a\xc7\xdb\x00\x39\x9e\x89\xf2\x6d\x0c\x9c\x74\x9f\x5e\xa9\x4d\x7a\xcf\x02\xe9\x5f\x11\x17\xcf\xcf\x21\x48\x85\xcd\x2d\xc9\x7c\x95\x4f\x08\x55\xd1\x6b\x33\x70\xcd\x25\xdc\xe5\x68\xe3\xc8\x48\xff\xc0\xc2\xc2\xac\x51\xf7\xe8\x6f\xf9\x84\xe4\xd7\x97\xe7\xf9\x9b\x45\x11\x90\x50\x70\xff\x13\x13\x41\xc8\xe8\x4f\x38\x7b\xe3\x5d\x38\xe1\xf2\xd0\x79\xd9\xde\xc8\x08\x42\xa1\xda\x93\x33\x39\xbf\xbd\x59\x28\xbe\x10\x7f\xa0\xf3\x65\x24\x61\xce\xa6\xa3\x8a\x63\x73\x6e\x11\xa6\x41\xad\x53\x70\xde\x2d\xc2\x60\xbb\xb4\xac\x94\xf0\x75\xc2\x91\xbc\xcf\xc6\xbd\xc5\x81\x04\x4b\xff\xe1\x6d\x71\xf6\x57\x09\xcf\xaf\x1f\x68\x5f\xb5\xf4\x16\x41\xe5\x85\x4f\xb9\x45\xc9\x2d\x42\x81\xf6\x51\xe3\x5f\x83\xb7\x09\x95\xe7\xf2\x4e\x29\xcf\x4a\x20\x88\xcc\xcd\xdc\xa8\x23\x7d\x87\x6d\x14\xaf\x17\x26\x78\xd7\x3a\x8a\xd0\xba\x42\x76\xd2\xe4\x55\x91\x84\x8e\xb7\xc3\xf7\x04\x38\x83\x09\xf9\x7f\xdc\x28\x36\x2a\x8a\x20\x38\x3b\xcf\x28\x7e\x5e\x30\x21\x6a\xc6\xa1\xe6\x3b\x61\x3a\x04\xc3\x7b\xbf\x54\x56\xbf\xa8\x26\x78\xee\xba\x73\x22\xfb\xef\x9e\xb2\x5c\x7d\x4b\x48\xd2\xe5\x14\xc2\x91\xbe\xf3\x42\x12\x21\x75\x79\x38\x9f\xfb\x60\x51\x5e\x92\x03\xfd\x07\xf8\xd2\x17\x24\xa6\xce\x11\xfe\x2f\x68\x9e\xca\x5b\xa9\x35\xb8\x98\xad\x78\x98\x48\x5d\xb1\x14\x6e\xcd\xc3\x01\xd3\x8f\xaa\x5c\x9a\xeb\x08\x17\xa6\x34\xfc\x14\x19\xde\x42\x98\xe5\xd2\xef\xd8\x7c\xe0\x3a\x1b\x36\xbc\x36\xea\x9b\x7d\xde\xe7\xbf\xf0\xc4\x6b\x8b\xdc\x8b\x85\xed\xcc\x38\x4a\xe4\xd6\xa9\xfa\x26\x37\x31\xe8\x19\x78\x57\x71\xf9\xa8\x04\x0b\xa6\x4f\x3e\x7f\x3e\x3b\x3a\x89\x50\xfc\xc7\xd8\xf6\xe0\x9b\x51\x06\xb2\x7d\x4b\x53\x9d\x8b\x67\xd1\x38\x7c\x78\xc7\x74\xde\x2c\x2e\xcd\xc3\x9c\x6d\x03\x0b\xfb\x75\xcd\x09\x67\x0f\xa7\xeb\xbf\xd7\x39\x44\xf8\x59\xbf\xeb\xe7\x64\x5b\x07\x42\xfb\xa5\x25\xa2\x0b\x5a\xf5\x09\x47\x73\x47\x5b\x3c\x2e\xc8\x10\xbc\xc3\x6b\x6d\xdc\x9e\x5a\x12\x02\x55\x0d\x03\xe7\xfd\x59\x4d\x58\xe6\xf5\x61\x6c\xc7\xcc\xdd\x84\x62\x25\xd5\xdb\x6a\x73\x0a\x09\xd6\xad\xd2\x67\xfe\xa1\x3a\x40\x4c\x36\xea\xce\x13\x02\xdf\xef\x4f\x3d\x91\x7f\x91\x2b\xa7\x12\x5a\xe9\x99\x4e\x88\x5b\xbf\x67\xd7\xbf\x12\xe4\x6e\xbd\x72\xfa\xe8\xf6\xff\x82\x4a\x9f\x56\xaf\xc5\x05\x4f\x42\xa4\x97\x42\x5a\x73\xab\x01\x21\x8a\xe1\xac\x6c\x1b\xab\x26\x2c\xd9\xb1\x75\xde\x87\xbf\xe8\x3e\xa8\x78\x2d\x73\x4b\x04\x61\xd4\x63\xfd\x88\x7e\x7b\x02\xe1\x9c\x50\xab\x80\xcc\xdd\x68\x82\x5d\x3b\x97\x5c\x56\xcd\x21\x82\xd4\x62\xd3\x09\xbf\x32\xa6\x12\x2c\xf6\xd4\x84\x2f\xe9\x39\xc3\x86\xa6\xc6\x9d\x5a\x22\x4b\xa3\x08\x0d\x8a\x9f\xaa\xe3\x0f\xdf\x20\x4c\x4c\x2b\xfa\xd3\xf8\x23\x90\xc0\x63\x1a\xa0\xbc\x21\xbd\x96\x85\xbd\xd7\x13\x97\x77\x0c\xc6\x13\x92\x23\x57\x7d\xbf\x5d\x5d\xc4\x42\xa2\xdf\x99\x61\x83\xf4\x78\x42\x61\xfc\x9f\xf9\xb3\x2f\x25\x13\xa4\xeb\x34\x43\x9e\x2b\xc6\x12\x68\x5a\xe7\x64\x29\xa1\x35\x6c\x98\xf7\x36\xbd\xea\xc6\xdf\xa7\x4d\x8a\xec\x61\xe5\x88\xab\xc3\x0c\xfc\x8f\xdf\xf7\x78\x64\x34\xc2\x40\x62\x81\xcd\x58\xf2\xee\x27\x84\x94\xce\x0c\xde\x87\x7f\x71\xf7\xf4\xd1\xa4\xfb\x56\xb7\xf2\x50\x74\xe5\x6b\x9e\xa9\xfb\x35\x82\x58\x10\x39\xf9\x5d\x0b\x22\xc8\xce\xe0\x98\x1b\xa4\xbe\x9d\x70\xa4\xe7\x82\xca\xe4\x59\x3b\x08\xf3\x34\x7f\xea\x1d\xae\x98\xc9\x86\x3d\x35\x42\x8c\xc4\x9b\x5a\x06\x53\x5f\x4e\x2b\xf3\x34\x5e\x48\x68\xf6\x89\xe7\x6e\xdd\xc6\x4b\x08\xfd\x2e\x18\x21\x63\x72\x91\x0d\x8b\xba\xe6\x7e\xb2\xf6\x14\x67\x83\xbd\xd0\x87\x8a\xa6\x90\x9a\x3c\x64\x94\x44\x6d\x17\xde\xae\x43\xe3\x48\x5f\x9b\xae\x15\xf5\xe9\x3d\x03\x55\xbf\x86\x0b\xe9\x31\x8b\x09\x1f\x9b\x32\x1f\xa5\x6f\x94\x23\x88\x73\x75\x1d\xd6\x36\xca\x64\x43\xd1\x76\x57\x2b\xdd\xf6\x3e\x06\x8a\x9c\x95\x6e\xdc\x2f\xde\x10\xaa\xd3\x4d\x2f\xa8\x08\xc6\x11\x3e\x85\x9f\xd1\xe7\xf3\x35\x22\x98\xf0\x29\xdd\xac\x95\x78\x4a\x30\x2d\x2e\xe4\x14\x5f\x7f\x9f\x20\xfe\xf5\xf3\xd1\x6b\x5d\x65\x04\x4c\x58\x21\x63\x22\x90\x41\xb0\xe6\x5d\xa8\xfb\x3a\x68\x02\xc1\xb9\xb4\xf7\x4c\x98\x40\x21\xc1\x2a\xfb\xcd\xcd\x53\x53\xad\x09\xda\xa5\x2d\x0f\xd3\x0a\xe3\x08\x61\x2d\xde\x6f\xdf\xd7\xc6\x11\x2c\x05\xd4\xfc\xde\xde\x8d\x23\x1c\x0b\x51\x59\x5d\x6a\x7e\x8f\x05\x81\xc2\xf9\x27\xfe\x8d\x4e\x6a\x76\x26\xab\xe4\xba\x10\xcc\xb4\x5c\xe7\xd5\x77\x38\x11\xd6\xee\x35\x13\x7c\x5c\xe0\x42\x68\x5e\x76\xe2\xa9\xc1\xd8\x1e\xb6\x91\x91\xf0\xfb\x17\x35\x1d\xc7\x09\xc3\x86\x55\x13\xa7\x26\x9c\x20\xe8\x73\x3c\xd7\xf2\xe7\xdb\x48\x78\x7e\xa4\x86\xcb\x78\x84\x08\xa1\x6b\xaa\x74\x21\xaf\x47\xa8\x90\x37\xb5\x0a\x90\x59\xcc\x06\xaf\x33\x06\xb6\x6b\x02\xc0\x60\xed\x9c\xe5\xfc\x3f\x73\x07\x18\xc4\x48\x71\x4b\xaf\x1f\xdc\x4d\x78\x7f\xb6\xec\xe2\x42\xcd\x53\x84\x5d\xd5\x57\x17\x7c\x7d\xb9\x88\x50\x95\xc5\xcd\xf1\xe1\x4d\x39\x21\x7c\x55\x83\xe7\xa5\xda\x8f\x2c\xac\x38\x7f\x3c\x78\x1b\x77\x3a\xa1\xe3\xc8\x77\xa7\x66\x9b\xbf\xfb\xc5\xb7\xdf\x9d\xdb\xbf\x4b\x11\xc8\x29\x20\x3c\xfc\xad\x24\xc1\x44\x58\xe8\x7a\x72\xc7\x65\x36\xec\x19\x3c\xd5\xb8\x29\xfe\x34\x81\x77\xee\x9b\x9b\x6d\x1a\x1a\x84\xc1\xdc\x97\xd9\x69\x25\xf5\x0c\x1e\xcc\xba\xbb\x3e\xdd\x61\x06\xe1\x89\xef\x29\xa5\xfb\xab\x56\x10\x9e\x29\xf2\x35\x68\x4e\x53\x22\xb0\x6c\x8d\x3e\x2e\xaf\xf8\xcc\x60\x8f\x90\xb8\xcf\xef\x86\x57\x2c\xa8\x2c\x94\x1c\x92\x38\x50\x45\xc8\x9a\xf5\xfb\xc2\xc6\xc3\x95\x04\x16\xf7\xa5\x05\x3b\xde\xc6\x13\x6a\x73\xa3\x67\xfb\x9a\x8b\x13\xbe\xde\x0c\x68\xdd\x30\x24\x41\xf8\xe9\xb0\x7f\xe7\xf5\x6f\xa2\x6c\x08\xe0\x37\x70\x4e\xb0\x2f\xcb\x03\xef\x55\x93\x8f\xea\x97\xf3\x09\x1a\xd9\xdc\xf2\xd7\x14\x13\x08\x9d\x8a\x62\x59\x3b\x4f\x06\x13\x24\x38\x4f\x38\x94\xfd\xc5\xf7\x6a\xbd\xb9\xa2\xd5\xd5\x79\xf0\x6a\xff\xfa\xdd\x70\xfd\x09\x1a\xc7\x8d\xa5\x59\xd3\xbe\x6d\x98\x4c\x50\x3d\x51\xaf\x99\xff\xce\x95\x30\x8d\xaf\x5f\xe7\x89\xee\x44\xc2\x1c\xfa\x33\x12\xda\x90\x46\xd0\xab\x66\x19\x71\x2c\xe8\x60\x60\xe6\xd4\xf8\x6d\x2c\x7c\x21\xc1\xd2\x76\x82\xf6\x29\xb1\x59\x84\xc8\x52\x1d\xa9\xdb\xed\x1b\x09\xf3\x79\xed\x96\x98\xb6\x5b\x13\x4c\x92\x43\x0b\x5a\x43\xef\x13\x96\x8b\xaf\x35\xbd\xe0\x72\x9f\xc0\x3b\x3c\xc2\xc7\xa5\x97\x4f\x70\x0d\x4b\x39\x79\xdf\x52\x93\x30\x37\x3e\x39\xb2\x53\x63\x29\xc1\xb4\xb3\x6f\x51\x6a\xf6\x63\x82\xc0\xd3\xe8\x70\x5b\x71\x7d\x36\x04\x4e\x68\xef\xcb\x12\x3f\xcf\x06\x6d\x91\x83\x63\x07\x33\x82\xc7\x31\x24\xdd\x6d\x35\x66\xe1\x4d\x90\xd2\x4a\x59\x1e\xf2\x4b\x94\x70\xe4\xae\x06\x9f\x74\x5c\x0e\x41\xa8\xc3\xef\xe5\xe0\x60\x49\x1e\x0e\x26\x3e\xd3\x65\x6e\x6e\x22\x14\x2c\x4b\x2a\xbf\xb4\x61\x03\x1b\x2c\x8e\xef\x7a\x7a\xdb\x58\x82\x90\xb5\x7d\xe9\x1e\xed\xfa\x02\xc2\xf3\x83\xd3\x5f\x35\x3d\xd0\x21\xb4\x44\xd6\x77\xbe\xdc\x9c\x4b\x90\x94\x78\x98\xf5\x0f\x8d\x99\x65\x2f\x2f\x6b\xc6\x13\x94\x06\x1f\xbd\x8d\xc8\x0a\x20\x38\xf0\x16\xf9\x1f\x98\xdd\xc6\xc0\xf9\x5e\x15\xd7\x9e\xd1\x40\x1a\x87\xc9\xa1\x2d\xc5\xba\x5c\x59\x84\xba\xa6\xb7\xad\x2b\xf7\x46\x12\x9c\xce\x9e\xd3\xf7\x9b\xf3\x80\x20\x95\xca\xb2\x3a\x00\x1f\xc2\xa9\xf7\x13\x24\x33\x0e\x7b\x13\x3e\x3b\x16\x17\x69\xea\x1e\x67\x1b\x4d\xdf\xf2\x5d\x64\x85\x8f\x2a\x61\xca\xa3\xcd\x0f\x62\x27\xad\x27\x70\xbd\x9c\x9d\x3f\xc7\x32\x90\x90\x18\x16\x75\xda\x55\xb1\x9a\x85\xb2\xd3\x31\x4a\xc6\x63\x02\x84\xb0\xd8\x0f\x6e\x02\x5c\x4e\x84\xa8\xe3\xd3\xbc\xca\xb3\x2e\x12\xb0\x62\xda\xa7\x22\x7b\x1f\xc2\x2a\x61\xa7\xbe\x15\xb3\x8f\x12\x6a\xf6\xfc\x7a\xfe\x29\x3e\x91\x30\xab\x69\x5d\xfb\xdc\xfd\xea\x84\xf0\x34\x61\x23\x45\xcf\xc2\x3c\x6c\x32\x3c\xd7\xea\x1b\xb5\x88\xa0\x78\x37\x35\x8c\xf7\x87\x01\x61\x86\x75\xd2\xab\x2f\x5a\x1b\x08\xe1\x46\x11\x09\x55\x19\x8b\x09\xbd\xf2\xe5\xed\x53\x2a\x8c\x09\x29\xc3\x3c\x1a\x3b\x35\x64\x09\x15\xda\xf7\xe3\x04\x6c\xde\xe5\xe1\xed\x7e\x71\x95\x32\x0b\x73\x1a\x47\xa6\xe1\x68\xd5\xfe\xc8\xf7\x79\x38\x6a\x3f\x61\x61\xd2\x55\x53\xc2\xc7\x91\x84\x89\xbc\x12\xb6\x84\xca\xe8\x37\x2f\xfe\x7d\xd5\x1b\x77\xdc\xf6\x67\x0a\x51\x03\x0c\x72\x52\xbf\xce\xf8\xfa\xd1\x8c\x70\xbb\xf5\x48\x8f\xbb\x6b\x18\x6b\xbc\x78\x2e\xab\xab\x3c\x5d\x63\xc4\x82\x6e\x5b\xf8\xb4\x27\x5b\xf3\x09\x5b\xfa\x75\x4e\x9d\xcd\xfd\xfb\xae\x5b\x32\xa8\xb7\xf6\xe2\xcd\xff\x89\x51\x01\xfb\x6f\x49\xc6\x2f\xf3\xa0\x7b\xca\x7a\x7d\x75\xcc\x4d\x16\x1c\x85\x8e\xbc\xdc\xf9\x3b\x9e\x50\xe5\x14\xea\x65\xfe\x28\x9e\x20\x5e\xd1\x27\x95\xb4\xe8\x3e\x8d\x8f\xe6\xb5\x7b\x7f\x9d\x25\xbd\x87\x0d\x91\x2b\x23\x44\x5b\xf3\x27\x13\x76\x89\xdf\xb6\x33\xd8\xa2\xc1\x86\xf0\xc5\x59\x5c\xde\x49\x3c\x84\x88\xb6\xd4\xa0\x9a\x23\x93\x08\xa1\x65\xd7\xa6\x68\xad\x6c\x63\xb0\x65\x81\xee\xe2\x6f\xa9\xbf\x19\x78\xbc\x11\x3b\xbd\xa6\xca\x87\x05\xfe\xd4\x24\xc3\xfd\xfc\x6f\x19\x8c\x55\xdb\xfc\x30\x93\x9b\x4f\x98\xdd\xe4\xda\xf0\x31\x78\x31\xe1\x41\x40\xc2\x11\xff\xa2\x7c\x42\x48\xff\x80\x94\xe8\xd4\x02\x82\x0d\x6f\xf8\x34\x1e\x9b\x42\xc2\xe0\xe7\x9d\x6f\x5a\x8f\x15\x10\x4a\x5d\xf6\x68\x8b\xc9\x15\x12\x94\x4e\x63\xb6\x9e\x63\x31\x21\x2e\x28\xe1\xec\xa6\xf3\x9a\x04\xbd\xe9\xd6\x26\x73\xa6\xc8\x13\x6c\x4e\xef\xdc\xbd\x32\xc8\x98\x10\xe5\x52\x94\x71\xf8\xce\x3b\x06\x93\x03\x1e\xdc\x2d\x7a\x1f\x4d\xe8\x48\x73\xda\xf6\xff\xc3\xf3\xb4\xe2\xcc\xf0\x45\x9b\xff\x0b\x2e\x12\xfb\x9d\xe7\x6e\xe4\x27\xfc\xba\x10\x36\xf9\xdc\xee\x1a\x16\xbe\xfc\xda\xcc\xb7\xbe\xf2\x31\x81\x55\x1e\xfe\x4b\x4d\x66\x05\x21\xfb\xe4\x50\xf0\x0e\xaf\x7d\x84\xfa\x72\x75\xa7\x52\xa7\xdd\x04\x39\x2d\xbd\xb8\x8f\xa6\x2e\x04\x67\x0a\xdb\x9c\x5d\xf9\x8d\x01\x53\xb5\x6e\xbe\x70\xa6\x01\x61\x85\xc9\xf6\xa4\xfb\xa5\x3e\x6c\x30\x15\xba\x69\xf0\x75\xbd\x24\x81\x72\x78\xe2\xab\x7e\xdd\x24\xe4\x59\x87\xbc\x78\xa6\x56\xc3\xc0\xe6\x2c\xd3\x6c\xbb\x64\x0f\xe1\xe5\x19\xd3\x8e\x95\xb5\x13\xd9\x70\x75\x58\xcf\xae\x3b\x70\x19\x1b\x1c\xa7\xb5\x65\x18\xae\x2e\x62\xf0\xab\x52\x5e\x31\x5d\x63\x09\xc1\x6f\xa7\x86\xfc\xe1\xa9\x63\x0c\xfc\x55\x69\xb3\xc8\x17\x6f\x1a\x47\x81\xf7\x1d\x3a\x11\xbd\x97\x70\xd1\xd8\xa8\x28\x2d\x2d\x94\x85\xcb\xc5\x27\x3e\xe7\xb5\x6e\x63\xc1\x4e\x32\xf3\xab\xdf\xd4\x78\x16\x3a\x77\x9d\x53\x8f\x9b\xce\x41\x60\x2e\xfd\xfa\x5c\xe8\x36\x9b\x30\xa1\x7d\x72\x68\x6e\x95\x10\xe1\xbc\xa5\x61\xb4\x22\xff\x8b\x3c\x90\x94\xfc\xca\xe5\x62\x5f\x19\x08\xcf\xaf\xf0\xbf\xdd\x74\x88\xc6\x71\x99\xaf\x50\x2a\xd0\x47\x8c\x90\x78\x29\xc1\xb8\xec\xb8\x04\x81\xeb\x59\xdb\x3e\xaf\x97\x79\x2c\xfc\x6e\x55\xb9\xd2\x91\x5b\x40\x38\xfe\xc8\x61\x69\x74\x4f\x1a\x61\x8a\xf4\x77\x81\x15\xf1\x4f\x09\x8b\x22\x8e\x3c\x28\x51\x39\x4f\xb0\xb6\xea\x6f\x28\x7b\xe9\x45\xb8\x6a\xf2\xd9\xdf\xd5\xf9\x01\x61\xe8\xb2\xb7\xf9\x62\xef\xa3\x84\x76\x1e\x8e\x47\x21\xdd\x39\x84\xd8\x69\x6d\x05\x91\x93\x8a\x09\xcf\x6e\x74\x74\x9e\x8b\xd4\x24\x18\x56\x4b\xf2\xcd\x1b\xb1\x63\x21\xc2\xf6\x9b\x65\xa0\x9e\x39\xa1\xbd\xe2\xcb\xed\xdb\x61\xe2\x84\x06\xce\x03\x25\x5d\x97\x7e\x33\x70\x66\x2c\x71\xc8\xbc\x80\xc1\xd5\x2c\x6d\x59\xb7\xcd\x89\x04\x9e\xa6\xd2\xb9\x77\x7b\x03\x09\x4a\xe6\xd2\xb1\x1b\x25\x0c\x09\x8e\xe2\xef\x0b\x57\x1a\x3f\x21\x8c\x39\x91\xd9\x32\xc7\x4c\xc2\xf0\x9e\xde\x7d\xeb\xef\x98\xb0\x61\x81\x24\xe7\xd2\xdb\x5f\x3f\x31\xe0\xd9\xf8\xe5\xa7\xff\x12\x27\xc2\x69\xd8\x16\xc4\xb8\x72\x10\x64\x3f\x9c\x16\xbb\x2b\xb5\x98\x0d\x6f\xb2\xdf\xbe\xb4\xb7\xaa\x62\x90\xb9\x67\x81\x9c\x51\x85\x0a\x61\x75\xdb\xba\x08\x97\x7b\x8b\xd8\x90\xf4\xc3\xab\x3b\xb9\xfe\x55\x1e\x2e\x85\xd4\x75\x6d\x4d\x94\x20\x84\xc6\x97\xe5\x26\xae\x4b\x22\x9c\x0b\x2c\x70\x12\x4b\xfe\x4f\x28\xe8\xa4\x6d\xb6\xf5\xb2\x24\x98\x84\xbe\x4c\x34\x14\x98\x49\x48\x49\x11\x7e\xb7\x26\xb6\x2a\x0f\x0b\x3f\x4d\x83\xa1\xa8\x3e\x8d\x43\x9c\x9b\xeb\xc8\xbf\x6d\x40\xb4\xc5\xe4\xc6\xbb\x53\x95\x04\xf5\xf9\x2f\x8c\xcc\x7c\x9e\x12\x7e\x67\xff\xf4\xf8\x07\xb9\x16\x37\xfd\x51\xbb\x64\x42\x4e\x9c\x8c\xd1\xd3\x89\xf1\x04\x93\xae\xe3\xcf\x2d\x43\xba\x19\x70\xab\xfe\xec\xbb\xa1\x53\x40\xd8\x50\x7e\xce\x99\xdf\xea\x3c\x61\x55\xa6\xc9\x74\x1e\x5d\x4b\x82\xc5\xd9\xc4\xa8\x35\x9b\x96\x11\x84\xcb\x36\x8b\x5c\x2b\x56\x21\xbc\x7c\xf6\x48\x76\xe4\x83\x04\xe1\xd6\xae\x43\x41\x0d\x45\xa6\x04\x69\x8f\x93\xa6\x7a\x6b\xa6\xb0\x61\xfb\xb3\xee\x89\x35\xfc\x69\x0c\x4e\xe7\xfc\x0c\x9a\xbe\x4d\x92\x70\xe9\xc2\xfa\x4b\x6d\x95\x69\x84\x03\xf2\x9c\xa6\xb7\xfe\x7e\xcc\xd3\xe2\x36\x9b\xc2\x7f\x22\x21\x51\xcd\xff\x4b\x81\x96\x1a\x1b\x7a\xbe\x5f\xae\x58\xe0\xf5\x9c\x41\x4c\xce\x81\xef\x8b\x43\x1e\x11\x56\xcd\xeb\xec\x7f\x17\xa2\x48\x58\xac\xb8\xc8\xc3\xd1\x62\x27\x21\xcb\xec\xc7\x8a\x1b\xc1\xea\x6c\x18\xe8\xfd\xe3\xfb\x44\x68\x0e\xe1\x76\x96\xfd\xc1\x8b\x1c\x72\x84\xd0\x79\x92\x83\x56\x36\x45\x04\xe7\xcd\xf5\xd3\xcf\x97\xe5\x11\x2e\x57\xcd\x0a\x92\x74\x37\x23\x74\x44\x27\x37\xea\x2a\x3f\x62\x61\x96\x5a\x9d\xf3\xcf\xe6\x4e\x06\x95\x9d\x72\xe7\x72\xd4\x26\x11\x1e\x6c\xab\xb9\xa1\xe2\xb0\x85\xc6\x4b\xe3\xfa\x8c\xb3\x31\x47\xdb\x19\x5c\xbf\xfc\x7d\xa5\xef\xa9\x6b\x04\xf3\x8a\xf4\x52\xd9\xce\x2d\x6c\x48\xbc\xea\xfc\x28\x49\xb5\x39\x0f\xcd\x22\x9d\x46\x97\xd3\x15\x09\xa9\xac\x60\x9e\x96\xd2\x3f\x0c\x36\xc4\x1a\xce\x50\x2c\x9c\x40\xf8\xde\xcb\x2d\x1c\x3a\x45\x83\x70\xfc\x7b\xf2\xc6\xf0\x9e\x60\x82\xa8\x86\x4e\x86\xe8\x41\x37\xb6\xa2\xcc\xfa\x34\xf7\xf6\xf2\x48\x42\xa8\xe1\x68\xf9\x1c\xe9\x55\x04\x9b\x96\xb4\x80\xd8\x4c\x43\x82\xc7\xf7\x40\xfd\x45\x19\x9b\x08\xf9\xfa\xa7\x59\xb9\x8f\xd4\x08\x9f\xfb\x56\xa9\x58\xc8\x8a\x11\x26\x4e\xdf\x65\x78\xf9\x87\x14\xe1\xfe\xc6\xdf\x1b\x53\x93\xfb\x18\x2c\x11\xb6\xef\x5d\xbf\x82\x93\xa0\xa6\x90\x60\xb3\x6e\x44\x9c\x10\x26\xfe\x33\x26\x75\x99\x38\xc1\x6d\xc2\xd1\xe7\x4f\xd5\xae\x13\xca\x16\x7a\xf0\xa7\x6f\xe7\x66\xe1\xc1\x7c\xe1\x2b\xb6\x95\x71\x79\x10\x33\x78\x37\xb9\xc9\xd2\x94\x10\x1f\xb6\xde\x5a\x6f\x97\x21\xe1\x7e\xf9\xd4\x59\x9b\x3f\x72\x10\xb6\xcb\x75\x1e\xfb\x2a\xb1\x95\x0d\x77\xe7\xe5\xc9\x66\x8a\x05\xe7\x21\xb0\xad\x9c\xb7\xdf\xd1\x80\x50\x5c\x16\xf1\xf9\x45\xeb\x36\xc2\xbe\xcf\x6b\xbe\x8d\x69\x8f\x32\x18\x16\x6b\x7b\xdc\xed\x30\xc4\x40\xad\x70\x40\x38\xa3\x6b\x25\xe1\xca\xcc\x29\x89\x9c\x30\x20\x14\xc6\xac\x59\x8c\x92\x95\x04\xf1\xc5\x4f\xe7\x19\x66\x9b\x12\x72\x27\x4c\xd4\xbe\x74\x5d\x8d\x70\x7b\xac\x6e\xeb\x68\xc4\x28\x83\xa6\xb9\x3b\xc5\x2f\x6f\x57\x23\x28\x89\xde\xaa\x2d\x15\x54\x62\x43\x8b\xcb\xf3\x23\x9d\x6d\x99\x0c\xea\x04\x6f\x72\xde\xad\x0a\x27\x70\xbe\xef\x09\x56\x98\xae\x48\xe0\x09\x36\xa7\xb7\x2f\x58\x04\xbe\xcb\xcb\x4b\x32\xff\x9e\x49\x56\x5b\x94\xed\x93\x5e\xc5\x4b\x28\x3b\x68\x73\xf0\x65\x2d\x2f\x61\x73\xeb\xd4\xb5\x6f\x32\x7e\x32\x38\xbc\xcd\x9f\x73\xe1\x45\x49\x1a\x47\x3d\x6f\x9f\xfc\xdb\xf2\x17\x0c\xbe\xdd\xd3\x91\x6d\xcb\x8c\xa6\x71\xbc\x39\xf3\xae\xff\x49\x48\x18\xe1\x58\x70\x94\x47\x5f\xf1\x1f\xe6\x7f\x61\xd4\xd9\xcf\x99\xb5\x8d\x45\x90\x15\x99\xbd\xcf\xcb\xe1\x3c\x33\x8e\x02\xef\x4d\xf5\xb2\x9c\x35\x04\xdd\xc9\x25\xae\xcd\x8f\x8b\x08\x12\x4e\x2e\x11\x12\x75\x45\x6c\x65\xaf\xb0\xf4\xa4\x28\x61\x37\xc2\xd4\x70\xa9\x8a\xdb\xd7\x5d\xd9\x50\xa1\x23\x18\x33\xc7\xc8\x91\x70\xd6\xbb\xf0\xc0\xbf\xf2\x7f\x50\x32\xcc\xdb\xa3\xfa\xf3\x1e\x61\xa7\x5f\x60\x8e\xd2\x82\x7b\x04\x9b\x1b\x13\x33\x46\xe6\xdc\x23\x38\xf9\xdd\x5e\x7a\xc7\xc5\x87\x60\xd7\x34\xdd\xee\xe6\xd8\x75\x42\xf6\xe8\x4b\xca\x09\xee\x62\x90\xc7\x2d\xfd\xd9\xfe\x10\x3f\x41\xd7\x4b\x3b\xd7\xaf\xe7\x10\x0b\x0e\xeb\x44\xd7\x0b\xdb\x97\x33\x50\x4d\x37\x5d\xda\xb1\x94\x87\xc6\xf1\xec\xe3\xc9\xef\x37\xf3\x1b\xf2\xa0\x7a\x76\xc2\x76\xbd\x4d\xe6\x84\x3d\x16\x89\xb7\xd7\x4e\x00\x83\x28\x85\x2f\x8b\xe2\x8b\x37\x11\x9a\xbe\xd8\x92\x4e\xc0\x62\x82\xed\x41\xff\x3b\x5f\x96\x09\x13\xec\x84\x87\x5a\x7b\x1d\x27\x13\x86\x5b\x96\x2f\x51\x5e\xf5\x83\xc1\x75\xce\x18\xe6\x6b\xf4\x6c\x02\x57\x0d\xf2\x6b\xb2\x56\x11\x5a\xe7\xd7\xe4\x94\xc6\x8e\x31\x18\x89\xb5\x7f\xde\x3b\x7c\x86\x70\xcd\x7d\x92\xeb\x73\xb1\x53\x84\xe0\x1e\x31\x03\x01\xff\x05\x04\xc9\x74\x2b\xb9\x43\x9a\xdb\x09\xdb\x16\x6b\xa7\x3f\x1c\x90\x20\x14\xf5\x65\xb3\xfc\xdb\xb8\x08\xd3\xab\xd7\xb3\xf8\xf2\x3f\x11\xa2\x38\xea\x39\x7d\x1d\xda\x08\xf7\xb9\x56\xca\x9f\xf9\x8b\xd9\x4f\x64\x02\x4e\xfc\x85\x91\x65\x58\xdd\xd1\xbf\xd0\xfe\x94\x67\x7a\xeb\xf6\x69\x42\x65\xa3\xf6\xc9\xef\xb7\x8b\xf3\x50\x3f\xf5\xc2\xba\x19\xe7\xd3\x09\x31\xf9\x8f\xcb\x24\x9e\xa7\x11\x0e\x56\xbb\x2f\xf9\x57\x3a\x4a\x3c\x76\xdd\x78\xb0\x90\xa0\x63\xe6\x14\x73\xd2\x78\x07\x41\x3a\x3b\xa5\x67\xa6\xbc\x34\x1b\x4e\x6d\x3c\x55\xb7\x85\x73\x8c\xc1\x7c\x93\x4d\xc3\x6f\xa4\xfb\x19\xb4\xa6\x56\x3f\xf8\x72\xa6\x9c\xa0\xf0\xb8\xe6\x80\x82\x68\x1e\xc1\xe9\x96\x8e\xc7\xa7\xa9\xcf\x08\x72\x9a\xbe\xcf\x66\x05\xdb\x10\xea\x7a\xdb\x44\x5f\x3d\x30\x27\x70\xa5\x28\xeb\xbe\xd3\x78\x9f\x87\x09\x41\x17\x0f\x7f\x4c\xcd\x27\xa4\x2d\x75\x6c\x9b\xba\xa5\x89\xa0\xbd\x09\x0c\x4f\x6c\x04\x21\xdc\xc4\xd3\xea\xdf\xc8\xe2\xf7\xdc\x0d\x3d\x1f\xa4\x09\xa6\xc6\xa7\x93\x18\xa7\x5e\x06\x3e\x23\xb1\xd5\xaf\xad\xcf\xd2\x38\x46\xaf\x6a\xab\xf1\xf1\x2e\x25\x0c\x06\x48\x95\x8a\xde\x7e\xc6\x40\x25\xc8\xe2\xcf\x70\x61\x21\xa1\xc8\x64\xe5\xe7\x7f\x18\x15\xcf\x14\x9c\xfd\xf7\x46\x7a\x29\xd5\xbb\xfe\x0e\xcf\x69\xc2\x73\xde\x2f\xb5\x0f\xb3\x2f\x13\x2e\x6a\x4f\x5f\xb0\xbd\xee\x09\x41\x72\xa6\xa1\xeb\x8e\xbf\xf0\x6b\x92\x0d\xd3\x1e\x08\x25\x08\xde\x0b\x93\x73\xe1\x33\xfc\xfb\x6a\xfb\x5a\xbc\x12\x76\x04\x83\x93\x5f\x2b\x96\x5f\xeb\x63\x90\x70\xb1\xab\x27\xdb\xfb\x07\x1b\xae\xb6\x71\x9b\x9d\xb4\xea\x61\x10\xab\xb9\x7c\xdd\x86\x88\x11\x06\x05\x4e\xb1\x03\x1f\xad\xcc\x69\x1c\xb3\x66\x56\x34\x79\xb4\x72\x13\x8c\x07\x84\xfd\xa7\x9e\x92\x26\x2c\xb5\xae\xf1\x7f\xee\xa2\x40\x10\xd6\xbe\x3d\xd3\xf4\x42\x18\xe1\xa6\x7c\xcf\xcc\xe4\x8b\x61\x84\x81\x15\x9d\x57\x9b\xad\x63\x09\xf1\x3f\xd3\xd4\xc4\xcc\xba\xd8\x46\x47\xcc\x2f\xb8\x8a\x1f\x3a\xcf\x06\x05\x37\xe5\x50\x8f\xc9\xbe\x04\xef\x85\xdf\x2f\x4c\xbd\xc8\x3e\x72\xd6\x31\xb9\xe8\x34\x45\x8d\xc0\xe5\x91\x2e\x35\x6a\x75\x82\x20\x94\xa0\x72\xa4\xa1\x58\x9a\x0d\xd7\xe6\xd5\xbf\xdb\xa0\xbb\x8b\x85\x73\xc7\xbb\x93\x63\xfe\xbe\x0b\xde\xaf\x62\xcd\x4d\x3b\x70\x94\x85\x8f\x49\x3e\xcb\xf4\x2a\x8b\x68\x1c\x75\x0e\x2b\xad\xc3\x3f\x65\x12\x8e\xb9\x87\xcf\xfe\x2a\x5d\xca\x76\x4d\xcd\xc1\x4b\x8b\x92\xa7\xce\x27\xbc\x10\xcf\x49\xe8\xd0\x1b\x64\x10\x65\xdc\xb7\xa3\xdd\xe2\x0b\x6b\xbc\x48\xed\x91\x8a\xdf\x1b\xc3\x49\xe3\x70\xbb\x32\xeb\xab\x98\xdd\xea\xff\x42\xfb\xdb\xad\xd1\x73\xee\xcf\xff\x9f\x30\xed\x70\x4a\x9c\x6a\xf6\x98\xc1\x05\x89\x5f\x9b\xbf\xea\xab\x10\xd2\x83\xe7\x8b\x7f\xc8\xe6\x23\xd8\xf2\x3a\x1b\xdd\xe1\xb0\x24\xc4\x99\x54\x3a\xe7\xc4\x09\x10\xf4\x9b\x6e\x2c\x39\xfd\x61\x09\x61\x7b\xf3\xd1\x05\xfd\x36\xd7\x08\xf9\x0a\x57\x0c\xfe\x61\xc3\x59\x5e\x09\xc7\x7b\x7b\x09\x33\x6f\x17\x45\x47\xf0\x2d\x23\xa4\x5a\x7c\x91\xeb\x90\x53\x20\x78\x49\x5c\xf8\xdc\xe5\x36\x85\x50\x55\x7b\x48\xd3\x75\xba\x10\xc1\xce\xb4\x74\x59\xb2\x0b\x27\xe1\x48\xca\xc0\xfc\xda\x85\x8b\x08\xab\x2e\xf7\x87\x8a\xe4\x88\x11\x8a\x3e\x14\x5a\xc8\xac\x14\x24\x18\xf6\x70\xf0\x1d\xa8\x1a\x62\x60\xb2\xfe\xc8\xee\xee\x41\x4d\xc2\x99\xfd\xf3\x0c\xe5\x84\x25\x09\xc7\x77\x4c\x3a\x3c\x78\x24\x98\x05\xbb\x89\xcb\xff\x04\xfa\x88\x12\x9e\x2e\xb8\x76\xf4\x65\x81\xe1\x7f\x61\xa7\x45\xef\x94\x09\x87\xf5\x08\x67\xee\xb4\x3e\x62\x09\xb5\xe5\xa1\x5b\x4c\x52\xb2\xad\xb5\x3c\x0f\x6f\x2b\xe4\xd7\xd9\xe8\x24\xd2\x38\x44\x98\x41\xb9\x7f\xd8\xd9\x6a\x3b\xbd\x98\x99\x46\x78\x20\xfd\xa4\xa6\x59\x74\x06\x41\xf1\xda\x16\xd3\xf3\x47\xe5\x68\xe8\xd9\xaa\xd2\x88\x64\x57\xc2\xd2\xdc\x88\x65\xcb\x9f\x3b\x10\x86\x35\x0e\x16\x5e\x5a\x20\x48\x50\xb9\xb8\x61\x9e\xa7\xcf\x24\x42\x8e\xdf\xcf\x3c\x2f\xc1\x87\x04\xc9\x2a\xdd\x87\xac\x35\xb6\x84\x89\xce\xae\xf7\x3f\x67\x72\x10\xca\xfe\x9c\x73\x1d\x32\x11\x22\xb4\x1e\xbe\xfd\x71\x66\x54\x21\x03\x9e\xe9\xb7\xdc\x97\x31\x1a\x34\x8e\xa3\xb3\xd3\x23\xce\xdd\xf9\xc5\x40\xe2\x31\x6b\xe9\x43\xe7\x39\x84\xf9\x4b\x4a\xd3\x22\x64\x35\x09\xbb\xf6\x8c\xed\x6e\xd4\xf6\x26\x98\x2e\xaa\xf5\x4e\xd4\xdc\x4f\x28\x55\x9f\x38\x4b\xec\xfd\x7e\x42\xaf\xd8\xaa\xad\xfb\x8e\x0d\x31\x10\xb8\xff\xf6\xf3\xe4\xb3\x9b\x08\xab\xae\x29\xb3\xa4\xe7\xda\x11\x3e\x3d\x8d\xbb\xc4\x35\xe6\xcc\x86\x49\x5f\x83\x64\xab\xb9\xad\x08\x8a\x35\xc6\x79\x6f\xae\x8b\x13\x94\xb7\xb2\xce\x74\x1d\x8d\x27\x24\x25\x6d\xfb\xd1\xbe\xc3\x91\xd0\x35\x5d\x66\xc3\xe7\x2f\x0d\x84\x38\xd7\x30\x99\x18\xb3\x50\x42\xf1\xac\x1b\xeb\xeb\xcc\x8e\x13\xce\xb0\xda\xf6\xd6\x9a\x17\x12\x6e\x4d\x7f\xd8\xd7\x33\x3b\x87\xf0\xf0\xb4\xa3\xcb\x19\x9d\xab\x84\xda\x3a\x29\x85\x65\xae\xb7\x09\x26\xb5\xe5\x55\x0d\x2f\x6e\x12\x8a\xec\x4a\x23\xbd\x83\x43\x08\x15\xb0\x93\xbd\x13\x7b\x8e\xb0\x22\x78\x51\x1e\x63\xab\x47\x78\x9e\xb0\xaa\xcf\xba\x92\x83\xa0\x33\xc3\x99\xcb\xa8\xed\x18\x41\x33\x5a\x77\xe6\x9e\x8e\x22\x16\x2a\x27\x30\xef\x3e\x4e\xf4\x21\x04\x59\x5c\xe1\x0a\xd5\x7e\x44\x28\xb5\xd8\xa5\x77\x6a\xf0\x10\x0b\xf1\x1b\x24\x9c\xda\xcb\x6a\x09\x9c\xd3\x56\xbd\x4e\x54\xa8\x25\x74\x25\x85\x72\x05\x2f\xc9\x20\xb8\xec\x73\x4b\x66\x0d\xf8\x13\x94\x4c\x36\xed\x59\x96\xbb\x92\xa0\x99\x34\x7d\xeb\xc0\x53\x59\xc2\x36\x9b\x61\xdb\xcc\x73\x96\xff\x85\x1d\x63\xc7\x76\x47\x46\x8b\xfd\x17\xbc\xce\x06\x9f\x4f\xd8\x72\x90\x19\xe2\x6f\xe6\x9a\x3d\xdf\x97\x85\xb0\x85\x26\x53\x8a\xa7\x34\xb2\x70\xe4\x07\xef\xde\x0b\xe7\xa3\x58\x98\x51\x91\xfb\xb2\xe3\x10\x8b\x30\xb0\xd0\xc3\x60\xe5\xed\x62\x06\xcf\x66\x5c\xe3\xdb\x55\xca\x49\xe3\x08\x0d\x09\x7a\xc5\x37\xa7\x31\x0f\x89\x4e\xc1\x1e\xd9\x5e\xaa\x84\xfc\xb5\x99\x96\x82\xeb\x34\x09\xfd\x92\x57\xab\xc7\x16\xf2\xd3\x50\xa6\x4e\x9c\xed\x66\x5e\x42\x95\x9d\xc4\xaf\xa9\xee\x26\x04\xe1\x35\xfc\x4f\xda\xe6\x27\x11\xac\x03\xfb\x93\x9e\xcf\x9d\x4f\x78\x73\x52\x82\xab\x50\x2b\x81\xe0\x46\x9a\x1b\x34\x55\x6a\x19\x98\xdf\xba\x98\x26\x69\xbe\x8e\xc0\xcd\x2f\x76\xdb\x7a\xfb\x4e\x82\xde\xa0\x47\xff\x2e\x5d\x5e\xc2\x72\x4e\xc9\x9d\x65\xdb\xc6\x18\x7c\xdf\xf6\xba\x71\xc2\x9d\x4d\x84\x1d\xa7\x26\x6e\xeb\x69\x71\x27\x54\xac\x7e\xae\x6e\xa5\x65\x46\xf0\x5a\xa7\x92\xe8\x69\xed\x4c\xb8\x1b\x6c\xda\xa5\xdd\xed\x48\xf8\xf6\xce\x51\x9a\x37\xd9\x87\xad\xac\x39\xb7\xb2\x6e\x9d\xb4\x15\xc1\xbb\xe7\xb2\x57\xca\xa8\x37\x61\x82\xbe\xfb\xa1\x45\xc2\xbb\x08\xf7\xe7\xf4\x84\x1e\x15\x2c\x26\xd4\x3d\x38\xef\x37\x9d\xa7\x9b\x41\xf1\xdb\xaf\x4e\xfc\xc2\x0f\x09\x5b\x7d\xc3\x53\x95\x07\x6e\xb0\xc6\x61\xd8\xd6\x32\xf3\x43\x96\x13\xe1\x98\x7d\x8a\xd9\xcd\x3f\x4a\x04\xae\x37\xa3\xc6\x5a\x61\x1a\x84\xe4\x72\xb3\xe2\x23\x8f\x53\x08\xda\xbf\x1a\xcc\x75\x51\x4c\xb8\x32\xf9\x76\xf4\xa3\x3f\x62\x84\x16\xcf\xc0\x7a\x3f\x75\x7d\x36\x30\x8e\x5b\x9d\x22\xcd\xd3\x18\xdc\xd0\x17\xd9\x94\xca\x17\x42\x90\xd0\x98\x58\x3d\x85\x83\x97\x86\x56\x33\x22\x33\x96\x7d\x66\xb0\xb3\xed\x19\xf7\x82\x41\x01\x1a\x47\x40\x86\xf9\x2a\xbf\x6a\x63\x82\xd5\x58\xd7\x86\xe2\xa3\xfc\x04\x9e\x49\x77\xb6\x54\x4f\x9c\xc4\x06\x89\xc4\x58\xff\xbb\x23\x13\x08\x85\xcb\x0a\x1e\x5f\xf3\xe6\x22\x74\x30\xd1\x81\xfd\x3a\xfa\x6c\xf0\x11\xde\x7d\x29\xf8\xae\x3c\xa1\x64\x31\x47\x16\x33\xb1\x89\x41\xfe\xbc\xd3\xc5\x53\xcd\x76\xd3\x38\xe4\xad\x13\x67\xaa\x3b\x6a\x11\x4e\x8a\xbb\x9c\x08\x95\x53\x24\x48\xca\x4e\x53\xec\x32\x58\x41\x10\x2e\x62\xe6\x7f\x13\x5e\x44\x90\xdd\xb2\x2f\xe4\x84\xa3\x14\xc1\x31\xee\xc3\x94\xd7\x3e\xef\x18\x0c\xaf\x72\xf4\x4f\xfb\xa8\x4c\x60\xc5\xe6\x98\x96\xe8\xde\x20\xe8\xf2\x3f\x10\xe5\x99\xd1\xcd\xa0\xc2\xac\x33\x67\xa2\x5a\x27\x83\xc9\x37\x3f\x9d\x7b\xc9\xa5\x48\xe3\x88\x69\x9d\xa0\x26\x97\xf8\x87\x41\xaa\x8e\xfc\x12\xce\xf4\xab\x84\xa5\xea\x87\xce\x75\x08\x6f\x26\xc4\xfb\x68\x75\xe4\x87\xb3\x63\x4d\x72\x5e\x57\xe5\xb2\xa5\x6c\x50\x7c\xdd\x2f\x2a\x74\xf0\x3b\x83\x21\xe9\xed\xdc\xfa\x5a\x53\x08\xf1\x11\x3b\xbc\x54\xd6\xcc\xfa\xfb\x7c\x33\xd1\xfb\xf0\xe2\x36\x0b\x2d\xd3\x73\xf9\x37\xcc\xea\x66\xb0\xcd\x69\xd9\x4f\xd7\xee\x6b\x2c\x94\x37\x0f\xc9\xdd\x1c\x9d\x42\x38\xde\x75\xe0\x95\x8d\xcc\x65\xc2\x79\x81\x05\xb3\x0c\x5f\x2b\x11\x4a\xf8\x6f\x2d\x7e\xc9\x23\xc9\x86\xa3\x83\xce\xe1\x4a\xb5\x93\x09\x4d\xa8\x5d\xb9\xe2\xd3\x12\xc2\xc1\x0d\x1d\x9f\x7e\x68\xd4\x31\x98\x38\xe2\xbd\x37\xb2\xac\x8b\x81\xe2\xce\x15\x47\x98\x5c\x49\x1a\x47\x81\xc2\x01\x41\x63\x0e\x65\x82\xcb\x5d\xdb\x63\xfe\xc7\x1a\x19\x14\x65\xe6\xaf\xaa\x1a\xcb\x26\x5c\x7e\xb1\xef\x9d\x5d\x49\x19\x0b\x50\xbe\x29\xf5\xaf\x58\xe2\x91\xed\xb7\xed\xf3\x08\x7e\x09\x77\xd2\x35\x6e\x32\x04\x5f\xa9\x10\x63\xc0\x82\x0d\xcf\xd6\x3a\x1c\xda\x3e\x58\xc2\xe0\x9a\xf0\x8f\x49\xb7\xfe\x9e\x62\x34\x04\xfa\x2b\x4d\xae\xde\x23\x38\x1e\x2b\x8b\xfc\x87\x26\xb7\xe0\x4b\x0f\x9e\xdb\x12\x1c\xef\x44\x17\x5a\x89\x2d\x24\x3c\x38\xc2\xd3\x77\xea\x8a\x19\x61\xce\xe0\xf0\xc6\x99\x93\xc7\x18\x6c\x99\xbd\x74\xf3\x05\x91\xc9\x84\xc1\x82\x7b\xad\xf3\x6c\x9e\xb0\x81\x6b\x6f\x53\x93\xc8\xb0\x1f\x83\xdd\x91\x26\xbf\xab\x95\xb5\x69\x1c\x10\xfc\x38\x69\xa7\xcb\x4f\x06\xd1\x32\x5e\xf7\xd6\x5c\xe0\x27\xec\x9b\x6c\x2e\x55\xc6\xeb\x48\x38\x1f\xa9\x59\xe3\x13\xb1\x90\xd0\x13\x18\x42\x16\xcb\x85\x09\x13\x0d\x86\x02\x32\xbb\x6e\x12\x54\x72\x9a\x06\x7c\x25\xbb\x18\x2c\x8b\xdf\x2a\x53\xe7\xf2\x9d\x41\x64\xb3\xc4\xbe\xa0\x9e\xfd\x84\xf3\x62\x42\x71\xef\x85\x15\xfe\x0b\xeb\xbe\x9d\x0d\x1f\x99\xd3\x92\x07\xa7\xe1\xd5\x07\xec\x9c\x3a\x19\xf0\x2e\xd0\x5f\x55\x30\xb9\x9b\x0d\xe5\x7b\x7b\x0c\xe2\xcc\x5f\x30\xb8\x67\x73\x9e\xc7\xc2\x41\x82\xb0\xd6\x6f\xd6\xe5\xc2\xcf\x0e\x84\xb8\x49\x99\x06\xbf\xdd\xa7\x13\xda\xde\x2d\x29\xb5\xb0\x99\x4e\x98\x91\xb0\x5c\x3f\xfb\xe4\x22\xc2\x97\x53\xf9\x25\x7f\x3c\xf8\xd9\x10\x73\x6c\xea\x54\x9b\xde\xd3\x79\xf0\x8b\x14\xbb\xe3\xbe\x46\x84\xb0\xa0\xe4\xd8\xc9\xfe\x8f\x12\x04\xfd\x80\x2b\xaf\xf5\xaf\x6b\x10\xf4\x67\xce\x6c\x6f\x70\x4e\x23\x6c\xe9\x48\x53\xbb\xe6\x38\x87\xc0\x7b\xfc\xba\x6c\xf7\xda\x2c\x06\x63\x7b\x2b\x56\x08\x62\x11\xc1\xfd\xc6\xe4\xd1\x5d\xea\xee\x84\x2b\xc7\x3d\x3f\x2c\x7c\xf2\x8c\x30\x37\x50\x6f\xba\x8c\x93\x2d\xa1\xfd\x42\x47\xef\xb4\x7d\x16\x84\x34\xf1\xa7\x52\xdb\xc3\xd7\x12\xac\x72\x67\x14\x96\x7a\x4e\x23\x28\xee\xbd\xf4\xc4\xf6\x5c\x04\xa1\x21\x46\xaf\xbf\xc8\xff\x17\xe1\x57\xdb\xea\xeb\xf7\x16\xfc\x22\x98\x18\xee\xe7\x32\x3d\x15\x4f\x50\xf9\x95\xda\xb8\xc1\xff\x06\xe1\xd9\xa8\xd3\x29\xa5\xe7\xd7\x09\x92\x0d\xd1\xad\xe9\x87\x62\x58\xe3\x23\x56\x42\x86\xd8\xf7\x0a\x17\xc2\x90\xe9\x3d\xdd\xb0\xc5\xc3\x0c\xbc\xb9\x33\xbb\xcc\x66\x08\xd0\xff\x42\x96\xb4\xa1\xc3\xe8\x7c\x30\x38\xf1\xd8\xdb\x31\x79\xdd\x20\x83\xa1\x5c\x07\x53\x6e\x35\x37\xfa\x0f\x3c\x0c\x09\x2f\xb8\xf4\xcb\xe5\xbf\x70\x44\xa6\xd3\x56\xd3\xcb\x8a\x10\x9f\x26\x35\x32\xa1\xf5\x28\x61\x6e\x71\xe1\xfd\xc0\xbf\x30\xed\xdb\xde\x9b\xd2\xe9\x4e\x28\xd9\x3c\xe1\xb4\xbb\xc7\x3e\xb6\xd2\x33\xc2\x1a\x56\xa3\x83\x84\x39\x73\x1e\x7e\xf8\xc8\xbf\x82\x20\xb0\xbb\x4f\xa5\xee\x94\x00\xc1\x73\x09\xc7\xa9\x61\xd6\x75\x16\x44\x8d\xd6\x96\x7f\x7c\x7e\x8f\x70\xf2\x41\xcd\x7c\xe5\x15\xf7\x08\x0f\x38\x96\xa4\xff\x2b\x2e\x3e\x0f\xa2\xc5\x6f\xd9\xb0\xc1\x4a\xe0\xf1\x89\x95\x93\xb6\x11\x38\xef\xfd\xe1\x94\xf8\x5b\x26\xdd\x1c\x10\xe1\xdb\xaa\x47\xb8\x30\x77\xde\xf7\xb9\xde\xb3\x08\xeb\xd5\x64\x6c\x5e\x26\xf3\x10\x82\x3e\xe4\x69\xea\x4a\x4c\x24\x78\x2a\xe4\x5e\xe5\x48\x4d\x26\xc8\xd6\x4f\x52\xee\x9f\x79\x97\x10\xf2\xa2\xb6\x21\xf4\xf7\x6d\x82\xc2\xe0\x4e\xbe\xcf\x6f\xfd\x08\x52\xe9\xfb\x2a\x3f\xea\x0e\x33\x78\x7c\xb2\x75\xf2\xe0\x9a\x54\x82\xf0\x95\x32\x71\xfc\x37\x8c\x47\x5d\x0b\xb6\x79\x69\x12\x78\x8d\x6d\x84\xef\x4f\xb5\x27\x7c\x60\xda\xec\x6d\x97\x76\x31\x98\x7e\x58\xf7\x58\x45\xb8\x18\xfd\x07\xfe\xef\x6f\xf1\x3d\xd2\xfb\xa1\x8e\xbc\x2b\xc1\x5c\x73\x29\x9d\x8a\x78\x45\x78\x72\x6c\xd0\xe5\x70\x47\x21\xc1\xfa\xa1\x43\x54\xa8\x9b\x3f\x1b\xde\x1a\x8f\x24\xf9\x44\x78\xb3\xc6\xcb\x8b\xcb\x62\x86\xff\x10\x6b\x3d\x1c\x54\xfe\xd2\x96\x60\xdb\xe5\x6e\xef\x79\x63\x94\x41\x3b\x39\xf3\xf8\x84\x88\xd1\x38\x4e\xba\xcc\x9d\xfc\xe1\xeb\x00\x03\x13\xe9\x6c\x8d\x37\x53\x9e\x13\x02\xdd\xee\x1e\xad\xdc\xd9\xc6\xc2\x40\xeb\x90\x98\x4a\xff\x63\xc2\x19\x88\x94\xa4\x38\x4e\x25\xbc\x99\xd5\x63\x11\xa9\xff\x83\x19\x47\xf2\xeb\xdf\x23\x97\x33\x5a\xf2\x70\xd5\x7e\x52\xf4\xb1\xbc\x59\x04\x03\x3f\xc7\x55\xc2\x27\x57\x12\xca\x9b\x43\xc6\x16\xf7\x98\x10\xda\x3f\x15\x46\x39\x58\x7a\xb0\x41\x60\xe4\xb8\xda\x83\x94\x83\x84\x73\x7a\x1a\xfe\x8e\xb7\x42\x59\x18\xe8\x16\xf2\xdb\xd9\xf7\x8a\x70\x3d\x25\x7a\xa7\x5d\xfd\x00\x83\x75\x59\x7c\x0a\x61\x4d\x6a\xf4\x1f\x18\x6a\x1e\xd2\xea\xf6\xe6\x21\xcc\x91\x5c\x31\x91\xe7\xcb\x28\x83\x16\x2b\xa9\xed\xa9\x07\x46\xd8\x20\xf0\xa9\x5f\xff\x70\x8b\x2a\xe1\x45\xcd\x6c\x8e\x0f\xb5\xb3\x08\x53\x42\x95\x4b\x64\x22\x95\x09\x6d\x5a\x5b\xbe\xef\xbd\xc0\x4b\xa8\x93\xd1\xe0\xbd\x72\x75\x11\xa1\x71\xb9\x96\x69\x60\xed\x53\xc2\xe1\x52\x79\xd1\xe4\xca\x11\x06\x21\x56\x67\xa2\xcd\x16\xac\x20\x3c\x3d\x70\x77\xee\x09\xa9\x19\x84\xb6\x4d\xbd\x57\x4e\xcd\x90\x22\x64\x77\x94\x65\xaa\x2f\x7e\x43\xd0\xe3\x2d\xb7\xfa\xee\x7d\x8d\xd0\xfb\xa7\x22\x58\xd7\xd0\x86\x20\xbc\xb5\xae\x66\x7f\xce\x0d\x16\xc2\xef\xec\xff\x99\x75\xce\x96\xa0\x1d\x6d\x31\xf8\x9e\x2b\x88\x20\x93\x5d\x15\xa0\xb5\xf7\x06\x61\x75\x61\xc5\xa2\x7d\xbb\x8e\x10\xee\x47\x77\xda\x07\xaf\xf0\x60\x2b\x02\x41\x61\xd5\xab\x5e\xbb\x10\x22\x17\xf7\x72\x9f\xf3\xd0\x20\x58\xb7\xe8\xa7\x78\x7c\x0d\x26\x84\x65\xdb\x2d\xb9\x21\x70\x9f\x20\x90\x2f\xad\x79\x89\x3f\x86\xd0\x50\x22\xeb\x59\xe3\x56\x46\xe8\xdc\x3a\x47\xfd\x77\x7c\x05\x0b\x0a\x65\xdb\x1a\x24\xbc\x2b\x08\x14\xbf\xdf\x26\x65\xe1\x45\x42\xc8\x17\x9d\x21\x83\xe3\x9b\x08\xdf\x39\x07\xe3\xd2\xfe\x9e\x3b\x16\x78\xa6\x1f\x9b\xb4\x5a\x87\xf0\xe3\xd9\xde\x49\x9b\x7e\x4d\x25\x14\x67\x3e\x90\x5f\x12\xff\x77\x89\xdf\x3f\x51\x5b\x2e\x63\x0e\x41\x2c\xcf\xbd\xc2\x7e\x6b\x28\xe1\xe1\xfe\xd6\x9d\x6b\x3e\x74\x12\xba\x06\x56\xa8\xb5\x5a\xd5\x11\x5c\xe6\x07\xa4\x8b\x57\xb6\x11\xe2\x3c\x0c\x37\x89\xb5\x3d\x26\xf8\x4a\x2a\x19\xac\x15\xf3\x65\xe1\x84\x98\x62\x72\x98\xe5\x5e\xc2\x55\xb7\xc0\x9b\x17\xeb\x3e\x11\x3e\xef\x5f\xe1\xd6\x65\x9c\x43\xf8\x50\x13\x76\xb6\xe3\x5a\x11\x21\xb3\x77\x91\xca\x4e\x9d\x27\x2c\x88\xec\x5d\xea\x5c\x2b\xf2\x91\xc1\x9d\xe5\x3f\xcd\x87\xf6\x4e\x25\xb8\xb4\x9b\x07\x5e\xcb\x79\x42\x58\xec\x76\x86\xf5\x0f\xff\x57\x4c\x0f\xb6\x6d\x54\xf3\x8c\x25\x7c\xfe\xe2\x2c\x32\xfb\x41\x2f\x83\xed\x7b\x56\x36\x55\x45\x15\x10\xc4\xcb\xbe\x7e\xe3\xde\x73\x91\x30\x12\x39\xcf\x39\x63\xe9\x73\xc2\x71\xd9\x6b\x47\x26\x7c\xcc\x22\x2c\x34\xe7\xfb\x19\xbd\x31\x8a\x85\x86\xff\xc7\xc8\x9f\x46\x63\xf9\xfd\x71\xff\x3f\x29\x53\x12\x15\x21\x43\x99\x95\xcc\x8a\xe8\x78\x87\x12\x8d\xc8\x90\xa8\x84\x24\xcd\x54\x4a\x91\xa2\x81\x24\x42\x65\x1e\x2b\x42\x19\x32\x97\x53\xa6\xa8\x94\x26\x95\x12\x8d\x42\x65\x08\xbd\xa8\xf8\x2f\xfd\xd6\xfa\x3a\xaf\xf5\xff\xac\x6b\x5d\xb7\x3c\xd6\x73\x1f\x37\xb0\x0e\x7b\xbf\xb7\x1b\xa7\x67\x4f\xee\x41\xed\xab\x04\x19\x97\x11\xc7\x6b\xf7\x0f\xb3\xb0\xcc\x99\x58\x9f\x24\xcd\x09\x31\x92\xaf\x9c\x14\x8c\x4c\x09\xf3\xc2\x4e\xb0\xf6\x6c\xd5\x25\x2c\xdd\x2f\xf8\x53\xbe\x7b\x15\x41\xeb\xc6\x86\x37\x4b\x02\xa7\x10\xb2\x7e\x1e\x68\x19\x1e\xcd\x20\xe8\xb1\xac\x0b\x96\xec\xd6\x20\x5c\xba\x4a\x6d\x92\xf5\xd7\x08\xcf\x02\x37\x74\xa4\xd4\xd7\x11\x6a\x3f\x89\x1d\x08\xcf\x34\x27\x48\x1c\x98\x67\xf1\xae\xea\x6b\x39\xb2\x64\xa4\xe7\xaa\x2c\xbb\x43\xf8\x10\xf6\xf3\xb7\xf2\x18\x8a\x6d\xcc\x4d\xfe\x21\xf4\xd5\x29\x25\x8f\x57\x99\x04\xb1\x42\xd1\x22\xa9\xc5\xfb\x08\x6d\x03\x27\x70\xd3\x47\x81\x50\x9b\xb0\xea\xd5\x2c\x91\xf9\x84\x78\xfd\x53\x5d\x34\x69\x88\xc1\x19\xba\xb2\x2c\xf5\xa7\x08\x8d\xc3\xb5\x37\x70\x5f\xad\xd5\x4f\x06\x5f\x63\x5c\x24\xe4\x46\x26\x11\x9e\xd7\xcc\xcb\x89\xfa\x5c\x4e\x10\x98\x32\x7c\x66\x41\xfb\x2d\x42\xdb\x6f\xdb\xfa\xc8\xb1\xd2\xba\xab\xa2\x7b\x61\xca\x0e\x82\xc1\xcb\x4b\x8d\x7f\x44\xca\x08\x06\x66\x47\xd3\x6c\x4d\x05\x08\xdd\x3f\x06\x1f\x4c\xe9\x55\x62\x83\xc7\xb1\x0b\x3d\xed\xaf\xbe\x97\x23\xb4\x57\xd7\x98\x59\xad\x44\x58\x2f\x7d\xb6\xf5\x59\xdb\x3b\x06\xde\x8c\xc9\x8d\xaa\x17\x9f\x18\xcc\x74\x8a\x9b\xb7\xfa\x63\x07\x1b\x56\xfe\xed\xed\x88\xdc\xd3\xc3\x40\xda\xe7\x44\xa9\x04\xb3\x8c\xf0\x9a\x4b\xc4\x2b\x74\x6b\x05\xe1\xf8\x9e\x22\x3f\xb1\xe3\xf9\x84\xda\x77\xd2\x09\xc9\xb9\xbe\x84\x47\x9e\x77\x26\xc9\x71\xea\x12\xae\x84\xac\x96\x7d\xd5\x9b\x4f\x70\x11\x3f\x78\xa4\xe5\xce\x57\x06\x4b\x0d\xb2\xda\x4b\x07\x39\x68\x1c\x86\x4e\xaf\xc3\x22\x58\x2a\xff\x85\x91\xce\xd2\xdd\xa4\xd5\xc6\x20\x74\x4a\xe9\x23\x66\xba\x29\x61\x97\xda\xef\x63\xf3\x2e\x70\x12\xa6\x58\x56\xce\x5a\x3a\x5b\x93\x70\x2f\x70\x5f\x54\x99\x36\x37\xe1\x7a\xdb\x8b\xd6\x73\x96\x56\x6c\x38\x2c\x95\x73\x48\x6a\xf6\x53\x06\x4b\x4b\x54\xd5\xf3\x3c\x0b\x09\x21\xcd\x0d\x46\x8a\x13\x8a\x08\x2a\xd7\x0f\xe5\x7a\x26\xdf\x26\xd4\x1c\xff\x90\x70\x7d\x79\x38\x61\x81\xa5\xa3\x6d\xb4\x62\x00\x0b\x1d\x57\xfe\x7a\xba\x7d\x4a\x22\x14\x9f\x29\xdc\xda\xda\x51\x48\x98\x9d\x61\x5d\x23\x3a\x71\x37\xc1\x77\xe3\x9b\x49\xf3\x0d\xfa\x19\x7c\x0b\xb0\xd7\xd8\xc3\x23\x4f\xe8\xe6\x8f\x5f\x5b\xff\x5e\x82\x20\xb7\x3f\xd4\x58\xb1\x71\x0e\x21\xf6\x50\xec\xb4\xfe\xd9\x33\x08\xcf\x2e\x73\xf3\x74\xe7\xde\x20\xe4\x0e\x9b\x8a\x1b\x87\xef\x25\x78\x1c\xca\x1b\x95\xd3\x51\x64\x83\xb5\x8f\xe3\x97\xdd\x9d\x55\x0c\xa8\xd8\xe7\xbc\xd0\x12\x2d\xb6\x92\xca\xe7\xd0\xa7\x2b\x32\x81\x10\x1c\xa7\x70\xcf\xbb\x4e\x9f\x20\x66\x24\xf7\xd3\x6b\x67\x16\x0b\xb5\x3c\x77\x86\x56\x68\x1d\x22\x28\x73\xfe\x72\xb3\xbc\x64\x42\x90\x7a\x5f\xe1\x15\xff\x75\x23\x61\x8e\x5d\xa8\x5e\xcc\xc6\x5c\xc2\xdf\xb8\x42\xb3\x43\xb7\xae\x11\x22\x96\xec\xfd\x2b\xbc\x47\x87\x20\xd3\x5c\x18\xb5\xfa\x88\x1c\xc1\x49\x54\x6f\x8b\xff\xae\x6a\x82\xe3\x52\x93\x9f\xb5\x2f\x1f\x13\xd6\x88\xad\x2e\x9e\x94\x51\x42\xd8\x7c\x72\x9b\x8f\xff\xc3\xc7\x84\x87\xf1\xeb\xcf\xdf\x1a\xba\x4d\x38\x7b\xd9\x75\x8f\x58\x7c\x00\xa1\xfd\xf9\xaf\x95\xde\xac\x13\x84\x41\xd7\x5d\x5f\x7f\xc5\x04\x10\xe6\xf0\xf0\xec\x7a\x91\x3c\x81\xb0\xeb\x3b\x66\x6f\x31\x34\x25\xdc\x19\x2e\xca\x32\xf3\xb2\x62\x2b\xe2\x16\xe6\x36\x7d\x7e\xbc\x84\x25\x41\xc2\x0b\x0f\x1c\x59\x44\xe8\x0f\x2e\x4d\x7a\x53\x2f\x41\xe8\x5e\x16\x70\xf3\x56\xc2\x24\x82\x50\x4b\xcc\x50\xcf\x3d\x2f\x36\x6c\x71\x6f\x3d\x33\xa5\xbf\xad\x1c\x56\xeb\x9a\x97\xed\x54\xb5\x21\xec\x73\x9c\x72\x3c\x94\x11\x26\x6c\x78\x72\xb1\x65\x89\x69\x01\x0b\xcf\xb7\x95\x8d\xbc\x76\x88\x26\xec\x99\xdf\x5b\xda\xb7\xe8\x2c\x41\xfb\xf3\xf1\xa4\x37\x6d\xa5\x84\xe0\x65\x53\x54\xea\x8f\xdd\x61\x41\x2b\xb7\xf3\x18\x3f\x33\x36\x8a\x68\x8c\xf8\x6d\xc8\x57\x25\xac\xf4\xee\x50\x28\xb8\xc5\x47\xd8\xbe\x4b\xc1\xbe\xdb\x35\x8a\xb0\x4d\xb6\x20\x94\x4f\x26\x98\x70\xf2\xa9\xab\x6a\x95\xb5\x25\x21\xa0\x27\xea\xf4\x51\x0b\x25\x02\xd7\x93\xd0\xb2\xaa\xc4\xd7\xe5\xb8\x3c\xe5\xfd\xb5\xbd\x7b\xcd\x68\x1c\x39\xc3\x6d\x89\x19\xbf\xfb\x19\xcc\x5e\x2b\x10\x31\x99\x4f\x97\x10\xb9\x7f\xf1\xbb\xb0\x9b\xd3\x09\x3e\x0b\xcb\x7d\xef\x8d\xed\xb4\xe6\xb1\xa5\xfe\xf9\x07\x12\x08\x3b\xee\xa4\xd0\x8b\x60\x69\x36\x48\x9d\xe8\x6f\xf3\x18\x7e\x4a\x38\xae\x30\xd4\xbb\xe3\xa4\x01\xe1\xaf\x79\xaa\x6c\x82\x38\x18\xd4\x58\x87\xfa\xee\x36\xd5\x26\x7c\xc8\x30\x0a\x6e\x12\x36\x27\x2c\x0f\xfd\x23\xe2\x30\xaa\x40\xd8\xa6\x52\x6e\xc5\xfb\xfc\x0c\x0b\x9a\x8d\x59\x1c\xea\xb1\xd9\x2c\x08\x77\xd7\x84\x15\x2a\x9c\x63\x61\xe7\x4c\xb5\xe5\x8d\x6f\x2c\x09\xdd\xe9\x4e\xe5\xc2\x81\x02\x84\x62\x81\x4f\x9b\xe6\x1a\x6f\x25\xb4\x54\x72\xc5\x64\x7a\x5a\x13\x72\xad\x93\x0e\x2d\xed\xd3\x22\xec\x3a\xb2\xc0\xd5\xfd\x80\x1e\xe1\xd2\x16\xeb\x3a\xa3\xa6\x59\x04\xcb\xb8\x93\x4d\x25\xbc\x02\x84\x69\xb7\x25\x5f\x55\xe6\x5e\x27\x04\x07\x9d\xb9\xb8\x28\xb6\x90\x90\xfb\x2e\x6f\xcf\x8e\x59\xb7\x08\x03\x5f\x9a\xbe\x8e\xe6\xd7\x13\xb8\x56\xe8\xf1\x3d\xb9\xab\x4d\x98\xc4\xbb\xcc\x63\x84\x23\x93\x30\x6d\xc4\xb3\xe2\xfe\xe7\x59\x04\xb9\x37\x33\xa3\x3c\x8c\x0a\x08\xe5\x11\x13\xfc\xfe\x61\xff\xec\xd9\x21\x0d\xab\xf2\x09\xdc\x4d\x97\x07\xdc\xc7\x8a\x5a\x43\x6e\xe9\x60\xbb\xcd\xff\x15\xcf\x7b\xa5\xb7\x5a\xfa\xaa\x12\x1e\xe9\x4d\x34\x12\xe3\xad\x20\x4c\xf3\xe6\xab\xdc\xfe\xc3\x8a\x50\xfb\x3e\x35\x27\xa1\x62\x05\xc1\xfb\x6f\x40\xd8\xf1\x8a\xa5\x84\xd8\x25\x03\xfb\xcd\x2b\x8b\xcb\xd1\xfc\xf1\x3e\x97\xc2\x9e\x0a\xc2\xe3\x8b\x07\xb4\x55\x6e\xdf\x65\x61\xf7\x45\x51\x13\xa7\xf0\x07\x04\xbe\x52\x7e\xf3\xff\x6f\x49\x47\xe5\x64\xec\x0d\x11\x42\xc9\xd1\x6b\xfa\xe1\x53\x65\x08\x93\xd6\x94\xf8\x93\xc9\x09\x82\xf6\x07\xff\x39\xef\x37\x2c\x26\x0c\xe8\xdf\x92\x82\xe1\x4c\x42\xe6\x22\x8f\xe0\xe5\x36\x9c\x84\xb8\x8b\xd5\xaf\x97\x6e\xfb\xc3\x8c\x43\xba\xbd\x93\xeb\x50\xf3\x4f\x06\x3f\x93\xf7\x9f\xab\x73\x5b\x48\xa8\xd3\x3d\xb7\xed\xdd\xbf\x8f\x30\x2c\x09\x3c\xe6\x71\xbf\x97\x0d\xfd\xea\x7a\x66\x9f\xb7\x3e\x65\x30\x74\x4d\xe7\x7b\xdf\x52\x1d\x42\xe4\x48\xb2\xb5\xca\x69\x63\xc2\xf1\x7c\xed\x68\xef\x5c\x7b\x82\xf6\xcd\xd0\xee\x5d\x21\xde\x2c\x2c\xda\x11\x38\x7b\x64\x8a\x34\xe1\xfe\x4f\x6e\xfb\x33\x71\x1b\x09\x55\x03\x81\x6b\x04\x5f\x70\x11\xce\xe9\x7d\x89\x7f\x9f\xc9\x43\x30\x77\x5c\xa5\xd8\xd2\xa3\x41\x28\x98\xf4\xd6\xec\xd3\x86\xbb\x84\xdc\x96\x72\xcd\xd1\xd2\x7d\x2c\x4c\xe7\x5b\x5a\x95\xea\xf6\x84\xc1\xca\xf8\x23\x82\xea\x92\x5e\x2c\x9c\x0a\x7d\xfc\x23\x76\x76\x15\x41\xe3\x5d\xb1\x0c\xa7\xf7\x07\x16\x9a\x4e\x1f\x37\xcc\xc8\x2d\x25\x78\x66\x30\x33\xac\x93\xc3\x09\x33\xfa\x78\xaa\x23\xde\xde\x24\xcc\x51\xd6\x6e\xb9\x30\x86\x82\x65\x67\xf4\xff\x95\xae\xc2\x8d\x93\xff\x41\x41\x2e\xdb\x6a\xc8\xc7\x94\x70\x4f\x66\xa3\x92\xd0\xb7\x0a\x82\xb9\xa0\xc2\xa5\x27\x19\xdb\x08\x66\x2b\xcf\x8b\xd3\x88\x2c\xa1\xeb\x93\xc6\x21\x9b\x6a\x4b\x16\x1e\xa9\x4f\xb9\xb4\x62\xa5\x28\xe1\xee\xbd\x4d\x05\xdf\x54\xae\x11\x3e\x6f\x91\x48\x10\xef\xcf\x23\x9c\x3e\x3d\x35\x4d\xb2\x76\x21\xc1\xff\x7b\x45\x7e\xbb\xe8\x74\x36\xe4\xfe\xd2\x5d\xb5\xb8\xbd\x9f\x81\xc5\x8b\x1a\x49\x77\xae\xa7\x84\xeb\x1f\xef\xdd\xd9\x51\xc7\x10\x9a\x57\xba\xae\x8b\xb6\xd4\x62\x43\xd4\x93\x3c\xbe\x3a\xde\x7c\x06\x4b\x7d\xe2\x7c\xbe\xcf\xa9\x25\x5c\x5f\xff\x68\x51\xbb\xcd\x49\x82\x75\xd0\x1a\x0b\xf3\xcf\xae\x04\x57\x8f\x93\xcf\xfc\xe6\x5e\x24\x9c\x7c\x10\x2d\x6d\xf2\xe6\x02\x61\xcd\xe3\xc6\xc4\xd5\x31\x63\x6f\x54\xd5\x56\xa3\x35\xff\x07\xbc\xf9\x8f\xac\xff\x3f\xe1\xeb\x63\xec\xb9\xfb\xf4\x91\xff\x82\xf6\x48\x72\x54\xdb\x1c\x1d\xc2\x8f\x00\xd7\x6b\x1b\x2b\xd3\x18\x54\xbf\xfb\x6c\x04\xee\x62\xc2\xf9\x5d\x42\x7b\xff\x41\xf4\xd9\xdc\xc8\x87\xf2\x89\x6c\xa5\x8b\xe3\xf9\x66\x91\xf4\x30\xc2\xe9\xe7\x6f\x5b\xce\x8e\x9a\xb0\xc6\xcb\xff\xb0\xc1\x9f\x43\x61\xd7\xe3\xe9\x6c\x08\x13\x1f\x76\xda\x3a\x7c\x8b\xe0\xf6\x6e\x6d\xba\xeb\x18\xfe\x57\x98\xfa\xd3\xf7\x33\x38\x44\x09\x7b\x6e\x6d\x71\x4d\x4c\x35\x25\x78\xfd\x16\x19\xfd\x3d\x67\x3d\x21\x7b\xc6\x4c\xf7\x5d\xad\x26\x84\xd6\xe9\xbf\x22\x7b\x0b\x9b\x18\x54\x98\x58\x0e\xae\xd6\xd4\xa1\x71\x0c\x1b\x37\x7e\x17\x0b\xe5\x27\xdc\x56\xac\x5b\x36\xe3\xfc\x8b\x72\x6c\x8c\x5e\x27\xa0\xb0\x3f\x8b\xc6\x31\xf5\xf2\xfe\x8b\x9b\xb4\x66\x11\xb2\x84\x9e\x16\xed\x49\xfe\xc1\xa0\x29\x4d\x36\x43\x72\x7f\x1f\x03\xcf\x4b\x85\x2f\xbf\x3e\xe7\x25\xd8\x7e\x1c\xac\x1a\x70\xd0\xa4\xf1\xf2\x3f\x44\xf6\xd9\x58\x9a\xe7\x0f\x30\xd8\x98\x5a\xca\xd7\xdd\xfc\xa2\x1c\x6d\x41\x66\xca\x36\xf3\x62\x68\x1c\xed\x1b\x1f\x9b\xdd\x05\x37\x21\x3f\xef\xce\x9f\x17\xa3\x89\x84\x62\x53\x9b\xd2\xa6\x8b\xce\x6c\x38\xff\x49\x46\x26\xcf\xe6\x37\x03\xa9\x81\x90\x3f\xf5\x69\x89\x04\xc3\x9f\x9d\xeb\xcf\x15\xad\x23\x88\xa5\xe7\xb3\x1e\x37\x73\x12\xce\x6b\xee\x3f\x23\xa3\x30\x8b\xc0\xb2\x99\x95\x18\x38\xa2\x4a\x90\x11\x4d\xbf\x1c\x21\x36\x8d\x0d\xfb\x35\x65\x87\x3c\xb4\x6b\xcb\xc7\x11\xf3\xe9\xfa\xe7\xe4\xde\x0a\xc2\xed\x25\xf3\x64\x38\x3b\x6f\xb0\xa0\x1b\x1f\xf5\xe8\x5f\x89\x5a\xf6\x58\x74\x20\xae\xaa\x1c\x92\x13\xa7\x36\xd4\xfd\x15\x24\x1c\x2d\x38\xd8\xf4\x21\x35\x92\xf0\xcb\xc2\xa3\xd7\xd5\x4b\x97\xe0\x14\x55\x3d\x14\x7c\xa9\x98\x90\xf4\x6c\xc1\xf2\x33\x09\x75\x6c\x88\xe2\x8e\x79\xf0\x6f\xc9\xc0\x79\x9d\xa6\x87\xf3\x74\x82\xc3\x9f\xcb\x73\x2a\x46\x66\xb0\x15\x2b\xbe\xe9\x93\xb9\xab\x9e\x31\x08\x7c\x79\xa0\x2a\x33\x40\x90\xa0\xfb\xd4\xeb\xd7\x8b\xc7\x73\x09\x47\xee\xec\xee\x7a\xf3\x80\x8f\x0d\x21\x1f\x56\xcc\xf3\x6e\x29\x62\x03\xe7\xa0\x9d\xd2\xda\xc1\x0a\x36\x54\x7d\x5e\xfd\xdc\xa4\xad\x9b\x19\xc7\x92\xf8\xbc\x9f\xca\xf3\x47\x18\xdc\xec\x94\x16\x0f\xd3\x97\x22\x50\x7d\x3e\x6f\x56\x86\x10\x81\x7f\xdb\xc4\xd4\x0d\xe5\x86\x84\xfe\x57\xbe\x3c\x35\x0e\x1a\x04\x27\xe9\x0d\x83\xc9\xa5\x53\x08\x6f\x94\x5b\x37\x3c\x73\x94\x27\x38\xb7\x7d\x6e\x1b\x36\x28\x25\x98\xef\x3f\x7f\xe3\xcf\x18\x3e\x79\xba\x45\xda\x75\x3d\x67\xa0\xd0\x63\x67\xd2\x21\xc7\x47\x48\x39\xee\xa2\xaf\x69\x63\xcc\x86\xe2\x87\x16\x6a\x42\x72\x1c\x6c\x50\x10\x56\xed\x9b\x12\x69\xc1\x86\x45\x9d\x73\xa5\x14\xdd\x16\x10\xde\x5c\xda\x1d\xb8\xa4\xca\x98\x00\xdd\x2b\x72\x87\x62\xe4\x08\xdb\x63\x96\xeb\xba\xcd\x14\x26\x2c\x3c\x5d\xf1\x7e\xe1\xf2\x34\xc2\x94\x55\xa2\x2a\xff\x70\x2f\xf4\xe7\xe5\x28\xd9\x7c\x42\xe9\x8c\xf9\x07\x85\x58\xbe\x6c\x58\x75\x5c\xfc\xba\xd4\x00\x2f\xa1\xc0\xf1\x71\x4f\xfa\x7d\x6e\x36\xa4\xb6\x9e\xdf\xd4\xba\xaf\x87\x41\x65\x51\x81\x65\xec\xd8\x46\xbd\xe4\x66\xaf\x75\x56\xa1\x2c\xfd\x07\x0e\xbf\x09\xd3\x6f\x6b\xb8\x43\x28\x3b\x11\x2e\xdf\xfa\x7f\xc0\xb1\x49\x38\xe6\xdd\xff\x01\xa7\x27\x1c\x2a\xea\xeb\x9f\x31\xd8\x2c\xf3\xd7\xd9\x66\xd1\x62\xc2\xe7\x53\x3c\xf3\x9e\x7e\x14\x21\xf0\xed\x9c\xff\xde\xd2\x62\x80\x81\xe8\xce\x45\xbe\x1e\xbd\x5c\x04\x27\xa1\x65\x4f\xd3\x4d\x1c\x09\x97\x2f\x86\x16\xa9\xbd\x0f\x22\x78\xec\xe2\x11\xb4\xfc\x6b\x41\xe0\x7b\xba\x53\x75\xe2\xab\x0c\xc2\x22\x0e\x6e\xe3\xd3\x73\x33\x09\x9c\xe1\x7f\xfe\x68\xc9\x68\x12\x38\x4b\x9b\x7e\x88\xed\x89\x64\x81\x47\xf5\x42\xd0\xbf\xe2\x56\x59\x1b\xb6\x41\x3d\x96\x85\x17\x5b\x33\xad\x02\xe3\xf9\x09\xb6\xc6\xc7\x15\xee\xb2\x42\x08\x8e\xfd\x25\xb1\x4a\x35\xca\x84\x73\x4b\xf9\x34\xba\xed\xca\x09\x61\xf7\x43\x75\xca\x85\xaa\x08\xbf\x65\x2b\xf9\x6f\xbb\xfe\x64\x60\x55\x74\x7e\xc1\x95\x09\xc2\x84\x55\x3c\xf2\xe7\xf6\xbb\xf0\x11\xba\xf8\x1a\x5c\x83\x96\xe7\x11\x3e\x5c\xfd\x55\x19\x76\xa5\x98\x90\x7e\xdf\xac\xfe\xf3\x8f\x4c\x82\xe0\x9f\x9d\x6e\x45\x4e\x9c\x04\xf3\xcd\x07\x4f\x18\x07\x29\x10\x0a\x6b\x0f\x4e\x77\xe8\x78\x50\x0e\x69\x56\x90\xda\xa9\xa4\x35\x04\x7e\xfd\x15\xd2\x7f\x5c\x9c\x69\xbc\xfc\x0f\x3f\x02\x62\xab\x18\x9f\x19\x84\x49\xf6\xf7\x83\x8c\x95\x9c\x09\xb2\x97\xfb\x16\xbf\x9d\xfe\x95\xc1\xfa\x3a\x01\xcd\x7f\xff\xa1\xfa\xbf\x40\x6b\xc1\xe0\x96\x7e\x55\x30\x70\x58\x9c\xf9\xaa\xda\x47\x9a\x10\x6f\xa2\x7c\x56\xcd\xd0\x98\xe0\xd4\x56\xac\x48\x7d\xc6\x84\x2f\xa2\x9d\x93\x37\x32\xb3\x09\xc5\xdc\x9d\x1d\x29\x1a\xc3\x0c\x8a\x4d\x4e\xee\xf5\xcf\x30\x20\x04\x05\x7f\x71\x63\xfd\xca\x23\x28\x7a\x9f\x97\x0b\x1a\x7b\x66\x20\x47\xf1\xb0\x44\xd2\x1c\xc2\x4d\x55\xd7\x85\xcf\xd3\xb9\x08\xeb\x95\x93\x0e\x79\x5c\x4a\x24\xb8\xc8\x5d\x8d\x6f\x11\xf1\x26\xec\x94\xfd\x3d\xa2\x32\x36\xa6\x06\x7e\xaf\x10\xb1\x18\x1d\x3b\x9b\x3e\xbf\xdf\xfe\x4e\xe2\x15\x83\x93\x12\xa6\xf1\xae\x53\xf8\x08\x9c\x19\xdd\x0a\x72\xca\x4b\x69\xbc\x08\x0a\x7a\xc5\x0e\x0f\xcb\xb2\x81\xe7\xf5\x23\xf9\x9e\x1b\xca\x04\x65\xee\x2f\x0b\xf3\xa7\xfe\x65\xa0\x79\x39\xa3\x35\xa6\xa8\x83\x41\xe0\xc2\xca\xdc\x93\x82\x7c\x34\x0e\xce\xee\x13\x5c\xb7\x3d\x55\x09\x9f\xab\xdf\x7c\xcf\xab\xcb\x26\x9c\x76\x66\x78\x1c\x1d\x2c\x09\x0a\xef\xfe\xba\x56\xee\x9c\x40\xb8\xa0\x56\xb5\x49\x7e\x6c\x57\x9f\xaa\x70\xd6\x7b\xb9\xcf\x6a\x82\x68\x7b\xcf\x27\xce\x7b\x7a\x84\x17\x32\x07\xd5\x17\xd9\x6e\x67\x30\x65\xe5\x4e\x93\x85\x01\x15\x84\x01\xa1\xac\x0b\xdb\xb7\x6c\x61\x03\xff\x9b\x5e\xc9\x5b\xa7\x16\x11\x26\xad\xda\xe8\x68\x70\x34\x9b\x30\x24\xa2\x65\x62\xf8\x7f\xc0\x76\x6d\xd9\xe6\x15\x6b\xe4\x09\x25\x3f\x75\x0e\x04\x1b\xf9\x10\x7a\xf6\xe7\x2f\x3e\xe4\xf8\x86\xf9\xbf\xc1\x65\x55\x42\xf3\x96\x86\x35\x84\x2f\x0e\x97\x3b\x3c\x2f\xd6\x11\x2c\xab\x96\xda\x9b\x1f\x39\x47\x70\x0b\xdf\x74\x46\x35\xe1\x1c\xc1\x2f\xc2\xff\xe3\xb2\xb4\x68\xb6\xf2\x3f\x98\x95\xec\x3d\x16\x96\x73\x93\x70\xac\x21\xa1\x2d\x82\xf7\x06\x41\xee\x44\x54\x5a\xf7\xe1\x6c\xc2\xd5\x63\xdf\xee\xf5\xcd\x0a\x25\x2c\xff\x99\xbd\xe8\xc9\x33\x67\xc2\xd7\xf4\x50\xe7\x82\xfb\x02\x84\x59\xe5\x17\xc2\x56\x3b\xd7\x32\x90\x09\xbc\x72\x27\xfd\xcd\x06\x82\xfe\x49\x0f\xa5\xb9\xf7\x3e\x33\x38\xa9\x69\x7a\x99\x6f\xa7\x02\xc1\xda\x38\x85\xd9\xb0\x45\x8e\xe0\x3e\x1a\xa3\xe7\xfb\x76\x0b\x61\x4f\xb4\x56\x8a\xe6\x17\x71\x36\x78\x28\xfa\xcc\x6e\x7e\x5f\xc4\x40\xf9\xb5\xeb\xb9\x6e\xbd\xf5\x04\xd6\xb4\x99\xb6\x91\x45\x7a\x84\x47\xa1\x0b\x1e\xcb\xa6\x5b\x10\x04\x96\xbc\xd6\x12\xd8\xa5\x42\x78\x7f\xb9\xeb\xc5\x9d\xc1\x5e\x06\xe1\xb3\x9f\x18\xf1\x98\x5b\x11\x2a\x4e\x8b\xda\x63\xf9\x46\xc2\x7d\xa3\xad\xa7\xd5\xaa\xbc\x08\xab\xbc\xaa\x5c\xdf\x65\x7c\x24\xac\x78\x6d\x31\xc7\x57\xe7\x33\x21\xd3\xb5\xab\x46\xd3\xf1\x13\x61\x9e\x64\xa7\x53\xc0\xfa\x7a\x42\x8d\x5c\x8b\xea\xc0\x23\x67\x82\x8f\x48\xff\xdc\x28\x83\x2f\x0c\x8e\x7e\x2a\x6a\x78\x38\xc8\x49\x18\xe1\x30\xcc\x1d\xe6\x9e\xcb\x0e\x1e\x03\xa7\x5c\x8f\xc6\x72\xac\x0b\x9e\x51\xfd\x6a\x99\x0e\x0b\x6d\xc7\xb3\x3e\x2e\xd5\x2a\x21\xa8\xf3\xe8\xf6\x9c\x2e\xb2\x27\x6c\x36\x8c\xe9\xf3\xae\x91\x27\xb4\x86\x87\x69\x7c\xbe\x6e\x4d\xf8\x52\x66\x70\x2c\x52\x5b\x8a\xc0\x1f\xd5\x34\xfa\xbb\x3b\x8f\x86\xde\x5f\x78\x91\xf5\x9c\x93\xd0\x6d\x17\xad\x35\x61\xe3\x24\x82\x35\x77\x5d\xd2\x84\xa5\x17\x09\xce\xe7\x2b\x59\x6e\x8e\x53\x09\x83\x22\x0f\x55\x5f\x9e\x16\x22\x1c\xba\xbf\xe0\xf5\xf5\x6e\x45\x42\xda\xe6\x2d\x69\x57\xfb\xdd\x09\x57\xaf\xe5\xd6\x70\x4f\x9e\x49\xb8\x31\xb5\xce\xc6\xa3\x6b\x90\xc1\x9b\xb3\x62\x3b\x56\x7f\x56\x27\x88\x7c\x72\x5f\xc0\x97\x39\x93\x30\x6d\xd2\x0b\x09\x99\x2b\xb3\xd8\x50\xaf\xd5\x72\xc6\xdd\xea\x2d\x03\x56\x7f\xbf\x09\xeb\xd3\x07\x06\xb5\xad\x73\x67\x77\x3c\x5b\x45\x30\x12\xbd\x26\xaa\xb4\xac\x97\x41\xc9\x3a\xe9\xa2\xdf\x45\xf3\x09\x26\xc9\xda\x3b\x2e\xdd\x58\x45\x38\x66\x24\x32\x33\xfc\xe0\x95\x72\xe4\xd8\x55\x85\x84\x97\x46\xd0\x7f\x60\x7e\xee\xfa\xe1\xdd\xaa\x35\xe5\x50\x55\xd8\x36\x57\x6d\x20\x98\x50\xdc\x5c\xbc\x5a\xa7\x23\x93\xa0\xf1\x33\x94\x5f\x7b\x0c\xde\x73\x0d\x9b\x5b\x0f\x2e\x60\xc3\xd6\xb7\xe6\xab\x4f\xdd\xfe\xc6\xa0\x3b\x2f\xe7\x5d\xa8\x80\x1e\x21\xb0\xc0\xb6\x72\xcf\xdf\x07\xcc\x38\xba\x77\xdb\x96\x75\x72\xbb\xd1\x7f\xa0\xa4\x71\x97\xed\x7a\xdf\x4e\x06\x7d\xb9\xb9\xc9\x7d\x1b\x67\x10\x38\xa7\x74\x7e\x2c\x8f\x5a\x47\xe8\x18\x7a\x3b\x3d\xe2\xe4\x42\x42\x44\xa6\xe8\xee\xdd\x7a\xb2\x84\xb7\x83\x8f\x54\x6e\x3d\x9d\x47\xf0\x13\x3b\xf7\xc2\xc2\xdc\x9f\x10\x7b\x7c\xf0\xd3\xc7\x0b\xb9\x84\x8d\xdc\x4b\x8a\x2d\x14\x24\x58\xd8\xf7\x58\x6f\xf7\xeb\x56\x75\x82\x8b\xbb\xc3\x00\xff\x0e\x4e\x42\x87\xee\xc2\xe8\x46\xf7\x89\x84\xb3\x7f\x95\x57\x3b\xa9\x4d\x23\xbc\x99\xdd\xd2\xb0\xc9\x98\x97\xa0\x5e\x0e\x71\x15\x83\x21\x06\xb1\x8f\xcb\xbd\x52\xcf\x68\x13\x78\xa4\xe4\x6e\xe8\xe4\xbd\x67\x60\x1a\x5d\xf4\xf3\xf1\x3e\x3d\xc2\xaf\xa4\xd5\xdd\x3e\xa6\xe2\x04\xd9\x73\x87\x3e\x8a\x6c\x5a\x44\xb8\xed\xbf\x43\xee\xf6\x32\x7b\x42\xe6\x7a\x8f\x69\x35\x49\xc2\x6c\xd8\xa6\xd5\x56\xb7\x26\xb6\x87\x81\xc3\x6d\xa9\x64\xf1\x90\xc5\x84\xc1\x1f\x39\x33\xaa\x1c\x1d\x08\xb6\x1a\x8d\x86\x32\x36\x8b\x09\x1d\x29\x12\x7b\x99\x45\xeb\x09\xc6\xa9\x87\xaf\xba\x5d\x34\x24\xbc\x3a\xf2\x7d\xd7\x04\xcb\x17\x0c\x96\xcf\xba\x30\x6a\xf8\x40\x92\xb0\x20\x6e\x52\xe7\xd9\x52\x63\x82\xb9\xed\x56\x5e\x56\xbe\x28\x61\xb9\xc7\xdb\xa5\x2b\x96\xd8\x12\x7e\xfd\x89\xe7\xe3\x3f\xcf\x41\x90\x6b\xb2\xe9\x52\x2a\x7c\xcf\x8c\xa3\xbb\x82\x3e\x5e\x4f\xe5\x24\x7c\x33\x50\xd8\xb2\x67\xd3\x74\x82\x54\x55\x4b\xe9\x44\xd7\x93\x84\x69\x42\x1e\x45\xf2\xd3\x76\x10\x5e\xdd\xad\xef\x92\x76\x37\x22\x28\xca\x27\xdf\x8d\x5e\x9b\x41\xe8\x10\xd7\xcd\xad\xd6\x66\x08\xa3\x81\x57\x26\x49\x17\xe7\x10\xda\x06\xbb\x92\xe7\xed\xac\x28\x1f\xc7\xc7\xbb\x1c\xd3\x1d\x3a\x84\xe9\x3f\xb0\x29\xec\xcd\x48\x91\xc5\x41\x16\xe2\x76\x07\x70\xc5\x8a\x6a\x11\xd6\x0e\xd7\x1a\xb5\xf6\x6e\x21\xbc\xd9\x19\xd0\xf4\x71\x24\x92\x50\xe0\xab\xdb\xaf\xf3\xea\x05\x83\x5b\xfd\x6b\xb6\xd4\xaf\xd8\x44\xf8\x1a\x31\x7f\xa4\xb1\x9d\x83\x0d\x35\x56\xcf\x1f\x78\x9e\xb4\x24\x1c\x7a\xb2\x7e\x23\xc3\xa3\xce\x56\x2c\x63\x96\xce\x1a\xf2\x78\xcd\x00\xd3\x34\xcc\xce\xd8\x4c\x27\x54\x1a\xaa\x55\x73\xae\xba\xcb\x06\x89\xdf\xbd\xd3\xcf\xba\x57\x10\xa6\xe4\x66\xed\x6a\x5a\xa5\x41\x78\xdd\xbc\xfd\x22\xbf\x71\x16\xe1\x4c\xd9\x26\x38\xc8\x11\xc1\x6a\x63\x4b\x8b\xf8\xa0\x1f\xe1\xb4\xd4\x93\xf6\xf5\x0b\xfc\x08\x33\x8b\xf6\x9d\xf1\xea\x0a\x26\x6c\xe3\xd8\x94\xdd\x12\x1a\xca\xc2\x87\x65\x71\x85\xff\xca\x97\x76\x83\x82\xb9\xbb\xf7\x13\xbe\x4e\xb2\x70\xe7\x12\x71\x21\x14\xf3\x36\x5c\xe7\xd5\x7c\xcf\x40\x59\xcf\xf7\x72\xa3\x7a\x34\x0b\xa2\xa7\x8b\x78\xb4\x5a\x93\x18\x3c\xb9\x7f\x57\x32\xd9\x5f\x84\x10\x1b\x7d\x48\x3b\xf5\xf1\x45\xc2\x8e\x2a\xbd\x1f\x29\x63\x60\xc9\xf3\x85\xe7\x78\xdc\x26\x78\x27\xea\x44\xcd\x5b\x78\x89\xf0\x57\x91\xef\xf3\x3c\xe1\x1e\x06\x0f\x7c\x1e\x4a\xa5\x54\x2c\x22\xf8\x6d\xb8\x16\x71\xeb\x72\xc9\x7f\xc1\xdd\xcd\xfb\xd4\xb7\x38\x75\x36\xfc\xb8\xb2\xc0\x39\xab\x8b\x87\xf0\x42\xe0\x60\x49\xda\xec\x48\xc2\x29\xce\xf3\x21\xac\xe1\xdd\xff\x85\xa3\x5b\x5f\x17\x58\x48\xef\xfd\x7f\xc3\xa1\x47\x1c\xee\x1a\x1f\x95\x08\x2f\xee\xe7\x1f\x3f\xa0\xc0\x41\xc8\xa4\x7e\x59\x37\xe7\x1d\xff\x85\xdf\x87\x5e\x5c\xf7\x08\xee\x63\xc6\x51\x7c\xbe\x3d\xf8\xbc\x50\x18\x41\xc5\xd4\xb0\x72\x4f\xc6\x46\xc2\xb3\x48\xef\x0b\xdf\xbe\x89\x13\xd2\xee\xbc\xe3\xd9\x17\xa5\x4c\x68\x0c\x4a\x68\x32\x2c\xb4\x24\x78\x2f\x16\x0c\x3e\x30\x53\x86\x50\x2a\x6f\x65\xba\xb9\x7f\x0a\x61\x74\xb9\x40\x46\x5e\xf6\x17\x06\x4e\x59\xca\x52\x56\x99\xc5\x84\xdd\x5b\x9e\xf4\x35\xaf\x5d\xc9\x86\xc2\xd2\xa7\x69\x81\xac\x35\x84\xc8\x0b\x21\x5f\x2c\x7e\x33\x6c\x98\x93\xbe\x36\x24\xcf\xa3\x8d\x19\x47\xb8\x64\xdd\xb7\xf7\x2e\xcb\x68\x1c\x9b\x8d\xca\x9b\xa2\x6b\xf3\x58\xe3\xe5\xbd\xbd\xae\x9d\x94\x69\x0b\x33\x8e\x57\xca\x73\xe6\x3e\x1d\xb1\x22\x54\x89\x25\x57\xbf\x0d\xc8\x67\x8d\x97\x1f\x5c\xf3\x5e\x25\x78\xfe\x65\xf0\xac\xac\x6b\x5f\xf0\xc5\x36\x06\xfc\x69\x77\x3f\x87\x76\x6d\x21\xcc\xdf\xef\x91\x7f\xbf\xd9\x9e\x90\x5a\x46\x93\xc4\xd4\x67\x12\x1c\x2f\xce\xaf\x27\xe3\x41\x06\xd3\xfa\xe2\xb5\x4c\xa3\xd7\x11\x92\x4e\x75\xcd\x30\xba\x64\x42\x30\xea\x29\xb5\x9d\x90\xc1\x4f\x90\x70\x7a\x6e\xb8\x6f\x8b\x36\x41\x63\x24\x5a\xc0\x4b\x69\x22\x21\x6a\xf6\xc6\x4d\xde\x0f\xf7\xb1\xa1\x64\xc3\xde\xaa\x65\xeb\x64\x08\x1a\xf1\xaf\xc4\x37\xe8\x7c\x63\xb0\x7e\x5b\xc0\xed\xbb\xab\xc4\x09\x4a\xaf\x36\x0c\x17\x08\x86\xb1\xc6\x8b\x83\xfc\xe4\x87\x7b\x8b\x3f\x30\x38\x78\x7a\x94\x2f\x49\x7d\x3f\x21\x7c\x8d\x66\xfd\xf1\x82\xac\x72\x44\xfb\xf8\x2a\x24\xaf\x4b\xa2\x71\xfc\x7f\x9f\xff\x2b\xcc\x86\xf3\x05\x33\xdb\xd3\xd6\xe4\x11\x4a\xe6\xb6\xc5\xfd\xcc\x73\x63\xe1\xca\xa2\x39\x9d\x55\x67\x56\xd3\x38\x3e\x6a\xbd\xa8\x7f\xb7\xbd\x80\xe0\xdb\xc5\xca\xfb\x87\xd9\x9a\xae\xe1\x95\xc2\x31\x6c\x70\xbd\xae\xe7\x11\x9e\x9a\xc3\x8c\x43\x4a\x78\xa5\x66\xf5\x70\x0b\x83\x33\x7f\xe6\x5d\x8b\x0e\x97\x27\x58\xf5\x05\x0c\x84\x74\xe5\x11\xd4\x92\x63\x64\x3c\xe7\x67\xb3\x95\xcb\x62\xf5\x29\xcf\x1b\x84\x08\x8e\xf1\x92\x3f\x6e\x5b\x2d\x21\xc4\xf8\x8d\xf0\xa6\xb3\xd4\x09\xd7\x24\xef\xf9\xef\xe0\xe6\x20\xe8\x75\x45\xdb\x70\x27\xfe\x61\x50\x96\xf0\x5e\x68\xbf\xb3\x2c\x8d\xe3\xad\xc3\x2f\x75\x69\xf1\x11\x06\xce\x37\x64\xaf\x08\xce\x78\xca\x20\xec\xb5\xe9\x60\xc2\x11\x1d\x1a\xc7\x2f\x4f\x1d\xfd\x38\x45\x1e\x82\xb0\x78\xe5\x77\x31\xef\x7e\x06\x97\x9b\xd5\x2f\x99\x8c\x9d\x68\xff\x43\x7f\xe6\x64\x9e\x80\x96\x35\x84\xa2\x63\x17\xb3\x3d\xaf\xea\x12\x5c\x7f\x65\x87\xae\xfa\xae\x46\x38\xf4\xe0\x50\xe7\x0e\x83\x22\x82\x64\xde\x99\x13\x57\x3a\x62\x08\x5b\x5d\xb7\x2c\x59\xf8\xf6\x1a\x61\xbb\x6e\x4f\xa1\x1b\x97\x30\x1b\x7c\xf8\xf9\x38\xa3\xf7\x8b\xb1\x21\xa4\x21\x8c\x4f\xdf\xaf\xb9\x1c\xeb\x4a\x7b\x9c\x5f\xff\xb0\x22\x2c\x7d\x66\x58\xc8\x6d\x59\x49\x70\xe9\x69\xfd\xd4\xe8\x76\x9b\x90\xf2\xe4\xef\x9d\x7b\x0d\x79\x84\x0c\x09\xab\x86\x7f\x4b\xbe\xea\xf7\x97\xc9\x94\x84\x11\x72\xa6\x85\x84\xed\x79\x1e\x46\x90\xfe\xf5\x52\x7e\xb2\xcf\x03\x02\x6f\x45\xee\xe6\x35\x61\x29\x2c\x5c\x74\x5d\x17\x3c\x3f\x5c\x83\xc0\x7f\xa1\x12\x2e\x73\xac\x09\x0f\x38\x0b\x8a\x5d\x2c\xb7\x11\x72\x4c\xd6\xdf\x65\x49\x68\x11\x5a\x37\x99\xfb\x3f\x39\x26\x48\x78\x79\x21\xb1\xf6\x94\x5e\x3f\x83\x91\x83\x5b\x3f\x79\x57\x0a\x11\x12\x26\xdf\xdd\xf7\x7e\xd3\x14\xc2\xc9\xef\x42\x2f\xdb\x55\x1c\x08\x22\x72\xca\x91\x97\x16\xdb\x12\x0e\xb7\x1e\xba\xb6\x83\x91\x25\x18\x1d\xa8\x74\x88\x75\x5a\x46\x98\x9a\xbd\xc7\xd4\x94\x6f\x25\x61\x44\x24\xd7\x53\xdf\xf3\x04\x61\x87\x5f\x67\xc8\x85\xed\x9e\x84\x9b\x5a\xd6\xc8\xb9\x2c\x4e\xd8\x25\xb8\xc7\xb7\x4f\xd9\x92\xa0\xaa\xc8\xfc\xf9\xaa\x9e\x46\x38\xf3\xfd\xca\x90\x39\xe7\x56\x36\xd4\x7f\xb9\x86\xcc\xc3\xdf\x18\x58\xb8\x5f\x12\x4c\x5e\x27\x4f\xe3\xe8\x8a\xb3\x11\xf4\xce\x9d\xc3\x86\xa8\x43\x6b\xaf\x2c\x79\xf6\x9b\xc1\x32\x47\xf5\x6a\x87\x06\x3b\x42\xd1\x84\xa3\xc3\x4f\x7e\xfd\x61\xc0\xcf\x27\xd2\x71\x25\x47\x8b\x90\x32\xd0\x17\x3e\x4f\x70\x22\xe1\xb8\xb4\xf6\x9e\x01\xa1\x33\x84\xb3\x0b\xab\xa3\x2e\xaf\x9c\x40\x58\x1a\x70\xca\x33\xeb\x9e\x2e\xa1\xf1\xfd\x7a\xed\x2f\x39\x95\x84\xf3\x9e\xb9\x8d\x7a\xba\x95\x84\xfa\x3e\xed\xad\x1d\x63\xbf\xe7\xf6\xd3\xd7\x42\x15\xf3\x2b\x09\xd5\x99\xf3\x25\xda\xc7\x9e\xc9\xdb\x79\x7f\xc9\xe3\xe6\x13\x84\xb2\xef\x5d\xc7\x2a\xd4\x03\x09\xe7\x35\xa4\xb4\xf2\x6a\x84\x08\x67\xde\x3f\x5a\x19\x60\x36\x89\x30\xdf\xd9\x5e\xaa\x9b\xcf\x96\xf0\xe3\x92\x4b\xd2\x1a\x2f\x53\xc2\xd0\xee\x3a\xce\x3e\xe6\x76\x39\x34\x1a\xfc\xdb\x4b\x17\xce\x26\x4c\xe5\xae\x7e\xb4\xaa\xc4\x82\x0d\x4f\x07\x1c\x42\xde\x57\x3c\x61\x86\xd6\x56\x0a\xae\xf3\x14\x20\xf0\xb4\x9c\xe2\xaf\x89\x75\x61\xc3\xe1\x44\xa7\x89\xce\xd6\x4f\x19\x74\x9a\x4b\xc9\xb5\xe7\x1a\x10\x8c\xff\x46\x3c\xd3\x98\x35\x81\x70\x43\xd7\xf7\x9a\xb2\x64\x2e\x21\x4b\xa7\x49\xb5\xa7\x47\x88\xc0\xc4\xdf\xf2\x7f\x64\xa8\xc3\x06\xdd\x8c\x0d\x71\x7b\x7f\xe4\x31\xc8\xaa\xb0\x2f\xff\xed\x2e\x4c\x18\xd4\xf3\x71\xdd\xeb\xcd\x4d\x68\x7e\x93\x10\x24\x1f\x62\xc4\x86\x6b\xaa\x4e\x17\xf3\x92\x38\xd9\xf0\xd6\x3c\x25\xf3\x61\x9f\x11\x1b\x5e\xd8\xdf\x55\x9a\x65\x77\x8f\xc1\xa5\x63\x77\x8d\xd3\x7e\xbf\x61\xf0\x72\x21\xf7\x87\xf8\x0f\x1d\x6c\x58\xb8\xc1\xa5\x94\xaf\xcf\x80\x20\x2e\xf9\xab\x4c\xde\xb8\x82\x41\xfd\x13\x56\xa4\xd6\x6d\x75\x42\xe9\xa2\x6e\xb3\x8c\x0b\x5b\x08\x97\xe4\xd4\x4e\x75\x1b\x9b\x12\xd6\x66\xa4\x96\x7f\x50\x19\x64\xe0\x7f\x44\xf7\x62\x90\xba\x31\x81\xd1\xb9\xfa\xfb\x8b\xaf\x0e\x41\x72\xf1\xdf\x81\x5d\x5a\x66\x04\xad\x17\x7b\xd6\xcf\xed\x5f\x49\x68\x56\x18\x11\x39\xb9\xc0\x93\x0d\x6e\x3c\xae\x2f\xda\x16\x1c\x26\x14\xcc\xd4\x79\xe8\xaa\xae\x41\x68\xbd\x53\xf9\x25\xed\xba\x20\xe1\xba\x75\x6d\xf5\x8d\x3c\x2e\xc2\x47\x2e\x6d\xd3\x47\xbb\x79\x09\xd3\xd4\x36\xce\xf9\xed\x20\x44\xb0\x98\x52\x2b\xe8\xea\x3b\x9b\x0d\x5b\x56\x84\xf2\x3e\xb3\x69\x29\x47\xbe\x7a\xc8\x03\xf5\xb2\x2d\x04\x5b\xb5\x6d\xf5\x24\xb6\x98\x30\x7f\xdb\x16\xe3\xd5\xc3\xa7\x09\x3c\xc6\xf2\x6e\x66\x7f\xb5\x08\x1b\x0e\xba\x8b\xe9\x05\xd5\x96\xe3\x77\xe5\xef\xd7\xb6\x4f\x64\x68\x1c\x75\xa5\xa3\xbf\xba\xaf\x3e\x62\x90\x70\xe4\x6c\xed\x66\x15\x3e\x82\xb3\xc6\x84\x5d\x25\x5f\x7a\x19\xe8\xbe\x0f\x48\x91\xd6\x48\x22\xd8\x75\xfd\x58\x64\xb7\xf3\x1a\xe1\xb7\xfc\x8c\xa2\xa5\xfa\x46\x04\xd3\xe7\xc9\xa3\x2f\x7b\x65\x09\x6b\x76\x5c\x34\x54\x18\x12\x27\xc4\x64\xcd\x7a\xd4\x64\xb2\x84\xe0\x20\x19\x9f\x7f\xe5\x9a\x2e\xc1\x5e\xda\x91\x75\x70\x88\x93\xd0\x73\xf0\xdd\x36\x43\xce\x15\xff\x85\xc7\xbc\x37\xee\xf6\x33\x2a\xff\x05\x41\x15\xa9\xd2\xa5\x87\x3f\x31\x50\x59\xe4\xdf\x7f\x6c\xec\x14\x95\x62\xb9\x29\x5d\x67\xdd\x18\xbb\xe9\x89\x24\xda\xbb\x9f\x24\x74\x77\x99\x58\xc6\xdd\x37\x23\x38\xcc\x76\xb7\x5a\x65\x39\x81\x30\xb1\x58\x77\xb3\xc4\xd0\x51\x42\xfa\x2c\x6b\x5e\x9e\x81\x15\x84\xda\x51\xae\x2f\x36\x9e\xea\x84\x77\xab\x5f\xac\xfd\x72\x66\x1a\xe1\xd7\xdc\x8e\x89\x37\xfe\x2e\x25\x14\xd4\x8c\x38\xce\x1d\x91\x26\x6c\xb1\x76\xaa\x9a\xb1\x4b\x93\xf0\x72\x45\x75\xb9\x90\xe0\x24\x02\x12\x7f\xa4\x18\x9a\x2f\x21\xe8\xba\xa6\x17\x48\x79\x05\x10\x6a\x7f\xd4\x9e\xd4\x7f\xec\x4f\x78\xec\x61\x9b\xf2\xcc\xa5\x93\x41\x05\x1f\xde\x1d\x4d\xe0\x22\x4c\x3c\x54\xad\x50\x36\x31\x8e\x0d\x52\x29\x53\x5f\x31\x72\x27\x09\x02\x57\x26\xaf\x0d\xba\xb3\x8f\x70\xeb\xb0\xf1\xe8\x4b\x6f\x43\x42\xe4\xd7\x80\x3b\x93\x05\x65\x09\xa3\x46\xd1\x5a\x03\x77\xd4\x08\xfb\xc2\xf3\x43\x77\xc7\xcd\x21\xac\xf2\x33\x6a\x50\x99\x3c\x8d\x90\xf7\xb1\xfe\x69\xde\x61\x5e\x82\x52\xd7\x5f\xcd\xc2\xf7\xfc\x6c\xa8\x23\xb5\x5f\x99\xdf\xfa\x19\x58\x1e\x97\xdd\xdf\x26\x7e\x85\x90\x36\xfd\x55\xec\x22\x2f\x1d\x42\xee\xf4\xde\x74\x01\x4e\x4d\xc2\x89\x4f\xa3\xc3\xbf\x77\x4c\x26\xd8\xe4\x8a\xce\x3a\x67\xd3\xc7\x60\x4f\xa2\x8d\x6d\x48\xdf\x2a\xc2\xe9\x96\xc6\x33\x73\x05\x33\x09\x89\x0f\x23\x62\x4a\x2e\xca\x13\x94\xde\x0c\x1e\x79\x92\xf8\x83\x41\x69\x81\xea\x4d\xfe\xe0\x68\xc2\x97\x23\xd6\x26\x6a\x53\x27\x10\xba\xba\xd2\x5a\x2a\x3d\xbf\x32\xc8\xe5\x3c\xb8\xf6\x13\x4b\x8b\xb0\xad\xf9\x73\xad\xd8\x2e\x31\x82\xd1\xaa\x25\x3d\x1d\xae\x3c\x04\xdb\xee\x47\xdf\x0f\x14\x8c\x5d\x1d\x24\x6e\x3a\xac\x4c\x8c\x25\x7c\x3d\x77\xf5\xdc\x37\xa1\x32\x42\x78\x6c\x8f\xe3\xfd\x57\xcb\x08\x7d\x7b\xf7\x68\x72\x75\xb6\x31\x6c\xc8\x39\x79\xeb\xfe\x36\x7d\x42\xb3\x41\xb0\xdd\x5e\xfb\xd5\x84\xe8\xa7\xd5\xa7\x5f\x8a\x08\x10\x0e\xcf\x35\xbf\x23\x3b\x41\x93\x0d\xc1\x6f\x9f\xfb\x28\xd6\xbf\x2d\x87\xd8\x2f\xb1\x13\xfe\xbe\xe7\x08\xc6\x52\x62\x7e\x1a\x23\x13\x08\x11\x9e\x16\x2f\x6f\x74\x70\xb1\xc1\xed\xa1\xf4\xb5\x74\x9b\x01\x06\x31\xd9\xb6\x3a\xab\xa4\xa5\x09\x97\xd7\x0d\x29\xcf\x1f\x3e\x3b\xb6\x19\xfb\xee\x91\x7a\xb6\x86\xb0\xb3\xf9\xa5\xe3\x9c\x53\x26\x04\x79\x89\x2f\x1a\x1f\x8c\xb8\x09\x21\xb2\x96\x0a\x8d\x15\x9a\x84\x47\xfb\x62\xd5\x04\x45\x2c\x08\x3c\x65\xc2\xef\x86\x53\xd7\x8d\xdd\x9f\xde\xfe\xfd\x26\xbc\x9c\x90\x50\x40\x5a\x4e\x2b\xde\x33\x28\xd8\xbd\x72\x43\xdf\x5d\x0d\x82\xe4\xf4\xe8\x01\x8e\x96\xc5\x84\x3a\xcb\xb4\x9a\xfb\xca\xc5\x84\x88\x85\x5c\x27\xf6\x0d\x56\xb0\xe0\x91\x6d\xe5\xf9\xba\xa9\x95\x05\x9d\x3f\x06\xdd\x1a\x6e\xc5\x04\x9b\xb6\x59\x45\x09\x6b\x4f\x13\x16\xed\x2d\x35\xd2\x9b\x77\x9c\x70\x3d\xa2\x8e\xe3\xc2\x27\x35\x82\x86\x44\xd0\xa2\x0f\x5f\x9a\x19\x8c\x08\x84\x77\x71\x8c\x5d\x89\xce\x8e\x66\xed\xf9\x50\x63\xcc\x86\x6d\xcf\xdc\x1d\x4a\x3c\xda\x19\xa8\x6c\x6a\xc8\x5d\x39\x90\x4a\x88\x54\x3c\xb0\xf6\x49\x89\x26\xe1\xaf\x0e\x9f\x86\xf0\x66\x65\x82\x6a\xee\xb7\xc3\xd3\x7b\x85\x09\x95\x97\xca\xf7\x55\xbf\x16\x22\x28\x2b\x9d\x15\x68\xae\x3f\xc0\x86\x5f\x53\xf6\x3a\x58\x47\x89\x11\x64\x26\xef\x3f\x73\x6b\xdd\x05\xc2\xc6\x9b\xcb\x86\xae\xd9\xbf\x67\x41\x3b\xeb\x5d\x6b\xd5\xc8\x64\x1a\x87\x49\x08\xc7\x1e\xa5\x8f\x29\x84\xdf\xaa\xab\xd7\x7e\x93\x72\x20\x68\xf0\xa8\xf1\xbf\x7a\xec\x46\x48\x50\x5f\x7b\x5c\xa9\xa5\x89\x05\xd1\xa1\xd8\xda\xb6\xb3\x39\x04\x6f\xd3\x87\xbc\x8f\xe2\xb5\x09\x95\x05\xe9\x46\x46\xa5\xaa\x84\x18\xd5\xac\xbb\x72\x7e\x69\x04\xf9\x37\x8d\xaf\x86\x72\x25\x08\x2a\x3f\xae\xf3\x34\xac\x98\x4e\xf8\x71\x6c\xe7\x9f\x03\xb3\x66\x10\x3e\x78\x2c\xaa\xea\x18\x3b\xac\xfe\x87\x05\x22\x7a\xea\xc9\x58\x40\x48\xf8\xdb\xdd\xdd\x75\xbf\xbc\x1c\xb6\xf5\x2b\x0f\x7c\xfa\x3a\x83\xb0\x9b\x61\x62\xc5\xd4\x45\x09\x3c\x47\xaa\x7c\x4c\x24\xa7\x11\x9c\x6d\x56\x4d\xce\x51\x5f\x46\xc8\x5c\x7a\xbc\xab\x3d\x5c\x8c\xd0\x53\x17\xe3\x39\x25\x9f\x08\xc7\x12\xff\x24\x0a\xed\xd5\x20\xdc\x37\x7c\x3f\xf0\xd4\x61\x0b\xe1\x00\xb7\xb8\x61\xe2\xd8\x26\xfc\x3f\x84\xfa\xe6\x9d\xd5\x1c\x58\x47\xd0\x98\xc1\xed\xfd\xf9\xac\x16\xc1\x34\x5c\xe0\x9d\xfe\x8d\xaa\x72\xb8\x7e\x79\x6e\x6b\x35\x1a\x40\xe3\xe0\x29\xcc\x91\x5d\x9e\xe1\x4f\xb0\x39\x2f\x7d\x75\x19\x27\x8b\xd0\xc9\xf5\x35\x59\xf8\x7b\x2b\x03\x9d\x80\x8f\xbf\xcd\x8e\x3d\x65\x10\xbc\xa5\x7f\x8b\xd6\x06\x2e\x1a\x47\xa1\xd6\xc9\x93\xe7\x66\x6a\x12\x9a\x26\x74\x6a\xcb\x2c\x5e\x42\xc8\xbe\xc1\xf5\x3d\x34\xad\xa5\x1c\x11\x1a\x8f\x2b\x6a\x2a\xa7\x13\x4c\x2a\xef\x4d\xbb\x37\x21\x84\xc6\x4b\x6b\xa2\xbb\xef\x2a\xe5\x5c\xc2\x83\xfc\xa9\x9a\xfe\x86\x0a\x04\xb5\x75\x4d\x86\x8f\x87\x57\x10\x16\xa5\x3f\x9c\x22\x3e\x7b\x01\x21\x53\xc9\x32\xf8\xf5\xd4\x63\x84\x81\x3d\x9d\x53\x7f\x3c\x51\x20\xac\x5d\xfd\x5e\x52\x97\x63\x06\x61\x67\x41\x63\xdc\xb1\xb7\x86\x04\x04\x19\x3b\xf3\x2d\x5e\x44\x08\x6d\xca\xd8\x7d\x61\xc1\x30\x83\x73\x07\xba\xab\x1d\x1f\xca\x11\x42\x42\x75\xba\x6e\x3a\xce\x20\x44\x9b\xec\x7e\x21\x32\xdf\x82\xa0\xf4\x9a\xef\xa5\x5d\xa5\x3a\x61\xf1\x29\x27\xf3\x0c\xd7\x70\x02\xd7\xd1\xb3\x62\xcb\xba\xcc\xd8\x10\x9b\x8a\xe5\x7b\x6a\x55\x09\xbf\x05\x03\xdd\xf8\xf2\x8a\x08\xde\x0b\x14\x34\xed\x16\x18\x12\xbe\x44\x0b\xce\xd8\x52\x5b\xc3\x8c\x43\x85\x0e\xd2\x90\xce\x22\x42\x72\xef\xdf\xe7\xd5\x4a\x81\x84\x8e\x25\x4e\x33\x3f\x9e\x38\xce\x42\xa4\xc2\xe4\x96\x4d\x7f\xbe\x30\xd8\x68\x7c\x89\xeb\xf7\xc7\x08\x16\x6c\x9f\xce\x37\x4d\x38\xaa\x4b\x38\x9d\x70\xf7\xc1\x4e\x7d\x37\x42\xd0\x89\x03\x32\x8e\xbe\x16\x6c\x88\xbc\x22\x27\xf4\xe0\xc4\x30\x83\x26\xd1\x59\xd5\x1b\xc6\x46\x08\x8b\x21\x6b\x6f\xed\x1b\xbf\x18\xc8\x74\xe9\x64\xce\xe4\xbd\x42\x68\x60\xad\xf9\x54\xf2\xde\x9d\x90\x72\x3e\x62\x31\x67\x6c\x3f\x33\x8e\x28\xd3\xae\x68\xbe\xe2\x29\x84\x84\x81\x0d\x29\xd1\x05\x51\x84\x90\xc3\xad\x91\x96\x35\x3c\x84\xa1\x94\x23\x33\x53\xdb\xfe\x30\x38\x3f\xf7\x54\xda\x2f\xc6\x97\x30\x98\xe5\xa2\x95\x7d\x74\x29\xc1\xa1\xa5\x70\xe2\x69\x7b\x33\xc2\x6c\xaf\xc3\xeb\x03\xf7\x15\xb1\xd0\xd5\x23\xfe\xf8\x61\xc0\x42\x82\xd7\xa6\xdf\x3a\x9b\xc4\xa5\x09\x1b\xa7\xde\x7a\x67\x38\x35\x87\x90\x76\x48\xbf\x41\xbc\xc7\x80\xb0\x3d\x77\xfb\x60\xb8\x6a\x2f\x03\xee\x8f\x13\x73\x66\x45\x8d\x32\x38\x7d\x3c\xc3\x77\xd2\xa4\xd7\x6c\xd8\x99\xd4\x8e\x23\xd9\x9c\x04\x0d\xfd\xbe\x9f\x47\x6b\xcc\x09\x9e\xa7\xb7\xe4\xcc\x0c\x63\x11\x86\x47\x15\x24\x76\x44\xf4\x11\x2c\xd2\xd4\xe2\xd2\xd2\x06\x09\xeb\x7b\xa2\x8f\x65\x7a\x97\x10\x86\xfd\xdf\xad\xa9\xe2\x48\x61\x61\xef\x8e\x69\xdc\xa9\xef\x02\x59\x28\xec\xe0\xeb\x08\xcd\x90\xa7\x71\x78\x39\x3b\x44\x8e\xe4\xa6\x12\x06\xf6\xcd\x7a\x2e\x7c\xb8\x81\x70\xaa\x44\x77\x2e\x9f\xc4\x17\x42\x6a\xf9\xad\x7a\xfe\x31\xd4\x6e\xaa\x1f\x98\x3c\x86\xb0\x37\xdb\x76\x16\x8f\xdc\x21\x3c\x38\xda\xbc\xdb\x32\xee\x2e\xe1\x49\xe6\xa8\x87\xd9\xcd\xb1\xc1\xac\x6a\x86\x5c\x71\xdc\x1d\xc2\x84\x6e\xeb\xd8\xe5\x0e\xcd\x04\xfd\xd7\x72\xc5\xb3\x5e\xbe\x26\x98\xfa\x45\x3e\x5b\x2b\x72\x9f\x30\xc0\x91\xb9\x2c\x27\x3b\x9e\xa0\x3b\xd1\x6a\xd9\xe5\x9f\x9c\x84\x9d\xb2\xe6\x5c\xf9\xca\x19\x04\x15\x37\x99\x84\x6e\xcb\xc2\xff\x42\xe8\x8b\x40\xd5\xc2\xdc\x70\x82\xc1\xa0\x59\x71\xb8\xec\x71\xc2\xa1\xf4\xc9\x93\x56\x47\x6e\x25\xa4\x1e\x7e\x90\xb4\x58\xe6\x38\x61\x9a\x85\xa1\xef\xf5\x1b\x67\x09\x4a\xae\x5e\xc5\xeb\x9c\x3c\x08\xbd\x01\x5a\x9e\x47\xd2\xaf\xb2\xd0\x3f\x2a\x53\xb6\x87\xc7\x83\x85\x99\x4f\xf2\xe5\xec\xd3\xdc\x09\xe7\xec\xf7\x56\x6d\x9d\xec\x4f\xb0\x3f\xe0\x27\x34\x29\xb3\x86\x50\xb3\xfc\xd8\x92\x7f\xef\x7c\x8f\x67\x93\xac\xde\x53\x5e\x42\x9c\x98\x5b\x10\xaf\xa8\x01\x8d\x97\x6f\xf3\x52\x92\x06\xce\xfd\x62\xa0\x26\xb1\xe9\xb0\xeb\xa5\x52\x82\xde\xc5\xea\xe2\x08\xf1\x6c\xc2\x66\xa1\xbe\x2b\xe6\xfe\x46\x04\x69\xcb\xd5\x26\x4f\xba\x54\x08\xde\xa4\xb8\xb1\xb1\x5d\x92\xf0\x7b\xf6\xc0\xa1\xce\xfd\xdd\x0c\x6e\x44\x5c\x3b\xe2\xb4\x9e\x87\x90\x73\x46\x4d\xb3\x6c\xbd\x2e\x1b\x62\x27\xe8\xa0\xaa\xe0\x2d\x33\x8e\xdf\x4d\xf7\x6a\x0a\xd5\x96\xd0\x38\x74\x3d\x56\xa4\x5e\xf1\xfe\xcd\x60\xf6\x32\x8e\x81\x1d\x5d\x42\x84\x65\xed\xc7\x97\x6c\xef\x9a\x4d\x10\xf8\xfe\xf7\xdb\x9c\xb7\x27\x08\xd7\xae\x7c\x7d\xf1\x0f\xab\x14\x4e\x87\x29\xae\xd5\x60\xc3\x9e\x33\xad\x41\x33\x5e\x2d\x20\x7c\x15\xbc\x71\xa5\x54\xe6\x39\x6b\xbc\xa4\xa6\x5e\xca\x59\xed\xa2\x4e\x68\xef\x48\xbe\x63\x3c\x4d\x93\x20\x94\xfa\xda\x7c\xef\x70\x52\x39\xbe\x3c\x9c\xf3\xb0\xf1\x75\x12\x8d\xe3\xe4\x01\x87\x1f\x2b\x9a\xb5\x09\x0a\xc3\x56\x87\xe7\x6f\xd5\x26\x70\x17\x84\x38\xca\xd7\x58\x13\x2c\x0c\x3c\x2f\xaa\x45\xa6\xb1\xb0\x86\xb7\x79\x86\xf3\x19\x03\x42\xb6\xed\xb5\xb3\x93\x39\x14\x09\xab\x47\x79\x97\xec\xf8\xb2\x8e\xb0\xfe\x76\x96\xab\xff\x4b\xb5\xff\x42\x6a\x9d\xd4\xe1\xaf\x61\x73\xd9\xd0\x72\xfc\x52\x7a\xdd\xec\x9b\xac\xf1\x72\xfa\xa5\xf3\xa3\xeb\x97\xde\x31\x78\xfa\xf1\xec\xcc\x55\xd5\x46\x04\x11\xf9\x9e\x6a\xdd\xed\x6a\x84\x39\xc3\x83\x16\x02\x16\x9b\x08\xf3\x36\xc4\x24\x3d\x2a\x0b\x64\x81\xaf\x56\xad\x54\x66\xa3\x16\xe1\x66\x5a\x42\x55\xe4\xc2\xab\x04\x6e\x5e\xc9\x73\x11\x3f\x9e\x11\x5c\xec\x17\xe5\x6a\x95\x6e\x21\xdc\xcb\xd5\x7c\xd1\x79\xba\x90\x70\x5d\x47\x8e\xd5\x9d\xab\xc5\x06\xd9\x0f\x67\xb7\x19\x44\x0c\x33\x78\x1d\x7f\x50\x29\x2c\x64\x29\x41\x25\x5b\xd7\xf8\xd7\x93\xbb\x84\x55\xe7\x53\xfb\x7e\x4f\xbb\xc7\xc2\x83\x3a\xd7\xd3\xef\x9e\xe5\x12\x5e\x6e\x5c\x36\x6a\x53\x38\x8f\x10\xc8\x64\xf2\xa7\x75\xaf\x24\x6c\x7c\xf6\x7e\x41\xe1\x79\x23\x36\xf0\x86\xdd\x60\x82\x8a\x74\x08\x36\x0a\xde\xd1\x41\xeb\x15\x08\x4b\x3f\x6d\x77\xf4\xff\x9c\x4b\x88\x5f\xb5\xf2\x86\xb3\xd8\x4c\x16\xd6\x86\xca\x4c\x33\x54\xe0\x25\x28\x9f\xff\x72\xe5\xf1\xde\x22\x02\xaf\xfd\x0d\xd5\xf6\x91\xab\x84\x5f\x77\xcc\x04\xa2\x1e\x48\x11\x84\x25\x9e\x96\xcc\xd8\xaf\x45\x48\x17\x72\x1f\xf8\xde\x11\x4e\x68\x3c\xb2\xd9\x39\xf0\x45\x39\x61\xfd\xde\xc9\x62\xfa\x91\x0d\x84\xcc\xd5\x9e\xc3\xc1\x11\x0e\x84\xe5\xd7\x3f\x96\x3a\x56\x67\x11\x24\x22\xe7\x9d\x3e\xee\x58\x42\xd8\xc5\xef\x8f\x13\x63\xf8\xc5\xeb\xd3\x7a\x35\x33\x8e\x50\x39\x7a\x6d\xb6\xfb\xc8\x21\x82\x21\x97\xaf\x5d\xcf\x40\x38\xe1\x5b\x96\x53\xe6\x5b\xd5\x04\x16\x8e\xce\x7b\x16\x7d\xbd\xf9\x35\x41\x5f\x3c\xe6\x68\x60\xe3\x0b\xc2\x8f\xdc\x9b\x3f\xa6\x47\x95\x11\xa6\xee\x7b\xf2\xf4\xc2\x58\xb1\x9b\xa3\xb8\x78\x77\xd1\x5d\x42\xb6\x4f\xd0\xd5\xf8\x00\x5d\x42\xd1\xa7\x52\xbd\xfe\x78\x33\x82\xc5\xef\x8f\xe7\x3a\x5f\x4d\x26\xbc\x70\xbe\xe3\xa0\xe4\xf4\x83\xc1\x4b\xcf\xb7\xa7\x66\xbd\x9a\x49\x98\x36\x53\x6f\x74\x61\xce\x5b\x06\x79\xe7\x7d\x2e\x5f\x5f\xc0\x41\xe3\x70\x13\xff\xf9\xeb\x77\xe7\x44\x82\xf6\x48\x6e\x5e\xe1\x93\x70\xc2\xb9\xb0\x83\x53\x46\x5b\xa2\x08\xde\x87\xf9\x52\x1f\x95\xaf\x23\x0c\xca\x72\x2d\xfc\xfb\xd3\x9a\x10\xb0\xb4\x31\x5b\xa0\xdf\x86\xd0\x11\xa2\xe2\x9c\x7e\x51\x8d\xe0\x3f\x81\x67\xbb\x4a\xa2\x20\xa1\x37\x79\xf9\x33\x01\xa9\x1c\xc2\xfd\x63\x97\x76\xec\x2e\x5a\x4e\x10\x38\x2d\xf6\x39\xcf\x4b\x92\x90\x39\xd9\xb1\x68\x6a\x44\x32\x0b\x4f\x14\x27\x15\xda\x28\xba\x10\xce\x95\x4f\x52\x11\x7b\x2c\xc4\x86\xb3\xaa\x0f\x7d\x37\x31\x21\x2c\x0c\xce\xb7\x67\x2e\x7d\x04\x03\xab\x7d\x7f\xaa\xd3\x52\x32\x08\xb6\x95\xee\x72\x41\xd9\x19\x04\x49\x1f\x07\x1e\xd9\x18\x1b\x82\x5a\xff\xf9\xcb\xcb\x0e\x2d\x27\xec\x5d\x5f\xd1\xcc\x72\x9e\x42\xb8\x1a\x2f\x6c\xba\x61\x89\x02\xa1\xb9\x35\xe7\x38\xaf\xfc\x75\x82\x47\xba\xec\xda\xbf\x22\x56\x84\x14\x99\x10\xe1\xde\xa6\x75\x84\xf6\x77\x01\x13\x34\x67\xda\x8d\x4d\x83\xcf\xf9\xde\x2a\xe7\xb3\xf0\xc7\x71\xc9\xba\x37\xa6\xb1\x84\x07\xf3\x4f\xfc\x3e\xb2\xc7\x92\xb0\x7f\x9e\x57\xed\xc2\x32\x2d\x82\xd5\xb2\x92\x63\x27\xad\x07\x18\x98\xbb\xff\xb1\x6c\x3d\x1c\x4e\xd0\x3a\xae\x61\x00\x27\x4b\x42\x8d\xd7\xb3\xbc\xf4\xce\x97\x2c\x14\xc7\x7e\x28\xeb\x5a\x91\x45\xb8\xfe\xe6\xc8\xce\x3e\xc5\x7c\xc2\xed\xb5\x5b\x0c\xbf\x57\xd9\x11\x42\xd7\xf3\x66\x45\x6b\xfc\x65\xc6\x61\xec\xab\x32\x67\xdd\x17\x0d\xc2\xd6\xf3\x1a\xea\x8d\xe7\xcd\x09\xf2\x0e\xf1\x83\x9d\x8d\xdc\x84\xaf\xd7\xb6\x39\x8f\xde\xfd\xce\xa0\x80\x5b\x37\x74\x73\x9e\x27\x8d\xc3\xe0\xde\xc6\x32\xce\x86\xd9\x84\xef\x1f\x96\x6d\x2e\x5c\xbc\x92\x70\xc6\x6e\x43\x87\x99\xee\x10\x03\x67\x69\xd5\xd0\xf9\xa9\x47\x68\x1c\xf1\x66\x12\x98\x97\x9f\x55\x8e\x4d\xc1\xd5\xdf\x56\x5c\xd9\x47\xe3\xe8\x31\x09\xb0\xdc\x3e\xf1\x00\xe1\x72\xf5\xbe\xec\xcd\x2e\x2b\x58\xe3\xa5\xa8\x72\x61\xf6\x7c\x1f\x61\xc2\x9f\x69\x03\xe7\x77\x4d\x55\x26\x48\x73\x69\xeb\x26\x2d\xbf\xfe\x5f\xb8\x74\x73\x41\x70\xe7\xc9\x7d\x04\xf7\x91\x7c\xf3\x6f\xbd\xc1\x84\x92\xdc\x03\xe9\xb2\xad\x87\x09\x13\x2d\xad\x4f\x25\x6b\x07\xb2\x95\x32\xce\xad\x87\x37\x9c\xfe\xc3\xa0\xb6\xb9\xd4\xce\xbf\xf5\x1a\xa1\xc8\x6c\x8d\x96\xa7\xb9\x05\x21\xfa\xa5\xc6\x76\x56\xe3\x5e\xc2\x8c\x8c\xa3\xbb\xfa\x36\xcb\x13\x3e\xb8\xf5\xac\xf2\x9b\x63\x4c\x58\x75\xf8\xf9\x9e\x33\x37\x35\xd8\x60\xf4\x9a\x15\x38\xe2\xf6\x95\xc1\xa7\x77\xbb\x56\xfe\x76\xb5\x20\x68\xdc\xea\x68\x3d\x27\x24\xcc\x86\xb5\x6b\x47\xcc\x62\xd2\x47\x18\xb8\x45\x97\x06\x7f\x9c\x58\x48\x70\x2c\xf9\xd1\xf9\xce\xf9\x06\xe1\x7d\x4e\xb1\x43\x93\xb0\x30\x21\x68\xf6\xee\x3d\x5b\x8f\x80\xc1\xa4\x5d\x0f\xc2\xef\xd9\x66\x10\xf6\x9d\x51\xb8\xfc\x30\x7a\x01\xa1\x6a\x44\xb7\x58\x3e\x55\x86\xb0\xa0\xe9\x46\x78\x05\xd7\x5c\x42\xeb\x59\x7f\x5d\x47\x07\x6d\x82\xfc\xda\x45\x2c\x8b\xde\x62\x42\x9a\x4b\x8f\x58\x46\x49\x03\x5b\x59\xff\xfe\xf5\xc5\x9a\xe1\x43\x84\xba\x05\x27\x0a\x76\x9c\xb8\x42\x68\xfc\xa4\xb7\xb0\x35\xab\x98\x90\xbe\xd3\x26\xd2\xec\x42\x0a\x21\xc6\xcb\x65\xeb\xbf\xa2\x1e\x5e\x7c\xf7\x1f\x38\xed\x43\x1f\x72\x7e\x39\x43\x50\x55\xce\xed\xf5\xda\x72\x96\x30\xfd\x91\xfc\x9f\xe9\x4b\xf3\x09\x81\xdb\x07\x3a\xfc\x0f\xbf\x27\x9c\x39\xf6\xfa\x55\x9a\x73\x25\x21\x39\xce\xeb\x8d\xc9\x0e\x75\x42\xd9\x8e\xd1\x6d\x7b\xd4\x0c\xd8\x30\xd1\xbd\x71\xcf\xd3\xed\x0d\xe5\xd8\xc4\xbb\xe3\x40\xae\x62\x30\xe1\x9e\xe5\xbd\x58\xcf\xa8\x97\xac\xf1\xc2\x3c\xfa\xb0\xda\xed\x7d\x12\x0b\x7e\x73\x64\xd7\xee\xb9\xc0\x62\x81\xf3\xd3\xb4\x8d\x49\xef\x02\x08\x35\xed\x0f\xca\x1f\x6d\x4c\x67\xc1\x63\x4a\xba\xdb\x95\x02\x6b\xc2\xd2\xd1\x86\x47\x3e\xc1\xcf\x59\x50\xe8\x96\xde\xbe\x26\xa9\x8a\x10\x27\xf7\x28\xee\x54\xf6\xff\x1d\x27\x0b\xf5\x17\x88\x45\xb3\x23\xb6\x5a\xbf\xdf\xeb\xc1\x5d\xc2\x7c\x3b\xc7\x96\x77\x97\xab\x08\xc5\x12\x3f\x58\xb2\x31\x55\x84\x97\x09\xdc\x6f\xf6\xad\x4d\x21\x08\xf2\x88\x6e\x3f\x9a\x78\x93\x60\x99\x5b\x31\x4f\x6d\xfa\x4f\x06\xb1\xfd\x49\x8b\x1d\xec\xf3\x09\x3f\x2d\x0f\xb6\x4d\xd5\x4f\x25\x38\xc7\xe4\x84\xd9\x77\xdd\x60\x21\x94\x7f\x4b\xfd\xbf\x92\x71\xdc\x30\x6b\x9f\xc7\x49\x42\x74\x9d\x11\xef\xd2\x53\x17\x08\x69\xfd\x7e\xf1\x53\x1c\x2f\x10\xee\x1c\xbc\xf4\x24\x4d\xf2\x18\x1b\x82\x64\x4e\x3d\xfb\x72\x64\x3f\x0b\xbf\xbf\x64\x3f\xde\xea\xb9\x9f\x70\xe2\xa7\xed\xe8\xf1\xd2\x87\x04\x8b\xaf\x0d\x21\x99\x46\xb7\x09\xb3\xbc\x51\xfa\x0f\xea\x13\x57\x15\xb8\xff\x3c\x44\x48\xd3\x6c\x5d\x14\x27\x71\x99\xb0\xf7\x8c\xba\xc4\xa1\x50\x5f\xc2\xae\xe5\x92\x15\x05\xa3\x17\x09\x2d\x4e\xd3\xa5\xf7\x1c\xf5\x25\x58\xbc\xaa\xe0\xd0\x7b\x74\x86\xa0\x22\xf0\xc3\x70\xc7\xdd\x63\x84\xa2\x2d\xc3\xab\x67\x0a\x05\x11\xac\x24\x4e\x45\x8f\x6c\x0e\x23\xf4\xde\xcc\x49\xea\xc8\xe1\x26\x1c\x4f\xd3\xbb\x28\xc8\x3d\x9f\x0d\x76\x25\x13\x5b\x05\xff\x6a\xb0\xe1\xdb\x46\xa5\xea\xe1\x70\x41\x42\x96\xc9\x60\xf8\x9b\xcd\xba\xff\x05\xde\xa6\xa4\xcf\x8a\x09\xb7\x19\xcc\x9a\x30\x67\xc5\xfc\x4b\x13\x08\xdb\x44\x3e\xc5\x4e\x77\x12\x22\x28\xb5\xe4\xf9\x99\x18\xad\x27\x10\xeb\xfa\x8b\x67\xf2\x4b\x08\xf6\x7e\x8b\xf6\xcc\xaa\x39\xc1\x42\x96\xc6\xa7\xc9\x27\x67\x16\x10\xb6\xe1\xc3\xc7\x47\x32\x05\x84\xc9\xb7\x57\xcb\x6d\xac\x78\xcb\x80\xa6\x69\xf4\xa8\x2f\x55\xa1\x71\xec\x0e\xcc\x56\xb4\xd8\x99\x42\xf8\xa6\x69\x9c\xb4\x68\x5d\x21\xc1\x3a\x30\x21\x57\xc6\xbc\x98\xe0\x9c\xd4\xb0\xb8\xd7\x72\x03\x1b\x6c\xb6\x35\xe4\xd5\x70\xd8\x11\x1a\x64\x4d\x15\x39\x8e\xcb\x11\x56\xe9\x4f\x08\x18\x49\x6a\x65\x60\x2a\xc5\xf7\xec\xe3\x37\x4b\x42\xf4\xf7\x03\x96\xbb\x26\x55\x10\x9e\x15\xbc\x32\x4d\x90\xbf\x4d\xb8\x22\x97\xec\xb1\x73\xac\x9c\x1b\x3e\x56\x38\xe1\x73\x30\x41\xb2\xf1\x67\x4b\x98\x83\x26\x61\xe1\x03\x9e\x55\xfc\x61\x4b\xd9\xb0\xee\x94\x85\xa1\x28\x9a\x19\x70\xc7\xcb\x96\xbf\xd2\xc9\x26\x3c\x59\xc3\xd9\xd3\xb8\x6e\x98\xc1\x91\xe5\x0f\x8f\x54\x97\x4d\xa2\x71\xbc\xee\x4d\x3c\x17\xb2\xeb\x55\x39\xe4\xb6\x07\xdb\xdd\xff\xae\x4a\x70\xdd\x75\x37\x5e\x63\x1d\x07\x61\x68\x7a\xd9\xd3\xba\xdf\xa6\x84\x98\x18\xfe\xb4\x88\x8d\x8b\x09\xa6\x25\xb1\x2b\xf9\xca\xe6\x13\x96\x78\x88\x0f\xa6\xf8\x9b\x11\xdc\x3f\x35\xde\xb0\x0a\xae\x26\xf0\xb7\xde\x38\x77\xe1\x50\x12\xa1\x48\xc8\x61\x93\xd4\x93\x38\x82\xe5\x91\xdb\x7e\x7f\x1f\x5e\x25\x6c\x7d\x98\x1d\x6b\x22\x52\x44\x30\x1d\x8e\xdb\xee\xf7\xe5\x21\x41\x77\x70\x97\xed\xbf\xf2\x57\xed\x59\xe5\xa7\x28\x2f\x36\x6c\x8a\xfa\xfb\xf3\x81\xfd\x62\x36\xc4\xdf\xec\x1e\xc9\xf6\x68\x67\x70\x9a\x33\xb1\xb9\x5e\x7a\x23\x0b\xd6\x5b\x38\xea\xc2\x7c\x85\x08\x19\x25\x4b\xbe\xce\x61\x7d\x60\xb0\xec\x97\x22\xe2\xbf\x84\x11\x1e\x7f\x48\xab\xb5\xea\xcd\x20\x5c\x67\x0c\xa7\x26\x8c\x95\x23\x59\xee\xd8\xf0\xa6\x83\x19\xc7\xf4\x19\xd2\xb2\xc2\x39\x17\x69\x1c\x4f\x05\x64\x56\xdf\x0d\x94\x60\x83\x85\x73\x5b\xc6\x2e\x41\x1d\xc2\x50\xbd\xfc\xb5\x86\x7d\x2a\x84\xdb\x37\xd7\x7d\x29\x3e\x38\xc8\xa0\xd2\xa4\xb8\x2b\x71\x9b\x24\x8d\xa3\x4e\xc3\xac\xc1\xd6\x43\x98\x20\xaf\x1f\x6f\xb1\xdb\x7d\x06\xc1\x6f\x5b\x76\xb4\x47\xdb\x4b\x42\xf5\xc5\x85\x5b\x92\xeb\x47\x18\x98\x7d\xf3\x8c\x38\x50\x6c\x4c\xb8\x12\x9e\x98\x98\xe2\xa7\x43\x08\xac\x55\xbd\x9b\x7c\x6c\x0e\xc1\x36\xe8\xce\xce\xa4\xf9\x92\x84\x55\xa1\x26\x17\xe3\x36\xe7\xb1\xf0\x72\x5b\xcd\x41\x9b\x35\x63\xf7\x2f\x23\x8b\x6e\x4d\x93\xa9\x04\x29\xc5\x0f\x2b\x15\x0f\xaf\x64\xc3\xf1\x16\xef\xcd\x7a\xd7\x78\x09\xe2\x79\xa1\xc1\xda\x66\x1c\x04\xd6\x55\xef\xd5\x83\x7f\xb2\x09\x13\x2f\x1f\x4b\x0a\x32\xb8\x4e\x18\x19\xc9\x3d\x5d\x50\x6f\x44\xf8\x79\xfe\x60\x4e\xb9\x95\x2e\xc1\x49\xb1\xcc\x4a\x2d\x4f\x83\xe0\xdc\x97\x91\x9f\xf2\x72\x25\x21\xc2\xe0\xe1\xe3\x64\xd6\x67\x06\xdb\xab\x15\xf2\x2b\xbb\x02\x09\xf7\x8e\x6b\x5a\xcc\xb9\x6d\x48\xf0\xe6\xf3\xfe\x3b\x39\x38\x87\xd0\xd8\x24\x22\x6a\xd5\xe7\x4f\x78\x9d\x29\x3a\xb8\xe7\x2b\x2f\x61\xb6\x53\xf2\x94\x6a\x11\x76\xa4\x7f\xbf\x71\x69\xf6\xa2\xeb\x84\x07\xf5\xf7\x8e\xe9\x47\xf2\x13\xb2\xb9\xe3\x0d\xb7\xee\xe3\x22\xac\x58\xd1\x3a\x7c\x74\x9b\x3d\x61\x99\xdf\x03\xa3\x42\x7f\x53\x42\x04\x4f\xdf\xe3\x9c\xea\x16\x06\xbf\xb6\xe3\xee\x8e\xa7\xe2\x84\x59\xa7\xdc\xa7\xab\xf1\x9e\x22\xb4\x1f\x99\xce\xba\x15\x7d\x9e\xb0\x66\x53\xfc\x57\xdf\xba\x65\x84\xc6\x1c\xbf\x25\x6e\xf1\x2b\x09\x7f\x39\xef\xf1\xf3\xe8\x2f\x26\xcc\xd0\x32\x35\xdc\xff\x5e\x93\xb0\x89\x87\x3b\xd4\x6c\x77\x29\x41\xb7\x74\x8b\x97\x62\x46\x11\xc1\xc8\xf7\xd7\xa1\x0d\x83\x2c\xc2\xa9\x0d\x45\x4d\x55\x9c\x3e\x84\xab\x5c\x1f\xae\x74\xfc\x3c\x41\xd0\x38\xd3\x77\xb3\x43\xe5\x79\x39\xe6\x09\xe9\xfc\x0d\x2a\xd0\xa0\x71\x84\x54\xce\xae\x39\xf9\xb4\x8f\xc1\xd4\x9d\x11\xfe\x72\x89\x1f\x19\xbc\xdf\x73\x26\xf2\x52\x5a\x04\xe1\x6c\xce\x68\x5b\x62\x0b\x07\x61\x93\xa5\xa1\x00\xff\x85\xb1\x1d\x3b\x25\x52\x3d\x47\xe0\x2e\xa1\xc8\x59\x91\x7f\xf2\x58\x09\xfe\xc1\xa7\x3d\xdc\xa5\x4f\x50\x9b\xc2\xf1\xfd\xf0\xd8\x9f\x8c\x5d\x4b\xee\x97\xb6\x5f\x99\x84\x60\x26\x21\xa7\xa1\x5c\x96\xf0\xe5\x6a\x59\xe8\xed\x72\x8b\xff\xc2\x91\x8f\xf9\x46\xb6\x9e\x46\x84\xd0\xec\x1d\xd6\xc1\x9a\x72\x84\x8c\x83\x4d\xc5\xba\x54\x4d\x98\x13\xbc\x74\xc9\xf6\xe5\x2c\x82\x66\xc4\xd6\xa2\x38\x6b\x7f\x42\x89\xd4\x43\xf7\x03\xf9\x73\x08\xb7\x38\x87\x74\xd4\x8e\x14\x11\xfe\xe8\x6c\x9e\xbb\xc3\x51\x81\x90\x6d\x26\x2d\x2b\x21\xaf\xcd\x06\xbc\x8b\xad\xca\x63\xd9\xb3\x21\x77\xe1\x3e\x25\x3b\x45\x11\x82\x5d\xb7\xc0\x0b\xe5\xad\xa1\x04\x8b\x8e\x65\x7f\x72\x8d\xff\x32\xb8\xf4\x71\x52\xed\xd4\x0c\x31\xc2\xda\x14\x6f\x79\x43\xde\x62\x1a\xb2\x3d\x6f\x28\xb2\xfe\xc2\xff\xbe\xe2\xe1\xa6\x81\xda\xeb\x32\x17\x08\x1b\x43\x42\xcb\x24\x45\x2d\x09\xb7\xea\xac\xf8\xd6\x72\xe8\x12\x9e\x67\x7f\xad\x99\x92\xf7\x89\x41\x6b\x61\xf4\xd1\x2d\x99\xd3\x09\x12\x37\x6f\x7f\x5e\x70\xc8\x88\x70\x61\x6d\xb4\x7b\xf7\xd8\x4f\xa5\xc7\xe2\xfe\xd0\x75\xc2\x99\x60\xf9\xc0\x64\x45\xe5\x99\x02\xc2\x88\x64\x74\xf0\x04\x15\x3e\xc2\xc2\xe5\xc9\xeb\xfd\x0e\x70\x12\x7a\x48\xcc\xe9\x4f\x45\x1c\x0b\x75\x37\x3f\x7a\x8a\x86\x2e\x24\x88\xbb\x25\xd7\x2c\xfe\xb3\x9e\x30\x14\x7e\xf5\xf6\x90\x8a\x16\xe1\xe1\xeb\x8e\x4f\x15\x1a\xd7\x58\xf8\xdc\xfb\x76\x7a\xb5\x0f\x27\xe1\x9d\x61\xee\xaa\x79\xd7\x18\x36\xdc\xcf\xb8\x3b\x2a\x94\xc5\x41\x43\x1a\x4b\x5b\x5f\x4e\x8e\x20\x6c\x2e\x68\x71\x0d\xdc\xae\x45\x78\x4b\x6b\x8c\x62\xcf\x2f\x24\x9c\xf3\x7b\x97\x7f\x67\xcb\x28\x03\xe3\xb4\x98\xc6\x73\xbb\xf6\xb3\x20\x61\x7a\xb2\xfb\x68\x78\x2c\xe1\xe9\x61\xd1\xb3\x25\x6d\xc3\x0c\xea\xdf\xfa\x70\x4f\x5d\x6a\x44\xd0\xb2\x19\xd2\x89\x78\x2a\xc9\x06\xb7\x1d\xe9\x9c\xad\x85\x95\x0c\x6c\x6c\x3b\xb5\x03\x23\x07\x18\xd8\x7e\x43\x9c\xa3\xec\x54\xc2\x41\xa5\xe5\x0f\x13\x5a\x06\x99\x71\x14\x7c\xce\xba\x61\x7b\xe8\x79\x39\x5c\xec\xfb\x43\x02\x4f\xd4\x32\x98\x23\x98\x94\xac\x5c\x34\xca\x86\x53\x53\x26\xf9\xce\xbb\xc4\xd0\x38\xc2\x82\x8c\x6f\x94\x5d\x28\x21\x5c\xaa\xb6\x6d\x38\x13\x39\xc4\x60\xd8\x75\xe3\xa6\xf2\xe5\xcb\x69\x1c\xbd\x67\x43\x13\xd7\x19\x17\x97\xe3\x63\x61\xb5\x40\xe6\x29\x2f\x82\x96\xff\x96\x30\x63\xbd\x99\x84\x9f\x1c\xa3\x27\x7e\xb7\x0a\x13\x0e\x28\xe6\x24\xee\x6d\x9a\x48\x70\x3c\xab\x76\xec\x63\xf3\xb5\x72\x9c\xee\x13\x16\xbd\xa8\xe5\xc3\xc2\x93\x98\x1f\x01\x17\xe6\x09\x13\x56\x1e\x5e\x7e\x65\xf3\x26\x45\xc2\xb3\x81\xef\x41\x6f\x34\x9a\x18\x30\x4d\x22\xad\x2b\x66\xcb\xd1\x38\xdc\x27\xca\xdc\x7f\x65\x92\x46\xb8\x14\x3c\x3b\x64\xf3\xee\x62\x82\x69\x41\x46\xf9\xa4\x5f\x39\x84\x0d\xb7\xce\x7f\x9f\x38\x76\x78\xc9\x74\x8a\xec\x1d\x51\x76\x65\xc3\xea\x49\x2e\x11\x4e\x4f\xe5\x08\xf9\x1c\x5f\x95\x5a\xd6\xf9\x12\x4a\x2f\x1d\x3c\x36\xd4\x3c\x93\xe0\xbe\x89\x9b\x82\x64\xb3\x09\x67\x8b\xda\x37\x3c\x39\x6a\x46\x50\x7e\xb7\x28\xe1\xf6\x1a\x5e\xc2\xad\xf2\x25\x8d\x81\x4a\x12\x6c\x38\xd7\x5b\xb3\xa4\xfd\xf8\x1d\x06\x8b\x2b\x0b\xf6\x0b\x17\xc9\x11\x36\xd4\xd0\x4c\xa7\x75\x5b\x09\xe7\x4d\xe6\x5f\xae\x4d\xb6\x67\x43\xe1\x9f\x45\xf7\xd3\xa6\x8a\x10\x62\xaf\xb7\xf3\x07\xfe\x18\x60\xb0\x70\xa5\x59\x9b\xd2\x19\x2d\x1a\x87\xfd\xb1\x86\x6e\x55\x3e\x11\x36\xb8\xcd\x57\xe6\x9a\xfd\x3d\x6d\x6c\x88\x32\xba\xb2\x60\x26\x2f\x61\xb2\x95\x79\xbd\xf6\xf9\x19\x84\x9b\x82\x01\xfc\xa2\x47\xa6\x13\x38\xd5\x1c\x02\xa7\xf1\x4d\x27\xe8\x4a\x64\x34\x0d\xaa\x15\x11\x14\x0c\x2c\x24\x4b\x8d\xbc\x08\xd3\x1b\x6f\xea\xfa\x2c\x5c\x4e\x88\x77\x4c\x3e\x31\xc7\x33\x9e\x50\xb6\x4b\x75\xc6\x3b\x25\x59\xc2\xa2\xbe\x61\xd7\x17\x9a\x1a\x6c\x08\x16\x12\xdd\xbb\x7d\xf8\x2d\x03\x89\x35\x47\x4b\x7a\x42\xaa\x59\xb0\x3f\xec\xce\xbf\xc3\xf3\x02\x21\xc8\xca\x5b\x71\x17\x6f\x22\x41\x60\xe2\xee\xbc\x26\x8b\xb1\x5b\x46\x9e\xaf\xb1\x9f\xd4\x3b\x06\xc7\x25\x2a\x0f\xd6\x28\x89\x11\xca\x7a\xb8\xb4\x0f\xdc\xcd\x23\x6c\xef\x71\xbf\x97\x5d\x73\x99\x70\xa3\xf4\x95\xf8\xc1\xb1\x32\xd9\x5c\xfa\xd8\x70\x92\x10\x21\x7d\xc9\x9c\x73\xd3\xf2\x72\x08\x7c\xfa\x75\x9f\x13\xef\xc4\x10\xca\x22\x47\x37\x3b\x4d\x99\x43\x10\x36\x3f\x35\x93\xbf\xb3\x80\x50\x5d\x67\xd7\x76\xdf\xfb\x05\x61\x51\x6b\x85\x6f\xc3\x18\x0e\xf8\xeb\x79\xf3\x4e\x2a\x20\xe4\xfd\xba\xb8\xe8\xe1\x58\xd1\x35\xbd\x2c\xf4\xef\x19\xaf\x23\xc7\xc3\x6a\x2f\x5b\x13\x82\xf2\xf7\x0e\x1d\x98\xe4\xcf\x56\xae\xc2\x20\xb3\x38\x8b\x8f\xa0\xb0\xf6\xa1\xff\x2c\xad\xb5\x04\x51\xad\x85\x4e\x3f\x1d\x84\x08\xc5\x8f\xde\x71\x79\xca\x99\x11\x8e\x35\x90\xc9\x91\xf5\x07\xd8\xca\xf3\x9c\xa6\xef\x09\x2e\x9a\x84\x60\xa3\x75\x45\xe2\x86\xc1\x2c\xac\xcb\x78\x7b\xb4\xff\xf6\x5b\x42\x5f\x47\xdb\xe4\xc0\x2b\xfe\x04\xf1\x7a\xb7\x9f\x7d\x15\x9c\x04\xc9\x88\x99\x4b\xe2\x85\x56\x11\x4e\xf2\x70\xf9\x73\x2e\x7d\xcf\x60\xc9\xfc\x3d\x1c\xe9\x0a\xd5\x2c\x5c\xbd\xde\xf0\x33\x75\xec\xf0\x12\xcf\x50\x5f\xec\x70\x3a\x80\xe0\x23\x35\xcd\xa2\xbe\xff\x1c\x41\x62\xe5\xcb\x9d\xcb\xa5\x43\x08\x47\xf8\xda\x37\x14\xff\x09\x20\xe4\x3a\x9e\x15\x70\xf1\xf6\x23\xdc\x0b\x6b\x3f\xa9\xd4\x58\x43\x38\x91\x55\x32\xef\x68\x5a\x03\x61\xe8\xbb\xd3\xc2\x14\xa3\x2b\x2c\x1c\xed\x8c\x4c\x4b\x2d\xa8\x21\xd8\x28\x08\x79\xea\x0d\x3c\x22\x14\x8e\x44\x0f\x1a\x3e\x7a\x44\xd8\x2c\x21\xe0\x99\x6b\x13\x42\x58\x6f\x13\xf8\xf8\xe2\x89\xb3\x84\xc4\x5b\x9a\x72\x5e\x62\x21\x84\xb6\x00\x83\xcb\x11\xfb\x43\x08\xb3\x4f\xd5\x05\xea\x51\x1c\xc1\xed\xe8\xe1\xcd\xc2\xe5\xe1\x04\xf1\xd6\xa4\x2f\x49\x19\x44\x08\x39\x16\x74\xe8\xfa\x36\x69\xc2\xd4\xa8\x29\x2e\xdb\x92\x38\x09\x4f\xfc\x07\x97\x88\x4f\x95\x65\x83\xda\xb6\xdb\xf8\xb4\x97\x83\x20\x37\x43\x39\xf0\xa2\xaa\x33\xe1\xc7\x5f\xe7\x43\x5e\xfd\xc9\x84\xe1\x73\x47\x92\x57\x87\x5a\x12\x76\x7d\x4c\xd7\x14\x53\x2e\x23\xb4\x99\xa9\x47\x35\xd6\x9f\x23\xa4\x5a\xfb\x71\xfd\x2b\xa3\xb7\x22\x37\xf6\x48\x85\x13\xea\x9c\xc5\xec\x3b\x2a\x2e\x10\x5e\xd5\x72\x29\x08\x6a\x1f\x20\x4c\xca\xbf\x6f\xd5\xed\x1b\x40\x70\xda\x3d\xdb\xee\xe9\x4f\x6f\x42\x4d\xc7\x64\xf9\xa9\x33\xee\x12\xce\x7c\xe4\x15\x8d\x36\x79\xc9\x42\xd3\x24\x69\x13\x57\x46\x92\xf0\xfa\x0f\xb7\xfc\xa9\x4c\x51\xc2\xe8\x2e\x93\xdd\x9a\xbf\x8b\x09\xbd\x02\x83\x57\x9e\xee\xf6\x25\x4c\xd3\x95\xfe\xaa\x6d\xa7\x47\xd8\xfb\x53\x44\x63\xcb\xd9\xb1\xf7\x70\xe4\x72\x8c\xf9\xa5\x15\x84\x19\xf3\x7d\xde\x9d\xd2\x09\x22\x1c\x34\x5b\xdb\x39\xcc\x7f\x88\x30\x79\x2d\x3a\xf9\xee\x69\x10\x02\xb2\x83\x66\x9e\xfe\x15\x41\xe0\xad\xf4\xd0\xda\x38\x55\x9c\xa0\x3f\xef\xda\x25\x6f\x2b\x7e\xc2\x52\x65\xa5\x7a\xfb\x4d\x59\x84\xf9\x9f\x47\x17\x8a\x1e\x0b\x63\xc3\xc4\xbc\xa7\xee\x6e\x1b\xc2\x09\x59\x89\x46\x56\x51\x33\x4f\x10\xcc\x22\x3f\xdd\xd4\x6a\x91\x24\xe8\x3f\xab\x98\xcf\x21\x77\x9e\xf0\x92\x77\x69\xb1\x59\x7c\x05\x61\x71\x5c\xf0\x89\x5b\x4c\x1b\x61\xc0\xbe\x9f\xbf\x70\x0c\xf3\x0f\xb7\x64\x5e\xec\xbd\x4b\x60\x7d\x95\xd6\xff\x57\x92\x2e\x9f\x6d\xec\x8a\x2d\x21\xd4\x15\xc4\xf0\xfa\x2d\xaf\x23\xbc\xd5\x0a\xdc\x1a\xa4\x1a\x4e\x48\x8d\xce\xe6\xdb\xbe\xf7\x3c\x0b\xa1\xdb\xf1\xb6\x23\xff\x10\x61\xc6\xd2\x33\x3c\xfd\x2b\x8e\x12\x42\xf5\xbd\xab\x56\x4d\xf1\x24\x3c\xe0\xe8\xbb\x19\x1b\x64\x40\x43\x43\xaf\x86\xee\xa9\x12\x41\xc9\x69\x5a\xcb\x90\xa2\x32\xc1\xeb\x95\xb9\x78\xb8\xca\x79\x16\xc4\xf8\xb9\xf8\xed\x07\xde\x13\xdc\x62\x64\x3c\x57\xdd\x29\x20\xa4\xae\x73\x7a\x25\x33\x5a\x43\x08\x3b\x1c\x5a\x1c\xaf\x72\x9a\xd0\xef\x5d\xf0\x30\xe2\xf2\x7e\x16\xda\x74\x63\x63\x4b\x5c\x75\x09\x1b\xdf\xec\xad\x2f\xda\x97\x4e\xd8\x5d\xd7\x94\x2b\xa9\x27\x43\x48\x7c\xbb\xe3\x60\x92\x6c\x0a\x1b\x52\xa2\x25\x95\xce\xee\xd3\x21\xcc\xd6\xb5\x97\x1a\x08\xd0\x27\x9c\x48\xd8\x29\xe5\x32\x87\x8b\x60\xcb\x63\x23\x61\xf9\xa1\x87\x41\x83\x3c\xb7\xd0\x4f\x87\xd5\x84\xb6\xa1\xc9\xba\x65\x0a\x7d\x0c\xae\x4e\x7e\xfd\x66\xe0\xf5\xd8\x4c\xa7\x95\x19\xe5\x1e\x53\x41\x30\xb8\x54\xdb\xe1\x52\x56\x43\xb0\x3f\x6d\xd9\xb3\x65\x89\x3e\xa1\xdf\xb0\xc6\xce\x29\xb8\x97\xc1\x9a\xc4\xa7\x57\x37\x29\x24\x12\x8c\xb7\x5f\x3b\xb7\x79\x0c\x36\xbb\x15\x9b\x7e\xfe\x3a\x42\x08\x54\x4c\x13\xbb\xeb\x95\x49\x70\x78\x15\x3f\xe4\xf0\xbd\xae\x1c\xeb\x1c\xe2\xe6\x5b\x4f\x1f\x66\xa0\x6d\x65\xcb\xab\xda\x18\x4b\xb8\xb4\xcb\x36\xad\xe3\xf8\x30\x03\xa1\x79\xea\xd6\x2d\x07\x55\x09\xb5\xd1\x1a\x9d\xf7\x73\xe7\x13\xd6\xe3\x7d\xf1\x9e\x1d\x91\x84\x0d\x3b\xac\xf4\x4a\xe6\x8b\x12\x9e\xb8\xbc\xd5\x79\x65\xbb\x9b\x0d\xc7\x9e\xef\x13\x11\x8f\x74\x20\x84\x71\x7d\x8f\x98\x6c\x9a\xc8\xc2\x56\xb9\xfa\x17\xdf\x3d\xec\x08\xb9\xf6\x8f\xef\x8c\xa8\x7c\x64\xd0\x63\x77\x60\x95\xfe\xa2\xb9\x84\xb6\xb0\xa7\x1f\x37\x38\xca\x13\xc4\x6f\x6c\xee\x4f\xd8\xc8\x41\xe0\x53\x77\x4e\x0e\x6a\xe5\x23\xcc\x7b\x74\xeb\xf9\xc7\x86\x21\x06\x85\x7f\xfc\xe5\x1f\x9b\xdc\x67\xa0\x23\xf9\xd0\x40\xfa\xba\x12\x61\x83\x64\xbf\x4a\xc9\x32\x19\x42\x81\xc8\x1f\xc7\x01\xd1\x41\x06\x84\xe9\xf7\xbe\x4f\x54\x27\x5c\x91\xb0\x9c\x6b\xce\x2c\x23\x3c\x6e\xc8\xf8\xbc\xe0\xaa\x39\xe1\x79\x95\xbb\xc3\x9b\x7d\x9a\x04\xed\xa0\xa4\xd4\xdd\xd1\xbc\x84\xc2\xb2\x72\x69\x99\x9b\x39\x2c\x7c\x4d\x48\x8c\x18\xf6\xb2\x20\x1c\xba\x53\x19\xc9\xfa\xba\x86\x20\xe5\x5c\x1f\x1b\x92\x6d\xc5\x06\x96\x80\xc4\x8c\x16\xf9\x20\x36\x30\x8b\x0f\x4c\x7f\x6c\xed\x42\xb8\xe5\x92\x7d\xaa\x36\xe4\x0b\x83\xab\x3d\xf6\xa5\xeb\x9b\xb7\xd3\x38\xa4\xea\x82\x37\x8c\x5a\xb6\xb2\x20\xaf\x5b\x37\xd2\x6e\x53\x41\x78\xe3\xc4\x3b\x34\xe9\xc0\x10\x83\x19\x4d\xdf\x87\x5b\x4f\x39\x10\xee\xdb\x74\x67\xb3\xfc\xaf\x10\xa2\x3f\xa9\xdc\x71\xe3\xbc\x42\xd0\x0a\x4a\x3e\xe1\xf0\x26\x80\x90\xa1\x59\x12\x52\xbf\xef\x14\x61\xda\xfe\xcb\x87\x36\x5b\x79\xb1\x41\xe2\xde\xa3\xed\x5f\x12\x02\x09\xb7\x3a\x2e\xb7\xa8\x6c\x5f\x40\xf0\xf1\x8b\x0a\x71\xc9\x9a\x44\x98\x11\x1d\xef\xa3\x74\x88\x8b\xe0\xec\xe5\xa3\xda\xc4\x7d\x86\x05\x68\x47\x6e\xe3\x54\x14\xa7\x71\xe8\xcc\x95\xf4\x89\x59\xab\x4b\x78\xd5\x3c\xe9\xcd\x4a\x8d\x76\x06\x76\x6d\xbf\xb3\x15\x5d\x25\x69\x1c\x0d\x27\x5d\x26\x4b\x0b\x4e\x20\x1c\xb1\x6d\x49\xa9\xbd\x7d\x8d\x10\xf5\xbe\x6f\x96\xed\xc0\x0c\x42\xd1\x65\xfa\xd3\xde\xc5\x47\x28\xbc\x19\xfa\x98\x47\xb3\x92\x19\xc7\x9e\xb3\x53\x7f\xf0\x3c\x6e\x63\xc0\x68\xdb\x64\x19\x56\x6b\x12\xfe\x46\x08\x9e\x98\x1d\x3d\x93\x30\x74\xf1\x17\x76\x87\x70\x13\xc4\xe6\x8d\x1c\xb8\x3a\x99\x8f\x10\xbb\x5d\xc2\x4a\xd4\xaf\x87\x41\x55\xdb\xf9\x2b\x1d\xa9\x93\x09\x33\x3b\x9d\xd6\xca\xcc\x99\xcf\x86\xa1\x7d\x45\x85\x9d\x7e\xf7\x18\xe8\x54\x58\x72\x3d\x96\x97\x22\x3c\x74\xe6\x48\xbf\xee\xb0\x90\xa0\x28\xde\xdf\x56\x3c\xfb\x1c\xc1\x3d\xfb\x4e\xde\xf5\xa4\x89\x84\xa4\x5c\xd3\x73\xd9\xfb\x4c\x08\x3e\x8d\xaf\x6a\xb5\xfa\xd5\x08\x31\x3a\x1b\x6e\x7e\xf2\x35\x20\x18\x3b\xca\xcc\xe8\xa8\x58\x4f\x58\xf6\xe0\x8d\xb2\xe9\xe7\x11\x06\x0d\x82\xa7\xf6\x0e\x44\x6b\x10\x5e\x94\x9e\xcd\xfb\x65\x34\x9f\x10\xa1\xb8\xa6\x41\x20\xf8\x02\x0b\x64\xc3\xfd\x24\xd3\x6b\x32\x8d\xe3\xc9\xd7\xe7\xa1\xf2\x7f\x7f\x31\xe3\xd0\x53\xfd\xf4\x6d\x58\x9e\x68\x1c\x0d\xcb\x9b\x25\x5d\xdc\x0a\x08\xc6\x7f\xe6\x67\x7a\xea\x5d\x24\x44\x4e\x60\x56\x70\x77\x37\x12\xd2\x5c\xf2\x9c\xe7\xfa\x65\x13\x84\xdb\x4b\xc3\x8b\x1e\x1e\x20\x74\x88\xfe\x5e\x18\xd4\x95\x49\xa8\x3c\xe6\x73\xd0\x62\xe1\x1d\xc2\xcf\xe7\x1a\x1a\x95\x93\x55\x09\x09\xd5\xf5\x67\x1f\xc6\x6b\xb0\xe1\x5b\xcf\xd5\xe8\x81\xe7\x9a\x04\xf9\x72\xb9\xf3\x3a\x62\xd6\x84\xd0\xce\x85\xad\x2f\x1f\xf1\x13\x46\xda\x07\xcc\xad\x56\xf9\xb2\xa0\xd4\xff\xe9\xdc\x61\x1f\x5b\x02\xf7\xd6\xf8\xdb\xb3\xc3\xad\x08\x6e\x06\x05\xed\x43\x33\xaf\x11\x56\xbb\x3f\x58\x95\x16\xb7\x8b\xb0\x8f\x65\x69\xcd\xf7\x25\x91\xa0\xf1\x78\x6a\x1c\x9f\x4f\x04\x41\x6c\xf5\x8a\xc8\x27\x47\x73\x09\xad\xac\xb3\xb1\x0a\x2e\xc6\x84\x67\xf3\x13\xda\x0e\xe9\x2f\x21\x3c\xfc\xfe\xe2\x5a\xf4\xaa\x6a\xc2\xc5\xa3\x1c\x4d\xff\xe0\x2f\xf4\x56\x3c\x6a\x6a\x11\x61\x61\xa3\xff\xca\x7f\x65\x92\xd4\x55\xe7\x15\x43\x5b\x09\xb1\x76\x83\x8b\x1b\xdc\xce\x12\xb2\x34\x57\xe6\xfc\x89\x89\x27\x2c\x5a\x6a\xc0\x95\xb1\x33\x8a\x86\x76\xbc\xea\x39\x19\x9a\x43\x98\xb9\x2b\x31\x8a\x47\x7a\x29\xe1\x42\xc3\x8f\xe3\x93\xca\xb6\x13\x04\x37\x9c\x5e\xb3\x7a\x8b\x07\x0b\x1e\x4a\x69\x36\x06\x51\xa9\x04\xad\xfd\xdf\xfc\xaa\x5a\x52\x08\xef\xac\x7b\x6e\x47\x2d\xb5\x23\x44\x15\x9a\xef\x56\x5d\xce\x4d\xc8\x9b\xf8\x61\xca\x67\xdb\x22\xc2\xe3\xa5\xf3\x8e\x19\x7b\x9b\x12\x92\x05\x8e\x9d\x30\xf4\x53\x27\xb0\x5a\x02\x85\xaf\x3d\x9c\x44\x90\xf8\xe4\x3e\xfc\xfa\x48\x06\xe1\xf5\x9d\xbf\xbb\xce\x1e\xcd\x20\xc4\xc6\x7f\x5d\xf5\xe5\x60\x19\xc1\x47\xd8\xef\x63\xf0\x58\xe1\x31\x17\xdf\x62\x4d\xae\x84\x5b\x73\x47\xb5\x3f\x8c\xba\x12\xf2\x96\x38\xaa\x2f\x3c\xb1\x97\xad\xd4\xea\xeb\x8e\xa6\xeb\x58\x13\xee\x29\xbd\x8d\x33\x90\xde\x40\x88\x36\x51\x46\x78\x6b\x05\x41\x8b\x75\x83\xeb\x98\xd9\x6d\xc2\x8a\xd4\x53\x7e\x37\xdc\x32\x08\x65\xf7\x36\x2c\x1b\x8d\x3a\x49\xb0\x8f\x93\xab\x7a\x37\xd1\x98\x90\x29\xbd\xf7\xb2\x40\xf9\x10\x83\xef\x3d\x3a\x6d\x2f\x6b\xd7\x13\xf4\x17\x67\x9d\xdd\x5a\x79\x9e\x05\x1b\x91\xa5\x7a\x74\x3f\x91\x60\x79\xd9\x90\x0c\xc2\x0b\x09\x47\xdb\x47\xa2\x3e\xde\x4a\x24\x24\x74\x1c\x7e\xc7\xea\x4b\x24\x5c\x71\x88\xbc\x6e\xef\xae\x43\xf8\x9b\x5a\xe9\xcd\x4c\x90\x20\x38\x48\xd4\xc7\x87\x14\x13\xe1\x59\x5d\xaa\x57\x91\x1f\x07\x61\xe4\xfc\x8d\xf6\x59\x63\xdb\xfc\xdd\xe2\x09\x8a\x1b\x9b\x3c\x68\x1c\x52\x86\x3a\xbd\x2d\xc7\x9e\x32\x88\x71\xc9\x7a\x56\xb3\xa0\x92\x60\xa5\xa8\x96\xf0\xbb\x69\x0e\x61\x7a\x06\x4f\x7b\x5a\xa3\x28\x1b\x22\x16\xf0\x35\x0b\xae\xe5\x25\x08\xa6\x6a\xba\xbc\x8f\x4b\x23\x28\x2c\x7f\x5d\xf3\x2b\x26\x8d\xe0\xc1\xe3\x13\x22\xda\xc1\x62\x83\xa7\xdb\x7a\xd1\x09\x95\xc7\x09\x32\xf5\xfe\xc5\xd9\xd2\x41\x84\xe7\xc5\x3e\xca\xfe\xc3\xfe\x84\xe5\xfd\x3d\xf7\x56\x56\x1c\x23\x44\x1b\x5b\x2a\xbe\x4c\xb3\x63\x5b\xf2\x76\xee\x7e\xe9\xb5\xdc\x93\x10\x68\xd0\x18\x7e\x0b\x15\x84\xb9\xf5\x2a\xf7\x0d\x64\x5d\x08\x49\xf2\x73\x85\x63\x76\x4b\x10\x16\x5b\x4c\x18\xe4\xdc\xc4\x4b\x58\xf9\x3d\xbb\xbb\x34\x6c\x09\x41\x5c\x43\xa6\x9b\x63\xff\x74\x82\x9f\x9f\xd4\x66\x19\x1b\x45\x82\x82\x56\x2e\x66\xbf\x66\x08\x21\x86\x15\xe6\x8b\xd7\x5e\x24\xf0\xf5\x97\xd4\x7e\xed\x48\x20\xac\x91\xec\x7d\xde\x2e\x3b\x93\x10\xb6\x50\x47\xfe\xb0\x96\x28\x41\x35\x22\xdf\xe5\x7b\x43\x36\x1b\x7e\xcd\x79\x17\xfe\x0f\x71\x82\xa7\xf7\xf7\x8c\x41\x5f\x66\x74\xa7\x91\x6c\x6d\x39\xcc\x39\x38\x6c\x27\x04\xd4\xb1\x90\x2b\xeb\x91\xb6\xda\x67\x01\x8d\x43\xb8\x2c\x8d\xdb\xba\xce\x9d\x0d\x91\x92\x3f\x8f\xce\x23\x11\x42\xc7\xfd\x1a\x3e\xdd\xdf\x71\x84\x8a\xb8\x8a\xfb\x55\x31\x47\x08\x17\x07\x32\xfe\xa4\xfc\xd9\x38\xf6\xcd\x73\x44\x1a\xd9\xe6\x13\x18\xfd\xe4\xdd\x0b\xec\x6e\x13\xa2\x8f\xcf\x18\x5d\x7d\x6a\x19\xe1\xba\xc2\xf2\x99\xa6\xf2\xdc\x04\x8f\xe7\xfb\x93\x9f\x6c\x4c\x27\xdc\xd8\xbe\x83\x99\x32\x06\x17\xef\xf4\xb9\xe9\xd1\x75\x0c\x56\x09\xed\xd8\xba\xf8\x87\x19\x61\x68\x60\xf9\x27\x3a\xb7\x84\xb0\x60\x9f\x86\x53\xdd\xca\x15\x84\x79\x66\xce\x67\xd4\xca\x8c\x08\x73\xb6\xee\x8a\xfb\xbc\x20\x9c\x50\xcc\x39\x4d\xf2\xde\xda\x70\xc2\xde\xe1\x60\x93\xd3\x3c\x81\x84\xd7\xcf\xa6\xba\x94\x45\x1e\x21\x58\xdf\xcf\x4c\x9a\xaa\x5c\x42\x08\x3b\xe1\xd8\x7b\xb9\xbc\x99\xb0\x7a\xc4\x54\x34\xcc\x29\x95\xc0\xbb\xdb\x20\x21\x5a\x34\x9b\x10\x94\x65\xd6\x5c\xa4\x15\xce\x86\x89\xef\x15\xc5\x65\x3d\x38\xd8\x90\x11\x65\xab\xaf\x74\x6a\x80\x41\xc9\x3d\xa1\xdb\x9b\x4e\x5e\x24\x8c\x38\x3c\xf2\x1b\xe5\xd0\x24\x48\xe7\xcc\xb6\x98\xf5\x52\x94\x30\x4b\xf3\xb7\x78\xed\xa9\xc3\x6c\xb8\x99\xa7\xbc\xf8\x5a\xfd\x0c\x42\xe2\xb5\xbe\xde\xe5\x31\xbc\x84\xbf\x3a\xee\x5b\xc2\xe5\x73\x08\x9f\xc4\xf6\x4f\xdc\xcd\x53\x4c\x10\x1e\x91\xd5\xd8\xa6\x1e\xc5\xc2\x4c\xd5\xc2\xb2\x5d\xb7\x84\x09\x45\x61\x69\x50\x95\xba\x42\x28\x9a\xa4\x94\x73\xb5\xff\x2f\x33\x8e\x23\xbc\x76\x07\x53\x6a\x26\xd1\x38\xa4\x7e\x4d\xe8\x0d\x08\x2c\x61\x21\xfa\x04\xab\x6a\x51\x48\x1a\xc1\xf3\x86\x42\x79\x0e\xcf\x2a\xc2\xd3\x0a\x49\x13\x19\x05\x3e\xc2\xec\x0b\xbc\x5f\xe6\xe6\xad\x20\x48\xf5\xb4\x07\x3c\xaf\xb3\x26\x88\xdb\xcd\x8c\x9f\x24\xb5\x88\x10\x7c\xb4\xbc\xcb\x31\x8b\x83\x60\x77\x47\x69\x62\xe7\xf0\x04\x02\xff\xe4\xbc\x07\xb7\xaf\xc7\xb1\x41\xe0\xdc\x5c\x0e\x3f\xf5\x49\x84\x35\x6b\xff\x7a\x1c\x92\xb9\x4b\x70\xe8\x79\x2a\x10\x74\x51\x9d\x50\x30\xf9\xc5\xd4\xfc\x84\x39\x84\xc6\x6b\xef\x77\x99\x88\x8c\x32\xe0\x64\x09\x29\xf3\x2e\x32\x23\x98\x4c\x96\x48\x56\xec\x74\x62\xc3\xdd\x6e\xaf\x69\x1a\x0e\x8a\x84\x3f\xf9\x8f\x9f\xfa\x72\xce\x27\xe0\xef\xb7\x98\xe6\x6a\x01\x82\xea\x22\xc7\x7d\x9d\x8b\x3f\x30\x38\x2b\x7c\x37\xb9\x24\xb5\x93\x05\x0d\x9e\x25\xf9\x67\x9a\xb2\x08\xe9\xe7\x7b\x7b\xff\x70\x5f\x20\xf4\x3b\x26\x77\xfe\xc9\x48\x67\xc3\xf3\x47\xa2\xc5\x07\x8c\x7c\x08\x56\x02\x7e\x25\x9f\x53\xdf\x32\x88\xcb\x5c\xb7\x43\xbf\x6b\x3b\x5b\xf9\x1f\xf6\xc6\x9a\x9c\x7f\xfb\xc8\x95\xa0\xd4\xe9\x18\xf0\xf6\x73\x38\xe1\xc1\x2c\xd7\xfc\xf0\xd3\x2e\x84\x84\xc4\x63\xc1\x29\xf9\x6b\x08\xaf\xd3\x77\xec\x7b\xbc\x59\x8f\xb0\x92\x4b\x3d\xf1\x35\xaf\x3d\xe1\xd6\xfa\xa6\x62\xfb\xa8\x76\xc2\xcd\x8f\xb7\xcb\x0d\x7c\x5a\x08\x53\x56\x9c\x72\xbd\xb7\xe6\x33\xe1\x78\xca\x2d\xaf\x90\xdd\x0f\x09\x0a\x43\xfb\xfa\x2f\xdc\xcd\x63\xc1\x4e\xed\xd0\xe0\x02\xbf\x41\x06\xb2\x2f\xd6\xbf\xfa\x7b\x40\x84\x70\x2e\xda\x77\xdf\x9e\x8c\x11\x06\x93\xfa\xbc\x2e\xce\xb8\xf3\x8d\x41\xd3\x62\xe5\x95\x5e\x95\x1a\x34\x8e\x15\x1f\x6c\xea\xde\xe9\x0c\x30\xd0\x72\xee\xe7\xff\x6c\xd7\xc1\xe0\xb4\xe6\xd2\x66\xf5\xaf\x82\x04\xe1\x90\xad\x23\xde\xbb\x2a\x09\x97\xc4\x25\x57\x2b\x78\xac\x24\x38\xbb\x65\x5b\x46\x0d\xf8\x11\xd2\x79\xe4\xed\x8a\x03\x0a\x08\x57\xbd\x3b\x1f\x7d\x16\xcd\x25\xa4\x05\xbb\x14\xf5\xea\xb9\xb3\xe1\xf8\xd0\x91\x94\xce\x72\xb7\xff\x5a\xba\x1f\x2d\xf3\xe9\xe5\x9d\xfd\x04\x6e\x8d\x6d\xd7\x03\xc7\xf0\xbf\xb2\xd5\x8a\xbf\xe1\x1f\x86\x77\x5c\x29\x52\xf6\x11\x26\x38\x47\x37\xe4\x88\x6d\xe5\x26\x64\xc3\x66\xe2\x1b\x19\x21\x42\xd4\xe6\x03\x56\x0e\xdb\x35\xd9\x20\x6e\x9c\x7e\xb0\x77\x27\x2f\x81\x3f\x39\x83\xf3\xea\xe7\x3e\x06\x19\xdd\x53\x82\xac\x4f\xc8\x11\x78\x69\xb3\x90\x52\xea\x28\x83\xe8\x21\x25\xbe\x15\x9f\xcd\x08\x19\xbd\x8d\xfb\x0e\x4e\xb6\x20\x9c\x7d\xff\x43\xec\xe1\x44\x2d\xc2\xfd\x4d\xf9\xda\x6f\xb2\x8c\x08\xeb\x44\x6b\x7f\x84\x98\xff\x62\xe0\x11\x95\xec\x63\xb1\xde\x90\xf0\xeb\xf1\x23\xe5\xf2\x79\xea\x84\x35\x43\x47\x5f\x7d\x92\xf1\x24\x24\x0d\x4d\x54\xbe\x76\x67\x07\x61\x39\x37\xef\x90\xe5\xaa\x15\x84\xa9\x3a\xe1\x02\xbe\x8d\x47\x09\x6e\xc7\x9d\x55\x72\xc2\xe4\x08\xdf\x53\xb6\x7f\xb1\xd0\xf3\x22\x68\xba\xeb\x5d\x4b\x1b\x9b\x05\x5a\x66\x9a\xc9\x1a\x3d\x8c\x21\xf0\x4e\x9f\x72\x4e\xba\xfd\x32\x21\xae\xb3\xe7\x89\xc0\xba\x48\xc2\x5d\x0e\xb9\x8d\x09\xfe\xd2\x84\x5b\x1c\x9e\xb6\xfc\x97\x4d\x08\x96\x4e\x75\x57\xde\xd5\x0f\x30\x28\x9c\xb5\xe1\x9c\xc1\x22\x51\x1a\x47\x65\xa3\x7d\x73\x8a\x6e\x0f\x03\xef\xe7\xfb\xba\x5b\x9b\xd3\x59\x58\xe0\x69\xec\xbb\x48\xa5\x91\xf0\x7c\xd3\x33\xc5\x8d\xb2\xbd\x0c\xe6\x89\xc4\xb7\x1a\x57\x4e\xa3\x71\xe4\x77\xc6\xf1\xe8\x4d\x12\x25\xb8\xbd\x38\x2b\x6b\xfe\xa8\x8e\x41\x94\x91\xc4\x32\x9f\x59\x7c\x34\x0e\x67\xa3\x9f\x5f\x43\x2f\x8a\x13\x9a\x97\xb1\xdc\x3e\x24\xf0\x10\xf2\x82\x03\x04\xde\x5e\x54\x26\x88\x24\x72\x25\x33\xfa\x56\x6c\xa5\xdc\x78\xba\xba\x51\x85\x27\xa1\x4c\x2e\x25\xb8\x71\xc4\x93\xad\x08\x3d\xca\xbb\x69\xff\xba\x98\xd0\xec\xd8\xd2\xf2\x0f\x62\x29\x6f\x67\xf7\xe8\x72\x13\x22\x67\x19\x7e\x96\x74\x5d\x4e\xd0\x2c\xfe\x23\x76\xef\xe9\x49\x16\x4e\x7e\xf9\x35\x30\xad\x86\x21\x9c\xbc\xc0\xdc\x0b\x8a\x37\x20\x74\xe6\x4a\xc5\x64\xfd\xd2\x26\x84\xe1\xab\xe1\xcc\xc3\xfa\x6c\xe5\xd8\x1e\xeb\xe4\x23\x38\xc2\x42\xca\x0d\x4e\x19\xcf\x16\x22\x3c\x8e\x5e\x33\x9b\x71\xb4\x26\xc8\x43\xcc\xef\xe3\x40\x05\xe1\xc7\x29\x93\xac\x7f\x88\x13\xea\x5e\xf4\x61\x0c\x41\xa4\x16\xf5\xaf\x70\x3b\xf5\x94\xf4\x71\xfa\xb0\xe1\xfd\x94\x7b\x77\xe5\x7b\x62\xfe\x6b\x69\xcb\x1a\xc9\x9a\x6f\x2b\xbc\xff\xdf\x30\xe4\x63\xdf\xf0\x6d\xce\x3a\xc2\xc1\xf8\x1b\x56\xdb\xb4\x13\x09\x1f\x6c\x0e\x31\xde\x63\x1b\x51\xaa\xdf\xfe\xc8\x59\x2b\xca\x08\x82\x2f\x79\x0a\x3b\x67\xc9\x10\xaa\xec\x8f\x84\xdf\xfd\x29\x47\x10\xaf\x0b\x29\xdc\xfb\x5d\x87\x30\x32\x67\xce\xd0\x8d\x7b\x93\x09\x75\x4a\x1c\xb7\xf4\x0a\x74\x09\xef\x72\x5d\x77\x98\x2d\xfd\xc3\x00\x5d\x7d\x7a\x25\xa3\x2a\x34\x8e\xce\x58\x9f\xbf\x13\xec\xee\x31\x50\xd9\x77\xf4\xac\xbe\xca\x7c\xc2\xd7\x98\x10\xe5\xca\xc0\xd5\x84\xb8\xa5\x69\x57\x2d\x39\x5c\x08\xdb\x5b\x22\xc4\x3a\x0e\xae\x26\xd8\xe9\x4b\xbd\x37\x9d\x1a\x49\x30\xe4\xba\xba\xf5\xfc\xd1\xc3\x84\xce\x80\xfb\xe9\x0b\xbb\x9c\xfe\xaf\x78\x60\x23\x54\x7b\x6e\xbb\x1f\x1b\xf4\x8d\x6e\xb9\x3e\xe1\xde\xfb\xff\x57\xfc\x09\x3b\x4c\x94\x3f\x18\x38\xc8\x12\xbe\xd4\x38\x87\x7b\xea\x72\x12\xce\xc0\xbe\x57\x30\x64\x22\x21\x3d\xb0\x2f\xfc\xba\x8a\x3b\x1b\xba\x7c\x7a\x33\xf7\xfa\x39\x12\x7c\xed\xfa\xc5\x4c\x3c\x87\x19\xbc\x3c\x24\x55\x64\x56\x21\x43\xe3\x80\xdd\xc7\x9c\x6b\x79\x85\x84\x45\x46\xf7\xd6\xbc\x5c\x98\xc7\x56\xf6\xe6\xc5\xcd\xfe\x57\x6e\xad\x78\xee\xe7\xb6\xd6\xfd\xbf\x30\x28\xa7\x12\x34\xac\x66\xff\x5f\x4b\x8e\x0e\x03\x1d\x1f\xfe\x7f\x8c\xf7\x79\x34\x56\x7f\xf8\xf7\x7f\x97\x0c\x29\x89\x22\x63\x21\x89\x4a\x24\x85\xc2\x3e\x8a\x4a\x21\x53\xa3\x52\x19\x32\x34\x1a\x42\xa5\xc8\x58\x64\x48\xc6\x0c\x49\x83\xb1\x01\x99\x1b\x9c\xa6\x68\xa2\x41\x52\x22\x2a\x42\xa5\xc8\xf4\x52\xca\xbd\x7c\xd6\xba\xbf\xce\x6b\x5d\xfd\xbe\xeb\xfa\xef\xb1\x9e\xef\xbd\xac\x93\x73\x3b\xf6\xb1\x5f\x7b\x12\xaa\xb5\x93\x43\xff\x3f\x20\x16\x2b\x74\xfe\xe0\x0d\x5e\x82\x82\xee\xca\x98\x33\xfc\xb2\x84\x66\xad\xae\xc7\xb7\x1f\xaa\x11\xa4\x48\x60\x28\x6a\x26\x8b\xc1\x95\x4b\x5c\xc9\xc6\xe7\x67\x11\xf6\x7e\x8f\x99\xc6\xed\x22\x4a\x68\x7b\x78\xd3\x85\x77\xc7\xd8\xd3\x5c\xbe\x6a\x56\xe3\x0b\x13\x82\x47\xfc\xbd\xdd\x91\xeb\x1a\x18\x4c\xdf\x39\x2a\x75\x4f\x7f\x84\x0d\x7b\x83\xab\x15\x9d\xd7\x4c\x26\xfc\xcd\x35\x51\xec\xb6\x5d\x41\x98\x61\xc8\x93\x35\x27\x33\x92\x0d\xa6\x01\x0b\x8b\xdb\xd6\x9f\x26\x4c\x3b\x53\xaf\x1e\xb1\xde\x84\x85\x6b\x5f\xa4\xbd\x47\xce\x49\xd3\x38\x0e\xca\x0e\x9b\x65\xa8\x6e\x22\x70\x4b\x1c\x28\xd6\xbb\x27\x4a\xc3\xcb\xdd\x3e\x24\xf3\x7f\x63\xb0\xbb\xe7\xf4\xd9\xcc\x60\x31\x1a\x07\x5f\x5e\x32\x6f\x98\x9e\x2c\x61\x45\x4b\xa2\xdd\xf3\xd6\x05\x84\x95\x59\xd7\x7d\x65\xe7\xf5\x32\xb8\xff\x7c\xf6\x6c\xeb\xfe\x75\x34\x8e\x87\x7c\xa3\x1c\x2f\x3f\x54\x33\xc8\x32\xdd\x65\xe7\x31\xbc\x99\x60\x7a\xfe\xcc\xe9\xc0\x0f\xd3\x08\x8f\x8a\x3f\x5d\x1a\x29\xd1\x66\x43\xa3\xc1\xcc\xb6\xf5\xe6\xd2\x6c\x18\x6e\x0a\x0a\xf6\xcd\x8c\x20\x14\x45\xde\x4c\x52\xcc\x77\x66\x83\x53\x69\x89\x8a\xae\x96\x17\x41\xaf\x64\x2f\xa3\xfc\xcc\x85\x20\x71\x21\x7e\xde\x54\x1b\xf6\xa3\xa8\x79\xe1\xc9\xff\x0d\x7e\xc7\x51\x8d\xf3\x2b\x2b\x02\x09\xd3\x07\x47\xb6\xbc\x3d\x97\x5a\x82\xe9\x26\xf3\x1a\xec\x38\x6f\x11\xa4\x5e\xac\x3d\x1c\x4e\xc9\x04\x69\xa5\x9d\x92\x43\xdd\x37\x09\x6b\xcb\x86\xd3\xff\x3b\xaa\xbc\xbc\xbf\x32\xe2\xb8\x33\x21\xbb\x38\x93\xa3\xc9\x22\x99\x70\x89\xde\xaf\x1d\x1a\x5c\x4d\x38\x24\x3e\x3d\x64\x0e\xc7\x66\x36\xd8\xed\x7c\x2b\xdc\x3f\x59\x88\x70\xd4\xe5\x92\x59\x86\x55\x0a\x0b\xae\x24\x58\x70\xf7\xab\x15\x81\xff\x61\xed\x1e\xb5\xd7\x13\x08\x61\x92\xdc\xab\x51\xb0\x86\xd0\xf2\xf2\x49\x50\x4f\xb9\x2b\x1b\x8a\x1c\x5f\x0b\xdb\x37\x09\x11\xea\x3e\x6e\x79\x7b\x63\x63\x32\xa1\xab\x69\xfa\x9e\x6e\x11\x61\x42\x55\xec\x65\xbb\xec\x4f\x53\xd8\x60\x7e\x68\xc9\xa5\x0d\x17\x39\x08\xa9\xb3\xbb\x9d\x26\x98\xf7\x31\xa8\x2a\xf6\x38\xeb\x20\x39\x87\xb0\xe6\x64\x8f\x50\xf1\xf2\x66\x16\xb6\x9d\xea\xf2\xbc\x97\x22\x40\xd8\x19\x1b\xa5\xe5\x67\xca\x4f\xd8\x12\x65\x7b\x5e\xf7\x93\x24\xe1\x95\xf5\x86\x59\xca\xbf\x47\x18\x5c\x4f\x75\x58\xf2\x97\xe5\x4a\xe3\xb0\xda\x36\xe4\x55\xee\x3b\x8f\x30\x6f\xeb\xd7\x27\x9f\x9b\x7b\x19\x24\xe8\xe6\xd6\xdd\xd0\xe0\x24\x58\x9c\x1a\xf8\xe4\xd1\x20\x40\x18\x10\x8e\xb4\x1e\xf5\x7e\xcf\x8c\xe3\x91\x88\xc4\xb6\xa3\xa7\x19\x82\x86\x4d\x80\x95\xff\x62\x21\x36\xe4\xc8\x3e\x0b\x2e\x18\xdb\xe2\x0b\xb7\x48\x1c\x37\x58\xbb\x90\x30\x63\xdf\xd7\x58\x2f\xd9\xa3\x6c\x88\x15\xb0\x77\x98\xbf\x51\x80\x70\xfd\x53\x52\xeb\x84\x02\x1e\xc2\xaf\xe7\x07\x64\x0c\xac\x27\x13\xdc\x64\x42\xe3\x35\x45\x38\x08\xeb\x56\xa6\x48\x7f\x8e\x9a\x4e\x48\x0f\x3f\xc4\x6c\x26\x59\x82\x10\x87\x5f\x98\xd6\xf4\xd9\x84\x9b\xc6\x55\xe6\x3f\x97\xe8\xb0\xe1\xf1\x1d\x07\x59\x0f\xd6\x0a\x42\xfd\xc5\x92\x3f\xa6\xaf\xe2\x59\x78\x6f\x14\xe6\xf5\xd8\xed\x75\x09\xb8\x5c\x44\x26\x3f\xd3\x5e\x4a\xe3\xf8\x74\x80\x4f\xf3\x99\xff\x6a\x02\x37\xc7\x74\x25\xee\x1b\x76\x04\xce\xb7\x65\x2d\x6b\x34\xbb\x19\x24\xbe\x3c\xe0\x3f\xc7\x41\x92\x10\xa3\xe4\x67\xb8\x6c\x72\x18\x1b\x46\x7c\xf6\x8b\x9b\xbf\xf0\x21\x3c\xd0\xdf\xfa\x72\x42\xff\x32\x82\xbd\x69\x53\xbe\xb6\xb9\x0e\x0b\x7b\xe3\xb9\x9c\xad\x97\x3c\x67\x61\xd5\xbd\xaf\x45\xae\x17\x5d\x08\x16\x7e\xd1\xbd\x7c\xdd\x7b\x08\x5f\x94\x5f\xef\x59\x14\x6d\x45\x68\x75\xd9\xdd\x9e\xad\x3e\x83\xd0\x39\xad\x7b\xce\xc5\x1b\xad\x0c\xb2\x12\xcb\x76\x31\xfb\x05\x69\x1c\xea\x11\x5b\x25\x3a\x03\x8a\x19\xd4\x95\xf3\x94\xcc\x8f\x9a\x40\x90\x9b\xb5\x7a\xf9\xcc\xd3\xb3\xd9\xf0\xfc\x70\xe3\xa6\x7a\xde\x44\x36\xf0\xf8\x28\xf2\xcd\x75\x8f\x22\xa8\x1c\x2e\x8d\xd4\xe1\x8d\x26\x88\xf3\x3e\xdb\x16\x55\xaf\x41\x38\x9c\x6c\x67\xd3\x2c\xd6\xc1\x40\xeb\x60\x55\xa4\xbc\x0e\x8b\x70\x40\x8f\x83\xf5\xc4\x45\x86\x86\x7b\x3b\x33\x0e\x28\x29\x10\x16\x37\x1c\x7a\xb8\xd4\xd8\x8f\xf0\xf1\xc4\x27\xee\xe8\x1d\xba\x84\xb7\x66\x2a\xf7\x58\x37\x35\x08\x61\x39\xc5\xee\x33\x6e\x4d\x22\x3c\xe9\x9a\x39\xbd\x7d\xd0\x94\x20\xee\xc2\x1b\xf8\xa1\xf5\x03\x03\xff\x8b\x93\xee\x0a\x8a\xef\xa5\x71\xf0\x76\x96\xaf\xce\x70\xb9\x4d\xd0\x2c\x93\xbf\x73\xe8\x7b\x22\x41\x6b\x63\xae\x8b\xd7\xb1\x83\x04\xa7\xf2\xa1\x53\x97\x62\x8e\x10\x56\x05\xce\xcd\x5f\x17\x75\x84\xd0\xff\x3b\x35\x61\x25\xdf\x01\x82\x73\xa5\x47\xc5\xb2\x6f\x81\x84\x85\xba\xcc\x91\x37\x6b\xaf\xb2\x15\x33\xf7\x81\xeb\x62\x72\x2b\x08\xea\xb6\x0d\x8e\x6e\x5f\x6e\x13\xca\x7e\xeb\xc4\xf5\x4e\x2c\x24\xb4\x34\x4e\xb9\x5f\x6e\xbd\x85\xd0\xbe\xc5\x5d\x88\xeb\xa9\x25\x81\x8b\xff\x5a\xa6\x6d\xe3\x20\x33\x8e\x3a\x3e\xe9\x5d\x1f\xc7\x96\x9e\x8d\x10\x29\xd5\xeb\x2b\x23\x28\xe6\xae\x9e\x37\xe1\xee\x32\xc2\x9d\xf7\x77\x9f\x3e\x4e\x34\x25\x88\xb8\x45\x7b\x87\x35\x58\x11\xc2\xbb\x6e\x56\x49\x57\xf7\x31\x50\x54\xd2\x69\x9b\xb4\xb8\x88\x30\x78\xef\xe0\x0c\xce\x31\xfc\xdf\xe5\x7f\xf0\x4a\x30\xed\xee\x21\xd9\x43\xff\x6f\x18\xc9\xaf\x1f\x91\x7f\xe2\x4a\xd8\xbf\xe7\x95\xe6\x69\x4f\x43\xd6\x78\x31\xe2\x8a\x7e\x23\x27\x63\xc7\x76\xcd\x82\xce\xab\x5e\xb5\x2b\xb4\x09\xd6\xdf\x32\xea\x7f\xa8\x8b\x12\xc4\x7b\xf8\xfc\xbf\x5f\x35\x20\xa4\xbd\x2a\x8b\x8e\x13\x56\x22\xc4\x7c\xe2\x4e\x19\xf9\xe2\x47\x38\x9c\x92\xe9\x73\xdd\xc3\x9b\x80\x55\xfb\x34\x66\xd6\x7b\x13\x02\xac\x98\xc1\x1a\xb9\x55\x84\xb7\xae\x0d\xdf\x86\x1f\x31\x84\xfa\x5d\xbb\x7b\xbb\xd6\xda\xb0\xc1\x2a\xad\xce\xb6\x7f\x58\x88\xd0\xb8\x94\x53\x52\xd3\xab\x94\xd0\x39\x3d\xed\xf0\x92\x80\x1c\x42\x8d\x9a\xc2\xfb\xd2\x8d\x6f\x18\xc8\x7d\x76\xe2\x79\xfa\x68\x84\x81\x8b\xfd\x83\x79\x4e\x21\x96\x84\x5b\x43\xc1\xc2\x36\x4e\xab\x09\xae\x17\x06\x5a\xf4\x9d\xdc\xd9\xf0\xf4\x71\xbd\x4c\xc5\x5c\x2b\x82\x7c\xb1\x41\x6f\xd9\xcf\xd9\x84\x3d\x7b\xe2\xe2\xac\x6e\x2a\x12\xe2\xcb\x92\x45\xfd\x37\x88\x10\xec\x58\x1b\x5e\xc7\xa4\x4e\x23\xc4\x05\x07\x3a\x2b\x4a\x2e\x66\xc3\xc0\xcd\x18\xae\x80\x1d\x1c\x84\x9c\x75\x4b\x7f\x2c\x68\x37\x21\x04\xfa\x38\xe5\xfd\x37\x3b\x97\x6a\xbf\x08\xd1\xdf\x9a\x47\x58\x02\x95\xa1\x8d\x87\x4b\x58\x88\xf5\xff\x7c\xf5\xbf\xf2\xa9\xd3\xb9\x3c\xda\xc9\x8d\x50\xf7\xfd\x51\xe3\x94\x9f\xeb\x09\x3f\xf7\xcb\xd9\x9f\xbc\x90\xc5\x86\x33\x81\x1e\x15\xff\xc1\x94\x46\xbd\xb6\x72\x38\xff\xaf\x68\x8c\x5a\xd6\xf8\x7c\x6c\x59\x39\xde\xfd\x78\xfa\x0e\xb3\x21\x06\x7f\x2e\x57\xa0\x25\x63\x1e\xe1\x71\x81\x5c\xe5\x4f\xab\x93\x04\x9d\xee\x5f\x21\xf9\x7c\xd2\x04\xbb\x7b\xef\x76\x9c\x59\x33\x81\x60\x71\xb5\x16\xe2\x3c\x83\x0c\x2a\x63\x38\x5f\x6c\x35\xea\x61\x30\xf5\x88\x83\x84\xfe\xd8\x83\xbf\xc1\x20\xf8\xda\x82\x69\xbd\x0c\x4e\xce\x2d\x97\x92\xe7\xba\x4b\xe3\xe0\x1f\xad\x89\xf8\x6a\x98\x4b\xe0\xbd\x2a\xf4\x7c\xd1\x58\xf9\x78\xe2\xf6\xe1\xfb\xd2\x61\x84\x70\xd7\xca\x0d\x25\xae\x29\x84\xc4\x8d\x2d\xd3\xac\x92\xae\xfd\xaf\x78\xd1\x7d\x37\x21\x8f\xd3\x87\x20\x14\xf8\xfd\x69\x40\x8e\x24\xa1\x68\x93\xaf\x8e\x29\xbf\x09\xe1\xfb\xa6\xb7\xfd\x7d\x5d\x3b\x08\xef\xf6\xa9\x1d\xb9\x12\xb0\x84\x50\x3c\x6d\x45\xb0\x9c\xea\x64\x42\x28\xac\x44\x85\x92\x3e\x31\x88\xf7\x2c\x50\xdc\xf4\xe7\x01\x03\x95\x8b\xf6\x4e\xbb\x9a\xf8\x69\x1c\xcf\x6e\xed\x16\x7e\xb9\x8e\x9f\xf0\x32\x24\x63\xb2\x48\x0a\x37\x41\x6d\xa5\xad\xd5\x67\x09\x53\x36\xd8\xce\x35\x5f\xe4\x1f\xc9\x49\xf0\xa4\x07\x51\x1e\x02\x59\x84\x83\xed\xe6\xab\xb6\xa8\x9d\x27\xe4\xde\x7d\xd5\x6a\x2c\x29\x4c\x38\x50\x74\x6c\x73\xcf\xa7\xf4\x7f\xa1\x63\x7a\xb7\xb8\xf7\xee\x70\x42\x40\x89\x4e\x86\x56\x82\x2f\x61\x87\xa4\x4b\x40\x65\x5e\x15\x81\xd4\xd7\xbe\x8f\x4b\xa9\x22\xcc\x51\x70\x56\xc9\x50\x66\x11\xd4\xd7\x55\x1a\x3d\x95\x2e\x25\x38\xbc\xb9\xa1\xbd\x3d\x51\x87\x10\x6c\x78\xbb\x32\xe5\xd4\x64\x82\x46\x64\x82\xa6\x44\x85\x2e\x21\x89\x27\xe1\x03\xf3\xb0\x90\x05\x43\x7b\x46\x2d\xe8\x92\x0c\x21\xf7\x65\xf2\x9b\x2d\xe9\xc7\x08\x1c\x27\xa4\x87\xdb\x44\x05\x09\x1f\x6e\xd9\x6a\x57\x26\xad\x23\x48\x57\x4a\xe4\xae\x1d\xbb\x33\x57\xce\x56\xb4\x30\x52\xe2\x67\x83\xc0\x2e\xa7\x3b\xc9\x71\xbf\x19\xbc\x7a\xf2\xd3\xba\xce\x68\x36\x21\xa3\xbc\x3a\xba\x55\x43\x92\x0d\x67\x27\xb5\xe9\xbc\x5c\x17\x5e\x02\xef\xa2\x03\xeb\x42\xe4\xb8\x08\xfd\xb2\x4e\x42\xea\xfa\xaa\x84\x06\xf3\x8d\x0d\xf2\xea\xeb\x09\x43\xdb\x5c\x52\x74\x5c\xd6\x13\xd6\xb7\xce\xd9\x17\xfe\x72\x3e\xc1\xa2\xea\xde\x35\xbe\x02\x33\x42\xc2\x1a\x3b\x56\x92\x49\x04\x0b\x07\x9e\x36\x8b\x8e\x36\x9b\x11\x8e\x64\xce\xcf\x7e\x99\xbc\x85\x0d\xbe\xd5\x82\x7b\xee\x05\x99\xb0\xf0\x63\x4f\xb8\x03\xbf\xae\x14\x61\x61\xc5\x5c\x17\xe7\x80\x3f\x0c\x24\x7d\x43\x03\xdb\xe7\x9e\x24\x08\x3c\x28\xcf\x6e\x08\x2d\x63\x41\xee\x7b\xa6\xee\xc8\x71\x15\x82\x80\x9d\xd5\x23\xdd\x84\xc3\x04\x91\xeb\x6b\x5a\xcd\x96\x2b\x11\x54\xe2\x5e\x33\x86\x86\xa6\x04\x2e\xc3\x0f\x3f\xb4\xb9\x16\x13\xa6\xb8\x96\x59\x3e\x90\x12\x25\xfc\x9d\x5a\x75\x57\xf5\x51\x01\xc1\x51\xf3\xbe\xed\xc1\x6d\x2b\x08\x0b\x44\x39\xe4\x86\x84\x64\x09\x6b\x46\x16\x75\x5f\xc8\x93\x22\x9c\xc9\x39\xfb\x46\x57\x5e\x95\xb0\xea\x54\xff\x81\xf7\x43\x5a\x84\x61\x8b\xd1\x24\x08\x73\x13\x0e\xf7\x85\xb4\x4a\x07\xe9\xfd\x0b\x52\x8e\x0a\xf1\x13\x3a\x67\xfc\x0b\xa3\xfa\x9c\x83\x87\xdb\xb3\x18\x6c\xba\x57\xd0\x31\xe8\x5f\x41\xc8\x70\xe0\x8b\x8f\x39\x3e\x87\xa0\xb6\xfe\x60\x45\xd6\x83\x83\x84\xd5\x3a\x99\xb2\xb3\x27\x4d\x23\x28\xdb\xf4\x74\xe4\x29\x34\x30\x50\xdf\xe7\x13\x29\x3e\x45\x94\xc6\x71\x5d\x4e\x3a\xda\xa7\xff\x35\x83\xa9\xbc\xb3\x62\x22\x1f\x48\x11\x0a\xaf\x5e\x7d\x90\x93\xae\x4b\x90\xd9\xd5\xab\x64\x34\x22\x49\xa8\x7c\x11\x55\x97\x77\x70\x3a\xc1\x4d\x3a\x9e\xf7\xfe\x13\x3e\x82\x77\x96\x69\xf4\xc7\x33\x8b\x08\x3b\xe6\xdf\xf1\xd2\x5a\xa4\x4a\xe0\x6b\xee\x1b\xc9\x70\xd3\x25\xdc\xac\x38\x7a\xec\x48\xb2\x3c\x21\x48\x68\xdb\xa9\xb5\x4b\xa4\x09\x27\x74\x6c\xe5\x3e\x73\x85\x10\xce\x8a\x5d\x2f\x9e\x13\x78\x9c\xad\x0c\x07\xda\x67\xd4\x3c\xf4\x26\xac\x76\xe0\xaf\xdf\x5a\xbd\x86\x90\xf3\xe4\xe0\x67\xb7\x09\x3b\x09\xca\x6d\x9e\xb7\x47\x8e\xec\x23\xfc\x5e\xbe\x28\xe5\xbe\xb5\x16\xc1\xf4\xe9\xc3\xc4\xa9\xc2\x56\x04\x93\xc7\xa3\x1e\xf2\xc5\xef\x4b\xc0\xa5\x5d\xe4\x6f\xa9\xf3\x97\x19\x47\x04\x87\xcc\x09\x19\x85\x61\x06\x0d\x9f\x3c\x3c\x7b\xef\x74\x31\x38\xfd\xfb\xc6\x70\x66\x39\x11\x44\x3f\x07\x2b\xd5\xf8\x0e\x33\xd8\xb5\x68\x4b\xea\x9d\xd3\xf2\x84\xa3\x72\x36\x73\x25\xe3\x2a\x19\x5c\xe2\x4e\xd4\x59\xa9\x32\x89\xc6\x71\x56\x5e\x7b\x01\x47\x11\x37\xc1\xa1\xbc\xaa\x2c\xec\xea\x75\xc2\xd2\x07\x7d\x82\x0f\xa5\xcd\x08\x1b\xbf\x75\xe7\xce\xd5\x37\x67\xc1\xe4\xc5\xf2\x47\xc7\x46\xca\x08\xd3\x7d\xee\x1f\x3d\xf8\x6c\x02\xe1\x8c\xe5\xb9\x0e\xc5\xb5\x66\x84\xd9\x0b\xb6\xf8\x33\xd3\xae\xb0\x20\x64\x19\x7a\x4f\x79\x62\x07\x03\xf3\x1c\xfd\xd9\x56\x8e\xb3\x69\x1c\x85\x33\xe6\xf6\xed\x9c\xdd\xc5\xe0\xde\x1a\xaf\x3f\x55\x2d\x53\x08\x33\x5e\x36\x2b\x1e\xde\x25\x4e\xb0\x7f\xdf\x3d\x75\x76\xe2\x23\xc2\x30\xe7\x1a\x1b\xeb\xb7\x1b\x08\x82\xd3\xa4\x59\x99\x2a\x77\x08\x11\x2d\xe6\x25\xdb\x0c\xc5\x09\x23\x9e\xd7\xb8\xef\x29\x7a\xff\x13\x5a\x6f\xec\x2f\xb9\x16\x10\x9e\xda\x5d\x98\xfb\x1f\xec\xa5\xfc\xa6\xfe\x07\x95\x77\x21\x57\xcd\x5d\x06\x19\xb8\x7d\xbd\xdb\x1a\xd8\xed\xcb\x42\xcf\xd3\xdf\xd9\xf1\xa1\x4b\x08\xeb\xbf\x2d\x51\x69\x2c\xbe\xc2\x56\x8e\x2d\xe0\x39\xb1\x58\x67\x09\x41\x78\x46\xa0\x78\xd6\xc7\x17\x0c\xfe\x52\xc1\xea\xf9\x1c\x01\x04\xa7\x37\x93\x6d\x6f\x21\x88\xe0\x1b\xd8\xdf\x52\xdb\xc1\x45\xe0\xef\x53\x59\xd2\xa4\xe6\xcd\x86\xc1\x2d\xb3\x7f\x6f\x49\x8f\x26\xcc\x61\x49\x9f\xd8\xf1\x59\x99\x60\xef\xf8\x63\x30\xc4\x6a\x0d\x61\xb1\x87\x95\x54\x9f\xe6\x0c\x42\xc6\x5a\xad\x44\xf7\xba\x7e\x06\xaf\x33\x8e\x5a\x7a\xc8\xa9\xd1\x38\x02\x1c\x61\xa3\x3c\x7f\x98\x41\x82\x91\x3b\xef\x4e\x95\x59\x84\xa8\x4f\x0a\x2b\x8d\x17\x17\x12\x1e\x3d\xb6\x37\xe9\xe5\x2e\x60\x81\xc5\x72\xd5\x94\xda\x55\xc8\x76\xa4\x93\xb3\x3e\xf8\x48\xc3\x34\xc2\xe3\xaf\x2b\x5a\xea\xa6\x70\x13\x16\xd5\xbc\x73\x37\xd2\xea\x64\x10\x50\x58\x60\x65\x31\xd3\x89\xfe\x81\xe5\x2b\xca\x23\x1e\xe7\x2e\x61\x43\xfa\x9c\x19\xbe\xe9\xfb\xde\x31\x78\x3b\x70\x4e\xc6\x4c\xfd\x30\x8d\xe3\xcd\x12\xc3\xa8\x9c\x45\x31\x6c\xa5\x96\x39\xf4\x72\xd0\xca\xfa\x5f\xd8\x9d\x7a\xbe\x2c\xc6\x54\x95\x90\x56\x99\xca\x17\xb1\x7b\x19\xe1\xc8\xfa\xb6\xf5\x21\x82\xe1\x84\x47\xef\x0f\x04\xbe\xdd\xee\x44\xb0\x9a\x4e\x92\xa5\x26\xcb\x08\xdd\x8f\xbb\xff\xf8\x3e\xda\x4e\xe0\xb4\x0c\xa5\x20\x71\x15\xc2\x06\x51\x9e\xf5\xed\x7f\x45\x09\x3f\x74\x5e\xac\xd9\xab\xe4\xcb\x86\x61\xe1\x82\xd7\x0c\xd7\x2e\xc2\xbe\x01\x2f\x4f\x9e\xe9\x02\x84\x7b\x6b\x97\xc9\x1a\x4a\x6a\xb1\x61\xf9\xda\x8d\x0f\x3f\xda\xe8\x13\x14\xaa\xe2\x9d\x86\xa2\xce\x11\x3a\x38\xd4\x5d\x87\xb7\xa7\xb3\xa0\x9f\xfe\xb6\xd1\x76\xf9\x5a\x82\xea\xa1\x0e\xbb\x0f\x5f\x65\x09\xd1\x47\x4f\xce\x9c\xe2\x5c\xc6\xc2\x68\xae\x50\x4c\x76\x8c\x25\xc1\xef\xfa\x44\x0f\x49\xc1\xb1\x57\x99\x02\x53\x85\xc3\x69\x7e\x2c\x18\xf5\x54\x87\xdf\xb6\xda\x4e\x50\x98\xa2\xa8\xaa\xe6\xb1\x9b\xe0\x3c\xa4\x66\xa7\x74\xfe\x26\x81\x73\xb6\x78\xba\xce\xee\x42\xc2\xd5\x6b\x67\x5e\x73\xce\xca\x21\x1c\xac\xb9\xb0\x68\x90\x47\x80\x30\x29\x79\xc0\x65\xf0\xce\x10\x83\xc1\x01\xcb\x6b\xaf\x7e\x74\x31\xd8\xb0\x5d\xf0\xfe\x7c\x95\x08\x42\xfe\x05\x47\xff\x24\x47\x5d\xc2\xdf\x8a\xa2\x8d\x3c\x52\xf7\x18\x24\x2f\x0d\xf8\xf0\xb1\x64\x25\x21\x92\x44\x8a\x62\x44\x36\x11\xf6\xe7\x6f\xdb\x2f\x7c\xd6\x91\x0d\x81\x5c\x3c\x56\x8e\x8f\x04\x09\xfe\x1b\xad\xa5\x62\xd7\xae\x22\x3c\x49\x8a\xeb\x3b\xb3\x64\x15\x81\x75\x51\x40\xcb\xf0\x89\x00\x21\x65\x8b\xf9\x6d\xd9\x78\x21\x42\xb2\xe2\x09\x1f\xff\x85\x13\x08\x3a\xb2\x41\x5c\xad\x03\x7d\x0c\xf4\x22\x8e\x67\x1f\xdb\xb0\x99\x70\xa2\x6d\x5d\xb9\x7d\xc1\x27\x82\xe6\xdb\xd5\xb6\x73\xe5\x59\x84\x1b\xf7\xb5\x8c\x79\x77\xdb\x13\xcc\x42\x69\xc9\x9e\x28\x4e\x82\xc1\x0b\xd5\x59\xf1\xaa\x62\x84\x99\x93\xe3\xfa\xee\xa6\x6c\x66\x43\x76\x5e\xb4\xc5\xd5\x47\x42\x84\xed\x37\x7f\x69\x3f\x96\x5f\x43\xf8\x22\x52\xe2\x1c\x20\xaf\x40\xb8\xe4\xed\x2c\xa7\x6e\x23\x4f\x98\x74\x5b\x22\x27\x67\x95\x10\xa1\x39\x21\xc3\x78\xcf\x81\xa5\x04\xd3\x10\xdb\xf3\xae\x6f\x5e\x33\xb0\xd1\x9f\x5d\xc8\xdf\x26\x40\xf0\x8f\xdb\x70\xfd\x71\x49\x2f\x03\x1e\x9e\xce\xc6\xda\xda\x29\x04\x9f\xea\xa8\x9c\x7d\x9d\x75\x0c\x66\x38\xd8\x5a\x88\x6e\x6a\x65\x20\xa7\x54\x9b\xc1\xed\xb7\x86\x70\x68\x61\xf7\xe1\x87\xaa\x41\x6c\xe8\x9d\x3a\x3a\x92\xe4\x96\x46\x38\x1a\xaf\x55\xd2\xb0\x5f\x96\x30\xd7\x71\x45\x34\xa4\x8d\x08\x9c\x01\xcb\x47\xdf\xbb\xac\x22\xc8\x64\x7d\x34\x6c\x51\x4b\x23\xfc\xdc\xb7\x8e\x63\x9e\x55\x15\xe1\x46\xa5\x6b\xf0\xc5\xd6\xab\x04\x85\x77\x12\xaf\x64\xc7\x8a\xce\x67\x51\x83\x13\x67\x2c\x09\x9c\x35\xb3\xcf\xec\x3d\x73\x82\xb0\x43\xbe\xdb\x54\x88\xd7\x8a\x30\xbb\x53\xae\x46\x7a\xab\x37\x61\xca\x86\x28\x93\x1a\x8b\x3b\x84\xb4\x37\xcf\x03\xba\xf2\x2f\x13\xe4\x38\x66\x4d\xaf\x15\xab\x20\x4c\xcf\xdb\x94\x5e\xfe\xab\x8c\xb0\x28\x70\xd1\xfa\xf2\x49\x0a\x84\xa7\x47\xe7\xd9\xa9\x8c\x0d\xea\x9a\x77\xd6\x0d\xef\xb9\x3e\x33\xe3\x68\x12\xb1\xed\x95\x8b\xe4\x20\x4c\x14\xdd\x23\xdc\xa6\xa4\x4e\xb8\xb3\xf5\x84\xfa\xcc\x0f\xa3\x0c\x8a\x3f\x79\xed\x97\x93\x7f\x5f\x82\xaa\xf2\x8e\x38\xa7\xcc\x52\x16\x26\x8a\x6e\xfb\xfe\x5e\x32\x90\x70\x29\xf7\x9b\x5b\x01\x4b\x9e\x30\x62\xab\x78\xa0\x69\xfb\x0c\x82\xcd\xb3\xfe\x68\xf3\x09\xba\x04\x9f\x0a\xa3\x82\xcf\x9e\x1c\x84\xa8\x33\x7a\x7c\xb7\x9c\x85\x08\x06\x47\x0f\xdb\x3b\x4d\xe5\x24\x7c\x08\x09\x3c\xf4\xe3\x4a\x2e\x21\x63\x57\xf3\xda\x81\xc5\x1e\x84\xf8\xb5\xcb\x5f\x7f\xb3\x39\xc4\xc2\xb6\xd0\x8b\x6d\x3b\x26\xf8\xb2\x50\xcc\x7f\xbd\xcf\x21\xcc\x99\x85\xa0\x0a\xa9\xbd\x67\xf7\x1d\x25\x70\x2d\xaf\xd5\xac\xee\x2a\x21\x5c\x56\x66\xbd\xaf\x33\xce\x24\xcc\x97\x1a\xc9\xd3\xda\x7d\x89\x85\x45\x43\x5f\x16\x8a\x5b\x27\x13\x38\x9b\x84\xbf\xbf\x90\x6b\x63\xe1\xf3\x2f\xbe\x2e\xee\xc3\xc9\x84\xe4\x5b\x6f\x7f\xb0\x2e\xa8\x12\x58\xa2\x5c\xc1\x31\x26\xdc\x84\x9b\x5c\xc7\xec\x64\x1a\x0e\xb0\x61\x98\x6e\x9d\xf9\x6f\xe5\x9b\xfe\x57\xec\x21\x5f\x5f\x31\x41\xf3\x83\x4a\x87\xa7\x19\x27\x61\x43\x64\x62\xec\xad\xaf\xec\xb8\xe7\xbb\xf2\xd6\x13\x65\x21\xc2\x5d\xc6\xea\x7b\x55\x38\x3f\xe1\x44\x9f\xf4\xb2\xb7\x56\x35\x0c\xfe\x2e\x5a\x96\xf5\x67\xb8\x95\x0d\xdb\x05\xde\x7b\x7c\x9f\x57\x57\x82\xa0\xaf\xef\x16\x1e\x0b\x5f\x4b\x18\xe9\x5c\x7c\x74\xf4\x0e\x17\xe1\xa6\x75\x9d\xec\xd4\x09\xf2\x84\xa5\xab\xf4\x9f\xca\x85\xcf\x25\x9c\x70\xe6\x8e\xab\xd7\xff\xc3\x60\x95\x75\xc9\xb2\xd5\x6b\x46\x18\xdc\xfd\xf6\xe7\xb8\x41\x97\x18\xe1\xc8\x70\xe5\x04\x45\x89\x7c\xd6\x78\xe1\x8e\xac\x2d\x68\x74\x99\x48\x08\xb4\x67\xd4\xba\x6e\xae\x21\xa4\x79\x1e\xb2\xba\xf5\x67\x3d\x21\x3c\x5c\x6b\xd9\x8b\xb7\xed\xcc\x3f\xd0\x21\xd0\xfa\xd9\x5a\xba\xea\x5f\xb0\xde\x98\x32\xe9\x92\xc8\x44\xc2\x14\xbd\x8f\x51\x57\x56\xa8\x13\xee\xcb\x06\x5d\x55\x5f\x58\x5c\x82\x92\xa2\xf9\xc7\x83\x12\xfb\x99\x71\x78\x3e\x2a\x6c\xb7\xf8\xd1\xc7\xa0\xf3\x87\xd7\x83\x8d\x6b\xf3\x09\x29\x93\x7a\x6f\x27\x75\x0b\x11\x0e\x39\x47\xec\xab\xdb\xc9\x43\x98\x29\x5c\x68\x76\xec\x60\x0d\x83\xac\x97\x95\x8b\x7c\x0f\x5b\x13\x7c\xa4\x3c\xd3\xee\x1e\x4e\x23\x5c\x3a\xb3\xbe\xfe\x9a\xf6\x35\x16\xa2\x8f\x34\xfa\x72\x18\x59\x10\xb6\x4a\xe8\xc6\x6b\x3c\x52\x23\x68\xc7\x9e\x57\x6a\x12\x2d\x2f\xc1\xdc\x6b\xa9\x47\x6d\xd6\xf3\x12\xf8\x65\x46\x38\xd6\xe6\x6f\x67\x83\x82\x5f\x55\x6b\xef\xda\x01\x06\xed\x6f\x9e\x35\x84\x0f\xf2\x12\xac\x7f\x3e\xfe\xe3\xd8\xed\x4b\x38\x60\xc7\x7d\x25\xb8\x76\x35\x41\xb8\x41\xf1\xf2\xdb\x15\x1a\x84\xae\x59\xcc\x71\x41\x45\x79\x36\xc4\xb5\xcb\xcd\x7d\x73\x84\x9b\x90\x26\x2e\xc9\x84\xca\xbf\x60\x60\xee\x1f\xb9\x36\x64\xdb\x1b\x36\x6c\x6d\x7e\xef\xa4\x7a\xfa\x39\x83\xc2\x8b\xa7\x45\xc5\x75\x44\x09\x9b\x9b\xd4\xe5\x95\x9f\xad\x22\x18\x4e\xdc\xbf\x53\xf0\x62\x14\x1b\xe6\x1d\xb7\xda\x5c\xa9\x7e\x89\x50\x16\xb5\x6c\xb5\xcc\xbe\x0e\x06\xdd\x4d\x4b\xa6\x6c\xdf\x35\x9d\xc6\x91\x3f\xf7\x75\xe1\xda\x19\x53\x09\x9e\xfb\xf7\x9e\xab\xdc\x32\x9f\x10\xf8\x48\xcf\xe5\x0e\xb7\x30\x21\x5c\xe6\x77\x73\xd1\x6e\x37\x02\x47\x85\xe0\x19\x0b\x1f\x35\xc2\x33\x9f\xea\x75\x6e\xe2\x9b\x09\x8d\xb3\x67\xbc\x6f\x6e\x37\x20\x48\x9b\xf1\x87\xb1\x94\x89\xd0\x98\x1f\xb2\xcd\xc2\x5d\x8f\x70\xad\xe1\xc1\xb7\x92\x86\x66\x06\xca\xdb\xc2\x6f\x79\x31\x5e\x34\x8e\xb9\x97\xff\x86\x95\x3c\xb5\x20\x54\x7b\xc8\x46\x7b\x8b\xe8\x10\xde\x96\x99\x2e\x62\xf2\x4a\x59\xf8\x3d\x51\xaa\x62\xe5\x9d\x52\x82\xee\xb6\xe1\x57\xd2\xcd\xe5\x84\xe9\x9a\xd2\x9b\x42\xb8\x6f\x13\x56\x0e\x2f\xd7\xb6\x2d\x2b\x25\x1c\x99\xf6\xd0\x5c\x7e\x51\x1b\x83\xd7\xee\x64\xea\xc7\xab\x42\xff\x80\x8c\xc6\xd3\xd3\xab\x43\xa4\x09\xaa\x67\xd6\x7c\xbc\x78\x84\x83\xd0\x52\x15\x9e\xcb\xb3\x65\x22\xa1\x6d\xd0\xf7\x40\xea\x05\x79\x36\xac\xce\x58\x68\xb2\x21\xfd\x31\x83\xd3\x71\x7e\x9f\x2d\xaf\xcf\x25\xc4\x5d\xcd\x88\x81\xe9\x65\xc2\x32\x8b\xa8\x53\xff\xe1\x22\xcf\xe5\xc2\x9a\x61\x2f\xc2\xce\x45\x12\x2b\x7b\xc6\xf6\x8d\xc0\xe7\xd2\xb7\x38\x34\x56\x12\x72\x6d\xa3\xc2\x85\xb3\xfe\x32\xf8\x7d\x8b\x7f\x7f\x78\xf2\x5a\x02\x6f\xca\xb2\xc7\xc1\x1d\x67\x08\xa3\xf9\xbf\x7a\xd7\x7d\xf5\x64\xc3\xd4\x57\x7b\xe5\x25\x54\xc6\xfe\x19\xf9\x7e\x8b\x7f\xfe\x73\x90\x70\x5e\x72\x12\x8f\x6d\x84\x20\x61\x57\x02\xa7\x84\xb5\x6f\x39\xe1\x6c\xf8\x8d\x95\x02\x52\xf3\x09\x3e\x6f\xca\xb6\x7d\x3a\x39\x89\x50\x7b\x69\x3a\xcf\xec\x18\x03\xc2\x9c\x5a\x9f\xe8\x3e\x26\x96\xa0\xd9\x57\xeb\x10\xbd\x34\x96\xb0\x7e\x6f\xc7\x82\x0b\xac\x7c\xc2\xb4\x81\xe3\x77\xb7\xae\x6b\x2c\x41\xbe\x92\xf3\x21\xfb\x99\xa6\x34\x8e\xa0\x91\xfd\x49\x87\x86\x7a\x18\x08\xcc\x4b\x13\xf7\x8d\xff\xc2\xe0\x88\x46\xf5\xd4\x77\x6f\x94\x09\xc7\x43\x8c\x7f\x55\xde\x50\x22\x74\xe6\x3f\xcb\x9d\x9b\x7f\x94\x30\xe9\xc9\x5a\x05\x6b\x77\x57\xc2\xb5\xa7\xaf\x4e\x3d\xd7\x8c\x27\xf4\x3a\x66\x36\x54\xae\xbe\x4f\xd8\x6b\xf8\xd5\x5a\x65\xec\xaf\x3a\x6d\x7b\xda\xf0\xf1\xdb\x9b\x09\xf4\x35\xf6\xc7\xde\x89\xf6\x84\x07\x7c\xcb\x8b\xfc\x2b\xaf\x13\x3e\xfd\xbe\xc4\x93\xfd\xe8\x3c\x0d\x1b\x6f\xed\xd9\x23\xe5\x41\xd8\x90\x3d\xb9\x74\x71\xce\x36\xc2\x59\x63\xf7\x83\xfc\x7c\x39\x84\xe2\x2c\xfe\x2d\x01\xfc\x39\x84\xc3\xd7\x66\xfe\xdc\xf0\xd2\x98\x60\x5f\x6b\xf4\x63\x86\x85\x00\x1b\xce\xaa\x73\x43\x55\x7f\x06\xa1\xd5\xc8\x36\x66\x6f\xba\x0c\x21\xad\xe9\x33\xf2\x13\x83\x58\xb8\x34\x2f\xe1\x4e\x4c\x95\x1e\x8d\xe3\xab\xc9\xeb\x33\x05\xf3\x84\x08\xa2\x61\xd7\xf7\x78\xf3\x0b\x13\x9e\x37\x49\x9f\x7e\xa1\x25\x42\x78\x62\xc3\xe2\xdc\x6a\xa9\x4b\xd8\x5f\x55\xb5\x7a\x30\xbd\x84\xa0\x3d\x39\xe2\xc9\x02\x8b\x2c\x16\x7e\x56\x97\x34\xb6\x8d\xc4\x13\x1a\x9b\xcc\x27\xe7\x25\x13\xe1\xc9\xf5\x40\x15\xc9\x6d\xb7\x08\x7c\x46\x91\x93\x2e\xf3\xaf\x26\x54\x0f\xc7\x76\x65\x9d\x8a\x23\x24\xac\x33\x9a\xa2\x7b\xd1\x8e\x0d\x3b\x96\x6d\x5a\xa4\xed\xf4\x9a\xc1\xeb\xeb\xb7\x57\xe6\xbc\x9e\x49\xe8\x9f\x3a\xfb\xdd\xdb\x15\xb3\x09\x7a\xf7\xd3\x0d\x0d\x6c\x7e\x31\xe8\xe9\x5b\xf7\x5d\x25\xa1\x87\x0d\x1a\x3b\xf8\xf6\x2c\x33\xab\x2e\x41\xaa\xe3\xce\xf4\x93\x52\x53\x09\x87\x4b\xec\x1f\xeb\xa5\x45\xb0\x21\x4a\x40\x2f\xa1\x39\xfc\x2a\x21\xae\xf5\xe6\xd2\xfd\x87\x3e\x32\x70\xdd\xb7\xc5\x60\xfd\x21\x4b\x42\xda\xdb\x4b\x35\x07\xb4\x17\xb3\x41\xad\xce\x9c\xc7\xe3\xd8\x2c\x82\xad\xcf\xea\x5b\xb7\xb8\x0d\x09\xae\xca\x3e\x57\xdb\x9b\x1c\x4b\xe0\x20\x18\xd6\x3e\x57\xe9\x23\x83\x82\xab\xf2\x0a\xde\xf7\x97\xd2\x38\x4c\xdc\x46\x25\xd5\xdb\xde\x97\xa0\xf4\xeb\xfa\x2a\x63\x03\x39\x42\xe5\xd4\x76\xbd\x6a\xc3\x3c\x82\xdc\x76\xfb\x05\x4f\x0d\xc6\x20\x3c\xe8\x1d\x79\xe6\x32\x21\xdd\x4d\x99\xf9\x33\xf3\x1a\x61\xb3\xdf\x51\xef\xe5\x4f\x1d\x08\xfd\x83\x03\xde\xdb\x9e\xf5\x32\x78\x5e\xad\xf6\xf2\xc6\xb6\x70\x82\x47\xdc\x7b\xef\x1f\xfb\xc1\xe0\x70\x92\xcc\xeb\xaa\x51\x1f\x82\x75\xf4\xb3\x39\xfd\x49\x23\x0c\xba\x8e\x46\x3d\xea\x39\x28\x46\xff\x40\x43\x72\xa1\x53\xc0\xba\x5a\x06\x97\x7e\x59\x94\x2e\x9b\x20\xc0\x82\x52\x0b\xd5\xf4\xb4\x07\x10\x42\x5b\x8c\x1c\xee\x3c\x0f\x20\xe8\x25\xad\x96\xde\x1a\x25\x43\xa8\xf8\x3b\xbb\xe1\xa4\xaf\x0a\xe1\xf7\x4e\xf1\x89\xef\xa7\xa6\x11\x5c\x7b\x2b\xf2\xf8\x16\x09\xb3\xa1\x0d\xae\x4f\x77\xfd\xf0\xf9\x17\x24\xab\xf4\xee\x0d\x2a\xfb\x10\x24\x7c\x36\x1d\x1a\x70\xcd\x64\x41\xaa\x45\x74\xc9\xf7\x42\x41\x42\xda\x8c\x3c\x75\xef\xa3\x1b\x08\x8f\x6e\x39\x6b\xf2\xa4\xf1\x13\xfc\x4c\x9a\xbf\x18\xbe\xb6\x63\x21\xe5\x98\xef\xba\x38\x7d\x16\xe1\xf4\x91\x46\xfb\x4a\x63\x75\x42\xd2\x8c\xa2\x10\xe5\x69\xf3\x09\xf6\x93\x7e\x3b\x89\x4d\xea\x60\xf0\xf8\x61\xe0\x5b\xfa\xb0\x8b\xf0\xe7\x72\x96\x72\xb7\x9a\x1e\xe1\xe6\x90\x47\xa1\x7a\x8c\x3c\x21\xd4\xf5\xfe\x73\xe7\x25\x2a\x84\xb5\x3b\x2a\xda\xf3\x86\x72\x09\xa2\xae\x51\x65\x7a\xaf\xe4\x08\x85\x8c\xf0\xba\xac\xa7\x03\x0c\x54\xeb\x1e\xf4\x6b\x6c\xbb\x40\xff\xc0\xe7\xec\xfe\xfc\x4f\x39\x3b\xff\x85\xfd\x4f\xbf\x0a\x47\xca\x88\x11\x8a\x66\x7a\x6e\x17\xfb\x20\x48\x08\xdd\x16\x93\x1a\xe4\x6e\x4d\xe8\x34\x08\xd7\x77\x16\x30\x25\x34\x7d\x78\xe7\x78\x31\x6e\x25\xa1\x38\x63\xb1\xe3\xee\xaf\x49\x84\xaa\xae\x61\x91\x45\x07\xef\x11\xaa\xef\xda\x9f\xd7\xff\x78\x91\xa0\x93\xfb\xa3\x9d\xab\xb2\x84\x05\x09\xc3\xdc\x5f\xf4\xb2\x94\x10\x56\x99\xb8\xe9\x52\x9e\x2d\x41\xa4\xd6\xd1\xe6\x75\xf3\x1e\x16\xb2\xdb\x3e\x4b\x05\x89\x59\xb2\xc0\xb4\x7e\xb6\xb6\x9f\x7e\x82\xe0\x69\x77\xa3\x51\xb6\x79\x2a\xc1\x4c\xaf\x56\x74\xe3\x04\x13\x42\x38\x7f\xed\xd1\x60\x3d\x21\x02\xcd\x5d\x58\xf1\xe2\xd7\x1d\xc2\xdd\x2c\xbe\xd8\xeb\x67\xef\x10\xae\x1a\x6a\x14\x5b\x29\x0e\x31\x28\xb4\xed\x90\x4a\x9f\xf9\x86\x0d\x07\xb7\x17\x5e\xdb\xbb\x49\x80\xe0\x9b\x7a\xc0\xc3\x55\xcc\x90\xe0\xe8\xab\xfb\xca\xaf\x3b\x95\x85\x0b\x31\x91\x0e\xce\x97\x1a\x18\x54\x1a\x35\x4d\x6f\xee\x51\xa2\x71\x1c\x9b\x20\x69\x61\x12\xd2\xc7\xc0\x5a\xc9\xdf\xf4\x57\x7f\x3a\xa1\x7a\x4a\xc5\x24\xe3\xfb\xde\x84\x0a\x8f\x8e\x06\x7a\x7d\x8c\xa0\x34\x2b\x51\xb0\x2d\x3f\x90\xf0\xc7\xf8\x99\xe3\x99\xd7\x83\x0c\x2c\xf3\x16\x0b\x87\xed\x4e\x27\xc4\x06\x5e\x3c\xfe\x37\xe4\x08\xa1\xee\xcc\xea\x0b\x1d\x6a\x56\x84\x87\xee\x5f\x3a\xdf\xcc\xe5\x23\x24\xfd\x4e\x58\xa6\x7c\xfa\x3d\x83\x77\x97\x75\x8e\xcc\x33\xe0\x27\x5c\x5e\xaf\x68\xf7\xc6\xb4\x9d\xc1\x24\xfa\x1b\xf6\x3b\x7f\x23\xc1\x5b\xf9\x9d\xb3\x81\xdd\x49\xc2\xa0\x7e\xe1\xe2\x4d\x6a\x0d\x0c\x98\x58\xc3\x03\x19\x7e\x0c\xfd\x03\x4e\xa7\x83\x7d\xdb\xa5\x3f\x30\x38\x5f\x67\xca\x27\xe3\xc8\x49\xa8\x10\xda\xca\x98\x08\x89\x10\xfa\x38\xb2\x95\xb8\x36\x0e\x33\x28\xba\xc1\xb1\xa6\xa4\x59\x80\xc6\x91\x39\xe8\x94\x78\x72\xc0\x9f\x19\xbf\x49\xca\x53\xec\xd4\xdc\xea\x22\x69\x1c\x35\x8d\x45\xa5\x99\x35\x3e\x6c\x85\xe6\x46\xba\xff\xc9\x33\xff\x7f\x43\xb2\x76\x59\x47\xc4\xd8\xfd\x73\x3e\x41\xaf\xae\xd9\xfd\x14\xe1\x44\x6d\xcb\xc7\xbf\x5b\x27\x10\xd4\xdc\xab\x94\xb4\x9e\x39\x13\x0e\x0c\x85\x24\x16\xde\xd7\x20\xac\xe2\xf1\xad\x7c\xd4\xb9\x84\xa0\x21\x23\x16\xae\x27\xfe\x97\xc1\xbc\x2c\x85\x90\x27\x07\x3b\x18\xdc\x36\x95\x49\x62\xfe\x2c\xa6\x71\xcc\x2d\xaa\x5d\xdf\x70\xfe\x09\x83\x79\x49\x09\x1a\xa2\x2e\x33\x09\xea\x06\xcb\xe5\xb7\x3e\xb1\x24\x6c\xbb\x64\x1e\xfe\x27\x68\x1e\x81\x2f\xfc\xdd\x8e\x9b\x5d\x8a\x34\xdc\xb1\x62\xf6\x94\xfd\x51\x84\x52\x91\xc4\x21\x81\xfa\xf9\x84\x66\xf3\xc4\xac\x2b\xb3\xa3\x08\x06\xd3\xcd\xaf\xff\xcd\x31\x25\x38\xf4\x4d\xbb\xfd\xdd\xa0\x87\x81\xca\x23\xba\x9d\xb2\xfe\x0b\x03\x3f\x5b\x70\x09\xfb\x7c\x64\x90\xd3\xbe\x54\x78\xf7\xd8\xf6\xe3\x22\x65\xe2\x18\x16\xa0\xc5\x06\x9f\x23\x57\xfa\xd5\xbb\x42\xd8\x50\x9b\x60\xb9\xfd\xb0\xf3\x09\x42\xee\x59\xe1\xd1\x46\x03\x63\x82\xfa\xa0\xdb\xad\x93\x09\x5b\x09\x31\x9a\x89\x53\xef\xf1\x85\x11\x56\x18\xc6\x3a\xe3\xfe\x6e\x82\x79\xdd\x94\xdb\x45\xc5\x7a\x04\xa3\xb0\x98\xf2\xdf\x73\xef\xb3\x70\xde\xf8\x5d\xdc\xd6\x7b\x11\x04\xa3\xf2\x57\x9e\xd7\x95\xa7\x10\x62\xf7\x4a\x9d\x09\x2b\x51\x27\xdc\xae\x51\x1f\x4c\x4c\x50\x23\xb8\x38\xde\x19\xad\x3f\x37\x97\x10\xd3\xd1\x74\x4d\xf3\x09\x07\x81\xff\xd4\x4f\x35\xc1\xd2\x65\x84\x84\xb8\xfa\x35\x1f\x14\xce\xb0\xc6\xcb\xf1\xd8\x8f\x47\x37\xd9\xb5\x95\x60\xcf\x5e\xd1\x18\xbf\x69\x6d\x0c\x44\x67\x6a\xbc\xd6\x7e\x63\x48\x58\x2a\xe6\x20\x78\xfa\x61\x0f\x83\x83\x73\x94\xdb\x1e\x79\x7d\x60\x60\xdf\x69\xc9\xa1\x73\x7e\x0d\xc1\x7e\x5d\x95\x8c\x8a\x53\x1a\xe1\xa1\x95\xf3\xf4\x76\x5e\x5d\x82\xff\xee\x76\x0b\x75\x35\x86\xf0\x67\x66\xd1\xa3\x7d\x06\xf3\x08\x2b\xb6\xed\x5a\xe1\x52\x96\xc7\xe0\x03\xb7\xaf\x5a\xfe\x90\x19\x21\x2e\xcd\x4b\x2c\xf7\xcd\x00\x83\x0b\x2f\xd3\x0c\x77\xec\xfd\xc4\x86\x94\xe9\xc5\xa5\x33\x4d\x3e\x30\xb0\x38\x53\xdd\xa9\x71\x78\x12\x21\xcb\x34\x8a\x4b\xf8\xed\x44\x42\x10\xa7\xe3\xe9\xc0\x7e\x4e\x36\xc8\x34\xb2\xf6\xad\xba\x32\xca\x8c\xe3\xe1\xb0\x87\xe7\x5f\xf3\xd6\x12\x30\xf3\x5e\xaf\xe3\xe2\x8c\x21\xa8\x97\xbd\xd3\x39\x9b\xd4\xcf\x60\xcd\xfc\xd2\x35\x81\x62\x93\x68\x1c\x4f\x85\xee\xe5\xd4\x3b\xdc\x65\xa0\x7c\x52\xfd\xa7\xf8\xa0\x00\x21\xa4\x60\x66\xf1\xf1\xbd\x66\x84\xd4\x84\xfa\x10\xb5\x8d\x16\x6c\xf8\xb5\x9b\x4f\xf0\x6e\x96\x15\x61\xfd\xa1\x42\xd3\xcb\x86\x3d\x0c\xe6\x27\xdf\x8d\x6a\xd5\x2a\x23\x6c\x0b\x5f\x7e\x6a\x60\xdb\x2a\xc2\xae\x55\xeb\xcf\x73\x2d\xe3\x65\xc3\x99\x6f\xc5\xde\x1e\x8f\x5b\x4b\x20\x50\xf9\xe4\x88\xd6\x29\x3e\x82\xa5\x65\xc1\xfa\xe4\xe5\xc2\x84\xea\x1d\x4b\x83\x35\x0a\xcb\x09\xee\x61\x5d\x2e\x2d\x55\xe5\x84\x5a\xf3\xb5\x67\xbb\x0e\x14\x10\xf2\x7d\x59\xc3\x05\x81\x7f\x19\xd8\x4f\xdc\xaf\x2c\x97\xb3\x98\xf0\xa4\x47\xfb\x8e\xa7\xb4\x18\xa1\xd3\xe2\xb4\xa9\xc9\x83\x4f\x2c\x24\x0d\xf8\xcc\xdb\xdd\xde\xc6\xc2\xde\x28\xef\x1f\xc1\xa6\x65\x04\x43\x81\x51\xe1\x59\xf2\xb3\x08\x0b\x6b\x9d\x55\xfa\xae\xdd\x27\x1c\x74\x73\x91\xfc\x39\x06\x35\xce\x8b\xfa\xff\x41\x20\x28\xec\x20\x6f\x76\x21\xe1\x89\xcc\xcf\xd4\xff\x4a\x66\xf6\xa1\xc2\x62\x9f\x00\xc2\xb4\x4f\xf3\x47\xf9\x53\xfd\xd9\xca\xff\x8d\x6b\x8f\x07\x56\xce\xd1\x15\x20\x64\x0d\xbf\x7f\xbe\x5a\xe7\x26\xe1\xd7\xad\x0f\x86\x97\xf3\xa5\x08\x75\x8e\x2a\xc9\x33\xec\xd5\x08\xdb\xae\xe6\x6e\x3e\x62\x7f\x84\x30\xc0\x99\xd9\x31\xb0\x20\x92\xd0\x10\xfe\xcd\xe2\xaa\xde\x2c\x42\x49\xd6\xef\x3d\xfe\x73\x55\xd8\x30\x45\xbb\x7d\x52\x91\xb0\x30\x01\x82\x36\x21\xad\xf3\xc6\x46\x6f\xb4\xa1\xed\x60\xb3\x20\x1b\x44\xb6\x89\xff\x79\xf1\xab\xa5\x04\x31\x1a\x9d\x9f\x2c\x5e\x94\x11\x06\xb7\x6c\x53\xfb\x16\xc5\x4d\x78\xb0\x7d\x8f\xec\x9b\x68\x11\x82\xc4\xa8\xb6\x1e\x57\xf7\x02\x36\xa8\x8f\x9c\x17\x67\x35\xd4\x33\xd8\xcc\xe7\xbe\xe4\x58\xc6\x37\x06\x8d\x8f\x8d\xa6\x4d\x0a\xbe\x42\x58\x55\xa8\x38\x2d\x86\xc7\x9f\x50\x6b\x76\xdd\xfb\xed\x2c\x86\xb0\x8c\x97\x6f\xf9\x0a\x01\x39\xc2\x64\x0e\x8d\x43\x6f\x53\x8d\x08\x01\xfd\x4a\xba\x55\x91\x73\x09\xf7\x27\xac\x4b\xce\x08\x0f\x21\x2c\xfb\x79\x35\x26\xe8\xe6\x72\x82\x70\x48\xaf\x81\xa4\x2d\x07\xe1\xf4\x60\xd5\x1e\xc7\x19\xab\x09\x12\x57\xaf\x2f\xe6\xd7\x53\x21\xec\x0c\xb7\x88\xda\xda\x96\xcc\x82\x77\xeb\xce\x93\x39\xbc\x37\x59\x70\x09\x8a\xb5\x3e\xd6\x9c\x4c\x48\x28\x34\xaa\x8d\x32\xdb\x4c\x98\xc4\x13\xf1\xd5\x31\xe4\x2b\x03\x73\x25\x67\x97\x1f\x5e\x79\x2c\x14\x9d\xbd\xaa\x19\xaa\x59\xc0\xc2\xf5\x8e\xf6\xaf\xd7\x5e\xe7\x11\xfc\x55\x0a\x54\xda\xa7\xa5\xb1\x70\x75\xfd\x1a\x6d\x13\xa7\x3a\xc2\xe9\x18\x93\x4d\xf5\xfa\x15\x84\xdd\x7b\xed\xcd\x06\xb4\x76\x11\x0e\xb7\x46\x2d\xf4\x36\x3f\xc8\x86\xe6\xbb\x6d\x39\x33\x1d\x2c\x09\x4d\x4b\x9e\xdf\x31\x11\x2c\x24\xf0\x0c\xaf\x17\x14\x3e\x5c\x59\x82\xfb\xe2\x55\xbd\xd3\x02\x32\x09\x77\x27\xe9\x2c\x5d\xba\x20\x89\xf0\x33\x38\xa1\xe2\xbf\x72\x3d\x6e\x0f\xcb\xbb\x65\x06\xa1\xeb\x13\x6f\x3b\xc7\x1e\x15\x42\x91\xbe\x37\x77\x61\x6a\x05\x61\xfa\x93\xe3\xeb\x48\xef\x23\x03\xc5\xc5\x75\x1b\xee\x4e\xb5\x22\x70\x5e\x33\x2f\x16\x09\xd5\x26\x28\xca\xf2\x73\x99\x37\x29\x10\xa6\x66\x74\xc6\xb4\x1e\x12\x22\xa4\x57\xf0\x7c\x89\x28\xde\x44\xf0\xcd\xe3\x95\xfa\xc8\xfd\x96\x41\x46\xee\xb3\xf3\xa9\x9a\x4b\x09\xea\xdf\xdf\xf7\xbb\xa5\x09\x10\x76\x8b\x6f\x2f\x5e\xf4\xc5\x99\x20\x9c\xb3\x28\x71\xf2\x59\x11\xc2\x68\xc6\xa6\xa7\x6a\x05\x22\x04\xde\x8b\x6b\xae\xdb\xec\x12\x24\xbc\xca\xc8\x6f\xaf\xfc\x96\x42\xf0\xd8\xb4\xef\x7e\xe9\x4c\xce\x55\xd8\x9b\x10\x62\x7c\x7a\x0c\x7d\x61\x1d\x99\xd1\xbb\x5e\x12\xe2\xdf\x27\xd8\xbd\xd4\xb9\xc7\xc2\x50\xea\x1f\xad\xc7\xca\x76\x04\xfe\x02\x49\xfb\x23\xf9\x29\x84\x55\xdf\x59\x3d\xb2\x85\x7d\x84\xa7\x8b\x46\xba\xbe\xb6\x3c\x22\xec\x58\xa0\xa4\xca\x6f\x59\x40\x70\x4f\x2b\x0d\x56\xe1\xbb\xc3\x42\xee\x0d\x59\xfb\x33\x3e\xb1\x04\x4e\x63\x96\x9a\x82\xda\x2f\x06\x6e\x52\x0a\x75\xc7\x2e\x0a\x12\xb8\x4c\xe5\x68\x55\xa3\x1a\x8d\x97\xaf\x99\x2f\x06\x43\xbf\xfc\x62\xa0\x2b\x37\x21\xed\xcc\x97\x29\x84\xeb\x97\x9f\x0d\x96\x5f\xdd\x40\x58\x26\xbe\x55\x6f\xef\x63\x4f\x82\x47\x9b\xdb\xca\x3f\x7e\x3e\x04\x85\x45\x6e\xdc\xab\xce\xbf\x24\x7c\xe4\xac\x8a\xbe\xce\x34\x12\x56\x78\xdd\x1f\x6a\x13\x6c\x1e\x1b\xf8\x33\x36\xb7\x8f\xe1\x7f\x0a\x23\xf2\x79\x6f\xe7\x18\x9c\x0e\x1e\x71\x91\x5d\x1f\x4d\x70\x7c\xff\x29\x2b\xd3\xd2\x8d\x70\x2a\x45\xac\x78\x55\xd9\x41\x16\xf8\xee\x05\xe9\x70\x7f\x71\x27\xac\xab\xba\xf1\x29\xf8\x66\x12\x21\x66\x43\xa3\xe3\x26\xf5\x68\x02\xe7\x33\xce\xad\xc6\xaa\x7e\x04\x8d\x1d\xde\x77\xe6\x2e\xf6\x27\xfc\x9e\xa9\x60\xb3\xb6\x3b\x85\xf0\xd4\x7e\xe9\x9d\x28\xa1\x7b\x04\x3e\x81\x4e\xa3\x3d\xd9\x96\x04\xbf\x46\xdd\x6e\x16\x67\x18\x61\xcf\xd3\xe9\xae\x77\xae\x24\x13\xb6\x7e\xde\xb4\x66\x5a\x80\x0d\x81\x55\xba\x9e\xff\x7a\xd7\x46\x82\xfe\x6f\x91\x9a\xa2\x46\x33\xc2\x0c\xa7\x4b\x3e\xf2\x55\xe9\x0c\x0c\x24\x6f\xa9\x0c\x0d\xdf\xa1\x7f\xe0\xc4\xfd\x36\x93\x59\x17\xad\xff\x05\x5f\xbd\x04\x4d\x39\x07\x2b\xb6\x72\xa0\xf5\x5a\x7b\xf7\xd8\xf8\x32\x7b\x73\xe1\xf9\x9d\xe7\x0c\x21\x6d\xc3\x99\xde\xda\xda\x52\x42\xee\x17\x9b\xa6\xf2\x31\xf0\x73\x8c\x72\x2d\x5f\x7d\x97\x35\x5e\x02\x3d\x2b\x9d\x04\x17\x1d\x23\xfc\x58\xf0\xf5\xec\xc0\xdb\xe3\x04\x29\xb9\xf4\x88\xa4\x5c\x0f\x82\xce\xb9\xdc\xa2\xbd\xd1\xe7\xd9\x8a\xed\xc3\xec\xce\xa9\xe7\x8f\x11\x24\x5f\x88\x4f\x3f\xf1\xc6\x89\x90\x62\xe6\xbf\x6a\x68\xbd\x0f\xe1\x4e\xe0\x97\xc7\x9f\xaf\x95\x12\x14\xb4\x38\x3f\xd7\x7c\xf4\x22\xcc\x2e\xb7\xf8\x74\x75\xfe\x3e\x16\xd4\xfc\x7b\xec\x6e\xb6\x3f\x25\xac\xe6\x39\xcf\x91\xbb\x35\x97\x85\xe7\x0b\x0c\x5e\x78\x3d\x1b\xbb\xf9\x2b\x3d\x1d\x73\xa5\x4a\x08\xf9\x92\x05\xda\x5e\x0b\x35\x09\x77\x97\xfa\x2b\xe9\x1c\x7d\xcb\x60\xfd\xe1\x99\xaa\xa2\x39\x6b\x09\x87\xfc\xdf\x0f\x07\x4b\xbe\x21\xfc\x36\xae\xfd\xf3\x47\x5d\x9c\xc0\xad\x59\x75\xba\x29\xe4\x36\xe1\xb6\x47\x8d\x7c\xf6\xf2\x67\x84\x2a\xd9\xc5\xf7\xb7\x07\x88\x11\xca\x33\x04\xf7\x6b\x66\x6c\x26\xcc\x0f\x7f\x33\x80\xf3\xab\x08\x1b\x35\xee\xc7\xcd\x10\x0b\x65\x21\x42\x72\x73\x5a\xd7\x5f\x3f\x82\xa4\xb7\xa4\xd4\xf2\xf5\x1b\x09\x83\x1f\x1b\x1a\x65\x36\x46\x12\x44\x6f\x5e\x29\xb3\xad\x4e\x20\xac\x98\xfc\xc0\x82\xc2\xef\x12\x78\xac\x1a\xde\x16\x5a\xca\x10\x06\x36\xde\x7b\xfe\x70\x6c\x41\xf3\xba\xf7\x20\x3d\x4e\x5c\x96\x10\xbf\x75\xa3\xc3\xf7\xed\x7d\x0c\xde\xbc\xd0\xcc\xae\x5f\xc7\x49\x50\x5e\x9e\x14\xf7\x47\x69\x22\x81\xaf\xb7\xfa\x44\xda\x33\x1b\x36\x04\xf7\x78\xaf\xe6\xf2\x6f\x29\x41\xaa\xc6\xdd\x54\xbd\xc3\xe1\x84\x0b\xba\xde\x1b\x23\x58\xf5\x04\xe1\x84\x1f\xc5\x86\x19\x1f\x59\xf8\xea\xaf\x25\x90\x1d\x7a\x8f\x30\x52\xea\x69\x36\xda\xbf\x9c\xd0\x72\x71\xf1\x55\xe1\xa3\x36\x6c\x08\xae\xdf\xb8\x28\xb7\x6b\x26\xe1\xba\x75\xfa\xc0\x82\x69\x1a\x84\xda\x8a\x75\x7c\x9d\x96\x4f\x09\x4f\x1f\xaf\x99\xf6\x79\x70\x88\xc1\x99\x44\xef\x2f\x2e\x1f\xb3\x09\x7d\x6b\xa5\x0c\x6c\xee\x54\x10\x9a\x24\x34\xfd\x27\x3e\xff\xc8\x60\xbf\xff\x93\xf7\xa6\x47\xb7\xd0\x3f\xe0\x35\x38\xdd\xd7\x87\x72\x08\x2d\xd9\xc5\xa9\x3b\x99\x1a\xc2\x14\xdd\x1b\x1d\x0b\xfa\xfa\x18\x58\x7c\x0f\x79\x51\x7c\x8b\x08\xb7\x0b\x8a\x39\xa4\x1d\x5f\x10\xba\xa6\x48\x46\xf5\x46\xfd\x61\x70\xaa\x3c\x7f\x9f\xfb\x14\x5e\x1a\x87\xa9\xe0\xfc\xa9\x2f\x5c\x79\x08\xac\x78\x78\x26\x7a\xbd\x62\xf0\xe6\xa9\x3a\xb7\x65\x8a\x20\xfd\x03\x69\x7b\x6c\xe6\x9b\x6e\x90\x21\x24\xdd\x3d\x7e\xb2\x59\xbf\x80\x70\xb4\xf5\x59\x82\x53\xfe\x5d\x82\x67\x7f\xbe\xc4\xb6\x11\x0e\xc2\xca\xb7\xa5\x87\x3f\xdb\xbc\xf8\x5f\x7f\xce\x3b\xdb\x0f\xaf\x39\xf8\xe6\x10\x54\x23\xdf\x6f\xb9\x74\x9e\x9f\xf0\xc1\xf0\xa1\x89\xf8\x34\x5e\x82\x90\x27\xeb\x58\x9b\xad\x06\x5b\x91\x48\x36\x59\xf1\xdf\x27\xf4\x0e\x3a\x79\xb1\x85\x6f\x0b\xe1\xb4\xe6\xf1\x5a\x1b\xe5\xca\x12\xcc\x58\x9a\xa3\xbf\xce\xab\x88\xf0\x76\x46\x9d\xe6\x52\xf7\x0c\x42\x53\xe9\xbb\x63\xff\x15\xbb\x2b\x4b\xf8\xdc\x5f\xf8\x11\x6a\xfc\x42\xf7\x2d\x7c\xe8\x47\x58\x7a\xab\x68\xe4\x52\xa4\x18\xe1\x4f\x5f\x43\x50\x7b\x96\x32\xe1\x97\x4b\x36\x0f\xc7\x69\x51\x36\xf0\xbe\xba\x77\x4b\x9c\x99\x40\x88\x99\x22\xf6\xd3\x57\x63\x3a\x61\x4b\xc4\xb2\xbf\x9b\xb2\x07\x18\x9c\x6d\x1f\x7e\x18\xfb\x74\x90\x0d\x76\x8f\x04\xdc\x2f\x15\x69\x13\x9c\x0b\x23\x56\x98\x7a\xef\x21\xd4\xcf\x13\xb4\xb0\xac\x9f\x48\x28\x31\x95\x7e\xb7\xc3\x65\x2d\x41\xad\xff\xfe\x97\x0a\xb1\xef\x0c\xee\x8e\x76\x4f\xee\xe0\x9e\x45\xa8\x51\x92\x7d\x17\xd4\x72\x87\x05\x45\xe7\xea\x2d\xca\x7b\xdf\x10\xf8\x22\x1e\x9b\x5c\x4c\xcb\x25\x88\x4b\x7d\xb5\x6e\x18\x5a\x45\xf0\x71\x9e\xf3\x32\xdf\xf4\x20\x1b\x2a\x1e\x4c\x7a\xa9\x1d\xba\x9b\xd0\x63\x5a\x77\xae\x3d\x63\x29\x41\x7e\x77\x9c\xe1\x9a\x95\xfa\x84\xa5\x66\x0d\xa3\x4b\x0d\x0b\x09\x87\x1f\x3d\xa8\xbe\xbd\x4c\x8e\x90\x88\x38\xb7\xcc\x30\x1d\xc2\xa2\x70\x3b\x6b\x21\xed\xc6\x12\x78\xde\x72\xdf\x30\xa5\x30\x99\xc6\xb1\xfc\xb7\x49\xe7\x97\x1a\x69\xc2\xe5\xcf\x05\x53\x85\x52\x75\x08\xc1\x6b\xd2\x57\x5b\x56\x6b\x13\xdc\xac\x97\xb9\x5e\xd9\x9f\x4f\xb0\xd6\x9d\x75\xea\x4b\x40\x3c\xc1\x90\xcb\x25\x59\xf8\xa9\x1c\x1b\x6e\x5f\xe8\x57\xf9\x99\x5d\x42\x78\x6b\x79\x79\x59\xe7\x6d\x53\x82\x82\xd5\xbb\xd9\xc5\x93\xef\x11\x7e\xfe\xe0\x32\xfc\x0f\x0b\x8e\x30\x7b\x57\x8e\x5c\x24\x6c\xb4\xe7\x54\x94\x97\x2f\x23\xbc\xf2\x4f\x1e\xda\x11\x5c\x44\xe0\xd7\xb9\x57\xa8\xc3\x94\x13\x18\xd1\x91\x91\xff\xa0\x6f\x24\x3f\xeb\x3f\xcc\x4b\xda\x19\x19\xcc\xdc\x23\x7c\x77\xf5\xfc\xb2\xd8\xfa\x18\x21\xfa\x17\xcb\xe7\xe1\x8b\x4a\x82\xfb\xaa\xf5\x76\x6d\x13\x2c\xd9\x8e\x16\x08\x9d\xdc\x94\xcb\x11\x4f\x60\xb8\x8c\xb3\x94\xad\x26\x12\x5c\xdc\x6a\x96\xfd\x1c\x7b\xd7\xff\x1f\xbc\x75\x2f\xe7\x8a\x33\x69\x67\x10\xa4\x17\xb2\x39\x43\xfe\x27\x83\xc3\x1c\x33\xbc\x8c\x6d\x4e\x10\x7e\x37\x8b\xbd\x9c\xf0\x58\x86\xc0\xab\x26\xb2\x43\xeb\xdc\x0c\xc2\xc1\x38\xab\xa2\xdd\x4f\xd6\x11\xcc\x8d\x34\x7f\xb9\x64\x45\x11\x16\x2f\xab\x3d\x59\x62\x2f\x4e\x38\x9c\xe8\x9c\xea\xae\x9a\x46\xc8\x7b\x23\xb9\x79\xa5\xea\x45\xc2\x03\xed\xf2\x82\x44\xa5\x52\x82\xf0\x71\x8f\x50\xdf\x9c\x2b\x6c\x28\x2c\xe9\x79\x79\xbf\x26\x8a\x10\xea\xe1\xf9\xc6\x46\xa1\x86\x90\xf5\xab\xe6\x73\x03\x23\x4b\x58\x2b\xf8\xb7\x67\x43\xf7\x31\x36\x3c\xfc\xc5\x71\xf1\xa8\xfd\x2a\xc2\x4e\x89\x7d\x4b\x85\x47\xbe\x31\xb0\xa8\x2b\xbe\xf6\x3c\x23\x95\xe0\x5e\xd1\xd2\xf2\xdd\xce\xfc\x5f\xd0\x38\x92\x61\xf6\x79\xec\xc1\xf1\x37\xce\x36\xc1\xd7\x32\x8f\x70\xf2\x6b\xcb\xb7\xb3\x8f\x92\x59\x70\xb9\xfc\xea\xd3\x2b\x5f\x33\x82\x82\x9e\xfa\x06\x56\xc4\x6a\xc2\xde\x59\xa1\xd3\xcf\x06\xd8\x13\x82\x6a\xe8\x89\xe4\x2f\x07\xc2\x1e\xc7\x61\x3f\x55\xc1\x47\x04\xdd\xc6\xe4\x03\x13\xfb\x86\x09\xdd\xea\x5b\xf5\x5a\x6d\xab\x09\x33\x15\xae\xac\x6e\xa9\x0e\x27\xe8\x7a\x3a\xf8\xb3\xd4\xc2\x58\xb8\x35\x7f\xbf\x72\xf6\x4a\x1e\x42\xc4\x8c\x2f\x1d\x5f\x5e\xd8\x10\x8c\x9e\xcc\xf9\xe9\x58\xbd\x98\xe0\x32\x35\x33\x68\x45\x21\x3f\x61\x8f\x80\x89\xea\x6a\x0f\x7e\xc2\xfb\xd8\xf5\x29\x2b\x52\x27\x10\xd6\x0d\x2f\xd8\xbc\xd1\x3d\x86\x0d\x4b\x77\xd5\xf2\x18\x5e\xed\x65\x70\xb9\xae\x27\x5e\xe3\x01\x2f\xa1\x7d\xc9\xaf\xbf\x1b\x78\xee\x13\xae\x78\x16\xe4\xf5\x27\xf1\x12\xa6\xbf\x93\x89\x77\x34\x1e\x64\x70\x72\xae\xd8\xc2\x2b\x45\x91\x2c\x70\xe9\x76\x16\x47\xf7\xde\x21\xf8\xec\x1a\xd4\x3b\xf8\xb3\x9e\xc0\x7b\x28\x53\xfb\x31\xf3\x92\x90\x66\x75\xa0\xa9\x7e\xdf\x0b\x42\x6d\xef\x86\xa4\xc5\x8b\x1e\x11\xde\x2d\xb5\xf9\x72\xe6\xca\x71\xc2\x49\x87\x20\x95\xc8\x98\x93\x6c\xa5\xfa\xf0\xab\x81\x6b\x6a\xe7\x09\xbf\xa7\x87\x1a\x6e\xa9\x2e\x27\x6c\x9d\xfb\xa8\x71\xcb\x75\x67\xc2\xb3\x64\x2b\xbb\x4e\xae\x95\x2c\x78\x59\x46\x15\x45\x9f\x78\x42\x88\xc4\x4d\xff\x91\xa5\x25\x84\x25\x7e\x0e\x79\xb1\x63\x25\x87\x33\x8a\xd7\x62\x28\x9d\x70\x72\xbf\x11\x6f\x85\x48\x36\xc1\x28\x3a\xa7\x62\x46\xbf\x34\x21\x3e\xfe\xf5\x24\x05\xc5\x23\xe3\x18\x0e\x9d\x6e\xff\x42\x7f\x09\x41\x3d\x45\x63\xe7\xe3\x3b\xcb\x09\xd3\xd2\x4f\x14\xa7\x8a\x14\x10\x8c\x6c\x97\xe8\xe9\xdc\x18\x7b\x6a\xfd\xfa\xa3\xf5\xec\xd8\x76\x82\x96\x5b\x59\x51\xf3\xc6\xed\x6c\xe5\x55\x56\xc4\xbd\x84\xeb\xbc\x84\x47\x59\x5f\x1f\x1b\x0b\xe9\x11\x0a\x2a\x37\x5d\xd0\xc6\x29\xc2\x61\xc6\xa7\x29\xd9\xd1\x99\x30\xac\xfd\x25\x6c\xf5\xe6\x1b\x04\xc7\xf8\x39\xc5\x17\x96\xdd\x24\x98\x86\x69\xe9\x06\xbd\x7a\x4e\xb0\x14\x71\x39\xe9\x24\xe1\x4e\x28\xf1\xb8\x73\xb6\x43\xd9\x89\x70\xb1\x55\xbc\x5f\xbc\x6e\x35\xe1\x8b\x25\x07\x93\xbf\xba\x90\x50\xe2\x1a\x67\x6d\xef\x11\x4d\x78\xf1\xd9\xd4\xe0\x5c\x9a\x0e\xe1\x71\xe0\xc5\x4d\x72\x1f\xfb\x18\x28\xbe\x7e\xd6\x53\xf4\xfa\x3d\x83\xa8\x99\x81\xa1\xb6\xb3\xa7\x10\xcc\x8e\x54\x55\x66\x9e\x59\x40\x38\x63\xfa\xe1\xcd\x22\xdd\x37\x04\xae\x4e\x9e\x93\x8e\x37\x5f\x11\x5c\x9b\x58\x35\x7f\x83\x57\x12\xdc\x8c\xe6\x44\xf2\xce\x90\x63\x03\x47\x91\xbf\xa0\xc5\xfc\x59\x04\x4f\x63\xf1\xee\x53\x8f\xc0\x60\xa9\xd5\x85\x6a\xae\xa9\xb9\x04\xa3\x55\xab\x95\xb2\x6c\x93\x09\x7f\x22\xa3\x73\xe6\x28\x07\x13\x3a\x0f\x9b\x2c\xba\xcb\x1d\x4a\x30\xe0\xfe\x28\x66\xa0\xbc\x9d\x40\x6d\xef\xcf\x46\x87\x29\xb1\xa1\x75\xe0\x40\xe5\xc0\x61\x4e\x36\xbc\x9c\x5a\x2b\x55\x27\x7f\xb4\x04\x5f\x26\x1a\xf4\x28\xd9\xcf\x22\xa4\xfd\xed\x68\x39\xa3\x1c\xf8\xbf\xe2\xe6\x22\x59\xe7\x0b\x41\x8e\x84\x03\xa9\x1f\xc5\x7b\xeb\xcc\x59\x50\x8c\x9e\x53\xd5\xc8\x91\x4f\xc8\xe6\x0f\xab\x99\x15\xff\x99\x30\x74\x4a\x2d\x72\xf9\xf5\x7c\x42\xd3\xf6\x05\xf5\xf5\xb2\x61\x84\xad\x53\xfb\x9b\x76\x3d\xf1\x23\x2c\xd0\x1e\xad\x0d\xc8\xf3\x23\x14\x3f\xba\xd8\xf6\xd2\xa9\x8c\x50\x5d\xb6\xb7\x6e\xa2\xdb\x7d\xb6\x6b\x7e\x8a\x1e\xee\xc8\xfb\xea\x4f\xd8\x9b\xc2\x91\xe3\x72\xd9\x85\x10\xff\xf0\xca\x83\xa4\x2b\x2e\x04\xd5\xaf\x16\x5f\x1b\xd6\x9f\x26\xf8\x71\x5e\xb8\x34\x77\x6c\xc5\xf6\x7b\xe9\xc3\xf5\x66\x36\x2f\xfd\x6f\x68\xdf\x15\x6e\xda\x1d\x31\x85\x50\x4d\x67\xf1\xf0\x5c\x1c\x61\x61\x69\xed\x90\x41\x76\x0a\x81\x57\x5a\x47\x2b\xc9\x29\x80\x85\x4d\x9f\x27\x7b\x88\xe8\x8f\xfd\xa6\x99\xe1\x1b\xd7\xd9\x09\x10\xee\x39\x1f\xca\x0f\x9e\x28\x46\xf0\xbb\x79\x47\x62\x48\x42\x9c\x60\x15\x32\xaa\xf0\x85\x59\x45\x38\x96\xfd\x6c\x7d\xea\xac\xe7\x0c\x3a\xc2\x8c\x0a\x9a\x79\xd5\x68\x1c\x75\xe6\x27\x6e\x8c\xf6\x82\x81\x43\xc0\x0f\x1d\xbe\x23\xab\x08\x22\x0a\x37\xed\xd6\x3f\x9b\x47\x18\x89\x30\x6a\x93\xda\x7f\x89\xb0\xf4\xe4\x47\x8d\x59\xb2\xc9\x04\x01\x96\xeb\xe8\x33\x0e\x27\xc2\xac\xed\x93\xcc\x38\xfd\x0c\x09\x57\x1c\x64\x36\x3a\x77\x2d\x23\x6c\xb9\xb6\x67\x6f\x7b\x1c\x43\xd8\x6e\x76\xf6\x77\xc7\xa1\x09\x04\xfd\xaa\xeb\xbf\x0e\xef\x53\x25\x48\xd9\xef\xad\x98\xc2\x2b\x4f\x30\x1f\x39\x54\x9e\x19\xeb\x46\x28\xaf\x78\x23\xd4\x1c\x9c\x44\xa0\x98\xef\x4a\x21\x5a\x39\x84\x9f\x4f\x53\x44\x33\x8e\xe5\xb1\x30\x45\x4e\x6c\xd7\x7f\x65\xc0\x40\x54\xd7\xce\x65\x1e\x1b\x74\x64\x0d\x8c\xad\xee\xd8\x10\xb2\x1a\x17\x7e\x10\x1d\x7b\x80\xfc\x0f\x1c\xe6\x1f\xf6\x1f\x2d\x2b\x65\x8d\x97\x1b\x5c\xc6\xdb\x7d\x4d\xfc\x09\x8b\x6a\xbc\x4b\x0b\x1e\xb0\x58\xb0\xb6\xb5\xbe\x28\x3c\x14\x41\x18\x3a\x7e\xdb\x2c\x6f\x30\x82\xd0\xf2\xfe\x78\x55\xdb\xa6\x12\xc2\x74\xed\x4b\x5f\x38\xe3\x0a\x69\xf8\x60\x47\x73\xd4\x86\x3e\x06\x3d\xc2\xa9\xd6\xbf\xe5\x25\x09\xdb\xe3\x76\x3a\x9a\xe7\x1f\x27\xbc\x9a\xe1\xe9\xc9\x93\xde\x48\x18\xf2\x11\xb7\xe9\x1d\x43\x4e\xff\xb5\xe1\x3b\x7b\x1a\x09\xe2\xee\x53\x44\xf7\x27\x96\x12\x4e\x5e\xed\xdb\x92\x6f\x72\x86\x50\xce\x9a\xd4\x7f\xb6\x7b\x21\x41\x55\xc6\x36\x35\x74\xe5\x27\x66\x1c\xbd\x3e\x42\x6a\x03\x1b\x7a\x18\x58\x8c\x88\x89\x55\x7b\xac\x22\x98\x2d\x7e\xb9\xa0\x50\x3a\x87\x10\xb2\x5e\x26\xe2\x91\x9a\x36\x61\xc9\xf1\x53\xdf\x2e\x3d\x56\x23\xec\xcc\xb8\xf7\x24\xaf\x70\xe9\xd8\x97\xdc\xf3\xeb\xd4\xd3\x3c\xc2\x2c\xfd\x3a\xc9\x09\x8f\xde\x32\xe8\x10\xb0\xd7\x8b\x5e\x98\x49\x30\x59\x29\x5b\xb7\x5b\x25\x93\x50\xcd\xc5\xb9\xdd\x49\xfe\x25\xe1\xae\x64\xad\xfb\x7f\x65\x46\x7c\xbb\xd5\xd1\x01\x7d\xc2\x86\x65\x5a\xa5\x9a\x59\x87\x08\x9f\xc3\x5e\x8a\xde\x98\xb3\x85\xa0\xf7\xdb\x7b\xce\xc9\x1b\x26\x04\x3e\xbb\x98\x0d\xf6\xd5\x56\x84\x0d\x9a\x7e\x2b\x8b\x2f\xdd\x20\xe8\xad\x6f\x8b\x4a\x72\x7b\x59\x82\x9a\x59\xf6\xbe\x0e\x0b\x97\xd3\x38\x9a\x6c\x4a\x2d\xbb\x02\xe7\x11\xbc\x7b\xa5\x75\x7b\xf7\xbf\x63\x90\xb6\xc3\x5a\xb4\x21\x6f\xec\x13\xfe\xff\xa1\xa4\x74\x78\xd3\x4a\xfd\x49\x84\x0e\xde\xb4\x11\xe1\xb1\x97\x9c\xff\x41\xc5\xe3\xd0\xbf\x15\x59\x85\x84\xf4\x73\x9d\x5f\xa7\xe4\x16\x12\x3e\x38\x6d\x5c\xb0\xb2\xa2\x90\xa0\x72\x74\x86\x32\xdf\x58\x39\xe5\xfe\x53\xce\x35\xd1\x86\xf0\xf6\xec\xad\x85\x8d\x9b\x37\x11\x0c\x4e\x4e\x7b\x7b\x65\xb5\x3d\xe1\x16\xaf\x4a\xa8\xc1\x77\x6b\xb6\xb2\xd5\xcf\x39\x33\x35\xde\x99\x30\xdf\x78\xd3\x1a\x9f\xe6\xcb\x2c\x24\x27\x79\x85\x0f\xad\x78\x49\xe8\xf0\xd9\x5e\xf3\xc7\xb9\x9e\xa0\x60\xfb\x35\xa8\x7c\xc3\x3d\x42\xad\xae\x84\xe9\xfb\xf3\x22\x84\x87\x12\xab\x56\x2a\x4e\x1e\x62\x70\x3f\x77\xfb\xb9\xb2\x0b\xaa\x04\x0f\x93\xfd\x0e\x1a\x23\xdd\xcc\x38\x42\x03\x32\xfe\x1c\x9c\xd2\x54\x82\x78\x39\x8f\x10\xb3\xcb\x97\x08\xcf\x9d\x2c\x2a\x75\xcf\xbf\x60\xe0\x37\xcf\x7c\xd7\xa7\xd5\xdf\xd9\xd0\x95\x98\x7f\xf6\xe4\xd5\x7a\x06\xea\x81\xaa\x0a\x17\x17\x49\x10\x6a\xf1\x33\xef\xe7\xf1\x4d\x6c\x18\x7e\x76\xb9\xde\x6c\x0d\xab\x04\xbb\x07\xdc\x7e\x1c\x11\x9b\x41\x18\x9e\xaa\x61\xb4\xd1\x56\x8a\x90\xae\x31\xe1\xf5\x8c\xef\x9c\x84\xab\x29\x37\x15\x38\x4c\x85\x09\xe5\x03\x3a\xdf\x5c\x5e\xe7\x12\xda\x4b\xb6\x98\x05\xab\xf4\x31\x38\x72\xe2\x46\xe8\x11\x91\x49\x34\x8e\xad\x59\xfb\x1f\x86\x96\x36\x94\x20\x7f\xd1\x87\x87\x17\xcd\x7d\x58\xe0\x78\x21\x7f\x56\x67\xa5\x1f\x21\x56\xc8\x4a\x52\x59\x36\x91\x85\x2e\xe9\x9b\x15\x62\xbb\x6f\xb3\xd0\xfe\xe3\xf2\x8a\xd0\x47\x15\x2c\x70\xea\xed\x5d\x13\x11\x50\x43\xa8\x38\x58\x6f\xac\x73\xf0\x09\xe1\xa2\xc7\xef\x6c\x61\xaf\x3b\x84\x2f\x93\xeb\xaf\x2f\xbb\xe0\x44\x98\x3e\x6f\xe7\xd5\x24\xfd\x2b\x84\xea\x0b\xc1\xbd\x5a\xef\xe4\x08\x0a\xa7\xe6\x46\xbe\xdb\x26\x4f\xc3\x83\xe7\x55\x72\x0e\xe7\x10\x9c\xb5\xe5\x8b\x34\x5e\xf7\x33\xd8\x92\x7a\xe7\xd8\xc3\xcc\x0e\x06\x2a\xaf\xc3\xac\xa7\xef\x91\xa4\x71\xac\x5e\x27\xb0\x57\x2f\xb0\x81\xc1\x47\x3f\x93\x2b\xef\x04\x67\x11\xa2\x12\x39\x44\x78\x85\xff\x30\x70\xbb\xd1\x3d\xb3\xf9\x58\x2f\x1b\x94\xa7\x35\xa9\xb7\x1b\xf2\x11\x46\x44\x25\xb2\xce\xe5\xfd\x65\x90\x10\xd9\xa5\x2c\x33\x52\x4a\x30\xba\x99\x1d\xd6\xb3\xeb\x25\x21\x5b\x8c\xd1\xef\xab\xb7\x23\x88\xa4\x5a\x5e\xbe\x6f\x5f\x48\xa8\x78\x9f\xac\x6b\xf5\xbb\x8f\xc1\xe2\xa3\xae\x1a\x85\x79\x32\x84\x6d\x1d\x3f\x63\x57\x25\x09\x11\x9e\xbc\xb7\x67\xe4\xbc\xca\x08\xb3\x95\xbf\xdd\x7a\xf0\x73\x16\xe1\xc3\x73\xbb\x79\x31\x2a\xc2\x04\xf3\x45\x0e\x09\x77\x5d\x86\x18\x7c\xb6\x30\x9f\xb4\xd8\x6e\x31\xc1\x60\x5e\x57\xd1\x8d\xd7\x07\x58\xb8\x6f\xcc\xff\x3e\xac\x8e\x21\x8c\xe6\x48\xcc\x11\x6e\x2b\x27\x1c\xb7\x5e\xfe\x79\x11\x6f\x39\xa1\x60\x51\xb3\x57\x97\x57\x39\xdb\x51\x41\xcb\xc2\x57\xee\x56\xb1\x84\x8d\x7f\x04\xdc\x03\x27\xf6\x32\xe8\xe5\xd6\x73\xb8\xa6\x99\x48\xe3\x28\x6f\x37\x59\xf5\x5a\xe5\x32\xe1\xc2\xd7\x4a\xc1\x11\xdf\x62\xc2\xc1\xec\xb7\xd7\x44\xcd\xc6\xc6\x99\x69\xb7\xac\xa1\x43\x32\x0b\xca\xad\x7a\xaf\x8c\x8b\x6d\x09\x7b\x57\xaa\x3e\xd3\xcd\x9e\x43\x78\xb4\xda\x75\xe9\x89\x57\xfd\x0c\x54\x14\x93\xba\xb4\xe7\xfc\x61\x50\x51\xed\xfb\x67\xf6\x72\x5d\x1a\x47\xcf\x81\xdf\x1c\xcd\x36\x8f\x19\x44\xe4\xfa\x77\x5e\x56\x31\x21\x3c\xb4\x99\x7b\xf7\xbb\xbb\x07\x1b\xce\xc8\xbe\x7b\x37\xa7\x55\x9e\xb0\x52\xd1\xd1\xc2\x33\x72\x35\xe1\x64\x86\x63\xb2\xad\xfd\x75\x82\x66\x70\xfa\x29\xc5\x23\xd7\x09\x8b\xf3\xe7\x2f\x17\xfc\x94\xcf\xc2\xf0\xa7\xb4\xa8\xc5\x63\xc5\xe6\xc0\x2b\x5b\x71\x31\x4b\xc2\xda\xeb\xce\x1f\x6d\x96\x58\xb3\x95\xb0\x8d\xcb\xf8\xc3\x77\x5a\x11\x6c\x9f\xae\x5c\xae\xf1\xd3\x89\xa0\x1f\x75\x7a\x93\xe3\xb6\x52\x82\x92\xdb\xce\xd3\x8e\x57\x14\x08\xae\x52\x36\x67\x1f\x2e\x94\x62\xc3\x0d\x6b\xe5\x88\xe0\x75\x5f\x18\xcc\xf2\xd2\xba\xa6\xd0\xda\xcf\x60\xaf\x4d\xf8\x1b\x97\xce\x28\x16\x5e\xca\x7a\xb5\x7b\x45\x66\x11\x7a\x1d\x9c\xbf\xeb\x64\x56\x10\x14\xdd\x9a\x0c\xff\x83\xe6\xdc\x96\xea\x34\x83\x2c\xc2\x90\xd2\x16\x97\x57\x1f\x36\x10\x3a\xee\xda\x08\x7a\x88\x15\x11\x7a\x62\x1a\x27\x99\xf2\x25\xb2\x90\x55\x7d\xbf\x7e\x77\x5f\x1c\xc1\x63\x6b\xe7\xa4\x3d\x63\xb8\x51\x7b\xc0\x67\xd7\x86\x53\x84\xa1\x80\x81\x39\x87\x39\xe4\x08\x69\xc7\xea\xb9\x2d\x65\x33\x08\x5c\x65\x9a\x7a\x2f\xc6\x90\x22\x74\xef\xde\xf3\xff\xa3\x08\xf8\x74\x27\xfe\xc8\xd9\x49\x98\x69\xa4\xf8\x62\x73\x8f\x05\x61\xed\x7c\x21\x9f\xc9\x91\xe6\x6c\x65\x45\x8b\xd8\xa7\xef\xd3\xb6\x12\x04\x24\x6f\x37\xe7\xde\x2a\x24\xb8\x2e\x77\xf1\x89\xda\xf8\x8d\x81\xe7\xca\x3f\x9f\x5c\x5b\xc6\xd6\xa9\xc5\x16\x5c\x51\x50\x24\xbc\xd0\x4b\x4f\x38\xdc\xe9\xcf\xc2\x7c\xfd\x9e\x38\xd6\x97\x58\x42\x6e\xc1\x17\xf5\x4a\x9e\x0b\x04\x6e\x6e\x66\xa0\x76\x8a\x3a\x61\x45\xff\xf0\x27\xd5\xb3\xcb\x09\xef\xf2\x0d\xd4\x66\x5d\x89\x24\x04\xdc\x58\x7a\x4e\xfc\x40\x30\x61\xbb\x43\x6d\x9d\xeb\xb7\xab\x84\xe3\xa2\x53\xa7\x6c\x5f\x67\x4f\xd8\x75\xb1\x47\x50\x36\x62\x1d\x0b\xef\xd7\xb7\x7e\x32\xdf\xe2\xc2\x02\xfc\xef\xda\x7e\xd6\x72\x25\x18\x6d\x69\x6e\xd6\xff\x0a\x06\xef\x6c\x5e\xfb\xfb\xbe\xdf\x40\xb8\xf9\xa2\x27\x72\xc7\x76\x43\x82\x93\xe4\xdb\xee\x90\x67\x95\x84\xb8\x6d\x7e\xa9\xa1\x63\xb8\x91\xa0\xd4\x61\xa1\x70\x89\x70\x59\x4f\xdb\xc7\xfd\x11\x11\x7e\x16\x86\x1d\x7b\x24\x79\x8c\xe0\x93\xf1\x71\xb1\xdb\x88\x0c\x81\xe5\x20\xda\xaa\xa4\x6a\x43\x78\xee\xb6\xf1\x9d\xb4\x72\x34\x21\xfa\xcb\xcc\xdc\x2c\x0f\x53\x36\x08\xdd\x13\x3c\xba\xf0\x44\x11\x0b\x95\xbb\xf9\xad\xb8\x1f\xa5\x13\x24\x53\xc9\xab\xbf\x42\x9a\x90\x79\x77\x58\x32\x6e\xbe\x38\x21\x7d\xe3\x74\xe3\x6e\xf5\x72\x82\x99\x96\x70\x8c\x97\x53\x3e\x61\x69\xa9\xee\x91\x24\xff\xb5\x34\x6c\xfd\x66\x55\x95\xe7\x53\x82\x4e\x4d\xfc\x32\x11\xf5\x27\x2c\x3c\xe9\xe1\x70\xfc\xaf\x2c\x2d\xd8\x53\x77\x52\xfd\x3e\x41\x20\x7b\x46\xbd\x70\xbf\x16\xa1\xce\xf1\xa8\x67\x4c\x9e\x30\xe1\x80\xa6\x62\x68\xc9\x0e\x7e\x42\xcc\xa0\x4b\x72\xf4\xa9\x09\x04\xb7\x57\x29\x65\xfa\x2b\x54\x08\x33\x6b\xf2\x4c\x33\x0f\x7a\xb3\x70\x2c\x72\xee\x5f\xe1\xca\xbb\x84\x27\x13\x4e\xde\x8c\x32\x97\x21\x28\x4c\x51\xdb\xb0\xc1\xbf\x9f\xc1\xe0\xb5\x40\xf9\x3f\xe7\x0b\x09\x7f\xdc\x6b\xce\xf8\x56\xe5\x12\x6a\xe5\x0e\x28\x84\x07\xd6\xb0\xc6\x8f\x36\x38\x30\x7e\xeb\x38\xad\xd8\xf0\x60\x71\xf8\x32\xfa\x58\xcf\x82\xcf\x24\x89\x19\xee\x75\xf7\x08\xab\xa3\xdd\x59\x01\x9a\xc9\x84\x42\xd7\x9e\x4f\x6e\x63\xc5\xa0\x2f\xf8\xf5\x6d\x2e\x4b\xc2\xf5\xea\xf0\xe2\x95\x65\x39\x04\x87\x3c\xe1\xa1\xaf\x5b\xf8\x09\xe9\xbb\x1c\x5f\x07\xff\x72\x64\x83\xde\xe6\xc2\x98\xf5\x07\xcc\x08\xa7\xda\x6c\xb3\x2b\x96\xa4\xb0\x50\x39\xbb\x6d\x52\xc9\x95\x0f\x0c\x52\x6f\x29\x66\xdd\x2d\xca\x22\x9c\xd3\x6c\xcb\x11\x8a\x9b\x48\x50\x38\x99\xbd\x22\x9b\x4b\x92\xc0\xd3\xe4\x38\x98\x5d\xab\xc2\x86\x19\x8d\xa9\x61\x87\x56\xab\x10\xe6\xf6\x2b\xaa\xf2\x18\x49\x12\xb8\xee\xea\x69\xad\x32\xbf\xc6\x86\x99\xdf\x63\x9e\xd8\xf4\x8d\x32\x88\xfc\xce\x7b\xd6\x5e\xec\x10\x0b\x7e\xa5\x9b\xb3\x35\xb4\x32\x08\x51\x29\x02\xf3\x1f\x98\xa6\xb3\xa1\xd9\x5a\xe1\x34\x47\x5e\x1a\x81\xf3\xc5\xa8\xf9\x83\xb1\x6b\xa8\x68\xbf\xcb\xca\xf0\xcd\x04\xc1\x51\x2f\xc1\xf7\x91\x2b\x09\x22\xfd\xfc\x96\xd5\x6b\x5c\x59\x90\xbb\x93\x99\xac\x7a\x7e\x0b\xe1\xad\x92\xc5\x26\xad\xd5\x36\x84\x26\xd6\xcd\x51\xdd\xb1\xf9\x7a\xe4\xa0\xaa\xf2\xe8\x88\x11\x61\x67\x77\xff\xd0\xc5\x88\xb1\xc9\xb4\x5f\x76\x7b\xa7\x98\x3e\xc1\x67\xda\xb4\xd6\x3d\x6f\x34\x09\xb2\x1f\x87\x5f\x5f\xab\x12\x22\x44\x6c\x59\x95\x6d\x58\x9d\x4f\xd0\x49\x15\x3f\x26\x5f\x90\x4f\xe8\x19\x2a\xe0\x71\xd3\x71\x23\x30\x03\x7d\xc6\xf6\x1c\xa5\x6c\xa8\x78\x7f\xa3\x72\xd7\xa2\xe2\x12\x44\xcd\x11\x7e\xa9\xc2\xf9\x8b\x81\x52\x2d\xb6\x96\x69\x38\x13\xa4\xab\x46\x7a\x93\x3f\x47\x94\x40\x41\x34\x6e\x55\xec\x67\x3f\x1a\x47\x60\xf4\x9c\x32\xb3\x58\x19\xc2\xed\x47\x41\xf3\xdf\x15\xa9\x10\x56\x4c\x39\xec\x76\x7d\x42\x1f\x83\xdc\x78\xa9\x1f\x66\xb7\x6f\x11\xa4\x3c\x1f\x47\xfc\x07\x99\xad\xa2\x7d\x5c\x4f\x62\xd9\xca\xff\xe0\x70\x6b\xe6\x47\xef\x4a\xcb\xff\x37\x1c\x6c\xa8\x2a\x35\x31\x99\x4c\xb8\xbb\xb9\xaf\xf4\xc6\xc1\x56\x06\xcf\xd7\x58\xe7\x1c\xcf\x6d\x63\x10\x6c\xd7\x55\x53\x12\x3a\x93\x40\xf3\x9e\xe4\x69\x98\x6f\x62\x83\xe8\xd1\x15\xd7\xef\x5f\xbe\xc4\xc2\x1a\xf5\x03\x9f\xde\x9e\xf8\xcd\x60\xe4\xc8\x47\x45\x99\x98\x60\x02\x87\x60\x5a\xef\xbe\xcf\x99\x04\x2e\xa1\x1d\xb5\xba\x03\x99\x84\xac\x76\x75\x66\x74\xb7\x35\x61\xdf\xd6\x14\xde\x89\x17\xbf\x30\xd8\x17\x74\xcd\xf8\xeb\xd8\x5a\xb6\xb0\x56\xe5\x47\xdc\x0c\x37\x1a\xc7\xb7\x7a\x52\x78\xea\x93\xc8\xc2\x9e\xb4\x67\x81\x57\xcb\xd7\xd0\x38\xac\x6e\x69\x2c\x12\x30\x4b\x27\x74\x6b\x5e\x7a\xbf\xbb\xd9\x90\xb0\x9d\x35\xa7\xe4\xfa\x82\x29\x84\xa7\x23\xf3\x0a\x8c\xfe\x14\x10\xfc\x0f\x8d\xcc\xd9\xfb\xb3\x80\x90\x56\x97\x3c\xfa\x76\xd3\x72\xc2\x92\x8f\x09\x97\x8c\x57\xcf\x26\xa4\xa8\x87\x1d\x7b\xbc\x91\x97\x0d\xdd\xe6\xa1\xdf\xf7\xc4\x0c\x31\xe3\x78\x65\xc6\xad\x73\x70\x7d\x25\x83\x9f\x2f\x77\x1e\xba\xcb\x53\x4c\x38\x91\xbb\x6f\xaf\xf4\x94\x62\x42\xdb\x94\x6f\x99\x17\x3f\xac\x22\x3c\xbc\xde\xb5\xb3\x71\xd6\x6c\x42\xeb\xda\x7d\x56\xa1\x9f\x43\x08\x45\x4e\xae\xe6\xc7\x29\x9e\x70\x41\xf0\x53\x9e\x67\xc0\x07\x06\x57\x3c\xe6\x18\x84\xdd\x95\xa0\xe1\x89\xcb\xbe\xed\x6a\x9e\x4a\xf0\x57\xb7\xcb\x76\x38\xc0\x49\x38\x69\x35\x7f\x67\x80\x9a\x00\xa1\x3c\xba\xf3\xd9\xf3\xc8\x08\xc2\x1c\xc1\xda\x77\x19\xc4\x8e\xf0\xd4\xb9\x92\xaa\xf7\x17\x13\x56\xfa\x2d\x91\x69\x4f\x14\x66\xc3\x7e\xe3\x45\xbc\xfb\x54\xff\x30\xc8\x3a\x7e\x2c\xce\xd0\xe2\x37\x83\x69\x9b\x37\x1b\x76\x2e\x11\x23\x4c\x72\x38\x90\x3f\x21\x49\x86\xc6\xcb\xc6\xad\x03\xcf\x0d\x7e\xc9\x11\x8a\x86\x12\xee\x34\x96\x99\x11\x14\x32\x4e\x1a\x4e\x54\x3e\x40\x38\x5b\xbf\x4b\x64\x8b\xdc\x6a\xc2\xed\x95\x3d\x49\x0b\x3c\x24\x08\x2b\x84\x9f\x58\x0f\x34\xbc\x25\x38\xff\x80\x8e\x67\x5a\x20\x21\x90\xa5\x34\x97\xef\xa5\x3b\x41\x32\x6c\x5e\xbf\xd9\x06\x55\x42\x8e\x41\xb0\xdf\x9b\x9a\x3c\x02\xaf\x47\xc5\xe2\xd3\x85\x1c\x84\xfa\x92\x94\x65\x42\xa1\xaa\x84\x34\xed\xed\x0b\x0e\xde\x48\x24\xd8\x1e\x15\x89\xd2\x9a\x66\xc3\x86\x43\x0f\xb9\x79\x2f\xe9\x69\x10\xce\xee\xb8\xc3\x65\x71\x60\x3a\xc1\x59\x93\x9f\xbb\xb7\x42\x82\xa0\xb6\x61\xdb\x48\xff\xd9\x9f\x0c\xcc\xea\x2d\xd7\x85\x7a\xab\x12\x56\x7e\xb3\x32\x58\xb5\x79\x0d\xc1\x62\xe7\xce\xa5\x7a\x28\x22\x14\x2c\x9e\xbf\x35\xef\xc8\x67\xc2\xab\x48\x4f\xaf\xde\x1d\xcf\x09\x4d\x69\x12\x51\xb7\xd6\x94\x13\xb2\x25\x54\xf5\x52\x57\xb8\x11\x2a\x17\xbe\x8b\x0b\x36\x3e\x45\x78\x72\x3b\xa4\x66\x4d\xba\x25\xc1\xf7\xdc\x67\xc7\x99\xe7\x37\x11\x3c\xb7\x55\x7c\x4a\x7a\xbb\x89\x70\xea\xdc\xd2\x9f\xbd\x09\xc7\x09\xb2\xaa\xf1\x3a\xdb\x53\xff\x30\xe3\x30\x8e\xf3\x39\x7b\x6e\x62\x3c\x61\x4b\x88\xde\x5b\x97\x9a\x4d\x84\x0d\x69\x8b\xb9\xb7\x1f\xdf\x4f\x58\x21\xab\x66\x22\xf4\xa6\x9a\xa0\x78\xc9\x51\xa5\xb9\x50\x8b\x70\x25\x26\x8c\x9e\xfb\x4e\x23\x6c\x9e\xae\x2c\xdc\x3a\xeb\x23\x83\xa6\xd8\x5a\xeb\x5b\x17\x79\x08\x97\x5a\x8f\xdc\xbd\x66\x1a\x49\xd8\xbc\xe8\x5a\xe3\x59\xa1\x1a\x06\x35\x4f\x4f\x75\x48\xa6\xbb\xd1\x38\x0c\xbd\x8c\x04\xa7\x54\xb5\x94\xa0\xd8\xe2\xad\x9a\x5c\xf8\x25\x42\x95\x6c\xb7\xc7\xe8\x4f\x13\x36\xbc\x68\xdd\x5c\x93\xde\xfe\x8a\x41\xe7\xb7\x55\xd3\xcc\x9b\x3f\x30\x08\xdc\xbd\xa8\x66\x5b\x2b\x3f\xc1\xf0\x7e\x4f\xd3\xcd\xe3\x66\x04\x2e\x46\x6a\x67\xc3\x4f\x57\xc2\x3d\x8d\x93\x32\x52\xcb\x2c\x08\xf5\xb1\xbd\x1f\x3a\x9b\x2a\x18\x5c\xcc\xeb\x3c\xc6\xda\x90\x4e\xd0\xff\xbb\xe9\x65\xed\xf1\x8b\x84\x39\x89\x72\xde\xa1\x65\xb1\x84\xaf\x61\xd1\x6a\x52\xfb\x39\x08\x95\x25\x07\x9a\x5d\xbb\x5a\x4a\x60\x57\x32\x31\xf4\xfd\xaa\x68\x1a\x47\xc9\x46\x3d\xfe\x6f\x02\x73\x09\x42\x7e\xaa\x89\xe7\xf6\xef\x22\xd8\x9d\x6f\xd8\xae\x34\x39\x9e\x90\x5f\xec\x22\xd2\x1b\x5b\x4c\xf8\x7e\xa3\xee\xb5\xdf\xdb\x5c\xb6\xe2\x59\xb4\xff\x6a\xed\x8c\x74\xc2\x43\x5e\xa5\x28\x65\x1f\x7b\x42\xc9\x05\xef\xc9\x93\x26\x09\x10\x42\x2a\xa4\xaa\x7e\x9a\x16\x11\xf4\xba\x8c\x67\x97\xf2\xf8\x10\x12\xbe\xf3\x65\x3d\xf3\x76\x21\x1c\x28\xea\x52\x92\xc9\x9e\x4f\x10\xdb\xce\x9d\x9b\x20\x96\x4d\x70\xee\x6e\xae\x9b\xff\x38\x95\x30\xf9\xfe\x8a\x25\x51\x7c\x02\x04\x1d\x8b\x5b\xfb\xbf\x39\xfc\x66\x30\xa9\xf2\x72\x62\xaa\xa2\x30\xa1\x3d\x40\x3f\x64\x82\xcd\x2a\x82\xa4\x6a\xc0\xe4\xb4\x8d\x65\x84\x1c\x93\xc6\xbd\xff\x27\xc2\xc1\x2b\xee\xf3\xb5\xac\x04\x22\x29\x52\xc9\xb3\x5f\x46\x10\xd2\x25\x33\x5e\xc6\xfd\x91\x24\x2c\xb9\x92\xb2\x75\x99\xac\x34\x61\xc1\x10\xc7\x71\xb9\xf9\xdd\x0c\x22\x2b\x8f\x0b\x44\x5d\x53\x27\xa4\xad\x73\xdf\xf2\xf7\xc2\x16\x02\xeb\x55\xbc\x58\xe7\xfc\x75\x84\x94\xc8\x53\xfd\x6e\x8b\xe3\x09\x26\x93\x15\xf4\xa5\x2c\x7e\x31\xb8\xb9\xd4\x65\x86\x44\xc8\x2e\xc2\xb4\xb7\x29\x53\xb7\x1e\x52\x25\x7c\xd7\x5b\x7e\xa0\xa5\x4c\x81\x30\x4a\x27\xe4\xaf\xd6\x29\x10\x26\x35\x36\x7b\x59\x4f\xcb\x24\x0c\xb0\x4a\x9e\x89\xab\xc7\x12\x34\x6a\x9b\xbe\xef\xdf\x92\x4e\xc8\x54\xd8\xac\xa1\x34\x75\x2e\x41\x45\xea\xf1\xbd\xbc\x95\xd9\x84\x59\x29\x7d\x11\xc6\x17\xdf\x94\xe0\xbc\x71\x9b\x96\xb0\xa3\x12\xfd\x03\x65\x9f\xd7\x69\x9a\xee\xfa\xc6\x40\x57\x5a\xb4\x9b\xb7\x76\xd9\xd8\x57\x10\x97\xd0\xfd\xcd\x97\xf0\xd1\xc8\xfa\xe1\xbe\xc3\x8e\x04\xd9\x81\x09\xf1\xbf\x7e\x38\x13\xec\x66\x04\xb9\x5f\x11\x9b\x4f\xb0\xae\xd1\x88\xec\xd8\x2d\x46\x88\xe5\x74\x30\xbf\x35\xd7\x9d\x70\x27\xbc\xd7\x1c\xfb\x5e\x33\xf8\x79\xe3\x43\x6c\x67\xb7\x04\x8d\x43\x62\x41\x6e\xeb\xc4\xc8\xbf\x0c\xa4\xb4\xe3\x94\xf3\x6c\x03\x58\x08\x76\x68\x7a\x67\x33\x9c\x49\x98\xc6\x9f\x7b\x43\x4a\xec\x3a\x41\x8a\x67\xf3\xe8\x2b\x6b\x57\xc2\xb4\xd7\xe7\xeb\x82\x16\x72\x12\xe4\x4f\x87\x96\x77\x0f\x4a\x13\xfa\x6d\xef\xec\x30\x9d\x9d\x4a\x98\xf8\xe0\xa5\xb1\x56\x52\x30\xc1\x91\x3b\x57\x79\xff\x9a\xe5\x04\x21\xc1\x86\xc1\x2a\x93\x3b\x04\x3d\x57\xea\xde\x2b\x58\x41\xb8\x77\x97\xb7\x73\x83\x8a\x11\x61\x70\xce\xe8\xc1\x0f\x33\x67\x12\xde\xf6\x2a\xde\x99\x9d\x26\xcb\x86\xc6\x03\x7b\xf7\xc7\x5c\x9f\x49\xd0\xf6\x52\x8a\xf9\x7c\xeb\x1b\x03\xb9\x4d\x67\x27\x4a\x34\x2e\x21\x24\x26\xc9\xf7\xb5\x2c\x10\x25\x98\x68\xb5\x5c\x4b\xdc\xed\xc7\xc2\xc2\xe5\x9d\x8f\x6d\xcd\xcf\x11\x0a\xd6\x9c\xe1\xcf\xfb\x3e\x97\x10\x66\x70\x7a\xbf\xf8\xe7\x12\x42\x94\xd6\x02\xd9\x2b\xe5\xd5\x2c\xe8\x6c\x5d\x1e\x3c\xe9\xeb\x63\x16\x5c\x8d\x26\x88\xa8\xab\x65\x13\x52\xcc\xd5\x7e\x79\xe8\x1f\x25\x70\xf6\x5d\xe3\x5f\x57\x74\x85\x85\x7b\x4c\x9e\xa7\xf9\xc0\x51\xc2\x93\x20\xdf\x4d\xe9\xaf\x36\xb1\x50\x1b\x5a\x6f\x7d\x85\x49\x66\x61\x95\x71\xd9\x99\xbf\xf3\x06\x18\xe8\xad\x6f\xe1\x8d\x76\x92\x27\x98\xec\x2d\xef\x36\xca\xb7\x24\x94\xbd\xdb\xbd\xba\xa8\x48\x86\x0d\x4a\x13\x2e\xd6\x07\xec\x00\x83\x29\x83\x8e\xe5\xb1\xed\x96\x04\x0b\xc6\x7d\x45\xd5\xc3\x0d\x84\xbe\xa0\x43\x4f\xc5\xf6\xc4\x12\x9e\x5c\x68\x1f\x96\xf0\xd7\x25\x44\xe7\x78\xfd\x58\xd4\x04\x06\xd5\xad\x59\x57\xed\x5e\x15\x11\xa6\x14\xde\xb4\x6d\xbc\xf6\x8c\x85\x47\x59\x23\x43\xeb\x3c\x92\x69\xfc\xc8\xcc\xed\x83\xea\x44\x5b\x4d\xc2\xfc\xd3\xf9\xbb\x27\xb5\xfc\x66\xf0\x3a\x5d\x84\x53\xc2\x45\x85\xb0\x34\xef\xec\xea\xcc\xb4\x5f\x0c\x82\x12\x8c\xb9\xde\xeb\x8e\x30\x08\xbd\x2e\xad\xb8\xc1\x42\x9e\xc6\x21\xff\xf4\xe8\xf1\x1a\xef\x0f\x0c\x8e\x7a\xb2\x1c\xac\x88\x87\x70\xb6\xe6\x49\xc0\xbc\x68\x75\x82\xe6\x84\x43\xf1\x7c\x1c\xe5\x04\x81\x49\x8f\x63\xf7\x4f\x3a\x43\x08\x4f\x3e\xd9\x36\xd8\x9c\x4a\xb8\xef\x91\x5a\xd6\x7f\xcf\x8c\xe0\x9b\x63\x7a\xfa\xb1\xd7\x34\x42\x4b\xfd\xdd\x77\x7d\x1f\x27\x13\x1e\x3e\x6d\x5b\xb8\xb3\x96\x83\x10\x11\x9d\xd3\x75\xfd\xee\x56\x02\xdf\x14\xa1\x2f\x33\x96\x5c\x20\xb0\x78\x5e\x69\x4c\x18\x5e\x47\x68\x6e\x92\x31\x7e\x38\x79\x1b\x1b\x52\x8f\xb6\x9d\x55\x08\x6a\x66\x10\xcd\x9c\xe1\xcc\xdf\xbc\x96\xd0\x19\xab\xf7\x2d\x60\xb6\x06\x21\x54\x20\xd4\xcf\x22\xae\x87\x41\xd8\x03\x49\x89\x16\xcd\x75\x04\xbf\x7d\x35\xdb\x12\x22\x67\x11\x3a\x27\x7a\xdd\x3e\x36\x3d\x97\xf0\xfb\x25\xb3\xfd\xe8\x18\xca\x53\x0c\xb6\x26\x71\xca\x12\x4e\xae\x73\x38\xb2\x7e\xad\x20\xc1\xe3\xc2\xd6\x25\x3a\x5d\x1d\x0c\x26\x26\x54\xd4\x38\xa6\x08\xd2\x3f\x10\x14\x2b\xf8\x6c\x88\x63\x01\x1b\x04\xab\x26\xad\x15\xf2\xee\x60\xb0\xe6\xeb\x16\xd3\xf8\x3a\x0d\xfa\xdf\xa0\x4a\x13\xf2\x02\x32\x4b\x18\xac\x65\x4e\x8e\x0a\x16\x76\x31\x78\xf4\xd2\x34\xee\xec\x9e\xe5\xf4\x0f\xb4\x1f\x79\xd8\x52\x19\x53\xca\x60\xad\x7f\x52\xcc\x07\xfd\x4d\x84\x5f\x7f\x95\x9a\x9f\xf9\x1f\x22\x28\x3b\x71\x66\xfd\x07\x41\x91\xa6\x9f\x52\x66\x77\x18\x5c\x38\x2e\xb7\xe8\xba\xc2\x22\xc2\x83\x77\x25\x3e\x61\x27\x44\x08\xfb\x2e\x7c\x4c\x6a\x10\x14\x24\xe8\xe4\x31\x19\xf5\xf3\x37\x10\xd6\x1d\xf9\x93\xe9\x68\x3a\x83\xf0\x62\x9a\x40\xc9\x1f\x1b\x30\x70\x5b\xbe\xf9\xc2\xee\x5a\x05\xc2\x21\xa7\x4b\x9a\x81\x39\xd2\x04\xf1\x56\x59\x4e\x4f\xbe\xd7\x0c\xda\x7c\xe6\x2c\x19\x4d\xd4\x25\xac\x4d\xe0\xb8\x93\xbe\xbb\x8e\x70\x2e\x4e\xa5\xc4\x62\x61\x11\xa1\x21\x39\x24\xa8\x56\x3b\x98\x50\x42\x68\x09\x97\x59\x45\xe0\xfa\x10\x11\xe7\x99\xf2\x89\xc1\xc9\x8a\x0f\x15\x13\xaf\x59\xd3\x38\x82\x52\x38\x47\x96\x1b\xab\x11\xe6\xf7\x76\x04\xd9\xeb\x6a\x10\x78\xaf\x70\xe8\xc9\x68\xf7\x33\xb8\xd4\x86\x93\xd5\x37\x2d\x09\xce\xeb\xaf\xaa\xb8\x53\x08\x1b\x52\xbf\x2b\x5e\x31\x1d\xf4\x21\x4c\xf9\x9e\xe6\x54\x5c\x18\x30\xb6\x6f\x5e\x58\x7a\xf5\x54\x1d\x33\x8e\x46\x09\xf9\x21\xed\x90\x3e\x06\x9b\xd3\x44\x1a\x2a\x1c\x3a\x18\xf4\xf3\x9d\xd9\x68\x38\xc4\x43\xe3\xb8\xf6\xf1\xa6\xe8\xb6\x0c\x6e\xc2\x8e\xc3\xa6\xb1\xce\x7a\x37\x08\x89\x1a\x29\xb1\x6f\xeb\x45\x09\x9d\x91\x2a\xc7\x8b\xd5\xa4\x09\xdf\x06\xf8\x04\x3b\xd6\xf7\x30\xe3\x48\x30\x36\x7b\x59\xb8\x53\x82\x70\x72\xd0\xb1\xc6\xec\x7e\x3f\x83\x12\x2f\x39\x31\x99\x97\x41\x84\xc7\xe7\xb4\x55\x2b\x1d\x8e\x10\x46\x82\xdc\x17\x1c\x6f\x8d\x22\x74\x2d\x6e\x35\xdb\x76\x42\x8f\x0d\xcd\xbd\x11\xef\x3c\xb7\xbe\x2f\x81\x8b\xf0\x04\xa1\x9b\xa7\x2d\x09\x97\xb6\xea\xef\x39\x97\x2e\x40\xf8\x79\xf5\x75\xd1\xb9\x3a\x59\x42\xac\x90\xf4\xe3\xbc\x46\x1e\x82\xc9\x53\x87\x9d\xfb\xe3\xa6\x11\x26\x8d\x4e\xde\xa2\x16\x5d\x5b\x02\x9e\xa0\x42\x59\x4d\x5e\x43\x1a\xc7\x87\x8b\xdc\x7e\xc5\xca\x72\x84\xdf\xf7\xa2\xf5\xd2\xe4\x92\x09\x91\x9a\x95\x53\xb8\x62\xd2\x58\x68\xd2\xae\xf6\x9d\xfd\x75\x29\xe1\x5c\x4d\x68\xa4\xfb\x42\x5e\x42\xf3\xe9\xfb\x37\x14\xc3\xfc\x09\xa8\xce\x76\xea\x16\x9e\x4f\x18\xe4\xff\xec\x98\x97\x3b\x91\xb0\xbf\xae\x2d\xf8\xcc\xed\x0c\xc2\xe1\xec\xb8\x25\xa5\x11\x37\x09\x92\xb2\x1e\x93\xf9\x55\xd4\x08\xb7\x6b\xe4\x36\x7e\x8b\x5a\x42\x58\xb5\xf6\xed\x94\x90\x64\x2d\xc2\xdf\xa9\x3f\xed\xe2\x84\x7b\x18\xdc\xfe\xd1\x1f\xfc\x40\x3d\x89\xc6\xf1\x77\x8e\xc3\xba\x75\x67\x84\x08\x8f\xc2\xbc\x27\x04\xbf\x54\x22\x98\x5b\xe9\xdc\x7f\xf8\x66\x22\x21\x64\x60\x57\xf8\x1d\xfb\x99\x6c\x68\x99\xd6\xfa\xa3\xe3\x56\x69\x09\x14\xbf\x67\x3b\xe1\xcd\x54\xc2\x8a\xe3\x96\x9d\x1b\x1b\xe3\xfe\x57\x7c\x78\x7e\x5e\x46\x37\x3b\x92\x60\x3b\xba\xfb\x86\xd3\x74\x5e\x82\x50\x72\xd6\x87\xb6\x96\xfb\x84\x17\x09\xcb\xef\x2f\x78\x77\x93\xb0\x4c\x74\xdd\xfe\xc6\xd8\x5b\x04\x89\x5f\x91\xba\xdc\x7c\x7b\x09\xbf\xfa\x9e\x4d\x38\x96\x2f\x45\x70\xf6\x3d\xcf\xbb\xba\x6c\x0b\xc1\x55\x48\xe4\xb1\x5b\xb1\x0f\x61\x72\xff\xd2\xd8\x2f\x9b\x82\xd9\xe0\x76\xc1\x7c\x7f\xfd\xb4\xaf\x0c\x1e\x6c\x31\x90\x5c\x55\xad\x41\xf8\x14\x3f\xa5\x77\x49\xac\x2e\x41\x7c\x89\x76\x22\x4f\xe5\x64\xc2\xf1\x59\x62\x19\xc9\x3f\x12\x09\x6b\x4b\xa7\x45\x8c\xe6\x9f\x25\x7c\x91\xb4\xda\x9d\x7c\x63\x25\xe1\xdd\xb5\xe3\x9f\x26\x7c\xea\x2e\x81\xbb\x2b\x4f\x80\xaa\x6b\x1c\xe1\xe3\xd6\xdb\x0a\xff\x21\xea\xa1\x5c\x40\xd6\xb5\x79\x04\xc1\xa8\xf2\x93\x9d\xae\x22\x04\x0e\x2e\xd6\xf1\x16\x07\x13\x36\x5c\x9e\xed\xec\x6c\x17\x20\x48\xe0\xe9\xc8\xee\xe3\x90\xd1\x22\x3c\xbf\xb1\xc1\xa5\xf1\x82\x1f\xe1\xe5\x9c\xbd\x22\x4e\x89\xdb\xd8\xa0\x58\x1d\xbe\x84\x5f\x7f\x07\x41\x76\xda\x3e\x51\x4e\x21\x5f\x42\xed\xeb\xe1\x7e\xb9\xe1\x0a\xc2\xd7\x9f\x55\xa3\xdd\x97\x9f\x11\x92\x7e\x08\x1c\xf4\x38\x1e\x49\x18\xcc\x8c\x89\xb9\x7e\xd6\x9b\x70\xda\x42\xe5\x68\xfc\x35\x55\xc2\xe9\x98\xb8\x3f\x81\x62\x1d\x0c\xa6\x2d\x16\xd7\x5a\x1f\xe4\x42\xe3\xe8\xb5\x1b\x3e\x74\xeb\x88\x0a\x41\x28\x92\xf7\x5b\xc2\xa5\xb9\x84\x48\xf3\xf4\xba\x92\xe7\x3b\x09\xb3\xee\x75\x3e\xee\x6b\x72\x26\x7c\xf1\xdc\x9b\xbb\x39\xc9\x9a\xa0\x1d\xba\x22\xa0\x37\x7a\x3e\x41\xb0\xe8\xfb\x8f\xcf\x51\xc2\x84\x29\x89\x5b\x53\xbe\xcf\xd2\x23\x9c\x5e\x3f\x67\xe9\x9f\xed\x85\x84\x7b\xc5\x7d\x93\xfe\x43\xe2\xc5\x43\x3d\xbc\x05\x31\x04\xe1\x8d\x06\xb7\xe6\x2e\x5f\x4c\xf8\xfc\x8a\xdb\x5c\xb1\x78\x2f\x21\xe7\x80\x52\x50\x6c\xed\x16\x42\x72\xee\x8b\xaa\x99\xb6\xea\x84\x19\x05\x5d\xbb\x46\xe7\xd6\x30\x50\xdd\x31\xc9\x43\x55\xb9\x8a\x85\xc9\xe5\x6e\x91\x03\x6b\x7f\x33\xd0\xee\xca\x2c\x34\xaa\x9e\x45\xb8\xc8\x29\xb6\x92\xd7\x8c\x21\x1c\x3f\x3f\x31\x70\x64\x95\x35\xc1\xc7\xb3\xc6\xe7\xef\x8a\x52\x16\xd4\x8e\xcd\x32\x92\x8a\xca\x60\xe1\x56\xec\xe4\xc0\xef\x5c\xf1\x2c\x2c\xbf\xb5\x62\xeb\x74\xac\x25\x64\xea\xb7\x5e\xb8\xcd\x2f\x4b\xe8\x31\xfd\x98\x18\x7f\xb5\x9f\xc1\xe9\x45\xad\x75\x3b\x22\x87\x18\xa4\xe9\x8b\xbb\xb4\xce\xd8\x44\xff\x80\xb8\x5a\x97\xf6\xca\x2f\xcb\xff\x85\x35\xf2\x32\x1f\xb5\x86\x66\x12\xb8\x16\xf3\xbb\xca\x38\x5e\x66\xc1\x4b\xb3\xf2\x57\x99\x59\x38\xe1\xd9\x84\xb5\x4e\xd6\xd6\x03\x0c\xb6\x6c\xfa\x73\x2b\x7b\x60\x0b\x21\xdb\x7c\xaf\xc4\x83\xa3\x1b\x09\x33\x83\x66\x58\xbb\xca\x68\x10\x84\x04\xcc\x5a\x6f\xf4\x35\x31\xd8\x65\x14\x39\x73\x8d\xa5\x04\xc1\x9f\x65\x43\x23\x16\x5f\x19\x68\xd1\xe2\x94\xc0\x0c\x4f\xfa\x07\x1e\x4a\x97\x9a\x5c\x92\x5e\xc8\x86\xfe\x13\xcf\xee\xac\xaf\x35\x20\x7c\x77\x58\x5a\xb5\xf2\xf9\x69\x82\x53\xa0\xfa\x6a\xcf\x64\x0b\xc2\x99\xa1\xc5\x9c\x1d\xd1\x1b\x08\x58\xc1\x33\xbd\x2f\xa8\x8c\x60\x9c\x96\x28\x7a\x8a\x95\x43\xc8\x2a\x7a\x73\x76\xf0\x76\x0e\x21\x5a\x7c\x49\x14\x6f\xc1\x64\x82\x70\xe7\x81\x9e\x49\xf5\x17\x09\x8d\x1d\x92\x97\xa3\x57\x4e\x20\x2c\xd6\xcf\x36\x3c\x70\x51\xf0\x5f\xd8\x53\x5f\xbc\xd7\x5f\x11\x0c\x54\x6b\x96\xba\xd7\x2e\xb3\x21\x64\xfc\x88\x9b\xa1\x90\x21\x48\xd0\x98\x30\xf5\x80\x82\xde\x00\x83\xcb\xfb\xbd\xee\xfd\x6a\xaa\x67\xb0\x8f\x23\x66\xa3\x8f\x04\x2f\xfd\x03\x17\x3d\xfb\x1b\x5e\x7b\x82\x19\xc7\x94\x77\x77\x2d\xb8\xbb\x8e\xb1\x90\x92\x1b\xd5\x76\x3a\xbb\x9f\xb0\x58\x73\x1f\x47\xe0\xae\x2c\x42\x9a\xd2\xb7\x96\x15\xfa\x65\x84\xe6\x4b\x65\x39\xff\xc1\xa2\xfc\x9a\xce\xd2\x86\x5c\x42\xe8\xb0\x6c\x7d\xb0\x77\x3e\xe1\x6e\xca\xc6\xee\x23\xb3\x8a\x09\x8b\x4d\xff\x7f\x8c\xdd\x69\x34\x56\xef\xfb\xc7\xfd\x64\xa8\x54\xa6\x24\x51\x42\x92\x29\x24\x32\xef\x23\x69\x92\x06\x9a\x0c\x65\x48\x1a\xa4\x42\x91\x21\x15\x32\x86\x28\x25\x52\x08\x21\x4d\x2a\x42\x86\xcb\x18\x4a\x4a\xa8\xa8\x34\x48\x86\x24\x14\x7d\x24\x75\x2f\xdd\x6b\xfd\x5c\xff\x75\xb7\xbe\xeb\x7e\xe4\xb5\xde\xa7\x07\xd7\xb9\xed\xe5\x38\xf7\x93\x7d\xcd\xef\x76\x74\x3e\x42\x18\x1a\xb8\xda\x3d\xe7\xf9\x45\x42\x9a\x88\xce\xa4\xf2\x10\x35\xc2\x44\x4b\xc3\x8b\x3c\xba\xe3\x08\x13\xff\xd4\x19\x71\x3e\x5a\x42\xc8\xf6\xdc\x3d\x50\x62\x12\x45\x28\xd0\x5d\xa3\x63\x70\xa3\x9f\x81\x4c\xf5\xbd\xc9\x10\x2d\x20\x4c\xa8\xbb\xdd\xf1\x52\x5b\x8f\xd0\xe0\x9d\x7a\xfa\xb3\x5f\x28\x61\xf5\x50\x6f\xbe\xeb\xc5\x83\x84\x8e\xeb\x02\x79\x02\xa7\x64\x09\xc5\xa7\x66\xf9\x0e\x7f\x7d\x41\x28\x9a\x70\xce\x40\x29\xea\x21\x01\x0a\x76\x3c\x1f\x5f\xdd\x66\x21\xa7\xb3\xaa\x72\x55\x63\x22\x61\x82\xa7\xdf\x62\x11\x99\x5a\x42\x87\x7f\x63\xa7\x7c\x6b\x32\xc1\x7e\xeb\xc3\xd4\xe7\xb2\xa7\x09\x7b\x6a\x5d\x06\x7b\xf4\x9e\xb2\xb0\xcd\x28\xe0\x5e\xcf\xe6\xd3\x84\xb9\x9e\xf6\x1b\xbf\xb5\xf9\x12\xfe\xf4\x57\x3d\xe6\x75\x08\x67\x61\x67\x4b\xf8\x82\x5b\x25\x1f\x09\x17\xb7\x7f\xca\x14\x08\x39\x43\xb8\x58\x97\xf0\xf2\xfc\x97\x72\x82\xd4\x17\xc5\x9d\x4d\x8b\x0b\x68\x48\xa1\xe2\x1c\x56\x14\x10\xe6\x5e\x3b\x1b\xc6\x4a\x6a\x67\x81\xe9\xcf\xe0\x7a\xb5\xb8\x80\x50\xfd\xb1\x59\xf2\x88\xb9\x17\xe1\xd4\x7d\xfb\xf4\x85\x76\xe7\x59\xf8\x7a\xb4\xc1\x40\x23\x60\x17\xe1\xba\xc4\xa2\xb9\xad\xd7\x77\x12\x8e\x4f\x7b\x78\x33\xc4\xfe\x20\x0b\xb3\xd6\xc6\xab\xdd\x6f\xc9\x25\xa4\x70\xf5\x9a\x26\xfb\x5f\x25\x08\x8e\x3f\xfc\x06\x99\xc5\x04\x79\x07\xce\xd9\x75\x17\xf3\x09\xd2\x4f\xf6\xd3\x8f\xce\x6b\x84\xe4\xa4\xd8\x5e\x0d\xbe\x7b\x04\x75\x67\xce\x07\x77\x96\x24\xb1\x70\xc5\x7e\x75\x82\xa7\x6e\x3e\xc1\xef\x94\xf2\xd0\x0c\xd7\xfb\x04\x99\xa2\x1c\x9a\x6a\x7a\x9b\xa0\x5c\xa4\x7c\x35\xc9\xfe\x3e\xe1\x46\xee\x9d\x8d\x39\xb7\xe2\x09\xf7\x7c\x34\x9e\xba\x18\x0f\x32\x50\xf5\xb7\xdc\x25\x1f\x70\x85\x70\x56\xf4\x47\xfa\xbb\x5f\x25\x2c\x84\x36\xd8\x72\x29\xb6\x7d\x67\x30\xb0\xe1\x53\xfe\x0d\xff\x15\x04\xeb\x6b\x53\xd6\x8e\x1b\x3d\xb7\x9a\xcc\x8b\x58\x5d\x55\xe8\xc3\x86\xed\xe7\x25\xbb\x23\x16\xda\x10\xe4\x9f\x4f\xdf\xd7\xa0\x3b\xc2\x60\x56\x8d\xff\x92\x09\x9b\xe5\x09\xf2\x97\x7b\xaa\x25\x39\x25\x09\xc6\x23\xf6\xbe\x0d\x3c\x33\x08\x43\x0d\x67\x33\x67\xa5\x15\x13\xfe\x1c\xe5\xf0\xb2\x3b\x50\x42\xd0\x10\x35\x96\x15\x15\xdc\xcb\x06\xb9\xa0\xce\x86\x98\x27\xd1\x84\xda\x3f\x61\x3d\x8e\x27\x6b\x19\xf0\x75\x39\x9e\x3c\x16\xff\x8b\x81\x76\xf7\x7c\x81\x8c\xd1\x81\xf6\x3f\xac\xef\x4c\x4f\x17\x33\x93\x21\xe4\x18\x4b\x5c\x5e\xac\x59\x53\x84\x03\x87\x2a\x66\x71\x0f\x73\xd3\x18\x8e\x65\x7a\x1a\x9a\x5a\x37\x16\x61\xfa\xda\xef\x3c\xaf\xa4\x39\x09\x0b\x7e\xc7\x7a\x3e\x7f\x28\x44\xa8\x5c\x14\xb3\x57\x71\xa2\x05\xc1\x63\x92\x4d\x97\xbd\xde\x26\xc2\x7a\x75\x01\x8f\x49\x5c\x65\x0c\xde\x38\xb9\x29\x49\x36\x3c\x66\xd0\xf1\x10\xbf\xee\xcc\x58\x4d\x63\x10\x9a\x65\xa4\x10\xfc\x1d\x0c\x9a\x1f\xde\xf0\x6c\x7f\xf0\x93\x81\xea\x56\x3a\xb5\xfd\x45\x3c\x61\x7e\xd2\x29\xcd\x2b\x0d\xde\x84\x94\xd2\x6c\x39\x9b\xed\xfe\x04\x8e\x61\xc1\x55\x32\x41\xfe\x04\xc5\x27\x48\x3e\x76\x29\x92\x70\x23\xf9\x80\x82\xc9\xb1\x50\xc2\x8c\x0f\x9a\x0d\x6b\xbb\x33\x09\x39\xee\x26\x67\x7b\x25\xfa\x19\xe4\x76\x98\x36\x0c\xbb\x16\x10\x6c\x33\x17\x8f\xf8\x9c\x4b\x24\x9c\x88\x53\x06\xaf\x88\x20\xa1\xd8\x4e\x69\x8f\xee\xce\x78\x82\xcc\x2a\xbd\x70\x89\xf6\x8b\x84\x57\xfd\x77\x7f\x5e\x3d\x98\x4b\x10\xb4\x0f\xa9\xf9\xbf\x98\x92\xab\x72\x2c\x72\x4a\x3a\xc1\x7c\xc3\xeb\x4f\x7d\x3c\x36\x84\xac\x03\xcf\xeb\x53\xd4\x16\x11\x44\x7e\x0f\x7e\x72\x78\x74\x91\xe0\x96\x71\xd8\x65\xef\x28\x66\xf0\xdd\x09\xaa\xbf\x72\x99\x20\x86\xf5\x6a\x57\xcf\xe4\x13\x02\x8b\xcc\xe6\xcc\x9e\x7b\x83\x85\xa3\x3b\x8f\x2f\xe1\x7b\x56\xc6\x42\x95\x8f\xa6\x9e\xac\xc2\x5d\x16\xb6\xc5\x87\xc5\xfc\x45\x27\x4f\xb5\x51\x54\x56\x22\xe1\xb7\x88\x6c\xfa\xf5\x75\x89\x04\xa3\xdb\x0d\x8e\x59\x8a\x09\x04\xe7\xa3\xb2\x5a\x5e\x05\xd7\x09\x6b\x7f\xd4\xb3\x3c\x6e\x89\x11\x36\x2a\x6c\x0b\x7c\xf1\x2d\x90\x30\xd9\xe3\xc4\x90\xa7\x9b\x25\x1b\xe6\x0b\x3f\x2e\xe5\x1c\x1e\x66\x70\x5c\x2b\x24\x29\xb6\x4a\x9a\x30\x5b\xba\xa2\xc4\x6d\x71\x22\xc1\x70\xde\x42\xb2\x91\xc9\x24\x44\x3e\x14\x7d\x72\x82\xc4\x08\xb1\xa6\xc2\x5e\xfe\xf7\xe3\x08\x91\xc7\x4e\xea\xf2\xe5\x5d\x20\x18\xed\xf9\xfd\x26\xef\xa9\x36\x61\xd0\x8b\x8f\xf3\xc7\xa7\x1f\x0c\x3e\x77\x48\x73\x5b\x04\x4b\x10\x6c\x95\x72\xcf\xb6\x2d\x53\x25\x9c\x2b\x76\xe0\xf9\x66\x1c\x4c\xa8\x48\x79\x71\x26\xeb\x81\x14\xe1\x9c\x6c\xda\xd9\xe8\x89\x5c\x84\xec\x73\x77\xbe\xcd\x24\x3e\x42\xc9\x6c\xbf\xc5\x4b\x9f\xee\x64\xc3\xa4\x17\x07\xbe\x99\x4a\xee\x2d\xc2\xd7\x55\x7d\xe1\x3f\x2e\xdf\x26\x94\x0a\x66\x2e\xcb\x8b\xbc\x4d\x58\x54\x2c\xdb\xf8\x65\x61\x2d\x21\x34\xfa\xc9\x9c\x84\x84\x3c\x82\xa5\x18\xcf\x4b\xd3\x8d\xd3\x08\x07\x04\xdc\xa6\x69\xbc\x19\x62\xb0\x4c\xaa\x77\xd2\x6a\x8d\x66\x06\x7f\xe2\x55\xc5\x4e\x3c\x32\x65\xa1\x66\x6f\x2e\x23\x5e\xda\xc6\xe0\x40\xb2\xfd\xf4\x74\x89\x48\x16\xb2\xaf\x27\x25\x66\x79\xfe\x62\x70\x40\xd2\x3e\x80\xb1\x9a\x49\x63\x40\x63\xad\x43\xca\x3e\x0e\xc2\xb5\x57\x6a\x32\x69\x4b\x24\x09\x81\x4f\x4f\xc8\x6b\xbe\x1c\x47\xb8\x5c\x7a\x55\x66\x92\x28\x37\xc1\x45\xd3\xe5\xac\x65\xbe\xea\x18\x86\x52\xc2\x2d\xd7\xb9\x6b\x10\xcc\x9b\x6e\xe9\x4d\xf0\xbf\xcc\x42\xf5\xdd\x22\x9b\xca\xad\xa5\x84\x06\x31\x3f\x37\xc3\xad\xab\x09\x6e\x13\x26\x5b\x56\x2b\x14\x12\x28\x5a\x23\xf8\x2f\xf6\xd9\x6d\xfa\x7e\x63\xf8\x14\xa1\x28\x37\xc1\x8b\xe5\x75\x99\xb0\xcf\xc8\xe9\x46\xd4\xef\x44\xc2\xb1\x5c\x41\xe6\x86\x77\x10\x41\x2b\x7a\xba\xdc\x47\xc1\x27\x84\xac\x95\xc2\x1b\x3e\x8d\x62\xa3\x5b\xf7\x20\x87\xff\x29\xc2\x09\xa7\xdd\x5f\x3a\x47\x4b\xb3\xec\x60\x6d\x53\x5b\x32\xc1\x5b\xd1\xcd\xc3\xf8\xd1\x7e\xc2\x1c\xad\x1c\xef\xa1\x9e\x15\x84\x2b\x9c\x39\xee\x13\x39\xd4\x09\x8b\x0f\x2d\xaf\xda\x7a\x62\x19\xa1\xd3\xe4\xd3\x21\x73\xdb\x3a\x82\xee\x8d\x43\xa9\x26\x7b\x3c\x08\xf7\xf9\x77\xdf\x5d\xfb\x38\x9f\xb0\x58\x94\x3f\xf2\x95\x01\x07\xe1\x93\xb4\xc0\xcb\x11\x3e\x5e\x82\xfe\x1b\x7f\x59\xa1\xfd\x47\x59\x10\x3e\xc1\xbf\x5a\xd9\xaa\x8f\x41\x49\x6f\x75\x77\xeb\xcc\x06\x16\xcc\xb2\x2d\xe7\x8f\xaf\xd2\x23\x98\x8f\x5b\xe7\x56\xfd\xce\x98\x85\x9f\xd5\xfb\x25\xd7\xd6\xcc\x22\xbc\x78\xa5\x39\xce\x71\x89\x0e\xc1\xe6\xc8\xf2\xa0\x69\x6d\xa3\x67\xf7\xa7\x07\x7c\x67\x2c\xe9\x61\xf0\xfa\xe7\xc1\x15\xd1\x6b\x8c\x68\x0c\x56\x3e\x43\x4e\x7d\x5b\x17\x12\xee\x86\xc6\x54\x18\xf9\x6e\x20\x04\xbe\xc6\x24\xbf\x22\x7f\x82\x65\x3c\xb3\xc3\x61\x8b\x2b\x61\x96\xef\xc5\x4f\xae\x4f\x46\x18\xcc\xcd\x54\xba\xd7\x34\x71\x06\xc1\x42\xbe\xfd\xf0\xa5\xa7\x93\x09\x69\x56\x31\x22\x0a\x37\x07\x18\x04\x2c\xf2\x34\xd6\x9d\xcc\x45\x88\x71\xfc\xf6\x48\x7d\x9c\x14\x41\xf0\x4d\x68\xb7\x6e\xad\x0b\xa1\xe9\xdc\x8c\xfb\x82\xe1\xe9\x2c\x88\x75\xf3\x6d\x1e\x39\xe6\x43\xd8\x33\xdc\xd6\x93\xfc\x4b\x8c\xf0\x7b\xd3\x54\x19\x9b\xde\x21\x06\x32\xe7\xdd\xae\xa8\x0f\x7a\x13\xbe\x26\xef\x9e\x58\xe7\x76\x89\xa0\x3b\x2d\x73\xf3\x84\xd6\xd1\x39\x3d\xa1\x44\xfa\xe6\x63\x5e\xc2\x9a\x9c\xaf\x73\xf8\x62\xbe\x31\x88\x59\x27\x1a\x18\xa5\x3d\x93\xf0\x4c\x27\x65\x43\xa5\x23\x3f\x61\xe6\xe5\x95\x1f\xb8\x0e\x8c\x30\x08\x1c\x37\x23\xdf\x44\x50\x9f\x60\x56\x68\x34\x9c\x32\x6f\x3e\xa1\xa2\xf4\x7b\xce\x8c\xeb\xc3\xcc\x18\x8a\x36\x6b\x1f\x3b\x79\x64\x74\x18\x0f\x3c\x4c\xe2\xbe\x04\x06\xd2\x5b\x36\xad\x6b\x99\xab\x4a\x30\x38\x70\x66\xc5\x94\xde\x1f\xcc\x18\x24\xb2\xf9\xae\x94\xdd\xe4\x24\x0c\xa5\x1f\x3c\xf1\xc8\x20\x9b\x10\xbc\xec\x15\x67\x86\x93\x17\x61\xfb\xc2\xd4\x40\xcb\x23\x0c\xa1\x40\x24\x5d\x76\xa2\xe8\x37\x06\x3d\x57\xdb\x04\xb6\x0a\xc8\x11\x24\x24\x13\xac\xe6\x4c\xd5\x27\xcc\x1e\x94\xf6\xe6\x3d\xbf\x8c\x10\x55\x61\x23\xa9\xb5\xf6\x2e\xc1\x76\x4a\x74\x7f\x45\x46\x3e\xe1\xa0\xd9\x44\x79\xdb\x27\x65\x84\xe1\x85\x13\x7d\x3e\x8c\xce\x28\x85\xb8\x62\xc9\x07\xa3\x4b\x8f\x5f\xcc\x3d\xfd\x82\xcf\x9d\xf0\xe7\x4b\xd1\xac\x67\x52\xc9\x2c\xe4\x96\xdc\x14\x50\x9d\xe6\x4e\xd8\x55\x23\xc4\x9d\xff\xfd\x30\xa1\xcb\x91\xaf\xe0\xa6\xe4\x6b\x82\xd9\xed\x3f\x9f\x9e\x19\xd5\x11\xce\x85\x6b\xf1\xbd\x0b\x7d\x40\x48\x3e\x3c\xeb\x72\xd6\xca\x3a\xc2\xf5\xe9\xa5\xc3\xf3\x5c\x9e\x11\x8e\x6f\xf3\xbc\xcf\x8a\x88\x21\xa8\xcf\xa9\x52\xe1\x57\xcc\x20\x44\x6d\xb8\x92\xd1\xf5\x3c\x99\xf0\x72\x38\xde\xe9\x8b\x4b\x12\xa1\xe3\xd7\xbe\x20\xb9\x47\xa9\x04\x89\xbc\x02\xd7\x80\xd3\x31\x04\x1b\xe5\xf3\xe9\x3b\xaa\x1d\xd8\xc0\x1b\x61\x2c\xac\xf2\x70\x2a\x61\xda\xd5\x3a\x33\xc5\xb4\x9d\x04\xa7\x07\x7c\xcf\xcc\x59\x22\x04\x1e\x0e\xbd\x17\x8b\x8a\xf5\x08\xcf\xf7\x49\x4c\xe6\xd2\xfc\xce\x8c\xe1\x96\x9c\x84\xb8\xed\xd4\x3c\x06\xf2\x83\x33\x92\xa7\x8d\xbf\x47\xf8\x56\x90\xb1\x4b\xcc\x27\x87\xa0\x72\x59\x7c\xd5\x8d\xd9\x0e\x84\x6b\xcb\x9f\x67\x7b\x5d\xc8\x20\xf8\xf1\x2a\x8d\x78\xfe\x1f\xc8\x47\x2e\x16\x09\xef\xb0\x26\xb4\xfa\x3a\x70\xcd\x6b\xb6\x66\x2b\xff\x43\xc8\x71\xef\xca\x5d\x93\x36\x10\x52\xb7\xa6\x60\x47\xd8\x52\x82\xfb\xd0\xa6\xdd\x26\x9e\xad\x0c\x2c\x2f\xea\x65\xa5\xbd\x72\x24\x28\xd5\x9e\x48\x20\x8d\x28\xc2\x21\x67\xe5\x2d\xdb\x14\xb8\x09\xa6\x05\xd3\xe7\xa6\xad\x39\x42\x58\xcd\x97\xe7\xd1\xb2\x65\x39\x41\xe3\xec\xf9\xa9\xbd\x2f\xe7\x12\x9a\xa6\xce\xbd\x34\xb1\x59\x8f\xb0\x90\xf7\xcc\xe5\xfa\x4d\x7a\x84\x90\xb8\x08\xcf\xc5\x9c\xd3\x08\x12\x35\x11\xea\x7a\x1d\x53\x08\x39\xb5\x2b\x73\x2e\xbd\xe1\x21\xf8\x08\xdd\x50\x3d\x6e\x62\x49\xb8\xaa\x36\xb7\x76\x42\xfe\x3b\x06\x5b\x76\x1c\x3e\x69\xac\xaa\x44\x63\x48\xec\xba\xd4\x28\x62\x3c\x85\xf0\x4c\xd0\xef\x87\x9f\xfb\x26\x82\x5e\xa5\xb2\xe1\xbe\x3f\x6a\x84\x22\xb5\xcc\xf4\x43\xeb\xfd\xd8\x90\xa6\x24\xff\x63\x46\x89\x3d\xe1\xa8\xfb\x25\xb3\xf2\xe5\x7d\x0c\xd4\x5d\x7f\x87\xbc\xae\x99\x49\x63\x78\x3b\x2c\x72\xa3\x41\x2c\x8c\xc1\xe2\xf1\xae\x37\xea\xf9\xb9\x09\x2f\xde\x5f\x1a\x58\x1b\x3e\x91\xf0\xb6\x64\xcb\xaa\x99\x56\x7f\x18\x9c\xfc\xd0\xa9\xd7\xb1\x66\x02\xa1\xf5\xca\xd3\xd3\xa9\x72\x16\x04\xab\xda\xc9\xb2\x9d\x9e\x25\x2c\xb4\x6c\x50\x8a\x92\x38\xcd\x47\xb0\x9d\xa4\xd2\x3b\x3e\xfc\x0e\x0b\x83\x9d\x5d\x92\x35\x83\x13\x69\x0c\x71\x35\xd3\x8f\xbc\xd9\x62\x4c\x38\x50\xaf\x71\xca\x75\x82\x15\xa1\xd6\x63\x87\xbe\xcd\x3b\x63\x82\x47\xd2\xc7\x94\xc6\x72\x21\x36\x8c\x2f\x3e\xc0\x77\x62\x4a\x66\x11\xd6\x69\xb7\x7c\xdf\x6f\xbf\x99\x70\x2e\x60\x4b\xb7\xf1\xf2\x7b\x2c\x54\xff\x99\x39\x8e\x55\x51\x4e\x30\x5e\x70\xfa\x38\x57\xff\x64\x36\xc4\x35\x97\x98\xf3\xe5\x74\x33\x63\x30\x5d\xd9\xe2\x1c\x24\x5b\xcb\xc0\x7a\x99\xee\x69\xab\xf5\xaa\x84\x5d\x7a\x6f\xdb\xa6\x89\x4c\x26\xf0\x38\x0a\x7b\x57\x26\x29\xb2\x61\x69\x49\xf8\x83\xa4\x77\x93\xd8\xd0\xb7\xa3\xfb\xe8\xcf\x71\x9f\x18\xd4\xfb\x76\xdd\xca\x6b\x15\x26\x7c\x9b\x55\xb9\xb7\x31\xbe\x9d\x81\x81\xd6\xcb\xe2\x69\xcf\x66\xd2\x18\x34\xc4\x1b\xee\x8e\x1c\x08\x24\x5c\xbb\xea\x39\x32\x7e\x6f\x2f\x83\xd5\x41\x7b\x26\xb5\xac\xd5\xa0\x31\xe4\x5e\x3a\x12\xb8\xf6\xfc\x3c\x42\xdc\xee\x1b\x6a\x62\xc7\xc6\x11\x0e\x79\x07\x0e\xcb\xdb\x08\xb0\xc1\x74\x96\xda\xfd\xdf\x95\x53\x08\xb7\x3b\xad\x54\x79\x5b\x56\x11\xf6\x69\x5e\xe0\xb7\x6a\x1b\x64\x70\xbb\x30\xdc\x4f\x61\xbe\x22\xc1\x5b\xa0\xaa\x90\x7b\x89\x39\xe1\xf3\x71\x97\xd3\xb7\xa4\x23\x08\xcc\xd4\xce\x1b\xe5\xea\xb9\x45\xd0\xdd\xa0\xd5\xfa\x40\xca\x8b\xc6\x50\x32\x45\xa0\x6c\x67\x4a\x12\x21\x40\x75\xdd\x4d\x9f\x55\x9c\x84\xdc\x2d\x56\xdd\xae\x9e\xc3\xcc\x18\xa6\xad\xce\x7f\x29\x33\x41\x9f\xc6\x70\xc3\x2d\xef\x71\x65\xd0\x9b\x22\x74\x0e\x9b\xf3\x0b\x4c\xbe\x4a\xa8\xeb\x0b\x33\x90\xd8\x94\x4d\x50\x3a\xb5\xf5\xad\x4d\xdc\x15\x82\x6d\xdb\x8c\xd2\x4c\x9f\x5a\x42\x77\x72\x93\x4d\xe0\x68\x79\xd2\x28\xe0\x75\x3f\x67\x13\x61\x51\x4b\x54\xc1\xdd\x9f\x4a\x84\xf7\xd6\xd3\xa4\xc3\x1e\x7e\x61\x20\x32\x2e\x95\x27\xf6\xfd\x64\x42\xc3\xb5\x80\xee\x70\xf7\xc7\x04\xbd\x1a\xad\xef\x29\x2b\xf4\x09\x8f\x2d\x3b\x79\x8a\x2e\x4b\x11\xba\x67\x6f\x7e\xbc\xc4\x37\x9c\x0d\x2c\xf3\xa8\x3f\x07\x07\xf9\xd9\xa0\x6d\x6d\x1b\xef\xd6\xc5\x4b\x88\xe8\xd2\x79\xa3\x5b\x1e\x41\xb0\x37\x5c\x66\x54\x19\x30\x9b\xc0\xdd\x79\x85\xe5\x2b\xe0\x45\xb8\xa4\xc8\xbb\xf3\x74\x96\x24\x01\x42\xe5\xb0\x3d\x25\x40\x88\xdd\x2f\x52\x8e\x17\xa5\x45\x50\x94\x7c\x63\xfb\xea\x90\x33\xe1\x70\xc0\x02\xe1\xea\xeb\x6e\x04\x65\x8d\x71\x49\x6f\xdc\x67\xb3\xe1\xd8\xc4\xe0\xd7\x5e\xcf\x66\x11\x5e\xa5\xc6\xd5\x1c\x28\xec\x63\xe0\x9d\xed\x69\x90\xa1\x27\x4a\x58\xb9\x43\x21\xf4\x01\x23\x40\xe0\x75\x49\x93\x5a\xac\x29\x48\x38\x64\xfe\x2e\x6d\xe2\x1c\x31\xb6\x52\xfe\x39\x62\xba\x95\xe6\x76\xc2\x86\xe6\xb9\xf1\xc1\x4d\xdb\xd9\x8a\x5b\x9f\xe2\xe7\xbb\xa1\xd5\x45\x70\xd7\x79\xfe\x67\x65\x25\x27\xc1\x7c\x7f\x78\x66\xd0\x60\x69\x11\xd4\x7c\x9e\x76\x54\xdd\xea\x66\xc6\xd0\x4b\x1f\x9e\xfa\x9d\x9f\x4c\xb8\x15\xf2\x2a\xec\xa8\x73\x73\x11\x36\x9d\xed\x13\x9b\xc1\x2b\x4e\xff\xc0\xcb\xef\xfb\x57\xeb\x1b\x1b\xfd\x27\x8c\xb8\x2d\xed\xd6\x1a\x67\x16\x41\x68\xde\xbc\x79\x77\xb7\x8c\x27\xbc\x12\x5e\x79\x50\x68\x74\xa7\x6d\xed\x12\x19\x22\x1e\xb5\x0c\x0e\x28\xf8\xcf\xe6\xb6\x1b\x66\x43\xd8\xe2\xe7\xc5\x66\x9e\x72\x84\xdd\xc5\xcf\xd7\xb7\x2d\x0b\x26\xcc\x1b\x29\xa9\x97\x9f\x34\x85\xd0\xa7\x80\xb5\x67\x64\xdd\x08\x92\xdb\xab\x98\x9b\x67\x7e\x30\x98\x73\xea\x11\x6b\xe7\x7c\x43\xc2\xe1\xdf\xd2\x77\x7d\x76\x0e\x30\x63\x48\xd6\xbf\x97\xa3\x6c\xd3\xce\x80\xd9\x11\xb8\x2b\x43\x6e\x29\x21\x5f\xb2\xe7\x8f\xbe\x74\x3a\xe1\x5d\x43\xdb\x4c\x4b\xeb\x23\x04\xe8\xf9\x1c\x1f\xaf\x25\x40\x48\x35\x8f\xda\x16\xb5\xc5\x8c\xf0\xf5\x36\x4b\x4f\x22\x2f\x84\x0d\x3b\xba\xbf\x1f\xb8\xfd\xdb\x8f\xb0\x8a\x39\x6f\x60\x7a\x20\x9f\x70\x67\x6f\xea\xa3\xc0\xab\xf7\x08\x89\x5b\xa4\x55\x84\xae\xdd\x23\xac\xca\x13\xea\x8f\xb9\x57\x4a\xc8\xe5\xd6\x33\xff\xbb\xf4\x64\x6b\x02\xeb\xad\xce\x59\xc2\xdb\xb2\xe0\x75\x56\xed\x91\x84\x9a\x09\x1d\xf7\xab\x7c\x83\x09\xa6\x46\xea\x8a\xe7\x52\xaf\xb3\xc6\x4a\xa9\x5b\xc0\x14\xc7\x79\x3a\x84\x43\x9b\x2b\x3f\xaa\xbd\x98\x43\x78\xe0\xa0\x16\x60\xb8\xe1\x08\xe1\xc3\xaa\x56\xa1\xfe\xa2\x19\x04\x9e\x8e\xe9\xaf\x1c\x9b\xb6\x12\xa6\xb5\xbd\x73\x7d\xa5\x09\x06\xe5\xa5\x0f\xbe\xe8\x5c\xd7\x22\x04\x54\x56\x97\x59\xe7\xfe\x64\x20\x26\xf7\x3d\x7b\x73\xbe\x24\xa1\x2a\xb9\xa9\xae\x2e\x77\xf5\xe8\xd0\xf4\x52\x0c\x7c\xa4\x48\x38\xe5\x54\x75\x6e\xa6\x8b\x14\xc1\x23\xa8\x3f\x6f\x68\x9c\x38\x61\xd1\x23\x21\xef\x03\x1b\x06\x19\x6c\xe2\x69\x7b\x75\x7c\x40\x99\xc6\xa0\xff\xd5\xb0\xae\x35\xe5\x43\x11\x86\xb3\x4f\x1c\xbd\x37\xcb\x8c\x30\x57\x63\x6e\x6f\xeb\xd2\x58\x42\x79\x70\xf2\xce\xbf\x58\xf8\x67\x70\x84\x77\xa9\x1b\xe1\xf5\xf5\x17\x4b\xac\x95\xd6\x11\x66\xe0\x5a\x9d\xd5\x5a\x22\x64\xba\xd5\xbe\xe0\x9f\x97\x43\x28\xbc\x36\xd4\xcb\x37\x8a\xe9\xf3\x36\xa9\xb6\xf9\x94\xb0\x95\x84\x91\x4c\x1d\xcb\xc6\xdd\xff\xc2\x82\x21\xd5\x2a\x53\x35\x17\x42\x55\x40\xc7\x96\x49\xbb\xf7\xb1\x90\x58\x83\x67\xbf\x38\x96\x11\x5e\x5b\xec\x2a\x2a\x9e\x3c\x9e\x20\xf3\xcc\x28\x3c\x59\x72\x29\x1b\xfc\xfc\xcf\xcc\x0b\xde\x37\x91\x20\x16\xf6\x68\xdf\xf4\x55\x91\x2c\xbc\x94\xfc\x1c\x5b\x24\x78\x8c\xf0\x6e\x8d\x47\xf1\xbd\x2d\x77\x08\x6b\x54\xe6\xda\xff\x85\x5b\xc0\x8b\x0e\x1d\xdd\x18\x02\x4b\x2b\xc1\x42\x25\x44\x8f\x20\x93\x33\x27\xe8\xd0\xeb\x5e\x06\xaf\x6b\x0c\x75\xbb\xec\x38\x08\x3b\x0b\xae\xde\x39\xb5\x29\x81\x0d\x85\x67\x8e\x1c\x10\xea\xca\x24\xfc\xf8\x6a\xed\x76\xcd\x89\x8f\xf0\x63\x48\x5d\x54\xdb\x53\x80\x1d\x1c\x4f\xf4\x26\xf0\x74\x31\x38\x97\x7c\x46\x57\xa7\x81\x08\xbb\xd4\x22\x2a\xa2\xc3\x13\xd8\xa0\xe0\x17\xe4\xa8\x34\x21\x96\x0d\x32\xe5\x59\xbe\xe5\xad\x89\x84\x3b\x0f\x75\xe6\xb2\x5e\xa6\x13\x46\xee\xf8\x34\x18\xc9\xa9\x11\x3c\x67\xbc\x90\xb5\xb9\x53\x48\xb8\xb1\xb8\xfe\x8b\x6b\xc5\x2d\xc2\xac\x20\x4f\xd3\xbb\xc9\x4f\x59\x50\x77\x12\x92\x59\xfa\x25\x8a\x90\x3d\x47\x39\x7e\x9f\xf4\x31\x42\xc2\xf2\x1f\xad\xcc\x90\x32\x61\xdd\xdb\xd9\xfa\x9f\x14\x7f\x31\xe0\xac\xde\xf4\xe2\x51\x23\x37\xfd\x03\xd7\x93\xa5\xa7\x37\x8a\x70\xfd\x0b\xe9\xfc\x33\xe2\x56\xb9\xd5\x31\xd8\x37\x3b\xb2\xe4\x61\xd3\x12\xc2\x7b\xc1\x2f\x8a\xa7\x1e\xbf\x61\xd0\x5c\xa6\xbb\xa8\xef\xd1\xc8\xbf\x70\xad\x6e\x8b\xd7\x96\xd3\xb2\xf4\x0f\xf4\xe7\x9b\xc6\x8e\x04\x3e\x2b\x82\xf3\x1f\x4e\xa1\x0f\xeb\xbf\x31\x70\x6e\x5b\x7a\x80\x73\x9a\x0b\x61\xc0\x6f\x71\x5d\x33\xcf\x04\xc2\x6b\xfe\x9b\x35\xcc\xa3\x71\x84\xd4\xc1\x88\xf9\x01\xc9\xf1\x84\xb2\x61\xbe\xca\xc0\x51\x78\xcc\xba\x9f\xcb\xe3\x78\xfe\x5f\x48\x4f\x76\x19\x7f\xe4\xfe\x0d\x42\x55\x7f\x53\xd1\xc1\xd3\xdc\x84\x13\x27\xf4\x7b\x4e\x17\xb7\x33\x63\x98\xf4\xe2\xc9\x84\x9f\x4c\x03\x83\xde\x34\x01\x43\x0b\xd3\x76\x06\x9b\x38\x06\x9b\x3a\x27\x0e\xb0\x61\xfe\xeb\xd7\x05\x57\x0b\x74\x08\x2f\x35\xae\xc8\xd9\x0a\x67\x10\x16\x87\x58\x45\x89\x3d\x9e\x4a\xa8\x38\xf3\xa8\x74\x85\xcb\x10\x83\xc8\x69\x7a\x6d\x6b\x2d\xa4\x08\xfe\x52\x87\x44\xe0\xbc\x81\x20\x51\xf5\xcc\xac\x62\x72\x2a\x81\xf8\x3f\xc9\x75\xbd\xf0\x20\x38\x29\x66\xdb\x8f\xef\xf4\x21\x54\x6a\xed\xb6\x17\x2e\xcd\x26\xd8\xf5\x99\xae\xfd\x8b\xde\x2b\x16\x17\x0a\x96\xec\x21\x08\x5c\x39\x51\xaf\xb3\x74\x19\x61\xd7\x07\xf1\xb2\xf2\x65\xd6\x84\x87\x33\x5f\x6a\x3d\x77\x30\x24\x28\x7f\xb8\xfc\x52\x50\xb8\x8c\xb0\x72\x1d\x78\x05\x46\x31\xa1\xa0\x78\xf6\x53\xdc\x26\xe8\x88\x3e\xee\xfb\x5b\xda\xdd\x94\x4b\x5e\x56\xed\x63\xa1\x61\x07\x7f\x7e\xff\x13\x6f\xfa\x07\x4e\x1b\xe5\x9b\x94\xad\x8a\x22\xd4\x65\x89\xbb\xc7\xa8\xdc\x23\x18\x37\x1d\x92\xb3\x98\xee\x46\x98\xf1\x1e\xd6\xc1\x37\xb8\x08\x36\xbb\x9e\x9f\x5e\x74\xf5\x3b\x33\x86\x65\x07\x2f\xdd\x4f\x0f\xfe\xcd\x60\xa1\x37\x4f\xa8\xbb\xea\x2f\x06\x52\xdf\xed\x6f\x9f\x72\x12\x26\x7c\x36\x3b\xc6\x3a\xb5\x90\x93\x40\x5f\x1c\x5d\x44\x5e\x1d\x25\x7c\xf4\x98\xcd\x15\xf8\xd9\x8e\x60\xae\x7b\xa4\xd4\xe2\xb2\x20\xc1\x7f\x57\xc7\x79\x7b\x89\x01\x06\x3f\x4f\x7d\x10\x3e\x7d\xc9\x88\xc6\x20\xa6\x43\x41\x95\x1e\xd3\x09\x32\x37\xc4\x06\x0a\x6c\x9e\x31\x70\x52\x3c\x37\x24\x35\xfa\x79\x4a\xed\x9d\x2e\x5c\xbb\x68\x4c\xd8\xd5\x72\x75\x76\xda\x8a\xdb\x84\x82\x0a\xd9\xbb\xef\xb2\x8c\x09\x62\xdd\xb7\x0d\x59\xf3\x24\x09\x7f\xce\x24\x97\xcb\xdd\x32\x21\x64\x5a\x73\x70\xcc\x36\x4b\x67\x21\xd2\x73\xce\xef\x9b\xd5\xa3\x27\x99\xea\xba\x05\x2e\xbb\x76\xb2\x41\x71\x33\xcd\x16\x7a\xa5\x4d\x18\xb8\xf9\x75\xf5\xb8\x3b\x86\x84\xa6\xda\x8b\xbf\xb7\x44\x2d\x25\x88\x77\xb5\xbb\x7e\xc9\x12\x20\x48\x48\x9c\xe2\x7a\xad\xbd\x9d\x60\xb1\x26\xc6\x7b\xe1\xcf\x69\x84\xfc\x4b\xdd\xdf\xc4\x8a\x3f\x32\x70\xf1\xad\x2f\xb8\x77\x90\x9b\x60\xbd\x7d\x20\x6c\xe1\x38\x03\x42\xa1\xbe\xca\xb6\x65\x6f\xd6\x10\xc4\xe4\x76\x38\x2f\x13\xd7\x24\x94\xd5\x99\x0e\xd8\x3c\x16\x22\x98\x06\x9c\xf5\x5e\x98\x67\x42\xa8\x95\x2e\xd4\x92\xdb\xed\x49\x38\x61\xb5\xf7\x6b\x0d\xfd\x3d\x8b\xba\x98\x3c\x0c\x9b\x45\x43\x92\x52\x71\x3b\x16\x4c\xfe\xdf\x4f\x4c\xed\xe4\x1b\x5e\xb7\xaf\x86\x81\xe4\xa1\x10\x37\x4b\xa9\xe9\x04\xe9\xc9\x2b\xfc\xd2\x65\x4c\x09\x8f\xb9\x0a\x9c\x36\xf7\xcd\x62\xc3\x51\x25\xc5\x71\xda\xbd\x36\x2c\x4c\xf2\xda\xd1\xfd\x51\x57\x85\x90\xc7\x79\x54\xdc\xb7\xd5\x82\x90\xc3\xd9\xa7\xb2\xbc\x81\x97\xf0\x26\x65\x58\xdc\x2a\x84\x9b\x30\x62\xb0\xa2\x71\x7b\x20\x27\xc1\x59\x24\xb7\x62\x8a\x98\x17\x61\x6d\xc7\x36\x13\xa1\xf0\xa3\x04\xed\xc0\xe6\x45\xbf\x02\xe5\x09\xb3\xed\xaf\xf6\xda\x6c\xdb\xc3\x86\x83\xc9\x1f\x23\x14\x0c\xfa\x18\x18\xab\x77\x88\x98\x9f\x11\x25\x0c\x65\xb6\xd0\xbc\x1c\x6f\x82\x4c\xcd\x31\x9b\xa3\x7b\xec\x09\x73\x76\xd8\x05\x54\x1f\xbf\xc4\xc2\xc6\x3f\x8b\x2f\x7d\x5c\x1a\x4c\x98\xad\x65\x9d\xed\xe4\xbc\x99\xb0\x26\xe8\x7c\xeb\x2b\x4e\x61\x82\xd4\x8a\x56\xee\xf7\x6d\xf2\x04\x79\x19\xa6\xb9\xa6\x9c\x83\x30\x9e\xbf\x3f\xd6\xf0\xde\x5c\x82\x57\xfd\x46\x59\x93\x0b\x0d\x84\x88\x72\xc5\x8c\xa4\x6d\x1e\x84\xe9\x2f\xa2\xed\x65\x33\x0e\x12\x3a\x7c\xaa\x31\xb1\x2f\x89\x85\x4f\x3f\xfd\x9b\xc5\xa3\x2f\x13\xfa\x32\x29\x55\x28\xd5\x82\x30\xff\xd0\xb3\xd6\x96\x62\x4b\xc2\xf5\x1c\x2b\xf3\x5e\xb5\x35\x04\xb9\x4f\x4e\x12\xb7\x02\x4a\x58\xe0\x77\xfb\x5c\xbc\x92\xe7\x06\x0b\xd6\xe7\xb7\xa6\x64\xb8\x7b\x11\x9c\x7b\xb6\x1e\x91\x69\xe3\x27\x58\x15\x54\x9f\x7b\x1c\xd8\xce\xe0\x41\x70\xe6\x2a\xd9\xda\xb9\x34\x86\xf2\x59\xbb\x27\xdd\xbc\x38\x8f\xd0\xf3\xdc\xf5\xa6\x9f\x5c\x3d\x83\x98\xeb\x1c\xda\x01\x97\x43\x09\x89\x9d\xaa\x95\xe9\x3e\xe1\x84\xda\xd9\x2f\x78\xff\x16\x85\x28\xc1\xb9\x1f\xbf\x4f\x24\x38\x05\x70\x87\xb7\xf8\x4e\x24\x64\xdf\xfd\xb9\x52\xfe\x69\x0a\x0b\x60\xf5\xe4\x69\x27\x0b\x12\x7a\x9c\xe4\x43\x4c\x62\x5a\x18\xf4\x5c\x93\xfc\x7c\xba\x64\x80\x81\x59\x9a\x5b\xc1\xb7\x55\xf3\x08\x1d\xbb\x4b\xcd\xc6\xc9\x8d\x27\x04\xb4\x2d\x7e\x6d\x3e\x20\x4f\x48\xb2\xbd\xa7\xcf\x1d\xa2\x43\xd0\xf5\xcb\x28\xf2\xb2\x54\x26\x24\xd4\xe4\x9b\x49\x16\x5d\x63\x10\x7d\xde\xa1\xfe\xd2\x20\x07\xe1\x46\xe7\xd1\x89\xeb\x36\x4f\x63\x43\xfa\xdf\x97\xff\xf6\x30\x63\x30\x15\x91\x3e\x65\xc0\xa5\x48\x63\x10\xf3\x59\x29\x3d\x30\xe1\x2e\x83\xb8\xa2\x2f\xb5\x2b\xce\x07\xb3\xf0\xbd\xd6\xf4\xf7\xb2\xbd\x89\x04\xfe\x0d\x91\xa2\x06\x47\x12\x09\x59\x5b\x4f\x5b\x3e\x7d\xbc\x9c\xd0\x2f\x3b\x65\x28\xc0\x3b\x91\xc0\xa5\xf8\xf9\x4d\xc5\xf1\x44\x82\xde\x92\x0f\xc7\x83\xf3\x36\x10\x8c\x0d\x0a\x45\xe3\xb3\x9d\x59\x38\x20\xf9\xf0\xe2\x01\xde\x4d\x84\x89\x13\xee\x1f\xb4\xcc\xd1\x22\x18\xc6\x7c\x97\xd5\x6c\xfa\xc9\x60\xda\x79\xcd\x64\xc3\x55\x9a\x34\x06\xed\x96\x96\x0e\x41\x09\x79\x42\xbe\xf6\xd5\x82\x3f\x3f\x2e\x13\x14\x84\xaf\x0c\xe4\xc5\x17\x13\x4e\xcb\xbb\x1e\xdd\x6c\xf3\x83\x41\xe2\x84\x43\xb7\x4b\x1e\xde\x20\xd8\x6b\xbd\x55\xf7\xb8\x38\x9f\xb0\xf7\x45\xcc\xe0\x21\x93\xcd\x84\x0b\x02\x5f\x3a\x1d\xa7\x6b\x13\x66\x8c\x7f\x1b\x20\x9f\x79\x9a\x05\x07\xe7\x6f\x77\x35\x2d\xcf\x11\x52\x2d\x56\xac\x0a\x38\x70\x8e\x50\x28\x19\x54\x5b\x50\xd0\xc7\x60\xba\xb6\xea\xf3\xf6\x6e\x13\x02\xef\x71\x6e\xab\x15\x92\x03\x0c\xd4\xbf\x3d\xeb\xf1\xd0\x93\x21\xe8\xf9\x37\x1e\x79\xb5\xd5\xfa\x5f\x28\x4c\x7a\xb6\xa1\x7f\x48\x88\xf0\x51\xf3\xb4\xae\xc2\xab\x44\xc2\xdb\xa3\x47\x6c\xf6\x4f\x1c\x47\x28\xfe\xf1\x99\x0c\x0b\x43\xd9\xe0\xe6\xc9\xf4\xf5\x17\x82\xc1\xe9\xcd\xda\x7b\xd4\x7f\x48\x11\xb8\xc4\xae\xdc\x11\xff\xd3\xce\x40\xf3\xf5\x4d\xa7\x43\xc9\xe1\x84\x02\x91\x5d\x03\x89\xe1\x1b\x09\x7f\xce\xb2\x6e\x69\x2d\x58\xcf\x86\x95\x7b\xde\x2f\x69\x58\x2c\x49\x98\x36\x68\xe0\xb3\x2d\x68\x21\x41\x0b\x27\x57\x2e\x5b\xc9\xc1\x86\xd5\x4b\x42\xce\x4f\xe5\xed\x60\x60\x14\x61\xd8\x6a\x51\x7e\x99\x60\x61\xdd\x52\x1a\x7b\xe7\x0d\x0b\x8d\x26\xfb\xb2\x64\x5d\x4a\x09\x56\x5a\xd1\x3f\xe6\x8f\x62\xbc\xb8\x91\xad\xcc\xd5\x32\x42\xae\xc8\x27\x2f\x09\xc7\x52\x82\xd6\x83\xd7\xbe\x5a\x69\x65\x84\x2d\xdf\x36\xb1\xf2\x2a\xef\x11\x0e\xf7\xb5\x54\xcc\x38\x70\x8f\x60\xf2\x27\xf1\x77\xd5\xc3\xcb\x84\x9c\xbb\x71\x1e\x82\xdf\xa6\x12\x8e\xbc\xcb\xa8\x39\xb9\x2e\x9b\xc0\xbb\x96\xb7\x81\xc7\x38\x9b\x20\x69\x78\x7a\x46\xf4\x6e\x1d\x42\x96\x9b\xe0\x75\xf5\xd2\x45\x04\xa3\x0f\x3f\xfb\x24\x57\x94\x30\x78\xf5\x24\x6b\x63\xf1\xc9\x4c\x16\x22\xf3\x1d\x96\x55\x5f\x3c\x41\x88\x93\x98\xd1\xee\x91\x5d\x46\xe0\x9c\x28\x9a\xb9\x34\xa7\x8c\x50\x1b\xbd\xb4\xe5\x2f\x76\x74\x78\xaa\xe8\x9c\xdf\x47\x70\xff\x78\xe4\xad\x99\x81\x07\x1b\x74\x5d\x3f\x57\xf0\x6f\xf6\x22\x1c\xb8\xa1\x1e\x92\x6c\xb6\x8f\xe0\xf5\xb5\xac\xd3\xea\xcb\x15\xc2\xcb\xb7\x91\x6d\xdf\x5e\x85\xb3\x70\x4b\xed\x64\x90\x42\xa9\x02\x61\x97\xbc\xd6\xf8\x1f\xc7\x9f\x12\xee\xb8\x37\x59\x96\x3f\x78\x44\xf8\x36\x8f\xaf\x78\x99\xc0\x63\x06\x97\x06\x97\xfd\xea\xd3\x72\x26\x0c\xc8\xe5\xfc\x51\x57\x72\xa1\xb1\x72\x4c\xf4\xba\xaa\xc0\x6e\x01\xc2\xc2\x83\x7e\x56\x8a\xf5\xed\x0c\x76\x5f\xca\x5d\xab\x47\xaa\x04\xb5\xcc\x69\xef\xd6\xa9\xf6\x33\xe8\x9b\xfa\x4b\xd2\xec\xf3\x26\xc2\xd3\xaa\x77\x39\xd7\xc5\x53\x08\xdc\x67\x56\x2e\x5b\xef\x15\x4f\xb8\x99\x7f\x59\x9e\x43\x25\x90\x50\xfd\x9e\x2b\x61\x81\xa9\x2e\xc1\xeb\xcd\xcb\x8a\x79\xd1\xcb\x09\x56\x1d\x9e\x8e\x0e\x0f\x56\x13\x9e\x5e\x2d\xcc\xd8\x2e\xf2\x91\xc1\x15\xa9\x5c\xfe\xb4\xf1\xaa\x04\x89\x4f\x8f\xb6\x0e\x9b\x7d\x64\xd0\x62\x72\xe6\xa8\xa6\xe8\x10\x1b\x36\x7e\x0a\x32\x7d\x6d\xf1\x8b\x41\x6e\xe8\x1a\xc1\x7d\x46\xf1\x34\x86\xaf\x0d\x92\x3e\xeb\xff\x28\x11\xd4\x97\xed\x54\xb2\xb7\xbf\x47\x30\x37\xcf\x35\xe0\x9f\x77\x8f\xb0\x59\x68\xcf\x2d\xe5\xd9\x0e\x2c\xd4\x96\x1f\x0d\x7d\xcd\x71\x9f\xe0\xbb\x44\xf8\xf3\xa7\x27\xf7\x09\x22\xd6\x0e\x2b\xdb\x47\x71\x51\x43\x60\x0f\xcf\x8c\x63\x84\xbd\xf5\xb3\x73\x7e\x75\x1c\x23\x28\xa9\xdb\x2d\x38\x9f\x68\xc6\xc2\x99\xc6\x84\x04\xf9\x37\x1b\x09\x2e\xa2\x93\x06\x04\xce\x85\xb3\x41\xcf\x76\x82\x82\x9e\xf1\x2c\xc2\x1b\xb1\x81\x73\x5f\xd7\x08\x11\x72\xbf\x37\x1f\xd5\xae\x9d\x4a\xf0\x78\xd9\xdc\xc7\xc8\xf2\x12\xa2\x19\xc1\x04\xaf\x13\xbf\x18\x5c\x53\x79\x9b\x28\x65\x1a\x42\xb0\x17\x8e\x11\x7a\x21\xd5\x44\x48\xfa\x21\x97\x29\xb3\xe2\x39\x41\xd9\xf3\xb2\x6f\xff\x94\x0b\x04\xc1\xb0\xc8\x61\x99\x6e\x1f\xc2\x86\x7b\x0f\xa7\xc6\xd5\x5a\x11\x2c\x7d\x9f\xe9\x74\x45\x9e\x26\xd8\x4d\x5c\xf7\xf8\x69\x5d\x12\x0b\x2c\xdd\x8f\xf2\xf5\xdc\xb7\x09\xf6\xbd\x6d\xc7\x87\xa5\x0c\x09\xb1\x0b\x78\xb7\xbb\xee\x8a\x24\xfc\x9c\xdd\x2b\xe4\x94\x2d\x45\x58\xfd\xc6\xbd\x64\x89\xef\x73\xc2\x8c\x37\x27\xeb\xe6\x58\xc5\x10\x06\xd2\xfc\xac\xdf\xae\x2c\x21\xa4\x7c\x5d\xea\x26\x10\x9b\x43\xd8\xf9\x42\x35\x22\xe6\x88\x00\xa1\xde\xb0\xa3\xf7\x57\xdd\x2b\x82\xb7\x42\xc7\x19\xfb\xa5\x1f\x58\xe8\x9a\x9f\xba\x77\xe9\x8e\x32\x16\xe4\x2f\xd9\xf4\x77\x5d\x7c\x4d\x88\x4a\x14\x9c\x60\x91\xfd\x94\x10\x11\x32\x27\xed\xed\xed\x26\xc2\x51\x9f\xbe\x77\x4f\x95\x0b\x09\x73\xbe\x35\xec\x15\x30\x09\x20\x3c\xb0\xb0\x4a\x0f\x75\x55\x25\x54\xef\x0d\xd3\x5b\xf5\xf7\x65\xa0\x8b\xee\x1c\xee\x95\x31\x24\x1c\x4c\xac\xf4\x4b\x94\x90\x23\x8c\xac\x9c\xf5\x20\xd8\x4a\x98\xf0\x5b\x60\xbb\xc9\xf4\xaa\x21\x06\x17\x0b\x6b\xcb\xb7\x2b\xc5\xd0\x18\x74\x1f\xdb\x67\xc6\x54\xb9\xd3\xd0\xe6\x87\xd3\x26\xcb\xdc\x62\x61\xe9\xca\xe9\xb2\xa2\xde\xcf\x09\x77\x4a\x3b\x16\x8b\x8f\x62\xef\x91\x41\x45\x6a\x63\x11\x18\xf8\xd3\xbd\x8e\x61\x06\xc4\x39\xc9\xd5\xd6\x73\x21\x81\x5f\x67\x79\x63\xd6\xc4\x21\x06\x13\xf5\x13\xb9\xa5\x78\x4d\x69\x0c\x31\x36\x49\x9e\x5e\x5b\x2a\x19\xe4\x0f\xee\x31\x72\xac\x19\x60\x30\x67\xbd\xa4\xe2\xc3\x09\x49\xf4\x5f\xb0\x3f\xb8\x49\xcf\x20\x6b\xd3\xbf\xb0\xe8\xe7\x51\xdb\x8f\xfb\x65\x09\x6b\xb4\x9c\xce\x85\xe4\x29\x13\xbe\x24\xf5\x3b\x0f\x64\xc6\xb3\xb0\x3a\x7b\xf8\xe9\xb4\xf1\xc5\x04\xae\xb3\x31\x57\x36\x48\x17\x13\xfc\x5d\xf7\x8a\xa7\x0a\xed\x64\xc3\xcc\x92\x43\x8d\x71\xc1\xab\x58\x48\xd9\xa8\x37\x37\xd4\x64\x2b\x0b\x0d\xaf\xdc\x0d\x23\x42\x4d\x08\xee\x25\x61\xfd\x02\x7b\x6c\x08\xa1\x35\xe5\x2c\xb1\xee\x43\x84\x03\x3e\x27\x39\xdc\x0e\x38\xb3\xc6\xca\xef\x25\x17\x16\x06\x33\x79\x04\xae\xcf\x0b\x5f\x36\x2c\xcf\x23\xb4\xf3\x56\xc9\xea\xa7\x1d\x26\x44\x99\x5b\xc7\xe1\xe0\x3e\x16\x62\x0f\xe9\x97\x4e\x60\xb9\x12\x8e\xad\x2d\x41\x8b\x8c\x3b\xc1\x69\xf0\x45\x4e\xd0\xb5\x32\xc2\x63\x29\xdd\xac\x26\x61\x67\x42\x22\x8f\x6f\xd4\xf9\xe7\x42\x84\x7d\x33\x22\xb8\x14\xc1\x41\x58\x66\x1b\xda\xea\x1e\x2e\xf1\x2f\x28\x8f\x98\xc5\x1a\x7d\xdb\xf0\x2f\x44\xf7\x4e\xb9\x76\x47\x6d\x74\x1a\x67\xb5\x6e\xae\x1b\x3d\x7f\xbe\x3f\xb8\xf9\x6d\x51\xeb\x79\x82\x9b\xca\x6f\x96\xe9\xc2\x18\xc2\x1f\xdf\xef\x22\x41\x1d\x33\x09\xbb\x33\x16\xde\x1f\xb9\x9a\x42\x30\x48\xd0\x9e\xde\x7c\x50\x90\x60\xc6\xf2\xbe\xf9\xbc\xdc\x8d\x0d\x8d\x5f\x5b\xf3\xd7\x2d\x21\x42\xf4\x2f\xc5\x6f\x93\xb9\x1e\x32\x08\xd9\x7d\x8e\x62\xd3\xbf\x32\x38\xfb\xfc\x68\xde\xaf\x76\x5b\x16\xb6\xe8\xf1\x9e\x5f\x27\xcd\x45\xe0\x7f\x3e\x70\x6a\x95\x5e\x53\x11\x3a\xd3\x4f\x45\x75\x32\xfa\x04\xfd\x55\x8b\xc2\xa9\xc1\x82\x60\x39\x6c\xd3\x5c\xf2\xe2\x29\x83\x82\x6f\x31\xb5\xef\xf6\xf6\xb0\xe1\x6b\xc4\x2b\x99\x85\x5f\xfa\x19\xc4\x1f\x94\x39\x71\xef\xe1\x08\x83\xd2\x83\x5d\x8d\x0d\xc5\x9a\x34\x86\x83\x67\xdc\x97\xc9\x78\x8a\x11\x0e\x15\xbe\x0c\xfe\xea\x67\x4a\xd8\xd7\x2c\x95\x1d\x2e\x2d\x4d\x70\xb2\x28\xe0\x1b\xb1\xe5\x23\x38\xcd\x8f\x59\xd1\x15\x79\x98\x0d\xcf\x7e\xd6\xd8\x3b\x3a\x26\x11\x5e\xb5\x49\xe9\x74\x47\x28\x12\xdc\x83\xaf\xb8\xe6\xa4\x88\x12\x2c\x4b\x72\xba\xdc\xac\xd5\x09\x02\xf6\xb6\x45\xbc\xdd\xe3\x08\x1a\x15\x7d\x1b\x7b\x2e\x0e\x33\x58\x52\x9f\x66\xe7\xcc\x9d\x4b\x63\xd8\x33\x2f\x3f\x5c\xe8\x6b\x79\x11\x8a\x82\x26\xef\x2c\xcb\x32\xa2\xff\x42\x3b\xd7\x06\x61\xff\x0c\x5e\x82\x98\xdd\xec\xe5\xce\x0f\xe7\x13\xe2\x25\xff\x44\x05\x74\xc9\x11\x56\x73\x0f\xed\xbf\xe6\xe9\x41\x38\xb6\x78\x4b\xd1\xa2\xec\x43\x84\xf3\xea\x9f\xb7\x5b\x94\x18\x12\xce\x58\x79\xd4\xe8\x4c\x5e\x44\x78\x37\xdc\x9f\x78\x50\xd5\x98\x0d\x59\x69\x23\x83\x27\xe5\x39\xd8\x20\x11\xdb\xe3\x32\x53\x48\x9b\x0d\x91\x61\x11\x82\x23\x93\x5b\x08\xd2\x9d\x9b\x3a\xdf\x65\x67\x12\x72\x78\x32\x96\xbf\x1f\x45\xdc\x1b\x93\xd6\xc0\xdc\x4c\xc2\xe3\x68\xf1\x6d\xc7\x82\xce\x12\xba\xba\x05\x2d\xce\xbe\xcb\x66\xa1\x53\x50\x3a\xb4\xb8\x4a\x93\x60\xe6\x7c\xdf\x3d\x6b\xfe\x64\x42\x73\xd9\x2d\x8f\x4e\x55\xfa\x17\x2c\x5d\xba\x1f\x4f\xb8\xae\xfc\x2f\xfc\xe0\x5f\xdb\xd3\x7f\xb4\x92\xc1\xda\xc7\xd7\x15\xb8\x1d\xb8\x08\x9c\x6b\x04\xdb\xcc\x94\x06\x18\x7c\xcf\x29\x5a\x98\x25\x2c\x4d\xd8\xe0\x29\x53\x5e\xb0\xd8\x88\xa0\xf2\xd5\x77\x52\xdf\x92\xf5\x84\x2f\x22\x9c\x25\x83\x6d\xc6\x84\xe6\x43\xe3\x6e\xa5\xa6\x70\x11\x6e\x6d\xe3\x30\x70\x68\x58\x4c\xe0\x58\xaf\x6b\x50\x58\x1e\x4b\x78\xf4\x66\xa7\xd3\x28\x86\x94\x25\x56\xaf\x3d\x70\x9c\xa0\x97\x11\x7a\x3d\xb0\x76\x11\xc1\xf2\x79\x98\xdc\xfd\x7c\x55\x82\xa5\xb4\x79\xf9\xc0\xad\xe9\x04\x2d\x5b\xdb\x05\x03\x10\x67\x83\xec\xfd\x6b\x83\x77\x3d\x9e\x30\x98\x7d\x3c\xa9\x7f\x8e\xf7\x0e\x42\x14\xef\x7a\x93\xaa\x2f\x44\x50\xfa\x16\xd2\x1d\x16\xc4\x62\x21\xd0\xb1\xa7\xcc\x5f\xd8\x87\x85\x6e\xcf\x94\x89\xad\x41\x9e\x84\x4f\xa9\xd7\x5c\x3e\xf1\xdd\x25\x88\xcc\x7d\xff\x42\xf6\xe6\x11\xc2\xb0\x9d\xbf\x29\xa7\xc3\x39\x42\x50\xf4\x2d\x29\x69\xa7\x30\xc2\xde\xba\xf6\x18\xce\xdb\xde\x84\x8a\x76\xb1\xa4\x65\x7f\x7c\x09\x7c\xf6\xe3\x75\x0d\xbf\x9f\x20\x2c\x11\x4a\x0d\x8c\x0f\x39\xc3\x82\xe4\x8a\x8a\x10\x3e\xde\x0a\x82\x4b\x5c\xdc\x8a\xe5\xe7\xbd\x08\xe7\xf4\xdf\x66\x44\xb4\xc7\x12\xce\xfa\xd9\x7b\xf1\xe4\xe9\x10\x8c\xde\x5d\xe0\x29\x2d\x3c\x4f\xe8\x9d\x69\x79\xf1\xae\x69\x1a\xa1\xd4\x4b\x28\x25\xf7\x5d\x2a\xe1\x76\x9b\xe5\x61\xfe\xac\x3b\x84\x62\x53\xc5\xf8\xad\xa7\x3b\x18\x94\x15\xa5\xda\x6f\xcd\xff\xc9\x86\xf8\x76\x2e\x2b\xcb\xbd\xbd\x0c\x0e\xe4\xaf\x48\xd1\x97\x78\xc4\x40\xfa\xb3\x9f\xe0\x24\x93\x2c\x16\x3c\x6e\xbb\x38\x4c\xba\xbd\x9c\xf0\x29\x4c\x25\x6e\xaf\x83\x30\x61\x36\x94\x8a\x1c\xf8\x0a\x09\x27\x4e\x5c\x5f\x21\xaa\xb5\x80\x90\x39\x57\x5e\x6d\xc1\xb7\x7e\x06\xfb\x5c\x5f\xff\xf9\xb8\x71\x3e\xc1\xa6\x59\xa2\x66\x53\x97\x18\x61\x71\x5e\xc8\x96\x4f\x06\xd2\x84\xd5\xef\x99\xac\x87\xbb\x39\x09\xd1\xb3\x3e\x07\x5a\x5e\x8e\x26\xf0\xe6\xea\xbc\x95\x33\xe4\x25\xb4\x0d\x9d\xf2\xde\x5f\x9d\x46\xb8\x15\x9c\x97\xf1\x17\xa6\xd1\x12\xea\x9d\xa9\x3e\x84\xcc\xa5\xf1\x45\x7f\x31\x12\xc5\x31\x43\x6f\x5f\x35\x83\x41\x15\xf0\x17\x34\x0e\xb1\x81\x37\x6f\xf7\x35\xfd\x23\x92\x04\x63\xf9\xad\x97\xcd\x34\x57\x11\x1e\x99\x25\x87\x28\x09\x48\x12\xa4\xe3\xd4\x5d\xf2\x1e\x2a\x10\xee\x5f\xd1\xe1\x3c\xd0\x16\xcd\x82\x81\xab\xdd\x1f\xdd\x1b\x92\x04\xdb\x5d\xab\x5f\x28\xf2\xc9\x12\x24\xe5\x33\x38\x84\x6f\x73\x11\xb6\x63\xf3\xe6\xc6\x11\x39\x82\xfc\x0c\x16\xe7\xf4\x69\x39\x04\x83\xe3\x0f\x38\xf7\xbe\xd3\x21\xe8\x1f\xf0\xe1\x65\x85\xf5\x32\x88\xe6\x9c\xde\x55\xf2\x4b\x91\xc6\xb0\xa8\xe1\x26\xe3\x2c\xf3\x83\xc1\x8f\xcb\xdb\x5e\x87\x70\xac\x21\x28\x06\x45\xe9\xa5\xdd\xd7\x21\xb8\x73\xbf\xf5\x9b\xe1\xb2\x90\x50\x20\xee\x10\x31\xe0\x21\x46\x68\x3a\x30\xf4\xa4\x6d\x57\x6e\x11\x5e\xda\xfa\x56\x4f\x78\x7b\x8e\xc6\x90\x22\x6a\xd8\x14\x6b\x77\xea\x5f\xd8\x73\x8a\x7f\xd8\xe3\x9e\x01\x41\xad\x5b\xf8\x92\xe6\x6b\x7e\xc2\xca\x96\x74\xc3\xa4\x63\x53\x08\x4b\x78\xb4\x27\x16\x2a\x2a\x13\x1a\x36\xf1\x9c\x2c\xd9\x37\x93\xa0\x77\x36\x78\x80\x64\xbe\x33\x48\xbc\xa7\x3b\xa4\x7d\xc5\x90\xc6\xb0\x6a\x6f\x31\xb3\x6d\x79\x2d\x83\x19\x5c\x3b\xd5\x03\xe3\x15\x08\xcd\x21\x1f\xc4\x25\xb5\x17\x10\xee\xc7\x3e\x49\xa9\xfd\x26\x4f\x68\xed\x4a\xfc\xd9\x52\xcc\x45\x50\x7d\xe0\x79\x2b\xba\x29\x84\xd0\x16\x17\x77\x77\x8f\x99\x0d\x41\x78\x5e\xa8\xae\xa8\xb1\x0d\xc1\x5e\xb6\x32\x28\xd7\xe9\x5d\x11\x72\x16\xcd\x59\x97\xa3\x38\x81\xfe\x01\x01\xe1\xa8\x2a\xff\x9c\x5b\x0c\x36\x0b\x9e\x7c\x10\x11\xb8\x8d\x05\xc1\x0b\xed\x26\x01\x5f\x4c\x09\xfd\xb6\xcd\xe3\xf5\x43\x54\x08\xd6\xee\x9f\x4f\x3b\x44\x2d\x26\xfc\x6c\xc8\xca\xad\x6e\x2a\x24\x04\xd4\x1a\x46\x95\xde\xc8\x61\x61\x43\x54\x73\xca\x85\x4d\xe9\x84\x3d\xf5\x23\x37\xd7\xdf\xe3\x20\x30\x86\xb9\x6a\xbc\x1a\x76\x84\x94\xf1\xdf\xac\xe7\x8c\x1e\xc2\x3e\x1b\xfa\xc6\x9f\xd4\xbd\x48\x50\x74\xf9\x53\x7f\x2f\xc0\x99\x50\xb9\xea\xd0\xbb\x5d\xc7\xf5\x09\xeb\x55\x2e\x56\x6e\x9a\x2d\x40\xd8\x1b\x0a\xde\x8e\x33\xe7\x18\x14\x66\x6b\x97\xf9\x86\xc8\x10\x64\x7b\x78\x0e\xaf\x3d\x2d\x42\xb0\x0e\xe5\xf9\x3d\xb9\xaf\x84\xe0\xf4\xf8\xa3\xcb\x95\xd1\xc9\x56\x66\x34\xae\x52\xb4\x44\x96\xc0\xfc\x71\x7f\x2b\xbe\x4a\x83\xe0\x64\xd3\xf0\x67\xcb\xba\x16\x82\x6f\xca\x97\x92\x8e\xaa\x3a\x42\xd7\x8e\x41\xde\xcb\x99\xf7\x09\x52\x3c\x2b\x9f\x34\x1c\x6c\x26\x3c\x19\xbf\xf9\x98\xe4\xa4\x2b\x84\x37\xaf\x0d\xee\xa7\xbf\xf6\x23\x54\xed\xd5\x5a\xf8\x6b\x69\x14\x0b\x34\x61\xbd\x53\x6b\xab\x1f\x61\x70\xd6\x91\xd5\x36\xde\x76\x84\x1e\x15\xb9\x83\xda\x89\x91\x84\x00\xe1\x71\x1f\x16\x48\xee\x22\x6c\xf4\xcb\x5a\xa1\x1d\xa9\x47\xc8\xda\xf2\x93\x3f\xf9\xea\x42\x82\xb1\xef\xbe\x89\xde\x6d\x1c\x84\xd2\x47\xbd\x15\x5d\xc3\x2c\xc2\x63\x8b\xd5\x1f\x8b\x7e\xbd\x23\x6c\xe9\x5c\x2e\xfd\x79\xb4\x78\xcf\x13\x19\x39\x7e\xe4\x34\x61\xa6\x49\xd2\xfd\x69\xd3\xe5\x09\x53\x7e\xd5\x0f\x25\xde\x94\x63\xc3\xad\xdd\x87\x0d\x2c\x87\x3a\x19\x24\x86\x1c\x93\x79\xd6\xf9\x80\xc0\x95\xbe\x62\xbd\xe7\xf6\x53\x04\x69\xb9\xca\xa2\x84\x90\x1b\x04\x81\x2b\x73\xae\x89\x86\xfb\x10\x3e\xd5\xb5\x7e\x38\x3c\xb1\x95\x41\xfc\xd2\x3b\x87\x6b\x67\x4f\xa2\xff\x42\xf8\xb4\x03\xbb\x96\xbe\x10\x24\xc8\x29\x8d\x3b\xed\xa3\xb9\x98\x50\x58\x6e\x7d\xf7\xf0\xc8\x21\x42\x79\xd4\x22\xf7\xb7\x19\xfb\x09\xc3\x47\xaf\x75\x3b\x0a\xd7\x13\x2c\x15\x14\xdd\xf7\x8d\xc2\x27\x7d\x76\xc3\xe2\x4d\x37\x09\xab\xf2\x85\x7c\x45\x2b\xa2\x58\x10\x0e\x68\x5f\x51\x15\xb0\x92\xe0\x96\x96\xa9\x3f\xbf\x43\x97\x0d\x0f\x6d\x73\x83\xab\x16\xf7\x30\x30\x8c\x3d\xfe\xe1\xda\xb7\x5a\x42\x69\x96\xd8\x1a\xed\x23\x8d\x04\x8f\x21\xbe\xd9\x0e\xc1\x01\x6c\xa5\xdb\x23\x5e\xea\x81\xe4\x69\x42\x9d\xe4\xcb\xcf\xed\xfc\x27\x09\x02\xd5\x0e\x0e\xd9\xc2\x51\x04\xaf\x43\xaf\x14\xd2\x9b\x8f\x13\x6c\x1b\x9f\x88\xdf\x6f\x39\x45\x50\x4d\xff\x3d\xec\x6c\xd0\xc6\xe0\x64\xb3\xc6\x89\xaa\xd1\xed\xfc\x07\xee\xb5\x9f\x13\x9e\xb1\x78\x3c\x61\xf6\xbb\x4e\x8d\xd5\x65\x1b\x09\xb7\x33\xc6\x25\xfe\x98\x9d\x4a\x38\xfc\x4b\xe3\x7a\x7c\xc2\x39\xc2\x1a\x29\xe4\xf6\x76\x14\x10\x3a\x05\x6d\x0d\x88\x4b\x94\x20\x25\x94\x5d\xed\xe4\xa2\x4b\x50\x90\xf4\xb2\xe2\x56\x7b\xce\x8c\x21\xd1\x67\xbc\xe3\x2a\x4e\x03\xfa\x2f\x24\x5c\xf6\x6f\xb4\xd1\x15\x27\xdc\x30\xd7\xb2\xbd\x78\xf3\x1d\x83\x73\x7c\x1c\xb6\x7c\x57\x0d\xe9\xbf\x70\x75\x7c\x44\x75\xac\x82\x18\xe1\xdc\xc0\x0c\xde\x94\x95\xed\x0c\xb4\xce\x7c\xdd\x35\x75\x82\x05\xfd\x03\x97\xcd\xf8\xc3\xee\x5d\x2a\x60\x30\xcf\xb4\x8c\xab\xe4\x20\xab\x08\x03\xdc\xf3\x97\x1d\x10\x35\xa1\xff\x61\xe8\x86\x9e\x6b\xde\xec\x17\x45\xd8\x25\x51\xf7\x3b\x36\x7e\x11\x81\xf7\x83\x2d\x3e\x74\xdc\x25\x58\x99\x67\x3b\x7c\x1c\x85\xad\x88\x79\x8d\xad\x41\x31\x61\x86\x58\xd0\x8a\xb0\x5d\xf7\x09\xdd\x33\x1e\x54\x17\xdd\x48\x63\x43\xc3\xd6\xa8\xf7\xa5\x19\x69\xa3\xb7\x58\x40\xbf\xf1\xfe\x34\x82\xaf\x86\xb8\x2c\x6b\x74\x69\x4f\x7a\x02\x8f\x4f\xde\xcd\x7f\x81\x95\xa6\xa6\x92\x77\x47\x81\xf0\x24\xf7\xfa\x55\x57\x8f\x3e\x06\x3b\x6d\xed\x38\xe6\x71\x18\xd0\x3f\xf0\xbf\x0b\x66\x90\x5d\x5d\x77\xe3\xa3\x2e\xdb\x35\xb0\x14\x9a\x6a\xfa\x24\x4c\x8a\x60\xa7\xf9\x2b\x22\x2e\x4c\x85\xc6\x8a\x52\x6b\xfb\xa2\x20\x9d\x0d\x6c\xf0\xdf\xed\x5e\x5b\x12\xa4\xc5\x86\x2f\x51\xbc\xf9\x15\x2f\xd4\xd8\x70\xb3\x82\x99\x7a\xa7\xfb\x2e\x41\xbf\x72\xed\x13\x9b\xd3\xf5\x2c\xa4\x2b\x5c\xf5\xf9\x5b\x22\x63\xf7\xcf\xd4\x38\x51\x4c\x58\x5e\x37\xf5\x56\x9f\x6b\x14\x0b\x52\x7d\x6b\xf9\x86\xa3\x2e\x13\xa4\xb2\x82\x1b\x07\xaa\xf4\x09\x11\xce\xfa\x0b\x06\x34\x7a\x99\x7f\x40\x86\x99\x1c\xfe\x8b\xdb\x80\xfe\x81\x46\x21\xcb\xb4\xbf\x1b\xfc\xdf\xbe\x06\x16\x39\x1d\xfc\xc0\x3d\xfa\xe7\xfa\xff\xc0\xdc\xc7\x61\xf9\x2f\xa5\x3e\x06\x7d\xdc\xba\x9f\xb6\xcd\xbc\x41\xb0\xae\x57\x4b\xe5\x09\xfe\xc6\xc0\x3a\xaf\xf5\xbe\x57\xe2\x2f\x06\xfb\x4d\x8d\x77\x2e\xfc\xad\x43\x08\x7d\x12\xb0\x67\xd3\xc3\x49\x84\x5c\xa3\xfb\xdb\xbf\xd5\xcd\x25\x7c\x1e\x2e\x88\xbd\x90\x7e\x89\x60\x41\xaf\x8a\x1e\xc4\x98\x13\x6a\xec\xc3\x9f\x4a\xac\x94\x26\xa8\x67\xf2\x94\xbc\x76\xcb\x23\x7c\xdc\x6e\xb6\xcc\xdd\xb3\x92\x70\x00\xaf\x4a\xbe\x4e\x1c\xfd\xb7\x3a\xac\xd6\x93\xba\x21\x97\x60\xd0\xd8\xf6\x32\xa9\x2c\x8f\x50\xc5\xb9\xbd\x59\xf9\xe0\x42\x42\xf7\x8b\x54\xfe\xba\xdd\x5c\x04\xb1\xd5\x1c\xd7\x6e\xc4\x2a\x8f\x7e\x54\x8b\xfb\xef\x2f\xe8\xb2\x95\xff\x21\xcb\x56\x65\xfd\xb1\x8c\x22\x66\x6c\xa7\xbf\x22\x2b\x62\x2b\x0f\x48\xd3\x3f\xb0\xb6\xb6\x4e\xf7\x86\xa7\xd2\xff\x3f\x98\x26\x79\x2d\x88\xcb\x6d\x66\x60\xc5\x5b\x3d\x2f\x72\x59\x0e\x61\xd3\x95\x19\x19\xd7\x97\xe6\x10\x22\x55\x5a\x0a\xba\x03\x65\x08\xe9\x8b\xe7\x76\xf3\xbc\x1c\x4f\x38\xa1\xd7\x39\xce\x29\x5d\xe7\x5f\xe8\x94\xd9\x32\xf1\x99\xae\x12\x41\xb4\x61\xe1\x33\x75\xa5\x27\x0c\xb6\x38\x44\xd7\xb7\x24\x4f\xa6\x31\xd4\x4b\x85\x4e\xe4\xbb\x28\xf7\x2f\x5c\xab\xb6\xd7\xed\xbe\x10\x43\xf0\xb6\x4b\x48\xbf\x51\xcc\x47\x30\xf7\x5b\x72\xf6\x4d\x50\x18\x81\x6b\xfd\x47\x25\x21\xfe\x12\x16\x2c\x8e\x75\xad\x36\x19\xfa\xc5\x20\xda\x39\xfe\x68\xf7\x4d\x53\xfa\x07\x4e\x7d\xb5\x38\xfa\x7f\x2f\x54\xdd\x8c\xad\xd2\xfa\x87\x56\x11\xb8\x6f\x27\x2d\x3c\x19\xb2\x9b\xc6\xca\x1e\xe5\x6f\x15\x21\x73\xfb\x18\x48\xaa\xb4\x7c\xd8\x39\x57\x90\xb0\x86\xa7\x31\xc6\x39\x8c\x21\x34\x26\xb1\x26\xd7\xec\x99\x49\x08\xd7\x4a\xf4\x57\x56\xe9\x62\x60\x16\x17\xdc\x15\xa5\x33\x8e\x30\x77\x30\x5c\xe8\x58\x63\x0f\xf3\x5f\x98\x5f\xfa\x28\x78\x77\xb5\x20\xa1\x77\xd6\xc9\x28\xc3\x2b\x4b\x59\xb8\xac\x78\x31\x0f\xa6\xb9\x84\xde\xe0\xb9\x6a\x9f\x45\x77\x13\xb2\x3b\xe7\xab\x2f\x10\xcc\x23\x38\xca\xab\x29\x5e\x3a\xa7\x48\xe0\x0b\x58\xb4\x9b\x49\x57\x22\x88\x9b\x45\x3e\x71\x72\x9a\x4f\x30\xbc\xad\x9e\x6b\x62\xe7\x4c\x58\xde\xfc\x23\x35\x53\xcc\x90\xe0\xa4\x11\x7a\x48\xee\x0d\x27\x21\xf2\x67\xc6\x74\xd1\x35\x62\x84\x10\xed\x1d\xbb\x0b\xf5\x0f\xb1\x41\x4b\xb2\xda\xb7\xff\xe4\x7c\xc2\xbe\x70\x97\xf6\x27\x7c\x2c\x82\x99\x91\xcf\x6e\x61\x9f\x4d\x84\xfa\xe5\xeb\xaa\xde\x71\xec\x21\x5c\x95\xd5\x98\x9d\xbf\xd7\x96\x10\xab\xc3\xe7\x31\xeb\xde\x4a\x82\xab\x6d\xfe\x9d\xdc\x49\x69\x04\xe3\xf7\x9b\x57\x7f\xd9\x9a\x4d\xd0\xe7\x33\x94\xbf\x30\x6c\x46\x38\x36\x75\x40\x7b\x96\xf2\x3a\x82\x30\x4b\xac\x7b\x20\xfe\x2c\xa1\x37\x2d\xa8\xf4\x63\xb3\x23\xe1\x2b\xb3\x2d\x71\x86\x9f\x10\xc1\xe7\x6b\xc7\x92\xb6\x01\x16\x61\xf7\xbb\x70\x89\xf3\xb9\xd1\x84\xf4\x5c\xa9\x16\xbd\x4d\x7e\x04\x47\xee\x4b\x5c\x87\xf2\x8f\xb1\xe0\xde\xaf\xb2\x62\x30\xce\x81\x60\x26\x76\xcf\x54\x22\x21\x8c\x85\x55\xfa\x79\xe6\x77\x5e\xd4\xb2\x60\x7f\x5e\x48\x52\xd5\xae\x93\x05\xd5\x8a\x40\x5f\x63\x95\xbb\x84\xa3\x22\x2c\x79\xe5\xcb\x02\x84\xde\xb5\xef\x0f\x78\x3d\x5d\x41\x78\xf3\x2b\xc0\xea\x6e\xf2\x23\x06\xbb\x17\xdf\x79\x67\x10\xd2\xc7\x86\x97\x4f\xb7\xe5\x4c\xff\x29\x4e\x63\xb0\x93\xda\xba\x6c\x4f\xcd\x4f\x06\xcb\x52\x2f\x0d\x4f\x0c\x99\x44\x63\x08\x3f\x75\x3b\x66\xfc\x6f\x55\x02\x6d\x91\x73\x0f\xfb\x1c\x41\x10\x38\x99\xfc\x7d\xa9\xac\x0b\x1b\x54\x92\x3b\xee\x78\xc5\x29\x11\x26\x2b\x5a\xc9\x67\x2f\x2c\x24\x3c\xea\x32\x30\xbb\xfb\xe4\x2c\x1b\xf4\xe6\x99\x4a\xd5\x5f\xea\x62\xf0\x6e\xfe\xa5\xd7\x37\xf7\xcf\x23\x1c\x76\xaa\x7b\xa0\x04\x7b\x36\xc4\x38\x6f\x0a\xea\xf8\x39\x8d\xf0\xab\x43\x7b\xe6\x17\x71\x61\x42\x01\x07\x6f\xb0\xf5\x05\x43\x42\xa5\x4d\xec\xda\x5b\x66\x53\xd9\xd0\xe9\xa4\x14\x7c\x7c\x45\x1f\x83\x41\x3b\x05\xd1\x5e\xe3\x19\x84\x93\xcf\x4f\x38\x6c\xb0\x5d\x4e\xd8\x72\xcd\x6b\xe7\xaf\xbd\xd2\x04\x4d\xee\x12\x81\xe9\x21\x21\x84\xed\xe7\xc2\x26\x99\xaf\xce\x2d\xc2\x0e\xbe\x53\x5f\x5e\x73\x1e\xa7\x7f\x60\x5d\x50\xab\x7c\xe8\xdb\xad\x84\xea\xd5\x27\x4c\xc2\xf9\x7a\x18\x1c\xd6\x7d\x72\x3e\x64\xf4\x79\xf5\xbb\xb5\xf1\x71\xe9\xfc\xeb\x84\xe6\x56\xd7\x49\x8f\x5c\xee\x12\xd2\x7f\x7c\x77\xde\xb2\xec\x16\xa1\xe5\xd7\x37\xe5\x00\x56\x2a\xc1\xc1\x76\x6f\xfe\x03\x27\x29\x82\x8c\xfb\xc7\xd7\xe1\x82\xbe\x6c\x78\xb0\xd8\x73\xad\xe0\x8a\x93\x04\xad\xb8\xfb\x9c\x53\x23\xb4\x08\x2f\xcc\xc4\x64\x06\xcf\x0f\x31\x88\x75\xf0\x46\x78\x4b\x1c\x8d\x61\x07\x52\x65\x4f\x8d\x62\xd6\xa3\xe8\xaa\x4f\x1f\xee\x15\x21\x69\xf5\xf6\x09\x6b\x55\x47\x18\x34\x7d\x4e\x58\x7a\x58\x21\x9a\xf0\x6a\xa5\xe3\x9a\x63\x91\xc9\xac\xb1\x22\x51\x5d\x6c\xa5\xb3\x21\x92\x0d\x89\xf7\x33\x2f\x05\x9a\x1e\x22\xdc\x18\x7f\xc0\xed\xa2\xd0\x21\xb6\xb2\x69\x5d\x65\xef\x55\x4f\x41\xc2\x62\xef\xcc\x68\x55\xd7\xc3\x0c\xe4\xcf\x4c\x88\xcc\x78\x58\x4c\x63\x78\xf0\xb4\xca\xdc\x6e\xd7\x4b\x16\x48\xaf\xab\x6b\x30\x9a\x7d\xe9\xb7\x59\xb8\x97\x44\xe0\x11\x36\xe8\x99\x4f\x2d\xaf\x59\xba\x9e\xad\xc8\x8e\x4b\xd2\xd9\x92\x9a\x49\xd0\x08\xdb\x97\x2c\x70\x3d\x93\xf0\xc0\x48\x74\xff\x36\x47\x57\x42\xf3\x5a\xb9\x5c\xd7\x23\x8f\x58\x50\x49\xb1\x3b\xf4\xc3\xdb\x8d\x90\xf7\x7c\x77\xf1\xc7\x7a\x77\xc2\x07\xb5\xcd\xb7\xcb\x55\x96\x13\x7c\x2e\x7a\xae\x96\x56\x9a\xc5\x86\x2c\xd1\x06\xed\xce\x71\x56\x6c\x28\x8d\x2c\xff\x7c\xf3\x8c\x30\x61\xf2\xde\x9f\x11\xc1\xb1\x66\x84\x8e\xc1\xf7\x2a\x65\xf7\xc7\x11\x9e\xbc\xbe\x7a\xe8\xea\x96\x12\x82\x5f\x8c\xe2\xc9\xf1\x31\x05\x04\xed\x0e\x05\xab\x83\xad\x29\x2c\x94\x4d\x2b\x94\x16\x9e\x5e\x44\x98\x56\xf2\xc5\x2a\xb0\xd4\x89\xb0\x4a\x5b\x33\xba\x48\xde\x9f\x70\xf4\xae\xab\xf9\xe6\x4b\xfb\x58\xf8\x39\x39\xec\xcb\x38\x1f\x7f\x82\xfb\x9e\x9b\x3b\xae\xc7\xbb\x10\x8c\xa7\x4a\x1f\xfd\x58\x76\x88\x50\xbd\x85\x83\x27\xba\xe1\x1a\xe1\x80\xd5\x0e\x75\x26\x94\x8f\x30\x3d\x59\x38\x84\x43\x9c\x45\x90\x50\x70\xcc\xdb\x19\xb3\x8a\xf0\x75\xd9\xeb\xe8\x8f\x5b\xef\x11\xa4\x58\x1b\x02\xf2\x8b\x6e\xb3\x95\x8b\x3f\x7f\x96\xf8\xe7\xd5\xb3\x50\x3e\xdd\xe9\x60\xea\xda\x44\xc2\x93\x0e\xd1\xae\x91\x81\x22\xc2\xce\xba\xa9\x2b\x9f\x5b\x14\x11\x26\xd8\x27\xc4\x36\x5e\xc8\x60\xa1\xf9\x95\x55\xc3\xe1\xa4\x22\xc2\x31\xa9\x9f\x26\x7d\x25\x77\xd9\xb0\xde\xf8\xfe\xe4\xbf\x98\xd9\xfc\x51\xfb\x2f\x54\xa7\x9e\xb2\x8f\xdc\x7e\x8c\x0d\x07\xe4\x37\x9f\x7d\x6f\x5d\xc3\x1a\x2b\x41\x90\xd7\x92\x39\xeb\xc5\x56\x56\xdf\x73\x1a\xdc\x29\x77\x86\xb0\xbc\x66\xab\xd4\xfd\x77\x2c\xd6\x58\xf9\x1f\xde\x19\x3e\xfe\xa9\x12\x7e\x9c\x10\x2c\x6e\x17\xdf\x55\xb9\x85\xd0\xbf\x3a\x29\xce\xe1\xc7\x10\x03\xc7\x2a\xb3\x95\xf9\x8f\xe4\x09\xcf\x9e\x9f\x53\xde\xa7\xc4\x41\x58\x36\x61\x3c\xad\x99\xac\x46\x98\x58\x1e\x14\x59\xf2\xd1\x80\x0d\x35\x86\x09\x7e\x1e\x6a\x22\x84\x47\x7f\x21\x4b\x38\xbb\x68\x51\xc8\x40\xfe\x55\x82\xbc\x69\x70\xdb\x5f\xfc\x99\xde\xa2\xf4\x17\xcf\xbf\x6f\x39\xf1\xf7\xe6\x0f\xc9\x57\x11\x56\x76\xf4\x21\x7c\xad\x93\x08\x88\x7b\xb9\x81\x70\x30\xea\x67\x9a\xcd\x54\x1b\x16\xdc\xc2\xc2\x2e\x7f\xe9\xca\x24\x30\xaf\xae\x08\x9d\xed\xd8\x48\xa8\xe7\x71\xf4\x0f\x59\xa3\x4c\x30\xe1\x3d\x56\x8f\xdd\x5a\x04\x93\x2d\x0d\x2f\x93\x43\xd2\x8b\xf0\x5a\x4b\xc8\xa2\xcb\x28\x9f\x50\x56\x93\x2f\xdb\x3d\x0a\xde\xe8\xc2\x50\x0b\xed\x6b\x84\x05\x7b\x75\x54\xec\x2e\xdc\x27\x48\x7b\xea\xde\xfe\xbb\x34\xbb\x43\x72\xe9\x0c\x53\x37\xc2\xe0\xa2\xe6\x0f\xb3\x42\xcd\x58\x63\xc5\xab\x3e\x96\xb3\xa1\xfd\x10\xdb\xef\x84\x4c\xc9\x14\xe6\x70\xb7\x62\xc1\x66\xeb\xda\x5d\xed\x72\x1b\x09\x6f\xbd\x7e\x22\xac\xe0\x0c\xe1\xa2\xfa\x9f\x9e\x59\xdc\x27\x08\xdf\x3a\xb5\x93\x9a\x6e\xbd\x27\x58\x1e\x3d\x5f\xb7\xa8\xee\x0c\xa1\x71\x1e\xc7\x9c\x8f\x9f\xbe\x33\x38\xb8\xbb\x5d\x5c\x31\x47\x98\x50\x54\x75\x2a\xff\x6c\xa0\x00\x1b\xf8\x64\x24\x4e\x3e\x7c\x97\xc3\x60\xba\xad\xf9\x94\xe4\x99\xbe\x04\x5d\x6b\xf3\xa6\x97\xc5\xb3\x08\x13\xcd\xae\xaf\xe9\xe3\xff\xcd\x60\xcb\xd5\x11\x0b\x6b\x95\x79\x84\xad\x1d\x57\x4b\x3f\x37\x72\x12\x76\xa5\x5e\xf8\x52\x62\x3d\x8e\x10\xfa\x39\xd0\xe5\x50\xa1\x3f\x1b\xee\x3a\xcd\x34\xfb\x3a\x2b\xb3\x08\xbf\x98\x0c\xa9\x95\x55\x9f\x18\x2c\x29\xe7\x36\xb4\xbc\x7e\x8e\xc1\x0e\xf7\x96\x64\xc5\xb5\xf1\x04\x1f\x3f\xb7\x9d\xf9\x37\xe3\x59\x28\x48\x3d\xba\xd9\x7f\xeb\x0e\x42\x4b\xff\x72\x89\x37\x71\xeb\x09\xe5\x6b\x53\x84\x55\x6e\x09\x13\x5c\xf5\xac\x75\x57\x57\xa8\x11\xec\x42\x4a\x33\x8f\xaf\x9a\x4c\xd8\xb1\xcd\xfd\x81\x03\xbf\x1c\xc1\xed\xe4\xca\xdb\xc9\x2a\xfa\x04\xc9\x1f\xa6\x8b\xed\xf8\x84\x09\xba\x8e\x35\xb3\xcb\x2b\x65\x08\x52\x07\xe2\x4c\x3f\x15\x82\x41\xf1\xf5\xf4\x32\x9f\xe7\x5b\x68\x0c\xcf\x7f\xe9\x6f\xcf\x4d\x2a\x25\x74\x15\x8a\x3f\xd4\x7c\x57\x4a\x18\x2e\x72\x0d\xb3\x90\x78\xc8\x02\x47\xf3\xa5\xc9\x8d\x3c\xbe\x34\x86\xc7\x9e\x93\x77\x99\x34\xa5\x12\x46\x16\x9f\x6c\x7f\x64\xe5\x46\xd8\xe6\x13\x71\xc4\xd9\x3d\x95\x10\xdb\x65\xf0\xf6\xbb\x9d\x1b\x61\xef\xc6\xab\x77\xd3\x16\xe5\x10\xae\x9b\x5e\xd9\xef\x9c\xbd\x95\x60\xde\xdd\x70\x44\x25\x64\x23\x1b\x6c\x13\xd3\x3d\x79\x52\x39\x08\x3b\xb7\x7d\xdb\x11\xf7\x13\x0c\xe4\x02\x03\x6a\x66\x59\x1c\x24\x4c\x5d\xa2\xf7\xd6\xd5\xd7\x99\xb0\x3d\x5e\x8e\xf3\x72\x9d\x24\x21\x5b\x71\x05\xc7\xfb\x72\x55\x82\xbc\x92\xc2\xb1\x29\xe3\x86\x18\xfc\x44\x55\x7b\xb7\xe6\x13\x16\x04\x34\x2f\xdc\xf1\xde\x63\x41\x50\xba\x61\xe2\xbf\x38\x64\x07\x0b\xcb\x85\xd6\xa9\xd6\xf7\x46\x10\x2e\x57\x86\xbe\x28\x3b\x35\x8d\x00\xd9\x3d\x5f\xd3\xec\xcd\x08\x09\xf7\xbf\x9a\x2b\x06\xd7\x31\x58\x52\x14\xef\x5f\x7c\x98\x83\xc6\x70\xd4\xc4\xe7\xe3\x24\xad\x86\x22\xf4\x7c\x9b\x7b\x4f\x6a\x85\x24\x61\x37\xf7\x16\xd1\x58\xe7\x85\x6c\xe8\x6f\x49\x74\x1d\x38\x5a\xc9\xe0\xe9\x7a\x71\xc6\x63\x39\x3f\x21\xe4\x43\xb3\xca\xa2\x8d\x03\xcc\x18\x36\x75\x68\x91\x9c\x66\x35\x83\xda\x83\x13\xac\x23\x2e\xb5\x32\xe8\xdb\xbf\x4e\xe4\xbb\xf8\x4a\xc2\xd4\x4b\xc5\x19\x23\xaa\x51\x2c\xd8\xc6\x28\xdc\xae\x0a\xce\x26\x08\x4e\x0a\x63\xc5\xef\x16\x23\x34\xef\x3e\x28\xfa\xc3\xea\x05\x33\x06\x93\x79\xf1\x79\x6d\x09\xad\x0c\x42\xac\x1b\x82\x3c\xee\x4d\x27\x34\x14\xf4\x14\x5c\xeb\x5d\x46\x08\x55\xaa\xdd\xb7\x6f\x31\x27\x81\xf3\x62\xd2\x59\xd5\x8a\x6b\x84\x86\xf1\xd5\x41\x9d\x8c\x1c\x61\xc9\xde\xc1\x39\xc3\xd3\x1c\x08\x29\x2f\x3d\x26\xb5\xed\x50\x22\x44\xeb\x0d\xda\x9a\x8b\x29\x12\x2a\xee\x54\xdf\xaa\xdb\x36\x8d\xd0\x6c\x21\xf7\x62\xea\x36\x0e\x42\x88\x70\x85\xfc\xb4\x66\x5e\x82\xb8\xc6\xa6\x5a\xb1\x9b\x17\x09\x6d\x65\xc7\x7e\xfd\xc5\xcc\x80\x8b\x49\x93\xb9\x12\x68\xc8\x4e\xd2\x2b\x7f\x57\x5d\x11\x5e\x27\xad\x33\x6b\xd8\xcc\x47\x63\x10\x69\x1f\xa8\x3b\x94\xf5\x91\x81\x55\x36\xe9\xa9\x32\xca\x84\xcc\x17\xa1\x2a\x17\x4e\xaa\x12\x2a\x1c\x1d\x93\x1c\xb5\x24\x09\x29\x8b\x8c\xc2\xf7\xc4\x6e\x24\xf4\x8b\x0b\xc9\xe8\xa7\x70\x10\xee\xda\xac\xe3\x99\xb6\x58\x89\x0d\x72\x1c\x1a\xb3\x9f\x3e\x5b\x44\x68\x0e\x72\xbd\x1d\x3f\xc5\x80\x90\x5c\xd8\x3e\x75\x47\xa7\x10\xa1\x71\xdb\x99\xe8\xc2\x9c\x4a\x06\xcf\xce\xef\xd2\x1c\x0f\x13\xc2\x5c\x53\x9d\xee\xdd\x33\x86\x18\x28\x7d\xc9\x6a\xde\xd0\xdf\xc9\xc0\xd0\x63\xda\xc5\x05\x82\x3a\x84\x9e\x2c\x93\xe2\x86\x2c\x61\xc2\xad\xed\x79\x8d\x3b\xf8\x84\x08\x37\xe6\x6e\x91\x13\xdd\x97\x4b\x68\x76\x92\xf2\x30\xf8\x65\x49\x98\x7f\x55\x3c\x22\x55\x48\x91\x50\xb5\xb6\xb4\xdf\xe1\x50\x06\x1b\xf8\x56\x67\xfa\x05\x85\xa6\x13\xb2\x16\x5b\xec\x3c\xf9\x6f\x2c\x4f\x5e\x37\x59\x7a\x9c\xcd\xbf\x90\x20\xf7\x64\x8a\x83\xc2\x34\x82\x6a\xf0\xc8\xc1\xae\x55\x3f\x18\xd4\x8c\x73\x98\xf7\x43\x40\x95\xb0\x2c\x34\xb3\x66\x2f\x73\x94\x85\x23\x6a\x7b\xda\xbd\xef\x7d\x62\x50\xd0\x26\xe3\xa4\xa9\xa4\x41\xc8\x9c\xea\xba\x4e\x57\xdd\x80\x60\xec\xdf\x2c\x35\xd7\xa6\x87\x41\xda\x8b\xd9\x17\x7e\x5c\x3a\x41\x63\xe8\x58\xe4\x1b\xd5\xb7\xf7\x03\x83\xf7\xd3\xbf\x16\xeb\xf9\xff\x64\xb0\x76\xa1\x35\xf3\x65\xc2\x38\x42\xcf\x2f\xce\xdd\xb1\xfb\x87\x98\x31\x5c\x55\x0b\xd0\x32\xe9\x9e\x4d\x90\xbc\xb2\xfa\xbb\xe6\x31\x2e\x1a\x2b\xb7\x4c\x22\x1e\xb5\x05\x1e\x66\x41\x25\x7d\xa6\xd1\xb5\xbb\x5c\x84\x2a\x67\x5f\xb3\x9f\x55\x4d\x0c\x3c\x7e\x57\xe9\x33\x33\xf3\x08\x16\xfe\x13\xe4\x67\x35\xe4\x12\xd4\x23\x16\x56\xaa\x35\xb5\xb1\xe0\xaf\xfe\x7d\x8b\xfe\xe8\xd2\xfc\xf7\xea\x8d\xf1\x5c\x1b\x08\x66\x8a\x03\xea\x99\xeb\x4b\x08\xca\xcb\x73\xa2\x15\x22\xee\x10\x32\x64\xfc\xfc\x92\xb9\x93\x08\x35\x4a\x4f\x96\x14\x3d\xba\x4b\x58\xf1\xf5\x2a\xf9\x1e\x4f\x24\x74\x1f\x7e\xbd\xaa\x62\xad\x0f\xc1\xa2\xb2\x30\x3e\x47\xe5\x38\x21\xb1\xca\xa7\xac\xa3\xc0\x99\x6d\x89\x5f\xe3\x5b\xb0\x44\x6f\x3a\x61\x77\x8b\x4b\xc2\x9c\x79\x57\x09\xc6\x0b\x8c\x93\x7c\x52\x94\x08\xc9\xa6\x6b\x7c\x6e\x1c\x9d\x41\x98\x9a\x50\x50\x74\xb6\xd7\x9e\x0d\xbd\x3e\x57\x1c\x6e\x0c\xff\x64\xc0\x35\xff\xc7\xe3\x35\x37\xd7\x12\x7a\xee\x70\xcc\xbe\x16\x69\x44\x88\x0d\x9e\xfe\xf8\xc8\x25\x6e\x82\xc9\xfd\x2f\x1c\x4b\xcd\xf9\x09\x2e\x87\x64\x9b\x6d\x66\x7c\x62\x70\xbc\xcf\x7c\x24\x2d\xbf\x84\x10\xbc\xa3\x77\xda\xf6\x85\xea\x04\xd9\xe0\x3b\x77\xbf\x56\x19\x11\x7e\x24\x56\x6f\xf5\x28\xf4\x64\x43\xb5\xe6\x23\xbe\xe5\xf1\x46\x84\x23\x77\x8d\x67\xfa\x25\xc9\x10\x26\x90\xe8\x66\xdf\x9a\xa5\x04\xfe\x2f\x41\x9d\xeb\xbf\x29\x10\x0c\x6f\x2e\xd2\xde\xf2\x5a\x88\xf0\xa4\xe5\x07\xcf\x9d\xf2\x44\xc2\x1b\xdf\x84\x27\x8f\xd5\xf8\x08\x73\xf2\xef\xdc\x09\x9f\xc3\x49\xb8\xf5\x65\xbc\x52\x53\xac\x2f\xc1\x44\xf0\xe9\xdb\xa5\x9c\x17\x58\x78\x76\xb9\xc7\x20\x21\x8c\x9b\xf0\x49\xb3\x6b\x7c\x96\x85\x10\x41\xff\xaa\xf8\xf8\xd9\x3f\x7a\x19\x48\x6c\xd2\xee\xcc\x59\xa5\x4c\x10\x15\xbe\xb0\xe1\xed\x0f\x30\x28\x0d\x53\xdf\x1d\x3a\xe3\x23\x1b\x9e\x1f\x19\x6c\xdc\x16\x3e\x8e\x10\xb1\xf9\xcc\xe3\xcd\xe1\xd2\x84\x96\x35\xb7\xcd\x23\x54\x07\x19\x0c\x14\x4a\x3b\x14\xbe\x89\x65\x41\x4b\x57\x48\x58\x64\x7b\x08\x8d\xe1\x78\xba\x1d\xd7\xe3\x30\x1f\x82\x94\xe1\x5b\xf1\x39\x95\x60\x90\x50\xfa\x35\x41\xe6\xa8\x21\xfd\x03\x1e\x77\x2f\x9a\xc5\xcb\x3e\x67\x70\xef\xeb\x4d\x81\x8c\x67\x7f\x18\x5c\xa9\x3d\x65\x37\xce\xe5\x17\x1b\x96\xeb\xd4\xda\xfa\xaf\x1a\x60\x70\xa6\xa9\xf5\x5e\x2c\xef\xeb\x22\x88\xed\x1f\x97\xfd\x50\x7a\x33\x8d\x21\x70\xa4\xb1\xaa\xca\x7f\x90\x41\xb8\xc8\xc9\x8a\x69\x4a\xaa\x84\x2e\xfe\xb4\x04\xfb\x21\x53\xc2\x86\x07\x81\x0a\x45\x46\xfc\x84\xd5\x8f\x59\x26\x3a\xd5\xdf\x19\x08\xef\x0f\xf3\x7a\xec\x71\x99\x20\xb2\x7f\xa2\xd1\xa2\x97\x77\x08\xf5\x92\x22\xf5\x17\x58\x19\x84\x6d\x0d\xa6\x99\x9f\xfb\xcb\x08\x8a\x13\x1f\x98\x4a\xaf\x2a\x25\xec\x7f\x94\x6c\xe3\x2e\x5a\x4a\x68\x54\xf8\x10\x69\xb4\xa8\x9d\x85\x80\xee\x2e\xff\xae\x9e\x40\xc2\x9d\xf4\x0f\x15\x4d\x69\x4b\xd8\xca\x4a\x8d\xe5\x6e\x1b\x4d\x26\x12\x86\x7b\x7b\x66\x9f\x71\xb7\x26\xc8\xbc\xcf\x7e\xde\xe8\x37\x9b\xb0\x29\x7b\xff\x5a\x4d\xb9\xa9\x84\xd2\xce\xc8\x45\x8f\xf4\xbf\x30\x58\x55\xcc\x84\xd1\x4b\x67\xc2\xb5\xc2\xcc\xb3\x1c\x65\x31\x04\x37\xff\xc0\xd8\x48\x5f\x0d\x42\x50\xbf\x6b\xe9\xef\x15\x0b\x09\x96\xe3\xbf\xf0\xb2\x92\x7b\x18\x8c\x5c\xfb\xe6\xbd\xaa\x6b\x2e\x21\xb9\x7f\xdb\x06\xcd\xd8\x11\x06\x1d\x2b\x5a\x57\x1a\xfa\xca\x11\x64\x27\x6f\xb5\xec\x3b\xab\x47\xd0\xbf\xbe\xb7\x4f\xab\x72\x3f\x1b\xea\x57\xd1\xd0\xd3\x1d\x39\x2c\xa4\xbf\x8e\x2f\x0e\xdd\x67\x47\x58\xba\x2d\xb2\x67\x66\xb8\x2c\x1b\x54\x1c\xfd\x63\xb6\xed\xb3\x64\xc1\xd0\x2e\x53\xf3\xc6\xb8\x40\x16\xa2\x46\x7e\x36\xf5\x6e\xdd\xc0\x42\x49\x05\x77\xe4\x0c\xc1\x2b\x2c\xb4\x76\x2f\xe7\x1a\xae\xd1\x27\xac\x2c\x62\xd9\xda\xa8\xea\x11\x58\x67\xca\x52\xf5\xc4\x5e\x32\x68\xe3\xf9\xd4\x77\x68\x92\x1c\x8d\xe1\xda\xa0\xf7\x46\x0d\xee\xf8\x22\xd4\x3c\x97\x3a\xad\xfb\xde\x9a\xd0\xea\x91\x35\x47\xb6\xd0\x90\xf0\x49\xd7\xfa\xfc\xdb\xf5\x22\x6c\x78\xf9\x49\xcc\xb9\x22\xe6\x07\x83\xc2\xe0\x94\xf5\x8f\xa8\x9f\xc1\xb3\x8e\xce\xc5\x5c\x77\x32\x09\xce\x85\x7c\xf7\xc6\x95\xdf\x26\xe4\x9f\xa8\xd7\x48\x9c\xa9\x4c\x70\x69\x15\xf4\x78\xc7\xe4\x13\x22\x24\x43\xa6\x4d\x15\xcf\x27\xfc\xe6\x8f\xf7\xf0\x75\xbd\x49\x70\x13\xce\xdf\x39\xcf\xed\x26\xa1\x2f\xe3\xc4\xbd\xc6\xad\xc7\x08\x8b\x5e\x49\xa0\x98\xff\x18\x61\xcb\x11\xae\x21\x87\xfd\x65\x45\xd0\x3c\xdf\x13\xe9\x6a\xdd\xc2\x20\xf1\xc5\xb3\xfd\xb1\x5e\xed\x0c\x2e\x3f\xab\xd6\x12\x6b\x98\x49\xa8\xeb\x0f\x5f\x18\xfb\x88\x83\x50\xe7\xcd\xe1\x99\xb3\xbf\x81\x19\xc3\x97\xc2\x29\x3d\xf7\x2c\x39\x08\xe3\x9f\x17\x96\xaf\x4b\xff\xcc\xe0\xe4\x71\xb1\xf0\xa0\xa8\x1f\xff\xc2\xc7\x83\xb6\x5c\x72\x9f\x75\x09\xe6\x5f\x5d\xf5\x9f\xf4\x9b\x10\x56\x50\x75\x7d\xbd\x94\x3e\xc1\x82\xeb\xd8\xd1\x76\x07\x30\x63\x28\x66\x1d\x7c\xe8\xc7\x55\x5e\x04\xd6\x67\x15\x83\x39\x36\x17\x09\xcb\xb4\x07\xea\xee\x2f\x35\x24\x88\x68\x77\x4c\xda\x92\x76\x81\xd0\xf5\xac\xf8\x78\x45\x5e\x00\xa1\x73\x82\x74\x04\xdf\x14\x3b\x82\xce\xe6\x80\xe9\x0d\xb2\xca\x04\x56\x58\xd3\x71\x96\x92\x22\xa1\xfc\xec\xfa\x95\x0b\xfb\x78\x09\x2a\x81\xae\x67\x15\xb4\x8e\x10\x9e\xdd\xea\x0b\xbd\x1b\x2c\x49\xc8\xd7\x79\xc2\x37\xa2\x76\x98\xd0\x61\xa7\x7c\xb5\x56\x20\x89\x85\xdf\x19\xb6\x0b\x1c\xc5\x4a\x09\x05\x31\x32\x82\x22\x76\x8e\x84\xd2\x63\x2e\xdf\x34\xcb\x12\x09\x3a\xad\x3c\x9e\x26\x1f\xa2\x09\x3c\xcd\x5f\x94\x1b\x67\x86\x10\x56\x0e\x1c\x35\xb8\x60\x7d\x81\xc0\xfd\x6e\x81\xef\x3b\x8f\x32\x16\xce\x15\x5e\xbe\xb3\xff\x57\x02\x81\x43\xea\xfa\xbc\x94\xfa\x75\x04\xd6\x8e\xab\x51\xc7\xdf\xae\x26\x58\x07\xed\xe8\x5b\xbd\x20\x92\xe0\x2b\x58\x73\xed\xe3\xf5\x49\x84\x9c\xa7\x53\x27\x07\xfd\x11\x21\xc4\xf4\x4b\xaa\x5b\xc8\x2d\xfc\x4f\x7c\x72\xe2\xbb\xea\x59\xfd\xa6\x08\x2e\x8e\x7a\x32\x3b\xc4\xe5\x08\x67\xee\x9d\xb4\x66\xd2\x8c\x08\x62\x15\x77\x7f\x46\x94\x48\xb3\x61\xf9\xae\xa3\x51\x76\x6e\xc3\xcc\x18\xa6\x2e\x4b\xb5\x0a\xdf\x7f\x93\xd0\x94\x73\x5c\xfd\xf1\x28\x1c\x8d\x27\x7d\xbf\xf9\xf9\x39\x6b\xac\xfc\x0f\xf5\x85\x39\x35\x8b\xad\xcd\xd9\xa0\x3c\x5e\xef\x65\x4b\xb1\xc5\xbf\xca\xb1\x40\xa3\xa6\x39\x5a\x9b\x09\xb1\x59\x52\x82\x31\x73\xaf\x13\x6a\x24\x25\xb8\xe3\xc2\x72\x08\x66\x53\xd6\x6e\x9c\x7a\xbe\x82\x20\x50\xbe\x7d\x99\x99\x4c\x09\x61\x92\x2a\x13\x27\x76\xec\x16\x21\xba\x80\x47\x2f\x54\xec\x16\x41\x47\xf8\xc4\x6a\x97\x4f\x97\x09\x12\x16\x32\x49\xf6\xd3\xce\x13\xae\x4d\x3c\x2c\xda\xfd\xca\x9f\xd0\xf1\xd9\x57\x48\xa4\x44\x84\xd0\xc3\x5b\x1d\xf3\x60\x79\x2b\x83\x24\x81\xe6\x2d\xf5\x82\x62\x84\xef\x15\x5e\x2c\x33\xdf\x0d\x84\xca\xe5\x3c\x86\x9e\xa9\x6b\x09\xf7\x0e\x4e\xfd\x96\x3a\x23\x8a\x0d\x35\x39\x2a\x9f\xa3\x2e\x27\x13\x84\x34\xaf\x19\xbc\xbe\x17\x45\x98\x7a\x60\x42\xe9\xef\xec\x14\x16\xb6\x47\x67\xd7\xa8\xd8\xa4\xb1\xc0\x19\x7b\xe8\x46\xc9\xfc\xeb\x34\x86\xcf\x4a\xb3\x8f\x94\x8d\x82\x35\x67\x4b\x10\x4b\xe3\x3a\xe1\x85\xdb\xf6\x58\xd1\x76\x19\x36\xc0\xf4\x7d\xeb\x27\xb1\x1a\x66\x0c\xab\x0a\xff\x18\x3f\xda\xda\x58\x84\x95\xbb\xc3\x3e\x34\x89\xae\x27\xa8\x97\xb5\xa7\x28\xfa\x7d\x64\x10\xd7\xbf\xa6\xe8\xb1\xe1\xe5\x22\x34\xed\x33\xb5\xed\xd2\x95\x26\x1c\xd9\x76\xa6\xff\x8e\x49\x0b\x83\x25\xf2\xd3\xf5\xd4\x56\x4d\x27\xf4\xaf\x5b\xff\xd5\x45\x7b\x03\x61\xce\xd3\x10\xef\xeb\xf5\x9a\x84\x07\xf2\x3b\xd5\xeb\x96\x3d\x64\x90\xd0\xba\xf5\x53\x92\x0d\x18\xbc\xa1\x69\x83\xad\xdd\xbc\x84\x4d\xf3\xe7\xb8\x24\xc6\x0b\x10\x6a\xda\x4f\xac\x76\xfb\x2d\x44\x08\xcc\x9e\xdc\x63\x54\x2c\x49\x88\xf9\x16\xf7\xec\xc7\x99\x76\x06\x3e\xe7\x34\xb7\xde\x5c\xa2\x45\xff\xc0\xcc\x73\x96\x37\xf5\xdc\xcd\xfe\x05\x25\x6f\xb5\x06\xd7\xb3\xc2\x84\xf9\xab\x12\xaf\x09\x5c\x70\x26\xc8\x9d\x92\x12\x5c\xb0\xe1\x2e\xc1\xdc\x7e\xfb\x96\xbf\x08\x5d\xb6\xf8\xb3\x9b\xe5\x5d\x82\xf4\xb7\x50\xff\xbf\xa5\xbf\x60\x38\x65\x31\x97\xc5\x7f\x62\x91\xc2\xd2\xfc\x49\x9b\x27\x12\x94\x6b\x8f\x34\x27\x4d\xd6\x20\xdc\x68\x11\x8f\xfc\xe9\x61\x40\xd8\x71\xa5\x4b\x77\x87\x63\x05\x0b\xb7\xbf\x7f\x2d\xcb\xbc\xd0\xc6\x40\xb6\x01\x7c\xba\x73\x84\x68\x0c\x1f\x37\xcb\x7f\xcf\x5c\x9c\xc3\xe0\x0c\xe7\xb3\xe9\x97\x6c\x12\x08\x4f\x14\x97\x5c\x1a\x29\xba\x4d\x90\x4c\x8e\x6b\x98\xb8\x87\x9b\x70\xf0\xc8\xb1\xef\x0f\x43\x97\xb0\xa1\x7f\xe4\x76\xe8\x06\x53\x86\x30\xe9\x02\x73\xd9\xe6\x59\x30\x0b\x45\x1c\x96\x46\x83\xe5\xf7\x09\xb9\x73\x56\x2c\xcb\xac\xd1\x25\x9c\x72\xbd\x12\x16\x7d\xe0\x3b\x83\xfc\xc9\x8a\xb5\x6f\xf6\xd9\x12\x9c\x0f\xbd\xf9\xe6\x3d\xf3\x3b\x33\x86\xe5\x22\x5a\x0a\xda\xb9\xb3\x68\x0c\x2b\xd2\x0f\x86\xbf\x12\xed\x66\x90\x32\xcf\xe2\xd7\x3c\xcb\xfb\x84\xcf\x37\x5e\xad\x5e\x61\xb2\x81\xe0\xeb\x55\x3f\xb3\x83\x9f\x87\x0d\x35\x23\x19\xd9\x01\xf1\xfc\x84\x88\x84\x5d\xb7\x9e\x6c\x50\x25\xac\x4f\xe5\x89\x65\x1e\xd7\x10\x26\x65\x44\x0d\xd9\x87\xde\x21\x54\xe4\xd8\x05\x36\xbd\xe0\x27\x5c\x28\xdf\xe7\x75\x6a\xd9\x3b\x06\xab\xf3\x15\xe6\x6f\x73\xf2\x25\x38\x45\xed\xe7\x5f\xdc\x69\x47\x30\xca\x6f\x18\x7e\x3c\xb2\x88\xe0\xa5\xcf\xf3\x9e\xe3\x69\x58\x11\x06\x5f\x75\x0e\x0e\xed\xe2\xa6\x31\x84\xec\xcf\xf2\x7c\x2e\xc1\x41\xd8\x18\x17\xa8\x99\xed\x32\x83\xe0\x70\xce\x9f\x2f\x41\x6d\x07\xe1\x79\xfd\x51\x0a\x76\x2c\x67\xc1\x36\xe2\x49\xcb\x4b\x11\x73\xc2\xed\x7c\x2f\x9d\xa6\xad\x5a\x04\x7d\x7e\x99\x9b\xea\x09\x60\x30\xbc\xf6\x84\xe6\x3c\xe3\xaf\x6c\x08\x76\x5c\x58\x3f\x55\x6e\x36\x8d\x81\x5b\xeb\xeb\xbc\x24\xc3\x97\x45\x38\x6b\xfe\xa5\x6f\x58\x6c\x3d\x8d\xa1\x70\x5d\xda\x5e\xe3\xf2\x7b\x04\xef\xf9\x47\x4d\x66\xaf\x11\x23\x58\x68\x55\xee\x19\xd6\x0a\x62\xc3\x8a\x00\xd9\x7b\x96\xe6\xc9\x04\x25\x0f\x33\x51\xe8\x58\x12\x66\x5d\xae\xbd\xb2\x77\x66\x31\x21\xd2\xb7\x33\x63\x51\xb3\x21\xc1\x5d\x54\x7c\x70\xc8\x77\x19\x41\x5f\x5d\xd3\x7b\xdb\x59\x65\x42\x5b\xf8\x1e\xb7\xff\xf7\x4b\xe4\x26\xf1\xba\xdb\x84\xfd\x66\xf0\x51\xe9\xec\xee\x3b\x9b\x54\x08\xf2\xce\x81\x25\xfd\x2e\x6a\x84\xb5\xae\xe7\x5e\x97\x6d\x54\x23\xac\x5a\x54\xed\xf9\xfc\xe1\x0a\x82\x9f\x7e\x8f\x4e\xfc\xcf\x79\x84\x3b\x4a\xd4\x10\xa8\x54\xcb\xc2\xc4\xe9\xb6\xd7\x54\x2d\xcb\x08\x47\x1a\x27\x9d\x3a\xef\x53\xc9\x42\xd1\x41\x81\xec\x57\x6f\xaa\x59\xf0\x71\xe2\x1b\x50\x9c\x73\x94\x60\x99\x34\x74\x97\xfb\xb5\x1f\x81\xa3\xcf\xc0\x65\xe0\xba\x11\x61\x72\x86\xec\x2f\xff\x41\x7f\x82\x9d\x88\xc4\x37\x35\xfd\x48\x02\x77\x59\xd0\xba\x3f\x3a\x91\x84\x63\x9a\xfb\x4a\x65\x6b\xae\x12\x12\x6e\x9c\x4a\x7b\xe9\x9f\x4b\x38\xf3\x53\x37\xcc\xca\x56\x98\xb0\xd6\x78\xff\xa7\x4d\x29\x99\x84\x85\x45\xe2\x1b\xb4\x23\xb5\x09\x0d\x24\xe7\x71\xb2\xa3\x97\x01\xdf\x1f\x89\xf1\x7a\xcb\xa7\xd3\x18\x38\x3d\x9f\xdb\x6d\xb4\x7c\x5c\x84\x78\x79\x63\xb9\xb0\x9e\x28\x02\x4f\xc1\x15\xfd\x21\xf9\x12\x42\xaa\xeb\xd0\xa5\x81\xac\x12\x16\x0c\x6a\xaf\x4a\xc9\xf6\xaf\xa5\x31\xcc\x9e\x2c\x61\x25\xfb\x41\x98\x20\xec\x9a\xfe\xe3\x52\xd7\x7b\x06\x7d\x37\x57\x4e\xb5\xd7\x98\x40\x88\x9e\x36\xa7\x59\x7b\x87\x2e\x1b\xfc\x83\xa7\xd5\x2a\xd8\xfd\x60\x10\xce\xd5\x14\xa1\x1e\xfd\x98\x81\xca\xf1\x96\x87\xf1\xf9\x06\x04\xd1\x9e\x06\xf7\x3b\xa3\xc7\xc2\x45\xad\xc7\x03\x7c\x8f\x18\x10\xa4\xc3\x7f\x76\xe9\x47\x4a\x11\x12\xf7\x65\x98\xaf\x92\xbc\x4d\xd8\xb1\x77\xc1\x2c\x11\xbb\x4c\xc2\x2c\x35\xc9\xde\x49\x52\x06\x84\x07\x61\x75\xc7\xbe\x8d\xce\x38\xf5\x06\xd6\xe3\x27\x07\x0d\x08\x77\x5e\xdb\xf8\x85\xcf\xd2\x21\xb4\x73\x45\xab\x0f\x29\x19\x10\x24\x14\xfd\x1e\x7b\xee\x3c\x49\xd8\x51\x54\xa0\xf4\x76\x8d\x00\xe1\xb8\xba\x79\xfe\xa9\x91\xd1\xa7\xed\x2f\x03\xbf\x4e\x64\x9c\x25\xa4\x29\xbc\xe8\x90\xe5\x5a\x41\xa8\x9a\xa9\x9d\x50\x66\xfe\xb4\x08\x6b\x0e\x7f\xba\x6a\xf3\x49\x9d\xc6\xf0\xfc\xb6\x5c\xec\xeb\xe5\x15\x0c\xd6\x70\xf6\x1c\x8d\x52\xd7\x20\x28\x57\xce\xdb\xe8\x2c\xf5\x91\x81\x67\x48\x68\x76\x44\xc9\x32\x82\xaf\xe2\xd0\x13\x89\x79\x2c\xc2\xb7\xf9\x7d\xf2\xfa\xad\xce\x6c\x18\xff\xcb\xae\x6a\x7c\xf6\x0c\x42\x4a\xff\xb9\xa5\xab\x2c\xa4\x09\x5e\x7d\x49\x71\x87\x42\x7a\x18\x94\x0f\x6e\x30\x9e\xac\x1a\x45\x68\x13\x71\x0b\xe0\xbf\x55\x4a\x58\xff\x91\x7e\x9c\x2b\x2a\x25\x7c\x51\x8a\x35\x92\x0f\xb2\x22\xf0\x2e\x0e\x79\x6f\xe9\x6c\xc5\x56\xbc\x5f\xfc\x8a\xd3\xeb\x5e\x47\x98\x68\xfd\x26\xa9\x31\x63\x06\xe1\x8a\x8a\x82\x70\x86\x35\x07\xa1\x39\x46\x6f\x4e\xa3\x46\x1f\x03\x9f\x0b\x23\xeb\xae\xa4\x8a\x11\xa4\x8e\xa7\x2c\x7d\x94\x3c\x95\x70\x88\x63\x61\x61\x40\xe4\x1a\x42\x9b\x97\xbe\x8a\xd8\x52\x01\x82\x56\xb4\xa3\x34\xc3\x7f\x91\xc0\x0a\x5d\x82\xae\xa5\x52\x84\xa7\x52\xcc\x1d\x7d\xde\x73\x84\x83\x02\x71\x5e\x6f\xe2\xf8\x09\x1c\x97\x96\x73\x7c\x5c\xb6\x95\x60\xd7\x32\x5e\xca\xf6\xbb\x0f\x0b\x09\xba\x29\xe6\x3f\x5f\x24\x10\x96\x58\x9f\x52\x9a\x9b\x9f\x40\x63\xa5\xef\xd4\x60\xa0\x48\xeb\x0e\x16\x72\xae\xc5\xa7\x35\x9b\xea\xd3\x10\x7f\x62\xe7\xa5\xa8\xe5\x84\xcb\xbb\x96\x0b\x6c\xec\x58\x4f\x68\x4b\xba\xaf\xb2\xc7\x5d\x9a\x0d\x53\xfc\xce\x54\x7a\x67\x0b\x12\x8e\xc7\xda\x1e\x9d\xf5\xa1\x84\xc1\xd5\xf9\x79\x36\xad\x4b\x04\x68\x0c\xb5\x8e\xeb\x75\xa6\x6f\x6e\x67\xf0\x7a\xf8\x78\xda\xc3\xcc\x69\x84\xdb\x8b\xfc\x4f\x0f\x98\xba\xb2\x21\xff\x64\xee\xe1\x49\x6b\x05\x08\xa7\x13\x47\xa6\xa8\xd5\xfa\x11\xec\xae\xbb\xdb\xa9\x6a\x9c\x20\x34\x6c\xf3\x3f\xb1\xe8\xb7\x06\xa1\x71\xd7\xb3\xac\xa4\x53\x3f\x19\x04\xc7\xd8\x4f\xcd\xcc\xb2\x63\x21\xdc\x5c\x7e\x7e\xdc\xfd\x4d\x34\x06\x0f\x5a\xb6\x9f\xb7\x69\x09\x61\xcb\x45\x2e\x9e\x9c\xdf\xe3\xd8\x30\x7d\x70\xd0\x5f\xed\x65\x23\x83\xef\x51\x52\x2b\xbe\x08\xfc\x60\xf0\x4e\x34\x63\x9c\x71\xc3\x04\x1a\x43\xd2\x9e\xbd\x0f\x7a\x0d\x27\x12\xb6\x74\x72\x3d\x75\xbe\xab\x4b\x58\xa8\xbd\x68\xc5\x8f\xa9\x0c\xc1\x5b\xf2\xd3\x61\xe7\x99\xd9\x04\xdd\x9b\x1c\x17\xcd\xd3\x88\xb0\x73\x57\x96\xb5\xd1\xfa\x83\x84\x99\x5f\x1d\xb2\x9f\xe9\x6e\x65\xc3\xbb\xc3\x77\x25\x66\x0b\x88\x10\x3a\x3e\x0e\x3c\xd4\xd0\x4e\x21\xa4\xed\x51\x4a\xe6\xdb\xa9\x4d\xa8\xe7\xda\x63\xc1\xb7\x70\xf4\xa1\x5f\xf1\xcb\xc4\x13\xef\x16\xd2\x18\xdc\x0f\x72\xef\x6d\xe2\x93\x24\x58\x3e\xb4\xf1\x89\xe5\x4e\x21\x1c\x13\x54\x6d\xe0\xb1\x9b\x4a\x70\xfd\x74\x5d\xe0\x6d\xe8\x4d\xc2\xe3\xc1\xdc\xbc\x74\xde\xdb\x2c\x58\xdb\x8b\x1f\xb8\x69\xb4\x82\xd0\x17\x38\xee\x71\xd9\x25\x1e\x42\xd0\x37\x9f\x65\x2b\x1c\x7c\x08\xca\x1e\x73\x94\x5f\x2a\x9b\x12\x3a\x68\x6a\xfa\xe0\x36\x4d\x82\xd8\x8d\x21\xeb\xa3\x2f\x1a\x19\x98\x44\x1e\x7a\xa3\x7b\x63\x0e\x8d\x21\x5f\xc3\x77\x8a\xf8\x40\x16\x6b\xac\x54\x6b\x26\x0a\xc6\xcc\xd9\xfa\x2f\x14\x7d\x7f\x98\x1b\xc7\x25\x48\x58\xd1\xa4\xdf\xc8\x27\xae\x46\xa8\x91\xef\xbc\x7c\x41\x38\x8d\xe0\x96\x2f\x3e\x69\x68\xf4\x06\xff\xf0\xe0\x9c\xfe\x8a\xcb\xd6\x84\x87\x53\xa2\x27\x7a\xeb\x5b\xb1\xb0\xe9\x6a\xd3\xad\x72\xdd\x0e\x06\xc1\x9f\x0b\xe2\xfd\x7f\xa7\xb0\xd0\x33\xfc\xbe\xaf\xdb\xc1\x8d\xc6\xb0\x62\x7c\x69\xcd\x85\xfd\x72\x84\x73\x9b\x83\x8f\x4c\xdb\xa4\x4c\x58\x9a\xb1\x00\x27\xed\x1e\x30\x48\x4b\x53\xad\xfd\x73\x4a\x91\xc6\xd0\x97\x6f\xfe\x68\xce\xfb\xe6\xa2\x31\x3c\x6d\x71\x3c\xda\x72\x49\x8d\xc6\xe0\x6d\xda\xdf\x39\xb3\x5f\x82\x20\xce\x51\x60\x57\xde\x22\x44\x68\x2c\xe8\x8f\xfd\x35\x9f\x9b\x30\xb7\x85\x77\x83\xc6\xcf\x29\x04\xe9\x30\xbb\xb7\xd2\x2b\x85\x09\xcb\xaf\x48\x4b\xe9\x7e\x75\x65\xc3\xb6\xdc\xea\xf4\xf1\x2d\x9b\x09\x2e\xf3\x62\xc1\xba\xbe\x90\xa0\x52\xf8\x9e\x7b\xfa\x81\x95\x04\x29\x71\xb9\x77\x3a\x57\x36\x13\x44\x4e\xbe\x8b\xb8\xd2\xab\x49\x58\x7b\xf5\x7a\x54\xe2\x24\x55\xc2\x8e\xe3\xde\xd3\x3c\x47\x1f\x6e\xf6\x27\xf7\x19\x3b\x58\x0e\x33\xc8\xe9\xe6\x8d\x2d\x4c\x16\x22\x84\x09\x2a\xee\xe4\x11\x6e\x64\x90\xdd\xd9\xf4\xdb\x49\xff\x27\x1b\xe6\x24\x8f\x9b\xba\xa6\xbe\x9c\x81\x43\xf5\xbc\xdb\xe2\x0f\xcd\x08\x29\xd5\x2d\x65\xcf\x1b\x88\x30\xe0\x61\x7b\xda\x27\x9e\x93\xe0\x78\xce\xb3\x45\xc7\x99\x83\x60\x33\x49\xc7\x34\xae\x4c\x86\x10\xcc\x61\x9b\x7e\x7a\x69\x31\x0b\xf3\x45\x2b\xd3\x27\xff\xce\x26\xb8\x6e\xe2\x72\x7e\x26\xb3\x88\xa0\x2f\x26\x20\xe3\x6b\x2c\xc0\x06\x0b\xae\xd0\xdf\x25\x53\xd4\x08\xe6\xe7\xab\xf8\x7a\x6e\xa5\x12\xf2\x8c\xea\x37\x14\xa4\xcf\x26\x54\xe6\x5d\x9c\x1e\xba\xed\x36\x61\x91\xe3\xe0\x74\x63\xe3\x79\x04\xef\x7a\x5e\x7e\x6d\x39\x69\xc2\xb9\x2f\x5c\x1f\x13\x5e\x17\xb3\xe0\x78\x20\x88\xa7\x02\x0b\x09\xc6\xe7\xdd\xb3\xa3\x16\x24\xb2\x90\x93\x29\x60\x63\xca\x58\x10\x86\x22\x9f\x6d\xe6\x09\xbe\x48\x30\x78\x23\xd2\x72\xfd\x5a\x19\x41\x52\x62\xf2\xfa\x61\xed\x5b\x2c\x9c\x8d\xe8\x98\xf2\xab\x55\x95\x70\x6e\xf7\xc6\xaa\x67\xdd\x25\x2c\x38\x5c\x93\x10\xba\x2f\x9d\x42\xf8\xed\xf3\xe0\x92\x7f\x5c\x2a\xe1\xe4\xca\xfe\x65\x8d\x76\xaf\x19\x1c\xb7\xb0\x95\x93\x28\xb8\x49\x98\xeb\xc9\xa3\x76\xf6\xf9\x39\x82\xbc\xf0\xc5\xa2\xa8\x51\x94\xa7\xb3\xf6\xbd\x94\x9a\x40\x88\xf9\xa5\x3e\x34\x62\x66\xcf\x86\x99\x4e\x06\x3b\x23\xb9\x75\x08\xd7\x95\x9d\xe6\x77\x7f\x91\x25\x98\x8a\x6a\x56\x24\x56\x7e\x67\xc6\x50\x94\xe4\xf7\xa6\xc6\xa0\x84\x81\xcc\xb0\x98\xe7\xf9\x59\x5b\x09\xdd\xca\x2d\x13\xa9\x36\x93\x30\xfe\x65\x9a\x8a\xc6\xf6\x19\x04\xf9\x82\x38\xff\x5d\xa7\x34\x08\x1a\xef\xb7\x1a\xec\x2f\x0a\x20\xec\x68\xca\x73\x0f\x3e\x15\xc6\xc2\x47\xd3\x92\xd8\x1f\xee\x79\x2c\x6c\xdf\x95\x91\x1d\xdb\xb1\x97\x30\xf0\xee\x14\x93\x5f\xbb\x9e\x20\xb1\xc2\xfb\xad\xa5\xae\x2f\xe1\xb4\x9f\xbd\x68\xfc\x53\x23\x42\xf3\x86\xff\x87\xb1\x3f\x0f\xc6\xfa\x8f\xfb\xff\x6f\x42\x24\x09\x21\x15\x4a\x59\x2b\x65\x89\xb2\xbd\x9f\x96\x2c\x69\x43\x49\x45\x25\xa1\x92\x54\xb4\x90\x14\x11\x2a\x21\xd9\x4a\xd6\xec\x2d\xc8\x1e\x39\x6c\x25\xa4\xdd\x52\x59\xd2\x1e\x5a\x88\x7a\x08\x75\x4d\xcd\x35\xa7\xe3\x9c\xf9\xfc\xce\xf9\xfe\x77\x9b\xfb\xe3\x35\x63\x8c\xe3\x30\xaf\xf7\x8c\x65\x9b\xf5\x2e\xad\xbf\x6f\x99\x43\xee\x66\x09\xd7\xcd\x09\xa2\xb3\x55\x74\x34\xcc\xe7\x12\x96\xef\x32\x73\xb7\xbe\x2c\x4f\xc8\x8c\x96\x0a\xb9\xa2\x68\x41\xf8\x50\xbf\xc4\x74\x4c\xfb\x3c\xa1\x24\xbe\xf6\xcf\xfd\x7e\x45\x42\x41\x93\xae\xf1\x91\x03\x6f\x98\x71\x38\xde\x9f\x96\xef\x51\x6d\x40\x98\xd3\xd3\x25\x5c\xea\x71\x81\xa0\x3c\x89\x7b\xc6\xe2\xd2\x1d\x84\x6f\xdc\xa6\x99\xdf\x4a\x6e\x11\xea\xa2\xdd\x05\xab\xd6\x97\x13\x98\x17\xb5\xe7\x86\x97\xfb\x13\xd4\x8a\x26\xea\x29\x28\x97\x13\xae\xc5\x3a\x5c\xdb\x90\x28\x4e\x98\xef\xbf\xc7\x36\xd4\x68\x35\x21\xb0\xf3\xca\x8d\x7b\xa7\x96\x10\x76\xbd\x9e\xeb\x26\x54\xf4\x88\x41\xec\x09\xf5\x4b\x9b\x64\x0a\x08\x46\x63\x4a\x42\x6f\xb3\xeb\x58\x98\x34\xe6\xd1\xb0\xf1\x6f\xb1\xfa\xbe\xa4\x4a\x37\x46\x8b\xe0\xbb\x62\xd7\xa1\x8a\x03\xb2\x04\xad\x83\x4f\xae\x88\xf0\x3f\x22\x9c\x28\x18\x19\x11\xfd\x8b\xba\x1f\xe7\x3d\xa6\xfd\xc5\xa3\x3d\x7a\xe7\x1d\xd7\x3c\x26\xb4\x6e\x0b\x7e\xb8\x85\xc7\x93\x10\x94\xd5\x70\xdd\x65\xf2\x11\xc2\xed\xc8\xa3\xd2\x69\x45\xe2\x84\xa2\x70\x5d\xd9\x2f\xa9\xaa\x6c\x25\x79\xfe\xbd\xf7\xae\x77\xf2\x08\x0b\xe4\x9e\xdc\xdf\x99\x11\x4e\xa8\xbe\xfa\x65\xee\xb4\x95\x81\x84\xa3\x99\x5f\x0f\xdf\xfe\xe9\x45\x58\x71\xec\xfa\xaf\x25\x3b\xff\x5e\xac\xee\xbf\x4f\xe3\xfd\x7d\x99\x70\x74\xd5\xc2\x3b\x5f\xa6\x1f\x23\xec\x7b\xc5\xda\xb8\x7d\xd5\x1e\x42\xa2\x61\xe3\xc8\xef\x49\x0e\x04\x21\x99\x5d\xfe\x49\xdf\x56\x12\x6e\x77\xed\x4f\xff\xf3\x5d\x91\x50\x29\x74\x63\xda\xa7\x2f\x60\x20\x24\xb2\x37\x6f\x4f\xe9\x1f\x06\x53\x7c\x79\x12\xf9\xfe\x5e\xf4\x24\xbf\x2d\x9c\xc3\xd5\x37\x9d\x90\x58\xf0\xe2\xda\xb6\xa3\x29\x84\xd4\x3f\x99\xce\x69\x29\x3a\x84\xd4\xc7\x01\x9f\xef\xec\x10\x27\xec\x16\x9b\x35\x29\x47\x84\x08\x51\x7e\x0d\xd3\x8c\xcf\x89\x11\xf4\xeb\x6d\x3c\x14\xfa\x43\x08\x36\xce\x93\x7b\xad\x76\x04\x11\xb8\x26\xda\x3e\x78\xf3\x94\x21\x38\x4d\x78\x25\x62\x69\x2b\x4f\x28\x0f\xb5\xba\x21\xa0\xfa\x91\x19\x87\xc1\x66\x5e\xa1\xcd\xc7\xf8\x09\x2b\x16\x5b\xe4\x09\x8e\x35\x30\x18\x59\x13\xd2\xa7\xdb\x37\x89\xc6\x61\x83\x79\x3d\x2d\x43\x5c\x84\xdc\x77\xeb\x76\xdb\x6e\xfe\xca\x80\xea\x04\xb5\x07\xa7\x81\x0d\x37\x2e\xb4\xe5\x72\xf7\x2b\x13\x86\x05\x0e\x94\xaf\xfd\xfd\x86\x30\x47\x5e\xee\xab\x78\xca\x07\xc2\x89\xe9\x91\x7a\x53\x37\xbe\x21\x5c\x93\x5b\x24\x77\x33\xf2\x01\x61\x67\x76\x84\x89\xac\x55\x2a\x21\x75\x42\xf6\xbb\x44\x45\x25\x42\xca\xa3\x1e\xd9\xcb\x6b\x73\x59\x68\xb0\x51\x09\x2b\x6d\xbd\x44\xb0\x9b\xb7\xa8\xb8\x26\xd3\x9f\xa0\x79\xf0\x5b\x88\xd9\xe9\xa7\x84\xad\xca\xab\xf7\xc7\xef\xb9\x45\xe8\xdb\x9c\xb5\x40\xcc\xf7\x29\x41\xc6\x22\xbb\x45\xca\xf5\x16\xe1\xf0\x85\x4f\xc9\xae\x33\x26\x12\x6e\xfd\x29\xb8\xa6\x67\x57\x49\x38\x60\xdd\x6e\xdb\x39\xfd\x23\x0b\xa3\xe9\x85\x31\xba\x7f\xcb\x8e\x78\x87\x4a\xe3\x77\x32\x84\x90\x96\xba\xe0\x51\xa5\x07\x84\xac\xae\x68\xad\xc8\x84\x28\x82\x2f\xeb\xda\x60\xf6\xfb\x76\x16\x96\x1e\xc9\x79\xf1\x32\xe0\x3c\x61\xe1\x8f\x3b\xa7\xf8\x75\xbd\x08\x59\x0f\x1e\x34\x6e\x39\x74\x8a\x10\xe7\x76\x6a\xab\xc1\xb0\x17\x61\xa2\x89\x80\xbe\xeb\xc6\x5d\x04\x96\x6b\xe7\xf7\xc6\x56\x59\x82\xf1\x8b\x3f\x4d\x85\x0b\xe7\x12\xf6\xbc\x3b\x15\x1c\xd4\xbd\x92\xb0\x33\xea\x50\xa2\x9f\x85\xfd\x7f\x61\x9b\xe2\xf7\x51\x4e\x83\x95\x04\x9d\x50\x93\xc2\xfe\x53\xf6\x84\x4f\x55\x5d\x21\x5b\x53\xed\x08\x79\x9e\x4b\xc2\x56\x8b\x07\x10\x82\x43\xb8\x54\xcb\x8b\x57\x11\xee\x77\xf5\x97\x2c\x77\x2b\x25\x08\x06\x0d\x5c\x31\xfa\x0b\x1f\x53\xcf\xe4\x6b\xf3\x2b\x09\x1b\xad\x9f\xa4\xf4\xee\x2d\x25\x38\x7d\xbf\x53\xa0\x18\x51\x4a\xf0\xb8\x6b\x33\x35\xab\x67\x84\x41\xc7\xc5\x76\x8b\xf9\x6d\x44\x30\x14\x19\x2c\xb3\xdd\xd2\xcd\x1a\x9f\x16\x27\xdb\xf0\x7c\xd9\xfa\xa4\x02\xae\x81\xb6\x3c\xf3\x37\xca\x11\xf6\x57\x3d\xab\x8f\xdf\x65\x44\x08\xe1\x9c\x35\x39\xd6\x79\x1f\xc1\xb9\xc9\xe3\x80\xce\x56\x53\x42\x8c\xb3\x82\xde\xb4\x2e\x05\x42\xbd\x4a\x48\xd9\x7d\xd6\x24\x82\x63\x76\xb6\x62\xcc\x02\x0b\x42\xfc\x26\xc7\xbd\x3d\x92\x3b\x09\x19\x4d\x42\x7d\x9a\x0d\x3b\x08\x93\x2c\x74\xe5\xf5\xfc\x14\x09\x56\x25\x93\xfd\x47\xb5\xd5\x08\xb3\x83\xb4\x3f\x7b\x5f\x3a\xc5\x86\x6b\xfd\x57\x3b\x06\x67\xce\x67\xc3\xc3\x2b\x8a\xd9\xab\x12\x8b\x08\xbb\x2f\xa7\x4e\xdc\xf8\xbd\x9a\xa0\x31\xd1\x35\xb5\x69\x66\x1b\x0b\xa6\x45\xb5\xc7\x35\x83\xaa\x09\xfb\x2e\x9a\xbf\x17\xc8\x2c\x22\x0c\x9a\x9f\xf8\x31\xf4\xfb\x28\x01\xb3\xe7\x9e\x5a\x39\xff\x20\x0b\xf6\xde\x89\xca\x67\xd2\x22\x58\xe3\xd3\x9a\xcd\x3b\xf9\x1f\x4f\x31\x24\xb4\x1d\x7c\x9e\xfd\x74\x35\x0f\xe1\xb5\x78\xd3\x8b\xa9\x61\x75\x15\x18\x34\x0b\x0b\x58\x95\xa4\x40\xe3\x68\x8f\xfd\xe6\xf2\x73\xac\x8f\x81\xd1\x45\x83\x85\xca\x25\xd2\x84\x8e\xcb\x1a\xa5\x21\xeb\xb6\x13\x76\x3e\x2e\x0b\xe1\xd0\xb0\x20\x6c\x30\x69\xb0\xc8\x58\xd5\xcf\x40\xd6\xf9\x5d\x42\x70\x64\x0d\xc1\xae\x34\x76\x5d\xc9\x44\x21\x42\x87\xcc\x0b\x0f\xb9\x2e\x31\x82\x73\x2b\x07\xef\xeb\x9f\x1b\xd8\x60\x5e\x62\x77\x7f\xda\x51\x4e\x36\xb8\x3d\x89\xb2\x94\xcd\x7e\x54\x81\x95\x1d\x1b\x63\x0a\x5b\xc5\x09\x03\xba\xf6\xb3\xa5\x66\x3b\x10\x14\x0c\x1e\xaa\x5f\x7a\x5e\xc6\x42\x93\x78\xca\xe5\xde\x8d\x55\x2c\x14\x17\x2d\x90\x7a\x79\x6d\x0b\xc1\xc8\xa1\xf2\x54\xb1\xec\x33\x06\x87\xee\x4b\x6a\x0a\x8c\x71\xd2\x38\xe2\x67\xbe\x4d\xad\xe3\x1d\x64\x50\xe7\xec\x68\xbb\xf8\xf1\x64\xc2\x8a\xc3\xeb\xe7\x0d\xcf\x4a\x64\xc1\x42\xea\xe2\x36\x03\xee\x7c\x42\xbf\x06\xb3\x6c\x83\xf3\x64\x82\xcd\x93\x9a\xfc\x53\xbe\x0b\x08\xbd\xcf\x3f\x26\xf8\x87\x88\x12\xca\xb7\x96\xe8\x7b\x88\x9c\x26\x94\x2c\xfc\x7d\x58\x58\xc9\x95\x90\x33\x12\x26\x94\x5f\xbb\x83\xb0\x62\xc7\x59\x2f\xeb\x87\x7f\x5f\xb4\x9e\x22\x33\xab\xf4\xb4\x08\x09\x1b\x52\x0f\x24\xac\xfb\xcd\xe0\xa2\x80\xf9\xb5\xc3\x1d\xe2\x04\xb1\x85\x06\xdc\x7d\x7f\xaf\xcd\x55\x0e\x0b\x2f\xee\x7b\x9e\xc0\x86\xef\x55\xe1\x91\xb7\x8d\x0b\x09\x0d\xc9\x86\x0a\x37\xdb\x32\x09\xa5\x19\x6a\x7b\x3e\x76\x67\x12\x06\xb5\xee\xab\x24\x9e\x51\x27\xcc\x9e\xc5\x1d\x3b\xe9\xd2\x73\x06\x9f\x43\xc7\xf8\xb7\xbe\x4e\x23\x14\x4b\x29\x6a\xfd\x43\xed\xa2\x88\x7d\x14\x18\x4a\x50\xfe\x90\x58\xa4\xf8\x17\x3d\xad\xab\x96\xc9\xab\x07\x11\x4e\x4c\x10\xed\xe1\x32\x0c\x26\x7c\xcc\x2f\x7d\xd8\xdc\x1e\x4e\x78\xb0\xb3\xbf\xfe\x64\x41\x26\xc1\xc9\x33\x99\xc2\x0f\xf4\x32\xc8\x95\x6a\x2e\xb8\xbb\x6c\x3e\xa1\x56\xd6\x24\xcc\xa4\x45\x95\xd0\x6a\xb3\xe7\x82\x49\xf8\x59\x16\x62\x76\xd7\x5e\xe8\xcd\xe9\x26\x74\x4f\x17\x91\x77\xfc\xf3\x82\x10\x6e\xaf\xe0\x62\xfb\x4b\x98\x30\x59\x3a\x72\x4b\x6d\x80\x15\x21\x64\x93\xc1\xcc\xcb\xf5\x32\x84\x75\xed\x5a\x96\xc9\x7a\x60\xd0\x14\xdd\x99\x2a\x32\xb1\x91\x41\xc2\x66\xb1\xb8\x09\x79\x82\x34\x0e\x7e\x95\x65\x91\x36\x6d\x4b\x09\x8b\x55\x5e\x1a\x4c\x68\x31\x24\x08\x46\xf8\x69\x05\x6a\x08\x13\x1e\xbe\x56\xd2\x32\x2c\x4f\x25\x54\x1e\xec\xf0\x13\x5e\x9e\x40\x50\xbd\xad\x28\xfb\xe5\x9d\x1a\xc1\x29\x93\xf9\x50\x5e\xa0\x4c\xf0\xbf\x54\x7b\x2a\x76\x63\x20\x21\xc0\x5d\x62\x4a\xa1\x75\x3a\xe1\xe0\xda\x2d\x7c\x0f\x2d\x0c\x08\x6f\xce\xaf\x89\x98\xe9\x33\x91\x90\xd0\xf5\xb0\x7d\xa7\x7a\x10\x0b\xb6\x7e\x7e\xa3\x4d\x02\xf6\x84\x3c\x95\xc5\xcb\xde\x68\xcb\x10\x3e\x28\xd8\xc8\x39\x3e\x07\x03\xf3\x5b\xad\x1f\xaf\xdc\x5e\x4a\x98\x5d\x22\xdb\xf8\x44\xa5\x8f\x81\xd5\xe5\x74\xcb\xb2\x88\x75\x04\x9b\x4d\x52\x4a\x9e\x1d\x72\x84\xd5\xf5\xa6\x57\x42\x5d\xd5\x08\x42\xf1\xf7\xd4\xf7\x2c\x30\x22\x70\xee\x4e\x73\x0b\xde\x61\x48\x78\x79\xf8\xec\xf0\xa5\xa6\xdd\x84\xed\xfd\xd3\x9c\xb7\x8b\x58\x13\x52\x5a\x3e\x55\x0d\xd7\xf2\x12\x4e\xbc\x79\xa4\x9f\x3a\xf8\xf7\xa5\xb5\xd0\xe0\x7a\xe7\xf9\xef\x0c\x72\x04\x53\x9c\x9a\x63\xa7\x11\x8a\x6f\x7f\x0f\xdd\x36\x43\x91\x0d\x57\x66\xf7\xf6\x2c\x2b\x7a\x51\x01\xfe\x33\x7b\xa7\x9c\x17\x27\x42\x73\x96\x69\x46\x98\xf2\x31\x36\x28\x3a\xee\xa9\x3e\x59\xed\x4d\xe0\x99\x7a\x4f\x70\x4e\x8b\x30\x61\x8e\x49\xef\x48\x9e\xbf\x22\xe1\xeb\x28\xdf\xfa\xc9\xb6\x4e\x04\x69\x6b\xcf\xad\x3e\x41\x9b\x09\x7c\x9f\x2e\x85\x49\xad\x91\x20\xc4\x29\x70\x3c\x14\x4f\x33\x25\x4c\x19\xe1\x70\xbf\xb4\xe6\x0b\x33\x8e\x17\x6b\xb6\x1c\xdd\x6c\xc9\x41\x58\xc6\x39\x24\xff\xe9\x26\x07\xa1\xa6\x7e\x85\x68\x6f\x77\x23\x83\x5d\x76\x9c\xa5\x3b\x65\x39\x68\x1c\x72\xb8\xb4\x95\xb7\xa8\x8e\x41\xbe\xde\x51\x5d\x95\xd0\x75\x84\x45\x82\x29\x57\x0f\x5e\x5f\xc0\x86\x07\xce\x01\x6b\xf2\x4c\x7a\x19\x2c\xbb\x10\x9e\xb5\x46\xa2\x8a\xb0\x7d\x9e\xfd\xd6\xfe\x2e\x71\xc2\xb2\xae\x0c\xa5\xc7\x7f\x04\x08\xfe\xe7\x52\x73\x16\xe2\x26\x61\x66\x4a\xeb\xdd\x99\x69\x67\x09\xa1\x5c\x7a\x1b\xdc\x94\x0e\xb2\x41\xd0\xfe\xa0\xc7\xa2\xe5\xae\x6c\xe5\x72\xf8\x96\x5d\x99\x5e\xc2\x34\xec\xf2\x59\x36\xd5\xf5\x13\x83\xfa\xec\x05\x53\x2d\xee\x95\x13\x92\x6a\x16\x99\x48\xab\x54\x12\x74\x8e\xcd\x58\xfc\x0f\x06\xd3\x73\xca\xa4\xfe\x17\xea\x19\x0b\x32\x68\xf0\x24\x68\xe6\x2c\x4a\xbd\x2c\x78\x90\x90\xfb\x5c\x45\xab\x28\xda\x8b\x30\x69\xcb\x5d\xd6\x90\x65\x3a\x5b\x51\x3b\xc7\xdd\x13\xb6\xa7\x82\x60\x38\x8f\x75\xe7\xdc\x85\x43\x84\x22\xf7\x86\x3c\xe9\xd6\x18\x42\xfa\x0d\xaf\xa5\x67\x8f\x08\x13\xb6\x78\xdc\x5d\xb5\x4a\x49\x99\xa0\xbe\x96\x33\x67\x46\xa9\x04\xa1\xca\x36\x34\xb3\xd3\x5c\x9e\x0d\x4e\x1b\xdc\xbf\xad\xa8\xe3\x27\x1c\x12\xb7\xb3\x09\x79\x7a\x98\x70\xf2\xc9\x65\xd3\xe9\xcd\x2f\x18\x2c\xd4\xd8\xb8\x59\x78\x58\x88\xc6\x51\x77\x78\xb0\xa9\xb8\x44\x95\x0d\xf1\x02\x46\x65\x8d\xda\x2d\x0c\xc2\xb9\x97\xba\xec\x2e\xfb\xcc\xe0\xf8\xa4\x3b\x3f\x2e\x2e\x52\x25\xf8\x99\x2d\x17\xe6\x3e\xfc\x89\x81\x54\xcd\x9c\xad\x43\x21\xfd\x0c\xac\x55\x1e\x86\xa9\xea\xef\xa7\x71\xfc\xcf\x9f\x5e\x6a\x7b\x77\x3d\xe2\xac\xe1\x0c\xc2\x21\xdd\x03\x72\x16\x3f\x96\x10\x4e\x54\x2a\x44\x8a\xf2\x73\xb2\xa1\xe8\xd0\x6a\xe5\x89\xfd\x01\x0c\xca\xa6\x1c\xed\x48\xf4\x0e\x21\xf8\x0f\xfe\x70\x68\x39\xbd\xe9\xbf\x90\xb3\x5d\x5a\x30\xc3\x4b\x98\xd0\xec\x85\x27\xc5\xcd\x47\x08\xa3\x9f\x0f\x7f\x69\xfd\xde\x48\x30\x18\x78\x65\x23\xa7\xfa\x87\xc1\xab\xb1\x63\xca\xbd\x82\x03\x0c\x74\xbf\x6c\x4d\x5a\xc8\x58\xd1\x38\x02\x3f\xf1\x3d\x10\x99\x5f\xc2\x60\xff\x5e\x99\xa7\x93\x6d\x25\x08\x5b\xf7\x4d\xe4\x11\x2c\xb8\x49\xe0\x3f\x5d\x7c\xea\x4a\xff\x31\xc2\xfa\xa6\x5b\x92\x09\x7f\x11\x35\x38\x7a\x34\x63\x81\x26\x1b\x1a\xd6\x57\x06\x72\x3b\xff\x64\x50\xdb\xe8\xe6\xbf\x75\x1d\x1f\x8d\xe3\xfe\x1b\xc7\xc7\x45\x35\xfb\xd9\xb0\x22\x7b\x75\xaf\x40\x5b\x33\x83\x86\xbc\xc4\xf4\xf2\x2b\x32\x84\xbb\x1b\x2c\x63\x6a\x8d\x7c\xd9\xc0\xaa\x8f\x61\xae\xff\xb2\x23\xdc\x2a\xfc\xee\x1f\xb5\x2e\xe0\xef\x95\xb6\x4f\xc5\x66\xb5\x2e\x1b\xde\x5d\x6c\xdb\x7a\xe3\x4d\x3f\x83\xfe\x2b\xe1\x5e\x57\xe2\xdf\x30\xb8\xe6\xed\x73\x32\x79\xe4\x07\x03\x13\xfa\xb5\xe7\xaa\xad\x08\x8d\xe3\x44\x71\x1d\xcf\x07\x69\x30\xb8\x9d\xfc\xd0\x63\xf7\x99\x13\x2c\x94\xb4\x2b\x2c\xe0\xdf\x6b\x45\xe0\x4a\x3e\xbb\xf5\x61\x8c\x32\x21\xee\x78\xc7\xbb\xce\x59\xcf\x19\x68\xbd\x1d\x79\xdc\x96\xff\x84\x81\x27\xd7\xc0\x8c\xa6\xea\x57\x0c\x9e\x46\xbc\x2a\x8a\x8d\x55\x20\x7c\xdc\x15\x3c\x5a\x33\x5a\x45\xb8\x13\x68\x35\x2b\xb9\xbe\x92\xc1\xb0\xcd\xda\x04\xe7\xf3\x1f\xd9\x50\x26\x12\xb7\xe1\xd7\x9b\xf7\x0c\x06\x02\x14\x2a\xf9\x58\xa9\x34\x8e\x1f\xb1\xc7\xad\x03\xcc\xb2\x09\xad\xf5\xcf\x0f\x29\xdc\xad\x21\x68\x45\xf3\xf1\xeb\x09\xd5\x12\x04\x12\xeb\xaf\xf2\x1e\x67\x11\x3e\xef\x5f\x16\xbf\xe3\x4e\x15\xdb\x19\xee\x67\xac\x40\xe3\xa3\xee\x84\xf2\xeb\x2a\xb7\x2b\xe7\x0f\x32\xf8\x98\xef\x31\x60\x19\x56\x45\x58\xf7\x51\x29\x20\xf6\xf5\x23\x16\x52\x44\xe4\xb7\x72\x2a\x25\xb3\x50\xd2\xa1\x7e\xfd\xdf\x54\xf0\x3d\x4f\xb9\x2d\x3e\x92\xf0\xc4\x6d\xf7\x4b\x01\xf9\x30\x42\xd3\x61\xdf\x55\xe1\xb2\x27\x09\x13\x7f\x8b\x7b\xe8\x3c\x7a\xcc\xe0\x29\xaf\x91\xb3\x93\x1e\x17\x8d\x43\x50\xdc\x25\xe9\x89\x6b\x7b\x05\x46\x7a\x56\xdc\x31\x7c\xa1\x46\x10\xd8\x10\x3f\x2f\x5f\x6e\x0b\x41\x69\x73\xb9\x86\xcc\x6f\x1b\xc2\xe0\xa4\xfb\x57\x9b\x2b\x66\x10\x26\x3a\xcf\x99\x63\x27\x57\xcc\xc2\xf5\xa5\xdb\x8f\xbc\xfd\x7b\x5d\xdd\x10\xcd\xa9\xd4\x9c\x7b\x89\x0d\xd7\x97\xf3\xeb\x28\x46\x5e\x20\xa8\x99\x1a\xee\x50\xee\xe2\x25\x84\xa7\xa8\x84\x2d\x1e\x9e\xc3\x86\xcf\x11\x97\x9f\xfa\x08\xe4\x56\xe0\x54\xc4\x2d\xf5\x20\x51\x49\xc2\x5e\xeb\x91\x79\x9c\xcf\x9d\x09\xb6\x8d\xd1\x2a\xd5\x33\xad\x08\xdc\xa1\x32\xfe\x9e\xfb\x62\x59\xf8\x36\x48\xf3\xf4\x7b\x17\xd1\x38\x1c\xb9\xf9\xb8\x4e\xbe\x94\x61\x83\x49\x75\x32\x53\x96\xd4\x5a\x81\x07\x17\x3f\x3b\xbc\xa1\x25\x04\xff\xbb\x6b\x9d\xc5\x3c\x7d\x59\xe8\x48\x33\x0c\xfa\xee\x34\x87\x10\x78\x62\xa8\xa3\x2e\xb5\x9d\xc1\xe5\xab\xaf\xb7\x3d\xcb\xee\x65\x03\x6d\xae\xe2\x4c\xb9\xa5\x4d\x90\xfc\xfe\xf9\x9e\x6e\xc3\x6d\x42\xc8\x51\xdd\xc0\x4f\x5d\x25\x2c\xcc\xda\x2e\xc5\x75\x63\xce\x7b\x06\x42\xd1\x1d\xb7\xf8\x3b\xff\xbe\xa2\x9c\x84\x66\x48\x76\x6c\xa7\x71\x9c\xb2\xe4\xd9\x12\xe2\x23\x42\xd8\x74\x63\xa7\x8f\xab\xb3\x11\xe1\xfb\x22\xd3\xbc\x7d\x4d\xaa\x84\x15\x9d\x33\xca\x5d\x1c\x9e\x33\xf8\x70\xe4\x57\x4e\x5f\xda\x3c\x02\x5d\x7e\xff\x4e\xab\x41\x83\xe0\xed\x7f\xda\x7c\xa9\x88\x0e\xc1\xf1\xf5\x97\xd6\x67\x81\xe9\x04\x49\xfd\xc2\x86\x82\x4f\xfd\x0c\x5e\x6e\xb4\x32\xc9\x5c\xc9\x4d\xe3\x68\xbe\xa7\xd6\x70\x4b\x5e\x9d\x0d\xa6\xe1\xca\x59\xe6\x6a\x7a\x84\x19\x73\x26\x6d\x89\xbb\x66\x4d\xb0\x0a\xe1\x4d\x5e\xa1\xa7\xc3\x86\x3b\xa2\xe6\x4d\xd1\x0a\x4a\x84\xd5\x3f\x56\x18\x6f\x62\x89\x10\x52\xf3\xb8\xe7\x4c\x2f\x19\x62\xf0\x55\xe2\xdc\xab\xc9\x32\xdc\x04\xde\x35\xb9\x57\xfd\x76\x98\x11\x56\xd9\x0b\x70\x96\x54\xeb\x12\x16\xb9\x18\x6e\xd8\x79\x6d\x37\xe1\xcd\xc6\x21\xa5\x7d\x4b\x9d\x09\x0b\xce\x19\x9e\x7a\x94\xf9\xf7\x9d\x72\xaa\xbf\x24\xdc\x58\x9b\xf0\xeb\x85\xf5\xf0\x8e\x7a\x09\x82\x69\xd8\xb7\xb9\x17\x7a\x6d\xd8\x90\x1e\xf6\xfc\xd8\xe7\x47\xa2\x84\x27\xc3\xdf\x78\x33\x16\xac\x21\x0c\xf5\x4f\xfb\xf3\xe8\xfe\x0e\x82\xb6\xa1\x6f\xd7\xbc\x29\x1f\x18\xdc\xd1\xad\x75\x90\xaa\x55\xa0\x71\x88\xcb\xef\xb6\x7f\x2f\xf4\xa2\x62\x1c\xcd\xba\x0e\x87\xbc\xbd\xe6\xd0\x38\x7a\xa3\xb7\x1e\x98\xd9\xde\x56\x01\x7e\xad\xa6\xe4\x0e\xcd\x22\x16\x2e\xf8\x3f\xfb\xae\x23\xb9\x9a\xf0\xda\x7c\x78\x63\xc6\x89\xae\x0a\xdc\x0a\xfa\x36\x37\x60\x4c\x81\xfe\x03\x43\xeb\x8c\xb5\xe6\xfc\x58\x4b\xd8\x6a\xca\xba\xa0\x95\x69\x49\x28\x3a\x72\x66\xaf\xf4\x3c\x35\x36\x88\x6a\xc6\xf2\xcf\x90\x99\x40\xe0\x7c\x97\x3f\xf9\xe8\x0b\x5d\xc2\xd1\xe0\x42\xeb\xad\x72\x60\xd0\x38\x58\xfd\x91\x6b\xce\x1d\x06\x8d\xa2\xfa\x53\xcb\xb9\x64\x69\x1c\xf7\x24\x3c\x2c\x9b\x58\xe9\x0c\x5a\xa2\x36\xac\xf5\xe1\x7f\xcb\xa0\x7e\x64\xe8\xdb\x48\xc3\x73\x36\xe8\x99\x7c\x2f\x73\x56\xe7\x20\x14\x9b\x0d\x5c\xfe\x1c\xbe\x8a\x10\x61\x59\xf6\x45\x69\x4f\x09\x0b\xfd\x2e\x8a\x1a\x47\x9e\x54\x11\x5e\xef\xde\x7f\x45\xaf\x38\x9f\x30\xef\xb4\x7f\xf0\x74\xfb\x3d\x6c\x68\x2d\x9b\xd2\x78\x3d\x4b\x83\x20\xb7\x2f\xb5\xe1\xc1\x62\x0d\x82\x7c\xda\x82\x2d\x2b\x54\x8b\x08\x59\x4d\xa6\x9f\xb5\x22\xaa\x08\x26\x93\xa5\x73\xae\x46\x55\x11\x9e\xd9\xaf\x9d\xfb\x22\x63\x80\x81\x65\xe9\x8f\x8d\x82\xdb\x26\x11\xf2\x0c\xfa\x4e\xbc\xbb\x32\x9b\x0d\xf3\xca\x7a\xec\x8f\x8f\xee\x25\xc4\x47\xcf\xe4\x79\xda\xa6\x45\xa0\xce\xa5\x46\xcb\x86\x27\x13\x78\x7f\x7f\x38\x67\xb8\xcd\x98\x70\x48\xbb\xc7\xf9\x89\xa5\x0a\xa1\xf7\xd4\x0e\x83\x4b\xfc\x0b\x09\xee\x13\x52\x35\x7a\x92\xb7\xb3\x95\x9d\xcb\x0e\x9c\xee\xd2\x9a\x4a\x90\xfb\x38\x55\x67\x53\x6a\x28\x61\x34\xc1\xc3\x49\x47\xd0\x87\x60\x31\x9a\x1e\x7d\x33\xe9\x08\x21\xbf\x70\xc7\xa6\x24\xd9\x83\x84\x3e\x7e\x9f\x93\xbe\x72\xc7\x09\xed\xd3\x27\xdc\x9e\xd5\x51\x57\x81\x8d\xd2\x13\xef\x48\x8e\x0e\x32\xe3\x50\x9f\xba\xed\x80\x79\x12\x27\xe1\xd7\xcc\xed\x3d\x5b\x2f\x6f\x25\x04\x05\x1f\x3c\x7b\xea\xf8\x4f\x06\x3e\xd9\x4f\x16\x2a\xea\xcd\xa3\x71\xbc\xad\xba\xdb\x5a\x3b\xfa\xaa\x02\x86\xa2\x37\xf6\xda\x48\xcf\x23\x7c\xb3\x0a\x52\xbc\xd3\x32\xc6\xe0\x8e\x4b\x44\xae\xdb\xf9\xd9\x34\x0e\x59\x6c\x5f\xf3\xc8\xa7\x8e\x41\xec\x6f\xbf\x63\xef\xa6\xc6\x12\x8e\x6c\x59\x92\xe1\xc3\xb1\x8e\x0d\xd5\xd1\x61\x33\x9a\xcd\x4f\xb2\xc1\x25\xe1\xf8\xfa\x5d\xa3\xfb\x09\x6e\xdf\xbf\x1c\xdb\xf5\x41\x84\x20\x9a\xea\x39\x98\xab\xa6\x46\x88\x5e\x5f\xf0\xbc\x4c\xe7\x23\x03\xab\xdc\x9f\xab\x5a\x67\xf8\xd2\x7f\x60\xfd\x9f\x87\x93\x46\x06\xf5\xff\x0b\xd3\x9b\x06\xe5\x93\x6c\xb5\xd9\xa0\xfb\xe7\xa4\x7e\xc1\xf1\xe9\x04\xc9\x80\x34\x5b\xfd\xef\xa5\x84\xe1\xa4\xb3\x2d\xca\x3f\x4a\x09\xb5\x4a\xc1\x15\x13\xc9\x91\xa0\x16\x65\x55\x71\x7c\xe6\x1c\xc2\x99\xfe\xcb\x1e\xac\x9b\xca\x04\x69\xd3\xe8\x80\x7d\x9b\x9f\x57\x40\xa3\x77\xd6\xc8\x9d\x8f\x73\x69\x1c\x9c\xf1\xf1\x5d\x16\x27\x1e\x33\x48\x79\xb1\x54\xac\xa8\x70\x19\x41\x2f\xe7\xcf\xd7\x56\x61\x3e\x42\xf1\x9d\x6b\x29\xeb\x9f\x57\x12\x46\x93\x74\x3f\x05\x59\xf9\x12\xb8\xaf\x26\x4d\xd8\x3e\x69\x94\x19\x87\xaa\xf0\xbd\x93\x55\x83\xdf\x18\xec\x97\x9a\xba\xc5\xfe\x96\x26\xe1\x7a\xae\x57\xd9\xd4\xc6\x41\x66\x1c\x16\x89\xce\xa5\x89\x26\xca\x2c\x34\x99\x5a\x09\x7a\x86\x46\x13\xa4\xcd\xe5\xb9\x38\x6c\xc5\xff\x0b\x96\x5c\xba\x62\xa5\xdf\x52\x09\xb3\x22\x9c\x8d\xfe\xc1\xd3\x4c\xf7\xc2\x79\x4d\x05\x36\x6c\x6c\xc8\x1c\x96\xb0\xff\xc0\x80\xbe\x4c\x4e\xd5\xd4\x9c\x4f\x98\x72\x7a\x6e\x99\x17\xc7\x12\x42\xa3\xc3\x4e\x9d\xc8\xac\x0a\x42\xf6\xe9\x4f\x6b\xae\xeb\x25\xb1\xf0\xc4\xb1\x89\xd7\x47\xfa\x36\x61\xae\xa1\xd5\x53\xee\xf8\x0a\xc2\x89\x5d\xad\x31\x01\x9d\x67\x09\xaf\xed\x0e\x5a\xec\x6c\x0b\x21\xf4\x0a\xf3\x49\x79\xc4\xe6\x13\x2c\x1c\x4d\xfc\x2c\x99\x4a\x82\x1a\x97\xc5\x9b\x0b\x1d\x25\x84\x41\xfb\xfb\x3c\x59\xc6\xa5\x04\x23\xec\xbc\x37\x89\xaf\x90\xa0\xf4\x25\xf3\xc3\x99\xce\x38\x02\x53\xab\x74\xb5\x5f\xa4\x98\x05\x29\xb5\x95\xd2\xbd\xd3\x72\x59\x88\xf8\xe9\x72\x77\xf5\x93\x24\x82\xdf\xf7\x03\x37\x64\xc5\xe2\x09\x29\x6b\x8f\x6e\x4a\x09\xdc\xc5\x02\x57\xa6\xe3\x98\xb9\x4b\x32\x61\x0e\x47\xb2\xb3\xe3\xec\x1a\x16\x3c\xc3\xb4\xbf\xdf\x1e\x8c\x22\xdc\x08\x17\x38\xfc\x7b\xe7\x1d\x16\x46\x5e\x3a\x4e\xcf\xc0\x4a\xc2\xe6\xf6\x9a\x34\x5e\x1d\x4b\x82\xd9\xdd\x41\xe1\xc0\x97\x77\x58\xb0\x2f\x9b\x7e\xbc\x69\x28\x90\xe0\xf2\x80\xf3\x57\xd7\x30\x8b\x85\xd7\xef\x5b\x8b\x3a\xff\xe2\x7f\xa6\xc3\x56\xae\x85\xe7\x43\x79\x08\x9f\x4a\xa5\x5a\xb2\x55\x97\xb1\x95\xff\x41\xe3\x05\xbd\x93\x3f\x87\xc5\xd8\x50\xed\x20\x78\xc9\xe8\xed\x43\x06\x3c\x5e\x5a\x21\x0e\xd6\x47\x59\xf0\xbb\x18\x61\xef\x65\xa6\x4e\xff\x17\x12\x2e\x5e\xab\xef\xfc\x3d\x87\xf0\x80\x57\xc6\x2c\x3d\x69\x11\xa1\x46\xfe\x7a\x5e\x8e\xda\x7c\xc2\xdb\x29\x8a\xb9\xf9\x7f\x1f\xc4\x93\xa7\x0c\x1b\x96\x6e\xf3\x24\xa4\xee\x8d\x11\xd9\xeb\x97\x4c\x38\x7e\xc7\xfa\x57\xf7\x9f\x42\x82\x08\xef\xb6\xb6\xc6\x9f\xd5\x84\x92\x94\x55\x02\xc2\x99\xe6\x84\x88\xf5\x46\xae\x5f\x44\x26\x11\x4a\x3e\x86\x6d\x32\xd1\x1d\x65\x50\xe9\x25\x69\xc2\x2f\x3a\x85\x20\xe1\x18\x81\x67\x27\x34\xfe\x0b\x7b\xad\x5a\xce\x4d\x2a\x9f\x42\xe0\x51\x55\xf0\xff\xe4\x30\x85\x90\xb8\x6a\x46\x23\xcf\x4d\x63\x36\x0c\x4c\x88\xea\xbb\x13\xf5\x93\xc1\x65\x21\xd5\x78\x9f\x41\x0b\xc2\x7e\x9b\xc3\x29\xc3\xdc\x0c\x61\xea\xe6\x9d\xa2\xc9\x9c\x8b\x09\x2b\x8d\x97\xbe\xab\xbc\x33\xca\x80\xab\x43\xc9\xb9\xe7\x5d\x32\xa1\xe4\xd1\x91\x3f\xbc\x6f\x93\x09\x61\xc9\x3e\xee\x93\xf6\xde\x64\xe1\xa9\x63\xb6\x6a\x73\x9e\x32\xa1\xca\x66\xd5\x26\xcf\x2b\x83\x0c\x34\x9f\x99\x2c\x9a\xe0\x63\x4c\x50\x3f\x66\xc0\xbb\xc3\xb4\x94\xe0\xf4\xf9\x37\x67\xaf\x62\x1c\x61\xd3\xbd\x92\x0d\x3a\xe7\xbe\xb3\x30\x27\xae\xd1\x56\xee\x6f\x99\xa5\xc1\x31\x38\x41\x2a\x83\xd0\x5c\x6f\x17\x93\x94\x7b\x98\xb0\xa5\xd0\x7a\x50\x25\xeb\x24\x61\xac\xe0\xe4\xd7\x2b\xe7\xbc\x09\xbc\x5a\xef\xff\x4c\xca\x4b\x60\x61\xf6\x72\xa5\x81\x63\xba\x4b\x09\xe1\x85\xc9\x6d\xad\xd9\xed\x0c\xc2\x05\x2b\xce\x7e\x9a\xfc\x93\x41\xe6\x4a\xc9\x4e\xd1\x05\xab\x68\x1c\xde\x6d\xea\xab\x9c\x38\x9b\x2a\xf0\xba\xc1\x69\xe7\x8f\xb5\x9a\x84\x55\x62\x6f\xd6\x5f\x1d\x1c\x65\xf0\x72\x4f\xe3\xb6\x8f\xdd\x0b\x08\x05\x9d\x11\xce\xdf\x17\xcf\x60\x83\xdb\xad\x1b\xbf\xce\xdc\xee\xac\x00\x13\x64\x26\x6e\xd7\xa6\x41\xf0\x4a\x98\x55\xa3\xf7\xfe\x06\x41\xa8\xe3\x68\xa8\xd0\x20\x2f\xc1\xd1\x50\xc4\xba\xfd\x93\x39\xe1\x70\xb1\xc1\x96\xf8\xb7\x0c\x41\xfb\x8c\xfa\x8c\x53\x73\x95\x09\xc3\xbc\xea\x7c\x9e\x6f\x55\x08\x59\x8e\x66\xe9\x3a\x06\x05\x84\xcf\x37\x1b\xed\xc6\x06\x8e\x10\x66\xa9\x9f\xb6\xb2\x55\xdc\xcf\x56\x8e\xce\x5b\xff\xdd\x7c\x49\x2e\x61\x2c\x60\xf2\xe9\xf7\x6b\x2f\x13\xdc\x16\x28\x9c\x29\xe9\xce\x26\xe8\x76\x2a\x89\xfd\xfb\xbd\x64\xee\x48\x25\xf9\x7b\xcb\xf8\x09\x1d\xd2\x2e\xda\xba\xc3\x55\x2c\xb8\x1d\x7e\x56\x5f\xf7\xb7\xb4\x06\xf6\x2d\xbe\x2d\xce\x41\x50\xfb\x61\x93\x38\x65\x87\x05\xa1\x31\xe9\x51\x85\x9b\xcf\x62\x36\x68\xdb\x65\x05\x1f\xd2\x5c\xcd\x86\x60\xe3\xd7\xf5\xf9\x12\x8b\x08\xf6\xb9\x1e\xcf\x44\xc2\x8c\x09\x05\xe5\xed\x12\x6f\x76\x68\x10\x06\x13\x76\x5d\xd7\xc8\x2e\x26\xcc\x5a\x31\xfa\x34\xef\x63\x1e\xe1\x4b\x4f\xcd\x46\xc5\x87\xc5\x2c\x54\x28\x5f\x78\xf9\x6f\xea\x68\x2d\x89\x37\xda\x7f\x88\x50\xbb\x98\xd6\xbb\x61\x39\xc1\x6d\xfe\xd6\xa3\xca\x07\x8b\x09\x27\x3a\x7d\x6f\x7e\xd8\x56\xcd\x56\xf6\x9e\x2a\x3d\xb2\x63\xa6\x25\xe1\xe6\x5b\xcd\xee\x39\xcb\x15\x08\xc6\xe9\xe6\x0e\x26\x73\x39\x08\x41\xcf\x3c\x0b\x77\x9b\x5b\xb0\xc1\x49\xef\xa4\x55\x5d\x94\x36\x1b\x14\x8d\xee\x5a\x84\x65\xc9\x10\x8c\xdc\x82\x87\x22\xf7\x55\x11\x5e\x19\x3f\x5b\x32\x22\x90\x4f\x28\x67\xc6\x7e\xb4\xad\x6d\x24\x3c\xf9\x66\x7a\x27\xea\xef\x94\xba\x76\xda\xcf\xbe\x6b\x96\x6c\xa8\x9e\x21\x5e\x3f\xab\xaf\x92\x0d\xc9\x07\x6c\x53\xb7\x3d\x3e\x43\x18\xfa\xf3\x5a\x54\xe4\x64\x1a\x61\x54\xe9\xe9\x05\x1b\xa3\x4a\xc2\x9f\x46\x8e\xcc\xf2\xbf\x90\x88\xbb\x10\xa8\xf2\x9c\x45\xd0\x67\x86\x8b\xb7\x4d\x2b\x20\x34\x6c\x5e\xd0\xf2\x6f\x3a\x7e\x78\xed\xc4\xe3\x7e\x1e\xff\x85\x9e\xe6\x94\x2b\x1c\x73\xd7\x11\xda\xdf\xdc\x9a\xee\xaf\xbe\x8e\x70\xbc\x2b\x84\x6b\x64\x4a\x15\xa1\x6c\x45\x8e\x6a\xd8\xd4\x6a\x36\x78\xed\x1e\xf5\xac\x51\xaf\x22\x14\xde\x98\x91\xf6\xaf\x34\x24\x5c\xf3\x96\xf3\xf2\x23\x28\x06\xaa\xaf\xbe\x9a\x1d\x49\x68\xbe\x72\x69\xe3\xbe\x01\x3f\xc2\xa2\xcc\x7d\x46\x3c\x79\x7e\x84\x05\xbe\x85\x87\xac\x03\xe6\x13\x3a\x8f\x2d\x5d\xe4\x62\x21\x41\x08\xbf\xeb\x18\xd5\x28\x16\xc6\x86\x81\x31\xf3\xba\x25\x61\xe2\x04\xa1\x62\xb9\x1c\x85\x7c\x03\x42\x81\x1e\xff\x95\xf5\x7d\x79\x84\xf8\x25\x1a\x39\x0d\x29\x01\x84\xdd\x2e\x9f\xb5\x37\xff\x39\xc3\x86\x77\x12\xa7\x3b\xfc\x54\xfc\x08\x7d\x64\xc0\xa8\x85\xf8\x11\x1e\x95\x68\x7f\xdb\xe0\xe2\x49\xf0\x53\x0d\xd6\x7c\x76\xd1\x9f\x60\xb2\x4c\x4b\x78\xf2\xca\x32\x82\x9c\xb8\xe8\xb5\xb3\xb9\x45\x2c\x3c\xfb\xa1\x57\xb1\xdb\x8b\x45\x68\x4d\xd9\xd7\xf1\xe8\x92\x3f\xc1\x6e\x2d\x47\xbf\x4f\x91\x17\x5b\x59\x94\x75\xfe\xd3\x3b\xc5\x68\xc2\x19\xe9\x87\xf1\xfa\xa7\x63\x08\xd7\x65\x6a\xea\xae\x39\x17\x12\x3e\xc7\x4a\xb9\x7f\x73\x2f\x26\x54\x15\xd4\x95\xa7\x8b\x5f\x66\xe1\xc2\xb3\x09\x93\x78\xc2\xca\x08\x3c\x3a\x71\x1b\x47\x2e\x5e\x20\xd8\x7e\x7b\x1c\xfe\x70\xe8\x24\x41\xd7\xbb\xd3\xe9\x50\xc1\x05\x82\x75\x47\x7e\xea\x2d\xef\x6a\xc2\xc4\xda\xe0\x97\x26\xc2\xd2\x84\x47\xc2\xcb\xf4\x6e\x0c\x88\x12\xf4\x9e\x97\x17\x3f\x78\xf7\x86\x41\xeb\x83\xc4\x65\x3d\xc5\x51\xf4\x1f\x08\x3a\xa3\x12\xfa\x73\xb6\xe5\x7f\x61\xbd\x56\x72\xb6\x53\x60\x36\x83\x8b\xd7\xff\x84\x70\x0b\x2c\xa1\x71\x6c\xf0\xe0\xf5\x3a\x57\xf2\x9b\x19\xc7\xfb\x26\xbf\x4d\x8e\x9c\x2d\x15\x78\x1b\x9a\xf3\x2a\xae\x7e\x09\x41\xac\xbf\x2e\xf9\x55\xb0\x38\x81\x7b\x76\x60\xe0\x27\x75\x1d\x82\xda\x21\x7d\x2d\x0d\x95\xdd\x6c\xe5\xf3\xf9\xaf\x2b\xf7\xfd\x9a\x43\x70\x9b\x1e\xb8\x78\xaf\xc4\x32\xb6\x52\xde\x2d\xca\xb5\xa8\x77\x90\x41\xdd\xec\xa1\xaf\xf1\x4f\x8e\x13\xc2\x5f\x87\xc7\xc5\x04\x05\xb3\xb0\xc9\x63\xe0\xae\x0f\xa7\x3c\xe1\x3c\x87\x99\x99\x72\xf8\x5b\x06\x91\x57\x7e\x19\x78\x7a\xa9\x12\xf4\x36\x0f\xaf\x19\xda\x69\x48\xf8\x3c\x8f\xab\xf2\x53\x90\x03\x61\x55\xb2\xb6\xae\xe4\x73\x19\xc2\xcb\x2f\x45\xa6\xee\x5f\x56\x10\xf6\xbb\x4f\xe1\x73\xbf\xbb\x9a\x80\xe8\x4b\x1f\x54\xd4\x35\x09\xa3\x66\xb2\x6d\xaf\x7b\xbb\x19\x0c\x7f\x4a\xbf\x33\x30\xc6\x49\x58\x23\x75\x4b\x2c\x83\xfb\x2c\x1b\x64\x02\x5d\xfd\x67\x5d\x9e\x4e\xe8\x99\xba\xb1\xfc\x8b\x4d\x09\xc1\xd3\xfd\xf2\x87\xee\x7b\xc9\xff\x05\xa5\xea\x01\x1d\xfb\xbd\xc2\x84\xd1\xcc\x07\xd3\x4f\x19\x9c\x25\xd4\xfb\x9c\x7c\x92\x3e\xb9\x83\x20\xb6\xc7\xbd\xc4\x31\xb7\x9d\x20\xa8\xf7\xa5\xe9\xa8\x76\x1e\x21\xaf\x69\xf7\xf3\x61\x4e\x4f\x16\x78\x94\xea\x07\x6d\xd2\x24\x09\xe7\xba\x6d\xb3\xcc\x7e\xe4\x12\xec\x44\x79\x66\xdd\x3c\x70\x90\x30\xed\x57\x67\xff\x40\x98\x2b\x21\xf6\x79\x04\xc7\x6c\x45\x37\xc2\x56\x8d\x2e\xce\x07\x23\xd3\xd8\xd0\xd3\x25\xc1\xf3\x39\x47\x95\x0d\x56\xaa\x4b\xf3\x94\xa5\xbe\x33\x08\xaf\xf1\x70\x7c\x99\xbf\x98\xe0\x6c\xa7\x50\x9f\x52\x58\x4d\x08\x17\xbc\xd5\x75\xdf\x2c\x83\xd0\x78\x45\xf7\xd5\xbf\xd2\x34\x51\x27\x4e\xe3\xa2\x1f\xa1\xcd\xf9\xe7\xcb\xca\x97\x7e\x84\x75\x3b\x23\xe5\x3e\x76\xeb\xb3\xf0\xf1\x58\x5f\x6e\x9e\xbe\x10\x41\x33\xcf\x7c\x9e\x68\x4a\x15\xc1\x2c\xca\xf6\x59\x7e\x5e\x15\x21\x7b\xce\xdc\x79\x5c\x7b\x43\x08\x4a\xcf\x4a\xb3\xb9\xc4\xa7\x13\x3c\x9f\xb8\x36\x6f\xa8\x2b\x27\x28\x04\x87\x75\x98\xda\x65\x13\x5e\xa7\x4e\xd9\x98\xdd\xb7\x8a\x10\x53\x6a\x5c\x7b\x2a\x77\x98\xc1\xc8\x22\x1d\x8d\x32\xb9\x40\x16\xd4\x5d\x02\xf7\x74\x7b\xcc\x25\xf0\xdd\x17\x92\xe4\x90\xd9\x4e\xf8\x9a\x5d\xab\xbd\xf6\xb1\x0a\xa1\xe0\x99\xaf\xb2\x92\xcd\x71\x82\x2c\x6b\x6a\x7a\x9c\x73\x06\xc1\x2f\x9c\x49\xdb\xab\x76\x9a\x90\xc4\x9a\x30\xcb\xb2\xd3\x88\xe0\x24\x33\xf7\x5a\xd8\x80\x3c\xe1\x8c\xeb\x63\x4d\x87\x9f\x59\x84\x03\x73\x0f\xe7\x33\xfb\x93\x08\xaa\x97\x0a\x6a\x8b\x0d\xc2\x08\x6d\x09\x77\x36\xe0\xf9\x5a\x82\xc6\xd7\xfa\x86\xa0\x46\x53\x82\xff\xb1\xcd\xda\x0f\x2e\x9f\x65\x83\x90\x57\x87\xc8\x87\x75\xbb\xd9\x50\x52\x1f\x51\x91\x90\x4b\x84\x89\x77\x6f\xfb\x04\x66\x7a\xb0\x20\x56\x28\xf2\xcb\x7d\x79\x12\x0b\x2c\xad\x49\x63\xcd\xb7\x82\x08\x3a\x16\xf3\xe5\x4f\xd8\xbe\x26\xbc\xf8\x38\x37\xf8\x66\x72\x30\x61\xd0\xa8\xe1\x71\xb6\x63\x15\xe1\xf9\xc1\xdd\xc2\xb8\x3a\x8f\xf0\xe4\x45\x76\xf5\xca\xc7\x63\x0c\x1e\x27\xab\xfa\x2b\x34\x55\x12\xb6\x6c\x3f\x74\x70\xfa\xdd\x4a\xc2\x70\x9c\xa4\xf4\xfb\xe2\x4a\xc2\x3d\xa3\x39\x12\xff\x4a\xf3\x35\x8b\xd5\x61\x77\x82\xff\x0b\x53\x4e\x35\x9c\xec\xf4\xba\x4d\x48\x49\x99\xdd\xf5\x0f\xf6\x23\xd2\x83\x5d\x7f\x51\x54\x2b\x5b\x30\x55\x9f\xf3\xff\xc4\x6e\x07\x8e\xa0\xe1\x29\x8a\xff\x85\xe1\x5c\x7e\x49\xd6\x91\x89\x6c\x58\xf9\x62\x75\xf4\xd4\x2d\xd5\x84\x5c\x99\x1d\xd7\xff\xe1\xd1\xd7\x1f\xb9\x6b\x17\xb2\x08\x6d\x6b\x2d\x83\x22\xf4\xaa\xd9\xce\xc4\x66\x9a\xb5\xfe\x98\x16\x40\xd8\xb1\xd4\x83\xe7\xe7\x7f\xc3\x5a\x34\xfc\xd1\x05\x61\xb9\xff\x82\x58\xe0\x92\x59\x67\xbe\x5d\x62\xa1\x51\x61\x8b\x42\xd7\x8f\x89\x04\xb1\xcb\x1f\xdc\x93\x37\xa6\xfe\x17\x7e\x69\xf1\x58\xce\x98\x78\x95\xe0\xad\xfd\x3e\xe7\xd6\x53\x77\x82\x54\xc8\xb1\x5e\xde\xb0\x23\x84\xe5\xbe\x8a\xaf\x3d\x3e\x1e\x21\xf8\x68\xdf\x4d\x37\xfc\x0b\x6d\xa7\xd0\xd3\x11\x7d\xfb\xd9\xe0\x96\x68\xd5\x5b\xbb\x69\x98\x41\x6e\x6a\x7d\xff\xa1\xf9\x1a\x84\xcc\xd3\xf7\x52\x8e\x10\x1f\x21\x3b\xfc\x57\xda\x8a\xaf\x15\x84\x15\x43\xb1\x56\x69\xc9\x65\x84\x83\xb3\xe5\x9e\xfd\x2b\x0b\x33\x82\x5e\xf7\x28\x1c\x27\x6c\x7a\xf9\xeb\xd1\x2b\xa3\xe3\x04\x21\x85\x99\xfd\xaa\x26\xbe\x04\xd7\xda\x07\xfc\xb9\x73\x6e\x13\x34\xd7\x0d\x2f\xfb\x07\x83\xca\x8b\xa5\x2e\x83\xc5\x04\xa9\x0f\x29\x13\x6f\xfe\x2d\x1f\x0f\x35\x2d\xf9\x87\x4f\xac\xc5\xfd\x87\x3e\xfb\x12\x0e\xf9\xee\xba\x7c\xf6\x43\x22\x5b\xe9\x54\x99\xe7\x3d\xbd\xc7\x97\x10\xd4\x59\x7c\xa4\x0c\x79\x84\xb9\x31\x29\xf6\xff\xf0\x3f\xe5\xdb\x34\x07\x71\xed\x65\xdf\x99\xff\x40\x5f\x8b\x5a\xcf\x71\x03\x35\x42\xbd\xdd\xf7\x42\xdf\xf2\x12\x16\xf2\xf9\x78\x1c\x07\xef\x95\x12\x36\x4f\x6f\x94\xaa\x7a\x55\x40\x70\xbc\xf2\xf8\xf4\xac\x4d\xd7\x08\x7b\xb7\xfb\x7f\xb1\xfc\x16\x42\x38\xde\xf3\xa4\xfc\xcc\x73\x67\xb6\x72\xf2\xfa\x8e\x83\x39\x93\x92\xfe\x0b\x16\xfc\x6a\x5f\xf3\x0e\x1a\xfc\x9f\x98\xb3\x69\x9f\x8e\xfc\x0b\xd5\xff\xc2\xb6\xd9\xae\x79\x57\x73\xe6\x12\x24\x17\x9c\xa9\x31\xe7\x9a\x44\xb8\x99\xb4\x5e\xf8\xd7\x9a\x0f\x0c\xae\xe4\xeb\x8b\x26\xca\x4c\xa5\x71\x7c\xd8\x26\x90\xf3\x84\x43\x99\x70\xbe\x79\xde\x04\xf4\x57\x13\xf4\x63\x62\x45\x43\x38\xa2\x58\x38\x21\x10\xfd\xb9\x43\x25\x8a\x85\x68\xc1\x07\xae\xe1\x21\xd1\x2c\xd8\x19\x1f\x69\x61\xed\xb9\x48\x50\xcd\xe0\x38\x72\xdb\xe1\x32\xe1\x00\xe3\xae\xba\x7e\x6b\x38\x61\xb6\xb8\x2c\xcf\xf9\xb0\x93\x84\xe3\x7e\xf3\x9a\xcb\x1a\x12\x59\x18\x08\x9b\x7d\x68\xea\x82\x10\x42\x7a\xde\xc2\x9b\xa3\xf1\xe1\x84\xc7\xe6\x57\x4e\x30\xf9\x71\x84\xd5\xae\xf3\x4e\xd1\xbc\x48\x82\x7e\x9a\xd1\x72\xee\x0b\x71\x84\x55\x93\xbc\x87\xb4\xf3\x4e\x12\x2e\x3f\x6f\xba\xfe\xef\xcc\x69\xde\x99\x2f\x06\xf9\xa2\x08\x96\xe1\x0e\xcb\xaf\xd9\x45\x11\x74\x1f\xcf\x56\xdb\x5d\x1d\x4d\x48\x88\xe6\xee\xd6\xf2\x3f\x48\x98\xb8\xd4\x58\x3f\xe5\x84\x2c\x41\x64\x44\xfc\xa6\xae\xed\x0f\x06\x2e\x4a\x7b\x06\xb3\xde\x7c\x65\x60\x64\xb9\xe4\xc6\xed\x86\x51\x06\xcf\xef\x35\xaf\x9c\x31\x9f\x9b\x30\xcd\x6b\x65\x7e\xc0\xc8\x3c\x36\x6c\x68\x7b\x9b\xfd\xb8\x8a\x87\x70\x2e\xdb\x77\xfe\x96\x43\x23\x0c\x6e\x57\xed\x13\xdc\x3e\x70\x8d\x10\x1f\x6f\x20\xba\x7f\xe8\x1a\x41\xef\xe5\x2d\x55\x5e\xa3\x97\x15\x28\xf9\xf4\xbc\x5a\x5f\x70\x21\xe1\x73\x7c\xdc\x68\xf0\x12\x35\x82\xd9\x81\xd7\xf1\x7e\x76\xc2\x04\xba\x77\x36\xda\x75\x82\x35\xc1\xbd\xd9\xfb\x9c\x68\xe5\x1a\x02\xb3\xfb\xb5\xf1\xd1\x3d\x33\x09\x23\x61\x36\xde\xcb\xbe\x14\x13\xb2\x7e\xde\x09\x51\x0c\xb1\x20\xd8\xf3\x29\x46\x9f\x7f\x30\x9b\x0d\x49\xad\x4b\xd3\xdb\xdf\xfd\x60\x70\xd9\x67\xe9\x8c\x6d\x15\xea\x04\xab\xe2\x1f\xbf\xaa\x6b\x25\x08\x4f\x1f\x49\x68\x72\x99\x19\x12\x2a\xcb\x5a\x7a\xe2\x44\x54\x09\x0a\xc5\x63\x5b\x4a\x03\x16\xb1\xe1\x92\x47\x03\xee\xfd\xea\xaa\xc0\x97\xa6\x93\x5b\xcf\x8c\xaa\x13\x8e\xdf\x4f\x8d\x73\x9c\x50\x40\xe0\xd2\x59\x74\xef\x78\x66\x01\x41\x37\xbb\xa9\xe3\xf3\x46\x7f\x16\x76\xaf\xcb\x8e\x88\x3c\xe4\x4e\x98\x25\xcd\xf5\x38\xf8\x57\x3b\x03\x3b\x0e\x75\xc5\x30\x37\x49\x1a\x87\xd6\x4c\xb3\x0e\xd7\x37\xcb\xd8\x71\xf1\xe1\xea\xe4\x2c\x15\x36\x8c\xdc\xff\x23\x76\xce\xf9\x2d\x83\x03\x5f\x2e\xd8\x8a\x7e\x55\x24\xe8\x7d\x7a\x3b\xf0\x36\xbf\x98\x85\x50\xc9\xda\x4e\xbb\x92\xb7\x84\xad\xdb\x0e\x4e\xbc\x7a\xa8\x96\x10\x6c\xfa\x89\xeb\x44\xac\x01\xc1\xff\xa9\x93\xbc\xdb\x83\x2d\x84\x5b\xd2\x99\x0e\x13\xad\x14\x08\x87\x4d\xd6\xbf\x0f\xe0\x4c\x61\xe1\xc1\x85\x65\x9b\x36\x74\x34\x12\x54\x6e\x50\x83\x86\x41\x39\x21\x46\x9c\x4b\xba\x78\x69\x25\xe1\xd7\xbd\xf6\xd0\x15\xff\xfe\x03\xc1\xa2\x85\x77\xf5\x34\x2a\x09\x1e\xb2\xc4\x13\x12\xa4\x41\xd8\x6d\xf5\x2d\xac\x82\xb3\x8a\xe0\xfa\x73\xd1\xb5\x90\xb9\xb7\x09\xcf\xcd\x9b\xe4\xf7\x98\xcf\x21\x98\x6d\xe2\xd3\x90\x2f\x8a\x21\xb8\x14\xd5\x8c\xd6\xe7\x0b\x13\x9c\x24\x4b\xeb\x5b\xde\x0d\x32\xd0\x91\x3a\x67\xde\x51\x21\x4d\x38\x7a\xc6\x4e\x6a\x7d\xe1\x52\x42\xf9\x8c\x15\x51\x51\xd1\xf1\x84\x57\x59\xeb\xbb\xe9\x7d\x16\x61\xd2\xbb\xdf\x17\xf5\xff\xa2\x6f\x27\x63\x73\x69\xc4\x88\x10\x3b\x65\x86\xcd\xc2\x89\xdb\x09\xcf\x92\xc3\x4f\x66\x3a\x6d\x26\xc0\xd4\xe4\xab\x91\xb5\x35\x81\x27\xeb\x6c\x78\xfc\x43\x3f\xc2\xab\xe0\xed\x97\x7f\x76\x0b\x13\xba\xa7\x59\xc6\x3f\xda\x56\x40\xb8\x2b\xf3\xb6\x60\x93\x64\x14\x41\xbe\xec\x66\x46\x84\x63\x14\x61\xe4\x49\xcc\x97\xfb\x33\x02\x58\x68\x72\xf7\x38\x76\xf2\x5b\x14\xfd\xff\x7f\x14\xd4\x9f\x10\xf5\xe6\x30\xd3\x16\x72\x87\x35\x5e\x8c\xe7\x8b\xb3\x56\x48\xee\x20\xf8\x7c\x1e\x70\x12\x9a\x14\x49\xd8\x3b\x27\xe2\xf3\xcd\x83\x2f\x09\x0d\x4e\xca\xcc\x15\x89\x2e\x02\x97\xc2\xdb\x37\x26\x3e\x57\x59\x78\x22\x34\x1a\x29\xa1\xd1\x44\xb8\x5f\x74\x60\x6f\x73\xa7\x03\xc1\xb1\xae\xc0\xff\x92\x74\x31\x41\x74\xec\xed\xc2\x05\x61\x69\x84\x95\x82\x22\x53\x97\x6c\x2f\x22\x24\x5e\xd7\xbf\xb2\x56\xce\x85\xf0\x9a\xa5\x39\xcd\x9a\xdb\x9d\x50\xd2\x6e\x38\xb9\x5b\xa7\x86\x05\x33\xde\x55\xf3\xff\x95\x38\xb1\xf8\xd2\x7a\xb9\x40\x42\x64\xf2\x67\x8e\x9e\x75\x81\x04\x9b\x19\x6e\x5a\x97\xae\xaf\x27\xac\xba\xf8\xf6\x59\x98\x72\x38\xc1\x6d\xf5\x2a\x9b\x75\x31\x05\x6c\xf0\xb2\xd7\xd9\xba\x2f\x29\x96\x0d\xb9\x8b\x96\xdc\xef\xe7\xcd\x67\x50\x93\x96\x70\x72\xac\x6e\x8c\xc1\x37\xf5\xd6\x93\x16\xd7\x0d\x08\x0a\x4f\x45\xcb\xd3\x0c\xb6\x11\xe2\x0b\x7b\x4c\x15\xb8\x92\xd8\xf0\xf6\x74\xc0\xbb\x28\xd7\x7c\x82\x6e\x99\xc2\x94\xaf\xd5\x5a\x84\x0f\xd2\x73\xb4\xf4\xce\xa4\x13\x34\x85\xaf\x6d\xb8\xa4\x9f\x4e\x28\x0a\x9c\xdf\x3b\xef\x7e\x3a\xe1\xe1\x8d\xdd\x3a\x13\x79\xf7\x13\x52\xab\x78\xef\x1d\x5e\xf3\x98\x05\x5e\x95\xf9\xdc\x0a\xcb\xc2\x09\x55\xe6\x6f\x4f\x99\x9c\xce\x26\x94\x2c\x2d\xfa\x54\x31\x61\x25\x61\x6d\x57\xf4\x3e\x8b\xe3\x9b\x08\x03\xb5\xa9\x71\xd6\xa2\xb2\x04\xfd\xf3\x27\x8f\xb7\x0d\xdd\x27\x5c\x99\x94\xef\xe9\xb2\xdb\x94\xf0\x54\x68\x79\x44\xe7\x17\x23\xc2\xd3\x86\x2f\x2d\x76\x0d\x02\x84\xbb\x21\x47\x5b\xaf\x56\x89\xb2\x95\xf2\x13\xaa\x2e\x4b\x7c\xc1\x8c\xc3\xe9\x53\xbe\xf7\xd6\x52\x86\xe0\x13\x1f\x15\xd4\x2a\x96\x49\x30\x89\x6a\xd8\xe2\x16\x9f\x41\x48\x0b\x9c\xef\xe6\xf3\x4e\x9f\x90\x98\x78\x6c\xf6\xcb\x99\x65\x04\xd1\xa5\xd5\xad\xbf\xb3\xd3\x08\x07\x15\x9f\x72\xc7\x5a\xa6\x11\x2e\xad\xca\x58\x3d\xfd\xa9\x36\x61\x47\xcd\x8f\xe8\x09\x21\xdc\x04\xd9\xf5\x16\xe9\x9d\x37\xbe\x31\x88\xd9\xb4\xb1\xe5\xe7\x61\x71\xc2\xdc\x3e\x8f\x7c\xaf\x2b\x22\x84\x6b\xd7\x5d\x04\x57\x9f\x4b\x22\x4c\x0e\x9a\xdb\x70\x7e\x92\x21\x01\x6e\x3f\x1c\xa5\x1f\x14\xb0\x21\x71\x8b\xc0\x4e\xa9\xbf\xb8\x24\x7a\x82\xc5\x73\xa0\x9b\x81\xfa\x31\x93\x08\xd7\x55\x07\x09\x42\x53\x0a\xd7\xec\xbf\xa6\x46\x38\x7f\xf6\xaa\x4c\xdc\x43\x25\x42\xfd\x84\xac\xc8\x9d\xf5\x12\x84\x16\x21\xdf\xbe\xde\xd0\xdf\x0c\x66\xdf\xa8\x5c\x1e\xdd\xd2\xcf\x40\xf0\x08\x57\x64\x4a\x8b\x39\xa1\x6d\x68\x91\xe3\xcf\x99\x5b\x59\xf0\x5c\x2c\xa3\x14\xfd\xcb\x93\x85\x5e\xdf\x93\x09\x1c\xe6\x93\x08\x33\x63\xb7\xd6\xab\xf1\x6b\x11\xbc\x7d\xfc\x8c\x4f\xd8\x67\x12\x4e\x7d\x75\x0b\xba\x6b\x5a\xc2\xc2\xd4\x02\xfb\x28\x8d\xe0\x51\x06\xef\x4f\xcd\xd4\x38\xbe\x4e\x81\xd0\x2d\xa2\x27\x57\x92\x68\x42\x58\xb9\x93\xd1\x3c\x9d\xc8\x49\xf8\xdc\xa6\xf0\x41\x35\x4d\x9f\x10\xc1\xdf\xd9\xd6\x50\xcd\x8e\xc2\x86\xb3\x72\xd7\x94\x47\x19\xc8\x08\x75\x4e\x59\xe0\xd1\xcd\x86\x0c\x79\xc9\x05\x0a\x2f\xdb\x18\x1c\x5a\xc6\x31\xda\x1b\x2b\x4a\x70\x15\x11\xf8\x1a\xac\x7a\x8d\x0d\x73\xa7\x59\x9d\xbf\xa7\x9e\x4a\xb8\xae\x31\x7a\xfc\xf3\x82\x34\x16\xa6\x38\x87\x38\xfe\x9b\x8e\xcc\xf0\xf7\xda\x6a\xba\xeb\xff\x0d\x4b\x18\x75\xed\x39\x3d\xfb\xff\xdf\xf0\x46\xb5\xed\x94\x6f\xa1\x04\xa1\x76\xbe\x63\x49\x4c\xc7\x24\xc2\x3a\xff\x8c\xd6\xe2\x97\xc9\x04\xe1\xfd\xdf\x72\xec\xc5\xd2\x59\x18\xb2\x6d\x7b\x71\x40\xd7\x89\x90\x70\x6b\x88\xcf\x8f\xc3\x99\xc6\xcb\x03\xb9\xd7\xf1\xbd\x53\x0d\x09\x3f\x9f\x23\x6d\xc7\x5d\x71\x82\x8d\xe8\xfe\xba\x59\xf2\x67\x58\xf8\x31\x16\x2c\x64\xa1\x20\x41\xc8\xab\x6c\xbe\x1d\xa5\x9b\x4f\x30\x4a\x5d\x3d\x65\xf3\xb2\x9b\x84\xab\x6a\x21\xa2\x8f\x1e\xe7\xb2\x4d\x5e\x07\x52\xe8\x84\xcc\x24\x42\x8e\xd4\xbb\xc7\x97\x3f\xc6\x10\x82\x8e\xcc\xf0\x89\x79\x62\x4c\xf0\xd0\x1e\x36\x5c\xd7\xea\x47\xd0\xe6\x97\xb9\x79\xa4\xb1\x92\x90\x64\xa9\x59\xff\x0f\x2e\xaf\xec\x7f\xfe\x43\xb4\xdb\xde\x0d\x51\xce\xb6\x84\x25\x4b\xda\x4a\xf8\x17\x4c\x23\x5c\xd1\x9c\x2c\x16\x56\x1a\xc0\x06\x0f\xf3\x97\x8f\x67\xdc\x8f\x66\x43\x45\x75\x9f\xcb\xf3\x57\x9b\x08\x69\xa7\x22\x1c\x1c\x2e\xe7\x13\x0e\xae\xf1\xf9\xf3\x79\xf5\x16\x42\x44\xdf\xb1\x0b\x03\x9b\xed\xd9\x20\x11\xb6\x31\xd7\x74\x8f\x1d\x41\x5f\x22\x5a\xdc\x94\x47\x82\x70\x8e\x55\x76\xe2\xf1\x09\x11\x36\xf8\xbd\x51\xe2\x5b\xe4\x31\xc6\x8c\x43\x25\xc9\x99\x53\x6c\xde\x3a\x82\xd3\xaa\x75\x23\xfa\xcd\xef\x18\x48\xca\x8b\xb8\x1f\x14\x1d\x64\xc3\xfa\x17\xd5\xc2\x0e\xaa\x13\x08\x27\x54\xd3\x0e\x58\xae\x14\x20\xa8\x6b\x9f\x1b\x1b\xe1\x0a\x21\x04\xb5\xd5\x7e\x7c\xf3\x20\x8b\xa0\x77\xe8\xa7\xe7\xd9\x5e\x2f\x02\xdf\x19\x71\x0d\xb1\xf0\x25\x84\x3d\xad\x83\x8a\x77\x76\xce\x24\x5c\x58\x7d\xba\xfc\xa2\x87\x2c\xe1\x54\x68\x86\x5d\x91\x76\x26\x21\xd1\xed\x6d\xbf\x52\x86\x08\x61\xda\x9b\x33\x92\x9a\x49\xd9\x04\xa9\xee\x38\xe1\x59\x72\x45\x04\x93\xfa\x25\xdb\x2d\xac\xd7\x12\x96\x0d\x9d\x3b\xe8\x1c\xc0\xc5\x06\xb3\xa7\x1c\x16\xea\x7a\x7d\x0c\xbe\x4e\x99\x1d\x15\xbd\xef\x3b\x83\xa5\x6b\x67\x46\xdf\x3c\x27\x42\xd8\xfb\x88\xe7\xd7\x74\x6b\x7d\x82\xee\x8e\x29\x4b\xf4\x5b\x96\x10\xfc\x9d\xce\xb6\x72\x78\x8a\x12\x16\xe6\xcd\x5a\x2f\x9c\xf1\x8d\x81\xc0\xd3\xe0\x65\xa7\x56\x37\xb3\x41\x72\xf2\xfe\xa3\x8b\x33\x39\x09\x89\x1f\xbd\xd7\xb6\x0b\x2f\x25\x68\x56\xbf\x91\x28\x1c\xe3\x22\x6c\xb5\x79\x9c\x5d\x34\x67\x3f\xe1\x9c\x8a\x99\x4b\xcd\xad\x7d\x84\x86\x4b\x97\xa7\x4a\x2e\xf3\x63\xe1\x91\x23\x52\xaa\x0a\xb4\x09\xfe\x51\xa7\xaa\x12\x83\x4d\x09\x9a\x02\x61\xb7\xc2\xa7\x0a\x10\x6e\x29\xca\xd8\x7f\xe9\x7b\xce\x1a\x2f\x19\x91\x9f\x6e\x5b\x4b\xdc\x63\xb0\x5b\xfc\xdc\x81\x81\xbd\x7c\x84\xea\x6a\x0f\xe5\x83\x4f\x19\x42\x45\xf8\xa7\x5b\x91\xc3\x97\xd8\x90\x38\xfd\xd8\xe0\x4a\xc9\xf0\xff\x13\x7b\xa5\x53\xbc\x27\x89\x9b\xb1\x41\x91\xf7\x73\xfa\xda\xb3\xb7\x99\x71\xf4\x4d\x91\x5a\x3e\x27\x4c\x87\xc6\xe1\xda\x2e\xb1\x6f\xad\xe5\x30\x03\x27\x0d\xd9\x5a\x8d\xb6\x52\x82\xd1\xe5\x4b\x91\x61\xea\x95\x84\xdd\xdf\x25\x59\x57\x8c\x5f\x33\x90\x5b\xbe\xa0\x25\xcc\x6b\x0e\x41\xfa\xad\xf6\x60\xd3\xaa\x8d\x04\xa1\xd5\xc7\x05\xb9\x87\x24\x08\x43\x12\x8f\xde\x39\xaa\x9d\x67\x61\xcf\x16\x8b\x19\xdc\xef\x47\x18\xb4\xdc\xcf\x48\xd4\x31\xdd\xc1\x82\xdf\x29\x91\xf2\x0b\x27\x36\x12\x22\x45\xaa\x8b\xf7\x3e\xdb\x4d\x70\x38\xad\x7b\x3e\x65\x57\x0d\x1b\xea\x1e\x59\x66\xfe\x83\xcb\xf5\xd5\xe6\x5c\x1e\xec\xe5\x7f\xce\xbc\xd0\x6a\x9a\xe4\x75\x36\x88\xf0\xfb\x48\xc2\x57\x93\x5b\x81\x84\xa9\x57\x53\x5e\x7a\xfe\x2d\xba\x49\xb2\x1b\xd7\x6a\x07\xb1\x95\x87\x47\x43\xdc\xde\x9d\xf1\x60\xc3\x09\xe3\x2e\xde\x13\x56\xc5\x84\x0f\x95\x6d\x8e\x7d\x22\x66\x84\xcf\x87\x0a\x96\x7d\x09\x15\x23\xcc\xbc\xf1\xb3\x7c\xe1\x72\x41\xc2\xd5\x0f\x22\x87\x16\x5e\xb3\x25\xdc\x50\xb8\x73\x27\xd9\x3d\x89\x10\x93\xdb\xbd\xa6\xf5\x6c\x12\x61\x71\x7f\xa9\xa7\xfd\xa6\x49\x84\x09\x93\xaf\xaf\xbc\x61\xff\x87\x81\xf8\x87\xe2\xd2\x90\x70\x7f\xc2\xde\x36\xa5\xd5\xd3\xe4\x93\x08\x22\x7f\xcc\x53\xd2\x5b\x92\x08\xfb\x04\x4b\x97\xd6\x5d\x4f\x22\x34\x5b\x3f\x58\xf3\xff\x01\xa1\xfe\x86\x6c\xd2\xba\x48\xd0\x09\x3d\xfe\xc8\x78\xe2\x25\x82\x4b\x69\x2b\x97\xc3\x49\x5f\x16\x96\x46\x7d\x8a\xff\x5a\x6e\x48\x30\x92\xba\xb6\x4d\xef\x2a\x07\x21\xe6\x8a\xd4\xd5\x72\x43\x43\x82\xc0\x3c\xb5\x6f\x93\xbc\xb4\x09\x57\x82\x8f\xb7\x8a\x9e\x9a\x4e\x88\xdc\x12\x72\x77\xfb\x80\x0a\x1b\x92\x33\xcb\xa6\xd7\xfb\xd4\x31\x18\xf8\x70\x3c\x27\xb8\x36\x9f\xb0\xeb\x5d\x89\x37\xcf\x6f\x3e\x82\xda\xab\x7e\x9d\xad\xa9\xc3\x0c\xb8\x76\xf5\x5e\x7e\xbf\x63\x3b\x41\xbe\x63\x95\x66\xd7\xec\xd5\x84\x36\xc9\xcb\x23\xc7\x06\x2d\x08\x55\xa1\x57\x5b\x7f\xc7\x68\x13\x7a\x1a\x8d\x27\x64\xfd\xb8\x4e\x30\xeb\xbb\xbd\x33\x6e\xe8\x3a\x61\xc3\xab\x57\x97\x67\xc9\xd8\x12\x2a\xf8\x7b\x1a\xdd\xa5\x19\x82\x8b\xce\x8c\x2b\x25\x4a\x76\x84\x39\xfd\xd1\x1b\x4c\x8e\xae\x27\x3c\x39\x92\xfb\x76\x92\xdc\x6c\x42\x7a\x4d\xfa\x08\x97\xd2\x15\xc2\xe2\x05\x0a\x8a\xdf\x7a\x0e\x13\xa4\xf3\x32\xb6\x79\x2c\xda\x43\x08\x9e\x5d\xd9\x61\x36\x78\x90\x60\xdc\xd2\xd3\x92\xf2\xfe\x30\x61\xd7\x6e\xff\x98\xfc\xa6\x30\x16\x78\x8f\x73\xeb\xc6\x2c\xf1\x24\x4c\x5b\xfa\x51\xc2\x2d\xf7\x1e\xe1\xd0\x40\xeb\x96\x4d\xdb\x2e\x10\x9e\xd6\xd8\x7a\xc6\xfe\x3d\xac\x57\xde\x9c\x30\xd9\x3c\x9e\x85\xa0\x18\xe5\x2d\x41\x89\xa9\x84\x29\x3f\x5e\x7a\x28\x44\xa5\x12\x7a\xba\x0c\x07\x3c\x3d\x53\x09\x81\x12\xf4\x93\xe3\x4a\x2a\xa1\xe4\xcd\xfc\xf5\x9d\xce\xd9\x84\xce\x9d\x41\x85\x2f\x6d\xac\x08\xfe\xab\xef\x9a\x96\xfe\x5a\x47\xd8\x9e\x6e\x31\xa1\xd4\x49\x9f\x85\x87\x93\x26\x29\xdc\x9c\xa0\x46\x38\xfd\x4e\x68\xcc\xb2\x4d\x81\xb0\xfa\xae\x54\x7e\x55\xc5\x22\xc2\xc3\xdd\x15\x4e\x01\xe9\xba\x84\x73\xe1\x2f\x34\x64\x2e\x6c\x22\xc4\xcd\x91\xf2\x29\xdb\x6d\xc7\x86\x68\xe5\x80\x63\x23\xa3\x12\x84\x6f\x73\xf8\x1b\xec\x46\x45\x09\xaf\xef\x76\x4c\x6a\x7b\x5f\x40\xe0\xec\x57\x52\x9e\xd9\x5b\x4e\x38\x32\x97\xe7\x81\xc8\xa7\x02\xc2\x80\x3a\xdf\x27\xc5\x5b\x1b\x09\xdf\x7b\x26\x6e\xf5\x7b\xb5\x9e\x70\xac\xf5\x50\xbc\x7b\x83\x2d\xe1\x51\xb9\xee\xa2\xd8\xef\x96\x04\xb9\xdf\xeb\x32\x56\x2f\x7b\xcc\x82\xc3\x8e\xf4\xc6\xd6\xfa\x52\xc2\x92\xa3\x51\xfe\x8b\x99\x0a\xc2\x83\x8e\xa5\xcb\x7c\x64\x62\x09\x6e\x19\xa5\x6b\x44\x7f\xd6\xb0\xc0\xab\xc4\xe3\xe7\xe8\x6e\x4d\xe3\x10\x99\x2f\xef\xb8\x7d\xdb\xe3\x0a\xdc\x7d\xa1\x59\xeb\xb3\x21\x93\x85\x79\xb6\x71\x2d\x99\x8e\x89\x04\x5e\x15\xe5\xa4\xb9\xc6\xeb\x09\xdb\xfb\x38\x72\x34\x8f\x84\x13\xe2\xee\x7b\x5d\xf9\x33\xf9\x04\x21\xcf\xad\x79\xfb\xac\x48\x79\x82\xdd\xae\x53\xd2\x77\x1d\x6e\xb2\x70\x5d\xa0\x60\xcd\x13\xc9\x12\x42\xe2\x92\x9b\x76\x52\xcb\xfd\x08\x29\xf3\xb5\xdd\xce\xa6\x87\x10\xcc\x2f\x0b\xbc\x3a\xfe\x4e\x92\xd0\xd5\x51\x61\x6a\x4d\xb9\x2c\xdc\xba\x26\xfd\xf8\x64\x95\x1b\xa1\x52\xca\xac\xe1\xc8\x3e\x59\xc2\x83\x21\x9d\x50\xc7\xf0\x02\x42\x9d\x78\xf7\x73\xe9\x6f\x23\x0c\xfa\x7e\x7c\x56\x9f\xc1\x9d\x44\x58\x74\x63\xb3\x59\xaa\xc2\x42\xc2\x8b\x5d\x62\x12\xa6\xda\x7c\x6c\x58\xb8\xf2\xcf\x35\xde\x6d\x63\xcc\x38\x54\x92\x9b\x96\x29\x71\x35\x31\xd8\x7f\x3e\xcb\xd3\x36\x62\x84\x81\x6b\x59\x4a\xf7\xe9\x6f\x52\x34\x8e\x04\xc1\x94\x53\x23\x42\x8b\x09\x5e\x6b\x26\xbe\x6e\xb8\x96\x45\x70\xe5\x3c\x11\xd7\xac\xe9\x49\x50\xd1\x8d\x2b\x13\xf4\xb7\x24\xac\x3a\x7b\x70\x81\x7a\x81\x38\x41\xb7\xfa\xec\x06\xcb\xa3\x2a\x84\x2b\x2b\x1a\x67\x1d\x5c\xb7\x93\x85\x49\x6f\x6b\x73\x02\xae\x6d\x24\xac\x7b\xfc\xb3\xa5\xe1\xfc\x1b\x06\xde\x79\x9b\x63\x8a\xcf\xc9\x11\x2a\x0e\xed\x99\xec\x17\x5b\xcb\xe0\x92\xc5\xf5\xa5\x87\x66\x0f\xb2\xe1\xe0\x7d\x83\x73\x17\x78\xda\x2b\xe0\x3a\xcb\xe8\x65\x8e\xaf\x20\xe1\xc2\x14\xed\xa3\x43\x59\xa6\x84\x77\x3f\x34\x83\xb6\xfd\xbd\x62\x75\xbf\x68\x30\x73\xb9\xb2\x88\x60\xc4\xb1\xea\xb0\x67\x9a\x0f\xa1\xb4\xec\x48\xad\x38\x5f\x10\x5b\x59\x25\xce\xc1\xdd\x73\x4c\x8c\x60\xcc\xab\x3a\xc3\xbc\xea\x1b\x03\x8d\xfe\x2d\xfc\xaf\x44\x8a\x08\xb3\x39\x0a\x7f\xcf\x95\xae\x24\x6c\x2b\x70\xe6\x7e\xe6\xc4\xaa\x40\xc5\xb1\x2d\x7c\x4a\xef\x54\x68\x1c\x23\x8a\xb3\x63\x97\x1f\x92\x27\x4c\x5e\x2e\xb0\xfc\x74\xba\x19\xe1\xcf\xa4\x9f\xf1\x41\x27\x5f\x30\x28\xc1\x05\xc3\x91\xd1\x69\x84\xd5\x6a\x63\xe7\xe7\xc8\x08\x13\xdc\xc3\x6e\x89\x3f\xfd\xf4\x94\x85\x1c\xe7\xe5\x39\xad\xc6\x1f\x19\xd0\xce\xd2\xe7\x61\xe6\x86\x84\xd0\x96\x75\x07\x97\x69\xed\x25\x7c\x9c\x59\xe8\xc9\x5d\xb6\x95\xd0\xe4\xf9\xe7\x0d\x5f\xb1\x02\xc1\xe8\xe5\x3a\x79\x56\xf4\x4f\x06\xef\xac\x1e\x2c\xb0\xb7\x88\x64\xe1\x5a\x9a\xb4\x92\x6b\x4b\x1a\xe1\x51\x96\x43\x4d\xd4\x82\x59\x2c\x14\xe8\x2b\x6e\xb9\x3f\xcf\x8c\x50\xb7\xbc\xd4\xad\x58\xe7\x28\x61\x54\x9d\xf5\xd3\x9c\x53\x8b\x70\x65\xdb\x67\xe5\xa3\xb3\x32\x08\x2a\xb3\x1f\x45\x18\xb9\xda\x10\x06\x14\x27\xb8\x0f\xf8\xee\x61\xe1\xa3\xe0\x7a\x15\xcf\xa7\x1f\x08\x9f\x4a\xee\x4a\xf2\xab\x3e\x24\xfc\x34\x52\x5e\x25\xba\x6a\x26\xc1\x3c\xd6\xa1\xfc\xf9\x9d\xa0\xff\xc2\x9f\x17\x32\x52\xf5\xbb\xe6\x10\x9e\x19\x66\xfe\xf1\x19\x50\x23\x64\xb5\x8e\x70\xa7\xd9\x0a\x11\xde\xd5\x1c\xdb\xaf\x6f\xb3\x84\x0d\xcf\xd3\x39\xe4\xda\x92\xca\x19\xac\xe7\x08\x0d\x2a\x2d\x3e\x40\x38\x2f\x92\xd2\x23\x2b\xb1\x85\x10\xc3\xbf\x35\xc0\x6f\xd3\x5c\x82\xf5\x2f\x51\x7e\xad\xb9\x22\x84\xba\x3b\x8d\x47\x6f\x75\xfc\x60\xb0\xfe\x88\xef\xce\x50\x5a\x4d\xe0\x74\xf9\x1c\x28\x60\x7d\x8b\xb0\xf3\xf0\xc3\x15\xa5\x5f\xca\x09\xbd\xc2\x1f\x92\x0f\x08\x2e\x64\xa1\x9b\x65\x59\xfd\x73\xab\x15\x81\xac\x15\x56\x5d\x1f\x9b\x40\x48\x50\xde\xb7\x25\x38\x45\x98\x0d\xd2\x26\xcf\x59\x8e\x73\xba\x19\x9c\x6a\x3d\x25\x5c\x94\x11\x42\x70\x11\x4d\x1a\xbb\xc6\x3d\x93\x20\x6e\x6b\xad\xbf\x96\xf3\x1a\x0b\x17\x8f\x6f\xda\xd2\xba\xfa\x08\x41\x7f\x46\x92\xe7\xaa\xb2\xb5\x84\xe0\xc5\xdb\x16\x04\x65\x2e\x22\xd4\x28\x85\x68\x7d\x3d\xa7\x4e\xa8\xb9\x9b\xe0\xb5\xfe\xcd\x62\x82\x72\x90\xad\x55\xd0\x0d\x4b\x42\xdd\xca\x94\xba\x66\xc9\xd5\x84\x93\xb9\xe6\x61\x21\xdb\xb5\x08\x4a\xef\x97\x70\x2f\xb4\x39\xc5\xc2\x37\x57\xcf\x79\xf2\xf3\x66\x10\xea\x94\xcf\xea\x3e\xd1\x1a\x65\xc6\x31\x1c\x2e\xfd\xa0\x20\x5c\x8d\xb0\xa9\xd4\xae\xee\xaa\x96\x02\x61\xc8\xe5\x4f\xd0\x21\xef\x31\x06\x91\x06\x42\xdb\x9d\x19\x4e\x42\xc4\xda\xc5\x69\x29\x55\x99\x04\xe5\x25\x0a\xd3\x44\xdd\x1b\x09\x26\x9a\x5c\xd5\x1d\x09\x12\x6c\x58\x61\xd3\x74\x76\x9e\xd7\x66\xc2\x6f\xb1\x96\x67\x65\x1a\xda\x6c\xb0\xc8\x73\x2e\xea\xbd\x6b\x42\x88\x5f\xb1\x5c\x31\xad\x4f\x98\x0d\x59\xd3\xdc\xa7\x67\xcc\x9d\x4c\xe8\x77\x68\xde\xfd\x5e\x5d\x94\x70\xa8\x77\x7d\x30\x97\x78\x1f\x83\xb2\xd8\x1f\x47\xf6\xb6\x94\xb0\xb0\xfd\xe7\xb5\xdc\xf9\x8e\x9c\x84\xa3\xbf\x44\x9d\xbf\xb4\x7e\x61\xc6\x51\x20\x19\x28\x31\x62\xba\x9f\x85\xb8\x23\x17\x8d\x42\x76\x4a\x12\x26\xaf\x3c\xb3\x25\xf9\xf0\x41\x36\x6c\x33\x12\x3d\x9f\x61\x72\x80\x60\xf6\x2c\xad\x5d\x51\x89\x8b\x30\x37\x56\xd1\x7e\xe0\x62\x0f\x03\x49\x1b\xdf\x37\x4d\xea\x33\x69\x1c\xf3\xbc\xbe\x2e\x12\xa4\x21\x06\x5a\x3b\x17\xb5\xee\x3f\x21\x48\x10\x0f\xb1\x71\xf0\xdb\xf4\x95\x41\x45\x64\xec\xa5\x23\x11\x93\x09\x3b\x82\x5c\xe2\x1a\xdf\x15\x10\x58\x82\x0b\x1e\xad\xbb\x58\x43\x68\x9e\x2b\xdd\x1b\x74\x6f\x16\x41\x3e\x74\x96\xf1\x83\xb9\xba\x84\x83\x01\xb6\x7b\x72\x42\x27\x12\x7e\x3b\xe9\xbc\x18\xd6\x1e\x62\x90\xa5\x9d\x72\x70\xe7\xf6\xcd\x84\x75\x9f\x2f\xd9\xcd\x3d\xf7\xf7\x73\xe7\xdb\x2e\x98\xca\xe8\x10\xbe\x58\xbd\x5c\xd2\x1e\xa9\x4a\xd8\xc3\xbf\xd9\xfa\xaa\x9b\x18\x61\x74\xab\x85\x8a\x93\xd7\x2f\x06\x37\xf2\x2a\x83\x05\xc3\xed\x09\x71\xc3\x27\x59\xdd\xb6\x9c\x04\x3f\xb1\xee\xa7\x0b\x76\x1e\x62\xe1\xf5\x9e\x66\x17\x0e\xd5\x54\x82\x8f\x6c\xe5\xba\xff\x8d\x73\xc3\xb1\xf3\xd3\xe2\x1c\x08\xe6\x29\xf6\x0b\xf3\x16\x38\xb1\x21\xf9\x75\xfc\x45\x09\xe1\x58\xc2\x94\xf2\x1b\xcd\xe5\x32\x61\x84\x8d\x9b\x8d\xe3\x8a\x03\xb6\xb3\x90\xf6\x9b\xcf\xa9\xb4\xac\x8b\x85\x8e\xe4\x6f\x9f\x4e\x5e\x7a\xc5\x42\x7b\xdb\xb7\x9d\xb7\xf5\x12\x09\x17\x36\x3a\x57\x8f\x05\xec\x21\x1c\x0d\x5e\x7d\x73\x9d\xcc\x10\x03\x1f\xd3\xb4\xf9\x4b\x38\xea\x08\xea\xe7\x8f\x26\x8c\x35\x65\x11\x26\x1b\xb6\x72\xfb\xe4\xe6\x11\x72\x8f\x66\x7f\x4d\x7c\x75\x83\xf0\xfe\x98\x75\xa2\xc1\x01\x16\xe1\x5d\xec\x22\x71\xef\xe3\x2c\xc2\xfc\x6d\x9d\xb6\xbb\xbd\x59\x84\xa2\x20\xa5\x32\xbb\xd6\x32\xc2\xea\x57\x93\xd6\xaf\x3e\xca\x22\x24\x67\x9c\x0d\x8b\xa8\xcc\x23\xac\x13\x9f\xbd\xfe\x46\x57\x0c\x81\xd7\x6e\xcd\x6d\xab\xc1\x75\x6c\x50\xcc\xdf\x35\x4d\x31\x74\x2e\xe1\x40\x97\xe1\x56\x4b\x93\xd9\x84\x7c\x91\x61\xcb\x39\xda\x49\x6c\x18\x4a\x9c\x63\xed\xa4\xf3\x98\x85\x0d\x9d\xfb\xd4\xf7\x98\x1c\x63\x8d\x4f\x7b\x5a\xef\x86\x49\xb6\xef\xfc\x3f\x71\x21\xd6\x30\x21\x7a\x81\xfb\x7f\xc1\x52\x62\xcb\x2e\xcf\xbf\xcf\x95\x5f\xbe\x3c\xd0\x52\x9c\xac\x4c\x48\x71\xb9\x9a\xd1\x73\xa9\x89\x70\xd0\xfb\x89\xca\x4a\x9e\x0c\x82\xc4\xa7\x95\xb6\xab\x2b\x53\x58\x28\x6e\x5c\xb3\x2d\x73\x77\x26\xa1\xe2\xe2\xed\xd0\x5b\x2b\x4e\x11\xee\x15\xaf\x50\xbc\xbe\x65\x29\xe1\xd8\x86\x4b\x2a\xfc\x7c\xa3\x0c\x62\x63\xae\x57\x4d\xfb\xfb\x9d\xed\x83\x6a\x6e\xf1\x9e\xa4\x13\xff\x85\x3c\xdd\xad\xae\x9d\xa6\xe2\x84\xd5\xb5\x73\x73\x56\x16\x7a\x12\x0c\xc5\x3e\xed\x5c\x22\x28\x44\xd8\xbf\x60\x79\x2e\x7f\x4b\x33\x83\xec\x67\x8b\x77\xee\x51\x9d\x41\xe3\xe0\xd5\x36\xf9\xf6\xc8\xcb\x90\x0d\x96\xab\xd2\x03\x2a\x91\x41\x10\x3b\x19\x3b\xe8\x29\xda\xce\x60\x71\xc2\x97\xb5\xab\x3c\xf5\x09\xee\x19\xf5\x8b\xcb\x8e\x4c\x23\x2c\xe7\xdf\x26\x73\x5f\x72\x88\xc1\xf2\xd0\xc8\xae\xfc\x04\x19\xc2\xf0\xb5\x24\x6d\x8f\x9e\x49\x84\xcb\xeb\x24\x23\x0e\xd4\x48\x12\xde\xba\x1d\x0a\xe5\xf3\x9f\x40\x08\xbf\x53\x17\x21\xd8\xc1\xc3\x06\xed\x7d\x73\x4c\xa7\xf6\xd8\x11\x7e\xcc\xef\x34\xb8\xde\x69\xc0\x86\xa6\xec\xaf\x2f\xbc\xbb\x53\x09\xbb\x2d\x12\xfc\x9a\x96\x3b\x10\x52\xb8\x4c\x74\xf6\xad\x8a\x22\xf8\xc6\x23\x2a\x53\x24\x89\x85\x54\xb9\xea\x1c\x4b\xd1\xd3\x04\x15\xfe\xdb\x09\xbe\x4f\xe7\x13\x4e\x4b\x4e\x89\x9c\x6c\x78\x98\x70\x86\xfb\xd4\x4b\xeb\x8a\xf9\x04\x0d\xf1\x54\xe5\x2f\x02\x9b\x09\xde\x73\x4e\x3b\xa9\x55\xbe\x65\xb0\x48\x49\x47\x75\xf1\x4b\x07\x02\xaf\x78\xe1\xf2\xb0\x2f\xa2\x84\x75\x93\xb8\x86\xe7\x3f\xf0\xf8\x2f\x74\x3c\x3a\x9d\x3f\xad\xa0\x84\x19\x3e\xad\xf4\x71\xdd\x93\xb9\x04\x65\xf7\x65\x42\xb7\xfa\xd3\x09\x8b\x34\x0a\x6e\x47\x07\x44\x13\xf6\xec\xbe\x7a\x96\xf3\xf2\x59\x02\x1e\xe1\xf4\xe4\xc6\x03\x84\x36\x6f\x21\x3e\xef\x50\x79\xc2\xc9\xd2\xcb\xb6\x67\x4e\xd8\xb1\xc1\x7d\xe0\xb1\xfd\xdd\xb2\x3d\x6c\x30\xb0\x30\xb7\x56\xe1\xb0\x20\xf4\x1f\xb7\x69\x49\x3d\x37\x8b\xe0\x6b\x58\xb1\xa6\xcd\x35\x94\x0d\x65\x1b\x5a\xa4\xbb\x1a\xf9\x08\x47\x83\xf4\xbf\x16\x3d\x9b\x41\x88\x2f\xe4\xbf\xbd\xf4\x79\x2f\x03\xf5\xa8\xdf\xbe\xea\x1f\x47\xd8\xc0\x25\x3b\xbb\xd7\xd8\x9f\xc5\x40\xd0\xf1\xb4\x8b\xc1\x19\x05\x1a\xd6\x58\x78\xd1\x5a\x31\x8b\xc0\x7b\x66\xdf\x25\x4d\xf9\x53\x04\x83\x28\xe9\x16\x29\x93\x3e\x06\x9b\x1e\x2a\x55\x2c\x37\xd1\x20\x5c\x75\x4c\x78\x5c\x7f\x33\x99\xd0\xbb\x5b\xb8\x7e\xfe\xec\xc5\x84\xbb\xd7\xf7\xe9\x6a\xaa\x0d\x32\x38\xf2\x62\xa0\xf6\xe2\x0f\x5e\xc2\xae\x73\xb6\x2a\x97\xec\xf8\xd8\xd0\x58\x62\x71\x6c\xf2\xcb\x9b\x15\x68\xec\x4e\x58\x75\x51\xd9\x82\x70\x25\x29\xd6\x32\x6a\x85\x16\xe1\xa7\xfb\xef\xac\xb9\x63\x3c\x84\x43\x95\x3e\x57\x2e\xd6\x7a\xb3\xd0\xd8\xc1\x7a\xfb\x47\xe8\x30\x0b\xd6\xa3\x5e\x8f\x47\xe2\xe6\x12\x4e\x7a\xc5\xbf\x34\xbb\xb8\x9c\x50\xb1\xec\x92\xea\x26\x39\x0b\xc2\xcf\xbe\xd1\xb1\xfe\x0d\x49\x6c\x58\x39\x39\x97\x6b\x9a\xfa\x69\xc2\x93\xf0\x63\x0f\xaa\xed\x0d\xd9\x70\xde\xe9\xa6\xd1\x43\x55\x09\x36\x84\x5f\x8b\xda\x50\xf5\xf7\xb9\x65\xea\x9e\x73\x57\x34\xb5\xf7\x10\x8a\xbb\x02\x8e\x7e\x96\x59\x4e\x18\x5a\x78\xed\xec\xce\x04\x7b\xc2\xc9\xa1\x31\xc5\x57\x6a\x5b\x08\xf6\xdf\xcc\xe5\x52\x54\x54\x09\xac\x23\xa1\x74\x30\xf1\x20\xc1\x34\xac\x37\xe6\xf4\x7b\x3b\x42\xc9\xef\x85\xe7\x6a\xd7\xd8\x13\x64\xa6\xad\x5c\x91\xbb\x43\x88\xd0\x7f\xf7\xc0\x52\x9b\x89\x1f\x99\x71\x84\x3d\x4e\x8a\xf3\xf6\x9c\x42\x48\x37\x0b\xcb\x99\x72\xa7\x83\x41\x41\x59\xbc\xfb\xa7\xdc\x12\x02\x2e\xf3\x71\xcf\x88\xc8\xa7\xf1\x32\x68\x23\xbb\xff\x54\x82\x12\x41\x97\x7b\x48\x71\x5b\x97\x3a\x61\x8f\xa6\x73\xc3\xc8\xae\x10\xc2\x9f\xf6\x72\x0f\x1e\x81\x6a\xc2\xc3\x89\x3e\x8b\xfe\x37\x22\x72\xbc\x2f\x1c\x5b\xb5\x83\xb0\x3e\x2f\x5f\xa0\x7c\xe3\x66\xb6\xf2\x3f\xd8\xe2\x64\xbb\x4d\x59\x69\x31\x41\xce\x5a\x89\xfb\xa0\xfe\x4d\x42\x56\x60\x57\x6c\xc8\x57\x5e\xc2\xc6\xee\x5f\xc2\x75\x01\xb9\x84\xa2\x1d\xb0\x28\xaf\x13\x26\xd4\x0f\x4e\xb0\x3b\x2f\x7f\x83\x10\x6f\x92\xea\xcc\xe3\x2f\x4b\xd8\x63\xb6\x30\x24\x6f\x74\x39\x61\xcf\x92\xc7\x1d\x85\x02\xaa\x84\x10\xdb\xe0\xc7\xb2\x56\xbf\x19\xd8\x6c\xcd\x4c\xf2\x5f\x38\xc2\xa0\x2e\x5c\x7e\x55\x5d\x95\x1f\x0b\xe9\x2f\x96\x66\x5a\x89\xf0\x13\x06\x17\xe3\xfa\xba\xcf\x8a\x84\x1d\x3a\x6a\x13\x72\xed\xdc\x09\x93\x83\x5b\x54\xf5\xaa\x5d\x09\x27\x5b\x06\xa5\xcc\x3d\x2c\x08\x36\x59\x27\xc7\xfc\xdc\x38\x08\x11\xed\xaf\xf7\x9e\xe1\x37\x22\xec\x09\x74\xe8\x7d\x4e\xb1\x04\x3d\x6f\x89\xe4\xc9\xc9\x01\x84\x33\x2b\xd4\xf4\x6e\x1e\x32\x21\x3c\x8f\xd0\x96\x79\xa5\x14\x4d\x78\x55\xf1\xb8\xde\x7f\x87\x1f\x21\x4b\x45\x20\xf3\xd2\x9f\xc5\x84\x6a\xb3\x0c\x8b\xdd\x43\x4b\x08\xed\x66\xe2\x86\x89\xfc\xeb\x08\x21\xca\x8c\x19\xff\x49\x71\xc2\x76\xb2\x0f\x9e\x77\x5e\x9c\xa0\xc7\x8f\x94\x29\x21\x23\x0c\xca\x4f\xd0\xce\x7b\x35\x82\x04\x56\x20\xf3\x62\x2d\x36\xb0\x81\xf9\x76\xf0\x7d\xf7\xef\x61\x06\x2d\x3b\xf3\xae\x3b\xbc\x9c\x4b\xa0\x8e\xd4\x6a\xf9\xc2\x2c\x42\x79\xa7\x8d\x7b\xd6\xad\x1c\x42\xe4\x8a\x0f\x76\x77\x6b\x73\x08\xc9\x6b\xaa\x34\x4a\xd7\x3b\xb0\x61\xdf\x6a\x8d\x01\xc7\xe9\xdf\x99\x71\x5c\x2d\xe2\x93\xf9\x15\xf8\xb2\x02\x1a\x86\x49\x1f\xe3\x60\x40\x30\xe4\x50\x3f\x95\xf3\xc0\x9f\xa0\xc4\xff\x9d\xb7\xca\x68\x98\xc1\x77\xae\xe6\xa7\xa2\x1e\x1c\x84\x77\x8d\x0b\x8f\x1b\xd5\xdc\x24\x48\xae\x78\x91\xfd\x33\x3c\x87\x30\x4b\x6f\x82\xc5\xbf\x32\x57\xe9\x7a\xfc\xd4\x0a\x3e\x42\xd8\xab\x5d\x2b\x7e\x4b\x4b\x12\xcc\x5f\x5e\xaf\xd2\xbe\xfc\x83\xc1\xfb\x9f\x3a\x61\x61\x0d\x52\x04\x95\x87\x2f\x63\x5d\x32\x66\xb2\x61\xf5\xda\x83\xee\x69\xe6\xcf\x2b\xf0\x45\xd1\xac\xfc\xf9\x81\xd3\x84\xee\x96\x1e\xc7\xe9\xef\x6d\x08\xb6\xce\x7c\xaf\xbf\xdf\x5c\x42\x58\x31\x62\xb5\xf5\xe1\x8d\x0e\x06\xf7\x9f\xc5\xbd\xee\x1c\x90\x23\x1c\x49\xe4\xcf\x4c\x74\x4b\x25\xdc\xe0\xe0\x2c\xe1\x1b\x59\x47\x58\x5c\xb6\xd8\xbc\xc7\x5c\x96\x60\xcf\xff\xd3\xb2\xf9\xef\x97\xfb\x7f\xa0\xa2\xdb\xe8\xb1\xa8\xfa\x33\x1b\xda\xd5\x66\xa6\xe8\x96\xb7\x54\x80\xd3\xaf\x64\xc2\x26\x7d\x61\xc2\xbe\xae\xc6\x99\x43\xbd\xbb\xd8\xd0\x1c\x13\x65\xb8\x64\xae\x10\x21\x62\x3d\xbf\x81\x57\xfb\x77\x06\x9c\x37\xe7\x1c\x99\x5d\x3e\x95\x70\xb4\x7c\x24\xf5\xf0\x87\x6a\xc2\xd1\xc2\xf8\x1f\x4c\x6f\x35\xa1\x83\xa7\xb5\x73\x41\x54\x35\x41\xcd\x83\xf7\x84\xfe\xdf\x22\x62\x94\x38\x7f\x8e\x8c\x2b\x61\x43\x7e\x7a\xd7\xe8\x6a\x3f\x42\xf0\x1b\xdb\xb4\x05\x99\xfb\x09\x54\x20\xa6\xf5\xa0\xd8\x9e\xd0\x33\xe3\x8f\xd5\x89\xe3\x3e\x84\x98\x37\xc7\x32\xb8\x66\x49\x13\x2c\xdf\xec\xed\x96\x18\x13\x65\xc7\xb1\x82\xa5\x56\xc7\x96\xb1\x61\x5e\xba\xe1\xd4\x21\xb1\x20\x16\xce\xd4\x24\xb8\xfa\x7f\x7e\x49\x48\xbc\xe2\xa6\x6f\x32\xd8\x42\x50\x96\x6b\xf4\x0f\x90\xee\x22\x6c\xff\x2e\x7e\xbe\x5d\x39\x9b\x60\xc8\x69\x3a\x56\x17\x5a\x45\x18\xba\x60\x1a\x64\x27\xde\xc0\x42\xe3\x9b\xcd\x67\xf6\x19\x37\x10\x38\x8d\x47\xf4\xc4\xfb\x26\x13\xac\x3f\x55\x6d\x29\xf8\xfd\x90\x85\x67\x8d\xda\x8b\x9d\x22\xaf\x10\xcc\x2e\x4c\xba\x5b\x3d\x58\x4d\xb8\xdd\x75\x48\x75\xd2\xf0\x77\xc2\x53\x55\xa7\xfd\x0f\x8f\x27\x10\x2a\x4c\xbf\x68\xe6\xde\x09\x25\xac\x0c\x5d\xcb\xbb\x61\x55\x2e\x0b\xe2\xa6\x6a\x06\x53\x33\xf6\x13\xd6\x06\x32\x1c\xf5\x91\xf9\x2c\x9c\xfb\xd2\xb7\xe9\xdd\xdc\x6a\xc2\xfe\x4d\xfd\x32\xb7\x3f\x55\xb3\xc0\x97\x76\xa9\xbb\x2c\xb2\x9a\xa0\xfb\x65\x93\xd8\x3c\x2d\x1b\x82\xf1\xe7\xdc\xe8\xbc\x8d\x86\x84\xd6\x95\x4f\x5c\x1a\x12\x7a\x19\x18\x47\xc7\xfb\x0b\x88\x19\x10\x6a\x42\xdf\xaf\xeb\xb9\xc1\x4b\xa8\xb2\x98\x7d\xfc\x98\x8d\x36\xa1\xf0\x95\x9d\xf3\xb0\xe8\x30\x03\x97\xd8\xa1\xe0\x0e\x43\x2e\xc2\x05\x87\xb2\xbd\x01\x22\x03\x0c\xf6\x59\xa9\x15\xcd\x7f\xac\x46\x98\x2f\x69\x74\x37\xf5\x8b\x12\xe1\xc7\x49\xcb\xd7\xef\x56\xf0\x11\x92\x05\xaa\xe5\x94\x33\x7a\x99\x71\x98\x8a\x4f\xb8\xff\x7d\xc2\x42\x16\x6a\xc2\xdf\x1c\x49\x91\x8d\x22\x44\x9e\xff\x51\x6f\x94\xdd\x46\x70\xaa\x70\xd7\x7c\x19\x7b\x93\xf0\xe1\x71\x41\x9c\x58\x4e\x21\xc1\x6a\xfd\xc5\xa7\x2b\xd3\xf2\x08\xa3\xf1\xb3\x22\x56\x58\x7f\x64\xc6\xa1\xfa\x40\x22\x3c\xa5\x2b\x94\xc6\xb1\x66\xfd\xb9\x87\x43\xb6\x22\x04\x3d\xb5\x78\x0d\x83\x0c\x3e\x82\x90\x2f\x67\x60\xf0\x0e\x33\xc2\xe3\xbb\x92\xdf\xe2\x2d\x46\x19\x4c\x5c\x21\x56\xb8\xf4\x98\x2c\x61\x44\xaf\xee\x53\x93\xed\x6d\x82\x79\xd9\x53\xc9\xee\x32\x09\x42\xe4\x62\x9f\x1a\x07\x9d\x22\x82\x46\x93\xe4\x57\x4e\xe6\x21\xe1\xfc\x87\x55\xed\x37\x02\x76\x10\x36\x9c\xd3\x99\xde\xa5\x5c\x44\x58\x94\x96\xd4\x16\xc7\x23\x4e\x70\x75\xbe\x75\xd6\xf8\x86\x00\x61\xb2\xea\x62\xbd\xb3\x8f\xc7\x18\xdc\x3c\x51\xe5\xd5\x9b\xfb\x86\xc1\xe6\x29\xac\x13\x32\x35\xfa\x84\x60\x3e\x9b\xc5\x9e\x2f\x4b\x09\xfc\x2f\xbc\x56\x1a\xc7\xf3\x11\xde\x9c\xdc\xbb\x6d\x67\xcf\x03\x42\xf7\x46\xc7\x7c\xa5\x79\x21\x84\x38\x3b\xfd\xc8\x88\xee\x10\x42\x97\x69\xe4\xe7\x52\x8f\x10\xc2\x1b\x01\xab\xdb\xef\x82\xb6\xb0\xc6\x27\xf5\xf7\x61\xc2\xaa\x23\xe1\x84\xd1\xa0\xb8\x51\xef\x28\x6f\x82\x29\xab\x94\xaf\xba\x55\x96\x0d\x09\xcb\xe7\xbd\x3a\x8e\xe9\x6c\xd8\x3b\x58\x25\x98\xb8\xe2\x1c\x0b\x8b\xd3\x7d\x96\x17\x19\x7e\x64\xb0\xe6\x83\xc8\x0a\xdf\x2b\xa1\x04\x7f\xab\xc6\x47\xb3\x3a\x55\x09\xe5\xd2\x22\xc1\x65\xd9\x13\x08\xbd\x3a\x79\xee\x6f\xe5\x0b\x19\x48\x0f\xf4\x56\xec\xbf\x14\x45\xf0\x8c\xd2\x7e\xbc\x3f\x72\x05\x61\xd6\xc3\x4e\xd9\x79\x07\x4c\x09\x6a\x5b\xf3\x24\xaa\xe2\xcd\x09\x5c\x1c\xd1\xae\x92\x2b\xdb\x2a\x70\x4b\xd8\xa9\x68\x20\x60\x09\x8d\xc3\x76\xcf\xb6\x9e\xba\xe5\xfa\x04\xee\xa5\xdd\xef\x57\x6e\xb0\x20\xd4\xcf\x94\x8d\x13\xd4\xfc\xc5\xe0\xe5\x69\xb3\xa8\x92\x07\x7c\xf4\x1f\x08\xe1\xd5\xe8\xfd\xb3\xf2\x07\x03\x01\x1d\xdd\xd5\x05\xe7\x18\x82\x45\x4d\xb0\x57\xc5\xd8\x3a\x42\x74\xcf\xbe\x77\x1c\x11\xf2\x84\xfd\x9e\x6b\xaf\x7e\xe7\x99\x43\x58\x59\x1d\xdc\x7c\x61\x0f\x27\x61\xea\x70\x88\x0a\x6b\xe9\x18\x83\xb5\xfe\xa6\x4b\x6e\x1c\x89\x27\x5c\x93\x50\xce\xe6\xb1\xba\x4a\x70\xe8\x4f\xdb\x68\x5f\x77\x96\x0d\x85\x21\x1a\xf3\xf7\xa5\x5c\x26\x4c\xaf\xbd\x31\x1a\x96\x30\xc4\x20\x76\x6d\xc2\xc7\x31\x6f\x0e\x1a\x87\xf1\x37\xcd\x0d\x97\x8f\xf5\x31\x28\xbf\x94\x90\xd7\xc7\xdd\x4c\xf0\x7c\xa9\x3b\xb6\x6d\x7d\x0c\xa1\xce\x54\xf5\x61\x9a\xfa\x75\x16\x32\x22\xdf\x2f\xb4\xbe\x9b\x47\xe8\xbb\xb4\xfb\x5d\xd1\xc1\x87\x84\x79\x6f\x58\xde\xbb\xe2\x9e\x11\x5e\x8d\x36\x9c\x5c\x23\x93\x44\x58\xe2\xe0\x54\xd0\x9d\xb3\x81\x50\xb9\x36\xf1\x14\x9f\x5d\x16\x0b\xdc\x8b\xb9\x3f\x9f\xf3\x70\x25\xac\x2c\xf7\x3e\x3c\x51\x29\x80\x90\x3b\x47\xff\xe7\x94\xc5\x37\x09\x5d\x0a\xe1\xc3\x7b\x5e\xf3\x13\x86\x3f\x27\x9f\x96\x3c\x73\x9a\xe0\xca\x93\x28\x5b\xa8\x50\x44\x58\x59\x13\xde\x3e\xc0\x18\x10\x62\x39\x96\x0a\xe9\xec\x6b\x62\xf0\xdc\xe0\x60\x8e\x4c\x19\x3f\x8d\x63\x5e\xba\x0e\x84\x6e\xa9\x13\x2e\x8c\xed\xed\xbc\x10\xfd\x81\x81\x66\x9b\x70\x53\xa6\xfc\x5c\x1a\x47\xdb\xdb\x45\xd9\xcb\xc6\xf2\x09\xc7\x95\xdb\xc3\x03\xe4\xe4\x09\x96\xef\xab\xf7\x6c\x0b\x0e\x26\xc4\x3d\x6f\xad\xb1\xbc\x7d\x9e\x90\xee\x75\xf7\xc8\xe5\x09\xa6\x84\xf3\xde\xa9\x4d\xd2\x87\xdd\x58\xb0\x73\x97\xe8\xdb\x21\xee\x42\xb8\x3b\xba\xa4\x73\xf6\xae\x09\x04\x85\x41\xf3\x96\x8e\x38\x61\xc2\xf9\x86\x78\x9e\xe5\x2f\x5b\x98\x71\x64\x66\xf5\x3d\x3a\xa0\x62\x4c\xe3\x90\x0d\x3f\xf5\xb4\xfe\x51\x33\x83\x9e\xe5\x16\x2b\xf4\x1d\x27\x12\x3e\x1c\xb8\x53\xe1\xe5\x73\x95\x50\xd3\xc2\xfd\xc7\x62\x42\x0d\xa1\xc0\xa3\x3f\xef\x59\xd7\x06\xc2\x9f\xb6\xf9\x1c\xcf\x62\xe7\x13\xb4\xef\xb6\xdf\x74\x9d\x25\x4b\x90\x5e\xa4\xb9\x51\xc0\x50\x8c\xc0\x88\xc9\x86\x7c\x60\x16\x12\x62\x9e\xdb\x48\xc4\xc9\x27\x11\x0e\xc8\x7d\x0a\x9e\xb7\xa3\x84\xc0\x1d\x78\xe9\xbd\xe9\x02\x7b\x42\xa2\xd4\x19\x8e\x3a\x8f\x5b\x84\x2d\x87\x4f\x8b\xdd\xfb\x8b\x6b\x87\x1b\x3c\x73\xef\x1e\x26\x64\xfe\x6a\x18\xb8\xb2\x52\x90\x30\x70\x6c\xad\xe5\xfa\xee\x59\x84\x6d\xac\xcd\x1d\xeb\xd7\xad\x27\xf0\x09\xbf\xdb\x53\x3a\x70\x8c\xe0\x72\x74\xff\x16\xdd\x12\x1b\x42\xd7\xdb\x27\xf1\x73\x12\x85\x09\xbb\x7f\xf8\xac\xd6\x9f\x59\x48\xc8\xba\x2e\x70\xf6\x54\x94\x3f\xe1\xf7\x54\xb3\xee\xcd\x12\xe1\x6c\x70\xbb\x95\xd5\x91\x23\x1a\x4e\xb8\x34\x78\x78\x76\x9c\x64\x38\xc1\x77\x9b\x8b\xe4\x5b\x27\x33\x82\x44\xe2\x57\xad\x82\x1b\x62\x04\xde\xcf\x36\x3a\xf6\x45\x82\x84\x9b\xca\xf2\x35\xd3\xa7\x1b\x13\xd4\xef\x6f\xb9\x20\x33\xe0\xcb\xc2\x53\xa3\x5f\xca\x62\x5f\x2a\x09\xcb\xce\x4e\x35\xfe\x07\xf7\xe5\xbd\x42\x7a\xed\x95\x84\x05\x37\x63\x18\x8e\x9f\x95\x04\xdf\x19\xd1\xa7\xe3\x55\xa5\x08\xbb\xe3\xfe\x98\x2d\xba\x70\x95\x30\xab\xee\xc3\xe6\x9c\x43\x15\x04\xd5\x30\xef\xdb\x9a\xe7\x8c\x08\xfc\x3b\xb9\x14\x92\xa5\xf4\x09\xf3\xb2\xdf\x84\xbd\x3c\x69\x41\xf0\x39\xc2\xf1\x44\x59\x99\x9f\x0d\xea\x52\x69\xcd\xaf\x5d\x3e\x30\x98\x5e\xbe\x36\x4c\x38\x71\x12\xe1\xf4\x4a\xb9\x99\xf3\xf6\x4a\x11\xc6\xf4\x56\xde\xe0\xde\xa4\x4c\x48\x1f\xd4\x8d\x7f\x61\xac\x4e\xb8\x37\xdd\x43\xbf\xcb\xfb\x26\xe1\xac\xc2\x5d\x53\x41\x13\x03\x16\xa6\x6e\x6d\x3a\xca\xad\xef\xca\x82\xa4\xb9\x78\xe1\x90\x66\x2c\x0b\x69\x3c\x2b\x5b\x03\x2b\x9b\x2a\x10\xa2\x76\xdf\x56\xb8\x33\x87\x85\xce\xcd\xaf\x5d\x7d\x17\x16\x10\x1a\xb6\x36\x71\x9d\xbf\x13\x48\x10\x88\x7c\xc7\xfa\x1e\x50\x48\x98\x20\x55\x5b\xf2\x66\xd6\x47\x06\x1b\xbc\x4d\x37\x4b\xc8\xf7\x30\xb0\xe8\x57\xee\x49\x2d\x11\x25\xe4\x4e\x70\x5b\xbe\x2b\xe1\x09\x83\x92\x5b\x9b\x76\xf5\xb8\x1c\x20\x54\xba\xe7\x6c\xfa\x94\xc5\x4f\x30\xd4\x56\x88\x3a\xe0\x32\xc4\xa0\x34\xe6\xcc\xba\x0f\x7c\x35\x6c\xf0\x8a\x79\x1b\xdd\x30\xa3\x93\x81\x41\x86\xb1\xec\x2f\x3f\x59\x42\xee\xdb\xee\xc8\x13\xa2\xef\x98\x71\x28\x0b\xeb\xc8\x8d\x9a\xf0\xd0\x38\xce\x3a\x69\xbe\xbe\x7f\x48\x8e\xf0\x68\xff\x3d\xad\x54\xe1\x18\x82\x93\x99\x53\xb5\xcc\x97\x62\x82\xcf\x94\xf4\xd2\xe7\xca\xdf\x19\x34\xf9\xdb\x5a\x5f\xfc\x2c\x4c\xe3\x08\x34\xd0\xe0\x9f\xd6\x37\xc8\xe0\x78\x07\x93\x2c\x2f\x2a\x42\x68\xf6\x12\x97\xde\xa0\xa7\xcb\x86\xfe\xdb\x6f\x67\xa7\x18\x83\x81\x5b\x4a\xf3\xb5\x95\xc1\xd2\x84\xf9\xe2\x01\xda\xae\x31\xda\x6c\x98\xe9\x76\x51\x37\x51\x20\x8c\x0d\x6f\x57\x6f\x7f\x50\x31\xe8\xf0\x9f\x70\x5a\xff\xf3\xc6\xdf\xe7\x9d\xf9\xad\x1c\xbc\x27\x3f\x79\xb0\xd0\x5a\x33\xf7\x15\x4b\x20\x9f\xa0\x1d\xb2\xc2\x9e\xe7\xf2\x04\xc2\xe1\xb0\xf6\xa4\xf9\x07\x36\x11\xb6\xc8\x75\x5d\xe0\x3c\x53\x46\xf0\xe1\xf9\xdc\x3d\x2d\xbe\xad\x02\x51\xd9\xd6\x73\x0b\x75\xd6\xd2\x38\xce\x4f\xf5\xcd\xb1\x34\x8c\x67\x70\x66\xa1\x4e\x9c\x2f\xf9\x11\x02\x04\x62\xc2\xe3\x8c\x52\x08\x9d\x8f\xaa\x6b\xcc\xfb\xee\xb1\x20\xf0\x2d\x8e\x95\xbf\x3a\x8b\xd0\x36\xd1\x83\x59\x50\x16\x4a\xd0\xe4\x3e\xb4\xea\xe0\xb3\x3c\x82\x98\xfe\x83\xbb\x9e\xde\x7f\x3f\xd6\xed\x35\xe6\x27\x46\xa6\xb1\xc1\xd6\x5b\xfc\x58\xf7\xad\x89\x6c\x08\x1f\x09\x5e\xdc\xbb\xe1\x27\x33\x8e\x5b\xcf\xcc\x1d\x7c\x7f\x2f\x22\x3c\xf5\xcc\x7b\x16\x70\x79\x01\x41\xd1\x56\x32\xc2\x37\xaf\x9c\x10\xe3\x9c\x6e\x2c\xb0\xa3\x9c\x85\xf3\x65\xde\xd2\x37\xa6\x9f\x21\xf8\x5c\x3c\x2c\x38\xe3\xa5\x18\xa1\x4b\x7a\xdf\x05\x93\xc7\x5b\x09\x0f\x7d\x9d\x1a\x9e\xfe\x2a\x66\x21\x59\xf3\x1b\x57\xc0\x61\x23\x42\x4f\xf2\x44\xc8\x1d\xd5\x26\x54\x58\x5d\x61\xa2\x27\xbe\x20\xac\xab\x1e\xda\x2c\x96\x62\x48\xf0\xe2\x0d\x79\xeb\xca\x95\x4d\x38\x20\x2f\x74\x6b\xca\xab\x3a\xb6\x72\xfd\xdb\xd7\x13\x9e\xb5\xfa\x04\x11\x4d\xcb\x3e\xca\x4a\x27\xd8\x2f\x6a\x6c\xd7\x14\xf2\x67\xc3\x12\xe9\x39\x2d\x9f\x6e\x87\x12\xd6\x4a\xb6\xc8\x19\xdf\xbb\x4b\x68\x8f\x6f\x7f\x6c\x17\x5d\x49\x38\xb2\xa1\xee\xd6\x3f\x44\xf8\x1c\xf2\xdc\x7f\xbf\x92\x20\x14\xda\xa2\x39\xf8\xb4\x92\x10\x39\x59\xd1\xf0\x4e\x64\x25\x41\x6c\xe8\x9a\xc1\x01\x56\x26\xdb\x19\xaf\x73\x9e\x2b\xfb\xa3\x34\x08\x92\x39\x9a\x91\x9b\xf7\xf4\x12\x36\xa6\x67\xaa\xfa\x86\x0c\x10\x0a\x5f\x6f\xbe\xf4\x44\x7f\x80\x50\xfe\xf3\xd8\x40\x31\x47\x24\xa1\x70\xfa\x89\xa4\x33\xae\xbd\x84\x5b\xaf\x4b\x4e\x4c\x90\xa9\x24\x68\x49\x88\x84\xd2\xd2\x74\x82\xa5\xb4\xa1\xf3\xfa\x40\x6f\x82\x59\xbd\x62\xc0\x6f\x9f\x5c\x16\x1a\x57\xca\xb9\x97\x6d\xb7\x24\xa4\x34\xcc\x74\x75\x8d\xe0\x25\x58\x3a\xec\xfa\x14\xb2\x59\x9d\xc0\x8c\xf2\xa6\xab\x39\x24\x13\xdc\x72\x9d\xc2\xd7\x6f\xcf\x27\x44\xdd\x11\x7c\x3d\xab\xbe\x9b\x30\x59\xe7\xd8\x80\x7e\x55\x21\xc1\x3a\x52\x7e\xdb\x64\x5e\x5f\x82\x58\xdd\xb2\xe6\x5f\x8a\xc7\x09\x07\xd6\xae\x6c\x2c\x5a\xd2\x57\x81\x67\xef\x3a\x82\xd2\x76\xfb\xb1\xd0\x65\x1f\x62\xf1\xfc\xc1\x2d\x16\xc2\xd2\xf5\x1a\x9b\xa7\x1f\x27\x78\x5b\xf0\xde\x4c\x7c\x17\x48\x38\xb7\xc2\xf0\xb3\xec\xc9\x28\x02\xff\x1b\x51\xfb\xd0\x64\xf6\x89\xe1\x54\x9c\xea\x2a\xea\x4b\x38\xa2\x73\xf7\x7c\x8c\x63\x20\xc1\x78\xaa\x78\x7a\x5a\x52\x00\x5b\xd9\xf4\x20\xb6\x7e\xca\xa6\xab\x04\xe5\xdd\x37\xf5\xa5\x38\xaf\x12\x7e\xfe\x6c\x77\xfb\x07\x95\x0b\x5f\x84\xfe\x4d\x5a\x89\x1d\x9b\x24\xff\x16\xf9\xd6\xca\x07\x1b\xff\x16\x09\xdf\x4f\x3b\xdf\x6f\x4e\x60\x83\x64\xff\x3b\x91\x92\xac\x78\xc2\xb7\x13\xce\x35\xf9\x66\xec\x93\x94\xab\xd7\xb2\xa9\x8a\x86\x84\x52\x83\x4f\xda\x36\xb5\x6b\x08\xee\xdb\x1b\x8f\x17\x4c\x94\x23\xf8\xbe\x5e\x2d\x18\xff\x6c\x3a\xa1\x77\xf7\xd8\x85\xc4\xaa\x4a\x16\x56\x1e\xf0\xd4\xfd\x57\xe6\x3d\xae\x70\x1b\x71\x9c\x4d\x90\xbd\xf3\x87\x5b\xc8\x6d\x94\xc1\xed\x35\x66\x2e\x7f\xdc\xff\x30\x60\xa4\x25\x4d\x5a\xf2\x84\x09\x07\xbc\xbd\x96\x9d\x13\x91\x23\x1c\x5a\xa5\xb7\x6d\x85\x4c\x2d\x61\xd5\xe3\x75\x7e\x47\x79\x35\x08\xce\xe5\xa1\x5c\x7d\xc3\xbf\x19\xdc\xdf\x22\xb9\x5b\x2c\x54\x85\xe0\x54\xf7\x56\xf7\x94\xb8\x25\x81\x33\xf5\x99\xe9\xf7\xa3\x95\x04\x97\xfb\xb1\x81\x1c\xb7\x59\x84\xf6\x0f\xac\x7e\x56\x7d\x2e\x61\xfd\x4c\xa5\xd2\xc1\xbf\x93\x84\xf2\x8a\xbd\xf9\xae\x01\x84\x74\xad\xd9\x39\x35\x6f\x97\x13\x74\x5e\xca\x48\x29\x1d\xa9\x61\xc3\x23\xb9\x9f\xd3\xee\xc7\x94\x13\x96\xd5\x70\x1e\xea\xbe\x54\xca\x1a\x9f\x84\xb2\x56\x59\x25\x9e\xc8\xa2\xe1\xdb\x35\x1e\x7d\x53\x6a\x09\xdd\x61\x9e\xa1\x15\x6b\x32\xc6\x43\xc9\x27\x49\xee\x7a\xf6\xb0\x26\x23\xd6\xd5\x61\xf4\x3c\x61\xf1\xa3\xd1\xf3\x5b\xf8\x23\x08\xd3\x87\xe6\xb6\x75\x71\x1b\x12\x96\xf0\xb4\x6c\x08\xb1\xae\x62\x83\x6e\xfb\x91\x9f\xed\x1a\x55\x84\x62\xb5\xba\x0f\x8a\xe2\x55\x84\xdd\x87\xaf\x2a\xfe\x9b\x24\x79\x02\x26\xe8\xbe\x08\x21\x24\x9c\x0c\xfb\xb3\xfe\x79\x08\xe1\xe9\xe1\xe0\xa5\xce\xbc\x3b\xd8\x4a\xb3\x97\xc1\x2c\xae\xf2\xa3\x6c\x25\xb0\xd8\x55\x5b\xb6\x37\x99\xd0\x95\x26\x58\x18\xcc\x1b\x4b\x48\xa9\x5b\x91\x6e\xc7\x5d\x4b\x60\xac\x42\xe9\xf4\xff\x2a\xce\x52\xe5\x87\xed\x15\x2f\x11\x34\x47\xe7\xb5\x9f\x96\x70\x25\x2c\x78\x7b\xfe\xa3\xd5\x99\x42\xc2\x47\x99\x47\x66\x1f\xa6\xab\xb1\x41\xa5\x26\xb4\x23\x99\xeb\x29\x83\x85\x3f\xd5\x22\x3d\xff\x7f\x7c\xdc\x69\x50\x8e\xff\xff\xff\x7f\x2d\x5a\x94\xb4\x67\xd7\x2e\x44\x3b\x89\x8e\x27\x49\x8b\x88\x52\x91\x2c\x45\x14\xd9\xd2\x42\xd2\xbe\x21\x2d\x4a\x22\xd1\xa2\x14\x4a\x4a\x45\xa9\xce\x56\x2d\xa8\x14\xa1\x90\xb2\x15\x51\x4a\x79\x84\xf8\x4f\x66\xfe\xef\xce\xef\xfc\xcc\xe7\x52\xb7\xb9\x3f\x8f\xe9\xc2\xd9\x31\xaf\xa5\x99\xe2\x31\x22\xd4\xc8\xbe\xad\xfa\x60\xb6\x90\x0d\xfd\x37\xf7\x3c\x1e\x38\x77\x9c\x50\xb7\x54\x8e\xe7\x6a\x45\x1c\x83\xf7\x77\x75\xf7\x27\xcf\xab\x24\xe8\xde\x0f\x5a\xfc\x21\x99\x45\x88\x55\x93\xb9\x35\x3f\x42\x8e\xb0\xcb\xfd\xfc\x09\x01\xb3\x9f\x0c\x24\xa7\x1e\xdd\x61\xdc\x46\x84\x5a\x8b\x92\x66\x85\x8b\x5f\x18\xc8\x71\xda\x67\x7f\x89\xf4\x65\x61\xcb\x1a\xe1\x8e\xa5\xcb\x78\x09\xac\x94\xc8\x0e\xa6\x5f\x9f\x0d\x5d\x6b\x06\xe2\x2a\x9b\x23\x19\x24\xbf\xb8\xb5\xdc\x21\x2b\x8e\xd0\x23\xfc\xf2\x60\xe2\x83\xb7\x84\xd3\x0a\x86\x22\x1a\x6f\xea\x09\xeb\x43\x54\xb4\x5a\xf4\x35\x08\x9f\x45\xec\xde\xfe\x92\x8c\x21\x44\x9f\x38\x2d\x5f\x1f\x29\x4e\x68\xe7\xf7\xae\xd1\x8d\xe4\x26\x4c\xcc\x08\xf1\x88\x8e\x91\x24\x70\x14\x6d\x2d\xbe\x5d\x9b\x42\x58\x34\x5f\x33\xe2\x2f\xdc\x5a\xe6\x1d\x4c\x9b\x1d\x47\x08\x1b\x3a\xfa\xa2\xca\x34\x8c\x0d\x55\xdc\xfd\xfc\x75\x4f\xae\x13\x0e\x0f\x3a\x4b\x39\xed\x11\x20\xa4\x39\xab\xea\xac\xcd\x1a\x61\x70\xe2\x8b\x22\x67\x7b\x4e\x36\x61\xae\x65\x94\xe7\xc1\xfb\x39\x84\xdd\x2f\x27\x05\xbd\xff\x1c\x36\x7a\x64\x5a\x53\xe5\x71\xf2\x16\xc1\x3a\x6a\x78\xe5\xe2\x3d\xd7\x08\x1b\x2a\xb7\xbf\xf8\x5b\xda\x1a\xaa\x05\xa3\x0c\x73\x08\xcb\xa4\x5e\xca\xfd\xc5\x7f\xe5\x5b\xf8\x0c\xa7\x15\xa3\x5b\xc3\x7f\x60\x74\x0f\x1e\x6a\x78\xfe\xa0\x04\xaf\xae\x5a\xdc\x14\x38\x64\x4d\x38\x6c\xf4\x75\xb8\xe1\xc0\x66\x1a\x2b\x49\xe6\x47\x04\xf6\x85\x72\xb0\x61\x43\xff\xa4\x15\x6a\x6f\xb6\x13\x06\xa4\x0f\x87\x4e\xdc\x9e\x42\xf0\xf5\x71\x59\xdc\x2c\xf6\x96\x19\xc3\x77\x69\x93\xd7\x69\x12\x6d\x0c\x34\x48\xa3\x7b\xe5\x22\x35\xc2\x8b\x2c\x9f\x39\x5c\xe9\x13\x08\xf6\xc9\x47\x39\x8f\x06\x71\x10\xaa\xfc\x57\xc6\x8e\xe7\xdb\x44\xd0\xe8\x0d\x8c\x39\xf7\xd0\x9c\x81\xd3\xaa\x98\xfa\xcd\x55\x81\x34\x86\xb4\xef\x0d\x2f\x13\x04\x67\x13\xaa\xc4\xdd\x05\xce\x37\x0e\x30\xd8\xa4\x1a\xe1\xb5\x7c\x77\x1d\x0b\xd7\xfc\xbf\xf7\xc6\xf3\x35\x13\x26\x68\x9d\xbd\x35\xe9\xde\x3d\x42\xcd\xb7\x22\xef\x89\xcf\x4b\x08\xc7\xa7\x5d\xee\xb3\x17\xbe\x4f\x50\xe3\xaa\x54\x3a\xa5\xa7\x43\x68\xdc\xf2\x52\x4b\x74\x58\x8b\x20\x7b\x25\xf1\xcf\xac\x6c\x3d\x36\x8c\x1f\x88\x48\x8e\x51\x7f\x56\x82\x09\xb2\x85\x9f\x77\x4d\xab\x21\x2c\xa9\xf3\x16\x71\x13\x99\x47\xc8\x68\x15\x3f\xeb\xe9\xae\x4c\x38\xe4\xee\x67\xb7\xd8\x40\x64\x74\x2b\x0f\xd9\xe2\xbb\x7a\x12\x21\x5b\x30\xfa\xc7\x63\xee\xd3\x34\xec\x7c\xdd\x57\xa2\xe1\x33\x83\x27\xc2\x5f\x6a\xee\xec\x34\xa4\x31\x18\x72\x8a\x45\x6f\x8c\x7e\xc9\x40\xd3\xdc\x78\x5a\x81\x5e\x36\x61\xd2\xf2\x6b\xf7\xb9\x9f\x4c\x27\x48\xb5\x68\xe8\x3c\x28\x5a\x42\x30\x69\xb7\x29\x57\x1d\xf8\xc9\xa0\xc9\xb5\x63\x22\x5f\x84\x3a\x21\x73\xca\x4c\xaf\x6b\x53\x7e\x30\xd8\x6e\x38\x9e\x7b\x93\xb9\x1e\xa1\xcb\xe6\xf8\x48\xe3\xa6\xbb\xac\xb1\xd2\x71\xeb\xcc\xdb\xf7\x25\x52\x84\x87\xfc\x9f\xc7\x07\xf3\xe7\x31\xf0\x93\x38\xcf\x1b\x27\xb3\x96\x70\xf5\xf7\x20\x13\x68\x43\x04\x89\x8e\xd5\x4f\x17\x59\x0d\x33\x60\xa9\x7c\xaf\x10\xe8\x5c\x4d\x68\x6d\xbf\x3e\xf4\x7b\xe6\xac\x7f\x61\xdf\xad\x2e\xb3\xb6\x08\x30\xd0\x3c\x2d\xe4\x3b\xc1\xf3\x30\xe1\x74\x60\x42\xff\x63\x3f\x43\xc2\x9f\xc5\xa6\x79\xfb\x2e\x37\x32\xd0\xd1\xfa\xa9\xfe\x72\x8e\x16\x61\x92\xbf\x83\xb2\xf6\x2c\x57\xc2\x33\x25\xd1\x9e\xae\x48\x5f\x82\x7f\x41\x8a\x99\xcd\x8c\x69\x04\x8b\x2b\x1a\xc6\x75\xe2\xe2\x04\xa3\xd2\xe4\x5c\xbb\x30\x79\xc2\x84\x80\xd2\x57\x92\x53\x35\x09\x6f\x1a\x7e\x3f\xda\xf9\xda\x8c\x20\x55\x2a\xb3\x32\x3e\x85\x9f\xa0\xf5\x80\x97\x67\xde\xb9\xa6\x12\x14\x5b\xcc\x56\x7d\x3b\x67\x2e\x8d\xc1\x63\xf6\xf0\xa6\x9c\xd6\x39\x84\xb8\xf0\xd3\x52\xca\xb9\xa3\x67\x9f\xf5\x97\xe5\xb9\xf8\x73\x08\x51\x1f\x65\x7c\x26\xad\x8a\x25\xfc\xba\x74\xa4\x4f\x5f\xac\x8b\x81\xd7\xc1\x95\x37\xd7\xf6\xf2\xd1\xff\x42\xc1\xb6\x1a\x8f\xa6\x9c\x41\x06\x36\xe7\xa6\x94\x8e\x33\x9f\x4a\x98\xb3\xf7\x46\x92\xb3\xc2\x66\x42\xcc\xc5\x3e\xef\xf7\x2b\xd2\x09\x22\x1f\x27\x6e\xeb\x3d\xb5\x8c\x05\xb1\xe3\xdb\x9e\x7d\xfc\xfa\x91\x41\xd4\x86\x75\x61\x2d\xc3\x9a\x84\x3a\xe9\x36\xbb\x6b\x3b\xe6\x11\x6c\x7a\x06\xb4\x37\x44\x04\x12\x2e\x39\x18\xec\x53\xe3\xb2\x61\x43\xfe\xee\xa6\xd0\x58\x0f\x11\xc2\xa1\x95\x35\xdd\x85\x45\x65\x84\xd8\xf7\xfc\x37\x1f\x55\x9f\x20\x7c\x79\xfa\x3d\xcb\xf2\xf1\x42\x42\xd5\x31\x5f\xee\x09\x02\x2e\x6c\x98\xf4\x6c\x72\xc5\x92\x15\xc6\x04\xff\x50\xe9\x73\xa9\xd3\x1a\x19\x5c\x4b\xe1\xbd\xd5\x2b\xcd\x45\x18\x6e\xf9\x25\xd6\x36\x3f\x95\x0d\x8d\x7f\x0a\xbf\x1d\x2e\x88\x20\x90\xd7\xd4\x99\xf5\x5f\x66\x12\x42\x95\xa2\xb9\xf2\xdd\x53\x08\x0d\xab\x42\xd3\xef\x9d\x19\x61\xc0\x5f\x9a\xa4\x77\xe4\xb5\x38\xc1\x82\xc7\xfe\xc8\xeb\x70\x75\x82\xde\x32\x01\x73\x08\xaf\xa6\xb1\xd1\x93\xb4\x03\x3b\xee\x4f\xad\x63\x60\xa9\xa1\x2e\x25\x38\xe9\x28\x41\x24\x5c\xed\xe4\xc6\xab\x27\x09\x2d\x9e\x41\xca\xb6\x5a\x62\x04\x3d\x8d\x56\xd3\x98\x55\x09\x84\xa7\x1f\x1c\xe5\x5c\x57\x1a\x10\x26\x36\x2b\x65\x07\x26\xba\xb0\x81\x67\x97\x61\xb2\xb4\xa5\x01\x81\x69\x4d\xaf\xd7\xd2\x94\x22\xf0\x89\x0e\x1d\x99\x30\x95\x97\x0d\x4b\x63\x0a\x8f\x55\x4f\xef\x2a\x81\xd9\x89\xc5\xb7\xec\x3f\x75\x33\x68\x99\xaa\xf6\xa4\xe4\xcb\x07\x06\xb5\xad\xaa\xb3\xe4\xce\x8b\xd0\x18\x16\x5f\x36\x99\x5c\x50\xf5\x9d\x81\x51\xb0\x25\x79\xdb\xe8\x11\xac\x6c\x02\x1a\x66\x9f\x3f\xcd\x42\xaa\x41\x97\xb1\xef\x0c\x1f\x82\x74\x65\xce\x9f\x29\x11\x7c\x84\x85\x95\xeb\x0f\xe9\xcb\x7e\x60\xc0\xdf\xe0\xfc\xfe\xbe\x7c\x39\x83\xc2\xb3\x97\x95\x66\xf7\xea\xd2\x18\xe6\x24\x7b\xbe\x5e\x32\x4e\x90\x70\x7e\x9f\xd8\x0e\xbb\xe5\xb3\x08\xf5\x9b\x25\xd7\x0d\x0f\x7b\x10\x62\xf7\x3e\x9e\x75\x41\xc5\x8e\x50\x28\x7b\x28\x42\x6e\xcb\x53\x06\x59\xae\x21\x13\x44\x6c\x4d\x08\xf7\x4a\x8e\x7b\x2a\x2c\xfd\xce\x60\xf8\x86\x48\x8a\x5c\xd5\x64\x82\x93\x99\xed\x8b\x17\x8c\x06\x81\xee\x75\x2b\xad\xe6\x6a\x64\xc0\xe4\xe5\xce\x3d\xdf\xb5\x8c\x30\xdc\x40\x9a\x72\x7b\x75\x09\x2b\xc4\x2d\xf9\x16\x1e\x37\x27\x44\xcf\xbd\xd0\xee\xb2\xce\x90\xb0\x3f\x47\xda\xdc\xf9\x99\x34\xe1\x93\xb0\x79\x4c\x90\x8b\x1a\xe1\xb0\x68\x69\xd4\x9b\xf6\x74\x16\x4e\xb3\x2e\xa4\x85\xf1\x4d\x26\xa4\xcc\xf7\x61\x54\xe4\x38\x08\x73\x2f\xac\x35\x88\x79\x35\xc2\xc0\xa0\xc3\x32\x78\x7a\x28\x17\x8d\xa1\xb4\x6e\xfc\x79\xa7\x6b\x55\x0c\xe6\x0e\xec\x6f\xf3\xd3\x9f\x49\xf0\x0b\x6b\x1e\x0a\x33\x4b\x24\xf8\xf8\x45\x7d\xe8\x14\xfe\xc0\x20\xe5\x4d\xf9\xa3\xca\x68\x69\xc2\x99\x0b\x9f\x34\xe6\x14\x5d\x27\x04\x57\x78\x1c\xb6\x7f\x18\xc5\xc2\x84\x79\xcf\xba\xfe\x8e\x22\x64\xf3\xc3\x0d\x13\x39\x08\xcf\x5e\x1d\x5c\x20\xb3\x79\x1d\x41\x2b\x3d\x7d\x87\x8f\xf2\x14\xc2\xc8\x8a\x76\x81\xcd\xc5\x23\x0c\x32\x5f\x4e\xbb\x99\x78\xbb\x8f\x01\xaf\x99\x7b\x7b\xa5\xc1\x55\xc2\xab\x57\x21\x1b\x5e\x67\x88\x11\xa4\xce\xdf\xb8\xb2\x5e\x21\x81\x0d\xed\x09\xf7\x63\xd6\xcc\xf6\x20\x2c\x8e\xe2\x7d\x31\x5d\xd7\x8a\x85\x15\x7c\xc7\x9c\xec\x9e\x7a\x12\x66\x3d\x12\x6a\x18\xdc\xc6\x45\xf0\xd7\x3a\xbc\x51\xb8\x6a\x2f\xa1\xe5\x61\xf9\x02\xed\x1d\x8f\x59\xe0\xb5\xc8\xfc\xac\x3d\xf4\x94\x85\x1d\x3f\x7e\xc8\x85\x45\x9f\x26\xf8\xd9\x2f\xdb\xfa\xae\x57\x9b\xb0\x50\xd1\xe9\xc5\x4b\x75\x6f\x36\x2c\x39\x9d\xf7\xaa\x20\x2f\x9d\x30\x5b\xe2\x83\x72\xee\xe5\x0a\x06\x7b\x17\x5b\x44\xca\xab\x6b\x13\x82\xbf\x0b\xbc\xf8\x3e\x64\x41\x78\xe6\x71\xff\xfa\xb9\xae\xd3\x04\x07\xb5\xb5\x8f\xa5\x6e\xb8\x13\x8c\xb6\xff\xae\x6f\x2a\xca\x23\x78\x9b\x4c\x7e\x7d\x28\x37\x82\x20\xb0\xea\x8d\xd8\x45\x96\x38\x61\xab\x72\xc2\xa4\xbc\x8d\x52\x84\xc5\xfb\xb9\x7e\x72\x71\xc9\x11\x5c\x9b\xd4\x94\x16\x2d\x65\x11\xd6\x4d\x3d\xfb\x55\x3b\xf8\x06\x81\xbf\x2f\x38\xf0\x6f\x11\xd2\x89\x6f\x57\x29\xf2\x23\x38\xc6\xcb\xbd\x9a\xce\xb5\x88\x85\xe1\xb9\xed\xb3\x1a\x1c\xb2\x08\x37\x8c\x37\xd5\xbe\x55\xf2\x22\x98\x9e\x09\xf8\xf0\x62\xbc\x0f\xe1\xca\x24\x6e\xa5\x96\x6e\x2f\xc2\xfb\xb0\xca\x34\x2b\x6e\x1f\x1a\x0e\xad\x3c\x50\xd9\x7d\x86\xa0\xdb\xb8\xbd\xf2\x7e\x9e\x08\x1b\xcc\xf6\x87\xed\x49\xff\x9d\x48\x98\xd5\x75\x90\x2b\xcb\x33\x83\x85\x39\xf9\x97\x1f\xde\x19\x97\x44\xb8\xed\x7b\x59\x28\x6d\x42\x23\x6b\xec\x19\x17\xf1\x73\xf3\x25\xa4\xc3\x09\x7c\x81\x31\xdb\x6c\x5c\x53\x09\xbf\x75\x5a\xa6\x1a\x74\x96\x10\x6a\x6a\xc7\x19\xff\x85\xd3\xf6\x27\x9f\x72\x0f\x1f\x25\x68\x7d\x71\xb6\x1f\xce\x73\x26\x4c\xe5\x7e\xfc\x56\xff\xd7\x4d\x42\xa8\xed\xb3\x01\xa3\x5f\x3c\x84\x50\x03\xb7\x65\x31\x9b\x54\x09\x7e\x0f\x73\x7f\xfc\xb2\xe1\x22\x3c\x33\xb5\xb7\x9d\xb0\x78\x05\xc1\xa1\x65\x76\xab\x6f\xab\x25\x1b\xec\x3d\x62\x27\x24\x77\x68\x10\x56\x09\x3e\xd5\x1c\xc9\x4a\x27\x34\xe7\x6d\x58\xe9\x70\xe5\x35\x83\x33\x73\x67\x04\x3a\x76\x24\x10\x5c\xb2\x33\xf7\x5e\x95\x9b\x41\x78\x77\xc5\xae\x6b\xe5\xef\xf5\xff\xc2\xb5\x8b\x72\xfe\x69\x97\x95\x09\x8d\x77\x86\xd4\x25\x4e\x08\x13\xec\x17\x30\x2d\xaf\x22\x4e\x12\x2e\x2e\x7f\xf4\x55\xe3\xe8\x71\xc2\xee\x75\x1b\x53\x8c\xbf\x47\x11\xe6\x7b\xfd\x29\x5d\xb7\xf8\x0e\x41\xeb\x78\xc6\xd9\x85\x99\xef\x19\x0c\xcd\x70\x74\xfe\xe0\xab\x46\x70\x28\x9b\xcf\x1f\xbc\x52\x86\xb0\x53\xe3\x46\x83\x27\x54\x08\xb5\x37\x4d\x66\x67\x55\x7b\x12\x6c\x82\x37\x1d\xd9\x7e\x57\x83\x90\x92\xb2\xc0\xf9\x8d\xcf\x3a\x82\xf3\xeb\xfe\x4c\x43\x33\x63\x42\x5d\x75\x9a\x45\xaa\xee\x44\xc2\x0c\xf7\x57\x7b\xb9\xd7\xf1\x12\x9c\x06\xfd\x37\x6d\x34\x48\x64\x41\xe2\x4b\xcf\x99\x13\xc7\x7a\x98\x31\xf8\x05\x6b\x6e\xf0\x58\xda\xce\x20\xe8\xf3\xee\x7d\xba\x9a\xa7\x08\x7e\xae\xe3\xfd\x7e\x94\x58\x10\xb6\xba\x47\xdc\xec\x5f\x70\x9a\x35\x56\x6e\xd6\x2f\xfd\xf3\x77\xbd\xff\xdd\xf9\x68\xa7\xaa\x49\x16\x0b\x9d\xa5\x9b\x56\x0a\x37\xcf\x24\x64\x26\xbc\xbc\x47\x65\x59\x2c\x4c\x9e\x70\x7f\xd3\xc5\x6d\xd6\x2c\x1c\x2a\x34\x7c\xcc\x2d\x96\x4f\x60\xa6\x04\xb4\xed\x92\xc9\x27\x5c\xfd\x39\xdf\xe7\x2f\x96\x98\x9e\x37\xfb\x92\x11\x42\x68\x17\x7d\x1e\x37\x9f\xd3\x9f\x85\xb5\xde\x45\xa1\xfb\x73\x43\xd8\x46\x2d\x7c\x57\x4a\x95\xde\x1f\x23\xa8\x7f\xbe\xd2\x54\x31\x10\x44\x68\x75\x91\xa9\x76\x0d\x1b\x61\xc0\x29\xec\xe4\xd9\x6c\xc9\x41\x28\xd5\x7d\x65\xba\xf9\xe1\x5d\x16\x4a\x6f\x1f\xaf\x11\x3b\xab\x4a\x63\x58\xf7\x9e\x6f\x72\x96\x9d\x03\x1b\x7e\x05\xf3\xdb\x6c\x88\xe6\x26\xcc\xac\x3b\xaa\xf2\xc2\x8c\x83\x10\x97\x50\x5d\x11\x1b\xbf\x9e\x30\xb0\xf0\xe4\xb6\xb9\x45\x76\x04\xd9\xb4\x9c\xe3\x73\x3d\x3c\x08\x1d\x71\xf0\x7f\xcb\xe3\x4d\xa8\x31\x3b\x1b\xcb\xe9\x6c\x46\x90\x3e\x96\x78\x46\x3b\xb7\x95\x41\xdb\x02\x9e\x93\x92\x77\x16\x12\xa6\x67\xee\xde\x54\x66\x07\x06\x67\xb4\x66\x7c\x6b\x73\x95\x20\x08\x31\xf3\xfa\x6b\xcf\xbd\x63\x20\xed\x34\x07\x85\x4e\x13\x09\xd5\x16\xf7\x83\x34\x73\x1d\x09\xe6\xb3\x9a\x3c\x2f\xa9\x1d\x65\xa1\xc1\xa2\x45\x57\x67\x32\x43\xd0\x57\x68\xef\x93\xf9\x68\x4e\xd8\xed\xaa\xa5\xd9\xe4\xb6\x81\x05\x5e\xd7\xb4\x91\x43\xd7\xbe\x32\x18\x0a\xb2\xba\x7e\xe6\x9a\x26\x61\xde\xd6\x5f\xa1\xc6\xd7\xd5\x09\xbf\xbe\x0a\x6f\x6c\x1d\xbd\x08\xbd\x9d\xa2\x97\xc0\x79\xd4\x9d\xa0\xf6\x38\xfb\xea\xa2\xe2\xa3\xac\xb1\x52\xfb\xe3\x90\x43\x88\x97\x28\x41\x51\xa0\xcc\x59\x46\x2f\x84\xd0\x7a\xdd\x7f\x65\x6c\xd6\x34\xc2\xcc\xa7\xbe\xbb\xee\x4d\x54\x25\x44\xb4\x2d\x77\x38\xa2\xd4\xcd\x40\x89\xb5\x4c\x37\xfd\xc3\x25\x42\xf5\xc7\x9e\xe7\x2f\xe7\xa9\x13\x2a\x32\x39\xe2\xcf\x9d\x2c\x60\x61\x4a\xe5\xf0\xbd\xa0\xe7\xeb\x08\x52\xdb\x0c\xed\x0a\x5b\x37\x10\x9e\x1a\xad\x9a\xa9\xe3\x64\x43\xb8\x73\x20\xab\xb2\x45\x7a\x21\xa1\xa8\x2d\xa1\xc1\x4e\x35\x97\x05\x2a\xf9\x64\xf8\xed\x7a\x05\x0b\x21\x23\xb2\xb3\xce\x4b\x6e\x22\x94\x8a\x38\xf0\x5c\xca\x08\x27\xd4\x5c\x2b\x08\x51\xfb\xf0\xf7\x8f\x2a\xb4\x24\x7e\x6c\x5e\x44\x98\xf9\x80\x9e\x08\x5e\x51\x24\x0c\xfc\x2a\xe7\x97\xdf\xc3\xcb\x06\x25\x6d\xf7\x5d\x37\x9e\x94\x32\x38\x5c\xf2\xdd\x2a\xb5\x44\x8e\xf0\x96\x87\xbf\x66\x9a\x3b\x2f\xa1\xa9\xf4\x64\xce\xf1\x8d\x03\x0c\x8e\x56\x9b\x0a\x4b\xd4\x71\xd2\x18\x5c\x8a\xe3\xe7\x4b\xcd\xe5\x27\x38\xcf\x3e\x97\x6e\xee\xf1\x81\xc1\xb4\x63\x4e\xb7\x0e\x6f\x14\xa7\x31\x78\xc6\x1f\x93\x5d\xe3\xb8\x9f\x30\x54\x90\x2b\x78\x82\xe3\x12\x21\x53\xe4\x4e\xb5\xd8\xaa\x1f\x0c\x7c\x96\xb9\x5b\xfd\x28\x58\x49\xa8\xd0\xd2\x3f\x35\xa4\xb4\x82\x70\x56\x3e\xe0\xcd\xcc\xf4\x6e\x06\x3b\x3b\x2e\xd4\xad\x33\xf6\x22\x7c\x0d\x7d\xf1\x76\xbd\x35\x43\x10\x8b\xdb\x75\x32\xe7\x9d\x24\xa1\x79\x33\xff\x90\x6c\xad\x30\xc1\x9a\x73\x4e\xf3\x8f\x04\x09\x36\x1c\x89\x7b\xfa\xe1\xd7\x87\x6f\xcc\x18\x0e\xd5\x77\xc9\x59\xca\xb4\x31\x90\xb4\xad\xfe\x5e\xf5\xf9\x36\x0b\x07\x1e\xb4\x85\x5a\xd7\x4f\x27\x38\xc7\xec\x7c\x3e\xb9\x3e\x8f\xf0\xd8\x6f\xf9\x06\x8e\xa1\x1b\x04\xf7\x76\x73\xa1\x4a\xf3\xdf\x0c\x12\xf7\x05\xaa\xc7\x9a\x6f\xa3\x7f\x60\xf3\x96\xc4\xac\xa9\x0d\xf9\x0c\x0a\x9e\x45\x74\x18\xd7\x88\x11\x2e\x7a\xc7\xba\x95\x38\x83\xc1\x8b\x33\x59\x0b\x33\xab\x1f\x33\xa8\x58\xb4\x68\xb7\x83\xf4\x2a\xc2\xfd\x17\x26\xac\xcc\x8f\x6f\x08\x89\x3d\x6d\x26\xc6\xfc\x97\x08\x8b\x53\x97\x6a\x4f\xeb\xcf\x23\xb8\xe7\x57\xab\x1e\x9f\x2c\x41\x60\x7d\x6f\x75\xf3\x41\x29\x61\xdd\x9f\xc4\xdf\x35\x75\x65\x04\x5b\x89\x0d\x13\xa7\x32\xe2\x84\x91\x03\x9c\x47\x39\xd7\x68\x11\x52\x4e\x88\x3a\x1a\xfa\x8c\xff\x17\xda\x8c\xca\x14\xd5\xd7\x3a\xff\x0b\x3b\x6e\x6d\x59\xf7\xf7\x85\xdc\xe9\xbc\x72\xad\xfa\x30\x07\xe1\x9a\xc6\x2c\xfb\xcc\x24\x75\x36\x6c\x09\x3b\x4a\x1f\x78\x6f\x31\x98\xf5\x85\x93\xc7\x76\x44\x9f\x20\xdc\x75\x2a\x4d\x33\x5c\x83\x30\xf2\xfd\xcc\x8f\x8a\x24\x05\x82\x3a\xef\x7b\xce\x4e\xb1\x71\x6c\xd8\x26\x3a\x63\xc7\x35\x3f\x0e\x82\x13\xcf\x22\xd5\xc6\x83\x97\x09\x15\x36\x21\xe5\x0b\x76\xc8\x11\xba\x92\x3f\xe6\xaf\xd7\xdb\x4a\x68\xd1\x35\x38\x2b\x32\x57\x82\x60\xf7\x78\xcb\x3b\xb7\x9b\x03\x0c\xc2\xa4\x12\x6b\x79\x56\x04\xd3\x18\x74\x3c\x47\xb6\x3e\xe8\x4e\x26\xb8\x85\x38\x16\xdf\x1f\x85\x91\xa9\xb7\x8d\x8c\xa3\x0d\x41\xe7\xa1\xb3\x9a\x8b\x53\x36\x41\x66\xa7\xac\xe6\xc6\xb7\x3c\x84\x43\x52\x4e\x9d\xea\x57\x8c\x08\xaf\x2e\x1e\xdd\x65\x9c\x51\x45\xe0\xb3\x4f\xfb\x2a\x24\x33\x81\x20\xc9\x17\xc5\x2c\x53\x37\x27\xfc\xbe\xd4\xaf\xde\x38\x6d\x39\xc1\x2d\xc8\x28\x64\xe9\xb3\xa7\x0c\x16\x17\xab\x3a\x2b\x67\xdb\x13\x8e\xcf\x7f\x28\xe0\xfc\x90\x97\x70\xe0\x4b\x7a\x52\xe8\xdd\x71\x84\x1d\xef\xcf\x0b\x5c\xd8\x1c\x42\xf8\x15\x6e\x7c\x69\x55\xb7\x34\xa1\xf8\xdb\x07\xf9\x35\x73\x7f\x30\x90\x62\xb6\x5e\x9a\x71\xff\x2c\x41\x2d\x6d\x17\x4b\x26\xd0\x90\xe0\x22\x7a\x20\x72\xe8\xe4\x4e\x82\x68\x47\xa6\xfa\xdc\x93\x8e\x84\x43\xe7\xea\x7c\xb5\xf8\xa5\x08\x05\x49\x95\xa6\xe3\x02\x04\x08\x37\x2a\x13\x3e\xe6\x18\x6a\x10\x4e\x95\x9d\xe3\x75\xcb\x7c\xc3\xa0\xc3\x6c\x7e\x48\xbe\x95\x09\x61\xc9\xca\x1d\x6e\x5d\x62\x49\x04\x99\xa7\x3e\x77\x26\x2e\xd3\x22\xa4\x8b\xe0\x39\x97\x8c\x34\xe1\xdd\x21\xaf\x66\xc1\x1c\x2e\x42\xd8\x8b\x53\x59\xdb\x96\x7e\x23\x68\xde\x4f\xce\xde\x3a\x8a\xb3\x8a\x56\x56\x47\x03\x3b\x09\xe1\x77\x3d\x8b\x56\xaa\xd4\x12\x54\x3d\x17\xad\x18\x4c\xbf\x49\xc8\xdb\xd7\x22\xef\xf3\xae\x9c\x10\xfe\x6e\xb7\xa2\x3e\x15\x12\x8e\x8a\xbe\xfb\xa8\x95\xd4\x47\xf0\x6d\xb8\x94\x68\x18\xda\x4b\xf8\xdc\x17\x50\xb1\xc6\x31\x99\xf0\x78\xb9\xe9\xb5\x8e\xb7\xa9\x2c\x50\xde\xdc\xf9\x89\x93\xef\xb2\xf0\xf1\xa5\xef\x94\x23\xa9\x2e\x84\xe8\x25\x0b\xea\xcd\x78\x0e\x11\x4c\xae\x2a\x34\xea\x6c\x0d\x23\x7c\xbc\xc7\x7c\x76\x2a\xe2\x25\x88\xfe\x7c\x32\x62\x3d\xb7\x83\xc1\xc4\x77\xfe\xa5\xed\xf7\x75\x08\x0d\x5f\x4a\xf2\x92\x3e\xea\x13\x1c\xbb\xbb\xfa\x82\xe7\x72\x13\x0e\x0b\x4f\xd9\x7a\x32\xa3\x95\x41\xd5\x76\xa9\x0f\xdb\x64\xcf\xb2\x20\x62\x2e\xe4\xe2\xa7\x56\x48\xb0\x9c\x59\xe3\xc9\x61\x1f\x4d\x38\x3b\x78\x7d\xfa\x3b\xc7\xf1\x04\xe9\xc1\xf9\x91\xef\x1c\xbf\x33\xe8\x38\xe9\xe8\x12\x51\x6a\x40\x70\x31\xd6\xe6\xfa\xbd\xc3\x80\xf0\x40\x47\x38\xb3\xfb\x33\xb1\xa1\xb7\xeb\xdc\x88\x4a\x7e\x57\x09\x1a\x8e\x24\x9c\x5b\xb4\x58\x9f\x60\xa3\x6c\xdd\x58\x23\x7b\x9b\x10\x19\x2a\x78\xa3\xec\x70\x01\x21\x21\x44\x6b\x7a\xb3\x6f\x13\xc1\x73\xf1\xc3\x8c\x73\x42\x9b\x08\xc2\x33\x12\xdf\x28\x0d\x8a\x10\xe2\x96\x2d\xed\x3d\xdc\xa1\x4b\x10\xb2\xeb\x3c\x5d\x5c\x69\x40\x78\x78\x67\xc5\x99\xd7\x4f\xd4\x08\xbd\x17\x2f\x5b\x94\x17\x72\x10\x54\x6c\xee\xfe\xd8\x6a\xba\x96\x70\x9b\x35\x25\xd2\x3f\x69\x3a\x21\xa0\xef\x81\xa2\x94\xaa\x05\x41\xd6\xf7\xcd\xed\xc8\xce\xdd\x84\xa8\xcd\xc5\x05\x2b\x3a\xf2\x08\xae\x1f\xf2\x86\xe6\x26\xd5\x12\x7c\x8f\x97\xc7\xf1\x9f\xaf\x60\x61\xe8\x45\xf6\xec\x73\x51\x6b\x08\x7a\xc2\xd1\x07\xfc\xd4\xd7\xb1\xf0\xad\x6c\xe8\x85\x8c\xc3\x4d\x16\xfc\x7f\xce\xd3\xbc\xec\xd2\xcf\x40\xf4\xa8\x8c\xdb\x4c\x5f\x11\xfa\x5f\x78\x1d\xdf\x6e\xd6\x30\x7a\x53\xfc\x96\x1e\xb9\xe4\xe1\x6a\x25\xc2\xe1\x8f\x7c\x1b\xfe\x14\x6b\x11\x38\x0f\xb4\x87\x3c\xea\xcd\x27\x58\xed\x74\xb9\xc1\x75\x65\x37\x0b\xed\x5e\x29\xfb\x04\x23\x36\x10\x9a\xe5\x4f\x7c\x12\x94\x28\x27\xbc\xbb\x63\xb3\xca\xa1\x22\x9f\xf0\x69\xb6\x6b\xc8\xbb\x5f\xd9\x2c\x68\x58\x44\xf5\x07\x2c\xb2\x24\x34\x3c\x3c\xab\xbc\xb3\x9b\x97\x30\x32\x28\xa8\xac\x60\x58\x45\x48\x79\x2b\xbb\x40\x7e\x14\x6e\x3b\x07\x22\x39\xfa\x73\x08\x3f\x9c\x8e\x16\x7a\xfe\xf4\x27\x58\xda\x5f\xbc\xab\x95\x39\x8f\xd0\x6d\x5f\xd8\x6f\x59\x98\x44\x28\x50\xf2\xb5\xd5\x61\x9c\x09\x37\x65\x95\x8b\xe3\xea\xdc\x08\x06\x82\x09\xfd\x29\xc5\xfb\xd9\x46\xaf\x5f\x15\x69\x27\xf1\x1d\x25\x88\x37\x1a\xdc\xf2\xff\x7a\x9c\xb0\xba\xe9\x47\x9d\x77\x89\x3c\x21\x45\x4c\xde\xd7\x6f\x57\x28\xa1\x4b\x5c\xd1\xcd\xff\xc3\x71\xc2\xa4\x3f\x49\xf9\x66\xa7\x3c\x08\xbc\xe6\x47\x6e\x28\x8f\xcb\x26\x48\x3e\x53\xe2\x31\xc9\x38\x41\xd8\x9f\x26\x75\xd0\x85\x27\x91\x0d\x1d\xba\x03\x2c\x8b\xb6\x04\x82\xa4\x66\x46\xc7\xc6\xb7\x09\x6c\x23\x89\xb5\xc7\x0f\x3b\xbc\x4a\x22\xdc\xe4\x75\xb1\xfd\x8b\xf9\x6a\x9c\x7a\x77\xfe\x4f\xf9\x0f\xf5\x67\x7b\xde\x74\x15\x28\x12\x96\xae\x93\x0c\x2f\xdd\x9c\x4a\x48\xf2\xba\x1f\xc6\x57\x63\x4e\x10\x57\x9a\xeb\xf7\x5b\x4c\x95\x10\xe7\x2c\xad\x71\xc0\xed\x27\x83\xdb\x42\xcc\x8e\x9e\xf8\x72\x82\xb0\xb4\x92\xdd\xe7\xff\x83\x80\xa2\x2e\x3d\xd1\x8d\xf2\x84\xd7\x83\x46\xc5\x53\xc2\xe5\x09\xfc\x8e\xa5\x67\x98\xb9\x0a\x6c\x10\x39\x6f\xf2\x33\xaf\xf6\x09\x83\x67\xe1\x7b\xdf\xeb\xba\xe4\x11\x78\xb2\x4a\x67\xbe\xb4\xba\x4b\x38\x75\x95\xeb\xe2\x4d\xd1\x1b\x2c\x54\x38\xa9\xe7\x6c\x3a\x72\x9d\x10\xfa\x47\x2a\xab\xab\xe5\x04\x61\xee\x1c\xf1\xe9\xf5\xa6\xc9\x04\xf9\x70\xef\x88\xbf\x48\xbb\xf8\x74\x09\xaa\xe5\x09\x0b\x7f\x1f\xe3\xd8\xa6\x66\x4a\x30\x8f\x1a\xca\xd5\x9e\x7c\x86\x0d\xd3\x4f\xfb\xb9\xee\x39\x14\xc4\x86\xfc\xa2\xfe\x4b\x6f\x93\x96\x10\x72\x14\x6d\x9d\x9f\x48\xf6\x33\xe0\x0b\xeb\x7d\xf7\x63\xdc\x73\x06\x89\x65\x7a\x3d\x73\x7c\x26\x12\x0c\x03\xd4\x6b\x6b\xae\xa9\x8e\x9e\xe7\x2d\x83\x0f\xf1\xca\x12\x0c\x0f\x0a\x5c\x88\xca\x94\x22\x08\x1b\x65\x2a\x3e\xfb\xd9\xc9\xe0\x9a\xc9\x5a\x8d\x9f\x2a\x13\x68\x0c\x1d\x16\xbf\x79\x1c\x6e\x35\x32\x98\x3c\x3e\xf0\x11\xef\xae\x17\x0c\xde\x95\x5e\x8b\x9b\x24\xb6\x93\x90\x66\xdb\x76\x2f\xb4\x24\x87\xa0\xf2\xe2\x47\x59\x57\xff\x4d\x42\x94\xe3\xe5\xd4\x01\xde\xe3\xff\x13\x95\x1c\x33\x0f\x9f\xbc\xe7\x42\x68\x3b\xa2\x1d\xd6\x7b\x2a\x91\x20\xe7\xb4\xd9\xfb\xc9\xdb\xfb\x04\xf7\xbd\xd1\x49\x8f\x7b\x64\x09\xc6\x81\x95\x17\x64\x64\x94\x08\x7e\x1a\x43\x89\x96\xf7\x58\x04\x99\xe0\x53\x5f\x7e\x1e\xe0\x22\x38\xed\xd4\xfd\x7d\xce\x64\x2d\xe1\x3e\xd7\xc0\x88\xdd\x05\x23\x1a\xd6\x8b\x9e\xa7\x3e\x59\x8a\x70\xff\x80\xa6\xe4\x93\xc2\xd9\x84\xbc\x19\xd6\xba\xf5\x3c\xbf\x18\x64\x47\xaa\x96\xa8\xb8\x7c\x65\x43\xeb\xa7\xe5\xe6\x26\x11\x3a\x84\xb0\xa4\x0d\x4b\xea\x76\xab\x10\xdc\xba\x7c\x37\x28\xf7\x8a\x13\x4e\xed\xcc\xff\xf1\x3e\x6b\x3c\xe1\xb5\xf1\xa3\xfc\xdf\xd3\xbf\x32\x98\xa7\xbc\x85\x7b\xb6\x47\x35\x81\x77\x53\x8e\xd5\x60\x1c\x0f\x61\xeb\xd0\xa5\x0c\xed\xcf\xc6\x04\xc1\xb7\x36\x5b\xcb\x5a\x7f\x30\x78\xf4\xd1\xdc\x23\xeb\x68\x29\xa1\xe7\x85\x82\xa4\x5c\x5d\x1b\x61\x17\x5f\xfa\x93\xbf\xa5\x84\x67\x44\x4b\x64\x55\x18\xa1\x8e\xef\x7d\xf5\x0c\xce\x2a\x06\x15\x4b\x5a\x7e\x50\xcc\x31\x1a\xc3\xb5\x85\x9f\x04\x6e\xb3\xae\x30\xb8\x30\xdf\xc5\x9d\x8f\x3f\x91\x30\xd3\xcb\x7f\xce\xb7\x89\x0e\x04\xdd\xdf\xde\x92\x57\x3a\xd9\xe1\xdb\x31\x4e\xa7\x6d\xb7\x2b\x61\xed\xe6\x54\x5f\xae\x07\x2e\x04\xed\x3d\xbf\xc6\x05\x8d\xf3\x66\x21\xb1\xca\xcb\xf2\x35\x73\x6c\x74\x3f\x7c\x74\xf0\x88\x90\x0f\x61\xdd\xe9\xa0\x5a\x0f\xc9\x54\x16\x8c\xf7\xe7\xe9\x7d\x96\x38\x4a\x08\x39\xe1\x3d\x93\x95\xee\x43\xb8\x91\x5e\xb5\x63\x63\xe0\x61\x82\xa5\xc6\x73\xdf\x7c\xee\x13\x04\x2f\xbb\xd9\x7c\x2e\x26\x5e\x6c\x10\xbb\x90\xe8\xba\x7f\xd6\x11\xc2\xb0\xdb\x5b\x8f\xa3\x4a\xcd\x84\x8d\x7a\x2b\x4b\xef\xd8\x5b\x10\x38\x9a\x6e\x56\x08\x8e\x3b\x40\x78\x2c\xac\x1e\xfc\xc3\xe0\x00\x5b\xc9\x72\xf8\x13\x19\xf7\x53\x9e\xb0\x5a\x88\xf1\xde\xe3\xfd\x95\xc1\x06\xb5\x12\x97\x9a\x49\x4a\x84\x07\x27\x9a\x07\x94\x97\x07\x13\x9c\x26\x4f\xdb\xbf\xf1\x75\x1f\x83\x9d\xac\x25\x06\xbb\x78\x86\x18\x5c\xcd\x4b\x6f\x88\x09\xb7\xa7\x31\x9c\x35\xda\x20\x38\xf9\xf2\xe8\xdd\x31\x6a\xc6\x9a\xf5\x0f\xec\x08\x17\xa7\x97\x85\x37\xcf\xe0\x21\xb4\x9c\xc9\xdf\x78\xea\xd5\x3b\x66\x0c\xc3\xef\xaa\x59\x65\xb5\x60\x70\x50\x26\x7e\xe5\x71\xa5\x5b\x84\x42\xdd\x4c\xcb\x0f\x3b\x34\x08\xef\x37\x1a\x4d\xdb\x13\x28\x4d\xb8\xf1\x21\xd1\xf7\xda\x6c\x75\xc2\x90\xd2\x8c\x77\x3b\x33\x46\x18\xb4\xdb\x5f\x69\x1a\x9c\x92\x44\x08\xe4\x9d\x14\xb8\x21\x6c\x1d\x41\x25\xf8\xa5\xa1\x55\x3f\x3f\x1b\x8e\x7f\x56\x5c\x5f\xb0\xf3\x2b\x83\x6b\x5d\xf1\x32\x26\xb5\xcb\x09\x31\x6b\xf8\x79\xba\x64\x14\x08\xf9\xbd\x7a\xfd\xf9\x3e\x5e\x6c\x58\xac\xb9\x67\xe2\xa1\x9a\x93\x84\xf1\xc3\x59\xd3\xb7\x4c\x7d\xc6\x20\xdd\x34\x9b\x99\xbe\xf5\x3b\x83\x75\xf6\xb3\xfe\x9c\x12\x1a\x3d\x02\x84\xb7\x17\xfc\xc5\x89\xd8\x19\xbb\x56\xdd\x8e\x67\xa0\xd2\x55\xcd\x6c\xbd\x1c\x53\x82\xed\x5f\x52\x9e\xef\x5c\xce\xd0\x18\xe2\x79\xb5\x5f\x39\x06\xbf\x64\xa0\xbe\xd8\x58\x45\xf9\xb3\x1e\xa1\xff\x86\xdb\xd3\x65\x5a\xab\x08\x21\x0f\x24\x33\x7a\x75\x0f\xb2\xe1\xda\x7e\xf3\x6e\xcd\x63\x07\x09\x8d\xf7\xfb\x1b\x16\xf6\xdf\x25\x9c\xe5\xb7\xf2\x92\x0d\x96\x25\x98\xdd\xd8\xfd\x66\x22\xf7\x62\x42\x67\xfb\xcf\x49\x0d\x2a\xb1\x84\x07\x9a\xee\x52\x17\x0e\x38\x10\x9a\xfa\xb3\x73\x17\xac\x79\xc5\xc2\xf7\x33\x1a\xe3\x94\x47\xf1\xab\x20\xf1\x42\xbd\x6b\x12\x0b\xb2\x1b\xe3\x0a\x3b\x7c\x4a\x09\x9d\x9b\xd2\x72\x77\xbe\x3f\x47\x90\x6d\xfc\xcd\xf9\x63\xfb\x20\x83\x8b\x25\xa6\x36\xfb\xe8\x59\x09\x1a\xc5\xf6\x9f\x6a\xbb\x64\x48\xff\xc0\x01\x27\x73\xa9\x9a\x5f\xd3\x09\x4a\x87\x1f\xcc\x5b\x9b\x91\x47\xf0\xbf\x32\xf5\xea\x5d\xed\x6e\x06\x06\xd5\xc5\x7d\x2f\x1e\xf3\xd1\xff\xc2\x7f\x1b\xe3\x7f\xbf\x6a\x7c\x60\x6c\xbc\xeb\xd1\xe3\xa5\xf4\x0f\xc8\x3d\x8d\x6a\x36\x7c\x77\x98\x0d\x3b\xcb\xac\xf2\x8a\xde\x84\x10\x86\x5f\x5d\x17\x29\x1e\x45\xd9\x6f\x4b\x8b\xc5\x9f\xda\xd8\xbe\xe1\xde\x8b\xe9\x15\x9c\x3d\x2b\x08\x1f\xfb\x6e\x05\x3b\x6e\x5f\x4d\x63\xe5\x3f\xec\x87\xc4\x48\xd0\xa0\x2b\xe1\x86\x83\x73\xfe\xba\x6f\xe1\x84\x65\xbf\x64\x83\xf9\xd5\xfa\x19\x28\x6d\xf8\xc3\xdb\xb8\x5f\x8d\xf0\x7c\x61\xf7\xdd\xfb\xb9\xfd\x0c\x38\x5c\xb6\xcf\xc9\x69\x57\x26\xfc\x99\xa6\x2f\xfb\x8c\xef\x08\x21\xe7\xf7\x83\x10\x73\xce\xbb\x04\x69\x29\xd9\xa1\x17\x1b\xe3\x09\xf1\xb6\xa2\x9e\x66\x36\xc5\x84\x8a\x93\x8f\x36\x3f\x75\x7c\x40\xe8\xe5\xee\xed\x0b\xe9\x0b\x64\xa1\x5e\x9b\xd5\xbe\x66\x74\x64\xb9\x51\xe2\xeb\xdb\x18\x37\x82\xc5\xaa\xd0\xc3\x4d\x5c\x87\x09\xde\x8d\x83\x4a\xb9\x52\x8e\x6c\xe5\xf3\x1c\xbe\x39\x57\x94\x93\x08\x57\x56\x18\x4d\x37\xaa\x4d\x24\x94\xac\xaf\x79\x93\xfa\x7f\x4a\x43\xf4\xe7\x3c\x7b\xf1\x24\x42\xcc\x9e\x0a\x8e\xa2\xa6\x54\xc2\x1a\xe5\x90\x9b\x17\x46\x6f\xc9\xff\xe1\x88\x85\xc5\xf6\x4b\x15\x3a\xf4\xbf\x10\xa4\xfc\x61\xd1\xaf\xf5\x13\x08\x13\x0f\x9c\x54\xd0\x59\x65\x4d\x10\x10\x78\xf8\xa2\xfa\xf3\x7c\xc2\xa6\x34\xbd\x79\xaf\xc4\xe7\x10\xb6\x77\x76\x09\xb8\x6f\xc8\x22\xb8\x1c\x29\xdb\x61\x60\x73\x97\xe0\xe3\xa0\x59\xeb\xe8\x7e\x97\x60\x5a\x9f\x1d\xe3\xa8\xb2\x8c\x85\xf3\x1f\xb5\x74\x79\x39\x1d\x08\xb6\x47\x63\x2b\xcb\xbb\x1f\x31\x70\x0a\xbc\x63\x95\xbb\x40\x9c\x10\x75\x5e\xff\xf9\xd9\x86\xb9\x84\x6b\x7f\xd4\x95\x0e\xac\x18\x60\xe0\xeb\xc0\xe7\xb7\xf0\x7e\x24\x0b\x49\xfe\x5b\xb7\xac\xb9\x98\x46\xe0\x5a\x76\xe3\xd5\xd7\xd2\x34\xc2\xfe\x6f\xac\x5b\xd8\xe5\x46\x18\x6a\x5a\x51\x74\x2c\xd9\x8b\x20\xe2\xf8\xe8\xc3\x7e\xe3\xaf\x0c\xb6\xfc\x12\x91\x1b\x7a\xc1\x41\xb8\x58\xf7\x74\x97\x98\xdf\x1e\x36\xfc\xb9\xac\x2d\x94\x69\x28\x46\x78\x76\xe9\x44\x44\xc8\x59\x45\x42\xc6\x97\x54\x87\x8d\xa9\xaa\x84\x9d\x3c\x1b\x65\x77\x26\x2e\x26\xe8\xff\x70\x5e\x72\x71\x60\x3e\xe1\x47\x80\xac\xe7\xab\x6c\x01\x82\xf5\xa7\xf7\x57\xbe\xe4\x77\x33\xf8\x9e\x37\xa1\xfb\x4d\x87\x12\x8d\xe1\x90\x46\xf7\x0f\x41\xb9\x8e\x12\xe4\xdf\x35\x93\xa1\xa9\x03\x0c\x0a\xd7\xa8\x2c\x72\xed\x1f\x60\x10\xde\xca\x7b\xa3\x6f\x3b\x1f\x21\xff\x9b\x5f\x7e\xd6\xda\x53\x2c\x74\xda\x96\x5f\x96\xab\x1d\xdd\x84\xb5\x7a\x5e\x8d\xac\xbc\x4d\x48\xfb\xea\x76\xf2\x9a\xf4\x6d\xc2\x55\x95\xd3\x4e\xf6\x5e\x47\x09\x09\x4f\x5e\xcd\x4c\x78\x1b\x4d\xe8\x8c\x5a\x1e\xa1\x76\xeb\x14\x61\x73\xe7\xdd\x92\x19\xd9\x0b\x09\x12\xd2\x72\x71\xb9\x8e\xb5\x2c\xa4\xfa\x8c\x9f\xde\x1b\x3d\xc4\x20\x27\xaa\x88\xf7\xf6\x74\x0e\x42\x6e\xc8\xf1\x93\xae\xb9\x9c\x04\xde\x63\x22\x0b\xfa\x6b\xd6\xb1\x61\x9a\xf9\xb4\x63\x23\x6e\xd5\x84\xfa\x7b\xf6\x9b\xaa\x33\x45\x08\x7d\x96\x12\xed\x26\x66\xdf\x18\xd4\xf7\x7b\xf9\x29\xb2\x72\x58\x98\x3d\xe9\xfc\xb6\xcb\x76\xed\x84\xb7\x4d\xc6\x06\xe7\x47\x71\x3d\xe0\xf7\xfb\x56\x85\x6a\x82\xe1\xe6\x09\xd1\x13\xbd\x55\x09\xe6\xa2\xb9\x6a\x13\x95\x26\x11\xee\xf0\xcd\x3f\xe1\x2e\xb0\x8b\x0d\xe2\x03\x9c\xc7\xa4\x74\xc4\x09\x2f\x6e\xd6\x2d\xcb\x37\x1c\x64\x10\xde\x9b\x3d\xab\x28\x2f\x9f\xb0\xd7\x27\xf7\xe5\x21\x0e\x51\xc2\x84\xa9\x9f\x53\xde\x8f\x44\xb2\xb0\x5b\x37\x22\xf6\x10\x7f\x3e\xc1\x73\xd7\x81\xa4\x39\x3f\xf3\x08\x9d\x3c\x45\xc9\x3e\x1b\x35\x09\x67\x0e\x2a\x6f\xdf\x75\x67\x36\x1b\x9c\xdf\x6d\x30\x58\x1d\xf0\xa2\x04\xf6\x7a\x56\x57\x82\x5e\xab\x11\x26\x77\xcc\x39\xa3\x6c\xe0\xc9\x82\xbc\xf4\x9c\x75\x33\x64\xf3\x58\xd8\x9c\x8e\x37\x7f\x32\xef\x12\x7e\x2c\xc9\x79\xbb\xaf\xaa\x8c\xd0\x69\xb4\x33\x38\xa7\x6d\x1b\xe1\xe9\xcf\xdb\x2a\xfe\x8f\xa7\x11\x2a\xaf\xf0\x29\xa6\x0c\x2b\x11\x32\x1f\x55\x1f\x2d\x95\x7c\xca\xe0\xe3\x9d\xcb\x06\xdb\x2b\x67\xd1\x18\x0a\x6c\x7b\x0e\xce\x11\x68\x2a\x81\xe0\xfc\x80\x5e\x97\x15\x65\x2c\x54\xdf\x58\xf0\xd3\x78\x96\x1d\xe1\x08\xc7\xcb\x2b\x4c\x23\x1f\xa1\x8b\x62\xf5\x8a\x42\x6f\x10\xbe\xe7\x44\x9f\x93\x4c\x2c\x23\xec\xfb\xfe\x6a\xf5\x96\xd7\x2d\x04\xdd\x10\xf9\x3f\x5b\x97\xc7\x11\xb2\xe4\xac\x07\x0d\x3f\x6f\x66\x43\x90\x65\x47\xd5\xd0\xa7\xdd\xac\xb1\xf2\xe6\x84\xbb\xdc\xae\x84\x2d\x04\x0f\xb1\x2b\xcd\x77\x7f\xe9\x13\x06\x1c\x9f\x0f\xe4\x9d\x5d\x44\xb8\x28\xaa\xfb\x67\xe6\xb3\x44\x16\x6e\x09\xba\x6f\x96\xcf\x99\x43\xb8\xbb\x32\x71\x39\x1d\x60\x08\x1a\xfa\xd6\xd6\x7a\x11\x52\x04\xbd\x90\x96\x92\x2b\x39\x99\x84\xdb\x95\xb2\x55\x1c\x46\xd7\x08\x1f\x3b\xc4\xf8\x77\x14\x18\x12\x84\x43\x4d\x3f\xee\x48\x14\x66\xc3\x21\xf7\x35\x5b\xe3\x5c\x8e\x10\x38\xf7\x4a\x3b\x1d\x72\x3c\x41\xd0\x31\x55\x32\x38\xb1\xd7\x83\x6d\xa4\xe2\xf8\x7d\xbe\xe2\xd3\xcf\xcc\x3f\x70\x59\xd5\xf0\xf7\xea\x2d\x47\xe9\x1f\xd0\x9f\xb9\xfb\xb7\x90\xb2\xfb\xbf\x20\x5a\xff\x2c\x60\xe7\x92\xf9\x6c\xd8\x51\x61\x11\x32\x7f\xb6\x34\x81\x5f\x63\xba\xd8\x62\xb9\x4c\x82\xc6\xb2\x2e\x5b\xd1\x2b\x86\x84\x01\x79\x4f\xcb\x39\x7a\x3c\x84\xe7\x4a\x0e\xbc\x56\xab\xcb\x09\xa6\xfd\xeb\x5b\x17\x0b\x1c\x27\x24\x3a\x5b\x7f\x58\xc7\x63\x4e\x30\x30\xae\xa8\x29\xd7\x9e\x47\x30\x1e\x49\xcc\x4b\xff\x2c\x44\x88\x08\x5e\xae\x52\x26\x28\x48\xe0\x0e\xd0\x98\xd5\x1d\xc0\x4b\x30\x0e\x68\x93\xce\x6f\x4f\x27\x74\xcb\x18\x39\xa9\xe6\x46\xb3\x30\xd5\x3f\x48\x35\x23\x3e\x83\x20\xac\x37\x4b\x3d\x43\x61\x1e\x61\xc0\xf6\xc7\xbe\x19\x5b\xee\x12\xc2\x97\x5c\x7a\x1c\x69\x62\x4e\xa8\xe6\xe0\x4d\xd5\xbe\xac\x41\xb0\xad\x3d\xdf\xd8\xea\x76\x96\x35\x56\x7e\x3e\x58\xfd\xbc\xf4\xc2\x10\x03\xfd\x7a\xe5\x07\x02\x8b\xfa\x19\x2c\x16\x74\x5d\x2a\x3b\x47\x90\x50\x95\xee\x51\x7a\xdc\x48\x9b\x60\x52\x36\xdd\x55\x2c\x9f\x45\x28\x58\x3d\xd5\x9b\x87\xaf\x90\x20\x74\xc5\xfb\x9e\xac\xe4\x62\x42\xe8\xcc\xe5\xc7\xa3\x04\x96\x13\x9a\x13\x0f\x6d\xb8\xb9\x74\x90\xc1\x57\xd7\x3d\xd1\x95\x61\xb1\x2c\x04\x77\xb4\x16\x2d\xd5\xaa\x20\x0c\x18\x99\x67\x16\x5e\xc9\x21\xf4\xe6\x5c\x7b\x7a\x7f\x57\x29\xa1\xa1\x6e\x6f\xe3\x9f\x75\x15\x84\xfe\x0f\x2e\x33\x8a\xa6\x94\x11\x6c\x39\x9f\x2f\x8a\x5f\x50\x46\xb8\xdb\x11\xbe\xb6\x7b\xb0\x98\x70\xb5\x2a\xfd\xea\x8f\x8f\xc5\x84\x7b\x32\x2b\xcc\x0f\x3d\x28\x26\x08\x6c\x1d\xb0\x16\xd8\x52\x42\x18\x1a\x6c\x49\xbb\xf2\x4c\x84\xa0\xb1\xcd\x6d\xfb\xab\x88\xed\x2c\x6c\x0d\x91\xdc\xed\xb9\x7f\x3f\xa1\x26\xf6\x94\x0c\x77\xa3\x30\x21\x5d\x62\xce\xfc\xb4\x96\x67\x0c\x78\x4f\x0a\x7e\x79\x28\xb2\x80\x90\xac\x54\xf6\xf2\x49\x81\x10\xe1\xf0\x8d\xf4\xf3\x75\xa5\xe3\x08\xdd\x0f\x4e\xed\xa3\xe6\xc9\x84\xb5\x76\x96\xb3\xe6\x3b\x0a\x13\x2c\x77\xf3\x1f\x53\x5e\x94\xc6\xa0\xcc\xd7\x4b\x3e\x55\x5d\x95\xf0\x38\xff\x6d\xcd\x3b\x83\xeb\x84\xa9\x5d\x4e\xb9\x8f\x53\x23\x58\xe0\x9a\xa3\x54\x79\xc0\x7f\x05\x21\x7f\x47\xc4\xde\xcd\xe7\xd5\x09\xca\xfb\x34\xac\xe4\xe2\x94\x08\x81\xe3\x7a\x6c\x96\x5c\x9b\x48\x70\x57\x68\x3f\x2f\x7e\x5f\x94\x90\x9a\xa0\xad\xb8\x67\xc2\x4a\x42\x94\xfb\xe2\xb2\x81\x1f\xdf\x18\xcc\x58\xed\xf0\x76\x78\x74\xc9\x15\xe5\x3f\x23\xf5\xec\xf3\x62\xc2\x9a\xcb\x36\x39\x5a\x9b\x7f\x32\xb0\x9b\x13\x66\x1d\xbd\xc7\x96\xc6\xa0\x27\x34\x32\xe9\x83\xf7\x54\x42\x4e\xc8\xc5\x7d\x77\xda\x43\x09\x05\x06\xa7\xfd\x0c\x5b\x3f\x31\x98\x7a\xe2\xec\x47\xcf\xde\x39\x34\x06\xdb\xf3\x6e\xc3\x59\xf1\xe3\x08\x6b\x2e\xf1\xef\x4a\x58\x31\x8d\x0d\x9b\xc3\x1e\x3e\xbc\x71\xeb\x0b\x33\x86\xf2\x07\x1d\x87\xac\x26\xbc\x28\x41\xd7\xa4\x8d\xa1\x85\x6f\xd2\x08\xf3\x9a\x4d\x3f\x0b\x28\x1f\x64\x21\xc1\x5d\xc8\x6b\x7a\xd4\x1e\x02\x8f\x4b\x5b\x71\xe0\xd4\x0b\x84\xd6\x8a\x81\xda\xa8\xd9\x8a\x84\x8e\x15\x16\x25\x31\xda\xa2\x04\xab\xcc\x49\xe6\x7a\xd5\xf3\x09\x8f\x0f\xae\x39\x68\x9f\x19\xcd\x82\x7a\x9d\x50\xdf\xf7\x87\x31\x84\x7b\xd7\xef\xc9\xd5\x95\x29\x13\x74\xe3\x96\x5d\xa8\x89\x2e\x25\xec\x88\x96\xfe\x53\x79\x3c\x93\x70\x74\xc6\x21\xdb\x85\xbf\x22\x09\xbc\xf6\x6b\x75\xae\x6c\x4c\x61\xc3\x2a\x43\xf5\x69\x7f\x47\xc7\x75\x97\x0c\xb4\xb8\xc6\x11\xe4\x4a\x17\xeb\xad\x39\x16\xc7\x56\xfe\x43\xab\xcf\xf8\x21\x89\xee\x21\x06\xcc\xe9\xa1\x8a\xc6\x4d\xbf\x19\x94\xad\xe3\x14\xbd\xaf\x76\x9a\xb0\xa7\xb6\xc9\xbc\xf8\xf9\x4c\xc2\xcc\x03\x66\x06\x8b\x82\xaf\x12\x1a\xbc\x02\xf3\x0b\x8c\x78\x08\x3f\x67\xe9\x99\x9f\x79\x2f\x4c\x48\xa8\xac\x7e\xd8\x3f\x65\x02\x61\xaa\xd5\xf8\x95\x2a\xb5\xd1\x84\xcb\xee\x53\x92\x83\xce\x9b\x12\x26\x7d\x38\x99\x76\xce\xf6\x3a\x21\x7c\x41\xf5\xe1\x94\x95\xe5\x84\x79\x7d\x03\x93\x1e\xdc\xda\x40\x68\x79\x37\xc5\x77\x95\xcc\x5d\xc2\xd4\xa8\xb5\xaf\xea\x0e\xca\x11\x4e\xbc\x2c\x11\xbe\xe1\x19\x43\x78\xf2\x6b\x7e\xa7\xc7\x84\x6f\x0c\x3c\x56\xab\xa8\xe6\xdf\x9c\x44\x63\x70\x57\x4c\x78\xdc\xb1\xb1\x87\xc1\xac\x13\xb7\x31\xa5\xa5\x9c\x50\xb7\xde\xde\xd5\x3a\xac\x8c\x70\x84\x8f\xc7\x35\xef\x60\x39\xe1\xb8\x62\x9f\x9c\xe0\xf3\x72\x82\x10\x87\xf5\x03\xb3\x65\x69\x84\x91\xc3\x5a\x02\x1f\x42\xd3\x08\x47\x0d\x84\xe2\x2f\x0a\xa7\x10\x16\xdb\x3b\x25\x6f\x5e\x95\x48\x88\xf1\x9b\x31\xe9\xe0\x8b\x08\xc2\xa7\x12\xd9\x32\xb7\x11\x45\x42\x55\xe2\xe9\x58\xb5\xcd\x89\x84\x5a\x8f\x3b\x2b\x64\x26\xc7\x13\xb8\x83\x9b\x45\x8a\xed\x82\x08\xb6\xdf\x25\xb3\xda\x56\xc5\x13\xfe\xcc\x44\xc6\x9e\x77\xfe\x2c\xfc\x94\x6b\x33\xd2\x4b\x8c\x27\x58\x0f\x95\xf5\xae\x18\x39\x4c\x08\xe7\x5e\x50\x7d\x8d\x4f\x94\x10\xf7\x8d\x39\xd8\x1e\xcc\x4b\xd0\x6a\xb7\x8e\xba\xbe\xe2\x22\xa1\xad\xe0\x80\x93\xa8\x95\x0c\x21\xb6\xe5\xe3\xd1\xcc\x35\xb6\x6c\xe0\xb2\x79\xe2\xb1\x69\xaf\x04\xa1\xd3\xcf\x6a\xea\xac\xab\x45\x84\x95\x45\x8d\xf1\xfb\x13\xd6\xb3\x90\xa6\x7f\xec\xe1\x72\xd5\x53\x84\x48\xbd\xde\xad\xfb\xc5\x02\x18\xe8\x0d\xbf\xf7\x51\x7a\xbe\x98\xc6\x90\xb9\x46\x3f\x64\x5a\x59\x1b\x83\x8b\x42\xc1\x73\x9c\x92\x38\x08\x75\x6b\x33\xc2\x03\x13\x15\xd9\xb0\xde\xdc\xb3\x7a\x01\xe7\x17\x06\xeb\xa7\xac\xbf\xa7\xe8\x2f\x4b\xe8\x28\x18\x34\x2d\xe5\x59\x42\x68\x9b\x23\x79\x35\xfa\x04\x07\x81\xf5\x79\xe6\xa2\x49\x33\x34\x08\xe7\x96\x85\x0c\xc6\x9b\x2c\x22\x88\x75\x4e\xf3\xff\xec\x5d\xc1\x82\x77\xa0\xc8\x83\xc9\x7c\x3d\x0c\xe6\xe6\xbf\xca\x5b\xca\x39\x89\xa0\xe1\xa0\xe9\x75\x76\x30\x87\x85\x3e\xd1\x5b\xa9\xaa\x07\xce\x10\xa2\xaf\x84\xaa\x55\x6f\x9b\x48\xd8\x19\xae\x37\xc7\xc6\x78\x12\xe1\x52\xcc\x40\x73\x97\xcd\x04\x36\x8c\xe7\x8f\xd3\x3c\xcd\xff\x99\xc1\xa9\xc1\xa4\x2c\x7b\x35\x41\x42\x57\xce\x84\x6d\x0f\xc4\xd4\x09\xe1\x45\x32\x43\x4a\xaa\xba\xff\x42\xb2\xf7\x5a\x8e\x9d\xa2\x03\x0c\x5a\xb5\x8e\x34\x0a\xde\x5a\x41\xf8\x22\x30\xb1\xf6\xb7\x7e\x31\x41\xde\xab\x33\xee\xff\xc2\x78\x96\xfd\xfb\x9f\xa3\xf0\x8e\x5c\x7c\xe7\x2f\x9e\x2d\x50\xd7\x3a\xc6\x6d\x4b\x88\x5b\x2a\x3c\xfb\x95\xaa\x2d\xe1\xc4\xe0\x65\x81\x96\x07\x66\xac\xb1\x22\x96\x70\xb5\x36\x9a\x7b\x27\x5b\xf9\x53\x39\xf2\xd1\x57\x73\x37\x81\xde\xa9\x7e\xb4\xfd\x1d\x4f\x70\xfe\xe3\xe8\x69\xad\xb2\x9e\x0d\x6d\x7a\xb4\x7c\x83\x97\x22\xc1\x43\xbb\xee\x8f\xd0\x83\x33\x84\xb7\xdb\xde\x30\xf7\x4f\x07\x12\x16\x45\x2a\x38\xf0\xca\x9e\x60\x61\x4b\xe4\xe2\xde\xce\x4f\x49\xac\xb1\xd1\xc2\x22\xc9\xfb\xab\x9f\xef\x67\xe1\x80\xa3\x83\x1f\xa7\xd5\x19\x82\xdb\x06\x43\x33\xc7\xab\xbe\x84\x3d\x6e\xdb\x2f\xde\x12\x24\x82\x67\x4b\xef\x5e\xde\x3c\x4e\xc2\x5b\x91\x65\x2b\xca\x9b\x75\x08\xe7\x2e\xb2\x5e\xbc\xe2\x75\x61\xe1\x83\xda\x26\xe9\x95\xfa\xa7\x09\xfe\x1f\xf5\xf9\xff\x42\xa6\x40\xb8\x73\xb1\xcf\x36\xc2\x82\x0c\x99\xf0\xac\x4e\x05\x42\xcc\xfc\x05\x66\xfb\x42\x05\x08\xe2\x27\x32\x56\xe9\xbb\x8e\x30\x38\xc0\xb2\x90\xe5\x96\x96\xa5\x31\xfc\x19\xaf\x55\x7b\x79\xe4\xfc\xe8\x41\x91\xaf\xf0\xe5\xf9\x74\xc2\x67\xa1\x4c\xeb\x3d\x3a\xab\x08\xdf\xdf\x5c\xed\xbb\x24\xd4\x51\x02\xa9\xd8\x9e\x87\xe6\xe6\x0c\x61\x1b\x47\x50\x77\xf9\xbd\x25\x84\x46\x51\x2d\x3f\xc1\xb4\x24\x42\x46\xf6\x91\x4d\xe2\xdb\x4f\xb0\x41\xf6\xd6\x95\xf1\x2d\x38\xf8\x2f\xbc\x9e\x54\x14\x76\xb9\x5d\xfb\x5f\xd0\x32\xdf\x7f\xe3\xc0\x51\x0f\x36\x1c\x7d\x2f\xbf\x49\x39\xce\x97\x90\x75\x27\xe9\x93\x4d\x73\x0a\xa1\x5f\x42\xf0\xfa\x36\x63\x5e\x82\xe2\xc0\xc1\x45\x03\xed\x2e\x6c\x18\xcf\x71\x71\xc7\x26\x47\x41\xc2\x7d\x91\x19\x75\x3a\xd5\xea\x04\xe3\x35\x5c\xc7\x9c\x2c\x6e\x32\x63\xd0\x7d\x6a\x59\xfa\xbe\x2e\xad\x04\x9b\xbf\x37\x32\x77\x13\x6d\x08\x7b\xc7\xeb\x27\x98\x29\xd4\x13\x82\x0d\x3f\xaf\xd1\x70\x79\x4d\x70\x2b\x5f\x14\x5c\x3b\xfc\x92\x30\x9b\xd3\x2c\xb4\x40\xf5\x35\x81\x95\xfe\x26\xbc\x71\x74\x14\xfb\xa8\x39\x57\xdd\x34\x8c\x90\x37\x85\x35\xfe\xbe\xec\x19\x82\xde\x6c\xfb\xad\x73\x6e\x44\x10\x4c\x78\xfc\xf7\x8a\x8c\x2e\x7a\xb8\xf6\x43\x7a\xa1\x92\x1b\x41\x72\xc9\xeb\x64\xee\xc9\x17\x09\x93\x8d\xa5\xcc\xa5\x1b\xb2\x59\x58\x7f\x39\xa2\x6d\x62\xd7\x59\x42\xa8\x6f\xb3\xcf\x52\xb3\x8b\x84\x94\x42\x83\x7d\x2d\xba\x47\x59\xc3\xf1\xbb\x79\xd7\x5f\x89\x21\xec\xaf\x58\x77\xe6\xbd\xc7\x19\x02\xf7\x96\x27\x8b\x85\x7a\x17\x12\x02\xe4\xb6\x1b\xae\x4e\x3d\x4f\xb8\x73\x66\xd1\x94\xbf\x38\x33\xfc\x59\x47\x2a\x9e\x87\x70\xf1\xe9\xcd\x37\xcb\x07\x38\x08\x62\x21\x13\x3c\xef\x9e\x7a\xca\xe0\xc4\x4a\xf7\xeb\xa5\x55\xf3\x68\x0c\x02\x6d\x97\xc1\x9d\x55\x5a\x82\x55\x35\xa7\x16\xa8\x6c\xd2\x24\x7c\xb0\x5b\xb4\xe4\x4f\x58\x11\x21\x4e\x69\xa8\x6e\xf3\x89\x52\x82\xc2\xd6\xef\x02\x4b\xec\x2c\x59\xb8\x70\xeb\xf4\x96\x7c\xdb\x70\xc2\x8d\x9c\x6d\xd7\x27\x6a\x39\xff\x0b\x9f\x05\x43\x36\x1a\xe6\x28\x10\x0a\xfa\x26\xa5\x2c\xb8\x71\x93\x05\xed\xd7\xc9\x37\xa5\xbb\x4b\x09\xc2\x91\x74\xad\x59\xb8\x8c\xf0\x6a\xa2\x8b\xc5\x41\xce\x4a\x82\x77\xeb\xf2\x8b\xe2\x2f\xd7\xd3\x70\x7d\xdc\x2c\xc1\xd4\xe0\xff\xbe\xe2\x8a\xd9\x94\xde\x58\xe3\x69\x84\x95\x5c\xb2\xa8\xca\xe8\x61\x60\x74\x2f\x61\x68\xb2\xb4\x38\x8d\xa1\x6c\xd5\xf8\x46\xb1\x84\x6c\x82\xf9\xb3\xfb\xdf\xf6\xda\x9d\x22\x78\x9d\xf1\xe6\x39\x1d\x67\x47\x18\x74\xd8\x7d\x3d\x37\x6d\x90\x41\xcb\xa5\x65\xef\x9a\xab\x39\x69\x0c\xba\xbf\xa7\xe6\x58\xfc\x7e\x52\x82\xf8\x90\x0f\x79\x1d\xda\x15\x04\xa2\x9b\x33\x75\x8e\x96\x11\xbc\xb9\x5a\xb7\x44\x27\x4b\x11\xf6\xa6\xd4\xf4\xf4\x4a\x73\x13\x62\xe5\xbd\xab\x8e\x18\x6c\x21\xb4\xc4\xaf\x9f\xa4\xe8\x7e\x8b\x20\xd5\xd3\x5a\x52\xb6\x76\x21\xc1\xa0\xac\x20\x76\xf9\xfb\x54\x36\x78\x8b\xa6\xbe\x59\x16\x54\xc3\xe0\x48\x59\xac\xb1\x47\xfc\xf2\xd1\x93\x52\xe2\xb6\x50\x21\x35\xc2\x19\x4f\x4f\x99\xae\xa7\x69\x2c\xe4\x39\xd9\xa4\xde\x1d\x67\x4a\x38\xa5\x57\x72\x41\xe2\x9c\x0c\xa1\xdf\xaa\xcc\x60\x68\x77\x1f\x03\x35\x73\x1f\xa3\xba\x00\x3b\xfa\x07\x44\x4a\x64\x1f\x69\xf3\xaa\xb3\xa1\xf7\xae\x69\x3f\x0f\xab\x91\x35\x56\x74\xb3\xa2\x1f\xbd\x2d\x19\x64\xb0\xff\xd0\x4c\x6e\xad\x3b\x92\x34\x86\x88\x66\x2f\xb9\x59\x57\xbc\xd9\x90\xf9\xc9\x24\x60\xe9\x09\x59\xc2\xdc\x92\xed\x53\x52\x5b\x65\x08\xe2\x31\x4e\x01\x3f\x87\x7a\x19\xf4\x34\x05\x4c\x88\x4f\x37\x23\xa8\xb9\xe9\x29\xad\x50\x12\x26\x34\xae\x3e\x6f\xf3\x6a\xe3\x4a\xc2\x19\x17\x85\x42\x1b\xe5\xb3\x84\xeb\x27\xf8\xae\xed\xb5\xe9\x63\xf0\x5e\xb8\x6a\x51\x69\xd5\x4e\x42\x71\xd7\x69\x5d\x6b\x8f\x20\x36\x68\x28\xd4\xbc\x08\xb3\xda\x42\xd8\x1c\xbd\xb2\xc1\x2d\x5d\x86\x50\x75\xaf\xc5\x5a\xff\xb3\x23\x41\x23\x3b\xa3\x36\x94\x73\x84\x19\x43\x43\xb5\x56\x79\x68\x92\x3e\xfd\x03\xee\x3e\xc2\x0b\x47\x1e\x0d\x33\x38\xf4\x27\xfb\xdb\xb3\x13\x0b\xd9\x4a\xea\xae\x03\x03\x37\x6e\x74\x32\x70\xdc\xd1\xa0\x96\xb5\x50\x96\xf0\x79\xc1\xa4\x44\x93\xb5\x5d\xcc\x18\x78\xe5\x6a\x8f\x4c\xfc\x32\x85\xc6\x70\x8a\x27\x65\x4d\x8b\x57\x06\x83\xc8\x85\x4b\x9d\xe4\x03\xc4\x09\x31\xd5\x65\x99\x0e\xc9\xaa\x6c\x08\xf6\x17\x69\xd4\xb2\x12\x24\xdc\x2c\x76\xf1\x5b\x16\xa7\x45\x28\x0a\x58\xd4\x3f\xe7\xed\x41\xc2\x83\xef\x87\x42\x57\x4d\xd0\x23\x70\xdd\xb8\x97\xee\xf1\xa2\x8f\x41\xc9\xc9\xa6\xf4\xd9\xa6\xc1\xf4\x0f\x3c\xb2\x8f\x90\xae\xdb\x3f\x9d\x0d\x25\xdf\x2d\xca\x75\xb8\xa6\x12\x3e\x87\xf3\x67\x9a\xac\x10\x27\xf4\x06\xce\x9c\x7d\x54\xe8\x3c\x61\xc1\x5d\x1a\xbf\x51\xb4\x83\x81\x95\x2e\xc7\x32\xff\x69\x3a\x84\x47\x4f\xb2\xaf\x25\xb7\x5e\x24\x68\x99\xf6\xf7\x33\x87\x0c\xd8\x10\x19\x7c\x7d\x84\x4f\xfb\x71\x09\x3e\xd8\x9e\x72\x17\x3d\x3e\x9f\x60\x73\xbe\x63\x7d\xd3\x4c\x33\xc2\x09\xfb\x7d\x07\x9f\xcf\x52\x23\xcc\x96\x7e\xaa\x2e\xbe\x79\x32\xa1\x6f\x60\x55\x9c\xe9\x56\x61\x42\xe9\x72\x9a\x9b\xcf\x23\x44\x98\xb4\xc8\x20\x4d\x75\x87\x06\x21\x74\xd3\xb4\x8a\xfc\x90\x59\x04\xb1\x7b\x93\x3f\x0f\x68\x46\x12\xa6\xd8\xdd\xf0\xf8\x8b\xa8\x82\x27\x5a\xa9\xb5\x41\x84\x8b\x0b\x82\x97\x39\xfe\x34\x27\x0c\xc6\xed\x4a\x54\x8a\xb9\x41\xd8\x89\x29\x32\x1c\x52\x22\x84\x42\xe1\xd9\x66\xa6\xbf\x06\x18\x44\xe7\x70\xe9\xb9\x39\x8a\x13\x42\x74\x7f\x4f\x5b\xe9\xa9\x40\x90\x9b\x3b\x77\x5e\x91\x74\x3e\x0b\xdb\x5c\x23\xcc\xd3\xce\x2c\x23\x94\x98\x95\x17\xfc\xdc\x6e\x4c\xe8\x5a\xeb\xa1\x99\x2f\x53\x4e\x18\x14\xfa\xfd\x65\xe0\x53\x3d\xe1\x43\xf1\x4a\x4b\x9b\xd2\x4a\xc2\xb7\xa1\x2a\x24\x9a\x18\x11\xd6\x3b\xdc\x4d\xcb\x10\x91\x26\x7c\x7a\x32\x5d\xa6\x2f\x71\xf5\xbf\x30\x29\xd5\xb1\x5c\xe5\x4f\x0e\x81\x33\x7b\x4a\xb6\x84\xd8\x31\xc2\xef\xba\xb9\x79\x5f\x56\x89\x12\x1a\x58\xac\xde\x99\xb2\x86\x84\x09\x3d\x2a\x7d\xf2\x7e\x97\x09\xed\xd5\xcb\x12\xeb\x4a\x56\x13\x38\x6d\x6e\x8f\x84\x44\x46\x12\x0c\xc4\x66\xfd\xac\x0b\x5a\x4e\xb8\xeb\xc3\x23\x30\x6b\xca\x1c\xc2\x75\x9e\x8b\x4b\x77\x3a\x0f\x30\xe0\x68\x0a\x5c\x75\xe5\x35\x17\xe1\xb6\xf6\x9d\x90\x7e\x43\x59\x42\xda\x92\xd6\x24\xf1\x46\x75\xc2\x0d\xc9\x90\xb2\x5f\x5c\x52\x84\x4b\x3b\xf7\x54\x1e\x95\x52\x20\xc4\x05\x85\xaa\xb8\x9d\xd0\x25\x28\xe8\x47\xc5\x65\x2e\xe9\x62\xb0\xe6\x57\xed\x84\x7e\x79\x77\x1a\x03\x57\x56\xc2\x93\xd6\xe1\x6c\x82\xf4\xd3\x92\x35\x1e\xc5\xb6\x04\x41\x5f\x29\xa3\x82\xc6\xd5\x6c\x78\x37\x69\xc1\xd2\x7b\xea\xdf\x98\x31\x44\xd4\x2c\x4b\xca\x4b\x96\xa3\x31\xd8\x6c\x4d\xf4\xf0\x9e\xfa\x82\x41\x80\xd8\x43\xcf\x29\xdf\xce\x97\xc0\xee\xb0\xb1\x84\x5a\xa8\x0b\x8d\x21\x13\x13\xb5\x8d\x5b\xbb\x19\xd4\x7c\xb3\xaa\x13\x7e\x28\x4b\x58\xdf\x29\xb2\x7d\x82\xdf\x38\x82\xfb\xf2\xc4\x07\x87\x24\xcf\xb2\xa1\xb7\x4f\xd4\x24\x28\x30\x86\xc0\x6c\x99\x69\x16\x74\x60\x3a\xc1\x79\xa3\xfd\xf3\x64\x16\x1f\x1b\x66\x9f\xf8\x32\xcb\x6a\xc3\x00\x03\xb7\x6b\x6f\xb3\x12\x4e\xf2\xd0\x18\x5a\x7c\x2b\xdf\x6d\x59\xf5\x98\x81\xd1\xf0\x73\x05\xf3\xf4\x71\x84\xf1\x3b\xc2\xda\xcf\x6e\x15\x23\xac\x4a\xbb\xad\x19\x54\xbc\x8c\x0d\xf2\x9d\x5a\xfb\x3a\x62\x3e\x33\xe0\x3e\xd3\x62\xf3\x68\x8b\x34\xc1\x4e\xda\xcb\xa6\x56\xcb\x94\x0d\x4c\xde\xfe\x2c\xaf\x80\x7e\x06\x1b\x8d\x93\x4b\x17\x45\x0f\x33\x28\x97\xfe\x23\xa3\xf3\x70\x05\x61\xa5\xf5\xdd\x65\x25\x82\x83\x0c\x74\x27\x6a\xdf\x76\x89\xd0\xa4\x7f\x60\x86\x5c\x85\x5f\x58\x28\xff\xbf\x70\x51\x69\xe5\xa4\x83\x9b\x1e\x96\x60\x58\xee\xf2\xfd\xa0\x45\x7a\x84\x33\x5b\x0a\xb7\x4d\xf0\x5e\x4f\x70\x2b\xba\x25\x2e\xfe\xe8\x07\x03\xd3\x4e\x71\x1d\xad\x62\x75\x1a\x43\xfa\xba\x9f\x0a\x7c\xfc\x52\x84\x8f\x5d\xf7\xb7\x88\xb8\x6b\x12\x24\x6e\xa6\x6b\x3f\x1c\x54\x27\xdc\x09\x2b\xfa\xbd\x3d\x20\x91\xa0\xd6\x10\xd3\x33\xb5\x3e\x94\x0d\x2d\xc7\x5b\x78\x96\x16\x9e\x22\xcc\xd3\x1f\x0a\x4e\x2c\x5b\x43\x30\x9f\x75\x42\x63\xbd\xc9\x07\x82\x5b\xd4\x70\x66\x6e\x74\x27\xe1\x85\xc8\xcf\xb5\x8a\x01\xdf\x08\x59\x0d\x16\x11\x3b\x3f\xb4\x13\xc4\x27\x57\xb5\x7e\x59\xd8\x45\xc0\x37\xe5\xc8\xb4\xd1\x92\x71\x33\x6c\x7d\x7d\x6d\x19\x21\x2d\x99\xdf\xb4\xd3\xd7\x83\x05\x43\xa9\x93\x85\xda\xf1\x9e\x04\xf3\x89\x61\xd9\xbd\x53\xd6\x10\x0e\xfa\xc5\xaa\x5e\x4b\x15\x24\x1c\x8d\x6b\x17\xe2\xfc\x21\x46\x18\x7a\xc4\xbc\xf3\xfd\x3a\x8e\xc0\x5f\x16\x1f\x5b\x13\x3f\x7a\xe7\x32\x9e\x3a\x6b\xdd\x3a\x45\x02\x6f\xc9\x75\xee\x83\xe6\x75\x04\x5d\x15\xbf\x96\x03\xa3\xc8\x35\xdc\x10\xbd\xff\xff\xe0\xe1\xad\xcc\xaa\xbd\xa3\x68\x30\x8b\x96\x59\x36\xc3\x97\xb0\x61\x7a\x71\x68\xf7\x4c\x5f\xb6\xf2\x1f\xaa\xf9\x2c\x17\xc6\xf5\xee\x24\xe8\x5c\x59\xbd\xcb\xe7\xa9\x2b\xa1\x43\xe2\x7c\xcc\x0d\xd1\xf9\x84\x53\x9b\x3f\x7a\xff\x78\xa7\xc3\x86\x63\x43\x51\x8f\x17\x5c\xaa\x24\x18\xb8\xce\xe1\x56\x55\xbf\xc4\x82\xcd\xad\x1b\x75\x4d\xaa\x9c\x84\xc0\xbc\xb8\xce\xb7\x3e\xa2\x6c\x78\x62\xe7\x58\x5e\x73\xff\x18\x1b\xf4\x78\x9a\x52\x79\xcd\x6f\x13\xf2\xe6\x96\xee\xd3\x13\x1a\x66\x60\xe2\x64\x37\x57\x75\xce\x0a\x82\xa6\xbf\xc4\xde\xac\x6a\x19\x36\xe4\x4d\xb0\x6d\xa5\xf2\x66\x06\x0f\xcd\xd6\x88\x1d\xb7\x91\x26\x4c\x95\x9b\x6d\x64\xb8\x71\x33\x81\x9e\x9a\x05\x4b\x28\xac\x21\x98\xa4\xbc\x77\x29\xbe\x7d\x85\xc1\x92\xf1\x47\x8a\xeb\x3f\x74\x31\x68\x39\x3d\x4b\xd5\x53\x41\x9e\x30\x77\x55\x8e\xfb\x4b\x81\xdd\x04\x1f\xf7\x93\x66\x5a\xf2\xb6\x84\x17\xc7\xb9\xba\x7e\xba\x69\x12\x0e\xa7\x26\x96\x8f\xbf\xf4\x99\xc1\xaa\xae\x76\x07\x1b\xb7\x46\x36\xfc\xd8\x95\x2e\x1f\xab\xc9\x49\x30\x57\x09\x3f\x57\x96\x71\x9d\xd0\x37\x5e\x4d\xc3\xeb\x66\x10\xc1\xb5\xd3\xd2\xe4\xdc\xe6\x7e\x06\x5c\xbe\x52\xa5\x52\x2a\xc3\x0c\x36\xb8\xa8\xcd\xcb\x9b\xa0\x46\x58\x7f\xc6\xa9\x6e\x7c\xfe\x21\x82\x75\x97\x58\xa4\xa3\xd1\x4c\x82\x9b\xd7\xeb\xb5\x3f\x6f\xfd\x61\x30\xc7\xcf\x2d\xfb\x73\x9d\x33\xe1\xb5\xab\xee\xdc\x1d\xaa\xc7\x08\x3d\x73\x03\xf5\x6b\xfb\x96\x13\x6e\x2d\xb6\x2d\x14\x5b\x31\x91\x0d\xbd\xd6\x5c\x16\x71\x0e\xbe\x6c\x88\x57\x49\x6a\xb0\x97\x0a\x24\x28\x17\x3a\x58\xdc\x8c\x59\x4a\xe8\x50\xde\x52\xdb\x39\xff\x26\x21\x5e\x5f\xe3\x81\xb4\xa6\x02\xe1\xac\xcf\x8f\xab\x46\x76\x6b\xd9\xf0\x21\x76\x82\xc4\x37\x39\x31\x42\xb9\x7f\xc0\xa7\x69\x36\x57\x09\x98\x3f\xa0\xe8\xb0\x70\x2b\xe1\xe1\x5e\x87\x5f\x1d\xbd\x3b\x08\x65\x32\x97\xf4\x17\x1f\xb2\x20\x5c\xb8\xbb\x55\xe7\x52\xb4\x26\xc1\xa3\x6c\xe2\x6a\xdf\x07\xf3\x08\xf6\x05\x51\x26\x73\xd3\x5b\x19\xfc\xd4\x76\x9c\xa1\x64\xdd\xc1\xe0\xdc\x8c\x0d\x1f\x26\x5d\xd2\x21\x78\x97\xf6\x18\x6d\x71\xd0\x24\xbc\xbb\x14\xcf\xa1\xb2\xbb\x87\xc1\x13\x91\xf2\x0b\xfa\xfd\x17\x09\xf5\xab\x45\xeb\x0e\xb7\xf6\x31\xf8\xe0\x3e\x57\x71\xd5\x12\x21\xc2\x52\xdf\x38\x51\x85\x78\x15\x82\x93\x3b\xa7\xfa\xd2\x75\x82\x84\xf5\x8c\x46\x13\x77\x83\x00\xa1\x63\xc1\x84\x1f\x5c\xab\x8d\xd8\x30\x98\x3d\xff\xe0\xc6\x62\x2d\x82\xda\x7e\x09\x6f\xcf\xd1\x57\x7d\xeb\x13\x31\x81\x9f\x3d\xae\x84\xda\xb8\x9b\xfa\x69\x31\x11\x84\x1f\x37\x0b\x0e\xd2\xba\x96\x12\x0c\xbe\x16\x51\x68\xd4\xe3\xa4\x7f\xe0\x8f\xd4\x2b\x6b\xc1\xce\x6e\x06\x06\x42\x33\x84\xec\xb3\x6e\x13\xce\x88\x58\x5e\xfd\xc3\x7f\x97\x60\x3d\x32\x72\xa5\xb4\x5e\x8c\x60\x35\xe8\xff\xa1\xc3\xee\x1a\xa1\x7e\xa2\x75\xca\xeb\x51\x9c\xda\xb5\xb1\xe0\x6f\x79\x49\x85\x91\xe5\x56\xec\x65\xef\xf4\x47\x1a\x9f\x6c\x2d\x08\x1c\x46\x5a\x53\x0a\xa7\x1f\x60\x2b\xff\xe1\xb2\xec\x73\x57\xf5\x75\x7c\x04\x33\x03\x7c\x5b\x15\xcd\x41\x90\x2e\xb1\x18\xc7\xf7\x5a\xfb\x5f\x10\x8f\x68\x2d\xdf\xb3\xf1\x11\x33\xdc\x66\xbb\x96\x63\xe5\x08\x83\x9a\xdf\x77\x7f\x8f\x1f\x94\x22\x58\x06\xbc\x8e\xa9\xdd\x0f\x06\x07\x4e\xea\xea\x0c\x0c\x6a\xd0\x7f\x18\x96\x59\xd5\x13\x21\xb9\x9d\x90\xa4\x61\xf9\xf0\xb3\xc8\x69\xc2\xdd\x36\xd7\x24\x5f\x5d\x2d\x42\x01\xcc\xcd\xbb\xe3\xd7\x11\x7e\x19\x0b\xf2\xfe\x36\xdc\x40\x50\x92\xa9\x19\x5f\x20\xe7\x40\xa8\x5c\x10\xfb\xc3\x28\xd4\x98\xe0\x26\xff\xe4\x90\x4b\xa8\x09\x81\xeb\x7e\xd3\x56\xb9\x9c\x49\x04\x89\xc6\x77\x8a\x9b\x8d\x8d\x09\x5b\x9e\xce\x98\xae\xd8\x57\x44\xd8\xf0\xe8\x8c\xcd\xd9\xaf\x45\x04\x19\x5b\xd6\x89\xbf\x28\x98\x9b\x79\x64\xb9\xac\x35\xe1\x9b\x53\x88\xb8\xb9\xf2\x66\x36\xdc\x39\x5e\x7f\xb5\xf0\xba\x06\xe1\xe2\xcb\x93\x6b\xcd\xa6\xa8\x13\xe6\xb8\x72\x7a\xc9\x1d\x0d\x22\xe8\xed\x9a\xbb\xb0\x41\x37\x92\xe0\xb4\xaa\x5d\xb1\xd6\x6e\x07\xc1\xea\xbe\xdc\xe5\x9c\x20\x4f\xc2\x33\xad\x0a\x97\xdf\x9e\x5b\xd9\x50\xda\x30\x90\xfd\xd6\x9c\x9b\xb0\x48\x32\x62\x8a\xfb\xbe\x48\x82\xcd\xf8\x59\xa5\x4a\x9e\xbe\x2c\x34\x86\xa4\x6e\x4d\xe2\x92\x27\x28\x5b\x88\xd9\xcd\xb4\x26\xc2\x45\x95\xec\x19\x07\x96\x24\xb3\xe0\x72\xff\xeb\xec\x47\x46\xc9\x84\x81\x09\x5f\xcc\xf2\x17\xd6\xb3\x70\xb3\x33\x2c\xd6\x77\x5b\x16\xa1\x79\x59\xf9\xb2\xdc\x5f\x43\x0c\xb2\x76\x7a\x3f\x6f\xff\x75\x98\xd0\x96\x17\xe4\x9c\x11\x9e\xcb\xc2\x94\x8f\x93\x5c\x9c\x82\x7a\x18\x70\xc5\xe7\x3e\x32\xea\x68\x64\xe1\x6d\xe7\xdd\x7d\x01\xa3\x08\xba\xe0\xbf\x93\xc5\xf5\x8c\x85\x58\xde\x91\xe3\x7e\xa3\xa5\xc7\xfd\x50\xd0\x91\x97\xa9\x34\x86\xf7\x51\x66\x94\xc2\xba\x4e\xf8\xe1\xd9\xd1\xb3\x53\x85\x8b\xd0\x36\x6b\xc5\xb9\x47\x27\x07\x18\xdc\xd6\x7b\xec\x12\x7f\x42\x9e\x90\x30\x10\xd9\x5c\xad\xbf\x90\x20\x59\x3f\xd2\x76\xfb\x97\x38\xe1\x81\x5d\xad\x52\x7e\xa1\xf1\xbf\xf0\x91\xf7\xcd\x70\x72\xf8\x42\x82\xc3\xc1\x62\x95\x82\x4f\x1d\x0c\xf2\x2b\x0b\x5e\x27\x4d\x09\xa5\x7f\x60\x7f\x65\xf3\x77\x19\xa1\x39\xff\xc2\x50\xf4\x9d\xa8\x32\xab\x2e\x06\xae\x6d\x57\x6b\x05\xdc\x52\x08\x4f\xb8\x05\x4f\x28\x70\xa6\x12\xf6\x64\x8b\x6d\x4d\x94\x4a\x25\xfc\xa6\xfc\xe5\x8a\xa3\x65\xb2\xdb\xd3\xce\x39\x2d\x32\x84\xac\xfb\xfb\x53\xd6\x06\x72\x10\xd6\xf3\x2c\x69\x79\xde\x3f\x8f\xf0\xbc\xa4\x77\xd6\x8c\xe0\x1d\x04\xd6\x65\x8e\x17\x12\x23\x22\x6c\x80\xb1\xb6\x9f\x8a\xb4\x30\x1b\x18\xf7\xa8\x5b\xcc\xa5\x17\x0c\x86\x23\x7f\x7c\xf8\xb4\x6f\x36\xe1\xd2\xdc\xee\xf8\xa6\x2a\x7e\xc2\xaa\x41\xc1\xda\x47\x47\xbd\xd8\x90\x3a\x43\xc3\x34\xf0\xca\x21\x42\x41\x07\x5f\x45\x97\xe5\x69\x06\x9f\x8f\x4c\x37\x69\xda\x3e\x95\x10\x52\xbd\x5f\xf3\xfe\x2d\x73\xd6\x58\x11\x69\x72\x7e\x69\x70\xf6\xe9\xff\xbf\xb2\xac\x61\xe1\xf4\xa1\xc6\x30\xdb\x25\x72\x84\xd0\x0f\x22\x0f\x15\x45\xb4\x08\x5b\xb4\x67\xcc\x56\xe4\x95\x24\x34\x66\xd7\x39\xe8\x0c\x94\x11\x36\x1c\xe8\x37\x90\xfc\x95\xcc\xc2\x92\x33\x6e\x02\x7f\xcb\xd3\x9f\x92\xdc\xfe\xf3\x0a\x4a\xc6\xb0\xfb\x90\xd6\x8a\x8f\xde\xef\x98\x31\x18\xbd\x9b\xdf\xc2\x13\x2d\x48\xd8\x62\x77\xe2\x6a\xb2\x1c\x11\x32\x92\x42\x17\xfb\x95\x73\x10\x36\x5d\xcc\xee\x9e\x7a\xa7\x80\xa0\x39\xf8\xcd\xf5\x96\xdb\x62\xc2\x4c\xdb\x6b\xd9\x6b\xfc\x1e\x31\xf0\xb2\xf2\x6b\x7a\x19\xc6\x45\x63\xf0\xe0\x78\xba\xdf\x30\xff\x35\x83\x0b\x9c\x3a\x8a\xa1\x0f\xbf\x31\x78\x2a\xab\xa4\xde\x60\xa0\x47\x63\x88\xf8\xb5\xa4\xc0\x35\xf8\x2d\x83\x5f\x5a\x56\xc9\x7b\x3a\x7e\x30\x68\x34\x39\x96\x91\xd0\xa8\x4c\xff\x40\xfb\x9b\xb0\x30\xd5\xd4\x05\xff\x82\xcf\x6d\x33\x46\x7f\xe7\x17\x06\x12\x7e\x4d\xbe\xdd\xb7\x36\x13\x0e\x05\x25\xdd\x93\xcf\x0b\x62\xc1\x7a\x64\x9c\x6b\xdf\x5a\x3e\xc2\x7a\xa9\xc2\x9f\x95\x5a\xc6\x84\x12\x0b\xa7\x75\xd6\x19\x7d\x0c\xcc\x9f\x56\x8e\x2c\xd0\x77\x24\xec\xe0\x29\xf0\xda\xf0\x58\x89\x90\x79\xec\xd3\x23\xfb\x3e\x19\x36\x24\x6e\xea\x5c\xd2\x73\xb5\x8f\x41\xdd\xb7\x60\xe9\x1a\xb9\x4b\x84\xf3\x93\xcb\x32\xb8\x54\xfd\x59\xc8\xd5\x3c\x1d\x74\x4f\x54\x98\xf0\xb4\xb0\x37\x21\xcf\x57\x98\xf0\xa0\x37\xef\xd7\xde\x9f\xd6\x84\x15\x18\xe1\x2e\x8e\x2d\x24\xec\xfc\xb3\x59\xfa\xec\x9d\x44\x16\xde\x7f\x9d\x77\x86\xc7\x33\x83\x90\xf9\xe7\x8a\x9a\xb6\x87\x01\x61\xfb\x8f\x5c\x03\xfe\xd1\x0f\x61\x91\xf6\x94\x4d\x77\xb8\x3f\x32\xf8\x1a\x7d\x77\x4f\x4f\xd4\x49\x82\xf2\x8e\x0d\x9e\x97\xdc\x7f\x33\x88\xd6\x79\xdf\xa7\x16\xfa\x83\x81\xb3\xe3\xb1\xef\x9d\x2f\xbf\x30\x50\x73\x5a\x26\xb8\xf6\x8f\x3a\xc1\xed\x4f\x6e\xff\x52\x1f\x4f\x82\xe9\xf3\xea\x98\x89\x5c\x7b\x69\xf8\x55\x6b\x83\xda\xd5\xd1\x15\x6e\x60\xa9\xbc\xda\xe0\x2f\x06\x57\x3f\x1a\xcb\x68\xbb\xf0\x13\x44\xab\x4c\x2e\xbe\xfd\x32\x9f\x0d\xff\xef\xff\x9e\x93\xca\x4f\x7d\xd1\x73\xb0\xe2\x5f\x50\xb8\x5a\x14\xa1\x70\xf4\x11\x5b\xf1\x1a\x29\x1c\xf8\x0b\xce\x64\xfb\x50\xd5\xbc\x70\xc2\x3d\x8d\x1e\xfd\x15\xe7\xc3\xd9\xca\x59\x5f\x95\x8b\xdb\xaf\x07\xb2\x15\xa1\x09\x0f\x3a\xa7\xbb\xca\x10\xb6\xe4\x9e\x6e\x33\x9c\x37\x8f\x90\xa0\xdb\xff\x89\xd3\xc0\x87\xf0\x69\xfb\xac\x87\x6b\x42\xa5\x09\x8b\x79\x2f\x6c\x55\x88\xe2\x25\x2c\x13\xe6\x71\x95\xdf\x27\x41\xe8\xc8\x57\x99\xe6\x25\xb7\x6a\xf4\xa7\x34\xeb\xde\xdd\xc1\x5b\x2c\x48\x8a\x72\x28\x4a\x54\x94\x10\x26\xcd\xde\xc4\xb9\xc1\x3e\x9d\x85\xaa\xd9\x1e\xb2\x4d\x0b\xed\x08\x73\xf6\x6c\xf5\x0f\xb7\xe5\x26\x28\x8f\x93\xbf\x3c\x8d\x6f\x1e\x1b\x8e\x1f\x99\x73\xfd\xe7\x6d\x4d\x42\x6e\xd8\xb5\x05\x37\x26\xac\x22\x88\x67\x2d\xf2\xd6\x1b\xbd\xdf\x9d\x8a\x8b\x50\xf6\xb8\xa4\x41\xa8\x15\x92\xe0\x52\x72\x96\x61\x83\x8d\xd8\x94\x66\xc9\xac\x71\x6c\x30\x57\xa1\xc9\x3e\x19\xb6\x84\x87\x23\x31\x07\x9f\x9f\xb4\x24\x5c\xaf\x55\x0c\xda\xb7\xcd\x88\x0d\x61\x3a\xb7\x46\x6e\xed\x7f\xc8\xe0\x8c\xf6\x86\x7d\x52\xc5\xb1\x04\x73\xeb\x81\xc3\xd3\xf4\xd5\x08\x6f\x6c\x2c\x0d\xfc\xf7\x09\x12\xb4\x4f\x19\xa8\x26\x7b\xa8\x10\x7e\x1c\x16\x28\xea\x6f\x7d\xc3\xa0\x65\x1e\xff\x80\x83\x7c\x1a\xa1\x7f\x53\x5e\x39\xaf\x62\x0a\xe1\x64\x92\x40\xe5\xfb\x29\xbc\x84\x47\xd2\x3d\xe6\x87\xe2\xde\x33\xd0\x6d\x15\xb5\x33\x55\x3d\xcd\xc2\xd9\xa9\xa1\xab\x92\x94\xd5\x68\x0c\xf7\xd6\x2c\x4d\xde\x38\x6b\x3b\x61\xd7\xaf\x7a\xed\xb6\xda\xdd\x04\x2f\x25\x9f\x75\x05\x1e\x39\x84\x90\xfe\xa0\x53\xe5\x02\x45\x84\xe6\x6d\x46\xb1\x9a\x6e\x11\x84\x1d\x15\x26\xeb\x78\xb7\x49\x10\xf4\xdf\xeb\x2b\xae\x8a\x98\x4e\x58\x6b\x31\x4f\xe3\xc6\xc8\x15\x82\x98\x8c\x4d\xb5\xdd\xd3\xe5\x84\xcb\xc7\xce\xff\x0c\x12\xb7\x23\xc4\xab\x4d\x5e\xf6\x2c\xf6\x23\x83\x67\x9b\x6b\x9a\x45\x96\xae\x25\x36\x48\xdc\xfe\x64\xa8\x35\x89\xc0\x65\x5f\x7d\x6e\xa6\x7c\x2e\xe1\x44\xf0\x81\x66\xfb\xf5\x82\x84\xac\x0c\xab\x9d\xe3\xac\x3b\x4b\x10\x65\x68\xa2\xe4\x78\xce\x96\xc6\x10\xae\xe0\x30\xf5\x7a\xfd\x14\x82\xbd\x4e\x5e\x8b\x53\xa7\x16\xe1\x71\x80\xe2\xa2\x57\x57\x89\x0d\xaf\xc4\x94\xa4\x9a\x8f\x96\x32\xc3\x61\x17\x8f\xf9\xd4\x0c\x31\x70\xca\x0f\xef\xe6\x9f\x37\xc2\x86\x6b\x62\x6a\x43\xb6\xa6\x8b\x68\x0c\x1b\x0f\x6d\xf8\xa2\xbe\x88\x9b\x70\xee\x7d\x57\xcd\xa2\xf5\x1c\x04\x29\xf5\xb3\xdb\x5c\xbf\xf1\x13\xda\x7a\x05\x44\xc7\x7f\xbf\x40\xe8\x34\x6c\x1a\x9f\x14\x7b\x91\xc0\x3b\x7e\xbb\xf2\xa1\xd7\xce\x84\x9b\x6b\x52\xd7\x3a\x9f\xeb\x66\x90\x5b\xf4\x6d\xde\xc9\x6c\x0e\x82\xf1\xe0\x7c\xb1\x84\x48\x71\xc2\x8c\xf0\x3b\x4f\xb6\x0d\x49\xb3\xc1\xfb\x52\xb5\x67\x79\xf6\x51\x36\xbc\xb6\x34\xb2\xd8\x58\xbf\x85\xa0\x90\x72\x64\x99\x5c\x6a\x1a\x0b\xcd\x9e\x39\xeb\x7d\x64\xbb\x09\x66\xa5\x1b\x6f\x6d\x9f\xd9\x4d\xd8\xe5\xa8\x6f\xf1\xf9\x6e\x19\x61\xd5\xd4\x2d\x9c\x03\xde\xb1\x84\x48\xfd\xd7\xb9\x3d\xf3\xd3\x59\x58\x5f\xf5\x39\xb9\x7b\xdb\x4a\x42\xcc\x44\x77\x1e\xce\xc3\x91\x2c\xe8\x3d\x59\x6f\x24\xf8\x7d\x3d\xe1\xd9\xab\x94\xfa\x53\x61\x27\x09\x73\x06\xfa\x75\xd7\x59\x17\x13\x52\xa4\xe3\xc9\xb2\xa8\x93\x30\x7d\x0e\xc7\xbb\x93\xfd\xa7\x08\xb3\x9f\x26\x9e\xc9\x18\x6e\x27\xe8\x9d\x77\x0e\xc8\xaa\xbe\x4d\x50\xdc\xbf\x95\x51\x88\x19\x4f\x68\x78\x91\x75\x74\xef\x2f\x23\x82\xfd\xf5\xef\xf7\xe5\x65\x03\xd8\xd0\xf8\x6d\x46\xd5\xe3\xb5\xa5\x84\x07\x12\x5b\x9d\xba\x12\x6b\x09\x8d\x43\x2b\x03\x78\x2e\x8f\x30\x08\x9d\xcd\xf1\x67\x4b\x33\x43\x88\x58\xd2\x59\xce\x93\x14\xc7\x86\xa0\xae\x7b\xbe\xb2\x59\xd6\x84\xa2\x6d\x75\xb5\x5e\xad\xb3\x08\xc1\xc6\xf3\xa2\xd5\x8a\x97\x13\x3c\x59\xc6\x93\x9f\x4b\x6a\x10\x5a\x38\x7e\xcd\xbf\x36\xb4\x92\x10\xaa\xf7\x48\xee\xd6\xeb\x26\x16\x6c\x25\x6b\xce\x1e\xdc\x10\x45\x28\x3e\xff\x24\xc9\x2e\x36\x9b\x90\x16\x5c\x2b\x1a\x9a\xcd\x8e\x28\xcf\xf6\xc9\x2d\x93\x6d\x08\xbe\x2d\x95\x1a\xf3\x78\xaf\xb0\x20\xb5\xa8\xbf\x6c\x86\x94\x2d\x21\x00\xf7\x03\x94\x94\xb6\x10\xa6\x3e\x89\xfa\xbc\xe9\xaa\x0b\xc1\x26\x41\xdc\x6a\xd1\xda\x1c\xc2\x69\x2d\x83\x03\xaf\x2e\x99\x10\xe4\xe4\x66\xfe\x1a\x6c\xd2\x20\x9c\x34\x62\xcd\xf6\x1b\xbf\x8c\xb0\xc7\x5d\x7a\xda\xa1\x06\x15\xc2\xc4\xe2\xd8\x75\x4a\x3b\x18\x36\x08\x73\x8c\x3b\x67\x3f\x33\x84\x0d\x07\xef\xd6\x3d\x79\x5a\x72\x9e\x50\x7e\xbe\x58\x66\xc3\x95\xb3\x84\x97\x5b\xe3\x33\x7f\xfe\xcc\x27\x6c\x1d\x37\xfe\xab\xe9\xfd\x3a\xc2\x3a\xdb\x6c\x67\xf9\x92\xc7\x84\xc5\xb3\x92\xd7\xf1\x09\xdd\x21\x6c\xf2\xe4\x9d\x58\xf9\xac\x99\xd0\xf8\xce\xf6\xc8\xc7\xf6\x15\x84\xfa\xab\xb2\xeb\xf8\x14\xf4\x58\x98\xb3\xd8\x56\x37\x93\x4e\x13\xd6\x30\x4a\x53\xff\xec\x31\x20\xbc\x31\xcc\xa8\x54\x8b\x5a\x45\x50\x97\x2d\xf8\x7d\x36\x05\x0c\x06\xbe\xcf\x37\x79\x14\x3f\x8d\x90\xf2\x7c\x1b\xdc\x4c\x07\x18\x84\xc4\x7c\xe1\x75\x4c\x58\x44\x58\x33\x7f\xfc\xec\x9d\x54\x42\x38\x5d\xe4\x2f\xd1\xa3\x59\x42\x78\x77\x21\x3c\xa6\xcc\x32\x90\x90\x74\xdc\xa9\xa8\xb5\x3d\x97\x85\xd7\x0e\x97\x4c\x7e\x9b\xa4\x10\x44\xae\x17\xf7\x04\xd4\xd7\x10\xae\xa6\x1b\x6b\x9c\x5c\x9a\xc7\xc2\xea\x38\xf5\x6f\x2d\x95\x09\x84\xbb\xf3\x5b\xb5\x18\xb3\xe5\x6c\x98\x15\xb0\xcb\xe8\x4d\x7c\x38\x1b\x5c\x27\x3a\x73\xe9\x8c\xbf\x57\x82\x1e\xcf\x1c\xeb\xa8\x1d\xaa\xa3\x9f\x6a\x6e\xa6\xd8\xd6\x95\x04\x4e\xd7\xea\xe5\x6b\x05\x33\x59\x98\xa7\x35\x78\xcc\xf5\xe0\x14\xc2\x9f\x61\x5f\xd9\x02\x85\x42\x82\xdf\x9e\x76\x6f\x5d\x97\x07\x2c\x28\xf4\x5d\xf7\xd9\x7d\x31\x8b\xb0\x3a\xf9\xdc\xd5\x7d\x67\xb2\x08\xcf\x9a\xd6\x5f\x6e\xb1\xb4\x23\xf8\x34\xa5\x78\x48\x25\x3b\xb0\x61\xe6\xce\xcd\x2f\xcc\x5c\x17\x12\x84\x1c\x9e\xbb\x7a\xdc\x7f\xc8\x60\xd6\x11\x95\x87\x4b\x69\x09\x5b\xf1\x98\x9b\xf9\x4e\xff\x76\x20\x8d\xa1\xdc\x8b\x91\xb6\x7d\xb7\x9d\x50\x6e\xe6\x30\xd7\x71\x2b\x07\x41\xad\x5b\xe9\xfb\x3a\x9f\x69\x84\x96\x69\x29\x5e\xa7\xee\xfa\xfc\x0b\x83\x1e\x33\x97\xb9\x3c\x91\x67\xc3\xc6\x4f\xe2\xc7\xee\x39\x7f\x64\xa0\xcc\x23\x50\xb6\x78\xa5\x25\xc1\xb3\x78\xee\x82\xb8\x8f\x32\x84\x20\x15\x5f\xb1\x9e\x27\x95\x04\xde\x2d\x82\x4b\x44\x6e\xa7\x10\x7a\x3c\x5e\x04\xef\xb9\xfa\x95\xc1\xaf\xfc\x0e\xef\x03\x9f\x35\x68\x0c\x97\xfa\xef\xfc\x7a\x2f\xd4\xce\xc0\x52\x62\xce\x46\xc7\x9f\x25\x84\x88\xe0\xea\xec\x47\x61\xb2\x84\x47\x83\x07\x22\xb5\xaf\x25\x10\xd6\xcc\x0b\xe4\x12\xb5\x4a\x24\x04\x48\xdd\x7b\xbb\x34\xc2\x80\x30\xb7\x68\x5b\xe8\xd0\x0c\x53\xc2\x34\x99\xed\xdc\x3e\x3d\x21\xa3\xaf\x96\x91\xfa\x53\x81\x5d\x04\x25\x0b\xe7\xde\xd7\x02\x71\x04\x9d\x64\x97\xf3\xc2\xee\x6a\x04\x85\xc5\x2b\xda\xe6\x4d\xe7\x23\x28\x5e\xbd\xb3\xd2\x39\xc1\x9f\x85\x6b\x93\xa3\x23\x39\x42\xf3\x08\x93\x6c\xd3\xd3\xfe\xc2\x35\xad\xb8\xe4\x2f\xfc\x78\x8b\x93\xbd\x86\xd4\x08\xea\xa2\x0d\xef\xb7\xe7\xbd\x61\xb0\xab\x27\xc4\xf9\xd1\xee\xbc\xd1\x17\x72\x52\xec\x42\x47\x5b\xc2\xe9\x85\x77\x53\xcc\x3c\x0b\x08\x49\xb5\x07\x83\xf7\xd6\x47\x13\x66\x6e\xa9\xaf\xe2\xd7\xc8\x60\x2b\x55\x09\x5f\xed\x45\x38\xce\x10\x24\xdd\x77\x05\x7f\xec\xdc\xc1\x42\x41\xa9\x60\xc0\xee\x27\x87\x08\x8a\x9d\x5b\xec\x54\xec\x0b\x08\xf5\xd2\x53\xae\x57\xfd\x2c\x22\x88\xc7\x8f\x9c\xd5\xb9\xe1\x41\xc8\xe5\x91\xce\x33\x39\xe1\x41\xd0\x8f\xf5\x59\xaf\xfc\x6e\x1f\xa1\xa1\x46\x33\xaa\x32\xc3\x83\xc0\x9f\xd8\x15\x78\xc7\x95\xc5\x82\xfe\x91\x6d\xe2\x2f\xa6\x44\x12\x6c\x6f\x3c\xd2\x2a\x99\x16\x49\x10\x3b\xf6\xc9\x55\x7e\xa7\x08\x61\xf1\xc1\xaa\x66\xee\x96\x1d\x84\xec\x36\x9b\x21\xc9\x73\x57\x59\x58\xb2\xff\xba\x5e\xa3\x9f\x0a\xc1\xf4\x5d\x10\x6b\xff\xf1\x44\x06\x5c\x81\xfe\x9d\x77\xde\x9b\xd1\x18\xb6\xde\x9b\x11\x7d\xc1\x60\x80\x81\x73\x76\x1a\x97\x77\x4c\x2e\x41\x70\xaa\x4f\xec\xbb\x1c\x29\xc2\x8b\x42\xef\x13\x96\x41\x9a\x84\x0a\x8f\x87\xb3\x55\x7f\x95\x13\x6a\xc6\xa7\x6e\x90\x6f\x29\x64\x61\x56\xd0\xa9\x97\xfb\x74\xca\x09\xeb\xd5\xae\xcf\xde\x34\xc4\x4d\x90\xc8\xb7\x1d\xf0\x95\x7d\xc8\xe0\xf8\x46\xb1\xeb\xb5\xde\x42\x34\x86\x37\x41\x1f\x6e\xec\x68\x55\x22\x68\xe9\x44\xf8\x5c\xd9\xf8\x8d\x41\xc2\x60\xb8\xde\xf8\x0f\x93\x08\x99\x8f\x33\xc4\x4b\x9a\xc6\x13\xac\x4d\xbe\x9c\x55\x5b\xb8\x8c\xb0\xc1\x32\x3d\x70\x9e\x9a\x01\xc1\x91\x7f\x01\xcf\xb4\x48\x63\x36\x94\x66\x97\x49\xb4\x28\xcb\x12\x7c\x56\x68\xb9\x58\x2f\xd7\x20\x24\x4f\x39\xb2\xc7\xa4\x92\x93\x60\x15\xba\xd8\x71\xc6\xad\x62\xc2\xc7\xf4\xf0\xca\xbf\x18\x4e\x50\x3e\xd9\x8b\x44\x82\xc7\xb4\x96\x9a\x94\x05\xd1\x84\x17\x1b\x16\xdd\xbe\xae\x12\x4d\x78\x37\xcc\xeb\x7d\x39\x2d\x90\xd0\x74\xf0\x81\xe4\xa0\xd1\x6d\xc2\x4d\xa5\x45\xf3\xa7\x4a\x14\x8d\xbe\x7e\xee\x7a\x7e\x31\xaa\x84\xf9\xcf\x02\x1e\x28\xec\x1a\xdd\xec\x6e\xf7\x91\xfa\x0d\x65\x42\x54\xc0\xfd\x75\x5e\xbb\x97\xb3\x41\x60\xf6\xdc\x0f\x5c\x81\xf3\x09\xeb\xc2\x45\x4f\xdb\xf9\x2f\x20\xb4\xbd\x2e\xbf\x74\x94\x43\x95\x70\x39\x76\xa6\xfc\xfb\x02\x13\x82\xcd\xeb\x26\x75\x79\x9d\x7b\x84\x0d\x9e\x6e\xc1\x5b\x84\x4a\x08\x5d\x29\x26\x5c\x0b\xf6\x65\x11\xfc\x57\xd5\xae\x48\xab\x88\x61\x21\x57\xc5\x2d\xd6\x2d\xeb\x26\xe1\xc6\x99\xf6\x09\xee\xa3\xd8\x27\xe0\x51\x86\x32\x03\x42\x7c\xd8\xbd\xc9\xd1\xa6\x09\x84\x26\x61\xe5\x19\x0d\x77\x5a\x08\x0f\x3e\xc8\x96\x98\x5a\x35\x13\x7a\x93\x2b\x8a\x7f\xee\xbd\x49\xf8\x24\xfa\xb2\xfe\xd3\x2e\x2d\xc2\x7b\xdf\x3d\x67\x2d\x6e\x1f\x25\xcc\x3f\xe3\x2c\xfa\x9a\xbb\x81\x70\xf7\xe4\xc1\x6b\x87\x79\xeb\x08\x7b\x5f\x69\x64\x3a\x17\xd6\x11\x54\x73\x0c\xa2\x7d\x1b\x54\x09\x59\x6d\x4a\x49\xaa\xd1\xd7\x09\x4a\xd6\x53\x0f\x2b\xae\xd6\x20\x3c\xa8\xbd\xbd\x7d\xc7\xdb\x22\xc2\x52\x5f\xae\x7b\xeb\xac\xea\x09\x05\x87\xcc\x56\x04\x59\x2a\x13\x32\x38\x1b\xbd\x8e\xd9\xa8\x10\x26\x74\x1f\xa8\x48\x59\xb1\x8a\x50\x59\x91\x92\x9a\x5a\xcf\x4d\xd8\x52\xb7\xdd\x7b\xe4\xc7\x71\xc2\xfe\xb3\x4b\xf3\xb8\x04\x7c\x08\x2a\xe5\x3f\x9b\xe5\x76\xfa\x10\x04\x15\xdf\xbc\x4a\x34\x72\x26\xf0\x55\x29\xde\x2a\x3d\xb1\x9d\x10\x94\x29\xa7\x16\x5a\x62\x4c\x70\x9e\x51\xbf\x64\xea\x7b\x75\x42\xa6\x55\x5a\xa8\xc0\x38\x49\x42\xa4\x4b\x6f\xec\xca\x2b\x62\x04\xcf\xe4\x79\xb6\x9e\x17\x26\x11\x2e\x9e\x5e\x78\x4f\x57\x60\x3d\x41\xa6\x30\xd6\xa2\xea\xb0\x39\x61\xf9\x9a\x81\xb6\xb6\x63\x31\x84\x3d\x6a\xdb\x02\x4f\x16\xba\xb1\xf0\xc8\x64\x43\x46\xd0\xe0\x20\x33\xcc\xe9\x2d\x2f\xbf\x64\x1a\xe1\xd7\x9b\x17\xfc\x56\x6f\x0f\x12\x72\xe4\xbd\x66\x34\x17\x58\x13\x4a\xb0\x23\xcb\xb8\x44\x99\x20\x39\xa1\xbd\x6c\xf6\xc7\x95\x84\x57\xc2\x47\x4c\xd7\x3f\xbd\xc9\x86\x76\xc3\x9e\x16\x99\xdd\xa3\x2f\x8b\x73\x4d\xb6\xec\x05\x65\x82\xcb\x36\xbf\xd8\x1a\x9b\x3c\x16\x24\x9c\xed\x1d\xd7\x9e\xab\x65\xe1\x96\x7b\xdc\xbb\xdf\x21\x09\x84\x53\x9f\xe3\x7e\x4c\xb9\x15\x40\xe8\x4b\xdd\x7d\x3b\xaa\x6f\x25\xa1\xbd\x43\x65\x59\x90\x92\x30\xc1\xa8\x6a\xde\xa3\x7b\xc3\xa7\x09\xad\xb6\x33\x4d\x9b\x99\x2c\xc2\xa6\xef\x2a\x42\xcd\x5e\x39\x84\xdf\x8c\x5c\x99\x78\x49\x3f\x83\x22\x2e\x0e\x91\x1e\x8b\x42\x42\xaf\x79\xee\x1b\x93\xe7\x51\x2c\xf8\x5d\x36\x4d\xe8\x96\x33\x23\xf4\xbb\x2d\x3e\x70\x63\xae\x1e\x41\xac\x42\xf7\x75\xbc\x12\x0f\xe1\x8d\x87\xe0\x6d\x23\xcb\x4c\x06\x7a\x24\x5a\x98\x3f\xcb\x87\xc6\xd0\xb5\x31\x77\xff\xfe\xfc\xdd\x25\xe8\xbb\xba\x0c\x8a\x3f\x5f\xb3\x70\xea\x4d\x51\xe5\x97\x8c\x32\x82\xe5\xef\x3f\x3e\x1b\x4f\xda\x10\x92\x86\x26\xf6\x0d\xe4\xe5\x12\x82\xe4\xd5\x2c\xf6\xe4\xe7\x12\x3e\x3a\x19\x38\xfd\x85\x49\xf1\xcc\x95\xb2\xa7\x73\x09\xf6\xba\x6d\xb7\xbb\xe6\xb5\xb1\xb0\xb9\x3b\xf8\xc2\xee\xd1\xd1\xfc\xc7\x96\x12\xde\xc5\x81\x84\xb3\x74\xbd\xee\xa9\xb6\x1f\x21\x29\x78\x07\x8f\x15\x2b\x90\x0d\x33\x0b\x02\x8c\x85\x6d\x56\x10\xcc\x44\x6e\xa6\x9e\xbd\x1c\x4e\x98\x70\x41\xc6\x60\x69\xe7\x41\xc2\xaa\x57\x72\x67\x4d\x75\x9d\x09\xce\x7f\x70\xd3\x78\x8a\x0c\x21\x7a\x30\x8b\x5b\x6d\xf4\xe1\x10\x96\xe7\x3b\xe2\xb5\xfe\x17\x3e\xde\x7a\x66\x53\xbb\xdf\x8c\x30\xe1\xb8\xbf\xe2\xd7\xa2\xb3\x84\x09\x27\x9b\xe5\xcb\x2a\xce\xb3\xb0\x2b\x53\xb6\xb0\x20\xb6\x82\xd0\xfa\xd6\xe8\x85\xd5\xef\x02\xc2\xc7\x3b\xb6\xe7\x97\x9f\xaf\x20\xcc\xbf\xdf\xb2\xb9\x4a\xe9\x14\x0b\xe9\xdc\xe3\x38\x25\x4f\xa7\x13\xa6\x15\xf4\x27\x9d\x6d\x4a\x27\xdc\xe3\xeb\xce\x63\x72\xcb\x09\x0a\x92\xfa\x9a\x7a\x9a\x8d\x84\xf7\x45\xe9\x61\x9c\xbf\xef\x12\x82\x4e\xaa\x2a\x47\x2c\x6a\x24\x3c\xdf\x9f\x3f\x3b\x33\xaf\x89\x10\x54\x6f\x28\x74\xfd\x57\x30\x61\xb7\x67\x49\x7b\x7e\x5f\x0c\xe1\xb6\xd5\x65\x87\xc8\x57\x05\x84\x92\x45\xd3\x87\x06\xbe\xdd\x26\xec\xf1\xee\xb0\xdc\x9b\x54\xcd\xc2\x85\x47\xc6\x99\xfc\xc7\xaa\x59\x50\x38\xec\xa1\x63\xb1\xed\x3a\x0b\xbc\xde\x47\x93\x1e\x8d\x77\x26\x84\x9e\x56\xb6\xbf\x13\xfe\x9d\xc1\xdd\xb2\x05\xa1\x39\x5a\xda\x34\x86\xe9\x9f\xfa\xee\x3d\xca\x7d\xc1\x8c\x21\xc7\xf0\xa7\x4a\xf7\x3d\x7d\x1a\xc3\xec\x65\x43\x4f\xb8\x8d\x26\xb0\xa1\xd0\xb0\xce\x2c\xc7\xe6\x34\x1b\xbe\xd7\x9a\xbf\x9a\x28\x11\x4a\x98\xbf\x44\xe9\xe6\x5f\x18\x9c\x6c\xbf\x27\xa4\x11\x4a\xd0\x0b\xb3\x9a\x9c\x36\xff\x20\x81\xee\x1e\x7a\xfa\x76\xc4\x9e\xb0\x92\x2f\xa6\xef\x74\xc5\x63\xc2\x80\xdb\x6b\xfe\xb0\x33\x5f\x09\x0f\x9e\x1d\x90\xd7\x5f\x5b\x42\xb0\x6c\x59\x9a\x1c\x3c\xba\x36\xdc\xba\x33\xe3\xd3\xe0\x95\x7c\x82\xf1\x83\x82\x27\x79\xab\xd7\x10\x7a\xce\x4e\x79\xf2\xe9\xce\x20\x33\x06\x63\x93\xad\x7f\x9e\xed\x28\x63\x60\x1c\xaf\x96\xaa\xb9\x4a\x8c\x10\x52\xbc\xf0\xc4\x16\xbb\x4a\x82\x90\x8e\x73\xa7\xbf\x6e\x00\x81\x51\x51\x72\x36\x2d\x9a\x43\xb0\x5d\x33\x67\xd7\x3e\x65\x69\xc2\x2f\x9b\x03\xd3\x4d\xaa\xbb\x08\x4b\x6e\x96\x23\xe1\xf9\x1b\xc2\x63\x3b\x69\xeb\x3d\xb3\x53\x09\x2e\x72\x46\x61\xa7\x38\xfb\x18\xa4\x9a\x9f\xb7\x38\xd0\xf5\x83\x81\xe8\x62\xf2\xd3\xfc\x5d\x46\xc8\xd6\xda\xed\xdc\x34\x7e\x27\xe1\xa5\xc8\xcc\x0d\x9c\xf6\x6f\x09\x8b\x16\x74\xf3\x04\x6a\xb7\x11\x66\x6f\x8b\xf1\xf5\x1b\x45\x64\x67\xe5\xa5\x85\x9b\x4e\x13\x26\xee\xbf\x9a\x98\x70\xe5\x38\x41\x27\xb6\xd5\x4f\xb6\x30\x8a\xb0\x88\x6f\x7d\x4a\x8f\xce\x41\xc2\xb6\xe7\xe3\x92\x36\x97\xb9\x11\xde\x2c\xe7\xec\x78\xd6\x5b\x41\xf8\x96\x7e\xaf\xce\xc0\xfd\x3c\x21\x75\xba\xf6\xd9\x71\xc6\x25\x84\xd5\x8e\x7d\x22\x9b\x38\x52\x58\xb8\x58\x37\x43\x3f\xb6\xfe\x2a\x41\xf9\xe7\x8d\xb5\x57\x85\xee\xb3\xa0\x69\x17\x17\x28\xde\x72\x9f\x05\x8b\x7d\x4f\xdd\x36\x2c\x8c\x24\x14\x0c\x7f\x75\xed\x5a\xae\x46\x88\x39\xcc\x57\x2f\x22\x78\x93\x05\xc9\x17\x49\x0a\xbe\x69\x8e\x04\xb5\xde\xca\x8c\x8e\xdd\x17\x08\xb3\x26\x1c\x2a\x58\x1d\x17\xc7\xc2\xa6\xe8\xa9\x49\x67\xf2\xfc\x09\x62\x93\xb7\x45\x9d\x94\xd8\x47\x70\xd1\xbb\x10\xae\xe8\x7e\x92\xa0\xa7\x2d\x38\xf8\x7e\xf2\x7a\xc2\x1b\xd7\xe6\xcd\xef\x8b\xed\x58\xf8\xae\xef\x2f\x99\x66\xb1\x97\x35\x36\xea\x5e\x2f\x68\xf9\xe4\xaa\x22\xa1\xd5\x63\x5c\x98\xb5\x7e\x0d\x61\x25\x56\x6a\xdc\xae\xf2\x23\x08\xbf\x57\x0d\x50\xad\xf6\x26\x70\x99\x5a\x48\xd5\xec\xf0\x27\x48\xec\x6b\xe6\xa6\xb6\x4c\x42\xb4\xf0\x17\xee\xe3\xc1\xe5\x84\xda\xf4\x01\x0d\xa3\xaa\x32\xc2\xc7\xa7\x62\x13\xb3\x7f\x95\x11\x7e\xdb\xb4\xc5\x5f\xe1\x7c\x40\x28\x78\x2b\xe2\x7a\x79\x74\x74\xd8\x5f\xd2\x59\xeb\x51\x13\xc1\xc2\x77\x76\x8e\x72\xa1\x2f\xe1\xab\xa4\x30\x4f\xb2\x75\x1a\x0b\xe2\x01\xde\xdc\x33\x8a\xd3\x58\xb8\x7c\x72\xfd\xee\x0f\xe2\x7b\x08\xd7\x16\xad\xba\x19\x96\xbd\x83\x60\xf3\xeb\xb3\xc0\xf0\xca\x5d\x84\x3b\x0d\x3f\x73\x6e\x5e\x3f\x48\x38\xb7\xb9\xb7\xfc\xf9\x38\x1d\x82\x7f\x56\xe0\xf2\x85\x85\x19\x25\x50\x2a\x95\x29\xd7\x0b\x4d\xa0\x31\x7c\x9c\x39\x52\x39\x32\x5e\x89\x0d\xa6\x21\x87\x5b\x77\x4c\xae\x25\x34\x04\x0d\x8e\x4c\xaf\xa8\x21\x14\xae\x9e\x2c\x67\xab\x50\x4e\xe8\xdf\xdd\x14\xfa\x3d\xa4\x92\xb0\xa9\x38\x79\x60\xfb\xe8\x33\x6b\xe2\x9a\x43\xfa\x8f\x87\x10\x66\x2e\xf1\x9b\xa7\x20\x13\x42\x70\x79\xd3\x63\x10\xd5\x1b\x40\x78\xd2\x7f\xb1\x43\xe0\x59\x24\x1b\xfe\xf0\xf5\xed\x99\xba\xf0\x38\xc1\x6d\x9f\x7a\x65\xf3\xe9\x01\x06\xda\x6e\x59\xc7\x22\x3f\x2e\x23\x58\x0b\x46\x48\x89\x78\xb7\x30\x63\x28\x5d\x39\xd2\xd6\x2d\xdb\xc7\x86\xb5\x9a\xbb\x16\x6a\x36\x99\xd1\x3f\xc0\x73\x3c\xb4\xee\xa8\x52\x1f\xf3\x0f\x28\xf3\xf8\x3b\x0f\xeb\xfd\x7f\x7c\xfa\x79\x34\x95\xef\xfb\xff\x71\x67\xc8\x94\x32\x95\xb1\x81\x14\x4a\xc6\x50\xc4\x75\x64\x28\x21\x92\xa1\x22\x42\x11\x42\x4a\x51\x29\x19\x1a\x48\xa3\x48\xa1\x84\x46\x95\x79\x2a\xd3\x36\x35\x68\x96\xa2\x50\x49\x42\x51\x21\xf4\x42\xc3\xbd\xbc\xd7\x7d\x7f\xec\xef\xba\x5b\xbf\xbf\xf6\x63\x3d\x8f\x6d\x73\x5d\xdb\x3e\x9d\xe7\x5a\x04\x08\x06\x79\x55\xe7\x32\x66\xac\x21\x68\xaa\xdc\xde\xf0\x39\xdc\x86\xb0\x40\xc9\xc6\x6e\x7d\x8e\x0d\xe1\xfa\x64\x89\x03\x4e\x82\x2c\xc2\x16\x7f\xb3\xbf\x3e\x02\xb9\x04\x55\x7f\x8d\x12\x75\xbd\x5c\xc2\x95\x27\x77\x6d\x02\xb9\xd2\x09\xef\x0e\x7a\x68\x2d\x8b\x56\x23\x08\x6a\xee\x69\xbc\x23\x61\x45\x30\xd2\x16\x9a\xcd\xbf\xa6\x80\xf0\xca\xfb\x71\xf7\x41\x93\x76\x16\x2e\x5a\x8c\x54\xc8\x9a\x16\x10\x3c\x5e\xc9\x5b\x09\x8c\x8d\x6a\x39\x64\x2e\xba\x44\x87\x13\x76\x1e\x91\xb8\x75\xef\x68\x38\xa1\x80\xb9\x11\x60\x78\xf5\x19\x61\x57\xa5\x02\x33\xd5\xc9\x96\x70\x3a\xb7\xee\x57\x96\x94\x0d\x61\xc6\xb9\xca\x46\x2e\x5e\x0e\x42\xbd\xf7\xf0\x07\xff\xb2\x61\x06\x1c\x3f\xcf\x94\x29\xfe\xa8\x63\xa0\x23\x13\xcc\x94\xcc\x16\x20\xa4\x71\xe6\x15\x3b\xf3\xd9\xb2\x21\x66\x79\x15\x9e\xbc\x9c\x4a\xb0\xf8\xbc\xc5\xe5\x6f\x79\x15\xe1\x95\x53\xfd\xd9\xb7\x62\x13\x08\x32\x25\x83\x8f\x45\xbe\x85\xb0\x81\x77\x9b\xd3\xae\x0e\xbd\x69\x04\x3b\xe7\xa3\x76\xbb\x97\xd5\x31\x68\xf3\xaf\x9b\x2c\xf1\x97\x87\xc6\x21\xd0\xc6\xeb\x17\x95\xf0\x9c\x19\x47\xfb\x72\xc5\x80\xae\x89\xb3\x68\x1c\xb9\x19\x29\xa7\x1f\x8d\x8a\xb1\x21\xb1\xff\xf5\xb9\xd1\x35\x37\x09\xdf\xdd\x9a\x5d\x64\x2e\xeb\x11\x5a\xed\x4f\x68\xb4\xc8\xcc\x20\x94\xef\x93\x7c\x7d\xfa\x96\x15\x21\xef\xdb\xe9\x4b\x47\x55\x62\xd8\xf0\x42\x3e\xc4\xfb\x6e\x7f\xc4\xbf\x90\x19\xe5\xf0\x7b\xe1\x26\x31\xc2\xd4\xae\xf0\xeb\xdc\x4b\xab\xd8\x10\xcf\xf7\xf5\xf3\x79\x81\x7a\xb6\x92\xa5\xca\x6d\x6e\x75\x77\x29\x1b\x82\x58\xb9\x8b\xbd\x76\x66\xb3\x61\xca\x22\xc9\xb7\xb6\x9b\xd8\xcb\x95\x9b\x5c\x9a\xc6\x1b\x37\x13\x32\x12\x93\xe3\x33\x79\x2a\x58\xe3\xe5\x7f\x28\x8c\x9e\x30\xfd\xac\x6c\x3c\x1b\x4e\xda\xb7\xa6\xdc\xd8\x5d\x41\x10\xdf\xab\x7f\xb6\x08\xd5\x6c\xc5\x4e\x65\xb2\xb1\x7f\x3c\x11\x8a\xcc\x95\xbb\xcd\xba\x63\x08\x15\x7d\xb5\x49\xfc\x9e\xee\xff\x42\xc9\x12\xf1\x9b\xf7\x0f\xb8\xb1\x21\x6f\x9f\xf5\xd3\xdd\x0b\xf2\xd8\x50\x30\x10\x7e\x68\x6f\xf3\x23\x16\x7e\x7b\xbd\xd9\xbb\x76\x71\x37\x0b\x21\x93\xf6\xfe\xfa\x6f\x64\x8e\x91\x13\x23\xc6\x0e\x84\x5b\xe7\xfd\xf7\xb9\xd7\xdb\xb0\x95\x8a\xbe\x05\xf9\x02\x9b\xf7\xb1\xc6\x8b\xd1\xa8\x6a\xb3\xae\x8a\x06\xc1\xd4\x69\xa8\x56\x7a\x92\x3c\xc1\xc6\x64\x5b\xd4\x54\xb9\xb4\x7f\x21\xdf\x64\xc3\x92\x3d\xef\xd6\xff\x0b\xff\xff\x77\xe3\x45\x15\x97\xa8\x40\x5d\x05\x1b\xfc\xf6\x7e\x1b\xe1\x1f\x43\x88\x83\xc7\x6a\xd6\xeb\x28\x82\xb5\xef\xca\xc1\xe5\xa7\x8f\x11\xac\xa5\x12\xcb\x46\x23\x43\x08\x9f\x8e\xa4\xae\x36\x1d\x2b\xff\x83\x82\x09\xaf\xdc\xe8\xc3\x65\x84\xe0\x9a\x6b\x3c\xce\xa7\x38\x08\x0e\x66\x65\xfe\x4d\x5f\x13\x08\xb7\x07\xf5\x47\xfe\x43\x4d\xf9\x92\x01\x59\x1d\x79\x82\xd4\x93\xe9\x5f\xee\x14\x68\x13\x7c\x27\x6e\xb9\xe2\x94\x9f\x42\xb8\xd4\x12\x66\xf5\xf9\xb4\x01\x41\xe9\xf1\x81\x10\xf9\x87\xb2\x84\xf9\x67\x0d\x47\x9e\xf0\x6b\x13\x4e\x78\x0f\xf7\x08\x6c\xd9\xc9\x06\xab\x4f\x07\x36\xfd\xee\x29\x26\xf8\xea\xdc\x71\x38\xf1\xe4\x0c\x0d\x0b\xcd\x3d\x5e\xf9\xc2\x95\x70\x31\xe8\x4a\x6d\x6f\xe3\x51\x16\x62\x46\x87\xfc\x64\xc5\x63\x58\xff\x9b\x54\x0b\x4e\x8f\x8f\xdc\x23\x42\x98\xe3\xee\x15\xfb\x65\x5d\x21\xe1\x5b\xff\xe9\xca\xff\x90\x2e\xb5\x78\x36\xfd\x2d\x60\xc6\xd1\x1b\x17\xf3\x70\x86\x5a\x27\x83\xb0\x2a\xb9\x3b\x17\xea\x46\xd9\x90\xb3\x3d\x6c\xcf\xba\x3d\x5d\x6c\xa8\x74\x35\x30\x6a\xeb\xae\x29\xc7\xd4\x3b\x0f\x2d\x5a\x65\x1e\x13\xce\x9b\x6c\xf1\x29\x11\xb3\x21\xdc\x8d\xbe\xac\x7d\x7b\xaf\x38\x81\xbf\xe9\xed\x0e\x4f\x9b\xe9\x84\xce\x2d\x41\x56\xca\xdf\x0d\xd8\x70\x70\xfe\xe3\xb3\xdb\x39\xc1\xa0\xdf\x4c\x3a\x63\xce\x06\x3d\x82\xc4\xef\xd0\x35\xd6\x82\xa6\x84\x96\x1b\xa9\xb3\x3d\x06\x2c\xd8\xd0\xd1\x3b\xdb\x68\xf6\x5e\x6b\xc2\x4d\x73\xff\xef\x05\x85\xda\x84\xe5\x5d\x1d\xeb\x78\x24\xe5\x08\x4e\x9b\x65\xd7\x72\x7d\x0e\x27\x70\xd8\x84\x7c\xf8\x3d\xf3\x11\x41\xa7\xda\x26\xef\x3f\xc4\xfa\x4e\x7b\xbf\x5b\x66\x27\xa1\x60\xa3\x0b\xf7\x4a\x3b\x2f\x82\x90\x5d\x84\xf8\x5d\xf5\x5b\x84\x3c\x1e\x17\xf3\x22\x1e\x6d\xc2\x07\x61\x9e\x7b\xde\x06\x2b\x08\x01\x1d\x2d\x9e\x6e\x49\x8a\x84\x60\x83\x51\x4d\x41\xe3\x99\x84\x4d\xf2\xd3\xd6\x3d\x0e\x9c\x41\x58\x76\xca\xdc\x74\xf4\xe0\x4e\x02\x67\xae\xc1\xae\xc5\x3f\x3d\x09\x34\xe7\x9e\xe3\xa6\x07\x60\xe0\xd9\x9c\x50\xa5\xbc\xa4\x8a\xb0\x78\xa2\x63\xc8\xff\x05\x67\xdc\xc1\x9b\xff\xe1\xb8\x53\xeb\x2f\xab\x3e\xdb\x7f\x41\xc9\x4e\x23\xe3\xbf\x77\xa7\xf3\xfb\xb1\xaa\x0f\x51\x7b\x09\x2d\x9c\xae\x23\x43\x06\xe7\x09\xc3\x5a\xdd\xab\x1b\x12\x23\x08\xbb\xa7\x56\x7f\x3b\xed\x7f\x82\x05\x7f\x61\x7b\x81\xb2\xbe\x99\x04\xfd\x8f\x5b\x2d\x4f\x3a\x8e\x30\x38\x6a\xee\xf9\xe4\xdc\xcc\x0c\x42\xd1\x8e\x7c\xbf\xf7\x46\xb6\x04\xd1\xce\x7b\xee\x6f\x52\xe7\x10\xf2\xa2\xd4\x5e\xee\xf6\x69\x63\xf0\x7c\xe2\xf2\x56\x93\xf7\xee\xf4\x0f\x0c\xf0\xbc\xda\x31\xbb\x28\xe2\x5f\xd8\x6a\x3c\xfc\x68\x4a\x90\x07\x41\xce\xac\xb4\x7f\xf0\x90\x13\xe1\xf8\x80\x84\xf6\x32\xc3\x7c\xc2\xea\xd7\x5a\xbb\xdc\xaf\x05\x13\x1a\x67\x55\x97\x74\x84\xca\x11\x16\xeb\x37\xcb\xa7\x3e\x5d\x40\xe8\xbd\x96\xcb\x8a\x71\x10\x20\x70\x6e\x59\xdd\xba\x71\xbf\x2a\x81\x89\xdd\xa3\xeb\xf1\x56\x8e\x20\x6c\xf7\xae\x25\xc4\x39\x85\x60\x50\x30\xb4\x7e\xc2\x8e\x14\x82\x88\xa9\xad\xfb\x6b\x73\x53\xc2\xee\xa0\xe4\x98\x12\x7d\x41\xc2\x39\xfb\xe3\x5e\x87\x0c\xf5\x08\x19\x5a\x6b\x2b\xab\x1f\xa9\x10\xaa\xf6\x4f\x34\x7c\xeb\x28\x44\x30\xe5\xad\x91\xd9\xb2\x40\x8c\xb0\xc6\x9b\x65\x92\xf3\x48\x8e\x30\x37\xe5\x68\xf3\xa0\x09\x2f\x1b\x7e\x75\x5c\xb0\x56\x6c\x7a\xc5\x60\xfe\xe1\x91\x03\xc9\x4e\xb2\x84\x2e\x11\x03\xbd\x4d\xf2\xb7\x09\xdb\xf9\x65\x5e\x7d\xd9\x39\xca\x60\xdb\xd1\x5b\x13\xb7\x1d\x2d\x21\x34\xfb\xad\x4d\xf7\x1f\xc3\xd5\x5f\xe1\x8d\xfe\xff\xa7\xfc\x0f\xc6\x4d\x7d\x4d\xab\xbb\x7d\xd8\x10\x5e\x34\x71\x15\x67\x91\xee\xbf\x46\xff\x83\xce\xd5\x8f\xb3\x8a\x2a\x76\xb2\x21\x57\x6f\x61\x6b\x4e\x71\x3c\x5b\xa9\xbd\x96\x33\xfb\xbf\xf7\x5d\xa1\x42\xf7\x72\x81\xfb\x4d\xc2\x9f\xfc\x79\xd1\x11\x3f\x83\xff\x85\x49\xcb\x2d\x07\xac\x8e\x7c\x65\xf0\x77\x6f\xcb\x00\x0e\xdf\x21\xbc\x2b\xfa\xaa\x53\xff\xbb\x96\xd0\x23\xd7\x12\xb2\xfd\xd5\x6a\x36\x1c\xb2\x3a\xfd\x83\x02\x47\x99\x71\x9c\x9b\xed\x3d\x3b\xfc\x5c\x1a\x41\x55\xb5\xc6\x32\xce\x74\x1b\x6b\xbc\xc4\xa6\xdf\x2e\x3b\x29\x6d\x4f\xf8\x25\xf9\x6c\x74\x9f\xb6\x12\x41\xf5\xea\xe1\x2e\xca\xcc\x21\x24\x46\x69\x1c\xfb\x0f\x57\xd7\xed\x53\x7a\x63\x2e\x4e\x50\xf2\xae\xb8\x31\xb5\x2b\x8b\xd0\xd8\x57\x9c\x7c\x36\xbb\x96\x85\xe8\xe8\x43\x4d\xe7\x56\x71\x11\xa6\x5d\x38\x61\xa6\xa6\x5c\x5e\x8e\x1b\x97\x6a\xaa\x0c\x63\xaf\xd1\x38\xda\x0e\x65\xda\x14\xab\x19\x13\x9c\x84\x1f\x55\x4e\xf7\x1a\x7b\xe5\x75\xf1\x74\xc7\x72\x11\xa1\x31\x24\xfb\x73\xc5\xd8\xb2\x58\x30\xc5\x5b\xcd\xe3\x5a\x0a\xc1\xef\xc8\x48\x67\x4b\xe8\x2e\xc2\xb7\x84\x05\xa7\x16\xa6\xe9\x11\xae\x3c\x34\x78\x95\xbd\x5e\x89\x0d\xb1\xfb\x04\x3f\x7d\xb1\xe6\x20\x9c\x98\x18\xa6\x10\xb4\xdb\x9a\xf0\xc8\xa0\x36\x66\xf5\xfa\x69\x04\xdb\xf5\xeb\x9b\xdf\x3c\x9c\x4b\x50\x64\x34\xb7\xcf\x9b\x99\x43\x30\xe3\xb9\xd3\xb4\x4b\xab\x82\xd0\x24\xad\x7f\xbc\xc6\x26\x84\xb0\x85\x3f\x20\x0a\x23\xcf\x09\x53\x3e\x37\x5f\xf1\xf2\x2c\x27\xdc\x99\xf9\xfa\x4b\xe9\x2b\x57\x82\xb2\x6d\xa1\xff\x61\xa6\x9c\xc0\x79\xe3\xb0\xcd\x6a\xb5\xe5\x84\xf0\xfb\x7c\x4a\xf1\x95\xf6\x84\xdd\x6f\x35\x05\xb4\xc6\x0e\x93\xfa\x8a\x77\x15\x42\x0f\x59\x12\xe2\x39\x3d\xd7\x5d\x09\x04\x83\x00\x6d\x2b\xb5\x85\x4b\xb3\x09\x65\x02\x5f\x13\xfc\xd6\x65\x13\x22\x13\x24\x1e\xfc\x5f\x48\x06\x2e\x78\xb2\x71\x86\x2d\xa1\x73\x8d\xac\xb2\x2e\xb7\x3d\x1b\xa6\x5b\x6e\xe8\x75\x5d\x19\x46\x28\xff\x50\x68\xbc\xa8\xe6\xce\xd8\xa2\xb7\xe3\x48\xa9\x97\x14\x61\x94\xcb\xb6\x7f\xee\x88\x05\xc1\xf2\xef\x04\xa9\xcd\x2f\x07\x18\xf4\x8e\x9e\xa8\xa9\xfa\x3a\xf6\x41\xfb\xff\xc1\x3e\x23\xfe\xd8\x12\xc9\xf7\xe5\x88\xff\xb9\xcd\x35\xe3\xa5\x37\xe1\xe8\x9e\xb4\x32\xd6\xa3\x34\x36\x18\x59\xae\xd5\xd6\xbc\x7a\x84\xf0\x47\x23\xe2\x47\xea\x87\x6a\x16\xcc\xec\xb3\x72\x26\x72\x15\xb0\xf0\xbe\x67\x7e\x4c\x64\xea\x4d\xc2\xd0\xbd\x04\xe5\x2b\x2f\xf3\x08\x2b\x1c\x45\x64\x02\xc6\xbe\xea\x7f\x25\x2a\x6c\xdb\xcb\xe4\xc1\x3c\x42\xe8\xf4\x5b\xa1\xc6\x08\x60\x61\x6a\x95\x96\xf2\xa1\xc8\x9b\x84\xa3\x4d\x02\x5d\x07\xc6\x50\x94\x9a\xbe\x49\x75\xb8\x85\x41\x8c\xec\x61\x81\xcc\x2d\x7c\x34\x0e\xe1\x48\xf9\xd8\xa8\x57\x75\xe5\x90\x5f\x1d\x2e\x60\x78\x72\x2a\xe1\xb8\xc7\x9e\x9d\x42\x39\x59\xe5\x08\xfd\x69\x4f\x2e\x56\x95\x84\x0b\x32\x9f\xe2\x8c\x42\x9f\xd3\x78\xc9\xb9\x20\xee\x30\xb1\x53\x9e\xe0\xb2\xbc\xc5\xfa\x6e\x58\x22\x0b\x01\x1a\x6b\x0f\x94\xbb\xa5\x13\x2e\x5d\x75\xf2\x6a\xbc\x72\x89\x05\xb3\x27\x32\x36\x6b\x7d\xd3\x09\x4d\xbd\x7f\xd2\x0e\x18\x85\x13\x9c\xda\xf6\x21\x84\x15\x4d\xd8\xdc\xbe\x77\x63\x8e\xe3\x69\x82\xc9\xef\xc0\xb9\x2e\xa2\x44\x58\xb2\x60\xe8\xe8\xde\x79\x05\x84\x55\xaf\xbd\xcc\x9e\x4d\xcc\x23\xdc\xda\x90\x34\x77\xfa\x1b\x1f\x36\xfc\x89\xfe\x98\xb0\x2a\x96\x9b\xe0\xbe\x34\x57\x52\x3e\xf0\x0c\xa1\x50\x9a\x3b\x2f\x72\x6f\x14\x21\x7b\xfd\xea\xbe\x80\x5a\x7d\x82\x55\x66\x81\x47\xcf\x14\x35\x42\xe8\x0c\xee\x8e\xba\xc9\x09\x04\xeb\x80\xb6\x80\xd6\x8d\x71\x04\x57\xef\x37\x3e\x2f\x45\x6e\x10\x3c\xe6\x79\xf3\x78\x5e\xde\xcc\xc2\xd4\xbf\x3d\x6d\x59\x59\xda\x84\xef\x33\xf9\xbe\x6c\x9e\xfc\x8b\xc1\xf0\x2c\x05\x0d\xaf\xaf\x5c\x04\x9d\x85\x59\xe7\x44\x0b\x6f\x11\xe6\x86\x4f\xec\x9b\x5c\x34\x8b\xe0\x21\x6f\xbb\x2d\x2f\x61\x26\x01\x16\x43\x19\x62\xea\x1c\x04\xed\xd3\x97\x64\x37\x28\xaf\x26\x14\x25\x2c\xb5\x7a\x64\xc1\x4b\x98\x26\xc6\x0a\xb8\x28\x22\x44\x48\x9c\x25\x6e\x6f\xf6\xfa\x27\x83\x9e\x56\x6e\xcb\xa8\x80\x02\xc2\xe2\x7e\x4f\xf5\xc2\x84\xbf\x0c\x6c\x54\xb3\xb3\x66\x8b\x67\x11\xb6\xc4\x1d\x6a\xd6\x3c\x7c\x92\x70\xea\x54\x56\x62\xcb\xaf\x12\x16\x38\x3e\x4c\x4f\xbd\xba\x6b\x1e\xc1\x9e\xe3\x5e\x5e\x92\xdf\x74\x42\xee\x6e\x8b\x81\x25\xf1\x67\x08\x07\xd7\x3d\xca\x7c\x1a\x72\x86\xf0\x38\x81\xd9\xf6\x68\x55\x20\xe1\xd7\xac\xd3\x6d\x3f\xcf\x9b\x12\x04\xe3\xab\x76\x3f\x52\x30\x25\x94\x35\xa5\x95\x2e\xea\xbd\x46\x98\x6e\xa4\x15\xeb\x36\x86\x48\xc9\x87\xa9\x9d\x91\x3f\x19\xf8\xb7\x9e\x5c\xf8\xce\xbb\x97\xc1\xc2\x04\x9e\x33\x5c\x97\xf6\xd1\x38\xe2\x9e\x7f\x9e\xbf\x5d\x48\x9d\x0d\xc5\x53\x4e\x7a\xbc\xe9\x9b\x48\x50\x52\xf4\x54\x10\xb9\xa6\x47\x70\x37\xaf\x3f\xd9\x50\x92\x46\x18\x5e\xf5\xc1\xce\x53\x70\x3d\x41\xe2\xa8\x90\x54\xed\x0f\x71\x42\xbc\x51\x51\x73\xb2\x77\x2a\x41\xe1\x5b\x9a\xa5\x72\x8b\x0d\x21\x6e\x41\xa7\x8d\x9e\x8d\x10\xc1\xcf\xe7\xd4\x79\xd1\x1a\x7d\x82\xd3\x50\xfb\xdd\x6e\xef\x4e\x06\xe6\xda\x2f\x7f\x45\xfb\x8e\xb2\xc1\xc5\x5e\x6f\x30\xe9\xd0\x73\x06\x75\x6a\x3b\x0c\x25\xec\x73\x59\xf0\xdf\x7b\x64\x8e\x9a\x15\x27\x21\x47\xc8\xcb\x97\x63\xcd\x1c\x82\x91\xa4\xe8\xa7\x5b\xee\x09\x84\x81\xaf\xaf\xdd\x3b\xce\x1d\x24\x7c\xe6\xae\x51\x13\x48\x9d\x4a\x98\x68\x25\x31\x65\x91\xc1\x2c\x36\xcc\xd5\xe3\x4c\x24\xfe\x41\x06\x71\x3f\xdf\xb4\x5d\x96\xe6\x23\x54\x98\x18\xdc\x5c\x79\xb6\xa3\x1c\xac\xfd\xa1\xac\xb3\xa7\x75\x08\xba\x51\x95\x9c\x9d\x9a\x72\x84\xc0\x00\x31\x4f\x3f\x9b\x21\x06\x8a\x3e\x41\x26\xeb\x47\xd5\x09\xfa\x7f\x0a\x0e\x0a\x5a\x69\x11\x38\x4e\x3d\x95\xfd\xad\xee\x42\x68\x10\x55\xcc\xff\x30\x33\x99\x85\xaf\x05\x97\xcd\x44\x63\x13\x09\x0a\x61\x7a\xf6\xd7\xfb\x37\x11\x5c\xef\xdb\x19\xd7\xac\xe7\x20\x1c\xf1\x2f\x55\x5b\x4f\xdb\xd9\x30\xf1\xfb\xf0\xa4\xfc\x35\xa2\x84\xd4\xc0\x67\x8b\x8f\xde\x67\x08\xe9\x8e\x61\x77\xdf\x72\x4b\xb2\xe1\x67\x44\xef\x5e\x38\x3e\x2a\x87\x7c\x9d\xae\x0b\x2d\xc9\x63\x41\x33\xcb\x22\x24\xa7\xf1\x26\x8d\x63\xee\xae\x84\x2b\x5a\x0b\xaf\x11\xf4\x85\xdf\x6f\xa8\x6e\xe5\x26\x7c\x7f\xea\xba\xdb\x79\xec\x38\xb7\xbe\x70\x09\xe9\x3e\xb0\x22\xb4\x45\xcc\xdb\xde\x17\x77\x98\x50\xf6\x79\xfa\x7a\x9d\x7d\x5f\x98\x71\x54\x44\x72\x4c\x5d\xa9\xb5\x83\xc6\x71\xe2\xc9\x9b\xe5\x47\xd2\x67\x11\xf4\x96\x88\x2e\x33\x7f\xa5\x4b\x18\xa9\x94\xba\xfe\x54\x32\x8d\xc0\x6a\x99\x7e\xc2\x88\x37\x8d\x70\x3e\xe0\xed\x7d\xe1\x81\x6d\x84\x96\xe6\xb5\x7f\x3a\xb7\x5d\x23\x84\xa8\xbd\xde\xf1\x7f\xa1\x73\xd0\xfd\xed\x9b\xf2\x0d\xff\x4f\x44\xed\xd7\x11\x38\x32\xa2\x41\x58\xe3\xe4\x9c\x1e\xf4\x28\x8b\xf0\x83\xcb\xbe\x47\x35\x23\x85\xf0\x66\x43\xb1\xc7\x6f\x9e\x60\x42\xad\xec\x75\x03\xbc\xb0\x24\x58\x48\x6e\xd7\xdf\xfc\x31\x8f\xb0\xb9\x42\xf1\x04\x47\x2d\x3f\x61\x9b\xe4\x22\xe7\x43\xb7\xfe\x32\x58\xfb\x33\x20\x9a\xa5\x95\x4c\x68\x92\xb7\xdd\xce\xf8\xa7\x11\x56\x5c\x98\x9b\xeb\xab\x73\x97\x85\xc7\x9a\xa3\xca\x94\x22\x42\x50\xbc\xe3\xac\xda\x34\x45\x9e\x90\xbb\xcd\xdd\x34\xd9\x5c\x80\x90\xa7\x7b\xa0\xf2\xbb\xbc\x25\x61\x50\x6f\x99\xa8\xda\x7c\x11\x02\xb8\xff\xd8\xdd\x90\x88\x26\xf8\x46\xf9\x19\x38\xfa\x1d\x23\xf8\x5d\x3c\xf3\xb0\x3d\xa7\x9e\x05\xa1\x54\xcb\x1a\x07\x31\x6b\x42\xfb\xa0\x93\x54\xba\xf3\x42\x42\xcd\xb9\x8e\xb0\xe7\xef\x7f\x33\x98\x61\x91\xeb\xab\x62\xac\x4d\xb0\xff\x20\x39\xfa\x8b\x6b\x27\x1b\x16\x27\x98\x08\xd9\x66\xed\x27\xb8\x2b\xb7\x3c\x2c\x73\x3b\x3e\x76\xf0\xf8\x5a\x3b\x98\x38\x9b\xe0\x79\xb2\x6c\xbe\x8a\xfd\x41\x42\x7a\x91\xcf\xe7\xee\xa3\x75\xe5\x78\xa5\x3e\x7f\xc9\x09\xc9\x1c\x82\xde\x6e\xb2\xf9\x0f\x57\xb5\xc3\x13\x2e\x0b\x67\xb1\x30\x1c\x2a\xf6\xad\x32\x57\x9c\x90\x7e\x70\x4d\xf7\x04\xdb\x52\xc2\x54\x4f\x8e\x93\xff\x61\x87\x58\xb8\x14\xc7\x18\x2a\x3b\x2f\x3d\x0c\x3b\x59\x4a\x88\xce\xf2\x7c\x75\x30\xae\x9a\x85\xd3\xde\xfa\x4a\x61\xde\xb7\xcb\x87\x1f\xfd\x1e\xf6\x5c\x91\x41\x78\xe4\xa0\xa4\xe4\xf5\x7f\x70\xa6\xcb\x66\xcd\x7f\xb0\x94\x59\x7f\xbb\x69\xec\xf4\x64\x38\x79\x66\xb0\x63\x7d\x05\x21\xea\x73\xaa\x9a\xaa\x5c\x2c\xe1\x85\xe8\x7e\xe5\x8a\xc0\x2b\x84\x40\xde\xfb\xe7\x23\xcd\xce\x10\x0c\x06\x95\x9e\xb1\xc6\xca\xf2\xae\x3f\xba\x99\x8b\xb3\x08\x1f\x06\xe7\x5f\xca\x4a\x74\x25\x34\x4f\xe7\xcb\x10\xbc\xcc\x4d\x78\x5f\xdd\xdb\xe7\xd9\x7d\x89\xb0\x25\x40\xe0\xfa\x95\xae\x6b\x84\xd4\x73\x57\x3f\x0c\xbd\xdb\x32\xb6\xb9\xb8\xb5\x7f\x73\x5d\x34\x41\xdb\x2f\x39\xec\xcf\x57\x0e\x42\x0e\xc7\xfa\x14\x43\x0f\x4e\x36\x7c\x4a\xd8\xb8\xbe\x65\xe4\x4e\xf9\x38\x82\xbb\xf9\x12\x2a\x3d\x79\x69\x1c\x67\x3e\x6c\x76\xb3\x72\x14\x67\xc3\xb4\x07\x3b\x0d\xdd\x8a\x3a\x19\x68\x6d\xbe\xed\xb6\x43\x63\x36\x41\xe5\xa2\x3e\xe3\x92\xc4\x22\xd8\x08\x96\x06\xbb\x24\x06\x13\xb2\x30\xf1\x72\xeb\x9c\x5f\x0c\x4c\xce\x59\xc4\x4a\x07\xc6\x11\x2c\x8d\xf7\x5e\xfb\x92\xb1\x91\x70\x52\x4f\xf1\x83\x71\x77\x08\x5b\x69\x35\x3b\xe8\xb2\xe9\x85\x0b\xc1\xec\x70\xbc\x6b\x8d\xda\x10\x03\x5b\xc5\x0d\x97\x5e\x07\xff\x66\x20\x2d\xcf\xd1\x70\xe9\x9d\x24\x8d\xa3\xfe\x87\xb7\xf2\xfc\x2d\x3f\x19\x0c\x7c\xbf\x7f\x6f\xab\xe1\x4a\x42\xe7\xd3\xb7\xd7\x18\xfe\x2f\x0c\x72\xd4\xe5\xe3\x07\xdf\x68\x12\x92\x02\xcf\x2a\x69\x72\x1e\x60\x8d\x17\xa5\x3f\x4e\x6f\xaf\x9b\x7e\x63\xa0\x19\xbd\x44\x7a\xf5\x5e\x29\x42\xc5\xd6\x74\xae\x1f\x01\xea\x84\x22\xae\x8d\x02\x41\x29\x92\x04\xd6\xec\xd9\x6b\x54\xc6\xfe\x98\x67\x6e\xce\x2d\x7d\x3d\x76\x4a\x1d\xd8\x71\x77\x03\x6f\x54\x1d\x03\x5e\x89\x89\x07\x25\xfb\x47\xd9\x30\xfc\x78\x9b\xb3\x5c\xc3\x04\x1a\x47\x5d\x95\x94\xce\x25\x05\x05\xc2\xb0\x8a\x77\xd9\xab\xbd\x12\x84\x56\x83\x9d\x73\x58\x63\x77\xf5\xe9\xd3\xd1\xb6\x04\x95\x9f\xcc\x38\x8a\xa5\x9d\x5b\xf6\xb4\x49\x13\x7e\x9f\x88\xe1\x4d\x3f\x7e\x9d\x85\x6f\x2d\xc3\x4f\x7a\x67\x56\x12\x8c\x6d\x52\x4b\x95\xcf\xec\x65\x43\x35\x77\xd0\x12\xf7\x20\x73\xc2\xf7\x6f\xad\xd7\x76\x26\xe5\x12\xd6\xbd\xeb\xf2\x78\x75\xce\x81\x10\xcb\x2b\xba\x24\x66\x0c\xff\x2b\xae\xc9\x2e\x53\x5e\x26\xa9\x12\xde\x7a\x5d\x65\x55\x54\x55\x11\x7a\x3f\x9c\x75\xd5\x11\x4b\x60\x43\x91\x4c\xa4\xe9\xcf\x03\x19\x84\xce\x06\x4b\x9e\x43\x94\x43\xb8\xab\x7e\xf1\x03\x87\x6c\x22\xc1\xd1\x6a\xc0\x80\x73\x0c\x8f\x6d\xd2\x6e\x75\x7c\x5f\x4d\x50\xfc\x2b\x71\x62\xd1\x91\x60\xc2\x3e\x05\x15\x91\xb8\x15\x0b\x09\x93\x3a\x07\x3b\xbd\xe7\x67\x13\x3c\xbb\x16\x7e\xb2\xb9\xfa\x94\xb0\x91\x73\xb2\xde\xb6\x15\x2d\x84\xfa\x2d\x3c\x57\x04\x05\x0a\x08\xe7\x14\x2c\xc3\x4b\x2f\xdf\x26\x54\xac\xe1\xb6\x98\x93\x5f\xca\xc2\x8d\x1f\x8e\x8f\xbf\x97\xde\x66\x1b\xed\x9d\xf5\xd4\x66\x49\x7c\x24\xa1\xdd\x6f\x52\xb7\xdb\xea\x48\x42\xfc\x42\xfd\xbe\x55\x70\x27\xfc\x6e\x66\xfd\x09\xf8\xe8\x4e\x98\x1e\x9c\x56\x7d\x7a\x5e\x05\x0b\xda\x0d\x8b\x42\xcf\xcd\xa8\x21\x7c\x76\xda\x7a\x53\x50\xa6\x83\xc1\x14\x3a\x7d\x3f\xf0\x54\x26\xa1\x27\x5c\x89\x5f\x92\x55\x46\x30\x7c\x33\x64\xf7\xa4\xd8\x9e\xe0\x32\xeb\x70\xb8\xdb\x83\xfb\x2c\x74\xa8\x26\x7c\xbc\x64\xdd\x43\xf8\x6b\xc2\x84\x26\x2f\x68\x24\x84\x0a\x3d\x8b\x5c\xb0\x68\x01\x81\x7b\x0a\xaf\xdb\x9f\xde\x27\x2c\x94\x6f\xb8\xd9\xfb\xf8\xe3\x77\xc2\xad\x11\x3e\x7d\xd6\x18\x5e\x89\x69\x1e\x59\xb2\xa0\x82\x30\xa2\x30\xad\x2a\xa4\xeb\x1d\x03\x41\x8d\x8d\xd5\x57\xcc\x17\xd0\x38\xb8\xb9\x66\xd5\x3e\xd1\x7a\xc9\x8c\x23\xee\xf2\xaf\x8c\x5b\x31\xf3\x09\xed\x6f\x96\xf5\xf4\x4e\x5d\x48\xe3\x65\xb7\xa9\xa4\x5a\xa3\xde\x2d\x06\x7c\xd9\xbf\x1c\x84\xb6\x6b\x11\xde\x14\x9d\xe9\x79\xf2\x5a\x93\xb0\xcf\xa1\x51\xe0\x6d\x87\x08\x61\xe2\x4d\x31\x17\xfd\xf9\xfd\x0c\xfc\x06\x8d\xef\xf6\x3c\x68\x67\x60\x14\x94\x11\x3b\xcd\xcf\x80\xd0\xde\x35\x9f\x67\xee\x07\x47\x82\x5e\x47\x8f\xc4\xce\x84\xb1\xf5\xf5\xcf\x5e\x49\x4e\x81\x61\x06\xb1\xc7\x1e\x1e\xef\x9a\xad\x4c\x98\xa8\x7b\xcd\xc7\xbb\x27\x85\xa0\x70\xf4\x41\x53\x2d\x57\x2b\x61\xdd\xf3\x8d\xe7\xde\xd7\x16\x13\xba\xf7\x94\x29\xdf\x3c\x9a\x43\xe8\xb4\x71\x7f\xb8\xf7\xc1\x16\xc2\x17\xfe\xa5\x89\xae\x43\x12\x04\x75\x3d\x99\xa9\x81\x7a\x13\x08\xd1\xc3\xae\x52\xe1\x33\xf8\xff\x9f\x30\x10\xde\xd5\xd3\x63\xcd\x49\x48\xdd\x2d\xec\x2c\x1a\x6e\x4c\xf8\xfc\x2b\x4e\x6a\x4a\x8e\x06\xe1\xdc\xbc\xe2\x99\x37\x42\xa2\x08\xb2\x4f\x2f\x1a\x8d\x9c\xd8\x47\xc8\x53\x8a\xf8\x29\x64\x6d\x4a\x68\x1c\xdc\x29\x6c\x3a\xb0\x80\x70\x69\x99\xa3\xbc\xc9\x16\x09\xc2\x99\xc0\x13\x2a\x4b\xbc\xe3\x09\xd6\x11\xba\x6b\x2b\x02\xe2\x09\x67\x42\x1b\xd3\x7c\xc3\xb2\x08\x69\x4f\xad\xcd\xa5\x2c\x1f\x11\x2e\x5c\x1e\x5d\xbb\xe0\x46\x0a\xa1\x6e\x1b\xaf\xc6\xee\x5d\xd5\x04\x7b\x16\x1f\x6f\xd0\x18\xf2\xeb\xd6\xd4\x55\x97\xdf\x21\x28\xf5\xca\xeb\x48\xaf\xaa\x20\x88\x5e\x1d\xd4\xcb\x6b\x67\x11\xea\x78\x1f\x88\xdd\xd9\x9f\xcc\x82\x6a\xc0\x83\xa0\x77\xab\x0a\x08\x21\x27\x03\x36\x9b\xaf\x57\x27\x6c\xb0\xdf\x31\xd2\xc8\x99\x47\x58\xea\xf3\xf3\x9d\xa1\x84\x07\x21\x34\x6d\xe4\xdb\xb5\xfa\x1b\x04\xf7\xa6\xd5\xf9\x8d\x16\xd2\x04\xfb\xb3\x93\x83\xbb\x36\x1c\x61\x83\xc3\xde\xdd\x85\x15\xea\x1a\x6c\x30\xef\x29\x48\xfb\xf3\x68\xec\x7b\x6d\xe4\x5c\x7f\x64\x4e\x36\x0b\x9c\xfa\xdc\xd1\x92\x2a\x01\x04\xdd\x27\x36\x57\x42\xdf\x4c\x20\xa8\x9d\x17\x15\x53\xdd\xa5\x4c\x50\xab\xb2\xda\x54\x58\x7b\x8e\x70\xed\x50\xb6\x90\x77\xcf\x62\x82\x59\xfc\xfe\x92\xcf\xb6\xb3\x09\x12\x57\x5e\x99\xe6\x68\x4f\x25\xcc\x8f\xbf\x6a\x53\x94\x27\x46\x30\x48\xf2\x7c\x9c\x2b\xac\x4e\xe0\x98\x12\xf3\xeb\xc4\xeb\x17\x0c\x1c\x03\x1f\x24\x5c\x29\x19\x60\xa0\xaf\xaf\xfb\xf1\xec\x60\x23\x83\x46\xbf\x6e\x77\xe3\xd0\x21\x06\xd3\xc5\x5e\x0a\x1d\x9c\x24\x40\xd0\xd3\xcd\xe5\x8b\x71\xb5\x23\x48\x39\x7d\x3a\xfc\x44\x56\x86\xb0\x9f\x37\x6b\xff\xa7\xa5\x49\x6c\x28\xe8\xfc\x70\x7f\x5e\x81\x17\xc1\xf7\xc8\xe5\x52\xab\x29\x0f\x09\x86\xcc\xd9\x95\x2b\xe7\x1d\x21\x7c\x91\xfc\x94\xe6\x7f\x79\xd7\xbf\xb0\x5f\xe6\x4e\xd9\xa9\xc5\x06\x84\x4b\x0d\xdf\x32\x7d\x72\xf3\x58\x68\x37\xea\xd0\xbc\x34\x75\x98\x41\xd8\x0a\xcf\xc2\x5d\x5b\x95\x08\xea\x7e\x06\x6e\x4b\x3e\xf7\x32\xff\xdf\x7f\xff\xfe\xc3\x60\xa3\xb3\x01\xff\xdd\xd1\x0e\x06\x92\x88\xcc\x56\xcf\x17\xa3\x71\xc8\x75\x7d\xde\x6c\x69\x34\xc2\x60\x70\xca\xb1\x73\xfc\xa1\x26\x84\xe5\x86\xdd\x5f\x03\xb7\xad\x66\x83\xff\xbe\xb8\x78\xfb\xe2\x69\x04\xe3\x83\x45\x73\x8d\x74\x57\x12\x6a\xa7\xf0\xbb\xe9\x09\x6f\x22\xe8\xdb\x76\x6d\xea\x4b\xa9\x21\xf8\x9a\x7d\xd1\xbb\xbc\xb0\x90\x50\x36\xad\xaf\xd7\x6d\x6e\x21\xe1\xdb\x8b\xe5\x9a\x34\xb4\x95\x10\xe2\xbf\x91\xc3\xf8\xad\x30\xe1\x9e\x91\x64\xeb\x81\xfd\xc2\x84\x89\x4e\xbe\x8d\xa5\x9d\xbc\x63\xd7\x6e\xb9\x7c\xc9\xb6\x6c\xc2\x09\x0e\xcb\xf6\x9a\x87\xd9\x84\x39\xc7\x8a\x94\x6b\x82\x78\x08\xaa\xbf\x82\x96\x7d\xac\xd6\x64\xc3\xbe\x0f\xa6\x1a\xd9\xfe\xdf\x19\xe8\xcd\xe8\x68\xd5\xac\x15\x22\xf8\x47\xce\x17\x5d\xe1\x2d\xcc\x86\xce\x5f\x71\x87\xb7\xdb\xf5\x32\x98\xf4\xe1\xe9\x1c\xd6\x9d\x99\x04\xdd\xd4\x0d\xad\x69\x47\x15\x09\x09\xfd\x66\x8b\x7e\xff\x68\x62\xf0\x3a\x4f\xb9\xc9\xb2\x71\x19\x81\xeb\x6b\xd5\x5e\x8d\xb0\x1f\x0c\x82\x77\xfa\x2c\xed\x3f\xb4\x81\xc6\x91\xef\xdd\xd2\x32\x65\x64\x11\x1b\xc0\x39\x53\x63\xd2\x5b\x13\x82\x86\x1b\x87\xf9\x6f\x6b\x39\xc2\x0e\xaf\xc9\x5b\x95\xfa\x95\x08\xf7\x9b\x43\x62\xf6\xc9\x70\x13\x6c\x4e\xa4\x9c\x7f\xff\x9b\x9b\xe0\x56\x72\x6f\x4a\xc8\x18\xf6\xed\x50\x4b\x50\x0c\x6f\x67\xb0\xb4\xec\xf8\x2e\xff\x55\x45\x84\xea\xc0\x10\xf1\xc4\xb1\xa3\x67\x9b\xb4\x43\x44\xdb\x8b\x22\x16\xb2\x0a\x95\xd6\x5f\xed\xb8\xca\x36\x9a\x34\xfc\x22\xf8\xaa\xd2\x5e\x42\xbc\xfb\xf7\x27\x97\xee\xf9\xb1\xc1\x55\x4c\xf2\xf6\x88\xc1\x2e\xc2\x85\xfd\x6b\xdd\x13\x6c\xc3\x08\x1d\x07\xb7\x7c\x8a\x5c\xe1\x4c\xc8\x51\x8d\x4e\x74\x91\x3a\x42\xe8\x58\x68\x6c\xde\xf0\xe2\x14\xc1\xd4\x3b\xd4\x36\x77\x6e\x20\x21\x0e\x97\x45\x03\x06\x34\x09\xbe\xca\x82\x7b\x32\x92\xe7\x11\xb6\xbc\xfa\xbd\x95\x4b\xd7\x98\x10\x0e\xa9\x9a\xd6\xc2\xcf\x0c\xae\xe8\x7d\xb8\xb6\x65\x28\x9f\x60\x30\xf5\xfd\xbb\xf9\x1d\x91\x04\x9b\xde\xab\xfa\x05\x66\xa9\x84\xaf\x5f\x9e\xbf\xe1\x0c\x30\x24\xd4\x6b\x78\x76\xee\x97\xac\x2d\x87\x05\x5f\xae\xec\xd4\x62\x35\x42\x8e\xa9\x83\xec\xd4\x8d\xbd\x0c\xde\xbd\xe2\xcf\x5a\xf1\xb4\x81\xc1\xef\xce\x58\x61\xe6\xa4\x35\x61\x56\xce\xa6\x34\x0d\xcb\x85\x84\xf6\xb8\xc3\xa1\x7b\xb7\xf6\x32\xe0\x1d\x98\xbf\xed\x93\x61\x0f\x1b\xd2\x87\xac\xa3\x3e\xcb\x73\x11\xa6\x65\x2c\x70\x1e\xca\xec\x65\x90\x73\x37\x40\xe8\x30\x8f\x0b\xc1\xfa\xce\x96\x64\x9e\x1a\x3d\x42\xc0\xbe\x58\xa9\x3a\xd7\x49\x84\xba\x8a\xa5\xc8\xab\xe7\x22\x70\x1e\x9e\x3e\xef\x65\xfd\x7d\xc2\xcd\xd8\x47\xea\x83\x3c\x55\x84\xae\x93\x41\x4a\x33\xc6\x16\xbd\xb2\xf3\xe8\x68\xab\x6f\x63\xf0\x4e\xd0\xf3\x85\x52\xab\x16\xc1\x48\xe9\x4b\x45\x6c\x6f\x10\x61\xc1\x9d\x7c\xaf\xf2\x90\x99\x84\x0f\xf1\x15\x92\xce\x83\x72\x84\xd8\xc2\x37\x01\x5d\xa5\x79\x84\xb6\xdb\x9d\xdb\x5f\x70\xc4\xfd\x0b\xea\x11\x76\x7e\x79\x6a\xe5\xe5\x08\x99\x35\xd5\xed\xc7\xda\x45\x84\x9a\xac\x94\x67\x73\x3d\x26\x11\x5c\x1c\x84\xe4\x3e\xbf\x13\x61\x43\xe6\x2c\xb1\x97\x47\x6b\x1f\x94\x43\x41\xae\xc5\xd7\x38\x93\x8b\x50\xff\x60\xfa\x87\x43\xa6\x56\x84\x5f\x7c\xe1\x33\x4e\xee\x71\x25\x98\x4f\xe2\xb4\xb1\xf6\x5b\x43\xe8\x3d\xb5\xb0\xf4\x47\xd0\x11\x36\xbc\xc9\x99\x60\x25\x67\x1e\x4f\xf8\x35\xfd\x97\x8e\x8f\x81\x35\xa1\xe2\xd0\xc3\x4f\x1a\xcb\x97\x11\xbe\x25\xa6\xbd\xba\xaf\x95\x4f\xf8\xf3\xbc\x70\x7a\xa0\x48\x3e\xe1\x85\xd4\xfa\xb6\xde\x41\x07\x16\x4c\xae\x0b\x17\xaa\x99\x6c\x23\x24\x64\x72\x0c\x2f\x9e\x53\x46\x48\xe3\xfd\x7b\xfe\xf7\x9b\xc7\x04\x26\x8d\xfb\xdd\x1a\xe7\x32\xc2\x8f\x3f\x0f\x59\xd7\xa3\xef\x13\x42\xf8\xea\xe6\xdc\xbb\xcd\x22\xb8\xde\x2e\x99\xdc\x18\x71\x8a\xe0\x61\x60\x72\x7e\x85\x63\x34\xe1\x90\xab\x97\x96\x56\x6a\x04\xa1\x68\x95\x92\xe5\xb5\xd2\x53\x04\x5e\x09\xeb\x9e\x2b\x26\x0a\x84\x0c\x63\xd2\x3f\xa9\x3a\xcc\x20\xf1\x85\xcf\xec\xc2\xd0\x9b\x84\x43\x8b\xf5\x0e\x0c\xfc\x2c\x26\x0c\x25\xca\x0e\xbc\x2e\xc9\x22\x9c\x16\x99\xb1\xc0\x38\xb5\x82\xf0\xd7\xc8\xfb\xeb\xa3\xf3\x26\x84\xf4\x61\x8f\x49\x4b\x62\x93\x59\xc3\x66\xeb\x2f\x14\x1e\xcc\x21\x54\x6c\x08\x3c\x1d\xa9\xaa\x46\xe0\xd3\x78\xf9\x59\xe1\x57\xf5\xbf\x30\xe9\xea\x9a\x17\x2f\x4d\xcb\x08\xef\xb5\xcf\xfd\x2d\x5b\x5b\x49\x98\xbc\xe2\xe9\xe4\x80\x6d\x8f\x08\x4e\x61\xdf\x95\x6e\xbc\x7d\x48\x58\x72\x69\xe1\xcb\xb7\x5c\x8f\x08\xf1\x1e\xb7\x9e\x5d\xef\xaa\x24\x74\x38\x56\x29\xbe\x11\x79\x44\x08\x5c\x18\x26\x9e\x31\x50\x49\xf8\xf4\xea\xa3\xc6\x8d\x84\x02\x42\xde\x59\xf1\xb7\xc5\x6a\x95\x84\xd4\x83\x89\xe2\xdb\x4f\x55\x10\x46\x53\x27\x7f\xff\xe8\xfc\x82\x60\xa0\x99\x3c\x55\xf5\x73\x1e\x0b\xc6\xc5\xdd\x47\x9d\x77\xbd\x20\x48\xf7\xdf\xbd\xa3\x5e\x53\x41\xd8\x3d\xfb\x23\xef\x31\xcd\x4a\xc2\xaa\x09\xaf\x6f\xcb\xb5\xb1\x08\x03\xa6\x1b\x57\x5e\x0c\xa9\x20\x6c\x5f\x28\x63\xf1\x64\x41\x0e\x81\xaf\xf3\x5c\xeb\xfa\xfa\x2c\x82\xbf\xc6\xa5\x89\x17\x7c\x59\x04\xc3\x02\xfd\xc7\xb2\x33\x72\x08\xc7\x56\x7e\x9b\xb5\xff\xf5\xd8\x6e\xa5\x55\xc9\xea\x64\xec\x21\x82\x50\x89\xad\x76\x52\xe7\x21\x42\xaf\xbe\x57\xfb\x9d\x15\xd9\x2c\x1c\xfb\x94\x10\x72\xcf\xaa\x9a\x30\xf9\xa2\x41\x61\x92\xef\x73\x16\x2e\xbc\xfe\xb6\x47\xba\xf7\x05\x0b\x01\x0d\xf3\x22\xdc\xbb\x2a\x08\xc2\xe2\x68\x39\xe8\x54\xcd\x42\x04\x8f\xfe\x2f\x6b\x95\xc3\x84\xda\x10\xdd\xe8\xf5\x73\x8b\x59\xc8\xbd\xcb\xa4\x58\x99\x15\xb0\x10\xf4\xb4\x41\x52\x5f\x33\x8e\x70\x23\x32\xe3\xcc\x11\xf3\xfb\x84\x53\xb1\x7f\x7f\xad\x9c\x53\x4d\x18\x79\x7b\x5c\x62\x58\xb5\x9a\xb0\xd5\xb4\xd4\x38\x7b\x72\x35\x21\xba\x5c\x5e\xd4\xca\x6a\x27\xe1\x6e\x7e\xb1\xc6\xf9\xed\x55\x84\x22\xed\x89\x93\xc3\xe5\xaa\x09\xa6\x9f\x16\xf3\xf8\xd8\x97\x13\x56\xeb\x1e\xa8\x0b\x30\x2f\x27\x54\xb5\x9b\x75\xb8\xef\x28\x27\x4c\xf9\x6e\x56\x65\x7d\xaf\x84\x20\xb1\xaf\x70\x60\x82\x6e\x39\xc1\xe1\x1d\x47\xf7\xc4\x43\x55\x84\x69\xcf\xea\x2f\xac\x0e\xaf\x22\x5c\x91\xf1\xb6\xda\x5f\x59\x45\x30\x7c\xfa\xfb\xe4\x95\x73\x55\x84\x5a\xd6\xa6\xe1\x5f\xba\x15\x84\xa0\x13\x5b\x78\xf3\x52\x59\x04\xde\xe7\x9b\xb5\x1c\x96\x54\x10\x16\x5c\xba\xef\xbd\x9b\xa9\x27\x3c\xb7\xbe\xfd\xf2\x7c\x6c\x23\xc1\x79\xd8\xe2\x7b\xee\x70\x05\xe1\x92\x5b\x7e\xcc\xc1\x1f\x2f\x08\x9c\x86\xc1\x0e\x26\xf7\x9f\x12\x96\xce\x0d\xa9\x34\x50\x2b\x24\x74\xec\x92\xe3\x08\x71\xab\x22\x3c\x18\x1e\x92\x56\x5f\x96\x43\x78\x2b\x35\xec\x96\x6b\x95\x43\xd0\xbf\xb7\xbb\xe7\x3f\xec\xbe\xc5\x77\xfb\xa0\xe4\x65\xc2\xe1\xad\x21\xeb\x54\xc6\x30\x7a\x6f\xbb\xf3\x29\x56\x22\x0b\x66\xed\xca\x5b\x5e\x04\x5f\x22\x78\x0c\xd9\x3b\xf4\x5b\x24\x10\x2a\x16\x8f\xce\xea\x2a\x50\x27\x28\x06\x9c\x7b\xf0\x4d\x94\x9f\x0d\xe2\x12\x3f\xb7\x9d\x58\x6c\x4e\xf0\x7a\x18\xaf\x17\xf0\x71\x1a\xa1\x4b\x21\xa8\xee\x77\xfa\x6d\xc2\x1b\xde\xae\xcb\x2f\x26\x85\x10\xb2\xbd\x0c\x14\x77\xa0\x80\x05\x1b\xc9\xa0\xd2\x9d\x2a\x86\x84\x79\x8e\x7c\xd2\x5e\x7d\x99\x04\x8b\x83\xb6\x76\xc7\x73\x46\x19\x2c\xf8\x60\xd8\x65\x6e\xf1\x9d\x41\xdf\xaa\xda\x2f\x36\x31\xeb\x09\x57\xa2\xf3\xd7\x06\x5d\xd9\xc2\x86\x4e\xee\x79\x3c\x9f\xe4\xc5\x08\xaf\xfc\x6d\x6e\xb7\xae\x0a\x25\xdc\x79\x34\xa1\x2c\xb2\x3f\x9a\x30\xb7\x2a\x62\x6f\x98\xc3\x49\xc2\xe7\x6f\x35\x3f\x6e\x2e\xbb\x4c\xd0\x3e\x5d\xda\xda\x7f\xdc\x9c\xb0\xd6\x33\xe6\x8e\xfd\x29\x22\xc0\x43\x04\x5e\x2a\x4b\x09\xa1\xa9\xc3\xae\x67\x4c\xfe\x32\x70\xb9\xa9\x61\xfc\xc5\x40\x93\xfe\x81\x7e\x95\x90\xc3\x0f\xbe\xd5\x30\x08\xae\x95\xf6\xa9\x1c\xdb\x08\xf3\x4f\xef\x88\x92\x1e\x3b\x29\x9e\x89\xe1\x38\x6e\x52\x5b\x42\x30\x7a\x2b\xaf\x12\x25\x97\x45\xd0\x56\x9b\x37\x9f\x73\x59\x15\x21\x78\xed\xa6\xa5\x67\x02\x43\x59\xd0\x0b\xdb\x78\xc6\x6b\xe1\x20\x03\x39\x8f\xab\xf7\x1d\xfd\x14\x08\x67\x5a\x3f\xaa\x9a\xea\x6d\x24\x1c\x8c\x39\xd1\x74\x6f\xa1\x2c\xc1\x8b\x57\x2a\x39\x72\x1d\x8b\x0d\x0d\x27\xcc\xcb\xad\x5e\x66\x13\xc2\x9a\x6e\x31\x07\x1a\x4a\x08\xbf\xe6\x6c\x1d\xf9\x6f\x74\xff\x53\xd4\xac\xd1\x88\xf3\x6c\xb8\xad\xfa\xb9\xa2\x7d\xec\x6e\x2c\x12\xdc\xee\xdf\x7f\xad\x93\xc1\xac\x27\x41\x76\x1c\xa6\x5a\x34\x8e\x26\x8d\xb5\x8b\x04\x05\xf5\x08\xf6\xda\xdb\x9c\x04\x1c\x7c\x08\x96\x72\x45\x9b\x83\x52\xc0\x40\xc6\xed\x42\x88\xba\xf1\x7d\xc2\xc7\x5d\x32\xdc\x5f\xca\x6e\xb0\xd0\x78\x9a\xf6\x16\x14\x57\x10\xbe\x73\x8a\x2e\xce\xb6\x3a\x40\xe0\xe3\xd2\x1d\xed\xd6\x1e\x61\xe0\xa3\x72\xd3\xfc\xc5\xa9\xf9\xf4\x0f\xb4\x26\x35\xfc\x99\x35\xd2\x5c\x0e\xe7\x87\x15\x17\x9d\x04\xa6\x11\x36\xb5\x69\x48\x39\xdf\xef\x63\xc0\x9a\xf4\xc8\x7a\x72\x95\x15\xe1\x60\xa4\xea\x85\x1d\xa3\x3a\x04\xb1\xf5\x1f\x23\x7f\xdd\x9c\x40\xc8\x12\x9c\x14\x1d\x6e\x22\x42\xf0\x56\x3a\x6b\x63\xf3\x68\xcf\xbf\x20\xb3\x55\xf8\xa3\x2a\x5f\xdc\xbf\xa0\x31\x65\x58\x62\x9d\xd9\x19\x82\xe3\x87\x8d\x12\x7a\xdb\x07\x18\x7c\x35\x5c\xa7\x99\x22\xcd\x4d\x68\xdf\xf8\xac\x3d\xe7\x9b\xe4\xff\x13\x1e\xaf\xc3\x2e\x7c\x15\xe0\x25\xb8\xdb\x5b\x77\x4d\xf0\xf4\x20\xb8\x4d\x39\x75\xb3\x30\xf2\x0a\xc1\xfe\xb5\xfb\xe9\xa2\x31\x7c\x74\x5c\xcf\x61\xeb\x19\x41\x08\x11\xf3\xae\x18\xa9\x37\x24\xec\xf2\x49\x92\xca\xcf\x59\x4d\xb8\xf8\xc6\x87\xf7\xbe\xcd\x04\x42\x8d\x8b\x43\xfa\xd7\x16\x5b\xc2\x7b\x5d\x97\x93\x53\x2f\x84\xb2\x61\x9a\x5f\xd7\xad\x99\xa7\x14\x08\x03\x26\xed\xd6\x87\x1f\x2e\x27\xb8\x46\xac\x5a\xbf\xd0\xfa\x14\xa1\x24\x66\x87\x4e\x68\x9a\x35\x41\x56\xfd\x66\xf2\x64\x3b\x3b\x02\x6b\x53\xe9\xca\xd5\xe7\x17\x10\xf6\x6f\x77\xcb\x79\x95\xbe\x99\x20\xd4\x30\x29\x22\x63\x46\x26\xe1\x8d\xbb\x4e\xf6\x7f\x38\x77\xf5\x0e\xcf\x45\xe9\xa7\xe5\xc8\xb2\xd5\x3a\xa8\xd8\x7a\x91\x85\xa6\xe7\x09\xb3\x85\xf8\xb3\x09\x99\x33\x17\x18\x2c\xbc\x5b\x45\xf0\xb6\x30\x79\xfb\xfb\x4a\x15\x61\x97\xee\xe5\x49\xce\xca\x95\x04\xb5\x41\xc9\xb3\x37\xef\x8f\x2d\x05\x09\x7c\x56\x05\xb5\xa7\x09\xab\x1d\x03\x13\x39\x32\x8f\x10\x9e\xda\xa2\xe8\xe9\xec\x14\x42\x78\xee\x7a\x0b\xae\x86\x58\xc2\xe1\xbe\xd7\x02\xf7\xf5\x0e\xb2\x60\x91\xca\xe9\xb4\xe0\x19\x18\x84\x64\x06\xf2\x15\x1c\x1b\x60\xf0\xca\xb9\xc9\xb9\x73\x6c\x0b\x70\xf2\x6e\x67\xd2\xe1\x07\x61\x04\x8f\xeb\x92\x81\x52\x4b\xa2\xd9\xca\x5e\xbb\x62\x41\x9f\x27\xf1\x84\x81\x75\x93\xbb\x7b\xdf\x9f\x23\xb8\x2d\x31\xfd\xf4\x63\x6c\xa7\x36\x7a\xbd\x7e\xbb\xe3\x0b\x7b\xc2\xe4\x43\x11\x52\x61\xaf\xec\x09\xf9\xe2\xf6\x69\xdb\xb6\xae\x25\xa4\x94\x1a\xbe\xcb\xfa\x62\x45\x68\xfb\x6c\xf1\x57\xc2\x64\x36\xe1\xce\xa6\xb7\x2f\x2c\x3f\x68\x10\x48\x3c\xd2\xec\x5d\x54\x3b\x83\xc4\x92\x2d\x37\xd7\x86\x69\x12\xb6\x7f\x18\xe2\x8b\x76\xf3\x26\x4c\xf4\x59\x11\xba\x39\x50\x8b\x70\x5a\xd5\xfa\xcc\x27\x69\x22\xf8\xee\x9c\xd0\x91\x11\x14\xc0\x42\xcb\x97\xf6\x2a\x19\xe7\x62\xc2\x16\x0f\x49\x9f\x36\xb1\xfb\x84\x27\x41\x61\x2b\x4f\xcd\xa9\x22\xa4\x44\x98\x38\x6d\x12\xce\x25\x18\x58\x92\xca\x61\xb1\x25\x84\x53\x92\x76\x8a\x11\xc3\xea\x84\x5e\xdb\x8e\x46\x9d\xc0\xb9\x84\x2d\x02\x7b\x27\x89\xf8\x1b\x10\x32\x04\x98\x17\x41\x49\x0f\x19\xdc\xad\x8b\xba\xab\x2a\x67\x4d\xff\x40\xff\xfb\x80\x14\xaf\x02\x57\x42\xb1\xcc\xd9\x7b\xda\xd3\x4b\x09\x01\x7c\x82\x45\xd7\x96\x45\xb1\x70\xbe\xc5\xd9\x86\xcf\x2f\x89\x85\x55\x7d\x87\xe8\xca\xb9\x5a\x42\x62\x73\xd5\x9e\xb2\xb4\x5a\x82\x7a\xc6\xca\xf3\x5f\xe2\x0b\x08\x71\x2a\x19\x4a\x9a\x49\x2e\x84\xc2\xcf\x26\x5a\xcb\x57\x86\xb3\xa1\xf6\x4e\x86\xf0\x81\x33\xfb\x08\xcb\x3c\x12\xf3\xe4\xbe\x1b\x11\x92\x83\x4e\xaf\xb4\x32\xef\x62\xa0\xb8\x6a\xc0\x58\xfb\xd8\x7c\x1a\xc7\x07\xa6\xa6\x27\x7f\x5d\x5b\x39\x3e\xf2\x7f\x9a\x85\x4c\x67\x82\x6e\x8d\x57\x46\xc5\xc2\xed\x6c\x88\x5f\x21\xb5\x26\xc1\xd3\x95\xb0\x4c\xf8\x72\x52\xc6\xfb\x12\x36\x28\xaf\x91\x0b\x4f\xa8\x38\x43\x18\x6c\xb7\xc8\xfa\xbf\x98\x3c\xe7\xe5\xa2\xed\x87\x9e\x33\xf0\x2c\x5b\x7e\x53\xe6\xe8\x62\x42\x87\xcd\xab\x1d\xbb\x65\x25\x09\xaf\x8c\x3c\xbe\xcf\x53\x88\x22\x54\x68\x6d\xaf\x2f\xb1\xf3\x22\x68\x99\xea\x97\xbf\x90\x13\x21\xdc\x68\x6b\xbe\xca\x1d\x3c\xca\xa0\x42\x58\xf3\x5a\xf7\xae\xc5\x84\x0d\x1e\xeb\x06\x3c\x4e\x95\x10\x6e\x59\x7b\x75\xde\xde\xba\x9c\x90\xe4\xf7\xa5\x70\xfe\xa5\xdd\x6c\xd8\xa7\x14\xb9\x3c\x5a\x62\x3b\xe1\x6b\x93\xc5\xf0\x72\x6d\x2b\xc2\xd4\x64\x96\xff\x92\xf0\x1b\x04\x5e\x07\xeb\x26\xdb\xbd\x37\x08\x71\x7e\x09\x36\xaf\x3c\x76\x12\x98\x8c\x96\x92\x76\x01\x49\x82\xf2\x8c\x79\xbc\x21\x93\x86\x18\xcc\x36\x89\xf8\xa2\xa7\x96\xce\xc2\x4f\x4f\x8d\x0d\x6e\x23\x06\x04\xef\x8c\x66\xd5\x90\x7d\xc3\x0c\xe2\xfa\xde\x70\xf7\x07\x0f\x30\x10\x48\xf2\x19\x9c\x76\xab\x8a\x41\xde\x25\x0b\xc9\x3d\x6d\x2a\x34\x8e\xc9\xf5\x87\xb5\x56\x9e\x6b\x2d\x47\xfb\xa8\xb0\xd8\x34\x81\xa5\x84\x89\xf1\x1a\x4c\x81\xe1\x7a\xc2\x7a\xee\x72\xdb\xeb\x22\x4b\x09\x09\x93\xee\x14\x51\xef\x02\x42\xc7\x7d\xc1\xc1\x4d\x2f\xc6\x4e\xae\x59\xe2\xf7\x45\xb2\xac\x08\xee\x45\xd7\x7e\x2a\xdc\xe4\x22\x68\x6d\xef\xdf\x3d\xed\xfc\x30\x03\xfe\x27\x5e\x11\x27\x74\x8a\x08\x25\x97\xb7\xb4\xfc\x91\x11\x26\xcc\x70\x3a\x22\x69\xd9\x54\x44\xb0\xce\xaa\x25\xbf\xa2\x32\x82\x57\x93\x4c\xe4\x3d\x81\x87\x2c\x94\xc6\xec\xfc\xe8\x3b\x56\xe2\x25\x1c\x8d\x7b\x67\x47\x13\x36\x0e\x5d\xdd\xdc\xb4\x3e\x9a\xd0\x51\xbd\x33\xd8\xff\x4e\x01\x21\xe1\xd4\xf3\x25\x12\x4b\xd7\x10\x02\x0e\x14\xff\xd4\xe5\x9f\x49\x30\xe2\x3c\x39\x6d\x65\x18\x3f\x61\xb6\x80\x91\xe2\xe6\xa9\xab\x09\x35\x9b\x27\xdb\x84\x36\x58\x13\xd2\x6f\x35\x8b\xda\x25\x96\x11\x0a\x5d\x4e\xcb\x1c\xff\x3d\xc0\xe0\xa6\xac\xe5\xea\x76\x97\x51\x06\x2f\x5d\x16\xda\x44\xb9\x0d\x32\x28\x95\x0d\x54\xd3\xbf\xbd\x84\xa0\xd4\x92\xbc\xc8\x65\xd0\x9c\x70\xf5\xb1\x91\xec\xd6\x8f\x5a\x84\xf6\xf8\xf3\x71\xbf\x8a\x4d\x09\xc6\x7f\x56\x58\xfc\x3e\x72\x9d\x30\x94\x3c\x72\x51\xcb\xc5\x8a\x50\xf9\x55\x53\x43\x87\x3b\x87\xe0\x3b\x43\xb8\xa9\x5d\x2c\x87\x50\xee\x5a\x65\xba\x55\x4c\x83\x70\x71\x48\x72\xf5\xb1\x9e\x42\x82\xad\x82\xea\x33\x35\x8b\xd9\x6c\x98\x63\x56\xe4\x5c\xba\x3f\x86\xb0\xca\x2e\xfb\xca\x85\x07\x31\x6c\x25\x92\x35\x49\x46\xbd\x2f\x9e\xe0\xdf\xd0\xeb\x3a\x2b\xbf\x84\xb0\x98\x2f\xd4\x2a\xf2\x69\x09\x41\x67\x79\x95\x6a\x74\xbe\x17\xa1\x8b\x87\x87\x55\x7a\x37\x8e\x70\x2d\x4c\xea\xee\x92\x07\x76\x84\x08\x8d\x3e\x69\xad\x07\xa2\x84\xef\xba\x3b\x6d\x34\xad\x7f\x33\xe3\x88\xd6\x2d\xe8\x50\xed\x99\x40\x88\x5d\x7d\x64\xd2\x13\xee\x45\x84\xbe\x43\x9c\x7b\x4c\x16\x32\x84\xd6\x0b\xda\xa3\x56\xbf\x35\x09\xc9\x82\x93\x6e\x5c\x2b\x9d\x4e\x50\xe6\x99\xe5\x00\xe3\x17\x84\x9e\x92\x2e\x53\xbd\x82\x38\x42\x6b\x61\xfe\x71\xdf\x6f\x71\x84\xcb\x0b\xca\x96\x45\x89\x84\x13\x92\xef\x34\x1f\xb9\x92\x78\x8a\x90\xdb\xfb\xd7\x75\xd6\xb2\x30\xc2\xcd\xac\xad\x92\x05\x5f\x2a\x08\xb4\x58\x52\xdb\x37\xa6\x82\x50\xea\xeb\x3d\x49\xdc\x35\x88\xd0\x1c\xb7\x3d\x67\xe3\x84\x40\xc2\xd7\xbd\x9c\x5f\x06\xa5\xae\x11\x66\x0e\x8f\x1c\xd1\x1c\x4c\x22\x74\x5e\x7e\xe1\xae\xac\xbe\x9d\x60\xee\x10\xe0\xd8\x3c\x65\x07\x0b\xfb\x74\x78\xf7\xd8\x2b\xef\x21\x3c\x89\xad\x69\x9b\xc7\x9d\x48\x78\x27\xe0\x18\x93\x58\x9c\x40\x18\xbc\x6e\x2f\x67\x3e\xd3\x89\x90\xd5\x6c\xd6\xfd\xfb\x7a\x00\x41\x56\x6f\xa3\xcd\xce\xf9\x6b\x09\x5b\xad\xb3\xcb\xa4\xaf\xf3\x13\x96\xe4\x75\x58\x1a\x3d\x16\x66\xc3\x97\x8b\xdd\x51\xcf\xce\x4b\x12\xaa\x16\x3a\x1f\x6b\xe4\x9b\x44\x28\x57\x2d\x16\x94\x55\xe4\x25\x38\x87\x31\x06\x76\x3f\xb8\x09\x93\x2b\x67\xcc\xf6\x0d\x94\x20\xdc\x4f\x8b\x89\x92\xb2\x35\x22\x58\xc6\x6c\x89\xd4\x73\x91\x27\xec\x58\xf6\xc9\xde\xb7\x2d\x9a\x85\x87\xed\x92\x7c\xaa\x7c\xdd\x84\x1c\xd1\xc1\x9d\xcf\x38\x9f\x13\xe4\x9f\x3d\x8a\x89\xf6\x7b\x40\xf0\xdf\xf6\x7b\x7e\x57\xac\x2a\xe1\x44\xf5\x86\xb2\x7b\x45\x76\x04\xf5\x87\x3d\xf7\xf9\xd4\xc2\x09\xd6\x91\x42\x5e\xc7\xa3\xe2\x09\xe6\x37\x76\xbf\x2d\x4f\x6a\x20\xdc\x5b\xbf\x8b\xb7\x72\x0c\x7e\xd1\x62\xdd\x7f\x4c\x2a\x08\xf1\x87\x16\x55\x55\x8c\x95\x3d\x0e\xd6\xe2\xc6\xf7\xcb\x09\x5a\xfa\x32\x9e\x77\xa5\x2e\x11\xb8\x3c\xc3\xa4\x6d\x7b\x1d\x09\x1a\xc2\xd3\xce\x3e\x6b\xd9\x48\xd0\x92\x6c\xd1\x1b\xd4\xdf\x41\x88\x8f\x56\x5a\xfd\xeb\xec\x10\x83\x47\x9f\x8b\x77\x9f\xec\x59\x4a\xe8\x9c\x3d\xe4\x9d\xfd\x4e\x9b\x30\xb8\x47\x79\x83\x74\xa3\x10\x21\x2a\xeb\x7b\x38\xef\x41\x11\xc2\x48\xf7\xdc\x13\x17\xb9\xaf\xb3\xd0\x31\xbf\x34\x69\x65\xca\x1b\x42\xae\x5d\xf2\x11\x9d\x91\x66\x82\xee\xd7\x7b\x9a\xe9\x82\xf9\x84\xd1\xe7\x99\x35\x4b\x8e\x72\x13\xea\x2f\x47\xce\x38\x39\xa5\x82\xf0\x60\xd2\xbd\xd0\xcb\x47\x97\x11\x7c\x42\xd6\x0a\x86\xcf\xcd\x26\xf8\x3e\x5d\xe5\x5a\x67\x28\x44\x58\xb3\xf7\x9c\x72\x1d\xcf\x05\xc2\xbc\x8c\x0d\xd6\xf1\xeb\x6a\x09\x0f\xea\x62\x1e\xda\x97\x0a\x12\x8e\xff\x30\xdf\x73\x41\xd8\x8d\xa0\x79\x7d\x8a\x94\x69\x5f\x00\x1b\xd2\x3c\xdc\x4b\x7b\x6e\x0b\x11\x84\x7d\xbf\xdc\xe5\xac\x75\x22\x7c\x0e\xb9\xda\x5e\xa2\x24\x4a\x48\x2d\x7b\x9d\xbc\x8c\x57\x98\xb0\xc7\x53\x6e\xe5\xbd\x2e\x09\x82\xb4\xb4\xfe\xcb\xa7\x22\xad\x0c\x1e\x8a\xda\xc7\xe5\xc7\xe9\x13\xca\x9e\x2d\x3c\xfd\xea\xd7\x51\x36\x3c\x6e\xd6\xfb\x78\x6a\x51\x22\xc1\x2e\x2c\x94\x57\x25\x71\x1a\xc1\x62\x45\xe1\x89\xd3\xcb\x63\x08\x7b\xa2\xe8\x44\x89\xcf\x14\x42\x5a\x87\x63\xd0\xc9\xaf\xdf\x18\xe8\x6c\x30\xbe\xa8\xe8\xd5\xcb\x60\xe6\xc2\xea\xd5\x55\x9f\xfa\x19\xac\x13\xd1\x3f\xdc\xf8\xf3\x2f\x83\x11\x9b\x3f\xd5\x0e\x12\x05\x04\x93\x4d\xc5\xce\x07\x22\xbf\x33\xa8\x1d\x88\x4d\x4d\xbb\x67\x4a\xf8\xae\x3d\xd2\xb9\x6b\xec\x27\xe4\xba\x9a\x51\x28\x6e\x74\x89\xb0\x42\x6c\xa8\xdb\x75\xf9\x31\xc2\x65\xa5\x3f\x2b\x9e\x3d\x68\x23\xf8\xfe\xd1\x7a\x79\xf2\x61\x11\x0b\xfb\xee\x72\x3b\x3a\xc7\xd6\x13\xde\xbd\xe1\xb8\x6a\xf4\xe6\x08\x81\x7b\x65\xea\xbe\xec\x3f\x97\x08\x2f\xad\x17\x6d\xd3\xdc\x39\x99\x0d\xef\xa8\xb1\x52\x88\xe7\x07\x83\xb9\xea\x5f\x7e\x9a\xa5\x89\x10\xea\x3e\x39\x9c\xd6\xc3\x52\x82\x55\x6b\x52\x7a\xe8\x73\x3b\xc2\x8a\xc3\x13\xec\x97\x4d\x15\x19\x5b\x21\xab\x17\xdf\x10\x11\x27\xbc\x9d\xe9\xc6\x25\xae\xc1\x4b\xe8\xb9\x68\xd0\x28\xd8\xf8\x8a\x81\xa0\x3e\xbf\xef\x49\x17\x61\x1a\x47\xb7\xad\x96\xe4\x77\xae\x5c\xc2\xcf\x23\x2e\x1a\xdf\xc6\x30\x70\xd7\xbe\xd6\xef\xfa\x12\x82\xad\x7e\xa7\x8a\x80\x83\x3c\x41\xdd\x2a\xbc\xff\x65\xcf\x27\x06\xe2\xf7\x96\xac\x59\xfc\x47\x98\xc6\x51\x3b\x75\x97\xe1\x0f\x7a\xc1\xc0\xa8\x58\xc7\xf5\x40\xfe\x0c\x82\x6e\xff\x3c\x33\xae\x2f\x33\x09\x06\xcb\xf7\x6f\xb6\x94\x94\x27\x98\x9c\x58\x57\x20\x54\x3c\x8f\x90\xc0\xc3\x25\x6a\x9b\x79\x9b\x60\x65\xed\xba\xa9\xfe\xfd\x1d\xc2\x8c\x0d\x05\xf9\x89\x33\xe4\x09\x71\x57\x64\x8d\x93\x38\x96\x13\xa4\xea\x7e\x3d\x11\xdc\xb1\x80\x70\xff\xbb\x9b\x8a\xf5\x5c\x23\x42\x9b\xe7\x85\x0b\xcb\xf6\x7f\x66\xb0\xba\x5d\xb7\xbc\xbe\x7b\x01\xa1\x7f\x8f\xf1\xd2\xe3\xd9\x32\x84\xb2\xad\xe2\x7e\x3e\xfd\xc9\x2c\x58\x7f\xb4\x3a\xec\xf0\xde\x84\x60\x72\xe6\x74\xc8\xfe\xd8\x99\x84\xa8\xcd\x5d\xeb\xb5\xbf\xeb\x10\xb8\xa6\x35\xef\xdc\x56\xce\x43\xf8\x1e\xbf\x78\x60\xef\x35\x4f\x82\x87\x95\xcf\x92\xbf\x2b\xaa\x08\x1b\x43\x75\xe3\x2b\x7f\x17\x13\x02\x82\x6b\xbb\xe2\x79\x93\xd8\x60\xb1\xfa\xc3\xeb\x47\x5a\x63\xbf\xcf\x87\x47\x15\x4a\x43\xd4\x09\xe1\xd6\x5c\x0f\x6d\x7f\xf0\x11\x56\xdd\x88\x2a\xf7\x98\x2e\x4e\x38\x24\x9c\xb8\xf7\xe1\x87\xeb\x84\xc3\x0d\x3b\xcf\x3d\x3e\xe3\x46\x58\x78\x3e\xa9\xa6\xc1\x6d\x2d\x81\x27\xa3\xfb\x98\xc0\xfd\xc5\x84\x92\x06\xfb\x15\x5e\x86\x46\x04\x69\xc3\x8b\x95\x6f\x1e\xa9\x10\xb6\xd7\x4b\x5c\x61\xa2\xde\x30\x58\x2e\xb2\xc8\xf2\xc7\x59\x86\xb0\xe2\x46\x57\x50\xa2\xc1\x3a\x82\xa3\xe9\x94\xf0\xf7\x16\x25\x84\xfa\x17\x4f\x7d\xc5\x8b\x6b\x08\x0b\xda\x6f\x6f\x91\x18\xc3\xe2\xd2\xa5\x99\xd7\x2f\xc6\x10\xa4\x92\x37\x5f\x28\x34\xb5\x20\x68\xd4\xbb\x2f\x7a\xa7\xd7\xc5\xe0\xb1\xbc\xd7\xe3\x56\x28\xd2\x3f\x20\x76\xef\x21\xbd\xe6\xbc\xc2\x20\xc6\xe0\x6a\x4f\x88\x5d\x35\x21\xc3\xbf\xf8\x29\xc7\xfc\xb1\x4d\xbb\x43\x67\xaf\xcf\x87\x45\x04\xd9\x98\x79\xdf\xb4\x67\xb6\x32\xf8\xa4\x97\x9f\xf3\xfe\xe8\x6c\x42\xe1\xe8\xbe\x95\x1d\x2b\xe7\x10\xfa\xe3\x79\x8c\x6c\x0b\xc4\x09\xd1\x53\x6d\xb9\x9d\x3f\xf4\x32\xe0\x7f\x9c\x75\xf2\xcd\x6e\x11\xc2\x7b\xe7\x30\x12\x4d\x96\x26\x70\xb4\x08\x73\xb8\x2e\x5e\x4c\xf8\xc5\x31\x21\x21\x4b\xb8\x8e\x85\x70\xd9\x80\x9a\xa9\x22\x57\x08\x9b\x07\x42\x9c\xd6\xc9\x57\xb3\x20\x2a\xb4\xfd\x5b\xe6\x2d\x03\xc2\xf6\xe6\x47\x2a\xf3\x8d\x8b\x08\x72\x73\x53\x9e\x70\x44\xaf\x24\xa8\xde\x5c\xb2\x7f\x92\x5e\x22\x41\x2f\xe2\x79\xec\xea\xc0\x14\xc2\x8a\x68\xbf\x17\xc7\x32\x35\x08\x3f\xe2\x37\x1d\xbc\x1b\xc1\x4b\xe0\xe4\xf7\xcc\x0c\x3a\x95\x4c\x78\x94\xe4\xfd\xa8\xda\x6b\x80\x41\x9b\xe5\xe4\x3f\x0d\x1e\x06\xf4\x0f\x7c\x3f\xd6\xdc\x71\x34\x46\x8e\xf0\x28\xe1\xdc\xa7\xc9\xe7\x45\x08\xc9\xc6\x3b\x4e\x45\x7d\x35\x60\x43\x76\x59\xbc\xdb\xb5\xb2\x75\xe5\xf0\x35\xcb\x0f\x1e\x3a\x63\x47\xb0\xf0\x50\xd0\x1c\x71\x34\x26\xb8\x86\xce\x93\x38\xe0\xb1\x80\xa0\x7b\x58\xfb\x4b\xec\x6f\x0e\x42\xc4\xf7\x3f\x8e\x56\x66\xcb\x08\xb1\xbe\x7e\x1e\x19\xfe\x09\x2c\xcc\xdd\xb1\xc0\x41\x6e\x72\x27\x83\x01\x5d\x69\x6d\xa5\x2f\x72\x04\x9e\x1c\xbe\xe0\x6f\x37\x66\x13\xc2\x4f\xb9\x4b\x88\xdc\x3a\x4f\x70\x31\x39\x1c\x5f\x34\xc1\x89\x70\x6b\x48\xe6\xaa\xb3\x90\x3f\x81\x33\xef\x63\xb6\x0c\xd6\xb3\x8d\xb6\x5b\x53\xd0\xe1\xc5\x06\x84\xe3\xac\x96\xcd\x3e\x03\x89\x84\xe3\x37\xbb\xf6\x1d\xbf\x97\xc9\x82\x04\xc7\x8c\xe3\x11\xc9\x1c\x04\xab\xd3\xb2\x4b\x9d\x30\x91\x0d\x0d\x52\x0a\x77\x27\xf8\x0c\x32\x78\xa8\xfb\x3a\x8c\x77\xf1\x19\x42\x8d\x37\xbd\xfa\x1c\xb6\x93\x50\xdf\x98\x9f\x78\x27\xd4\x86\x0d\xab\x93\xb9\x39\x13\xb3\x27\x10\x84\x3a\xad\x5a\x15\x67\x70\x12\xbe\x75\xab\x3c\x4a\x3c\x26\x4a\x08\x2c\x7b\xb1\x4a\x25\x3b\x89\x70\xf2\xf3\x95\xe7\xab\xe6\x8d\x1d\x2b\x12\x5e\x77\x7c\x0f\x4a\x23\xa8\x35\x8b\x33\xb3\x52\x33\x08\x1f\x33\xa5\x17\x5d\xd4\x1a\x5b\xba\x0b\xaf\x38\xc4\xae\x4d\x27\xfc\x32\x75\xb5\x89\x7f\x78\x93\x70\x30\xf0\xad\x7a\x63\x84\x0f\x81\xbf\xb9\xaf\x3b\x54\x54\x80\x70\x4f\x6a\xf2\x9a\x7b\x03\x8a\x04\xa3\xa1\xc4\x05\x7c\xe2\x31\x84\xd3\x37\x54\xaa\x9e\x46\xe4\x12\x7c\xcc\xa5\x36\xba\x58\xed\x24\x38\x9d\x9a\x52\xc9\x31\x5c\xc5\x02\xb7\x2e\x6f\xd7\xd6\x77\xee\x84\xd6\xc0\xe6\xe7\xd7\xb5\xac\x09\xd7\x74\x86\xff\x04\x0b\xa5\x10\xb4\x5e\x2c\xb9\x69\xd9\x9c\x4d\x78\x7b\x65\xf5\xdd\x96\xfa\x5c\xc2\xd9\xe9\x27\x0f\x19\xfc\xa9\x23\x94\xb8\xfd\xb6\xd8\x3b\xf1\x0f\x83\xa9\xb5\x29\x49\x3d\xd6\x22\x84\x83\xaa\xe7\x76\xf9\x35\x9c\x22\xe4\x07\x9b\x3c\x25\x8d\xcb\x84\x3b\x66\x33\x4b\xcc\x46\xef\xd3\xf0\x85\x76\xe3\x23\x4a\x7b\x09\x25\x2e\xc9\xd6\x12\x25\xdc\x84\x23\xad\xac\x93\xd7\x39\xc4\x08\x6f\xfd\xb2\xb7\x0d\xf3\xcf\x60\xc3\x1b\x05\xa1\x68\x85\x8a\x3c\x06\x4a\x31\xd7\xf7\x3f\x37\x5e\x4c\xc8\x53\x38\x23\xb7\xf1\x8f\x22\xa1\x67\xd5\xb7\xe9\xbe\x09\xea\x84\xa4\x73\xc3\x7b\x0f\xfe\x59\x4d\xb0\x34\x4a\x30\xde\xf4\x40\x81\x30\x49\x6f\x9f\x68\xe7\xdf\x38\x16\x34\x3f\xcf\x0c\xbc\x12\x6d\x47\x18\xdc\xae\x71\x4c\xb4\x9d\x83\xa0\xe8\xe6\x12\x16\x39\x63\x09\xc1\x3e\xe7\xfa\x4d\xf9\xd9\x4a\x04\xb3\x35\xa9\xc9\xa3\x11\x7f\x19\x34\x6c\xff\xbc\xee\xb9\x4a\x0e\x61\x1e\x07\x9f\xc6\x34\xa7\x4c\xc2\x96\x69\x13\x3f\x4d\x2b\xf3\x26\x58\xe6\xfd\xe5\x6c\xd9\xf1\x98\x19\x07\xc7\x54\x41\x2f\x9b\x8c\x49\x34\x0e\x21\x3b\x97\xa5\x33\x6a\x7c\xd9\xc0\x63\x2b\x99\x65\xa9\xfa\xbe\x1c\xeb\x96\x05\xbf\x9f\x39\xdd\x89\xd0\xf9\xc9\x21\x2d\x64\x89\x24\xe1\x97\xd3\xe6\xbb\xfb\x2b\x66\x12\x5a\x54\x33\xe6\x0c\xca\xdd\x23\xfc\x5c\xf5\xa7\x5f\xc2\x45\x93\xb0\x35\x23\xb4\x4f\xfd\x86\x02\xc1\xf4\x93\x76\xd2\xa5\xd2\xf9\x84\xf2\x70\x71\x73\x11\x2d\x29\xc2\x81\x2b\x9f\x6e\x6e\xef\xe1\x22\x3c\x9a\x76\x3c\xd7\x6c\x84\x87\x10\xec\xab\x1e\xc5\xa7\xfd\x9b\x41\xfa\xbc\xbb\xfd\xb7\xcf\xf5\x32\x78\x5b\xfb\x46\x17\xf1\x73\x09\xef\xea\xa6\x71\x72\x25\x1b\x11\x3a\x0f\x78\x4c\x39\x76\x36\x85\x70\xb6\xeb\x46\xea\x62\x85\x00\xc2\xfc\xf3\x2d\xac\x8f\xfb\xbc\xd8\x4a\x88\xed\xd6\x1b\x9a\x1c\xb2\x84\x47\xf5\xa2\xed\xbb\x2f\x49\x13\xfe\xee\xb5\x7c\x36\xcf\xf6\x27\x83\xdb\xba\xd5\xf3\x2d\x95\x74\x08\xaf\xfd\xaf\xa4\x37\x8f\x1d\x02\xfc\x02\x3f\xc7\x58\x2e\x48\x23\xe8\x4c\xf8\xe8\xf3\xbe\xac\x99\xf9\x7f\xa1\x71\xc7\xc9\x80\xc9\xbd\x57\x58\x28\x0c\xa9\x68\x32\xef\x09\x22\x6c\xee\x9c\x73\x5f\x68\x57\x09\x61\xc6\x19\xdb\xf9\x83\xbb\x06\x09\x41\x62\x4e\x52\x9d\x63\xc8\x89\xde\x6d\xd6\x3c\x86\xa2\x6b\xbb\x3b\xb8\x4c\xef\x13\xfa\x4a\x75\x58\x77\x34\x3d\x08\x65\x6b\xe3\xbf\x8a\xf9\x87\x13\xaa\xab\xac\xd7\x3e\xde\x1c\x4a\xe0\x3c\x13\xc5\xb3\xd5\x22\x8d\x35\x3e\x92\x8b\x0d\xe2\x2e\x1e\x7b\x72\x86\x7f\x4d\xf8\x87\xd3\xfa\x04\xab\xf7\x5f\xcc\xbc\x84\x5c\xd8\x4a\x93\xaf\xc3\x6d\xf9\x2a\x43\xc2\xfe\x65\xee\xc1\x5b\x67\x44\x10\xea\xbc\x94\xc5\xaf\x35\x34\x11\x36\x64\x69\x6e\x17\x10\xa9\x20\xac\x7e\x14\x33\x43\x62\xe7\x26\x82\xcf\xc4\xc1\x99\x42\x73\xe5\x09\xd6\x57\x99\x15\x23\x1b\x97\x11\x36\xfe\x32\x17\xd5\x6f\x7f\xc0\x86\x55\x9c\x07\xfd\x8e\xb8\x28\x13\x8c\x0c\x16\x34\x6f\xbe\x74\xb9\x1c\x3b\x96\xbf\xf4\xe1\x7c\x2f\x4c\xe3\x70\x78\x3c\xdb\xbb\xe4\xc4\x04\x82\xbe\xb3\x93\xb7\x6f\xec\x93\x72\x30\x8a\x56\x41\xac\x48\x25\x82\xd1\xa0\x88\x6a\xda\xbd\x69\x63\x97\x2c\xb0\x2b\x51\xec\x37\x83\xa0\xf5\x8a\xda\x25\x9b\xaf\xb1\x70\x39\xb2\x21\x53\xfe\xd8\x4a\xc2\xcc\x14\x27\x03\xc5\xf2\xab\x04\x56\xe8\x6b\x6e\xb1\x2f\x9e\x84\x00\xdf\x8c\x77\x5f\xaf\x07\x11\xdc\xcd\x67\x0b\x4b\x95\xce\x20\x7c\x2a\xdc\x15\x7c\xf3\x6e\x0c\x1b\x38\xce\x08\xb7\xcf\xc9\xca\x26\x38\x7a\x1c\xdc\x7a\xd6\xeb\x25\x21\xf5\x82\x8c\xb6\xf7\xeb\x1b\x04\xad\xca\x9b\xeb\x7c\x34\x05\x08\x6b\x3a\xdb\xcc\x74\x82\x0f\xb3\xe1\x68\xaf\xdc\xa2\x23\xea\x5e\x84\x8b\x46\x82\x33\x96\xbd\xbb\x42\x98\xfc\xbe\x64\x72\xda\xc6\x63\x84\xb8\x2f\xd7\xdf\x1b\xda\x1d\x25\x78\x4c\x6c\x78\x6a\x5e\x15\x46\x78\xd8\xee\x66\xbd\xe7\x9b\x25\xc1\x2c\xcc\x62\x5f\xcf\x5c\x33\xc2\xdb\xa7\x2f\x64\xfd\xa4\x02\x09\xb3\x1d\xf2\xbe\xfa\x4e\xe8\x61\x50\x7c\x30\xe7\xab\x80\xbe\x39\x61\x61\x44\x55\xcb\xf4\x4d\xe7\x08\x9e\x9a\xde\x07\x15\xa3\x8e\x11\x3e\xea\x1c\xcf\xca\x5b\xa3\x4e\x90\x59\x29\x51\x39\x9c\xfc\x83\x81\x23\xf7\x1b\x4e\x0b\x5f\x61\xc2\xaa\xa5\x8d\x49\xf1\xde\x3a\x04\xed\x90\xed\x29\xd7\x26\xb8\xb3\xe1\x63\xee\xca\xdf\xf1\x86\xd9\x84\xf4\xbd\x85\x16\x99\x66\x32\x04\xeb\xe0\x9a\xb8\x9d\xe9\x71\x6c\x90\x75\x92\x4c\x39\x38\x64\x4e\xe0\xd3\xb7\xd6\x54\xef\x4b\x64\xa1\xef\xcc\x13\x9d\x83\x65\x4b\x09\xa1\x4e\x67\x75\x4e\xfb\x4c\x26\xbc\x10\x8a\x13\xc9\xf7\xe7\x27\xcc\x91\xab\xe7\xfe\xbc\x5d\x92\x90\xe7\x7c\x58\x61\x55\xd9\x26\x82\xb9\xc6\x49\x91\x79\xb7\x97\x11\x1a\x6f\xe4\x1e\x3d\x7a\xc4\x98\xe0\xd5\x70\xcf\xd2\x51\x53\x9c\x70\xc2\x1f\xc5\xe7\x6d\xa7\xb3\x61\xd4\x86\xa5\xfa\x2d\xc1\x8c\x70\x2c\x86\x6b\x8d\x14\x5f\x2f\x83\xca\xd8\xcd\x81\xeb\x22\xba\x18\xa8\x3b\xe5\x99\xca\x88\xa5\xd0\x78\xe1\xb3\xc5\xd5\x94\x51\x11\xc2\xf1\xa8\xec\x1b\xaa\xd7\x39\x08\x9f\xd6\xd5\xc7\x4d\x1f\xcc\x25\xbc\x30\x12\xda\xb8\xf0\x71\x3a\x0b\x0f\xad\xcc\x45\x3f\x86\x39\xb2\x50\xbe\xf2\xeb\xed\x55\x5c\x77\x09\x51\x66\x62\x39\xe5\x1f\x0b\x08\xdc\x6a\x9f\x05\x8b\x2e\xfb\x10\xee\xd7\x4b\xb4\x7c\xb2\xb8\x4c\x78\x39\x2b\xc5\x26\xad\xf0\x14\x81\x7f\xe1\xa3\x4b\x5d\xf3\x6f\x12\x78\x87\x84\x66\x9d\x08\x2f\x25\x18\xe8\x2e\xcd\x69\xd6\x2b\x25\x5c\x37\x3b\x15\x77\x7c\xac\xe4\x87\x96\x64\x1c\x1b\x03\x78\xfc\xcb\x1d\xfb\xd7\xb1\x41\x3b\x6e\xf6\xed\x86\xb2\x78\xb6\x32\xc4\x44\x2c\x1e\xc8\x97\x24\x4c\x0a\x9b\x67\x77\x61\xb7\x1c\xe1\xcc\xa4\x73\x06\xfc\xb3\xc4\x08\xd9\x13\x1e\x29\x9d\xac\xeb\x67\x50\x24\x6c\xbb\x48\x92\xa5\x42\x78\xcd\xb9\x4f\x61\x66\xbf\x0e\x61\xdd\xf9\xd5\xca\xb6\xd3\xb5\xd8\x90\x7b\xba\x67\x74\xe2\xd1\x51\x06\xdd\x8e\x71\x72\x4f\xda\xf8\x09\x0b\xd7\x34\x5a\x6d\x7e\x9b\x40\x38\xf6\xe0\x6c\x81\xeb\x3a\x27\x42\x58\xbf\x9a\xaf\x9a\xbd\x13\x5b\x71\x5f\xbb\x9e\xdf\x52\x56\x8a\x90\x13\x72\x58\x50\xf2\x92\x16\x0d\xe7\x1d\xb7\x73\x10\xcd\x24\xcc\x39\xcf\xed\x5c\x33\x23\x87\x20\x9f\x62\xa4\x61\x14\xf4\x91\xad\xd4\xac\x7b\xe2\x36\xd9\x3e\xfc\x5f\xa8\xde\xa8\x50\xdd\x7a\x4d\x91\xb0\x6d\xe0\xe8\x87\xe3\x7c\x65\x84\x92\x32\x2e\x7a\x31\x57\x91\xf0\x9e\x77\xc7\xb5\xbe\x86\x30\xd6\x78\xf1\xb4\xf9\x69\xa2\x17\x78\x80\x85\xfc\x87\x8b\x1f\x48\x0e\x59\xd3\xb0\xe9\x2a\x5f\xb3\x69\x9a\xff\x7b\x44\x47\xc6\x73\xb5\xc9\x16\xef\x18\x78\x7f\x51\x36\xbe\x90\x22\x4b\x30\x5c\x3b\xe5\xf3\xb9\x7d\x82\x6c\x68\x76\xdf\x39\xfc\xa0\xe0\x2f\x33\x8e\xaf\x4f\x2c\x4e\x94\x5c\xdf\x4c\x28\x34\xbe\xb2\x07\x71\x85\x04\xb9\x9c\x68\xfb\xf9\x7d\xfd\x0c\x0e\x5d\xd6\xb9\xf0\x7c\x92\x0e\xc1\x78\xb1\xf8\xf5\x7b\xe1\x89\x84\x7c\xf5\xa6\x2c\xd1\x16\x61\x36\x3c\xe6\xfc\xcb\x1a\xd4\xeb\x60\x50\xf9\x74\xa7\x93\xea\x96\x5e\x06\x27\x23\xe7\xdf\x58\x60\xb5\x9e\xf0\xf0\xbb\xdd\x94\x77\x5b\xcc\x08\x07\x7f\xca\xf6\xfa\xc7\x33\x84\x1b\x79\xbb\x6f\xbb\xfc\xd2\x25\x48\x98\x9e\x4f\x55\x0a\x2a\x25\x64\x21\x46\x25\xdf\x42\x9a\xb0\xa3\x55\x55\xcf\x6e\xa6\x0d\x1b\xda\x9e\x3e\x3c\xc6\xed\xce\xcb\x86\x8e\x13\x27\x1b\xe5\xdf\xe9\xb2\x81\x6f\xe3\x8c\xa9\xfa\x6b\xee\x33\x38\x71\x6f\x81\xa4\x50\x86\x09\xc1\xaa\xb7\xdd\xe5\xac\x92\x3a\x01\x73\xd5\xda\x5f\xfb\x1a\x12\xce\x4b\x49\x05\x8e\xa8\x48\x11\x1e\xc4\x0b\xf3\x7c\x98\x64\x4d\x58\xf6\xbd\xe5\xd9\xa3\x91\x72\xc2\xd6\x13\xbf\x26\xee\x7e\x58\x47\x58\xb2\xaa\xdd\x2b\x75\x65\x15\x41\x8f\x09\x89\x8c\x79\x54\x47\xb8\xd5\x61\xd5\x7b\xc3\xb8\x9a\x60\x3a\xef\x75\xf4\x1b\xde\x3c\xc2\x92\xe5\x4b\xad\x36\x0f\xc4\x10\xee\x04\x8d\x8e\xc4\x44\x57\x10\x02\x97\x57\xa7\xec\x70\x7b\x4d\xf0\x16\x3e\x17\xb9\x73\x0c\x2f\xfb\x8d\x94\xff\x43\xa7\xf9\x53\xd9\xf8\xb1\xe7\xc4\x19\x3e\x3c\xd0\xd6\xeb\x46\xa8\x0b\xb7\xcb\xdc\xf2\x30\x8b\x05\x9b\x3c\xe7\x6d\x19\x83\x93\x59\xe3\xa3\xb4\xed\xaa\x2b\x05\xb7\x4d\x25\x9c\xbf\xb8\xd9\xeb\xca\xd8\xa6\x75\xd7\x7d\xdf\x61\x73\x33\x05\x1a\x87\xd8\x2f\x53\x8f\x17\x8f\x17\x10\xca\x97\x98\x67\x24\x5d\xd0\x27\x84\xcf\x4f\x3f\x75\x46\x6e\x05\x81\xeb\xf0\xd6\x37\x7b\x86\x3c\xd8\xb0\x20\x50\xb4\xa5\xa4\x7e\x0e\x21\x54\x73\x69\xd1\xdf\xdb\x82\x84\xfd\x5b\x26\x78\xa6\xa5\x68\xb2\x41\xea\xa7\xf9\x8f\x98\x7b\xe9\xe5\x90\xbe\x7f\x22\x76\xee\xcf\x05\x04\xd1\x4b\x91\xbd\x8d\x43\xfd\x0c\xa4\xed\x29\xc5\x67\x20\x96\x10\x69\x3c\x69\xef\x8b\x32\x4e\x42\x29\xf3\xf7\x53\x87\x69\x2e\xa1\xd7\xb1\xa8\x67\x4f\x5c\x37\x83\xca\x22\xb1\x1d\x23\xc1\x5c\x34\x8e\x92\x63\x9e\xf3\x5e\xb1\x9e\x97\x43\x38\x6d\xdb\xcd\x93\x05\xb2\x04\x7d\xa3\xb5\x67\xec\xd7\x8a\x10\xfc\x9f\x8c\xdc\x0b\xc8\x98\xc1\x86\xe6\xf9\x47\x64\x55\xda\xc0\xa0\x67\x95\xdf\x5c\x8f\x19\x05\x84\x6b\xc4\x2b\xe9\x69\x35\xca\xe0\x73\xd2\xda\x23\xd5\x2f\x94\x08\x3a\xb3\x77\xd6\x3c\xf7\x5e\x4e\xf0\x70\x57\xce\x29\xcb\x1d\x62\xe0\x60\xd9\xd8\x37\xb4\x58\x96\xb0\xfa\x93\xb4\xa8\x9e\x8c\x0a\xe1\xe5\x47\xff\x23\xa5\x8a\x9b\x09\xaf\xb2\xeb\x36\x9e\xd9\xa0\x40\xb8\xc9\x1d\x60\xf5\x7c\xf4\x05\xe1\xda\x12\x7e\xe9\x1b\x17\xd4\x09\x31\xed\xef\x99\xca\x9b\x0b\x09\x03\x7b\xdc\x7b\xaa\x32\xb9\x08\x12\x36\xcf\xc3\xea\xef\x75\x33\x78\xba\xea\x4b\xe3\xc5\xc5\xeb\x08\xcf\x5c\x96\x79\x9d\x9f\x34\xc2\xc0\x5f\x4a\x3a\x65\xb8\x5e\x87\xc0\xfd\xf1\xc4\xbe\xd6\xde\x83\x04\x3d\x3b\x77\xab\xff\xb0\x31\xd9\x7d\x74\xd9\x91\x2d\x04\xaf\xaf\xf6\x1c\x3e\x72\x0d\x0c\x36\x90\x3f\xa7\xbe\xea\x4f\x36\x30\x62\x19\x2b\xaf\x6b\x36\x30\x48\x7d\xb3\x62\xa3\xad\xe3\x6a\x82\xd2\xad\x28\xe7\x07\x2e\x32\x84\xdc\xb7\x51\xf5\x77\x26\xf6\x31\xf8\xa0\x1b\xe3\x65\xc8\xa1\x41\xc8\x6e\x34\x53\xf3\xdc\xd9\xc7\xa0\x82\x43\x44\xf3\xbd\xcd\x62\x1a\x47\x9d\x6b\xe2\xd6\x0d\xc6\x4d\xe5\xa8\xd5\xb0\x71\x3d\x15\xc7\x4f\xb0\xf2\xd0\x11\x4b\x6d\xee\x67\xe0\xbe\xbf\x7a\xf9\x6f\xaf\x3e\x36\x3c\x9f\x74\xba\x3e\xa0\xe3\x2f\x1b\xca\x77\x4f\x7c\x7e\x7c\x83\x34\x8d\x23\x2a\x65\x72\xcc\xba\xd6\x22\x06\x82\x42\x62\xfc\xa1\x8f\xdf\x33\xc8\x32\x4c\xdf\xe6\x74\xca\x86\xf0\xdd\xd3\xa4\x6f\xf8\xb7\x2f\x61\xb6\x69\xd4\x00\x53\xec\x46\xe0\xab\x54\x9d\xa9\xe6\xd9\xca\x20\xe8\x82\x89\x7c\xc4\xeb\x4d\x84\xa3\x8a\x1e\x25\x9d\x17\x0c\xd9\x60\x97\xac\x6d\xa4\xcb\xfd\x8a\xc1\x21\x9f\x3d\x06\x8b\x0e\x71\x12\xce\x43\x37\x7e\xfb\xe8\x5f\x06\x0b\x5a\x36\x72\x1d\x9d\x22\x4f\x68\xb9\x65\xff\xe4\x82\x90\x02\xe1\x68\x97\x51\x4e\xef\xd0\x24\x82\x96\xae\xb8\x5f\x9b\xc9\x61\x36\xac\xd1\x56\x5c\xf6\xa3\x63\x37\xa1\x44\x2e\xf3\x02\xb3\x5a\x9d\xb0\x39\x6a\xda\x0f\xbb\x15\x81\x2c\xf8\x61\xf6\x17\x44\x10\x41\x64\xb5\xf6\xb4\x9e\x8b\xeb\xd8\x70\xc5\xef\x40\x70\x66\xc4\x54\x82\x60\xfd\x88\x44\xcb\x54\x43\xc2\x5a\xe9\x98\xef\x49\xcd\x73\x08\x22\xa6\xac\xd5\x67\xe7\xbd\x61\x70\x79\xca\xaa\xd0\x57\x3c\x3f\x19\x1c\x16\x78\x2a\xb8\xea\xef\x37\x06\xd3\x0e\x64\x7f\x3d\xe6\x9e\xcd\xa0\x72\xfb\xbd\x0c\xb3\x81\x11\x06\xe7\x82\xdb\x32\x93\xef\x64\x32\xb0\x75\x5d\xbd\x36\x32\x5f\x84\xa0\xb1\xc2\x90\x53\x33\xe8\x3c\xa1\x90\x57\x57\xba\x41\x27\x8f\xf0\xb2\x60\x0a\xef\xca\xaa\xdf\x0c\x86\x8c\x5d\xe9\xb4\xd7\x22\xc2\xa1\xc5\xd3\xe4\x02\xb4\x3e\x32\x50\x13\xdf\xd7\xb8\x68\x4d\x08\x8d\x43\x7a\xf0\xae\x20\xc7\xdb\x67\xe5\xe0\x74\xb3\x94\xfc\xc6\xaa\x25\xfc\x0c\xbd\xd4\x1f\xa2\xb4\x93\xf0\xe0\x5d\x67\x75\xda\x7a\x57\x02\xe5\xdc\x12\xaf\x55\x71\x25\x08\xb5\xa7\x9b\x0a\xea\xd7\x94\xa3\x75\xae\x49\xd1\x1b\xbb\x3c\xc2\x65\xa9\x37\xeb\x9a\xc6\xf0\xf9\xa7\xa5\xaa\xf0\xb3\x58\x16\x6e\x14\xf4\x94\x4d\x6a\xbf\x45\xf8\x3e\xa7\xec\xc7\x0f\xff\x38\x16\x64\xfa\xbe\x4a\x9d\x35\xce\x29\x47\xcb\x89\xd7\x0f\x38\xce\x3a\xd0\x3f\x70\x75\xcb\xd4\x6f\xb9\x39\xc7\x09\x6f\x3e\xec\x75\x1d\x35\x9f\x46\x88\x51\x4e\xe9\xda\xaa\xaa\x49\x78\xba\x69\xcb\xbe\x43\x63\x47\x1b\xe4\xf9\x48\xb0\xbe\x2b\xb2\xe1\xe3\xbd\xbb\x77\x7f\xcd\x01\x83\x69\xe6\xcf\xdb\x7c\x2f\x2f\x27\x74\xad\xdb\x13\x6e\x14\xb3\x96\x60\xd1\xa8\xfa\x38\xc8\x7f\x29\x1b\x54\xa2\x33\x96\xbe\x58\xc0\x41\x98\x3f\x9d\x6f\xef\x57\x0b\x03\x82\xef\xae\xc6\xf3\xf3\x15\xb2\xca\x31\x6f\x46\x98\x8c\x52\x65\x26\x61\x57\x8f\xe9\xad\x99\xe5\x11\x04\xe6\xc9\xf9\xca\xd2\xe5\x95\x84\x1f\x37\x6f\x98\xfd\x37\xfa\xb4\xe7\x44\xb9\xf0\x9e\xed\x04\xe9\xaf\xca\xdb\x5e\xf6\xa5\x13\xba\xe7\x24\x04\x9f\xe8\x2d\x22\x6c\x9e\x78\xec\x9a\x68\x62\x15\x41\x8e\x39\x91\x19\xd8\x5b\x4d\x78\x7a\x72\xa6\x4f\xea\xb5\x7c\xc2\x0a\xa3\x8b\x87\xed\x2f\x94\x12\x8a\xeb\x8e\xbe\x89\x3a\x76\x8a\xc0\x9b\xf6\x9c\xc3\xe9\x5b\x38\xe1\xb1\x10\x0f\x2f\x47\x46\x0a\x0b\x46\x79\x5b\x57\x6b\x7e\x0e\x27\x34\x3d\xcb\xbe\x76\xe9\x7e\x18\x41\x65\xe0\xec\x09\x71\xf1\x35\x84\xf9\x1d\x31\xcb\x93\xe7\xc4\x13\x6e\xb4\x4e\x4a\x59\xf2\xdd\x96\x0d\x76\x17\x5e\x07\x35\xa5\x89\x13\xe6\x07\x1d\xf0\x10\xfd\xda\xcf\xe0\xc5\x93\x06\xf7\x13\x7b\xb2\x09\xf5\x0a\x21\xaf\x93\xab\x76\x12\x3e\x8c\x0c\xf3\x69\xd0\xcc\x7f\xc1\x7b\x50\xf5\x67\xbd\xe3\x67\x06\xaa\x9f\xab\x56\x1e\x0c\xcc\x22\x5c\x0a\xe3\xd9\xf3\x24\x33\x95\x0d\x2e\x99\x7b\x64\x66\xe7\x1e\x25\x98\x85\xf2\xfb\x28\x37\x45\x11\xf8\x16\xdd\xe9\xe4\x7c\x52\xc8\xc2\xfd\xc8\x8b\xbe\xfc\x32\xd2\x84\xa9\x51\x6e\x5c\x4a\x52\xcf\x19\x70\x4a\x97\x34\xe4\xdb\xa9\xd0\x38\x8a\x4b\x95\x2b\xe6\x35\xc8\x12\xae\x7f\x4c\x6a\x3b\x5f\x61\x43\x18\x9c\xa8\x68\xb2\x55\xd2\x9a\x10\x7c\x7d\x76\x92\x7f\x94\x29\xa1\xc5\xd5\xe1\x61\xb9\xfd\x02\x42\xdb\x93\xbf\xc7\x7d\xfe\x38\x11\x8e\xa6\xcd\x4a\xf6\xac\xba\x4b\x10\xa8\x72\xd2\xae\x7d\x94\x46\xc8\xd3\xb6\xd9\xba\x72\xeb\x41\x82\xe8\xae\x5e\x3f\xbf\xa0\x68\xc2\x03\x99\x89\xb2\xe9\x6f\xf4\x08\x5d\x0d\x52\xdb\xcc\x84\x3b\x99\x71\x88\xfc\xb8\xf1\x57\xb4\x8b\x21\xe8\x17\xcc\xd2\xf5\x39\xc4\x4b\xd8\x5c\x73\x65\xf1\xd2\xda\x58\x42\xd4\x07\xdf\xac\x25\x5f\x8e\x10\x2e\xc6\x7c\x10\xd4\x5d\x6c\x44\x28\xd3\x16\x3a\xa8\xb1\xfe\x16\x1b\xb2\x57\x1c\x5e\x57\x79\xd0\x93\x0d\x82\x96\xd7\x38\x3c\x42\x1e\x31\xf8\xe4\x14\xee\xfe\xae\x51\x91\x90\xdb\xfd\xac\x49\xe8\x63\x1e\xa1\x7d\x7d\xd8\xce\x4d\xae\x49\x84\x2b\x41\x7a\x56\x25\x67\x15\x08\x0e\xaf\xf9\xe6\x2c\x32\x34\x22\x24\x6c\x38\x3a\x6f\x91\xe3\x4f\x66\x1c\xe7\x15\xe5\x13\xab\xd7\xd4\x32\xd0\x5d\xb9\xa9\xee\xd8\x31\x6e\xc2\x9b\x5d\x22\x23\xe7\x15\xd5\x09\xfc\xcb\x33\xc3\x02\x35\x2c\x09\x29\xf9\xd3\x85\x46\x77\x6b\x12\xd6\x4c\x0e\x5c\xf7\x39\xf1\x45\x39\xba\x2e\x7d\xda\xda\x78\x51\x93\xc6\xf1\x37\xe5\xaf\xa1\xcb\xd4\x6f\x0c\x54\xc5\x2a\xa2\xea\xf9\x8c\x08\xf1\x7d\x1f\x9c\x94\x39\x6a\x58\xe3\xb8\xbd\xf1\xe8\x8e\x88\xed\x07\x08\x19\x65\xd9\x77\xb5\x17\xe9\x12\xce\x4e\x73\xd9\x96\x79\x3c\x8e\x85\x77\xfd\xd3\x85\x99\x69\x4a\x84\xa4\x07\xd2\x45\x79\x0f\x7f\x30\xb8\xb0\xff\xec\xd5\xfe\x4f\xd7\x09\xc9\x4a\x03\x5b\xbb\xbf\x3a\xb2\x61\x38\x31\xeb\x9d\xf1\x1e\x11\xc2\x4d\xd9\x47\x6f\xe5\x8d\x63\x59\x58\xf8\xb1\xf6\xed\x57\x89\x56\xc2\x1e\xdf\x4f\x11\x99\x07\x72\x08\xbc\x8b\xe5\x1d\x03\xa3\x73\x08\x91\xca\xf3\xa6\x5f\xdd\x13\x4c\xd0\x9b\xab\xce\x3f\xb1\x20\x86\x70\x66\xcd\xae\x98\x74\xeb\x76\x16\xf4\xc4\xde\x9f\xf7\xd2\xef\x60\x61\xa1\xc5\x91\x8b\x13\x77\x16\x10\xcc\x39\x4d\x3c\x5d\x7e\x55\x10\xe6\x1c\x65\x05\xf8\xdf\xcf\x27\x84\x9d\x17\x3e\x3b\xb4\xbd\x8c\xd0\xda\xad\x2b\x6b\x51\x95\x41\x98\x75\x67\xca\x5c\xe5\xfc\xab\x6c\xa8\x3f\x64\xe0\x6c\xe1\x91\xf2\x2f\x7c\x4d\x0f\x68\x3e\xe0\xd6\xc6\x40\xea\xba\xb1\xc2\xc0\x62\x61\x82\x5c\x47\xcb\x40\xf4\xf5\x64\x36\x3c\xfd\x4e\x4e\x4f\xf3\xac\xd9\xf0\x62\xc6\x81\xd3\xaf\x20\xfe\x2f\x54\xa5\x66\x86\xbf\x1c\xfb\x80\x04\x7e\x79\xfc\xb0\xbf\xf7\x17\x83\xb0\xa6\xe2\x67\xfb\xd5\xe4\x08\x75\xfb\xf8\x5b\xba\x33\x35\x08\x45\xaa\x32\x97\x0d\xa3\x77\xb2\x30\x71\x8d\xce\x96\x53\x33\xe5\x09\x12\x7c\xed\xdf\x3e\xd9\x9d\x62\x43\xfa\x2e\xd7\x85\xf6\x6a\x4e\x84\xf9\xcb\x65\x04\x05\xd2\x03\x09\x1b\xd2\x39\x46\x43\x17\x5d\x63\x21\x2e\xf5\x90\xf3\xfb\x55\x0b\x09\x8d\xce\xe9\x8a\xbb\x7d\x88\x10\x70\xf4\xc3\xcd\xc7\xdb\xfa\x98\x71\xf4\xcf\xf2\x89\x5f\xb5\x9e\x55\x8e\x1f\x2f\x23\xf5\x0c\x58\xee\x84\xdd\x83\x67\xd7\x35\xf9\xbf\x63\x70\xd2\xc3\x9c\x71\x5a\xe6\x4e\x98\xa4\xc5\xfb\x5e\x7a\x0c\x8c\xf2\x41\x3b\x5f\xa3\x95\x6c\x38\x3d\xab\xdd\x22\xef\xb6\x18\x81\xe3\xb1\x7e\x8a\xdb\x68\x3a\x0b\xb9\x6f\x5b\x32\xea\xe2\x15\x08\x5f\x8c\x8e\xbe\x34\x3e\x28\x42\x68\x6a\x1e\x4d\xdc\xf8\xc9\x8d\xa0\xb0\xad\xf1\x69\x53\x78\x35\x61\x66\xea\xd9\x57\x49\x77\xdb\x18\xdc\x3e\xfd\x20\x39\xbd\xca\x8d\x90\xad\xc3\xf5\x3a\x56\x43\x8f\x30\x99\x37\x57\x48\x21\x68\x09\x1b\xb8\x6e\xec\xa9\x0b\x3a\x26\x48\x58\x12\xb3\xd0\x67\xf8\xdc\x52\x82\xd7\xfc\x55\xbb\x77\x68\x8b\xb1\x61\x8f\xd3\xa8\x77\x56\xf3\x1f\x06\x93\x9f\x2c\x3e\xbe\x53\x68\x16\xe1\x9e\xa3\x0e\x8f\x1c\x8f\x0d\x61\x64\x44\xb6\x4a\x7f\xce\x20\x83\x9a\x79\x8f\x6f\xed\x8b\x2b\x25\x70\xcd\x32\x3a\xb7\xe3\x5d\x15\x41\x26\xfc\x83\xf8\x24\xbe\x14\x42\xc8\xab\x8e\x2e\xf9\x28\x25\xc2\xcd\xde\x27\xd5\x72\xc2\x33\x08\xae\xde\xf6\xd7\x2e\x4c\x15\x20\x38\xf8\x7b\xbc\xb3\x8f\xe5\x27\x48\xef\x98\x10\x1b\x52\x05\x06\x7f\xb6\x04\x27\xf7\x0b\xe4\x13\xf6\xa7\xed\x7c\xf6\xf0\x47\x00\x41\x7d\x34\xbd\xd8\x9f\xf7\x14\x0b\x8b\xd7\x77\x19\x44\xf6\x2f\x22\xbc\x16\xcf\xbc\x17\xbc\xfe\xc0\xbf\x60\x50\x71\xd8\xef\x57\x93\xfb\xbf\x70\xf2\xed\x68\xdb\xcf\x9e\x14\x66\xd8\x76\xe2\xd6\xa6\x67\xc3\x0c\x6a\xe2\x62\x3d\xaf\xee\x10\x21\x2c\xe3\x1a\xca\x8a\xe5\xe0\x24\x8c\xde\x36\xfd\x23\xbd\xe8\x3d\x33\x0e\x1e\xdd\x12\xff\x8a\x57\xef\x18\x6c\xe5\x69\x0a\x1b\xf9\x2b\x46\x98\xc7\xbc\x5b\xf8\xae\x5b\x90\x30\x69\x99\xe4\xbd\xe7\x0f\x78\x09\xa6\xc1\x5c\x5d\x17\x0a\x8b\xcb\x31\x55\x5d\x7d\xf0\x87\xe7\x31\x1a\xc7\x5f\xbd\x0e\x2f\x6b\x1e\x67\xc2\xd5\x7e\x85\x35\x8e\x8f\x55\x08\x92\x95\xcf\x1a\x6e\x2b\x3b\x13\xc2\x02\xc5\x36\x74\x55\xaf\x27\xd4\x58\x1e\xd1\x5a\xd7\x2a\x4f\x98\x39\x6f\xe8\x40\x7f\x89\x34\xc1\xb1\x61\xf5\x94\x45\xc7\xe7\x10\x2c\xb8\xab\x66\x75\xaf\x4c\x22\x7c\xbf\x33\xab\xb8\x6c\x6b\x0c\x21\x3d\xb6\x49\x30\xe8\xd8\x25\xc2\x0f\x0a\xfa\x58\x7d\x9b\x9f\xb0\x34\x25\x42\xd0\xe2\xaa\x16\xe1\xa5\x61\xd4\xa7\x5d\x75\x6b\x08\x6e\xa2\x5f\xfc\x17\x78\xec\x64\x2b\xd7\xef\x6c\x14\x16\xd9\x20\x41\xe0\x9e\x27\x52\xf9\xf9\x8b\x26\x5b\xb9\xde\x77\xf8\xf1\x63\xe3\xa7\x0c\x98\x95\x4f\x14\x83\x1c\x52\x08\xee\x26\x8d\xb5\xaf\x6b\x85\x08\x6d\xfa\x87\x97\x59\x29\x9c\x62\x83\xf2\xbb\xf9\x1f\xad\x22\xf7\x12\x6e\x6a\x0b\xfa\x9c\xf4\x34\x22\x84\x07\xb5\xe9\xbe\x70\x2d\x64\x41\x76\xcd\xdb\x6b\x56\x4a\x49\x04\x35\xf5\x1c\xbb\xa0\xc9\xd9\x84\x78\xe9\x19\x82\xbe\x7e\x6b\xd9\x50\xa5\xaa\x95\x23\x26\xd9\xc7\xa0\x53\xf8\x9d\xd2\x91\xf3\x59\x2c\xb4\x06\xab\x7a\xcd\x89\xca\x62\x70\x56\xad\xb4\x7b\xcb\x34\x2e\x1a\x87\xc9\xc6\x3f\x4b\x74\x5c\xb5\xd8\xb0\x42\x22\xa2\xc6\xf3\x8f\x3e\xe1\x59\xcb\xe0\xda\x5e\x33\x2f\x82\xe5\xac\xfa\xfb\xdf\xc4\xb5\x08\x67\xfa\x66\x99\xbc\xcb\x6e\x67\x60\x67\xce\xe9\x70\x2f\x70\x01\x8d\x43\x7f\x19\xaf\xd1\x7f\x17\xb8\x5c\x2a\x4e\xf5\xec\x52\x4d\xc2\xc4\xee\x9b\x9f\x95\x9b\x34\x08\x3e\x3f\xc3\x05\xba\x45\xc5\x09\xea\x1e\x43\xaf\xd4\xaa\x27\x10\x6c\x1d\x22\x2e\x7c\xd9\xf5\x83\x81\xdd\xbe\x89\xfc\x93\x9c\x2d\x08\x0e\x4b\xaf\xe9\x4a\x5d\x14\x22\xb8\xe5\xde\xeb\x9f\xc3\x29\xcb\x86\xff\xbd\xb2\xcc\xc5\x09\x23\xa6\xdb\xc3\x08\x8a\x1e\xdb\x7e\xe5\x4c\x5d\xcb\x86\x98\xce\xd4\x9f\x32\x4b\xe7\x12\x6a\xf6\xc5\x9d\x7f\xc0\xbf\x8d\x85\x49\x73\x3f\xfe\x59\x1e\xf9\x9c\x05\xe3\x7a\x47\x8e\x2b\xb7\x0b\x59\x30\x52\x9f\xd0\x71\x6f\x6c\xd4\xaa\xdf\xf4\x4d\xc3\xd8\x9e\x70\xb3\x5b\x65\x07\xe7\xb9\x13\x84\xa5\x89\xf3\x97\xa9\x8b\x84\x10\xfa\xe6\x4f\x8e\x65\xf4\x58\x04\xf9\xa8\xc9\x8d\x5f\xda\x52\x58\x50\x3c\xdf\xe6\xfe\x5f\xd9\x23\xba\xa8\x81\xc6\xa0\x3c\xff\xad\xd3\x71\xf5\xc3\x04\x89\xf7\x72\x19\x3b\x72\x8a\x09\xd3\x2f\xf0\x4f\x89\x9c\x56\x42\xe0\xcd\x3f\x7a\xe1\x6d\xe5\x6e\x16\xbc\x9c\x1c\x67\x1e\x29\x3e\xc5\xc2\xdb\x99\x92\x25\x0f\xcd\x0f\x12\x24\x67\x66\xf3\x9c\x9e\xb5\x90\xf0\x50\x5c\x6a\xfa\xae\xb6\x40\xc2\x8c\x3f\x7b\x7e\x14\xc1\x70\xec\xf6\x1e\xf1\x8f\x08\xf6\x20\xbc\xbd\x54\xb0\x21\x74\x0c\x3b\x56\x9a\x66\x57\xa4\x26\x12\xb2\xf8\x8e\xb8\x3b\x0e\x7a\x12\x4c\x7e\x0f\x4d\xdf\x7c\x42\x8f\x30\x7a\xff\x4f\xc3\x3b\xe7\xb9\x84\xbd\xcf\x5f\xff\xdc\xec\x35\x8b\xc0\xb0\x56\x1e\x58\x9a\x7a\x80\x0d\x26\x6e\xaf\xa5\xfd\x12\xac\x09\xdd\xba\x33\x82\x0b\x6b\x39\x09\xac\x04\xb7\xe3\x17\xae\xaa\x13\x84\xd3\xb7\x3f\x9f\x3f\x92\xc7\x60\x92\xed\xa7\x55\x8b\x14\xdd\xe8\x1f\x50\x11\x15\xe6\x4b\x3f\x52\x44\x98\x7a\xf5\xce\xab\x1b\x63\xf8\x99\xa2\xa7\xf3\x5f\x59\x63\x59\x5c\x31\x86\xe1\x4b\x12\xdf\xc3\x94\xef\x94\xff\xff\x1e\xb1\x61\xa2\x87\xba\xd9\x5c\x0e\x1a\xc7\x01\x9b\xa9\x52\x9e\x35\x26\x6c\xc0\x9b\x5b\xfd\xd6\xa6\xea\x6c\xb8\x3c\xad\xfb\xe3\x51\x86\x97\x0d\xdd\x57\xb7\x7d\xf9\xab\x1f\x45\x30\x74\xa7\x92\xfb\x4f\x57\x10\xee\x69\xc4\xc4\xc6\xce\xd3\x22\x64\x46\x88\x6a\xb6\xb0\xa6\x12\x9e\xc4\x3e\xdb\x39\x94\x79\x8b\xf0\xf2\x95\xbe\x85\x43\x59\x18\x0b\xb3\x4e\x79\xe7\x5e\x68\x3c\xc7\x02\x67\xc6\xa3\x13\xc7\xe3\x8f\x12\xf2\x12\x39\x0f\xa4\x1e\x9b\x4b\xe0\xb3\xb3\x8b\x92\x70\x55\x24\xbc\x7e\x9b\x7d\x4a\x56\x65\x31\x61\x38\x27\x75\xc5\xd7\xfd\x51\x6c\x98\x5d\xf3\xc9\x6e\x42\x9c\x02\xe1\x4e\x50\x56\xc4\xc7\x70\x69\x82\x09\xe7\xce\xb3\x6f\x13\x74\xd9\x10\xc8\x79\xc0\xf2\xd0\xce\x12\xc2\x94\x98\xe4\xbb\xff\x95\x21\x9d\x39\x37\x36\xfe\x54\x24\x98\x14\x33\xb7\x4b\xf5\x42\x58\xb8\xe1\x1d\x7f\x7d\x46\xe8\x34\x42\xfa\xe1\x57\xe2\x1f\x46\xd4\x09\x07\x37\x79\x6e\xbc\xbd\x5c\x92\x70\xe3\xa7\xbd\xcb\xa7\x97\x6a\x6c\xe8\xf0\xce\x9c\x71\xbc\xfa\x15\x83\x10\xdd\xd1\x6b\xe9\x11\x5f\x19\xe4\x9a\xbf\xed\x2b\x59\xde\xc7\x86\x8f\x4f\xeb\x07\x36\xa4\x70\x12\x34\x55\xf8\x9f\xea\x06\x5f\x66\xc3\xa7\x11\x7f\x0e\x3e\xbf\xeb\x84\xf7\xe6\x5b\x98\x7a\x9e\x24\x82\xcd\x85\x25\x1b\xae\xa9\x6c\x60\xc3\x60\x52\xed\x68\xe1\xd0\x5c\x42\xea\x35\x31\x3f\xb3\x39\xad\xe5\xf8\x33\x38\x3d\x58\xcd\xe7\x00\x8d\x63\xae\x59\xa5\xf0\xf9\x4e\x49\x82\x9d\xc9\x69\xab\xa4\xc6\x57\x0c\x32\xed\xf2\xf4\x45\xb6\xb4\xb1\xe1\x97\x6f\x52\xee\xa5\x2b\x82\x84\xae\x87\x4b\x6b\x4d\x9c\x65\x09\x01\x73\xb2\x43\xec\x7c\x38\x09\x5f\x2f\x08\xfc\xb8\x5a\xdd\x50\x8e\x96\xb8\xb2\x7b\x6f\x3d\xf5\xe9\x1f\xd8\xf4\x41\xe4\xe9\x6c\xcd\x33\xff\xc2\xd6\x79\x0d\x47\xbb\x9a\x3c\x09\x73\x9e\x7b\x9a\x55\xed\x99\x4b\xb8\xb9\x45\x5f\x4c\x7b\x40\x8a\xa0\xb2\x7c\x43\xd6\x48\x9d\x06\xe1\xce\xc8\x8e\x61\x9d\x38\x01\x82\x67\xfe\xb6\x7d\xab\xd6\x15\xb2\xa0\xe3\xa7\x63\x76\xec\xe5\x2a\x42\xdd\x72\xcf\xc4\xa7\x36\x15\x84\x83\x99\x3e\xb7\x8c\x56\x57\x10\xf6\x9a\x2a\xf4\xf1\xf0\x55\x11\xb4\xf6\x4e\x7d\x56\x30\x67\x23\x21\x52\xc0\xe0\x9b\x61\x9d\x36\xc1\x63\xe5\xb3\x97\xa9\xdf\xe3\x08\x53\xdc\x59\xc3\xc5\x79\xb7\x09\x9b\x2d\x36\x58\x58\x34\x2c\x27\xcc\x6d\x8a\xff\x68\x54\xd6\xcc\xe0\x76\xee\xfd\x86\x3b\x4d\x67\x09\xf2\x85\x6f\xce\xb9\x8d\x2d\xd3\xf2\x67\x02\x82\xff\x2b\x33\x0a\xfd\x5b\x85\x2e\xff\x60\xc0\x1b\x23\x74\x93\x5f\x6e\x1a\x41\x77\x63\x6a\xda\x1a\x8f\x53\x84\x75\xb7\xe4\x7d\x85\xbe\xce\x27\x68\xa5\xcf\xdc\xfd\xde\x7c\x36\x61\xd6\x83\xc9\x97\xf6\x65\xce\x26\xf4\x09\x97\x18\x14\x06\x68\x12\x56\xbe\x36\xf8\x72\x27\x39\x8f\x90\x36\xb3\xe7\xdd\xf3\xbd\x8b\x08\x9e\xdc\xa9\x06\x09\xae\xa5\x84\xda\x1f\x13\xe4\x62\x22\x0e\xb1\x20\xd3\xc5\x2d\xd7\xbd\xf6\x36\x41\x31\x6d\xdf\x89\x81\x27\x85\x84\xb7\x41\x2b\x3e\x2f\xe7\xc8\x22\x9c\x8d\x1c\xb9\xd1\x36\xc7\x98\xb0\x57\x40\xf0\x42\x5c\xf8\x02\x36\xc8\x37\x1a\xdc\x6e\x9a\x27\x4e\x98\xd7\x7c\x63\xbe\x22\xbf\x2e\xe1\xce\xf7\x77\xca\xbf\x73\x13\xd9\xf0\xe6\xf4\xbd\xe6\xce\x1a\x6e\x82\xb3\x54\x78\xa1\xfe\x92\x2e\x06\x8b\x6e\x6d\xe4\xd9\xd4\xbe\x92\xc6\xd1\xe7\xfa\xf8\xd2\x52\xe7\xc5\x84\x77\x4f\x3a\x0b\x7f\xbc\x57\x25\xb0\x8a\x8d\x3f\xcc\xd8\xf9\xb6\x1c\x06\x06\x75\x53\x7b\x7e\x9a\xd2\x38\xbe\x89\x25\xbd\x5f\x7e\xd8\x93\x70\x8b\x77\x59\xdd\x37\xbb\x59\x84\xb3\x13\x07\xaa\x9a\x05\xb4\x09\x66\xc1\x0f\xa4\xd7\xe5\xad\x26\x54\x7a\x67\xaa\x6c\x83\x2e\x81\xb9\x54\xcb\xe3\x16\x63\x4d\xf8\x66\x98\xda\x62\xfb\xd9\x94\xc0\xd1\xde\xe9\xf2\xc3\x65\x2e\x1b\xfe\x34\x34\xed\x8f\xea\xfe\xc0\x8c\x63\xcd\xec\xe9\x0d\x61\x23\x49\x34\x0e\x13\xb5\x91\xc7\x37\x02\xe7\x11\xea\x06\x54\xac\x8c\xbf\x7c\x63\xd0\x73\x40\xcc\xb6\xfb\x8e\x16\x21\xee\xff\xc3\xa8\x9d\x07\xd5\xfc\xc7\xff\xdf\xaf\x54\x4a\xda\xb4\x5b\x5a\x29\x12\xed\x69\x7d\x3f\xb5\x97\x35\x11\xb2\x24\x2d\x88\x50\x59\x92\x2c\x2d\xca\x5a\x14\x51\x42\xda\x17\x4b\xbb\xf6\x4e\x85\x16\x5b\x42\x49\x42\xa2\x52\x28\x44\x1e\x2d\x74\x4d\xae\xb9\xbe\x9d\xdf\xfc\x3e\xf3\x9d\xeb\xbf\xdb\xdc\x9f\xef\x99\x33\xe7\x3d\xe7\xbc\xce\xfb\x39\x73\x62\x46\x1a\xae\x8b\x71\x13\x5c\xbf\xbf\xcf\xd5\x97\xcf\x23\x9c\x2a\xfe\xaa\x1d\x7f\x3e\x80\xf0\x4b\xa2\xe9\x76\xd0\xa1\xe3\x04\xc9\x35\xfe\xae\xac\xee\x52\x02\xd7\x4e\x4e\xb5\x7f\x37\x01\x79\x26\x4e\x5e\xb3\xb6\xd0\x7f\xe0\x74\xe7\x3e\x2b\x25\x3f\x69\x42\x8c\xe6\xaa\x2f\x93\xde\xdc\x66\x90\x92\x67\xf5\xfd\x74\x68\x01\x8d\xa3\x34\xe0\xa5\xcf\x87\xc9\xd3\x09\xc9\x5a\x9b\x15\x65\x85\xec\x08\x6a\x9c\x86\x46\xfb\x75\xec\x08\xb9\xfe\x2f\x67\xcc\xe0\xb4\x22\xf4\xdd\xb9\x15\x51\x7d\x6e\x35\x41\x78\x9f\x42\xe0\xaf\x44\x86\x90\xa9\x21\x74\xe6\x96\xb1\x2d\x21\x79\xdb\xe4\x89\x43\xd3\x1f\x13\xdc\x94\x57\x95\xfb\xdd\x38\x4d\xe0\xd5\x7c\x51\xf8\xe3\x78\x30\x81\x3f\xfa\x0f\xcb\xdd\x3f\x98\xad\x2c\xf7\x2e\x95\xff\xa0\x12\x40\xa8\x95\xde\xd3\xc7\x5d\x67\xcf\x86\xaf\xea\x1c\x99\x72\x56\x12\x6c\x48\x74\x7e\x59\xc8\x2b\x56\xc5\xc2\x4b\x5b\xd6\xca\x5b\xd6\x31\x2c\x1c\x29\xbf\x6c\xe8\x99\x61\x49\xf8\xe3\xcf\x91\x11\xa6\xbb\x8a\x60\x1e\x20\xd0\xbe\xee\xd6\x3b\xc2\x29\xfd\xe0\xb3\x22\x99\xef\x08\x7e\x7d\x06\x25\x1a\xe9\xef\x08\x65\x8a\xc6\xf7\x0e\x72\x37\x13\xd4\xbd\x2f\xcf\x17\xf1\x8d\x24\x1c\x12\x12\x9a\x3c\xe9\x68\x35\x0b\xfa\x03\xc6\x79\x46\xaf\xb2\x09\xf7\x4b\xad\xf5\xef\x8e\x3c\x25\x34\xfc\xf0\x59\x51\x35\x86\xd8\xf3\x29\xbd\xd1\x25\xf7\x09\x5f\x14\xa8\x26\xc5\xe6\x32\x61\xd5\xdd\x9e\x57\x4d\x6a\xdf\x19\x2c\x7f\x9b\xe0\x22\x1d\xb9\x86\x60\xf2\x4b\xa1\xf0\xb5\x8c\x19\x21\x8f\x77\x9a\xaa\xd9\x31\x86\x60\xe5\xd3\xac\x77\x21\xee\x61\x39\xb2\x7c\xec\x47\xf4\xdf\xae\x22\x94\x2a\x5d\x91\x6f\x29\x38\xc3\x86\xb6\xd6\xe2\x19\xd6\x89\x01\x04\x41\x21\x7d\x3b\xf3\xb5\xab\x09\xe7\xd2\x58\x91\xd9\x8f\x42\xd9\x70\xdf\x70\x52\xb6\xc2\x04\x65\x42\x9c\x69\x52\x4c\x9b\x74\x0e\x1b\xc2\x0a\x75\x9c\x6b\xd6\x2f\x21\xbc\x1c\xf4\x7f\x15\x11\xa4\x49\xa8\xb1\x79\x79\xe5\x9b\xad\x17\x21\xbf\x67\xbd\x94\x72\xf2\x33\x82\x76\x78\xb0\xae\xa4\xfd\x33\x82\x60\x2f\xcf\xcf\x80\xcc\x67\x84\x94\x7a\xea\x5f\x9c\x52\x45\xd8\xb4\x61\xa2\x47\xd9\x95\x55\x84\x80\x73\xd2\x5c\x17\x2d\x24\x08\x9f\x4f\x73\xb9\xfc\x08\x63\x11\xce\xdb\xef\xee\x31\x36\xc8\x21\x08\x14\xc8\xd8\x7a\x04\x56\x12\x94\x5b\x6e\x20\x44\xe2\x2e\x81\x33\xe4\x41\x1d\x9f\x5b\x1d\xa1\xb0\x6a\x5d\x87\x49\x7d\x25\x61\x80\xe5\xd1\xf1\xbe\x2f\x84\x60\xa3\x92\x79\xea\x78\x83\x3f\xa1\x77\x5b\x63\xde\xc8\x7e\x65\x42\x77\xb7\x98\xe5\xe6\xfe\x69\x04\x79\xee\xc9\xbf\xae\x56\x9e\x61\x83\x54\x5b\x71\x6d\x66\x56\x30\x21\x69\x6d\xdc\xe3\x25\xe6\x12\x04\xca\x2d\x5f\x36\x68\x26\x45\x78\xfa\xf0\x65\xdf\x26\x25\x01\x82\xe9\xa3\x3e\xdb\xef\xbe\xaf\x18\xfc\xa4\xd5\xe9\x52\x8e\xcb\x08\x37\xfd\xa5\x76\x78\x2f\x33\x1e\x3b\x18\x97\x3e\x36\x7e\xa1\x46\xa8\x7b\x5b\xf5\xf7\xcb\x80\x23\xc1\xc2\xee\xc4\x4e\xa9\x99\x9c\x04\xc1\xfa\xc5\x1e\xf3\xbe\xc9\x13\x4a\x6f\x66\x94\x96\x3f\x35\x21\xf8\xf2\x1f\x9b\x96\x7b\x5a\x80\x60\x53\x15\x29\xf0\xf8\x6b\x15\x83\x45\x6f\x7d\x3a\x36\xd4\x0d\x33\xb0\x14\xe4\x77\x97\xf2\x3f\x49\xe3\x68\xdd\x60\xd5\xff\xd5\xff\x04\xa1\xe2\x61\x47\x43\xfe\xb6\xc9\x04\xbe\x33\x39\xb1\x3e\xdd\x9a\x84\xbc\xf5\x87\x02\x4b\x93\xa6\x13\x6e\x54\x75\x69\xfe\x0a\xd0\x27\xdc\x6a\x0c\x4f\xf7\x53\xcb\x21\xdc\xe0\x7b\xf7\x50\xea\x62\x22\xe1\xe8\x97\x94\xdd\x5e\x2a\xe5\x2c\xbc\x9c\xef\xb7\x31\xe4\x48\x09\x61\xd2\xee\x61\xcf\x27\x45\x63\x6b\xaf\x47\x78\xff\x84\x43\xd1\x84\xfd\x51\x5d\x22\x19\x25\x72\x6c\x58\x1b\x7e\xfe\x76\x7c\xc1\x21\x36\x3c\x38\x17\xcc\xda\x39\x61\x25\xa1\xd5\x5e\x6e\x9f\xef\xd9\x09\x04\x51\x27\x11\xd9\x5f\xdb\x6c\x08\x32\xe6\xf7\x24\x84\x49\x77\xec\x8e\x75\x2f\xbc\xc1\xdb\x5c\x0e\xa7\xcd\x3b\x8f\x58\xcd\x0e\x22\x08\xab\xe8\x0b\x5c\x31\x58\xc5\x06\xcf\x0f\xcb\xb7\x87\xa7\xf3\x13\x0e\xcc\xdd\x56\x33\x71\xa7\x29\x21\xfb\x8a\xdb\x61\x9d\x90\x06\xc2\x9a\xc8\x25\x7b\x5c\x3b\x83\x08\xbb\x87\x35\x96\xe8\x5d\x28\x60\xe1\xd4\x9d\xc2\x86\x5b\x7e\x7e\x04\x9f\xe2\x1d\xd3\xf5\x64\x9f\x31\x78\x71\x7a\x34\x3f\xd7\x44\x87\xf0\xfc\xba\xde\xc8\xcb\x0f\x1b\x68\xbc\x48\xb2\x56\xaf\xf8\x3b\xd8\xca\xc0\xf5\xdd\x8c\xf7\xe7\x8e\x69\x11\x54\x1c\xa6\x70\xf6\xa6\x8d\xbd\xc4\xd6\xf8\xeb\xbb\x9d\xfd\xd8\xb0\x74\x24\x55\x6c\xc1\x90\x28\xc1\x7a\xf3\x59\xc1\xd0\x39\x6f\x19\x4c\x5b\xb8\x8a\x09\x37\x75\xa1\x71\x48\x6a\x94\xb6\xa9\xfb\x1a\x11\xf8\x5a\x6c\x23\xd7\x25\x0b\x11\x5c\x3b\x47\x15\x1f\xf2\x07\x11\xd6\x32\x8f\xae\x07\x7b\xe4\x13\x96\xad\xd2\x08\x0b\x0e\x37\x25\x38\x18\x1f\x2a\xe5\x9e\x36\x9f\x30\x50\x9f\x70\x44\x29\xda\x9c\x90\xb8\xd0\xdb\x31\xf9\x92\x2e\xa1\x4f\xac\x68\xbd\x8c\x8b\x31\x1b\xae\x65\xc9\xf6\x18\xac\xae\x61\xe0\xf3\xa7\xe7\xdc\x93\x6c\x55\x42\x69\xe7\xb7\xee\x93\x5a\x23\x0c\xe6\x1a\xf6\xba\x76\xff\x88\x26\xe8\x6b\x48\xe6\xfe\xd0\xcc\x61\xc3\x85\xbf\x76\x1d\xcd\xe1\x01\x84\x79\x33\xfb\x4e\xf6\x1f\x3d\xc9\x56\x6c\x8a\x4f\xe6\x76\x76\xf3\x11\x4e\x35\x6c\x74\xef\xfd\xc1\x22\x54\x7b\xae\x58\xf7\x72\xe8\x41\x39\x24\x8c\x38\xde\x64\xf9\x16\x12\xdc\x5b\x32\x16\xcd\x5b\x1d\x4b\xa8\xb6\x5c\xe4\xda\x3b\x3b\x8f\x05\x66\x7f\x46\x54\xf6\xd8\xa8\x53\x5a\xd6\xc8\xe6\xc8\x62\x42\xd5\x1d\x1e\x37\x41\x5b\x21\x82\xc0\xfb\x14\x65\xd3\x6e\x45\x36\x8c\xe8\xee\x92\x3a\x28\xf5\x89\xc1\xfb\x7c\x9e\x65\x97\x62\xf4\x08\x2b\x4f\x9e\xdc\xfe\x48\x6c\x05\xa1\xe4\x4e\xcb\x42\x15\xd1\x79\x04\x27\xb5\xb7\xbc\x27\xcb\xfb\x19\x70\xae\xe8\xfb\xfc\xeb\xdd\x5d\xd6\x78\x59\x30\xb4\xa2\x33\x27\x6a\x1e\x61\x6f\x90\x45\xda\xbe\xbd\x16\x84\x4b\x26\x89\x96\xc7\xcf\x34\x94\xc3\xde\xf3\xbe\x4a\xf6\xc7\x18\x1a\x87\xff\xa6\x1e\xaf\x79\xf5\x17\x09\x35\x6e\xf3\x5f\x3f\xce\xe2\x23\xb8\xa7\xbc\x2b\x9e\x39\xa0\x44\x50\xdc\x7f\xf4\x7c\xa9\x97\x08\x61\xc3\xa5\x79\x2d\x8f\x7d\x8f\xb3\x41\xa5\xb4\xff\xd5\x96\x5d\xaa\x84\xd6\x99\xfc\xaa\xce\x7c\x96\x84\x04\x31\xe1\x57\x9e\xdb\xbd\xd8\x90\x55\xf8\x61\xe9\xef\x06\x71\x42\xd4\xd6\x43\x4d\xde\x7b\x4e\x12\x5c\x75\x85\x18\x9d\xcb\xda\x84\x46\xc1\x33\xb5\x91\x3f\x6a\x18\x8c\xd4\x3b\x0e\xa5\x05\x55\x11\xd2\xdb\xef\x88\x2d\x33\x9b\x40\xb0\x7e\xfd\xab\x56\x63\x6d\x18\x61\xca\x76\xf9\xdf\xff\xb0\x36\xf6\x8a\xdd\xca\xc9\x47\x09\xd2\x8d\x47\x9f\xc9\x73\x2b\x10\x76\x79\xb8\x1e\x13\x68\x3b\x46\xd8\x9b\x67\x98\x72\xc3\x62\x0e\xa1\xb8\xb1\xa3\xd9\xa5\x6d\x94\xc1\xd1\xe7\xb7\x36\xb9\x16\x54\xb1\x30\xd3\x36\xe6\xc8\x1d\xce\x5e\x82\xfc\x1f\xfd\x0a\x69\xbd\x7a\x16\x12\xfd\x35\xb6\x71\xc4\xc4\x13\x06\xdc\xae\x4f\xce\x98\xab\x49\x48\xdc\xe6\xc6\x9a\x77\xed\x3a\xa1\xeb\x47\xe4\xa3\x0e\xb1\xbd\x04\x07\x41\x8b\x87\x93\xa7\xdf\x60\x8d\x97\xd4\x84\x87\x97\x5c\x2d\x8b\x08\x53\xee\xdc\x90\x7b\x37\x86\x81\xad\xe6\xdb\x2d\x13\x82\xd8\xa0\xc8\x91\xd5\x18\xc8\x19\x4a\x50\xab\x99\xba\xc9\x28\xbc\x82\x30\x31\xf4\x9c\xd6\x55\xfe\x12\x16\x22\x85\x34\xf6\xff\x2b\x1f\xd4\xbf\x2f\xfa\x23\x5b\x41\xb0\xf6\xe6\xef\x13\x95\xae\x20\x70\x46\xf0\x5c\xff\xde\x70\x88\xf0\xac\xff\xc8\x73\x7e\x39\x67\xd6\x78\x91\x8c\x9d\xbe\x97\xaf\x5f\x86\x30\xc9\xf6\x5e\x73\x70\xdb\x79\x42\x99\x75\x72\x99\xc6\x0e\x7f\xc2\x32\xa6\xf9\xf3\x84\xab\x1a\x04\x03\x14\xec\x72\xd5\xe9\x62\xb0\xfd\xdb\xce\xe0\xcf\xcc\x2a\x1a\xc7\xd0\xf5\xc9\xba\x1d\xed\x99\x0c\x74\x45\x34\xbb\xd5\x17\x69\x10\x5a\x5e\x7e\xcc\x33\x4d\x65\x11\x2c\x4a\xec\x92\x86\x12\xab\x08\xa5\x55\x5c\x4e\x4c\x15\x43\x38\x6a\x69\xb1\xb0\xaa\x4c\x92\x70\x3a\x27\xb1\xe5\xb2\xf6\x5f\x06\x25\xed\xc7\xa5\x37\xad\xbf\x41\x68\xe4\x5b\x3a\x78\x6d\xeb\xd8\x39\x76\x50\xf1\xe1\x3f\x8c\x08\x7a\xff\x15\x4d\x73\x20\x48\x3f\x8c\xd5\x1a\xbd\xb3\x8d\xad\xac\x39\x59\x76\xf5\x45\xbc\x1a\x1b\x3c\x5b\x92\xf4\x77\xff\x8a\x22\x18\xce\x4d\x4b\x8d\xe6\x4b\x21\xa4\x77\x5f\xdb\xb0\x78\xe7\x65\xd6\x78\x99\x12\x74\xa4\x3f\xfc\x78\x28\xe1\xee\xb0\x50\x4d\x68\x62\x39\xe1\xcf\xf7\xd4\xc6\xf6\x72\x31\x42\x50\x75\xfd\xd2\x61\x13\x0d\x02\xdf\xfb\x25\xb2\x2e\x63\x9b\xb0\xcb\x3e\xf5\x95\xb5\x55\x4f\x08\xdd\x99\x6e\xda\x7a\xae\xe5\x04\x09\xaf\xbb\x45\xfb\xae\x3c\x25\x6c\x90\x4b\x71\x4c\xa6\x20\x42\xed\xca\x1f\x6b\x9f\x5f\xbc\x44\x10\xb8\x77\x56\x46\xfd\x5d\x20\x61\x85\x41\x4a\xea\xd4\x82\x79\x84\x8b\x61\x69\x57\x2a\x7c\x5a\x18\xa4\xac\xf0\x3f\xfd\x2e\x55\x8f\xb0\x25\xdf\x7d\xc1\xc2\x29\xfd\x0c\xa6\x54\xde\x51\x90\x3b\x56\x49\xe3\x68\x57\x3f\xbc\xd0\x43\x23\x93\x85\x8f\x83\x7f\xf4\x36\xcc\xb9\x4d\x98\x98\x2e\xec\xf0\xe2\x91\x29\x41\x73\xe2\x05\x7b\xe3\xef\x81\x2c\x6c\x3b\x65\x62\xd9\x9b\xa5\xc9\x1a\x0c\x2e\x74\x4e\x6a\xd9\x4c\x78\x3c\x67\x72\xfa\xfe\x5f\x77\x08\x0a\xe7\xc5\xb7\xf9\xbc\xf0\x20\x28\xb6\x08\xee\xaa\xe3\x2c\x67\x83\x78\x5f\xde\x6f\xe5\xc6\x67\xe5\x78\x9a\x7f\xb8\x8a\xe7\x75\x3c\x81\x4b\xa6\x94\xf7\x90\xed\x01\x82\xd5\x68\x7e\xc9\x73\xe3\x03\x6c\xc5\xcc\xa6\xf0\xee\xe8\xee\x3b\x04\x59\xe5\xb2\xee\xc4\xfc\xf3\x04\x12\xe6\xe4\xaf\x4c\x39\xc9\x86\xa5\xa1\x6d\xb7\x74\x45\x8f\xb3\x95\xc6\x84\xfc\xb5\x5f\x46\xbd\xff\x0b\xd6\x17\x6b\xdb\x15\x0e\xd9\x11\x2e\x9b\xfe\xd9\xe1\x6e\x6f\x4a\xc8\x90\xfa\x62\xf5\xe7\x79\x3e\x61\x6f\x8a\xe4\xbe\x7f\x38\x97\x34\xf1\x56\xeb\xbb\x1b\x84\x8a\x9c\x97\x32\x75\xe6\xb3\x09\xc1\xad\x7f\xae\x95\xdc\xcf\x24\x7c\xd6\xd9\xd3\xbe\xfc\x79\x19\x61\xe9\x8e\xd9\x8f\xff\x15\xd9\xf6\x19\x17\x3d\x7c\x89\x70\xb0\x71\x31\xeb\xef\x24\x5f\xc2\x87\xee\x9d\x03\xcf\x76\x49\x12\x28\x5b\x7e\x43\x65\xa4\x26\x5b\xe9\x4e\xa8\x9f\x98\xdd\x75\x8b\xd0\x62\xf7\xf6\xc9\xfb\xdb\x42\x84\x5b\x9f\x8c\x7e\x9f\xe1\x4f\x24\xdc\x4c\x99\xb6\xf3\xc1\x29\x1f\x42\x9b\x9a\xc6\xcd\x7e\xb3\x83\x84\x8c\x5a\x1a\x14\x96\x94\x27\x5c\x93\x36\x2a\x3b\x2b\xf0\x87\x81\x88\xd5\x29\x25\x19\x8f\x95\x04\x59\xcb\xcb\x37\x27\x3e\xf8\xc5\xe0\xc1\x93\xf9\xe6\xfe\x5f\x7f\xb0\x21\xe5\x8d\xb0\xcc\x6d\x51\x0e\x82\xdf\xb9\x35\x54\xf7\x3a\x93\x50\xff\xb3\xfa\xe4\xac\xd9\x0b\x08\x74\xf1\x40\xdd\x8a\x1d\xb3\x09\x27\x42\x7e\xed\x9b\x26\xa6\x48\xb8\xa0\xf3\xbc\x44\x42\x2a\x85\x90\xb7\xd2\x91\x69\x3f\x79\x82\xe0\xf4\x4a\xdc\x60\x5a\x85\x0b\xc1\xc6\xca\xab\x42\x99\x4b\x9e\x20\xd6\xba\x2d\x3a\xe1\x44\x02\x61\x9f\xb6\x12\xcf\xee\x58\x6f\x36\x74\xdc\xcd\x15\x7e\xad\xc7\x49\x90\x96\x79\x1b\xff\xfe\x91\x16\x41\x73\xee\x6a\xae\xde\xeb\xfb\x08\x1f\x5e\x85\xeb\x18\x0f\xff\x62\xf0\x5e\xd9\x28\xc2\xb4\x8a\x9f\x30\x73\x43\xe6\xd1\x5f\xd1\xf3\x08\xca\x5d\x16\x71\xfd\xef\x12\x08\xd3\x9f\x06\xf6\x33\xaf\x7c\x09\x07\x84\x06\xe3\x1c\x07\x63\x09\xee\xfe\x1f\x8a\x2e\x4d\x69\x61\xf0\x20\xa4\x2d\xc2\xd3\x64\x17\xe1\xde\xbd\x25\xa3\x0f\x8c\xbc\x08\x67\x73\xf7\x7a\xb8\xc6\x6c\x26\x54\x2b\x1e\x6c\xd8\xb2\x73\x2e\xe1\xee\x45\xe3\x53\x66\x9d\xb5\x0c\x9e\x84\xbc\x1e\xd1\xd2\x4b\x64\x61\x72\xa3\x1c\xff\xdb\x4e\x3f\xc2\xb5\x06\x33\x84\xf1\xf1\x10\x0c\x25\x5c\x59\x3d\xcf\x2f\x12\x0e\x2f\x5a\xa5\x5a\xf6\x72\x0c\xdb\x17\x1b\xd5\xbe\xd9\x48\x30\xf6\x6f\xb5\xd4\xb6\xd9\x40\xd0\x7e\xd1\xf8\x7d\x5b\xed\x45\x42\xff\x6e\xbb\x81\xee\x49\x22\x84\xf3\x9e\x33\x1a\x6d\x8b\x22\xd9\xe0\xb1\xb2\x25\xf4\xc3\x87\xe9\x84\xdd\x56\xe7\x95\x0a\xa3\x3d\x09\xed\xd3\xc2\xdc\x5f\x6f\x31\x25\x0c\xc4\x5a\xa5\xf3\x47\x57\x11\x66\x92\xef\xd7\x6c\xae\xfb\xe5\x70\xdf\xfc\x71\x15\xbd\x4b\xa7\x71\x5c\xe2\x94\xdc\xe1\x9a\xd4\xc4\x42\xf1\x3a\xb9\x90\x39\xf5\xb7\x08\x1d\x6d\xd1\x7c\x1b\xb6\x68\xb0\x70\x85\x4b\x18\xe9\x2d\x3c\x84\x47\x4e\x51\x77\x4c\xa4\x37\x11\x62\x86\xd5\x59\x4f\x78\x6c\x09\x49\xd2\xd7\x9c\xfe\xb8\x49\x12\xc2\x5a\x84\x93\x2a\x39\x2e\xb1\xc1\xe4\xe2\xbb\xb9\x13\x2d\xe5\x08\xea\x8d\xb6\xc7\x64\x23\x53\x09\x62\xbb\x3f\x1c\x75\x9e\x35\x9d\xb0\x68\xf8\x43\x74\xc7\xf9\x41\x06\x11\xeb\xd5\x35\x5e\x9c\x59\x4e\xe3\x28\x4d\x9a\x56\xe6\xb8\xb8\xb6\x1c\x25\xf5\x4a\x62\x97\xdc\x04\x09\x81\x1f\xad\x0a\x3c\x87\x67\x11\x54\xb6\x07\xe7\xb6\x66\x9e\x26\x34\x5b\xf3\x31\xb7\xce\x4f\x23\xb4\x7b\x0e\xdd\x6c\xcd\xf7\x64\x83\xf3\x4f\xef\xfb\xee\x87\xa7\x10\xee\xdc\x5b\xac\xf7\x62\xb7\x08\x21\xe7\xb3\xc2\xba\xc0\x08\x4e\x82\x72\x9b\x53\xfb\x53\x81\x99\x84\x56\x5c\x97\x3b\xed\x30\x95\x90\xb1\xfd\xb3\x4f\xd6\xf1\x35\x04\x9e\xe7\xfa\x96\xbd\xbf\xce\x12\xfa\x82\xb2\x1c\xef\x2f\x74\x22\x28\xdd\x2f\x78\xd4\x61\x92\x4c\x68\xf1\x91\x53\x9d\xcc\xf9\x91\x81\x54\xf2\x32\xe9\xdc\x38\x0d\x42\x7f\xfb\xb5\x1e\x91\xb0\xb7\x0c\xee\xa8\x1e\xfc\xa1\x9c\xbe\x8e\xb0\x7f\x4d\x8c\xb1\x8f\xd9\x28\x03\x83\x93\xf6\x17\x7a\x8e\x5c\x21\xcc\xe8\x75\xff\xaa\x76\xe2\x0a\xc1\x78\x5d\x68\xc8\x9d\xc4\x37\x0c\xa2\x30\x9d\xfb\xf8\xf4\x8f\x0c\x14\x8e\xd5\xfe\x2a\xd4\x98\x46\x70\x99\x12\xad\xd0\xa7\xfa\x92\x05\x9b\x03\x36\x7b\xca\xb7\x3f\x25\x7c\x12\x7e\x60\xd1\xfc\xbd\x82\xe0\x88\x9a\xf6\x14\xd1\xc2\x72\xb8\xa4\xfe\x5c\x12\xbe\xeb\x16\x41\xab\xf4\xb3\xe1\x84\xbf\x6f\x59\xb8\x24\xfd\x40\xf6\x5f\x11\xbf\xb6\x5e\xb2\x63\x8d\x24\x0d\x5e\xb9\x69\xf3\xba\xb3\x82\xf0\x8a\xa3\x87\x97\x4f\x6a\x21\xa1\xdb\xe2\x8b\xbc\x6c\xe6\x0f\x66\x1c\xe7\x0e\x7b\x7d\xdd\x52\xd3\xc8\xe0\xa4\x67\xfc\x61\xdf\x51\x16\x41\xd1\xb4\x7e\x77\x1d\xdf\x29\x16\x7e\xbd\xcf\xdc\xd6\x9e\x5c\x40\xf8\xba\x4e\x9e\x31\xd9\x52\x44\xb8\x27\xb7\x3f\xc4\x78\x0c\x03\x5a\xf3\x22\x1d\xe6\x5f\x27\xfc\xfe\xca\xe1\xa8\xb3\xf5\x3a\x41\xe0\xa8\xcc\x9a\x9d\x13\x27\x10\x52\x57\xd9\xcf\x58\xe6\xae\x49\xe8\x8f\xde\xd5\x64\x99\x35\x97\x50\xe8\x61\x56\x28\x7c\x20\x8f\x10\x7a\xe5\xf7\x65\xad\xb6\x7d\x04\x33\xb7\x21\xd9\x98\x1b\xfb\x08\x27\x53\x66\x4a\x1a\x7b\x45\x12\x56\x6e\xfe\xe6\x17\xea\x98\x40\x90\xf6\x13\xac\x6c\x3a\x97\x4c\x48\xe2\xfe\xa4\x7a\xcd\x67\x12\x61\xf3\xb9\x75\x1e\x32\x65\x46\x04\x1d\x85\xb8\xac\xbe\x1c\x73\xc2\xf7\xd6\xba\xd4\x84\xe0\x68\xc2\x75\xbd\xd7\xaa\x5e\x4b\x0d\x09\x8d\x9f\x8e\xac\x8d\x7d\xfa\x85\x81\x5f\xe9\x02\xa3\xdc\x3b\x8b\x69\x1c\xcb\x1f\xa6\x05\xf1\xfc\xfc\xc8\x20\xa6\xef\x51\xe1\xb6\xcb\x02\x04\x3f\xff\xb2\x69\x7c\xb7\x46\x99\xff\xc0\xcc\x75\xbb\xae\x0d\x9b\xf2\xd1\x7f\xe0\x69\xe1\xc8\xf6\xc9\x89\x63\x2b\xfa\xa7\xb0\x88\x2b\xf7\x0a\x59\xb0\xae\xda\xb0\x65\xe3\xb2\x4e\x16\x16\x8a\x04\x72\xea\x26\x14\x13\xa4\x52\x5f\xbf\xe9\x1f\xdb\xe7\xe7\x99\x94\x0b\xa7\xd5\x56\x10\x76\x71\x14\x3c\x8a\xeb\xaf\x20\xdc\x3a\xdd\xa2\xd5\x66\x28\x4f\x38\x30\xf9\xe8\xf9\x9e\x1d\x11\x84\xad\x9f\x8e\x2c\x6d\x43\x34\x01\xbf\x55\xf7\xa4\x38\x17\x11\xf6\x3d\xdc\xac\x24\xf1\xdc\x8d\xe0\x20\x6e\x3f\x55\xa2\x29\x89\x0d\x89\x6f\x14\x9c\x07\xd4\xf3\x09\xde\x95\x47\x38\x0e\xbc\xdb\x4f\x98\x5f\x6f\x39\xb4\x4c\x5d\x87\x60\x79\x2b\xf6\x6c\xa2\xff\x00\x83\x0e\x7b\xd3\xc8\x1d\x7b\x0e\x12\xa8\xae\x37\xbc\xa6\x6a\x29\xa1\xe7\xe1\xa4\xc5\x8e\x1e\x76\x04\x17\xd3\x20\x21\xa7\x07\xeb\xd9\xe0\xab\x74\x52\xc4\x88\x25\x4e\xb0\x3e\x1e\x67\x25\x62\xb9\x99\xa0\x9b\xfb\xfe\xb1\x76\x90\x2b\xe1\xd4\x85\x3f\xcf\xd6\xf5\xbd\x2c\x07\x5f\x46\xe6\xcc\xca\xd0\x4c\x1a\x47\x43\xf4\xfc\x05\x9e\x99\x36\x84\x8d\x1b\xe6\x0f\x1c\x3a\xde\xc0\xe0\x6b\xf5\xf3\xb7\x31\x72\xdf\xd9\xf0\xa5\x4f\xab\x49\xe0\x52\x1b\x03\xc5\xb7\xc2\x37\x27\x9d\x56\x21\x48\xc5\x0f\xbc\x93\x92\xb9\x4c\x98\xbd\xcf\x69\xde\x96\xed\x86\x84\x26\xd1\x67\xdd\xcb\x24\xaf\x10\x96\x70\xf0\xf7\x9d\xd3\x3e\x46\x10\x0a\xb2\x5f\x39\x73\xe0\x20\xe1\x93\xdb\xcb\x79\xcf\x77\x4c\x25\xd4\x3b\x05\x3c\x1f\xfc\x32\x8b\xd0\x3e\x5b\xa8\x76\xe7\xee\x3c\x42\x75\xb2\xa0\x76\xe9\xac\x7b\x04\xe7\xcf\x4d\x4b\xbb\x5f\x9a\xb0\xe1\xa0\x5f\x95\x4d\xb5\x94\x21\x61\x57\x83\x59\xf6\x04\x91\x14\xc2\x9e\xf0\x39\x2b\x9f\x7a\x1d\x24\x58\x3c\x11\x2d\xe1\xf8\x19\x40\x30\xbf\xeb\x2f\xd4\xf2\x74\x16\x41\x37\x6a\x85\x48\xf5\x92\x64\x82\x0d\xd9\xd5\xee\x34\xcd\x22\x2c\xd8\x30\x2a\xbf\x75\xb1\x1f\x41\x2e\x86\xbb\xa6\xf3\x75\x38\xe1\xc1\xe7\x3d\x53\xb7\xff\x5e\xcd\x06\xc7\xbe\xd7\x9c\x5f\xf3\xa4\x09\xdb\x7a\x42\x75\x62\xc2\xd2\x09\x73\xdf\x9b\x86\xb6\xbb\x5c\x23\x5c\x5a\x36\x27\x68\xf5\x5c\x45\xc2\xe6\x6b\x4e\x77\x97\xed\x8e\x24\x94\xe6\xf4\xd0\xdf\xc4\xd9\x84\xb7\x57\x9b\x8f\xa7\x95\xc4\x13\xc4\x96\x1e\xf0\x48\x5f\x30\x85\xb0\x33\x2d\xd2\x7f\x9f\xb8\x04\x21\xb9\xb8\xcd\x21\xe5\x5c\x1f\x83\xa9\xa6\x05\x3c\xf9\x61\xa7\x68\x1c\x9d\xc3\x45\x06\x4f\x1e\xf8\x12\xfe\xae\x92\x7f\xa3\x71\x6b\x98\xc1\x79\xae\x86\x9e\x32\x6f\x7b\xc2\x31\x5e\x37\xd6\xf6\xe3\x0a\x84\x60\x5e\x33\x1d\x1b\xeb\xdb\x84\xef\x9c\x6f\x52\xfe\x7e\xb9\x4d\xc8\x32\xbf\x51\xda\xe3\x51\x4a\x28\x3d\x37\xb1\xf1\x5f\x99\x5b\x2e\x3b\xa8\xbe\xf6\x34\xa1\x62\xc7\xb9\x85\x33\xe6\x6e\x21\x7c\xb5\x10\xed\xe0\x5b\x7f\x9a\xb0\x7c\xc7\x9b\x39\x0f\x46\x92\x58\xa8\x49\x89\x7b\xd1\xa6\x72\x9a\xb0\x68\xe6\x8c\xd2\xc5\xe9\x7b\x09\xcb\xb9\x1f\xbc\x3a\x53\x62\x44\xb8\x7d\xfd\x15\x4b\xda\x96\x83\x90\xfa\x91\xd3\x8a\x25\x23\x47\x58\x22\x5d\xb3\xf5\xe7\xaa\x6c\x82\x55\x34\xef\xef\xcf\x2b\xb2\x09\x66\xbe\x6f\x05\xac\xb7\x25\x12\x4c\xe5\x53\xae\x2f\x77\x1d\x62\xb0\x4d\xba\xdf\x6f\xd2\x14\x09\xc2\x32\x83\xd1\xd7\x13\x5f\xcd\x20\xf4\xde\xb9\xed\x95\xfb\xcc\x9b\x50\x2f\xb5\x8c\x86\xba\x0e\xb3\xf0\xac\xf3\x4f\xab\x30\xa7\x10\x61\x85\x4d\xcd\x74\x95\xd6\xc3\x2c\x9c\x13\x48\x49\xe5\xe0\x95\x26\xd4\x6e\x7f\xf6\xe9\x92\x02\x18\x34\xad\xcc\xe1\x38\x16\x7e\x97\xe0\x3b\x64\xb9\x63\x4e\xbe\x0b\x61\x5b\xc3\x69\xdd\x23\xb3\x0a\x08\xf5\xae\x3d\x17\xe2\x8c\x72\x09\xd1\x65\xa7\xbf\x19\x9f\x5d\x4f\xe8\x96\x15\xdd\x58\xca\xed\x40\xb0\x0a\xdc\x59\xe1\x96\x7f\x85\xb0\x55\xb8\x64\x49\x78\xb4\x32\xc1\x5c\x67\x8e\x79\x8c\x42\x06\xe1\xcf\xd6\x75\xe7\xb9\xfb\x1d\x08\x91\x37\x03\x96\xf8\xb5\x7d\x25\x78\x8f\xaa\xde\x6f\xe9\x4f\x20\xdc\x39\xa3\x56\xf8\xd1\xd5\x9b\x05\x6f\x0e\xdd\x81\x1b\xba\x43\x0c\x7e\x05\x06\x77\x7c\xea\xe5\xa3\xff\x0d\x87\xaf\xcc\x12\x4a\xc8\xf9\xc5\x40\xd2\x43\x93\x2f\xee\xb1\x14\xe1\xd6\x01\x81\xd3\x6f\x23\xae\x10\xba\x37\xdf\xe2\x4a\xb0\x56\x26\xcc\x78\xb0\xee\xde\xf0\xe1\x5f\x0c\x2e\x04\xfc\x59\x73\x75\x03\x17\x81\xc7\xe4\xe1\xe4\xbf\xa7\xd4\x09\x45\x7f\x38\xdf\x7f\x0f\xe2\x24\x4c\x9d\x22\xbc\xe8\xd6\x81\x59\x84\x4f\x19\xf2\xd6\x5b\xd5\xb5\x09\x2f\xbe\x96\x9d\xfc\x6d\xbe\x88\x20\x22\xe3\x98\x6a\xe7\xfc\x91\x41\x8a\x84\x94\x62\x78\x97\x02\x8d\xa3\x46\xcc\x60\x64\xaf\xfa\x9b\x72\x6c\x52\x9b\x76\xab\xd3\xbc\x96\x60\xd7\xf1\x43\xac\x74\x51\x20\x21\xec\x43\xde\x93\x19\xc2\xe6\x84\xb7\x3a\x11\xc9\x4b\x62\xfe\x32\xa8\x3b\x59\x10\xff\xe8\x79\x2d\x21\xa0\x20\x69\xa6\xc5\xef\x1e\x06\x14\xa0\x74\x3e\x66\x8a\x11\xfd\x6f\x30\xbf\xa1\x1d\x63\x13\xdd\x56\x8e\xe4\x2d\xc6\x1c\x9a\x91\xf9\x84\x8c\xb2\x2c\xd7\xc7\xcb\xf4\x09\xf3\xe3\x73\x5c\x97\xf6\x15\x11\x3a\x2c\x54\xc4\xaf\xee\x08\x27\xdc\xf9\x29\x75\xfc\xc1\xd8\x17\xed\x7f\xd0\xa7\xe0\x55\xd9\xb9\xfd\x1c\x1b\xa6\xe8\x46\x3a\x39\x6b\x9c\x62\x2b\x0e\x1e\x21\xcd\xff\xd0\xec\x67\xc5\xb7\x2f\x5d\x99\x70\xfd\x85\x4a\x37\xbe\xeb\x11\xec\xaa\x0e\x1c\x0a\x3f\x93\x4c\xb8\xd3\x7f\x36\x3a\x64\x7d\x36\x21\xb6\x33\xeb\xa6\xf4\x54\x55\x82\x68\xd6\x3d\xce\x4a\xbe\xa3\x84\xe8\x0f\x6d\xae\x61\x1d\x0b\x09\x92\xa6\xb3\xb2\x97\x7e\x0b\x62\x41\x64\xcb\x87\xa7\x3b\x1e\xdf\x27\xcc\xbe\xd1\x6f\xd7\x7a\xaf\x82\x05\xa7\x56\x3e\xde\x89\xea\x77\x08\x27\x1a\x3e\xdc\x79\x30\xba\x8f\x0d\xf7\xcc\x85\x6c\x5c\x96\xaa\xb2\xa1\x43\x38\x90\xb7\x4c\x50\x88\x10\x79\x7b\xd2\x24\x65\xed\x10\x42\x6e\x61\xd7\xfa\x43\x87\x43\x08\xcf\x6f\xad\xb2\xf2\xf8\x7a\x89\xd0\x7e\x93\xff\x96\xca\xd7\x73\x04\xb9\xad\xdb\x1f\x3c\xbe\x7d\x9b\x70\x51\xab\x53\xf2\x8a\x41\x01\x0b\x06\x61\x9a\x0f\x97\xab\x54\x13\x76\xdd\x3f\xe5\x34\xb2\x37\x94\x85\xc9\x16\x4e\x3f\xe7\xd7\x5d\x24\xb8\x38\x1b\xcc\xef\xf9\x56\x44\x48\x5a\x56\x7f\xbf\xfb\x67\x11\xa1\x30\xde\x44\x8e\xeb\xeb\x1a\xc2\xa4\x49\x93\x23\x5f\xa5\x1f\x60\xe1\x87\xf4\xd9\x27\xcb\x9c\x0f\xb3\x8d\x9e\xbf\x8e\x8d\xfa\x16\xad\x46\x50\x88\x7c\xfa\xa0\x49\x53\x81\x30\x31\xda\xfb\xc5\x1c\x4f\x0b\xc2\x81\xc5\x47\x1a\x3c\xd2\xba\x18\xd8\x3d\x50\x39\xe8\x65\x26\x4d\x78\x27\xf1\x78\xc9\x6b\x9f\x0a\x06\x9f\x02\x63\xbd\x7a\x2f\x8b\xd2\x38\x1c\x6e\xbc\xb4\xe4\xb5\xe3\x22\x24\x0c\x6a\x6c\x49\xdf\x22\x49\x98\xed\xe7\xad\xbb\xa3\xf0\x36\x81\xff\xf9\x24\x6a\xaf\xbe\x4d\x60\x2c\xda\x44\xfe\x21\x43\xf9\x74\xde\xfb\x31\xa4\x39\x0c\xff\x50\xdb\xe3\x47\x78\x61\x13\x13\x67\x3d\x33\x8f\xad\xc4\x36\x94\x6c\x51\x39\x95\xc5\x56\xd4\xdf\xef\x96\x58\xff\xc5\x8b\x90\x25\xa4\x6d\x93\x7b\xe9\x1a\xe1\xf2\xa6\x80\x34\x7c\x4c\x66\x61\x9b\xdf\xde\x9a\x8b\x0d\xba\x84\xe7\x27\x3f\xf0\xf0\xe9\x85\x12\x06\xbf\xdd\xce\xe0\xf6\xe6\x21\x78\xcf\x4d\x13\xdf\x50\xbc\x86\x60\x7f\x39\xa4\xa3\x41\xb4\x87\x81\xf4\x8a\x2d\x09\xb5\xb2\xce\x2c\xec\xcd\x9d\xec\xf4\x66\xc7\x00\x83\x92\xe3\xdb\x75\x5e\x47\x38\x13\x5c\xaa\x46\xce\x2c\x18\x51\x25\x88\x28\xbc\x5e\xf2\x2e\xef\x3a\x1b\x5a\x32\x79\xfc\xff\xc1\x65\x91\x82\xd6\x6f\xad\xeb\x04\x0b\xe5\x8a\x7d\xa5\x61\x2b\x09\x1d\x4f\xcc\x15\x5e\x5e\x9b\x45\xd0\xec\x98\x72\xec\x58\xf4\x79\x42\x97\x72\xfe\x16\x0f\x15\x1d\xc2\xd4\xad\x39\x13\xee\x5e\x32\x1f\x5b\x89\x62\x52\xbf\x44\xcc\x23\x8c\x6e\x28\x50\x8d\xbb\x23\xc2\x06\xc7\x1b\x6b\xce\xae\xfa\xfb\x83\xc1\x0e\xe5\xd7\x96\x59\x2a\xf2\x04\x85\xe1\x75\xa5\x25\x5b\x35\x09\xc1\xf7\x1f\x88\x3d\xfa\x3c\x93\xd0\xb8\x71\xbf\xee\xfd\x89\x76\x84\x94\x99\x4b\x5b\xad\xe4\x97\x10\x6e\x2e\x1f\x5d\xa9\xdd\xbf\x9a\xf0\xf7\x6a\x67\xd6\x89\x41\x05\xc2\x63\x9f\x8c\x69\x33\x9e\x4e\x61\x03\x05\x64\x2e\x8d\xbf\x65\x40\xc8\x58\xbf\x2a\xda\x23\x62\x3e\xa1\xe5\xd2\xfb\x22\x29\x9f\x68\x82\x82\x8b\x52\x63\xdc\x83\x73\x04\xaf\x21\x43\xbb\x6f\x99\x0c\xa1\x68\xe9\xaa\x98\x81\xfc\xc5\x04\xb1\xfd\x5f\xcc\x37\xb5\xac\x23\x34\xf0\x04\xa5\xe6\x2b\xde\x66\xc3\x14\x49\x0e\xdd\xf2\xf6\x48\x36\xac\x31\xca\x7d\x73\x4b\xe1\x06\xc1\x74\xc1\x74\x2d\xd7\x89\x15\x84\x49\xa6\x7b\x0f\x14\xb7\xa4\x13\x2a\x96\xc5\xdf\xff\xc6\x5b\x41\x98\x1f\x9a\x3b\xe7\x62\xfe\x7e\xc2\xc2\xc6\x05\x2a\x6d\x7f\xf6\x8f\x6d\x5d\xf3\x96\x99\xf7\x94\x13\x36\xe9\x3b\xc7\xb4\x97\x64\x13\x4e\xbc\x48\x39\x6a\xb5\x28\x97\x35\x5e\x98\xc5\xc6\xda\xe4\x29\x49\x28\xdb\x39\x52\xba\x5e\x3a\x9d\x85\x2f\x16\x6a\x17\x6e\xe4\x8f\x3d\x7d\x77\x75\x2e\x70\x78\xa0\x40\xf8\xdd\xea\xba\xca\x3c\x55\x98\xf0\x6b\x9a\x7a\xa5\x22\x33\xcc\xc0\xdc\x29\x79\xf5\xad\x7b\xd7\x09\x6f\x24\xcf\xd1\x3f\x6c\x2b\x37\xec\x3e\xfe\xb9\xa5\x7c\x1c\x27\x2f\x30\x85\xde\x17\xfe\x30\x08\x72\x1a\x75\xfa\xe2\x2f\x4a\xe3\xf8\x9f\x23\x77\x88\xf0\xee\x9b\xba\x18\x21\x61\xf2\x85\xda\xdc\x45\x5d\x0c\x96\x87\x3e\xd1\x2d\x3a\x22\x4a\xff\x81\xfd\xed\x4b\x43\x87\xb5\x7e\x32\xe3\x50\xd8\x96\x69\xac\x1c\x61\x4f\x78\x58\x3c\x25\x20\xac\xaf\x9e\x81\x79\x65\xd6\xdf\x1c\x5d\x43\x42\x6c\x79\x7c\xcf\x68\xa2\x26\xe1\xf3\x0b\x8b\xe7\xfe\xf7\xf5\x08\xda\xa5\x9e\x9c\x4d\x3c\x3d\x0c\x56\xe6\xf1\x3c\x78\xe6\x32\x87\x30\xd7\x77\xe5\x99\xc0\x3b\xdd\x0c\xee\x15\xe5\x76\xb5\x1e\x15\xa5\xff\x0d\xb5\x7c\xa7\x07\xac\xc3\x7e\x33\x48\x12\x36\xe5\xd0\xbe\x22\x4f\x18\xed\x7b\x2b\xa9\xc5\x9d\x45\xd0\xb9\x79\xb5\xfc\xb0\xaa\x34\xe1\xec\xdb\x58\x61\x77\x89\x41\x06\xd7\x5e\xf3\x2c\x6b\xa7\x3b\x84\x99\xa2\x5a\xb5\x57\xee\xd7\xd0\x78\x59\x30\x6d\x69\xe7\xd6\xca\x3d\x84\x4d\x8f\x79\x67\xf4\xc6\xea\x11\xa2\x24\x72\x65\x22\x33\x1c\x09\x0f\xb3\xaf\xaf\xcc\x28\x2c\x27\xf8\x2a\xfe\x3a\xca\x77\x3f\x85\x05\x4e\x99\x0c\xb5\x4b\x4f\xe2\x09\x79\x77\x56\x4e\x9f\xa9\x77\x9c\xb0\xa0\xea\x52\x83\xa1\xc7\x32\xc2\xa9\xd9\xad\x8b\x39\x37\x4a\x11\x3e\xb4\x4c\xf1\x75\x6b\xc8\x27\xec\x8c\x7c\x53\x5b\x50\x17\xcc\xc2\x41\x6f\xdb\x96\x8d\xa7\xf9\x08\x71\x47\x07\x3e\x71\xbc\x8f\x60\x83\xbf\x6b\xd0\x67\x85\x4f\xba\x04\x97\xd6\x8e\xaa\x61\xd9\x42\x82\x72\x35\x8b\xdb\x2f\x24\x9f\xf0\x3e\x87\xd3\xad\xf1\x60\x14\xe1\x9b\xe5\xb9\xc8\xdf\x73\xce\x11\xba\x99\x3b\xbd\x0e\x1b\x8e\x10\xbe\x5f\x7a\x62\x5a\xe6\x79\x84\x10\x9f\x15\x5b\x5b\xb1\x83\x9b\x70\xae\x66\x8a\x63\x57\x9d\x33\xa1\xdb\xd8\x82\xff\x4b\x9b\x19\xc1\x8f\xcb\x65\xf0\xf8\x06\x37\xc2\x95\x25\xf9\x0b\xfd\xc5\xbd\x59\x98\x25\x66\xd6\xb4\xce\xf3\x37\x21\xed\xb1\xd1\x54\xe9\xb2\x67\x84\x59\xda\x16\x82\x97\xb5\x9e\xb2\x30\x27\xbe\xb8\x3a\x50\xe3\x37\x61\x5e\xec\x81\x45\xdc\xae\xf7\x09\x95\x33\xe4\x2f\x0f\x79\x17\xb3\xe0\x2a\x22\x7a\x64\xf9\xfe\xa4\x72\x8c\xaa\x7c\x7b\xf6\xdd\x4c\x86\xf0\xb7\xf0\x53\xc1\xee\x3c\x7e\x42\xd0\x7e\x39\xb3\xe8\x27\xc3\x0c\xba\x5c\x1e\x7f\xde\xf3\x93\x93\xad\xe8\x6e\x2d\x70\x69\xcb\x92\xa2\x71\xc4\x9b\x5d\xde\xa5\x78\xba\xa5\x1c\xdb\x79\x63\x55\xca\xb3\xb7\x10\xac\xa6\x07\x7e\xbc\xb6\xd2\x85\x10\xfe\xdc\x5f\xb7\x75\xcb\x2f\x06\xcf\xa5\x66\x3b\xf7\x3f\x58\x4c\xe3\xb8\x9b\x39\xac\xe4\xd0\x6f\x46\xf0\x89\xdc\xa4\x79\x78\xee\x5f\x06\x3c\x12\x27\x95\xb5\x8f\xd9\x12\x32\x5a\xd4\xd2\x15\xef\xe9\x13\x2e\xed\x36\xd9\xf3\x62\xde\x0f\x06\xeb\x85\x02\xd3\x47\x6c\x44\x09\x12\xc6\x32\x6d\xcf\x8c\x39\x09\xd6\xb5\x71\x21\xd1\xf3\x67\xb1\xc1\xd0\x53\x37\xdb\xd6\xfc\x67\x39\x74\xfc\x5d\x97\x63\xe6\x0c\x82\x68\x74\x71\x92\xe4\xcf\xed\x84\x1d\x4b\x2b\x17\x71\x8f\x1d\x0e\xff\x83\x38\xcd\xd1\xf7\x37\x66\xf8\x10\xb2\xf5\x4a\xe2\x3c\x38\x57\x12\xb6\x86\x79\xa5\x5a\x5e\xe5\x20\xc8\xb4\xab\x0b\x67\x57\xe5\x10\xa4\x02\x85\x04\x07\x02\xf6\x11\x3e\x86\x7f\x08\x98\x38\xfc\x84\xb0\x52\x9d\x4b\xb8\x37\xa4\x8c\x90\x27\xc3\x08\xdd\x4b\x01\x83\x10\xcb\xfe\x0b\x66\x17\xb7\x10\xa2\x3a\xd5\x1c\x2c\x2b\x6c\x08\x22\x2b\x6a\x92\x83\x3c\x9d\x58\x08\x51\xdf\xb9\x6e\xaa\x8c\x12\xa1\x42\x9e\xb4\x37\x7d\xf6\x27\xb4\xff\x9a\x47\x37\x52\x8f\x11\xb6\xb4\x8b\x5d\x61\x69\xed\x26\x3c\x76\xe1\x6d\x8b\xdf\xc7\x22\x34\x8e\xf2\x9d\xb9\x3a\x06\xa1\xf4\xd3\x4a\x86\x6a\xcf\x99\x71\xa4\xdb\x19\x6d\xdb\x1c\xcb\xa2\x71\x6c\xff\x76\xdd\xf0\xdf\xe8\x7f\x60\xfd\xf1\x59\x82\xcd\x48\x25\xc1\xb7\x78\xca\xa7\x7f\x30\x8c\xc9\xf8\xb5\xec\x53\x73\xf9\x38\xea\x26\x8b\x0e\xb2\xc4\xbe\x33\x70\x49\xd9\xb4\x30\xe1\x79\x15\xa1\xe6\xeb\xde\x35\xff\xc0\x1f\xb5\xcf\x2c\x7e\x0c\x05\x33\x5d\x5c\x75\x93\x3e\x33\xff\x81\xc3\xbe\xb2\x33\x1e\x5d\xf8\xcb\x86\xa3\x6a\x31\xd7\x9b\x2e\x15\x13\xf6\x0c\xec\x3c\xfe\x72\x0c\x7c\x3d\x23\x02\xac\x9d\xdc\x6c\x38\xef\x27\xdf\xfa\xd4\x5e\x96\x30\x4b\xb5\x28\xa7\xdf\x78\x0e\xe1\x60\xf0\x8b\xc0\x73\xdf\xb8\x09\x51\x3b\xe6\x0c\x5a\x9a\x2a\x10\x6e\x2f\xb7\xee\xbd\x2f\x90\x49\x88\xb8\x19\xb9\x76\xe3\x89\x2a\x42\x52\x98\x54\xdb\xb4\x79\xcf\x18\xb4\x2d\x8d\x3f\xec\xaf\x6a\x48\x30\x0a\xbb\xb6\xfe\x91\x74\x23\x0b\x59\x4a\xbf\xbf\x6c\x4d\xd2\x20\xec\x70\xf3\xac\xe1\x7b\xa4\x46\x78\xd5\x9c\xa4\x20\xe4\x62\x4d\x08\xbd\x1e\xe7\xaa\x39\x43\x9b\x90\xea\xdb\xb1\x57\x24\x34\x94\x70\xdd\xf9\x4c\xaf\x48\x73\x28\xa1\xbe\x69\x51\x54\x86\x7b\x27\x0b\x8d\x3b\x2a\x3f\x2d\x48\xb3\x27\x68\xda\xb7\x3a\xf2\xbd\xa9\x24\x34\x2f\xf0\x3c\xb3\xfd\x8b\x2e\x61\xff\x90\x78\xc2\x8c\x89\x82\x84\x58\xb1\x0d\xcd\xf5\x4f\xe4\x09\x65\x05\x9d\xfd\x09\xa9\x5f\x18\x48\x5d\x6c\xee\x6f\x48\xef\x63\x60\xdf\x3b\x30\xd9\xfd\xb0\x1e\xa1\xf6\xfb\x73\xf3\x5e\x71\x21\x42\xd5\xb7\x2d\xde\x99\x7e\x26\x04\x1b\xe1\x28\x91\x89\x82\x53\x09\xab\xbd\xa4\xb7\xbd\xab\x5a\x4d\x50\xeb\x6d\x6e\x48\x5f\x34\xc0\xe0\x43\x70\xfd\x64\x93\x23\xc3\x0c\x02\x5e\x59\x2b\x77\xa6\xc7\xd2\x38\x12\xbe\xde\xf5\x57\x97\x15\x25\xe8\xe5\xb9\x34\xd5\x6a\x7b\x11\xd4\xef\xb4\x6d\x9b\xf6\x50\x85\x20\xdc\x40\x85\x2a\xa1\xab\x08\x5a\xd2\xc1\x7b\x76\x94\x9b\x12\x6c\x7e\xed\x16\x7b\x96\x22\x46\xf0\xe5\x58\x39\xdc\xb3\x83\x83\xa0\x17\xb9\x78\xc1\x80\xee\x3c\x82\x7a\x68\x84\xab\xf0\xa8\x19\x21\xe0\x80\x4b\xd6\x02\x5d\x6b\xc2\x4b\xbe\x77\x47\x79\xb4\x4c\x09\xb1\xeb\x26\xb6\x5c\xbd\xa2\x47\xd8\x6e\xfd\x77\x4a\x66\xa6\x02\x1b\x54\xee\x04\x44\xa5\xdd\xd0\x20\x6c\x90\x8c\x88\xda\x79\xf6\x05\x03\x89\xc2\x8d\x26\x3e\x2b\x96\x12\xde\x74\x2b\xb5\x44\x71\x5a\x11\x1c\x9e\xd8\xa4\x08\x5a\xf5\x33\xa8\xb3\x14\x8a\xcd\x51\x9b\x47\xa8\xad\xd8\x62\x21\x7b\x41\x9c\xd0\x50\x18\xec\xd1\x74\xcf\x88\x0d\xaf\xe6\xd9\x16\x8b\xdc\xd5\x60\xc3\x3d\xad\x77\x12\x42\x2e\x53\x08\x0d\x1d\xb9\x49\xb6\x89\xcb\xd8\x80\xcb\x5c\xe9\x86\xab\x86\x19\x0c\xd6\x9d\xdf\x5c\xda\x70\x94\x05\x81\xb9\x45\xe5\x06\x3d\x76\x84\x56\xff\x63\xa2\x16\xf7\x6c\x09\x01\xaa\x53\x0d\x23\xfd\xa2\x58\x38\x18\x1a\xa5\xfa\xe0\xc9\x3a\x82\xec\xe3\x95\x4b\x67\x6d\x99\x49\x78\x3e\x1c\x71\x26\xa3\xb3\x86\xc1\x5e\x8d\x0d\xe7\x9a\xc2\x74\x08\x86\xf1\x49\xbd\xeb\x96\x4a\xb1\x21\x7a\xed\xb1\x39\xc9\x89\xcf\x18\x18\xdf\xbb\xb9\x9d\x4b\xe2\x55\x39\x1c\xea\xe7\x16\x04\x2d\xdc\x40\xe3\x10\xfe\xc9\x2b\x76\xd2\x4f\x91\x30\x81\xe3\xcd\xef\xb5\x5b\xb8\x08\x13\xdf\x18\xa7\x6e\xb4\xa8\x61\xe0\x6d\xd3\x15\x24\xa7\xa7\x44\x28\x34\x52\x3c\xd2\xbd\xf6\x69\x39\xb2\x37\x16\x7d\x8a\x76\x17\xa1\x71\xf0\x4a\x2e\xf5\xb2\xdb\xaf\x49\x28\xc1\xba\x0c\x45\x25\x3b\xc2\x09\xe1\x1c\x9f\x4f\x8c\x24\xa1\x4b\xdf\xb9\x43\x7c\xf1\x0c\xc2\xda\xd9\x0a\x5e\xde\x62\x3b\x08\x2c\xf7\xa9\x7f\xd4\x8b\x1d\x09\x69\x67\xf6\xf2\xf2\x4c\x9a\x49\xc8\x59\x6c\x28\x7e\xa2\x51\x91\xa0\x3f\xd2\xfe\xd9\xb7\x70\x36\x21\xce\x2c\xf9\x57\xff\x41\x61\x42\x66\x99\xef\xc8\xec\x6e\x6e\x82\xf8\x26\x1d\xab\x00\xdd\x28\x16\x7a\x26\x6d\x4a\xb2\xdc\xcc\x47\xc8\xb7\x73\x3a\x6d\xa5\x6d\xc6\x86\x63\x16\x5b\x87\xda\x0c\x54\x08\xe2\x1a\x62\x27\xcd\xcc\xcc\x09\xa9\x9f\x84\x24\x1f\x2f\x35\x22\x74\xe9\x24\x75\x9d\xca\xd2\x24\xcc\x3a\x99\xa4\xb3\xd4\x49\x8c\x90\xd9\x6f\x38\xab\xad\x28\x9c\xa0\xa8\x3d\xa4\x10\x61\x10\x40\x30\x71\x9e\xb8\xde\x8b\x75\x88\xb0\x64\xf3\xeb\x1b\x3b\x3f\x87\xb2\x60\x6a\x7b\x59\xe5\xb8\x83\x3d\x61\xff\xd3\x54\x75\xe5\x3d\x05\x84\x2d\x89\xe1\x82\xea\x09\x59\x84\xf3\x85\xe2\x4b\xe5\x76\xad\x20\xdc\x52\x98\xb6\xec\x7d\xf1\x29\x42\xd7\xc1\xd2\x6d\xd6\x86\xfb\x08\xb7\x0d\x7f\x5d\xbc\xa8\x18\xc2\x1a\x2f\xbf\x07\x4c\x6b\x78\x6f\xf0\x13\x0a\xd2\x77\xf5\xbf\x74\x36\x25\x18\xd5\x57\xb7\x59\x67\x16\x97\xa3\x9e\x7b\x45\x64\x41\xed\xd8\xe3\xd3\xff\x87\xce\xa3\x75\x33\x16\xc4\x86\x94\xe3\xd5\x8e\x34\x95\xe6\x33\xfe\x04\xf9\xe3\x2b\xdf\x5a\x78\xab\x13\xe6\xff\xe6\x68\x5f\x2e\xae\xc2\x06\x37\xf3\xb7\xe9\xbf\xf4\xea\xcb\x61\xcf\xcf\xf9\xea\xd3\xe6\xe9\x84\x45\x1f\x44\x5e\x37\x3a\x05\xb1\x81\x8b\xc3\x64\xaf\xd3\x5a\x3d\xc2\xc2\x45\x4b\x9e\x29\x99\xeb\xb0\x61\xcd\xe7\xf5\x0f\x9f\x6f\x1c\x60\xc6\xb1\xf0\xdd\xc9\x85\xb1\x01\x75\xe5\x88\x8f\x2a\x9e\xd4\x2a\x28\x49\x90\xc6\x5b\x65\x0b\x7b\x41\xc2\xba\x85\x45\xcd\x31\x89\xba\x84\xd5\x32\xfb\xd5\x77\x2c\x7e\xce\x1a\x2f\xfc\xf7\x0c\x02\x4d\x1e\x34\x32\x88\xbd\xc7\x4c\x5f\xa4\x2e\x4b\xe8\x68\xda\xd0\xce\x73\x7f\x0a\xe1\xfe\x8b\x5f\xe7\xed\x76\x71\x10\x42\x5e\x17\xae\xdc\xea\xb0\x84\xe0\xba\x39\xa6\xe4\xb0\xf4\x59\xc2\xac\x79\x89\x8f\x46\xcd\xf6\x11\xec\x3b\x95\xe6\x14\x27\xd9\x10\x2e\x5b\xbf\x68\xb6\x7c\x70\x84\x05\x87\x53\x3d\x13\x03\xbf\x57\xb2\x20\xfb\x5b\x7e\xe7\x6a\x67\x59\x82\x47\x9e\x13\xf7\xf3\xfb\x22\x84\xb7\x4a\xb3\x27\xce\x5f\xea\x40\xf8\xf9\x39\x5d\xed\xaa\x4d\x32\xe1\xd5\x59\xbd\x05\xb2\x02\xf9\x84\x9c\xe7\xe9\x61\x3b\x6d\xcf\x13\x4e\xad\x5a\xb1\xf7\xb0\x68\x18\xe1\xe8\xc7\x2f\xef\x2a\xab\x4f\x10\xea\x15\x06\x3f\xb6\xf8\x7c\x67\xd0\x63\xc7\x7b\x88\xe7\x3c\x43\xe3\xa8\x5f\xb1\xa1\xfc\x85\x67\x03\x83\xa1\x9d\x2d\x03\x3a\x5e\xb3\x09\x92\x47\xdd\xac\xaf\x0c\x2f\x24\x0c\x3a\x1c\xdc\x35\xd2\x2d\x49\x68\x97\x31\x11\x1f\xdc\x3b\xcc\x60\x95\x5a\xa2\xb6\xc6\x41\x6d\x42\xf7\x9b\x0b\xd9\x7a\x49\xf2\x84\x85\x8a\xcb\x7b\xfa\xac\xa7\x10\x52\x3c\xdf\x7f\xe9\xb2\x58\x48\x58\xbf\xb9\x7e\x66\xf9\x89\x79\x84\xc1\x98\x55\x19\xc5\x73\x6c\x09\xe5\x33\xf6\x4e\xc9\x98\x2a\x4c\x78\xea\xac\xf2\x67\x8d\x7b\x28\x0b\x09\xc1\x65\xc5\x31\x17\xef\x97\x43\x93\x97\xb7\xee\xd1\x15\x7f\x16\xb8\x22\xe7\x67\xf4\x3f\xad\x29\x47\x66\xd2\xcc\x0f\xde\x52\xe1\x34\x0e\x5b\xe9\x5c\xe3\x98\x41\x45\x82\xcf\xda\xeb\x3a\xfe\xd2\x11\x84\xfd\xbb\x35\xf7\x6e\x71\xf2\x23\x88\xad\x73\xf4\xdb\x97\xe2\x47\xd0\xb1\xdc\x6f\x90\x7f\x3a\x80\x70\x6d\x24\xa8\x72\xcd\x89\x3c\x02\xff\x29\xce\x30\xdd\xd7\xb1\x34\xe8\xb3\x41\x74\x33\xb7\x05\x61\xf0\xb7\x8f\x97\xe7\xd4\xa7\x84\xa8\x12\x9b\xb0\xe8\x0f\x33\xd8\xb0\xad\x3d\xd0\x78\x63\x8b\x1f\x1b\x5a\x16\x7e\x1c\x26\x6c\x20\x74\x1d\xf6\xb0\x09\x4f\x16\x24\x48\x77\x59\x28\x04\x2d\x5c\x4e\xb0\x39\xd6\xe5\x5d\x17\xa6\x42\x28\x28\x3c\x5d\x5a\x53\xa5\x49\xa8\xe4\x32\x7d\xa8\x34\x59\x89\xd0\x5f\xdd\xa3\x1f\xf6\x31\x8f\x90\xca\x65\x5f\xf9\xbc\x74\xec\x40\xd2\x59\xee\x54\xbf\x73\x2a\x1b\x1c\x03\xe7\x56\x5b\xb4\xbd\x60\xf0\x99\xda\x27\xe7\x54\x0f\x32\xc8\x9d\xab\x17\x94\xa0\x66\x4f\x08\xfc\xb2\x2b\xc4\x6e\x9a\x03\xa1\x7a\xeb\x9d\xb5\x91\x6b\x0d\x08\xb9\x93\xe6\xba\x4b\xad\x98\x4f\xd8\x22\xef\xb6\x89\x27\x49\x92\x90\xf1\xd7\xd7\xb7\x8d\x53\x85\xb0\xba\xa0\xf0\x65\x5b\x87\x2d\x1b\xbe\xae\x98\xbe\xbf\x36\x55\x87\x20\xe9\xa4\xcc\xbb\xe9\xec\x59\x16\xf8\x79\xbb\x96\x94\x52\x26\xe1\x80\x61\x87\x89\xa6\x6e\x35\x0b\x57\xb2\xcd\x87\xdf\x6f\xc9\x24\xc4\x6f\x7e\x63\x52\x12\x31\x87\x60\xd4\xba\x41\x8a\x77\x6b\x05\x21\x50\xaa\xe5\xad\xeb\xfe\x17\x0c\xb6\xfb\xb0\x48\xfa\xe2\x3c\x82\x95\x3e\xca\xcf\x71\xa5\xb2\x90\x13\x2b\x94\x18\x50\xdd\xcf\xe0\x81\xb4\xeb\x04\xd7\xb0\x64\xfa\xff\x85\x47\xb1\x0e\x6e\x06\x6f\x8f\xff\x17\x42\x64\xd7\x5f\xf0\x5d\x79\x8c\xf0\xa5\x91\x66\x3f\x0a\x2c\x25\xc8\x2b\x16\x7a\xd7\x4f\x2c\x20\xdc\xb7\x6e\x19\x98\x73\x4b\x8b\xf0\x7a\xc1\x9c\x5b\x8b\x2e\xf8\x13\xae\xd4\x4e\xf9\x21\x19\xbf\x8f\xad\x24\x5c\xec\x90\x96\xaa\xda\x47\x28\x88\xfb\x64\xfe\xfe\xb6\x0e\xe1\xc1\x0b\x37\x73\x0b\x31\x7e\x36\x78\x7a\xac\x92\xe8\xfd\xb3\xf9\xbf\x60\xb6\xec\x99\xf7\xb6\xd9\xc2\x6c\x70\xfc\xe5\x2e\xf4\x38\x3a\x88\x0d\x1f\x16\xe8\x85\x44\xba\xd9\x10\x7a\x7c\x4e\x6e\x1f\x5d\x23\x4e\x58\x35\xea\x98\x54\xa1\x34\x9b\x20\xdf\xf0\x5d\xc3\x52\xf0\x0a\xc1\x46\x23\x6e\x86\xb7\x56\x02\x0b\x2f\x4b\x72\x2c\x17\xa5\x3e\x66\xe1\x53\x5b\xee\xa2\xd8\x19\x09\x2c\x2c\x0b\xfe\x39\x71\x79\x5e\x24\x21\xca\xaf\xea\xa8\xe0\x63\x53\x42\xc5\xac\x88\xac\x39\x07\x4a\x09\x7b\xea\x32\xf5\xee\x18\x65\x13\xa2\xc3\x5c\x36\xbe\x30\x2e\x66\x1b\x79\x3b\x1c\x6b\x4c\xbf\x1b\x49\x28\x32\xda\xe6\x7e\x35\xed\x2c\x21\x66\x54\xae\xe2\xb7\x4f\x19\xa1\xd7\xde\xb4\xbb\xf9\x7a\x19\xa1\xee\x5d\xb2\x4f\x54\x64\x36\xc1\x7e\xeb\xe4\xce\xda\xa8\x4a\xc2\xcd\x1b\x0b\xff\xbe\x1a\x1b\x6d\x58\xb4\xbc\xe9\xb2\x5f\x16\xa1\x32\xc2\xed\xeb\x3f\xe4\xba\x1b\x66\x1a\x1e\x88\x27\x44\x94\xcc\x4c\xfb\x3f\x0b\x6f\x02\x57\x47\xe1\x2a\x6d\x16\xda\x56\x5c\xd3\xc8\xbd\x2d\x4d\xd0\x11\xed\xbe\x7c\xf6\xcd\x20\x03\x7f\x83\x69\x01\x5f\x07\x7f\xb3\x61\xcb\x5b\x97\xcd\x7a\x05\x7a\x84\x7b\xdb\x8c\x4f\xd5\x2a\xcb\xb3\x21\xbf\xa1\xbf\x7b\x40\x9b\x8b\xa0\x7f\x7b\xb9\xa0\x65\xc6\x4d\xc2\x81\xbe\x1f\x1a\x2c\xab\x95\x84\x35\x2f\x26\xba\x1e\x14\xed\x67\x20\x37\x81\xcf\x43\xc5\xa4\x94\x90\x27\xbf\xf1\xfe\x3f\xec\x2c\x49\xbd\x5a\xe3\xe1\x41\xf0\x5a\x76\xf9\xd5\xe3\xfa\x76\x06\xcb\x65\x27\xef\xf3\xd9\x6b\x4b\xe3\xf0\xe9\x54\x89\x2b\xf6\x13\x25\x64\xd8\xeb\x9f\x91\x11\x7d\xc3\xc2\xf1\x37\x9e\xce\x7c\x8e\x2f\x59\x70\xd2\x9f\x5d\xf4\x23\xbb\x90\x10\xa9\x17\x59\xd3\xb9\xcd\x8c\x10\xb3\x6a\xf5\xd4\xfb\xe2\x87\x09\xf4\xe1\x8a\xdf\x0b\xb3\x23\x04\xe3\x0f\xef\xd6\xfe\xbc\x7c\x82\x10\x72\xb9\xf9\x28\x8b\x2c\x08\x9a\x5b\x7f\x74\x57\x07\xf9\x10\xec\x8b\xa5\x3a\xae\xca\x72\x11\xe6\x1e\x35\xb2\x5d\x58\xa8\x41\x78\x7e\x7b\xc7\xba\xc3\xc5\xaf\x58\x10\x28\x51\x08\xdf\x99\x15\x44\xc8\x9f\xc6\xe3\xf3\xe4\xc8\x05\xc2\xcb\x65\x13\x78\xa4\x79\x3e\x32\xa8\x18\x6e\xb2\x7d\x60\xc8\x4d\xff\x1b\x06\x62\xdf\x7b\x55\xab\x29\xb1\x81\xdf\xf3\xab\xe7\xe0\x39\x21\x82\x95\xcf\x5c\xb7\xf2\x69\x33\xff\x0b\xaa\x15\x9c\xc5\x51\x6b\xdb\xcb\xc7\x71\xcd\xb0\xd6\xc9\xc3\x60\x1d\x8d\x63\x33\x0d\x2f\x6f\x9b\x25\x45\xf0\xaf\xb6\x32\xec\xd9\x9e\x4b\x90\x52\x9c\x20\x5f\x7a\x9a\xc5\x42\xfa\x61\xb3\x28\xdd\xfe\x62\x36\xbc\xeb\x95\xda\xfa\x0f\x7b\x5b\xeb\x8b\xae\xd7\x4c\x24\x6c\x79\xb4\xb5\xaf\xdf\xe8\x00\xa1\xc1\x75\x64\xd7\xb1\xb1\x45\x5c\x46\xa0\x4f\xbe\xc2\x5c\x97\xc6\x71\xf4\xbc\xa5\xa9\xc2\x8b\x3a\x06\xca\xe7\x65\x0a\x96\x64\xa4\x10\x46\x5c\xe7\xdc\x1c\x54\x59\x46\x90\x7d\x96\xed\xf9\x66\x65\x2e\x1b\xb6\xd6\xda\xa3\xed\xd7\x08\x03\xd7\xc7\x73\xa7\x08\x96\x12\x41\xb6\x5a\xfe\xca\xe5\x4f\x53\x08\x02\xca\xd4\x56\xf6\x59\x97\xb0\xb3\x25\xd9\xef\x9e\x9c\x16\x1b\x96\x5c\x56\x3f\x29\xac\xf6\x88\xd0\x24\x57\xb4\x37\x8e\xb3\x84\xd0\x3f\x53\x5f\x3c\x7e\x0c\x57\xa5\x03\x67\x6f\x9b\x97\x57\x8e\xab\xd3\x47\xd2\x56\x2f\x31\x23\x04\xee\xce\xe9\x17\x3a\x34\x9b\x10\xea\x14\x2e\xb5\x76\x72\x3e\x21\xb3\xe8\x61\xf7\xbe\x06\x3e\x82\xb3\x4a\xcb\x50\x86\x4e\x1b\x33\x0e\xb5\xbc\xbf\x55\x0d\x46\x53\x69\x1c\xd6\x49\x77\x4c\xd4\x5e\x55\x97\xe3\x96\xbc\xff\xb4\xca\x4d\x42\x84\xdf\xdf\xd4\x4c\xf7\xae\x2e\x23\x28\x4f\xcf\xf6\x36\x59\x11\xc4\xc2\xed\x73\xb7\x57\xc5\xad\x95\x21\x6c\x1a\xc8\xbe\xc8\xc8\x1a\x13\x7c\x1c\x6e\xac\xd9\xd5\xff\x9d\x41\x7b\x63\xf7\x44\x83\x87\x5f\xd8\x30\xff\xb1\xf3\xa1\x16\xd7\x8f\x0c\x92\x58\xad\x46\x8b\x2a\x39\x09\xc6\x39\x77\x24\xb7\x0c\x2b\xb3\x61\xfe\x0a\xd9\x1b\x12\x29\x4f\xcb\xa1\x6a\x32\xe2\x5a\x3e\x4d\x84\xd0\xf6\x8e\xbb\xe3\x8c\x70\xe5\x7f\xc1\xa4\x2f\x3d\xa4\x2d\xab\x9c\x50\x46\xdf\x0a\x4f\x8f\x95\x17\x4f\xa9\xb0\xc6\x37\x90\xb0\x5c\x3e\x4a\xf1\xaf\x48\x14\x6b\xbc\xfc\xdf\x58\x33\xed\x52\x53\xa1\xd9\x2d\x42\xe9\x97\x9b\x4f\x1e\x56\xbe\x62\xa0\xba\xff\xe0\xfc\x2f\x33\x6d\x08\x36\xb3\x67\xa4\x4b\xda\xf3\x12\x1c\xc5\x1e\x3e\x09\x5b\xce\x45\xb8\xfa\x7c\x09\x7f\x91\xc0\x61\xc2\xb1\xa1\xe1\x87\x91\xf3\x9b\x59\xe3\x65\x3d\x1d\x1e\xad\xf7\x9e\x41\x88\x0d\x0e\xab\x58\xd0\x25\x46\xe0\x0e\xbb\x1f\xcf\x29\x60\x4e\xa8\x0b\xf0\x1a\x5a\x50\xd6\xcd\x60\xa1\xd3\x6a\xd1\x7a\xc3\xd5\x34\x8e\xca\x6f\xee\xf7\x2a\xdd\xe4\x09\xf7\xf3\x0b\xbf\xe7\x56\x9f\x26\x4c\x33\x2c\x3c\xf1\x67\x75\x02\x0b\x07\xb8\x5b\x5f\x54\xed\xbb\x4d\x38\x38\xe1\xe8\xfe\x9a\x82\x5e\x06\x25\x92\xf6\xc3\x7e\x29\x3c\x84\x98\x9e\xa7\xdc\xf7\x2e\xaa\x10\x8c\xce\x1b\x70\x1a\x2f\x3d\xc9\x1a\x2f\x3d\xd7\x95\xa4\x3b\xfa\x45\x09\x52\x8b\x4b\x55\xf9\xb6\xaa\x12\x38\xb7\xe9\x57\x05\x05\x7e\x64\xa0\xca\xb3\x43\x2d\x9b\x73\x36\xe1\xd4\xae\x6a\xae\xf7\x9d\x5d\x0c\x64\xc8\x6a\xc7\x53\x26\x96\xfe\x03\x77\x1b\x73\x33\x53\x6c\x02\x08\xa7\xb8\x57\x18\xf5\x9c\x09\x20\x2c\xb8\x6c\x6e\xc6\x5a\xef\xc3\x1a\x2f\x1f\x0c\x6f\xd8\x86\x2c\xdf\xca\x76\x4d\x1e\xf7\xb7\xab\x12\xbf\xaf\xb1\x21\x7c\xb5\xce\xfa\xe9\x0f\x43\x59\x18\x94\x18\x95\x3d\xf5\x79\x13\xe1\xa2\x63\x98\x83\x5d\xcf\x5c\xc2\xe4\xad\x42\x3d\xf1\xc6\xfd\xcc\x20\xcf\xf2\x1e\xed\xba\x65\x84\xc6\x8d\xce\x87\xef\x5d\x59\xcf\x82\x1c\xd7\x93\x23\x3b\x26\x94\x10\x1c\xf6\x24\xda\xfd\x43\x9e\x9c\xd2\xeb\x7f\x08\xcf\x7e\xcd\xdd\x15\x71\xa8\x1c\x87\x7c\x3b\x2a\x14\x7b\xf8\x08\x6e\x5e\x82\x15\xd3\x13\xd6\xb2\x21\x67\xfe\xf4\x30\xa7\x27\x9b\xd8\xca\x3e\x8b\x98\x7e\x6d\xc9\xbd\xff\x05\x3d\xdf\x8f\x8e\x3a\xd0\x23\x5c\x9e\x73\xfd\xfd\xb9\xca\x9f\x0c\x4c\x6d\x33\x2c\x36\xf2\x68\x10\xe4\x0f\xeb\xf1\x1f\xf9\xfc\x9e\x81\xbd\x91\x6b\xf1\x2d\xa1\x3d\xf4\x1f\xb8\xbe\xae\x28\xa6\x63\x6c\x5f\xfd\xbf\xb1\xce\x63\xf6\x1c\xd1\xa1\x6f\x0c\xcc\xb9\x95\x15\x5f\xd8\x1c\x22\xf0\xbc\x99\x5c\x6b\x70\x7e\x2a\x21\x49\xb1\x7c\xe0\xae\xc7\x27\x06\xc1\xa9\x71\xe1\xf1\x0a\x77\x08\x7f\x7d\xb9\xa4\x3d\x76\x1f\x64\xc3\x35\xf9\xa9\x7b\x37\x14\xf9\xb1\x95\x5e\xb1\x5e\x93\xe4\xfd\x76\x84\xb6\xe9\x9b\x9b\xfe\xdf\xbf\xcd\xd4\xec\xd5\xe3\xed\x95\xfc\x2f\x78\x7d\x32\x7b\xd3\xda\x9e\x43\x88\x4b\x3c\x35\xca\xcf\x93\x4b\xd0\x16\x34\xff\xf1\x6c\xb2\x0e\xe1\xa6\x3d\xf7\x32\xc9\x5a\x25\xc2\xad\xeb\x13\x0e\x79\x5d\x0d\x62\x41\x7c\xdf\x77\x39\xf3\x48\x07\xc2\xc1\x67\xa5\xaa\xab\x27\x26\x12\xac\x7d\x4f\xec\x71\x58\xf9\x9b\xc1\xe7\x1d\x16\x87\x36\x94\x0b\xd2\x38\xea\xd3\xb2\xab\xb3\x05\x8e\x11\x06\xcf\xdc\xe3\xa7\xdc\x44\x16\xe4\xb3\x4d\x36\x57\x59\x57\xb0\x70\x41\x76\x61\xfd\xdb\xa0\x34\x16\xaa\x35\x63\x8a\xa3\x8d\x72\x09\x79\x1a\x18\xca\x32\x77\x27\x44\x08\x4e\xce\x92\xce\x98\x49\xb8\x32\x51\x3c\x70\x72\x79\x30\x0b\x3e\x1a\xab\xef\xf9\x3a\xed\x24\xb0\x96\x8b\x92\xf2\x76\x17\x42\x4d\x45\x75\x85\x52\xe8\x27\x42\xe6\x2a\xaf\xf0\x59\x63\x18\x4c\xaa\xd0\x57\x10\xa9\x24\x08\x38\xd7\x5f\x9c\xe3\x94\xc8\x82\xcf\xed\xba\xd2\xf3\x6e\x52\x84\x0c\xdb\x01\x41\x65\xa9\x34\x16\x82\x7f\xae\x3a\xa6\x1b\xd3\x41\xc8\xf7\xfb\x11\x97\xa6\xdb\x49\xf8\xeb\x34\x77\x54\x52\xf5\x2e\x21\x2d\x7a\xe7\x41\x7b\xbf\x2e\x06\x73\xef\x0f\x69\xa7\x2e\x98\x40\xe3\x78\x73\x48\xcb\x47\xed\xe5\x08\x83\xd7\xf7\x76\x5b\xcb\xbe\xf0\x25\x2c\x9a\x34\x21\x48\xca\x25\x9b\x30\x3f\xf5\xd3\x53\xbf\xc2\x6b\x84\x35\xb9\x57\x5f\x4d\x1a\xda\x42\xc8\xb7\x8d\x4d\x7a\xf8\x30\x88\xf0\xd0\x4f\x80\xfb\xd3\x37\x09\xc2\xea\xaf\x25\x7b\xbf\xed\x9b\x44\x78\xf2\x54\x32\x78\xe6\x51\x7e\xc2\x99\xb9\x52\x0b\xaa\xcd\x25\x09\x93\xa6\x74\x96\x5d\xb1\x1f\x62\xa0\x6f\x10\x48\x21\x39\xb7\x09\x65\xfa\x53\x7e\x18\xbc\xb2\x23\x98\x08\x29\x95\x17\xa9\x4c\x27\xfc\x29\xed\xd7\x9b\xc8\x77\x9b\xb0\x52\xf9\xb9\xed\x23\x9b\x53\x84\x16\xcf\x69\x5c\xc9\xa1\xf1\x04\x07\x97\x80\x0a\x6e\xbf\x6c\x82\xbe\xed\xa9\x5c\xf3\x03\xd9\x84\x09\x3d\x89\xd9\xd1\x91\xa6\x84\xb8\x69\x3a\x56\x45\xfd\x8b\x09\x09\xf6\xef\xfb\x1e\x15\x69\x10\x22\xbe\x05\x75\x7f\x8a\xe8\x61\xf0\xa9\x71\xdd\x3e\xde\x9f\x25\x04\xa1\x48\x4e\x05\xcf\xe1\x6f\x0c\x32\xee\x94\xfd\x8c\x75\x8d\x63\xc1\x2b\x22\x7b\x97\x9a\xc6\x03\x42\xac\xac\x98\xd1\x86\x1f\x77\x09\x71\x6a\x5f\x2e\xca\xec\xbc\x46\x50\xbe\x26\xbe\x23\xe8\x1e\x07\xc1\x6a\xbd\xd2\x1e\x1b\xb9\x18\x16\x64\x1c\x43\x62\x7b\x9d\xf2\x09\x91\xa1\xf7\x67\xaa\x1d\x99\x4c\x30\xb8\x5b\xee\x16\xf6\xa4\x9c\x90\xc2\x9b\xff\xfb\x79\x73\x39\xc1\xe7\xd7\xb1\xd7\x0b\xda\x33\x08\x4d\xa9\xc3\x6e\x7f\xe2\xf2\x08\x86\x87\xfe\x30\xca\x37\x82\x09\xf3\xe5\x1e\xdf\x17\xfb\x5c\x45\xb0\xea\xef\x5d\x2f\x95\x96\x42\xe0\x3e\xd1\x1b\x20\x46\xa9\x2c\xc4\xf6\x28\xe6\x7b\x14\x45\x11\x0e\xc7\x27\xf7\xb7\xad\x6e\x66\x81\xb5\x29\x60\xeb\x7b\xa3\x4a\xc2\xfe\x79\x7b\x6b\x16\x6e\xbb\x4e\xe0\x6d\xdb\x54\x9d\x5c\xe3\x4e\x18\x5d\xf3\x6d\x4d\x89\x50\x22\x0b\xbd\xbf\x7b\x2c\x0f\x9c\xbe\x46\xb0\x10\xdd\x21\xe7\x34\x90\xc2\x82\xdd\xf1\xd3\x2f\x4e\x8d\x5e\x24\x2c\xd0\xf2\x31\x3f\xfb\xa1\x80\xb0\x33\xd1\x5a\xe2\x1f\xbe\xca\x3b\x7e\xd2\x13\x3f\x4a\x98\x20\x30\x94\x60\x7b\x83\x83\x20\xd7\xdf\x1a\x21\xe1\xb2\x8a\x0d\x93\x9d\x35\x94\xec\x78\xfb\x19\xcc\x69\xb0\xe8\x14\x99\x9b\x46\x78\x54\xdd\x33\x7d\xa6\x1c\x8b\xc1\xac\x8b\xf5\x57\x42\x3c\xea\x08\x1f\xfa\x72\xe2\x3f\x25\x2f\x25\x6c\x5a\xdf\x30\xd8\x9d\x5d\x45\x18\x12\x2b\x6d\xff\x07\xf5\x90\x88\xbc\xff\x13\x0f\x35\xce\x7c\xe1\xd0\x59\xf7\x5f\xe8\x3f\x55\x75\xf1\xe6\xd6\x74\xd6\xe0\xdc\xa0\x4b\x7f\xb6\x65\x11\x4e\xde\x4e\x4b\x17\xe4\xfe\xc4\xc0\x4a\xfe\xe3\xe2\xe7\x1f\x8c\x09\x05\x9d\x9a\xe9\x5b\x65\x37\xfd\x17\xb6\xda\xb9\xf2\xb4\xcf\x93\x20\x9c\xa2\x6b\xe7\x54\x02\x26\x10\x3e\x1f\xd1\x11\xc0\x6b\x0f\x36\xac\xac\xbd\x9a\x73\xfe\xab\x08\xa1\x71\x77\xec\x85\xf3\x8b\x37\x13\xba\x14\x0e\xf7\x9c\x50\x19\x64\xf0\xc4\x7e\xde\x09\x4e\xdb\x64\x02\x6f\xe0\xd9\xfe\x5e\x8e\x11\x06\xef\x3e\x7e\xc7\xbb\xd2\x4a\x42\xf2\x31\xf3\xb8\x48\x03\x19\x42\x98\x8b\xd5\x0f\x4d\x26\x87\x60\xea\xf0\x3e\x6e\xe3\x4c\x71\xc2\xdf\xf2\x2c\xe9\x2d\x9f\xb5\x08\x3c\x6a\xfb\x17\x3c\xcb\xee\x67\x10\x60\x19\x28\xb5\xaa\x60\x1a\xa1\xee\x91\xe1\xf1\x19\x79\xe7\x08\x6a\xbd\x92\x27\x66\x87\x2a\x13\x9a\x2b\x6f\x4e\x37\x8c\x1f\x64\xf0\x71\x8a\x29\x17\xff\x4b\x49\x82\xcc\xb1\x81\x6d\xb3\x27\x2c\x26\x6c\x71\xea\x50\x2e\x31\x38\xc6\x06\x2d\xaf\x5b\x97\x67\xd6\x5b\x10\xbe\x2b\x16\xcc\xcd\x09\x17\x24\x3c\x9b\xf1\x9b\x8f\xeb\x99\x34\x1b\xa2\x9e\x2e\x33\xce\xe2\xab\x67\xb0\x76\xb3\x94\x53\xae\x77\x3b\x83\xb2\x35\x06\xad\x8d\x12\xa2\x84\x0f\x22\x4d\x71\xd3\x12\x8e\x12\x5c\xe3\xaa\x7d\xbb\xd2\x42\x09\x39\x07\xf9\xcc\xb4\xdd\x4e\x13\x1e\xf0\x3a\xc7\x2e\xdf\xab\x4f\x30\x69\x8a\x58\x6c\x73\xa9\x9f\xc1\xd1\x23\xe2\x8e\xf3\x38\x8d\x09\x0a\xa3\xfb\x1f\xe4\xf0\x6b\xb0\xe1\x80\xc1\xe4\xb6\xd8\x44\x6e\x42\xee\xe6\xfa\xb2\xc7\x3a\x06\x84\x82\x8e\x89\xad\x81\x17\x6e\x10\x76\xc9\x3f\x17\x1a\xb4\x11\x26\x44\x66\x9c\xdf\xff\x30\x5c\x88\x0d\xb7\x02\xd5\xbe\x4f\x48\xfc\xc4\x20\x47\x52\x58\xcb\xee\x5e\x27\x03\x7d\x6d\x89\x29\x37\x16\xaf\x25\xcc\x97\x5d\xfa\xf7\xb9\x6b\x24\x1b\xbe\x72\xac\x4a\x77\x5d\x1d\x41\xd0\x5a\x9e\x25\x14\xb5\xe4\x22\xe1\xfa\xf0\xe4\xb7\x73\xdf\x9e\x26\xec\x37\xf6\x50\x3f\xba\x56\x92\xc0\x3d\xff\xbe\xd5\x85\x0a\x61\xc2\x09\xc1\x98\xb3\x9e\x85\x4b\xd8\xb0\x7b\xe0\xa8\xf2\xda\x2b\x4f\x19\xb8\x78\x8b\x3b\xfc\x68\xda\xc1\xc2\xba\xeb\x99\x8f\x64\x34\xfb\x19\x34\x6c\x5a\x5a\xd1\x18\x51\x44\x78\xd0\x61\xed\x3c\xe3\x52\x11\x61\xff\x92\x81\x84\xe6\xb1\xf2\xe1\x84\x00\x37\xef\xe3\x59\x84\xa9\xf4\xc2\x72\xaa\x95\x02\x41\xac\x62\xd3\xb6\x23\xc1\xb5\x04\x4a\x3d\xf2\x95\xf7\x29\x1f\x61\xe7\xc1\xd8\xd2\x15\x72\x2a\x84\x93\x3e\xee\x17\x8a\xd6\xab\x12\x9e\xe7\xd8\x17\x76\xed\x55\x24\x4c\x9f\xca\x44\xbc\x69\xe5\x23\x88\x7e\xdd\xb4\xd4\x50\x40\x83\xa0\xa9\xc9\xd7\x2a\xf5\xfe\x14\xe1\x4f\xa4\x6b\x99\xf6\xf9\xb5\x6c\x78\x37\xa1\x5f\xfa\x7a\xcc\x1b\x66\x1c\x19\x7f\x94\x67\xeb\xd9\xe8\xd0\x38\x62\xdc\x37\x0f\x15\xfc\x00\x83\xdb\x2b\x34\x1d\x6f\xde\x33\x24\xec\xe8\x29\xb7\x2c\x13\xd0\x26\x88\xc6\x24\xa9\x27\x7e\x96\x20\xac\x95\xad\xac\x0e\xf9\xa6\xc1\x86\x95\x1f\x0a\x62\xbf\x06\xce\x24\x2c\x9c\x3a\xef\xc7\x65\xc7\x0c\x42\x55\xdc\x47\xbb\xcb\x9c\x27\xff\x0b\x0b\x7a\x42\x6e\x16\x6d\x97\x1d\x5b\xd5\x2c\x23\x5f\xaf\x17\x21\xe4\x6c\xff\xae\x2d\x3e\xa2\x41\xe0\xa9\xbc\xc2\xad\xb6\x50\x86\x30\x35\x21\xf4\xd7\xe6\x7b\x9f\x18\x48\x6f\x53\xdd\x53\x17\x6d\x41\x88\x9e\x67\x23\xd5\x1f\xbf\x90\x0d\x4e\xb5\x36\x65\x9b\xc6\x7e\xe7\xcd\xb6\xb9\x7e\xbb\x1b\xc4\x4b\x18\xf5\x63\xb8\x2a\x9b\x26\x10\x92\x8e\x9b\x34\xed\xed\xb3\x27\x08\x6c\x2e\x14\x8d\x8a\x9b\x42\x78\xd2\xe7\xfe\xc4\x7b\x5e\x1e\xe1\x6f\xc4\xa3\x4a\x03\x8e\x02\x42\x92\x94\x78\x60\xc6\xf3\x51\x06\x5b\x66\x0a\x05\x67\xdc\x9d\x4b\x70\xe4\x1a\x9a\xa3\xe9\x24\x45\x28\x14\xdc\x5a\xe5\xde\x74\x92\x60\xb5\x3a\x7e\x67\x8d\x10\x8b\x10\xec\xfb\x97\x7f\x66\xea\x79\xc2\x92\xb6\x3b\x2a\xbd\x77\x7e\x32\xd8\x77\x7e\xfb\x36\x52\x30\x25\x2c\xb0\xd4\x5a\xb4\xf7\xf0\x54\x82\x99\xc1\x2c\xb7\xf8\xda\x11\x06\x8f\x55\xac\x66\x3a\x6e\xb2\x22\x9c\x7a\xaa\xd0\xb7\xc6\x85\x97\x10\xe2\x58\x1a\xb8\xc7\x72\x2f\x0b\xab\x1a\xae\x8e\xca\x6d\x54\x26\xac\x3c\xcb\x7b\xc1\xc3\x33\x8b\xe0\x5a\xf8\xf3\x72\x5e\x7c\x28\x41\xbf\x82\x79\x13\x73\x6f\x3a\xe1\xee\x4f\x0f\x96\x68\x91\x3d\x1b\x96\x5d\xb7\x58\xd8\xf4\x93\x8f\xf0\xcb\xb1\x31\x73\x40\x5e\x9e\x20\x2c\xbe\xa6\xb8\xfb\xe4\x3a\x42\x75\xc4\x57\x23\x91\xbb\x61\x04\x97\x9f\x5f\x82\x33\x94\x67\x13\xf4\xd4\x2a\xf3\x7a\xea\x65\x09\x7a\x6b\xa6\x65\x5f\xe5\xe7\x22\xc8\xb9\xe9\xb6\xc6\xee\x90\x22\x6c\xf9\x2c\x54\xb9\x8f\x19\xbb\xc6\x35\x4c\x59\x61\x0d\x17\xa1\xc5\x41\xa0\xe8\xd7\x04\x6b\x82\x6c\x8f\xdd\xa9\xc0\x35\x0b\x09\x0f\x52\x55\x2b\x4f\xde\x51\x27\x2c\x68\x37\xfe\x6d\xd4\x24\x49\x68\x3e\xd9\xd3\x56\xea\x12\xcb\x06\xfd\xca\xcb\x0a\x16\x0f\xbc\x08\x9f\x3b\xd3\xd0\x3d\x34\x81\x70\xfa\x90\x4c\xfc\x9c\xed\xaf\x19\xf0\x3e\x6b\x3c\x5c\x93\xbe\x86\xc0\x4b\x15\x86\x1d\x2e\x0c\x1b\x06\x1a\x0e\xc8\x4b\xbd\x8d\x20\x9c\x69\x58\x35\x33\x7a\xb6\x3b\x5b\xf9\xb8\x2b\xb8\xf4\xa9\xa1\x1f\xe1\xe5\x8b\xa0\xd7\x72\x29\xdf\x18\xfc\xaa\xad\x51\x8c\x19\xb2\x22\xac\x7f\x72\x5d\xc1\xfa\x9d\x2a\x41\x49\xd7\x5c\xf5\x5c\x02\x37\x61\x0b\x87\x84\x8e\x93\x8e\x3f\x0b\xe1\xba\xd3\x44\xea\x16\xa8\x11\x0a\x04\x9b\xd5\xb5\x47\x6b\x19\xa0\x4e\xea\xde\xa9\xce\x70\x16\x5e\xb9\xf0\x9d\x08\x09\x1e\x62\xc6\xd1\xb1\xf1\xd1\xcd\xfb\x9f\x7f\x30\x98\xcb\xc8\x64\xd5\x71\x65\xb0\x70\x42\x2e\x7f\xf1\x21\x5b\x2d\x82\x31\xb8\x62\x2b\xd7\x68\x13\xae\xb9\x38\x53\xb8\x89\x09\xe1\x88\xd5\xe4\x85\x6a\xfb\x8e\x10\xe4\xaa\x5d\xfe\xea\x76\xd9\x13\x1c\x87\x03\x62\x15\xcf\x87\xb2\x06\xb7\x0c\x98\x3c\x94\x9a\x42\x28\x2e\xb5\x37\xeb\xe5\x59\x48\xa8\x53\xdb\xa7\xff\x4e\xd1\x8a\x60\x2e\x75\x7d\xb1\x6e\xd4\x72\x42\xfb\x3a\xf9\x3b\xb1\xf7\x74\x09\x55\x44\x8f\xb6\x7b\x96\x11\x8a\x9a\x2e\xe7\xba\x7c\x13\x27\x7c\x6c\xe9\xb1\xea\x7a\x3e\xcc\x20\x8e\x63\xc5\xc8\x20\x93\x4f\x78\xd2\x74\xce\x74\x68\x0c\x2a\x0f\x4d\x2a\x2c\x4b\xce\xb1\x41\x64\x7e\x8d\x5d\xdb\x9d\x61\x06\x89\x2b\x72\x2d\x1e\x12\x8b\xb0\x76\x70\x53\x44\xfc\xd0\x55\x82\x87\xd2\xf7\x3a\x23\x83\xbb\x2c\x9c\xd0\x39\xcd\x73\xd0\x7a\x98\x81\xa3\xfd\x45\xfe\x5d\x45\xc2\x04\xd1\xbe\xac\xc5\x93\xa6\x04\xb3\x10\xf4\x4b\xdf\xdc\x75\xb3\x07\x61\x92\xd3\x6a\xde\xbd\xde\x3c\x84\xb6\xca\x3e\xfb\x1a\xe5\xdf\xcc\x38\x0a\xc3\x4e\xb6\x64\xfd\x88\x24\x5c\x54\x3d\xa3\xa3\x42\x92\x84\xc0\xa7\x41\x0e\x96\x2b\xc4\xd8\xb0\x8f\x52\x95\x12\xfb\xac\x09\x65\xba\x2a\xe2\x47\xcf\x3e\x61\xf0\xf4\x99\xde\xed\xc2\xc6\x2d\x04\xf3\x2f\xa6\x0b\x1e\xdf\x9a\x4b\x98\x29\xa7\x78\x4a\xcc\x8f\x93\x10\x1d\xf6\xd1\x6d\x64\x97\x29\x41\x64\x6b\xed\xd3\x5e\x96\x2e\x61\x88\x63\x8a\xe6\xb3\xf7\x0e\x84\x5f\xa9\x22\x7b\xc3\xee\x2f\x20\x24\x6b\xf4\xd6\x6d\x32\x52\x25\xc4\x99\x35\x05\x3d\x1d\x6c\x62\xc0\x77\x39\xaf\xd1\x5d\xfd\x3b\x83\x52\xeb\xf2\x36\xec\x32\x27\x5c\x0b\x3f\x5e\x11\xff\xa3\x84\xc1\xc7\xe3\x3f\x38\x3e\x4e\x14\xa4\x71\x9c\xed\xb3\x31\xda\x70\xbc\x8b\x01\xe7\x62\xbb\x87\x57\x37\x70\x10\x6c\x7c\x2d\x2f\xe8\x0e\x4f\x27\x78\x1f\x95\x98\xbf\xfd\xe0\x4a\x36\x8c\x38\x5b\x99\x18\x9c\xe7\x26\xf4\x0f\xdb\xd8\xa6\x9e\x08\x27\x48\x4f\x52\x0f\x66\x89\x87\x11\x9c\x8a\xa5\x76\x52\x45\x23\x0b\xd2\xdd\x97\xe8\x42\xae\x2d\x61\x52\xf8\x84\x91\x8c\xe6\x10\x16\x84\xf4\x54\x8c\x3e\x08\x9b\x11\xe4\x12\xa6\x6e\x17\x78\x52\xc3\x40\xec\x55\xf8\x76\xfd\xf2\x09\x84\xa8\xdd\x8a\x1c\x9b\xb9\x38\x08\x81\x89\x41\x5e\x27\xeb\x3e\x33\xb0\x97\x51\x12\x34\x3e\xc5\x47\xc8\x97\x49\xad\xec\x73\x9e\x48\xf0\x5b\xb8\xf4\x9b\xe2\xd2\xb1\x67\x6e\xb7\xe1\xd6\x55\xaf\xbe\x32\xa8\xd4\x97\x08\x36\x9c\xfb\x92\x81\x2b\x79\x77\x2e\xdb\x11\x40\x98\x70\xaf\x9b\x87\xa7\x61\x09\xc1\x37\xcc\x55\x64\xdf\xb1\x61\x06\x7f\x0b\x86\x96\x47\x86\x5c\xa3\xff\x40\x31\xe7\x13\xb5\x50\xd3\x1d\x04\xfd\xbb\xea\x42\xa7\x94\x3d\xff\x0b\xc7\x96\x19\x1d\x56\x7b\x19\x41\x78\xad\x9f\x29\x9c\xdf\x14\x49\x48\xd8\x92\xfe\xa8\x35\x27\x92\x60\xb2\xf6\x7b\xb4\x97\x75\x10\x41\x73\x72\x94\xf3\x9d\x90\x73\x84\xee\x22\xd7\xdc\xf9\x47\x6b\x08\xcd\xce\xf5\x8f\xcf\x31\x3f\x19\xdc\x48\xbb\xba\x7b\xd2\x9d\xb9\x04\x93\x17\xe7\xfc\xf7\x38\xe9\x11\x02\xef\x0f\x35\x75\x76\x84\x13\x3c\x14\xbf\xee\x1a\x9c\x1d\x4c\x98\x26\xcd\x39\xf7\xd1\x8b\x20\xb6\xf2\x6c\x79\xf2\xd5\x57\x7f\x1c\x08\x1f\xaf\x6c\x7b\x66\x3e\x27\x9b\x30\x94\x8b\x29\xd3\xf3\x5d\x08\x0e\x5b\xa3\xb9\x0c\x64\x34\x09\x5f\xba\x35\x52\xdb\x25\x43\x08\x72\x5e\x5f\x64\x83\xec\x5e\x13\x0a\x45\x87\x2b\xbd\xaf\xbf\x22\xec\x2e\x6d\x52\xfe\xec\x59\x4b\xd8\x93\x26\x1f\x3a\xfb\xe5\x46\xc2\x4e\x95\x11\x93\xe6\x86\x93\x04\x0b\x57\xa3\xaa\xaf\x29\xec\xe0\x5d\xa3\x3c\x4f\x5c\x23\x94\x0d\x7f\x22\xfa\x2e\xbd\xf7\x0c\x25\x6c\xdc\x7b\x55\x76\xa2\x5b\x35\x61\xff\xc7\x13\xce\x5a\x1f\xb3\x09\x42\x09\x9a\xe1\x41\x17\x1b\x18\x64\xc7\xdd\x74\xf0\x1c\x9c\x4a\xe3\x78\xc5\x51\xb4\x4b\xe3\x8d\x21\x61\xc6\x8c\xce\x8c\x3b\x8f\x1c\x08\x79\x0a\xc5\x77\x58\x6b\x36\x12\xdc\x92\x37\x1e\xd7\x38\x57\x5d\x8e\xdc\xa6\x0c\x93\x2b\xe6\xa2\x34\x8e\x76\x7d\xb9\xfa\x3a\x4d\x15\xc2\x9f\x5f\xa1\xe9\xe2\xd5\xbb\x58\x08\x76\x0d\x08\x09\x58\x74\x8e\x05\xbe\xea\xce\x52\xc7\x44\x7f\x42\xa1\xed\x46\xbb\xfc\x03\xae\x04\x5d\xf8\x78\x3d\x9a\xbd\x92\x70\xf1\xda\xa0\x9b\x96\xe3\x04\xc2\xcd\xb4\x43\x45\x49\xf9\x77\x09\x35\xda\xd7\x23\x34\xa6\x1e\x60\xc1\x2e\x9f\xff\xee\xcd\x53\x36\x04\x1d\xb3\x72\x2e\xde\x2f\x3c\x84\xc9\x27\xaa\x2d\x63\x43\x85\x09\x8d\x43\x6d\x67\xab\xab\xe5\x09\x1b\xf2\x14\x15\x1c\x1f\xfe\x64\xd0\x2f\xca\xa9\x56\xfb\xcb\x9e\x70\x7e\x91\x5e\xdf\xe6\xb1\xcf\x6a\x75\x79\xe2\xe0\x79\xc5\xe3\x84\x5b\x19\x02\x71\x2a\x9e\x52\x04\xd5\xa5\x21\x1b\xd4\x79\xf3\x08\x56\xa5\x2b\x57\x1c\xeb\xbc\x44\x58\xbe\xae\x4b\xf1\xb3\xb5\x0f\x21\xbe\xaa\xab\xe5\xf8\xca\xfb\x84\xc1\x6a\x91\xdd\x9c\xea\xa7\x08\xfc\x39\xb1\x61\x57\x16\x87\x12\x24\x66\x24\x29\xb6\x8b\x8b\x11\x1a\x0d\xd6\x98\x35\x35\xfc\x61\xb0\xfd\x48\xec\x81\x4f\x2b\x67\x13\x84\xa7\x6a\x2a\x0f\x66\xae\x23\x8c\x72\x24\x47\xad\xd3\xb5\x25\x4c\x6c\xc8\xdc\xf0\xb7\xdd\x9c\x10\xb6\x4b\x8a\xe7\x89\xd1\x0d\x02\x8e\x67\x89\xb2\xbe\x6a\x11\x6e\x3f\x76\x5c\x57\xe2\x31\x87\xb0\xb8\x92\xbf\xc4\x74\x70\x1e\x1b\xce\x48\xdd\xcb\xac\x77\x17\x25\x70\x56\x7c\xbf\x99\xf0\xc6\x86\x0d\x7d\x17\x7f\x48\xc2\x71\x1b\x0b\xe1\xe9\xa9\x8f\x6a\x3e\xc8\x10\x3a\x6b\x9e\x30\x1d\x17\x57\x11\xee\xb9\x0d\x87\x74\xdd\x18\x62\x60\x21\x77\x2b\x36\xe3\x89\x10\x8d\x43\xe6\xd1\xd7\x88\x07\xca\x52\x84\x15\x6e\x8b\xe6\xed\xe2\x94\x27\xe8\x7e\x39\xfc\x61\xf4\xc7\x72\xc2\xb3\x82\xfc\x27\xa6\xf6\x82\x84\xa9\x2f\x7a\xce\xeb\x1a\xcf\xa6\xc1\xd1\xae\x03\x97\x5e\xaf\x1c\x0f\x88\x3f\xcd\xe8\xd6\xe9\xbd\x67\x50\x7c\x7a\xd7\xe3\xaa\x3f\xd9\x84\xa5\xcd\xc9\xe5\x90\x5c\x40\x98\x75\xc4\x2d\x28\x40\x9f\x87\xb0\x2a\x64\x5f\x70\x4b\xb0\x29\x21\xe4\xc4\x4e\xf3\x9d\xb7\xb5\x09\x2d\x9f\x8f\x3b\x4f\x58\x31\xc4\x40\xaf\x30\xf5\x87\xd3\x06\x5e\x42\xae\xe0\x9a\x29\xfd\x75\x0f\x18\xd8\x94\xbc\x7e\x7f\xb8\x63\x3f\x8d\xc3\xae\x5e\x33\xbc\x55\x55\x81\x20\xa8\xff\xc8\x62\x74\xda\x0d\x82\x59\x69\xb0\xef\xb3\xc0\x6f\x0c\x66\x0d\xc7\xa7\x45\xe5\xcc\x27\xec\x7e\xd1\x21\x14\x17\xea\x4b\xf0\x75\xbe\x5f\xc3\xb1\x5e\x9d\xa0\x7d\xa6\x72\x83\xc4\xd1\x6c\x42\xa9\x3a\xff\xd3\xbe\x93\xdf\x19\xb8\x2c\xf7\x55\xcd\x10\x12\x21\x88\xbc\xfd\x52\x3c\x53\xfe\x03\x83\x45\xc3\x4b\x37\x68\x71\xbb\x11\x5e\xc2\x6c\xc7\xd9\xee\x0d\x84\x87\x65\x1d\x94\xa2\x51\x48\x50\xfd\xb1\x3d\x80\x74\x9e\x10\x14\x9b\x56\x47\x4b\x3c\x2c\x27\xb4\xdd\x68\x51\xe2\xee\xf1\x26\x1c\xf5\x93\xff\x53\x19\x9c\x4a\xd8\x33\x75\x6b\x93\x92\xca\x0e\x36\xf8\xed\xe5\x6f\x4a\x5f\xc5\x49\xd8\x4b\x1c\x2a\x1b\xae\x76\x31\xf8\x9a\xe0\xf5\x88\x43\x7e\x80\x0d\x7a\xf9\xc1\x75\x69\x0e\x59\x0c\xb8\x3f\x8d\x14\xee\x0a\xd7\x24\x3c\x99\xdb\xda\xb6\xe7\xa7\x10\xe1\xf3\x66\x4e\x52\xac\x54\x23\x94\x0c\x79\x85\xef\x1e\x56\x26\x44\xcb\xb7\xd6\x36\xeb\x1f\x27\x84\x35\x7d\x3c\x21\xe1\x3e\xc0\x60\x59\x7a\xef\x2f\x23\x3e\x0d\x82\xda\xbd\xe9\x87\x8c\x25\x26\x12\x0a\x2e\xcc\x54\xb7\xda\xbb\x80\x0d\x2b\x32\xe6\xc8\x07\xe5\xf6\x31\xd8\x6a\x5e\x9d\xb3\xe6\xba\x04\xa1\xda\x6a\xc5\xbe\x49\x7a\x19\xe5\x30\x0b\x5b\x73\xc1\xf9\xc9\x4d\x1a\xc7\x8f\xf6\x4d\xab\xbd\x6a\xbd\x08\x66\x9f\x26\x68\x4d\x7b\x2f\x4d\xc8\x28\x4b\x6e\xe0\x48\x92\x20\xfc\xd5\x69\x7d\x59\xf6\x47\x94\x50\x28\x7c\xb9\x7d\x48\xfa\x25\x83\x08\x9e\x79\xaa\x01\x5e\xfa\x84\x2e\x3b\x8f\x6a\x1e\x96\x05\x21\xd4\x7d\xc9\x9e\xba\x5d\x32\x04\xab\x15\x9b\x04\x9f\x6b\x5e\x21\xf4\x7b\xbf\x90\xf6\x4c\x58\x48\x70\xdc\xa7\x92\xa4\x20\xdc\xca\xe0\xfc\x24\xaf\xcb\x51\x13\x26\x12\x16\x98\xdd\x68\x7d\x7a\x5a\x82\xa0\xd9\xe7\x1d\x10\x94\xc2\x41\x28\x2d\x4d\x39\xb2\xeb\x28\x2f\x81\x89\xf1\xe1\xd0\x51\xd0\x22\x3c\x49\x0d\x5e\x9a\x59\xee\x4c\x88\x31\x76\x64\x7e\x25\xfc\x60\x90\xec\x5e\x70\xab\x8b\xa7\x85\x41\x50\x92\xc7\xa6\xa9\x79\x09\x34\x8e\x2c\x99\xdd\x5f\x86\x44\xbf\x30\x10\xaa\xbc\x1d\x9d\x7d\x92\x93\xb0\xca\x72\x49\xee\x2b\x6d\x1b\x82\xa5\xe1\xe7\x58\xce\x21\x13\xc2\xda\x5b\xfd\xca\x9d\x0f\x03\x08\x6b\x79\xa7\x45\xfe\x39\x17\x40\x78\xa8\x92\x97\xf6\x75\xf9\x5b\x06\x6b\xa6\x06\x65\xe7\xec\xd4\x22\x6c\x5b\x71\xa6\xbf\x65\xdf\x0c\xc2\x0d\xf5\x59\x47\x92\xaf\x15\x12\x12\x75\x93\x04\x3f\x5e\xb8\x45\x38\xee\x26\x65\xb9\xf8\x76\x30\x1b\xbc\xcb\x2b\x9f\x29\xdb\x65\x11\x2c\x4d\xb6\x1d\x1f\x1c\x28\x61\x41\x7a\xcb\x04\x97\x90\x75\x2f\x08\x41\xb7\x4f\x74\xb1\xb8\x06\x19\xdc\x7c\xb2\x38\xe3\xe3\x29\x2e\x82\xc3\xc9\x92\xcc\x08\x97\x44\x36\x88\xce\xfd\x92\x52\xba\x38\x8b\x0d\x4a\x47\xd2\x84\xc2\x93\xcf\xb0\x95\x80\x89\x92\x7c\x71\x67\x14\x09\x92\x35\x1f\xeb\x6e\x2b\x81\xc1\x62\xd3\xdd\xe2\x12\xab\xa7\xd0\x38\x7a\x2f\x96\x46\xfa\x7d\x7e\x51\x8e\xef\xb3\x6d\xe7\xbb\x8a\xec\x67\xe1\xbe\x86\xde\xfc\x26\xf7\x12\xc2\x9f\x73\xfb\xbb\x42\x4c\x8b\x58\x78\x7b\xe5\x8c\xf3\x8b\xb1\xd2\xb1\x69\xd5\x22\x8d\x67\x39\x04\xa1\xf8\xdf\xd1\x0f\xe3\xd9\x71\xda\x7d\xae\x1d\xc7\xc3\xff\x1c\xf9\x7e\xdd\xcf\x2d\xb4\x34\x90\xf0\xcd\x68\x35\xfc\xdf\x9d\x62\x61\xff\xbb\xdf\xd3\x6b\xdd\x1d\xd8\x46\xe7\xbc\x0c\x02\x9b\x7d\xbc\x08\xbb\x38\x84\x57\xbe\xb0\x96\x24\x48\x58\xce\x4d\x7e\xcd\x4c\x26\x94\x8a\x7d\x88\xcb\xb1\x95\x23\x54\x9f\xe7\x4a\x4a\x1c\x52\x21\xb8\x9b\xdc\x5a\xbe\x57\x3c\x9d\x70\x60\x92\x84\x8f\xfd\x66\x49\xc2\xb9\x77\xa6\xb6\x36\x92\x8f\x09\xae\xc7\xfe\x0a\x8e\x56\x55\x10\xa2\x2c\x59\x0b\x6d\x5f\x56\x12\xf6\xd8\xd9\x47\x54\xbc\x61\x11\x8e\x15\xfe\xac\xe6\xb8\x72\x9d\xe0\x13\xab\xab\x2e\xd1\x43\x84\x05\xcb\x5d\xdf\xfe\xd9\x33\x8b\xd0\xa0\xdf\xdd\xff\x26\x8a\x83\x30\xd5\x39\xd3\xea\xf8\x09\x63\xc2\x9a\x8d\xa3\xc3\xcd\x91\x89\x2c\xa4\xae\xf1\xed\x4d\x87\x21\x21\xb9\xd0\x57\x6c\xb8\xe6\x28\x21\x6e\x61\xd6\x99\x34\x35\x3b\x36\x58\x0c\x36\xda\x70\x7a\xb7\x31\xe3\xe8\x5d\xae\xf2\xfa\xb0\x5a\x17\x83\xc9\x37\xac\xac\x59\xa7\x45\x09\xfc\x87\x36\xee\x8d\x4f\x92\x26\x08\xd7\x7d\x8b\xce\xcd\x18\x60\x30\xd7\xa9\x55\xde\xe3\x65\x0a\xa1\xb9\x7e\x63\x57\x6b\xef\x7e\x42\xd9\xc5\x75\x66\x16\xdf\x05\x08\x67\x05\x2c\x7b\x92\xbb\x55\x08\x43\x13\x9d\x23\x46\x8b\x7e\x33\xb8\xe3\xb0\x79\x56\xac\xac\x01\xc1\x81\xe3\xda\xf0\xc8\x85\x2a\x06\x2f\xbf\xa6\xd6\x54\x37\xf1\x10\x66\x3c\xbb\x3c\xb1\xef\x79\x03\x61\xad\xbe\x6f\xf3\xa5\xa0\x2c\xc2\xd2\xb4\x96\x25\xff\xca\xe4\xde\x1f\xfc\xfe\x47\x02\x08\x0d\x8d\x37\x73\x39\x3e\xc7\x13\x6e\x7c\x78\xf6\x21\xee\x44\x00\x41\x5e\x45\x94\xf7\xc8\xb7\x45\x84\xe9\x9b\x38\x6d\x26\x3a\x4d\x25\x38\xd6\xde\x48\x52\xdb\x2f\x43\x50\x3d\x19\x55\xac\x53\x69\x46\xc8\x8d\x0e\xf8\x32\xb8\x58\x90\x0d\x46\x3a\xdd\x41\x4f\xfa\xde\x94\x63\xb3\xe9\xd7\xac\x4b\x87\x34\x09\x2a\x32\xba\x35\x97\x8f\x38\x13\xf0\x3b\x6d\xb4\xc3\x7c\x33\x61\x9d\xd3\xdf\x79\x07\x43\x65\x08\xdc\x59\xf6\x95\x8f\x44\xe5\x09\xe5\x13\x2d\xdb\x47\xec\x74\x08\xb7\x39\xf8\x6f\xbf\x8a\x6e\x67\x30\x69\x8d\xd7\xc1\x10\xd1\x2e\x36\x54\xe5\xf8\xad\x7b\x36\x7d\x06\x41\x5f\xca\xfe\x1b\xc3\xb7\x8c\x90\x36\x59\xa1\xc7\xb6\x4e\x87\xa0\xb0\xee\x63\xfc\x63\xd5\x85\x04\x8f\x45\xeb\x82\x93\x15\xf9\x08\x6b\x4a\xe6\x9f\x59\x66\xc3\x43\x30\x2e\x2c\x78\xce\xf3\xe6\x3e\xe1\xfa\x89\x20\x96\xb3\x6f\x07\x83\x4d\xcb\x56\x72\xc9\x99\x69\xd3\x38\xe4\xee\x4b\x9f\x5a\xb8\xae\x91\xc1\x87\x24\xbb\x07\x5b\xe2\x67\x13\xce\x95\x6f\xbf\x7b\x57\x51\x93\x30\x25\xcf\xdf\xe0\x8d\x8a\x30\xa1\x7e\xa1\xfb\x8e\xe4\x67\x17\xd8\xe0\xeb\x76\xec\x5e\x51\xe2\x52\xc2\x32\x65\xc9\x9a\xe0\x42\x6d\x82\x96\x81\x49\x18\x73\x66\x15\x41\x7a\xcf\xa5\xdb\x33\x2e\x0c\x32\xc8\x3f\x58\x68\xe1\x39\x29\x85\x20\xf4\xf1\x62\xcb\xcd\xef\xd6\x04\xc9\xe6\x98\x36\xff\x03\xd6\x84\x3f\x85\x1f\x86\x35\x8d\x84\x08\x6d\x8a\x42\x45\xa1\xeb\x17\x12\x16\xce\x38\xbc\x4a\x20\x70\x05\xe1\x4c\xb8\xc7\x23\xaf\xc2\x21\x06\x2d\xac\xd9\x73\xbf\x1c\x8e\x21\x34\x6a\x7f\xef\x39\x75\xe5\x36\xc1\xb3\xb9\xf1\xd6\x26\x81\x58\xc2\xa0\x6a\xa9\xad\xca\xf0\x72\x82\xd5\xc7\xac\xce\xef\xd6\x42\x84\xfb\x61\x1e\x8e\x2d\x69\x46\x84\x4d\x87\x3d\xa3\xd7\x28\xe9\x11\xae\x76\xfd\xc9\x16\x1a\x2c\x23\xac\x55\x48\xff\x1e\xfc\xb7\x83\x90\xa3\x32\x49\x39\x7e\x4b\x07\x21\xf1\xad\x85\x24\x36\x76\x10\x3e\xba\x26\x18\x1d\x6b\xa9\x22\xdc\x91\xba\x59\xe6\xb7\xa6\x81\x10\x9f\x7c\x65\xdb\xae\xf0\x1e\x06\xd9\xb5\x61\x95\x1e\x56\x1a\x04\x99\xa3\x2b\x0f\x09\x1e\x89\x26\x2c\x91\x58\x62\x20\xa0\x34\xc2\x40\x42\x67\x05\x6b\x76\xb0\x24\xa1\x63\x42\xf8\x88\x7b\xc7\x37\x06\xbf\xbd\xda\xae\x3d\x9d\x72\x9d\x90\xd1\x5e\xcc\xda\xce\x93\x4b\xb8\xda\x3f\xa9\x6f\xd9\xeb\xdb\x2c\x1c\x1a\x70\x59\x72\x60\x6a\x09\x21\x4e\x2b\xea\x6f\xe1\x2e\x1b\x42\x75\x80\x92\xd9\xa8\x59\x07\x41\x3c\xa9\xac\x52\xec\xc1\x2f\xc2\xf9\x29\x7c\x6e\x65\xb7\x9a\x09\x2d\x5f\x57\x17\xbf\xad\x4e\x22\xac\x53\x91\xb0\x8b\x7c\x75\x86\x90\xf3\xab\xcf\x34\x61\x4f\x3e\x41\x5b\xc4\x60\x71\xcc\x33\x16\x1b\x26\x35\x86\x47\x46\x8f\xe1\xb2\x63\x49\x60\xd4\x18\x22\xa5\xfd\x5b\x0e\x5e\xf5\xfa\x5f\xd1\x18\xf5\x91\xeb\x6e\x9c\x23\x41\x21\xcd\xb9\xf0\xad\x94\x31\x61\xa8\xd6\xe3\xfe\xa4\xd2\x2b\x84\x72\x5f\xc5\x6f\x4b\x9a\x2b\x09\x27\x79\x97\xca\x2e\x6d\x6e\x20\xf4\x3e\x12\x30\xe4\x9f\xbd\x9b\x0d\x4b\xf2\x4f\xe8\xf3\xe7\x08\x10\x1a\x54\x0b\x45\x14\x84\x12\x09\x93\x26\xad\xdf\xb7\x7c\xb1\x0f\x0b\x2a\x16\xfd\x27\x8c\x1f\xf1\x11\xf8\xdc\xc2\x14\x1c\xf9\x2c\x09\x0a\x09\xda\x2b\x92\x12\x1a\x08\x8b\xa4\xd6\xfd\x9e\x91\x30\x76\xda\xb4\xad\x10\x19\x39\x55\x49\xd8\x9f\x35\x59\x5e\x5f\x24\x9f\xb0\x4d\xd6\xea\xce\xb4\xb1\x91\x2b\x26\xe6\xe6\x85\x9e\x26\xdc\xdc\x91\x6e\xff\x52\x2b\x9d\xe0\xc0\x30\x51\x3c\xbd\xb7\x59\xb8\x97\x03\x95\xad\xaa\x95\x04\xeb\xc2\x25\xd3\xe3\x77\x56\x11\xa6\xae\x3e\xa4\xac\x64\x64\x4b\xe0\x5e\x7d\xf5\x8f\x9f\x67\x31\xe1\x8b\xd5\xe1\x48\xff\xd2\x27\x84\xe8\x9f\x77\xb3\x2f\xbf\x89\x67\xc3\x1f\xa3\x57\xb5\xff\xb0\xe8\xd1\xad\xd3\xce\x6d\x09\x0c\x8c\x0f\xc8\xbc\x93\xeb\xec\x63\x70\x24\x4a\x43\xec\xa2\xd7\x5e\xfa\x0f\xfc\x99\x2a\xbc\xb9\xec\xb3\x06\x1b\x34\x7e\xb9\xc8\xff\xbb\x3f\x97\xdd\x1e\x0a\xbd\x93\xb8\x4b\x78\xf3\xfc\x6a\xdc\xce\x63\x55\x04\x8b\xa2\xf4\x1b\x4f\xe3\xaa\xd8\x46\xff\x83\xff\x79\x5f\xc5\x4e\xdd\x62\x99\x55\xb2\x84\xe6\x93\xf7\x76\xc9\x8c\x1d\x5f\xe0\xee\xb8\x20\x91\x2f\xcf\x06\x2e\xde\x8e\x87\xad\x89\xe2\x04\x25\xe3\x04\x99\x19\x75\x15\x84\xa2\x99\x19\xea\x35\xdd\x2b\x08\xa7\x77\x6d\xba\x3e\x57\x30\x9b\x30\xc1\xfa\x8d\xf8\x85\x3e\x47\x82\xf6\xa4\x1b\x6b\xf4\xf3\x93\x09\xea\x73\x39\xef\x2c\xf1\x4e\x24\x9c\x0c\x48\x90\x71\xb3\x48\x21\x58\xbf\x8a\x9f\xef\x3e\x86\xf6\x88\x33\x52\xff\xe0\x25\xbe\xa4\xeb\x1f\x86\xff\xb4\xdb\xba\x8e\x61\x75\x68\xf7\xa4\xa8\x48\x37\x42\x9c\x83\xed\x75\x9b\x64\x37\xc2\x77\xe6\x45\xff\x85\xc8\xff\x44\x9f\x87\xdf\x79\x83\x28\x7b\xc2\x3c\x87\x2f\xf6\xd3\x38\xe4\x09\x83\xd7\x9a\x32\x8d\x0c\xb5\x09\x45\xbb\x77\x25\x9e\x5b\x12\xc4\x86\x33\xab\x96\x2f\x12\x48\x74\x27\x48\xec\x76\x94\xac\xdf\x7e\x9f\x90\x22\x5e\xf6\xe8\xfb\xab\x3c\x42\x6d\x94\x5e\xb4\xea\xbd\x1c\x82\x5b\xb4\x4a\x9a\x47\x73\x0e\x41\x4a\x49\x62\xf2\xd0\xcf\x24\x16\x2a\xb8\x57\xef\x9a\x56\x5c\xc6\xc2\x9f\xc8\x85\x5d\xa7\x95\x63\x58\x68\x1a\x8a\x2c\xf5\x7e\x9d\x43\x38\xdc\x59\x7a\x4c\xd1\x23\x93\x85\x81\xcb\xeb\x85\x36\xf4\xcc\x25\x7c\xaa\x7a\x5d\x11\x9b\x60\xc2\x86\x0c\x61\xe1\xf7\x29\xbc\x9c\x84\x22\xdb\x0b\xf2\xc7\x1e\x71\x10\x0e\xcf\x32\xc9\x3a\x20\x27\x4a\x60\xb6\x4f\x6e\x9f\x1b\xf8\xb5\x1c\x3f\x2c\xae\x6a\xdd\xb2\x2f\x21\x98\x8f\xf4\x5f\x17\xa9\x70\x67\x83\xdc\x53\xe3\x13\x16\xaa\x12\x84\x18\x99\x2f\x27\x27\x79\x55\x12\x64\xb7\x3b\x0d\x7d\x29\x0f\x20\x54\x36\x97\x1f\x95\x5e\xfe\x91\x81\xf4\x0a\xf9\xfb\x16\x0d\x1c\x84\x1c\xbf\xc3\x9f\x94\xb5\xd6\x12\x8c\xc2\x0e\x8b\x8e\x72\x31\x04\x75\xb3\x25\x21\x52\x82\xfe\x6c\x88\xef\x4b\x53\x6d\xde\x98\xcd\x42\x93\xb5\xed\x7c\x56\xbf\x13\xa1\xca\xbd\x6f\xf3\x67\xa5\x47\x84\x66\x37\xa5\xea\xd4\x2f\x0f\x09\xf6\x3d\xd3\x56\x7c\x1a\x2b\x53\x3d\xde\x0a\xa4\xdf\x67\x11\xe4\x3e\x0d\x84\xb0\x46\x72\x08\xd3\xd7\xe1\xfd\x4a\xf3\x11\x06\x21\x39\x3f\x54\xf7\x1e\x50\xa6\x71\x9c\xda\xe4\x3e\xd3\xb7\xec\x6d\x39\xf6\xab\xae\x7c\xe3\x2e\xb4\x80\xe0\x6d\xac\x67\x3d\x32\xa0\xc7\x06\xe1\x88\xa4\x2a\x2f\x93\xf7\xe5\x58\x61\xe6\x6d\x31\x95\xe6\x11\x92\xca\xfe\xfa\xac\xf0\x10\x27\xc8\xb6\x4e\xbc\x30\x23\x88\x97\xd0\x3e\x79\x47\xa6\x9f\xd4\x2f\x66\x90\xcf\x7e\xad\xb1\x75\x2e\xa1\xcc\x92\x3a\x97\x18\xc5\x11\x0e\x9f\xcc\x2e\xae\xbf\x54\x44\xb8\x5a\x1a\xf2\xf8\x1b\x74\x08\x99\x24\x97\x9b\x69\x52\x42\x48\xdb\x25\xb2\xda\x9d\xbf\x82\x70\x75\xe9\xef\x20\xaf\x17\x0d\x2c\x7c\xcb\x4a\x79\xec\x3a\x56\x9e\x59\x7f\x7a\xf6\x88\xf5\xae\x1c\x02\x6f\x4d\x8f\xce\xbc\xad\x40\x78\xe7\xfb\xd8\xf3\x1e\xa7\x00\x61\xb2\xe9\xb9\x98\xce\xe7\x7a\x04\x3f\x9f\x82\x9a\xc2\x4b\x55\x04\x75\x3d\xcb\x0f\x9c\x9d\x59\x84\xdb\xf3\x3e\xfe\x15\xd3\xc8\x63\x8d\x8f\x7a\xc2\x45\x7d\x3e\x79\x26\x10\x16\x6c\x99\x31\x22\x1b\xa2\x48\x98\x91\x6b\x7c\xa4\xb0\xe0\x02\x1b\x54\x15\xff\x54\x3f\x5f\xf8\x84\x05\xb7\x9b\x13\xeb\x56\x9d\xaf\x24\xec\x92\x3e\x17\xe1\xf3\x24\x8e\x50\x2c\xd9\xb3\x66\x77\xc2\x33\x16\x8e\x87\x54\x9a\xda\x3c\xda\xc6\xc2\x48\xdd\xd3\x3f\xdd\xab\x5e\xb0\x50\xdc\xac\x90\x28\xce\xdf\xc2\xc2\xd7\x9d\xd3\x77\x57\x7f\x4c\x24\xd8\x6c\x9c\xa1\x66\x30\xa2\x45\x28\xef\x7d\x67\x57\xf7\xe5\x37\x83\x05\xdf\xef\x06\x1f\x48\xcb\x66\x61\x56\x53\xdd\xcf\x6f\x9f\xf3\x08\xa3\x1f\xb6\x29\x57\x6f\xcd\x22\x68\xed\xd0\x53\xf1\xf2\x30\x61\x43\xdf\xa5\xb6\xa5\xf1\xe2\xda\x84\xae\x33\x8d\xb3\x66\xcf\xd0\x27\x78\xfa\x37\x8b\x36\x7e\x2f\x21\x68\x5b\xdc\x9d\x7e\x76\xf4\x3d\x41\x24\xe9\xf6\xb7\xb0\x31\x44\x1e\x8e\xff\xde\xf4\xd9\x9f\x70\xe0\x9b\xd4\x9e\xd8\x87\x8b\x09\x03\xfc\x22\x9b\xba\xfe\x1f\xbe\xed\x3c\x1a\xab\xa8\x8f\xff\x7e\xa1\x94\x28\x84\x88\x32\xcf\x54\x32\xa5\x74\xbe\x99\x42\x14\x8a\xd2\x20\x84\x34\x93\xa1\x48\x09\xa1\x41\x2a\x53\x51\x4a\x25\x24\x4d\x84\x28\xb9\x10\xa9\x94\x94\x48\x89\x42\xa9\x14\x22\xf4\x41\x78\x96\x9e\xe7\x77\xbb\xee\xf5\xf4\xbb\xff\xba\x5e\xeb\xbd\xcf\x2a\xeb\x3a\x7b\x9f\xb3\xf7\x5a\x9c\x97\x26\x04\xc5\x49\xce\xa8\x0e\x14\x27\xa4\xed\xe8\x7f\x7e\xd2\xed\xc4\xbf\xe0\x32\xd3\xb5\x23\x27\x4d\xe0\x5f\x58\xd1\x70\x4d\x44\x31\xfc\x13\x03\x6f\xb7\x84\xfc\xd5\x0f\x52\x58\xb8\x60\xe2\x2d\x39\xe9\x4f\x21\xe1\xdb\xa2\x96\xc4\xed\x7b\x2f\x13\xf2\xf8\xc2\xf8\xb8\x98\x8d\x84\x3b\x0e\x69\x7c\xdf\x34\x0a\x08\x82\x66\xc6\xba\x07\x04\x75\x46\x77\xb2\x69\xdf\x7b\xdd\x3e\x30\x78\x65\x94\x2d\xe9\xa0\x26\x4d\x63\xb0\x79\x55\x50\x57\xb5\x4a\x87\x60\x5b\xf6\xcd\x5e\x3b\x2c\x9c\x85\xe0\x9a\x59\xe2\xeb\x4b\x37\x13\xa6\xa9\xbc\xb3\x17\x19\xc8\x27\xbc\xb7\xe8\x7e\x7a\xeb\xee\x13\x42\xc8\xb1\xb9\xf7\x26\x24\xdc\x21\xcc\xdf\xe7\x9c\x75\x32\xfe\x0e\x81\x95\x6b\x74\xb8\x53\xf1\x01\xa1\xf6\x73\x71\xbf\xf0\xf3\x14\x82\x62\x69\xce\xa9\x99\x4d\x0c\x1b\x66\x69\x86\xd4\x19\xa9\x36\x32\x70\x93\x6d\x12\x7b\xa2\x56\x4a\x58\xbe\xf2\x78\xe5\x8f\x9b\x5c\x04\xab\xdd\x0b\xc5\xee\xf7\x4e\x22\x78\xb8\xbe\x8e\x9a\x61\x68\x4d\xb8\x29\xbd\xd7\x6a\xd8\x61\x84\x19\xc3\xb2\x7b\xae\x21\xf1\x67\x6d\x08\x0a\x0f\xfe\x9c\x08\x9c\x16\xc6\x82\x51\xaa\xa4\x96\xdb\x5c\x0d\xc2\xa9\x5f\xdc\x67\x0f\xe4\xe5\xb2\xf0\xee\x91\x6e\xdf\x8d\x3a\x0f\x82\xc6\xa7\x6f\xf3\xed\x6f\x59\x12\x16\x7f\x36\x7b\x56\xfd\xc6\xfe\x5f\x58\x37\x4f\x75\x59\x69\x5b\x0a\x03\xb1\xcc\x76\x3f\x85\x8c\xab\x84\x1a\xd6\xb0\xff\xc9\x4f\xa1\x84\xfa\x16\xd7\x1f\x3d\xc5\x29\x2c\xa4\x78\x9d\x9c\xd9\x3b\x8a\xff\x0c\x85\x97\x1c\xa9\xf9\xe5\xef\x43\x78\xd6\x2b\xfc\xfd\xf8\xe5\x8b\xac\xb1\xf2\xc4\x91\xbb\xc3\x72\x44\x91\xa0\x5f\xb0\x9d\xe9\xde\x57\x4c\x58\x7b\xee\xcc\xda\x4c\x89\x87\x84\xc1\x13\x1f\xf3\xdb\xee\xbd\x24\x7c\x31\x8b\xcc\xd0\x9a\x7d\x9d\x90\x21\x1c\x79\x57\xc3\xe7\x06\x0b\xcc\x2d\xd6\xb4\x2f\xee\x52\x84\x69\x3e\x93\x9a\x26\x06\x19\x13\x98\xb9\x1f\x94\x38\x6b\x73\x09\xa1\xe3\x82\x16\x9b\xad\x39\x47\x38\x77\xe0\x54\x60\x90\x6d\x2c\xa1\x69\xc3\x43\x8e\xf4\x09\x0a\x04\xcd\x30\x49\x07\xad\xe3\xc7\x08\xac\xad\x32\x86\x5a\xdf\x54\x08\xe9\x87\x24\xc6\x9b\x88\x2d\x22\x04\x79\x6b\x4e\x16\x16\x16\x21\x84\xe7\xa8\x96\x95\x04\xde\x20\x3c\x69\x1b\x34\x1b\xe4\x4b\x21\xf0\xe8\x48\xcd\x99\x9b\x7b\x93\x50\xfd\xd0\x8c\xf5\x48\x59\x9b\x50\xf4\x58\x30\xa8\xe2\x90\x14\x41\xdc\xe7\xdc\xc2\x58\xd1\x6b\x04\xc1\x29\xa5\x73\xa6\x8e\xfe\x18\xff\x7f\x64\x1c\xfe\xfa\x71\x49\xbb\x2c\xa1\x8b\x9e\x5d\xff\x66\x90\x4a\x98\xae\x1c\xf2\xe5\xb8\x72\x1f\x83\x8b\x1b\xb8\xa2\xba\x77\x4d\x20\x5c\x68\x3f\x51\xf3\x6a\x41\x06\xe1\xe2\xd1\xb9\x06\x1b\xcc\x6e\xb0\xa0\xba\x5c\xfb\xec\x33\x19\x22\xd4\xef\x9e\x7a\x50\xb6\x64\x1d\xe1\x62\x00\x77\x5c\xd9\x91\x6b\x6c\x58\xe9\xc0\x8a\x0e\x38\x71\x8d\x60\xf0\xe2\x30\xcf\xdf\xf2\x1f\x94\x67\x22\xdd\xd7\xc6\x99\xa0\x64\xd9\xbc\xe1\x83\xb2\x0b\x1b\x3c\x27\x54\x7f\x97\xab\xb0\x66\x2b\xc9\x5b\x13\xef\xd5\x7f\x58\x47\x70\x79\x5d\xb3\xe0\x57\x91\x3c\x61\x6d\xfc\xcf\x20\xf5\x35\x1c\x84\xe7\xb1\x65\x97\x3c\xb9\x4f\x13\x14\xb7\xdf\xf2\xa8\xd2\xd8\x43\x30\xbb\xbb\xa9\xc4\xac\x4d\x97\x20\xc4\xab\x3d\xf3\x79\xb0\x2c\xe1\xfc\xb6\xa0\xd6\x1d\x16\xea\x84\x3e\x0d\x1b\xed\xa8\x8e\xfb\x04\xf5\x19\x37\xda\xc7\x6d\xdd\x44\x08\xac\x88\x39\x31\xbd\x7e\x2d\xe1\x4d\xe0\x1d\x37\x91\x09\x60\xf0\x72\xf6\x2b\xb9\xdd\x5f\x9c\x08\x06\x4a\x99\xae\x6d\x26\x51\x04\xf9\x0f\xcd\xae\x26\x8e\x97\xd9\x60\xb5\x4a\x4e\xdf\xf3\xe3\x65\xd6\x58\x51\x3d\xcc\x35\xa3\x2e\x7c\x0b\xa1\x72\xa7\xdc\xb9\x3b\x9e\x5b\x09\x89\xbf\x38\x1e\x9b\x3f\xf1\x60\x2b\xff\x81\xcf\x4b\x09\x4e\x0d\x77\x1f\x82\x69\x7a\x5b\x57\xeb\x46\x16\xe1\xc9\xda\x57\x7f\xde\xd6\xb2\x08\xd3\x64\x25\x13\x2e\x5e\x49\x27\x94\x46\x16\xcd\x97\xfe\xfa\x90\xf0\xd6\x93\xb7\xf9\x9e\xb6\x0d\xe1\x89\x42\xe2\xfb\x9f\x59\xc5\x84\x2b\xd1\x51\x0f\x9e\x79\xbd\x18\xbd\xef\x49\x09\xeb\xeb\xa3\x08\x97\xa5\x96\xf8\x27\x9e\xdc\x48\xd8\xdc\x91\x9b\x3e\xf3\x9e\x2d\x21\xc1\x53\x6e\x44\x63\xef\x3b\xc2\x4a\xe7\x79\x11\x19\xa3\x90\x5b\xbf\x2e\x67\xd3\xa9\xfb\x84\x3d\x5c\x42\x32\x22\xb2\x9b\x09\x77\x9d\x56\xf6\x74\x5d\x9e\x45\x38\x7c\xf0\x67\xbd\xca\xc0\x7c\xc2\xc0\x8a\xb0\x2b\x72\x12\x8f\x08\xfe\x16\xdc\x87\x04\x63\xaa\x09\x0b\x83\x8f\x2a\xdd\x8f\xef\x65\x70\x3d\x36\xfb\x7d\x6c\x81\x34\x8d\x21\xe3\x69\x6a\x9b\xf1\xf0\x17\x06\x0e\x91\x50\x2b\x9d\xd9\xc1\x80\xa5\xee\xa7\x16\x63\xb5\x97\xb0\x3d\xf0\xe8\xb8\x1d\xc5\x82\x04\x91\xea\xfb\x57\xd3\xad\x95\x08\xbc\xbd\x5a\xfd\x1d\x5b\xb5\x08\x4c\xa4\xf2\x16\xf1\x56\x33\x82\xe0\xcb\x17\x56\x41\xf6\x46\x84\x3c\xb5\xf3\xf9\xb9\xbc\x3b\x58\x78\xc2\xf7\x40\x6f\xf3\xbd\x02\x82\x71\xeb\x86\x6d\xf2\x36\xca\x84\xe3\xcf\x9b\xa6\x28\x54\xdf\x20\x74\xdd\xcb\x4b\x1e\x58\xa2\xc6\x06\x4f\x71\xc5\xa6\xc3\xfd\x02\x84\xb2\xf3\xfc\x1a\x36\xfc\xa3\x1b\x99\xfa\xe9\x9f\xe4\xa5\x85\x09\x9b\x75\x3e\xb6\x2e\xcf\x2b\x21\x7c\xf8\x92\x75\x49\xec\xdc\x5d\xc2\x1f\x2f\xa7\xb7\x13\x47\x8b\xba\x21\xd7\xf7\xd0\x9e\x4d\x84\xea\x77\xbb\x1f\xf3\x4c\x4b\x27\xa8\xe9\xdd\x88\x39\xf0\x52\x8b\x20\x90\xe2\xf3\x28\xcc\xcc\x90\x50\x96\x52\xdf\xde\x57\x1b\x4c\x30\xd0\xcc\xb2\x9e\xb1\x2f\x99\x0d\x5b\xeb\x73\x1d\x05\x6a\x32\x58\x50\x3a\x30\x5f\x7a\x7e\x7f\x35\x6b\x6c\x48\x64\xcf\x6f\xdd\xd8\x9d\x1b\xd9\xe0\x14\x77\x50\x4d\x69\x9c\x1d\x5b\x71\x79\x63\xd4\x3a\xde\x7a\xf4\xc5\xda\x1c\x98\x21\x91\xf2\x96\xc1\x49\xbe\x8d\xcf\xa5\x3d\x6d\x08\x4a\xae\x5b\x27\xf8\xfc\xee\x66\x10\x9d\x12\xf5\xe3\xcc\x5a\x4e\x1a\x83\x6f\x7f\xe8\xf1\xea\xf5\x0c\x41\xc8\xb8\xf2\xd3\xde\xf8\x0c\xc2\x90\xb1\x8e\xa2\x5b\xea\x1a\xc2\xef\xb6\x89\x5d\xb3\x16\xe7\x12\x38\x8e\x1e\x34\x16\xc9\x73\x22\x9c\x0e\xd7\xff\xd3\xd9\x9e\x49\xd8\x3c\x2d\xdd\x2b\x7d\xd6\x45\x82\x61\x9a\x8a\xef\x1a\xc5\x50\xc2\x7e\xed\xab\x6a\x33\xe6\x14\x11\x8e\x27\x65\x69\xdc\x74\x10\x21\xec\x38\x3d\xc5\x4a\x75\x38\x8d\xd0\xb5\xc9\x30\x7e\x40\xdf\x8b\xf0\x44\x96\x2f\xfb\x63\xc2\x05\x16\xb4\xef\xdf\x7f\x5c\x92\xeb\x4a\xd8\x63\xbf\xaf\x98\xb7\xf5\x20\xe1\xa1\x6f\xc5\xb7\x0e\xaf\x74\xc2\x99\x07\x72\x6a\x92\xcf\x39\x09\x1e\x67\x39\xdf\x16\xbb\xe9\x13\x2c\xf9\xf4\x03\x2b\xad\xb7\x12\xaa\xd6\x9c\x53\x40\xe5\x4a\xc2\xe7\xf2\x5d\x51\x19\xf3\x96\x10\x8c\xd7\xf7\xaa\x96\x2d\x28\x62\xd0\x19\xca\x3a\xea\xbc\x51\x8a\x10\xfc\xe6\xf6\xf5\x81\xc5\x03\xcc\x18\xd2\x04\xcd\xcb\x4d\xba\x9b\x18\x38\x55\x4a\x37\xcc\x56\x8b\x67\xa1\x44\x93\x63\x5b\x5a\xda\x78\x42\xce\xf7\x88\xef\x95\xaf\x87\x18\x64\xfc\x7c\xd1\xe2\xb2\xdf\x96\xfe\x81\x37\x0f\x6c\xfd\x26\xce\xeb\x66\xd0\xec\x7b\x6d\xeb\x04\x8f\x45\x04\x87\x9b\x0b\xe2\xbd\x7b\x45\x08\x8d\x91\xbe\xf3\xa7\xb1\xc6\x13\xfc\x5e\x7f\xd8\x68\x3e\x75\x3a\x41\xfc\xa5\x7e\xcd\xf8\x93\x5a\x84\xba\xdc\x4a\xdd\x6f\xcb\x15\xd9\xc0\xad\x68\x27\xfc\x79\xcf\xb3\x42\x14\x8a\x24\x0f\x6d\x1e\xcc\x23\x84\xf1\xa6\x8e\xe4\xc9\x87\x11\xee\x86\xcd\x38\xa4\x56\x62\x4b\x38\xe8\xa0\x9e\xfb\xca\x61\x3e\xa1\xfd\xd4\xf9\x59\x75\xc3\xdd\x0c\x54\xde\x07\xfd\x28\x8a\x9c\x48\xfd\x87\xa6\x44\x72\x5e\xe0\xfd\xcf\x27\xe2\xee\x9c\x39\xed\xa7\xf9\xba\x10\x21\x1a\xdf\x7e\xcd\xc9\xe5\x24\x04\xae\x3b\xb3\xa7\xf1\xab\x05\x1b\x3c\x56\x8b\xdc\x19\xea\xf9\xc2\x60\x6e\xfe\xf6\x90\xfa\x83\xc7\x09\xc7\x4a\x6c\x9e\xf4\xf6\x81\x41\xb8\xb2\x55\x65\x9c\xa7\x1a\xe1\xc9\xf9\x1f\x0d\x72\xcb\xfa\x19\xf8\x5f\x67\xfc\xe6\xe7\x9a\x10\x74\x7b\xfd\xb6\xcd\xfe\x32\x99\xb0\x63\x41\xa3\xb6\x5b\x73\x11\x03\xc9\x37\xca\x91\x07\x2b\x15\x09\xe2\x8b\x3e\xb4\x89\x9b\x35\x33\xb8\x92\x1f\xcf\xdb\xa1\xa2\x4b\x18\x08\xed\xb7\x4c\xf8\x91\x4d\xd8\x7f\x70\x7d\xcc\xc9\xad\x22\x84\xa2\xbb\xdf\x6c\x17\x32\x45\x04\xbb\xe4\x4f\x8a\xb7\x66\xe4\xb3\x95\xb8\xae\xaf\x86\xf5\x5f\x45\x08\x1c\x29\xbc\x3e\x35\xf3\x32\x08\x76\x5b\xee\xe7\x2d\x34\x15\x20\x2c\x5f\xff\xfa\x0b\x8f\xeb\x3c\xc2\xc4\x77\xad\x33\xba\x1e\x94\x11\x34\x5f\x95\xa4\xcf\x18\x3a\x44\xd0\x63\x14\x37\x70\xae\x13\x22\x1c\xdc\x77\x2a\x4d\x75\xbd\x0a\x41\x79\x41\xf2\x9d\x89\xfb\x9f\x14\xa2\x36\x61\xb1\x58\xd0\x2d\x3e\x1a\x43\xc8\x78\xd7\x3f\xbe\x92\x73\x09\xb3\x36\x97\x54\xd7\x37\xdb\x10\x64\x1f\xfc\xbe\xc4\x2b\xa3\xc7\x06\x65\x9e\xe7\x82\xa5\xb7\x2b\x18\xdc\x32\x17\x2c\xe9\xd8\x31\x91\xa0\x6e\xb9\xbf\xce\xe2\x6d\x3e\xe1\x57\xed\x5b\xb3\x39\xfb\xab\x09\x42\x05\xc6\xe7\xde\x4f\x59\x4a\x10\xf7\x8d\x72\x9f\xba\xdb\x9b\x0d\x83\x52\xc9\x85\x42\xd6\x02\x04\x8d\xf1\x05\x5e\xdc\x32\xcb\x08\x4f\xab\xbd\x3d\x93\x2c\x66\x12\x64\x73\xce\xca\x26\xce\x0c\x65\xc3\x79\xb2\x77\x0e\x8c\x5c\xc8\x86\x2c\xf9\x27\xc6\x69\xd3\xf8\x09\xd1\xfb\xc7\xb3\x72\x4f\x49\x12\x3e\x4f\x98\x7a\x65\x44\xdd\x90\xe0\x9c\x13\x94\x73\x13\x1c\x84\x2d\x37\x1c\x74\x52\x6e\x4a\x11\xac\x6c\x63\x6a\xf3\xc6\xef\x63\xa1\x53\xa5\xa0\x38\x6c\xed\x0e\xfa\x07\xae\x9f\x9e\x25\xb9\x24\x4c\x80\x60\x73\x73\x4a\xd4\xbe\xa0\x3f\x0c\x3c\xf4\x17\xab\x5f\x6f\x5c\x4b\x63\x58\x19\xb1\xba\x26\x21\x4a\x88\x0d\xca\xef\xf6\x98\xce\xf1\x4d\x62\x43\x5c\x81\xf4\x77\xf5\xff\x82\xf6\x97\x67\x8f\x25\x72\x27\x12\x56\xf5\xdd\x6b\x59\xb7\xe1\x32\x61\x76\xbc\xe5\x9d\xd9\x4e\xae\x84\x63\xbb\x74\xa7\x2e\x55\xdc\x4c\x50\x67\xf9\x17\xd9\x71\x4d\x60\x83\x60\xd4\x2d\xd1\xa9\xf9\x35\x0c\xbc\x45\x72\x0a\x6e\x6c\xfd\xcd\x60\xb7\xfc\x2e\x35\xd3\xcb\xd3\x69\x0c\xaa\x71\x96\x8e\x87\x4e\xdc\x65\x70\xe2\xf5\xc9\x69\x0e\xd3\x4a\x59\x10\xfe\xb4\x3a\xd2\xfe\x8a\x0d\x21\xf5\xa0\x7b\x9e\x4e\x77\x13\x0b\x3a\x9c\x11\xc5\x5f\xde\xa7\x12\x2e\xb8\x6d\xcd\x5e\xeb\x6c\x4e\xf8\xcc\x53\x7d\xb8\xa6\x61\x12\x1b\x56\x4b\x6d\xfa\x6a\xc7\xf3\xbe\x10\x8f\xd6\x6c\xc9\xa8\xe3\x97\x21\x98\xbc\x53\x7c\xa6\x39\x74\x9e\x0d\xd5\xa7\x0e\x89\xd4\xcf\x53\x60\x43\x7c\xd9\x9a\x0e\xdd\xa0\x3e\x06\xf4\xc6\xff\xcb\xa3\xd3\xa6\x84\x90\x17\x4f\x46\x36\x74\x5f\x20\x14\xea\x1d\xd4\x78\x3f\x63\x1e\xa1\xba\xa7\xd2\xa8\x7c\x74\x68\xae\x39\x8b\xd7\x65\x7e\x0f\x33\x86\x4a\x3d\xdd\xcc\x02\xe3\x69\x34\x86\x1d\xc7\xe5\x94\xb9\x66\x96\x33\x63\x98\xec\xae\xc6\xc5\x3b\xef\x0b\x83\xab\x15\x2d\x9e\x7f\x8c\xd5\x09\xad\x7d\xf1\x5d\x69\xb5\x91\x2c\xd8\xd9\x9d\x1c\x19\x18\x2d\x87\x37\xc5\x54\xdc\xff\x1d\x5d\x38\x06\xf7\xf5\xf9\xf5\xa6\xe9\xf6\xf4\x0f\x4c\x9c\xd6\x7e\xa9\x96\x6f\xe6\xbf\x30\x37\xfa\x77\x3c\xdf\xeb\x1a\x06\xbd\x83\x5b\x04\xae\x16\x64\x16\x42\xd7\x2d\x3e\xbd\x06\x0a\x84\x91\xf9\xf7\x87\x3d\xdf\x26\xb0\x10\xf0\xa2\x3b\x40\xa5\xa6\x84\x90\x3a\xbe\x35\x6a\xa5\x56\x26\x0b\xca\xd1\x7b\xd7\xdd\xfb\x58\x42\x78\xe0\x58\xbe\x31\xd7\xe0\x38\x21\x22\x63\xb6\xe6\x94\x4d\x17\x0b\x11\x10\x94\xb2\xb5\xbd\xb1\x87\x19\x43\x44\x46\x12\x2d\x3e\xf7\x8d\x41\xaa\xee\xb4\x57\x7a\x59\xda\x34\x86\x28\xb1\xfe\x60\xbf\x3c\x7f\x16\xde\x0f\x4f\xce\xdc\x7a\x2b\x91\x30\x74\xe9\xc3\xdd\xe4\x7b\x17\xa9\x3f\x86\x4f\xde\x30\x30\x91\x60\x65\x77\xf6\x79\xdf\xec\x40\x82\x85\x72\xf9\xcf\xc0\xe1\x75\xac\xb1\xa2\x93\x56\x3e\x4d\x6c\x28\x8f\xf0\xbd\xd8\xa9\xf5\xf9\xa4\x7c\x02\x4b\x31\xd3\xdf\xae\xf5\x08\xe1\xb0\x5f\x85\xfd\x16\xad\x23\xac\xb1\x32\x30\xee\x71\x9d\x9b\xc9\x61\xc2\xf5\xf9\x0f\xcc\x7d\xb6\x1d\x26\x30\xe6\xb3\xcc\xc7\x2d\x49\x21\x14\x67\xac\x52\x91\x31\x74\x23\xd4\xd7\x79\x31\x99\x83\x6e\x84\x09\x6b\x13\xba\xb6\xb5\x6f\x20\x74\x38\xfe\xf9\xa6\xa5\x7b\x9b\x50\xef\xbc\xee\xe8\x84\xb5\xf1\x84\xef\x62\x2f\xdb\x78\xdc\xef\x13\x7e\x6e\xe6\xe1\x66\x4a\x55\x09\x31\xeb\x2b\x52\xcc\x3b\xdf\x31\x08\xbc\xa7\x28\x33\x60\x3b\x9b\x40\x9c\xdf\x26\x05\xa5\xa4\xb0\xc1\x54\x60\x4d\x5e\xf5\xf6\x7b\x6c\xd8\x5d\xc3\x7b\xb9\xeb\xbb\x3b\x21\x73\x4f\x88\x58\x88\xdc\xe8\x11\xe9\xdb\xa6\x50\x35\x7d\x2b\x82\xe8\x16\x9f\x0a\x6d\x6d\x4e\x82\x96\xa3\xad\xa8\xc0\xbe\x29\x04\x83\x53\x89\x9a\x55\xb5\x4b\x08\x7a\xad\xbc\x85\x79\x2d\x23\x0c\x7a\x94\x6c\xee\x56\xf1\x88\xd0\x18\x88\xe5\xeb\x94\x71\xa7\x8d\xc1\xe2\x55\x7a\x5c\x7b\xf8\x4c\x09\x0b\xe6\x2e\x0e\x38\xbd\xb6\xba\x10\xa1\x99\xe7\xe7\xde\x18\x9c\x4e\x63\xf8\x5d\x67\x71\x6a\xdc\xc7\x11\x06\x73\x9f\x25\x94\xf7\xd6\xd9\x13\x78\x03\xda\xba\x78\xa3\x7e\x31\x63\xd0\x74\xfa\xb6\x5f\x7b\xb0\xb6\x10\xc1\x82\x7e\x11\xed\xb2\x25\x0c\x1e\xf6\xbb\xce\x77\x8e\x5e\x48\x63\x10\x2e\x71\x7f\x53\x97\x7f\xbd\x70\x0c\x65\x33\xc4\x4b\xdf\x29\x3b\xd0\x18\xaa\x22\xde\x4a\x5c\x37\xba\x51\x08\xf1\x0d\x3a\xf6\xe1\xe3\x57\x10\x3a\x3b\xb8\x1f\x57\x35\x7f\x2c\x44\xdb\xde\xed\x3f\xc2\xd6\x6d\x1a\x7d\xcb\x7f\xda\x73\x4e\x7d\x35\x61\x50\xbb\xd8\xb7\x8e\x5b\x83\xb0\xe4\x00\xf7\xe9\x79\xa9\x07\x08\x27\x46\x36\x0e\xf7\x96\x68\x13\x92\x84\x03\xc2\x3f\x54\xfc\x62\x20\x2a\x20\xd3\xfd\x73\xe4\x33\x83\xc9\xe1\x4e\x1e\x21\xd3\xa4\x69\x0c\x01\xdb\x0c\xd6\x64\x8f\x6b\x65\x50\xc2\xfd\xb9\xdc\xd1\x54\x9a\xa0\xe5\xf5\x2a\xd5\xd8\xe7\x68\x21\xd4\x24\x76\xe8\xee\x15\xf9\xc9\xe0\x73\x9f\x44\x6e\x63\x75\x3b\x1b\xfe\xf3\x24\xf0\xd9\xa0\xd4\x33\x7e\x1b\x27\x61\x8b\x64\x9a\x4c\xe2\x94\xf9\x6c\x08\xf3\x5d\xdf\xb1\xec\x9d\x11\x1b\x44\x3e\x0e\xf9\x56\xd5\x3b\x12\x8e\x7d\x98\xac\xd7\x69\x6d\x43\x58\xb2\xd5\x48\x6b\xf2\x9f\x7d\xff\x42\x99\xc0\xf1\x22\xfb\xd5\x6b\x08\xfc\x9e\x2b\x2e\x46\xdc\x76\x26\x70\xbd\x28\xf4\xab\xf8\xbc\x8a\x60\xb7\xbb\xda\xfc\xb2\x1f\x27\x61\x40\x75\xd2\xee\x41\xeb\x3e\x06\xa7\x73\x1a\x2e\x4e\x4f\x93\x25\xa4\xee\x92\xd0\xbc\xfb\x71\x36\xa1\x6b\xab\x32\xc7\x14\x85\xd9\x84\x4c\x63\x1d\x91\xdf\xe7\x3a\x19\x0c\x2c\xb9\xfd\x2b\x2f\xe3\x46\x21\xec\x86\xc6\xdd\x96\x3c\x78\x9a\xc6\xa0\xfa\xfd\xae\x28\xa7\xdb\x10\x03\xa5\xad\xbc\xb2\x0f\x7f\xa6\x10\x5a\xe3\x43\x72\xe6\x24\x68\x11\x26\x5c\x3f\x73\xc9\x75\x9c\x0c\xa1\x58\x65\xe7\x06\x69\xf3\x18\xc2\x70\xf4\xda\x1d\x05\x82\xcd\x0c\x4e\x14\xdc\x99\xa9\x28\x28\x43\x63\x48\x13\x53\xb8\x75\xad\x35\x95\x70\x75\x35\x47\xdb\xb6\x53\xb3\x08\x45\xb6\xef\x3b\xd6\x99\xff\x64\xa0\xc6\x15\x50\x11\x57\xd7\xcb\x86\xaf\xf3\xba\x27\xf9\x6f\x9d\x4a\xd0\x68\x0d\x4b\xc8\x99\xb4\x8f\xf0\xce\x67\xc1\x35\xdb\xd6\x5d\x04\x53\xf7\x2d\x8e\xc6\x67\x04\x09\x7b\x7c\x36\x87\x1d\x2c\xbb\x48\x10\x9b\xcc\x61\x21\xd8\x3d\x81\x70\xfe\x46\x54\xd3\xf6\x74\x0b\x36\x2c\xe4\x75\xce\x0e\xfd\xc8\x43\x78\xe4\xc5\x47\x62\xc7\xfc\x08\x8f\x4b\x2e\x74\x74\xc9\xcc\x25\x3c\x92\xb9\x68\xc4\xf3\x85\x21\x84\x24\xb6\x77\x85\xf8\x9f\x20\xfc\xd4\xf7\x3a\x93\x90\xb9\x97\x50\xdd\xd0\x97\x5e\x9d\xee\xcb\x56\xda\x64\xf2\xe5\xef\x1b\x18\x12\xd2\xcf\x2e\xf8\xd1\xf4\xe7\x17\x83\x2e\xdd\xfd\xe2\x3f\xca\x07\x19\xa4\x44\x2a\x2f\x3f\xcf\x35\xc0\xa0\xd6\xf9\xe2\xe5\xbc\x9a\x1c\xc2\xe2\x1d\x3a\xdd\x17\x76\x3a\xb1\x70\xeb\x85\xcd\xaf\xad\xef\x22\x58\x30\x79\x32\x57\x6f\x5f\xd7\x65\x82\xff\xb3\xc8\xe4\xb7\xf2\x97\x08\xd7\xf8\x4d\xac\xff\x96\x90\xdd\x3b\x5b\x1d\xdd\x27\x12\x9c\xd6\xb3\xda\x27\xf0\x04\x12\x2e\x24\x0b\x0c\x57\x2b\x9c\x66\x83\x42\x9b\x77\xf8\xa6\x03\x82\x04\x25\x6f\x46\x73\xe2\x11\x07\x02\x44\x56\x3c\x73\xa9\xab\x64\x50\x38\x58\x14\xf5\xe4\x45\x27\x83\x57\x8a\x62\x8e\x97\xd7\x69\x10\x16\x1f\x37\x6b\x09\x32\x14\x25\xf8\x7c\xb8\xa1\x50\x9a\xf9\xa6\x10\x3d\x0b\xa7\xbc\x89\x5f\x3c\x8f\xd0\xd7\x1b\x9e\x3d\x2d\xd8\x92\xc6\x8a\xd1\x85\xfc\xc0\x4a\xc7\xd1\x05\x52\xdc\xb9\xa9\x8d\x11\x26\x84\x68\x28\xeb\x1c\x31\x53\x23\xcc\xe4\x57\x1c\x99\xa4\x16\xcc\x06\x1b\xa7\x44\xbf\x36\x89\xdb\x85\xe8\x0c\xf4\xf1\xb1\xfb\x28\x48\x98\xcf\xaf\x64\x7d\x29\x41\x88\x0d\x49\xd7\x28\xfc\xc1\xe1\x86\x42\xc4\x4a\x38\x65\x90\x59\x0b\x83\x93\x5c\xaf\x6d\xb6\x14\x08\xd3\x18\x8e\x75\xa8\x4f\x55\xda\x74\xad\x10\x0b\x9f\xda\xef\x3a\x2f\x7b\x86\x60\xe3\x6a\x3a\x87\x56\x2d\x26\xa4\xbb\x84\x46\xae\x7c\xa8\x4f\x10\x24\x7e\xf3\x7b\x79\x5f\x19\x08\x1c\xab\xd1\x9b\xe4\xeb\x4d\xb8\x20\x71\x24\x36\x7a\xfd\xe8\x56\xf9\xec\x9a\x17\x86\x05\xee\x6c\x38\x2b\x7e\xc1\x44\x3b\x86\x8b\x10\x33\xab\xb8\x35\x62\x71\x0b\x61\xf6\xa5\x6b\x3f\x6b\xb6\x7d\x26\x28\xff\x11\x75\xba\xd3\x52\x4a\xd0\xe8\x10\x2a\x9a\x3d\xee\x36\x61\xf9\xb6\xaa\xcd\xea\xb7\xf3\x09\x67\x55\xd4\x4f\x1b\xd5\x1e\x24\x9c\xce\xbc\xac\xeb\xf0\x25\x9b\x85\xa6\x4f\x87\xbe\x37\xee\xae\x23\xfc\x6e\xb6\xeb\x9f\xff\xba\x92\x41\x8e\xa8\x83\x7d\xef\x09\x6e\x1a\xc3\xef\x96\xd3\x83\xe7\x65\x9a\x0a\xf1\xbd\xed\x53\xc3\xda\xf5\xa3\xaf\xdc\x97\xfd\x13\xad\x0d\x64\x08\x0a\xf5\x5d\xa1\x73\x6f\x5f\x26\x48\x09\x64\xbf\xed\xe9\x2f\x24\x34\x09\xf9\xac\x7a\x15\x19\x4b\x30\x6f\x7c\x3a\x82\xf9\x9e\x84\x45\x73\x97\xac\x2a\x8e\x4b\x21\xe8\xdd\x9d\x70\xfa\x59\x74\x33\x21\x67\x0b\x57\x51\xe5\x28\x7e\x4f\x9b\x90\xf1\x7c\x14\x61\x37\x3f\xc8\x78\xa8\x64\x11\x6a\xbf\x2d\xbd\xbf\x40\x39\x99\x90\xaf\x7e\xcd\x42\xf2\xb3\x08\xc1\xb4\x24\x29\xed\xf3\x89\x97\x84\xed\x7d\xd9\x2b\x8c\x9a\x5f\x11\x86\x86\x67\xf2\xdc\x98\x56\x45\xf0\xf9\x85\x5f\xa2\xd2\x89\x04\x75\xdb\xf7\x76\xdf\x47\xaf\xf9\xbe\x68\x6b\xfb\xfe\x8a\xb3\x04\xc3\x99\x2e\x2d\xfb\xb7\x27\x12\x56\xfc\xd4\x6f\xad\xd8\x1f\x47\x58\xf3\xbe\xca\x79\xa9\xed\x76\x42\xc2\xfc\x82\x08\xbf\xb5\x29\x84\x49\x4e\xd7\xd5\x3f\xc7\x86\x10\x76\xa9\xe8\x1f\xf2\xfa\xbb\x96\x6d\xb7\xca\xef\x8f\xb9\x49\x10\xd4\x59\x61\x6d\x9c\x18\x4d\xf8\xe4\x9a\xb5\x20\xdb\xe2\x12\x61\xfe\xa7\x22\xbb\xf6\xc4\x30\xc2\xfa\xa9\x7b\x0e\x3d\x3e\x92\x44\xf8\xf0\xca\x28\x60\xc2\xf7\x30\x82\xd7\x8a\x3b\x0e\x9a\x9c\x27\x58\x50\x16\x7f\x39\x88\x6b\x2c\x82\xd8\xa0\xdd\x14\xff\xf4\x55\x84\x3b\x0f\x0f\xba\x98\x1f\x12\x65\x43\xcd\x9c\x00\xcb\x98\x3d\xdd\x0c\xde\x94\x2a\xbf\x19\x52\x3e\x4c\x58\x2f\xd9\xa3\x36\xa0\x62\x4d\x18\xaf\x77\x23\xde\xcd\xa2\x82\x81\x08\xd7\x29\x0d\xcd\x59\x93\xe9\x7f\xa1\xf4\x65\xae\x7a\xf2\x02\x0e\x42\xec\xd4\xbb\xb5\x3b\xe3\x7d\x08\x6b\xf9\xf9\xa2\xc4\x79\xaa\x08\x85\x6b\x64\xae\xfe\xc5\xde\x19\xfd\x56\x62\xa3\xd8\xa1\xea\x72\x48\x69\x65\x09\xe1\xb7\xb8\xab\xfb\x41\xd9\x2e\x06\x67\xde\x6b\xab\x87\xab\x9c\x24\x6c\xf3\x73\x3e\x55\xbd\x28\x94\x60\x52\xb2\xf4\xe3\x7a\x7e\x4f\xc2\xab\xb6\x55\x0a\xe7\x4f\x1e\x20\xfc\x9c\x38\x39\xb8\x2b\x22\x82\x85\x95\x7b\xfb\xce\xc5\x26\x4e\x20\x1c\x17\xe7\xe2\x57\x12\xbe\x4e\xd0\x0a\xb5\x29\x49\x12\xbb\x4e\x78\x29\x27\x52\xe4\xb6\xe5\x19\xa1\xe6\xcd\x4b\xdd\xbf\x25\xe2\xb1\xe6\x06\x9e\xb9\xf6\x6c\x48\x3d\x38\xa3\x2c\xe9\xec\x06\xc2\xb6\x83\x12\xd6\xe6\x51\xb6\x6c\x85\x25\x3b\x90\x7c\xe9\x96\x3f\xa1\x31\x38\x54\x4a\xb5\xee\x3c\xe1\xeb\xef\xde\xe9\x3e\x6e\x27\x09\xae\xfe\x2b\x17\xd3\x32\x4f\x82\x87\xf5\x05\x93\x0b\xc2\xb6\x84\xef\xaa\x9a\xa1\x17\x4c\x3c\x09\x15\x1a\x97\x7c\x16\x5e\xf3\x26\xa4\xeb\xae\x4c\xdd\x68\xe5\x45\xf0\xbe\xa2\x12\xa8\x5f\x5a\x4c\x30\x32\xaf\x12\xdd\xea\x2e\x44\xb0\xd8\x3d\x53\x9c\x29\x8b\x60\x61\xf1\xc2\xde\x82\xbf\xe7\x44\x8d\x57\x4c\xf6\xf5\x88\x16\x82\xa4\xb9\x7d\x42\xd2\x86\xc7\x04\xb3\x7b\xa1\x4a\x0d\x9f\x1e\x10\x82\x7a\xce\x56\x4a\x1c\x6b\x21\xac\xe5\xa6\xde\x1f\xd5\x0f\x08\xef\xcb\x5e\x3e\x64\xfd\xfa\xc5\x20\x69\xf0\xcd\x9f\x6d\x21\xc2\x84\x1d\x2b\xa2\xb3\x1e\x3f\x98\x4e\xf0\xcf\xdc\x7b\x69\x5c\x85\x3a\x21\xd3\xbc\xf5\xb3\xed\x75\x35\xc2\x71\xd9\x4f\x29\x4d\x5c\xb1\x6c\x30\x3d\x27\xa0\xfc\x68\x89\x0e\x21\xa0\xdd\x4b\xa2\x64\x9d\x26\xc1\x71\xfa\x84\xca\x1e\x5e\x61\x42\x83\x47\x83\xc4\x16\x4e\x5b\x36\x08\xf5\x5e\x76\x70\x68\x0e\x62\xc3\xeb\xdc\x45\xd5\x4e\x03\xc9\x84\x15\x1b\xcb\xcc\xe7\x2e\x5c\x42\x10\x1e\x92\xea\x39\xf7\x6a\x36\x1b\x7c\x9f\x66\x09\xf9\x74\xb7\x32\x38\xc7\xca\xb0\x9c\xb0\x2e\x9f\xd0\xe8\x5c\x38\xfd\x54\x9f\x1a\xe1\x16\xff\x6b\xbd\x99\x7d\x0a\x04\xe5\xa3\xef\x56\xbb\x7c\x92\x27\x5c\xb6\x7e\x7e\x66\xdd\x82\x12\x42\xb4\x83\x7b\x92\x51\xca\x13\x42\x69\x60\x4f\x5d\x70\x60\x19\xe1\x8e\xb1\x77\x8b\x7d\x4c\x2c\xe1\x46\x6e\x48\x52\x76\x61\x16\x21\x29\x26\x3a\xcf\x70\xf4\x9a\xef\xcb\x4e\x0d\xdd\xc9\x28\x26\x28\x5e\xf1\x0c\x08\x0f\xf0\x27\x68\x87\x51\xbf\xd9\xeb\xa5\x84\x9c\x8e\xa5\x91\x26\x7c\x3b\x08\xe2\xb7\x5c\xff\x54\x86\x2c\x26\x94\x89\x5c\x57\x8e\x9e\x94\x4a\x90\xa9\xd6\xad\xdc\xdf\xa0\x46\x38\xe5\xcb\x3f\xd5\x51\x59\x9d\xf0\xad\x49\xbf\xf5\x79\x05\xc3\x06\x97\xf0\x59\xca\x5e\x2e\xcd\x0c\x9e\x24\xf6\xdd\xbe\xd6\xe5\x48\x38\x3d\xb3\x8e\x99\x5c\xeb\x4d\x78\xf4\x39\x08\xbd\x9e\x0e\x6c\xa8\x67\x16\xf0\xfa\x70\x09\x10\xce\x36\x5e\x15\x6d\x5a\xbb\x94\x50\x3a\x3b\x72\xd1\x84\x04\x1e\x42\xe1\x0c\x7e\xde\x9a\xb2\xbd\x04\xef\xd8\x93\x66\x77\x1e\xc4\x13\x6e\xd3\xf6\x0d\xd1\xf7\x6c\x08\x9d\xc1\x9b\xa5\x47\x9a\x6f\x12\x8e\xea\x2d\xaa\x79\xb3\x66\x0b\x0b\xe2\x0f\xc6\x85\x94\x15\x54\x11\x84\x64\xb6\xf7\xfe\xc5\x4f\xdd\x5f\xa7\x4c\xad\xaa\x08\xfd\x1b\xbe\xac\x9b\x65\x9b\x4f\xa8\x77\xb8\x9e\x6f\xb4\xe7\x21\x61\x8f\xd1\xa5\xed\xd3\xeb\x4b\xd8\x30\xe3\x8c\x74\x93\xe0\x28\xac\x4b\x57\x9b\x1c\xfe\x54\x42\x78\xde\x92\xfe\x62\xf9\x8b\x58\x82\xcf\x8d\x71\x8d\xfa\xdb\x63\x09\x0b\x53\xa3\x8d\x38\xe5\x63\x09\xfe\x33\x1f\x55\xf8\x3c\x88\x65\xbb\xe6\x65\x95\xa2\x60\xe8\xf3\xe9\x84\x80\x55\x0e\xe2\xd5\x59\x39\x84\xe9\x4a\xaf\xed\x3c\x2f\x67\x11\xcc\xce\xec\x31\xe2\x39\xa9\x49\xf8\xc4\x79\xfc\xbd\xac\x7f\x3e\x41\x4b\xaf\xc1\x60\xe7\x54\x0d\x82\x7e\x91\xec\x29\xc7\x95\x7c\x84\xde\x89\x02\x8b\x62\x06\x32\x08\x77\x8a\xce\x7d\x72\x5f\xf0\x90\x85\x25\x8b\x14\x9b\xe7\xbc\xc8\x26\x64\xd8\x28\x68\x19\x3d\xc8\x25\x3c\xa2\xd6\x33\x07\x96\x0d\x31\xf8\xa6\xc3\xaf\x74\x76\xd7\x52\x02\x9f\x5f\x0f\xd7\x87\x1c\x25\x82\x75\x5c\xac\xfc\xa6\x4b\xca\x84\x72\xf3\xfd\x8f\xb2\x62\x17\x10\xda\x16\x94\x27\x71\x4c\xe9\x65\xf0\x7b\x9c\x75\xd8\x57\x2d\x6d\x1a\x83\x78\xc5\x44\xaf\x94\xd1\xbd\x68\x51\xff\x31\xc3\x44\xd9\x1b\x04\x95\xc3\xc2\xd3\xcf\xf9\x09\x10\x2c\x9f\x47\xc7\xdd\x79\x74\x8b\x30\x9b\x25\x15\xb0\xae\xf5\x16\x61\x62\x6b\x41\xce\xe9\xa2\x04\x42\x96\xed\x92\x2d\x6f\xda\xac\x08\x97\x9e\x68\x6d\x78\xfc\x6d\x11\xa1\xdf\xaa\xf2\x5c\x9c\x55\x3a\x61\xc6\x9b\x96\xa3\x25\xe5\x29\x84\xac\xb4\xc5\x93\x6e\x9b\xe6\x13\x84\xc7\xe9\xa7\x1e\x14\x74\x22\x64\xaa\x4a\xfe\x38\xb8\x60\x09\x61\xfe\xc6\x6f\xe5\xfb\x35\x63\x08\xaf\x0a\x4e\x34\x2e\x16\xf1\x24\xc8\xbb\xf5\x2e\xde\xb9\x5d\x80\xb0\x70\xb3\x58\xcb\x85\xd9\x57\x08\xe7\xa6\xd4\x1b\x6e\x9a\x37\x8e\x50\x5a\x56\xb3\xf5\x89\x2f\x2f\xa1\xe0\xf1\x55\xe5\xe6\x5c\x39\x36\xdc\x95\x9c\x79\x56\x58\x6f\x1c\x21\x70\x55\xb3\x94\xe3\xbb\x62\x82\xdd\xe3\x59\x7f\x9a\xce\xed\x26\x08\x19\xfb\xb5\xcd\x3a\x37\x87\x60\x74\x7a\xd6\xc2\xc2\xcd\x45\x2c\x54\xa5\x8d\x88\x0b\xcf\xce\x22\x4c\x5c\x71\xd1\x61\x2f\xdd\x23\x1c\x32\x3d\x9c\xbc\x79\xeb\x15\xc2\x87\xb7\xbc\x5b\x8d\xf0\x9e\x85\x9f\xd1\xbd\xb1\x3d\xe6\xf7\x08\xa8\x5d\x1f\xc4\xda\x1a\x49\x08\x9e\x32\x70\x66\x2a\xdf\x51\x02\xe7\x9d\xb7\x73\x3c\x39\xe3\x08\xd9\x1a\xa7\x26\x3e\x3b\x1e\x42\x58\xa3\x6f\xd9\xff\x4d\x2a\x96\x90\xb1\x2e\x60\xfb\x24\x9f\x1b\x84\xc2\x93\x21\xa6\x36\x6d\x59\x84\xc4\x7a\xe1\x85\xa1\x01\xde\x84\x88\xf8\x1d\xe5\x36\xb2\xbf\x18\x84\x7e\xf5\x32\xbe\xac\x7d\x87\x90\xbf\xd6\x4c\xe4\x2f\x1c\x75\xc5\x86\x66\x6c\x17\x21\xbc\xaa\x9c\xbf\x74\x42\x63\x0e\x61\xdb\x29\x01\x53\xee\x53\xdb\x09\xd3\xac\xc5\xb5\xae\xda\x78\x11\x5a\x85\x36\x54\x97\x27\xf6\x33\x90\x98\xb8\xf0\x98\xf2\xc8\x0a\xfa\x07\x56\x2d\x38\xd9\xbb\xeb\x15\x2f\xc1\xe8\xcf\x1e\xb9\xee\xe8\xc9\x84\xad\x0a\xbf\x62\xee\x7f\xff\xc3\xc0\x37\x5b\xf2\xf7\xa4\x36\x51\xc2\x0c\x8e\x10\x9f\xef\xab\xa5\x09\x66\x1b\xf2\xa6\x27\xbe\xe0\x20\x7c\xf6\xd8\xb1\xc5\xf3\xa7\x28\x1b\x0a\xff\xdc\xd8\xf0\x47\x2d\xa5\x10\x31\x77\x42\xc5\x6a\x53\x46\x9f\xbd\x57\xaa\xeb\x13\xcd\xb2\x09\x7a\x5e\x0b\xf3\xce\x8f\xec\x26\x54\x14\xad\x6a\xcf\x66\xb9\x10\xb2\xbf\x2e\xfa\x11\xb5\xc2\x97\x0d\x13\x39\xd6\x86\x7b\x99\xc9\x13\x4e\x9e\xaf\x6f\x1a\xbf\xec\x01\xe1\xf2\xad\x17\xf9\x13\xad\x87\x19\x6c\x97\x11\xad\x9c\x7a\x4a\x90\xb0\x34\x62\xa7\x75\xe0\xe1\xdd\x6c\xb8\xa4\x1f\xd4\xda\x1d\xd1\xc3\x80\x3b\xb6\x2a\x74\xaf\xf7\x20\x83\xde\xce\xac\x0e\xf9\x97\x55\x0c\xae\x8c\x1f\x37\xee\xa2\xab\x36\x8d\xc1\xb5\xee\xa7\xce\x93\xeb\x60\x10\x6e\xea\x1c\xa3\x5a\x37\x9e\xa0\xcb\xeb\xf3\x2e\x7f\xc9\x14\x42\xb9\xe0\x34\xbb\xc7\x1b\x25\x08\x75\x17\xb2\x8f\x6b\x09\xdb\xb1\x41\x6a\x5b\xd2\x81\x73\x01\xc2\x84\x26\xf7\xb2\xe1\xbe\xce\x5f\x0c\x36\x9d\xba\x58\x38\xb8\xa5\x9c\x81\xac\x91\x45\xe2\x3e\x8e\xfd\x34\x06\xa9\xb8\xb3\xfe\x1c\xae\xd2\x84\x7d\x67\x3c\xa5\x2e\x2c\xf9\xc3\xa0\xf7\xd5\x89\x5f\x35\x41\x6b\x08\xad\xa7\xbc\x54\x15\x16\x71\xb0\x21\xab\xfb\x0d\x4b\x7a\x75\x39\x83\xdf\x59\xa6\x36\x89\x53\xf6\x13\xbe\xfd\x90\x5c\xad\x24\xc7\x4b\x38\x9d\x13\xb1\xb2\x76\xc7\x44\x82\x57\x8a\x5c\xb4\xee\xea\x08\xc2\xa1\x10\xf7\x84\xf5\x1f\xec\x09\x1a\x9e\x2a\xad\x53\x8f\x04\xb1\x15\xb1\x62\x85\x26\xcd\x0f\xc2\x84\x03\xe7\x42\x28\x7c\x99\x1b\x61\x0b\xff\xf0\x85\x2b\x53\xbd\x09\x26\xb3\xf6\x4f\xba\x7f\xee\x2e\x21\x75\xf0\x0b\xed\xfb\xae\xcd\x06\xde\x67\x3b\x8b\xde\xd5\x6e\x62\xc3\x1a\x55\x45\x73\x03\x95\xe9\x04\x1f\x9a\x9d\x3c\xc7\xff\x0f\x83\xf3\x0f\x0e\x84\x9b\x5c\x55\xa0\x31\xec\xd0\x70\xcc\x29\x9c\x23\x42\x98\xad\x27\xbf\xcd\x76\xf0\x36\x61\xd5\xb5\x81\x45\x7f\x21\x9d\x67\xf5\xf8\xe0\xad\x6d\x2c\xf8\x4e\xd0\x54\x1b\x8c\x3c\x4d\x38\x14\x1b\xbc\xd9\xc1\x6f\x06\x41\x69\x8b\xe9\x09\xa9\x57\x1a\x6c\x45\xd9\x73\xd9\x99\x15\x91\xf7\x08\xca\x15\xf1\xd3\xaf\x9d\xba\x47\xb0\x72\x5c\x70\x2a\x76\xf6\x61\x42\xd2\x1c\xb5\x3f\x6b\x65\x0f\x13\x3e\xf3\xa5\xee\x54\xac\x73\x21\x58\xe7\x7c\x5b\xf3\x2c\x77\x03\xe1\xd9\x9a\x12\x61\xa9\xcb\xfc\x04\x83\xa0\x1b\xdd\x03\x4f\x6d\x08\x59\xd9\x02\x03\xaf\xb3\xe5\x09\x17\x43\x22\xaf\xdc\xec\x33\x66\x03\xb7\xab\xaa\x6d\x83\xb6\x32\xa1\x63\xcf\xfa\x90\x6e\x13\x6d\x02\xa7\xe7\xd7\x0b\x36\xfe\x32\x84\xb6\x79\x52\xf1\x5d\xdd\x1f\x19\x1c\xb9\xbd\xe9\xf1\x8e\x2d\x47\x68\x0c\xcb\x3d\x4e\xaf\x93\x13\xd1\x27\xf0\xfb\x3d\xd9\x7a\x56\x72\x3d\xc1\x69\x99\x45\xc7\x8a\xc3\xf3\x09\x21\xa2\x73\x74\x77\x7e\xd4\x23\xac\x89\x5e\x75\xcc\xd4\x50\x81\x0d\xae\x92\xb3\xa7\x45\x2c\xe8\x65\x10\xc2\x95\xac\xd0\x23\x7f\xab\x10\x7a\x49\x4b\x26\x86\x09\x67\x11\xb4\x6f\x65\x47\x9b\xec\xcb\x20\x28\x18\xe5\xbe\xb4\x16\xb8\x43\x38\x7c\x53\xdd\x5e\x6d\x38\x88\xe0\x79\xc5\x7c\x6f\x4c\x7f\xd0\xe8\xf9\x6b\x4b\xe9\xfe\xe3\x41\x84\x66\xcd\x64\x57\xef\xf7\xde\x04\xd3\x06\xf1\x8d\xf7\x7b\x47\xef\x32\xa7\x68\x5d\xf3\xcd\x04\x82\xbb\xb9\x11\x9f\xf2\x4e\x5f\x16\xac\x73\x36\xad\xe5\x88\x4b\x60\x1b\x6a\x2b\x3d\xeb\x38\xd9\x26\x80\x30\xe3\x61\xfb\x74\x1e\x23\x03\x82\x98\x84\xcd\xde\x47\xac\x6b\x2c\xe8\x70\xa4\x64\x1a\x69\x55\x10\xa4\x7f\x74\x76\x18\xa6\x96\x50\x7f\xbd\x44\x34\xcb\x45\x98\xd0\x22\x3e\x43\xa3\x66\xb2\x39\x61\x63\x57\x07\xdf\x34\x1b\x75\x42\x47\x96\xba\x8a\x7f\xd9\x74\x82\x73\x88\xa9\xdb\xa6\x2c\x01\xc2\xd0\x8e\x2d\x2c\xf9\xa3\x1e\x6c\xb0\x52\x9f\xa9\x71\xe3\x7d\x1a\xa1\xcc\x60\xdf\xb9\xd4\x4d\xed\x0c\xd2\x0f\x7e\x98\x92\xcd\x21\x47\xff\x41\xff\x7d\x8f\x3d\xed\xf6\x17\x58\x90\xf4\xb9\x19\xce\x31\x7f\x39\xe1\xf6\x93\xe7\x59\x5f\xe5\xd7\x12\xbe\x46\xa9\x50\x47\x6e\x22\x61\x9e\xb5\xc0\xb2\x26\x83\x54\x82\x85\x82\x2f\x87\x56\xd0\x39\x42\x9f\xdd\x0c\x27\xd5\xf6\x5d\x2c\xac\x5a\xb5\xba\xe5\xfc\x8c\x54\x42\xf5\x71\x69\x55\x27\x83\xab\x84\x82\xce\xbd\x03\x01\xcb\xe5\x08\x9f\xef\xdd\xdc\xe2\xaf\xd3\xc5\x20\xf7\x71\xfe\xf0\x45\x9d\x21\x36\x58\x3f\x4b\x35\x9c\x65\xde\x58\x88\x75\x13\x3b\x5b\xcf\x18\x9b\x12\x8e\xec\xcf\xf0\x6b\x93\x7a\xce\x40\xfb\xc6\x47\xfe\xd8\x8b\x3e\x84\x96\x5e\xd6\x94\xdd\xc9\x75\x0c\x56\x04\x9f\x72\xab\xbb\x51\xc1\xa0\x78\x7a\xe2\x5b\x81\x3c\x21\xfa\x07\xee\x2c\x97\xbd\x18\x6c\xa9\xf9\x2f\x14\x7c\x11\x12\x14\x1e\x01\x83\xf1\x37\xef\x79\x77\xce\x2e\x26\x7c\x8b\x8e\x3e\xdc\x31\x21\x88\xc0\x71\x58\x70\xf5\x8a\xd1\xd3\xa0\x39\xef\xbc\xb3\xb3\x97\xa6\x13\xa6\x64\xbd\xfe\x66\xd2\x57\x41\xb8\xc3\x75\xd7\x60\x87\xa5\x1e\x61\xdb\x5b\x65\xf5\x9d\x5f\x3e\x32\x38\xbf\xc8\xac\xd7\xc7\x72\x21\xa1\x73\xe6\x26\xaf\xc6\xdb\x0a\x04\x25\xaf\x73\x71\xb3\x63\x67\x11\x02\x94\xf3\x27\x1b\x50\x32\x1b\x36\xae\x4c\x49\x3a\xc9\x17\xf3\x2f\xec\xf7\x90\x4a\x4a\x6b\x2c\x22\xcc\x7a\x78\x51\xe8\xbf\x61\xb5\x38\xb7\xb9\xf3\xd0\x79\x82\xff\xe7\x10\xee\xa7\xaf\x12\x09\x53\x39\xeb\x5c\xfe\x42\x69\xf0\x43\xd1\xfe\x5a\x62\x83\xe9\xf5\xb0\x82\x4f\x75\x4e\x84\xcb\xb9\x25\x6b\x77\xdc\x5a\x43\xfd\x7d\x19\xe3\xdd\x0f\x9f\x26\x24\x45\xb8\xaf\x70\xf1\x53\x20\xec\xca\x58\xfb\x93\x4f\xa6\x9b\x41\x74\x06\x67\xe8\x16\x6e\x29\x02\xc7\xa1\xbb\x59\xdf\x79\x67\x10\x2a\xa7\x25\xf1\x7f\x7a\x70\x96\x85\x58\x95\xc9\x56\x0d\x87\x04\x08\xdf\x96\x66\x6a\x66\xa5\x4e\x24\x2c\xdb\x54\x7b\xc1\x8e\x25\x4e\xd8\xa4\x11\x56\xd5\xb3\x6f\x33\x81\x76\x7b\xe3\x41\xbe\x19\xe1\xd2\x34\xe1\xa8\x3f\x81\xda\x84\x49\x81\x2f\x0a\x98\xe2\xf9\x04\x9a\x6d\x22\x6b\x50\x0a\x06\x27\x73\x7f\xc4\xcf\x9a\x95\x4d\x38\x22\xbe\x86\x77\xf6\x28\x8e\x9e\x76\x5e\xf1\xfc\xd0\x54\x42\x75\x0d\x6f\xf4\xae\xb2\x89\x04\xed\x13\x32\xef\x64\x67\xcb\x12\x5c\xf8\x93\xed\x3c\x17\x99\x13\x9c\x03\x17\xa5\xf8\x6a\xd9\x10\xe2\x86\x3a\x12\xb6\xb7\x18\x13\x3a\x97\x7e\xfc\x9d\xdf\xfa\x84\x81\xec\xc5\x06\x0c\xf3\x68\x11\x7c\xb4\x97\x7d\x0e\x74\x13\x20\x4c\x7e\xda\x28\x5c\x70\xfa\x16\xc1\x7b\xa3\x7e\xdb\x14\x4e\x69\x82\xe9\x72\xab\x57\x43\xae\x12\x84\x55\x5a\x0d\xd7\x4a\x2f\x2e\x20\x24\x36\x4c\x6a\x2d\x1a\x9e\x4c\x50\x94\x77\x1d\x8c\x8b\x08\x63\xe1\xeb\x77\x7d\x93\x3b\xca\x9a\x34\x86\x37\x9f\x55\x1a\x7d\x07\x5d\x09\x02\xb5\x5e\x53\xdc\xb7\x6a\x13\x3e\x98\xf3\x34\x7b\xaf\xda\xcc\x42\xfb\x9b\x8f\xcb\xdc\x6d\xc3\x08\x6f\x32\x5d\x4d\xa6\x45\x4c\x26\x48\x9e\xa9\x3a\x33\x78\xee\x21\x0b\xbf\xfb\xce\x14\x3b\x5d\x6d\x65\x60\xd0\xf4\xfc\x8e\x53\x73\x09\xa1\x3e\x21\x2f\xf1\x2f\x4a\x72\xe7\xcd\x0b\x5f\xf5\x9e\x10\x59\x70\x3c\x7e\xd3\x68\x79\x90\x78\x71\x68\x5f\xe3\x1c\x82\xa8\xc1\xd2\x01\xab\xe5\x12\x6c\x43\xdd\x9c\x97\x6f\xfd\x85\xbd\xc5\xdd\x47\x7f\xa1\x7c\xd0\xe2\xd2\x7f\x5f\xfc\x20\xfa\x59\xc3\xff\xfb\xef\xfc\x1f\x48\x90\xe5\x16\x97\x51\xfc\xe2\xdb\xf3\xe2\xef\xc5\x2d\x2f\x3c\x95\xac\x47\x2f\xb6\x8c\xb8\xb5\xa7\x6d\xf5\xc3\xff\x89\x1d\xa5\x4b\x7a\xc7\x27\xeb\x10\x94\x4f\xe9\x67\xde\x4d\x96\x27\x08\x7f\x3f\x65\x57\x7e\x40\x84\x0d\xfb\xbb\x23\x55\x15\xf6\x97\x33\xc8\xff\x60\x74\xac\xbe\x78\x1e\xa1\xea\x92\xf1\x94\x32\x61\x0e\x36\x64\x2e\xe2\x0e\x99\x5c\x7d\x9d\x85\xf0\x83\x6e\x1a\xc6\xc2\xa7\x08\x3f\x5c\x15\x45\x3c\x26\x35\x33\x63\x10\x78\x9d\xb8\xd5\x5b\xf6\x2e\x61\x9f\x61\x65\x5a\x83\xc5\x32\xc2\xf0\xde\x20\x6f\x9f\xc6\xf1\x04\xdf\xb9\x33\x6f\x9b\xe7\x1a\x13\xae\x67\xdd\x0f\xe8\x73\x49\x61\x43\x57\xd3\xb1\x0f\xeb\x3d\x93\x08\xf7\x3d\x73\xf8\x36\x8c\x82\xeb\xe4\x82\x33\xc7\xf5\x8f\x11\x8a\x98\x09\x41\x4b\x97\x05\xfc\x0b\x1d\x49\x71\xd2\x82\x7f\x8e\xff\x0b\x9f\xe7\x94\xc8\x1a\x72\x85\x10\x3c\x56\xcb\x19\xcd\x89\x93\x64\xc3\x9b\xa4\x00\xfe\xcf\xaa\xfc\x6c\x90\x8c\xbd\xe7\x29\xed\xfc\x80\xb0\x3d\x74\xee\x82\xab\x17\x95\x09\x75\x91\xf7\x78\x76\x0a\xac\x22\x64\x06\x9c\xaa\x9c\x26\xcc\x43\x98\xe2\x71\xec\xe1\x4b\x67\x51\x42\x5c\xb4\xd4\x63\x87\xab\xfa\x04\x33\xfd\x10\xe1\x76\xb7\x0f\x0c\x92\x53\xec\xf9\xe2\xe2\x64\x69\x0c\x3f\x5f\xf1\x6c\xaf\xcc\xea\x65\x70\x64\x47\xe5\xd6\xf9\x7b\xe4\x09\xb1\x4b\xd6\x0e\x44\xbc\x99\xce\x86\xfd\x4f\x8f\x7c\xf0\x5a\x1e\xc8\xa0\x7f\x71\x73\xbc\x67\x2e\x1f\xc1\x72\xe0\xb0\xd8\x9b\x19\xc2\x04\x7e\xb9\xf2\xee\x32\x81\x1c\xc2\x25\xb5\x37\x77\x6a\x0c\x52\x08\x2d\x0e\x3b\xc5\x1a\x16\x2f\x24\x3c\x5a\x32\x81\xab\xe2\x7c\x20\xc1\x2e\xf0\xc3\x61\xab\x77\xdf\x18\xf0\xad\xbb\x3e\x9d\xf3\xd1\x38\x1a\xc3\xd6\x55\x57\x7e\x6f\xbd\xa7\xca\x86\xab\xd2\x3a\xdb\xbe\xe4\xe5\x13\x7e\x6b\x0f\xf0\x65\x36\x5d\x21\x7c\x2f\xbe\x18\xb1\x4e\xff\x23\x83\x0f\xa9\x4b\xd2\xbd\x93\xd7\x11\xa2\x7b\x07\xea\x56\xc7\x07\x12\xd2\x32\xde\x84\x37\x08\x2f\x27\x98\xf5\xbe\xf5\xfe\xee\x3b\x97\xf0\x95\xa5\xfe\x52\x33\x38\x9f\x20\xdd\xda\x2d\xd6\x99\xdb\xc4\xa0\x4f\xd3\x4c\x7a\xe5\x32\x01\x42\xfc\x78\x19\x26\xcc\x5f\x9e\x50\xca\x6d\xd7\xf3\xc6\xc4\x96\xf0\x76\xb7\xa9\xd9\x3c\x7e\x49\x02\xd7\x95\xa7\x31\x66\x6b\xb7\x13\xca\x37\x77\xf5\xc8\xde\x9c\x40\x10\xef\x0c\x56\x69\xde\xad\x44\xe0\xb8\x11\x3e\xe7\xc4\xe5\x56\x06\x3c\xce\xc3\x0f\x3e\xf9\xd9\xd0\x3f\x70\xbe\xbc\x42\x4e\xf4\xfd\x64\x42\xa3\xc5\xd3\xb3\xf3\xef\xcd\x25\xf4\xac\x59\x18\x3b\xbb\x27\x90\x0d\x86\x13\x92\x97\x8b\x3e\xf4\x23\x7c\x6f\x7d\xb1\xef\xa6\x0a\x27\xe1\xde\xbe\xb2\xef\x07\x37\x77\x33\xd0\xb8\xf2\x68\x28\x78\xe6\xcc\xd1\x63\xc2\x43\xbb\xed\xf5\x42\x84\x6a\x01\x6d\x2d\x2b\xc3\x2c\x16\xdc\x62\xeb\xde\x28\x9d\xf8\xcd\x80\x2f\x50\x71\x81\xdf\x3a\x1e\x1a\xc3\xfd\x20\xf3\x9f\x2f\xbf\xd7\x16\xc2\x74\xd9\xae\xce\x19\x8a\x53\x08\x1f\xaf\x38\xc7\xf5\xce\xb6\x61\x83\xe9\x52\x7b\xed\xbf\x5b\xc1\xe3\x37\x1f\xba\x64\x88\xd5\x32\xd0\x86\xd5\x59\xb9\x02\x23\x1a\x83\xe6\x8b\xd0\x50\x56\x97\x06\xa1\xc8\x42\x6d\xfc\xb0\x78\x26\x61\xe6\x52\x2b\x27\xce\x2d\x3c\x84\xd6\x5e\xeb\x91\x0d\x17\x1e\x33\xf0\xfd\xfa\x7b\x81\x94\xf3\x3e\x82\x98\x6b\xcc\xa4\x3e\x6d\x69\x02\xef\x49\x99\x2d\x50\x9d\x41\x08\x94\x7b\xa6\x20\x33\x51\x93\xf0\x78\x56\xe0\xed\x8d\x8f\x26\x11\xc2\x57\xb4\x3e\x54\xe4\x1a\x4f\xa8\xcc\x17\x70\x4a\x2f\x58\x42\xe8\x50\x4f\xa6\xd3\x2b\xb5\x08\xd1\xc2\xea\xf1\x96\xcd\xfc\x04\xa5\x8d\x27\x9f\xc6\x9b\x68\x12\xbe\x68\xac\x54\xf1\x49\xed\x66\xd0\x95\x6c\xba\xe9\xb8\xaa\x34\x8d\x61\xde\xde\xc5\x6a\xf9\x1a\x7d\x0c\xfe\xcc\x4e\x9e\x1b\x67\x50\x44\x70\x17\x8b\xb0\xed\x6a\x2d\x26\x9c\xc9\xb1\xb8\x61\xae\xc7\x22\x44\x5f\x2c\x3f\x90\x77\xe5\x12\xc1\xee\x44\x0b\x55\x29\x5c\x62\x2b\xfa\xe1\xef\xe2\x5c\x3d\x8e\x8d\x4e\x92\x25\x93\x6b\xd6\x0f\x32\x98\x26\xd5\x7c\x68\xab\x95\x26\x8d\xc1\xf5\x32\x33\x99\x47\xf8\x1e\xe1\x8f\xcb\x5c\x53\xb9\x16\x5b\x42\x9a\xb0\xb9\xfb\x2a\x9d\x52\xc2\xcb\x71\xe2\x9f\x99\x90\x87\x04\x9d\xf8\x49\xba\xb6\xa3\x25\xc7\xfa\x07\x87\x43\xc2\x37\x06\xf7\x53\x62\xd3\x3f\xa5\xac\x22\xcc\x1c\xf8\x1e\x3f\xf1\x07\x18\x84\x2d\xaa\xcb\xcb\xe7\x39\xc5\x42\xa8\xfe\x26\x8e\x94\x70\x53\xc2\x32\x48\x86\x7d\x92\x70\x62\x81\x79\xe2\x7e\x6a\xe8\xe2\x00\x03\x23\xee\xdb\xac\x77\x1b\xb2\x09\xbb\x95\x56\x2b\x08\xe8\x6f\x21\x18\xdc\x39\xb0\xf1\x4b\xb3\x0b\x21\x28\x62\x63\x53\xd1\x9d\x28\xc2\x87\xb4\xc6\xfb\x36\xd1\x44\x90\x51\xb1\xde\xa1\xaa\x20\x46\x60\xc9\x84\x2f\x17\x17\xe6\x26\x1c\x7e\x6c\x1a\xed\x64\xe2\x4a\x78\x71\x4f\xd5\xa0\x9d\x67\x2f\x21\xb1\x74\x57\x8d\x96\xa2\xe8\xbf\x70\xd3\xd8\xb9\xd9\x23\xf5\x3c\x61\x9f\x11\xcb\x7c\x45\xd2\x16\x42\xb2\xf7\xee\xe5\x66\x9a\xd2\x84\xa0\xe6\x0b\x07\xda\x9f\x25\x10\x74\xa6\x2d\xb0\xe9\xb0\xd7\x24\xec\xbf\xe2\x19\xdc\xff\x74\x3a\xe1\xb0\xb0\x8b\x7e\xd7\xe3\x69\x04\xd9\xf8\x76\x13\x8f\xed\xb3\x09\x8b\x2c\x74\x97\x3e\x0f\x9c\x49\x28\x30\xd2\xbe\xd2\xfe\x50\x87\xa0\x5e\xe4\x65\x7f\xa6\x77\x37\xa1\xbc\xb1\x6d\xce\xb6\x9e\xe9\x84\x8d\xbe\x39\xde\x9e\xeb\x85\x08\x9f\x37\xb3\x44\xa6\x55\xa9\xb3\x21\xa9\x3f\x46\xc2\xf0\x40\x24\xa1\x98\x77\xde\xd9\xc6\x4d\x27\xd9\xca\x49\x37\x87\xdf\xea\x1c\xa7\x09\x97\x5e\x6f\xbe\x15\xdf\xf2\x8a\x41\xca\xf3\x75\xd3\x3d\xba\xa5\x09\x2b\x56\xce\x3f\xd6\x58\x2b\x4a\x18\x7e\x7b\xbf\x87\x27\xbc\x94\xc1\xe1\x08\x99\x06\xbb\x23\xbc\x34\x86\x5b\xa2\x1f\xce\x06\xeb\xbe\x60\x10\xa4\x98\x13\xed\xcb\x68\x11\x12\x9e\x9f\x6b\x30\x4d\xe8\x66\x20\xc2\x3f\x3c\x90\x90\x76\x94\xc6\x10\xd8\x57\x7c\x53\xcd\xd6\x85\xa0\x29\x54\x9a\xd6\xfa\x4d\x93\x90\x77\xf7\x84\xfe\xc2\x0f\xad\x0c\x4e\x04\x34\xf9\x98\x66\xcf\x23\xf0\x2f\xf8\xd4\x66\x38\x3a\x7b\x07\x14\x02\x8d\x7d\xe7\xf0\x11\xe4\x83\x53\x57\xf5\x4e\x54\x24\xf4\xff\xde\x66\xee\x3e\xc9\x80\x70\xd1\x6a\x7b\x5b\xe8\x95\x14\x16\xcc\x44\xb8\x7e\x68\x7b\x3c\x64\x21\xc8\xa4\xd4\xfe\xfd\xef\xa5\x84\xed\x31\xe1\xfa\x73\x3a\x8f\xb1\x70\x99\x15\xd9\xb7\x5d\x77\x06\xa1\x27\x2a\xae\x42\xe3\x97\x0e\x21\x77\xd3\xf0\xd2\x2e\x5d\x30\x38\xb1\xd4\x99\x87\x8c\x63\x09\xfa\x77\x66\x1c\x6a\x75\x3d\x4c\xd0\x38\xb6\xe2\x72\xc7\xc3\x6b\x04\xfd\xa7\x5b\xda\xeb\xef\xa7\x10\x0c\x6c\x52\x14\xc2\x6f\xae\x65\xc3\xe4\x6a\xab\x8b\xd7\xbd\x77\xff\x6b\xa8\xcc\x47\x5e\xd0\x67\x9d\x02\x61\x6f\x4d\xe3\xd0\xf2\x14\x53\x42\x2f\x5a\x5f\xb6\x7b\xfc\x64\xf0\xbd\x7b\xb1\xaf\xb9\x32\x17\x8d\x61\xe2\x79\x8e\x2f\x8e\x7b\xac\x09\xfd\xc9\x61\x8c\xb1\x54\x28\x41\xf1\x93\xe7\xbb\xec\x64\x4b\x16\x04\x86\x8e\x0a\xa9\xce\xe3\x25\xec\xd5\x75\x4d\x95\xf0\x8d\x27\xc8\xad\xf0\x3a\x91\x55\x26\x45\xb8\x18\x2d\x6b\x35\x07\x82\x04\x89\xc7\x4b\x17\xd9\x1d\x99\x48\x28\x3c\x56\x1c\x30\xef\xab\x1a\x1b\x2c\x07\x92\x1c\xb2\xde\x1a\x10\x4e\x7e\xae\x29\xb9\xaa\x51\x54\x08\xce\x94\x05\xc1\xc9\x6e\xda\xa3\x0f\xbd\x88\xc9\x8b\xc7\x6f\x20\x4c\x75\xb3\x17\xfe\x9d\x65\x43\xc0\x3b\x7b\xcd\xdf\xed\x8b\x08\x4d\xd7\x6a\xbe\xbd\x3e\xb3\x87\x60\x34\xa7\x63\x99\xcb\xaa\x85\x04\x51\x0f\x9b\x90\xcd\x39\x33\xd8\x60\xb1\xe2\xb0\xf3\xf4\x82\xcf\x0c\x76\x08\x58\x3b\xd5\x6d\xbe\xcc\xc2\x8b\x7b\xbb\x42\x7c\x2d\xa2\x59\x58\x71\x3e\xa2\xf0\x92\x92\x20\xe1\x25\xff\xe9\x5b\x5f\x46\xef\xe0\x7f\x70\x90\x5b\xd3\x48\x82\x19\x64\x30\xff\xf4\x11\xf5\x95\x13\xa2\x09\xdf\xb2\xab\x5a\xbe\xa5\x73\x10\x4e\xa9\x8b\x98\x17\x43\x9f\xa0\xcd\xa3\x1c\x6c\xfc\xfb\x26\xc1\xd6\xf2\x4d\x5b\xfc\x84\x5b\x84\xc7\xa5\xb6\x47\x16\xe8\xfc\x64\x70\xb3\x64\x87\x6e\xf0\x55\x5b\x82\xc8\xa0\xdb\xa3\x56\x4f\x7e\xc2\x22\xde\x1b\x6a\x9a\xdf\xf8\x09\xa6\xaf\x0d\x47\x22\x2e\x8a\x13\x3c\xdb\xf6\xa7\x75\x37\xc8\x11\x7a\x18\x4f\xf5\xfa\x32\x69\xd6\x58\x19\xde\x78\xe1\xf4\xea\xe2\x7e\x06\x66\x46\x73\x13\x93\xcc\x54\xe9\xff\xfb\xbd\xa3\x3c\x36\xe8\xc4\xec\x95\xfb\xbf\x60\xe6\x53\x9f\xf9\xe6\xa3\x37\xf7\x7f\x60\xfd\xf0\x8f\x63\x6b\x2e\x88\x13\x4e\x14\xea\xbb\x1d\xe4\x3b\x48\xd0\xd2\xce\x0e\x76\xb7\xb3\x27\x5c\xb9\xdb\xdd\x7d\x7b\x8b\xd7\xbf\x90\x9e\xbf\x40\x36\x2c\xce\xe7\x5f\x28\xb3\x55\x78\xe7\x62\x58\x44\xe8\xce\x7c\xee\x94\xbb\xab\x88\xb0\x70\xef\xc6\xe7\xbf\x7c\x8a\x08\x0b\x9e\x57\xed\x90\xd5\xf4\x27\x2c\xb4\xbc\x7c\x46\x2d\x70\x09\x1b\x0a\x77\x0b\x64\xef\xda\xd8\xc3\x8c\xe1\xb9\x65\x72\x80\xb4\x5b\x7d\x21\xd6\x5a\x5a\x69\xb5\x4e\x6f\x62\x70\x77\xa3\xf2\x9a\x6a\xbe\x09\x84\xaa\x40\x6d\x1b\xed\xa0\x1f\x0c\x96\x85\xbb\xde\x3c\xb7\x58\x9e\x60\xe9\x7d\xbe\x7b\xe1\x3c\x7e\xc2\xad\xfb\xa9\x9f\x99\xab\x36\x84\xab\x9d\x47\xf4\x2f\x78\x56\x14\x62\x65\xb5\xe7\xeb\x16\xe9\x25\x34\x86\x65\xb7\x27\xdc\xad\x1c\x57\xc6\x8c\x41\x61\xca\x42\xef\x35\xa3\xd3\xf8\x3f\x30\x8a\xab\x57\x1a\x9a\x69\xcd\x06\xcd\x23\x6b\xb9\xaf\x98\x1d\x60\xc3\x76\x63\xc5\x2c\x9f\xcd\xee\x84\x9e\x66\x37\xd6\xb9\xd5\x7a\x04\x7b\x87\xd2\x26\x3b\x57\x5d\xc2\xee\x85\xaf\xc5\xb5\x8f\xcd\x64\x43\xf2\x8e\x29\x7e\x53\xe4\x0d\x09\xb6\xe9\xdc\x19\x35\xb7\x06\x19\xf8\x5b\xfa\xf2\x2d\x1c\xde\x48\x98\xb7\xab\x5a\xfc\xa3\x4d\x2a\x0b\x6d\x5f\x9b\xa3\x2a\x82\xe5\x09\xd6\x5e\x2b\x4a\xb8\x55\xb8\x09\x32\x71\x7e\xd6\x66\xbc\x44\x28\x3b\x70\x4b\xb5\x4c\xbe\x89\x19\x83\x69\x87\xa6\xaa\xb4\xf3\x17\x06\xbf\x9a\xda\x6c\x34\x9c\xa6\x13\xbc\x8e\xbb\x3d\x28\x7a\x25\x45\xf8\xcc\x23\xc0\x27\x95\x02\x06\xca\x02\x02\x29\xd5\xd2\x1a\x04\xcb\xd9\xd5\x5f\x62\xed\x92\x59\x63\xe5\x91\x82\xe3\x92\x87\x73\xf9\x08\x6e\xc1\x19\xbb\x07\xf7\xe4\xb2\x30\xb1\x3c\x61\xef\x0c\x53\x7f\x42\x85\x9b\x53\xcc\xd1\x59\x07\xa8\x5f\x22\x5a\xc1\x79\xcb\xe9\xff\x7c\xe2\xea\x9a\x93\x2e\xf9\x73\xf2\x08\xcb\xdd\xbf\x6c\x30\x74\xca\x27\xe8\xcd\x15\x3c\xfa\x29\xae\x84\x05\xdf\x53\xf5\x34\x77\x52\x20\xc1\x39\xfd\xed\xa0\xce\xcd\x48\x16\xd6\xb1\xce\xff\xae\x93\xbe\xc5\x82\xdf\xc8\x1f\x29\xdd\x1b\x2b\x09\x47\xf9\xfc\xde\x4e\xcc\x1b\x9d\x2b\xb9\x6a\x82\x85\xae\xec\x70\x2b\x3c\xf0\x38\xcd\x28\x8e\xe0\xf3\x3c\x2c\xde\x81\x6b\x37\x61\x42\xe3\x94\x78\xaf\x0b\x27\x09\x73\xee\xa7\x9f\x4e\xb1\xdb\xc9\x86\x38\x21\xb3\x01\x8d\xba\x4c\x82\xa7\x5f\x30\x2b\xf4\x63\x26\x61\x9b\xf2\x25\x33\xd6\x69\x27\xc2\xa4\x83\x3e\xad\xe3\x78\xd7\x13\x1a\xc5\x3a\x2d\x92\x8c\xb7\x13\xf4\x39\x1e\xfd\x14\x3e\x19\x4b\xc8\x1b\xce\x4c\x0c\xf2\xdb\x40\xf8\xbe\xe7\xa6\x78\xce\xf5\x15\x2c\xcc\x78\x1f\xbe\xa7\xc1\x32\x9e\x85\xc1\x44\x89\xb9\x3e\xed\xbb\x09\x71\xa9\x74\xeb\xab\xed\x19\x82\x90\xe9\xf5\x0d\xa7\x17\x1f\x25\xec\x55\x7a\x77\xe0\x53\xdc\x51\x42\x33\x4f\x98\xf4\x7f\xe3\x3b\x13\xb7\x55\xae\x6a\x0f\xe1\x43\x7c\x6f\xef\x38\x4e\x3f\x02\xaf\x57\xaa\x4c\x72\x2e\x7b\x79\x6f\x32\x30\x9d\x43\x25\x87\x10\xc2\xc4\x85\x5e\xce\xf4\x25\xac\x58\xa3\x7f\x61\x19\x4b\x80\x90\x96\x50\xcb\x57\xd7\xb3\x99\x10\xf9\xd4\xdd\x3a\x0a\x21\x6c\x58\xce\x5b\x58\x5b\xa5\x1d\xc4\x86\xe8\xab\x95\xe3\x5f\x8c\x2e\x57\xe9\x08\xc2\x8f\x2b\x31\x84\x1a\x87\x0e\x85\x77\x73\x8b\x09\x6f\x7e\x0a\xb9\x65\xdf\x0a\x23\x9c\xbd\x64\x16\xb0\xf2\xdc\x12\x16\x36\x99\xf2\x8a\x33\x37\xc3\x08\x1b\xd6\x6a\x6b\xc8\x79\xfa\x10\x7a\xb5\x9e\xb8\x5a\x78\xed\x22\xcc\x33\x2d\xb3\x75\xd0\xdb\xcd\x60\x46\xf4\xaa\x59\xa1\xa7\x5e\x33\x90\xd3\xb6\x95\x3f\x52\x4f\x34\x86\xdf\xd7\x5c\x85\xef\xf2\xde\x2e\x84\xf3\x72\xe5\x33\x97\x2e\xce\x23\x44\xc7\xdd\x39\xff\x56\x48\xbf\x10\xaa\xc5\x5a\x52\x3c\x31\xc1\x34\x86\xf5\xe6\xfc\xf3\x2e\x3d\x92\x25\x1c\xbd\x7f\x79\x9f\xde\x09\x1d\x42\x60\x11\x6f\xf6\xe2\x45\xd6\x04\x05\x27\xd5\x71\x25\x2a\xd6\x04\x15\xdb\x2a\x9b\x38\x93\xf9\x84\x77\x47\x04\x4b\xf7\x0f\xca\x13\xce\x16\x1d\xec\xd8\xe0\x35\x97\x30\xcd\x7c\x6a\x6f\xd1\x72\x2e\xc2\x82\x33\xab\x3b\x24\x35\x7e\x31\x10\xbf\xed\x19\x28\x92\xc2\x4b\x63\x68\x49\x91\x15\x61\x5e\x95\x32\x63\x28\x67\x05\x4f\x77\x57\xb7\xa5\x31\x38\x54\x2b\x0a\x2d\x6c\x90\x22\x14\x7e\xfe\x16\xf6\x75\x77\x3a\x61\x78\x4b\xc8\x04\xe3\xb3\xd2\x84\x63\x77\x15\x7e\xea\x0f\x3c\x24\x74\xdd\x7f\x6d\x28\x3a\xfd\x09\x0b\x45\xe7\x03\xcd\x42\x1c\x12\x09\x69\xad\xef\x5a\x9b\xf8\x8a\x08\x15\xd9\x4d\x7b\x35\xbc\x38\x09\x3a\xc7\x2e\xbf\x66\x16\x05\x13\xbc\xc7\x6f\xae\x32\x11\xbb\x44\x70\xbc\xe6\x5d\xa6\x1a\x70\x89\x50\xa0\x23\xf5\xab\x6d\xdb\x17\x06\x3f\x84\x2a\x83\xdb\x3a\xb9\x68\x0c\x4f\x34\x8b\x17\x6f\x16\xe5\x27\x68\x1e\x34\x0c\x77\x78\xae\x40\xb0\x6d\x8c\x94\xb8\x54\xd6\xc9\x60\xd7\xb6\xeb\x62\x42\xaa\x5f\x18\x78\x67\xe8\xed\x9b\x1f\x83\x7f\xa1\xb9\x4a\xca\x6f\xa9\xbd\x08\xfd\x2f\x98\x54\xe8\x05\xbc\xdd\x32\xc8\xc0\xaa\xc3\x27\xf9\xf5\x26\x86\xd0\xb2\xd9\xd3\x2d\x7e\x7d\x16\x0b\xcf\xb5\x9e\x19\x2a\x37\xc9\xd1\x18\xbe\xaf\x50\xee\x71\x76\x3b\xc0\x82\x7d\xbc\xdc\x4f\x57\x21\x5e\x82\xbe\x60\x1d\x77\x0c\xb7\x2c\x1b\x42\xde\x1a\x3a\xf9\xcd\xf1\x64\x21\x69\xdf\xb7\x05\x09\xdf\x63\x59\xe0\x31\x5a\xa7\x1b\x5a\x15\x46\x68\xae\x18\x19\xfe\xde\xb9\x88\x90\xda\x6d\x55\xae\x36\xba\x2d\xfb\x33\xb2\xe7\xbb\xac\xcf\x04\x82\x8c\xff\x9c\x18\x13\xb3\x79\x84\xbe\x24\xe6\xa5\xee\x0c\x05\x02\xaf\x81\x40\x54\xbb\xd5\x4a\x82\xfa\x94\xa3\x16\xaf\x26\x2e\x21\x5c\x5b\x7f\xef\xe3\xf3\x2c\x65\x42\xe4\xb4\xd2\x0f\x5b\x45\x56\xb0\xa1\x7c\x8d\xf0\xf2\x7d\x52\x5b\xd9\xa0\x90\x78\x61\xcf\xe3\x4f\xe1\x84\x29\x66\x8d\xfd\xd3\xaf\x8b\xb2\x61\x6f\x7d\x65\x64\x9f\xd4\x62\x36\x58\xf5\x3f\x6e\x77\x3c\x2c\xc6\x86\x43\x9d\x3f\x9f\xac\xfc\x39\xc2\xa0\xb2\xdc\x88\x25\xf9\x59\x85\xf0\xc3\xea\x0e\xc7\xb7\x6d\x72\x84\xa8\x1f\x5e\xe2\x7b\xb7\xf4\x33\x50\xc7\xe4\x33\xee\x39\x06\x84\x49\x0b\x7f\xec\x3b\xa1\xbe\x87\x20\xde\xe0\xda\x2d\xba\x44\x81\x30\x41\x24\xee\xea\xbe\x54\x33\xc2\xfa\xb4\x46\x8e\x02\x47\x3b\xc2\x87\x8b\xbf\x43\x7c\x67\x71\x11\x84\x32\x8a\xda\xbe\x3c\x5c\x4c\xb8\x78\xc5\xa9\xfb\xcd\x90\x13\x81\xf7\xb0\xff\xee\xb7\xe2\xbc\x84\xab\xc9\x03\x36\xf7\x0b\xbe\x32\xa8\x9c\xa3\xca\x71\xb2\xab\x9f\x0d\xa7\x2a\x64\xca\x7e\xf2\x68\x10\x32\xd6\x3f\x9d\x53\x57\xab\x48\xf0\x0e\xee\x0c\xd8\x77\xa8\x8b\x41\xdc\xbe\x39\xb7\x4e\xd8\xe5\x10\xf6\x27\x7b\x94\x64\x95\xbf\x61\x41\xf0\x00\xe7\x84\xee\x57\x2f\x08\xfd\x62\x99\x43\xe7\xe6\x3f\x24\x5c\x0c\xfe\xb4\x3d\xd1\x94\x21\x94\xf5\xba\x37\x45\xf5\x15\x10\x72\xf5\x5b\x2e\x5f\x68\x79\x45\x98\x7a\xcb\x40\x7f\xd6\xf1\xa3\x6c\xd8\xa7\xbc\xec\x7e\xdb\x13\x3e\x82\xf5\x91\xd3\x4b\x33\xb7\xef\x23\x4c\x1b\x7e\x3d\x90\xbe\x3e\x9c\xf0\x6a\x6b\xce\x32\xf7\xb8\xd7\x85\x38\x7f\xd4\x23\x34\x28\xc6\x88\xc6\xa0\x5f\xac\x31\xff\xdb\x47\x4e\xc2\x3b\x2b\x25\xd3\x9e\xa3\xd7\x09\x62\xf9\xee\x8f\x02\xfc\xdd\x08\x7f\x1a\x14\xa4\xdf\xd3\x4e\x16\x6a\x9d\xad\x34\xb7\x34\xc4\xb0\x10\xe5\x19\x32\xb0\xe6\xb9\x0b\xa1\x62\xa0\xd4\xcc\x59\xc8\x86\x90\x91\xbb\xdb\xe0\xe8\x27\x33\xc2\x1e\xf7\xfe\x35\x7e\x33\xf5\x09\x17\xc6\x71\x7b\xaf\x9d\xd3\xc7\xc0\xba\xe1\x75\xf9\x21\x49\x31\x1a\xc3\x99\xea\xb3\x5f\x26\x65\x7d\x65\xc6\xb0\x29\x7d\x93\xc5\xde\xdb\x0b\x08\x91\x15\xdf\x92\x33\x6a\x17\x11\x14\xe4\x17\x9b\x9d\xff\x22\x4f\x98\x3b\x20\x34\x53\x62\x8d\x02\x41\xea\x77\x57\xfe\x06\x09\x6b\x16\x0a\xbb\x42\x0e\xcc\xeb\x7c\x4c\x78\xad\x93\xe6\xaa\xba\xbb\x88\x60\x57\x64\x34\x7e\x95\x7b\x11\x41\xed\xcc\xa1\xc8\xf3\xfb\xe5\x09\x11\x45\x0f\x8e\x9e\xbf\xb5\x8c\x70\x65\xe1\xd7\xc8\x99\x8d\x8a\xff\x02\x87\xea\xf2\xd6\x94\xc7\xef\x0b\x71\x32\xa6\x52\xd3\x60\x8f\x3a\x21\xb8\xee\xcd\xf5\xdb\x4b\xf5\x08\x93\x62\xba\x3a\xda\xca\x35\x08\x2b\xfc\x36\xbc\xd6\xce\xce\x61\x30\x32\xe2\x26\x15\x37\xfa\xcd\x9f\x2a\x09\x91\xbf\x30\x7e\x09\x1b\xce\xbb\x34\xf7\xd6\x17\x08\x11\xbe\xe8\x77\xf9\xaf\xdd\xff\x96\x81\xdc\x2d\xa3\x1d\x97\x17\xe5\x11\x9e\xed\xb5\xed\xf8\xa2\x9f\x47\xd0\x5d\x37\x12\xf5\xdf\xf8\xf3\xe0\x7d\x10\x53\xb3\x81\x50\x3c\xd3\x2f\xd3\xae\xcf\x81\xe0\xf5\xc0\x79\x7a\xec\xa0\x3e\x5b\x59\xf7\x72\x8f\x97\x93\x97\x1e\x61\x58\x30\x9d\xef\x24\x57\x33\x83\xee\x9e\xaa\x84\xb0\x11\x51\xc2\xf4\xa8\xc0\xd9\x95\xa7\x93\xd8\x10\xdb\x3d\xf7\x43\x8a\x1e\x07\x61\x7b\xac\x82\xc7\x8a\x65\x8a\x84\x25\xc2\xe7\x0b\x6d\xa2\xd2\x09\x7b\xde\x49\xa9\x4f\x9d\x7a\x8d\x70\x6f\xca\x1f\x39\x21\xd5\x12\x16\x3e\x16\xa9\x74\xda\xef\x7f\xc8\x42\x66\x5b\x5b\xfa\x5f\xbc\x8f\xf2\x3b\x76\x69\xdc\x5d\x16\x9c\x0e\x2b\x7c\xcd\x9f\xb8\x98\x90\x2e\xda\x64\xbf\xfe\x7e\x4d\x21\x74\xe7\x57\x5c\xbd\xed\x3f\x89\xc6\xb0\x2b\x52\xc6\x3d\x72\x6a\x0f\x83\xf7\xdc\x3e\xc5\x86\x27\xf5\x09\x09\xeb\x02\x3a\x9c\x23\x0f\xb3\x30\xe5\xa5\x7c\xf1\xce\xc1\x13\x2c\x34\x7c\x71\xdd\xb1\xa1\x5c\x94\x60\xa0\x5f\x6e\x72\xe8\xc2\x78\xc2\x97\x44\x9f\xda\x04\xaf\x25\x6c\xf0\x68\xcb\x2c\x6d\xde\xf2\xb6\x10\x79\xdf\xd4\x35\x8a\x46\x37\xd6\x0a\x8d\x8d\x0b\x75\x1f\x5e\x26\xd4\x72\x99\x7c\xae\xbc\xde\xc6\xe0\xdc\x3a\x5f\xd1\xea\xf5\x4b\x08\x0b\x58\x7f\x2a\xea\xfc\xae\x13\xdc\xbe\x25\x2d\xfd\x5b\x8e\x49\x9f\x6e\xba\x22\x63\x4b\xc8\x50\x5f\xb5\xe6\x6c\x9a\x1e\x41\x78\xc9\x32\xcd\x3d\xdd\x47\x59\x58\x78\xbe\x5d\x34\x4d\x24\x9e\xf0\x38\xad\xf4\x9a\x5c\xc9\x2b\x16\x1a\xab\x47\xea\x82\x0d\x4e\x12\x16\xd9\x3b\xc9\xa8\x6a\xc6\x13\x10\x70\x73\xb3\x45\xae\x31\x41\xf0\xee\xaf\x8a\xa7\x96\x9e\x6c\xd0\x3c\x50\x21\xdc\x66\xc9\x4f\xa8\xd2\xa6\x7b\x25\x7a\xbc\x84\x4d\x12\x17\x8d\x53\xfb\xc5\x09\xbb\x3e\xb4\x6c\xac\xba\x21\x4c\xb8\xac\xc3\x4c\xe2\xab\x75\x66\x83\xb5\x15\xd7\xa7\x52\x17\x61\xc2\xc5\x91\xd7\x1f\x6b\xf7\xd9\x12\xd6\x3e\x51\xdb\x1f\x79\x47\x9b\xb0\x93\x6a\x4e\x0b\x96\x28\x12\x52\x15\x86\xa6\x9c\xf9\xa1\x43\x78\xe7\x31\x45\xd6\x67\xbe\x3c\xe1\xb4\xc3\xb4\xeb\x19\x37\xb4\xd9\xd0\x9c\x66\xca\x31\x33\xfd\x43\xe1\x18\x04\xbb\x8a\xd6\x3e\xce\x0b\xa1\xff\x85\x07\x9c\xf5\x2f\xf6\x5b\xdd\x25\x3c\xe9\x99\xa1\x9d\x32\x0a\xbe\xee\x95\x13\xbf\xfa\xde\x25\x4c\x49\x14\x95\xba\x32\x5a\x06\x9f\x95\x26\x5c\x1a\xc5\x01\x17\x53\x8e\x6a\xf5\x6d\x84\xea\xc5\x41\x1e\x34\xc7\x8d\xb0\xbd\x62\x56\xc0\xf0\xcd\x6d\x04\xbd\x5f\xef\xb5\x7a\xc7\x3b\xb0\x95\x1b\x4b\x77\x9f\x28\x73\xdd\x40\x48\x19\xc8\xcb\x5d\xfd\x35\x9c\x90\xf2\xf2\xa7\x7e\xbb\xca\x5b\x06\x42\x8f\x5d\xa3\x3a\xae\xe5\x11\xee\x6a\xf2\xc6\x7d\xde\x95\x43\xe0\xfe\x73\xdb\x51\x69\xb7\x3b\x0b\x05\x85\x4b\xa3\xbe\x9e\x4b\x66\xc1\xff\x6a\xb6\xea\x44\xbb\x1b\x84\x10\xa9\xfd\x57\x95\x3a\x9e\xb1\x10\xaf\x94\xb9\x60\xe3\x96\x1b\x84\xa7\xcb\x53\xbe\x4a\xe9\x08\x12\x6a\x6b\x83\x95\x97\x1d\x1b\xfd\x36\x12\x4f\xb8\xde\xe0\x1d\x62\xfe\x01\xa5\x98\x3e\x43\x3e\x85\xaf\x0c\xbe\xd7\x8f\xb7\x1e\xd7\xda\xc9\x40\x39\xf5\xfe\xeb\xc1\x52\x79\x1a\x43\x89\xfa\x50\x88\xbf\xcb\x0b\x06\x61\x33\x5e\x58\x9e\xa9\x88\x22\x48\x87\xbd\xe5\xe0\xb1\x97\x27\x74\x31\xd2\x11\xef\xeb\x59\x85\x68\x0b\xea\xb2\xef\x4c\x67\x11\xbe\x6f\x2c\x99\x9c\x3e\x52\x48\x48\x2d\x68\x11\x3a\x5a\x7c\x87\xc6\x86\x7a\xe6\xd6\xbc\xc9\x08\x3a\x4a\x50\xd9\xf8\x25\x4b\x3b\xe4\x28\xe1\x73\xac\x47\xa3\x03\xab\xaa\x10\xab\x9c\xd4\x9c\xcf\xd7\x2f\xa3\x31\x48\xc6\x07\xbb\x64\x98\xf2\xb0\xa1\xa2\x71\x83\x68\xd7\x03\x16\xe1\xb3\x53\x43\xf6\x1c\xde\x17\x84\x1e\x31\xee\x97\x7f\x4b\x7c\x5c\x75\xe0\xf0\xd0\xdb\x42\xec\x79\xf8\x93\xb7\xf5\xd9\x26\x42\x40\xa9\xaf\xec\x38\x95\x25\x84\x39\x59\x87\x0f\x45\xcf\xd5\x22\xcc\xf3\xe9\x7b\xb1\x70\xe3\x64\xc2\xcd\xd4\x94\xad\xb8\xb4\x8c\xa0\x66\x27\xd9\xe2\x16\xb0\x82\xe0\x59\x52\x9d\x50\xeb\x2d\x4a\xf0\xfe\x29\xe7\xfc\x56\x60\x74\xb7\xb3\xe0\x7d\xbe\x7a\x83\x17\xa1\x72\x6d\x60\xce\xc6\xcb\x53\x08\x11\x26\xdf\x6a\xdd\xbd\x34\x08\x75\xed\xa2\xbb\x1f\xce\xf9\xc5\x40\xb3\x34\xf0\xbd\xad\x71\x0f\x83\x91\x47\x25\x8e\x07\x84\x36\x12\x4c\xf7\xcd\xb9\x20\x65\xb1\x98\x50\x33\x79\x1b\xcf\xd2\xba\x1e\x66\x0c\xcd\x5e\x4b\x04\x52\x7d\xdf\x17\xa2\xd5\x4a\xbc\x59\xe6\x82\x1d\x21\x63\x2f\x77\xa5\x66\x82\x05\xe1\x58\xd9\xa2\x96\xf1\x43\xa3\xff\xe9\x84\x4d\x9f\xdd\xa5\xad\x08\x35\xd6\x32\x1b\xee\xbd\xd6\x24\xe4\x3e\xcc\xfa\xe6\xf2\x27\x97\x85\x82\xe3\xef\xd4\xfd\x06\x26\x10\x44\xb6\x1c\x96\x49\x9a\x5c\x4a\x48\x4c\x38\x75\x35\x6b\x42\x29\x61\xf0\xc7\x35\x81\x59\xa3\xd0\x5d\x19\x10\x95\xf5\x5f\xb8\x3c\x8b\xcb\x68\xe5\xfe\x87\x84\x35\x79\x73\x66\xf9\xfa\x3d\x24\xd8\x2e\xff\x58\xf5\x69\xe6\x53\x02\xb7\x9b\xd8\xba\xbf\x43\x0f\x33\x2f\xaa\xef\x1e\xc9\x20\xfc\xa9\xf0\xe4\x77\xdd\x5d\x4c\xd8\x91\x30\x79\xbe\xca\xde\x62\xc2\xf2\xb9\x9f\x1b\xb7\x9f\x2c\x21\xac\x99\x3b\xe4\x9f\x1d\x58\x42\xf8\x9d\x51\x57\x77\x71\x59\x31\xa1\x8b\xdf\xc8\xf2\xd2\x28\xac\x8f\xb2\xce\x34\xd8\x16\x13\xf8\x32\x14\x67\x69\x35\x17\x13\x5e\x37\x1e\xff\x2d\xe4\x51\x40\x08\xa8\xb0\x78\x68\xb9\xa2\x98\x20\xca\x3f\x53\xe2\xd1\xc5\x3d\x04\x41\xa9\x83\x7a\x5b\x65\x77\xb2\xfa\x73\x92\xa4\xba\xf4\x7d\xd8\x46\xde\xed\x1b\x70\xfb\xe9\x28\x40\x90\x1d\xd4\x56\x5a\xb8\xd7\x82\x10\x7c\x4d\x32\x5b\xcd\xc8\x94\xe0\x6c\x72\x9e\x57\x2b\xb7\x91\x85\x33\x49\x4b\x87\x4a\x63\xbf\x32\x58\xf8\xf1\xfc\x6a\x0b\xfb\xa5\x84\x22\x39\x77\x21\xbf\x4d\xfd\x0c\x8e\xcf\x55\x1b\xba\x22\x3c\x9e\x30\x2d\x23\xf6\xc6\xed\xea\x20\x16\xbe\x72\xcc\xaa\xd9\x9b\x1d\x43\x63\x58\x76\x23\xfe\xae\x1f\x19\x13\xba\x53\x9f\xf8\xae\x3b\xbe\x88\xd0\xf9\x33\x3f\x7b\xee\x3e\x39\x42\x40\x8e\xef\x9f\x86\xd1\x59\x2c\xe9\x98\x53\xa6\xb4\x2a\x94\x05\xbc\xfc\xf3\x69\x79\x7d\x31\xc1\x73\xe3\x57\x31\x39\x9f\xfb\x34\x56\x86\xd4\x7d\x9a\x99\x43\x11\x04\xf7\x98\xa0\xcb\x95\x3f\xa4\x59\x68\x6f\x4f\x34\x59\xec\x71\x8d\x05\x91\xeb\xbf\xcf\xf2\xbf\x8d\x20\x9c\xe2\xbc\xd5\x70\x9c\xe7\x20\x0b\x1b\x42\xa7\x65\x1d\xad\x3c\x42\xb8\x75\x43\xe0\x9d\xe3\xf6\x53\x84\xc9\xb1\x85\xf5\x8f\x76\xc4\x11\xbc\x26\x9a\xac\x3a\xbf\x53\x9f\x30\xfb\x9d\x4c\xf6\x92\x4a\x79\xc2\xe1\x86\xb4\x7d\x11\x87\x93\xd9\x10\xe5\x7c\x63\x6b\xf4\xb9\x6d\x6c\xa8\xde\x55\xb0\x2d\xe9\x98\x1f\x41\x63\x45\x76\xba\xec\xbb\x2b\x84\x09\x73\x16\x18\x70\xf7\x1b\x13\x12\x63\xaa\x78\xd7\x42\x94\xf0\xd3\xec\xb8\x5c\x50\x49\x13\x83\x75\x1a\xa6\x3d\xfa\xe1\x77\x08\x16\xeb\xbd\x6e\xa8\x76\xd4\x14\xe2\x70\x3a\x5f\x67\xb7\x45\x09\xa1\x65\x59\x5f\xc4\xde\xe1\x7b\x84\xfa\xfd\xc3\x17\x8f\x6b\x94\x10\x94\x86\x22\x5d\xff\x0e\x9d\xf0\x79\x74\xc5\x75\x8d\x3a\xc1\xbf\x79\x05\x42\x5f\x3a\x11\x2e\x7c\x50\xf2\x7e\xb0\xf8\x08\x21\x77\x7a\x9d\x68\xd3\xda\x85\x84\x83\x17\xa6\xf9\x1f\xd9\x2e\x4d\x08\xdf\x72\x66\xd9\xbc\x28\x37\x42\xd4\x33\x7f\xcb\xe8\xc6\x45\x04\xa5\x99\x82\x2f\x2d\xab\x8b\x09\xe1\xfb\x5b\xee\x19\x4e\x37\x25\x14\x9b\x4c\x6e\xf3\xd8\x45\x84\xed\xd1\xb2\xbe\xdc\xc9\xdd\x0c\x16\xee\x37\x8e\x77\x49\x70\x24\x0c\xe7\x37\xde\xc9\x89\x5f\x49\xe0\xd7\x9f\x17\xfc\xf3\xfb\x12\xc2\xb4\x91\xed\x8a\x75\x9b\x44\x09\xc2\x3b\xf3\xa2\x2a\x6e\xd5\x33\x18\x6f\x75\xa5\xe7\x6b\xe0\x02\xc2\x83\x59\x2c\x73\xce\x7e\x25\x42\xd5\x9f\xf1\x86\xd3\xfc\xed\x09\x81\x79\x4d\x39\x7d\x50\x27\x8c\x7f\xf9\x59\x31\x6d\xd1\x21\xc2\x7e\xef\xd5\x37\x8f\xf0\xf5\x32\x38\xbb\xbe\x95\xaf\xc4\x71\x84\x0d\x92\xe3\x37\xbe\x1e\xaf\x56\x57\x88\xdd\x92\x86\x06\x8f\x9e\x6b\x13\xd2\xbf\x66\x38\x6a\xe9\x72\x11\x5e\x3c\x3c\x3d\xef\x8e\x9a\x21\xc1\x85\x39\xde\x5a\xe1\xe7\x44\xb0\x36\xa9\x50\xd2\x59\xbf\x88\x50\x92\x28\x9e\x75\x32\x4c\x88\xd0\xb9\xb7\x77\x99\xc4\xba\x00\xc2\xb9\x16\x69\x51\x4f\x91\xa5\x84\x86\xba\x13\x8e\x0d\x3d\x2b\x09\xf9\x4f\x62\x1b\x3f\x4a\xe8\x12\x8c\x47\x74\x42\x52\x8d\x65\x09\x43\x97\x8c\x3e\x96\x79\x70\x11\xca\x76\xed\x88\x1c\xbe\x3a\x9b\x90\xe4\x15\x5d\xfc\xfd\xa8\x3b\x61\x91\xc2\x9b\x95\x93\x77\x8c\x27\x04\x71\x4e\xbf\xa7\xbf\x3c\x92\x85\xad\x9d\xc6\xe3\x23\x9a\xf4\x09\x02\x62\xdc\xc7\x4c\xcf\xfe\x66\x10\xcf\x74\xa8\x2c\x1a\x89\x24\x8c\x2c\x6e\x5b\x29\x28\xbf\x91\xf0\x63\xbb\x8d\x63\x92\x79\x3c\x61\x59\xd0\xe2\x83\xf6\xcd\x25\x04\x29\xdd\xa8\xf5\xf3\x94\x1e\x12\x9c\x4e\xdb\x1f\x7b\x10\xb5\x99\x85\x25\xd9\x57\x79\xee\xdd\x8c\x26\x58\x36\x9c\xed\xb7\xae\xdd\xcc\x82\x97\xd0\xc9\xb5\x32\xfd\x51\x04\xf3\x49\x1e\x02\x11\xa9\x86\x04\x57\xfb\x8a\x3b\xb9\xbf\xcf\x11\xae\x9e\xfc\x75\xe0\x8d\xc3\x59\xc2\x9b\xa9\x53\x6b\x97\x27\x6d\x22\x14\x5c\x77\x71\x09\x1e\x5d\xc1\xef\x7a\x78\x5c\x3c\x8b\x8a\x09\xe2\x3f\x26\x3a\xaa\x35\x15\x13\xf8\x5d\xbd\xf7\xbe\xbf\x5a\x42\x48\x73\xb8\xb8\x78\x6e\x91\x16\x61\xda\xf5\x54\x9d\xfb\xe7\x46\x6f\x6e\xd3\xa3\x12\xdf\x0d\x66\x84\x29\x1c\x7e\xb7\x87\xba\x5e\x33\x78\xf9\xe4\x9e\xbc\x8b\x8b\x00\x21\xfc\xc8\xaf\xde\xd6\xb6\x1f\x0c\xec\xc4\x2c\xc6\x1f\xb3\xd7\x22\x3c\x6f\xbf\xb5\x59\xc5\x54\x80\x10\x5c\xc2\x9b\x22\x3f\x7f\x25\x21\x2c\xe4\xb9\x60\x8f\x0f\x17\xc1\xa8\x60\x51\xc6\x12\xfd\x85\x6c\x98\xf2\x7d\x93\x5b\x66\x29\x3f\x41\xda\xef\x62\xdd\xa5\x83\x7a\x84\x0f\xdf\x5c\x1d\x8c\x0b\xef\x11\xce\x36\x27\x28\xab\x1e\xe8\x63\x10\x55\xe3\x9a\xfb\x4e\xe6\x2b\x1b\x74\xf5\x64\x54\xa6\x5e\x79\xc2\x40\xe8\xbe\xb3\xa2\x96\xe7\x46\x42\x4e\xdf\x50\xb3\x93\xf9\x30\x83\x4f\x02\x52\x75\x4d\x23\x53\x69\x0c\x61\xfe\xbd\x95\x1f\x4f\xd5\x15\x62\x58\x70\xf8\x77\xb9\x45\x0b\x83\xde\x4d\xa9\xab\xf2\x57\x28\x12\x72\xf3\xac\x77\xf3\x4b\x09\x13\xb2\xef\xf9\xcd\xe3\x53\x9b\x47\x88\xdc\x3a\xd7\xc2\x5a\xd2\x8e\x0d\x92\x1c\x77\x2e\xc4\x6a\x2d\x24\x3c\x72\xbc\x3b\x18\xe4\x24\x45\x18\xf0\xe8\xf3\xbd\xce\xb9\x94\xb0\x3a\xbd\xf6\x4d\xc2\x88\x09\xe1\xd2\xec\x7e\xc7\x8c\xd9\x1a\x84\x2a\x97\xe5\x8d\xaf\x6f\x0e\x32\xd0\xb9\xa8\x2e\xc0\xe5\xd2\x58\x88\x67\x6d\x3f\x46\x44\x3e\x7f\x62\x10\xe2\x21\xd4\x5d\x58\x22\x44\x63\xf8\xe4\x1c\x59\xfd\xf3\xf2\x57\x06\x8d\xbf\x42\x63\x2e\xbf\x8b\x20\x08\x09\xa8\x84\xaf\xcd\x31\x62\xc3\x84\xb5\x27\x1c\x2f\x18\xce\x24\xec\xf9\x69\x3c\x47\xa6\xf2\x23\xe1\x85\x82\xb9\xa1\x4b\xcc\x3b\x42\xce\x46\xed\x33\xf6\xe1\xcd\x0c\x9e\x96\x26\x3f\xb3\xe0\x6e\x67\x50\x38\xb8\xfa\x85\xa9\xe8\x2f\x06\xd3\xf5\xa6\xce\x8c\x5a\xf0\x80\xf0\xec\xac\x6b\xc9\xe3\x63\xe6\x04\x57\x09\xb1\xbd\xfc\x96\xfe\x84\xef\xa1\xed\x27\x77\x46\xda\x10\xc6\xfb\x98\x8b\x1a\x3d\x95\x25\xb8\xde\xdd\xd1\x90\xbc\x7f\x06\x41\x4a\x32\xc5\x5c\x2e\x80\x93\x60\x70\xad\xa8\xf3\x96\xe0\x22\x36\xec\xbd\x37\x6b\x9f\x70\x9a\x31\xc1\x20\x70\x7f\x45\x72\x88\x05\x41\x3f\x6e\x6a\xa9\xa1\xcd\x06\x42\x10\xb7\xcb\x9f\x89\x3a\x26\x84\xed\xcd\xe3\xd2\x0a\x97\x4a\x12\xa4\x04\x42\xb3\x77\xcf\xb8\xc2\x86\x43\x4f\x72\x13\x78\x79\xae\x11\x82\x64\xbf\x1c\xe1\xfe\x93\x4c\x50\xb2\xd6\xff\x29\x15\x33\x9e\xb0\xe2\xe0\x59\xa3\xb7\xb5\xbf\x58\x50\x7b\xe1\xfb\x60\xab\xf2\x4d\x02\x77\x7e\x5c\xa6\xf9\x35\x03\xc2\xe3\x1b\x17\x2f\x4f\xa5\x0a\x42\xf6\x0d\xf5\x81\xa2\x0c\x49\xc2\x73\x33\xc3\x8b\xe5\xaa\xfd\x0c\x52\x73\x0d\x7a\xc7\x9f\xda\x49\x63\x78\x26\xf7\xfc\x8e\x79\xa6\x2e\xe1\xd1\x8a\x80\xec\xb6\x82\x24\x16\xd2\x76\xef\x4c\x31\x2b\x74\x26\x04\x72\xc6\x06\x4d\xb3\xf3\x63\xc3\x8d\x14\x17\x45\xce\xe6\xd1\x77\xca\xde\xaa\xf2\xaf\x66\xa5\x0c\xbe\x36\x86\x1a\x85\x1b\xfc\x62\x83\x7f\x98\xe8\x5b\xcb\x73\x15\x85\x18\x1f\x7f\xac\xaa\x7d\x68\x11\xa1\xac\xf6\xec\xf9\x1d\xfb\xc4\x08\x5d\x87\x97\x7b\xda\xc4\x8a\x11\x9e\xac\x0f\xba\x68\x65\xb9\x89\x10\xea\x6f\x74\x66\x61\x31\x18\x1c\xb7\x51\xb8\x9b\x58\x7b\x9b\x41\xb3\x7c\xd5\x65\x61\xd7\x2c\x1a\xc3\x8c\x33\x29\x3e\xff\x0d\x05\x25\x6b\x4f\x33\x9f\xb5\x84\x0d\x75\x6a\x93\xb5\x33\x88\x35\x56\xfe\x03\x07\x09\x35\x9e\x74\xab\x49\x84\x4f\x62\x6a\x01\x5b\xe5\x76\x13\x94\x8e\x44\x0d\x1d\x7d\x1c\xcc\x82\xa3\x75\xd3\x9b\x20\xc3\x00\x1a\x83\x77\xcf\x45\x09\x9e\x99\x67\x08\x4d\x5d\x4b\x6f\xf3\xfa\xdf\x67\xa1\x5e\x53\xcc\xc0\x60\x55\x06\x61\x62\x47\xf1\x8d\x57\xde\xe9\x04\xfe\x94\x0e\xc1\xbf\x65\xae\xdc\x8b\xa0\x80\xd8\x9b\x84\xdb\x2d\xa7\x0f\x3c\xf3\xb9\xc7\x42\x9a\x7e\xca\xe2\x7d\xa3\xa5\xe6\x5b\x5a\x7a\x79\xfe\x43\x06\xce\x57\x02\xeb\x6f\xec\x72\x26\x70\xde\xaf\x9c\x5c\x3b\xf1\x2e\x21\xc6\xda\x63\xfd\x03\x15\x67\xc2\xfe\x3f\x6f\x77\xad\x7c\x1e\xc2\x1a\x2b\xff\xc1\xfc\xdb\x67\x97\x04\x2f\x14\x21\xcc\x3b\x66\xde\x7a\x7b\x99\x07\x21\x7c\x5d\xb9\x5c\xa5\x7c\x1e\x41\x67\xce\xe6\x95\xbb\xba\x72\x09\x4c\x59\x5d\xdb\x23\xf7\x30\x36\xec\x0d\xfb\xb0\xc4\xa7\x58\x97\xa0\x1a\x55\x73\xaa\xd4\xbb\x8a\xc1\x71\xc7\xb4\x69\x07\x45\xac\x09\xf7\xdf\x7e\x7a\xcf\x6f\xb2\x99\x85\xcf\x51\x3c\x5e\x29\x03\xb7\x08\xd3\xc5\x5a\xb9\x44\xa6\xde\x26\x4c\x33\x16\x3b\xaa\x35\xb3\x94\xa0\x2f\xc7\x13\x36\x69\xf9\x2d\xc2\xcd\x97\x55\xed\xc2\xa3\x43\x3c\x91\x41\xf1\x1e\xc6\xce\x84\xce\xa2\x06\xe1\xb9\x2f\xdd\xd8\x90\x59\xa5\xab\x65\xf8\xfb\x0c\x0b\xe2\x0f\x77\x2f\x4c\x57\x0a\x21\xbc\xb3\x8c\x08\x3d\x54\x79\x89\xc0\xd1\xd9\xe7\xff\xd5\xa2\x92\x05\xd7\xf0\xc5\xe3\xbe\x4b\xbf\x60\xe1\xcc\xb0\xeb\xfe\x67\xaf\x59\x84\x03\xb3\x4e\x9b\x68\x6d\xae\x64\x21\x0b\x0a\xd6\x22\xb2\xb6\x84\x84\xd9\x1f\x6a\x6c\x75\xd7\xb1\x70\x20\x21\xc6\xfc\xf4\xf1\x9b\x2c\xe4\x58\x9a\xc7\x6a\xb6\x6f\x26\x2c\xff\x68\xca\xf3\x2c\x47\x92\x70\xe2\x69\xf8\xfb\xd0\x63\xb2\x04\x19\xce\x52\xbe\x15\xc6\x29\x2c\x38\xae\x62\xec\xe3\xb7\xdf\x20\x2c\x13\x98\x6c\xfa\x65\x74\x3b\xff\x9f\xe2\xb4\x56\x43\xf4\xca\xe4\xd5\x84\x93\x5e\x5c\xcf\x5c\x42\x2d\x09\x9c\x6d\x5f\x03\x07\x95\xed\xd8\x86\x0a\x1e\x67\xc4\xfe\x9d\x12\xf3\x0b\xa6\x3f\xff\xda\xa2\x47\x58\xfa\x41\xea\xd3\xfb\x5f\x0f\x08\x0d\x7a\xd7\xe2\xf4\xb8\x13\xd8\x10\x30\x91\xeb\x1e\x16\xfe\x60\xfa\x6f\x2e\x17\x4a\xbb\xb4\x92\x50\xd5\x75\xbf\xed\x4b\xdc\x2f\x06\x7f\xe4\x3e\x39\x96\x28\x1f\x21\x6c\x39\xf9\xfa\xa4\x78\x8d\x36\xc1\xc8\x60\xbb\xf7\xaf\xe5\xd6\x84\xea\x9e\x19\xc7\x05\x0f\xcc\x64\x83\xad\xb7\xc6\x13\x4b\x99\x71\x6c\x98\x6f\x35\x75\x5e\xcf\x7a\x43\x36\xac\x19\xca\xe2\x1b\xe1\xee\x67\xf0\x7a\xf9\xc4\xa1\xaf\x07\x85\x09\xbf\x93\xef\xf8\x86\x3e\x0c\x63\x83\xdf\xcb\x4f\x39\x0d\xf9\xd7\x0b\xc7\xc0\x77\x5c\x2e\x57\x5d\x71\x05\x8d\x61\x3c\xef\x89\x5d\x1f\xc5\x25\x09\x7c\xbe\xd3\xbb\x4a\x39\x75\x09\x43\x32\x9f\x3f\xba\xbc\xdc\x44\x10\x68\x31\x69\xdf\x26\x25\x42\xb8\xf9\xe4\x91\x5e\x62\x93\x10\x61\xa4\x46\x72\x44\x7d\xf6\x6a\xc2\x0f\xca\x9f\x6b\x9a\xfd\xaa\x10\x2b\x2d\x42\x1b\x3f\x04\x3d\xa4\x31\x14\xe5\x4b\x5e\x71\x6f\x2b\x61\x2b\x35\x97\xf5\x7e\x74\x1c\xb9\xf4\x3f\xf1\xd0\x29\xaf\x57\xf5\x9d\x04\x1b\xc4\xe6\xbc\x8d\xc4\xab\xdb\x0c\xe6\x7f\x7e\xd5\xf8\xdb\xf5\x3a\xe1\x3e\xe7\xe1\x98\x3f\x35\x41\x84\x49\xd7\x94\x14\xfe\x96\x35\x9e\x49\x67\x1a\xec\xb7\xb1\xa1\x43\xc8\xff\xf1\x67\x89\x52\x16\x56\x86\x55\x7f\x38\x3f\x79\x2a\x61\x61\xc0\x24\x99\xe7\x93\x36\x13\x3c\xd7\x96\x6b\x69\x48\x5b\x13\x8e\x5f\x8d\xb7\x94\x78\xd6\xcb\x20\xc4\xeb\x54\xa2\x73\xdc\x69\x82\x86\x95\xd2\x0b\xdf\x71\x67\x08\xcf\xb8\xa7\xe7\xfd\x85\x4a\x87\x2e\x73\x22\x7c\x05\x41\xa3\xe5\x43\xd5\xca\x7e\x5b\x36\x6c\x3f\x77\xd7\x60\xc1\x9b\x50\xc2\xa4\x2d\xd5\x12\xef\xbd\x74\x08\x9f\x36\x96\x27\xdd\x60\xdd\x25\x1c\xf9\x36\xa9\xc7\xa2\xe5\x2c\x0b\x17\x94\x07\xf2\x16\xf5\xed\x66\x61\x8a\x92\xc1\xe0\x0c\x1b\x16\xa1\xb6\xdb\x6a\xea\xdd\x1f\x9b\x08\xe6\x47\x25\x4d\x66\xdc\xcf\x61\x30\x39\x57\x3b\x76\xfb\xfd\xe5\x84\xad\xbb\x9e\x4c\xc4\xd4\xdd\x84\x4e\x93\x11\xcb\xd6\xa3\xab\x09\xfb\xfd\xa4\x2b\xa4\x4e\x69\x10\xdc\xe7\xbc\x38\x60\x2f\x2a\x4f\x70\xc3\xb4\x29\x1d\xbc\x01\x2c\x3c\x3f\xec\xa1\x1f\x71\xc0\x86\x20\xc7\xd4\x6d\x59\xe6\x6b\x44\x50\x3d\x1c\x74\xa8\x66\x68\x12\x1b\xbe\x9a\xe9\x8f\xcb\xe9\xab\x2f\x44\x8a\xaa\x0e\x97\x46\xe4\x1c\xc2\x9c\xed\x55\x1f\x6a\xc7\xf1\x13\x8c\x24\xac\xdb\x36\x6a\xa8\xb1\x41\xa3\x5a\xe2\xbc\xc5\xe8\x1c\xfb\x0f\x8e\xde\x97\xfc\xbd\xe6\xfe\xca\x31\xf4\x0b\xcd\xe5\x7b\x94\x32\x93\x30\xdd\x74\xf1\x6e\xef\xad\x2b\x09\xc1\x6f\x2e\x2f\x1f\x16\xf0\x66\xe1\x50\xe1\x6d\x99\xda\xaa\x02\x82\xf6\xb9\x93\x57\x7e\x2b\xa6\x13\xcc\x1c\x27\xcb\x0e\x4c\x59\x43\x48\x3f\xb2\xb0\x31\xd9\xc7\x99\x0d\x8e\xfd\xcf\x4b\xeb\x87\xfb\x19\x60\x82\x7a\xe3\xf3\x99\x93\x09\xd6\x77\xd7\x39\x0a\xa5\xb7\x31\x28\xec\x28\x7e\xdd\xc7\xcf\x49\x63\x08\xe0\xee\xab\x6b\xff\xc2\xc5\x86\x33\xae\x5a\x4e\x97\xbf\xcc\x23\x90\x5f\xf9\x2f\xe1\xe5\x4d\x85\x68\x8a\xd1\x8d\xd8\x7b\xc6\x8d\xc6\xe0\x3d\xf1\xd0\x42\xeb\x59\x0e\x04\xf7\x0b\xbf\xa4\x84\x1f\xbc\x67\x40\x31\x96\xcb\xaf\x6d\x2e\x20\xe4\xab\x1c\x5a\x17\xfc\x79\x02\x21\xb0\xd5\x8d\x8c\x48\x84\x50\xde\x9b\x52\x4d\xce\x15\x0c\x72\x1b\xef\xa1\x4e\xb8\xe7\x5f\x50\x9e\x70\x74\xaf\xd5\x56\x4b\xfa\x07\xd2\xf7\x17\x3c\x9a\xff\x88\x83\xb0\xa1\xbf\xe8\xb6\xeb\x48\x63\x21\xf4\xe5\x02\x1c\xf5\xc4\x16\xd3\x3f\xd0\xfd\xe7\x7b\xeb\x89\xfd\xb3\xff\x85\xcc\x6b\x9f\x4f\xfc\x78\xd7\xc3\x80\xaf\xd2\xfc\x6c\x99\x4e\x02\x0b\x09\x89\xad\xcb\x85\x39\xba\x18\x6c\x2e\xda\xb9\x3d\x4c\x24\x9d\xfe\x81\x73\x51\x53\x39\xe5\x32\xdd\xd9\xf0\xa6\xb5\x67\x48\x5a\xd2\x95\xad\xbc\xcb\x55\x3b\xb6\xff\xa5\x11\x61\xb2\xd9\xcd\x69\xbd\xc4\x10\x54\x8e\x97\x5e\x4a\xde\x58\x42\x98\x9c\x53\x33\xb1\x2e\xe6\x31\xc1\xe5\xb1\x9a\x5c\xcd\x28\x3a\xb9\x1e\xbc\xef\x13\xf6\x26\x48\x2c\x7e\xfa\xf2\xfe\xa5\x63\x84\xf2\x29\xf1\xad\x83\x23\x5e\x84\x93\xc6\x22\xd3\xe7\xb7\x6c\x21\x84\xb8\x7a\xce\xa8\xfa\x22\x43\xa8\x97\x0b\x19\x70\x1e\x3d\xbc\xbb\xc5\x3a\x2c\x13\x5d\x6b\x48\x48\xb6\x90\xcc\x25\xf7\x61\x06\x07\x14\x96\x72\x38\x48\x2e\x27\xec\x6b\x39\xc8\x77\x48\xd5\x9e\xc6\x4a\xef\x6d\xb1\xf2\x29\x47\x75\x09\x66\x12\x33\x0e\xdd\xab\x58\xc0\x56\x4e\x47\x2f\x17\x09\xe6\xbe\xc3\xe0\xf8\xb5\x09\x3b\x44\x47\x57\xe7\xfd\xcd\x85\x33\x12\xb9\x63\x09\x95\xf2\x9a\x7c\xfa\x93\x62\x09\x9a\x3b\xcd\xe4\xfe\xc2\x3d\xba\xfe\xd3\x95\xe3\xeb\x08\x62\x27\xae\xf6\xe4\xf9\x46\xb1\x50\xce\x1b\xf0\x48\x3f\x7c\x3d\x21\xbd\x4d\x67\xcb\xe6\xdc\x19\x6c\xe5\xcc\x9d\x49\x4b\x7c\x23\x6c\x08\xce\x18\x59\x17\x30\xce\x92\x50\xf7\x7c\x59\x52\x84\x6c\x2c\xc1\x7e\xe3\xa6\x1e\xcd\x55\xef\x19\xcc\x6b\x88\x9f\x30\x68\xb7\x9a\xf0\x26\xb5\xd9\xb9\xfe\x9d\x38\xe1\x57\xfb\x48\xce\x1e\x5b\x6f\x36\xb4\x9c\x9e\xb5\xf9\xe9\x81\xdb\x85\x38\xb0\xe4\x43\xda\x83\x08\x6f\x42\x88\x5f\xbe\x80\x94\x48\x35\x03\xd5\x0a\x81\xbd\x66\x6b\x46\x97\xe0\xff\x81\x87\x72\xf1\x83\x17\x3b\xae\x33\xe8\xf4\x56\x7b\x76\x57\x42\x87\x60\xb9\x44\x30\xec\xf3\xdf\x3f\x3c\x5e\xfa\x24\xef\x8a\xc0\x16\xfa\x07\x3a\xca\xd7\x49\x2a\x7c\x17\xfe\x17\x8a\x0e\x27\xbd\xdd\x51\x58\x57\x38\x86\xf2\xb2\x35\xd5\x6b\x4f\x09\xd1\x18\xec\x3a\xf8\xa7\x5a\xf1\xbc\x2f\x44\xf3\x79\x6d\x87\xbb\x9f\x7f\x31\xf0\x1e\xb6\xce\x3f\x1e\xab\x43\xe8\x2c\x14\x11\x8a\x6c\x6a\x63\xb0\x2b\xfb\xcb\x4a\xb3\x69\x53\x69\x0c\xa5\x4b\x03\x83\x2d\x34\x37\x12\x1e\xde\x0e\x3d\xb1\x4a\xdd\x8a\xa0\x7b\x6c\x83\x52\xa7\xb3\x21\x41\x60\xea\xa9\xb3\x66\x07\xf8\x08\x29\xa2\xf2\x27\x06\x07\xc4\x08\xaf\x92\xe5\x9c\xe2\x4b\xb9\x09\xd3\xa7\xf7\xc8\xfe\xce\xec\x66\xc0\x69\xf3\xce\x67\x59\xd2\x14\xc2\xca\x0c\x3b\xbe\x6b\xe9\x03\x0c\xaa\xae\xdf\x52\x78\x73\x65\x1a\x8d\x61\xed\x8e\x0d\x5b\x8f\x79\xa8\x13\x36\x1f\xef\xcb\x89\x35\xd5\x25\xe4\x6c\x11\x6a\xb8\x62\x78\x9b\x30\xfd\x75\x92\x4e\xf2\x95\xf5\x84\xb3\x9b\xbc\xdd\x1e\x9e\xe7\x23\xe8\x1c\xd1\x6e\xdd\x73\x4b\x9a\xd0\x12\x70\x32\x5e\x38\xbb\x90\xc0\x7b\x57\xcf\x46\x64\x14\xc9\x97\xca\xd3\x43\xeb\xdc\xd9\x50\x66\x34\xce\xa2\x72\xb2\x1c\xc1\xb4\xc9\x9b\xa3\x73\x73\x1e\xa1\xf5\x86\x73\xea\x4a\xc7\x3c\x42\xd5\xd4\xf7\x3e\x07\x13\x1a\x18\x6c\x12\x7b\x3f\xe2\x39\x55\x86\xc6\xb0\x52\xcc\x71\xf0\x36\xbd\x62\x70\xfe\xd5\x25\xe3\x67\x13\x66\x13\x7c\x9c\x92\x7e\xf5\x40\x85\x50\x72\xe8\xe3\xfb\x3b\xbe\xfb\xd8\xe0\x2f\xae\xee\xf9\x63\x49\x24\x41\x63\xa5\x51\x73\x9f\x47\x3d\x83\xb3\xf2\xe5\x2d\xed\xa3\x47\x6b\x3d\xbf\x19\x45\x57\xe7\xeb\x10\x54\x6e\xed\x75\x5d\xba\xca\x88\xe0\xd0\xb8\x21\xf7\x71\xde\x63\x06\x15\x73\x16\xac\xd4\x96\x32\xa2\xff\x85\x4c\x95\x8e\x2b\x21\x99\xc7\x08\x1f\xcb\x73\x75\xf4\xb8\x96\x12\x52\x75\xe7\xbf\x15\x8e\xb1\x23\x64\x04\xfd\x76\x9a\x35\x60\x40\x78\xf3\xc7\x4b\xc0\xe4\x98\x12\x61\x78\xb3\x9f\x53\x66\xf0\x32\x82\x2b\x67\xeb\x63\xbd\x15\x1b\x09\xc2\x4f\xd3\xa2\x55\x76\x85\x11\xee\x4d\x69\x78\x62\xcb\x17\x32\x7a\x28\x5d\x3c\xd4\x5f\x11\x44\xf0\x78\xe8\x21\xf5\x6e\x4a\x18\x21\x8b\xcb\xf1\x18\x67\xe8\x43\xc2\x0c\x4b\x9f\x4b\xff\x17\x48\x36\x97\xcf\xdd\x7b\x32\x8a\xd0\xf8\x74\xe3\x03\xdf\x33\x51\x04\xd7\x83\x57\xce\xba\xc4\x47\x11\xac\x9c\x84\x8e\xc9\x3f\xd8\x40\xd0\x9b\x54\xd5\x31\x65\xd1\x0a\x36\xc4\xaf\x73\xf0\x3a\x99\x29\x43\x08\x2b\xd2\x73\x19\x7e\xd2\xcf\x60\xbe\xf8\xc7\x5f\x21\x5f\x62\x58\xb8\xbb\xec\xb4\x8a\xf5\x9f\x49\x84\xdb\x72\x93\xf7\x78\xed\x48\x23\x64\x18\x2b\xd9\x45\x1f\x56\x24\xfc\x54\x59\xcd\x3c\x28\x9e\x47\xf0\x57\xdc\xfb\xa5\xeb\x81\x01\x61\xb8\xfe\xff\x61\xec\x4e\x83\xa9\xfe\xc3\xc6\x8f\xa7\xec\x25\x6b\x76\xb2\x53\x64\x89\xa4\xe8\x7b\x59\xb2\x54\x44\x84\x12\x42\x88\x68\x91\x08\x21\x4b\xb6\xca\xbe\xcb\x9a\x2c\x51\xf6\x64\xcb\xb1\x56\x68\x55\x28\x95\x4a\x44\x22\x6b\xba\x10\xfd\x47\x33\xff\xfb\x9c\x7b\xa6\xf9\xcd\xfd\xec\x35\xef\xeb\xf3\xa0\x39\x39\xe7\xf3\xbd\x98\x21\x8e\xad\xc6\xb5\x14\x30\xe8\x6e\xce\x56\x59\xed\x26\x40\xff\xde\xab\x8f\x6c\xf2\xed\x01\xc3\x8e\xdb\x44\xef\xa9\x36\x01\x2c\x2b\x95\x9c\xfc\x74\xff\x3e\x09\x55\x78\xea\xaa\xe5\xe5\x0f\x01\x0a\x1b\x19\x0e\x0b\x5f\x56\x00\x54\x48\xdc\x62\x70\x67\x66\x81\x40\x83\x6b\x29\x9a\xf2\x07\x82\x00\x23\x92\xd7\xe5\xc8\xad\x42\x6e\xbd\xd1\x0f\xab\x5c\x7d\xc0\xbd\x42\xcd\xec\xad\x51\x6a\x14\xf0\x29\x2f\x92\xe4\xdb\xfb\x9b\x20\x23\x24\x9b\x91\xe5\xc6\xcb\x37\x8d\x78\x39\x75\x83\xef\x9a\x8f\x07\x00\x55\x84\xc3\x99\xbb\xd7\x29\x51\xc0\x66\x7e\xc7\x56\x8d\x02\x55\x0a\xf4\x3f\x3a\xfd\xb8\xca\xfe\x13\x81\x11\x76\x42\x57\x1b\x1f\x36\x02\xea\xd6\x6f\xce\x22\xad\xa2\xad\xb5\x81\xf7\x1e\x75\x10\x05\xd4\xcd\x87\xb2\xfe\xfe\x6c\xfa\x42\x24\xe3\xbe\xef\x34\xfb\x01\x6d\xf8\xdc\x8b\x62\x7e\x88\x02\xc6\xeb\x09\x87\x3d\xbb\x04\x14\x45\x50\x62\xf8\x78\xc0\x50\x17\x81\x4f\xb3\x15\xd3\xd7\xd3\xea\x02\x2a\x31\x09\x94\x9f\xa0\x13\xa6\xc0\x9f\xe6\xb2\x6f\x05\xb9\x3f\x09\x0c\x77\x3b\xca\x76\x7e\xd7\x12\x81\x91\x0f\x4a\x0f\xda\xb3\xb0\x03\x19\xd1\x99\xbf\x6f\x37\xa9\x0c\x11\x38\x2b\xbe\xfb\x0b\x7d\xbd\x08\x60\x68\x70\xc7\x45\x87\x91\x76\xc0\x78\x05\xb5\x35\x4e\x54\xec\x80\xdf\x17\x39\x5e\xbf\x37\x12\xa6\xc0\x61\x0e\xd5\x2b\x33\x9f\x67\x08\x32\x9e\x4e\x4a\xf4\x65\x3c\xba\x08\xd8\xf6\x3e\xf5\x99\x02\xcd\x1a\xc0\xe6\x27\x4a\x0f\x6b\xe1\x22\xe0\xc5\x81\xdb\x69\x06\xdb\x0a\x28\xca\x61\xe3\x6b\x43\xd4\x15\xeb\x01\xb5\x3d\xaf\x6e\xee\x1d\x3d\x48\x81\xd9\xe8\x33\x11\xb5\xea\x12\x14\x60\x3a\xa2\x5a\x64\xfc\x9d\x0a\x50\xa4\xfb\xc9\x47\xa3\xd5\x27\xd9\x5b\xba\xda\x8c\x43\xad\xcc\x80\xd2\xbf\x4c\x4f\x09\xb9\x73\x01\xaa\x47\x5e\x35\x2b\xf2\x8c\xa0\xc0\xef\x75\xd7\xba\x37\x51\xe7\x01\xc6\x74\xe5\x3c\xfd\x16\x65\x0a\x18\xcb\xaf\x72\x7f\xda\xdb\x1c\xf0\xac\xf0\x91\xd6\xa2\x07\xf5\x80\xf9\xda\x36\x0b\xdd\x37\x7e\x10\xe8\x5b\xfe\xf5\x10\x49\x6a\x2f\xe0\xe4\x9e\x24\x99\x70\x61\x77\x12\x9e\x8f\xe9\xde\x4d\x7f\x3a\x16\x90\xfb\xd5\xb3\xd6\x2f\x3f\xc7\x48\xd8\x51\x71\x3d\x9d\x45\x29\x06\x30\x9d\x26\x7d\x8d\x57\x58\x2c\xa0\x75\x23\x08\x88\xb5\x6a\x02\x86\x3f\xda\xff\x39\x73\xe2\x0d\x81\x07\xdf\xc9\xfa\xb1\x7d\x53\x84\x7f\x40\x95\xd4\xb4\x23\xfd\xf6\x17\x02\x9f\x44\x7f\xe0\x96\x3c\xfe\x89\xc0\xab\x62\x87\x7f\x0c\xce\xee\x00\x32\x96\x98\x6f\xb0\x3f\xe5\xaf\x20\x70\xf0\xed\x64\xb4\xac\x9c\x29\xe0\xfe\x99\x82\xaa\x43\xe9\x13\x04\xbe\xaf\xa1\xf2\xbf\xbf\x8f\x0b\xd0\x52\xf9\x91\x2b\x77\xd8\x2f\x82\x0c\xda\xc9\xef\x3e\x35\xcb\x96\x80\x0f\x59\xbc\xf4\xd4\x93\x8e\x02\x9e\xd7\xdf\xbe\xfb\x13\x4f\x00\x09\x1f\xda\xe4\x65\xb6\xd0\x34\x00\xb2\x6d\xd5\x61\xcc\xbf\xfd\x14\x50\xd0\xc6\x4d\x34\x6f\x15\x6b\xf7\xa5\x29\x98\xef\x7b\x0e\xe8\x15\xec\x9d\xd6\xb6\x7a\x46\x76\xe5\xd6\xe9\xf5\xd6\x66\x80\xdb\x1f\xf0\x70\xed\x1a\x97\x27\xe1\xd2\xb3\xe7\xdf\x85\xfd\xf8\x28\x46\x8e\x8f\xf3\xc2\xdc\x2d\x24\x00\x37\x30\x08\x68\x7c\x54\xb6\x03\xbc\xb8\x33\xb9\xf3\x19\x8d\x19\xe0\x19\x2b\xbb\x6f\x35\xd6\xc6\x80\x4d\x1e\x82\x5f\x87\x7c\x58\x01\x37\xb8\x85\x4b\x7d\xa4\x62\x03\xdc\xd1\x44\x75\x2b\x6b\x50\x99\x02\xaa\xa7\x53\x6b\xdb\x6b\xb9\x01\x4b\xbb\x6e\x7a\x4c\x6e\xd9\x00\x78\x4c\xa0\xd9\xfb\xf1\x35\x56\x0a\xd4\x47\xae\xff\xcc\xe4\x2a\x03\xe8\x36\x30\xec\x5a\x2b\x6d\x0d\xc8\xeb\x13\x63\xaa\x93\xba\x15\x70\x5d\xf3\xd4\x5d\x66\x2b\x02\x70\x3a\xfc\x29\xad\x55\xc1\x02\x81\xbd\x6d\x17\x36\x9a\xd3\x4f\x13\x78\x51\x9f\x2d\xfe\x05\x67\x3e\xfc\x17\xce\x5c\x4b\x0f\x55\x98\x4d\x07\xd4\xff\x23\x79\x6a\x3e\xba\x12\xb0\xe8\xc3\x65\x4f\x8b\x2b\x94\x18\xb9\xcf\x66\xf2\x77\x64\x15\xd6\x62\x25\xe7\x1c\x0e\x58\xd0\x38\x6c\xc3\x75\x63\x0f\xa0\xf3\xef\x27\x0e\xbd\xe1\xed\x04\x56\x38\x8f\xec\x29\x90\xe7\x05\x32\x6e\xa9\xbd\x78\xd3\xb8\xb5\x01\xb0\x5c\x67\xd4\x21\xe2\x35\x15\xa0\x57\xc0\xe1\x0e\xa7\xf3\xdb\x29\x60\xa9\xca\x1a\x77\x3b\x92\x1e\x70\x49\x56\x7b\x34\x2d\x8a\x09\xd0\xea\x99\x45\xbe\xb4\x8f\x0c\x05\x16\x9f\x29\x7e\x61\x6e\x14\x04\x8c\xe1\xed\xef\x19\x18\xd9\x02\xb8\x97\xd7\xe2\xa6\x44\xce\x21\xc0\x6e\xb1\x74\xf7\x22\x2b\x51\x40\xe3\x88\x18\x23\xdf\x25\x45\xc0\x2b\x39\x6a\x3b\xea\x3e\x1f\x00\xdc\xc0\x96\x19\x72\x5e\x44\x11\x50\xee\x1c\xff\x6c\x91\xce\x22\x81\xa4\x0a\xfb\xa0\x88\x3b\x54\x80\xee\x37\xf4\xa5\x5c\x2e\x37\x01\x32\xaa\x9a\x77\x89\x5c\xc8\x04\x5c\x59\xce\xf6\xb1\xbf\x59\x40\x22\x8f\x3a\x2f\xec\xf6\x17\xfb\xa4\x4e\x81\x92\x5f\x0f\xb6\xcc\xed\x6f\xfd\x17\xb6\xc7\x8a\x8c\x24\xd0\xb4\xfd\xdf\x20\xc9\x7a\x7e\xcd\x43\x53\x75\xc0\xcc\x6b\xcf\x3e\xeb\x3f\xb4\x22\x61\x94\xf6\x94\x61\x55\xb5\x07\xe0\xa1\x87\xa1\x0b\x11\x3d\xfe\x80\x03\x5a\x87\x64\x3a\xb7\x65\x92\x90\xfe\xfe\xe3\x2f\x7a\xd7\x2e\x03\xbe\xf4\x79\x4d\xef\x95\x5b\x0c\xd8\x3b\xf5\xdc\x51\xe0\x56\x33\xe0\x7a\xbb\x3c\x95\xbf\xa8\x5e\xd6\x2a\x9b\x12\x2b\xa3\x28\x5d\x0b\xeb\x5b\xf6\x6a\xc8\x00\x4e\xd6\xca\x62\xfe\x7b\x13\xc0\xe0\xb5\xac\x9f\x6f\xc5\x26\x02\x0a\xd6\x2f\x75\xfc\x85\x89\xcc\xcb\x1b\x7f\xa1\x99\x52\xbb\x67\x54\x90\x99\x02\xeb\x2c\xb8\x37\x3c\x38\xce\x02\xb8\x69\x80\x2e\x66\x8d\xd2\xc3\x46\x94\x0c\x51\xbf\x86\x63\x8d\x40\x46\xd0\x40\x2a\x0d\xcf\x66\x3f\x40\xe7\xe8\xf6\x20\xc7\x77\x95\x80\xb9\xfd\x70\x7a\x52\xf5\x31\xe0\x81\x2b\xe2\x57\xcb\xca\x6b\x00\xeb\x4c\x67\x96\xf5\xf8\x6e\x01\x4e\x28\x0e\xec\x7c\x22\x74\x0b\x30\x64\xdb\x49\xf9\x73\x86\x97\x28\x60\xf6\x44\xe0\xc0\xa6\x6d\x17\x48\xd8\xd6\x31\xdc\xd3\x5d\xed\x0b\x78\xc9\x6f\x87\xad\xca\x69\x37\xc0\xd1\x77\x1b\xbe\x24\xef\xb3\x01\xbc\xbc\xfb\xa3\xb4\xfb\xeb\x17\x80\xc1\x57\xa9\x8c\x63\x03\x9b\x01\xbb\xeb\x72\xe8\x63\xda\xd4\x01\x9d\x4d\xc6\x5e\x4f\xd0\x1d\x00\xdc\xfe\xcd\xd5\x5b\x76\x75\x93\xce\x7f\x11\x21\xcd\x46\xdd\x4d\x42\xc5\xd4\x5c\xdf\xb5\xb7\x6e\x91\xd0\xc9\x42\xf3\xc0\xdf\xd1\x68\xf2\x49\x73\xc7\xe9\x5c\x40\x41\x53\x27\x8d\x82\xbe\x74\xc0\xf5\xac\x5a\x93\x01\x63\x1d\x80\xde\x19\x1e\x11\x16\xc3\x9d\x80\x4f\x37\xf3\xd5\x79\x6f\x6f\x05\xf4\x57\xf7\xc9\x2e\x49\x68\x03\x64\xaa\xef\x1c\xfe\x3b\x0a\xec\xbc\x79\x70\xfd\xb9\xeb\x80\x9b\x07\x54\x8e\x68\x6c\x89\x02\x94\xac\x28\xfe\xf4\xe3\x57\x24\x20\xeb\x6d\x2a\x3e\x9d\x9c\x68\x40\x47\xc9\xdb\xb5\xea\x52\x51\x80\x5c\x96\xeb\x1f\xab\x49\x44\x01\xca\xb9\x94\xdf\x3b\x60\x7e\x0e\xb0\xeb\xf5\x17\x5e\x06\xd1\x48\x12\x26\x1d\x10\x7a\x6f\x16\x9f\x08\x58\x28\x30\xfc\x3e\x39\x77\xf5\xff\xdd\x5e\x4c\xf2\xc4\xf9\xbb\x80\xeb\xb3\xb7\x71\xdd\x4f\x34\x06\x1c\x56\x33\x97\x13\xd6\x60\x07\x7c\x5f\x7e\x3e\xed\x5d\x55\x19\xa0\xec\xad\xe9\x45\xd9\xd4\x51\x02\x3d\x3f\x5c\x60\x3c\x79\x25\x00\xfe\x81\x4f\x55\x22\xb7\xeb\x22\x08\x0a\xf0\x4a\xd1\x9d\x95\xf4\xba\x49\x22\x17\xf6\x4f\x3d\xbe\xbb\x43\x8a\x08\xbc\xf5\xaa\xe6\xb3\xfe\x36\x2a\x40\x69\x3a\xf5\xc9\xfb\x34\x07\x28\xa0\xb6\x4d\xe7\xb7\x4a\x8e\x0c\x05\x44\xaa\x4a\xaa\x7e\x0f\x4f\x12\xf8\xd8\x60\xcd\xed\xd1\x12\x5e\x20\xe3\xb7\xaa\xf6\x48\xa4\xbc\x18\x05\x32\x45\x98\xd5\xdf\x15\xd2\x01\x8a\x94\xf3\xec\x6f\x2f\x1b\x22\xb0\xf8\x35\x8d\xcf\x47\x27\x4e\xf8\x07\xf6\x32\xf8\x90\x3e\x69\x28\xfd\x0b\x43\x36\xe2\x15\x73\xed\x3d\x04\x5a\xef\x7a\x43\xff\xad\x81\x0d\x16\x3a\x3a\x3a\x7d\xe9\xd9\x00\x75\x95\xeb\x8a\x1e\xca\x48\xfc\x0b\x43\xec\xdf\x8e\xc9\xee\x5d\x4b\x01\xbb\x76\x13\xda\xeb\x97\x1d\xfe\x13\x8b\x71\xd2\x77\x98\x37\xc1\xbf\x70\xbb\x40\x67\xd4\x69\x70\x0d\xe0\xc9\x6d\x56\x43\x9f\xf4\x5c\x00\xd9\x52\xef\x98\x15\x2e\x2b\x51\x20\x29\x34\x45\x56\x83\x66\x27\x05\x44\xb6\xbc\xb8\xf5\x3d\x53\x8a\x02\xf6\x6b\x6e\xa6\x0b\x66\x0c\x91\xd0\x37\xff\x42\x43\x62\xfa\x10\x09\x2d\xf7\x56\x37\xd0\xac\x42\x3e\xf5\x26\xa3\x37\xcd\x28\x09\xd9\xbd\x7b\xad\x5c\x3e\x85\x02\xba\x8e\xb2\xb5\x44\xac\x7d\x03\xa8\xe6\x29\x94\x1a\x6c\x53\x46\x42\x2d\xf8\xb8\xc5\xf5\xd6\x0b\x40\xa6\xa9\x00\x16\xd6\xd9\x23\x80\xf3\x13\x77\x53\x4e\x47\x7d\x25\xb0\x94\x67\x90\xeb\x66\x23\x15\x90\xb1\x2c\x52\xe5\xdd\xb4\x7e\x23\x60\xf5\x64\x40\xe1\x8e\xfa\x3d\x80\xd7\x07\x5a\xd2\xc5\xd6\xcc\x13\x64\xb0\xb3\x5b\x5f\x61\x09\x14\x84\x7f\x40\xf6\xdc\x5b\xc1\xd0\xdb\x13\x04\x96\x5c\x38\xc3\xa3\x17\xf1\x92\x84\x47\x27\x0f\xaf\x13\x8d\xcf\x23\xe1\xe6\x7d\x23\x8d\x67\x62\x18\x01\xd9\xee\xdd\xae\x2c\xda\xc6\xf2\x9f\xe8\x0b\xee\x79\x14\x59\x3e\x41\xa0\xb4\x4f\x6b\xfb\xa9\xf4\x0f\x8d\xc8\xa7\x92\x94\x15\xed\x7b\x10\xc8\xd8\x5d\x62\xb5\xe6\xf6\x77\x11\x0a\x74\xbb\x31\x64\xdc\x89\x6e\x20\xe1\x8e\x9d\xce\x6f\x23\x43\x2e\x03\x72\xf6\x59\xec\x0e\x6a\xf7\x01\xac\xcb\x30\x9b\xe9\xca\x8f\x06\x9c\xe2\xdb\x70\x64\xe0\x42\x1d\xa0\x98\xf0\x56\x66\x7b\xf1\x72\xc0\x5e\xaa\x8c\xdf\x5b\x14\xce\x00\xfe\x3e\x7a\x44\xea\x83\x8a\x27\x45\x39\x79\xcc\x98\x6b\xeb\x88\x11\xe0\xcb\xcf\x43\x13\x13\x07\x84\x01\x15\xd9\x6b\x77\x34\xf9\x19\x01\xee\x76\x7e\x5f\xcc\xeb\xcc\x0a\xb8\x48\x4d\x58\x66\x29\x8a\x00\x26\xe4\x64\x6d\x4b\x74\x3a\x02\xb8\x2d\x35\x2d\x70\xfd\xfa\x1a\xc0\xcf\xa9\x73\x92\x37\xe7\x9f\x92\xc8\x45\xf9\x7d\xb5\xc3\xdf\xcf\xd7\xaf\xf7\x1a\x52\x46\x99\x3d\x48\xf8\x7b\xe8\xd3\xc3\x35\x1f\xa6\x09\x4c\x51\xbb\x5c\x96\xc2\x5f\x0d\x78\x53\x4d\x99\x54\x77\x22\x14\xf0\xeb\xf1\x85\xb6\x27\xcf\xaf\x52\xc0\xab\xfb\x8d\x98\x7f\x14\x09\x50\x37\xcd\x69\xaa\x32\x96\x04\x78\x62\x22\x25\xdc\x38\x9e\x04\xa8\x78\x63\xb9\x1c\xcf\x57\x00\x32\xd9\x6f\x53\x99\x5a\x45\xa7\xf9\x9d\xa5\xea\x83\xf5\x80\x73\xcb\x0e\x6f\xa0\x3b\xf9\x3f\x41\xcf\xf1\xe5\x60\x8d\x8b\x0e\xa0\x61\x01\x77\x88\xaf\x72\x05\x60\x0f\x17\x35\x3c\x54\x28\x03\xac\x65\xf5\xe9\x3c\x25\xd6\x08\x68\xa2\x2a\x1c\xa1\xb3\xba\xca\x14\xe4\x26\x3d\x92\xdf\xdc\x06\xa8\xfc\x53\xa8\xf2\x9e\x60\x1b\xa0\x70\x5b\xe7\x85\x2d\xed\x3b\x00\xdf\xac\xdd\xa6\x55\x68\xf4\x00\xd0\x4a\xec\x53\xeb\x63\xff\x6a\x40\xab\x6f\x77\x0f\xda\x59\xbc\x26\xe1\x69\xa1\xa0\xac\xbf\x23\xa1\xa1\x91\x87\xb9\x2f\x2e\x53\xc0\x27\x42\xa2\x24\xa0\x73\x07\xa0\xeb\x89\x97\x46\x12\x63\xf5\x80\x3b\x67\x96\xfc\xff\xe2\xc3\x03\xb3\x64\xbf\x2f\xf5\x14\x23\x1e\x0b\xef\x42\x89\x03\x17\x29\x80\x8b\xce\x85\x9b\x45\x28\xcb\x31\xef\xef\x8d\x01\xb5\x12\x80\x6c\xdb\xbc\x84\xbd\x9c\xd5\x01\x6f\x7b\xd3\x64\xdf\x5a\xbd\xd0\x2e\xbe\x95\x11\xea\x15\xf6\xa2\xc0\x60\x45\xfe\x80\x9b\xd7\x03\xc0\x3f\xf7\xc5\xfd\xdd\x57\x71\x5c\x85\xe7\xce\x9e\x1a\x4e\xc0\xcb\x49\xb4\xb4\xf6\xce\xdb\x01\x3d\x46\xa8\xd7\xf7\xac\x2e\x49\x95\x86\x4f\x95\x0a\xac\x74\x01\xa9\xdb\x35\xd6\x2c\x2d\x29\x00\xee\x64\xf7\xb8\x58\xf9\xa5\x88\x84\xb3\x4c\x66\x48\x25\x54\x01\x58\xa8\xd9\x14\xed\xc2\x5d\x01\xf8\x28\xea\x7c\x4e\x54\xfe\x23\x12\x4e\x9c\x6f\x72\x59\xbb\x3a\x52\xa1\xd2\xbe\xaf\xef\x3c\x42\xa0\xda\x13\x51\x85\xb0\xf8\xe7\x14\x28\x8e\x72\x99\x5e\xbc\xb3\x1e\xc8\x58\x94\xce\xfb\xf9\xb0\x4c\x8e\x02\x38\x7b\x4e\x52\xbe\xf7\x4d\x23\x6e\xf1\x6e\x6b\x5b\xe6\xe7\x06\xcc\x59\x73\xf6\xf6\x9a\xe8\xad\x14\x90\x3c\x1a\xa6\xd2\x57\x3e\x48\x60\x5e\x53\x5f\x4c\x9a\x5f\x01\x60\xd9\xd9\xd7\x6b\x84\xa4\x5d\x48\xb8\xf9\x4c\xe3\xfc\xd1\xea\x02\xc0\xde\xd2\x74\x25\xae\xcc\x32\xc0\x19\x1e\x8b\x15\xbe\xdd\x7a\x80\xf1\x6b\xc4\xcc\x9d\x2b\xde\x11\xe8\x2c\xf7\x43\xbc\x27\xed\x35\x81\xdd\x79\xb7\x5b\xcf\x86\x5e\x00\x32\xd2\xd2\x6c\x32\x27\x2c\xb6\x02\x8e\xaf\x13\xb6\xfd\xb1\xba\xee\xf8\xb0\x7a\x1f\x09\xbc\x28\x08\x28\x21\x21\x65\xf8\xe5\xf2\x1e\x20\x97\xff\x41\x36\xdb\x9a\xf9\xbf\xef\xe5\x5e\xd3\x0d\xca\x3e\x56\x81\x80\x1f\x82\xac\x0c\xae\xff\xb4\xa6\x40\xea\x6d\x3a\x87\xde\xeb\x2c\x14\x68\x71\xd8\x93\x5c\xf8\xab\xbf\x91\x8c\xf1\xeb\x89\x05\x59\xc7\x0e\x01\xca\xc6\xac\xe1\x2d\xe3\x93\x03\xa4\xee\x0d\xf7\xdc\x7a\x5b\x02\xb0\xb5\x9b\xf3\xea\xda\x71\x4f\x12\xb9\x7c\x89\x30\xba\x16\xe1\xda\x47\xe0\x2d\xd3\x42\xaa\xed\x12\xc7\x01\x8b\xed\x52\x0a\x36\x7f\x73\x26\x21\xca\xab\xda\x75\x1f\x70\x04\x64\xe6\xde\x5f\xa7\x91\xc7\x0a\xd8\xbc\x67\x24\x24\x28\x31\x14\xd0\x56\x87\x79\x97\xde\xe0\x5b\x02\xb5\xd3\x37\xf0\x97\x70\x48\x03\x16\x05\xe6\x04\xe9\x4f\x7c\x21\x50\x41\xca\xd0\x57\xde\xa3\x0c\x90\x6e\x62\xe1\xae\x53\x83\x06\x60\x77\xf9\xa1\xc7\xae\xcb\x3b\x00\x37\x99\x4e\xef\xf2\xb9\x33\x47\x60\xc2\xc0\x8e\x47\x6b\xe6\x26\x08\x3c\xc5\xd7\xe0\xe3\xe7\xb9\x15\x90\xd9\x96\x26\x35\x35\x4f\x02\x70\x9f\x4a\xaf\xc5\x79\xa5\x21\x82\x8c\x60\xdf\x92\x42\x03\x2d\x16\xc0\x7d\x70\x66\xaf\xba\x40\x08\x60\xaa\x41\x6c\xc1\x59\xb3\x7b\x80\x0f\x3c\xa6\x93\x9b\xf9\xba\x00\x57\x12\xf2\x1b\xff\x16\x86\x7d\xfd\xbf\xf9\x95\x8f\x02\x42\x91\x44\x6f\xf1\x01\x6d\xc0\x4f\x32\x6d\x96\x4f\x2e\xf5\x01\x06\x06\xec\xed\xee\x5a\x85\xdf\xc6\xb4\x87\xac\xbc\x3d\x80\x67\x3d\x92\x2f\xec\x75\xbc\x07\xa8\x72\xed\xcb\x4e\xdd\x5a\x33\xc0\x0d\x2e\x1d\x2e\xe7\x95\x5b\x00\x0f\x08\xf2\x24\x0c\xc9\xb6\x00\x76\x4a\x8c\x4e\xbb\xf0\xee\x02\xbc\xcc\x56\xba\x39\x52\x6f\x9a\x40\x7d\x06\xfb\xe6\x80\x3c\x2a\xc0\xb1\xb5\x46\x5b\xad\x6b\x35\x28\x70\xc4\x41\x96\xad\x27\x88\x13\x70\x24\xfc\xb1\x29\xef\xb7\x7a\xc0\xf1\x3b\x5f\x5a\xc4\x37\xb9\x01\xae\xa4\x7f\xe8\x54\x1b\xe2\x04\xdc\x74\x37\x4d\x05\x9f\xd4\x03\x3e\x7c\x16\x12\x6e\xc1\xd5\x00\xb8\xc8\xaf\xd3\xa9\x6a\x54\x0a\xd8\x5e\x7c\x0e\xff\xe2\x62\x9d\x7a\xe0\x74\xd8\x15\xc0\xc9\xfa\xe9\x4f\x8f\x1d\x84\x00\x3b\x7e\xda\x9e\x76\xb9\x4b\x0b\x78\xbd\xb5\x3c\xec\x41\x1c\x01\x68\xb2\xee\xc7\xf9\x14\xef\xfb\x24\x72\xe1\x36\x09\xff\xf5\xec\xcb\xeb\x46\x2c\xa7\x31\xe4\x37\x11\xe6\x04\x2c\x94\xa7\x0b\x68\xbb\x51\x09\x18\xaa\xb6\x77\x74\x77\x7c\x25\x20\xcb\x92\x65\xd7\x64\x5f\x2e\xa0\x3b\x49\xa1\xe4\xef\xe8\xc1\x93\xb3\xfe\xaf\x43\xd8\x00\x3f\x46\xd9\xe5\x31\x28\x57\x37\xe2\x1f\xad\xe2\x95\xeb\xa3\x7b\xe1\xbf\x60\x64\x28\xbc\x59\x73\x93\x20\x60\xf2\xf6\x8e\xd4\xf7\x5c\xb5\x04\xbe\x6f\x5e\x5b\x24\xbf\xb4\x13\xfe\x0b\xfa\x3f\xbc\x9f\x78\x5c\xe6\x06\xe4\x16\x90\x69\x73\xde\x37\x4b\x20\x67\x88\xa6\x6c\xc2\xb9\x26\x40\xfd\x79\xae\x35\x7f\xc1\xb3\x78\x24\xe9\x6b\xc0\x3c\x81\xfd\x17\xde\x17\xee\xd4\xe2\x05\x32\xc2\x26\x79\x07\x06\xb7\xc6\x53\xc0\xd0\x29\xf1\x87\xf5\xc8\x75\xc0\x78\x6d\xef\xed\xb1\x9b\x5a\x00\xad\xcf\x08\xfd\x74\x5e\x7f\x11\x70\x5f\x9b\xa9\xba\xed\xb7\x5b\x80\x22\x3e\xfb\x44\x34\xed\x9b\x01\x7f\xcd\x32\x86\x5b\x87\x31\x02\x16\x5b\xc8\x85\x35\x07\x84\x52\x80\x7a\x65\xde\xb9\x75\x28\x14\xd0\x5d\xe4\xf1\x9a\xf2\x69\x00\xec\xf8\xcc\xe8\x72\x3d\x60\x86\xc0\xf2\x5f\xee\x8a\x53\x49\xe2\x80\x07\xb6\x97\x5a\x9e\x30\xb0\x03\xdc\x99\x31\xad\x20\xe9\xd7\x0b\x28\xfe\xeb\x8a\xe0\xf0\xd9\x57\x80\x3b\x4f\x64\xe4\x1d\x9f\x7c\x01\x38\x15\x52\xaa\xff\xb7\x18\x04\xdf\x70\x5b\xb8\x1d\x0b\xa8\xfb\x62\x87\x9c\xbf\x6b\x34\xe0\x65\x29\xdb\x57\x7c\xc3\xd1\x80\x9d\xc7\x5f\x5a\xbf\xea\x09\x05\xec\x1e\x4a\x48\xb3\x57\xf1\x07\x0c\x0c\x2c\xea\x30\x1d\x33\x26\x61\xa4\xb4\xe4\xe1\xf4\xd9\x75\x80\x6a\x47\x14\x3b\xfb\x5e\x0a\x53\x60\xe7\xb7\x9b\x4f\xbc\x86\xc4\x01\x33\xa7\x0e\xae\x35\xf1\xbc\x02\x28\x1a\x32\x19\xbe\x3e\xe9\x12\x09\x55\x1a\xdb\xf5\x87\xfa\x9e\x01\xe2\x59\xc6\x0f\xca\x51\x15\x80\xe2\x5c\x4a\x0f\x63\x5f\xb6\x00\xd2\x58\x49\x75\x64\x9b\x64\x03\x7e\xed\xba\x56\x82\xcf\xc7\x09\x94\x50\xeb\xe5\x9b\x1e\xac\x27\xa1\xc8\x88\x2a\xad\x83\x1c\x17\xfc\x03\xea\x4b\x1d\x6e\x2d\x06\xcd\x80\xef\x5f\x9f\x8c\x1a\x56\x6c\x06\xd4\xf6\xac\xca\xee\x78\x58\x06\xe8\xe9\x9a\xa5\xf5\x77\x54\xfc\xe1\xc2\xa6\xbf\x58\x3e\x78\xf1\x4d\x9b\x7e\x00\x05\xc6\x0e\xb9\xad\xa4\xd0\x7a\x50\x14\x91\xac\xeb\xb7\x0f\x1f\x72\xa3\x00\x67\xf4\x99\x9d\x1c\x76\xe7\x28\xca\x5c\x31\x21\xbd\xe3\x8c\x1a\xe0\xc1\x51\x76\xfa\x47\xf9\x75\x80\x34\x3b\x9c\xc2\x3a\x3f\x6c\x07\xb4\xb6\xef\xe7\x53\xa2\xb2\xa3\xc0\x6f\xbe\x97\x47\xed\x97\xd5\x29\x60\x7c\xf8\x98\xc0\x53\xe7\x66\xc0\x27\xd2\xbb\xb3\x4f\xf1\xd5\x51\x14\x8e\x75\x87\xb6\xbc\x0c\x3c\x00\x78\x88\xa1\xf2\xf5\xf1\xb5\x8d\x80\x63\x47\xdb\x16\xad\x78\xd8\x01\x9b\x4b\x9a\x92\xde\xe5\x0f\x11\xf8\xfe\x6e\x78\xb6\xc7\x84\x22\x60\xde\x71\x05\x03\xb1\x61\x00\x72\x59\xb9\xc7\x52\xa4\x6b\xb6\x16\x30\x5a\xb4\x66\xf1\x52\x4d\x11\xe0\x58\x3b\xd5\xa6\xe8\x17\x35\x04\x96\x46\xbc\x19\x0e\x2d\x2c\x04\x3c\x33\x39\x55\xcb\x7c\x97\x12\x31\x6b\xf7\xcf\x8b\x1a\x1f\x07\x7c\x02\x9c\x3a\xa7\xc3\x8e\x02\x16\x8e\xd5\xf7\x9b\x06\xda\x51\x60\xb6\x7c\x69\xc1\x7a\x71\x3b\x20\x27\xcd\x41\xff\x07\x2e\xfb\xfe\x85\x5a\xed\x3c\xd9\x72\xcb\xfe\x46\xbc\x5c\x73\x69\xbb\xac\x6d\x0b\xe0\xb5\xeb\x27\x0d\x4b\x4e\x35\x01\xb2\x46\xec\x8e\x9b\x16\x6c\x01\xf2\x68\x07\x67\xec\x05\x7e\xa3\x70\x40\x6c\xf2\xe8\x88\x5d\xdc\x04\xf8\xe3\xd7\xa0\x43\xc6\x89\x2e\x02\xa5\x7e\xe4\x6f\xf5\x65\x67\x07\x32\xa6\x34\x7d\x5c\x04\x26\x79\x00\x8f\xca\x3c\x1d\xba\xce\x5e\x03\x98\xf4\xbd\xe7\xfd\xd5\x35\x9a\x80\x6c\xb7\x0d\xe2\xe7\x6e\xaf\x7e\xb1\x8d\x09\xa6\x7f\x33\x2e\x00\xbc\x3f\xad\x56\x5c\x60\x79\x1f\x70\xe1\xea\x5a\x05\xe2\xd3\x4d\xc0\xde\x46\xcd\xda\x8f\xe3\x0d\x80\xaf\xbe\xa6\x0e\x0b\x37\xed\x07\x3c\x5b\x7e\x71\x7f\x7c\xc6\x7e\xc0\x87\xc9\xe9\x45\xe7\x4f\xc9\x01\x0e\x5c\x55\xa3\x3e\x9a\xbb\x1e\xf0\x28\x37\xed\x88\xb3\xe5\x34\x81\x9d\x2b\x07\x1c\xb6\x9a\x48\x00\x1e\x19\x3b\x5b\xe5\xca\xac\x05\x58\xb7\x97\xcf\x78\xcb\x95\xd5\xdb\x8a\xc5\xf7\xb1\x91\xe6\x51\xc0\x57\x85\x2f\xaa\x98\x42\x37\x01\x5a\xd5\x7c\x5c\x7e\x5e\x20\x0d\x68\xca\xf6\x55\xf5\xcc\x1a\x05\x40\xd1\xb7\x72\xfb\x1f\xce\xd9\x00\xd6\x99\x34\x94\xf0\x9d\x75\x03\xac\x13\xbf\x73\x63\x89\xea\x1d\xa0\x6a\x5c\xd2\x89\xc3\x47\x79\x00\x1f\xf1\x77\xd9\x51\x3f\xfc\x46\x90\xf1\x65\xf8\x94\xda\x9b\xbd\x42\x80\x3b\x02\x13\x7b\x72\xab\x84\x01\x5f\xe6\xf2\x3c\xeb\xe2\x49\x04\x0c\xb5\x39\x56\x79\x74\x45\x0a\xf0\x40\x58\xe5\xcd\x2c\x0e\x1b\xc0\x8f\x54\x75\x57\x86\x98\xc6\x08\x7c\x91\x28\x2d\x93\xdc\xcd\x06\xf8\x35\xcb\xe2\xb3\x29\x47\x09\x60\xab\x06\x0f\xef\x25\x8f\x4b\x80\x42\x7a\x59\xf9\x63\x99\x76\x80\x62\x54\x17\x1a\x5c\x8c\x37\x03\xa6\x1f\xdc\x75\x62\xb9\x38\x16\x70\xd7\x70\x63\xa6\x9b\x3e\x0b\xe0\x93\x4e\x53\x86\xdb\xa3\xe7\x28\xf0\xcd\xf2\x7a\x84\xee\x47\x55\x40\x9a\xbb\xcc\x9a\x59\x1e\xf1\x24\x9c\xe7\x4c\x54\xb3\xfb\xf9\x0a\xf0\xcc\x6b\xb7\x94\xf3\x77\xef\x01\xbe\xa3\xad\x0a\xf5\xa0\x7a\x05\x68\x5d\xcb\xb7\x6b\x6d\xcb\x2d\xc0\x51\x09\xcf\xb5\xdb\x05\x19\x00\x53\x06\x6f\x5c\x79\x79\x7c\x23\xa0\xde\x7d\x81\x9f\xc3\xc6\x62\x80\x6f\x4a\xae\x3b\xf1\xe5\xc4\x01\x2a\x58\xff\x6a\x63\xb9\xc8\x03\xa8\x75\xa4\x54\xba\x3f\x52\x09\xb0\x4e\xff\x18\xd5\xbd\xb6\x12\xc0\x23\xfa\xd7\xdc\xef\xdd\xeb\x25\x90\xcf\x50\xa5\x88\x41\x9d\x19\xb0\xa6\x3b\x58\xde\xc3\xe4\x10\xa0\x5d\x67\x49\x84\x9e\x4d\x13\xe0\xfc\xc8\xba\xaf\x7f\x41\x5d\x35\x5c\x76\x5f\x5c\x0c\x30\xbd\xd3\x77\xef\x97\xcd\xe5\x80\x75\x9e\x6f\xc4\xc6\x04\xca\x01\x7f\x38\xd1\xbf\x2d\xa1\x3b\x0c\xe8\xf3\xea\x7b\x90\x76\x52\x0e\x60\x48\x9a\x75\x56\xfa\xe6\x3b\x80\xa1\xa7\x4f\x91\xa8\xd2\x6c\x01\x5f\x3b\xb9\x1c\x7c\xe1\x38\x4b\xe0\x75\x81\x1d\x3b\x2f\x5b\x69\x02\xae\xa7\x7b\x14\xfa\xb2\x9a\x1d\xb0\xe7\x07\xfd\x3a\xf6\x27\x3f\x09\x6c\x13\x66\x9c\x7f\x2c\x9c\x02\xff\x27\x7c\x1d\x4a\x72\x0a\xfc\x73\xec\x5f\x48\x14\x1d\x9f\xd9\xfc\x42\x1c\xf0\x98\x55\xe9\x8d\x81\xe4\xcd\x80\x6e\x6a\x6e\x71\x95\xa9\x95\x80\x09\x6c\xe9\xda\x9d\x16\x3a\x80\xb3\x8d\x9f\x13\x94\xce\x24\x02\x72\x84\x11\x9f\x5a\x74\x35\x00\x7b\x54\x22\xb4\xdf\x7a\x12\x80\xd3\xce\x1c\x3f\xe2\x42\xe7\x08\xec\xdd\x99\x2c\x59\x1a\xf4\x85\xc0\x9c\x02\xa1\x06\xb1\x34\x17\x12\x9e\x5d\x0a\x33\x2b\xd7\x8d\x01\x54\x3c\xb9\xb7\x2b\x9b\xa7\x19\x70\x21\x5f\xd3\x35\xb1\x74\x3f\xa0\x8d\x8e\x54\x87\x7b\x84\x0d\x05\xba\x9a\xc4\x45\xdf\x90\xa6\x08\x64\x76\x37\xb4\x18\xbb\xc3\x0c\xe8\x96\xb5\xad\xce\x93\xd1\x18\x30\x65\xc0\x4a\xaa\xc2\xe1\x4d\x23\x86\xe2\xab\x0d\x49\x22\x06\x40\xc6\x1f\x23\xf1\xfd\xaa\x89\xd4\x80\x7e\x05\xe7\x84\xe9\x98\xf3\x01\x23\x84\x43\x82\xbd\xf5\x8a\x00\x2f\x7e\x84\xfb\x16\xfe\x0f\x00\x9d\xde\xbd\xcf\x0e\xe8\x6f\x04\x1c\xff\xd8\x4b\x5d\x97\xda\x02\x98\x31\x70\x97\xc6\x44\x37\x08\x30\xe6\xfb\xcf\xc9\xed\x3f\x7c\x01\x6d\x3a\x7e\x4d\xef\x0a\x09\x02\x3c\x36\xfb\xec\xc4\xdd\x9a\x18\x40\xbb\x4d\x15\x36\xfe\xec\x51\x80\x5b\x16\x7a\x49\xe7\x23\x82\x01\x3b\xec\x25\x32\xbb\xa5\x9e\x11\x98\x71\x7e\xbb\xf6\xd7\xe4\x2f\x04\x9e\x2f\x65\xed\xe1\x32\x3b\x0b\x64\xd4\xde\x62\xcf\x31\x9c\xab\x06\x0c\x97\xb7\x19\x7b\x5a\x5c\x07\x38\xfe\xb4\x24\xbf\xa1\x60\x23\x20\xdf\x1f\xd5\xfa\xad\x49\xb6\x80\xca\x29\xdb\x3a\x19\xcf\x34\x00\x7a\x81\xec\x3d\x86\x55\x6c\xad\x0b\xca\x19\xa3\xfb\x4d\x20\x73\x72\xf0\xdc\xc4\x80\x3e\xe0\xa9\xef\x56\xa9\x53\x62\x73\x04\xae\x7b\xa0\xf1\xc7\x46\xa5\x04\x30\x6c\xbd\x56\x8f\xf5\x2a\xea\xfd\x97\xc5\x5e\xad\x5b\x21\xb0\x59\x5e\xea\xb4\xdb\xa1\x2f\x04\x26\x4f\x98\xde\x3b\xf2\xa0\x12\xb0\x65\xcd\xe1\x9f\x1e\x75\x95\x40\x2e\x6a\x91\x76\x76\x96\x85\xcb\xc4\x82\x7f\xe6\xca\xb6\x67\x69\xab\x3b\xc4\xb2\x9f\x40\xec\x22\x81\xfd\xb6\x86\x0f\xa9\x77\x8b\x03\xee\xda\xe8\x26\x97\xbf\xf5\x36\x09\x13\x38\xbc\x57\x72\x7e\xef\x04\x2c\xbc\x7a\x2b\x9d\x7e\x80\x09\xd0\x33\x2a\x4f\x58\xf9\x45\x3d\xe0\x1e\x65\xa2\x5a\x92\xa3\x02\xf0\x60\x8c\xd3\x37\x5a\x5e\x35\xc0\xa1\xbd\xb3\x56\xaa\x6d\x35\x04\xda\xe5\xaa\x2d\x09\x25\x07\x02\x19\x1b\x8d\xf2\x5c\x69\x52\x90\xc0\x04\xa3\x13\x63\xeb\x88\x5c\xc0\xef\xd2\x1b\xa3\xaa\x5c\x6f\x03\x0a\x70\x79\xae\x9d\xe3\x8c\x01\x7c\x1e\x4a\xfd\x5d\xda\xff\x18\x05\x6c\x7b\x66\x4c\x3a\x15\x27\x09\xd4\x0d\xfe\xc2\x19\xe6\xf7\x8b\xc0\x0b\x34\x33\x6f\x03\xb4\xd9\x00\x07\x27\xf8\xf3\x02\xe3\x95\x29\xd0\x2d\x9b\x23\x9d\x16\xbf\x17\x90\x77\xfb\xda\x4f\xcf\xe5\xf6\x00\x6a\xde\x9b\xdf\xfc\x52\x8b\x0d\x50\xa7\x26\x87\xb6\xbf\x4a\x0b\xf0\x86\x91\xd6\x05\xa9\xd2\x08\xc0\xd4\x91\x4d\x27\x0c\xac\x77\x01\x7a\xde\x13\x44\x0f\x67\x59\x0a\x6c\xda\xd8\xc5\xa9\x94\xb0\x48\x90\xa1\x74\xf8\xd6\x13\xa7\x8a\x25\x02\xdd\xcc\x59\x36\x2b\x9c\x1e\x04\xac\xe2\xe9\xe3\x3e\x7f\xee\x1c\x60\x92\xb1\xef\x29\x7d\xd1\x15\x02\x07\x33\x0b\x14\xe2\xa5\x9f\x11\x28\x61\xac\xa8\xe7\xf3\xd6\x1c\x30\x6c\xe6\xfc\xab\xa9\x83\xbc\x80\xd6\x82\x51\xc9\x6f\x6e\x99\x02\x4a\x2a\x9a\xf8\xde\xe7\xd0\x02\x34\x7f\x63\x1a\xb2\x36\x6a\x96\x40\xf5\xd8\x77\x1c\xb2\x6b\x36\x02\xde\x17\x7c\x27\x66\xb4\x28\x4a\x01\xae\x69\xcb\x36\x4d\x9b\x35\x80\x11\xf7\x59\xe8\xe8\xf9\xa2\x01\x95\x35\x1a\x12\x69\x57\x71\x35\xb9\xc6\xb9\xd7\xb5\x10\xd0\x4d\xda\x6e\xe7\x9b\x55\xbc\x4e\x21\x0d\x0c\xef\xcc\x05\x1c\xbc\xb0\xf5\x66\xfb\x48\x27\xa0\x67\xdc\xe5\x95\xbf\xd0\x2b\xa1\x5f\xe3\x23\x5b\x0d\x48\xca\x93\x49\xf5\x5c\x99\x26\x2d\x24\xd2\x34\x4e\xfd\x78\x06\x58\x19\x53\x99\xeb\xbd\x3a\x79\x1b\x62\x70\x56\xc2\x22\x06\x70\xdb\xd1\xbd\x52\xc1\xc3\x61\x80\x56\x4f\x2f\x26\x56\x5f\x5e\x07\x58\xa4\xc3\x9d\x44\x77\xbe\x08\x70\xc3\x85\xd0\x8b\x9e\x0e\xae\x80\x8b\x8c\x37\x15\xd4\x39\xbe\x11\x18\x47\x23\xae\x54\xda\x9d\x4a\x42\x39\xa3\xba\x8d\xdb\x79\x23\x01\x13\x0e\x59\xc9\x29\xee\x8d\x04\xd4\x77\x99\x5b\xe2\x13\x12\x07\x5c\x57\xfc\xe9\x8d\x70\xb9\x16\x09\x65\xbc\x32\x7e\x5e\x0a\x8f\x00\xec\x39\xa9\xbf\xf7\xfb\x52\x10\xe0\x1b\xf5\x5a\x97\x79\x7e\x26\xc0\xea\xd3\x7e\x24\x2b\xc3\x0a\xc0\x99\x58\xf7\x5c\xcd\xc3\x15\x80\x17\xcf\x49\x1d\x7c\xd6\x75\x16\xf0\xf0\x04\x3f\x15\x97\xe0\x6e\xc0\x2e\xcb\xef\x53\x5f\xe2\x7c\x00\x0f\xb2\xce\x0b\x55\xd0\x9f\x06\x54\x1b\xda\x55\x12\x53\xe8\x00\xa8\x7a\xa5\xef\xd4\x37\x13\x07\x40\x43\xef\xa8\x39\xd7\xfd\x37\x01\x93\xeb\xc5\x5c\x5d\x56\x51\x5e\xc2\x7e\xf1\xf1\x2f\x06\xc0\x36\xe5\x35\x7c\x05\xb3\x96\x80\xa6\x91\x66\x0f\x03\xc3\x1d\x01\x6f\x3f\xd7\x71\x4d\x19\x33\x03\xbc\x71\xcf\xa8\x6b\x32\x8d\x0f\x90\xb1\xcc\xe3\xba\x77\x2b\x2b\xe0\xef\x53\x8b\x87\x6f\x59\xce\x12\x28\x29\x79\x6f\xc1\x21\xae\x10\x30\xae\x68\x5b\xcb\xb3\x20\x3b\xc0\x23\x6f\x3f\x1b\xa5\x58\x9f\x00\xbc\xc3\x15\x34\xcc\xad\x2f\x03\x98\x57\xd8\xbe\xe1\xbb\x59\x1b\xa0\x0a\xc1\xb9\xd2\x77\xb9\x0e\x90\x63\xc7\xdd\xb3\x2e\xee\xf5\x80\xfa\xb1\x13\xaa\x46\xf9\x23\x04\x36\xbe\xde\x7c\xbd\x6f\x5a\x1e\xc8\xa8\xbd\x67\xb0\xd0\x97\xb5\x06\x50\x4e\x74\xe3\xc9\xe6\xb6\xd5\x5b\xd9\x72\x3f\x97\x73\x06\x35\x05\xe8\x8b\x4b\x2e\x9a\x14\x37\x36\x62\xd1\xfd\x2a\x85\x9d\xe7\x95\x00\xeb\x1f\xc6\x37\x1f\xbc\xbc\x1b\x30\xb9\xa4\xe6\x60\x88\xe9\x16\xc0\x38\x5a\x7d\x87\x54\xc3\x2d\x80\x1f\xd3\x32\xe4\x02\x14\x38\x00\xfb\x3a\xd5\xce\x04\x85\xfa\x92\xf0\xb4\xac\x6f\x45\xd2\x15\x26\xc0\x08\xc5\xd2\xd3\x87\x62\xab\x01\x13\x27\x53\x5f\x0c\xab\x5c\x07\x74\x78\x1e\x4d\xf2\xf7\xab\x02\x3c\x21\x68\x2a\xaf\x04\x2d\x24\x0c\xb2\x5e\xfa\xb2\x6e\x9b\x1d\xe0\xde\xda\xfa\xc3\x81\xf9\x2a\x80\xde\xa1\xb3\xbc\x3f\x9d\xe7\x09\x54\xf6\xe3\x1f\xb9\xb9\x2d\x17\x30\xbd\x4d\x61\xe5\x2f\x1c\x2e\x6c\x52\x36\xd5\xbe\x0a\x78\xdc\x71\x4a\xfe\x9e\x41\x2d\x2c\xd8\x2b\x39\x74\xee\x2d\x27\xa1\x93\x66\xf5\xd7\x63\xb9\x8f\x48\xe8\xe2\xcb\x6c\x93\x28\xd8\x41\xc2\xab\x85\x4c\x37\x77\x8c\xc4\x91\xf0\xe7\xa7\xec\x4b\xaf\xc6\xec\x01\xcf\xee\xf7\x8a\xe3\x38\x66\x0d\x38\x20\x36\xab\xbc\x24\x61\x03\x58\xb1\xff\x50\x2a\x7f\x42\x30\x20\xa7\xac\x55\x55\x72\x4d\x39\xa0\xbd\xf8\xf6\x11\x7b\x12\x2d\xa0\xd2\xc7\x57\x1a\x69\x93\xd4\x80\xbf\x8e\x1c\xde\xbd\xd2\x95\x40\x42\xf3\xef\x5d\xf6\xa5\x7f\x76\x02\x7e\xde\x66\x99\xca\xb7\xcb\x01\xf0\x9b\x5b\x6c\x80\xa7\x92\x26\x60\xfc\x39\x1b\x07\x9a\x6b\x46\x14\xe8\x50\xcd\xba\x58\xe2\xda\x4d\x90\x71\x58\xa4\x7d\x99\xfa\x42\x20\xa0\xd9\xfb\xef\x2c\xdf\x4a\xae\x01\x8e\x18\xe2\xfa\x4b\x0a\x3a\x80\x51\xd7\xd1\xae\xe9\x43\x31\xa0\x2a\x43\x50\xb4\x97\x44\x19\x60\x6b\x8f\x56\xd0\x89\xd8\x52\x40\x0d\xc7\x1f\xfd\xf3\x43\x74\x80\x2c\x2c\xaf\xe8\x47\xbf\x78\x01\x3e\xeb\xcc\xef\xb7\xed\xc8\x05\xac\x7a\x99\xaa\x15\xe0\xbe\x09\x90\x2d\xa8\x8c\x4e\xc8\xce\x89\x84\xed\xd9\x2c\xd9\x5b\x3f\x55\x01\x1e\x4e\xf0\xbb\x35\x26\xef\x0d\x88\xb5\xe1\x6d\x66\x66\xa2\x80\x9a\xdf\xa6\x77\xc6\x48\x56\x02\x1e\x4f\xbf\xa7\xe7\xc3\xd9\x09\x88\x17\x0e\x3d\x56\x3a\x57\x06\xf8\xd4\xda\x42\x5e\xe4\x0f\x2b\xe0\x67\xbd\x25\xf1\xd4\x0d\x55\x80\xf4\xf1\xaf\x8d\x76\x7b\x30\x02\x06\x5e\x0d\xa4\xd7\x7a\xc5\x02\xc8\xc7\x54\x1b\x24\xcb\x6a\x46\x81\x5c\xb1\xc9\xac\xdb\x6c\x5d\x8d\xb8\x27\xd2\xeb\x40\x6c\x18\x1b\xe0\x0f\x59\x9d\x8d\x15\x75\xf6\x14\x30\xfc\x70\x88\xfd\xcc\x1b\x0e\xc0\x8a\x8f\x72\x4f\xbe\x30\xe4\x00\xca\x9a\x18\xdf\x7e\xe2\xe6\x02\x98\xfb\x15\x50\x88\xae\x14\x50\x65\xd0\x67\xe0\x47\x88\x2e\xa0\x1e\x83\x91\xc3\x74\x4f\x10\xe0\xe3\x82\xd4\xbb\x17\xb5\x12\x48\x58\xd9\xa3\xaf\xf6\xe5\xfc\x2d\x20\x23\x61\x99\x51\x6a\xe9\xb2\x11\x60\x54\x7d\xed\xf9\xb6\x53\xce\x14\xf0\xb1\xad\x9c\x2d\xb1\x78\x4f\x60\xdb\x88\x95\xa1\xc3\x56\x02\x70\x29\x6f\xef\x87\xf2\x67\x39\x80\x3b\xc2\xba\x34\x5f\xf8\xe5\x03\xae\x08\xd8\xfd\xfe\xe9\xbf\x4c\xe0\x74\xe2\xd4\x06\x99\xad\xf2\x80\x96\x16\x9c\x21\x57\xb3\x2e\x00\xa6\xd7\xb4\x88\xf1\x4d\x38\x02\x7e\xe8\xff\xf3\x38\xf2\x79\x2c\xe0\xbc\x82\xa7\xf4\xa5\x47\xdb\x01\xe3\x4d\xcc\x43\xeb\x55\x24\x00\x75\xef\xcb\x6e\x18\xd1\x6c\x69\x44\x16\xce\xbd\xcd\x5d\x86\x69\x40\xc6\xa5\x73\x44\xaa\x4b\xfc\x0e\x40\x5a\xc7\xd1\x73\xd9\xd1\xcf\x00\x5d\xb8\x99\x6f\x28\xaf\x6f\x01\xbc\xd1\x13\x91\xd3\xa1\xae\x01\xd8\x5a\x69\xf9\xa7\x44\xe6\x1e\x09\xa5\x6e\x9a\xee\xb1\x67\x0b\x07\x32\x02\xe6\x93\x67\x5e\xff\xc9\x06\x5c\x47\x07\xc6\x77\xc5\x2b\x00\x27\xee\x3c\xdf\x7a\x92\xb3\x8a\x02\x51\x61\x5a\x4f\xe7\x0e\x05\xff\x27\xf4\xae\x3a\xe9\x06\xdf\x96\xa0\x00\x27\x53\xd6\x96\x0d\x99\x7f\x08\xf4\x79\x17\xcc\xb7\xeb\x49\x10\xfc\x17\xb2\x49\x2a\x45\x9d\x74\x3b\xfe\x05\xa1\x84\xc1\xb5\x74\xba\xdc\x80\x4c\x3b\x8e\x9e\xe5\xdd\x92\x0b\xd8\x25\x5f\xf0\xa4\x6f\xed\x01\xc0\x38\xfe\x83\x1b\x48\x5a\x02\x80\x53\xf3\xc7\x05\xb2\x9f\xf2\x01\x1e\x3f\x79\xc0\x81\xc8\xa0\x02\xb4\xae\x5a\x1b\xb2\x37\x78\x94\xc0\xe3\xed\xe9\xe3\x67\xfc\x0a\x00\x6f\xaf\x68\x26\x6d\xce\x7f\x41\xa0\xa2\x98\x93\xe1\xa2\x6c\x21\xa0\xf1\x4c\xcf\x85\x95\xd4\x73\x80\x72\x77\xb5\x0f\x77\x3f\x0c\x04\x6c\x4a\x30\x0c\xb6\x11\x4a\x05\x1c\x94\x97\xf0\xbe\xf4\xd1\x01\x90\xca\x26\xdc\x98\x6b\x9b\x07\x09\xe7\xed\xa2\xd4\xd9\xa8\x5c\x00\x0b\xe5\xbc\x7c\x6e\xe4\xdb\x00\x26\xae\xcf\x7d\xde\xd3\x71\x0f\xf0\xe6\xf6\xde\x8a\x1b\x59\x0f\x48\xa8\xa6\x62\x95\xed\xa8\x5e\x09\xa8\x70\xe2\x73\xe6\x8b\x3f\xd5\x80\x7b\x2c\x74\xb4\xac\x58\x43\x00\xe3\xdb\x8d\xcf\x6c\x51\x76\x06\x1c\x3f\xb5\x80\x2c\x4a\xe7\x01\x3d\x9a\xef\x37\x46\x9c\x8f\x04\xbc\x99\x6b\xd2\xd2\xc7\x74\x12\x90\x89\xe9\x4d\x4b\xa9\xbc\x06\xe0\xdd\x76\xc3\x7c\x8d\x3d\x04\x60\xbb\xf2\x44\x1c\x43\x71\x31\xa0\x40\xf9\x87\x07\x35\x5f\x28\xf1\xa8\x97\xd4\x76\xf5\x91\x0d\xa0\xcc\x29\x88\xd8\x29\xed\x00\xc8\xef\xce\xe4\xd9\x64\x70\x02\x70\xfd\x85\x9f\x09\x29\x8e\xb1\x80\xfe\x02\x67\xbc\xc6\x18\xe2\x01\xe5\x39\x06\x63\xf8\x9d\xfb\x00\x07\x32\x22\x37\xf3\xad\x62\xa4\xa5\x2c\xae\xae\xf4\x19\x09\xcf\xd7\x0f\x5e\xfa\x5b\x32\x1e\x6c\x17\xac\x31\xbd\x03\x78\x53\x6d\xc2\xf3\xac\x5f\x2b\xe0\xd6\xf3\xd5\xf9\x5b\xfa\xa2\x48\x38\xb6\x2b\x61\xab\xe7\xa3\x47\x80\xae\x56\x3a\x8f\xaf\x3b\xdc\x03\x9c\x39\xe0\x31\xa3\xfa\x25\x1e\xb0\xf2\x94\xf1\xf4\x19\xee\x66\x40\x27\xbb\xa3\xe3\xbc\xb7\x0a\x49\xe8\x6c\x54\xad\xa0\x31\x9d\x05\x64\x78\x18\x17\x5f\x52\x08\x70\x03\xf4\xd6\x66\xdb\x29\x93\xd9\x02\x18\x7e\x90\xbd\x94\xab\xa5\x10\x30\x22\x76\x5e\xe3\x26\xbd\x07\x09\x3f\xbf\xda\xd2\xf0\x81\xce\x0e\x90\xea\xcd\xe9\xd6\x53\x6b\x74\x28\xca\x94\xf6\x7b\x4f\x42\xe0\x24\xe0\x31\xe9\x5b\x47\x7e\x57\x06\x00\x9e\x77\x88\x09\x92\xff\xc9\x08\xa8\xb2\xcc\xdf\xab\x38\x53\x0b\xa8\x9b\x6e\x48\xca\xdc\xc3\x05\x58\x31\x39\x79\x62\xf2\x55\x0e\x60\xcb\x61\x5a\x26\xbe\xd0\x5c\x40\x6e\xbe\x87\xe3\x21\x3c\x05\x80\x36\x87\xcd\x1f\x88\xf0\xfc\x22\x70\xa0\x55\x74\x78\x98\xae\x1c\xb0\xde\x6f\xdd\xa7\xdc\xe5\x56\x40\x7a\xf6\xb0\x4c\x8f\x4b\x9f\x09\xd4\x29\x4e\x67\xd1\x16\x6d\x06\x7c\x23\xa9\xaf\x2b\xde\xd0\x04\x68\x95\xcb\xa5\xe1\x38\x51\x03\xe8\xed\xc5\x65\x92\x97\x51\x07\xc8\xde\xb6\xa1\x21\xb4\xbd\x09\x30\x36\x6b\x9d\xd2\x8d\x8a\x08\xc0\x94\x03\xe9\x45\x0d\x33\xa1\x80\x2f\xad\x3a\x32\x4c\x16\xc3\x01\xeb\x18\xd4\xde\x4c\x94\x44\x00\x8a\x3f\x38\x12\xf3\xf7\x8c\xc4\xee\xca\x90\xc4\x59\x0b\x40\x3a\xa5\x73\x7f\x6e\xdf\xb4\x05\xfc\xe9\xa2\x3e\xae\x57\xd1\x04\x78\x24\xed\x83\x78\x81\x52\x39\xe0\xd6\xcb\x8c\x01\x4a\x8c\xc5\x80\xf2\x6d\x6c\x96\x0b\xf4\x1a\x80\x0a\x2f\xbf\x7b\xcc\xbd\x65\x00\xd4\x57\xef\x2e\x11\xf3\xad\x03\xcc\xcf\x3f\xee\xa8\x7a\x83\x1e\xf0\x84\xee\x40\x45\x47\x52\x25\xa0\x78\x3b\x77\xfd\x85\x67\x21\x80\xad\xb6\x37\x9c\x5f\x7b\x5c\x01\x3c\xc8\x10\x70\x50\x3b\xe2\x32\xa0\x9c\xcc\xb4\x6e\xfa\xc6\x50\x40\xff\xf5\x77\x35\x88\x4b\x21\x24\x2c\x0d\x54\xf2\x71\xcb\x48\x21\x61\x52\xba\x78\x80\xc1\x80\x00\xe0\xb8\x37\xbd\x02\xcd\x9e\xa7\x80\x6d\x91\x1f\x32\xbb\x99\x1e\x90\xf0\x7c\x77\xd1\x23\xea\xed\xf5\x80\xaf\x18\x7b\x3d\xe6\xa3\x93\x00\xcd\x7b\x4c\x8e\x18\xee\x2e\x06\x64\xde\x1f\xb7\xf3\x9b\x68\x02\x60\xc0\x34\x4d\xd6\xbe\x2e\x24\x70\xf9\xf5\x78\xc7\x84\x39\x17\xe0\x89\x5f\xc9\x7d\x9c\xaa\xa3\x04\x5a\x64\x44\xcf\x1c\x8f\x74\x00\x32\x9a\xb7\xcf\x14\xe6\x3b\x94\x13\xf8\xcc\x55\x55\x48\x4f\x6e\x2b\x20\xe7\xbb\x90\x50\xbb\x9e\x77\x80\xe3\x44\xa4\xbb\xc9\xf6\x37\x80\xe2\x21\xda\xc3\x4f\x2f\x75\x00\x92\x76\x27\x98\x0d\x8e\xd7\x01\xc6\x1f\xd7\x9d\xe3\x3c\x0c\x80\x35\xcd\x2f\x54\x36\x57\xac\x07\x0c\xda\xf2\xae\xed\xc9\xee\x05\x02\x4d\x79\x92\x87\x5f\x1c\x70\x01\x94\x7d\x27\xa8\x34\x45\xf0\x03\x6a\xc4\x3f\xca\x32\x13\x8f\x05\x64\x95\x73\xfd\xd0\x73\x73\x2d\xa0\xff\xcc\x17\xb3\xaa\x89\x2a\xc0\x6f\x1f\x46\x1b\x82\x6e\x7b\x02\xba\x88\xc9\xc5\xea\x15\xcd\x11\xf8\x30\x6f\x65\xae\xfb\x7e\x20\xe0\xd8\x0d\x03\x3a\xee\x81\x40\x40\x6d\x9b\x9a\x35\x27\xbd\xec\x01\xc3\x5e\xf1\xf4\xb4\xee\xac\x01\x7c\xce\x9c\xf7\x5e\x73\xa2\x19\x30\x7b\x97\x43\xf2\x5f\x28\x12\x77\x43\xdf\xcd\xd5\x02\x9a\xc8\x2c\x85\xcb\x5b\x3c\x06\x74\x33\xd0\x11\x8c\x6d\xf3\xa7\x40\xd4\x96\xbd\x76\x6b\x2f\x5f\xa7\x28\xb1\xde\x6e\xbc\x13\xbd\x97\x01\xb3\x8e\x69\x98\xcf\x6f\x67\x00\xcc\xb0\x6b\x94\xab\x7d\xe3\xf4\x2f\x30\xbd\x8b\x7d\x39\x48\x2f\xf9\x2f\x3c\x7c\xf2\xea\x89\xdc\x9c\x14\x60\xdf\xf5\xa0\x4b\xe6\x75\xb5\x80\x61\xd6\xc3\x8d\x59\x82\xcc\x80\xac\x57\x75\x63\x66\x3e\x33\x51\x80\x66\x63\x0d\xeb\x94\xfd\x89\x7f\xa1\x5d\x6f\x86\xf7\xb8\x7c\x13\xe0\x42\x74\x8e\x9b\xda\xcd\x44\xc0\xf7\x7b\xb4\x26\x79\xed\x72\x01\xd3\xb6\xab\x6c\x29\xda\x9b\x04\xe8\xba\xdb\x69\x97\x9b\x23\x2d\x05\x36\xf4\x69\x66\xed\xea\xdd\x0a\xc8\xf2\xb4\xe4\x30\x57\x47\x0d\xe0\x70\xc0\xb7\xd3\x3c\x8f\x4a\x00\x8b\x56\x22\x84\x62\xe9\x1f\x00\xee\x4b\xb8\x95\xc9\x44\xba\x42\x42\xfd\xc8\x76\x8b\x9d\x72\x3e\x80\xcf\xc4\xcf\x55\xa6\x46\x3a\x01\x0e\xdf\x48\xbc\x93\x57\x7e\x11\x90\x43\xc2\x76\xb9\xfc\xb9\x2f\x09\x3f\x95\x2b\xaf\x7b\x2d\xe3\x03\xe8\xfe\x7d\x63\xf1\xe5\xc7\x77\x00\xd1\x66\x3a\x4a\xee\x92\x1b\x09\x0d\xd8\x59\xbe\xf0\xbe\x7c\x09\x48\x8a\x31\x62\xff\x8b\x3d\x8c\xc9\xc3\x15\x67\xeb\x01\x5f\x50\x3f\xd9\xfc\x78\xb9\x18\x70\x53\x76\x6c\x92\x8e\xd7\x6d\xc0\x87\xe7\xfa\xaf\x8d\x8c\xdd\x06\xfc\xb9\xc1\xfa\xdc\xe7\xa1\x32\xc0\x26\xad\xb3\x1a\xe3\x29\xe1\x80\xfb\x9e\xda\x6d\x7c\xbc\x74\x82\x02\xe6\x33\x0d\x43\xdd\x33\x47\x01\x81\xe7\xd5\xee\xa4\x13\xbf\x09\x7c\x3e\xe5\xfe\x3e\x3e\x7f\xf5\xe3\xd4\x55\xe8\x80\x2b\xdf\x7d\x40\xb5\xb1\xc7\xe5\x6c\xbe\x37\x48\xc8\xd5\xbd\x29\x7b\xb1\xb5\x0a\xd0\xe6\xa4\xb6\x8c\x6f\x67\x3d\xe0\x79\x05\x77\xff\xf2\x9c\xd6\x46\x3c\x56\x57\xfb\xed\xe2\xe3\x23\x40\xc6\x84\x40\x0a\x2c\xef\xe8\x20\x70\xd6\xe3\x2e\x27\xb3\xd7\x1c\x81\x32\x2b\x3f\x4e\x30\xb3\x29\x01\xd6\xad\x9c\xbb\x73\x86\xfb\x36\xe0\x2b\x21\x8d\x17\xba\x44\x2d\x09\x23\x2b\x9d\x1c\x98\x8c\xe2\x00\x23\xfa\xe3\x6f\x49\x6e\xcb\x03\xac\x7a\xf3\x8e\xaa\x69\xcc\x89\x02\x5a\x25\x69\xcb\xee\x99\x3e\x80\xbb\x0a\x3a\x62\x5b\x0f\xe5\x00\x2e\xcd\xba\xb9\x07\xd4\x57\x00\x8e\x36\x1b\x9b\x65\x38\xe5\x00\x6e\x7b\xa8\xdf\x96\xcf\xb7\x1d\x50\xb4\xe5\xe4\x29\x0f\x4e\x7f\x40\xae\x73\xdd\x52\xf1\xfe\xaf\x00\x0d\x3e\x17\x2c\xc6\xad\x22\xae\x27\x2b\x6b\xcb\x87\x5c\xc0\x5f\xe9\xc3\xbf\xd5\xca\x67\x09\xa4\x79\xfb\x7a\xd1\xff\x53\x34\xa0\x8f\xf3\xe3\x86\x83\x07\xaa\x08\x32\xdc\x94\xd5\xf9\xb7\x34\xed\x06\x32\x80\x76\x7e\x8b\xd3\xf5\x66\xc0\x75\x8b\x57\xbb\xfe\x37\x86\x87\x74\x47\x89\x3f\x2c\x80\x6c\xdf\x2f\xac\x3b\xc9\xe2\x0d\x18\x98\x30\x36\x7a\xb8\x31\x0f\x70\xfa\xbe\x53\xcf\xb4\xec\x2d\x40\x9e\x35\x8f\x67\x45\x19\x9b\x28\xb0\x75\xfc\x7c\x47\x6c\x7e\x2d\xe0\x65\xdd\x0f\x8c\x62\xab\x65\x4a\x31\x4d\xef\x1a\x5b\x26\x05\x42\x0e\x4d\xde\xfa\x8b\x25\xee\xa3\x0e\x1b\xa7\x56\x08\x6c\x4f\xe0\x17\xbd\x6c\xf3\x00\xf0\xd6\xd6\xd8\xdb\xbb\x9f\xed\x00\xfc\xbd\x63\xdf\xbd\x5f\x26\x4d\x80\xf7\x8e\x8f\xcb\x9e\xb4\x6d\x02\xdc\xfd\x32\x6b\x94\x97\x23\x1f\xd0\x88\xbb\x8f\xeb\x6f\xf1\x71\xf1\x15\xb2\xf2\x6d\xa1\x40\xec\x03\x7e\x96\x4d\x9e\x2d\x80\x25\xfd\x43\xdd\x36\xab\x45\xda\x93\x6e\x81\xc3\x93\x12\x74\xac\xcb\xa5\x09\x55\xde\x80\xee\x9f\x37\xbf\x6f\x73\xcb\x26\xe1\xd5\x1b\xb4\xd7\xad\xbf\x79\x01\x76\xbe\x7b\xa8\x2a\x3f\x76\x92\xe2\x0c\xeb\x72\xcb\x2b\x3a\x5f\x23\xc0\xd7\xf1\xb5\xda\x76\x99\x5b\x00\x93\x12\xf8\x6c\x54\x1f\x29\x00\x0e\xe4\xd3\x5b\x7d\x2f\x69\x02\xdc\xb6\x86\x36\xa2\x9c\x83\x0b\x50\x45\xf2\x43\xdf\x83\xb1\x70\x0a\xe4\x26\xee\xf2\xd8\xe3\x53\x0f\xd8\x65\x78\xfd\xf0\x1b\x75\x55\xc0\x8f\x7e\x27\xf8\xe2\x74\x2a\x01\x5d\x13\x2e\x32\xbf\xaa\xae\x25\x61\xb6\x00\x8f\x79\x27\x9f\x1f\xa0\x93\x4f\xb9\xc1\x41\x6e\x69\xc0\xc5\x37\xe9\x12\xa6\xfb\x8d\x01\xf3\x13\xb9\xa7\xd6\xff\x10\x05\x8c\x76\x9d\x27\x8d\xca\xcc\x10\x78\x4e\xe1\x72\xa5\xea\xf1\x78\xc0\x33\x67\x2f\x4a\x97\xcf\xd0\x00\xd6\xa7\x4e\x08\xe5\x3c\xcf\xa4\x80\xf1\x53\xdf\x1d\xdf\x35\x7c\x01\xe1\xa3\xa8\x45\x96\x6e\x29\xa0\x9e\xea\xdc\x97\x7b\xbf\x3a\x00\x8b\x9a\x9f\x2d\x67\xae\x96\xea\x89\x4d\xfd\xa5\x37\x12\x01\xcd\x87\x6c\x39\xae\xde\xdc\xb7\xba\xea\x91\xc2\xda\x3e\x37\x01\x7a\x76\x47\xfb\x74\x92\xea\x01\x6f\xa4\x65\x86\x64\xaf\xde\x56\xf7\xa3\xbb\xcb\x2f\x8d\x54\x93\x70\x2f\xe9\x5d\x06\x07\xaf\x17\xe0\x9f\xd8\x68\x7d\x96\xc9\x41\x02\xbf\x59\xd8\xca\x1a\x3e\xdc\x00\x64\x24\xdc\x73\x99\x99\x32\x19\x25\xf0\xcf\x8d\xe5\xd0\x5f\xa7\x44\x00\x5f\x0e\x57\xde\xda\x97\xbb\x11\xd0\xa3\xd6\x45\xed\xbd\x25\x15\x20\x97\x68\x4c\x2a\xe3\xd6\xad\x80\x6c\x7a\x4e\x02\x3a\x3b\x0e\x01\x4e\x69\x35\xf8\x0e\xec\xae\x03\xb4\x9b\x3c\x28\x92\x9a\x7f\x0e\xd0\x2e\xa6\xe7\x6a\x2c\x5d\x36\x60\x8c\x16\x75\xfd\xb1\xe8\x41\x02\xff\x68\x1d\x38\x64\x12\xa4\x0e\xb8\xeb\xea\xd8\x99\x97\x26\x0b\x04\x4e\x06\xda\x6e\xb5\x9a\xd5\x04\x0c\xe0\xd9\xba\xdb\xf3\xd4\x7e\xc0\x79\xb3\xad\x96\x57\x37\xc8\x53\xa0\xaa\x8e\x59\xff\xee\xf2\x14\x81\x49\x11\x6d\x7b\x42\x1c\x5f\x37\x62\x8a\x61\x10\xd2\xfc\x6a\x05\xec\x60\x74\xfb\xaa\xfd\xbf\x70\xd2\x7b\x61\x57\x68\x7a\x19\xa0\x91\x7b\xde\x9d\xf7\x99\x94\xe0\xd7\x91\xa9\x8f\x3e\xeb\x02\x38\xa1\x67\x66\xdf\x2d\x66\x04\xb8\x28\x34\xf7\x5b\xfe\x75\x0b\x60\x0e\x33\xe3\x1f\xb9\x55\x90\x12\xd6\x27\x8e\x75\xbe\xa0\x28\xcc\xcb\xa8\x60\xa0\x50\x0e\x18\x56\x68\x32\xce\xff\xa6\x0c\xf0\xd2\xc7\xdc\x1e\xfd\xd5\xd2\x68\x11\x66\xa8\xa2\x5d\x4e\x22\x9f\xd9\x48\x45\xe2\xa8\xb6\xd5\x04\x0c\xb2\x75\x08\x6a\x31\x37\x04\xbc\xe3\xb6\x5b\xfb\xe4\x4a\x3b\xa0\x7b\xd5\xe0\x0f\x4d\xdf\xd5\x7f\xea\xef\xd0\xa9\x6d\xee\xcd\x80\x09\x8f\xf2\x1e\x9c\x15\x78\x4d\x42\x4e\x9e\xd7\x5b\x1c\xfb\xbb\x00\x3b\x83\xf9\x04\xce\x59\xd5\x02\xde\xb0\x19\xef\xf3\x3e\x5d\x0b\x38\x16\x93\x76\x6d\xc3\x9c\x3f\x60\xcc\x67\xf5\x48\x4d\x9c\x26\x50\xe0\xca\x6e\x83\x33\x66\xee\x80\x7e\xea\x06\xc1\xa4\xdb\x67\x00\x49\xba\x95\x65\x09\x77\x58\x01\x97\xc4\xe6\x0e\xd8\x3b\x68\x03\x6e\xef\x3b\xac\x42\x57\xb8\x01\xd0\x78\x63\xbb\x3a\x8d\x1b\x27\xe0\x43\xba\xd9\x5a\x7c\xfe\x8d\xc0\xdf\x15\x77\x65\x32\x22\x6a\x00\xc5\x7f\x98\x0f\xff\x6f\x3c\xd4\x78\x63\xf1\x17\x13\x4f\x6f\x97\xf2\xd6\xb4\xfc\xdf\x80\x06\xfb\xb9\x8a\x9f\xff\x22\xf0\x0a\x6f\xda\x45\xdf\xcc\x15\x02\xad\xd4\x8f\x46\x3e\x16\x6f\x01\x32\xe4\x36\xfd\xf8\x2c\xc7\xa5\x03\xe8\x3a\x2c\xc1\x9f\x9b\xd7\x4a\xc2\xd0\xa9\xda\xe7\x77\x8f\xbd\x02\xd4\xe1\x4f\x6f\xf3\x10\x69\x05\x64\x28\x49\x6e\x0d\x70\x11\x03\x9c\xfe\xb8\x90\xb9\xbd\xaf\x15\xb0\x22\x21\x44\xea\x05\x29\x11\xf0\xd6\xae\x13\xaa\x2f\x0f\x35\x00\xd6\xd9\xf1\x2e\xd5\x46\xd2\x02\xf6\xbf\x0a\x92\x59\x3c\xb2\x86\x02\x9f\xef\xd5\xe9\x9e\x97\xfb\xd0\x88\xb1\x0b\x8c\x1c\x32\x0e\x8d\x80\xe1\x9e\x39\xef\x2d\xad\xec\x01\xf7\x8b\x66\xcc\xad\x17\x69\xa3\x80\x4a\xbc\xdb\xc1\xe8\xc5\x00\x0a\x5c\x1d\xb0\xb2\xff\x9c\x50\x0d\x78\x97\xf1\xbb\xf5\xc4\x84\x09\xa0\xe1\xbd\x21\xb9\x79\x63\x21\x0a\xd0\x76\x37\xee\x63\xca\x9c\x27\x70\x9a\x94\xb9\xb6\xdb\x87\x11\xf0\x2c\x33\xfb\xc2\x52\xde\x19\xc0\x3d\xf9\xa3\x59\xed\x8c\xdd\x80\x87\x1d\x5b\x98\x5d\x84\x5a\x29\x30\x7f\x7e\xdb\x74\xb0\x59\x3c\x05\x16\x1f\xb1\x1e\xf7\xcd\xaf\x26\xe1\x49\xdf\x60\x2d\xf1\x1b\x11\x80\x5f\x3e\x05\x32\xd3\xbe\x2c\x05\xbc\xc4\x60\xdf\xd7\xbb\xa5\x89\x84\xe1\x4b\x9d\xbb\x79\xa4\xda\x00\x85\xcd\x17\xc3\x9a\xc5\xda\x00\x95\xcf\xe5\x73\x7e\x78\x1e\x04\x48\xb7\x10\x97\x57\xb6\x4b\x03\xf0\x91\x7f\x9f\x0b\x4d\xb6\x20\x60\x40\x1e\xf7\x99\xfa\x04\x23\x40\xe9\x9b\xd5\x96\x92\x5c\x3c\x80\xa1\xe7\xe8\x82\xce\x9b\xaa\x01\x5e\xbe\xfc\xf3\xc3\xa3\x5b\x6a\x80\x56\x19\xe5\x07\x82\xb3\x17\x09\xe4\x3c\xd5\x60\x5b\xfc\x87\x11\x90\x6d\x28\xd5\xb3\x70\xe5\x5d\x23\x0a\x3e\xea\x5b\xeb\x61\x28\x0f\x64\x28\x1c\x4d\xe3\x1a\x94\xec\x23\xc8\x38\x1d\x9f\x54\xef\x1a\xe6\x0c\x64\x3c\x2c\xd5\xff\xc9\xf4\xda\x01\x50\x5d\xc3\xc1\xd3\xa6\x88\x1e\xb0\xe7\xc7\xed\x97\x71\xb4\x07\x01\x37\x49\xbe\xdb\x9c\x9c\xfa\x95\xc0\xd6\x88\xc1\xfe\xc2\x40\x1a\xc0\xec\xdf\x17\x6c\x63\x72\x81\x02\x9e\x36\xc4\xc9\x67\x46\xdf\x09\x3c\xbc\x47\xd2\xe8\xc1\x1d\x35\xc0\x5c\x0b\xaa\x05\xf6\x32\x2a\x40\x21\xd1\x91\x8e\xc6\xa4\x9f\x04\xa6\x7c\x3d\x75\x5a\x66\x68\x0b\x90\x31\x26\xde\xeb\xd4\x6c\x13\xd2\x88\x79\x22\xac\xa6\x22\x16\x1a\x80\x3f\x8d\x69\x25\xa3\x8e\xb0\x01\x3e\xc8\x62\x3a\xa5\xa4\xb5\x11\x70\xb9\xd7\x9f\x57\xa5\x40\x96\x02\x7d\x01\xcf\x72\x55\xce\x30\x00\xde\x19\xf7\xd3\x99\x2d\x53\x02\x54\x33\xa8\xcc\xad\x18\xff\x4d\xe0\x79\xc7\xd7\x41\x7f\x54\xe2\x00\x3b\x75\x74\x77\x7f\xdb\x45\x09\xde\xbd\x16\x27\x8c\xa8\x2d\x01\xbf\xbc\x14\x19\xf2\x39\x07\x80\x5a\xae\x5f\x67\x37\x1c\xb3\xa2\x40\x86\xf8\x87\x34\xd1\xcc\x8b\x80\x10\xf7\x5c\xd8\x71\x1c\x00\x33\x36\xb1\xc6\x59\x8f\xd0\x03\x2a\xa7\x2b\x06\x2b\xe9\xec\x00\x7c\xe5\x3e\xc7\x55\xb5\xa2\x45\x81\x9b\x9d\xc3\x07\x7d\xe9\x2a\x09\x8c\x7c\xc9\xf9\x22\xb0\xa7\x87\xc0\x2f\x6f\xa4\x0b\xbd\xc5\x05\x81\x8c\x15\xaa\x5a\xa2\xc0\x79\x84\x40\xbf\x1a\x1e\x25\x7f\x5e\x1d\xc0\x71\xe9\x83\xf6\x1e\x1c\xb6\x80\x89\x29\x1f\x4d\x92\xfe\xa8\x02\x9e\x39\x23\xf1\x9e\x76\x97\x28\xe0\x83\xc8\x81\xf0\x3a\xc6\xaf\x8d\x38\x55\x6c\x7b\x46\xdd\xdf\x02\xfe\x01\x25\x7a\x59\xfd\x34\x6f\x3d\x40\xf6\x70\x85\x75\xec\x3b\x3b\x09\xe4\x7c\xbf\x67\xd9\x6a\x86\x03\x90\xc7\xf4\x92\x72\x61\xab\x3e\xe0\x6f\x2d\x89\xb8\x32\xeb\xf2\x46\x0c\xe8\x8a\xf7\x12\x70\x78\xd6\x88\x91\x3c\x43\x3a\xbf\xf3\x0d\xe1\x1f\x38\x7c\xa5\x7b\x78\x26\xfa\x10\xa0\x91\x02\xbb\xf3\x6f\x56\x5d\x40\x52\x7f\x85\xaa\x67\x38\x2d\x20\x1d\x47\xda\x2d\xea\x8c\x19\x02\xc5\xaa\x4e\xf4\xbc\x9b\x50\x06\xb4\xcf\xb0\xe8\xbc\xa0\x3b\x4b\xa0\xd0\x99\x04\x86\x67\x13\x1c\x80\x36\x9e\x33\x5b\x2d\x39\x7d\x00\xf7\xbb\xdf\xc8\x69\x33\x54\x01\x3c\xbe\x70\xe8\xc8\x40\x58\x2a\x20\xa7\xd8\xb2\xe7\xde\x00\x29\xc0\xc9\xdc\xdd\x97\xf7\x65\x57\x03\xee\x4a\x0e\xd9\x11\x78\x75\x8a\x40\x4e\xcb\x08\x51\xbd\x44\x71\x40\x66\x4d\x92\x09\x71\xc0\x11\x70\x28\x72\x50\x6c\x2e\x45\x18\x90\xde\xa7\x8c\x4d\x9f\x8d\x05\xf0\xa5\x32\x23\x5f\x5b\x98\x2e\x05\xa2\x4b\x67\xd8\xe8\x7b\x77\x02\xf2\xb1\xd1\x27\x2a\xd0\xcc\x12\x28\x1c\xdf\xda\x3d\x2a\xd2\x43\xe0\xa1\xc5\x92\xe3\xae\xdc\xf3\x04\x5e\xf9\x5a\xbf\x7c\x9a\x29\x11\x90\x81\xa6\x95\x97\xca\x2d\x0e\x90\x39\xfb\x48\xc1\x9a\x55\x6c\x67\x0f\xb4\xe9\x92\xed\x21\x50\x63\xf0\x31\x7d\x79\xa6\x0a\xe0\x23\x5e\x7b\xf5\x1b\xce\xac\x80\x41\x9c\x6f\xee\xc6\xbf\x96\x06\xdc\xf8\x9c\x5e\x2a\xaf\x94\x06\x30\xc7\x24\x59\x27\xf4\x94\x1d\x20\xb7\xcb\x3a\x9b\x01\x15\x5d\x40\x33\xb1\x3f\x5b\x82\xcd\xa9\x01\x0d\xaf\x7c\xa8\xfc\xe1\x1c\x44\x81\xe6\x5d\xac\xa6\xcc\x1a\x92\x80\xe7\x18\xa4\x63\x8e\xa8\x71\x03\x7e\xe8\x0c\xe9\xee\x15\x6d\x21\x10\x1a\x13\xf6\x78\xa3\x0f\x90\x71\x82\xd3\xb2\x7f\x78\x5c\x1e\x70\xd7\xcf\xb5\x9d\x97\xb3\xe4\x01\xe9\x0c\x96\x49\xd1\x07\x78\x01\x83\x86\x67\xae\xf9\xdc\x37\xa2\x80\xdb\x9f\x9e\xfe\x9c\x3b\x54\x14\xf8\xcd\xd3\xc4\x78\x48\x66\x98\xc0\x2c\x62\x73\x0d\x97\xff\x26\x20\x63\x5f\x54\x2d\x0d\x9d\xe2\x0d\xc0\x64\x11\xe3\x07\x71\xdc\x54\x80\xd1\x87\x02\x0f\x49\x27\x99\x01\x6e\xb9\x1b\x61\xa0\xd5\x27\x09\x68\x2d\x72\x7c\x8f\xe6\x1c\x0f\xe0\xf6\xeb\x33\x72\x87\xe4\x7e\x11\x18\xf1\xfa\xc0\xe2\xa0\xae\x2a\x60\xf3\x9d\x30\xef\xca\x26\x39\xc0\xc5\xf6\xb9\x35\xdc\x2f\x05\x00\x49\xc9\x1a\xf1\x7b\xda\xe2\x01\xcb\x63\xbc\x24\xa3\xb8\xf6\x01\x8e\xaa\x9b\x36\xf9\x1c\xdc\x0c\x48\xdf\xdf\x16\x94\x79\x89\x8d\x02\xae\x93\x42\xac\x71\x0d\xb1\x80\x8a\x49\xdb\x0a\x7f\xac\xf5\x21\x91\x4b\x79\xcb\x91\x17\xf3\x02\xe1\x80\xfb\x17\x1d\x4f\xe7\xf0\x30\x01\x0a\x0d\x6d\xbb\x25\x29\x68\x08\x28\x51\x7a\x9d\xd3\x8c\x51\x0d\xb0\x3a\x48\x9b\xd9\xde\xb1\x97\xc0\xb4\x4f\x02\xcb\xde\xc1\x1c\x80\xd2\xdd\x01\xc2\x5a\xda\xc2\x80\x27\x37\x9a\x9a\x52\x6f\x55\x05\x6c\xd3\x75\x0c\x58\x7e\x65\x44\x01\x56\x6e\x56\xab\xa7\x1a\x03\x8d\x78\x44\xd1\xef\x33\xd5\xfe\x44\xc0\x5f\xaf\x8a\xe6\x8e\xa9\xe6\x91\x10\xdb\x07\x7f\xae\x7c\xf6\x04\x64\x26\x64\xec\x4d\x76\x1a\x93\xf0\x21\x8f\x89\xe2\x7e\xcd\x8b\x80\x2e\x5b\xc2\xc5\x7f\xc5\xa5\x00\x12\x99\xeb\xe6\x0a\x8a\x45\x08\xa4\x1f\x77\x38\x78\x4a\xf9\x0a\x90\x71\x83\x56\xb4\xe4\xe4\xbc\x18\x05\xd8\x77\x98\x25\x4f\x8e\x4f\x11\xe8\xfd\x69\x57\xcc\x74\x2a\x2d\xa0\xcf\xc6\xc2\xd6\x3c\xab\x25\x02\xa5\xdf\x86\xcd\x2b\xae\xe5\x01\xec\x30\xa3\x8d\xcd\x7a\x9b\x04\x68\x6f\x91\x46\x3c\xfc\xfc\x4f\x1c\x0d\xf8\x16\xb5\xff\xdd\x21\xc0\x63\x04\x2f\x9d\x47\xf9\x61\x0a\x7c\x38\xd7\xbc\xa1\x13\x9c\x00\x2f\xca\x54\x59\x5c\xb8\xcb\x0d\x18\xb2\xff\x67\xc5\x87\x4f\x65\x80\x7e\x8a\xc5\xbb\xe2\x65\x82\x01\xdf\xd5\x5f\xed\x77\x52\x0c\x06\x74\x49\xdb\xc8\x20\x21\x55\x42\x22\x97\x8f\x49\x07\x97\x7b\x57\xc2\x00\x1b\x78\x53\x8e\x38\x2c\x84\x51\x94\xb2\xcb\x3e\x8f\x3d\xde\x7b\x02\xca\x0a\x04\x3d\xa3\xbd\x7a\x11\xf0\x84\x7f\xd4\xcb\xd7\xbf\x6e\x90\x90\x2e\xf7\x54\xea\xa1\xa8\x8b\x80\xbc\x5b\x97\x47\xe2\x7d\xb7\x01\xa6\xcd\xea\x95\x3d\x7e\x39\x4e\x20\x5d\xc1\x69\x13\xfd\x9a\x6d\x80\x3e\x2f\xb7\x4a\xac\x9c\xb0\xa2\x40\xa4\xf5\xcb\xe1\x0e\xcf\xc8\x46\xe4\x89\xba\x30\xcd\x93\xab\x47\xc2\xf9\x0b\xfc\x26\x1b\x56\xaf\xa4\xc8\x4c\x67\x06\x86\x6a\x36\xc0\xe9\xdd\xc5\x8a\xd1\x6f\x8f\x01\xf6\xbf\x3f\x99\x5a\xba\x40\x0d\x18\x3e\xe4\x40\xa7\x60\x2d\x45\x81\x90\xe5\x66\x5b\x62\xf1\x1b\x81\xc5\xbb\xdc\x0d\xee\xe8\x6c\x00\x8c\xe9\x23\xd4\x79\x8f\x25\x00\xf2\x39\x13\x06\xfb\x35\x44\x01\xd5\x76\xe5\xca\xb0\xbc\x63\x03\x0c\xcd\x55\xde\xfc\x71\x3b\x2d\xa0\x32\xcd\x93\x57\x9b\x56\x1f\x8d\xa8\x0b\x1e\xd6\x9c\x3e\xb8\x42\xa0\xd4\x13\xed\x47\xb7\xa2\xd4\x01\x19\xb4\x93\x5d\x6d\xed\xd7\x03\xb2\x88\xdb\x14\x3f\x3b\x6b\x48\x01\x8d\xac\xc2\xf5\x48\xd5\xdb\x88\xe7\x0a\x66\xbf\xb3\x3d\xf9\x49\xe0\xcb\xa2\xc1\x7a\x06\xc9\x74\x20\x23\xb9\x99\xc4\xfa\xce\x3f\x89\xa2\x9c\x2e\x55\xe2\x16\x75\xb4\x02\x8c\x95\x61\xf0\x9d\xbb\x1d\x48\xc2\x5c\x21\xc6\x31\x91\xd5\xa2\xd4\xc5\x9b\xeb\x6e\xef\x40\x51\x3e\xd6\x2c\xd4\xf0\x0a\xf1\x00\x7e\x0c\x61\xdf\x92\x58\xa1\x01\x18\xec\xa6\xf8\x7e\xf9\x87\x36\x60\xeb\x09\xa7\xd7\x39\xb3\x3b\x01\xfb\xb6\x4a\xab\x2e\x53\xad\x07\xdc\x7b\x27\x66\x5c\xef\x06\x1b\xa0\x71\x63\xed\xe7\x3d\x32\x7a\x80\xe9\xee\x45\x55\xe3\x29\x73\x04\x86\x3a\xc8\xd1\x71\xef\x9b\xa2\xc0\xe4\xfe\x0f\x26\x57\xf6\xfc\x24\xf0\xed\x18\x5b\x87\xe4\xf5\x7a\xc0\x4d\x0c\x1b\x1d\xac\xcb\x5f\x10\x78\xe3\xb8\x97\x11\xc9\xfa\x2b\x81\x13\x4e\xd4\xd6\x0f\x6b\x86\x08\x3c\xb1\x61\x6e\xef\x51\x59\x24\x70\x5d\x73\x03\xd3\x2d\x69\x25\x20\x43\xbb\xfe\xfc\x93\x6f\x9a\x8f\x48\xe4\xe2\x6d\x58\xce\xce\x67\xf6\x88\xc0\x3d\xfc\xfb\x8d\xfe\xc8\xce\x12\x58\xfc\xe9\xc2\x95\x1b\x02\xeb\x00\xd5\x19\xb7\x64\x18\x94\x04\x02\x46\x2f\x1a\xce\x8e\x8c\x05\x50\xe0\x82\x50\x9d\x96\xb3\x34\x37\x60\x70\x88\xbc\x73\xda\x73\x26\x0a\x68\xb3\x69\xb0\xc9\x4c\x52\x03\xb2\xf9\xf5\xcf\x1b\xeb\x73\x03\xf9\x05\x77\x54\xb9\x60\xde\xef\x9e\x03\x64\x1c\x2b\x3a\x53\x10\xc2\xe3\x01\x78\xfd\xd9\xaf\xdc\x80\x3f\x76\x24\xf2\x88\xf9\xf2\x3b\xc5\x6b\x52\x87\x01\xcb\x79\x0f\xbc\x3f\x56\x72\x88\xa2\x5c\xb2\x0d\xed\xbb\xba\x0a\xce\xf7\x6b\x2b\xf2\x0d\xe9\x01\x55\xd7\x98\x9a\x29\xa8\x7b\x90\xb0\x70\x20\x3c\x99\x91\x85\x04\x48\x3d\x5b\xd3\xa7\x22\xdd\x04\xc8\x18\xec\xa8\x92\x7d\xf4\x3e\x20\x73\xe5\xa2\x02\xbb\x5c\x13\x60\x41\x40\xba\x9e\xc0\x0d\x29\xc0\x5f\x17\x24\x39\x99\x04\x0f\x52\x20\x31\x28\xf9\xf9\xf8\x03\x3d\xc0\x42\xe3\x8f\x3f\x5b\x69\xdf\x13\xf8\xa7\xb9\x9a\xa4\xdc\xa3\x0f\xf8\xc3\xf5\xb4\xdc\x74\xb4\x07\x05\xfa\xb2\xaf\xd7\xad\xad\x58\x0f\x58\x66\xcf\xfe\xbd\x32\x93\x05\xd0\xfc\x81\xc6\xeb\x2c\xf6\x23\x80\xce\x5d\xc1\xb6\x8b\x23\xf6\x80\xca\x56\x1e\x3b\x1e\x39\xb7\x00\xae\xd3\xbc\x3d\x78\xb2\xd3\x00\x30\xd3\x95\xa1\x5d\xc6\x72\x1f\xe0\xab\xa0\xe9\x3e\x69\x0f\x06\xc0\xa1\xb3\x0f\xf2\xaf\x5f\xe8\x04\xfc\x21\xc5\x48\x7b\x4c\xb9\x03\x90\xcd\xb8\x2c\xc8\x2c\xe9\x19\xe0\xd3\x0d\xef\x75\x9d\xdc\x23\x01\x13\xa6\x8f\x79\x55\x24\xfb\x02\x8e\xb2\x6c\x69\xd9\x7f\xa2\x0e\x90\xa3\xc8\xb3\x42\xd8\x51\x10\x70\xf9\xe6\x50\x54\x96\x8b\x00\x20\x93\x9b\xa0\x43\x5c\xec\x4e\xc0\xec\xb6\x17\xd4\x3c\x83\x4a\x80\x3f\x2d\xd5\xad\x7b\xa9\x9c\x01\xf5\x37\x78\x3d\xe6\xbe\x20\x04\xb8\x10\xba\xe2\x28\xb2\x46\x18\x50\x31\xec\x91\xc3\x65\x1d\x65\xc0\x6b\x2a\xe1\x07\x0e\x4a\xf1\xad\xae\x93\xfc\x56\x29\x6e\xef\x08\x5c\x36\x2e\xd5\xd4\xb7\xbe\x0e\x68\x6f\x4c\x4d\xe5\x1d\xf5\x80\x84\xd3\xfc\x57\xb6\x18\xac\x96\x47\x7f\xb6\x9d\xdc\x67\xa4\x01\x28\xa0\xf7\xe6\xec\xaf\x71\x4e\xc0\x85\x5b\x11\x4e\xc6\x0d\xeb\x28\x30\x9c\xdd\xc3\x6e\x99\xf0\x85\xc0\x53\x32\x8f\x77\x59\x25\x1d\x02\x32\xa8\x55\xaa\x53\xda\xc4\xd8\x00\x95\xb7\x4b\x9e\xc9\x9c\x18\x20\xf0\xf1\x67\x1a\x7f\xde\xf8\x7c\x20\xa3\x9b\x48\xb1\x53\xdf\x13\x04\x78\xa0\x33\xdc\x7d\x31\x52\x02\xf0\xe7\xb4\x8a\xad\x49\x8c\x34\x05\xb4\x2c\xff\xbc\x55\xb3\xdd\x46\x81\x5e\xfb\x33\xcb\x6b\xba\x36\x01\x7e\xfc\xd3\x28\x48\xcb\xcf\x0e\x18\x9c\xc1\x7f\x29\xdf\xf7\x01\x09\x37\xdc\x7c\x7e\xa5\x2f\x61\x84\xc0\xbc\xb0\xcd\xbf\xce\x9c\x67\x06\x32\x96\xde\x3d\xf7\x2b\xbf\xf4\xaa\x91\x8c\x64\xdc\x78\x8b\xb4\x13\x00\x77\xfb\x6d\xcf\x7c\xf3\x31\x15\xb0\xf4\x5a\x93\xed\x71\xe7\x09\x02\xf7\x11\xec\x1f\x83\x8e\xfe\x26\x90\x3a\x78\xb9\x29\xf7\x59\x35\xe0\x5e\x7e\x2f\xdf\xbd\x5c\x92\x80\x7b\xd7\x6e\x91\x33\xd2\x65\x06\xd4\x10\x4b\x99\xf9\x51\x66\x06\xc8\x56\xf4\xcb\x6b\xee\xb4\x37\x05\xd4\xf7\xdd\xeb\xdd\x52\x16\x07\xc8\x5e\x62\xd0\x12\xf8\x7b\xf5\x09\xa4\xba\xf4\x78\xf0\x3e\x0d\x40\xad\x1d\x95\x42\xe3\x15\xf2\x80\x29\xa5\x52\x0b\x3f\x64\xd4\x00\x27\x33\x45\x0d\x94\xab\x67\x08\x94\xa6\x13\xe0\x61\x49\x5d\x0f\x28\xd3\xcd\xec\xa5\x33\x21\x0a\xd8\x59\xcd\x3e\xc6\x34\x92\x47\x01\x1f\x15\xba\xbe\xec\xf6\x08\xc0\x10\x19\x0f\x36\x9d\x63\x2c\x80\x77\xd3\xed\xc7\x92\xa5\xd4\x29\xa0\xbe\x23\x6c\xa3\x32\x75\x76\x23\x2e\x72\xcf\x64\x4f\x6d\x93\x04\xfc\xcc\x6f\x1e\x12\x76\xf5\x13\x81\x93\x7c\xd5\x32\x46\xeb\x04\x00\xdf\xc7\x66\xfe\xde\xbb\xba\x13\x59\x75\xd9\x1b\x38\x54\xb1\x00\xb6\x3f\x3e\x6b\xda\x7f\x57\xf3\x5f\x28\x7a\xc1\x33\x97\xb9\xdf\xf6\x5f\xb8\x9b\x72\x95\x50\x0b\x61\x05\x9c\x01\x9b\xa8\xf9\x1f\x8a\x80\x2b\x97\xf2\x95\x0e\x7c\xe3\x02\x74\x35\x2c\x39\xf4\x35\x3a\x06\xf0\x04\xdf\x23\x2e\xed\xf7\x3e\x80\x6a\xfe\xf4\x2d\xfd\xfa\x35\x80\x01\x2f\xee\xbf\xce\x68\xf3\x22\x91\x91\x34\x7c\x42\xbb\xce\xf8\x1e\xa0\x41\x91\x65\xc0\x09\xf7\x62\x0a\xd8\x86\x68\x1d\x35\x51\xbc\xf5\xaf\xd1\xb0\xb6\x0b\x87\x6b\xa9\x07\xe0\x7e\xba\x27\xee\xb9\x15\x37\x01\xdf\xc7\x35\xdd\x14\x9f\xf1\x07\xec\x32\x7a\xf2\xb6\x71\x87\x3b\x45\x71\xcf\x7b\x71\x7f\x73\xbb\x07\xe0\x73\x13\x69\x6f\x03\xb6\x68\x40\x62\x9d\x83\x87\x1f\xbf\x27\x05\x6e\xae\xf7\x94\x3f\xe2\x2f\x0a\x38\x92\xf3\xca\x6d\x3d\x55\x03\xe0\x6c\xdf\xca\x55\xc6\x55\x48\x2b\x47\xfa\x25\xac\xbc\x21\xb0\x4d\xc9\xf5\xdd\xc1\x3b\x04\x90\x21\x79\xf9\xfa\x1c\xe9\xe3\x14\x81\xbd\xb4\x6a\x2f\xa3\xe9\xd7\x00\x1a\x08\xf3\x35\x3d\xe9\xb0\x04\x1c\x57\xdb\xf5\x36\x4c\x50\x01\x70\x8f\xf4\xe1\x95\xaa\xef\x6b\x00\xa5\xbf\x5f\x7e\xe2\x73\x8e\x1d\x90\x2a\xc8\xa9\x71\x64\x47\x3a\x05\x2c\x38\xad\x99\x4d\x38\x43\x01\xcf\xc5\x73\x14\x71\x98\x9c\x07\xbc\xb1\x87\xb7\x8e\xeb\x18\x37\x20\xeb\xae\x85\xdc\xb2\xb2\xb5\x14\x38\xb7\xfb\xad\x07\x23\x9f\x29\x05\x7e\xd0\x57\x57\x7c\xb0\x9b\x26\xc8\x48\x3a\xb8\x57\x61\x21\x44\x04\x50\x61\x66\x36\xde\x88\x4e\x15\xb0\xf1\x88\xde\x22\xb7\xb6\x18\x60\xab\xbb\x5c\x70\x2c\x8f\x1a\xa0\x43\x55\x2c\x55\xe0\xd0\x03\xc0\x8d\xb4\x79\x9a\x47\x25\x9b\x00\x79\x5e\xd6\x5f\x8a\xdb\x2a\x05\x18\xd4\xbe\x56\x4e\xc8\x55\x10\x70\x76\xf8\x95\xaa\xa7\xdb\x15\x40\x61\x3f\xef\x90\x53\x37\xf7\x00\xb2\x53\xe7\xe9\x78\x7a\xc4\x50\xe0\xcd\x9e\xc3\x12\x9a\x9d\x96\x80\xd7\x62\x5e\x04\x69\x6c\x9d\x21\x90\x86\x35\xb1\x48\xf8\x71\x22\x09\x6b\x1c\x59\xcb\xad\xcf\xdc\x05\x6c\x0e\x9f\xee\x7d\xae\xcd\x09\x68\x5c\xfc\xb0\x3a\x9f\x4a\xe5\xff\xff\x1a\x9c\x5d\x80\xf7\x66\xbe\xd7\xea\xed\x49\x04\xfc\x7e\xa2\xf9\xda\x5f\x3c\x7e\x24\xaf\xe9\x67\x5e\x00\xf8\x67\x36\xc6\xf6\xfd\x0e\x6a\xc0\x51\xbf\xf4\x8c\x0b\x45\x07\x00\xff\xdc\x63\x4e\x93\xc8\x76\x04\x5c\x69\xba\xdf\xd8\x61\x7a\x11\xd0\xd7\xfa\x54\xbf\x70\x43\x28\xa0\xe2\xf6\xc8\x98\xbf\xa5\xa7\x64\xeb\x29\x17\x0b\x09\xc0\xef\xe1\x71\x52\x0c\x85\x37\x00\x97\x52\xa4\x36\x2f\xf1\x5d\x06\xec\xe6\xfb\xc4\x91\xa0\xa5\x4c\x42\xd3\x23\x06\x1b\x76\x71\x5e\x06\xfc\x61\x33\x21\x75\xfe\xdb\x59\xc0\x6f\xe5\xbf\xe6\x5f\x33\x04\x00\x1e\xec\x0d\xab\xcc\x97\xf9\x4c\x60\xda\xa9\x8e\x27\x86\xfb\xe4\x00\x19\xcb\x4c\xa7\xec\x2f\xfd\x24\x30\x9a\x21\xec\x41\xf3\x5b\x5a\xc0\x1e\x65\xef\x52\x6f\xd9\x2e\x02\x63\xe5\x9c\x53\xe8\x3e\x5d\x84\x7f\x80\x5d\xa3\xff\xab\xf9\x3d\xc9\x7f\xa1\xf2\xce\x99\xe7\x1c\xaf\x85\x01\xdb\x87\x46\x60\x82\x6d\x1d\x60\xf9\xc8\xeb\x20\x7f\x8d\x0c\xc0\x6b\x4f\x35\xf8\xe3\xfb\xcf\x01\x1a\x6c\x27\xbd\xcb\x19\x36\x02\x6c\x78\x5a\x4a\x6c\x9e\xe6\x05\x2c\xfa\x7e\x9a\x3b\xba\x4b\x9b\x02\x09\x7d\xeb\x4b\xa9\x25\x9d\x28\xf0\x3f\xb7\x55\xda\x4a\xcb\xb3\xe3\x47\x7e\x13\x64\xe8\x1f\xbd\x59\x16\xe7\x20\x08\x64\x94\xe8\xb4\x8c\x8e\x65\xc5\x10\xf8\x40\x78\x42\xad\xff\xc5\x3b\x02\xb7\x0f\x9a\xb3\x6b\xbe\x16\x07\xfc\xad\x38\xf8\x74\xe6\xb4\x14\xa0\x73\x13\xbf\x75\x06\xad\x1e\xa0\xde\x47\x2f\xb9\xbb\x2f\xe3\x00\x03\x15\xf8\x47\xee\x74\xdb\x50\x40\xe3\xd4\xf7\x48\x59\xe7\x24\x40\xef\xaa\x67\xdf\x84\xfa\xe9\x00\xb5\x32\xfa\xbe\xb1\xd1\x6e\x02\xcc\x5e\x97\x1f\xaa\xde\x99\x02\x98\xf4\x28\xf1\xe5\xd3\xd5\x67\xe3\x4d\x9b\x7e\x95\xf5\xdf\x4b\xa1\x18\x39\x2a\xae\x3d\x2b\xc7\x6e\x0a\x48\x34\xd1\x25\xed\xec\x0a\x00\x9c\xb7\xfc\x3c\x3d\xdd\x1e\x00\xc8\x28\x44\xfa\x36\xc5\xba\x16\xd0\x50\xcc\xf2\xed\x91\xc7\xaf\x1a\x31\x52\x96\xb4\xd9\x85\x14\x04\x64\x58\xe8\xdd\xaf\x9d\x5e\x14\xa6\xc0\x3a\xf7\x98\xd9\xa8\x8f\x9b\x01\x7f\x2f\xe5\xa4\x66\xd8\x36\x03\x2a\x33\xf6\xe4\xcb\x38\x76\x90\x30\x8c\xc3\xf6\x45\x43\xd9\x43\x12\x9e\x1c\xd0\xdf\xf3\x77\xc4\xcb\xd1\xb2\x69\xe1\xd0\x15\xc0\x5d\xcf\x63\xfc\x78\x03\xbe\x10\x78\x34\x5f\xff\xa9\x9c\xde\x59\xc0\x77\xd7\x95\xde\x2a\x6b\xfd\x26\x30\xdf\xe6\x6d\xfe\x3e\x63\x55\x20\x83\x61\x6f\xd2\x81\x0a\xaf\x46\x02\xbf\x5e\xb6\xac\x75\xac\x10\x05\x32\x58\x03\x55\x73\xbc\x58\xd3\x00\xcd\x64\x38\xbb\xce\xae\xc2\x8d\xef\x02\xad\x18\x57\x08\x60\x74\x66\xd4\x8a\x64\xef\x3b\x02\x47\x4f\x1f\xad\xac\x0f\xfc\x45\xe0\x06\x83\x4d\x8f\x55\x07\x54\x80\x0c\xa6\xfb\x42\xa1\xa1\x49\x8f\x1a\xf1\xde\x29\x52\xe0\x77\x06\x16\xc0\xd2\x94\x78\x36\xb9\x3b\x4f\x01\x45\x8c\xe0\xf1\x81\xe7\xb3\x04\x5e\xe1\x5c\x9f\xc4\xa9\xfc\x9d\xc0\x53\xaf\x7a\xad\x48\x8b\x22\x80\xcd\xd2\x3a\x47\x0e\xce\xcc\x12\xb8\xc3\x30\x31\x46\xc2\x91\x16\xd0\xff\xf8\x27\xa3\xb1\x16\x79\x40\x59\x8d\x04\x37\xc3\xd8\x73\x80\xe7\xdf\x5f\x1d\xdf\x23\x7f\x18\x50\x6f\xa7\xdf\x50\x8b\x93\xc8\xea\x16\x29\x57\x5d\xbd\x53\x18\x70\xba\x53\x77\x67\xd2\x57\x4e\xc0\x5b\x5f\x36\x3d\x9d\x1c\x2c\x02\x14\x97\x90\x3e\xc8\x26\x5b\x06\x78\xf5\xb4\xba\xc3\x5f\xc4\x47\x31\x45\x8b\x7d\xbd\x48\x01\xe1\x1d\x05\xc2\xfe\x5f\x2e\x02\x0a\x55\x65\x8f\xa6\x73\xee\x07\xa4\xb6\xe2\xed\x55\x63\x5b\x24\x90\xf6\xd7\x26\xe7\x81\x08\x2d\x12\xfa\xe6\xed\xd9\x93\xb3\x24\x01\xe8\x75\xe9\x68\x4b\x79\xf0\x7a\xc0\xac\xdc\x64\x81\x72\x5a\x6b\x0a\xec\xdd\x9d\xce\x47\x5a\x60\x03\x54\x2c\xee\xbf\x12\xf8\x63\x3d\xe0\x75\x95\x4a\xbd\xa5\xfc\x6f\x04\xda\xf9\x09\x4a\xba\x08\xed\x03\x32\xdc\x7e\xfa\xd3\x30\x90\xf2\x09\xd4\x59\x79\x2b\x5a\x1c\x3a\x4b\xe0\x4f\xf1\x8b\xdf\x9f\x49\x15\xc2\x3f\xd0\x15\x32\x6c\x50\x54\x7d\xf4\x5f\x38\x15\xff\x14\x33\xfd\x4d\x29\x4a\xce\xdb\x34\x03\xab\xd9\xcd\x80\xe6\x1b\x1e\xbd\xf8\xbd\xa9\x14\x70\x6e\xf8\x9e\xf0\x06\xff\x26\xc0\xa0\xa5\xf5\x29\x51\xd2\xd5\x80\xbd\x29\xf7\x16\x68\x6f\x3e\x00\x3c\xf7\x66\xdb\xb1\x94\x97\x4d\x80\xb5\xa9\x0d\x75\x8f\x5b\xc2\x00\xf5\x68\xe4\x9e\x4c\xc9\x46\x00\x6a\x30\xe4\xee\xfe\xe2\x32\x46\xe0\xf2\x09\xd7\x89\x40\xa7\x05\x02\x05\x47\xea\x2d\x4a\x52\xf2\x00\x07\xb7\xf9\x6c\xfa\xc1\x61\xf1\x2f\x50\xb1\x4d\xba\x0a\x7b\xb3\x02\xde\x3f\x50\xf3\x42\xfe\x82\x1f\xe0\x91\x5f\xb8\x87\x7a\x6b\x1e\x20\x0c\xef\x17\xd8\x5f\xb3\x06\x30\xb1\x32\x7c\x5e\xe2\x03\x0b\xe0\xcf\x56\xf9\x37\x2e\xbd\x9a\x80\x71\xa3\xe1\xc1\xde\x11\xdb\x00\x23\xcf\xfc\x36\x95\xfe\xcc\x4b\x81\x8f\xd7\x9b\xcc\x99\x4b\x7d\x29\xb0\x53\x8e\xfb\xb8\xfb\xa3\xa3\x80\x0d\x31\xaf\xd6\x1d\xd7\x9d\x23\xd0\xd1\x9d\x4f\xc4\xa2\x52\x1d\x50\xa2\x89\xf3\x19\x13\xaa\x02\x56\x55\xaa\x8b\xdf\x15\xe0\x00\x1c\x3f\x6a\x69\x6e\xb2\x69\x8a\xc0\x5f\xf7\x36\xb7\xfc\x62\xbc\x09\x64\x24\x2f\x9f\xb7\xbe\xf9\xe9\x0a\xa0\x66\xb6\x86\xc1\xe9\xba\x69\x82\x8c\x2f\xa4\x5b\xc7\xea\xda\xdf\x51\x40\x66\xe4\xe6\x15\xd1\xa6\x29\x02\x4d\x34\x76\x15\xbf\x1e\x0e\x26\xe1\xb3\x74\xa6\x0d\xce\x67\x9b\x01\x75\xe5\xa2\x27\x37\x18\xb4\x02\xbe\xfa\xfc\x29\x77\x97\xdb\x0c\x09\x75\x56\x7a\x74\x2c\x0c\x5b\x01\x15\x23\xdb\xef\x9b\x47\xb3\x02\xde\x6e\x5a\x5c\x18\xd0\xa9\x21\x61\x6a\xea\xcd\xc9\x45\x51\x1e\x40\xee\x99\x8c\x79\xce\x53\x1e\x80\x87\x3e\xfd\x2c\xb7\xf6\xde\x0e\x38\x33\xb5\xe4\xa5\x68\xfb\x93\xc0\x81\xa2\xe5\x51\x01\xe1\x6c\x12\x8e\x9a\x87\x5c\x60\xcc\xdb\x04\x18\xa4\x6b\xe9\x11\xe2\x29\x0e\x68\x3e\xb1\xc2\xf5\x39\xd3\x0c\x50\x69\xbd\xe6\x15\xc7\x86\x93\x24\x6c\x8b\x77\xe7\x77\x1d\xb0\x07\x32\xe4\xea\x84\xac\xde\x45\xbb\x91\x50\xdb\x9d\xce\xda\xb0\x8e\x01\xf0\xcc\x5b\x0f\x77\xfe\x56\x24\x70\xdf\x6e\x41\x13\xa3\x91\x3b\x80\xfe\x75\xc5\xf7\x7e\x7f\xf8\x00\x58\xa8\x73\x52\x6f\x5f\x56\x2b\x89\x3c\x5a\xf1\x28\xf1\xcb\x38\x66\x42\x01\xbb\x28\x2f\x33\xd7\xab\x59\x24\xcc\x7b\x1a\xc4\x3a\xd1\x72\x97\x84\x93\x05\x82\x03\x57\xee\xe8\x03\x19\x45\x63\xcb\xa7\xc5\xe7\x5a\x00\xab\x67\x6c\x1b\x0c\x4f\x97\x02\xee\x58\x50\xd9\x14\xb3\xdc\x02\x68\x56\x20\xb2\xcd\x76\xa8\x1e\x70\xf1\xba\x4e\x89\xe2\xde\x06\xc0\x73\x29\xa3\x69\x59\xbf\x8b\x00\x1f\x87\x36\x57\x65\xe2\x5d\xc0\x32\x73\xe5\xd9\xf4\x0f\xb5\x80\x6a\xf5\xef\xa4\x0a\x9f\xc7\x01\x86\xe6\x09\x1d\x8d\xbd\x18\x0b\x58\x3f\x7a\xf2\x87\xfd\xe3\x1c\x12\x86\x1c\x60\xd1\xec\xff\x1d\x0b\x78\xf6\xdb\xfa\x89\x93\x46\x49\x80\xf2\x3a\xb6\x77\xad\x1f\x99\x91\x70\x76\xc3\xf1\x7a\x47\xd6\x48\x40\xee\xfd\x36\x3e\xed\x9e\x21\x14\x67\x7c\x68\x53\x47\x4c\x9f\xb2\x03\x7a\xb8\x1e\x75\x24\xd6\x6c\x07\xec\xad\xde\xf0\x40\x71\xd3\x2f\x02\xbf\x4a\xdb\x39\x3d\x59\x1e\x20\xb0\xca\x80\x7e\x7a\x60\x7a\x3b\x60\xb2\x33\x3f\xaf\x10\xf5\x45\xc0\x6b\x1c\x0c\x1f\xc4\x6a\xb7\x53\x40\x84\x23\x5c\xb9\x66\xc3\x83\x46\xdc\xdd\x5f\xa8\x9a\xda\xb7\x03\x90\xee\xdd\xf1\xc7\xfa\xdf\xd6\x02\xbe\xb2\xd0\xe7\x68\x1b\x3e\x46\x81\x8d\x6c\x76\xd7\xff\xde\x5f\xa1\x6a\xe7\x03\xbf\x08\xea\x00\x1a\xe4\xdc\x69\xdd\x5d\xc7\x0f\x38\xde\xf4\x46\xea\xc1\x97\xa3\x80\x23\x22\x77\x58\xf7\x6a\x9e\xa4\x80\x83\xff\xdc\xfe\xd3\x91\x74\x80\x07\xf4\x18\xd3\x06\x0e\xec\x04\x9c\xdc\x79\x37\x28\x3a\xb2\x0c\x90\xb5\x72\xca\xcf\x89\xa9\x18\xf0\xa8\x3f\x1f\x87\x65\x81\x1d\xe0\x7e\x9e\x5e\xd1\xe7\x37\x14\x01\xf5\x1f\xd2\x74\xf3\x64\xca\x03\xd2\x6a\x3f\x4d\x3d\x9f\x77\x00\x50\x9f\xab\x73\xc6\x56\x66\x8e\x40\x69\xeb\xeb\xcd\xbb\x12\x03\x80\x8c\x2b\x54\x23\xcd\xa9\x76\x85\x8d\xb8\x7b\x78\xa3\x5c\xcf\x5a\x2e\x40\x06\xaa\x76\xf3\x42\xe5\x70\xc0\x49\xe6\x73\x6d\x69\x63\xb4\x80\x33\x5c\x77\x7e\x30\xf5\x73\x00\x86\xca\x38\xb4\xa9\xee\x9c\x21\x90\x5e\x21\x72\x5b\xb5\xeb\x02\x81\x3d\xeb\xac\xa5\xf6\x4c\xda\xc2\x3f\xc0\xb5\x90\xec\x2b\x53\x4e\xf5\xff\xff\xa0\x47\x04\xe0\x4a\xc0\xbc\xb8\xea\x66\x16\x40\xdb\x6d\x0d\x42\x96\x1d\x2c\x80\x35\x7f\xba\x4a\x5b\x67\x6d\x28\xc0\xe4\xe5\x47\x6c\xd1\xac\x69\xc4\xf8\x31\xe3\xaa\xca\xc1\x3d\x80\x03\xb2\x69\xe9\xe6\x6f\xa9\x01\x37\x56\xfd\xa1\x67\xfe\xa4\x46\x81\xf1\xcc\xa8\x85\xac\x53\x52\x80\x68\x2f\x64\x86\x6f\x35\x00\xa5\x9e\xc9\x97\xec\x1d\xad\x01\xbc\xb1\x4b\x5c\x76\x78\x15\x54\x31\x98\x33\xb5\xb1\x1c\xf0\x65\xd1\xe2\x9f\xa1\xff\x35\xe2\x9f\xb7\x8b\x94\xbb\xe7\x0b\xf8\xe5\x73\x46\x89\x68\xae\x2f\xa0\xb6\x02\x93\x8e\xfc\x6a\x29\x57\x59\x3a\xa7\x79\x93\xb2\xec\x9b\xab\xf9\x20\x5d\x15\x0a\xa8\x4f\xcb\x78\x47\x7e\x13\x3b\xe0\xe3\xe0\x8f\x1b\x7b\xe4\xda\x1a\xf1\x15\x57\x27\x91\x50\x5f\x0a\x64\xb8\x7a\x55\xbf\xbf\xe0\xc2\x09\xb8\x7d\x2b\xef\x16\xb1\xb3\x13\x04\x4a\x88\xb4\xd1\xb7\xdc\xd5\x05\x3c\xa8\x54\xdc\x6d\xf7\xb3\x8a\x84\x85\x84\x46\xcf\x7a\x3b\x4b\x40\x59\x53\xf1\xd2\xb6\x22\x6d\xc0\xc9\xce\xfe\x7c\x9e\x9f\xe6\x80\xf5\xa7\xab\xfd\xce\x0e\x22\x81\x22\x76\x37\x1e\x56\xcd\x28\xc0\x3f\x20\x99\xd9\x67\x3b\x9d\xf1\xa1\x11\xef\xe7\x3e\xe2\x62\xaf\x9e\x24\x30\xfc\x78\xa2\xc3\x3a\xf3\x06\x02\x17\xe9\x17\xee\xa8\xd6\xae\x01\x34\x7c\xeb\xa5\xf3\xc7\x93\x8a\x02\xc9\x67\xaf\xc6\xeb\xfd\xb8\x42\x60\x7f\x44\x66\xf4\xdf\x6f\x6b\x0c\x99\x9e\x77\x1a\xa5\xcf\x01\x32\x84\x04\xd5\xed\xea\x5b\x4c\x00\x1b\xe8\xd6\x19\x6e\x1b\x60\x07\x34\x96\xfb\x48\xc7\x96\x67\x45\x81\x0f\x6f\x73\xaf\x7c\xe9\x60\x02\x4c\xb8\x61\x1e\x6c\x14\xbc\x91\x02\xfd\x5f\xa9\x4b\x12\xa4\xd9\x29\xb0\xff\x43\xf3\xa8\xd7\xed\x39\x02\x4d\x9e\x7f\xcc\xa1\x7b\xcb\x01\x38\xf6\x5d\x7a\xdf\xd4\xce\x22\x40\xa7\x4e\x31\x23\x21\xdb\x06\xc0\xe1\x8a\x2d\x47\x44\xf7\x35\x03\x0a\x4b\x08\x2c\x68\x53\xd7\x02\x7e\xe4\x4a\xe8\xfa\x5b\xb4\x6e\x5f\xde\xbc\x77\x3a\x14\x30\x63\x44\x51\x23\x5c\x24\x0b\x70\xda\xd7\x50\x48\xe8\xf4\x35\x12\x7e\x37\xdb\x7b\x2b\x33\xb8\x19\x70\xc0\x32\x74\x71\x30\xb9\x09\x50\xf4\xa5\x13\x3d\x83\x5f\x33\xe0\x8f\xaa\x72\xfd\x25\xcb\x2a\xc0\xb5\x11\x5f\x5c\x55\x4e\x57\x01\x1e\x17\x78\xa3\xbe\x79\xae\x12\xf0\x7d\x9f\xa5\xcb\xcc\x11\x1b\x40\x3d\xa9\x7d\xd5\x43\xa1\x4d\x80\x9b\x3d\x38\x33\x9f\x6d\x68\x02\xbc\xa2\x54\xc5\xf1\xb7\x38\xd3\xd2\xe9\x94\x53\x6f\x01\x9c\xcf\xf2\x39\x79\xe1\xab\x2c\x60\x73\x6d\x56\x43\xa0\x58\x2e\xa0\xc3\xed\x34\xcb\x1b\xb2\x15\x80\x47\x6a\x79\x4c\x27\xaf\x14\x03\x26\x8e\x57\xcb\x4f\xcb\x55\x00\x1e\xaa\x95\xe1\x69\xf8\x6d\x01\xe8\x67\xcd\x7b\x69\xc6\xdb\x08\x30\xc5\xd7\x0b\x07\x47\xb5\x01\xb5\x99\x79\x85\xa3\x26\x15\x01\xab\xe7\xf6\x2c\x9c\x3e\xc3\x01\x28\x2a\xf8\x2a\x91\xf9\x26\x2d\xe0\xf3\x7c\xad\x85\xdf\x7b\x78\x00\xb5\x17\xd4\xde\x8f\x35\xde\x27\xe1\x96\x44\xb9\x65\x2a\x97\x12\x20\x23\xe1\x62\x7f\xf6\x5f\x44\x85\x98\x8e\x88\xef\xd7\x03\xbc\x26\xbc\x61\xa8\xd8\x78\x23\xa0\x69\xca\xae\x93\x2c\xa6\xd4\x80\xaa\x4a\x76\xde\x0c\xec\x4c\x80\x27\xac\x37\x3f\xaf\xea\xd0\x02\x2c\xcf\x09\x70\x09\x19\xb5\x01\xac\xf5\xb9\x19\xa4\x9a\x11\x08\x48\x4a\xa3\x92\x31\x1b\xf7\x03\xfc\xf9\x4e\x39\x62\x41\xf2\x17\x81\xb2\x89\xc6\xc9\x3e\x85\xcc\x80\xba\x41\x4f\x5e\x12\x6a\xa6\x14\x08\x3e\xf5\x4b\x2c\x50\xa0\x8e\x44\x2e\x25\x47\x1f\x39\xb4\xe7\x06\x03\x7a\x6d\x99\x54\x36\x0e\x50\xfc\x17\x84\x46\x24\x7e\xf3\xc7\xf9\x01\x1a\xe7\x4e\x74\xa9\x04\x1b\x03\xb6\xb8\xd6\x9d\x75\xc9\x28\xa2\x28\x5c\x87\x06\xec\x6e\x77\xab\x03\x76\x30\x4b\xf8\xb2\x06\x5b\x02\x7a\x56\x9b\x3b\x7a\xad\x3d\x01\x38\xb3\x5e\x7e\xbb\xd6\x46\x7f\xc0\xb6\x22\x5d\x46\x2d\x7a\x3a\x40\x23\xe7\xfd\x8b\x71\x2e\xc6\x80\x2a\x8c\x9b\x4a\x84\x83\x72\x00\xb7\x65\xbc\x38\x5e\xd3\x2e\x0d\xf8\x46\xa5\xbf\x68\xc1\xf5\x05\x81\xe6\xb8\xac\xf3\x87\x6e\x75\x51\x35\xdc\xac\xf0\xa7\xe7\x30\xa0\x85\x81\x92\x92\x33\x6d\x39\x09\xd7\xae\x97\x2e\xa8\x7d\x9e\x4f\x22\x8f\x06\x14\xaa\x97\xa4\x64\xd7\x01\x4a\xab\x7e\xa4\xb1\xd0\x79\x04\x98\x73\xef\xeb\xf1\x77\x2c\x37\x61\xa1\xce\x71\xf6\xf5\x90\x2d\x20\x61\x5a\xe8\xcf\x3d\x65\x4d\x0e\x8c\x89\x13\xf6\x63\x67\x39\x00\xcf\x6d\x19\xe7\x1f\x7e\xd5\x45\xe0\x3c\x7f\xff\xc8\x45\x19\x55\xc0\x4f\x01\x9b\x4f\xcd\xc7\x47\x51\x40\x29\x80\xd5\x4e\xf7\x54\x2c\xa0\xa8\x5c\xb1\x10\xff\xa5\x39\x82\x0c\xce\x84\x2a\xb6\xe9\xc8\x38\x20\xe3\x80\xb4\xd6\xf8\x52\x70\x3a\x60\x88\x60\x9d\x42\xcc\x3a\x2b\x40\x76\x77\xbb\xdd\x4d\xef\x14\x00\x5b\xeb\x34\x1b\x5e\xae\xb9\x45\x22\x97\xc5\xa2\xde\x37\xd4\x02\xdf\x08\xf4\xec\x32\xb8\x66\xf6\x9a\x0b\xb0\x66\x24\xd7\x9d\xdd\x2e\x82\x02\xe7\x58\x23\x04\xc7\x16\xc2\x01\x6d\x23\xde\xbd\xd2\xd5\x3f\x01\xa8\xf8\xda\x9a\xc5\xc3\xec\x10\x05\x62\x9e\x5e\x1a\x6b\x17\x65\x07\xec\x9d\x30\x9b\x67\x9a\x67\x03\x24\xd1\x9b\xb2\xd8\x2a\x8b\x02\x1a\xc7\xea\xaf\x39\xfd\xf8\x45\x23\x86\x5e\xeb\xa2\xee\xa7\xd2\x04\x32\x1c\x7a\xcf\xb2\x15\x33\x7e\x20\x50\xf4\xfb\xfd\xe6\xc4\x9d\x5b\x49\x68\x3e\xe8\x53\xd8\xbd\xfa\xc6\x3b\xbb\xe3\x90\x4a\xdc\x54\x0b\x09\xe7\x69\xc2\xa6\x0b\xfc\x13\x48\x18\x7c\xd2\x50\xed\x7d\xce\x83\xd5\x97\x9b\xe1\x97\x89\xdf\x03\xc0\x0e\x99\xb4\x34\xdb\xaf\x0f\x00\x83\x1c\x52\xda\xdc\x69\x48\x24\xe4\x12\xba\xf9\xea\xb3\xcd\x41\x40\x89\x9f\x6c\xbd\xba\x26\x1d\x80\x83\x57\x77\x2d\x2d\xcc\x3c\x06\x1c\x39\x65\xa2\x6b\xb8\xb1\x11\x90\x30\xb3\xf9\xc9\xce\xb4\xba\x04\x26\x7c\x38\x3d\x71\x2a\x09\x50\xc2\x86\x31\xa4\x29\x3b\x05\xb0\xe1\xfb\xb3\x2a\xac\x1e\x27\x90\xe9\xfb\xe8\x95\xa8\x5b\xa3\x14\x70\xbc\xeb\xf1\x95\xfb\xd8\x0f\x02\x5f\xbf\x67\x49\x93\xa3\x5a\x24\xf0\xa1\xe3\x4a\x99\xdd\xa3\x3f\x04\xea\x30\x59\x9d\x3b\x11\x90\x05\x64\x4c\x31\xef\x28\xe2\x6a\xb8\x0a\xc8\xea\x3b\x63\xf1\x5a\x9f\x03\x70\xa2\x96\xcb\xee\xca\x28\x2b\xe0\x1e\xea\xeb\x1e\x8a\xe2\x9b\x00\xab\xaa\xb7\x15\x05\x34\xb4\x92\xc8\xc5\xc5\x51\xab\x3d\x7a\xf7\x1d\x02\x2d\x07\x92\x23\x84\x97\xe9\x61\xe1\xa9\xf7\xcf\xa1\xa7\x07\x01\xed\xdb\xfb\x1d\x1b\x23\x8e\x02\x0e\x42\xea\xe9\x85\xd5\xed\x49\xaf\x32\x25\x5b\x22\x6d\x98\x40\xea\xed\x47\x3a\xbf\x7e\x63\x03\x32\x42\x87\x1f\xa8\x5d\xfb\xb3\x4c\xa0\xb1\xbe\x28\xd5\x47\x71\x31\x40\x23\xd0\xbd\x1f\xb0\x9d\x1b\x50\xe4\xc6\x77\xa9\x33\x43\x74\x80\x47\xcf\xaf\x0b\xa8\x8c\xf9\x43\xe0\x23\x9a\x9b\x02\xb1\xe5\x7d\x04\x06\x73\x18\xff\x51\xfe\x3a\x48\x60\xe4\xb6\x67\x7e\x8b\x2e\x17\x80\x8c\xf2\x8b\x0f\xe1\xaa\xf0\x02\x81\x34\xda\xd1\x9b\x45\x53\xdf\x12\xf8\x26\xc0\xcf\x81\x7f\xac\x00\x70\xa5\x7e\x73\x62\xe9\x24\x25\x44\x8e\xef\x0f\x31\x8f\x30\x04\x3c\x7c\x7d\xf0\xec\xd2\x84\x09\x05\x1c\x34\xd4\xda\xfe\x1f\x23\xf6\x19\x8e\x65\xdc\x3f\x7e\x3c\x65\xa5\x50\x48\x65\x44\x0a\x21\xb2\x57\x9c\x1f\x3b\xa1\x24\x0a\x65\x67\x97\xcc\x24\x2d\x64\x14\x0a\x95\x50\xf6\x9e\xd9\x21\x72\x99\x65\x14\x65\x65\x47\x2a\x4a\xc3\xee\x43\xca\xff\xd0\x83\xdb\x75\x1f\xff\x8e\xfb\xf8\x3d\x7b\x1d\xef\xcf\xe9\x81\x93\xeb\x3b\x2e\xcf\x3e\x45\xc0\x41\xc7\xf3\x09\xfe\x07\xb5\xc9\x70\xd2\x39\xf3\xd9\x85\x49\x09\x32\x7c\x7c\xd9\x70\xcb\x6c\xb3\x28\x60\x28\xef\xd3\x43\xdd\x5a\x2a\x80\xfa\xc3\x76\xd9\xbf\xb5\x43\x01\x87\xe9\x18\x4f\x29\x0f\xfe\x20\x90\x39\xc9\xb1\x3e\x23\x52\x10\x70\x67\xd3\x9f\xcd\xa7\x4f\x99\x03\xf2\x6e\x10\x92\xec\xfa\x7e\x95\xac\x58\x73\xbd\xb0\xf5\x72\x8a\x23\x61\xdc\xf6\xd9\xd4\x4d\x6c\xdb\x00\x65\x8d\xaf\x98\x8f\x70\xa4\x02\xfa\xa4\x78\x8c\x18\x09\xac\xe2\xc4\xa3\x59\x27\x63\x24\xf0\x53\x5f\x80\x88\x56\xc6\x24\x81\x92\xcd\xf1\x9e\x75\x8e\x1b\x60\x0d\x4d\x9c\x27\x77\x5d\x1a\x11\x06\x8c\xaf\xd5\x0e\x2f\x5e\x3d\xc6\x2c\xcb\x6a\x25\x06\x37\x88\x00\xf6\x72\xc9\x88\x33\x1b\xa7\x00\x96\x13\xa5\x4b\x43\x47\x93\x01\x83\xfd\x66\x35\xed\x49\xc6\x80\x07\x68\x1d\x75\xe5\xbf\x26\x00\xee\x8e\x3f\x7b\x74\x91\x4a\x0e\x50\x69\x4c\x91\x7e\x8a\xda\x93\x84\x5e\xb9\x3d\x29\xb3\x8a\x2a\x80\xaf\x2b\x4f\xb5\x6c\x61\x60\x05\xfc\x19\x33\xf9\x7a\x3e\x23\x95\x40\x77\x53\xc6\x5d\x3f\x5b\xe4\x01\x2f\x51\x6e\xdd\x59\xe6\x56\x4c\x5a\x2b\xce\x3c\x07\x8c\xa5\x9b\x7b\xaa\x91\x23\xb0\x65\x24\xab\x5f\x19\x70\x4e\xbb\xc2\xfd\x68\xe4\x10\x81\xde\xea\xeb\xb5\x83\xad\xe6\xc9\x50\x29\x68\x5f\xdb\xb5\xae\xb6\x1a\x5b\xee\x35\x86\xbf\x7f\x43\x09\x58\x73\x35\xca\xe0\x08\xcd\x1e\x32\x38\xce\x7f\x4c\xb9\x5d\xd1\x4b\xa0\x5f\x5d\x32\x13\xbd\xf4\x3e\xc0\xc5\x1b\x85\x89\x79\x1f\x8f\x00\xd2\x28\x0d\x7d\xde\x33\x99\x0e\xf8\xa6\x8d\x66\xc7\xde\x55\x34\xb3\xca\x9d\xdc\xa3\xb2\x15\x90\xbb\x4a\x41\x38\x8f\x91\x1d\x70\x86\xb9\xfd\x82\x5f\xe9\x56\xc0\x17\x5f\xee\x94\x5f\xe3\xd0\x00\xf4\x8b\xd6\x90\x4b\x9b\xd9\x0f\xb8\xa4\x17\x6e\x96\x98\x5b\x5d\x8d\x57\x0e\x26\x27\x76\x06\xfe\x26\x30\x39\x63\x5e\x8f\xc5\x6b\x98\x40\xf6\x8f\x72\x56\xf1\xce\x9b\x61\x0d\x4d\x3d\x6a\x54\x97\x6d\x8e\x00\x32\x5b\x50\xe9\x0c\x2a\xc9\x00\x56\x8c\x36\xe4\x89\xe4\x10\x80\xfc\xfc\x4e\xe1\x34\xdf\x8f\x01\x16\xcd\x5e\x48\x6a\x7d\xcd\x0e\x78\xed\xd7\xb5\x58\x31\xdb\x5f\x04\x4a\x0f\x78\xff\xc8\x2b\x10\x07\xbc\x21\x59\xfd\x20\xec\x32\x0d\xa0\x9a\xa4\xf1\xf2\x8d\x9d\x94\x80\xa5\x68\x50\x1e\x2c\xff\x89\xc0\xa0\xae\x3c\x9b\x05\x31\x0d\xc0\x3d\x41\x36\x57\x1b\x2f\x6c\x03\x7c\x1d\xf3\x62\xb7\x87\xbc\x18\x19\xbe\x90\x4c\x7f\xfa\x72\xbc\x27\x90\x6b\xd9\x45\x98\x89\xe7\x13\x81\x8d\x29\x33\x77\xc5\xba\x76\x03\x46\xfb\x5c\xc8\x61\x73\xa2\x04\xac\x4c\x13\xf6\xbb\xa7\xc2\x09\x78\xfc\xd4\x5d\xe1\x32\xf5\x31\x02\x3f\x8d\x3e\xf7\x35\x2b\xde\x03\x6b\x48\x90\x0a\xb4\x18\x52\xeb\xad\xc6\xfd\xaa\x47\x98\x05\x63\x17\x08\xa4\x17\xd2\x35\x3d\x61\x25\x03\x6b\x78\x53\x96\xff\x40\x4b\xf6\x04\x19\xbc\x67\xee\x1a\xbc\x88\x56\x06\x14\x89\xf0\x7b\xfd\xfb\xe1\x02\x81\x32\x91\x47\x7b\xc4\xf7\xf9\x01\xd2\x70\xdd\xa4\xbd\x7f\x53\x1f\x30\xda\xd5\xc4\x94\xf9\x94\x3e\xe0\x34\xff\x96\x3d\xf7\x77\x1c\x23\x1b\x35\xb0\x5e\x30\xae\x2f\xd9\x01\xf8\x9e\xa2\xf5\x3d\xe3\xc4\x2c\x81\x3c\xdb\xf4\x45\x1d\xf0\x18\xa0\x6c\x57\xfd\x80\xc1\x2e\x2b\x32\xbc\xd9\x14\xc1\x17\xf0\x86\x09\xb0\xa8\xed\xa6\xfa\xa1\x13\x72\x80\xf4\xdb\x94\x16\x79\x63\x07\xaa\xf1\xde\x0b\x1d\x7e\x36\xe6\x0d\x80\x24\x3d\x4d\x27\x25\x23\x1f\x32\x6c\x77\x5b\x68\x63\xdc\x5b\x53\x8d\xc1\xfb\x87\x8d\x18\xdc\xb6\x00\x66\x7c\xe7\x93\x3d\x9d\xbf\x09\xd0\x39\x8d\x63\x63\xcb\xe9\x5f\x04\xd6\xb6\x2d\xc4\x3f\x65\xda\x01\x6b\xa0\xe7\x1d\xcf\x3e\xa3\xb5\x0e\xd0\x6b\x74\x50\xb8\xef\x36\x1f\x19\xe4\xbd\x32\xe6\xa3\x39\xf6\x92\x61\xf8\x47\x7e\x8a\x7f\x01\x12\xe8\x62\x67\x9e\xf3\x76\xe1\x3e\xe0\xb3\xcd\xbe\x9e\x77\xff\x98\x03\x7e\x72\x14\xb7\x28\x8d\x39\x01\xe8\x76\xd7\x8e\xff\x68\xb3\x09\x60\x8d\xf1\xb9\x69\xe7\x38\x0b\x40\x3a\x86\xc4\x88\x8f\xee\xb2\x80\xb6\x9c\xfe\xa7\x37\x67\x26\x92\xf0\xcc\xfb\x9d\xdd\xbe\x54\xea\x80\xc3\xf5\x19\x5e\x13\xe1\xc7\x00\xc5\x51\x4e\x37\x68\x2e\x0e\x90\x67\x68\xec\x07\xeb\xc6\x38\x58\x7c\x91\x5c\x21\xdb\xe2\x4b\xfa\x4f\xc0\x4d\xd3\x62\x39\xa1\x82\x61\x80\xde\x19\xf6\xd1\x31\x2c\x27\x01\x5f\x14\x36\xed\x26\xbd\xda\x0e\xa8\xe2\x18\xd9\x40\x3b\x22\x47\x06\xb6\x6b\x9f\x7b\x6d\x75\x86\x08\x9c\x79\x7e\xad\x5c\x2c\x6b\xf5\x96\xe0\xca\x24\xc4\x7d\xca\x12\x50\x22\x68\x54\x4a\xca\x3c\x84\x84\xfc\xcd\x5a\xba\x4e\x8f\x1f\x02\x36\xbf\x7c\xc5\xdf\x2d\x5d\x47\x42\x3b\xe6\xfc\xc5\xce\xa6\x87\x80\xc7\x8d\xdc\x0b\x06\xaa\xb8\x01\x67\x85\xa2\x3a\x16\x8b\xf9\x00\xaf\x6c\xcc\x77\x7e\x25\xf3\x8d\xf8\x07\xe6\xd4\xbf\xd9\x51\x1b\xbc\x27\x90\x57\xfa\xb1\xf7\xde\xcf\xcb\x04\x2e\xbd\xc9\x7e\xa1\xb6\x8d\x17\xd6\xe0\xff\x2b\xa2\xe9\x12\x4d\x31\x81\xb2\xba\x91\x7b\xea\xeb\x68\x00\x6f\x72\x9e\x6f\x37\x94\xe1\x03\x34\x6c\x33\xc8\x3e\x13\xc6\x04\x78\xe0\x8a\x8f\xbc\xed\x60\x0a\x20\xfd\xe0\x8f\x8e\x47\x7d\x29\x80\x6f\x7f\xff\x62\xcc\xe9\xd3\x07\xf4\xe2\xa4\x31\xb9\x6f\xa9\x45\x56\x62\x5b\xfa\x4e\xfc\xfd\x8a\xa5\x51\xf3\x25\x8b\x41\x92\x30\x60\xfa\xec\xa8\x0c\xa7\xdf\x29\x32\x9c\xdc\x64\x5a\xfb\x6c\x91\x09\xf0\x45\x5c\xdd\x1d\xd1\x98\x6d\x80\xf1\xc5\x36\x1a\xe5\x02\x06\x64\xa8\x53\x28\x3c\x34\xb6\x6b\x1b\xa0\x8d\x85\x6a\xba\xcd\xd8\xba\xd5\x0f\x65\x96\x94\xc5\xb0\x11\x60\x4c\x7c\xab\x19\x9f\xe0\x71\x40\x2d\xc4\xf5\xdc\xdf\x0a\x00\x3f\x1c\x8f\xbb\x77\x93\x95\x04\xc8\x27\x95\x7c\x4a\x3d\xbf\x9a\xac\x08\x44\x6d\x64\x1b\x5e\xb9\x0c\xa8\xef\xa3\x77\xde\x9f\xc1\x1d\x50\x4c\x77\xd8\x73\xa3\x75\x26\xe0\xaf\x21\xda\xb4\xbf\x38\xde\x1d\xa1\xf5\x3b\x35\x86\x0c\xb2\xd1\x59\x76\x0a\xc6\xf4\x64\x98\x1f\xd5\x97\x8e\xb8\xf3\x9e\x58\x03\x31\xe9\xa2\x70\xce\x74\x3b\xe0\x59\xbd\xde\x03\xa7\x74\x3f\x12\x6b\x48\x3b\xd8\x67\x41\x4a\xeb\x01\xcc\x39\xde\xbc\xde\x9c\xb7\x0c\x50\xe0\xad\x73\xad\xcb\xe1\x6c\xc0\xd1\xfa\xf8\x2e\xb3\xd5\x32\x7e\x63\x46\xed\x48\xe7\x65\xc0\x9b\x75\xa9\x0b\x5c\xee\x96\x64\xf8\x4e\xd2\xbc\x30\xc0\x6d\x02\xb8\x70\xdc\x58\xff\x1b\xbb\x30\x60\xb0\x51\x3c\x9b\xce\xea\x6f\x7a\x4a\xfe\xce\x6f\xb9\x80\x7a\xc0\xf9\x19\xaf\x4f\xff\x8d\x4d\x46\x79\xed\xb4\x1f\x2e\x03\xba\x64\x08\xe4\xd6\x38\x8c\x13\x18\xf2\x8b\xf1\xa5\x4e\xf8\x67\x32\x3c\x09\xb8\xc4\xe5\xc1\x3d\x45\xe0\xd4\xb5\x2b\x3f\x75\x43\xec\x09\xfc\x62\x94\x5c\xb3\x2d\x54\x17\xd6\xb0\x63\x64\x5f\x6a\x61\xdb\x2e\x40\xcf\x75\xf1\xf1\x83\x92\xda\x80\xde\xa7\x82\xf9\x37\xb8\x8f\x10\x28\x49\x1b\xf4\xfe\xc7\x8d\x9d\x80\x11\x2b\x3e\x86\x3b\x7b\x96\x08\x3c\x65\xfa\xa6\x21\xfa\x07\x05\xac\x41\x76\xf3\x2f\xf9\xaf\x5a\x2b\x04\xf6\xd3\x8e\x6c\x6f\xba\x55\x53\x8d\x49\xef\x34\xb8\x1b\x6e\x9b\xc2\x1a\x12\x2f\x5e\xe3\x0f\x74\x10\x26\x83\xc3\xe4\x53\xcd\xe7\x91\x12\x80\x83\xad\xeb\xd3\xdf\x97\xd1\x03\xce\x3e\x5e\x58\xb9\xcc\x2b\x0d\xb8\x6b\xd2\xfa\xf5\xc3\x2f\x2b\x04\xd2\x69\x2a\x7c\x21\x0e\x59\x03\x5a\x4e\x6f\x69\xb1\xa1\xda\x0a\xe8\x92\xe3\xf4\x45\x72\xa3\x05\x19\x4e\x9f\x59\xc7\x3e\x6a\x32\x4b\x20\xd5\x15\x2a\xc1\xd8\xeb\x14\x80\x76\xdd\x47\xaf\x4c\x6a\xaa\x91\xa1\x60\xa6\xce\x3f\x4d\x6d\x88\x58\x43\x83\x73\xab\x82\xcb\xa1\x93\xf0\xbf\x70\x91\xf9\x25\x8b\xd0\x7a\x24\xd6\x70\xff\x5d\xee\xb5\x5d\xbc\x6a\xb0\x86\x32\xa6\x8a\x9d\x3f\xb3\xde\x12\xc8\xff\x71\x8b\xb3\xe2\xf8\x67\x02\xa7\x76\x7f\xaa\xff\xf6\xd0\x11\xf0\xd5\x72\x79\xd4\xe9\x6c\x03\x40\x4e\x2a\xa6\xa1\x80\x51\x3f\x40\x52\xf6\x95\x85\x3f\xbb\x0e\x02\x3e\xbb\xbe\xe1\x4d\xc8\xdc\xea\xde\x22\xd0\x6e\xed\x6b\x74\x03\x50\xda\xf5\xc3\xe5\xbf\xb8\xe3\x39\x29\xd0\x46\x48\x01\xd2\x07\x39\x04\xc8\x8c\x10\x24\xcc\x0b\x7d\x9a\x61\xbc\x8f\x0a\xd0\x78\x85\x95\x7f\x63\xc9\x1d\x12\x26\xaa\xe4\x26\xc2\x57\x4b\xc0\xd9\x50\xf6\x2a\x5f\x1f\x6d\xc0\x42\x1d\xce\xb9\xa6\xd5\x65\xb5\xdd\x8d\x6e\x29\x38\x9b\x1f\xd6\xc0\x60\x36\xcb\x9c\x2b\xf4\xba\x1a\xf7\x24\x8f\xc7\x3e\x77\xfc\x46\xe0\x52\x52\xb6\xca\xe5\xc3\x21\x24\xbc\x7c\xd2\x4d\x3c\x54\x66\x1d\x60\xa8\x80\xcd\xe5\x47\xdc\xf5\x80\xf2\x83\x0f\x63\x8f\x89\x14\x00\x9a\x5a\x49\xdf\x79\x13\x59\x0a\x58\xe6\xa5\x21\xbc\xc1\xea\x1c\x20\xa3\x68\x32\xfb\x85\x9d\x25\x80\xb7\x1f\xb8\xeb\x3e\x71\x29\x05\x94\xbb\xfe\xfb\x4a\x2b\x75\x00\xa0\x5d\x5e\x48\xfc\xce\xe7\x77\x01\x57\xe4\x79\xee\xcd\x7d\xf1\x07\x14\xf9\x7a\x6a\x87\xbe\x72\x35\x60\xe3\x68\xdb\x95\xed\xad\xe5\x80\x25\x3e\x9a\xfc\x03\x5c\x51\x80\xbb\xba\x8e\x74\xca\xe7\x25\x92\xd0\xed\xac\xf7\x26\xd6\xd5\x51\xed\xcb\x40\x75\xa1\xef\xf7\x01\x35\x3f\x32\x35\xfe\xd2\x7d\x44\x06\x15\xbe\x59\x19\x6a\xe9\x70\xc0\xb0\x0e\xfd\x93\x72\x1c\xe4\xa3\xe0\xf6\xef\xec\x3e\xfe\xfb\x00\xb9\x78\x08\x0b\x2f\x77\x02\x90\x77\x69\xf6\x50\x5e\xc2\x41\xc0\x3c\xaa\x9c\xe0\x4e\x3b\x63\x40\x49\xfe\xbc\x2a\x47\xba\xf3\x64\x38\xf1\x31\xe5\xee\xe3\x08\x24\xb0\x7c\x4a\x50\xff\x0d\xed\x6e\x58\x03\xb5\xb1\xb8\x99\x6f\x02\xef\xbf\xe0\x58\x5e\xfd\x91\x82\x54\x44\x60\xb1\x05\x8f\x13\x75\xaf\x25\x60\xea\xa3\x29\xba\x34\x89\x50\xc0\xb3\x7b\xb3\x77\x19\xbf\x33\x06\x74\xc8\x13\x90\xa0\x1e\xb4\x23\xad\x15\xb1\x09\x91\xa2\xbf\x0b\x63\x9a\xbe\x0e\xa3\x70\xe8\x04\xb1\x86\x3d\x71\x8f\x26\x4f\xd1\x7f\x20\xc3\xa2\x85\xbb\xc4\xde\xcd\x74\x80\xcc\xf1\x47\x13\xa9\x5c\xfa\x09\x9c\x4e\x84\x97\x79\x87\xb9\x01\xcf\x6d\x7e\xfc\xc3\xd3\x2f\x17\x50\x43\xc4\x6a\xa6\x3e\xb1\x0a\xf0\xa4\xf4\x8c\x47\x4d\x4d\x31\xa0\xf4\xa3\x5e\xce\x8b\xab\xa3\x15\xb5\xa6\x9d\xd6\xa7\x45\x00\xbd\xe9\xc2\x57\xac\x1e\x3c\x02\x34\xbd\x91\x67\xcb\xb1\x27\x0f\x70\xcf\x5c\xe7\xab\x8f\x65\x07\x01\x95\x5e\x92\x26\x08\xdb\x29\x02\xfd\x94\x1d\x3e\xe5\xe9\x08\x03\x0e\x34\x24\x9f\x7d\x6d\xbd\x0d\x90\xb8\xfd\x34\x6f\x7f\x20\x13\xa0\xbc\xd9\xbe\x92\x13\xc3\xae\x80\xec\x25\xe2\x9f\x1e\x04\x9a\x01\x76\x3d\x7e\xc4\x6c\x5f\xc4\x0c\xd8\x64\x2f\x73\xc7\xc7\x4a\x80\xc0\xc6\x91\x4d\x1e\xba\x1b\x9e\x01\x86\x8b\x8d\xfb\xdd\x35\xad\x21\x43\xb9\x33\x8d\xf6\xa6\x0b\xa7\x01\xab\xa8\xdb\xcf\x4a\x6a\x9d\x02\x6c\x22\x2a\x6a\x65\xb7\xd8\x91\x8d\xcc\x8a\xac\xe7\x3c\x2a\xcf\x00\x26\xda\x68\x3f\xfc\xe1\x14\x09\xf8\xdc\x9b\xf9\x90\xe7\xac\x04\x60\xfe\xa1\xaf\x61\x51\x2e\x5b\x01\xef\x33\x6a\xda\xbb\x7e\xd0\x05\xac\x7c\x5d\xba\xfd\x07\x4d\x31\x09\xfd\xb2\x3e\xf5\x45\x90\x46\x01\x57\x3e\x4f\x31\x59\xbf\x7b\x0f\xf8\xe0\x0a\x4b\x42\xe8\x6a\xb9\x59\x54\xf9\x4d\xd9\xf7\x29\xe0\xc6\x8e\x0d\xd9\x9b\xef\xfe\x22\xf0\x45\xc0\xce\xea\xdc\xfd\x62\xb0\x86\x9d\x2b\xcd\x09\xa9\x09\x32\x64\x68\xbd\xd2\xd5\xc9\x37\xda\x02\xa8\x74\xfc\xf4\x55\x30\x3f\x0d\x78\xa0\x53\x5a\xe1\xd5\x73\x49\x40\xfb\xe9\x0b\xfb\xde\x0b\xdc\x03\xac\x08\x6b\xf9\x3a\xfc\xac\x09\x70\xeb\xce\x99\x51\xbb\x8f\xe7\x49\xe8\xe6\x78\xfe\x56\x5b\xe6\x2d\xc0\x17\x31\xee\x26\x41\xb6\x15\x80\x96\x8e\xb4\xf3\x3f\x59\x2a\x00\x5b\xf4\xb8\xef\x8b\xde\xac\x00\x54\x24\xb2\xdd\x7c\x6f\x55\x00\x1e\x9e\x9a\xb7\x09\xe6\x58\x1d\xb9\x5f\x38\xc1\x96\xfb\x8d\x84\x1d\xa7\x57\xda\xfe\x8e\x42\xe3\xac\xe3\xd3\x7e\xd8\x02\x56\x75\x5f\x0c\xff\xbd\xeb\x24\xe0\x75\x65\x6d\x5a\xf7\x9b\x76\x64\xa3\x7a\xd9\x7d\x9b\x7a\xdd\x35\x01\xaf\x51\xea\xfc\xa4\x73\xab\x05\xe4\x7f\xbb\xf9\x10\x8d\x55\x2d\x60\x1a\x93\x68\xea\xd5\xef\x9f\x09\xdc\x11\xd6\xb0\x72\x5e\x9c\x11\xf0\x02\x53\x01\x73\xda\x21\x36\xc0\xd4\xfd\x67\x9f\xb3\x9e\x49\x01\x94\xd1\x3b\xe0\x38\x9c\x7f\x15\xf0\xfd\x44\x43\x68\xa8\x76\x3b\x60\x19\xc9\x50\x83\x62\xe8\x25\x20\xdb\xd0\x4e\x63\xc3\x4b\x39\x80\xa5\x9c\xfb\x6f\x30\x3d\xf3\x07\xec\x0e\x4b\xbd\x7e\xe3\xa5\x08\xa0\x45\x31\x97\x6c\xa2\xf1\x56\x40\xe4\x35\x71\xb2\x50\xd1\x04\xac\xed\xa4\xb3\xa5\xb6\xd6\x04\x9c\x09\xfc\x33\x54\x9a\x76\x00\x50\x68\xe7\x09\xb1\x82\x98\xef\x04\xea\xd1\x1a\x18\x7e\x0b\xb7\x06\x34\xd7\xf7\xf6\x53\x38\x56\x4a\xc2\x8c\x37\x5b\xd9\x0c\xe3\x92\x00\xc7\x34\x77\x76\x26\x98\x64\x01\xaa\x0a\x90\x52\x94\x24\xb2\xc8\x46\x2b\x5e\x9f\x65\x44\xda\xc4\xc8\xa0\x25\xb1\xf4\xee\xf1\xdb\xdf\xc4\x1a\x9e\x92\xae\x5a\xca\x08\xbc\x22\xb0\xc4\xd5\x9e\xf2\xb0\xaa\x10\xe0\xe0\xc7\xf0\x0a\xcf\x4b\xca\x80\xee\x8a\xaa\x74\x31\xaa\x3c\x80\x95\x17\xdf\xe9\x98\xe4\xaf\xde\x8d\x0d\x8e\x9e\x3e\xb8\xff\x13\x81\x3e\xdb\xde\x7d\xe0\x74\xfe\x43\x60\xc6\xa6\x10\xb9\x6e\x2b\x46\xc0\x53\x0d\xb5\x03\x4b\x3c\x9c\x64\xe8\x08\x92\x68\xad\x7a\x3c\x54\x8d\x36\x72\xad\x57\x98\x57\xff\xee\x5f\xae\x6e\x3a\x2a\x41\xbb\x1e\x70\xf0\x33\xc7\xdd\xab\x62\x45\x24\xcc\x0e\xe6\xaa\xf6\x59\x3d\x50\xef\xbb\xb8\xa1\xf5\x73\x88\x1f\x20\xe3\x93\xa6\xd0\xd3\x7b\x7d\x00\x43\xba\xc7\xec\x6c\x2f\x65\x01\x7a\x5a\x6b\xdb\x6f\x59\xcc\x00\x7c\x93\xd5\xe7\xc0\xcb\xef\x03\x18\xcf\xe2\x20\x2b\xe7\x7d\x15\x30\xe0\x80\xb8\x52\xd4\x97\x74\x12\x06\xb1\xde\x3e\x47\x37\xe7\x0b\x98\x98\xc8\xb0\x57\xa2\x7a\x1d\xe0\x77\x35\xdd\x97\x95\x74\x0a\x80\x9d\xde\x16\x73\xc5\x45\x4f\x01\xd3\x4f\x6c\x71\xec\x2d\xde\x0d\x18\x20\xb6\x8b\x7a\x6f\xa0\x16\x20\x8f\xf4\xa3\xf0\x5d\xe5\xa7\xc8\x8a\xb2\x81\xe2\x8c\x81\xb7\x3d\xe0\x8f\x68\xb3\xf9\xf8\x03\xe7\xc8\xca\xd3\xb8\x5b\xac\xd7\x64\x4c\x01\x47\xd3\xe9\xc7\x05\x7e\x09\x03\x96\xaa\x7f\x68\xdb\x1e\x39\x4b\x60\x72\xde\x9e\x16\x79\x13\x1e\x40\xf6\xe2\xdc\xed\xf7\x8d\x9f\x03\x2a\x3c\x66\x34\xbb\xe9\xd1\x08\xd8\x11\x7b\xbf\x6d\x83\xd5\x13\xc0\xf0\x7c\x21\xe7\x42\x9f\x67\x80\x87\x0f\x01\x6d\xd6\xad\x1c\xc0\x66\xaf\x7c\x99\xd8\xc3\xc3\xd5\x48\xbd\x77\x96\x85\xb4\xc1\x14\xfe\x81\x68\xcd\x73\x17\x7f\x3b\x0f\x11\xc8\xc0\x6b\xf6\x2c\x44\x94\x15\xb0\x2b\x4e\x2b\x88\xf7\x57\x39\x20\x7b\xbf\xf0\x87\xd4\xf0\x32\xc0\x94\xc0\xa0\xa3\x41\x2d\x05\x80\x12\x5a\x2d\x5b\xf9\x56\x47\x29\xb4\xfd\x6c\xdd\x6f\x79\x01\xbf\x8b\x74\x44\x05\x8c\x26\x03\x7a\xf3\xd4\x7d\x9f\x09\x5f\x22\x50\x67\x5b\x0a\xd3\x71\x2b\x49\xc0\x0b\x96\xcf\x03\x0f\x99\xfd\x22\x30\x64\xde\xf3\x98\x6e\xcb\x32\x81\x11\xa4\xf6\x01\x0b\x5d\x31\x58\x83\xe2\xc7\x6f\xf1\x99\x95\x6f\x08\xcc\xb8\xc9\x3d\xfe\xf9\xf3\x24\x81\xe7\xc3\x9d\x7f\xad\x5f\xde\x01\xe8\x91\xed\xbf\xde\x76\xaf\x0a\x19\xea\xb7\x8d\x95\xc5\x17\x51\x00\xf2\xd9\x72\xb3\x7b\xe4\xd4\x00\xd2\x27\x5c\x15\x10\x70\x5f\x24\xb0\x31\xa2\xb9\xdc\x5b\x59\x19\xd6\x30\x7d\x62\x3c\x63\xd3\x63\x1e\x32\x84\x1d\xce\xb4\x7d\xb6\x5d\x0c\xf0\x6b\x64\x2f\xa5\x4f\xd4\x56\x32\xb4\x59\xd2\x97\xaa\x7e\xf7\x27\xd0\x6a\x90\xc1\x59\xfc\xd9\x77\x02\xc7\x3f\x90\xe8\x6e\x3e\xe2\x01\xf4\x41\x2f\xbe\xc8\x29\x5f\x32\x28\x9d\xa8\xd9\x6b\xf2\xd0\x04\xf0\xa1\x07\xff\xb5\x26\xc1\x1a\xc0\x4a\x1a\x69\x95\x9c\x25\x51\xc0\x2c\x05\xfc\xad\xe4\xd4\x04\x78\x8d\xbf\x66\x96\xfe\xc2\x13\xc0\x9a\x0b\x3e\x5c\x8b\x32\xd5\x80\x55\x3b\xc4\x7d\x7d\x9b\x2b\x01\xef\xef\xcc\xbe\xdf\xc1\x62\x41\x06\xa9\xde\x72\x2a\xae\xcc\x75\x80\xd2\xe7\xba\x0e\xec\x3a\xf9\x9e\xc0\xc9\x03\x91\x03\x85\x5c\x8c\xb0\x06\x0f\xfb\xa6\xc4\xc6\x53\x54\x80\xf5\x9c\xcd\x06\xec\x9a\xca\x80\x7e\x52\x22\x5b\x1a\x87\x17\x09\x7c\xed\x60\xf7\xc3\x85\x56\x15\x70\xc5\x70\x28\xfe\xb3\x9e\x18\x19\x64\x7d\xf4\x64\x14\x8d\xd9\x01\x83\xcb\x66\x5b\x83\x1d\x9e\x03\x0e\x5d\xf7\xeb\x8a\xfd\x23\x01\x78\x73\x3c\x8d\x3d\xca\x72\x2b\x60\xef\x2c\xaf\x78\x85\x71\x04\x09\x43\x5c\x72\x98\x67\x18\x8c\x01\x7f\xd2\x3d\x55\x1b\xb7\x4c\x03\xdc\xcb\xd7\x30\x1f\x7a\x72\x91\x40\x47\x9f\xe6\xc4\x2d\xdf\xd9\x01\x3b\x37\xf5\xbf\x96\x4d\xd4\x00\xcc\xf2\xbf\x41\x3b\xa5\xa8\x42\x06\xae\xa1\xd2\x39\xaa\xc8\x9d\x64\x10\x7d\xa1\x50\x6e\x96\x74\x02\x90\x51\x90\xe1\xf6\x67\xa5\x3d\x80\x74\x8e\x97\xec\x8e\x64\x6d\x02\x4c\x1f\x51\xdc\x2d\xea\x24\x09\x78\xa6\xf3\xc3\x03\x3f\x27\x43\x40\x99\x9e\x16\xdf\xf2\x9b\xcf\x49\xc8\xb1\x68\x4a\x65\x17\x59\x07\xc8\xe6\x22\x9c\x27\xd4\xa4\x08\x78\x5a\x2b\x41\xaa\xa5\x32\x1d\x70\x7d\x5b\xfc\xb2\xc9\x60\x3a\xe0\xd5\xd8\x79\x83\xb2\xa7\xa7\x01\x2b\x9d\xac\x52\x0c\xf5\xf4\x01\x19\x5e\x7f\x5c\xb7\x27\xfc\x13\x81\x0f\x02\x74\xa9\x63\x4d\xc7\xc8\xf0\xf9\x66\x7d\x58\xae\xd3\x16\xc0\xa6\xec\xb7\x1d\xed\x47\x9f\x00\x16\xa6\xde\x50\xe7\xd3\x7b\x02\x38\x41\x1b\x99\x0a\x57\xca\x01\xbb\x7e\x0c\x5b\xa9\xd9\x33\x01\xca\x72\xd2\xf6\x95\xe7\xfa\x92\xc1\x62\xf3\x0d\xb9\xb9\x6f\x02\x80\xc6\x5f\xa5\xe4\x82\xd3\x24\x00\x0f\x0a\xd3\x27\x86\x2d\x50\x03\xd2\x72\x2d\x2d\x6f\xa3\xff\x46\x60\xb7\x21\xe4\x5d\x79\xf5\xa6\x1a\x63\xc3\x28\x66\x9b\x57\x72\x61\x0d\x2d\x3c\xbf\x4e\xd3\x69\xc8\x02\xd2\xdf\x90\x15\xbf\x2f\xc8\x07\xa8\xd1\xde\xb9\x6d\xcb\xf7\xad\x80\xac\x13\x6c\x45\xe3\xc7\x42\xff\x85\x26\xee\xbe\xd4\x47\xd1\x2a\xff\xc2\xd1\xf6\x92\x91\x5b\xb7\xfc\x01\xa3\x47\x99\x3e\xc7\x17\x26\x01\xa6\x99\x2c\xf0\xfd\x0a\x2a\x20\xe1\xf6\x7e\x69\xc3\xa5\x55\xa8\x3f\x17\xb7\x8d\x15\x39\x01\xb8\x4f\xec\x95\x23\x7f\x80\x36\xac\x95\xb0\x1d\xae\x56\x2b\xd9\x1b\x01\x95\xe4\x2e\x75\x70\x3b\xeb\x01\xbe\xe0\x71\x90\x7d\xcb\xb1\x1b\x50\xf2\xba\x86\xb8\x77\x38\x1f\xe0\xaf\x0d\x0f\xdf\xb5\xfc\x5e\x20\xb0\xe0\x81\x8c\xdf\xdd\x25\x19\xf8\x07\x86\x74\x76\xb6\xda\xd4\x4c\x10\xb8\x9f\x4d\x20\x3a\xe5\xa0\x3f\x20\xd7\x71\x0a\xad\x77\x1e\x85\x04\x7e\xca\xa6\x08\x06\x81\xe3\x80\xeb\xa9\x7d\x53\x9e\x7e\xb7\x80\xb5\xe2\xdd\x74\xf2\xd3\x5f\x94\x90\xbe\x95\x14\xc7\xac\x03\xbc\x54\x64\x3b\xd1\x72\x90\x05\x30\xba\xba\x23\x94\x66\xc4\x13\xd0\x47\x24\x30\xa3\xdc\x74\x89\xc0\x97\x8d\xbe\xfa\x7e\xa5\x48\x60\xb2\xb6\x96\x5f\xb9\x2b\x07\xe0\x58\xca\xb9\x7e\x4a\x1b\x16\x32\x04\xe4\x78\xa4\x22\xe5\x60\x35\xe6\x30\xef\xee\x0b\x8e\x3f\x0c\x18\x77\xf4\x41\x9a\xf3\xa5\x22\xc0\x6a\x31\xcd\x88\x0c\x8f\x03\x80\x8a\x9f\x99\x4e\x1b\xb7\x1e\x06\xe4\x19\xb9\x51\xf8\xc4\x4d\x0b\x50\xe8\x94\xe8\x90\xaf\x36\x1b\x60\x86\xc2\x54\x1a\xcd\xf8\x4d\x32\xd8\xa9\x3d\x8a\xa4\x1c\xcb\x00\xcc\xd7\x9c\xf1\x2c\x79\x7b\x0b\x10\x37\xe9\xff\xfe\x41\x22\x01\x3e\xd2\x74\x2b\x20\xa9\xd4\x03\x5e\xff\xd2\xae\x57\xaf\x54\x0f\xd8\x55\xe6\xf9\x4a\xf1\x4b\x0d\xa0\x5d\x3b\xff\x91\xcc\x6f\x85\x80\x14\xe1\x41\x2f\xfe\x3e\x43\x8b\x93\xa1\x23\x0b\x7a\x80\xcc\x9c\x2c\x55\xcf\x9e\x18\x00\x5e\x92\xe7\x2d\xac\x3e\xc8\x08\x18\x1d\xf3\xd8\xa2\x64\xcb\x45\x32\xcc\xdd\xe3\x4b\xac\x4b\xb2\x04\x5c\xc9\x63\x6a\xfe\xf1\x87\x17\xf0\x85\xd6\x8f\x4f\xc3\xa4\x2a\x62\x0d\x51\xcd\x7c\x6f\xef\x52\xae\x07\xd4\x2e\xc8\xb0\x3e\x78\x75\x1f\x20\x8c\x72\x5f\x33\x7c\x56\x05\x78\x2a\x69\x7a\xa8\xff\x4a\x0a\x09\xc7\x8d\xef\xf4\x1e\xba\x57\x43\x42\x93\x4f\x09\x9c\xc6\xab\xa3\x2f\x23\x43\x31\x61\x6d\xea\x80\x2b\xfe\xb2\x6f\x37\xe6\xd7\x01\x96\x5c\x89\x32\xfa\x72\xc7\x19\xf0\xc0\xd7\x23\x4b\x39\xb0\x7a\xf7\xd4\x91\x6b\xcb\x5e\x45\x4f\xff\x99\xe5\xbf\x48\x74\xb8\x23\xf8\x77\x94\x24\x39\xe5\x41\x69\x5f\x04\x78\x99\xf6\xa6\x37\xd3\x97\x1c\x32\x14\x5e\x32\xd5\xf9\x6f\xac\x9c\xbc\x75\x6c\xcb\x2a\x4a\xc2\x43\x54\x9a\xaa\x1e\x01\x16\x48\x71\xe8\x48\x4f\x44\x00\xda\x55\x0a\x29\x34\xe6\x05\x02\xb2\x94\x4e\x9d\x3f\x46\xe9\x04\xa8\x75\xf8\x4f\x3a\xab\x6c\x0c\xe0\x4f\xd3\x6c\xf1\xc2\x8c\x12\xc0\xed\xd1\xb2\xf3\x7c\x99\x25\x80\x13\xb5\x98\xff\x17\x61\xa5\xe7\x4d\xcb\xbf\x56\x02\xfe\x11\x7a\x5f\xb7\x6f\xb5\xb8\x7f\xab\xb7\xe9\x8b\x71\x23\xe1\xfb\x47\x0b\x3d\x67\x5c\x6d\x01\x37\x36\xaf\x14\x9c\x31\xb7\x05\x94\x90\xd8\x76\x9d\x61\xf5\xac\xb5\xbb\xe9\x54\xd3\x8e\x97\x36\xb0\xf6\x4c\xdd\xe0\x9f\x2d\x69\x6e\xba\x80\x0d\x97\x1e\xff\x4e\x3d\xae\x0f\x48\xf5\xe4\x96\xf3\x51\x2a\x4b\x32\x90\xf6\x07\xfc\x39\x94\xe6\x43\x56\x6a\x03\xc4\xb2\x75\x69\x15\xff\x6f\x58\xbc\xb4\x43\xf6\xa3\xa7\x33\xe0\xc7\x92\xbd\x1a\x29\x83\xad\x04\xf2\x0a\xbf\xbf\x9b\x20\xe9\x0b\x6b\xd8\x55\x9a\x71\xd5\x4d\x9b\x13\x30\xf7\xed\x17\x39\xd6\x61\x7e\xc0\x8c\x0c\x7f\x85\xeb\x52\x5b\x00\x49\x92\x41\x3f\x0d\xb2\x6f\x93\xc1\xd6\x88\x78\x67\x9a\xba\x1b\x30\xb7\x38\x42\x31\x7c\x42\x1c\xd0\x43\xe4\x85\x92\x69\x38\x1d\x20\x65\x3f\xbb\xed\xb6\x67\x6c\xff\x42\x49\xa6\xea\x0d\xc9\x86\x29\x02\xcf\x76\x7e\x1d\xab\x91\x6d\x26\x61\x43\x9e\xb2\x9b\xb1\xf8\x1b\xc0\x17\xc4\xdb\xcd\x6f\x2f\x0e\x00\x36\xfb\x1e\x72\x0c\x66\x4c\x26\xc3\xf1\xaa\x8f\x22\x46\xc3\x05\x80\x7a\xc6\x62\xbf\x6d\x36\x45\x00\x46\xf7\x86\xf4\xe6\x3e\xe8\x23\x90\x32\xd4\xe3\xb8\xa1\x5e\x0d\x60\x82\x9a\xf9\xc1\xbf\x68\x08\xf8\x7d\x80\x33\xfc\x23\xb1\x86\xba\x9c\x23\x35\x42\xbf\x1e\x93\x50\x53\x7b\xfa\xb8\x7e\xe5\x0a\x81\xc1\x11\xb3\x3d\xfd\xab\x6b\xcb\xff\x80\xa3\x73\xb1\x88\x9e\x0d\x27\x60\xe7\x75\x8f\xaf\x12\x5e\x93\x04\xde\xf9\x3c\xf4\xd4\x59\x2a\x1e\xd0\x52\x6a\x83\xd6\x0a\x75\x38\x19\x3c\x1c\xe6\x6e\x7f\x3b\x16\x0e\x58\x44\xaf\x97\xf5\xe2\x20\x0f\xe0\xd6\xc6\xb9\xf9\xd8\x41\x7d\x40\xd7\x27\xda\xeb\x9e\xbe\xf6\xfb\x17\x46\xeb\x46\x4e\x26\xae\x1e\x8d\xf8\x53\x62\x33\x97\xbe\x17\x01\xe6\x65\xce\x3f\xed\xbf\x17\x0e\x78\xb9\xa2\x90\xc1\xe6\x87\x38\xe0\xc1\x82\xb1\x77\x72\x47\xab\x48\x38\xed\xa4\xe0\xa4\xba\xed\x0d\x60\xd9\x19\x42\x44\x69\x15\x9f\xc5\xf7\x26\x1b\x1f\x7b\x03\x38\xd2\x69\xf1\x62\x4b\x47\x18\xe0\x17\x37\xee\xc0\x04\x01\x29\x40\xf9\x49\x4e\x6d\xd7\x2d\x8a\x64\x88\xfa\x70\x81\x61\x6b\xf4\x12\x81\x1c\x0e\x32\x76\x0f\x8d\xb9\x01\xdb\x37\x7f\x7d\x9e\xbe\x69\x3f\xa0\x0a\x73\xde\xe3\x2d\xec\xdb\x01\x6b\x8e\xcb\x57\xc5\xd7\xfc\x22\xd0\x3b\x42\x5d\x9d\xe0\xa1\x03\xfc\xf4\x30\x39\xff\xce\xe5\x08\x40\x17\xd7\xe5\x3b\x37\x4b\x92\x01\xb5\xdf\x97\x3d\xff\x5b\x7a\xed\xbb\x75\x7c\x8f\x0c\x13\x68\x01\x5e\xb5\x1b\xa2\xbb\x09\x0c\xf5\x1a\xee\xa6\xab\x9b\x24\xb0\xc6\x5f\x6b\xd7\x4c\x75\x2a\x20\x97\x58\x4b\xe6\x4c\x75\x09\x19\xbc\x54\x4a\xd2\x67\xab\x4b\x60\xd1\xfc\xe3\x8d\x5f\x0d\x25\x80\x94\x56\x86\x10\xb6\x52\x43\x86\xbb\xd3\xeb\x0b\xf7\xed\xac\x24\x2b\x02\xca\xfb\x7e\xed\x31\xba\x0d\x68\x8a\x82\x8d\x21\x3c\x0e\x24\xbc\xbf\xd5\xe2\xe0\xcb\x92\xab\x80\x23\x85\xa1\xbf\x85\x05\x83\xc8\x9e\xb9\x51\xd3\x4c\x75\xdc\x30\x10\x30\xe8\x40\xf8\x5d\xc1\xf3\x29\x80\x0a\x45\x71\x75\x0e\x37\xee\x00\xbe\x72\xab\x6a\x78\xd5\x13\x0d\xe8\xd8\xa7\xab\x98\xe9\x75\x8f\x84\x85\x49\x54\x97\x95\x99\xe2\x00\xed\x3b\x54\x73\x2f\xa9\x84\xc3\x5a\xb1\x2c\x98\x3a\x26\x56\xb5\x1b\x70\x7a\xf6\xac\xef\x44\x87\x2c\x19\xce\x9f\x88\x88\x98\x18\xe4\x00\xbc\xf5\xb2\xd4\x57\xec\xda\x68\x35\xaa\x5f\x5f\x7c\x5a\xfe\xca\x18\x30\x7a\x32\x35\x9d\x3d\xdf\x94\x0c\x1c\x21\x3e\x81\x0f\x38\xa8\x01\x5f\x3a\x12\xad\xa7\xd5\x97\x09\x7c\x3c\xc5\x14\x64\x90\xc6\x0d\xd8\x6d\x74\xfb\x6d\x35\xd7\x0a\x81\x21\xe5\x7e\xeb\x27\x3a\x0e\x03\x2e\xfc\x4e\xb2\xd6\x49\xa8\x01\xd4\x48\xa7\x7c\xb2\xa0\x59\x48\xc2\x83\x67\x92\x0f\xc4\x1f\x1c\x26\xa1\xed\x06\xae\x0a\x2d\x86\x62\xc0\x09\x07\xd6\x99\xd6\x83\x59\x80\x01\xd9\x7d\x0e\xea\xc7\xb3\x00\x3f\x9c\x34\x9e\xfb\x8b\xfc\x8f\x37\x78\x34\xfe\x0b\x16\xcb\xc5\xf7\x25\x56\xdf\x4f\xf2\xc7\xac\x01\xe6\x27\xd1\x80\x9e\xea\xd4\x12\x3d\x06\xf5\x80\x33\x3e\xb3\x4e\xd2\xa7\x63\x00\x67\x56\x4c\x19\x03\x4f\xc5\x00\x5e\x7b\xf2\x5c\x23\x91\x3d\x16\x50\x6f\xa6\xcc\xba\x21\xd3\x04\x70\x4a\xd5\xd6\xcf\x5f\x51\x11\x70\xa8\xee\xfb\x74\xeb\xb3\x1c\x32\x70\x39\xfe\x18\x6c\x59\x45\x94\x5f\x63\x4c\xf3\x2a\x2e\x5e\xcc\x3c\x39\x77\xcf\xea\x5f\x18\xef\x52\x6a\x5c\xd8\xf9\x00\x70\x3c\x2d\xe5\x51\x65\x7e\x0a\xe0\xcd\x7d\x96\xb7\xab\x8a\x93\x48\x98\x70\x54\x4a\xeb\xaa\x3a\x33\xe0\x48\x9a\xc3\x59\xee\x6b\xdc\x80\x5c\x06\xc5\x4b\x0c\x43\xac\x80\xe6\xb7\xa6\x9e\x84\x5c\xac\x22\x03\x87\xf4\xa8\x57\x5c\x4d\x19\xe0\x86\x96\x60\x8d\x84\xff\x82\xfb\x4b\xca\xf0\xa6\xe3\xa9\x80\x95\x2b\xa5\xc6\x42\xae\x79\x80\x6f\xf6\x0a\xc5\x5c\x8a\x48\x23\x21\xeb\xf8\x71\xdf\xc3\xbc\x1e\x80\x58\xe7\x9a\x3b\xa7\x5e\x06\x58\xa7\x17\xdb\xff\x17\xe3\x41\x29\xcc\x84\x75\x3d\x59\xc9\xbd\x23\xe3\x57\xff\x23\xe2\xff\x86\x60\x76\xa7\xbb\x5c\xa7\xbd\x01\x2f\x77\x16\xd8\xd7\xd9\xa5\x01\x1e\x50\xbf\x1a\xda\xc4\x9a\x4c\xc2\x13\xf5\x5c\xc1\x67\x58\x64\x00\xf7\x89\x34\xfb\xd8\xd8\xca\x03\xaa\x55\x70\x5d\x4d\x39\x5d\x05\x18\x68\xd8\x67\x96\x66\x52\x05\x78\x32\xe6\xfa\x6c\xc5\x8f\x7a\xc0\x63\x9f\x36\xdc\xfe\x5b\xde\xea\xe4\xed\xec\xd9\x72\x01\x50\x41\xe9\x68\x7b\xbe\xcf\x05\x40\x6d\x53\xc9\xd9\x30\x6b\x1b\x40\x86\x75\x46\xf4\x9b\x14\xb5\x01\x3d\xf7\xaa\xbe\x1f\xac\x3e\x01\x18\xb7\xb4\xf3\xa8\x97\x76\x09\x19\x3a\xcf\xfe\xe0\xfa\x0b\x9d\xfe\x60\xa7\xa4\x93\x76\x80\xba\x96\x4a\x1a\x3b\xc1\x8e\xac\xfc\x07\x6f\x5d\x29\xe5\x32\x96\x5d\x01\x0f\xcf\x1c\x0d\x31\x97\xd2\x06\x8c\x77\xdd\x50\x55\x77\xbf\x01\xb0\xed\x90\x2a\x45\xfd\x2a\x76\x2d\xbe\x5a\x97\xc3\xd5\x48\x42\xb0\xa7\xbc\xc3\x78\xb8\x0d\x50\x22\xcc\x68\xc7\xdf\xd1\x36\xf7\x75\xed\xb9\xd3\x9e\xff\x82\x38\xf3\x46\xeb\x4a\x6d\x5b\xc0\x45\x79\x19\x96\xd7\xc2\x4e\x80\x29\xf7\xd7\x2f\x68\xf6\x39\x01\xce\x5b\x3c\xbd\xbd\xbf\xb8\x18\xf0\x79\xb0\xb7\xe6\x5f\xc4\x84\x0a\x1f\x38\x79\xa5\x84\x84\x42\x1d\x61\xe6\x7f\xcb\xec\x14\xa3\x0a\x5f\x97\x15\xe0\xdb\x1e\xde\x7d\xc2\xe3\x35\x64\x25\xbd\x60\xe3\xf2\x92\xb3\x0b\x59\xb1\xb7\xe4\x5a\x6f\xee\x28\x03\xa8\xec\xaa\x5e\x7b\x95\xf5\x10\xe0\xee\x9f\xc4\xe3\x86\xc6\x3a\xc0\x39\x3d\x01\xce\xc1\x0d\xb5\x80\xc7\x4e\x0a\x8e\x29\xb5\x54\x91\x21\xf0\xc5\x4a\xc9\x7f\x83\xcd\xdf\xf1\x9d\xc1\xe0\x39\x40\x1e\xa5\xc8\x00\xfa\x76\x7b\xb2\xa2\x17\x6c\x74\xec\x53\xd1\x69\xd2\x5a\xf1\xbe\xb5\xcd\xf7\x96\xf5\x39\x40\x7b\x0b\xeb\x1f\x76\x4a\xd9\x80\xa7\x1b\x5d\x4d\x78\x93\xed\x00\x8b\x19\xaa\x9a\xf8\x19\xbc\xc9\x4a\x26\xdd\x3b\x14\xa9\x52\x05\x34\xae\x39\xca\x57\x75\x5e\x12\x70\x8b\xed\x96\x10\xfe\xed\xf4\x80\x63\xd9\xdb\x4c\xad\xe2\xf3\x61\xb1\xe0\xfe\xf2\x99\xf8\x7c\xc0\x2b\x33\x6d\x3a\xe7\x8e\xb5\x92\xb0\xc2\xf9\x6c\xaa\xe5\x6a\xf9\x0f\xfa\x7d\xd7\x2d\x85\xcc\x98\x90\x81\xe1\xa8\xc2\xe9\x3b\xaa\x0e\xa4\xb5\x72\x94\x3b\xf7\x64\x39\xc7\x03\xc0\x99\xbe\xe7\xaf\x28\xd8\x53\x48\xf8\xe1\xdd\x42\xe9\x62\xbc\x0e\x60\xc3\x70\x8c\x69\x21\x73\x21\xe0\x5c\x49\x5f\xf2\x7f\x43\x90\x2f\xdf\xe3\x2f\x96\x74\x9d\x0f\xfc\x05\xfb\x60\xf7\xd7\x1f\x5a\xf7\xfe\x85\xa3\x42\x0f\x86\x16\x5e\x3f\x00\xd4\x4c\x7b\xe8\x51\xbe\x92\x0e\x18\x19\x1a\x2a\xd7\xd1\xae\x0d\x38\x37\x96\x90\x65\xb8\x7a\x02\x98\xa5\x6b\x7a\xc7\xb4\xba\xdf\xff\xff\xf8\x31\xe0\xf9\x84\xff\x77\x2d\x81\x66\x82\xdd\x8c\xf9\xee\x2f\x00\xcf\x25\xee\xa9\xf9\x3a\x95\x0d\x8b\x41\xe7\x64\x04\xce\xc4\x03\xca\xb0\xbc\x48\xd3\x7a\x97\x09\x78\xff\x3a\xa9\xb6\xc1\xdc\x17\x90\xb5\xe8\x42\x57\xdb\xf8\x73\xc0\x9f\x3f\x79\xcb\xec\xc7\x9d\x00\x89\xd9\xcc\xc9\x85\xdf\xdd\xd5\x68\x72\xcd\x63\x33\xdb\x43\x35\x58\xc3\xec\x0b\x99\xf0\x4c\xfb\x3a\x02\x0f\x7b\x05\xc9\xde\x4b\xf9\x4e\x20\x4b\x7f\x97\x91\x96\x32\x0b\xac\x81\xdb\xa0\x87\x62\xf2\x99\x06\x60\x88\xac\xa4\xab\x74\xd4\x3c\x81\x0c\xe1\xaf\x17\x59\x8a\x05\x61\x0d\x0a\x6c\x27\xc5\xe5\xe8\x47\xaa\x31\x52\xab\x93\x26\x72\x1f\x13\xe0\x9b\xd3\x7a\x9c\xa4\x7a\x3e\x32\x4c\x57\x15\x28\x64\x15\xfe\x21\x30\xfa\x41\xdd\xd3\x57\xc5\xeb\x01\xd5\x7d\x4b\x3e\xcb\x4e\x74\x57\x63\xe9\xa6\x39\x47\xb7\x2a\x65\xc0\x0d\xf6\x3b\xf8\xce\xcb\xdd\x24\x83\xf4\x93\x0c\xf1\x9c\x3e\x7f\x40\xa3\xcc\x20\x4f\xf1\x00\x05\xc0\xeb\x39\xd3\xd1\x17\xc2\x4b\x48\x28\x56\xa0\xa6\xc1\xaf\xb8\x11\x30\x5f\xbc\x49\x31\xeb\x77\x30\x19\x18\x5a\xa3\xe1\xc1\x95\x24\xc0\xf0\xe4\x5a\xa5\xbe\x1b\xec\x80\x9b\xdd\xe7\xba\xf5\xce\x48\x01\x8a\xff\xd2\xd9\xf4\xf0\x01\x37\xe0\x63\xbe\xab\x49\x86\xf4\xaf\x08\xfc\x63\x75\x8b\xb8\x70\xd2\x12\xd6\x70\xea\x94\xfa\xcb\x49\x2c\x04\xbc\x71\xe8\xe9\x8b\x1d\x4b\x85\x80\x4e\x9c\x74\x2e\xdf\x5f\x9e\x02\x0c\x9e\xb9\x9b\x28\xb7\xc9\x10\xf0\xce\x48\xbb\x8b\xae\x9f\x38\xe0\xd9\x8d\xc6\x36\xa2\x3f\x91\xc0\x03\xcd\xd7\xbc\xd4\xe5\x35\xe0\x1f\xb0\x32\xed\xb7\x33\x4c\x1e\xaa\xc6\xcf\xa1\x76\x3b\xf8\x3b\x76\x01\x86\x24\x35\x6a\xb6\x96\x64\x02\x4e\x45\x0c\xfb\x8c\x5c\x91\x05\x0c\x3f\x62\xe3\x61\x6f\xaf\xf9\x2f\x5c\xa7\x38\xaa\xae\xe4\x84\x04\xde\x39\xdb\xcf\xdd\x7a\xaa\x14\x10\x3e\x7d\x28\x01\x23\x56\xc0\x65\xcf\xb4\xf9\xd8\x91\x9b\x80\x74\xc8\xd9\x91\xa6\xee\x0f\x98\x7b\x9b\x3f\xe0\xde\xb5\x1b\x64\x85\xa2\x3e\x95\x9f\x85\xb2\x09\xb0\xcb\x27\x3c\x44\x4f\xab\x09\xb0\xcd\xb5\xa6\xb6\x41\xc7\x0b\xf0\x88\xba\xe1\xb1\xa4\x18\x23\x40\xe5\xb4\xa0\xe7\xa3\xbf\x8b\x00\xbf\x32\x89\x38\xbb\x74\x5e\x24\xa1\x7b\x18\x65\xa2\xfb\x52\x11\xd9\xa8\x66\xfe\xc0\x7a\xa7\xb4\x5a\xc0\x70\x16\x43\x0f\xad\x0b\x75\x80\xdd\xde\x14\x15\x1b\x26\xeb\x00\x65\xfd\xf3\xbe\xd4\x88\x58\x02\xd6\x5f\x60\x3c\x18\xed\x50\x03\xb8\x23\xb2\x4a\xcb\xbf\xbb\x0e\x70\x1f\x91\x6d\x45\x68\xd4\x01\xbe\xf8\xc3\xe9\xb8\xf3\x5d\x1d\x60\xee\xe3\x5d\x9e\xa8\x5e\x09\xa8\x56\xe6\xe5\x7f\xc9\xb0\x0a\x70\x94\x46\xe3\xab\x63\x57\x25\xa0\xea\x0e\xe1\xc6\x1b\x12\x4f\x01\x67\x18\xbb\x8e\xf2\xde\xac\x04\x6c\x39\x72\x69\xe0\x38\x45\x39\xe0\x72\x43\x82\x5d\x85\x42\x15\xe0\x7d\xc3\xc5\xe2\xb0\xa7\x55\xb0\x28\x52\xb4\xc4\x9b\x51\x05\xb8\x5e\xb0\x34\xeb\xe4\xa6\x76\xc0\x77\x37\xcd\xaf\x94\x5e\x78\x0a\xb8\x32\x37\x6b\x2c\xb3\x50\x05\xb8\xc9\xb7\xc9\x33\x96\xb3\x88\x84\x6c\xc6\x6a\xde\x99\xc1\x11\x24\x54\x2b\x1f\xa3\xa6\x6f\xad\x03\x7c\x94\x7d\xfc\x72\xb5\xfb\x33\xc0\x0b\x1b\x2e\x9e\x7a\x66\xf1\x0c\x50\x6a\x17\xfb\xbb\x43\x6d\x75\x80\x4b\xfb\x2f\x97\x59\x48\x3d\x03\x94\x34\xff\x32\x21\xc4\x55\x03\xd8\xd1\x52\xc4\xf8\x35\xb0\x1e\x90\xa6\x77\xa1\xe7\x72\x67\x1d\x60\x48\xd7\x26\xb6\x99\xb8\x7a\xc0\x94\x39\xb7\x96\xc9\xd5\x91\xb1\xa0\x8d\x6f\x5b\x68\x31\xe0\x79\x4d\x8a\xe9\x73\xb6\x65\x80\x4d\x36\xc5\x61\xd7\x79\x1b\x49\xb8\x51\x37\x6a\xd9\x5b\xba\x00\x90\x30\x3f\x19\x56\xc3\x9c\x0e\xf8\xe4\x7e\x7a\x32\x75\x44\x3e\xe0\xfc\xf5\xbe\x63\xf5\x43\xf7\x01\xc3\x28\x37\xc7\x4f\x15\x24\x00\x7e\xaf\xdf\xfc\x3b\xee\x7c\x24\xe0\x4f\x2a\x92\xa2\xa8\x7b\x35\x20\x4b\x8e\x37\xbd\xb5\x67\x35\xe0\x97\xf6\x7b\x7b\xc5\x56\x4b\xed\xde\x5d\x8f\x90\x26\x1d\x30\xa4\x58\xb3\xf9\x2f\x36\xe7\x85\xe9\x56\xcf\xa5\x01\xee\x4b\x96\xea\xb8\x41\x84\x92\xd6\x46\x11\xf0\x93\xdd\xaf\xfd\x09\x19\x02\x9a\xa6\xa5\xe2\xcd\xc9\xcb\xd1\xa7\xd8\x48\x2f\xea\x42\x86\xcd\xc5\xdd\x7d\x35\x4e\xe5\x80\x17\x23\x7d\xae\xfe\x85\x7b\xfe\x4a\xd7\xe2\xee\xe7\xd5\xf8\x2e\xde\x22\x63\x77\xb3\x32\xe0\xdb\x20\x11\xb7\xa2\x9e\x1a\xc0\xcd\x22\x93\x6e\xbd\xb4\xa5\x80\x02\x53\x7b\xec\x8e\xd6\xd7\x00\x66\xda\xb3\x09\xdd\xed\x90\x00\x54\x55\xf4\xb6\xca\x12\x3c\x06\x98\xf3\x2c\x20\xca\x40\x4d\x1e\xb0\xba\x94\xfa\xf5\x06\x27\x1a\x32\xec\x0c\x5e\x37\x15\xbc\xb1\xa7\x1a\xc3\xb6\xb2\xb5\xe6\xd0\x99\x02\xee\x29\xbb\xb3\x45\xa4\x49\x03\x30\xfd\xd6\x07\x51\x9a\xd5\xcb\x81\xfd\xee\x13\xe2\xd9\x67\xd5\x01\xe9\x67\xca\x8f\xea\x44\x31\xc1\x62\x20\xd5\xbd\xc2\x77\xf3\x04\x7e\xb0\x6c\xf4\xcb\x95\xb5\x04\x14\x61\x39\x7b\xa4\x86\x81\x02\xd0\x54\xc4\xd6\x9d\x24\xca\x4c\x86\x03\xc5\x2f\xd2\xd4\x6f\xd0\x03\x1e\x0e\x89\x52\xa4\x3b\xd6\x45\x60\x8c\x9b\xf8\xb1\xd1\xe3\x85\x80\x5e\xb5\x44\xf1\x9e\xbb\x16\x80\xcc\xde\x02\xb1\x7f\xb1\x73\x64\x70\x2a\x5e\x97\x16\xf0\x67\x8f\xe7\x01\xab\x06\x7a\xc0\x99\xa3\xc7\x4f\xc9\x75\x9c\x00\xfc\x33\x52\x15\x41\x29\xe0\x01\x78\x20\xcf\x97\x5d\x95\x4e\x1b\xf0\x93\x44\x0f\x7b\x5d\x33\x0f\xa0\xf8\x79\xaf\x17\x05\xf5\x6d\x80\x95\x0c\x95\x6e\x19\x7c\x05\x80\x2b\xe7\x95\xeb\x0a\x6c\x22\x00\xf7\x96\xc5\x74\x8a\x8c\x67\x91\xd0\x68\xf3\x96\xe1\xb1\x80\x24\x40\xee\xe6\xdc\x85\xfc\x17\x7b\x00\x59\xb4\x4b\x92\x1e\x9e\x13\x04\x2c\x4f\x49\xea\x49\x29\x78\x09\x38\x3a\xac\x1d\x96\xba\x8a\x3f\x63\x2d\x22\xe9\xab\xa0\xd5\x33\x4e\x3d\x14\xa9\x04\xc8\x5c\x5b\x37\xa7\x64\x2c\x0a\xf8\xc1\xa7\x66\x86\x35\xae\xb7\x1a\x53\xb5\x0f\x50\x6a\x85\xc4\xc2\x3f\xf0\x54\xeb\x8c\x3d\xb5\x01\xc7\xbf\x40\xfa\xb8\xf7\xba\xb7\x73\x55\x35\x76\x06\x17\xd4\xe6\xdb\xc6\xc0\x1a\xde\xd2\xf6\x5c\x62\x1e\xb6\x25\xc3\xab\x47\xbf\xc1\xc9\x6d\x8c\x40\xef\xca\x76\xf9\x4c\xba\x22\x02\xa5\xf8\xe8\xb8\x6e\xb0\x5e\x83\x35\x28\x0d\x75\x5d\xde\x9a\x27\x01\x98\xb3\x29\x30\xf5\xd1\x69\x7f\x32\x10\xb7\xa2\x6e\xea\xdd\x14\x05\xf4\x8c\xfc\xfa\xa8\xb8\xe6\x29\xe9\x3f\x65\xb1\xee\x7c\xd0\xe6\x34\x5e\xc0\xd0\x9c\xd3\x1a\x2f\x83\x25\xc8\xb0\x23\xee\x53\xaa\x8a\x8e\xe3\xbf\xa0\xf1\xf6\x43\xbe\xdc\xfa\x44\xc0\xdb\xa9\x2e\x7f\x12\x0a\x8d\x49\x48\xa9\xa8\x36\xb4\x32\x77\x16\x90\xd1\x7d\x80\x65\xe6\xd0\x2e\xc0\x8d\xed\x21\x3b\xbe\xf0\xda\x03\xa6\x58\x50\xaa\xdc\x99\x30\x02\xf4\x6e\x48\x09\xf1\x50\x16\x07\x54\x95\xff\xf2\xec\x9d\x4b\x01\x60\x14\x0b\xda\x6f\x70\x10\x06\xdc\xf6\xd2\x43\x64\xbf\x85\x31\xe0\xc4\xe6\xfa\xd3\xe3\x7b\xaf\x02\x1e\x3f\x28\xb5\x9b\xea\x86\x05\xe0\x78\x6f\x2f\x4c\x8a\x97\x02\x2a\xe6\x34\xab\x98\xb7\x36\x00\xde\x4a\x0b\xba\xbe\x9d\xe7\x29\x60\xcc\x54\x5c\x75\x43\xda\x6d\x40\x85\xb4\x96\x11\x9b\x97\xcf\x00\x47\x8c\x6c\x93\x65\xd8\x53\x00\xd3\xef\x3e\xa2\x64\x99\x2e\x05\x5c\xfe\x1e\xb5\x63\xa5\x45\x02\xd0\x50\xd2\x80\xeb\x84\x33\x23\x19\x94\xcd\xe7\x25\xda\xde\x2d\x10\x98\xba\xa5\xce\xc3\x42\x96\x00\x8c\xce\xb1\x8d\x38\xaf\xcd\x06\xf8\x40\xc7\xff\x43\xc7\x46\x79\xc0\x16\xef\x7d\x5c\xa4\x33\xce\x64\xa0\x2e\x60\xf3\xb8\x64\xad\x09\x58\x49\x67\x94\x09\xf3\xd2\x80\x35\xca\xc1\x77\x55\x8d\x7b\x01\x29\x7e\x0f\x75\x52\xd6\xbf\x04\xec\x64\x6b\x16\x2b\xf9\xd2\x00\x68\x73\xc1\x8d\xff\x9b\x79\x2b\xa0\x78\xb9\xdd\x2d\x0a\xa3\x57\x80\x06\x8c\x57\x27\x24\x57\x5f\xdd\x9f\x0d\x67\x92\xa3\xa9\x1f\x01\x0a\xf6\x73\xbd\x61\x7b\x1b\x09\x98\x53\x11\x1f\xcb\x29\x94\x08\xf8\x5a\xf1\xb6\xd0\xb5\x43\x61\x80\xc5\x1d\x81\xb4\x89\x61\xc5\x80\x8f\xb5\x79\x14\xb7\x94\xa5\x02\x5a\xbb\x7f\xe0\x36\x9c\x54\x01\x3c\x66\x65\xf4\xc8\x4f\x7a\x9e\xc0\xfe\xdc\xca\xe2\x18\xcd\x63\xf0\x0f\x7c\x99\x14\x76\x10\x4f\xdd\x4d\x86\x27\x86\x23\x55\xcc\x85\xbb\x00\xb3\xcf\x70\x2e\xd9\x5f\xd8\x46\x86\x4b\xb2\x8a\xb6\x6c\x3f\xbe\x10\xd8\xd2\xfb\xeb\xca\x18\x45\x15\x60\xb8\x77\xb7\x81\xbd\xf7\xea\xce\x52\x6c\x6f\xfe\x70\x5d\x39\xe0\x98\x32\x1d\xed\x30\x45\x3d\x60\x7e\x8f\xa7\xe7\xfe\xc4\x40\xc0\x8b\xdd\x4d\x99\x3e\x03\xbe\x80\xa2\x83\x34\x5b\x1b\xec\x43\x01\x85\x49\xe1\x73\x8c\x5b\x02\x01\xbb\xbd\x96\xae\xc9\x9e\x0d\x03\x3c\x1f\x62\x7d\x76\xc8\xad\x1e\x30\x93\xed\xfe\x1f\xa7\x01\x4b\xc0\x88\xd6\x4f\xad\x3e\x0f\x1d\xc8\x70\x36\xcb\xfa\x40\xf0\xb7\x51\x02\x7f\x58\x09\xdf\x29\x4a\xd0\x04\x34\x66\x68\xa9\x61\xae\xac\x27\xa1\x75\xaa\x6e\xa3\xcf\x2d\x35\x40\x61\x1a\xa2\x51\x3d\x6a\x96\xc0\xe6\xa4\xd3\x5a\xde\x83\x3e\x24\xb4\xef\xd9\xff\xa0\x5a\x5f\x19\x70\xec\xc9\x5d\xdc\x99\xeb\x4a\x86\x01\xa9\xe0\xec\x69\x61\x47\xc0\xd2\x52\x96\x0c\xb3\x9f\x5a\x80\x05\x03\x0c\xeb\xf3\xbf\x4b\x03\x2a\x5c\xe7\x75\xdd\xd9\x2d\x0a\x98\x96\x5f\x11\xe9\xb4\x34\x41\xe0\xb8\xc2\xd2\xd1\xed\x26\x67\x00\xa9\x07\xee\xd9\x97\xb3\x09\x03\x9a\x15\x7f\x3a\x14\x16\xa3\x00\x98\xcf\xf4\x14\xc7\x26\x99\xc8\xf0\x53\x49\x41\xc7\xc8\x6c\x92\xc0\x27\xfe\x6d\x02\xfa\xe9\xc7\x00\x3f\x69\x9f\xbf\xc3\x66\x22\x0c\xc8\xf2\x6e\x23\x8d\x28\x8d\x22\x20\x3f\xbc\xb8\xba\xad\xe2\x34\x60\x7f\x28\xeb\x9d\xe8\x81\x43\x80\x57\x96\x57\x46\xe6\x35\xa8\x01\xdf\x9c\xb3\x0b\xbb\xa6\xd3\x48\xc2\x95\x9d\x9f\x5c\x17\xbf\x78\x93\xb0\x74\x56\x64\x40\x10\x22\x60\x0d\x72\x03\x79\x17\x9a\x04\x94\xd7\xb0\xd8\xf2\xeb\xb6\x84\xe8\x1c\x81\x67\xee\x96\xbe\xb3\x7e\x42\x05\x68\xf1\x66\xe8\xce\x13\x36\x26\x40\xc7\x69\x3e\xcf\xc4\x65\x39\x32\xf4\xcb\x2b\x96\xbc\xb7\x7a\x48\xc2\x1f\xae\x17\x17\xb8\x8e\xb4\x56\xa3\x2a\xa5\x6b\xb0\xe5\x23\x69\xc0\xb4\x5a\xc1\x75\x41\x29\x14\x80\x45\xc3\x12\xd1\xe9\x9b\xb8\xc9\xc0\x78\xad\x78\xe6\xfa\xbc\x2c\xa0\x50\x6f\x17\x9d\xca\x17\x41\x40\x1e\x3b\x8a\xed\xc9\x73\x3f\x08\x6c\x75\xb1\x3c\xea\x37\xd4\x46\x86\x59\xa3\x97\xd1\x9e\x51\x94\x80\x2a\x57\x77\x73\x07\xdd\xee\x22\xf0\xf9\x4f\x2e\xd9\xf1\x2e\x56\xc0\x5d\x26\xd2\x4f\xbf\x7f\x26\x00\x1b\x58\xf3\x68\xaf\x6b\x89\x01\x1e\xe0\x99\x50\xc7\xdf\x54\x80\x49\x49\x06\x4c\xea\xca\xd3\x04\x2a\x39\xdd\x53\x4f\x70\x71\x03\x9c\xaf\xba\xfe\x30\xe9\x82\x31\xa0\xf1\x97\xe0\xfb\xaa\xc3\xee\x80\x7a\x23\x14\x06\x3a\xfd\x5b\x00\x0f\x2e\xee\x97\x71\x77\xb2\x05\x44\x9b\xee\x57\x0d\x9a\xfb\x00\xef\x4d\x86\xc6\x3b\x73\x38\x03\xf6\x4f\x6e\x94\xf9\xc9\x10\x01\xb8\x22\xe9\xa6\x9e\x46\xd1\x04\xe8\xbc\x27\x34\xf0\x37\xd3\x73\xc0\x0b\xba\x9e\x8b\x51\xfc\x95\x80\xed\xa9\x7b\x56\x62\x4f\x9b\x00\x6e\xb8\x11\xa6\x27\xff\xe8\x0a\x59\x31\xe3\x2f\xce\x62\xbb\xb4\x15\xb0\xdf\x23\x42\x29\x7b\x2a\x01\x70\xa5\xfb\xae\x8d\x9c\x72\x15\x20\xec\x3f\x74\xc7\xfe\x9a\x3d\xa0\x9d\xf0\x3e\x49\x03\x4b\x1b\x40\x7a\xb7\xf1\x34\x3d\xf7\x4d\x80\x7d\xa7\x3f\xce\xbe\x2e\xd5\x00\x9c\xca\x7e\xd5\x51\xf4\x34\xa7\x1a\x1f\x24\x59\xab\x69\x3c\xce\x05\xb4\x14\x0d\x73\xfb\x0b\xd9\x5f\x2a\x15\x86\xa6\xe4\x45\xe5\xc0\xf6\xb3\xa7\x9b\x5c\x00\x29\xdc\x4d\x29\x06\x2f\x8b\x02\x5a\xab\x71\x7a\xee\x4b\xf9\x43\xac\x61\xfb\xab\x9e\xe5\xda\x03\xea\xd5\x6b\xe8\xa7\xe3\xef\xd7\x7e\x25\x0f\x98\xd2\x77\x58\xe9\xc2\x58\x35\x60\x9f\x16\x17\xd3\x5f\x30\xa5\xb9\x68\xc7\x2d\x32\x91\xe1\xca\x9e\x85\xf5\xdc\x31\xd6\x80\x27\xdf\x04\x25\x18\xf6\xbe\x27\x50\xad\xf6\x8e\xec\xfe\xeb\x1a\xb0\x86\x28\xfd\xd3\xf7\x95\x3e\xd8\x92\xe1\x45\xf8\x6b\x3d\xa7\x06\x16\xc0\xe3\x92\x1b\xbe\x4a\xa4\x6b\x03\x4e\x57\x9b\x8d\xec\xe2\xdf\x0d\x58\x90\x93\x10\x51\x77\x54\x1a\x30\x27\x24\xbf\xb3\xa5\x93\xfb\x5f\xe0\xaa\x7c\x74\x24\x21\x81\x02\x10\xdc\x4a\x37\x5e\xa7\xca\x02\xd4\x1c\xfb\x79\x22\xcd\x2d\x0b\x90\x2f\xb5\x4c\xe6\x27\x9d\x1a\x60\x46\xfd\x9d\x09\x93\x01\x5b\xc0\x6b\xe7\xd7\x3d\xe9\x16\x93\x02\xdc\x22\x30\x50\xb1\xf5\x0c\x2f\xe0\x45\x2b\xd6\x90\x73\x93\xa3\x04\xb6\x9c\xd0\xef\x19\x95\xfa\x4c\xa0\x2f\x9f\xaa\xa0\xf8\xd8\x29\x58\x03\xeb\xe1\xc0\x81\xfe\xa7\xfc\x64\x60\xb0\xd0\xb6\x09\x7b\xb6\x97\x0c\x81\x46\x49\x01\xcc\x81\x1f\x08\x8c\x3f\x7c\xfc\xf3\x46\x8a\x2f\x04\x2e\x80\x08\xfd\x7a\xd7\x3d\x80\x0d\x49\x97\xef\x9c\x24\x38\xc8\xf0\x73\xe6\xd3\x4b\x69\xb3\x41\x02\x4d\x9f\x7c\xe5\x36\x2f\xa0\x04\xfc\x70\x69\x53\xc6\x8b\x70\x06\xc0\x97\x73\x8e\x7c\x89\xb1\x5b\xff\x85\x4b\x1f\xda\x12\x76\xb1\xcd\x10\xb8\xef\x16\x4f\xd8\x6d\x96\x38\x12\xea\x32\x44\x64\x37\x2b\xef\x87\x35\x84\x6d\x7a\xea\x32\xeb\xb5\xba\x88\xf2\x7a\x6a\xea\x2d\xaa\x01\xce\x9b\x5d\x76\x50\xe6\xa7\x01\x3c\x75\x30\xc6\xd9\x62\xfa\x01\xe0\xc3\xeb\x6f\x44\x34\x64\x0e\x03\x6a\x55\xa6\xdd\x90\x15\xd5\x00\xec\xf0\x1b\x7c\x35\xf6\x16\x00\x27\x9e\x68\x5a\x5f\x1b\xd9\x0b\xd8\xcc\x79\x74\x5f\xa6\x0a\x17\x20\x55\xa9\x9d\x14\xb5\x17\x27\xe0\xf3\xa7\xae\x2f\x36\x08\xa9\x02\x32\x08\x65\xce\x66\x9f\x93\x05\x14\xdf\xb8\x31\x46\x71\x03\x05\x20\xf5\xb5\x3e\xe7\x5d\x82\x5f\x08\x0c\x5d\xac\x18\xa1\x8b\xd5\x02\x34\xee\x5d\xf7\x5b\xec\x40\x31\xe0\xf0\xc9\x1d\xc3\x4b\xb2\xc5\x80\x4f\xe5\xb8\xee\x74\x14\x0b\x01\xfa\xdd\xd4\xd3\xbf\x20\xf0\x93\x40\x7b\xfe\x3b\xe7\xa8\x9f\xfc\x21\x30\x83\xd9\xcd\x9f\xee\xf9\x22\x81\x73\x63\x1b\x9d\x52\xd7\xf1\x02\xf6\x87\x5f\xa5\xe4\x7c\xcd\x0d\x68\x2b\xb6\xac\x16\x70\x98\x13\xd0\xb8\x70\x6f\xce\xb3\xf9\xc3\x80\x0b\xbb\x4a\x28\x0d\x6a\x77\x00\x6a\xe9\xe5\xec\xd8\x15\xb5\x07\xd0\xa9\x58\x79\x42\xf4\x61\x05\x60\x71\xfa\x26\xf5\x45\x2e\x19\xc0\x0b\xad\xcc\xc7\x6a\xc6\xd3\x01\x9f\x75\x1d\x32\xde\x7d\xd4\x84\x0c\xfa\xee\xb5\x8e\xdd\x0b\xf1\xa4\xb5\x22\xf0\x38\xd1\xd2\x30\x75\x23\x20\x5b\xbc\x74\x96\x5d\x1f\x37\x60\xc5\x52\xca\xb1\x8a\x94\x62\xc0\x6c\x0d\xcd\x5d\xd5\xf3\x29\x80\x3b\x04\x06\xde\x69\x71\xdc\x04\x1c\x13\x39\x53\x7b\xbb\x65\x27\x20\x29\x37\x26\x20\xca\x9e\x12\xd0\x99\x27\x20\x8c\x34\xef\x4a\xc2\x39\x16\xbf\xfa\xc1\xd2\x75\x80\x67\x0c\xfe\x54\x38\x9c\x1d\x27\x70\x30\x45\xfd\xcc\xc1\x29\x15\x58\x83\xfb\xe3\xee\xb0\x52\xb9\x1e\x02\xe9\xe5\xc3\x37\x33\x8c\xf3\x00\x6e\xff\x26\x34\x24\x13\x49\x0b\x68\xe0\xff\x52\xab\xa9\x4b\x1e\xd0\x95\x65\x4c\x42\x3e\xf8\x10\x59\xf9\x6e\xd3\xd1\x7f\x9a\x41\x19\xd0\xfa\xbe\x8a\x1c\x3d\xab\x32\x59\x29\x90\xcd\x4a\xf4\xa4\x29\x26\xb0\xb3\xc1\xca\xb9\x67\x43\x0e\xa0\xbf\x8e\x82\xa3\xad\x83\x13\x60\xee\x87\x6c\x2b\xcd\xde\x07\x24\xbc\xe3\xe1\xf3\x62\x64\xe3\x79\xc0\xd2\x75\xa4\xcb\xe9\xa5\xe9\x80\x0e\xa1\x6f\xb6\x8f\x19\x8c\x12\x98\x24\xac\xf0\xd2\xed\xfc\x3c\x19\xe8\x1a\x5d\xb5\xcb\xa2\xde\x11\xe8\xce\x26\x76\x28\xfb\xf7\x61\x40\xa9\xc7\x52\x03\x7c\x59\xb6\x80\x15\xfe\x8a\xad\x31\xe6\x66\x04\xb6\x8a\xdc\x76\x4a\x1e\x50\x03\x7c\x76\xa9\xb6\xd6\xb5\xa5\x88\xb4\x56\x86\x7c\x78\x68\x9e\x19\x73\x03\x1e\x37\xa9\xed\x38\x23\x27\xb6\xba\x9d\xaa\x4b\x4b\x94\xbf\x27\xf0\x6b\x79\xa7\xa8\xaf\x28\x1d\xac\x21\x72\xa3\x68\xbb\xee\xd0\x6b\x02\x0d\xbd\x4f\x6a\xab\x1d\x50\x04\x34\xee\xfb\xaa\xf6\x6a\xfa\x13\x81\x9f\x7e\xe5\x97\xf1\xac\x5e\x25\x02\xdf\x26\x5c\xe8\xec\x7e\x0d\x78\x87\xf1\xce\xb1\xa9\xaf\x57\x00\xc5\xe7\x8f\x64\x25\x46\x55\x00\xee\x9c\x71\x4a\xb8\x7f\xea\xca\xea\x2d\xf3\x9c\x4e\x4f\xdd\x16\x40\xbb\xae\x9c\xe1\x0d\x27\x28\x01\xa3\x75\xb3\xbc\x5b\xf8\xee\x91\x50\xad\xe3\x52\x1e\x71\xeb\x24\xe0\x77\x86\x49\xc6\xcf\x17\xe8\x00\x0f\x4b\x6e\x88\x7c\xee\x25\x0b\x68\x50\x4d\xbf\xab\x3a\x8d\x81\x0c\x7f\x6a\x82\xa4\x99\x3b\xae\x92\x50\x95\x3a\x74\xb1\xcc\x6b\x07\xe0\x20\x8d\x84\x73\x93\x86\x26\xe0\x33\xa6\x86\xc8\x57\xc3\x04\xe0\xfe\x6f\xc9\xf7\xe8\xba\xe6\x08\xdc\x25\x76\xa8\x3e\x73\xc3\x3a\xc0\x90\xbb\x96\x77\xa5\x75\x8f\x90\x41\x56\xa2\x56\xe6\xde\x53\x2b\x40\xbe\xf2\xed\xae\xcb\x2b\x4c\x80\xda\x7b\x4c\x3a\x1b\x8f\x14\x00\xde\x7b\x74\x4a\x4f\xfb\x59\x01\x60\xc1\xc5\x9d\xed\x1c\x81\x1d\x64\x90\x9d\x4a\x0e\x0e\x50\x7f\x0a\xe8\x41\xf2\x25\xf6\x1d\x7f\x0a\x38\xd4\x93\x74\xeb\x40\x8a\x3b\x60\x07\xa3\x47\x7a\xe7\xa3\xab\x64\xa5\x82\x94\x97\x5c\x5f\x77\x0a\x70\x8c\x3a\xae\x64\xcf\x70\x07\x81\xcf\xab\x3e\xe5\xc4\x1a\x4c\x93\x21\xe1\x76\xdc\xdd\x48\x87\x81\x6a\x9c\x35\xbb\xf2\xa9\xd1\x47\x0f\x50\x86\x5e\xf4\x65\x5c\xee\x1e\xc0\xd3\x75\x47\x7a\x8e\x1e\xa4\x03\xbc\xfe\x20\x94\x57\xf9\x30\x1d\xe0\x43\xbb\x7d\x61\x0b\x84\x14\xe0\x1b\x17\x07\x39\xa3\x1a\x46\xc0\x3f\x37\xda\x99\x8e\x91\x54\xfe\x85\xfe\xc3\xac\xd3\x0d\x86\xcc\x64\x28\x7a\x3b\xb3\xf7\x6b\x8d\x11\x19\x5c\xf7\xf3\x2a\x25\x4a\x4a\x02\x3e\x38\xf2\xc3\xd6\xf6\xea\x16\xc0\x48\xe5\xaa\xda\xa2\x3d\x83\xd5\xf8\xf9\xa4\xe4\x9c\xd0\xc5\xf7\xc4\x1a\x18\xbf\x3a\xb6\x79\xf9\x6c\x05\xb4\x55\xee\x16\xbd\x1d\xf2\x9c\x84\xe6\xbc\x2a\xae\xf1\x4c\xb3\x04\x86\xc9\x85\xca\x09\x47\xe6\xc2\x3f\xf0\x41\x4d\x32\xf2\x22\x83\xd7\xbf\xc0\xa5\xc9\x7a\x73\x78\x0b\x79\x51\xe2\x91\xa4\xdb\xb9\xba\xd5\x9a\x4b\x44\x24\x2c\x52\x04\x00\xca\x8d\xc9\xde\x1e\xad\xd2\x04\xec\x84\xd4\x0f\x41\xe6\x49\x80\x37\xf6\xd2\x50\x79\x52\x25\x01\xf6\x73\xa5\xd6\x85\x69\x89\x03\x9a\x6a\xda\xc4\x4e\x48\x36\x02\x16\x95\x9e\xe2\xf1\x36\x71\x00\xb4\x7f\x14\xb9\xf3\xb0\xec\x08\x81\x37\xd3\xed\x3b\xaf\xea\x69\x01\x32\xaa\x57\x54\x1a\x5c\x50\xfa\x9f\x30\x8d\x38\x3b\xf6\x2a\x68\x2f\x60\x27\x9d\x76\x2b\x63\x0e\x33\x19\x5c\x6f\xba\x88\xdd\xb1\xd8\x0a\x18\x9d\xbb\x49\x37\x3a\x47\x19\x30\x5d\x43\x47\x86\x30\x59\x0f\xe8\xed\x93\xfc\x6a\xfa\xcd\x14\x81\xc1\x9c\x05\x56\xfc\xd9\x1a\x80\x0f\xbe\xd6\x6d\x60\xa6\xd2\x03\x1c\xf7\xf4\x5d\x09\xf7\xd6\x00\x2c\xa0\xf8\xb3\xff\xd1\x9e\xad\x80\x1c\x3a\x7e\xf7\x62\x37\x57\x01\xf6\x32\xeb\x54\x1a\x0b\x3f\x00\x6c\x4c\x7a\x70\x5e\x98\x5e\x18\x30\xb9\xd4\xd4\x6d\xc3\x4f\x7e\x40\xba\x77\xb5\x1a\xd6\x52\xe2\x80\x4e\xe5\x2a\xfc\xef\x92\x91\xc0\xf4\x62\x2f\xde\xfa\x84\x7d\x80\x01\x46\x92\x56\x4b\x32\x73\x04\x6e\x61\xd8\xfb\xb9\xfc\xd5\x46\xc0\x9e\xb6\x6f\x9b\x20\x45\x1f\xf0\xd8\x2b\x01\xf9\x9a\x99\x69\x02\x99\x72\x2d\x2a\x13\xa4\x2b\x00\x0f\x71\x4a\xdf\xfe\x0b\xae\x5e\x17\xdc\x96\x33\x43\xac\x41\xfd\xc2\xc7\x79\xe6\xf8\x07\x80\xdb\xc7\x26\x0f\x2e\xa6\xe6\x90\xd0\x5e\xaa\xf3\xc9\x91\xa6\x4c\xc0\x5b\xef\x9f\x4b\x6d\x3e\x57\x06\x18\xc1\x66\xc2\x70\xf0\x8e\x18\xa0\x67\xd6\x01\x07\x9a\xf0\x44\x12\xca\xd7\x1b\xbe\x49\xf1\x09\x82\x35\x44\xe5\x4f\xe5\xda\xca\x26\x03\xea\xb8\x25\xcb\x97\x75\x08\x01\xd2\x1e\x72\xb3\x17\x3c\xc8\x02\x68\x30\xb6\x2f\xe3\x78\xdd\x5d\xc0\x2f\x9b\x19\xa9\x5a\x92\x98\x01\xf7\xc5\x86\x0f\xc4\xde\x1a\x25\xf0\xd2\x89\x33\x3e\xa3\x33\xc2\x80\xd7\x0d\x0c\x83\xa8\x85\x6a\x00\xa5\x3d\xec\xce\x2b\xfc\xba\x49\x42\x03\xad\x86\xe4\x43\xf2\x26\x24\xa4\xe1\xaa\xca\x5c\xa9\x50\x24\xe1\x6d\xa1\x73\xc7\x25\x56\xf8\x01\xef\xc6\x99\x6a\xdf\xb5\xde\x06\x48\xf7\x91\x76\x34\xc8\x5a\x14\xd0\xb9\x81\x66\xff\xbc\x01\x13\xa0\x66\xd1\xc3\x77\xaa\xa1\x04\xe0\xc0\xc6\x42\x63\xfd\x06\x1f\x32\x64\x38\x68\x0f\xf3\xab\x05\x03\x3a\x32\x1d\xea\x7d\x3b\x49\x03\xd8\xa7\x2d\xc7\x5b\x6e\xa6\x0a\xb8\xcc\x6e\xb5\x89\xe1\xe6\x23\x12\x5e\xa5\xac\x2c\x5c\x7c\x13\x04\x18\xe4\x1d\x69\x74\x7e\x27\x2d\x60\xe7\x54\xcf\x17\xeb\x94\x59\x02\xb7\x0a\x0a\x52\xdd\xb0\x4b\x21\x50\xb0\xf2\xfc\xe7\x80\x96\x03\x80\x03\xce\x1f\x47\x29\x85\x79\x00\xb5\xca\xdd\xd7\xb5\x05\x88\x03\xe6\x48\xdc\x73\xf2\x7c\xdb\x4d\xa0\xe0\xd9\x0d\x43\xfe\x5c\xf4\xb0\x06\x5e\x11\x97\x8a\x81\x71\x24\x70\x90\x52\xea\xd9\x6f\xe5\x15\x02\x35\x75\x8b\x08\xb6\x65\x03\x40\x4a\x6d\xe9\x25\x8e\x90\x38\xd2\x5a\x49\x4a\xfd\x51\x23\x47\x99\x58\x8d\xad\xaf\xc4\x5d\xd3\xdf\x16\x01\x4e\x78\xee\x7b\xe8\xfc\xa1\x94\x84\x87\xe7\xe3\xbf\xb5\x9b\xd4\x91\xd0\xaf\x4f\x90\x23\xee\x5c\x31\xe0\x80\x8c\x58\x97\x6e\xfa\x43\xc0\x47\x29\xe6\xce\x35\x02\x29\x80\xfd\x7a\xfd\xeb\xb9\xf2\xb8\x00\xed\x0c\x0a\xb6\x1f\x9e\xdb\x09\xe8\xbf\xfe\xa5\x9a\xe7\x79\x15\xc0\xb3\xe1\x3d\xa6\xe5\xdd\x07\x00\x93\xd6\x5f\x34\x0f\xc8\xd7\x02\x7c\xdf\x17\xf0\x72\xb4\x9a\x1c\x8f\xfa\xcd\x7d\xad\xde\xaf\x03\x94\x8f\x13\xeb\x99\xf8\xa9\x0b\x58\xf1\x4d\xf0\xe2\xfd\xc8\x11\x02\xb5\x3a\xcd\x5c\xef\xea\xd8\xc3\x1a\xf2\x43\x3f\x8f\x91\x9e\x7f\x20\xb0\xad\xfa\x77\xa3\x6a\xec\x49\xc0\x1b\x7f\x2e\x9e\x0c\xab\xf3\x26\x43\xab\x28\x2b\xbb\x88\x97\x05\xa0\x91\x8d\x68\x7c\x7e\xdf\x2e\x40\xab\x41\x25\x4d\xf3\xdd\xa2\x80\xbd\x0c\x33\x87\xaa\xd7\xbf\x25\x30\x88\xd5\xf9\x36\xe5\x45\x02\xd6\xd0\xa2\xe1\xb3\x61\x21\x68\x81\xc0\x87\x79\x11\xd7\x37\xd4\x0a\x02\xb6\x35\x09\x3e\x2e\x68\xa7\x00\x5c\xba\x4d\xf7\x82\xa3\x4e\x95\x0c\xb2\x9c\x53\xf7\x87\xbe\x48\x92\x81\x1a\x0d\xbd\x13\xba\x55\x01\x79\x16\xfe\x18\x33\xa9\x0b\x91\x21\x85\xb0\x88\x6b\x63\x89\xae\xc6\x27\x86\x4b\xdc\x62\xef\x54\x00\x9f\xa8\xaa\x7d\x7b\xf3\x35\x90\x0c\xa2\x6d\x07\x6d\xb5\x74\xce\x03\xde\xe3\xfb\xb0\xb1\x66\x67\x39\xe0\x8d\xcf\xf7\xbf\xf8\xe5\x95\x01\x5a\xa9\xef\x92\x72\x4e\xcf\x06\xe4\x98\x4c\x55\x9b\xcd\x5a\x20\x30\x49\xa2\xab\xfb\x53\xe4\x3c\x81\xd9\x8c\xad\x61\xbf\x19\xb5\x60\x0d\xdb\x03\xf8\x12\x29\x57\x37\xa0\xff\xe0\x9e\xfe\xf2\x3a\x23\x69\x11\x58\x03\x9f\x4a\xc9\xbe\xba\xf5\x39\xd5\x48\xfc\xfe\x2e\x16\x9e\x23\x07\x58\x25\xc7\x94\x64\xce\xb7\x95\x0c\x42\x32\x77\xbc\xe8\xc4\x66\x09\x34\x4b\xd6\xff\xb6\x63\x71\x1d\x60\xcc\xfb\x26\x97\xd0\x1e\x7d\x40\xc3\xc1\x83\x94\x3e\xd4\x14\x80\xde\x83\x2e\xee\xf3\x6a\x33\xc4\x1a\x5a\xe4\x9f\x38\xa4\xb7\x6d\x05\x64\x36\xba\xe5\x96\xcb\xce\x03\x48\xb8\x3e\x68\xb3\xe1\xb3\x07\x1c\x9b\x2d\xbd\xfd\x7e\x79\x94\xc0\xc9\xa8\xed\xd6\xed\x31\xdf\x09\x3c\xac\xef\x47\x15\xb5\x91\x80\x35\xb0\x52\x19\xfc\x1e\x76\x7e\x45\xa0\xe8\x9f\x01\xc5\xfe\x42\x7d\x40\x1f\x9b\xab\xc5\xf6\x75\x9c\x80\x95\x03\x6c\xfb\x89\xe9\x09\x02\xeb\xe8\x46\x2b\x8f\x35\xd5\x03\x46\xc4\x46\x6c\x4a\xed\xaa\x26\xe1\x92\xc6\xa5\x48\x4a\xfa\x4e\x12\xba\x0b\x3f\x3f\xf6\x7e\x47\x35\xac\x3d\x73\x7d\x22\x7c\x39\x45\x29\x10\xb0\x2a\x9d\xbd\x42\xe1\x37\x0d\xa0\x90\xb5\x63\xa6\x18\x1d\x37\xe0\x2f\x76\xae\x18\xbd\x4e\x00\x54\x2c\xa9\xb4\xdc\x73\xa3\x1e\x90\xb1\x76\x85\x66\xbd\x5f\x3d\xa0\x91\xfb\x19\x17\x6f\x63\xf2\xb2\x87\x8e\x86\x7e\xec\xe3\x7d\x40\xe9\x4d\x0b\xaf\xf5\x15\x6b\x49\x58\x5d\x37\x3d\xff\x7e\xb5\xfc\x07\x27\xe1\x21\xdd\x07\xbb\x7a\xc0\xa6\xa5\xdc\x64\x4e\xc7\x55\x5c\xb9\x79\xfb\x22\x55\x3d\x20\x8d\xd5\x79\xea\x4f\xab\x23\x96\xe0\x80\xcc\x3e\x2a\x2e\xc0\x0a\x2e\xb3\x9b\x21\x77\x26\x08\xf4\xfa\x3a\x70\x5b\xe8\xec\x16\x40\xfe\xfd\x37\xc6\x84\x1f\x1c\x26\xc3\xcd\xad\x31\x79\x67\xbb\x09\x32\x4c\x56\x4b\x7c\x3f\x77\x46\x09\xb0\x28\xec\x99\x7a\xab\xa5\x0e\x20\x6d\x5a\x9b\x2f\xff\xf3\x5c\xd2\x5a\x91\xb3\x87\x0f\xb5\xe9\x46\x24\xe4\x0a\x90\x37\x5b\x0e\x61\x01\xdc\xe4\x73\x8d\xe8\x21\xad\x07\x2c\xdd\xb1\x8d\xbb\xd5\xec\x35\x69\xad\xfc\x9a\xdf\x7e\xfb\xd9\x55\x19\xc0\x36\xba\x0f\xef\xbe\x79\xfe\x22\x30\x64\xee\x95\xb7\x4b\x55\x03\xe0\xa4\x4e\x9b\x4a\xd1\x7c\x1d\xe0\xee\xea\x14\x96\xbf\xf8\xe9\xb7\x78\xba\x70\x15\x2c\x37\xbd\x7e\xfd\x2d\x9b\x4c\x74\x2d\xb6\xd0\xb8\x02\x16\xfa\x39\xf7\x3c\xb9\xe0\x09\x68\x73\xc8\x53\x69\x96\xda\x15\x50\xf2\x3a\xff\xdb\xa7\x6e\x9e\x80\xfb\xfb\x79\xe2\xb5\x8c\x1c\x01\x0b\x02\x18\x0c\x29\x4a\x2f\x02\xe6\xf2\xf4\x1c\x48\x75\xb9\x08\xe8\x7e\xe2\x06\xff\xf4\xfc\x45\xc0\x64\xad\x11\xb7\x4b\x27\x7c\x00\xb7\xb5\x65\x8c\x9a\xae\x2e\xb9\x36\xdc\x94\xbe\x51\xcd\x6f\x48\xf8\x5c\x67\xb0\x30\xe2\xe4\x30\x09\x91\xae\xfc\x44\x9f\x43\x3c\x09\xc7\x6e\xf5\x48\x74\xa6\xfb\x00\xd6\x17\xdc\xcf\x11\x18\x3a\x07\x18\xa7\xc4\xbf\x59\xf2\x89\x1a\x20\x85\xc7\xb6\x6d\xa9\x3f\x9f\x02\x42\xd1\x54\xb1\xf5\xeb\x4c\xd2\x5a\x69\xd2\x99\xae\xec\x9b\xbd\x08\xa8\x10\xd5\x23\x73\xfe\x5d\x31\x60\x8d\xca\xcf\xc4\xc2\x3d\x32\x80\x54\xa7\x73\x9e\xad\xdf\xa1\x0a\x48\xd7\xe3\x4f\x62\x12\x8a\x21\x61\xd9\x7e\x57\x46\x8e\x4b\xa2\x80\x72\x2f\x6e\x1f\x99\x38\xfe\x85\x40\xaa\xf7\x3b\x64\x74\xcc\x7e\x91\x41\xc7\x4a\xf7\x0d\x69\xab\x1c\xe0\xe8\x77\xf3\xc8\x03\xbb\x79\x00\x3d\x4c\xe2\x76\x8c\x6f\x39\x06\x98\x7a\xf8\xea\xf6\xc9\x59\x24\xd0\xe6\xe7\xec\xd9\xd7\xf2\x22\xb0\x86\xe7\xfc\x74\x5d\x97\x6b\x7f\x11\x78\x75\xe8\x0a\x9f\xeb\x80\x25\x60\xb0\xd8\xe1\x17\x49\xdd\xa7\xc8\xf0\x66\xc7\xc6\x1b\xbc\x81\x07\x01\x73\x9a\x4c\x2f\xbc\x9f\x9e\x23\x50\x8b\xba\xc4\x27\x39\x65\x1b\xac\x61\x86\x67\xe0\x48\xf6\x48\x4f\x35\xe6\xdf\xfe\x73\x41\x00\x08\xc0\x48\x85\x53\x46\x1a\xa7\x8f\x02\x26\xea\x57\x47\xb1\xf2\x59\x02\x46\x4a\x8d\x7d\xbe\xb4\xcc\x42\x06\xa1\x97\x5b\x5a\xfa\x2f\xbf\x20\xf0\xa7\xd8\x82\x6a\x24\x85\x3e\xa0\x57\x92\xf4\x85\xdd\x7c\xa2\x80\x3e\xbd\xb7\x32\xf9\xc7\xd9\x00\xb3\x96\xd7\xf5\xc8\xd2\x5b\x00\x6a\x50\x6e\x3c\x4c\xba\xee\x01\xd8\xfb\xf5\x63\x1b\x57\xe3\x36\x32\xec\xf5\x5a\x57\xc4\x3f\x52\x46\x60\x07\xa7\x14\xc9\x87\xfe\x30\xa0\x93\xd6\x67\xba\x21\x42\x08\x70\xde\xe3\x7b\xc5\x19\xf7\x1d\x80\x6f\xa9\xa8\x0f\x96\xe7\x0c\x11\x68\x1e\xdb\x32\x65\xdc\xca\x04\x38\x6d\x30\xc0\xdb\x10\xb2\x01\xd0\xa5\xf9\xba\x4e\x54\x3b\x2b\x60\xa4\xe8\x9f\x87\xf5\x5e\x33\x04\x26\x9e\xef\x9c\xb7\x2d\x3d\x4c\xc2\x89\x13\xb7\x07\x4e\x4b\xde\x03\xac\xa9\xbb\x75\x63\xf3\xc9\x22\xc0\xe8\xd2\x3a\x9e\xb4\x9a\x7b\x80\xfe\xea\x8f\x18\x18\x54\xa6\x09\x54\x39\xab\xf7\xe4\xab\x76\x1d\xa0\xbf\xe1\xed\xc3\x82\xf3\x6a\x80\xdf\xdd\xcc\xda\x9f\xd6\xa6\x03\xee\xf9\x20\x91\xf4\x17\x8f\xa8\xe8\x72\xd4\xc5\x62\x01\x3b\xbb\x4f\xf4\x57\xe4\x08\x00\x1e\x38\x96\x67\x38\xe0\x5d\x41\xac\x61\x4a\x98\xc3\x6d\x5d\x1a\x05\x20\x8d\xe5\x65\x35\x89\xcc\x3c\x40\x85\x8e\x63\xac\x7f\x71\xd0\x77\xba\xb5\x31\xf6\x26\x60\xc0\xe8\x2d\x8e\xf2\x26\x0b\x40\x79\xdd\x63\x41\xf7\x13\xd4\x00\xb9\x1b\x04\x46\xe9\x29\x1e\x03\x52\x73\x67\x5f\x55\x0a\xcd\x00\x7c\x2b\xa3\xb6\xe4\x4f\x5d\x09\x68\xb6\x83\x86\x7f\xee\x15\x89\x84\xbb\x17\x18\x34\x4a\x7c\x34\x01\x1d\x4a\xb2\x7a\x71\xbd\x02\xa0\xf1\xa7\xf7\xcb\x5e\xdb\x0c\x01\xdf\x31\x9e\x79\xbe\xd3\xf2\x10\x60\xa9\xc0\x16\x5d\x9f\x8b\x8c\x80\x3e\xdf\xa4\x03\x9e\x76\x70\x00\x3e\xa6\x35\x93\xbe\xb4\x7e\x27\x60\xa1\xa9\x67\xc6\x16\x5e\x29\xc0\xaa\xe6\xb0\x52\x58\xa7\x08\xb8\x4c\xe8\x28\x6c\x9f\xa0\x05\xfc\x40\x3d\x4e\x11\x49\x9a\x25\xd6\x90\xc1\x6e\x9c\x45\xed\x52\x5b\x8d\x4d\x69\x31\xbb\x50\x92\x19\xf0\x59\xac\xe0\x2f\xf7\xc7\x2c\x80\x58\xa9\x1a\xe8\xfe\xaa\x06\x30\xb4\x2f\xfa\xfd\x7f\x83\x42\xac\xe1\xad\x36\x4d\x09\xe0\x21\xca\x76\xc2\x74\x15\x99\xbe\x81\x94\xc3\xd4\x25\x80\x07\xdb\x52\x78\xcd\x56\xcb\x9e\xde\xa2\x6f\x47\xa8\xad\x01\xb3\xa2\xde\xeb\x79\x57\x5a\x93\x95\xab\xce\xbd\x1d\xdb\x62\x1c\x01\xb3\xf4\x1a\xd5\x4b\xf6\xf3\x01\x7e\x7b\xb6\x4f\xeb\x50\x8b\x08\xe0\xee\xd3\x3f\xe5\x17\x33\x99\x00\x47\xf9\x48\x7b\xd5\xb4\x37\x02\x2e\x8d\x5d\x4c\x1c\xa6\xd4\x03\x0c\x1d\xcf\x90\x67\xd8\xc6\x4e\x06\xda\xf1\x73\x76\xf3\xc5\xfe\x64\xa8\x4d\x91\xb4\x12\xf5\xdc\x02\x28\x95\x3d\xca\xe9\xe1\x1a\x06\x78\xfc\xe3\x67\xe2\x8f\xe3\xc5\x7f\x41\x59\xb3\x7c\x45\x24\xa1\x8b\xc0\x00\x8b\x8e\x33\x3b\x97\x85\x01\xe5\xae\x24\xdf\xbc\x23\x79\x10\x50\xfa\xb0\x7e\x91\x52\x01\x33\xe0\x97\xc7\xd4\x3f\x77\x70\xbc\x01\xe4\xd8\x67\xcc\xf5\xea\x61\x0d\xa0\xbd\x78\xd1\xef\xf4\xf7\x24\xb2\xb2\x45\xb1\x9e\x62\xbd\x68\x3d\x60\xe8\x27\x73\x9e\xe0\x3d\xf5\x80\x23\x5a\xf6\x63\xfb\xf7\xd6\x03\xbe\xbb\xd0\x1f\xa6\x4f\x67\x0d\xf8\x26\x4a\x31\xf2\xd7\xe9\x87\x80\x5a\xef\x86\xa2\xf7\x16\x5a\x01\x76\xf2\xdd\xe5\xd4\xee\xa9\x06\x74\x1e\x11\x95\xb8\xbb\xa3\x99\xac\xa4\x9f\xfd\x6d\xbf\x6b\x36\x16\xf0\xc6\xe5\x67\xd4\x43\x3f\x92\x00\x43\xd9\xa7\x4f\x9e\x34\x7a\x0a\x38\x3a\x7d\x36\x7d\x41\xcf\x0f\xb0\x66\xac\xf6\xf9\xa4\x4d\x35\x20\x5b\xb4\x59\xb3\x38\x5d\x16\x09\x0d\xd4\xd6\x5f\x66\xee\x29\x07\x3c\x45\xd3\xe3\x36\x7f\x3b\x01\x90\xe5\x45\x2e\xdb\xec\x2a\xa2\xb7\x3d\x9e\x9a\x5a\x45\xfd\xb2\xe7\xf0\xf1\x6b\xbe\x24\x0c\x3c\x10\xd0\x2e\xa0\xab\x04\x98\x1e\x59\xf2\xe2\xb3\x6c\x0d\x60\x54\xdf\xa1\x5f\x0d\x9e\x75\x80\x74\xeb\xd4\x6b\x63\xf7\x94\x03\x36\x96\x33\xf5\xb4\xbf\xef\x23\xe1\x32\xb7\x29\x53\xe3\xea\xe8\xed\x34\xa7\xf6\xba\x46\x25\x32\xdc\xba\x6d\x58\xd0\x7c\xaf\x0e\xd0\x6f\xe1\x53\x8a\xb6\x47\x15\x59\x21\xfd\xd9\xef\xf7\x17\xff\xff\x4f\xdd\xd3\xf6\xfe\x21\xfa\xb3\x06\xd0\x3c\xc9\x2d\xa6\xa8\xb9\x06\xb0\x56\x76\x47\x68\xcc\x40\x05\x09\xcf\x5c\x90\xcf\xfe\x3b\xda\xff\xe1\xd1\x23\xf1\xd5\x97\xf0\x1f\xc8\x7d\x75\x7c\xd6\x72\x37\x1f\xf0\x92\x98\xd0\x8a\x49\x50\x0d\x69\xad\x9c\x37\x55\x0a\xfb\x8b\x32\x67\xa3\x5b\xfc\x8b\xfb\x01\x3b\x04\xec\xcf\x5b\x3b\xe4\x91\xb0\x5c\x90\xb8\xbd\xeb\x68\x11\x60\x16\xf7\xfb\x91\xac\xfe\x4e\x58\x2b\x17\xcf\x68\x7e\x7d\x2a\x38\x4b\xa0\xf3\xc5\x7e\x35\x9d\xd2\x42\xc0\xae\xea\x1f\xa7\xff\x22\x2c\x2d\xaf\x34\xe4\x5c\x3e\xa0\xf2\x9f\x0d\x1c\xe2\x74\x0d\x24\xdc\x28\xda\x28\xfc\x77\xb4\xd0\x32\x7e\x44\x58\xcf\x1a\xd0\xcb\xdc\x62\x24\x2a\x99\x44\x5a\x2b\xff\x81\xea\x0e\x17\xea\xcd\x1e\xdb\x00\x2d\xaf\x6d\x5e\xce\x99\x39\x0e\xa8\xa1\xa9\xb6\x35\xd5\x8e\x15\xd0\xbb\xf0\x8a\x29\xa1\x26\x00\x58\x26\x36\xce\x78\x25\x28\x0e\x90\xf5\xbb\x60\x9e\x4b\x62\x1c\xa0\x5f\x5a\xdc\xe3\x1c\x71\x53\x32\x18\xa9\xaa\x50\x6e\xdf\xa9\x0c\xb8\x57\xd5\xe8\xfa\xb3\xdb\xd2\x80\x7d\x71\x95\x73\x33\x7b\x90\xc0\xa4\x9d\x53\x82\xfb\xbd\xf6\x00\x2e\xdc\xc1\x9e\x5a\xba\x5d\x80\x12\x83\xc5\x76\x23\xda\xfc\x80\xbe\x3b\x5e\xb8\xe9\xee\xe2\x21\x43\x68\xab\xdb\x59\x2d\x99\x7a\x02\x13\x1e\x24\xd9\x50\x8d\x71\x02\x5e\x5b\xee\xde\x1b\x3f\xb3\x07\x70\xe4\xbe\x5f\xb2\xa0\x4c\x01\x20\xe3\x77\x6e\xaa\xd0\x99\x7a\xc0\xbb\x85\x0f\xd6\x77\x0a\xa4\x01\x7a\x4d\xee\x5d\xe0\x08\x5f\x0f\xa8\x46\x79\x3f\x42\xf1\x0a\x1f\xa0\x63\xde\x55\xe7\xc0\x13\x04\xe0\x1e\xdf\x69\x63\x36\xd7\x44\xc0\x1e\xce\xa7\x0d\x9b\xa5\x6c\x00\x67\xe5\x15\xb2\xbb\xbe\xd9\x00\x2e\x53\x55\xd9\x50\xc9\x98\x00\x7e\xf7\x79\x22\xa9\x70\x69\x0f\xa0\x89\xc4\xe3\x43\xfd\x27\x97\x09\xb4\xe8\x6d\xd7\x3d\x20\x3b\x45\xa0\xd8\xd0\x2c\xbf\x50\x19\x00\x96\x7c\x3b\xae\xdb\x97\x2b\x00\x78\x5d\x5d\x4d\xa9\xee\x19\x1f\xa0\x96\x4a\x55\x59\xb2\x0e\x2f\xe0\x0b\x21\x9b\x4c\xa6\x13\xcf\x09\x8c\xd3\x13\x1b\xa4\x1a\x66\x01\xbc\xbc\x5f\x33\xfe\xb3\x4a\x14\x60\xda\x2e\x97\xae\x83\xdf\xca\x00\xe7\x47\x7c\xb6\xcc\xb2\x3a\xfc\x0b\x1f\x68\x9f\x6f\x63\x56\x73\x02\x74\x3c\x9c\xe0\xf2\x18\x4f\x91\x70\x7d\xa0\x8b\x24\x77\xdf\x33\xc0\x37\x1d\xd4\x86\xd2\xcf\x9f\x01\x16\x1e\x2a\x16\xdf\x43\x5f\x0d\xe8\xfd\x2a\xc0\x44\xa4\x7b\x3d\x20\x05\xe5\x29\x4b\x15\x85\x75\x80\xb7\x1c\xe8\x67\xf6\x6f\xae\x01\xb4\x6d\xc6\x46\xa1\x55\x5c\xfa\xa0\xb5\x99\x23\x22\x19\x50\xb4\x75\xe2\x97\xfa\xea\x4d\x2a\x36\xe8\xf8\xfc\xf8\xe1\xa7\x80\xd7\x52\x06\x54\x18\x36\x54\x02\x9e\x19\xe9\x94\xd1\x92\xa2\x04\xbc\x77\xa5\xe6\x9c\x82\xe6\x40\x35\xaa\x04\xc8\x54\x1d\xd1\xd1\x81\x7f\xa0\xd2\xbe\x5c\x81\xb7\x7d\x17\xa0\x82\x6a\xdf\x84\xb3\xd4\x29\x40\x15\xe6\xd6\xc5\xc7\x7e\x03\x80\xe1\x53\x0b\xbf\x73\x57\xf1\xab\x23\x29\xe9\x2f\x76\x98\x1a\x72\xab\x4f\x35\x00\x7e\x5f\x3f\xaa\xe8\xb2\xff\x37\x81\x70\xab\xe0\x12\x9b\x79\x30\xa0\x7a\xb5\x64\xad\x3b\xf5\x5b\x02\x7b\x32\xe6\x8e\xec\x54\xdb\x0d\xc8\xbc\x0f\x33\xde\xe4\x9b\x01\xb6\xa9\x89\xf6\x6d\xa7\x55\x06\x8c\x6d\x48\xc8\x74\x79\xfb\x8d\xc0\xed\x6d\xd9\xef\x6a\xe7\x96\x09\xa4\x7b\x79\x25\xf6\xb4\x89\x01\xac\x41\x64\xe2\xea\xeb\x5f\xe1\x07\x61\xf1\x7d\xac\x4c\x51\x70\x05\xa0\x6a\xe4\xfe\xe8\x23\xcc\x3c\x80\xdd\xc3\xb4\x91\x1a\xa7\x4c\xff\x05\x77\xb9\x75\x6f\xb4\x12\xca\x08\x9c\x1b\x56\xbc\xc2\xf6\xf3\x0b\x81\xbd\xd1\xba\x19\x6e\xd7\x54\xe0\x7f\x81\xe4\xa4\x36\x79\x42\x83\x1b\xf0\x9a\x49\xd8\xb0\xd1\xc7\x38\xc0\x04\x07\xdb\xe8\x46\xe3\x26\x40\xcb\xc7\x26\x5b\xfb\x3c\xee\x01\x36\x47\x7a\x5c\x1f\x72\x3f\x03\xc8\xaf\xd8\xe5\xec\x72\xc4\x83\xac\xec\x28\x11\x45\xfd\x43\x36\x80\x0f\x59\x6e\x29\x17\xda\xf4\x56\xe3\x98\x0f\xd3\xe3\x32\x6f\x35\xf8\x5f\x90\x6b\x70\x10\xf0\xee\xba\x0d\x38\xfa\x47\xd2\x6d\xfc\x0f\x07\x60\xfd\x2b\xda\x96\x4b\x4a\xd5\x80\x1e\x53\x83\x8d\x97\xff\x22\x4d\xae\xae\x3c\xf7\x6d\x35\x0a\x70\x6b\xf7\x7b\x64\x69\x01\x46\xed\x39\x52\xe0\xfd\x75\x9e\x40\xb9\xfa\xca\xa6\x88\xd5\x8b\xdd\x4f\x1d\xe9\x84\xbb\x8c\xc1\x24\xb4\xb1\xcd\xac\x3a\xfd\xbd\x18\xd0\xf9\xc6\x31\xdb\xaf\x8d\x11\x80\x0d\x4c\xfb\x0e\x99\xac\x96\xb6\x95\x0f\xcc\x1b\xf2\xa7\x08\xcc\x75\xe4\xf1\x28\xd6\x6d\x04\x94\xe6\xed\x30\xd8\x78\x78\x8e\xc0\x3d\xea\x6c\xfc\xc1\x5f\xf9\x00\x95\x1e\xd0\x07\x6b\x9f\xda\x0a\xe8\xe3\x98\x55\x1d\xd6\x9d\x4d\xc2\xe4\x23\xc3\x33\x6a\xc2\x07\x61\x0d\xad\xc6\x31\xeb\x63\x58\xb4\xc9\xd0\x42\x8d\x91\x83\x41\x73\x04\xb6\xab\xfd\xd4\x72\x16\x55\x04\x4c\x2a\x9d\xa1\x68\x76\x5d\x07\x28\x51\x95\x23\x30\xfc\x4e\xe3\x5f\x50\x3b\xf6\xfe\x3a\xdf\xea\xff\x9a\xf1\x40\xcb\x60\x44\x37\x33\xa0\x19\x4f\xfd\x83\x68\x4e\x06\xc0\x93\x21\x96\x4b\xeb\x63\x34\x01\x55\x13\x0b\x7a\xf8\xd3\x7f\x12\x58\x49\xbd\x6d\x5c\x37\x9f\x16\x50\xd3\x2e\x62\x9d\x8f\xf7\x40\x35\x1a\x99\x97\x9e\xe1\xbe\xc4\x0a\x98\x12\xeb\xd5\x54\x6a\xc4\x0e\x78\x23\x54\xeb\x54\xf8\x97\x13\x80\x49\xb7\x1a\x12\xbe\x1d\xfd\x48\xe0\xe1\x9a\x39\x6b\x9a\x82\xf5\x80\x4f\x3b\x58\x25\x22\xab\x55\x01\xfb\xff\x0c\x96\x9c\x9d\x27\x55\xa3\x49\x42\x4a\xae\xfc\x4f\x16\x58\x83\x98\xd5\xd2\xb5\x4d\x49\x07\x00\x75\x27\x55\x45\x43\xce\xf7\x90\xd6\xca\x11\xb6\x72\x6d\xfe\xe3\xa3\x04\x1e\xf2\x4d\x4b\x34\x20\x05\x90\x30\xce\x53\x3a\x2f\x26\xec\x03\x60\x44\x7e\x90\x94\x63\x5e\x21\x60\xfe\xba\x59\x3e\xfa\xe4\x78\xc0\x53\x54\x9b\x7e\x4a\xd1\xd6\x93\xb0\x5f\x7a\x68\x22\xeb\x5d\x3d\x09\xe9\x0f\x74\x32\x18\xd2\x56\x00\x16\xda\x6d\xdb\x1e\x2b\x27\x04\xb8\xeb\x73\xea\xf9\xc3\x85\xcd\x04\x56\x7f\x3a\xa3\x61\xa3\x9f\x0c\xff\x80\xc8\x24\xc9\x45\x61\x52\x87\x0c\x19\xf7\x0b\xe2\x06\x62\x95\x00\x77\xff\xa4\x61\x14\xfc\x44\x05\xc8\x68\xed\x60\xd9\x1c\xbf\x19\xd0\xe3\x48\x0b\xf3\xb2\x54\x02\x09\x17\x85\xce\xc5\x70\x52\xb3\xc1\x1a\x66\x4f\x4e\x4a\xf8\x89\xeb\x03\xea\x56\xba\x44\x5d\xd9\x29\x0e\x98\x1e\x9e\x4e\x63\x79\xfb\x22\x69\xad\x5c\xb7\xb9\xfa\x23\x6a\x7a\x92\xc0\x5b\xbe\x45\xac\xf7\x4b\xf7\x02\xb2\x3d\xb9\x47\xa1\xa8\xa8\x0b\xa8\xf4\x6c\xcc\xb5\x59\x87\x85\x0c\xa7\xd6\xb9\xc7\x8e\x0b\x6f\x00\x9c\xd1\xe4\xf8\xb6\x79\xe3\x6e\xc0\xe4\xde\x70\x8e\xd0\x42\x5a\xc0\x88\xde\x08\xf6\x84\xb3\x61\x80\xed\x7e\xb7\x27\x65\x7f\xa8\x02\xc6\x9d\x31\xd4\x9e\x7f\xab\x0c\xe8\x76\x41\x8c\x74\x25\x49\x08\x50\xeb\x47\xa9\xc7\x26\xc5\x63\x80\x47\xae\x51\x17\xa7\x0f\xf2\x02\x06\x7a\xdc\x6c\xca\xb5\x92\x07\x54\x67\xa6\xce\x68\xa3\x8f\x01\xec\xcb\x4a\x69\x2f\x50\x29\x04\x74\xdf\x15\x95\x47\xaf\x90\x41\xc2\x77\x5e\x71\x46\xed\x06\xbe\x80\x27\xb8\xd8\x0d\x03\x3d\xae\x01\x1e\x3d\xc1\x79\xe3\xed\xae\x29\x02\x17\x7d\x63\xc3\x67\x02\x92\x08\x7c\xbc\x59\xa0\x9b\x2b\x37\x0d\x50\x3f\xf6\xe7\x34\xac\x04\x00\xbe\xd4\x4d\x12\xfe\xea\xe0\x0f\xa8\x35\xc1\xba\x95\xcf\x50\x11\x70\x30\x51\xb8\x20\xd0\x2c\x15\xb0\xe0\x1d\xa3\x68\x7b\xad\x35\x09\x8d\xc2\x7e\xeb\x69\x7e\xbe\x08\x38\x68\xa0\xd2\x1f\x4f\xa7\x06\xc8\xee\x38\x47\x75\xae\xff\x23\x81\x3a\xb7\x9c\xb7\x66\x27\x6a\xc1\xff\x09\xbe\x6e\xcf\x85\x06\xaa\x33\xfe\x85\x37\xdb\xc6\xef\xff\xf8\x5c\x5b\x8d\x47\x14\x19\xb7\x0f\xa5\xd1\x03\x7e\x9e\x53\x4c\xb6\xd0\x2d\x01\x74\xb3\x8d\xed\x54\x4d\x89\x01\x34\x68\xf6\xd8\xcd\x1e\x34\x40\xc2\x8d\x53\x3c\x26\xdb\x56\x31\x38\xf5\x42\x92\xf3\xed\x7d\x40\x27\x9a\x2f\x3a\x0b\xcb\xca\x80\x06\xf3\x7a\x45\x8a\xcd\xb3\x04\x5e\x8a\x10\x3e\xff\x7c\xc3\x20\x81\xbd\x63\x73\xa4\x2b\xf5\xe2\x80\x0c\xc7\x1d\x1e\x5c\xd1\xd6\x03\x7c\x99\x76\xe0\xfb\xa1\xdd\x5f\x08\x34\x3a\xe6\x2b\xa5\x12\x75\x1f\xd6\xc0\x4f\x3f\xa7\x15\xfa\xb0\x89\xc0\x5e\x43\x07\xd9\xc4\x3c\x7d\xc0\xd0\xd1\xd4\xe9\x7b\x83\xfa\x80\xb3\xd4\x9d\xfa\x23\x5a\x97\xc9\xd0\x73\x2a\xc5\x27\xc3\x57\x0a\x90\x82\xc1\x31\xe7\x0f\x47\x03\xa0\x4e\x86\x46\x55\x55\x5f\x3d\xa0\xfb\xbe\x29\xd8\xb6\xe1\x31\x09\x77\x2c\x85\x3c\x8d\xde\xda\x00\xc8\xb6\xef\xdd\xa0\xf2\xdd\x32\x32\x98\xb9\xec\xe1\xfe\xc8\x67\x02\xc8\xca\x35\xaf\xf7\x29\x8c\x1a\xb0\x67\x2e\xa7\x3d\x88\xe9\x30\x20\xeb\x6f\x71\xab\x09\xab\x12\x40\x9f\xaf\x14\x7c\xb4\xf1\x1a\x80\xa2\xfe\x96\x57\xe9\x47\x6f\x02\xe6\x58\x26\xfd\x99\xfc\xc1\x0c\xa8\x30\xe3\x6f\xb9\xe1\xb0\x2c\x19\xce\x2b\xcb\x5d\x9f\x58\x1c\x24\x70\xd8\x47\xa9\xa4\x3e\x6b\x9e\xc0\xdf\x24\xa5\x97\x87\x1e\x8f\x10\xd8\x3a\x32\x73\x31\xc4\x75\x1b\xac\x21\x4f\xad\x25\xf1\x01\x7b\x0b\x81\x47\x3a\x9e\xbf\x78\x37\xa9\x0d\xd8\x1e\x22\xe5\x6b\xf2\xa0\x18\xb0\xda\xab\x6c\x59\xd6\x9d\x03\x70\x29\xe7\xb2\x40\x6b\xdf\x56\xc0\x4f\x1c\x63\x1d\x42\x7e\x5b\x00\xdf\x07\x0a\x84\x4d\x15\xca\xc2\xa2\xc4\xf3\x5a\x57\x54\x00\x34\xb9\xf5\x6c\x45\x21\xf8\x1b\x81\x37\x83\x48\x17\x76\x63\x12\xe0\xaf\xe8\x90\xd6\x33\xa2\xac\x80\x7f\xfa\xce\x6d\x8d\xfc\xe0\x4d\x06\x93\xed\xed\x4b\x5b\x77\x6c\x03\x0c\x8f\xd9\xa4\x53\x51\xf0\x81\xc0\xe3\xc8\x19\x32\xe0\xc0\x0e\x6b\x30\x11\xb9\x5b\x39\x3d\xa0\x08\xf8\x76\x92\x75\x56\x6a\xdf\x69\xc0\x0e\xad\xbd\x99\x97\x52\x82\x00\x23\x2b\x03\x5e\x98\x5e\xd3\x03\x8c\xd4\xb7\x1a\x34\x2a\xf9\x42\xac\xa1\x7d\xe6\x81\xdb\x8f\xc8\xfd\x80\xbf\x39\xb0\xd2\xef\x7b\x22\xa0\x9e\x05\x4b\xa5\xb1\x98\xe9\xbf\x30\x9d\xb9\xf9\xe2\x03\x5d\x5a\x40\xdf\x5f\x1e\x6c\x81\xae\xfe\x80\x45\x3d\x36\x39\x71\x3c\x66\x80\x47\xf5\xf3\xcd\x4a\xf7\xd4\x11\xb8\x72\x51\x30\xfb\xe8\x89\x00\xf8\x07\xaa\xfc\x85\xab\x5c\x1e\x85\x00\xee\xb3\xeb\x35\xff\x6f\x78\x67\x9a\x96\xce\x3c\x71\x07\xa4\x0a\xa6\xd1\x0c\x64\x68\x23\x70\xf8\xa3\xf9\x0d\x9a\x7d\x8a\xb0\x86\xa6\xb4\x92\x3f\x6d\x1b\x58\x00\x0d\x5f\x0c\xb0\x9f\x68\x10\x03\x7c\x58\x97\x44\xbb\x52\x23\x01\x98\x20\x58\x73\x47\x02\x78\x00\xb5\x49\x8e\xe5\x13\x77\x63\x49\xd8\xb5\xa8\xd3\x66\x6e\xb4\x1e\xb0\x40\xda\xe9\xd1\x48\x92\x01\x20\xc5\x46\xdf\x51\x73\xad\x3a\xc0\xae\xaf\xbe\xcc\x96\xc5\x05\x80\xba\x86\x59\xbf\xef\x2a\x4c\x11\xd8\x78\xc3\xb6\x76\xff\x3b\x4b\xc0\xd4\xdd\x33\x5a\x8a\x3f\xa6\x08\x94\x35\x37\x96\x2e\x1b\xb8\x08\xf8\x7c\x92\xd1\x3c\xe7\x63\x2d\xa0\x91\xcc\xd9\x93\xc7\x2c\xde\x00\x1e\xd7\xde\xfc\xad\xc5\xa8\x0e\x70\x9a\xe6\x89\x0d\xf7\x9f\x5a\x40\x4a\xca\x14\x05\xc1\xeb\xf7\x01\xad\x17\x65\x85\x3e\xf9\x46\x00\xca\x0f\x5d\x8f\xed\xe4\xf6\x01\x7c\x42\xfa\xec\xb8\x52\xed\x0b\xc8\x52\xb0\xcc\xf4\x31\xd0\x0b\x70\xaf\xd9\xeb\x5b\x9e\x62\xac\x80\xb7\x8e\x26\x53\xb1\x3b\x56\x02\x92\x5e\x73\x38\x67\xf1\x55\x01\x76\x4f\xe6\x0d\x25\x05\x54\x02\x5a\xec\x8d\xfb\x90\xb9\x5a\xc6\x1f\x9c\x9d\x99\xbb\xe6\x07\xc8\xb1\x6e\x80\xc1\x2c\x9f\x1c\x15\x56\x45\xf3\x1a\x49\x7e\x80\xf5\x76\x5c\xd9\x27\x04\x83\x00\x9b\xcc\x1a\x73\x0c\x21\x08\xf0\xc4\x2b\xd5\x73\xc3\xb3\x19\x80\x95\x8d\x53\x33\xe2\xdb\x83\x01\x6d\x3c\xee\x13\x47\x9b\x1f\x03\xfa\x7b\x77\xe6\xfa\x9f\xb3\x23\xa1\x3b\x6b\xa0\xcf\x78\x55\x2a\x81\xd6\x5f\x13\xfc\xbd\xca\x0a\x01\xbf\x5f\x8e\x50\x5a\xac\xcd\x22\xe1\xfd\xba\x77\xcd\x7f\x0b\xff\x4d\xb1\xaa\x09\x9d\x3b\x80\xa5\x8e\x8b\x55\xbe\x0b\x5b\x00\x55\x4f\x46\x19\x5d\x7f\x76\x12\x30\x7a\x97\xc6\xef\xb4\xd5\xdb\xe0\xd1\x67\x57\x9a\x3e\xdf\xac\x05\x24\xf8\x4c\xbb\x8e\x4a\x3a\x02\xaa\x7e\x30\xb8\x71\xae\xea\x26\x60\xbd\xf9\xf5\x2f\x26\xef\x35\x00\x75\x05\x23\x77\x15\xbc\x62\x03\x6c\xe2\x7c\xdf\xeb\x73\xd9\x04\xd0\xb4\xb7\x33\x85\x79\xdb\x01\xc0\x03\xad\x86\x4f\x24\x6f\xef\x00\xa4\xd8\x4b\x54\x5c\x0e\xa0\x02\xfc\xd0\xdd\xf7\xc5\x8a\xfd\x3a\x09\x27\x12\xd7\xe5\x27\x0a\x52\x00\xbe\x2d\x88\x4f\xd4\x7e\xf2\x99\xc0\xbd\x13\x5f\x32\x92\xcf\xf1\xc1\x3f\xe0\x9c\xf1\x53\xea\x45\xba\x3f\xe0\x23\x01\xfd\x6f\xfb\x76\x88\x03\xe6\x29\xf4\x8a\x62\x41\x2b\x81\x8c\xec\xf4\xd1\x13\xb9\x55\x64\xa8\x4d\xef\x17\xbc\x17\x20\x05\x68\xae\xdb\xbd\x97\x2a\x77\x13\xa0\x39\xcb\x0a\xd3\x5e\x66\x5d\xc0\xcd\xd9\x29\x59\x6f\xa3\x94\x01\xb7\xb0\xb3\x84\xa5\x87\x77\x11\xb8\x5e\x37\xb0\xff\x5a\x08\x25\x60\xdd\x9c\x12\xe7\x26\x4e\x05\x32\xf0\x46\x97\x8d\x0b\x3c\xe1\x04\xbc\x34\x56\xd4\xfe\xb2\x73\x8e\xc0\xdc\x68\x7e\xcb\x84\x65\x39\xc0\x18\x6a\xb3\xa8\x27\x05\xa2\x80\xec\xb1\x79\xee\xf2\x8f\x6a\x09\x94\xfc\xd3\x55\x71\xb7\xc8\x15\xf0\x84\xba\x4b\x4b\x4f\xcb\x3d\x40\x35\x87\x88\x87\x4b\xaa\xf2\x80\x4c\x9c\x07\xe9\x8f\xba\x31\x03\xc6\xde\x6a\x0d\x88\x93\xde\x07\x98\xd7\xa4\xf4\x56\x2c\x41\x18\xd0\x2b\x92\xc5\xfc\x15\x9b\x06\x60\xe5\xd5\xfa\xb1\xac\xd8\x66\x02\x37\x4a\xec\x8e\x57\xd9\xa7\x09\x6b\x68\xbd\xf7\xce\x22\xfa\xcb\x46\x32\x14\x49\x5a\xe5\x34\x99\x88\x01\x8a\x2e\x1b\xb2\x1b\xb1\xa9\x02\x72\xfc\xa2\x3c\xd0\x48\x3f\x4b\xe0\xad\xbb\xfd\x62\x94\xea\x31\xf0\x0f\x7c\xcf\x1c\x14\x64\xfc\x15\xfa\x2f\x34\x38\x8b\xd2\x1e\x63\x1c\x27\x90\x53\xc9\xf1\xff\xf1\x75\xe7\xc1\x54\x86\xfd\xe3\xc7\x53\x88\x64\xcf\x9e\x35\x7b\x94\x5d\xa2\xfb\x93\xa5\x84\xc8\x4e\x94\xa2\x90\x10\x21\xa5\x54\x76\x25\x4b\x28\x4b\xa8\x90\x2d\xb2\x67\xe7\x58\xa2\x24\xb2\x97\x52\x28\x45\xa5\x22\xdb\x87\xa4\xdf\x30\xf3\x7b\x9c\xef\x3c\xcd\xf3\xdf\x6b\xde\x9f\x6b\xce\x32\x9d\xb9\xef\xeb\xea\x30\x62\xad\xe9\x90\xc0\xac\x0c\x37\x2a\x01\x0f\x51\x40\x66\x23\x9a\xf0\x93\xcf\x05\x01\x0f\xa6\x50\xbd\x11\x27\xe9\x02\x8e\xee\x30\xd2\x61\xde\xb5\x72\x62\x8c\xf0\xea\xa4\xd1\x9e\x23\x30\x24\xdb\x78\xf0\xb7\xe0\x39\x58\xc3\xd2\xad\xe7\x9e\x94\x54\xeb\x00\x37\xb7\x73\xd0\x68\x06\xbe\x22\x70\xca\x6a\xd1\x46\x49\x47\x19\xd0\xc3\x33\x4a\x40\x7c\x07\x3b\xa0\xdf\xaf\x81\x34\xda\x17\x7f\x09\xe4\xd8\x26\x62\x45\xc9\x65\x02\xd8\x4f\xd7\x59\x38\x1b\x2b\x00\x18\x63\x76\xee\xf8\x40\x3e\x1d\xa0\xec\x59\x81\xab\x82\x6d\x8b\x04\x6a\xce\xea\x8b\x6a\x5f\xe1\x07\x94\xa7\x3d\xd0\x76\x6e\x88\x17\xb0\xf4\x6b\x62\xfb\x83\xe1\xf5\x80\xcb\x75\x3b\x98\x89\xca\x1b\x80\xb6\xe3\x02\xa7\x0a\x39\x93\x00\xaf\xb7\xcc\x96\xa6\x2f\xd9\x03\x36\xbd\xe8\xea\x99\x5a\xe8\x22\x90\x18\x4d\xca\xdb\xfb\x53\x10\xd0\xe5\x83\x79\xf7\xc1\x8a\xad\x80\x1d\xc2\x53\xbf\x2f\xd6\x4c\x13\x98\xc2\xce\xfe\x22\x42\x85\x12\x70\x9f\xb1\xf1\x5d\xa3\xcb\xfe\x64\x70\xe1\xf2\x33\x6b\x48\x70\x07\x34\x8d\x67\x73\xaf\x5c\xb2\x00\x3c\xa6\x79\xd8\x66\xd3\xca\xe1\xad\x3c\xff\x59\x7c\xd6\x5f\x26\xc0\xab\x83\xb8\xe5\xb2\x8f\x1d\x09\x23\x8e\xef\x89\x9c\x39\x34\x4f\xe0\xb5\x87\x37\x03\xed\x4c\xcf\xc3\x3f\x50\xdf\xd2\x72\x21\xc5\x85\xeb\x5f\x20\x3e\xbd\xf8\xe5\x51\xfb\x85\x40\x1a\x93\x9f\xb7\x4b\x26\x06\x08\xf4\x4f\x4e\xfc\xac\xe4\xc5\x09\x38\x3f\xbe\xa1\x25\x4d\x90\x02\x30\x86\xab\x48\xc7\xe0\x9a\x1c\xa0\x70\x30\xdb\xef\x7c\xc6\xbf\x04\x5e\x0b\x97\x31\xc8\x4d\x63\x01\xf4\xe5\x8a\x9b\x5b\xd7\xc7\x03\xb8\x37\x6c\x34\x42\xdb\xf1\x24\xe0\x96\x21\x54\x73\xd1\xf0\x00\x3c\x16\xfe\xf8\x0c\x5b\x15\x13\x19\x2e\x48\xd4\xdd\xbd\xb8\x9f\x8f\x0c\x94\x1c\x93\x83\x1b\xe6\x86\x09\x3c\xc4\xf5\x34\xa7\x6c\x59\x08\xf0\xfb\xf1\x38\x7f\xc9\x57\x54\x80\xa6\x34\x17\xee\xf1\x25\xaf\x03\xa4\xc9\x7c\xb3\xc1\x6d\xfc\x12\x19\xce\x2a\x5f\xf6\xcd\xd2\x7f\x47\xac\x41\xc8\xb7\x5d\xeb\xc9\x6f\x23\xf8\x07\x32\x87\xce\xd0\x72\xa4\xbe\x25\xf0\xd8\x63\x9d\xd2\x5c\x99\x73\x80\x9e\x55\xb1\x15\x7a\xd4\xf4\x80\x46\x82\x86\x0e\x12\x05\x1a\x80\x8a\xc6\xb6\x4b\xc7\x4f\x00\x19\x7e\xf6\xe5\xef\xfb\x11\xd0\x45\xe0\x85\xf3\x3b\xbc\xbb\x3c\x17\x09\x2c\x13\x8f\x2d\x4f\x67\x09\x00\x3c\xb5\xe3\x53\xb7\xc8\x07\x49\xc0\x17\x09\x7e\xbf\x36\x47\x8c\x02\xde\x99\x9e\x7a\x61\x74\x73\x14\x70\xf1\x29\x7f\x84\x96\x4d\x3b\xe0\x5f\x73\x5e\x8a\x2f\x42\xad\x80\x03\xfc\xfa\xa1\xc3\x2b\xa0\x8f\x5f\x8a\xad\xee\xcd\x26\x43\x3d\x0f\xbd\xe0\x39\xb9\xf3\x80\x56\x12\x4b\x7c\x97\x83\x4f\x02\x7a\xef\x19\xff\x9c\x22\xa1\x0a\x68\x31\x58\x17\x6a\x3b\xb0\x85\x0c\xe6\x27\xc3\x85\x32\x8f\x50\x00\x8e\xba\x8d\xa7\xab\x4c\x8f\x13\xf8\xb2\xd5\x97\x28\x2c\xb9\x09\x6b\xa8\x7e\x5f\x97\xb8\xc8\x4b\x0d\xe8\x43\xc7\x3a\xb1\x29\xb8\xab\x0e\x37\xbd\xa0\xed\xd9\x9a\x70\x0f\xd6\xa0\x9c\x5f\xab\x77\xd1\x89\x1d\xf0\x64\xdd\x40\xeb\x93\xcf\x03\x80\xb7\x78\x23\x3e\x4e\x9c\x7e\x03\x78\x83\x95\xdf\x38\xa1\xa1\x1c\x16\x0a\xee\xff\xdc\x5e\x7c\x19\x90\xd9\xbb\xc5\xcd\xe4\x42\x1c\xa0\xff\xdb\x00\x3a\x4e\xf6\x57\x04\xee\x3b\x36\x96\x90\x16\x34\x45\xe0\xd8\xfb\xaa\xd4\xb6\xb9\x12\x12\x46\x1b\x98\x9a\x94\x17\x94\x11\x68\x7f\xe8\x93\xe3\x16\xb6\x83\xb0\x06\xc6\xf9\x59\x4e\xb5\xd2\x41\x62\x0d\x61\x46\x45\xc5\xef\xb2\x0e\xc1\x1a\xc4\x8a\x24\x22\x7a\xb9\x66\x09\x2c\xe1\x3c\x70\x75\xc4\xfe\x0c\xe0\xae\x4e\xd7\xa6\xdf\x1b\x58\x01\x0b\xfc\x85\xba\xea\xe3\x8a\x01\xd3\x9a\x18\xf6\x64\x6a\x3d\x06\xb4\x90\xc9\x7d\x93\x1c\xfd\x18\xf0\xab\x1e\x6f\xb1\x43\x7d\xde\xbf\xe0\xec\x34\xc2\x7d\xa9\x39\x0f\x90\x59\xc2\xd2\xf1\x24\xa5\x06\xa0\x58\x7f\x6c\x5c\xae\x52\x29\x60\x48\x00\xab\x60\xde\x0a\xec\x5c\xf6\x3b\x4b\xf6\x84\x01\xaa\x0f\x3d\x1e\xa6\x62\x09\x26\xa1\xd2\x3e\xfd\x05\xf6\xd7\x77\x00\x7d\xf9\xec\x4c\x7f\xf8\x97\x02\xf6\xed\x3c\x68\xfc\x73\x05\xfa\x86\x0e\xed\xad\xa2\xc7\x01\x0d\x84\xfc\x5e\x3b\xcd\x1d\x01\x4c\x16\xa1\xff\x95\xf1\xe8\x38\x60\xff\xe8\xfe\xda\x21\x5d\x3f\xc0\xcc\xfa\x9a\x91\x79\x21\x0e\x40\x16\x65\x07\x2f\x1f\xfe\xe3\x80\x53\x1f\x06\xd2\xb6\xf7\x1c\x06\xfc\x7a\xe9\xcd\x6c\x96\x1e\x0f\xa0\x9a\xe9\xee\x98\x6b\xc9\xc6\x80\x01\x8c\xa9\x86\x13\xb1\x17\x01\x4f\x1c\xff\x7e\xf1\xd5\xd9\x0d\x80\x0b\xbd\x21\xfc\x82\x06\x3c\x80\x5f\xf2\x44\x2a\x8e\xba\x77\xd7\x61\xa8\x92\xda\xbe\x6f\xad\xa9\xf0\x0f\xd8\xde\x2f\x87\xe8\xc7\x4f\xeb\xd6\x80\x61\x34\x1b\xdb\x99\xc3\x60\x0d\x10\x2c\xb6\x87\xb1\xf4\x32\x20\x63\xd5\x84\xf4\x64\x63\x1d\xa0\x80\xee\x78\xfe\x97\x8d\xf1\x80\x85\x83\x25\xdb\xcf\xaa\xf0\x03\x86\xd9\xf1\x33\x50\x89\xb2\x00\xe2\xd5\xe7\x5e\x1a\x96\xdb\x00\xbb\x34\xde\x4b\x45\xc9\x6f\x03\x0c\xbc\xed\xe8\x4d\x21\x28\x0f\x98\xf9\xbc\xe6\x5d\xce\xd0\x0b\xc0\x0d\xe2\x5c\xaf\x8e\x3f\xed\x04\x54\x40\x42\x6d\x61\xa4\x15\xf0\x94\xdb\x8e\x1f\xab\xe5\xd2\xd6\x36\x6d\x87\xca\x2e\x40\xce\x4c\x6b\xed\xf1\xfe\x70\xc0\x60\x5d\xb5\xcd\x3c\x2f\xc3\x01\x77\xef\x10\x89\xbd\x49\x75\x0b\xf0\xb1\x55\xff\x05\x7a\xce\xeb\x80\x8e\xd6\x2f\x6e\x71\x39\x5c\x04\x64\x39\x00\x79\x9e\xf4\xd6\x80\x1b\x6e\xbc\x40\xd9\x51\x2d\xc0\xbb\x13\x6f\x5c\xc5\xfc\xea\x01\x87\x02\xae\xd2\x7e\xcc\x69\x04\x6c\x39\x42\xe9\xcf\xb8\xbb\x01\x90\xeb\xda\xf6\x36\x1e\xde\x46\xb2\x51\x28\xa3\x9f\xf4\xb6\xc9\x74\xc0\x11\x03\xdf\xdf\xc6\xe2\xe9\x80\x3b\xbb\xce\x77\xc4\x86\x67\x91\x90\xe1\x79\xe3\xe5\xa5\xf9\x74\x40\x6a\x69\xcf\x77\x09\x06\xa9\xb0\x56\xde\x6b\x1c\x78\xf3\x49\xda\x03\x50\x5e\x6b\xfc\x0a\x73\xd3\x75\x40\x9f\xdf\x72\x4d\xab\x25\xf1\x8d\xbb\x9e\x68\xd6\x6f\x02\x07\xcb\x03\x6e\xaf\x7e\x6c\xf4\xed\x9b\xfb\x37\x8a\x95\x02\x72\xcc\xfc\xa4\xa4\x59\x41\x90\xbc\xac\xc1\x39\xa3\x47\x80\x55\x0f\xa8\x05\x56\xd1\xb2\xf5\x74\xff\x3b\xde\x8b\x80\xc2\xcc\x1b\xdb\x7e\xee\xcf\x21\xad\x95\xee\xea\xee\x89\xc3\x0f\xcf\x93\x21\xd7\x31\xc3\x22\xf4\x7d\x26\x60\x5b\x4a\x7a\x0b\xfd\xeb\x4c\xd2\x5a\x39\xab\x91\xe1\x49\xb5\x99\x09\xf0\xbb\x50\xaa\xe6\x81\x53\x21\x80\xd9\xfb\xfd\x2f\x3a\xde\xff\x42\xe0\xf7\xc4\xad\x1a\x12\x57\x7c\x01\xb7\xd1\xfd\x62\x5d\xc5\x91\x52\x19\x3f\xb3\xf9\xb7\x04\xba\x7f\xb8\x40\x7a\x35\x6c\x08\x6b\x60\xe9\x1d\x7a\xbb\xf3\x75\x00\x19\x76\x04\x69\x76\x52\x47\x9f\x00\x3c\x61\xc6\x68\x6f\xfc\xf0\x38\xa0\xab\x5f\x8a\xe5\x7b\x8d\x29\x02\x6d\x29\x62\x5e\x50\x19\x87\x90\xb0\x68\xfb\x9f\xe8\x68\x97\x5a\xc0\x4b\x5d\xc2\xfc\xaa\x75\x19\x80\xba\x21\x67\x6c\x2f\x65\x26\x93\xc1\xc2\xf3\x74\xa8\xcd\x63\x6a\x40\x45\xf5\xcf\x17\xec\x46\x1a\x08\xfc\x18\xd1\x90\xf3\x8b\x61\x13\xac\x61\x4a\xcb\x57\xe4\x8d\x70\x27\x81\x81\xd1\x0d\x2a\xef\x76\xd7\x01\xba\x7b\x4e\x73\xb0\xbb\x55\x02\x32\x3f\xf5\x8c\x60\x5b\xc1\x89\x03\x7a\x0d\xca\xb6\x31\x64\x58\xf8\xc5\xfe\x2e\x32\x30\x07\xf0\x6d\x6a\x1c\xcb\x6b\xfb\x8f\x24\x7c\xde\xad\x11\xde\xb7\x82\xef\x1e\x16\x15\xfd\x2b\xe8\x74\x7d\xcd\xb9\x5a\x5a\x41\x61\x67\x3a\xf5\x23\xc0\xd8\x0e\x9b\xa3\xab\x28\xb8\x1e\x4e\xb1\xf7\xf1\x08\x09\xe3\x13\x9e\x03\xdf\xf1\x34\xb2\x35\x2d\x69\xcd\xf3\x86\x4c\x79\x80\x4b\xac\x49\xad\xff\x17\x32\x46\xa6\xed\xdb\xa5\x7a\x88\x35\xe0\x07\x2d\xe7\xbb\x44\x23\x60\xe3\x59\xb7\xc4\x55\x1c\x95\xb4\x0a\x58\xc5\x2f\xed\x82\xf7\xab\x60\x3d\x46\xcb\x79\x4f\x23\x13\x70\x0f\xf3\xa9\xc8\xa3\x0f\x0a\x01\xdb\x68\xf9\xbf\x7c\x70\xcb\x04\xf4\x0c\xd8\x73\x7c\xb5\x70\xc5\x60\x1a\x8f\xce\x1d\x12\xca\xbe\x55\x3b\x67\xb3\x52\x5c\x3d\x46\xa4\xd2\xeb\x52\xff\x85\xc1\xa4\x0b\x21\x26\xb5\x79\x24\x7c\x2c\x30\xa3\x21\x33\x5f\x0b\xc8\xc5\xe1\xfd\xf6\xe7\x03\x12\xa0\xa9\xb8\x86\x65\xff\xde\x68\xc0\x05\x5d\x51\xe1\xb3\xcd\xd5\x80\xae\xcc\xfb\x2f\x2d\x74\xd6\x00\xa6\x64\x16\x45\xc2\xd6\x74\x40\xcd\xfb\x37\x32\x06\xcc\x0b\x01\x73\xf3\xd4\xc3\x27\x76\x56\x02\x6e\xf0\xb4\xb3\xfa\x6c\xf2\x88\x0c\xed\x87\x52\x6d\x04\xde\x9f\x24\xad\x15\x95\xb7\x07\x2b\x5c\xe9\x6d\xff\x05\xde\x29\xf5\x01\xf7\x7e\x7f\x40\xe1\x9b\x74\x66\x8c\x89\x0c\x80\x1f\x43\x7b\x83\x98\xa5\xc4\x01\x19\x03\x0f\x14\x75\x37\xce\x10\xc8\x90\x31\xd9\xc9\xfd\xaa\x08\x70\x7a\x7b\xca\x40\xcd\xe1\x48\x40\x8f\x3a\xb7\xa0\x2f\x6c\xf2\x80\xef\x8e\xe6\xaa\x91\xb6\x2e\x10\x28\xb2\x49\x42\xb1\x3b\x48\x05\xf0\x8e\x6a\x9f\x14\x85\x7a\x3a\x60\xe5\xb7\xaf\x05\xdf\xe6\x1c\x00\xf9\xb2\xa5\x6f\x49\x85\xfe\x20\x90\xfa\x45\x99\x8a\x95\x6c\x3f\x81\x5d\xdd\xba\xd9\x43\x35\xc2\xb0\x86\x17\xa1\x06\x0d\xd7\xa7\x7d\x00\x7d\x1d\xd8\xa4\xc6\xf2\x55\x00\x69\xd9\x4f\x13\xa7\x83\xac\x01\x99\x97\x0c\x77\xdf\xcc\x8b\x23\x21\x35\x4d\xd9\xb9\x13\xea\x39\x80\xe5\x7f\x97\x04\xe2\xab\x3f\x11\x98\x13\xcf\xc7\xf5\x6d\xb9\x16\x30\x5a\x5f\x5b\xe2\xf9\xba\x52\x72\x64\x6d\x3a\xc8\xd5\xed\x47\x86\xf3\x3d\x24\x56\x46\x1f\x6f\x40\xfb\xf0\x53\x6e\xc5\x66\x7e\xff\x5a\x63\x66\x79\x3f\xa9\xed\xe2\x05\x32\x28\x8c\x56\x4b\x1d\xf4\xbb\x41\x56\x78\xa8\x6f\x9a\x1c\xba\x96\x0b\x68\xb5\xe1\x98\x46\x47\x58\x16\xe0\xcb\xdc\xd7\xe5\x87\xe8\xf6\x91\x81\x6d\x4a\xa0\xbf\xfd\xe1\x67\x02\xbb\x85\xd4\x7a\x6b\xb5\xaf\x02\x2e\x3f\xe8\x17\xb8\xa1\x64\x09\xa8\x48\x73\xd1\x96\x6d\xa4\x80\x0c\xb1\x57\xc2\x6c\xb5\x3d\xde\xd5\x21\x83\x90\x97\xc7\xea\xe9\xe4\xc6\xdf\x86\xd2\xc8\x81\xcd\xf0\xbf\xf0\xec\x6a\x94\xca\x99\xaf\xcf\x09\xf4\x7b\x32\x13\x61\x1b\x37\x4b\xa0\xdd\xdc\xe8\xd6\xc3\xf1\x8b\x04\x56\x1b\x32\xba\xa4\xda\x2d\x12\x58\xa1\x4b\xe9\x14\x5c\xcd\x02\xff\xc1\xc2\xe2\xfd\x88\xc4\x05\x11\xc0\xeb\x1d\x32\xae\x11\xfa\xca\x80\xb7\xb5\xab\xb7\xe5\x09\x7d\x24\x90\x60\x14\xed\xf0\xa6\x13\x80\x35\xb8\xd9\x65\xf8\xcc\x38\xd5\xd4\x21\x9d\x9f\xa0\x74\x82\x83\x06\x60\xb4\x47\x7f\xb3\x85\xd9\x6f\x02\x7d\x2e\x6e\xbd\x6b\x27\xb2\x11\x50\x6c\xd3\xcd\xba\x1b\x9d\x32\x64\x10\x14\x92\x38\xb8\xae\x77\x86\x58\xc3\xb3\xa6\xc6\xd2\x2d\x1b\xb7\xc3\x1a\xc6\xe2\x17\xc5\x8d\xc7\xfb\x08\xa4\x5e\xff\xd2\x62\x1f\xe5\x4e\xc0\x8f\xaa\x6e\x1d\xd4\x15\xf7\x00\x7f\x4e\x3a\x2a\xd6\xb5\xb1\x03\x1e\x55\x9f\xab\xaf\xec\x56\x05\x7c\x92\x7e\xf6\xf4\xdc\x47\x11\xc0\x03\x49\x05\xe1\x57\x3e\x6c\x02\x14\xfd\x85\x71\x15\xa7\xe5\x00\x0b\x99\x42\x1c\x9a\x37\x25\x92\x61\xa8\xbe\x6a\x7a\xcb\x2f\x43\x32\xe4\xe5\xd3\xa7\xaa\xb4\x74\x13\xa8\xcb\xd0\xa7\x9c\xe6\xc8\x0c\xc8\x6c\xae\xcd\x2f\x21\x3a\x49\x60\x4e\xc4\x8e\xdd\x8c\xbf\xec\x61\x0d\xde\x54\x14\x3a\x77\xc5\x14\x01\x43\x2a\xf3\xe8\xfe\xdc\xa0\x03\x34\xab\x32\x54\xd7\x6e\x9d\x27\x70\xb1\xd8\x2e\xf6\x6d\xa3\x34\x60\xe0\xb3\x1d\xf4\x32\x87\xbf\x11\xf8\x61\xa0\x6e\xde\x7c\xf6\x2f\x81\x1d\xcc\x17\xef\xe9\x4c\xcd\x10\xb8\xeb\x97\xc5\xbe\x21\x76\x26\x58\xc3\x07\x77\x96\xb3\xfc\x97\x97\x08\x34\x6d\x38\xdd\x3c\xb0\xb7\x8b\xc0\xde\xaa\xcd\x3e\xcf\x75\x0e\x00\x3a\x3f\x87\x98\x63\x9c\x67\x00\x37\xd4\x45\x2a\x99\x6b\x0d\x13\x78\xbd\xc9\xa4\x35\x5a\x78\x8a\x0c\xa7\xab\x59\x61\x4b\x7f\x33\x81\x6c\x23\xcf\xbc\x9c\xd4\x75\x01\xbb\x9e\xa7\x28\xbd\x3e\xca\x4d\x86\xc1\x97\xf2\x11\xdf\x03\x44\x00\xfd\x7a\x4b\x6d\x93\xa3\x7a\x09\xdc\x72\xf9\xe5\xed\x2a\x36\x25\x40\x7f\xb9\xde\x45\x2f\x83\xed\x80\xdf\xbe\x95\xb0\x9f\xb4\x4c\xad\x43\xe1\xe4\xe3\x36\x23\xf5\x54\x80\x9c\xa9\x61\x0d\xc2\x2d\x62\x80\x4b\x61\xd6\x12\x4b\xdd\x41\x64\xd8\x2c\xab\xfd\xb1\xe3\x92\x33\xe0\xa1\xdc\xae\xc7\xfd\x87\x06\x08\xb4\xdf\xa9\x61\x67\xb6\xc5\x99\x84\x86\x94\xdf\xca\xe6\xa4\x47\x09\xa4\x7d\x76\xe4\x83\xf6\x7c\x30\x09\xb3\x74\xf6\x45\xc9\x77\xde\x07\x1c\x4f\x4c\x15\xf4\x9d\xc8\x20\x61\xf2\x47\x97\x22\xd9\x77\xf7\x01\x33\x97\x4c\x0d\xc6\x1f\x9b\x02\x66\x6f\x99\xd9\x6d\xb9\x6f\x84\xc0\x1f\xc6\xfb\xbd\x3e\x64\x1c\x00\x64\xb9\xb9\x23\x9f\x89\x5f\x9c\x0c\xe9\x99\x6e\x93\x5e\x3f\x7a\x89\x35\xf0\xfa\xed\x68\x2d\xdc\xd8\x45\xa0\xb0\x50\x4c\xd3\x92\x0d\xd5\xca\x3d\x33\x98\x46\x64\x17\x25\xe0\x37\xd6\x0f\x2a\x87\xa4\xd5\xff\x05\x43\x4f\xae\x5f\xbd\x1b\x02\xc8\xf0\x6d\x3b\xe5\xdb\x55\x08\xcf\x31\x3d\xb3\xe9\x3b\x0e\x98\xbf\xee\x1e\x4f\x43\xf2\x2e\xc0\xb8\x47\x3e\x03\x24\xf6\x3f\x04\x4e\xd0\x7d\x70\xfa\xf2\x2e\x02\xd0\xc8\xb6\x99\xfb\xec\x2f\x0f\xc0\xca\x8a\x14\xdd\x3b\x03\xb7\xeb\xf0\x75\xc5\x65\x0b\xce\x93\x65\x80\xac\xec\xc3\x8b\xcc\x81\xca\x80\x56\xde\xa2\xa7\x25\x39\x8d\x00\x9b\x16\x7e\x5f\x51\x7c\xad\x0a\xb8\xe5\x91\x83\xa3\xa5\x98\x11\x20\x8d\x42\xe7\x3b\x8e\xcb\xa2\x80\xe2\x7d\x74\x03\x77\x98\xf7\x01\xde\x37\x70\xf9\xc2\x21\x32\x49\xa0\x66\x67\x9b\xcb\x52\xa9\x1d\xac\x81\x25\xe8\xc7\x41\xbe\xbc\x1c\x12\x06\x9c\xb6\xe1\xb9\xbb\x79\x2f\xac\xc1\xfd\x40\x48\xf3\x13\xae\x12\xc0\xbb\x5f\x78\x8c\x9e\x61\x31\xa0\x57\x74\xbc\x2c\xab\xd7\xca\x56\x22\xf7\x48\xc5\x63\xe5\x12\xc0\x6f\x4f\xde\x28\x3e\x5f\x19\xe5\xb1\xe7\x84\x06\x56\x9d\x06\xdc\xee\x41\x99\x5b\xac\xe4\x0a\xb8\xf5\x60\xbc\xaa\x6f\x43\x29\xa0\xeb\x08\x43\xd5\xb3\x96\x52\xc0\x6e\x71\xe1\xae\x55\x30\x28\x46\xed\x5c\x45\xce\x77\x1f\xce\x55\xb0\xd6\x66\x7e\xd6\x29\xb7\x25\x83\xc5\xe5\x87\xe2\x29\x19\x27\xfe\x55\x74\x5a\x5e\x1e\xec\xf4\x76\x03\x64\xa1\xf3\x69\xf1\x93\xe6\x06\xe4\xfb\x15\xf9\x48\x4e\xdd\xfe\x5f\x30\x50\xe9\x7d\x6f\x65\x55\x40\x86\xcd\x31\x3d\xd3\xd6\x2b\x78\x25\xb0\x2c\x78\x64\x05\x17\xae\x75\xa6\x25\xc4\x3b\x02\xfa\x51\x94\x4b\xdc\x4f\xda\x08\xb8\xab\x79\xf2\x74\x97\xe5\x71\x40\x97\x09\xe9\xfa\x63\x3f\x76\x03\x56\xfb\x54\x3a\xed\xd2\xda\x00\x68\xcd\xee\xfe\x45\x39\x7a\x2b\xa0\xfd\xf3\x47\x9b\x9f\x50\x9b\x03\xf6\xed\x2d\xcf\x1f\x33\x7a\x02\xf8\x6b\xaa\xbb\x2c\x24\x84\x04\x18\xbb\xcf\x44\x6a\x15\x37\x39\x23\xed\x38\x3f\xdb\x02\xf6\xc5\xd0\xb1\xe7\xff\x35\x27\xc3\x67\x3b\x45\x1b\xdd\xa0\x5e\x02\x95\x8d\x9e\x48\xbe\xbe\x2b\x0a\x78\x87\xd9\xd4\xe4\xaa\xd0\x14\x81\x9f\xd7\x6d\x79\x9f\xe2\x54\x0e\x78\x89\xcf\x69\xf7\xdd\x15\xf0\x8f\x35\xa6\xb5\x9c\x5a\x20\xe1\x7c\xed\xdf\x26\x9d\x4f\xcf\x01\x43\x4d\x6f\x99\xac\xae\x89\x9b\x37\xf3\xeb\xa7\x72\xfa\x17\x66\x4e\x51\xc9\x55\x80\x1d\x59\x89\xca\x9e\xf8\x4a\xb9\xc3\x95\x0c\x7f\x72\x7a\x63\x68\xeb\x8a\x01\x59\x5f\xf7\x26\xc4\xad\xe0\x68\x9f\x46\xe0\xcd\xaa\x62\xc0\x60\x33\xb6\xd6\xdb\x2b\xe5\x6d\xfa\x9c\x41\xf4\x1b\x4b\x40\xca\x93\xc5\x93\x84\x9b\x35\x60\x1a\xfd\x33\x42\x47\xd5\x83\xac\x2c\x2e\x4a\xc9\xcf\x31\x99\x00\xfa\x37\x2c\x65\xcd\xd6\x6f\x23\x83\x8d\xd8\x61\x85\xd7\x52\xe7\xc8\x10\x6d\xdf\xe4\xde\x12\x6f\x0b\x28\xfe\x44\x39\x41\x83\x95\x1a\xf0\x74\x28\x51\xaa\x74\x9a\x97\x0c\xbf\x15\x2e\x6b\xf5\x1d\x92\x20\xc3\x13\xaf\x4c\xda\x4b\xfd\x23\x04\x0e\x5c\x70\x3f\xcf\x98\xa8\x03\x48\xef\xf9\x71\x20\xf2\xac\x1a\xa0\xfd\x1b\x05\x1f\xab\x3b\xa9\x80\xe7\x4c\xb8\xd9\x2f\xa6\x8a\x03\x36\xb7\x51\x51\x38\xd2\x6f\x02\x94\xec\x3d\xe5\x32\x16\x4d\x05\x58\xf2\x9b\x99\x83\x89\xa0\x07\xd4\x59\xfd\x82\x83\x1e\x50\x53\xb3\x5f\xdd\xc7\x35\x1b\x90\x8b\xfa\xd1\xd4\xdf\x37\x69\x80\x6c\x0f\x4e\xa9\x68\x3a\xcf\x12\x38\x2c\xe6\xa8\xaf\xa8\xa5\x05\x28\xd9\x0a\xfc\xb4\x13\x07\x00\xcf\x1d\x75\xdf\x53\xf5\xf2\x1b\x81\x8a\x7d\xe8\xad\x14\xf0\x99\xc0\x13\xc9\x34\xce\x39\xaf\xb4\x00\xcb\x3c\x6c\x97\x7f\x6d\xbd\x4e\xc2\xbf\x3f\x8b\x24\xcf\x47\x54\x01\x26\x6c\x93\x90\xe2\x2e\x6e\x03\xb4\xd5\xa4\x4d\xce\x5a\x8c\x02\x7c\xf3\xc2\xd1\x91\xa5\xfc\x0d\x81\x5f\x37\x6e\xbb\xa5\xb0\xb1\x93\x40\xce\x07\x69\x5e\x03\x16\x4a\xb0\x86\xa2\xc8\x79\xb7\x1e\xce\x25\x02\x0f\x59\x3d\x7b\xba\x5d\xb2\x18\xd0\x71\xd4\xf1\xf9\x2f\x6b\x11\xc0\x9c\x01\xce\x97\xa9\x3c\x8b\x04\xee\x35\x70\x9b\x5f\xde\xab\x04\x58\xf5\x4c\x5b\xd5\x44\xf4\x16\x09\xe9\x5e\x72\x50\x8a\x2a\x96\x03\x2a\x8b\xf0\x74\x5c\x4b\x7f\x0a\x98\xb6\xb1\xe5\xec\x2a\x4e\xfd\x79\x2a\x17\xbc\x82\x0f\xb1\xae\x7a\x22\x2b\x6b\x0e\x7d\x6f\xd1\x98\x38\xa4\x4a\x06\x0e\xee\xd0\xfd\xe1\x0e\xdc\x80\xcc\x3d\xb1\x81\x62\x0c\x6a\x80\x3b\xd8\xe4\xce\xec\x09\xaa\x25\xc3\x5f\xb5\xa0\x9f\x3f\xdb\xa6\x48\xa8\xc7\x5d\x44\x0f\x2b\xe5\x3f\x58\xbe\x18\x70\x46\x9c\xca\x05\x70\x47\x94\x6b\xe2\xdd\x57\x07\xc9\xca\x7f\x70\x5d\x95\x47\x32\x97\x9a\x0f\x30\x58\xb2\x88\x6b\xc3\x56\x71\x40\x4d\xbe\xdd\x21\x3e\x36\x48\xac\xe1\xac\x8a\x44\x65\xa1\xcb\x60\x1d\xe6\xec\xed\x37\xab\xec\x51\x02\x7c\xde\xae\x11\xe9\x1b\x5a\x0f\x58\x17\xcf\x71\xee\xf2\x0a\xee\x34\x7e\x54\x71\xd0\xdb\x06\x48\x1f\x7f\x46\x7f\xe0\x43\x11\x60\xd4\xeb\x82\x56\x77\xaf\x62\xc0\x57\x53\x74\x0c\xe3\xd9\xaa\x80\xb6\x59\x31\x1f\xf6\xed\x61\x02\x64\x30\x66\xf6\x1d\x1e\xd9\x0a\xc8\xc7\x11\x7b\x26\x43\x4d\x02\x50\xf2\xc6\x37\x4d\x86\xf6\x7a\x40\xb5\x29\x7e\x1d\x87\xad\x15\x80\x5a\xdb\xc6\x7b\xa4\xb8\xff\x10\x98\xd9\x1e\xff\x75\xdd\x44\x0b\xe0\x29\x97\xa8\xec\x8b\xcb\x05\x80\x1f\x6c\xe8\xa4\xaa\xa5\x0a\x00\x35\x74\x27\x42\x8c\x9b\xef\x03\x76\xb6\x30\x4b\xa7\xc8\x1e\x26\x83\x9d\x26\xcf\xa6\x99\x30\x33\x40\x7a\xff\x88\x08\xfd\x13\x0e\x80\x79\x5a\x16\xcb\xd6\xad\x19\x80\xcd\xad\xe2\x07\xa2\x9c\x4f\xfd\x0b\xa0\x31\xf9\xd2\x65\xd0\x19\xf0\x0f\xef\xee\xe5\xf3\xf9\x14\x80\xd2\x4f\x7f\xda\x46\x32\x06\x90\xd0\x40\xfa\x70\x0b\xa7\x55\x3a\xac\x81\xa7\x38\x72\x22\x49\x66\x84\x6c\xc4\x7c\x60\xe4\xf0\xf0\x75\x3e\xc0\xc6\xbf\xd1\x4b\x1d\xd9\xe9\x80\x16\x89\x86\x79\x96\x71\x65\x80\x7e\xb5\x83\xdf\x47\xac\x33\xc8\x30\x7c\x53\x50\xde\x69\xfc\x0c\xa0\x68\x72\x3a\x45\xf7\x17\x5b\x32\xa4\xfd\x79\x9b\xe8\xa6\x56\x0e\xf8\x97\xbd\xf4\x47\xe4\xde\x72\xc0\xd7\xd6\x7f\x94\xf3\xce\x9f\x00\xbc\x25\x50\xf7\x35\xc5\xcb\x16\xd0\xe7\xcb\xf5\xce\x2d\xb6\xb6\x80\x9c\x6e\xae\xea\x92\x2d\x27\x00\x2f\xa9\x09\x51\xe7\x8a\xa4\x00\x66\x85\xa7\x5f\xb9\xf3\x2a\x95\x84\x42\x67\x4c\xb8\x6a\x22\xd4\x61\x0d\x8e\x94\x21\x47\x1b\xa3\xdb\x00\xcf\x77\x6c\xe8\x99\x5f\xb9\x89\xff\xf1\xaa\x7d\x88\xb1\x5b\x00\x3d\xf4\x93\xc7\xca\xf4\xbf\x11\xc8\x36\x7f\x7c\x22\xe7\x8d\x1c\xac\x61\x3e\xf8\x3a\x9d\xf7\xe9\x4e\x02\x0b\xde\x1d\x1f\x72\x56\x16\x01\xfc\x1e\xe0\xa1\xfe\x7e\x2b\x2f\x60\x4a\x6b\x9c\xbd\xe7\xb7\x66\xc0\x97\x61\xb5\x0f\x7e\x4d\xf5\x10\xf8\x40\xbb\xe6\x2a\xe8\x95\x92\xf0\xd8\x2b\xa7\x66\x1a\xd7\x26\xc0\xa4\x75\x7d\x4b\xc7\x9c\x9b\x60\x41\xe1\xfa\x73\x95\xfa\x6c\xc0\xdb\x9e\x5f\xf7\xb8\xb3\xb5\x12\x68\xc5\xee\x5e\xb1\x81\xf7\x20\xac\xe1\xe1\x61\x0b\x15\xfd\x8c\x61\x02\xb7\x1f\x65\x8c\x9b\xe5\xa6\x04\x14\x3b\xa3\xaf\x61\x97\xee\x4b\x06\xc9\xc4\x49\xae\x3f\xfc\x5b\x00\xb9\xcf\x0b\x4a\x5d\x71\x6a\x04\xe4\x69\xf8\xce\x21\x16\xdd\x00\x38\x79\x69\xfc\x52\xf6\x97\x46\xc0\x2d\xc3\x86\xe9\x8b\x16\xd9\x80\x9f\xbc\x77\x99\xbd\xcb\x4d\x23\xc3\x83\xad\xbc\xc1\xb3\x54\x29\x64\xe5\xc0\xf2\x89\x3a\xf7\xc7\x17\x01\xaf\x97\x08\x50\x0f\x3d\xba\x48\x56\x7a\x86\x2e\x2b\xf3\xbe\xf9\x42\xac\x61\xea\x20\x0a\x6b\x6e\x38\x05\x6b\xc8\xdc\x23\xe4\x54\xc7\xc0\x03\x38\x74\xc9\xe2\xab\xf0\xab\x12\xc0\xe1\xb8\x00\xd9\x87\xfb\x52\x01\xfb\xb9\xdb\xf8\xe7\x25\xae\x00\xb6\x29\x3c\x0a\xa6\x78\xdb\x04\xf8\xf2\xcd\x2f\xa9\x73\x3b\x02\x01\x2f\xbe\xa0\xba\xfd\x43\x3f\x00\xd0\xb7\xfa\xe3\x87\x9c\x83\xde\x24\x2c\x9f\xcc\x7f\x7c\x8f\xf7\x26\xd9\xa8\x35\x7b\xf0\x6f\x44\xa5\x1f\x60\x51\x44\x27\xf1\x25\x29\x9c\xac\x98\xf1\x9b\x7e\xda\x71\x30\x00\x50\x5e\xc1\xf1\x51\xc6\xd7\x5b\x80\xdf\xec\x44\x47\x65\xc7\xb6\x01\x0a\x1e\x2d\x1c\xec\x29\x79\x0d\x78\x51\x24\x5a\x5c\xfc\xd9\x63\xc0\x08\xe5\x65\xb9\x78\x81\x5b\x80\x57\xde\x9e\xe3\x7d\xf3\xf2\x2e\xe0\x2e\x4f\xdb\x2f\xa1\xbe\xd1\x80\x9c\x01\xca\xbf\x7f\x3c\x4b\x01\x1c\xa5\x3d\x78\xe1\x72\xc8\x2d\x40\x41\xb5\x2b\x5d\xdf\x6a\x1f\x00\xe6\x1e\x3c\xda\x17\x54\x77\x1f\xb0\x26\x68\x9d\xfc\x97\xe6\x07\x80\x49\x4d\x67\x9e\x64\x4e\xc5\x01\xf6\x35\x5e\x9e\xb2\xdd\xe5\x0c\xf8\x72\xf7\xb6\x23\x37\xb2\x47\x00\x05\xf2\x38\x5d\xaf\xde\xfc\x4c\x56\xfc\x0d\x62\x53\x51\xa3\x0c\xb0\xdc\x30\xb7\xf0\x83\x61\x33\xa0\x7c\x89\x52\xe8\x2e\x33\x2f\x40\xaf\x13\xf5\x79\x49\xef\x4b\x00\xb5\x8c\x23\x15\x22\x0f\x5e\x04\x7c\xf2\xb3\xfe\xd4\xba\xef\x3e\xa4\xb5\x62\xa6\xd1\xee\xa2\x6a\x6a\x07\xa8\xfc\xf7\x78\xd9\x91\x79\x5b\xc0\x98\xf0\x78\x27\xa5\x98\x5a\xc0\x9d\x9e\xeb\x63\x3a\xfe\xb4\x00\xde\xfb\xd1\x97\xd6\xb5\x82\x83\x8d\x67\x7a\xde\x8b\x74\x90\x70\xf9\x8e\x99\x74\xf7\x4a\x49\x29\xd9\x5f\xf5\x24\xbe\x69\xe5\x6e\xe3\xf6\xa4\xe4\xf2\x03\xc0\x70\xd5\x17\x74\x5d\x3f\xd2\x49\x18\x3f\xba\x39\x9c\xcb\xb8\x86\x84\xdf\xf7\x39\xef\xce\x38\x95\x40\xc2\x2e\xe1\x42\x3a\xa7\x23\x9d\x80\x57\x24\x94\xc6\x9f\x9a\x76\x02\xda\x4e\xa4\xa7\x20\x6f\x27\x20\xab\xf6\x0d\xad\x67\x2b\xc5\x33\xb9\x71\x20\x7e\xe9\x0e\xa0\xb5\x63\x43\x6f\xb6\xfb\x1d\x40\xee\xb9\x4a\x07\xef\x19\x05\xc0\xe6\xd2\xd4\x77\xf7\x16\x12\x01\x45\x7d\xf2\xf8\xaa\x3c\xc8\xd7\x6c\x11\x96\xef\xbb\xae\x98\x08\x58\xe7\x82\x31\xfa\xbe\x39\x80\x91\xaa\x7a\xde\x72\xd6\x39\x80\xc7\x7b\x55\xfe\xe6\x45\x64\x03\xbe\x64\x97\x4a\xe4\x72\x4f\x04\x64\x99\xff\xf0\x87\x82\xf1\x2b\x81\x62\x5b\x04\x26\xa5\xcf\x6f\x01\xa4\x89\x50\x4f\x4d\x7a\x5f\x0a\xf8\xa4\xcd\x09\x4d\x0d\x52\x00\xe5\xca\xf8\xfc\xd7\xff\xb4\x04\xbc\x72\xef\xc8\x56\x76\x3b\x53\x40\x2f\x61\xe6\x14\x0e\x77\x13\xb2\x91\xf5\x85\xb1\x13\x44\x8e\x28\x60\xee\xae\xc7\x2f\xbf\x07\x56\x03\xd6\x0c\xf8\xdb\x0e\x3e\x28\x00\x1c\x0c\x35\xa0\x5f\xb2\x2f\x00\x94\xd8\xea\x5b\xff\xa9\x30\x92\x84\x57\x18\x42\x09\xaf\xae\x12\x12\x46\x3e\x14\xa2\x5d\x5e\x19\xc5\x59\x35\x1e\x38\xad\x10\x0d\xc8\x1b\x45\x4a\x72\xba\xe7\x05\xd8\x9e\x39\x74\xc6\xe3\xbe\x17\x59\x51\x2a\x58\x8a\xa2\x53\xb0\x03\x3c\x37\x25\x9d\x13\xc1\xe8\x07\xe8\x15\xb4\xd0\xe1\x28\x93\x04\x18\x78\x85\xd6\xea\x4f\x71\x18\x60\xf9\x31\xe7\x53\xb7\x0e\x67\x00\xda\x7c\xe7\xa8\x55\xde\x50\x5d\x87\xb4\xc6\xd4\xa2\x9a\x0e\x9c\x2b\x9f\x0d\xcc\xde\xb8\x9b\x8a\x0c\x96\xb2\x9e\x6a\x6e\xb2\x3b\xc8\xf0\xc0\x2a\xce\xfc\xcd\x1f\x55\xc0\x87\x3b\x82\xb9\x8d\x5e\x6e\x07\x3c\x57\xdc\xd2\x25\xdf\x15\x07\xc8\x25\x65\xed\x48\x88\x86\x01\x0a\xf4\xdd\x35\xe1\x7a\xeb\x09\xf8\x28\x3b\x8c\x33\x75\xe4\x0d\x60\x69\xd2\xf5\x98\x85\x8f\x03\x80\x7a\xe7\x97\x93\x8f\xcf\x36\x00\xb6\x4b\x46\xf8\xbd\x92\xdb\x06\xc8\x2d\xa6\x92\x6e\x13\xdd\x54\x87\x8b\x7b\xb2\x46\x04\x24\xee\xc3\xff\x42\xd8\x09\x5b\xfe\x96\xb3\x1e\x80\xc9\xef\x7c\x23\x04\x0f\xd6\x00\x5a\x0e\xd7\xce\x67\x89\xab\x01\x0a\x47\x70\x0b\xf3\x2b\xef\x04\x4c\xce\xfb\x78\xe8\x90\x90\x38\x60\x43\xcb\x81\xa2\x05\x16\x23\xc0\x45\xa5\xfb\x39\x4b\xcf\xb9\x00\xd7\x9f\xbc\xc2\x7f\xaf\x75\x1d\xe0\x7b\xde\x9b\x7f\x2a\x45\x14\x01\x03\x47\x62\x8e\x32\xc4\xf2\x00\xc6\x49\xfe\xd2\xb3\x98\x90\x21\xc3\xcc\x58\xec\x4c\x6f\xeb\xc3\x3a\x7c\xe5\xd4\x10\x36\x41\xaf\x01\xe8\xe3\xa4\xc2\x2f\x58\xa9\x08\xe8\x57\x73\xee\xb3\x92\x32\x1f\x19\x7c\xcd\x9e\xde\xed\xc9\x98\x22\x70\x72\xa9\xb9\xdf\xe4\xdb\x5b\x02\xdb\x4b\x86\xbf\xf0\x7d\xdc\x08\x18\x6d\x12\x57\x59\xd7\x3e\x49\x20\x9d\xe7\xd5\x43\x94\xbd\xca\x80\x47\x2a\xf9\x3c\x6f\x7f\xb6\x00\x74\x17\x55\x8b\xcb\xba\x9f\x0a\xe8\x9d\x4d\xa5\xf2\xe3\xe4\x15\x40\x69\xe3\x43\xd2\xe7\xd3\x1d\x00\x4f\x76\x3e\xaa\xd4\x90\xd3\x01\xbc\x4d\xdd\xf6\x72\xb1\x9a\x0f\x70\xdb\xed\x1e\xe5\x2d\xf3\xf3\x04\xca\x4a\x8e\x24\xed\x37\x9c\x27\x70\xdc\x86\xea\xcb\x33\x0b\x09\x58\xc3\x4f\xa6\x24\x5d\x85\x3f\x8d\x04\x3a\xf6\x7b\x75\x8c\x07\x56\x00\x6e\x38\x28\x73\x56\xaf\xce\x1e\x50\x3d\x52\xd9\x85\xfe\xa8\x00\xa0\xef\x4e\xae\xdb\xd2\xfb\xaa\x01\x07\x1e\x4f\xd9\x38\xbb\xc6\x01\x06\x0e\x4f\xe5\x2b\xc4\xa7\x01\x8e\x8b\x6d\x6c\x59\x45\xb3\x71\x04\xe3\xfa\x39\x76\xc0\xba\xdb\x1f\x8b\x24\xe5\x94\x00\x2f\xa8\x3f\xe7\x71\x7c\x9a\x08\x78\x4e\x21\x5e\xb2\xa1\x21\x1d\xb0\x83\x2e\xfa\xc9\xd6\x2f\x0d\x80\x86\x5e\x05\x0c\x1f\x4c\xaf\x91\xc1\x69\x41\xf5\x46\xf1\xb1\x50\x40\x87\x29\xcd\xe2\x71\x07\x77\xc0\xb2\xf7\x7d\xb4\xa3\x96\xe7\x00\xd3\xf4\xa7\xef\x08\x7f\x90\x07\x3c\xcb\x7c\x35\x99\xa0\x6a\x04\x2c\xf9\x5b\x6b\x35\xdf\xaa\x03\x18\x9f\x91\xac\xa1\xd8\x97\x05\x28\x7c\xbb\x23\x6f\xd3\x2f\x35\xc0\xe3\xe6\xef\x75\x5d\x74\x78\x00\x9d\x0c\x64\x02\x47\xd7\xc7\xff\x0b\xc5\xfa\x23\x67\xb8\x1b\x9b\x08\xd4\xcc\x78\x15\xea\x23\x7e\x07\xd0\x6f\x8c\x61\xbf\x79\x43\x3e\xa0\x9c\xfd\x03\xee\xa8\x4f\xa5\x04\xea\x79\x6d\x3e\x72\xe8\x9d\x28\xac\x81\x97\xc3\xb5\xad\xdd\x40\x04\xf0\xd5\x40\x91\x11\x83\xb1\x11\xe0\x8b\xb2\x4b\x02\x8f\xb5\x37\x01\x3e\x2d\x4e\x9e\xd1\xb5\xaa\x03\x3c\xd2\x39\x65\xa8\xb7\x02\xb9\xdb\xda\x09\xab\x85\x92\xbd\x49\x7d\x9b\xdc\x6f\x62\x0d\xb2\x9b\x1c\x1f\x88\xf6\xf3\x02\xae\xb7\x58\x0c\xcf\xb9\xbb\x1b\xb0\xf2\x01\xd6\x5f\x10\x09\x01\x8c\x54\x76\xd8\xd8\x9f\x10\x0a\x98\x9b\xe6\x26\xf1\x71\x59\x11\x50\xe9\xc8\x8b\xa5\xd2\x2a\x3d\x32\xe4\x70\x3b\x47\x24\x95\xe4\xfe\x0b\xa9\x1a\x5b\x77\xf3\x44\x36\xd5\xa1\xe9\x87\x29\x31\x1b\x41\x45\x40\x4f\x73\xa9\x24\x47\x9e\x97\x75\xf8\x65\xf6\x4c\x88\xa4\xe2\x0d\xf8\x07\x24\xeb\xde\x97\xf5\x37\xaf\xff\x17\xf4\x0f\xa7\x58\x5c\x8b\x18\x21\x70\xc3\x50\xee\x29\x49\x66\x55\xc0\x72\xe9\xb1\xfa\x03\x73\x92\x80\x11\x35\xe9\x49\xe3\x3e\xd3\x04\x32\xc6\x5f\x6a\x1f\x7f\x51\x0b\xb8\xd5\xb9\xb3\xe3\x19\x65\x35\x60\xde\x03\x8e\x13\x76\xd2\x8d\x80\x33\xbe\x55\x66\x73\x97\x02\x00\x1f\xed\x9b\xb7\x2d\x4c\x88\x01\x34\xdb\xad\x87\xc3\x9e\x73\x04\x06\xe7\x07\x30\xcb\x76\x35\x00\xf2\xbe\xf2\xad\xca\xd1\xad\x07\xcc\xe0\xff\x7a\xab\xa2\xa3\x1e\xd0\x55\x57\x2e\xe8\x48\x62\x1d\xa0\xe6\xc6\x00\x51\xb9\x95\x35\x2a\x87\xc5\xce\x65\xf5\x05\x00\x2e\xbd\xd4\xb7\xac\x16\x7c\x02\xd8\x9d\x66\xb4\x7b\xf1\x60\x1d\x20\xbb\x5c\xc8\xb0\xe2\x91\x6a\x32\x7c\x9f\x7b\x2b\xb6\x8a\x1d\xe1\x6a\xa2\x66\x1f\x9f\x90\xf0\x6e\x90\xed\xec\xf6\xff\x33\xca\xf3\xb6\x6d\x0e\xda\x9c\x4d\x86\xa7\x02\xe3\x45\x86\x31\x0f\x00\x03\x55\xcb\x37\xaf\x16\x8e\xc3\x9b\x9d\x56\xf1\x18\xb7\xef\xb9\xc6\xb4\x72\x37\xff\xea\x5f\x95\x12\x14\xf8\x2f\x84\x29\x3f\x63\xf2\xbf\x73\x16\x50\xba\x56\x7f\xba\xe7\xa0\x0e\x19\x5c\x6f\xfc\x61\xb1\x4c\x52\x03\xf4\xc8\x98\xa7\x29\xf4\x13\x06\x6c\xeb\x91\x7e\x72\xc8\xc3\x19\x30\x90\x4e\x71\xcb\xe2\x36\x73\x40\xb7\x6d\xc9\x4a\xee\xfc\x7d\x04\xda\x50\xbb\xcc\x19\x77\x08\x03\xea\x93\x58\x3d\x69\x9d\x9a\x00\x79\xd5\x0a\x8d\x87\x55\x83\x01\x77\x2e\x6a\x13\x1d\x63\x81\x80\xef\x58\xd3\x7c\x82\x7e\x07\x01\xd2\x68\x4d\x78\xef\xfd\x9a\x04\xc8\x79\xe1\x82\x40\xe0\x70\x12\x60\xe4\xe1\x48\xd8\x35\x76\x0b\x70\xc4\x41\xc6\x26\x1d\xc2\x00\x45\xc7\x44\xeb\xbf\xdb\x5d\x05\xec\x1c\x15\x98\xde\xf0\xad\x1a\x10\xc5\x3f\xd8\xe8\xc6\x0a\x00\x32\x3b\x7c\xe5\x0c\x4a\x91\x20\xc3\x0b\x3b\x6f\xfa\x4f\x52\x4c\x80\xae\x36\xde\xb6\x5d\x7c\x4c\x80\x28\xc3\x68\x46\xc9\xb1\x19\xf0\xb2\x94\xce\x10\xe1\xea\x49\x86\xcf\x06\x19\xc9\x91\x74\xbe\x80\x75\x5b\x1b\xaa\xf8\x39\x65\x00\xbf\x6a\x0e\x84\xfe\x92\x61\x22\x03\xd2\xec\xee\xf0\x8f\x50\x00\xcc\x5d\x4e\x0f\xca\x57\x2a\x02\x1c\x76\xf3\x31\x5f\xc5\x75\xef\x0b\xc9\x75\x39\xf9\x80\xe7\x22\x3a\x8a\x57\x4b\xcb\x49\x99\xdf\x8c\xbc\xf5\x80\x51\x1c\x8a\x13\xa7\xb8\xeb\xc9\x8a\xae\x66\xe8\x98\x9b\x68\x3d\xa0\x54\xde\x3e\x16\xa6\x95\xa2\x5a\x7d\xec\x86\xf7\xa8\x11\xa0\x8a\xd0\x01\xdd\x7b\xd1\xd2\x80\xe8\xfd\x76\xca\xe7\xd1\x6b\xc0\x9e\xde\xc3\x99\xbe\x2b\xe8\x50\x95\x55\x59\x2d\xd6\x91\xc6\x3f\x9b\xda\x2a\x01\xb3\x68\x64\xb2\xdb\x64\xbd\x00\x29\x69\x9f\x25\x53\x09\x1e\x02\x2c\xed\x63\xd2\xf4\x5c\xff\x08\x30\xc3\xa1\x92\x7b\xac\x7f\x98\xc0\xd0\xad\xd6\x4a\x52\x95\xd3\x64\xe0\xa4\x7e\x76\x3f\x4d\x31\x16\x70\xd4\x2f\x44\x78\xd4\xa4\x8c\x84\x99\x22\x87\x6d\x22\x35\x54\x01\x13\x5f\x7e\xbb\xd3\x78\xce\x09\xd0\x60\xb1\x97\xf0\x54\xac\x00\xe4\xec\xdd\xd3\x70\xac\xa2\x1e\x90\xad\x52\x4d\x49\xee\xee\x63\x40\xaa\xef\xae\x8d\x52\x8f\xd2\x00\x95\xd7\x09\xd6\xcf\x32\xe9\x91\xc1\x39\xac\xdf\xa0\xab\x81\x0e\x10\xcc\x37\x49\xfd\x08\xdc\x0e\x68\x79\x48\xb7\x4c\x7f\xce\x81\x84\x36\xc7\xfc\x85\x8d\xcf\x5f\x05\xe4\x74\x6d\xe3\x72\xc2\x41\x02\x17\xbb\xcf\xf0\xc4\xd0\xd2\xc3\x1a\x5c\x15\x48\xeb\xa9\x07\xb6\x02\x86\x9a\xe7\x54\xcb\xa4\x0a\x02\x0a\x09\x9f\xda\x70\xad\xa6\x11\xb0\x76\xd0\x78\x22\x74\x05\x7c\x0b\xf8\xc7\xe2\xae\x26\x60\x01\xc7\x47\xca\x41\x43\x57\xc0\x48\x1a\x21\xaf\xc9\x5d\x65\x80\x61\x7f\xe4\x5e\xd2\x6d\xcb\x01\xbc\x9a\xbc\xe1\x00\xcf\x52\x34\x19\x3e\x71\xe8\x69\xe7\xc8\x17\x02\x46\xec\x80\x5d\xc1\x0b\x31\x80\xce\x5e\x95\x48\xe3\x59\x4e\xc2\xbf\x2a\xdd\x93\xca\xfb\x0b\x48\x38\x4b\x53\xb8\x67\xe2\xf8\x23\x12\xe6\x98\xd8\xe6\x31\x87\x6c\x03\x0c\x2c\xa3\x10\x99\xe1\x7e\x0e\x28\xc7\xd1\xbb\xde\x6e\x76\x3d\xa0\xe1\x85\xc7\x4f\xe9\x56\xff\xbb\xee\xff\x23\xb4\x26\xe6\xad\x69\xb9\x38\x60\x56\xd4\x33\xbe\xc6\xb9\x4d\x80\xb2\x9b\x9c\x9e\x9c\xd2\x38\x07\xd8\x4c\x25\x35\x13\xcc\xc8\x0b\xf8\x7c\x7d\xcb\x2d\x3f\x4a\x75\x40\x48\x2f\xe8\x39\xbf\x72\xde\xe5\xdd\xb7\x7d\xe9\x80\x0b\x23\xa0\xba\x40\x64\x44\x36\xdb\x19\x12\x72\x45\x71\x15\x68\x6e\x28\x04\x94\xaa\xfd\xbc\xa3\x2c\xec\x2c\x09\x8d\x6e\x0d\x7a\xae\x67\x28\x04\xcc\xfa\x70\xef\xf2\x76\x83\x06\xc0\xd4\xd1\x14\xf1\x04\x7e\x2e\xc0\x20\xaa\x6f\x0c\x8c\x47\x28\x01\x8f\x24\x7e\xc9\xa5\xcb\x70\x27\x61\xf3\x94\xae\xc5\x48\x49\x11\xa0\xeb\x40\x26\x9b\xf0\xdf\x08\xc0\x6e\xc3\x84\x36\xe1\xec\x70\x40\xd9\xea\xe0\xcc\x3c\x99\x18\xc0\x2c\x01\x43\x2b\x4d\xa6\xbb\x80\xd4\xcf\xd8\xd3\xad\x1b\x14\x01\x2b\xe7\xae\xa8\x75\x3e\xba\x03\x68\x50\x28\xef\x9f\xbb\xce\x92\x0c\x1b\xf7\x5f\xaf\x09\x0b\x16\x06\x94\xa9\x0b\xff\xad\x38\xce\x0e\x78\x55\xfd\xb0\x92\xea\xde\x7c\xc0\x7b\xf7\x25\xfd\x9a\xa4\xf3\x01\xf7\x5b\x50\x9b\xc9\x3c\xbd\x02\xc8\x26\x65\xae\x93\xf0\xe4\x32\xa0\xa6\xbe\xd2\xd5\x17\x2b\x7b\x00\x0a\xc3\xb2\xcb\xd3\xfb\x0b\x00\xc7\x26\x36\xbb\x08\x4d\xeb\x00\x0e\x7f\xbe\xa7\x22\x14\xad\x08\x78\xe9\xd2\x77\x2a\x31\xae\x3b\x80\x32\x06\xd7\x2f\x69\x8c\xdd\x06\x7c\x7f\xc0\xca\x56\xa7\xd7\x19\x50\xc6\xbc\x21\x5e\x66\x7b\x13\xa0\xe1\xa9\xee\xc3\x96\x73\x85\x80\x42\x6c\xaf\x9a\x9c\xfd\x8f\x03\x4e\x97\x16\xae\xcb\x3d\x7f\x91\x84\x42\xc1\x25\x0d\x77\x8c\xed\x00\xab\x73\x5f\x3d\xe3\x0f\xb1\x03\x8c\x75\x2d\xa5\xb8\x50\x2f\x0c\x58\x81\xeb\x77\xf0\x75\x85\x91\x30\xf6\x74\xf6\x64\x61\x54\x29\xa0\x67\xfe\xbd\x97\x1b\x93\x4b\x01\x25\x6d\x2b\x2e\xec\x63\xe2\x05\x14\xaf\xb3\x68\x54\xcb\xe4\x07\x04\xe3\x89\xe8\xad\x37\x1e\x00\xbe\x3d\xc3\x5d\xac\x6c\x92\x45\x42\x83\x5a\x6e\xa9\x34\x49\x73\x40\xf3\xb4\x29\xc9\x84\x11\x16\xc0\x8f\x0a\x9f\x32\x4f\x25\x9b\xc2\xda\xc8\xd8\x26\xd3\x7f\xb3\x0f\x33\x60\xe8\xe9\x5d\x03\x27\x0c\x5e\x02\xd6\x68\x5c\xa0\xda\xaa\x29\x0b\x18\x63\x3e\x24\x51\x99\x38\x40\xe0\xd4\x8b\x63\x9b\xa6\xca\x6e\x01\x86\x07\xeb\x4e\x4f\xfe\x1f\xdc\xef\x35\xb7\x8d\x24\x99\xfe\x4f\x8c\x0c\xdb\x1b\xd1\xaf\x3c\xc5\x4e\x07\x39\x9e\x98\xa1\x1c\xc0\xdc\xa0\x17\x86\xaa\xc2\x7d\x04\xde\xee\x6a\x78\xa3\xdf\x43\x0d\xe8\xc5\x92\x2b\x2a\x6f\xb5\x4c\x20\xe3\x0b\x55\x86\xe2\x51\x66\x40\xba\x77\xbd\xee\x65\x1f\x8d\x01\x4f\x8c\x3a\x35\xc9\x98\xd7\x00\x26\xf8\xc4\x51\x0d\xce\x3c\x03\x64\x25\xe5\x27\x77\xbc\x62\x06\xf4\x16\xbf\x27\x27\x3d\x9d\x07\xd8\xb7\xd5\xbc\xe6\xe6\xca\x01\xaa\x69\xdb\xa2\x12\xb1\x99\x07\xb0\x3c\x42\xeb\x40\x71\xd7\x4f\x02\x73\x3e\x2b\x48\x8a\x48\xdf\x85\x35\x44\x2c\xc9\xdb\xaa\xae\xb3\x07\xbc\x16\x55\xd1\xe6\xa6\x6b\x02\x98\xb3\xf3\x48\xe1\xe0\x9b\x7e\x02\x7d\x14\x34\xd2\x26\xed\x02\xe1\x1f\xf8\x18\x78\xb6\x2a\x67\x31\xf2\x5f\xd0\x17\x4f\x68\x6d\xfa\xe8\x0b\x38\xf9\xac\x50\x92\x81\x4f\x18\xf0\xf5\x9b\x07\x57\x0f\x2f\x71\x00\x1a\x1f\x98\xef\x63\xee\x2d\x07\x34\xbf\xa6\x78\xc5\xfa\x96\x1a\xe0\x23\x7e\x95\x4d\xeb\xb6\xe4\x03\xfa\xd7\x79\xa8\x6e\x13\xcc\x03\x74\x0e\xd4\x92\xb5\xa3\x29\x26\x43\xd7\x73\xe5\x85\x33\xf3\x83\x04\xea\x7e\xaf\xfc\xb3\x77\x90\x04\xc8\x9b\x96\xb7\x98\x7a\x87\x1e\x30\xbb\x43\x3f\x5d\x28\x98\x8b\x0c\x3f\xfc\x87\xa2\x12\x4e\x56\x11\x98\xb0\xf9\x93\xa7\xbc\x87\x18\xe0\x09\xca\x3f\xb9\x5c\x59\x24\x40\xe9\x1d\x5d\xbb\x37\xf6\x2d\x12\x98\x7b\x48\x3b\xfc\xe8\x36\x03\xc0\xfd\x7d\x32\x54\x14\x63\x22\x80\xdb\xad\xd5\x6e\xfe\x19\x59\x20\xf0\xec\xb9\xa8\x82\x2c\x35\x65\x40\xd0\x48\xe9\x55\x8f\x90\x05\x8c\x1f\x10\x78\x7b\x6a\xe7\x28\x81\x7a\x24\xbe\xde\xd4\x7b\x66\x80\x52\x3b\x03\x9c\xbe\x0a\x32\x01\xc6\xfa\x6a\xc9\x7a\xae\xec\x33\xbf\x39\x77\x2a\x9d\x3c\x5c\x03\x28\x37\x24\x2e\xd5\xa3\xc4\x0e\x18\xff\xed\xab\xb1\xf3\xb5\x1a\xc0\xe8\x00\xa3\x63\x2f\x58\x77\x01\x06\x86\x1a\x69\x8c\x4d\xb3\x01\x86\x3f\xba\xb4\x57\xca\xb5\x1e\xf0\x26\xd5\xa4\xf1\x0f\xef\x12\xc0\xd7\xcf\x0b\x12\x25\xe4\xbb\xeb\x30\x76\x74\xae\xf7\xe3\xbd\xc7\x80\x0b\xdb\x37\x4f\xac\xa2\xfd\xde\xc4\xdf\xbd\x8f\xad\x01\x33\x38\x06\xed\xcd\x4d\x32\x01\x0d\xd3\xe5\xb5\x4d\xc7\x8f\x03\xba\x44\x6a\xe7\x38\xc5\xe6\x91\xb0\x6f\x5e\xef\xf8\xf4\xc6\x10\xb2\x51\xc9\x49\x25\x53\x74\x64\x06\x54\x18\x3a\xf0\x6c\xec\x4a\x23\x20\xe9\x2b\xb7\xbe\xfe\x72\x2a\xa0\xc7\x51\x7e\xd5\xf6\x8b\x96\x80\x98\x74\xe8\xf2\x52\x9d\x0d\xe0\x5d\xaf\x6c\x2f\xca\x1f\xf4\x80\xde\x4b\xb7\x0f\xbf\xa6\x3a\x4d\x86\x66\x3e\xfb\x1c\xfe\x12\x12\xa0\x43\xc5\xf7\x4f\xbb\x76\x94\x02\xaa\x9f\xb1\xaf\x0d\xe2\x8e\x06\x54\x65\xe2\x0c\xdb\xc5\x11\x06\xa8\x9a\xb0\xfe\xf8\xa2\x1e\x23\xa0\x44\xfb\xe7\xcc\xe2\xe5\x4a\xc0\xdb\x05\xd1\xba\xab\x78\x94\xe8\xa5\x68\xeb\xe8\x4a\x86\xc0\x60\x25\xca\xe6\xb0\x2d\x80\xba\x5f\x27\xa5\xd7\x4f\x3c\x04\xbc\x75\x55\xfc\xdc\x24\xd7\x5e\xc0\x0f\x2a\x62\xfd\xe2\x54\x1c\x80\x2d\xb1\x63\x4d\x2f\xb6\x97\x03\x8a\xc8\xb0\xcc\x3d\xf5\xd8\x03\x68\x1d\x55\xe5\x21\xbe\x72\xd3\xfc\x0f\x48\xd0\x11\xd5\x55\x4e\x00\xb6\x7c\x39\xc4\x12\xec\x24\x01\xf8\xc6\xfc\x08\xcd\xfd\x5a\x2e\x32\xf4\x0e\xa2\x99\x29\xfc\x21\xd0\xe5\x0a\xa3\x80\x4e\xea\x22\x81\xde\x36\xe1\x83\xaf\x52\x2b\x48\xe8\x28\x71\x77\x4c\x6c\xf5\x17\x29\xcd\x7a\x1c\xaa\x06\x2f\x00\x26\xdf\x66\xfe\x61\x7c\xc8\x00\xf0\xae\x2f\xf6\xb6\x4f\x97\x03\x32\xdc\xe9\x11\x91\x8c\x49\x27\xc3\xfc\xb7\xa8\x23\x63\x3b\x3b\x09\x14\xfe\xc8\x7c\x6a\xcf\xf7\x4e\x02\x69\xac\xf7\x8c\x28\xaa\x4b\x02\x9a\x76\x5e\xfe\xc4\xa5\xb6\x48\xa0\xf5\xc6\x5c\xda\x42\xe1\x42\xc0\x44\x39\x69\x87\x1c\x91\x6d\x80\xe5\x82\x51\x3c\x97\x1a\x0a\x00\x13\x93\x4c\x73\x45\xb4\x6b\x00\x49\x02\x0d\xb4\x26\x39\x8d\x80\xdc\xc6\x5f\x94\x76\x89\xed\x03\x64\xed\x65\x4b\x7e\x77\x4e\x0b\x30\x2c\xd2\x59\xfc\x83\xc9\x3a\x40\x46\xeb\x1b\x6f\x9a\x3e\xe9\x02\xee\x94\x38\x09\x1d\xb6\x8b\x04\x06\x4f\x45\x45\x6b\x0f\x4f\x92\xa1\x78\x67\xf2\x2f\x45\xd7\x9f\x04\xce\x6b\x36\x9f\xef\xeb\x29\xab\xc3\xa7\xac\xf2\x3c\xdf\x34\xb2\x01\xc7\x8a\x7c\x54\x6c\x8b\xb3\x00\x63\xd2\x8e\xea\xac\x16\xbb\xe6\x08\x75\x21\x17\x76\x40\x67\x03\x4f\xd1\xbe\xed\x1b\x00\x53\x54\x5e\x2c\xcc\xb7\x64\x03\xf6\x54\x14\xc9\x97\x3c\x31\x00\x7c\x79\xd0\x6c\x60\xdd\xca\x27\x41\x3b\x5a\xdc\xb6\x23\xca\x9f\x0c\xea\x65\x55\x9e\x7c\xbb\x1e\x02\xba\x6d\xbe\xac\xef\xb6\x5f\x1b\x30\xed\x02\xc3\x19\xca\xeb\x6a\x64\xe8\x39\x79\xb5\x9b\xa4\xfb\x9e\x40\x17\x53\x35\xfb\xef\xdf\x5a\x01\x35\x29\x4b\xdb\xbe\xbc\xf5\x07\xbc\xbb\x87\x24\x19\x64\x7e\x13\x30\xfc\xe8\x6d\x96\x92\xf3\x0b\x04\xda\xee\x7d\xc5\xb9\xc7\x30\x0f\x70\x8c\x57\x4e\xfe\x99\x66\x1e\xe0\xc9\xe0\x3f\xef\x94\x3b\x14\x01\x67\x8f\xcb\xdb\xec\xe0\x15\x00\x8c\x64\xc9\xbb\xfb\x52\x45\x03\x90\x02\x69\x3f\xfa\x70\x09\x93\x61\x48\x8b\x32\xd7\x32\xed\x5d\x1d\x36\x7a\xf9\x17\x89\xb3\x85\x01\xfa\x32\x1d\x2c\x71\x2f\x7a\x5d\x87\xa7\xfe\xaa\xee\x92\xbd\xb1\x09\xd6\xe0\x70\x5f\xe4\x9b\xc4\xca\x96\xef\xa9\x12\xf5\x18\xd5\xb6\x19\x02\x79\x92\x6e\x98\xfd\x7e\x22\x03\xa8\xbc\x7d\xd3\x87\xf3\x57\x64\x00\x5f\xca\xd7\x78\x4b\x8f\x2a\x01\xee\x78\xcd\x59\x67\xd2\x2a\x07\xb8\x37\xfa\x71\x5a\x58\xc8\x43\x32\x64\xd0\xe5\x6a\xe8\x1b\x3c\x04\xec\xea\x57\xaf\x9f\x08\xce\x03\xb4\xc9\x8f\x21\xbe\x3e\x66\x25\x43\xf7\xb2\x94\xcc\x83\x1f\x34\xff\x13\xa9\xc1\x3d\xc6\x5e\x4b\x73\x04\x2e\xa4\x36\xd9\x6b\xea\x6f\x00\x54\xa1\xed\xd5\x31\xd0\x63\x00\x3c\x16\xfa\x40\xb3\xf9\x5c\x29\x09\xeb\x23\x5f\x37\x55\xae\x6c\x0f\x4a\x2d\x1f\x3d\xac\x5a\x41\x83\x02\x93\xf6\xed\xbc\x6c\x12\xda\x56\x30\x49\x68\xad\xfe\x38\x48\x0b\x1b\x15\xf5\xcf\x46\x40\xbd\x56\x3b\xc1\x3f\xc6\x8d\x80\x3b\x3d\xa5\xa3\x2e\xf9\x06\x03\xc6\x09\x8e\xba\xbe\xdc\x16\x07\xf8\xc6\xb5\xb9\xcc\xbd\xdf\x0b\xf0\x13\x51\xfa\xf2\x7d\xb6\x16\xa0\xa0\x97\x65\xc0\x05\xb9\x49\x02\xcd\x02\x29\xf5\x6c\x78\x3d\x01\x4f\x12\x95\xf7\x43\x1b\xb3\x00\xd3\x4d\xb8\xb6\x16\xb8\x6d\x27\xc3\x8d\x2d\x3b\x6b\xb6\xf7\x8f\xd6\xe1\x51\x97\x68\xc6\x31\xd3\x74\x40\x27\x2b\x86\x03\x51\x1c\xbb\x01\xf7\x6d\x96\x76\x0e\x19\xdc\x06\xa8\x99\xf6\x68\xfb\x96\x9b\xb3\x04\xbe\x66\x8b\x3d\x55\x5c\xf2\x8b\x40\x62\x96\x31\x6f\xfe\xac\x3e\xa0\xc5\xe1\x5b\x03\xca\x6f\x37\x01\x6a\x79\x5f\xee\x5c\xf4\x60\x05\x7c\xeb\x54\x4f\x7f\xaa\x34\x1e\x50\x74\xdc\x73\xfe\xc3\x19\x5b\xc0\x6d\x94\x91\x36\x3b\x06\x4f\x02\x9e\x3a\xe0\xaa\x17\x35\x6e\x01\x28\xd1\x73\x3f\x6b\xc4\x90\x0f\xb0\x5d\xe8\xdb\xfd\xe4\x2b\x3c\x80\x9e\x47\x2b\xb2\x3e\x4a\x19\x91\x81\x8d\x37\xf1\x26\xdb\x69\x19\xc0\x05\x33\xa9\xa4\xac\x65\x4e\x40\xae\x36\xfb\xf4\xe0\x08\x31\x40\x1f\xf9\xbe\xd8\x80\x04\x61\xc0\xfd\xfa\x15\xdb\x1a\x94\x36\x01\x5e\xbd\x2c\xe3\xd4\xf6\x44\x0c\x50\x47\xba\xf1\xb1\xa7\xe6\x24\x81\x4c\x4c\x13\x47\x46\xad\xfd\x01\xe5\x29\xd8\x76\x47\xdf\xd7\x03\xfc\x98\xd5\xfe\xd8\xe6\x6e\x26\xe0\x06\xda\x77\x5a\x9f\xfa\xe2\x01\x85\xee\xed\xab\x29\xd0\x37\x07\x54\xe1\x79\xf6\x20\xef\xf4\x61\x40\x07\x27\xc6\x49\x63\x3f\x7d\xc0\xf3\xa6\x4c\x5e\xe2\x67\x02\x48\xb8\xf5\xd6\xba\x6a\x1a\xe3\x24\x40\xe0\x3b\xae\x70\x70\xe3\x45\xc0\x87\xcd\x15\xf3\x94\x8c\x5b\x01\xbf\xdb\xb6\x0d\x0f\xd2\xe5\x01\x16\x54\x86\x39\x3c\xdd\xf2\x04\x30\x31\xff\xd0\x8b\x08\xc6\x36\x12\x1a\xa9\xa9\x8d\x31\x48\x3d\x01\x54\x52\xce\xd4\x0a\xbd\xa5\x09\x18\x40\xdd\xb4\xc8\x7d\x88\x0b\xb0\x6f\xc9\x65\x40\xdf\xfd\x26\x09\xef\x0a\x5a\x2d\x68\xe4\x37\x00\x16\xaa\x19\xf0\xf5\x6e\x1b\x27\xe1\x50\x7c\xaa\x6a\x54\x61\x03\x60\x7f\x9b\xe5\xa0\xf3\x28\x27\x60\x22\xf5\xa4\xa5\xff\x14\x35\xe0\xc1\x7b\x75\x7b\xef\xad\x5c\x37\x42\xe7\x6e\x78\x0b\x58\xce\x12\x18\x51\x42\xdd\xda\x3c\xb5\x1f\xb0\xd0\x4e\x41\xb3\x83\xf2\x02\xa0\x5c\x8d\x52\xef\x93\x27\x0b\x04\x52\x6b\xb5\xd9\x78\x50\xb0\x02\x0e\xce\xac\x57\x73\xce\xff\x45\xa0\x1b\x63\x03\xfd\xaf\xcd\x7b\x01\x6f\xdd\x29\xd9\x75\xe9\x62\x11\xa0\xdb\x82\xe1\xed\xc5\xa5\x61\x02\xef\x1c\x3e\x32\xea\x2b\x94\x05\xc8\x01\x04\x6b\x7c\xc5\x37\x02\xf7\xb4\xcd\xb1\x72\xba\xa5\x00\x9a\x50\xab\xf6\x0f\xfc\xca\x05\xfc\x28\xa0\xa3\x49\x6a\x6c\x07\xa4\xae\x4f\xda\xf7\x49\xad\x9d\x84\x8e\x6e\xba\x5c\xb5\x2b\x65\xbb\x9e\xe4\x81\x83\xb3\x56\x80\x56\x4f\xb7\x8d\xf1\x18\x5d\x24\x2b\xc7\x37\x2e\x3f\xcb\xd5\x92\x02\x04\xa5\xdb\x91\xe9\x77\x8e\x00\x86\xbd\x5d\x37\xda\xea\x5c\x0a\xc8\xaf\xcb\x93\xe6\x28\x5c\x0a\x68\x4d\xd5\x70\x77\xb5\x6c\x9e\x6d\xef\x4a\xa1\x26\x00\x2d\x38\xad\xef\x9f\xd9\x29\x04\xe8\xff\x94\xbb\x6b\xff\x33\x3a\xc0\x1e\x36\xa6\x88\x84\x45\x69\x40\x9d\x61\x59\x93\xb8\x0d\xd7\x01\xb7\x64\xf4\x34\x53\x8f\xdc\x20\x43\x79\x6e\x0b\x4d\x78\xd3\x79\xc0\x73\x7e\x82\x9a\x06\x0b\xe9\x80\xe1\x21\x1d\x0e\xfa\x14\xc1\x80\x53\xdb\x6d\x47\x38\xd2\x82\x00\x73\x64\xb2\x0b\xf3\xea\x96\x08\x24\x9a\x6f\xf2\x29\x0a\x01\x60\xf7\xfb\xa2\x1b\x71\xc7\xe4\x00\x4f\x1f\x47\xb9\x77\x7d\x34\x80\x1b\x6b\x43\xa2\x8f\x1d\x9e\x22\xd0\x65\xd6\x76\xc8\xbc\x06\x09\x4c\x2a\x39\x13\xca\x30\x93\x0f\xf8\xce\xca\xcd\x83\x7e\x05\xac\x2f\xb4\xb4\x56\xd1\x25\xac\x75\x78\x75\x14\xe6\x34\x5d\xa7\x69\x7c\x04\xd0\x8d\xea\x77\xc5\x19\xb1\x23\x64\xe5\xbf\x51\x3d\x59\x7a\xe8\xef\xca\x29\x40\xab\x27\xed\xf4\x86\xa3\xf9\xb0\x70\xf9\xbb\xdc\x15\xa1\x20\xc0\x4e\x91\xa9\xcd\xb4\xbf\x82\x00\x8f\x1e\x4b\xb2\x50\x95\x6d\x02\x14\xbb\xdc\x75\xe2\xd5\x60\x2c\x60\x71\xae\xf9\xc5\xdc\x7f\xa3\x59\x30\xf2\x7a\xdb\xc3\xf3\x64\xb8\x3d\xfa\xbe\x41\xcd\xd8\xe7\x5f\x23\xf3\x75\xe1\xad\x43\xf2\x74\x80\x39\xf7\x52\xa6\x74\xba\xf7\x01\xf6\x71\xa6\xdc\x76\xc8\x5a\x20\xf0\xeb\x42\xb1\xe8\xc6\xda\x5b\x24\xbc\xee\x71\xd1\xb5\x3d\xa8\x04\xf0\xb7\x23\xed\xf4\xd5\x90\x12\xc0\xee\x88\xf5\x57\x5b\xdc\x2b\x48\x68\x5b\xc0\xb7\xc9\x6f\xa5\xa4\xbe\xea\x76\x4d\xbc\xe8\x08\x48\x4d\x61\x37\x76\xc6\x68\x88\x40\xbb\x94\x2b\x5b\xfb\x4d\x7f\x12\xd8\x53\x23\xd0\xa5\xd6\x46\x0d\x28\xa6\xb7\x73\x6f\x65\x4a\x2f\x09\x1b\xfc\xc6\x3e\x8b\x7e\x9d\x20\x90\x26\x96\x44\x17\x69\x3b\x49\x06\x7e\xff\x5f\x1a\xca\x8f\x79\x00\x0d\xb3\x1f\x7f\x49\xb5\x48\x06\x7c\xf9\x62\xe1\xf6\xde\x24\x7e\xc0\xe1\x1f\xae\x31\x4d\x27\x69\x00\xfd\xf8\x96\xeb\x4e\x49\xc8\x01\x52\x6c\x10\x8b\x3c\x6d\x23\x04\x38\xa0\xb3\xf7\xd1\xd6\x3c\x45\xc0\xa0\x82\xbc\x47\x1f\x3e\x6f\x01\x94\xfa\xb0\x94\x30\x10\xce\x03\xb8\x37\xf1\xe9\xc1\x3e\xc3\x20\x32\xc4\xeb\xc7\xae\x67\x57\xa9\x25\x61\x89\x86\xcd\xa5\x66\xeb\x87\x80\x3d\xaf\x34\xeb\xaf\x95\x28\x00\xde\x38\xa6\xa6\xc6\x3c\x59\x49\xc2\x40\xb6\xcb\x83\x7b\x44\x03\x00\xb5\xe0\x34\x55\xe8\x9f\x6d\x80\xc2\x2d\x8b\x7c\x4b\x25\x14\x80\xc1\x6f\x96\x9e\x94\x85\xd9\x91\xf0\x8c\x5d\xea\xa3\xa2\x1d\xcc\x80\x13\x0f\x9e\x53\xcc\xff\x68\x02\xa4\x6f\x9e\x50\xfd\xbd\xfa\x45\xd4\x4d\x2f\xe7\x1d\xcc\x8d\x64\xa3\xff\x40\xf3\x1d\x3d\xed\xcf\x36\x09\xc0\x9a\x94\xf1\x0b\x72\x67\xfb\x48\x38\x70\xe0\x87\xbe\x91\x9a\x18\xe0\xbd\x7d\x43\xeb\xe3\x5f\x17\x02\x1e\x53\xff\xdc\xcb\x11\x1f\x49\x86\x5f\xa7\x14\x67\xbb\x55\x5c\x00\x55\x07\x2f\x79\x34\x07\x19\x02\x52\xc8\xc6\x82\x57\x7b\x3e\x19\x44\x77\xb2\xa9\xf6\x73\x36\x12\xe8\x1b\x99\xc1\xae\xca\xc6\x07\x98\xb7\x70\xb5\xab\x3e\x47\x1e\x70\xe6\x98\xbb\xb0\xdc\x48\x13\x60\x4c\xd5\xf9\x99\x7b\x97\xaa\x00\x2b\x82\x7c\x37\xeb\x0e\x37\x01\xea\x3c\x70\x7b\xf6\x49\x3e\x01\xf0\xb7\x5f\xbf\xe5\x2f\xbb\x13\x80\x0c\x2c\x27\xf3\xb4\xf8\x3c\x01\x59\x84\x22\xc2\x38\xff\x9e\x00\xcc\xa5\xbf\x7d\x96\xf2\x75\x3c\x60\xeb\x7e\xd2\x62\xeb\xf7\x62\x12\x6e\x92\x1f\x4f\xa7\x70\x60\x5d\xd9\x39\x1e\xf2\x35\xad\xd0\x05\x74\xe3\x6e\x3a\xf7\x7a\x84\x00\x3c\x98\x15\x68\xc7\x7d\x2c\x01\xf0\x8e\x77\xe7\xfa\xf6\x60\x71\x40\xa3\xd7\xb4\x17\xcb\xc5\xd5\x00\xdf\x37\x35\x5a\x92\x8e\x45\x93\xf0\x67\x3f\xdd\x73\xa1\xc5\x58\xc0\x0c\xde\x0b\x3c\x63\x7b\x32\x01\x47\x38\x9f\x27\x1f\xdb\x7a\x0b\x90\x21\x2c\x68\x9d\x82\xcf\x0d\x62\x0d\x87\x9b\x7c\x62\x34\x6a\xbd\x60\x0d\xbc\x8e\x12\xda\xfc\xbf\xb8\x00\xbb\xf3\x02\x1f\xb9\x07\xcf\x10\x58\x40\x5d\xda\x1d\x6a\x3f\x4b\x86\x3d\x73\x14\xd2\x66\x1b\xb3\x00\x87\x12\xde\xec\xb7\xc9\xce\x02\xec\x4c\x9e\xa6\x2d\x95\x20\x00\xdd\xfb\xae\x7f\x7f\xfb\xa0\x04\xd0\xe1\x5d\x9b\x02\x4d\x61\x10\xe0\x5c\xc8\xb7\x72\xbf\x7d\xf7\x00\x7f\x6d\xbd\x54\xde\xc8\x9f\xfa\x2f\x18\xf2\xd8\x0a\x52\x1f\x3f\x4c\xc2\xce\xd0\xdf\x96\xbf\xd7\xd9\xc2\x1a\xcc\xa2\x77\x25\x7e\xd8\x73\x12\x70\x44\x5a\x67\x58\xc7\xf7\x04\xa0\xd1\x7b\xf9\x81\xa3\x99\xfe\x80\x97\x97\x1e\xce\xd5\xfc\x15\x06\xa4\x59\xbc\xfa\x62\x17\xc1\x04\x98\xc4\xef\xdb\x31\xe2\x5a\x02\x98\x1f\x75\x38\x6c\xb3\xe1\x79\x40\x26\x22\xe9\x90\x37\x9d\x13\xe0\x09\x6e\xb1\x4f\xc2\xfe\x57\x00\x7f\xaf\xdb\x3a\x5a\xa4\x1b\x01\xe8\xf3\x61\xfe\x3b\x2d\x5f\x05\x20\xfe\xae\xee\x2f\xe3\xcd\x00\x8c\x53\xb5\xe4\xdd\x5f\x9e\x01\x98\xf7\x1c\x97\x8c\x69\xe3\x01\xeb\x29\x77\xb3\xdc\xd0\xbd\x09\x38\xf5\x6c\x7f\xc2\xac\x60\x15\xa0\xd8\xee\xad\xa7\x57\xd1\x7e\xe1\x93\x56\x28\xcb\x34\x81\x9d\x1b\x8b\xeb\xbe\x95\x66\x03\x0a\x73\xb2\x71\xe3\x3a\x13\x32\xe4\x6d\xf0\x29\x8b\xdc\xe4\x0d\x98\xa3\xa2\xcb\x30\xa0\x67\x0a\x98\x51\x63\xdd\xe7\x74\xee\x16\xe0\x83\xd8\xd0\xaf\xfb\xdb\xc4\x01\xa5\xfe\x34\xc4\x2f\x0e\xd4\x02\xc6\x0f\xb9\xa8\xae\xe2\x39\x55\x8f\x20\x45\x7f\x2d\x60\x0d\xcb\x01\x4c\x9a\x7e\x47\x42\xdb\x33\xf1\x4e\xab\xa3\x9c\x6d\x27\xb4\xc3\x44\xfd\x01\xcb\x32\x18\x3d\x85\x37\x9d\x27\xad\x95\x1d\x0f\x6b\x33\x06\x1e\xfa\x91\xad\x71\x7c\x20\x50\x60\xf2\x20\x94\x0c\xb3\x27\xed\x1b\x7e\x5d\xbb\x45\x42\xaf\xf2\xc6\x6d\xee\x13\x0b\x04\xce\x4a\x76\x9f\xb9\x41\xdb\x03\xa8\xdc\xdd\x7d\x38\x6c\x05\x56\x72\x59\x86\xc9\x2a\x15\x80\x46\xc5\xfe\xde\x5b\x2d\x2a\x00\xe9\x35\xaa\xbd\xbf\xb3\xee\x07\x5c\x1e\xeb\xb5\xab\x78\xe5\x45\x86\xf0\xc5\x0f\xb2\xca\xc1\xcc\x80\x3d\xdd\xe7\xed\x92\xa8\x37\x03\xd2\x8a\x5d\xde\xb2\x63\x9d\x37\x09\xcb\x3f\x32\x99\xcc\x0c\x04\x91\x30\x01\x74\x6e\x62\x63\x1c\xac\x61\x72\xb1\x6a\x4a\xc9\x36\x0e\xd0\x62\xa0\xf9\xf8\xfd\x81\x38\xc0\x5d\x1f\x28\xde\x55\x64\x3d\x04\x4c\xbc\xaf\x3b\x77\xb7\xe6\x3c\x09\xe7\x35\xaa\xb6\x8f\x0b\xf4\xd7\xa1\xfb\x47\xab\xfa\xed\x22\x36\xf0\x0f\xf8\x74\x30\xdf\x16\xd3\x99\x22\xb0\xdd\x7e\x50\xa6\x9a\xa6\x0e\x70\x47\x91\xf4\x8e\x39\x41\x0e\x40\xa6\x24\xb9\xde\xce\xf3\x29\x80\x3a\xb3\xcf\xde\x58\x8b\x98\x01\x1a\x55\x5c\xa9\xe8\xf9\xe2\x08\xa8\x75\xed\x41\x75\x3a\x7d\x2d\xa0\xeb\x34\x4f\x5f\xf5\x81\x4a\xc0\xf7\xf4\x71\x92\x9c\x6e\x25\x24\x4c\xf8\x7b\xbf\x7c\xf9\x47\x05\x20\x83\x76\xb2\xee\xea\x68\xf6\xdc\xc6\xda\xe0\x5d\xfe\x80\x03\x9b\x02\xdf\x9e\x72\xbf\x0a\xb8\xa1\x2e\x2c\x4c\xc5\xdf\x0f\xb0\x26\xe6\xea\x97\xc5\x5d\x7e\x64\x6b\x64\x0b\xdf\xda\x3e\x65\xb0\x02\x14\xae\xb4\x6f\xd4\x58\xd9\x11\x17\x99\xf3\x33\xd5\x06\x65\x03\x3e\xd9\xa6\x29\xcf\xe1\xf7\x8c\x40\x1b\x67\xdd\x07\x86\x17\x2a\x00\x29\xb3\xe9\x85\x29\xb7\x57\x02\x7e\xbb\xdf\x78\xa3\x4e\x8f\x05\xd0\x8f\x3d\x45\x36\xbb\xd6\x80\x0c\x72\xdb\x9c\xae\x36\x6c\x63\x05\xf4\x12\xe4\x50\xa4\xd8\xef\x03\x28\x98\x25\x7f\xe8\x8f\xdf\x83\x7f\x81\x82\xff\xf9\x39\x49\x0d\xdb\x7f\x60\x81\x97\x75\xb9\x21\xc3\x18\x90\x62\xfc\xae\x62\x56\x5c\x29\xe0\xc5\x9b\xdb\xe7\xe3\x64\x32\x48\x78\x3e\x76\x37\x73\x2d\xf3\x33\xc0\xc5\xc1\xcf\xed\x33\xe7\x4b\x00\xcb\x0e\xf1\x51\x1f\x27\x24\xc9\xa0\x67\x41\x1f\xcb\x79\x5b\x88\x0c\x26\x81\x0b\x3b\x45\x38\x87\xea\x50\xf7\x6f\xcc\x85\x67\x52\x0f\x49\xb8\xbc\xcf\x72\xd9\x27\x26\x19\xf0\x76\xd4\xc5\x8e\x16\xe1\x72\xc0\x41\x27\x5f\x7f\x2b\x6d\x3f\xc0\xa7\xd4\x4f\x6c\x69\xd5\x7f\x13\xf8\x33\xf2\x6c\x71\xdd\x4e\x4e\xc0\x9b\x26\x31\x44\xff\x15\x41\xc0\xeb\xd2\x4a\xa4\xe4\x50\x07\xc0\xa3\x8f\x0c\x97\x66\x66\x8b\x01\x05\xef\x65\xf7\x16\x1e\xac\x03\x5c\x10\x2b\x51\x8e\xba\x10\x03\x68\xd7\xba\xeb\xdc\xb8\xfa\x53\x12\x3e\x5a\xe7\x7f\xef\x47\x7d\x09\xe0\x61\x03\x01\xee\xe4\x95\xeb\x6b\x6f\xef\x87\xd9\x9a\x82\x95\x5b\xf7\x59\x89\x1d\x99\x53\x0d\x80\x8b\x3f\x73\x8f\x7d\x64\x2f\x02\xdc\xe3\xfb\xd9\xa5\x37\xb4\x09\x50\x22\xbd\xd1\x97\xda\xa8\x9c\x6c\xb1\xe0\x5e\xfb\x17\x42\xaf\xea\x00\x4f\xcb\x65\x25\x33\xe4\xd5\x02\xa6\x16\x5b\x28\xb7\xcd\xd7\x01\x7e\xe8\x88\x8e\x69\x4a\x4d\x03\x3c\x73\x7c\x9a\x56\xad\xb2\x0e\x30\x80\xde\xf7\xd8\xd7\x86\x06\xc0\x4a\xbd\x6d\x7d\xdd\x0c\x4f\x00\xd5\xef\xc9\x5f\x2c\x28\xaf\x02\x7c\xbc\xd1\x53\x78\xd7\xca\x03\x0e\x2b\x2d\x72\x4a\xf5\xf3\x01\x32\xca\xb5\x3e\x37\x74\x9b\x26\xd6\x10\xba\x44\x7f\xe4\xb7\xc4\x24\x81\x67\xe5\xdc\xbc\x49\xee\x4a\x80\x46\xf5\x4c\xba\x94\x17\x53\x01\xab\x5e\xcc\x71\x2b\x91\x1e\x00\xaa\x36\x50\x1c\x78\xee\x25\x01\xa8\x2b\x75\xc3\xb1\x84\x5d\x1e\x30\xb7\xaa\x80\x6d\xe3\x9e\xdf\x04\x5e\xe4\x97\xb7\xd2\x8d\x68\x01\x14\x3f\xba\xa0\x6b\x69\x52\x07\xd8\x31\x36\x90\xa9\x3c\x5a\x4f\xc2\x9c\x37\x86\x36\xe5\x1e\xe9\x80\x5b\x9c\xdf\x59\xdd\xb5\x8b\x01\xbc\xf0\xfd\x57\x2a\xec\xf2\x00\x7c\xc6\x2a\x7a\x87\xe9\xfe\x15\x12\x32\xd3\x79\x4b\x06\x0b\x84\x00\xde\xe9\x09\x32\xdf\x5c\x79\x0b\xf0\xe4\xad\x85\x23\x56\xdc\x57\x01\x8f\x3a\x44\x8c\x5d\x7d\xc3\x04\x28\xda\x3b\x54\x45\x64\xe9\x00\x2e\x1f\xfe\x26\xf9\x27\xfd\x00\x60\xde\xbd\x7a\xab\xc8\xa4\x38\xc0\x99\xe6\xdd\x5f\xe2\x06\xaa\xc8\xc0\x73\xf8\x2b\xa5\x03\x91\x01\x68\x2f\x3e\xbc\x91\xc2\xac\x8d\xb4\x56\xdc\x73\xa4\x32\x37\x32\xe7\x01\xda\x96\x59\x9f\xf9\xea\x92\x07\xb8\x39\xcf\xef\xee\xfb\x53\x0d\x04\x9a\xf7\xe8\x9d\x8d\xcb\xd0\x85\xff\x05\xb6\x07\xde\x54\xe9\xbb\x79\x00\xc7\x78\x26\x5a\x9e\x8c\xa9\x02\x1a\xfa\x0d\x45\x4a\x6b\x8f\x11\x38\xb0\xb1\xfd\xc9\x6f\xb5\x83\xf0\x0f\xd8\xcd\xdc\x2d\x34\x53\xdd\x0d\x18\x2f\xa8\x72\x5d\x6d\x68\x9e\x58\x43\xed\xed\x8c\xe7\xe7\x03\xf6\xc1\x3f\xe0\x99\x34\xd8\x3a\x6d\xc2\x08\x78\xa4\xce\x30\xf8\xea\xbd\x1a\x32\x74\x87\x05\x66\xdc\x50\xe8\x22\x30\x3a\xbd\xef\x8b\x48\x85\x04\xfc\x2f\x6c\xe1\x63\x96\x35\x1c\x62\x06\xf4\x9b\x6b\x72\x56\xe5\xcf\x03\x74\x7f\xfa\x72\xab\xf6\x86\x3c\xc0\x57\xdb\x59\x24\x23\x27\x52\x01\xff\x3c\xdd\x37\x5b\xde\x27\x03\xb8\xe9\xd7\xc7\x2f\x37\xa5\x99\xfe\x27\xb4\x37\x1e\x35\xf7\x2f\xfa\x4e\xa0\xeb\x43\x5e\x13\x4f\xfe\xd7\x75\x28\x77\x38\x20\xad\x7b\x4a\x05\xfe\x17\xfe\xf3\x32\xfe\xf3\x5c\x46\x67\xe6\x0c\x68\x56\x1e\xf0\xbf\xf1\x9f\xa7\x28\x4b\xa9\x8b\x4b\x3d\xe1\x47\x42\x9a\x47\x52\x4c\x95\x81\x8f\x60\x0d\x73\xd5\xd7\x84\xd2\x26\x4f\x00\x0a\xfb\x35\x48\xab\x58\xf7\xd6\x21\xe7\x9d\x2c\xb7\xd6\x30\x35\x58\xc3\x48\xc2\x95\xac\x9c\xef\x4d\x04\xfa\xe0\x69\xb7\xe3\xef\x55\x60\x0d\xad\x21\xf3\x5e\x07\xe3\xdc\xc8\xd0\x1e\x62\x26\x71\x60\xfd\x51\xc0\x22\x8b\x2d\xd2\xec\x62\xfb\x01\xf3\x7e\x78\x68\x66\x6e\x99\x26\x70\x7c\xc4\x5f\x3b\xe1\xc2\x14\x81\x83\xb3\xc3\x21\x1e\xd2\x7b\x01\xbf\x9f\x0c\x29\x09\xad\x78\x4e\x20\xbd\x01\xb4\x98\x0d\x26\x03\xbe\x1e\x74\x9a\x59\xc5\x93\x92\x78\x5d\x87\x97\x82\x64\xa8\x99\x69\x79\xab\xdb\x7e\x13\xb0\xa8\xf8\xb3\x9a\x57\x49\x30\xa0\x4a\x3e\x3b\x2b\xe5\xf8\x79\x12\xbe\x7d\xab\x9e\xc3\x9d\x75\x16\x70\x7d\xe8\xd3\xee\x80\xb7\x0d\x04\x1e\x38\xd5\x53\xf0\xfa\xdd\x6e\xf8\x07\x7e\x18\x4f\x8f\x1e\x52\xe7\x07\x14\xfb\xdd\x68\xda\x56\xa8\x04\x48\x23\x9c\x57\xed\xcf\x36\x45\x60\xa4\xcc\xdc\x95\x4a\xc1\x06\x40\x4b\x92\xc0\xa3\x55\xf0\x8e\xdf\xdd\xfd\x93\xef\x0a\x19\x1c\xae\x2d\xac\x3f\xda\x64\x09\xc8\x75\x22\x9f\xc6\x53\xd3\x16\x30\xb5\x76\xeb\x91\xd0\x95\xe3\xb7\x56\xe5\x4d\x8b\x5e\xb1\x2a\x40\x3a\xc7\xc3\x46\x94\xcf\xf2\x08\x2c\x1d\xcf\xd6\x7b\xd3\x66\x02\xff\x40\xd4\x61\xab\x9c\xa5\xf2\x37\x04\xba\xe7\x56\x76\x5c\x5a\x2a\x03\xac\xdb\x2a\x1b\xbc\x73\x47\x1a\x60\xa5\xbc\x94\xec\x62\x59\x2a\xa0\xff\x98\x4c\xd7\x05\x8a\x34\xc0\x1f\x87\xc5\x32\x7f\x7b\xf9\x92\xa1\x30\xec\x16\xcd\xbd\x6b\xb6\x80\x31\x82\x81\x06\x9b\xf9\xcf\x01\xbe\x8d\x95\x64\x4b\x28\xf0\x21\xad\xad\x69\xeb\x18\x3d\x78\x5e\xe5\x1c\x60\x7e\xc1\x9f\x7b\x13\xd4\x5e\x64\xe5\xbf\x31\x24\x2d\xa1\xa5\xa8\x70\x9e\x0c\x7d\x82\x25\x6d\x62\x73\x26\x2b\xfb\xa0\x54\x7a\x2e\xdb\x7d\xff\xc2\xfd\x34\x8e\xd0\x8c\x69\x7a\xc0\xd6\xe4\xa0\xd3\x1b\x56\xde\x72\x93\xa7\xf6\x53\x97\xb7\x07\x60\x0d\x3d\x4f\xad\xf1\xef\xb7\x56\x02\x37\xa7\xa4\x3f\x1c\x9d\xad\x02\xec\xdf\xde\xf1\x7a\x15\xd3\xcf\xb8\xf6\xa6\xd5\x37\x91\x50\xa0\xd7\x61\x56\x19\xab\x00\xf9\x8f\x6e\x2c\xe3\x9e\xf6\x03\xbc\x6c\xc3\xcb\xf1\x23\xe4\x09\x09\x7f\x2d\x7c\xe8\x9d\x5b\xf0\x03\xa4\x4d\x18\x9e\xf4\x2b\xb5\x26\xad\xad\x79\x56\x30\x75\xff\xfd\xbe\x2b\x80\x5f\x63\x4f\x7d\x36\xfd\xb2\x02\x4f\xa2\x28\xde\x58\x17\x70\x32\xee\x45\xdf\x35\xd3\x7d\x64\xf8\xef\x97\x6a\x57\x9e\xae\xb7\x69\xdc\x04\xfe\x81\x96\xe7\x3b\x2f\xad\xfe\xeb\x6c\x54\x2a\x73\x7e\xb4\xec\x0f\xd8\xdc\x73\x63\x32\x47\x6d\x1f\xa0\xd6\xc0\x5e\xc6\x34\xc8\x20\xad\x3d\x4e\x0f\xb1\xc0\x9f\x74\xd8\x18\xd6\xd0\x7e\xc4\x58\xc7\xe9\xf4\x14\x81\xe9\x86\xcd\xa9\xd7\xef\x94\x00\xce\xf0\x6e\xb2\x0e\x94\xea\x21\x90\x58\x2f\xac\x99\xc3\xd2\x00\x6b\x28\x3a\x7f\xc3\x5c\xd5\xf1\x32\x09\x5f\x57\x31\x48\xad\x16\xef\xeb\xad\xb4\x99\x5b\x82\x00\x8f\x1b\x57\x26\x96\xcd\xb8\x93\x95\xff\x86\xa1\x64\x58\x2d\x47\xfc\x01\x40\xfb\xef\x92\x8c\x95\x47\xf7\x01\x4e\xd1\x5b\xa9\xad\xbe\x30\x9b\xcd\x1d\xee\xfa\x2f\x4c\x60\x0d\x82\xe7\x0b\xa8\xfe\xac\xbc\xaf\x5c\x3f\xf3\x65\xc5\x87\x17\x01\x2b\x02\xd2\x3b\xac\x22\xfc\x01\x79\x74\x4e\x32\xaa\x37\xe5\x11\xd8\xd0\x67\xd8\x4d\x5b\x7f\x00\xfe\x01\x67\x23\x6e\xd5\x6b\x02\xdd\x04\x66\xb7\x72\x9d\x9d\x3b\x76\x14\x70\xb4\x51\xd8\x5b\x57\xea\x18\xe0\x1e\xf7\xe2\x47\x2f\xcf\xb1\x02\xce\x7a\xd9\x27\x59\x7c\xda\x03\xc8\x68\xc5\x9e\x61\x48\x2b\x4d\x86\xe5\x59\x13\xae\xe7\xba\xeb\x00\x7d\xc7\x0a\xd8\x52\x4b\x4b\x49\x78\x39\xfc\xe3\x66\xea\x8e\xcd\x80\x4a\xd7\xa2\x39\x9f\xb5\x78\x03\xbe\x1a\x60\xbb\x28\xb3\x51\x91\x0c\x23\x6e\x12\xb7\xf4\x4c\x26\xea\xd0\xdb\xdf\x27\x67\x90\xe1\x0e\xe0\xd1\x27\x9b\xb8\xd9\x37\x1a\x02\x6a\x9d\x0d\x1c\x38\xb9\xdb\x92\x84\x83\x5b\x46\x7e\xe8\xec\xa6\x00\xbc\x64\x5d\xc6\x67\xed\xbc\x1d\xf0\xed\xe5\x1c\x7b\x1f\x65\x23\x40\x53\xf1\xdd\xb2\x5d\x3b\xe4\x00\xfb\x66\xc4\x79\x3c\xda\x14\x00\xd5\xdb\xb6\x57\x79\x99\xca\x03\x72\x0f\x04\xd4\x1e\x4a\xdb\x08\x48\xa7\xdb\xc2\x1a\x14\xb4\x44\xa0\x51\x8b\x39\x95\xaa\xe3\x03\xc0\xb7\xd4\x83\x41\xd3\x5d\x57\x00\xf3\x8a\x62\x77\x7f\x93\xa9\x02\x74\xfb\x7d\x02\x4a\x0b\x47\x09\x74\x7e\x24\x78\xc6\xa9\x58\x02\xd6\x70\xe4\x11\xb3\xe3\xf5\x0b\xf3\x04\x76\x4c\x72\x3c\xd4\x88\x12\x05\x74\x16\x60\xd5\x16\x1a\x78\x45\xa0\x79\x3b\x77\x94\xe7\x88\x00\xa0\xcc\xbd\xf6\x4f\xaf\xb7\x3d\x27\xad\x15\x25\xdd\xcf\x72\xc6\x33\x8a\x80\x97\xff\xf0\x14\x69\x47\xa4\x03\xe6\x12\x4c\xf2\x94\xa2\xe5\x80\xe7\x99\x85\x6e\xac\xcb\xeb\x22\xf0\x5d\x88\xe9\xc2\xba\x5e\x45\x58\xc3\xeb\xe5\x6a\x2e\xad\xe9\x25\x02\xeb\x3a\x3e\x06\xfa\xb9\xda\x03\x9e\x3a\xe9\xf1\x32\x4e\x92\x05\x70\x67\x28\x29\xf7\xdd\xab\x59\x02\x75\xd4\xe7\x46\x1e\x6e\x50\x04\xac\xd5\x1f\x7e\xec\xa0\xa2\x0a\x38\xf0\xa4\x23\xa0\x23\xc9\x8d\x0c\x66\x97\x16\xca\xe7\xf3\x7d\x01\x1b\x2c\x5f\x47\x9f\xe5\x28\x01\x0c\x50\x31\x11\xce\xef\x65\x01\x7c\x1a\x52\xed\x9b\xf5\x7e\x1f\x60\x11\xdb\xdb\xab\x37\x1e\x48\x03\xb2\x56\xc8\xbd\x3f\xf2\xf5\x0f\x81\xa1\x82\x19\xe1\x53\xf2\xfb\x60\x0d\x79\xb7\xc1\xb1\xcf\x8e\x0a\xf0\x53\xca\x47\xc8\xe7\x17\x03\x14\x91\x8c\xcb\xe5\x38\xa2\x02\xf8\xe1\xde\xdb\x7d\xf5\xf2\x48\x60\x77\x59\x88\xb7\x71\x13\x1f\x60\xf5\x37\xc7\xa3\x44\x82\x26\x60\xe5\xec\xbb\x88\xb9\xa2\x68\xc0\xc6\xa8\x80\x37\xdf\xf7\x9b\x92\x81\x67\x77\xc0\x42\xa0\xb4\x20\xa0\x55\x69\x32\x5d\xde\xf7\x1a\xc0\x29\xc3\xc4\x0c\x09\x77\x41\x40\x21\x23\x6b\x47\xa7\x54\x77\x32\x74\x69\x7b\x6c\x9e\xad\x33\x01\x44\xf1\xcd\x97\x37\x75\x6a\x02\x9e\xae\x93\x49\x60\x72\x16\x06\x04\x31\xdf\xbd\xc9\xa1\xb9\x80\xec\x13\x5d\xa1\x49\x2b\x10\xfe\xdc\x14\x67\xb3\x23\x0e\x50\xdf\xd7\x49\x4d\xbc\x5d\x0a\x30\xf0\x90\xf4\x8b\x30\xa0\x07\xec\x8e\x98\x31\x5c\xae\xb0\x25\xc3\xe9\x30\x89\x47\x3b\x8b\xb7\x00\x5a\x0e\xa6\x2d\x74\xa9\xe9\x00\x7e\xca\x8e\xbc\x3b\xba\xf0\x95\xc0\x47\x7d\x55\xd2\x6f\xa9\xdb\x08\xcc\xf9\xc1\xa5\x37\x2e\x28\x0b\xb8\x91\x2a\x2f\xe8\xbd\xaf\x0c\xe0\xec\xcf\xef\xbf\x8a\xaf\x77\x11\x78\xcc\xdc\x65\xc6\x7f\x70\x1d\x60\xe2\x46\x0a\x87\x6e\xce\x86\x7f\xa1\xec\xc6\x1c\xe9\x01\xdf\x7b\x02\x1d\x3d\x2f\x5b\x9f\x71\xd7\x07\x0c\xad\xd4\xbf\xc7\x69\x38\x4d\xe0\xf6\x99\xb3\x55\x9b\x4a\x29\xe0\x1f\x08\xe3\xdd\xe9\x2c\xb0\x43\xf5\x5f\x78\xfb\x84\xbd\xe8\x59\xeb\x7e\x32\x6c\xe1\xe7\xda\x78\x89\x60\x06\x14\x7c\x72\x5d\xa8\xc0\x57\x16\xf0\x45\x7b\x68\x38\x6b\xac\x30\x60\xee\x49\xe6\x5d\x7d\x7d\x16\x80\x04\xf3\xfd\x37\x9f\x12\x24\xc9\x40\xc3\x10\x39\xbd\x53\xbc\x93\x40\x5d\x41\xd2\x76\xd6\xe7\x71\x80\x7d\xaf\x5e\xec\xfd\x23\xc1\x04\x98\xf5\xc0\xf3\x7e\xfe\x5f\x05\x40\xda\x8e\xb4\x94\x2b\xa3\x48\xa0\x4e\xcc\xe7\xbd\xb3\xbb\x37\x00\x5a\x6c\x6c\xd3\x0f\x0f\xa1\x23\xc3\x07\x69\xe5\x74\xd9\xe3\xcb\x04\x3e\x1d\xe6\x72\x2c\xd1\x3a\x01\x98\x44\x2f\x3e\x7f\xf9\xc8\x16\x40\x16\x97\xd1\x9f\x9e\xf1\x8a\x80\xe1\xe2\xf4\xc5\x03\x4e\x0c\x80\x1f\x15\xab\x4f\xad\x17\x5c\x0f\x08\x2a\x9e\x7d\x11\x6d\x0b\x04\x9e\x75\x0e\xa0\x18\x3b\xa5\x0d\x98\xd5\x5b\x73\x77\x5e\x84\x05\x90\x53\xe2\x6f\x33\x2b\x6c\x00\xb4\xbc\x95\x26\x7d\xd6\x21\x95\x0c\xb0\x9b\x31\xa2\xf9\x15\x3b\x19\x8a\x28\xe2\x5e\xba\x71\xf8\x11\x68\xa6\xe5\xff\xc9\x4b\x83\x01\x70\x3e\x3c\x07\xe5\xdd\x85\x00\xfb\xc2\xb7\xf9\xf6\x0b\x0a\x00\x1a\xde\xac\xfe\xb4\x24\xd8\x4b\x60\xe1\x12\xdd\xd1\x4d\x7f\x84\x01\xd9\x8c\x84\x7e\x96\x81\x38\x60\x54\x29\x71\x9d\xb1\xf6\x26\x60\xbe\x9e\xdd\x55\x27\x9d\x5a\x40\x9a\x3a\x7b\x4b\x01\x1f\x55\xc0\xbc\xfd\x67\x7e\xb5\x5a\xec\x02\xd4\x3f\x17\xcd\x44\x61\x9c\x0e\x78\x8e\x03\xdf\x45\x39\xb3\x02\x9e\x1f\x7d\x35\xec\x35\xba\x44\x60\x86\x8d\x5a\xec\xf2\x47\x01\x40\x05\xef\x0a\xd5\xd7\x11\x3c\x80\x2c\xb5\x22\x75\x0c\x4f\xd9\x00\xd5\x62\xaf\x32\xce\x30\x24\x02\x3e\x2e\xda\x17\xf1\x72\xf9\x0c\xe0\x44\x85\x59\xff\xde\x8b\xc3\xc4\x1a\xe2\x9f\xda\x73\x7e\xfc\xf2\x82\xc0\x71\x2b\x79\x79\xc2\x58\x02\xf0\xd0\xa1\x93\xc7\x9f\x9b\xf9\x00\x46\x98\x96\x06\x18\x30\x88\x00\xa6\xab\xb2\xb5\x3c\x5d\xc7\x08\xa8\xba\x5c\xf9\x77\x26\x99\x15\xd0\x40\xe7\xbd\x00\xda\x57\xd4\x61\xa9\xc6\x8d\x84\xd2\xfd\x7e\xb0\x86\xbc\x1d\x6a\x1b\x76\x1f\x75\x22\x43\xd4\x3d\xd6\x92\x01\xdd\xd7\xc4\x1a\x42\x22\xd5\xf7\x85\x44\xf0\xae\xec\x6d\x1e\x46\x84\xcd\x08\x02\x5e\x7a\x3e\xbd\x10\x16\xbf\x19\xb0\x4e\x7a\x68\xb2\x90\xf9\x2f\xb1\x86\x4b\x22\xa2\xb5\x7d\x35\xa5\x04\x96\x2e\xef\xa2\xc9\xdf\x53\x07\xc8\xe5\xc3\xba\xd0\xfe\xb0\x16\xf0\x4d\x8d\xf2\xe2\x6f\x1e\x2b\x40\x83\x83\x89\xa9\x97\x5d\xff\x10\x18\xcd\x40\xe7\x67\xf4\x58\x05\xf0\x4a\xae\x4a\xd7\xbd\xfa\x24\x40\x3a\x51\x7f\x66\x11\xef\xc7\x80\x07\x46\x5f\xc9\xed\xbe\x54\x42\x60\x1f\x87\x4d\xc9\x9e\xe6\x1f\x64\xe8\xa8\xfc\x21\x96\xe8\x38\x4c\xe0\x7c\xeb\x51\xf7\x37\xa4\x08\x40\xb3\xf1\x50\x4f\x7c\x42\x00\xbe\xbe\x97\xdf\x75\x82\x67\x27\xe0\x54\xc7\xa3\x94\x05\x61\x61\xc0\x54\x56\xa9\x2d\x5f\x79\x16\x08\xf4\x7e\x45\xfd\xe3\x8a\x48\x09\x09\x13\x8b\x65\xcf\x54\x19\x22\x81\xad\xda\x0c\x92\x72\xaa\x06\xb0\x86\x8b\x5b\x6b\x83\x95\x26\xb6\x03\xf2\x76\x3f\x54\x99\xdc\xdb\x5e\x87\xec\x36\x54\xfc\xcd\xdc\x59\xb0\x86\xb1\xc0\xbb\xa7\x15\x35\xa8\x01\xc5\x9d\xbc\x39\xb4\xfa\x26\x09\x64\x10\x9b\x88\xf9\x2e\x63\x00\x38\xf2\x2d\x4a\x6f\x40\x5e\x15\xf0\xb6\xb0\x67\x97\x66\x09\x17\xe0\x5d\x3d\x31\x2e\xaf\xec\x4b\x24\x94\x38\x63\xd6\xf6\x32\x65\x89\xc0\xc0\x5a\x01\xa2\x3e\x91\x0f\xfe\x81\xb4\xfb\x16\x7f\xb9\x29\x44\xfe\x85\xd4\x5b\x1d\xcb\x6e\x17\xeb\x09\x94\xdd\x07\xbb\x8a\x9b\x58\x00\x1d\x5f\x7c\x2b\x91\x54\xb9\x06\x58\x1f\x9d\x27\xd2\x9c\xa3\x0c\x58\xc3\x7e\x93\xd5\xf6\xb9\x28\xe0\xed\xbb\x71\x15\xad\x5a\x5b\x01\x35\xae\xb1\xb4\x3e\xb0\x34\x07\xbc\xbe\xde\xef\x66\x82\x92\x01\xe0\xfb\xbe\x42\xce\xe9\x26\x11\xc0\xa9\x2d\x15\x93\xdf\xe7\x3a\x09\xfc\xf1\x53\xfd\x63\xfd\xcd\x62\x40\x26\x67\x86\x17\x67\x25\xcb\x01\x3d\x65\x76\x27\xf2\x9c\x10\x00\xfc\x38\xb4\x9c\xfb\x5c\x6d\x3b\xe0\x86\x01\x77\xf7\x19\x0d\x55\xc0\x84\xcf\x3d\x02\x96\x77\x4f\x01\xd6\x31\xb4\xae\x7f\xdd\x92\x05\xb8\x53\xf2\xc3\x45\xf9\x18\xbb\x7f\x21\xd3\xa3\x3b\xbc\xc8\x5b\x16\x30\x58\x26\x3a\xbc\x6f\x8c\x1f\xf0\xc0\x73\x0d\x05\x06\x4b\x25\x40\x13\x81\x6a\x31\x62\xec\x0b\x81\xb9\x19\x97\x76\x3f\xdc\xe9\x4d\xc2\xc4\x9b\xe1\x5f\x5d\x75\x0a\x00\xa5\xe3\x1f\xe5\x1e\xad\xac\x80\xb5\x22\xdc\x3b\x7c\x6a\xde\x4b\x0b\x30\x3a\x93\xeb\x61\xf6\x15\x0f\xc0\x9d\xf6\xbf\x9e\x3e\xe4\x18\x26\xd6\x60\x9f\xec\xcb\xb2\x49\x44\x19\xd6\xb0\x38\x59\x2c\xf2\x9d\xa4\x40\x86\x13\x8c\x9a\xc5\x21\x51\x19\x75\xc8\x2c\x78\x5b\x5c\xf6\xf2\xe3\x3a\xbc\xee\x92\xf0\xa6\xe2\xe0\x49\xf8\x07\x5a\xe8\x43\x39\x0c\x15\x74\xc9\xd0\x98\xed\xdd\x28\x6c\xa2\x09\x38\x28\xaf\x51\xcc\x7a\x69\x8a\x40\xad\x08\x41\xc7\x43\x11\x4b\x04\x4e\x3b\xb8\x17\x6d\xea\xb0\x00\x64\x2f\x7a\xec\xb8\x5e\x9a\x04\x18\x52\xc4\xfd\xee\x6f\x72\x27\x60\x55\xd4\xf8\xa9\xa2\xc4\x76\xc0\x28\x95\xe1\xac\x3c\x55\x7f\xc0\x98\xf6\x16\x01\x53\x1d\x12\x20\xcb\x25\xc3\x76\x7a\xc6\xfb\x80\x77\xf4\x2d\x52\xe8\xdf\x07\x01\xbe\x08\xe4\xfb\x7a\xef\x3d\x3d\x60\xb8\x12\x6f\xfe\x92\xef\x34\x81\xae\xdc\x99\x59\x75\x3d\x33\x04\xea\x40\xff\x98\xae\xa0\x38\xac\xe1\x95\xfe\x44\x64\xd2\xa1\x29\x62\x0d\x85\x3b\x6e\xf8\x1c\xb4\xf6\x02\xac\xbd\x78\x2b\x68\xf0\x7e\x0a\xa0\x75\xf8\xdf\xce\x22\xcb\x21\x40\x22\xd4\x4f\xb6\x70\x05\x1d\x74\x8f\x04\x1e\xad\x20\xf0\xd7\xb3\xdd\xf9\x3f\x1f\x03\xda\x89\xf2\xb5\xc7\x27\x1e\x06\x2c\x57\xfe\x3a\x71\xb4\x2f\x96\x84\x09\xf1\xd3\x77\x57\x4b\x7d\x66\xe3\xe3\xc0\x43\x34\x80\x43\xea\xaa\x3e\x45\xad\x1c\x80\x11\xf2\xd7\x23\x75\xbd\x84\x01\xe5\x28\xd6\x89\x72\x51\x7c\x20\xf0\x9a\x61\x01\xdb\x39\x1e\x51\x58\x43\xc6\x1e\xcd\x92\x1b\xc2\x42\x64\x48\x7d\x21\x12\x51\xa1\x47\x07\x78\x53\xab\xb9\x97\xed\x98\x36\xa0\x45\x7f\x84\x06\x9d\xd7\x0b\xc0\xcd\xf6\xe7\xf8\xf7\x4e\xe6\x00\x96\xca\xea\x37\x6b\x1e\x8c\x07\x4c\x58\x14\x2c\xca\x0b\x4f\x05\x54\x19\xbc\x9f\xce\xda\x6b\x41\x86\x9f\x8e\x3b\x2f\x71\x79\xff\x22\xd6\xf0\x56\xef\xab\x87\xb7\xec\x22\x81\x75\x3d\xeb\xdf\x25\x38\x71\xc2\x1a\xb6\x35\x8c\x52\xef\x0e\x38\x0c\x78\x5f\x70\x7f\x4c\xc5\x36\x7b\xc0\x13\x63\x21\x14\x3f\x27\xcc\xc8\x20\xdc\xf8\x64\xbc\x8c\xf2\x21\x81\x7b\xb7\x16\x6d\xe1\x9d\xba\x03\x48\xaa\xa0\xfb\xcd\x5d\xa6\x05\x98\xfa\x67\xd9\x8d\x23\x27\x04\xb0\xba\xd4\x9f\xc7\x18\xc3\x48\x6b\x85\xb3\x7a\xf6\x74\x0e\xd5\x51\xc0\x1c\x93\x6d\x73\x31\xba\xf2\x80\x61\x15\x52\xaf\x0e\xdb\xba\x00\x2e\x85\x93\x86\x53\xe2\x2a\x49\x28\x6d\xef\xb2\xef\xce\x0a\x70\x3a\xce\x73\x15\xda\xd6\xed\x17\x7e\x08\xd6\x00\xa6\xed\xde\xb0\xf9\xfa\x13\x47\xc0\x5e\x71\x1a\x4d\x15\x49\x89\x7f\xa1\xed\x95\x99\x97\xc2\xb9\x5d\xff\xc2\xf6\x09\xca\xb8\xd5\xbf\x5f\x3b\xce\xe8\x37\xe1\x6c\x56\x0c\xc8\xd9\xb0\x69\x4a\xd5\xaa\x12\xf0\x6e\x44\xfb\x0c\x8b\x42\x00\xa0\x5b\x5b\xf2\xdb\x9d\x5c\x9d\x04\xfa\xfa\x4a\xd7\xa8\x07\xc8\xc1\x1a\x58\x32\x9a\x19\x53\x42\xbb\x08\xdc\x78\x50\x38\x76\xc7\x0e\x5a\xc0\x26\x51\xb7\xe7\x4b\x01\x0b\x04\x0a\xfa\xce\x4d\x2e\x26\x8e\x93\xe1\x82\x12\x13\xef\x50\x1c\x0b\xe0\xcb\x3e\x93\x09\x6f\x17\x26\xc0\xea\x24\xaa\x99\xdf\xf7\x0e\x02\x9e\xf2\xbf\x93\xe9\xb2\xa0\x4f\x56\xde\xf8\xf8\x2e\x98\x57\x73\x02\xee\xbc\xd6\x26\x2d\xb2\xa8\x45\x56\xa2\x04\x7b\xf4\x7a\x2e\x2c\x12\x38\xb8\x89\xda\x8c\x5b\x3d\x1d\xd0\xde\xd8\xf9\xf0\xb2\xbd\x16\xe0\x3e\x5f\x61\x4e\x4b\x1a\x76\x32\x98\x29\xff\x79\x5c\x5c\xa1\x04\x78\x5f\x8e\xf6\xdc\x27\x6d\x5d\xc0\xf4\x70\x53\x9a\x6b\x03\xe6\x80\x19\x6f\x3c\x1a\xfb\xf6\x66\x02\xbe\x57\x70\x61\x89\xb3\xcd\x04\x8c\x7e\x56\xff\x75\x83\x51\x10\xe0\x9f\xea\xe4\xe1\xc4\xec\xf4\x7f\x21\xfd\xe7\x84\x4e\x80\xd8\xe9\x7f\xa1\xfe\x4b\xe1\x9b\x37\x7b\x43\x01\x0b\x37\xce\x0b\xdf\x7d\x3b\x42\x60\xfc\xad\xee\xc0\x6b\x6d\x8c\xf0\x0f\x4c\x57\x18\x37\x7e\x66\x98\x24\xb0\xa2\x95\x53\xbd\x40\x96\x1d\x50\x33\x37\x8e\xb5\xf8\xaa\x0f\x19\x8e\x9b\x2c\xef\xf7\xd4\x67\x03\x7c\xce\x24\x34\x12\x30\x7b\x14\xf0\x5d\xc3\x44\x70\x7c\x46\x1a\xe0\xc5\x72\xd3\x3d\x9e\xac\xb6\x80\xad\x5f\x5a\xcc\x46\x9a\x00\xd0\x52\xee\xa5\x1f\x97\xf2\x7a\x32\xf0\x6f\xff\x2c\xda\x19\xb9\x4c\xa0\x9f\xa7\x97\xa4\xf5\x97\x05\x02\xaf\x14\x39\x9d\xda\x63\x49\x8e\xd4\x36\x35\x16\xfd\x4d\x83\x75\xd8\x2a\xcb\x9e\xc8\x6f\xc4\x04\x78\x93\xf2\xd4\xc9\x9c\x77\xd3\x04\xea\xc8\x75\x4d\x3d\x8e\xa2\x02\xac\xed\x0e\xf6\x13\xb8\x94\x0b\x98\x38\x6b\x13\xf6\x29\x2b\x10\x50\x21\x5f\xc7\x73\x15\x41\x34\xfa\x5f\x7e\xb3\x8d\x10\x58\xfc\xc2\xc2\x7f\x5b\x3e\x33\xac\x21\x5b\xf3\xb6\x07\xa7\xf5\x28\x81\xdf\xec\x38\x5e\xf9\x7e\x17\x04\x1c\xb2\x4d\x39\x2a\x39\xa7\x00\x28\xa4\xbb\xac\xf0\x6d\xdf\x1e\xc0\xc7\x3f\x7c\x8a\xe6\x53\x0e\x03\x76\x2f\x2a\xd0\x78\xbb\x3d\x06\xec\x38\x24\xb2\xcd\xe2\x6d\x29\xe0\xc5\x10\xbf\x4f\xbc\xd5\xc3\x24\xec\xfb\x5a\x55\x60\xbe\x52\xfc\xcc\x54\xb3\x93\x57\xc0\x73\xc2\xb8\xcf\xdc\x33\x12\xb0\xad\xd8\xd5\x23\x38\xcc\x0f\xb0\xb7\xd6\xe5\xf6\xbb\xab\x91\x80\x0c\x7c\xe9\x7f\xd8\xde\x3e\x26\xa1\x91\xed\x29\x5a\xf9\xc4\x62\xc0\x65\x75\xe5\x67\xab\x57\x80\x9a\xd6\x64\x47\x03\x0e\x65\x32\x6c\xda\x30\x3c\x2f\x77\x8d\x1b\x50\xd3\xdb\xc5\xe3\x65\x82\x0a\xa0\xe4\x49\xc5\x93\x7b\xe8\xf5\x00\x6f\xbd\xd6\xd8\xb1\xf0\xf4\x31\x60\x84\x4f\x67\x68\x72\xdb\x63\x40\xa7\x0b\xed\xf9\x2d\x91\x0e\x80\x2f\x1d\xd6\x1f\x30\x6d\x17\x24\xa1\x37\x73\xc8\xf9\x69\x59\x47\x40\x2b\xff\x93\x4b\xa5\x5d\xda\x80\xef\xe4\xcc\xbe\x4f\xdb\x78\x02\x8e\x17\x1f\x3f\x61\xce\x3a\x44\x60\x89\x7b\x2d\x83\x78\xeb\x6f\x02\x37\x1f\x10\x19\xab\x28\x08\x04\x3c\x4f\x90\xbe\x84\xbf\x0e\x82\xb5\xf2\x1f\xf0\xbd\xd3\xfa\x72\xdf\x34\x17\xd0\xc4\x80\xbb\x7a\x15\x46\x56\x2d\x8d\x62\x35\x2f\x89\x35\x2c\xb3\xb4\xff\x09\x95\x78\x47\xa0\xc3\x15\xcd\x63\x1c\xe9\x82\x80\x46\x09\x6d\x27\x37\x35\x5b\x92\xa1\x8c\xf0\xde\xb0\xe9\x4b\x06\x09\x3b\x97\x0e\xb4\xeb\xdd\xea\x26\xb0\xba\x70\xe8\xfb\x65\xef\x07\x80\xd7\x83\xed\xcf\x1e\x4b\xe9\x25\xe1\x15\x2f\x92\x3a\xc3\xf5\x07\x80\x62\xce\xe5\x71\x7d\x9a\xfb\x00\x53\xcb\xf3\xe1\xde\xf5\x87\x80\x4e\x01\x9b\x19\x0b\x4d\xc7\x08\xe4\x78\x68\xf0\xe9\x15\xed\x34\x19\x24\x9d\x6b\x4a\x2f\x65\x50\xc0\x1a\x44\xd7\x2d\x8c\xa4\x54\xec\x26\x83\xc2\xc7\xcc\x5d\x17\xf9\x47\x08\xec\x74\x09\x34\xd0\x38\x5a\x44\x42\xb7\x5a\x17\x4d\xac\xe5\x03\x64\xad\xab\x70\x33\xbd\x4a\x03\xa8\xf1\x22\xb7\x78\xfc\x90\x16\xa0\xc4\x2f\x37\x76\xad\x99\x7e\x02\xff\x26\xd9\x16\x70\x09\x50\x03\x7e\xdf\xae\x75\x35\xee\x0a\x0f\xa0\x84\x0d\xcb\xd5\xfc\xf0\x50\x32\x10\xa9\xac\xae\xdc\x57\x86\xea\xf0\x47\x7d\x86\x83\xa7\xea\x23\xc0\xbd\x91\x63\xda\x1a\xd1\x56\x80\xd7\xa6\x5f\x7d\x8b\xb8\xf4\x1c\x16\x06\x87\xb5\xcf\xed\xad\x03\x34\x2b\x36\xf8\x44\xbd\xed\x20\x60\xe5\xb3\x8d\xf6\x31\x57\x92\x01\xf3\x05\x28\x9d\x29\xec\x74\x00\x03\x7b\xdf\x58\x8f\x3c\x54\x05\x64\xf5\xcb\xb1\xad\x99\xd7\x04\x74\x2d\x3c\x70\x53\x55\xd4\x1a\x50\x68\x94\x4d\x64\xfc\xd3\x59\x32\xc4\xca\x7c\x16\x29\xd5\xb0\x27\xc3\xc2\xb0\x18\xfd\x6e\x27\x5a\xc0\x7c\xf5\xcd\xd7\x8f\x46\x59\x01\x7e\xea\x1b\xbe\x9d\x1f\x6e\x0b\x98\xee\xff\xf9\xfb\xfe\xe4\x32\xc0\x16\x45\x3e\xdf\xea\xf8\x42\x40\xc7\xeb\x77\xa7\xaa\x56\xe0\x2b\x40\x37\xf0\x6b\x70\x89\x40\x8f\xaf\x43\x82\x47\x9a\x79\x61\x0d\x54\x25\x23\x21\x39\xd7\xb5\xc8\xc0\x0c\xb7\xc3\xce\x31\x4e\x13\xc8\x17\xf8\x21\x30\xef\x5e\x3e\xe0\x90\xc2\x2e\xc6\xf9\x48\x7d\x40\x47\xea\x1d\x8a\x03\xaf\xe6\x88\x35\xbc\xac\xe6\x49\xa3\x51\x18\x20\x90\xa2\xa6\xba\x63\x56\x68\x1f\x60\x81\x32\x14\x1d\x3d\x21\x44\x06\xf9\xd4\xe1\xfa\x16\xbd\xf7\xc4\x1a\x0e\xea\x56\x7e\x55\xef\xdf\x0f\x6b\x78\xda\x94\x9a\xbc\x9f\x4f\x83\x0c\x3e\x02\x27\xe9\x87\x97\x07\x09\xb4\x76\xfa\xf5\xfb\x6f\x05\x13\xac\xe1\x7c\xaa\xa5\x6a\xf6\x20\x2b\x20\xd1\x25\xf8\xf3\x7c\xc4\x3d\xf8\x7f\x94\xdd\x69\x34\x55\x71\xfb\xf0\xf1\xcc\x53\x83\x39\x94\x90\x0c\x99\x32\x25\x53\xfb\x92\xc8\x58\x91\x22\x29\x43\x91\x22\x89\x28\x64\x2c\x42\x21\xf3\x10\x25\xf3\x90\xcc\x95\xf1\x1c\xf3\x50\xd2\x80\x66\xa9\x64\x08\x49\x88\x0b\xd1\xb3\xea\xc5\x7d\xce\xbd\x56\xeb\x5e\xcf\xff\xd5\xf9\xac\xef\xb5\x5f\xec\xb5\xf7\x39\xbf\xfd\x3b\x2f\xce\x3a\xc8\x6c\x6b\x2c\xe8\xf5\x07\x07\x26\x94\xb6\xec\x9e\x0d\x07\x3c\x5f\xd2\x2d\x31\x2f\xd5\x43\x50\x90\x37\xb8\xb8\x2f\xe8\x97\x14\x60\xd3\x44\x62\xa1\xe2\x19\x6e\x40\x0e\x3f\xf7\xcd\xdc\xbd\xb3\x04\x66\x24\x90\x1e\xe0\x33\x1e\x40\x9b\xaa\xc6\x72\x05\xad\x79\x02\xad\x98\x4b\xec\xa7\x95\x85\x01\xa3\xad\x5b\x89\xf8\xc8\xfb\x64\x4a\x71\xcf\x12\x15\xba\xe2\x97\x43\x42\xe1\xee\x3d\x45\xd9\xc1\xd2\x80\x17\x2d\xd7\x30\xd5\x54\x28\x50\x81\xfb\x8e\xa3\xd7\x55\x8d\xab\x54\x50\x30\x18\x26\x5b\xbd\x3c\x01\x98\x96\xbc\xfe\x08\xb9\x69\x84\x40\x11\xb9\xc4\xe4\xcf\xf4\x6c\x40\xc1\x89\x93\xca\x3c\x4b\x77\x44\x00\x0b\x5b\xdb\xc2\x56\x9d\x6a\x04\x5c\x2b\x6c\xc4\x68\x97\xd0\x08\xa8\x17\x98\xa1\xcb\x59\x92\x00\xa8\xf0\xdb\x39\xf8\xf0\x73\x5a\xc0\x8e\xd3\x0d\x36\x91\x96\x65\x64\x8c\x71\x88\x7d\x3d\x79\x4c\x13\xf0\x17\x4d\xda\x7b\xb1\x3d\x04\x15\x5c\xb3\x57\xfa\x9f\x2b\x8a\x03\xd6\x37\xa9\x13\x72\x5d\xeb\x01\x77\x38\x3a\x97\x3c\x51\xd8\x45\x85\xa9\x3b\xec\x8d\x97\xfe\x7c\x62\x46\x24\x55\xbd\x1f\x31\x57\x03\x7a\xd9\x54\xb8\x4a\x31\x55\x03\x9e\x3a\x92\x7e\xf4\xcc\xee\xf3\x64\xf4\xc9\xfd\x3e\xb2\xf3\x6b\x15\x60\xb5\x72\x8d\x38\xed\x5c\x15\xe0\x9b\xe9\xcb\xf1\xcf\x1d\x82\x00\x3b\x1a\x34\xc5\xad\x2d\x82\x00\x3f\x54\x6f\xb0\x59\x4a\xf2\x03\x9c\xbb\xdc\x9c\x4a\x77\x38\x08\xf0\xca\x51\xf3\x8b\x95\x01\x37\xc9\x94\x63\x66\x93\x9a\x12\xd2\x59\xee\x00\x6e\xe8\x1b\x61\xee\xb0\xbf\x0f\xe8\xd7\xf5\x2a\xea\xf3\x26\x1a\x40\x16\xa6\xc2\x43\xc1\x4c\x56\x54\xc8\x3a\x3e\x7c\x50\x63\x03\x03\xa0\xa8\xbd\x04\xbb\x66\x1a\x0d\xe0\x4f\x37\xa2\xb0\x7a\xe8\x0c\x19\xb5\xca\xaa\x1d\xb2\xb3\xa4\x01\xeb\xcc\x86\x97\xd7\x09\xe7\x00\x0a\x07\x75\x3a\x74\x65\x2a\x03\xe6\xcd\xb2\xd6\xf8\x0d\x34\x02\xce\xcb\x05\x05\x64\xf2\xb6\x00\x8a\x6b\x1f\x38\x99\xb1\x40\xa6\x2a\x55\x2b\x7b\x8e\xf9\x38\xde\xa7\x2a\xa7\x96\x9e\x15\xcc\x8f\x46\x53\xa1\x6e\xd6\xd0\x75\xaf\xb9\x09\xe0\x59\x87\xee\x1c\xce\xde\xd3\x80\x7d\xcd\x45\x06\xa6\xed\xe1\x80\x43\x26\x77\xe8\x54\x1f\x34\x00\x76\x12\x9c\xe1\x4d\x51\xf9\x80\xdc\x12\x1f\xf5\xff\x96\xb2\x68\x93\x84\x7c\x05\x6b\x40\x69\xc1\xd5\x4c\xf6\xcf\xea\xc9\xb8\xe7\x85\xeb\xd1\x76\xe6\x67\x80\x5d\x5e\xd9\xb2\x6e\x5a\x4f\x01\x3f\x5d\x3b\xa2\xfb\xb7\x6c\xfa\x46\xae\x30\x08\xad\x02\xcc\x48\xdd\x90\xfb\xb5\xb3\x1a\xb0\xa8\x31\xf5\x76\x98\x56\x23\x15\xee\x5f\x2e\x2f\x7c\xc7\xc9\x05\xe8\x7b\xfe\xb8\x90\xf6\xa2\x3b\x20\xe3\xb1\x03\xef\x1d\xfa\xfa\x08\x14\x70\xdc\xa8\x94\x3f\x4d\x00\x05\x8c\x39\x05\x5b\x22\x7d\x6b\x09\xc4\xe3\x3b\x96\x14\x5f\x29\x00\xee\xa3\xd3\x3f\x44\x9c\xa6\x05\x14\x2f\xa2\x59\x4e\x38\xc4\x04\x78\xca\xb9\xb6\x6f\xd2\xcd\x1b\xf0\x75\xdb\x03\xf9\xdc\xf0\x26\x40\xd2\x8e\x97\x7c\xe7\xf2\x3a\x00\x33\x0f\x7d\xb2\xfe\x5b\x82\x0e\x4c\x4f\x5d\x14\xbb\x03\xb8\xac\x3d\xd7\xb8\x65\x8a\x00\xec\x90\x1b\x64\x88\x9f\x3a\x07\x58\x9d\x71\xf8\xf7\xeb\x5a\x49\xc0\xd8\x5f\xc4\xc3\xd7\x97\xb6\x52\xa1\xb8\x32\xdd\x77\xb8\x4f\x0a\x90\xed\x42\xca\xd2\x9c\x4d\x3f\x81\x33\x37\xf6\xcb\x2d\x6e\x16\x07\xf4\x6c\x8d\x71\x1a\xe2\x59\x0d\xf8\xb9\xf8\xe5\xfa\x9f\x4e\xf4\x80\x99\x7a\xc6\x66\xed\xc6\xbb\x00\xab\xef\xe5\x46\xc5\x0d\xaf\x01\x5c\x0a\x7e\xbb\x79\xed\x6e\x1e\x40\x6b\x93\x97\xdc\x81\xa2\x48\x60\xe0\xfb\xf4\x12\xab\xc1\x5d\x80\x86\xee\xed\xdd\xaa\xcd\xd4\xf8\xa2\x22\xa5\x1c\xf0\xc0\x00\xb0\x88\x39\xa7\xf1\xbe\xe0\xee\x7f\x15\xa1\x8c\x5b\x09\x1e\xf6\x61\x04\xae\x75\xe5\xb8\x7a\xe6\xe0\x1a\x40\x8f\x3a\xbf\x83\x27\x95\x2c\x01\x1f\xa4\xc6\x5f\x95\xbb\xb8\x13\xd0\xa8\xea\x45\xb7\x40\xe1\x06\x40\x97\xb7\x67\x6a\x46\x7a\x04\xa9\x8a\x99\x50\xac\x9a\x6e\x3a\x0d\xa0\x5b\xa4\x6c\xbd\xd4\x35\x7d\x2a\x8c\x84\x74\xc9\xff\x9c\x41\x82\x02\x81\xd1\x02\x27\xb3\x4f\xfb\xe1\x7f\xc1\xaa\x23\x90\x65\x74\xe0\x3a\x60\x8d\xc7\xaa\xf8\xff\x86\x51\xf6\xfa\x6c\xfe\x8e\x38\xc0\x05\x41\xd6\xf2\x29\x4b\x5e\xc0\x26\x31\x33\xe9\x81\x52\x4d\x2a\xd0\x66\x69\x8d\xce\xce\x6e\x06\x0c\xca\xf6\x1d\x79\xf8\x4b\x09\x50\xc2\x40\xef\x27\xb7\xa9\x30\xe0\xa8\x6a\xfb\xce\x9b\x9b\x67\x09\x7c\x14\x12\x99\xb8\x6b\xd2\x0c\x28\x08\x2b\x8b\x8d\x1d\x4a\xe8\x21\xb0\x41\x76\x8c\x77\xe8\xb9\x16\xe0\xdd\xec\x8b\xc5\x4a\x77\x19\xa8\x10\x78\x7f\xdf\x91\x19\xa5\xfb\x24\x0a\xf8\x86\x8a\x3a\x3d\x8c\xe4\x81\x82\x80\x2e\xa5\x10\x7a\xa6\xd7\x04\xca\xd2\xc2\xee\x5c\xcb\x27\x04\x36\x6b\x90\x1e\xd8\xf7\x04\x00\x92\x98\x7f\x76\x93\x6b\xa8\xf1\x63\xee\xb4\xfd\x88\x91\xe2\xbf\x10\x1c\x63\xfb\x75\xa8\xf1\x3d\x81\x61\xab\xf1\x63\x6c\x5d\x16\xa0\xd6\xa1\x92\x23\xc9\x7d\xa6\x80\x67\xa4\x1b\x68\x1e\xed\xfb\x44\xa0\x87\xb5\xda\x46\x8e\xce\x4d\x80\x25\x5a\x25\x1d\x0b\xa3\x5b\xa9\x20\x45\xda\xd4\xb1\x34\xa8\x4e\x05\xbe\x76\xa7\x01\x2b\x1a\x2d\xaa\xa2\xac\x94\x56\xbc\x3a\x44\x1d\xf0\x72\x46\x1b\x4d\xc0\x4e\x0e\xc0\x50\x99\x47\xd6\x23\xd7\xca\x01\xbd\xde\xda\x95\xd6\x3d\x2a\x26\xa3\x56\x79\xcd\x96\xf1\xdc\x76\xc0\x38\xc9\x75\x89\x13\x7f\xf0\x39\xb6\x9d\x43\x5b\xb9\x02\x50\xb2\xe9\x1d\x53\xae\x9d\x3c\xa0\x3d\xe3\xd4\x5e\x71\xc9\x61\xc0\x66\xd2\xba\x91\x03\x34\x05\x80\xcd\x82\xb1\xf7\x03\x4f\x79\x00\xd2\x56\x97\x5b\x4a\xfd\x66\x06\x0c\xe8\x35\xdf\xae\xdd\x2a\x00\x58\xd0\x4c\x1f\xf0\x58\x78\x15\x60\xf4\xa7\xe1\xfb\x49\xcd\x3a\x54\xe8\x73\xe9\x11\x3e\x55\xaf\x06\xd8\xe1\x48\xab\x54\x60\x30\x45\x60\xcb\xb7\x51\x75\x45\x13\x25\xa0\x80\xf9\x2d\xfb\xd8\x4a\x76\x0a\x81\x6e\x17\xf6\xf0\x5e\xce\x52\x06\xe4\x9d\xa0\x2f\xda\xcb\xb7\x15\x90\x55\xe6\xce\xcc\x56\xc6\x97\x24\x5c\x49\xaa\x18\xb0\xd8\xa9\x00\x14\x08\x1b\xda\xff\xbc\xd7\xda\x42\x60\xe7\x7e\xe1\x2c\xfd\x98\x79\x02\xb3\x1f\x05\xd9\x91\x3a\x02\x00\xaf\xda\xfe\x74\xfa\xf9\xde\x8f\x0a\xfc\x26\xd7\x2e\xa8\x9a\x75\x01\x3a\x4e\x1d\xd6\x77\x95\x7d\x04\x18\xe1\x68\x11\x2e\xe0\x42\x06\x3c\x65\x3d\x27\x52\xe1\xfe\x67\x85\x34\xa0\x95\xfd\x5b\xb8\x97\x9f\x9a\xad\x3f\x99\x06\xb8\xec\x33\x19\xb1\xe1\xf0\x26\x2a\x9c\xaf\x7a\xe5\xe3\x39\xb9\x99\x0a\xf2\xe2\xaa\xb3\x47\x9e\xcb\x51\x61\xdb\x71\xa9\x97\x91\xa5\xf9\x80\x0f\x6f\x94\xef\x49\xe5\xb2\x02\x8c\x61\x57\x59\xed\xaf\xcd\x0f\xf8\x76\x9b\xb3\x5b\xc0\x39\x5e\xc0\x8a\xa6\xe4\x57\xe3\x6a\x26\x80\x7a\x3f\x5c\xfa\xa2\x05\xa5\x00\xef\xaa\x58\x1a\x1a\x47\x56\x10\xa8\x2f\x73\x77\x0d\xda\xee\x07\x0a\xba\x0e\xdc\x12\xe9\x1f\x53\xa1\xc2\xe0\x8d\x47\xae\xc9\x43\x0c\x80\x8f\x04\xe2\x8c\x9e\xc4\xad\xa2\x82\x15\x9d\xde\xcc\xfc\x9a\x27\x04\x3e\x1d\x69\x16\x72\xfe\xa6\x09\x18\xfc\xa8\x2a\x25\x7f\xc7\x71\x40\x25\xfa\x9e\x8b\x74\xc3\xc7\x00\xcd\x0f\x9e\x3d\xad\x71\x85\x9b\x0a\xcf\x9b\xee\x28\xbb\xe8\x57\x03\xe6\x7e\x98\xe5\x53\xa0\x7f\x06\x28\xb7\xfb\xf0\x4b\xa9\xda\xad\x80\xb9\x29\xd9\x1d\x9c\xb9\x5b\xa8\x10\x28\xb3\x66\x3d\x9d\xdb\x51\xc0\x10\xa5\x2c\xd5\xf6\x9e\x5c\x32\x7e\x12\xd8\xda\x39\xff\xb6\x1e\xd0\x29\x55\x6c\x82\x21\xa8\x04\x30\x44\x26\x30\x9b\x93\x91\x0b\xb0\x33\x5c\xec\x23\x4d\xdc\x66\x40\x9e\xb6\xb9\x66\xb5\xfe\x63\x54\xd8\xe6\x25\x64\xb3\x3a\x2b\x08\xd0\xe3\xe9\xba\xa6\xcc\x5d\x29\x80\xc5\xc5\x09\x1b\xc3\x76\x9d\x03\xbc\xac\xb1\xd2\x31\x9b\xda\x04\x28\xd2\xe7\x32\xe1\xc9\xf3\x14\x50\xd5\xec\x37\xfd\x3a\x13\x7b\x32\xba\x7c\x0c\x7d\x97\x3d\x68\x0b\x38\x2d\xbb\x26\x31\x40\x48\x98\x8c\x19\xc2\xeb\x74\x70\x2e\x14\x50\xba\x67\x4f\x1b\xa3\x80\x02\x60\x76\x5f\x33\x6d\xca\x70\x25\x15\xb6\x9f\x09\x31\xce\xaf\xd4\x07\x6c\x4d\x53\x50\x8d\x69\xae\x21\x53\xca\x73\xa3\xfd\x21\x81\x83\x73\x04\x5e\x54\x7b\x53\xfb\x95\x73\x3d\x60\x44\x5f\x83\x73\x88\xd9\x2b\x02\x2b\x0d\xa2\xc3\x63\xdb\x3e\x50\x21\xe0\x2c\x67\x74\x4d\x11\x1b\x50\x90\x2a\xf6\xf8\x06\x6b\x89\x3c\x15\xee\x6d\xe2\xb6\x6a\x18\x7f\x49\xe0\xd9\xb5\xd5\x8c\x71\x6a\x5a\x80\x42\x86\xa3\x7e\xf7\xe3\x78\x01\x25\x8d\x26\x56\xe4\x8f\x2d\x10\xd8\x7b\x3b\xe0\x7e\x56\xed\x0a\x81\x43\x45\xdc\xca\x0b\xef\x87\x08\x5c\x5d\xce\x50\x61\x9a\x4d\x03\x14\xb0\xc9\xc8\xeb\x1c\x9e\x7c\x4d\xc2\xa0\x36\x7e\xce\x55\xad\x00\x14\x5c\x56\x0a\x1a\xc8\x6a\x28\x03\xf4\xc9\x4a\x9a\xde\xd6\x5a\x06\x28\x38\xe1\xdc\xf1\xb7\x2c\x9d\x78\x97\x77\xae\x63\x3f\xe0\x66\x93\x33\xa6\x3d\xd9\xea\x80\xac\xd9\xae\x99\xc6\x67\x5e\x10\xa8\x61\xf4\x66\xcb\x59\xd7\x15\x2a\xdc\xb5\xb5\x68\x13\x8b\xa5\x07\x9c\xbc\xf2\xe2\xf8\x1b\xcb\x46\x40\xab\x26\x89\x84\x81\xed\x16\x80\x01\x53\x8b\x32\xa2\x36\x87\x00\x63\x3b\x75\xac\x6d\x53\xe3\x01\x65\x2f\x6f\xd3\xfb\x8b\x88\xf1\x62\xe5\xc8\xf5\x53\x04\xa6\x76\x3e\xdf\xd7\x94\x53\x06\xf8\x3d\x71\x34\xde\xd8\xc1\x94\x0a\xf6\xbc\xf3\x19\x99\x41\x34\x80\x03\x3f\x9e\xb0\xc3\x95\x01\x12\x8e\xde\x69\x17\xc6\x03\x2e\x40\x41\x93\x96\x0a\x0b\xe3\xa5\x03\x80\x33\x43\x31\xf9\xb9\x2b\x33\x04\x4e\xb7\xbd\xeb\x74\xa5\xdd\x0c\x48\x3a\x9d\x7c\x41\x7d\xcf\x15\xc0\x34\x46\x95\x64\x17\x09\x09\x40\xce\x91\x58\x79\x46\xab\x54\xc0\x44\xaf\xcb\xee\x21\x2a\x0f\x48\xe8\x68\xdf\x24\xd7\x76\x46\x1f\xfe\x81\xd5\xab\x4e\x25\xe9\x44\xb7\x93\x70\x73\x73\xe7\xfd\xcf\x8d\x0b\x04\xbe\xee\x8b\x3b\xc8\x52\x65\x04\x14\x04\x96\xa9\x78\x92\x35\x34\x01\x37\x2a\xb8\xcb\x4c\x9e\xd9\x06\x58\xfb\xd6\xfd\x05\x5f\xf0\x5e\xc0\x9e\x8b\x6d\x4f\x08\x7a\x6e\x40\xd3\x43\x31\x93\xcc\x3b\x7b\x49\x78\x45\x44\x7b\xef\x44\x53\x1d\x60\xb4\x09\x4d\xad\xd0\x95\x44\x32\xd6\x0b\xb0\xee\x7e\x78\xc9\x0e\xf0\xe4\xc8\x45\xf3\xcc\x3f\x5f\x8e\x47\x69\x8b\xaf\x8a\x80\x35\x19\x55\x23\x8f\xe4\xd7\xa8\xad\x01\xe4\x57\x49\xbe\x75\xdf\x4f\x94\x0a\x8e\x87\x56\x8d\xab\xad\xf9\x48\x42\x97\xbc\x44\xcd\x9d\x56\x6d\x24\xa4\xbf\xed\x37\x6d\x17\xbc\x1d\x28\x98\xcd\xd3\xa0\x7f\x75\xe7\x15\x09\x67\xbe\xba\x1e\x0f\xdd\xcb\x05\xf8\xa4\x36\xe6\xe5\xda\x18\x85\x7f\xe1\xb4\x81\xce\x3e\xff\x24\x91\x7f\x41\xe2\xa4\xd9\x5d\x92\xf8\x00\x09\x9d\xde\x26\x1d\x92\x71\x32\x02\x2c\xcc\x92\x1c\x3f\xa1\xbf\x01\x30\x94\x8e\x4e\xbc\x67\x5e\x1e\x70\x3e\xb7\xa1\xfd\xce\xa6\x69\x02\xe3\x7e\xc8\x16\xf7\x25\xb1\x00\x05\x33\xf6\xc2\xb1\x12\x2c\xe7\xa8\xca\xb0\x48\x59\xdd\x4c\x08\xcd\xbf\x30\x5b\x1c\x76\x70\xb0\xe9\x09\x81\x29\xb6\x92\x8f\x5f\xa6\x55\x13\xf8\xa3\xec\x69\xed\x51\x53\x24\x50\xef\x52\xd8\x4c\xdd\x61\x75\x40\xb1\x16\x5f\xba\x9d\x4d\xf9\x04\x1e\x08\x56\x55\x0d\xad\xf0\x85\xff\x85\xe3\x13\xa9\x79\x12\x81\x8d\x80\x32\x97\xda\xfa\xfe\xa2\x5d\xa9\x8c\xf4\xdf\x58\xce\xbe\x1a\xfd\x17\xd1\x6a\x74\x25\x61\x1b\xed\x00\xa5\xb3\x6f\x49\x73\x36\xb3\x93\x29\xe5\x3f\x50\xe8\x39\x3a\x90\x5d\xc9\x07\xe8\x7e\x45\xc1\x25\x21\xfa\x00\xa0\xc3\x79\x27\xb7\x53\x90\x0a\x98\x2d\xa9\xf8\x55\x7d\xb1\x08\x10\x58\x18\x1f\xac\x5f\x1d\x04\xf8\x6e\xee\xd2\xf2\xc1\x75\x41\x80\x87\x32\x12\xe3\x73\x0b\xbc\x01\xd7\x3c\x7b\x7b\xd6\x7c\x48\x09\xb0\x22\xe1\xcc\x95\x85\xf8\x35\x80\x2e\xa2\xd5\xf7\x36\xae\xf2\x05\x8c\x7d\x33\x26\xf6\xc0\x58\x18\xb0\x52\xa4\x2e\xe7\xc9\x7e\x6e\xc0\xdb\xbf\xaf\x68\x1d\x58\x4b\x0b\x28\xdb\x23\xa2\x18\xb2\xf5\x3a\x60\xc7\x8c\xb0\xd5\xce\xcf\x77\x00\x4f\x14\xb1\xe9\xfc\xc5\xb5\x3d\xea\x3f\xfb\x1f\x56\x90\x29\x85\x4d\xad\x41\x98\x2e\xfe\x28\xa0\x7a\xea\x9e\xef\xfa\xb7\x1d\xff\x85\xdd\x85\x3b\x12\x61\xad\x09\x55\x11\xac\x1e\x9f\x10\xb0\x51\x01\xfc\x70\xf6\x51\xe5\xb9\x05\x11\x40\xb5\x15\xf9\x80\x40\x71\x3e\x40\x4e\xa3\x57\x7b\xd6\x3a\x54\x03\x36\x7b\xb4\x47\x15\x1d\xaf\x06\x7c\xfb\xbd\x29\x39\x24\xad\x0a\x70\xd6\xd8\x63\x26\xff\x4f\x61\xed\x0d\x96\x8f\xdb\x28\x09\x58\x0d\xca\x83\xf2\xf1\xeb\x01\xab\xcf\x64\x32\x58\x6c\x1e\x27\x90\xc1\x54\xe1\x93\xac\x86\x2e\xe0\xe5\x54\x57\x7e\xd3\x31\x6e\x40\xd6\x27\x03\xf1\x0f\x36\x0a\x02\x6e\x79\xfe\xde\x7f\xbb\x39\x1d\x60\xec\x0e\xd7\x3b\xf6\x06\xa2\x80\xe3\x99\x59\x64\x7f\x4d\x51\xc0\x69\xb9\xde\x07\xbf\xe2\x35\x01\xab\x82\xd9\x14\xf9\xb9\x55\x00\xb9\x3c\x04\xab\xf7\x4f\x95\x00\x26\x35\x6d\xba\xb1\xf7\x0f\x9c\xeb\xeb\x85\x8a\x2c\x4b\xa8\x46\xcd\x0f\x9d\x8c\x2e\xd0\x58\xff\x4f\xd8\x97\x05\x76\x0c\xee\x17\x01\x4c\xf1\x75\x49\x32\x2c\x17\x05\x8c\xcb\xbb\x11\xc1\x72\x6e\x2f\x20\x7c\xd5\x90\x8b\x7f\x27\x0c\xb8\xdb\x3b\xf2\x68\xe1\xf4\x34\x81\x5b\xf9\x94\xb6\x3a\xaa\x55\x03\xaa\xa8\x2f\x14\x5f\xaf\x70\x05\x4c\xaa\x9d\x9f\x5f\xab\x58\x40\x60\x89\xbe\x49\x32\xd7\x48\x02\xfc\x03\x87\x7e\x7e\xed\x5f\x31\x61\x07\xe4\xb6\x1a\xbb\xfd\x91\x29\x18\x30\x83\x77\x5a\x4f\xf6\x77\x27\x60\xea\x85\xfb\x66\x52\xd2\x55\x80\xab\x17\xd2\xc6\x65\xfe\x94\xf8\xa7\xd1\xa6\x51\x99\x4f\x01\x17\x74\x79\x16\x84\x83\x9e\x02\x96\xf4\xe5\x3d\xbe\x70\x31\x02\x30\xf9\xae\x6e\x61\xef\xcb\x20\xc0\xe4\x6e\xed\xd6\x41\xc7\x0c\x40\xd9\x89\x24\x91\x2f\xff\x05\x2b\xdf\x27\x9f\x6b\x45\xec\xa9\xa0\xc4\x9b\x09\x77\x9f\x04\x92\x29\x85\x41\xbb\x65\xc6\x7d\x0d\x00\xb6\x5c\xb2\x30\xf5\x54\x63\x03\x94\x18\xcc\x96\x93\xdb\xaa\x0b\x98\x36\x11\xa1\xea\x54\xb4\x8b\x0a\x5f\x1f\xca\x3f\xed\x70\x46\x02\xe3\x76\x18\x8d\x3f\xbd\xe9\x05\x68\x01\x51\x29\x52\x97\x72\x00\x05\xbe\xcf\x05\x2c\x45\x50\x43\xe4\x5a\xc4\xea\xbf\xe8\x17\x48\xfb\x9d\xa2\x6d\x07\xc8\x63\x7d\x2d\xa6\x72\xc8\xee\x5f\xa5\xfa\xfc\x5a\xdd\x6b\x17\x03\x01\x9f\xaa\x8f\xa5\x15\x1f\xbd\x07\xd8\xfc\x20\x62\x8e\x08\xfc\x48\x20\xc7\xda\x3b\x57\xc7\xaa\xa4\x00\x6b\x8e\x0c\x68\x3f\xd3\xe4\xa1\x42\x71\x3b\x4b\xfc\x19\xd9\x6e\x02\x0f\x3c\xdf\xbc\xeb\x5d\x85\x30\xe0\xa2\x57\xf3\xed\xab\x9f\x05\x01\xa7\xf8\x3d\x7d\xaf\x09\x27\x03\x2e\x84\x0e\x9e\xcc\x99\xfe\x48\x60\xc2\x4d\x8f\xac\x75\xcb\x21\x64\xfc\xa6\x65\xfc\x29\xe2\x4c\x08\x50\x70\xcc\xb6\xc2\x50\x53\xab\x14\x90\x7c\x92\x21\xb9\xdf\xb1\x14\x50\xe2\x7b\xbf\xd7\xdf\x22\x6d\x50\xaa\xf1\xb7\xd0\x59\xac\x3b\x59\xdf\x2e\x0a\x78\xe6\x03\x73\x69\x8b\xc6\x19\xc0\x7b\x2d\xd2\x1e\x57\xcf\x8a\x00\xee\xe9\xfe\x1e\xb3\x27\x8d\x04\x28\x18\xb0\xe7\x58\x6a\x73\x09\xa0\xbf\xbb\xe4\xc9\x1a\xe5\x58\x40\x45\x76\xd5\xdb\x77\xeb\x37\x03\x1e\x4f\xa4\x7b\x5e\x45\xca\x01\xbc\xe3\x41\x8a\x72\xd9\x55\x01\xd8\xce\x23\xc9\x77\x3b\x77\x0f\xe0\x80\x6e\x2f\x5d\x7b\x72\x39\x20\xbb\x80\xdb\xaf\x6a\x8b\x4c\xc0\x5f\xbb\x7e\x8f\xd4\x5d\x56\x05\xac\xc9\x4e\x2d\x51\xef\xe2\x01\x1c\xf1\x78\xf8\xfb\x5a\xc2\x1e\x40\xb1\x1d\xaf\x7e\x05\xef\x89\xa7\x82\x52\x64\xfe\xa8\x7b\x47\x35\x20\x1f\x5a\xcc\xeb\xd6\x55\x03\x3e\xb5\x38\xf9\x99\xee\x45\x3f\x19\x3b\x0a\x97\x75\xce\xff\x19\x1d\x62\x95\x95\xf4\xd6\x3a\x05\x38\x7d\x49\x9e\x57\x83\x56\x03\x70\xed\xb1\x2b\xda\xc4\xe7\xa3\x80\x37\x66\x55\x1a\x55\x7b\xe8\x01\x8f\xe6\x79\x06\xb6\xf0\xe7\x01\x6e\x62\xf4\x89\xd9\xb4\x21\x0f\xf0\x6b\x7c\x36\xf9\x2f\x64\x0c\xae\x5f\x90\xa0\x73\x02\xfc\x79\x5b\x5d\xb7\x31\xd6\x01\xf0\xeb\xfb\xab\x5a\x9f\xc2\x9d\x00\x69\x5e\xa3\x8b\xe9\x90\x2a\x55\x31\x9a\x78\xd8\xa4\xa5\x7a\x91\x8c\x5d\x9e\xba\x22\x01\x0d\xf6\x80\x9b\xeb\xc5\x58\x83\xd4\xee\x02\x66\xcd\x0d\x91\x2f\x54\x15\x02\x5e\x46\x8b\x35\xbf\xf6\xdd\x05\x94\xf3\x7b\x6b\xdd\xed\x59\x0a\x18\xd7\xf2\xdd\xf3\x2f\xc2\xbf\x9a\xfc\xe0\xb8\xb5\x8b\x0a\x7a\x6f\x77\x0e\xa7\x99\xcc\x10\xa8\x24\xfb\x30\xe0\x17\x48\x00\x3a\xfd\x9a\x69\xb4\xfb\x2d\x02\xa8\x4f\xfb\xa4\xe1\xe9\x2a\x63\x40\xda\xdd\x0a\x77\xbc\xbe\x1b\x03\x06\x7d\x4e\x34\xfa\xf6\xbb\x8b\x40\x3f\x7a\x7a\x69\x6f\x99\x25\x2a\xa4\xbb\xa6\xf7\x6f\xb4\xf9\x4e\xe0\x94\x94\x50\xfa\xe6\xcf\xcd\x80\x8b\x47\x0c\x52\xf8\xf9\x5a\x00\xa5\x6d\x05\x69\x4f\xc8\x4d\x10\xb8\x81\xa7\x3b\x49\xcb\x83\x0b\x50\x89\x54\xd4\xe1\x9f\xdd\x0c\x38\x69\x77\xaa\xe3\xdd\xea\x16\xc0\xa2\x9d\x86\x64\x8f\x56\x47\x40\x45\x21\xb7\xb0\x76\xbe\x29\x82\x02\xfb\xdd\x16\xb4\x29\xda\x42\x80\x1b\x4e\x2e\xa5\x8d\xca\xab\x00\x56\x08\x67\xb9\x5d\xe4\xb5\x02\x64\xb4\x8e\xf6\x53\x8b\xe4\x06\xd4\x7c\xe0\xc7\x32\xf5\xa9\x07\xf0\xab\xf4\x9d\x6f\xbc\xad\x24\xc0\x23\xd2\x8f\x52\x9c\xab\x77\x03\xfa\x54\xb9\xf4\xdb\xed\x90\x06\x0c\x61\xa1\x8d\xfd\x85\xeb\x01\x43\x83\x62\x3f\x3d\x7d\x4a\x26\xe1\xab\x4f\x4f\xfc\xe8\x39\x0e\xc0\x3f\xb0\x8e\x19\x6a\xf2\xc3\x78\xff\x05\xab\x20\x36\xdf\x43\x3b\x9b\x48\xd8\xa1\xc1\x64\x31\x9a\x5e\x01\x48\x1b\xe8\xd0\x72\x27\x2a\x09\x70\xa8\xd1\xfe\xd6\xd0\xd5\x44\x40\xe9\xf5\x8b\x01\xab\xa4\xe2\xa9\x46\x8f\x5e\xf3\x19\x77\x74\x88\x02\x1a\x38\x9b\xed\xe8\x1a\x49\x03\x0c\x78\x2f\xc9\xf2\x17\x32\xa5\x1e\x6f\x5e\x5f\x3a\x07\xa8\xd3\xe1\x27\xe3\xb9\xe1\x19\xe0\xea\xa7\xea\x6c\xb4\xbc\x49\x80\xbe\xb5\x2d\xa1\x63\x72\xbc\x80\xc1\x6e\xee\x3d\xcf\x0f\x72\x02\x8e\xdf\xf8\x94\x6c\xa1\xf2\x95\x84\xdf\x96\x82\x4b\x7c\xd2\x5a\x00\xb5\x59\x92\xdf\x18\x6e\xf7\x02\x74\x7e\x52\xfd\xc9\x8a\x39\x1f\x90\xc4\xba\xed\x17\xb3\x45\x20\xe0\x42\xe2\x99\x80\xba\x0d\xc1\x80\xd6\x7a\x3f\xf2\x1e\x5d\x3e\x01\xf8\x69\x2e\x73\xf7\xd8\x3a\x5a\x40\x08\x9f\xdc\x96\x72\xb3\x06\x30\xc3\xf4\xe6\xe6\xee\x59\x7b\x40\x77\x49\xc7\x60\x4d\xde\x58\xc0\xaf\x01\xbe\x57\x4b\xce\x9e\xfb\x17\x3e\x6c\x2d\xa3\xfb\xe6\x73\x1e\x70\xb7\x5b\x9b\xc0\x7f\xe3\x54\xad\xff\x63\x0b\x4e\x61\xc0\xb0\xa5\xa1\xaf\xb5\x97\x2b\x01\x3d\x97\x19\x7a\xd6\x9c\xae\x03\x5c\x38\x20\x72\x93\x26\xb8\x12\xf0\xf4\xbe\x25\xba\x88\x1b\x8d\x80\x1a\x46\xc7\xaa\xce\xa1\x1f\xe0\x6d\xfd\xf2\x83\x41\xf5\x11\x80\x37\x9b\xf7\x1a\xe4\x38\x06\x00\x5e\x67\x90\xd3\x4d\xfb\x14\x43\xc6\xbe\x81\x06\x36\xed\x8b\x2a\x80\x46\x4b\xc6\x7e\xba\x4d\x92\x80\x25\xb7\x62\xe3\xbb\xbf\x9e\xa0\x02\xcb\x28\xa9\xad\x41\x94\x0b\x90\xcd\xdd\x3f\xba\xfe\xd9\x25\xc0\xbe\x87\xa6\xcc\x61\x21\x8f\x00\x6d\x5e\x5c\x0e\xd5\xf9\x51\x00\xe8\xfa\xcc\x2b\xc6\x62\x22\x97\x8c\xcf\x76\x54\x90\xcf\x8a\x90\x01\x0f\x4b\x97\x71\x6b\x3c\xa9\x01\x54\x7f\x36\x60\x28\x30\xb4\x13\x50\xec\xe1\xc9\x8f\xa5\x8f\x8a\x00\x07\x43\xc2\x23\xe9\x1f\x17\x01\x66\x68\x26\x19\x7d\x62\xbb\x00\x58\xc1\x61\xec\xf2\xa3\xbd\x00\x30\xef\x65\xdb\x47\xf3\x5b\x35\x80\xba\x2f\xe4\x1d\x66\x32\x9b\x01\x47\xbc\x06\x4a\x5c\x93\x9b\x01\xd9\x0b\x4a\x7d\x1a\x95\xeb\x01\x39\x4f\x7b\x2a\xea\x1c\xf0\x27\xe3\xb9\x56\x5e\x43\xd5\x60\x5d\xc0\xc9\x8d\x89\xf4\xcb\x31\x0d\x80\x7e\xef\x3a\x8f\x88\xd1\x9e\x07\x64\x7b\x4d\x64\x6a\xdb\x5a\x01\x3e\xe4\xd8\x51\xfb\x89\xdd\x0d\x70\xf9\xba\x8f\x3d\x4f\xb9\x18\x60\xd2\x69\x66\x53\xd9\x18\x7e\xc0\xfa\xbc\xef\xdf\xe4\xdd\xbf\x13\xb8\xfe\x5b\xce\x64\xd4\x56\x05\xa0\x60\xdd\xcb\xcf\xa7\xb8\xde\xbf\x26\xe1\xfe\xc2\x78\x5b\x33\xbf\x4a\x40\x76\x96\x8f\x29\x0f\xf0\x37\x81\x63\xce\x59\xbe\xf9\xeb\x72\x80\x02\xc6\xed\xc5\xf6\xfb\xa4\xdd\x01\x0d\x8c\x22\xa5\x14\x18\x57\xc3\x82\xd6\xa1\x61\xa5\x6e\x31\x40\x55\xcf\xb6\x52\xc3\x39\x05\xc0\xc5\x71\x93\xeb\xc6\x57\x1e\x90\x91\x51\x9d\x35\x01\x85\x0b\x01\x77\x66\x47\x39\x3d\xd5\xc8\x06\x7c\x57\x96\xf4\xeb\x98\x97\x17\xa0\xbf\xbf\xed\x9d\xbc\x04\x37\xc0\x5e\x15\x41\x95\x15\x19\x1f\xc0\xb6\x17\xda\x0b\xaa\x2c\x4d\x80\x7c\xa5\xeb\xaf\x1e\x2e\x17\x00\xdc\x54\xe2\x51\xb4\xeb\xc6\x04\x81\x3f\x3e\xa5\x94\x15\xcd\xb0\x03\x05\xbd\x09\x75\x19\x1c\x72\xbf\x09\xb4\xc8\xe8\x0a\x09\xab\x95\x06\x0a\x6c\x39\x9e\x49\xdf\xf7\xbc\x41\x05\x95\x6e\x3b\x79\xf1\x22\x77\xc0\x94\xe7\x7c\x7a\x0a\xae\xf2\x54\xf0\x9e\xca\xed\xbc\x7d\x9e\xa0\x42\xa8\x9d\x9a\x73\x8b\xf0\xd0\x9f\xeb\x24\xe9\x7e\xee\x57\x2f\x60\x48\xbd\xd1\x99\x8c\x88\x7a\xc0\x59\xf5\xed\x2d\x5b\x18\xe9\x00\xd5\xbe\xca\xeb\xdc\x30\x14\x04\xac\x2a\xef\xb5\x88\xf7\xa3\x01\x4c\x7d\xdd\x55\xdf\xac\x41\x06\xe4\xad\xd8\x54\x78\xef\x27\x09\x70\xfd\x83\x7a\xe1\x0e\x45\x76\x40\x1d\xf3\xce\x5b\x3a\xab\xb7\x02\x3a\x97\x58\x9c\xdc\xaa\xf0\x86\x84\xb5\xd7\xfb\xab\x86\x9e\xf3\x01\x05\x4e\x06\xa7\x9e\xcf\x7c\x0b\x26\xb0\xfb\x50\x63\x5e\x85\x69\x25\xe0\x89\x2f\x74\xeb\x94\x0d\x1b\x00\x27\xb6\x9d\x59\xd9\xb3\x26\x9f\x0a\x46\xef\xc7\xc3\xf4\xfe\xe0\x94\xb8\x4a\xdf\x6e\x99\x2a\xc0\x48\x2d\xc6\x0b\xb3\xb2\x55\x80\x83\x3d\xa0\x3d\xa0\x5b\x05\x28\x17\x7f\x75\x7c\xe6\x4f\xd9\x9b\xf3\x66\x45\xb2\xc9\x03\x30\x7b\xd3\x27\x3f\x55\x5d\x4f\x40\xee\xb3\x0f\xf4\x2a\x68\x3d\x01\xa7\xce\xba\x08\xbf\xb9\x1a\x0a\xa8\xdf\xcf\x67\x13\xa1\x47\x02\x3c\xa6\xed\x3c\x27\x53\x62\x00\xf8\xc6\x7f\x5d\xb2\xe3\xc6\x9d\x54\x48\xa3\xa3\xff\xd2\xcd\x3c\x43\xe0\x87\x97\x1c\x21\xe7\x65\x79\x01\xd9\xe6\xd3\xa4\xbd\x7d\xf3\x01\x9d\xb2\x36\x3e\xf8\x8b\x63\x5b\x69\x14\x25\x65\x7a\x08\x0a\x0c\xe5\x4f\x93\xa5\xfd\x32\x80\x02\xfe\x6b\xa4\xc5\x03\xc5\xbd\x04\x05\x0f\xd8\x18\x75\x2d\x76\x84\xc1\x3f\x50\xc0\xce\xf6\xa5\x24\xba\x11\xb0\x39\xf9\x58\xeb\xfc\x74\x19\x99\x52\xfe\x03\x1b\xef\x2d\x7e\xb1\xc6\xb2\x80\xe5\x72\xf7\x3b\xb4\x56\xab\x52\x41\x63\xed\xe9\xd4\x9d\x9e\x4b\x04\x05\x7b\x3f\xca\x44\x1c\x7b\xfa\x94\xc0\xf5\x0b\xa8\x16\xfa\xe4\x39\x09\xc5\xdb\xfa\x2c\xf7\xec\xbf\x0b\x38\xfa\xab\x23\x4c\xf7\xec\x25\xa0\x14\x55\xe7\xaa\xe9\x53\x67\x78\xa9\xf0\xcb\xf5\xe3\x65\xbd\xcd\x8d\x80\x84\xd9\xef\x05\xae\x84\x61\x32\x2a\x7e\xba\x7f\xf0\x6f\x61\xfa\x6a\x21\x68\x97\x62\x0c\x48\xde\xc3\x1d\x95\xc0\x94\x01\x98\x46\xb3\xef\xc3\x77\xd6\x0c\xc0\xd4\xa2\xe4\x91\xc6\xa7\x3b\x01\x95\xaf\xb4\x9d\x8a\x1b\xa9\xfa\xb3\x13\xd9\x3e\xa7\x70\x42\x1f\x90\xdd\xd2\x3b\x33\xee\xd9\x15\x32\x6a\xac\x79\xe0\xbf\xfe\xeb\x51\xc0\x80\xfc\xb2\xe0\x75\x91\x1a\x80\x79\xe2\xeb\x86\x2f\x39\x0a\x02\xba\x7b\xe7\x69\x3f\xb8\xa1\x02\x38\xd6\x24\x17\x74\xfc\xd2\x0e\xc0\xa3\xed\xf7\xf6\xf8\xb1\x34\x02\xfe\xe0\xa2\xb9\x61\xc5\x57\x4f\xa0\x98\xf2\xf9\xe7\x22\x45\x64\xa0\x60\x9e\x65\xfb\xf4\xad\xbe\x4e\x40\x6e\x07\x21\x23\xa1\x3f\x65\x48\x47\x2e\xaa\xf2\x54\x20\x60\x02\x7d\x2c\x0f\xe3\x45\x2f\xaa\xf2\x1f\x08\x09\x6d\x94\xe6\xfb\xa6\x0f\x58\x35\x3a\x60\xdc\x1f\xf7\x83\xc0\x0b\xbc\xe3\x46\x12\x71\xa3\xff\x82\xc4\x78\xab\x5e\x62\xdf\x73\x12\xbe\xfd\x15\x75\x22\x67\xfe\x3e\x60\x93\xd7\x6f\x2b\x47\x9e\x78\xc0\x11\xf6\x3c\x41\xf3\x17\x6e\x80\x2a\xdc\x65\x26\x7e\x3c\xcd\x54\x58\x7b\x7a\xea\xc6\xf8\xe3\x06\xc0\x16\xaf\x74\xf6\xc4\xa4\x06\xc0\xdd\x59\x6c\xbf\x92\x27\x1a\x01\xc9\x89\x12\x81\x8b\xfa\x64\x40\xd1\x02\xe6\xdd\xaa\x0b\x23\x64\x2c\xde\x4d\x73\x95\x7d\xa6\x0a\x70\x29\x9c\xa3\x81\x86\x26\x07\x90\xf5\xcd\xd3\x44\xef\xbd\x39\x80\xc7\x6a\x1d\x2f\xc5\xef\xf7\x25\x23\xcb\xc3\x94\xdf\x02\x3d\x77\xa8\x8e\x59\xbf\xbb\xa9\x25\xd9\x7a\x2f\x60\x23\xdb\xaa\xb6\xed\x4a\xca\x80\xde\x8b\xe3\xe2\x1b\xfa\x1f\x00\x66\x14\x36\xf3\x37\xb0\x47\x02\x8a\x89\x4e\x66\x9f\x6f\xae\x01\x0c\xba\x5a\xc3\x53\x3d\x51\x41\xc6\xe6\x23\xf7\x2f\xf9\xc9\x7a\x02\xde\xbb\xf9\x9d\xe1\xf7\x8a\x1b\x60\xd4\xbd\xa4\xb4\xba\xf7\x6b\x00\x25\xdf\x26\x9f\x1b\xed\x2a\x03\x5c\x18\x4c\x7b\x2e\x73\xf0\x14\x20\xed\x90\x1a\x99\xf4\xd4\x0c\x10\x15\x32\x2c\x8f\xd6\xd8\x51\xc1\xdc\xdc\x41\x74\xb9\x8c\x0d\x70\x82\x26\xe2\x7c\xbf\xe8\x12\x81\x27\x26\xd7\x67\x65\x33\xcc\x10\xd8\x16\x32\x2a\xd6\x37\xcd\x06\xd8\x7d\x60\x7f\x40\xdd\x79\x03\xc0\xf7\x8c\xfe\x92\xf2\xc6\xd3\x04\x26\x98\x35\x33\xae\xf7\x60\x01\xd4\x98\x23\x32\xfd\xf9\x9c\xa9\xf0\xea\x95\x17\x5d\xf9\xfc\x75\xc0\xf2\x2f\x36\xdf\xc9\x8f\x36\x01\xbe\x70\xce\xa7\x49\xef\x41\x02\x13\x8e\x4e\x9d\x8b\xed\x9e\x25\xf0\x77\xf8\xd6\x24\x6f\xa1\x2c\xc0\x31\xe1\xc5\xd1\xfb\x97\x18\x00\x1d\xed\x85\x83\x2c\xa7\x66\x09\xfc\x38\x9b\xec\x22\x7a\xa5\x86\x8c\xc9\x3c\x73\x75\x97\x7b\x74\x01\x19\x66\xdc\xa5\xbf\x9a\x9a\x02\x06\xa8\x2d\xb7\x8f\x4f\xda\x03\x8e\x4b\x73\xf1\x93\xdc\xb8\x01\x03\xba\x6e\x4e\x57\xa6\x76\x11\x78\x6f\x32\x58\xf0\xfa\x0d\x03\xa0\x40\xc7\xe5\x63\xaa\x2b\x2d\x23\xa0\xeb\x80\x58\xa3\x73\x91\x27\xa0\x5d\x8c\xbd\xcd\xd5\xb0\x17\x80\xc7\xa7\x23\xf4\x7e\x94\xbd\x00\xec\x6d\xe9\x6c\xb7\x7a\x97\x01\xe8\xd1\x2e\xaf\xc9\xca\x7c\x0f\x30\xac\x7a\x77\x38\xc3\x9e\x7b\x80\x5d\x97\xe3\xa2\xe3\x8a\x6a\x00\xcb\xb6\xae\xf9\x5e\x91\xf2\x86\xc0\xfc\x6b\xfa\x4e\x0f\xdb\xf2\x01\x5b\xef\x3d\xeb\x38\xfa\xb6\x87\x4c\x29\xff\x81\xe6\xfc\x62\x4b\x22\x9e\x07\xb4\x13\xf5\x90\xf8\x72\xc0\x03\xd0\x5a\xe9\xfb\x8d\x2d\xb7\x02\x01\x77\x56\x6f\xde\x72\x53\xd4\x1a\xf0\x11\x3f\xdb\xb1\xb0\xc5\x40\x40\xa2\x5f\xde\x78\xf1\x9d\x05\xa0\xc6\xd1\x07\xce\x55\x8d\xed\x80\xbb\xb7\xba\xea\x70\xfc\xa0\x05\x14\x8d\x8b\x2a\x5c\x7e\x5f\x0e\xf8\x6a\xe2\xd3\x66\x3a\xda\x07\x80\x1b\xb8\x39\x12\x35\x0e\x94\x00\x3e\x2c\x77\xaf\x35\x16\x7a\x00\xb8\xbd\x59\x86\x5d\x5c\x61\x3d\xa0\x2c\xd7\x40\xb9\x75\x39\x0d\x60\xa9\xaf\xbc\xa2\xfd\x17\x46\xc0\x3a\x4d\xeb\xd9\x80\xaf\x2c\x80\xd5\x3f\xba\x38\xba\x6a\x78\x00\xf7\xea\x3a\x6a\xee\xee\x1b\x22\xb0\x32\xdf\xa3\xea\xf5\xd1\x24\x32\xf2\x5b\x76\x1e\x96\xd7\xba\x07\x78\xca\x47\xd5\x98\x4f\x7d\x1f\xe0\x43\xd9\x42\x81\xf1\x73\x7b\x00\x85\x1f\xbd\xdb\x97\x6e\x5e\x0e\xf8\x34\x32\xad\x77\xe1\xe4\x51\xc0\x0d\x76\xb4\x0f\xce\x17\x8b\x03\x56\x08\x28\x8e\xb5\x6f\x92\x02\x34\xbd\x21\xac\x34\xce\xbe\x1d\x70\xaa\x65\xd5\x19\x62\xf7\x6b\x32\x6e\xcd\x9d\x9b\xf4\x9f\x89\x01\x8c\x7d\xda\xeb\x46\x27\x76\x12\x30\xf8\x70\x46\xa3\xf6\xfd\x4c\x40\x6d\x99\xd4\xa5\x8d\x67\x7e\x13\x18\xc8\x72\x6d\x8d\x91\x47\x1f\xe0\xca\xb5\xea\x4b\x37\xcc\x1b\x01\xd7\xbf\x38\x78\xf2\xe6\xfd\x06\xc0\xee\xcf\xa1\x5b\x5d\x2c\x1a\x00\x7f\xe8\x4a\xb0\xaf\xfa\x52\x06\xf8\x20\xb0\x32\x4f\xc5\xaa\x10\x70\x29\xf0\xd1\x03\x7a\xda\xed\x80\xb4\x7e\xf4\x9d\x77\x78\x79\x01\x99\x56\x62\xb3\x58\xf8\xb8\x01\x77\xf6\x9e\x8c\x1a\x49\x88\x03\xdc\x64\x79\xe2\x14\x3d\x43\x1c\xe0\x62\x75\xb0\x4f\xe6\xa5\x78\xc0\xf2\xf8\xc9\x77\x4b\xde\xf1\x80\x99\x56\x9e\xdf\x14\x8e\x37\x03\xf6\xfe\x6c\x0a\x52\x9a\x2f\x00\x5c\x7d\x2e\x83\x59\x20\xab\x86\x6a\xb4\x6c\x40\xcf\x21\x5b\xc8\x0c\xf8\x45\x22\x31\x3c\xf5\x33\x1d\x15\xee\x1b\x86\x5f\xd1\xbc\xf3\x9e\x84\xdc\x07\x82\xd5\xb7\x8c\x9b\x01\xae\xef\xcc\x4a\x31\xd9\x93\x0b\xa8\x96\xb2\x86\x5e\x78\x48\x0b\xd0\xc9\x63\xa8\x37\x53\xc9\x0e\x30\x70\x6b\xaf\x6f\xa5\x13\x03\xa0\xd8\x17\xc5\x19\x9a\x59\x0d\x2a\x88\x93\x75\x93\xfc\xbc\x52\xc8\xc8\x70\x3c\xe8\xd8\x7e\xcd\x16\x12\xde\x9c\x50\x0f\x6b\x09\x6f\x06\xd4\xe2\xdc\x3b\xa5\x1f\xd0\x08\xb8\x96\x7e\xfb\xa1\xe3\xdf\xea\x81\x32\x12\xf2\xbf\xc7\xb8\xb4\x57\x1c\xb0\xdc\x96\x14\xa0\x9f\x12\x05\x58\x6b\x95\xf8\xf6\xc3\xfa\x38\xc0\x47\x5f\x32\x19\x24\x5e\x97\x02\xd2\x47\x2a\x3e\xe3\xe1\x2e\x03\x94\xb9\x36\x33\x21\xc2\xc8\x0e\x68\x7b\xa1\x5d\xb6\x24\xc9\x99\x0a\x59\xda\x3d\xc1\x67\xe8\x8f\x03\x72\x30\x8f\x24\xbc\xdf\xc8\x09\x28\x7c\x54\x23\xcf\xf6\xd5\x11\x40\xf7\xcd\xd1\x95\x92\xcb\x62\x80\xdf\xe4\x0c\x0f\x9f\x4c\x10\x05\x4c\x37\x73\x73\x0c\xd8\xfb\x8c\xc0\xfe\xaa\x6d\xeb\x6d\xfb\x2c\xc9\x78\xde\x22\xae\x67\x4f\xa5\x39\x50\xd0\xb9\xeb\x4d\x97\xb8\x24\x03\xa0\x7f\xa3\xac\xe1\xf2\x2f\x2f\x40\x77\x1b\xc1\x3b\x6f\x05\x3e\x13\x78\xd1\x78\x50\x40\xc3\x40\x12\x50\x42\x4f\x97\x47\xe8\x38\x13\xe0\x65\x8b\xc4\x6b\x81\x64\x57\x2a\x84\x5f\xd9\x60\x09\xfe\xdc\x80\x1a\x8a\xf3\xde\xfb\x03\xe8\x01\x7f\xbe\x3f\xd7\x27\x68\xb8\x40\x50\xf0\xeb\x84\xb0\x73\xd6\xb1\x41\x02\xbb\xa4\xd8\x7b\x82\x63\x12\x01\x9b\x4e\x7c\xdb\x13\x43\x3a\x40\x85\xd6\x52\x59\x03\x0f\x3a\x71\x2a\x24\x75\x36\x2c\xc5\x5c\x1d\x22\x28\xb0\x4e\x99\x9a\x11\xf5\x3c\x08\x68\x74\x9d\xce\x94\x76\x54\x15\x30\xde\x89\xa4\xeb\x6f\xe9\x43\xc6\x5d\xfc\xde\xb5\xa2\x3c\x26\x80\xc7\xc3\xd6\xb5\x46\xca\xcb\x02\xf2\xf5\xf0\x46\x7b\x6a\x70\x00\x3e\x9a\x52\x71\x77\x30\xd1\x05\xd4\x0a\x6c\x11\xbf\xff\x52\x11\xf0\x42\x8d\x45\xf0\x45\xa1\x1c\x40\xda\x3d\x21\x7e\xcf\x1d\xb2\x00\x43\xd4\xa5\x7e\xde\x32\xdf\x07\x98\xf5\xf5\x47\xb8\xe7\xd7\xcf\x04\x5e\xde\xfd\xaa\xe2\xb8\x00\x33\x50\x90\x98\x73\xd0\xca\x21\xa6\x8b\x84\x9e\x6e\x33\x1b\x94\xea\x2d\x01\xdb\xc6\xf9\x39\xaf\xef\x53\x03\xbc\x22\xc2\x69\x79\xeb\xe0\x66\x2a\xe4\x82\x5f\x71\x5f\xdc\x2c\x81\x1b\xed\xea\xf9\x75\xaf\x73\x01\xb2\xb3\xd3\x35\xbd\x78\x47\x4b\x05\x97\xe8\x37\x91\x1b\x50\x11\x70\x7e\xa7\x15\x13\xab\xaa\x01\x20\x5c\x95\x4b\x0a\x74\x17\x06\x94\xeb\xab\xe0\xdd\x11\xa5\x40\x85\xea\x99\x38\xb9\xa2\xfc\x1c\x12\xde\x4e\xda\xe5\xf8\xa3\xd3\x12\x50\xfa\xa6\x3c\x9b\xef\xef\xd5\x54\x90\x8d\xa8\x1c\xde\x9e\xf4\x93\xa0\x60\x8c\xdf\xa4\xe9\xe9\x85\xfd\x40\x81\xea\xcb\x93\xf3\xb2\xe3\x9f\x08\x4c\x15\x7a\xe7\xbc\x28\x28\x03\x28\xa4\xee\x52\xb1\xda\x8e\x1f\xb0\xf4\x74\x50\xcb\xda\x54\x39\xc0\x3d\x1b\x9c\x9e\x5d\xbb\x6a\x0b\x68\xa8\x39\x34\x12\xa5\xc4\x42\x85\x40\x76\xc7\x96\x4b\xb3\xfc\x54\x88\x72\x1c\x4f\xb5\x8a\x5a\x03\x98\xe2\x79\xa2\x59\x4a\xcf\x80\x0a\x6d\x3b\x77\x4d\x75\x8a\x33\x00\xee\xfe\xc5\x36\x34\x1e\xa4\x08\x78\x86\xcc\xe7\xd0\xfc\xc1\x0b\xf0\x8a\x3c\xa7\x59\xfe\xf7\x45\x02\x83\x51\xce\xae\xb5\x54\x07\xf0\x40\x92\x81\xf6\x16\x2b\x76\x40\x95\x09\xf7\xcb\x8e\x75\x91\x54\x98\x08\x8f\x97\xcc\xe9\x53\x02\x6c\xe6\x09\x58\xe2\x1e\x3d\x0b\xd8\x36\xe4\x5c\x61\x70\x4c\x14\x30\x37\x5e\x69\x2a\x6c\x69\x86\x40\x45\x89\xb1\xf8\xf6\xba\x73\x80\xb6\xc3\x09\xcb\x3c\x65\xe2\x80\x77\x9d\xdb\xa6\x42\x43\x02\xc9\xc8\x74\xcd\x21\x58\x74\xa3\x2b\xa0\x70\x81\x9c\xd9\xf9\x6b\x86\x80\x7c\x62\xc3\x66\x7c\x85\x87\x01\x3f\x7c\x4d\x32\x69\x7a\x1b\x0a\xc8\x6c\xf0\x79\xfa\x5b\x8f\x23\xa0\xdd\x82\xa8\xc8\xed\x2f\x49\x64\xfc\xe5\xd7\xd2\xaf\x3c\x7e\x14\xd0\x73\x57\xc9\x1b\x09\x76\x2f\xc0\xa4\xb9\xa7\x9f\x99\xf6\x36\x92\x71\x17\x57\xcf\xf7\x00\x61\x1f\x40\xbe\x6a\xa5\xd8\x7c\xc5\x34\xc0\x6d\xcb\x86\x7c\xae\x26\xde\x80\x21\x9e\x9c\x9e\x8f\x03\xb4\x00\x77\xb3\x24\x9c\xbd\x92\xa6\x0c\xd8\x69\xb3\xe3\x02\xdd\x15\x1a\x40\xb3\x1b\xac\x5a\x57\xb7\x35\x50\xe1\x52\x0e\x24\xeb\x7d\x90\x03\xfc\xc4\xfd\x6e\xfd\xd4\x7e\x5f\xc0\x0f\xde\xfc\x1e\xd3\x7c\x4d\x64\x3c\xb9\xb2\xfd\xfb\x5d\x8d\x20\xc0\xee\x4f\xbb\x6e\x35\xd7\xd9\x02\xa5\x84\xef\x4f\x48\x4c\xb9\x7f\x0e\x30\xb9\xdc\x86\xe9\xc4\x7b\x27\x40\x87\xcf\x27\x17\x05\x45\xbd\x00\xb7\x04\xf8\xd3\x1c\xbd\xed\x04\xc8\xb3\xc2\x2b\xc2\x2b\xed\x05\x78\x90\xfc\xed\xa7\x93\xf2\x65\xc0\xd1\x3a\x8f\x4d\x8f\xb5\x2e\x03\xf2\xe7\xe9\xcc\x84\x46\xf8\x02\x96\xfe\xa0\x67\x1a\x09\xf2\x05\x6c\x4b\xdb\x54\x3a\xe3\xc3\x0f\x38\xa5\xf9\xba\xb8\xd3\x9a\x13\x70\xa6\x76\x5f\x48\xd6\x06\x6d\xc0\xbd\x76\x1d\xa2\xcf\x32\xc5\x00\x5b\x12\xd6\x66\xbf\xff\x39\x47\xa0\x37\xbd\x23\x17\xc7\xb9\x68\x32\x46\x4c\x71\x18\x8d\xcc\x4a\x01\xb2\x05\xdc\x1a\x73\x8d\xe6\x04\x3c\x59\xcc\x54\xa3\x79\x4d\x09\x90\x26\x27\x52\x3d\x5f\xf5\x2a\x15\xd4\x6c\x5f\x6a\x34\xa5\x35\x92\xf0\x10\x8f\x85\xac\xd6\x83\x01\x12\x72\x7d\x1a\x8e\xea\x51\xf6\x07\x5c\x7e\xf3\x8c\xf9\x8a\x98\x1c\x60\x54\xb3\x30\x93\xbe\xaf\x32\xe0\xf5\x73\xb5\x76\xbf\x14\x25\x00\x07\x05\x8f\xdd\x7a\xed\xa0\x06\x68\x74\x0d\x52\x8d\xd9\xe4\x01\xd7\x8b\x05\xb2\x55\x86\x09\x02\xbe\xc9\xab\xe8\x4c\xef\x5e\x21\xd0\x87\xc9\x7f\xe4\x35\x39\x8e\x8c\xc5\x4b\x42\x3c\xae\xea\x1c\x80\xbd\x32\xde\xac\xdb\xd3\x91\xc0\xa0\x84\x07\xf1\xef\x54\x8f\x01\x12\x6c\xaf\x52\x9f\xbc\xde\x0d\x78\x51\x44\xb8\xfb\xc6\x9c\x32\xa0\x6b\xd5\xe7\xc2\x37\xa5\xca\x80\xbe\xf7\x83\xe9\xef\x5a\x2d\x11\x98\xdd\xb2\x2c\xbc\x93\x5b\x10\xfe\x81\xe5\xe3\x9c\x9d\xfc\x4f\x35\xff\x85\x67\x01\x6b\x12\xbc\x2d\xb5\x01\x69\xb3\x97\xb7\x58\x47\xce\x13\x98\xcb\x35\xbc\xa8\x92\xae\x01\x58\x90\x71\x2b\xb0\xf3\xa3\x0a\x60\xb0\xd4\x45\xb7\x02\xbf\x1c\x12\x3e\x9e\xde\x69\xb0\x2c\xf7\x96\x84\x29\x16\xf3\xe3\x21\xca\xe6\xf0\x0f\xbc\xb6\x4e\xb2\x16\x11\x97\xfa\x17\x74\x36\xca\xbe\x0e\x4d\xf8\x40\x60\xa1\x96\xf8\xf0\xc6\x6b\x82\x80\x79\xd6\x23\x6f\x16\xd8\x6d\x01\x59\x35\x85\x5d\x79\xe6\x4d\x00\xd7\xee\xb9\x9b\x6f\xf8\x53\x1d\xf0\xb2\x35\x57\xfc\xc5\x37\xdb\x00\xd3\x9e\xb8\xd2\x14\xbf\xe6\xa3\x42\xd1\x8b\x0c\xdb\xbe\xba\x8f\x04\x05\xa5\x32\xc7\xf5\xdb\x4a\x7f\x11\x28\xba\x93\x81\xd3\x2b\x7c\x2b\xa0\x80\x46\x84\xd4\x21\x57\x7d\x32\xae\xab\x79\x3a\xed\xce\x61\x0e\xf8\x4d\xda\x67\x2d\x7b\xbe\x26\x60\xaa\xe8\xd0\x33\xad\x6a\x7a\x40\xb9\xf6\x5b\x3a\x21\x06\x3f\x09\x64\x9f\x5b\xb9\xbb\x63\xac\x92\x8c\xeb\x6d\x93\xee\xec\xfe\xd0\x4d\x46\xc5\x45\xf3\x0f\x42\x44\x3b\x60\xe7\x45\xf1\x99\x97\x1d\xc1\x80\xba\xb1\x89\x35\x8d\x57\xd3\x00\x35\x33\x2e\x3c\x14\x28\x74\x00\x7c\x91\x77\xf0\xd4\x83\xbd\xf6\x80\x9d\xde\x81\x92\x4f\x92\xdc\x01\xdf\x4a\x4c\xd3\xae\xff\xa2\x03\xf8\xb8\x75\x50\x78\x25\xb4\x92\x0a\xb6\x83\xaa\x7e\x7f\x41\xb3\xa3\x7a\x7a\xf9\x0f\x2e\x3a\xde\x99\x36\x0f\xae\xa5\xc2\xbc\xb5\x3f\xc3\x4e\x65\xea\xf2\xd9\xc0\x28\xf1\x2f\xfc\xb7\xd1\x97\x7f\xe5\x6f\xfa\x3f\x22\x6d\xbf\x98\x8f\xfd\x62\x3c\xe0\xcc\xaa\x2d\x43\x7e\x59\x29\xff\x7f\x10\xb6\xe3\x2f\x5e\xb9\x56\x00\x78\x6f\x57\x32\xa7\xc2\x83\x7c\x40\x45\x93\x9f\xb5\xa6\x39\x37\x01\x79\xcf\xaa\xaf\x1e\xfb\x9d\x0d\xc8\xe0\xf6\x7b\x30\xa5\x26\x98\x0a\xc1\x31\x8f\x03\xb7\x54\x07\x03\xb2\x9a\x58\xec\xd0\x6f\x29\x00\xec\xfb\x10\xe4\xf0\x17\x56\x73\x89\xa2\x8f\xa7\xa9\x4b\xc0\x8f\x99\x16\x7b\x93\x26\xc0\xb8\xb5\xf7\x1f\x48\xcb\xdc\x23\x63\x5e\xb7\x2c\xd3\xda\x9d\xf5\x64\x54\x96\x27\xa9\x4c\x0e\xd4\x91\xb1\xae\xa3\x99\xa5\x3a\xe4\x3e\x60\x77\xbd\x66\x51\x78\x57\x10\xe0\xef\x2c\x93\x2b\x75\x7e\xd1\x80\xef\x2f\x97\xde\x1d\x1b\x72\x04\xdc\xb3\x33\x66\xeb\xaa\xb8\xcb\x80\x93\x75\x2c\x5a\xc7\x6d\xa2\x00\x17\x3a\xab\x2c\x72\x0b\x13\x01\x8b\x60\x71\xb2\x25\xe6\x32\xe0\xe6\xd4\x74\xae\x19\xdf\x40\xc0\x05\xd6\x1b\x59\xdb\x7c\x6f\x91\x70\xf5\x99\xde\xfe\xe4\xcc\x43\x40\xc1\xa0\x45\xda\x97\x99\x81\x2d\x80\x2e\x73\x8f\xbf\x38\xbc\xd4\x01\xfc\xf2\xbd\x57\x86\x6d\x58\x9e\x0a\x82\x0b\x67\x15\xe2\xb4\xbb\x09\x54\x58\xf3\x66\xd9\x54\x52\x0d\x70\x5a\x8e\x61\x7f\x6f\xb7\x08\xe0\x72\xab\xba\x16\x3d\xd3\x5a\xc0\x13\x2f\x69\xfa\xb4\xe8\xdd\x00\x8d\x45\x1e\x09\xe9\x1f\x73\x02\xf4\xe1\xbc\xe6\xf0\xe2\xb6\x3e\x2c\xec\xb5\x9b\x29\xaa\xd5\xf8\xb3\xa2\x0c\x3f\x5b\xd6\x96\x00\x64\xb4\x5e\x7b\x81\xc3\xca\x05\x50\x85\x67\xf2\xa5\xf2\x51\x55\xc0\xd5\x11\xea\x3b\x17\x05\x39\xa9\x70\xfb\xeb\xfb\xda\xa3\x97\xda\x09\x8c\xfc\x69\x7b\x6c\x6c\x74\x3d\xe0\x31\x4e\xab\x87\x0d\xbd\xc2\x80\x0c\x6f\x4b\xf4\x36\x3b\x31\x03\x5e\x67\xd1\xda\x19\xe8\x3d\x46\xe0\x4c\x6d\xd2\x93\x49\x9a\xed\x40\xc1\xe8\x84\x08\x37\x6d\x3e\x27\x15\xc6\xce\x8f\x0f\xdf\xb9\xc8\x0e\xb8\x21\xc0\xdc\x60\xe7\xef\x3a\xc0\xab\xe9\x91\x7b\xc8\x20\x08\x68\xb4\xfe\x9e\xa8\x9f\x83\x0c\xe0\xbb\x59\xc7\x9c\xcf\x91\x9b\xa9\xf0\x80\x37\x59\xd7\x2e\xe9\x3c\x60\xf1\xfe\xa6\x0f\x2c\x9f\x8f\x53\xe1\xc4\x1b\x01\xfa\x12\x15\x4d\xc0\xc8\xc7\x02\x9a\x57\xd8\x4d\x01\x55\x0b\x1a\x93\xfa\x1c\xa6\x89\x7f\x20\x2c\x3a\xbe\x75\xd5\xd7\xd7\xff\x02\x53\xc1\xaf\x54\x5a\x76\x2d\x40\xe5\x94\xbe\xe8\x38\x7f\x46\xc0\x5b\x11\x1f\x9f\x5c\xdb\xc6\x45\x85\x30\x41\x5e\x03\xd1\x41\x76\xc0\xe0\x6d\x4f\x4e\xd7\x39\x8e\x12\xc8\x52\xe0\x94\xaf\x9a\xb9\x01\x28\x90\x56\x57\xf8\xf5\xc1\xf6\x15\x81\x1d\xd3\x3b\x47\xe2\xf7\xb0\x00\x46\x57\x2e\x48\xe8\xb2\x4f\x12\x28\x93\x78\xc6\x3b\xbc\xc4\x0c\xd0\x84\xcd\x63\xd5\xf9\x06\x53\xc0\x9a\x1b\xed\x41\xeb\xc5\xc4\x00\x19\x4b\x7f\xc7\x65\x26\x30\x01\xda\xf4\xba\x27\x85\x38\x4e\x10\x38\xb5\xa1\x79\x5d\x5c\xd4\x3c\x81\x86\x92\x5f\x5f\xde\x9d\x11\x04\x0a\x7c\x2a\x9f\x4f\x07\x5c\x7b\x4b\xc2\x4b\x97\x32\x6f\xa5\xb4\xed\x07\x3c\x70\xae\xff\xd9\xfd\x7b\x2d\x04\xea\x1d\x0a\x40\x01\x36\x36\xa0\x60\x8b\xb6\xba\x68\xcc\xd4\x14\x81\xac\x12\x8d\xb4\xd9\x87\xf6\x01\x5e\xb2\x49\x8d\x7c\x28\x7b\x0b\xb0\xed\x70\x00\x79\xa2\x3f\x0b\xf0\xe7\x1b\x42\x24\x40\x7a\x3b\x15\xfa\x1e\x09\x3d\x4f\x9b\xa0\xa5\x42\xa7\x8b\xa6\xf1\x74\xdf\x2c\x81\x8c\x0a\x89\xb4\x1e\xc6\x66\x80\xaf\xc2\x5f\x38\xdf\x93\x91\x03\x2c\x8b\xbd\x36\x2a\x15\xfa\x9c\x40\x66\xba\x40\xfe\xd6\x7b\x3c\x80\xb5\xad\x29\xbe\x42\xde\xb6\x80\xda\xd1\x9c\x2a\xaf\x18\xef\x92\x71\xa7\x97\xf6\xca\x6a\xe3\x44\x12\x0a\x1f\x5b\xfd\x61\xca\x7c\x27\xfc\x2f\xa8\x27\x4a\x29\xca\x94\x30\x03\xca\x31\xef\xda\x95\xea\xc0\x07\x18\xf4\xa4\x62\xec\x5d\xce\x7a\x40\xff\x97\x27\x3f\x25\x5d\xb1\xa4\x42\xd7\x89\xc9\x7b\x42\x99\xbb\x00\x6f\x8f\xd6\x7c\xd1\xbb\x41\x0b\x78\x24\x59\xc5\xba\x2c\xdb\x14\xf0\xc8\x11\x1f\x5f\xaf\x8f\x7a\x80\x97\x19\xb7\x19\x6a\xf3\x16\x51\x61\xe0\xfc\x8b\x37\xdd\x5f\xaf\x00\xb6\xa6\xbc\x32\xf3\xcc\x4b\x03\xec\x6d\xb3\x89\x8b\xf2\x3e\x05\xe8\x69\x9d\x11\xfc\xd0\xdc\x14\x50\x10\x87\x4b\xca\x8c\xd7\x00\x1e\xb0\x35\xe1\x55\xbc\xe6\x00\x18\x68\x26\xfd\x98\xb3\xc0\x01\x70\xc7\x44\xa1\x82\xe8\x81\x5c\xc0\x27\x51\xc5\x37\xe8\x8e\x2a\x00\x1a\xdf\xbe\xac\x92\x71\x8f\x09\xf0\xc6\xf3\x89\xb2\xc6\xe4\x69\x02\x7f\xfd\x68\xfb\xed\x72\xca\x0c\x70\x5c\xf9\x39\x5d\xc9\xe7\xad\x80\xc2\xde\x2f\x52\x0f\xe7\x69\x00\x3e\xff\x3d\xe8\x60\xf8\x89\x01\xb0\xe8\xe8\xb9\x1d\xa1\x27\xc6\x09\x94\x60\x73\xce\x5f\xaa\x72\x02\x0a\xae\x74\x58\xe6\x7b\x7c\xe7\x03\x54\x7e\x53\x38\xcd\x2d\xb9\x44\x60\x5c\x87\x8e\x3f\xe3\xdb\x41\x02\x79\xa3\xf7\x84\x84\xed\x14\x07\x8c\x75\x8c\xd9\xf8\x15\x44\x00\xdd\xf5\x3b\xe6\xa4\xb3\xa7\x09\xbc\x66\xbb\x6a\x4b\xdb\xc2\x47\x12\x76\x72\xd3\xf0\x8d\xde\xca\x03\x54\x9e\xbf\x5b\x3b\xf2\x07\x7a\x72\xf7\xcb\xaf\x79\xf3\x02\xce\x2f\xec\xb8\xb2\x8a\x73\x0b\xe0\x31\x73\x97\x73\x1a\x7e\xdf\x08\x8c\xba\x5c\xdb\x50\x9a\x2a\x02\x78\x71\x03\x7d\x5c\x90\xdc\x30\x81\x5c\x7c\x3e\xee\x76\x5f\x04\x81\x02\xbd\xbb\xda\x5d\x2a\x46\x3c\x54\x78\xcd\xed\x97\x2e\xca\x25\x0b\xc8\xc4\x1b\x7b\x76\x24\x68\x3b\xa0\xfa\xa1\x8f\x37\x77\x6c\x15\x07\xf4\x5e\x1d\x39\x3d\x9c\xc4\x07\xf8\xf1\x92\x09\xbd\xe7\x77\x2d\x40\x61\x9f\x6d\x91\x53\x8d\x9a\x80\x87\x45\x77\x9f\xee\xb1\x91\x01\x5c\xcb\x14\xb0\x31\xdf\x52\x0e\x30\x2d\xe5\x4e\x6b\xd8\xfd\x18\xc0\x8b\xae\xdc\x6a\x5f\x8b\x1a\x00\xaf\x4d\xce\x79\x4b\x6e\xcb\x07\x8c\x67\x17\xd9\xaa\xbe\xbe\x01\xd0\xc2\xd7\xff\x4c\x81\x68\x35\x60\xe4\x37\x33\xe2\x2f\x7e\x97\x8f\xeb\x04\xdf\xab\x06\xdc\xd4\xe3\x64\x13\xcb\x51\x0d\xd8\x6c\xbd\x95\xfd\xef\xe8\x52\xfd\x50\xd7\xd3\x9d\x01\xff\x42\xc3\xe2\xb6\x55\x6d\x57\xe2\x01\x7b\x19\xa3\xae\x3b\xc8\x5a\x03\x72\xf4\xcf\x6b\x9c\x48\xd8\x02\x18\xb9\x35\xbf\xcd\xec\x44\x37\x81\x3e\xc9\xd3\xaa\x07\xf3\x2b\x01\x1d\x12\x14\x7f\x45\x4b\xf4\x92\x91\x9f\x36\xbc\x8e\x4e\xa2\x95\x8c\x1f\x07\x98\x4c\xfe\x8e\x46\xf8\xb6\xae\xe8\xdf\x3a\x0b\xb8\x6e\x47\x45\x9f\xce\x19\x05\x40\x89\xfb\x5f\xd6\xe6\x70\xb5\xfc\x0b\x81\x6d\xdd\xab\x73\xff\x0b\x5c\x8e\x74\xfe\x6b\x8d\xb2\x00\xd5\x6f\xbd\xb5\xe9\xb3\xcc\x05\x94\x73\x2c\xd9\xf3\xf2\x0f\xc6\xf7\x1c\x8a\x5f\x1e\x6f\x22\xe3\xb9\xb5\xa5\x0a\x7f\x47\xd6\x6f\x7d\x9e\xb8\x45\x0e\x50\x95\xff\xc0\xc3\x64\xbf\xf8\x82\x4e\x1a\xe0\x17\xd6\x16\xbe\xaa\xa5\x04\xc0\x45\xce\xf1\xbb\x96\x8a\x81\x80\xd7\x9d\x04\x44\x8e\xef\x4e\x03\x5c\x28\x98\x36\x64\xeb\x4c\xa0\x2a\x8c\x8b\xd7\x0b\xae\xf1\xa4\x03\x4a\xac\x31\x9b\x49\x67\x48\x07\xcc\x48\xd0\x2c\x79\x76\xfb\x36\x60\x2f\x5d\x1f\x8b\x82\x5d\x12\x60\x9d\xf2\x4c\xc5\x00\x77\x3a\xe0\x3a\xae\x7d\xbd\xb7\x3c\xb6\x01\x0a\x24\xbf\xd3\x35\xdd\x71\x9f\x0a\x3b\x9e\xd8\x0b\xfe\x72\xe6\x05\xac\x86\x58\xfa\xe8\xac\x2b\x80\x67\x12\xee\x4e\x3f\x36\xec\x21\xe3\xab\x8b\xe6\x89\x7f\xd1\xf3\x41\x76\x6b\xc7\x1f\xfc\xe7\x18\xa5\xc7\x0d\x8f\x3b\xb6\x31\xff\x4f\x14\x9d\xe8\x9a\xbf\x24\xfc\x82\xc0\xcc\xb4\x89\x35\xc5\xf5\x69\x80\x56\xf7\x34\x69\xbb\xd7\x1e\x02\x9c\x76\x3e\x3b\x7d\xf0\x13\x07\x15\xfc\x54\x14\xf3\x54\x36\xe9\x53\x41\x67\x5b\xcc\x43\xde\x9e\xaf\x04\xae\x5f\xf8\x55\xe9\xba\x91\x03\x90\x4f\xef\x90\xfe\x78\xe8\x2a\x2a\x7c\x5b\x53\xfc\xf1\xf6\xd1\xd7\x04\xf2\x9d\x68\xab\x1a\xfe\xbe\x09\x50\x44\x7b\x86\xbe\xca\xeb\x10\xe0\xcd\x14\x02\x57\x0f\xea\x52\xc1\x7b\x92\xa3\xff\xf0\x7a\x3a\xc0\xa8\x2f\x6d\x61\x47\x8d\x04\x00\xf7\x5c\x2c\x0b\x9a\x7d\xb3\x8f\x0a\xb1\x4d\xec\xb7\x2a\x1d\x77\x50\x61\x6f\xfc\xe0\xbc\xc1\x9a\xcd\x54\xb0\xbf\x22\x3d\x6a\x6b\xc4\x04\x98\xb7\xf3\x93\x9e\x97\xba\x04\xa0\x0d\x10\x4f\x92\x12\x3e\x12\xb8\xfd\x48\xe6\xa6\x5d\x4b\x2a\x40\x85\x8b\xda\x86\x36\x71\xb4\x80\x57\x5e\x3d\xd0\x13\x5b\x60\x07\x94\xe5\x39\x2f\x3a\xee\x22\x0f\x78\xae\xb1\xac\xa9\x31\x94\x0e\x70\x3c\xb7\x56\xc4\x72\x03\x2d\x15\x8e\x37\x12\x3d\x06\xac\xef\x49\xf8\xfa\x75\xc7\xcb\x4c\xf6\xcd\x80\x6f\xde\x30\xde\x2e\x09\x3a\xf1\x2f\x6c\x1c\x5e\x5d\x7d\xce\x8a\xf7\x5f\x78\x25\xf4\x3d\xf1\x7e\x68\x3f\x09\xfb\x3f\x4b\xea\xd8\xd0\x77\x03\x56\x28\x76\x3c\xd3\x3d\xe2\x0b\xf8\xd4\xa1\x22\x38\xd8\x29\x94\xaa\xc8\xe2\x98\x46\x7e\x52\x0c\xa0\xe4\x9d\x23\x6a\x93\xcc\xb1\x54\xe5\x8c\x4f\xaf\xe8\x5c\x70\x21\x81\x69\x6d\xa2\xbf\xc4\x07\x09\x40\xd3\xeb\x37\x9e\xbe\x35\xe3\xa7\x82\x9a\x19\xb7\x55\xa7\x4d\x33\x81\x32\xf7\xd8\x07\x0a\x0e\x69\x02\x2a\x7c\xf0\xbe\x96\xb0\xf0\xe7\x34\xde\xed\xe7\xe2\x8c\x9a\x23\xf0\x50\xf8\x86\x63\x8f\x3b\xf4\xe0\x1f\x98\xe5\xf5\x88\x96\x99\xdf\xf0\x2f\xe0\xeb\xdc\x8b\x5d\x8f\xfe\xec\x52\xf4\xa7\x8e\x8a\xdd\x16\x07\x0c\x3e\x16\xc5\xf8\xe8\xa5\x12\x20\x77\xc0\x5c\xee\x8a\x99\x38\x60\xfa\xcb\xd4\xfa\x73\x0e\x05\x64\xdc\xe5\x7d\xcc\xfd\xfa\x55\x55\x40\xf9\xe5\x58\x9e\xed\xac\xc2\x80\x3a\x17\x44\xad\xaa\xc4\x5f\x01\x32\x8a\x5c\xbd\xf8\x5c\x4a\x16\xd0\x20\xf2\x78\x49\x4a\x4f\x03\x19\x55\xfc\x97\xd5\x59\x8e\x55\xc0\xc2\x1a\xc9\xd3\x7f\x5e\xf1\xde\xb8\xc6\xc9\x93\x6f\x0e\x52\xc2\xe0\xe7\xea\xbd\xbb\x3c\x2d\xff\x85\xfe\xaa\xa2\x38\x7f\x5a\x71\xc0\x7b\x7d\xdf\xf6\xc4\xbe\x67\x05\xbc\xb4\xe5\xbc\x9c\x3d\x97\x02\xa0\x61\xee\x06\xbf\xbd\x65\x5c\x80\x62\x67\xfc\x05\xae\x1e\x99\x22\x28\xf0\x1c\x4e\x7e\x67\x26\xf7\x91\x84\x72\x0f\xeb\x14\xbc\x7e\x6e\x04\x8c\x70\x89\xbc\x56\x6c\x54\x01\xf8\xbc\xa4\x34\xe7\xef\xf9\x69\xe6\x3d\x50\x3f\xe2\x57\x0a\x38\xfa\x39\x5f\x6f\x5f\x50\x29\x60\xf1\xa9\xa3\xa6\x2b\x19\x39\x80\x5f\x6e\x15\xf4\x0c\x92\x12\xa8\x46\x8f\xba\x87\xa4\xed\x2f\xd9\x02\x5e\x7d\xf9\xfb\xfc\xc8\x24\x3d\xe0\x49\xd7\x9e\x14\x05\xb5\x4e\x02\x47\x5a\xdc\x9d\x6b\x2f\x03\x50\x21\xd9\x28\x5b\x3f\x2d\x93\xc0\xd3\xb7\x7f\x84\xc3\x5d\x73\xc0\xf0\xda\xc5\x55\x67\x3f\x5b\x51\xa1\xa8\x70\xb5\x3f\x77\x31\x27\xa0\xcf\x92\xd1\x15\x9f\xe8\x71\x02\x7f\xcc\x4b\xf9\x67\x6c\x78\x08\xb8\x66\x6a\x5b\x46\xc3\xe2\x03\xc0\x53\xe5\x5f\x4e\xfc\xda\xfc\x10\xd0\xca\xbd\xc8\x99\xf9\x9d\x0a\xe0\xb6\x56\x77\xf3\xa9\x9e\x59\x02\x6d\xa5\x9d\x8f\x4d\xa9\x12\x40\xc1\x35\xb2\x40\x6d\x90\x1e\x2b\x15\xde\x08\xb8\xb9\x9a\x38\xba\x51\x21\xcd\x65\x89\xdb\xdc\x8f\x13\x30\xbd\x6d\x4f\x90\xc7\x89\x26\x02\x8b\x79\x03\xdf\x19\x6f\xd4\x01\x8c\xa8\x37\x1c\x9a\x90\xdf\x4d\x05\x3a\x5e\xf7\x73\x4e\xa6\x87\xa9\x50\x5f\xf3\x6a\x4b\x1c\x4b\x1a\x60\x6e\x42\x61\xd9\x4b\xb9\x9b\x80\x57\xae\xfd\x6a\x0b\xf5\x6d\x03\xb4\x4c\x7a\x3b\xfa\xe2\xcf\x55\x05\x71\xf5\x6d\xef\x34\xee\x02\xde\x65\x1e\x7a\xf1\xf6\x0f\x74\x77\xe5\x0c\xd4\x17\xbb\x51\xc1\x06\xe8\xc5\x6e\x33\xb8\x01\x56\xc7\x46\xc5\xeb\x19\xba\x01\xf6\xd7\x25\x46\x7e\xe9\x74\x27\xe3\xf6\xf1\xaf\xc3\xca\x6b\xed\xa8\x46\x4c\x21\x07\xeb\x18\xbd\x39\x00\x35\x3f\x28\x8a\xc5\x26\x0d\x90\xd0\xaa\x4f\x91\xfe\xc0\xe6\x6c\xa0\xe0\xc6\xde\x25\x8f\x88\x9a\x22\x12\x05\xad\x31\xb1\xfc\x1f\xed\xb2\x81\x82\x47\xeb\x56\x69\x64\xfa\xa9\x01\x0e\x49\xe7\x3c\x8d\x9c\xef\x22\x50\x74\x5e\xae\x69\xf3\xb5\x10\x32\x4a\x8a\xcc\x72\x86\x1e\x56\x00\x0a\xd8\x64\x2e\x6a\x62\xd1\x2e\xc0\x94\x17\x8d\x1b\xd9\xfd\x24\x01\x0f\x35\x85\xbb\x98\x37\x6b\x01\x16\x7f\xbc\x79\x38\x2f\x60\x07\xa0\xe7\xce\x1b\x26\xfa\x42\x8b\x04\x7e\x71\x8d\x2d\x18\xf8\xc9\x06\x14\xf4\x1e\x2d\x14\x67\x9b\xf8\x4a\xe0\xc1\xa9\xcc\xe9\x55\xae\x97\x01\xd3\xdf\xba\x6f\x53\xfb\x32\x4b\xe0\xa6\x1b\xb3\xbe\x52\x4b\xea\x40\xc1\xba\x23\x21\x33\xb9\xfe\xc7\xa9\x30\x90\x68\x14\xbb\xee\x24\x37\xa0\xd3\x33\xd1\xc1\xbd\xbd\x83\x04\x8a\x16\xb4\xd2\x94\x56\xa5\x01\xaa\x7b\x0a\x86\xb7\xf9\xa6\x01\x8e\x59\x4a\x46\x0f\xba\xdd\x27\xe1\x63\xc9\x25\xa7\x1f\x96\x11\x40\xc1\x7f\xee\xb2\x43\xed\xe3\x63\x16\x3d\xa6\x80\xb7\x27\x84\x34\xae\xad\xd7\x01\xa4\xfd\xba\x69\x79\x58\xf0\x27\x81\x7b\x53\xae\x7e\xb1\x8f\x3d\x08\x14\x4c\x1c\xf1\xe7\x73\xbf\xde\x49\xc2\xb0\x6a\x53\xa3\xed\x5c\xa2\x80\x76\xf5\x1a\x5b\x0c\x53\x9b\x01\xf7\xf5\x2d\xf9\xdc\xab\x7a\x01\xc8\x96\x62\x71\xd1\xc9\xad\x8c\x0a\xe1\xea\x33\x46\x3d\x1e\x65\x80\x6e\x1f\xcf\x44\xfd\x2d\xe7\xb9\x7f\x1f\x3c\xf9\x67\xdf\xa0\x18\xba\xbe\xb5\x38\xac\x8b\x8c\xc2\xa6\x31\xad\xc5\xe6\xbb\x00\x27\x20\x3b\xd4\xf1\xb7\x1a\x60\x27\xdd\x8a\xf5\xe2\x73\x01\xc0\xa3\xf7\x1f\x04\x5a\x98\x6a\x03\xb2\x9e\x9e\x5c\xb3\xeb\x22\x33\xa0\xa6\x21\x57\xd9\x87\xb5\x01\x54\x08\x1b\xe3\xa7\xb9\xc5\xea\x09\xa8\xae\x94\x1b\x36\x65\x43\x0b\xd8\x11\x39\xa2\x77\xd9\x43\x19\xf0\xde\xc4\xe9\x62\xe5\x72\x09\x40\x6b\xbe\xbd\xf4\x5e\x1b\xb6\x51\xe1\xe9\x8d\x8b\x8a\xd2\xe2\x2f\x49\x28\xff\xd0\x2b\xc7\x29\x4c\x97\x8c\xa4\x81\x9f\x06\xa2\x4a\xf6\x64\xac\xdb\xb0\xd8\xcb\xc8\xef\x41\xc6\xef\xef\xc4\xf3\x0f\xe4\xed\x20\xa3\x07\x99\x58\x4e\xe7\x10\x02\x4c\xad\x66\xe0\xe9\xf4\x71\x07\x94\xaf\x77\x58\x0a\x18\x98\x27\x90\x39\x36\xe4\xa8\xca\x6d\x21\xa0\x40\xe2\x67\xfb\xed\x49\x8f\xa7\x24\x64\xec\x14\x0a\xcf\x7b\x29\x0f\xc8\xc9\x55\xe7\xa1\xb1\x51\x0a\xb0\x24\xb1\xf4\x40\xbc\x7d\x30\xe0\x83\xb6\x82\x03\x46\x5e\x72\x80\xcf\xf6\xc4\x7d\x5e\xb5\xa2\x0e\xd8\x45\x2b\x35\xf9\x52\x76\x88\xc0\x91\x1f\x5a\xb7\xf7\xf1\x31\x02\x4a\x79\xca\x1e\x91\xaa\xc9\x06\xb4\x19\xa6\x95\xf9\x8b\xeb\x3a\xf7\xba\x4e\x77\x85\x01\xbe\xab\xcd\x2e\xdc\x64\xac\x4f\x85\x35\x8c\x61\xda\x5a\x13\x4c\xff\xc2\x3a\x71\x9e\x43\x37\xd9\xe8\xff\x85\xf6\xeb\xfb\x8c\x27\x2a\xa4\xa8\xf0\x95\x3f\x90\xff\xc0\x55\x66\xc0\xfb\x77\x23\xd2\x1a\x8f\xf3\x02\x16\xdd\xa5\xdf\x71\xfa\x98\x0e\x15\x2c\x44\xae\x0e\x14\x1d\xcf\x27\x61\xd6\x81\x0b\x7b\xe3\x98\x36\x00\x05\x09\x68\x77\xe7\x3e\xcc\x13\x14\x14\xd8\x5e\x73\xf7\x6e\x69\x25\xf0\xfd\xc3\x79\x3f\x01\xdf\x8f\x04\xd2\x64\xdd\x49\x90\xb3\x1a\x21\x30\x7a\x64\xf1\xe8\xce\x97\x62\x40\x81\x9e\xe3\x33\xa5\x2b\xeb\xe6\x08\x0a\xda\xae\x1c\xbc\xaf\xbf\x63\x99\xc0\xfd\xe1\xfc\xde\x55\xd7\x09\x40\x39\x23\x3e\x1a\xfa\x57\xdb\x01\x6b\xed\x38\xc5\x6e\xc8\xed\x00\x7c\x7d\x2f\xeb\x5b\x89\x8d\x12\x20\x6d\xbd\x9b\xf9\xa0\x5e\x12\x99\x52\x50\x7d\x7c\xe5\x60\x9b\x18\x60\x46\x72\xb7\x76\xbe\xc9\x76\x2a\x7c\x12\xc8\xa1\x6f\xec\xef\x27\xfe\x81\xb5\x12\xeb\x5e\xa2\xd6\x7b\x12\x36\xa4\x29\xb3\xd7\xfd\xd6\x04\x2c\xd9\xcb\x3f\xff\x7c\xe8\x3a\x15\xde\xe6\xbe\xc8\x75\xe1\x12\x02\x4c\xaf\x1c\x2f\x3f\x70\xf6\x1d\x09\x4f\x10\x51\xee\xb9\x4f\xf9\x80\x02\x73\xd5\xfe\x8e\xe6\xfa\x31\x82\x02\xa3\xf5\x78\x9d\xb5\x4a\x1c\xf0\x73\x61\xb3\xd6\x96\x98\x8f\x64\x4a\xa9\xbb\x3e\x57\xe8\x6d\xf7\x8c\xa0\xa0\x53\xed\xfb\x95\xc8\xa7\x3c\xf0\x0f\xf0\xa7\x3f\xc9\xb6\x3b\x33\x4d\xfc\x03\x5d\x2e\xa4\x63\x86\x7f\x76\x2d\x03\xc9\xfb\x22\xcc\xd7\xa8\x01\x5e\xb5\xf4\x9b\x60\xea\x38\x45\x85\x71\x0e\x52\x0b\xe3\x2f\x6e\xc0\x3d\x57\xe5\x22\x42\x1e\xba\x03\x26\x6d\xb1\xf5\x79\xfb\x21\x1f\xf0\x40\x69\x4a\xe4\xc7\xe9\x5e\x02\xaf\x94\x77\x5a\xa8\x9d\x02\xc0\x0f\x1e\xec\x70\xde\x5d\x19\xd0\x53\xdd\xbf\xf2\xe2\x57\x39\xc0\x15\x1e\x52\xf4\xc7\xf3\x82\x80\xe9\x9f\x9f\x4c\xdd\x14\xe6\x00\x1c\xcc\x3c\x31\x5b\xb5\x9f\x05\x30\xb5\x4b\x3e\x62\x34\x65\x35\xa0\x85\x51\xfa\xf7\xb1\xe6\x2f\x04\x4a\x18\xb7\x9d\x19\xc9\x16\x07\xec\x3b\x71\xfd\xf0\x96\xda\x63\x80\xfe\xaa\xac\x8c\x6a\xdb\xf6\x03\xba\x9d\x98\x7b\x53\x24\xc4\x0d\xb8\xf5\x85\x57\x27\x0b\x79\x17\xa0\xc9\x97\xda\xf8\xf6\x82\x38\x40\x7e\x9a\xf8\xf4\xc2\xe0\x50\x2a\x14\xb3\xa8\xc7\xba\x87\x7f\x27\x90\xe7\xb6\xaa\x9b\x9b\x4d\x1e\xe0\xeb\xfa\x77\x17\x9e\x99\xf6\x91\x51\x6b\xdd\xef\x7b\x02\x2d\x9f\xc8\x78\x46\xca\x1b\x53\x8f\xe4\x01\xfa\xb0\xbd\x60\xdf\xf2\x59\x03\xf0\xa6\xcd\xd1\xa6\x6d\x4d\x02\x80\xe7\x9d\x31\xe9\x50\x71\x03\xe0\x8b\xf5\x5e\x9b\xcd\xff\xc0\x6b\xba\x76\xd5\x8a\x8a\x2a\xe0\x61\x89\xf0\x36\x52\xf9\x24\x81\x3f\xef\xa4\xc6\xa4\xd6\xab\x00\xa6\x3c\x74\x78\x2e\x30\x56\x49\x46\xf9\xaf\xfb\x54\x1b\x82\x49\x80\xa9\x8f\x17\xde\x91\xff\xc0\xe3\xde\xe0\xda\xc3\xd9\xbe\x80\x23\xcd\x4f\x9f\xf4\x44\x6d\x03\x1c\x7e\x3c\x37\xd9\x99\x22\x02\xe8\xd4\x58\x18\xfc\xa6\x7a\x3f\xa0\x61\x4a\xf6\x93\x9b\x1c\xcc\x80\xdb\x3f\xc7\x36\xd8\xd9\xcc\x10\x14\xf0\x47\x2b\x5c\xd2\xba\xf3\x9e\x84\x1d\x77\x5c\x9f\x0d\x4c\xac\x05\xb4\x53\x59\x5b\x27\x76\x5e\x89\x0a\x92\x75\x06\x0c\x3f\x07\x76\x00\x6e\xa3\x8b\xda\x51\x28\x7f\x18\xb0\xfa\xc3\x6b\x26\xfd\x7d\x37\x01\x79\x27\x7b\x54\x8e\xd1\xd2\x03\x3e\xe4\xea\xef\xdd\xd4\x73\x08\x50\xea\xe8\x43\xa7\xc7\x97\xce\x52\xc1\xcb\xf7\xde\xef\xf7\xcb\xc5\x24\xb4\xb0\xaa\x7f\x13\xce\x31\x4d\xe0\x58\xd6\xcd\x53\xe5\xdb\x17\xa8\x30\xbe\xa2\xfa\xa4\xa0\xaf\x94\x40\xd6\xbc\x7b\xd7\x3d\xf5\x73\x81\x02\x54\x3a\xed\x74\x30\xaf\x10\x90\x44\x7f\x7e\x75\xd7\xea\x43\x80\xda\x16\xdd\xb9\x30\xa6\x04\x98\xb7\xa3\x9a\x99\x7b\x2b\x3f\xe0\x58\x6f\x57\xa9\xe2\xd6\x3f\xef\xc3\xc9\x11\xbb\xaa\x63\x07\xa8\xe0\xf1\xfa\x52\x63\x38\xbf\x2d\x60\x47\xcb\xf5\x38\xe7\x55\x6b\x01\xdf\x4c\x1a\xa2\xa1\xc4\x3c\xf1\x0f\x24\xf6\x5f\x56\xd2\x6b\x92\x87\x7f\xa0\xb2\x2e\xfb\xb4\x44\xb7\x0c\xa0\x6a\x59\xf7\x88\x61\x3a\x0d\xe0\xe8\x27\x9a\x15\x83\x47\xf2\x54\x60\xfe\xa9\xca\xe9\xfa\x6c\x9a\x40\x36\x96\x2d\xe1\xf3\x8c\x73\x04\x7a\xd8\x3a\x9b\x85\xb7\x0b\x03\x1a\xf7\x65\x30\x38\x9f\x19\x26\x30\xfd\xc3\xf1\x59\xc5\xcd\xef\x08\xa4\x17\x8b\xfc\x50\xf1\x4c\x18\x70\xf1\x2d\x8d\x90\xb1\x2a\x1d\xe0\x2b\x9e\xf7\xa5\xcb\x29\x43\x04\x36\x95\x5e\x58\xd9\x1c\xc9\x04\x14\x7c\xd1\x9a\xbd\xf3\xd0\x60\x85\xc0\xc4\x5b\xe4\xbb\x85\x71\x9c\x80\xb7\x16\x36\xb2\x0a\x24\xe5\x01\xee\x10\x7f\x18\xd2\x50\x72\x10\x50\xd7\xe3\xf5\x89\xbb\xad\x56\x80\x8e\x86\xcf\xae\x5e\x64\xb3\x25\xa3\xd4\xe5\xfa\xc5\x1c\x79\x29\xc0\x5a\xa6\x4d\x2b\x4f\x55\x95\x01\xb9\xd8\xca\x37\x4b\xbd\x16\x02\x74\xe4\xd8\xbd\x41\x76\x66\x98\x40\xef\xd0\x87\xe9\x17\x5e\x10\x80\x2e\x7b\xaf\x4f\x90\xb8\xcf\x51\xe1\xd1\xc7\xf2\x8c\x47\x9d\x6b\x00\x0d\x43\x7f\xd2\x6b\x70\x4d\x11\xa8\x54\xb0\xc9\xe5\xcb\x8d\x5e\x02\xf3\x19\xc3\x4b\x32\x64\xed\x01\xbf\xeb\x2d\x9a\x1c\x8d\x33\x06\x3c\xa0\xfb\xc4\xbb\x48\x63\x90\xc0\x2b\xc3\xcf\x45\x98\x4e\x48\x01\x32\xb2\x04\x84\x4c\x16\xcb\x50\xe1\x5d\xda\xdb\xe7\x0d\xa7\x4e\x51\x61\x78\x8d\xfa\x7e\xe5\x10\x0e\xc0\x08\xf5\xbb\x9f\x0a\xd6\xff\x22\xf0\x8d\xd1\xc9\x62\x50\xf6\x01\x0a\xe4\x4d\x7c\x96\x57\xff\x59\x1c\xd8\x0a\x55\x73\xb6\x2f\xff\xd9\xc5\x6d\xcd\x39\x19\x1a\x22\x09\x28\x17\x35\xb6\xfd\xc4\xee\x53\x80\xb5\x74\x1c\x72\x4d\xf4\x5e\x80\x86\x5a\x32\x33\x8a\x07\x2f\x50\x15\xb7\x96\x0f\xe3\xe6\x19\x32\x80\x71\xe3\x7c\x92\xbb\x77\xaf\x01\x54\x79\x9f\x55\xe4\x1e\x7c\x13\x90\xe7\x38\xd9\x46\x6b\xcc\x00\x90\x3d\x73\x93\xcc\x26\xa6\x1e\x32\x06\xae\x5e\x3d\xf5\xc5\x96\x0c\xf8\xfb\xf3\xfb\xba\xe4\x80\x32\xc0\x96\x97\x6e\xd6\x29\x7f\x10\xa8\xaf\x39\xb6\x72\x62\x91\xc0\x91\xc8\xc3\xe1\x27\xca\xd2\x00\x9d\xdf\x5b\xda\xd8\xfd\xc1\x97\xde\xc6\x23\x09\xf7\xee\x50\xc1\x57\x5c\xad\x22\xa8\x60\x17\xe0\x69\x9a\x80\x57\xf4\x27\xe7\x08\x8c\xcd\x7e\x3c\xe4\x9c\xd6\x44\x05\xc9\xe5\xb3\xea\x8e\x99\x2f\x08\x1c\xdb\xd8\xff\xe8\x96\x28\x1b\x60\x47\xc8\x09\xbd\xbd\x3b\x4d\x00\x6f\xec\x01\x9d\xaa\x48\x2d\x40\x5d\x3f\x7a\x12\x83\x93\x34\x60\x94\x3a\xab\x8e\xb5\xe9\x16\xc0\xbc\xc7\x96\x39\xb4\x99\x9e\x80\x63\xb7\x9f\x7e\x2d\x7b\x24\x0d\xb8\xf4\xe0\xda\xee\x86\x56\x56\xc0\x39\xdb\x70\x8b\x7a\xbb\xdf\x04\x0e\x98\x34\xf0\x7e\xcc\xda\x00\x14\xf0\x28\x1f\x66\xda\x65\xb6\x48\x50\xb0\xf2\xba\xea\xad\xe0\x9d\x29\x02\x53\xbe\x56\x3a\xe4\xb6\x08\x00\x05\x0b\xec\xa3\x13\x17\x68\x26\x08\x0a\xc4\xbb\x12\x5a\x9c\x47\x19\x00\x19\x82\xd4\xa4\x3a\x2f\x7e\x27\x30\xe1\x45\x8d\xfb\x8d\x16\x51\xa0\xe0\xa0\x6a\xeb\xb0\xc9\x97\x15\x02\x75\x5c\xd6\x98\x4b\x1b\xcb\x02\x26\x5a\x35\x30\x5f\x0e\x2f\x24\xa3\x9a\xfd\x73\x73\x4b\x73\x63\x40\x8d\xd2\x4f\x66\x36\xf3\x59\x54\x10\x29\x55\x8c\x38\xa5\xbe\x16\x70\xc7\x4f\x41\xfd\xc9\x90\x40\x2a\xbc\x30\xe6\x65\x51\x58\x54\x00\xe4\x6e\xd5\xd2\x34\xae\x5a\x22\x50\xd8\xbb\xac\x92\xa4\x78\x02\x28\x48\xba\x9b\x12\x3c\xe1\xb8\x1e\x50\x3c\x3e\xa2\xcb\x4f\x40\x16\xd0\xf6\xfd\x72\x5f\xe6\x99\x59\x02\xe5\x33\x69\x0e\x9b\xb6\x55\x02\x05\x9c\xf9\xa6\x36\x0f\xef\x56\x02\x16\x1f\x72\xc9\xd8\xff\xa7\xac\xee\xd1\x34\xd8\x9d\x6e\xfb\x2f\x78\xd1\x26\x4c\x30\xfc\xd9\xc6\x27\x9d\xd5\x5a\xd9\xc5\x20\x06\x38\x5c\x78\x6c\xbf\xec\xad\xd7\x24\xf4\xbe\x35\x7c\xe2\x7a\xd9\x61\xa0\x60\x69\x43\xf4\xf9\xcb\xe9\x3b\xa9\x30\xf6\x29\x93\x79\x41\xe9\x15\x09\xfb\x0d\xa3\x03\xb4\x57\x6f\x02\x0a\x7a\x35\x43\xb9\x64\xcf\xbc\x24\x61\x68\xd8\x57\x8e\x9e\x35\x09\x64\x2c\xdf\xf4\xc6\xcd\x4d\xa1\x16\x70\x52\x45\xb1\xfc\xc7\xcf\xeb\x80\x8c\x51\x6c\x36\x03\xfc\x5c\x80\xc3\xea\x2b\xea\x81\x69\x76\x54\xa0\x5d\x31\xa6\xbd\xbf\xc0\x09\xd8\x92\x93\x3a\x4c\x53\xbb\x40\xa0\xf7\x1a\xc6\x2c\xed\xe6\x9f\x04\x8a\x8d\x98\x15\xe5\xbf\x51\x06\x4c\xbf\xc7\x1c\xb6\x94\x2d\x0f\x98\x76\xda\xa7\x7b\xc3\x39\x65\xc0\x0b\xaa\x7c\x99\xdb\x76\x4f\x13\x98\xdf\x57\xe7\x6f\x3a\x52\x0e\xd8\x43\x88\xa5\xd0\x78\xcb\x02\x3a\x5e\x64\x3b\xf8\x30\x9e\x01\xf0\x07\xff\x9d\x77\xe9\xa1\x4c\x54\x48\xf8\x35\x7a\xfd\xef\xb3\x7b\x6d\xbb\x68\xaa\xc1\x33\x05\xc0\x6b\x2e\x7d\x31\xd9\x4c\x52\x80\xd5\x3d\xaa\x6f\x3c\x55\xf2\x01\xdf\x8d\xcc\xd8\xce\x5f\xf5\x01\xfc\x6d\xfa\x24\xcb\x96\x76\x8a\x40\x62\xad\xed\xd6\x0a\x95\x52\x40\xe6\x5b\xd7\x2c\xfe\xe2\x54\xf4\xae\xdb\xe1\xe9\xdc\x54\xb8\xdb\x3e\xe7\xb2\xe3\x89\x20\x20\xdd\xaa\x28\xee\xc1\x96\xc3\xff\x42\xe3\xda\x75\xda\x2d\xbf\x24\xfe\x85\x77\x9f\x9f\x6a\xe5\x9a\x7f\x20\xe1\x81\x1a\xfd\xd0\x9c\x23\xf3\x04\x26\x4d\xa9\x74\xba\xbb\x6e\x87\x7f\xc0\x43\x74\xf7\xf3\x7d\xe1\x5b\x00\x5d\x2c\xb8\xe6\xad\x0a\xb8\x01\x97\xbe\x68\xbb\x78\xed\x5c\x03\x58\x34\xfc\xe8\x68\x7e\xcd\x79\x2a\xc4\x3a\x55\xda\x39\xf9\x72\x02\x8e\x5c\xec\xdd\x69\x20\xd3\x00\x18\x74\x3f\x6f\x55\x44\xd0\x37\x02\xad\xef\xbc\xfc\xe4\x53\x3f\x43\x85\x53\x31\x26\xb8\xb4\xdc\x47\xa2\x40\xc7\xf2\xb2\x90\xf7\xeb\xfd\x40\xc1\x9d\xa4\x19\x71\x35\x8d\x7e\x12\x1e\x5f\x13\x1b\xe6\x1c\xb3\x13\x70\x52\xaf\xff\x4b\xa1\x8b\x28\x60\x40\x38\x57\x75\xc0\x07\x1e\x40\xa3\x19\xcd\xd1\x5d\x05\xaf\x09\xd4\xde\x51\x51\xe2\xdc\xe8\x06\x14\x74\xdd\x53\x73\x8b\x7c\x13\x0c\xf8\xc9\x95\xef\xed\xa3\xe7\x55\x24\x7c\x5e\xa3\x18\xce\xf0\x6e\x8c\xa0\x60\xda\x4b\xe4\x66\x91\x2a\x13\x50\x50\xee\xad\xa5\xdd\x59\x44\x07\xb8\x7c\x28\x20\x22\xd3\x48\x94\xaa\xb4\x2c\xea\x75\x69\x8f\xf4\x12\x58\x77\xbe\xed\xad\xad\x00\x1b\xe0\xba\xbd\xb6\xb1\x0a\xfc\xd9\x80\xba\x79\x3b\xa3\x63\xba\x4e\x02\x1e\x65\xd1\xbc\xb4\x46\xb1\x08\x30\xe9\xc3\xba\x87\xad\xc7\xc7\x09\x0a\x2e\x77\xbb\xf9\x47\x7f\xa8\x20\xe1\x98\x12\xb7\x43\xbf\xdd\x41\xc0\x10\x99\xbb\x19\xe4\x60\x1a\xc0\xda\x27\x27\x5b\xd3\x13\xf5\xa8\x70\x72\x8f\x8f\xe2\xf7\xc6\x17\x04\x06\x87\xbd\x30\xf4\xcd\xa1\x05\xb4\x9b\x53\x7a\x7a\xb3\x45\x09\xd0\xa4\x75\xb7\xc6\x3b\x0f\x05\xc0\xad\xa1\x0f\x3e\x09\x54\x54\x03\x96\x9f\xfd\xb8\x65\xe3\x1f\x70\x5e\x4f\xf9\x5e\x6f\x2a\x43\x05\x0b\x59\xff\x52\x4d\xf2\x0a\x41\xc1\xe8\xa9\x21\x57\x27\x62\x90\xc0\xca\xbb\xda\x5c\x22\x07\x1c\x01\x9d\x56\x1f\x6e\x19\x65\xdf\x0f\x58\xc8\x12\xc5\xf6\x6d\x8c\x03\x50\xde\x39\x48\x36\xa1\x47\x05\xb0\x4a\x47\x77\x6d\xd0\xeb\x2c\x2a\x04\xe4\x54\xd0\xeb\xdc\x8f\x06\x4c\xb6\xcc\xb4\x49\x0e\x75\x00\x1c\x6f\x78\xee\xaf\x29\x3d\x44\x20\x97\xc6\x1a\x59\x8b\xdc\x20\xc0\x73\x6d\x15\x7e\x5b\x15\xd6\x51\xfd\x71\x53\xd1\xa1\xd6\xd6\x0d\x8a\x0b\x04\x66\x31\xa5\xf0\x6f\xd7\xa6\x01\xdc\x61\x7c\xc2\x75\x4b\x76\x1c\xe0\xc3\xce\x6f\x9c\xdd\x44\x1e\xe0\xb6\x69\x66\xb6\x5f\x7a\x5c\x80\x2e\x1b\x0a\x44\xb9\x33\xb7\x02\xbe\x50\x97\xea\x7b\x35\x91\x00\xc8\x53\x4d\xbb\x94\x5a\x96\x0d\xb8\x93\x47\xf7\x65\xe5\xc1\xdd\x80\x84\xe9\x28\x43\x2e\x63\x3c\x19\xf7\x8b\x7d\xa1\x7b\x12\xed\x06\x98\x1d\xc6\x59\x2d\xa2\x98\x03\x48\x37\xca\xb0\xd8\x72\x78\x82\xc0\xac\xf4\x0e\x29\xf1\x40\x77\x40\x91\xc7\x2e\xe4\x1b\x5f\x90\xc0\x63\x5f\x0a\xb2\x27\xaa\x7e\x10\x28\xec\xec\x58\xac\x96\xb7\x13\xd0\x63\xdb\x5c\xb2\xb1\x50\x35\xa0\x78\xb5\x81\x72\x85\x84\x27\xe0\xbe\x5b\x89\x26\x67\x7b\x3c\x00\x1b\xdc\x94\x05\xff\x96\x2d\xf3\x3f\xdb\x3f\xb5\xdb\x02\x9e\xbb\x54\x9a\x3b\xe3\x67\x47\x46\x45\x6b\x51\x3a\x2e\x61\x7b\x40\xed\x56\xe0\xd8\xcb\x39\x49\x20\xdd\xd4\x61\x09\xd2\x40\x0d\xe0\x61\xdf\xf7\x91\xcc\x4a\x62\x80\x02\x03\x0f\x07\xe6\x08\x61\xc0\x65\x49\xe6\x04\x52\x7f\x2b\x60\xb9\x61\x70\x7d\xf7\x96\x32\x40\x19\xe9\xa4\xe5\xc5\xda\x36\x02\x2f\xc6\x93\x4f\x30\xde\x16\x05\x0a\x96\xb7\xb1\x28\x56\x05\xea\x02\x1a\x17\x96\x1b\x84\xff\x7a\x08\xf8\x4e\x40\x61\x69\x3e\xef\x08\x60\xf2\xa3\x43\xdb\x2e\xc7\x9d\x03\xbc\x6e\xc3\x01\xf6\x6e\x56\x80\xd9\x9b\xd7\xd1\x17\x79\x2f\x10\x28\xef\x19\xfa\x33\x87\x4c\x07\x14\x0c\xb6\x7b\x3f\xe0\x56\xed\x25\xe1\xa7\xe9\x6a\xcb\x9c\x95\x3b\x80\xd3\xf2\xba\xc2\xf7\x5c\x6b\x01\xcd\xb5\xbf\x79\x8c\x5e\x4d\x07\xbc\x72\xe4\x59\x87\x45\x4c\x06\xe0\xad\x48\x4b\xff\xe1\x23\xb6\x54\x38\x76\x24\x5a\xa9\x38\x96\x04\x98\x9b\x7c\xfc\xa1\xe9\x91\x6c\xc0\xd0\xcd\x6b\xd8\xcd\x17\x4e\xfd\x79\xca\x48\x2c\x3d\x99\x0c\x05\x3c\xa4\x31\xd9\xf6\xeb\xdd\x55\xc0\xdc\x3a\xeb\xcc\x94\xb9\x53\x80\x09\x41\x87\xb7\xce\xb0\x16\x01\xf6\x1e\xde\x24\xf8\x8c\x9c\x0c\xf8\xa4\xc2\xe0\x96\xe1\xad\x07\x80\x63\x43\x96\xf4\xc3\xa2\xe1\x80\x24\xf5\x76\x03\x5b\x96\x30\x40\xb9\xf3\x6b\x66\x4e\x2a\x87\x03\xce\x5e\x97\x51\x37\x4b\xd1\x01\x9c\xec\xd5\xaa\x59\xb2\x56\xa5\xc2\x8f\xe7\x72\xaf\xbf\x05\x17\x12\xb8\x5f\xac\x5d\x79\xb4\x33\x1c\xb0\x7c\xa3\x59\x33\xf7\xee\xcb\x54\x78\x21\x7a\x6c\xe5\xcb\xa6\x50\x2a\x7c\xff\x62\xf8\x2e\x4f\x8d\x99\x0a\x35\xed\xd3\xe7\x1a\x04\x39\x01\x33\x58\xcb\x87\xd5\x23\x52\x01\xe3\x0f\xc8\x8e\xb1\x88\x5e\x01\x3c\xb8\x72\xa7\x8c\xed\xe4\x65\xc0\x92\x98\xe3\x26\xe5\xe2\x57\x00\x2b\x96\x0d\x0e\x19\x7d\x4e\x04\x3c\x4f\xfe\xee\x7b\x8c\xa3\x12\xb0\x73\xfa\xd3\xd0\xc5\xac\x6c\xc0\xd5\x6b\xad\x7e\x3e\x30\x71\xa0\xc2\xe8\xf9\xda\x5f\x41\x6c\x89\x80\x5d\x8d\xb7\xc4\x2e\x09\x9e\x20\x63\xd5\x96\xde\xf1\x4d\x04\x3d\xe0\xf7\x6e\x67\x56\xa9\xf2\xdd\x80\x26\x17\xb5\x62\x93\x4d\x94\x00\x87\x4f\x5a\xc6\xed\x51\xd5\xa6\x2a\xe1\x21\xe6\x4a\x17\xb6\x29\x02\xde\x5d\x1d\xe0\xc2\xd1\xa8\x40\x55\x4e\x78\x0a\x80\x89\x28\x03\xa0\x83\x44\xb0\xf8\xb5\xa9\x43\x80\xdd\xfa\x1b\x6d\x0e\x8b\xef\x01\x54\xd5\x3a\x58\xaa\xe6\x32\x46\xe0\x8b\xf3\x2a\x06\x1b\xc2\xe3\x00\xef\xae\x8a\x65\x32\xbc\xb5\x17\x70\x4b\x4c\x87\x39\x77\x6d\x2c\x15\xce\x39\x9d\xd3\xcb\x97\x31\x01\xbc\xeb\x4b\x67\x9a\x2d\x19\x40\xc6\x2c\xf9\xc2\xc2\xfb\x6e\x65\x80\x8b\x2f\xee\x5e\xbd\xce\x57\x06\x28\x7f\xf4\xf4\xf7\xe2\x0b\x65\x80\xf4\x37\xdd\x39\x8e\xeb\x0b\x03\x32\x56\x59\x2b\x1e\x62\x39\x48\x85\x75\x43\x5c\x3b\xc4\x3e\xda\x53\x41\xd2\xbf\x8a\xb4\xaa\x9c\x0d\xf0\x02\xb3\xe0\x45\x0d\xe6\x19\x02\xcb\x9b\x04\xdf\x17\xe5\x77\x13\x78\xf5\x98\x72\x53\xed\xca\x3c\x15\x96\x8d\x66\x2b\x58\xfd\x7e\x11\x78\x24\x49\x30\xa2\xd9\x6c\x81\xc0\x12\x99\x1f\x2e\x09\x5f\xa2\x00\xbf\x0f\x2d\x4a\xdd\xd6\x39\x0e\x78\x44\x60\x6d\xf7\xe6\x1f\xa6\x80\x5d\xaa\x52\xa6\x66\x29\x9c\x80\xe9\x2a\x5c\x05\xf3\x67\x39\x01\xa7\x3e\x1f\x63\x58\x1c\x09\xa3\x02\xfd\x59\x79\x6f\xf9\x75\xa7\x01\x2d\xc3\x59\xf4\x1e\x6e\x12\x05\x2c\xb8\x70\xb2\xfe\x47\x25\x07\xe0\x91\x44\xd3\x12\x66\x07\x53\x40\x9b\xa9\xef\x67\x59\x6b\xf4\x01\x4b\x19\xd9\x19\xde\xf8\xaa\x03\xf6\xfa\x2e\xfe\x76\xda\x7a\x0e\x30\x71\x10\x3f\x77\x09\x92\xc8\x98\x5f\x70\xde\xa5\xe7\xf4\x08\x81\x97\x98\x22\xf6\xf4\x8d\x2f\x52\xa1\x56\x43\xaa\x64\x93\xcb\x77\x02\x87\x5e\x33\x64\xa9\xed\x7f\x43\x60\x52\x8c\xf2\x67\xa9\xee\xad\x80\x37\xde\x7c\x10\xb1\xa5\x13\x01\x8c\xa1\xfd\x98\xc0\x7a\x65\x86\x40\x93\x7b\xc3\x01\x2f\x5c\x5b\x00\xd3\x2d\xd7\x66\xb7\xc4\x39\x01\xb6\xa9\x3f\x61\x6d\xf1\xb3\x03\x1c\x92\x3d\xd5\x9d\x33\xb7\x05\x70\xe4\xfe\x6f\xd6\x9c\x96\x8f\x80\x0e\xa7\x9d\x0f\x66\xfd\x41\x47\xbb\xdd\x9e\x6f\x97\xee\x01\x36\xc7\x5b\x2e\xbd\xe3\xfc\x08\x38\x26\xba\x3e\x6e\xf5\x72\x00\x15\xa4\x6a\xa3\x77\x7b\x24\x1e\x07\x94\x0f\xb2\x5b\xab\xcc\x91\x04\xa8\x1f\xd4\xa3\xb6\x6c\x98\x0c\x38\x7b\x43\xea\xb4\x0e\xa9\x04\x30\xe4\xcb\xf9\x9e\x68\xd9\x62\xc0\x7b\x92\x9b\xd8\x04\x1f\x35\x92\xf1\xbd\x3e\xff\x87\x9b\xeb\x1f\x02\xd6\x44\xf8\x3f\x9a\x3e\xdb\x00\x48\x27\xda\x7d\xce\x27\x71\x37\x20\xef\x85\x90\x4f\x05\xab\xe2\x01\x77\x2d\xb2\xf2\xac\x37\xb8\x4f\xc6\x8f\x37\xdf\x32\x72\x4a\x87\x03\x5e\x72\x9b\x61\x57\xa5\x8d\x00\x2c\x8f\x8a\xf3\x1a\x7a\xa5\x0f\x78\x68\x72\x13\x4d\x85\xd1\x9f\x7b\x21\x29\xb5\x2d\xe5\xba\x26\x15\x2a\x3d\xe4\x25\x6e\x6e\xe2\x02\x64\xd6\x34\xd5\x36\xcd\x9b\x23\x90\x86\x23\xe2\xa3\x75\x96\x1a\xe0\x16\x5e\xa5\x97\xbc\x47\x1e\x90\xf1\x50\xad\xcf\x5a\x59\xb3\x5a\x40\xcd\xc1\xcc\xf2\x44\x9e\x4a\xc0\xfa\xf8\x97\x42\x4d\x96\xb5\x80\xdb\x15\x7c\x2c\x19\x1b\xb6\x03\x72\x64\xb8\xd6\x72\x13\xbd\x04\x05\xb2\x1d\x1a\xc7\xad\x67\x5e\x11\x78\xec\x26\xf3\xc8\x96\x60\x53\xc0\xb0\x95\xfd\x1b\x3f\x37\x09\x53\x61\xd6\xf3\xa4\x4e\xbe\x3b\x89\xa0\xc0\x46\xbf\xf4\xe4\x07\x57\x79\xf8\x5f\x28\xba\x7f\xaf\x8e\xc9\x77\x15\xe0\x9b\x0c\x57\x9b\x81\xc6\x0a\xc0\xd6\xa1\x0f\xa3\xc2\xab\x59\x00\xa3\x05\xc5\xee\xe9\xb2\x9a\x03\x9a\x7d\x71\x0a\x1d\x48\x71\x07\x8c\xf6\x99\x2d\x91\x48\x76\x07\x4c\x3c\x72\x66\x1f\xfb\x0e\x0f\xc0\x81\x55\x45\xdc\x47\x8a\x68\x00\xed\x98\x36\x29\x47\xf0\x49\x02\xba\xf3\x3e\x53\xdf\x68\x22\x01\x58\x92\x63\xd8\xf9\xd2\x91\x03\x30\xd6\x45\x7a\xd0\x59\x91\x95\x0a\xe5\x7b\x45\x02\xe1\xe3\x3b\x02\x87\x3c\xd9\xb9\x5f\x78\xe5\x01\x2e\x3d\x75\x9c\xd7\x6c\x53\x05\x5c\x72\x79\xb1\xca\xfe\xc5\xd6\x3f\x77\xd9\x7a\xdb\x60\xed\x14\x81\xad\x9e\xbb\xca\x62\x64\x2a\x00\x4f\xce\x73\xf8\xb2\xca\x1c\x00\x8c\x8c\x50\xe1\x07\xfe\x8d\x80\xd7\x94\x5c\x3b\x5a\x8e\x01\x60\x98\xda\xb7\x67\xfb\x30\x9c\x8c\xc1\x82\xdc\xed\x5e\x51\x92\x80\x3f\xed\x6f\x4f\x38\x92\xf9\x01\x3b\x74\x0d\x5b\xcd\x39\x18\x00\x37\x91\x5c\x39\xb8\x44\xc7\x08\x6c\x59\xbe\xa5\xe5\xe6\xca\x01\x18\x36\xea\xa8\xeb\x3e\xd2\x08\x38\xf5\x2a\xfd\x7a\xf8\xa9\x4c\x32\xf2\x66\xef\xe1\x38\xd8\xd5\x00\x58\x76\x54\x61\xd1\xec\x0f\x6e\xd1\x44\x6b\x5d\x67\xb1\x03\xfc\xae\x65\xd1\xd7\xf8\xdb\x0b\xf0\xcd\xe7\x55\x15\x3a\xaf\xce\x01\x26\xfb\xef\x38\xb9\x51\x54\x09\xb0\xf2\x68\x8f\x73\x0c\xbf\x39\x15\xaa\x3e\xc4\xf3\xbf\x40\x1a\xc0\x81\x8e\x88\xf6\xdb\xdc\x4a\x80\x1f\x43\x6e\xb4\xb5\xdd\x3a\xf0\x3f\xd1\xe9\xf6\xfe\xfa\x15\xbe\x69\x02\xa7\x1b\x59\x1c\xc8\x25\x22\x80\x43\x9f\x55\x43\xcf\xba\xac\x05\xbc\x91\xca\xcf\x42\x73\xb1\x0e\x90\xc3\x58\xf1\x52\x52\x65\x19\x60\xe1\x58\xde\xf9\xc7\x73\xba\x54\xe8\xdf\x5e\x13\xcf\x7e\x93\x1b\x70\x11\xd3\xdf\xec\x2d\x4b\x02\xf4\xab\x60\xf4\x33\x0b\x10\x01\x94\x08\xda\xb7\x32\x2b\x7e\x99\x0a\x5d\x7d\xd9\x1d\x52\xcc\x76\x54\xe0\x59\xbf\x83\x77\xc3\x99\x0c\x2a\x1c\x09\xb0\xf9\x2c\x4d\x32\x02\xd4\x9a\xf2\x29\xd7\x92\x6b\x04\x54\xeb\x3e\x1c\x91\xa6\x55\x4d\x46\xe6\xcb\xb2\xbf\xd2\xbe\x35\x00\xbe\x44\x89\x23\xc1\xb9\x1b\x00\x9b\x9d\x9c\x82\xea\x8c\xaf\x50\xe1\x31\x87\xe0\x23\xf5\xf6\xe3\x80\xfd\xec\xf4\x3a\xe4\x51\x21\xc0\x94\x50\x9f\x59\xf9\x9e\x13\x80\xdb\x3e\xf0\x17\x49\x08\xd1\x02\x2e\xac\x3b\xb7\x81\x99\xaf\x06\xd0\xed\xfd\x17\xbb\x40\xdf\x06\xc0\xd0\xf6\xb6\x9a\xdf\x4c\xaa\x80\x19\x77\x3c\xf9\x43\x66\x55\x01\xb3\x64\x77\x0f\x9a\x3f\x1a\x25\x90\xf5\x46\xc9\xb3\xaa\x78\x76\xa0\x80\x66\xee\x5d\x8d\x69\xc0\x39\xc0\x3b\x7b\x61\xdf\x0e\xbb\x1a\x32\xa5\x14\x04\xfd\x38\x2d\xf8\xbc\x9f\x84\x0a\xed\x2c\xf1\x45\xec\xa3\x04\xb2\x3d\x63\x79\xf0\x90\x10\x01\x0a\xde\xb5\x69\x96\x8f\x9b\xd6\x02\xea\xb5\x3e\xe2\x3a\xd3\xdf\x08\xf8\x4a\xc9\xe6\xba\xa4\x4e\xc1\x9f\x85\xe8\x76\x60\x39\xef\x27\xc0\x97\x85\x35\x41\x47\x25\x9a\x00\xd5\x36\x75\x45\x9d\x0d\x57\x07\x1c\x1c\x5f\xdc\x7f\xa9\x3b\x03\xb0\x51\x09\xd8\x19\x64\x73\xc9\xb8\x81\x67\x21\xfe\xdb\x74\x19\x20\x5b\x67\xe6\x33\x4b\x1f\x5e\x40\x65\x75\x6e\xd9\xc5\x94\x1b\x64\x6c\x9e\xf5\xa7\x27\x75\x15\x01\xbe\x55\xf7\xfe\x70\x55\x2f\x93\xaa\x08\x30\x86\xc9\x18\x5e\x88\x00\x7c\x1d\x62\x9f\xf5\xd1\x21\x06\x70\xdd\x93\x09\xd6\x44\xfa\x70\xc0\x46\x69\x73\xe6\xc6\x15\x4e\xc0\x33\x82\xa7\x6c\xf9\x4f\x9d\x04\x5c\x1b\xfd\x5a\x58\xa0\xd5\x1b\x70\x28\x52\x70\x8d\xd7\xcd\xfd\x80\xc2\x8e\x0b\x95\xaa\x67\x4a\x01\x2b\xed\x62\xd7\x9f\x2b\xc9\x06\xf4\xb4\xf6\x8d\x7a\xe2\x77\x0d\xd0\x99\xe1\xb1\x78\x58\xc6\x0b\x12\xaa\xee\x10\xba\xf8\x63\xb8\x01\x28\x78\xbf\x7b\x6a\xa7\xc6\xad\x35\x80\x9f\x4d\x45\x19\xd8\x8e\xeb\x00\xce\xb4\x30\x58\x96\xca\x73\x03\x6e\x60\xd0\x4c\xe9\xdf\x2e\x06\x38\x61\xee\xa4\x77\xc1\x6d\x88\xc0\x7d\x7d\xfc\xf6\x83\x3b\x86\x09\xdc\x36\x69\xb8\xc9\xfe\xbe\x09\xe0\x0d\xf7\xed\xf6\x1a\x24\x05\x2a\x1c\xe9\x58\x93\xf5\xbe\x8e\x07\xf0\x52\x84\xa9\x91\x46\xe4\x49\xc0\xda\x68\x97\x09\xb9\x9b\x9d\x64\x5c\x58\xa7\xbb\xc9\x2a\xe5\x2e\xe0\xca\xdf\x1f\xb0\xcc\x10\x38\x10\x46\x67\x68\x6f\x9d\x03\x14\x30\x5c\xe8\xee\xbf\xec\x11\x03\x28\x2b\xf3\x29\x69\x2b\xed\x3c\x81\xfd\xa3\xa4\x46\xec\xe5\x01\x0a\xd4\xf6\xd6\xff\x9c\x15\xfb\x41\x50\xf0\x71\x8b\x77\xe8\xea\x4b\x7c\x40\x01\x67\xfa\xd7\x82\xe0\xe2\xf7\x04\xe6\xb5\x0e\x2f\xb3\x13\xcb\x04\xde\xba\xa0\x1c\x69\x21\xda\x4f\x85\xea\x66\xdf\x6f\x57\xb7\x8d\x10\x18\xad\xe3\xe1\xd0\x7a\x52\x0c\xb0\x7c\x83\x46\xfa\x00\xb9\x12\x90\x71\xd2\xcb\x21\x34\x32\x17\x30\x6e\x6e\x4a\x85\xc1\x21\x0c\xf0\xb1\xc3\xfb\xdf\x57\xe3\xeb\xc9\xa8\xbe\xa9\x5d\x39\x05\x9f\x92\x71\x69\xee\xdb\x3e\x0b\xda\x21\x40\xc7\x49\xa1\x28\x9f\xd1\x66\xc0\xc9\xc0\xbc\xb9\x03\x6c\x9f\x08\x64\x08\xbb\x67\xf3\xc4\x49\x09\x30\x22\x48\xe8\xb5\xce\x06\x65\xc0\xa2\x03\x49\x93\x4f\x0c\x75\x01\x79\x9d\x57\xc5\x15\x3f\x54\x04\x2c\xd8\x94\x6a\x1f\xd2\x21\x01\x28\x79\xab\xc1\x9f\x43\xd7\x98\x8c\x83\x52\x43\xbc\xfb\x1f\x95\x00\xb6\xe6\xbd\xa2\x89\x4a\x34\x03\xcc\xd2\x75\x36\xd1\x78\x16\x4d\xc6\xb3\x97\xe4\xce\x26\xbd\xb2\x04\x2c\x7d\x5b\x2e\xac\x7a\x2d\x06\xb0\x4b\xee\xf1\x83\xfa\xf3\xc3\x04\x32\xfe\xb8\xe6\xc7\x61\x2f\x07\xf8\xe8\xb4\x55\x78\xf9\xcb\x4c\xc0\xc5\x43\xb2\x77\x3b\x2a\x2b\xc9\xf8\xf0\xd5\xd9\x43\x35\xcc\x1a\x80\xff\x8f\x31\x3b\x8f\x86\xf2\xff\x03\xbf\x1f\xb2\x64\xdf\xcb\x56\xd9\xb7\xec\xd9\x73\xbd\x84\x44\x29\x3b\x29\x65\xcb\x1e\x29\x95\x3d\xd9\xb3\x94\xbd\xd2\x46\x24\x8a\x0a\x95\xdd\x0c\x52\xb4\xd2\x22\x84\xb2\x45\x25\x25\xc2\x0b\xc9\x7d\x74\xee\xf3\x9d\xf9\x9c\xbb\xfb\x77\x7e\x7f\xcd\xe3\x3c\xdf\xe7\x5c\x73\x66\xe6\xba\xde\xcb\x99\x22\x35\xd3\x1f\x1d\x51\x2d\x80\x17\x25\x37\x09\xab\xd8\x4f\x92\xd1\x6a\x5e\xfe\xb7\x72\xec\x2b\xc0\x13\x7d\x4f\xb6\x85\x9e\x4c\x07\x4c\x74\x3a\x7a\xd1\xae\x30\x09\xf0\xae\x60\xeb\x5a\xc9\xf2\x74\x40\x3a\xb5\xb2\x65\xfd\xe4\xd3\x80\xc2\xb1\xe3\x5a\x2d\xfa\x89\x80\x76\xb4\x07\x26\xbf\xca\xd5\x92\x29\x45\xd5\xb3\x39\xc3\x28\x30\x11\xd0\xb9\x5f\xf9\x66\xe8\x8e\x68\xc0\x93\xc7\x6c\x4f\x36\xad\x5b\xb9\x8e\xbe\x9a\xe3\xef\x23\x89\x80\x67\x77\xfe\x6e\xb7\xa9\x6a\x05\x0c\x39\x9e\x3b\x55\x59\xd8\x0a\x78\x68\x9f\xb1\x36\x9b\x7d\x2c\x20\xfc\xdc\x58\xf7\xa3\x36\x16\xf0\x71\x9b\x82\x44\xa0\x78\x20\xa0\xa6\xf0\xcd\xd6\x0f\x92\x02\x80\x3d\x65\xa7\x6f\x8f\xbe\x3d\x08\x78\xab\x34\x35\xed\x78\x6a\x2b\x09\xcb\x7e\x7a\xde\x33\x5f\x59\xa0\xff\x87\x53\xeb\xc5\x45\xc7\xbf\x09\x00\xda\xd8\x88\x1a\xe5\xae\x6c\x69\xf6\xec\x9b\x54\x0c\xe0\x5f\x45\x05\x4e\x59\xa7\x5a\xcd\xd2\x1c\x12\x05\x11\xab\xdf\xb4\xe4\x6d\xf8\x45\x50\xa0\x3f\x5a\x90\x39\x1f\xb3\x72\x36\x3f\x94\x73\xcf\xca\x87\x00\x9c\x6b\x38\x55\x67\xe1\x62\x0c\xd8\x9f\x7d\x56\x31\x7f\x9f\x12\x20\x11\xaf\xaf\xaf\x12\xc2\x00\x48\x62\xef\xab\xbb\x19\x93\x48\x46\x2f\xef\xf9\xdf\x13\x57\xbb\x01\x8d\x43\xde\xae\xb5\x78\x72\x97\x8c\xe5\x0a\xca\xdb\x1e\xb2\x94\x02\x5e\xab\x14\x22\x9f\xd9\xc6\x04\x58\xc0\xad\x76\xbb\xef\x2a\x2b\x15\xee\xb4\x4a\xe7\x94\xb8\xfd\x22\xf0\xeb\x25\x89\xd6\x10\x39\x56\xc0\xfe\xbd\xeb\xe9\x1a\x16\x37\x01\x7a\x4e\x4c\xe4\xa4\x9a\xb9\x00\x2e\xd1\xde\x78\x9d\xb1\xb2\x48\x9d\xb3\x4a\x1c\x90\x67\xf9\x4a\x60\x04\x7f\x76\x10\x83\x39\x3b\xa0\x7e\xe1\xfd\xfa\xe7\x27\xba\x09\x54\x89\x9f\x78\x9c\x95\x14\x0c\x68\xf2\xcd\x75\x9b\x6f\xd6\x41\xc0\xf5\xd7\xc9\x17\xe5\xcd\x06\x09\xfc\x72\x3b\x85\xde\xeb\xb1\x34\x50\xa0\xb3\x46\xc4\x5e\xbd\xee\x14\xa0\xe4\x5e\xcb\x01\x89\xa0\x07\x24\x3c\xd8\xbb\x27\x74\xf0\xd7\x6d\xa0\xe0\x7b\x01\xf1\x64\x29\xb4\x10\xb0\xe5\xf4\x16\x3a\x45\xef\x21\x02\x55\xca\xf2\xf8\x39\x0f\xed\x07\xcc\xde\xce\x64\x6a\xa2\x1f\xff\x7f\x04\xfd\xa1\x7e\x18\xb8\xf2\x84\x84\x6b\xc4\x63\x96\x7e\x9e\xd6\x05\xec\xe1\xba\xa8\xec\x76\x52\x0d\xf0\x4d\x36\x99\xe8\x9e\x4e\x03\x6c\xdd\x6e\xca\x13\x35\xe3\x40\x46\x31\x46\xc2\xbf\xdb\x7b\x80\xc0\xd8\xc4\x82\x28\x56\x49\x3e\xa0\x20\x9a\xd8\xbd\x33\x59\xb7\x90\x84\x26\x2f\xf5\x5a\xe9\x02\x1a\x00\x9f\xb2\xbe\x31\xd8\xda\x1d\x00\xa8\x6b\x81\x06\x62\x33\x93\x04\x96\x75\xfb\x64\x4d\x35\xad\x01\x0c\xbd\x25\xd2\x21\xc0\xc0\x0e\x38\x33\x3a\x55\xf4\xb0\x65\x86\xc0\x8d\x52\xdc\x1a\xdb\x3e\x49\x02\x6a\x29\xd6\x5d\xe5\x10\xbd\x09\x78\xcd\x70\xd8\xc2\x8b\xa6\x8c\x8c\xec\x53\xd1\xe4\xd7\x7e\x4d\x80\x29\x92\x8f\xbf\x34\x97\x94\x01\x26\xcf\xd4\x5e\xc3\x46\x3a\x40\xef\xd8\x29\xa5\x21\x55\x1b\xc0\xa4\x5d\x1b\xde\xf0\xec\x90\x06\x24\xe9\x06\xae\xf7\x7f\xc4\x0d\xa8\xf3\x52\xaf\x7f\xfe\x93\x16\xe0\xd7\x1f\xc4\xc6\x26\xae\x3f\x04\xda\x5b\x86\x3b\x1c\xf8\xd8\x03\x58\xbf\x3f\x40\xe6\xc7\xc6\x41\xc0\xf8\x0d\xe5\xfe\xf2\xdc\x15\x64\x74\x76\x62\xcd\x7a\xfb\xe9\x15\xe0\xb9\xa0\x55\xdd\xfa\xfe\xd7\x00\x77\x94\x8f\xd4\x90\xcc\x1b\xc8\xf8\x06\xc5\xfc\xb8\x6b\x22\x01\x7d\xc2\xbc\x67\x22\x6e\x1e\x03\xbc\xb3\x2d\xf2\x5a\xfb\x88\x28\xe0\xeb\xad\x02\x47\x3e\xe7\xbf\x24\x50\x31\x48\x8e\x2b\x32\xc5\x1a\x70\xe8\x92\xef\xa6\x88\x15\x5c\xe0\xfd\x3e\x6a\x7f\x4c\x0a\x50\x1a\x19\x0a\xd4\x9a\x53\x00\x73\x86\xb4\x77\x36\xe4\xd3\x00\x06\xc8\x09\xf9\xf4\x14\x6d\xa2\x82\xf8\x4c\x79\x65\xec\x6e\x13\xc0\x36\x8b\xc2\x99\x74\x91\x02\xc0\x41\xfe\xde\x1b\x87\x0f\x34\x00\xe6\xe6\xd9\x46\x04\x94\x3e\x27\xa3\x5e\x9a\xc1\x42\x7d\x4d\x33\x60\x56\xd6\x93\x93\x2e\xca\xd3\x04\x3e\xba\xf3\xe0\x7c\xc9\x1e\x6a\x0c\x4c\x3d\xd6\xfd\xbb\x56\xee\xad\x18\x77\xca\x3f\x75\x1c\x50\x33\x9d\xc5\x38\xc8\x8e\x17\x30\xf2\x83\xff\xf1\x76\xc3\x25\x02\x35\x6e\xa4\xa5\x49\x38\xca\x03\xf6\xff\xa2\x6d\x67\x64\x59\x59\x2f\xce\xb3\x95\xd4\xb7\xd8\x01\xbe\xd8\x2f\x18\xca\x78\xce\x01\xf0\x92\xb4\x77\xb4\x81\x93\x31\x60\xe3\x2d\x8d\x1d\x77\xb7\xb1\x02\x92\x0e\x5c\xf0\x52\xba\xf4\x87\xa0\xa0\xaf\xf1\xb8\xf2\x90\xa3\x08\x50\x60\x47\x9b\xe0\xd2\x60\xb5\x91\x0a\xb2\xa3\x3f\x9b\x0b\xf8\xe5\x00\xc3\x3d\x77\xd5\xfd\xa6\xe7\x01\x3c\xe1\x51\x65\x5c\xf5\x52\x08\xf0\xc8\xef\xa6\xfc\x4e\x6f\x03\xc0\x03\x92\x0a\x17\x92\xbe\xac\x01\x9c\x8d\x08\xcb\x1b\x21\x33\x02\xee\x6f\xf0\x96\xb3\x7b\x7a\x0c\x90\x1b\xae\x2d\x2a\xfe\xde\x48\x85\x92\x5b\x85\x19\x53\x21\xef\x09\x14\xf0\x5b\xd7\x76\x24\x80\x0b\x70\xae\xf7\x78\x39\x0d\xed\x75\xc0\x47\x4d\x42\xb2\xbb\x6f\x3c\x01\x0c\x58\x6d\xf2\xa7\x2c\x86\x00\xbc\xf4\xfa\x93\x1a\x1b\xaf\x04\xe0\x2e\xfe\x23\x1f\x04\x4d\x0d\x01\x7b\xc5\x0c\x0b\x0d\x8e\xf2\x02\x76\x5b\xeb\x4e\xa4\xfd\x88\x04\x3c\xe2\x1b\xf6\x95\x96\xed\x3e\xe0\x96\x85\xc2\x75\x74\x2b\xd8\xf3\xa9\xe9\x9a\xc8\xd3\x3f\x64\x4a\xd9\x2b\x2c\x72\x29\xd9\xcf\x16\x90\x51\x77\x2b\xef\x44\xd3\x76\xaa\x32\x20\xf8\xc2\xfd\xa8\x39\x13\x20\x7b\x87\x51\xfb\xe1\xfb\x91\x80\xa2\x1b\xdf\xd2\x85\x4f\x71\x03\xce\xc5\x58\x54\xac\xb7\x8d\xa0\x82\x92\xee\x18\x79\xf1\x7e\x10\x15\xc4\xcf\x69\xd3\x59\xf9\xd6\x90\x70\x42\xec\xe4\x96\x43\x09\xef\x08\x7c\x66\xdb\xe6\xa8\xf4\x28\x1e\x30\xf2\x87\xc7\xe5\xc9\x83\x63\x04\xb6\x3e\x68\x34\x9d\x30\x13\x02\x0a\xb2\x58\xdf\x75\x3f\xc9\xae\x25\x21\xcb\x9b\x99\x7d\x57\x2f\x49\x02\x6e\x97\xb8\x9d\xfa\xe6\x96\x25\xa0\x63\xda\xa5\xc7\x67\x1b\xfb\x09\xbc\x54\x9a\xfd\x65\xff\xfb\xcf\x04\x92\xa7\x68\x4f\x5c\xff\x2a\x0b\x14\x58\xfe\x2c\x0c\xb1\xc4\xb7\x24\x64\x50\xdb\xdc\x12\x74\x9a\x09\x90\x45\x39\x46\x41\x20\xf7\x35\x20\xa9\x7a\xd7\xe2\xae\xe7\x74\x80\xdb\x86\x45\x3c\x06\xe8\x36\x01\xde\x1a\x0a\x9b\x7f\xca\x33\x47\xa0\xdd\x6e\x9a\xb3\xc5\xbb\xa7\xa9\xb0\x44\xf2\xaf\x7c\xfa\x8d\x1b\x50\xb0\x9c\x39\x04\x46\x57\x01\x1e\x3f\xda\x23\xdf\xe5\xee\x0e\x28\x5c\xd1\x52\x6a\xfa\xd2\x15\xf0\xc9\xde\x68\xb3\x8e\x41\x59\xc0\xb3\x5f\x18\xbc\x8e\xa4\xbc\x26\xf0\xf4\x4c\xae\x53\xcd\x9a\x29\x2a\x28\x9c\x18\x58\x33\x91\xff\x96\xc0\x0b\x0f\x55\xea\x07\x62\x8e\x00\x5a\xfa\xf3\x24\xc5\x7d\x58\x47\x85\x96\xeb\xf3\xb5\x05\xee\xef\x48\xe8\xe3\x7b\x30\x8d\xc3\x64\x92\xc0\xac\xd6\x4a\xbb\x65\x3f\x12\xa0\x8c\xe6\xa2\x51\xa5\x65\x23\xa0\x85\x24\xbb\xd8\x99\x17\xab\x01\x69\x83\x66\x65\x48\x37\xcd\x00\xf3\x4b\xab\xb7\x17\x7d\xde\x09\x58\x76\xf5\x20\xeb\xfd\x4c\x55\x40\x93\xd4\xba\x02\x9d\x60\x03\x32\xa5\xb4\x3d\xb4\x38\x20\x77\x91\x13\xf0\xd7\xd8\x11\xa7\xa1\xec\x8b\x80\x3d\xc6\x25\x11\xa6\x13\x49\x54\xf8\x5c\xf9\x6c\xcc\xe9\xde\x05\xc0\xde\xb3\x33\x1e\x15\x5f\x38\x01\x23\x38\x19\x1f\xf4\x14\x1a\x01\x7e\xe6\x31\x49\x19\xb6\xd8\x02\xc8\xfd\xfc\x78\x49\x59\x8d\x1a\xe0\xab\xe3\xc9\xcd\x6f\x3e\x6c\x03\x74\xeb\x3a\x12\x79\xab\xd7\x1a\xb0\xef\x9a\x73\xcc\x81\x2d\xdc\x54\x18\x30\x0f\xbb\x68\xbf\x72\xab\xff\x0f\x96\x77\xcb\xc5\xce\x79\x0e\x12\x18\xcf\xaa\x33\xf8\xe8\xb5\x01\xa0\x75\xc4\x69\x5d\xee\x08\x00\x14\x7c\x62\x95\xe2\xa5\x31\x43\xe0\xcd\x61\x5b\x8d\x5d\x63\x86\x40\xc1\xae\x59\xf5\x04\x17\xc6\x7b\x04\x2e\x31\x37\x2b\x35\x18\xdd\x00\xb4\xcb\x4f\xf0\xdc\x79\x64\x0f\xe0\xfa\xc5\x8a\x81\x84\x37\xb6\x64\x14\x55\xa9\xc8\xfe\x5b\x64\x9f\x68\xb6\xb6\xbb\x3b\x00\x8e\xba\x90\xb4\x9f\xdc\x35\x07\x0c\xf2\xf3\x2c\xcc\x9a\x48\x24\xa3\x84\xaf\xda\x35\x9f\xd7\xb1\x80\x19\xaf\xfe\xd4\xbf\x4f\x98\x27\x50\x99\xcb\x6b\xeb\xc6\x90\x5d\x80\x01\xa2\xdb\x74\xd9\x8e\xcb\x51\xe1\x70\x6e\x87\x71\x47\x5b\x19\x19\x1d\x3a\x8e\x47\x7f\x5a\x08\x27\xe3\xb1\x76\xe1\x41\xde\xdf\x83\x04\x2e\xf7\xc5\x8f\x24\x0f\xa5\x91\xb1\x82\x27\x39\xbd\xcf\x3a\x1e\x28\x98\x61\xff\xed\x2a\x90\x1d\x0f\xa8\xfc\x29\x64\xad\xff\xa8\x0e\x60\x81\x6e\x72\x81\xb3\x72\x0b\x81\xcd\x73\x3b\xf2\xe7\x66\xc5\x57\xce\xcb\x61\x64\x9f\x84\x95\x59\x3d\xd9\xba\xc4\xb4\x0c\x09\x4c\x95\x7f\xa1\xdf\x9c\x2a\x03\x78\xed\x8b\x57\xd1\x85\x24\xa9\x7f\x21\x95\x9c\x69\x6e\x13\xbd\xee\x5f\x28\xf9\xbc\xd8\x73\x2d\xa8\x9d\xc0\xc1\xe7\xca\xc6\x5f\x4e\x88\x02\x76\xbf\x55\x13\xb8\xa4\x5e\x46\xa0\xd7\x10\xb1\xf8\x36\xc7\x1f\x28\x88\x7f\xb6\x33\x5c\xec\x20\x1f\x15\x0a\xf5\x6a\x1e\x64\xd8\xb0\x02\xca\xeb\x32\x7a\xb2\x54\x73\x01\xa6\xef\xfb\x31\x11\xba\x20\x05\x78\x5e\xd4\x36\x64\xf3\x41\x09\x2a\x98\x6e\x3d\x29\xfa\xd4\xfc\x17\x81\x7d\x8f\xa5\xaf\x06\x56\x5c\x23\xa3\x80\xf5\x93\xd0\x88\x3c\x6f\x40\x8d\xca\x43\xeb\x64\x4a\xd6\x01\x9a\xba\xbd\x7e\x9d\xd1\xf0\x8d\x40\xed\x45\xd8\x9d\xd6\xa2\x05\x18\x76\xed\x76\x75\xc4\xa9\x13\x54\xf0\x17\xff\x34\xbe\xfe\xa6\x14\xe0\x47\xa1\x7e\xd7\xfc\x46\x7e\x40\x16\xa3\xb9\x4b\x37\x7f\x92\x01\xb3\x04\xf2\xfd\x5e\xd0\x36\x01\xce\x3b\x57\xc5\xfe\xc5\xc3\x1f\x83\x15\xff\x85\xc2\x09\xf3\xcc\xa2\xb3\xa1\x80\x6b\xbb\xa6\x6f\x5c\x08\x8a\x21\x53\xca\xaf\xb1\x07\x65\xc9\x29\xe5\x64\xcc\x6c\xdf\xbc\x41\x2f\x39\x14\x70\x71\x58\x30\x35\xaf\x64\x15\xe0\x5d\xb9\xc7\x83\x5e\xf6\xa9\x54\x38\xb8\x4f\xaa\x78\xfa\x89\x3a\xa0\x57\x4e\xa5\xbe\x92\xdc\x76\xc0\xdd\x47\x9e\x8a\x04\xf9\x4a\x01\x5e\x30\xcd\x1c\xe1\x17\x96\x07\x24\x24\x74\x0e\x4b\xd7\x38\x00\x16\xbb\xdb\xcc\xed\xfe\x51\x01\xf8\x3a\x71\x5b\xbe\x79\x16\x17\x60\xeb\xfb\x61\xf7\x0d\x1e\x1c\x80\x5b\xf3\x7e\xce\xf9\x85\x0a\x01\x7a\xd8\x0f\x4e\x3c\x4a\xdc\x08\xe8\x78\x20\xf5\x3a\xf9\x22\x0f\xe0\xec\x42\x99\x9a\xa3\x9e\x0a\xa0\x1a\x63\xfc\xd4\x31\x56\x36\xc0\x85\xa4\x2e\xb5\x74\x17\x5e\x40\x49\xdf\xe6\x39\xbf\xd0\x22\xc0\x64\x4e\x07\xf3\x44\xab\x31\x62\x7e\x76\xb9\x23\x66\xff\x87\xff\xbd\xe2\x42\x7f\xb4\x0d\x72\xe8\x03\xf6\xbc\xf6\xd1\x9e\x37\xa5\x03\x3c\x76\x85\xe3\x8e\x83\x27\x41\x05\xde\xa3\x2d\xc1\x5b\x7a\xaa\x49\x98\xd9\xde\x5f\x2c\x3b\x71\x0a\x70\xeb\xb8\x95\xb5\xc6\x07\x6b\xc0\xdc\xfd\x71\x9a\x1b\xb4\x68\x00\xa5\xed\x0b\x1f\x36\x9d\xfb\x44\xa0\xa5\x98\xcd\x54\xae\x1a\x1d\x60\x59\x2a\x7f\x68\x75\x8c\x19\xa0\xa9\xa5\x3b\xb3\x47\x67\x01\xa0\x61\x65\x7b\xc4\x5f\xcc\xa9\x3c\x33\xfe\x1c\x7d\x1d\xd0\xab\xab\xee\xd2\x98\xc9\x66\x40\xbf\xdc\x96\xc0\x3b\xd3\x5c\x80\xc7\xf3\xd6\xd9\x38\x2c\xef\x05\xac\x0e\xbf\x5f\xeb\x5b\x71\x81\x8c\x92\x4f\xaf\x75\xf5\xe8\xb8\x01\x05\x5b\x8f\x04\xee\x95\xca\xf7\x06\xec\xfb\xb6\xe3\x99\x1a\xcd\x1c\x81\x2c\xfe\x0b\x1f\xea\xe4\x74\x00\xd7\x8d\x65\xf1\x0a\x5c\x30\x02\x54\x89\xba\xcb\xdd\x10\x20\x09\x78\xa2\x3f\xad\xcd\xa9\xef\x3b\x81\x8d\x2c\x57\x3e\x5f\xb8\x55\x0f\xe8\x41\x93\xcb\x55\xfe\x48\x85\x0a\xcf\xd6\xf1\x8e\x34\xd4\x4f\x10\x38\x50\xec\xeb\xf1\xf6\xfa\x02\x81\xfe\x29\x5e\x8f\x37\xc4\x3c\x04\x4c\xca\x9b\xf7\xe5\x7c\xcc\x09\x68\xa6\xb3\x35\xd9\x79\x0b\x1b\xe0\xd7\x5a\xe1\xe3\x77\xdb\xfa\x08\x14\x39\xd5\xbb\xf4\x3d\x30\x87\x8c\x15\xab\x39\x8b\xce\x0c\xd5\x00\x3a\x64\xe4\xdd\x1d\x76\xaa\x21\xe3\xfe\x5c\x75\x7f\x7a\xad\x12\xc0\x7b\x67\xbf\x2b\x46\xec\x16\x05\xa4\xd7\xbc\xf7\xf5\xb0\x2c\x07\x15\xfc\x89\xf2\xac\xc6\x3b\xfd\x24\xac\x2b\xc8\x12\x74\x3f\x6f\x00\xf3\x6d\x06\x7b\x7e\x72\x00\xe0\x38\xef\xc6\x0e\x69\x39\x6e\xc0\xdb\x62\xae\x5f\x4b\x58\x18\x00\xa5\x8e\x6b\x25\x9d\x0d\x3f\x07\x58\xb5\xd7\x6f\x96\xef\xf5\x2d\xc0\x2e\x09\x11\xa5\xe8\x5b\x01\x54\x18\x38\x10\xa2\x5d\x1f\x74\x01\x50\x75\xb5\xe7\x5c\xd1\xad\x24\x40\xd7\x57\xe1\x6a\x2d\xa3\xaa\x80\xca\x89\x5a\x7e\xad\x5a\x12\x80\x32\x56\x26\x56\xcd\x27\xb8\x00\x57\x2b\x2f\xc5\xb6\x1f\x4c\x04\x0c\x54\x15\x7a\xd1\x6b\x2d\x0a\xe8\x63\x1b\x69\x7b\x29\xe4\x38\x15\xaa\x37\xdf\xff\xce\xdc\xa7\x0c\xc8\xbc\x49\x77\x70\x83\x4d\x0d\x20\xff\xda\xb7\x17\x47\x9f\xc9\x01\x6e\xdb\x14\xc1\x3d\xf6\x2d\x99\x0a\x82\xb1\xc7\x66\x3c\x47\x0d\x00\xad\x84\x12\x47\x36\xd4\x1a\x01\x3e\x72\xf5\x1b\xac\xd9\xc0\x03\xc8\xb6\xf6\xac\x7a\x53\xdf\x18\x81\x5f\xce\xbb\xe7\xa4\xf8\xb1\xc1\x3f\x60\x2e\x6c\x3e\x6b\xac\xca\x03\xc8\xe2\x10\x1e\x4a\x62\xd5\x00\x2c\xd5\xeb\xda\xe3\x9d\x6f\x09\x98\xa1\x1e\x76\xef\xf5\xa5\x0e\xc0\x0b\x1d\x9c\xfa\x7f\xe1\xea\xa4\xeb\xff\x17\xb9\x5a\x45\x9f\xcd\x2b\x1b\x01\xd7\x27\xeb\xb0\x84\x55\x9d\x07\xfc\xd5\xf0\x5c\x4f\xe9\xd0\x65\x40\x99\x87\xbe\x89\xa7\xe7\x72\xc9\xc8\x25\xff\xa4\x83\xf7\xe3\x00\x81\xec\xed\x3f\x56\xf7\x97\xb0\x01\x4a\x6b\x6e\xf1\xf8\x2d\x29\x01\x58\x1a\x74\x9f\x4e\x8f\x74\x0d\xd0\xb2\xfb\x73\x86\xc8\x7d\x6b\xc0\x09\xb9\x83\xcc\x22\xe9\x0c\x54\xb0\x0d\xdd\x9f\xb8\x69\xa9\x83\xa0\x80\xa4\x3f\x91\x53\x29\xc6\x01\x14\xe4\xb6\xa4\x46\xf9\x48\x6e\xa4\xc2\x29\xd2\x16\x09\x26\xbb\x56\x02\x0d\xb2\x65\xbd\xbe\x4e\x2a\xc2\xfc\xeb\x3f\xe7\x5c\xc6\x85\x01\x77\x37\x98\xe9\xab\xd1\x9b\x00\x9a\x89\x74\x66\xf2\x8d\x33\x03\xb2\x6f\x78\x1f\xce\x1c\x7e\x0f\x30\x59\xef\x80\xa3\x10\x71\x09\xf0\xae\xd9\x4d\x33\x2f\x76\x07\xc0\xab\x87\x2b\xb5\x7a\xfb\x4e\x91\x29\xc5\xeb\xb4\xb9\xd3\x86\x95\x59\xcd\x87\x53\xb4\xeb\xbe\x9b\x1a\xe0\x82\xff\xd7\xe9\x83\x83\x0c\x80\x2e\xe5\x57\x02\x5a\xae\x23\x81\x8a\xcc\x4b\x83\xd7\xd7\x73\x01\x05\x62\xfe\xc9\x9b\x39\xd9\x85\x00\xaf\x28\xd8\x75\xdb\x57\xee\x01\x6c\x55\xcd\xe2\xf8\x32\xb7\x0e\x90\x36\x8e\x41\x72\xb0\xde\x12\xd0\xac\xbf\x87\x3c\xd9\xaa\x0a\x58\x45\x2e\x20\xdd\xfd\x94\x01\x28\xfe\xc4\x20\xfb\x19\xf8\x00\x7e\x4b\x64\x4c\x2d\x43\x59\x40\xbb\x70\xdd\x85\x6f\xfe\x0a\x80\x71\x02\x83\xb1\xad\x03\x48\xa0\xd6\x4b\xd5\x2f\x2d\x56\xdb\x00\xa5\x0a\xf0\xe6\xda\x8c\x2a\x32\xa5\x68\x98\x84\x0f\xc4\x1d\xd7\xa1\xc2\x9e\xa7\x2f\xd7\xd8\xfc\x74\x00\xfc\xa5\x79\x7f\xbf\x51\xad\x2d\x60\x00\xb9\xc9\x62\x9d\x2c\x27\x60\x2e\x49\xde\xf4\x5c\xc1\x57\x02\x93\x45\xa3\x4d\x47\xc5\x19\x57\x9e\x25\xcd\xdf\x55\x85\x3a\x80\x5c\x82\xcd\x97\x89\x16\x23\xc0\x2b\x31\x1c\xe7\x9c\xbf\x6d\x02\xb4\xb9\x5c\x58\x40\xfb\x28\x18\x70\xa6\xd3\x4c\xc5\xe4\xb1\x00\x15\x72\x66\xf7\xbd\x34\x74\x5c\x05\xa8\x26\x39\x49\xc3\x99\xd3\x43\x20\x97\x5e\x52\xa0\xc3\x9e\x5c\x40\xc5\xa0\xfb\x25\x46\x75\xb7\x00\x0f\x7e\x4e\x8c\xf8\x0b\x4f\x66\x2e\xd3\xd4\x2a\x7d\xc0\x51\x59\x6d\x2d\x2e\x56\x5b\x2a\xa4\x3b\xf9\xe4\x24\x99\x91\xc8\xe8\x5a\x62\x70\x98\x7f\x5c\x04\x50\xf2\x8d\x10\x7d\xe2\xd3\x34\xc0\xc7\x5d\x43\xa6\x7b\xa2\x1a\x01\xaf\xae\x0f\x3b\x42\x67\xbd\xb2\xab\x2a\x3a\xb0\x6a\x4f\xb5\x1d\x15\x8e\xe8\x9c\x58\xe8\x0c\x3d\x40\x85\x17\xdb\x8a\x43\xac\x22\xb8\x01\x2f\x6d\xdb\xcf\xe0\xe3\xd2\x45\xe0\xa7\x44\xb5\xa2\x90\xcf\x34\x80\x64\x86\x1f\x5a\x11\x0c\xf6\x80\xb7\xfa\xae\x70\xbf\xb9\x1a\x04\x28\xed\xab\x75\xb6\x8f\x9c\x07\x18\x3d\x6b\x35\x7d\x54\x37\x15\x70\xe4\xa6\x6c\x90\x52\xcb\x37\x02\x27\x76\xaa\x2d\xd1\x9d\x3e\x0a\xa8\xab\x13\xf7\x5b\xa9\x84\x0c\x98\x7b\x4d\xe5\xfd\xe6\x6f\x8d\x80\x57\xc6\xbf\x5c\x8c\xae\x6e\x02\x7c\xde\x24\x3b\xf0\x17\x29\xf1\x7e\x37\xa7\x46\xae\x03\xca\x5c\xf4\xce\x91\xe8\x4a\x03\xcc\x1a\x3c\xb8\x95\xf5\xfb\x1d\xc0\xd8\xba\x7d\x0b\x73\x0a\xb7\x00\x15\x95\x46\x9b\xf5\x77\xfe\x22\x50\x43\xb8\xbc\xe1\xee\xc3\xed\x80\x8d\xd6\xc5\xef\x15\xb6\xbe\x23\x70\xda\x5a\xff\xee\xe0\x4d\x6e\xa0\x20\xc1\x65\xb5\x48\x9e\xa8\x32\xe0\x3c\xcd\x35\xfa\x56\xd7\x0b\x80\xcd\x01\xfb\x26\x2d\x99\x8f\x01\x66\xeb\xbb\xbe\x3c\xf9\x67\x99\xc0\x26\x91\xcb\x9a\x9b\xf6\x2f\x12\x18\x3a\xcc\xd5\xbe\xeb\x90\x22\xe0\x11\xdd\x77\x5f\x2f\x1b\xd2\x02\xc6\x8d\x78\x71\xa6\xb1\xb3\x50\xc1\xb6\x47\xa9\x39\xd6\x45\x1f\xf0\x85\xe0\xc5\x16\x81\x6e\x5e\xc0\x2b\xde\x2e\x25\xd6\x87\x1c\x01\xd3\x87\xff\xd4\x48\x31\xf1\x00\x76\x09\x4d\x45\xf1\x09\xed\x06\x0c\x3e\x61\x72\xde\x05\x00\x50\xa6\xc9\x59\x93\xe9\xa9\x2e\x60\x92\x78\xe3\xa6\xf0\xb8\x39\x02\x97\x67\x1d\x5f\xf0\xab\xe9\x01\x26\x45\xcd\x9c\xb6\xf0\xd1\x07\xcc\x2d\x3e\x5a\x93\x20\x2a\x4b\x85\x51\x8f\x9b\xe2\xb7\xbe\x23\x81\x97\x45\xb6\x5c\xec\x94\xd7\x05\xcc\x4b\x5d\x73\xdb\xd7\x7f\x17\x60\xf6\x60\x2c\xbb\xed\x2d\x16\x40\xb3\xdf\xd7\xb7\x6d\x69\xfc\x41\x60\x64\xa7\xba\x22\x2d\xb7\x38\x20\xa7\x55\x46\xa7\xb9\xf1\x3c\x41\xc1\xac\x7c\x5e\xf7\x38\xe3\x20\x09\xf5\x95\x3c\x12\xd5\x07\x16\x08\x0c\xe2\xb0\x70\x58\x98\xdf\x0c\x58\xcb\xde\xbc\xc7\x9e\x3d\x10\xb0\xac\xa5\x89\x3b\x7f\xd4\x7e\xe5\xcb\x3c\x7f\x5b\xa3\xb7\x1e\x50\xff\xc4\xfb\xdd\x97\x0f\x47\x03\xd2\x32\xd4\x90\xd8\x0f\x87\x52\x15\x15\x39\x1d\xb7\x8e\x97\xc1\x80\x6f\x1d\xc4\x82\xb9\x3b\x82\x01\x2d\xdf\x8f\x37\x5c\x68\x0f\x06\xcc\xc9\xf7\xa2\xf9\x79\x63\x17\x60\x62\x40\xe2\x38\x6d\x80\x04\xe0\xb7\x2b\xcd\xbb\x04\x26\x95\xa9\x70\x4e\xc8\xf2\xc7\x41\x1a\x17\x40\xe1\x37\xc5\x23\x7d\xdd\xeb\x00\x63\xb4\xd2\xcc\x04\xa3\xc6\x08\xbc\x32\xc4\x30\xde\x3b\x34\x43\x05\x37\xa7\x9f\x7c\x1e\xcb\x5b\x81\x82\xe5\xf5\xaf\xe4\x6e\x3c\x50\x03\xf4\xcd\xfa\x1d\xd5\x1c\x75\x1f\xf0\xfd\x83\x8d\x4c\xea\x77\x63\xc9\x68\xc9\x97\x30\x2a\x77\x27\x04\x30\x7f\x96\x4d\x54\x46\xce\x1d\x30\x59\xbe\xfa\x2d\x17\xf3\x01\xc0\xdf\xcf\xb6\xf4\xa5\xc9\x5d\x00\x7c\xc5\x99\xc4\xb6\x60\x2d\x06\xa8\xdb\x9e\x6d\x78\x7a\x51\x11\x70\x52\x82\x31\x22\xeb\x94\x38\xe0\xb9\xb4\xe9\xbb\x76\x2d\x12\x80\x2e\xf2\xbe\x67\x25\x6e\x13\x80\x0c\x41\xda\x43\xd7\x4d\x5a\x08\x5c\xba\x70\x75\xf4\x4a\x27\x52\xe1\xce\x55\x9f\xae\xed\xcc\x7d\x24\x3c\x51\x11\xc2\xbe\xea\xb2\x0d\xe0\x2e\x65\xba\x1e\x25\xa3\x2e\x02\xd5\xe5\x16\xee\xf1\xe4\x34\x01\x05\x17\x8f\x70\x3c\xfb\x8b\xef\xbb\xd3\xcf\x6c\xf1\xd4\x07\xfc\x7e\x7a\xcd\xaa\x17\x6b\xcb\x01\xe7\x6c\x9d\xfd\xb8\xf7\x97\x03\xbe\xb8\xc3\x1f\x06\x8a\x1e\x80\x3e\x7e\x5e\xcf\x4a\x04\xca\x01\x55\x51\xf7\xf0\x13\xe7\x38\xc0\xb2\x08\xab\x6e\x23\xc7\x30\x40\xb9\x8d\x89\x4d\xd2\x0e\x61\x80\x3c\x73\xca\xb4\xc9\xfe\x5e\x64\x74\x3c\x9a\x33\xec\x93\x61\x0b\x58\xb4\x77\xc7\xdb\xc5\x29\x3e\xc0\x84\x97\x26\xa7\x36\x5f\xa2\x03\xd4\x08\xa8\x54\xbb\x17\xa9\x0c\xd8\xa2\x68\x5f\xfd\x03\xf3\xc8\xf3\x99\x3b\x9c\x18\x05\xf2\x00\x7b\x2d\xe4\xed\xcb\xfd\xf2\x00\xfd\xca\x83\x71\xa7\x6f\x21\xe0\xc3\x78\x9d\x29\x3a\x86\x1c\xc0\xce\xf3\x5c\x77\x55\x72\x94\x01\x39\x85\xe4\x97\x53\x9f\xa9\x01\xaa\x6d\xbd\x43\xff\x2e\x74\x2d\xe0\x17\x6b\x2d\xd7\x82\x0f\x1d\xe4\xf9\x3f\xc5\xd7\xbc\xef\xcf\x12\x28\xf0\x4c\xcc\x75\xc9\xcc\x11\xd0\xfd\x8d\xe4\x4e\xf7\xab\xbf\x09\x3c\x10\x65\x73\x34\xec\xa4\x10\xe0\xb9\xe9\x6f\x77\x4a\x14\x4f\x53\xe1\x5d\xcd\x09\x92\xe4\xa0\x2b\x60\xa1\xac\x27\x5b\x62\x75\x06\xe0\x85\xd1\xb7\xca\x21\x36\xf7\xc9\xb8\x5b\x84\x25\x6e\xee\xf7\x65\xc0\xc0\x1d\x12\x82\xee\x15\xb2\x30\xff\xbd\xbf\xf8\xd1\x3d\x35\xc0\xe3\x5a\x97\xdf\x3c\x19\xb6\x00\x1c\x96\x98\x5c\xbc\x6c\x6a\x0e\x68\xb2\x63\x17\xd3\xc9\x0a\x03\xc0\x8b\x5a\xf7\x54\xe9\x55\xfe\x10\x48\xcb\x48\x37\xf7\xf6\xb9\x2c\xe0\x30\xbe\x0a\x53\x73\x1e\x24\xf0\x61\x02\x7f\x9d\xb3\xf2\x6e\xf8\x07\x36\xbd\x46\xc3\x94\x41\x6e\xc0\xb4\xd7\x33\xee\xec\x51\x1b\x00\x4b\x39\x2e\xd6\x37\x39\x49\x00\x8a\x04\x17\x0c\xae\x52\x2e\x05\xec\xbd\x26\xf7\xb0\xec\x6a\x1e\x60\xfc\xa3\x29\x46\xc1\xda\x3c\xc0\x2f\xf9\x76\x17\x87\xd6\x73\x02\x3e\x97\x39\xad\x2e\x58\x72\x03\x30\xb3\xd9\xae\xe4\x90\xec\x5a\x40\x89\x7b\xe9\x67\xe5\xaa\x99\x00\x37\x97\xb4\xb1\xd2\x3b\x1a\x03\x8a\x89\x71\xdc\x26\xcc\xce\x91\xd0\x70\xbf\xca\x4b\xe9\xa5\xc3\x40\x41\xec\xd3\x77\x23\xc6\xb9\x95\x80\xc7\xac\x73\x26\x88\xf2\x52\xc0\xc6\xc8\xbd\xaa\xc7\x3a\x5f\x11\x68\xf0\x70\x56\x3b\x5a\xe4\x16\xe0\x07\xc8\x32\xb7\xb6\xec\x02\x4c\x6e\xae\xbd\x6d\x2b\x59\x0d\xb8\x69\xf5\xed\xad\xa9\x97\x98\x00\xa7\x4f\xd9\xed\x7c\x33\xbc\x11\x70\x3a\xa9\x36\xaf\xf7\xc9\x57\x02\x49\xea\x86\xd5\xab\xf3\x25\x01\xad\x57\x2d\x14\x96\x32\xdb\x00\x0a\x59\x92\x92\xdc\xf7\xc5\x03\xc6\xdc\x95\x3a\xfa\xdb\xbc\x96\x84\xcb\xed\x37\x2c\x42\x78\xe3\x81\x82\x14\xf3\xb8\x5e\xf9\xef\x3c\x80\xc7\x4c\x32\x4f\x30\x05\x2f\x13\xc8\x40\xb3\x6b\xb5\xbc\x14\x3f\x60\xe0\x96\xaf\x2d\x22\xdf\x94\xa9\xe0\xf2\x32\xa3\x5f\xa6\x20\x9b\x84\xaf\xd5\xc6\xa3\x9c\xd8\xed\x80\x82\x81\xbc\x1f\x29\xd7\x23\xf9\x00\xff\xdc\x94\x54\x3b\x2b\x77\xfc\x5f\xa8\x34\xd6\x79\xbf\xdc\x4a\xf3\x2f\xbc\xe5\x99\x33\x89\x34\x7a\x45\xa0\xb6\xdf\xf0\xc0\xd2\xe0\x2c\x81\x2d\x3c\xad\xde\xfb\x32\x6d\x00\x37\x18\xfe\x60\x6c\xa2\x95\xa2\xc2\xea\x48\x78\xc2\x19\xf5\x8e\x84\xa5\x8c\x3e\xad\xdd\x0a\x1a\x80\x16\xb2\x8c\x7b\xfb\x68\x57\x03\x9a\x5e\x7a\x74\x63\x4c\xbd\x0c\x50\x5a\xd1\xfa\xe4\x01\x8d\xb2\x95\x4d\x8b\x8a\xb3\xa3\x46\x17\x19\xaf\xbe\xac\x67\xb8\x5e\x55\x4a\xc6\xa9\xfa\x88\xd2\xbf\x43\x97\x5d\x62\x79\x9f\xc8\x79\x02\x6e\x93\x73\x2d\x48\xe3\xf0\xf9\x57\x61\xd2\x79\xab\x71\xcf\xd7\x01\xd0\xf2\x79\x66\x6d\xe4\xaa\x25\x02\x25\x47\x73\x6e\xbe\x76\x37\x04\x0a\x2a\x3a\x44\xb2\x1b\xad\x0a\x00\xe9\x02\x98\x4e\x3c\xd5\x24\x03\xfa\x5b\xdd\x13\xf8\x8b\x24\x49\xd9\x57\xa9\x1a\xc1\x54\x48\xec\x61\xb1\x09\x2d\x19\x21\x28\x60\x36\xdc\x3e\xce\x57\x35\x44\x60\x4f\xa3\x8f\xdf\xa0\x1e\x33\x60\x40\xe6\x71\x0d\xdd\xc5\x28\x2a\x0c\x8e\x95\x05\x15\x6d\xb2\x00\x54\xa0\x89\xd4\x66\xd3\xcf\x22\x63\x91\xde\xa6\x32\xfa\x33\xaf\x00\x7f\xad\x1b\xcf\x62\x5c\xc1\x0b\x21\xed\xb1\x75\x11\x8f\x00\x2b\x6d\xbf\x1a\x16\x95\xaa\x01\xa6\xad\x6f\xa8\x76\xb6\xb6\xfe\x17\xac\xbe\x2e\xd1\xef\xa8\x5f\x99\xe4\x6d\x19\x92\x59\x9d\x32\xc9\x78\x7a\xdf\x9b\x2e\xd3\x95\x92\x22\xe4\xb6\xb5\xf8\xbd\x21\xe0\x9a\x47\x4b\x1a\xd3\x37\x5e\x12\xa8\x3a\xf8\x29\xe4\xe9\x6a\x33\x40\x6b\x95\xbb\xf9\x06\xdb\x78\xa9\xb0\xc1\x40\xe2\x72\xcb\x7c\x1f\x41\x81\x15\x79\x5d\xf3\x30\xa1\x0c\x14\x94\x4c\xdd\x0a\x9f\x2f\xdf\x0d\xb8\xbc\x7f\xbd\xdf\x1d\xcb\xcf\x04\x8a\xb7\xe4\x16\x97\xd5\x26\x00\x06\x9e\x11\x3f\x74\x6f\x8d\x18\xa0\x43\xd7\x29\xf5\xa9\x22\x6e\xc0\xe5\xf0\x69\x26\x36\x9b\x3a\x40\x1f\xa7\xab\xa5\xac\x2b\x20\x5f\x91\x4a\x17\xc8\xf6\x00\xfc\x99\x2c\x51\xfe\xe9\xaa\x0d\xe0\xd8\x1e\x87\x4f\x0a\xa6\x75\x80\x66\x6c\x7b\x9f\x1c\xaa\xbe\x02\x48\x9b\xcc\xf0\xda\xe9\xf3\x6a\x40\x06\xd3\x75\x96\x6a\x89\xd5\x80\xa9\x72\x63\xca\xeb\xc7\x0e\x01\xaa\x66\x24\x87\x0a\x46\xd1\x01\x5e\x6b\x8c\x99\x2a\x17\xe2\x04\xa4\x8d\x76\xb7\xde\x78\xc5\x0b\xf0\x40\x9a\xf4\xf0\x1f\x43\x36\xc0\x2b\x3a\x46\xde\x7f\x5a\xe7\x09\x94\x24\x1b\x9f\xf0\xa9\xcd\x02\x0a\x62\xaf\x1e\x39\xe1\x37\x1f\x09\xa8\xb9\xbb\x4d\x63\x4c\x84\x17\x30\xe4\xc3\xb4\xf8\x77\x3d\x7e\xc0\xf0\x8e\xc9\x2b\xb7\xb8\xd9\x00\x93\x72\xe6\x77\x74\x3c\x54\x00\xdc\x32\x68\x67\xba\x8a\xff\x1b\x81\x6f\xdf\xb8\x99\xbc\x1c\xf8\x4e\xa0\x55\xeb\xd1\xce\x94\xdb\x34\x80\x1f\x05\x1f\xb1\x69\x3f\x41\x02\x9b\xde\x1a\x07\xac\x66\xde\x0a\x54\xd0\x3a\xdc\x6a\x42\x47\x07\xa8\xb2\xec\x65\x33\x73\x47\x09\x70\xf2\x4c\x4e\xf6\xc9\x36\x31\x2a\x80\x8e\xda\xf5\x66\x7f\x5a\xc0\xf2\xa9\x11\x8e\xb6\xd8\x8d\x80\xba\xe3\x77\xd2\xa2\xcb\xec\x00\x37\x7f\x7c\xd1\x55\x50\xfc\x92\xc0\x19\x43\xf9\x03\xaf\x58\x69\x80\x82\xa4\x03\xf2\x6b\x12\x38\x5e\x10\x98\xdd\x45\x77\x7a\x99\x77\x0d\x60\xf2\x67\xcf\xa2\xf7\xed\x19\x54\x98\xa9\x32\x98\xfd\xca\x95\x01\xf8\xe0\xe3\xb6\x18\x81\xfa\xb5\x80\xbc\xc0\x57\x90\xba\x72\x9c\xde\xe7\xfe\x83\x83\xc1\x95\x15\xf0\x04\x5f\x55\x8e\x6b\x20\x07\xe0\xde\x2d\xca\xd3\x8b\x92\xcf\x09\xac\x66\xf7\x4e\x7f\x91\x9a\x0e\x78\x7e\x49\xd2\x47\x47\x33\x03\x70\xb8\xb7\x74\x5a\x28\xf0\x31\x09\x1f\x9c\x34\xed\x29\xd3\x9d\x22\x28\xa0\xcd\x9e\x1f\xb8\xba\x36\x0d\x28\xd8\xfd\x4c\x4b\xd2\x21\x4a\x14\xb0\xe5\xcc\xa4\xfd\xf5\xa7\xec\x80\x49\xfd\x96\x4b\x5d\x01\xcf\x49\xa8\xc3\x54\xab\xf9\xee\x74\x17\x09\xa7\x99\x5f\x86\xea\x05\x6f\x05\x0a\xe4\x49\x93\x8a\xd6\x7b\x3e\x13\x14\x0c\xfb\xb3\x49\xb9\xce\x6c\x00\x6c\xbf\x41\x57\x55\x50\xb2\x0a\x90\x7d\x5a\x6b\x7b\x63\x46\x26\x15\x2e\xef\xf4\xbf\x5e\xf6\x50\x12\x30\xe2\x1a\x98\xf2\xee\xfa\x46\xa0\xa7\x5b\x81\xc4\x20\x0d\x13\xa0\xbe\x6c\x96\x91\xfc\xf3\x1c\x40\x8b\xfe\x05\x6d\xe9\x9c\x43\x54\x18\x56\x15\x23\x19\xf3\x78\x51\x95\xdc\xb8\xdf\x2f\x4e\x48\x9d\xf9\xbf\x83\xc7\xfd\xe3\xef\x24\xbe\x04\x50\xe1\xcd\xc2\x99\xf6\xe5\x09\x0f\xaa\x32\x11\x73\x77\xdf\x52\x30\x17\x60\x50\x46\x78\xe6\x9f\xdd\x09\x80\xd1\x16\x5b\x87\x74\xd6\xee\xa0\x42\xa7\x75\x42\x6b\xd1\xc0\x3b\x12\x86\x49\xbc\x7e\x16\xfe\xd0\x1b\xb0\xac\xf3\xe4\x77\x16\xf7\x6c\x32\x56\x4b\xab\x21\x27\xe9\x25\x60\xf5\x1a\x86\x31\x96\x2b\x55\x80\xae\x25\x49\xba\xc5\xca\x9b\xc9\xb8\xe1\xa9\x90\x73\xcb\xb1\x8b\x80\xc3\xa6\xdb\x52\x33\x3f\xc4\x00\x7e\xde\x7b\x9d\xed\xf0\xfa\x04\xc0\x4f\x0a\x4d\x6a\xad\x29\xf4\x80\x1f\xdf\xef\xfa\xb3\xa3\xc0\x19\xf0\x76\x4e\x79\xde\xde\x13\x3f\x09\x3c\xbb\xf7\x3d\x5d\xcf\xa5\x4d\x80\x9d\x1e\xa9\x06\xa3\x3d\x8a\x80\xef\x37\x09\xc4\x6c\x9e\x32\x06\xcc\xfd\xb9\x37\xf6\xe2\x85\x4c\x2a\xdc\xad\x32\x13\x7d\xf2\x34\x1a\xf0\x98\xc6\xe0\x40\x30\x46\x03\x5a\xa4\xea\x0e\x9d\xf1\x75\x07\x9c\x48\x8c\x13\x9a\xec\xbd\x06\xe8\x66\x6e\x7d\x9c\xcf\xd9\x1d\x50\xcb\xee\xd8\x13\x1a\x5d\xf1\x95\x4f\xba\x23\xd2\xef\xd8\x71\x40\xb7\xcf\x1c\xae\x0d\x12\x43\x04\x32\x1f\x76\x2e\xe4\x92\x9c\x21\x50\x3c\xa3\x97\xc4\xf2\x68\x35\x60\xc9\xcf\x26\xd5\xe6\x11\x0e\x40\x4d\x12\xd3\x7e\xad\xeb\xda\x54\xa0\xcd\x64\x6a\xda\x32\x3e\x48\x50\xc0\xd5\xd3\x71\x29\xd7\xc4\x0d\x28\xb8\x5e\xb4\x58\xc7\x4c\x96\x00\xbc\x23\x41\x22\x04\xce\x4e\x10\x68\x9b\x39\xac\x27\x4b\xdf\x02\xb8\xfa\x99\xd4\x9f\x77\xcf\x47\xc8\xe8\xe8\x6c\x2b\xdb\xaf\xdc\x02\xa8\xea\xad\x78\x64\xdc\x84\x0d\x50\x75\x59\xd6\xfa\xa7\x31\x1d\x60\xda\x3d\x93\x1f\x2a\x4d\x9f\x09\x0c\x61\x7e\xb5\xf1\xa6\xcf\x5d\xc0\x38\xfd\xdf\xda\xc5\xff\xc1\xc8\xb7\xb0\x96\xbf\x60\xf2\xad\xdb\xfe\xfe\xd4\x3e\x2a\xc4\xad\xb2\x77\xee\x37\xda\x4c\x55\x9e\x0e\x5f\x54\xfa\xbd\xf2\x2b\xbb\xf7\x94\x26\xf1\xd1\x1c\x25\xe3\xe7\x1b\xd2\x1c\xeb\x16\x0c\x01\xf7\xcc\xec\xaf\xcc\xe4\x9e\x26\x50\x60\x6d\xf2\x7d\xba\x97\xa7\x81\x82\x07\x27\xec\xbd\xb9\x5f\xf1\x00\x4a\xb0\x8e\xcc\x7e\x5f\x1c\x25\xb0\xfb\x7e\x32\x7d\x08\xff\xd7\x7f\xc1\x42\x64\x36\x20\x72\xff\x34\x81\x21\xe2\x9e\x61\x9f\xc3\x45\x01\xe7\x0c\xe4\xb9\x78\x8b\xb9\xa8\x90\xfc\xea\x3b\xab\x57\xd8\x02\x81\x5f\x42\x44\xc5\x73\x9e\xc7\x02\x1a\x18\x5b\x38\x6f\xfd\x42\x03\xf8\xa5\xcc\x69\xbc\xa6\x31\x9f\x0a\x5e\x63\x65\x15\x3b\xe3\x99\x01\xfd\xcb\x8b\xae\xf1\xdd\x7e\x08\x78\x25\x61\x6c\xf4\x2f\x8e\x99\xe9\x29\xfe\xc5\x8e\xc1\xb0\x64\x47\x97\x36\xc0\x39\x52\xf6\x3b\xa9\xcd\xaf\x08\x94\x0c\x1d\xd9\xe9\x39\x48\x0b\xff\x80\x49\xb7\x63\x45\x9f\x93\xc1\xbf\xb0\x6d\xf8\xf7\x2e\x6e\xa1\x69\x02\x8b\xc4\x42\xf6\x66\x1b\x3f\x00\xbc\x58\x24\xe5\xba\x83\xf3\x14\x60\xea\xcb\x0a\xad\x78\x0b\x7d\x40\xd5\x1b\x7b\xfd\xd9\xdf\xc9\x00\xee\x34\x97\x8d\x3e\x61\xa7\x0b\x58\x78\x6e\x6d\x2a\x67\x5c\x30\xa0\xd9\xaa\xc6\xe3\x5c\x3d\xab\xa8\x10\x34\xcf\x64\xc9\xec\x40\x50\x95\x76\xe6\x51\xe5\x83\xf6\x74\x80\xc9\x85\x41\x2d\x37\xf7\x2e\x11\xe8\x60\x2f\x39\xa5\x62\x1b\x0b\x38\x51\xb7\x63\x24\x8a\x67\x80\x84\xd9\x66\x0d\x1f\x78\x9e\x1f\x80\x7f\x60\x24\x42\xe5\xd9\xab\x2d\xe2\x80\xce\xb7\x1b\x1a\x0a\xf7\x59\x01\x66\x9f\x75\x79\x76\xdd\x69\x37\xe0\x7e\xf7\x9b\xaa\xd1\xbc\xbb\xa8\xf0\xf6\x72\x71\x9b\x9c\x29\x2f\xa0\x7f\x47\x37\xdb\xfe\x0f\x72\x80\x67\xc5\x3e\x5e\x1e\x95\xd2\x06\x1c\xe7\xd2\x7f\xe6\x76\xfc\x3b\x81\xbf\x18\x2e\x68\xef\x17\xbe\x0b\xd8\x95\xb1\x49\x31\xfc\xb3\x39\x60\xef\xac\x74\x6a\xa7\x57\x3d\x19\x77\x97\xd0\x8e\x87\xae\x94\x92\x2e\xd5\xc5\x52\xaf\x0e\x02\x69\x5c\x18\x99\x35\xfe\x78\x03\xfe\x90\x98\x2a\x38\x65\xbf\x03\x90\xe1\x41\x6a\xeb\xf8\xfe\x75\x80\x22\xe7\x19\x19\x5c\x19\x57\x01\x16\xee\x4e\x92\xad\x7b\x25\x05\x78\xfd\x7c\xfa\x7a\x87\x29\x0b\xc0\x4d\xce\xf5\xc7\xb7\xc4\xd7\x53\xe1\xbc\x81\xa7\xc0\x7f\xf1\xdc\xdf\xba\xd9\x3f\x59\x1a\x70\x96\x08\xe5\xfa\x91\x2f\x00\xf8\x31\x32\xd2\xbb\xd3\x9d\x13\x30\xe0\x66\x58\x62\x44\x45\x21\x60\xa7\xfa\xf8\xd1\xed\xf4\x5e\x54\x60\x9f\xdc\xed\x3d\x5c\xf7\x89\xc0\x67\x91\x56\x57\x59\x36\xfe\x22\x30\xe5\xc5\x51\x4b\xcd\x40\x4d\xa0\x60\xcb\x79\x6f\xa5\xcc\xd4\x36\x02\x8d\x8c\x3e\x3d\xdf\xa0\xff\x95\xc0\x73\xad\x71\xa2\xfb\x3a\xc7\xa8\x70\xf3\x49\x52\xf8\xbe\xbc\x9d\x80\x9d\xa3\x3c\x73\xc1\x36\x74\x80\xeb\x99\x2d\x9a\xd3\x0f\x4b\x01\xb6\x28\x3f\x12\x3b\x22\xb9\x9f\x0a\x4f\x0c\xe4\x17\x1b\xc4\x79\x00\xb3\x1f\x38\x4f\x37\xd2\x33\x02\x5e\x1e\x7c\xeb\x66\xf3\x75\x90\x40\x97\x2b\x5e\xe7\xde\xf2\x9b\x02\x05\x67\xc4\x09\xb3\x3d\x8f\x94\xa9\x50\xe8\x96\xbf\xcd\xe6\xe5\x06\x40\xe7\xf3\x09\x43\xa5\x1b\xe9\x01\x33\xe6\x83\x63\xb2\x2f\x14\x03\x72\xde\x5a\xa8\x48\xc8\x10\x06\xdc\x7d\xca\x9f\xdf\xdd\x2d\x14\x70\xd7\xdb\xb7\xeb\x52\x5b\x2b\x00\xef\xe8\xbd\x61\x7f\xb0\x82\x76\x9b\x0f\x07\x41\xae\x81\x4c\x29\x39\x87\x9e\xef\xfd\x43\x6f\x0d\x88\x7d\x75\xfe\x1f\x39\x6d\xfe\x55\x5e\xfc\xe2\xdb\xe2\x69\x7b\x0a\xd0\x31\xcd\xd3\xde\x9e\x4e\x02\xb0\x7b\x55\xb0\x70\x65\x96\x31\xe0\xc3\xde\x3b\xb4\x16\xc3\xd5\x64\x7c\x3b\x71\xf1\x9e\x79\xd7\x45\x40\x13\x1d\x4b\xe3\x97\x74\x49\x80\xc7\x98\x87\x73\x26\x1f\x64\x00\x92\x58\x05\x87\x8b\xcb\x2e\x00\x9e\xde\x7d\x70\xbd\x57\xad\x20\x60\xd0\x8b\x82\x13\x17\xda\xf8\x01\x43\x1d\x4e\x08\xef\xb6\x53\x01\x2c\x62\xaa\x35\x48\x77\x16\x02\x3c\x9c\xe4\xe7\x74\xa2\xfb\x2a\x19\x83\x4c\xc5\x8e\xd2\xf8\x66\x00\x05\x81\x62\xa5\xd7\x37\x46\x67\x00\x3e\x9a\x97\xf7\xb6\x31\x92\x02\xb4\x2f\x09\xdd\xdc\x36\x3b\x48\x20\x4b\x86\xe3\xa0\xda\x31\x6d\xc0\xdb\xcf\xb4\x95\xa4\x79\xcc\x00\xb5\xb9\xd4\xbb\xd8\xab\x5c\xa8\x20\xb8\x71\xcd\xd9\xf6\x8d\xc6\x80\xb6\xd5\x0e\x5f\x26\xa2\x7f\x12\x58\xf0\x74\x87\xa4\x7d\x52\x14\x50\xf0\x95\x26\x85\xeb\xb8\xae\x0f\x60\xff\xed\x77\x8b\xbe\xa1\x9d\x04\x0e\x1b\xcb\xba\xcc\x2e\x75\x92\x30\x7e\x6c\xf7\xc0\x98\xb6\x0c\xfc\x03\x8a\x16\xab\xea\xa2\xa6\x85\xfe\x05\x91\x67\x9e\xd5\xcf\x89\x41\x02\x9f\xa5\xb1\x2c\xa7\x98\x1b\x00\xee\xfb\x14\x90\xa5\x5e\x2b\x42\x85\xff\xef\x5a\x30\x51\x9e\x32\xa6\x79\xff\x12\x50\xb0\xeb\xcb\x4f\xb2\xca\x13\x06\xc0\xe0\xe4\xfc\xe0\x27\xbd\x52\x80\x86\xdf\xe5\xf3\xef\x79\x04\x51\xa1\x3a\xca\x56\xa8\x74\xc0\x00\xf0\xc2\x6b\x16\x23\x93\x42\x63\xc0\x0a\xe3\xb5\xfa\x09\x49\xfa\x54\x78\xf6\xab\xb8\xe4\xab\xdb\x35\x40\xe5\x2d\xa4\xe6\xbf\x30\x6c\xcb\xb4\x60\x3f\x12\x07\x78\xe5\x0b\x39\x89\xe3\xb9\x22\xe0\x43\x78\x25\x7a\xa5\x99\x16\x50\x5e\x72\xed\xc5\xa7\x44\x16\x19\x7f\x66\x0e\xf6\xa5\xb2\xfa\x03\xfe\xf9\x62\x2b\x18\xf8\xee\x1a\xe0\x94\x1a\xcf\x8e\xa6\xc9\x05\x02\xc7\x59\x3e\x79\xad\x4b\x29\x03\xb4\xff\x9e\xca\xfa\x17\x53\x37\x42\x67\xd6\xae\xa0\x70\xb9\x8d\xb6\xf6\x6b\x11\xa0\xb1\xb5\x69\x70\xcd\x0a\x2a\xd4\x7f\x09\xfd\x85\x27\xd7\xaa\xce\x7a\xad\x07\x24\xec\xc7\x0b\x18\x67\x38\x4e\xa0\xca\x6b\x8f\x0a\x39\x47\x00\x64\x81\x83\xcf\x0f\x0a\x5f\x22\x53\xca\xd0\x26\xb6\x77\x3b\xdf\x31\x03\x36\x3a\x6f\x99\x4d\x67\xd8\x07\x78\x24\x51\x99\x79\x9a\x5e\x07\x50\x37\xc5\xe1\xa3\xe1\x66\x4b\xc0\x3d\x0b\xac\xdb\x2e\xa3\x1a\x15\xb8\x26\xed\x9c\xee\x3b\xbc\x25\xf0\x55\xee\xab\x0a\x06\xc3\xdf\x04\xca\x2d\x67\x87\x7f\xb4\x09\x04\x0a\x36\xdf\x4a\x08\x6e\xf3\x1e\x20\x30\xf0\xe8\x36\x81\x73\x46\x6b\x01\x0d\xd8\xee\x8f\x6d\xed\xd2\x00\x14\xe6\x9f\x99\x3f\xe0\xae\x46\x85\x80\xb2\xe6\xcd\xa9\x92\x17\x48\x98\xff\xe0\x94\x49\x89\x9b\x26\x60\x71\xb3\xbc\xe3\x45\xfa\x65\x02\x17\x3f\xd8\x38\x85\xf2\x0f\x50\x61\xf3\xe1\xc2\x19\x85\x11\x49\x40\x41\x5a\xce\xc3\xfb\xde\x65\x10\x58\xd0\x62\xea\x55\x55\x4c\x0b\x14\x8c\xa4\xc9\xe8\x8b\x18\x4c\x11\xb8\x2d\xfe\x63\x50\xef\xb5\x6a\xa0\xe0\xa1\x98\x8e\x42\xe1\xd4\x4f\x02\x4d\xf2\x78\x7f\xed\xce\xf3\x03\x0a\x52\xf9\x44\xb3\x66\x2f\xb8\x00\xfe\x0a\xbe\x25\x28\x7a\x97\x16\x90\x86\xb8\xf1\x78\x75\x35\x03\xe0\x09\xc1\x80\xc3\x15\x5d\xfc\x80\xc6\x96\x91\xc1\xf7\xe8\xd7\x01\xae\x9f\x21\x1a\xfa\x5e\x72\x02\x7a\x85\xfc\xee\x8c\xba\x79\x9d\x8c\x8e\x3d\xc9\x5f\xde\x37\x6c\x07\xa4\xf5\x7d\x55\x94\x4f\x0f\x80\x49\x6b\x6b\xa4\xd5\x1a\x08\x40\xfe\x40\xec\xee\xb5\xd6\x02\x74\xfa\x5d\xd6\x4a\x77\x53\x0c\x50\xd0\x9d\xfb\xa7\x49\x98\x14\x15\xf2\x57\x71\xd5\x74\x4e\x9f\x05\x0c\x79\xe4\xb1\xea\x2f\xaa\x86\x8e\x3d\x9f\xdc\x1a\x4c\x05\x4b\x81\x87\x4e\xb4\x12\x23\x04\x05\x57\x6b\x66\xbd\xc3\xbd\x69\x80\x82\x08\xfd\x74\xdd\x1a\xda\xdb\x24\x54\x4b\xca\x6e\x6c\xd5\x35\x06\x0a\x5c\x46\xf5\x7a\x4c\xb7\x0d\x11\x38\x66\xb4\x87\xbd\xff\x0c\x2f\x50\xb0\xd9\x67\xcd\x8f\x66\xe3\x59\x82\x82\x0a\xfd\xe4\xcb\xaf\xb2\x3a\x08\x2c\x08\x9d\x1c\x12\xb8\x2e\x0b\xa8\x33\x93\x19\x26\x2b\xc7\x02\x68\x36\x12\x54\x16\x65\x27\x44\x55\xf2\x8f\xbe\x9e\xe7\x15\x4c\x03\xd4\x6e\x12\x73\x71\xe3\x4f\xa3\x2a\x0c\x55\xb7\x34\x0c\x56\x1e\x7c\x1b\x71\xd3\x0f\x2d\x2e\x8d\x04\x9e\x09\x75\xb9\xcd\xa8\xc0\x09\xa8\xf1\x82\xc5\xee\xe8\xc4\x2f\x02\xdf\xc9\xba\x2e\xe8\x6d\xf4\x04\xb4\xa7\x93\x7c\x47\x27\x37\x4a\x50\xe0\xb4\xe5\x48\x54\xe1\x15\x76\xa0\x40\x7d\x75\xfe\xf5\x56\xf5\x75\x80\xf9\x3b\xe7\xe2\xcf\x88\x65\x50\xe1\xe9\x76\xe1\x6f\x2e\x4c\xd7\x01\x9f\xf7\xf7\x7c\xfa\x72\x65\x27\xe0\x3c\xab\x31\x39\x3f\x92\x0f\xf0\x9e\x76\x97\xd2\xe1\xa7\x5b\xa9\xc0\x44\xb2\x21\xa7\xc9\x70\x51\xc1\x2f\xf8\xed\x9e\xed\xdb\x17\x09\xf4\x6b\x48\x1c\x2c\xe6\xe4\x07\x0a\xac\x8e\x3a\x6e\x5a\xe6\xec\x23\x61\xa0\xc9\x9a\x12\xf6\x4e\x4d\xc0\xb8\xb3\x0f\x23\x86\xd4\x1e\x11\x38\x58\x66\xc5\x73\x74\x92\x0f\x28\xd8\xce\xdf\xd4\x3b\x98\xff\x99\x40\x8d\x5f\x27\xfe\x7c\x79\x39\x40\xa0\xbc\x7d\xf4\x84\x80\xdc\x39\xf8\x07\x8e\x7a\xb7\xbc\xa5\x75\xf0\xa0\x42\xb0\xa9\x05\xcb\xad\xd9\x83\xff\x1a\xfa\x1f\xea\x0e\xef\x11\x6e\xb1\x3d\x49\x85\x9a\xc5\xde\x9d\x9e\x9f\x22\xa8\x4a\x98\x03\x27\xfd\xdf\xbf\x88\x2b\x6f\xeb\x85\x2c\x1b\x92\x00\xfd\xb4\x2a\x23\x8c\x0d\x0b\x00\x3b\xa2\xf6\xae\x73\xe1\x7a\x4c\xc6\x48\x81\xd1\x9d\xab\xf8\x2a\x00\x5b\x65\x7c\xa4\x4a\x8e\x36\x02\xc6\xe6\x88\xe1\x2b\xc1\x66\xc0\x1d\x81\xf6\x23\xd1\xfe\x8d\x80\xaa\x52\xc5\x31\x0c\x47\x1a\x01\x6d\x72\xc8\xab\x3f\xb2\xa5\x00\x3e\xbf\xf3\xd5\xef\xc8\x7c\x32\x60\xdf\x24\xfd\xf8\x25\xee\xe3\x80\x8f\xd2\x4c\x06\x05\x56\x1f\xa7\x2a\x97\xe4\x8a\xab\xea\x36\x6e\x06\xbc\xa2\xa7\xac\x2f\x90\x43\x00\xba\xce\x15\x49\x8a\x3a\x19\x03\x96\xa3\x9d\x91\x7b\xfa\x01\xc0\x22\x46\x9d\x30\xcb\x1e\x66\x40\xed\x7d\x3d\xca\xaf\x51\x1d\xd0\x68\x2f\xaf\xc4\xab\x30\x3e\x40\xf1\xe5\x53\x77\x1e\x8f\x06\x51\xe1\xd4\xa1\xc1\xdf\x4f\x43\x8e\x01\xa6\x04\x79\x49\x7c\x30\xfa\x49\x60\xc8\x3b\xf2\x3d\xe1\x86\x3d\x40\xc1\xa9\x92\xfb\x71\xf7\x3d\x5f\x11\xa8\x76\x56\x5c\xf2\xe6\x0e\x0e\xc0\xcf\x19\x43\x0f\xbe\xbc\x51\x07\xbc\xc7\xd3\x91\x1a\xe8\xc4\x0c\x68\xf9\x6c\xea\xfd\x91\x34\x71\xc0\xf5\x8a\xc2\xa7\xed\x64\xcb\xc8\x98\x13\x79\xc9\xff\x42\x0e\x23\xe0\x95\xb4\x17\xaa\xd5\xa9\x74\x80\xec\xdb\x5e\xef\x78\xe0\xb6\x06\x30\x25\xef\xb8\xce\x09\xc9\x0c\x2a\x44\x1d\xdb\x17\x66\x53\x1f\x45\x85\x0f\x21\xf5\xae\xf7\xc9\x51\x80\xfc\x5e\x9d\x52\x32\xde\x53\x04\xce\x7c\x2e\xe7\x5b\xfa\x33\x45\xe0\xc7\xdb\x8e\x52\x46\x7c\x3b\x81\x02\xb7\xd5\x67\x7f\x4b\xd2\x76\x11\x58\xfd\x69\xf0\x22\x77\xaa\x0c\xa0\xbf\xe1\xa7\x57\x63\x67\xe7\x08\xdc\x64\x2b\xb5\x3f\x22\x38\x00\x28\xd8\xf6\x3c\xa2\xb4\x6f\xe3\x30\x81\xa5\x3b\xf8\x2a\xf3\x73\xba\x48\xf8\xea\xd3\x8b\x2e\xd5\xfd\x06\x40\x01\x44\x4e\x45\x5c\xaa\x9e\x26\xd0\xea\xcf\xfc\x27\x4c\x50\x05\x7c\xcc\x68\x84\xbc\x36\x42\x80\xc7\xde\x36\x06\x4c\x64\xa6\x03\x0e\xf4\x13\xce\x87\x43\xca\x00\xb9\x36\x71\xec\x27\xad\x60\xd0\xb6\x7d\xed\x5f\xac\xbe\x2b\x60\xfd\x34\xd8\x17\x50\xc6\xc0\xc9\x74\x24\xd6\x87\xaa\xac\x3d\x96\x9c\x24\xca\xea\x0b\x38\x30\xf7\x96\xe1\x9a\x66\x2c\xe0\xc0\x8c\x48\xe3\x21\x0e\x0f\x40\x1d\xe1\x72\x0b\xb3\x8d\x89\x54\x43\xaf\x8f\x55\x72\xee\xe3\x34\x02\xd4\x22\x12\xba\x99\xcc\x4e\x93\xf1\x68\xc1\xd1\x77\xac\x6a\xeb\x00\xdf\x49\x2b\xdb\x2b\x68\xf2\x02\x46\x77\xf1\x76\x0a\x4f\xb3\x01\x56\xad\xdd\x61\xe5\xe1\x67\x07\x88\x9c\xdb\x93\xf7\xfa\x0c\x11\x28\x7d\xa1\xd6\xa4\xc9\xec\x08\x50\x90\x34\x5a\x37\x75\xd4\x8a\x11\x30\xc6\xd6\x7a\xf7\x40\x9c\x15\x15\x1a\x37\x97\x4e\x10\x31\x07\xa9\xa0\x99\xf0\xf6\x96\x5c\xad\x0a\xe0\xe8\x93\x11\x31\xd5\xc3\x25\x64\xfc\xcd\x5b\x48\x6e\xe8\xcd\x07\xac\x49\x52\x60\x4c\xf8\x70\x1b\xb0\x33\x75\x1f\xc3\xea\xa3\x25\x80\x0c\xec\xb3\x98\xcf\x7b\x1d\xf0\x86\x49\x88\xf9\x36\xfd\x50\x40\x06\xf3\xe5\xdc\x38\x9d\x61\x02\xf5\x77\x58\x7f\x61\xcc\xb5\x07\xf4\xd9\xc4\xc3\x1e\xf3\x46\x18\xd0\xb4\x50\x3c\xb3\xe5\x0c\x17\xe0\xba\xad\xde\xb9\x0f\xb7\x2d\x12\xf8\xc9\x33\xe3\x2a\x9f\xf2\x67\x02\x4f\xfb\x0b\xf6\x63\x90\x08\xa0\xfe\xd7\x97\x1f\x7b\x32\x33\x01\x33\x04\xed\x34\x07\x0b\xfa\x08\xd4\xe4\x24\x3b\x1b\x97\x31\x02\x05\xac\xb7\x95\xf4\x85\x6f\x0c\x10\x14\xbc\x7a\x17\x79\xc2\xb7\x49\x18\x28\x68\x58\x7c\x26\xe1\xa2\x16\x00\xe8\x75\xab\xb3\x7a\x80\xa1\x0c\x50\x5b\xd3\xa2\x34\x3b\xb2\x88\x8c\x1c\x6a\xe3\xaf\x73\xda\x99\x00\x0f\x36\x5d\x3f\xcd\xd5\xce\x07\x18\x21\xcc\x19\xa4\xa2\x5d\x09\x18\x14\x15\xfa\xf5\x2f\x8a\xec\x6b\x95\x54\x57\x20\x4b\xfa\xcc\xb8\xdb\xd8\x1b\xf0\x5e\xf3\xb7\x21\x4d\xf0\x00\xac\x3d\xe6\xff\x5a\x24\x37\x0e\xf0\x47\x9b\xb7\x9e\xb7\xa0\x37\x60\xd3\x99\xe1\x24\xfb\x07\xed\x24\x74\xe8\x71\xf1\xae\xb8\x60\x08\xb8\xf5\x63\xe2\x1b\xcd\xfe\xbd\x40\x29\xeb\x2e\x77\x55\xa9\xa5\x6f\x07\x3c\x70\xff\x87\x42\xef\x9d\xed\x54\x25\x32\xf7\x8d\x22\x61\x22\x08\x78\x35\x70\x51\x5c\x2f\x5d\x03\xf0\x75\x24\xb0\x04\x0a\x77\x02\xca\x30\x3b\xd9\x7f\x66\xae\x07\xc4\x05\xb6\x13\x2f\x99\xf3\xc9\x38\x9a\x50\x79\xa9\xb7\x34\x0b\xf0\x69\xe1\xef\x0b\x2e\xc2\xe1\x80\xce\xde\x75\x1b\x35\x6e\x1d\x07\xdc\xd9\x36\x31\x9e\x78\xc2\x06\x70\x43\xd4\x58\x99\x0f\x73\x22\x20\x59\xe0\xd6\xa7\x14\x0e\x0e\x40\xeb\x9b\xf6\x7e\x5a\x99\x9c\x80\xdf\xd3\x58\xe6\x7b\x84\x0f\x00\x6e\x73\x68\x3d\x65\xb8\x72\x03\x5c\x4c\xe3\xbc\x7b\xdd\x78\x99\xc0\x17\x6c\x8e\x1c\xc5\x0b\x57\x00\x4d\x84\x4e\xd9\xa5\xb4\x18\x03\x76\x5c\xec\xb8\x9b\xe0\xdd\x4b\xe0\xf1\xde\x69\xab\xd2\xb8\x40\xa0\xe0\xd3\xdb\x63\x74\x0b\xae\x1b\x00\x3f\xd1\x0f\x9d\x53\x99\x2f\x02\x4c\xcb\xcf\x73\x00\x0e\x37\xc0\x5d\xa1\x2d\xaa\xac\x4d\x6e\x80\x6e\x42\x73\xb9\x8b\x4e\x46\x80\x97\xbf\xfe\x32\x9b\xb9\xf6\x06\xf0\xdd\x3d\xce\x82\x35\xbd\x4d\x04\xea\x0e\x87\x70\xa6\x85\x44\x00\x05\x7e\x63\x9b\x86\x05\x5e\x6e\x02\x24\xd6\xba\xd3\x98\x96\xac\x02\x1c\x88\x5d\x54\xcf\x2a\x38\x46\x05\xae\xc3\x29\x45\x23\x57\x9b\x48\xd8\xb8\xb7\xa9\x8e\xf6\x46\x33\x20\xc3\x91\x5e\x45\x7a\x56\x1d\x40\x82\xe9\xda\x95\xd0\x8f\x79\x80\x0a\x27\x3b\xa3\xbf\x36\x14\x02\xce\xb1\xae\x2a\xff\x8b\x75\x7d\x7c\x2f\x06\x7e\x2d\x00\x86\xed\xa3\x49\xf8\xbc\x52\x3e\x0e\xbb\xa7\x56\xbc\x6d\x06\x6c\x09\xa1\xfb\xdc\x9f\xd3\x02\x28\xa3\xa8\xf0\xbe\x2e\xf5\x0f\x81\xf4\x64\x72\xf8\x69\x6e\x24\xf0\x97\xa9\xd7\xd0\xa0\x8a\x2c\x50\x50\x52\xed\xbf\x99\x6d\x94\x9e\x0a\x2a\x67\xf7\x30\xaa\x3b\xf1\x50\xc1\xcf\xbb\xe0\x95\x93\x42\x2f\x41\xc1\xb1\x96\xd4\x3f\x65\x4b\x62\x40\x41\x13\xbf\xa0\x50\xd2\xe5\x3e\x12\x8e\x3e\xfc\xc1\x78\xea\x7b\x28\x20\x13\xe7\x5e\xee\xdb\x8d\x02\x54\x78\x69\x92\x9d\xde\x1c\x3c\x4d\x60\xa7\x66\x40\xe1\x57\x2b\x5e\x40\xd9\xa1\x4a\x87\x09\x3b\x16\xc0\x89\x8f\xa3\x56\x2d\x0d\x8d\x80\x86\xe5\x6b\xbf\xf8\x5e\x92\x01\x5c\x2c\xb7\xbe\xf1\x9c\x31\x0c\x90\x33\x33\x6e\x56\x59\x71\x88\x40\x89\x32\x9d\x68\xed\xee\x6f\x04\x9e\x3b\x75\x37\xd6\xe4\x08\x2f\x50\xd0\xfd\xde\xf1\xa8\xc5\xf2\x4d\x02\xf3\xd9\x9b\x63\x82\xb7\x96\x02\xba\x55\xb5\x7d\x68\xdc\x70\xe8\x5f\x78\xbc\xf3\x3b\xbb\x45\xb9\x2a\xe0\xc1\xbb\x1d\x17\x32\x63\x2a\xc9\x18\x20\xb3\x6a\x31\xfa\xa9\x0f\xa0\xba\xd1\xc1\x5d\x41\x62\xc9\x80\x51\x3f\xfe\xc8\x0a\x76\x5e\x07\xd4\x8b\x56\x57\x5c\x6a\xcb\x03\x4c\xdf\x51\xe4\x29\x77\xde\x03\x30\xd3\x8b\x9c\x3d\x9e\x72\x10\xb0\x47\xc9\xc4\xa7\x20\xd5\x03\x50\x2d\xf8\xc5\x51\x4d\xcb\x47\x64\x64\x09\x0d\x9e\xdd\xd4\xa3\x05\xd8\x23\xf5\xd1\x7b\xdc\x3d\x1a\x50\xcc\xb6\x90\x7d\x4d\xfb\x56\xc0\xc7\x66\x53\xde\x19\x4d\x15\x80\xa2\x19\xe2\x8f\x69\xa2\x4a\x00\xef\xf0\xee\x48\xd9\x10\x50\x4e\x35\x94\x6e\xef\x4a\x6f\x9d\xb2\x17\xd0\x6d\x7a\xc3\xbc\x86\x8f\x2d\xe0\x25\xf2\x7c\x54\xb3\x02\x12\xe8\xd1\x9f\x9c\x1a\x16\xde\x00\xe8\x7e\xda\xcc\xa5\xee\x5e\x13\x19\xe7\x39\x4e\x79\x73\x6f\x59\x07\x78\x83\x57\x86\x15\xbf\xb2\x00\x0e\x0b\x64\xb2\x5b\x1f\x95\x01\xd4\xed\xe0\x58\x4d\xdf\xcf\x08\x78\xb0\x3f\x8f\x41\xba\x21\x8e\x0a\x35\x0c\x97\x3f\x09\xbc\xd2\x05\x8c\x9b\xb3\xe6\x15\x93\xde\x02\xc8\xa4\x3f\x4b\xf3\x53\xad\x89\x84\x57\x66\xdc\x37\x7b\x38\x17\x03\xfe\xbe\xf6\x89\xf4\x17\x3f\x1a\x7e\x6d\x7f\x43\xba\x41\xa0\x75\x1d\xc1\x7f\xfa\x92\x0a\xe0\x99\x85\xdb\xa7\x3e\x8e\x2c\x11\xd8\xeb\x27\xaf\xbc\xe6\x10\x27\xa0\xc5\xf9\x73\x6f\xc5\x85\xad\xa8\xe0\x20\x17\xfa\x38\x34\xaf\x01\x70\x40\xd2\xbf\x33\x27\xbd\x12\xd0\x36\xdd\xd2\x21\x68\xa5\x3c\x78\x78\x29\xf6\x78\xf8\x03\xc0\xf7\x49\xdd\x26\x17\x57\x86\x62\x5f\x00\xa3\x99\xec\x76\x2a\x28\xfe\xca\x12\x37\x8f\xe0\x06\x8c\x6f\x0d\x94\xf7\x2b\x38\x00\x78\xfe\x96\xa4\xd3\xc5\xad\xb6\x80\x41\xe4\xc4\x73\x2e\xdd\x6b\x00\x5d\x45\x59\xf8\xfd\xfe\xc4\x52\x61\x5d\xeb\xe8\x4e\x87\x60\x67\xc0\xb7\xef\x84\x53\xaf\x6a\xf0\x01\x8a\xdc\x7e\xb4\xef\xc3\xea\x5d\x80\x5a\x59\x31\x5d\x39\xcd\x8c\x54\xd0\xd4\xa0\xa9\x4e\x2f\x36\x03\xfc\x1d\xe0\x30\x17\xb8\xbe\x91\x40\xc5\x1c\x9b\xce\x3a\x15\x6d\xf8\x07\xec\x8f\x4d\x9b\x66\x77\x3e\x24\xa1\x8d\xfa\x63\xbb\x83\x76\x26\x80\x73\x7d\xaa\x51\x8c\x73\x5f\x08\x5c\x13\x16\xfe\x83\x81\xc6\x04\xf0\x83\xcd\xbb\x6f\x1f\xe5\x0d\x00\x47\x5b\xbd\xa4\x1f\x7c\x79\x42\x46\x6b\xda\xda\x03\xbe\x47\xd8\x00\x0f\xbc\xfd\x79\x50\xf0\xb8\x05\xa0\x2e\xb7\x71\xd4\x26\xbd\x25\x02\x83\x05\xea\x64\x04\xfb\x57\x01\x7e\x58\x0e\x5c\x37\x58\xfe\x84\x40\xfe\x37\x71\x02\xca\xd2\xdb\x81\x02\xb7\xf3\x33\xf7\x4e\x6e\x59\x45\x05\xb2\x97\x83\xea\xcd\xb0\x04\x2a\x8c\xbc\x70\xbd\xbc\x65\x91\x17\x50\xb4\xbd\x5e\xcc\x2f\xf9\x01\x60\xce\x8d\x1d\x6f\x2d\x1d\x85\x00\x0f\xe4\xf9\x64\x58\xcf\x2a\x53\x21\xb5\x58\xb5\xed\x74\xd8\x16\x2a\xf4\xdd\x72\xa8\x61\xb0\x90\x00\x3c\x72\xc2\x95\x21\x54\xe6\x27\x81\xe4\x7b\x83\x61\x2f\xe7\x01\x70\xdf\xb0\xf2\x43\x47\x81\x58\x32\xde\x9c\x67\x3d\xfe\xe9\xf4\x6d\xc0\xef\x12\x76\x97\xfc\x2f\xdc\x06\xfc\x52\x50\x72\xf0\xb8\xb4\x18\xa0\x94\x85\x76\x63\x43\xc0\x1d\xc0\x8d\x1f\xd7\x5a\xd2\x9c\xf0\x00\x74\xda\x38\x39\xfd\x26\xce\x95\xaa\x4c\xec\x21\x16\xf6\x91\x0f\x01\x3e\x5a\xeb\x7d\x5e\x89\xaf\x04\xd0\x47\xec\x50\xb1\x94\xa8\x17\xe0\x22\xc3\x9a\x35\x99\x0a\x4e\x64\x4a\xe1\xb9\xb5\x47\xc3\x3c\xc9\x1b\xb0\x41\x74\x6c\x7e\x6c\xd1\x1d\x30\x56\x4a\xcb\x51\x63\xcd\x7b\x02\xd5\x2c\x36\x47\xff\x3c\xa7\x01\x38\x2c\x7f\xe5\xcc\x8e\xb1\x6a\xc0\x77\x4b\x4b\x3e\x96\xf5\x75\x80\x92\xb5\x3d\xeb\x9e\x1c\xc8\x24\x63\xe3\xd1\x16\x9a\xff\x1f\x28\x3f\xf3\x5c\x0d\xe5\xf1\x80\xc7\x5f\x54\xbe\xa0\xb9\xb2\x1d\x70\x20\xc1\xcd\x24\x38\x48\x16\xd0\xc8\xf3\x60\xf4\xb4\x93\x18\xe0\x51\xc9\xb9\xca\x71\x41\x73\x40\xdb\x53\xe2\x9a\x46\xbe\xa2\x80\x9e\x4f\x4d\xf9\xde\x3d\x3a\x0a\x28\xd1\x6d\xb2\x4f\x9d\x39\x94\x8c\xf7\x3d\xda\x3a\x4f\xc8\x7b\x03\x05\x4d\xbe\xbe\x61\x9e\x8f\x01\xb0\x61\xff\xdd\xe4\x7d\x47\xfc\x01\x47\xd7\x1f\x20\x25\x58\x7a\x00\x6a\xb3\x7b\x33\x5d\x5b\x97\x04\x18\xb6\x5a\x55\x25\x6e\xdf\x37\x82\x82\x85\xdf\xb4\xd7\x1f\x0c\xad\x02\xcc\x52\x92\xaa\x19\x4b\x50\x00\xdc\xea\x73\xdc\x41\x86\xf5\x0f\x81\x46\x3f\x85\x57\x77\x6f\x91\x06\x24\x25\xcd\x9e\x9d\x0c\xf8\x49\x20\x9f\xed\xe5\xf5\x6c\x3f\x33\x00\x6f\x1d\xfd\x19\xfa\x17\x96\xce\x17\x76\x3b\xd6\xa6\x00\xba\x2d\x27\xec\x29\xba\x1d\x09\x18\x73\xcb\x59\xb3\x77\x39\x0c\x50\xf1\x40\xfc\xe9\xa0\xe6\x50\x40\xc1\x3d\x0e\x1f\x17\xfa\x2e\x02\x8e\xd4\x27\x4f\x0a\x1f\x1c\x02\xfc\x6a\x2f\x1a\xf1\x17\x5d\x96\x89\x2a\x1e\xcf\xfb\x00\x53\x46\x48\xca\xe2\x8f\x2e\x02\xea\x7d\xed\xe1\x95\xea\xa8\x23\xe1\xfa\x74\x36\xe7\x1b\x51\x36\x40\x41\x7e\x70\xca\x82\xe1\xa1\xfb\x64\x4a\x49\x79\x31\x6f\x4e\x93\xcd\x0c\xa8\x17\xf2\x4c\x44\xe2\x4b\x23\x60\x6d\xf5\x47\xd9\xf0\xb2\x62\xc0\xf7\x6e\xc5\xe3\x3d\x56\x45\x80\xc3\x9e\xb9\x0d\x09\x5f\x1b\x01\xaf\x8f\x64\x67\x29\xf9\xf8\x02\x7e\x74\xec\xe5\xb3\xb0\x6e\x06\x1c\x53\x73\xea\xba\x58\xe9\x0f\x78\x57\x31\xf5\xd7\xe6\x5b\x6e\x80\xb7\x13\x0a\x3b\xbe\x6d\xf4\x06\xfc\xb5\x24\x76\xbe\x2a\x3d\x9c\x8c\x16\x73\xa1\xc9\xc9\x67\x6a\x01\xeb\x7a\x24\x95\xfe\x22\xec\xd4\x71\x6e\xdf\xf6\x7d\x54\x08\x94\x0f\x70\xcf\x93\x58\x26\x90\x44\xf3\x67\x7b\x8f\xa8\x1d\xa0\x75\xbe\x53\xe0\x52\x7e\x0a\x19\xdb\xa7\xa4\x13\x9e\x37\x3d\x00\x5c\x12\xf4\xcd\x64\xa7\x7b\x0c\x78\x87\x5f\xd2\xee\x8b\xc0\x65\x32\xbe\xfd\xd8\xf8\x9e\x6d\xa5\x68\x75\x69\x36\xed\x6d\x7d\x00\x48\x9a\x65\x4e\x3a\x56\x28\x07\x18\x77\x92\x55\x5a\x61\xb3\x13\xa0\xdb\xeb\x27\x8c\xf1\x96\x95\x80\xf5\x95\xb1\x5b\xae\x70\x0d\x10\xa8\xdb\x32\xc3\x5b\x39\x5c\x0f\xf8\xba\x45\xfd\x81\x60\xed\x3d\xc0\x82\x5e\x86\x9f\xb9\x56\x74\x80\xef\xa4\xba\x1d\x35\x59\x73\x01\xbb\x4b\x5d\xfa\xbe\xf3\x64\x02\xae\xa5\x25\x31\xcb\x48\x25\x51\xc1\x59\xcf\x3e\xdd\xd4\x38\x09\xb0\x37\x5d\x35\xfc\x0b\x11\x04\x28\x3d\xc1\x19\xca\x78\x5b\x01\x70\xef\xb8\xc4\x7e\xbf\xa9\x10\x32\x8e\x66\xb8\x85\xd7\xf7\x76\x00\x56\xd6\x8b\x6b\xfe\x45\x9a\xe3\x65\x36\xf6\xe1\x06\x40\x91\xf9\x73\xcb\x45\xf6\x73\x04\xbe\xbd\xbb\xd6\x99\xfc\x95\x17\x90\x9f\xe5\x73\x51\xe0\x32\x27\x60\x66\x83\x9e\xc3\xda\x37\xba\x80\x11\x7d\x1b\xd4\x7b\x1a\x95\x01\x95\x26\x5a\xea\xe6\x8f\x6a\x03\x7e\x1a\x90\x7c\x5d\xf3\xe7\x39\x81\xf7\xe9\x7e\x6c\xa5\xcd\xb6\x04\x0a\xd4\x8f\x0f\x2e\xc5\x7a\x71\x01\x6e\x23\x84\x02\xc7\xd9\xe5\x00\x77\x8c\xe7\x45\xe0\x6c\x0b\xe0\x73\xc6\x9f\x3f\xbf\x9b\x3e\x24\xa3\xd2\x84\x88\x95\x79\xc4\x7b\xc0\x19\xb6\x3a\x97\x90\xe5\x57\x80\xf5\xf7\xe2\xc6\x78\x17\x7a\x00\x8f\x7e\xbd\x31\x3b\x7a\xb6\x1b\x70\xc2\xf3\xe0\xc2\x91\x2f\xd2\x80\x85\x2d\x3d\x2f\x7b\x19\x8e\x00\x32\x9b\xc5\xcc\x0c\x79\x1e\x01\x2c\x0d\xfb\xe6\xd7\xd2\xbe\x1f\x70\x88\xb7\x44\xfc\xda\x60\x3a\xe0\xc5\x4d\xd9\x8e\xea\x7f\xac\x00\xef\xcb\x2a\x4c\x28\x3f\xad\x24\xe3\x33\xe6\x9a\x53\xdd\x1c\x29\x80\x03\xe3\x9b\xf1\xd8\x81\x26\x32\x7e\xf8\x76\x67\xda\xb6\xf2\x16\xa0\x33\x5f\x2e\x2f\xe7\xc2\x02\x81\xa7\xfd\xfa\xed\xb6\xaa\x9c\x06\x0a\xd8\x0e\xae\x5f\x60\xa0\x0f\x00\xcc\xde\xa8\xcb\x11\x5b\xf7\x9c\x40\xbe\xe0\xba\xe5\x7c\x2d\x3b\xa0\x60\xbc\x6f\x55\xcc\xa1\x0c\x1e\x40\x32\x47\x7f\x89\xc4\x22\x1f\xe0\xed\xbc\x1a\xf1\xd5\x34\xbc\x80\xca\x9f\xb4\x66\xa5\xb9\xe7\x08\xdc\x76\xe8\xd7\x68\xc0\x65\x71\xc0\xd0\x70\xa5\x07\x91\xe1\x5f\x08\x64\x89\x73\x3c\x51\x3c\xb6\x15\x28\x68\x2b\x08\xdd\x5c\xc3\x64\xf0\x2f\xf8\x7c\x9f\x8f\x00\xfb\x74\xc0\x76\x75\x8e\xec\xbf\xf0\xe9\x0e\xdd\xbb\xa8\x1e\x05\x98\xf7\xcb\xb1\x2c\x5a\xed\x2a\x20\xa3\xf0\x77\xe1\x18\x8b\x25\x02\xef\xec\x76\xfb\xe3\xd6\xbe\x03\x28\x88\x6d\x9f\x2e\x8f\x35\xda\x0a\x18\x2a\x7d\xf1\xfb\x8b\xab\xa2\x80\x09\x56\xe6\x73\xb5\x0f\x0d\x00\x6f\x48\xc4\x25\xd3\x56\x1a\x01\x1e\x30\x25\xe4\x2b\x74\xce\x53\xe1\x7f\x6f\x51\xae\x5d\x6c\x7b\x84\x97\x0e\xd0\x82\xbf\xdd\x65\x48\xdf\x82\x0a\xf9\x2c\xbb\xc8\x71\x76\x0a\x80\xdf\x23\x69\xb5\x65\x4b\x64\x01\x39\x32\x1a\x5f\x48\x2d\xfc\x21\xf0\xaa\x4a\x87\xd6\x50\x6f\x0c\x50\x30\x9a\x18\x12\xbb\xb4\x72\xc1\xa8\x62\x5e\xd7\x52\x3e\x35\xc0\x88\x14\x1a\x11\x7d\xb2\x05\x20\xf9\xd6\xce\xa9\xb3\x0b\x46\x80\x57\x6d\x3d\xc7\x47\x59\x05\x00\xad\x8e\x44\x79\xb5\x0d\x4a\x00\x5e\x69\x9b\x6e\x4d\x9e\xa3\x07\xdc\xe2\xf5\xf1\xc2\xa4\x8c\xfa\xca\x73\x1a\xe0\x31\xe2\xcb\x0b\xa8\x19\x9a\x7f\xfe\x86\x5e\x0d\x99\x52\x4a\x67\xb3\x2e\x5f\x50\xfd\x40\xa0\xad\xba\x6a\x17\x39\x7d\x91\x40\xe3\x03\xaa\x3f\xde\x7d\x3e\x04\x14\x38\xf7\xee\x76\xcf\x29\x50\xa7\xc2\x9c\x61\x48\x4b\xb3\x8d\x3e\xa0\x8a\xcc\xf3\x83\x63\x29\x22\x80\xb5\xcb\xdb\x4f\xca\x5a\x1b\x00\x3a\xcf\xe7\xd8\x5e\xdf\xca\x09\x78\x55\x5b\x7c\x75\x60\xa8\x25\x20\x69\xb8\x44\xff\xab\x74\x30\x15\xaa\x75\x1a\xfd\x4b\xfa\x8e\x02\xba\x2b\x76\x93\xee\x0c\x1d\x06\x9c\xe5\xd2\x3a\xb0\xac\x42\x03\x18\x0f\xe7\x18\x6b\xe3\xa6\x09\x6c\x8c\xd3\xce\xdb\x78\xc3\x17\x50\xe1\x99\x8a\x79\xca\xcb\x66\x02\x6f\xd3\xd8\xbb\x9c\xde\xb6\x15\xfe\x81\x88\x57\xb2\xac\xb7\x4b\x44\x01\x4f\x34\xef\x3d\x53\xf8\x5e\x0f\xf0\x84\xa2\x8c\xd2\xb7\x8d\x97\xa8\xc0\xc1\x93\x6f\x20\x22\x74\x0c\x90\xb6\xe3\xb4\xa7\x61\xb6\x01\xe0\x57\xff\xa9\x97\x73\xa7\x36\x02\xe2\xc1\x51\x41\xd7\x89\x8d\x80\xb1\x2e\x3c\x6d\xdf\x54\x45\x01\x39\x42\xb7\x34\xef\x99\xb2\x00\x8c\x7f\xdb\xad\x72\x78\x4b\x16\x15\xa6\xf7\x45\x4c\x17\x5a\xa6\x00\xbe\x93\xd1\xbd\xb0\x41\x69\x3b\xa0\xb2\x79\xc0\x3b\xdf\xfa\x09\x02\x5d\xdb\x6b\x65\x53\x73\x69\x00\x5b\xcf\x9a\x29\x8d\x6f\xca\xfa\x17\x4a\xef\x24\x3d\xda\xc0\xb6\x1b\x70\xea\x50\xdf\xed\xb2\x46\x3d\xc0\x88\x37\x2a\xce\x4f\x86\x27\x09\x7c\xc6\x53\xa3\x7c\x61\xa3\x05\x50\x10\x7b\xcc\xaa\xeb\xa9\x45\x37\x09\x1b\xda\x87\x7e\x5a\xa4\xad\x01\x3c\xfd\xaa\xc1\x48\x3a\xde\x00\xd0\x52\x93\xdb\xab\xf9\x30\x50\x61\x53\x55\xd6\x68\xfd\xfc\x0b\x12\x92\x4d\xe2\x03\x97\xa3\xcd\x00\x47\xac\x19\x19\x16\xdf\x78\x03\x46\x8c\xb6\xbf\xda\xa7\x9b\x07\xe8\x1e\x1a\x92\xbb\xff\x3f\xd8\x13\x5d\xb5\x46\x9b\x43\x14\x90\x16\xdd\x83\xd4\x04\xbe\x12\x98\xbe\xef\x41\xc5\x08\x1b\x03\x60\x7a\x6a\xf9\x16\x85\xb4\x69\x02\x0f\x12\x67\xef\x74\xfe\x79\x47\x42\x4e\xc9\xe5\x89\x40\xeb\x65\x02\x5d\x9a\xd4\xcc\x82\x05\x3d\x81\x02\xa6\x1c\xdb\x4c\xfb\xcd\xdd\x24\x24\xe2\xc3\xdf\xf9\x99\x38\x01\xbe\x31\xdc\x64\x70\xa3\xad\x19\x30\xc6\xfa\x61\x62\xc0\x99\x7b\x80\x89\xda\xaf\x45\x4b\xaf\x84\x90\x51\xd8\xbe\xd8\x28\xb2\x90\x17\x50\x60\x74\xdd\xfc\xcc\x9b\x4c\x32\x26\xb9\x39\xc8\xfe\x85\x4d\x89\x30\x8f\xf7\xd8\x0c\x19\x8d\xc4\x95\x5f\x4d\xad\x94\xf5\x8a\xd7\xce\x73\x5b\xa7\x00\x1a\xa7\xcc\xd7\x94\x1c\x6e\x04\x2c\xbe\xf1\xfb\xa4\x3f\x67\x13\x20\xb9\x97\x3e\x54\x51\x67\x15\xa0\x56\x38\x53\x1e\x69\x50\xfd\x5f\x50\x96\x7c\x68\x65\xce\xec\xfc\x2f\x4c\xb8\x6f\xe3\x54\x6b\x30\xa6\x42\xda\xe7\xc8\xbb\xf1\xae\x96\x80\x1a\xa6\xb6\x84\x10\xa3\x30\x20\xcb\xc5\x43\x97\x03\x8c\x59\x01\xc7\x06\x5d\x0b\xef\x04\x3c\x20\x61\xc3\x1e\x03\xc5\x5a\xbe\x25\x32\x86\xde\x14\xf5\x2d\xce\x7c\x0e\x48\xbb\x87\x7f\x53\x6b\x40\x15\xe0\x31\x85\xb2\x9c\x52\x8f\x2e\x02\xa3\xd2\x5e\xdb\x1a\xfb\xc6\x03\x9e\x4e\x99\xa1\xfd\xb5\x7c\x9c\x8c\x8f\x9f\xc9\x18\x1d\x15\x69\x23\xe1\x27\xb1\xa4\x2f\x36\x05\xdc\x80\x9b\x2b\xdc\xa3\xfa\x4c\xad\x00\xed\xa6\x14\xce\xb6\xef\xd8\x4e\x05\xf2\xac\xb2\x82\x59\xe6\x1f\x02\xbd\xf9\x98\x2c\xfa\x6d\x1b\xc8\xe8\x12\x4c\x7f\x7d\x70\x05\xfb\xbf\x9f\xb8\xbd\xd1\xa1\x16\xb0\x23\xd7\x96\xaf\xd3\x3e\x19\x50\x22\x5d\xd8\xd5\xb9\xb1\x1a\x50\xb1\xf8\xc6\x6e\xad\x30\x0e\xc0\x5d\x8c\xf1\xb2\xf5\x4d\xf7\x01\xd7\xab\x18\x8f\xd4\xad\xc0\xe7\xc6\xd5\x4d\x61\x27\xcb\x01\x1f\x6d\x70\x1c\xad\x5d\x29\x83\x5e\x1f\x23\x5e\xdb\xae\x01\x54\xf8\x53\xbd\x75\x3e\xf9\x15\x09\x63\x8a\x26\x97\x7e\x0a\x54\x03\x2e\x92\x1f\xd7\x4e\xae\xc0\x71\x2a\xed\x0f\x93\xf2\x29\x32\x26\xb6\xfc\xbc\xa5\x9b\xfb\x80\x6a\x28\x57\x39\x7f\x92\x87\xae\x1c\x30\x3d\xf3\x55\x56\x37\x6b\x39\x60\xce\xae\x8c\xaa\x34\x56\xea\x32\x10\x12\xbf\xfa\x30\x33\x75\x31\x1b\x29\x68\x30\x4f\x2e\x04\x0c\x92\xf1\x7d\x38\xa3\x9e\x09\x38\x7e\xe0\x91\x36\xab\x18\x2d\x20\x5f\x05\x4d\xea\xbb\xe8\x19\x02\xb3\xa4\xa3\x4f\x32\xfc\x9c\x20\x30\xa8\x42\x87\x55\x25\xec\x3d\x81\xf9\x4c\x17\x8d\x78\x95\x09\x40\xc3\x88\x78\xb7\x47\xf7\xb8\x00\x6d\xb2\x4a\xf4\x32\xeb\x7b\x09\x1c\x2d\x70\xb9\x95\x97\x9f\x0f\xff\x00\x5f\x3b\x4c\x04\x9b\xd0\x03\xba\xeb\x8c\x09\xa9\xa8\xac\x03\xdc\x92\xed\xb0\xa9\xa3\xe0\x06\xe0\x3a\x4d\x06\x99\xfe\xcf\x8a\x80\x8d\x55\xaf\xb6\x66\x4e\x0e\x13\xc8\x62\x5f\x11\x5a\x2d\xcd\x0f\xb8\xbf\xf1\x67\x91\xe0\xd1\x38\x40\xab\x03\xc7\xbf\x6c\x86\x70\xc0\xb3\xf3\x1c\x7a\x2f\xa2\x64\x00\xd7\x8b\x85\x84\x2e\x5e\xbb\x05\x68\x53\xc8\x11\x53\xa4\xac\x05\x78\xf6\x5d\xf8\x27\x66\x97\x7b\x64\xcc\xde\x91\xf6\x98\xf5\x73\x3c\xa0\xdb\x65\x81\xd5\xda\x32\x87\x01\xcf\xcd\x2a\x9a\x7f\x3b\x9d\x08\x28\x31\x79\x65\xa3\xdf\x91\x3d\x80\xf2\x6e\xb6\x1b\x31\xd3\x03\x50\x35\x32\xec\xd4\xd5\xd4\x7d\x80\xa2\x34\x4b\xc1\x1c\xa8\x05\xd8\x36\x6a\x7d\xea\x77\xc7\x1c\x81\x6c\x5a\x7b\xbf\xf3\xde\x55\x06\x3c\xaa\x2f\x9d\x18\x7a\x76\x3b\xa0\x4a\x24\x6b\x76\x58\x5d\x2c\x15\xd6\x5e\xdc\xa8\xff\xec\x97\x09\xe0\xd1\x98\x2b\x13\x93\xcf\x66\x08\x94\x50\xde\x93\xbf\xd6\xec\xf2\xca\xee\xdd\x4c\xcf\x78\xd7\x65\xc0\xc9\x7e\x81\xca\x39\xee\xbf\xbb\xf7\xff\xb7\x5c\xfc\x73\xd7\xb8\x99\x63\x1f\xe0\x06\xbe\xc0\xc2\x90\x97\x8e\x54\x30\xcc\x9d\xe3\x2d\x72\x8c\x06\x1c\xe1\x61\xaa\x9a\x70\x69\xa6\x82\x4c\x72\x8d\xcf\xa0\x17\x99\x0a\xb3\x72\x3a\x86\x4f\xa3\x8c\x01\x9d\x6f\x09\xf5\x3d\x8c\x6b\x00\xdc\x42\xe6\xcf\x38\x90\xca\x05\x68\xbe\xdf\x58\xa9\xbf\x75\x0b\xe0\xce\xf7\x52\xbc\x3b\x15\xc4\x01\x7f\xec\x6f\x78\x64\x5a\xc2\x03\x28\xed\x6b\xff\xe5\x52\x3f\x27\xa0\xd0\x7e\xbf\xae\xd0\x7c\x5d\xc0\xdf\xe1\x5b\x7e\xfc\xb0\xdc\x0f\x38\xa2\x1a\x13\x76\x4d\x49\x0b\x90\xd5\x47\xd9\x42\x43\x53\x00\xf0\x94\x0f\xcf\x3d\xce\xda\x19\x02\xab\x53\x7c\x72\xcf\xf3\x70\x03\x7a\xd2\x7f\xb3\x31\x5b\x55\x44\xc6\x9a\xa1\x07\xe6\xb9\x7f\xea\xc9\x78\x35\xba\xb0\xca\xd6\xa8\x1c\xf0\x93\xa3\xc6\x6f\x8b\xb8\x08\xc0\x12\xc7\xae\x46\xfd\xbb\xdc\x80\x6b\xae\xf4\x05\xfe\x34\x5c\x26\x70\xf6\xc6\xc7\xd4\x87\x1f\x07\x08\x9c\xcd\xe8\xea\x9b\x22\xe6\x08\xc4\x67\xda\x1f\x36\xa9\x07\x92\xf1\x82\x9e\x90\x57\x87\x4c\x0c\x19\x5f\x8c\x18\x7a\x1a\x1e\xbe\x08\x78\x46\x6a\x4f\xf2\xd8\xed\x04\x40\xa7\x09\x1b\xad\x63\xb6\x1a\x80\x73\xfb\x2f\xfd\x6a\xd5\xa6\x05\xb4\x8d\x63\xf0\xa8\x8e\xde\x04\xf8\x4e\x38\x7b\xc3\x12\x3b\x09\xf0\x2b\x5b\x3b\xbb\x5b\x9d\x30\x20\x7d\x67\x7c\xf7\xac\x5b\x2a\xa0\x55\xe0\x78\x6d\x96\x73\x00\xe0\x84\x6c\xb8\xff\xd5\x74\x57\xc0\x09\x91\x3d\x4b\x05\x05\x01\x80\xef\x6d\x61\xa2\x6d\xc7\x29\x40\x9e\xca\xe5\x7d\x4e\x64\x0e\x40\xbb\x61\xb6\xbd\xeb\x2c\x56\xd6\x38\x93\xf8\xeb\x6a\x73\x29\x64\xcc\x55\x69\x92\x57\x18\x4a\x07\x5c\x10\x3e\x78\x73\xeb\x0b\x55\x32\x8e\x33\x4a\x1d\x72\x32\xcc\x00\xd4\xac\x97\x38\x13\x7e\xe3\x17\x81\x69\x6b\x2d\x9e\xc3\xca\x7e\x9e\xfb\xe0\x48\xf4\xd6\x15\xf4\x4d\xb1\x97\xff\x17\xbd\xb7\xf9\x2b\xc5\x7d\x75\x00\x17\x7f\x67\xdf\xe8\xdc\xa5\x06\xd8\xf2\xde\x28\xad\x5f\xf2\x2c\x15\x3e\x78\x25\x8a\x72\x06\x84\x01\xb6\x66\x97\x7a\x2f\x45\x5e\x26\x63\xab\xbb\x5a\x90\xfb\x38\x2f\xe0\xf5\xec\xdb\xe3\xde\xd6\x0a\x80\xaa\xf5\xb5\xf4\x4e\xee\x48\x60\x8f\xa7\x82\xa0\xb3\xd5\x30\x81\x47\x3b\xa2\x6f\xe4\xea\x1d\x06\x0a\x0e\x05\xa8\xed\x99\x7f\xbb\x1e\xd0\xab\x59\xf3\x32\xf9\x70\x22\xa0\xf7\xcf\x92\xcf\xa9\xad\x36\x80\x09\x59\xb5\x12\x87\x59\x48\x80\x0d\xf4\x69\xb3\xfe\x2b\x48\xdc\x1e\xd8\x1e\xac\x9b\x08\xe8\x62\x19\xdb\xd5\xb1\x3e\x1c\x30\x4f\x9d\xcd\xa9\xc8\x43\x1e\x70\xd1\xd4\xce\xc9\x67\x84\x1e\xf0\x6c\xf1\xec\xaa\x75\x5a\x74\x80\x87\x2a\x04\xe3\xb9\x6f\x26\x02\xb6\x17\x07\x72\xaa\x75\x14\x00\x8a\x16\x1d\xe6\xf7\x6f\x39\x03\x28\xfe\xab\x6c\x4e\x6f\xa7\x30\x60\xa4\xc2\xda\x3e\xdd\xb6\xa3\x64\xe4\x88\x1d\xa8\x9f\x60\x69\x26\xa3\xb1\x59\x73\xdd\x90\x67\x23\xa0\x82\xcf\xe9\xb2\xf4\x01\x12\x81\xaf\x14\x82\x7e\xef\x14\x9d\x24\xf0\x22\xe9\xe6\x40\xc7\x56\x7d\x40\x4d\x96\x90\x38\xef\x58\x3e\xc0\x29\x17\xed\x8a\x3b\xd2\x5d\x04\xf6\x74\xea\xfc\x18\x13\x95\x07\x0a\xce\xc7\xdc\x6f\x49\x0a\x6a\x27\x70\x1b\xe9\x75\x55\xdb\x6a\x11\xc0\x42\xf2\x78\x88\x9a\x92\x04\xa0\xd2\x54\x77\xf4\xb6\x16\x07\x2a\x1c\x6e\xae\xb3\x5d\x2c\x67\x01\x3c\x2b\xed\x67\x64\x7b\xc1\x12\xd0\xe7\xc5\xa0\x01\x5b\xa8\x2a\xa0\x61\x79\x8f\xea\x84\x93\x16\xe0\x51\xf1\xdf\x15\xc7\xb9\xbc\x01\x59\x54\x07\xfe\x30\x87\xfd\x22\xd0\xf7\xf4\x4f\xbd\xc6\x9c\xf7\x54\xa8\x2a\x77\x7d\xcb\x2d\xf1\x90\x84\x67\xe8\x4c\x3e\xeb\xbc\x9d\x25\xb0\x8a\xf5\xc5\xbc\x6e\xb3\x1a\x50\x60\xb6\x25\xd7\x2e\x62\x4f\x3b\x81\x61\x37\x14\xda\x27\x2f\x98\x02\x36\xbe\xce\x5e\x3e\xc0\x73\x91\x8c\x59\xf7\x9c\xd5\xd8\x62\x0a\x49\xc8\xc9\x9c\x34\xf4\x65\xbf\x15\xa0\xd7\xf5\x58\xa6\x5b\x2f\xea\xc8\x08\x03\x4f\xa4\xbf\xae\x14\x95\xde\x87\x03\xc9\xde\x43\x04\x9a\x5f\xdd\x52\x17\x67\x22\x0b\x78\x56\xf8\xab\xc5\x2a\x55\x2f\xc0\x75\xfd\x57\x44\xce\x9e\x18\x27\xfe\x81\xc6\xc9\xe7\xf6\x25\x15\x8c\xf0\x0f\xb4\x48\xc6\x4a\x6e\x78\x33\x45\x60\xe2\xbd\x55\x97\xfe\xf4\x5c\x05\x0a\x7c\xef\x04\xb4\x77\x6c\x1a\x26\xd0\xb7\x2d\x75\xf6\x84\x0b\x2d\x20\xbb\xa7\x48\xd2\x74\xc6\x39\xc0\x9b\x1b\x98\x02\xff\x82\xd0\xdb\xdf\xfe\x17\x32\xc7\x43\xd8\xf4\xb4\x2f\xfd\x0b\x6d\x8b\x95\x5f\x46\x44\x1f\x93\x30\xf5\xcb\x36\x71\xfe\x87\xca\x80\xed\x9f\x46\xde\x57\xff\xe2\x06\xac\x74\xce\x6b\x35\x3e\xab\x0b\x78\x87\xe6\x3d\xdf\xd5\x14\x5b\x2a\xdc\xd6\x2b\xdd\x57\x2f\xce\x03\x58\x68\xa2\xa0\xf3\xb4\x3b\x83\x8c\x78\xbd\x91\x71\xe2\x52\x1a\x60\x2d\x4f\xad\xf3\xc7\xdd\x55\x80\x91\x8d\x0c\x3b\xb6\xff\xaa\x01\xec\xdb\x91\x50\x62\xfe\xe9\x08\x19\x1d\xf8\xf8\x55\xd5\x2e\xfd\x21\x70\xcf\xba\xbc\xab\xf4\xba\x95\x80\x96\x6d\x83\xc4\xb5\xbd\x4c\x80\x11\x87\x9a\xa1\x20\x70\x9a\x40\x1a\x85\xb5\xb1\x86\x8f\xe4\x01\xdd\xdc\x7d\x8f\x30\xad\xbf\x0b\xb8\xc1\xa2\x63\xed\x99\x23\x67\x00\xa5\x77\x7f\x34\x77\x93\xe7\x04\xcc\x1e\xe3\x1f\x78\x55\xa5\x46\x85\xd3\xfb\x1d\xe3\x3a\xf7\xb8\x51\x41\xe2\xa8\x75\x8e\x78\xe6\x6a\xc0\xe7\x3b\x4e\x3a\x8c\xaf\xaf\x00\x7c\x3f\x69\x71\xf6\x4c\x6f\x2e\x19\xcf\xf7\x14\x27\xfc\x2d\xbd\x4f\xfa\x63\x4a\x8f\x48\x50\x61\xd2\xc1\x36\xa0\xfb\x18\x99\x0a\xc2\xc7\x9a\xfa\x7d\x19\x08\xc0\x04\x51\x25\xe9\x2a\xd7\x43\x80\xc1\x3c\xd7\xef\x85\xa4\x9d\x01\x7c\xae\x91\x79\x7c\xd9\xe8\x14\x20\x73\x6e\xb7\xd0\xe4\xba\x53\x80\xaa\xa9\xdd\xcb\xc5\x7b\x63\x01\xcf\xac\xbf\xdc\x3b\x3b\xc0\x0c\xd8\xf6\xfd\x5a\x63\x8c\x8f\x0e\xa0\xb1\xd9\xe5\x07\x5d\xdd\xbb\x00\xf7\xde\xfc\x7e\x87\x6b\xfd\x6a\x2a\x58\x0d\x4f\xc8\x79\x96\x3c\x00\x74\x6e\x36\x92\xc9\x7e\x91\x06\x18\xd8\x97\x10\x75\xe2\x7c\x00\x19\x3b\x7e\x59\xd8\x6e\x78\x76\x12\x50\xce\xa5\xa3\x7e\xe3\xeb\x1c\x32\x76\xdc\x85\x67\x79\x07\x22\x01\x3f\x1d\x4d\x56\x5d\xf3\xc1\x07\xb0\xe1\x35\xb7\x20\xdf\x9e\x38\xc0\x5f\x23\x23\x76\xbc\x5f\x08\xc0\x27\x11\xa9\xb1\x0f\xc4\xa4\x01\xa3\x4e\x4e\x7a\x6d\xee\x9b\x24\xd0\xeb\x12\xef\x4f\x36\x93\x63\x80\x63\x1d\xe3\xc9\x49\x5b\x0d\x00\xb7\x32\x58\x46\x3c\x77\xd1\x05\xd4\xb6\x4a\x49\xb9\x45\x00\x60\x4b\xc9\xea\x9b\xbc\x89\xcf\xc9\xb8\xa1\x23\xfc\xe9\x95\xfa\x33\x80\xb2\x4c\x3e\xc9\xde\x42\x24\xc0\x27\x4a\x97\x04\x1c\x0f\x95\x90\xd1\x9f\x91\x7f\x2e\x2d\xad\x01\xf0\x74\x55\x96\xf7\x3b\xa5\x3b\x80\x8c\xea\x56\xab\xfe\x8c\x12\x80\xea\x5d\x13\xd7\x45\xf6\xce\x10\x58\x61\x12\x14\xae\xbf\x9c\x0d\x68\xff\xf1\x61\x45\xb0\x58\x33\x19\x5b\xc2\xf5\x32\x76\xd9\xd9\x03\xe6\x2f\xe8\x76\xb7\xbf\x16\x00\xf4\x5f\xbd\xae\x78\x7e\x93\x21\x20\x17\xef\xd5\xee\x66\x9a\xc7\x80\x1b\xfb\xe9\xe6\xcf\xfe\xea\x22\xa3\x74\xb8\xde\x9b\xeb\x43\x8f\x00\x4b\x33\x64\x32\xd9\x78\x2a\x00\xc7\xf4\x26\xc2\x5d\x19\x6a\xc9\xb8\x6f\xbf\x82\xcc\xfa\xb0\x04\x40\x92\xd9\x4d\xcf\x1b\xac\x27\x01\x97\xfd\x3f\xf0\x99\x58\x26\x01\x9e\x92\x1e\x96\x5f\xff\x34\x1e\x50\x48\xaa\xf9\x2e\x97\x4a\x2a\x60\x73\x38\x8f\xa1\x43\x61\x20\xa0\x8d\x76\x60\x88\x96\x84\x33\xa0\x93\xc0\x27\xfd\xd6\xee\x52\xc0\xa7\x8b\xa9\x23\x8f\x57\x30\x20\xaa\x3f\xd4\x5c\xf3\x90\x40\xf5\xfc\xb6\xc9\x52\x67\x51\x40\x9a\x4f\x5b\xe4\xe2\xbd\xb6\x03\xfa\xbe\xbe\x18\x3b\xd3\x16\x4a\x05\x70\xa1\x35\x92\x49\x2f\x07\xac\x28\x39\x57\xbf\xfa\x70\x0a\xa0\x50\xd9\xfc\x65\x31\xb5\x31\xc0\x1b\xf4\x13\x8f\xd5\x6f\x8f\x02\x3a\x2a\x96\x7e\x7f\x9f\xfd\x0a\x30\xa9\x5e\xd6\x61\xff\x91\x05\x02\xdb\x4d\x5d\x85\x35\xd4\x19\x80\x82\x92\x9e\xae\x23\x9b\xd6\x7d\x26\x70\xb3\x69\xf2\x65\xe7\xfa\x2d\x80\x74\xf6\xbe\x17\xd8\x3f\x9a\x00\xee\x3e\x68\xf1\xba\x8d\x24\x05\xf8\xce\x72\x27\x54\xbb\x7c\x20\xd0\x2f\xb6\xc7\x3f\x7a\xed\x2e\xc0\x8b\x7c\x8f\xcf\x6d\xd6\x52\x00\x3c\x21\x75\x7f\xe7\x99\x9c\x83\x80\x2f\x3c\x6f\x2a\x4d\x5e\xb2\x00\xb4\xe4\x7d\x39\x7d\x7c\x52\x9c\x0a\xd1\x43\xc9\x33\xe6\xb1\xeb\x00\x15\x66\xc2\x4e\x06\x5b\x7d\x25\x70\xd2\x8c\xc9\x40\xe0\x1e\x3d\xa0\xaa\xa2\x5b\x1c\x11\x30\x45\xe0\x59\x45\xd5\xaa\x5b\x76\x89\x64\xf4\x10\xf9\x6c\xb5\xf0\x99\x07\x30\xe7\x86\x7f\xad\x60\x24\x3f\xe0\xfd\x2b\x33\x01\x79\x35\x2f\x00\x9d\x0a\x52\x70\x6c\x52\x0a\x30\xaf\xcf\x96\x94\x5b\x25\x02\x68\x92\x2a\xe0\xea\x31\x4a\x06\x1c\xf0\x60\xb3\x6f\x3d\x20\x07\xc8\x63\x4e\xaf\xf4\x35\xea\x00\xa0\x8e\x53\x9b\x15\xbb\x84\x12\xe0\xd0\x67\x8e\x19\x81\xab\xb2\x80\xda\xdb\xac\x13\x8d\xbb\x87\x09\x5c\xca\x3e\xb5\xf8\x53\xd6\x00\x70\x97\x4d\xc0\xd5\xe2\x52\xed\x7f\xc1\xa8\x9a\x7d\x75\xad\x69\xd4\xbf\xb0\xf6\xa0\x54\x70\x88\x91\x15\x60\x5b\xcd\x00\x1d\x4d\x85\x36\x60\x5f\x09\xbb\xca\x1b\x92\x0e\xa0\xbf\x70\xa3\x97\xe3\xf0\x25\x2a\xd0\x9e\xdc\x5e\xb3\xfb\xfa\x35\x2a\x94\xf8\x4f\x0b\x88\xe4\xae\x01\x74\x15\xb3\xbf\xd9\x43\xd4\x03\x3e\xa1\x61\x7c\x77\x68\xad\x04\xa0\x49\xca\x07\x5d\xbd\xc4\x46\xc0\x99\x97\x0c\xe7\xaa\xd6\x32\x00\xf2\xdb\xd4\xd6\xc6\xb1\x48\x03\x3a\xa6\xd2\xdf\x8a\x3a\x3c\x47\xe0\x37\x5e\x6d\xf3\x6d\x9d\xf7\x08\xa4\x93\xdb\xd7\x16\xf6\xd6\x12\xfe\x01\x06\x43\xd3\xa0\x49\x36\x79\xc0\x27\x4b\xb7\x62\x2d\xe5\x7e\x10\xf8\x23\xbb\x9c\x6f\x4f\x4b\x0c\xe0\x6f\xc6\x9f\x5a\x21\x06\x62\x80\xed\xfb\x6d\x67\xa7\x4a\x67\x09\xdc\xd4\xe6\x1b\x51\xfe\x86\x16\x50\xc0\xf3\xe0\xb2\xb6\x16\x3d\x15\xbe\xa9\x1d\x33\xdc\xb9\xc5\x14\xb0\xe6\xb6\x59\x78\xac\x6e\x00\xe0\x41\x3b\x1f\xcf\xbe\xe7\x82\x80\xc7\x0c\xfa\xb8\x3a\x55\x73\xa9\xc0\xb3\x25\x5b\xe8\x32\x44\x01\x9e\xdd\x7f\xe6\xe4\x8e\xe6\x12\xc0\x5f\xb9\x7e\xeb\x72\x02\x62\x00\x3d\x3f\xb6\x86\xbc\x19\x3e\x41\x05\xed\x2a\x72\xb5\xc9\x36\x35\xc0\x44\xfb\x97\x8a\x5b\x2f\x2e\x10\x78\x7e\xf5\xd3\x99\x99\x53\xe5\x80\xcf\x2b\xa5\xef\xad\xda\x3b\x4d\x20\x17\xcd\x31\xf6\xf4\xb9\x62\xc0\xc8\xfd\xc2\x89\xbd\xff\x01\xd7\xe1\x5c\xe7\xca\x7d\xd6\x80\xbd\x0a\xa6\xc2\x21\x25\x96\x80\x9d\x2f\x74\x7e\xac\x5b\x6b\x4b\x05\x8d\x0b\x7a\x63\x03\x22\x3a\x80\x0e\x8d\xc5\x3e\x4f\x8d\x07\x48\xf8\xd6\xef\x74\xf5\x7b\x1f\x73\xf8\x07\xdc\xba\x84\xb3\x8f\x64\xd1\x02\xaa\x9d\x6c\x7b\x34\x30\x2e\x02\x98\x2d\xd2\xa8\xf5\xe6\xf0\x1e\x40\xf2\xcc\x77\xa1\xe4\xed\xbb\x01\xd3\x3c\xee\xda\xcd\xaf\x4c\xcb\x4f\x9b\x42\xd8\x4f\xc6\x6b\x02\x4a\xee\x48\xb2\xdc\xf7\x64\x13\x60\x4b\x69\xae\x85\xfc\xc7\x33\x80\x01\x8f\x32\x1f\xdb\x95\x37\x01\xa6\x35\xbf\x2f\x79\x6d\xfb\x88\x8c\x73\x43\x17\xb6\x55\xb6\x57\x01\xbe\x99\x6d\xad\x73\x35\x7d\x44\x46\x12\xd3\x58\xde\x1c\xad\x37\xe0\x14\xaf\x76\x5c\xd3\x2b\x3f\x40\x45\x9e\xd3\x3d\x6b\x03\xa9\x4b\x05\xdf\xab\xa5\x8f\x77\xcf\x01\x36\x32\xb1\x19\xb5\x4f\x86\x03\x4e\x7d\x76\xd7\x1d\x65\x0b\x07\x4c\xc8\xdd\x9a\x59\xda\x18\x0f\x18\xa7\x14\x9d\xfb\x78\x53\x04\x60\x87\x49\x1a\x43\x4d\xa0\x16\x20\xf7\xc6\xad\x31\x5f\xc7\xea\x01\xb9\x52\x77\x16\x3d\x93\xfa\x41\xe0\x9b\x8d\x55\xea\xd1\x1c\x19\x80\xe7\xd7\x3f\x1f\xdf\xcd\x10\x4c\x85\xc4\xa8\x43\xda\x9c\x5e\x92\x80\x57\xef\xcc\xce\x33\xbd\xd3\x05\x14\x3c\x76\x3f\x26\xbb\xf3\x2d\x81\x4a\x8d\x0e\x1e\x74\x1e\xcc\x80\xaf\xf7\xaf\xf2\x17\xdb\xad\x01\x78\x47\x4f\xef\xf0\xcb\x73\x07\xa8\xd0\xff\x9c\xf5\xb2\x79\x0c\x2f\x60\x9c\x41\xe4\x40\x80\x8b\x1a\xa0\x3e\x29\x88\xf6\xb7\xb1\x01\x15\xe2\xda\xe7\xbf\x84\x1d\x58\x03\xa8\xd3\x53\xc1\xbe\x21\x52\x18\x30\x9b\x2c\xa3\x91\x20\xf7\x8b\xc0\x64\xd1\x30\x55\xda\xb6\x4c\x32\x6e\xbe\x7a\x42\x8c\x49\x34\x1d\x90\xab\xed\x67\x5b\x68\x6e\x3a\x60\x7b\xde\xe6\x7e\x67\xe5\x7b\x80\x78\xc9\x7b\x50\x60\x22\x1f\xd0\x2c\xb3\xa8\x7e\xed\xb4\x17\xe0\xfb\x0d\x62\x75\x9e\xeb\xc2\x00\x3d\x98\x13\x75\xae\x7f\xa4\x01\x7c\x35\x93\x27\xc3\x39\xc2\x4b\x85\xfc\xdc\x7a\xfb\xd5\x2b\x67\x90\xff\xc1\x2a\x30\xcc\x51\x44\xdd\x1c\x70\xa0\x5e\x7f\x66\xea\xbe\x31\x60\x6d\x7d\xc2\x54\xe8\x84\x3a\x15\x9c\x4f\x2a\xef\x66\x5b\xc5\x41\x85\xbb\x9d\x35\x4c\xa9\x99\xd7\xa8\xa0\xe2\x7a\xe4\x97\x87\x4c\x16\xa0\x76\xe5\x1f\xdd\x7d\x6f\x9d\x00\xf3\x9f\x72\x7e\x6d\xbc\xc2\x09\x98\xc9\xbb\xcf\xf2\x52\x29\x2d\x60\xea\x74\xd4\xa8\xd6\x43\xa0\x42\xfd\x72\xe2\x38\x99\xb5\x8c\x84\x8b\x19\x49\xfd\xa9\xef\x19\x00\xf7\xae\x3e\xf6\x94\x91\x86\x0b\x70\xb9\xbc\xa8\xe8\x33\xb3\x28\x60\x73\xcd\xd3\xaf\xae\x6b\xc5\x00\x1b\xb7\x9c\x9c\xfa\x2d\xb0\x16\x30\x55\xf3\xb5\xdd\x92\x53\x12\x15\xb2\xc9\x4d\xa5\x2f\x3e\x84\x03\x5e\x93\xba\xbf\x1c\xaa\xae\x0a\x38\x69\x76\xd0\x50\xc3\x8e\x19\x50\xe5\xc7\x89\xe2\x3d\xcc\x22\x80\x49\x43\x1e\x35\x0c\xa1\xe2\x80\x19\x2f\xca\x2e\x5a\xb1\x7c\x21\xf0\x96\xb9\x46\xbc\x8f\x52\x27\x09\x7b\x0d\x4e\x32\xce\xf9\xd3\x02\x66\x3c\x14\x5c\xae\x11\x51\xa2\x42\x8c\x9c\xcc\xd3\x66\x01\x11\xc0\x2f\x12\xb9\x16\x22\x62\xa9\x64\xec\x53\xaf\x3e\xf6\x52\xa1\x01\x70\xde\x70\x75\x5e\xff\xed\x7b\x80\xb5\x55\x3f\xce\x6f\xe2\x61\x00\xec\xfe\x2d\x58\x6f\x74\xcb\x90\x0a\xac\x1a\x35\xcf\x42\xfa\xd6\x02\x3e\x75\xb2\x9d\xea\x3c\xe0\x01\xc8\xda\xd3\xfd\xe7\x4d\x22\x27\xe0\x77\xeb\x2b\x0a\x31\x37\xd2\xc9\x68\xbc\x75\x36\xd2\x40\xe8\x20\x60\xab\xec\xc6\x88\x83\xe2\xdc\x80\x0f\x94\x8e\xb7\xdd\x14\xdf\x0a\xf8\x90\xdf\xca\x6a\xec\x4d\x35\x19\xe5\x2d\x72\xb2\x16\x4d\x0a\x00\x69\xbd\xbe\x33\xde\xf9\xbd\x19\xd0\x55\x7e\x97\x61\xfc\xb6\x8b\x80\x4d\xbd\xd6\x42\xb1\x48\x06\x94\xcf\x65\xe9\x8e\x3f\xfb\x99\x8c\x43\x9b\xb7\x89\xfb\xaf\xe0\x21\xbd\xac\xb4\xdd\x0a\xdc\xd5\x46\x4f\x6a\xae\x80\xb7\x85\xa5\x3f\x27\xc6\x1d\x30\x7e\x51\xf7\xde\x20\x4b\x39\x55\x11\x36\x71\x7c\xfd\x88\x26\x1e\x90\xac\xa1\x9b\x7f\xe6\x51\x10\x19\xd5\x6a\xb7\x76\x71\xb9\xd4\x01\x6a\x8e\x3d\x97\x8b\xbb\x5a\x05\x28\x23\xa2\x99\x5f\xec\x51\x07\x68\x31\xbe\x46\x4a\x76\x96\x1e\x50\x36\x44\xe3\xa4\x90\x3c\x0d\x60\x92\xdd\x59\xbd\xe6\xda\x72\x32\xa5\xfc\xd8\x77\x54\xb9\x50\xf5\x0b\x41\x81\x42\x95\xed\x16\x29\xf2\x31\xa0\x20\xb1\x7b\x69\x48\x22\xfd\x3b\x81\x8b\x11\x5e\x25\xc3\x6f\x34\x01\x7f\xf7\x5f\x71\xa7\xb3\xa6\x01\x54\x4a\x3c\x29\xb0\x96\xfb\xff\xe1\xeb\xce\x83\xa9\xfc\xdf\xc0\xff\x67\x49\x91\x12\x45\x12\xd9\x89\xec\x7b\xd4\x7d\x11\x0a\x29\x92\x3d\x94\x25\x5b\x21\xc9\xde\x22\x5b\x8b\xca\x9a\x24\x22\x64\x69\xb1\x55\x76\x8e\x2d\xa2\x84\x08\x09\x49\xb2\x24\x12\xe2\x52\xe4\x37\xfa\xce\xef\xed\xfe\xce\xb7\xf9\xfc\x75\x1e\xf3\xbc\xee\x99\x63\xcc\x71\xee\xeb\x35\xce\x30\x4d\xa0\xfa\xa6\x76\xa9\x77\x3a\x05\x80\xd9\x3f\x2f\xb4\xb7\x2f\x23\xfa\x11\xc3\xeb\x80\x4e\x59\x40\x3e\x45\xef\x1d\xfb\x5d\x97\x08\x54\x3f\x33\x51\x1f\x11\x27\x09\x98\xe2\x33\x30\x93\xe8\x64\x4d\x82\x12\x13\x5b\xd9\x5d\x36\x1e\xc0\x5d\x34\x8f\x6e\x4a\xdd\xa1\x01\xfc\xb1\x51\x5d\xf7\xbe\x8e\x3b\x09\x5b\xeb\xd3\x0e\x08\xd9\x48\x03\xee\xb9\xcd\x53\xb5\x61\xd2\x60\xf9\x44\xaf\x36\xf0\x66\x33\x0f\x60\x69\xd5\xe7\xca\xb2\x5f\xdf\x88\x15\x1c\x67\xb4\xea\x74\x17\x0d\x84\x7f\x40\x37\xcc\x53\xc5\xd0\x39\xe5\x5f\x10\xf8\x20\x61\x51\x95\xd5\x49\xe0\xe5\xd8\xb7\x75\xb7\x1c\x3e\x10\xc8\x7e\x8c\x7b\x15\xbd\x93\x0b\xac\xc0\x76\x76\xb3\xd6\xf7\x92\xc7\x15\x2b\x58\xfd\xdd\x3c\xae\xfb\xcf\x7d\xf8\x07\x52\x7e\x3c\x3e\x71\x56\x92\xef\x5f\xe0\x0d\xff\x7d\x30\x47\xb0\x85\x40\xba\x31\xc5\x34\x59\x4f\x29\x40\xc1\xf3\x47\x13\xe4\xf8\x39\x00\xeb\xf6\x1e\x36\xe0\x4f\xca\x23\xf0\x3d\xaf\x26\x4f\x78\xf4\x51\xf8\x07\x6e\xac\xda\x7e\xf4\x7e\x7d\x15\xe0\xe5\xf0\x63\xb4\x43\xaf\xaa\x00\x6f\xdf\xa9\x38\x7f\xad\xf2\x19\xa0\x5a\xe6\x1f\xb6\x1c\x28\x01\x7c\x56\xd9\x70\x7e\x63\xed\x03\xc0\x53\x3f\xc3\xb3\x64\xcb\x4a\x61\x9e\x9f\xdd\xe1\x82\xce\x25\x40\xce\xa1\xe8\x11\xd7\x1f\x66\x80\xb9\xfe\xde\x1b\xfc\xf3\xf5\x01\xfd\x56\x8f\x85\xba\x94\xa8\x02\x52\x1d\xfe\xf2\x6e\xe0\x9d\x25\xa0\x78\x5a\xcd\x9b\xd1\xdc\x60\x12\x4e\xf8\x15\x7f\x2a\x68\xba\x02\x18\x97\x3c\xc0\x7b\x5c\x43\x00\x70\xc8\xfa\xd5\x58\x67\x9d\x08\xa0\x69\x7e\x97\x67\x82\x9e\x2c\xe0\x80\x68\x8a\xd2\x2f\xd1\x1a\x40\x97\xc9\x82\x23\x5d\x75\xdd\x04\xf6\xba\xe4\x1f\x5b\x43\xdd\x0e\xf8\xa2\xf9\xab\x5b\x4d\x73\x29\x20\x6f\xa3\x94\x33\x23\x4b\x2d\xa0\xc3\xc4\x70\x5f\x85\xc1\x51\xc0\xef\xcf\x9e\xe3\x16\x9e\x5a\xc0\xe6\x6a\xad\xf3\xb4\x01\x6d\x14\x54\x2b\x1e\x5e\x1a\x9a\x6a\xa5\xac\x8c\x5c\x3e\xed\x35\x97\xc3\x6c\xc0\x34\xad\x40\x01\x9a\xe5\x32\x20\xb6\x29\xe5\xe1\x6a\x19\xc0\x9e\x27\x45\x2f\xb0\x79\x82\xc0\xae\xad\x12\x87\x5c\x4f\x7c\x21\x41\xe2\x78\x50\xaf\xed\x63\x24\x30\xe5\x05\xdd\x03\x1e\x35\x61\xc0\x18\xd6\xcd\xe9\x45\x06\x5b\x01\xab\xa2\x4e\x0e\x76\xc5\xd6\x02\x1a\xd3\xf1\xf9\x3c\xf1\xf1\x00\xec\xcf\xd9\x7f\xff\x40\x70\x35\x60\x75\x89\xa6\xf0\x9d\x3b\x6b\x00\xcf\xdd\xbd\x99\x0b\x8a\xfc\x80\x45\xd2\x49\x9d\x87\x4d\x42\x01\x0b\x8e\xfd\xb4\xab\x3e\xdd\x4b\x60\x93\x75\x1f\x55\xe3\xe7\x29\x12\x22\xae\x7d\x9e\x5c\x48\xa5\x5a\x5e\x01\x2e\x5d\x7b\x74\x73\x23\xcc\xc7\x5c\x7f\x2b\x75\xf0\x07\x81\xbe\x1a\xe7\xeb\x19\x6d\x76\xc1\x0a\x26\x2d\xb3\xc4\xc3\x1e\x1b\x93\xca\xba\xb7\x12\x19\xc5\x1b\xcd\xff\x85\xcb\x01\xd1\x0f\xf7\xd9\x04\x01\xea\x6d\xf7\x97\xb4\x6e\x0f\x07\xfc\x1c\xfd\xf3\x9a\xc6\x25\x2f\x12\x24\x15\x6e\xed\x95\xde\xe1\x0d\xf8\x50\x2b\x5e\x2c\x27\x5f\x06\x90\x41\xd3\xab\xe0\xb7\xad\x3a\xe0\x56\xad\x9a\x13\x39\x7a\x8b\xc4\x0a\x68\x9b\x8e\xee\xf9\x5c\xad\x02\xd8\xb9\xfd\xd2\x43\x41\x39\x2a\xc0\x8d\xf7\xd8\x3d\x66\x24\x9c\x49\x48\x28\xf9\xdd\xc7\x24\xc3\x05\x58\x6a\xc9\x74\x32\x86\x96\x17\x90\x57\xef\x46\xe9\xbe\xf9\x5c\x40\x7a\x3e\xc6\xdd\x69\x46\x9a\x80\x54\xeb\x00\x7c\xde\xf0\x03\x56\xed\xcc\xf0\x66\x9e\xa3\x05\x74\xbc\x87\x6e\xdf\xa3\xb2\x00\x0f\x37\x5d\x0a\xaf\x7c\x9b\x0e\x58\xb0\xf9\x76\xfa\x5f\x2c\x59\xf7\xc6\xdf\xdd\x90\x01\xb8\xe4\xf8\xea\x42\xcd\xcc\x33\xc0\x6f\xb7\x19\xde\xd7\x2e\x43\x02\xd6\xd5\xfe\x2d\x6b\x3d\xb6\x5b\x7b\xaa\x67\x00\x26\x46\x78\x94\xff\xc5\x38\x17\x6b\x3d\xdb\xf6\x36\x02\x9f\xb0\x48\x5e\x94\xf6\xef\x27\x50\x99\xe3\xd9\xef\x63\x0a\xeb\x00\x8b\x9c\x47\x7e\x4c\xf9\xb0\x03\xfe\xce\xfd\xfc\xdb\x46\xca\x94\x04\x91\xfd\x2e\xf4\x2e\x52\x9b\x00\x75\x4d\x77\x73\xee\x8e\xa3\x02\x7c\xfa\x54\x9f\x59\xcf\xec\x30\x09\xfb\xaa\x27\x7d\xee\xb9\xb5\x13\x18\x6a\x0b\x32\x2a\xda\x6f\x00\x3f\xac\x39\x1f\xbb\xca\xad\x0e\xf0\xf3\x9e\x42\x73\xdd\x80\x42\x40\xef\xb6\xb8\x48\x1d\x6d\x45\xc0\x91\x22\x17\xa3\x80\x7c\x2e\x12\xee\x2c\x5e\x61\xed\x8a\x1a\x23\xf0\x90\x5a\xa7\x4e\x59\x81\x10\xa0\x90\xc9\xeb\xfc\x51\xa7\x23\x80\x23\xaf\x36\x27\xb4\x8c\xce\x12\x2b\x48\x7c\x20\x67\xfb\xfb\x3e\x1b\xe0\x71\x5b\x86\x9a\x17\xcb\xb7\x3a\x21\x26\x51\x75\xdd\xad\x48\xa0\x10\xab\x79\xf7\x68\xae\x20\x60\xb5\xd7\x78\x78\xf3\xd7\x3d\x80\xa2\x71\xdb\xdb\x0e\x7c\x95\x07\x74\xdf\xc2\xa7\xee\x17\xf5\xb6\x02\x6d\x44\x6f\xec\x1a\xdf\x79\x18\x50\xb6\x56\xec\xe6\x16\x86\xe5\x6d\xec\xab\xa6\x08\xbd\xae\x30\xa0\xe6\xd6\xa4\x4a\xdb\xb1\xcd\x80\x89\x2c\x16\xe6\x7d\x3f\x2b\x01\x6b\x12\x76\xdf\x11\xf9\xd5\x43\xe0\xcf\x05\x4f\x6f\x81\xac\xd5\xb0\x82\x87\x1a\x5f\x3c\xcf\x48\xf6\x56\x60\x68\x77\xb9\xe4\x81\xf5\xfb\x01\x45\xb7\xbf\xb0\xd0\x95\xb4\x21\xe1\x0b\xc3\xe1\xcf\xfd\xba\x1b\x01\xef\x35\xd3\xa4\xba\xae\x5d\x0b\xe8\xe4\x21\x69\xd3\xff\xea\x35\x81\xe6\x54\x45\xda\x69\xcb\x8b\xe3\x7f\x18\xcd\xbb\x3a\xfa\xf7\x03\x3d\xc7\x7e\x1c\x1e\x7b\xf4\x3e\x06\xf0\x3b\xdf\xeb\x14\xcb\x66\x23\x40\x97\x4a\x2e\xaa\xa3\x5b\x8d\x48\xe5\xb7\xd0\xfc\x89\x71\x1f\x66\xc0\x05\x83\x97\x27\x36\xdb\x9c\x05\x8c\x7b\xb7\xbb\x30\xf2\xce\x1f\x02\x63\xa3\x45\x2b\x1a\x3d\x6c\x61\x05\x8f\xcd\xce\xf7\x08\x44\xd3\x02\x7e\x38\xb8\x86\x9a\xc9\x5f\x16\xf0\xe4\x5a\x61\x77\xcd\xa3\x6c\x80\xd7\x98\x7b\xf4\x2d\xfe\xf8\x01\x36\x7a\xf2\x8d\xba\x9e\x4c\x03\xbc\xf8\xab\xe6\xaa\xf2\xee\x6c\xc0\x99\x6f\x71\x1f\x97\x52\x17\x08\x3c\xec\xa3\x5f\xb9\x20\xcf\x07\xb8\xa7\x79\x57\x5a\x9b\xea\x6f\x02\x85\x74\x6b\x5a\xc6\x6e\x4f\x91\x30\x62\x27\x55\xbb\xc3\x4b\x05\xd0\xfe\x54\x4e\xde\xd4\xa8\x0e\x60\xe3\x57\x4b\x36\xef\xfe\xd3\x14\xcc\x90\x3a\x97\x96\xb5\x57\x1f\x70\x2d\xb5\x17\xbf\xe9\xc0\x21\x40\x1f\x9a\x67\xc2\xdc\xa6\xd4\x80\xbd\xe9\x47\x5c\x54\xb7\x7d\x25\x50\x95\xca\xbd\x98\xfb\x33\x0d\xac\xe0\x62\x7f\x73\x55\x96\xab\x04\xe0\x95\xde\x5e\xe5\x5d\x82\xab\x01\x3f\xd7\x6d\xee\x4e\x57\x66\x01\x14\x3b\x58\x34\xa0\x7d\x91\x1a\xd0\x47\xdb\x6a\xd7\x99\xec\xa3\x80\x25\xbd\x8d\xa2\xe6\xda\xfc\x80\x05\xbd\xeb\x33\xf6\x2d\x6f\x6c\xf1\x4c\xb5\x62\x19\x6a\xbc\x80\xd6\xe5\x25\x62\xea\xdc\x5a\x80\x0c\x46\xf5\x4b\xb9\x45\x12\x80\x42\xdb\x0c\x22\x6f\x13\x0c\x80\x72\x7a\xfd\xf8\xb4\x68\x23\xe0\xf6\x35\x04\x5b\x72\x50\x12\x60\xbe\x40\xf4\x99\xbf\xc8\x50\x0f\xa5\xf9\xed\x13\x49\x42\x33\x63\xd9\x7d\x7e\x11\x69\x40\xeb\x60\xaf\xc4\x47\xd4\xd2\x80\x8c\xf6\xa1\x62\x91\xcb\x47\x35\x39\xdb\x8d\x5a\xf1\x6a\xef\x08\x3c\x7f\xb2\x4d\x64\xbd\xf7\x41\xc0\xea\xda\x63\x97\x1d\x83\xf3\xfe\x27\x34\xac\x9e\x6a\xed\x3b\xf8\x9e\xc0\xa6\x30\xf5\x0b\x93\xef\xe9\x01\xf7\x65\x1b\xa7\xc4\x3f\x38\x42\xc2\x61\xa5\xea\xc2\x22\xbf\x79\x02\xb3\x5a\x8f\xe9\x6d\x76\x57\x05\xd4\xe8\x99\x93\x97\x12\x91\x03\x74\xbe\x92\xa5\xd0\xd8\xeb\x01\x48\xe3\xf8\xc5\x95\x5b\x77\x94\x40\xc6\x09\x77\x96\xb3\xd4\x9a\x80\x9f\x4e\x97\x5c\x09\x54\x0d\xa5\xe0\x87\x8f\x25\x2f\xf5\x52\x02\x00\x4f\xdb\xee\x98\xd8\xf3\x6b\x35\xa0\xc5\xb4\xfb\xb3\xce\xfd\x3f\x88\xff\x85\x8e\xdd\xf6\x06\xaf\x73\x27\x09\xc4\xec\x74\x3b\xae\x67\xcc\x80\x51\x0f\xd8\x39\x63\xbf\xd3\x01\x42\x8c\x64\x95\x01\xb5\x21\x60\x98\x7e\xf3\x40\x79\x67\x0a\x20\xfd\x35\x67\x55\xeb\x5b\xf1\x80\xc1\x21\x15\xea\x83\x1d\x35\x80\x97\x0e\x1c\xdf\xe0\x32\x30\x4b\x60\x72\x18\x8d\x89\xa7\xa2\xfa\xf2\x93\x1a\x45\x3f\x3a\x24\x07\x48\x55\xb3\xfe\x03\x54\xd4\x51\xf0\xaa\xca\xcd\xe9\xd1\xc6\x6a\xc0\xf4\x7a\xe5\xdf\x4c\xd3\xd5\x80\xd3\x1b\xfb\x3c\xeb\xea\xab\x01\x73\xc2\x75\xce\x9b\x18\x6b\x02\x7e\x1e\xa2\x6d\x6f\x1a\x5c\x0d\x58\x77\xe6\x6b\xe3\xfb\xd5\x5f\x09\x14\x0c\x3f\x7a\x27\x20\x55\x1d\x30\xb9\x75\x9c\xb8\x2a\xaf\x01\xa8\xc4\xef\xed\x6e\xfe\x78\x1d\x09\xfe\xd5\xef\xcb\x52\x5a\x58\x00\x45\x9e\xbe\xdf\x7e\xe3\x0d\x0f\xe0\x22\xbf\x51\x58\x53\x26\x2b\xa0\xac\xc1\x76\x73\x95\xe9\x16\x02\x6b\x42\x65\x5e\xfd\x99\x2e\x06\xe4\x09\x96\xce\x1a\xfc\x7a\x87\x84\x2a\xad\xa1\x2f\xed\x67\x02\x48\x48\xa4\x91\x90\xad\x29\xf6\x02\x84\x9d\x7b\xc4\x6c\x5f\xf2\x00\xea\x27\x12\xa9\xf2\xeb\x3f\x12\x98\x44\xf3\x8d\xca\x42\x72\x0d\x60\xf3\x25\x7e\xad\xa8\xf2\x1d\x80\xae\x6c\x74\x8e\xe2\x91\xc2\x80\x61\x86\x1f\x4b\x45\xcb\x3e\x11\x2b\x50\x51\x66\xf3\xf0\xa4\xcc\x13\x78\xfc\x26\xdf\x4d\xe6\x92\x8d\x80\x83\x39\x23\xad\xb2\x19\x63\xc4\xbc\xc5\xb7\x5f\xad\x3d\x5f\xfe\x7b\x44\xbd\xe1\xd3\xce\x1f\xf3\x95\x01\xc5\x53\xd2\x4f\x87\x7c\xd8\x06\xe8\xaa\xc8\x2f\xe1\xe4\x21\x0d\xf3\xdf\xbb\xbf\xf1\x3b\xf2\xfc\xf7\x88\xec\xaa\x26\xfb\xc7\x7f\xc4\x90\x20\x97\x73\x56\xff\xdb\x30\x35\xe0\xf3\x3a\xc9\x34\xe1\x90\x76\x0a\x32\x3a\x2a\xbc\xf4\x7d\xa3\x07\xf8\xbc\xbe\x3f\x79\xdd\x83\x75\x80\x43\x37\xc7\x32\x18\xd7\x6f\x20\x21\xf8\x94\xbd\x1d\xe5\xea\x0f\x02\x27\x8c\xb3\xd6\xb3\xd9\xb6\x12\x18\xbc\xf0\xe4\x72\xf9\xe1\x0f\x24\xdc\x95\xb1\x50\xcd\xf8\x40\x05\x98\x3d\x36\x7f\x42\xb6\x86\x15\x50\x4a\xc7\x4f\xff\x66\x0b\x15\xa0\xed\x86\x44\x8a\xf8\xe5\x55\x80\x45\x12\x34\x91\xf1\xbb\xd9\x01\x95\x7b\x57\x97\xe5\xae\x5a\x0b\xb8\xc0\x66\xa2\xf3\xec\x1a\xeb\xbf\xc0\x10\xd5\x11\xc1\xc7\x43\xf5\x2f\x84\x50\x2a\x6a\x8f\x1d\xa3\x01\xbc\xf2\x32\x03\xe2\x1f\xb1\x03\xf2\x5c\x7b\x68\x72\x67\x66\x2b\xe0\xae\x3d\x41\x1f\x25\x04\xe8\x01\x67\x06\xa3\x0b\xc2\xcf\x2d\x10\x18\xbe\x89\xb6\x5d\xe4\xc3\x1c\x81\xbe\x6e\x9c\x91\x7c\xb2\x1b\x01\xad\x86\x03\xa7\x9d\xd4\x58\x01\x3b\xf6\x51\xb1\xa9\x50\x0f\x13\x68\xa0\xac\xee\xe6\xe1\x5b\x00\xa8\xad\xad\x78\xdf\xe4\x97\x25\x20\xe7\x21\xe9\xa7\xaf\xf8\x8e\x92\x70\xf9\x50\xe9\x5c\xf6\x3c\x0b\xa0\x8d\xd8\xb5\x86\x3d\xd7\xc3\x01\xa9\x0e\x49\x35\xc7\x9a\xee\x03\x2c\x56\x3e\x5b\xd2\x94\x36\x41\x60\xd9\xd7\xf5\xce\x0c\x1e\x6b\x00\x79\x59\x7d\xdd\xbb\x16\x3f\x13\x18\xb8\xf4\x46\xd5\x4e\x71\x86\x40\xd3\xcb\x0f\x8d\x82\x3a\x44\x00\xd7\xc8\xa9\x66\x0a\x47\xaf\x05\xc4\xfd\x19\x8f\xef\xb9\xb3\x02\x0e\xc5\xac\x3a\xd6\xf6\x8e\x03\x90\x89\xf7\x63\x7d\x3d\x8d\x14\xe0\x51\xfa\x90\x1a\x53\x76\x26\xc0\xd8\x08\xb5\xa0\x47\x39\xd4\x80\x03\xb5\x37\x2e\x57\x05\x54\x00\x72\x67\x32\x15\xfc\xa8\x5e\x0b\x68\xf0\x82\xd9\xf4\xc2\x86\x55\x80\x63\x39\x77\x32\xad\xda\xd5\x01\xbd\x4e\x2f\xb2\x96\x77\xf4\x13\x2b\x78\xa5\x91\x50\xd7\x31\x44\x0d\xf8\xf9\x85\xd2\xf9\x81\x5f\x5c\x80\x0d\x7d\xd5\x92\xbc\x27\x19\x00\x7b\x29\x5c\x62\x65\x92\x5d\xc4\x0a\xce\x3b\x30\x47\x9a\xf2\x6e\x03\x7c\x7a\xc2\xf7\xd3\x19\x43\x57\xc0\x42\x36\x9b\x82\x61\x17\x6a\x40\x4d\xa5\xdd\x07\xee\xb9\xfd\x21\xb0\x61\xe9\x88\x8a\x51\xbe\x26\xac\xe0\xfc\x58\x29\x5d\x75\xba\x20\x09\xf1\x59\x74\xa1\xa3\x3a\x46\x80\xb1\x32\xba\xc7\x56\x1d\xe5\x23\x61\xb0\xe5\x76\x69\x4a\x7e\x0f\x81\xbf\x53\xed\x3f\x07\x53\xcf\x10\x28\xa7\xe9\x6c\x1f\x5d\x40\x05\xb8\x2b\xa3\xf8\x01\x2f\xdb\x20\xb1\x82\xb7\xbe\x85\xdb\xdf\xa5\xf1\x01\x3a\xeb\x37\xe4\x64\x2b\x5e\x02\x7c\xcb\x7b\x7d\xf8\x57\xef\x53\x40\x09\x2f\x03\xc9\xd4\xbb\x56\x80\x93\x7e\xf2\x11\x05\xad\xcf\x00\xbd\x32\x07\xa4\x59\x82\xb7\x03\x96\x28\xea\x8e\xad\xe7\x54\x05\x3c\x42\xd5\xa3\xec\x68\xb7\x11\xb0\xd0\xc3\x80\xfa\xb5\xe9\x5a\xc0\xf7\x9f\x2a\xee\x07\x85\x55\x52\xb0\x4a\x3f\x33\xe1\xca\x97\x34\xc0\xbb\x1a\x67\xac\xaf\xe7\x45\x00\xfa\xb4\xde\x5f\x5b\x7e\x73\x15\x60\x95\x63\x8e\xa5\xe2\xf8\x66\xc0\xe4\xd7\x4a\xac\xc6\x31\x09\x24\xe4\xde\xbd\x7e\xd7\xf4\xff\xc2\x7b\x99\x92\xa8\x78\x97\x48\x40\x2d\x53\xe6\xeb\x53\x65\xd6\x80\x22\x7e\xa5\x2e\xd2\x6c\xae\x80\xb5\xe6\xaf\xa8\x2e\x9e\x7c\x04\x98\x64\xa5\x4f\x5b\x7c\xba\x1c\xb0\xf2\x13\x44\x7b\xd7\x19\x02\x76\x38\x58\x44\xfd\xe4\x8e\x24\x41\xc4\x49\x20\xee\xad\x50\x34\x60\xbd\xfa\xc3\x4b\x99\x01\x8a\x80\x47\x1d\xc6\x3f\x79\x3d\x08\x06\x6c\xbb\x21\x14\x5b\xb3\x26\x8d\x82\x3e\x72\x77\xd8\x69\xa9\x2c\x01\x47\x44\x44\x74\xdd\x5a\xb6\x50\xf0\x81\xa8\x4f\xe8\x99\x46\x17\x12\x14\x8c\x2f\x15\x9c\x7d\xe9\x42\x41\x91\x4f\x16\xb4\x87\xb5\x6f\x02\xae\xa3\xf3\x6d\xe3\x63\xf0\x04\x54\xd4\x59\x4d\xd1\x0c\x0d\x05\x34\x44\x27\xb9\x8a\xa1\x4b\x80\xdc\x9d\x1f\xae\xcc\xba\xde\x81\xf9\x9f\x72\xaa\x5b\x0d\x55\xff\x7b\x44\xba\x60\x2d\x65\x8a\x31\x35\x09\x9d\xcd\xb5\x12\x86\x8d\x2f\x2b\x90\xb3\xbb\x42\xa4\x40\x2a\x92\x82\x9e\x22\xc2\x93\x7b\xd8\x1f\xc3\x0a\x0c\x93\x33\x2d\x17\x27\xb2\x01\xa3\x57\xcd\x96\x57\x0a\x15\x03\xea\xed\xa8\xbc\xde\xbb\x27\x13\x50\xe9\xf9\x69\x56\x6e\xde\x4c\xc0\xa6\xb7\x2f\xdc\xff\xe2\xd3\xb6\x2d\xcd\xa7\x96\x21\xda\x70\x9a\xdf\x77\xa3\x1b\xa0\x12\x27\x4f\x37\x1d\xa3\x1b\xe0\x8e\x69\xcb\xfe\xab\xeb\x64\x01\x97\x18\x9e\xf2\xad\x3d\x40\x0b\x38\xb9\xf0\xf9\xa6\xd1\xec\x04\x81\x2f\x04\xb4\x2d\xbc\x4c\x66\x09\xbc\x61\x47\xab\xaf\x53\x4d\x03\xf8\x38\x88\xd3\xf6\x09\xd5\x29\xc0\xc5\x83\xed\xca\xbd\xa6\x52\x80\xd2\x5b\x5a\xdf\xfe\x79\x0b\x80\x89\xf5\xd7\xe4\xe8\xce\x79\x91\x70\x98\xe5\xe6\x4d\x79\xe5\xa3\x80\x3d\x09\xb3\x11\xc1\xbe\xed\x04\x2a\xcd\x67\x1d\x16\xc9\x8f\x04\xbc\xbf\xc3\xf3\xa5\xb9\x81\x37\xa0\xf3\xb1\x82\xc9\x61\xd6\x22\x40\x89\xad\xb7\xe2\xd7\xdf\x9b\x23\x50\x3a\xd7\x2f\xed\xd4\x54\x16\xa0\xb5\xcf\xb0\xa9\xfa\x44\x1c\xa0\x3a\xe7\x69\x23\x58\xed\x43\xc1\x90\x6f\xa7\xd3\xea\xdf\xfc\x21\x90\xef\x47\x4b\xf5\xc6\x0f\x27\x00\x7b\xc2\x1e\xb5\x24\xff\x48\x06\xcc\x22\x64\xbb\xbc\xb7\xb3\x01\xca\xbe\xd2\x88\x58\x12\xbb\x42\x42\x1d\xef\x97\x5a\xbf\xb7\xfa\x80\x6e\x4f\x5b\xdc\x1c\x0b\x16\x08\x74\xea\x13\x93\x13\xf4\xa2\x03\xdc\x34\xcb\xd2\x19\xa5\x79\x84\x84\xf5\xf4\x23\x56\x47\xf8\x2a\x00\xe5\x16\x0a\x45\x7f\x39\x22\x81\xef\xbe\xe7\x17\xf6\x6d\xcb\x02\x94\x08\xbb\x90\x19\xcb\x63\x07\x68\xe0\x76\xdc\x6a\xbf\xf6\x63\xc0\x17\x03\xb6\x3b\xec\x15\x5a\x2a\xf0\x8d\x8e\x28\x67\xf2\xb7\x26\xc0\x8c\xac\x68\xfa\x91\xbc\x36\x0a\xe2\x3d\xe5\x0c\x11\xff\x3a\xc0\xec\xcb\x2e\x43\xaf\x37\xe7\x02\xb6\xdd\x2d\x5a\x9d\xa1\x78\x18\xf0\xcb\x13\xfa\xef\xa3\xb1\xd5\x80\xae\xf1\xb7\x16\x29\xfb\xab\x00\x15\x06\xda\x58\x7a\x32\x32\x00\x8d\xbf\x0b\x07\xbf\xa2\xbc\x01\x2c\xb2\xdd\x66\x1a\x97\x59\x05\x78\xfc\x7e\x4c\x84\xcb\x4c\x1a\x05\x35\x4c\xa7\x12\x63\xf7\x46\x00\x0a\x16\x6e\x39\xee\xda\x18\x09\x08\x6c\xca\x46\x5e\x1f\xa5\x01\x15\x17\x1e\xbe\xd8\x71\xbe\x95\x40\x3a\xf1\xad\x8e\xc6\xd4\xab\x61\x05\xc3\x54\x22\x9f\xcf\xd7\xd5\x11\xe8\xfb\xfc\xac\xa1\x92\x9e\x05\xa0\xe8\x9a\x81\x26\xd3\x59\x09\x40\x35\xeb\xab\x69\xe6\x77\x05\x01\x0d\xbb\xbe\xb5\x76\xb4\xcd\x10\xe8\xfe\x4a\x95\xd5\xfb\xdb\x6f\x02\xd5\x0f\x7a\x08\x8a\xee\x54\x80\x15\x3c\x5a\xf3\xf9\xe5\x06\xc6\xcf\x04\x66\x87\x2a\x4d\xe7\x37\x8a\x02\xce\x29\xdb\x35\x1b\x4b\x05\x92\x90\x28\xd7\x71\x5e\xa7\xf7\x14\xa0\xae\x8b\x7e\xf9\x37\x4d\x15\xc0\xf5\xcf\x2a\x42\x8e\xf3\x23\x81\x8a\xe7\xc6\x92\x1e\xa4\xef\x81\x15\x9c\xba\xed\xb6\xbb\x21\xf8\x21\x81\xb7\x7d\x25\x37\x5e\xab\x90\x02\x94\x67\xca\x65\x6e\x66\xd4\x00\x9c\x7b\xb5\xbd\x89\x77\xca\x9a\x82\x3b\xf7\xb0\x1a\x5d\x9e\xba\x0a\x2b\xb8\x65\x51\xb6\x9b\x72\xd9\x1f\x70\x83\x3b\x4d\x48\x69\xf5\x10\x81\x86\x55\xbe\x30\xd5\xab\x06\x38\x9a\xc8\x72\xa0\x5f\x5b\x08\xf0\x60\x9f\x98\xb3\x9a\xdd\x22\x81\x1d\x2c\x01\x3a\x8a\x22\x1f\x29\x48\x75\xc8\x99\x41\x5c\x73\x3f\xe0\xac\xb2\xda\x4b\x3f\xbd\x28\x0a\x7e\x78\xfa\xbc\xc3\x7f\xa2\x1c\x90\x43\xfc\xd8\xf4\xb3\x87\xce\x24\xfc\x9f\xbf\xe4\x25\x08\xe8\x72\x6a\xf1\x61\xc0\xcd\x03\x80\x47\x32\x57\x3d\xbb\x1d\xb5\x9f\x84\xf5\x6f\xaf\x31\x40\x82\x24\xe0\x09\x83\x79\xdb\xbc\x1d\x4d\x04\xfe\xba\x77\x82\x0e\x06\x5e\x00\x7a\xb2\x1e\x74\x3e\xcf\xbe\x19\x70\xa7\x63\x6e\xea\xb3\xb3\x6a\x24\xd0\xa8\x6f\x2f\x38\x53\xd1\x4d\xe0\x85\x5b\x74\x3f\xdf\xc9\xb6\x56\x20\xd7\xd6\x85\x5c\xfd\xd5\x4e\x80\x1e\x47\x7a\x16\xa3\xce\x9b\x00\x36\x59\x5f\x9a\x0c\xbb\x26\x03\xd8\x04\xbb\x0e\x6a\x3b\x66\x01\xba\x6a\x5d\x5d\x32\x21\x8c\x01\xab\xdc\x06\xe3\x13\xaa\x5c\x29\x2b\xc5\x7d\x43\xc8\x09\x0b\xbd\xb5\x80\x2c\x1e\x26\x9f\x4d\x32\x8e\x51\x30\x98\x08\x89\x5b\xe5\xe5\x03\xb8\x85\xeb\xee\x41\x01\xf9\x06\x0a\xc6\xff\x48\xd3\x76\xee\x5a\xde\x39\x0f\x67\x7b\x50\xff\x0e\x04\x84\xe4\xcc\x83\x25\x8f\xf6\x03\x9e\x63\xe0\x1c\xbb\xf7\x40\x19\x50\x86\xf2\xea\xad\x2d\x93\x1c\x20\x4b\xf9\xb3\xfc\xac\xd0\x39\x02\x25\xed\x73\x33\x5a\xab\xab\x00\x19\xeb\xee\xfa\xb7\x2c\x63\xbe\x44\x4e\x41\xda\x9d\x42\x41\xf7\xf5\x79\x51\x7f\x8b\xe2\xc6\x39\x26\xea\x7d\x11\x80\x85\x69\xa0\xfb\x5c\x35\x82\x54\x3e\xee\x4b\x3d\xa0\xcd\x73\x93\x54\xd4\x2e\x38\xb1\xbc\x7d\x41\x0f\xe8\xab\x20\x30\xd4\x4a\x5f\x09\x98\xf7\x4c\x20\xf0\xcc\x62\x01\x60\xf4\xcf\x86\xf6\x21\x0f\x1f\xc0\xd5\x45\x62\xe3\xe1\x25\xee\xa4\x72\xdd\x63\x32\xc0\xe6\xab\x04\xa0\x7e\x6a\x46\x79\x40\x15\x0b\xe0\x4b\x8f\x93\xee\x74\xcd\x9e\xff\x82\x36\x2b\x0e\xc5\xc8\x36\x56\xe0\xf5\x1d\x73\x16\x8c\xc9\x6b\x01\x6f\xea\xf0\x9f\xa1\x08\x1a\x03\xc6\xd1\x0c\xcc\xaa\xf7\xff\x21\x50\xc1\xcc\x6f\x83\xf3\xee\xdd\x80\x0c\x05\xe9\xae\x09\x97\xc7\x08\x14\xa1\xbd\xdb\xbe\xbe\x56\x0a\x50\xff\x28\xe5\xf4\xb1\xe5\xd7\xaa\xa4\x9b\x54\x8f\x3a\x0a\xc1\x0a\x82\x6e\x30\x7d\x97\xa1\x67\x00\xac\x96\x0c\x7b\xc0\x1e\xce\x00\x98\xa6\x19\x2a\xc5\x92\x44\x05\x48\xff\xe9\xa2\x87\x96\xa6\x3a\x09\xb7\x55\x2b\x62\x14\x77\xce\x10\x48\x5c\xae\x18\x96\x88\x91\x04\x34\xba\xf1\x65\x4c\xbf\x8c\x1d\xf0\x89\x34\x97\xd6\x95\xa0\x30\x12\xc4\xa3\x38\x7a\xd8\x07\x83\x00\x03\xa9\x39\x3d\xdc\x97\x17\x35\xda\xc9\x01\xa3\x31\x7e\x77\x12\x1e\xac\x0f\x68\xe7\xee\xb3\x00\x64\x35\xab\x90\xad\x57\x1a\x25\xb0\xd2\xcc\xde\x58\x73\xc0\x17\x56\x10\xa4\xe8\x95\xc0\x90\xa1\x46\x02\x47\xf3\xd7\x5b\x3d\x96\xac\x80\x59\x71\x15\xe7\xe0\xcd\x2f\x62\x05\x6e\x7d\x8d\xe5\x6c\xad\xbd\x15\xa8\x93\x49\x67\x37\xce\xa0\x0b\x28\xe2\x7d\x5a\x54\x86\xde\x9a\x04\xae\x88\xde\x3a\xeb\x97\xda\x80\x67\x55\x2d\xfd\x2c\x92\xb5\x01\x03\x28\x03\xcf\x4c\x97\xef\xf7\xab\xef\x70\xd3\xf6\x31\xac\x01\x74\xb8\x70\xc5\x32\x3b\x5b\x1e\xf0\x3b\x4f\x8f\xd4\xb3\xd3\x51\x80\x94\x27\x05\xc9\xae\x1f\x16\x09\x2c\x4d\xbd\xaf\xc4\x78\x87\x0b\x50\x34\xd3\xe5\xd8\x94\xc7\x5a\xc0\xbd\xd3\xeb\x05\x94\x9d\x04\x01\x6b\x1d\x09\xb6\xd4\xf3\x5a\x80\x6f\x02\x24\x13\xab\x8b\x3b\x09\xbc\x6e\xd3\x23\xf1\xa5\x49\x11\x30\xf4\x79\x73\xcd\x83\x0f\xec\x80\x62\xf6\xd4\xd2\x1e\x1e\x92\x80\xce\x39\xbb\xd4\x6a\x03\xbd\x01\x37\x0a\x8b\x3f\xa4\xa1\x09\x04\xa4\xc5\x1b\x5d\x83\xd7\xe4\x48\x78\xe4\xb2\x97\x6b\xd7\xf2\xf1\x93\x49\x8f\x29\xff\xb8\xa4\x3a\xe0\x5b\x6e\xce\x9b\x27\x8b\x23\x00\x13\x9a\x53\x9e\x7d\xf4\x36\x01\x14\xca\xf1\x3f\x5f\x57\xcc\x0c\x78\x42\xe0\xf6\xfd\x82\xc3\x74\x80\x8c\x2e\xbb\xad\x17\x1d\xb4\x01\x2b\x53\x25\xd3\xa7\x16\x36\x03\x3e\xb6\xda\xd3\x76\xc5\x68\x89\xc0\x80\xb1\x17\xdb\x18\x90\x0b\x56\xa0\x66\x58\x3b\xb9\x3d\x41\x05\x70\xc7\x81\x6f\xd5\x54\x12\x1f\x2a\xe6\x47\x79\x1d\xb3\x0b\xb4\x00\xf7\xc0\x1c\x2b\x53\xc0\x29\x40\x3b\x9e\xe8\x74\xfb\xc5\x68\x40\x6f\x81\x50\xc3\x3b\x1e\x55\x80\xb0\x9e\x23\x91\x3e\xa1\x92\x82\x86\x42\x54\x9f\xcf\xb6\x97\x01\xfa\x51\xad\xca\xe6\xc8\x33\x05\xec\xaa\x48\x5e\xe7\x71\xda\x97\x54\x4e\xa5\xed\x8a\xfd\xe6\xc3\x0c\xc8\xf2\x6a\xcd\x0d\xde\x5d\x66\x80\x2f\xca\x6e\x46\xae\x1a\x13\x03\x34\xb6\xfc\xc6\xdc\x66\x2d\x4d\xc2\xf3\xf2\xd8\x6d\xc5\x9d\x6c\x80\xd6\x5c\x3c\x1f\xf2\x18\x39\x01\x4f\x46\x8d\x88\xe8\xaf\xb2\x27\x61\x63\x01\xf5\xbc\x60\x08\x33\x20\x9e\xa5\xa2\x7b\x7b\x7d\x1d\x60\x43\xe8\xb1\xc7\x15\x39\x97\x48\x70\x49\xcf\xdf\x96\xf1\xb0\xaa\x02\x8d\xd0\xde\xbe\xe6\xf1\x12\x81\x13\xfb\xed\x93\x83\xcc\xbf\x13\xd8\x75\x24\x2d\xb9\x2c\xeb\x0f\x81\x54\xae\x5f\xb2\x95\xdb\x9f\x00\xba\xe8\x47\x18\xfc\x45\xf9\xac\x42\x9b\x3b\x7d\x4d\x05\x8e\x71\xd7\xad\x2e\x1f\x2e\x85\x15\x70\x8c\x54\x65\x4b\xa4\x96\x01\xf2\x0e\x35\xa8\x14\x8f\x95\x01\x4a\x3d\x29\xb3\xff\xf5\x78\x3f\xa0\xd0\xaf\xae\x38\x06\xcd\x6d\x24\x24\x35\x3c\x69\xb4\x3e\x39\x47\xa0\x36\xb3\xcd\xe3\xb5\x4b\x5c\xb0\x02\x67\x1f\xf9\xa0\xd5\x6b\x7e\x11\x2b\xa0\x2b\x34\xef\x64\x99\xa7\x01\xcc\xb8\x19\x61\xa8\x25\x42\x05\x48\x1b\x58\x1c\x9e\xcc\x16\x4e\x41\xd6\xf6\x9f\x51\x27\xae\x39\x01\xde\xe8\x94\x16\x4b\x3d\xea\x04\x78\xb5\x4b\xa2\xd7\xee\xa9\x06\x09\x95\xd2\xf7\xc6\x9d\xcc\xf7\x90\x10\x6c\x09\xfc\x86\xf2\xbf\x08\xe4\x4c\x37\xce\xcf\x6e\x56\x83\xff\x85\x8c\x72\xa3\x73\x54\x76\x49\x80\xce\x9b\xcb\xc6\xd3\xae\x2e\x6f\x19\x2e\x2c\x76\x37\x9d\xcf\x90\x50\xc5\x54\x9e\xf2\x98\x69\x1d\xe0\xd9\x9c\x01\xde\xed\x2c\x87\x01\x8f\xa4\x69\x33\xb1\xb7\x8c\x10\xb8\x21\x3d\x7c\x7a\xeb\x39\x3e\xf8\x07\x5e\x86\xb1\x49\xc7\xc9\xf2\xfe\x0b\xcd\xf3\x3b\xf9\x44\xcd\xbb\x09\x3c\xad\xcc\x59\x18\x75\xb4\x12\xd0\x8a\x23\xa8\xa0\xcb\xb1\x12\xd0\x34\xef\x93\x12\x95\x5a\x05\xe0\xa0\xd4\xea\xe3\x03\x7b\x28\x80\xe7\xdc\x1c\x70\xf0\xf5\x39\xc0\x68\xb1\x36\xae\x9c\x99\xd3\x80\x6b\xe2\x2d\x4a\x1b\x5e\x9c\x03\x2c\x0d\xba\xde\x63\xb3\x93\x05\xb0\x43\xf3\xfa\xc1\x9d\x0d\xc3\x04\x8e\xb8\xff\xf4\xb6\xf3\x64\x85\x15\x9c\xd4\x56\x98\x28\xc8\x7f\x4d\x60\x26\xcc\x59\xcc\x87\x4e\x10\x78\xe3\xe9\xa9\xfe\x9f\xf7\xa8\x00\x9d\xcc\x24\x3f\x2b\xf4\xab\x92\xb0\x72\xeb\x4e\xf3\x9a\x54\x8c\x57\x07\xa4\xb9\x40\x7f\x42\xe9\xf0\x14\x81\x3a\x0f\x85\xac\x0e\x8e\x3b\x02\x22\xe5\xb4\x95\x84\x9c\x39\xe0\xee\xf9\xc4\xbd\x5d\x4f\x04\x00\x43\x6f\x7d\x32\x32\xbb\xb2\x1e\xf0\xf2\x8b\x85\x92\x79\xbe\x2b\x24\xd0\xf3\x32\xb8\xec\x4e\xe0\x22\x41\x7d\x48\x4c\xef\xed\xe9\x09\x02\x77\xc4\x7b\x15\xbe\xea\x5a\x07\x2b\xa0\x75\xde\xd3\xb3\xee\xd6\x46\x12\xcc\xe8\x02\x6b\x2e\xcc\xd6\x11\x78\x4b\xb1\xf0\xe4\xce\x8e\x03\x80\xf9\x5c\x37\x9e\xb4\x9c\x93\xfd\x9f\x78\xcf\x65\x1d\xc1\xbd\x89\xf5\x5f\xb0\x71\x74\xee\x09\x7d\x54\x59\xb1\x02\xd9\x84\x13\xf2\x96\x4a\x05\x80\x36\xa6\x26\x8c\xc6\x0f\xb3\x28\x28\x71\x63\xcb\xc6\x17\xaf\xb2\x29\xf8\xc6\x50\x7f\xfb\xdf\x51\xfa\x27\xfb\xbe\x19\x55\x31\x40\x0b\xf1\xb0\xda\xa7\x15\xbb\x00\xe3\x0e\x32\xb6\x6d\x49\xa5\x27\x81\x2d\x62\xe3\xec\x86\xcd\x46\x80\x6f\x8f\xf9\x4c\x14\x04\xef\x00\xe4\x49\xe2\x7d\x90\x5f\xc0\x00\xb8\xf0\xf8\x24\x57\xd0\x31\x41\x40\xa6\xae\x66\xbf\x49\x8b\x02\x0a\x1e\xc9\x6d\x3c\xce\x99\xfa\x90\x82\x1d\x79\xc7\xae\xb6\x32\xdf\x03\xa4\x35\xa3\x09\x0e\x1a\x8d\x05\x2c\x57\x7c\x65\xe4\x76\xe5\x16\x20\x73\xb5\xcc\x9e\xbd\x5a\x29\x14\x5c\xc7\xfc\xe1\x80\xd7\x50\x2c\x60\xe5\x71\x6f\x35\xed\xac\x35\x80\x9b\x8f\x04\xb8\x5a\x8f\x0a\x00\x5e\xbf\x12\xf5\x6a\xc7\x4e\x09\x40\xb1\x83\x9c\xdd\x8a\x95\xf2\x80\x5c\x21\xb6\x0c\xb2\xa2\xeb\x48\x10\xd0\x1e\xdc\xe2\xf3\x12\x09\x94\xed\xef\xb8\x5e\xaa\x4d\x0f\x78\xa1\x5e\xf4\x68\xc0\x36\x24\xb0\x8c\x75\xe7\xef\x9a\x44\x3a\xc0\x80\xe3\xfd\xd6\x3e\x98\x47\x59\x29\x7d\xb7\x66\xbc\xe8\xce\x77\x57\x20\x55\xc9\x2b\x0b\xdd\x5a\x5e\x40\xa6\x8b\x8d\x74\x31\xd5\x3a\x80\x51\x15\x95\x61\xdb\xa7\xb9\x01\xff\x9c\x66\x62\x3c\x29\x28\x05\x68\x69\xaf\xa2\xd8\x5d\xc8\x47\xc2\x9e\x6e\x8e\xe2\xcb\x05\xfd\x15\x58\x99\x36\xff\xe2\x1e\x4f\x2d\xa0\xc1\xed\x6f\x52\x43\x54\x95\x80\x8f\x32\x3b\x24\x86\x97\x11\x56\xb1\x50\x59\x1e\xf5\x82\x82\x0c\x46\xc6\xc5\x7f\x4b\x1c\xab\xa0\xbd\x2e\x6b\x2d\xa0\x8e\x4b\xce\x75\x5a\xfe\x7c\x12\x72\x9c\xee\xce\xcd\x19\xe6\x53\x30\xe7\x59\x6d\xea\xff\x29\xff\x3f\x0a\x63\x99\xd8\x86\x9a\x9a\x29\x98\x92\x4f\x63\xf9\xd4\xde\x17\x70\x9f\x67\x74\x46\x87\xad\x2f\x20\xa1\x2b\xbf\xf0\xac\x95\x06\x50\x5b\x88\x3e\xb0\x4b\xa3\x08\x50\xf0\xac\x81\x76\xc1\xb1\x46\xc0\x43\x39\x0b\x54\x85\xcb\xd0\xce\x11\xf7\xb8\x26\x7c\x91\x84\x07\x71\x77\xf3\xa2\x38\xaf\x02\x5e\x2e\x18\x1e\xee\xb6\xda\x47\x1a\x15\x75\xe3\x54\x25\xa7\x07\x20\x30\x89\x38\x9f\x61\x97\x03\x34\x8e\x7f\x35\x72\x93\x7d\x81\x58\xc1\x95\xf2\x35\x1e\x52\xe7\x86\x09\xcc\x65\xb4\x55\xfb\xca\xb8\x1f\xf0\xd8\xdb\x44\x87\x6d\x95\xa2\x80\x4a\x7d\xc3\x13\x34\x67\xf8\x01\xf7\xd4\xde\xcc\x5f\xc5\x60\x0f\x78\x56\x3b\xd6\x28\x72\x38\x1f\xd0\x2f\x6e\xc7\xcb\xa6\xd6\x07\x80\x5f\xab\x15\x2f\x1b\x36\xdf\x07\xdc\x90\x92\x36\x1a\xf5\xa7\x01\xb0\x3e\xfe\xdc\xde\x36\xff\x18\x40\xdb\x13\x97\x44\xe8\xaf\x3e\x05\x7c\xf2\x63\x42\x2f\xaf\xf9\x05\x60\x5c\xbc\x20\x1f\xb5\xc6\x41\xc0\xe4\xa4\xed\x92\xb9\x17\xf5\x00\x79\xd5\x6f\xe7\x57\xf2\xa9\x01\x1e\x7c\x9d\xc6\x9f\x7e\xeb\x2c\x60\x89\x65\xe8\x57\xee\x9b\x3f\x09\x7c\x69\x6d\x5a\x3a\x12\xf9\x90\x82\x02\xf1\x12\xdf\x68\x75\x37\xc1\x0a\x54\x64\x84\x5d\xef\x8d\x4b\x90\x70\x66\xc0\x42\x5a\x4b\x43\x10\xf0\xd9\x44\xcb\x35\x62\x79\x0d\xff\x0f\x0a\xea\x84\x63\xef\xb5\x17\x04\x9a\xbf\xd1\x5c\x62\xbb\xa0\x06\xb8\xb5\x92\x56\xe5\x88\x83\x34\xa0\xc8\x29\x9f\x4f\x35\x97\x7f\x11\x98\x8b\x1b\x1d\x3e\xa9\x2f\x11\x78\xd7\xe5\x64\xb6\x34\xb7\x00\xfc\x03\x76\xcc\xc3\x02\xeb\xd6\xf5\x57\xfc\x03\xdd\x06\xd7\x0c\x58\x8b\xae\xc2\x0a\xca\xa9\xcc\x5b\x6f\xdb\xbf\x21\x90\xe1\xcd\xae\xe2\xed\x05\xa3\x04\xd6\xf1\x39\xee\x28\xb0\x97\x87\x7f\xe0\xf7\xc9\x3d\x4d\x1e\x2f\x6e\x56\xe0\x87\xb8\xf0\x03\x72\xf3\x2a\xb0\xf2\xf5\x7c\x75\x65\x52\xc9\x4a\x17\x81\xff\x85\xa9\x53\x77\xdd\xc5\x26\x6a\x49\xcf\xa5\xfa\xe1\xcf\x7b\x2e\x07\x79\xf8\x07\x68\x9e\x28\xce\x3c\x6c\x6b\x20\xb0\xe0\xf4\xa6\x93\x5f\xb3\x45\x00\xbd\xb5\x2f\x31\x71\x6c\x3b\x00\x78\xc1\x3b\x34\xe4\x0c\x1f\x2f\xe0\xfe\xd9\xa4\x61\xbf\x8e\x6c\xc0\x63\x36\xb3\x5b\x7d\x97\x21\xbf\x65\xc1\x46\x2b\x3b\x1c\xb0\x91\xaf\xf0\xde\x4b\x3b\x55\x40\x71\x3e\xd3\xec\xa4\x9d\x6b\x00\x5b\x36\x96\xee\xbd\xf7\xad\x8b\x40\x3d\x05\x56\x63\xdb\x11\x55\x40\xa6\x97\x87\x7c\xf4\x37\x52\x01\x72\x9c\x2b\xf2\x7a\x74\x83\x0e\xb0\x25\x68\x47\xb4\x9e\xe6\x09\xc0\x7d\xa3\xab\x63\xb8\xe7\x98\x01\x6f\x50\x89\x6b\xe5\x06\xd6\x02\x8e\xe8\x3a\x65\xd2\xa5\x54\x03\x9e\x35\xed\x4e\xd6\xf4\xad\x06\x6c\xa4\x92\x8b\xd8\x61\xfd\x08\xf0\xf0\x31\xbb\xa5\x46\x95\x28\xc0\x27\x37\x0a\x4b\x82\x1c\x99\x01\x0f\xdd\x6d\xf8\x92\x6c\x44\x05\x58\xc7\x14\xac\xb2\xf6\x61\x21\xa0\x65\x8e\xa1\x62\x64\xfd\x53\x40\x42\xd0\x6e\xf7\x7a\xf5\x27\x94\x95\xf2\x1f\xe2\x2f\xd6\x3f\x8e\xdf\x9b\x0f\x18\xef\x44\x27\x5c\xca\x47\xc6\x51\x0f\x79\x67\x57\xd1\x7c\xc0\xbc\xb6\xef\xbb\xca\x97\xcb\x61\xe1\xd3\x39\x65\xcb\xf0\xf0\x77\xb6\x60\xbc\xe1\x01\xe8\x19\xbc\xf5\xe4\x39\x1f\x45\xc0\x76\xce\x2b\x49\xe3\x02\x67\x00\xf5\x8a\x6e\xa6\x79\x0a\x7a\x02\x2e\xb8\xbe\xfa\xb5\xfe\xf1\x16\xc0\xd9\xa6\xd9\x86\x52\x0e\x25\xc0\x4d\x2e\x95\xa3\xb4\x0a\xdb\x00\x1b\x6b\xd8\x42\x16\x6e\x55\x02\xf6\xc6\x74\x8a\xfe\x5e\x46\x63\xf8\xa5\xc9\xd5\x3a\xa5\x80\xe3\x7a\xf6\xf0\x5c\xbe\x9a\x82\x9b\xe8\x9e\x2c\xfc\x5a\x1e\xf5\x71\x18\xda\xed\x76\xf7\x07\x3c\x3c\xd1\x7c\x2d\xf9\xa0\x37\xa9\xfc\x87\x1b\xe3\xb6\x47\x2f\xb6\xed\x03\x1c\x8d\xca\x1b\x78\xc2\x5f\x09\x38\x7e\x60\x46\xc1\x2e\xd6\x0b\x90\xe3\x6e\xec\x70\xbd\x9b\x07\xa0\xad\xf5\xe9\x27\x7d\x91\xde\x80\xa2\xaf\xfd\x32\x4f\x7c\xdd\x07\xd8\x68\xec\x9d\x40\xcb\x21\x08\x78\x35\x67\xd7\xba\xcc\x98\x4a\xc0\x0a\x1e\xa6\xde\x8c\x65\xd0\xdc\x71\x66\xa0\xf1\x24\x97\x00\xdf\x6d\xa9\xdf\xa6\x12\x48\x10\x1b\x6d\x52\x0b\xae\xaa\x04\x64\x5b\x90\xdb\xe0\x84\xa5\x80\xd5\xa6\x62\x89\xe5\x9c\x59\x80\x11\x3f\x04\x8d\x13\x98\x4b\x96\x0f\xd9\x0c\xfd\x8e\xcb\xa3\x31\xd6\xe3\x55\xe9\xf4\x61\x80\x73\x0b\xef\x8c\xa2\x82\xae\x01\x8e\x78\x60\xca\xc7\x08\x3f\x12\xee\xad\xb5\xfb\xd1\x20\x1f\x06\x78\x29\xad\x27\xe6\x87\x8d\xd6\xf2\xfa\xf4\xc8\xba\xcb\x4a\x89\x84\xa4\xc9\x8c\xb8\xcc\x80\xd5\x80\xdb\x43\x7e\x46\xdc\x99\xd9\x08\x18\xeb\xef\xff\x2c\x58\x8e\x1e\x70\x2e\xe2\x5e\xb0\xfd\x80\x1a\x60\x6a\x42\xc7\xe8\x66\x47\x07\x12\x72\x5a\xa2\xdb\x66\xf3\xd6\x01\x86\xfd\x64\xa0\xda\x41\xa3\x03\xe8\x37\x51\x70\x45\xe4\xea\x4e\x12\x16\x32\x12\xf8\xe3\x1f\x68\x91\xc0\x37\xc0\x22\xdf\xaa\xba\x48\x20\x61\x6c\xdd\xbe\x4a\x8f\x06\x70\xb1\x74\xaa\x7b\xfa\x81\x14\x09\xdc\x4a\x92\x49\x7b\xc3\x46\x08\xe4\x7e\x34\x7b\xcb\x39\x8d\x17\x30\xb0\xf1\xec\x50\xac\x69\x77\x05\xe6\xa5\x6a\x1d\xd0\xb6\xf6\x85\x7f\x20\x2a\x55\xfb\xb8\x41\xe4\xb6\x7f\x41\xd3\xc9\xcb\xb4\xf4\xfa\x08\x81\x3f\x59\xca\x4b\x7c\x2a\x19\x01\x77\x1d\x10\xd8\x19\xfd\x3e\x03\xd0\x3e\x2b\x11\x63\x55\xe8\x00\x8f\xcd\xa5\x09\x97\x3b\x59\x03\xea\x1c\xb5\xdf\xef\x52\x26\x08\x98\x90\xa3\x35\x77\xd2\xd2\x0c\xf0\xc8\x77\xf1\xf2\x1b\x51\x02\x80\x5f\x2a\x47\x8f\xe7\xd0\x7e\x22\xb0\x2d\xfd\x40\xa0\xb3\xd2\x56\xc0\x35\xf9\x11\x77\x1c\x8a\xf8\x00\x9f\x95\x1b\xea\x96\xc8\x8f\x10\x2b\xe8\x3f\x7b\x66\x0f\x7f\x31\x0f\xac\x40\xcb\x51\x8f\xb3\xc3\xb0\x14\x50\xd7\xdd\xb3\xf5\x9d\xca\x0c\x81\xe9\x76\xf3\x92\x22\xea\x59\x14\xdc\xd2\x1a\xb5\x9b\x22\xc9\x03\xb8\x78\x96\x4e\xc0\x67\xc2\x04\xd0\x77\xb0\x29\x7c\xd1\xd6\x18\xf0\x78\xb4\xa3\xd3\xc4\x17\x3e\xc0\x03\x0f\x1a\x2e\x7e\x15\x51\x20\x15\x3c\x71\xde\xa7\xd6\xb1\xa6\x02\xdf\x08\xab\x44\x5d\x7f\x46\x03\xa8\xb8\x5d\x9e\xd9\xbe\x59\x89\x84\xd1\xc0\x21\x01\xd7\x3b\xe2\x80\x71\xd4\x6b\x0f\x89\x2c\xbf\xf3\xe7\x6b\x17\xdf\xa0\x3a\x40\x07\x18\x8d\x4f\x82\x17\x64\x2a\x00\xad\x2e\x77\xe5\xff\x45\xd2\x22\x75\xc9\xab\x20\x56\xc0\x8f\x32\x1e\x4e\x75\xca\x23\x04\xa6\x28\xfd\xf9\xb1\x94\xeb\x0f\x2b\x28\x7b\x2b\x3f\x59\x56\x2b\x47\xc2\x64\xfc\xfa\x7d\xd4\x25\x47\x49\x08\x52\x7f\x99\xfe\x84\x87\x0d\xf0\x88\x09\x6b\xbf\xf1\x71\x39\x40\xdb\x4e\xc1\x35\x0b\x6f\xb9\x00\x0d\x6d\x03\xdc\x44\xeb\x5a\x01\x2f\xc7\x5c\xe5\x59\x1a\xca\x00\xec\xb8\x18\x73\x45\xab\x92\x8c\xad\x8e\xf6\xca\xca\x3d\xe5\x80\xf2\x11\x09\x43\x51\x8f\xca\x01\x45\xc5\xdd\x2c\x16\x5f\x97\x03\xc6\xd8\x2c\x89\xd6\x4d\x5f\x05\x54\x4d\xdd\x77\x38\x20\x32\x1b\x90\xbf\xcb\x85\x67\xcc\x35\x19\xf0\x4f\xdb\xb5\x0b\x01\x8f\x4b\x49\xd8\xa0\x7b\x2c\xa5\xe0\x7e\x21\x05\x25\x8c\x78\xe5\x7a\x8e\x16\x00\x3a\x15\xc8\xf3\xfd\x1d\x0d\xa4\x18\xdd\x2a\xe3\x4f\xa1\x60\x1d\x6d\x35\xab\xbf\xc3\x25\xc0\x1c\xd0\x6d\xb9\xb7\xe3\x12\xac\x94\xff\xa0\xa9\xfe\x31\xab\x2d\x2b\x1a\x50\xda\xbe\xfd\xe8\xdd\x22\x82\x84\x82\x55\x0e\x3f\xdd\xad\x99\x49\xe8\x99\x3f\xfe\xb9\x76\xcf\xbb\x0a\xb4\x59\x37\x16\xae\x76\xa3\x97\x82\xd4\x0e\x9d\xd3\x77\x24\x6b\x00\xcb\xba\x2d\x2b\x92\x07\xc9\xd8\x5c\xf9\xc3\xfc\xbc\xd2\x47\xca\x4a\x31\x88\x9a\x7d\xa6\xc4\x5e\x0b\x48\xdf\xc1\x6c\xb6\x66\x6d\x10\x60\xb1\xeb\xc0\x2e\x5b\xbb\x20\x52\xd9\xf5\x2a\xf1\xab\xe0\xda\x52\x40\xa3\x8d\xa2\xce\x52\x6d\x85\x80\x56\x5f\xed\xcf\x1c\xb8\x5e\x02\xe8\xb0\xea\x84\xa9\xc8\xaa\x4b\x80\xfe\x75\x7a\xbd\x99\x5c\x6e\x14\xd4\xce\xd9\x13\x71\xbc\xf3\x31\x85\x34\xba\x98\xf6\xa1\x5b\xcf\x09\xf0\xc9\xc1\xcf\xab\x27\xdb\x9c\x00\xd7\x15\xe4\x3e\xff\xbc\xba\x1a\x70\x6f\x1a\x1c\x10\x3d\x59\x06\x18\xc3\x77\xe5\x6b\xaa\x59\x15\xa0\xaa\x70\xe8\xe5\xbf\x23\x06\xbe\x90\x3d\xdd\xb2\x32\x80\x02\xce\x1f\x0d\x22\x9d\xb9\x01\xa9\x18\xae\x1f\x09\x2d\x90\x07\x94\x78\xca\x95\x9c\x14\xa0\x03\xa8\x2e\xf9\x6e\xd7\xcc\x1e\x77\xc0\xe1\x9e\x62\xea\x9d\x32\x26\x80\x8f\x34\xec\xd7\x31\xd7\x98\x00\xde\x25\x68\x35\xd3\x0c\xd4\x01\x5b\xe7\xb6\x16\xbf\x68\xd9\x0b\x98\xba\x26\xaf\x21\x73\x42\x02\x50\x68\xfe\x82\xba\xab\xa2\x04\xe0\x63\xdb\xe9\x0f\x99\x4a\x03\x04\x72\x3d\xa2\xc4\x38\xf4\x1c\x01\xf4\x7a\x3b\xf1\x48\x27\x24\x88\x84\x86\xb3\x66\xde\xfe\xac\x2d\x04\xb6\x37\x0c\x84\x68\x73\x12\x80\x86\xba\x05\x34\x4b\x11\x74\x80\xbe\x45\x1f\xbe\xda\x04\x9e\x05\x7c\x79\x38\x7f\x3a\xaa\xdf\x15\x70\xe4\x56\xac\xea\xb9\xdc\x5c\xc0\x92\x77\xca\x57\x14\xf3\x72\x01\xbf\xfb\xb3\x9f\x9e\x33\x39\x08\x28\x3d\x31\xbe\xc7\xbc\x65\x23\x60\x8c\xc8\x0b\x27\x5d\xa2\xb9\x02\x2d\xe7\xde\x59\x58\x53\x8f\x10\x78\xea\xf3\x02\xd5\xaa\xc2\x7e\x12\x2e\x8c\x7d\xcc\x3d\x1a\x3f\x40\xc6\x9f\x8b\xc5\x35\x34\x3b\x00\xd9\xe3\x9e\xa7\xf8\x6a\x53\x91\x80\xc6\x4c\x7d\xdb\x84\x78\x00\x8f\xed\xa4\xf6\x8d\x60\x58\x22\x50\xef\xfa\xd7\xb7\x92\x92\xcc\x80\x1f\xbf\xb5\xc7\x8a\xa7\x1d\x02\xf4\x57\x38\xb7\x94\x52\x52\x57\x81\xa1\xee\xb5\x41\xde\xde\x52\xb0\x82\x25\x5d\x76\xed\xf9\x6f\xf5\x15\x2b\xd8\x77\x50\xb8\xfd\x62\xcc\x2a\x58\x81\xc2\x90\xc4\xf0\x19\x15\x3e\x12\x6e\xbc\x5e\xd4\x45\x86\x6b\x80\xdf\x12\x27\xea\x2e\x32\x71\x02\x6e\xf7\xd1\x39\xf7\xf1\xce\x4e\x40\x8f\x35\x8d\x1d\x1c\xae\x4a\x24\x44\x85\xc7\x3b\x7f\x38\xd5\x46\x60\x88\x74\xb7\xd6\x40\x1a\x35\xe0\xe7\x84\x40\xf7\x17\x4d\x21\x80\xcf\xe5\xcd\xeb\x42\x66\x6a\x00\xa5\x1e\x7d\x3b\x26\xcd\x57\x09\x78\x9b\xa6\x04\x5f\x30\xd5\x00\x6e\xd8\xaf\x51\x1b\xba\x3c\x8a\x29\x97\x52\x39\xdd\xaa\x4a\xc2\xc9\xfc\x4f\x22\x4e\x7f\x6a\x48\xe0\xb3\xb8\xda\xc3\xf5\xa8\x81\xf2\x8f\xd1\x67\xea\x7b\x0f\xfc\x2a\xb6\xc3\x7c\x5f\x13\x17\x7f\x94\x25\xe0\x6b\x5e\xae\x77\x6d\xb7\xcb\x00\x8b\xc3\x77\x65\x34\x71\x51\x00\x87\x58\x9a\xc6\x35\x86\x9e\x03\xce\x85\x2c\xc8\x1b\x58\x15\x01\xca\xab\x29\xb5\x36\x2f\x8f\x96\x6e\xdd\x8e\xdc\xbc\x3d\x98\x04\x35\x93\xc4\x5e\xd9\xdd\x12\x80\x93\x81\x76\x9d\x43\xf2\x48\x60\xf4\x95\xad\x47\x8e\x65\xd8\x00\x46\xe5\x88\x87\x4f\x7f\xa3\x05\x3c\xae\xff\x46\xef\xf3\xfc\x56\xc0\x0d\x33\x55\x79\x15\xaf\x25\x49\xd0\x7d\xb2\xc8\x33\xb9\xbd\x96\x04\x6e\x9e\x7b\x9f\x4e\x9c\x0a\xa0\xe0\xbb\xb3\xc1\x56\x32\xdb\x6b\x00\xbf\xab\x06\x0d\x84\xcb\xb5\x51\x56\xae\xf1\x97\xd4\x74\xaf\x5f\x1d\xf2\x2f\x6c\x54\x63\x20\xba\x6b\x57\xc1\xfc\x57\x5b\x5f\x37\x6a\x33\xc0\xd9\xa1\x37\xfc\xb6\xd7\x7e\x13\x2b\xb0\xaa\x6f\xd4\xaf\xdb\x37\x4a\xe0\xad\xb0\xce\xaa\xd5\xd6\x3f\x09\xfc\xe3\x66\xad\xa5\xe7\xbe\x01\xfe\x17\xfc\x64\x7e\xec\xac\x5e\xac\x21\xb0\xec\x10\xe5\xfc\x14\xf3\x26\x58\xc1\x63\xe1\x0d\xbd\x45\x83\x67\x48\x28\xa7\x44\x34\xfc\xfd\x1d\xea\x23\xfa\xa8\x42\xfa\x6c\x35\x40\x8f\x1e\xa5\x7b\xab\x66\x43\x01\x53\xca\x9a\x1a\xc6\xe6\x2d\x49\xb8\xfa\x32\xe3\xf4\x1b\xee\xad\x80\x3c\x9a\xa1\x9b\xb5\x5f\xbd\x04\xdc\x9e\xf7\x85\x75\xca\xc9\x1f\xd0\x4c\xed\xc9\x97\xd6\xf0\x42\xc0\x0c\x0f\xb3\x04\xfa\x37\x21\x80\x8f\x4c\x9f\x86\x69\xfc\x0e\x06\xbc\x35\x26\x6f\x16\x31\xe5\x09\x78\x72\x77\x5d\xd1\xb6\x8d\x34\x80\xb3\xbf\x7e\xaf\x09\xf4\xd3\xfd\x9f\xe8\x1e\xf8\xe8\xe8\x5d\xa5\xfd\x2f\xfc\xbc\xe7\xc5\x28\xd3\x41\x00\xea\x97\x4a\x6e\xa2\x49\x5b\x3e\xae\x04\x94\x64\xfd\x38\x6a\x00\xf8\x80\x35\xfc\xae\x46\x5e\x1d\x81\xc3\x59\x9b\x9e\xff\x31\x56\x02\x1c\x5f\xdc\x16\xf6\x66\x52\x08\xb0\x68\x93\xb0\x15\xe5\xb3\x1c\xa0\x86\xaa\xef\xd4\xad\x22\x7b\x12\x4c\x2d\x8d\x84\x1d\x68\x99\x01\x0f\xb8\x9a\xb5\x9f\x6a\x1e\x22\xd0\xa5\x3d\xde\xb3\x97\x22\x06\xff\x0b\xe9\x0f\xc7\x88\xbd\x47\xb6\xfe\x0b\x79\xa2\x1c\x97\x38\xcf\xd0\x02\xd6\x6d\x77\x9b\xb4\x97\x66\x03\xfc\x98\x10\xbe\xd0\x7c\x26\x9c\x04\x86\xfd\x74\x3a\x8a\x23\x9f\x08\x34\xbe\x32\x24\x71\x70\x2d\x0b\x60\xa2\x80\x3e\xef\xbb\x25\x4e\x12\xce\x85\x33\xca\xf5\xe4\x54\x56\xe0\x21\xbb\x37\x8d\xc9\xd7\xb9\x01\xe5\x25\x1f\xde\xb8\xff\x68\x82\xc0\xe2\x51\x86\xa3\xec\x5a\x6a\x80\x3f\xec\xee\xbc\xa9\xb2\x3c\x0f\xa8\xc4\x2e\x24\xf4\x47\x3e\x1a\xb0\xba\x63\x13\x23\xdd\x82\xc6\xbf\xf0\xfe\xa7\x42\xd8\x82\xd8\xfa\xff\x09\x46\xa6\xed\xc7\x87\x57\x4d\x11\x2b\xa8\x1d\x1e\xa9\x18\x8e\x9b\x24\x41\xed\x9a\xd9\xe6\x5b\xb3\x54\x80\xeb\xdb\xd8\x63\xb2\x27\x6f\x91\x30\xf4\x3a\x4d\x2f\xff\xb1\x1c\xa0\xd0\x0b\xea\xdb\x1f\x7c\xf4\x01\x1f\x26\x32\xbf\x9f\x4d\x08\x05\x9c\x4a\x11\x1d\xbc\xb4\x65\x2b\x60\x99\x66\x98\x78\x7d\xb3\x00\xa0\x46\xcc\x25\xda\x5b\x97\x68\x00\xa7\x2c\x1d\xc4\x4d\x63\x85\x01\x25\x9d\xdf\xb7\xb9\xd9\x6f\x23\x81\xfe\xd2\x47\x5f\xbe\xe7\x7b\xff\x85\x6b\x6b\x1c\x54\x2a\x8d\x3a\x08\x3c\x31\x82\x0b\x6f\xd2\x26\x09\x6c\x87\x07\x91\x9e\x67\x37\x00\x9a\xf9\xe4\x07\x9e\x3f\x78\x9c\x84\x0c\xdd\x3c\xce\x55\xd3\x9b\x01\xf5\xee\xaa\xb7\x4c\x7b\x17\x13\x48\x7c\x67\x71\x56\xfd\xb8\x07\x56\x20\x45\x2f\x5e\xe2\x9c\xd0\x43\xe0\xfa\xa6\xbe\x9e\x26\xdd\x29\x02\xe7\xce\xf8\xff\x64\x2c\x38\x0c\xc8\x76\x2e\xac\x8e\x7b\x1f\x37\x60\x45\xa2\x7d\x0a\xf1\xf4\x1e\x09\xb5\x22\x83\x93\x26\xc6\xc5\x94\x95\x32\x63\x77\xe4\x48\x3a\x5a\x01\x3e\xbb\x35\x72\xf8\xd8\x8c\x15\xa0\x7e\x46\x19\x8f\xd8\x94\x15\x69\x54\xf6\xba\xb2\x6c\x92\x5e\x00\x50\x3f\x67\xec\xce\xd1\x20\x29\x40\x46\x23\xc5\x70\x0b\x53\x55\x40\xf3\xa4\x9b\x29\x53\x66\xa5\x24\xd8\x8b\x2a\xbe\x95\x0c\x7b\x4e\x82\x98\x5b\x4c\xca\x62\x6d\x31\xe0\xef\xa9\x0d\xec\x7f\xaf\xb9\xa7\x3e\xc7\x1f\xe6\x75\x1e\xf0\xd3\xa6\xf5\xba\xc2\x4e\xe7\x01\x53\x3f\xda\x59\xcb\x4c\xbb\x03\x4a\xca\xf3\x89\xaf\x2a\xaa\x04\x3c\x92\xc4\xfa\xb8\x50\x21\x81\x82\x47\xde\x29\x98\x51\x2d\x97\x22\x4e\xdd\xd3\x7f\xa1\x36\xe2\x6b\xcf\x4b\xf0\x02\xaa\xf5\x45\x89\xd2\x0e\x6a\x00\xb6\x14\x1f\x72\x74\x13\x8d\x25\xa1\x75\xff\x6d\x57\xef\x40\x7f\x12\x14\xbe\x18\x5d\xed\xcd\x0a\x00\x14\xb0\x8d\xfe\xe4\x7e\x4d\x00\xd0\xb9\x5d\x28\x51\xeb\x8f\x36\x09\xeb\xa7\x78\xa6\x8c\xef\xb2\x02\x9e\x77\xf9\xc9\xe2\x7f\xd8\x1d\xf0\x54\x74\xf5\x6d\x3a\x2d\x75\xc0\x9e\xe2\x5d\x7c\x68\xf9\xa6\x02\xd9\xab\x77\x69\xef\x1c\x35\x81\x15\x6c\xae\x65\x2c\x0b\x7d\x31\x49\xa0\x45\xf2\xa4\xde\xcb\xf1\xfd\x80\x17\x6c\xc5\x82\xed\xf6\x33\x00\x9a\xa4\x4f\xf4\x36\x9f\x88\x24\xe1\x8e\xe0\xe7\x0d\x3a\xc3\x89\x80\xf7\x14\x66\x33\xfb\x64\x1f\x02\xd6\xf5\xa5\x48\xa7\x29\x3f\x59\x5e\x71\x4e\xdc\xca\xba\x32\x4d\xa0\x15\xc7\xc4\xcf\x3e\xdf\x42\xc0\x74\x8b\x46\x1d\xeb\xfa\x74\xc0\x0e\x19\x86\x88\xbf\x58\x5a\xa3\xaf\xf4\xab\xfb\x24\x20\xd7\x3b\xad\x39\xe3\x9f\x46\x24\xc8\x97\xb9\x49\xb9\xba\x1d\x03\x74\xe7\x48\x3f\x19\x9e\x16\x0b\xa8\xf8\x22\xd3\x65\x5d\x92\x36\xe0\xd5\xa1\x2b\x89\xd7\x0f\x6a\x03\x16\xd7\xda\x6e\x39\x17\xb1\x01\xb0\x86\x8f\xfe\x56\x53\xd1\xee\x7f\x41\x6d\xdd\xf0\x01\xd5\x2f\x29\x80\x21\x2f\x1a\x4e\x6c\xda\xce\x00\xd8\xe0\xa1\xc1\xe3\xb5\xa9\x1e\xd0\x4e\x4c\x92\xfe\x2f\x9c\x8b\x0a\xde\x2b\x3f\x2a\x02\xfc\xf3\x6e\x9d\x82\xca\x32\xa2\xa7\x8f\x47\xfd\x85\xa2\xc3\x6e\x45\x25\xbb\x54\x40\x96\x9a\xed\x21\xbd\x0c\x5e\x80\x2f\xc3\xf9\xf8\x8a\x05\x0d\x00\x7f\x64\xe8\x66\x5a\x3f\xa6\x00\x26\xf5\x6d\x98\xf9\xd4\x59\x0d\xd8\x91\xa4\xfa\x42\xfc\x6a\x0d\xa0\x5d\xa2\xfd\x29\x9b\xcc\x2a\x40\xc3\x2b\x07\x56\xef\x08\xab\x04\x1c\x65\x49\xb5\xe1\xa5\xab\x05\x14\x35\x63\x08\x0b\xde\xc8\x46\x42\x67\x8b\xb3\x16\xf3\x91\x2a\x40\xb9\xe4\x3c\xc7\xce\xb2\x66\x40\xe1\x3b\xe7\xd4\x1c\xad\xaa\x00\xcf\x1f\x11\x30\xa8\xb3\xab\x02\x3c\x73\xd5\x48\xfa\xef\x35\x1c\x41\x9a\x89\x3e\x26\x02\x80\x2f\xed\xe2\xa4\x0b\xcf\xcf\x10\x78\xa0\x7a\x7c\x7d\x67\xc7\x2a\x58\xc1\xc7\x53\x4a\x2d\x15\x31\xeb\x48\xb8\x66\x29\x4e\x9c\x5d\x7a\x0e\x18\x69\x13\x50\x69\x77\x39\x18\x70\xfa\x04\xd5\x96\xea\xc7\xc9\x14\x2c\x88\xcd\xf5\x69\xe2\x1a\x26\xf0\xd5\x17\x93\x6c\xe1\x52\x45\x58\xc1\xba\x8f\x7b\x06\x6f\xf1\x4c\x13\xe8\xd9\x17\xbd\x59\xf7\x7b\x04\xe0\xcb\xfd\x9f\xdc\xbc\x7e\x78\x01\xde\xce\x16\x5d\x9b\x6a\x1b\x48\x59\x29\x17\x3d\x7f\xa9\x8c\xf9\x30\x03\x6e\x1e\x90\x19\xfe\xf0\xa7\x9d\x82\xa1\xf3\xbe\xdd\xfd\x4a\xc9\x80\x26\x27\x36\xc9\xfc\x79\xfa\x00\x30\xee\xa8\xac\x9c\x88\x82\x3e\x60\x7d\xc1\x95\xde\x8a\xad\x51\x80\x4d\x1b\x7c\xb2\x5f\xbc\x36\x07\xb4\x66\xd3\xea\xaf\x58\x3d\x4d\xac\x60\x20\x78\x96\x71\x3a\xf4\x17\x81\x91\x42\x11\x4d\x90\xcc\x0c\x18\x78\xe2\xd5\x88\x60\x6c\x19\xe0\xe7\x02\x9f\x17\x52\x53\x4f\x00\xaf\x34\x9a\x89\xcd\xef\x5d\x20\xd0\xd4\xd7\x70\xa3\x46\x58\x30\xfc\x2f\x18\x18\x33\x36\x74\x74\x14\x01\x4a\x31\x4e\x97\xf9\xae\x2b\x07\xbc\x3b\x91\x78\xfc\xff\x06\xa3\x60\xe6\x60\x8d\xe9\x59\x40\x27\x3e\x63\x3e\xc1\xcf\xd2\x80\x3f\x68\x7c\x7b\x84\xdf\xfe\x26\x50\xf9\xf6\x67\x81\x4f\xa7\xac\x00\xb1\x33\x29\xaf\x9a\xd7\x88\xb2\x52\x42\xfd\x18\xe9\x25\xb6\x2c\x12\x98\x94\x5c\xf5\xfa\xb6\x87\x1e\xac\x20\x50\xa0\xeb\xe8\xe3\x9a\x40\xc0\xa1\xf9\xf5\x05\xf1\x55\x9c\x24\xb0\xcd\xc9\x46\x87\x55\xf6\x11\x2b\x78\xb6\xdd\xd2\xa1\x27\xe5\x43\x05\x9a\xcc\x8d\xfb\xd1\xac\xe3\x03\xa4\x29\xe1\xc9\x1a\x9f\xb6\x25\x41\x77\x42\x6e\x89\x65\x44\x03\xd0\x49\xc3\x52\x6d\x22\x7c\x2d\x60\xd0\x21\x64\x38\xcd\x47\x07\x38\x3f\x3a\x27\xa7\x3e\xeb\x01\xe8\xd6\x18\xff\xf0\x98\xb7\x30\x60\xed\xe5\x96\x0d\xcc\x26\x00\xf8\x48\x2f\x95\x77\xe0\x83\x1a\x60\xad\xd1\xeb\x01\x96\x66\x7e\x40\xd9\x0f\x86\xc6\x74\x2f\x26\x08\xac\x58\xf7\x5c\xec\xec\xa9\xf9\x7f\xa1\x4c\x55\x24\x5a\x28\x9a\x0d\x70\x75\x2f\x7c\x1b\xe3\x2f\xa2\xac\x94\xff\xb0\x8f\xe1\x50\xd1\x83\xcb\xbd\x15\x28\xd6\x98\xd2\xb3\x24\x5f\x05\x78\x5c\x79\xf2\x66\xe8\x8e\x2a\xc0\xfe\x7c\x3e\x0e\x15\xff\x72\x58\x19\x0d\x18\x5a\x8b\xda\xba\xb0\x01\xaa\xf0\xcf\x77\x7f\xad\xe3\xff\x17\x4e\xd7\x1d\x3b\xd3\xbb\xf3\x3d\xf1\x0f\xfc\xb2\x3f\x79\xde\x75\xf6\x23\x81\x7c\xc2\xd7\x94\x46\xf6\x16\x01\x9e\x8e\xe1\xe6\x54\xa1\xdc\x02\x6c\x25\x32\xdc\x7e\x2a\xc4\x00\x26\x34\xb5\x26\xfe\x85\xc6\x2a\xd9\x82\xcf\x7b\x63\x00\xc3\x9e\x6e\xda\x7a\x8a\xe7\x34\xe0\xe3\x71\x2e\xdf\x4d\x8c\x97\x48\xa5\x25\x48\xdd\x43\x68\xb3\x02\xe0\x6e\xad\x34\x85\xdd\x62\xc2\x80\xd2\x2e\x81\x8b\x4e\x8c\x02\x24\xc8\x8e\xd6\x26\xfe\x32\xaa\x27\x70\xf5\xb9\x19\xab\xf5\xd4\xf3\x04\x46\x3f\x14\x36\xed\x52\xd9\x0d\x2b\xa8\xea\x79\x99\x7f\xac\xbc\xaf\x02\xfd\x93\xef\xa8\x9e\xa8\x54\x02\x74\x62\xf8\x59\xb2\xc4\xc1\x4a\x42\x6d\x87\x45\x41\x71\xe3\x5a\x40\x22\x81\xaa\x6e\xe3\x9d\x0e\x02\xaf\xbf\x73\x3b\x92\x72\x05\x09\x2c\x3b\x20\x7d\x82\x26\xc7\x1f\x10\xea\xc3\x6d\x24\x69\x0d\x49\x58\x2b\xd6\x5d\xf5\xf7\xb3\x04\xdc\x79\xd7\x04\x66\xcf\x05\x02\xd2\xb0\x85\xee\xb2\xac\xbd\x05\x38\x72\x23\x8f\xbb\xb8\xb4\x1c\xd0\x46\xfb\xf7\xb9\x3a\xe3\x72\xc0\x8d\xd3\x0a\x57\x87\x36\x94\x03\x5a\xcf\x19\xc6\xde\xfc\x55\x06\xb8\x3a\x5a\x8a\x52\xb2\x7c\xcd\xdb\xdf\xb2\x5d\xd9\x7e\x7e\x80\x46\xaa\xeb\x79\x58\xbb\x7c\x01\x8f\x9a\x70\x44\xde\xd9\x7e\x06\x30\xe1\x9a\x15\x5d\xce\xf2\x28\x48\x38\xe4\x94\x70\xea\x23\xc0\x83\x05\x39\xf1\x7f\xc1\x3c\xb8\x7a\x8e\x46\x99\x02\x68\x77\xdd\xfc\x49\xe0\x15\x3f\x0a\x2a\x73\xe7\xe6\xd0\x2e\x17\x59\x9b\xe2\x9b\xf3\xaa\x62\x80\xaa\xeb\x5f\x37\x3c\xcb\x65\x01\x9c\x09\x69\xed\xd8\x3d\xc7\x4e\x42\x9e\x30\xff\x90\x7c\x03\x41\xc2\xa5\x73\xdf\x7f\xd5\x87\xcd\x10\x2b\xa8\xbb\xaa\xef\xbf\x4f\x44\x1f\x56\x20\xf2\x08\xd9\x74\x54\x7b\x08\x7c\x21\x3c\xfc\x3a\xa9\x7f\x8c\x40\xcd\x6e\x38\xe3\x9d\x31\x46\x60\x53\xb6\x9a\xcf\xb7\xc7\x02\x80\x7a\x1b\xce\x12\xec\x9c\xcb\xe7\x96\xa0\xd7\x70\xb0\xff\x38\xe0\x85\xd2\x9f\xe3\xd5\x2a\xe2\x80\xc9\xda\x0e\x91\xa3\xcf\x59\x00\x3b\x32\xce\x77\x95\x97\x89\x01\x4e\xf6\xbe\xf9\xd4\xfa\xee\x29\xe0\x19\x1a\x8d\xf6\x94\xe1\x7b\x14\x3c\xa6\xbb\x1b\xbe\x08\xe7\x51\x90\xce\x3a\xcc\x9a\xde\xf4\x2e\x60\x76\x65\xf8\x85\x2c\xba\x20\xc0\x73\x26\xee\xb2\xf3\x05\x21\x80\x92\x4c\x27\xbe\x9c\x1e\xbd\x0c\x78\x2c\x34\x93\xe9\x8a\x77\x0d\x60\xa7\x69\xa9\xbd\x62\xd6\x7d\x40\x56\x76\x2a\x85\xfa\xf0\x08\xc0\xec\xd7\x9c\xed\x34\xfc\xed\x80\x4e\xd7\x4f\x23\xb7\xfe\x46\x40\x86\x0c\xcf\x9e\xe2\x7c\x4b\x12\x44\xd8\x1e\x6e\xf5\x78\xf6\x8d\xc0\xf5\x33\xaf\xd3\x2b\xd8\xdd\x29\x78\x2b\x3c\xcb\x3b\xc2\x5e\x10\xb0\xb1\x3a\xe8\x7e\x61\xee\x12\x81\x83\x57\x9d\x56\x53\x12\x65\x00\x55\x6e\xfb\xfe\xfc\xcd\xec\x41\xc1\xce\x23\xcf\xca\xa3\xcc\xbe\x01\x3e\xa3\xbb\x38\xf4\xea\x50\x15\x60\xf7\xd1\x3d\x8f\x76\x5d\xd8\x0d\x98\x7d\x7b\x84\x73\x83\x8c\x04\x60\xde\xa9\xd1\xbb\x37\x91\x05\x50\xf1\xa3\xf5\xd7\xc1\x06\x0b\x12\x8c\x0c\x94\x38\x36\x74\x4a\x03\x6e\x8b\xac\x98\xb9\x49\x74\x12\x58\xb5\xe1\x7d\xbe\x4e\xdb\x3e\xc0\x0c\x0e\xea\x6e\xb7\x79\x46\xc0\x8f\x67\xbe\xc7\x9a\x57\x7f\x23\x50\x30\xe0\xe0\x06\xbf\x1c\x56\x58\xc1\x8f\xfc\x88\x77\x6c\xbc\xeb\x01\xa3\x55\xbe\x1e\x38\x7b\x77\xf9\x4d\x58\x75\x4f\xe6\x4e\xe7\x0e\x0a\x1e\x4b\xeb\x7e\x14\x9b\x68\x04\x2b\xf0\x57\xe3\xbd\xa2\x63\x3b\x0d\xd8\xc8\xfe\x61\xc6\xfb\x79\x01\x20\x0f\x0f\x1b\x6d\xce\xda\x29\xc0\x43\xd3\x96\xbb\xa1\x6a\xf9\xc8\x78\x82\x79\xd8\x5c\xfa\x15\xe0\xe9\xb8\x52\x66\x76\xe1\xcd\x80\xe6\x66\x4a\x27\x0b\x63\x14\x01\x65\x3c\x8e\x5e\xbb\x3e\xb9\x03\xb0\xfe\x69\x52\x5b\x5b\xc3\x25\xc0\x41\xa3\xd4\x53\xa6\xe2\x85\x80\x57\x2d\xe7\xe9\xef\x17\x3d\x06\xfc\x36\x35\x11\xd9\x76\xd9\x1c\xd0\x87\xf6\x4d\xfa\xaf\xf2\xfd\x80\xd1\xb7\x02\xdd\xd9\x26\x90\xc0\xfc\x07\x3d\xd7\xee\x67\xce\x91\x30\x95\xce\x74\xa4\xef\x3d\x03\xe0\xeb\x81\x7d\x0f\xa6\x3f\x8d\x13\xb8\x68\x78\x3f\x95\xe6\x79\x28\x60\xc0\xd5\x76\xfe\xcd\xd6\xa2\x80\x77\xfd\x72\x9c\xed\x53\xa8\x49\x70\x65\x30\x12\x63\x30\xd8\x06\xf8\x52\x89\xae\x6b\x7c\x6b\x1d\xa0\x0f\xa3\x4e\x80\xe8\x67\x4e\x40\x93\xa2\x48\x79\x2f\xef\x9d\x80\x52\x81\x13\x97\x03\x73\xa4\x01\x4f\xdd\x51\xd9\x57\x7a\x58\x16\xd0\x26\xd4\xb9\xd4\x5d\xa0\x16\xf0\xa4\xd5\xe5\x06\xb1\xdf\x57\x01\x47\x37\xbe\xb7\xd9\xc6\x5b\x0b\xe8\xba\xb7\x4c\xd3\x44\xf2\x38\xe0\x2e\xcf\x87\x7c\xa5\x66\x6c\x24\x78\x6b\x9f\x0b\x5f\xd7\xda\x5b\x81\x1a\xa3\x32\xa5\xc4\xe0\x7e\x40\xb5\xba\x32\x97\x17\xab\x76\x02\xde\x9b\xeb\x7c\xa2\xf8\xc3\x00\x50\xeb\xbb\x0f\x3d\x8b\x84\x2e\x60\xcf\x5d\x8d\xa1\xe1\x30\x19\xc0\xec\xda\x60\x86\x1e\x1f\x19\xc0\x6b\x21\x7b\xef\x16\x4a\xc9\x03\x72\xcd\xc4\xca\x04\x8d\x6f\x06\x5c\x73\x42\x86\x63\xb8\xef\x3a\xa0\x70\xc1\x5d\xcf\x8b\x7e\xbc\x80\x4f\xee\x5c\x1b\xb7\x7e\xfb\xf7\xdf\x49\x1f\x79\x53\xed\xcf\x04\xc8\xbf\xef\x56\xcc\xcc\xc0\x02\x81\x59\x3f\x77\xa9\xdf\x1f\x90\x82\x15\x18\xf2\xf1\xa9\x7a\xab\x51\x93\x80\x3c\x91\xf6\x15\xf2\x85\x04\x86\xfd\x66\x72\x1e\xcc\xc8\x04\xe4\x91\x75\x55\x30\x12\x6d\x05\x7c\x4b\x5f\xa9\xda\x4c\x7b\x1c\x30\x30\xfb\xde\x3a\x33\x53\x02\x30\x42\x83\xf3\x63\x04\x8b\x2a\x20\xa3\xeb\x0e\x1f\xbb\x02\x4e\x40\x2b\xcf\xef\xe7\xdf\xb6\xcd\x10\xb8\x59\xec\xdd\xb3\xda\xd1\x55\x80\x87\xf2\x3c\xa3\x4e\xe9\x2a\x91\x10\x76\x97\x8f\x63\x22\x64\x90\x40\xfa\x35\xc0\x76\x61\x36\x1a\xf0\x65\x3f\x83\xf9\x1f\x9d\x48\xc0\x37\x4e\xa2\xc1\xde\xf3\x87\x00\x7b\xba\x3e\xf0\x31\x8b\x6a\x02\x6e\x56\x53\xd8\x9a\xf5\xfa\x1b\x81\xca\x89\xab\xde\xfa\xb4\x89\x00\x76\xcc\xa7\x15\x2c\xc4\x28\x01\xf6\x64\xa4\xa6\xdc\xe1\x64\x26\xe1\x49\x8d\x82\xd0\xbc\xc9\x34\x81\xca\xfd\x34\x7b\xf6\x47\xf6\x13\xc8\x65\xbe\x6e\xf1\xc6\xc8\x1f\x02\x77\x3e\xb6\xd8\xd7\xb8\x83\x0a\xf0\x6e\xf1\xe2\x78\x8d\xa3\x2c\xe0\x2f\x1a\xff\x23\x9d\x27\x63\x01\x25\x79\x75\x6f\x56\xfe\x30\x05\xbc\xef\x1f\xb6\xe3\x25\xb3\x39\xe0\xc5\xdd\xf4\xef\xf3\xb9\x9f\x03\x4a\x31\x41\x1a\xd5\xf2\x66\x7e\xe6\x71\x83\xf8\x66\xe3\x02\x12\x8c\xef\xee\xc8\x9a\xaa\x10\x03\x0c\xa0\xb6\x11\x2d\x6b\x69\xaf\xc0\x07\x62\xce\xc3\x22\xbc\x8e\xb0\x82\x7a\x4e\x87\x93\x6c\x21\xfb\x00\x0d\xff\x04\x0d\x08\x25\xfd\x22\x70\x75\x95\xca\xfe\x56\x7e\x5f\x58\x41\xcf\xc0\x48\x4b\xeb\x22\x2d\xe0\xf5\xb7\xac\x84\x01\x3a\x01\x8a\x7e\xba\x5e\xae\xa2\x56\x04\x38\x7c\xfb\x15\x17\x4f\xc5\x2c\x81\xdf\x38\xbf\x2b\x7d\x7d\x3a\x49\xa0\x6d\x9b\x66\x08\xf3\x9f\x61\x02\xdb\x15\x8c\xad\x3d\x6c\x01\xd0\x6f\xe6\x5e\x88\xdc\x5a\x66\xc0\x84\x5b\xcc\x13\x06\x7a\x56\x80\x45\xb7\xab\x42\xb6\x6b\x4a\x03\xaa\xa9\xed\x68\xa1\x16\x14\x00\x34\x36\xd9\x74\x24\x4f\xff\x10\xa0\x92\xb2\xdc\x4e\xef\x46\x4e\x40\x2a\xc3\x0e\xba\x36\xc5\x45\x02\xe9\xde\xb3\x7e\x3a\x4e\xd8\xc2\x0a\x8e\x9a\x83\xcd\xcf\xbc\x75\xcb\xe7\x53\x59\x1e\xf9\x98\xad\x80\x83\x6b\x3b\xf7\x32\x3c\xa4\x03\xd4\x5d\xfc\xdd\x94\xa9\xab\x05\x18\x99\xcc\xa1\x95\x73\x71\x1b\xa0\xdd\x9a\xad\xeb\xc6\x7e\x9f\x07\x7c\xb0\xf8\xc8\x83\xf7\xfe\x05\xc0\xa4\x80\x79\x59\x3e\x15\x36\x40\x1a\x05\x57\xc6\x8b\x16\xf1\x80\x5d\x55\x29\x4e\xe6\x4a\x2c\x24\xdc\xf6\x15\x0d\x09\x28\x7e\x4e\xe0\xc5\xda\x13\x77\xea\x3a\xf8\x01\xcd\x0c\x0f\x5e\xea\x30\x3a\x04\x28\x27\xd2\xdb\x96\x9c\xe0\x43\x41\xce\xee\xc8\x3d\xbf\x8b\x77\xc2\x3c\x17\x07\x6b\x3a\x15\x1d\x20\xdb\x73\x75\xc9\x2d\xbd\xb1\x24\x9c\x39\x93\xa7\x78\xf5\xb6\x13\xe0\xfd\x7b\x9a\xb2\x41\x1d\x7f\x08\x7c\x27\x34\xbc\x78\x64\xdb\x2a\xc0\x5d\xa5\xd4\xda\xb4\x5b\x98\x49\x18\x52\xa4\xce\x9a\xa3\x99\x24\x56\xf0\x6c\x52\x6e\x6f\x7f\xb2\x17\xe0\x44\xff\xa0\xfa\xc6\xcb\x0f\x01\xbf\x3e\x33\xcc\xe4\xc9\x30\x00\xd4\xb1\x13\x29\x77\x90\x61\x03\xdc\xbd\xea\x56\x43\xc5\x3e\x02\xd0\x97\xfb\x11\xc7\x4e\x35\x61\xc0\xe3\x9b\x5e\xd5\x44\xc5\x6c\x06\x3c\xb1\xe5\xa3\xab\xd1\x4f\x79\xc0\xa8\xa4\x45\x4b\xc6\x4b\x2c\x80\x71\xb7\xba\x24\xd5\xca\x6e\x53\xf0\x75\x4f\x3f\xe7\x59\xa5\x0d\x80\x55\xc1\x09\x89\xb6\x2e\x32\x80\x7b\xee\x06\x3e\xbe\xfa\x71\x23\xe0\xd8\x58\x73\xb7\xdb\x8f\x21\x02\x35\x98\xef\x66\x6c\xf6\x4b\x06\xd4\xcd\xb8\x39\x33\x44\xbf\x8d\x84\xd5\x6e\xfe\x55\x5b\xf8\x83\x01\xa7\x22\xc4\x87\xec\x34\xa9\x01\x03\x8b\x8d\xa8\x0f\x46\xf2\x00\x36\x09\x49\x48\x9b\xea\x6f\x05\x24\xf2\xf6\x3f\x39\x7c\x68\x23\xe0\x47\xae\x71\x10\x9b\x7e\x0e\x48\x53\x41\x75\x4a\x7c\x19\x35\x5b\xbb\x9b\x1f\xf9\x3b\x01\x2e\x9e\xb5\x11\xbc\x15\x99\x00\xf8\xd6\xff\xb2\xe0\x3d\x49\x51\x40\x8b\x0b\x12\x92\xb1\xba\x0f\x00\x2d\x1f\x9a\xa4\x2d\x5d\xaa\xa5\x60\x96\xd1\xae\xee\x8f\x7c\x8d\x14\xf4\x1a\x98\x5a\x15\x27\xf5\x9a\x82\xbf\x53\x1f\x74\x9b\x3a\x46\x00\x96\xb1\xd9\xff\x4c\xbe\xe1\x01\x38\xd2\x72\x79\x95\xfc\x98\x1b\x05\xdb\x1d\x8c\x0a\x3c\x95\x6f\x52\x90\x66\xcd\x0d\x41\x6a\xe6\xe3\x14\x3c\xaa\x5a\xcd\x54\x79\x32\x02\xb0\x26\xd4\xf5\x67\x4a\x57\x24\x60\x42\x7a\xd7\xc7\xe6\xce\x48\x40\xde\x63\x0d\x14\x3d\xe5\x28\xc0\x29\x3d\xae\x6b\x74\x8f\x03\x00\xef\x5c\x05\x27\xf1\xa7\x99\x80\xb9\x1f\x9a\x72\xe4\xd2\x65\x00\x1b\xb4\xc4\xcb\x83\x56\xb5\x10\xe8\xdb\x5a\xf1\x20\x65\x07\x07\x60\xec\xeb\x9f\xe7\x8e\x0b\x55\x00\x66\x94\x0b\x9a\x5c\xb8\x74\x16\xb0\xc9\x6e\xbf\x40\xb3\x8b\x07\x20\xbb\x65\xb2\x63\x44\x87\x03\xe0\xed\x32\xb6\x6b\xb7\x88\x83\x80\x7e\xde\x8b\x6d\x0d\x8a\x82\x80\x36\xaf\x5f\x05\xfb\xc6\x28\x03\x52\x0d\xb8\x36\xef\xf1\x30\x01\xdc\xd8\xf7\x38\xf0\x77\xb8\x33\xa9\x6c\xce\x62\xef\x3a\xb5\x26\xbf\x02\x37\x3f\xff\xe8\x61\xfa\xea\x13\x81\x4f\xf4\x86\xa4\x4e\x7e\x97\x00\xd4\x01\x26\x8d\x99\x57\xe2\xff\x13\x46\xbb\xf3\x9a\x6b\x53\x65\x00\x35\xfa\x4d\x92\x56\xd5\x36\x10\x2b\x08\xe7\x53\x92\xdd\x2d\x6d\x0e\xb8\xfa\x8a\xe5\x29\x85\x4d\x87\x00\xfb\xd6\xe5\x1c\x15\xaf\xb9\x4b\xc1\xfe\x81\x4e\x05\xef\x19\x4e\xc0\x72\x96\x93\x4b\xde\xed\x96\x80\x05\x7a\x89\x70\x43\x61\x89\xc0\xdc\xe8\x14\x03\x8a\x4a\x22\xe0\xef\x4d\x2c\x1b\x7c\xf8\x37\x02\x5e\x49\xe7\x9b\x9d\xa7\x79\x04\x38\x64\xdf\x19\xb6\x9d\x6e\x79\x0b\xeb\xcd\x34\x1d\x9f\x7e\x08\x78\x58\x3b\x50\xf2\x6f\x39\xf4\x24\x24\x52\xfd\xa3\x2d\xa0\x50\xba\x8a\xb9\x6f\x8a\x1d\x09\x85\x92\xfe\xd2\xef\xf2\xcc\x00\xdd\x80\x7e\x61\xeb\x79\x66\xc0\xed\x91\xba\x0d\x82\x9b\x8a\x09\x64\xb4\xbd\xe3\x75\x95\x56\x00\xfe\x17\x2a\xb8\x3f\x3b\xf4\x2d\x54\x11\xf8\x66\x44\xb8\xec\x90\xef\xf2\x0f\xc8\xbb\x87\x37\xbd\x66\x73\x01\xb7\x2b\x96\x6e\xb9\x72\xee\x39\x05\x8d\x44\x76\xd2\xfe\x2d\xb5\xfb\x3c\xfb\xae\x07\xd8\x00\x72\x99\xbf\x2a\x91\x33\xb6\x07\xa4\xc9\x17\x37\xb7\xd9\xaf\x03\xd8\xc7\x4b\x5b\xb3\x35\x62\x9e\xc0\xa1\xcb\xd7\xb3\xf5\x06\x79\xe1\x1f\x38\xf8\x84\x7e\x86\x79\x86\x0f\xd0\x22\xa3\x7e\x49\xfe\xa5\x06\xa9\xfc\xbf\x38\x62\x68\x42\x7b\x90\xa6\x8d\xc0\x2d\x4b\x4f\xb7\xa6\x5a\xdf\xa7\xe0\xfc\x9a\xba\xf7\xb6\x1f\x58\x00\xe7\xbc\x0a\xac\x6a\x3c\x73\x01\x77\x7e\xa9\x37\x11\xf2\x2c\x04\x5c\x6b\xb4\xd3\xfc\x6d\x7c\x2e\xa0\x94\xd5\xfc\xd3\xed\x6e\xb9\x80\x19\x8a\xbe\x75\x25\xb1\xb9\x80\xdf\xaf\xbc\xf2\x0b\xd4\x97\x06\xac\xbb\xa9\x39\xfc\xd6\x22\x19\x50\xac\x7e\xfd\x13\x31\x6f\xfb\x7f\xe1\x11\xa7\x54\xbd\x2c\x97\x2a\xe0\x5a\xf6\x53\x65\x73\xd7\x9e\x02\x8e\x41\xec\x8e\x93\x6d\x7b\x01\xdd\x0f\x4e\x16\xde\xeb\xe1\x01\x6c\x69\x9c\xa7\xab\xba\xbe\x01\xf0\xf2\x81\x1d\x3a\xa1\xe1\xfd\x15\xf8\xdd\x88\x73\x56\xf2\x89\x37\x05\xc7\x63\x3c\x0e\x1d\x38\x62\x03\x78\xe8\x6a\x47\xbc\xed\xb7\xc3\x80\xb5\x9e\x21\x7b\x92\xee\x94\x00\x2a\x5e\xeb\x8a\xf9\xd6\x95\x42\xc1\xee\x33\x71\x3b\xf7\x7e\x4c\x06\x3c\x5c\x33\x1f\xcc\x4f\xd8\x90\x40\xab\xe4\xfa\x5a\xe6\xe3\x51\xc0\x8d\x07\xaa\x77\xd7\xd5\x5f\xa4\xac\x8c\xb6\xee\x3f\x6d\x36\xdb\x78\xf8\x5f\x88\xf3\xa6\x04\xff\x3e\xf5\x9d\xc0\xdd\x6e\xe2\xa2\x06\x9e\x5b\x00\xdf\xe7\xfd\x8e\xfc\xdc\xf2\x95\xc0\x3f\x34\x27\xaa\xbb\xcf\xb0\x00\xd2\x49\x64\xe9\x9e\xda\xa5\x0e\xd8\xe9\xb2\x26\xd4\xcd\x47\x16\x90\x41\x52\x32\x7b\x5d\x4d\x02\xe0\x07\xb5\xc0\xb6\xe2\xd3\xee\x24\x6c\x3b\x23\x83\x23\x7a\xce\x80\xca\x8d\x1e\x87\xce\x4e\xd5\x03\x9a\x6d\x8a\x8c\x9e\xb3\xc9\x03\xbc\xed\x64\x67\xa0\x23\x47\x00\xda\x47\x32\xad\xfd\xfa\x77\x81\x2d\x8c\xbc\xb4\x36\xa5\x15\x30\xa2\xb0\x21\xa5\xd9\xfd\x39\x20\x7b\xf3\x11\xf6\xf6\xd4\x1a\x40\xbd\x37\xbf\x36\x8c\x5c\xad\x01\xbc\xdf\xfe\xe8\xdc\x6f\xbf\x74\xc0\x8e\xee\x17\xf2\x94\x05\x37\x0a\x56\xd3\x84\xd1\x7c\x75\x92\x01\x14\xff\x66\x76\xf2\x84\x98\x35\xe0\x3d\xa7\x6d\x4b\x34\xd1\x4f\x00\xab\x53\x27\x9e\xf7\x27\x58\x03\x26\x2a\x52\x8a\x9c\xee\x5b\x92\x0a\xe7\x11\xfa\xa7\xe9\x52\x36\x24\x5c\x9a\x4a\xde\x77\x9c\x97\x01\x30\x3e\x9e\x49\x32\xd1\x46\x8b\xb2\x52\xc4\x05\xaa\x57\x9d\x7a\xb8\x17\xf0\xd3\xf7\xf5\x31\x39\x07\x06\x09\x9c\xdf\x47\xb3\x74\xab\x5e\x1b\xf0\xad\xb9\x75\x59\x6a\xbc\x21\xa0\xc3\x2e\xdd\x8e\xc0\x9a\x0c\x12\xb2\xb3\xd5\x13\xd9\xa2\xf3\x01\xb5\x1d\x24\x42\xff\x22\x67\xf3\xd4\xed\x32\xca\xc7\x0a\x9c\xe5\x50\x67\x14\xe8\xf2\xa1\xe0\x92\x9a\xa6\x70\x56\x51\x17\xa0\x36\xdf\x53\xa5\x03\x05\x5d\x80\x53\xae\xa7\xc7\xd7\xae\x2d\x03\x54\xad\x13\xdf\x52\x6d\xaa\x05\xb8\x40\xf9\x13\xdf\xcf\x7f\x89\x84\x22\xca\x8f\x6a\x25\xcd\x48\xc0\xcb\x8f\x19\xaa\x5b\x36\x4c\x12\x18\x76\xd4\x2f\xd5\x22\x5e\x18\xd0\x79\x75\x94\xda\x99\x04\x7f\x0a\x4a\xca\xa7\x6c\x1e\x3a\x9f\x0b\x78\x96\x30\x79\xfa\xc5\x3b\x17\x50\x24\x9e\xf1\xca\xdf\x62\xfd\x45\xd5\xae\x90\xf3\x39\x09\x2f\x15\x05\xce\xda\xcb\x29\x03\x7e\xc8\x73\xb2\x7d\xfe\xed\x16\x60\x4e\x82\xc7\xb5\xd1\x0b\xd3\x04\x1e\x71\x92\x12\x61\x89\x67\x02\x1c\xd8\xae\xd0\xb8\x2b\xe8\x21\xe0\xe8\x6c\x98\xbc\x53\xf9\x11\xc0\x13\x1c\x59\x5c\x97\x84\x8d\x01\x2f\x37\x74\x7a\x79\x2d\x9f\x2f\x35\x6f\x64\x9e\xd8\x9a\x43\x01\x9c\x75\x31\x3b\x15\x79\xfb\x24\x60\x64\xb0\xae\xed\x5e\xae\xed\x80\x46\x16\x0e\x37\x8d\xac\x57\x03\xb6\xec\xcb\xcd\xfb\x52\xbb\x17\xd0\xbc\x6a\x97\x95\x82\x7f\x19\xe0\xcb\x1b\x52\x11\x4d\xe6\x26\x80\xb7\x70\xd3\x9f\x98\x97\x0d\x80\x54\x5f\x87\xf7\xa4\x2f\xbd\x04\x3c\x6a\x31\x79\xdf\x5e\xae\x1a\x30\x97\x7b\x92\x9f\x8b\xad\x0c\xb0\x89\x76\x4d\xd7\x80\xba\x37\xa0\x2b\xb3\x71\x03\xcd\xcf\x78\x40\x25\xba\x6d\xb7\xbf\x30\x14\x02\x9e\x33\xcd\xf9\xb5\x7a\xc7\x1c\x81\x1c\xfa\xcc\xe9\x0a\xa3\x4b\x24\xbc\xf3\xf1\x1a\x93\x1f\x90\x04\x6c\x3c\xec\x75\xf3\x5a\x48\x3a\x05\xd3\x85\xbe\xf5\x25\x85\x3e\x01\x14\xb2\x9c\x1f\xf9\xee\x9c\x08\xc8\x40\xa5\x31\xbd\x67\xcb\x04\x81\x22\xb7\xbf\xf5\x1d\x3f\x14\x04\x2b\xd8\x15\xbd\xc9\xca\xee\x58\x08\x60\xe2\x2b\x16\xa9\xb2\x85\x21\x02\x0d\x36\x5f\x35\xd9\xdf\xa4\x0a\xd8\xe0\x3a\x10\xf2\xae\x03\x89\x15\x30\x37\xcb\x5e\x2e\x61\xfb\x49\xe0\x9a\x86\xe7\xb3\x37\xbb\x43\x01\x23\xb2\xc5\x5a\x1e\x8f\xae\x05\x9c\x12\x0b\xc9\x50\x0e\xd5\x27\xa1\x86\x46\xd3\x24\x3e\x62\x9a\x40\x11\xfe\xb3\x25\x3c\xf7\xf9\x00\x9d\xe9\xfb\x3a\xb9\xab\x65\x01\xf5\xcd\x9e\x1f\x93\xe3\xc9\x05\x8c\xc9\xdf\xf7\x4c\x9a\x6b\xf9\x3d\x4a\x82\xbb\x57\x58\xf7\x0a\x05\x85\x7f\xe5\x5f\x69\x7e\xba\x16\xf0\xcf\xa2\x62\xbd\xd2\x88\x29\x09\x7a\xba\x25\x63\x3a\x41\x9b\x01\x59\xa3\x58\x3f\xda\x3e\xed\x27\x70\x4c\x77\xdd\x28\x93\x7f\x21\xe0\x96\x8c\xd9\xf2\xc6\xa2\x44\xc0\x4c\x57\xaa\xe7\x5a\xbf\x26\x08\xbc\xe4\x1c\x7d\x28\x78\x7d\x25\x09\x4c\xb3\x3f\xe6\x77\xb4\x29\x03\x6e\x5e\x8c\x2e\xef\x8e\x7d\x0a\x18\x56\xbb\x41\x8b\x77\xd7\xf2\x0b\xa0\xeb\xe1\x80\x7b\x07\x0f\xe0\x7b\xd3\x11\x9e\xe9\x29\x25\xc0\x53\x35\x7e\xfa\xc4\x1b\x63\x40\x95\x74\xef\x98\xe3\x8d\x47\x00\x37\x07\x36\x75\xd0\x8a\x4c\x12\x28\x28\xc1\x35\xbf\x99\xc9\x0d\x90\x81\xb9\xbc\x39\x95\x61\x2f\x09\xf7\x1a\x07\xb5\x8d\x19\xbf\x10\x68\xa6\xd1\xaa\x7c\x36\x70\x33\xe0\x34\xa7\xea\x1b\x8f\x13\xac\x80\xaa\x87\x3b\x44\x67\xdf\x02\x60\x1c\x7f\x70\xde\xf9\x67\xd1\x24\x94\x1e\xf4\xdb\xfd\x26\xf5\x22\x60\xe0\x49\xba\x4f\x47\xed\xc4\x00\x1f\xb2\xc5\x30\xa7\xca\x54\x02\x9a\x31\xed\x3a\x6a\xd1\xe3\x47\x82\xb4\x68\xa4\xcb\x81\x40\x6b\xc0\x1b\x93\xe7\xe3\x37\x94\xb9\x00\xf2\x1c\x16\xbb\x71\x72\xcc\x1a\x30\xd0\x6e\xca\xcc\x22\xe2\x17\x81\x7d\x1f\x3e\xfd\x62\xbd\x42\x01\x7c\x77\x36\xb5\xf8\x87\x4a\x0d\x05\xd7\x6e\xb9\xfe\x94\x6d\xb9\xb0\x8d\x4a\x88\xae\x62\xe6\x00\xb4\xed\x36\x7b\x98\x39\x5a\x04\x28\x07\x1c\x75\xe7\x65\x8b\x29\xf8\x7e\xa6\x7e\xf2\xe9\xba\x74\x40\xeb\x9e\x1f\xb2\xcf\x97\xf1\xd5\x67\xc6\x38\x38\xc6\x0a\x30\xf8\xce\xec\x57\x9a\x21\x45\x40\xe7\x75\x95\xdb\xa8\x9c\xa4\x00\x4b\x3b\x25\x7b\x4c\xf6\x56\x13\xf8\x91\xda\xaa\x25\xb8\xf9\x19\x60\xb3\x6e\xb2\xda\x4d\xd5\x4c\x40\xe3\x0c\x95\x4b\x96\x16\x69\x14\xdc\x2c\x28\x49\x5f\x2f\x5b\x02\xa8\xf9\x62\xc9\x3a\xa2\x27\x14\x70\xc3\x0e\x85\x57\x4f\x6f\x26\x02\x3e\xf0\x17\x95\x24\xea\xc2\x00\x2f\x24\x76\xcd\x47\x37\x06\x01\xda\xf2\x04\x3b\x9e\x0f\xa7\x02\xac\xd8\x29\x39\x7d\xec\xcc\x14\x81\x8d\x8b\xe2\xca\x32\xa2\x91\x80\x76\x05\xec\xfc\x7f\x41\xad\xf5\x73\xcd\xad\x3f\xa1\x80\xe7\xf0\x4f\xfe\x3b\x8f\x4c\xc0\x50\xe5\xf9\x49\x71\x99\x2b\x80\x6d\xfc\x7c\x83\xd6\x93\xe6\x80\x01\xae\x5a\xfa\x8e\x3a\x96\x80\x8d\x82\x5c\xd5\xf7\x54\xad\x00\x85\x6c\x86\xf7\xc4\xed\xbd\x46\x41\x0e\xfd\x81\x88\xf6\xb2\x7e\x40\x03\xe5\x5e\x13\xf5\xd7\xa5\x80\xd4\x4b\x2a\xc1\x9f\xfb\x47\x09\x7c\x14\x3a\xbe\xa3\x3c\x1c\x00\x17\x59\x1c\xfc\x28\x91\x55\x80\x34\xd9\x0b\x74\x7f\x11\xf8\xe3\x45\x85\x29\x6f\x15\x69\xd4\xb4\x5b\x58\xfe\x2f\x78\x93\x36\x32\xf2\xdb\x9f\x06\x7c\xbb\xff\x89\xc9\x63\xeb\xd3\x80\x86\x9d\xfb\x1c\x28\x56\xa7\x01\xf7\x0a\xbe\x38\xda\xb2\xff\x1e\x09\x3b\x1e\xcf\x3d\xda\xfe\xee\x34\x09\x8f\xa2\xa7\x25\x3c\x3a\xf7\x00\xda\xcd\xb9\x75\x35\xe5\x49\x00\x5e\x49\x3b\xff\xad\x77\x4e\x1a\xd0\xee\xa0\xfe\xb8\xef\x60\x5c\x05\x4e\x27\xb9\xdb\x1c\x3c\xc0\x02\xff\x03\xf3\xcf\x8d\x5e\x06\x27\x6b\x02\x6a\xd0\x06\x9f\x75\x78\xad\x04\x78\xf1\x25\x7f\xa8\x95\x93\x3d\x05\xaf\xf7\x57\x7c\xfa\x2e\xeb\x08\xf8\x6a\x5b\x73\x95\xad\xc0\x2f\x02\xa3\x4a\x24\xcb\x3c\x0f\x7c\x26\xf0\xab\xb3\x99\xc6\x40\x9e\x20\xac\xe0\xc0\x9a\xd0\xfa\x23\xef\x37\x01\x6a\x05\x3e\x5c\x57\x14\x52\x05\x98\x1a\x71\x41\x63\xbf\x6c\x02\xa0\x39\xaf\xd5\x98\x55\x8c\x18\x60\x48\xab\x9a\x57\x95\x50\x1e\x60\x55\xef\xe3\xf6\xca\x65\x64\x73\x78\xf8\xb8\xc7\xbe\xa6\xe0\x18\xbb\xc9\x8d\xbf\xa3\x77\x99\x4f\x98\xe2\x6f\x18\xff\x0b\xd3\xf2\x25\x69\x47\x7a\x77\x02\xc2\x0f\xff\x5e\x6e\xce\x7b\x80\xef\x85\xa7\x3f\xd1\x08\x1d\x07\x74\xe0\x5f\x54\xfe\x29\x68\x4d\x59\x29\xff\x81\x57\xf3\xc0\xaf\x17\x09\x62\x80\x61\xc4\x99\x76\xd9\x3f\x99\x80\xfb\xeb\x3c\x46\x75\xc6\x7c\x01\xf5\xb9\xd3\xf2\xaa\xa4\xbd\x49\xe5\x03\xb3\x8a\xf5\x81\xfb\x62\x24\x04\x8d\x5d\xae\x9f\x4e\xcb\x06\x64\xae\x9c\xb3\x59\x77\x3b\x18\x30\x4c\x4f\xbe\xf0\x38\xdf\x1b\x0a\x86\xf3\x3e\xed\x9f\x5a\x1e\x7d\xf7\x8a\x33\x0b\x06\x73\xc0\xc2\x96\x6c\x06\x95\xec\x1c\x40\xa9\x53\x86\xc1\x0e\x94\xe3\xff\x13\xfb\x66\xbe\xd0\xfe\x7d\x8a\xff\xc0\x29\xfa\x7a\xb3\xe9\xeb\x0c\x40\xba\x8b\x6b\xed\x1f\xb4\x64\x00\xee\x9e\xec\x55\xfc\x0b\x7d\x93\x42\x8b\x70\x47\x07\x40\xe6\x8d\x7e\xa9\x75\x07\x1d\x49\xc8\x76\x16\x33\xad\x17\x73\x01\x6c\x1c\x77\x3f\xa4\xce\x7f\x1a\x30\x51\xc1\x28\x4b\x34\x24\x0f\xd0\x68\xa6\x42\x5a\x6c\x19\x83\x46\x67\x1c\x47\xd6\xe6\x01\x96\xa8\xb4\x6b\xfd\x2d\xac\x42\x07\xde\xb3\xfb\x39\x00\x4a\x9a\xb3\x8b\xa9\x0f\x1d\x22\x95\xff\x70\x24\xe8\xa2\x17\x9d\xb3\x22\xa0\x18\x6d\xca\x41\xf3\xb5\x82\x80\x66\x82\x47\xf6\x59\x46\xed\x04\x54\xb7\x3e\x2b\x9e\x63\xbe\x1e\xd0\x81\x90\x74\x14\x3d\x57\x05\x38\xf6\xe1\x73\x9b\x38\x83\x0a\xe0\xf3\x1b\x12\xd3\x83\x6b\xfc\x28\x48\xfb\xb8\x7c\xa0\x6d\xf5\x03\x40\x50\xc8\x1e\x48\x62\x79\x00\x38\xe7\xf4\xd4\xfa\x54\x5f\x3b\x81\x9f\x98\xb9\x7f\x51\xbc\x2e\x01\xee\x63\x88\xad\xb4\x5f\x90\x06\x0c\xa3\x36\x19\xb4\x8e\x33\x01\x1c\x4f\xce\xba\x23\x5a\xa6\x0c\xa8\x58\x2a\x38\xe1\xcd\x54\x49\xc1\xfe\x26\xd3\xe9\xeb\x31\x5c\x80\x61\x4b\xec\x14\xfa\x1b\xb7\x48\x48\xe0\x8f\x18\x5a\x73\x26\x08\xd0\x60\xd7\xdd\x7d\x81\x01\x3b\x01\x4f\x3c\x4c\xab\x48\x1e\xdc\x05\x68\x29\xac\xff\xfa\xfc\x24\x3d\xe0\xf3\xaf\xfc\x77\xee\x05\xfd\x22\xf0\xf8\x06\x53\x25\x51\xde\x31\x02\x33\x37\xfc\xa6\x13\xb2\x92\x01\x3c\x54\xe6\x6a\x12\xe3\xba\x0d\x30\xc5\x39\x57\x66\x26\xc9\xe7\x5f\x68\xb7\x29\x5d\x75\xe9\x7c\xe8\xbf\xd0\x52\xd9\x9a\x65\x69\x75\x81\x84\x3d\x61\xad\xbc\xb2\x4c\xd5\x80\x25\xd7\xae\x36\xc1\xba\x6a\x40\x9f\xa3\x5e\x7e\x77\x26\xad\x01\x87\xda\x7d\x29\x8a\x3d\x25\x80\x07\x94\xef\x9c\x7d\x29\x7d\x1f\x90\xfe\xa9\x5d\xa2\x70\xb1\x13\x60\x46\x9f\xe9\x99\xcb\xe2\x86\x80\x5c\xb3\x0d\x5f\x9e\x5d\x57\x07\x9c\x1f\xa3\x68\xaa\x7c\xbe\x0e\x28\xfb\x2b\x52\xa4\xb3\xdf\x16\x50\x87\xca\x47\xd8\xfd\xd4\x35\x52\xf9\x0f\x9a\xf9\xdb\x99\xfb\x96\x5f\x00\xad\x1c\x67\xbf\xb0\x94\xda\x00\x16\x73\x7c\x50\x0c\x39\x6c\x03\x68\xd1\xbd\x4b\xa7\xa6\xc5\x1c\x50\x59\xf9\x81\x42\x0f\x43\x18\x09\xc9\x17\x33\x59\x1f\xff\xf4\x00\x1c\xf0\x9e\xa5\x69\x19\x68\x23\xf0\x5d\x0c\xef\xaf\x5f\x9d\x07\x01\x35\x77\x6f\x2a\xb7\x9f\xd0\x06\x34\x17\x10\xe0\x4e\xf1\xe6\x02\xfc\xfe\x8c\x29\xe9\x66\x7f\x32\x05\x65\x2e\x37\x1f\xd5\x1f\x14\x00\x8c\x74\x90\xfe\xb0\xbf\xd6\x85\x04\xe3\xf1\x51\xa2\xc9\xd3\x12\xb0\xef\x2d\x57\x97\xf8\x22\x15\xe0\x48\xae\xd5\x87\x38\x86\x2d\x80\xab\xed\x55\xcd\xd7\x86\xc8\x00\x16\x5e\x48\x6b\x7c\xbc\x63\x1d\xa0\x59\xec\xef\x20\xbf\xe9\x1a\x12\x28\xb1\xad\x23\x6d\xdf\x72\x29\xff\x18\xb5\xf4\xb4\x45\x3a\x45\x2f\xef\x92\x81\x6f\xae\x9e\xb8\xb1\x06\x90\xba\xe1\x64\xf7\x61\x97\x7d\x24\x2c\xf9\x6c\x69\xed\x30\x93\x03\xf4\x97\xe4\x38\xcb\x71\x59\x08\xf0\xf9\xa6\x0d\xef\x6f\xce\xfd\x26\x50\x45\xd7\xca\xbb\xf0\x77\x16\xa0\xc1\x48\x4c\x94\xf3\xc5\x0c\x58\x29\x8e\xf7\x12\x85\x4a\x97\x17\xcf\xee\xef\xab\xbb\xd7\xf7\xaa\x03\x8e\xa6\x8d\x7b\x2a\x78\xec\x05\x3c\xb4\x20\xb5\x4a\xe3\xe8\x06\xc0\xa4\xb6\x3f\xf6\x71\x31\x7a\x80\xfb\x7b\x59\x6b\x22\x94\x39\x48\x88\x60\x4a\x35\x57\xba\x66\x4f\xc2\x06\xc1\xb0\x7d\x9b\xe8\x2c\x49\x38\x47\x35\x2e\x78\xde\x71\x0d\x09\x21\x86\x1f\xfa\xde\x07\x53\x01\x96\x2e\x45\x05\x05\xd1\x6e\x07\x84\xac\x8f\xbb\x3e\xfd\xba\x03\x98\xf4\xec\xd5\xfe\x33\xf1\x1f\x2b\xf0\xba\xad\x61\x33\xb7\xba\x13\x60\x41\xd4\x0f\x9d\xfe\xe3\x8e\x24\x4c\x78\xd8\x15\x74\xee\x48\x02\xcc\x7c\x37\xec\xff\xe7\x44\x24\xa9\x04\xb3\x4e\x0c\xa7\xd8\x07\x00\x26\x60\x46\xea\x99\x7d\x22\x80\xd4\x27\xa9\xa4\xcc\xae\xb2\x03\x4e\x29\x74\xf2\x59\xfd\xa8\x01\xfc\x73\xb2\x2c\xe7\xa9\xb1\x00\xe0\x9b\x09\x9f\x8c\xd1\x1d\x9e\x80\x23\xa1\x25\x71\x6f\xf9\xd2\x48\xe8\xa2\x3b\xf8\xfa\xb2\xda\x2b\xc0\x4f\x63\x02\x8c\x6d\xcb\xa5\xd2\x7c\x58\x3c\x9d\xdb\x98\x84\xe8\x52\x2d\x0b\x3b\x37\x4b\xca\x4a\xc1\x57\xcc\xba\xfb\xf5\xd6\x02\xee\xfd\x62\xff\x61\xef\x46\x00\x54\x70\xe6\x64\x58\x1c\x73\x04\x6c\x3d\x5c\x35\xc6\xc9\x95\x0a\xe8\xce\xdb\x97\xc1\x2f\x9c\x0a\xe8\x96\x68\x6a\xbb\xf6\x87\x24\xa0\x99\xc6\xd7\x5f\x6b\xbf\x3c\x01\xfc\x26\xfb\x68\xe0\xcb\x36\x63\x40\x6e\x8f\xdf\xf1\x1b\x39\x00\xd0\x84\xcd\x38\xf4\x6f\xf9\x0f\x23\xd5\xc6\x79\x1f\x7d\x98\x01\x39\x94\x8d\x4b\x2f\x05\x2b\x00\xb6\xc6\xb1\x4d\x47\x8c\xff\x26\x90\x57\x6e\xaf\x32\xeb\xce\x4c\xc0\xd7\xf7\xb6\xc5\x9d\xab\xca\xa4\x20\x87\x53\x9b\x6f\x0f\x07\x17\xe0\x7c\x25\x97\xba\x65\x7a\x2e\x60\x74\x98\x61\x4f\xe9\x83\x5c\xc0\x64\xa7\x3b\x65\xde\x5f\x3d\x01\xd7\xca\x4d\x3f\xa5\x8c\x7a\x92\xca\xe1\x03\x57\xcc\x5e\x36\x1b\x90\x90\x64\xfe\xed\xba\xad\xa8\x03\x09\x7d\xed\x13\x13\x5b\x08\x79\xc0\x1b\x6a\xa1\x7b\xe4\x9e\x17\x01\xf2\x96\xe6\xb5\x25\xf7\x16\x52\x90\x66\x51\xe2\x41\xf9\xf2\x3a\x26\x78\xdb\x43\xe7\xe6\x26\x4f\xc0\xa4\x2a\x2d\x63\x9e\xba\x23\xb0\x32\xa2\x18\x7e\x4e\xed\x28\x8b\x22\xa1\xbd\x68\xe6\x81\x9b\xaf\x39\x09\x0c\xeb\xb5\x76\x9a\x58\xa5\x90\x50\xe1\xa8\xfe\x38\x63\x8f\xf5\xbf\x20\xfb\xf9\x6b\xed\xe5\xeb\x4a\x24\xbc\xf4\x63\xa5\x0d\xa9\x28\x03\x2c\xd5\xf8\xfa\xf5\x2f\x42\xdb\x36\x6f\x0d\x5d\xc6\xdb\xbb\x05\x5f\xec\x5e\x15\x03\x26\x8a\x7e\xda\x74\x62\x19\xab\x2f\x9d\xdd\xc4\x2e\xf3\x8a\xb2\x32\xfa\x0f\x57\x3e\x7f\x81\x1f\x1d\x0e\x80\x86\x81\xc1\x06\x5f\x79\xf7\x92\xca\x7f\xb8\x7b\x66\x7e\xea\xd4\x77\x4b\xc0\x9f\x8f\xf6\x19\x28\x07\xdc\x05\x1c\x3b\xd5\xec\xd4\xb2\x5a\x0a\x50\x64\xf4\x45\x11\x5b\xbd\x3e\xe0\xf1\x0b\x1f\x99\x7e\xf8\x2f\x12\xb8\xda\xd2\x60\xf8\x78\xc4\x26\x58\x41\x3d\xed\xce\x9d\x4c\x0c\x3f\x08\xb4\x4a\x8a\xae\x8c\x2b\xdd\x02\x2b\xe0\x33\x56\x93\x79\xff\x82\x02\x98\x3b\xfe\x27\x77\x52\xc7\x06\x50\xf1\xf4\xad\xd1\x2f\x4e\x59\x80\xa3\x56\x31\xf0\x7a\x69\x27\x60\x1c\x57\xf9\x1f\x38\x20\x48\xc2\xf9\x50\x26\x17\xa3\xce\x68\xc0\xed\x99\x46\xd1\x9e\x1b\x77\x00\xe6\x2d\xa4\xd9\x8f\xaf\xbf\x48\xc1\x8b\x0f\x0a\x2f\x8a\xd1\xae\x02\xd4\xbb\xbc\xb6\x82\xb1\xe5\x13\x81\x3f\x0f\xdc\x88\xbb\x78\xa3\x15\xe6\x0f\x59\x3c\x92\xda\x9a\x0c\x68\xb3\x5a\x43\x6b\x70\x2e\x9e\x82\x8e\xe3\x7a\xb4\x5d\xe7\xef\x01\x72\xfc\x92\x63\x09\xdd\xb7\xfc\x9d\xdb\x59\x15\xbd\x2b\xf0\x22\x20\xd7\xcf\x77\x5d\xe7\x92\xdd\x01\x5f\x0f\xde\x37\x71\x65\x10\x02\x0c\xdf\xc1\xae\xec\xc5\x62\x0d\x38\xa9\x3e\xec\x1b\x56\x8c\x04\x1e\xde\x73\xa0\x9d\x6b\x38\x1d\x56\x20\x7f\x6a\x56\xe8\x7d\x00\xb9\x7c\xf6\xe7\xe9\x13\x32\x74\x04\xcc\xa8\xd8\x91\x92\xf4\xc1\x11\x70\xaf\xd9\x26\x1a\xbe\x08\x72\x99\x74\x5b\xfb\xf2\x7b\x0f\xb9\x14\x33\x10\x5e\xbc\x33\xc7\x01\x95\x89\x8d\x3b\xb4\x0f\x3d\x05\xb4\x13\x1f\x0c\xd8\x1b\x78\x10\x70\xf0\xc9\xdb\x80\xa0\x9d\x75\x15\x18\xb8\x2e\x4f\xaf\x46\xc8\x0b\x56\x90\x3d\x43\x13\x77\xef\xe5\x69\xc0\x9c\xfb\xec\x6f\x1f\x0e\x3d\x01\xb4\x74\xaa\xd3\x8f\x3f\x55\x48\xc1\x77\xe3\xab\x2f\x97\x2f\xea\x03\x9e\xb8\x9e\xc8\x0d\x7b\x14\x00\xd7\xdc\xb8\x28\x34\xf4\xc0\x10\x30\xbe\x98\xfb\x99\x0e\xb7\x03\x05\xf7\xab\x2b\x46\x9d\x1e\x2a\x26\x61\xf0\xee\xcb\x24\xfe\x37\x76\x80\xbb\xcb\xba\xb1\xbf\xdb\x01\x10\xbb\x63\x47\x3d\x45\x1e\x03\xc6\x6e\xfb\x14\x31\xfe\xee\x18\x60\xe1\x8f\xa7\xd7\xef\xbe\xb1\x00\x5c\xd7\xd9\x1a\xdd\x7e\x2b\x81\x34\x32\x4c\xb3\xb8\xfd\x9c\xdd\x1c\x90\xfa\xfd\xbd\x2e\x47\xf3\x27\x80\x83\x7f\x02\x74\xff\x7c\x4f\x05\x9c\x7b\xa1\xb9\x61\xd5\xa7\x0a\xc0\x1d\x3e\xa3\xfb\x84\xb8\x8f\x01\xee\x96\xf4\xcd\x71\x56\x0d\x03\x6c\xa9\xcb\xf4\x75\xf7\xf6\x03\x7c\x11\x67\xb1\x05\x04\xb7\x00\x16\xd5\x84\x6b\x4c\xd2\x5c\x01\x3c\x17\xfb\xff\xf1\xf5\xa7\xd1\x54\xbe\xff\xff\xff\x5f\x48\x19\x2a\x42\x23\xc9\x5c\xc9\x58\xd2\xa0\xf3\x49\x51\x69\x34\x45\x83\x22\x2a\x2a\x25\x54\x94\x06\x44\x92\x88\xcc\x9a\x90\xb1\xc1\x98\x99\xbd\x4d\x15\x19\x52\x49\x21\x22\x1a\x68\x12\xc5\xc3\x50\xfd\x97\xfe\xeb\xfb\xb6\x3f\xeb\xd7\x7a\x5d\x72\x5b\xf7\xe7\x69\xad\xbd\xf6\xde\xe7\xb1\x8f\xe3\xd2\x59\xf8\x68\xad\xd7\x4d\x42\xa7\xed\xa1\x8d\x52\x31\x69\x84\x5c\x1f\xe1\xe1\x5a\xa9\x54\x42\xa6\xec\xf6\xa4\x20\x0d\x01\x82\xa3\xd4\xfd\xbc\xb0\x5d\x45\x84\x9c\xe2\x96\xf0\xf7\xa1\x06\x04\xe3\xf8\xb1\x3c\xe3\x1e\xee\x26\x84\x6a\xf4\xa7\xdb\xd9\x7b\x10\x5c\xec\x3f\x9a\x6f\xfe\x1c\x4f\x38\x17\x17\xc7\xfb\x2e\xc7\x9c\xf0\xe2\xa0\x66\x1e\xff\x9e\x2a\x82\x6e\x7d\xbf\xd9\x69\x9f\x22\x1a\x98\x7b\xec\xb8\x98\xc7\x7d\x82\xda\xc6\x55\x73\xaa\x8b\x1e\x12\xf2\x82\x4f\x2b\xf0\xd8\xf8\x10\xe2\xae\xab\xb9\xf1\x46\x45\x11\xee\xcf\x37\x52\x99\xb8\x79\xe4\xc8\xdf\x69\xb0\x5f\x75\x7a\x30\x41\xa6\xd5\x96\x4b\x74\xfa\x45\xc2\x96\xe9\xaa\x8e\x7e\x5a\xa5\x6c\x38\xbe\xbc\x9e\x90\x35\xa9\x94\xe0\xf0\xd1\x75\xe9\x79\xbf\x1c\xc2\xb1\x0e\xae\x7b\x5f\xbe\x1e\x20\x98\x38\x84\xb6\x24\xee\xb7\x60\x43\x21\x2f\x6c\x7a\xe8\xda\x3d\x84\x0f\x86\x56\xbb\xd6\xa4\x46\x13\x1e\x6d\x9a\xc8\x2f\x21\xb2\x97\x0d\xf1\x93\x47\x36\xd4\xdc\x7b\x43\xc8\xce\xbe\xf1\xd0\x49\xfd\x39\xe1\xfe\xa7\xed\x59\xf3\xb5\x1e\x11\x3a\xb2\xfc\x6e\xe8\xce\x0a\x23\x90\xdf\xef\xab\x31\x4d\xdb\x09\x79\x83\x59\xcb\xd8\x75\x71\x6c\x78\x0d\xec\x78\x1c\xbf\xc6\x9c\xc0\x7d\x74\x87\x8c\x79\xee\x76\x82\x96\xcd\x4c\x9e\x4d\xfc\xc5\x04\xc1\xcc\xf4\x2b\xe1\x93\xf3\x08\x3e\x8f\x9e\x5f\x5f\x19\x94\x4e\x48\xf5\x9e\x3a\xf1\xfc\x0b\x67\x36\x34\x56\x0b\x3d\xbd\xad\xd8\xc7\xe0\x81\xca\x53\xb1\xa5\x4b\x05\x08\xa1\x55\x77\x9f\xdd\x35\x6b\x64\xe0\xbf\xb0\x25\x29\x5b\x65\x2a\x21\x94\x7b\x96\xd7\xe7\xec\x2b\x1c\xf0\x2f\x92\x59\x74\x20\xd7\x94\x30\xb5\x30\x45\x3c\xee\xe1\x6f\x06\x76\xf2\xb7\x5b\x04\xad\x04\x08\xc5\x73\xce\xcf\xe1\xf9\x16\xcf\xc6\x66\x87\x40\x99\xc5\x49\xc2\x84\x27\x5e\x0b\xef\x5f\xfd\xfd\x91\xf0\xfc\xf4\xbc\xb2\x9e\x98\x14\x42\x5d\xc5\x61\x6d\xc3\xec\x2a\xc2\x9a\x07\xdc\xd4\x26\x32\x8d\x90\xf7\xf5\x33\x33\x7e\x61\x11\x21\xe4\x89\xfa\xcf\xc7\xe2\x19\x84\x77\x4f\x54\xd7\x5a\xdc\x8a\x25\x14\xa7\xef\x68\xf9\xa3\xbd\x95\x03\xc2\x2f\x24\x74\xea\x2c\x65\x08\xa7\xec\x99\x2e\xbd\xd5\x99\x84\xb5\x0f\xb7\xcf\xcb\xba\x10\x40\x38\x35\xf1\x48\x79\xff\xac\xb1\x04\xd9\xf0\xd9\x93\x5d\x67\xc8\x12\x96\x6e\x9f\x79\xab\xe7\xec\x0c\xc2\x8d\xeb\xb1\xdf\x05\xcf\xfc\x60\x50\x94\x18\xc3\x6f\xf6\x5b\x82\x46\x61\xfc\x6d\xfc\xa9\xd9\x7e\xdf\x19\xc8\xbe\x49\xd1\x0e\xaa\x11\x25\x78\x4e\x5a\xb3\x33\xe7\xf0\x26\xc2\x41\x61\x87\xa9\x8c\xcd\x45\x42\xf2\x97\xf6\x9b\xef\xc6\xab\x11\xcc\x3b\xf3\xd7\xf7\x5d\x5f\x46\x28\xd4\x3e\x3a\x94\xf1\x4e\x88\x30\x8d\xac\xf9\xdc\x03\xdf\x32\xe0\xdf\x74\xce\xd3\xea\xb8\x34\x8d\xa2\xb0\x6c\xe3\xf9\xb3\x61\xfc\x84\x09\x3b\x25\x16\xf3\x75\xab\x10\x8a\x4e\xbb\x0c\xf8\x75\xc6\x10\xbc\xb9\x5f\x4e\x1f\x57\xfa\x90\x70\xdd\x71\x8a\xcb\xf5\xa6\xf3\x84\xb0\x8a\xca\x39\x43\x7e\xfb\x39\xf0\x49\x32\xb9\xb8\x4d\xee\x2c\x07\x8e\x17\x5f\x2a\x7e\xdd\x7b\x98\x90\x30\x60\x99\xae\x9a\x9f\x46\xc8\x31\x5b\x78\xba\xd1\x27\x87\x8d\x29\xaf\x05\x4c\xff\x96\xc7\xb5\x77\x52\xdd\x85\xdd\x39\x50\xb3\xf1\xf5\xa9\xa2\xed\x4f\x59\x30\x31\x7b\x20\xf1\xe3\xd4\x66\x82\x99\xc4\xfe\x03\x0a\xcd\x5d\x0c\xc6\x1e\x29\x24\xad\x29\x32\xf4\x5f\x30\xea\xd7\x8d\x4c\x72\xfd\xc8\x40\x2e\xc9\x6a\x66\xbb\x92\x06\xc1\x3c\x67\xe6\x74\xe3\xfa\x35\x84\x90\xac\xcb\xa7\x3a\x26\xc8\x73\xc0\x62\xb3\xb1\xc8\x3d\xe7\x0e\x06\xe7\xfd\x62\x85\x43\x5a\x45\x08\x31\xfb\xda\x33\x37\x0e\x26\xb1\x90\x64\x3a\xb7\xfb\x98\xa4\x1b\x8d\xe2\x59\x16\x4b\x6e\xd2\x36\x67\x0e\x1c\x4f\x39\x3c\x71\xfb\xc8\xcd\x7d\x2b\x4e\xa7\xa1\xd1\x47\x9d\xb0\x61\xfe\x58\x41\xfb\xbb\x1b\x08\xd1\xda\x62\x7d\x92\x82\xda\xff\x09\xaf\xc6\x68\x32\xbe\xd0\xc8\x42\xdc\xbe\x9d\x1f\x1e\xf3\x32\x04\xed\x5f\x91\x17\xee\xfa\x1f\x25\xf4\x89\x07\xf3\xff\x68\xb9\x4a\xd8\xb1\xd0\xd5\xc4\x7c\xd9\x13\xf6\xe8\xe8\x1b\x9f\x86\x5b\x4f\x52\x1a\x0b\xa5\xa6\xce\x09\x7f\xea\x8c\x08\x96\x21\x65\xe5\xa6\x32\x60\x20\x39\x27\xb7\x58\x6b\xb9\x0e\x8d\x62\x5b\x14\xab\xa1\x66\x7e\x08\xe1\xc5\x50\x7b\xe3\x87\x39\x21\x84\x7b\xed\xfe\x3f\x76\x9d\x5c\x46\xd0\x9d\x13\xcb\x77\xd2\xf0\x07\x83\x39\xbf\xde\xd7\x4d\xba\x3e\x87\xf0\xad\x75\xf9\x26\xdf\x65\x22\x84\xeb\x07\x0c\x8a\x3b\x6d\x3d\x08\xb7\x9b\xff\xf8\x1f\x65\x59\x13\x04\x15\xc2\x4d\x0f\x65\xdb\x10\x4c\xcb\xde\x33\x6b\x6f\x1a\x11\x8e\x7e\x5d\x72\x75\xc3\x71\x4b\x42\x51\x81\xc1\xda\x77\x46\x43\x0c\x6e\xcf\x75\xf5\x61\x3d\x1c\x43\xa3\xa0\x67\x9d\x1d\x69\x2b\x3f\x30\x50\x4a\x97\x99\xaf\xc5\x1b\x40\x60\xaf\xdd\xd6\xe5\x7c\x4f\x8c\xe0\xf3\x99\xe7\xa3\xd6\x9e\x7b\x84\x22\x5f\x09\xe9\x55\xf5\xd1\x84\x8b\x33\xd7\x1a\xfc\xc5\xe6\x95\x73\x23\xf7\x1d\x69\x60\xa3\xad\x71\xc5\x94\x24\x9b\x20\x82\xa6\xee\x97\x6b\xd9\xb2\x53\x09\x7d\x56\x8b\xf3\x9a\xef\x8a\x71\x94\xb3\x9e\xf7\x1c\x4b\x5a\xc2\x08\x8f\x2b\xf5\x0e\x94\x09\x8b\x10\x72\xb9\x16\xa6\x9f\x17\xee\x62\x20\x51\xf8\xe2\xbd\x9b\xbc\x08\x8d\xe2\xa5\x8c\xe2\x39\xeb\xee\x00\x16\x9e\x0c\x1e\xd4\x4b\xdc\x27\x4c\xd8\x22\x93\x59\x74\xc1\x6b\x0f\x07\xde\xb5\x0b\xee\x78\x90\xfe\x8c\x19\xfd\x4c\xf7\xcd\x50\x14\x31\x38\xb8\x89\x90\x79\x74\x20\x67\x61\x86\x29\x47\x79\xcb\xd6\xa9\xdf\x22\xf3\x93\xc1\x55\x87\x6d\x59\xe2\x57\x9e\x32\xf0\x29\x9a\xfd\xee\x72\xfb\x52\xfa\x07\xc4\xf9\xee\x37\xc8\x7d\x5b\x42\x48\x8f\xf6\x9c\x16\x73\x47\x88\x70\x76\xf2\xd3\xe3\xcb\x54\x8c\x09\x32\x97\xa5\x93\xec\xdb\x19\x42\xe4\xd1\xad\x1e\x4b\x36\x67\x11\xb2\x57\xfd\xd6\xf6\x10\x49\x24\xc4\x4e\x36\x7a\xdc\x67\xe9\x4a\x10\x4c\xb0\xe7\x55\x74\x3f\x4e\x90\x3e\x2c\x71\x71\xe5\x1e\x4b\x82\x94\xe8\x62\x83\xbe\x21\x1b\xc2\xe4\x9c\xda\x95\xad\xba\x01\x84\x0d\xe3\xab\x5e\x08\x5c\x15\x21\x34\xde\x5a\x54\xd7\x14\x3d\x81\x50\x34\x8d\xbb\x40\x39\x6c\xe4\xc5\x5f\x0a\x64\xf7\x6e\x57\x25\x1c\x99\x2d\xce\x0a\x9e\x2d\x45\x28\xf9\x56\x22\xdf\x78\xc4\x80\xf0\xbc\x5d\x6b\x2f\x7f\x58\x39\xc1\xfd\x93\xc7\xe1\xce\x2a\x77\x42\xef\x64\x3f\x79\xf1\x49\x6e\x04\xff\x97\xcf\xd8\x2c\x49\x77\x02\xdf\x15\x13\x9f\xc1\x2f\xfb\x09\xbb\x9e\xb7\x9a\x55\x6c\x3c\x4f\xf8\x3a\x6f\x71\xc9\xa6\x9c\x85\x84\xda\xf1\x27\x82\x8e\x9f\x59\x45\x30\x0e\x3d\xbd\xf0\x00\x1d\x20\x5c\xc2\x9e\xa9\x2e\x41\xb6\x04\xc1\xe3\x92\x4e\x82\xf2\xbc\x1c\x78\xa6\xae\x6a\x6f\xdb\x31\x81\xd0\xcd\x3a\xd6\x1e\xcb\xd2\x21\x64\x8b\x1b\x7c\xea\xe4\x2d\x22\x44\x6b\xbc\x09\x7e\xbc\xef\x23\x03\x4f\x26\xf1\x70\xe2\x5b\x4d\x1a\x85\xc2\x2c\xed\x2d\xeb\x9a\x9e\x31\xa3\x50\x93\x11\xca\xd1\x8c\x13\xa6\x51\xe4\xe8\x0e\xc6\xf5\x7a\x2d\x25\x3c\x6c\x61\xf8\x3c\xbc\xf4\x39\x70\xec\xc9\xf9\xba\xc7\x0a\x7f\x18\xfc\x52\xfd\x7d\x56\x2f\x8c\x9b\xa3\x88\x29\xb1\xb2\x9f\x56\x65\x30\x38\xd8\xe0\x55\x25\x15\xc3\x43\x18\x3c\x79\xcb\xd4\x4f\xdd\x88\x03\xf3\x1e\x4e\x3c\x78\xa0\xba\x83\x81\x7d\x72\xdb\x93\x65\xe9\xcf\x19\xa4\xcb\x92\x8d\xc9\x19\x7d\x42\xdb\xee\xda\x74\xa1\xa1\x2b\x84\x63\xf2\xb5\xfc\x86\xb7\xc7\x10\x12\x54\xa2\xcd\x78\x73\xcd\x38\xf0\xbf\x7f\x3f\x79\x20\x6c\xce\xdf\x6f\xd4\xa7\xcc\xcb\xcf\xd5\x04\xb4\x39\x10\x1a\x1a\x61\xd2\xb7\xba\x91\x05\x0d\xad\xa1\x05\x33\xf2\xc6\x13\xce\x24\x4f\x61\xdd\xb7\x64\x38\x20\x23\xdc\xa0\xb6\x26\x3f\x94\x50\xbd\x35\xe8\x74\x47\x48\x2f\x7b\xb4\x74\xf6\x8c\x9b\x9e\xb1\x24\x93\x85\x80\x5f\x5f\x5f\x44\x4e\xc9\x20\x48\x0a\xec\x34\x19\x5c\xa3\x46\xf8\xba\x7c\xe9\x8e\x50\x3d\x1d\x0e\xc4\x1c\x9c\xcb\x63\xed\xd3\xc5\x8c\x22\xd9\x7d\xdd\x0d\xfe\xde\x89\x84\x9f\x6a\x1f\x0d\xd4\x8a\xb4\xfe\x05\xf7\xed\x45\xfa\x33\x06\x1c\xff\x85\xf6\xc5\xdb\x7d\xc7\x3e\x74\x24\xf8\x8d\x0d\x3c\xf2\x4c\x13\x0c\xbc\xb7\xd8\xca\xcf\xeb\x5b\x41\xff\x80\x71\xb7\x77\xdb\x4f\xc5\x36\x16\x04\x2a\x5c\x37\x85\xac\xeb\x67\x70\xca\x66\xbc\x76\x5b\x54\x07\x03\x9f\x86\x93\xd1\xe3\x6c\xcd\x09\x2e\xb9\xce\x0e\xfb\x66\xa6\x11\x7a\x06\xb6\x3f\x14\x90\x4e\x67\xc3\xa9\xd7\x46\x78\xb9\x74\x1a\x81\x2d\x99\xf4\x4e\x42\x3e\x93\x70\xe4\xc8\x74\x01\xb6\x15\x9b\x8d\xfe\xfe\xac\xe1\x13\xde\xd9\x34\xb0\x2c\x5b\x27\xe4\x53\x0d\x1b\xe1\x3b\xae\x3c\xd5\x79\x9f\x43\x98\xf3\xb3\xeb\x6c\xe0\xb5\xbb\x04\x13\x8d\x3a\xcf\x05\x93\x54\x08\x90\x5b\xf0\x2e\x89\xc5\x10\x42\x3b\xce\xca\xca\xc6\x08\x11\x12\xf2\x6e\xf7\x5b\x36\x1d\xe6\x80\x67\xc4\x6f\x61\x3e\x2c\x26\x84\x1c\xa7\xf9\x92\x3e\x2b\x08\x41\xf6\xf7\x03\xfa\x6b\xf4\x38\xe0\x7e\xd0\x6e\x5e\x91\x57\x3f\x83\xde\xc3\x2a\x55\x25\x0b\x97\x10\x1e\x88\x9e\x83\xc0\xae\x64\x42\xdd\x18\xe3\x20\x15\x8b\x64\xc2\xe0\xec\x88\x8f\x1b\x4b\x73\x09\x49\x03\x97\x2f\x29\x3b\x1c\x21\x08\xf2\xf1\x4e\x94\x53\x74\x60\x63\xfa\x4f\xc5\xbb\xcf\x14\x0f\x73\x8c\xea\xaa\xda\x79\x74\x63\x0e\x8e\x62\xe0\x9d\x97\xce\xf5\x46\xbe\xff\xfd\xc5\xe1\xeb\xd2\x1b\xbe\xc8\x35\xb1\xb0\x59\x91\x47\x7c\x41\x80\x10\xc1\xc7\x84\xd7\x5e\xc6\xb2\x98\xb0\x98\x57\xbf\x46\x2e\x39\x91\x50\xea\x37\xe1\xe0\xfa\xe9\xae\x84\x37\xe1\x7e\x46\x7d\xbf\xf7\x10\x9c\x22\xd4\x35\x6a\x56\x1e\x24\x84\xdb\xd5\x19\x3c\xb9\xb5\x9b\x90\x7b\x6f\xe7\xea\xb5\x63\xee\x10\x5c\xdd\xe7\xbc\x34\x7b\xb1\x9d\x60\xe1\xfe\xdb\x59\xca\x7d\x17\x81\xd7\xe8\x81\x83\xa5\x46\x06\x61\x86\x76\x93\x80\xec\xb7\x58\x42\x68\xbf\x9e\xf5\x18\x53\x5f\xc2\xe3\x54\xc3\xde\x89\xfd\x2b\x39\x50\xd9\x9d\x6c\x7d\xd2\x65\x2a\x61\x73\x76\x53\xce\xb9\x89\xd3\x08\x5b\x85\xd6\xaf\x89\xd4\x2b\x22\xac\xde\xd2\xb5\x7f\x8e\x7e\x11\x81\xb5\x47\x32\xf1\xcd\xaf\x52\xc2\x97\xa4\x09\x1f\xb8\x4e\x4f\x23\x9c\x4d\xb2\xea\x90\xdf\x14\x4d\xa8\xc8\x8a\xbf\xf8\x60\xff\x07\x06\xb5\x09\x7f\x66\x89\xcd\x8e\x61\xc3\xf2\x47\x67\xd6\xc9\xb8\x0c\x1a\xc5\x85\xa9\x87\x57\x9e\x5d\xe7\x41\xd8\xe6\x54\xe7\xfa\x26\xa2\x98\x60\xf5\xb2\x52\x4e\xea\x5a\x37\x03\xdf\x59\xb9\xfc\x35\xd6\xaa\x04\x27\x9f\xd6\xa6\x7e\xcd\x45\x1c\x28\x6a\xdc\x32\x7f\x89\x4a\x3d\x03\xa1\x39\x31\xf7\x12\x13\x86\x18\x74\xbf\x55\x10\x9d\x5e\xff\x9e\xc1\x95\x65\x06\xf7\xcf\x0c\x99\xd0\x28\xee\xcf\xba\xff\x54\x7f\xca\x14\xc2\xf0\xfe\x0d\x3f\xf2\xf5\x0d\x08\x0b\x02\xab\xc7\x9b\x9d\x10\x22\x64\x64\x27\x66\x7a\x3c\x76\xe1\x80\x8f\xc4\x76\xcd\x88\x25\x27\x08\xe9\xb7\x4f\x4a\x7c\xb8\x76\x99\x8d\xcd\xfe\x3c\xea\x7b\x4d\x6d\x08\x16\xde\x26\x06\xca\xb3\x55\x08\xc6\x86\x8e\x22\x6f\x67\x8c\x25\x54\xd9\x1c\x17\x60\x04\xda\x19\xdc\x1e\xf2\x88\x7c\xfe\xfa\x11\x0b\xc6\x7a\x47\x45\x7d\xe3\xb8\x08\x69\x1f\x76\xa5\xdd\xf1\xba\x45\xf8\xba\xdb\xf7\x49\xf6\x17\x6b\x82\x9c\xea\x23\xa9\x18\x8d\x18\x42\xdf\x36\xef\xd7\xd1\x23\xd8\x11\x7d\xad\xf7\x2f\x1c\xb4\x7c\xad\xf6\xa7\xdb\x12\x8e\x5e\x4f\x15\xd2\xc9\xde\xcb\x51\xfe\x87\xa9\x4e\xde\xbf\x6f\x7b\x6f\x27\x04\x84\xc4\xff\x3c\x3e\x37\x83\xd0\x93\x3a\x59\x74\xc1\x9c\x5a\x16\x4e\x6c\x71\xd9\xf6\x73\x96\x26\x8d\x62\x73\x20\xdf\x82\xb5\x8a\xba\x84\x2c\xaf\xc5\xf7\xb2\x0f\x7a\x12\x66\x3a\xa6\x1a\xff\x60\x39\x10\x3c\x79\x3e\x29\x67\x46\xca\x10\xea\xb6\x9d\x39\xa1\xe2\x74\x8f\x03\x7c\x95\xc6\xeb\xff\x62\xd3\x0d\xc9\xcd\x75\xd2\x47\x08\x0e\x16\x4a\x8f\x5a\xab\xec\x39\x8a\xb2\x35\x37\xf7\xb7\x6a\x1f\xf6\xff\xca\x80\x50\x7c\x6d\xde\xe0\x4e\x42\xd0\xf8\x07\xab\xe7\x7d\x5b\x4c\xf8\x3d\x76\xfc\x94\x61\x93\x71\x84\x77\x4d\xf7\x36\xa7\x5c\xd5\x24\x18\x3e\x0a\x9f\x3a\x9c\xae\x4b\xb8\x21\xf2\xe0\x8b\xb5\x83\x2a\x47\xd9\xd0\x64\x7e\xdf\xe8\x52\x1c\xc1\xa2\x92\xd7\xff\xb0\x5f\x1c\x61\x89\x70\xe9\xe7\x82\x45\xb6\x04\xb9\xce\xc6\x03\xf2\x67\xf6\x13\xe2\x8f\xef\xda\x9b\xa3\x6c\x45\xe8\xdf\x10\x71\x4a\x25\x7c\x2c\x21\xc6\xbf\x81\xaf\x3f\xdd\x83\x03\xfc\xab\x6d\xb6\xda\x65\xab\x11\xec\x37\x7e\x6e\xdc\x18\x57\xc4\xc6\x49\x4a\xaa\x77\xcf\x49\x25\x0c\x6d\x48\x10\xb4\x5c\x92\xcb\x46\xc5\x74\x61\xcf\xef\x2d\x09\x84\x99\xd2\x61\xea\xbf\xee\x2a\x11\xc8\xdb\xc3\x43\x7e\xe9\x78\xc2\xb8\xd8\x30\xfb\xd0\xf2\x5f\xcc\x3f\x20\xf7\x25\x79\x32\xdb\x55\x95\xfe\x01\x79\xe7\x58\x5b\x0d\xa3\x2e\x06\x6e\xc6\x87\x94\x92\x13\x7e\x32\x78\x27\xaa\xab\xe4\xd9\x53\xc9\xa0\x56\xc3\xc8\x29\x78\x64\x2d\xfc\xff\xe2\xbd\x87\x7f\xd2\xa2\x31\xf5\x2c\x9c\x37\xa1\x25\xaa\xc9\x1a\x04\xb1\xef\x42\xb3\x2c\xdb\x73\x09\xdc\x53\x59\x26\x69\xba\x16\x84\x8c\x16\x87\xb3\xdb\xf2\x53\xd9\x50\x13\xbd\xac\xce\x72\x99\x4d\xf0\xeb\x75\x3d\x3d\x51\x23\x8c\x10\xc7\x97\x3f\xf6\x95\x75\x3f\x33\x8a\x8b\x57\xc3\x9e\xda\xfb\xac\xa4\xff\x82\xff\xe3\xb4\xc4\x5f\xc1\xdf\x19\xe4\xcd\x36\xb2\xbd\x6b\x32\x9f\x90\x2f\x62\xe7\x77\xd1\x7a\x80\xc1\x52\xdd\xdb\x85\x61\x55\xcb\x69\x14\x7b\x72\xbf\x58\xcf\x1f\x2f\x4a\x70\x08\xdd\x64\xe2\x39\x39\x93\xe0\x5e\xf0\xb1\x35\xc9\x3e\x83\xb0\xc8\xb6\xa9\xbf\x66\x4e\x10\x1b\x51\x39\xec\x59\x05\x5a\x65\x04\x91\xbb\x6f\x7b\x87\x5e\xa7\x12\x24\xf3\x4f\xf5\xbc\x71\x2f\x26\x7c\xd9\xf7\xd8\xea\x94\x7e\x0c\x61\x83\xc8\xba\x2f\xff\x17\x1f\x2a\x17\xd5\xff\xc5\x0e\x11\xbe\x2c\xed\x3f\x25\x04\x01\x6a\xaf\xdb\x19\xc5\x26\xa4\xbf\x59\xa1\xd8\xaa\x01\x06\x4a\x8a\x8e\xca\x62\x5b\xdc\x68\x14\x97\x0d\x2b\x93\xc2\xd4\x33\x09\x69\x5f\x17\xdf\xbd\x71\x69\x98\xc1\xb6\xbe\x77\xb1\xaf\xee\xf4\x30\x98\x6b\x62\x99\x93\x7b\xab\x95\x81\x9b\x8a\x8e\x8f\xab\xc8\x4b\x06\xa6\xb7\x8a\x0d\xc7\xdf\xd1\xa7\x51\x94\x35\xdc\x30\x1d\x94\x3d\x39\x72\xca\x2c\x5f\xaa\xd6\x75\x82\x03\xd5\x6b\x02\xeb\xa6\xb9\xa5\x13\xc2\xeb\xf3\xb9\xa6\x8f\xe0\xf5\x8b\xef\x13\xc6\xc9\x56\x10\x8e\xfd\xf6\xf6\xd9\xf1\x31\x88\x60\x26\x32\x2e\x31\xdf\xd8\x8a\x70\x39\xe4\xce\xe7\xe9\xd3\xcf\x72\x40\x7e\xa1\xa8\x57\x7b\x72\x16\xc1\xfa\xe5\x0f\xae\x4b\xc9\xd9\x04\xbd\xce\xbb\x55\x21\x2e\x51\x04\x99\xa3\x35\x9e\x67\xad\x2e\x72\xc0\x64\xcc\xa5\xf0\x3b\xec\x3c\xc2\xbd\x2d\x27\xd9\x7d\x8f\xd8\x04\x19\x3f\xc9\x33\x3f\x1e\x25\x11\x12\xc2\x42\x16\xb4\x5c\x0f\x24\xa8\x47\x5d\xdf\xe3\xf6\xfc\x29\x0b\x7f\x82\x3c\xe6\xb9\xbf\xcf\xa5\x51\x18\x15\xf9\xbe\x14\x4d\xd9\xc7\x01\xbf\xcc\xcf\xf7\xca\xa3\x5e\x30\x68\xd7\x88\x5d\xb4\x56\x4c\x8a\xe0\xaf\x52\x5b\x71\x41\x2f\x99\xb0\xcd\x86\xef\x08\xef\xca\x54\x82\xa9\x60\xc5\xce\x18\xb9\x77\x0c\x04\xe4\x4e\x67\xbd\xdd\x9b\x49\x58\xc8\x17\xf5\x4e\x58\xff\x19\xa1\x5e\x86\x67\x48\xd1\xe1\x11\xa1\x7c\x72\xec\x4b\xf1\x9e\x52\x36\x1e\x9a\x0c\xfb\xc4\xbe\x52\x26\x2c\x72\x48\xd1\xf4\xdb\xc1\x10\x3c\x59\xb7\x37\xac\xb9\xa9\x41\x28\x60\xaa\x1f\x6e\x4f\x8f\x61\xd0\xb5\x26\xeb\x89\x7e\xdb\x4a\xc2\xda\xf1\xf1\x5a\x7b\x52\x24\x09\xf1\x37\xfb\x79\x64\x17\xab\x11\x5a\x17\x3f\xe5\xf7\xdb\x3c\x8d\xd0\xfe\x5c\x29\x42\x99\xd2\x09\xfa\xe3\xdd\x1e\x17\x69\x0c\x33\xd0\x5e\x5f\x9d\xe4\xe9\x56\x4b\xa8\x2f\xaa\xdc\x77\xd0\x67\x2e\x61\xe7\x33\x93\x42\x9b\xef\x8b\x09\xdf\x02\x75\xc3\x85\xe6\xcb\x10\xbe\x78\x77\xcc\xf3\x39\xbd\xff\x5f\x88\xb3\xde\x73\xf9\xc5\x95\xc9\x04\x0f\x09\x52\xf3\x49\xfd\xc9\xc0\x66\x2e\xee\xe9\xfe\x59\x4b\xd8\x54\x39\xa1\xa6\xde\x01\x0c\xda\x2e\x97\x39\x8e\x5b\xf9\x9b\x03\x7b\xae\x9d\xde\xb5\x9d\xbf\x8d\x03\x45\x72\x41\x37\x35\x8f\x88\x10\xee\xe8\xa2\xaa\x89\x3b\x99\xe0\x59\xee\x2c\xbb\xa6\xf2\x1e\x47\x71\x29\x5d\xbd\x3f\x31\x5d\x88\x90\x2c\x39\x46\x88\x6d\x98\xc4\x86\x57\xe2\xfd\x35\x93\x05\x53\x09\x21\xc2\x5b\xf5\x86\xa6\x9e\x25\x4c\x08\x69\xb3\x0c\x1e\xd9\xa1\xf4\x3f\xf0\x6b\x0c\x1c\x81\xc2\xb5\x6a\xc9\x2b\x23\x98\xe4\xbd\x3a\xe5\xb2\x93\x24\x41\xf7\x42\x9e\x53\xac\x8b\x14\xa1\x46\xd2\xc1\x25\x76\xcc\x33\x06\x0b\x77\x37\xce\x8b\xe6\x5b\x45\x08\x68\xee\xe4\xb2\xa4\x3e\x06\x9e\x03\xf3\x43\xb8\x52\xc4\x68\x14\x7a\xb3\x8f\x78\x98\x2a\x96\xb3\xb0\x58\xb8\xaa\xf8\xa4\xa8\x11\xa1\xb5\x61\xc1\xe2\x4b\xf7\xf9\x38\xd0\x76\x5f\xa2\x7d\xc3\xa4\x5e\x06\x8c\x97\xe9\x03\xef\xac\x14\x16\xea\xec\x9e\xa9\x7e\xd1\xdb\x48\xa3\xf0\x69\x66\x7f\x8b\x2c\xec\x66\x90\x94\xe4\x96\x7e\xa6\x79\x0a\x41\x59\x3d\xe2\xf0\xfb\x77\xbd\x0c\x16\xca\x0f\xde\xd4\x3d\x43\x84\x1b\x0e\x0e\xfb\x02\x98\xc9\x84\xd2\x3f\xb2\x35\x79\x37\xe5\x08\xa2\xf1\x73\x03\x22\x3a\x47\xde\x8d\x61\xfe\xbc\x0d\x5d\x8f\x08\x73\x6a\x26\xf4\xc9\xe9\xcf\x22\x74\x1e\x0c\xc9\x73\x59\x49\x1c\xb8\x74\xf6\xcc\xe5\x23\x97\xcb\x19\xcc\x78\xc1\x9f\xbc\x7c\xe7\x7d\x42\xc1\xa6\x90\x80\x7d\x23\x9b\x82\xfd\x81\x8d\xa6\x57\x7e\x25\x13\x16\x2c\x2e\xd7\x48\xd1\xfd\xc1\x60\xcd\x78\xb5\x75\x67\x34\x8a\x69\x14\x35\x39\xa5\x77\x07\x27\xa7\x13\x32\x8d\xef\xff\x38\x31\x46\x87\x10\x31\x7b\xca\x20\x6f\x79\x02\x41\xda\x78\xac\x7b\xbc\x75\x26\x1b\xef\xee\xa6\xc9\xcd\x6d\xbd\xc7\x46\xa6\x56\xd9\xd4\x3b\x86\xea\x84\x6f\xfa\xa2\xba\x03\x4f\xa2\xd9\xc8\x57\x19\xbf\x49\x4f\x63\x06\xe1\x7e\xf2\xd1\x50\xdf\xe1\x65\x84\xcc\x01\x5e\x05\x60\x1e\xe1\x7c\xb7\xf5\x0b\xe3\x5d\x7d\x0c\x36\xba\x4a\x73\x07\x4a\x44\xd1\x28\x96\x17\x36\x65\x2b\xb4\x88\x10\x56\x57\x48\x0e\x4d\x91\xbc\xcc\x8c\x62\xc3\xc9\x2b\xb3\x5d\xdf\x7f\x67\xf0\xcc\x5f\x52\x79\xdc\x40\x11\xe1\xe0\x96\x29\x0a\xde\x47\xb2\x09\xe9\x33\x03\x1a\x7b\x72\x33\x09\xb7\x53\x26\x67\x8d\x49\xcb\x21\x7c\x99\x91\x51\x1b\xe5\x94\x4d\xd0\xd9\xfa\xb4\x68\x41\x6d\x02\xc1\xb2\x65\xff\x39\xb1\x9a\x04\xc2\x52\x8b\xe6\xc1\x2f\xaf\x12\x08\x6b\xf6\x1d\xd0\x1a\x88\x8a\xe4\xc0\xff\xff\x19\x29\xba\x84\x03\xf7\x65\x07\x8f\x6c\x9c\x43\x50\xb5\x14\xbb\xa9\xfc\x65\x36\x21\x6b\xc9\xe6\x5b\x57\x66\x2c\xe4\xc0\x29\xd9\x3c\x8d\x02\xba\xce\xc0\x2f\x57\x8e\x6b\x49\xca\x3a\xc2\x0b\x37\xed\x05\xd2\x13\xd4\x39\x20\xe2\x74\x49\x61\x43\xac\x2c\x07\x7e\x5d\x78\xc9\x7b\x72\xb9\x2c\xa1\x58\x65\xe7\x8a\x58\xe7\xb9\x04\xed\xa1\xeb\x21\x73\xfd\xfa\x19\x88\x46\xce\xeb\x30\xb1\x54\xa7\x51\x1c\xb7\xfe\x96\x5d\x3d\xa1\x97\xc1\x6c\x5d\xe1\xd3\x87\x78\x67\x12\x72\x14\xeb\x92\x14\x6f\x4e\x27\x84\x3a\xc6\xe4\x5c\x70\xf3\x20\x18\x6e\x79\x75\x3f\xa9\x66\x12\x61\xa7\x5d\xbb\xff\x56\x6e\x43\x82\xd8\x93\x63\xa7\x7a\x1c\xe4\x09\x8f\x3f\x18\xb9\xef\x37\x90\x20\xbc\x12\x16\x68\xb4\xa8\xd7\x26\x9c\x92\x60\xc5\xbf\x7b\x99\x43\x28\xb8\xb4\xc6\xfc\x12\xf7\x7d\xc2\x8f\x13\x8b\x8d\x67\xca\x48\xd1\xc0\x6f\xf3\xaf\xa6\x1a\x63\x08\xa5\xe2\xb6\x1f\x23\x5b\xa2\x38\xf0\xe4\xa5\xec\xb3\x05\x4b\x83\xd8\xb8\xec\xef\xba\xac\x70\xad\x25\xc1\x45\x60\xab\xd5\x98\x6f\x86\x84\x0a\xc5\xfc\x7d\x2b\x64\xde\x31\xb8\xb9\xd4\xff\xe8\xbd\x3f\xb6\x84\xd0\x9e\x59\x2e\xb3\x52\xc6\x11\xae\x2c\x2d\x4e\xde\xc2\xeb\x41\x50\xdc\x5d\x6d\xb8\x6d\xa9\x3c\x0d\x34\x0f\x6e\xcf\xc9\x7f\x46\x98\xd9\xed\xf2\x5c\xec\x60\x0d\x61\xc5\xb5\xf8\x16\xdd\xe4\x6a\x82\xc3\x59\xfd\x9a\x17\x77\xaa\x09\x0f\x16\x29\x25\x4d\xad\x7d\x4a\x38\x93\x1b\xb1\xa0\x47\x2c\x81\x30\x50\xb5\x76\xd8\x7e\x4f\x3c\xc1\x7d\xad\x33\x8f\xc7\x95\x78\x82\x22\x97\x74\x7c\x11\x3b\x88\xa0\xf9\xca\x40\x55\xcc\x99\xcd\x46\x54\xdc\x74\xcd\xba\x2f\xf9\x0c\xd8\x5f\x74\x05\x66\x9d\x7d\xc9\x01\xfb\x0c\x7d\xed\x03\x73\xf8\x68\x14\xc1\x53\x9b\x33\x57\x15\x89\x73\x60\x47\x96\xd8\xb5\xdd\x8d\x83\x0c\x1e\xab\xa4\xf6\xd8\x87\xc4\x12\x4e\xdc\x5f\x3b\xe4\x7c\xd8\x80\x70\xb7\x88\x5f\x30\x6f\xf9\xc8\x71\xf8\x8f\xef\x9f\xa6\xbe\x1c\xc2\x94\xd9\x4f\xae\xbb\xd9\x19\x12\x04\xbe\x5d\x49\x5c\x58\xa6\x44\xe0\x32\xbf\x25\xfa\xad\xe5\x16\xa1\x61\x28\x36\xa1\xc3\x77\x1d\x61\x23\xff\xb9\xe1\x08\x4f\x23\x42\x40\x77\x4b\xee\xd3\xa2\x64\xc2\xb8\xec\xa2\xed\x4d\x01\xc4\x81\x5a\x96\xa8\xe1\xc1\x17\x8d\x0c\xac\xa5\x7a\x7a\x62\x07\x0b\xd8\x90\x54\xb3\xf3\x0e\x4a\x99\x4b\xd0\xb9\x21\xbe\xef\x6a\x57\x38\x21\x28\x57\x2c\x49\xbd\x56\x99\xb0\xd1\x4a\xe7\xba\xae\x02\x8b\x81\x5c\xf6\xc2\x82\xdf\x4b\x89\xd0\x1a\x55\xdc\x3b\xd4\xab\x4e\x30\xfd\x3a\xc6\xb8\x6d\xe5\x37\x06\xc9\xe7\x57\x79\x9d\x3d\xa6\x44\x48\xf1\xfd\xa4\xf4\xca\xc9\x97\x03\xcb\x83\x6a\x37\x0a\x05\x45\x12\x64\xaa\x6b\x0e\x3d\xeb\x5f\x47\x48\xf8\xd0\x18\x32\x7e\x87\x10\xa1\xfd\x7b\x51\x4f\x98\xfb\xa2\x7f\xa1\xd9\x71\xf7\xd7\xc9\x1f\x79\xfe\x85\xd9\x56\x57\x94\xe4\x57\x9a\x12\x78\x3b\x6e\x34\xb9\xac\xe3\x21\xd4\x7b\xb1\xd5\x8f\x1e\x18\x60\x46\x21\xe5\xf9\x31\xb0\xda\xe5\x03\x03\x4c\x2a\x54\x99\x3a\x66\x01\x61\x57\xdc\x9f\x02\x26\x79\xe4\x2c\x77\x45\xac\x6e\xae\x18\x1f\x0d\x24\xea\x04\xf3\x46\x47\xfd\xef\x2f\xd6\x0d\xf5\xbe\xff\x96\xed\x4d\xf0\x7d\xb5\xa7\x66\xf5\x83\x78\x36\x5e\x94\x94\x6f\xfb\x76\x71\x1c\xc1\xff\xdc\x70\xb1\x81\x5a\x3c\xe1\x23\x8f\xab\x97\xe9\x33\x55\xc2\x96\x97\x3f\x83\x97\x3f\x20\xc2\xe6\x72\xa1\xf3\x5c\xf7\xe3\x08\x15\x54\x6a\xe2\xb8\xec\x2c\xe1\xea\xee\xc4\x8a\x9d\x0d\x0e\x1c\xe5\x7f\x50\x9a\x68\xfa\xe1\x39\x64\x08\xa9\x97\xde\x5c\x73\x59\x3b\x89\x20\x5d\x14\xbe\x32\xa2\x5a\x8d\x03\x93\xde\xbe\xb4\x73\xca\xe6\xe7\x40\x73\xf5\x40\xaf\xc0\x30\x37\xc1\xf6\x97\xc7\x5e\x69\xc1\x45\x04\xd1\x86\xcc\x4d\x7b\xeb\xb9\x09\x1b\xaa\xf7\x89\x6f\x4c\xd0\x25\x74\x66\x1d\x3c\xb8\xbd\xd8\x93\xb0\x58\xf4\xe7\x44\x76\x5f\x24\xe1\xf2\x70\xa4\xa9\xdf\x62\x25\xc2\xcb\x1f\x0d\x9a\xc3\xf3\x86\x18\x14\x4a\x3f\xf5\x3c\xda\x2b\x44\x90\xa8\x6b\x75\xea\x51\x99\x42\xe8\x5c\xd5\x18\xbd\xaa\x73\x88\xc1\x24\x33\xbd\x64\xc1\xf1\x49\x04\x9e\x26\xbf\x3f\x97\x2e\x75\x30\x58\x71\xf5\x99\x40\xae\x94\x26\x61\x29\xf9\x3f\x59\xbd\xff\x2e\x1b\x7f\x3e\x18\x0a\x09\x9c\x48\x23\x48\x54\xdb\xbc\x6b\xdf\x93\x46\xd8\x78\x2b\x61\x7e\xc7\x08\xd2\xbb\x0a\x74\xfe\x22\x32\x4a\x6b\x80\x7f\xe4\x9a\xc2\x2c\xb5\x53\xf5\x4b\x8e\x13\xc4\x67\x22\x63\xdb\xe5\x79\x6c\x98\xbc\x94\xfb\x5c\x58\x17\x4e\x98\x1b\xf1\x5a\xf2\xef\x68\x7c\xb8\xc2\xa9\xc2\x27\x72\x84\xa5\x11\x9b\xf7\xe5\xb7\x6b\x13\x66\xdf\xf6\x31\x2d\xdf\x5b\x42\xd8\x6e\x7b\x60\x62\xbe\x64\x31\xc1\x30\x7a\x97\xd1\xa6\xec\x37\x6c\xa8\x3c\x76\xd6\xc9\xbf\x99\xc1\x46\x51\xca\x59\xd9\xbf\xa3\x87\x61\xfd\x2a\xf5\x76\xce\x84\x5f\x13\x1c\xd4\xbe\xac\x28\x65\x63\xad\xa2\xfc\xec\xb7\xc7\x1c\x09\x9b\x3f\xd7\xc9\x96\xec\xb0\x24\x70\x7d\x78\x30\x61\xf5\x89\x5b\x6c\x3c\x3b\x11\x5e\x2a\xe6\x1d\x43\x90\x51\xf5\x0d\x09\xb1\xdd\xf6\x2f\xb4\x98\x9f\x2e\x2d\x18\x79\x3d\x27\x4f\xb6\x19\xdd\xf1\x78\x4c\x38\x57\xb5\xad\x3f\xc1\xad\x92\x50\x62\xe1\xca\x68\x4b\x66\x13\x36\x1c\x8e\xfc\x99\x7e\xeb\x00\xc1\x61\xa6\x91\xe5\xaa\x9b\x6e\x84\x35\xad\x78\x90\xd3\x71\x85\xf0\xde\x5f\x7f\xf0\x66\xc0\x45\x82\xc4\x78\xbb\x29\xa7\x52\xdd\x08\x37\x9f\x5e\xb9\xf0\x9d\xe5\x4a\x10\x5d\xfc\xcd\x6d\x01\xdb\x95\x50\xef\xe0\x7c\xf8\xcc\x1d\x6f\xc2\xec\xa9\x4b\x67\xf0\xa9\x9c\x22\x6c\xef\xdd\xfc\x68\x83\xe4\x3d\xc2\x14\xb9\xa6\xaa\xd5\x79\x19\x84\x05\x06\x42\x09\x32\x2a\x3e\x84\xb1\x3f\x3e\x97\xed\x2e\xde\xcf\x46\xc1\x06\x83\x28\x71\x7f\x3b\x36\x7c\xb5\xf7\x68\x7c\x32\x71\x62\x83\x2f\xc0\xb9\x56\x7a\xc3\x05\xc2\x9b\x0a\xfe\xa8\xda\x5b\x76\x84\xf8\xee\x3c\xe7\x8c\x3e\x1f\xc2\x4c\x97\x29\x35\x5f\x0b\x0c\x08\x7c\xbf\x52\x2c\x43\xba\x4f\x11\xe2\x26\x7f\x8c\x14\xe6\x15\x22\x3c\x88\xd7\xe6\x0d\xe6\xf6\xe0\x40\xdb\xc5\xc4\xf7\xe2\x8f\xfe\x30\x78\xfd\x52\x6a\xce\xf2\xac\x0c\x82\xb3\x87\xb3\x72\xc0\x17\xc7\x7f\xc1\x25\x8d\xb6\xb8\xd4\x5b\x13\x32\x6d\x77\x3f\x15\xfc\x6c\x45\xc8\x1d\x3b\xcf\x3d\xf3\x89\x15\xc1\xf9\x72\xc5\x74\xbf\xb9\x89\x84\xf0\xab\x76\xac\xaa\x60\x5b\x42\xde\xe0\xb9\xa9\x13\x75\xa7\x13\x58\x09\x51\x87\xbe\x3a\xf0\x10\x5a\xcd\x14\x13\xb7\x2b\xf6\x31\xe8\x7b\xf6\x56\xc5\x74\xf0\x3a\xe1\x45\x66\xde\x82\x45\x6a\x73\x09\x7c\x8f\x9b\xc6\x5a\x29\xa6\xb0\x20\x78\xe9\xea\xa0\xc9\xb2\x18\x1a\xc5\xc7\x48\xf9\xa3\x0f\x5c\x1c\x08\xef\x73\x2f\x2b\x59\x9a\x75\x33\x98\xb5\xe1\xca\x59\x66\xed\x52\x1a\xc5\x8c\xa1\x9e\x5d\x42\x21\x0b\x08\x66\xf6\x6d\x33\x24\x43\x67\x10\xde\x3a\x8d\x79\xf1\x66\x67\x02\x41\x33\xc4\x4e\xea\xe9\x65\x79\x42\x62\xcf\xb6\x3b\xda\x4f\xd7\x13\xa6\x9c\xbc\x5a\xdc\x70\x71\x26\xc1\x2f\xfe\xc7\x1c\x69\xfd\xdb\x84\x5d\xba\x22\xaa\x77\x9b\xf7\x12\xee\x7c\x9e\x97\x40\xa1\x67\x09\x3f\xf2\x0f\x7e\x37\xd1\x11\x20\xd8\xbc\xfe\x58\x64\x21\xfa\x8b\x81\x67\x16\x5f\x99\x99\xef\x03\x06\xc9\x53\xfe\x04\x4f\x99\xcc\x4b\xa3\xd8\x93\xab\x70\xb3\xa8\x57\x96\x30\xdd\x2b\xf0\x0d\xff\x3b\x5f\xc2\x83\xc7\x89\x93\x9f\xf4\x94\x13\x8c\xb8\x62\xaf\x2d\xe3\xe9\x64\xa0\x7d\x7f\xf6\x9d\xad\x7d\x9f\x18\x84\x34\xf0\x6c\xad\xdb\xf8\x90\xd0\x9e\xee\xde\x62\x76\xbd\x8f\xc1\x8d\xd4\xe7\xee\x77\xb9\x9b\x19\x9c\x2d\xfe\xd5\x73\xf2\x8b\x0a\x8d\x42\x6a\x90\x2d\x1a\x27\xac\xca\x01\x6f\x9e\xfa\x75\xf1\x59\x9f\x19\x28\xc4\xfc\x38\xcb\xd7\xe7\x4d\x48\xf3\x97\x78\x7b\xfc\x0a\x9b\x90\x96\x16\x1f\x68\x32\xae\x92\xc1\xd2\x10\xfd\xf5\xf3\x64\xc6\xd3\x28\x2c\x03\x42\xce\x5d\xfb\xa4\x40\x50\x8c\x3f\x67\x7a\xf4\xd6\x46\x82\xf6\x09\xaf\xe7\x5a\x98\x42\xf8\x25\xe7\x1d\xb0\xfa\x64\x03\x83\x69\xa1\x1f\x1d\x85\x56\x32\x34\x8a\xed\xac\x46\x43\xdd\xa1\xb1\x04\xf7\xc2\x53\x0e\xaf\xf7\x47\x13\xa2\x53\x53\x02\x33\x5a\xc6\x12\xca\x8c\x33\x0d\x26\xce\xeb\x61\x46\x91\xe7\xe1\x7a\xa3\xf9\xf2\x78\x42\xdc\x70\xc9\xbc\xae\xe7\xdf\x18\x78\x34\xff\xcc\x5b\x35\x75\x0e\x8d\x82\xa5\x7f\x2f\xb3\x7f\xc8\x8d\x85\x8c\x69\x6d\x02\x37\x4c\xe3\x09\x91\x91\x3b\xb9\x7a\x36\xc6\x13\xa2\x3f\x2d\x3c\xef\x9b\xa6\x43\xb8\x7d\xfd\x91\xdb\xc5\x31\xb6\x6c\x70\x7b\x6c\x7d\xa6\x37\xa8\x4c\x50\x80\xb2\xc6\x8c\xc4\x6c\x42\x81\xb6\xea\x6d\xfe\x6f\x15\x84\xb6\xb6\x31\x03\x32\x4f\xd4\x09\x0b\x57\x18\x97\x35\xad\xfa\xca\x8c\x82\x84\x6f\xa5\x0b\xbd\xa8\x62\x60\xc4\x6b\xb0\xd1\x6b\xe1\x0f\x06\xcb\x52\xdc\xd5\xf7\xe4\x4d\x26\xd8\x24\xaf\x38\xd9\xa5\x30\xb2\x50\xbf\x7d\x35\x4e\xaa\xb7\x88\x30\x27\x40\x68\xe3\x29\x9d\xad\x84\xdf\xfa\xf5\x89\x39\x57\x16\x13\x34\x35\x7f\x7d\xaa\x89\x97\x20\xa4\x28\xf8\x9b\x2d\x1f\x2f\x4b\x88\xfa\xe1\x73\x6d\xc5\xed\x5e\x06\x0a\x71\x25\x02\xe7\x2d\xc0\x60\xe2\x49\xa3\xcc\xc2\xe7\x62\x34\x8a\x8c\xbe\xf1\x5f\x97\x64\x5e\x63\x70\xec\x98\x49\xff\xa5\x3e\x01\x42\xb5\x2c\xf7\xd1\xfe\x4d\x49\x04\xb2\x97\xdc\xd5\x13\x97\x46\x38\xac\x67\x71\xeb\xff\x22\x4a\x71\x89\x65\xcc\xdc\x3d\x1c\x78\xb7\xbd\x69\x5d\xb4\x98\x0c\xc1\xfc\x7c\xc7\x2a\xf3\x5d\xf9\x84\xfc\x12\x7e\x93\xc9\x96\x4a\x84\xa1\x25\x1a\xf3\x6f\x6b\xc9\x12\x6c\xfb\x5f\x18\xee\x5b\xc3\x4f\x78\x78\x70\x4b\xd7\x81\xea\x3b\x1c\x90\xbd\x5a\xfa\xa8\xc0\xd1\x8f\xa0\xc9\x1f\xa1\x23\x2b\xd0\xc6\xa0\xde\xa6\xbd\xb8\x37\x53\x97\xe0\xfd\x28\x54\x5d\xdf\x93\x45\x58\xe0\x71\xfb\x96\x96\x79\x2e\x61\x91\xe1\xca\xe2\x35\x23\x65\xbe\xe2\x2b\xb7\x24\x17\x57\x42\xb7\x92\x88\xdd\x24\xc3\x6c\x36\xa6\x98\x6a\x2e\xf4\xee\x72\x24\xb4\x9a\x2b\xc6\x67\xf0\xed\x27\x08\x44\xd9\xaf\x9d\x3d\xc7\x91\x70\x27\xe7\xf2\xac\x84\xed\x67\x08\x0f\x13\xbe\x73\xb9\xc8\x6c\x23\x94\x1b\xf3\x7e\x0f\x0c\xe1\x21\xbc\x6c\x4e\x5c\xf2\x21\x1e\x0c\x4e\xf4\xaf\xdf\xeb\xea\xb4\x94\xf0\xfb\xc0\xb0\x70\x86\xc2\x02\x42\xd7\xfa\xe1\xa1\x31\x45\x3f\x18\x18\x2a\x79\xca\x29\x17\xab\xd3\x28\xac\x57\x0e\x58\x8b\x88\xb4\xb1\x50\x95\xaa\xda\x78\x74\xcb\x06\x82\x44\x5b\xc6\x96\xbe\xf7\xea\x04\x97\x5d\x5f\x1e\xef\x53\xf7\x21\xdc\x76\xca\x96\x7c\xfa\x20\x86\x90\xbe\x67\xfc\x1d\x65\xf9\x55\x04\x6d\x91\x17\x2d\x7e\xd3\x75\x08\x5e\x2d\x83\xbd\x09\x29\x12\x84\x13\x4f\xa7\x69\x41\x5d\x91\xb0\x46\x28\x68\xa1\x11\xf7\x4a\x82\x45\x52\xcd\x78\xae\x59\xfc\x84\xe0\x09\x85\xaa\xe9\x53\x66\x10\x5e\x6d\x59\xab\x2c\x29\xa6\x48\x38\xbf\x68\xfd\x95\xcf\xda\xd2\x84\xfa\xf0\xa5\x8a\xd1\x2b\x3f\x33\x48\xbf\x9d\x70\x8d\x39\xf2\x9e\xc1\x1a\x8f\x5d\x56\x2f\x26\x7c\x62\xb0\xec\xc9\x69\xab\xd6\x46\x6d\x42\x74\x5e\x94\x5b\x6a\x74\x08\x07\x7a\xbe\xa4\xa5\x7d\xf9\xe1\x49\xb8\x12\xf9\x20\xb5\x5f\x30\x9b\x8d\x8a\x73\x63\x56\x44\xf8\xaf\x25\x28\x0e\xc8\xfe\x54\xd9\x79\x85\x03\x53\x7e\x2a\xbd\x9c\x6c\xbc\x90\x03\xac\x64\xa9\x9e\xea\xc6\x5e\x06\x82\x13\xce\x27\x6c\xbc\xf4\x94\x85\xfc\xa1\xed\x33\x86\x7b\xa2\x09\xeb\xce\xcc\xec\xfc\xbf\xf8\x1e\x9c\x74\x64\x77\x43\x2c\xe1\xd1\xd5\xc5\x7a\x49\xdf\x32\x09\x6b\xde\x76\xae\x39\x37\xb0\x9b\x30\x35\xcb\x78\xc1\x9a\x4d\x99\x84\x78\x0b\xa9\xb2\xcc\x75\xc5\x84\x73\x6c\xc1\xf0\xfb\x23\x28\xfb\xb6\x91\xeb\x67\xc5\x39\xc2\xe2\xae\xb1\x33\xb2\xdb\xfc\x39\x8a\xd3\xea\xc3\x26\xcf\xd4\x8e\x13\x5e\xba\xbc\x19\xf3\xd8\xf3\x26\x41\x7c\xc0\x6e\x8a\xf8\xe5\x45\x84\xd4\xaa\xd0\x6f\x17\x73\x3f\x33\xd8\xa6\x6c\xc5\xfd\xec\xda\x77\x0e\xb4\x6d\xef\x56\x7a\xa7\xfd\x9a\x85\xb0\x1c\x6a\xb6\xd5\x0f\x64\x23\xdc\x3e\xd2\x73\xca\xc8\xef\x69\xe3\xc2\x8e\x80\xfb\x07\x43\xfe\x85\xad\xeb\x58\xca\x52\xdf\x35\x08\x01\x1e\xe9\x1b\x77\xc4\x7e\x64\x30\xa9\x23\x29\xe8\x4c\xf2\x0c\x1a\x85\xaf\x81\xa0\x42\xc6\xd1\xf7\x0c\xf4\x4f\xa7\x1e\xbf\xa8\xd1\xcf\x60\xdc\x2d\xe7\xce\xfe\x02\x4b\x82\x74\xc2\x15\x89\x75\x71\x1b\x09\x3d\xfe\xbb\xfb\x0d\x6c\xaf\x72\x60\xa8\x83\x4b\x51\xf2\x8e\x27\x07\xce\xbb\x7a\xe8\x37\xaa\xa4\xb2\xfe\x01\xf7\xab\x2c\x5b\x8b\xe3\x97\xe9\x1f\xd0\x0a\xbc\x5e\x39\xc5\x56\x9c\x40\xca\xca\x3b\x8d\xe7\xab\x12\xce\xe8\x70\x5d\xee\x55\x12\x25\x5c\xd6\x3a\xbb\x4d\xf1\xdb\x14\x02\xbf\x55\x77\xd3\xa4\x43\x9f\x99\x51\xe4\xd9\x78\x6e\xef\xef\xed\x61\x70\x9b\xfb\xfe\xcd\xe6\xb2\x40\xc2\xce\x22\xd7\x95\xad\x51\x5a\x04\x4f\xb5\x0d\x87\xc3\xaf\x17\x10\x72\x63\xa4\xb4\xff\x62\x53\xd1\xf1\x6b\x7f\xb1\x6d\xd6\xed\x22\xd6\xc8\xd1\x5f\xc6\x12\x27\x12\xd2\x8a\x09\xbb\xdc\xc4\xaa\xdc\x2b\x93\x09\xab\x96\x44\x2e\xaf\xe0\x7f\x4c\xa8\x8d\x09\x5e\xb7\x69\x46\x05\xa1\xc3\x77\x66\x5a\xf9\x48\x71\xfa\x18\xc8\xf6\x1e\xb9\x66\x45\x48\xb0\xb3\xf7\xea\x20\xc2\xe9\x5d\x93\x1a\x78\x66\xa4\xb3\x31\x69\xd6\x9d\x4c\x1d\x89\x20\x8e\xd1\xa1\x2d\xfd\x89\xd3\x2f\x3a\x13\x54\x86\x6d\x96\x28\x3f\x8e\x22\x48\xdc\x75\x4b\x96\xba\x7b\x81\x30\x76\xd9\xf1\x39\x9b\xa7\x29\x72\xa0\x54\xf3\x80\xdf\x8c\x34\x6f\x0e\x64\x1c\x33\xce\xb6\x0a\xaa\x65\x70\xc0\xbd\x6c\x6b\xf0\xfa\x00\x82\xc6\x8d\x35\xb7\x1d\x8d\x6f\x11\xce\x0a\xcf\x3c\xbb\x34\x3c\x81\xd0\x51\xc8\x2a\xfd\xa1\x53\x44\x88\xe6\xeb\x58\x1f\x3f\xa3\x90\xb0\x7a\x8d\xbd\x72\xbf\x6c\x19\xe1\xe5\x59\xa5\x9f\xbb\x1c\x5b\xd9\xc8\x8c\x4e\x9f\x92\x21\x59\x46\x48\xa9\x9f\xdd\xdd\xbf\xbe\x98\xc0\xf6\x79\xbb\x46\x50\xae\x8c\xf0\xeb\xcf\x8f\xf6\x21\x1d\x7f\x42\xe8\x8d\x3b\x81\xcd\x87\xf4\x08\x57\x83\x4e\xb6\x3d\x3e\xef\x4b\xa8\x9a\xb5\x25\xfe\xb5\x9f\x14\x61\x70\xee\x7e\xf6\xa9\xeb\xba\x04\x69\xbf\x97\xa2\xa1\x32\x2b\x09\xa6\x8f\x82\x2d\x3a\x16\x8d\x27\x70\x8b\x2e\x53\x57\xb9\xb7\x89\xf0\xca\xb7\xcb\x5e\xcb\x41\x9c\xd0\xd1\xf1\xa7\xcb\x45\x8f\x9f\x70\x7d\xe1\x6f\x95\xfa\xb1\x09\x84\x43\x27\x8d\x1f\x9f\x9f\xd3\xc2\xe0\x47\x63\xe7\xbb\x83\x6a\x8b\x68\x14\xa1\xf1\x2f\x05\x5a\x0c\x4c\x38\xb0\x3d\x46\xb1\x3c\x34\x4b\x96\xb0\x37\xf1\xc9\x82\x1a\x93\xf1\x84\xdd\x86\xce\xb9\xf3\x24\xa2\x39\xa0\xdf\xef\x35\xd7\xb8\x37\x8f\x30\x75\xaf\x85\x91\x68\xf9\x1a\xc2\xf2\xe3\x33\xbe\x6a\x7e\x6b\x66\xc3\xf1\xa5\x52\x73\x3c\xa2\x46\xce\xdc\x36\xc9\xef\x35\xa3\x09\xaa\xa9\xcf\xf9\xfc\x2f\xac\x23\x2c\x1f\x57\xf1\x38\xab\x7f\x1e\xc1\xd7\xa5\x6d\xf2\x8d\xf7\xbf\x19\x14\x19\x72\xaf\xb8\x2d\x39\x9b\x70\xfa\xd0\xf7\xb0\x2b\x5c\xd2\x1c\xe8\x6b\x6e\xe9\xbd\xfb\x78\x15\x07\xee\xee\x0e\xfb\xf8\xea\xdd\x17\x06\xa6\x9e\x2f\x99\x5f\x36\xca\x34\x8a\x23\x4f\x58\xec\xcc\xcf\x62\x1c\x08\x2f\xb8\xeb\xdb\x61\x56\x42\xe8\x2f\x7c\x6b\x16\xce\x0e\x64\x63\x73\xe4\xd0\x3a\xc1\xf6\x74\xc2\xbc\x98\xdc\xd0\xbc\xe5\x55\x6c\x74\x19\xbd\x5f\xf8\xb7\x44\xda\xae\xd7\x83\xdd\x31\x42\xaf\xa2\xe0\x5c\x91\x27\x22\x84\x0a\x9e\x24\x99\x0f\x2f\x67\x70\x20\xf1\x59\xea\xa1\x8b\x59\x57\x38\xb0\xc4\xe8\xee\x43\xd3\x1b\xcb\x08\xd7\x43\xf4\xff\x1c\xaf\xee\x67\xc0\xa5\x3a\xd7\x70\xad\xbd\x37\x8d\xa2\x33\x66\x95\xf5\xcd\x92\xc7\xcc\x28\xd2\x72\x9a\xdb\xc7\xf8\x6e\xa2\x51\x5c\xcb\x17\xcc\x5f\xf0\x6e\x2a\x21\x88\x6f\xfa\xde\xe5\x56\x6a\x84\xca\xd0\x6d\xa9\xc1\x8d\xdc\x84\x9d\xb6\xbc\x19\x11\x2b\x26\x13\x12\x9a\xb8\xf8\x4c\x2c\xe3\x08\x2d\x56\x9e\x39\xc6\x95\x5a\x84\x5d\x2f\xb4\x1f\x64\x2d\x1e\x66\x46\xe1\xdc\x75\x42\x4d\xf5\xe2\x2a\x42\x82\xc5\xec\x07\xe7\xaf\x31\x84\xda\xcf\x67\xdc\x43\x12\x2f\x71\xc0\xbe\xa2\xb3\x25\xa5\x32\x80\x03\x62\x8e\x1a\x37\xdf\x4c\x13\x27\xbc\x6e\x4d\xe3\x99\x83\x0f\x0c\xe2\xd3\xa7\x26\x49\xb9\x69\x11\xaa\xeb\xdd\x9f\xbd\x36\x97\x26\xb4\xab\x87\xcb\xb8\x77\x68\x13\x4e\xeb\x66\x79\xcd\xfe\x99\xc2\xc6\x6f\x83\x97\x7a\xe9\x1a\xa1\x84\x6d\x21\xae\x05\xcb\xec\x16\x12\x8e\xb5\xd4\xe6\x25\x1d\xd5\x20\x0c\x54\xda\x71\xbd\x79\x90\xca\x01\xee\xe6\xa7\xeb\x37\x9d\xba\x47\x68\x11\xed\x5c\x7d\xae\x28\x95\x10\xec\x69\xf6\xa9\x65\x64\x74\xdb\x7a\x82\xd4\x96\x0d\xe6\x1c\x78\x6f\x1d\x75\xfa\xb6\xa9\x39\x61\x91\xbe\xc2\x51\x66\xfc\x36\x8e\x91\x5e\xd3\x3d\xe5\x1b\x24\x47\x30\x97\xdc\x2f\xd9\x1a\x5b\xc3\xc6\x86\xad\x7d\x4c\xce\xba\x67\x6c\x38\x2f\xdd\xa5\xdc\xd0\xfc\x94\x8d\x9c\xab\xb1\xe3\x0e\x4d\xbe\x46\x30\xa9\x78\xf3\xe3\xc2\xbd\x34\xc2\x55\x41\xb5\xbc\xb7\x1b\x53\x08\x86\x4b\xce\x1e\x57\x5d\xd6\xc2\x86\x7b\x45\xb2\xce\xf3\x73\x79\x04\xdd\xd9\x5b\x9f\x4e\x7b\x68\x47\x90\x0c\xd5\x1a\x5f\x11\x7d\x8c\xb0\xda\xd4\xfa\xe3\xa9\x35\x7f\x18\x1c\x1f\x9a\x1d\x7e\xf1\x99\x0c\x81\xa7\x33\xe5\x45\xf0\xcc\x6e\x06\x09\xdf\x07\x87\x23\x3e\x7d\xe7\x80\x7f\x73\xf7\xc7\xc9\x0a\x7c\x04\x13\xb5\xe2\x53\x0a\x45\x5d\x0c\x36\x6f\x74\x30\x92\xeb\x0a\x24\xdc\x0c\x15\x37\xd5\xcf\xd5\xe1\xc0\xf5\xc5\xb3\x13\x15\x0a\xdb\x19\x5c\x9b\x59\x4d\x0d\xde\x3d\x0c\x02\x8a\x1f\x46\x49\x2c\x7d\xcf\x20\x51\xe6\x7d\x84\xa6\x97\x2c\x81\x37\x20\x79\xe2\x96\x55\xba\x84\x8d\xa2\xfb\xe7\x86\xce\x5d\x45\x70\x79\x3c\x76\xbb\xd1\xa9\xb1\x84\xc0\x7a\x27\x1d\xf7\x9f\xfa\x04\xf5\x7b\x1f\x5f\xa8\x3e\xe6\x22\x4c\x5a\x77\x51\xa8\x43\x58\x8f\xd0\xbc\xb3\x63\xf1\x98\x37\x1b\x09\xf3\x0e\x2c\x38\xfc\xcb\x4b\x9d\x20\xfe\x7a\x6b\xf4\xb8\x2b\x36\x84\xc6\xb4\xa9\xb7\xbe\x8a\x0c\x33\xb8\x58\x71\xfd\xfa\x5a\x97\x29\x04\x75\xe9\x53\x5b\x97\x4a\xca\x12\xdc\x3c\xb7\xe6\x16\x0a\x7c\x20\x6c\x3c\x36\x4d\xb5\x45\xad\x92\x30\x60\xf2\xf1\x97\x80\x79\x2d\x1b\xf3\x67\x55\xf1\x98\xe5\x67\x10\xfe\xdc\x6f\xd5\xd1\x14\xbe\x40\xf8\xa3\xb8\xbb\x52\x6a\xc1\x52\x82\x65\x95\xba\x6b\xe8\x39\x4b\xc2\x82\x17\x6a\x2d\x8d\x1f\x7c\x08\xbd\x2b\x37\xec\x15\x2e\x5a\x4b\x78\xfa\xbb\xc5\x7c\x33\xf7\x10\x83\xf1\xf7\x9c\xd7\x4c\xb1\xca\x26\xa8\x7e\x94\x1a\x23\xf2\x7f\x10\x99\x10\xf8\xa5\x24\xe8\x1a\x0b\x0d\x9b\xbe\x2a\xf2\xbc\xe6\x27\x4c\xcd\xd4\x18\xbb\x59\xae\x88\xc0\x73\xe8\xe1\x0b\x9f\xe6\x7b\x04\xd7\xe1\x75\xd3\xff\x96\xcf\x0b\x8d\x3d\xba\xdc\x4a\x59\xd8\xb6\xcc\x55\x64\x91\x49\x31\xe1\x0e\x4b\x57\x6e\x51\xa1\x29\x21\x42\x57\x4a\x29\x4a\x45\x92\x60\x61\x64\xa4\xa3\x26\xb1\x8e\x20\xa2\x69\xf0\x3b\x4f\x36\x8d\x05\x79\x43\x5f\x49\x9f\x56\x73\xfa\x2f\x88\x9f\xdc\xbb\x35\x62\x66\x01\x83\xd8\x25\xe6\xba\x41\x8b\xd6\x12\x9e\xe8\x63\x6b\x67\xd9\x1d\x42\x17\x2f\xcf\xd8\x76\x9d\xd9\x84\x9d\x4e\x7f\x1a\x7f\x8c\x11\x26\xd4\x79\x5d\x5f\x9e\x3b\xf2\xad\xf3\xf6\x4a\xb1\xb1\x36\x54\x27\x78\xf7\xcf\xb7\xfd\x74\x61\x1c\xe1\x9d\x87\x93\xf9\xa0\x5f\x1f\x03\xa9\xa0\xb1\x29\x51\xd3\xd6\xd2\x28\xd6\xd6\x66\x99\xe5\x9a\xcf\x22\x44\x4b\xfb\x64\x44\xca\xa9\x11\x4a\x3f\x5f\x5c\x7a\xe2\xec\x71\x82\xcd\xc2\xfa\x2b\x21\x46\x77\xd8\xa3\xa5\xf9\xd0\x81\xa0\x63\x05\x4a\x04\xee\xe0\x45\x39\xc1\xed\x82\x04\x91\x4f\x5d\x11\x2f\xb6\xbc\x25\x74\x3d\x38\x18\x1a\x51\x5b\x4d\x58\xa9\xe0\x63\x22\xe2\x5d\x4f\xe8\x5e\x57\x7f\xa8\x6e\x64\xb4\xe2\x75\x6b\x93\xd6\x9e\x91\x5d\x41\xcc\xdd\x6f\xf1\x6f\xce\x12\x24\x3d\xf6\x7e\x7e\xb2\xcc\x81\xb0\xd2\xf5\xae\x58\xe6\x6d\x27\xc2\x72\xdb\xb2\x9c\x19\xdb\x45\x09\x9b\xa6\x3e\x2d\xb8\x20\x33\x97\x50\x72\xcd\xfe\x52\xc2\xd4\x03\xec\xd1\x72\xcb\xc4\x89\xe7\x63\x43\x27\x33\x8a\xcc\xf3\xcd\x0f\xbc\x93\x83\x08\xa6\x8d\x3b\x97\xff\x85\xfd\x84\xae\x9d\x9e\xea\x32\x04\x0b\x81\x4d\x49\x13\xf5\x4a\x09\x8a\x96\x0f\x7d\x37\x07\x5c\xe1\x40\xf2\xbb\xb2\x55\x97\xe4\xfd\x38\xca\x87\x82\xa8\xf2\xbd\x75\x13\x09\x3f\x8e\x2e\xa0\xe4\x65\x1f\x19\x68\x66\xbc\xf0\x4b\xe6\x3b\x4f\xa3\xf8\xb5\x40\x6c\x6f\x95\xb0\x34\xe1\x4e\xda\xaf\x2a\x6e\xa5\x60\xc2\xe2\x30\x66\x5a\xe2\x94\x38\x42\x78\x86\xf4\x38\xd5\xce\x72\x66\x14\x4f\xf4\x8e\x1e\xcf\xb8\xcd\x47\xe8\xd1\xad\x79\xec\x79\x49\x9b\xd0\x59\x71\xf5\xd0\xb9\x77\x03\x0c\xba\x33\x6c\x8e\x5f\xff\x90\x49\xa8\x8a\x3c\x54\x9e\xd7\x52\x4a\x38\x3c\x39\xf4\x8d\xd0\xcc\x34\xc2\xb0\x69\xba\xc5\xc9\x79\x69\x84\xd7\x66\x8f\x3e\x5f\x9d\x91\x46\x10\x35\x7b\x12\xc5\x2f\x3e\x32\x2a\x6b\x4c\x3f\xf2\x26\x9c\xf0\x3b\xf3\xe0\xd5\x55\xab\x14\x09\x42\xb6\x8f\xa2\x14\x2a\x97\x11\xde\x4d\x9a\x9f\xba\x39\xf9\x16\x21\x6d\x7d\xea\xbb\xed\x81\x05\x84\x0b\x15\x6f\x6a\x52\xb8\x4a\x08\xf1\x3b\x07\x62\x0c\x4c\x7f\xb2\x11\x69\xb5\x6f\x8d\xf8\xb5\x12\x02\xf7\x07\xa5\x66\xcf\xef\xa6\x04\x07\xa3\xa8\x12\x4b\xeb\x5d\x84\xfc\x52\xa1\x1b\x16\xb6\x3f\x18\x5c\x8a\x64\x0a\xe7\xc6\xeb\xd0\x28\x62\x97\x1e\xae\xbe\x3e\xac\x4c\x58\xac\x7f\x72\xd1\xb8\xd6\x29\x84\xc6\xdf\xfa\x72\x25\x87\x57\x71\x20\x77\xa0\x77\x4c\x69\x78\x27\x03\xd1\xd7\x8f\x9f\x66\xe9\x49\x12\xae\x65\xee\xf2\x93\xb4\x55\x23\x18\xa6\x1c\x62\x0c\x44\x97\x12\x4e\x1c\x5f\x32\xa9\x37\x76\x0c\xe1\x5d\xec\xa1\xa1\x0c\x03\xa9\x7f\x61\xc1\xfd\x22\x41\xe3\x31\xeb\xfe\x13\xb2\x95\xd7\x1b\xdf\x96\x59\xff\x0b\x12\x9f\x95\xa6\xfc\x7d\x82\x8b\x8c\xe2\x2f\x77\x7f\x41\x6d\x42\xc7\x0d\xbd\x82\xcd\xd4\xcb\x8c\x82\xc9\x78\xfd\xb8\x72\xb6\x20\x21\xc3\xdc\xf7\x70\xa5\x85\x0a\x7b\xb4\x6c\xdc\x23\x32\xb4\xf8\x81\x14\x21\xec\x56\xa5\xe2\xfa\x60\x51\xc2\xaa\x08\xd3\x3a\xc1\x43\xd9\x04\x3d\xd3\xe5\x17\x42\xfd\xad\x08\xdf\x6f\x04\xdc\x3d\xb3\x50\x8d\x8d\x89\x73\xdd\xb9\x26\x8e\x8c\x06\x1f\x0a\x45\x69\xdc\xca\xe3\x80\x28\xef\x99\xcc\x08\xad\x73\x84\xa2\x55\x9f\xdd\x97\xc7\x25\xb1\x70\x74\x9e\x56\xb8\x44\x35\x0f\x21\xbc\xb8\x20\x5e\xe4\x7d\x09\xe1\xe2\x76\xef\x63\xc2\xdd\x45\x84\xcb\x82\x17\xc3\xac\x56\x5e\x23\xa8\x9f\x4c\xb8\xfc\x77\xe4\x92\xc5\xb3\x74\xd3\xf9\x8b\x04\xb5\x10\x9b\x67\x7d\xb9\x3e\x84\xae\xf2\x5f\xf3\x1c\x3c\x44\x09\xfc\xc1\xbc\x7a\x72\xc2\x2b\x08\xde\x02\x9e\x17\x05\xa5\x77\xff\xbf\xb2\x91\x90\xb8\x7a\xd3\x8f\x0d\x0a\xcb\x47\x3e\x26\xd6\xf7\xd5\xc5\xeb\x38\x8a\xc5\x82\x6d\xc1\x11\xbd\x60\x70\xd1\xf3\xf1\xe0\xa9\x7c\x63\x1a\xc5\xd2\x1a\x81\xf0\x45\x61\xf2\x1c\xf8\x5c\x58\x37\xf1\x91\x01\x18\x7c\xbc\xb8\x4e\xa2\xef\x7a\x2c\x41\xff\xf1\x8d\x7d\x16\xf6\x8a\x84\xb9\xd4\xe5\xf9\x3d\x62\x39\x21\x73\x96\x62\x87\x03\x9c\x39\x20\x2b\xc4\xe3\x56\xf3\xf9\x28\x61\x51\x2a\x9f\xbf\x60\xff\x17\x06\xf5\x61\x25\x95\xf9\xfd\xc7\x69\x14\xdd\xf7\x55\x12\x96\x8b\xec\x22\x28\xd5\x5c\x0b\x98\x20\xb8\x71\xe4\xc0\x92\xf3\x5a\xec\xad\x10\x21\xbb\x7d\x77\x89\xee\x33\x53\x0e\x48\xd8\xae\xea\x57\xae\x22\x42\xbd\x9a\xfa\xca\x2f\x9f\xc6\x10\xba\x3d\xcb\x77\x9a\x78\xd9\x71\xc0\xc3\xe0\x4e\x7d\xfe\x90\x28\xa1\x69\x42\x53\x58\x2e\x19\x13\xf8\x97\x5e\xd8\xcd\x93\x7f\x97\x05\x33\x25\xff\x6b\x2d\x83\x57\x69\x14\xa2\xda\xd6\xa6\x4c\x9f\x30\x07\x8c\xf9\xea\x57\xc4\x56\x7e\x65\xf0\x28\x72\x43\x9e\x38\x4e\xb2\x71\xfe\x88\xaf\xd8\xb1\x96\xf5\x84\x65\xb3\xbf\xf0\x1d\x11\x91\x26\x14\xc8\xda\x56\x2b\x7e\x6a\x63\x20\x99\xb6\x69\xd0\x30\xfc\x22\x8d\xe2\xfa\x55\x08\x38\x5c\x5a\x42\xb8\xa2\x1e\xe0\x13\xf7\x66\x2b\x41\xa4\x20\xb7\xfb\xa7\x3c\x37\x21\xd6\x5e\xe1\xe5\xeb\x13\x73\x08\x8f\x8e\x15\x75\xb1\x64\xa7\x13\xe2\xcc\xcf\xed\x2c\x28\x5d\x4e\x30\x7c\xca\x0e\x76\xbc\xb9\x94\xf0\xfd\xbc\xeb\xe6\x13\x7c\x77\x58\xd8\xea\x60\xc1\x73\x5b\xa4\x87\x41\x8d\x74\xea\xf9\x19\x06\x29\x34\x0a\xfd\x27\xfb\xf4\xf7\x54\x77\x30\xd8\xd2\x9e\x52\x6f\xb0\x95\x97\xf0\x33\xe3\xdc\x80\x5a\x45\xd0\xbf\xb0\x76\xdf\xd7\xa0\xaa\xc1\x26\x16\x0e\x26\x77\x25\xcf\x0d\x96\x20\xac\xfa\x91\xc6\xe5\xec\x3d\x96\x60\x3d\x9e\xaf\xb0\xf5\xa5\x05\x07\x94\x74\xe4\x8a\x03\x16\x3e\x66\x41\x97\x5f\xcc\xa6\x3f\x6c\x0b\x61\xfc\x9e\x4b\xad\xdc\x2d\x73\x09\x4a\xda\xdc\x1b\x3a\x54\x46\x36\x78\x87\x9c\x52\x7e\x39\xbb\x71\x60\xf8\x1e\xfb\xe5\x8f\x34\x01\x42\xfb\xf4\xe5\x89\x65\xe6\x1e\x84\xb9\x7e\x9f\xa2\xb7\xd9\x14\x13\x0e\x7e\x3e\x3e\xe1\x4e\xdd\x3d\xc2\xe0\xfd\x72\xe5\x80\xd2\x26\x06\x2c\xad\x24\x3f\x9d\x54\x59\x82\xf1\xb1\xa2\xd3\x57\xf7\x8c\x6c\x89\x63\x5a\x44\x79\x9f\x9f\xe2\x40\x9d\xba\xe1\xac\x1b\x6f\x0d\x08\x87\xbd\xd6\x5e\x57\xdf\x24\x42\xf0\xcf\x7e\xf8\xe2\x66\xf7\x1c\x42\xf4\x54\xb1\xcd\x7c\xad\xfb\x39\xe0\x75\x73\xcf\x92\x39\xb9\x7a\x84\xea\xe4\x47\x61\x15\x97\xc4\x09\xc5\x51\xd5\x95\xe3\x56\x4d\x20\xcc\x50\x55\x39\x4c\x82\x6f\x19\xdc\xbe\x74\xff\xf6\x43\x4f\x09\x1a\x45\x84\xac\x03\xdf\x32\xa5\x76\x66\x14\x65\x4a\x13\xe4\x4d\xf8\xc7\x13\x0a\xa3\xdf\xf4\x24\x48\x4f\x22\x48\xec\x8e\x5c\x75\x7d\x76\x19\x1b\x35\x34\xc9\xbd\x76\xa7\x22\x41\x24\x73\x5c\xe6\xa3\xda\x1f\x0c\xfc\x3a\x9d\x87\x9c\x0f\xd7\x31\xf0\xb9\x31\xc5\xee\x7b\xdc\x56\x42\x61\xf0\xf8\x9c\x88\x20\x03\x82\xbe\x6d\xdc\x9a\x3d\x0f\xd7\x12\xbe\x76\x67\xca\x18\x66\x56\x30\xe8\xd3\x52\x99\xf9\x56\x87\x21\x38\x98\x76\x16\x4c\x39\x25\x4d\xf8\x92\xd6\xf4\xf8\xde\x16\x31\x42\x96\x8b\xc3\x80\xab\xdd\x3a\xc2\x65\xaf\x95\x16\x17\xc6\x9a\xb1\x91\x78\xfc\x99\xe0\x8c\x53\x26\x34\x8a\xff\xbd\xbd\xd2\xcd\xe4\x75\xb5\x58\x95\x60\xba\x8c\xff\x65\xe4\xcd\x1e\x06\x5c\xb3\xcc\x67\xf4\xed\xcd\x24\x88\x07\xfd\xb2\xff\xd0\x7f\x9e\xb0\x21\x32\x52\x51\xbf\xc5\x9d\x90\x66\x79\xeb\xa6\xc3\xe3\x15\x84\xdb\xcb\xb4\x76\x6a\xde\x3f\xcb\x46\xc2\xe4\x90\x43\x1f\x7c\x12\x08\x19\x73\xe3\x7e\x7f\x52\x4d\x20\x3c\xb8\xf1\x6a\xf7\xb7\xe5\x4d\x1c\x23\xa3\xd5\x69\xfb\x27\xb9\x98\x11\x5c\x77\x2c\x2f\x39\x73\xdb\x94\xa3\xdc\xf8\xb8\x60\xb9\xfa\xf0\x02\x82\xce\xbd\x70\x4b\x81\x29\xd1\x84\x75\x2f\xd2\x05\x76\x59\xda\x8f\xdc\x0e\x46\xce\x41\xb6\x87\x09\x8e\xf6\xa9\x9d\x25\x23\xf7\xa0\xf1\xf6\xa7\xbf\xce\x2f\xb5\x27\xac\x6d\x30\x7c\xa2\xc1\x15\x40\xb8\xee\x1a\x51\xda\x6b\x77\x93\x90\xcb\x24\xec\x7f\xfb\x73\x01\x21\x25\x3f\xf2\xa8\x57\x7e\x2f\x83\x60\xe6\xea\x35\x27\x63\x2b\x1a\x85\xd2\x50\x94\x91\x58\xe5\x22\x0e\xa4\x46\xc4\xa9\x44\xfb\x70\x13\xcc\x17\x5b\x8c\x5b\x91\xfe\x96\x41\x98\x30\xbf\xe6\xca\xcc\x54\xc2\xc4\x1d\x46\x1b\xdf\x3f\x0c\xa6\xd1\x62\xbb\xfc\xf1\x77\x9d\x11\x6c\x55\x5b\x35\xed\xf3\x26\x6b\x0e\xbc\x83\x85\xec\x99\x65\xf3\x08\xde\x56\x49\xab\xad\xec\x2e\x10\x26\x9d\xb0\x32\x89\xb9\x1d\x44\x78\x17\xfc\xec\xc1\xfc\x75\x17\x08\xac\xa7\x6f\xdf\x2e\xf1\x76\x25\x2c\x3d\xed\xe6\xa0\x54\x69\xc3\x51\xc4\x77\x1f\x91\x6b\x6e\xb3\x24\x34\xc7\x9c\x79\x73\xb1\x61\x1a\xa1\x36\xcf\xff\xa2\xf4\x19\x49\x0e\x7c\xf9\x35\xce\x4e\x42\x2c\x9c\x85\x84\x0d\x91\x33\x4e\xee\xe0\x21\x38\xe7\xd8\xac\xe2\xd2\x90\x26\x74\xe8\xd8\x6b\x4b\x1d\x2a\xe1\xc0\x8d\x85\x5c\xaf\x7b\xca\xde\xb3\x47\xcb\xe3\xee\x9e\x39\x05\xdb\x36\xfd\x0b\xfd\x66\x93\xfd\x74\x9c\x2c\x09\x22\x0a\xd3\x4c\x0e\xba\xcd\x26\x9c\x55\x90\xd7\x72\x0c\x35\x24\x14\x1d\xd9\xe0\xbe\x68\x6e\x31\xe1\x72\x6c\xe0\xed\x17\x29\xc5\x84\x9a\xdc\xec\xae\x7d\x47\xee\xb3\x21\x97\xb3\x3b\xfc\xef\x28\x5b\x2b\xe5\xe6\x1f\xa1\x99\x84\x8a\x81\x02\xa1\x9a\xaa\x91\xbb\xa9\xd6\xb7\x77\xd6\xc5\x0b\xff\x89\x2d\x9b\x62\x27\x8f\x37\xaa\x63\xa1\xda\xb0\x71\xba\x98\x4c\x3e\x1b\x1e\xee\x5b\x5d\xa7\xa7\x86\xd0\x7f\xe1\x33\x63\xb2\xb6\x65\xa8\x84\xb0\xab\x20\xd8\xa5\x79\x04\x85\xb6\xa2\xdc\x7f\xcb\xf8\xfc\x55\x3d\xbe\x67\xbc\x08\x6d\x01\x97\x63\x9e\xcd\xca\x65\xe3\xfd\xc9\xd2\x4d\xfd\x52\x89\x6c\x98\x9c\x12\x93\x6f\x13\xac\x60\x23\x44\x66\xaa\x70\xeb\x08\xec\x3e\x1e\xdc\xfa\xe6\xff\xc0\x7d\xbd\xb1\xdf\x15\x3a\xc4\xc6\xc5\x04\x9b\xba\xae\x5a\x49\x42\xcd\xa4\x1f\x33\x4b\x57\x09\x70\x40\xbe\x73\x53\x9b\x91\xd9\x72\x82\xda\x85\x72\xd9\x87\xfa\x5c\x84\x01\xef\x45\xf5\x3f\xbb\xac\x38\xd0\xe7\x11\xf9\x75\xec\xd8\x6a\x16\x72\xee\xec\xdc\x62\xc9\xc7\x47\xd8\x76\x43\x77\x29\xbc\xd7\x13\xc6\xf5\x1c\x2a\xf2\xf2\x95\x23\x30\x29\x51\xf7\x15\xd6\x19\x10\xb8\x95\xf3\xa4\x14\x73\x3f\x31\xb8\x74\x7a\x6d\x79\x87\xe7\x00\x07\xf6\x9e\x99\x38\xf5\xd7\x6d\x16\x0b\x57\x26\x29\x7e\x52\xf3\xd1\x23\x3c\xce\xda\xb2\x21\xe9\x9d\x18\x61\x83\x66\x06\x6f\xc3\x57\x5d\x82\x5a\x67\xb1\xfa\xc2\xc2\xe7\x6c\xf4\xb9\xf2\x6b\x2e\x7a\x97\x43\xb8\x2b\xd2\xf6\x68\xaf\x9b\x03\xa1\x26\x4c\xa1\xe5\x41\x92\x35\x81\xfb\x53\xb7\x89\xbc\x8f\x28\x61\x4e\x70\x71\x32\x9f\xca\x53\x06\xbb\x9d\xc3\x66\xe4\x75\xa9\xd1\x28\xea\xf6\x28\x9d\x34\x9a\xf4\x9d\xc1\x2b\xc7\x1e\x41\x89\xa9\x67\x08\x91\x27\x56\xbf\x6c\x1d\xf9\x71\x71\xba\x76\x2f\xf8\xd3\xc7\x39\x1c\x48\xce\xf5\xdb\xa4\x11\x5c\xcd\xe0\x75\x0c\x97\x93\x9f\xd5\x07\x06\xd5\x0d\x9b\x95\xe4\x8c\xd4\x69\x14\x17\x8b\x9d\x5a\x4d\x2d\x87\x19\x74\xcc\xb3\xea\x58\x73\xfb\x20\x61\xac\x4d\x7d\xbb\xcb\x89\x69\x84\x4b\x1d\xbe\x82\x0e\x8b\x24\x08\x56\xb1\x9f\x0e\xce\xb7\xec\x66\x70\x73\x31\x49\xef\xf2\x2f\x64\x43\x40\x3d\xb0\xcb\x72\xef\x3a\xfa\x07\x4a\xd7\x8d\x53\x3f\xe5\x5d\xc2\x86\xd5\x92\x3f\x87\x65\x87\xb9\x68\x14\x15\x6e\x92\xf3\xce\xbe\x5e\x4c\x48\xac\x2a\xd9\x5f\x10\x28\x47\x08\x59\x56\x7a\xaa\x87\x57\x8b\x30\x7c\x40\xed\x07\xa3\x35\x86\xf0\xa7\x34\xcd\x4c\xf4\x47\x1a\x41\xb1\x62\xdd\x5b\x3e\x81\xbb\x84\x83\xf1\xe6\x43\x22\x23\xc5\xe7\x58\x6b\x6f\xfd\x58\x4b\x0e\x98\xbc\xcd\xbc\x6a\x68\xf2\x99\x01\xcf\x6b\x9b\x43\xab\xea\x0c\x09\x8a\xca\x8f\x4c\x7b\xfb\x1d\x09\x05\x3d\x9b\xf6\xbe\x0f\xff\xca\xe0\xa8\xc7\x79\x7e\x61\x27\x1e\x42\x93\xec\x7b\x69\x4f\x05\x0d\x82\xed\x8d\xc2\x2d\x76\x7b\x0e\x71\xe0\xab\xb2\x41\xc0\xce\x94\x83\x84\x45\xe1\xc9\xbf\xb4\x67\xbc\x67\xa0\xb5\x49\x68\xcf\xd4\xa0\x8d\x84\x59\xaa\x37\x97\x6c\x96\xde\xc3\x81\xd9\x7c\xa1\xec\xbf\xbb\x8b\xc8\x2d\x26\x37\x5d\x7a\xc5\x08\x3b\xa4\x4b\xbc\x57\xce\x71\xe3\x80\xd9\x90\xc9\xce\x39\x5d\xbe\x84\x5d\xf2\xdb\x23\x5d\x17\x5c\x67\x61\xeb\xf9\x9d\xe9\x3f\xdf\x98\x12\xe6\x54\xdc\x62\xfb\xfc\x99\x4e\x90\xbd\x25\x32\xf7\xbc\x8b\x02\x07\x66\x7b\xa7\x0d\xce\x1a\x59\x37\x7a\xd8\x49\xc1\x37\xe4\x56\x10\xde\xf1\xe4\x36\xd8\xc9\x09\x11\xae\xac\xdc\xd3\x75\x4b\xdc\x86\x03\x3b\x52\x9c\x76\x8b\x3b\x70\x13\x52\x8a\xe7\xad\x79\x3e\x73\x06\x61\xda\x61\xd9\x19\x5e\xb3\x85\x38\xe0\xfc\x8b\xd5\xb4\xc4\xfa\x29\x83\xbd\xda\x37\xdc\xf6\x1c\x9f\x4e\xd0\x7c\x5d\x3c\x57\xcf\x72\x32\x07\x6c\x7c\x56\xd9\x99\x85\xcc\x25\x64\x47\x44\x5e\x69\x90\xb1\x26\x44\x8c\x77\x50\x7d\xab\xcc\x4d\x48\x5d\x5f\x2b\x39\xfe\xfb\x9a\x7f\x41\x66\xba\x72\xe3\x25\xeb\x53\xff\xc2\xa1\xd3\xfa\x77\x73\xb5\x77\x10\x54\xf2\x4e\xdf\xdc\xb8\xb3\x87\xc1\x14\xd5\xa3\x1d\x8b\x8e\xaf\xa4\x51\xcc\x4c\xd0\xb9\x50\x34\xb2\xf3\xfc\x1f\x6e\x27\xcc\x9f\x17\xf7\x74\x11\x8d\x42\xdb\xd1\x77\xab\xb4\x5d\x1d\x0b\xc5\x0e\x4d\xd9\x81\x81\x26\x84\xcd\x8c\xbc\xe2\x77\xc7\xc9\x84\xdb\x02\xf7\x7e\x2a\x4e\x5b\x45\x90\x99\x66\x3d\xb1\x77\xbe\x25\x41\xf7\xec\xde\x86\x3b\x73\x4e\x11\x74\xbe\x9a\x6c\xea\xe2\xd9\x45\xe0\x2f\x8a\xd8\x90\xb0\x52\x9e\x50\x90\x77\x58\x7b\x61\xd3\x06\xc2\xbb\xc3\x0a\xf9\x19\x61\xb2\x04\xe9\x2d\x0a\x86\x21\xce\x7c\x04\x5f\xd1\x93\xd9\x5b\xbc\x84\x08\x6e\x97\x5f\x8e\xe9\x4b\xd6\x26\x2c\xac\xed\x99\xf4\xc1\x7c\x27\x07\x14\xb4\xde\x18\x4d\xbb\x63\x4a\xa8\x9f\xb8\xa3\x6b\x87\xb7\x28\xe1\xf5\xc4\xb3\xc1\x3f\x4f\xea\x10\x32\xfa\x22\x14\x62\x34\xf9\x08\x5f\x54\x28\xbe\xf7\x8e\x3b\x07\xde\x70\x7b\x4a\x7b\xf0\x9f\x20\x64\xcd\x7a\xe5\x25\x32\x61\x32\xc1\x82\xaf\x3c\xec\x74\xe6\x2c\x42\xb0\xab\xcc\xd5\x8c\x73\xea\x84\xca\x48\x19\x9a\x59\xf3\x83\xc1\xed\x79\x0b\xaf\x9f\x5f\x29\x40\xd8\x5b\xf1\x68\x58\x72\xd7\x32\x82\xac\x84\x73\xd2\x75\x8f\xe7\x2c\x28\x09\xea\x6f\x39\x38\x67\x06\x8d\xc2\xbc\xa7\xec\x90\xf6\x97\x01\x06\xd3\x26\xb0\x3e\x36\x3e\xd8\x49\xf8\x7c\x45\xe8\xad\x72\x81\x3e\x61\x3e\x8d\x0b\x1d\x7e\x2d\x4e\xd0\x9f\x2e\xde\x5d\x96\x21\x4c\x88\x89\xc9\x1a\x3c\xb3\x7e\x12\x41\xfd\x44\xf1\x59\xfb\x15\xd3\x08\x05\xbd\x3f\x82\x23\xc2\xa4\x09\x99\x13\x16\x2a\x3f\x2d\xdf\x40\xb8\xb8\x5e\xd2\xad\xf4\x40\x1d\x0b\x66\x8b\x56\x7f\xbf\x94\xbd\x96\xfe\x01\xbd\x20\xf9\xb5\x07\x02\x1e\xb1\x70\xf2\x5a\x8f\xa9\xf1\x83\x50\xc2\xf5\x3d\xbf\x3c\x5f\xbd\xd2\x23\xf4\x1f\x7c\xd6\xb2\xc6\x46\x93\xf0\x60\x9a\x62\x5b\x6a\xc3\x6d\x42\x6b\x91\xc9\xeb\x0e\xdd\x3e\x06\xbb\xfa\x7a\xb2\x3d\x7b\x2c\x08\x47\x7e\x0d\x9e\x3a\xf2\x65\x1a\xe1\xcd\xc1\xab\xd5\x63\xcd\xaf\x10\xec\x9b\x5b\x74\xd7\x44\x26\x11\x78\x86\x16\x46\xff\xc5\x8c\xaa\x6e\xa5\x87\x0b\x87\x18\x04\x4c\x09\x9c\xb3\xdb\xd8\x91\x46\xb1\xd5\xbf\xfe\xdb\x3c\x68\x12\xa2\x4f\x50\xe6\x58\xa1\x18\x82\xc1\x7e\x2e\xe5\xb1\xf2\x5a\x04\xf7\xe2\xfa\xb0\xbc\x91\xa5\x72\x5c\xd5\x1d\x77\x93\x6a\x6d\xfa\x17\x0e\xcd\x5b\x5d\x5a\x52\xcf\xc2\xce\x36\xa1\xf0\xf2\x92\xf7\x2c\xcc\xd8\xdc\xc2\xb3\x6b\x89\x25\xe1\xe5\x27\x1b\xab\xf3\x73\x24\x38\x30\x29\xe5\x11\x4b\x69\x62\x37\x0b\x55\xe6\xad\xbb\xa6\x7d\x34\x23\x70\x39\xce\x92\xda\x1c\x6b\x40\x68\xaa\xdc\x1d\xaf\xcc\x27\x46\xb8\x50\x35\xb4\x2b\xb3\xb2\x96\x05\xdd\xd3\x51\x7b\x52\xb4\x15\x68\x14\xd9\xb5\x5b\xe2\x66\x4c\x7f\xc3\x82\xcd\xcb\x24\xa5\xab\x39\x37\x08\x63\xed\xeb\xca\x6a\x6b\x9d\x08\xd7\xc2\xe7\xfc\x5e\xab\xec\xc0\x51\xf8\x77\x2c\x38\xd1\xb8\xc7\x8d\x70\x2d\x5b\xc2\xe6\xfb\xa5\xb3\x84\xf9\x83\x86\x4a\xcd\x67\x7d\x08\xfa\xa7\xeb\x14\x25\x3b\xd2\x08\x2e\xcd\xe5\xab\x3f\xfc\x3a\x4e\x58\xd8\x3e\xe9\x8e\x41\xca\x39\x82\xd4\xcd\x90\x59\x6f\x2e\x5f\x22\xf8\xaf\x9f\xec\x23\x7f\x34\x89\x70\x69\x61\xd3\x6b\xef\xe4\x68\xc2\xc7\x48\x99\x63\xa1\x8f\x0f\x13\x60\xf6\x75\xe5\xd1\x9d\x3e\x84\xc0\x74\xa5\xdf\x55\x05\xc7\x09\x5e\x3c\xa1\xba\xa7\x46\xde\xcc\xff\x95\x1f\xaa\x9d\x9b\xcb\xb4\x9d\x09\x1d\x2e\x17\x56\x5d\x1a\xd6\x27\x7c\x72\x10\xca\xbb\xb5\x40\x93\x30\x45\x45\x5e\xed\x7c\x85\x0c\x07\x0e\xfe\x8c\x3e\x97\x33\x37\x85\x85\x5c\x97\x34\xb5\xb8\xe1\x12\x82\xf2\x5e\xfc\x89\x56\xcb\x21\x58\xee\x5f\x11\xdc\xf7\xb0\x99\x50\x5a\x37\xbc\xb6\xaa\xed\x19\x61\xea\xd6\xd2\xc9\x77\xba\x9f\x13\x6c\x95\x3a\x6f\x7c\x6c\x8f\x20\x8c\x33\x5b\x6d\x53\x74\xd9\x81\x03\xf9\xd2\x4f\x8d\xb5\xcf\x1e\xe1\x28\x2b\x8f\x38\xcb\x77\xde\xca\x21\xa8\x5f\x3a\x35\xb4\xee\x19\x43\xb0\x7b\x5b\x9b\x6e\xff\xea\x28\x07\xa2\xb2\xeb\xa3\x0c\x46\xd6\x5e\xd5\xb5\x11\x9f\x22\x0e\x46\x11\x66\xb4\x7e\x4b\x3a\x22\xc8\x4f\x30\xf7\xdb\xb1\x3a\xe0\x99\x08\x21\xa6\xe9\x9b\x6f\xda\xb3\x40\xc2\xa2\x86\xc8\x17\x8c\x8b\x12\x21\xdd\xef\xc5\xa0\xbc\xd8\x74\xc2\x37\x85\x3f\x56\x63\x4c\xdf\x31\x58\xb9\xab\xed\x73\x67\x90\x3e\x21\xcb\xe0\x42\x12\xef\x11\x0d\xc2\xd8\xaf\x8d\x2b\x7e\xcf\x0c\x20\xe8\x09\x7a\x0b\xff\xba\x66\x49\xe0\x3b\xe6\x38\xa4\x6d\xe6\x4f\x98\x29\x26\x37\xc9\x64\xca\x75\xc2\xea\x73\x0b\x94\x6f\x7c\x3b\x41\x58\x33\x39\x73\x5d\x86\x9d\x06\x41\xca\x55\xf9\x7b\xc0\x5b\x37\xc2\x51\xbd\xfe\xd2\x1c\x47\x37\x82\xc5\x0f\xcd\x8b\x4f\x02\x02\x39\xd0\x5e\x32\x61\x66\x5e\x41\x34\xa1\xc1\xe5\xa1\xc3\xfe\xd0\x50\x82\x68\x5c\x35\x6b\xd5\x72\x59\xc2\x0e\x23\x97\x6f\xdc\x0f\x87\x18\xb4\xcf\x57\x6a\x6f\x9d\x3c\x95\x46\xf1\x54\x7c\xe0\xdc\xa6\x5e\x49\x82\x45\xed\xa9\xef\x63\x57\x48\x11\xe4\x2f\xf3\xcf\x57\xbd\x33\x96\x90\x7d\xa6\xe7\xcf\xfe\xe1\x13\x1c\xd8\x34\xff\x24\xd3\xf0\x7b\x80\xc1\xce\x72\xd9\xa5\x7f\x52\xfb\x19\x8c\x95\x1d\x72\xee\xd5\x9d\x4f\xe8\xdf\xab\xf3\x39\xfb\xea\x7c\xc2\xa7\xa9\x07\xb2\x45\x5e\x04\x12\xa2\x44\xcd\xd7\x3f\xfc\xec\x48\x18\xbc\xf0\xe9\x10\xcf\x43\x4b\xc2\xb3\xc2\x97\xbc\xed\x85\x4e\x04\x21\xff\xcb\x27\xcf\xe9\x9a\x12\xbe\x44\xd6\xae\xd0\xda\xb0\x98\x10\xe4\xd1\xbc\x6e\x82\x8c\x37\x1b\xaa\xe7\x82\xd2\x74\x07\x93\xfe\xdf\xb3\xbb\xca\xd8\x18\x14\x66\xbd\xf9\x5b\xce\xac\xfa\x75\x65\xbf\xe6\x6d\xc2\x78\xc1\x0f\xe6\x87\x05\xa5\x08\xde\x03\x8f\x4f\xee\x8d\x9b\x42\x98\x7e\x78\xc2\xf6\xe2\x89\x47\x39\xa0\xfd\x2d\xe7\xc2\xde\x44\x37\x42\xe4\xfa\xd2\x9d\x99\xa1\xab\x09\x46\xe1\x9b\xf4\x04\x91\xc1\xa0\xf2\x69\xe7\xea\xed\x93\x8c\x68\x14\xd2\xa7\x85\x9e\x31\x1f\x19\x82\xa5\x7b\x97\xd3\xe3\xb0\x39\x1c\x65\x5b\x40\xdf\x4c\xd6\x26\x3d\xc2\xd4\xfd\xe1\x5b\x3a\x79\xc3\x58\xf8\x3e\x55\x3c\xf1\x72\x9e\x1c\x8d\x42\xac\x72\x4b\xef\x14\x77\x30\xd8\x11\x71\x63\xd5\x19\x23\x5e\x42\xba\xcf\x43\x81\x18\xa5\xb7\x0c\xf2\xb4\xce\x4e\x9c\xe1\x1b\xc0\xc6\x2a\xc5\xfe\x36\xd7\x97\xe9\x04\x59\x85\x90\x05\x12\xf5\x95\x6c\x4c\x5c\x93\x54\x19\xf2\x29\x9d\x70\x59\x7c\x42\xf5\xb3\x89\x13\x09\xbd\x94\x34\xfe\xb8\xbe\x19\x61\xc9\xa6\x13\x9e\x71\xdd\x83\x0c\x02\xc7\x6a\x07\xcf\xbe\xe6\x4c\xa3\xd0\x2c\x4b\x89\x0d\x59\x6a\x47\x98\xf5\xe0\x58\xda\xd1\x79\xc5\x2c\x9c\x2b\xec\x1c\xbb\x6d\x87\x2a\xa1\x3b\xc8\x4d\x52\xa3\x7b\x27\x41\x22\x41\x5f\x58\xf9\xeb\x5c\x42\x68\x9f\xf7\x3b\x9d\xa0\x65\x1c\x50\x76\xe8\xf2\xa3\xdc\xe9\x1c\x78\xa4\x28\x2b\xb7\x27\xbc\x8d\x81\xb4\x87\x2e\xcf\xc1\x89\xb3\x08\x5c\x4d\xc6\x41\x25\x8a\xab\x08\x55\x76\x05\xef\x67\x6a\xca\x11\x3e\xf5\xd8\xcd\x16\x39\xd8\xc3\x40\x05\xdd\xb1\xcf\xe5\x96\x11\x36\xee\x3b\x31\x7d\xe6\xf4\x08\x16\x26\xe5\x1a\x66\x4f\x6c\x9b\x48\x28\x99\x16\x51\x78\x3a\xd5\x89\x03\xbb\x26\x28\x3f\x31\x8e\xd6\x23\x34\x1e\xb4\x78\x73\x29\x7e\x2e\xa1\xed\x69\x96\xb5\xa4\x86\x39\xa1\xb8\xe6\xa9\xd6\x92\xcd\x63\x08\x97\xc6\xb4\x4f\xee\x92\xd5\x23\x78\xb5\xf4\xfc\xaa\x17\x96\x24\x74\x8c\x7f\xfe\xe1\x51\x84\x29\x61\x9b\x56\x79\xe8\x2c\x41\x0d\x0e\x9c\xa8\x5b\x1e\x18\x29\x37\x97\x03\x8b\x5f\x3c\xfc\xa9\xc3\xb3\x98\x70\x73\x6f\xdc\x64\xf5\x3c\x35\x0e\xe8\xb7\xdc\xe8\x99\xff\x5b\x8e\x03\x42\xcb\xde\x47\xf0\xe8\xec\x26\xa4\xd8\xbe\x5e\xd2\x61\xf3\x93\xc1\x25\x97\xcc\x79\x75\x32\xef\x18\xf8\xef\x3c\x57\x79\x60\x9b\x2c\xa1\x34\x70\x96\x93\xc1\x3e\x15\x82\xa7\xf9\x94\xad\xfc\x59\x6d\x0c\x86\x27\xb4\xe6\x25\xcc\x9b\x47\xa3\x28\x69\x2d\x6f\xda\x16\xd2\xc2\xc0\xe3\x9c\x4e\x7d\x73\xba\x18\xc1\xfa\x46\xc9\xc6\x06\xc1\xf1\x84\xf1\x6a\x02\x3e\xc5\x4d\xaa\x04\x1f\xb3\x72\x85\x33\x3f\xd4\x09\x63\x9f\x9f\x9b\xf9\xe6\xd3\x04\x82\xd6\xca\x31\xbe\x8d\x23\xcb\x4e\xac\xce\x37\xb5\x97\xf2\x6f\x08\x8b\x7f\x97\x9f\x98\xb8\xac\x8c\x70\x64\xaf\xd1\x01\xfd\xa7\x0d\x84\x88\x95\xba\x47\xcb\xfd\x9a\x09\x42\xf3\x63\x07\x6b\x75\x23\x08\x2e\x2a\xed\x8e\xd3\xd8\x39\x6c\xf8\x3f\x9d\x7a\x73\xe3\xee\x77\x84\xab\xfe\x2e\x66\x61\x86\xad\x84\x8b\x0e\x7b\x78\x13\xaa\x5a\x08\xf5\xc7\x12\xf4\x6c\x8b\x9e\x13\x0a\xdf\xb8\x2e\xa9\xba\xd1\x44\xb0\x36\x63\xab\xd9\xbf\x78\x4d\x38\xd6\x9d\xfb\xed\xf9\xf3\x16\x02\xab\xed\xa1\xe5\xc4\xa3\x8f\x08\xdd\xc7\x06\x9d\x1b\xcb\x1e\x10\x54\x8f\xbf\x12\x11\x1f\x77\x9c\xa0\x2a\xa7\x55\x24\xf1\xbc\x90\x20\x6e\xf6\xf6\xac\xd8\x95\x07\x04\xd6\x1b\xd7\xfd\x63\x44\xee\x12\xe4\xd5\x6f\x0d\x5d\x0a\x09\x27\xc4\x1f\x2a\xde\xbd\x5b\x7d\x0b\x07\xb8\xbe\x37\x54\x77\x25\xca\x13\x42\xaa\xf6\xc9\xef\x3c\x33\x8b\xc0\xd7\xf0\xf9\x69\xdf\xef\xeb\x1c\xe8\x52\xfc\xd8\xf5\xfa\x4c\x26\x81\x65\x70\xe8\x9b\xed\xf6\x6c\x42\x42\x5d\xea\x30\xdf\x83\x52\x42\xb6\x9b\x9d\xbd\xa0\x62\x29\x41\xdb\x3c\xb5\x3f\xd0\xc5\x90\x90\x3c\xa7\xe3\xcf\x1c\xff\x89\x04\xe3\x68\x3b\xbd\x74\x68\x70\x60\x60\x89\x63\x13\xd7\xe9\x7a\x06\x9f\xbe\xcd\xe1\x35\x9b\x7d\x9b\x90\x7c\x72\xf9\xf3\xb5\xe1\x36\x84\xef\x3f\xcc\x65\xb6\xc9\xdb\x70\x94\x99\xdb\xf2\x77\x5c\x1b\x5e\x4c\x48\x5f\xb8\x53\x7b\x6f\xe8\x38\x42\xee\xae\xa5\xf5\xc2\xf1\x22\x84\x19\xd1\x6a\xe6\xdc\xaa\x9a\x04\x91\xc8\x55\x53\x9d\x76\x97\x33\xa3\x30\x3f\x57\x78\x5f\x7e\x8d\x00\xc1\xa8\xef\x76\x88\xc1\x92\x58\xc2\xe1\x01\xd3\xdf\x72\xbe\x4b\x09\x9d\x1b\xb6\x5f\x35\x4c\x1c\x43\x08\x88\x99\xb6\x7c\xa1\x7b\x38\x61\x9f\xcd\x21\x0f\xf5\x11\x84\x6c\x5c\x5b\xe5\x2d\x22\x45\xa0\x9d\x95\xe7\xfd\x83\x4b\x08\x19\xe2\x5d\x93\x3b\x2f\x9c\x23\x4c\x0b\xe9\x98\x56\xa3\xc6\x22\x2c\xf4\x17\xeb\x6f\xbd\x62\x4b\xd0\xd3\x3b\xff\x5c\x4d\xda\x84\xd0\x1e\x39\x3b\x4f\x86\x7f\x37\xc1\x79\xdf\xfa\xb9\x65\xae\x4b\x09\xb9\xca\x85\x1d\xeb\xac\x2b\xd8\x28\xed\x85\x46\xfe\xcd\xfb\x04\x91\xd7\xe9\xdd\x93\xe4\x84\x09\x0f\x7a\x0c\x25\x3e\x99\xcb\x11\x54\x5e\x84\xd8\xee\xf5\xda\x44\xf8\xde\xe5\x72\x4e\xb3\x81\x45\xb0\x9e\x10\xa0\x62\x57\x3b\x85\x50\xce\xfd\xda\x86\x12\x16\x13\x26\x4b\x25\xab\x74\x57\xcc\x27\x68\xce\x5e\x45\xca\xde\x92\x04\xfd\xf3\xc7\xcd\x36\xe8\x2e\x27\x34\x75\x0e\x5c\x8c\x36\x90\x26\xd4\x86\xc5\x16\x6c\x60\x8f\x21\x4c\xfa\x7a\x4e\xc2\xef\xbb\x2f\x1b\xe3\x8e\xdd\xcb\xd8\x71\x3d\x97\x70\xf4\xd5\x07\xa1\xb4\xd6\x12\xc2\x37\x0b\xf3\xf2\x18\xe1\x9f\x04\x3b\xed\xce\xe6\xbe\x89\x3f\x09\xa1\xbc\x29\xb1\x37\x8a\xda\xd8\xb0\x3d\xb1\xed\x03\x9b\xeb\x27\x81\x32\x1d\x66\xea\x89\xd7\x13\x36\xb0\xc2\xe4\xd3\x55\x57\x12\xd6\x1f\xf3\x4f\xd9\x9f\xbf\x99\xe0\xfc\x61\xb9\xe0\xab\x33\xc5\x04\xeb\x7b\x7a\xca\x03\xb3\xd4\x09\x67\x84\x2f\x5c\x5a\xd6\x2e\x44\xa8\xcb\xce\x8f\x8c\x72\xdf\xc3\x01\x23\xaf\x93\xfa\x6b\xff\x98\x13\xdc\x03\x83\xcf\x4a\x7d\x9f\x4a\x18\x8a\xbd\xf0\xa9\xda\x6a\x29\xe1\x5a\x82\x7c\xd0\x19\xcf\x22\x82\x5d\x77\x9d\xcb\x8a\x63\x05\x04\x89\x63\xda\xdb\xe5\x77\x5b\xb1\x51\x3c\x27\xbc\xe2\xfe\xcf\xd7\x04\x89\x3f\x3f\x54\xbe\x9e\xcc\x26\x98\xab\x49\x96\xb1\x2f\x34\x10\x14\x8f\xd7\x5b\xae\xd0\x6a\x26\xb4\xa9\x3d\xaf\x58\x39\x82\xd8\xe9\x37\x0f\xcf\x9e\x55\x42\xf8\xe0\x28\x9d\x2a\x1c\x5e\x45\xd0\xbe\x61\x2e\x30\x77\x76\x11\x81\x31\xf7\x63\xbb\xcb\x14\x13\x84\xd2\xe6\x6a\x69\xdd\x7d\xca\xc0\x26\x6c\xa0\x98\xfb\xa3\x01\xa1\x7c\x2f\x3f\x6f\x50\xe9\x24\x0e\x58\xbc\xb6\x38\x35\xb3\xfa\x1b\x83\x7d\xa2\x4e\x6d\x17\x9e\x15\x13\x44\x54\x23\x9c\x3f\xdd\x6b\x24\x7c\xe7\xfa\xea\x31\x2b\x0a\x0c\x6a\x12\x3b\xba\xac\xaf\x8d\x25\x28\xfe\x2e\xac\xd4\x7c\xa5\x4c\x88\x48\xf5\x9a\x95\x9f\x7f\x9d\x70\xf5\xcb\xe2\x2f\x1a\xc3\x26\x1c\x28\x60\xbd\xc8\xca\x7e\x22\x47\xd8\x27\x1a\x73\xd1\x48\x54\x88\x60\xcb\xb3\xf5\xe7\xc6\x93\x03\x0c\x14\x7b\xa5\xb7\xdd\x5a\x0a\x06\xf9\x31\xbd\xa1\x77\x6b\xd2\x19\x9c\x9e\x31\xff\xd5\x44\x8f\x6d\xf4\x5f\xe0\x16\x3b\xae\xa5\x64\x6c\x43\x30\x93\x37\xa9\xb3\x97\x7a\x44\x50\x7a\xa2\xb9\x44\xd2\xaa\x85\x50\x6e\xb1\x33\xdb\xf1\x42\x30\x1b\x17\x1d\x25\x06\xe5\x57\xbd\x65\x70\x7a\x93\x9f\x93\x9a\xe2\x6c\xfa\x07\x86\xa3\x5e\xa7\xb7\x05\x36\x32\xf0\x59\x7b\xd4\x9f\xcd\xe8\x11\xc4\x95\x5f\xbb\xed\x9e\x08\x06\x5b\x76\x49\xc5\xe4\xf2\x4f\x20\x7c\x19\xbb\x4d\x57\xf5\xd5\x1b\x66\x14\xde\x07\xd6\xdb\x0d\x1b\xb6\xb0\xf0\xa1\x29\xe6\xeb\xd4\xbd\x62\x84\x35\x6d\x9e\x2a\xef\xab\x8a\x09\x1b\xba\xe0\xb5\xdc\xf1\xf1\xc8\x8e\xb1\xd2\xae\xaa\xbb\x82\xa0\xb1\x59\xf0\xd6\xa6\x0d\xc3\x04\x13\x85\xd8\xb4\x00\xad\x42\xc2\x83\xf7\xdc\xfe\xaa\xea\xad\x2c\xbc\x3b\x37\xad\xa1\xa6\x34\x8d\x10\x15\x17\xd6\xbc\xc7\xe7\x09\xa1\x35\xb6\x91\xab\xec\x43\x0d\x21\xb1\xa8\x6c\xa9\x5a\xd2\x43\xc2\x66\xae\x5d\x43\xef\xde\x3d\x22\xfc\xd6\xcc\xaa\xeb\x35\x2e\x22\x34\x8b\xb8\xab\x64\xbf\x5b\x41\xc8\x95\xf4\xd7\x39\x7e\x9e\x8b\x70\xfc\xb0\xc2\x94\xdd\x89\xd1\x84\x0f\x67\xc6\x7f\x7b\x9e\x14\x4d\xd0\xfe\x7d\xdb\xeb\xf5\x9f\x12\xc2\x86\x87\xe2\xbc\x75\x23\x25\x6b\xc3\xc0\x22\x9e\x3b\x96\x84\xaa\x4a\x45\xdb\xc9\x55\x16\x84\x6b\x95\x2f\x7c\x76\x39\x5b\x71\xa0\xbe\x7a\xc7\xf8\x0f\x7f\x76\x12\x68\xd6\x5e\x83\x53\x5a\xc6\x84\x75\xed\xc7\x2f\x3f\x3b\xc0\x22\x78\xde\x90\xbb\x22\xcf\xbb\x94\x60\x50\xec\x56\xba\xb4\x39\x83\x8d\xed\xc6\xbf\x0d\x0f\x4f\x28\xa5\x51\x0c\x9f\x8c\x74\x7f\x62\xf4\x8a\x8d\x13\x82\xb2\x94\xdf\xdc\xc0\x86\x63\x60\xd6\xfc\x03\x49\x99\x84\xcb\x65\xcf\x65\xfe\x5e\xf3\xa9\x2e\xde\xbe\x54\xc6\x91\x10\x17\x20\xd1\x69\xf2\xe7\x14\x1b\x77\x27\xaa\x6c\xaf\x9b\x5f\x48\x90\x7b\xef\x3b\xfd\xa5\x60\x32\x21\xee\xfb\x21\x75\x87\xc8\x6c\x82\x7b\xbd\xe2\xbc\xd3\x2b\x6e\xb0\x11\x9c\x13\xd0\x65\xb0\xed\x0a\x1b\x66\xce\x9b\x1f\x9c\xe7\xce\x21\x70\xdf\xe0\x6e\xe3\xef\x3e\x45\xe0\xbf\x52\x53\xe9\xd5\xf7\x96\x81\xd6\x82\x63\x0f\x12\xa5\xe6\x13\x7c\x0f\x37\x09\xce\xf3\x94\x22\x24\x37\x5a\xd2\xae\xde\x12\x42\xc3\x34\x97\x69\x3b\xfe\x8d\x33\xed\xac\x7d\xec\x13\x5e\x04\x15\x53\x91\xf7\x87\xf6\x16\x11\x2e\x6a\xae\xe6\xdb\x66\xdb\xc5\xa0\xf3\x59\xdd\x34\xcf\x1c\x2b\x42\x4f\x46\x72\xf0\x71\x0b\x1d\xc2\xa2\xa0\xb1\x3b\x5d\x1d\x67\x13\x16\x64\x95\xf7\x0a\x84\x0c\x32\xa3\xd0\xf6\x5a\x29\xf1\xde\xa3\x85\x0d\xab\x22\x57\xde\x34\x87\x1a\xc2\xe0\x1d\x9d\xaf\x8b\xbe\x14\x71\x40\x59\x4f\xfc\xc9\xa1\xc1\x40\x42\xd6\xe3\x0b\x3e\xa9\x73\xc2\x09\x33\x0a\x63\xf3\x05\x03\xee\x12\x4a\x7e\x5c\x0a\xc9\x95\x5b\x49\x68\x5d\x30\xd7\xeb\xab\x6a\x25\xc1\x56\xd4\xa8\xfc\xdb\x08\xc4\x4a\x35\x66\x8d\xf9\x93\x4d\xe8\x56\x6d\x7b\x68\xba\x3a\x9b\xb0\xbc\x5c\xf5\x8c\xdd\x2d\x57\x42\x75\xd9\xfb\x89\x75\x6b\x5c\x08\x11\x22\xbf\x4d\x26\xbc\xe4\x26\xdc\x62\xf3\xc7\xb2\x5e\x89\x10\xac\x2a\x53\xa6\x06\x2c\xfe\xcd\xc0\xac\x2f\xc0\xe7\x60\xb7\x10\x8d\xe2\x82\x5e\xcf\x34\x96\xd6\x02\x0e\x74\x8f\xfd\x9c\x74\xae\xa3\x95\x01\xef\x6c\x9b\x7b\x4b\x56\x08\x10\xda\x87\xae\x4d\x70\x9f\xc5\x26\xfc\xf1\xd8\x70\x5a\xec\x37\x11\x3c\x2b\x79\x94\xc4\x5c\x1a\x08\x52\xbf\xd3\xd3\x2a\x7c\xcb\x09\x5a\xf6\x0b\xd5\xc4\x46\xae\x39\xb3\xa2\xe9\xab\x4a\x5b\x3a\xc1\x21\x70\xc5\xbc\x45\x95\x2e\x84\x4b\x6b\x02\xc6\x3c\xec\x2a\x26\xec\x53\x5b\x50\xbd\xbc\x7a\x2a\x21\xd4\xf8\x42\xea\x9e\xa9\x6f\x18\x58\xb3\xc3\xa6\x6e\xd6\x98\x4f\x90\x3d\xe1\xfb\x22\x5b\x2c\x90\xa0\x3d\xb4\xe0\x62\xe9\x86\x0a\x36\x7a\x44\xfe\x44\x8e\x0b\x2f\x60\xc3\x5c\x77\xef\xc6\xcc\x5b\xe9\x84\x75\x37\xc7\x2d\x39\xba\xcd\x95\xb0\x52\x60\xfe\xfc\x10\xcf\x14\x82\xb1\xfd\xf0\xbe\x6d\x13\xb6\x71\x20\xe0\x86\xe0\xf6\x85\x7a\x0b\x09\x7e\xc7\x06\x4d\xe7\x39\x2f\x26\x2c\x50\x3b\x21\x73\xd7\xa0\x9f\x41\xc6\xe9\x3b\xb5\x5c\x9b\x27\xd2\x28\xe6\x4e\x6b\x2a\x79\x25\x53\x4a\xb8\xf4\xfa\x02\xf7\xaa\x13\xc1\x84\xcd\xe7\x24\x17\xab\x26\xe8\x10\xd6\xfb\x0c\x4c\xba\x75\xa4\x88\xf0\x21\x7e\x57\x72\x7a\x43\x11\x61\x9c\x5b\x80\x49\xd7\xfe\x0f\x0c\x4e\x37\x1d\x7a\x10\xa5\x2f\x49\xa3\x38\x93\x7d\xd7\x54\xb7\x6c\x0d\x61\xad\x70\xf1\x5d\x13\x83\x63\x04\x4f\xfb\xaf\xa9\x9b\x0b\x03\x09\x2f\x94\xb8\x0e\x72\xbf\x2c\x23\xac\x50\x48\x68\x6a\x95\xd0\x27\x8c\xd3\x49\x3f\x60\xab\xb7\x84\x03\x56\x21\xdf\xb6\x46\xfd\xb6\xe1\xc0\xab\x5f\xf6\xe7\x5f\xa6\xef\x25\x38\xb3\x36\x1a\xfe\xc9\x2f\x22\xec\x69\xd3\x78\x27\x59\xd1\xca\x86\xb8\xfe\xd9\x0b\x8f\x54\xb2\x08\x13\xf6\x0f\x37\x44\xad\x3e\x43\x60\x27\xb7\xdb\x9d\x13\x29\x23\xe4\xff\x24\x30\xed\x9b\x08\x2b\xc6\x2c\xff\xd8\x3e\x59\x8a\x70\xe3\x92\xb7\xed\xfe\x08\x2e\x42\xc6\x96\x6d\xd7\x94\x64\x97\x12\x02\x2f\xbd\x9f\xe5\xc2\xe6\x25\x6c\x89\xe2\x16\x0d\xd9\x9b\x40\x68\x3a\x70\x94\xcf\xd5\xa3\x98\x8d\xb9\x93\x65\x6f\x7c\xdf\xa1\xc3\x46\x3e\x8e\x9e\x7c\xb5\x3c\x93\x50\x9f\x54\xdb\xf7\x44\x25\x9b\xf0\x63\x5e\x3d\xdf\xcc\xb0\x68\x36\xfa\x42\x35\xce\xe4\x1a\xc7\x13\x8e\x84\xaa\x94\x07\x9c\x16\x25\x18\xf0\x99\xc5\x4c\x1a\xd9\xe9\x45\xd8\x3c\x48\xdb\x96\x55\x4d\x48\x8a\xd2\xf4\x21\xc7\x7c\x82\xb6\xd3\x9b\xf1\x11\xdc\x5f\x08\x2f\x1e\x9f\xde\x15\xfc\xfe\x0d\xc1\x7a\xad\x99\xb5\x5c\x49\x2d\xe1\xdc\xe1\xa8\x2a\xbb\x6b\x46\x84\x7a\x7b\x47\x93\x9f\x61\xb3\x08\x4b\x7c\xa7\x9a\x0f\xe8\xdf\x27\x70\x93\x64\x43\x79\xe5\x7d\xc2\xe9\x87\x6e\xf1\xf7\x47\xd0\xfa\x6a\x52\xa3\xc5\xb4\x60\x42\xad\xda\xab\x97\x71\xdb\x4b\x38\xa0\x33\x6e\xc5\xb8\xfb\xd1\x85\x04\x8d\x13\x5f\xbe\xfe\x2d\x4e\xba\xd6\x5c\x46\x3c\x9c\xe8\x9b\x39\xf5\xdc\x35\x2e\xce\xd2\x30\x65\xe0\xde\x8b\x6f\x0b\x08\x93\xdc\x78\x8a\x66\x5d\xc8\x67\x43\x69\x52\xd8\x47\x27\xff\x1c\xc2\x79\x8f\xa1\xd7\xb5\x47\x15\x08\x13\x67\x6c\xdd\x37\xa4\x31\x81\xd0\x67\xe1\x7c\xfd\x8c\x5c\x22\xa1\x50\x7f\x53\xfd\xb5\x26\x47\x42\xd7\x5b\x7f\xbd\x88\xe5\x87\x08\x37\x5a\x3e\x7d\x1e\xd7\x6f\x45\x68\xfe\xd2\x6b\xdf\x12\x79\x98\xd0\x34\x3e\xe1\x7e\xd1\x9d\x24\x82\xa6\xc2\x2f\xe1\x03\xeb\x4c\xfe\x13\x8e\xeb\x4c\x78\x3c\x67\x77\x30\xff\xc0\xd1\x41\xf3\x15\xae\xaf\x7a\x18\xdc\x5a\xf8\xc8\x44\xb0\xb7\x92\x30\xb0\x56\x48\x5b\xf6\xcb\x7d\x42\x85\x63\xed\xa0\xcc\x08\x4c\xc5\xb2\xd5\xd3\xb9\x42\x08\x4e\xa7\x2a\x12\xd7\x5d\xbc\x4b\x28\xcc\xd8\xa3\x96\x32\x90\xc6\xc6\xa4\x06\xf5\x95\xd3\x92\x6a\x08\xc6\x6f\x6a\xd2\x12\x8f\x9c\x23\xc0\x5d\x26\x72\x9a\x43\x1c\x21\x79\xf7\xbe\xd5\x4f\x93\x72\xd8\x50\x4f\xb5\x11\x7f\x32\x82\x92\x45\xc1\x02\x55\x23\xb8\xaa\x39\xeb\xb3\x97\x43\x2d\xa1\x78\xc5\x01\xbe\x3d\xb6\xb7\x09\xa5\x87\x78\xcb\x9d\x6c\xdc\x09\x26\xd6\x77\x3f\x06\xbc\x2b\x20\x34\x8c\xf3\x71\x59\xb6\xf1\x39\x61\x45\xfe\xa4\x33\xfe\x75\xb5\x04\x15\x6b\x15\x9d\xef\xc7\xeb\x08\x05\xb7\x06\xff\x84\x4c\xb3\x20\xfc\xde\x99\xdd\x50\xc6\x2d\x4c\xd0\x36\x7c\xee\x3f\xf8\x60\x39\xa1\x2c\xce\x74\xdd\xf3\xb0\x2c\xc2\x34\xef\x56\xc3\x31\x21\x59\x04\x01\xb3\x60\x95\x99\x45\xc5\x04\xae\x31\xaf\x3f\x68\xa6\x66\x11\xd4\x9e\x79\xaa\x94\x77\xb7\x31\xb8\x33\x43\x38\xd2\xc6\x9f\x4d\x58\x21\xae\x24\x99\x7e\xf6\x22\x07\xaa\x8f\x46\xb2\x06\x63\x1e\x32\x48\xe5\xf9\x19\xe2\x71\x73\x3a\xa1\x7b\xce\x7a\xf1\x97\xba\x15\x84\xf3\x69\x71\xde\xef\xdd\x33\x08\x3b\x82\xb5\x5c\x92\xa2\x15\x08\xbb\x1b\x4d\x0a\x17\x0f\x17\x10\x78\xa4\x75\xe6\x5a\xda\x35\x30\x98\x78\x45\x7f\x5b\xa8\x62\x22\xc1\x8e\xa9\x68\xff\x0b\xc5\x79\xb1\x1e\x3d\x77\x5b\xd9\xa3\xa3\xad\xdf\x99\x15\x2f\x5e\x5a\x12\x9e\xfe\x74\xce\x5e\x51\xb0\x8b\xa3\xfc\x0f\x46\x1d\x56\x96\x8d\xde\x4e\x84\xe5\xc1\x1f\x76\xcb\x5a\x9e\x22\x48\xdb\xb5\xdd\xec\x1a\x9e\xfa\x9f\xf8\x92\x18\x94\x76\x39\x8a\x8f\xf0\x44\xdb\xff\x84\xee\x36\x2d\x42\xec\x33\xc9\x87\x42\xca\x60\xf0\x31\x6a\xfd\xfd\xc1\xa6\x91\xb5\xd7\xeb\x99\x71\xb1\x41\x29\x7b\xb4\x54\xf9\x0f\xa8\xff\x94\x1d\x66\x70\x3a\x45\xa8\xed\x8f\x29\x2f\x41\x54\x6a\xe3\xe2\x7d\x67\xec\x38\x10\xb9\x75\x81\x9c\x05\xeb\x2e\x0b\x1e\x1e\x2d\x27\x37\x1b\xce\x26\x04\xfd\xb2\x98\xb2\xe8\x91\x1a\x07\x7e\xb9\xe8\x46\x5f\x98\x91\xcd\xc0\x65\xbe\x9e\x30\x2f\xa5\x11\x7e\xce\x9b\x7a\x3a\xe1\x7a\x1e\xa1\xea\xeb\xc1\xb2\xf8\x11\x24\x6a\x1c\x51\xd3\x5f\x14\xc7\x46\xf4\xba\x9c\xd6\x20\xfb\x38\x82\xeb\xb5\xb5\x1e\x6d\x8b\x63\x09\xe5\xaa\x61\xe2\x7b\xfb\x7c\x69\x74\x74\x8a\xc7\xbe\x24\x5b\xe6\x39\x83\x08\xbe\x52\xe6\xf9\xa7\x62\xc2\xfb\xa1\x39\xbf\x3f\x5d\x7a\xc2\x86\xe6\xa3\x05\x01\x7e\x8b\x23\x09\x4e\xe3\xa2\xe6\x35\x49\xdf\x27\x1c\xec\xd7\xfe\xff\xf1\x69\xe7\x41\x39\xfd\xff\xff\xc7\x8b\x2c\x45\x89\x68\x23\x15\xa9\xa4\x68\xd1\x22\x39\xcf\x16\x95\x25\x92\xd2\x1e\x8a\x08\x45\x96\x22\x4b\xb4\xd1\xa6\x42\x69\x27\x22\xb4\x49\xbb\xa8\xab\x55\xa4\xb4\xd1\x5e\x44\xd9\x52\x22\xf2\x88\xe4\x37\xfc\xf1\xe9\xfa\xcd\xbc\xe7\xfb\xdf\x6d\xee\xaf\xd3\x4c\x33\x67\x5e\xdb\x35\x27\xdf\xb5\xca\x84\x20\x5e\xf3\x79\x8b\xfa\xa2\x2f\x0c\xc2\xd3\x8c\x0a\x63\x7b\x66\xd3\x38\x64\x27\x6c\xff\xd9\x34\x6b\x88\x81\xbb\xfc\x9f\x0b\x35\x41\xba\x04\xf5\x13\x42\x63\x1b\x42\x7e\x30\xb8\xb2\x76\xdd\xf6\xb8\xc9\x72\x34\x8e\xc7\xdb\x42\x7e\xcc\xec\x68\x29\x82\x05\xc7\xeb\x6f\x2e\x37\x2d\x09\x27\xbd\x9d\xb2\x8f\x6e\x2a\x25\xdc\x6e\xd4\xb0\xad\x35\x6e\x20\x5c\xd7\x48\xac\xfd\x07\x97\x43\xca\x71\x43\xb9\x59\x04\xf7\xbb\x5d\xcd\x7b\xd4\x33\x09\x0d\xf7\x0d\xb3\xfe\x15\x7b\xee\xa3\x56\xf6\x4a\xc9\xff\x81\x91\xfb\x0f\x96\xbe\xef\xf2\x26\x70\x5d\xfa\xec\xac\x7d\xb8\x95\x70\xbe\xea\x64\xc4\xaa\xe9\x35\x04\x8b\x79\x1f\x67\x1f\xfc\xd6\x44\x68\xfb\xbd\xeb\x9e\x48\xe3\x03\x42\x19\x35\xa6\x1d\x15\x69\x67\x21\x67\xeb\x69\x89\x91\xcb\x33\x09\x3a\x8b\xaa\x5f\xbc\x5b\x5d\x47\xf8\xf0\x60\x69\xd9\x16\xd1\x21\x02\xff\xcc\x1f\xcf\x78\x1e\x7f\x23\x88\xe2\x5c\xf7\x4e\xd9\x1e\x82\xe5\x8c\xaa\x03\x2b\xa6\x7e\x23\x7c\x99\x25\x2b\xef\x39\x56\x4f\x38\x9b\xcc\x7b\x45\x38\xfa\x3a\xc1\xee\xc0\x8e\x5e\xa1\xbf\x98\x3d\x7d\x45\x44\x4e\xdd\x45\x42\xf2\xfc\xbd\x43\xf7\x38\x1a\x8b\xc6\xd1\xe4\x50\x58\x18\xba\x66\x1b\xfd\x07\x32\x96\xa5\x2f\xdb\x18\x90\x4d\x78\x90\x2c\xf6\x68\xed\xac\x0b\x6c\xf8\xaa\xbe\xd8\x7b\xb1\xfd\x2c\x36\x5c\x55\x54\x73\x2c\x9c\x9e\x51\x84\x99\x36\x9b\x8a\xb5\xf3\xc6\x18\x24\xb9\xb6\x70\x7d\xe7\xf5\xa7\x71\x44\xee\xee\x2c\xe7\xe0\xda\x4b\x28\x0a\xb3\x53\x2a\x69\x90\x27\x2c\x91\xfc\x15\xd4\x18\xa7\x4a\x28\xda\x3f\x74\xb9\xcc\x6f\x06\xe1\x40\x5c\xa9\xc1\xaf\xab\x77\x08\x9f\x24\x8e\x5e\x9e\x2a\xa6\x4b\x30\x4c\x1f\x58\x56\x3e\xa7\x9b\xc1\x13\xaf\xd2\x47\xbb\xea\x0c\x08\xaa\x07\x35\xcc\xa3\x3f\x4c\x25\xd8\xef\xe9\x2e\xe3\x8d\x5a\xc1\x06\x65\x8d\xbd\x45\xbc\xba\xcf\x18\x64\x49\x2f\x08\x5c\xb0\xbb\x9b\xc1\xd6\xd9\x97\x2e\x3e\x6e\x0e\xa2\x71\xd8\x76\xe4\x2d\xdf\xb8\x51\x80\xd0\xfc\xb6\x76\x8a\x86\xc1\x06\x42\x45\x0f\x2b\x6d\x8a\x82\xc6\x7f\xe1\xb3\xf0\x9b\x3b\x4a\xc9\x1c\x84\x3f\xe9\x53\xde\xae\xb9\xa6\x47\x90\x1e\x14\xda\x01\x0f\x49\x36\x08\xee\x6d\x3e\x75\xef\x77\x6b\x11\x7c\x33\x67\x39\x4a\xb4\x98\x10\x22\xb2\x14\x3b\x02\x0f\x4f\x27\x4c\x8a\x7f\x3b\xbc\xfb\x8b\x29\xe1\xe1\xe2\x6b\x01\x97\x6d\x9f\x12\xac\xf7\x3a\xb8\xa9\xce\xf3\x61\x21\x76\xf7\x3b\x97\x8c\xbd\xf5\x04\x07\xb1\x95\x9f\x1e\x1a\xc7\x13\xee\xc6\x27\xb7\xdc\x49\xe1\x27\x6c\xb5\x78\xc9\x9d\x65\xf4\x83\x81\xef\xb2\xe1\x9e\xa2\x0b\xe9\x84\x8d\x56\x67\xfd\xd4\xf6\xda\x13\xa6\x9e\x8a\x7f\x6c\xba\x28\x81\x05\xfe\x34\xf3\xbc\x5e\x51\x07\x82\x98\x6d\x5c\xfd\xfc\x48\x0f\x82\x96\xe1\xc8\x41\x63\x69\x61\x42\x91\xf2\xb0\xdf\x8f\xb8\x12\xc2\xab\x86\x40\xa7\xe4\x81\x62\x82\x63\x83\x47\x6b\xa0\x4f\x31\x41\xd8\x59\x5d\xaf\xb9\xba\x98\x60\xd5\xf7\x6a\xff\xbf\x67\x2a\xed\x23\xc5\x25\x62\xbf\x33\x90\x9b\x25\x1d\x7d\xd3\x7b\x1a\x81\x27\xb9\x27\xfa\xc3\x0f\x33\x16\x56\xce\xca\x1e\x8c\x70\x9d\x42\xf0\x99\x3d\x71\x5e\xc9\xea\x3b\x2c\x3c\x9b\xa3\x72\xf5\xc0\xe5\x58\x42\xd5\x07\x43\xcf\x79\xd9\xb1\x84\x57\xfc\x4d\x53\xd4\x0b\xb3\x19\xdc\xa1\xc9\xcb\xd6\xf1\x24\x10\xfc\xdf\x70\x4b\x17\x8c\x6c\x26\x74\x38\xde\x79\x90\x1e\x64\x46\xa8\xf2\xab\xd2\xba\x7a\x58\x83\x70\xc7\xee\x31\xc7\x5a\xd1\x62\x16\xe6\x4d\xb0\x4e\x6a\xd2\x39\x46\x48\x35\x0f\x79\x91\x74\x75\x94\xc1\xad\x1f\x49\x0e\xf1\xaf\x5f\x31\xf8\xc2\x29\x52\x7f\xbd\xde\x80\x70\xf6\x97\x50\x8d\xf0\x87\x45\x84\x45\x4b\x4e\x3d\xed\x28\x18\x64\xf0\xce\x6e\xb9\x17\xd7\x4e\x69\x82\x8e\xe9\x93\xea\x09\x66\x82\x84\x0b\x4e\x57\x3e\xe4\x84\x3c\x24\x74\x04\x28\x9a\x74\x4e\x7f\x48\xb8\x9e\x53\xbb\x44\x72\x52\x09\x61\x62\xd9\xad\x6f\x7a\x7e\x27\x09\x9f\xad\xf9\x1e\x15\x37\x5e\x62\xe1\xa9\xcb\xf9\x4f\xee\xba\x91\x84\xd4\x07\x11\xe6\x2f\xad\x22\x09\xa1\x37\x5f\xda\xf9\xda\xbe\x22\x64\x39\x1f\xf7\x74\xfe\xd1\x49\x30\x5f\xbe\xf0\x63\x46\x53\x0b\x41\xe9\xa3\x51\xe1\xe1\x1d\x79\x04\xff\x80\x99\xbe\xb3\x72\xea\x08\xf9\xbe\x1c\x09\x46\x7b\xde\xfc\xfd\xf3\x2d\x67\xe6\x67\xd6\x12\xae\x6f\x57\x10\x1f\xf9\xc9\x22\x2c\x3f\xd6\x74\xc7\x4e\x24\x83\xe0\x2a\xfc\xbe\x43\x37\xd5\x8c\x85\x38\x83\xaf\x2b\xac\xf7\x4f\x20\x78\x17\xeb\x36\x99\x96\x6c\x26\xcc\xfb\x99\x59\x3b\x12\x6f\xc6\x86\x6d\xac\x2e\x57\x8b\x0e\x15\xc2\x4b\x9b\x43\xde\x55\xcd\xa5\x04\xa6\xa2\xbe\xf1\xf5\xb4\xeb\x04\xac\x78\x97\x38\x2b\xf7\x05\x81\x4b\x25\x5f\xda\x20\xbe\x92\xf0\x23\x2d\xc9\x34\xd4\xb3\x98\x90\x62\x31\x4d\x59\x3c\xe4\x03\x21\x5f\x91\x33\x9c\xbe\x71\x68\x63\xc4\x5a\xf5\xea\x57\xc5\xcb\x2c\x24\x3e\x78\x26\xf7\xce\xe1\x03\xe1\x9a\x55\xa9\xe4\x5b\xff\xe7\x84\xab\x85\x12\xab\x1b\xdb\x5e\x14\xe1\xb8\x90\x79\x19\x6b\x7d\x09\x41\x57\x75\x4f\xe4\xfa\xeb\x25\x04\x9e\x2a\x97\xda\xaf\x2f\x13\x08\x9e\xf1\xf9\x21\x59\xc3\xef\x58\xc0\x50\x5b\xb9\xde\xf9\x30\xb6\x67\x86\x35\x5e\x9d\x48\x90\xb2\x27\xf8\x46\x48\x56\xdd\x33\x5c\xcd\x86\xf2\x4e\xc5\xaa\x25\x51\xf5\x84\xf5\x4b\xd6\x9e\x93\xa6\x32\xc2\x27\xcf\x27\xa3\x8b\xfe\xe2\xd5\x81\x0f\x12\x45\x46\x65\x84\xa7\xfd\x5d\x22\x52\x41\x2c\xd6\xf8\xd0\xc7\xe2\x82\x13\xb9\x97\x56\x13\x92\x13\x6b\xcd\xf8\x98\x2a\xc2\x7a\xdb\xa2\xb4\x5f\xf5\x7d\x84\x63\x93\x04\xcc\xf2\x04\xab\x09\xdf\xd2\x39\xcb\x4e\xae\xfe\x40\x38\xb9\x5d\x71\xe9\xb4\xae\x26\x42\xc6\xc9\xa5\xb3\x16\x1c\x5b\x46\xd8\x7d\xa7\x31\x7f\x75\xab\x05\x1b\x8a\x7c\xe5\x7a\xf4\xb7\xb5\x32\xd8\xb1\x22\x8c\x43\x76\xcd\x7c\xc2\x13\xad\x5d\xcf\xad\x67\x2a\x10\xdc\x77\xee\x5a\xf3\xae\x72\x2a\xc1\x45\x29\xcb\xf4\x56\x58\x3f\x03\x6d\xbd\x09\xfd\x5d\xf7\x4d\x68\x1c\xae\x5f\x0e\x64\x0d\xca\x88\x13\x84\xaf\x59\xaf\xd8\xaf\x5b\x44\xe0\xe6\x93\x3d\x10\xd7\xac\x46\xb8\xb8\xc6\x2b\x72\xa5\xcf\x45\xc2\x57\xab\x7c\xcf\x3b\x07\x23\x59\x98\xd3\x68\xa8\x7c\xea\xe8\x23\xc2\x0c\x8d\xcc\x9b\xff\xf0\x40\xdd\xf0\x82\x46\x50\x05\xe1\x69\xd9\xce\xef\x62\xaf\x6a\x09\xba\x37\x1c\x0b\x6b\x7a\x8c\x09\x07\x39\xee\x4e\x99\x58\xe5\x40\xc8\x0c\xf0\xde\x10\x71\xc9\x88\x50\x2c\xe8\x34\x5b\x58\xa7\xa6\x08\x71\xb3\x9c\xdf\x18\x85\xfd\x61\x70\x77\x7a\xf2\x6f\xeb\xbf\x73\x50\xb4\xfb\xb1\x86\xe6\xac\x6a\x02\xef\x6b\x89\x9c\xa2\xf8\x42\x1a\x1f\xaa\x31\xcc\x33\x78\x30\x32\x87\x60\x99\x96\x3e\x6c\x7c\xa9\x8b\x70\xde\x79\x5d\x0c\x47\xd1\x3b\xc2\x4a\xab\x43\x29\xaa\xbf\x9e\x11\x3a\x3d\x76\xc4\xca\xe9\xf0\x13\xcc\xaf\xb7\x4c\xa9\xeb\xe4\x21\x0c\x30\xaf\x54\x44\xa7\x2d\x60\x83\x8a\xd2\xfc\xe1\x33\xcb\x15\x09\x07\x33\xac\xb7\x0f\x5e\xe1\x24\x64\xfd\xf4\x55\x5a\x9c\x63\x4f\xd8\xc0\xa9\xdc\x19\x70\xc2\x96\x20\xdc\xf5\x42\x64\xca\x41\x53\x02\xdf\xdc\xb9\x67\x4c\x54\xe6\x10\xce\xf8\x0a\xfa\x9b\x7b\xfd\x60\x10\xf9\xc1\x7d\x03\x2b\x61\x31\x8d\x23\xe3\x70\xf3\x46\xef\xbd\x12\x84\x56\xfe\x15\xdf\x05\x03\x86\x18\x4c\xf5\x29\x3e\x99\xae\x54\x46\x98\xc6\xf1\xf2\x8e\xb3\x7b\x3c\xa1\x7c\xb8\xcd\x6a\x78\x4a\x03\xc1\xda\x77\xde\x04\xc5\xdf\x25\x2c\x3c\x31\x3f\xba\xaf\xee\x66\x36\xc1\xc9\xf1\x4c\x67\x7e\xe2\x13\x82\xe1\x73\xed\xc3\xf7\xd6\xaa\x10\x7a\x16\x8a\x3e\xdb\xdb\xc6\x4f\x78\x37\x61\xc3\x93\x47\x0b\xb6\x12\x66\xaa\xbf\x59\x32\x5a\x6a\x44\x18\x39\x58\x62\x76\x55\xae\x9b\x41\x5f\xe7\xf0\xdc\xd3\x2f\x14\xd8\xca\x02\xb9\x12\x03\xdb\xaf\x67\x69\x1c\xd3\x37\xd6\xdf\x17\x5f\x67\x4f\xd8\x7e\xd1\x67\xcf\xbe\xa1\x05\x04\xd7\x7d\xf1\x19\x01\x65\x79\x84\xec\x59\xd5\x8e\x8e\x65\x05\x04\x51\xef\xa5\x01\x3b\x03\x27\x10\x96\xd6\x3a\x3a\x2e\x9b\xc8\x4f\x48\xfd\xba\xe8\xca\xc1\x51\x6f\x36\x9c\x9b\xa4\xb3\xaf\x5e\xe7\x22\x0b\x06\xc7\xbc\xb4\x9e\xe6\xdf\x20\xa4\xf1\x54\xcc\xf2\x51\x68\x64\x20\xf0\x6c\xdd\xfe\xbc\x42\x35\x1a\x47\x41\x80\xac\x62\x90\xc2\x17\x06\x27\x3d\x69\x51\xd2\xb4\x9f\x0c\x4a\x2d\xdc\x0d\xb8\x9c\x7f\xb0\xe1\x89\xe1\xdc\xe3\x2d\x7f\x2f\x7f\xed\xa2\x5f\xf2\xaf\xcc\x99\x40\xa8\x11\x57\x8b\xd9\xc4\xb9\x9c\x0d\x0b\x96\xdd\xe0\xd6\x10\xef\x66\x20\xd0\xec\xb3\xf6\x13\x97\x36\x61\x79\x87\xfb\xd7\x5c\x4d\x15\xc2\xc7\xe1\x47\x67\x24\xb6\x2b\xb2\x60\x1e\x9a\x7d\x2b\x5c\x34\x9c\xc6\x91\xfb\xd8\xff\xa7\xe2\xac\xa3\x6c\xe0\xb3\x2e\x38\xf4\xe7\xcb\x14\xc2\x97\xd2\x37\xbc\x6d\x2e\xc6\x84\x73\xfd\xb6\x67\xaa\x92\x94\x08\x7f\x76\x0c\x79\xbe\x7f\x9b\xc6\xc2\x8c\xdf\x82\x73\x7d\x32\x7a\x18\x6c\x8c\xd5\xdf\x7c\xa5\x5a\x87\xc6\x71\x9a\x7b\xcf\xb7\x7b\x0d\x5d\x0c\x7c\xb6\x68\x3e\xb9\x1b\xdd\xca\x60\xca\x8b\xfd\x56\x79\x4b\x2e\xb2\x60\xe1\xd8\x71\x71\xc7\xf3\xdb\x84\x05\xdf\x26\x97\xfc\xff\x10\x3a\xfc\xdd\x65\xf6\x03\x33\xc2\x34\x95\xa2\x5c\xb7\xf8\x4d\x84\x3f\x37\xbe\x28\x5d\xf6\xb0\x62\xc7\xf1\x91\xd9\xf9\x1c\x5e\x04\xbb\x63\x6b\x1d\x06\x3e\x67\xb2\xf0\xcc\xdc\xbb\xc4\x45\x72\x31\x41\x59\x95\xef\x91\x9b\x82\x14\x21\xb5\x8e\x22\xdd\x35\x22\x08\xf3\x2a\x37\x89\x34\x7d\xac\x62\x30\x63\xe2\xdc\xa6\xb3\xe7\xa6\x12\xee\x6c\xdd\x71\x7b\x9b\x2b\x27\x41\x55\xdf\x71\x4d\xbf\xd9\x8b\x22\xa4\x4c\x75\x17\xfe\xd4\xfe\x8d\x19\x87\x58\x8c\xec\x92\x6b\xcd\x23\x0c\x7a\xa4\x74\xfe\x98\x59\x48\x10\x56\x65\xa9\xe8\x26\xbb\x0d\x31\x98\xf9\xa3\xfa\xf6\x72\xfd\xe5\x34\x0e\xe7\xa2\x63\xca\x89\x3e\xf2\x84\xb2\x12\x0e\x61\xbd\x1d\x53\x09\x95\xdb\x56\x16\xe7\xd9\xf1\x13\xe6\x09\x5c\xf8\xb3\x8c\xc4\x09\x73\xd6\x75\xcf\xd8\xc9\x73\x86\x0d\x33\x45\x7f\xe7\x96\x7c\x0d\x63\xc3\x34\xc9\x54\x7e\x0f\xc1\x7a\x16\x22\x5f\xfb\xef\x89\x2c\x48\x21\x3c\x98\xbe\xe3\x49\x50\x7a\x32\xa1\xb7\xf2\x21\x67\xcd\xf1\x50\x02\xbf\xc5\x3e\x93\x9e\x6f\xd5\x84\x3d\xfe\xa7\x85\x79\xae\xd5\x11\xb8\x2f\x1e\xb4\x7c\x99\x6d\x4f\x70\x54\xee\xcf\x29\x91\x9d\x46\xd8\x69\x9e\xb9\xf3\xfa\xd9\x2f\x0c\x26\x2c\x10\xd8\xea\xe3\x3c\x99\xc6\xe1\x1c\x20\xb9\xc2\x65\xe5\x64\x42\xd9\x53\xab\xe4\x75\x72\x2c\x42\xed\x91\xc2\x8a\x26\x1f\x41\x36\x04\x18\x7a\xda\xeb\xbf\x8d\x25\x14\xe5\x9b\xaa\xfc\xc3\xc1\x99\x69\xaa\xef\xc2\x96\xb3\xc1\x77\xb6\xf7\x96\x01\x2d\x3e\xc2\x54\x03\xe5\xd9\xc7\x0a\x46\x19\xf4\xfc\xe2\x3a\x28\x73\x87\x93\xd0\xd1\x15\x78\xe1\x70\xfd\x64\x82\x4a\xa2\xc4\xf7\x86\xf3\xe6\x84\x10\xd5\x59\x2e\x3c\x7e\xc5\x84\xba\x24\x9f\xda\xc2\xde\xed\x6c\x10\xde\xad\xdc\x77\xdb\x6e\x88\x41\xd4\x85\xce\xce\x52\x9b\xdb\x0c\x72\x54\xee\x4a\x92\xc2\x0d\xc2\xe6\x38\xf5\x89\x8e\x62\x7f\x17\x2b\xf7\x77\xa7\xee\x9d\x78\x41\xb0\xab\x4b\x2b\x5f\xd5\x3f\xcc\x42\xf6\x55\x85\xbb\xed\x76\xcd\x04\xc3\x63\x7b\x57\xe8\x4b\x96\x13\xd4\xee\xda\x3f\xde\x78\xf5\xef\x96\x2d\xfd\x40\xda\xfb\x4e\x19\xe1\xab\xbf\x97\xaf\x67\x5c\x19\x41\x6b\xa8\xa7\xd0\x61\xf4\x21\x0b\x32\x92\x3c\xea\x12\xe9\x49\x84\x11\xed\xcc\xd7\x8f\x12\x67\x13\x32\x43\xf7\x68\x9e\xb6\x4d\x22\x08\x35\x7b\x9a\xfc\x83\xce\xc0\xdb\x43\xef\xdf\x2e\x20\x8c\xf1\x4c\xba\xee\x31\x62\x42\x78\x9c\x2f\xf1\x73\x77\x94\x36\xa1\xbf\x7f\xd2\x88\xd3\x62\x11\x36\x08\x2a\xf7\x3a\xf0\xf3\xb1\x18\xf4\x5a\x4e\x6b\xba\xb3\xb4\x96\xc1\xcd\xcb\x89\x6b\x85\x25\x0c\x09\xa3\x1f\x4c\xa3\x1e\x7b\x7d\x60\x20\xdb\x11\x6c\x77\xfc\xf8\x6c\x82\x8c\xcf\x23\xcf\x00\x3b\x29\x02\x6b\x9f\xae\x56\xf8\xd3\xbf\xff\xfc\xa7\xa6\xc0\x1d\x23\xbd\x84\x25\xed\x91\xd7\x03\x8a\x9b\x09\x8c\xb5\x5e\x4b\xc4\xb1\x12\xc2\xa9\x2f\x87\xe2\x16\x6f\xdf\x45\xa8\xd1\xfb\x9e\x36\xf9\x86\x0a\x21\x47\xd6\xe5\xcc\xce\x19\xa1\x84\xed\x65\x2d\x52\xdb\x33\x67\x10\xaa\x2b\xa6\x66\x67\xb3\xb4\x08\xb9\xaa\x22\x37\x49\x42\x91\xb0\xea\xe8\x3e\x4f\xf5\x46\x79\x82\xfb\xfb\x4f\x7b\xa5\xce\xb5\x32\x50\xe9\x37\x30\x2f\xe2\x74\xa0\x71\x94\x18\xbf\x1f\x3b\x97\x2b\x4f\x90\x4b\x37\x54\xd8\xeb\x3d\xc2\xa0\x71\xf7\x89\x20\xa3\x2d\x09\x84\x2c\xdf\x5c\x9f\x19\xa3\x9b\x09\x6d\x77\xa5\x1d\x3c\x16\x2f\x26\xc8\x77\x9e\xd3\xdf\x7d\x29\x88\x20\xa4\xbc\x2b\x29\x60\x34\x94\xb0\x3f\xd9\xfd\xa4\xe3\xd9\x02\xc2\x42\xad\x53\x0b\x55\x06\x47\x58\x08\x97\xf7\x7f\xbb\x45\xb0\x92\xb0\xc0\xc1\xeb\xd2\x53\x8d\x22\x42\x95\xfc\xdc\x8b\x4e\x0e\xdc\x84\x28\x9e\xce\xc2\x74\x13\x75\x02\xaf\x5b\xe6\xce\x2b\x36\xe7\x08\x2d\x13\x3b\x2f\xfe\xc3\xfe\xef\x92\x8a\x31\x67\xaf\xfd\x17\x16\x86\x6e\xda\x33\xaf\xbb\x84\xc1\xac\x00\xb1\x45\x6e\xda\xbf\xd8\x30\xfa\xb3\xbc\x58\xdc\xab\xae\x08\x5f\x67\x95\xce\xde\x68\x62\x48\xd8\x13\xa8\x6a\x2c\x26\xb0\x90\xd0\xe0\xdc\xa3\x55\xdf\x3f\x93\x70\x41\x75\xe8\x70\x96\xf1\x3d\x82\x57\xe7\xd1\xa5\x5c\x2a\x1a\x84\x0d\x57\x2e\xfa\xa6\xd4\xe7\x10\x14\x1f\x29\x3c\x35\x7e\xfb\x9a\xd0\x36\xe4\x7d\x64\x89\xcc\x57\x82\x89\x6c\x7e\xa5\xf6\xec\x8f\x84\x8c\x98\x04\xdf\x2f\xfa\x4f\x08\xb1\x19\x2e\x71\x27\x7c\x36\x11\x56\x07\x7a\x6c\x70\x8f\x37\x26\x88\xe4\xfe\x94\x0d\x49\x50\x25\x1c\x3e\xae\x5c\x33\xac\x5a\x45\xb8\xbe\x83\x67\xee\xd6\x3f\x19\x04\x3b\x6e\xbb\x61\xbe\x87\x65\x84\xa5\xc3\x73\x5f\x57\x4b\xca\x10\x52\xb4\x4b\x07\x96\xae\x3d\x4e\x10\xcc\x2a\xbd\x1d\xb6\xf9\x38\x21\x7b\xe2\x0c\x91\x13\xa6\x5b\x09\x8b\x79\xa7\x6e\x4a\xd7\x92\x22\x1c\x49\x33\x78\x50\x9c\x3f\x91\xb0\xc2\x7e\xf1\xfe\xec\xb6\x5a\x06\xb9\xbd\x42\x23\x16\xab\xef\x13\x1a\x65\x83\x6f\x4e\x21\x61\x36\x98\x18\x8f\xf6\x0f\x55\xec\x62\xc3\x23\x25\x1b\x2e\x51\x8e\x1d\x84\x2a\x8b\x20\x7d\x93\x8d\x13\x09\x5e\xd1\x42\xae\xaa\x87\x96\x11\x96\x70\xac\x75\xaa\x77\x2e\x21\x28\xcc\xfc\x39\x31\xf7\x50\x09\x61\xce\x02\xad\x53\x8a\x9f\xbd\x09\x13\x04\x91\x23\xd1\x11\x5a\x84\x85\x13\xdb\x0f\x69\x95\xab\xd1\x38\xde\x7f\x9b\x27\xb3\xad\x42\x9e\x50\xda\x30\x12\xf0\x21\x83\x8f\xf0\x4a\xf9\x70\xcc\xcf\x74\x30\xc8\x5b\x32\x5d\x36\xab\x58\x82\x20\x5d\xfd\xe6\xf1\x37\xc3\xd9\x84\x3b\xac\xe4\x82\x2d\x7a\x3a\x84\xa0\xb1\xc1\x53\x63\x56\x3f\x19\x38\x5a\xba\x96\x16\xf0\x08\x10\x1a\xc5\x4c\xee\x1e\xbb\xa8\x4f\x38\x95\xf1\x6c\x6b\x91\x88\x21\x8d\xb4\x6d\xd6\x79\xf9\xf4\x3b\x83\x2b\xb6\x4e\xfe\xaf\xee\x46\x11\x94\xea\x73\xde\x1e\xcf\x60\xc7\xee\x5d\x17\xee\xbf\x30\xf7\x61\x2b\xdd\x7a\x77\xef\x5e\x58\x64\x43\x78\x24\xa8\x1b\xe9\x31\xdd\xf6\xbf\xca\x50\xf1\x91\xef\xff\x6e\x03\x15\xe2\xe9\x8e\xf2\xae\x9b\x09\xbf\x9f\x3e\xba\x15\x58\xc3\x22\x08\x97\x3f\xba\xde\xb8\x26\x8b\xad\xa8\xac\x8a\xf3\xf8\x87\x1f\xb9\x7d\x2e\x9e\x7e\x1e\x6c\x50\x75\x98\x79\xcc\x5e\xed\x15\x83\xe1\x7b\xfb\xa4\x9b\x31\x89\x70\x37\xdb\xaf\x73\xa7\x92\x1a\x21\xe8\xd5\x97\xe7\x2e\x9b\x54\x09\x91\xa6\x0f\x4d\x62\x39\x8e\x12\x1e\x4a\x54\xaf\xc8\xdb\x77\x84\xe0\xe5\x36\xcd\x49\x48\xfa\x14\x0b\x9a\x07\xef\x2c\xaa\xfd\x09\x06\xda\x06\x71\x02\x66\x4e\x1a\x84\x69\xfd\xc5\x9b\xbe\x59\x0e\x30\x18\x2c\xb9\xb2\x5d\x6c\xce\x53\x42\x9f\xc6\xde\x90\xf2\x7b\x3d\x04\xf5\x17\x0e\x63\xa6\x65\x5f\x09\x43\xee\x49\xe9\x9b\xf6\x94\x10\x56\x9a\x34\xed\x5a\x34\x61\x80\x30\xdf\x7c\x0f\xc7\x40\xdb\x6d\x16\xea\x94\x53\x93\x95\xde\x69\x10\x2c\x2e\xf2\x89\xf3\x66\x44\x17\xc1\x5e\xb7\xf6\x4c\x9e\xd1\x18\x33\x0e\xc7\xa8\xf7\xb3\xc6\xac\x0d\x09\xa7\xcf\xad\x8b\xda\xb5\xf2\x0b\x83\x19\x4f\xec\x67\x9e\x0c\x51\x21\xbc\x29\x77\xe9\x3e\xa9\xe6\xcd\xc2\x85\x09\xa7\x35\x85\x8d\x7d\x09\x02\x21\x92\x57\x72\x5d\xfa\x09\x3f\xd6\x86\x9b\xfc\x2b\xdb\x6d\x83\x14\xbe\x45\xfb\x12\x8a\x43\xaf\xf6\xa8\xf9\x8e\x32\xd0\xf1\xcb\xcf\x32\x7b\xac\x4e\x70\x39\xf5\x55\x35\xe9\x7a\x37\x0b\x0e\x13\x16\x96\x68\x11\x07\x8d\xa3\xdf\x3f\xe0\x5d\x66\xa7\x2b\xa1\xb2\x67\xee\xcc\xf3\xf9\x2e\x6c\x68\x9f\xc4\xe8\x74\xef\xb7\x22\x54\x55\x1b\xd9\x4f\x58\xa6\x4e\x18\xb0\x11\xcb\xaa\x0d\x31\x27\xb4\xdd\xcb\x4c\xe1\x68\xf4\x67\xc1\x3b\xfc\x7b\xca\x96\x4e\x61\x82\x8d\x58\x8f\xb1\x2b\x38\x08\xb1\xf4\xbb\xa3\x57\x8f\x83\x70\x45\xf6\x82\xf9\xc7\x81\x59\x6c\x60\x8a\xbc\x95\xb7\x73\xf7\x30\xe0\xb5\x8d\xfc\x79\x5d\xdc\x83\x20\x7c\x4e\xd5\xc5\x65\xd3\x54\x36\x08\xe9\x68\xc4\x9a\x4a\xce\xf9\x2f\x70\x17\x68\xae\x3a\xd2\xb9\x97\x0d\x38\x6d\x5f\x22\x78\x65\x36\x61\xc9\xe2\x93\x83\xd3\x2b\x23\x08\x0e\x81\xdb\x79\xfc\x25\xab\x19\x4c\x7a\x2c\x5f\xf9\x4d\x30\x88\xf0\xad\xca\x53\x23\x3a\xdd\x8c\x0d\x5c\xf3\x73\x8c\xad\xb2\x85\x09\x55\xeb\x92\x2e\x45\xcd\xff\xc4\x60\xea\x59\xcd\x98\x94\x6f\x63\x0c\x32\x94\x27\x2f\xb2\x4d\xb3\xa1\x71\xa8\x99\x75\x3e\xf4\x38\x54\x4c\xe0\xbc\x9d\xbd\xc4\x40\xe3\x28\x21\x7d\xf3\x65\xed\x39\xa7\x62\x08\xd1\x6d\xc6\x2a\x96\x45\xd7\x59\xd0\x92\xfd\x64\xb1\x67\x42\x0d\x21\xf6\x46\xfb\x03\x21\x87\x6c\xc2\xc4\x81\xe7\x5c\x5a\x6b\xaa\x08\x05\x9b\xf2\xb2\x35\x62\x9e\x13\x14\x0a\x77\x19\xd6\x95\xdf\x23\xf8\xbe\xec\x7e\xfd\xaf\x88\x15\x5e\x95\x6e\xf4\xf7\x22\xbc\xfa\x39\x39\x70\xda\xeb\x48\x82\xc7\x92\x27\xbe\x0e\x01\x5e\x04\x8f\xb8\xab\x95\xc5\xdb\x5d\x08\x43\x6b\xde\x6c\xdd\xa9\xe4\x42\x98\x68\x56\xb2\x30\x74\xfa\x72\xc2\x2d\x21\x13\xb1\x16\xf3\xe5\x84\x63\x8f\xcf\x17\x33\xa7\x89\x10\xfd\x40\xee\xc5\xe5\x16\x39\xc2\xd3\x43\x62\x12\xc5\x3c\xb2\x84\xfc\x6b\xa5\x17\xbe\xe4\x65\x12\xda\xf5\xf3\xae\xe9\xbb\x59\xb1\x41\xba\xd4\x4b\xf1\x97\xbc\x29\x6b\xbc\x68\x1d\xfd\xe4\xc6\x18\x4f\x25\x04\x49\x37\x2b\x1d\x5b\xdb\x4e\xe0\xfe\xbc\xfa\xb0\xfb\x60\x17\xe1\x79\x6e\x6a\xda\x85\x47\x25\x04\xd3\xc8\x1b\x3b\xcd\x1e\xb6\x12\xda\x35\x25\x3c\x1c\xef\x95\x10\x78\xdb\xf6\x84\x35\xbf\x78\x4a\x38\x9d\xd5\x1f\xc8\xfa\xbc\x98\x30\xc3\xfb\xfc\x95\xf6\x28\x19\xc2\x3a\x15\xdd\x54\x6d\x31\xa9\xff\x13\x06\x3f\x8c\xd5\x0f\x76\x0b\xb3\xc1\xa4\xb8\x46\xe0\xe8\xb7\x46\x06\x3b\x6f\x75\x7f\x97\x8a\x99\x47\xe3\x18\x78\x7c\x54\xf3\xb7\x1d\x11\xfc\x17\x6c\xcd\x68\x73\x9c\x4b\xf8\xb5\x4e\xd8\x72\xe6\xf0\x1c\x36\x88\x09\x5b\x2f\x0c\xac\xec\x61\x50\x99\x6d\xab\x73\xb0\xc9\x9d\x60\xf4\x39\xa7\xe9\xf0\x22\x13\xc2\x9f\x0d\x33\x16\xda\x5b\x33\x04\x83\xf9\xca\x61\xb7\x8b\x57\x10\x0c\x3e\xda\x7e\x0c\x36\x9f\xce\x06\x54\x49\x24\x37\xfd\x5a\x41\xa8\x1f\xe1\xd7\x35\x0d\x7a\x42\x10\x5c\xf5\x75\x7f\x9c\xee\x1b\x16\xf6\xc5\xb0\xfc\xdf\xc8\x34\x12\x0a\xb6\x4d\xdb\xf8\xc3\x78\x02\x61\x80\xa3\x18\x81\x62\xcb\x09\x7b\x6f\xbb\xf6\xed\xb5\x7e\xc0\x40\x59\xe4\xf4\xad\xdb\x0f\xbd\x69\x1c\x15\x2b\x8c\xaf\xc8\xb5\xca\x12\x74\xb7\x2f\x3b\xf3\x95\x53\x84\xa0\xa0\xf1\x79\x0e\x8b\xef\x06\x61\xc3\x88\x9c\xd5\xe1\x83\xd9\xac\xf1\xa2\xf8\x24\xc8\xc6\xbf\x62\x3b\x21\xbd\x32\xe3\xeb\x5c\xa7\x6d\x04\xb3\x1d\x87\x07\x8c\x17\x82\xc1\xfe\x15\xb6\xef\xed\xf2\x85\x68\x1c\xae\x75\x4b\xab\xcf\xa5\xb6\x16\x61\x2c\x3f\x4f\x4e\x45\xe6\x6e\x11\x9a\x72\x45\x0b\x2a\x2d\x0b\x09\xa3\x6f\xe5\x5b\xb6\x0e\xe7\x13\xb2\x4e\x0f\x2d\x99\x9d\x78\x83\xa0\x13\x5d\x61\xf7\x6f\x68\xcf\xd5\x7c\x46\x4a\xcd\x9b\xf0\xf5\x6e\xde\x7b\x4e\x2f\x4d\x82\x85\x75\xc6\x9d\x00\x49\x0d\x02\x8f\x7c\xe8\xa7\x7d\x56\xe2\x04\xbb\xfc\xfb\x41\xf2\x4b\x65\x09\x6f\x67\x58\x2e\xde\xfc\x6b\x98\x41\xeb\xce\x09\xfc\xba\x9f\x0e\x13\x92\x56\x25\x6e\xaf\x08\x34\x27\xc4\x56\xab\xbe\x2d\x94\x3b\xc7\xc2\x46\x5d\x8d\x3c\x2d\x09\x0b\x42\xfc\xd0\xf1\x0d\x8f\x26\x6f\x22\x4c\xe6\x5e\xda\xbb\x47\xf7\x27\x03\xde\xcc\x77\x5c\x67\x62\xe7\x13\x8e\x74\xc8\x5d\x73\xce\x2c\x26\xac\x2b\xdd\x18\xf3\xdb\xb3\x98\x50\x29\x95\x96\x53\x7d\x66\x1d\x21\x66\xff\xfb\x56\xb7\x68\x09\x82\x41\xdc\xb5\x8e\x5b\x13\xbf\x31\x70\xd9\x94\xd9\x69\x3b\x9b\x93\xc6\xa1\x97\x1d\x35\x5f\xf8\xf0\x77\x06\x57\x9b\x8a\x2e\x09\x37\x38\x11\xf6\x5f\x3e\xf6\xf2\xd6\xe7\x24\xc2\xdd\x5d\x47\xaf\x6f\x71\x88\x60\x61\x78\xf9\xa8\xff\xef\x09\x0f\x09\xae\xfc\x5d\x56\xbf\x87\xf6\xb0\xc0\xbd\xd7\x7d\xcf\x87\xac\x61\x06\xef\x0a\x7b\x6f\x49\x5a\x17\x13\x76\x2f\x3f\xfd\xf4\x16\x67\x03\x81\xf3\x40\xf3\xbe\xca\xa8\x17\x0c\xde\x76\xc9\x1a\x45\x27\xf0\xd1\x38\x26\x5d\x5d\xe0\x19\x9c\x37\xc0\xc0\x67\xe3\x4e\xeb\xc8\x0f\x53\x09\x3b\xb5\xa3\xd6\xb8\xd8\x6a\xb3\x21\x90\x99\x78\xee\xb6\xce\x17\x06\x0b\xf5\x16\xc9\x35\xfb\xe7\xb3\x60\x33\xf7\x87\x47\x69\x52\x09\xa1\x57\x2f\x2e\xc0\xb6\xa2\x8a\xa0\x68\x70\xa0\x5d\xfa\x74\xcd\xdf\xad\x44\x8b\xe3\xf3\xb6\x06\xc2\x1f\x19\xf5\x50\x87\x86\x32\x82\xd8\x9c\x7d\x1b\xb4\xd7\xd4\x10\x84\xfc\xf4\xda\xbd\xfc\x6a\x08\x0a\x4c\x89\xf5\x93\x05\x37\x09\xda\xdc\x6b\x84\xb3\x78\xae\x11\x6e\x0c\x78\xd9\x98\x3f\xc9\x24\x8c\xc9\xb7\xee\xb3\xbd\x16\x43\x58\x7e\x2f\x79\x7f\xaf\xf8\x4d\x42\x71\xe3\x43\xfb\x53\x5c\x05\x04\xb5\x35\x23\xb6\x37\xae\x9f\x25\x18\x6f\x17\x0b\x13\x9a\x19\x49\xe0\xbb\x2a\xd4\x5d\x6e\xb2\x91\x85\x1b\x71\x62\xcd\xf7\xf7\x5d\x24\x1c\xf5\x9b\x94\x25\xb4\x32\x96\x85\xcc\x27\xd6\xe9\xfa\x7d\x59\x2c\x30\xe1\x53\x29\xa4\xe1\x06\x0b\xf7\x06\x15\x9e\x5c\xb2\x3d\x44\x58\xff\xb2\x47\xf7\xe6\xdf\x1b\x67\xaa\x78\x67\x73\xfa\xa8\x30\x8d\xe3\xf8\xd9\xb4\xfd\x37\xc3\xd4\x09\xbb\x94\xcb\x5b\xcc\x05\xcb\x09\xc7\xf3\x79\xc2\xe5\xcb\x4b\x09\x76\x5f\xb0\x70\x81\x4d\x19\x61\xdf\x6e\xee\xfe\x54\xd9\x5c\x42\x40\xd9\xa4\xf0\xe7\x9b\x66\x11\xca\xfc\x5e\xc5\xed\xc6\x89\x71\x8c\x6c\x3d\xc5\x11\xf9\xe7\x0c\xa1\xdd\x22\x3c\x32\x67\x76\x16\x21\x7c\xba\xda\xa6\x77\xbc\x96\x84\x21\x91\xa6\xd8\x0d\x8b\xac\x08\xdb\xb8\x54\x5a\xe5\xde\x13\xc1\x46\x39\xa6\xb6\xe4\x32\x1f\x61\x09\xdf\x5a\x6f\x6f\x03\x6e\xc2\x4a\xe3\x91\x93\x22\x9f\x7e\x31\x48\xdc\x99\x1b\xac\x21\x5a\x48\xd8\x28\x7a\xbb\xfa\xfd\xfd\x09\x84\x4a\x6f\xc3\xf7\x27\xde\x73\x12\xd4\xcc\xb1\xa4\xce\x78\x01\x61\xd6\xa3\xa6\x40\x4b\x35\x09\x82\x25\x9f\x6a\x6d\xaf\x05\x0f\x41\xdb\x6e\xea\x56\x89\x10\x0b\x82\xab\xb9\x8e\x9e\x61\xdd\x39\x36\x1c\xce\xf3\x33\xea\xfa\x7a\x84\x50\x65\xf9\x26\xe5\xe5\x8e\x11\x66\x1c\xcf\xae\xac\x5c\x7e\x81\x7b\x0e\x8d\x43\x6a\xff\xaa\x73\xdf\xda\x5f\x32\x38\x7c\x38\xd4\xc4\xf6\xba\x1a\x41\xfc\x2b\xfd\x1a\x14\x78\x48\xf8\xf8\xfb\xe3\xfb\x47\xd9\xf5\x0c\xe6\x16\xb4\xdc\xd3\x3c\xc1\x45\xd8\x1c\x33\x32\x10\x63\xf8\x9b\x19\x87\x51\xc9\x9b\x1c\xce\x85\x1f\x18\x88\x6d\x2e\x90\x98\xa6\x2b\x4b\xd8\xed\xb2\x2e\x70\x55\xf6\x3c\x36\xc4\xb7\xb8\xfb\x4f\x7a\x7c\x81\x0d\xc1\xcb\x6d\x6e\x54\xaa\x6e\x26\xec\xb1\x13\xb5\x32\x5f\x23\xc7\x06\xbf\xe0\xb7\x0e\xd7\xef\x6c\x26\x54\x4b\xbe\x97\x32\xcc\x50\x23\xa4\x5c\x4a\xf3\x5e\x38\x36\xc0\xe0\xb2\xa2\xe2\x2b\xff\x4a\x5f\x16\x1c\x2d\xfd\xa6\xec\x9e\x9f\x46\x90\xce\x75\xc8\xbd\xbe\x34\x8d\xf0\xf3\xce\x8b\xce\x90\x8f\x63\x0c\x06\x36\x29\x86\x45\xd4\x48\x12\x7c\xad\xce\x96\x54\xdc\x2a\x25\x08\x5c\x6a\xdf\x3c\x24\x50\x4c\xf8\xfa\xa2\xfd\x5b\xfa\xcc\x20\x82\x42\xff\x94\xea\x0d\x54\x4e\xf8\x54\x6e\xb2\xe6\x6b\xd7\x63\xc2\xbd\x09\xf6\xe6\x72\x96\xc9\x2c\x94\x1d\x78\x76\x4b\xfd\x55\x00\xe1\xd6\xd6\xb0\x5a\x4f\xbb\xa3\x04\xa7\x87\x87\xfd\x4e\x09\x10\x61\xea\xfc\x75\x89\x9f\xff\xe8\x12\x72\x4e\x7f\x8b\x8f\xd7\xe9\x66\x50\x3a\xc9\xe8\xf7\xef\x9f\x53\x08\x89\x13\xd7\xbd\x0b\x9a\x31\x89\x0d\xfe\x8e\xc2\xbb\x7e\x46\x0f\x32\x88\xe9\x78\x16\x1d\xd7\xf1\x8e\x41\xf2\x9a\x7b\x17\xe2\x95\xb9\x68\x1c\xaa\x1f\x3a\x34\xf4\xf4\xdf\x31\xa8\xce\x3c\x52\x10\x6f\x2d\x45\x98\x66\x77\xff\x80\xf1\xc2\x42\x82\x69\xa9\xde\xb6\x2b\x9c\xf5\x04\x3f\xa5\x9a\xcb\x8d\xe7\x2d\x09\xb9\xf3\xa3\xbc\xb6\xd5\xff\x60\xf0\x7d\xa5\x11\xb7\x8b\xe1\x22\x1a\xc7\x35\x15\xc5\xbd\x09\x11\x7d\x0c\x42\x2c\x0e\x6c\x19\x29\xd0\x23\xcc\x17\x6a\xba\xab\x70\x6a\x35\x21\x9d\xd7\x7b\x7d\xed\xd1\x29\x6c\xe0\x5e\x64\xbe\x7c\xbe\x5a\x53\x11\x9a\x39\x1c\x2e\x67\x9b\x2b\x12\x72\xfd\x9d\x14\x17\x08\xfa\xb3\xc1\xbc\xc1\xdf\xe9\x59\x67\x08\x1b\x36\xb7\xdf\xe8\xf6\xe2\x0c\x25\x78\x6d\x3a\x17\x12\x38\xb8\x86\xf0\x33\xc5\xd2\x74\xa1\x8b\x03\xe1\x6b\x87\xd4\x56\xcd\x9f\x9b\x08\x0f\x96\x9b\x96\x1b\xcd\xdb\x4c\x08\xe6\xdf\xac\x71\x73\x58\x85\xa0\xa4\xda\x57\x14\x6d\x14\x4e\x78\x74\x60\xf5\x81\xb6\x68\x15\x82\xfb\x99\xd5\xeb\xe4\xda\x7c\x08\x63\xd3\xcf\x77\x9e\xf8\x51\xc7\xc0\xb6\xfd\x73\xc2\x49\x2f\x2d\xfa\x0f\xac\xfc\xf7\x91\x55\x77\x11\x0a\xda\xf7\xa4\xad\x4f\xee\x66\xe0\x5a\x56\xd7\xb9\x5c\x56\x95\xfe\x2f\x78\x9e\x3b\x99\xfa\x63\xce\x42\xc2\x95\xa2\x48\xb5\x2d\xde\x46\x84\xc1\x57\x97\x26\x7d\x9b\xf0\x84\xe0\xd6\xf6\x30\xd2\x3f\xa7\xb2\x08\x37\x2f\x1d\xad\x71\x9d\x7b\x82\xc6\x31\xdc\x1f\xcd\x71\x37\x54\x84\xf0\xf4\xa4\xcb\x0c\x6e\x71\x3d\x82\x68\xd9\xf7\xb8\xa3\xab\x38\x09\x0a\x55\xfa\x4f\x4b\x3a\x24\x08\x9f\x53\x35\x63\xaf\xc5\x4e\x23\xd8\x73\xc9\x8c\xb6\xf0\x1f\x64\xc3\xb7\xe1\xf4\x4b\x99\x4f\xa5\x09\xc1\xeb\xba\xbb\x3e\x67\xaa\x12\x26\x5b\x2f\xe4\xf8\xfa\x35\x91\x20\xe8\x3d\x4d\x42\xa2\xc4\x9e\xd0\x52\xbb\xea\xe4\xa8\xe8\x3e\xb6\x22\xda\xe8\xa8\xf3\xe9\xae\x3c\xe1\xcd\x33\xd6\x12\x67\x85\x49\x04\x11\x57\xbf\xcb\x97\x0a\x39\xd9\xa0\xa2\x71\x52\x7d\xcb\xf9\x6e\x06\x56\x73\x6b\x73\x6f\x1b\xa9\x11\x64\xde\x17\x9e\xf1\x39\x5d\x47\xb8\x21\x60\xd4\xad\xdc\xd2\x4b\xb0\x6d\x09\xd7\xbe\x55\xde\x4d\x58\xaa\x1a\xb2\x7e\x88\xa7\x8c\xc0\x85\x0f\xad\x9c\x4b\x3f\x10\x5e\xae\x5b\x5d\xbd\xec\xfc\xbb\xbf\x0b\xd1\x5c\x78\x57\x5e\x23\x58\x75\xa5\xd6\x46\x3d\xc9\x20\x7c\x89\x7e\x71\xc2\xff\x53\x3d\x41\xf6\xe7\xe3\x54\x27\xee\x67\x84\x24\xb1\xc8\x5b\x6d\xb5\xb9\x04\xa9\x55\x9f\x4c\xde\x48\x27\x10\xe2\x3b\x4b\xf7\xde\x8c\x5e\x4f\xf8\xfa\xe5\xeb\xe6\xd8\x67\x7d\x0c\x32\x96\x4f\x7c\x97\xa2\xf9\x9e\x81\xe1\x25\x45\x21\xd3\x8c\x83\x34\x0e\xc9\x55\x1a\xcf\x4b\x94\x0c\x08\xf3\x62\x33\xa7\x7e\x73\x1a\x24\x1c\x5a\x60\xc3\x15\x37\x67\x90\x30\x3c\x8d\x33\xe3\x14\xf3\x8a\x05\x9f\x2f\xe9\x81\x57\xfe\x96\x5b\x9b\x7a\xaf\x4e\x7e\xfa\x8a\xb0\xb4\xa7\xa8\x51\x77\x4d\x27\xe1\x6a\xce\xe6\x0d\x31\x9f\xcb\x08\x66\xeb\xe5\xa5\x53\xff\xb0\x08\x6b\x54\x0d\xfc\x8e\x4c\x2e\x27\x14\x7c\xe7\xd6\xb8\xa0\xff\x77\x9a\x6b\xf5\x7d\xd6\x2a\xbc\xf5\x77\x25\x91\x08\x49\xa9\x0a\x27\x28\x0c\x06\x16\x4d\x7d\x7d\x87\xf0\xe4\x99\xb3\xdc\xd2\xf8\x44\xc2\xa5\xb7\xb1\x5d\x7f\x52\xe6\x13\x22\xcb\xa6\x47\x94\xaa\xed\x25\x0c\x1f\x08\x16\x2f\xfb\x0b\x3e\xff\xae\x82\xe4\x87\xce\x04\x21\x97\xd0\x63\x4a\xfb\xa5\x09\x2d\x75\xfb\xbf\x29\x08\x72\xb2\xe1\x97\xff\x7e\x21\xf1\xcd\x95\x45\x20\xd3\xfc\x55\x89\x93\x52\x09\x1b\x6e\xfb\x6e\x8e\x68\xba\x41\xe0\xf1\x92\xec\x28\xcc\xda\x4c\x90\xfa\xe8\xf9\xee\x67\x96\x19\xe1\x98\xee\x17\x23\x93\xd5\x56\x84\x9d\x87\xef\x4c\x7e\xfe\x50\x8d\xc0\x59\xba\xec\x6b\x82\xcc\xdf\x03\xc8\x48\xcc\xf1\xc1\x6c\x0f\x16\x9c\xf2\x99\xbc\x2f\x7c\x79\x04\x61\x6d\xee\x23\x51\x93\xf3\x08\xbf\x8d\x03\xec\x6b\x67\xe7\x11\xde\x3e\x30\xbb\x6e\xab\x3e\x89\xa0\x34\x7f\xc3\x76\x2d\xa3\x44\x82\x47\x07\xaf\xa3\xd4\x1a\x1e\x82\x80\x4a\x95\x67\x5c\xde\x35\x42\x94\x8b\xd6\x73\x95\x3d\x5b\xfe\x0b\x0f\x33\x32\xdc\xde\xdf\x96\x26\xcc\xab\xbf\x74\x72\xed\xb5\x22\x42\x64\xed\xc0\xf3\x2d\x31\x0f\x09\xbf\xc4\x55\x13\xfc\xfe\xbe\xca\x74\x41\x95\x77\x3d\x7f\x6f\xd4\xa7\x27\x0d\x1d\xd4\x8b\xbf\xc7\x82\xd1\x1b\xeb\x88\xe4\x37\x3a\x04\x01\x6f\x39\x91\xa3\xc3\x75\x84\x35\x7d\x5b\x7a\xd4\x14\x45\x09\xbc\x36\x7f\x06\xce\x35\xa5\x10\x5a\x3e\x2c\x16\xf3\xff\x8b\xff\x95\xd9\x0b\x8d\x7b\x65\x46\xcc\x08\xe5\x33\x0e\x4a\x3c\xe3\x5a\x44\xb8\xbe\xff\x71\xf8\x33\x4f\x0b\x42\x5c\x5f\xc9\xd4\xf8\x86\x5c\x42\xa8\x89\x9c\x61\xc6\x6b\x17\x82\x12\xb7\x90\xe3\xbf\x22\x20\xa1\xce\x49\x43\x6e\x6c\x10\x3c\x98\xd6\xfd\xec\xeb\x74\xc2\xc3\x93\x6d\x83\x2f\x47\x79\xd9\x50\xb3\x3f\x35\x7c\xa8\xbc\xa9\x08\x59\xef\x54\x0f\xf2\x36\xd8\x11\x62\x97\x7f\xe2\x12\x7a\x7e\x86\x0d\x9a\x2e\x3f\xee\x0c\x9a\x1d\x21\x3c\x4c\x08\xce\x29\x58\xac\x4c\x08\x89\x09\x18\xca\x7d\xca\x4b\xb0\x21\x4d\xc9\x13\x0d\xda\x84\x8a\xea\x6f\x82\xbf\xb9\x37\x11\x6a\x3e\x17\x2e\x3c\xc4\xeb\xc1\x86\xcf\xb6\x7b\x8e\xba\xea\xed\xa7\x11\x56\xc3\xc1\x80\xb1\x29\x84\xdb\x76\xf3\x77\xaf\x9c\xc0\x10\x92\x6a\xc5\xfd\xf7\x35\x34\x11\xe4\x96\x59\x55\xbe\xf1\xe3\x26\x38\x8b\xcd\xa9\x3f\x3b\xd1\x8e\x50\xf6\xf6\xf4\x93\x91\xe5\x8a\x84\x27\x77\xc4\xcf\x4f\x4d\x52\x20\xcc\x0c\xb2\x93\xdd\xc0\xd7\x48\x98\x9b\xb5\xe8\x7d\x44\x59\x03\x81\x75\xa4\x76\xc1\x1c\xe1\x5b\x84\xf4\x06\xcf\x8d\x63\x12\x65\x84\xef\x0b\x84\x6a\x1f\x7c\xbd\x47\x48\xba\xf2\x79\xe9\x48\xd3\x35\x16\x56\xea\xfc\x38\x6c\x2d\x1a\x4f\x70\x3a\x5c\xb6\x47\x5a\x39\x9e\xd0\xd8\xc6\xdc\xb0\xf4\x9c\x4b\x70\x69\x1c\x58\xae\x2e\x52\x42\x38\xd3\x8a\xa6\x66\xb1\x12\x82\xc0\xa7\x6d\xb5\x6b\x94\x8b\x09\x82\x6b\xa7\x1a\xc7\x36\xb3\xd8\x86\xca\xe2\x6c\xb9\x78\x9e\xe5\x13\xae\xd9\x85\xce\x55\x99\x13\x40\xe0\x3c\x2f\x67\x78\x5b\xc4\x8b\xad\xfc\x0f\x39\x95\xef\x2f\x77\xe8\x1e\x27\x7c\x55\xe8\x5b\x79\xc1\xf4\x14\x41\xa6\xd0\x40\x58\x5c\xa2\x9c\xe0\xa9\x71\x39\x74\xba\xf9\x29\xc2\xa9\xa0\x23\x89\x5f\x24\x04\x09\xcb\x5e\xbe\x79\xda\xa8\x5b\xc2\x86\x13\x03\x3e\x11\x29\xce\x45\x84\x98\x92\x90\x03\xff\x4a\xeb\x49\x4b\x13\x95\x6f\xf3\x09\x8f\x7e\x8a\xdf\x2a\xbe\x11\x45\xa8\x3d\x34\xbf\xec\x94\xd8\x16\x42\x95\x90\xf7\xdd\x51\xbb\x08\xd6\x78\x19\xfe\x55\xc4\xbf\xee\xef\xa1\x40\x79\xf8\xd5\xe2\xcc\xf6\x07\x84\x6e\x19\xb3\x8a\xc8\x5f\xa5\x84\x10\x51\xbe\xdb\x6b\x0d\x32\x09\xdc\x57\x47\xea\xb7\x88\x58\xb2\xe1\x5a\x5c\x4f\xce\x11\xf5\x55\x04\x56\xea\x97\xec\xad\xa1\x8f\x8a\x60\xb5\xfa\x8a\x60\xe9\x97\x5d\x04\x9f\x47\x61\xf9\xa1\xc5\xe1\x2c\x6c\xb7\x70\x37\x3f\x77\xf1\x31\x0b\xfb\x5d\xb4\x4c\x8e\xeb\x44\xb1\x10\x50\x90\x63\x7a\x2f\x20\x8f\x30\x73\xe7\x0a\x97\xe3\x8a\x87\x08\xb5\x2e\x9f\x32\x2e\xed\xac\x23\x6c\xe1\x08\xc9\xef\x5f\xd2\x40\xf0\xdb\x10\x1d\xac\x8c\x10\xc2\x92\x82\x8a\xd5\xed\x8a\x2d\x84\x57\xab\x7a\xb7\x5b\xde\x6d\x21\x4c\x39\x6d\xfa\x67\x57\xe4\x6b\x42\xcd\x4d\xc7\xf4\xef\x45\x4f\x09\x57\xc6\xd6\xbf\x76\x5d\xf2\x81\xc1\xec\x3b\xa7\xb9\x07\x9c\xd7\x10\xc6\x7a\xdc\x86\x2e\xe6\xa6\x10\x2e\x18\xaf\x33\xd3\x9f\x67\x45\x68\x4c\x79\x7b\x2c\x5b\xdc\x8e\xa0\x5b\x73\x66\xa7\xfd\xfc\xcb\x84\xdd\x47\x0e\xfb\xbf\x7f\x7c\x99\x60\xbb\xe0\xca\x35\x8f\xdf\xd9\x04\x67\xef\xf6\x67\xfc\x9c\x65\x84\xd5\xef\xa4\xc6\x86\xc5\xea\x58\xe3\xa5\x5d\x78\x40\x6e\xd0\x32\x84\x30\xb4\xf0\xf1\x1e\x75\xb9\x28\x16\xd6\x27\xb3\xaa\x76\x5c\xbd\x46\x18\x6a\x7a\xb2\xc4\xb2\xda\x8f\x30\x6c\x2f\x32\xed\xaa\x54\x3c\x41\xe7\x92\x85\xce\xcb\x91\xab\x04\x4f\x3e\x1d\xfb\x41\x9f\x1b\x2c\xe8\xc5\x05\xec\x8e\xaa\x79\xc4\x82\xe4\x92\x01\x4f\xee\x39\x45\x04\xce\xb8\x65\xbf\x07\x15\x16\x11\x54\xcf\xde\x98\xf9\x96\x43\x86\xf0\xb3\x6c\xf7\xca\xe6\xb3\x92\x84\xde\x5b\x56\xd7\x62\xd2\xe6\x10\xa6\xbc\xa8\x3f\x98\x2f\x77\x9c\x0d\x51\x01\x82\x36\x21\xf2\x07\x09\xdb\xa6\x78\x2f\x39\x6e\xb5\x84\xf0\xfe\xf9\xbe\xd2\xc4\xa8\x6f\x0c\x5c\x33\x17\x0e\x38\xf7\xb2\x63\x9d\xe2\x9f\x5f\x5d\xd3\xa7\x10\x46\x97\xf5\xeb\x14\xff\x12\xa6\x11\xa1\x89\x13\x57\x98\xdb\x13\xf4\x7f\x27\x98\x6a\x4f\x0a\x61\x41\x6c\x79\x91\x80\xbb\x7e\x1e\x21\x10\x66\x91\x2b\x7e\x45\x13\xb6\x9d\xae\x33\x1e\x79\x6b\x4d\xf0\xdb\xf6\xf8\x30\xeb\x60\x11\x03\x26\xd3\x4a\xcd\x56\x30\x8f\x60\xd3\x9a\x38\xea\x35\xad\xfc\xff\x44\x47\xab\x51\x67\x6c\x5e\x19\xe1\xf6\x0c\x33\xa3\x6b\x39\x65\x84\xd3\x4d\x9f\xc2\x3b\x8e\x65\xb0\xa1\xed\xe1\x15\xc9\x0d\xa7\x33\x08\x5c\x6e\x1b\x7b\xf9\x3c\x32\x08\x6b\x2d\xe6\x86\xa5\xb6\x44\x11\x2e\x5d\x10\xe4\x1a\xe4\x2e\x27\x94\x7e\x12\x65\x54\xbf\x97\xb1\x95\x95\xc9\xfa\x57\x9e\x4d\x2f\x27\xac\xfa\xe8\xf6\x6e\xee\xb5\x12\x16\xf6\x18\xdc\x08\xee\x52\x28\x27\xe8\xf5\x76\x7a\x35\x4c\xfb\x4f\xa8\xde\x57\x4f\xd2\x16\x2f\x27\xc4\xff\x0e\xbb\xa2\x7f\x3e\x85\xa0\xe5\xe7\x72\x6e\xf8\x46\x0a\x61\xaa\x86\x93\xe5\xf4\xcb\x15\x2c\xf4\x25\x3c\x1c\xbc\x14\x96\x42\x30\x2a\x1c\x78\xb8\x8f\x37\x85\xed\xe1\xf3\x26\x4f\x8f\xed\x28\x9a\x4d\x68\x9e\xf8\x61\x79\xf0\xc3\x45\x84\x30\xdf\x81\x1b\x82\x77\x15\xd9\xe0\xf7\x30\x4d\x36\x74\x31\x18\x58\x87\xd7\x04\x9f\xad\xc9\x20\xf8\x8e\x58\x2e\xfd\xb7\xf5\x26\xa7\x2d\x78\xb5\x79\x9b\x07\x8d\xc3\x1d\x92\x15\xa9\x33\x0c\xd8\xd0\xb2\xfe\x84\xb9\xf8\x87\x05\x6c\x08\xb2\x79\xe0\x7f\x98\xfa\x19\xe8\x7f\x8c\x39\xd0\x2c\xe6\xcc\xc2\xa6\x2f\xeb\x16\x2d\xd8\x5b\x43\x30\x9c\xf6\xc7\xf4\xd3\xd1\x7b\x04\xe3\x9d\x26\xaf\x3f\x1c\x29\x65\x61\x73\xb7\xe8\xb9\x66\xeb\x8e\x22\x3c\x5f\xf9\xac\x67\xcd\xe9\x52\x02\x8f\x58\xb0\xb9\xe3\xbd\x52\x42\x42\xd1\xd9\x67\x23\x37\xd9\xcb\xff\x20\xda\xb7\x7b\xda\x48\x65\x31\xe1\x82\x8d\xf3\xde\x68\x99\x32\xc2\x36\xcd\xb8\xcf\x0d\xbc\xc1\x84\x06\xbe\x67\xce\x83\x31\x01\x04\x19\x66\xf9\xef\x89\x6e\x01\x84\x81\x99\xd7\x2c\x02\xc5\xae\x10\xa6\x9c\xdc\x5b\x6e\xd8\x58\x42\x18\x5c\x11\x0c\xb7\x9f\x9a\x04\xef\xc9\xb1\xd1\x7b\x3a\x97\x12\x66\x2f\x39\xdd\xc6\xbf\xa4\x8c\x10\xa9\x57\xce\xf3\x3c\xa1\x90\x85\x9f\xa1\x7e\x6f\x52\x27\x15\x10\x32\xa5\xde\xd6\x8d\x1d\x8e\x22\x1c\x9b\xeb\x99\x3e\xb5\x62\x23\xc1\x79\x4b\x47\x24\xaf\xa1\x39\xa1\x67\x73\x93\xa4\xd2\xc0\x21\xc2\x7c\x01\x89\x8f\x31\xa3\xc5\x2c\x4c\xb9\xa3\xd6\x1c\xf5\x17\xdf\xe6\x3d\xee\xd8\xba\x8a\x8b\x20\x5a\xe0\xe3\x18\xbd\x7e\x16\xe1\x40\xc8\x11\xd9\x92\x5d\x65\x6c\xa8\xd2\x2a\x97\x1e\x08\x7f\x42\xf0\x5f\xdf\x15\x7a\x8f\xa7\x84\x60\x63\xf8\xfb\x9d\xf1\xaf\x62\x82\xc8\x85\xee\x90\x29\x27\x8f\x11\x72\x8e\xb7\xdc\x35\xea\x3a\x48\x28\x9a\xdd\xc6\xeb\x5d\xed\x4b\xb8\xf6\xfb\xf8\xf1\x54\xf5\xb7\x0c\x32\x2e\xb2\x0e\x79\xe6\x1c\xa1\x71\x54\xc3\xe5\x55\xcc\x23\x75\xc2\x40\xe5\x02\xd7\xbd\x5b\xc4\x08\x02\xd3\xed\xde\x09\x76\xed\x27\xfc\xce\x58\xfd\xf1\x4b\x71\x3e\x61\xed\xd8\xeb\x1f\xf1\x69\x9f\x09\xcb\x79\xd2\xde\xcc\x9a\x3e\x40\xc8\xb1\xf0\x1e\x7b\xa7\xfb\x85\xe0\x75\x90\x2f\xe7\xe5\xdf\xdd\x5d\x73\x6c\x96\xa3\xa0\x4a\x36\xe1\xe4\x4a\xb3\x7d\x82\x59\xe9\x2c\x94\x64\x0b\xcb\xff\xe0\xdb\x48\x58\xf7\xdd\xe5\xac\x7c\xe4\x79\x16\xb6\x84\x5c\xe9\x9a\x74\xbc\x8b\x20\xf2\xd2\x6c\x82\x75\x6e\x0b\xe1\x9c\xe7\x0c\xff\xf2\xaa\x52\x82\xb8\xe4\xa5\xd8\x20\x97\x65\x84\x39\x81\x91\x82\xd2\x97\x67\x13\xe6\xa9\xf3\xd7\x07\x1b\x37\x11\xa6\xbe\xc8\x78\xb0\x59\xae\x94\xe0\x79\xf0\xad\xd9\xc8\x7b\x1d\x42\xd5\xb0\x66\x4c\x75\xd5\x3b\x06\xf3\x02\x33\xfb\x38\x93\x85\x68\x1c\x76\x73\x6e\x7a\x4e\xd6\xe1\x24\x9c\x1e\xcc\xd9\x56\xfc\xf7\x4c\x69\xed\xa0\x7c\xc6\xe8\xa3\xd9\x7f\xe1\xbb\x6f\xe8\xf0\x5d\x71\x11\x42\xf8\xc2\x44\x8f\x04\xb7\x4c\x82\x99\xd1\x5c\x2d\xdd\xd1\x1c\x82\xbe\x54\xda\xd6\xab\x6a\x9c\x84\xca\xdb\xdc\x32\x69\x49\x93\x09\x4e\xf7\x52\x86\xcb\x75\x5f\x31\xb8\x58\x10\x5e\xe6\xab\xbb\x80\xc6\xd1\x61\x7b\x3b\x54\xb5\x4d\x80\x20\x9e\x3a\x65\x86\x59\xee\x43\x82\xf5\x4d\xbb\xf5\x9c\xf6\xb2\x84\xa0\xd3\x9d\x39\xdf\xa3\x1b\x08\xb7\x02\x2b\x72\xae\x9d\x9e\x4d\xa8\xe1\x11\x6a\xdc\x77\xc9\x92\x30\xd5\xef\xa6\x6d\x50\xaf\x0a\x41\xf3\x53\x5f\xef\x24\x9f\x07\x84\x2b\x39\xf2\xc9\xa5\x9c\x61\x2c\x9c\xfe\xa8\x72\xbc\xf7\xfb\x2e\xc2\x95\xad\x8c\xdc\xf3\xbf\x58\xc1\xd3\x6b\x7e\xf5\x90\x3f\xdb\xd0\xff\xf0\xe6\xa7\xef\xb1\xac\xb4\xed\x04\xe3\xac\x7b\x1f\x64\x2c\x5e\x31\x48\x67\x85\x5e\x31\xd6\x6f\x20\x18\x8c\x75\xbf\x37\xcc\xa8\x27\x7c\x09\x88\x3e\x7a\x3a\xa5\x8e\x10\xac\xeb\xbb\xfd\x1f\x5e\xa4\x37\xbc\x51\x9b\xdc\x4d\x90\xf9\xb5\x7f\xed\xbf\x92\xd9\x78\x62\xd1\x88\x52\x09\xe1\x99\x9a\xb2\x28\xef\xcc\x83\x84\x17\x53\x4b\x0e\x3c\xd5\x56\x20\xac\x58\x23\x22\xd7\xbf\x75\x21\xc1\xa3\x3a\x2f\xcc\x71\xc0\x87\x85\x7d\xeb\x66\x18\x19\xad\x4e\x27\x2c\x4e\x59\xe8\xbe\xed\xd6\x4a\xc2\x4d\xeb\x30\x63\x21\xcb\x70\x36\x5c\xde\xbd\xf6\xcd\x90\xb9\x16\x61\xe0\x80\xf4\x6b\xab\x3a\x79\xc2\xab\x57\x67\xa7\x1c\xf6\x18\x61\x50\xe8\xfa\xde\x41\xd7\x8d\x97\xb0\x7a\xe2\xfa\x3d\x51\xcf\x1d\x08\xe7\x1a\x73\x1f\x96\x6a\x64\x10\xbc\x7f\x8d\x5a\xdd\x2c\xdc\x41\xd0\x51\x1e\x7d\xbc\x78\x8b\x3d\x5b\x71\xb9\xbc\x56\xad\x2b\x4d\x83\x90\xec\x7b\xd1\xa0\x35\x25\x9c\xb0\x6c\x7d\x92\xe1\xdb\xc7\x0f\x09\x8d\x85\x35\x92\x5c\xb2\xf3\x09\x5a\xd3\x8e\x09\xbc\xea\x6d\x61\xc6\xf1\x21\xdb\xb5\xeb\xa8\x5d\x67\x11\x84\xd7\x5b\xaa\x88\x4a\x5b\x10\x16\xe5\x39\xee\xfc\xb1\xb8\x98\x30\x67\x9d\x13\xdf\x52\xf9\x44\x42\xe0\xd8\xf1\x13\xff\x8a\xfb\xe3\x33\xda\xcb\x22\x7c\x08\x8a\x42\x6e\x09\x69\x0f\x34\x09\x17\x26\xed\x7b\x35\x96\x92\x4f\x98\x2d\x93\x26\x75\x76\x51\x16\x21\x48\xd2\xc2\x68\xc5\xcd\x7c\x82\x6d\x78\x04\xdf\x9f\xbf\x43\xb7\x45\x96\xbd\xad\x4b\xf7\x22\x44\x5b\x1c\xa0\x89\xfa\xef\x19\x18\x8d\x4c\xd6\x75\x6f\xd3\x20\x78\x36\xba\x04\x5c\x9f\xb1\x84\x60\xb6\xf5\x4c\xe7\x9e\x86\x50\x16\x12\xdd\x3e\x3f\xbf\xfa\xb7\x2c\x8e\xf6\x4e\xbe\xf4\x69\x05\xa1\xc6\x3a\xa9\x42\xd5\xde\x9c\x85\x9c\x48\xc1\xd4\xb3\x0f\xea\x18\xcc\xd9\xb7\x7c\xc2\xdb\x23\x0f\x09\x7a\xf7\x73\xa3\xf4\x14\xd2\x58\x08\xd5\x91\xb0\xd0\x38\xf9\x8c\x50\xe2\xcc\x34\xac\xc8\x5c\x4b\xd8\xc4\x2b\xa9\x14\xde\x75\x9f\x70\xdc\xfc\x6e\xcb\x87\x87\xd9\x84\x85\x1a\x1f\x16\xca\x48\x17\x10\xde\x6f\x84\xed\x96\x9e\x08\x82\x4d\xea\x54\xf1\x17\xc7\x83\x58\xf8\x13\x3f\x18\x1e\xd7\x74\x9f\x10\xbe\x6b\xc3\x86\x8d\xae\xa2\x04\x81\xaf\xd5\xed\x33\xda\x75\x08\xa5\x0d\x31\x9f\xea\x38\x0c\x08\x0d\xd2\x37\x16\x2f\xf3\x2c\x23\xd4\xde\x4f\xde\x13\x5c\x93\xcc\x86\xca\x28\xe6\xf7\x73\xa5\x1d\x84\x3a\xc9\xdc\xc4\xcd\xca\xe6\x84\x15\x0e\x6e\x11\xfe\x8a\xbb\x08\x33\x3f\xa8\x2c\x70\xb9\xbf\x83\xa0\xa0\x54\xb3\x14\x5b\x78\x09\x9d\x59\xbc\x0b\x8c\xaa\x5f\x13\xce\xb7\x67\x1e\xea\x74\x7a\x47\xd8\x58\x52\x5a\xe6\x3c\xf4\x9a\xd0\xc5\x67\x2c\x56\x23\xdf\x4a\x30\xe8\xa2\x6d\xba\x9b\x78\x09\xad\x93\xf4\x62\x73\xff\x64\x11\xb8\x3b\xbc\x5f\xfd\x83\x73\xb3\xf7\xc4\x19\x07\x14\x09\xef\xc4\x25\xe1\x73\xfe\x3a\xe1\xa2\xd5\xcd\xc9\xa1\xc6\x95\x2c\xec\x1e\x3d\x5a\x5a\xb9\x84\x83\xf0\xa4\xf1\x88\x71\xf0\xf9\x08\x36\x4c\xc8\x36\x98\x9e\x6c\xb5\x83\x20\x67\xb3\xcf\x6d\x78\xf3\x23\x06\xfb\x25\x04\x04\x07\x76\x4e\xa1\x71\x4c\x70\xe2\x30\x1e\x16\xfd\xc8\x60\x58\x68\x73\xbb\x8a\xbb\x08\xa1\xa8\xd4\x3d\x7a\xf2\xa2\x62\xc2\xe3\xb7\x79\xb7\xe7\x9f\x8d\x65\xc1\x75\xef\x7e\xcb\x98\xe5\x77\x08\x07\x74\xac\x3e\x3e\xae\xb9\x4d\x38\xf0\xb9\xc0\xa6\xea\x47\x1e\x8d\x68\x5e\xdd\xde\x5f\x15\x46\xb8\xf9\xb9\x2a\x7b\x59\x6f\x2e\x0b\xba\x3b\x1e\xfa\x17\xa7\xaf\x26\x68\x4f\xed\xba\xa9\xbd\x21\x97\xe0\xe4\x53\x96\x54\xb4\x2c\x87\x50\xbe\xf4\xc2\x90\x5f\x6f\x09\xc1\x3e\x24\xe6\xb4\xf4\xeb\xbf\x27\x63\x1e\x99\xe8\xe7\x73\xb2\x08\x29\x9c\x67\x78\x59\x6f\x64\x08\xd3\xb2\xbc\xd7\x2d\xe5\xbe\xca\xc2\xfe\x17\x8e\x4d\x5d\xbc\x96\x04\x1f\xd5\xec\x32\xee\xe7\xdb\x09\xe2\x51\xaf\xc2\x97\xf0\xea\x12\xa4\x33\x03\x47\xcc\x7c\x6e\x12\xa2\xaf\x7e\x2d\x5e\x3d\xb7\x94\xa0\xd9\xfc\x9e\x4f\xe4\xef\x35\x6a\x8f\x9a\x93\xff\x8b\x4f\xb3\x08\x61\xeb\x5b\xe5\xba\x8b\xf2\x09\x52\xcf\xaf\x5d\xb7\xf0\xc9\x27\xbc\xb8\xd0\xff\x31\xa7\xc9\x8b\xf0\xcc\x2b\x5e\x36\xa7\x33\x81\x0d\x2a\x4f\x32\xe9\xff\x47\x55\xc9\x4c\x4d\xe2\xdb\xf9\x5f\xf0\x6f\xdd\x9d\xf7\x47\xcd\x9a\x10\x15\x72\x63\x7f\x84\xbf\x26\xe1\x8c\xb6\x8d\xfb\xc2\x3e\x2e\x42\x46\xb7\x46\x4d\xbf\xb9\x18\x81\xeb\x62\xe6\x5b\x7f\xf9\x70\x36\x2c\x3d\x67\x7a\xfe\xa3\xef\x10\x83\x90\x29\xcb\x8e\xb6\x4e\xe0\x20\xe8\xcc\xbb\x66\x75\x77\x31\x1f\x1b\x84\x14\xd5\x17\x2c\x5d\x93\xce\x8c\xc3\x26\xfa\x74\x5e\x60\xb1\x23\x8d\x23\x53\xf8\x5d\xc9\xd9\xb5\x45\x04\x75\xc1\xe8\xea\x2d\x4d\xcd\x84\xe6\x73\x7d\x8a\x72\x97\x5f\x10\x5e\x69\xbc\x3d\x24\x71\xae\x84\xe0\xba\xbe\xb7\x3e\x37\xba\x90\x30\x6d\x6e\x8d\xc8\xf6\xbe\x2d\x84\x72\x49\x2e\x09\xcd\xc1\x62\x06\x3e\x5e\x9e\xf3\x07\xe3\x5b\x09\x71\x36\x0f\x5e\x64\xec\xad\x23\xf0\x05\xce\x5e\x39\xbd\xf3\x0f\x83\x8b\x32\x3b\x13\x9e\xca\xcb\xd2\x38\xcc\xa6\xe5\xf4\x06\x38\xca\x10\x5e\x25\x85\x9c\x7c\x1c\xf2\x9e\x41\xfd\xfa\xb9\x12\x1e\xb2\x85\x84\xc9\x17\x24\x04\x1c\x7f\x3f\x23\x3c\x8a\x34\x10\x30\xe2\xeb\x26\x88\xf2\x7c\x9a\xdc\x68\x57\x4f\xe8\x51\x4b\xaf\xf4\xa2\x00\x42\x64\xd3\x9d\x8a\x3f\x3b\x78\x09\xef\xfd\x0c\x0e\x9f\x19\xbd\x46\xb8\xf2\xf2\xf2\xbd\xaf\xff\x1f\x26\x5f\xf7\x78\x94\xfa\xc8\x92\x10\xb7\xdb\xbe\xef\xea\x07\x39\xc2\xc0\xb5\x8b\xfa\x55\x07\xad\xd9\xc0\x9f\x33\x16\xff\xe6\x88\x3d\xe1\x8f\xee\xa4\x8a\x3b\xef\x32\x08\x81\x0a\x05\x9b\xaf\xf2\x9b\xff\x17\xfe\xa4\xf8\x86\x59\xdb\x2d\x23\x18\x3d\x2a\x39\xe3\x7a\x6b\x31\xc1\xee\xb0\xff\xe5\x9a\xfe\x54\x82\x91\xb7\xd5\x32\xae\x8f\xae\x84\x17\xf5\xbf\x77\x15\xa4\x3b\x10\x46\xcf\x87\x09\x2d\x15\xb4\x25\xf4\x3b\xce\x2d\x61\xa6\x0f\x31\x50\x9c\xec\xad\x5a\x25\x90\x4a\x70\xee\x76\xdb\x90\x39\x3b\x95\xc0\xf9\xa7\xea\xce\x3f\x8c\xd8\x3f\xfe\x9d\xfb\x17\x22\xb2\x0f\x5f\x38\xde\xb3\x20\x5c\xb9\xa6\xa2\xda\xfe\xcc\x92\x0d\xe2\xd1\x5d\x66\x7a\x0e\x2b\x09\x9b\x0e\x4e\xd8\x5e\x6b\xf7\x77\xdb\xe1\xf4\xbf\x2c\xdf\xa5\x4e\xe3\xa8\x5d\x52\xb4\xf3\x9a\xf0\x47\x06\xee\x1c\xe7\x9f\x0b\xbb\x6e\x27\xc4\xde\xf8\x71\xbc\xfd\xd0\x76\x82\x37\x6f\xaf\xde\xba\xc1\x41\x06\x4b\x3e\xca\x0f\xca\xdd\xfa\xc8\x86\xd2\x55\xef\x1f\x35\xb3\xbe\x32\x78\xf4\x28\x71\xd7\xa3\xba\x20\x16\xf6\x94\x7d\xcc\xef\xfd\x55\x49\x10\x2c\xfb\xf8\x26\x49\x62\x3e\x61\x85\x58\xe0\xa9\xb4\x55\x81\x2c\xd4\x26\x26\xc4\xda\x57\xe6\x11\x7c\x16\x89\x84\x9c\xa9\xc9\x23\x6c\x9f\xd5\xae\xa4\xf7\xc3\x8b\x85\xa8\x94\xf5\xf7\x22\x4f\xde\x27\x38\x68\xba\xbf\xfc\x07\x89\x4b\x6e\xdf\xa2\xfe\x22\xd5\x77\x52\x97\xb0\xde\x03\x42\x54\xe6\x8a\x08\x96\x43\x25\xc1\x64\x77\x74\xdf\x16\xbb\x6a\xc2\x2a\x65\x87\x8f\x01\x5c\xd5\x84\xf0\xfc\x82\xe6\x0e\xc9\x0a\xc2\x45\x5d\x97\xc1\x08\xd7\x7b\x84\x45\xbd\x85\x46\x7c\xd2\xb5\x2c\xec\xce\xd1\x92\x6d\x6a\x28\x24\x7c\xde\x30\x69\x8b\xde\x90\x17\x0b\x96\x6d\xc5\x39\x83\x11\xa9\x84\x97\xab\xce\xd1\xc8\xd5\x54\x82\x9c\xd6\x62\x46\xe2\x86\x20\x21\xb2\xdf\x3d\xee\xab\x52\x30\x1b\x94\x78\x8a\x35\x4f\xbe\xda\x4f\x40\xd7\x43\xde\x33\x2f\x14\x09\xa1\xca\x6e\x86\xbb\x64\xcf\xb1\x30\x10\x68\x71\xe9\x85\x5f\x06\x61\xe7\x98\xe0\x8e\xfc\x3b\x19\x84\x66\x9f\x00\xfd\xbb\x49\x91\x84\x60\x83\xeb\x3f\x37\xdd\x88\x24\x58\x3b\x7a\x35\xc4\xda\x14\x13\xbe\x4f\x95\x4e\x94\x56\xbe\xcc\x82\x81\xa3\x68\xf5\xca\xc5\x8d\x2c\x08\xe7\xad\x1c\x19\x29\x59\x41\x58\x6d\xb8\x58\x82\x76\xec\x24\xb0\x6a\x3a\x0a\xdd\xcb\x39\x09\xbf\x53\xd7\x5a\x8c\xde\xee\x26\x8c\x14\x17\x2a\x0f\x5e\x29\x24\x54\x4f\xf9\xfd\x7d\xf5\xa5\xd7\x0c\x74\x5b\x35\xf2\x9c\xee\x57\x10\x2a\xc3\x12\x97\x7b\xb6\xce\x27\xa4\xe7\x78\xba\x25\x2d\xf0\x21\xd8\x9c\x6a\x7c\xd2\xe2\xaf\xc5\x06\x41\x85\x43\x22\x1f\x79\xa6\x11\xe2\x03\x7f\x1c\xaa\x90\xd7\x23\x44\x3b\x09\xcd\x93\xe8\x6e\x2d\x82\xab\xdb\xb7\xdc\x5c\x15\x35\x1a\xc7\x96\xea\x94\x65\xa1\x6a\x3f\x19\xcc\x1b\xf0\x93\x69\x7d\x57\x49\x38\x7a\x79\x50\x46\x4e\x7f\x09\x21\xce\xa1\x5b\x2d\xe2\xfe\x54\x82\x83\x85\xdc\xf3\xdb\xe7\x26\xb0\xa1\xfb\x63\xfa\x23\x26\x8c\x87\x40\x1e\x4e\x8d\x0b\x0b\x35\x09\x89\x0d\x1a\x1f\x5a\x94\xb4\x09\xdc\x66\x23\x2a\xef\xeb\xc5\x09\xcd\x6b\x2c\x5f\xed\xd1\xe0\x24\x0c\x2e\xb6\x98\x66\x32\xa7\x93\x19\xc7\xf3\x7b\x52\xd7\x36\xf0\x6b\x13\xbe\x29\xcd\x5d\x7d\xb7\x23\x80\xe0\xc7\xf1\x2d\xeb\x88\xe2\x06\xc2\xed\x1c\x3b\xb5\xe7\x95\x2b\x08\x0b\x07\x1d\x26\x7f\xd4\x1d\x65\x70\xec\xe2\xd5\x98\xb6\x65\xea\x34\x0e\xbb\x7b\x87\x66\xde\x5d\xb5\xf6\xbf\xb0\x56\x25\xf4\xc0\x91\xcd\xb9\x6c\x18\xf6\x09\x51\xdf\x33\xef\x37\x33\x0e\xbd\x06\xbb\x42\x03\x2e\x51\x42\x99\xda\x55\x3b\xa3\x66\x2d\x82\xf3\xe4\x1d\x77\xd4\xc2\xc6\x18\x1c\xff\xf3\x51\xff\x9c\xc7\x00\x83\xc5\x4b\xce\x3c\xd1\xce\x50\xa5\x71\x38\x38\x67\x16\x98\xc4\xd8\xb1\xc1\x44\x7f\xf6\xf5\x9c\x9c\x8d\x84\xf2\x17\xef\xce\x18\x0c\x68\x12\x7c\x6c\xb5\x17\xbc\xcb\x59\x4d\xd8\x35\x49\x87\xfc\x0c\xf3\x09\x8a\xe1\xfb\x5c\xfe\xc1\x33\xd8\xa1\x2d\xa6\x3d\x81\x85\x38\x77\xc1\x99\xff\x0a\x7f\xd2\x8d\x3d\x3f\x27\xa6\x11\xda\x13\xcc\xcf\x7f\x71\x4d\x61\x8d\x97\xff\xc1\x25\x29\xd8\xe4\xe9\xba\x53\x04\xa5\x5d\xb7\x5f\x2f\x8f\x9e\x48\x78\x74\xe2\xd3\xe1\x66\xfe\x39\x04\x9d\xcc\xdf\x97\x6f\xd9\x24\x12\x24\xb9\x7f\x59\xed\x36\xbe\x49\xf0\x5a\xea\x3c\x55\xfd\xbe\x1b\x21\xe9\xa2\xd7\xf2\xad\x2d\xc5\x6c\x50\x59\xc9\xd8\x09\x54\xd4\x13\x9e\x7c\x75\xe8\xf4\x14\xaf\x23\x1c\xbb\x9c\x3f\xbd\xa9\xbc\x9e\xf0\xc8\x7d\x8a\xf9\x16\xce\x46\x82\x80\x5e\x2a\xef\x8e\xd4\x5c\xc2\x5b\x95\x83\x6f\x3c\xb7\x66\x11\xf8\x0e\x7f\x53\x2f\x58\x9f\x4b\x68\xd4\x37\x39\xd0\xfc\xa4\x95\x81\x86\x86\x59\x53\xe2\xdc\x1f\x0c\xce\xe9\xc8\x5a\x72\xbd\x88\x21\xfc\x9a\xc0\x59\x1e\x32\x56\x48\x48\xad\xeb\x99\x29\xa0\xb6\x8a\x70\xa3\xf9\xa5\x17\xff\xf1\x43\x84\x1d\x1c\x12\x3b\x4b\x87\xa7\x13\xe6\x0b\x8f\x38\x2e\x4b\xf9\xc6\xe0\xd4\xac\xc5\xcf\x32\x56\xf6\x31\x58\xeb\xf8\xa4\xc8\x54\x64\x01\x8d\xa3\xf2\x96\x6a\x6e\xc0\x84\x2f\xcc\x38\xc4\xa3\x02\x02\x33\xac\x46\x18\x94\x9b\xe6\x07\x26\x6c\x88\xa0\x71\xb4\xca\x97\xef\xae\x54\xd3\x27\x84\xf3\x1f\x91\x72\xdc\x25\x4a\x48\xae\x4e\x6a\x97\xff\xbe\x96\x0d\x4a\xaf\xc4\x84\xb1\x53\x85\x0d\xd5\xae\x3f\x8c\xeb\x87\x17\x12\x82\x53\x1d\x6f\xd7\x6b\xaf\x27\xe4\x6d\xb9\xb5\xf3\x9c\xd9\x08\x83\x3f\x9c\x73\xdb\x07\x2a\x1b\x08\xd6\x22\x87\xa5\xa7\xc7\xd6\xb1\xa0\x63\x32\x37\xb8\xf8\xef\xcd\x55\xd9\xd6\x60\xdd\x4a\xcf\x52\x82\x86\xc2\xce\x6c\xcd\xd4\x50\x42\x6b\x90\x2a\xf7\x98\xfa\x6e\x16\x82\xd6\xde\xfd\xc8\x25\x54\x46\x58\x3f\x5f\xd8\xb7\xec\xd8\x65\xc2\x2a\xeb\x5e\xbf\x09\xdf\xc3\x09\x09\x08\xe8\x73\x5d\x79\x99\x90\x32\x53\xe1\x13\x06\x2f\x13\xae\xb8\x9f\x79\xd2\x34\x5a\xce\x20\xfb\xbd\xb0\xe0\xc7\xee\x08\xfa\x0f\x18\xcc\x79\xd6\x55\xe5\xfc\x9a\x19\x47\x5f\x64\xf2\x4f\x73\x51\x57\x1a\x87\xf8\x69\x61\x69\x1b\x89\x22\x42\x78\xc5\xd1\x08\x43\x9f\xed\x84\x9b\x2b\xac\x9f\x18\x08\x94\x10\x36\x07\x91\x6b\xca\xcc\x32\x82\x8e\x41\xe4\x7d\xcf\xe6\x34\x82\xe9\x90\x65\xcb\x8a\xa5\x11\x6c\x08\x96\xda\xfe\x55\x63\x55\xc4\x7f\x0d\xe9\x8e\x5d\x95\x5a\xfd\xe4\x0c\x61\x73\x41\x52\xab\x46\xd7\x61\xb6\xf2\x3f\xa8\x1d\xe6\x15\x49\xe8\xb7\x21\x24\x2f\x0f\x8f\x96\xf0\x54\x24\xb4\x29\x5a\xdd\x96\x5d\xf2\x85\x41\xdd\xac\x88\xa5\x06\xbc\xb9\x84\x29\x33\x78\x99\xbe\x2d\xbb\xd8\xa0\xd8\xea\xf6\x4a\xdc\x52\xea\xbf\x10\x11\x96\x3d\x63\x30\xa8\x9d\xc1\xde\x7b\x17\x77\x45\xc7\xae\x20\xac\x19\x9b\xbe\xc6\x4e\x48\x92\xd0\x7c\x61\x0d\x23\x9a\xfa\x94\x20\x9a\xdf\xb8\xeb\xd4\x90\x0c\x61\x60\xd6\xfa\x84\x42\xef\x62\xc2\x86\xe9\x9a\x7a\xcf\x52\x8b\x09\x76\x0d\x15\x91\x51\x85\xd9\x2c\x54\xf0\x9d\x90\xf2\x97\x78\xc8\xc2\x4b\xdd\xb3\x25\x51\x9d\xa5\x84\x48\xcd\xdb\x63\x3e\x7f\xcb\x61\xd9\xfe\x44\x91\xe1\x27\x04\xb5\x3b\xfb\xe2\x4f\x38\x55\x10\x5e\xfe\xac\x51\x70\x50\x2f\x25\x5c\xa9\xf2\x8d\x9b\x97\xc4\x4f\x90\x76\x09\xbd\x74\xc0\x39\x96\x70\xa7\x66\xf0\x75\x51\x97\xe5\x7f\x81\x7f\x4f\xe6\xca\x17\xc7\x66\x12\x8a\x7e\xf3\x95\xed\xd9\x12\xc2\x42\x43\x77\x9f\xea\xe4\x79\x39\x2c\x1c\xce\xf5\x73\xf6\x55\xea\x61\x41\x24\xf9\x03\x29\xfd\xca\x26\xe4\x57\x2c\xb3\xd8\x2b\xe1\x46\x78\x73\x22\x3b\xe4\x4f\xb0\x1b\x21\x39\x5d\x5c\xea\x9e\x80\x01\x81\x77\x66\x70\xf4\xf2\xfb\x85\x84\xc1\x69\xbc\x3f\x95\xff\x3f\xf4\x1f\x9a\xd9\xbe\x59\xb8\x9c\x70\xfc\x49\xd4\x0f\x0e\xb7\x52\x82\xe4\xf6\x3f\x4b\x17\x2e\x2a\x27\x18\x4e\xaa\xfb\x9d\xc8\x53\x47\x68\x4e\x4d\xe4\x35\xbf\xd2\x40\xf8\xa5\xdc\x78\xf7\x2e\xe3\x47\xe0\x79\xa9\x95\xa8\x3d\x6c\xc0\x06\xff\x25\xb7\xb7\x34\x1e\x3c\x40\xf8\xa9\xf4\x7b\xfe\xba\xa5\xef\x19\x5c\x30\xf2\xae\xb0\x31\xe7\x20\x0c\xfc\x16\x96\x98\x62\x59\xc6\x06\xc7\xbd\x4b\xb6\x6a\x75\xad\x65\x83\x94\xd3\xa5\x97\x55\x4e\xcd\x84\x00\x0b\xa3\x07\x67\x4e\x95\x12\xca\x55\xf7\xf1\x3d\xb0\x5c\x40\xf0\xbe\x7c\xa2\xb0\xd7\x79\x90\x41\xfa\x44\x11\xcd\x00\xe1\x09\x34\x8e\x98\x2d\x4f\xe7\x73\x9d\x6a\x2b\x82\xa9\xb1\x71\x7a\xc1\x95\x3a\x16\x3c\xb8\x7b\xb9\x75\xe7\x75\x10\xbe\x44\x27\x38\x3d\xde\xe1\x42\x38\x5a\xc5\x7a\xe4\xcd\x2d\x49\x50\x1b\xbc\x38\xcd\x30\x2d\x96\xa0\xfb\x75\xb2\xc2\xe8\x7a\x49\xc2\xcd\xf4\xc1\x77\xeb\xdc\x2e\x13\x6e\x4d\x1e\xd4\x0d\x3a\xb1\x8f\xe0\x52\x95\xa6\xfc\x9b\xe5\x44\xd0\x7e\xf4\xf3\xeb\x8c\xc7\x7b\x09\xc2\x7a\x01\x55\x16\x71\x4e\x84\xec\x53\x21\x11\x7e\xf1\x47\xd8\xca\xc9\x34\x01\x2f\xe1\xcc\xe4\x22\xac\xb3\xf6\xb6\x98\x76\xc6\x8b\x70\xdd\xe6\xa0\x11\xbf\x75\x3d\x83\x8a\xad\xed\x2e\xfe\xa9\xd3\x08\x22\x3d\x27\xbc\x8f\x96\x6b\xb2\xe1\xd7\x28\xce\x5f\x6f\xf9\xc9\x20\xec\x5d\x3b\xa7\x67\xfe\x24\x1a\x87\xd9\x42\xfe\x4c\xdf\x43\x0a\x6c\x78\xc3\x65\xcd\xb3\x65\x4d\x6b\x11\xc4\xd6\x70\x4c\xe8\x6c\xe0\x24\x68\xca\x49\x39\xba\x2a\x4f\x26\xd4\x14\x48\x6c\xc8\x3f\x6a\xca\x86\x9b\x7b\x15\x37\x0d\x9b\xb2\x8a\x20\xb6\xbe\x62\xd1\x9f\x3f\x6a\x04\xcf\xe7\x3f\x76\x7d\x4f\x90\x24\x44\xac\xe7\x3e\xea\x24\x30\x9b\x0d\x6f\x67\xd4\xf2\x18\xb8\x4c\x27\x8c\xb4\xfc\x61\xcc\xd7\x6a\x12\xc4\x76\x24\x6a\x1e\xdd\x33\xc8\xc0\x55\x67\xba\x4c\x44\x94\x01\x8d\x63\xd2\xcc\xb3\xce\x1a\xd6\x0b\x09\xaf\xd3\x58\x8b\x45\x2d\x5e\x30\x78\xeb\x7b\x6b\x40\xf8\x00\x3f\xfd\x5f\xe0\x14\x99\xc2\xbc\x90\x59\xf0\x5f\x38\x6c\x29\x1d\x76\x4e\xa6\x99\x41\xcb\x91\x4d\x85\xbf\x54\x56\xfe\x9d\x20\xfb\x2e\x88\xb6\x9e\x65\x41\x64\x74\x71\x17\x97\x5a\x01\xe1\xe7\x1a\x1d\xb7\xc7\x7e\x4f\x09\x27\x9f\x1d\x6f\xff\xbc\xad\x84\xd0\xe0\x4f\x32\x4f\x85\x0a\x08\x26\x8b\x79\x86\x9b\x67\xac\x21\x98\xda\x0b\x6c\x5a\xfa\x48\x87\xa0\xe7\xe3\x36\xdb\xab\x7f\x2e\x21\xd1\x77\x23\xc7\x12\xd7\x07\x04\x6e\xd3\xd4\x6d\xd2\xbb\x1f\x12\x6a\x9e\x86\xe8\xa7\x9a\xc9\x10\x8a\xce\x4c\x91\x7f\xc6\x25\x48\xf0\x9e\xce\xa7\x63\xa3\x13\x49\x28\xcd\xad\xb7\x5f\xb1\x6c\x88\x41\xe4\x04\xab\x60\xfd\xa4\x09\x04\xcd\x1b\x0f\x2e\x0c\xc8\xfe\x64\x50\x70\x44\x6c\x47\x4d\xd2\x44\x82\x68\xdc\x62\xa7\xd6\xac\x49\x84\x3d\xb7\x99\xe3\x56\x33\xb7\xb1\xc1\xa7\x75\xa1\x5a\xbf\x2f\x07\x1b\x84\x27\x0a\x5f\xc0\x2d\x19\xc2\xa2\x6c\x9d\x19\x5b\xd4\x13\x59\xb8\x64\xa7\x9e\x30\x72\xa2\x9e\xc1\x6e\x3d\xe7\x55\x73\xfe\xae\xfc\xff\x83\x19\xc7\x77\xd1\xc4\x49\x1f\x18\x6c\x16\xe5\xba\xd8\xa4\xb0\x82\x30\xe3\xbb\x6f\x5f\xc1\xd4\x87\x04\xaf\xe4\xa4\xcc\xe1\x9d\x6d\x84\x1d\xd0\x58\x1f\x5c\x5c\x47\xe0\x5f\x59\x17\xb6\x78\x61\x0d\x21\x56\xd0\x79\xe7\xe9\x8d\x75\x84\xf0\xb3\xe7\x35\xa7\x1f\x6a\x24\x6c\x88\xbc\x7c\xe8\x81\x4a\x37\xe1\xbb\xdc\xcb\x60\xe5\x69\x03\x04\x9d\x94\xe8\x0d\xfa\x37\x3a\x08\xcf\xfa\xdf\x5e\xbf\xe0\xc7\x22\x9c\xf6\x14\xf4\x38\xe0\x92\xc5\x42\xdf\xf9\xe3\xee\x03\xad\xdb\x09\x8d\x89\xd3\x3d\x17\xf5\x3d\x20\x2c\xb2\x92\x53\x0e\x17\x50\x24\x98\x68\x3b\xcd\xea\x38\xa5\x48\x08\x94\xfa\x79\x2c\xe1\x96\x08\x61\xf8\x01\xab\x44\xab\x4e\x82\x30\x9a\xc8\xb3\xba\xce\x50\x91\xd0\x1e\xa6\x54\x78\x7d\xe5\x5c\x42\x92\xbc\xc5\xb6\xe0\x16\x69\x42\xda\x5e\xef\xcd\x92\x72\x1f\x19\xa4\x9a\xd4\xed\x15\x5b\x2e\x4a\xe3\x98\xb3\x5c\xc8\xf7\xe2\xe5\x39\x84\xf4\x19\x7e\xfa\x82\xe2\xf2\x84\xe2\x3e\xc3\x77\x0e\xdc\x1f\x19\xe8\x1c\x0f\xdd\xe5\xbe\x60\x2e\x8d\x43\xb9\xb6\x5e\x90\x95\x39\x91\x0d\xd9\x2c\xb3\x35\xf1\xef\xf2\x08\x07\xe6\x0b\xcf\x3a\x66\xa3\x44\x28\x14\x4f\x77\x95\x59\x32\xc8\x40\x64\x35\x6d\xd6\x2f\x91\x23\x58\xea\x70\xe7\x16\x14\xad\x24\x98\x4a\x88\x0f\xfc\xc8\xea\x60\x70\xf5\xfd\x95\x45\xbe\x9e\x06\x34\x0e\xbb\xab\x3f\x17\x6c\x8c\xe8\x62\x70\xfa\x65\x9e\x52\x07\x87\x04\x8d\x63\xc2\x83\xb0\x05\x0b\x2d\xdc\xd9\xb0\x3e\xa1\xfe\xa8\xc3\x87\x6b\x6c\x90\xd3\x3c\x6e\xbc\x68\xc2\x7b\x06\x0b\x92\xe5\x5b\xa4\xf7\x08\x10\x62\x6a\x72\x4e\x3e\x59\x25\x44\x70\xe9\xbc\x20\x9e\x72\x52\x9a\xc0\xc5\xf3\xb1\x69\x43\xfa\x45\x82\xa0\xf0\x97\xb5\x8b\xcc\x4c\x09\x61\xf7\x77\x88\x8a\x37\xae\x27\x3c\x36\x58\x16\x7e\x33\xd4\x8c\xf0\xcb\xee\xe8\xb5\xd8\xc3\x1a\x84\x0b\x46\x57\x39\x5a\xa7\xac\x20\x28\xc8\x70\xaa\xf5\xee\x53\x64\xc3\xde\xc2\x6d\x47\x9b\x0e\x24\x14\xa1\x6f\xb0\x58\xe3\xa8\xc7\x65\xc2\xfc\x23\x96\x36\x47\x8a\x0f\x10\x6e\xbc\x7e\x1a\xbe\xd8\x6f\x1f\x5b\x59\x7a\x2d\xad\x45\xef\xe3\x52\xc2\x5c\xd7\x59\x63\xfe\x2e\x76\x84\x64\xbb\xf0\xdf\x77\x0c\x6f\x11\xea\xf7\x7e\xee\xcc\xb9\xf6\x9a\xc1\x4c\x53\xae\x84\x5f\x01\xa6\x34\x0e\xc7\x4a\xa3\xbe\xc0\x17\xf5\x0c\x86\x6f\x2f\xdf\xd7\x23\xc6\x45\xe0\x39\xd4\x9f\xf6\xb2\x9e\x83\x90\x37\x2a\x3e\x77\x42\x8e\x14\xa1\x34\x36\xd5\xe7\xe5\x46\x3e\xc2\x8a\x57\x0e\xd3\xc2\x73\x16\x13\x9c\x65\x62\x5f\xf7\xc6\x7f\x64\xf0\xe2\xc8\xae\xd3\xf2\xd7\xc4\xe9\x3f\xf0\x26\x30\x54\xda\x7f\xa7\x39\x61\xe0\xb9\x76\xc1\xaf\xad\xc7\x08\x27\xef\x57\x0f\xac\x2c\x5a\xf8\x5f\xd8\xd4\xd1\x15\xc3\x5d\x49\x84\x37\xf7\x72\x5c\x54\xa3\x67\x10\xfa\xbe\xbf\x56\x08\xf2\x16\x23\x94\x78\xf4\x2e\xeb\x08\xa9\x2f\x42\xcf\xa2\xd9\xa5\x2c\x05\x1b\x82\xe4\xbc\x69\xc5\x27\x96\x6c\xa5\xf1\x12\xbf\xd2\x69\xe8\xcb\xc9\x3c\x06\x5f\xbb\x46\x3e\x4f\x0f\x34\x25\xa4\x74\x6c\x3b\xef\xdf\x3c\x85\x60\x39\x3b\x23\xbe\xa3\x66\x26\xe1\xd1\xd2\xb8\xdc\xb3\x5c\x93\x08\xcf\x8e\xa9\x65\x37\xf3\x44\xb0\x10\x10\xb0\x6a\x69\xda\x9a\x87\x84\xe6\x20\x4f\x89\x39\xc9\xf7\x09\xae\x9b\x46\x23\x95\xa2\x33\x58\x98\xbe\x68\xf7\xc5\xb5\xfc\xc5\x84\x9b\x75\x96\x0e\x93\xcd\x4f\x12\x72\x84\x1e\x54\x2d\x35\x51\x61\xc3\xcf\xf2\x7e\xee\xb6\xac\x11\x06\x47\xaa\x99\xd1\x8b\x59\x5b\x08\xb9\xd3\xaf\x3f\xb5\xae\x5d\x4e\xb8\x91\x7e\xa9\x69\xfa\x3c\x41\x42\x19\xe7\x40\xe1\xd5\x67\xdc\x04\x95\x96\x2e\x83\x90\x34\x53\x42\x3b\x3f\x29\xf0\x25\x06\xb1\x61\xd3\xc1\x87\x26\x42\x71\x9b\x08\x4f\x8f\x2a\xff\x90\x9f\xb5\x9c\x70\x93\xd9\xdb\xe3\x76\xcd\x84\xe0\xb3\x6e\x74\xb7\x95\xd9\x42\xc2\xe3\xb4\x0c\x56\xcf\x40\x14\x0b\xc1\xf7\x86\x8c\xb5\x33\x1b\x59\x38\xe6\xb1\x7e\xd2\xde\xc2\x46\x16\xea\xb7\x2d\xda\x26\x25\xc1\x22\x64\x2d\x0b\x7e\xba\xec\x41\x09\x61\xcd\x86\x6e\x19\xc5\x7f\xb8\xa8\x11\xaa\xec\x76\x86\xd0\xf2\xa7\x6f\x97\xa0\x66\x69\x11\x4c\x5d\x5f\xb6\x71\xde\xd8\x44\xe3\x38\x98\xed\xb6\xf5\x51\xa0\x14\xa1\x66\x1f\xe7\xf3\x85\xbc\x60\x20\xbb\x59\x2b\xe3\xf9\x1c\x3d\xc2\x56\x33\xeb\x47\x5e\x4f\x56\x10\x44\xb4\xd4\x25\xdc\x3f\x4c\x61\x43\xa5\xbb\xb2\xaf\xda\x37\x25\x36\x84\xec\xde\xf6\x69\x63\x7a\x07\x03\xab\x47\x9c\xfc\x53\x1c\x1d\x09\x2d\x91\x5c\xdb\x82\xf6\x0a\x11\x34\xf5\xb6\x0c\x71\x95\x7b\x10\xf4\xb3\xd6\xd5\xd4\xa7\x5b\x10\x2e\xcf\xb8\xc4\xa9\x92\x52\xc0\x1a\x2f\x1e\xfb\x5c\xef\x26\x86\xf6\x30\xe8\x6b\x6f\xca\x39\x3b\x55\x9b\xb0\xbb\xc8\x70\xaf\x43\x88\x14\xc1\xe6\xca\x2d\xc3\x27\xbe\x02\x04\xf5\xea\xcb\x26\x2a\x7e\xea\x84\x93\x1d\xda\x7d\x4c\x89\x2c\x8d\xdc\xb9\x23\xb4\x6f\x17\x17\xe1\xc7\xb7\x26\x9c\x09\xe2\x24\xa8\xac\xd7\xdf\x68\x7b\x6a\x2b\x1b\x46\x2d\xee\xb5\xe8\x4f\xc9\x62\x30\xd9\xed\x7d\x4d\xd7\xd3\xef\x0c\x0a\x57\x6f\xda\x39\xdf\x2c\x8a\x50\x24\xd4\xaf\xaa\x60\x15\x45\xb8\xab\xa7\x61\xfe\xd2\xe0\x11\x0b\xdf\xfc\x4b\xa7\xfc\x2b\xa9\xa5\x33\xca\xdb\x76\x99\x12\xea\x24\x46\x13\x4e\x16\x99\xb1\xa1\x62\xfe\xee\x27\xf6\xe2\xea\x04\x3d\x67\xc3\x33\x2a\x13\x57\xb1\xc1\xbe\xa9\x20\x77\x77\x70\x2f\xc1\xf0\xe2\x32\xcb\xe9\x69\xbd\x84\xd4\xd6\xd5\x07\xfe\xc1\xc3\xbc\x76\xd6\xe5\x79\xc5\x04\xaf\x89\x12\xf1\xa7\x5b\xf2\x08\x6f\x3e\x7b\x72\x9e\x3a\x52\x46\x48\xf9\x52\x3f\x7f\xa7\x44\x0d\x21\x4e\x70\x63\x6e\x9a\xbe\x0b\xa1\xfc\xa8\xda\x29\xfe\x79\x5e\x84\xe4\x39\x77\x67\x4a\x68\x9f\x21\x2c\xe0\x6b\x38\xbe\x65\xae\x17\xa1\x79\xb5\xba\xe1\x9e\x0b\x79\x84\x44\x7f\xe5\xa1\x9a\x0b\x19\x04\xf7\x39\x29\x41\x1d\x32\xc5\x84\xc2\xdb\x99\x15\xe5\x15\x55\x84\x47\xea\xb7\x6f\x72\xbc\x58\x43\xb0\xe8\x94\x7b\x2f\xd8\x34\x95\xd0\x57\x9a\x3c\x3f\x7c\x97\x30\x1b\x06\x8c\xcd\x17\xbc\xf4\xeb\x61\x20\x98\xb4\x63\xba\x1f\xc7\x53\x42\xec\xf1\x3a\x13\x0e\xa1\xa7\x2c\xa4\x18\x2f\x6f\x0c\xda\x25\x4f\x88\x17\xbf\xbb\xf0\xf1\xa1\x6e\x42\xca\x64\xb5\xac\x94\x45\x5a\x84\x59\x1e\xbe\x27\x2f\xac\x9d\x4a\xb8\x72\x66\xee\xcf\xdb\x5f\x9e\x10\xcc\xbc\x5d\x03\x7e\xa4\x9b\x11\x82\x13\xbe\x4b\xda\xf6\x29\x11\xb8\xcb\xd2\x77\x6c\xaf\x74\x25\x6c\x38\x75\xe0\xec\xb1\x17\x59\x04\x9e\xa6\x1b\x72\x43\x63\xcf\x09\xa6\xb7\xd5\xac\xa6\x28\x97\x17\xe1\x4f\xe5\xfb\xd9\xe9\x83\x61\x34\x0e\xdd\xcd\x53\x7a\xae\xf8\x15\x32\xf0\x2c\xd9\x58\x31\x76\xf6\x0c\x41\xc9\xee\x55\xc6\xe8\x1d\x75\x42\x50\xd2\x89\x81\xbc\xe1\x79\x84\x04\xf3\x02\xeb\x46\xe5\x85\x04\xbe\x35\x89\x3a\x23\x8e\xbc\x04\x92\x6a\xfb\x2a\x59\x59\x41\xc8\xe6\xd6\x17\x9d\xa1\x5c\x4a\xa8\xdc\x79\xe4\xe4\x82\xda\x0f\x0c\xf6\x0c\xe7\xde\xf9\x50\xce\x43\xb8\x53\xd2\xee\xe9\xf1\x31\x9f\xc0\xbc\x54\x6c\xff\x87\x04\xb5\x69\x59\xd2\xf5\x2a\x04\xfd\x7a\x4e\x5e\xae\xd9\xaa\x6c\x38\xe8\x2c\xad\x1b\x7c\xe0\x39\x83\x2d\x87\x8e\x97\xb7\x25\x0e\x31\x68\xff\xd5\xf6\xe4\xe7\xcc\xdf\x0c\x96\x9c\x49\x7e\xe3\xdf\xfa\x83\x81\xe7\x76\xfe\x45\x97\xbe\x4e\xa3\x71\xbc\xb6\x10\x3d\xb1\xa3\xa2\xa3\x08\x77\xfb\xb8\xf0\xc7\x65\x2a\xa1\x36\xd8\x90\x67\xf7\xd6\x75\xff\x85\x43\xbf\xe6\xb4\x96\x3a\xbd\x60\x20\xff\x9a\xc7\x86\xdb\x5a\x89\x90\x28\xe1\x78\xe0\xac\x93\x1b\x0b\x61\x6d\x5b\x45\x9f\x8f\x5d\x20\xcc\xe6\xff\x26\x78\xb6\xaa\x84\x85\x98\xa4\x8b\xf5\x42\x82\x17\x09\x1f\xef\xa8\xf5\xf3\xa5\xde\x26\xb4\x47\xec\x7a\xf6\xe0\xfa\x02\x42\xdd\xfc\xb0\xd2\x17\xef\x25\x08\xe7\x67\x36\xce\x98\xbc\x7c\x3b\xa1\x27\xb0\xe5\xea\x14\xd6\x0a\x82\x53\xb9\xdf\xf6\x51\x93\x11\x06\x02\xa5\xe7\xc3\x92\xc4\x52\x69\x1c\x2f\x03\xb2\x0d\xd6\x78\x7e\x62\x10\xb5\x72\x42\xae\xbf\xe0\x4f\x06\xaf\x57\x46\x2e\xcb\x5f\xac\x49\x78\x67\x68\x65\x9b\x78\x55\x89\xb0\xbc\x69\xc3\xa1\xdf\x63\x60\xf0\x47\xe2\x56\x75\xf4\x2f\x1d\x82\xe6\x09\xe5\x19\x56\xf5\x4e\x6c\x08\xe5\x8f\x2b\xf9\x37\xad\x36\xe6\x79\xea\x77\xfe\x9d\x56\xd5\x5f\x5c\x16\x84\x38\x5e\xa2\x71\x14\x3f\x5d\xba\x5e\xb5\xac\x96\xad\x0c\x4c\xf5\x5b\xaf\x19\x6f\xfb\x7f\xc2\x5f\xb1\xb5\x6f\x62\xe0\x51\x82\xc7\x4b\xf9\x65\x85\xaa\x46\x04\xfb\xa3\x2b\x60\xdd\x1e\xc1\x42\xd0\xf3\x72\xf9\x0d\x31\xf9\x84\xe3\x17\xd7\x75\xbf\xb0\xcd\x25\x0c\xe7\x1e\xa8\x33\xfa\x5b\xaa\x26\xac\xbf\xa1\xb5\xf4\x14\xa1\x2d\x4a\x64\xad\xc2\x93\x12\x82\xcc\x9c\x7b\x9b\x7e\x6f\x9c\x41\xd0\x0f\x5c\xc2\x17\x50\xc9\xc1\x86\x36\xb3\x88\x1b\x11\xbd\x2e\x84\x86\x6f\x8e\x61\xb1\x1d\x60\x20\x76\xf6\xf7\xae\x72\xd3\x41\x06\x05\x49\xa5\x5f\x32\x3d\x0d\x58\x10\xd0\x93\x3d\xbe\x7d\xe1\xdf\x79\xaa\x62\x96\xa9\x74\x77\x1d\x81\x72\xaf\x8f\xf1\x4d\x38\xcf\x06\x37\x99\x63\x75\xff\x60\x6f\x7a\xc7\x56\x73\xf2\xce\xff\x13\x8c\xc7\xdb\xa5\xcb\xe4\x67\x11\x12\x43\xf3\xaf\xfa\x6c\x9d\x47\x48\xee\x5f\xf6\x25\xf4\x8a\x3b\x1b\xb8\xbe\x9d\xba\xcd\xe3\xd1\xc0\x60\x52\x49\xa8\x8f\x49\xfc\x0c\x82\x78\x78\xe6\xda\x79\xc6\x7c\x6c\x38\xfd\x29\x4a\xe7\xf6\x01\x21\x42\xef\xa1\xfc\xf9\xe5\x66\x8a\x84\x96\x8d\x05\x41\x51\xc9\x1c\x84\x72\x41\x37\xab\xb2\x6c\x0d\x36\x6c\xdc\xfc\xd5\xd0\x6f\x35\x3f\xe1\xcf\x33\xa7\x82\x04\x21\x7d\x82\xf2\xd6\x53\xc7\xb6\x38\x2b\x12\x7c\x53\x12\xfa\xbf\x3b\x49\x11\x82\x64\xb3\xf6\x5f\x5e\x17\x46\xb8\x33\xb3\xcf\x72\xb1\xa7\x1a\x61\x13\xff\x74\x9b\x92\x98\x99\x84\x60\x89\x9a\x7a\x91\x1c\x7e\x82\x4e\x47\xd9\xd5\x6f\x23\x22\x84\x94\xef\xc7\x9a\x75\x6e\xf1\xb1\x41\x57\x46\x6b\x7b\x4a\x67\x23\x83\xfd\x27\xa6\x8e\x0e\xd9\xed\xa2\x71\x84\xae\x0d\x76\xaf\xb8\x98\xcd\x42\x1e\x6b\x85\xfc\xbf\xef\xb6\xdd\xac\x8f\x66\x87\xbd\x93\x67\xc3\x46\xe9\xf4\xaf\xab\xb5\x07\x19\x94\x55\xe4\xf5\x0f\x47\xab\x13\xea\xb8\x7b\x0f\x8a\x99\x09\x11\x26\x6e\xbd\xbd\x2d\x75\x97\x04\x1b\xb2\x8e\x57\x19\xfb\x8d\x74\x30\x10\x8b\xdd\x8c\xb3\xf6\x0a\x04\x9b\x98\x9b\xdc\xfe\xbf\x56\x10\x96\x9e\xe6\x74\x9d\x95\x7d\x86\x0d\x99\xf6\xde\x51\x4a\x42\xee\x84\xb2\x57\xb7\x3e\x94\x3b\x6a\x10\x46\x8a\x05\x9f\xe8\xdf\x49\x67\x61\x34\x7c\x7f\xd7\x69\x23\x79\xc2\x97\xf0\x6a\x03\x6e\x03\x2e\x82\xc0\x02\x7e\x5a\x6a\x20\x4c\xd0\xab\x68\x2d\xca\x1f\x50\x66\xc3\xd4\x76\x87\x88\x93\x7b\x7f\x30\xf0\x73\xb6\xbe\x10\x9f\xbd\x80\x30\x23\x66\x35\x87\xcd\x56\x2f\x16\x64\xab\x25\xea\x0b\x72\xa2\x09\xf2\x52\xaa\x6a\x7a\x7f\x37\x8e\xd7\x6f\x3c\x0a\x78\x15\x4b\x08\x35\xff\x7e\xb2\x8a\x26\xf4\x64\x49\x9d\xa4\x0b\xb9\x2c\xec\xe1\x48\x6a\x6f\x7e\x78\x93\x20\x6b\x38\xfb\xb0\x90\x74\x26\x61\x4b\x44\x1c\xbf\x86\xaf\x35\x0b\x9e\xc5\x52\x3b\xef\xbd\x2b\x24\xf0\xfb\x6e\x16\x68\x39\x36\xca\xe0\xd8\x81\x57\xaa\xeb\xda\xd4\x69\x1c\x11\xe7\xd3\x76\x8c\x24\x2d\x24\x68\xc9\x1c\xdf\x6c\xb5\xe6\x22\x21\xda\x4b\xce\x6c\xee\x26\x1b\x42\x9a\xef\xd1\x91\x2b\x2b\x26\x11\xda\x9e\x45\xf9\xec\x5f\x5d\x46\x18\x4a\x3c\x65\xba\x7f\x15\x3b\x54\xd7\x7b\x32\x2e\xff\x1f\xda\xb2\xe6\x8d\x55\x9b\x98\x11\x16\x77\xbf\xb9\xec\x7d\x46\x82\x10\x39\x74\x2f\x5c\x96\x63\x1e\xdb\x50\x76\x89\xf2\xcc\xcb\xb4\x88\x46\xb8\xcd\xca\x5d\xb7\x69\x11\x16\x59\x9c\x98\xe5\xf8\x7b\x13\x61\xeb\x45\x7d\x13\xdf\xda\x12\x42\xb5\x72\xde\x1d\x7b\xd5\x2a\xd6\x78\x51\x39\x59\x78\x78\x7b\xd1\x5a\x82\xbb\xad\x7c\xc2\x7c\x05\x53\xc2\xb5\xe4\x02\x77\xce\xad\x25\x04\xa1\x2b\xf5\x7c\x0f\xfd\x8a\x09\xda\x2b\x35\x52\xbf\x5e\x62\x11\x4e\x70\x8c\x1d\x12\xe5\xcd\x20\xec\x9c\x95\xb6\x44\xfd\x71\x31\xa1\xbe\x67\x63\x70\xaa\x7b\x08\xa1\x56\x74\xf6\xe1\x55\x4f\x3d\x09\x45\x8a\x81\x02\x1f\xee\x85\x10\xd2\xa5\xdc\x76\x28\xad\x1f\x61\xd0\x33\xe6\xa7\x97\xf0\xd2\x98\x90\xed\x16\x96\xad\xf0\xf7\xbd\xa9\x8d\x72\x4f\x7f\xfe\xf7\x96\xfb\x3f\x98\x47\x2d\xcb\x72\x54\xb9\x5b\x84\xbb\x8c\x54\xe8\xa5\xef\xaa\x84\xdf\xb3\x8d\xac\xe3\xf4\x4b\x09\xad\xa3\x7c\xeb\x83\x0a\xfd\x58\x30\x9e\x2b\xdd\xb4\xb1\xf0\x21\xa1\x42\xbc\x22\xfa\xed\x89\x32\x02\x77\xcf\x8d\xd5\x37\x5a\x46\x19\x9c\x5b\x7f\xd6\x6d\xce\x35\x5b\xfa\x0f\xe4\x38\xcc\x35\xe4\x39\xcc\x41\xd8\xe1\xa3\xb1\x67\xe5\x40\x06\xa1\x72\x81\x72\xb4\xd6\x2a\x33\x36\xbc\x53\x98\xea\xf3\xfc\xd8\x4c\x82\x6a\x50\x3c\xac\x7d\xcc\x59\x60\xb4\x9d\x4f\xe6\xd6\xed\x65\xe1\x53\xa8\xf5\xd3\x12\x7f\x03\x42\xee\xee\xb9\xfa\x3b\x4c\x2e\xb1\x61\xc3\xe9\xc9\x0e\xd5\x8b\xcd\x09\x71\x41\x6b\x2e\xac\x3c\x34\x89\x20\xaf\x6a\x5f\x1d\xab\xfe\x89\xc1\x6d\xf1\xbe\x43\x6d\x16\xf3\x69\x1c\xa1\x9c\xe6\x27\xfd\x4b\xbb\x8a\xe0\xd3\xbf\x69\xbd\xf6\x07\x49\xc2\x3b\xd1\x99\x9d\x66\x7f\xea\x09\x0f\x25\x3d\x02\x3d\x1f\xc7\xb2\x41\xc2\xca\xa9\x84\xaf\x73\x1b\xe1\x0f\xd9\x5b\xf4\x17\x34\x12\x3c\xcf\xdc\xaf\x38\x99\x7e\x89\xd0\x97\xe0\x72\xcd\x8f\xab\x9b\x41\x5b\xe7\x63\xb5\x9d\xcd\x5b\x08\x8d\xbf\x02\x26\xae\xfa\x14\x49\x78\x58\x44\xbc\xf6\xf7\x23\x19\x08\xb1\x42\x9f\xa7\x08\x0a\x10\xbe\xc5\x4d\x3a\xb4\xe1\xdc\x4b\x82\xe0\x67\x89\xb6\x8f\x48\x22\xa8\xd5\x1f\xdf\x16\xde\x55\x48\xd8\x7a\xab\x9b\x43\x62\x0b\x0f\x61\x4c\x66\x71\x8d\xf2\xa4\x22\xc2\xbe\xa4\xf7\x39\x73\x43\x8b\x09\xed\xb9\x67\x15\x87\x2e\xfc\x7d\xef\x63\xb1\x86\xff\x20\x7a\x36\x73\x5f\xcc\x8d\x23\x84\xb8\xb1\x98\x1d\x9e\x3d\x07\xd9\xca\xe6\x59\x09\xa3\x5e\x55\xae\x84\x3f\x2b\x27\x0a\x87\x86\x44\x10\x1e\x7c\x77\x78\xf6\xd6\x98\x21\x1c\xd7\xe9\x95\x3f\xc4\x13\xcb\x82\x41\xb3\xf9\x64\xa9\x03\x7b\x09\x33\xf9\x2d\x3b\x29\xb2\x9c\x70\xd5\xd2\x6d\xde\xe0\x9d\x62\x42\x63\xf1\xac\x92\xc3\x8a\x99\x84\xdd\x57\xa7\xbf\x9f\x62\x9a\x47\x28\xdc\x79\xfd\x67\xb0\xad\x0c\xa1\x79\xc3\xcb\x8e\x60\x0d\x43\x42\x5d\x0c\x87\x82\x9e\xf2\x0f\x66\x1c\x3b\x15\xbf\xcf\x13\xc8\x5f\xc3\x36\xe4\xd9\x7a\x49\x4b\xbe\x8a\x9f\xfe\x03\x5a\x1a\x59\x1b\x7c\x66\xd5\x30\xb0\xfa\xa8\x63\x84\x1f\xfc\x84\x69\x9b\x7e\xa9\x2e\x91\x5c\x44\x28\x31\xad\x30\x78\xb9\x8b\x08\xfd\xcd\xd6\x8f\xcd\x1b\x8b\x08\x15\x97\x6b\x94\x1e\xee\x37\x25\xdc\xb8\xbd\xad\xfc\xac\x2a\x37\x1b\x9c\xb5\xda\xbc\xf8\x7c\x12\x58\x30\x3c\x1e\xff\xc9\xbd\xf8\x35\xe1\x74\xff\xcb\xce\x43\x7f\x31\xfd\xfe\x1e\x27\x23\x83\xfb\x04\x45\xe7\xe9\xf9\x2f\x3c\xd6\x11\x2e\xdd\x8b\x2d\xe2\x4f\x0c\x63\xc3\xd4\xd2\xb1\xd7\xaa\x6b\xdc\x09\x4d\x26\x95\xb9\x19\x97\x52\x59\x70\xbb\xf0\x32\xe6\xa0\xb0\x27\xe1\xc3\x14\x27\xe7\x8b\x56\x07\x09\xb6\xeb\xa7\xbb\x39\xff\x54\x25\xc4\xf9\x58\x8f\xf5\x33\x53\x08\xbd\x65\xda\x73\x9c\xc6\x7e\x31\xd0\x88\xf4\x53\xf5\x0a\x2c\x26\x38\x71\xa6\x5d\xeb\x76\x5c\x4c\xf8\x91\xeb\xe2\x96\x94\xa7\x48\x08\x77\x5b\xb3\x29\x6f\xae\x3a\x21\x6c\xd2\xc9\x8e\x92\x78\x1d\xc2\xaa\x98\x1d\x07\x5d\x39\x5c\xd9\xb0\x73\x47\xe5\x51\xde\xc7\xf6\x84\xc8\x6f\x4a\xb6\x4e\xe7\xb4\x08\x12\x27\x47\x82\x87\x93\xaa\x09\x7b\x16\xd5\xcf\x9f\xf1\x3e\x9f\xb0\x6d\x46\xf2\x88\x9d\x47\x15\xe1\xc8\xd4\x92\x0c\xef\xf6\x31\x06\x7d\xca\xf7\xff\x88\x5f\xf9\xc5\xe0\x39\xef\xd2\x38\x0d\xd9\xad\xf4\x1f\x70\xaf\x7b\x76\xef\xe3\xf5\xc9\x04\xcf\xfb\xb6\x5b\xb6\xcf\xfb\xca\x20\x79\x59\xf4\xc5\x3d\xa1\xf7\x09\xc1\x52\xcd\x8d\xf2\x7f\x77\xe3\x80\x9b\xdf\x0b\x8d\xba\xf5\xd8\xe0\xda\xcf\xb5\x28\xcf\x4f\x95\x90\xd9\xbe\xcb\xff\x8d\xee\x28\x83\xf7\x48\x0b\x3c\xe0\x2d\x4b\xe3\xe8\x0e\x3f\x7f\xcd\xda\xaf\x9e\x81\xdc\x2d\xdf\x39\x0f\x92\xb8\x09\xa3\xce\x82\x89\xef\x4e\x70\x10\x3e\x74\x57\x85\xbe\xd9\x9a\x4d\x08\x34\xbb\x13\x22\x72\xc2\x8b\x90\x39\xc7\x5b\x74\x2f\x5f\x3c\xa1\xfa\xd9\x01\xd9\x8b\x17\xf3\x09\xbc\x9a\x1a\x0b\x93\xbe\xa4\x13\x98\xdf\x4e\xb3\xb2\x9e\x5e\x20\x9c\x49\x5a\x29\x55\x58\x1a\xc6\x56\x2c\xfa\xf7\xee\x9e\xba\xcb\x83\x90\x64\x63\x1a\x20\x10\xae\x4d\x48\x55\x58\x63\xb9\xd7\xea\x3d\x03\xf9\x86\x33\x9b\x8f\xde\x57\x22\xc4\x67\xda\x91\x95\xb9\x14\x1b\xda\x6e\x3b\x4d\x9e\x5a\xc9\x45\x88\xef\x79\xba\xf4\xc6\x46\x4d\x82\xac\x69\xf9\x15\x91\xbb\xde\x2c\x1c\xa8\xac\xd0\x50\x91\xe6\x22\xdc\x76\x98\xec\xfb\x89\x55\xca\x86\xe8\x5b\x6a\x7d\xf9\xc9\x9e\x84\x67\xe6\x93\xb7\xb8\x26\xfb\x13\xac\xef\x6b\x9d\xff\xd3\x6a\xc3\x42\xe0\x77\xb5\xce\x92\x32\x53\x42\x55\x98\x42\x85\xc0\xe4\x5c\xc2\x39\xfd\xb8\x4f\xcb\xfe\x2e\xa7\x25\x5f\x1a\x37\x7e\xa8\xb5\x61\x8d\x17\xd9\xa3\x75\x49\xea\xbf\x8e\x10\x44\x6b\x9d\x42\xb2\x97\xcc\x67\x83\x85\x77\xd4\x29\xfd\x53\xdb\xd9\x70\x24\x56\x2c\xe3\xc5\x3d\x65\x42\x88\xa3\x9f\xe5\xcb\xc3\x12\x84\x56\xfb\xf3\xeb\x8d\x39\xfd\xd8\xa0\x73\x42\x64\xf5\x93\x2c\x25\x82\x51\x86\x7d\x7e\x5f\xa2\x15\x81\x59\x17\xfc\x66\x8d\xbd\x11\xc1\x50\xe7\x5b\x89\x53\x24\x2f\x61\xd9\x61\xdf\x49\xa1\xa2\x7f\x8f\x87\xdc\xbc\xda\xca\x7b\x8a\x09\x72\x81\x56\x94\xbb\xd8\x86\xd0\xeb\x3b\xd4\xb0\xcd\xe1\x28\x61\xd2\xba\xd9\x66\x5a\x02\xad\x2c\x74\xfd\xda\x7e\x8a\xa6\x70\x11\x5e\xd4\x4d\x0c\x59\x78\x69\x84\xc1\xea\xb6\xd5\x7b\x7b\x8c\xf5\x09\x5b\x8d\x57\x78\xda\xbc\x30\x66\x43\x41\xb3\xb0\xb8\x52\x47\x2d\x03\x84\x89\x9d\xdf\xf6\xff\x18\xef\xf3\x60\x2c\xff\xf7\x7f\xfc\xb7\x2f\xa1\x90\xa5\x2c\x85\x28\x65\xc9\x56\x96\x72\x1e\x28\x4b\x45\x92\x8a\x42\xa8\x48\x25\x29\x45\x69\xa1\xa4\x48\x9b\x56\x2d\x4a\x8b\x25\xc9\x9a\xec\xae\x52\xa1\x14\x29\xd1\x82\x92\x2c\x91\xb2\x84\x3b\x49\xbf\xf1\x9c\xf9\xbc\xaf\x6b\xe6\xd7\xbc\xe6\xfb\xdf\x6d\xee\x8f\xf3\x8f\x6b\xae\x39\xcf\xe3\x71\x3f\xbc\x2f\x10\xce\x4a\x56\x19\xd9\x04\xe9\x13\x42\x99\xe1\x35\xfb\x0d\x16\x12\xd6\xd0\x86\xf1\x82\x57\xce\x12\x64\x0f\xd4\xfe\xf0\x90\xbf\x4b\xd0\xf7\x97\x7b\x66\xf4\x8e\x87\x30\x62\x7e\xab\xf5\xfa\xa7\x2c\x82\xe9\x5c\xfe\x7a\xdf\x77\x77\x8b\xe1\x36\xa1\xec\xe2\xf8\x17\x8f\x08\xbf\x6a\x13\xbd\xaa\xa5\x4b\x08\xeb\x36\xfd\xa5\xcf\x01\x53\x08\x69\x57\x9e\x4c\xfe\x9c\xbd\x90\x50\xf4\x42\x53\x74\x52\x75\x20\x07\xdc\xd6\x4e\xbe\xd1\x95\x21\x42\x98\x87\xc4\xaf\x33\x9b\x9e\x13\x5e\xa8\xed\x53\x75\x0c\x3e\xc2\xc2\x75\x4f\xee\x3e\x7b\xb3\x1a\xc2\xc9\x89\xa6\x3a\x6f\xc2\xef\x11\x66\xbf\x58\x31\x7c\xc6\x3c\x9b\x60\x16\xe1\xbd\x23\x62\x97\x06\xe1\x41\xd8\xf9\x82\x65\x62\xa2\x84\x67\x61\x29\xba\x76\x91\x2a\x84\x0c\xe5\x53\x4e\xc9\xdd\xa6\x84\xfb\xda\x5e\x97\x2d\x99\xe5\x84\x3a\xbe\x75\x2d\x6d\x6d\x63\x2f\x49\x7f\xb4\x46\xa3\xf8\x39\xc2\xdf\xd3\xb2\x7b\x6f\xf0\xeb\x12\xba\x3f\xbd\x3d\x3a\xc7\xcc\x88\xe0\x7e\x58\x58\x6c\xb6\xc4\xf2\xb1\x0f\x44\x33\xe7\xea\x16\x1d\xc2\xaa\x0b\x9a\xfd\x76\x05\x60\xf0\x44\xdb\x7b\xe0\x9d\xf7\x02\x42\x95\xb8\x8c\xf7\x25\x01\x33\x42\x66\xf7\x8e\xb2\x59\x3e\xab\x08\xe1\xe7\xe4\x43\x3d\x49\x91\x03\x6a\xef\x26\xe8\x3c\x7c\xc3\xf7\xff\xf0\x8b\x81\xd7\x2b\x0d\xab\x43\xd2\xe6\x04\xdd\xc3\x78\xd6\x34\x7d\x16\x41\xed\xd6\x1b\x87\xa7\xaf\x7e\x32\xb8\xa9\x54\x7d\x62\x4f\x81\x21\x21\x77\x96\xfb\xce\xdc\x12\x13\x42\x8d\xa0\xd4\x8f\xaa\x6d\x6a\x1c\xa8\xb8\xae\x9f\xb2\x74\xd1\x01\x06\x12\x3c\x05\xc9\x2e\x36\x2b\x08\x52\x71\xd3\x66\x34\x2c\xbc\xce\x82\xaa\x5e\x56\x9b\x76\x35\x3f\xe1\xfb\x86\xf5\x7b\x83\xd6\x8f\x23\x7c\x78\x56\x3c\x98\xfb\x89\x97\x03\xad\x2f\xa4\x7f\x64\x2d\xaa\x61\x50\xb5\x3a\xcd\x6e\x6e\x3d\x17\x41\x69\xd0\xeb\xef\x8a\x83\x07\xff\x05\x91\x0f\x83\x42\x79\xbf\x74\xfe\x85\xe0\x97\x61\x5b\x95\x1a\x44\x08\x3b\x83\x17\x68\xa8\x88\x1b\x10\xb6\x44\xa7\x4c\x5d\xbe\x66\x3f\x0b\x5e\x92\xa1\xb4\xcf\x41\x9e\x20\x26\x36\x89\x5f\xf8\xb1\x31\xc1\xe1\xca\x6d\x87\xa9\x5e\x57\x08\xb7\x24\x86\x4a\x94\xc6\x60\xc5\x8a\xbb\xff\xd4\xfd\x2a\x21\xbf\xbc\xa2\x72\x65\xda\x02\x42\xd1\xaf\xb5\xb7\xdf\x65\x8d\x27\x64\xb6\x1f\x9f\x95\xfa\xda\x8a\xe0\xe0\xa5\x7e\x28\xfe\xd0\x09\x0e\xac\xaf\x97\xc1\xf5\x9c\xb5\x04\x87\xa1\xe7\x4c\xed\xc6\x47\x84\x6c\x75\x55\xa3\xc9\x33\xeb\x09\xe1\xf5\x35\xbd\x87\x67\xac\xe6\xc0\xd7\xa4\xfb\xe6\x85\x6d\x0c\x07\xf6\xf2\x1e\x7d\xff\x1b\x9d\x0c\x1c\xd4\xaf\x0b\xa6\x64\x2c\x23\x54\x2f\x9f\x11\x1a\xd0\xf1\x97\x61\x63\xdc\xfb\xca\x9c\xe3\x22\xc3\x1c\x98\x9f\xf2\x54\xd8\x78\x7a\x1b\x83\xbd\xa5\x13\x65\x8c\x3e\xf0\x13\x52\xbe\x7a\x0d\xda\xcd\xfc\xc5\x40\x42\xf7\x7d\x45\xac\x76\x09\xe1\xfe\xac\xd4\x27\xd1\x82\x67\x09\x79\xc9\xfb\xf4\xb4\x97\xde\x61\x21\x55\x58\xf5\xe3\xfc\xba\x24\x16\xf8\x0e\x9f\xcc\xfe\x50\x70\x9a\x50\xb2\x27\x59\x69\x85\xfc\x59\xc2\xa2\x72\xe9\xbc\x37\xaf\x89\x70\xe9\x96\x6e\x7c\xf3\xcc\x87\x84\x49\x1d\x82\x1d\x7f\x8e\xa5\x70\x24\xf3\x7a\x42\xdf\x1e\x7f\xe2\x44\x70\xab\x6d\x2f\x0c\x28\xb8\x40\x30\x6e\x2b\x64\x9a\xd7\xc9\x11\x82\xe7\x2a\x74\x73\xf9\x72\x73\xa0\xfc\xf7\x43\xb9\xb9\xb3\x74\xff\x85\x03\x1d\x8e\xfc\xdf\xcd\x2b\x19\x84\xa9\x99\xee\x5c\xd4\x5d\x42\x30\x98\xb5\x57\x36\xeb\x6f\x2c\xe1\xa3\xef\xfa\x2d\xbc\x1a\x91\x04\x9d\x37\xd7\x95\xb4\xfa\x1d\x09\xd5\x5c\x2f\xb8\x9f\x7d\xbe\x44\xb8\x63\xac\xb0\x4b\xe7\xe1\x8d\x62\xd4\xa7\x94\x26\x56\x7e\xd4\x27\x36\xbe\xe6\x87\xce\xdb\x74\x7e\x02\xa1\x22\x75\x45\xd5\xca\x83\xd2\x84\x80\x1a\xfd\x84\x27\x16\x86\x84\xb4\x5b\x35\x35\x0a\x11\x6d\x0c\xf6\x7f\x7e\xf1\x6b\x4f\xd7\x4c\x62\x43\x2f\xcd\xd1\xe7\x68\x7e\x3d\x83\xb3\xa3\x5c\x8f\xc4\x1e\xe7\x13\xae\x06\xe5\x38\x96\x3a\xa7\x13\x6e\x66\x87\xbf\xb9\xef\xa3\x42\xd8\x2b\xac\x65\x34\x7f\xb1\x3e\x61\x5d\x5e\xc1\x14\xaf\xdc\x0c\x16\x82\xe2\x53\x1d\xb9\x07\x4b\x58\x78\x18\xbb\xe5\x54\x7a\x5c\x32\x0b\x26\x4f\xf5\x46\xe3\x2a\xfc\x09\xa5\x79\x5c\x62\x7b\x62\xcf\x11\x52\x6d\xb7\xaf\xb3\xe1\xe9\x66\x30\x90\x25\x62\xec\x20\x1d\x40\x6c\xc4\x97\xf8\x05\x7d\x3b\x9e\x53\xcc\x86\xb3\x47\xc1\x62\xd3\xcf\xda\xc4\x46\x89\x20\x42\x75\xf9\xf4\x09\xf7\x4b\x1f\x19\x14\x3b\x98\x10\x02\x77\xeb\x48\xf1\xe7\x45\x13\xb2\x3e\x04\xbf\xf9\x5a\x9f\x47\x10\x09\xc9\x57\xeb\x32\x9f\x47\x38\xe9\x9e\xea\x74\xb1\x95\x97\x03\xe7\x56\x64\x88\x1e\xcf\x9f\x46\x28\xd2\x69\xfa\x3e\xbb\x47\x86\xc0\xbd\xe8\xed\x92\x0f\x41\xf2\x04\x21\xbd\xc0\x24\xe5\x54\x30\xd8\x3d\x79\x96\x94\x69\x86\x20\x41\x34\x2b\x69\x99\x71\x8c\x27\x07\xaa\xae\x1a\x3f\xe0\xe5\x75\x23\x44\x9f\x9e\xf6\xb9\xc6\xf3\x0f\x03\x72\x7f\x69\x10\xbe\xaa\x8b\x81\x68\xb1\x8c\x89\x95\x67\x0f\x83\xa8\x1f\xd5\x36\x1f\x3e\x2d\x23\x6c\x3f\x32\xe3\xfc\x8c\x2f\x27\x58\xec\xe4\xff\x30\x72\x76\x24\x71\xde\x14\xdd\x7f\x61\x9a\xda\x85\x7d\xc7\x84\xad\x58\xe8\x6a\x4e\xfc\xe8\xe4\x66\xc8\xc2\x47\x5d\xfa\xd1\xfe\x28\xab\x18\x27\xd6\xed\xba\xf2\x3b\x44\x87\x20\xda\x53\x9b\x77\xda\x74\x3a\x61\xf2\xe5\x45\x13\x05\xf8\xcd\x08\xaf\x6b\x4b\xda\x67\x04\xda\x10\x96\xa7\x6c\x73\x71\xb8\xf2\x97\x61\x63\xe1\x6d\x03\xf9\xd2\xa4\x61\x06\xbd\xea\x93\x5c\x66\x78\x74\x33\x98\x75\x42\x6b\xce\xcc\x0f\xe6\xf4\x0f\xbc\x33\x75\xcf\x1d\xbf\x6b\xc2\xbf\xb0\xfb\xca\x8c\xa7\x8a\xbc\xbf\x19\xf0\xe5\xac\xbb\x9a\xa6\xb2\x8e\x70\xed\xf8\x94\x6c\xd3\x4f\x13\x09\xe7\xdc\x6f\x26\xa7\x3e\x2f\x23\xb4\x1d\x7d\xb4\xb6\xbe\xa2\x8c\xb0\xf1\x47\x86\xbd\xe5\xcc\x7c\x16\xc2\x2c\x26\x6f\x7c\x37\x96\x18\x25\xa5\x7a\x48\xbe\xf2\xe7\x40\xc7\xa4\x0e\xad\x3d\x77\x76\x10\x54\x57\x7f\x4e\xea\xe3\xf1\x24\x98\xed\xc6\xea\x1f\xab\x9d\x09\x67\xe2\x83\x22\x82\x35\xdc\x09\xdb\x78\xdd\x97\x4b\x54\x56\x12\x8a\x5a\x37\x44\x77\x84\x54\x12\xcc\xe7\x78\x6f\x6c\x1f\x83\xc1\x5f\x93\xa5\xdf\xc6\x10\xfa\x3a\xf3\xdd\xc4\xb1\x67\x56\x6c\xdf\xf8\xcc\xca\x34\x94\xc0\xfb\x28\xc8\xcc\xfc\xdc\x69\x42\xd7\xd7\x03\xf7\x24\x63\x4e\x13\x2e\xca\xe9\xb5\x84\x5c\x38\x4d\x70\xeb\xca\x9f\xe2\x7f\xf2\x34\xc7\xc3\xdc\x4b\x97\x97\x3a\x84\x25\x73\xa0\xc2\xb6\x47\xd1\xa2\x3e\xe9\x5f\x47\x12\x57\xb5\x8d\x2d\x3a\xb4\x69\x48\xb0\x24\x60\xba\xb8\x25\xe1\x30\x82\x2d\x45\x6f\x5f\x61\xa1\xa7\x60\xcb\xa9\xef\xce\xc9\x2c\xcc\x56\x3f\xb2\x6a\x76\xc5\x4b\xc2\xd0\x83\xf4\xc3\xff\xa1\x77\xef\xaa\x88\xc6\xbd\xc5\x84\xb6\x7b\xc9\x45\x9b\xaa\x3b\x18\x68\x78\xb8\xe4\x36\x6d\x1a\x61\x50\xbb\xe4\xb2\x7d\xe0\x14\x1e\xc2\x8e\xfd\x4e\xdc\x47\x36\xf3\x10\xc2\x84\xd3\xaa\xe7\x28\x69\x73\x20\xea\xdd\xdf\x52\xc3\xca\x36\x06\x1b\xc3\xba\xce\x2e\x86\x13\xe1\x5a\x98\xd3\xd9\xe9\x63\x4b\xf2\xdb\x97\x87\xad\xc3\xb3\x16\x10\xa2\xee\x4d\xeb\x77\x39\xb5\x84\xe0\x3a\x4e\x3f\x37\xc9\x4c\x82\xc0\x8a\x91\x7c\xfe\x72\xc1\x05\x0e\xe8\xff\x5e\xac\x70\xfc\xda\x1e\x82\x57\x30\x8f\xcb\x5c\xf5\x7a\x06\xdd\xa7\x94\x37\x28\x4e\xeb\xfb\x17\xb4\xb3\xf6\xf8\x47\xa4\xfd\x60\x30\xb7\x40\x6b\x59\xd3\x45\x22\x6c\xbe\xf7\x36\x52\x85\xc5\x43\x08\x77\x79\xa7\x3b\xd5\xae\x97\x81\x03\x15\xd9\xfd\x0c\x52\x26\x36\xe2\xe5\x55\x0b\x43\xe2\x7e\x32\xe0\x8e\x7f\x77\x73\x4e\x14\x17\xe1\x61\x69\xe9\x9d\xea\xcf\x43\x0c\x1b\x45\xfa\x72\xb9\x99\x5b\x1a\x8b\xa1\xfc\x42\x57\xf8\x5e\xad\x38\xc1\x57\xb8\xa8\xf8\x88\x52\x11\x41\x61\x64\x5b\xd3\xa3\xf9\xf5\x0c\x36\x08\xfe\x66\xd9\x9e\x8b\x24\x28\x6c\x6a\xaa\x4c\x5a\x58\x53\x8c\xf6\x0f\x56\x4c\xcd\x4e\x0f\x62\x43\xb1\x58\x36\xa1\xb0\x38\x81\x81\xfb\xe5\x07\xcf\xe4\x8b\x7f\x31\xf0\x14\xf0\x75\x2e\x78\xc0\x4f\x70\x91\xdb\xcc\xb5\x53\xc8\x89\x30\x6d\x2d\xcf\xd6\x37\x17\x9d\x08\x53\x1f\xab\xc8\xf3\x39\x0f\x33\x28\x32\x36\x4f\x89\x5e\xd6\xcd\x81\xab\xef\xa2\xae\xee\xdf\xd8\x59\x0c\x9b\x89\x89\x5b\xa6\x58\x3d\x22\xf4\xdd\xb2\xcf\x7f\x9a\xf1\x90\xb0\xb9\xfb\x41\xc5\x5c\xb5\x3a\xc2\x89\x98\xcc\xdb\x6f\xfd\x4b\x08\x7a\x0a\x2c\xe7\x8f\x53\xc6\xfa\x82\xcd\xa3\x9f\xc7\xa2\x12\x08\xf2\x1e\x09\x35\x23\x8b\x1e\xb1\x70\x46\x47\xb0\x7e\xf2\x82\x22\x42\x42\xd2\x7b\x01\x49\x46\x8f\x10\x9d\x7d\x7b\xe9\xe5\xd1\xfd\x84\x1d\xd9\x9b\x53\x1c\x6f\x64\x12\x56\x6c\xfd\x7a\x76\xd4\xb0\x82\xe0\x71\x61\xa0\x6b\x97\x7e\x05\x21\x54\x67\xdf\xfd\xe3\x41\xf7\x09\xb1\x5e\x85\x92\xb9\x0e\xeb\x08\x39\x6f\xf5\xfe\x3e\x7b\x90\xce\x42\x8c\x8e\x80\xaa\x6e\x40\x09\x0b\xa7\xdb\x9f\xec\xfb\x36\x74\x9f\x10\x23\x76\x81\x9a\x15\x7f\x30\x50\x2c\x99\x3e\x6d\x60\x6c\x72\xff\x1f\xb2\x9c\xcd\x9b\x0d\xbe\xa5\x17\xe3\x3b\x57\xb5\x47\xeb\x90\x29\xa1\xd9\x20\xd0\x59\x72\xc6\x04\x82\xeb\xef\x7c\x23\x65\x9f\x18\x0e\xbc\x11\x90\xdd\x63\x6a\x1d\x43\xd8\xc9\x17\x73\xf8\xab\xe1\x1c\x42\x20\x9f\x94\x8a\xcc\x34\x2b\x0e\xf4\x9d\x1c\xaf\xb5\xe6\x84\x32\x07\x56\x29\x4e\x6c\xd0\x09\xab\x2f\xc6\x83\x3f\x05\x37\xf8\xed\x32\x58\x50\x49\x13\xea\x7e\xa0\x3a\x8f\xd0\x5c\x64\x66\x98\xbd\xd6\x87\x70\x3b\x3c\xb8\x6b\xb9\xb7\x37\x0b\xeb\x55\x4f\xcc\x9c\xe7\x7e\x9d\xa0\x69\x62\xae\x9a\x5e\xb1\x9c\x70\xf1\x87\xfc\x1a\x85\x33\x8f\x09\xeb\xf6\x5b\x45\xfc\x87\xa9\x9e\xbe\xa2\x6e\x7b\xc7\x9a\xfe\x78\xa5\x4d\x49\xca\xc9\x1c\x47\xbf\xf3\xe6\x94\x7b\x2c\x8d\x22\x88\x1e\x08\xf5\xf5\xda\x77\x8c\xc5\x4e\xfe\xff\xf1\xd7\xdf\xed\xde\xc3\x66\x77\x42\x29\xbf\x6e\xfa\xe3\x88\x5c\x42\xab\x7f\xcc\xca\x98\xd6\xf5\x84\xcd\x36\xcb\x5f\x2a\xf1\x08\x11\xa4\x58\x50\xdb\xd6\x2e\x4e\xf8\xa0\xef\x15\x51\xd0\xa6\xc4\x81\x5b\x1d\x5e\x0a\x1a\x63\x1f\xd1\xff\xc1\x5f\x60\x73\xdb\x94\xb5\x87\x08\xda\x33\x76\xa5\x48\x58\x1e\x22\x44\x9d\x1f\x2f\xd0\x52\xb5\x82\x60\xfa\x4d\x7b\x89\xc3\xb2\x01\x06\xe3\x67\xd9\x5c\x5c\x92\x17\x46\x10\x50\x9a\x31\xbc\x76\x0c\x1e\x52\xd5\xc9\x69\xbf\x5d\x09\xad\xef\xe9\xd0\xf0\x4b\x4d\x82\x6c\x60\x7f\x7d\xd7\xb1\x23\x84\x4a\x47\x2d\xc3\x19\x17\xfa\x19\xc4\x58\x0f\xef\x6b\xf7\x37\x23\x36\x22\xaf\xcc\x9d\x2a\xae\xfe\x8a\x41\xd5\xd3\xf1\x19\xd6\xeb\x55\x09\x2b\x6b\x1b\x43\x67\xa0\x88\xa0\x78\x4d\x52\x4d\xf0\xba\x0c\x41\xb9\x7e\x62\x4c\x40\x45\x36\xc1\x5b\xaf\xfc\x70\xc0\xfb\xc7\x84\x80\x62\x5e\xef\x81\x92\x87\x04\xd9\x42\xde\xbb\xcf\xef\x5a\x70\x1c\xdd\x7a\xd2\x69\xe5\x7c\x49\x86\x03\xe7\x4a\xf7\xbd\x4f\xa8\xeb\x64\xd8\x38\xfb\x66\xbc\x16\xb7\xec\x38\xc2\xe1\x1f\x6a\xda\x5d\x1a\xf7\x59\xb8\x31\x7b\xdb\x52\xff\x4b\x59\x84\x83\x05\xdf\x53\x7c\xb7\xaf\x23\xec\x8e\xf8\x68\xe0\x65\xb1\x98\xa0\x6e\xb2\xd9\xef\xc0\x41\x75\x0e\x18\x9a\x2d\x89\x93\x95\x7d\x55\x8c\x8e\x22\xc9\xb3\x12\x93\x26\x11\x1a\x8f\x7f\xd7\xbf\xb3\x6d\x3a\xa1\x67\x47\x29\xff\x3a\x95\xbd\x1c\x78\x27\xaf\x6e\xf1\x38\x77\x1b\x61\x53\x98\xd5\xac\x38\x1e\x61\x42\xe1\xd4\x86\x69\xca\xdb\xa6\x10\xb6\x4d\x93\x3a\xdf\xde\xb1\x81\x30\xa2\xbb\x27\xca\x3a\x5e\x9d\xc0\x4c\xf9\xa9\xde\x56\xea\x42\xa8\x0c\xf0\xef\x91\x9a\xdc\xc7\x40\x6f\xf7\x80\xfd\xcd\xf5\x9a\x84\x61\x95\x8c\xc5\xea\x37\xcb\x09\xb8\xbc\x44\x25\x3f\xb5\x91\x50\x2a\xb4\xf4\xc7\xc1\xa9\x25\x04\x99\xee\xfd\x9b\xe4\x34\xda\x18\x6c\x7e\xa1\x1c\x2f\xba\xc4\x84\xd8\xb8\xf9\xa9\xa8\xd4\x31\x52\x8f\xe0\xdb\x5d\x52\x75\xdc\x4f\x86\x70\xf6\xac\x40\xe0\x25\x1f\x43\x82\xfc\x29\xf5\x29\x9e\x2d\x7a\x84\xe9\x35\x7b\x76\x7c\x08\x1f\x4f\x10\x13\x92\x3b\x7b\x6c\x5e\x1a\x0b\xdc\xf3\x8f\x6f\xac\x3a\xfd\x90\x80\x5a\x4f\xf9\x0e\xd5\x27\x04\xb9\xd9\x21\x5d\x52\x27\xac\x09\x8a\x43\xbb\x5b\x4c\x37\x4c\x24\x1c\x8b\x78\x4d\x07\x3b\x0e\x13\xaa\xf7\xce\x3f\x5e\xef\x73\x9d\x70\xba\xb2\x65\x88\xcf\x2c\x8d\xe0\x72\xd5\x6b\x55\x6a\xd0\x3a\x42\x83\xfc\xcf\x0f\x53\x1c\x45\x09\x09\x79\xcb\xa3\x5f\x3f\x15\x22\xd8\x7e\xf2\x0e\xd7\x95\xb4\x27\xa4\xc7\x68\x9d\xf2\x96\x92\x24\x58\x55\x1e\xdf\x63\x19\x3b\x97\xa0\xb7\x27\x54\xab\xff\x97\x24\x21\x20\x64\x5e\xb5\xb9\xcf\x20\x03\x66\xcf\x8b\xe7\x12\xa3\x7f\x18\x74\xdc\x08\xf6\x5b\xee\xa8\x40\xb0\x78\xbc\x90\x11\xd9\x3f\x89\x70\x24\xf6\xd0\xd1\x8f\x7e\x1d\x0c\x7c\xb9\x0d\xf4\x6d\xbe\x6a\x11\xcc\x17\x32\xe7\xee\x14\x6f\x21\x7c\x1a\x67\xe2\xf4\x63\xcd\x5a\x42\x93\xad\x8c\xea\x36\x4c\x27\x4c\xcc\x5c\xb6\xc4\x26\xf3\x07\x83\xc6\xc0\x1c\x9f\xea\x8e\x85\x84\x37\x99\x2d\x91\x6f\xb6\xac\x20\x0c\x9b\xe8\x8a\x89\x45\xf0\x13\x3e\x7b\xf3\x5a\x84\x88\x7d\x61\xd8\xe8\x2e\x32\x6d\xd3\x78\xf2\x8d\x41\x76\xb0\xe7\x16\xb5\x8a\x3f\x0c\x1a\xc6\x05\xdc\x5f\x57\xec\x49\x58\x50\x78\x31\xc5\xed\x53\x2a\x07\xcc\xad\xc3\x59\x7d\x8a\xe5\x2c\x76\xf2\x16\x7a\xdf\x97\x39\x14\xff\x0b\x62\x09\x67\xd6\x36\x49\xad\x22\x8c\x8f\xe0\x2e\x39\x12\x3b\xc2\x20\x7f\x72\xf7\x4b\x91\x49\x9a\x04\xd7\x2d\x37\x6c\xd7\x2f\x78\xc8\x62\x27\x72\x9b\x3a\x7f\x74\x2e\x1b\x66\x10\x3e\xb0\xdc\x24\x56\xad\xa2\x18\xee\x2f\x33\x25\x6e\x5e\xd0\x21\x36\xf8\x9f\x54\x1e\xbd\xd0\x21\xca\x81\x45\xc7\x6e\x8f\xff\xf5\x7d\x36\x21\xdd\x21\xb9\x70\x71\x54\x3b\x83\xa4\x96\xcc\xda\x71\xf6\xd2\xc4\xc6\x4d\x8f\xde\x8d\x77\xb6\xf2\x10\x76\x3e\xd9\x2c\x54\xa6\x2a\x4a\x38\xd3\x70\x58\x33\xbc\xd0\x89\x03\xef\xdc\x2c\x9e\x96\x44\x83\x61\xc3\x59\x91\xff\xed\x8d\xc3\x42\x84\xad\x12\x85\x9f\xf5\x6f\xf2\x13\x2a\x1e\xa4\xf4\x75\x0f\xce\x26\xbc\x76\x15\x7e\xfa\x63\x85\x12\x21\x71\xcf\x96\x69\x5b\x77\x4e\x20\x6c\x7e\xb8\x35\xba\xb8\xaa\x93\xc1\xfa\x9d\xfe\xab\x97\xb9\xf7\x30\x58\xec\xf9\x35\x54\xa3\x22\x9d\x85\x6d\xa2\xa5\xa5\x3f\xe2\x92\x09\xd9\xd2\x02\xe2\x6f\x43\xb6\xb2\x30\xcc\x9b\x5c\xe1\x6b\x7c\x8e\xf0\xa7\xdd\x3d\xea\xf4\xf9\x36\x06\xb2\x3b\x34\xd7\x46\xda\x55\x13\x5e\xfc\x55\xe3\x93\x9e\x50\x43\x50\x3e\x16\xf7\xb6\xeb\x6f\x09\xc1\x74\xc2\xb5\x93\x4e\xac\x87\x84\x73\x4d\x55\x52\xc1\x52\x2d\x04\x11\xdf\x5f\xb2\x96\x3c\xd1\x84\x29\x19\xaf\x4f\xac\x50\x1e\x47\xf0\xb7\xfe\x22\x5b\xb8\x6d\x06\xe1\x90\xa6\x24\xdf\xae\xb5\x36\x84\xee\xbc\xb5\x8a\xb3\x58\xda\x1c\xc8\x48\x58\xbd\xe8\x50\xc8\x5b\x06\x93\xd6\xf1\xfb\xe1\xae\x30\x61\x74\x65\x48\x51\x2d\x6b\x22\x21\x74\x73\x54\x40\xcf\x56\x6f\x82\xb3\xd2\xbd\x22\x2b\xae\x70\x0e\x04\x76\x6e\x65\x7c\x02\xc3\x09\xbf\xbf\xda\x08\xdd\x42\x00\xe1\x4d\xaf\xec\x9f\x33\x7e\x93\x09\xfd\xd9\xf3\x2e\xb4\xbe\x2b\x60\xb0\xa2\xab\xe6\x62\xee\x9e\x1d\x84\xa4\xe9\x9b\xaf\x4e\x6c\x94\x26\xf8\xde\x3e\x5f\x6e\x7a\xda\x8a\xf0\x75\xc2\x51\xff\xac\x15\xaa\x84\x25\xeb\xfd\x3e\xde\xde\x97\x47\x28\xff\x79\x33\x7d\xb4\x29\x81\x05\xb9\xe1\x24\xa7\x03\x77\x8b\x08\x82\xe5\xe7\xeb\x23\xf2\x4c\x08\x9e\x25\xea\x9b\xaa\x0b\xa5\x38\x70\xe8\x4f\x75\x67\x90\xdd\x00\x03\xb1\xc3\x31\x27\xfb\x1a\xd6\x10\x1e\x4f\x7e\x9d\x94\xb0\x69\x16\x41\xdf\xc5\xdd\x25\xf9\xac\x3c\xe1\xc8\xc0\xca\x70\xc6\x6a\x22\x41\x36\xb9\x65\xdd\xe7\xc7\x0b\x09\x59\x6a\x39\x46\x8f\x37\x6a\x10\x86\x3b\x7e\x3f\xcc\x0b\x5e\xc1\x91\xcc\x3a\x10\xf4\x57\xa5\x74\x12\x07\x0c\x4e\x3e\x08\x90\xff\x73\x82\xc1\x8f\xf9\xf6\xee\x91\xae\x86\x84\x88\xf4\x46\x83\xcd\x9f\x8c\x08\x4c\x9e\x6d\xfc\x09\x6e\xae\x7f\x81\x67\xe3\xd9\x9b\xdd\x46\xb6\xff\x42\xab\xb1\x55\x7f\x6e\x1f\x18\x36\xf8\xee\x6c\xdc\x13\x67\x64\x45\x6c\x78\x2c\xe2\x0d\xb8\xf8\xeb\x63\x31\xaa\xa5\x9f\xe7\x4f\xf0\xa9\x67\xf0\xe2\x71\xff\x96\xf5\xbf\xf2\x08\x8f\xa7\x1d\x78\x6e\x76\x7e\x33\xe1\x89\x98\x6a\xa5\xdc\x23\x6e\x0e\x08\x3b\xd7\x36\xee\x98\x76\x83\x03\x6a\xa3\xdc\xea\xf5\x91\x61\x04\x8d\xb7\x4d\x76\x41\xba\x63\xbd\xee\x5b\x4a\xc2\xbe\x8e\xb9\x84\x07\x05\x73\xc5\x0d\xea\x74\x09\xf6\x5d\x11\xc7\xb7\x4a\xcd\x23\x2c\x5e\x69\x11\xd6\x33\x24\x40\xb0\xff\xbb\x6d\x4e\x91\x82\x02\x07\x94\x97\xf7\xea\xce\x7e\xc8\xcd\x81\x5a\xe7\x56\xbb\x1f\x19\x4f\x8a\xb1\xef\xf0\xac\x13\xbb\xa7\x39\x12\x94\x3a\xdd\xdf\x63\x78\x3d\x0b\x4b\x8c\x4e\x55\xcd\x99\x1c\x4c\x6c\xc8\xde\xeb\x42\x71\x7c\x38\x61\x8b\x40\xe8\x6e\x79\x27\x19\xc2\xa7\xed\x7d\xba\xdf\xec\x45\x08\xc5\x2a\x53\x92\xc5\x25\x0c\x38\xf0\x6d\xcd\xcf\x5d\x23\xfe\x12\x84\x8c\xda\x52\xc3\x27\xcf\x8b\x08\x27\x1a\x6e\xbf\x39\xc7\xca\x20\x3c\xdc\x7a\xfc\x91\xec\xc9\x56\x06\x0d\x2f\x44\x8a\xd6\x99\x0b\x13\x36\xa5\x7f\x5a\x14\x30\xe1\x2e\x8b\x9d\x9c\x57\xda\x72\x9c\x0e\x1b\x11\xbe\xdd\x89\xde\xb1\x23\xd5\x8c\x85\xdf\x19\x3a\xaf\x54\xaf\x88\x10\x82\xcf\x0d\x71\xf1\x07\x58\x12\x46\xe4\x9d\xf6\x98\x37\xd8\x10\x7c\x74\x55\xf6\x3d\xb1\xe5\x22\xec\x39\xea\xad\x33\xfd\x83\x26\x07\x52\x3a\xc7\xc5\xae\xd1\xf8\x54\x8c\x62\xed\x02\x05\xf3\x06\x1e\x82\x49\x7e\x72\x88\x85\x87\x26\xa1\xcf\x51\x50\xd9\xf8\x35\x43\x68\xe7\x7f\x17\xf8\xe3\xfb\x23\x82\x23\xf2\xce\x76\xa9\xe7\x12\xc2\x8a\x4b\xdc\xff\x4b\xde\x04\x0d\xf5\x74\x9f\x53\x26\xe8\xc5\xb6\x7e\x8c\xe4\xd6\x63\xe1\x4e\x71\x54\xc8\xfc\x0d\xe2\x04\x6b\xed\xcc\xfb\xd3\x0f\x37\x31\x70\xfa\xb4\x63\x81\xfa\xac\xd3\x84\xde\x8b\x6e\x9a\xff\x41\x39\xf8\xf4\xe2\x25\x8d\xa2\x04\xed\x8f\x1f\x02\x53\xdd\xee\x13\xac\xb9\xa7\xce\xce\xda\x53\x4e\xa8\xd5\x70\x1a\xec\x0e\x0b\x67\xa1\xd2\xfb\xf9\xc6\x0d\x8f\x73\x09\xc6\x3f\xb3\x84\x9c\xd6\x66\xb1\x90\x1b\x10\x35\x22\x2a\x1f\x4b\x98\xba\xe6\xc5\xef\xc8\xd0\x9b\x84\x97\x92\x79\x99\x09\xd6\xe9\x84\xc1\x52\x8d\xae\x6d\xd2\x97\xc7\xca\x9b\x6d\xf3\xbb\xf2\x1b\x84\x51\x3f\xe1\x2f\x0f\x5d\x92\x08\x0a\xdf\x07\xc4\x55\x8a\xfa\x18\x84\x0a\x24\x7d\x9b\x20\x9a\x4b\xb8\x15\x33\x2b\x41\xab\x3e\x9f\x70\xa9\xff\xfb\xf5\xb3\x6a\x26\x84\xd9\x97\x7e\x6f\xbb\x7c\x45\x9d\x03\x9b\xa3\x1e\x1d\x95\x39\xda\xc4\x20\x39\xe0\xa7\x89\x9a\x55\x21\x61\xb2\x98\xcb\x5f\xef\xc9\x33\x09\xa9\xe3\xae\xcb\x06\xac\xd6\xe6\xc0\x09\x11\x95\xe6\x67\x42\x60\x10\x81\xc5\x59\x6a\x53\xf4\x08\x2e\xbb\xac\x6f\x5e\xa3\xc9\x84\x99\xa1\x6f\x4e\xb1\x82\xfc\x08\xa6\x49\x71\xeb\xb2\xde\xd8\x12\xfe\x7c\x89\xd3\x39\x9e\x29\x44\x08\x2f\x9f\xde\x3a\xcb\x7a\x3e\x61\xd1\x49\x8a\x90\xbd\xaf\xcc\x01\x93\xa6\xed\x33\xeb\xbe\xce\x27\xf4\xc4\xf7\x6f\xbf\x1c\xa5\x4a\x98\x2d\xc2\x9a\x7f\x7f\x92\x05\x41\xeb\xdb\x1f\x6f\xc1\xdb\xf2\x04\xe3\xe2\xae\xc6\x67\x45\xc2\x04\x97\xe3\xa9\x9e\x9e\x1e\xb1\x2c\xec\x18\xf2\x7b\x1b\x7b\x47\x90\xf0\x29\x6d\xa6\x47\xc3\x94\x1f\x0c\xd2\xd6\x3f\xd7\x4e\x6c\x32\x25\x04\x26\x15\xb2\xfc\xc6\xb9\x10\x3b\xf1\x9a\xef\x65\xd8\xad\xa2\xcb\x01\xbd\x24\xcb\x62\x29\xd3\xd0\x62\x6c\xef\x31\xee\xb3\x38\x26\x46\x48\xfe\xd2\x95\xd9\xae\xcc\x45\xe8\x09\xf9\xf6\x61\x44\xc7\x81\x60\xac\xd6\xb2\x6d\xc1\x0f\x2b\xc2\x8b\xda\x9d\x4a\x95\x96\xce\x2c\x76\x32\xe3\x90\xc2\xf3\x22\x31\x07\x82\xf5\x55\xc3\xbd\x8f\xf7\x3e\x67\xe1\xcd\xf9\xdd\x87\x36\x6e\xb0\x22\x36\x2e\x6b\x8f\x56\x49\xcd\xd3\x27\x8c\xaf\x3d\xe9\x53\x12\xad\xc3\x81\x25\x93\x83\xa6\x85\x2d\x16\x25\x4c\x90\xd2\x73\xde\x58\xfa\x9a\xc5\x4e\x4e\xf2\x7f\xfa\x55\x72\x75\x88\x81\x13\xef\x19\xbe\x49\xfa\xb7\x09\x73\x83\x97\x0b\x2e\x38\x5a\xc2\x01\xbe\xc8\xc4\x80\xf2\x91\x14\x42\xe8\xe5\x80\xfb\x9f\x82\xce\x12\xae\x66\x2f\xb8\x67\x73\x29\x8e\x50\xe2\xb5\xa5\xb2\xfd\x72\x21\x41\x99\x57\xc6\x35\xea\x00\x0f\x61\xeb\xe0\xd3\x0b\x08\xe9\x62\xd8\xd0\x90\xeb\xd0\xf7\xd5\xfb\xc6\x01\x2b\xe3\x19\xb2\xa1\xd1\x6a\xc4\x46\xdd\x93\xd1\x24\x05\x43\x30\xf0\xc8\xd4\x3f\x51\xdd\x7f\x8d\x50\xb7\x81\x8b\x55\x21\xe2\xfa\x3f\x31\xfa\xe6\xe9\x33\x43\x7b\x21\x42\xb2\xbe\x86\xc0\x95\xb1\xdb\x2a\x53\x7f\xb7\xd2\x7c\xaf\x04\x16\x0e\x5e\xee\x8c\xff\x75\xbd\x86\x50\xe2\xe2\xb3\x71\x9b\x25\x2f\x21\x7f\xe8\x6d\xb6\xaa\x6e\x3f\x83\xf5\x1e\x9d\x51\xcf\xf6\x8c\x70\x20\xf8\x93\x82\xe2\x17\xb3\xfa\x62\x58\x9b\xca\x2e\x6a\xd8\x11\xcc\x42\xd3\x16\x5d\x5f\xc5\x9a\x5c\x42\xdb\xb4\x0d\x11\xe4\xee\x4f\x50\xab\x98\x65\xf1\x6e\xe7\x75\xc2\x9f\x2e\x51\x56\x6f\x4c\x28\xa1\x24\xe4\xdc\x1d\xe3\x1e\x25\xc2\x6f\xdf\x07\x9e\x56\x5c\x8a\x1c\x30\xae\x16\xd8\xc7\xb7\x6e\xff\xbf\xa0\xa4\xa1\x3a\x3e\x8c\x99\xfa\x2f\x3c\x1b\x6c\x7e\x51\x61\x94\xc3\xe0\x57\x96\x47\xef\xca\xf6\x00\x82\x76\x61\xa8\x8f\xc7\xe9\xe9\x1c\xd8\x9d\x7e\x50\xe8\xc7\xd1\x3e\x06\xdb\x8c\x4e\x6f\x15\xc9\xe4\x22\x4c\x7c\x2b\x2b\x24\x79\x52\x8c\x10\xee\xb4\xce\x76\x7f\x60\xc2\xbf\xf0\xa9\x39\x7d\xfd\x3b\x89\xf1\x84\x1d\xcf\x43\xdc\xd4\xf8\xc1\xfc\x03\xbf\xad\x42\x5e\xfe\x9e\xae\x41\xff\x40\x6b\x7c\xf7\xda\x9f\x5f\xe3\x59\xec\xc4\xc0\x61\xf6\xc4\xed\x87\x3e\x30\x6c\x0c\xbe\x9d\x75\xb5\x3f\x4c\x86\x90\xce\x33\x71\xf9\x0d\x2c\x21\x48\x3e\x3e\x18\xdb\x28\xac\xcd\x81\x07\x06\x8d\xc9\xeb\x74\xf4\x09\x1b\xfb\x25\xba\x8e\x29\x72\x13\x3a\x27\x5e\x72\xbb\xaa\x6b\x4f\x50\x5e\xff\xa8\x6d\x7f\x9e\x25\xe1\xbc\xf9\x48\x79\x22\xa9\x72\xa0\x6a\xf5\x0e\xf7\xb0\xf8\xeb\x0c\x0e\x24\xee\xb6\x11\x55\xe6\x27\xec\x2b\xed\xfb\x18\x15\x2c\x47\xb0\x7b\x3c\xff\x7a\xa2\xa8\x1b\x07\x92\x5f\x05\xd6\x24\xcd\xae\x66\x30\xed\x9a\xfa\xb6\xf7\xf7\x46\x19\x54\x9e\xb7\x4a\xe6\xcf\x53\x21\xe8\x3d\x6d\xdc\xd4\xbe\x65\x26\x0b\x5b\x7c\x3b\x4e\x59\x7d\x9b\x44\x6c\x38\xee\x72\xab\xd6\x5b\xe6\xca\xc2\x8e\xaf\xde\x01\x89\x05\x5a\x04\xcf\x16\xb1\xc6\xab\xb7\x5a\x19\xec\x6c\x41\x92\xfe\x1b\x7d\x42\x61\x8f\xa6\xb2\x9f\x70\x27\x83\xb4\x8b\x21\x97\x65\xbe\xa7\x11\x92\xcc\xb6\xfd\xd1\x1f\x49\x23\x34\x64\x2c\xac\xfa\x0f\x8b\x58\xbf\xaf\x44\x2f\x5e\x49\x48\xce\x11\xcd\xdd\x52\xba\x9a\xe0\xb1\xab\xd9\xd4\xce\xc5\x89\x70\x53\x44\xc7\xb1\x46\x67\x21\xc1\xd1\x2a\xd0\x3e\x6a\x51\x01\xa1\xe3\xf9\x26\xa1\x49\xce\x36\x84\x5b\xdf\xc4\x1c\x37\x8d\x2c\x25\xac\xdf\xd3\xb4\x6e\xfc\x01\x0b\x42\xcc\xd5\x30\xff\xdd\x7b\xf2\x8a\xd1\x2c\x7c\xc0\xe5\xc3\xf7\x7e\x06\x66\x16\x2d\xa6\x71\xba\xc6\xc4\x46\x4f\xed\xfa\x4c\xd6\xdc\x71\x84\x5d\xce\x71\x17\x9a\xb9\x96\x13\xca\xdc\xde\xaf\x2f\xdc\xe7\x48\x08\x6b\xa8\x3d\x9d\xeb\xeb\x41\xb8\xe6\xe3\x76\xd0\xf2\xd5\x7c\x42\x9c\xc8\xc1\xe8\xee\xfb\x6a\x84\xde\xea\x6d\x47\x23\xb4\x04\x08\x66\x6f\xc4\xee\xd6\x4c\x0f\xe0\x80\xf1\x04\xf7\x39\xf2\xdb\x79\x09\xba\x43\x66\x77\x90\x19\x47\xd0\x5a\x11\xb2\xf0\xde\x1c\x5d\x42\x0a\xf7\x9c\x5a\x2f\xfe\xa5\x84\xd0\xc5\x72\x0e\xa7\xde\x58\x11\xf2\xbf\x3d\x49\x2d\xf7\x93\x24\x54\xdb\xff\x95\x54\x58\xac\x42\xa8\x72\x1b\xbe\xf1\x78\xca\x04\xc2\xae\xf4\x67\xf7\xf6\xba\xec\x21\x7c\x3e\xb3\xd3\xe1\x3f\x1c\xf6\x8d\x18\x92\x78\x21\x45\x60\x19\x4a\x71\x4d\x73\x1a\x62\xf0\x1c\x2f\xe4\x97\x9c\x74\x27\x74\x04\xf9\x45\x1c\xdc\x78\x84\x85\x55\x3b\xb7\x48\x6f\x5f\x78\x86\x85\xbc\xf7\xfc\x67\x03\x2d\xb5\x09\xb2\x52\x51\xcd\x8f\xa4\x4b\x09\x13\x9e\xa9\xb5\xd5\xdd\x29\x20\x64\x64\x3c\xa8\x59\xef\x57\x40\xd0\xf8\xd8\x79\xef\xed\xd3\x7b\x04\x5f\xcf\xa8\xaf\x2a\x27\xe7\x11\x66\x1f\xcb\xbc\x54\xcf\x77\x80\x03\xa1\x3b\x4b\x23\xa7\xaf\xde\xcd\x81\xe0\xf1\x43\xaf\x4e\x6c\xfd\xce\x40\xb7\xe3\xe3\x17\x8b\x8b\xc2\x84\xcd\xfd\x8e\x19\x27\xf9\xf4\x08\x0b\x76\x47\x72\xfb\x7c\x51\x21\x1c\xed\xdc\x34\xa1\xf7\x92\x3c\x61\x92\x80\xcb\x8e\x93\x9a\xd2\x84\x08\x31\x67\xd3\xde\x6d\x42\x84\x8c\xe3\xb2\xb6\x06\x8d\x73\x39\xa0\x33\xbc\xdd\xf5\xa4\x6a\x0e\xe1\xca\x52\xf1\x47\x03\x13\x2a\x08\x8e\xbd\xa1\x8a\xeb\xd2\x3e\x33\x38\x2f\xc0\x3c\xdf\xfa\x6b\x22\xb1\xa1\x7c\x3a\x7a\x61\xd8\xd8\x5d\xb9\x7c\x4d\xe3\x01\xcf\x7a\x21\x62\xe3\xc9\x99\xc2\x4d\x53\xf9\x4b\x18\x36\xe4\x97\x7e\x98\x9f\x7b\xb8\x87\x81\x8d\x5e\x57\xfa\x9e\x38\x09\x82\x58\x86\x70\x88\x54\x02\x17\x61\xc5\xe9\x57\x5f\x17\xf1\xe9\x10\xbe\xa8\x7d\xee\x9e\x1a\x21\x4e\x38\x17\xb7\xf6\xf7\xc3\xb5\xbc\x1c\xe8\x68\x1d\xb4\xc6\x11\x6d\x0e\xe8\x94\x9c\xdb\xee\x17\x05\x06\x6e\xdb\x02\xf4\x55\x8a\xd2\x09\xaa\x82\x92\x9e\xe3\xe6\x08\x10\xd6\xcd\xd1\x3b\x7d\x3e\x71\x02\x41\xbb\x66\x4d\x75\xc1\x5c\x0f\x82\x85\xdd\xf7\x7e\x8d\xf3\x7a\x04\xeb\xc0\x45\x2f\x5d\xe2\x3a\x18\x04\xc9\xaa\x3d\x0b\x99\x39\x8f\x70\xc1\x37\xe0\xec\xce\xa3\xd5\x0c\xe6\xbc\x55\x7e\x20\xbc\x7f\x94\x03\x12\x3e\x7f\x3c\xde\xfa\x68\x12\x96\xf9\x29\x89\x78\x1c\x5c\x4e\xf8\xf5\xf8\x43\x4a\xc3\x86\x70\x0e\x1c\x6c\xae\x15\xe5\x55\x5d\x4f\x78\xd5\x73\x5c\xbc\xe3\xd3\x6d\x42\xa8\xb9\x4d\xec\xdd\x9f\x8e\x1c\xa8\x7e\x3c\xc5\xff\xf5\x6e\x09\x42\x59\xc2\x71\xf9\x09\x5b\x26\x13\x8e\xbf\x99\x55\x1a\xe5\xf7\x98\x60\x61\xc5\x3f\xb3\x7d\x5c\x12\xc1\x4e\x5f\xf0\x97\x5a\x1d\x18\x24\xaa\xbd\xac\xc9\x97\x37\x25\xbc\x4f\x5d\xda\xfc\xea\xfd\x72\xc2\xc0\x73\xab\x4e\x4b\x6e\x45\x02\xeb\xfd\xd2\xa5\x46\xe2\x65\x0c\x7e\x1e\xfc\x39\xbe\x6e\xa4\x9d\x03\xd7\xb7\xf2\xb0\x6a\xe7\x0c\x32\x18\x15\x19\x27\x2b\x56\xd2\xc0\x40\xec\xa5\xd6\xef\xc4\x0d\xb6\x84\xd1\x29\xcc\xb1\x1f\x7a\xbd\x0c\x4e\xf4\xe9\x48\x87\x7e\x29\x24\x7c\xfb\x64\xb5\xd5\xb3\xec\x0d\xe1\x49\xa4\x67\xf3\x0d\xfe\x63\x2c\x2c\xf1\xcf\xbc\xf8\xfe\xaf\x20\x61\xc1\xc5\xa5\x53\x22\x6c\x0d\x39\xe0\xd7\xba\xa7\xb4\xcf\xbc\x91\x81\x8e\xd0\x53\xfe\xd7\xeb\x6c\x08\x8e\xae\x77\xe5\xd6\x57\x6a\xb2\x31\xe4\xbe\x76\xc5\x1f\x6d\x6e\x42\x0b\xd7\xfb\x33\xad\xa5\x26\x84\x07\x23\xce\xd2\x0b\x82\x26\x13\x76\x18\xc8\xa6\x33\xd7\x55\x08\x77\x6d\xc5\x0f\x7c\x0b\x48\x23\x8c\x1f\xa8\xec\xb5\xed\xdd\x4c\xb8\xdf\xa4\x22\x52\xf4\xcd\x87\xa0\xbf\xab\xea\x94\xd1\xbb\x2d\x84\xe7\x9a\x8b\x5c\x2d\xd7\xcd\x27\xcc\xda\x91\xb4\xdb\x73\x6a\x39\xe1\x03\x97\x60\x40\xde\xfc\x67\x84\x1d\x03\xbb\xf6\x27\xcd\x79\x46\xe8\x69\x56\x78\x22\xf6\xf6\x3c\x61\xfe\xba\x66\xef\x35\xb6\x37\x58\xf8\xc0\x0a\x99\xb3\x51\x57\x92\x60\x16\xe0\xa7\xe5\x63\x98\x46\x90\x3c\x91\x62\x38\x41\x71\x36\x61\xc3\xec\xa1\xf6\xb7\x79\xd6\x04\x2d\x97\xc5\xae\x6e\x19\x9f\x18\x54\x72\xab\x04\x4b\xe5\x5c\x20\x36\x52\x79\x5a\x2f\xb6\xa4\x7e\x65\x60\xb4\x2e\x60\x97\xd5\x93\xa5\x84\xa3\x43\xa2\x29\x2f\x66\xeb\x11\x9a\x44\xcb\x7b\x3a\xbf\xaa\x11\x1c\x8e\xff\x6d\x4d\xac\xec\x60\x70\x6f\xb3\x8f\x83\x61\xac\x01\x21\x6f\xd4\xd9\xe7\xec\xaa\x11\x06\xc5\x43\xf2\xd3\x2d\x3f\x5a\xb2\xa0\x65\x9f\xf0\xda\x26\xb2\x8b\x01\x6f\x92\xe3\x2b\x47\xbe\x18\x16\x42\xdb\x4e\xdb\x1d\xe8\x7b\x4a\xf8\x61\xb0\xcc\x4f\xdc\x3e\x84\x85\xc5\x86\x8c\xbd\x53\xa7\x00\xe1\xa0\x5b\xcd\xc1\x96\x79\x92\x04\xd6\x07\x8b\x09\xa3\x91\x7d\x0c\x1b\x0f\xde\x3a\x1e\xfe\x6d\x21\x44\x38\xdf\xe0\xc4\xef\x5d\x35\xf6\xd6\x54\xa9\x3b\x05\x86\x7c\x67\x60\xb0\x72\xce\xa3\xeb\xd7\xf9\x09\x33\x3f\x91\xb0\x92\xb4\x2a\x61\x95\xaf\xc2\xab\xc7\x69\xd5\x0c\x6e\x1c\xdd\xad\xe1\x7a\x6e\x36\xe1\xf8\xb8\xf1\xc2\x8b\x3c\x84\x09\xd9\xef\x7a\x56\x9d\xb8\x7f\x80\x05\xdc\x0e\x4c\x0b\xfd\x6b\x4e\x78\xb3\x69\x6b\xe4\xab\x71\xa2\x84\xc6\x6d\x13\x1b\xa4\x6f\x78\x11\x16\xe6\xae\x4e\xbc\x2b\x39\xc2\xe0\xd2\x62\xdf\xdb\x52\x17\xfe\x30\x88\xb3\x08\x94\x28\x2d\x51\x22\x08\x0c\x8a\x5d\xb2\x8a\xaf\x63\x30\xa0\x15\x79\x7e\x72\xdf\x0d\x16\x92\x4e\xce\x78\xbd\xac\x39\x93\x30\xb3\x62\xf9\xdc\xe9\x0b\xee\x12\xa4\xce\x26\xb9\xef\x1a\xcc\x24\x54\xfc\xf1\x2b\xfa\xdc\xda\xcf\xc0\xf6\x82\xce\xe2\x3f\xcb\xbc\x08\xf3\xf8\xeb\xc3\x22\xee\xff\x66\x70\xed\x96\x77\xbb\xa8\x9f\x21\x21\xf9\x98\xa4\xe8\x0e\x09\x67\x0e\x9c\xbe\x99\x25\xf9\xdf\x10\x5d\xd0\x25\xba\xf1\xf2\x51\x19\x82\xff\xe6\x09\x21\x99\xeb\xe3\x8b\xf1\x27\xb6\xe2\x55\xc6\x2c\x07\x62\xa3\x4c\xb6\x2a\x66\x93\xed\x73\x06\x96\x07\xd2\x0e\xf5\x6e\x93\x23\x04\x31\x12\x9b\x46\x8f\xf0\x10\xcc\xce\x49\x49\xa6\x27\x9e\x25\xb8\xc7\xd5\x36\x05\x17\x9d\x25\xac\x7d\x99\x23\xb4\xf0\x88\x2b\xe1\xcc\xb1\x3d\x5a\xe9\xfa\x83\x0c\x8e\x3b\x3f\xb4\x98\x77\x3c\x9c\xd8\xc8\xfc\xad\xb1\x78\x68\x50\xe7\x5f\x70\xd2\x13\x91\x5d\x25\x20\xcf\x81\x75\x5a\x4b\x82\xdc\xb7\xeb\x13\xd2\xfe\xda\x16\xf6\x6b\x0e\x33\xf0\xca\x0b\xf5\x5e\xbc\x63\x2e\x21\xfc\x78\xa6\x3b\x6f\xdd\x64\x0e\x9c\x76\x7d\x72\xbd\xaf\x1c\x0c\x1b\xb3\x3f\xc7\x2c\x88\xcb\xc8\x21\x36\x3c\x2c\x2c\x5b\x7b\x14\x13\x39\x70\xa9\xc7\x6e\x7c\x41\x7a\x22\x61\x7d\xe8\xee\xf9\xff\x21\xfe\xe6\xb1\x83\x93\x34\xdf\x30\x6c\x4c\x15\xb7\xbe\xbc\xbc\xe0\x3a\xb1\xb1\xfa\x4d\x77\x13\xcf\x0d\x1e\x02\xcf\x8a\x8d\xfb\x27\xd9\xca\x12\x5c\x4e\x88\x59\x08\x06\x64\x13\x84\x56\x72\xb9\xa9\x29\x64\x12\xb2\x66\x54\x6b\x78\xdc\x3e\xcd\x42\xf9\x63\x99\x15\xe5\x63\x0d\x3d\x65\xa8\xfe\xcb\x28\xcf\x42\x0e\xc8\x4b\x28\x3e\xb3\x6f\x2e\x20\x14\x6e\x88\x65\xfe\x43\xb4\x85\x95\x5f\xb5\xd9\x19\x0e\xac\x7c\x55\x19\x7e\x2d\xc9\x95\xf0\x20\x32\xd9\xbc\xd9\x13\x0c\xfe\x66\x1f\x08\x5f\xb4\xd3\x94\x30\x71\xcf\x78\x59\xa7\xdd\x9f\x8a\xf1\xf9\xb0\xd4\x80\xba\x80\x36\xfd\x03\x35\xd9\xc6\x7c\x43\x66\xb6\x04\xfd\x1f\x12\xbd\xd3\x4a\xed\x08\xc9\xa2\xde\x39\x29\x1e\x60\x20\xea\x99\x57\x7c\xe8\x7e\x15\xa1\xde\xe0\x9b\xa6\x6d\xc2\x23\x82\x55\xaf\x78\xc0\x6e\x89\x7c\x42\x5f\x5b\xf7\xdc\xc4\xf8\x03\x04\xc1\xa5\xc5\xef\x17\xc9\xdb\x13\x98\x12\xfd\x6b\x8a\x43\x2f\x08\x42\x0e\x6b\x5f\xfc\x87\xd4\x9c\x70\xf9\x71\x27\x72\x08\x2b\x36\x6f\x5d\xa0\x3b\xe0\x48\xf0\xd7\xd0\xe5\x31\xa8\xe1\x26\x34\xcf\xd9\xb0\xf6\xe8\xd6\xd5\x1c\xb8\xbc\xd1\xec\x4d\x35\x57\x2f\xc3\x86\x51\x6e\xf4\xdf\xa1\x60\x6e\x62\x63\xf6\xcc\x8a\x39\x9d\xcb\xba\x19\x8c\x1a\x5c\x51\x11\x97\x4a\x23\xec\x5b\x6c\xb1\xec\x9d\xeb\x43\x42\xc1\xe2\xe1\x96\xf1\xe3\x53\x09\xb1\x2f\xb7\x2b\x77\x2f\x7c\xc8\x42\x6b\x7a\xdb\xc5\xf9\xe9\x0f\x09\xab\xac\x9e\x3e\x8d\xb5\x9e\x4b\x78\x6e\x74\x94\x6b\xe6\xb8\xd7\x0c\xae\xdf\x76\xae\x78\xdd\xa9\x4c\x38\xda\x20\xae\x9d\x63\xce\x43\xc8\x5d\x24\xfc\x65\xce\xd8\x96\x1c\x9f\x76\xb5\xd0\x59\xf7\x20\x07\x66\x3c\x5c\x5b\xf1\x26\x43\x8f\x30\xe3\x54\x5c\xf9\x92\x69\x60\x10\xbf\x31\x71\x6a\xf4\x06\x2d\xfa\x07\xba\x9a\x5b\xa2\x6b\x63\x04\x09\xb7\xdd\x9f\x3b\xbd\x4e\x9d\x41\x48\xb2\xf1\x2e\x4b\x1c\xb4\x21\xb4\xad\x77\xb6\x0c\x9d\x3e\x87\x70\xfb\xb2\xa5\x55\xae\x96\x1d\x07\x94\x14\xf6\x6d\xda\x1d\xa6\x41\x28\x3a\xb2\xd7\x7e\x8f\xf0\x47\x06\x0a\x67\x4b\x5f\xd9\x4e\xda\x4c\xf0\x4a\x5a\xe5\xfa\xa2\x63\x98\x81\x91\xf6\xdd\x65\xfc\x7f\x8e\xb1\x50\x70\xcf\xeb\xda\xc1\x23\x97\x09\x46\x13\xcd\x85\xf6\x4d\xdf\x4e\xe0\xce\x65\x69\x7c\x5a\xa1\x42\xf0\xbf\x1c\xd7\xf3\xeb\xc3\x58\x93\x4d\x9a\x1b\x6f\xfc\xe8\x2f\xf3\x0f\xf4\x9d\x5e\xa5\x66\x64\x66\x42\x6c\x78\xf1\x95\xac\xd2\xe3\xd1\xe7\xc0\xb8\x58\x51\xa3\xba\x81\x5a\x06\xfe\xc7\x4e\x75\xc4\x4c\x52\x21\x58\xf2\x66\x99\xd6\xd9\x5a\x11\xcc\x17\x55\x96\xf5\x1e\xf9\xce\x40\xc6\x6a\xb9\x91\xf6\xed\x7a\x82\x4e\x39\xff\x90\x62\xd8\x33\x82\x40\x2b\xff\x68\x53\x42\x3d\x61\xff\xef\x3b\x86\x81\x23\xb9\x63\xab\xf0\x9f\x55\xe9\x33\xf5\x08\xa3\xaa\xfe\x13\xaa\x84\xdf\x33\x48\xe7\x35\x9d\x7a\xf4\x90\x3d\x61\x4d\xfe\x26\xf5\xcf\xb1\xdc\x84\xa4\x2e\xad\xb8\xc9\xc5\x4b\xff\x27\x82\x3e\x79\x4a\x2c\x5a\xcc\x45\xf8\x59\x13\xa6\x99\x3b\x51\x8a\xa0\x77\x41\x3b\x77\x42\x5e\x3f\x83\xe7\xa6\x0d\x65\x89\xdb\x9b\x18\xd4\x9a\xa4\x24\x73\xf5\x8e\x32\x88\xdc\xcf\xf5\xe2\x5b\x98\x12\x21\xd4\x67\x49\xc3\xbe\x05\x7f\x18\x36\x2e\x65\x9d\xbe\xfc\xfa\xed\x53\x06\x95\x61\xdb\x93\xbd\x73\x0c\x09\x3b\x35\xa4\x77\xde\x36\x6c\x65\x90\xbb\xc0\x37\xbd\xd3\xea\x10\xb1\x71\xf8\x19\x8f\x64\x81\xa4\x12\x61\xb3\x89\xac\x4f\x6e\x38\x2f\x21\x79\xfe\xf5\x98\xa9\x75\x33\x08\x13\x03\x48\xff\xeb\xb0\x39\x61\x5c\xf4\x6d\xa1\x57\x7e\x7f\x19\xe4\x98\xcb\x99\x9d\xb9\xd1\xcb\xa0\x59\x26\xfb\xf5\xfa\xb1\x9b\xbf\xd0\x54\x74\xa5\xcf\x48\x21\xe1\x6d\xd1\xd2\xc5\x34\xe9\x39\xc1\x68\x36\x6b\xc8\x41\x57\x98\x60\xf1\x31\xba\xde\xf4\xb5\x35\xc1\xd7\x3d\xe0\xf3\xd9\x45\x5a\x84\x3f\xb7\x7b\xaa\xb4\xa2\x93\x08\x7a\x32\x65\x37\xfe\xc3\x05\x59\xb7\x4f\x9d\xb3\xaf\x71\xe0\x90\xc0\x9c\x16\xdf\x6a\x49\xc2\xaa\x4f\x47\xac\x43\x26\x8e\x32\x78\x3a\xa3\x2b\x66\x74\x42\x33\x83\x2d\x0f\x44\x03\x17\x8d\xe7\x27\xc8\xce\xc8\x5d\xf4\x53\xd3\x90\x03\x2f\x32\x22\xcc\x2b\xa7\x7d\x2e\x86\xfe\xa4\xbe\xeb\xcd\x85\xbf\x18\xf4\x5c\x9d\x77\x7d\x6d\x39\x11\x64\xf4\x6f\xa6\x1f\xbd\x09\x06\xdd\x1d\xae\x03\x3b\xfa\x97\x11\x96\xf4\x6f\x4b\xf0\xe3\xb5\x24\xdc\xfd\xaa\x59\x2b\xd4\x3f\x85\x20\x15\x68\xb2\x47\x21\xf5\x1b\x03\xbe\xdf\x2d\x2f\x7b\x53\x45\x88\x0d\x11\x87\xc0\x1d\x9e\xb7\x82\x09\x77\x7a\xe6\xbb\xcf\xe9\xe8\x61\xe0\x74\xe8\xf4\x2a\xb3\x2d\xca\x84\x5b\x99\xac\xeb\xdb\xc3\x25\x08\x1f\x2f\x1d\xbc\xe2\x26\xd7\xc2\xe0\x4f\xc6\xb8\x53\xd9\xe7\x85\x08\x67\x24\x5d\x99\xb7\xcc\x35\xc2\xdd\xaa\xba\x2f\x0d\xa3\x4a\x84\x8b\xb9\x1b\x45\xe5\xc7\xd6\xca\x9c\xe3\x6a\xcc\x4b\x6f\xe2\x40\xdc\x39\x85\xb2\x67\xc9\x5c\x84\xa5\xbc\x8d\xd1\x3d\x90\x25\x14\x46\x78\x8c\x2a\x2f\xda\xcb\xc2\x94\x57\x7f\x1e\xdd\x36\xfa\xc6\x60\x59\xc8\xe5\x78\x73\xd6\x4e\x62\xa3\xeb\x48\xf3\x66\x8b\x60\x53\x42\xe9\xfe\xec\x73\xdd\x59\x8b\x08\x55\xc7\x76\x1f\x5b\x3e\xbb\x81\xf9\x07\xe6\x94\x64\xda\xdf\xb1\x67\xe8\x7f\x21\x26\xfb\x53\x98\x8b\xc6\xa7\x62\x5c\x1e\x75\xf1\x4d\x3e\xd0\xc2\x20\xff\x79\xaa\x5b\xe1\xa1\xef\x1c\xb8\xd6\xfc\xd3\xcb\x5a\x55\x8d\xb0\xcb\x58\x2a\xde\xe8\xe5\x72\x82\xbd\x8e\x6e\x8d\x59\xae\x09\xa1\xa6\xf7\xf4\x68\xb9\x6d\x02\xa1\x24\xce\xa7\xaa\x47\xa0\x8e\x81\xa9\xd8\xab\x89\x9b\xa2\x32\x08\xb7\x54\xed\x37\x7d\x9f\xbd\x9c\xb0\xba\x74\xde\x92\x58\x87\xe9\x1c\x70\xee\x8e\xbd\x35\xfd\xd2\xd3\x62\xf8\xea\x67\xbe\x79\x75\x43\x87\xf0\x24\x21\x61\xd3\xdc\x69\x25\x0c\x02\x4f\xa9\x1c\x48\x2d\xb6\x21\x36\xf6\x47\xcf\x38\x31\x5f\x76\x06\xa1\xc1\x38\x49\xd8\x3d\x5d\x87\xd0\xbe\xeb\xf7\xcb\x35\x29\x13\xfe\xbf\xa1\x4f\x2e\x7a\xbf\xf8\xc7\x39\xff\x42\x9a\x87\xfd\xfa\x9e\x65\x86\x84\x80\xdc\x67\x72\xa9\xc2\xa3\x0c\xe2\x07\xda\xc4\xbb\x62\x4a\x08\x6f\x4d\x1e\x85\x49\xc9\x47\x10\xa4\x3f\xb5\xdc\xaf\x1c\x3a\xcd\x42\x98\xd6\xef\x34\x29\xa9\x08\x8e\xa3\x5c\xa1\x4d\xcb\xda\x96\x86\x10\x86\xce\x44\x5e\x35\x49\x0f\x26\xa8\x67\xdd\xfe\x10\x53\xbd\x84\x70\x4c\xb7\xe5\x5a\x88\x92\x20\x21\xbe\xe4\x59\x8f\x43\x8d\x03\x41\x24\x22\xbc\xe4\xfb\xb3\x59\x84\x65\x61\x3b\xd6\x9d\xda\x3c\xb6\x4d\x9a\x89\x9b\x7c\x39\xa3\x4a\x70\x0e\x0b\x9d\xfc\x64\xdf\x13\x82\x7e\x90\x50\xe3\x39\xbd\x47\x84\xc8\xbc\xc3\x71\xf2\x93\x24\x08\x3e\xcf\x67\x75\x2e\x56\x08\xe0\xc0\xd4\x88\x89\x4b\x24\x34\x65\x39\xb0\xa8\x7e\x7f\xfb\x1d\x2f\x45\x42\xaf\xeb\x87\x2c\x61\xec\xe3\x80\x4f\xe5\x8c\x6b\x87\xe2\x1c\x08\xcd\xba\xd7\x72\xec\x7c\x5b\x19\x2c\x53\x53\x1a\xd9\x6e\x23\x42\x6c\x5c\xca\xa6\x57\x83\x9e\xe2\x04\x3f\x6b\x8c\x53\x76\xb0\x25\x5c\xbc\xbf\xf4\xcf\xf2\xcb\xdc\x04\x53\xd7\x00\x97\x0d\xfd\xf3\x09\x85\xd5\xd2\xf1\x87\x66\x97\xb3\xd8\x49\x73\xb4\xf3\xb2\xfe\xb8\x8a\x62\x04\xb2\x14\xad\x4d\x24\x04\x09\x3f\x0b\x4b\xcf\x98\x1b\x48\x12\xee\x96\x0f\xd9\x3e\x9c\x6f\x4e\xa8\xcf\x34\x9c\x7d\xe0\xcd\x2f\x06\x6b\x3f\xca\x71\x9d\x69\xd7\x20\x36\x52\xf8\x97\xaf\x6a\xb5\xfc\xc6\x40\x3e\xed\xb5\x09\x9f\xc5\x20\x03\xbb\xf0\xc6\xc6\x97\x4e\xf6\x84\x79\x2f\xd4\x13\x2e\xab\xd8\x13\xba\x2b\x8d\x64\x53\xce\x1f\x21\x7c\x35\xbc\x2f\xf1\xda\x5a\x87\xc0\xeb\xbd\xa4\x20\xae\x60\x21\x07\x4c\x4f\xab\x69\xbc\xeb\x95\xe3\x40\x6c\xe7\x73\x7a\x7c\xd9\x9c\x03\x91\x59\x9f\x1f\x87\xcb\xef\x20\x54\xed\x90\x9f\x71\x48\x5c\x82\xd0\x31\x69\x74\x60\x8b\x42\x3a\x41\xd2\xe7\x98\xc6\x68\x9e\x0c\x61\xd5\x8b\x8a\x8a\x5b\x07\xac\xfe\x85\xa2\x09\x41\x7a\xc7\xbd\x16\xff\x0b\x69\xfa\xb3\xf2\x17\x2b\x6e\xa4\xa1\x4d\x05\x8f\x57\x6a\xb5\x33\xd8\xa7\xbe\x44\xa1\x55\xcf\x98\x30\xc2\x2d\xa2\xb1\xaf\xa0\x8f\x41\xd6\xcb\x98\xac\xc1\x9c\xb9\xc4\xc6\x2f\x6d\xb1\x44\xb1\x95\xe6\x1c\xd8\xb1\xdf\xf0\x42\xfc\x85\x01\x06\x59\x95\xbf\xce\xf9\x29\x14\x12\x5e\x0d\x17\x6f\x17\x9c\x25\x4a\x58\x76\xec\xd6\x2a\x11\xc5\x7e\x06\x47\x34\x92\x27\xde\xeb\xb7\x24\x36\xca\xfe\xe8\xa7\x3a\x07\xb4\x31\x58\xaf\x62\xa9\xeb\x96\x72\x84\xe0\x22\x79\xfe\xf4\x8f\x77\x3a\x04\xbb\xf9\x1b\x1d\xa6\x2e\xcd\x60\xe1\xb8\xf1\x9d\x84\x3b\x01\x13\x09\x09\x1e\xad\xce\xce\x9b\xa4\x09\x1a\xb7\xea\x8e\x2c\xfd\xf1\x8a\xf0\x65\xa9\x7e\x96\xa0\xc5\x2b\x42\xb1\x49\xe6\x8d\xd0\x15\x2c\xc2\x76\xcf\xe6\x68\x97\x15\x0e\x84\xad\x2e\x37\x5c\x4c\x73\x8b\x08\x7c\x57\x24\xd3\xe5\xc6\xa6\xd7\xcc\xa6\xf9\x5a\xef\x8e\x99\x73\xa0\x7a\x1a\xf7\x66\x8d\xa9\x4d\x0c\xba\x86\xfe\xee\xab\x5b\x6a\x44\x6c\x0c\xd8\xf1\xa4\xda\x6a\xf8\x73\x20\x77\x86\xcb\xb1\x81\x5b\x93\x09\x6f\xb4\x74\x33\x37\xe8\xf0\x10\xea\xc3\xb8\x3a\x03\xbe\x69\x13\x6e\xbc\x7d\xaa\x29\xb2\xf2\x05\x0b\x5f\x1e\x70\x67\x09\x89\xee\x66\x41\x81\xdf\x69\xcf\x7d\xbe\x07\x84\x96\x8b\x7d\x07\xaa\x67\x7b\x12\x02\xc6\xd9\xda\x29\xf8\x9b\x13\x62\x9c\x86\xac\x34\x65\x8b\x09\x92\x3f\xc2\xd2\x67\x2e\x2d\x22\x18\xdf\xdd\x53\xa8\x31\x96\x68\xed\xe6\x65\x3e\xdf\xd9\xc0\x81\xd6\x3e\xf1\x9d\xcd\xda\x76\x04\xbf\xfe\x73\x17\xe2\xef\x04\x71\xe0\xd9\xd4\x53\xb1\xc2\x69\xeb\x09\xfe\x57\xd3\x8a\xdd\x9c\xd4\x09\xe7\x73\xe5\x37\xf0\x3e\xff\xca\xb0\xa1\x73\xf0\xb8\x48\xd3\xa9\x70\x62\xa3\x70\xc2\xef\xf5\xd3\x05\xbe\x31\x18\xc8\xe4\x96\x4c\x7f\xfb\x9b\x81\x69\x9e\x8a\xea\xe5\x69\xda\xc4\x86\xa5\xda\x1f\xdf\x5f\x4f\x07\x19\x1c\xce\x9a\xd2\xb6\x71\xf8\x73\x31\x3a\x3b\xb7\x3b\x25\x0d\x45\x12\x1b\xd2\xf7\xab\xcf\x5f\x17\x13\x23\x04\xbf\xdd\x78\xa0\x44\x3e\x8b\xb0\x5d\xad\xf1\xa9\xca\xc2\x5d\x2c\x48\xd6\xc5\x1d\xde\xf4\xe0\x1d\x0b\x2f\x8e\x34\xca\x28\x29\x24\x12\xf6\x4a\x44\x95\xbe\x14\x7c\x42\xd8\x11\x5e\x72\xaf\x78\x66\x23\xc1\xa1\x77\xd0\x24\x7c\xd9\x13\xc2\x65\xad\x34\x51\xcb\x77\x93\x08\xef\xaf\x2c\xd8\xb9\xb6\x6b\x17\x0b\x1d\xca\x97\x44\xb2\x95\x4a\x09\x03\x91\x13\xc4\xa6\x19\x15\x12\xf6\x75\x39\x6d\x9d\xca\xf5\x98\x10\x75\x3b\x46\x5b\x31\xed\x31\x61\xe4\x6f\xe9\x62\xc7\x07\x4b\x08\x57\x4e\x6a\xff\x9d\x95\x2d\x41\x48\x56\xbb\x54\xd6\x69\xf5\x8b\xc1\xbe\x44\xfd\xc5\xbb\xa4\x1d\x08\xbb\xb2\xe5\x35\xac\xda\x85\x09\x4b\x9a\x8e\x2c\x75\x0b\x15\x21\xd4\x77\x79\x1b\x2b\xba\xaf\x27\xd8\xe2\x7a\xec\xe8\x2a\x2e\x82\x6b\x97\xf6\x06\x9f\x3e\x65\x02\xff\x9c\x75\xdf\xaf\xab\x5c\x65\x41\x4d\xef\xa4\xca\x1e\x5f\x77\x62\xa3\xe8\x80\x59\xf9\x63\x4d\x13\x42\x95\x7b\x38\xe3\x96\xa5\x4b\x98\xb6\x46\xdf\x71\xe1\x75\x79\xc2\x88\xdd\xb5\xd6\xb2\xf8\x10\x0e\xcc\xd7\x79\x77\x4a\xdc\xd1\x91\x85\xa9\xb1\x2f\xdf\x67\x6a\xeb\x13\x46\xc7\x9f\x6b\xb1\x5e\x2c\x43\xe8\x2d\xd1\x94\x7f\xd4\x70\x90\xd0\x79\xbb\x69\x4e\xc6\xb0\x14\xc1\x6e\xe3\xb0\xb4\x94\xe2\x3c\x0e\x60\x22\xff\x30\x97\x6a\x36\xa1\xc3\x59\x37\xd8\xf6\x6d\x3a\x83\x57\x27\x77\x94\x95\xb9\x07\x13\x1b\xb3\xca\xdd\x93\x4f\x8d\x3a\x12\x6a\x9e\x5d\x7f\xa7\xde\xe3\x40\x98\x14\x5d\xf7\x71\xc6\x44\x73\xc2\x87\xa6\x5d\x03\x7c\x7c\xf6\x04\xfb\xdc\x9f\x3a\x57\x5f\xf2\x11\x0c\x8d\x3d\x0d\xdf\x85\xe8\x12\xc6\x95\xed\xb9\xfe\xa6\x6a\x94\x41\x54\x7f\xfe\x0d\x3c\xe4\x25\xcc\xa9\x9b\x76\xe1\xef\x16\x59\x82\xe7\x74\xa7\xb2\x77\x2e\x53\x08\x3a\x7b\x5c\x2e\x05\xf0\x75\x31\x50\x6b\x30\x7c\x38\x7a\xd1\x82\x30\x6c\xfc\x56\xe3\xc2\x34\x71\xc2\x0a\xd3\x85\x53\x6f\x06\xac\x20\xc8\x6c\x4b\x33\x77\xab\xd7\x23\xac\x9d\x86\x19\x8b\x43\xbe\x30\x10\xb1\xad\x39\xbf\xb1\xe6\x2c\xb1\xb1\x28\xde\x57\x74\x61\xfb\x06\xc2\x87\x7b\x3d\x2a\x5b\xf5\xf5\x08\x83\x45\x8f\xea\x2f\xcc\x19\x47\xc8\x87\x65\xf5\xf8\xe1\x04\x0e\xec\x9f\x39\xe3\xfe\xf8\x6f\x5d\x0c\x1b\x3b\x92\xaa\xe7\xca\x2d\xe9\x63\xb0\x3a\x8d\x47\x2d\xac\x70\x05\x61\xba\xae\x79\x48\xe7\xae\x14\xc2\x70\xa6\xc1\xb0\x9e\xa1\x06\x61\x7e\xc1\xc7\x4b\xea\x8f\xb6\x33\xc8\x39\x97\xfa\x4c\xe4\x56\x2a\x21\xae\xcb\x65\x62\xe4\xe9\x54\x62\x27\x6b\x6e\x75\xac\x0c\x9c\xed\x40\x38\x91\xee\x35\xc8\xf7\xda\x8e\x30\x51\x57\x58\x65\x65\x78\x2c\x07\x14\xd7\xfb\xb7\x9c\xde\x70\x93\x50\x3e\xbb\xac\xbf\x5f\x73\x0e\x21\x20\x2e\xe5\xcd\x9f\xc7\x83\x0c\x76\x96\x6e\xb2\x7d\x24\xd0\xc3\xe0\x19\x4f\xf7\xb2\x77\xce\x7d\x0c\x3a\x5e\x2d\xd8\x39\xe3\x80\x0d\xb1\x91\x3d\x49\x54\xee\xfd\x38\x6f\x0e\xc8\x1f\xd3\xcf\xac\x19\xdb\x45\x44\x54\x32\x07\xcf\xef\xcf\x23\x9c\xb8\x95\x23\xd2\xd9\xf7\x86\x90\x20\xa1\x72\xc1\x65\x57\x09\xa1\xae\xae\xb7\xb9\x46\xf6\x09\x41\x7e\x7e\x94\x46\xc9\x8f\x58\x42\xd0\xaf\x42\xbf\xcd\x47\xa5\x08\xc2\xd1\x9e\x2e\x69\x0b\xf4\x09\xd3\x76\xf7\xdc\x59\xe3\x61\xcb\x81\x0b\x5a\xa3\xae\x53\x14\x25\x08\xe7\x36\xe7\x32\x05\x59\x37\x09\xcb\x3d\xf8\xaa\x72\xfa\xdd\x09\x59\xb1\x67\x0d\x8f\x8f\x78\x10\x4a\x46\xed\x3b\xc5\xdc\x1e\xb3\xe0\x79\x7e\x41\xe9\x8a\xef\x3f\x18\xcc\x0a\x6d\x6e\x78\x76\xc5\x96\xd0\x67\x62\xd9\x34\x9c\x2d\x4e\x70\xbf\x6b\xdf\xdd\x7d\x62\x90\x81\xa3\xc8\xdb\xa9\x73\x9f\xea\x11\x1b\x6a\x1f\xf6\xd9\x17\x8e\xdd\x75\xd3\x16\xe5\x97\x87\xc9\xce\x21\xf0\x75\x1a\x48\xfa\x6c\x16\x25\xd4\x5e\x12\xfd\xfa\x51\xe6\x28\x0b\xd1\x89\xae\x86\xd3\xb6\xb0\x08\xa6\x55\x03\xba\xb2\xc7\x59\x04\xd5\x35\x35\xad\xee\xeb\x1f\x13\x6e\x0c\x1c\xae\x6e\x9b\x91\x4c\xe0\x39\x76\xec\xc1\x7c\xd5\x27\x04\x31\x46\xb4\x9c\xf9\xd9\xc2\x42\x7d\xb5\x6a\x63\xd8\xb4\x27\x84\xad\x73\xff\x3e\x4b\x0d\x2a\x65\x30\x64\xc4\xe7\x79\xed\xe4\x49\x62\xc3\x3f\x28\x7e\xdd\xc3\x38\x2d\x82\xcb\x42\xb1\x0d\x76\xa9\xe3\x09\xad\x3b\xac\x77\x95\x8d\xe8\x11\x9c\x5b\x62\xa7\x44\xd8\x64\x12\xae\x78\xfc\x28\x3d\xea\xe5\x41\xe0\xab\x10\x4b\xfe\xb0\xc2\x95\xa0\xff\xaa\xd8\x6f\xaf\x86\x23\xa1\xfe\xca\xad\xe5\x2f\xca\x86\x19\x3c\x7b\x7d\xee\x4e\xa3\x46\x37\x07\x7e\x9c\xb9\x7e\xf9\xb2\xed\x1f\x06\x9f\x43\xba\xd3\xae\x29\x54\x31\x50\x3a\x50\x6b\x59\x69\x33\x85\xa0\xe7\xa5\x6e\x3b\xf3\x48\x33\x83\x73\xbe\x8f\x1f\x6d\x5b\xd9\xc6\x60\x95\x42\x4f\x4c\x6e\x5f\xfb\xbf\xf0\xaa\xd6\x2f\x25\x71\x84\x9b\x90\xbe\xa9\x2b\x70\x13\x6f\x1c\xa1\xc5\x28\x37\xd6\xe6\x85\x19\x61\x71\x94\x6e\x5e\xe0\x5f\x13\x82\xc0\xc7\xaa\x33\xae\x7f\x57\x10\x1c\xc5\x66\xe6\x73\xbf\xcf\x23\x2c\x72\xdc\x66\xfb\xd4\x56\x81\x20\xa0\xc7\x25\x99\xe5\x13\xf2\x2f\x58\x35\x6d\xb2\x9f\x30\xd6\xb5\x2d\x84\xb6\x27\x79\xe4\x1a\x11\x0c\x07\x9f\x6c\xb7\x1d\xf5\xe7\xc0\x01\x95\x4c\xfd\xf0\x67\xa6\x84\x0a\xe9\x61\x89\x33\x41\x73\x08\x73\x42\x16\x94\x65\x0e\x9e\x61\x81\xc7\xd2\xf0\xb9\x4a\xde\x57\xc2\xad\xe0\x02\xbd\x13\x85\xcd\x84\x89\x22\xe2\x0b\x23\xdb\x0a\x08\x4b\x5c\x15\xaa\xd6\x34\x59\x13\x78\x26\x7d\x6c\x5e\x74\x52\x88\x50\xbe\xea\xf7\xcb\x6b\xf9\xeb\x39\xb0\xf1\x93\x94\xdf\xbc\x13\x93\x09\xe7\x07\xec\x2f\xe5\x5d\x4b\x27\x48\xa4\xe8\xf0\x64\x33\xd7\x09\x55\xbe\x6f\x85\x26\x1d\x62\x11\x1e\x26\x7d\x71\x0e\xe4\x2b\x61\x60\xfb\x46\xc0\xae\xf4\xb3\x3e\x61\x2a\xb7\xee\x92\xe0\x55\x8f\x08\xa3\xbf\x66\xb8\xd5\x96\x5b\x12\x9c\x0b\x94\x0e\xb3\x16\x55\x33\xb8\xb7\x32\xd2\x63\x62\x5d\x28\xa1\xb5\xec\x59\xd6\xc7\xe8\x3c\xc2\x68\xb2\xf5\x7b\xbf\x9b\x79\x84\xab\x01\xef\x7f\xdb\xf5\x7a\x12\xf2\x76\x3b\x5f\xb1\x1f\xc3\x4c\xff\xed\x8b\x13\x29\x96\x41\xcb\x51\xa9\xe3\x02\x36\x66\x04\x1f\xeb\xa7\x8e\xaf\xd7\x8b\x11\x6e\x99\xf8\x76\xb7\xf7\x4e\x27\x38\x95\xec\xd8\xfc\x4a\x23\x8e\xd0\x56\xf9\x52\x91\xff\x81\x16\x21\x45\xa4\xd6\xe0\xaf\x44\x27\x83\x02\xe1\xd4\x12\xd2\x9d\x46\x58\x59\x7d\x29\x7b\xcb\x21\x6b\xc2\xf9\x08\xae\xc7\xfa\x5c\xdf\x19\x9c\xaa\x3c\x18\x97\x2a\x33\x8f\x10\xf1\xec\x80\xc4\xca\xd6\x47\x84\x8f\x0f\xeb\x9d\xf4\x1f\x66\x11\xb6\xce\x32\x1b\x5d\x33\xd6\x91\xff\xb6\xf8\xd7\x2f\x8e\xf0\xe0\xc0\x07\x01\x29\x83\xb4\x8d\x83\x0c\x5a\x78\x5b\x6e\xdd\x1b\x94\x23\xec\x75\xf2\x7f\xb0\xd3\xad\x93\x41\xde\xf7\xc4\x41\xfb\xc5\xcf\x18\x8c\xe3\x0d\x7f\xcb\x33\x63\x6c\xae\xfe\x3f\x44\x19\xde\x4b\x34\xdd\x9e\xc6\xc0\xa5\x71\xe3\xab\xb9\xfc\x13\x08\x0a\xb1\x51\x56\xcd\x05\xbd\x0c\x9e\xdb\x7a\xad\x37\x31\xcf\x27\x3c\x54\xad\x37\x72\x13\x3e\x42\x78\x7e\xe1\xe1\x88\x23\x53\xc5\x60\xfd\x8b\xa0\x8f\xe7\x83\xfa\x19\xbc\x37\x6a\x1b\xaa\xf9\x72\x97\xf0\x7a\xcb\xae\xf1\xca\x39\x4b\x38\x60\xb7\x3c\xc2\x91\xcf\x23\x9c\xb0\xfb\xeb\xc5\x2a\xfb\xd2\x15\x84\x0c\xbb\xb0\xce\xe5\xcf\xa7\x13\x26\x6d\x1c\x0d\xbf\x71\x33\x92\x03\xc7\x32\xba\xc2\x9a\x0e\x5d\x25\xbc\x9e\x7b\xf2\xd3\xf0\xe1\x8b\x84\xa9\x55\x16\x9f\xff\x4b\xac\x1c\xe3\xf7\xd4\x9e\x10\xe5\x40\x4d\x45\x40\xd4\x78\x7a\xcf\xb0\x51\x76\x69\xdc\x1d\x97\x14\x13\x82\xaa\xf5\xf3\xa3\xe3\xb5\x78\x08\xf9\x2f\x57\x74\xe6\xcb\xeb\x12\xdc\x16\x4e\x38\x7c\x4a\x6e\x3a\x07\xa6\x69\x07\x94\x98\xc4\xfc\x66\x90\x79\xd5\xf5\xe8\xfa\xb6\x9b\x04\xbb\x95\xd6\xfe\xff\xc1\xd2\xd6\xe3\x87\xf7\xf9\xfb\x84\x74\x6d\x91\x33\xff\x61\x29\xdf\xd5\x09\xe9\x05\xce\x84\x9e\xa5\x6b\x96\x8d\xf3\x5f\x48\x68\x98\x1d\x72\xf5\x43\x05\x1f\x07\x3c\xcf\x8e\x4c\x2e\x9b\x22\xce\x01\x3e\xa9\x93\xd5\x5f\xca\x16\x10\x56\x68\x09\xc9\x5f\xd2\x5b\x40\xc8\x75\x7a\xe9\x95\x5c\x7f\x82\x85\x94\x14\xa1\x33\x77\xb7\xde\x27\x68\x72\x4f\xcc\xcb\xe0\xeb\x61\x90\xaf\xd2\x33\x74\xf8\xd9\x08\x83\xe3\xc6\x89\x47\x36\x0a\x6a\x12\x1b\xbb\x1b\x33\xf5\xeb\x1b\x7a\x19\x36\x52\x73\xd5\xe5\xd7\x6c\x6a\xe7\x40\xf7\x4e\x29\x9f\xb9\x0a\xb3\x88\x0d\xf1\xa5\x02\x7f\x6c\xc6\x3e\x19\xbd\xaf\x07\x54\x8f\x48\xce\x25\x04\x0f\xd8\xc5\xaf\x9f\x62\xc6\x62\x27\xb6\x73\x1d\x93\xf7\xcc\x53\x22\xf4\x2a\xab\x4c\x2d\xed\x93\x24\x98\xba\x94\x5f\x08\xfa\xd9\xc5\xc0\xab\xa8\x30\xb5\x2b\x40\x9c\xd8\x48\xb6\x09\xb8\xfe\xb3\xec\x6d\x31\x96\x2d\x78\x73\xea\x68\x87\x11\xb1\x31\x27\xe0\xa2\xcc\xa5\x22\x73\x0e\x3c\x4f\xfb\x16\x79\xd5\x74\x73\x31\xde\xcb\x78\xf2\x5a\x4f\x97\x20\x2c\xbd\xd3\xd6\x70\xbc\xef\x07\x03\xaf\x23\x16\x85\xea\x57\x82\x89\x0d\xcf\xca\x20\xa1\x7b\xb1\x6a\xff\x82\xdb\xa1\x8a\x0b\x23\xcb\xbb\x19\x36\x5e\xea\x6c\xba\xdf\xdd\xf8\xbe\x18\x9d\xe1\xab\xa6\xf5\x09\x29\x13\x44\xee\x7e\xdd\xb3\x20\x4f\x8d\x50\x92\x1f\xe9\xc0\x4c\xf9\xc1\x60\x51\xf0\xf3\x04\xbd\x71\xc3\x1c\x98\x1a\x3b\x55\xbd\xdb\xa7\x9b\xc1\x09\xb1\x7d\x6d\x51\xeb\xc3\x59\xb8\x58\x7d\xcf\xe2\x54\x8d\x31\xc1\xe4\x0f\x8d\x5f\x68\x3d\x8e\xb0\xed\x96\xdc\x8f\x6d\x03\xdb\x39\xf0\x76\x77\x69\xe3\x0b\x63\x69\x82\x87\x81\xfd\xd2\xef\x46\x0f\x08\xf3\xda\x75\xe3\x8f\x65\xf9\x10\xea\xfc\x13\x7c\x54\xe2\x56\x12\x9c\x6f\x36\x31\x03\xf1\x73\x08\x13\xcc\x15\x1e\xac\x72\x7a\x40\x48\x9a\x96\xcc\xb8\x6b\x8e\x30\x98\xf6\xaa\x41\xee\xfc\x1c\x22\xb8\xbf\xeb\x23\x75\x37\x11\x82\xf0\xb0\xdc\xd3\x99\xd6\xba\x84\xa9\x01\x32\x7b\xdb\xda\xed\x09\xc5\x7d\x89\x3c\x97\x6b\x97\x11\x78\x9f\xb6\x0b\x9a\x0a\x77\x33\x78\x6a\xa4\x7b\xdb\x5b\xf5\x17\x03\xc9\xa9\x96\xa1\x4d\x6e\xdf\x39\x30\x63\x63\xac\x65\x97\xef\x4f\x06\x93\x06\x55\x62\xce\x1e\x1d\x6b\x68\x71\xd1\x73\x66\x1e\xda\xc1\x42\xd7\xd7\x39\xd5\xee\x57\x8b\x09\x53\xee\xce\xb7\xc8\xdf\x9f\x4e\x10\xdf\x1c\xd8\x73\x6c\xe5\x30\x83\xe0\x99\xef\xf4\x5f\xb4\x97\xb0\xf0\x5c\x63\x4b\x40\x42\x45\x15\x0b\x41\xa5\x2b\xde\x4a\x97\xe6\x12\x76\x6a\xa8\xf5\x7d\xa9\x5a\x48\xa0\xbd\xde\xb5\xe5\x3b\xa7\x11\x96\xec\xdd\xeb\x93\x99\xf5\x99\xc1\xa9\x2c\x17\xe9\x8d\xca\x33\x89\x8d\x12\xf7\xde\x65\x3e\xfc\x7f\x18\xdc\x17\xdb\xb6\xaa\x32\x6a\x06\xb1\xe1\xf1\x93\x37\xb2\xee\x93\x1a\x61\xe7\xb8\xf8\xe6\xed\xc1\x87\x58\xec\x84\xbf\xce\x24\x6c\x76\xc8\x37\x06\x26\x46\xe9\xc6\x33\x13\xe7\x13\x7e\xdf\xed\x9d\xd7\xc7\x32\x24\xbc\xd3\xff\xbd\x4e\xe0\x54\x3f\x03\x34\x4e\x78\x17\x98\x3e\x8e\x50\x65\x19\x1d\xf8\xa2\xc5\x81\x90\xad\x19\x76\x34\x46\x44\x86\xa0\x65\x14\xb2\x24\x0d\xdc\x04\x61\x33\xc3\x47\x95\x53\x57\x10\xdc\x75\x6e\x7f\xeb\xf9\xb1\x82\x30\xae\x4a\x2f\xab\xfc\x54\x19\x21\x21\xab\xc0\x7b\xc9\xe7\x2c\xc2\x46\xd6\xbb\xdf\x5e\x1f\xaa\x08\x1b\xcc\x67\x7e\xf0\x4f\x2a\x20\x7c\x58\xda\xf9\x70\xfe\x82\x1c\x42\xce\xd7\xe8\x59\x2b\x65\xab\x09\xbd\x8d\x51\x19\x75\xcf\xef\x10\xf6\x7d\xd0\xce\x1a\x9f\x72\x83\x70\xc8\xb7\x26\x45\x75\xc9\x5d\xc2\xb5\x75\xc3\xc7\xa2\x75\x1f\x11\xee\xc7\xb6\x59\xbc\xe3\xce\x21\x28\x64\x06\xe5\x36\xa9\x3e\x64\x61\xa1\xcf\xe4\x61\x56\x65\x12\xe1\xab\x6d\x42\x41\xd9\x73\x4b\xc2\xc3\xd0\x1c\x6d\xc1\xbb\x5c\x84\xb5\x21\xb2\xa2\x9b\x03\xcf\xff\x0b\x7f\xa5\x33\x6e\x6d\x6d\x55\xf9\x17\xd2\xae\x2e\x7f\xaf\x21\x1d\x53\x0c\xe7\x3f\x1f\xae\x7f\xed\xca\x62\x81\xe7\x55\xfe\xde\x9a\x6d\x2b\x08\x52\x53\x6c\x27\xd7\x7c\xfe\xc9\x40\xfc\xd7\x0b\xa1\x19\xdc\xcb\x09\x73\x55\x0b\x0b\x53\x15\x66\x73\x60\xef\xd6\xc4\xf1\xbd\x3d\x3c\x04\xf3\x2d\x47\x2d\xbd\x77\xe9\x13\x5e\x3b\xe6\x9f\xfb\xbe\xc0\x9c\xb0\xeb\x93\xe6\x55\xa5\xf7\x97\xc7\x3e\xfc\x85\xdf\x7e\xaa\xad\x24\xcc\x95\x11\xfc\xb0\x4a\xd9\x81\x23\xf9\x36\x7b\xd7\xcd\x57\xbb\x25\x08\x10\x9f\xbc\x42\xae\x2c\x94\x50\xb6\x9b\xef\xae\x79\x67\x28\xa1\x6b\xd0\xf4\x76\xed\xde\x44\x16\xea\x24\x97\x7f\x29\x91\xd8\x4a\xa8\x1a\xdc\xd4\xf6\xf0\x9a\x3a\x41\xca\xb3\x75\xfd\x44\xf3\xb1\x91\xdb\x5a\x72\x54\xdd\xd5\x93\x30\xbd\xce\xce\xc7\x6e\xae\x34\x21\xa7\x40\x20\x2f\xa3\xcc\x99\x50\x97\xd6\x55\x73\x65\x5c\x1f\xc3\x86\xca\x37\xe9\x07\x0d\x4a\xb5\xc5\xd8\xaf\xe6\x6f\xf6\xf8\x32\x8b\x70\xf8\x98\xc5\x5b\x62\x12\x58\x58\x33\xc3\x9b\xf5\xa5\x7a\x29\xe1\x57\x70\x81\x85\xce\x78\x6d\x42\xf4\x91\x8b\x6b\xec\x0f\x44\x72\x60\x77\x80\x93\xf7\xf6\x86\x10\x82\xfb\xdc\x8b\xd2\x17\x82\x18\xc2\xac\xea\xa7\xe3\x6d\xe5\x9f\xb0\x20\xc2\xeb\xf7\x7a\xdf\xa9\x50\x16\xcc\x17\x96\x65\x66\xdb\x5a\x11\xda\x95\x86\x8f\xd8\x9d\x5d\x41\x90\xe4\x32\xcc\x13\x53\x93\x22\x48\x91\xba\xab\xa7\x40\x36\xa1\xd5\xce\xed\xf0\x38\xb9\x27\x84\xb5\xb3\x4e\x5b\xd8\xd6\x3b\x12\xae\x9c\x8e\xae\xfb\x34\x37\x8a\x03\xf7\x72\x56\xb4\x7a\xfd\xd2\x21\x2c\xec\x53\xce\xf8\x93\xf2\x95\xc1\xa3\x3b\x26\xd6\x09\x05\x2e\xc4\x86\x54\xc4\xe7\x6b\x45\x43\xd2\x84\x9f\x36\xc2\xcc\x96\xa5\x69\x84\xfd\x9f\x25\x5f\xff\x31\xd9\x43\xf8\x9b\x93\xe5\x5c\x14\xc2\x4b\xb0\xbe\xb6\x61\x86\xde\x2e\xdd\x7f\x61\xc5\x86\x6d\x3d\xce\xf7\xd4\xff\x27\xa2\x87\xb5\x06\x26\x87\xc4\x17\xb3\x61\xec\x25\x54\x6b\x37\xb8\x89\xd8\x58\xaf\xf7\x5b\x3a\x52\x4c\x87\x30\x69\xd6\x92\x63\xf7\xfb\x4c\x08\x2d\x69\x87\x45\x82\x3f\xa8\x73\x60\x9d\xe6\xf2\xa0\x9b\xab\x52\x19\xd4\xaf\x4d\x1c\x7f\x4e\x4f\x98\xa0\xab\xe9\xf4\xc8\xe0\xf6\x76\x0e\x98\xac\x9c\x9d\xd6\xc4\x88\x13\x14\x5a\x14\x66\x28\x17\x4f\x23\x08\x6f\x6f\xb7\xd8\x27\xe2\x45\x78\xaa\xf5\xf5\xf5\x8c\x85\x0d\x0c\x16\x6c\x2e\x6f\xcf\xf7\x77\xa2\x7f\x20\x62\x67\x90\x87\xc3\x11\x9d\x7f\xc1\x49\x3b\x29\x4d\x39\xb0\x9b\x41\x47\x64\x78\xde\xd1\x3e\x25\x62\x23\x3f\xe9\xe2\x72\x87\xcb\x60\xd8\xd8\x5a\xb8\x71\xdc\x39\x55\x5d\x82\xb8\xbe\xde\x43\xe6\x0d\x2f\x81\x77\x50\xfd\xa1\xf5\x5a\x3e\x82\xeb\x48\x04\x5f\xc7\xd2\x41\x06\xb3\x8c\x2d\x4f\x8e\x6b\x31\x23\x36\x3e\x5e\x10\x99\x99\xe9\x39\x8f\x70\x55\x8c\x4f\x22\xdb\xd8\x98\x30\x79\x50\x3e\xb3\xf9\xba\x12\xe1\xeb\x50\xc7\xfe\x63\xbe\x85\x84\x6d\x91\x39\x75\x11\x59\x85\x84\xd4\x08\xe9\x94\xff\x92\x53\x95\xfa\x2f\x57\x6b\x14\x11\x3c\x9e\xf8\x98\x24\xbb\x15\x13\x2a\xac\x96\xb4\xf2\xff\x39\xc8\x82\xe6\xa7\x03\xba\xea\x3f\x95\x08\xb5\x2e\x5a\xcf\xcf\xfc\x19\x61\x20\x64\xbb\xfb\x5a\xb0\x3e\x11\x1b\x37\x97\x0a\xf5\xac\xd5\xf8\x54\x8c\x1d\xf1\x2b\x67\x4d\x38\x6d\x46\xf8\x3e\x63\x6a\x6c\xca\xd8\x7a\x22\xfd\x22\x49\xb7\x42\x6f\x39\x07\xf8\x6e\x8c\x18\x71\x6d\x98\x47\x18\x60\x3d\x3b\x23\xbf\x6a\x16\xe1\x01\x53\xd2\xb6\xac\x5e\x93\x70\x20\xdc\xad\x24\xf7\x9b\x32\x07\x7e\xa8\x9e\xdc\xbb\xf6\xe6\x00\x83\xc8\x1d\x03\xef\x9f\xff\xd6\x27\xb8\x38\x4b\x4e\xce\x5f\xdd\xcc\xc0\xee\x41\xdd\x25\x7f\xcd\xb7\x0c\x9e\x56\x7d\x50\xce\xbb\xab\x45\xd0\x31\x76\xf8\x55\x2e\xd3\xc3\xa0\xf5\xaf\x4b\x4c\xed\xc3\x46\x0e\xc4\x17\x64\x5f\x39\xb2\x73\x19\x01\x6a\xe9\xbb\x53\xac\xfd\x08\x0d\x6a\xcb\xc3\x8c\x55\x8d\x09\xd6\xef\x7b\x63\xb3\xe7\x1b\x11\xca\x76\x55\x4e\x3a\x5a\x7f\x92\x70\xe2\xf5\x9c\x3b\x7a\x2f\xc6\x46\xf7\x0b\xfe\x6a\xc5\xfd\x3a\x84\xab\x22\xb5\xed\xc7\xaf\x5b\x12\x76\x7e\x2d\x31\xf6\x68\xaf\x26\x54\x28\x66\x1e\x7a\xa6\xda\xc4\x60\x57\x9a\xfb\x3c\xe1\x6b\x27\x09\x57\xbf\x7e\x5c\x12\x3c\x9a\x48\x90\x12\x2e\xf3\x2d\xee\x4d\x24\x6c\x0c\x10\x08\xfe\x2f\x89\x1e\x8a\x29\x32\xc7\x59\x82\xe8\xc4\x29\x76\x99\x77\x38\xf1\x3f\x8e\xb6\x8d\x5f\xa7\x65\x3b\x1c\x44\x38\xf9\xa5\xf2\xe7\xbd\x0f\x41\x84\xf4\xed\x7c\x8b\x8e\xe9\x06\x12\x82\xee\x67\x09\x2f\x16\x09\x22\x5c\x5a\x24\xda\xfa\xdf\x33\x0f\x6c\xe5\x14\xae\x4d\x9d\x4c\x50\xd5\xab\x7b\x39\x38\xf6\x46\x4d\xe6\x12\x7b\x74\xe4\xc6\x02\x0e\x2c\xe3\xee\x1d\x89\xa9\x36\x20\x28\xda\x9d\x94\xfe\xaa\x3d\x8f\xb0\x7b\xc3\x86\x2e\xb3\x96\x87\x84\xc7\x25\x01\x82\xf3\xe4\xea\x19\x58\x7f\x3e\x25\x79\x62\x16\x1f\xa1\x31\x49\x7a\x9c\x24\xcb\x96\x03\x3d\xf1\x5c\x73\xae\x24\x0b\x12\xa2\x57\x6b\x49\x07\xcf\x90\x21\x3c\xbb\xb1\xb6\x75\xd7\xb7\xfb\x84\xd7\x7c\xe2\x37\xe3\x7d\x1e\x13\x92\x5f\x9c\x3e\xe2\xae\xf1\x84\x60\xb0\xa5\x7f\xee\x5a\xe1\x7c\xc2\xfe\xe8\x9e\x3f\x25\x5d\xd9\xac\x21\x9e\x25\x5c\x3b\x92\x8b\x08\x5f\x3f\x04\x18\xb0\xba\xb2\x59\x88\xb7\x3d\x29\xad\x2a\xf9\x96\x05\x43\x6f\x89\x35\xba\x63\xfb\x65\xd5\xb8\x01\x3b\x13\x41\x07\x02\xeb\x4b\x55\xd0\x89\x3f\xcb\x09\xda\x8b\x14\xba\x7c\x65\x57\x10\x76\x14\x8f\xde\xc9\x5d\x94\xcd\x62\x1f\x45\x39\x3b\xfb\x8d\x4c\x5c\xc7\x01\x8b\xe1\x3b\x11\xdd\x71\x73\x08\xa6\x9b\xa6\x6e\x5e\x74\xba\x84\xc1\xbe\x30\x1e\x79\xe3\x7d\x83\x0c\x9a\x25\xa7\xfc\xd6\x1c\x98\x4b\xd8\x39\xf3\x49\x82\x50\xfc\x34\x02\xef\xd5\xcc\x0c\x81\x5d\x79\x04\xcf\x8b\xda\xfb\xa3\x8e\xad\x20\xbc\x9e\x9d\x25\x23\xb6\xf0\x3b\x83\x7b\x06\x53\x2e\x2c\x3d\xef\x4c\x6c\xc4\x65\x1f\x39\x92\x5d\x9c\xc0\xe0\xde\x87\x29\x0d\x25\xbf\x78\x08\x6f\xd7\x1c\x3d\x9d\x36\x62\x44\xf8\xb2\x42\x33\xb8\x36\x3c\x8e\x03\x36\x6d\xa5\xdb\x0c\xb6\xec\xe2\xc0\xca\xbd\x86\x7e\x81\x1d\xfb\x08\x55\x70\x97\x9a\x37\x68\x4e\x88\xfb\xad\xa5\x3e\xd4\x77\x86\xe0\xa5\x75\xd0\xc7\x3c\xcc\x92\x03\x95\x99\xa5\x9b\x17\xec\x97\x24\xb4\x28\xdf\xed\x3e\xb7\xca\x84\x50\xb0\xb0\xe4\xbb\xe0\x0f\x7f\x0e\x9c\x62\xa5\x8d\x9f\x74\x96\x8f\xe0\x24\x94\xe1\xa6\x33\x3b\x87\xc0\xcc\xde\xc7\x2f\xa8\x50\xcd\x80\xdb\xb1\xca\xec\xd9\xc9\xc9\x84\x6f\xa3\x0e\x1b\xf9\x43\x72\x58\x10\x91\x4a\x2f\xba\x69\x28\x47\x88\xad\x8d\x62\xf4\x5e\xca\x11\xbc\x7b\xf9\xef\x9e\xda\xcd\xc5\x01\xa9\x3c\x83\xc6\x18\xe1\x5b\x0c\xf4\xce\x5e\xf8\x6e\xd6\x65\x45\xd0\x09\xda\x9b\xc1\x3b\xc4\x4f\x48\x28\x6d\x2b\x74\x32\x5f\x44\x78\x74\x45\xbf\xa5\x5e\x42\x89\x60\x55\xf1\xaa\xec\x5e\xaa\x26\x61\xff\x37\x79\xb5\x7d\xa3\xea\x84\x6f\x4b\x2b\xe3\xfe\x9c\x3a\x4b\x30\x7f\xf5\xe8\x57\x68\xc9\x12\xc2\x8d\xea\x64\xed\x39\x9b\x66\x12\x36\x74\xfd\xc8\xfa\xcc\xa7\xc8\x81\x7b\x25\x2e\xef\x57\x56\x0e\x33\xc8\x9e\x2c\xd2\x21\x31\xb6\xcf\xbd\x96\xaa\x48\x4d\xd4\x32\x26\x68\xdf\x4f\xd8\x5a\xed\x12\x4e\x28\xf7\x8d\x5e\xf5\x1f\x4a\x02\x44\xf7\x65\x1b\xf9\x12\x62\xe2\x52\xed\xfb\x5b\x3a\x19\x8c\x18\xa6\xee\xcb\x7f\xa9\x43\x6c\x5c\x7b\x2d\x67\xc5\xf3\xd5\x84\xd0\x2a\x37\x5b\xbd\xcf\xbb\xb6\x18\x5f\xe6\x0d\x7f\x54\x62\x24\x08\x47\x69\xbb\xc4\xab\x14\x05\xc2\x35\xe3\x65\x27\x86\xed\x63\x38\x20\xf8\xed\x4d\xe4\x5a\xf1\x13\x04\xa3\x25\x6e\xb9\xfe\x68\x28\x46\x4f\xaf\xc5\x93\x69\x7f\xb9\x08\x7d\xd7\x2f\xd6\x74\x3f\x51\xe3\xc0\xdd\xe8\xa4\xcb\x97\x64\x25\x08\x67\x9c\x04\xa5\x9c\xae\x73\x13\xfc\xf2\x12\xc7\xdb\xb8\xd8\x10\x4e\x53\xd9\xba\x8b\x75\xf3\x09\xd2\x5f\x84\x86\xed\xe7\x4a\x12\xce\xaa\xba\x2d\xb1\x18\x2b\x20\xae\xe7\xf7\x69\x3f\x19\xa7\x44\x98\xae\xb5\xe6\xf0\x7d\x57\x3d\xc2\xcc\x46\xc1\xbb\x8c\x9e\x06\x21\x78\xfa\x36\x89\xb2\xb5\x92\x84\x71\xed\x42\xcb\x3c\x0d\x2c\x08\x36\x5c\x97\xa2\xbf\x3e\xd4\xe1\x40\x3f\x7f\x93\x77\xc7\x73\x2e\xc2\xc9\x99\xae\x09\x0d\x66\x93\x09\x03\x9b\x77\x3b\x07\xb5\x2c\xa2\xa1\xb4\xa0\xa6\xe3\x1a\x02\x84\xce\x13\x31\x8f\x8e\x9b\x4b\x13\x16\x38\x2c\xac\x38\x1b\x3c\xcc\x60\xde\xb1\xa0\x2b\xeb\x4e\xac\x20\x36\x76\x4d\x7e\x19\x77\x61\xdb\x74\x82\x9a\xd3\xe2\xe0\x13\x8f\xa3\x08\xcd\xf7\x18\xd3\xf1\x17\x9c\xfe\x05\x0f\x9b\x25\xee\x55\x63\x35\x28\xab\xdc\x53\x86\x6f\x78\x80\xc1\xdb\x95\x79\x09\x6d\x90\x25\x6c\xfd\xab\x18\x3a\x3b\xf4\x22\x61\xa0\xce\xe0\x9e\xd2\xd1\x03\x04\xc5\xc5\x7a\xf1\x5d\x05\x3b\x59\x68\x9b\x56\x21\x3f\xf3\xde\x20\x83\x7b\xee\x5d\x87\xdb\x6c\x82\x09\xcb\xe5\x82\x07\xc5\xff\x9a\x13\x56\xc5\x2b\x4e\x7c\xf7\x6a\x36\x61\xc2\x9d\x13\x01\x2d\x8e\xf7\x08\x6a\x75\xf1\x45\x76\x32\xc1\x84\xe2\x95\x39\x96\xda\x6f\x77\x13\x54\xac\x6d\xa6\x1c\x90\x0c\x26\x3c\x7f\x63\x66\xdb\x95\xbf\x8f\x70\x52\xda\x4b\x89\x4f\x20\x8f\x05\x7e\xed\x79\x0d\x3c\x63\xf0\x93\x4d\xb9\x21\x7e\xa6\x82\x85\xa4\xe0\x15\x55\xa2\xb3\xae\x13\x14\xef\xb4\x1e\x4d\xf9\x13\x4d\x48\xce\x3f\xf0\x79\xdd\xed\x9d\x1c\xf8\xb6\x65\x51\xad\xae\xbd\x10\x61\x89\x48\xd4\x8d\xd3\xdb\x6e\xb0\xe0\x37\xb5\xd2\x47\x57\x74\x01\xc1\x64\x57\x9e\xc7\xed\x32\x1b\x82\x61\xfc\xaa\xba\xab\x17\x36\xb3\x10\x99\x64\xd0\xf7\xf4\xe6\x76\x1a\x3a\xff\x69\x89\xdd\x2e\x17\xfa\xbf\x80\x8d\x3a\x7f\xc1\x7e\x1b\x1b\x69\x42\x5b\xe5\xfa\xa2\xce\xd6\x83\x84\x80\xac\x8b\x75\xa7\xea\x8d\x08\xa2\xae\x8d\x0f\x26\xa6\x4d\x24\x88\xf3\xad\xbb\x15\x6e\xbb\x81\xc0\xd8\xc7\x84\x9d\x8a\x2b\x22\xc4\x4e\xae\xdd\x90\xe0\x59\x4c\x10\x69\x3a\xed\x67\x76\xa0\x98\x60\xb4\x5f\x3d\xff\x09\xcf\x4d\x42\x1d\x97\xfe\x94\xa9\x91\x25\x84\xee\x96\xc8\x83\x37\xbe\x9f\x23\x70\x1f\xb9\x76\xf5\x5c\x77\x15\x0b\x3e\xf3\x7b\xab\x26\x5b\xdb\x11\x0c\x7b\xb7\xd6\x7e\x9c\xf0\x84\x41\x99\xc7\xda\xc0\xbc\x28\x0f\x62\x83\xff\x41\xa9\x74\xca\x31\x35\x42\xeb\xba\x77\xb6\xa2\x1a\x06\x84\xbd\xfb\x3f\x79\x37\x8e\x55\xe5\xff\xc3\xaf\x36\x66\x9e\x0e\xbf\x1b\xe1\xe5\x4b\xde\x59\x96\x07\xd4\x08\xc6\x01\x19\x7b\x3a\xf5\x92\x08\x2a\x4a\xd3\xc3\xba\xe2\x4e\x13\x0e\x3c\x5c\x39\x12\xa1\x9c\x45\x48\xef\x48\xb2\x2e\xda\xaf\x4f\x58\x25\x9f\x5b\xac\xe8\xdf\xc7\xa0\x64\x69\xdb\x1c\x89\x8c\xcf\x0c\x6e\x6f\x39\xe5\xda\xee\x11\x4d\x28\x2e\xde\xba\xb0\x89\x26\x12\xbc\x1d\x52\x46\x96\x7b\x4e\x22\xe8\x6b\x4c\xbf\xbb\x25\xda\x97\x03\x09\x11\x72\x12\x2e\xb9\x0b\x09\x99\x75\x0f\xc5\x5d\x5a\x1f\x10\xee\x1c\xce\x56\x38\x38\xc9\x80\x90\x97\x27\xe0\xe2\xad\xa5\x4e\xf8\x75\x43\xfd\x43\x76\x9b\x12\xe1\x64\xcd\xc9\xbf\xf3\x56\x0b\x11\x26\x18\x65\x65\x5f\xd3\xd2\xe3\x40\x51\xde\x3d\xa7\x7b\x21\xea\x84\xad\x9b\xab\xb2\x8e\xfb\x8c\xd5\xa1\xff\x07\xbe\xcd\x99\xb1\x45\x97\x7f\x70\xe0\x4b\xdb\xcd\xd6\xbb\x6f\x66\x11\x1b\x2a\x3e\x0f\x0e\x33\x9e\xab\x08\x77\x03\x96\x70\x37\xee\x78\x48\x90\xea\xf3\x9c\xac\xd3\xa1\x40\x30\xe6\x9e\x6a\x79\xe7\xe7\x44\xc2\xb6\x8a\xd5\x46\xd4\xad\xcf\x81\x63\x69\xe9\x8a\xaf\x82\x13\x58\xec\x24\x56\xdb\xe2\xc4\x2a\x85\x8f\xc5\xb8\xfa\xd8\x3a\x40\x66\x2e\x18\xb8\x4c\xc9\x55\x19\x39\xdc\xc6\xc0\xb5\x2b\xe6\xac\xdd\xd2\x13\x2c\x04\xc5\xdb\xe6\xe4\xc5\x18\x12\x1b\x7a\x87\x9c\xe6\xa5\x6e\xfa\xcc\xb0\x71\xbd\x3e\xb4\xc0\x76\xae\x26\xb1\x71\xff\xfd\xf4\x76\x46\xa6\x8f\xc1\xb9\x40\x19\x85\x50\x1e\x01\x02\xff\x7e\x6b\xdf\x68\xda\xc1\x81\x5b\x3d\xc2\xef\xe5\xb6\xf3\x12\x9a\x74\xa2\x73\x0f\x76\x6b\x12\x1e\xcc\x3a\x76\xf1\xda\x70\x05\x83\x72\xa3\xcf\x5e\x8b\xe3\x24\x89\x8d\xc6\x53\xd2\x19\xca\xa5\x55\x0c\x6e\x38\x4b\x9b\xe6\xc8\x2c\x25\xb8\xda\x2f\xed\x17\x90\x89\xe0\xc0\x1d\xf5\x26\xd3\x82\xd7\xae\x04\x0f\x1f\x5f\x4d\xbd\x37\xe3\x08\x8b\x04\xb9\xfb\x7e\xab\x4d\x22\x4c\x49\x4b\x1b\x84\xee\x10\x83\xba\xf5\x52\x49\x1b\x8a\xc6\xaa\xf2\x60\x9f\xb0\xcf\xf2\x2e\x06\x43\x1a\xfa\x7e\x49\x55\x52\x04\x85\xd8\xfc\x13\x0b\xa5\xbb\x19\xf0\xdc\x13\x6d\x12\xfc\x34\x81\xf0\x3c\x81\x47\xaa\x35\x86\x97\x70\x3b\xe3\x41\xc7\xea\xaf\x32\x1c\x70\x54\x88\x3d\xe1\xfb\xe3\x0b\x41\xf6\xba\x97\xc8\xd1\xcd\x2c\xc2\xcf\x61\x43\x53\x65\xb9\x4c\xc2\x36\xf5\xba\xef\xcd\x0b\x1c\x09\xcf\xdb\x82\x82\x1c\x67\x6e\x20\xd4\xf3\xa5\xf9\x7e\xef\x9a\x4e\xc8\xe9\x7a\xe6\xc9\x7d\xf6\x27\x83\x63\x89\x3b\x8f\x0c\xb5\xe5\x11\x9e\xe4\x86\x85\xbc\x30\x49\x64\xa1\x2d\x69\xeb\x5e\xf9\x55\xb7\x09\xb1\x9d\x35\xbd\x37\x79\xf3\x08\x45\xa2\xde\x17\x0a\x66\x13\x61\x5a\xd8\x7a\x3a\xfc\x7d\x09\xe1\xb1\x8e\xe6\xe2\x92\x08\x5e\x82\xdb\xa2\x2f\xf0\x98\xa6\xc2\x81\xb9\x1d\x26\x07\xa7\x73\xa5\x17\xb3\x31\xe2\x63\xe1\x91\xe3\xdd\xc1\x20\x6b\xe4\xaf\x42\xf8\x61\x27\x62\x63\xc2\xfb\xfb\xc1\x01\xf6\xd3\x09\xf1\xad\x49\x62\xd9\x77\xd6\x12\x1a\x3d\x36\x2d\xfa\xd3\x65\x42\x28\xde\xfd\x6b\xee\xa8\x98\x12\x41\xc6\x2c\x23\xea\xf7\xb3\x57\xc5\xc8\xca\x71\xad\x9e\x57\xe7\x40\x78\x3f\xb0\xe5\x80\x4c\x90\x0a\xe1\x0c\xeb\xd1\x62\xaf\x81\x28\x42\xd2\xe3\x98\x2b\xf3\x17\x56\x12\xa4\x32\x3e\xf3\x58\x3f\xbe\x4a\x18\xac\xf9\xac\xf7\x3b\xa3\x95\x41\x68\xd2\xde\xfe\xf3\xeb\x67\x11\x1e\x96\xe4\x25\x9d\x32\x7a\xc9\x62\x27\x11\xd7\x9a\xe6\xda\x89\xf1\x10\xba\x42\x14\xdb\x2b\xf8\x67\x11\x5e\xf8\x05\xc6\xc8\x60\x15\x61\x83\xe4\xee\x49\x41\x24\x4a\xf8\x3a\xe7\xa3\x7f\x9a\xe3\x5f\x06\x07\xcf\xfe\xb5\x4b\x14\xb7\x27\x54\xc4\xe5\x36\x94\x8e\x6d\xa0\xae\x36\x4a\x55\xe1\xb1\xdc\x84\xc4\xca\xe8\xc7\x17\x05\x97\x71\xe0\x63\xca\x72\xdd\x9b\x3c\xbd\x0c\xda\x37\x5e\x1e\x58\xfa\xc0\x90\x20\xb5\xf7\xf8\x0c\xf9\xb4\x0e\x06\x56\x27\x8b\xb5\x93\xec\xd5\x08\xab\xf4\x75\x0a\xbd\x34\x4b\x08\xca\x5f\xce\xdb\xca\xcd\x7c\x45\x08\x8c\x0c\xdc\x36\xa9\xbf\x9e\x41\x4a\x75\xbf\x7d\x4c\xf5\x20\x07\xda\x7e\x8e\xb3\x57\xf6\xe5\x25\xa8\xd4\xb4\x68\x7b\x75\x4f\x25\xc4\xce\xbb\x7b\xa3\x61\x6c\x5c\xfc\x1f\x3a\x9f\xee\x6a\xf8\xbc\x74\x27\x61\x52\xff\xb3\x1d\xc5\x7e\xe6\x84\x0b\x6f\x04\x0c\x75\xf6\x68\x10\x5c\x2a\x0f\xd5\x26\x05\x59\x11\x6a\x3e\x2c\x93\x8c\x1f\xaf\x4c\xb8\x99\x27\x65\x93\xa3\x25\x48\xd8\x7c\xae\x32\xa7\xe5\xa0\x27\xa1\xf0\xd0\x6a\xe1\x28\x3b\x3e\xc2\x8a\x49\xf7\x6f\xcd\x68\xe0\x26\x6c\xcf\x16\xfa\x54\x57\xf9\x80\x90\x1f\x18\x69\xbe\x73\x9f\x21\xe1\xe8\x53\xa3\x96\x58\x41\x1d\xc2\x62\xe1\xe5\x2a\x5c\x37\xe6\x11\x9e\x4e\x1f\x1f\xc7\x3c\x36\x21\x04\x3f\x0e\x64\xb9\x0b\xef\x23\xbc\xda\xfd\xa1\xf9\xc7\x47\x71\xc2\xb6\xb2\xc0\x95\x45\x87\x87\x19\x2c\x2c\x6e\xe7\xf1\x7e\xf1\x85\x81\xe9\x61\x15\xbe\xbb\x72\x3a\x84\x45\x0e\x32\x33\xba\xf5\x17\x13\x64\xdd\x6c\xdd\x16\x56\x47\x13\xd6\x91\xab\xd8\x3c\x0b\x59\x42\x46\xd8\x75\xa6\x2c\x7f\xac\x1c\xec\x79\xe9\x97\xff\xab\x87\x61\xc3\xe6\x56\x71\x05\xb7\x94\x32\xb1\x91\xd2\xba\x2f\xd2\xb1\x4a\x9a\x30\x3b\x72\x63\x8b\xab\x80\x0a\xe1\xa0\xf0\xb6\xb5\x49\x93\xc3\x59\x08\x09\x3b\xe9\xd3\x10\x90\x48\xc8\x39\xb5\x69\xd4\x5e\xcb\x88\xa0\x7e\x4e\xee\xdd\xef\xf3\x59\x84\x72\xdb\x2d\x57\x47\x26\xea\x10\xb6\x7e\x56\x3e\x6b\x56\xc2\xcf\x81\x93\xde\x57\x7d\xfb\xcc\x54\x08\x8f\xa4\x26\x39\xc5\x6e\x10\x20\x54\xe8\x06\x1d\x4d\x6d\x12\x27\x2c\xda\x20\x58\x9a\x22\x58\xc2\xc2\x2a\xed\xfe\x1d\x2b\xef\x8e\x35\x89\x81\x27\xe3\x2f\x4d\x93\x21\x78\x06\xfa\x8a\x84\xcc\xed\x65\xe0\x6a\xf0\x32\x6b\x46\xb2\x22\xe1\x9d\x53\x57\xc5\xcd\xb9\x67\x59\x88\xb5\x2b\x7e\x7c\x36\x62\x2b\xe1\x5c\xd7\x0b\x83\xaf\x56\x93\x08\x8f\x3a\xe6\x79\xc9\xb7\x1d\x23\xbc\x33\x6b\xd2\x16\x0f\x12\x22\x74\xee\xd3\x5c\x19\x50\xb0\x87\x03\x77\xcf\xef\x98\x39\x55\x64\x07\xe1\x77\x00\x4b\xcd\x32\xfb\x37\x83\x2b\xe9\x2b\x9d\xe3\x1e\x4d\x24\xc8\xee\xe6\x4b\x5e\x25\x38\x8e\xa0\xfc\x4b\xe2\xf0\x86\x3e\x11\x42\xcc\x97\xa9\x6d\xd7\x77\x6a\x71\x60\xae\x87\x82\x7f\x96\xec\x57\x06\xf7\x1f\x0e\xca\xe4\xd9\x3b\x13\x12\xe4\xe7\xba\x70\xc5\xab\x11\x14\x2a\xfc\xcb\x7f\x9c\x13\x21\x3c\x89\xf9\x16\xf2\xf7\x84\x19\xa1\x5c\xb0\xff\xbd\xc9\x7c\x73\x42\x62\xd6\xac\xe5\x7e\xf7\x87\x19\xac\xf4\x52\x97\xb6\xf8\x54\x4c\x48\x4b\xd4\xf6\x59\xdb\x73\x9e\x05\x03\xb3\xa6\xe0\x75\xc5\x7c\x84\x3d\x5f\x6c\x9e\x17\xe5\xbd\x63\xf0\x50\x7e\x45\x43\xcb\x23\x73\xc2\x9c\x75\x93\x7a\xee\x05\xab\x12\xa6\x30\x35\x70\x6d\x32\x27\xfc\xf8\xe9\xef\xb2\x6a\x6d\x37\x03\xd7\x2d\xa1\xfa\xcf\x6f\x0c\x31\x98\x33\xd9\x64\x7e\xaa\xd8\xd8\x7f\xb8\x5f\xe1\xfc\xfe\x88\x4b\x84\xad\xda\xaf\xc7\xaf\xde\xdc\xc9\xa0\xf4\xc6\x85\xeb\x9e\x07\xdd\x08\x86\xd3\xcf\x1d\xf8\x5a\x69\x40\x70\xfd\xa3\x99\xd9\x0b\x15\x42\x8f\xd5\xd6\x97\x0d\xbd\xdc\x84\x00\xeb\xae\x0f\x85\x27\x87\x19\xd4\x1f\x4b\x6f\x6b\x9f\x3a\xc2\x60\xda\xbd\xa4\xaf\xba\xaa\xab\x08\x0e\xef\x64\xe7\xb7\xf5\x73\x13\x7c\x3a\x8d\x0f\xf5\x9d\x68\x67\x70\x46\xe1\xb3\x67\xcf\xa5\x9b\x84\x8e\xf8\xc4\x3b\x66\x2e\x2b\x08\xb6\xf7\xf8\x6d\xfa\x75\x1c\x39\x92\x9f\xd9\x46\xae\x8e\xf7\x27\x11\xcc\xdf\x3c\xdf\x64\xdb\x9a\x33\x76\xb1\x9a\x4d\x88\x64\xc5\x11\xa4\xd7\xf9\x75\xff\xec\xc9\x21\xe4\x1e\x3a\xf2\x77\x57\x69\x24\xe1\xc4\x06\x67\x97\x0b\x65\x91\x84\x27\xfb\xf2\x46\x17\xbf\xbc\x48\x58\xa6\x54\xea\x74\xf3\xce\xd8\x8f\xff\xd0\xa0\xa5\x6e\xbb\x91\xfe\x17\xf6\xab\x68\xc7\x1d\x32\xd3\x26\x58\xcd\x92\xf0\xda\x19\x95\x44\x98\x70\xf4\xe6\x2e\x9b\xb8\x89\x84\x99\x72\xe5\xd6\x29\x25\xbd\x0c\xa2\x7e\xaf\xb4\xf6\xe9\xb7\xa6\xff\x85\x7c\x95\x46\xb3\x2c\x51\x11\xc2\xf4\xc5\x86\x47\x37\xfc\xe8\x65\xb0\xb4\xef\xcd\x8d\x3d\x67\x62\x58\x78\x15\x1a\xd9\xf4\x2a\x3a\x8b\xc0\xbf\xbd\xc4\x59\x4e\xed\x26\x83\x42\x29\xe1\x95\xcd\x6a\xeb\xe8\x1f\xa8\x8b\x51\x95\x9d\x79\xeb\x0b\x83\x0f\x72\x15\x99\x67\x8f\x4c\x25\xbc\x2d\xe8\xbc\x59\x3c\xee\x06\x07\x2e\xe6\x26\x2b\x6c\x5b\xb3\x9b\x60\xbf\x29\x55\x36\xdf\xeb\x5d\x31\x0a\xf7\x1d\xff\xbe\x2a\xd6\x9e\xd8\x98\xdf\x1c\x18\x5f\xfe\x79\x32\xa1\xb7\xc2\x60\xed\x94\xce\x7e\x06\x67\x04\xbe\xd9\xc6\x2c\xd3\x25\x36\xae\x5c\x15\x2c\x5f\x32\x76\xfd\xfd\x1f\x8c\x1a\xcf\xbc\xb9\xf0\x80\x9b\x70\x7e\xe7\xc3\x33\x09\x03\x1b\x09\x2a\x41\x42\xa3\xf9\xc9\x9a\x84\x8f\x11\xe5\x57\x17\xbe\x31\x24\x94\x68\xac\x9d\x5d\x2a\xae\x47\xf8\x1c\xb4\xda\x99\x4b\x62\x1c\x61\xe2\x9a\x2f\x17\x0f\x1a\x1c\x26\xf0\xcc\x4b\x88\x70\x77\xb5\x24\xe8\xef\xac\x30\x18\x28\xbb\xcb\x82\x52\x24\x19\x19\xab\xdc\x64\x81\x47\x48\xdf\xbd\x45\xe2\x3e\x0b\x81\x47\x3f\xa7\x7e\x1e\x83\x73\xdc\x2f\x43\xa9\xcf\xfc\x84\x65\x8d\x21\x45\xb7\x2f\xb5\x33\xb0\xdc\xfa\x8d\xf7\x39\xb3\x9d\x60\x1f\xdc\xd2\xbe\xfd\xd1\x47\x06\x8a\x7f\xf6\x5e\x37\x3a\xf9\x9e\xa0\xae\xa3\x78\x60\x83\x7c\x37\x21\x37\xeb\xa7\xec\x53\xb1\xc7\x04\xa3\x49\x8a\x4a\xa2\x5f\x72\x09\x5e\x9b\x37\x65\x2e\xd7\x7d\xcf\xe0\x46\xbc\x4b\x0b\xab\xba\x85\x03\xb7\x86\x3c\xa6\x9e\x5b\x2b\x4e\x68\x6f\x10\x39\x3b\x4b\x46\x80\xf0\x57\x64\xb0\xbb\xce\x33\x96\x03\x51\x21\x77\x32\x57\x95\xed\x21\xb0\x9e\x69\xbe\x59\xf3\xb3\x80\xc1\xd0\xed\x85\x2f\xa6\x5d\xf2\x67\x41\x6e\xe6\xe5\x9f\x46\x85\x06\x84\x9d\x7b\x71\xf3\xc7\x81\x64\x82\xd7\x9e\x46\xbd\xbb\x2e\x3f\x19\x28\x22\xdd\xc1\xf7\xa2\x26\xb1\x91\xa9\xfe\xf6\xc8\xcd\xfb\xe2\x84\x71\x9a\xc3\xac\xf7\x21\x96\x04\x81\x84\x2d\x6d\xb2\x71\x0b\x09\xa6\x32\x75\x56\xf1\x5f\x26\x13\x1a\x25\xca\x52\x7f\xc6\x8c\x30\x88\xbf\x5b\xa7\xba\x4b\x2b\x85\x10\x70\x61\xb5\x4d\xde\xcd\x5c\x42\xed\xce\x5b\x1d\x6a\xe9\x59\x84\x89\xa6\xea\x57\xef\x85\x05\xb0\x90\xcc\xed\xfd\xff\xe3\xd3\xce\xa3\xa9\xfc\xc3\xfd\xff\x47\x99\x2a\x53\x45\x83\x21\x42\xa1\x01\x09\x69\xb8\xaf\x44\x44\x93\x21\x1a\x54\x86\x12\x8d\x94\x94\x94\x48\x88\x26\x32\xa5\x92\x32\x66\xc8\x5c\x66\xb6\x39\x9a\x90\xc8\x10\x91\x28\x9a\x44\xe5\x85\x86\xdf\xd2\x5a\xe7\x63\x9f\xf5\xeb\x7b\xfe\xda\x8f\xf5\xbc\xda\xad\x6d\xaf\xed\xbe\xdf\x17\x16\x0b\x08\xd5\x17\xe2\xa1\xc0\xfe\xfc\x05\x3a\x1e\x34\x86\x7a\xcf\x50\x8e\x0b\x9f\x14\x08\xac\x20\x4d\x99\xd0\x9b\xf5\x0c\xec\xb2\x4e\x5f\x16\xf5\x9d\x4b\x63\x18\xde\x78\xc7\x73\xa4\x37\x96\x70\x6f\x7a\x00\xe7\x97\x11\x7d\xc2\x5b\xeb\x4c\x53\xa3\x71\xed\x0c\x7e\xbf\x39\x34\xb9\x59\x7a\x84\x0d\x7e\x51\xe6\xe7\x8f\x69\xc4\x30\xd0\x52\x5b\xb8\xc2\x51\x3f\x87\x70\x49\x65\xee\x9c\x45\xad\xcb\x09\x71\x5b\x2f\x5e\xfb\xb1\x60\x26\x41\xe0\x96\xdb\x5c\xd9\xa4\xa4\x42\x2c\xda\x3f\xed\x73\x7f\x50\x16\x61\x9a\xad\x4e\x8d\x4f\x60\x16\x8d\x95\x2a\x8d\xad\x71\x9a\xa7\x64\x08\xd9\x72\xed\x2b\x16\x7f\xec\x67\x50\xf8\xa3\xe2\xc9\xe2\xb2\x74\xc2\x7e\xc7\x69\x13\x13\xc3\x37\x11\x1e\x36\xbd\x53\x79\x63\x2b\x40\x38\x60\xb1\x52\xaa\x3b\x71\x3e\x61\xce\x50\xf1\xd7\x6d\x62\x4b\x09\x0f\x27\xfe\x62\xba\xe2\x8b\x09\x45\xd6\x9d\xb3\xfb\xce\x88\x11\xbc\x0f\x2d\xe0\x3b\xb7\xeb\x2a\x61\xef\xfb\x83\x8e\x23\xae\x1e\x04\xe6\x45\x4f\x7b\xd0\xb7\x1f\xcc\x18\x1c\x82\xaf\xaf\x35\xbc\xf8\x87\x41\xe0\x77\xa7\xaa\x1b\x87\xa7\x10\x9e\x86\xba\xf8\x88\xea\xee\x62\x21\x45\x63\xe1\xb1\x35\xa3\x4b\x84\xeb\xb9\xa6\xc3\x9c\x6d\xa9\x04\x2d\x8d\x33\x07\x4e\x94\xad\x27\xb8\x49\x3b\xeb\x57\xf9\xfd\x64\xc6\x70\xb5\x3f\x60\xcf\xc4\x57\x8d\x85\xe8\xfd\xc3\x27\xa8\x26\x94\x46\xd8\xf3\x26\x7b\xad\xf9\xce\x07\x84\xbc\x1f\xbb\x0b\xad\x1e\x0e\x33\x78\xa1\x16\xb2\xa5\x59\x9f\x9b\xc6\xb0\x2d\x84\x67\x4b\x58\x65\x3f\x83\x89\x65\x31\x2b\x2b\x97\xf0\x10\x14\x7d\x82\x9b\x9b\xff\x5c\x25\x54\xfd\x2e\x53\x5b\x50\x70\x94\x70\x75\xc5\x03\x03\x7e\x8e\x07\x84\xf9\xdf\x6f\xab\xfe\x85\xd5\x5e\x27\xae\xff\x8d\xf1\xed\x7b\x4f\x49\x2f\xb7\x23\x3c\xbc\x32\x38\xf5\xcc\x91\x74\x82\xa0\xda\x80\x8f\x64\x5f\x36\x81\x84\x53\xe5\xfb\xf2\xb3\x09\xea\xf9\x75\x12\x0b\x92\xd3\x09\x95\x03\xa9\x3f\xcb\x33\x5f\xb3\x20\x9b\x67\x18\xff\x46\x22\x87\x60\xe3\x77\xbf\xe4\xf9\x8c\x78\x42\x70\xb7\x8f\x99\xf5\xee\x02\x82\xe9\xe0\x8a\xeb\xad\x73\xf2\x09\x1d\x0d\x95\xe1\xfe\x4a\xf7\x09\x12\x7e\x55\x1b\xf5\x79\x17\xb0\x21\xf5\xae\xd9\xb0\xf6\x4b\x7f\x36\xe8\xc8\xca\x5f\xd0\x3b\xe7\x44\xf8\x91\xec\x3e\xe5\x4e\x7a\x15\x83\xb4\xd5\xbf\x2e\xa9\x3f\xe6\x23\xc8\x5c\x3b\xa7\xae\xbc\x69\x31\x1b\xe2\x4c\x93\x66\x37\x9e\xbf\xc8\x06\x75\x5f\x13\x61\xfb\xc6\xe3\x84\x7d\x8c\xd2\xf5\x5d\x7d\x1c\x04\xd4\x16\x48\x26\xf7\x98\x12\xda\x53\xf2\xba\xb5\x7b\x06\x98\x31\x3c\xf4\xd9\xee\x36\x6e\x8d\x1e\xe1\x68\x9b\xa8\x7a\x79\x53\x06\xc1\xfc\xf9\xd1\x97\xb5\x6f\x1f\xb1\x60\x68\xb5\xab\xe4\xc3\xac\x30\x16\x3e\x16\x6f\xed\xfb\xb9\x3f\x97\x70\xe7\x67\xd7\xf2\x62\xfb\x95\x84\x0e\xd7\x1d\x7b\x45\xeb\xa4\x08\xa1\x59\xfb\x5c\x35\x92\xde\x32\xd0\xcd\x79\x1d\x96\x9e\xf6\x8d\x19\x2b\x8d\x7d\x59\x9e\x09\x8f\xd4\x08\x0f\x16\xef\x1c\xb8\xab\xa2\x4b\x63\x65\x9b\xc9\x8a\x0e\xf9\x07\x61\x0c\x84\xc3\x2e\x3c\xab\x88\x0c\x20\xc8\xf5\x95\x96\xea\x58\xac\x27\x04\xc7\xde\x6b\xfd\xb9\x53\x84\x90\x67\x1f\x2b\xb5\xe1\xc1\x02\x36\x3c\xe9\x2d\xef\x7d\xb0\xf5\x1b\x03\x8e\x82\xa7\x5b\xc6\x7d\x78\xcc\xc2\xbc\x0f\xbb\x0a\x5f\xf9\x26\xb0\xe0\xf3\x7c\x55\x9c\xf5\xac\x87\x04\xb9\xea\x22\xe5\x7e\xf5\x10\x42\x09\x8f\x69\x80\xfd\xce\x0c\xc2\x9f\x03\xac\x75\x29\xbb\xb7\x12\xf6\x39\xea\x04\x58\xcd\xd9\xc6\x06\xfb\x98\x0b\x7a\x7f\x66\xc9\xfd\x0b\x33\xef\x5b\x4f\xee\x92\xe6\xf9\x17\x36\x65\x9d\x39\x2e\xbc\xea\x07\x83\x19\xe3\xf3\xfd\x5a\x26\xa8\x12\x3c\x85\x37\xa8\xfb\x78\x89\x12\x8a\xaa\x25\x6a\xa2\xfd\x34\x08\x26\x45\x8f\x9e\xbd\x9f\xe6\xc8\x82\xef\x4f\xff\xd7\xaf\x7e\x8e\x27\xf8\xad\x9f\xbf\xcd\x39\x77\x2e\x21\xc7\x2a\x6b\x65\xa9\xb6\x00\x61\x5a\x53\x48\xc9\x11\x1d\x55\x82\x42\x7d\xe0\x8c\xdc\x9d\xd1\x84\xc0\xd3\x19\x6e\x55\xb9\x96\x84\xc0\xcd\xc3\x9b\x5f\xde\xf9\xc1\xc0\x2b\xa3\x5d\xb9\xa7\xd0\x81\x85\xdb\x5e\x45\xdc\xdc\x9d\xaa\x2c\xac\x39\xbb\xe2\x62\x91\xf8\x5c\xc2\xef\x75\x4e\x89\xc2\x43\x3c\x84\x07\x13\x03\x7f\x7f\x35\xe6\x60\x03\x4f\xa5\xd7\x4e\x03\xe9\x9f\xcc\x18\x9e\x16\x68\x26\x6d\x97\xfc\xc3\x20\xe2\x7e\xe3\x67\xaf\x1f\x93\x08\x43\x4a\x57\x4f\x3f\x3f\xdf\xcf\x60\xf2\xd1\xc4\xa4\x7b\x79\xc5\x84\x0d\x7a\x0b\xde\x38\x2a\x88\x11\xce\xf0\x5e\xb6\xf5\x7c\x79\x9e\x0d\xbb\x8e\x0f\x34\x4e\x7b\x1b\x44\x58\xe2\xb6\xea\xda\xa6\xfa\x4d\x04\xaf\xa9\xb5\xbe\xcc\xd5\x87\x84\xcd\xf2\x3c\xfc\xb3\xc3\xa3\x09\x53\x66\xde\xe5\x5f\x1d\xb7\x9b\x85\x66\xe5\x87\xc6\x3f\x5e\x5c\x24\xdc\x9d\xa4\x16\x99\xcc\x5d\x4c\xb0\x48\xb6\x33\xda\xf5\xc9\x9d\xf0\x48\x72\x82\xce\xaf\xd3\xee\x84\xb5\xab\x0a\x56\x1f\xfb\xe1\x46\x98\x71\x70\xfb\x4c\x37\x4d\x77\xc2\x09\x0e\x91\x6f\x57\x5d\xdd\x09\x26\x73\x7a\x36\xed\x3d\xeb\x4a\x88\xfd\xf4\x4b\xdf\xda\xd6\x91\xf0\x31\xd6\xf2\xa9\xc2\x65\x17\x82\xa4\xfc\x88\x45\x83\xa3\x17\x41\xa1\xff\xd3\xde\xcd\x71\xee\x2c\xc4\xda\x14\xac\x9d\x52\xec\xc0\x36\x72\xab\x9e\xfc\xfa\xb4\xc1\x75\x82\x5f\x64\xb2\x59\x9d\xf1\x75\xc2\x97\x17\xa7\xb8\x32\x38\xb8\x08\x4c\xeb\xc9\xdd\xc2\x1b\x87\x19\x44\x09\x8a\x4f\xd4\x2f\x3d\x49\x80\xf7\x73\x79\xa9\x2d\x7b\x09\x91\x73\xe2\xe8\x4a\x56\x1a\xc1\x3b\x2b\xda\xd4\xf9\xc0\x24\xc2\x7b\xb7\x17\x2d\x29\x1b\xe5\x08\x42\x25\x76\x4f\xf2\x8e\x98\x10\x38\x5e\x35\x1a\x45\x47\x5a\x10\x34\x55\xce\x8e\x3f\xef\x6c\x40\xe8\xfb\x53\x5d\x19\x65\xc7\x49\xb0\xe1\x52\x6d\xf7\x11\xd3\x22\x58\xc6\xf1\xcf\x3e\xcd\xf2\x62\x41\xbb\x53\x6e\x78\x6d\x0e\x1f\xe1\xc5\x44\x0d\x66\xbd\xed\x0b\x06\x9c\x4a\x7c\xa2\x4a\xfe\xc7\x69\x0c\x9d\x0a\x39\x05\x57\x7a\x64\x08\x53\xf3\xce\x2a\xdf\x33\xe7\x23\x98\x1a\x17\x47\xa7\x6f\x92\x20\xd8\x1c\xf0\x58\x2b\x6c\x62\xf2\x2f\x2c\x5e\x6e\x72\xe4\xe2\x9e\x49\x6c\x28\x8a\xec\x3b\xb8\xe3\x53\x03\x83\xef\x49\xaa\x83\x19\x3b\x87\x19\xc4\x77\x2e\xba\xef\x93\x35\x8d\xc0\xd9\xb0\x64\x59\x82\x92\x14\x41\xa3\x79\xe7\x84\x55\x43\x2d\x85\x08\xd1\x3a\xb2\xe9\xfb\xb3\xaf\xcc\x18\xa6\x9d\x13\x34\x58\xb4\xf3\x2b\x03\xa7\x26\x8e\xe2\xa2\xdc\xa5\x84\x27\xfd\x4a\xeb\xf7\x7d\x30\x21\xec\xeb\x78\xab\x79\x27\xe2\x0e\xc1\xe5\x7b\xd9\x4b\x15\x6d\x9b\x7f\xe1\xd4\x7e\x93\x71\x36\x3c\x07\x09\x9e\x5c\xb1\x5a\xf7\xca\x52\x09\xdf\x4f\xf9\x0a\x0c\x7d\x1b\x5d\xed\x77\x2d\x49\xc7\xff\x42\xe9\xef\x67\x03\xdc\x1d\xf3\x08\x2d\xae\x1c\x1f\x93\x2e\x86\x10\x2c\xe2\xf9\x9f\x45\x4c\xde\x4b\x08\x5b\x92\x3e\x7c\xdf\xdc\x90\x35\x56\xfe\x83\x75\xf8\xb1\x19\xe2\x9a\x5b\x09\x6e\x03\x97\x46\x76\x9d\x9f\x4c\x68\x91\x59\xb6\xf1\xf8\x81\x59\x04\xe1\x99\xf5\x4e\x99\x2c\x35\xc2\x49\x0f\xcd\xf8\x35\x73\x55\x09\xef\xf9\x25\xd2\xce\x2d\x9e\x48\x38\x5f\xe5\xd4\xbc\x48\xf2\x1d\x33\x86\xd2\x0e\x0f\x75\xbb\x2f\x35\x85\xa8\xba\xd9\x93\x1e\xbf\x48\x96\xc0\x3d\x2b\xf7\xd3\x35\xa1\x74\x42\x97\x83\xf0\xdc\x1b\x86\xa3\x2f\xfe\xcb\x83\x8d\xfd\xc9\x3f\x18\x1c\x29\x7d\x93\x35\x33\xea\x00\xe1\x7b\xb3\xfc\xbd\x49\x32\x77\x08\xdf\x79\x72\x82\xb2\x6d\x6d\x09\xc6\xda\x9d\x02\x15\x1e\xb6\x6c\x65\x75\xc0\xe4\xc2\x40\xfb\x69\x84\xbc\x5a\xfe\x33\xae\x12\x33\x09\x26\x8e\xee\x33\xcc\x93\x2f\x10\x8a\xf2\x92\xb7\x66\x2e\x30\x63\xc3\xda\x19\x55\x96\x8b\x37\xf1\x12\x56\x0e\x2a\x39\xc9\xb4\xfb\x12\x66\x3e\xd0\x89\xb8\x73\xaa\x8e\xe0\x7a\x64\xdd\x0e\xde\xf6\x22\x42\xf6\x6d\x87\x73\xe3\x46\x4a\x09\xc7\x5d\x5b\x33\xfe\xc4\x9a\x13\xc4\x57\xd6\x1c\xec\xde\x51\x4c\xe0\xaa\xd0\x6a\xdf\x5c\x10\x40\x28\x3a\xf4\x63\x3a\x87\xb9\x31\x61\xb8\xb7\xd8\x4b\xe6\x8a\x09\xe1\x9c\xcd\x76\x52\x60\x36\x11\x26\xfb\x1b\xd7\xf0\x1e\xd1\x22\x28\x65\x0a\x70\x96\x99\x6d\x27\x58\x4f\x4a\x6c\xf7\xdc\x32\xba\xec\x47\x48\x4e\xe2\x4f\x2c\x2a\x84\x6f\xf8\xaf\x52\xe1\xaf\x2c\x42\xad\x70\x42\xd9\x93\x3a\x16\x21\xd5\x65\xee\x8e\x5b\x5b\x5e\xb3\xc6\x46\x2b\x46\x14\x2e\x59\x6c\x91\x25\x78\xbf\xba\xfa\x46\xd9\x3c\x99\x10\x11\xc6\xa5\x72\xbc\xf8\x3e\x41\x5d\xf7\x69\x91\x99\x45\x1e\x61\xf8\x90\xa6\xfc\x03\xb5\x54\x42\x4e\xcf\xa1\xe8\x0d\x79\x39\x84\x8f\x05\xc6\x37\xb8\x97\x14\x11\xee\x6e\x59\xb6\x76\xbd\xa3\x19\xa1\x3f\xe0\xc6\x8b\x05\xb5\x2a\x04\x91\x78\xf5\xe2\x48\x6f\x11\x36\xac\x16\x8e\x51\x28\x3a\x3c\xc8\xa0\xc7\x5d\xed\xe4\x9e\x05\xba\x04\x71\x87\xd0\xb4\xa7\xd6\x4b\x08\x4e\xd3\x6e\x9c\xb9\x38\xee\x38\x0b\x17\x7c\xdf\xac\x48\x33\x0f\x24\xa4\xce\xd4\x50\x15\x74\x09\x24\x5c\x93\x38\xcf\x04\x24\xa9\x12\x9a\x16\x2f\xbd\x78\x74\x79\x2e\x21\xfc\xf5\x17\xbd\xb5\x3c\xa5\x84\xc9\xf3\x84\xe7\xd9\x4b\x7f\x63\x10\x17\x5e\x29\x70\xcb\x4f\x95\xc6\xd0\xc5\x79\xe5\xcc\xb1\xc9\x5f\x99\x31\x34\xe9\xc8\x55\x7f\xfc\x5d\x4c\xd0\x99\x57\x73\xf4\x2f\x78\xe7\xa5\x9d\xb3\x29\x20\xc2\xf6\x75\x02\xb7\xdb\xec\x0a\x08\x17\x7b\x5e\x1a\xe9\xdc\x7d\x40\x78\x56\x65\x7a\x31\x4b\x30\x8d\x6d\x14\x1d\xe8\xaa\x61\x6b\x1d\x41\xa8\x6d\x92\x2d\x9d\xa6\xec\xc4\x82\x45\xc1\x8e\x49\x6f\x05\x7f\x32\x90\xd8\x74\xdd\x76\xcf\x0e\x22\xc8\x3d\x8e\x9a\xd2\xdc\x96\x47\x58\x1d\xf3\x2a\x4f\x64\xdc\x73\x06\x17\x84\xc6\x6d\x79\x6c\xf1\x9d\x0d\xd3\xaf\xc9\x6a\xbd\xce\x6e\x2c\xc4\xd0\xca\xad\x4f\x8f\x4f\xfd\xc1\xe0\xc7\x4a\x39\x67\x7f\x01\x5e\x42\x86\xba\xfa\xae\xe4\x84\x50\x36\x58\x46\xbd\x3e\xef\x62\x9a\x4a\xd8\xe1\x3a\x5d\xcc\xc3\x6d\x37\x61\x7c\xe2\xca\x5e\x8b\x89\x41\x2c\xc4\x75\xfd\xb9\xce\x78\xbe\x24\x88\xcc\x2a\x51\x6a\x91\x12\x25\x6c\x49\x8c\x09\x6c\xdd\x59\x4c\x18\x7c\x27\x10\xaf\xef\xd6\x49\xc8\xef\xcf\x4d\xf8\x5b\xb8\xc4\x1f\x14\x35\xc5\xcc\x23\x0c\xcd\x79\x9d\x1e\x96\xf3\x88\x05\xcb\x35\xce\x27\x5d\xcf\x84\x10\xaa\x65\xcc\xbc\x42\x9b\xad\xd9\x70\x4e\x2a\xe7\xcd\x27\x1f\x4b\x42\x9f\xd0\xce\x0f\x73\xbe\xc8\x11\x2e\x09\x7e\x53\xff\x28\x77\x9e\x85\xca\x07\x8d\x85\x3f\x3d\x42\x09\xfa\xe5\x9b\x85\x6e\x7c\xcb\xa1\xb1\xe2\xa0\xd8\x78\xd1\x93\x57\x88\x30\xd7\x38\x3e\xe9\x7e\x42\x11\xc1\xbc\xf4\x8c\xdb\x5f\x48\x49\x34\x0a\x5e\x3c\xd2\xc7\xc0\xfa\x91\xb8\x8d\xc1\xe8\x39\x73\xd9\x70\x5f\xde\xb7\xfa\x42\x82\x4e\x13\x56\x0b\x0d\x17\x12\x96\x46\x3d\x55\x10\x1e\x45\xeb\xc9\x82\x24\xcd\x8f\x05\x84\x1f\x23\x4f\x98\x29\xa3\x65\xdf\xd7\xcd\x6d\xd3\xa6\xe5\xb3\xf0\x79\x6b\x27\xaf\xe5\xf3\x52\xc2\xc0\x8d\x91\xdf\x39\x37\x2b\x58\x50\x66\xd2\x53\x4e\x0b\x97\x11\xe2\x6f\x76\x8b\x85\x8c\x16\x7d\xc7\x05\x99\x11\xa7\x6a\x09\x76\xc6\x36\x52\x2b\x02\x3f\x33\x60\x4d\x37\x8f\x09\xb9\x94\x4e\xa8\x4d\x1b\x88\xe5\xff\xcc\x47\xd0\x6a\x70\x7d\x5b\x30\x99\x87\x70\x70\x90\xa9\xb2\x7e\xae\xc8\x86\x7b\xeb\x6a\xc3\x2e\x1a\x70\x12\x38\xdd\x06\x14\x15\x58\x2b\x09\x8f\x04\xa6\x0d\x70\xe7\x7d\x67\x10\x13\x12\xa5\x3f\x43\xea\x2e\xa1\xe4\xd5\xe5\x47\x2d\x79\xa9\xff\x42\x20\xf7\x46\xaf\xbf\x98\x6c\x62\xb2\xe3\x50\xce\x7a\xd6\x18\x92\x97\x32\x86\xd6\xc3\x66\x84\x09\x9b\x66\x3c\x75\x5d\x65\xce\x82\x1b\x9f\xc8\xf9\x5f\x6f\xf5\x08\x1b\x33\xee\x15\x79\x2f\xcb\x24\x78\x2c\x9c\x5a\x9a\x67\xa5\x43\x28\xab\xb0\xeb\x6d\xce\x79\x46\x10\x35\xd8\xff\x78\xc5\x60\x1e\x0b\x7e\x33\xb6\x49\xca\xf6\xe4\x13\xde\x17\xae\xb0\x1c\x8c\x98\x44\x08\x9c\xd2\x3b\x63\xb6\xee\x34\x36\x78\x34\xa8\x94\xdd\xc5\x37\x66\x0c\xb6\xc1\xfb\x7e\x05\x7e\x51\x21\x58\x6e\x0a\x33\xc7\xce\x2d\x04\xa9\x58\x41\xdf\xe6\x30\x30\xc8\x9a\x6f\xf4\x5d\x64\xab\x0e\x8d\xc1\x59\x69\x5b\xa3\x91\xbf\x30\xc1\x3d\xd8\x39\x49\xde\xf7\x15\xc1\x69\x8d\xa8\xe1\xbd\x09\xc5\x2c\x70\xdd\x72\xb8\xba\x50\xaa\x85\x60\xa7\xb4\x99\xa3\x61\x86\x34\xe1\xc4\xaf\x93\x2e\x87\x33\x19\x42\x86\x11\x07\x86\xd2\xa5\x09\x12\x33\x2e\x8b\xf2\xbe\x15\x26\x70\xac\x0b\x4b\x79\xbb\xe9\x21\x21\xbb\x87\x6f\xdd\xe0\xd5\x35\x04\x2b\xd9\xd5\x03\xf7\x34\x4b\x09\xb7\x87\x9a\x86\xca\x1f\xe5\x13\xae\x7f\x8c\x8d\xcd\x7a\x55\x4e\xf8\x6e\xe1\xf1\x5b\x74\x47\x2e\x61\xaf\xe6\xcc\xb3\x61\x85\xf1\x2c\x58\x14\x49\x79\xcc\x90\x2f\x23\x5c\x6c\xcf\x8e\xc7\xcc\x54\xc2\xba\xef\x36\xfe\xe6\x43\xc9\x84\x9f\x2e\x9d\x55\xb3\x34\x13\x09\x43\xdd\xe7\x47\xb6\x09\xb5\x13\x7a\x7c\xa4\x25\xa2\x6d\x93\x08\xd7\xf8\x5e\xc4\x2e\xaa\x4c\x24\xb8\x1b\xdd\x53\xbd\x21\x9a\x4a\x28\x9c\x28\x32\xdf\xc7\xab\xb5\x10\x50\x2f\x2c\xdd\x5b\xb8\x81\xc6\xf0\x5e\xe4\xfb\xec\xa5\x42\xaa\x6c\xb8\x71\xb1\xae\x29\xe7\xb0\x1e\xe1\xcb\x80\xcd\x8c\x02\x9d\x55\x6c\x78\xe3\xe1\x75\x54\x60\xe9\x72\x42\x8b\xda\x21\xfb\x63\xa7\x55\x08\xbc\x43\xbb\x22\x85\x6d\x67\x10\x74\x2e\xe5\xa4\x67\x9a\x6c\x25\x2c\x1c\x58\x9a\xec\x30\x9e\x21\xc8\x8f\xac\x3e\xd4\xd5\xab\x4e\x50\x9e\xfc\x4c\xa1\xb4\xee\x1b\x03\xbe\xba\xf9\xb9\x9d\x86\x3f\x18\x44\xce\xa8\x7f\xb2\xbb\xe6\x28\x8d\x41\x32\xaa\x5b\xea\xf2\xf8\x02\x06\x65\xbe\x9d\x62\xbf\x13\x39\x08\xdd\xd7\xd6\xa9\x2f\x83\x2e\xe1\xa6\xc7\x16\xa3\x3d\x3f\x8b\x09\x35\x03\x0b\x64\xfe\xc2\x38\xb3\x5c\x74\xa8\xed\x2a\x61\xf2\xf6\x37\x91\xa7\xbf\x5c\x25\x10\x4f\x43\x78\xc7\x49\x6f\x02\x5f\x97\xb3\xcb\x6e\xee\x00\xc2\xc5\xd4\xb2\x6d\x39\x93\xba\x19\x84\x6e\xaf\x90\xcb\x3b\x20\x4c\x48\x7f\x11\xa1\x5b\x02\x59\xc2\xb6\x91\x0c\xd6\x0b\x99\x32\x1a\x8a\x99\xf5\x22\x4c\xe4\x0e\xc1\xef\xa0\xef\xd5\xd1\x80\x10\x81\xa7\x3b\xec\x1b\xf6\x13\xe2\xfb\xe5\xef\xd6\xdc\x13\x21\xdc\x71\x6d\x98\x5d\x7f\x74\x0d\x1b\xd2\x6e\x1c\xb2\xa4\x07\x1f\x18\x2c\x9a\x53\x21\xc1\x67\x51\x4c\xf8\x78\xb1\xcc\x3d\x80\xd3\xbf\x10\xe6\xef\x7f\x3d\xd5\x68\x19\x62\x30\x23\x91\xbf\x7e\xf6\x81\x76\xc2\xb9\x47\x53\x2f\x46\xcb\xe6\x11\x6e\x27\x55\xc8\xaa\xbd\xbe\x5d\x88\xe6\x7b\x07\x8a\x38\xbf\x2e\xa3\x7f\xe0\xe5\x3e\x8f\xb2\xf5\xe2\xa2\xff\x82\x64\xe7\x85\xe8\x97\x5a\xcf\x18\x98\xea\xab\xb7\x39\xda\x3f\x60\xe1\x8a\xea\xed\xce\xe9\xcc\x05\x1a\x83\x9c\x55\xf0\xac\x9f\x1c\xcd\x0c\x9a\x14\x06\xc5\xef\x0c\x0a\x11\x0e\xa5\x05\x54\x72\x78\x2e\x23\x78\x66\x47\xea\xf9\x7d\x3a\xfa\x2f\x38\xb4\x5c\xdc\xb2\xef\xe6\xa6\x7f\x21\x65\xd2\xce\x0a\x1b\xff\x14\xc2\xc6\x81\xa7\x37\x32\x3f\x3a\x10\x3e\xcf\x9b\xba\x73\xde\xca\xf1\x84\x1b\xca\x8a\x8d\xc3\x76\xb7\xd9\xd0\x90\xa7\x6f\xd5\xeb\xbc\x91\xa0\x5b\xf1\x36\x40\x4f\xfb\x1a\x21\xfe\xa4\xaa\xe6\x06\xbb\x10\x82\xec\xaa\xe4\x89\xcc\xe8\x59\xfb\x5a\xa8\xa1\xc5\x08\xe5\x12\x18\x95\x63\xce\xa7\xeb\x52\x09\x2c\x84\x0e\xac\x1c\x1d\x69\x95\xf7\x15\x33\xde\x19\x84\xbd\x5f\x3e\x47\x57\x8e\x6c\x24\xd4\xe4\xed\x59\x9f\xcf\x29\x41\x38\x7b\xc7\x5d\x27\x62\xd1\x59\x36\xac\x78\xb5\x70\x31\xff\x8f\x4e\x06\xa7\x6f\x5e\xbe\x23\x79\x76\x1e\xc1\x8c\x4f\xac\x26\xf2\xa3\x0a\xc1\x3a\x6d\xdf\x86\x3f\xdb\xca\x0a\xe1\xb6\x79\x5d\xd7\x8c\x47\xc5\x84\xf5\x02\x32\x87\x2c\x96\x17\x11\x66\xf1\xab\x3f\xfb\x5b\x4e\xcb\x75\xf4\xb0\xfa\xc3\xd8\xa0\xd5\x9e\xbb\x6e\x5f\x63\x11\x41\x36\xe9\x00\xf3\x22\x3c\x82\x05\x83\x8b\x61\xe6\xa9\x69\x45\x04\x1b\xf7\xea\x13\xfb\x47\x47\x32\x67\x84\x4b\x72\x2c\xd6\x11\xbe\xb4\xf0\x35\x1d\x6a\x4f\x21\xb8\xaf\x9d\x55\x22\x58\x2e\x42\x88\xdd\xf4\x5e\xf1\x58\x64\x14\x41\x68\xef\x46\xa1\xa3\x6d\x61\x84\xec\xc7\xa9\x0b\x64\x57\x44\xff\x9f\xd0\x52\xb8\xd6\x3e\xb7\xe9\x32\xc1\xb3\xb1\xbf\x20\xcf\x77\x22\xa1\xc2\x30\xa3\x5f\xce\x2a\x87\x70\xf5\x75\xab\xd4\xdc\x51\xfc\x57\xa4\x4e\xca\x4c\x8a\xbf\xed\xca\x86\x0e\xcf\xd2\xac\xc9\x1e\xf9\x04\x8f\xa7\xb5\x7b\x93\xcf\xe6\x13\x82\x43\xcd\x8b\x02\x8f\xbf\x22\x7c\xfc\x19\x70\xc9\x2e\xa2\x85\xd0\x71\xfb\x69\x77\x29\x4f\x31\x61\xfe\xee\xa3\xe6\x4e\x6b\x58\x84\x4f\x4a\xab\x85\xf3\x74\x9c\x08\x2a\x57\x2f\xe6\x76\x6b\x3c\x2b\xc4\xeb\x95\xa2\x36\x95\x75\xc9\x84\x6d\x37\x14\x96\xcf\x09\xcb\x26\xcc\x35\x68\xf9\xfa\x5a\x8d\x45\xe0\x56\xbb\xa5\xb1\xa5\x3c\x94\x10\xa5\x3d\x5b\x9f\x3f\xa7\x8a\xf0\x59\x37\xee\xab\xbf\x4c\x21\x0b\x82\x37\xd7\x2f\xfd\x1c\xf3\x95\x41\x72\x49\x4f\xc6\xed\x7a\x07\xfa\x07\x4e\x5f\x9a\x74\xfb\x43\x86\xde\xff\x60\x0b\x21\x22\x68\x5a\xc5\x2f\xa3\xa0\x42\x78\xcc\xab\x89\x72\x3f\x6b\x4a\x63\x68\x8d\xca\x69\xb2\xad\x92\x25\x4c\x38\xfd\xc6\xe4\xdb\x94\x29\x84\xd3\x07\xfd\x7a\xf3\x0f\x7b\xb1\x61\xb9\xec\x37\x4b\xfb\xc1\x26\x06\x2b\x4e\x9f\x09\x0d\x16\x2c\x22\x70\x5a\xbd\xab\xf6\x0d\x7f\x46\x50\xbd\x29\xce\x9f\xed\xff\x9c\x10\x34\x1c\xfa\x67\x7c\x64\x30\x41\x77\xdf\x77\x59\xaf\x8e\x42\x16\xa0\xdd\x11\xca\xf1\x34\x90\xc0\xf1\x6d\x8d\x79\xd6\x63\x03\xc2\xed\x03\x56\x61\xcb\x77\x33\x04\x47\xf1\x0b\x07\xdd\x44\x7f\x32\xb0\x53\x92\x6e\x95\xf1\x91\x21\x8c\xd7\x1c\x77\xc7\x4c\xa0\x98\x70\x49\xdd\xbf\xb3\x6e\x7e\x13\x21\x4a\xb5\xe9\xaa\xac\x60\x31\x41\x5a\x72\xea\xf1\x71\xeb\x93\x09\x19\xef\x26\x1c\xba\x95\x74\x9e\xc0\x84\xf5\x9c\x55\x7b\xc9\x47\x78\xdc\x14\x17\xa0\xfb\xbe\x9f\x41\x75\xb4\x8a\x7f\xe8\xfd\x23\x34\x86\xe1\x7b\x7a\xf5\x46\x9b\xb7\x11\x3e\xdf\x7f\xff\x21\x78\xc5\xe8\x75\x88\xb5\x4c\x2f\x63\xfb\x1c\x36\x88\xa6\xbf\x2b\x94\xda\xaf\x4c\x88\x33\x39\x3a\xed\x90\xf5\x27\x06\x5f\x75\xed\xe5\x3d\xeb\xab\x08\x6b\xd6\xae\xe9\xf3\x8f\x2f\x26\x04\x73\xcd\xf6\xdb\x2c\x52\x4a\x48\x4f\x38\x5b\xb9\x58\xe0\x39\xe1\xf5\x33\xbd\xc6\xcf\xe2\x26\x04\xf9\xe5\x7e\x3a\x25\x62\x42\x04\xce\x9d\x1a\x31\xd2\x4d\x57\x59\x63\xe5\x3f\x74\xe7\x9f\x8f\xb5\xf3\x8d\x22\x7c\x68\x5e\xee\xc2\x7b\xcb\x82\xb0\xf7\x7d\xf3\xc6\x5f\x37\x57\xb2\x61\x66\x73\xd2\x0d\xb3\x37\x21\x6c\x08\xb8\xdd\x39\xf4\xd9\x38\x9c\xf0\x56\x64\xe9\x81\xbe\x51\x04\x2e\xba\x1e\xf9\xe4\x42\x31\x41\xc3\xf7\x80\xf7\x19\x81\xfb\x04\x57\x4b\x99\x24\xe5\xe5\x0b\x09\xd9\x83\x16\xfe\xea\xad\x09\xa3\x6b\x6e\xd7\x8b\x6d\xaf\x1e\xb1\x90\xf2\xa4\xb0\xb3\xf1\x7c\x28\x81\xe1\xe9\x55\xbf\xe3\x5c\x4a\x68\x56\x3d\x1a\x6b\xdd\x93\x48\xe0\x29\x5f\x27\xa2\xbd\x61\x22\x41\x36\x1b\x19\x2f\x86\x8a\x09\xdd\x87\x24\xb9\xc3\x7e\x0c\x31\x28\x75\x8f\x7a\x78\x5a\xaa\x8c\x30\x75\xfa\x5b\xd3\xcd\x81\x0f\x59\xf8\x52\xf7\x73\x43\x90\xf2\x2a\xc2\x8b\x6d\xc9\x1c\xdd\x3f\x7e\x30\x78\xba\xb2\xb1\x7a\x59\xd5\x20\x1b\x98\x4c\xbf\xb3\x07\x8f\x35\x15\x42\x7f\xa9\xed\x64\x71\x56\x21\xe1\xc3\x59\xed\xec\xdc\x99\xc9\x2c\xd8\x75\xef\xf2\xbc\x7f\xe1\x20\x8d\xe1\x0a\x6a\xa7\x6e\x95\xef\x66\xd0\xb5\xea\x4b\xbc\xc8\xf6\xc5\x84\xc3\x43\xde\xde\xaf\x04\xb4\x09\xed\xb6\xad\xc2\xe1\x2b\x8b\x08\x2b\xe7\x6f\x0c\x2a\x8c\xce\x25\x3c\xd2\x78\x75\xd0\xc1\x39\x83\x10\xc7\x3f\xa4\xf1\xb7\x1c\x6d\x4c\x8a\xee\x76\x2b\x26\x48\x88\x5c\xbe\xbb\x68\xda\x1d\xc2\xc3\x3b\xb8\x74\x2e\xc0\x87\x0d\x1a\xab\xf4\xbe\x0d\x9b\x18\x12\xaa\xf7\xaa\xae\x2f\xfb\x7a\x9e\x20\xb5\xc3\xd7\xe5\x41\x49\x1c\x21\xcc\xec\xac\xe6\x95\xdf\xad\x04\x45\xf3\xdf\x27\x44\x0b\x1b\x09\xbc\x2b\x86\x35\x1a\x06\x5a\x09\xf5\x2b\xd6\xc4\x86\xa4\x57\x12\x1e\x1e\xe6\x9e\xa8\x2e\x7c\x8e\x10\xac\x21\x93\x67\x7c\xab\x90\x70\xfc\xb5\x8e\xb0\xb2\x60\x1c\xc1\xdb\x20\xe3\xec\x71\xb3\x62\x42\xc4\x2a\xbe\xcd\x8b\x13\x8b\xd9\xca\x7f\x50\x62\x25\x72\x89\x99\xe8\x11\x5e\x9e\x2f\xb8\x76\x76\xa2\x0c\xe1\xeb\x40\xaf\x6f\x87\x59\x01\x41\x39\x2e\x70\xf0\x59\x6c\x21\x81\xe7\x50\x0f\xf3\x17\xf6\xd9\x1b\x7a\x5f\x17\xaf\x23\x68\x79\xbe\x6d\xaf\x5c\x6e\x44\xf0\xae\x1c\xe8\xbf\xa7\xe8\xf6\x2f\xec\xd2\x3c\xb4\x37\x65\xa2\xc4\xff\x89\x39\xf6\x25\x19\x13\x52\x78\x09\x22\xdb\xae\x26\xd0\xee\x39\x84\xd5\x41\x0b\xb2\x07\x8c\x6a\x09\x47\xda\xaa\x84\x14\xf2\x6b\x08\x97\xdf\xe4\x8b\x54\x59\xd4\xb2\x8d\xb6\xd6\xcc\x3b\xb3\xe3\xe6\x46\x42\x7f\x45\xf5\x3c\x8f\x08\x6d\x42\xa9\xaf\x67\x8e\xfe\x51\x3e\x82\xe5\xb3\x96\x3f\x37\xda\x66\xb0\xc1\xc6\x9e\xd3\x4d\x31\x41\x8e\x50\xa3\x52\xfa\xfb\xaa\x4a\x53\x21\x3c\xac\x0f\xdb\x09\x1c\x52\xa4\xff\x0b\xb6\xab\xd7\x1d\x97\x96\x14\x22\x18\xef\x78\x75\x96\x3b\x28\x8d\xb0\xf7\xc4\xf8\x5d\x7f\x3f\x51\xfb\x67\xbf\x14\xfd\x70\xf2\x23\x1b\x24\x35\x5e\xff\x32\xbc\x2d\x44\xe0\x7e\xe7\x14\xb7\xee\x8c\x20\x81\x6b\x1a\x4f\xdd\x8c\xd8\x22\xc2\xfb\xe8\xac\x07\x3e\xf5\x96\x2c\x44\x78\xdc\xf8\xed\x39\xaf\xad\x10\x5f\x9d\x92\xee\xc7\xfa\x05\xd2\x18\x16\x2d\x90\x93\xd5\xb0\x6f\x63\x10\xe7\xfe\x4a\xb2\x6d\xb5\x21\xc1\x4b\x4b\x3b\x86\xd1\x9b\x48\x30\x3d\x53\x2b\x6f\x92\x1c\xc0\x06\x47\x09\x3b\x53\xc9\xa4\x38\x42\xda\xac\x4c\x31\x6b\x56\x1c\x61\xe8\xd9\xfc\xfc\x89\xf7\xaa\x09\xbd\xcd\x37\x2f\x38\x45\x97\x10\x5c\xe4\x64\x87\xa7\xb2\xb6\x10\x0a\x74\xcf\x0e\xf2\x9f\xbf\x4d\x30\xec\xb0\xf6\x0b\xad\x96\x22\xb0\xa6\xcd\x3a\x2b\x58\x27\x41\x08\xfb\x90\x31\x89\xcf\xaf\x9d\x41\x8d\x4b\xc4\xdb\xf2\x29\xa3\xb7\xd1\xff\x81\xff\xeb\x92\x55\x9b\x02\x96\x12\x2a\x66\x19\xf5\xa8\x04\xb7\x33\x28\x9f\xbe\xcd\x65\x9b\xcd\x06\x42\x42\x43\x68\xbc\xe8\xf0\x5a\xc2\xc0\x95\xe3\x35\x7b\xae\xea\x10\x72\xf7\x3a\x85\x8b\x27\x09\x11\x82\x4f\x1d\x5b\xbe\xb4\x2f\x88\x0d\x9b\x7b\xc7\x33\x5a\x0d\x6e\x04\x8d\xd5\x7b\xbe\xcc\xf7\xb9\xf0\x2f\x6c\xe9\xf5\x35\xf9\x3c\x7a\xe5\xff\xef\x07\x1e\xaa\xf1\x8d\xfb\xe6\xf9\x7a\xb0\xa1\x24\x74\x1e\x97\x81\xa9\x21\x61\x8a\x81\xac\xb9\xf8\x86\x3c\xc2\xc6\xe5\xee\xd6\x57\x76\x4f\x24\x74\xdf\x76\xcd\xfa\xe5\xce\x4f\xf8\x78\xf7\x44\xc7\xca\xed\xeb\x09\x4a\x81\xef\x1b\x45\xa8\x94\xf0\xed\xa5\xde\x84\x0b\xe6\x29\x84\x55\x5e\xab\x25\xba\x3d\xae\x10\x54\x3d\x39\x57\xef\x9c\xa9\xc5\x82\xe8\xcb\xa4\x0d\x7b\x35\x65\x0b\x91\x33\xef\xaa\x41\xb4\x96\x39\x8d\xe1\xcc\xba\x77\x2d\x9c\xfe\x9a\x6c\x50\x53\xe9\x0a\x9d\x5c\xbb\x82\xe0\x70\xd5\x30\xad\x76\xea\x23\x42\xe0\x69\x81\xc8\x21\xb1\x5c\xc2\x85\x66\xc3\xa0\x3a\xcb\xed\x84\x94\xab\x01\x4e\x6a\x7c\x0c\x21\xad\xcc\x1b\x92\xd9\x23\x0c\xee\x68\xa8\xb9\x4f\x36\x3f\x4f\x63\xb0\xfa\x51\x35\x69\xe3\xe8\xe5\x3d\xd3\xee\xc6\xc2\xcc\x90\x6c\x02\x97\x68\xf7\xf4\xc7\xe1\x8a\x84\xfe\x69\xf9\x61\x13\x73\x8b\x46\xb7\x1c\x89\xad\xe7\xd7\x64\x12\x7e\xe7\xf7\x3d\x26\xfb\x5c\xb6\x91\xd2\x49\xde\xe6\x13\x6f\x57\x11\x0a\x37\x4c\x78\xba\xbb\x26\x93\xf0\xd8\xfc\x80\x42\xf4\xa4\x5c\x82\xf2\xa6\x9c\x4e\xe3\x05\x86\x84\xa8\xe3\xe2\x11\xf7\xf5\xb4\x08\x11\x75\x9b\x6e\x7a\x8a\x16\x13\x4e\x39\x73\x7f\xd0\x2f\xbe\x43\x58\xe1\x73\xeb\x8c\x37\x62\x59\x63\xa3\xb7\x8f\x6e\xac\xcd\x4a\x3c\x48\x90\x94\x6f\xf4\x5d\xc4\x23\x4a\x90\xba\xf8\xe4\xd7\xc9\x83\x85\x04\xd3\x9f\x11\xd5\x7f\x61\xbd\xf8\xe9\x7b\xe7\xff\x05\x5e\xee\xe4\xbe\x29\xc1\x27\x09\x67\x67\x65\x97\x76\x15\x3a\xb0\x95\x7d\x87\x82\x65\xfe\xb8\x9c\x60\x2b\x56\x15\x17\x36\xaf\xbf\x67\x4c\x88\x5b\x96\xb0\x7f\xe9\x1f\x67\x16\x32\xaf\xc5\x1e\x9b\xca\xe9\xc0\x82\x35\x47\xea\xda\xc6\x85\x79\x84\x57\x07\x64\x7f\xac\xfc\x18\x46\x98\x2d\x5b\x16\xb9\xe2\x44\x26\xe1\xbe\xd6\xcc\x3f\x7f\xd1\x9b\xfe\xb9\xe6\x2f\x3c\xf7\xee\x36\x8b\x7f\xe8\x42\xd8\x9f\xdb\x73\xe9\xa0\xc1\x5d\xd6\x58\xf9\xff\x43\x94\x8b\x5b\x37\x70\xb9\x31\xe1\xc4\x94\x12\xbe\xc0\x93\xa5\x0c\x92\x5e\x0c\x26\xb9\x5d\xbf\x43\x78\xeb\xc4\xef\xdc\x70\x20\x83\xa0\xae\xf1\x2e\x84\xa3\xf5\x21\x0b\x7b\x72\x67\x68\xa9\xe8\x65\x10\x56\xad\x0e\x6e\x73\xf8\xe2\x41\x78\x67\x16\x31\x67\x95\xbb\x03\xc1\x3a\xd9\xc8\x6d\xf2\x23\x4b\x42\xfa\xe4\xc8\xa5\x85\x47\xcf\x11\xbe\x65\x8b\xc9\xac\x57\x9a\x4a\x90\x34\x3d\xf4\x24\xf5\x95\x06\x61\x24\xc0\xb0\x6e\xa1\x35\x37\x61\x77\xe2\x82\x75\xae\xc1\xa1\x04\x85\x8f\x65\xd3\xab\xdb\xbd\xd9\x20\x15\xfe\x68\xe3\x9a\x2d\x86\x04\xbe\x9f\x75\x97\x56\x4e\x6a\x66\xd0\x55\x3e\x6b\xb1\x4e\x20\x1f\x61\xf9\x99\xdc\x02\xa3\x4f\x39\x84\xfd\xaf\xab\x39\xb5\xda\xba\x59\x68\x3e\xac\x7b\xa5\x76\x6a\x1a\x81\x9b\xbf\xeb\xc3\xdf\x91\x05\xb7\xdc\xb2\x37\x8c\x0b\x1b\x72\x32\x54\x5c\x2c\x27\x47\xb1\xc1\x89\xf1\x45\x42\x45\x24\x41\x72\x44\xf7\xea\xdf\x32\x6d\xf7\xd7\x39\x83\xc2\x2b\x08\xad\x9f\x03\xdb\x16\xca\x35\x15\xa2\x5b\xdd\x37\x44\xb5\xaf\x98\x70\x5f\xf2\x6b\xb7\xbb\x6d\x25\xc1\xfc\xc4\x93\x17\x5a\x97\x1f\xd0\xd8\xa8\xaf\x71\xef\x3d\xee\xb6\x45\x84\xaf\xc6\x75\xf6\x74\x40\x95\x30\xeb\x86\x54\xa4\x6a\x6b\x3c\x21\xf7\xd3\x9d\xe9\x7f\xf1\x5f\x39\xd5\xbb\xf4\xa8\x71\xb8\x03\x61\x7e\x70\xdd\x82\x99\x2b\xf6\x13\x6e\xf3\xaf\x29\xbf\xb6\x3f\x99\xf0\xea\x6a\x96\xa1\x56\xff\x51\xc2\xe7\x85\x5b\x20\x56\x78\x85\x85\x8d\x27\xed\x3e\x5b\xe5\xf9\xd1\x18\x82\xde\x7f\x5e\xa8\x3b\xfa\x26\xcc\x0f\xba\x2a\xb6\xb5\x2f\x87\xd0\x9a\x69\x33\x7d\xfb\x28\xa6\x8a\xf7\x7d\xbf\xf1\xdc\x8e\xb0\xb4\x33\xb9\xf8\xdd\xcc\x62\x82\x94\xa6\x5e\x80\xf6\x0d\x2f\x82\x5a\xeb\x7e\x65\x99\x9b\x5e\x84\x86\x4d\x8b\x36\x79\xbc\x3f\x42\xa8\xbc\xb8\x43\x40\xfc\xec\x2a\x42\x06\xc7\xcf\xdb\xdf\xa7\xe6\x11\x14\xfb\x65\xa3\xf2\xba\x0b\x09\x27\x9a\xcc\x43\x0f\x7c\x71\x22\x3c\x75\x3d\x51\x77\xbc\x20\x91\xb0\xea\xc1\x4b\xeb\xf8\x95\x67\x09\x3a\x5b\xfb\x6f\x85\xac\x76\x27\xec\xfa\x25\x6d\xb4\xbd\xc4\x9d\x86\x98\x63\xe9\x8e\xad\xc7\x08\x8e\x9a\xf3\x7e\x46\x44\x38\x12\x2e\x08\x7f\x0b\xd2\x28\xba\xc6\x02\x82\x76\x44\x2e\xee\x39\x46\xe8\x35\xf6\xbc\x56\xe6\xc9\x43\x88\x3f\x1d\xf7\x8b\x4c\x82\x09\xe1\xb3\x7e\x55\x94\x19\x1f\x66\x43\xef\x9f\xc4\x4f\xf5\xe3\x1e\x10\x76\x94\x34\xd7\x26\x8e\xa2\x46\xfc\xae\xad\x50\xb7\x03\xe1\x42\xfe\x06\x87\xed\xbc\xa2\x2c\xb4\xa7\x98\x68\x6b\x76\x39\x10\xfe\xac\x9d\x94\x30\x7b\xe1\x3d\xc2\xf3\x25\x6f\x86\x76\x05\x8e\x30\xd0\x35\x6f\xe1\xeb\x75\x49\x23\x08\xf5\x72\x2d\xfd\x0b\x9b\xf3\x01\xbb\xba\x48\x88\x85\xc4\xc8\x3e\xa9\xbf\xc5\x3e\xc4\xab\xe4\x2f\xf8\x85\xf2\xac\xa3\x35\x2f\x12\x52\x1a\x5c\x2f\x0b\xfd\xf4\x65\x2b\x22\xac\xab\xbf\x25\xbc\x2e\xb0\x15\xdb\xb6\x81\x58\xbd\xd1\x8f\x61\xc7\x61\x9e\x02\x75\xdb\xe9\x84\xec\x19\x5f\xee\xed\x58\x90\x42\xe8\xda\xe2\x18\x6d\x3a\x8a\xb3\xc5\x72\x99\x41\x7a\x79\x2c\x48\x6c\xd8\x29\x7c\x6c\xa2\x29\xc1\xcf\xf5\x94\xc4\x63\xdf\x2d\x84\xf8\x2c\xd9\xc7\x53\xa6\x85\x10\x8a\x04\x5e\xfb\x34\x4d\x60\xd8\xb0\xf4\x7b\xc4\xfd\x8f\x61\xaf\x0b\x91\x76\x8f\xbf\xc3\x4b\xbb\x98\xf0\x72\xae\xbe\x5d\xd8\xfa\x9d\x84\xe4\x5f\x0f\xda\x23\x1a\x35\x08\xe2\x61\x05\x2e\xb3\xea\xb5\x09\x1b\xd7\x97\x74\x88\x49\x67\xb0\xe0\x7a\x33\x6a\xae\x14\xab\x95\x90\xf8\x9e\xdb\x63\x4f\xe8\x27\xc2\x14\xb3\xdb\x3c\x15\xd6\x0d\x04\x9f\x4b\x2b\x58\x7b\xfc\x84\x08\xe5\xa2\x8a\x73\xf6\x37\x14\x12\x66\x3c\x2c\xfb\xba\xff\x5e\x01\x61\x50\x7b\xb9\x80\xce\xcc\x54\x42\xff\x7d\xaf\xe7\x55\x9e\xa7\x58\xf8\xe1\x92\x3b\x98\xd0\x31\x7a\x3d\x4b\x61\x9d\xb7\xf9\xda\xc5\xe0\x8c\xda\x5c\x33\x19\x87\x1c\x42\x79\x4a\x5f\x49\x7e\x7e\x11\x41\x57\x83\x77\xa1\x96\xcd\x1e\xc2\xa6\x8f\xe9\x8f\xea\xfc\x6e\x11\xf2\x9e\xed\x3c\xfc\x17\xff\x95\xeb\x15\xac\x23\x61\x6b\x72\x09\x19\x0f\x2f\xe8\xe8\xb3\x16\x12\x2e\x5d\x6f\x7b\x62\xd5\xba\x81\xb0\x52\x64\x56\x13\x4f\x83\x2c\x21\x7c\xbe\xd0\x2d\x9f\x67\xa3\x77\x3f\xb5\x33\x02\xd3\x47\xcf\x80\xbe\xe4\x68\xad\x7b\x39\x9a\xd0\xa5\x67\x36\x32\x89\x2f\x99\x70\x60\xbc\x05\xeb\xd8\x91\x02\x82\xb6\x4d\x71\x9d\xab\x7a\x31\xc1\xdd\x3c\x2d\xd7\xb4\xd1\x9f\xd0\x34\x21\xca\x2e\x24\xfa\x3c\xe1\xe7\x6b\xfe\xbe\x8a\x0f\x9e\x6c\x25\x77\xaa\x6d\xed\xfa\xde\x9d\x84\x45\xe9\x49\xdf\xd5\xe2\x4f\x10\x72\x6f\xa5\x9d\x50\xfa\x5f\x18\x39\xf7\x48\xae\xad\x36\x93\xa0\x49\x53\x76\xeb\xf7\x27\x12\xfe\x0c\x2c\xd7\xb5\x77\xe9\x67\xd0\x77\xe6\xf4\xcd\xed\xfd\x69\xf4\x0f\xcc\x5c\x77\xc9\xf6\xd3\x41\x07\x82\xd1\xf8\x82\xc9\x45\xff\xc6\xf7\xba\x6d\x32\x51\xdb\x8d\xd9\xca\xd2\xa0\xd3\x45\x0f\xf6\x1e\x63\xc3\xd4\x8e\x83\xc2\x6f\x1f\xb0\xc3\x63\x4b\xff\x6c\x2e\x67\x6d\x42\x6e\xc7\xd9\x71\x02\xee\x53\x08\x03\x3f\x53\x2d\x1d\x77\x0b\x13\x5e\xcf\x5f\x20\xe5\x5a\x38\x93\x70\xa1\xe4\x57\x41\xfc\x57\x4e\x82\x11\xeb\xc2\xbb\xeb\x1a\xcb\xd8\x90\x65\x22\xd2\xc9\x7b\x55\x98\x0d\x3b\x96\x0a\x17\xdb\xd6\xd7\x33\xc8\xd8\x13\x19\x35\x5b\x69\x02\x8d\x81\x47\xda\x6e\x81\x6a\x29\x98\x31\x44\xac\x3b\x27\x64\xa5\x2f\x45\x98\x62\xe8\xff\x41\xc1\xb4\x88\xa0\xbd\xdf\x70\x30\x66\xad\x28\xa1\xb2\x6b\xb5\x63\x62\xfc\x06\x16\x2c\xae\xcd\x16\x38\x1c\x77\x95\xc6\x50\x5b\xa2\xf6\x7d\xaf\x46\x00\xc1\x3b\xe1\x9b\xbe\xb8\x74\x33\x21\x61\xfd\xf1\xe0\x99\xa3\x78\xdb\x5a\x30\x32\x61\xfb\x5c\x82\x47\xe9\xb0\xf3\xcd\x75\x57\x08\x36\xb5\x29\x39\x6d\x16\x1d\x84\xa2\x17\xb3\x16\x73\x5a\x75\x13\x06\xae\x6d\x4b\xa3\x96\x54\x82\xcd\x0d\xe1\x54\xf1\xbe\x14\x82\xe6\x32\xfb\xe3\x8b\x0e\xed\x63\xe1\xe3\x86\x6f\x41\x29\xca\xb6\x84\x64\xf3\x8d\xa6\x27\xf2\xdf\x33\xa8\x1b\xbf\xc3\x69\xd7\xdc\x1e\x36\x94\x5b\x14\xbb\x2e\x30\x7d\xc7\xe0\xe8\xa6\x3f\x9e\x3c\xdb\xee\x13\x62\x78\x76\xe7\x7d\xb9\x94\x4a\x10\xee\xeb\xce\x6d\xfd\xf9\x96\x60\x78\xf5\x58\x98\x47\x6a\xde\xe8\x07\x89\x69\x6c\x1e\x2d\x87\xec\x72\x67\x95\xe7\x3f\x25\x18\x4d\x7b\x51\x35\x61\xce\x24\xc2\xac\xa4\x37\x95\xdb\x3b\x4b\x09\xde\x16\xe9\xad\x2e\x7d\xca\x84\xd0\x69\x23\xa1\x7b\x2f\x16\x11\x54\xbe\xf9\x0e\xf4\xe6\xd6\x10\x3e\x5a\x3d\xad\xee\x1d\x5f\x3a\xba\x71\x96\x46\x19\xcd\xff\xc6\x60\xe2\xe3\xd6\x93\x3b\xb2\x32\x08\x2b\xd3\x45\xcb\x6e\x5b\x89\x11\x3e\xdd\x9d\x1b\x25\xdd\x90\x4b\x68\x98\xfd\x55\xc6\xfc\xda\x00\x83\x8d\x1a\x17\x1b\xcc\xbf\x2a\x12\x2c\xcf\x3c\x2f\x12\xe1\x8e\x24\x3c\x96\x6a\xfc\xf1\xe6\x91\x2d\x1b\x56\xf8\x2f\x94\x8e\xf7\xcf\x21\xcc\x6a\xfd\x29\xd1\xfc\xb0\x84\x60\xf5\x3a\xa6\x50\xef\x7d\x11\x21\xa8\xda\x35\x34\xbf\xab\x80\x85\xd9\x03\x0a\xde\xae\x93\xee\x12\x2e\x7a\x9e\x9e\x27\x5f\x13\x43\xf0\x5a\x46\xb7\xfe\x16\xb3\x15\x33\xa3\xc7\x8b\x67\x12\xd2\x7a\xeb\x39\x4e\x3e\xcc\x25\x08\x8b\x18\xde\x0f\xdc\x9d\x4d\x10\xfd\xb5\x6e\x8e\x6b\x79\x01\xe1\x63\xd9\xc0\xdc\xc0\xea\x7c\x82\xcb\xca\x08\xa9\x5f\xd7\x8a\x08\x09\x9a\xbe\x5c\x49\x69\xa9\x04\x4f\x5b\x01\xb1\x90\xa7\x39\x04\xae\x2f\x9f\xf6\x55\x7c\x0f\x24\x44\x09\xcb\x16\x3d\xed\xcc\x21\x48\x49\xc8\xd5\x15\xc6\xa6\x13\xee\xa5\xf1\x8b\x09\x18\x95\x10\x26\xab\xdc\x34\xda\x38\x47\x99\x05\xf7\x03\x47\x8c\xad\x22\x8f\xb0\xb0\x88\xbf\x30\x6f\xca\x11\x5b\x16\x26\x36\xdc\xd7\xab\x4a\x2e\x21\x94\xc4\x04\x27\x4f\x8c\x38\xc2\x82\xd2\x96\x10\xfd\xf8\xa1\x68\x42\x98\x78\x47\xa5\x9b\xeb\xe8\x92\x34\x90\x3e\x2f\xaa\xba\x98\x70\x45\x3d\xd9\xbf\xf9\x54\x21\x41\x51\xfb\xcf\xbd\xa5\x9b\xb3\x08\x3f\x3c\x99\xf3\x16\xf3\xb2\x08\xcb\x29\xba\x27\x25\xbf\x98\xe0\xd0\xab\x6c\xe9\xac\x9f\x42\x30\xca\x15\xe2\x93\xd4\x4c\x21\x88\xbb\xed\x53\xd5\x56\x4e\x21\xf0\x2e\xa9\xb7\x93\xf6\x48\xa3\xa1\xa4\xca\xe2\x9d\x22\x59\x84\xa3\x7e\xcf\x5e\x97\xef\x38\x4b\x98\xa7\xe3\xa3\xaf\x9e\x77\x95\x85\x94\xa5\xfd\x61\x9b\x4e\xdd\x21\xe4\xf7\xbf\x53\xb5\x51\x5d\x4a\xc8\x53\xff\x90\x52\x3c\x37\x95\x0d\x71\xed\x8f\x43\x75\xeb\x5a\x58\xf0\x2e\x17\x69\xfb\x5b\x04\x86\x39\xd7\xcc\x36\x33\xfb\x17\x6c\x3b\xdb\x3f\x3c\x73\x16\x26\xec\x6e\xdf\x54\x7f\x4a\x2a\x98\x0d\x27\x4e\x04\xdf\x9a\xf3\xb2\x68\xf4\xfe\x63\x31\xe3\x76\x5d\x11\xa1\x7b\x89\xe7\xe9\x84\x57\xe5\x2c\x4c\x51\x76\xf7\xfe\x3b\x52\x3e\x17\xbb\x5f\x34\xeb\x26\xe1\xe5\x21\xbd\xca\xca\x89\xf9\x04\x2b\x4b\x8d\x23\x2d\x72\x69\x04\x3d\xb1\xa9\x83\xda\x7a\xd9\x84\xbe\x37\x5b\x5d\xfa\xde\x24\x11\x5e\xef\x4e\x08\xcf\x16\xf3\x67\xa1\x5c\xe8\x72\xdf\xec\x75\x1e\x84\xe8\x7d\x8a\xc1\x72\xef\x0c\x09\x32\xf5\xdd\x92\xed\xb6\xf9\x04\x91\xf9\x17\x93\x16\x8f\x2b\x21\xec\xf6\x8e\xf5\x78\x63\x5b\x40\x78\x64\x61\x6c\xd6\x6c\x14\x49\x68\x8b\x75\x63\x5e\x4b\x89\x12\x42\xfd\x14\x6b\xff\x3c\x2a\x26\x94\xae\xb2\x49\xaf\x1e\xbd\x72\xff\x57\x86\x2c\xcb\x22\x8f\x4d\x58\x40\x98\xc1\xf4\x9c\x5c\x2a\x9b\x40\xf8\xe9\xbf\xf2\xe2\xab\x90\xdd\x84\x5d\xd1\xdb\x03\x4f\xef\x7e\xc0\x42\x9d\xe9\xb5\x33\xd8\xb6\x9b\x6d\x64\x2d\x71\x32\x72\xf9\xc5\x9d\x04\xef\x65\xf4\x2c\xcd\x2d\x8b\xc0\xa7\xd9\x34\xe5\x9a\x8c\x2c\x21\x64\x72\x64\xcd\x6a\xfd\x75\xa3\xdf\x1f\xb5\xb5\x33\x3b\x7b\x19\x5c\x0b\x5b\x30\xff\xfa\xa6\x3b\x2c\x84\x3f\x7d\x9b\xad\xf4\x2a\x96\x20\x97\x28\x7f\xf8\xc9\xa6\x18\x1a\x2b\xad\x5b\x7a\x3a\xcd\x74\xd4\x08\x4f\x32\xda\xb3\x7b\x0f\x6b\x10\x26\x2c\xd0\x4d\x11\x5b\x94\x40\x50\xe5\x7e\xfa\x87\xb5\x31\x8b\xa0\x51\xae\xb3\xa6\xa7\xe7\x01\x81\x86\xcd\xae\x7d\x37\xc9\x23\x1c\xac\x8c\x7b\x47\x4b\x4f\xb3\xf0\x5c\xbe\xc5\xc7\xb5\x3d\x8d\x05\x9b\xd4\xa6\x94\xa9\xfc\x1e\x2c\xa4\xe9\xcc\x7f\xb0\xcb\xc6\x95\x86\xbc\x5d\x3d\x2b\x78\x34\x08\x43\x25\x9c\x32\xcb\xb6\x5b\x11\xde\xce\x31\x7b\x70\x76\xc7\x3e\x36\xf0\x4d\x59\xa0\x99\x9d\x35\x83\x90\x9a\x3b\x7e\xed\x96\xfb\xc5\x04\x11\xce\x99\x16\x7f\x71\x5d\x48\xa8\x68\xaa\x47\x36\x1b\x3e\x38\x68\xff\x1e\x19\x31\x21\xa8\x9e\x2a\x26\x99\xa2\xb5\x6c\x45\x27\xac\x7f\x56\xd9\x79\x11\xc2\x62\xcf\x13\xe3\x05\x67\x8f\xae\xea\x5b\xde\xee\xf6\x69\x4d\x23\x7c\x4f\xef\x73\x96\xf2\xaa\x25\x04\x4d\x50\x50\x89\x5d\xdb\x44\xd8\x5c\xe9\x50\xd1\x78\x3c\x91\x50\x2c\xf8\x30\x9b\x35\xb3\x96\xf0\x28\xc0\xb4\xdb\x79\xb8\x98\xb0\xc3\x64\xe3\x54\x6e\xd5\xfd\x84\x7b\xb8\xa2\x64\x68\xa6\x46\x50\x6e\x90\x3b\x93\xa2\x2c\x41\x90\x99\xd1\xa6\xaf\x90\x24\xc7\x86\xe5\x37\x99\xa1\x13\xe3\x9a\x0a\xb1\xf6\xe4\xbb\xe0\x02\xc1\x62\x42\x8f\xc8\x32\xc9\x6a\xb1\x2c\x36\x1c\x3f\x3d\x18\x65\xfe\xdb\x82\x50\x12\xd4\x3e\x14\xb3\x44\x9b\xf0\xcb\x6d\x9e\x81\x91\x47\x0c\x21\x74\xe9\x14\xd5\xbf\x58\x65\xe0\xf6\xa3\xbe\xee\x2c\xc1\xed\xc6\xc8\xd5\x90\x96\x23\x84\xf2\x2e\x83\xa5\x6b\xeb\xf2\x08\x3d\xba\xcc\xef\xe6\xc1\x54\x82\x83\xde\x43\x8d\xae\x3b\x3f\x08\x47\x03\x9f\xc7\x77\xac\xa8\x23\x08\xde\xf4\x4d\x9a\x9e\xd5\x45\xd8\x29\x9d\x9e\xa7\x2b\x53\x42\xe0\x4e\x0f\xf5\x5b\x6a\x56\x4c\xe0\x91\x4b\x2b\x4d\x5b\x56\x48\xd8\xc9\xdb\x65\xfa\x42\x37\x92\x30\x57\x52\x28\xbc\x5e\x70\x05\x41\x3b\x46\x50\x43\xad\x30\x9d\x20\xce\x1b\xb1\x6a\xd8\xc1\x9b\xb0\xe3\x58\xfb\x22\x73\x65\x0e\x82\xa7\x74\xe0\x27\x07\x25\x0b\x36\xbc\xbc\xfc\x70\xf0\x75\xf8\x4a\x36\x5c\xe0\x0a\xfb\xb2\xef\x62\x3e\x61\xee\x0f\xc1\x3f\xb6\x7c\xc5\x0c\xf2\xb2\x5e\xbc\xf7\xcd\xae\x27\xec\xf2\x9f\x5e\x21\x1f\xf4\x9a\xc0\x7a\xa3\xf5\xec\xc4\xfe\xa7\x84\xef\xde\x79\x01\xbf\xac\xef\x13\xa4\x8e\xf4\x1e\xe5\xc8\x8b\x22\xe8\x75\xf2\x38\x9e\x9a\x33\xc8\xa0\xab\xb6\xae\xfc\xce\xd6\x35\x84\x8a\x14\xbd\xfd\x13\xaa\x67\x11\x2e\xcf\x9e\xec\x6d\x99\xbd\x81\x20\xfa\x5e\x79\xff\xfb\x3c\xc3\x7f\x41\xf9\x65\x4f\x48\x68\xf2\xb4\xff\x13\xb6\x09\xb3\x4c\x05\x15\xa3\x08\x4d\x24\x39\x77\x6d\xca\x0e\x02\xc7\xd3\xe9\x9f\x26\x78\x2d\x26\x44\xcb\x88\x2e\x90\x9c\xb4\x91\xa0\x20\x37\x4e\xed\x55\x61\x3f\x83\xf0\xcb\x9d\xfa\xed\xbf\xe6\x11\xaa\xa7\x86\x7d\xdb\x94\x39\x93\x70\x6b\x72\xca\x09\xb3\x98\x79\x04\xeb\x71\xc7\x9e\x6b\xdd\xd2\x22\x64\xbe\x4a\x77\xf4\xd9\x17\x4d\x38\x74\x5c\x3e\xfa\x75\x95\x20\x1b\xde\xaa\x9f\x34\x91\x3d\x5f\xcb\xa0\x22\x2f\xf7\x4b\xdc\x73\x75\x02\x39\xe5\x3e\x5f\xb8\xf7\x3b\x83\x08\xef\xae\x04\x03\xc3\x02\xc2\xd2\x73\x4e\x97\x5e\xaf\xdb\x4a\xb8\x5f\x1b\x30\x62\x1b\x55\x4c\x38\x97\x40\x86\x5a\x17\x4b\x09\x8a\x6b\x84\x6e\x74\xae\x28\x21\x24\x68\x38\x25\x2d\x53\x2e\x21\x54\x4d\xae\x0e\x91\x15\x29\x26\x3c\xfc\x53\xb4\x54\x4d\xaf\x94\xf0\xe9\x6d\xe6\xd0\x8d\x4b\xc3\x0c\xca\x9f\xdd\x50\x5e\xf6\x44\x96\xc6\x30\x5d\x22\xf6\x7b\xb7\xe9\x43\x06\x1d\xf1\x5f\x87\x8e\x9a\x2f\x26\xe4\x55\xa5\x7c\xf9\x60\xb1\x94\xc0\xec\xfa\xa5\xbf\x26\x3f\x9a\xb0\x38\xf3\x96\xef\xc8\xd1\x5b\x84\xb9\xee\x47\x1d\x7e\xfe\x1b\x8c\xaa\x7c\xd1\xd9\x0d\xf7\xd8\x70\xfd\xaa\x8e\xd5\xbe\xbd\x71\x6c\x05\xfd\xbf\x6d\xdd\xfe\x17\xb2\x1f\x7d\x9f\xb9\x70\xca\xf9\x7f\x61\x91\x51\x8c\x73\xa2\xc9\x6e\x02\x77\x6c\xc9\xce\xf9\x4c\x32\x21\x54\xc7\xdf\xa0\x44\xf9\x3e\x41\xba\xfe\x06\x9f\xcd\xb8\x18\x42\xe2\x36\x93\xc2\x3d\x66\x69\x84\x9a\x3d\xd5\xe5\x66\x91\x19\x04\xd7\xa5\xd9\x3d\xc3\xd2\xfe\x84\x8b\x7d\x73\xf4\x12\xba\x4b\x59\x78\x70\xac\x4e\xd7\x5f\xf3\x1c\x61\x7c\x76\x95\xe0\x80\x4a\x02\x41\x4e\xe2\x65\x00\xf7\x0c\x6f\x82\x00\x57\x80\xee\x30\x0f\x11\x9c\x3b\x4c\x95\x04\x0f\x06\xb2\x60\xa5\x68\xb5\x60\xf6\x60\x26\xa1\x38\x80\x27\x3f\xb3\xc3\x90\xf0\x78\x95\xdd\xb1\x09\xe7\x34\x08\xaa\x7c\x25\x89\xa1\x7f\x4c\x09\x6f\x27\x6f\x17\x99\x2d\x20\x41\x68\xdf\x52\xfc\x96\x3f\x6f\x39\xc1\xdb\x24\xe6\xce\x32\x81\x1a\x42\xeb\x9e\xd8\x88\xe2\x98\x22\xc2\xa2\x44\xac\x38\x37\x54\xc8\x56\xe4\xb5\x0a\x2e\xf4\x3c\xf7\x22\x1c\xf8\x1e\x30\x6d\x64\x33\x8b\xc0\xb9\x4f\x45\xc1\xff\x77\x11\xa1\xfa\xfe\xae\xf3\x1f\x47\x8a\x08\x1c\x79\x1b\x8b\xce\x6f\xcd\x64\x1b\x19\x6c\x59\xa7\x7f\xad\x26\x92\x30\x69\xd5\xd5\xd0\x93\x9b\x55\x08\x87\xd2\x13\x1f\xcb\xe8\x47\x11\xb2\x54\x72\xbd\xbf\xa5\x55\x10\xac\xb3\x4a\x62\xab\xb8\xa2\x09\x2b\xe6\x7c\xbb\x93\x77\xec\x3d\x0b\x5d\xab\x7e\x3e\xcc\x37\x4f\x22\x58\xf6\x58\xe6\x5b\x5f\x1f\xdd\x7f\x75\x9d\x6c\xb4\x19\x22\xd4\xc4\x28\xb8\x48\x37\x4e\x25\xcc\xbe\x57\xb5\xb5\xde\xe5\x12\xa1\xe8\xdc\x8a\xa4\xb0\xe8\x70\x42\xe8\x85\x29\x7e\x8f\x15\x8d\xd9\x20\x27\x61\x5b\xf9\x83\x63\x33\xe1\x7c\xce\x9b\xc7\x09\x0a\x3b\x09\x17\xdb\xab\x1c\xf3\xdb\x96\x11\x0e\x4d\xd2\xd7\x5c\xcd\x14\x10\xf4\x9c\x86\xff\x98\x2f\x77\x67\x41\x60\xb6\xb0\x78\x8c\x79\x2a\x21\x77\xd6\x13\xc5\x9a\x2d\xa9\x04\xf7\x30\xa3\xf5\xd1\xa3\xe5\x4a\xe0\x53\x6f\x13\xab\x54\xc2\xf6\x75\xda\x8d\x2f\x13\xca\x18\xec\xd6\xdd\x94\xf4\xf7\xef\x83\xd2\xb7\xaf\x58\x54\xff\xca\x9a\xd0\xf0\xd6\x21\xe1\xc0\xd4\xdd\x6c\xa5\x4f\xd0\x54\x04\x7e\xea\x84\x22\x97\x2f\x07\xe2\x2e\x86\x10\xce\x70\xf2\xf0\x14\x67\xee\x64\x83\xc4\xc6\x45\x6b\x27\x5c\x38\x41\xf8\xd8\xc4\x51\xec\xfe\x32\x99\x70\xab\xbc\x2c\xe5\x7d\x57\x0c\x0b\xdb\x37\x3c\x72\x10\x0f\x89\x25\x54\x5a\x71\x16\x5f\x09\xba\x4c\x08\xca\x90\x7f\xe0\x65\xe5\x4a\x58\xad\x58\xb1\xcf\xe0\xd5\x69\x42\xdd\x54\xbb\x77\xee\x1d\xee\x84\x9e\xb2\xa6\x6f\xc7\x9e\x65\x12\x7c\xce\xec\x89\x52\xf1\xbe\x4f\xd8\xf9\x5c\xd7\xef\xb6\x66\x2a\x61\x23\x4f\xc8\x89\x8a\xae\x12\xc2\xb5\xc1\xb5\x7f\x46\xac\x2d\x08\x31\x2d\x21\x3e\x90\x8d\x24\xf4\x96\xa4\x38\xef\x1b\x34\x26\x44\x1d\x6b\x5d\x17\xac\xb7\x99\x50\xcf\xed\x9f\x78\xf7\xfa\x1a\x42\x59\xd5\xb1\x91\x88\xde\x33\x04\xfb\x8e\xdd\xdc\xfb\x7f\x1c\x27\xfc\x4a\x0b\x33\x74\x6f\x38\xcc\x1a\x2b\x8e\x12\x82\xac\xca\xc8\xf3\x2c\xcc\xbe\x1d\x75\x2a\xf6\x58\x04\xc1\xef\xe4\x99\xfd\x81\x5c\x27\x09\x77\xaf\x1d\xaf\x95\x74\x8f\x20\xc4\x4d\xb8\x10\xd6\xc2\x12\x24\x58\x1a\x08\x96\x25\x44\x6e\x67\xc3\xe3\xe9\xa7\xd7\x70\x4f\x1f\x7d\x3d\x61\x19\x3a\x11\xf6\xbc\x84\x1d\x6d\xdd\xcb\x77\x2b\xf6\x33\x38\xa0\xf8\x5d\xd5\x66\xa7\x1e\x21\x60\x61\xc9\xed\xd6\x96\x6b\x84\xa4\x8b\xea\x4b\x7e\xb5\x06\x11\x3e\xca\xcc\xb5\xd9\xe9\xce\x41\xd0\x11\x7b\xfa\xfe\xa2\x17\x18\x18\x16\xee\x09\x0e\xfb\x69\xca\xc2\xf7\x8f\x97\x37\xa8\x0e\xf1\x11\xd6\x38\x2e\xbc\x5d\xc8\xba\x47\x68\x53\x48\xb4\x2b\x19\x85\xc8\x99\x89\xc5\x8f\x4f\x9e\x23\xa8\x29\x06\x9f\xaa\x59\x38\x85\x60\x70\xa9\xed\xe0\x91\x5f\x86\x84\x0b\x7a\x87\xae\x9d\x95\xfe\xca\xc0\x35\xd0\xb7\x47\x03\x51\x84\x25\x1b\x9c\x42\x2a\xce\x5d\x27\xe8\x1c\x99\x9d\xb6\xda\xab\x8c\x20\x93\xe5\xa8\xbc\x65\x28\x86\x30\x1e\xd7\x5d\x9e\x7f\x98\x42\x50\x51\xe1\xb7\x95\xee\xe6\x22\xfc\x14\xdd\xa8\x53\xa2\x6e\xce\x86\x93\xa5\x9c\xfa\xaa\xca\xb3\x08\x4b\x73\x44\x56\xcf\x31\xd2\x22\xf4\x3c\xbc\x99\x54\x6d\xdd\x48\xe0\xb9\x30\x18\x27\xfd\xbb\x93\x70\xf3\xe5\xa2\xc4\xae\xf5\xbd\x04\x2b\x13\x2b\xff\xb8\xa2\xa7\x84\xf3\x06\x0f\x18\x2f\x69\x17\xc2\x00\xef\xe3\xbc\xed\x7a\x05\x84\x22\x8b\x90\xed\xba\x12\xdd\x0c\x1e\x54\xcf\xef\x5c\xa4\xdf\xc3\x86\x44\xbf\x5d\x19\x49\x07\xa5\x09\xd3\x75\x57\xaf\xbf\x64\x57\x4d\x10\x8b\xb0\xdb\xc9\x8d\x32\x82\x84\x80\xc5\xa7\x35\xde\xb9\x84\x6b\x32\x1f\x74\x6c\x39\xd7\x11\x52\x4c\xd5\x55\x7b\xb6\x67\x13\x2e\xbc\x57\x28\x9a\x27\xb5\x98\xe0\x9d\xef\x75\x31\xd9\xe7\x35\x83\xc0\xd8\x5f\x62\x33\xdf\x54\x10\x8e\xc8\x3f\xe5\xe1\x4a\x7e\x4a\x18\x6f\x50\x57\x73\xd9\xac\x8c\xb0\x7a\xf3\x34\x91\x5e\xdb\x34\xc2\x44\xbd\x07\x93\xc4\xf6\x14\x11\x66\xbf\x92\x3f\x95\xf5\xe3\x0a\x61\x86\xe1\xf2\xf2\xe2\xb6\x22\xc2\x9e\x0d\x03\xfb\xfc\x2d\x52\x59\xf8\x60\x35\xb9\xf6\xf3\x01\x3f\x82\xcb\xa4\x3f\x0b\xa7\x3e\x2d\x26\xb8\x74\x8d\xf0\x8e\x4b\xcb\x21\x98\x2f\x5d\x2e\xb4\xc3\x3b\x87\xf0\x69\x5b\xbe\x5a\xf1\x97\x32\x02\xe7\x86\x16\xb5\xa5\x65\xd1\x84\xc4\x14\xb5\x6d\x8d\xe1\x61\x04\xbe\x01\x51\x05\x8e\xd1\xff\x79\xef\xaa\xd6\x13\x4b\x5f\x45\x13\x6e\x1a\x74\xc5\x18\x1c\xcb\x25\xe4\x6c\xdc\x64\xe4\x32\xb5\x88\x90\x1c\x52\xb8\x49\x3e\xce\x65\xf4\x1f\x7f\x56\x3c\x27\x77\x8e\x60\x30\x28\x19\xbc\x2f\xc6\x91\xc0\xc1\x77\x32\x77\xfb\xd2\x73\x84\x55\x8f\x52\x56\xf4\xdc\x3d\x4b\xc8\xbd\x96\x24\x19\x94\xbb\x87\xf0\xd3\x98\x5f\xf5\xc4\xd0\xe8\xb1\x7e\x7e\x1b\x2b\x3c\xeb\x2b\x03\xe7\x67\x8c\x64\x8a\x64\x1c\xc1\x3d\x3c\xe2\xc0\x79\x29\x76\xb8\xac\x53\xbc\xf0\xd9\xd1\x84\x60\x19\x7f\xb9\x3b\x4f\xd7\x8c\x0d\xdf\xd7\x18\xf9\xcb\xf3\xed\x25\x3c\x9f\x7f\x65\xfc\x17\x6e\x0e\x82\x40\xcc\xd4\xbb\x25\xda\xc5\x84\xdc\xcb\x11\xee\xdf\xc2\x8a\x08\xc3\x5b\x1f\x72\x1e\x7d\x99\x47\x70\xfc\x28\x5f\xf8\x77\x14\x34\xb9\xfa\x62\xd5\x3a\x43\xc2\xa3\xc5\x29\x46\xf2\x29\x06\x04\xa3\xc9\xe3\x6e\xbe\x10\x37\x62\x83\x81\xcc\x09\x0f\xbb\xb8\x3e\x06\x47\xda\xc2\x64\x0f\xaf\x59\x47\x90\x4f\x50\x50\x51\x8e\x18\x3d\x86\x6d\xea\x2f\x79\xf0\xfb\x39\x0b\xe6\xb2\x17\x6c\xb9\xaf\x67\xb3\xfd\x7e\x16\xe1\x37\xf7\x78\x5e\xcb\x64\x61\xf8\x53\x7c\xaa\xf4\x68\xf9\x53\x5e\xa3\x65\x22\x65\x42\xf0\x58\x7b\xec\x7a\xee\x90\x31\xc1\x69\xa0\x5a\x34\x59\xc0\x94\x6d\xf4\x5f\x11\xf1\xff\xba\x4f\xcc\x63\x09\xa1\x59\xe5\xf2\x60\x4e\xfc\x29\x16\x3a\xaf\xc6\xce\xd8\x54\x9b\x47\xe8\x1e\x79\x36\xe5\xcd\xc0\x1d\xc2\x7a\xb7\xbc\x21\x66\xf4\xcb\x59\x24\xbb\xe8\xec\xc3\x2e\x53\x82\x66\xb7\xac\x6a\xe5\xcc\x5f\x0c\x1a\xf6\x6e\x52\x29\xce\x9b\x4b\x63\x90\xbb\xff\x59\x62\x7b\x6f\x36\x83\x55\x1a\xab\x1d\x9f\x4f\xce\x20\x24\x7e\x51\xcb\xe6\x7e\x68\x41\xa8\xae\x52\x64\x31\x5c\xa5\x84\x93\x4d\x8d\xc7\xfb\x27\x94\x12\x26\xc4\x49\x68\x35\x37\xab\x13\x38\x0e\x4a\x2d\x63\xbe\xc5\xb1\x30\xf9\x7d\xbc\xbb\xfe\x96\x9b\x2c\xf0\xf4\x47\x17\xfb\x98\x64\x10\xa6\x8a\x6f\xcf\x79\xb7\x3a\x83\xc6\x8a\x64\xc9\xe4\x07\x71\x5b\x33\x08\x5f\xb8\xd4\x2f\x1b\x6b\xf5\x31\xb8\xd2\x37\x7d\xba\xae\x6c\x09\xc1\x37\x61\xa7\xff\x5b\x0d\x45\xc2\x57\x35\x28\x84\x47\x1f\x20\x34\x9e\xf1\xb1\xdb\xe7\xdd\x44\xe8\x09\x2e\xb4\x5f\xf4\xfd\x09\xa1\xcc\x36\x6c\x4b\xdc\xe3\x3a\x42\x6e\x7b\xd1\x39\x29\x41\x16\x61\xd9\x16\x0e\x61\xa3\x7b\x2c\x16\x24\x2e\x55\xbb\xdc\x18\xa8\x21\x4c\x32\xd2\x7c\x32\x5e\x72\x2f\x1b\x16\x86\xc7\x69\x05\x65\xa6\xb2\x21\x6a\xa1\xc0\x9e\xdf\x66\x75\x84\xcd\xc3\x12\xa7\x4b\x2d\x6f\x11\x3e\xd8\x47\xb7\xfc\x1c\x2d\xf6\x11\x9a\xb9\x29\x5c\xb5\x84\x0b\x92\x7e\x0f\xdd\x3a\x04\x09\x5b\xa7\x4d\x88\x97\xaf\xd3\x20\x84\x3e\x93\xd9\x2f\x6b\x60\xc5\x86\xa7\x16\x41\xb3\xda\x96\x6a\x13\x8e\xcc\x8b\xaf\xd7\x7f\xdd\x4e\x58\xb3\xc5\x38\x2c\xc1\x7c\x0f\xc1\xd3\xa0\x5e\xb4\x2a\x74\x02\xa1\x52\xd5\x7d\x8b\x67\xee\x64\x42\x7d\x51\x6c\xdd\x7d\xa3\x76\xc2\xf1\xe6\x07\x9f\x78\x7e\x19\x13\x32\xeb\x0e\x3c\x19\x30\xee\x62\xc6\x50\xfd\xaa\xf2\x99\xdd\x31\x0e\x42\x5f\xc6\xde\xbd\xa7\x55\x0c\x08\xde\x47\xde\x3c\x13\x79\xed\xc9\x86\x9f\x01\x9a\xb7\x1d\xcd\x6c\x08\xdf\xa5\xcc\x7f\xb9\x96\x67\x13\x06\x5e\xfd\x09\xf5\x0c\x7e\x34\x7a\x5b\xaf\x37\x3d\x37\x0a\x85\xa1\x30\xcf\x57\x61\xd6\x84\xe7\x4e\x1b\xc5\x8f\x6f\x3b\x42\x58\x72\x7f\xdb\xe1\xc3\x83\x7b\x08\x62\xaf\x9b\xbb\x9f\xcf\xae\x21\x4c\xe9\x17\xf4\x55\xe6\x2e\x24\x7c\x99\xcc\x68\x29\xaf\x72\x24\x4c\xdd\x1a\xb9\x58\xeb\x8c\x18\x61\xe7\x91\x3a\xfb\x16\x15\x75\x36\xf8\x87\x6c\xeb\xb0\x5b\xa5\x42\xe8\x1c\x5a\xb6\xea\xd3\x26\x2d\xc2\xaa\xcc\x9a\x6b\x59\x97\xdd\x58\x30\xbb\xbb\xfd\x95\xb8\x4b\x10\x0b\x3f\xdb\x25\x3e\xfd\xd8\x91\x41\x70\x36\x9e\x70\xec\xcb\xd1\x0c\xc2\xa4\xa3\xe1\x23\xb7\xa2\x35\x08\xba\x85\x67\x4f\xde\x73\x5f\x4e\x10\x79\x73\xf3\xf1\xf2\x85\x4b\x08\x7e\xd2\x86\x95\x5f\x63\x74\x09\x43\xe1\xe6\xac\xc1\xdd\x9b\x08\x47\x63\x8c\xe7\xb7\x77\xac\x24\x2c\xf9\x7d\x72\x89\x52\xea\x4c\x42\xd9\xe1\x24\x61\x67\x49\x2d\x82\xc1\x78\x89\xf2\x6f\x97\x8d\x09\x2c\x04\x39\x9b\x1e\x7c\xc3\xa0\xcb\xaf\xf8\x46\x33\xd7\x0e\x1a\x43\x54\xe7\x81\x10\x91\x83\x5b\x08\xb7\xd2\x77\x28\x2d\xbd\xd3\x48\x28\xd6\x2b\x55\xaa\xd3\x49\x25\x70\x8d\x67\xad\xaf\x5c\x9d\x4a\x90\x5b\x2c\x7f\xf8\xb4\x65\x29\x0b\x6e\x3e\x3f\xf8\xb4\xcc\x0e\x11\xb8\xb7\x0b\x97\x36\x35\x2c\x22\x94\xf5\xda\x8f\x98\x89\x8a\xb0\x41\x4f\x29\xfa\xa1\x69\x41\x5b\x21\x52\x33\xbb\x0c\x8c\x67\x1d\x24\x88\x54\xdc\xfa\x7a\x3f\xaa\x8d\xc1\x4a\x4f\xdf\xca\xca\x57\x1a\xf4\x0f\x78\x24\xba\xcc\xec\xe5\xee\x63\xa0\xfd\xe7\x47\x62\x57\xd8\x7c\xc2\xc6\xfc\xdc\x70\x81\xf1\xd2\x84\xe8\x97\xc1\x0a\xd1\xad\xaa\x04\x8d\xc1\xe9\x87\x4e\x6c\xb8\x49\x98\xd5\x1f\xfa\xd4\x69\x14\xcf\x39\x95\x7b\xc3\x67\x6c\x22\x94\x6e\x35\x2a\x6b\xd9\x67\xc8\x56\x92\x1e\x68\x2b\x7e\x71\xcb\x24\x54\xfe\x3c\xf0\x7a\x8e\x72\x2a\xa1\xde\x68\xdd\x4c\xb7\xb8\xf9\x04\x47\xd7\x4f\x87\x0f\x1d\xe6\x25\x4c\x58\x25\x72\xb4\x45\x40\x90\x10\xfd\xac\xa3\x68\x97\x95\x1c\x41\x71\x8e\xaf\xe1\x5d\xdb\xf5\x6c\xf8\x6f\xa4\xfd\x76\x9a\xd6\x54\x45\x21\x42\x8e\x60\x95\xa4\x55\x96\x3a\x5b\x31\xb7\xd3\x1b\xe9\x3c\x57\x5a\x08\xf2\x6a\xcc\x7f\x92\x91\x4e\xf0\x49\xee\x54\xfe\x56\x9f\x4e\x48\x89\x51\xb6\xc9\xd1\x7c\x4a\x50\x5e\xea\x37\x22\xcd\x55\x4c\xd0\x5a\xa6\x2d\xc3\xc1\xa3\x45\xb8\x96\x2b\x3a\x22\xa2\x2c\x4e\xf8\xb5\xd7\xdd\xcc\x63\xb6\x26\xa1\x7f\xfa\x50\x9a\x96\xa0\x1e\xa1\xb4\x5a\x9f\x5a\xee\x2d\x26\x58\xd8\xbc\xb8\x7a\xed\xd4\x25\x42\x5d\xe2\x39\xcb\x0c\xa9\xef\x0c\x86\x7f\x05\x9b\x8e\xdc\x18\xbd\x38\xf8\xef\x79\xf0\x3e\xd6\x8b\x85\x8a\x7c\x4f\x41\xd3\x1f\x31\x84\xa1\x96\x84\x80\x92\x9d\xb9\x84\x3d\x85\xa6\xea\x7f\x11\xc0\x14\x6a\xbd\x5b\x37\xba\x0f\xae\x28\x3b\x21\x6f\x76\x8f\x70\x22\xc5\x3e\x57\x4f\x3d\x89\x90\x94\xb7\xea\x60\xec\x94\x58\xc2\xe9\xb0\xd3\x26\x67\x5f\x15\x12\xd2\xf9\x8d\xe5\xfe\x22\x62\xbc\xf7\xfa\xa0\xfd\x9f\x08\x26\xb9\x11\x6e\xbb\x37\x0c\x11\x0e\x9d\x6f\xb4\x8a\xd4\x2d\x21\x04\xab\xfb\x2f\xd3\xda\xf6\x91\xb0\x88\x4b\xe2\x23\x8e\x3e\x26\x94\x8b\x48\xda\x7f\xa6\x2f\x0c\xf6\xc4\x46\x6e\x9a\xff\xce\x9e\x85\x47\x27\x3f\x36\xed\xd0\xeb\x66\xd0\x67\xba\xec\x28\xa7\xef\x7a\x42\x4a\x57\xf3\x82\x62\xae\xe7\x04\x1b\xa9\xaa\xbd\xd3\x6e\x96\x13\x16\x7c\x73\xb9\xf2\xab\xf9\x32\xa1\xba\x4d\x41\x4c\xfb\x76\x00\x21\x31\x78\xfd\xe6\xb5\x7d\x16\xff\x02\x1a\xc5\x5b\xb9\xc3\xb4\x08\x0b\x5e\x9e\x76\x74\xb3\x7c\xc1\xe0\x59\x43\xf3\xf5\xbd\x2d\xa5\x84\xb7\x21\xe6\xab\x3d\x8e\x3a\x12\xaa\xc2\xb4\x79\x75\x57\x8c\x2e\xf2\x6d\x13\x7f\xa6\xa7\x16\x11\xbc\xc3\xff\x18\x66\x8d\xcb\x24\xec\xe3\x9e\x5c\x9b\xcb\x57\x46\x98\x29\xf3\x73\xe6\x5e\x9b\x02\xc2\x0c\x6f\x8d\x99\x9f\xbb\x04\x09\xf9\x36\x4f\x42\x98\xa3\xb9\x04\x59\xfb\xb5\xa1\xae\x33\x8a\x08\xe7\xa7\xbb\xdf\x30\x0d\x97\x27\x64\xcb\x1f\x0d\x9f\x78\xe4\x31\x61\xb8\xfa\xa8\x2f\xdf\x28\x6a\x83\x2a\x6b\x78\x47\x11\xf3\xa1\xd8\x62\xe2\xb8\x5c\xc2\x0f\x75\x67\x4f\x17\x9f\x4f\x0c\xd6\xe5\x2c\xd2\x19\x92\x69\x67\x41\xc8\xd5\xaa\xec\xfd\x50\x33\x0b\x1d\x6a\x4a\xae\x15\xc2\xa5\x84\x03\x27\xdb\x3e\xae\x53\xbc\x4a\x38\xbe\xeb\xfa\x95\xee\xec\x48\xc2\xaf\x6f\x41\x17\x7b\x6b\x47\x37\x3b\x01\xe6\xf6\xa9\xe6\xdd\x84\x44\x0c\x6f\xd0\x8e\xd7\x20\xe0\xf1\x85\x0d\xae\x0b\xd7\x10\xcc\x4f\x15\x5b\x1e\xfb\xb3\x84\x0d\xc2\x09\x53\x3e\xda\x5e\x6f\x61\xf0\xc2\xc5\x78\x70\xb6\xbd\x2c\xa1\x8e\x53\xce\x97\xfb\x4d\x3e\xc1\x4c\xab\xc9\x62\xbc\x5d\x2a\xa1\xc2\xe4\x4d\x53\xd0\xef\x6c\x82\x62\xe5\x95\x39\x72\x4f\xac\x08\xcd\xa1\xc2\x73\xe4\xb3\xde\x10\x1e\x3e\x34\x3c\xad\x30\x8a\x5d\xef\xa6\x40\x6e\x14\xdf\xaa\xea\x1c\xef\xc5\x3d\x20\xd4\xe7\x5c\x0f\x7a\xba\x61\x0e\x21\xfd\xdd\xed\x88\x82\xae\x6e\x06\xca\x5f\x3c\x35\x37\xef\x5e\x4d\x63\x08\x88\xe7\xe7\xd2\xaf\xf1\x67\xa0\x9f\x5d\xcf\x9b\xfc\x4c\x80\x30\x6f\xc3\xe1\xe0\xc6\x5b\x57\xd9\xa0\x56\x9c\x30\xf8\xc5\xaf\xa4\x10\x5c\xc7\xb7\x3a\xaf\x8d\x9a\x41\xa8\x98\x20\x76\xaf\xe6\xc8\x62\x82\xde\x81\xaa\x03\xcf\x75\xb8\xd8\xe0\xbb\xd9\x48\x5b\xff\xd6\x7a\x36\x14\x47\xed\x3e\x11\x10\xa9\x44\x08\x5e\x37\x47\xe3\x97\x93\x2b\x0b\x27\x06\x4f\x5d\xac\x12\x28\x21\x3c\xff\xb9\x7f\x4b\x94\x58\x23\x61\xb6\x58\xf2\xad\x94\xb0\x15\x84\x88\x09\x1e\x9b\x6e\x7d\xe3\x27\xf8\xf8\xae\x91\x3d\xd3\x7d\x81\xf0\xfd\x58\xdb\x81\x6d\x9b\x2e\x10\x78\x8e\x1f\xfe\xad\xdf\x71\x86\xd0\x76\x53\x67\xad\xe1\x31\x6d\xc2\x4c\xf5\xe4\x7e\x0f\x3d\x05\x82\x54\x90\x54\x8e\x97\x87\x3c\x1b\x96\xac\x0b\x17\xe9\x1e\xf9\xc3\x20\xfc\xb7\xe8\xe2\xb7\xda\xe3\x09\xab\xbf\x54\x4b\xfa\x84\x71\x12\x4e\x6e\xb4\x52\x1f\x5e\xf6\x95\xc1\xe3\x2b\x5b\x36\x6f\x5e\xc2\x4b\x63\x68\xee\x10\x5c\xcd\x8b\xd5\x84\xc8\xcd\x1d\x67\xd6\x57\x6a\x11\x8a\x3b\xe4\xbe\x7d\x97\x36\x64\x43\xfc\x4b\x95\x20\x49\x2f\x61\xc2\xa6\x67\xf6\x7b\x38\x46\xb7\x48\x9d\x40\xa6\x33\xdd\x2d\x8b\xd0\xd5\x5d\xb8\xf5\x2f\x7a\xb5\x8d\x4e\xf2\x6c\xb3\x22\x14\x39\x3b\x3a\xcc\xe7\x8e\x21\x98\xab\xec\xda\xf6\x17\xef\xca\x63\x37\xde\x17\xad\x22\xac\x58\xeb\xa2\x9f\xba\x7b\x0f\x41\xc3\xe3\x51\x48\x61\xed\x7b\x42\xbc\x8b\xba\xe7\xe1\x92\x5e\x42\x40\xb0\xf4\xfd\xbc\xd1\xb2\x2f\xfa\x83\xa5\x52\xcc\x73\x42\xf7\xef\x1b\x1b\xde\x9f\xbe\x4e\x28\xfe\x58\xcd\xfd\x4a\xb4\x97\x81\xb1\xa6\xd3\x8b\x36\xee\x6c\x82\xc1\x90\xb8\x5a\x4b\x9e\x04\x61\xe6\xc0\xe9\x4b\x51\x22\x4a\x84\x73\x0d\x0f\x7c\xda\xbe\xcb\x12\x96\x9c\x0b\x6f\x48\xe2\x38\x43\x38\xee\xd7\x34\x41\x69\x0f\x17\x1b\xca\x13\xbb\xaf\x24\x04\x83\x19\x43\x7e\xf9\xa7\xec\xdb\xfd\xdc\x84\x2a\x5b\xf1\xf1\x16\xd6\x6a\x04\xcf\xfc\x0f\x6d\xfc\x36\xf2\x84\x6b\x02\x03\x7f\x74\xcb\xc2\x09\x43\x33\x64\x8e\x2d\x68\x0b\x23\x3c\x75\xab\xac\xfd\x5b\x5a\x37\x8a\x6f\xd5\x1f\x85\x64\xbe\x8a\xa6\xf3\xe9\x13\x84\x8d\x2a\xde\x87\x6e\xaf\x17\x27\xdc\xe6\xdd\x5f\x20\x6f\x13\xf0\x2f\x4c\x5a\x78\x88\x9b\xf6\xdc\x23\x44\x0a\xde\x39\x38\xbd\xb1\x91\xd0\x93\xa4\xe2\x3e\xa1\xcc\x8d\x10\xf2\x70\xbc\xd0\xf8\x08\x29\xc2\xfb\x56\x1f\x41\x7d\x6d\x4e\x42\x68\x48\xf4\x49\x8b\x8d\x9f\x19\x48\x1f\x5e\x1e\x7d\x6f\xcb\x0b\xc2\x60\x0e\x7f\x54\xdb\x24\x16\xe1\x87\xfe\x25\xc5\xa9\x2b\xcb\x59\x70\x50\x1a\x14\xa9\x75\xce\x60\x21\xca\xda\xbc\xc5\x27\xa1\x84\x86\x9e\x8d\xb3\x73\xa8\xd0\x22\x58\x72\x87\x1c\x3f\x35\x00\x06\x2b\x93\xf7\x9c\xfc\xae\x34\x7a\x6b\xfa\x1f\xf4\x9d\xd5\xef\x3e\xab\x22\xca\x86\x99\xbf\x17\xf0\xb9\x1b\xdd\x26\x6c\xb2\xe7\x6c\x71\x1b\x85\xd4\xf7\x83\x66\x5e\xdb\xc7\x13\x5a\xef\x9f\x79\xd5\xb0\x8d\x83\x70\x93\x49\xe2\xfb\xae\x38\xcc\x20\x5b\x3a\xf8\x5d\x53\xdf\x5c\xc2\x85\xa0\x00\x9f\x6d\x32\x32\x04\x91\xb3\x09\x1e\x07\x3a\xa5\x08\xbe\x07\x83\xed\xbf\x66\xa4\x12\x2e\x9d\x78\xba\x43\x3a\x35\x95\x10\xfc\xb4\xd3\x28\x02\xf3\x08\x3c\x26\xef\xd6\x3a\x49\xf3\x12\xc2\xb6\xdc\x6a\x4c\xac\x31\x20\x8c\x77\xda\xf1\x26\x32\x5f\x94\xe0\x3b\x53\x69\x83\xb4\x30\x1f\x41\xdf\xe7\x5c\x68\xf3\xbe\xb9\x84\x39\xc7\xb9\x03\xbc\x03\xc6\x13\x5e\xe8\xba\xe7\x3f\xbe\x75\x81\x70\xb6\x66\xfe\xba\x47\xa3\x28\xed\x0c\x4e\xf9\xb4\x68\x0f\x61\xae\x44\x7e\xe7\xee\x02\x27\xc2\xc5\xb2\x6e\xfd\x28\xbb\x28\x82\x97\x82\x51\xc1\x5f\xb8\x5d\xc9\x53\x8e\x1e\x85\x51\x02\x7a\x5b\x67\x5d\x27\x74\x3f\xdc\xa0\xd7\x36\x8a\xfe\x5f\xce\x96\x7f\x4b\x82\xd0\xc6\x81\xa5\xd1\xc9\x84\x8c\xdf\x53\x9d\x06\xb9\x32\x09\x79\x1b\x03\x1d\x64\x5b\xb7\x12\x1e\x05\xf2\x57\x4d\xe6\x7c\xc5\x42\xc5\xef\x1e\x35\xdd\x50\x05\xc2\x6c\x29\xcb\xf9\xef\x94\x1d\x08\xcd\xbb\x47\xf4\x97\x6a\xbb\x13\x96\x44\x9c\x0e\x8d\x0e\xc9\x25\x7c\x12\x73\x59\x92\xb8\xce\x91\xa0\xfe\xe5\x39\x47\x72\xe0\x51\x82\xad\xbf\x4b\xe8\x23\xab\x7d\x84\xf5\xf3\x44\xf6\xfa\x6c\xb2\x23\xc8\xbb\xcc\x15\x3a\x50\x79\x8e\x05\xce\xee\x4b\x37\xb4\xdb\x9f\x11\xa6\xae\x16\xe9\x58\x12\x53\x46\xb8\xed\x21\x69\xb6\xf5\xec\x6d\x82\xaf\x0a\xdf\xe6\x69\xd5\x69\x04\x89\x8e\x50\xa7\xd9\x33\x22\x09\x6f\xe3\x7c\xa7\xb6\x7c\x1b\x3d\x78\x7e\x5a\xcd\xbd\xe5\x5b\x21\xe1\xdc\xd2\xce\x04\xe7\x23\xca\x04\xd9\x29\xae\x42\x9e\x4d\x73\xd8\x50\x57\xbb\x26\xe1\xf5\xf5\x97\x85\x70\x76\x7e\x92\xd3\xd9\xa0\x44\x78\x59\x7e\x8a\x2b\x58\x4e\x84\x0d\x1f\x27\xeb\x3a\x2a\xf3\xb7\x17\xc2\x79\xe3\xfe\xa6\xec\x4f\x3b\x08\x9c\xe3\xf7\xd8\xfc\xdc\x72\x9e\x0d\x0b\xa7\x07\xfa\x76\x2e\xdb\x45\x48\x78\xc9\x95\xed\x59\x76\x97\x70\xd7\x78\xa7\xd4\x4d\x8e\x52\xc2\xa3\x59\x3b\xee\x2d\xbe\x1f\x45\x58\x3f\xeb\xbb\x9f\xf8\x97\x3d\x84\xe9\x07\xdc\x13\x2b\xbf\x06\x10\xea\xf7\x0d\xbe\x57\x29\x4d\x27\x84\x09\x4a\xdb\xcf\x14\xec\x67\x70\x6e\x64\xe8\x73\xab\xac\x3f\x41\xbd\xf0\xca\xeb\xb5\x72\x45\x84\x2d\xb2\x0d\xd9\xa9\x4a\xe1\x2c\xf8\x55\x3b\xb7\xea\x8f\x96\x18\xdd\x7a\xff\xe4\xd1\x43\xf7\x1d\x9d\x72\x29\x9f\xda\x7c\xc2\xf4\xb6\x97\xc7\x92\x4c\xf2\x58\xb8\xb0\xd7\xf4\x63\x5a\x7b\x39\x0b\x4a\x06\x8b\xee\x26\x8e\x96\x35\x37\x6e\xa6\xff\xd2\xbc\x47\x48\x7b\xca\xbb\xa1\x6e\x5b\x23\x0b\xd1\x82\x71\x65\x86\xbb\xe2\x08\xb6\xfc\xf7\xdc\xe4\xc4\xa3\x08\xc3\xb9\xc6\xba\x07\xac\x4b\x09\xa6\xba\x27\xc5\xf3\x1e\xb9\x11\x8c\xdc\x12\xed\xb9\x3c\x47\x77\xd9\xa9\x82\xd9\x62\xf3\x37\x13\xbe\x5e\x38\xfb\xa6\x4a\xfd\x1b\x83\x5b\xed\xb5\xd3\xed\x5e\x12\x8d\x61\xd1\x24\xd6\x24\xf7\x68\x0e\x82\xd1\x4c\x8d\x98\x61\x1f\x35\xc2\x84\x23\xd6\x3f\x6f\xe4\xe4\x13\x4e\xbd\x5b\x3f\xb8\x60\x6f\x00\x83\xeb\x27\xdf\xf2\xd9\x6c\xce\x22\x54\x4d\x3e\x19\xf6\x68\xfa\x04\xc2\x7a\xa5\x9d\xb7\xd7\x6b\x07\x12\x64\x74\x17\xa4\x06\xdd\x2f\x20\xa8\xa5\xff\x7c\x9a\xea\x57\x4a\x58\x33\x4e\x2f\x75\xa2\xa2\x35\xa1\x7d\xc3\xba\xfb\xa6\x11\xbf\x18\x54\xd5\x0b\x3a\x05\xe5\xff\x60\x20\x26\xd8\x3a\x78\x7c\xf5\x14\x42\x71\xc8\x67\xaf\x1c\x6f\x45\x82\x36\xd7\xcd\x2d\x7a\x72\xb9\x84\x69\x96\x29\x1e\x99\x59\x09\x04\x05\x71\xcb\x3d\xa6\x5a\x69\x84\xb3\x97\x2c\x56\xbe\x10\x61\x8d\xde\x21\xef\x27\xd7\x8f\x22\xc9\xf3\xc8\xae\x63\x67\xc2\xd9\xb0\x45\x5c\x5c\x81\xb3\x3a\x8e\xc0\xe3\x61\xbc\x6b\x76\x5a\x1c\xa1\x70\x43\x65\x24\xeb\xc3\x19\x16\xb6\xfe\xea\x52\x49\x0b\xe5\x26\x34\x2d\x33\x7b\x99\xb0\x77\x0e\x61\x9f\xde\xb8\xc3\xa6\x01\xfa\x84\xc8\xf1\xdd\x97\xd5\xba\x8b\x08\x27\x9e\x69\x5a\x1f\x89\xc9\x27\x34\x8a\x47\x72\xae\xba\x51\xc9\xc2\xcb\x0b\x23\xf9\x4d\x22\xe5\x2c\xd4\x7b\x2f\xb3\x4f\xf8\x18\x4e\xff\xc0\x8d\xc3\x4f\xce\x8b\x2c\xa8\x63\xc6\x30\x92\xfc\x58\x9e\xd7\xf2\x06\x8d\xa1\x6f\x6f\x32\x97\xb4\xf4\x5d\xc2\x69\x8e\x13\x45\xab\xaf\x3d\x23\x5c\x18\x37\x2f\x6c\xf0\xea\x25\x36\x48\xd7\x7e\xd4\x8c\x92\x10\x22\x5c\xfe\x7c\x62\xc2\x13\x9e\x07\x84\xde\x45\xd7\x8f\xaf\x4a\x2a\x20\xf0\x5c\x37\x58\xcc\xfa\x55\x4e\xb0\x28\x1a\x14\xd2\x1d\x27\x40\x58\xbb\xd6\xd3\x53\xe5\xf0\x26\x42\xea\x12\x2f\xc3\x15\xa6\xa9\x04\x4b\xcb\x67\x97\x4e\x0d\x8e\xbe\x51\x56\x97\x3b\x1d\xab\x72\x08\xbf\xf5\xdf\x36\xb8\x1b\x14\x10\xac\x55\x97\x0d\x76\xab\x4b\x10\xfa\x76\x4d\xf1\xea\xc0\x4b\x06\x4e\xf7\xbc\x37\x7e\xfb\x95\x47\x58\xa9\x66\xf9\xd4\xc7\xd5\x86\x0d\xba\xce\x79\x27\xac\x62\x4c\x09\x33\x27\x7e\xac\x0f\xef\xb9\xc3\x82\xf2\xd9\xd2\x84\x53\xf6\x25\x84\xf5\x9f\x34\xf2\xee\xab\x36\x12\xf0\x48\xbe\xb6\x85\xbf\x89\xa0\xbd\x72\x81\xdf\x66\x5a\x4c\x58\x67\xab\xbb\x60\xfb\xca\x22\x42\xc2\xd4\x8a\xcc\xbf\x70\x73\xae\xb8\x2b\x77\xbc\x97\x05\x33\x96\x8a\x88\xc8\xef\x04\x16\xfc\xa4\xbf\x4c\xbc\xe6\x1b\x4b\x63\xd8\x96\x3a\x53\xf3\x2f\xac\xad\xad\x14\x44\x47\xdf\xba\xff\x50\x25\x1d\xf5\xfd\x94\x72\x09\x21\x24\xe8\xe9\xa5\xee\x96\x0c\x1a\x2b\xd3\x82\x67\xad\x79\x7d\x34\x9c\x0d\x5e\xb7\x1d\x9a\xf9\x67\xdd\x27\xb4\xa8\xb9\xcb\xeb\x6a\x66\x10\xfc\x05\xb7\xf6\x27\x68\x5c\x22\xfc\xfc\xa3\x39\x2d\xc0\xc5\x9f\x10\xeb\x14\x5a\xf4\x6d\x5b\x09\x41\x47\xcf\x80\xa7\xe9\xe5\x0a\x82\xc6\xf0\x49\xe7\xd0\x53\x33\x08\x97\x4f\xc4\x4e\xba\xfa\x2d\x8d\x70\xf3\x6b\xd5\x2b\x29\xa1\x1c\xc2\xee\xfe\x2f\xfe\x73\xe5\x1e\x13\x1a\xee\xc7\x1b\x4e\x3f\xc3\x10\xb8\x33\x77\x06\xde\xd7\xd1\x20\x0c\x33\x4b\x1e\xf2\xa4\x2f\x27\xa8\x3f\x0f\xf9\x9d\x96\x9a\x4b\xe8\x7e\x7c\xb8\xbd\xad\xd8\x83\x10\xc5\xb9\x5d\x96\xf7\x37\x07\xe1\x73\x6c\xfc\x89\x56\xf3\x45\x04\xa9\x59\x9f\xee\x2b\x68\x81\x81\x9c\xc8\x46\x9e\xca\x96\x4c\xc2\x30\xad\x75\xd8\xdc\xbd\x8d\xb0\xf7\xe3\x81\x74\xfe\x6d\x39\x04\xf5\x1f\x53\x3b\xc6\x55\x5d\x20\x4c\x99\x63\xe5\x6a\xf0\x28\x9e\xd0\xf3\xd1\x2b\xfc\xd2\x9a\x2c\x82\xc9\x0d\x2f\xe7\xc3\x87\xd7\x11\xb2\xda\xbf\x2f\x71\x4e\x49\x67\x43\x93\x87\xd3\xef\x47\xdb\x13\x08\xf6\x8b\x4c\x34\x82\xb6\x67\x11\xde\x7b\x1a\xef\x5d\x2b\xe4\x4e\x58\xbe\xd1\x72\xee\xc9\xe3\x25\x84\x8e\x7c\xaf\x01\xdf\xa2\x5c\xc2\x2a\xf7\xf3\x1f\xbf\x2c\xaf\x26\x5c\x6b\x7c\x7b\x98\x33\x42\x91\x50\x1f\xa8\x5e\xe2\xfe\xf8\x3b\x83\x98\x29\x76\x73\xb8\x84\x4a\x08\xb3\xe2\x3f\x88\x77\x4f\x48\x22\x44\x75\x98\xa6\x57\x06\xa6\x12\xfc\xdd\x04\xaf\x6c\x59\xa3\x4b\x48\x2b\x3f\xa6\x54\x79\xd4\x8c\xd0\x3b\xe1\x66\xa1\xc6\xc9\x64\x42\xdc\x8b\x21\x27\xdf\xd9\xd7\x08\x99\x27\x14\x3a\x06\x5d\x16\x13\x96\xef\x2f\xd5\x70\x4e\x8f\x27\x8c\xef\x7f\xd7\x32\x79\xce\x33\x82\x49\xc3\xcc\xfd\xc7\x47\x4b\xef\xcd\x25\x19\x62\x7b\xb7\xb1\x61\xf5\xa9\xec\xac\xc8\x49\xc6\xac\xb1\xf2\x76\xc2\x55\xbd\xf3\x24\x47\x10\x8e\xf8\x21\xa6\xb7\x36\x8e\xb0\x69\xd1\x92\x54\x9f\xd5\xb7\xd8\x4a\xa7\x5d\xee\x7a\x4f\x6e\x0f\xc2\xec\x92\x9a\x0b\x13\x8e\xe5\x11\x9c\x53\x67\x2f\x3f\xfa\xe0\x21\x61\xca\x35\xf7\xdc\xed\xb9\xfb\x08\x12\x07\x8d\x33\x0d\xd0\x4f\xe0\x9b\xf0\xd3\x46\xbc\xfb\x07\xc1\xee\x8d\xda\x56\xd1\x77\xfd\x84\xe7\xb7\xa3\x0c\x02\xe6\x37\x13\x9c\x4e\x3b\x1c\xdb\x69\xf7\x84\x60\xc4\xbb\x61\x15\x9f\x5a\x2d\x41\xa0\xb0\xe1\x87\xb4\x68\x1e\x41\x40\xab\xda\x3f\x57\x73\x2a\xc1\xf6\x53\xd2\x37\xce\x99\xfb\x59\xd0\x18\x97\xfe\xe2\xf9\x8a\x69\x84\x57\xeb\x5b\xd6\x88\x0d\x55\x12\x3c\xdf\x06\xf2\xaf\xbc\x9c\x43\xf0\xce\xf8\x1e\x5b\xa5\x2b\x46\xb8\x74\x57\xf8\xf6\x82\x9d\x73\x08\xdd\x79\xef\x1c\xd7\x2e\x9a\x4e\x28\x8f\x3d\x7c\x98\x57\x6c\x02\xe1\x8b\x86\x09\xff\x06\xad\x69\x84\xc1\xf8\x80\x83\xb7\x3e\x17\x11\xe2\xf8\x5d\x1f\x17\x2d\x4c\x20\x68\x0e\xc6\xe8\x15\x6f\x2e\x66\xa1\x83\xb7\x40\xe8\x63\x5c\x2a\x0b\x8a\xf3\x29\x6e\xb8\xa5\x98\x30\xc2\xdc\x9c\x7d\xd9\x37\x9d\xe0\xdb\x65\x6e\xf3\x5a\xb1\x84\x70\xba\xb8\x3e\x20\x68\x49\x29\x61\xfa\xc6\x0e\xbf\xc7\x82\xa5\x84\x30\xed\x52\xe9\xac\x1d\x91\x2c\xf4\x3a\xf0\x33\x1b\x77\x95\x10\xc4\xe6\x3c\x58\xad\x11\x5e\xcb\x42\xb8\xf5\xba\xe1\x0e\x85\x52\x82\xef\xe0\xb8\x7b\x81\xa3\xcf\xea\x3b\x7a\x6f\x82\x73\x70\x30\x0b\x81\xc6\x22\x4e\xc3\x1f\xeb\x09\xaf\x3b\x52\xb6\xde\xb6\x2e\x22\x34\x3e\x99\x91\x78\xe7\x7c\x31\xc1\xa7\x4d\xfe\x9c\x94\x66\x11\x61\x45\xfd\x2e\x51\xde\xda\x17\x04\xde\x01\x8b\x17\x6e\xae\x45\x84\x01\x19\x1e\xe5\x97\x62\x65\x04\x6f\xbb\x12\xbd\x56\xc1\x32\x42\xc4\xd9\xea\x2d\xb2\x71\x65\x84\xd2\xd6\xd0\x43\xea\x61\x65\x04\xa5\xfd\xeb\x6f\x25\x2b\x16\x11\x94\x06\xbc\x3b\x17\xbe\x7c\x42\xf8\xd3\xb3\xe6\x57\xd8\xdc\x32\x02\xbf\xaa\xa6\x53\xae\x6e\x03\x0b\x27\x7a\x4f\x15\x4c\xec\xc8\x23\x28\xc8\x25\x7b\xfe\x7d\xd6\x5b\x2b\x7b\x1f\xe3\xe5\x65\x84\x67\x0f\xa5\x7a\x4e\x38\x3f\x26\x7c\x58\x70\x2a\x6c\x8e\x46\x25\x0b\xd7\xf7\xbf\x28\xde\x14\xec\x40\xd8\xcc\x7d\x36\x63\xe7\xaa\xc7\x04\x33\x9e\xc9\xf6\xcf\xb7\xb3\x08\x41\xef\x3e\xad\x7c\x2c\xd6\x4a\xf8\x39\x4d\xec\xaa\xff\x35\x71\x82\xf5\xa3\xa2\xdd\x0b\x5b\x42\x08\xb5\x2f\x9e\xaf\x31\x88\x2a\x23\xe8\x1e\x9c\xe3\x3e\x53\xbe\x81\x90\x65\x12\xfc\xe8\xb3\x59\x04\xe1\x55\xa2\x5d\xac\xc8\xa4\x6b\x04\xc1\x6b\x1c\x86\x43\x1b\x82\x08\x96\xa1\x3f\xa7\x4b\xfd\x5a\x4d\xb8\x6c\x67\x79\xe7\xc6\x8f\x65\x04\xa1\x97\x92\xc2\xf1\xd7\xdb\x99\x31\xcc\xe5\x6e\xc8\x3e\x76\x42\x80\xb0\xea\xfa\x8f\xb2\xfd\x92\x91\x2c\x28\x47\x8a\x2f\x95\x0f\x7e\xc0\x82\xfb\x97\x83\x2f\xde\x9d\x99\x4d\x08\x7c\xf0\xc8\xab\x89\x43\x85\x0d\x3d\xb7\x34\x92\xac\xf9\x17\x11\x2e\x66\x2b\x1c\x0c\xa8\xe4\x25\x9c\x75\xb7\xc9\xb1\xe9\x53\x22\xec\xff\x5a\x5f\x2f\xe6\xcf\x43\x98\x11\x74\x43\x68\xc5\xda\x6a\x82\x9f\xde\xab\xa8\xe0\xb9\x69\x85\x78\x57\xd2\x15\xe3\xb2\x54\x95\xfe\x2f\xdc\x50\xf3\x08\xb4\x5f\x7d\x8f\x81\xa1\x1b\x9f\xa5\xf2\xec\x44\x16\xec\x19\x87\xf6\x56\xd7\x38\x16\x84\x59\xbc\x1b\x9c\x6e\x14\x12\x14\x0f\x44\xd3\x41\xfb\xfb\x84\x7d\xcf\x46\x8a\xdf\xbf\xd6\x63\x83\x04\xdf\xf2\x65\x5b\x87\x5e\x31\x78\x3c\xab\xaa\x59\xb7\xe0\x2b\x83\x22\x71\x67\xc1\x08\xff\x70\xc2\xae\xb8\x2b\x5d\x1b\x1f\xd6\x10\x26\x6d\xb8\xb1\x6c\x7e\x7c\x29\x21\x95\x53\xb8\xa2\x22\xa2\x94\xb0\x7f\xa7\x8c\xff\x69\xa1\x35\x84\xfc\x86\x39\xa6\xbd\xb2\x36\x2c\x18\xf0\x78\x65\x2d\x96\x59\x4b\x50\x0a\xab\x3f\x58\xf3\x55\x9d\xc0\x9c\xcb\xe0\x56\xda\x9a\x40\xd8\x67\x7f\xbc\x5a\xe2\x51\x19\x83\x87\xfb\xb9\x5e\x89\x30\xa6\x04\xeb\x72\x9d\xca\x48\xe1\xa9\x04\xd9\xf2\xeb\x67\xf5\x1a\x8a\x08\x1b\x8b\x1d\x74\x46\x74\x1e\x10\x56\x09\xd6\x4c\x30\xf2\x70\x24\x9c\xf7\xcc\x50\x9d\x6b\x52\x4c\x10\x7c\x33\x4e\xd0\xc5\xe4\x08\xe1\x26\xdf\xcf\x7d\x6b\xe7\xbc\x63\xf0\x4b\xd8\xb8\xdf\x4b\x8c\x97\xf0\x2e\xc4\xea\x55\xc7\xb1\x15\x6c\x18\x52\x35\xd1\xcd\x33\x92\x23\x74\xe5\x18\x9d\xe8\x10\xab\x61\x21\xa6\x5b\xf7\xc5\x9d\x8f\x69\x84\x9a\x27\xb7\x82\x64\xa0\x48\x70\x9f\x7a\xd1\xc0\xd8\xfc\x25\x83\x41\xd9\xae\xc4\x29\x82\x53\x08\x8f\x3d\x23\x52\x05\xa6\x09\x13\x5c\x4b\x22\xf3\x6e\xf3\xd6\x17\xe2\x43\x4f\x51\x62\xf8\x25\x63\xfa\xbf\x10\xee\x32\x7f\x5b\xc0\x81\xb0\x42\x38\x0a\xb8\xf9\x3d\x95\x38\x4b\xb8\xa2\x16\x32\x8e\x5f\x40\x88\x30\x5b\xe4\x5d\xef\x11\x55\x86\x0d\x1e\x52\xcc\xe6\x29\x37\x3f\x31\x78\x28\xc2\x7b\xda\x77\xd7\x30\x83\x19\xfb\x13\x87\x36\xc9\xa8\x10\x66\x6d\x3c\x74\x6f\x79\xe0\x14\x36\x8c\x7f\xab\x60\x3a\x3f\xaf\xa1\x10\x0f\x1b\x67\xf4\x5a\xb4\x47\x12\x3e\x2f\x4f\xaf\xdc\x23\xa0\x44\xb8\xe2\x30\x6d\x7b\xae\xdc\x4c\xc2\xa6\x07\x2b\x2b\xd6\xed\xb4\x22\x14\xef\x4e\x78\xf1\x82\x6f\x3a\x61\xb2\x95\xc1\x84\xa0\xcd\x9a\x84\x9a\x23\xfa\xc2\x5c\x9b\xb4\x09\xdb\xfc\x2b\x02\x78\x1e\x1f\x60\xe1\xf5\xdd\xaf\xbc\x17\xf7\xd4\x10\x2a\xa5\x1e\xbf\x39\xf0\xf8\x15\x61\xf6\xfd\xe1\x9d\xaf\xad\x1b\x08\x27\x47\x84\xf6\x0d\x5a\xbd\x26\x34\x34\x7e\x9e\x3e\x45\xb4\x9c\x50\xa9\x27\x30\xf4\xab\xe2\x16\x21\x3a\x95\xa5\x35\xf7\x43\x3b\x0d\xad\x55\xdd\x91\x68\xf4\x83\x30\x69\xfd\x67\x1b\x89\x4f\xd9\x84\x49\x5c\xdb\x43\xf9\xe6\xbf\x25\x34\x2a\xae\x9a\x26\x3c\x8a\xc8\x84\x86\xf1\x15\x5a\x29\x04\x7b\xde\x5f\x7a\x17\x76\x7f\x67\xb0\x73\xc8\x76\x9d\xf6\x3e\x01\xc2\xa1\x29\x7a\xcb\x56\xbd\xb0\x23\x0c\x72\x3a\x1d\xef\xe5\xbe\x42\x98\x71\xe2\xc7\x13\x3b\xce\x73\x84\x37\xb7\x6f\x0c\xac\xf9\xe0\x48\x10\xbb\xf8\x6c\xdb\x07\x1e\x4f\x42\xff\x87\xe6\x3f\x8d\x78\xc4\x42\xcd\x06\xc6\xeb\x4e\xd4\x4a\x42\xfa\x64\x7e\xe7\xb2\x73\xcd\x04\x61\xba\xfe\x42\xa1\xb7\x98\x20\x22\x7d\xe8\xb9\x4b\x45\x23\x61\xa6\xb2\xd9\x95\x9b\x26\xab\x08\x6b\x02\xfd\xce\x69\x7c\xcc\x21\xf0\xbc\x29\x2b\x0c\x7b\x30\x97\x10\xa4\x9e\xd8\xd3\x99\x31\x99\xf0\xd6\xdd\x23\x7e\x64\x82\x1e\xc1\xe0\x6a\xcf\xc2\xc7\xc3\x73\xd9\xa0\x71\x37\x76\x5b\xc6\x4f\x21\x42\xd8\x23\x23\x3d\xf5\x88\xd5\x04\x6d\xe3\x47\x0b\x7f\xe7\x73\xb0\xe1\x54\xe0\xe2\xf5\x52\xef\x87\x18\xdc\x51\xe2\xcb\xbd\xce\x95\xc1\x40\xb3\x8b\x35\x6b\xfe\xa7\x05\x34\x86\xf3\xe5\xca\x3b\xfe\xee\x10\x09\xb7\x6c\xeb\x0c\x6f\xec\x66\xe1\xf0\x9a\x4b\xab\x1d\xbe\x96\x16\x0e\x75\x19\x3d\xb7\x91\x28\xa2\xff\x79\xc4\xc9\xa2\xca\xf0\x52\xc7\x2c\xc2\xcd\x5b\x2b\xf2\xfe\x16\x93\xcd\xcb\x3b\xa5\x26\x8a\x12\x82\x24\x79\xa5\x64\x3e\xb1\x08\x47\xf4\xab\x25\xc3\xd5\xf4\x08\xc2\xf5\x07\xa6\x29\xac\x17\x66\x43\xff\x90\xf1\xe1\xe7\x37\xdf\x30\x08\x5c\x6b\xbd\xe2\xb4\x4d\x3a\xc1\x6a\x65\x9c\xca\xb3\xf4\x27\x04\xbe\x59\x36\x36\x0f\xd3\xb4\x08\xd7\x4d\x54\x1a\xdf\xfb\xed\x21\xfc\x49\x9f\xfa\x72\x5f\x60\x34\xa1\xe1\xf5\xd1\xa5\x9f\x2e\x66\xb3\x95\xe1\x04\xff\x2b\x12\x0b\x0e\xb0\x81\xdf\xa3\xf2\xbc\xa2\x49\x29\x81\xdf\x3f\x68\x71\xb4\xbd\x11\x61\xa6\x5d\xe1\xe6\x86\x35\x9c\x6c\x78\x6b\xbd\x66\x7c\x49\x7d\x39\x83\xcb\xd1\x27\x27\x04\x70\xbd\x20\xe8\xf9\x4c\xdc\xeb\x30\xbd\x8a\xe0\x32\x92\xde\xf2\xc7\xb6\x84\x50\x9c\x3c\xb8\x37\x61\x38\x82\x05\xff\xf7\x3d\x6d\x07\x0a\x9e\x10\x1e\x5e\x38\xd1\xba\x67\x56\x0d\x21\xb8\x6c\x95\xde\x79\x33\x19\x82\x68\xd4\x7e\xe9\x01\xa5\xc7\xcc\x50\xbc\xf0\xc7\xf8\x36\x1e\x82\xb7\xa3\xbc\x87\xb6\x5c\x71\x21\xae\xcd\xb2\x3b\x36\xc4\xd2\x22\x70\x74\xee\xf4\xb8\xf3\x4c\x80\xa0\xa6\x58\x25\xb6\xc2\xe2\x20\x1b\x24\x54\xf5\x93\x9e\x7d\xe3\x25\xa4\x96\xcd\x8a\x1f\xec\xe3\x25\x1c\xfb\x2d\x9a\xa2\x28\x9e\x49\xb0\xc4\x1f\x05\xbd\x4b\x2d\x84\xcd\xea\x61\x33\x7e\x37\x3b\x11\xd6\x7d\x3c\xee\x50\xf1\x25\x80\x70\xfc\x1b\x8f\xb6\x7f\xd9\x6d\x82\xfb\x96\x29\x15\xfa\x25\xb7\x09\x1b\x9e\xb5\x7d\xca\xf3\xdf\x4b\x60\xad\x9b\x2d\xf9\xff\x40\x10\x5f\xd9\x8f\xbc\xbc\x1d\x84\xc5\x0e\xe7\x4e\xef\x09\x90\x26\xa8\xf7\xfb\x29\xfd\x99\xc3\x47\xb0\x9c\x73\xf7\xc0\x8a\x39\xb5\x2c\x78\xbc\x8d\x68\x0a\xdb\xc1\x22\x14\xde\x56\x8e\xd4\x09\x95\x24\xec\x3d\x7a\x7f\x56\xca\x95\x1c\x42\xa5\xa9\x94\xe1\xc3\xfc\x89\x84\xaf\x79\xde\xf6\xa5\xf3\x5a\x58\x18\x51\xdb\x2c\xea\x7f\xa1\x84\xd0\xed\xc2\x29\x72\x6d\xea\x0b\xc2\x94\x35\x47\x8c\xe6\xcf\x98\x44\xb0\x68\x5c\xe1\xe3\xa8\xfd\x9b\x01\xff\xcd\xf8\x4c\xbf\xc8\x71\x84\x23\x9a\x81\x3d\x96\xee\x22\xa3\xb7\xd0\xa1\x7b\x07\x6f\xa6\x11\xca\x8b\x83\x14\x3d\x3d\x75\x09\x5d\xd6\xbe\x4b\xad\x45\x0c\x08\x97\x26\xad\xf3\x1b\x77\x97\x21\x44\x08\x06\x06\x55\xf3\xbc\x62\xd0\x7e\x50\xdf\x42\xb2\x93\x8b\xc0\xf7\xf0\xad\x16\xbf\xc7\x66\x42\x4a\x2a\xbe\xad\x28\xad\x62\x81\x35\x47\x5a\x77\xb2\xa4\x3c\x61\x6b\xec\x7b\xc7\x26\xc9\x44\x42\x87\x9f\xd7\xaa\xa7\x36\xc5\x04\xd5\x35\x1a\xab\x3b\xe4\xca\x08\xab\xa2\xdd\x58\x1e\x8a\xa5\x84\xc7\xb3\xe2\xef\xdc\xd8\x99\x49\xb0\xe0\x33\x38\x7c\xc4\xb1\x9f\x41\xbb\xf4\x8f\x20\xa3\xc6\x74\x82\x50\x79\x48\x14\xdf\x36\x0d\xc2\x9c\xd7\x93\xfb\xec\x48\x87\x0d\xee\x1a\xbe\x03\x8e\xa7\xac\xd9\x30\xbc\x23\xbd\xa5\xac\x5d\x95\x20\x79\xee\xfa\x72\xab\x9c\xf9\x84\x9a\x3d\xef\xf8\x16\xef\x11\xa2\xa1\xc5\xeb\x83\x77\x2c\xc8\xf8\xef\x11\xf3\xcb\x78\x3d\x44\x16\xe5\xfc\x7f\x8c\xdc\x79\x34\x55\xe1\xfb\x37\xfe\xa2\x28\x09\x25\x43\x51\x2a\xa4\x08\x21\x63\xb5\x2f\x64\xa8\x48\xa6\x48\x99\x12\x49\x64\x8c\x92\xa1\x84\x4c\x51\x2a\x42\xc9\x98\x21\x65\x16\x19\xce\x31\x84\x32\xcf\xa1\x44\x32\x46\x65\xac\x8b\x0c\xbf\xa5\x67\xfd\x3e\xe7\x3c\xeb\xe9\xfb\x59\xdf\xbf\xf6\x6b\xbd\xdf\xf7\x5a\x7b\x9d\xb3\xce\xbe\xef\x6b\xff\x01\xa0\x44\x9d\xd1\xc3\x5d\x53\x9a\x80\xba\x4b\x9f\xae\xbb\xa7\x16\x01\x8e\x72\x89\xb7\xff\x1f\x6c\x57\x2b\x40\x51\x7e\x2a\x74\x48\x45\xae\x31\xbf\xcb\x05\xf8\x6d\xfb\xcf\xd7\x1f\xef\x9a\x52\xa1\xd7\x7f\x6b\x8c\xd8\xde\x20\x32\x25\x79\x7b\xe4\x27\xd3\xc4\x3d\xbd\x7f\x41\x55\xfc\x21\x03\x6d\xdf\x16\x40\x3f\x61\x51\x15\xcd\xa3\xe5\x80\x2c\x17\xbe\x9e\x7f\xb0\x58\x01\xd8\x98\xc5\xc4\xef\xde\xf6\x9e\x40\x99\x5c\x11\xc9\x07\xc7\x91\xc0\xaf\xa4\x55\x89\x5e\x5b\x57\x01\x05\x37\x33\x0f\x69\x25\x4c\x0f\x11\x78\x4b\xfa\xd7\x2e\x7f\x1f\x16\x40\xf5\xfb\xfd\x11\xb3\x95\x15\x80\x7d\x46\x59\xeb\x76\xa8\x97\x02\x1a\x3c\xe0\x08\xfd\xd0\x4c\x00\x32\xd6\x05\x3f\xd6\x09\x23\x03\xc6\x2a\xd4\xaa\x77\x15\x97\x01\x56\x9c\x2d\xa4\xf3\x13\x6f\x02\x4c\x38\x2d\xcb\xce\xac\xdd\x09\xe8\x51\x2d\x78\x37\xf7\x5e\x27\x60\x8b\xc9\x69\x4e\x66\xce\x51\x40\xd6\x77\xa2\x5f\xce\x57\x94\x03\x6e\xba\x74\xcf\xb7\xf5\x44\x19\x20\x1f\xd7\xee\xe4\xeb\x2d\x19\x80\x42\x86\x23\x12\x1f\xf6\xbd\x05\xf4\xe6\x8d\x7e\x40\x7b\x6c\x08\x50\x72\x49\xe3\xd2\xeb\xe7\xb5\x80\x0f\x7e\x18\x8e\x54\xae\x1f\x02\x1c\xb7\xbd\x3b\xf2\x47\x75\x08\x70\x51\x27\xa2\x24\x3f\x26\x0d\x30\xe8\x9d\xe7\xdb\xc7\x5e\xe5\x80\x6d\xfe\xba\x62\xac\x79\xad\x80\x91\xa1\xc7\xc7\x1d\xad\x2b\x00\x9d\x94\xb4\xdb\xcf\x3e\x2b\x00\xdc\x1e\xba\x34\xe1\x1f\xd3\x0c\xf8\x74\xee\xd7\x45\xc5\x95\x31\x20\x3b\xb2\x9b\xc5\x6c\x70\x8e\xc0\x74\xd1\xf9\x7e\xd3\x75\x42\x80\x8f\x7e\x27\xec\xfe\xed\xde\x41\x20\xbf\x43\x68\xac\xbb\xd7\x41\xc0\x3a\xdd\xbe\xdd\x5b\xd3\x69\xa9\xb0\x7c\x7a\x6b\x52\xd2\xe6\xe3\x80\xaf\x0b\x6d\x26\xfc\x72\x5a\x00\xaf\xe7\xdb\x14\x67\xab\x35\x00\x36\xbf\x0d\xca\xb8\x9a\x6f\x4a\xc6\xa4\xc1\x75\x76\x0b\x17\x56\xbe\x0d\x89\x90\x7c\xb5\x98\x66\x02\x09\xe3\xd5\x95\xc2\x1b\xde\x02\x8a\xb3\x9a\xcd\xb3\xe8\x09\x00\x8e\xdf\x10\xb0\xd9\xc1\x4d\x00\x0a\x2e\xfe\x6c\x90\xf3\x88\x01\xfc\x1a\xfd\x3b\x49\xe6\x05\x2f\xa0\x6f\x10\x69\xd7\x63\x97\x7c\xc0\xca\x7c\xd9\xeb\x72\x5a\x11\x64\x5c\xd2\xb8\xb6\x7e\xae\xd4\x1e\x30\x9f\xf6\xeb\x6a\x0f\xee\x5c\x40\xfc\x95\xf0\xe8\xb6\x47\x1e\xe0\xb6\xc6\xc8\x3d\x77\x2d\x72\x00\x8f\x64\xe4\x1c\xae\x7c\x10\x0a\x78\x46\xff\xc2\x35\xf7\x95\x35\x72\xaf\x9f\x4a\xb8\x05\x3d\x04\x34\xdb\xfa\xca\xef\xa3\xbc\x0f\x20\xf3\x42\x1e\x8b\xb5\xa8\x2f\xe0\x05\x5f\xae\x7d\x1d\x92\x67\x01\x33\xe9\x32\xf5\x63\xd8\x93\x00\x77\x5c\x88\x8e\x51\x4f\x8f\x04\x84\x8c\x81\xf8\xe8\x98\x33\xff\x82\xf6\xe1\xfd\x35\x32\xee\x7b\x00\x73\xd3\xc4\x7f\x9d\x88\x77\x05\x2c\xd0\x49\x4e\x6c\x6d\x7e\x4c\x46\x26\x67\xc6\x0d\x6c\xdc\x8f\xc8\xd8\x38\x18\x9f\xaa\x75\x99\x15\xd0\x28\xeb\xd4\x21\xfa\x66\x2b\xc0\xa7\x7b\x13\x6c\x96\x22\x7e\x13\xf8\xfd\xe1\xed\x97\xdd\xcb\x3a\x80\x36\xce\xfa\x87\xb9\x3a\x0c\x01\x0b\x65\x0a\x9d\x25\xfd\xce\x51\xe1\x8c\xee\xe6\x48\x6d\x5d\x79\xc0\x8a\x47\x06\x7f\x3e\x6e\x3e\x40\x85\x81\xd1\x9b\x4d\xf9\xa3\xfb\x01\x83\xb6\xdc\x5b\x58\x1d\x59\x48\xa6\x24\xff\x41\x9f\x4d\x43\x6c\x97\x6c\x13\x09\x03\xc8\xd6\x17\x57\xdb\x75\x13\x68\xf8\xc1\x55\x42\x76\x7d\x3d\x81\x0e\x19\xfe\x5b\xc1\xca\x1b\xfe\x81\x8c\xbd\x34\x1e\xc1\xc2\x52\xff\xc2\xc6\x86\x3c\xb5\xd3\x43\xe3\x04\x4e\x3c\xd8\xd8\xd5\xb8\x81\x03\x70\x97\x5e\x98\x1d\x1f\xf2\x02\x5a\xcc\x30\x6a\x4d\xf7\x1f\x84\x39\x81\x23\x9c\x07\x63\xb8\xfe\x9f\x2b\xb2\x48\x96\x56\xb5\xa9\x2e\x10\xff\x80\x41\x70\xa8\x53\x1c\xeb\x0c\x81\x74\x69\x67\x0b\x5c\x39\x8d\x01\xe3\xd6\x1d\x72\xa9\xde\xa0\x0c\xf8\x9e\x8d\x35\x6e\xca\xc2\x96\x0a\xb9\xb6\xaf\xcc\x5a\x18\x8c\x00\xbd\x7f\x3e\x7f\x8b\xc4\x1a\xc0\x99\x46\x91\x0f\xe5\x27\xc4\xfe\x85\xb9\xe9\x7e\x6e\x0f\xd6\x3e\x12\x0a\xd5\x84\x7a\xb6\x9d\xb3\x04\xdc\xcd\x72\xf8\xf2\x0f\x14\xfe\x17\x68\xab\x52\xb5\x85\x4e\xb2\x01\x9a\x97\xd4\xab\x7a\xbc\xbd\x0c\xb8\x40\xeb\x1a\xb6\x38\xcc\x0c\xe8\xbc\xbf\x3d\xdd\xa1\x92\x19\xd0\xc8\x5d\x2b\x79\x6a\xc7\x23\x2a\xb8\x6a\x9f\x63\xf9\x54\xf4\x92\x44\x81\x67\x95\x0d\xd3\xaf\x3a\x3f\xf8\x07\x6e\x5a\x35\x89\x56\x35\xee\x05\xdc\x2e\x77\x26\xf5\x6d\x05\x0f\x15\xd8\x58\x26\x39\xf4\xb9\x45\xff\x85\x18\xdb\xfb\xde\x2f\x56\x31\x01\x9a\x6e\xa7\xdb\xb0\x30\xad\x07\xe8\xfd\x79\x99\xfb\x78\xdd\x6f\x02\x59\x13\x4d\x33\xdb\xed\x67\x09\x34\xfc\x18\x99\xb4\xdb\x87\x07\xfe\x81\xe5\x01\xc7\x37\xcb\xa1\x48\xfc\x03\x6d\xc2\x0c\x82\xc1\xe4\x34\x02\xcb\x93\x1e\x9d\x64\x96\xe9\x20\xe1\x81\xed\xd7\x3d\xee\xad\xd7\x02\x0a\xfe\x73\x77\xe1\xa6\x9d\x39\x81\x09\xf5\x80\x8b\xa9\xfa\xec\x63\xf7\x5f\x03\x0e\x7c\xb8\x22\x58\x64\x56\x02\xd8\x74\x45\x59\x75\xd4\xb6\x0c\x30\x5e\x34\xcf\x70\xef\xb9\x1c\xc0\x7b\x99\x0f\x94\xf7\x8a\xf9\x00\x9e\xf7\xdb\xd4\xa6\x60\x79\x01\x70\xb5\x59\x63\xc3\x21\xd0\x02\xdc\xa9\xf2\x7c\x87\x88\x54\x17\x81\x3b\x8e\x6f\x49\xdb\x47\x7f\x1f\xfe\x01\xf7\x6c\xef\x61\x4e\xd2\x67\x02\x0f\x3e\x79\x1c\xf5\xae\xb2\x1a\xb0\xe6\x98\x6b\xcf\xdc\xee\x4a\x40\xb1\xa7\x9b\x9d\xc3\x4d\x0c\x01\x73\x8e\x28\xe3\xa1\xd0\x25\x02\x49\xf1\xec\xbd\xcb\x17\xbf\x11\x58\x39\xcc\xc6\x71\x68\xfe\x35\xe0\x5d\x5e\x0f\xcf\xfb\x71\x1b\x01\xc7\x0d\x2e\xc4\x58\x0f\xea\x00\x5e\x49\x13\x13\x9e\xa9\xa6\x03\xec\xfc\x36\x5a\xe8\xbf\x56\x17\x50\xe8\x64\x42\xe7\xea\x7e\x19\x40\x7f\x16\x59\x2d\xc6\xdd\xdb\x00\x19\x24\xdb\x8e\x9e\x3e\xf6\x96\x40\x72\xa9\xa6\x64\xe6\x9f\x05\x2a\xb0\x36\xbe\xbb\xf2\x9d\xd4\x44\xa2\xe0\x4e\x05\xcb\x5b\x19\x56\x25\xa0\x20\x39\x24\x37\xc8\x5a\xe6\x1d\x09\x37\xd6\xa7\x4f\xa5\xf7\xa9\x02\xae\xf1\x27\xa1\x61\x51\x09\x60\x45\x59\x58\xe7\x61\x6d\x31\xc0\xfe\xf1\x61\xe5\x46\xe3\x52\x40\x9a\xf8\x53\x2a\x3e\x71\x07\x01\xf5\xc9\xc7\x82\x36\xdd\xc8\x22\xb0\xc2\xb8\x95\xed\xd4\x9e\xa7\x80\x76\xab\x73\xc4\x36\x5d\xec\x07\x4c\x64\x22\x1f\x1f\xe4\x7e\x0f\xc8\xa1\xfa\x3c\x79\x5b\xcd\x45\x40\x3a\xa1\xe2\x70\xf3\x3d\xde\x80\x5e\x55\xea\x52\xd9\xa7\x3d\xa8\xb0\x3e\xc3\x64\x66\xc7\xe3\xfd\x80\x12\x2a\xad\x73\x9c\xe2\x65\x80\x03\x92\x4c\x61\xe7\x07\xf6\x03\xfe\x68\x87\xc0\x83\x97\x4b\x00\x2f\x8c\x3c\x62\xde\x74\xb1\x04\xb0\xa4\xec\x6a\xe4\xe5\xdf\xf9\x80\x2f\x94\xf4\x4a\xe8\x62\x02\x00\xd7\xed\x57\xef\xe9\x57\xde\x0c\xa8\xd8\x5d\xa7\xfa\x24\x87\x17\xb0\x9f\xc7\xd3\x85\x3f\x50\x0b\x70\xd7\xe3\xd2\x34\x03\xd3\x0e\x40\x6b\xb2\xee\x3d\xcb\x8a\x3e\x40\x9a\x18\xe5\xb2\xc7\xd5\x9f\x00\xdd\x67\xcb\xb7\x9e\x21\x3f\x03\x9c\x51\xc8\x9f\x9d\xf4\xbe\x07\x28\x92\xe6\x7d\x22\xfa\xe6\xfd\xff\x0a\x4f\xe7\xee\x26\x86\xe7\xbe\x80\x0d\xc3\xba\x07\x8f\x6d\xbd\x03\x48\x8c\xab\x32\x09\x44\xdc\x07\x5c\xeb\x59\x1c\xb7\x86\xfb\x16\x20\x13\xf9\xd2\x1f\xd7\x37\xf6\x80\xcf\xf7\xd3\xea\xca\xb7\xc6\x92\x31\xc4\xfb\xf5\x40\xdd\xd7\x70\xc0\x75\x23\x8d\x26\x9a\x57\x5f\x01\x7e\x93\x89\x5b\x10\xdc\x2e\x06\xf8\x7b\xbf\xe0\x50\xb2\xee\x3c\x81\xe1\xf9\x6a\x1b\xc2\x5a\x1b\x01\xa3\x9f\xd7\xc4\xa4\x8b\x15\x03\x4a\x3a\xee\xc3\xf5\x47\x92\x01\x87\x7d\x73\xb7\x6b\x24\x8d\x03\x9a\xab\x6e\x5d\xba\x25\x5b\x0a\xf8\x6b\xbe\xfc\x13\xa3\xd2\x35\xc0\xfb\xd1\xf5\x03\x57\xe8\x04\xa8\xe0\x30\xb1\x10\x4d\xce\x1f\x21\xa1\xd7\x9b\x3e\xb7\xe5\xd5\xb4\x80\x12\x57\xaf\xcb\xd6\x5e\x6f\x06\x6c\xd8\x7f\x61\xf7\x5f\xf8\x7b\x7d\x09\xd9\xe7\xdd\x0f\xb8\xc3\xe6\x2c\x93\x8f\x67\x0b\x55\xb5\xa3\xa7\xc0\xa4\x5e\xb8\x04\x70\x73\x72\xb0\x4a\xc3\x0a\x16\x89\x4d\x3a\xef\x56\xd0\x27\xfb\x20\xa7\x6a\x05\xef\xdf\xa5\xb0\x8e\xcb\xa7\x02\x86\x08\xdf\xc7\x8c\x44\x3e\xc0\x67\x92\x47\x7c\x67\x57\x6f\x01\xac\x62\x28\xac\xdb\x3b\x9b\x07\x38\xb6\xdb\xc9\xd5\xfa\x52\x2b\xe0\xae\x47\xc7\xd4\xfe\x22\x33\xe2\x95\x8b\x7a\x77\x33\xa0\x50\xd3\x40\xe1\xe0\x58\x05\x60\xd3\xd3\x64\xfe\x2b\x52\xc9\x80\xa4\xc4\xf5\xd9\xf2\x86\xbb\x00\x5f\xaf\xda\x78\x4b\x94\xcd\x02\x50\xb7\x40\xde\xbc\x24\x5c\x06\xb0\xab\x9f\x79\x52\x58\x79\x9a\xc0\xd7\xe7\x58\x1e\x2d\x56\xbe\x00\x0a\x5e\xf0\x0f\xde\x58\x5a\x81\x9b\x6c\x0c\xeb\xc4\x6d\xcb\x7f\xe1\xd3\xe6\xad\x6e\x3b\x5e\xca\x02\x96\xe7\x49\x8d\xe9\x9d\x2c\x07\x5c\x3c\xdc\x47\xee\x9c\xb7\x00\x8c\xfa\x30\xfa\x52\x43\xc1\x05\xf0\x56\xb3\x7d\xb5\xf6\x6d\x0d\x2a\xe8\x4e\xf4\xa4\x6a\x2e\x9c\xa2\x42\x9f\x3d\x31\xa6\x79\xda\x17\x70\x97\xae\x90\xc6\xdd\xef\x48\xa0\xa8\xe1\xb8\x82\x61\xbb\x39\x60\x82\x62\xb6\x5c\xcc\x8f\x13\x80\x02\x41\x5b\xdd\x34\xec\x15\x01\xe3\x8f\x7c\xb8\xf2\xc8\x84\x07\x70\x4c\xa4\xbd\x99\x93\x8e\x1d\x50\xd8\xa2\x90\xf3\xa7\x17\x07\x60\xcd\xea\xf6\x29\xe6\x2c\x6d\xc0\x86\x27\xce\xab\x34\xf6\x98\x53\x25\x98\x53\x7c\x87\x79\x24\x00\xf0\xc1\xfe\xf1\x9e\xa3\xfa\x81\x54\x89\xcd\xe2\x6d\x24\x5d\x0a\x03\x3c\xd6\x67\xce\x30\x38\xf1\x81\x84\x4f\x82\xae\xfb\x06\xf6\x91\x81\x02\x3e\xa7\xf8\x77\x41\x2b\x38\x18\xa0\xd3\x27\x67\xce\x0e\x18\xeb\xff\xbc\xea\xf0\x99\x4a\xc0\x93\xb7\x7f\x57\x4c\x2c\xaf\x05\x9c\x45\x88\xbc\xf6\xa3\x0c\x70\xf5\x37\xb7\x1f\x9e\x32\x55\x64\xbc\xb1\xe3\x2e\x8b\x4a\xc7\x6b\xaa\x8a\xc7\x85\x63\xfe\x8b\xed\x46\x40\x1b\xe1\xfd\x4e\x1b\xbd\xc2\x01\x23\xda\xcd\x8f\x5f\xbb\xe9\x0a\x78\x4e\x2f\x44\xc0\x46\xca\x09\x70\x7f\xaa\xde\x95\xf9\x4d\x56\x64\x14\xe0\x54\xc9\x5a\x73\xfb\x06\xcc\xf1\xbe\xae\x91\x1a\x1f\x24\x70\x36\x60\xd4\x4a\xed\xc4\x5e\xa0\xe0\x86\xf0\xd2\x4c\xfc\x34\x12\x14\x70\x3b\x3a\x36\xa4\xfe\x56\x00\x0a\x12\x44\xf9\xcf\xd8\x0c\xae\x05\x9c\xfa\xd6\x91\x18\x3e\xb2\x0d\x30\xf6\x6c\x3a\xfd\xd6\x0b\xc9\x80\x0f\x95\xbb\x49\xf9\x25\x65\x64\xfc\xb5\xc6\x88\xaf\x7c\xa6\x14\x50\xaf\x2d\xfe\x9c\xf5\xb6\xab\x80\x6e\x81\x42\x27\x38\xd7\x6a\x93\x91\x41\xa6\x7d\xc4\xdf\xef\x2a\xa0\xf1\x88\xe1\x81\xf1\x2d\xf1\x80\xc2\x9f\xd9\x1a\x3b\x86\xe3\x00\x1f\x5e\xd0\x32\x30\xfa\xc9\x41\x85\xe6\x71\xc5\xb1\x33\x5d\xb4\x80\x29\x79\x9c\x56\x0e\x07\xd8\x57\xa6\xb3\x1e\x97\xed\xe9\x0f\x01\x3f\x1b\xb8\x59\xb4\xd3\x6f\xa7\xc2\xc6\x81\xeb\xc2\x49\x71\x53\x04\x86\xb0\xd6\x44\x3c\xfc\xc1\x0e\xe8\xbe\x71\xed\x1e\x92\xd5\x21\x40\x35\x13\x31\x8e\x63\xdd\x34\x80\xe2\x71\x9e\x7a\x9e\xdb\xca\x00\xd7\x1e\xb6\x3f\x94\xf2\x29\x0f\xb0\xde\xc0\x0a\xfe\x26\xff\x01\xcf\x8d\x0d\x0c\xe7\xe4\x35\x01\x3f\x1f\x70\xfd\xb2\xbe\x85\x00\xfc\x60\xb2\xe9\x87\xd5\x43\xc7\x7f\xe1\x9b\xfc\x2d\x9e\xfb\x79\x1a\x80\x47\x0b\x25\x66\x8b\xb8\x18\x00\xed\x66\x57\x0d\xd5\xd9\x17\x02\xd2\xb2\xea\x29\xd6\xaf\xc0\xa9\x5b\xb0\xb6\xfc\x4d\x05\x81\x3f\x7c\xf4\x5c\xd9\x94\x0a\x49\x98\x55\x10\xb9\x87\x9c\x2a\x05\xff\x80\xce\x4f\xf6\x33\x31\x9b\x73\xa8\x00\x86\x9a\xaf\x27\x16\x5e\x91\xf1\x7b\xf2\x6a\x85\xff\xbb\x2a\x17\x53\x7e\xe3\x2e\x53\xf2\x5f\x31\x96\xfb\xa6\xef\xc2\x66\x1a\x2a\x84\x5d\xbf\x3d\xbf\xa7\x73\x8e\xa0\xa0\xbb\x75\x59\x79\x70\x40\x18\x28\x68\x1c\xe8\x25\x76\x15\x76\x90\xf0\x5a\xb2\x29\xf3\xfe\x6d\x49\x80\x5d\x7a\x5f\x86\xa7\x84\x5a\x09\xac\x1a\x9d\xf9\xa9\xbb\xae\x14\x28\xd8\x7b\xa4\x66\x7c\x2e\xe6\x27\x41\x41\x13\x9d\xed\x2e\xcd\xcd\xa5\x80\x3b\x06\x22\xf9\x35\x56\xf0\x55\xdf\xfa\x4f\xd9\xca\x97\x70\xf8\xdd\xda\xec\xe9\x08\x61\xc0\x6d\x53\x9f\x39\x8c\x88\x2e\x02\x2f\x1f\xbb\x30\xcf\x71\x69\x13\xe0\x9e\xfa\x85\x4b\x5f\xad\x45\x00\xc5\xbf\xee\x3e\xca\x9c\x1e\x0b\x78\xb9\xfc\xa0\xd9\x7e\xb5\x70\x40\xbe\xdb\x1b\x18\x04\x57\xc0\x52\x5d\x0e\xfa\x4f\x6f\x93\xb1\xd2\xd7\xeb\x80\x77\xb1\x13\x20\x63\x49\x7e\x60\x5b\xb9\x2b\xa0\xe5\xf6\x47\x6c\x19\xaf\xc9\x80\x49\x36\x31\x81\xea\x2a\xa5\x80\xbb\x86\x78\xa4\x58\x47\x5d\xc9\x58\x35\xe0\x34\x3f\xf3\xea\x0b\xa0\xfd\x9f\xf7\x05\x7f\xab\xdf\x4d\x1a\x13\x8b\xd9\x3c\x80\xfb\xe8\xff\x4c\xec\x9c\x67\x07\x6c\x66\xe7\xcf\xb1\xf2\x97\x02\x64\xc5\xa5\x7a\x9d\xd3\xc9\x80\x3b\x04\xbe\x1e\x8a\x5b\x79\x82\x93\x27\xc3\x66\x03\x67\xca\x81\x82\xff\x7c\x1c\xb3\xb4\xb3\x39\x93\x2f\xb7\x01\xba\x79\x9f\xf4\xae\x6a\x58\x0d\xe8\x50\xbe\x67\x9f\x55\xa7\x18\x15\xde\x6c\xe5\x6e\x22\x62\xd3\x08\xbc\xab\xf4\x50\x78\x44\x20\x17\xf0\xcc\x2d\xde\xc8\x97\x3a\xd9\x80\x74\x7d\xb3\x34\x06\xfa\x45\x80\x6a\x47\x3b\x2c\xb3\xf7\xb8\x01\x72\x36\x32\xa9\x39\x30\xc6\x02\x76\x04\x6c\x98\x3f\xbd\x66\x33\xe0\xc2\xea\xc6\x55\x9d\x1d\x45\x80\x1a\x8c\xef\x23\x9b\x75\x73\x00\x17\x6c\x4f\xda\x36\xbc\x23\xaf\xcc\xc5\x25\x57\xe2\x57\x70\xfa\x68\xce\xc8\xb5\x61\x26\xc0\xf8\x22\x0b\x15\xbf\x83\xdd\x80\xac\x5f\x46\x3c\xbe\xec\xcf\x03\x4c\x3a\xf5\x8e\xfc\xb0\xc1\x12\x70\x70\xf5\xd0\xf4\x36\x21\x49\xc0\xb8\xa2\xc3\xf4\xb9\xb2\x34\x80\x96\xee\x15\x23\x59\x0d\x2b\xcf\xa9\x63\x88\x61\x64\x7c\x29\x60\xb8\x36\xad\x48\xf6\x4a\xa2\x12\x15\xa9\xaf\xaf\xcf\x07\x58\xd5\xa1\x6d\xa1\x78\xa2\x05\xf0\x7d\x01\x6f\xf8\x85\xe7\x89\x80\xd7\xd8\xea\x73\x6a\xab\x72\x01\x27\x4a\x7d\x4b\x45\x26\xff\xfe\x05\xe4\xf8\xd0\xe6\x95\x71\x4c\x31\xf1\xf7\x97\xbf\x95\x49\x5b\xb3\xa0\xed\xca\xe1\xd0\x58\xcf\x26\x69\x7c\xc5\x10\xb0\x2e\x73\xfb\xae\x84\x88\x13\x80\xb9\x67\xb7\x98\x96\x56\x8f\x12\x28\x43\x2b\x89\x65\x3a\x85\x80\xd2\x07\x5b\xef\x59\x31\xbd\x01\x94\x1d\x73\xc9\x7c\x90\x54\x4f\xa6\x54\x86\xe7\x64\x0f\xdd\xad\x4f\xa4\xc2\xa9\xc4\xd6\x41\x46\x11\x4f\x40\xb7\xd2\x5a\xeb\xe9\x19\x37\xaa\x44\x3a\x9e\x5b\x58\xb8\x5b\x15\x70\x6d\x62\xcd\x5b\xf7\xfa\x27\x80\xa5\xde\xb3\x3a\x26\xaf\xcb\xa9\xf0\x8d\x85\x77\xbc\x48\xec\x02\xa0\x82\xc3\x05\x46\x6e\x4f\x2e\x40\xbe\xcc\xe8\x32\xe2\x78\x18\x15\xee\x9c\x0e\x3c\xf5\xf5\xe4\x01\x2a\xc8\x5c\x5d\xe2\x76\xdd\xa7\x06\xf8\xec\x67\x4b\xde\x9f\x23\x47\x01\x8f\xe6\xe8\x11\x41\x4f\x4e\x03\x32\x70\x1b\x78\x07\xb7\xce\x10\x58\xfa\xbd\x80\xa7\xd7\x8e\x13\x28\xb8\xa2\xca\x72\xeb\x80\x5f\x17\x81\x81\xad\xdc\xad\x02\xc2\x47\x80\x82\x4b\xa9\xb1\x8f\x1e\x1c\x9b\x27\x30\x88\xe9\x69\x93\x11\x8b\x16\x50\x50\x96\x50\xf3\xec\xeb\x5a\x15\x2a\x5c\x8c\x7f\xe6\x9b\x81\x2f\x08\x8c\xfa\x52\x92\x24\xec\xd3\x4b\xc2\x2e\xbd\xad\xe1\x5f\xd7\x69\xc0\x3f\x90\x35\x29\xe0\x25\xab\x9a\x4d\xe0\x0c\xe3\xed\x72\xc5\x29\x6e\x40\x09\x81\xee\x14\x7e\xaf\x69\x02\xf9\x9f\x5e\x6f\x9d\xf8\x75\x1b\x28\xa0\xfb\x50\x94\x76\xd9\xce\x19\x70\x7e\xff\xf2\x56\xd1\x13\xe3\x04\xf6\x17\x3c\x39\x77\xf7\xcb\x12\x15\xcc\xc7\x12\xbc\xec\x84\x27\x09\xdc\xd9\x3e\xe7\x7c\xfc\xf0\x11\xc0\xdb\x1e\xd6\xec\x63\xa7\x4e\x53\xa1\x8a\x33\xe4\x59\x32\x2f\x2b\xe0\x85\xa5\xf1\x9b\x86\x5f\x37\x02\x6e\xe8\x4d\x0b\xb9\x50\x53\x02\x28\x59\x70\xbb\x56\x9e\x99\x0c\xb8\xe5\x6e\x50\x8b\x77\x63\x12\x55\x72\x79\xab\x41\xfc\xbb\x99\x58\xc0\xc4\xd7\x8b\xed\xfa\x55\x89\x80\x6d\xc6\x8e\x56\x34\x74\x5a\x80\x05\x9a\x3d\x62\x1f\x1a\x2a\x09\xa4\x2d\x19\x1e\xd7\x0a\xce\x04\xbc\x1a\xcd\xe4\xc4\xe1\x99\x4a\xc2\xa4\x98\x7e\x43\x25\xaf\xeb\xf0\xdf\x90\x2a\xd3\x5a\xc0\x4b\xfb\x93\xa0\x80\x26\xd5\x8e\x38\x62\xa6\xbb\x72\xf6\x6a\x19\x1c\x1a\x31\xa2\xc2\x52\x22\x5f\x41\xe6\xd4\x07\x02\xbd\x95\x79\x1c\x3e\xe9\xad\x02\x6c\xd3\xbd\x66\x3e\x25\x23\x0d\x98\xcf\x57\x50\x33\xa5\xf4\x9b\xc0\x5d\x0a\x2f\xe9\x7c\x61\x94\x40\x5f\x3d\x43\x1a\x61\x5b\x1e\xc0\x2d\xf5\xca\x07\xfd\xad\x85\x00\x33\x04\xba\x0f\xdd\x9e\x17\xa4\x82\xa9\xee\xa5\x37\x83\x0c\xf6\x54\xd0\xfe\x24\x76\xae\x29\xe6\x38\xa0\x84\xc4\xf7\xf1\xbd\xeb\xdd\x01\x8d\x4d\xbc\x4e\xdf\x19\x5b\x26\xd0\x5a\x3b\x9b\xe1\xaa\x5c\x33\x60\xb0\x5d\xd4\xa5\xf5\x4d\x64\x40\xd1\xb6\x7a\xe9\x6a\x03\x17\x40\xfb\x1f\x64\xe9\xf4\x0c\x6d\xc0\xd7\xfa\x43\xfa\x84\x8d\x24\xe0\x56\x19\xcf\x8b\x19\xce\x3f\x09\xbc\x5c\x61\x90\xb8\xae\x69\x89\xc0\x35\x3e\x0b\xf7\x3f\x75\x6d\x00\x2c\x9b\xb3\xd8\xa4\xd1\xc6\x06\xd8\x52\x73\xeb\xcf\xd9\x97\x0a\x80\x2f\x38\x19\x1c\x67\x17\x4e\x00\xfe\x68\x68\x89\x66\x5d\x55\x04\x28\x31\x63\xd6\x1a\xe2\xd4\x42\x46\x83\x2c\x0f\x85\xbf\x09\x43\x64\x83\x80\xa0\xdd\x1d\x40\x9b\x89\xf2\xc6\xbb\xb6\x77\x00\xcd\x96\x03\x54\xf3\x9e\xef\x01\xec\xd6\xc2\x2f\x7c\x82\x47\x01\xef\xf7\x98\xad\x09\xdf\x7e\x14\x10\xbb\x77\x3b\x1d\xd7\x9c\x27\x30\xb8\x2d\x7c\x8f\x82\xf5\x30\x81\x1f\x9c\x1a\x64\x5e\x7d\x11\x03\x3c\xb2\xaa\x66\x63\xce\xd1\xa3\x80\x2f\xd6\xde\x08\x35\x5e\xea\x23\x50\xac\xf7\x43\x90\x46\xcd\x51\xc0\xe1\x59\x9f\x63\xe7\xe2\x97\x09\x2c\x09\x10\xa9\xf9\x26\x3a\x4f\xe0\x2d\xde\x5d\x0f\xad\xae\xf2\x01\xa2\x56\xe9\x82\x7a\x12\x2f\x60\x05\x77\x2c\xed\x4f\xe3\xb3\x80\xf3\x9f\x15\x17\xf6\x2a\x74\x12\xc8\xf8\x8b\x39\x5b\xf0\x73\x0f\x81\xbf\x19\xa3\x2e\xdd\x79\x2a\x07\xf8\xae\xeb\xfa\xb5\x69\x7a\x24\xd0\xa8\xa0\xf0\xc9\xc9\x01\x5e\x40\xd6\x7b\xcd\xdf\x5f\x5e\xff\x4d\xa0\xbe\x93\xfa\x86\xbb\x5d\xbb\x00\x77\x76\x8c\x04\xf5\xca\xb0\x02\xba\x67\x1d\x7f\x32\xf3\xc4\x86\x0a\x82\xef\xc2\x8f\x0b\x7e\x66\x01\x7c\x58\xfd\x21\xb6\xce\x5b\x12\xf0\x6b\xb1\xa9\x52\x4d\x73\x23\x81\xc6\xc6\xfa\xfa\x36\xdf\x0f\x01\x6a\x5a\xd4\x9d\xd2\xb5\xf6\xa7\x82\xfe\x83\x5f\xd7\xd7\x8f\xb2\x01\x5e\x4b\x67\x88\x7f\xb1\xde\x88\x8c\xf9\xbe\x16\xa3\xdb\x19\x06\x08\x0c\x49\x1e\x9c\xae\x62\x39\x0e\x48\xd8\x25\x19\x16\x57\xaf\xa1\x82\x47\x54\x54\x02\xbd\x9a\x18\xe0\xae\x88\x97\xe5\xa5\xe9\x6f\x00\x4b\x0f\xcc\x72\x04\xa9\xf3\x03\xea\xb8\x94\x94\xcd\x71\x36\x01\x06\xc1\x35\x78\xfc\xb6\x0d\xf0\xb7\xa1\xbd\xeb\xbe\xfe\x69\x02\xd9\x66\xff\xf0\x0d\x9b\x2a\x02\x05\xee\x4d\x3b\x2d\x3b\x4f\x86\x10\xd8\x72\x41\x79\xab\x8c\x6f\x3d\xe0\x3b\x1d\x96\x44\x87\xa5\x22\xc0\x87\x27\x52\x52\x6e\x96\x95\x03\xb6\xd5\x1c\x1c\xdc\x72\xf7\x30\xa0\xec\x25\xc5\x5b\x25\x39\x9f\x08\xd4\x75\xfb\xb9\x86\x53\x45\x19\x28\x88\x5d\x37\x6b\xc9\x7c\x62\x96\xc0\x73\xa6\xe3\x4a\x1e\x34\xca\x40\x81\xab\x6d\xdd\x0f\x8b\x90\x40\x40\x86\x69\xec\x31\xfb\x8b\xea\xaa\x5f\xb6\xdb\x62\x01\x25\x68\x1c\x32\xec\x56\xf0\x25\x9a\x41\xb4\x63\x6a\x86\xc0\xe4\x48\xf3\x29\xad\xa5\x05\x2a\xec\xb5\xd1\x0c\xda\xd8\xdc\x43\xc2\x96\xed\x82\x0b\x37\x7f\xac\x05\xac\xbf\x31\xaa\xf1\xd3\xee\x28\x60\x8c\xa7\xed\x7c\x91\xea\x6d\x2a\x94\x05\xb1\xd8\x1f\x24\xff\x26\x90\xfe\xa7\x57\x81\x94\x4a\x1f\x81\xd1\x89\xc3\x21\xb2\xd2\xd3\x04\xe6\xfb\x85\x31\xf8\x3c\x63\x02\xe4\x7a\x5c\x3c\xb0\xf4\x2c\x8b\x40\xda\xb5\x7c\x5f\xf5\x8e\x69\x02\x05\x8c\x27\x6e\x72\x67\x78\x96\x01\x8a\x96\xb3\x72\x2e\xef\xb1\x01\x34\xb8\xb6\x2f\x4f\xcd\x51\x12\xf0\xa2\xc1\x62\x67\x3b\xfd\x4d\x32\x9a\xc9\x4a\x95\x0c\xec\x35\x05\x7c\x6c\xef\x18\xa7\xfd\xc3\x0f\xd0\x80\xdf\xc2\xdb\x39\x5d\x13\xf0\xa1\xba\xd0\xf8\x16\x8e\x63\x80\xb4\x1c\x9b\x13\x02\x5f\xe6\x02\x9a\x4b\x82\x53\xa7\xf8\x0b\xc0\xbb\xf1\x32\xf7\x0e\x44\xc6\x00\xf6\x2d\x28\x35\xae\xdf\xdf\x45\x46\x91\xb7\x56\x71\x7f\x2b\x7d\x76\x97\xc9\xca\x9f\x0e\x80\xa9\x5a\x8c\x12\x06\x07\x1c\x00\x3d\xd5\xa3\xc5\x8b\xe5\x83\xc8\x94\x2a\x3b\x62\x32\xec\x57\x42\x21\x60\xf9\x40\x4c\x1f\xc9\xbe\x08\x50\xdf\xed\xe0\xc1\xaf\x95\xa9\x54\xc9\xf0\xe3\xa9\x26\x4e\xb3\xd7\x80\x65\x31\x1c\xce\xea\x0f\x7e\x11\x68\x42\xbb\x63\xf0\x8c\x1f\x1b\xe0\xc0\xcb\x9c\x2d\x52\x9d\x4a\x54\x90\x59\x0c\xce\x34\x27\x09\x00\x3a\xf3\x9a\x85\xb8\xdc\x9b\x25\xb0\xc4\xb6\xe8\xc4\xa1\x50\x7e\x40\x51\x1a\x6d\xe1\x97\x81\x64\x40\x9e\xd4\x40\x5e\xc3\x37\x24\xc0\xd2\x05\x86\xc8\x73\x2b\xf8\x4f\x45\xeb\xdd\x19\xe9\xeb\x95\x01\x98\xb4\x26\xe7\x93\xab\x93\x32\x20\xed\x1e\xaf\xb1\xb1\xe2\xdb\x64\x7c\xf6\xd9\xba\xed\x7f\x00\xcd\x99\x26\x8d\xa3\xbc\x7b\xc9\xc8\xce\xd6\xdf\x5f\xa6\xfa\x8a\x40\x48\xf3\xd7\x3e\x69\xad\x05\xff\x40\xc9\x45\xff\x37\x7a\xda\xbc\x54\xe8\xbd\x7e\xee\x97\x84\xde\x24\x81\x74\x26\x27\xbe\x3b\x26\x0e\x10\x28\x20\xd7\x5b\xf1\xf8\xa9\x05\x20\x4d\xeb\xfc\x7e\xfa\x95\x41\xfa\x69\x59\xd5\xf8\xbd\xb4\x22\xc0\x3d\xf2\x4b\xb5\xed\x83\x05\x80\xeb\x12\x1d\xee\xff\x4d\xd8\x0f\x5f\x0a\x3d\x9e\x75\x17\xf0\xc2\x4c\xaa\x93\xde\xd9\x60\xc0\x5a\x3a\x6f\x87\xdf\x7d\xc3\x04\x76\xfd\xd6\xf4\x8c\xb4\xda\x0d\x14\xa8\x1a\x7d\x77\xd4\x58\xd3\x45\xc2\x71\x6d\xf9\x0d\xf9\x1c\x9a\x80\x82\x85\x7d\xd3\x1e\x41\x48\x60\xcf\xf1\xf2\x1c\x57\x7e\x66\x40\xf5\xb2\x64\x2f\xe1\xc3\x93\x04\x86\x5d\x0b\x3d\xf3\xda\x47\x08\x30\x7f\x51\x29\x72\xa3\xd5\x47\x02\xb9\xc9\x91\xdb\xf6\x7e\x52\x83\xff\x86\xf4\xd5\x3c\x5f\x57\xf1\xed\xfb\xdf\x21\xd6\xac\xcb\x01\xef\x09\x02\x1e\x6e\x3d\xf0\xa3\x57\x6a\x17\x60\x94\xf6\x4d\x61\xf5\x78\x45\x40\x57\x99\x97\xb9\xf6\xe6\xb1\x80\xd2\x11\x0b\x95\x51\xc7\xf5\x00\x13\x4e\xa8\x4f\xb7\xdd\xe7\x05\x94\xbe\xf1\x79\xca\x33\x7c\x35\xa0\x59\x46\xe9\xd6\xd3\x63\xc9\x64\xbc\xbf\x71\xe1\x3c\xd3\x9d\x24\x40\x96\x72\xa6\x3d\xca\x59\x49\x80\xa3\x6c\xce\x32\xda\x27\x58\x01\x59\x63\x03\x8a\x72\x3a\x1b\x49\xd8\x1f\xce\x10\xbf\xb8\x56\x0c\xfe\x1b\x02\x19\x54\x69\x03\x77\xef\xf8\xdf\x41\x6d\xaf\xdc\x95\x55\xc6\x7d\x24\xbc\x26\xb0\xf0\x48\x79\xf9\x30\xcc\x29\x47\xf0\xb3\x7d\x7f\xf8\x9f\x2b\x1e\x7f\x60\xff\xe2\xce\xec\x28\x41\x81\xa4\x75\x9c\xa1\xca\xf5\x2d\xf0\x0f\x38\x58\x9f\x3a\x11\xe1\x36\x42\xa0\x11\xd3\x15\x45\x47\x52\x22\x20\xf7\xf4\x37\x23\x67\xb1\x42\xc0\x44\x9f\xaf\x93\x67\x5a\x73\x01\x95\x6f\xab\x5d\x6f\xfc\x90\x02\x38\x7d\x9e\xf9\x97\xde\x4a\x12\x99\x38\xea\x77\x6d\x65\xcd\xd0\xec\x51\x01\xb6\x86\x73\x80\xa7\x07\x86\x4e\x2b\xcf\xe5\x00\xda\x3d\x3c\xb6\x55\x9d\xc5\x1d\x30\xbc\x73\x35\x31\x6c\x59\x0e\x28\xf0\x7d\xc4\x2d\xe0\x53\x19\x20\x5e\xb1\x34\x99\xed\x2c\x03\x9c\x0a\xd0\x2e\x62\xe2\x66\x07\x6c\x6a\x34\xe6\xe0\xdb\xfe\x99\x84\x1c\xa7\xd5\xfa\x26\x6c\xce\x03\xca\xdf\x9f\x8d\x98\xfc\x37\x92\xca\xbd\x6c\xbe\x5d\xaf\x26\x28\xd8\xc6\xee\x20\xb9\xf7\x52\x0e\x50\xd0\x7f\x99\xe3\xbb\x82\x2d\x75\xf2\x9c\x93\xcd\x81\x5f\xcd\xf0\xbf\xe2\xc0\xbb\x6f\x9c\xaa\xb9\x9c\x80\x29\x0b\xc3\x9a\xeb\x76\x71\x00\x96\x9f\xe0\x96\xa4\xe1\xa9\x00\xac\x88\x35\xc8\x57\xd0\xfe\x40\x46\xcc\x97\x51\x94\x9f\x28\x06\x7c\xb3\x9c\x68\x2c\x21\x53\x0e\xa8\x23\x9a\x13\x92\xe6\x1b\x0f\xd8\x9d\x4a\xea\x2b\x5a\x81\x73\xcd\xbe\x4a\x89\x89\x73\x80\x39\x42\xf2\x92\xb7\xc3\x64\xa9\x12\xbb\x5e\xd1\xa3\x1c\x71\xfb\xa9\x90\x12\x22\xb9\x6a\xeb\x93\x48\x2a\xdc\x1d\x35\xb4\xf9\x13\xd4\x4b\x42\x1d\xb3\x77\xd5\xf3\x07\x47\xc8\xf8\xc8\x4e\xf6\x20\x17\x53\x19\x19\x43\x74\x22\xb6\x58\x64\xca\x00\xd2\xea\x5a\x18\x75\xf4\xf6\x92\x50\xc8\x25\xdd\x8c\x6c\x7d\x1e\xfe\x81\xcb\x02\x72\x5d\x9c\xcc\x95\x24\x0a\x24\x9e\x69\xdc\xdf\x7d\xc8\x05\x28\x38\xca\x6b\x2e\x2f\x18\x1a\x4d\x85\x23\x1f\xc9\x59\x6c\xc1\x97\xa8\x10\x9a\x62\x9f\x71\x48\xe8\x0a\xe0\xea\xf9\x8e\x93\xaa\x8f\x2d\x01\x3f\x5d\x29\xb8\x58\x93\xfc\x87\xc0\xa7\x43\x69\xda\x47\x03\x78\x00\x65\xce\x5a\x67\x76\xdf\x63\x00\x3c\x38\x6d\xba\x46\xa0\x70\x1b\x15\x48\x4f\xad\x74\x33\x17\xca\x08\xf4\x31\x49\x75\xde\x99\x9b\xb7\xf2\x6a\xfd\xeb\xe5\xe0\x48\x3b\x60\x4a\x44\x77\x57\xd4\xaf\x76\xc0\x83\xaf\x1a\xb3\x2f\x55\x15\x02\x16\x77\xf5\xfc\x32\x35\x6a\x05\x7c\x61\xcc\x70\x94\xe8\x2e\x05\xac\xfc\x28\xd8\x9c\xa7\x58\x48\x46\xc6\xfd\x6a\xa6\xc6\xe3\x1f\xc8\xc8\x73\xfd\x77\xd6\x08\xa9\x0c\x30\xf3\xcc\xc2\x63\xd3\xec\x54\x32\x4e\xe4\xb7\xd3\xd2\xc9\xdc\x06\x74\x0c\x0b\x19\xce\xd7\xf5\xa0\xc2\xc8\x81\x58\x8d\x04\x25\x7b\xc0\x14\x19\x67\xa1\xfd\xeb\x6f\x03\x72\x0d\xed\xd4\x12\x3d\xeb\x0d\x58\xef\x93\x70\x65\x7b\x6f\x00\x20\x7f\xc2\xd3\x6b\x55\x37\xb2\x01\x1b\x46\x62\xdc\x45\x57\x86\xe6\x26\xac\x1e\x71\xb5\xe3\x07\x0a\x1c\x4f\x3e\x5a\xe8\xbb\x5c\x43\xc2\x27\xf7\x0f\x6c\xf3\xdd\x76\x08\x90\x3d\x77\xd8\xb3\x6d\xbc\x99\x40\x93\xa5\x93\x3e\x5f\x46\xdf\x90\x90\x74\x2a\xf8\xc6\x4f\x9b\xdd\x40\xc1\xd5\x1d\x05\x1f\x9b\xa3\x6a\x09\x74\x66\x9b\x69\x15\x60\x3a\x0a\xb8\xb8\x37\x93\x29\x30\xa0\x09\x90\x66\x3e\xe2\xdd\x42\x63\x3e\xa0\x27\xdd\x9a\x42\x94\x3b\x0c\x78\xcb\x63\xd1\xf9\x64\x4a\x0d\xe0\x09\xc6\xbd\x89\x7f\x91\xf5\x82\x73\xa0\xa5\x37\x1b\xd0\xfe\x7b\x9e\x82\xc2\x80\x1b\x19\x75\xd8\xdf\x17\x15\xd7\x7c\x24\xf0\x19\x93\x65\x43\x9a\xb7\x03\xa0\xb7\x4c\x80\xa4\x14\xff\x16\x2a\x3c\xc8\xed\xa9\xcd\x8d\xed\x23\x28\x28\x3e\x26\x1d\xaa\x1b\x55\x0a\x68\xdc\x63\xe5\xe8\x17\xf1\x1a\x30\x7d\xb8\x37\xbb\x9f\x36\x06\xf0\x70\xc0\xf2\xbc\x00\xe7\x51\xc0\x24\xc6\x77\xbb\x4b\x4f\xd0\x02\xce\x74\x33\x0b\x7c\x94\xa2\x07\x7c\x5b\x2c\x73\xd1\xd1\x95\x99\x0a\x91\x6e\x17\xad\x2a\x7b\xf3\x09\xbc\xf9\xe6\xe8\x85\xba\xbb\x67\x01\x4f\x75\xd4\xf5\x3b\xbc\xcc\x23\xe3\xc7\xc4\x70\xaf\x2c\xc9\x3c\xc0\xe1\x47\x8f\x3f\x7d\xbc\x57\x0c\xc8\x6f\xc8\xfb\x6b\x97\x63\x23\x60\x54\xf8\xb0\x67\x81\xc9\x13\x40\x51\x19\xd1\xc2\x5b\x01\xf5\x80\x97\x79\xb4\xad\x1e\xcb\x94\x01\x9e\x17\xff\xa9\x68\xb9\x02\xa6\x65\xc3\x82\xc2\x5b\xbe\x80\x3d\xec\x51\x65\x67\xde\xf8\x01\x16\xac\xbb\xc3\x53\xc7\x96\x0f\xd8\xca\xff\x92\xc9\x71\xa8\x89\xc0\xee\xf6\x7d\x7a\x67\x9a\x4b\x01\x19\x38\x76\xc8\x79\x68\x5b\x00\xde\x7a\xbc\x44\x2a\xe0\x5c\x03\xf8\xd3\xed\xa1\xe9\x21\x91\x32\xc0\xa0\x0e\xc1\x35\x62\x35\xb9\x80\x8d\x96\xa1\x27\x3d\xca\xcd\x01\xd3\x1b\x76\x5f\x56\xf9\xc0\x08\xf8\x51\xdc\xaf\x49\xb3\x72\xe5\x75\xe5\xd7\x52\x90\x58\x74\x39\x60\xcc\xcc\x0d\x63\xdd\xc3\xa1\x80\xb6\x57\x7b\xe4\xe5\x3c\x5b\x01\x8d\x03\x9e\x67\x89\x55\x35\x01\x72\x34\xdd\xe5\x4d\x78\x32\x47\x60\xee\xbd\xe0\xdb\x99\x96\xbb\x01\x95\x54\x5e\xb5\x0e\x0b\x56\x00\xaa\x7e\x65\xac\xd7\xcc\xf9\x42\xe0\x37\x4b\x7b\xb9\xdf\xe7\xf9\x01\xad\xe5\x1e\xb6\xe5\x2d\x4c\x13\xc8\x6c\x64\x32\xf1\xa9\x6d\x27\x60\x81\x5c\xd6\x81\x72\x5b\x79\x40\xe9\x5b\x4f\x6d\xc3\xa5\x25\x01\xe9\x97\x69\x85\x4d\xc5\x14\x01\x37\xf5\x95\xcf\x67\x78\x94\x02\xae\x5f\x08\x2e\xcc\xbd\xfe\x0e\x50\xfe\x35\x8d\x7c\xe6\x4a\xf2\x1f\x64\x06\x48\x73\xd0\xdb\xde\x07\xb4\xbe\x24\xd9\xdd\xb6\x43\x0c\xb0\xe1\xed\x96\xf5\x83\x45\x7f\x08\x0c\xcf\xde\xd4\xf2\x7c\x1d\x37\xa0\xe2\xe5\xdd\xc6\x8b\xc5\xad\x64\x24\x67\x2e\x8f\xcd\x27\x95\x01\x46\x6b\x9f\x74\xe3\xcd\x2c\x03\x54\xe1\x3b\x9c\x17\xff\x79\x9a\xc0\x9f\x05\xd1\xb4\xf6\x3f\xad\xc8\x78\x47\x2d\xff\x53\xc1\x45\x05\xc0\x33\x91\xc2\x1d\x99\xfb\xe8\x01\x8f\x87\x94\xed\x67\x54\x96\x03\x94\x18\x6e\x8f\xee\x0e\x2b\x05\x2c\xe5\x53\x59\x48\x75\xdd\x09\xc8\x76\x67\x6e\x15\x7d\x39\x01\x78\xe3\xf5\xfb\x1d\xb5\xfa\x4c\x80\x72\x82\x71\xf4\xef\x38\xdb\x09\x9c\xab\x4e\x0d\x3c\x22\x22\x01\x28\x73\x38\x61\xdd\x49\x8d\x0a\xc0\x85\xfc\x75\x99\x06\x97\x13\x00\xdf\x45\x3f\xda\x53\xec\xf5\x10\x10\x1a\x07\xdf\x17\x65\xf8\x52\x81\xf5\x69\x21\x9f\xe7\x9c\x11\xe0\xb2\x57\xe8\x92\xef\x68\x19\xa0\x4d\xf3\xd0\x49\x4f\x9f\x4c\x40\xde\xa9\x01\x6b\x23\xe6\xb7\x64\x34\x53\x56\xfc\x46\x7b\x9a\x0d\xb0\x6a\xff\xbd\xa4\xfd\x3a\x85\x80\xbd\x97\x5f\xd7\x7b\x5a\xc5\x93\xf1\x91\x54\x74\x11\xd7\x42\x1e\xe0\x9c\x47\x76\xcb\x5f\x14\xf3\xbd\x08\x15\x6d\xc9\x06\x24\x7c\x8e\x75\xbe\x76\x1f\x20\x50\xbd\xda\x42\xc4\x55\x6b\x2d\xfc\x03\x15\xcf\x2a\xc6\x98\x72\x57\x51\xc1\x55\x25\xd8\xc9\x6c\x67\x01\x19\xab\x5b\x68\xcd\xeb\x83\xaa\x00\xe3\xf5\x67\x5f\x73\x6e\x88\x03\x8c\xb0\x42\x09\xfd\x2f\x45\x80\x63\x25\x46\xfb\x5b\x3f\x97\x03\x6e\x25\xc1\x05\xde\xa1\x12\x40\x45\xfd\x27\xb7\x83\x0d\xa4\x00\x3f\x5e\x0e\xd0\x10\x08\x3f\x04\xf8\x2b\x67\x7e\xc3\xd9\x8c\x00\xc0\xf4\x77\xda\xca\x9e\xa2\xac\x80\xa9\x2a\x51\x36\x7f\x44\x9b\x01\x17\xf4\x82\x7a\xf2\xe6\x9a\x01\x95\x4f\x33\x15\x7b\xe9\xd5\x01\x3e\x66\x76\xa9\xfa\x9b\x90\x69\x3f\x3f\x7d\xd9\xe4\x06\xf8\x2a\x77\xe7\xd5\xef\x5a\x74\x80\x5f\x5e\x05\x4e\xec\x64\xdb\x41\x05\xe1\x38\x01\x7f\xf1\xf0\x24\x40\xfb\x99\x4f\x9a\x9f\x57\x89\x02\xae\xde\xfc\xb5\x46\x82\x33\x07\xb0\x61\x1a\x6e\xd4\x37\x99\x01\xd2\x5e\xa6\x73\x8d\x1d\xc8\x22\xa1\xe4\xe5\x23\xba\x35\xab\x4b\x01\xa3\xf2\x24\x44\x18\x56\x67\x03\xc6\x98\xdf\xf7\xc3\xa3\x7b\x01\x0b\x5f\x70\x25\xd1\x27\xad\xa7\x42\x15\xdd\x45\x66\x97\x92\x1d\x80\xbc\x82\x07\xc4\x6f\x56\x19\x01\x9e\xaa\xa9\x2a\x66\xdb\xc3\x09\x58\xe0\x44\xe3\x78\x29\xbe\x0c\x50\xe3\x33\x87\xdf\xa2\x4c\x2e\x19\x6f\x39\x6d\x95\x35\x59\x28\x05\xdc\x5e\xc4\x11\xf0\xb7\xda\xe0\x70\xab\xe9\xb9\xdb\x6e\x40\x36\xba\x9f\x74\xc6\xe9\xbd\x04\x76\x1c\x9c\xfe\xb6\xa7\x86\x1d\x28\x50\xfc\xb0\xef\xdb\xf2\x61\x33\x32\x2a\x96\x78\xef\xc1\x86\x52\xc0\x3d\x1e\x5f\x4e\xb9\x72\x6a\x01\xfe\xae\xe6\x11\xfa\xe4\x5c\x0c\x28\x2c\x3b\xbb\xf0\x71\x05\x65\x7a\x27\x0c\x3e\xfd\x5f\xb8\x3b\x78\xd5\xef\x2f\xf2\xac\xc6\x05\xb7\xee\xd0\xfb\xdf\xe1\x3f\x67\x37\xd1\xed\xfc\x31\x9f\x63\x9e\xc0\xd6\xa7\x4a\x76\x6d\x3c\x07\x00\x7d\xb4\x3e\x77\x57\x9f\xac\x00\xfc\x79\x86\xdd\x58\xe5\x43\x19\x60\xee\xa7\xd6\x7d\x3f\xac\x5e\x02\x32\x87\xc7\xdb\xe9\x1c\x7a\x09\xd8\xb6\x79\x93\x48\x5f\x5f\x32\xa0\x9a\x5f\x58\x45\xe4\xe3\x97\x80\x82\xf6\x2f\xcd\x6b\x4c\xd8\x01\xf9\x69\xcc\x59\xf5\x5d\xcb\x00\x4b\x0b\x35\x16\xf4\xfe\x8d\xc1\x71\x46\x86\x42\x86\xad\x80\xbf\x8e\xb8\xbc\x7e\xf9\x20\x12\xf0\x9a\x3f\x7d\x5f\x4d\xc8\x34\x81\x16\xeb\x7a\xfb\xfa\x95\x48\x80\x7d\x92\x8e\x82\xc3\x87\x33\x00\x35\x8e\x14\x1d\xae\xdc\xc2\x49\x85\x43\x97\xfa\xae\xf5\x5c\x66\x01\x7c\x73\xd2\xfd\xbd\x53\xce\x2c\x81\x49\x33\x3b\x48\x6d\xef\x44\x01\x37\x7d\x93\x1b\x71\x31\x13\xa0\xc2\x25\x03\xbd\xb4\xb3\x0a\x0d\x04\x56\x74\x8a\xbc\xbc\x7f\x92\x03\x50\x96\x4b\x5d\x26\x63\x1a\x09\x14\x4c\xe3\x64\xab\xb6\x3f\x0e\x14\xcc\x74\x33\xd4\xaf\x4d\x3a\x0c\x18\x2c\x2c\xe5\x7d\xe5\x0c\x12\x98\x75\x5a\x8a\x26\x6f\x68\x98\xc0\xf3\x5f\xbb\xdc\xb3\xa5\x36\x02\xde\x13\xf5\x88\xde\x77\xbb\x95\x40\x72\xf8\xf1\xee\x91\x2d\xe2\x80\x32\xf9\x41\x3e\xce\x4b\x6f\x00\xcd\x6a\xdb\xc7\x2e\x6a\xdd\x02\x3c\xa0\x17\xca\x7c\x23\xd9\x15\x50\xa0\xa3\x70\xf8\xd0\x14\x0d\x60\xb1\xce\x7c\x15\xcd\x43\x45\x40\x4d\x63\xe5\xd9\xc1\xa6\x2f\x04\x3e\x49\x4b\x4c\x3d\x6d\xc7\x05\xc8\xf8\x4e\x65\x27\x47\xe0\xca\x8b\xf4\x1d\x9e\x7b\x39\x53\x57\x01\x8b\x4e\x92\xa3\x23\x34\xcd\xa8\xb0\xa8\xf8\xa2\xa7\x67\xe1\x31\x15\xd4\x33\x73\xda\x67\xac\x86\x08\xbc\xba\x59\x55\x54\x79\xab\x1a\xe0\x84\x98\xd6\xab\x9f\xea\x23\xc4\x1c\x16\x28\xce\xbe\xdc\x05\xff\xff\x15\x2d\xa6\x5d\x9b\xbe\x3c\x53\xa4\x82\x4a\xdc\xda\x96\x1f\xbb\xbb\x49\x68\xf1\x61\x77\xfd\xa5\x74\x39\xc0\xd7\xd6\xb1\x74\x77\x5e\x4d\x10\x38\x92\xd6\x2a\x6e\xa0\xba\x09\x28\xe0\x08\xf0\x54\x92\x51\xde\x0f\x38\xd7\xa9\xe9\xe1\x58\xff\x87\x40\x41\xb6\xb4\x4f\x1d\x6b\x23\xc9\xe8\xea\x7f\x22\xf7\xa7\x50\x26\xe0\x06\x27\xd7\x63\x0a\x22\x99\x80\xb7\x79\x75\x47\x4e\xb9\x4e\x11\x18\xfd\xfe\xaa\x6d\x41\xa9\x17\x50\x30\x4e\x13\xf7\x87\x3d\xea\x2a\x20\xc7\x2f\xcd\x9d\xe9\x3d\xb9\x80\xb6\x9c\x05\x9c\x46\x73\x9f\x08\xb4\xc9\xa9\x69\x5f\x97\xcb\x0b\x14\x3c\x2d\x72\x8e\xb9\xcb\x7a\x07\x50\xaf\x24\xe6\x6d\x4d\x3a\x2f\xa0\x5b\x72\x81\x04\xfa\x16\x12\xd8\x54\xde\x54\xcc\x5b\xa7\x08\xf8\xfc\xd7\x3a\xbc\xb3\x51\x88\x0a\xcc\xbb\x5b\x56\x31\x59\xb5\x91\xf0\x97\xf8\xe9\xfb\xad\x4b\x42\x80\xee\xfc\x46\x7a\x25\x56\xc2\x54\xe8\xf3\xdd\x40\x73\x3f\x96\x06\xf0\x64\xab\x70\x63\x20\x4b\x0e\xe0\x43\xdb\x81\xf6\x9d\x13\x3c\x80\x6b\x24\x61\xb0\x42\x81\x1b\xb0\x87\xd6\xf9\xf6\x81\xdc\xb5\x80\x27\x9c\xbe\xf9\xc8\x4d\x6e\x02\xd4\xb0\x90\x6c\x51\xcb\x62\x07\xcc\xe4\xdc\xe6\xd3\x34\x59\x08\xb8\x65\xa3\xcf\x71\xc9\x46\x63\xc0\x46\x41\xb5\x5b\x89\xdc\xb9\x80\x4b\xe9\xab\xd5\x76\x0c\xbd\x04\x5c\xba\xc5\xe5\x5f\xd2\x9f\x0f\x58\x9b\xe0\xff\x30\xef\xe0\x28\x81\x3b\x66\x6d\xf8\xb5\x86\x5a\xc8\x68\xfb\xe5\xd8\x9e\x87\x02\xec\x80\xb2\x1c\x25\x15\x2f\x45\xda\xc8\x68\x74\xa4\x81\xa5\xbd\xb1\x01\xd0\x40\xfd\xfd\xad\xb8\x1d\xdd\x80\x2f\xf5\x9e\xe9\x0e\x4a\x7f\x04\xb4\xbd\x35\x95\x78\xd3\xf1\x2b\xa0\x7b\x51\x7d\xf0\xa7\xdb\xa5\x80\x8b\xee\x7f\xea\x53\x3d\x0c\x00\x4f\xbb\xed\x48\xff\xe2\xf7\x95\x40\x9d\xc6\x6c\x1f\xce\x1f\x1a\x80\x9b\xec\x9e\x5b\xba\xae\x76\xa3\x82\xb0\x75\xa7\x82\x7c\x00\x00\x06\xbe\xe2\x1f\xb0\xf2\xdb\x0c\x78\xf6\x55\x58\x9b\xf6\xb1\xb7\x04\xca\x8d\x7e\x0f\xb7\xe5\xd9\x04\x14\x4c\x5d\x86\x28\x0b\x6d\x09\xc0\xd4\x3c\x65\x5e\xe1\x1b\xc2\x80\x57\xd3\x9d\xa6\xaf\x7c\x7c\x41\x46\x1e\xfa\x17\x73\x22\xa6\x5a\x80\x6b\xaf\xc7\xcc\xd8\xe4\x29\x01\x5e\x39\x90\x51\x7d\x80\xf1\x3b\x81\x2d\x73\x22\xc1\x93\x53\x8b\x54\xe0\xcf\x37\x28\x5f\xff\xbe\x99\x44\xc1\xa1\xa4\xd5\xa2\x7b\xe6\xce\x02\xae\x5b\x54\xf0\x7d\xd8\xe2\x00\x94\xe4\x3f\xd8\x7e\x6a\xbc\xa9\x84\xbe\x83\x84\xf9\x10\x3b\x26\xec\x40\x22\x70\xbb\xe2\xea\xd8\xaf\xad\x27\xe0\x1f\x38\xf7\x2d\x4b\xf5\xf0\xed\x69\x02\x4d\xe3\x58\x16\x2f\x5b\x4b\x02\x6e\x8c\x70\x3f\xf7\xe7\x5c\x17\x09\x3f\xe9\x3d\x98\xf3\x6a\x14\x02\x0a\xcc\x9f\x45\x86\x27\xe7\xb4\x90\xb0\xf8\xe6\x68\x63\x9c\x65\x29\xa0\xa6\x49\xfa\x1e\x5a\xf3\x52\x40\x5d\x33\x8f\xfb\x71\x7a\x24\xc0\xd7\x9f\xd7\xbf\x38\x15\x48\x06\xd4\x9a\x28\x36\xd5\x88\x91\x02\x5c\x9f\x2f\xf6\x2e\xe5\x8d\x31\x60\x74\x52\x88\xdf\x85\x43\xd3\x04\xc6\x87\x72\xbd\x90\xde\x98\x0b\x68\xb3\x53\xa5\xf3\x2f\xe8\xbb\x0e\x94\xfd\x85\x8a\xb4\x06\x43\x65\xf6\x85\x7f\x41\xd4\xe7\xbc\x7a\x97\x8d\x0c\x60\xbc\x95\xca\xbd\x93\xb6\xc1\x64\xf4\x9f\xdb\x50\xdf\xfb\x3d\x09\x70\xef\xf0\x06\xc5\x9b\xee\x19\x80\x67\x27\x18\x82\x58\x0a\x92\x01\xdf\x4a\xbb\x71\xbb\x2e\x4f\x12\x18\xe1\x6a\xaa\x2c\xa2\x6f\x09\xd8\xaa\x1f\xb1\x3d\x72\x07\x0b\xa0\xde\xb6\xf5\x99\xee\xf7\xf2\x00\x7f\x96\x10\xe6\x99\xdb\x13\xc9\x94\xc4\x4c\xf3\xe0\x7b\xb7\x15\xf4\x1c\x31\xef\xc8\xed\xd8\x00\x78\xfc\xca\x1d\x2e\xf1\x3f\x63\x04\xea\x7f\x33\x55\x3e\x25\xcc\x02\xff\x0d\x0c\xa9\x7c\xc6\x5a\x59\xdf\x09\xbc\xbc\xbf\x2e\x57\x79\xb0\x14\x50\x21\xac\x5e\x32\xb2\xeb\x0d\x15\x36\xf0\xe1\x85\xbf\xb0\xdf\x77\x2c\xd9\xb6\xb9\x0c\x50\x9c\x39\xe8\x8d\xbb\x5a\x31\xe0\xb1\xc9\xa9\xeb\xb9\x86\x79\x80\x33\xd6\x3b\xce\xef\x71\x3c\x09\xc8\xad\xe8\x4b\x93\x3d\x22\x0b\xa8\x32\xb4\xf5\x6c\xb3\x8f\x31\xa0\x6a\x93\xd3\xe0\x42\xb2\x09\xe0\x47\x3d\xcb\xda\xd8\x4f\xc5\x80\x1d\xb9\x7a\xa7\xc7\x45\x74\x01\xe3\x2a\xe7\xa6\x36\x09\x6e\x07\xbc\xf3\x6e\xf0\xed\x80\x63\x01\xe0\xeb\x5f\xd5\xbb\x73\xd2\x8a\xc9\xc8\x35\x24\xb7\x6b\x70\x25\xa9\x9a\x78\x38\x41\x77\x92\x0f\xd0\x41\x5a\x28\xbf\xe3\xca\x17\x40\x5f\xf9\xb2\xdb\x67\x7a\xca\x00\x23\xb4\x7e\x74\xbc\xac\xab\x06\xcc\x38\x71\x2d\x55\x9f\x3f\x09\xb0\x44\xd7\x31\xc2\xc1\x3d\x17\x90\x7b\x44\x71\xdd\x33\xfa\x54\x40\x9b\x92\xdb\x91\xf7\xe5\xe3\x01\x65\x76\x14\xcb\x9b\x5b\x18\x02\x9a\x3a\x0c\x05\xb2\x7d\xd8\x0b\xf8\x73\x8f\x9b\x16\xe3\x4c\x18\xa0\x4f\x91\x96\x2a\x67\x65\x3c\xe0\x59\xd9\xa6\x9b\x6e\xe5\xf1\x80\xd2\xfa\x85\xa7\xd3\xda\xe3\x01\x4d\x12\x7b\x54\x1f\xbc\xb0\x02\x7c\x13\xbd\xa6\x23\x38\xd2\x1e\xf0\xc1\x2e\x11\x89\x98\x0b\x17\x00\x5b\xc7\xe9\x69\x18\x78\xce\x00\x4a\x6b\xb1\x32\x69\xc8\xdf\x02\x9c\x88\xb9\x77\xb1\xec\x5d\x0d\x81\x77\xc0\x27\xf2\xca\xac\x07\x50\xa0\x9d\xcc\xa8\xfc\xbb\x64\x0d\xa0\x5a\xb9\x93\x70\xee\xeb\x75\x80\x39\xd9\x22\x49\x2d\xfa\x8b\x04\x05\xd5\xb6\x85\xa1\x7e\xeb\x16\x09\x34\x76\xdd\xb2\xa4\x93\xcb\x04\xd8\x54\xb1\x96\xbb\x63\x95\x15\xe0\x39\x0e\x25\x9e\xdf\x24\x2d\xc0\x94\xac\x60\x3b\xfd\xc2\x55\x80\xe3\x61\x47\x8e\x54\xd0\xec\x02\x54\x11\x5f\xe2\x6c\x77\x0f\x22\x23\xbb\x8e\x80\xdc\xd5\x6a\x73\xc0\xeb\x43\x7a\x47\x02\x56\xc5\x93\x29\x28\x3d\x2f\x21\x21\xcc\xa6\x09\xd8\xa8\xbb\xde\x6c\x3c\xc5\x1a\xd0\xb2\x49\x2c\xe3\x55\xc2\x71\x40\xe9\x60\xc9\x81\xc6\xe0\x19\x82\x02\x43\xb9\x23\x83\x7a\x85\x6f\x09\xac\x9d\x1a\xef\x7a\x29\x55\x00\x14\xd8\xdb\xf6\x6b\x88\xb0\x7e\x26\x28\x28\x56\x8a\x61\x37\xf5\xd2\x02\xa4\xa5\xb1\xa8\xfa\x5d\x1a\x4f\x46\x6f\xde\x23\xef\x4b\x05\x1b\x09\x4c\x95\xa3\x8b\x0e\x60\xd7\x00\x1c\xba\xbb\xa5\xe8\x61\x54\x05\x15\x6c\x9e\xcb\x07\x0b\x86\x3f\x27\x53\x92\x9f\xf3\x7c\x3e\xa7\x8c\x34\xff\x85\x8a\xca\xe2\xd4\x83\xac\xac\x80\x82\x5d\x39\x2d\xf5\xe5\xe5\x80\xb9\x06\x0c\x4f\xb5\xf7\x35\x03\x3e\x70\xb9\xfa\xd1\x65\x05\x93\xca\x47\x6d\xee\xeb\x34\x02\x3e\x5e\xef\xe2\xdb\x58\xd0\x08\x68\x3f\x47\x66\x2d\x14\x3e\x4e\x85\xb9\x07\xd3\x26\x7e\x3b\x2d\x00\xeb\x1d\xf9\xaf\xcf\xdd\x7f\x4c\xc6\xa3\xe9\x7d\xdd\xbf\xc7\xba\x00\x8d\xd7\xb8\xfa\xde\x28\x23\x01\x3e\xd0\xec\x8b\xbb\xf3\x05\x00\x09\xbf\xb4\xba\x99\x1f\x9f\x08\x34\x4f\x7b\x73\x8d\xa9\x71\x9a\x0a\x95\x3f\xae\xd2\xbd\xdb\x49\x0b\xd8\x73\x81\x66\x39\xe7\x75\x0b\x09\xc5\x2e\x7c\x79\xd6\xb4\x2c\x05\x14\x7c\x1b\xec\x0b\x53\x8f\xef\x21\xa1\x48\xb7\xc3\xd7\xbd\xfd\xba\x80\x5b\xc3\xd6\xe4\xf6\xbb\x16\x52\x41\x43\xe5\x68\xc4\x61\xc3\xa7\x80\xfd\xcd\x5b\x7c\x3d\x95\x8e\x01\x72\xc9\x49\x87\xfe\xea\xde\x03\xf8\xbe\x60\x32\x9b\x0e\x68\x01\xff\x28\x71\xde\x30\xd6\x73\x24\xe3\x44\xac\x6b\x07\x73\x79\x29\xe0\x67\xb3\xc7\x0e\xfc\xfe\xe9\x80\xd2\xe2\xa7\xae\x0c\xbb\xa4\x00\x7e\xda\x2b\x45\xc3\x65\x97\x0e\x38\xd3\x61\x95\xa1\xdd\x5d\x06\xf8\x6e\xde\xa5\xdf\xae\xae\x0c\xd0\x2f\xae\xb6\x78\x72\x91\x44\x95\xa4\x8f\x7e\xb3\x0c\x6f\x29\x03\xfc\x66\x36\xab\x76\xf6\x95\x27\x20\xdf\x72\x98\x5f\x37\xb3\x16\xe0\x1b\xc7\x09\xdd\x5f\x6f\xff\x10\xb8\x8b\xf1\xd7\x11\xe9\x6d\xc5\x80\x83\x99\xcd\xe9\xf4\xcd\xb5\x64\x1c\x8f\xda\x69\xf3\x37\xf9\x0f\x86\xd8\x35\x0e\xde\x9c\x3e\x0a\xe8\xed\x54\x5b\xed\x38\xc7\x0a\xb8\x19\x43\x5a\x98\x6b\xb7\x50\x61\xed\xe4\xaa\x6c\x8e\xb2\xd7\x80\x45\xaa\x65\x6a\xa5\xf4\xd5\x80\xe2\x5f\x17\xd5\xf9\xdb\x0d\x00\x75\x3e\x3f\xaa\x1e\x97\x6a\x01\xd4\x0e\xed\xc9\x62\xd7\x49\x03\x34\x3a\xbd\x4d\x42\xc3\xa7\x19\xf0\xcd\x81\x8e\xea\xaa\xd1\x16\xc0\x1b\xe9\xdc\x0a\x42\x4c\x4e\x80\xdb\xec\xa2\x1f\x7f\xe1\x26\x03\xea\x94\x1e\xf0\x1e\xdc\x99\x41\xa6\x24\x56\xaf\x9a\x5f\x36\xfb\x4d\x11\x68\x75\x42\x9d\x2f\xf5\x57\x2c\xe0\x16\x0b\xa6\xec\x7b\xe7\xd6\x52\x41\xb0\x5d\xa1\xc6\x9d\xf7\x37\x41\x01\x0b\x9d\xb8\xeb\xb6\x0b\x1f\x49\xc8\xe4\x41\xe7\xe0\xc3\x97\x05\xb8\xc6\x07\x5a\xcc\xb7\xe5\x03\xaa\xc5\x30\xdf\x2c\xfa\xe0\x45\x05\xaf\x2d\x19\xbd\xf2\xb5\xe2\x80\x1b\xd3\x2a\x4c\x5f\x70\x30\x03\x9e\x0f\xb6\xad\x10\x37\x55\x05\xbc\xb0\x59\x4e\xec\xed\xbd\x20\x32\x25\x59\xf3\x7c\xc1\x4f\x62\x56\x18\x70\xf3\xe2\xf8\x64\x75\x01\x2b\x60\x28\xe3\x75\x9e\xa1\x8c\xd7\x80\x26\x67\xee\x19\xa4\xea\x6b\x01\xf6\x3f\xa0\xed\xca\xbe\xc6\x4d\x85\x6c\x93\x1a\x47\x96\x57\x75\x24\x4c\xcf\x59\xf8\xbc\xf4\xe5\x06\x19\xf7\x59\xb6\xcf\xa4\xd0\x44\x00\x92\x2a\x73\x49\xc6\x07\x68\x00\x65\x6a\x0f\x0b\xd7\x8e\x15\x02\x7a\x35\x7c\xc8\x5c\x0a\x78\x08\xe8\xbf\x46\xd0\x7f\x72\xc4\x94\x0a\xe7\xc9\x25\xfa\x24\x39\x23\xaa\x44\xc6\x62\x75\x88\xa4\x80\x1e\x15\xee\x7b\x09\x6d\x6c\xec\x74\xa2\x82\xd4\x36\x21\xb7\x31\x32\x33\x60\xc8\xc9\x5e\x5e\xfd\x2d\xa5\x80\xe9\x77\xfb\x65\x81\xa9\x14\xb0\x66\xf3\x83\x06\x57\xd1\x52\xc0\x2f\x12\x9d\x5f\x6b\x4f\xbd\x01\xe4\x78\xfe\x2a\xef\x2f\x96\x64\xf4\xbd\xeb\x57\x60\x42\xd3\x4b\x98\xb4\x15\x00\x8e\xef\x77\xab\xd7\x4b\x2b\x00\x6c\x5f\x7c\x59\x53\xb7\x52\x69\x24\x2a\x4c\x6f\x74\xb5\xfc\x17\x38\x4e\x86\xab\x0e\xfc\xb9\x46\xa6\x24\x31\x7c\xa2\x4f\x13\x9c\xd8\x00\x95\x63\x3b\x6b\x9c\xaf\x3a\x01\x66\xdf\xcc\x53\x3a\x3f\xed\x04\x98\x63\x1b\x31\x3e\x79\xdb\x0c\xf0\x66\xd6\x60\x9b\x5c\xa3\x2c\xa0\x5d\x73\xb5\xae\xc0\xa9\x4d\x80\x27\x64\x47\xa7\xa3\xb3\xf5\xa8\xa0\xbf\x2d\xeb\xac\x7b\xc6\x2d\x2a\xa8\xa7\x1b\x07\xdb\xfb\x2b\x01\x86\x3e\xe4\xbb\x4f\x6b\xe8\x06\x48\x03\x93\xb0\x53\x5e\x11\x30\xea\x65\xe6\xfc\xa5\xed\x72\x80\x0f\xb4\x7e\x73\x36\x9c\xda\x09\x58\xaa\x56\xb4\xa7\xfe\xd4\x51\xc0\xf4\xec\x7d\xdc\x8f\x36\xac\x02\xdc\xef\x79\x76\xb6\xcb\xff\x16\x15\x42\x33\x3e\x3c\x8a\xfc\x29\x0d\x78\xb3\x66\x9d\x24\x7d\xaa\x0a\xe0\xda\xe8\x27\x21\xdd\xcf\x64\xa9\x20\x61\xe8\x23\xf6\x43\x98\x96\x0a\x5b\xd6\xc9\x4d\xdb\xe9\x0a\x53\xe1\x71\xec\x28\x3d\xcb\x7e\x0e\x2a\x94\x99\x69\xdd\x33\xc8\xe6\x07\x7c\xbe\xd0\x14\x90\x55\xb0\x05\x10\xba\x1f\xee\xd1\xbb\x29\xf2\x2f\x1c\x12\x35\x97\x0d\x2c\xd8\xf9\x2f\x30\x95\xde\x79\xd8\xee\x3b\x40\xa0\xf1\x1d\xaf\xf7\x53\x2e\xd9\x24\xb4\xe2\xd6\x3d\x6d\xae\x26\x0d\x14\x1c\x6c\x4f\x1b\x90\x2a\x53\x02\x54\xd5\x56\x11\x8e\xb8\x2f\x01\xb8\x8b\x74\xb6\xee\x22\xb3\x26\xa0\x7a\x9d\xeb\xec\xdb\x78\x49\xc0\x40\xbd\xcb\xfa\x73\x8f\xa5\x00\x7f\x6b\x69\x07\x7f\x75\x94\x05\x5c\xff\x98\x46\x69\xd3\xc9\x1e\x02\xa3\x99\xe7\x88\xa7\x9b\xce\xc0\x3f\x50\xa6\x15\x58\xfd\x23\x63\x2f\x81\x49\x7b\x39\xac\xeb\x58\x8d\x00\x9f\xce\xee\x2e\x4f\x4d\x63\x04\x74\xd6\xa5\x13\xfe\xf2\x73\x65\x56\x3f\xc5\xd1\x65\xa1\xb0\x1b\xf0\xa5\xac\xf6\x63\x15\x15\x25\xc0\xf4\x58\x31\x95\x93\xd1\x92\x80\x96\x32\x5a\x5e\xe2\xf4\xe2\x80\xb7\x16\xe3\xc4\x83\x4f\xab\x03\x3e\x36\x58\xb3\xd0\x3b\xa8\x49\x05\xc6\x89\x71\x91\x35\x2a\x6a\x54\xd8\xf7\xe3\x66\xd7\x98\xfe\x55\xc0\xe9\x83\x16\xdd\xa5\x6d\x73\x04\x76\xa8\x8b\x1a\x9a\xbd\x31\x04\xac\x62\x89\x26\x04\xed\x34\xa9\x10\x9d\x36\xfd\x43\x62\x8e\x1f\x30\xb6\x78\x97\xb0\xfd\x60\x2e\x81\x01\x46\x4b\x95\x9f\xc5\xd6\x01\x4e\x77\x7d\x56\xdc\xa4\x75\x1f\xd0\xff\xb7\x44\xcc\xff\x00\xfe\xc7\x65\x1a\x1c\x4e\x12\xff\x82\x79\xf3\x91\x67\x67\xac\x86\x09\x14\xbf\x38\x53\xe5\x76\x57\x0e\x90\xbe\x9f\x59\x40\x70\xdd\x26\x40\xef\x6f\xa4\xfc\x4b\xd2\x5c\x80\x8f\x67\xf6\xfc\x69\xd4\x64\x00\x7c\x5d\x72\xf5\xb4\xf8\x2e\x5a\x40\xab\xfd\x0c\xd6\x6f\x77\x6e\x02\x9c\xfd\x33\x9b\x31\xb0\xcb\x02\xf0\xe6\x27\x97\x8d\xa7\x55\xb9\x00\x13\x68\xab\xc5\x5d\xde\xad\x02\xac\x36\x34\x78\xea\x3e\x2b\x0e\x98\xdd\x7b\x35\x52\x25\xce\x07\xf0\xb3\xa1\x71\xae\x1d\x5f\x2d\x41\x41\xef\x51\xd9\x57\x81\xb3\xab\x00\xdf\xe2\xda\xa1\xdd\x61\x62\x80\xf6\x82\xae\xc5\x36\x42\xa3\x04\xee\x2d\x7e\x11\xca\xe5\xaf\x0a\x48\x9a\x67\x36\xcf\x3a\xc4\x49\x05\xf3\x51\xbf\xe6\x0a\xfe\x87\x64\xd4\x62\xba\x9b\x23\xa0\xbd\x0a\x50\x28\xf1\x29\xd7\x24\xa3\x32\xa0\xa3\x6f\x50\x7c\x90\xc9\x01\x40\xb6\x27\x01\xcc\xb7\x62\x86\x08\x7c\xe5\x77\xaa\xe3\x01\x2f\x23\x50\xf0\x62\xa6\xee\xa0\x04\xe7\x14\x41\x41\x60\x83\x4a\xf9\x59\x8e\x23\x40\xc1\xd2\x21\x9e\x0f\xda\x31\xab\xa9\x70\xb6\xd6\xce\xe3\xbd\x8b\x36\x15\xc2\x7a\xac\x2b\x8c\xfc\x9a\x09\x6c\xae\xaf\x1b\xdf\xec\x37\x47\xa0\xc8\x99\xce\x7d\x52\xcd\x4a\x80\xc1\xb5\x9e\xe6\xcf\x2b\xf9\x00\xb9\x77\xa5\xa9\xd7\xb4\xcc\x13\xa8\xac\xf8\x78\x71\x38\xfe\x30\x60\x48\xff\x1b\xd5\x06\x7e\x66\xc0\x8e\xf4\x67\x7d\x8f\x25\x52\x00\xad\xeb\xa6\x0f\x47\xac\xa0\x59\xc5\xe2\xc6\xdd\xa1\x14\x40\x7b\xd7\x75\xcf\x52\x2a\x9e\x03\x92\x3d\x96\xab\x78\x1f\xb3\x01\xee\xfc\x98\xb6\x85\x99\x6e\x8a\xc0\xb0\x5b\x27\xf6\xd4\xa9\x97\x93\xf0\xcf\x6a\x9e\x0a\xb9\xc2\x03\x80\x01\x1b\x97\x3f\x34\x75\xd1\x03\xba\xb0\x1e\xad\xfc\xb6\x7c\x98\x0a\xdb\x0b\x53\xce\x16\x58\xbb\x91\x91\xc5\x44\x87\x29\xe1\x17\x2b\xe0\x8e\x38\x76\x07\xb1\xa4\x75\x80\xee\xaf\xf0\x93\xfd\xe6\x33\x80\x8a\xfa\x1e\x89\xda\x61\x7d\x04\x0a\x2a\x5b\x07\xf5\xee\x3b\x04\x14\x5c\x4e\x9a\x75\x1f\xef\xdb\x4b\x50\x10\x6e\xb3\x3e\x66\x3a\x5e\x0f\x28\x48\xec\x3f\x6c\x77\x56\x6b\x1f\xa0\xb8\xdb\xd5\x51\x6d\x91\x41\x02\xad\x42\xc7\x1f\xbe\xd8\xca\x07\x14\xb8\xdc\xab\x23\x7b\x4f\x8c\x12\x38\x70\xe6\xf8\xc5\x9f\x99\x8c\x80\xd2\xf5\x63\x5c\x55\xc1\x73\x04\x5a\xdd\xac\xed\xc3\x08\x1a\x40\xc6\x7b\x21\xf9\x3c\xd3\xb2\x80\xd1\x13\xdf\x95\xd0\x60\x0d\x15\x48\x01\x2f\x2c\xb9\xb9\xd4\xa8\x10\xa3\x6b\x1e\x5b\x99\xbd\x05\x50\xa2\x24\xfc\x00\xdf\x75\x11\x2a\x28\x74\x9e\xdb\x42\x5f\x5d\x44\x60\xdc\xf3\x33\x9f\x4c\x77\x1d\x05\x94\x16\xb4\x1f\xd6\x38\x52\x0c\xa8\x29\x2e\xf6\x68\x46\xae\x18\xf0\x4e\x02\xdd\xc5\xbf\x38\x57\xd6\xd9\xcc\xdc\xea\x0e\x78\xe9\x69\xfc\x10\x9b\x5f\x10\x60\x9f\x1d\xed\xa4\x93\x85\x3f\x55\xf2\xe7\xbd\xfa\xe5\xe1\x5a\x1f\x40\x53\x85\xfb\xb6\xfc\x2b\xfb\xb3\x8e\xe0\x9a\x55\x09\x31\x65\x80\x2d\xed\x72\xf3\xfd\x9f\x0a\x00\xcf\x6f\xcf\x17\xb8\xa3\xfd\x0a\xb0\x6e\xf9\x7c\xad\xef\x0a\xf2\x2c\xba\x74\x8e\x29\x65\x03\x46\x95\xf7\x92\x3c\x16\x74\x60\x2e\xdf\x98\x6c\x3c\x36\x49\xa0\x92\xb7\x9f\x56\xe4\xfa\x4d\x80\x23\xa6\xe3\xf9\x39\xb4\x62\x54\xb0\x7f\x7d\x72\xcd\xb4\x6f\x35\x09\x39\x8a\x92\x2f\xee\x4c\x12\x01\x74\x16\xb2\x5e\xfd\x24\x74\x0d\x20\x68\xe6\x93\x52\x6e\x32\x01\xd2\x8d\xdd\xdc\xf8\x60\x2b\x27\x15\x2a\xce\x69\x49\xe4\xc9\xd2\x50\x41\x71\x68\x43\xa4\x8d\xfd\x1d\x2a\xd4\x1c\xbb\xc8\xb7\xf7\xe2\x05\xc0\xbe\x90\x2d\x77\x14\x3b\x15\x01\x95\x18\x25\x12\x3c\x7e\x6d\x00\xa4\x91\x71\x09\x6d\x5c\x77\x19\x70\x69\xf7\x79\xcf\xb0\xe2\x87\x54\xc9\x37\xb9\x87\xf3\xe9\x2d\x86\x80\x6a\x0c\x83\xad\xca\x06\x9e\x80\x1f\x2d\x7e\x79\xf6\x97\x4a\x01\xde\x63\x71\x5c\xfb\x23\xbb\x8f\xc0\x1f\x32\x03\x57\xb8\xb7\xc6\x90\x31\xe6\x55\xfb\x85\xe3\x5b\x2e\x00\x6a\x9f\x51\x17\xe1\x08\x9e\x24\x90\xa4\x13\x7b\x7b\xa6\x50\x0f\xd0\x38\x40\xa8\x99\x29\x69\x2f\xe0\xb5\x06\x2d\x67\xce\x69\x24\xf0\xf4\x2a\x5d\x0f\x7d\xd0\x02\x0a\x88\x4f\x93\xdb\x4d\xfc\xf2\x09\x7c\x72\xd4\xdb\x5d\x70\xdf\x18\x81\x49\x97\x6a\x07\x73\x8e\x6d\x05\xec\xd8\x71\x7b\xf6\x85\x69\x09\x60\xbf\xee\x2b\xa6\xbf\xf8\x3f\xff\x56\xa5\x04\x90\x37\x37\x38\x54\x42\xd1\xe0\x5f\xa0\x5d\x57\x58\xb3\xf9\x43\x3b\x81\x92\xce\x17\x5a\x5f\x5d\x99\x27\x30\x7e\x87\x57\x4c\xcd\xe5\x9d\x80\xef\x3f\x54\x8d\x2f\x9c\x71\xa6\x02\x4b\xee\x52\x49\x40\x8e\x3d\x20\xe3\x7b\x95\x2b\x6d\x3f\x9a\x08\xec\x66\x64\x4a\x95\x72\xcd\x06\x3c\xc1\x2d\x78\xa5\x74\xa1\x06\x30\x4c\xb6\x7b\xb5\x5f\xe5\x4b\xc0\xed\x56\x74\xab\x7e\x3f\xac\x25\x23\x88\xab\xff\xe6\xe3\xad\x06\xf4\x59\xa4\xef\x31\x30\xf1\x07\xe4\x71\xb3\xa5\x79\xbd\x2a\x95\x8c\x29\xde\x9b\x08\xa5\x79\x3f\x40\x21\x9a\x27\x2e\xe5\xfb\xec\x01\x23\x5e\x8c\xe9\xca\xbc\xe7\x03\x14\x5e\x52\x7f\x1d\x1f\x16\x0b\x18\xc3\x28\x92\xe5\x1d\x6d\xf8\xbf\x43\xa5\x20\xf7\xad\x2b\xaf\xca\x01\xbf\xcb\x9b\xbe\xb8\xd9\x4b\x0d\xd9\xca\x83\x06\xaa\xe9\x05\x54\x49\x6c\x0b\xf7\xe3\xeb\x6f\x1f\x50\xe1\xf8\x36\xf2\x15\x3a\x2b\x6d\xc0\xd1\xbd\x95\x57\x05\x1a\x2a\x00\xe5\xfc\x77\x97\x2a\x9c\x2a\x03\x14\xfa\x78\x7b\x3e\x75\x43\x23\x60\x47\xcb\x5e\xe7\x59\xb3\x72\x32\xf2\x44\x45\xa9\xfc\x5d\x23\x7d\x25\xdf\xa1\xfa\xed\x13\x40\xfb\x1d\x39\x0c\x56\xe6\xb7\x01\x17\x17\xe4\xbf\x37\xdd\x78\x00\xb8\xff\xdb\xfa\x01\x3a\x22\x8b\x84\x99\x27\xaf\x84\xfb\xae\x12\x83\xff\x86\xce\x29\x5d\xef\x1a\xb7\x72\x02\x83\xe0\x80\xf7\x1e\xc9\x79\x02\x37\x48\xab\x73\xe9\xbf\xdc\x07\xff\xc0\xe8\x40\xe8\x1a\x77\x9b\x49\x82\x82\xb8\xec\xef\xf4\x43\x4f\x73\xe0\x1f\xf8\xc0\x5b\xd1\x35\xb8\x02\xd2\x93\x6f\x49\x65\xc2\x1e\xff\x15\x3b\xf3\x6d\x8f\x0e\x6e\xb8\x01\xf8\xb9\xb2\x4f\xbc\xa7\xfd\x0e\x15\x0a\x43\x2b\xc2\xd2\x07\xf6\x00\x32\xdc\x91\x97\xec\xc8\x70\x06\xd4\x8b\xd2\x92\xb3\xe6\xa7\x01\xbc\x6a\x7d\xba\xbb\xda\x4d\x0c\x50\x7d\x5c\x21\x44\xee\xa3\x06\xa0\xee\x5d\x35\x5e\x81\x14\x71\xc0\x6f\x15\xcb\xf9\x53\xf3\xc7\x01\xe5\xe3\xa3\x7a\x9f\xbb\xd0\x50\xe1\x7d\xd3\xf4\x48\x9a\xc2\x3a\x2a\xd4\x9b\x1e\x32\xef\xff\xa9\x0d\xc8\xa9\xe2\xbf\x8f\xe5\xb5\x08\xe0\xd3\x9c\x35\x67\xf6\x45\xf2\x52\x21\xdc\xd6\x7c\x80\x61\x6f\x13\x81\xda\xb1\xdf\x0d\x4d\x72\x4c\x01\xd5\x38\x3a\x77\x0a\x0e\xc8\x01\xf2\xed\x60\xc3\x17\xb1\x74\x54\x68\xd3\xe5\x79\x15\x60\x3f\x49\xa0\x31\x8f\x57\x25\xef\x29\x75\xc0\xb5\x1d\x69\xea\x2d\x6c\x55\x24\x3c\x1f\x2f\x63\xf7\x62\xf3\x6a\xa0\x42\x49\x70\x42\xd1\xf1\x49\x02\x93\x56\xcb\x78\x18\xd6\x03\xa0\xf2\x59\x6f\xe6\x99\x53\xe3\x04\x62\xa0\x54\xac\x73\xf4\x02\x81\xb6\xe7\x7a\x15\x27\x2c\x77\x00\x05\x8a\x43\x82\x33\x42\x21\xbf\x08\x0a\x50\xa1\x4d\xdf\x29\x99\x13\x28\xd0\x39\x7d\x57\xbc\xb6\x42\x06\x50\xd3\x20\x26\x59\x22\xef\x10\x60\xe4\x59\xb6\xa4\x45\xeb\xfd\x80\x3e\x53\xdc\x2a\xf3\x33\x42\x80\xad\x69\x0f\xae\x5c\xda\xa6\x0a\x38\xa3\xf3\x40\x44\xe7\x4c\x13\x81\x7b\xaf\x16\xdd\xf3\x74\x11\x04\x0a\x14\xd9\x5d\x1d\xbd\x97\x9a\x48\xf8\x7c\x67\xb1\x2a\xcd\x4f\x3b\x40\x87\xc9\x75\x3b\xe9\xbb\xf3\x01\x37\x2b\x07\x84\xd1\xad\xe0\x81\xcf\xa6\x9e\x3d\x6b\x36\x01\x5a\x35\x6f\xbb\xeb\x55\x6f\x40\x85\xed\x51\x65\x17\xbd\xd9\x68\x00\x4d\x7a\x87\x6f\xab\x35\x36\x93\xb0\xf5\xca\xee\xd6\xd4\x6f\xe5\x80\xc4\xe6\x43\xb7\x17\x7e\xd4\x92\x91\xa4\x16\xf1\xa3\x78\x3e\x1e\x50\x26\x4f\xfa\xdb\xdf\xea\xda\xfa\xab\x4b\x9f\x3e\x5e\xa1\xc2\xe4\xa9\xdf\xde\x7f\xb8\x49\x80\x02\x65\x75\xa7\xff\x22\x23\xe5\x57\xc4\xc2\x0a\x5e\x2d\x66\xf2\x99\x9b\x70\x03\xea\x66\xb8\x7c\xf8\xfc\x36\x11\x70\x4e\x52\x77\xf0\x1c\xbb\x19\xe0\xb6\x51\xcf\x4c\x89\x4a\x7b\xc0\x07\x11\xac\xb3\x75\xa3\xbc\x80\x37\x1f\xf6\x6e\xa9\xb2\x52\x00\x0c\xf5\x60\x61\x9e\x1b\x97\x07\xa4\x1d\x48\xed\x4e\x89\x58\x0b\x68\xf4\x49\x49\xee\x23\x5b\x03\x09\x8f\xae\x1a\x2b\xd8\x1e\x10\x0d\x14\x1c\x60\xdb\x34\xba\x01\x2d\x00\x5d\xa3\x26\xd6\xcf\x8b\xff\x24\x70\x79\x74\xfb\xd3\xb1\xdc\xad\x80\xcd\xed\xc6\x7d\x69\xcb\xb4\x80\x1e\x63\x1f\x7e\xbd\x11\xda\x4c\x05\x86\x7a\x3d\x86\xcd\x89\x9b\x00\x2d\xdb\xb4\x64\x82\x1f\x49\x03\x32\x45\x32\xb0\xc7\xf0\x35\x11\x48\xe3\x52\x1d\x13\x95\xd4\x43\xa0\x00\x5d\xfa\x98\x20\x17\x2b\x50\xd0\x76\x47\xdd\x2d\xe4\x11\x2d\xe0\x71\xef\x63\xa7\x6a\x46\xe8\x00\x0f\x04\xfe\x9e\x4f\xca\x32\x25\x63\xa4\xcd\x8d\x8f\x77\xf5\x95\x01\x17\xeb\xb8\xda\x35\xaf\x4d\x10\x78\x5c\xd2\x62\xd3\xa5\x08\x25\x40\xfc\xf1\xe7\x95\x0f\x2f\x1d\x60\x73\xb5\xa7\x0d\xd8\xaf\x03\xc4\xe2\x94\x67\x2c\xf3\xf7\x01\x15\xce\xc6\x9f\x08\x9e\xcd\x24\xe1\x8b\x03\xbb\x43\x1b\x3f\xf3\xc1\x7f\x43\xe0\x24\x6b\xc1\x50\xe5\x24\x81\x0f\x76\x95\x9e\xaf\x57\xed\x24\x30\x3b\xae\xde\xe4\x7b\xa8\x0e\xa0\xb6\xc1\xc4\xf5\xf1\x30\x5b\x32\x6e\x89\x13\xb8\xcd\x73\x3a\x03\x30\x63\xe6\x93\x0a\xd3\xc6\x95\xbd\xae\xe6\xcb\x39\xe7\x23\xa1\x64\xcc\xb0\xef\x3e\x61\x2f\x51\x0e\xe8\x59\xf5\x19\x55\x4f\x65\x51\xad\xd1\x11\xa3\xdf\x77\x2d\xf2\x0d\xa0\xf7\xc6\x0b\x87\x77\x93\xa8\xf1\x9f\xea\x0f\xbf\xec\xdc\xce\x95\x64\xbb\xbb\xea\x52\x7f\xea\x0a\xec\xd6\xd5\xe7\x0b\xdd\x01\x2c\x7e\x9a\x77\x75\x0f\x8f\x1f\xe0\x27\x7e\x8f\x53\xd9\x22\x7e\x80\x4d\x99\xdf\x43\x8a\x37\x3b\x50\x55\x46\x6b\x8a\xc3\x1a\x82\x23\x01\xcf\xcf\x64\xc9\x4c\x7b\x0b\x01\xea\x1a\xea\x26\x9e\x3a\x30\x4d\xe0\x3b\xf3\x7b\x11\x7b\xeb\xd7\x01\x05\x9e\x03\x6e\x6d\x86\x77\xba\x09\x94\xd5\x61\xba\xba\x5f\xdc\x12\xb0\xc6\x5a\x6c\xde\x21\x65\x82\xc0\x52\x37\x77\x76\xa1\x67\xab\x01\x83\x8d\x5f\xfa\x8b\x0a\xab\xff\x0b\xb1\xfb\xf6\x8b\x4a\xbe\xe1\xfb\x17\xe8\x67\x1c\xe8\xb6\x73\xb6\x11\x68\x9c\x6b\x30\x29\xc0\x33\x45\xe0\xf0\xe3\xa1\xc5\x5f\x77\x7f\x13\xe8\x10\x9a\xcb\xb0\xf7\x88\x08\x50\xe0\xf5\xa8\x9c\xff\x90\x79\x21\x81\xbe\x1f\xa3\xd6\xbd\xff\x3e\x4c\xa0\x54\xb9\xcb\x1b\x9b\x5b\xfc\xf0\x0f\x6c\x61\xf9\x32\xa1\x79\xf9\x0b\x89\x82\xea\xc4\x3f\x2a\x9e\xc5\x24\xc0\x8a\xdb\x9e\xa1\x2a\x35\x24\xc0\x68\x2b\xad\x10\x8f\x95\xa4\xe4\xd5\x75\x7f\xbf\xfc\xfd\x54\x78\xd8\x7f\xee\xa4\x93\xff\x85\x7f\x41\x67\xc3\x3d\xc5\xec\x6b\x0f\xc9\xb8\xbf\x95\x68\x92\x74\x2f\x07\x54\x28\xf8\x40\x93\xef\x95\x03\xb8\xfe\xd4\x55\x7d\xfa\x95\x33\x25\x54\xe7\x18\xc7\x33\x3d\x5a\xf8\x07\xb6\x48\x44\x3f\xf8\x22\xaf\x0e\xe8\x32\xbc\xef\x59\xd0\x0f\x2e\xc0\xd8\x77\xed\xaf\x76\xad\xd9\x0c\x28\xbd\xc5\xd3\x68\x19\xd9\x00\x35\xd6\x35\x9d\xbf\xcd\xa3\x4b\x85\xfd\x75\x01\x1c\xde\x75\xeb\x01\x5f\x1c\x3f\x3c\x96\x6a\x9e\x4f\x85\xe3\xbd\xd5\x19\x3f\x9b\x85\x01\x8d\x86\xb4\x4e\xac\x69\x21\x00\x43\x61\xb8\xfe\x5a\xda\x31\xc0\xd6\x68\x45\xd1\xf1\xab\x6f\x00\x17\x3a\xc7\x87\xff\x42\x71\x2b\xbb\xfc\xcf\x15\x7c\x90\xb2\x7e\xfa\x17\x49\x3f\x9e\x33\xef\x24\xdf\x03\x64\x3b\x9d\xb8\xe5\x73\xc8\x2e\xc0\x07\xa1\x61\x8c\xa3\xc1\x23\x04\xfa\x5c\xfb\xbe\xf1\x7c\xde\x36\xa0\xa0\xd8\xa6\xf0\xbe\x61\x43\x05\x81\x32\x06\x39\x4b\x37\x16\x76\x02\x2a\x96\xd1\x1a\x6d\xda\xc3\x0a\x68\xd7\x10\x71\xa5\x20\xeb\x3c\xa0\x7d\x23\xbf\x4e\x8c\xdc\x46\x40\x89\x43\xd5\xc3\xf9\x47\xb6\x03\xc6\xa5\x8b\xe7\x1f\xe7\x58\x0b\xc8\xf2\x55\x34\x22\x5a\xef\x00\x15\x38\x42\xce\x77\xf4\x2e\xf2\x03\xfa\x92\xf2\x98\x8f\x91\x64\x00\x0f\x8a\x9a\xbc\x71\xb3\xd5\x01\xbc\x90\xae\xce\x2f\x2d\x2b\x05\xb8\x89\x83\x83\xf3\xd9\x21\x5d\xc0\x72\x91\xc7\xef\xb7\x70\xb8\x52\x01\x59\x95\x4a\x63\xd9\x36\x01\xde\x71\xaa\xcf\xcb\x93\x39\x02\x78\x6f\x93\x99\x64\xbb\xe5\x14\x81\xf3\xbd\x2c\x82\x67\x59\xce\x00\xa6\x2e\x58\xb3\xc1\x8e\x6a\x32\x25\xd9\x6f\x7a\xa9\xee\xef\x2b\x63\x49\x3a\xbb\x68\x7d\x11\x0b\x20\x77\xf0\xfa\xf0\xc0\xb8\x7e\x02\x97\x35\xc6\x6e\xf2\x47\x29\x02\x05\x93\xaf\xd6\x36\xbd\x5e\x24\x13\x38\xb7\xeb\xe3\x9e\xbf\x47\x7f\xcd\xc7\x39\x93\xfe\x1b\xfc\x40\xc1\x5b\x91\x53\xa2\xb7\x57\x76\xfe\x81\x90\x46\x35\xf7\x68\x7b\xc0\xb5\x6b\xfc\x83\xfd\xf8\xde\x02\x6e\x28\xdb\xc0\xa1\x73\xa7\x14\x70\xf3\x40\xdc\x32\xdb\x5c\x2d\x19\x43\x8f\x6f\xfb\xf1\x11\x6b\xc9\x38\xe6\xce\x67\x12\xbf\x3d\x0d\x50\x91\x6b\x5d\x5c\x52\x6d\x0e\xe0\xa1\x48\xe3\xf6\xce\x4a\x6a\x24\xbb\xad\x77\xfd\x8b\xef\xbe\xa6\xf4\xf4\x43\xfe\x54\xe8\x08\x3c\xfc\x99\xe7\x9b\x3f\xa0\x47\x48\xa0\x65\x44\xe1\x11\xc0\x9e\x4b\x56\xbe\x7f\x04\x4c\xfe\x2b\x22\xa3\x1e\xc5\xdd\x15\xae\x00\x3c\x70\x75\x74\xfb\x7e\x55\x32\xa0\x6c\xea\xf8\xaf\x6f\x75\x59\x54\xd5\x92\xe8\xcd\x83\xe4\xcc\x0c\x40\xdd\x6d\x17\x66\x02\x2d\xcb\x00\xb7\x39\x9d\xe7\x49\xbc\x1c\x01\x78\xef\x45\xeb\x9b\x9f\x5d\x8f\x00\x5b\xc7\x14\x8c\x54\x4e\x44\x00\xba\xf2\x7c\x49\xfd\x5b\x95\x16\xae\xdd\x99\xe8\x21\x4a\x85\xa4\x67\x26\x73\xeb\xbe\x57\x50\xa1\xf3\xf3\xfc\xbb\xa1\xc0\x7c\xaa\xc4\x56\xaf\x65\xcf\x84\xdf\x7d\xc0\x3b\x8c\xb1\x61\xe5\x9f\x43\x56\x7e\xbd\xdb\x3e\x8c\x1d\xc9\x22\x61\x7d\x93\x54\x49\xd3\xca\x4e\xfb\x5f\xb0\x1c\x50\xfa\xe3\xd8\xce\x16\x02\x33\x2f\xc6\x1c\x3c\x74\xac\x14\xd0\x77\xd3\xb3\x0e\xc6\xa9\x77\x80\x15\x0a\x25\x9c\xc6\x2d\x43\x80\x6c\xe9\xb9\x6a\x7f\x2b\x45\x99\x1b\x4d\x23\x52\x22\x80\x85\x0e\x4a\x2e\x05\x74\x65\x80\xd6\x59\x1f\x7b\x39\x7f\xd5\x01\x46\xba\x72\x88\x70\x0c\xae\x7c\x2e\x41\x3a\x95\xcf\x5f\xca\x00\x1f\xdf\xe8\x63\xb4\xfd\xcc\x01\x28\xaf\x29\x7c\x9a\xa3\xb2\x9a\x8c\xb4\xbf\x12\xd5\xc7\x58\x1f\x01\xee\x29\x5b\x3e\xe6\x2a\x1b\x04\xe8\x67\x12\xf1\x22\x54\x2a\x98\x8c\x6b\x0a\xa7\xe4\x5d\x3f\x85\x02\x8e\x9c\x60\xf1\x16\x0b\xd0\x04\x3c\xc4\x5a\x5c\x55\xda\xf8\x1a\x90\x45\x7c\x73\x92\x4c\x76\x3e\x60\x94\x41\x91\x57\x58\x0b\x00\xc6\x74\x29\xf9\xd2\xf0\x96\x01\x7e\x12\x7e\xd1\xd5\x5a\x4d\x0d\xdf\xc6\xd6\x6b\x9d\x03\xa7\x01\x5b\x1a\xa2\x7d\x37\xfc\x54\x07\xe4\x8d\xe9\xcb\x8d\xd5\x4b\x26\x63\x54\x31\xd3\xaf\xfd\x01\x64\xc0\x0b\x9f\x2b\x39\x1a\xeb\xeb\xc9\xb8\x26\xc8\xc1\xa9\xe1\xcb\x53\x32\x9a\x4e\x2f\x71\xd5\xff\x76\x07\x74\x78\x1e\xd6\x55\x5b\x39\x4c\xe0\xab\x3d\xe1\x87\x3d\xed\xca\x00\xe3\xa7\x3e\x28\xba\xad\xa0\x3d\xe0\xe7\x7a\xe3\x9b\x6c\x80\x8b\x6f\x6b\xc2\xa2\x44\xcf\x51\x21\x99\xa6\x9a\xfd\xfb\x87\x5d\x80\xb1\x33\xdf\x0c\x22\xaa\x2a\x00\x0f\x17\x4f\xab\xf7\x68\x97\x02\x6a\xb3\x2b\x87\x6d\x1f\x2c\x04\x5c\x56\xbc\xb5\xeb\x4e\x4a\x3b\xe0\x73\x43\x4d\x59\x06\x09\x12\x60\xe7\x36\xda\x55\xc3\x12\xc9\x80\x1d\xbb\x46\x83\xda\x1f\x86\x91\x31\xed\x20\x8b\xb4\xb6\x55\x1c\xe0\x2b\xf9\xc5\xcb\xdb\x4c\x93\x01\xa5\xab\x6f\x07\xfe\x5d\xa3\x31\x5b\xd1\xff\xc3\x7d\x03\xcc\xf9\x14\x30\xd7\x08\x88\x03\xbe\xf1\xe6\xb2\x0b\xa3\xa9\x20\x30\xe5\x14\xd7\xad\xb3\xc9\x5a\xf0\x0f\xd0\x5b\x57\xa5\x38\xe6\xbf\xa2\x82\xf4\x8e\xcc\x67\xec\xbf\xa2\x08\x1c\x7f\xf1\xac\xe5\xa3\x81\x11\x50\xe0\xec\xb3\xe1\x48\x6e\x69\x26\xa0\xc4\xfb\x01\x1d\x95\x82\xdb\x80\xe9\x91\x06\x77\x48\x8c\x1e\x80\x5e\x32\xa2\xc6\x41\x13\x2e\x80\x39\x21\xfa\xfd\x29\xeb\xec\x01\xb7\x28\x3e\xec\x62\x74\x5a\x24\x70\xee\x79\x85\xb7\xe2\x65\x49\x40\xeb\x48\x6b\x39\x86\xd2\xed\x80\x07\x5b\x0b\x14\x05\xe5\x97\x08\x9c\xcf\x34\xb9\x64\xba\x32\x1e\x96\x0f\x14\x96\x86\x01\x37\xa0\xf9\xb8\x1a\xfb\x1c\x8b\x30\xa0\xd8\xe6\x3b\xab\x6e\xe5\xaf\x06\xf4\xeb\xc8\xdd\x70\xf6\xa9\x20\x20\xed\xcd\xf2\x3d\x6f\xa2\x2c\x01\x7b\x8e\xea\x70\x75\xf2\x5b\x00\x0e\x09\x71\xb9\x4f\x65\x2b\x00\xe2\x55\xc7\x8c\x86\x81\x4e\x40\xdf\xee\x04\x91\xf3\xb7\x26\x09\xb4\x5f\x3e\xaa\x7b\xa8\x5f\x0d\x28\xd8\xf2\xba\x74\x9f\xc0\x57\x71\xc0\x4b\x57\x39\x0f\xbe\x91\x33\x01\x7c\x16\x3f\x96\xd6\x31\x56\x06\x18\x7e\x23\x26\x80\xbc\xeb\x2b\xe0\x35\xd1\x18\x9f\x38\xab\x26\x40\xba\xe5\x48\x2b\xd6\x32\x4b\x40\x25\x9a\x8b\x56\x6c\xfd\xda\x80\xf7\x13\x7c\x0d\xca\x57\x3b\x01\xa6\xa7\xe5\x3b\x49\xee\xdd\x0c\xe8\xc7\x40\x77\x2a\x79\xd2\xff\x5f\x18\xaa\xec\xbf\x7e\xe6\xcf\x04\x81\x8d\xa7\xe7\x69\x8d\x16\x64\x01\x89\x70\x0f\xdd\x73\xf6\xb4\x80\x09\x87\x55\x36\x56\xfa\x1d\x04\xe4\x0b\xef\x8b\x38\x76\x2e\x1b\xb0\x21\x77\xb8\xcf\x70\xd5\x4b\x40\xfb\xe1\x4d\xe1\xbd\xe7\xa2\xc9\x18\x71\x74\x33\xb3\xd1\x4a\x72\xe5\x9a\xd9\x6e\xda\xad\xf6\x80\x55\x09\x0e\x75\xc6\x75\x17\x01\x2f\x1b\xdb\x76\x5e\xe0\xb3\x07\xf4\x76\x9b\x7a\x6d\xf5\xc1\x12\xf0\xa0\xab\x94\xf4\xa4\xbc\x33\xa0\xea\xcd\x78\xe7\xae\x04\x7b\x40\xd6\xc9\xdb\x09\xc7\x3d\x14\x01\xa5\x26\x76\xe6\x19\xca\x97\x01\xf6\xfe\x66\xda\x44\x9b\x99\x0b\x78\xb9\x43\xe7\x78\xfe\xef\x4c\x40\xe7\xa7\x6d\xaa\x03\x77\xed\xc9\x78\x9d\xad\xa1\x62\xdc\xbd\x14\x70\xb7\x12\x9e\x72\x5e\xe5\x08\xa8\xd7\xde\xaf\xfe\x6d\xee\x25\xa0\x85\xef\x86\x23\x07\xe7\x5f\x02\x36\x59\xbe\xee\x93\x58\x81\x80\xdc\xfa\x2c\x5e\x8b\x4b\x80\x69\xdb\xe8\xab\xbf\x0c\x51\x63\xf8\xe8\xc6\xaa\x59\xd7\x37\x64\xdc\x28\x58\xfe\x95\xee\xad\x3a\xa0\x7f\xd0\x7d\xae\x20\xd5\x2a\x40\x91\x87\x86\x3b\x98\x12\x13\x01\x5d\xac\x69\x4b\x48\x79\x4a\x80\x2c\xed\x32\x13\x2e\x45\xad\x64\xcc\x75\x0b\x3c\x3b\x5a\x5b\x01\x78\xea\xa0\xf3\xd1\xbf\xd8\xd9\x95\x9c\x42\x94\xde\x07\x9c\xa8\x3a\xcc\x6f\x26\xa5\x00\x28\x69\x59\xc3\x95\x7d\x65\x3d\xe0\xe3\x7d\x36\xdb\x76\xed\x10\xa4\xc2\xfa\x17\xcf\x82\xc4\xa4\x66\x09\xf4\xe3\x57\x0d\x08\x55\xa8\x25\xe1\xcb\x03\x51\x39\x9c\x6e\xec\x40\x81\xe4\x8d\xf5\x52\x41\x2a\xe9\x04\xd2\x5c\x60\x70\xff\x48\x5b\x4b\x60\x5b\xb8\x09\xcc\xed\x62\x06\x0a\x18\x05\x59\x77\xf3\x1e\x0b\x01\xfc\x9e\xc9\x7d\xa4\xe1\x53\x04\x19\xdf\x29\x37\xe5\x2c\xbb\x3f\x05\xf4\x7b\x79\x32\x96\x3f\xfd\x29\x20\x8d\xe7\xe7\xb5\xbc\xdf\x68\x00\x77\x59\x2b\x72\x79\xdb\xcd\x12\xd8\x24\x73\xad\x53\x3f\x46\x0a\xf0\xe2\xda\xb0\x13\xcd\xea\x04\x60\x66\x97\x57\x0a\xdd\x3d\x21\x40\xfe\x8f\x26\xa2\x8b\x06\x47\x00\x83\x0e\x8b\x4d\xcb\x26\x4b\x00\x26\xcc\x14\x4a\x9c\x10\x12\x02\x5c\x58\x0a\x57\x76\xd9\xcc\x02\xf8\x8c\x5f\xc9\x44\xc1\xb4\x11\xf0\x47\xf2\x45\xd7\x7e\x8f\x6c\x40\xd6\x91\xdf\xc7\x12\xfc\xd2\x00\xdd\xbd\xee\xe9\xf5\x93\x56\x1e\x34\x85\xb3\xf3\x01\xce\x71\x80\xcc\xbb\x45\xe9\xb5\xe8\xab\x01\x77\xf9\xd6\x69\xfe\x91\x3f\x07\x38\x70\xde\xfe\x7d\xb2\xc5\x04\x81\x71\x55\x79\x03\xb3\x61\x79\x80\x35\xdd\x3d\xa5\x6f\x53\xae\x03\x7a\x66\x6d\x60\x7f\xd1\xe6\x0e\x38\x11\xb1\xd3\x5e\xf7\x92\x21\x60\xdf\x69\xdf\x90\xed\x56\x0e\x80\x57\x23\x42\xf3\xf7\x16\x95\x03\x0e\xae\x0e\x9c\x5a\xf4\x2b\x05\xe4\x31\x74\xdd\x9f\xf6\xac\x10\xd0\x92\xdf\x36\xf1\xf9\xaa\x52\x40\xa6\x18\x69\xf5\xe7\xfc\x2f\xa8\xaa\x2f\x19\x9b\x36\xb7\x9c\xf5\x02\x74\xaa\x2f\x13\x89\x6a\xb5\x02\x1c\x0c\x7f\x5e\xbb\xdb\xbb\x1c\x70\x93\x58\xfd\xbe\xcc\xfa\x1c\xc0\x88\x93\xd1\xc7\x8d\xf2\x73\x00\x5b\xbe\x8c\xb2\xbd\xcd\x78\x45\xa6\x54\x6b\x02\xd7\x4f\x58\x71\x47\x02\x76\x2c\x6c\xd2\xfd\x76\xe5\x0c\x19\x85\x78\x22\x34\xc7\x5c\x3d\x00\x83\x78\x32\x77\x7f\xdc\x1f\x01\x94\x44\xff\x76\x46\xd6\xb2\x7f\x16\xe0\xe9\xf0\x6d\xea\xd1\xb9\x8e\x80\x27\x12\x3f\x1e\x53\xb0\x3b\x07\x18\xbd\xce\x66\xf8\xef\xdd\xed\x43\x7c\x5c\x6a\x03\xb3\xa8\xf0\x91\xbf\xe9\x15\x0b\xcf\x2d\x2a\xb4\xc7\xea\xa7\x6c\xec\x7f\x44\xc6\xf6\x2d\xf1\x12\xcf\x69\x13\x00\x4b\x25\x4f\x15\x9f\x1d\x7b\x4b\xc6\x83\x67\xb3\x84\x7e\xcd\xa4\x00\x5a\x07\xed\x4d\x7f\x2a\x76\x03\x50\x2d\xeb\xa1\x5b\x7c\xad\x1b\xe0\xa7\x54\x4b\x7a\x67\x95\x1b\x80\x5b\x3f\x4c\x8e\x90\xa6\xdd\x01\xcb\x17\xec\x37\xcf\x68\x04\x02\x1e\xf3\xe0\x0b\xd2\xd8\xe3\x0f\xf8\x73\x94\xe1\x71\xb2\xef\x66\xc0\x3c\x2d\x89\x23\xe4\xd5\xb9\x80\xb2\x4d\xf7\x6b\x3e\x0c\x64\x03\x3e\x5e\xbf\x9c\xf0\x51\xa5\x10\xb0\xfe\x46\x9b\xf3\x5f\xc8\xe5\x81\xe2\x57\xfb\x78\xc0\x9f\x67\x9f\xfd\xc9\x2c\xc9\x02\xdc\xa1\xf0\x67\x74\xbe\x2f\x1e\xd0\x62\xd5\xa3\x0d\xbc\x4a\x8d\x80\x85\x33\xac\xb6\x27\x42\xb2\x01\x43\x03\x7c\x77\x5e\x57\xad\x04\xbc\x12\xba\x6a\x42\x76\x34\x1b\x70\x63\x8b\x5a\x27\x5d\x69\x39\xe0\x4e\x59\xe2\xae\x96\xca\x21\xc0\xdc\x6f\x3d\x81\x43\x65\x82\x54\x38\x0a\xf4\x81\xda\x46\x3d\x04\x76\x32\x26\xc9\xdf\x1f\x23\x03\xfa\x1d\x67\xb4\x4a\x62\xcd\x06\x94\xd2\x19\xdf\xb6\x9e\x27\x1b\xd0\x86\x45\xf8\x45\x87\x4c\x36\xa0\xe9\x3b\x69\x5d\x59\xbd\xcb\x80\xd7\x58\xff\xdc\x2d\x6d\xe4\x27\xa3\xd6\xe0\x75\x89\x48\xc1\xe3\x80\x6f\xb4\x8d\xa2\x15\x46\xfc\xc9\x94\xea\xe3\x53\x89\x4b\xec\x4e\x01\x80\xd7\x35\x47\x66\xae\xf5\xfa\x02\xaa\xdc\xfc\xbc\xe1\x6f\x72\xd2\xe1\xa9\x4f\x43\x6f\x05\xa0\xda\x63\xad\xbe\xe2\xcd\x24\x40\x15\x22\x59\x78\x3a\xb5\x00\x70\x63\xd6\xa4\x9c\xec\x40\x05\xe0\xf3\x6f\x7b\x0a\xfe\x26\x38\x2a\xb8\xb7\x6c\x73\x19\xa0\x1b\xa3\x56\xf0\xe7\xc3\xf7\x01\xe3\x33\xaa\x2b\x24\xb3\xef\x01\xca\x87\xd1\x56\x6e\xa6\x2d\x22\x23\xd7\x65\xf9\x37\x9e\x06\x77\x01\x7b\x82\x0f\x55\x29\x19\xdf\x07\xb4\xd8\x2e\xa9\x6a\xf6\xc0\x05\x30\x69\xde\x44\x4b\x52\xbb\x83\x8c\x4b\x17\x0e\x1e\x0c\x6f\x6a\x22\xa1\xa9\x35\xdf\x85\x2f\x8e\xa7\x81\x82\x4f\x29\xe7\x5e\x9f\x8f\xe0\x02\xac\x6c\xee\xff\x70\xa4\x2e\x1a\x90\xe9\x95\x09\x1e\x1a\x74\xa7\x82\xdf\x01\x5b\xb7\xf7\x6b\x6e\x01\x3e\xdb\x2d\x67\x5b\xfc\xe4\x35\x60\x78\x92\xff\xde\x4b\x19\x82\x80\x75\x0e\x33\x0f\x45\xd3\x56\x01\x72\x92\x25\x4d\xac\x6a\xf4\xa8\x70\xf3\xe9\x72\x9d\xf8\xab\xdd\x80\x3b\x3f\x59\x7f\x77\x4a\x13\x04\x24\x17\x16\x27\xf1\xf1\xde\x05\xac\x3c\x1c\xd2\x9a\x10\xa5\x47\x05\xcf\xc2\x91\x9f\x65\xd7\x37\x01\x7e\x97\x7c\x25\x72\x75\xd6\x8e\x8c\x4a\x92\x67\x16\x27\x22\xba\x08\x9c\x76\x8f\xa8\x69\x3d\x94\x01\x14\x2c\x99\x3d\xf3\xde\x75\x39\x08\xf0\xfb\xf3\x9c\x57\xe1\x89\x39\x64\x4a\x55\xfe\xf5\x65\xb6\x53\x95\xee\xbf\xf0\x75\xf5\x12\x5d\xf9\xca\x2d\x14\xa2\x3a\x2e\x73\xde\x7a\x0c\xa8\xb3\x8a\xa6\x3e\x8b\xfb\x28\x60\xbd\x79\xae\x37\xc7\x58\x28\xa0\x0e\xdb\x4e\x1f\xe7\xb6\xdd\x80\x23\xcb\xaf\x35\x6c\xa5\xe9\x01\x03\x82\x0f\x37\x4d\xbd\x15\xa3\xc2\x9d\x43\x0e\xe5\x4f\xb9\xb6\x01\x4a\x0b\xb0\xe9\x29\x33\x6e\x02\x14\x1f\x9d\x37\x4a\x99\x46\x02\x8d\x03\x0a\x7f\xf5\x74\xc9\x01\x05\xb1\x3d\x4a\x0a\x91\xfa\xe5\x04\x2a\xa0\xd2\xfd\xb9\x6c\x5d\xc0\xec\x80\x16\xf9\xfd\x63\x62\x54\x18\x9b\x32\x39\xd4\xd4\x2b\x4d\x05\x06\x73\x76\x87\x48\x06\x79\xc0\x1b\xb7\xf6\x47\x8e\x5d\xdd\x0b\xe8\xe0\x73\xfa\xc8\x88\xcb\x12\x81\x61\x11\x95\xde\x7d\x43\x7b\x00\xbf\x9b\xc9\xfc\x3c\xd1\x21\x07\xc8\xcf\x9a\xb1\xc6\xce\x99\x0d\x90\xa1\xf6\x8e\xdd\x17\xda\x5a\x32\x7e\x26\x05\xa6\xbd\x18\x53\x06\xfc\xb2\xea\x59\xee\x83\xea\x62\xc0\xc8\xd8\xa4\xbd\x13\xad\x77\xa9\x10\xd5\x42\x44\x8a\xbc\xc8\x05\xac\xd9\x54\x23\x97\x62\xe6\x4a\x05\x8d\x1b\x8d\xb3\x8c\x7d\x77\x00\x5f\x87\x76\xaa\x92\x9e\x98\x00\xa6\x3b\x55\xe8\x9e\xf3\xce\x06\xac\xf1\x9a\xba\xa9\xf5\xce\x94\x0a\x34\x20\xd0\x18\x69\x95\x00\xf8\x82\xaf\xe1\xe2\x37\xbc\x44\x05\x94\x61\xd4\xb7\xdb\x7f\x05\xb0\x35\xe4\x86\xa6\xe4\xd9\x17\x80\xa4\x83\xd9\x15\xf5\xb9\xd6\xff\x42\xd1\xbb\x3b\xe2\x02\x77\x4d\xa9\x92\x91\x69\x9a\x6b\xa7\xc6\xee\xfc\x0b\x55\xb6\x2e\x6d\xca\x02\x6c\x80\xde\x57\xdf\xfb\x05\x6a\x08\x03\x26\x6e\x3a\xc8\xd4\x49\x1f\x01\x18\xcf\xbf\x94\x52\xe6\x73\x8b\x8c\x8e\xb9\x43\x56\x42\xb5\xf1\x80\x0b\xf4\x8b\xdd\x17\x13\x62\xc9\x68\xb0\xa6\x2c\xf8\x90\x94\x37\x50\x50\x57\x53\x3f\x5f\xc2\x12\x0f\x18\x1e\x7f\xbd\xd8\xd8\x36\x0a\xd0\xf6\x9b\xde\x1a\xae\x89\x58\xc0\x76\xf2\x11\x79\xd1\x0e\x53\x40\xe9\xa2\xe5\x61\x9b\x5b\x57\x00\xab\xb6\x3d\x48\x61\xf6\x4a\x00\xfc\x58\x9b\xb2\x51\x47\x7d\x37\x81\x9e\xdc\xbd\x8e\x65\x5b\x4a\x81\x02\x9f\x1b\xa2\xe9\x71\xcc\x86\x80\x1f\xa4\x0f\xb7\xde\x9c\x11\x02\xf4\x5a\x7b\x64\x3f\xe7\xee\xd5\x40\xf9\x3d\x33\x1d\xa1\xf3\xfc\x31\xf4\x0c\x28\x78\xa4\xd9\xf6\xf6\x20\x43\x28\xa0\x45\xd5\xf2\x61\x1a\xbe\x50\xc0\xaa\xeb\x22\x96\x91\xe0\x0d\x18\xc2\xe9\x3b\x5f\x92\x7a\x87\x8c\xcf\xea\xf8\x85\x34\x2f\xdc\x00\xec\xe2\x35\xbd\x37\x68\x1f\x0d\x58\xa7\xf1\x53\x8b\x6b\xdd\x66\x40\x8b\xe0\xb8\x1b\x5e\x27\xd9\xa9\xd0\x2a\xe3\xe4\x9d\xb2\xbe\x9b\x84\x32\xd5\x4a\x6b\xa3\x6d\x3e\x90\x51\xdd\xd6\x37\x93\xee\x7e\x29\x20\x97\xa2\xa4\xa3\x86\x78\x05\xcc\xa5\xac\xbd\x6c\x56\x5c\x00\x18\x96\xb6\xef\xcc\x55\xab\x01\x32\xbe\xb9\xa2\x91\x7a\xe0\xf2\x73\xca\x12\x34\x8a\x60\xfd\xe6\xb0\x33\x01\x90\xdd\x76\x8d\x87\x7d\xc7\x43\xc0\xa6\x69\xb3\xec\x1e\xfe\x04\x40\x41\x9c\x1b\x9a\x49\x89\x07\x7c\xb0\x7e\xb4\xe8\xef\x9a\xfb\xec\x95\x9f\x6b\xe3\x48\x80\x2c\xc3\xd7\x78\xfe\x70\x14\x02\x7a\x7e\xfe\xde\xf7\xe7\x52\x29\xa0\xd8\xd5\xf6\xad\xed\x46\xbb\xa8\xc6\xcc\xd1\x36\xdb\x7b\xad\x5b\xad\x80\x82\xdf\x99\x0a\x81\xfc\x2b\x63\xe6\x72\x70\x45\xf4\xb1\x7b\x0c\x80\x59\xdb\xf5\x7a\x56\xef\xbb\x08\xf8\x40\x79\xdc\xf2\xd2\x5b\x7a\x40\x93\xf4\xe5\xe5\x28\xae\x69\x62\xae\xce\x51\xf4\x23\xdf\x1f\x02\x33\x5d\xe0\xfc\x45\x42\x12\x70\xe2\x03\xfb\x15\x8f\x6e\x7d\x32\x6e\x54\x2e\x9e\x1d\x8e\x94\x00\xcc\xa4\x0d\x78\x2c\x19\x34\x4b\xa0\xa6\x65\x99\x3a\x7d\x23\x3b\x20\x53\xae\x93\x06\xbd\xb2\x2d\x60\xae\x53\x5a\x9b\xe6\x03\x4b\x40\xe9\x8b\xf6\xbf\x8f\xb7\x19\x02\x4a\x7b\xd9\xe6\xa9\x5e\x71\x02\x5c\x90\xb5\x53\x8e\xfa\xb6\x16\x30\x7e\x5f\xf6\x4d\x95\x8d\x1b\x01\x4f\x85\xe6\x2a\x30\x0f\x68\x03\x7e\xdb\xdd\x97\x7c\xd3\x21\x14\x50\xa8\xcc\xd9\xd1\xe7\xe3\x69\x40\xba\xcb\x3a\x66\x1b\x5b\xf5\x00\x75\x36\xd5\xc8\x8d\x28\xeb\x00\xde\x76\x31\xd3\x1e\x8f\x0a\x27\xa3\xd1\xbe\xdd\xd3\xfe\xc3\x32\x80\x06\x36\xf7\x48\xf6\x57\xff\x10\xf8\xb0\x29\x94\xa5\xfd\x79\x1a\xe0\x7b\x05\xcb\xfe\xb6\x15\x28\x4a\xbe\x7d\xe3\x46\x4b\x9d\x70\x39\xf2\xd5\xec\x8c\xd0\xf9\x17\x7a\x2e\x5e\xba\xf1\x77\xf3\x4a\xdd\x1c\xfa\x80\xf1\xe6\x0b\x32\xc2\xc7\x33\xa7\x4c\x73\xca\x00\x9f\xf9\x75\x76\xfd\xc5\xa0\xf6\x9e\xec\x47\x89\x91\x64\xb4\xdc\xec\xff\x38\xef\x43\x37\xa0\xa0\x6f\xe8\x04\xe7\x97\x4c\x32\x7a\xcf\x92\x7e\x25\xeb\x95\x02\x3e\x38\xda\xbb\xa7\xfb\xd9\x61\x40\x2e\x78\x5e\xef\x73\x5d\x07\xf0\xcc\xe6\x99\xda\x67\xb1\x32\x80\x59\xb3\x61\x4f\x84\x72\x22\xc8\x68\x61\x6e\xd3\x42\xeb\x77\x02\x30\x35\xb2\xd8\x56\x4f\x53\x1b\xb0\x2a\xda\xb4\x2c\xb7\xea\x0d\x60\xc6\x33\x13\x4d\x97\x6d\xf9\x80\x06\x84\x5d\xa9\xab\x4f\x1e\xa0\xe6\x54\x6f\xa5\xf3\x4a\x92\x98\x6c\xd0\x63\xd5\x50\x0a\x78\xdd\xb3\xc8\xfa\xf2\xfb\x61\x02\xf3\x35\xde\x7e\xf9\x9d\x58\x02\xb8\x5b\xcc\xce\xf7\x2f\x2e\x58\x9b\xb0\xac\x5e\x7a\xf0\xff\x31\x76\xdf\xd1\x5c\xc7\xff\xe3\xf7\x33\x92\x55\xc8\xac\xac\x48\xa2\x94\x91\x10\x5e\x0f\x64\x94\x92\x51\x0a\xc9\x2c\x95\x90\x4d\xa2\x22\x24\x65\x16\x42\x59\x59\x49\xf6\x1e\xef\xb7\x99\x50\xa4\x22\x0a\x19\x19\x2d\xa3\xa8\x87\x88\xeb\xe8\x5c\xd7\xc7\xfb\x7b\xfd\xfc\x3e\xe7\xfb\x97\xdb\xb9\x3f\x5e\x7f\xf1\xf4\xf2\x7c\x9c\xe3\x00\xb8\x47\x81\x9c\x10\x5d\x53\x09\x18\xca\xbe\x59\xec\xdf\x68\x61\x6b\xe6\x33\x75\xb7\xab\x80\xed\x77\x25\xad\x03\xc0\x87\xa2\xfc\x9f\x50\xf2\xae\x33\x7c\x37\xe5\x01\x18\xb8\x57\xed\xce\x9f\x6f\x1e\x80\xa7\x84\xdf\xb2\xea\x8c\x97\x90\xf1\xac\x70\x46\xbf\xb4\x4a\x21\x19\xbf\x59\x84\x29\x6c\x5c\x97\x02\x78\x25\xe0\xc0\x82\xf4\x1b\x3b\xc0\x73\x97\xd9\xbe\xcc\x1d\x74\x00\xac\x7e\x4a\x67\xdd\x41\xfa\x41\x60\x85\xf9\xeb\xd0\xcd\xb4\x6d\x80\x1b\xfc\x4b\x7a\x22\x34\xda\x09\xe4\xa8\x4e\xfd\xad\x48\xde\x0f\x68\x14\xeb\x49\x10\xde\xf9\x14\xd8\x7e\x70\xc3\x89\xfe\x03\x4f\x00\x85\x77\x3c\xb2\xfb\x57\xce\x06\x6d\xdc\x2e\xd2\xe4\x08\xf8\x66\xa9\x83\x9f\xba\xde\x91\xa2\xfc\x07\x52\xf6\x82\x96\x42\x39\x65\x80\xd9\xc5\x33\x9c\x1a\xb6\xde\x80\x22\x5b\x73\xde\xc4\x09\x45\x00\x5a\x1e\x95\xf7\xcf\x3b\x75\x03\xf0\xcf\x77\x63\xfd\x1f\xc6\x75\x80\xec\x36\x1f\x4b\xbf\xda\x94\x02\x3e\xde\x14\xd6\x40\xdc\x2a\x01\xfc\xb1\xde\xe7\x50\xe4\x87\x3c\xc0\xce\xb4\xad\xdc\xdf\xa3\x4b\x00\x5b\x2f\xb3\x86\x4d\xcf\x26\x01\x7a\x7c\x95\xbc\xcf\x38\x9d\x04\xf8\x8c\x4a\xdb\xc0\xb8\x2d\x11\xd0\x4f\xb8\xeb\x8e\x3a\x63\x25\x19\x3f\xbb\x1a\x49\xba\x94\x25\x52\x3c\xfc\xf8\x0e\x9f\x04\xa9\x25\x1e\xb0\x90\x3d\x2d\xf2\xd9\x40\x3c\xa0\x83\x6d\xa8\xe5\x46\xc1\x7b\x80\x5e\x64\x63\xd9\xdc\x67\xac\x14\x68\x0d\xd9\xd1\x2a\x29\x35\x47\xac\xa0\xb6\xe3\xef\x36\x4f\x42\x02\x56\x10\x70\x2f\x57\x72\xbf\xe7\x1f\x02\x1b\x3d\x9d\x38\x2a\x6c\x75\x61\x05\x8c\xfe\x03\xc8\xab\x68\x41\x81\x36\x6e\xc9\x7a\x51\xe6\x72\xc0\xf3\x79\x75\x7d\xb5\x9f\x9d\xc8\x28\x46\xaf\x23\x50\x36\x5b\x04\xc8\xfd\x97\xfa\xbd\xd4\xc7\x60\x40\xd6\x0e\xd9\x14\x0e\x6f\x7e\x40\x3a\x83\x89\xa3\xad\x5a\x7f\x08\xfc\x3e\xff\xfe\xf1\xdb\xd8\x7c\xc0\xca\x8f\x3a\x0e\x93\x09\xdd\x64\xe4\xb4\xdb\xd7\xa1\xb3\xbb\x88\x8c\x1b\x06\x75\xbf\x46\xd4\x7e\x26\xd0\xc8\x8e\x8e\x58\xf8\xbb\x07\xf0\x17\xbf\x5d\xfc\x2c\x2f\x15\x05\xa6\x1f\x5f\xfd\xd8\x93\xa5\x4f\x81\xa3\xde\xa9\x9f\xb5\x8c\xbe\x10\x2b\xa0\x76\xa3\x7f\x77\xa2\x34\x1c\x56\xc0\x6d\x3f\xdf\x64\x24\x7b\x08\xd0\xac\xf5\x98\xa0\xc3\xd1\xdf\x04\xce\x11\xfc\xce\xfb\xc7\x39\x01\x9b\x0b\x7a\x63\xdf\x85\x14\x93\x90\xb8\x74\x4f\x20\xf5\xc9\x1e\x58\x81\xb2\xd9\x81\x5f\xf7\xa2\x64\x28\xb0\xd9\xe3\x88\xd8\xce\xf1\x29\x02\xfd\x8b\xc0\x47\xb4\x6a\x13\xac\x80\x2c\xbf\x8f\xde\xae\x74\x82\x40\xd6\x0f\x06\x09\x1f\x5d\x4c\x01\xed\x33\xaf\x68\x55\xd2\x1f\x07\x64\x27\x3d\x0c\xf3\xc9\xf3\xa0\x40\x1b\xe4\x0e\x97\x3e\x8d\x04\xfc\x16\x93\x3f\x40\x47\x3d\x4c\xac\xe0\x94\x5e\x4d\xe8\xd5\x11\x2a\x58\x81\xa5\xe5\xd5\x2c\xe7\xce\xf5\x80\x9b\x16\x1b\xd5\xad\xc2\xb8\x01\x8d\x83\xc5\xfb\xdc\x07\x96\xbf\xd1\xe6\x97\x72\xfe\x41\xe8\x77\xe2\x45\x81\xa1\x3a\x40\xaf\xab\x4f\xa9\x5c\x96\xe1\x39\xe5\x25\x40\x3b\x50\x07\x98\x3e\x47\xc7\x5c\xf1\x27\x15\x90\xef\x7e\xe3\x0d\xc1\x96\x35\x80\x81\xd3\x0f\x06\x84\x4e\x64\x53\x60\x0b\xcb\x0f\x25\xe1\x65\x54\x59\x39\x17\xfc\x2b\xf7\x6f\x35\x7c\xe0\xbd\x2a\x0c\xa8\x1d\xb2\xa7\x6a\x4b\xa9\x0b\xe0\x64\x76\x97\xf3\xb5\xd1\x52\x40\x46\xdf\x0f\x8b\x0a\x36\x85\x80\x67\x88\x83\xcf\x4e\xfc\x32\x06\x6c\x96\x96\x29\xfa\x55\x6f\x4c\x51\xe4\x2c\x42\xa3\x2e\xb0\xf2\x03\x9a\xb0\x19\x5c\x62\x7e\xb7\x0d\xb0\xf2\x76\xaa\xa9\x92\xe8\x4f\x02\x37\x5c\xf7\xdc\x77\xd0\xf2\x29\x20\xe9\x56\x9c\xb6\xe6\xc5\xa7\x80\xe3\x0d\xea\x34\x5a\xcb\xe0\xdb\xb7\xb9\xf3\x5f\x11\x09\xd5\x64\xd3\x92\xb0\xa5\x40\xbd\xf0\x52\xad\x16\x5b\x34\xe0\x82\xe9\x60\x71\x5d\x74\x1d\xe0\xad\x75\x3b\xe8\xab\x97\xdf\x36\xc6\x13\x0f\xee\x88\xba\xbf\x20\xe3\xb3\xaf\x4c\x9f\xfe\x8d\x66\xdd\x03\x5d\x53\x19\xb8\x00\x65\x02\x62\x95\x4f\x66\xd7\x51\x60\x26\x3a\xf0\x76\xb2\x75\x29\xe0\xd3\x13\xa7\x65\x12\x97\xa1\xed\x70\xe7\xac\x1f\x4d\x3d\xa0\xd6\xee\xf0\xaa\xa4\x24\x32\x20\xf9\xfe\xb7\x93\xe2\x2d\x75\x80\x0f\xd2\x36\x19\x4c\x99\x45\x01\x5e\x33\x31\x35\x3d\x55\x91\x48\x5e\x79\x66\xe4\xdb\xd5\x19\xa6\x90\x3a\xc0\x1b\x4b\xbe\x47\x16\x42\x6a\x01\x5b\x0e\xc9\x5f\xec\x89\xaf\x05\xfc\xe9\x3f\x24\xfc\xfe\x1f\xdc\xe2\x76\x31\x68\xd5\x01\x36\xbf\x10\xdd\xff\x69\x30\x17\xf0\x08\x6b\x7b\x88\xf9\xa3\x05\x02\x2f\x34\xfd\xf8\xfb\x59\xbc\x19\xf0\xf0\x82\x19\x9d\x5e\x30\x19\xf0\x4a\x6c\x5c\xe4\x65\xce\x1a\x8a\xdf\x55\x17\xf5\x75\x75\xbc\x9f\x74\x16\xb0\x5b\xe3\x84\x9f\x9f\xa3\x11\xa0\x57\x0b\x0f\x59\x65\xc1\x19\x90\x29\x52\x74\x8d\x0b\xcf\x4f\x02\x5b\xb7\xb8\x7c\xf0\xbf\xd6\x42\x60\xc5\x76\x0e\x01\x8b\xa6\x1c\xc0\x3c\xf7\xac\x24\x3b\xdd\x5e\x40\xb7\xb9\x23\x4e\xd7\x3e\xcc\x00\x5e\x79\xc6\xbc\x74\xec\x6a\x1d\xe0\xba\x1b\x47\xe8\xfc\x8c\xd8\x00\x59\xe2\x3a\xf3\x69\x3f\x2f\xaf\xdf\x76\xf5\xea\xb7\x6e\x97\x02\x9a\x5f\x58\x94\x0c\x76\x57\x01\x94\xca\xd9\xbb\x4e\x56\x68\x8e\x40\xc7\x3c\x51\x26\xc6\x38\x1a\x58\xc1\xe7\x96\x70\xe3\x4c\x76\x0f\x40\x56\x55\x05\x21\x7a\x9f\x6b\x80\xd5\x7a\xc3\xbd\xea\x2f\xeb\x09\xac\xd4\x5b\x3f\xf0\x8c\x49\x0d\x56\xc1\xef\x26\x35\x2a\xff\xa1\x2d\xab\x21\xb2\x66\xdf\xf5\xee\xd7\x62\x80\xae\x46\x5e\xe1\xdd\x4e\x2c\x80\x74\x66\x4c\xed\x9b\xef\x7e\x20\x30\x96\x39\x45\xfa\x89\xd4\x11\x58\x81\xcf\x82\xeb\xb9\x03\x5d\x8f\xc8\x18\x64\xae\x65\xe7\x56\xa0\x08\xb8\xfb\x8a\x8c\x4d\xaa\x53\x38\xe0\x96\x57\xc5\xbf\xfa\x9e\xbc\x02\xd4\x60\xb2\xc8\xed\x5f\x46\xea\xee\xd3\x0d\x71\x3c\x1f\x01\x2f\xe9\x2d\x51\xcf\x49\xbd\x05\x34\xa0\x9d\x94\xfa\xe8\xed\x42\xc6\x3d\x21\xca\x5c\xaf\x4c\x92\x01\xcd\x42\x1a\x4e\x6d\x73\xab\x07\xec\x88\x4a\x88\x4c\x99\xdd\x01\xf8\x5a\x3f\xb0\x23\x76\xc2\x1d\xf0\xc1\x40\xde\xd2\x3f\x78\xed\x64\x1a\xfb\x7b\x33\x1f\x50\xe2\x80\x41\x82\x4c\x72\x3e\xe0\xcc\x6c\xf8\xf9\x8a\x14\x55\xc0\x5f\xcf\x02\xac\x0a\x2c\x6d\x00\xf3\x8e\xbb\x69\x5b\x2f\x59\x03\xbe\x73\x10\xc9\x3f\x97\x7c\x1e\xf0\x70\x7d\xb7\x86\xfe\xf0\x79\xc0\x41\x63\xc5\x80\x4f\xa7\x39\x01\xc7\xce\x59\x04\xfb\x1b\x6e\xa7\xc0\x0c\x1b\x43\x22\x78\x35\x11\xc8\x52\xe7\x56\xbe\x7b\x89\x0f\x50\xfa\xa1\xe9\x53\xd3\xea\xc3\x14\xe0\xd7\xde\xe2\x24\x93\xf7\x08\xf0\x46\x84\x64\xd0\xff\x04\x63\xdf\x82\xf2\x1a\x95\x9c\xd5\x50\x62\xfc\x20\x54\xbf\x3f\x06\xf0\x0e\xff\x8f\x4e\xbd\x65\x9c\x7c\xca\x4b\xfb\xaf\x7c\x6d\x71\xb2\xf8\x87\x2f\xa7\x42\x9b\xf7\x04\x53\x03\x0e\x4a\x64\xfa\x58\xed\xea\x25\x21\x67\xda\x6e\xef\x84\x93\xea\x80\x9d\x13\x32\xed\xb7\xbb\x0e\x50\x80\xfb\x37\x8f\xfe\x11\x86\xa7\x80\x5b\x94\xb2\xdd\xc2\x68\x1b\x01\xad\x52\x68\x42\xf8\x17\xb3\x01\xb5\xb6\x36\x4d\xe5\xfe\x6c\x00\x3c\xa7\xb8\xeb\xcf\xd6\xe5\x72\x5e\x7c\x78\xc7\x11\x07\x0b\x40\xe2\x57\xf1\x65\xb5\x20\x0b\x40\x0f\xd9\x2e\xaa\xc9\x71\x0b\x40\x41\xbf\x66\x8d\xed\x67\xa2\x00\x7d\xe9\xfd\xe4\x04\x39\x47\xc9\x78\xb9\xbf\xb3\x5b\xb7\xab\x16\xf0\x78\x6d\xdc\xf6\x3b\x06\x2d\x80\x4b\x15\x11\x89\x19\x79\x35\x80\x0f\xe2\xe7\xdd\xe5\x45\x5e\x00\x06\xcc\x4c\xdd\xd1\x32\xaa\x03\xc4\x46\x8b\x89\xae\xdc\x6b\x80\x4f\x69\x4f\xd4\xa8\x98\x6b\x01\xee\xe7\xc9\x76\x67\x09\xae\x04\x2c\xd6\x3e\x60\x7b\x4b\x18\xc8\x18\x29\x5c\x2f\x30\x42\x4e\x20\x63\xd9\xcc\x55\x6f\xde\x9d\xcd\x80\x43\xd2\x61\xdf\x4c\x78\xd3\x01\x5f\x94\xb6\x14\xe8\xed\xdb\x06\x28\x13\xe2\xf1\x89\x3a\xb5\x1e\x70\x94\xc3\xf9\xb7\xc5\x8f\x0d\x80\xf3\x7a\x89\x7b\x43\x4b\xb3\x01\x5d\x2e\xb8\x4d\xdf\x59\x86\xcc\xf3\xa5\x63\xf5\x8d\x29\xe4\x95\x32\x00\x37\x97\xb2\x85\xcc\x28\x70\xd7\x85\xbe\x42\x6d\xfa\x34\x45\x49\xd7\x32\x0a\xd2\x67\x54\x05\x0c\x0c\x7a\xb9\xf5\x43\x10\x0f\x20\x73\xb3\xc0\xd5\xec\x2d\xec\x80\x51\xd4\xd5\x37\x64\xc6\x46\x00\x97\x9e\x8c\x6f\xc9\x2b\x1c\x04\xd4\x3c\x22\xf0\x52\xb0\x76\x00\x90\xa4\x36\x14\x7d\x21\x50\x19\x10\xe8\x0f\x15\x6d\xfc\x52\x05\xa8\x7b\x97\xdd\x21\x23\xe5\x05\x60\xc4\x7e\x0e\xe3\xf4\x65\x04\xae\xcd\xe5\x4c\xfc\x5a\x05\xf8\xab\x5b\xa8\x30\xea\xe5\x41\x40\xeb\x33\x3b\x75\x0d\x5b\x44\x00\x1d\x3b\xc5\xbf\x87\x1d\x3b\x02\xb8\xe3\x47\x64\x5e\x95\x94\x11\xe0\xb5\x84\xdc\xf3\x5b\xce\x10\x80\xb3\x92\x77\x0d\x6d\x0f\xfc\x21\xf0\xea\xd0\x52\xf7\xc7\x35\xb7\x00\xf9\xe4\x27\x6d\x36\xcd\xef\x01\x7c\xc6\x93\xa4\x65\x24\x7e\x19\xb0\x0c\xa9\x77\xf3\x77\x64\x01\x36\x2d\x65\x7c\x92\x6f\xcf\x02\x74\xdf\x59\x68\x3b\x27\x6b\x0a\xa8\x7e\xad\xe4\xe0\x02\x8f\x19\xa0\x51\xd8\x57\x0f\x6b\x87\xad\x80\x0e\x7b\xdb\xf5\x58\xff\x8a\x53\x60\x7c\x67\x94\x38\x57\xfa\x3c\x81\x0d\xe7\xdc\x06\xfa\x4f\xd4\x11\xa8\xfc\x5b\xfc\xcb\xa6\x0f\xbb\xe1\x7f\x85\x5d\x8f\x1e\x7a\x7f\x73\xb3\x58\x0d\xb4\xbd\xa9\xec\xc9\xc6\xdb\x01\xcf\x84\x7e\xb2\xdd\xf3\x21\x99\x8c\x7f\x0c\x8f\xd0\x05\xbd\x7e\x0b\x58\xff\x54\x55\x55\x84\xf4\x0a\xd0\xfa\x63\xd4\xeb\xb4\x6c\x19\x40\x0d\x56\xc7\x79\xd5\x9c\x7c\x40\xfd\x68\xd1\x77\x19\xc6\x55\x80\x13\x79\x3a\xce\xce\x6e\xba\x80\xbd\x71\x19\xba\xf5\xca\xe2\x80\xcc\xf1\x41\x8a\xa1\x3c\x62\x80\x2c\x2f\x0d\x49\xb5\xa4\xdf\x04\xb2\x31\xb3\xbd\x8e\x77\x97\x83\x15\x84\x9d\x16\x78\xeb\xcd\x43\x05\xf8\x1c\xfc\xa8\x71\xba\x02\x90\x45\xc5\xba\x3e\x39\x76\x0d\xa0\x8d\xa6\x2e\x0b\x43\xf0\x56\x40\x6e\xc3\xe6\xee\xe7\xfb\x2b\x00\xe9\xbf\x46\xfe\x8e\xd1\xae\x00\x1c\x90\x4a\x5b\x3a\xab\x54\x01\xf8\xae\xfc\x81\x64\xb3\x09\x1d\xa0\xe5\x59\x37\x91\x42\x48\x25\x63\xff\x9e\x4d\x01\x59\xfc\x15\x80\x96\x17\xde\xb1\xee\xde\x53\x00\x98\x3d\xb7\xe9\x96\x69\x90\x3c\xe0\x78\xb1\x94\x9e\x2d\x7b\x3d\x60\xf9\xc7\x69\xc6\x7f\x58\xf7\xd1\x5e\xe3\xa0\xb4\x12\xe0\xd7\xa9\xf2\xad\x77\xf9\x64\x00\x7f\xdd\x79\x53\x74\xbb\x61\x1b\xcc\xb5\x27\x78\x1d\x2d\x76\x07\x6c\xea\xfb\x7c\x49\x78\xfa\x1d\x09\xe7\x26\x2e\xf0\x4d\x2c\xdf\xfd\x67\x74\x4e\x9e\xd3\x5f\xcc\x03\x94\x18\x1e\x51\xbf\xac\x16\x4f\x46\xd9\xf9\xb7\x57\xbe\x2f\x8f\x76\xcb\xe4\xf9\xfd\x29\xe0\x04\x14\x53\x9d\x6c\xcf\xd9\xfa\x1c\x90\xce\x49\x78\x3e\x5a\x3f\x0f\xf0\xa7\x19\xcd\x48\x58\x0a\x07\xa0\xe7\xe9\x93\x39\xc6\x83\x06\x64\xac\x56\x7a\x37\x5b\xdc\xf4\x0c\x50\xf4\x6b\xc5\x94\x44\xb2\x39\x60\xed\xa5\xab\xa3\x89\xc5\x56\x80\x7d\x71\x66\x66\x23\xfe\xef\x49\xa8\x79\x66\x74\x5c\x2d\x2a\x16\x70\xcb\x9c\x9e\xd0\x36\x46\x79\xc0\x09\xc5\xb5\xa2\xf5\x8b\x37\x57\xc3\x2b\xb1\x9e\xd1\x5d\x3a\x15\x80\x4a\x6f\xa5\x4d\x38\x74\x2b\x00\x25\x13\xd6\xa9\x72\x2e\x63\x9d\xf5\xe9\xa0\x7f\xe5\x10\xa3\x99\x0b\xfb\x32\x8e\xaa\x1f\xdf\x57\x54\x78\x06\xf0\xef\xa5\xad\x9d\xb5\xb6\x67\x57\x2b\x83\xaa\xde\x0b\xe6\x81\x0f\x00\x07\x3e\x8a\x56\xee\xf5\x1e\x00\x0c\xa0\x72\x8f\xff\x25\x3c\x02\x58\x32\xac\xa2\x75\xe0\xe0\x47\xc0\x9b\x6d\xca\xd5\x32\xcb\xa3\x46\xba\x58\xea\x99\x9e\x56\x40\x99\x5a\x35\x57\x26\xda\x27\x80\x41\x22\x1f\xe2\x5f\x5b\xdd\xa2\x80\xdd\xc4\x96\xf4\xdd\xbf\x02\x00\x59\x42\x5c\x2b\x0c\x8a\xb6\x01\xb2\xa7\xbc\xe4\xdf\xf7\xbb\x16\x70\xbc\xe7\x6b\x37\x57\xfe\x3b\x32\x7e\x12\x20\x7d\x2e\x08\xdf\x0c\xd8\xcb\x1c\xf0\x2d\xf2\x4d\x26\x19\x13\x4e\x54\xdf\xb3\x39\xc9\x05\xf8\x5d\xe1\x65\xe9\xb1\xd1\x6a\x40\x19\xf1\xaa\xf8\x5d\x6e\x35\x80\x6f\x7e\x4f\x2e\xd8\x7b\xd7\x00\xbe\x1c\x4a\xf7\xff\x57\xe2\x4d\xee\xb9\x44\x5e\xae\x01\xe4\xb0\x6a\x32\x64\x0b\x2a\x23\xa3\xa2\x82\xa4\xf4\xc3\x94\xd3\x80\x3e\x34\xa7\x7e\x4e\x1b\x04\x91\x70\x7d\xfd\xac\xee\xfe\x8d\xfc\xf0\xdf\x60\x54\xb5\xf3\x55\xf6\x42\x2d\x81\xc5\xbd\xa2\x92\x3f\x46\xcb\x48\xb8\xad\xfe\xe2\xaf\xaf\x71\x57\x61\x15\x44\x37\xed\xe2\x4f\x11\x2d\x03\x74\x16\x79\xf2\x3a\x75\x19\x19\xd1\xd7\x53\xff\xe1\xd1\xdf\x93\x72\xc9\xcb\x18\x62\xbe\xf6\x38\x69\xd1\x6a\x35\x6c\x1c\x6e\xce\x4f\xe6\x8b\x06\x6c\x29\x7e\x79\xfa\xcc\x91\x12\xc0\x43\xa2\x75\xae\x21\xd4\x24\xc0\xad\x3b\xfe\xe4\xf3\xa5\x57\x00\x9a\x19\xa4\x6f\x39\x94\xd3\x0e\x98\x30\xc3\xe6\x35\xb3\xbe\x0e\xf0\x78\xe2\x33\xd3\xc7\x59\xb5\x80\x81\x9c\xe2\x03\x5a\xcb\x47\xfe\x89\x9f\x82\x81\xfc\xba\x42\xc0\xc7\x65\x6f\x37\x33\x08\x5c\x07\xf4\x71\xda\x54\xc4\x32\x75\x8d\x02\x9f\xd6\x9a\x7a\x1c\xdf\x74\x1d\xd0\x76\xa7\xb3\xf9\xe3\x77\x8f\x00\xb5\xcf\x8d\xf7\x3c\x2b\x7f\x04\x78\xbf\x75\x5f\x11\xaf\x5c\x32\x19\x8f\x47\xd8\xd1\x6f\x9e\x7f\x0a\x2b\x28\x62\xf7\x7a\xa6\xd3\xf5\x14\xf0\x56\x76\xb3\xc3\xed\xf5\x39\x80\xd3\x69\x8d\x9f\x87\xd7\xcd\x13\xf8\x9e\xf7\xa8\xb1\xa9\xcf\x23\x58\x81\xb7\x62\xc1\x1d\xb7\xba\x38\x8a\xe2\x70\xbc\xc5\xf1\xe2\x39\x8b\xff\x8a\x9b\x43\xdf\x0d\xcf\x17\x46\x01\x9e\x53\xfd\x5b\xe7\xec\x54\x0b\x68\xb1\x5e\xcb\xa0\xef\x62\x2d\xa0\xf7\x5e\xcd\x3c\xb7\x0d\x1c\x14\x68\xee\x1a\xf6\x3c\x5e\xfd\x14\xf0\xe6\x9e\xe1\x10\xc3\x65\x24\xc5\x2b\xd4\x1c\x5b\x46\xe9\xd0\xd7\xa7\x9f\x0a\x29\x4b\xfa\xf6\xe0\xb4\xdb\xcd\x16\xff\x15\xcc\x0d\xcf\xdd\xba\x6f\x79\x00\xf2\xda\xab\x1d\x8c\x8b\x4a\x03\xf4\xe5\x60\xdb\x64\x18\x04\x80\x87\x85\x4c\x68\xcd\xee\xf1\x50\x60\xcb\x55\xf3\x0e\xe5\xe5\xab\x04\xd5\x77\xe8\x8b\x18\x77\x27\x30\xbf\xb1\x86\x9d\xc5\xe6\x21\xac\x80\x96\xb4\xff\x79\xd7\xc3\x4a\x0a\xe8\xef\xb2\xbc\xb4\xeb\xae\x15\x05\xe4\xd2\x94\xd6\x8d\xf9\x44\x01\x66\x94\x07\x36\xa6\x31\xd7\x01\x66\x1b\xfa\x84\x4c\x53\xd5\x01\x26\x86\x3d\x17\xab\xce\x37\x02\xdc\xe6\xf9\xc6\xac\x0a\xb9\x29\x20\x72\x85\x29\x27\xe0\x75\x1d\x05\x46\x39\xa7\xd5\xc6\xba\x29\x8b\xe9\xe6\xca\x24\x74\x55\x00\xbc\x22\xc4\xd0\x1b\x73\xaf\x18\x30\xd9\xfa\x83\xd3\xbd\x6a\x67\x40\xcf\x35\x54\xde\x97\x97\x01\x43\xbb\x27\xb3\xdf\x51\x96\xc7\x97\x54\x4e\xa9\x3d\xbd\x42\x01\x57\x5f\xba\x8d\x0f\x3d\x5c\x56\x2b\xcc\x9c\x73\x5c\xbc\x1a\x4f\x48\x58\x75\x20\x80\x86\x8f\xee\x29\x19\xbd\xd3\xff\x7c\x70\xf6\xe6\x85\xff\x06\x0d\xc9\xb4\x88\x98\x2b\xe3\x04\xba\x5e\x9b\x20\xd4\x32\x1a\x01\xeb\xd3\xe2\x47\xa9\x2a\x9b\x01\xf5\x98\x8c\x54\x73\x73\x45\x00\xed\xb6\x96\x7f\x3f\xef\xd3\x42\xc6\xb4\x9c\xf1\x1a\x0d\x6b\x6e\xc0\x3b\xde\xb6\x39\x6c\x5e\x55\x80\xc6\x25\x4d\x31\xdd\xcb\x08\x13\x7d\x78\xe1\x1f\x82\x5a\x9b\xd3\x76\xa7\x5f\x05\xcc\x8c\xf9\xf9\x85\x81\xf9\x1a\xe0\x0c\xd1\x4f\xdf\x37\x6c\x07\xa8\x60\xee\xf4\xe4\x19\x5b\x00\x20\xf5\xd1\x03\x21\x7a\x61\x39\x04\x86\x9f\x98\x6d\xcc\xd3\x39\x0c\xab\xa0\xef\x4e\xe3\xf5\xbc\xd6\x7d\xab\x21\xde\xa0\xfc\xf4\xd8\x9b\x4e\x02\xeb\xe5\x46\xc5\x0f\x3f\xa0\x07\xcc\x2b\xb9\x16\x6d\xb8\x41\x85\x02\x69\xfb\x4d\x27\xf4\x54\xdb\x08\xbc\x59\x55\xc0\x49\xc5\xcd\x01\xa8\xf0\xd2\xed\x8a\xa8\x66\x0d\xe0\x7b\xc1\x5f\x53\xdb\x97\x91\xa5\x5d\xf2\xe4\x1f\x5c\xb4\xec\x38\xbe\x04\x86\xad\x86\x23\x87\x3d\x62\xf7\xae\xa7\x07\xa4\x96\x99\xdf\x17\x77\x81\x1a\xd0\xb0\x4a\x83\xf8\xb3\x6b\x1f\x60\x74\x79\x95\xab\x46\x0e\x09\x30\xec\xd9\x1a\x25\xb7\x6f\x15\x80\x3d\xe7\x37\x50\x59\xf7\x37\x00\x4e\xf5\xbe\xd8\x68\xcb\x5b\x45\x51\x9c\x9b\xb4\x09\xb2\x8e\x1e\xa0\xcd\xec\x2f\xe6\xa2\xa3\x35\x80\x31\x6e\x17\x83\x9a\x1c\xdf\x01\x82\x98\x93\xb2\xee\xd7\x58\x40\xb7\x38\x4d\x96\xff\x0b\xb6\x9b\xdf\xff\x7a\xb0\x63\xc3\x6a\x48\x0b\xc8\x4a\x57\x36\x63\x05\x34\xb4\xea\xcc\x52\xae\xd9\x08\xf8\x3b\x74\xa9\x40\x75\x6a\x8a\x40\x2f\xa3\x63\x36\x47\x76\x50\xc1\x0a\xd6\x3e\xb9\xaf\xdc\xf0\x51\x02\x70\x5e\x46\xef\x96\xc3\xda\x34\x12\x9e\x2c\xdf\xb4\xad\x92\x95\x09\x56\x60\x9a\xb7\x81\x41\xa6\x89\x16\x90\xfb\xdc\xcf\xba\xa4\x1b\xfb\x00\x4b\xe4\x82\x04\x86\xa8\x79\x28\x10\xa2\x2b\xfa\x75\xcd\x31\x24\x70\x4f\x10\xdf\xd3\xe8\xcc\x3a\x40\x66\xfa\xab\xfc\x03\x11\xf9\x80\x3b\xf3\x1c\x25\xaa\xca\xf2\x00\x83\x47\xe7\x32\xa7\x43\x4e\x02\xd2\x8b\x99\x8b\x7e\x90\x36\xa0\x28\x0b\x8f\x77\xd8\x6f\xd5\xa5\x07\x54\x5f\x12\x1f\x28\x1b\x56\x07\xd4\x6e\xd1\xbb\xcb\xe8\x5f\x0d\x48\xd7\x19\xbd\x9d\x2a\xa8\x1a\x70\x80\xee\x88\xfb\x3a\x93\x64\x32\x76\x58\xd7\x1e\xff\x57\xd8\x22\xec\x85\xbb\x4e\x1f\xa7\xc0\x95\xc9\x03\x32\xd9\xf1\x5c\x14\x68\x6b\x38\xab\x45\xa5\xb2\x1e\xb0\x30\x82\x75\x47\x4e\xda\x73\x02\xcb\x05\xe8\x64\x6e\xe7\x14\x02\xb2\x71\xcc\xbc\xe6\x5d\xf2\x03\x74\x6d\xe8\x3a\x39\xf1\x95\x04\x28\x59\x59\xce\xf9\xe9\xbb\x22\xe0\xb5\xdb\xe5\xaf\xab\x92\xb4\x29\xd0\x7f\xda\xe2\xad\x54\x4b\x0e\xe0\xe3\x6f\xc1\xd4\xd2\xcb\x68\x8a\x63\x4b\x8a\x6d\xa6\x2c\xdd\x76\xaf\xeb\x6f\xa5\xec\x06\x1c\xdd\xef\x95\xe1\xc3\xbe\x11\xd0\x51\xf8\xed\xe4\xa9\x52\x3e\x0a\xfc\x3e\x2f\xbf\x59\x31\x79\x90\x58\xc1\xfb\xd7\xfa\x23\x0b\x1d\xb6\xb0\x82\xf5\xe3\x93\xa7\x5f\xa6\xfe\x21\x56\xb0\x25\xe6\xd1\xd8\xa5\xe3\xbc\xb0\x0a\xaa\xd6\xb1\xf9\xcc\x46\xed\x5f\x0d\x11\x4c\x42\x19\x71\x3d\x9f\x89\x15\xc8\x47\xfb\xbe\x27\xbc\xf4\x60\x15\x7c\x3f\x1c\x34\xa6\xd4\x2e\xbc\x1a\x0e\xf8\x8d\x9b\xb7\x75\x4f\x11\xf8\xee\x1c\xd7\x68\x9a\x66\x0a\x19\xdd\xef\x3f\x0c\xd6\x0e\xf7\x05\xa4\xb2\x39\x60\x7d\x4e\xd6\x10\x50\xc7\xe7\x22\x53\x78\x60\x11\x19\xed\xb7\x3c\xd9\x28\x14\xe7\x08\x58\x49\x7f\x62\xce\xc7\x8b\x04\xd8\x42\xb3\x18\xb6\x5b\xb3\x12\xd0\xb3\xdb\x3c\xca\xea\x6c\x27\x19\x1b\x95\x77\x8d\xfa\xde\xaa\x04\x94\x62\x13\x63\x19\x7f\x50\x03\xd8\xdf\x7c\xb9\xfa\x47\x6a\x32\x19\xd9\x24\x77\xd8\x05\xda\x57\x01\x32\xb0\x3e\xba\xbd\x6b\x4b\x35\x60\x7d\x60\xd5\xdc\x4e\xf9\x1a\xc0\x89\x9d\x95\x33\xd3\x6b\x6b\x00\xb3\xc5\xf3\xc4\x65\xd2\x9e\x03\x9e\x13\x2b\x0c\x5b\x57\x6c\x08\x78\x61\xca\xaa\xe6\x8b\x40\x2d\x60\xcb\x9b\x8b\x87\xe2\x14\x5a\x01\x27\xcd\xfe\x1c\xa6\xfa\xb1\x83\x02\x95\x55\x87\x94\x16\xf2\x45\x28\xc0\x75\xd5\xbc\x57\x5e\x76\x96\xc0\x2f\x7f\xdf\x77\x7d\x25\xab\x02\x3e\x38\x64\x58\xbb\x57\x59\x09\x30\x24\xcc\xf4\xf4\x24\x8d\x24\x60\xcd\xf1\x28\xaa\x12\x8d\xb5\x80\x85\xa3\xd5\x54\xeb\x3a\x16\x08\xb4\x03\x25\xf1\x05\x16\x01\xc0\x37\xd5\x05\xaa\x12\xc6\xd5\x80\xae\xb6\xd7\x78\x76\xff\xae\x07\x0c\xda\x4e\xfd\xb2\xea\x63\x37\x60\xa9\xb3\xc2\x43\xd5\x27\x6d\x80\x86\xa7\x15\x3a\xe9\x62\x0e\x00\x8e\x65\xcc\x3e\xce\xb6\xab\x03\xe4\x64\x86\x97\xd9\x5f\xbe\x50\x14\xff\x17\xef\x6e\x8c\x59\xd7\x03\x9a\xd8\x8d\x0b\x47\x32\xee\x02\x8c\xed\x95\x5d\xa7\xe3\x54\x45\xe0\xcb\xe6\x8a\xc8\x67\x74\x53\x14\xe8\x79\x10\xd6\x1a\xbf\xd8\x4f\x81\xae\xc3\xb3\x4e\xe9\xd7\xe6\x29\xf0\xa9\xf5\x30\xa3\x9c\xe1\x30\x81\x55\x86\x1b\x04\xdc\x38\xf2\xc9\x38\xab\xd4\xbc\x37\xbf\x96\x0a\xd0\xe6\x0e\x53\x58\xa6\xe3\xf5\xd5\x50\xfc\x6e\x9c\xf6\x71\x91\xd5\x6a\x18\x10\x86\x87\x7a\xaa\x63\x04\x0e\xab\x99\x68\x9d\x5b\xbb\x19\xf0\xb7\x0f\x6b\xe4\x46\xe1\x08\xc0\xb3\x0c\x73\x3f\x45\x6a\x0c\x00\x47\xc8\xc9\x45\xf5\x7f\x8d\x97\xef\x00\x2c\x6c\x1f\x76\xdf\x04\xa4\x0f\x77\x0c\x62\xf4\x76\x05\xe4\xe8\x5b\x6a\x78\x15\xe6\x0a\xf8\xc9\xfa\x12\xf7\xeb\x43\x67\x01\x7f\xda\x4c\x67\xb2\x69\xbb\x90\x31\x2d\xf4\x51\xef\x88\x53\x24\x19\x65\xa2\x1b\x66\xea\x0e\x5e\x04\x6c\x2c\xb4\x35\x7b\x62\x94\x0d\x78\xac\x53\x24\xd4\x79\xff\x38\x81\xd7\xbc\x98\x39\xc4\x5e\xef\x87\x15\x6c\x3d\x2a\x37\x18\xb9\x5f\x06\x90\xb9\xae\x9f\xf1\xc7\x2b\x26\xc0\xc2\xb0\xd7\xba\xec\x4b\x23\x04\x7e\x97\xf8\xea\x51\xe3\x77\x11\x56\xb0\xf1\x10\x53\xa5\x84\x98\x14\xa0\x5e\xec\x90\xd6\x17\x3e\x13\x32\x8e\xc9\x0b\xdc\x8d\xa3\x6e\x06\x9c\xb5\x77\xe0\x70\x3a\x52\x04\xb8\xf3\x7d\xdc\xe0\x27\x99\x4c\x12\x3e\xa8\xe4\xbe\x2a\x41\xbb\x99\x8c\x93\xfc\x71\x10\x6b\xdd\x01\x18\xa5\x34\xba\xf1\xe8\xaf\x2a\x32\x9a\x0b\xc4\x8b\xa9\xfa\xbc\x02\xbc\xaa\x9a\x60\xd3\xe1\x59\x03\x48\xe4\xf0\x3c\x1b\xca\x93\x04\xec\x91\x67\xbd\x98\xc1\x58\x07\xc8\x9d\x34\x2b\xd8\xc1\x49\x02\xdc\xc7\x7e\xdc\x7c\xe4\x4f\x2d\xc5\xc8\xf2\xcf\x1e\xe7\xfc\xc8\x68\xc0\x81\x45\xa1\xfb\xd4\xfe\xd1\x80\x3b\x03\xac\x3c\x6f\xb0\xdf\x25\x63\x82\x8e\x68\xe6\xcf\x12\x25\x40\x53\x3f\x09\x87\x4c\xd1\x2a\x40\x35\x5f\x95\x54\x95\x1b\x9f\x00\xe7\x3d\xd2\x6f\xe4\x5e\xfa\x04\xb8\x87\x9f\x98\xe6\xb7\xad\x01\x74\xe7\xb9\xf4\x8a\x8d\x5d\x1c\x90\xf7\x78\xfb\x49\xdb\xb5\x75\x80\x53\x46\x7a\xb1\xbd\xf5\xab\xc3\xcd\x92\xa9\x61\xa3\x0f\x05\xd8\x7f\xec\x2f\x65\x9b\xf3\x06\xcc\x91\xd7\x67\xd8\x5b\x5a\x06\x58\x19\x71\xe2\x5c\xdc\x87\x32\x40\x53\xbe\xc3\x1a\x75\xbb\x2f\x03\xbe\x8b\x56\xe4\x7f\x11\xb4\x7c\x20\xb9\x44\x1d\xcb\xf6\xcd\x11\x48\x0f\x03\x69\x8d\xfb\xfe\x50\xc0\x57\x3e\x40\x34\xff\xf2\x4f\x02\x2f\x26\xd1\xe7\x0e\x3e\x2d\x07\x4c\xf7\x23\x4a\x94\xe3\x5e\x02\x7a\xf9\x7b\x7f\x28\x3e\x3d\x45\xe0\xb3\x81\xa1\xe8\x4f\x53\x69\x64\x6c\x11\x9e\xcb\xbd\x95\x67\x01\xf8\xf6\xac\x82\x44\x5b\xea\x14\x81\x25\x39\xec\x8a\xb1\xcf\x15\x01\xbf\x38\x7f\x2e\x7e\xd5\xf9\x9b\x40\xc6\x1f\xef\xb4\x1e\xbd\x88\x00\x7c\xef\xa5\xf7\x62\x48\xeb\x1a\x20\x75\xa0\x86\x9c\x8b\xc9\x1e\xc0\xc9\x2f\xbc\x82\x05\x3a\xe5\x80\x9b\xb2\x65\xfd\xea\x83\xbe\x11\x68\x44\x27\xbf\x98\x53\x22\x06\x2b\x88\xef\x98\xcf\xbc\xce\xab\x40\x81\xe4\x70\xe9\x40\x85\xb9\x26\x12\xfe\xed\x9c\x3b\x75\x42\xb2\x00\x30\x46\x56\x68\x50\xc7\xaa\x03\xf0\x9d\xe3\xa3\x17\xdb\xef\x76\x00\x76\xfd\xe5\xeb\x92\x0a\xf7\x00\xe4\x52\x32\x78\xff\xef\xfc\xb0\xcc\xbc\xba\xc1\xa2\xa7\x0a\x2b\xb8\xd7\x96\x20\x73\x26\x67\x2f\xe0\xf9\xae\xac\xd0\xe8\xad\x8c\x80\xc7\x18\xb9\x22\x4f\x1c\xd1\xa4\x80\xec\xad\xca\xa2\xcb\xbd\x9b\x00\xdd\x49\xd7\xf6\x9a\x0a\xd5\x01\xde\x33\x61\xf9\x70\x61\xb6\x0e\x50\xa2\x81\xcf\xd7\x8a\xb5\x93\xc0\x2e\xf7\xdb\xb2\x2d\x0b\x1e\x80\xa0\x4d\xee\x7a\xe6\xc3\x40\x81\x5d\x11\x27\x53\x78\x33\x4b\x01\x8b\xae\x79\x9d\xda\xa8\xd0\x0d\xf8\xf2\xec\xb1\x74\xae\xf0\x3a\xc0\x81\x7d\x1c\x47\x38\x97\x51\xf0\xe3\x95\x07\x43\x20\x0d\x05\xf6\x04\xc8\x27\x09\xd1\x93\x88\x15\x78\x3e\x55\xbc\x6d\xfa\x8b\x0a\xf0\x57\x78\x5d\x57\xd3\xa4\x04\xe0\xce\xbf\xba\xac\xbd\x48\x0d\x48\xaf\xfd\x71\xdf\x91\xa0\xe3\x80\x59\x4f\x0a\x02\xeb\xf7\x97\x00\xca\x7b\xd2\x76\xa5\x50\x15\x91\x91\xbd\x60\xf4\x48\x4c\xeb\x1b\x32\xc6\x04\xc5\xf4\xbf\xe9\xa8\x02\xd4\xbe\x5d\xf3\x94\x8d\xbc\x40\x20\xad\xb1\x80\xeb\x15\x07\x61\x58\xc1\xad\xda\x89\x57\x71\xfb\xd6\x00\x3a\xd3\x93\x86\x0d\x4c\xf6\x03\x9e\x94\x71\x78\xc4\xd3\xbb\x11\xd0\xca\x50\x5a\xf1\x0f\xd7\x75\x40\xc1\xec\x1d\xc1\x86\x2a\x45\x80\x5f\xfb\x16\x4a\x1e\x87\x17\x01\xea\x89\x6c\x6c\xfb\x87\x2d\x45\x4a\x0b\xff\x90\xdb\x11\x61\x94\xb5\x8c\x3b\x7c\xc7\x23\x89\x2b\x7e\x80\x42\x5c\x18\x6c\x5e\xfa\x99\xc0\xfe\xf4\x96\x74\x3b\x17\x49\x40\x23\x5a\x4e\x39\x81\xe5\x4b\xc5\x44\x42\xc1\x5b\xfb\xd7\x9d\x24\x54\x56\xc9\xbd\xc3\xf8\xb0\x18\x30\xa7\xe5\x53\xd4\xf3\xab\x59\x80\x3a\x41\x4d\xe3\x65\x19\x64\xc0\x75\xed\x3d\x15\xff\x46\x4c\x4f\xb4\xeb\x32\xde\x5f\x07\x9c\xb8\xcd\xc9\x76\xef\xa0\x2f\xe0\x2d\xf5\x35\x7f\xee\x2e\x43\xe2\x8b\x56\xe2\x4b\xaa\xca\xe5\x8d\x8c\x5b\xd4\xdd\x52\x1e\xd0\x41\x52\xf5\xdb\xee\x09\x7d\x40\xd9\xc9\x98\x92\x5f\x53\x69\x14\x38\x2c\x63\xb1\x83\x7d\x2e\x13\x30\x62\xc7\xdb\x4d\x54\xe1\x59\x80\x65\x67\x52\x54\x4b\x35\xdf\x10\x2b\x48\xff\xbc\x14\xc8\x20\xb1\x09\xf0\x75\xf7\x7c\x0a\x6f\xe5\x51\x40\xd2\x9c\xd2\xfa\x8f\xba\x66\x80\xf0\x7b\xe6\xf6\x5b\x91\x0d\x80\x03\xe1\x91\xeb\xe3\x8a\x94\x28\xa0\xac\xa4\xaf\x93\xed\xf8\x8e\x40\x21\x3f\xb6\x81\x32\x6f\x09\x40\x9b\x43\x8a\xc5\x93\xa3\xc5\x80\x66\x4d\x67\x5e\x48\xff\x02\x40\xd1\x13\x2f\xaf\xf9\x54\xb3\x00\x7e\x94\xf3\x6a\x55\x49\xca\x27\xd0\x32\x94\xb9\x8b\x55\xf7\x08\xac\x82\x43\x2d\xeb\x36\xdf\x16\xdb\x0c\x78\x74\xab\xc2\x2b\xba\xca\x35\x80\x7f\x3b\xdf\xaf\x89\xd9\xa8\xb6\x1a\xda\xea\xf7\x5a\xcb\x99\x70\x01\x9a\xd1\x32\xc6\x9d\xfc\xce\x0d\x48\xfe\x14\x73\x52\xdf\xbd\x15\x70\x07\x91\x65\x45\x68\x0e\x01\x5a\x3e\xba\x45\x3a\xfe\x62\x18\x30\x50\x85\x39\xa8\x20\xb4\x0f\xb0\x44\xb1\x48\x3b\xf7\xb8\x3a\x60\x77\x9a\xea\x27\xd9\x63\x3f\x01\x9b\x4c\xc2\x1e\xb8\xb3\xfe\x04\xe4\xed\xd9\x7a\x37\x62\x08\x01\xb7\x05\x8c\xd0\x59\x24\x37\x00\x4e\x0a\x1c\xca\x4b\xd9\x95\x07\x78\x81\x86\xf9\x2e\x67\xce\x0f\x02\x75\x07\xb2\x78\x1e\x16\xbc\x03\x6c\x9b\x57\x75\x79\xdf\x29\x00\xa8\xde\x13\xca\xbe\x33\xf1\x00\x60\x65\x82\x73\x1d\xdf\x77\x66\x0a\x44\x36\xb0\xb6\xb4\x86\x94\x12\x78\xcf\xbb\x5a\xfa\xb1\xf0\x0e\xc0\x93\x1b\x47\xed\x52\x5c\x55\x01\x27\xdc\x6c\xce\xc6\x3e\x12\x05\xec\xf8\x36\xd2\xb3\xf9\x3a\x0d\xa0\xbe\xbf\x43\xd3\x9a\xbe\xa7\x80\x85\x17\x44\x44\x4c\x06\x2a\x00\x43\x32\xa5\x6d\x04\xef\x5e\xa1\x00\x13\x4b\x8a\x85\x8e\x04\xeb\x7f\x85\x51\x9c\xc6\xce\xcd\x5b\x67\x09\x0c\x8a\xfb\xd3\x3d\x64\x70\x08\xf0\xac\x0e\x93\xb7\xdd\xcc\x22\x81\xe6\xc7\xb7\x9f\xd4\x66\xd6\x83\x55\xe0\x6b\xb6\xc1\x2e\xd9\x4d\x86\x02\x81\x1f\x8f\x7b\x79\x4a\x3d\x01\x1c\x23\xef\x09\x5b\xbf\x76\x80\x40\x9e\x27\xa2\x69\x9d\x37\xdc\x60\x05\xf5\x19\x65\x6e\x71\xb4\x3f\x09\xe4\xde\xe5\x64\xf2\x68\x1d\x0b\x20\x93\x54\xbe\xdb\x98\x07\x27\x20\xe9\x5b\x6c\x61\x04\xef\x3b\xc0\xb1\x5f\xfd\x6d\x3b\xb7\x55\x2f\xaf\x0c\x7e\x1e\x61\xa5\x5c\x80\x36\x63\xf7\x95\x95\xf4\x74\x00\x8f\x66\xdb\xed\x2a\x97\x62\x04\x34\xf7\x4f\xb7\x78\xb6\xd0\x42\x60\x0d\xe3\xbb\x03\x9d\x9d\xde\xb0\x82\xe0\x54\xc6\xe3\x6f\x32\xf8\x00\x1b\xad\x68\xf8\xed\x73\xcb\x00\xe7\xcf\x65\xca\x8a\xd8\xd6\x03\x6a\xf1\xfe\x1e\x4d\xbb\x51\x05\xe8\x1b\xf3\xf3\xb4\xe0\x50\x3e\x60\x6d\xf8\xc9\x3b\x36\x9c\xcf\x00\xed\xd2\xae\x64\x3c\x6d\xa8\x05\xdc\xff\x26\xb8\xbd\xc2\x9e\x04\x48\xfb\x82\xf7\x0d\x0f\xf4\x11\x98\xaf\xc7\xc9\xfb\xfb\x7d\x28\xac\xc0\xf6\x0e\x03\x35\x8d\xe5\x66\x40\xb3\x2b\x83\x0b\x41\x5a\x83\x04\x0e\x69\x3f\x6c\xf8\x7e\x6d\x13\xa0\xc5\xb7\xf3\x06\xaa\x57\x0e\x00\x4a\xcf\x72\x86\x1e\xe1\xb6\x00\x3c\xb5\xbf\xf4\x7d\x6a\xcc\x1f\x02\x87\xe7\x4e\x3c\xf0\x21\x13\x80\xa6\xfe\x5a\x96\x1a\x67\xf4\x01\xd9\x9e\x97\xe4\xfc\x76\x5c\x4b\x01\xcd\xab\x8c\x0a\xc1\xa3\x42\x80\x91\x13\x9f\x7e\xe5\x0d\xaa\x03\xde\xf0\x36\x15\xeb\xbd\x17\x09\x28\xb1\x18\x3a\xc6\x20\x98\x44\x81\xa6\x92\xcb\xaf\xfe\x27\x06\x16\x6a\x0f\xef\x30\x36\xa4\x40\x3b\x55\x45\x17\x43\xe1\x31\x8a\x22\xba\x96\x89\x8f\xa5\x50\x1a\xf0\x7d\x8b\xa9\x62\xab\x9a\x31\xa0\x14\x1a\x38\xeb\xe2\x5a\x40\x9e\x96\xf5\xca\xbf\x3d\x96\x0f\x5b\x8a\xbb\xec\xae\x9c\xdd\x80\xbf\x19\x02\x2d\x27\x5e\x2a\x02\x6a\x73\x1f\xa8\xb7\x8e\x66\x05\xcc\xfd\x70\xa7\xd9\xe0\x60\x2e\xa0\x91\xa7\xf9\xcf\x2f\xe3\x5c\x80\x55\x16\xca\x2e\x5c\x16\x8d\x80\xcc\x86\x8e\x15\x1d\xa1\x23\x80\x06\x03\xea\xd2\xc9\x97\x5f\x02\xda\x4f\x0c\xc6\xbf\xf0\x19\x01\xf4\x62\x1f\x69\x09\xb3\xaa\x05\xf4\xed\xb3\xf5\x9e\xdd\x72\x14\xf0\xd3\x77\xe3\xa7\x5a\x54\x0b\x04\x06\x2c\xbe\xcc\x38\xf1\xbd\x85\x84\xbe\x82\xa9\xdd\x69\x5f\x4f\xc0\x0a\x46\xb3\x4f\x1f\x66\xd5\xe5\x01\xdc\x67\xa1\x2b\xfd\x97\xac\x07\xe8\x5a\x69\x1c\x7a\x40\x97\x0f\xb0\x6f\xe4\x66\xa1\xbf\x48\x29\xe0\xd1\xb6\x9a\x14\x3e\xb1\x3a\xc0\x66\x62\xff\x17\x97\x35\xc7\x00\x7b\x33\x02\xea\xef\x26\xf2\x01\x4e\x4e\xd8\x49\x1d\xac\x63\x05\xdc\x28\x5e\x75\x69\xc0\x8b\x0e\xf0\xdb\x42\xca\x63\x42\xbf\x1c\xf0\xcb\xa3\x2e\x4b\xa1\xf4\x35\x80\x8a\x02\x43\x27\xff\x8a\x25\x51\x60\xf6\xb2\x34\x83\xcd\x41\x21\xc0\xcf\x8a\x9b\x76\x8d\x24\x1d\x03\x2c\xa1\xed\xe3\xf4\xcc\xd1\xa1\x40\xa0\xe4\x2d\x71\x3b\x73\x56\x0a\x1c\xa1\xdf\x29\xa1\x71\xec\x3d\x09\x77\xbc\x2b\xb6\xaf\x11\x12\x03\x8c\xba\x6e\xa3\xf4\x37\x78\x9a\xc0\x41\x46\xb6\x27\xa5\x55\xeb\x00\x35\xd7\x35\xea\x37\xc4\xe7\x13\xe8\x34\x61\xc4\x7a\xfa\xc8\x11\x58\x05\x6e\x37\x2e\xcb\x9b\xf2\x31\x01\x5a\xfb\x46\x40\x9f\xdb\x2b\xc0\x8f\xcc\xc5\x5d\xf9\xf0\x06\x50\xa1\x96\x7f\xd4\xab\x49\x05\x30\x22\x5f\x98\xde\x62\x3a\x11\x50\x66\x96\x65\xdb\x89\x57\xe5\x80\xee\x54\x29\x73\xfc\x1a\xa7\x00\x9d\x68\x32\xcd\x51\xd9\x12\xf0\x44\xc2\x9e\x7a\xee\x35\x54\x80\x9d\x8c\xcc\xe7\xba\x93\x77\x00\x7a\xc6\x6e\x6b\xed\x3a\xe5\x0e\x73\x9b\x7c\x83\xc3\xa5\xe3\xc9\xf8\x52\xff\x8c\x96\xda\xb9\x7c\x32\x7e\x30\xbc\x8b\x1c\x7a\xee\x80\x89\xc5\x07\xe5\x6e\x8e\x84\x00\xfa\x0b\xa2\x86\x49\x8f\x0f\x19\x8f\x93\xe4\x12\xf3\x6f\xac\x01\x94\xfd\x7a\x58\xf0\x50\xab\x32\xa0\x40\x56\xdb\x71\x73\xa7\x7d\xe4\x95\x72\xae\x6d\xd3\xa5\xc9\x3d\xdf\x09\x24\x72\xe8\x2a\x16\xe9\xbf\x11\x68\x91\xc0\xf5\x2c\xa8\xf8\x14\xa0\x2a\x90\x7c\xf6\xa5\xcb\x03\x72\xdf\xcd\x3f\xf3\x20\x72\x89\xc0\x8e\x8b\x2f\x78\x1e\xd8\xce\x10\xa8\xa0\x23\x7a\x62\xc3\x2c\x33\x60\x58\x5e\xe3\x85\xf7\xb5\xaa\x80\x41\x8d\x6b\x7f\x08\x7c\x15\x02\x7c\xf9\xfa\xa9\x84\xba\xf9\x16\xc0\x85\x5d\x0f\xac\xa3\x65\xa2\xc8\xf8\xee\xc6\x8b\x40\xb9\xb1\x14\x32\xf2\x6b\x4e\xc8\x6a\x64\x5e\x01\xec\xbb\x65\xed\x16\xf6\xf0\x31\x19\x77\x2b\x2a\xc6\xb1\x6b\xda\x93\xf1\x53\xc8\x79\xf5\x0e\xcf\x72\xc0\x17\xfc\x5e\x1e\xf2\x5b\x2b\x01\x5d\x8a\xc4\x8d\x92\x05\x2b\x01\x1f\x0d\xb7\x93\xe4\x96\x0b\xc9\xf0\xdc\xe8\x62\x64\x0a\x20\xfd\xbe\x92\x07\x83\xce\x29\x80\xa2\x61\xea\xd1\x7f\x98\x1e\x51\x8c\x84\x12\xb8\x5d\x07\x5d\x1f\x01\xf6\x89\x3f\xe8\x59\x4c\xc8\x02\x74\x11\x8b\x0b\x3a\x78\xbe\x06\x30\xf8\x3e\x4d\x41\xf5\x75\x61\xc0\xd0\xfd\x67\xca\x93\x1e\x4e\x11\x28\xa0\x21\xa1\x43\x3e\x72\x13\x56\x81\x36\xd7\x0d\x11\xeb\x73\x3b\x00\xbb\x44\xf7\x68\x31\xfb\xca\x03\xbe\x9f\x3a\x55\x54\x1b\xcf\x06\xe8\xbc\xde\x3f\x9d\x73\xf9\xab\x1d\xc4\xc5\xc0\xa8\xf4\x51\x0d\x70\x9e\x65\x71\x56\x5f\x60\x80\x84\x7c\x59\x7b\x15\x4f\x65\x39\x02\x5e\x20\xee\xfe\x28\xda\xe4\x0e\x38\x94\xf3\x60\xfd\xdd\x1f\xc2\x80\x49\xfe\x3f\x22\xb2\xc4\xba\x49\xf8\xb6\x85\x37\x59\xa1\xc5\x1c\x56\xc1\x9f\x93\xdb\xf6\x9e\xb8\xc4\x04\xb8\xf9\x95\x96\xc0\xdc\x51\x12\x81\x81\x8c\x95\xc5\x23\xe2\x66\xb0\x82\xa8\x0f\x5b\x8e\xa8\xf5\x7a\x02\x3e\x48\x4a\xdb\x90\xb8\xc5\x17\xb0\x18\x7c\x9a\xd9\x23\x6f\x91\x91\x54\x10\xf1\xbe\x77\x3d\x12\x2b\x60\xf7\xf5\x0b\xe5\xe3\x9c\x25\xd0\xfd\xea\x3a\xdf\x11\xc9\x3d\x80\xbc\x13\x95\x01\xfc\x0f\xbb\x49\xd8\xad\x71\x26\x4f\x7b\x07\xc0\x0a\x24\x6d\x75\xb4\x1f\x00\x1f\x60\x53\xcb\xc5\xb8\xb4\xe5\xb7\xd7\x63\x7f\xc6\x75\x15\xe6\x22\x80\xbd\x5a\x9b\x16\x55\x4e\xec\x03\x1c\x93\xd2\xa6\xb9\x74\x8f\x1d\xb0\xd6\xba\x77\xfc\xec\xa7\x1d\x14\x48\xe1\xe8\xa0\x3e\x38\x25\x09\xc8\xb7\x5f\x34\xed\x78\xa2\x18\xa0\xc4\x80\x50\xff\xd9\x81\x09\x02\x85\x14\x4b\x75\x14\x33\x62\x01\x75\x8a\x32\x3e\xa5\xf8\x9d\xa2\x80\x42\xee\xcb\xcb\xfd\x47\x45\x00\x87\xaf\x55\x7c\x9a\xad\x17\x00\x94\xed\xf9\x78\x4e\x39\xb6\x06\xf0\x73\xad\x9a\x42\x53\x59\x21\x20\xa8\x49\x4d\x17\xe4\x91\x01\xb3\x2f\x5e\x6e\x11\xcc\x25\x03\x8e\x77\xfe\xcc\x1b\x97\xf2\x07\x54\x4a\xd7\xc9\x78\x4b\xe5\x04\xe8\x4b\x2d\x36\x73\xf8\xa3\x3e\xe0\x60\xe9\xa9\x77\x8e\x69\xa9\x14\x78\xa2\x19\xb8\xd6\x69\x19\x53\xf4\xf3\x83\x99\x43\x86\x80\xc1\x0d\xdb\x4f\x3d\x0f\x54\x24\xaf\x94\xff\x20\xa1\x62\xcd\x0b\x5f\x81\x4d\x80\xc5\x73\x57\x6c\x2a\xc3\x32\x49\xd8\x1f\x32\xd2\xfa\xc5\xe2\x2e\xcc\x7d\x6e\x1e\xbc\x6c\xb5\xf2\x11\x7f\x79\xde\x1d\xb5\x79\x54\x0b\xb8\xc0\x2e\xe6\xf2\x3f\x91\xb0\xdf\xe7\xd7\x87\xd1\x49\x02\x67\x2c\xd7\x7c\x4e\xee\x91\x06\x9c\x7f\x5f\x24\xfe\x29\xd4\x11\x70\xd3\xcb\xbd\xbb\xa3\x3c\xea\x00\x7b\x63\x98\x37\x49\xf4\x68\x01\xc6\x69\x7a\x8c\x3d\xcd\xd5\x01\x64\xee\x3a\x11\xf4\xfa\xa6\x28\x05\x06\x58\xf5\xf8\xbb\x7a\xdc\x29\x50\x75\xe1\x9d\x07\x91\x23\x00\x78\x43\xfb\x5c\x86\xf9\x59\x71\x40\xbe\xcf\x19\x82\x8a\x7b\x19\x00\x95\xce\x94\xe1\xae\xde\x63\x80\x71\xc5\x4b\xe2\x17\x97\x17\xa2\xff\x20\x5c\x55\x5f\x50\x5d\x5c\x1d\x30\x5b\x31\x96\xfd\xa2\x91\x24\x05\xae\x0c\x28\x5e\xdd\xdb\x03\x80\xd2\x43\x62\x5e\xb1\x07\xeb\x01\x83\xd6\x36\xee\xa1\x87\x02\x40\x93\x2f\x9c\x8e\x66\x72\x37\x01\x45\x55\x42\x84\x7a\x42\x4e\x01\x06\x32\xab\x5b\x3b\x35\xc5\x92\x57\x8a\x75\x8d\x67\xfc\xe7\x6e\x13\xc0\xb3\x2f\xcb\xf9\x6e\xcb\xb9\x03\x6e\xbf\xf3\xf2\x7a\x84\xca\x02\x81\x05\xa5\x72\x1f\xf4\x17\xb5\x61\x05\xc2\x9f\x7b\x77\xac\xa1\x0e\xa7\x40\x4a\xf8\x8d\x04\xde\x06\x77\x40\xe9\x52\x7b\xf5\xd7\xfa\xc7\x00\x85\xb7\xa7\x1a\x7b\x6e\xd0\xa1\x80\x4a\x5d\xf5\xdf\xab\xf9\xec\x80\xf5\x05\xec\xef\x18\x02\xf2\x01\x07\xb5\x86\xa9\xce\xdc\x2a\x21\x63\x79\x9d\xc4\x9c\x9f\x91\x37\x60\xba\x42\xbf\xe9\xa1\x07\x35\x80\x97\x86\xde\x37\x95\x8a\x3d\x05\x1c\xed\x9c\xfe\xcb\x70\xe1\x03\x81\x87\x42\xe5\x37\xac\x29\xbd\x04\x2b\xb8\xd5\xbe\x19\x37\x69\x08\x01\xe6\xb8\xb9\x4c\x1d\xd8\x3f\x41\xac\xc0\xb1\xc6\xfc\x9e\xf8\x1d\x0d\x58\x05\x72\x96\x51\xfa\x07\x4a\x3b\x08\xdc\x6f\xdc\xb9\xdd\x36\x5e\x16\x70\x53\x40\xed\xfd\xd9\xde\xb3\x80\x01\xd2\x2f\x6c\x98\x63\x7d\x00\x27\x47\x95\x94\xcc\xc3\x37\x02\x1e\xda\x6c\x65\xfa\x9c\xa5\x0e\xf0\x74\xbe\x78\x8f\xff\xfa\x3a\xc0\xe9\x2e\xf7\x8b\x11\x3f\x15\x29\x71\x39\x82\x7e\x6c\xe0\x03\xb1\x02\xed\x69\xad\x7b\x5b\x79\xc6\x08\x9c\x5f\xbf\x23\x20\x52\x47\x1a\x50\x07\xdf\x07\xf8\x19\x11\x80\xae\xea\xce\x4e\x97\x46\x53\xc9\x58\xef\x28\xec\xdc\x32\x1e\x0f\x38\xb5\xe5\x12\xad\xd6\xad\x0e\xc0\xd3\xc9\xe2\x17\xcb\xe2\xc5\x00\x73\x8f\x0f\x79\x7a\xd0\xd7\x01\x2e\xbc\x7c\xdb\xb4\x56\x76\x1f\x60\x76\xac\x48\x31\xff\xb9\xd7\x80\x13\x87\x97\xe6\xce\x14\x97\x03\x66\xb5\x34\xc4\x1c\x3e\x5a\x4d\x46\x9f\x7c\x2a\xeb\x96\x8b\x86\x80\x29\xe6\x67\xfa\x15\x36\x31\x03\xba\x08\x8e\x38\x69\xf3\xaf\x03\x9c\x16\xea\x29\x79\xdb\x36\x40\x60\x79\xe0\xef\x1d\xef\x85\xe3\x00\x8b\x1e\xcc\xef\x74\x2a\xbc\x0b\x2b\xe5\xbd\x07\x51\x64\xe4\x74\x8e\x02\xf9\x37\x6f\xf2\x7c\xe5\x7c\x46\x46\x91\xd4\xd6\xf6\x62\x86\xad\x80\xc1\xf4\x8f\x18\xc2\x5e\xb0\x02\x2a\xfd\xba\x48\xb6\xa7\xa9\x05\x6c\x0e\x70\x97\x3a\xe6\x50\x07\x58\x1f\x90\xa6\x9f\x67\x48\x06\x3c\xcc\xc3\x92\xc4\x1f\x60\x04\xa8\xf2\xfa\xee\x97\x93\x1a\x71\x14\xe8\x1f\xb5\x50\x3b\xba\xb3\x1c\x30\x7a\x9b\x28\xbf\xd4\xde\x7a\x40\x1e\x3d\xd6\xe7\x1c\x16\x05\x80\x3b\xe9\x74\x75\xb4\x0a\x4c\x01\x7d\xdf\xcb\x38\xf8\xda\xb5\x03\x7e\xdf\xf2\xfe\x9a\x77\x73\x17\x81\xbf\x45\x87\xff\x3c\x76\xae\x02\xcc\xfc\xd5\x3b\x10\xd4\x95\x44\xc6\x23\x13\x5b\x9e\x70\x39\x56\x91\xb1\xf6\xc6\xa5\x8e\xa3\xb2\x55\x64\x2c\x91\xf4\xd8\xdb\xaf\x58\x01\xd8\x34\x9e\xf1\xf9\xae\xa3\x03\xe0\x90\x0b\xc4\x5f\xd3\x75\x01\xdc\xbc\x10\xa3\xe3\x70\x61\x2f\x60\x53\xa4\x33\x39\xa4\x3e\x16\xf0\x64\x0c\xe7\xeb\xad\x23\xf2\x80\x1d\x2e\x47\xec\x8b\xfa\x77\x00\x1e\x74\xd6\x0a\xf8\xc2\x51\x0b\x28\x68\x1e\xd4\x63\xdf\xcb\x0f\x68\xe7\x7b\xb5\xcf\x73\xb4\x03\x50\x4b\x3a\x23\xa5\xb6\xbf\x03\xf0\xc2\x83\x90\xd7\x0f\xc7\x3a\x00\xdd\x45\xfc\x82\xba\x9c\xea\x00\x69\x86\xbc\xcd\x1d\xd8\xf7\x00\x4e\x07\xff\xa8\xfa\x43\x5d\x07\x68\xab\x58\x9d\x1c\x1f\xf8\x0e\x90\xff\x5c\x78\x62\x6a\x73\x1e\xe0\x90\x89\x88\x6a\xda\x32\x64\xb2\x98\xbf\x7c\xbb\x62\x4f\x81\x3b\x0d\xc2\x5b\x65\xad\xca\xc8\xf8\xed\x19\x5b\x14\xcf\xa9\x5a\x40\xcf\x11\xdb\xc8\x8a\x07\xb9\x80\xc6\x61\xdb\x2d\xc6\x2e\x91\x01\xb9\x85\xde\xfc\x91\x7f\x7c\x0f\x90\xf5\x84\xda\x3d\x81\xad\xc5\x80\x19\x0c\xb4\x57\x4e\x92\x2a\x00\xdd\x1e\x9e\x7c\xf2\xaf\xfc\x07\x39\x53\x01\xdf\xcd\x9f\x47\x03\x6a\x75\x7e\xd8\xfc\x3c\xd1\x1f\x70\xe3\xcd\x5a\x69\xc7\x74\x7f\xc0\x3a\x39\xf3\x16\x9e\x48\x7f\xc0\xdb\x75\xed\x86\xb2\xef\xc3\x01\x4f\x3f\x7a\xd6\xc1\x39\x1b\x0d\xe8\x96\x77\x54\x3f\x31\xae\x81\x8c\x51\x7b\x4c\x2f\x47\x89\x90\x01\x3f\x7e\xb6\xea\xb8\x70\xae\x0e\xf0\xf6\xd9\x56\xb8\x5b\x9f\x48\xc6\x2b\x6b\xc7\xcb\x9c\xaf\xe7\x00\x86\x7b\xb9\x3e\x57\x7d\xed\x07\xd8\x92\x91\x73\xfc\x0e\x5c\x22\xa3\xc5\xf4\xc4\x25\x0f\x05\x7e\xc0\x05\xc7\xfc\xf2\x77\xc9\xf5\x80\x0d\xbf\xcf\xbc\xe5\xc4\x66\xc0\x1e\x06\x11\x07\xee\x62\x27\x32\xee\x65\xba\xfd\x22\x3f\x25\x18\x90\xbe\x23\xfd\x04\x73\x58\x33\xa0\x4b\xa1\xfe\x1f\xa6\x65\x4c\x74\x50\x47\x3d\x3a\xd6\x05\xb8\x59\x42\x3b\x87\x3e\x26\x0f\xb0\xa3\x64\xbf\xe5\xbb\x53\xa5\x80\x33\xec\x6e\x52\xae\x7d\x6e\x80\x56\x5a\x7f\x7b\x8f\xab\xd4\x03\x7e\xeb\x69\x5d\xf3\x46\x41\x02\x30\x44\x37\xe7\x73\x8b\x2b\x13\xe0\x54\xb0\x6e\x9b\xbc\xa9\x33\xe0\xa1\x25\x25\x9d\xfd\x95\xde\x80\x0f\x74\x1f\x39\x2b\x3d\xd7\x01\x3c\x42\xf3\x75\x30\x46\x94\x0a\x70\x63\x4d\x56\xe2\x3b\xcb\x02\x32\x9e\x59\x77\x8e\xc5\xf5\x94\x29\xe0\x56\x29\xb5\x56\xc5\x53\x36\x80\xd1\xcc\x87\x4d\xf6\x3c\xc9\x07\xb4\x57\x2e\x7e\x50\xf0\x91\x11\x70\x8f\x9f\x6d\xfd\xe1\x02\x36\xc0\x3a\xe3\xa1\x6d\x4f\x54\x2f\x02\xfe\xfa\xa3\xd8\xaf\x26\x34\x43\xac\x82\xb8\x77\x97\x87\x88\x9d\xea\x80\x26\x7d\xe7\xed\x2d\x1f\x3e\x27\x30\xe0\x76\x65\x49\x7b\x5f\x3d\xe0\xdb\xbd\x39\xdf\xc2\x48\x75\x64\x14\x49\x58\x57\xee\xf2\xb4\x84\x8c\xc7\xb6\xe9\x8a\x6a\xe7\x97\x03\x86\x1e\xf3\x7c\xec\xdf\xbb\x0b\xd0\x9b\x43\x9b\xc3\x92\xa6\x00\x70\x76\xfa\xba\xc4\x48\x67\x2d\x60\xa4\xa1\x4a\xde\x91\xa6\x62\x32\xde\x2a\x31\xda\xe6\xca\x1e\x05\xa8\xba\xdb\xf3\xa0\xa9\xf0\x14\x81\xf6\x6c\xb5\x17\x95\x33\x6a\x00\xa9\x8f\x0e\xf2\x1a\xee\xac\x06\x34\x19\x3a\xb1\xcd\xf9\xf4\x09\xc0\x1d\x8e\xc1\x4a\x1f\x6a\x6a\x01\x55\x1c\x47\x73\x1f\x85\x91\x00\x4f\x0f\x58\x3f\xbe\x70\xf4\x15\xe0\xf3\x75\x51\xcd\x2f\xf7\xb6\x01\xfe\xf8\x5b\xb6\xd6\x76\xb9\xd8\x68\xc6\xff\xd4\xf5\xd9\x01\x78\xd5\xa7\xa8\x35\xb6\xa7\x0b\x70\x49\xaf\x6c\x8b\xe8\x9d\x67\x80\xf7\xee\x45\xdf\x1e\x66\xef\x02\x3c\xfe\x71\xe6\xf8\x75\xb3\x18\xc0\xe8\xf4\x74\x17\x3a\xee\x4b\x80\xa1\x62\xc6\x8c\x43\x32\x1a\x80\x59\x97\xee\xfd\x99\x6d\x62\x05\x7c\x71\x34\x20\xb4\x2d\xe6\x1c\xa0\x11\xad\x5e\x21\xa3\xad\x06\x05\x48\x8a\x37\xc7\x2c\xe4\x05\x29\x20\x4d\x73\xef\xc9\xab\xcb\xfd\x24\x4c\x95\xab\x62\x73\xe9\xf9\x4a\x60\x61\xf0\x15\x2e\xa6\x39\x31\xc0\xab\x61\xdf\x7f\x9a\x84\x8b\x50\xe0\xb4\xbb\x2c\xa3\xb7\x83\x3a\xa0\xf9\xd9\x69\x0b\x6f\xb5\xbd\x14\x10\xb3\xba\xdc\xb0\xc8\xbc\xbc\x2c\x1b\x7d\x4f\x6b\xbe\x4d\x03\x98\xab\x5d\xa4\x5b\x9c\x25\x0e\xd8\x7f\xf7\xc6\xfa\x13\x29\xa7\x00\x6b\x24\xd7\x9b\xda\x6c\x30\x00\xf4\x13\xf9\xd4\xf7\x73\x64\x2b\x60\x69\x89\x85\x64\xbc\xec\x46\x40\x9a\xc6\xf5\x2f\x44\x8b\x77\x50\xc0\xf4\x2e\xf7\x9f\xbf\xf3\x8f\x48\xa8\x6e\x17\xfc\x63\xb2\x94\x07\x30\x85\x2a\x43\x9e\x6b\xf4\x00\x05\xc4\xc6\x99\xa5\xff\xfc\x9c\x27\x50\x49\x9f\x68\x6f\x0d\x93\x04\x14\x13\xb3\x73\x6a\xdb\xad\x05\xf8\x6b\x6d\x63\xc6\xf6\x8a\x6d\x80\xf2\xd7\xa7\x2e\x0f\x29\x6d\x01\xf4\xe4\x62\x36\x69\xbc\xdc\x01\x38\x8c\x25\x7f\x1b\x96\x11\x76\x4d\x34\x79\x31\xb2\x0e\x90\x7b\xef\x03\xa3\x2f\x87\x6a\x01\x6f\xbd\xaa\x88\x7e\x1d\xbc\x07\x30\x53\xcb\x40\x37\x4c\x8e\x09\xf0\x8f\x8d\x8f\x11\xbf\xf8\x0c\x81\x92\x99\xd1\xbf\xfe\x1e\xaf\x05\x74\xfe\x25\x99\xa7\x91\xd0\x08\x73\xa6\x35\xfc\xf2\xbc\xcc\x80\x25\x4d\x19\x6e\xd1\x0e\x25\x80\x82\x05\x46\x53\x24\x6b\x27\xc0\x8d\xdf\x58\x9e\xf8\xd8\x54\x90\xf1\xc9\xc4\x3b\xed\x62\xa6\x3a\x40\x93\xf2\x71\xdf\xc2\xb7\x86\x80\x7d\xb5\x9e\x2a\x89\x2a\x6c\x80\xdf\xfa\x40\xcc\x46\xc3\x82\x02\xba\xc6\xc7\x53\x7a\x68\x24\x29\xe0\xf1\xf7\x20\x47\xf4\xe3\x77\x04\xbe\x5a\x9b\x4a\x95\x3a\xa1\x02\x28\xf6\xd6\x41\xcd\xbd\x9e\x17\x90\x83\x7c\x8a\x70\x1c\x43\x02\x03\xd7\x0a\x7d\xec\xcb\x55\x85\x15\x64\xdd\x92\x23\xb7\xdd\x14\xa0\x80\xcc\x51\xa5\xcd\x1e\x71\x7b\x01\x6f\xdb\xcb\x7c\x92\xbb\xad\x49\x81\xb9\xce\xef\xdb\x5f\x38\xab\x01\x4a\x14\xa8\xb3\x75\x79\x05\x91\x57\xca\xa2\xf3\xb7\x4f\xe7\xe1\x21\x81\x7f\xd7\xe6\x7a\x46\x3e\xae\x05\x24\x7a\xb7\xb5\x14\x94\x07\x01\xd6\x4c\x7c\xa3\xee\xa6\x91\x06\x64\xdc\xce\xa7\xe2\x38\xd1\x40\xc2\x87\xfb\xfa\x65\xda\xff\x9a\xc2\x2a\x78\x31\x9a\x5a\xc8\x17\xc7\x44\x01\x53\xe5\x97\xd6\x63\x15\xb5\x80\x53\x31\xbc\x9f\xfa\x86\xe7\x09\x7c\x30\xe2\x1b\x70\x7a\xe9\x14\xe0\x90\xf7\xdd\x3a\x61\xbd\x1c\x40\xf2\x69\xce\xb5\x33\x74\xe2\x80\xa9\xe3\x6e\x1f\x8a\x9f\xb3\x52\x60\xfe\x71\xb9\x5e\x0b\x1d\x1b\x60\x59\x14\xf5\xa1\x4d\xd7\xce\x00\x7a\x29\x9f\x19\x95\xfb\x5b\x05\x18\xec\x69\xb5\x2e\xcd\xaa\x02\xd0\x2e\x74\xe1\xed\x81\x13\x83\x80\x7d\x0c\xe6\x4a\xda\x8b\x85\x80\x7b\x16\x5d\x2e\xc4\x2b\xd4\x00\xda\x49\x85\x2e\x08\x04\xfd\x24\xd0\x99\xce\x4a\xc8\x6f\x2f\x07\xac\xe0\xa7\xfe\x92\x5b\xae\x5d\x2f\x09\xa5\xb6\x84\xb7\x97\x6e\x49\x20\x23\x29\xd8\x2d\xe6\xf3\x8c\x06\xa0\x95\x6f\xc8\xdd\x9a\x82\x1a\xc0\xa1\x34\x57\x73\x43\xb6\x6d\x80\x83\x52\x7d\x1f\x0d\x35\xeb\x01\xf7\x74\x6a\xdf\x83\xe5\xdb\x9c\xfa\x92\x9f\xcd\x77\xb9\x2c\xc0\x41\x9d\xd3\x35\x0a\x87\xfc\x00\x4f\x67\xd4\x46\x81\x2f\x09\x30\xd1\x4a\x4f\xa8\x2c\x84\x0c\x68\x5b\xc9\x61\xeb\x12\xfc\x0c\x70\x31\x79\x64\x32\xee\x6d\x19\x60\xbb\x7b\xea\x1a\x93\xcd\xed\x80\xac\x0a\x66\x4f\xc8\x19\xaa\x80\x93\x4c\xcd\x4c\xd5\xd6\x69\x80\xf5\x4b\x31\x7b\x9f\xd5\x1d\x06\xec\x3e\xe8\xe3\x22\xe8\x68\x0c\x38\xec\x56\xf5\x4e\x7f\xc9\x11\xb0\xbf\xc8\xbc\xe0\x70\x1e\x15\x60\xc5\xe3\x37\x21\x37\x8a\x2c\x01\xa7\x75\x65\x72\x12\xa9\x46\x01\x15\x59\xae\xfe\x50\xf3\xf8\x04\xd8\xc4\x71\x6b\x36\x61\xb9\x70\x4e\x77\x2f\x31\x59\xe7\x01\x66\xc6\x2e\x26\x56\xbf\x77\x22\xe3\x1b\xd8\xbf\x55\x71\x32\x10\xd0\xb9\x7a\xcb\x3e\xd6\x1c\x65\xc0\x4c\xda\xf5\x45\xdb\x32\xad\x00\x13\x4b\x0d\x3d\x39\x99\x8c\x01\x0d\x8b\x27\x4b\x9a\xd4\xdc\x00\xa3\x47\xe4\x0f\xae\x7f\xab\x09\x48\x0e\x3d\xc2\x50\xe0\x22\x05\x28\x66\xb4\x9e\xeb\xc7\x98\x3c\x60\xe0\xaf\xcc\xeb\x17\xa2\x74\x00\xd5\xaf\xfd\xfe\xfb\x98\x3a\x99\x8c\xba\x32\x67\x3d\xbe\xb7\x71\xc2\x0a\xfc\xb4\xb3\xc6\xc7\xd2\x46\x00\x33\x3d\xdb\x04\xf3\x14\x4b\x00\x5f\x6e\xd6\xb3\x7b\xba\x8c\x1e\x3e\xc3\x09\xa9\x02\x2e\x40\x76\x16\xf2\x0f\x39\x66\x25\xc0\x99\xe2\x2d\x45\xce\xe6\x52\x80\x82\xac\x05\xf6\x35\x83\xb3\x04\x32\xee\xac\x12\xa3\xba\xe1\x0f\xe8\x70\xe1\xfe\xde\xfb\x4d\x26\x80\xf6\x16\x91\x47\x06\x1f\x98\x01\xda\xab\x28\x86\x3e\x90\xb4\x06\x64\x39\xcf\x67\xab\x73\x5c\x8e\x02\x45\x6c\x6f\x1e\x4c\x9e\x7e\x4a\xc6\x8d\xaa\x91\x3e\x73\xac\x6b\x00\xb5\x94\xc3\xb5\xd9\xf5\xd7\x01\xba\xfa\xfd\x94\x17\xf1\xf6\x03\xd4\x1a\xcf\xfd\x92\x98\xed\x0a\xb8\xb8\x3b\xa9\xdd\xe6\xf2\x3e\xc0\xa5\xa7\x1e\x54\x32\xb6\x86\x64\x2c\xca\x9f\x9c\xcd\x4c\xb1\x20\xe3\xfb\xe7\xda\xaf\x6d\xca\x9d\x00\x69\x92\x1d\xaf\xe2\x73\x25\xc0\xa5\x97\x9d\x0a\x61\x6f\x84\x00\xa5\x7d\x4c\x3c\xc6\x73\x07\x08\x1c\x3f\xb4\x26\x90\x8a\xc7\x0a\xd0\xea\x25\x7f\xbd\x94\xe6\x5b\xc0\xd0\x22\xb1\xbc\xf9\xbb\x37\x01\xfb\xce\x7d\xfb\x5b\xcb\xf1\x80\xc0\xe9\x54\xa3\x0f\x6e\xca\x4a\xb0\x0a\x5c\xae\x65\x4a\x06\x8f\xb8\x91\x71\xb0\xf7\x6e\xbc\x9f\xcb\x34\x81\x05\x4e\x4b\x13\x45\x49\xad\x80\x2d\x1f\x12\xde\x5f\xf5\xac\x06\xa4\x6e\x62\xd1\x2e\xae\xac\x01\xec\x62\x3e\xfe\x93\xcf\xb6\x06\xd0\xa9\x91\xe8\xfd\x07\x93\x67\x9f\x25\xee\xdd\x9e\x23\xd0\xcf\x4c\x50\x33\x70\xea\x10\xa0\xe3\x28\x3d\x7b\xd3\x58\x0d\xe0\xee\x88\xc2\xb5\x29\x32\xd5\x80\xf6\xf4\x0b\x9d\x6b\x1a\xcb\x00\xa7\xab\x4c\xd2\xfc\x0c\x6b\x00\x1d\x0a\xa8\x7e\xe7\x57\x5c\x07\xbc\xd8\xf6\xc8\x6e\x7c\x69\x23\xe0\x70\x16\xc7\x60\xe6\xdf\x02\xc0\xd4\x2e\xf7\x89\xe0\xc5\x02\xc0\xbb\xef\xee\x1f\x9c\xa3\x51\x03\x94\x74\xe7\x7e\x5f\xf9\xcb\x97\x02\xf5\x5b\x1c\x58\x68\xeb\xe5\x96\xdf\xf7\xd5\xdf\xfa\xef\x2e\x6f\xa0\x8c\x47\xf5\x67\xb9\x0a\xc9\x28\x63\x4d\xd3\x44\x4e\x38\x0c\x48\x64\xf6\xbd\xcc\x1e\x92\x04\x8c\x92\x8a\x55\x7b\xdf\xc6\x0e\x48\x6b\x54\x66\xf7\xea\x50\x36\xa0\x98\x6b\x09\xad\x9b\x53\x3b\xe0\xb6\xe6\x4d\x65\x16\x12\x07\x00\x8f\x9c\xd9\x3c\x38\x9a\xfd\x89\x40\x4b\x13\x8d\xda\x29\xe5\xbd\xb0\x82\xed\x96\x31\x8b\x1b\x40\x18\xb0\xfd\x38\xf3\xe2\x58\x31\x19\xb0\xf5\x46\x65\x92\xed\xc5\x34\x32\x9e\x54\x74\x13\xdd\x33\x9a\x05\xc8\x3b\xce\xf2\xe9\xab\xfb\xa9\xd5\xb0\x2d\x3e\x80\x8d\x90\x53\x06\xb4\xab\xbb\x72\x7d\x6d\x7d\x3e\x60\xfa\xc8\x96\x1d\x6d\x82\x8f\x00\xbb\xf6\x44\xb5\x3a\xf4\x9e\x04\x54\xb5\x08\x67\xde\x94\x75\x9f\xbc\x52\xb4\x95\x87\x76\x7e\x1f\x13\x01\x54\x90\x90\xd4\xa0\x99\x94\x05\xac\xdb\x74\x82\xc9\xed\x6a\x33\x60\x2f\x7b\xd6\x25\xc3\xd8\x42\x40\x7b\x4b\xd9\x2d\x7f\x69\x27\x09\xb4\xed\xff\xf9\xee\x4a\xeb\x14\x81\x57\x0a\x7d\x33\xe7\x5b\x39\x01\xd9\x44\x2b\xa7\x46\x66\xe4\x57\x83\x5d\xe9\xcd\xe1\x42\xda\x9d\x80\xbc\xdb\x7b\xd9\xf7\x98\xcb\x00\x36\xbd\x3a\xb7\x3b\x35\x7d\x8e\x40\x03\xaa\xc2\xfb\x96\xcf\xc5\x00\xeb\x6e\x24\xc5\x99\x0c\xab\x02\xd6\xb9\xcf\x0b\xb6\x1e\xa8\x07\x64\x35\x08\x10\x56\xdd\x43\x06\x54\xd0\x34\x3b\xff\x6a\x6c\x2d\x60\xc9\x9f\x30\x11\xb3\x83\x6b\x01\x8f\x0e\x78\x1f\xad\x29\xe0\x00\x1c\x6a\xe5\x2c\xfd\x66\xa2\x47\x81\x02\xaf\x45\xf2\xcd\x4b\x6f\x09\x9c\xef\x38\xb3\x65\x56\x91\x0e\x70\x3c\xbf\xfd\xcc\xa4\xb0\x06\xe0\xf9\x9c\x5b\x61\x67\xc3\xaa\x00\xd3\x83\xd6\xca\x6b\x85\xed\x04\x3c\x5b\xbe\x26\xef\xbe\xe0\x18\x81\x33\xe5\x63\x6d\xaf\x1f\x8b\xc3\x0a\x8e\x70\xf7\x57\x1e\x4f\xa4\x02\x7c\x55\x22\xbd\xff\xf5\x21\x79\xc0\x43\x5e\xf7\x46\xfd\xed\x90\xc0\xd2\x75\xb6\xba\x5e\xed\xe5\x80\xc5\xd3\xce\x0c\xdf\xd9\x0e\x52\xe0\xc6\xfa\xd0\x77\x36\xc7\xc7\x08\xfc\x90\x38\xac\x79\xe7\x0e\x07\xac\xe0\x49\xae\xcd\x74\x6e\x77\x04\x60\x9d\x68\x67\x6d\xe0\x74\x11\x19\x3f\x5d\xf0\xba\xa9\x7f\xaf\x12\x70\xd3\x07\x5d\xe3\x7f\x68\xb9\x32\x10\x55\x71\xfd\x3c\xa0\xd5\xbe\xd2\xa1\x7e\x19\x45\x40\x3f\x23\x61\xda\xf6\xd3\x26\x80\x0d\x36\xdd\x04\x59\x47\x09\x30\xcc\xfa\xa6\xe1\xfe\x2a\x39\x40\x7a\xa1\xce\x8b\x9d\x54\xf4\x80\x8d\xfc\xea\x75\x01\x44\x29\xa0\x21\x9d\xe1\xc5\x9d\x51\x35\x80\xcf\x33\x15\x06\x62\x12\x6a\x00\xa5\x76\x94\xa8\x1c\x95\x3b\x0f\xd8\x67\xb9\x58\xc6\x2b\xee\x0a\xa8\x61\xb2\xf3\x16\x79\xde\x9d\x8c\xf2\xe4\x58\xbf\x47\x6b\x53\x61\x05\x07\xad\xb4\x0e\x1a\x70\xdf\x22\xe3\xec\xd8\x17\x0b\x1e\xd7\xa6\xe5\xe5\xd8\xf7\xcd\xfb\x17\x95\x80\xe2\x9d\xc3\x99\x7c\x1c\x87\x01\xb5\xb6\x75\xd9\x11\xd5\x07\x01\x9f\xc8\x77\xee\x6f\x3b\xa9\x05\x78\x58\x9f\xb9\xcb\xb3\xf0\x11\xe0\x6f\x3e\x85\x39\xfd\x65\x7c\xd9\xf1\xd1\x8d\xed\x94\x31\x05\xe8\xf3\xf2\x6b\x74\xb2\x18\x00\x33\x94\xcf\x7e\xf0\xaa\x2f\x01\x2c\x7b\xfb\x86\x7f\x5b\x2a\x3d\x60\x1c\x54\x3e\xb9\x5a\xfe\x0a\x70\x92\xaa\x5b\x67\x86\xe3\x35\x60\xef\x68\x65\xb4\xcf\x72\x21\x6f\xa7\x2b\x3e\x3f\x70\x19\xd0\xe0\x7e\x8e\x58\x08\x7b\x0d\x19\x73\xfb\x95\xcb\x3e\x73\xef\x03\x4c\xca\xfa\xc5\x4c\x48\x88\x93\x91\x41\x35\x37\x52\x99\x21\x10\x70\x9e\xac\xc8\xca\x28\x5b\x0c\xe8\x18\xc9\xd1\x52\x11\x61\x09\x18\xc5\xf2\x88\x9f\xe1\x94\x27\xa0\xab\xb3\xe8\xd2\x4e\xfd\x42\x32\xea\x8f\xd0\x5f\xb8\xc5\xe1\x01\x68\xe1\xbf\x5f\xed\xcd\x63\x4f\x40\x05\xeb\x11\xf8\xb1\xee\x02\xe0\xde\xb9\xc3\x0f\x25\x34\x5d\xc9\x18\xcd\xcc\xfe\xc4\x85\xf3\x02\xa0\x9f\xf3\xf5\x6b\xb7\x47\xce\x03\x0e\xd1\x6a\x91\x46\x77\xd3\x01\x8a\x0a\x72\x33\x74\xd2\xd4\x00\xfe\xc8\x51\x95\xfb\x07\xfb\x91\x80\x2f\x93\xcd\xa6\x80\x5d\xf4\x33\x77\x7d\x3a\x4c\x00\x35\xd9\x06\xd2\x9e\x04\x34\x00\xde\xfe\xc2\xd7\xff\x5d\xb5\x11\xd0\x80\xd3\xe1\x64\x0b\x39\x09\x70\x70\x8b\x61\xc0\x57\xd3\x32\xc0\x46\x59\xf7\x8e\x4a\x0f\x37\xc0\xf2\x23\x9e\x89\x67\xb9\x4b\x00\xef\xe5\x84\x9b\xc8\xdd\xf4\x01\x9c\xd1\x94\x7a\x6b\xef\xe7\x05\x28\xe8\x6e\x65\x75\xa9\xd6\x03\x70\x5d\x78\xbd\x01\xd5\x49\x02\x70\xed\x54\x72\x87\x53\x0e\x3f\x20\xb7\x5b\xd4\xf5\xd0\x77\x4e\x14\x60\xdb\xe5\xaf\x9b\xfa\xd3\x01\xf0\x14\xef\xc3\xc2\xb4\x8c\xb5\x80\x87\xcf\x56\xeb\xc4\xed\x7a\x4b\xe0\x9c\x10\x99\x2b\xc8\x69\x03\xa0\x93\xca\x82\x49\x6c\xfc\x73\x58\x29\x27\xca\x87\x1b\xdd\x4e\x7d\x21\xd0\xd2\x3a\x5b\xb6\x8d\xd5\x02\xb0\x71\x2c\x7f\x82\x47\x83\x1d\xf0\xd8\xcd\x32\xb2\x57\x35\x09\x50\xd3\xb7\x6c\xc7\x8f\x75\xa5\x80\x41\x18\x12\xf1\xaf\x8c\xd1\xeb\xa5\x67\x3a\x6e\x03\x1c\xab\x1b\x2e\xb1\x53\x79\x01\x48\xd0\x4b\x01\x4d\xd1\x24\xe0\xf4\xac\xac\xef\x44\x69\x37\x20\x87\x9a\x1c\xc3\x36\xf5\x72\x40\x36\x5d\x9b\xe0\xde\xe2\x87\x80\xd9\xea\x0f\x5a\x49\x16\xc6\x80\x79\x87\xf2\x65\x9f\x37\xd8\x90\xd1\x5d\x8d\xf4\xdb\x16\x4e\x01\x52\x3d\x0f\x36\x2c\x6d\x3e\x0b\x68\x72\x23\x80\x6e\x9f\x2d\x2b\xe0\x81\x74\xdd\x1d\x45\x0f\xaf\x00\x7a\x72\x8b\xfc\x29\x5c\x86\x7c\x06\xcd\x03\x91\x96\xad\x80\x5d\x36\xc1\x87\xd5\xbf\x48\x03\x3e\xb5\xb3\x72\xaf\x39\x03\x80\x77\xf8\xbb\xd7\xc6\x37\x4a\x03\x7e\x9c\x0a\x8f\xf2\xfb\x3d\x46\xa0\xa0\xe4\x31\x7f\xa7\x2f\x7b\x00\x4b\x34\x36\x87\x35\x4a\x9f\x05\x34\x48\xe0\x7a\xa2\x5d\x5a\x02\xb8\x9d\x97\x4d\xc0\x63\x19\x58\x9e\x21\xc0\xe5\x5a\x48\x51\x42\x83\x33\xce\x4c\x75\x19\x01\x56\x93\x4d\x9f\xb1\x88\x9a\x00\x82\x90\xe2\xd4\x73\x8b\xbd\x14\xa5\xf0\xd2\x79\xf5\xa8\x1a\x05\xc0\x1b\x1b\x3a\x3b\x63\x43\x84\x01\xb3\x2e\x76\xf8\x1d\x97\xbc\x4b\xc6\x5c\x93\x67\x36\xd2\xc2\xb1\x80\x5e\x6c\x17\xc5\xcb\xc9\x4d\x80\x1b\x4e\x5f\xd9\xa2\xf0\xea\x21\x20\x84\x17\x15\xb0\xb0\xe4\x00\xee\x58\x3c\xf4\x33\x85\x6b\x17\xe0\xe1\x9b\x06\x5c\x97\xed\xa6\x08\x6c\x3d\x7a\x6e\xe3\x42\xa5\x10\xe0\x7a\x89\xdf\x67\x93\x78\x8f\x01\x7e\x7a\xf5\x8a\x87\x9b\x6b\x8a\x40\xc7\xac\x63\xf4\xdb\xa9\xbf\x51\xc0\x24\xbb\x49\x81\xd4\xd9\x48\x60\x06\x43\xfd\x8e\x3e\x37\x3a\x40\x5b\x2b\xff\xc3\x92\x4c\xf2\x14\xa0\xe5\xb5\x92\xd2\x52\x6d\x23\xf0\xe0\xc8\xe6\x6f\x6b\xac\x4c\x00\x4f\xc5\x55\xeb\x58\x57\xbb\x53\xe0\xd0\xd6\x6a\xa6\x8e\xd3\x02\x80\xd6\xdd\x35\x3e\xfd\x45\x8b\x04\xde\xe6\xf9\x6e\x77\x4f\x61\x8e\xc0\x01\x63\x19\xb3\x8f\x87\xdd\x01\xe7\xd2\x1e\xb2\x25\x4e\x6d\x05\x94\xd8\xc3\x35\x5e\x2f\x61\x0e\xd8\x9f\x73\x5b\x67\x69\x8f\x31\xe0\x8f\x80\x2b\x49\x85\x2d\x7d\x04\x0e\x95\x14\xb7\xd5\xf2\x6c\x05\xe4\xe5\xaa\x19\x4d\xe8\x5d\xde\xc8\x99\x7e\x73\xe9\x2f\xde\x02\x34\xd8\xf3\xa3\x66\xd8\xf2\x1a\xe0\xb7\x30\x81\x7c\xc2\x24\x0e\xd0\xbb\xa1\xe7\x69\x70\xd3\x0c\x81\x0f\x77\xab\x4d\x92\x68\x8f\x2c\xdf\x57\xcf\x06\x5d\x5a\x3e\x75\xff\x01\x8b\x0c\x4b\xb9\xd5\x0f\x17\xc0\x25\x2d\xce\x81\x6e\x37\x29\x40\x27\x69\x6b\xe7\x0b\xa2\xef\x08\x6c\x30\x9f\x1c\x49\xb2\x13\x83\x15\xd4\x0e\x0b\xf9\x6b\xfa\x2d\x12\x28\x96\x36\xbf\x6f\x3e\xea\x21\x19\xd7\xab\x8d\xdd\xa8\x3c\x98\x07\xb8\xc3\xfb\x33\xde\xd1\xcf\x03\xd4\x4c\x9a\x10\x38\x40\x88\x01\x4a\x46\x89\xf1\x7a\x5e\x9d\x23\x30\x62\x9d\xe7\xd6\x90\x0e\x17\xc0\xfc\x6b\xdb\x96\x74\x8f\x05\x93\xf1\x45\xc6\x87\x94\xdc\x04\x11\x40\xd5\x4d\x47\x49\xee\xd1\xd3\x04\xf2\x13\x2c\x79\xd9\x0e\x02\xb0\x82\x0e\xf0\xbc\xad\x55\x56\x4b\xa0\x84\xec\xfb\xc5\xb5\xc1\xb7\x00\x4d\x77\xc4\xcc\x7f\x7a\x38\x4a\xe0\xce\x2d\xd7\xef\x64\x16\xac\x87\xb9\xa7\x7a\xaf\x0e\x7e\x17\x01\x64\xbc\xa7\xdd\x44\xed\x3d\x43\xe0\x18\xbb\xeb\x79\x1f\x36\x2e\xc0\x42\xd5\x94\x6f\x1c\x11\x49\x80\x17\x84\x79\x9b\xc6\x4b\x6b\x01\xef\x6c\x74\xb6\x56\xd0\x99\x26\x30\x2a\x86\xb9\xce\xfc\x21\x25\xf8\xc4\x9b\x2a\xfc\x14\x25\x00\x9d\x8e\x46\x4f\xfb\xf6\xcd\x10\xd8\x4c\x63\xfb\xd1\x70\xfd\x04\x05\x7e\xb7\x8b\x4f\xba\x1b\xfd\x24\x90\xc9\xf0\x68\x3d\xd7\x19\x2a\x40\xd3\xfc\x6b\x91\xb7\x06\x0c\x56\xc3\x19\xfe\xf8\xf5\x65\x77\x54\x29\x30\xd6\xaf\x52\x9b\xd9\xb5\x05\x50\xc2\xfa\x70\xfb\x75\x76\x41\x40\x3b\x33\x36\x34\x86\x1a\x40\x1e\x14\xe8\x9d\x56\xac\x01\x64\xa3\x1a\x19\xaf\xad\x3f\x01\x28\xe8\x3a\xdc\xf2\x6b\xf7\x46\xc0\xa8\x92\xe1\x13\x0b\xb1\x17\x01\x5b\x0d\xdd\xfb\xaa\xb9\x2e\x00\x6e\x8c\x2a\x3f\xa1\x37\xb4\x1e\x70\x4b\xa1\xc7\xb9\x75\xce\x35\x80\x8c\xbf\x9f\xaf\x63\x57\xae\x03\xdc\xae\xf6\xc1\xff\xe9\xcd\x0a\xc0\xe9\x57\x6b\x0b\xff\x41\xa4\xcc\x67\xa6\x21\x86\x04\xf8\xda\xb1\x40\x13\x24\xeb\x00\xbd\x48\x05\x5f\xb3\x58\x6a\x01\x27\xaf\x0d\xfa\xd5\x67\xd5\x02\x6e\x75\x3d\xb8\xd7\x61\x43\x1d\x20\xc3\xdd\xd7\x0d\xe6\xfc\x75\x80\xe7\xc1\x40\xd7\x62\x19\x09\x79\xa2\x5b\xff\x41\x5a\x9a\xce\xb2\x95\x5c\x0f\x68\x67\x11\xf0\x77\xad\xe8\x23\xc0\x27\x59\xa4\xcb\xb7\x8f\xa6\x02\x3a\xd7\x50\xa5\x2e\x4d\xcd\x11\x78\xe4\x4c\x1e\x5f\x9c\x92\x36\xe0\xb9\x43\xc2\x29\x07\x63\xcb\x01\x9f\x09\xd2\x48\x92\x3d\x69\x01\x3d\x16\xf8\x3d\x3f\xdd\xa5\x05\x1c\x74\xb8\x22\x63\xad\xa2\x00\xc8\xef\xf8\x77\xb3\x86\x5a\x11\xe0\x5c\xca\xd2\x87\x9e\xbe\x2a\x40\xed\x80\xcc\xaa\xd2\x8e\x5e\x40\x59\x11\x8e\x40\xc7\x37\x85\x80\x45\xdd\xc3\x3b\x1a\x17\xe4\x00\x4f\xd5\xeb\x5b\x35\x92\xff\x10\xe8\x90\x1c\xa7\xd9\xf5\x74\x0d\xe0\xc9\x48\x16\x85\x84\xc3\x02\x14\xb8\xb6\x6f\x57\x47\xc6\x37\x49\xc0\xf7\xf7\x9e\x54\x36\x78\x36\x92\x31\xe9\xa7\x78\x55\x4c\x4c\x25\x60\xe0\xbb\x30\xa3\xbf\x22\xc3\x80\xb7\x04\x2d\xab\x4f\x9c\x21\x01\xde\x71\x3b\x90\xe8\x7a\xba\x07\x50\x23\x2b\x93\x70\x7a\x6a\x0e\xb8\x73\xa7\xbe\xdf\xc7\x13\x07\x01\xdb\xcd\xd7\x6e\x3f\x70\xb9\x16\xf0\x2d\x14\x1c\xf0\xbf\x7d\x90\x02\xd1\x4b\x12\xa6\x13\x81\x03\xc4\x0a\x5a\xdc\x97\xcc\xfd\xad\x3f\x11\x98\x6f\xb9\x8e\x69\xeb\xd0\x2b\xc0\xdc\x8e\x13\x3c\x13\x99\x8d\x04\x4e\xea\x8d\x4b\x9e\xdb\xf9\x9e\x84\x9d\x3d\x43\xdb\xb4\xa9\xb9\x01\xef\xb4\x6f\x94\xf1\xd9\x42\x4b\x81\xfd\x5e\x41\x26\x21\xbe\xb3\x04\x0a\xdc\x2d\xbc\x3c\x7c\x40\x0c\xf0\xa3\xe5\xdb\x85\x86\xce\x0e\x40\x8f\x2d\x55\x32\xc7\xee\xb4\x01\xc6\x5c\x1d\x6d\x8c\x29\xa9\x01\xac\x7d\xf1\x61\xcf\x19\xd9\x12\xc0\x4f\x1e\xa5\xcc\x0b\xde\xa5\x80\xd7\xfc\xa3\x76\x8f\xf1\xc6\x03\xc6\x6d\x3e\x65\x78\x73\x6d\x39\x20\xc3\x25\x21\x92\x99\x5b\x03\xe0\xf4\xf5\x6b\xbf\x19\xfc\x4a\x01\x6f\x31\x0b\x2d\x19\xcc\x95\x00\xc6\x17\x4b\xeb\xf2\x91\x4b\x00\x7f\x37\x0e\x35\xb4\xd8\x97\x00\xf2\x9f\x9a\x48\xb6\xc5\x12\xc0\x2e\xaa\x34\xe1\x3d\x07\xaa\x01\x79\x59\xb2\x85\x1d\x7b\x26\x08\xec\x1c\xd4\x7b\x95\x7f\x89\x13\xd0\xd7\x4b\xce\x85\x50\xd8\x0f\x78\xa2\x74\x40\x3e\xf2\x64\x03\xe0\xab\xec\x64\xdc\xf0\x7d\x07\x60\x80\x1c\xa1\x5b\x3a\x27\x06\x18\x5f\x99\xfb\x78\xe2\x36\x17\x60\x30\xb5\xad\xdd\xd2\x40\x26\xe0\xe3\x03\xaf\xaa\xdb\xff\x5e\x07\xb4\xf0\x99\xb3\xba\xee\x5a\x03\xb8\x74\xa1\xd5\x8c\xaf\x44\x03\xb0\xe2\xa3\xaf\x53\xa8\xd3\x56\xc0\x88\xa6\x27\x56\x2d\xef\xc5\x01\x37\xf6\xba\x47\xed\x7b\x41\x0f\x98\xc4\x1f\xea\xab\xa6\xdc\x47\xc2\x07\xbb\xd2\x4f\x4a\xc8\x25\x00\x56\x31\xec\xb9\xab\xa6\xd8\x4f\x60\x91\xfb\xb9\xc0\xf1\xeb\x54\x80\xed\xea\x5e\x56\x65\x3c\x2a\x80\xa2\xea\x3e\xc2\xd4\xf3\x64\x40\x95\x02\x8f\x61\x2b\x9b\x2a\x32\x6a\x87\xb7\x52\xbf\xe9\xa8\x25\xe3\x2d\xdb\x7c\xa6\xb6\xa4\x2a\x32\x0e\xcf\x2a\x6c\x7c\xe9\xed\x02\x18\x2a\xfe\x42\x4f\x8b\xa7\x0a\x90\x39\x61\xeb\xe8\xa1\xed\xf5\x80\x15\x8b\x7a\xaa\xa1\xea\x3a\x80\x27\x82\xdb\x8d\xfa\xa3\xa5\x00\x69\xa8\x7e\xc5\x68\x05\x57\x01\x7a\x91\xdb\xe9\xfc\xfc\xfe\x10\xd8\xf3\xc8\x3e\x73\x38\xeb\x3d\x81\xc2\x57\x9e\x33\x46\x3d\x1e\xa5\xc0\x64\xe0\xcb\x49\xc5\xdf\x0d\x04\x5e\xa1\x1d\x1e\x74\x6f\xcf\x07\xd4\x3e\xf5\x7c\xb8\x68\x73\x2d\xa0\x7f\x88\xe8\x19\x35\x28\x05\x34\xd1\xbe\xfe\xb8\x4b\xac\x04\x70\x8f\x2b\xcb\x4f\x6a\xab\x7c\xc0\x70\x22\x53\xf4\x2a\x3e\x01\x7c\x1e\xdf\xf5\xfc\xd1\x5f\x36\x40\xc3\x18\xfd\xd6\x88\xe5\x25\xe9\xa4\xe7\x6e\x92\xa6\x5e\x1e\x20\x8d\x54\x7f\xb7\xec\xbd\x72\x32\xf2\xfa\x8f\x48\x51\xc5\x77\x00\x3a\xad\x4d\x9b\x3c\x98\xd0\x0e\x78\x53\x84\xed\xdc\x95\xca\x6e\x02\x6f\x5b\x1d\x2e\x4b\x2c\x97\x00\xe4\x7e\x3b\x5b\x1f\xbb\xa8\x00\x2b\xa5\xf0\xb6\xdf\xfa\x43\x5c\xa1\x80\x2d\xc9\x46\xde\xd7\x52\x42\x29\xca\xed\x2a\xcf\x04\xc5\x79\x7f\x40\xc3\xb6\xab\x36\x95\xc3\xea\x80\x05\x7d\xe9\xfc\x46\xf6\x69\x14\x30\xdf\xc4\x37\xe5\xe7\x70\x96\xbc\x52\x24\xce\x1a\xb8\x7d\xf2\xd9\x0b\x38\x2f\xad\x64\xfd\x01\x0b\x01\x2f\x37\x94\x25\x7e\x1b\x78\x42\x46\x38\x79\xc6\x37\x38\x82\x07\x90\xfa\xc7\xd1\xd7\x62\x6c\x0d\x04\x3e\xde\xcd\xbc\x69\xcb\x34\x09\xd0\xe9\xb9\x54\xec\xb8\x50\x19\xa0\x77\x34\x03\x4b\xfd\x26\x4e\xc0\xab\xe3\xbf\xc3\x42\x42\xab\x01\x67\x99\xd5\x95\x51\x3c\x84\x02\x9c\x1b\x66\x6e\xd2\x55\x5d\x07\x3c\x6e\x65\x70\x77\xe6\x5d\x3b\x20\x3b\x5d\x54\x99\xc0\x5b\x19\xc0\xb5\x1c\x0f\x59\x5e\xc8\x6e\x07\x5c\x62\xd0\xd4\x68\x9b\x29\x26\xe3\x25\x86\x83\xe6\xca\x34\x79\x80\x81\x1f\xe9\x32\x84\x35\xab\x01\xb9\x5e\xb4\xbd\x4d\x11\x5c\xfe\x3c\x7f\x99\x79\xdb\xb5\x5d\x15\x70\xa3\xe0\xf8\xb7\x7b\x7d\x3b\x01\xdb\x4a\xba\xba\x8e\x90\xea\x00\x9f\xf8\xe7\xec\xeb\x90\xec\x00\xb4\xb8\x52\x9f\x27\x20\xda\x0e\x18\xfd\xed\xbe\xdf\x3f\xf4\xcf\x33\xdd\xfd\xf7\x47\x8b\x7a\x8d\x9e\xf4\xfe\x35\x34\x04\x1c\x0e\xcb\x73\xc8\x31\x9a\x22\xf0\xc1\xba\xd3\xcd\x27\x53\xb9\x60\x15\x94\x3c\x78\xa8\xa8\xc9\x43\xbf\x1a\x62\xcf\x56\x52\xc7\xc4\x77\x11\x38\xd0\xf6\xa1\x7c\xbe\x99\x15\x70\x87\x1e\xdf\x19\x09\xaa\x69\x02\x2b\xbf\xac\x1d\x7c\xe0\xd9\x04\x18\xab\x70\xf0\x8d\xd1\x60\x29\x20\x4b\x12\xbf\x9d\xad\xbf\x14\x60\x0a\xb0\xbd\x60\x73\xac\x01\xac\xbe\x09\xe7\xad\x6e\xd6\x01\x66\xc7\x0c\xd7\xd3\x98\x50\x01\x46\x7c\x15\xdf\x2b\xfa\x75\x90\x58\xc1\xbb\x2d\x7c\x47\x43\x45\x98\x01\x2b\x7a\x6c\xf4\x3a\x2c\x49\x80\x8f\x85\xa2\x7f\x7b\x0d\x90\x00\xdf\x1f\xe0\x71\x28\x8b\xd3\x02\x8c\xd9\xeb\xb6\xc0\x3f\x95\x05\xa8\x3b\x7a\x81\x4d\xe1\xe9\x08\x81\x22\x0f\x73\xd4\x1a\x06\x67\x08\x0c\xf3\xbc\x6f\x32\x69\xca\x07\x2b\xc8\xd1\x2a\xe9\xd9\xd4\x39\x49\xac\xa0\xd9\xe5\x5b\xac\x2a\x99\x0d\x56\xb0\xd1\x3d\xe7\xcf\x01\xb5\xcf\xc4\x0a\x1c\x1b\x44\xf7\xa6\xdc\x64\x81\x15\x68\x4f\x98\x55\xda\x2a\x89\x52\x60\x8e\x4f\x27\x7f\x9f\x78\x15\x09\xf5\x07\x78\x82\xe8\x46\x55\x01\x0d\x35\x9b\x04\xd5\xc5\x73\xc8\xe8\x91\xb2\xfb\xaf\xaa\x65\x32\xe0\x91\xfc\x68\xee\x84\x6e\x32\xa0\x53\x74\xb6\xdb\x30\xbf\x2a\x60\x8e\x52\x9e\xe8\x35\x91\x21\x62\x05\x79\x0a\x77\xce\x5e\x0e\xdb\x0e\x38\xb8\xf9\xdc\x35\x77\xae\xa3\x80\x77\xa5\x6e\xd5\xc7\xef\x0b\xa0\xc0\x00\xf7\x63\x55\xda\x0e\x45\x40\x4c\xca\x8b\x1f\x36\x61\x05\xd4\x8c\xce\xff\xdc\x3a\xaa\x4b\x81\xf3\x5d\xb6\x47\x94\xc3\x6a\x01\xc5\x0e\xdb\x1b\x25\xd5\x72\x02\x0a\x47\x47\xde\x23\xcf\xcb\x50\x60\x7b\x5a\x0a\xa1\xfc\x88\x09\x50\x2c\x87\x43\x20\xe7\x5c\x13\x81\x63\xbf\x36\xd2\x2c\xd9\x9e\x80\x55\x50\xfa\x6d\x97\xb9\xba\xc9\xbe\xd5\x70\x8d\xe5\xb7\x85\xd2\xba\x42\x02\x9b\x69\xcf\x53\x27\xd3\x6c\x5f\xbe\x58\x89\xf0\x1f\x7b\x2b\x47\x81\x98\xec\x7c\xcd\x72\xea\xb7\x04\x06\xee\x1d\xa3\x8b\xf9\xf2\x91\x84\xdb\xbe\xcf\xca\x3d\x9f\x3d\x0c\x2b\x68\x1d\xff\xfe\x8c\x9b\xd4\x47\xc2\x43\xfe\xa7\xc6\x67\x6d\x14\x00\x99\x3e\xf1\x79\x6c\xd8\x69\x42\x01\x8b\x1a\xde\x75\x92\x3d\xcb\xab\xf9\x42\xc8\xe5\xea\x3f\xd9\x80\xdb\x2d\x5e\xb4\xa9\x9e\xa5\x07\x6c\x38\x75\xbc\x3d\x4f\x93\x0e\x30\xd7\x4e\x7d\xa7\xd0\x5f\x46\xc0\xbf\xfe\xf2\x6e\xc9\xcf\x6a\xc9\xd8\xe2\xb3\x9d\x9a\xd4\x5b\x06\xf8\x85\x36\x4e\xed\x6a\x37\x15\xa0\xcf\x24\x83\x98\xb6\xb0\xe6\x6a\x50\xbc\x69\xcf\xe5\x5e\xd8\x4b\xe0\xfb\xc9\x4b\x0c\x3f\xe5\x12\x01\xe5\x34\x72\x9f\x45\x66\x95\x00\x5a\x84\xf6\xe6\x85\xd8\xe5\x03\x7a\x7c\x51\x8b\x8c\x5a\x2e\x06\xdd\xce\x66\xdc\x27\x2b\x01\x4f\x28\x3f\xdd\xbb\x8f\xcb\x15\xf0\x6b\x2c\x93\x96\x94\x46\xed\xf2\x4f\x99\xb5\xa2\x62\x37\xfb\x01\xb5\x68\xe9\xfa\x7f\x8f\xbe\x02\xdc\xf5\x4d\x77\x1b\x7f\x8e\x17\x20\x4b\xc5\xf1\xb3\x56\xbd\x16\x80\xb2\x41\xd5\x33\x96\x37\x6b\x00\xa9\x3e\xde\x1f\xb8\xf3\xbc\x87\xf8\x7f\xff\x49\x4e\x2e\x60\x4c\x56\x09\xab\xfa\x8b\x5c\xc0\x11\xe2\xec\xb7\xf3\xeb\x2a\xc9\x78\xf0\xb2\x05\xcd\x9d\xee\x1c\x8a\x11\xe3\xc6\x0f\x7f\xe2\x65\xce\x01\x36\x9a\x14\xa8\x7e\xa1\xb7\x02\x7c\x2d\xfb\x95\xf5\x23\xef\x39\x0a\xa4\x1c\x7e\xc4\xb3\xc1\x3b\x04\x30\x72\xcc\x95\xc9\xb2\xb9\x1d\xd0\xf9\x43\x60\xc4\xbc\x40\x03\x60\xc8\x59\x5d\xda\x96\x1a\x32\x60\x4d\x5c\xde\x77\x85\xf3\xa6\x80\x93\x7e\x4e\xa2\x21\x67\x22\xc8\xa8\x71\x9f\xc1\xaa\xf0\x4b\x11\xa0\xc1\xc2\x6d\x1e\xf5\x0a\x6e\x40\x2b\xad\x89\x84\x8b\xaf\x6b\x00\x13\x2a\x1f\x5a\xa5\xdb\xd7\x02\xee\x94\xfb\x91\xb4\x6b\x34\x9d\x8c\x2e\x45\x24\x7a\x2f\xe3\x6e\xc0\x27\xbe\xbf\x24\x4f\xac\x2d\x05\x6c\x2d\xfb\xf2\xe2\xc4\xc9\xeb\x80\x31\x0e\x7f\xf4\x7f\xec\xfc\x45\xac\xc0\xbd\xcf\x31\xec\xaa\x2c\x15\xa0\xe1\xc5\x56\xf5\x2f\xcf\x54\x00\x3b\x7e\x38\x74\xf5\x3c\xa5\x02\x2c\x4b\xcd\xaa\x9a\x6c\x3c\x09\x78\x27\xd3\xdc\xe0\x03\x43\x2d\x20\xc3\xa2\x45\x4d\x76\xbe\x01\xe0\xa2\x71\xa2\xc7\x97\x6d\x1b\x01\x6b\x1a\xfb\xfe\x4a\xed\xd4\x06\xac\x0c\xd2\xcb\xe3\x16\x79\xba\x1a\xbe\x26\x3e\xd2\x4b\xb3\xb3\x5c\x0d\x1b\x8c\xef\x09\x52\x97\x1e\x00\x7c\xf5\xab\x37\x21\xdd\xb5\x8d\x02\x37\x6f\x0e\x6d\x8e\x9a\xb2\x00\xe4\xfe\x18\xb3\x31\xc7\xef\x00\x20\x53\xd6\x95\xe2\x5b\xcd\xb3\x04\x5e\x96\xd8\x75\x9a\x9b\xa9\x15\xf0\xf2\xfa\xdc\xfb\x4d\x2c\xf6\x80\x96\x9d\x0d\xb7\xbe\xcb\x64\x93\xb1\x3f\x38\x72\xb1\x20\xe9\x20\xe0\x86\xec\x9c\x5d\x77\x14\xb6\x03\x1e\xed\x1c\xa9\xcb\xd6\x39\x0a\xd8\xe6\xe2\xe5\x52\xb3\xbe\x05\xf0\x8c\x4d\xab\x65\xfb\x68\x1d\xe0\x68\x8a\xf2\x27\x1f\x52\x34\xe0\x15\x79\xdd\xb7\x36\xd7\xc2\xc9\xf8\xf4\xf9\xa3\x1b\x71\x85\x45\x80\xca\x33\x8c\xa9\x4d\x47\xf4\x00\xb7\x29\x37\x4c\x49\x15\x47\x01\x52\xd5\x34\x6f\xae\xfe\x6d\x0f\x28\x77\xdf\x96\xf6\x15\xbd\x05\x20\xf9\xba\xe4\xc5\xe4\x25\x7b\xc0\x7a\xf7\x29\xb2\xf4\x7a\x5f\x40\xc1\xeb\xcd\x25\xe9\x86\x45\x80\x27\x0f\x34\x53\x0f\xee\xdf\x0b\x48\xbf\x76\x9f\x5e\xb7\x80\x11\x60\x30\xcf\xac\x94\x94\x75\x29\x20\x9a\x2d\x44\x78\x73\xd7\x03\x8a\xcf\xb2\xf6\x31\x18\xd7\x01\x06\x7f\x95\xb7\xff\x72\x7a\x3b\xa0\x09\x6f\xa8\x5b\x95\x02\x0d\xe0\xe4\x15\xc1\x98\x85\x0b\xd9\x80\x7b\x0e\x57\x2d\x8d\xca\xb0\x01\xca\xde\xb1\x7e\xc8\x6f\xb4\x1d\xd0\x28\x7a\xb7\x07\x2e\x5f\xa4\x77\x73\x35\x6d\x88\xd8\xfb\x9b\x40\x87\xc5\x4b\x7a\x57\x06\x69\x01\x99\xae\x55\x88\x7c\x57\xbd\x48\x81\x83\x33\xc1\xea\x37\x76\xcc\x10\xd8\x2d\x65\xe8\xf5\x57\xc5\x09\xd0\xcc\xe3\xe4\x60\xb8\x49\x39\xe0\xf9\x10\xd5\x3d\x79\xed\x91\x80\xbc\x52\x4f\x35\x9d\xe2\x6f\x03\x66\xaa\xaa\x3c\xdf\x19\xd1\x01\x58\x3b\xae\xa0\x5d\xeb\xdb\x01\x58\xf4\xcc\x96\x94\x55\x58\x03\x68\xb6\xff\xc6\x22\x83\x9c\x33\x60\x5e\xbd\x65\x89\x9a\x4c\x21\x60\x72\x98\x52\x07\xdf\x52\x16\xe0\xf0\x3e\xe5\x2a\xde\xff\x81\xf8\xe1\xa3\xd9\x3f\xd2\xdf\x13\xff\x0d\x8d\x75\xd4\xbd\xb9\x96\x43\x04\x56\x3e\x23\x4d\xee\x71\x66\x00\xdc\xa4\xcf\xf9\x4a\x3d\x60\x0f\x05\xdc\xcf\xfc\x18\x54\xe6\xbc\x4f\xc2\xe6\xd8\xf0\x90\xb7\x9c\x29\x80\xe9\x56\x41\xcf\x3c\xcf\x67\x01\xe6\xdf\xfc\xa6\xb7\xdb\x37\x0a\x70\x7e\xcd\xd7\x8f\xaa\xdb\xb9\x01\xc7\xf9\x76\xe4\xf3\xea\x16\x03\x5e\x77\xbc\x23\x19\xb1\x0c\xed\xa5\x12\xb3\x7f\xa8\x93\xab\xff\xb1\x5f\xcb\x08\x70\xe8\xca\x6c\xae\x86\xa5\x31\x20\x1d\xa7\xfc\x38\xd7\x1a\xca\x62\x75\xf7\xfb\xe3\xfe\x1b\x00\xc8\x57\x3a\xef\xe5\xb4\xe6\x00\xe0\xe0\xda\xc8\xd4\xb3\x26\x79\x80\xb5\xfb\x9b\x5b\x19\xcd\xf2\x00\x5d\x9f\x98\xea\xbd\x5f\x3a\x07\x38\x69\x47\x6a\x77\x5b\x38\x07\xe8\x9f\x67\xc1\x19\x9a\x78\x89\xa2\x34\xba\x1f\xf4\x88\xef\x0c\x04\x1c\xaf\xd3\xdf\xde\xe5\xa2\x09\x78\x43\x5f\x84\xa6\xa3\x89\x00\x94\xa1\x95\xa3\x31\x56\x5a\x03\xf8\x4a\xa1\xe0\xf5\xde\x30\x17\x0a\xa4\xec\xbf\xff\xc2\xaf\x50\x12\x90\x2b\xb0\x6e\xf6\xcd\x6f\x41\xc0\x91\x0b\xa2\xd5\x26\xe5\x54\x80\x2a\x1b\xd7\xb1\x37\x4a\x51\x53\xc0\x87\x64\xd1\x96\x7c\xe8\x2d\x81\x57\x85\x5c\xa8\x74\xbe\xab\x00\x1a\x05\x5b\x9d\x5a\xa4\x9a\x21\x30\xf9\x33\xfd\x1f\xb3\x6d\x75\x80\x42\x27\x3f\x9b\xb4\x90\x2a\x00\x7b\x94\x76\x5d\x4e\xc8\xae\x81\x95\x91\xc1\x95\x2c\x3a\xdf\xfd\xf9\x24\x54\xba\xcf\x26\x7d\xb8\xbd\x06\xd0\xf3\x66\x81\x47\x92\x43\x1d\xa0\xcb\xd7\x62\x0e\x71\xd2\x3c\x81\x26\x96\x23\xbd\xa4\x9f\xbe\x64\x6c\xed\x8f\xd8\x99\xaf\x99\x0a\xe8\xc6\xde\x18\xdf\x5f\xfd\x08\xd0\xaf\x76\xcb\xde\xcf\x06\xa9\x80\x56\x59\x22\xc7\x61\x79\xc9\x2a\x63\x49\x5c\x93\xec\x75\x00\x70\x13\x6f\xa6\xaf\xaa\x4b\x3d\x05\xca\x15\x18\x79\x7e\xec\xac\xa5\x28\x13\xbe\x8a\x3f\xf9\xa6\x72\x01\xc9\x85\xae\x79\xdf\x23\xf2\x28\xb0\x6d\xfe\x56\xd3\x3f\x58\xac\x9b\x15\xf9\x87\xe6\x28\xfb\xf3\x73\xdc\x35\x80\x69\xb3\xb2\xb2\xbc\x72\x35\x80\x41\x87\xef\xb0\xaa\x98\xbe\x21\xe6\x52\xc6\xab\x5a\x0c\x9f\x02\x86\x2c\xdc\xf9\x1d\xce\x18\x0d\x58\x3b\xd5\x60\xf9\x9e\xe3\x16\xf9\x3f\x93\xdb\xd5\x26\xd4\xf5\x03\x7a\x80\xd9\x37\x09\xe6\x76\xb3\x5a\xc0\x67\xdd\x6d\x75\xa2\x65\x33\x04\xaa\x45\xca\xb0\x6c\xdb\x49\x03\xf8\x66\x5f\xf6\xa9\x97\x16\x55\x80\x47\x0f\x9f\x34\x0f\x7a\x7a\x04\x70\xac\xdb\xc1\x3b\xa1\x2e\x0b\xf0\x53\xda\x42\x7b\x66\x47\x3d\xe0\xbd\xf0\x45\xd6\xc9\x3f\x5c\x80\x93\x51\xb2\x8f\x4d\x74\x5c\x56\x83\xc7\xd3\x0c\xa6\x32\xa9\x46\x12\xda\xbe\x8d\x63\x77\x7b\xb7\x13\xf0\xb0\xee\x35\xef\x57\xc7\x0e\x02\x7e\x32\x73\x60\x30\x2a\x4e\x07\x3c\x5d\x54\xe7\x22\x70\xf6\x3a\xe0\x3e\x91\x90\x9b\xe9\xf9\xd7\x01\x0d\x25\xf6\xb4\x45\x74\x49\x03\xde\x93\xc0\x70\xf2\xf7\x72\x40\x13\xa5\x6a\xd9\x1b\x9d\x05\x80\xc1\x1b\xff\x7a\xfd\x83\xe0\x33\xef\x25\x01\xd7\xfb\x80\x87\xd3\xe9\xe8\x52\x1c\x6f\xff\x57\xe8\x72\x95\x74\x94\xc4\xf6\x10\x2b\x38\x77\x9e\x26\x11\x5e\x2f\xef\xe1\xda\x39\x6a\xff\xf0\xa0\xa7\xdb\xf1\x7f\x96\xff\xe0\x5c\x6b\xc2\xc7\xf3\x6d\xa9\xab\x21\x3a\xb9\x7f\xdb\x85\x65\x4c\xba\x8f\x9e\x5e\x9f\x28\xbf\x1a\x1c\xd2\xce\xeb\xa9\x4f\xa9\x50\x14\xc3\xc6\xc2\xe6\xca\x53\x6e\x80\x01\x27\xd7\x08\x67\x2f\x24\x91\x50\x3b\x38\xf7\xac\xe9\x56\x35\xf8\x5f\x41\xda\xe8\x4f\x61\x88\x51\x0b\x60\xfb\xee\x9b\x67\x39\x7c\xc8\x80\x6b\x93\x4c\xe5\xfe\xc1\xbc\xb0\xf0\x38\xdb\x32\x62\xab\xf3\xef\xfe\x2b\xb2\x6b\xed\xdf\xde\x63\x91\xf9\xff\x70\x00\xb0\x6a\x51\x7c\x8d\x00\x04\x93\x57\x46\xff\xbf\x72\x00\xf0\xc9\xbd\xa4\x21\xfb\x4e\x76\x0a\x84\x59\x73\x69\x77\x5e\x99\x23\xb0\x44\x70\xda\x6d\x8d\xfb\x67\x02\xcd\xfc\x73\x4e\xc4\xc4\x1d\x82\xff\x06\xee\xc0\x91\x85\xdc\xee\x70\x40\x6f\x09\xd2\xb0\x4f\x67\x12\x20\xa7\x3a\xa9\x29\x79\x5c\xf9\xbf\xc2\x83\xf4\xd8\x80\xd7\x3c\x0d\xf0\x4f\x64\x32\x9b\xf6\x68\x06\xe0\x57\xaa\x40\xc5\x51\x86\x1b\x14\x50\x64\x98\x34\x31\x0e\x4d\x24\x23\x71\x64\x56\x64\x46\xec\x0e\x19\x95\x82\x3f\xfd\xc9\x62\xbc\x01\x68\x63\x6a\x49\xab\x90\x62\xfd\xbf\x03\xf7\x6e\xe9\xd2\x2f\x0a\xec\xab\x41\x93\xfe\x1e\x5b\x9a\xef\x67\x02\xef\x2c\xb0\xd9\x5e\xef\x0c\x07\x7c\xdc\xf9\x81\x51\xe3\xb2\xf0\x6a\x58\xd7\x84\x99\x31\xcc\xf9\x14\x98\x4e\x55\x89\x89\xbb\x92\x08\xb8\xe9\x7e\xf9\xd1\xe8\xe5\x92\x72\x6d\x38\xe2\xdf\xe8\xc0\x1b\xeb\x75\xff\x10\x51\xb4\x6e\xcb\x63\xfd\x7b\x14\xb0\x52\x22\x8e\xd5\x33\x46\xac\x36\x0a\x2f\x9f\x25\xf8\x8a\xc3\xff\x77\xd0\x2b\x3f\xbf\x71\x97\xbd\xd0\xff\x0e\xbe\xb4\x65\x99\x71\x5b\xdd\x00\x9f\xf1\x3f\xbb\xdf\xc3\x98\x4c\x42\x5e\x99\x94\x03\xdb\x96\x14\x60\x15\xf4\x5c\xb1\x2a\x13\xcc\x2f\x02\x24\x76\x7e\x30\x1b\x9b\xe5\x20\x63\x56\x9a\x90\xcb\xbf\x42\x53\xca\xec\xb4\x75\x19\x09\x97\x7e\x1b\xff\x83\x99\x0a\x77\x48\xd4\xf2\x19\xfb\x0f\xea\x6e\x45\x15\x33\x9f\xd9\x48\x81\xd3\xdf\x1a\xa9\xb8\xbf\xfd\x20\x30\x25\x34\x96\x90\x7a\xd6\x4d\x60\x43\xba\x7f\x64\xb2\xe3\x21\xf8\x6f\x70\x5a\xef\xfc\x42\xb2\x23\x0a\x30\xc6\xb5\x58\x6a\x43\x8d\x1b\xe0\x5f\x87\xca\x3e\xb9\x05\x05\x40\xd9\x93\xf4\xd8\x7a\x44\xe5\xbf\xc2\x38\x6c\x64\xbd\xbd\x68\x25\x05\x38\xe3\x32\xd6\x5b\xa6\xb4\x02\xf6\xf6\x8d\x0e\xdb\x2e\x97\xff\x87\x51\x3b\x8f\xa6\x2a\xec\xff\xff\x4f\x13\x4a\x94\x4c\xa9\x14\x2a\x4a\x64\x4e\xd4\x7e\x4b\x34\x20\x4d\xa6\xa4\xa4\x50\x28\x64\x2e\x2a\x4a\x73\x4a\x11\x2a\x24\x63\xa5\x92\x39\xe3\x31\x56\x48\x49\xa8\x54\x86\x88\x46\x32\xa4\x97\x21\x7e\x4b\x6b\xfd\x6e\xe7\x5e\x9f\xd6\xbd\xbe\x7f\x79\xac\xe7\xfb\xfa\xc7\xd9\xfb\xec\x73\x5d\x67\x9d\xcc\x90\x37\x6f\x8f\x5e\xba\xfc\x2f\xf4\x5e\x5e\x55\xf0\xe9\x47\x20\xe1\x27\x4b\xec\xe5\xb2\xfa\x77\x0c\x2c\xd7\xd8\x7d\xcd\xda\xa1\x43\xff\xc0\x5c\xb5\xa4\xc7\x6e\xcf\x3d\x08\x0f\xaf\x44\x78\x17\x9f\x2b\x60\x21\x79\x82\x1d\x6f\x92\x97\x18\xfd\x3f\xc1\x61\x78\x47\xf2\xc0\xfb\x7c\xc2\xfd\xb8\x9d\xe1\xfd\xa3\x88\x94\x14\x1b\xff\xfe\x49\x36\xa1\x45\x58\xc5\xf1\x6f\x19\x5c\xac\xd4\x74\x55\x2b\x8b\xe0\xa9\x72\xb6\xfc\x6f\x61\x89\x2c\xba\x3c\x31\x25\x8a\x0d\x21\xef\x8f\xbe\x99\x30\x8a\x41\xa9\xe0\xce\xbf\x88\xe5\x8f\x8a\xd0\x37\xf8\xc2\x60\x12\x26\x0e\xca\x49\x7b\x10\xd6\x99\x84\x0d\xae\xa8\x8a\x61\xc1\x36\xe8\x2d\xd7\xcf\xe3\x92\x34\x86\xc0\xc4\x73\x9b\x87\xd3\x76\xb3\x95\x83\xcb\x8f\x94\x3e\x59\x5c\x40\xa8\xf3\xbd\xf2\xfe\x2f\x34\x9f\x26\xf4\xfc\x77\xf9\x0f\xfe\xb3\xf8\xd2\xa5\xa0\xf2\x73\x19\x91\xff\x13\xd5\xe2\xf2\x47\x06\x33\xdf\x30\x63\xe0\x0e\x0c\xec\xf9\xba\x51\x8b\xfe\x81\x41\x8d\x9e\xd3\x45\xa3\x37\x80\xdd\xa5\x34\x63\x27\x77\x31\xc2\x96\xce\xc0\x58\xf3\x39\xb9\x84\xbc\x97\x9a\xeb\xfe\x62\xc4\x6b\x85\xf2\xb6\x7f\xc3\xcc\x24\xde\xdd\x73\xe0\xe6\xbf\x70\xf1\x89\xf7\xda\xbf\xb8\x75\xe0\xdd\xda\xa9\x85\xb5\x0c\x5c\x77\x97\xe7\x6c\x4a\x7f\xc3\x40\x31\xda\xf2\x6e\xeb\xfa\x55\xf4\x0f\xd4\x71\xf9\xf4\x68\x5b\x2c\x27\x2c\xb9\x14\xed\xbd\xf8\x7b\x20\x41\xdb\xf9\xe0\xdc\x85\xc3\xf3\x08\xd3\xa4\x54\x5c\xd2\x2a\x8b\xd8\xe0\x64\xf3\x2d\x4e\x96\xbf\x88\x60\xb8\xe8\xc1\x95\x2d\xfe\x45\x84\xa9\x87\xcf\x37\x29\x4d\x7e\xc7\xb6\x66\xba\x97\xc3\x21\x27\xff\x9b\x04\x1f\x73\xe1\x39\x7f\xf1\x9f\xf2\x1f\xf0\xed\xd9\x92\x2d\xea\xfe\x85\xe9\x9f\xaa\x10\xc8\xe7\x24\x49\x10\x98\x34\xc1\x95\x4f\x25\x9b\xd0\x73\x76\xc0\x86\x6f\x45\x21\xc1\xba\xb5\x3a\x21\xd0\xbf\x82\x10\xf5\x69\xce\xcf\xd7\xf1\x65\x84\x45\x83\x2f\x96\xfd\x1d\x59\x38\xba\xac\x4e\xd0\xb5\x26\x6c\x7e\xc9\x0a\x76\xb9\x39\x93\x0d\xc3\x15\x9c\x3d\xab\x9c\x73\x09\x6e\x83\x26\xc7\xef\x36\xe4\x12\xb4\xa4\x3b\x16\x77\xf0\x9c\x24\xf0\xce\x95\xf4\xe7\x50\xd7\x23\x98\x24\x1a\x3b\x09\x5c\x91\x25\xf8\x0f\x5d\x15\x78\x30\x6b\x98\xc1\x1c\x33\x7d\x9d\x17\x7e\x13\x09\x33\x67\x3d\x33\x4e\x4e\xe0\x27\x94\xa8\x07\x9f\x57\x4e\xba\xc1\xc2\xe4\x65\xa7\x55\xeb\xeb\x4f\xd2\x18\x94\x13\x92\xcd\x5a\xf4\x24\xd9\x20\xb5\xbf\xd0\x86\x89\xb8\xc1\x06\x49\x4b\x09\xcf\x47\xe3\x64\x08\x7f\x2e\x57\xad\x90\xdc\xb8\x90\x90\xc1\x92\x75\x50\xaa\xfd\xc9\x60\xfe\xc2\xbc\x86\xdb\x03\xba\x04\x0d\xb3\x39\x0f\x1d\x8f\x2e\x61\x43\x5b\xfc\xf9\xa0\xa5\xeb\x8e\x32\xc8\x2a\xe8\x2f\x0b\x15\x5d\x45\x58\xf5\x3e\xd0\x5b\xdb\x2e\x9c\xf0\xaa\x4c\xe8\xd0\x13\xf5\x1b\x84\xa8\x80\x8d\xe5\x9a\xcb\xbf\x31\x58\x92\xff\x74\xe9\xe4\x17\xf9\x04\xfe\x8b\x18\x3a\x7c\x2e\x8d\x70\xb1\x60\x6a\x63\x78\x67\x01\xe1\x01\x97\xa5\xad\xd6\x6f\x29\x82\xea\xa9\x88\xb2\x4a\x85\x1e\x06\xc6\x05\x27\xdc\x9a\x0e\xf4\xb3\xa1\x8c\x95\xe6\x15\xe8\x9e\x95\x0f\x67\x45\xc9\xe8\x3f\x13\x67\x10\xb6\x3f\x09\xee\xf6\xbd\xfc\x88\x10\x52\x6a\x2e\x53\x11\xfb\x85\x41\xe9\xa5\xce\x1b\x91\xf7\x56\x13\x7e\x35\x64\x34\x3e\xca\x03\x83\xf2\xec\x60\x85\x75\xbd\xab\x09\xe2\xd5\x09\xfa\x2f\x2e\x36\xe6\xe3\x67\xd5\x59\x21\x9f\x70\x3b\xc2\x62\x8e\xbb\xbd\xbf\x05\x93\x09\x3a\xcd\x4a\x86\xbc\x6a\xa9\x84\xee\x91\x25\x53\x84\x47\x31\x7d\xe7\xeb\xee\x63\x4a\xa9\x84\x3b\x2e\x1d\x7a\x77\x9f\x27\x11\x72\x2f\x9a\x2e\xff\x3b\xf2\xc8\xe5\xd1\x8a\xd6\x3e\x43\x48\x88\xbb\x35\x33\xd9\xe0\x0c\xe1\x99\x4e\xaa\x6c\xa9\xad\x1b\x61\xb9\xd7\xe9\x73\x8f\xd6\x9d\x21\x7c\x09\xd2\xb3\x3f\x3e\xf5\x3a\xa1\xf0\xd6\x77\x6d\xc3\xcd\xaf\xf3\xa1\xa6\xff\x4c\xbb\x2f\xbc\x90\xc6\x10\x78\xb1\x85\x6f\xa8\x20\x88\xb0\x61\xa9\xe1\x95\xd0\xf5\xb7\x58\x60\x6d\xb9\xf3\xb6\xa0\xb0\x80\x90\xa1\x3c\xd5\xad\xfa\x61\x01\xc1\x79\xea\x25\xae\x07\xc7\x19\xc2\xd7\xe2\xdd\xd6\xdb\xf9\x15\xd9\x20\x38\xd9\xfc\xc7\x0b\xb5\xc9\x04\xbe\x85\x6b\x0c\xf9\xdd\xdf\x33\x98\xf2\x46\xf6\x8b\x73\xcc\x4c\x1a\xc3\xde\xbe\xb5\x16\x3b\xb9\xc7\x13\xea\x9b\x4c\x72\xbe\xcd\xcf\x67\x43\xcc\x7a\x41\xe5\xf3\xa5\x3c\x84\xca\x2b\x51\x1b\x34\x83\x87\x19\xdc\x5f\xba\x20\xe9\xad\x40\x16\xf5\xe7\x7d\x58\x1d\xbd\xb0\x8c\x85\xfe\xef\x11\xf2\xf5\x87\xde\xb2\xf0\x31\x6a\xc0\x77\x74\x82\x36\xed\x9e\xd6\x64\xd9\xad\x84\xe0\xe3\x55\x65\x72\xbe\x79\x04\xb5\xfa\x13\x29\x02\xd1\x79\x04\xa5\xd5\xb2\x4d\xa4\xad\x42\x70\x9a\xab\xf5\x73\xe3\x8f\x00\x36\x04\x6c\xd8\x39\x38\x6b\x7e\x09\x81\x4b\x43\xc8\xac\x9f\xf2\x58\x18\x09\xab\x89\xd7\x77\xcd\x26\xa8\x4c\xbe\xeb\xf5\x17\x67\x3d\xdc\x39\x8a\xc3\xb3\x09\x07\x84\x6a\xb4\xf9\xfc\xd2\xd8\x46\x62\x3f\xd7\x3d\xb8\x72\x26\x88\x20\x34\x7b\x61\xbb\x4f\x6b\x36\x41\xd8\xbd\xd2\xfe\x41\x4b\x36\x5b\x61\x4c\xab\x6e\x1e\x19\xc5\xd4\x13\x53\x55\xdb\x13\x3d\x09\xdc\xfc\x3f\xc6\x53\x9f\x18\xe1\x66\x7a\xf2\xd7\x94\x9b\x3e\x2c\x0c\xd6\x5c\xf8\x76\xec\xc8\x6e\x02\xbf\xb4\xc4\xeb\x66\xb9\x1e\x82\x90\xde\xf7\x5b\x0a\xe9\xdd\x84\x57\x3f\x04\xf7\x30\x27\xba\x09\x05\xd7\x27\x58\x64\xf1\xbd\x24\x88\xd9\xbf\xb7\x94\x51\x08\x23\xec\x69\x7c\x31\x75\xc5\xb5\xf9\x04\x77\x96\xd5\x04\x9f\xee\xe7\x04\x23\xf9\x6f\xb2\x7c\x72\x17\x08\x8a\x37\xc7\xc7\x9f\x2a\xf4\x26\xc8\x25\xba\x79\x19\x0c\xc9\x13\x2a\x9e\x88\xee\x9a\x7c\x74\x16\xa1\x26\xb9\xa0\xb5\x58\xf7\x08\x1b\x2e\x6f\xbd\x13\x53\x32\x3c\xba\xe7\x3e\xf1\xb8\x2f\xe1\x4d\x08\x61\x58\x52\xea\xa9\xb0\x5f\x2a\x41\xd1\xcf\x5e\xd7\xfc\x6d\x21\x61\xca\x2b\x4a\x9b\xac\xee\x46\x28\x6f\x9d\xe5\xfa\x2b\xea\x01\xa1\x5e\x5e\x75\xdc\xbd\x93\x35\xac\xb1\xe2\xc9\x67\x93\x6f\x60\xd0\xc1\xe0\xf5\x87\xc3\x55\x2e\x97\x32\x58\xf0\xca\x77\xa8\x7c\x19\x9a\x4e\x98\x2c\x3a\x5f\xe2\x7a\x56\x04\x21\xfd\x56\x5e\xec\xb1\x72\x35\x82\x4e\x67\x48\xe1\x8c\xe5\x2f\x08\x9f\x5f\x0f\x79\x5c\xe4\x2e\x20\x9c\xd4\x6f\xaf\xe2\xaa\x4d\x24\x54\xfb\xfd\x5a\x75\xea\x62\x02\xc1\x30\x55\x6f\x3e\xbd\xbf\x4b\x90\x52\x4a\xbc\xf4\x4b\xcf\x83\x30\x68\x23\xee\xe5\x25\xb2\x84\x70\x8e\xf1\x7d\xf9\x64\x15\x3f\x21\x7d\x76\x64\x7f\xf4\xbe\xe7\x84\xc1\x5b\xee\xc5\x92\x75\x71\x84\xb5\x97\x3c\xb7\x5c\xf6\xd3\x27\x4c\x28\x5a\x75\x59\x62\xc9\x26\xc2\x92\x35\x4d\x92\x39\x1d\x76\x84\xed\xeb\x04\xde\x4b\x58\xe4\x10\xbe\xe4\xdf\xd8\xb5\xba\xa7\x88\xd0\x98\xbd\xd0\xe6\xec\xcc\x87\x84\xb6\x54\x31\xd9\xa7\xd3\x1e\x12\x8a\x83\x3c\x4e\x2b\x7b\x8a\x12\x8e\xf1\xdf\xdc\x7d\xc7\x68\x33\xe1\x9d\xd8\x52\xa7\x39\x9b\x8f\xb3\x61\x91\x6f\x7d\x65\x82\x6e\x35\x03\x0f\xfb\x4e\x9d\xf8\x5f\xc2\x84\x86\x05\x9b\x64\x82\x56\x49\x10\xc2\x7a\x3c\x0e\xc7\xbd\x24\x82\xc1\xab\x24\xd7\x63\xb7\x06\x19\xfc\x79\x13\x22\xfe\xe4\x9b\xc5\xe8\x1e\xf7\xc4\xb4\x2d\xdb\x39\x08\xe5\x83\x5b\xe7\x98\x5c\x0d\x62\xc3\x79\xef\xea\x83\x45\xb9\xf2\x84\x20\x81\xba\x8d\x4b\x5e\xa9\x11\x12\x5c\xd5\x25\xb8\x75\x3a\x18\xf0\x3b\xf5\xc5\x5d\x3d\x39\x9b\xe0\x66\xc1\xe9\xb2\x52\xa3\x95\x41\xab\x5e\x00\x8f\xef\xa3\xef\x0c\x2c\x67\x37\x9d\x2e\xd7\x29\x22\x94\xec\xf9\x15\xf9\x17\x41\x89\x47\xa7\x1f\x5a\x21\x44\x38\x75\xdf\x45\x57\xb5\xa6\x98\x85\xa7\x07\xfb\x7f\xab\x30\x39\x04\x47\xce\xfe\x0f\xbb\xe8\x16\x41\x62\xab\xfe\xed\x86\xf3\xa9\x04\x65\xa3\xd8\x1b\x7f\x47\xb3\x35\x29\xcc\xf8\xc1\x1a\x82\x98\x84\x80\xdb\x2c\xb5\x42\x02\xf3\x41\xb3\xe1\xf1\xa9\x6c\xb6\xf2\x1f\x70\xd7\x1c\x36\x38\x46\xd3\x08\x12\x11\xdc\x26\x91\xba\x9b\x08\xc9\xaa\xde\x62\x27\x78\x67\xb1\x61\x47\xd4\x36\x1b\x8b\xc0\x76\x06\xe7\xa5\xfb\xf6\x5f\x96\x09\x67\x41\x94\x23\x3c\x5d\xc2\x2a\x9d\x30\xe7\xdd\x8f\x94\xb7\xca\x51\x04\x9e\x6b\xc5\xd6\x8b\x36\x15\x13\xcc\xe5\xbc\xea\xef\x07\x88\x10\xcc\xc5\x57\x9c\x2c\xbf\x26\xcc\x86\x19\x33\x3e\x8a\xcc\x98\x3c\xcc\xc0\x5b\xbb\x57\x2f\x7d\x39\x1f\x41\xe7\xd5\x36\xc9\x47\x1e\xb2\x84\xf3\xa5\x0d\xe3\x20\xa2\x4a\x28\x91\xf1\x2a\xac\xab\x5c\xc0\x86\x59\x9a\x3b\x8b\x9a\x4c\x17\xb2\xa1\x49\x39\xc7\x53\x6c\xf1\x3c\x36\x2c\x7e\x1f\x54\xf7\x38\x5f\x94\xa0\x66\x75\x77\xfc\x56\xc7\xc5\x6c\xd0\xf8\x6c\xf9\xbe\xdc\x64\x32\x1b\x2a\x62\x1e\x19\x44\x2d\x91\x22\x74\x1c\x53\xb8\x15\x51\x34\xc8\x80\xbb\x43\xea\xde\xf1\x6c\x55\xc2\x9a\xe7\x41\x81\x8b\xfa\x67\x12\x6a\xfc\x37\x9e\x99\x1c\xe4\x41\xd0\xff\x6a\xd9\x50\xb0\xbe\x99\x19\xc3\xaa\x79\xcd\xd2\x6a\xaa\xb5\x0c\x86\x2d\xc5\xe5\x76\xd7\xd8\x11\xfc\xdc\x35\x7f\x56\xde\x51\x23\x84\xf0\xcd\xb2\x82\xea\x7a\xc2\x6d\x8d\xf4\x8a\x2a\xd5\x41\x06\xb5\xfe\x73\x39\x8c\xf8\x77\xd0\x18\x92\xf8\xae\x3b\x4d\x18\x14\x24\xa8\x4b\x70\xff\xce\x2c\x2b\x26\xd8\x56\x7e\x5f\xb5\xf2\x69\x31\xe1\x54\xf4\xa7\x17\x2a\x87\xb6\x12\x9c\xa9\xfb\x89\xe5\xc1\x02\x42\x7d\xec\x80\xd7\x4d\x8f\x47\x84\x53\xfa\xfb\xfa\xb5\x4b\x43\x09\xee\xaf\xb8\x66\x4d\x54\x8d\x20\xe4\x65\xcf\x19\x27\x62\xea\xcd\x02\xcf\xe9\x2b\x7b\x0e\x24\x06\x11\x86\xe6\x3d\xf0\x13\x72\x0a\x26\xc8\x24\x6d\x9d\x2d\xb4\x2e\x93\xa0\xf5\x2a\x3d\x50\x3d\x2f\x92\x20\x34\xe3\x93\xd7\xdd\xa8\xcb\x2c\x9c\x3a\x79\xe7\x99\x7a\x48\x22\x0b\x05\x35\xdb\x70\x6b\xcb\x15\x16\x2e\x5b\xf9\xd8\x48\x7a\xa6\x11\x4e\x7a\x64\xb0\xa2\xce\xe4\x11\xd2\xbf\x09\x89\x0d\x89\x96\x10\x0e\xd5\x95\x30\x0b\x8b\x8a\x09\xa9\xfc\x3a\x99\xfb\x13\xee\x10\x8e\x3c\xdd\x9c\x17\xc9\x7b\x9b\x60\x91\xd9\x65\x7e\x71\x5c\x01\x81\xf1\x78\xee\x7d\xf8\x7a\x31\x21\xca\x84\xb7\x5e\xa7\xb9\x80\x90\x35\xcf\xa6\x59\x31\xf8\x0f\x83\x19\x9b\x02\x67\xef\x2c\xd3\xa2\x7f\x40\x2e\xbc\xd0\xe5\xce\xe4\x7e\x06\x92\x6f\xb7\x4d\x12\x5f\xbf\x9a\xb0\x63\xe0\x6d\x6b\xb6\xfa\x3e\x36\xf0\xe5\x68\xe9\x5f\xcd\x70\x25\xc4\x9f\xb5\xe8\x6a\xbf\xd4\xcb\x8c\xe1\x6d\x89\x69\x35\x5f\xe4\x00\x83\x5f\x13\x86\x6c\xf7\xbe\xe1\x20\x14\xec\x2b\xfe\xf5\xeb\x9b\x15\x0b\x3d\x96\x12\x7b\x7f\xe1\x3d\x03\xbd\x42\xe1\x15\xb3\xc3\x45\x68\x0c\xa2\x8f\x67\xb3\xd6\x27\x7f\x64\xb0\x4c\x33\xff\xf5\xd5\x76\x01\x42\x8f\xec\xd3\x3a\xbb\x37\x2b\x08\x89\x76\x4a\xc9\x4b\x99\x2d\x84\x6e\x4f\x89\xec\x2d\x9e\x26\x84\xab\x16\x17\x63\x84\x87\xd4\x09\x6a\x1b\xe9\x09\xc7\x87\x45\x84\xa4\x84\x53\x1d\x57\x74\x67\x11\x9c\x65\x0a\x1e\x2d\x52\x97\x24\x88\x7a\xd6\x4f\x8d\xeb\x5a\x43\x10\x9a\x75\xef\xac\x72\xec\x34\x36\xec\xb3\x08\xde\x36\x37\x61\x3a\xe1\xd2\xdd\x49\x3e\xcb\x8f\x37\x33\xb0\xa9\xdc\x5a\xbb\x50\x58\x9f\xc6\x10\x6f\xf7\xbe\x7b\x82\xf3\x6a\xc2\xd0\x77\xb1\xa9\x56\x97\xe2\x09\xf2\x07\x35\xe5\x4b\x16\x4c\x21\x5c\xd9\x2c\x36\xef\xae\x02\x07\x61\x9d\x22\xab\x66\x75\xca\x52\xc2\xbe\xa8\xa2\xa8\x45\xdf\xbf\x30\xb8\x18\x3c\xe7\xf1\x7b\xeb\x50\x1a\x43\x54\xd8\xed\x9b\x55\xbb\xa7\x13\x22\x15\x0f\x33\x67\x1a\x4c\x08\x3b\x2c\x27\x4c\xd9\xfb\x4d\x82\x0d\x5b\xd7\x45\x3a\xff\x5c\x99\x49\xd8\x2d\xc0\x3f\xbe\x25\x3c\x97\xa0\xd9\x7c\xbd\xe2\x83\x6f\x0c\xa1\x8a\xf3\xdc\xb1\xd3\x31\xd9\x84\x75\x81\x27\x6a\xde\x8c\x42\xd1\x72\x68\xa9\xdb\xca\x74\x42\xcd\x8f\xe7\x19\x1d\x77\x8a\x09\x07\xf9\x9d\x7e\x7e\x5e\x13\x44\xd0\xd9\xa6\x92\x64\x7a\x31\x90\x50\xae\x38\x8e\xd3\x6a\x4b\x10\x41\xa1\xcd\xd3\xe1\xc7\xa6\x20\x42\x59\xbd\xc9\xe5\xc7\x02\x71\x2c\x78\x09\xeb\x9e\xd4\x78\x18\x42\xb0\xf6\x3d\x64\xf0\xde\xb6\x98\xc0\x6a\xd6\x72\xb1\xe6\x8e\x22\x2c\xe6\x7d\x15\xf0\xd4\xf6\x26\x61\xce\xac\x49\x26\x2d\x73\xa2\x08\x8d\x57\xd4\xcf\x4d\x16\x8d\x22\xf0\xca\x3e\xbb\x4d\xb3\xa4\x08\x15\x6b\xca\x1a\x3e\x94\x2f\x26\xd4\x2e\xad\x58\x94\x76\xf9\x33\x83\x5b\x1e\x7b\x67\xb8\x84\x4f\x21\x0c\xeb\x64\x67\xef\x5d\x2a\x42\x50\xe6\x39\xe5\xd7\x2b\x26\x4e\xe0\xe3\xbf\xa0\xf9\x45\x5c\x8e\x0d\x3d\x07\x2d\x8b\xb7\x9c\x1e\x4f\x78\xbf\xa5\x60\xf5\xef\x32\x4d\x42\xd5\xd4\xc6\x33\xdb\x2a\x38\x09\x4d\x9f\x6e\x9e\x1b\x5a\x6d\x4c\x58\x7c\x61\x8e\x7a\xff\xbe\xad\x84\x8a\x1e\x89\xe5\x96\x0e\xe2\x84\x09\xaf\xfb\x82\xb3\x16\x15\x12\xb8\x66\xf9\x33\x5e\xb7\x0b\x09\xa7\x6f\x29\xd6\x48\x24\xf6\x33\x70\x1e\x7a\xf0\xe8\x85\xfa\x26\xc2\x2e\x65\x85\x19\xaf\xb6\xc5\xb1\xc6\x8a\x4e\x00\xc7\x46\xbf\x58\x29\x36\x48\xfc\x12\x89\xf0\x3d\x2d\x49\x30\xbc\x15\x7c\xcc\x12\xc7\x08\x8b\x37\xdf\xe7\x15\xe4\x49\x26\x38\x59\x04\x2c\xd3\x0a\x9c\x46\xf8\x22\xb1\x76\x3b\xff\xb0\x29\x61\x79\xb9\xc2\xfb\xcc\x95\x3e\x84\x4b\xab\xdf\xcb\x78\xdc\xf1\x24\xbc\xfc\xca\xaf\x2e\xad\x91\xce\x86\xce\x90\x4f\xbf\x4f\xde\xec\x64\x30\xec\xb8\xe3\x07\xaf\x55\x3e\x61\xeb\x83\x6d\xbf\x1d\x9e\x26\x12\x5c\x35\x5e\x14\x5a\xf6\x13\x81\xb9\xb8\xa0\xf2\x82\x99\x06\xe1\xc0\x50\xff\xe2\x80\x00\x31\xc2\x84\x11\x8e\x67\x4f\xaf\xcb\xb3\xe1\x3f\xa3\x88\x4f\x95\x7f\xa6\x70\x0b\x10\x6c\xa5\xe2\x47\x74\x87\xd7\xb2\x95\x6e\xef\xec\x19\x2a\xd5\x3f\x19\xac\xbd\x71\xf4\x0c\x5f\x7e\x0d\x21\x3d\x2b\xeb\x95\x95\xb4\x3f\x61\x9e\x8a\x71\x51\x8a\xeb\xe8\xb3\x6e\x5d\xe4\xa9\x35\x45\x57\x09\xce\x19\x2b\x9d\xf2\x3d\x3f\xe4\x63\x85\xe5\x9b\x97\x06\xb9\x79\x84\xb4\x25\x3f\xd3\xef\x09\x96\x10\x56\x45\x9d\xd1\xd1\x2e\xf0\x21\x48\xa8\xcc\x5b\x6d\xce\x51\x42\x90\xd4\x55\xd0\x97\xd2\xfe\xce\x1a\x5b\xa3\xd3\xaa\xc7\x59\xf8\x24\x99\x70\xc9\xe7\x87\x74\xb1\xde\x43\xc2\xcf\xe2\x7c\xf3\x23\xbf\x13\x08\x79\x7a\x42\xbf\x67\x6e\x4e\x22\x74\x9c\x7f\xf8\x66\xd3\x87\x64\x02\xef\xf1\xb0\xe7\xb4\xfd\x0e\x61\xcf\xf7\x5f\x5f\xed\x6f\x26\x11\xf2\xa2\x0a\x4e\x99\xbf\xc8\x25\xcc\x58\x71\xf6\xd0\x83\x86\x14\x36\xb4\xfb\x0e\x7d\x3b\x35\xd5\x97\x0d\xab\xa5\x62\xd7\xce\xbd\xff\x8b\xc1\x8b\x78\x9f\xf9\x2e\x6e\xf2\x84\xb5\xe5\xfb\xdc\x8f\xec\xe0\x21\xd4\xee\xba\xd0\xef\x70\x4b\x9a\xf0\x44\x75\xed\x39\x73\x71\x19\x42\xa6\xd7\xbc\x1c\xcb\xcf\x5e\x2c\xf4\xac\x2c\x5d\x96\xad\x1f\x4d\x58\xbc\xae\xae\x72\xe1\xbc\x18\xc2\x1e\x4e\xa9\xd5\xfa\xb6\x5a\xd4\x3f\xcf\x5f\x38\xac\x92\x93\x10\x36\xe3\x49\xfa\x81\xdf\xc2\x6c\x58\xe3\xf8\xf4\x9a\xc9\xd7\x72\x16\x34\xde\x1a\xe5\x9e\x1f\xe4\x27\xd8\x79\x2f\x9a\x9b\xc7\xf9\x83\xd0\x95\x98\x7c\x65\x8a\x5e\x15\xe1\x80\xe4\x7d\x0b\x9e\x2d\x73\x08\x6b\x3f\xbf\x53\xaa\x36\x1d\x61\xc0\x7a\x56\xdc\x77\x42\xbe\x9d\x81\xf0\xd3\xd9\xe7\xd0\xa1\x48\x63\xb0\xf5\x5e\x91\x60\xae\xd7\xc0\x40\x37\xb7\xe0\x58\x58\xa7\x2a\xe1\x0f\x57\xee\x82\xac\x2c\x39\x36\xec\xb7\xd9\xe5\xf2\xe6\xc5\x07\x06\x13\x1a\x3d\xfb\xbb\xb7\x4a\xd0\x18\xca\x0d\xda\xcc\x57\xe5\xe9\xb2\x41\x66\xfa\x33\x81\x5a\x8e\x61\x06\xcc\xa3\xd9\x8e\xc9\x0a\xc2\x84\xed\x5e\xe5\xc1\xdb\x3e\x5e\x24\x04\x7e\xb9\x69\xfb\x17\xa9\x33\xa7\xde\xfe\x76\xcd\x8a\xd0\x50\x65\x5b\x24\xb7\x5e\x90\x70\xa8\xba\x36\x2b\xe3\xd7\x76\x42\x83\xfa\x29\x0e\xfd\xd0\x0d\x84\x80\x12\x23\x93\xb7\x03\x7c\x84\xae\xbd\xc7\x0e\x7c\x12\xbc\x4e\xb8\xd9\xb5\x78\xa8\x65\x14\xdf\x1c\x26\x68\x8c\x5f\x72\x95\xe0\xb4\x7b\xb6\x66\xd1\x9e\x10\x42\xdd\x44\x8f\x1d\x1c\xb7\x39\x08\xd6\x8a\x81\x25\x8b\xf8\xcc\xff\x85\x99\xfa\xa5\x57\x76\xc7\xa8\xb2\xc1\x73\x28\x2e\xe1\xe3\x22\x33\xb6\x72\xef\xbb\xa4\x8d\x06\x57\x2a\x03\xf5\x35\x8e\x46\x2e\x52\xe3\x09\x9f\xcd\xd7\x0e\x29\x94\x2e\x24\xd4\xaa\x7d\x75\x4d\xf3\xff\xc0\xc0\x47\x29\xe1\xfe\xec\xdb\x92\x34\x86\x0d\xf7\xb9\x06\xb8\x57\x3d\x1f\x3d\x16\x76\xbd\x9c\xe6\xf0\x8b\xc1\xe9\x2b\x9a\x01\x7d\x5e\xea\x84\x75\xc5\x0f\x37\x8f\x17\x8a\x20\x3c\xe9\xfb\x6d\xa6\x73\xee\x3b\x03\xf3\x03\xbc\x59\xbe\x87\xb9\x08\x07\xbd\x2a\xd6\x2d\xe8\x52\x20\xec\x8c\xfb\xe8\x57\x38\x24\x48\x10\x7f\xe0\x58\x3a\x5f\xc6\x8d\x0d\x8f\x26\xbf\x9e\x13\x3e\xdb\x9e\x60\x1c\x72\xd7\x2f\x20\x92\x83\x10\xfb\x5a\xf3\x84\xdc\x1c\x69\x02\x6e\xcb\x9d\x54\x51\xdb\x4c\x68\xff\x74\xf3\x18\xe7\xd9\xdf\x0c\xf6\x2c\x70\x10\xa8\xff\x95\x48\xf8\x36\x50\x3b\x75\xa5\xa5\x3b\xc1\xec\xd0\xf9\xa4\x06\x7b\x2b\xc2\x2b\x83\x6f\x2b\x1e\x75\xee\x21\xcc\xe5\x7b\x98\x3f\x6c\x2b\x47\x60\x64\xef\x3e\xe6\xcf\x7d\x41\x58\x5a\x6d\xeb\xd7\xd7\x1e\x49\xb8\xb8\xed\x8c\xeb\xdb\xcc\xa9\x84\xe4\x4e\xd7\xc7\x79\x9f\xa7\x11\x9e\xe4\xad\xaf\x95\x3d\xab\xc1\x06\xad\xd8\xc3\x2a\x87\x16\xec\x23\xa8\xd5\x65\x9c\xbe\x7c\x4b\x9d\x20\xb9\x9a\xd9\x70\xf3\xc2\x2e\x42\xf8\x47\xdf\x49\x7b\x0e\xe5\x13\xbc\x05\x02\x38\x9f\x27\xe6\x12\x7e\x5b\x5f\x70\xfb\xb6\x24\x96\xc0\xbf\x5b\xde\x64\xe7\xe8\xe8\x32\x7a\x46\x44\xc2\x72\x09\x21\x3d\xdb\x3e\xb0\x96\x79\xb0\xe1\xfe\xc4\xae\xb0\xf3\x8b\xfa\x99\x31\x44\xc5\x84\xbf\xed\x38\x36\x93\xc6\xa0\xb2\xf7\x90\xb7\x1c\xe7\x5e\x36\x34\x6f\x8d\xf1\x76\x56\xbb\x4a\xe8\x15\x64\xd9\x69\x68\x5e\x25\x84\xee\xe9\x29\xbf\xbe\x62\x07\x61\x1b\xf7\x99\xe4\xfe\xc0\x5d\x84\xfa\xd3\x5e\x4b\x4e\x6f\x77\x26\x38\xf9\x5f\xde\x7b\x61\xbb\x30\xe1\x8a\x51\xa8\xa7\x86\x68\xd2\xbf\x70\xf8\xb3\x96\xee\x8a\xff\xc2\xdd\xba\xdd\x62\x11\x55\x99\x04\x9e\x13\x1f\x63\xff\xe2\x3f\xc5\xef\xc6\x23\xab\xf0\x51\xd8\x4c\x56\x70\x15\xb3\x0a\xa4\xfe\x85\x3a\x1b\xf3\x97\x1b\x12\x76\x48\x9d\x72\x5c\x72\x30\x8b\xd0\x91\xb2\xfc\x99\xed\xc2\xe3\x2c\x28\xdd\xac\x5d\x29\x70\xb7\x8c\x10\x34\xe5\xd4\x8b\xdc\x8b\xf7\x09\xaf\xaf\xc6\x08\x24\x93\x30\x61\xe5\xbd\x4b\xed\x92\x51\x2a\x84\xeb\xdf\xd4\xb3\x2c\xaa\xce\x13\xea\x1a\x9b\x3c\x24\xf5\x8b\x08\x9a\xb7\x9e\xf9\x6a\x29\x0b\x10\xae\xe4\x44\xe9\x3e\xb3\xbe\x45\xd8\xc4\xcf\xcd\x71\xec\x1c\x27\x1b\x92\x45\xf2\x8a\xf7\xeb\x2f\x26\x3c\x60\xc5\x8f\x67\x4a\x83\x08\x9d\x8d\x95\xbb\x14\xe4\xb7\x11\x94\x23\xb2\x47\x3a\xb5\xcc\x58\xc8\xbc\xb2\xa3\x42\x33\xdc\x81\x35\x36\x12\xab\x98\xfb\x5b\x35\x4d\x94\x70\xad\x7a\xe7\xab\x7a\x1e\x5f\xc2\x72\x9f\x26\x66\xaa\xb3\x03\x41\x24\x30\xe2\x9a\x72\x4f\x07\x03\x97\xe8\xef\x5c\x93\x27\x69\xd1\x3f\xf0\xb8\x21\xe0\xfb\xef\x85\xc5\xff\x13\xca\x31\x45\xaf\x5c\x8f\x9e\x63\xc1\xe3\xf6\x57\x33\x91\x90\x00\x02\x6f\xfb\xd5\xd7\x43\x92\x01\x84\xef\x83\x33\x62\x85\x2c\x84\x09\x37\xaa\x93\x62\x83\xbe\x6a\xb3\x21\xc4\xe8\x83\x8e\x26\x45\x30\x28\x37\xbe\x7c\x61\xd7\xc1\x43\x04\xd9\x95\xc7\x44\x6b\x76\xc7\xfe\x4f\xf4\x6d\x15\x36\xee\x5e\x29\x41\x38\xbd\x6a\xc1\x8f\x15\x2b\x7e\x33\xd8\x31\x4d\xa3\xc1\xf5\x21\x18\xec\x14\xbd\xac\xd1\x32\x23\x39\x1f\x45\xb7\x26\x6f\xc9\x3b\xbb\x83\xfe\x81\xf6\x8a\xb7\x0b\x30\xba\xe6\x3f\xf0\x6d\x7c\x97\x76\xf0\xb8\x05\xfd\x03\x06\x1b\xab\xbe\xcd\x33\x28\x67\xc6\x70\xae\xc6\x24\xaf\xc5\xd6\x90\xfe\x01\x99\x9e\x90\xfa\xf2\x4a\x2e\x82\x0f\xd7\xe9\x9c\xbf\xbf\x63\x09\xaf\x1f\x77\xcb\xec\x4f\x01\x0b\x66\xf1\x0a\x5a\x0e\xd6\xc9\xa3\x9b\xb0\xa2\x57\x2e\xbb\x8a\x08\x4b\x9f\x8a\xcf\x6e\x3b\x55\x48\xd8\x10\x50\x35\x47\xdd\x30\x8f\x90\xed\x1e\x32\x63\x51\x75\x14\x0b\x86\x16\x4e\x05\xc6\xf2\x57\x58\x10\x9d\x3d\xa8\xff\x77\xb4\xac\xe3\xe3\xb8\xc1\x2d\xcd\x0c\x6e\x2d\x35\x13\xcb\x08\x18\x47\xff\x80\x61\xe9\xdb\x35\xe6\x81\x0b\xff\x05\x13\x89\xcf\xf3\x4f\x07\xfd\x64\xc6\x10\xd9\xd4\x62\xe4\xdb\xa3\x43\x68\xdb\xc4\xfd\xc6\x43\x5e\x90\x0d\x9b\x7a\x0a\x9f\x04\x8b\x7c\x64\xc6\xb0\xf7\xf9\xfd\x3c\x4b\xdf\x7e\x06\x77\x7a\xce\xa8\x58\xd7\x4c\x26\xb0\x8a\x9a\x79\x56\xdd\x35\x25\x78\x66\x0b\x18\xdf\xbb\xd9\xc4\x40\xf0\xdc\x4d\xde\xdf\xca\xca\x34\x06\x3d\x17\xa5\x5b\x7f\x2f\xee\x1f\x8b\xae\xf1\x95\xd9\xd3\x08\xab\xbe\xc5\x56\x27\x5c\xf0\x63\x83\x35\x4f\x62\x80\x8a\x57\x0b\x03\x96\x64\x19\xeb\x75\x99\x36\xe1\x5c\x51\xfa\x4e\xef\x8d\xdf\x98\x31\x5c\x4e\xfd\x54\xa1\x3a\xfa\x9c\x96\xdb\xd1\x20\xbf\xc5\xf8\x05\xc1\x2b\xa4\xa7\x78\xc1\x96\x17\x84\x38\x66\x2d\xdf\x73\x95\x6a\x02\x8f\xbb\xa5\xb6\xd3\xf5\x70\xc2\x5c\x81\x8f\xfe\x7d\xae\xd3\x08\x07\x17\x4f\x5c\xa3\xb5\x65\x19\x61\xab\x9a\xf8\x85\xfc\xdf\x73\x08\xe6\x1f\x45\x1d\x7b\x24\x42\xd8\x50\x13\x99\x17\x6e\xe2\xc0\x22\x34\x47\xc4\xd4\x6d\x9a\x75\x91\x90\xbe\x5a\x50\xa5\xbd\x77\x36\xe1\xf6\x8f\x0d\x53\x06\x2e\x67\x13\x54\xa6\x64\xd9\x98\xcb\xe7\x11\x74\xfd\x7a\xf3\xe5\x5f\x1f\x23\xec\xb5\x93\xb6\xd9\x9d\xb1\x98\x70\xdb\x2b\xcd\x4f\x3e\xb4\x8b\x81\xd5\xad\x80\xbb\x79\xbc\x02\x04\x9b\xf6\xe5\x4e\x9d\xb2\x3a\x04\x6f\xb5\x60\x01\x3d\xee\xad\x84\x78\xcd\xa0\x34\xa7\x67\x22\x04\x2f\x65\xe9\x8f\xac\xea\xe9\x6c\x08\xad\xa8\x9b\x28\x2a\xda\x98\x8f\x8e\x29\x3b\x72\xaf\x86\x6b\x13\x1c\xef\xe7\x79\x78\x1f\xac\x63\x90\xfc\xd9\x6a\xe8\x59\xa3\x08\xa1\xfa\x05\x67\x57\xf6\xa4\x4d\x84\x4b\xe3\xc4\x0d\xce\xe6\x4b\x11\xf2\x4c\xb7\xa5\x1a\xd6\xc8\x11\x0e\x9c\xbf\xd5\x34\xc9\x3f\x81\x35\x56\xdc\xde\x0e\x9e\x29\x8b\xe2\x20\x5c\xe1\x78\xb9\x78\x72\xe7\xe8\x19\x49\xbc\x6d\x9c\xd3\xf7\x22\xc2\xb2\xcd\xe2\x51\x62\xdf\x8a\x08\x89\xa6\x93\x12\x84\xce\xe6\x13\x94\x16\x54\x17\xee\xff\xfe\xf7\x0b\x66\x8f\x96\x90\x0e\x3b\xc2\x26\x8f\xc6\x05\xa2\xed\x45\x04\x47\xfd\xe8\x22\xb9\x53\x05\x2c\x70\x0d\x18\x45\x9a\xea\xbf\x24\xcc\x8d\x4b\xb1\xe5\xe3\x7b\x42\xf0\x4d\x2a\x68\x51\xff\x53\x40\x30\x9c\x17\x9f\x13\x60\x95\x44\xf0\x8c\x0d\xa5\x1f\x8b\x5e\x12\xac\x4d\x5c\x2e\x36\x37\xdc\x61\xe1\xda\xac\x1d\x3d\xd9\x7a\x05\x84\x07\xab\x03\x13\x1b\x17\x26\x12\x32\x37\xba\xaf\xe2\xb7\x95\x22\x94\xad\x3b\x62\xf6\xf1\xe0\x04\x42\x55\xce\x13\xcc\x17\xf1\x27\xf0\x72\x06\xa7\x47\x0d\x44\xb3\xa1\xf6\x40\x55\x7a\xd4\xfc\x0c\x16\x56\xb9\xd8\x9d\xfe\x5b\x96\x6a\xc6\x1e\x75\x75\xdb\xff\x3f\x11\xc8\x18\x2f\xd9\x7a\xc7\x8f\x50\x31\x63\xdb\x3c\xd9\x99\x11\xac\xb1\xb2\x2c\x9b\x1a\x5e\xd9\x1a\xb1\xad\xb9\x16\x53\xcb\x6f\x79\xd0\x82\x70\xf8\x43\xed\xa2\xc5\x67\x0b\x09\xa5\x3b\x44\x1e\x55\xbf\x18\x47\x28\xaf\x6e\x31\x37\x8e\xca\x21\xc8\x5b\x2d\x1f\xff\xe5\x73\x16\xe1\xda\xe9\x2f\x8d\x5b\x13\xec\x09\xfd\xbb\x5e\x6f\x5f\x53\xb8\x92\x20\xf3\xe5\xe0\xcc\x3d\xf7\x34\x09\x0b\x6d\x44\x75\xd7\x1b\x48\x10\xce\xd6\xac\x7c\x26\x16\x68\x44\x68\xd2\xde\xd2\x29\x77\x6c\x80\xc1\x6b\xe9\xa7\xa9\x92\xca\xd3\x09\x15\x27\xdb\x57\x3c\x7a\x30\x8d\xa0\xd4\x78\xee\xa9\xd8\x55\x09\x82\x7e\xf4\xa2\x7c\xbd\x82\x33\x04\xab\xd6\x8f\xbb\x87\xf5\xf7\x11\x8e\x4b\x8f\x18\xe8\x15\xaf\x26\x94\x9a\x0c\x3a\xa8\x55\x17\x11\xba\xce\x4d\x8d\x78\xf9\xb2\x88\xa0\xbc\xbf\x50\x57\x74\x41\x13\x5b\x31\xa9\x96\x4c\xfb\x8b\x5a\xbf\x99\xe7\x32\xaf\x05\xb1\x50\xb1\xd9\xc4\xa8\x61\xc1\x37\x42\x7b\x9e\x56\xf9\xe6\x9c\x7e\x42\xb9\x5c\xce\xaf\x5c\xc5\x78\x16\x7a\x97\xac\xdd\x3a\x5f\xb9\x90\x60\xd3\x16\xd7\xf0\xb7\x8c\x8f\x95\x9d\xe7\xc4\xf9\x8d\x70\xef\x71\x91\x78\xbc\x61\x2a\x61\x46\xf6\xb3\x2f\x33\xac\x52\x09\xbb\x7e\x5d\xb9\xb0\x2d\xf5\x1b\x81\x47\x6d\xe0\x9c\xe9\xd3\x72\x42\x9e\xd3\x09\xef\xb7\xb9\x95\x04\x47\xe6\xc4\x3e\xef\xc7\x6f\x09\xe1\x4d\xe9\xe7\x62\x7a\x5e\x12\xfe\x4c\x6b\x7c\x6f\x94\x58\x48\xc0\x8f\x95\x0a\x8f\x77\xa5\x13\xe2\x97\x34\xf7\x6f\xe6\x8a\x24\x24\xb6\x35\xf4\xda\x66\xfd\x24\x94\x0e\xda\x0a\x98\xfa\xf5\x10\x9e\x1f\x36\x8e\x14\x5e\x16\x4f\x10\xfd\x36\xd8\xa7\xea\xd9\x40\x68\xad\xef\x95\x7d\x6c\x57\x48\xf8\xba\x52\x6c\x28\xeb\x6d\x01\x21\x81\xab\xe0\x8f\x95\x39\x27\xe1\x69\xd1\x92\x30\xae\x8c\xf9\x6c\x38\x28\xb0\xb9\xa5\x53\x83\x83\x70\xe6\x57\xd6\x52\x27\xc9\x4c\xc2\x1a\x13\x55\xf1\xa8\xb5\x16\x04\x87\xcd\xfc\x07\x2e\xac\x29\x24\xfc\x6c\x3f\x36\x30\xb5\xab\x91\xb0\xb1\x64\xab\xd0\xfc\xa2\x46\x82\xd0\x87\xc0\x84\x07\x17\x1b\x09\x6a\x4d\xcb\x6f\xfc\x5d\x33\x54\x3f\x54\xe2\x91\x60\x46\x68\xb5\xb8\x64\xe5\x32\x6b\x27\x5b\x29\xba\xb9\xac\x69\x89\x6d\x11\xc1\x79\x79\xf9\x99\x41\xcb\x22\xc2\xc8\xe9\xaa\x83\xb1\x93\x2e\x13\xe6\x5e\x78\xb8\x89\x5f\xaf\x90\x60\x67\xfb\xfa\x49\x80\x68\x31\x21\x71\xb1\x48\xfe\xec\x1e\x16\x61\x43\x82\xa8\xd1\xba\xa2\x42\xc2\x9b\xee\xe3\x7b\x22\xba\x0a\x08\x36\xbc\x3f\x0a\xa6\x2f\x7d\x4c\x68\x0f\x72\x38\x31\x2b\xa9\x6a\xb4\xdc\xee\x79\x10\x7a\x85\xfa\x4b\xaf\xbc\xff\xd7\x5f\x74\xa5\x1c\x9b\xb2\xd5\xa2\x88\xf0\xc7\xe2\x2d\xab\x0b\xc5\xff\x6f\x08\xb3\xb0\xf2\xf9\xcd\x17\x44\x48\xa1\xb5\x09\x7f\xa6\x9c\x26\xcc\xad\xe8\xc8\x08\xd9\x15\x4c\xf8\x95\x77\x52\x68\x61\x77\x20\x5b\x91\x75\xd6\xae\x4e\xde\x93\xcb\xc2\xd5\x55\xf1\xcf\x37\x68\x27\xb0\x30\x4d\xe1\x75\x05\x27\x67\x36\x0b\x31\x71\xf2\xf3\x78\x2a\x1f\xb2\x20\x3c\xe0\x7c\x27\xe0\x79\x11\xe1\x43\x3f\x77\x8d\xd4\xa5\x7c\xc2\xf2\xb2\x2d\x3d\xa2\x09\x2f\x08\x41\x42\xc5\x13\x55\xda\x16\x12\x44\xb8\x67\x4f\xd6\xa8\x2d\x23\x2c\x11\x15\xde\xb4\xc5\x59\x91\xf0\xad\xcd\xf4\xec\xb5\x71\x4a\x6c\x10\x6d\x9f\xe4\x30\x7e\xe2\x46\x36\x1c\xd6\x69\x72\x75\xf7\x18\x7d\x71\xc2\xf7\x97\x8c\x70\x2c\x27\x3c\x89\x4b\xcd\x3b\xf4\x36\x93\xf0\x78\xb8\xce\xc7\xed\x1d\x3b\xa2\x7f\xdf\x10\x56\xb0\xb3\x20\xdc\x39\xeb\x6b\xbf\x81\xdf\x8a\xf0\xa4\xa2\xec\xc6\xce\x94\xcd\x04\x97\xad\x67\x1d\x39\x66\xee\x24\x58\xaf\x87\xb6\xb2\x92\x3d\xc1\x62\xe7\x4f\x2b\xb1\xcc\x57\x84\x82\xd4\xc2\x58\x63\xcd\x3d\x04\x87\xdd\xb5\xdf\xd2\x3c\xcf\x11\xf6\xf4\xd4\x3d\xfc\x76\x22\x9a\x0d\xc3\x89\x85\xd7\xfe\xa2\x6c\x7e\x42\xe3\xca\x8d\x7b\x08\xc5\xb2\xbc\xcd\x67\xea\x74\x58\x63\xc5\xa9\x59\x2f\xe5\xc0\xd1\x9d\x6c\x6b\x8a\xe6\xa6\x7f\x71\x75\x12\x24\xe4\xd2\x3a\xbe\x0b\x9d\x71\x2c\x04\x28\xbd\x14\xd9\x68\x5a\x41\xf0\x99\xa5\x2b\xac\xf0\xed\x2e\x81\xe1\xfa\x6d\xb4\xf6\x70\x3e\x81\xbf\xda\x5f\xe5\xa1\xbd\x0c\xe1\xe6\x7e\x97\x3b\x17\xce\x3d\x22\xfc\xea\x6e\x55\xb5\x32\x08\x21\x5c\xdb\xb2\xfe\x40\xe4\x84\x5b\x84\xde\x77\xc5\x92\x1d\xa3\xb0\xcc\x77\x7c\xfc\xe3\xbf\x70\x83\x53\xe0\x84\x48\xca\x3e\x42\xf0\x8f\xde\xab\x57\x1f\x45\xb3\xa0\xac\x32\x7f\xff\x9c\xbb\x76\x84\x13\x6f\xbf\x87\x6c\x89\xdb\x4a\x63\x65\x2a\xff\xf9\x8b\x83\x3c\xbb\x08\x0b\x95\xf6\x3d\xac\xed\xce\x21\x24\x9e\x1c\x76\x37\x57\x79\x44\xb0\x9c\x73\x76\xc7\x9d\x2d\xd7\x59\x30\x5b\xe0\x7f\x9f\xc3\xac\x80\x10\xea\xf0\x35\x98\x4f\x3d\x9e\xa0\x7a\xa4\x63\xf6\x63\xb9\x02\x42\x93\x1c\x33\x67\xfd\x8e\x02\xc2\xc8\x96\x68\xe3\xb7\x55\x85\x04\xde\xfc\x7c\x3f\x81\xa6\xfb\x84\x89\x83\x0e\x7e\xcb\x62\x8b\x08\x33\x4a\x65\x9e\xac\x38\x9e\x4f\xb8\x17\x7c\x27\x63\xd7\x90\x13\xc1\xf6\xf0\xfb\xcc\x9d\x1a\x9f\x19\x0c\xa7\x78\x3e\x37\xad\x31\xa5\x31\x9c\x33\xca\x2b\x8e\x7d\xc3\x4f\xe8\xba\x3a\xbd\xb7\x34\xf2\x36\xe1\xc3\xd4\x58\xe9\x7b\x29\x65\xd4\x9f\xc1\x15\x6b\x3c\xee\x29\x61\x83\xf7\x51\xd5\x8f\x2a\xe9\x84\xd0\x15\xf0\xbd\x7e\xea\x0a\x61\x2f\x5f\xcb\xf0\xcc\xbc\x02\xc2\xb1\xde\x63\x1d\xba\x39\xbb\x09\x27\x6c\xef\x8c\xeb\x8f\xb2\x23\xe8\xae\x28\xda\x20\xdc\xf7\x9b\x19\xc3\xc1\x07\xb1\x1b\x85\xdb\x0a\xf3\x61\x50\x2e\xa6\x5a\xfa\x7c\x88\x81\xd5\xb6\x95\xdf\x4a\x1b\x6a\x58\x88\x8b\xd7\x0b\x90\x76\x49\x22\xb8\x97\x79\x5b\xeb\x7f\x78\xc3\x42\xee\x60\xbd\xa2\xb0\x5c\x0a\x61\xf9\x73\xdb\x6c\x6b\xb0\x08\x99\x2b\xf6\xef\xf4\xac\x7a\x4e\x38\xa6\xb8\xcd\xa2\xae\x25\x96\x20\x98\xb1\x61\xd7\x67\x71\x86\xd0\xc5\x3a\x39\x9d\x27\x56\x81\xc0\x9f\xfc\x66\x5d\x9c\x51\x2e\x41\x33\xd2\xe6\xab\x10\x47\x36\xe1\xc9\xc7\x49\x2b\xad\x42\x8a\x08\x01\x29\x5b\x2a\x53\xa4\xf2\x08\x86\xc9\x47\xc3\x76\x46\x15\x11\x86\xe6\xae\xf8\x1c\x71\xf3\x1c\xc1\xa7\xf3\xd8\xc0\xec\x46\x16\xe1\xf3\xcb\xc5\x91\x7f\x91\xb2\xcb\xf8\xd9\x5f\xa4\x19\x72\xdc\x55\xbe\x65\xfd\x2f\x74\x8d\x13\x16\xe2\x3c\xb5\x87\xad\x6c\x90\xd1\x7d\x1e\x16\xbc\x85\xa0\x95\xcc\x5b\x32\x2e\x38\x96\x60\xb9\xfe\xa4\xa8\x29\xb3\x85\x30\x71\xeb\xcb\x22\xd7\x96\x42\xc2\x37\x4f\x65\xc7\x61\xf5\x01\x06\xa5\x83\x39\x72\x25\x2b\x84\x68\x0c\x7c\x0d\xf3\x42\x59\xbe\xdb\xd9\xb0\xc8\x31\xf5\xdc\xe3\x92\xdf\x0c\xbe\x6c\xad\x89\x9b\x29\x28\x4f\x38\x3a\x4b\xb3\xf4\x91\xbd\x35\x21\x74\x48\xe5\x69\x59\x4b\x31\x61\xd7\x71\x7b\xcd\xc9\x73\x0b\x09\x9f\xf7\xba\xf9\x27\xae\xe8\x65\x70\x64\xef\xe0\x7e\x56\x85\x2a\x8d\xe1\xf4\x7a\x6f\xa9\xab\xae\x60\x70\x31\xac\x77\xd2\x41\xa7\x22\xc2\xe9\x91\xf6\xdd\x56\xc7\xf9\xd8\xe0\xbb\x43\x42\x77\xe6\x41\x15\x36\xa4\x6f\x36\x95\x7b\xb4\xb0\x31\x1f\xa7\xd6\x5a\x70\x4b\xbe\x52\x23\x9c\x9c\xf7\x7b\xa0\xe6\x5e\x21\x61\xde\xdb\xe6\x96\xbf\xf8\xb8\xa7\xca\xa5\xe4\x48\x1a\xe1\xeb\x5e\x5e\x81\xda\xd1\x32\x2d\x66\xaf\x51\xf1\x83\x10\xc2\xb9\xb4\x88\xdd\xa6\xe1\x09\x84\xda\xbe\x0d\xbc\x6e\x11\x79\x2c\xa4\x4c\x6f\x1e\xca\xd0\x2e\x22\x9c\xb1\xdb\xfb\x8a\x6b\xb5\x1c\xc1\x38\x7c\x87\xc3\x9b\xe0\x42\x42\xa5\xb5\x47\x65\x58\x52\x21\x41\xb0\x61\xdd\x0f\xf7\x65\x67\x08\x83\xda\x37\xbf\xdc\xb6\x4b\x23\x7c\xe0\x32\xf1\x88\x95\x7e\xc3\xc2\x3d\x87\x4c\xdf\x9b\x5f\x59\x84\x25\xc5\x0d\x9f\xf6\x88\x86\x10\xd4\xd2\xa2\x45\x25\x1f\x3f\x25\xc4\x0d\x1d\x3c\x6b\xb3\x77\x0e\x61\x68\xb9\x78\xdd\xfa\xee\x18\x82\xd6\xfb\x36\xf7\x70\xdb\x6d\xff\x42\xc6\x49\xcf\x11\xc5\xd1\xe3\x94\xf6\x54\xaf\xbc\x88\x6e\x71\x42\x76\xfd\xcb\x6a\xeb\xda\x5e\x66\x0c\x2e\x11\xef\xa6\x76\xa8\x96\xe4\x23\xe0\x9b\x99\x86\xb2\x58\x2a\x0b\x62\x41\x65\x93\x9b\x56\xe4\x11\x5e\x5b\xbb\xa9\xa2\x35\x8f\x10\x76\xf3\x5a\x7f\x76\x78\x01\x61\xb6\x90\x8d\xd0\x7a\xf9\x74\x42\x6f\x65\xdc\xa2\x65\x0f\xd2\x09\x73\x12\x0d\x2a\x64\x44\x9d\x08\xd5\x61\x3e\x9a\xbf\xf8\x42\x09\x37\x57\xe5\xdb\x85\x28\x86\xb2\x95\xb5\x6a\xbb\xe7\x5f\x79\xa3\x40\x58\x7b\xd7\xa6\xc8\xbf\x6f\x35\x61\xfe\xc6\x8d\x7b\x15\xe2\x39\x09\x57\x67\x52\x77\xd8\x6e\x0d\x42\x83\x5b\x8e\x91\x86\x6c\x2a\x61\x7b\x64\xa6\xf5\x4d\x95\x42\x42\x7d\xd5\x93\x9c\xcc\x60\x49\xc2\xfc\x80\xc7\xa2\xaf\x14\xed\x08\x1f\xf3\x8e\xe6\x8e\x2c\x10\x25\x84\x6c\xd3\x30\x5f\x70\x63\xf4\xc5\x5c\x90\x5c\xd3\x68\x15\xce\x56\xc6\xf5\x96\x0f\xd7\x4f\x16\x66\x03\xf7\x94\x63\x1e\x75\x71\xf9\x04\xd1\x1b\xd3\x67\x38\xe7\x66\xb2\x15\xb7\xcf\x10\x99\x1a\x33\x91\x70\x45\xcd\xb3\x9d\xff\xfa\x74\x82\xeb\x6e\xeb\x65\x79\xd6\x4e\x84\xd7\x6d\xaa\x9b\xc2\xf7\x9a\x11\x8e\xed\xdb\x19\x62\xc8\x31\x97\x20\xd3\x3b\x7d\x9d\x6a\xc9\x1c\x02\xa7\xe8\x2c\xd7\x26\xfd\x92\x7c\x8c\x08\xfc\x9e\x2e\x6a\x5d\x40\x50\xb1\x98\xfa\xe3\xb1\x18\x8b\x60\x63\xce\xbb\xe8\x6f\xf9\x0f\xc4\xeb\xdc\x5a\x8f\x7e\xe3\x20\x24\x76\x19\xa9\xdd\xe7\xae\x22\x38\x59\xc4\x5c\x98\x6a\xbe\x90\x70\x65\xe0\xb4\x73\xec\x56\x59\x36\x50\x6a\x97\x4b\xe2\xab\x5e\x66\x0c\x8e\x8b\xe6\xd6\x28\x17\x6a\x10\xf4\x8b\x0e\x2c\xec\x9a\x56\xc8\x1a\x2b\x0b\x6f\x1c\xae\x6b\xc8\xaa\xcc\xc7\xba\x7e\x4b\x8f\x3d\x43\x9f\x19\x4c\xe8\x7f\xb8\xe4\x68\x55\x71\x3e\xb6\x9b\x46\xdf\xf4\xef\x2b\x20\x1c\x4c\x1b\x0a\x28\x99\x77\x9b\xd0\xc7\x1f\x70\xe6\x6f\xe9\x78\xb5\x8e\x33\x21\x69\x0d\x1b\xa2\x95\x7f\x96\x36\x88\x15\x11\x0c\x34\xdf\x65\xe4\x75\x15\x12\x56\x55\xcf\x8c\x0c\xd7\x28\x64\x1b\xed\x5b\x68\xd9\xf2\x31\x65\x2e\x21\xa7\x7f\xbc\x2f\xa7\xe2\x3e\xc2\x2e\x17\x29\x57\xd5\x49\x9d\x0c\x8a\x8e\x19\x4d\xb8\x9f\xc7\x43\x63\x78\xb6\x18\x12\x6b\x96\xbc\xcb\xc7\x7d\xc3\xc5\xd1\xd9\xf3\x55\x69\x0c\xd1\x51\xfa\x4b\xfa\x65\xdb\x98\x31\x2c\x29\xb3\x3f\x2a\xbe\x15\x6c\x30\x5b\x68\x77\xff\x84\xde\x3c\xc2\xa1\xbd\x17\x0f\xd7\x77\x09\x11\x3e\x7e\xda\x1f\x7a\x54\x7a\x1d\xe1\x49\xe3\xf4\xa2\xdc\x6d\xbd\x0c\xbe\x64\xbf\x7c\x99\x37\x52\x48\x98\xc5\xaf\xd0\x73\xeb\x72\x2e\x21\x36\x99\x73\x6b\xbb\x5a\x21\x8d\x8d\xfe\xef\x7f\x9a\x12\x53\x7e\x22\x8e\xab\x90\xf0\xfb\xb4\x79\x9b\x82\x4f\x1c\x5b\x31\xc9\xfa\x32\xbc\x4c\x7e\x1e\xe1\x93\x09\xf6\xce\xbd\x7b\x87\xa0\x5e\x69\xf0\x76\xde\x28\xba\xe5\xcd\xf4\x46\xe6\xf0\x12\xea\xaf\x7b\x7c\xf9\xaa\xb0\x87\xd0\xc2\x9c\x72\xb1\x31\x68\xca\x47\x5a\xa9\xe2\xa6\xdb\x62\xfb\xe9\x1f\x18\x56\xe1\xaa\xb5\xf7\x51\x20\x4c\x35\x9c\x2e\x77\x7f\xd3\x62\x82\xf4\xd5\x66\x9b\xf7\x0f\x9e\x33\xb0\xd7\xcd\x8b\xd8\xb0\x7a\x25\xfd\x03\x3f\x5c\x36\xc1\x72\x59\x31\x03\x7d\xdd\x3e\x2b\x01\x1e\x75\xc2\xad\xcb\xb5\xdd\xdf\xbd\x5e\x33\x50\xf8\x35\xaf\xb3\x75\x83\x36\xc1\x5b\xfd\xc6\xa3\xfb\x2e\xa7\xd9\xf0\xbb\xdc\x4f\xed\x4f\x8c\x1d\x21\xf3\x74\xba\xbb\xb5\x8b\x1e\x61\xfb\x11\x83\xeb\xf5\xdd\x60\x60\xb3\x7f\x3f\xa9\xa9\x2e\xa5\x31\x9c\x1f\xfa\xb0\x54\x63\xf4\xb0\x3b\xdf\x53\xd5\xa0\x81\xe7\x15\x41\x6c\xe9\xbb\x0e\x45\x85\x5c\xc2\xb8\x76\xc1\xb3\x67\x0e\x3d\x27\xc4\x37\x3e\xb3\x8d\x6b\x4c\x27\xa4\x1f\xc8\x32\xbe\x2e\xee\x4d\xf0\x7a\x10\xb9\xe5\x84\xf6\x00\x83\x1d\x81\x2f\x33\x9d\xab\x89\xe0\x6e\xa4\xb8\xf8\xa2\xe3\x61\x36\x14\x3c\x94\xec\xa9\x3b\x6d\x45\x98\xdc\xd8\xf9\xe0\x8d\x41\x2b\x83\xcd\xb3\xa6\x7a\x49\xae\xee\x65\x43\xda\x78\xc1\x58\x7f\xb3\xd1\x9b\x44\x40\x85\xff\x04\xf7\x02\xc2\xd0\xdd\x2b\x8d\x41\xbc\xca\x84\xa3\x39\x9b\x5c\x17\x32\x57\x09\x13\x2a\x38\x2e\x28\xff\xfd\x3e\xf7\xff\x87\xff\x97\x59\x62\x7e\xab\x65\x09\xdf\xc2\xba\xe3\x3c\xf7\xbd\x65\x60\x9e\x19\xb3\xe0\xa5\xfc\xe8\x7e\x56\x95\xbb\xf6\xa9\x4c\x21\xc1\x36\x78\xd5\x79\xa3\x75\xf1\x2c\x14\x0c\x3f\x5a\xf1\x77\xc4\xfb\xc0\xee\x82\xd6\xd3\x71\x04\x4b\xe7\x19\xc4\xc4\xbf\x67\xf0\xb0\x68\xfb\xfe\xee\xc5\x43\x0c\xd6\x6f\x91\x56\x59\xb5\xdd\x88\xc6\x20\xdd\xa2\x5f\xc6\x1b\x34\x81\x30\x30\xfb\x42\x02\x2b\xe2\x01\x1b\x7c\x2b\x3a\xbb\xc2\x6c\x1b\x09\x53\xa7\xa7\xdc\xa4\x75\x4d\x84\xbd\x96\xd7\x58\xd7\x47\xcb\x31\xb1\x45\x6f\x0f\x73\x36\x12\x38\xdf\x9d\x3a\xa5\x35\x3a\x8a\x59\xa1\xe1\xf0\x7a\xe1\x63\x82\x43\x50\x17\x7f\xb8\x50\x21\x41\x44\xb4\x1c\xc1\x61\x25\x84\xf8\x2f\x9f\x32\xb6\x0a\x96\x10\x0e\x58\xfa\x16\xd7\xd5\x84\x12\xac\x8f\x59\x6d\x7b\x67\xfa\x98\x90\x2f\xc8\x92\x4b\xfc\x53\x4c\x30\xba\xba\x4b\x34\xe8\x59\x15\xe1\x59\xe8\x7b\x9d\x09\x2d\xeb\x08\xc1\x37\xcc\x8f\x1f\x53\x9c\xce\x86\x96\x1d\x8e\x28\x3b\xf6\x8b\x81\x68\xf0\x9d\x64\x33\xd3\x69\x84\xfe\x3d\x61\x61\xed\x69\x02\x6c\x88\x71\x2c\xca\xa7\x0d\x0a\x6c\x58\x35\xad\x49\x29\x7d\xef\x6e\x42\x7b\x23\xff\xfe\x9d\x23\x36\x84\xa1\x78\xd5\x87\x26\x21\xd3\x08\xe5\xed\xb3\xbb\x3b\x17\x0e\x31\xd8\x29\x50\x91\x32\xc1\x72\x06\xe1\x7c\xb2\x7e\x9c\xd6\x15\x6e\x82\xf7\xbb\xb7\x9e\x83\xc9\x1c\x04\xe9\x77\x37\x72\x78\xa4\x6d\xd9\xf0\xf3\xb5\xdb\xc5\xf7\x5f\xa4\x08\x7e\x15\xcd\xbd\x13\xa4\xd6\x13\x92\xdf\x9c\x0e\x9e\xf2\x67\x33\x81\x47\x73\xa6\x50\xac\xfa\x30\x83\xbc\x26\x3b\x27\xf7\x6d\x6b\x68\x0c\xee\x1e\xdb\x2f\xec\x96\x6d\xcc\x47\xe5\xa3\xc4\x7d\x73\x0d\x27\x12\x6a\x2f\x8b\x7e\xde\x6d\xac\xc0\x86\x7d\x62\x1d\xbf\x1a\x0e\x3d\x61\x90\xea\x97\x72\x6d\xc3\x07\x2b\x42\x62\x74\x9f\xf4\xfd\x79\x65\x04\xa5\x63\x1a\xf2\xf3\xd7\x66\x12\x78\x92\xe3\x76\x49\xf6\x3c\x23\x24\x2d\x37\x3c\xfa\xb8\x31\x8e\x70\x99\x25\xfb\xe1\x48\x77\x1c\xe1\xfb\x1f\xbd\xf1\xd6\xf9\xc1\x84\xd7\xb9\x7a\x9b\x6d\x7e\x96\x13\x46\x62\xeb\x36\xb3\xee\xde\x26\x38\xad\x5c\xed\x39\xd4\xa6\x40\xd0\x3d\xbc\x7e\xf6\x25\xc5\x0d\x84\x48\x4d\xad\x91\x98\x07\xfa\x84\x1f\x5a\x31\xa6\x51\x93\x89\x70\xfd\x90\x58\xb9\x40\x37\x37\x1b\x16\x7d\xb7\x58\x1d\xb8\xaf\x87\x19\xc3\xd6\x71\x8e\x89\x66\xdd\x0b\x09\xef\xe2\x7d\xb4\xbc\x65\x57\x11\xbe\xcb\x0a\x2e\x6a\x94\xde\x44\xa8\xca\x0d\xd1\x4a\x88\x74\x22\x0c\x74\x2f\x6f\xb5\xb7\x5e\x4e\x38\xff\xfa\x9b\xe1\x5c\xbe\x01\x06\xfb\x04\xb4\xbf\xd9\x0c\xdf\x20\xe8\x96\xc8\x04\xd6\xde\x3a\xc2\x06\x89\x96\x8f\xf3\xde\x07\x29\xb3\x41\x5c\xdf\x76\x41\xea\x83\x8d\x04\xa3\x0b\xde\xeb\xee\x9e\x93\x23\x5c\x29\x52\xf4\x37\x7c\xcf\x4f\x90\x78\xe5\x1c\xb0\x6d\x11\x27\x41\xd0\xee\xea\xfe\x9f\xc9\x6f\x19\x3c\xf9\x29\x74\x75\xf0\xc3\x7e\x1a\xc3\xf5\xed\xef\xbc\x7f\xa5\x19\x10\x62\x7e\xbc\xac\x97\xd5\x53\x27\x28\x7d\x75\xaf\x10\xf8\xfa\x80\x0d\x87\xae\xf6\x7d\x1c\x60\x9a\x19\x24\xf9\x39\xcc\xe4\x3d\xb2\x80\xb0\xde\xee\xec\xb2\xc7\xe3\x36\x10\x7c\xaf\xbf\x7e\xcf\x29\xc7\x45\x20\x33\xaf\xfe\xe8\xcd\x7d\xcc\x18\x16\x97\x2a\x9d\x5f\xdc\x5e\x9f\x8f\xa2\xc9\xfb\xb2\xc5\xbe\xc6\x13\xe2\x0b\x8e\xca\x1e\x6a\x8f\x27\x7c\x39\x32\xf8\xbc\xd7\x69\x35\x61\x77\xda\x9e\x49\xce\xce\x93\x09\x7a\x8a\x2b\xaf\x64\xf2\xac\x23\x54\x49\x28\x48\x68\x27\x3b\x11\x3a\x28\x77\xc8\x43\x55\x9a\x70\xe8\xe1\x0b\x5e\xcf\xf6\xe9\x04\xe9\xfd\x02\xfb\x64\xbb\x19\x42\xa5\xfd\x21\xe1\x19\x9f\xc1\x60\x43\x8a\xac\x98\xf9\xc1\x01\x06\xe1\xab\x0a\x63\x16\x99\xd8\x13\xa4\xde\xd4\x7f\xab\xa8\xdb\x48\x68\xdb\x57\x62\xf5\xcc\x54\x8f\xe0\x24\xa5\x2d\x7f\xd9\x63\x19\xc1\x88\xd7\xfb\xdc\x06\x0d\x11\xc2\x81\xfd\xfc\x9f\xc3\xee\x6a\x11\x0c\x4e\x5d\xbe\x76\x7e\xd0\x82\xf0\xd0\xc1\xe4\xeb\x3a\x2d\x5f\x36\x68\x70\x6e\xe7\x15\x53\x0e\x20\xec\x88\x96\x52\x91\xe7\x0c\x25\x48\x4a\x26\xc4\x6b\x9d\x93\x27\xcc\x4c\x65\x3c\xfb\x92\x13\x09\x13\x65\xc6\xd5\xd4\x2f\x75\x26\xc4\x2c\xcd\xf6\x1f\xce\x77\x22\xb4\x70\x79\xc4\x19\x3f\x33\x66\x2b\x51\x3b\xdd\x07\xa2\xd7\xfb\x13\xfe\xb8\xcf\x95\xbe\x9e\x1a\xc5\x1a\x2b\xe7\xf5\x39\xbe\xd4\xcc\x09\x21\x30\x1b\x84\xfd\x36\xba\x4f\x20\x84\x8a\x37\x07\xc9\xe7\x34\x31\x70\x19\xd0\x09\x5d\x26\x3f\x91\xc6\x60\x30\xf2\x4e\xd2\x67\x50\x8e\x60\x7d\x68\x9b\x91\x54\xfc\x78\x42\x4c\xb4\xf3\xb1\x3d\x6d\x96\x04\x71\xf3\xbe\xcf\x42\xeb\x8d\x09\x41\xc7\xa6\x71\x34\xb7\x68\x13\x4e\x29\x77\x1d\xf0\x4f\x98\x48\x70\x92\xb4\x99\xdf\x28\x21\x4c\x70\x5a\x77\x3e\xd7\x96\x67\x23\x41\x3e\xc0\xac\xd4\x25\x7d\x3a\x1b\x3a\x77\x5d\x33\x34\x37\xd3\x63\x83\xe0\x45\xe3\x0f\xfe\x4e\x35\x0c\x56\xf3\x55\x65\x06\xcd\xd1\x21\xcc\x70\x32\x6f\xbd\xff\xb0\x82\x41\x6f\xbd\xb1\x6a\x10\x26\xd1\x18\xc8\xb6\xa2\xc3\x6c\x5c\x25\x03\x95\x5e\x83\x59\x17\xb9\x23\x09\xed\xeb\xfd\xbe\x44\x8d\x9e\x38\xd7\xf4\x71\xb8\xdd\x1a\x45\xab\xe3\x6c\xa4\x78\x4d\x27\x14\x9e\x10\xdd\xae\x19\x5a\x44\x50\x4c\x39\x6e\xde\x25\x70\x98\x0d\x13\x46\x72\xf9\x4e\x67\x79\x10\x26\xee\x7a\x5e\xb4\xec\xb5\x2e\xc1\x35\xf8\xc8\xcd\x71\x99\xe3\x08\x36\x87\xd5\xbf\x26\x6d\x5e\x49\x18\xf4\x7a\xfe\xab\x43\x98\x83\x10\x95\x3e\x7d\x89\xd1\xac\x2a\x82\x77\xc8\x42\x3d\xad\x8a\x4a\x82\xcf\xb3\x15\x21\x5d\x42\x55\x84\x89\x0b\x5f\xaf\x7d\x10\x5d\x40\xf0\xfc\x79\x6e\x45\xfd\x25\x2d\x82\xb0\xe3\x2f\xe6\xf4\x3e\x45\x82\xea\xe9\x34\x3e\x61\x17\x5d\x36\x5c\x1a\x3e\x72\xf7\x52\xd0\x02\x36\xa4\xe2\x89\xef\xb0\xee\x1f\x06\x75\x95\x85\xe2\x22\xf7\xb9\x09\x7a\xc7\xb7\x0d\xbf\x70\x6f\x62\xa0\xb6\x6e\x45\xe4\x92\x96\xcd\x34\x86\xc7\x8b\x57\x25\xe7\x0c\x7d\x61\x90\xf6\x82\x63\xdd\xd7\x14\x7d\x82\x85\x67\xaf\xad\xb4\xab\x16\xe1\xd4\xb8\xb9\x07\x6b\x15\x23\x08\xd3\x03\xb8\xf2\x5c\xe6\x26\x10\xac\x6b\x5f\x46\x58\x2b\x4b\x13\xfa\xcd\x5a\xa3\x24\x17\x07\x11\xaa\x3f\xde\x8c\x48\xae\x21\x82\xdb\x35\x25\xdb\x71\x99\x53\x08\x7c\x88\xf1\x9f\x7b\x5c\x8e\x60\x1b\xa9\x62\x67\x39\xbe\x90\xb0\xf5\x14\x13\x64\xd3\x65\x44\x98\xff\xfb\x62\x54\xa0\xf5\x75\x36\x04\x8a\xb4\x71\xf7\x78\x85\x10\x22\x4c\x1f\x1f\x4e\xd9\x3f\x9d\x70\x29\x63\xa6\x64\x5c\xf7\x64\xc2\x87\xbe\xf6\x23\x0f\xf5\xdc\x08\xfb\x9b\xcb\x72\x14\x73\xe6\x11\x16\x3b\x6c\x7b\xdd\x30\x5b\x8c\xd0\xf4\xf5\xc5\x34\xde\x78\x45\xc2\xf0\xcf\xbe\xf8\x91\x83\xf2\x04\xdd\x91\xeb\xef\x86\x0e\x2c\x23\x74\x76\x06\xf3\xcf\x33\x3a\x40\x38\x2b\x14\xbe\x64\xdc\x59\x15\x82\xb5\xbd\x4f\xe5\x85\xba\xed\x04\x2e\xa1\x74\x99\x49\xc3\xb5\xf9\x48\x94\xc8\xec\x3d\x77\xf9\x14\x8d\x41\x99\x3f\x46\xfe\x82\x1f\x0f\x61\x46\x8f\x68\xd4\xc3\x4b\x3c\x84\xc6\xeb\xd6\x7c\x9a\x7f\x1a\x18\xb4\xc9\xa4\x6c\xfb\x21\xe3\x47\x63\x90\xe2\xcd\x58\x22\x30\x24\x45\xf8\x35\x5f\x2d\x6b\x40\x7c\x06\x21\x6b\x69\xbc\x65\x46\x2c\x18\xf4\xde\x97\xe5\x6c\x61\x69\xd2\x18\x56\x3a\xa5\xdb\x1d\x2c\x5c\xc8\x86\x94\xa5\x56\x11\x86\x4f\x8f\x13\xde\xd9\x4f\x31\xd9\x38\x0a\x09\xa3\x9c\x2d\xeb\xf6\x98\x10\xae\x7e\x35\x6e\x15\x9e\xc8\x49\x30\x16\xbd\xf8\x7c\x53\xd1\x08\x83\xf8\xa3\x1c\x33\x7a\xd3\xbf\x31\x88\x68\xb2\x2c\x3c\x62\x6f\x4c\x38\x6d\x7f\xe6\xd9\x40\x9c\x35\xe1\x55\xe2\xda\x89\xef\x9e\x5c\x60\x43\xcb\xa2\x76\x93\x65\xee\xf1\x04\x5d\x01\x8f\xcb\xfe\xbb\xc5\x08\xca\x91\x1b\x7c\x39\x4f\x6a\x10\xa4\x52\xaf\xf9\x0f\x1a\x2f\x23\xa8\x9b\xd9\x3d\x4e\x8b\x54\x24\xbc\xc9\x58\x5a\xc2\xdf\x67\x4b\x48\x59\xc4\xf1\x6e\xc5\xf5\x06\x66\x0c\x1b\x76\x45\x7d\x2c\x71\x5a\x4c\x10\x99\xdb\x9c\x25\x7d\xf9\x0e\xe1\xec\x54\x81\xcb\xd1\x21\x77\x08\xd1\xaf\x34\xc7\x3f\x16\x99\x4f\xd8\x2d\x91\xa7\x2d\x3a\x43\x84\xc0\x7d\x9c\x37\xe5\xc5\x6b\x1e\x42\xb7\x6e\x82\x8c\x98\xf8\x15\x36\xc8\x9f\x51\x69\xde\x94\x76\x82\x90\x59\xf4\x61\xdf\xdc\xe8\x89\x84\x4f\xd6\xae\x31\xeb\x9e\x2f\x20\xec\x16\xd8\xf8\x36\x46\xa7\x97\xc1\xc5\x41\xd7\x05\x31\x59\x7f\xd8\x70\x34\x45\xfb\x6a\xa4\xbb\x1e\x8d\xa1\xf3\xe5\x96\x05\x5c\x93\x7f\x30\xd8\xb3\x5e\xf0\x65\xd1\x73\x21\x42\xce\xc4\x5d\x51\x99\x69\x29\x2c\x38\xbf\x37\x0d\x35\x95\xed\x63\x90\xa7\x1c\x29\xe6\xe7\xbb\x92\x10\x98\x57\xf2\xcb\x8b\x57\x9e\x30\x65\xe2\x94\xf4\xa0\xb3\x7a\x04\xab\xec\x60\xfd\xc7\xb5\xe3\x08\xe1\x85\xf3\x49\x6a\x29\x37\x81\x76\x3d\xfe\x33\x90\x53\xcf\xa0\x9d\x23\xf7\x4c\xc4\xd9\x6e\x06\x26\x5e\x0b\x43\x57\x31\xd3\x09\x32\x27\xd7\x98\x9a\x8a\x85\xb0\xfa\xc3\x56\x99\x3a\xc6\x84\x11\xb8\x56\xfa\x74\x48\xb9\xc6\x11\xe4\x6a\x1a\x93\x56\x7f\xd7\x27\xd4\xe5\xed\x7d\xe1\x34\x41\x8a\xe0\x78\xd7\xb5\xc9\xee\xd0\x24\x42\xd0\xa7\x15\x56\x01\x1a\xba\x84\x79\xa5\x0a\x9a\xc7\x58\x5a\x04\xee\xa3\x4b\xed\xbd\xa4\xa5\x09\x75\xfc\x0a\x3e\xf2\x22\x09\x84\xd7\x22\x62\xa5\x4f\x9c\xe2\x09\x8e\xc7\x2a\x47\x9c\x0c\x66\x13\xb4\xef\x9c\xbd\xd5\xf9\x29\x82\xc0\xab\x9e\xf6\xe2\x2f\xc2\x8e\x69\x16\xee\x54\x56\x26\xd4\xf9\x9b\xb1\x14\xb6\x73\x12\x22\xbd\x84\xc7\x1d\x60\xae\x13\x78\xb6\x17\xc6\xed\x1f\x05\xef\xf6\x71\xe6\x1b\x9d\x2c\x09\xe3\x3b\x53\x66\x08\x86\xbd\x65\xd0\x31\xb9\x2f\xed\xab\x67\x22\xe1\xfc\xad\x49\x37\x74\xff\xdc\x63\x8d\x15\xae\xd7\x5b\xb9\x77\x39\x6c\x21\xac\x4a\xf3\x37\x5e\xc0\x21\x43\x88\xb7\xec\x7a\x1b\xd2\xd0\xc7\xf4\x1f\xcd\xd0\xe6\x09\x14\x21\xfc\x79\x30\x73\xc8\x42\xff\x51\x3e\xaa\xda\x0e\x89\xbe\x1d\x6f\x48\xff\xc0\xab\x9f\x17\x37\x72\x55\xcb\xfd\x0b\x27\xf4\xbe\x39\x84\xec\x2e\x67\x50\x33\x50\x7c\xe9\xfe\xf9\x47\x04\xcd\x58\xf7\x4f\x91\x1b\xbd\x09\xab\x76\x9e\x31\x09\x3e\x2b\x4a\xb8\x38\x32\xf2\xe7\xce\xc1\x61\x06\x65\x9b\x6b\x07\x1c\x0b\x19\xea\x37\xff\x1e\x7e\x4a\x5b\x88\x70\x5d\xec\xe3\xd6\xcd\xd2\xb3\x09\x43\x7e\x19\xc3\x37\x4b\x64\x08\xca\x9f\x64\x26\x9f\xaa\x5b\x44\xd0\x98\xc7\x71\xe2\xd7\x96\x89\x84\xb7\x9b\xe5\xac\x8e\x44\x84\x11\x86\x44\x3d\x6c\xa4\x65\xd7\x12\xc4\xfd\x95\x4c\x23\x1e\x09\x12\x8a\xf4\xad\x3e\xe6\x7b\x9a\xb2\xa1\xdd\xa0\xff\x5e\x91\x88\x02\x21\xf7\x75\xb2\xf9\x0c\x31\x6e\x82\xef\xe4\xa8\xe9\xcc\xf9\x59\x84\x69\x6f\x22\x3d\x7c\xd5\xab\x08\xc9\x15\xc7\x6e\xae\xcd\x7b\x46\xf8\x9e\x7e\x37\x95\xbb\xfe\x21\x21\x93\x71\x9c\xba\x5c\x5f\x9a\xb0\xad\xfb\xeb\x83\xa4\xee\x25\x84\x6f\x81\x6f\x5c\x58\x31\xa3\x3b\xff\x3e\x9d\x77\x51\xfd\xa9\x84\x63\x6f\xb4\x96\xde\xbe\xd0\xce\x20\xea\xfb\xf5\xfe\xe7\x05\xcb\xe9\x1f\x08\x88\x76\x1f\x58\x74\xdb\x95\x10\x3f\x7f\xa0\x69\xd6\xcb\x42\x82\xd3\x2d\xfe\xe5\xb9\xd2\x2c\xc2\x87\x37\x86\xd9\x9b\x0a\x65\x09\xda\x1a\xfd\xe5\xc1\xf6\xdd\x0c\xae\xc5\xf2\x0f\x88\x25\x06\xb0\xf0\x3c\x61\xcf\xc7\xe7\x5f\xd3\x08\xe3\xc5\x6f\xef\x17\x5e\x74\x91\x85\x26\xb1\xd5\x43\x4d\xc1\xc9\x84\xd4\xd4\xa3\xe5\x73\x76\xbc\x60\x50\xa1\xb7\x54\x77\x15\xcf\x6d\x42\xed\xd5\xc5\x49\x02\x87\xde\x30\x90\x3d\x73\xc9\xb9\xf5\x51\x0e\xa1\xf9\x56\xff\xdc\x86\x3b\x95\x84\x4a\x19\xbd\x63\x37\x9c\x1e\x13\x38\x9f\x1c\x6b\x09\xdc\x51\x44\x08\xf5\xff\x14\xb4\x28\xca\x8b\x85\x35\x7d\x42\xb3\xfd\x94\xf7\x12\x02\x53\x04\xc4\xfb\x7e\x4c\x24\xd8\xcf\xf1\x79\x12\xd3\xad\x4d\xe8\xcc\xe7\xe4\x10\xd2\x6e\x66\xb0\x57\xe4\xce\xb4\x69\x5a\x0b\x08\x12\x42\x3b\x52\x04\x7f\x2c\x23\xc8\x99\x64\x4c\xb4\xf6\x6d\x62\xb0\x36\xb4\xf1\x6c\x75\x5c\x0b\x83\x95\xe6\x3f\xee\x71\x71\xa9\x10\x6e\x35\x9a\x38\x3e\x4f\xd6\x24\x64\x16\x8a\xc6\xac\xe3\x2f\x64\xe1\xc3\x59\xb9\x36\x21\xb7\x47\x04\xe6\x75\x5e\x2c\xb7\x97\x13\xe1\x8a\xc5\xac\x77\xd1\x3f\x9b\x19\xf8\x34\x9e\x2f\x8a\x6b\xd1\x21\xf8\xb5\x72\x7e\xe5\xb1\x8e\x26\xf0\xd4\x3a\x9e\xfb\x76\x33\x9a\x20\xd5\x78\x6e\xa6\xbb\x5f\x04\xc1\x2d\x73\xa6\xfc\xdf\xf2\x1f\x98\x26\x5b\x06\xf3\x3e\xb4\x21\x3c\x9e\xb2\xbe\x7a\xf3\x57\x75\x42\x61\xa8\xf3\x01\xcd\xc3\x45\x84\xeb\x02\xed\x07\x65\x8e\x16\x11\x5c\x7c\x3b\x72\x95\x7d\xd3\x09\x57\x0a\x15\x64\xfe\x8e\xe4\x6d\x1f\x57\xd8\x8b\x9e\x66\xc3\x38\x7b\x46\xfa\x72\xa1\x0f\x41\x2c\xdf\x5d\xea\xe5\x89\x4b\x84\xdd\x13\xc7\xf7\xd9\x25\x4d\x22\x38\x10\xa7\xb6\x17\xdf\x66\x42\xdc\x67\xe1\x77\x76\x9e\x8b\x08\x8f\x74\xd7\xdb\x15\x7f\x4e\x25\x18\x70\xde\x9e\x1e\xf8\xa6\x84\x85\xfc\x1d\x6e\x13\xb5\xcc\x0a\x59\x30\x4e\x37\xb3\xef\x19\xda\x43\x38\x26\x1c\x27\x7d\x68\xfb\x1c\xc2\xfe\xcf\x9b\xcf\x2c\xea\xdd\x43\x10\xc8\x56\x68\xe6\x8c\xb6\x25\x34\x27\xcd\x1f\x7a\x7d\xbe\x87\x41\xce\xc6\x3f\x1f\x43\xae\xef\xa1\x7f\x40\x9f\x74\x27\x44\xdb\xb1\x08\x7f\x66\xc5\x1d\x29\x5f\x91\x40\x50\x29\x4b\x2c\x8d\x68\xca\x27\x58\x8f\x3f\xb0\xdd\xe1\x24\x07\xe1\xf8\xaf\xf6\x57\x02\x76\xcb\x08\xeb\x0b\x32\x1e\x9c\x71\x93\x24\xbc\x47\xd4\xdc\xf3\xc6\x1a\x84\x45\x31\xe9\xe5\xbf\x97\xdf\x27\xcc\x32\xec\x7d\xb7\x7c\x51\x08\x61\xd3\x46\x0d\x57\x26\x40\x98\xb0\xb2\x94\xa7\x53\xed\xc2\x2c\x82\x81\xc7\x1b\x51\xeb\x00\x27\x36\xdc\x7e\x5d\x6f\xe6\xb4\xe3\x33\x83\xcb\xdb\xc7\x67\x1e\x38\x20\x48\x78\xa3\x73\x80\x4b\x64\xe9\x36\x36\xec\x1a\xae\xd8\x7b\x71\x40\x90\x70\xe3\x55\xe2\x9b\xaa\xcf\x31\x2c\x64\x8d\xb7\xde\xfe\xdd\xb7\x80\x70\xa0\xe4\x81\xb5\x43\x5d\x14\xe1\x8f\xae\xeb\xfd\xd9\x3f\x2c\xd8\xb0\x43\x3b\xa4\xe7\xad\x9c\x19\x5b\x51\xbd\x63\x18\xb1\x5b\x6e\x07\xa1\xda\xf7\xf8\x12\x63\xf1\x2e\x06\x95\x31\x0e\xd9\x51\x0e\x9b\x69\x0c\x22\xc1\x53\xb2\xd5\xa3\x78\xd9\xc0\xb5\xe3\x62\xe3\xc4\x75\x53\x09\xbf\x37\xe4\x07\xbc\xbe\x7d\x8d\x05\xd6\x2b\xa1\x27\x91\xd7\xb3\x09\x9c\xde\xc2\x29\x11\xa3\x78\xc6\xb3\xaa\xe9\x2f\x7c\x57\x0b\xd9\x37\x1b\x83\xc1\xb8\x6b\x87\x44\x1e\x39\xa6\x10\xa2\xf1\xa2\x5f\xe6\x8f\x10\xa1\xe3\xcf\xfc\xa2\xde\x47\xd3\x09\x87\xbc\xef\x5b\xd9\x44\x72\xb0\xe1\x82\x83\x7f\x09\xb7\xbb\x34\x61\xda\xd6\xa9\x02\xa7\x9e\xf2\x11\x34\x27\x7e\x8f\xda\x69\x7d\x87\x20\x9b\x77\xf6\xfb\xea\xbc\x02\xc2\xc2\xca\x6b\x7e\xc2\xcd\x7d\x4c\xff\x19\xaf\x33\x2b\xa6\xef\x60\xa1\xfb\xab\xf5\xb1\xa6\xce\x2a\x06\x7c\x3a\x33\xcf\xaa\x88\x4d\x20\x3c\xe7\x6f\x6c\x8b\xb5\x89\x66\x43\x98\x8e\xdb\xf9\xe1\xb9\x32\x84\xc0\xef\xa9\x07\xba\x1e\x46\xb0\xc6\x4a\x16\xcd\x6a\xdf\x3f\xae\x8a\x41\x9f\xfa\x09\xfb\xdd\x15\x05\x84\xf9\x85\xd7\x5e\x34\xc5\xb0\x08\x4a\x9b\xc2\x17\x0c\x5d\xcf\x22\x0c\xc8\xfe\xfa\xbc\x83\x3b\x9d\xb0\x4d\xc9\xe9\xd6\xdf\x51\x82\x8b\x97\x88\xd3\xe2\x05\x84\x14\x8f\x19\x19\x1c\xdd\x89\x84\xa4\xba\xac\xcc\xb4\x26\x2b\xc2\x74\xf7\xcd\x1a\x4d\x37\xb8\xff\x27\xda\xb2\x36\x0c\xe1\xd9\x34\x42\xa0\xde\xaa\xb9\x8f\xdd\x73\x08\x9c\x46\xa5\x07\x56\xb7\x5f\x21\x84\x2b\x45\xc9\xcf\x51\xbc\x4e\x38\xa6\xde\xa5\x1b\xfb\x2c\x8e\x0d\x8a\x9f\xbf\xf8\x9d\xd7\x72\x22\xf8\x3a\x6f\xb0\xef\xda\x71\x88\x30\x4d\x72\xbb\xe0\xdc\x15\x07\x09\xcb\x75\xc4\xc7\x07\x2a\x1e\x21\x6c\xcd\xf0\xeb\x3b\x61\x91\x43\x18\x6f\x14\xbf\xfa\xd1\xca\x62\x42\xa9\xec\x8d\x65\x17\x8e\x8e\x3e\x7a\x6f\xbe\xe3\xb9\x3c\x21\x9b\x30\xfd\xdd\xc9\xa2\xff\x86\x8b\xe8\x97\x39\x61\x75\x9b\x08\x56\x2d\x9e\x6e\xd5\x3f\x02\x59\xa8\x9e\xfb\x47\xe9\xde\x8d\x2a\x42\x5b\x8e\x71\xca\x91\x1f\x05\x84\xa9\x29\xcf\xe6\xdf\x79\x96\x47\x50\xba\x9e\xd1\xda\x7f\x5f\x8d\x50\x57\x29\x96\xbe\x3f\xf3\x0e\x41\x6f\x63\x4f\xe1\xd3\x47\x77\x08\x55\xad\x0b\x8e\x4e\xfd\x19\xc2\x56\x44\x02\xf2\xd5\xc1\x63\x42\x28\x3b\x73\xc0\x6e\x92\xc7\x36\xb6\xf2\x23\x2d\x35\xe1\x16\xad\x20\xb4\x17\x3e\xbf\x6c\xeb\x90\x4c\xe0\xab\x7f\xf2\xd1\x7e\x9b\x3a\x61\x79\xb7\xda\xe0\x74\xce\x3b\x04\x19\x43\x3f\x4b\xf5\xc0\x34\xc2\xc1\x0d\x46\x4d\x05\x97\xd9\xf1\x61\xe9\xc8\x89\xbf\xb8\x7e\x40\xd1\xf5\x86\xd2\x09\x16\xec\x9f\xde\xd8\xab\x60\xe8\x4c\x63\xe8\xdc\x3c\x73\x85\xea\x89\x83\x04\x1d\x41\x6e\xdd\x71\x5b\xd9\x8b\xa5\x67\x41\xe9\xcf\x33\x8f\x08\xfe\xdf\xbf\xb8\x95\xa9\x6b\x12\x46\x7e\xfa\x7d\xda\xb0\xff\x21\x0b\x4b\x37\x36\x3f\x0c\x3f\x53\x41\x30\xea\xda\x3d\x74\x6d\x14\xce\x72\x81\xf2\xcf\xae\x54\x10\x3a\x17\xcc\x75\xbe\x7a\x29\x8a\x30\xdd\x3c\xad\x32\x56\x25\x99\x70\x30\x70\x8b\x64\x87\x52\x32\x21\xe7\xd8\x5c\xcb\x59\x97\x57\x11\xe2\x7e\x77\xcd\x3a\x29\xf1\x24\x1f\x15\x3d\xda\x69\xbb\x7e\x5d\x25\x7c\x1d\x90\x77\xdd\xf9\x5f\xb0\xb0\x59\xd9\x62\xbe\x61\x80\x41\xa6\xd0\xea\x7b\xe3\xc6\x6f\x21\x38\xba\xd8\x14\xc4\xad\x55\x24\xe8\x07\x67\x09\x76\xac\xb1\x24\xe8\x5a\xf4\x85\xb5\x85\x14\x11\x9e\xdb\x1c\xdf\xd8\xf4\xb2\x80\xad\x88\xae\x71\xeb\xf5\x37\x9b\x47\x58\x34\xfe\x9b\xbf\x48\x56\x1f\x33\x86\xb6\xd4\xf2\xd9\x3d\xd9\xe9\x6c\xb8\xae\xba\x7a\xf1\x26\x96\x06\x8d\x81\x37\x71\x1f\x73\x38\xe3\x24\x1b\xec\xbf\x98\x4e\x6d\x70\xf1\x26\x58\x77\x5a\xad\x7c\xa5\x9f\x4a\xf8\x29\x63\x6b\xd7\x54\x28\x4e\xb8\x5c\xe7\xef\xe8\xb5\x3d\x95\xf0\x44\xc9\xef\xb4\x7e\x12\x17\x81\xb7\x68\x79\xa0\xf1\xab\x20\x16\x2e\x6e\x5e\x74\xbd\xa8\xb2\x80\xb0\x6d\xdc\x9d\xec\x26\x9b\x5a\x16\x7a\xc2\x98\xe4\xbf\x85\x3b\x59\x7a\x99\x70\xb2\x14\x61\x0b\xd7\x7d\x66\x8e\xe1\x44\xc2\x91\x94\x09\x0f\xbe\x95\x2e\x67\xc3\x40\x89\x87\x4c\xdb\x2a\x41\x82\x86\x3c\x2f\x05\x07\xe4\x10\x86\x0f\xc6\xab\x5f\x5b\xb2\x85\xe0\xdd\xe6\xcd\xe9\x76\x4f\x8c\x30\x6d\x7e\xff\x24\xd3\xef\xc2\x84\xd5\xa5\xa5\x0b\x07\x3a\x3f\x31\x30\xde\x74\xf9\x67\xd2\xce\xcb\x84\x91\x98\x2a\xfb\xe8\xd5\xbb\xfe\x05\xa3\xfb\x9c\x45\xd3\xa5\x4d\xd8\x10\xef\x29\x73\xd2\x7a\xcb\x66\x36\x7c\xbf\x11\xbd\x35\x6b\xaa\x0a\xc1\xd2\xf0\x7b\x7d\x65\xc3\x3d\x02\xbf\xd9\x42\xe5\x84\xbb\x76\x6c\xa8\x7a\xfb\xd0\xe0\xb3\x89\x32\xe1\xda\xfd\xbb\xd1\x15\x25\xbb\x09\x87\x2b\xe9\x61\xc3\x60\x31\x41\x53\x22\x30\x8c\x86\xd9\x91\xb0\x9a\x57\xea\x8d\xd9\x36\x02\xb7\xa4\x39\x7f\xbf\xd6\x1e\x82\xd5\x91\xc1\xb9\x97\x68\x1b\xe1\x8c\x67\xd3\x71\x93\x69\x56\x84\x9d\xde\xa5\x8e\xfd\x77\xdd\x09\x0e\xd2\xf3\x1d\x8d\x5f\xa4\x12\x14\xf9\xca\x6f\x16\x79\x4b\x13\xd6\xc7\xcb\x5e\x97\xb2\x92\x60\x43\x4a\x43\x55\x36\xcf\x89\xcf\x0c\x44\x1f\x35\xc6\x8f\xdb\xff\x8b\xc1\xad\x0f\x86\x8f\xd6\x5f\x1e\x64\xe0\x78\xdc\x32\x68\xed\xb0\x24\xc1\x61\x82\xf4\xd6\x35\x8c\x20\xe1\xda\x4f\x63\x63\x5b\xce\x85\x84\xac\x4f\xa9\x4a\x91\x9e\x8f\x09\x7c\xa2\x6a\x5d\x86\x4a\x25\x84\x13\xfb\x7a\xfb\x27\x8e\x4b\x27\x50\xf2\x9c\x1d\x57\x5a\xe5\x09\x5d\x6b\x93\xee\xdb\x97\x4f\x27\x64\x9a\xb7\x6c\xdf\x14\x53\xcc\x42\x61\xc3\x91\x29\x9b\xe3\x5f\x11\x0e\xec\x34\x3f\xf8\xf6\xda\x2b\xc2\x13\x6d\x9f\xe5\xf5\x09\x25\x84\xa4\xe9\x5c\x53\xbb\x5f\xb9\x11\xda\x16\xb5\x1e\xe5\x5d\xde\xca\xa0\xa0\xb5\xbe\x6c\xea\xe8\x46\x6f\x86\x40\x58\xa3\xc1\x3d\xe6\x7f\xc2\xf9\x4f\x65\xcf\x67\x11\x4e\xc2\xe5\x03\x71\x23\x79\x7e\x4d\xf9\xe8\xb2\x39\x5d\xa3\x16\xbb\x96\xfe\x17\xae\x24\x1b\x37\x5f\x30\x9e\x4e\x08\x9e\xf3\x52\x25\xc4\xea\x25\xa1\xe5\xb1\xe2\x1a\xb3\x5d\x39\x84\x55\x71\x76\x27\x5d\xc3\x3a\x18\xa8\xb9\x7d\xe3\x24\x7f\x51\x82\x5d\x96\xe0\x5d\x16\xd7\x44\x82\xe2\x4d\xf3\x87\x9c\xee\x46\x6c\x98\xf4\x53\xf0\x59\x6b\x9b\x14\x81\x5f\xdd\xad\x73\x58\x53\x98\xd0\x7d\x59\xfc\x4c\x6d\x58\x01\x41\xd4\xf0\x67\x65\xda\x91\x5a\x16\x4e\x25\xb9\xb6\xfe\x2d\x82\x88\xfa\x20\x93\xed\x4d\x90\x0b\x0f\xb3\x9e\xec\x7f\x90\xf0\xb9\x27\xa9\x3d\xf7\xd4\x0f\x06\xf6\xaa\x47\xc4\x2d\x52\xc3\x09\xda\xd1\xf6\x59\xa6\xef\x66\x12\x02\x5e\x65\xf8\x06\xf1\x48\xb2\x81\xeb\xe5\x4a\x97\x7b\xbb\x06\x98\x31\x38\x19\x4c\x31\x49\xe5\xe4\x20\x2c\xeb\x52\x72\xba\xe1\x73\x9b\x70\xf1\x67\x69\x68\x8d\xbb\x35\x81\xf9\x6e\x62\x30\x6d\x52\x2a\x6b\xac\xf0\xe6\xaa\x2e\xcb\x6e\x8d\x22\xd4\x96\x19\xfb\xe6\x1a\xed\x21\x58\xec\x5c\x02\x93\x53\x3e\x04\xb7\xc9\x02\x02\xa7\x4e\x70\x10\x9e\x32\x47\x13\xd2\x9b\xf5\x08\x32\xb5\x0f\x9e\x58\x3c\xf2\x27\x2c\x6d\x8a\xfd\x14\x20\x10\xcf\xc2\x8a\xdb\xaa\xdd\x5e\xa3\x6f\xb4\xff\x60\xf6\xb4\xd4\xaf\x3a\x9a\x4d\x04\xfe\x7c\xe1\x61\x61\xa5\x18\x42\x5a\x51\x24\x7f\xcb\xd6\xdb\x04\xe9\x32\xe7\x93\xcd\x68\x64\xb0\xee\xc4\x81\xe4\xbf\x97\xe9\x7f\xe0\xff\x5e\xc1\x01\xb9\x85\x3e\x1b\x34\x57\xd0\xff\x42\xed\x9a\x87\xee\x19\x57\x27\x10\xac\xa6\xed\xae\x2e\x3c\xaa\x42\xe8\xb2\xab\xf7\x7b\xba\xa0\x98\xe0\x2b\x9b\x90\xda\x24\xe2\xcc\x86\xb0\xbb\x8b\xbf\xc6\xac\xa9\xca\x47\xaf\x43\xe9\xe0\x84\xf7\xbc\x04\xb3\xe0\x68\xb9\x83\xb6\x85\x84\xb5\x99\x2f\x7d\x96\xe9\xe5\x13\xe6\xe8\x97\x3f\xe4\x9e\x58\x44\x08\x3e\x95\xae\x7e\x4e\xfb\x26\xe1\xeb\x94\x39\x5b\xd5\xc3\xb2\x08\x82\xe3\x58\x8f\x9a\x7a\xfc\x09\xc3\x1b\x5f\xdb\x98\xb9\x9d\x24\x5c\x50\xfe\x29\xa1\x52\x94\xc3\xc2\x2c\xcb\x96\x0a\x95\xe3\x27\x09\x41\xf1\x22\xdf\x9f\x0f\x38\x10\x34\xf8\xb0\x33\xb6\x20\x9c\x85\x14\x01\xb9\x42\xd3\xdf\x87\x08\x03\x67\x12\x66\x6f\x7f\x71\x88\xc0\xbf\xd9\x2c\xdb\x32\xcc\x93\x50\x77\x62\xe4\x50\xfa\xf8\x2a\x82\x92\x8a\x64\x12\x5f\xe3\x43\x42\xd0\xd1\xaa\xc3\x03\x1d\xe5\x84\x9f\xe5\xc2\xe3\xba\x37\x14\x10\x4c\x14\xf7\xad\xd3\x88\x5c\x4c\x88\xdf\x6e\xc0\x3f\x14\x92\x4f\x08\xbd\xb7\x64\xe2\x70\xe2\x5b\xc2\xf2\x43\xed\x6d\x22\x43\xdf\x19\x54\x45\x2e\xcc\xfb\xf4\x74\x88\x0d\x1f\x66\x1d\x3a\x5f\xff\xfb\x79\x3e\x66\xce\x9c\x6c\xe0\xb3\xcb\x90\x30\xce\xa6\xc6\xe6\x9b\x0b\x8b\xb0\xd6\x44\xcc\xe9\xcf\xf7\x1c\x42\x5b\x99\x40\x6e\xfd\xc0\x7d\x16\xee\xb7\xbd\xc9\x89\x6d\xcb\x26\x1c\xb9\x10\xba\xad\xc7\x70\x0d\xe1\x01\x8f\x43\xe8\x7d\xdb\xf1\x04\xc6\x78\x91\xc7\xdc\xfd\x03\x0c\xc2\xa3\xde\x45\x88\xea\x56\x13\xbc\x43\x8f\xb3\xc4\x47\x91\x7c\xcd\xd5\x40\x47\xaa\x9a\x60\x50\xa8\x7d\xf8\x6f\xe9\x13\xfc\x7c\x7b\xaa\xda\x0e\x42\xc5\xf7\x95\xe1\x47\xc7\xbf\x66\x10\x5e\xa0\xbc\xff\xe8\xde\x43\x84\x9f\xd6\x75\xaf\xb7\xf8\x17\x10\x3e\xea\x7d\x5e\xe2\x5d\x1d\x43\x10\xd4\xbc\x72\x60\xad\x0e\x1f\x21\xc0\x99\x3f\xd2\xe7\x5e\x1e\x21\xc1\x4a\x3e\x7a\xda\x0b\x76\x6c\x48\x78\x10\x38\xb8\xd9\x93\x70\xfe\x34\xff\xb2\x2c\xc9\x43\x6c\x88\xcc\x6b\xd5\xdb\x63\x9f\x4f\x88\x5b\xb3\xc0\x5f\xf7\x51\x34\x61\xc1\xa4\xbe\x1f\x61\x0e\x21\x0c\x7a\x38\x3a\x55\xba\x72\xa4\x68\x0c\x49\xb2\x61\x57\x3f\x30\x49\xf9\x68\xf8\xac\x61\xb9\xb8\x20\x83\x30\xdd\x51\xdb\x49\x7c\xd5\x71\x16\x1c\xa3\x0b\x3d\x0b\x16\x3f\x24\x8c\x6c\x31\x6c\xdf\xb6\x38\x8f\xd0\xb0\x6e\x84\x99\xe9\x5a\x44\x78\x74\xce\xbb\xfe\x5d\x99\x3e\x41\xb4\xa9\x7a\x25\xab\x6d\xf4\xbd\xbc\xfa\xcd\xfd\xca\x95\x29\x84\x28\xbf\xce\xcb\x55\x5c\x05\x6c\x23\xd3\xcd\xc3\xbb\x4e\x4d\xf7\x63\x43\xc8\xcd\x9c\x8b\x53\x1b\x83\xd8\xf0\xe0\x52\xaf\xa6\xeb\xae\x3b\xf9\x18\x3e\xde\xe8\xcb\x21\x19\xc5\x82\xad\x90\x59\xf3\x94\xd2\x42\x02\xd7\x1c\x6e\xab\x01\x8a\x26\x78\x89\x2b\xdc\x2f\xd0\x2b\x24\xcc\xca\x18\xb4\x6b\x29\x2f\x24\x68\x1e\x51\x6e\x94\x9b\x2c\x4c\xf8\x6e\x2d\x9d\x36\x69\x5e\x21\x61\x78\xf6\x4b\xfb\x6e\xa5\x68\xb6\x72\x63\x47\xef\xa5\xb8\xa4\x35\x6c\x70\x34\xf2\xd9\xff\x91\xab\x88\x90\xf5\xae\xf3\x99\xcc\xb9\x45\x2c\x7c\x57\x33\x5d\xe3\xda\x56\x48\x60\x8e\xae\x90\xfe\x3b\xaa\xbf\xdf\x21\xc5\x9c\x9c\x4b\x30\x9d\xb4\xfc\xc3\x0d\xcc\x27\x74\xbc\x14\x48\x39\x34\x5e\x85\x0d\x8f\xda\xfe\x7c\xd7\xf3\x96\x61\xc6\x60\x97\xbd\x6c\x57\xa1\xaa\x31\x8d\x61\xcd\xd2\x79\xd5\x5f\xf5\x87\x99\x31\x9c\xf6\xb9\xd4\xb4\xf8\xf8\x74\x1a\x83\xd3\xc5\xb8\xf2\xa7\xd1\x9f\x19\xd4\x56\x84\x1e\x7c\x6d\xa5\x43\x18\x57\x39\x92\x3a\xff\xe8\x2b\x66\x0c\x2b\xdc\xd2\xd5\x42\x64\x79\x08\xf7\xae\x8e\xe7\xfd\xc3\xf3\x87\x81\xec\x2d\xe1\xc5\x5c\xb9\xbc\x04\x9f\x05\xbb\x9b\x1f\x3b\xaa\xb3\xe1\xf1\x87\x2f\x4c\xa7\xcf\x6f\x06\x7b\xae\xd6\x9a\x66\x1c\x2c\xca\xc7\xd2\xdb\x9c\x13\xab\xba\x3c\x09\xf7\xcd\xe6\x87\xde\xd1\x9c\x41\xb0\xf8\xc5\xa1\xde\x2d\x24\x48\x68\xfb\x1d\x6e\xf0\xb5\x6d\x25\x1b\x72\xd7\x16\x3c\xd7\x7c\xf0\x9e\x41\x0c\xbf\xc8\x31\xca\x67\x08\x71\xe5\x75\xd3\x82\xae\x4d\x23\x1c\xb2\x94\x5e\xc7\x7a\xfa\x8d\x41\x91\x54\xa7\xeb\xca\x1f\x99\x84\x10\xb7\xd0\x74\xcd\x56\x05\x42\x9c\x7a\xc2\x07\xa3\xc1\xdd\x04\xcd\xf0\x6b\x3b\x55\x4b\x0a\x09\x7a\x67\xdf\x04\xdd\x6a\xbb\xcd\xc2\x5a\x05\xfb\xb7\x3e\xaa\x79\x84\x91\xe6\xbd\xa7\x17\xc4\xcc\x20\x70\x57\xcc\x78\x73\x6b\xbf\x0e\xe1\x62\xf3\x34\xb5\x82\xcf\x6f\x18\x08\x55\xf6\xb5\x1e\x6a\xd4\xa2\x31\xc4\x5f\xda\x76\xb8\x8c\xf7\x61\x3e\xb2\xd2\x55\xe2\xde\x49\x7b\x11\xc6\x6f\x2a\x1b\xdc\x15\x10\x48\x30\xe8\xd8\x94\x5f\x87\x26\x02\x9f\x9a\xfa\xc4\x84\x9a\xf7\x84\xb7\xf7\xe6\x26\x9e\x3e\x9b\x4a\xd8\xfa\x5d\xce\x30\xad\xe8\x0a\x61\xf0\x64\xdc\x96\x77\xb3\xb5\x08\x1e\x5f\x64\x37\x6c\xb0\x0b\x26\xac\xb9\x35\xb2\x24\xd8\x26\x88\xb0\x28\x23\x54\xb6\xe2\xe6\x47\xc2\x9d\xd5\xc7\xb3\xd6\x44\x7e\x24\x98\x24\xf5\x9f\xef\x9d\xf2\x96\x10\x60\xac\x13\x16\x96\x95\x4a\x68\x75\x98\xa0\x3b\xdc\x76\x9c\x70\xbe\xe3\xc1\xaa\xe1\x61\x67\xb6\xb2\x57\xdc\xd9\xc5\xb5\xcf\x95\xf0\xe7\x61\x47\x67\x68\xb1\x37\xe1\x5d\xf6\xbb\xeb\x41\x0d\xbd\xcc\x18\x96\xca\x6e\xd6\x4c\xdf\xff\x3e\x1f\x5d\xbb\x76\x9d\xdc\x30\x79\x12\x21\x73\xfc\xab\xd6\xf8\xfd\xf1\x84\x8a\x59\xc2\x49\xdc\x32\xc6\x84\x38\x4d\xae\x32\xe5\x3c\x33\x42\x43\x74\x7b\xf1\x57\xae\xbd\x84\x94\xac\xbd\xdd\xa7\x03\x6b\x09\x67\x8e\x5b\x99\xd8\x4d\x96\x22\xa4\x3e\x89\xf8\x23\xe6\x93\x44\xb0\x16\x99\xd1\x70\x21\x25\x89\xf0\x7d\x78\x85\xc4\xc5\x51\x1c\x59\x3f\x71\xef\x0f\x37\x03\xc2\xae\x11\x97\xe4\x2b\xc9\x46\x6c\x38\x95\x95\x21\x31\x2d\xc4\x8f\xe0\xbb\x48\x65\x71\x47\x55\x19\x41\xcc\xff\x51\xcb\x07\x4d\x07\x82\xe9\x6b\x3d\x9d\x69\x21\x51\x2c\x4c\xb4\x3e\x72\xb0\x6d\xd0\x86\x30\xe5\xa9\x5a\x35\xaf\xed\x1e\x02\xd7\x37\x97\xed\x27\xc6\xf1\x11\x84\xb7\x6f\xf8\x2c\xe4\x3d\xc4\x80\x5b\x62\xa9\x52\x37\x87\x1b\x0b\x73\x53\x3d\x07\x62\x9e\x2b\x12\x8e\x6a\xa5\xbd\xd3\xf1\x2b\x25\x2c\x9a\x28\x22\x61\x33\x64\x45\xd8\xce\xf7\x40\xc9\x5f\xdc\x8b\x0d\xab\x79\x8e\xa7\x27\x37\x2a\x11\x14\x0f\x1a\x8a\x96\x9b\xcc\x21\x08\x35\x49\x3f\xbe\xa4\x6b\xc5\x86\x71\x33\x7a\x10\xfa\xa7\x8b\x81\xc6\x0f\x0e\x47\xea\x8f\x65\xa1\x26\x34\x03\xd7\x24\xbd\xa8\x3f\xd2\xf4\x87\xc4\x83\x5d\x04\xa9\x71\xd6\xc9\x1d\x81\xbb\x08\x0d\xfb\xee\x3a\x7c\x38\xb9\x9b\xa0\x7a\x71\x2b\xff\xd3\x8c\x6b\x84\xb9\x87\xe7\x97\x77\x46\x5f\x23\xb8\xef\xb4\x7a\xd0\xf7\xe0\x1a\x21\x67\x65\x54\x0d\x6f\xe1\x35\x82\xd4\xbd\x49\x0b\x97\xb9\x1c\x24\xf0\x1d\x2a\xdd\x1f\x73\x27\x91\xa0\x6a\xfb\xbb\xa4\xd1\xcf\x92\x50\x38\xff\x3a\x57\xdf\x51\x13\xc2\xa5\xb6\x2b\xb7\x63\xc3\xad\x08\xcf\x96\xf5\xf3\x98\x08\xac\x24\x84\x38\x5a\xca\x54\x3e\x50\x21\xdc\x3d\xab\x91\xff\x47\x55\x9b\x85\x66\x07\x9f\x9a\xbb\x0b\x5f\x11\x8e\x9e\x49\x9c\xd0\x1e\xfb\x92\xe0\xae\xb3\xce\xbf\x65\x4e\x35\x41\xc7\xfa\xca\xbd\xa2\x59\xc5\x84\x00\xde\x65\x1a\x2f\x26\x4f\x27\x58\x28\xf9\xa4\x9b\xc6\x68\xb0\x61\x47\x45\xc9\x40\xa4\xd8\x2f\x06\xe3\x43\x2a\x4a\x66\xdf\xdb\x48\x10\xcb\xf8\x32\x18\xa2\xb1\x84\xa0\xe3\x72\x69\xfb\x3d\x8b\xb5\x84\x71\x02\x43\x39\x43\x1d\x4b\x08\x9f\xdd\x27\xf5\x5e\xdc\xcf\x49\x78\x6a\xa7\x94\xe1\xf9\x58\x96\x90\x5b\xd2\xd7\xb0\xec\xa4\x02\xe1\xc8\x9d\x6d\xfc\x76\x8e\xaf\xf3\x31\xe1\x4c\x9e\x4f\x8c\x98\x04\x8d\x41\xe9\x94\x3c\x9f\xa0\x68\x63\x3e\x72\xcc\xcc\x57\x59\xed\xc9\x22\xf4\x7b\x18\xfc\x69\xf8\xb1\x90\xb0\x69\x8b\x9c\x02\xcf\x9a\x9d\x2c\x70\x5f\x3f\x30\xf3\xd7\xcd\x85\x34\x06\x5e\xee\xd6\xea\xf7\x11\x11\x84\xf7\xfd\x71\xe7\x3a\x66\x9d\x22\xf4\x39\x6c\xce\xe0\xf5\xbc\x41\x50\x15\xb0\x9c\x6e\xd6\x1a\x43\xb8\x36\x5c\x33\xc5\xcb\x4d\x82\x50\xb0\xb1\xef\xd2\x09\xfe\x68\x16\x44\xe7\xf3\x4d\x8a\x7d\x9e\x42\xd8\xb6\x6e\x5f\xdc\xda\x4f\xa1\x84\x29\xaf\xda\x0c\xbf\xdc\xea\x61\x70\x26\xf1\xc3\xc2\x9f\x7a\x62\x84\xfa\xdd\x3f\xdd\x1a\x54\x23\xd9\x90\x2c\xbd\x26\xf7\xc3\x28\xf4\xf6\x96\x8e\x9f\xbb\xc1\xe8\x5f\xd8\x78\xea\x7c\xaf\x02\x23\x4c\x88\x08\xe1\x7d\x3d\x59\x62\x2b\x41\xde\xe6\x38\x23\x90\x95\xce\x40\xe6\x22\x9f\xd9\xf6\xab\x7e\x34\x86\xe5\x57\x78\x2d\x64\x4f\xbf\x62\xb0\xe0\xc6\xde\xdf\xaf\x56\xcf\x24\x3c\x6c\x72\x0e\xdf\x28\x3b\x91\x20\x68\x28\x53\xf3\x41\xab\x90\x81\xe1\x8a\x01\xc9\x29\xba\xae\x34\x86\x3d\x92\x6d\x23\xef\xdb\xf8\xd8\xd0\xf4\x67\xee\x86\xe6\x45\x4a\x84\xa8\x2b\x9b\x3f\xd7\x9d\x98\x48\x88\xb7\xd3\x9a\x25\xbd\x40\x9a\x30\xd1\x6d\x9e\xc6\xd4\x11\x86\xe0\x98\x9e\xaa\xf0\x3c\xa3\x85\x41\x06\xcf\xc9\x80\xf0\xd1\xe3\x69\x72\x45\x02\x47\xbf\xbc\x34\xe1\x77\xd4\xc4\x53\xb3\xa3\x25\xd8\xa0\xe3\xc5\xd9\xe3\x33\xb9\x95\x41\xa9\xdd\xca\xb6\x77\x67\xe4\x08\xe9\x73\x7e\xb5\x78\x7e\x58\xc6\x86\x56\xa7\xd4\xf9\xcd\xc7\x7a\x98\x31\xf0\x7a\x65\xe4\x14\xcf\x79\xc2\x40\xbb\x31\x57\x46\xfc\xe3\x19\x16\xde\x2e\x93\x75\x98\x2f\x5a\x44\xa8\x7c\x2f\x9b\xa1\x3a\x72\x9b\xb0\xed\x4b\x03\x4b\x55\x72\x39\x61\xc3\x9e\xd8\x67\xa7\x2e\x9e\x27\x18\xb5\x5d\xd5\xd1\xba\x11\x4d\x98\x3f\xcd\x64\x84\x46\x21\x5c\x56\xdd\x94\x7c\x73\x0f\x41\xd3\x6c\xb2\xcc\x4b\xd5\x1b\x04\x2b\xd7\x49\x19\x77\xe4\x32\x08\x32\x7c\xa9\x82\x37\xb4\x8b\x09\x4a\x6e\x61\xd3\x74\x96\x3d\x27\x4c\xdd\xdd\x34\xef\x56\x5c\x27\x03\xc3\x5f\x77\x56\x1f\x78\x13\x42\x63\x68\xac\xfd\xb6\xaf\xbb\x23\x31\x1f\x37\x6f\x67\xc5\x2f\x59\x30\x7a\xa6\xe9\xd9\x98\xe7\x23\xfb\x93\x81\xd7\xae\x7a\xa7\x26\x7e\x6e\x82\xf9\x91\x8d\x13\xa3\xcf\xe7\xb2\xe1\xe4\x55\x8f\x4f\xe2\xe3\xd7\xb0\x41\x4d\xf1\xd0\xe1\x99\x47\x35\x08\x4c\xf4\x2e\xd7\x77\x42\xd3\x09\xde\x13\xbe\x7c\x5e\xee\xbe\x9c\x0d\x1e\x3d\x97\x8b\x42\x73\x3e\x31\xd0\xdc\x79\x70\x27\xcf\xfd\x5f\x0c\x24\xb4\x9a\x72\x6d\xef\x4b\xd2\x3f\xb0\xf0\xa3\xba\x42\xb3\x60\x37\x83\x38\xb9\x95\xcc\x10\xaf\x12\xe1\x5c\xf0\x13\xf5\xb6\xc9\x67\x59\x60\x58\x77\x82\x8f\x0e\xa4\x12\x9e\x39\x35\x67\x7a\x94\x3f\x60\x41\xc1\xb1\x45\x3d\x83\x33\x8d\x30\x5e\x77\xb6\x41\x5a\xb5\x20\x21\xd1\xb4\xe7\xc7\xea\x67\xb9\x84\x14\x29\xab\xa3\xe9\xed\xf7\x08\xa7\xd2\x0f\x46\xaf\x19\x2d\x99\xfe\x81\xb1\xdc\x8d\xce\x84\x3e\xbf\x4d\xdd\xf6\xd5\x89\x84\xd9\xfb\x4b\x78\x55\x6d\xee\x13\x16\x0b\xbf\x2e\x1b\x1e\x1c\x4f\x90\x57\x30\x98\xad\x1c\x3d\x8d\x0d\x41\x86\x97\x23\x58\x01\x2f\xf3\x71\xff\xfc\x15\x5b\xc3\x5f\x5f\x08\x2b\x6f\x8b\x77\x76\x67\xb4\x12\x62\x2a\xcf\xe8\x25\x5d\x8d\x21\x4c\xd1\xf2\x6e\xf2\xfa\x72\x81\x85\xaa\x86\x27\x47\x07\xb5\x12\x08\x37\x07\x06\xa4\x7e\xdc\x0a\x26\xf4\x5d\x30\x5d\x77\x71\x83\x20\xe1\x57\xfe\x85\x77\x4b\x6f\xa4\x11\x7a\xb7\x27\x67\x0b\xfd\xaa\x63\x70\x52\x70\x99\xdf\xd3\x91\x6e\x06\xdb\xda\xa7\x4e\x49\x2b\xeb\x63\xd0\xdc\x9f\x7b\xfc\x10\x64\x08\xc5\xd9\xf1\xad\x3d\xe9\x99\x04\x67\x25\xb7\xaa\x60\xce\xe9\x84\xbb\x89\xf9\x32\xc9\x37\x74\x08\x1a\x52\x7e\x5f\x6a\x23\x53\x08\x81\x49\x2b\xef\x95\x85\xa7\x10\x14\x3b\xbd\x95\x77\xf3\xaf\x23\xdc\x0d\x59\xfb\x2e\xf4\xed\x0c\xc2\x1a\x99\x30\x17\x93\x8c\x2f\x0c\x58\x01\x09\xfa\x67\x66\x2c\xa6\x31\xe8\x6e\xd4\x59\xcb\x2f\xfd\x9a\x41\x51\xe4\x60\xad\x7c\xc1\x1d\xc2\xee\x4b\x66\xf2\x33\x67\x4a\x11\x56\xb6\xee\x28\x0d\xa0\x42\x82\xcf\x80\xa4\x8c\x78\x5c\x0d\x61\xfb\x96\x2a\x8d\x9a\x98\x02\x82\xe5\x9d\x67\xde\xd2\xa3\x9f\xf3\x12\xc3\xa9\xdd\xe2\x19\xad\x0c\xf4\x36\x2e\xb6\xda\x13\xa6\x46\x68\x4a\xf1\x12\xbc\xea\xb5\x98\xa0\x16\x3b\xfb\x47\x93\x45\x3f\x03\x6f\xc3\x22\xe3\x3c\x92\x24\x7c\x8f\x3c\x55\x7d\x7d\xf4\x8c\xfe\x1f\xcc\x4e\xdb\x58\x9a\x1f\x98\x97\x8f\xf9\xf6\x43\x12\x1e\x8a\xcb\x08\xe1\x52\x55\x32\x56\x13\xee\x11\x8a\xcb\x12\x3a\xe6\x72\xdd\x23\x0c\x5a\xdc\xdc\x2a\x1d\x16\xcd\x56\xf8\xd6\x8a\x6f\x69\x39\xbc\x8b\x60\x35\x83\xc3\x6d\xae\x8f\x3d\x0b\x22\x66\xf5\x6e\xd7\x9c\x6d\x08\xba\x3d\x11\x39\x57\x34\xad\x09\xbd\x02\xc2\x9b\x9f\x97\x1f\x20\x48\x97\x3c\xdc\xa7\x73\x44\x92\x60\xbd\xd4\xb9\xbc\x4c\x76\x2a\x1b\x76\xbb\xab\x76\x74\x1f\x59\xc0\x86\x11\xbe\xca\x55\x5d\xbd\x37\x58\xb8\x8b\xbb\x2a\xae\x61\x2f\x18\xf0\x1f\x6c\xee\xdc\xe7\xfb\x8a\x50\x27\xf8\x38\x43\xe3\x64\x12\xe1\xe8\xcf\x77\x51\x4b\x2b\x55\x08\x49\x96\x1f\x62\xb4\x9e\xd6\x33\x98\x97\xb2\xa5\xe8\xb7\x7e\x19\x03\x2e\xe1\x23\x57\x5f\x99\xbd\x27\xc4\xa7\x4b\x30\x4b\xa7\x15\x10\xec\x67\xa8\x36\x18\x28\x15\x11\x96\x37\x36\x26\x98\x49\x9c\x64\x41\xdd\xe3\xa0\xfb\xb2\xa1\x87\x84\x4f\x2b\x93\xfd\xf3\x0c\x15\x08\xbf\xc5\x52\x7e\xaf\xb9\x67\x49\xe0\xb1\x73\xaa\x99\x71\xac\x98\x50\x22\xba\xce\x32\xe7\xc7\x15\x82\xb4\xcf\xdb\xbb\xc7\xe5\xa2\x09\x9f\x2d\x79\x74\xa6\xec\xdb\xc6\x86\xfa\x1b\xce\xf2\x62\xcb\x56\x12\x8a\xe4\x1a\xb7\xcc\x1c\x98\x4b\xb8\x7b\xe3\xfa\xbe\x13\xb3\x15\x08\x77\x19\xe4\xf5\x76\x66\x11\xd2\x74\x9c\xf6\x39\xeb\xa4\x13\xf6\xb8\x75\xff\xd1\xf9\x99\x45\xc8\xb1\x8e\x53\x99\xe7\x67\x4e\xd0\x35\x78\xfd\xc2\x9c\xcb\x9c\xad\xe4\xec\x1f\xbc\x71\x6f\x89\x05\x61\x12\xde\x9f\xdd\x3e\x72\x89\x40\xe3\x5f\xd8\x0d\x73\x74\x31\x38\xd2\xb4\xce\xca\xd3\xfa\x2e\x8d\x61\x79\x41\xf8\x30\x5e\xdd\x66\x2b\xa6\xa7\xce\x8b\xd9\xff\xf6\x22\xa8\xf5\xf3\x44\x0c\x2c\x3d\xc9\x1a\x2b\xff\x17\x58\xe2\xf5\x55\xe1\xef\xaf\x51\xe7\x5c\x28\x96\xd9\x13\x4c\x40\x6e\x70\xed\x9c\xd3\x5b\xd9\xf1\xff\xaf\xf9\x2c\x5b\xdc\xdb\x1d\x37\xcc\xe0\x50\xfe\x99\xe5\x27\xf2\xc4\x09\x33\x56\x9f\x13\xbe\xed\xe7\xc2\x06\xe6\x55\xba\xe5\x84\xf5\x47\x09\x42\xb9\x96\xde\xa9\xf5\x93\x08\x13\x4e\xbd\x08\xa9\x11\xc8\x20\x4c\x98\x58\x1d\x3c\x93\xcf\x95\xf0\x31\xa3\xad\x5a\x71\x65\x02\x61\x5e\x7d\xc2\x99\x30\xbf\x42\xc2\xa6\x87\xed\x95\x7f\x71\xf2\xc5\xda\x8e\x09\xf9\xa1\x04\xd7\x1d\xbb\xef\x9f\x5d\x1a\x4b\xa8\xd5\x57\xb8\xb0\xe8\x41\x28\xe1\x65\x49\x96\xc8\x97\xe7\xd1\x84\x39\x0b\x37\x5f\xf7\xe9\xa8\x22\x14\xaf\x08\x1a\xd2\xc9\xac\x22\xe0\x96\x4b\x69\x7e\x53\x15\xe1\x32\xdf\xd9\x77\x16\xf3\x5f\x12\x12\xa3\x86\x59\x4a\xf3\x45\x08\x69\x5a\x33\xda\xe6\xb5\xf0\xb3\x41\x60\xca\x9f\xdf\x62\xcf\x3f\x33\x50\x6f\xf3\x0d\x15\xdd\x39\x6f\xf4\xd3\x61\x66\xb9\x16\x47\x31\x61\x46\x5d\xe3\x33\x91\x17\xbd\x0c\x44\x02\x6e\xd9\xcd\x58\x3d\xcc\x86\x46\xff\x9f\x2e\x41\xfe\x5d\x0c\x06\xf5\x67\xa7\x6e\x9d\x14\x4f\x78\xd1\x59\x34\xad\x75\xc0\x88\x0d\x7d\xf4\x21\x22\xd9\x6b\x3a\xe1\xd2\xc8\xed\xd3\x21\xaf\xd2\x58\x48\x13\x3e\xa2\x62\x62\x54\x44\x63\x70\x76\xca\x90\x3c\x69\x56\x44\x98\x5f\xf9\xe8\xf0\x01\xe1\x49\x84\x83\x27\xd4\xac\x97\xf9\x1e\x65\x83\x69\xca\xa4\x86\x69\x7b\x55\x09\xac\xaf\x1e\x86\xf6\xb7\x1e\x13\x92\x6d\x9c\xa7\xfa\x8e\xde\x7e\x6a\xf5\xfa\xa1\xf9\x12\x46\x6c\xf0\x4a\x3a\x19\xe3\x23\xa4\x44\xa0\x29\xbb\x3d\x3f\x2b\x9a\xb2\x70\x7f\x29\xff\x8f\xdb\x71\xad\x0c\x74\xaa\xd4\x9f\xe9\x28\xbd\x24\x3c\xbd\xe9\xea\xe0\x78\x38\x8f\x90\xc5\x39\xb5\xa8\x2b\xbf\x8e\xb0\x34\x76\xe4\xf1\xc5\x7d\x0d\x84\xff\x8f\xaf\x3b\x8f\x86\xfa\xfd\x1f\xb8\x9f\x50\xd6\xb2\xcb\x96\x7d\x29\x25\xb2\x44\xf2\x7e\x45\xb6\x56\xa2\x52\x96\x50\x59\x8a\x94\x8a\x14\x21\x2a\xca\x12\x29\x45\xf6\x7d\xcb\x92\x35\xcb\x8c\x3d\x25\xd9\x95\x25\x4b\x54\x84\x94\xa5\x5e\x22\xdd\x47\xf7\xb9\x3f\x33\xbf\x73\x3b\xdf\xbf\xe6\x71\x9e\x2f\xe7\xcc\x9c\x99\xb9\xe6\x7d\x5d\xe7\x0c\x9c\x5d\xf2\x1f\x5d\xb4\xac\x06\xbc\x4e\x9f\xf4\x7a\x71\xf3\xf2\x7d\x45\xdc\x4f\xeb\x78\xd0\x0c\x18\xe6\x78\xc3\xc7\x57\xf8\x25\x20\xf7\xdf\xcc\xaa\xb3\xbd\x55\x80\x66\x83\x52\xc4\x45\x08\x04\xdc\x33\x73\x43\xd8\x73\x26\x15\xd0\x8b\x8d\xe1\xa7\x5c\xcb\x20\x60\x49\xd5\x64\x57\x33\x5d\x22\x60\xe4\x71\xf2\xc1\xe3\x1d\x4e\x80\xa3\xe5\x5c\xeb\x4e\xaa\x5d\x00\xbc\xe7\xee\xb4\xc1\x31\xec\x1c\x19\x8d\xb6\xbd\x78\xe4\x24\x7b\x0e\x70\x92\xd4\x9d\x7e\x32\xe0\x08\xe0\x80\xfc\x9d\xda\x03\x16\x77\x01\xb3\xae\x6d\xb9\xd5\x3a\xeb\x0b\xe8\xdc\xb3\xdf\xf6\x6b\xd9\x31\xc0\x98\xae\xa3\x39\x25\x89\x27\x00\xa5\x4f\x6b\xd6\xda\xd7\xea\x01\xb6\xd4\xd5\xd9\x2f\x7a\xb0\x03\x4e\xce\x72\xd5\x6e\xbe\xb5\x0d\x30\x44\x26\x5e\xca\xf7\xf2\x1f\x02\xed\xcf\x84\x6e\x3e\xa6\x5f\x0d\x68\x92\x9a\xbb\x36\x73\xbc\x0a\x50\x61\xb8\xe5\xc1\xd9\x80\xe5\xf5\xce\x92\x06\x55\x0b\x47\xc8\xf8\x66\x83\x97\xc4\xfd\x3b\xd5\x80\x9c\xd1\x9f\x07\x9d\xdd\x4b\x00\xd3\x1f\x65\x8a\x5b\x35\x75\x01\x86\x5f\x4d\x6f\xaa\x2b\x7d\x0f\xb8\xd4\x9d\xdf\x44\x7f\xa5\x0e\x30\x2a\x8f\xd7\xc7\x5d\xaf\x16\x70\x68\x93\xfe\xf3\x4d\xe9\x75\x80\x2c\xc6\xf5\x92\x59\x37\xaa\x00\xab\xcc\xbd\xf6\x19\xc4\xd4\x02\x1e\xd0\x79\x70\x4e\xa2\xa1\x16\xd0\xfa\x6e\xa8\x7b\x6f\x4e\x2d\x60\xde\x13\xe5\x22\x07\xa9\x2a\x40\xd6\xde\x4d\x72\xef\xe9\x6a\x01\x3d\x04\xda\x72\xfe\xfd\x4c\x67\x99\xd9\xf9\x7f\xff\x25\xcc\x61\x97\xe4\x31\xa5\xca\x32\xc0\xc4\x63\x31\x7f\xae\x32\x95\x00\x3e\x6a\x71\x72\xb0\x7e\x56\x0e\x38\xb6\xe3\xf1\x1a\xd2\xe1\x52\xc0\xe7\x46\x7d\xb9\xca\xd2\x65\x80\xd9\xe6\xec\x5b\x99\xd9\x0a\x00\x2f\xeb\x9d\x30\xdb\xf0\x3a\x1a\x30\xaf\xbc\x94\x4c\x36\xb4\x02\xdc\xfc\x51\xe4\x90\x93\xba\x2b\xa0\x8c\xfa\xc4\xd1\x55\x2e\xf2\x80\x30\xdb\x6b\x6e\x3b\xa3\x05\x58\x76\x80\x91\x27\x53\x36\x04\x30\x3c\xa7\xe0\x70\xf0\xc0\x59\xc0\x18\x6d\xce\x9a\x34\x7d\x53\xc0\x87\x89\x22\x05\x02\x33\x47\x00\x19\xf3\xea\x33\xa6\x18\x94\x00\xa3\x5f\x79\x3c\xaa\x68\x0b\x01\x74\xd9\x22\x7a\xfc\x88\x96\x14\x20\x3f\xcd\xcb\x1a\x73\x6e\x7a\xc0\x4a\x65\x99\x9d\xe1\x65\x36\x54\xf0\xf0\xf2\x8b\xb3\x88\x11\xa1\xc2\x25\x0d\x92\xad\x0b\x9d\x09\x60\x50\xd5\x7e\x17\x97\x89\x1f\x04\x86\x04\x6f\xf8\x5e\x2e\xc8\x04\x14\x64\x75\x1a\x9f\xac\xbe\xcb\x0d\xc8\xe7\x59\x61\xb9\x6a\x6b\x35\xa0\xfe\x44\x3c\x33\xf3\x1d\x6f\xc0\x43\x22\x4f\x82\xea\xd2\x19\x00\x9f\x27\xef\xb8\x74\x3e\x6c\x15\x15\xf2\xdf\xd7\xcc\x36\x36\xe7\x12\xb8\x29\x74\xcb\x9e\xb5\x9a\x25\x80\xf4\xaa\xb6\x5d\xd6\x9a\x15\x80\x3b\x6e\xdc\x2a\x1b\x4a\x56\x01\xdc\xc5\x33\x12\xbe\x9f\x7d\x86\xc0\xbe\xbd\xd6\x3f\x37\x32\xe6\x00\x72\x94\xa9\x34\xfc\x43\x91\x91\xee\x5a\xe1\x59\x5b\x2a\x0c\x9e\xcb\x74\xfc\xbc\x3d\x8e\x8c\x96\x7b\x56\x35\x14\xb4\xef\x01\x3c\xb4\xdd\xc6\xd6\x32\xa2\x16\xf0\x4b\xb1\x10\xcf\xaf\x6c\x5d\xc0\x6d\xa3\x24\x31\xd7\x6e\x58\x09\x39\xaa\x07\x72\x4e\x4a\xc9\x01\xf6\x0e\xb6\xbc\xd1\x7a\x71\x87\x4c\x29\xff\x81\x7e\x73\xaf\xd6\xd2\xcf\x69\x02\xb9\x75\xf8\x35\xbc\x4f\x25\x00\xee\xec\xf3\x3e\x6b\x77\xc5\x1c\x30\xc1\x7b\xaf\xd4\xb7\x6e\x0b\xc0\xda\x77\x66\x77\xa6\x3b\x0f\x02\x86\x66\x8c\xf8\xe6\xc7\xac\x07\xfc\xcd\xef\xac\x7a\xb6\x52\x70\x25\x9c\xac\x68\x5b\x57\x84\xbe\x2b\x61\x2c\xab\x57\xad\x84\x3f\x14\x90\xb6\xee\x6c\x93\xf6\xf1\xa0\xe5\xb7\xdf\xf6\xe2\x5d\x6e\xc4\xf2\x27\xf6\xb9\x72\xfb\x45\x51\x40\x6f\xc2\x41\x39\x7b\xd5\x34\x81\xeb\x5f\x86\xbe\xcf\xef\x9a\x24\xf0\xe4\x57\xd6\xbe\xb9\x9b\x7c\x40\xc1\x52\x78\xd1\xd3\x79\xff\x24\xc0\xca\x55\xe9\xd9\xd7\x83\x1e\x92\xf1\x5e\x70\xda\xdf\xcb\x07\x0b\x01\x4f\x78\xaf\xa7\xf9\x76\xa4\x10\xf0\x81\xe8\xab\x0e\x31\xa8\x22\xf0\x2a\xb6\x86\xe7\x69\xb2\x01\x05\x4f\xef\x76\x1f\xfe\x43\xbf\x44\xe0\xa5\x35\x71\xef\x57\x5d\x4c\x02\x0c\x4b\xad\x90\x7c\xbe\x60\x49\x85\x4b\x6e\xdf\x0c\x68\xda\xac\x00\x99\xd7\xfd\xad\xb6\x51\x0b\x01\xbc\xdc\xe0\x1c\xf7\x81\x08\x21\xe3\xe0\xd4\x9f\x54\x56\xb6\x54\x40\xdd\x1d\x9c\xe4\x7f\xc8\x51\xdc\x5c\xba\x4f\x28\x15\x30\x8c\xe3\xcb\x33\x93\x67\xab\x00\x33\xc2\x68\x05\xb8\x39\xdd\xa9\xb0\x67\xae\xd0\xe2\xc5\x63\x6b\xc0\x91\x14\xdf\x1b\x4f\x76\x7f\x21\xf0\x4a\x74\xb3\xc3\xaa\xce\x4e\x02\x75\x5f\xff\x38\x75\xf4\xaa\x22\x50\x20\x09\x29\x36\x7a\x2d\xd3\x04\xde\xec\x90\xba\x24\xdd\x68\x08\xb8\x23\xab\x45\xfb\x49\xe2\x31\xc0\x94\xf4\x04\x9e\xe8\x4c\x6e\x2a\x48\xbd\x3a\x58\xaa\xa4\xf7\x8d\x84\x8d\x1f\xde\x84\xaf\x93\x11\x01\xf4\x56\xca\xf3\xd9\xe0\x21\x08\x48\xd6\xa9\xef\xf9\x6c\xaa\x05\x68\x5f\x6d\xa3\x6c\xbf\xc0\x0c\xf8\x6c\x8c\x45\x4e\xe8\xee\x6d\x2a\xe4\x7e\x1a\xba\xd2\xdd\xa9\x03\x78\x72\x77\x68\xb7\x21\x7f\x14\xe0\x2c\x59\x5d\x80\xfe\xfb\x76\xc0\xa6\xfe\x53\x23\x06\xcb\x07\xc3\x91\x72\x9a\xea\x29\xe1\x72\xc0\xd2\x66\xf7\xc5\xa5\x13\x37\x01\x77\x2d\x2e\x69\xbc\x97\x94\x02\x7c\x14\x7b\x44\xc5\x7f\xed\x41\x40\x9d\x57\xc5\x7a\x36\xaf\x34\x01\xb7\xbc\x90\x5f\xf3\xdd\xfe\x2f\x81\x39\x0f\xbb\xe3\xbc\xec\x23\x01\x27\xf6\x97\xf5\x94\x8e\xe7\x02\xa6\x30\x4c\x2a\xaf\xbf\x91\x06\x98\x46\xb7\xe4\xa2\xbe\xd3\x9b\x8c\xbb\x23\x8b\xfb\x25\xbe\x15\x01\xce\x44\x37\x7e\xea\xfb\x12\x0c\xb8\xb3\xcb\x68\x9a\x79\xaf\x2b\x19\xa3\x9b\xaf\x1b\xcb\xad\x09\x02\x5c\x27\xf5\x3c\x4d\xe1\x57\x14\x19\x0f\x18\xf0\xfc\x7e\xcf\x7a\x0e\xf0\x50\x5d\xa4\x77\x69\x8c\x29\x20\xe3\xb9\x3d\xa9\xb1\xcc\xa5\x64\x1c\x19\xcc\x6b\xf8\xde\xf0\x82\x8c\x83\xeb\x0e\xce\x98\x92\xaa\x00\x7b\xd7\x0b\xd8\x8d\x93\xc8\x80\x4a\x02\x46\xee\xf1\x0d\x24\x32\xf2\x78\x8b\xd5\xfd\x1b\x7d\x63\xe9\xff\x1b\x5c\x6b\x00\x28\x97\xfc\xb9\x50\xd8\x58\x19\x70\x71\xa0\x89\x6f\x8d\x36\xeb\xf2\x96\x38\x89\x7c\x83\xf9\x39\x60\x47\xe3\x2d\xbf\x56\xf9\xe7\x80\xa2\x41\x99\x5d\x61\xd7\x97\x0f\x62\x5a\xb5\x69\xfb\x83\x86\x09\xac\xd0\x6a\xfe\xf0\xf8\x15\x33\x60\x54\x56\x1d\x5d\x5e\xa9\x38\x60\x44\x13\xa3\xc9\xd0\xdb\x5d\x80\x87\x98\x7d\xfe\xac\xa1\xb3\xa7\x02\x97\xeb\xa9\x9e\x26\x61\x2e\x40\x6e\xa6\x8d\x26\x61\x76\x37\x01\xf7\xc4\x69\xc4\x1b\xfe\xca\x03\x64\xeb\x39\x69\x75\x99\x33\x03\x30\x41\x5b\x65\xcb\x24\x7b\x26\xa0\x37\x6b\x87\x6f\xd1\xd6\x3b\x64\x3c\xc3\x35\x76\x53\x9a\x3f\x13\x90\x7c\xaa\xea\xd7\xaa\xc1\x14\xc0\x52\x86\x5f\x9b\x15\x8e\x25\x03\xfe\xfe\xdb\x1e\x39\x3f\x92\x04\x38\x22\xb8\xed\x28\x53\x50\x0a\xa0\x81\xfe\x06\xb3\x3d\x56\x39\x80\xcd\xc2\x8e\x01\xdb\x39\x53\x00\x39\x8a\xc4\x68\xda\x8b\xb3\x01\xf9\x9e\x34\xf9\x8a\x9e\xcb\x01\x5c\x7d\xbc\xe1\xf8\xa5\xdb\x8c\x80\x39\x2f\xe5\x72\xef\x93\x79\x01\xd5\xf7\x30\x95\x67\x7e\x5a\x0f\xf8\x4d\xec\x34\xe9\x4f\x9c\x14\x60\xd3\xa0\xd5\x86\x4d\x7c\xbb\x01\xfd\xc8\x9d\x01\x45\x2f\x75\x00\x69\xbd\xb9\x6d\x9c\x0f\x88\x02\xde\x9e\x99\x3d\xce\x64\xaa\x09\xc8\x53\x7c\x99\x69\xe3\xee\x1a\x02\xb1\x53\xad\xa7\xff\xc7\x28\x15\x82\xd6\x7d\xf8\x9c\xb6\xe9\x0b\x81\x5c\xd7\x37\x35\x99\xac\x51\x00\x54\x0d\xa0\x13\x1e\xda\x0a\x80\xc6\xa9\x51\x99\x02\x82\xb4\x80\xbe\xba\x8b\x7b\x4d\x77\x28\x50\x81\xf9\xf4\xda\x3a\x6b\xee\x27\x24\xf4\x9e\x36\x78\xb7\x7e\x53\x1a\xe0\x39\x3a\x27\x77\x83\x12\x4b\xc0\xae\x35\x5f\x8c\xa6\x32\x2d\xa9\xca\x4d\xa1\xfc\xd4\xc2\xbb\x57\x01\x1d\xfc\x55\x83\x9a\x6e\xbb\x02\xb2\xca\xe8\xbf\x7b\xac\x92\x00\x98\xe2\x71\x23\x66\xf3\x84\x0b\x60\x4e\xa0\xe7\x80\xd0\x96\x25\x12\xa5\x9c\x5c\x93\xc4\x9e\x7a\x88\x00\x1c\x4a\x15\xa8\xfb\x58\xd2\x46\xc2\x7b\x82\x7b\x8e\xbc\x18\x90\x06\x0a\xb8\xf4\xab\x46\x9a\xf3\xb5\xa8\xf0\x5b\x8d\x37\x58\x41\x4c\x04\xd0\x2b\x8f\x59\xaf\x5f\xbf\x02\xd0\xd0\xee\xca\xf1\x58\xc9\x5a\x40\xd9\xba\xa7\xab\xa5\x2f\xed\x07\x5c\xbc\xee\xd7\xf0\xe7\x91\x2b\x15\x34\xc1\xf4\x28\xd7\x0f\x2e\x40\x6d\x53\xd7\xca\x0d\x3d\xab\x00\xdf\x1e\xe2\x96\x92\x3e\xc7\x03\x38\xec\x55\x55\xe9\x92\x3e\x4d\x60\x6b\x51\xb3\x68\xeb\xbe\xdd\x80\x36\xd9\x4e\x07\xa5\xde\xef\x03\x8c\x76\xaf\x67\xe7\x7d\x33\x47\x20\x1a\x89\xcf\xa5\xda\x0a\x02\xc6\xbb\x18\xbf\x09\x32\x74\xa2\x02\xdf\xa3\xed\x07\x03\xe8\x2d\x00\x63\x4f\x36\x5f\xf8\xf4\xc8\x0a\x30\xca\xbb\xc7\xf5\xb7\x52\x32\xa0\xc0\x9e\xc0\x86\xb2\xd0\x67\x64\x9c\x56\x74\x8e\x3a\x72\x65\x2d\x60\xf8\xbd\xe1\x82\xa6\x2b\xa7\xa9\xf0\x56\xd5\x5d\x8c\xe5\xba\x32\x15\xa2\xce\x36\xfd\xbe\xae\x38\x45\x60\x68\xbc\x47\x98\xa0\xec\x17\x02\x6d\x7f\x7c\x37\xbe\xe7\x2a\x0d\x14\xe8\xef\x67\xf7\xa1\xb3\xfa\x40\xc2\x5f\xb1\x07\xde\x36\x9a\x2e\x12\x28\xb4\x4f\x8a\x76\x95\x99\x2d\x19\xdd\x6b\xc4\xe7\xec\xe5\xaa\xc9\xb8\x85\xff\xdd\x86\xed\x41\x6b\x00\x19\x06\x6f\x95\xd5\x7e\x59\x47\x85\x6c\x3b\xe2\x45\x42\x67\x2b\x09\xd3\xb5\x3c\x2e\xfc\x7c\x34\x4e\x60\xc2\xcf\x13\x76\xef\xe8\x27\xa9\xf0\xdf\xdb\x26\x71\xb3\xfc\xc4\x40\x9e\x24\x60\x46\x4c\xd7\xf9\x88\xb2\x9d\x80\xbe\xf1\x8d\x9b\x8e\xc6\x57\x00\x7e\xf3\x75\x6d\x3a\xb2\x8c\x0f\xec\x66\x6f\x64\x5d\x90\xa0\x60\xa3\x9b\xcb\xb5\xc0\x0d\x4c\x80\xf2\xe3\xc2\xc3\xec\xbd\xf2\x80\xf7\x9e\x42\x71\xbb\xb0\x27\x60\xfe\xea\xa0\x3a\x2b\x17\x7a\xc0\xd2\x87\xe7\x99\xe4\x8a\x33\x01\x5f\x69\x5c\xd1\xc9\x95\x35\x06\x1c\xd3\xdb\xf0\x7e\xd3\xe6\x1c\xc0\xfd\x75\x19\xea\x32\xb6\xbc\x80\x1b\xb9\xe9\xee\x8a\xdd\x99\x23\x90\xde\x4a\xde\xd2\x4b\x59\x01\x90\xde\x4e\xf9\xaa\xb5\x34\x1b\xa0\x43\x64\x83\x6c\x42\x4f\x0c\xe0\xa9\xe0\xb8\x62\xa1\xc5\x17\x80\xaf\xca\x1a\x3d\x19\x44\x15\x00\xed\x19\x03\xa5\xaf\xc7\xba\x50\x61\x3a\xe0\x57\xed\x66\x19\x2f\xc0\xa8\x98\x5f\xe7\x36\xa5\xac\x03\x1c\xee\x75\xb9\x40\x0e\x8d\x01\x14\x0f\x16\xac\x36\xf2\x50\x01\x3c\x37\x21\x4b\x7b\x58\x9c\x03\xb0\x68\x75\x68\x42\x5e\x96\x0e\xa0\x76\x84\xe3\x64\xc6\xda\x29\x02\xd5\x84\x4a\x3e\x89\x1e\x5d\xa4\x42\xca\x6a\xe6\xdf\x76\x97\xfa\x48\x28\xe4\x5f\xea\xeb\xf7\x8c\x1b\x30\xfa\xe9\x19\xb3\x27\xc6\x01\x54\x60\x79\x97\xa4\x7e\x53\x89\x07\x70\xf3\xb6\xdc\xd6\x93\x6a\x09\x80\xd9\x67\x07\xc3\xa4\xdc\x24\xa9\xe0\x1c\x7e\xe6\xbc\x58\x46\x16\x41\x01\xdb\xda\xf8\xf7\x4b\xac\xab\x01\x5f\xcd\x59\x54\x1d\xfa\xaa\x0b\xb8\x55\xab\xb5\xbe\xed\x34\x37\xa0\x4a\x51\x53\xd2\x21\xe3\x12\xc0\x59\xd6\x2e\x36\x41\xd3\x6a\x32\xb6\x3e\x30\x02\x9f\xed\xb9\x64\xe4\xe3\xd1\x0a\x3c\x29\x55\x08\x18\x63\x7e\xa7\xdd\x93\xf7\x0f\x81\xc9\xd1\x26\xd3\xe9\x7c\xb5\x64\x74\xbc\x79\x87\xb1\xde\x3b\x83\xc0\x2f\x97\x0a\x3a\xd6\x5f\xaf\x02\x8c\xb7\x4a\x3a\x2d\xb2\xae\x96\x0a\x7e\x56\x92\x12\x83\x1d\x57\x57\x82\x1e\x31\xa7\xe0\xc1\x68\x07\xf8\x7e\x28\xad\xe4\x50\x96\x3b\xe0\xa4\xc4\xd7\xfd\x7a\xad\xd7\x01\xaf\xe6\x70\xfa\x87\xb3\x25\x93\x90\x56\x11\x24\xd9\xc8\x3b\x01\x7f\x81\x5f\xa2\x89\x7b\x01\xe0\x57\x46\xf3\x7b\xc7\x97\xf1\x22\x43\x65\x9b\xb3\xde\x3b\x12\xee\xfe\x78\x29\xeb\x5b\x09\x13\xa0\x8e\x40\x8d\x72\x96\x60\xd5\x4a\x58\x9f\x34\x4a\xaa\xd4\x2f\x20\x61\x7a\xfc\xd9\x4f\xc9\x3b\x8a\x48\xe8\xcd\xff\xe4\x38\xfd\xb8\x36\xa0\xea\xfb\x7d\x9b\x8c\x5a\xf5\x80\x52\x16\x83\xbf\x3a\xbe\x16\xe7\x03\x24\xe7\xb0\x6c\xd6\xff\xf2\x14\xf0\xe1\x69\xd3\x10\xdf\xe2\x6a\x40\x81\xc3\x7d\x07\x4f\x89\xbe\x24\xe1\xc6\xd1\x7c\x4e\x5a\xfd\x62\xc0\x2e\xc2\xac\x8c\xf7\x6f\x0e\xa0\xf1\x89\xbb\x9f\x56\x2f\x97\xde\x38\x07\xe5\xd6\xe5\xcf\x8d\xa7\xa6\xfc\x61\x17\x4e\x94\x00\xb6\x6e\xbf\x9c\xfb\x5d\xa2\x16\x70\x29\xb8\x70\x63\xca\x32\x52\x1b\x37\xc5\xfd\x7b\x18\x9e\x3b\xda\x98\x02\x26\xb5\x61\x05\xfc\xf7\x30\x8c\x04\xdd\x57\xef\xcb\xce\x01\x3c\xad\xc4\x79\x27\x77\xd7\x00\x19\xc7\x65\x5e\x1d\x76\xa3\x2f\x00\x74\x65\xfb\x6e\xfa\x79\x70\x37\x20\xb9\xda\xad\xe4\xc6\xfb\x31\x02\x33\x06\x7f\xa8\x6f\xac\x5a\x3e\xe3\xff\x7f\xd8\x2e\xf2\xf7\x46\xb3\xc9\x5a\xc0\xb8\x6f\xea\xe3\xca\xc2\x46\x80\x57\xfb\x1c\x95\x76\x49\x8a\x02\x6a\xab\xdb\xaa\x3b\x08\xf9\x50\xc1\x4f\x86\x56\x7d\x93\xfc\x6d\x40\xd6\x9b\xfc\xd2\x5a\xbb\xbd\x01\xd3\xaf\xa6\xbb\xc7\x71\xc7\x02\x8e\x32\x71\xe4\x7e\x28\xae\x03\xcc\x8f\xd8\xd5\xff\x0f\x47\x26\xcb\x8d\xff\x61\xc2\xfc\xc1\x9d\x1e\x9f\x44\x40\xc9\xf8\xe2\xc7\x63\xf5\xa1\x80\xa7\x0f\xfd\xd8\x94\x56\x30\x4f\x20\x57\xe5\xf9\x97\xd7\x73\x00\xb0\xd5\xb0\xae\x78\x60\xa3\x18\x60\x9f\x4b\xd7\xf3\xd5\xed\x8a\x80\x9d\xdf\xb7\x0d\x8b\x85\x3f\x02\xe4\x5e\x3b\xe7\xfa\xe5\xc2\x09\x2a\x5c\xf5\x0a\xa4\x3b\xad\xe0\x4e\xa6\x14\x93\xee\x5f\x57\xfe\xfd\x56\x6a\xd2\xf7\x84\xd6\x7f\x5f\xfb\x35\xf1\x30\xb3\x69\xd2\xba\x46\x85\x62\xb5\x45\x89\xe0\xaf\xa5\x80\x85\x36\x4e\xde\x3d\x42\x51\x80\x4b\xf7\x98\xed\x22\xa6\x62\x01\x63\x72\x3a\xa7\x1b\xc4\x6a\x01\x5f\x89\x5f\xb4\xda\x9b\x7d\x14\xd0\x4a\x9c\xe4\x65\x38\x95\x00\x78\xfa\x48\x43\x83\xdf\x89\x42\xc0\x6f\x95\xc2\x7a\xe1\x66\x85\x80\xac\xc3\xab\x82\x1c\xb6\x88\x02\x1a\x3a\x67\xdf\xff\xf2\xb6\x14\x30\xaf\x23\x3a\x32\x59\xf9\x11\x19\x1f\x6f\x38\x96\x66\xfd\xa8\x0c\xf0\x29\x83\xdc\xaa\x51\xf1\x17\x80\xd9\xdf\xa2\x13\xca\xdc\x7d\x00\x6d\xf8\xc3\xe6\xbf\xb4\x7a\x03\x8e\x4b\x54\xb1\x5c\xe9\xf2\x01\x9c\xf8\xac\x73\xa3\xd0\x54\x03\xd0\x9a\x59\xf6\xb1\x4a\xfa\x27\x12\x5e\x97\xdc\x91\xff\xc9\xfd\x04\xa0\x46\xd6\x89\xe3\xe9\xae\x7b\x00\xaf\x2e\x35\xcd\xbb\x3f\x98\x25\xf0\x63\xbf\xda\xe7\x99\x74\x15\xc0\x29\x09\x7a\x0b\x23\xae\x45\x02\x3f\x7e\x90\xdb\x13\xf1\x6a\x9a\x40\xba\xfb\xb4\x5f\xfe\x1e\xe1\x02\x0a\x68\xd8\x37\x35\x58\x24\x89\x52\xe1\xba\x2f\x7d\xe8\x42\xf3\x7b\x12\x9e\xad\x1a\x65\x94\xb8\x69\x00\x78\x68\xea\xf4\xd7\x98\xf6\x59\x02\xcd\x76\xbc\x5b\x3b\xb8\x5e\x07\x28\x28\x17\x34\x3d\x90\xf4\xba\x89\xc0\xee\x3f\x77\xc6\xeb\xb6\x4b\x03\x3a\x3c\x4d\x74\xd3\x39\xb3\x03\x90\xe6\xed\xb9\x86\xbb\x8f\x9a\x00\xc7\xd6\xb6\x3d\xbd\x5a\xf0\x06\x90\x3d\xf0\xd6\x89\x1d\xcb\x07\xd5\x62\xcd\xdc\x67\xd7\x92\xd3\x00\xab\x1e\xc7\x3b\x67\xc6\xa8\x02\x7a\x0e\xb5\x5d\x58\x3a\x5b\x05\x68\x77\xf2\xfb\x58\xd9\x71\x3d\xc0\xb5\x07\x3b\x4f\xf6\x77\x37\x03\xae\x5e\xd8\x94\xaa\xa1\x57\x4f\xe0\x78\xf3\xbc\xe3\xa3\x87\x77\x01\x89\x36\xff\x9f\x62\xcf\x5d\x01\xe7\xe7\x87\xbe\xae\xfb\x53\x0c\x58\xa5\xc4\x39\x1c\xf2\xa2\x1c\x50\x60\xf2\xd1\x99\xa3\x5d\x05\x80\xd2\xf5\xc3\x02\xae\xcb\x0b\xd6\xf3\xe2\x41\xb5\x8a\xb1\x27\x54\x88\xfa\x34\x78\x3b\xdd\xb0\x06\xb0\x2a\x7e\x8e\x85\xdd\x35\x11\x90\xcc\xb1\xe7\xf4\xa9\x89\x04\x40\xba\x80\x8a\x71\x8f\xaf\x5a\x80\x9b\x1c\x5e\x72\x73\xf5\x19\x03\x16\xb8\x77\xf7\xc8\xbe\x71\xa2\x42\xfd\xf7\xd6\x94\xdb\xcb\x87\x88\xde\x80\x7d\x9c\xba\x9d\x95\x80\x9b\xc6\x53\xed\x43\x8e\x67\x93\xd1\xd9\x8d\x8d\xc7\x7f\x79\xf4\x62\x6c\xe4\xb6\xe6\xd6\x0b\x80\xac\x26\x3b\x0c\xd8\x7a\xab\xc8\xb8\xa5\xb2\x84\xee\xcb\xdb\x10\xc0\x69\x77\xe2\xfd\xb9\xe6\x10\x40\xbe\xb1\xe9\x39\xd9\xcd\x46\x80\xa9\x9c\x31\xd5\x2c\x17\xe8\x00\x45\xbf\x57\x25\x35\x65\x26\x00\x86\x58\x78\xf0\x4c\x7d\x8a\x07\x0c\x39\x3e\x3d\x66\x5f\x73\x1c\x70\x52\x3a\xa6\xab\xfb\x99\x32\x20\x83\xf5\xc4\xc6\x33\x57\x16\x08\x7c\x76\x76\x2a\xae\xd7\xb9\x78\xf9\x78\xc2\xd7\xfc\x0f\xff\x95\x0d\x07\x22\xb5\xff\x81\x56\xa0\xda\xda\xd4\xcf\x10\xd0\xf5\x4a\xd8\xba\xb5\x4f\x4d\x00\x7f\xe5\x9c\x8e\xbf\x73\x20\x1c\xb0\x24\x22\xf9\x68\x8f\x96\x0a\x60\x37\x86\xc4\x1d\xa8\xd8\x0f\x68\xa9\x29\xbe\xfe\x83\xc2\x34\xa0\xd4\xbb\x40\xb9\x49\xe9\x2a\xc0\xdd\x52\xbc\x27\x14\x9b\xf7\x03\xbe\xd4\x1c\x16\x8a\x49\x2b\x03\x3c\x11\x73\x60\xe9\x61\xde\x18\x81\x37\x15\xa3\x99\x56\x95\x6f\x04\xfc\x60\xa8\x24\x9b\xf4\xd0\x91\x0a\x97\x52\x66\x76\x4d\x7a\x26\xaf\x84\x4e\xb1\x75\xd1\x37\x92\x58\x01\x75\x03\xdf\x96\x2f\x7d\xaf\x02\x5c\x9a\xb8\x3e\xfe\xf6\xec\x7e\x40\x2f\x9e\xa8\x5b\xa5\x69\x0a\x80\xee\x37\x43\xf3\xfc\xe3\xed\xc9\x78\x5c\xa6\x33\x60\xb3\xc8\x2d\x40\x29\x86\xab\x19\xbd\x9d\xb6\x80\xde\x4f\x77\xcd\xc5\x9c\xf8\x45\xa0\xc1\x29\xd1\xc6\xfc\x8f\x7a\x80\x8f\xb8\x87\x9e\xef\x54\xf1\x58\x09\x15\xaa\x9c\x4e\x33\xd7\x84\x00\xd3\x6c\xce\x70\x49\xc6\x56\x02\x6e\x70\xff\x1d\x7e\xeb\xe3\x15\xc0\x39\x13\xde\xa9\x8c\x05\x00\x14\xdd\xd5\xfa\x86\x87\x95\x0c\x98\x17\xe4\xe8\xb6\xad\x79\x8c\xc0\x9a\x51\x31\x3d\xf5\xaf\x95\x80\xdd\xd6\xfd\xa5\xb1\xf3\xe1\x64\x34\x62\xf1\xef\x99\xb1\xf7\x26\x53\x46\xa3\x3c\x2d\x8c\x69\xb8\x05\x50\xff\xe0\xe4\x2b\x21\xc1\xef\x04\xa6\x5e\xba\xf5\x35\xe4\x2f\x27\x60\x37\xbd\x4c\xd9\x80\xbc\x31\xe0\xb5\x2f\x0b\xb6\xfb\xf7\x33\x01\x26\x1f\x63\x3a\x18\xdb\xfa\x9b\xc0\x27\x9f\x1c\x47\x7a\x6f\xdc\x22\xd0\x26\xa2\xa7\xf6\xfe\x99\x9b\xb0\x02\x12\xce\xac\x73\x8d\x5b\x2f\x0a\x28\x78\x7c\xd5\xf5\x6e\x5d\x26\xc0\x77\x11\x86\x6d\x87\x1d\xc9\x80\xac\xcc\x52\x49\xff\xf0\x5f\x79\x6a\x20\xdd\xc9\xf4\xa1\x1c\x90\xa9\xcc\x3a\xf6\xc1\x5b\x7e\xc0\xcb\xcc\xd5\x4b\xfa\x93\x0e\x80\x3e\xe9\xaf\xc7\x22\xfe\xfd\x21\x4b\xcd\x05\x9f\xd7\xe9\x23\x80\xb7\x2d\xf7\xce\xf3\x57\x2b\x00\xde\x78\xe9\x66\xc9\xe8\x6e\x0b\xa8\x7a\x42\x3b\x57\xc2\x4f\x00\xb0\xf0\xe1\xa2\xc3\x16\xfe\x37\x80\xc6\xdf\x3d\x26\xe6\x06\xc8\x80\xfe\xb9\xac\xcf\xfe\x66\xa5\x50\x41\xb6\x71\x40\xc1\x97\x41\x85\x0a\x63\x47\xe0\xc4\xd0\x02\x17\xa0\x9d\x42\x65\xb6\xfe\xf5\x5b\x80\xea\x5e\x2c\x13\xa3\xa3\xd2\x80\x53\x6f\x46\x4f\x5b\x97\x35\x03\x5e\xbc\x7b\xf2\x92\x9d\xd0\x1b\xc0\xa8\x63\x0f\xa7\x2d\x97\x4b\x9f\xea\xe3\x45\xd6\xbb\x77\x00\xf5\x6e\x0b\x14\x6f\x66\x6a\x23\xd0\x86\x27\x6d\xca\xea\x48\x09\x20\x8f\x65\xe6\xf1\x34\x81\x71\x32\xfa\x15\x3d\xf6\xcf\x14\x1c\x24\x63\x5d\xed\x85\x35\xa9\xcb\xd0\xe1\x36\xca\x5e\x94\xc8\x25\xe3\x86\x27\x6b\x38\x5e\x6b\xd2\x02\x7e\x30\xed\x8a\x38\x69\xa2\xbc\x12\x64\x2b\xbe\x49\xf8\xc9\x78\xff\x4f\xec\x64\x7b\x73\xa5\x22\x47\x0c\xb0\xb0\xda\x75\xc0\xe6\x58\x0c\x20\xf3\xf0\x9a\xd3\xbf\x2d\x64\x00\x2f\xfc\x60\x7c\x4b\x4e\x35\x02\xd4\x64\x28\x28\x29\xb8\xd5\x0e\x98\xae\x26\x22\x7a\xd0\xb7\x15\xf0\x8e\xf4\x84\x14\xf7\xe9\x1a\x40\x1b\x96\x5e\x5e\x6b\x19\x79\x40\x2e\x1a\x5d\x86\xdb\x0d\xbc\x80\xf5\xa0\xa0\x00\xec\xc7\x01\xd3\x4a\x7d\x36\xf3\x7a\x19\x03\xda\xda\x27\xb5\x4c\x2f\x2f\x58\xbe\x4c\x4e\x56\xde\xdb\x6e\x64\x1c\x8a\x78\xf6\xf6\x0c\x03\x07\xa0\xfb\xfc\x9f\xc3\x3d\x4c\x1a\x80\xa6\x9c\x5b\x02\x47\x1d\x3e\x12\x78\x89\x21\x80\x1c\xf7\xca\x1c\x28\x68\x5d\xd5\xfc\x77\x4b\xd7\x37\x02\x33\x4f\x2d\x4d\xf9\x32\xb9\x00\xa6\xef\x98\x3c\x2f\x30\x62\xb4\x12\x34\xfe\xb2\xb0\x64\x8b\xc2\x4a\xe8\x89\xd8\xde\x6f\xb5\x7c\x4a\xd2\xbd\xb1\xd5\x8a\x65\x4d\x35\xe0\x36\xbf\x6d\xa9\xa2\xa7\x4a\x80\x52\x9e\x9f\xe5\x7e\x67\x50\x9e\x05\x28\xf9\x25\x59\x96\xdf\x3f\x01\x70\xb4\xe7\x6b\xda\xbf\x72\xf9\x9a\xb4\x59\xcb\xab\x22\x2a\xe8\xd4\x6a\xa8\x16\x1e\xe3\x01\xdc\xd5\xca\x7a\xb7\xa4\x6c\x15\xe0\x17\xb3\x57\x1b\x79\xb7\x09\x03\xea\x85\xd4\xce\x6d\x74\x3b\x49\x05\xd1\xcd\x66\x4b\xbf\x5a\xd4\x01\x4f\xb8\x35\x29\x88\xa4\xad\x02\xdc\xd6\xf6\x5b\xa1\x59\x84\x85\x0a\xd2\xb2\x8f\xdf\xd4\xeb\x85\x53\x41\x61\xcd\xb7\x5b\x3f\x7a\x4e\x02\x56\x95\x9a\x79\xd8\x9e\xfe\x43\x60\xe6\x3d\xc3\x19\x89\x2a\x7f\x40\x07\xf9\xd7\xae\xed\xb6\x1f\x08\x7c\x3f\xf3\xbc\xf3\x83\xea\x38\x81\xdd\x73\x3f\xaf\xbd\x5b\x47\x0f\x14\x98\x57\xcd\x68\xfb\x2e\xf5\x13\x14\xf4\x36\x5c\xa2\xe1\x5b\xb2\x00\x7c\xe8\x35\x67\x48\xdc\x9d\x26\x28\x58\xf2\x3a\x57\xce\xba\xc3\x1a\x50\xf2\xbd\x8d\xd9\x21\x9d\x53\x80\xa7\x4e\x1a\xd4\xd0\xaa\x1e\x02\x0c\x29\xdb\x9e\x2c\x57\x71\x0c\xf0\xed\xf9\xae\x97\x27\x6f\xcb\x02\xce\x1f\x0a\x8a\x9c\x7b\xa1\x04\xd8\x52\x2c\x6d\x22\x3b\x21\x09\xd8\xc7\x58\x2c\xf1\x65\xe7\x57\x02\x87\x1f\x9d\x67\xee\x2e\xde\x00\x18\x79\xcb\x64\x70\x98\x49\x91\x0a\x7b\x3f\xb3\x66\xe7\x8b\xae\xa2\x42\xda\x17\xae\xd5\x6d\x65\x87\xa9\xf0\x1c\xd8\x37\xdc\xfa\x48\x0f\xe8\x2d\xf7\x72\x7e\xfb\xf2\xe6\x7f\x2a\x46\x32\xad\xef\xc9\x57\x02\xbd\x12\x8e\xb3\xad\x1d\x96\x02\x0a\x74\x2c\xd3\xf3\xa6\x3a\x5a\x48\x98\xdb\x12\xbd\xff\x52\x52\x02\xe0\x09\x31\xb5\xb5\x6f\xd3\x0b\xc8\x18\xfe\xb3\xb3\x24\xdc\xb3\x01\x50\x9b\x9d\x8b\x7b\x58\x2b\x18\xb0\x5e\x7d\xaf\x89\x40\x91\x0f\x20\xfb\xa9\xa6\xdf\x0e\x3a\x5e\x80\x1e\x96\x71\x7b\xe7\x52\xdc\x00\xfb\xbb\xda\x48\xed\xea\x91\x80\x7b\x5f\xdc\x38\xf5\x0f\x36\xf4\x3b\x02\x93\xfb\x77\x03\x5e\x9b\x82\x63\x66\x67\x8a\x00\xb9\xd2\x36\xc3\x3f\x44\x6a\x5d\x48\x48\xf7\x36\x07\xdc\xec\xc3\x1b\x2f\xf8\x23\x9c\x0a\x8b\x6c\xb2\x21\x76\x9b\xdd\x00\x93\xbb\x8f\x89\x97\x38\x45\x90\xb1\xb4\xd4\xa3\x55\x4e\xa9\x8d\x40\x87\xe0\x27\x5f\x6e\xf3\x92\x00\x35\x8d\xbf\xc9\xfd\xc3\x7a\xf1\x47\x4b\x3d\x2e\x46\x30\xef\x7b\x24\x89\x9f\x4d\x18\xf0\xa3\x14\xeb\xa6\xa6\x0c\x3f\x2a\xfc\x8c\x5a\x5b\x53\x63\xc7\x0b\xf8\x80\x9f\x6c\x72\x91\x86\x1f\xb0\x47\xd1\xcf\xcb\x95\xa3\x0e\xf0\xd4\x54\xd3\xe6\x07\x9b\xeb\x00\x83\xe2\x38\x63\xe4\x5e\x16\x01\xfe\x49\x2d\xe1\xfc\x57\x54\x2d\xf5\x82\xd6\x74\x86\x02\x46\x59\x66\x7d\xfe\x1d\x14\x42\x55\x66\x4c\x8c\xde\xcf\x17\xba\x03\xee\x2f\xe7\x6c\x5f\x90\x10\x05\x94\xdc\x66\x1e\xbb\xae\xba\x11\x30\xd7\x68\x5b\xbf\x65\x62\x3e\xe0\x16\xe5\x37\x2d\x1a\x6d\xd3\x04\xae\xe9\x08\x35\xa0\x7f\x17\x07\x48\xba\xba\xab\x72\xf5\x0f\x5d\xc0\x6f\x13\xa2\x8c\x6b\x27\x93\x00\x0f\xcc\x17\x5e\xac\x98\x9f\x23\xb0\xd3\x26\x6c\x5d\x7a\x6f\x34\x50\x70\xc3\xd8\x21\x93\xd6\x78\x2b\x15\x6e\x71\x3b\x35\xfb\x6f\x11\x59\x09\xb1\x5d\x7d\xfd\x45\x6a\x5b\x57\x42\x72\x4c\xd8\x0e\x16\x95\x0f\x04\xd6\x6b\x68\x35\x17\xd9\x8b\x00\x1a\xa8\x2b\xe5\xb8\x8f\x24\x02\xfe\xb4\xdc\xa2\xfc\xa3\xcd\x02\xf0\x55\x3b\xf7\x46\x96\x06\x0b\x40\xa7\x1d\xfe\xb6\x59\xfd\x56\x80\x56\x0f\xb6\x58\x7e\x87\x73\x80\x6a\xb3\xba\xef\x9f\x2a\xba\x01\x6a\x1c\x0a\x73\xb7\x74\x0f\xa1\x02\xbd\x14\xdb\x65\xf1\x6e\x1b\x98\xd7\x95\x4d\x91\x52\xb8\x43\xc6\x5f\x05\x1b\xdb\x3c\xc2\xea\x00\xf9\xcd\xdb\xd7\x1d\x0e\xae\x03\xd4\xfe\xc9\xef\x7a\xac\xb6\x0a\x50\x2f\x77\xde\x90\xad\xb9\x00\x50\x47\x7b\xc3\x2d\xa7\xad\xf3\x04\xce\x9c\xd8\x97\xd0\x17\xd9\x4f\xc2\xf0\xfa\x6b\xdb\x73\xd7\x33\x01\x05\xb7\xde\x1e\xb0\xf7\x0e\x6a\x25\xa1\x40\xf4\x78\x68\x81\x9a\x2e\x60\x5a\xf6\x9f\x85\xaa\x2b\x87\x01\x77\xff\x28\x68\x92\xef\xe3\xa0\x82\x6b\xc5\x57\xa9\xe4\xb7\x63\x04\x0a\xd9\x7c\x68\x3f\xbe\xbc\x03\xd8\x6c\xe8\x1a\x44\x3e\x61\x45\x42\xfe\xc8\x50\x8f\x33\xe9\x26\x40\x41\x29\x5d\xeb\xe2\xcf\xd4\x41\x02\xdf\x75\x1b\xcb\xe7\x68\x1d\x05\x0a\xe6\x74\xf9\xaa\xea\x95\x08\x2a\xbc\x7f\x6b\xbc\xe1\xca\xa3\x41\x82\x02\x99\xf8\x7b\xac\x8f\x55\x83\x80\x82\x84\x98\x2d\xe9\xe7\x2e\xe6\x10\x78\xe3\xf1\x4e\x89\xaa\xcb\x82\x80\x91\x34\x0d\x74\x6d\xe7\x32\x48\x18\xd6\xa2\x38\xe5\x12\x9e\x03\x58\xa6\x47\x13\xcc\x17\x99\x03\x78\xb9\xc4\xe9\xe5\x5e\xa5\x2b\x80\x7f\xdd\x7f\x25\x3e\x1d\x9a\x27\xf0\x8e\x96\xdb\xef\xca\x6b\x83\xcb\x6b\x72\xee\x74\xcc\x5b\x03\xa0\xe0\xd5\x76\xf5\xde\x85\x4e\x24\x90\xe7\xad\x1c\xbb\xf9\x23\x75\xa0\xc0\x7b\xcb\x2b\x99\x20\x81\x59\x62\x05\x30\x5f\x95\x7a\xf7\xec\x33\xae\x04\xe1\x91\xf4\x81\xef\x22\xeb\x01\xf3\x3f\x8d\xfd\xd1\x6d\x91\x04\x4c\x8a\xd2\xef\xb0\xfd\x1a\x07\x38\xb9\x45\xfe\xa5\x82\xe6\x5f\x02\x17\xf7\x95\xe9\xb6\x47\x1d\x85\x15\x20\xb8\xc0\x0a\x5f\x4e\x4f\x12\x2b\xe0\xa9\xca\x13\x49\xde\x5d\x42\x80\xe6\x5a\x32\xb7\x2e\xfe\xae\x00\xfc\xf9\x19\x9a\x2c\x3f\xba\x01\xae\x6b\x9c\xd8\xf7\xf1\xe6\x55\xc0\xb9\xdf\xa3\x42\x1e\x7b\xcf\x91\x29\x23\x43\x2e\x1c\xa4\x79\x21\x05\xc8\xf9\x4e\xba\xc0\x6e\xf9\xd4\x34\xa6\xcd\xf2\xf2\xd4\x7c\xf0\x4a\x10\xb4\xd7\xad\xdb\xb4\x86\x63\x25\x48\x9a\xdd\x73\x3a\xe8\x3f\x47\x60\xdf\x0b\x95\x0f\x67\x3d\x6f\x00\xce\x18\x73\xb5\xeb\x8d\x31\x00\xde\x8a\x90\x8b\x24\xbb\x1b\x52\xa1\x34\x50\x4c\xd9\xa9\x48\x10\x90\x91\xe9\x91\x57\x5e\x8d\x11\x60\xb5\x6f\xe4\xdf\x6d\x32\xbd\x04\xf6\x6d\x7e\x20\x25\xac\xa2\x08\x14\x7c\x2a\xf7\xfd\xbd\xbf\x9e\x1a\xe6\x75\x97\xd2\x5c\xfc\x5a\x09\x3c\x3f\xfd\x66\xb0\xd8\x79\x89\xc0\xb1\x94\x55\x53\x65\xcf\xe9\x01\xd9\xfe\x7d\xe1\x7f\x9e\xc0\xfa\xb3\x99\x47\x75\xca\xa5\x81\x02\xdb\xe6\xd8\x4c\x91\x17\x43\x04\xe2\xc9\x6d\x45\x72\x69\xbb\x01\xbf\xaa\xbf\xfc\x90\x6a\x5b\x04\x68\xc5\x43\x77\x72\x28\x72\x3f\xe0\x96\x8e\xcd\x5f\xa2\x5e\x27\x03\x5a\x56\x5c\x7a\x90\xbb\xc6\x0a\xf0\xd0\xce\xf2\x0f\x2c\x0b\xf1\x64\xd4\x48\x0a\xf9\x99\xfe\xa0\x9c\x4c\x19\xa5\x65\x5d\x92\x9b\x75\x38\x49\x85\x38\x07\x8e\x83\x5b\xdf\xed\xa1\xc2\xe5\xbb\x0e\x77\xfa\x05\x77\x50\x21\x4a\xe2\xac\x76\x34\xad\x32\x15\x9a\x19\xb6\xca\x0f\xa6\xa8\x92\xf0\x8a\x66\x6e\x09\x97\x91\x31\x60\x1b\xe3\xb6\x85\x8a\x33\x6b\x00\xd9\x24\xb8\x7f\x1d\x72\xa6\x05\xfc\xf2\x8c\xf1\xb0\x91\x57\x3e\xe0\xbb\x57\xa3\x3e\x7d\x64\x9b\x95\xb0\x3f\x99\x7f\x6a\xa7\x98\x3d\x15\x82\xeb\x2c\xcd\xed\x3c\x14\x00\x53\x94\x4c\xed\x4b\xc3\x84\x01\x2f\x3e\x96\x2f\x61\x9e\x63\x03\x54\x54\xe7\x30\xd4\x09\xd1\x03\xb4\x66\xf3\x16\xb2\xfa\x5c\x02\x48\x3b\x21\x7f\xb5\xbb\x2f\x88\x4c\x29\x90\x38\x3a\x56\x65\x58\x40\xc2\xb3\xaf\x34\xdb\xf4\x6a\x3a\x08\x74\x88\xa1\x55\xfc\x9e\x37\x41\x60\xcf\xce\xf2\xf2\xde\xcf\xd9\x80\x3d\xb9\x03\x47\xe4\xbe\x50\x63\x9f\xaa\x84\xe5\x42\xd8\x29\xc0\xa8\xf3\x56\x07\x23\x46\xad\x01\xe7\xf8\x1c\x82\xdc\xfd\x4f\x51\x21\xd1\xf5\x65\x91\xfb\x2a\x2b\xc0\xe1\xe8\xeb\x9b\xf9\x6f\xf0\x02\x8e\x64\x9a\xc6\xdc\x61\x19\x26\xb0\xea\xa3\xca\xf9\x01\xc5\xfd\x40\x41\xda\x9b\xc4\xac\x87\x01\xb3\x04\x05\x19\x5e\x77\x52\x1e\x38\xee\x01\x24\x64\x36\xcd\x86\xdf\x76\x06\x4a\x59\x97\xf5\xc5\x84\xe6\xe2\x02\x81\x1b\x0b\xf8\xfc\xcf\xb1\xd4\x03\xd6\x7d\x51\x58\xab\xb8\xbc\x75\x6b\xa1\x71\xd9\xd9\x7b\xdf\x1b\x70\xfe\x53\xaa\xf8\xb3\x9b\xbb\x00\x93\x47\x9e\x3f\xd4\x4f\xa6\x05\xbc\x92\x5e\x39\xe6\x91\xb2\x99\x0a\xc2\x0c\x41\x4c\x49\xa6\xf7\xa8\x90\x7b\xf0\x73\x9b\xf0\xd1\x25\x02\x65\xce\x98\x22\xe9\xcf\x2a\x40\x0e\x63\x1b\x8b\x63\x29\x35\x80\x7e\xcd\xa4\x55\x5b\x93\x9e\x01\xd2\x7c\xb3\xb2\xe8\xfd\xbd\x83\x0a\x3a\xdb\xaf\x1f\x89\xf1\x72\xa0\x42\x5d\xc0\x4c\x9c\x01\x0e\x90\x30\xf6\xec\x1e\xab\x42\x3a\x24\xf0\xd5\xad\x14\x2e\xae\xd4\x32\x2a\x9c\x57\x7f\xf6\x79\x2b\x79\x27\xa0\xcb\x91\x2b\x0e\x3c\x39\xdc\x80\x65\xb4\x43\xc9\xcc\x37\xe5\x00\xdb\x3d\xcd\x0e\xe8\x1c\xa1\x01\xbc\x39\xe6\x79\xe6\xe6\x05\x76\xc0\xd6\xeb\x66\xaa\xae\x6a\x40\x85\xb3\x35\xe6\xc7\x7e\x1b\xbd\x25\x61\xca\x5f\x3d\xe6\x7c\x27\x16\x40\xbe\xd5\xc1\x7a\xac\x5b\xe4\x57\x42\x9d\xa7\x59\x74\xec\x6e\x8d\x95\x10\xf3\xcc\x62\xe0\xf1\xfd\x41\x02\x67\x97\x9a\xcc\x92\x1e\x9b\x01\x7e\x7f\x38\x25\x98\xf7\x3c\x1f\x50\x55\xf9\x4a\x5b\x86\xb0\x02\xa0\x34\x1d\x57\xa7\xdb\xd8\x00\x09\xd7\xe9\x7d\x94\x86\x70\x7b\xa0\x20\x28\x2a\xf0\xa6\x8d\x3f\x0d\xa0\x4a\xf0\x7a\xa3\x3b\x9d\xa1\x64\x64\x0c\xae\x97\xe0\x1b\x88\x03\x74\xea\xec\x55\xff\xbf\xb8\x6b\x75\xf0\xcb\xbc\x9c\x38\x15\x52\xea\x5c\xc4\x07\x9d\xd7\x53\xc1\x33\x93\x56\x4b\xea\x31\x13\xa0\x95\x41\xc4\xa7\x39\x29\x0f\x02\xb7\x7e\x0e\x53\x1a\x3a\xed\x05\x14\xbc\x33\x68\xfb\xaa\x90\x24\x47\x85\xf9\x08\xe7\x6b\xb1\xdf\xad\x00\x77\x3c\x57\xff\x59\x72\x56\x04\x90\x47\xb3\x56\x42\x5a\x5f\x1c\x90\x8e\xd4\x5f\xff\xe2\x77\x0a\xe0\x1b\xf1\x18\x33\x53\xb1\xb3\x54\x68\xe9\x93\x2b\x88\x98\xb5\xa0\x82\xc7\xc3\x81\x07\xc5\x5a\xec\x54\x20\xd2\xcd\xb4\x5d\xef\xce\x13\x18\xe9\x6d\xcc\xd3\xb0\x39\x1e\xf0\xb3\xf4\x67\xbe\xbf\x4f\x4a\x01\x6d\x1e\x9a\xef\xfc\x95\xa0\x0b\x38\x1a\x11\x73\xdb\x7b\x40\x81\x0a\xb6\x4a\xe2\x76\x26\x15\xfd\x24\x0c\x38\x17\xb0\xf0\x60\xfd\x3e\x40\x2e\x73\xb6\x5b\xd7\x63\xc7\x08\xe4\xd6\x3c\x9e\xd4\xc8\x52\x09\xf8\x94\x23\xc6\x94\x7d\x19\x3c\xe9\x0d\xf9\xf1\xea\xe5\x64\x1c\x50\x5f\x98\x73\xfe\x99\x05\xe8\xc9\x2a\x5c\xb6\x7e\x79\xb4\x46\x97\xdf\x49\x89\xcd\x6b\x25\xd8\x5d\x67\x49\xb8\x91\xf2\x00\x30\x28\x30\xc9\xe4\xca\x7b\x6e\x40\xfd\x30\xf3\xaa\xc9\x3d\x5b\xa9\x20\x99\x2c\x6b\xb1\x57\x81\x07\x30\x9d\x65\x89\x33\xc1\xfc\x36\xe0\x53\xa5\x2f\xd7\x58\x9b\x6f\x03\x7e\x49\x61\xd9\xa6\x29\xbb\x07\x90\x45\xa7\x8d\xef\xe6\xd4\x06\x40\x2f\x73\x75\x3a\xcd\x23\xf6\x54\x18\xec\x4b\x39\x72\x44\x9e\x13\x90\x56\xa8\xaf\xf2\x7e\xf6\x1d\x32\xb6\x3e\xe0\xe1\xee\x3f\xf8\x04\x30\x7e\x68\xa1\x47\xc8\xb2\x86\x8c\x61\xbc\x71\x24\x66\xff\x27\x80\x51\x2e\x5b\x5f\x1e\xbc\xce\x08\xc8\x3d\xbc\x6e\xc8\x31\x7a\x33\x15\x9e\x05\xff\xe8\xbc\xcc\x93\x48\xa6\x94\xeb\x3b\xc5\x74\x7f\x25\xa8\xaf\x04\xf9\x9a\x1d\xbb\xef\xcd\x20\x41\xc1\xdd\xb7\x37\xfb\x3e\xe8\xec\x05\x0a\x1e\x5f\x91\x66\xb7\x59\xbe\x3a\xfc\x87\xb1\x47\xfb\xe6\x69\x04\x17\xa8\x60\xa2\x11\xe0\xdb\x23\xf8\x96\x0a\xd3\x43\x11\x79\x59\x33\xbb\x81\x82\xd1\xe0\xfb\x0c\xc7\x8d\xbe\x12\x14\x7c\x2c\x5c\x58\x14\xe6\xfb\x4e\xc1\x7c\x9f\xf5\x3a\x7d\xfd\xb1\xff\x6e\x91\x63\x31\xdb\x6c\xaa\x6c\x3b\xac\x80\x35\xc2\x2f\x32\x9e\xd6\x22\x81\x8f\x06\x94\x48\x1a\xce\x9c\x80\x62\x12\x09\x7d\x85\x95\x1f\x09\x14\xb0\x4f\x3d\x6c\x98\xad\x00\x78\xc0\x4b\xb2\x22\x40\x8f\x07\xf0\x15\x8f\xaa\xee\xea\x40\x17\x2a\x8c\x67\x73\xf9\xed\x2d\x47\x02\x5b\x4f\x5a\x96\x5a\xed\xf7\x02\x3c\xfd\xe3\x18\xa3\x91\x7a\x1e\x20\xf3\x4c\x13\xfb\x57\x5f\x73\xc0\x9b\x33\xfa\x17\x0e\xf3\x7f\x22\x28\x50\x2d\xdc\x13\xf8\x78\xbf\x28\x50\x10\x57\xd9\xa6\x59\x99\xba\x13\x30\x7e\x63\xba\x23\xd7\x4b\x59\x2a\x64\x9e\xe0\x1c\x4d\xcc\x56\xa3\xc2\x56\x46\xe6\x68\xd7\x92\x42\x02\xdb\xab\x1b\xc3\x7c\x72\x8e\x03\xd6\x5f\x13\x7d\x34\x32\xc6\x07\x38\xe3\x75\x99\xc1\xb2\x9c\x11\x70\x5c\x35\xeb\xbb\x65\xee\x08\x81\xe7\x27\xcb\xae\xd3\x16\x2b\x00\x05\xd0\x1c\xd8\xfa\xa7\x7c\x98\x40\x41\xd1\xc6\xd1\x7e\xfe\x62\xc0\x4f\x8c\xd5\x7b\x0d\xb5\xd6\x01\xce\xe9\xa8\xee\xda\x12\xba\x95\x0a\x66\x0c\xb6\xfe\xa0\x96\x0d\xb8\xdd\xc1\x59\x73\xe6\xf1\x5d\xc0\x80\xcb\x73\x3d\x3b\xdc\xef\x02\x5e\xbd\x62\x75\xe3\x87\x6d\x2f\x81\x12\x35\x61\x26\xd1\x2c\x9b\x80\x02\x83\xd2\xb9\x5f\x1c\x3f\x9b\x00\xe3\xf9\xef\x0e\x2b\x75\x55\x00\x8e\x65\x7a\xea\x8b\xac\x0a\x01\x94\x33\x9c\x89\xea\xf9\x11\x07\x78\xe7\x7e\xfb\xde\x7e\xf9\x30\xaa\x22\x62\x7b\xec\xb3\x20\x5d\x08\x60\xb4\x46\xc1\xb3\x8f\xf6\xbd\x24\x04\xfb\x34\x33\x92\xc2\x09\xa0\x80\xd7\xac\xfd\xf1\x1f\x62\x13\x81\x34\xe4\x03\x46\x59\x1b\x0d\x01\x9d\x36\x55\xaa\x08\xb0\x7f\x24\xf0\x0e\x67\x9e\xc1\x03\x85\x2c\x32\x16\x68\x6c\xbd\xb6\x78\xfc\x30\xe0\x98\x74\xef\x58\x64\x97\x2a\x20\xb3\xd2\xf6\xbe\x97\x35\xd5\x80\xa9\x19\xe6\xfb\x52\xc3\x8a\x01\x47\x13\xeb\x39\x37\xf8\x54\x03\x3a\xed\xb5\xac\xfa\x51\x5d\x03\x48\x38\x0c\xea\x0b\x8b\x87\x01\x2a\x9c\x53\x55\x91\x88\x0b\x03\xb4\x6b\xa4\xdd\x90\xa5\xf6\x10\xf0\x60\xdc\xfc\x3b\xfd\x84\x43\x80\x77\xea\xce\x8e\xb1\x6e\xe1\x01\x24\x87\x1b\x0c\x65\x96\x46\x50\xc1\x34\xde\x9e\xfc\xf6\x9b\x3f\x20\xdb\xcb\x59\xe3\x51\x57\x25\x40\xc6\x45\xa6\x35\xb1\x0a\xb3\x04\x7a\x7d\xb1\x11\x8e\x5e\xc5\x0b\x14\xb0\x6b\xef\x23\xbd\x7f\xfe\x95\xa0\xc0\x78\xab\xf8\x6b\xf5\x20\x63\xc0\x6f\x67\x7e\x1c\xad\x3a\x57\x09\x58\x88\xaf\x73\xad\xed\x2b\x01\x67\xff\xde\xf9\x58\xb9\x5c\x4c\x0d\xee\x7f\xda\xe0\x6a\x06\x78\x21\xe4\xa8\xf9\x4d\x13\x09\x2a\x18\xb3\xef\x68\x3c\xb3\xa3\x9a\xa0\xc0\x83\x2d\xbc\x27\xad\xfb\x33\x81\x09\x52\x9e\xf1\xca\xde\x34\x80\x55\xbc\xc5\x0c\x82\x1b\xf4\xa9\xf0\xe6\x86\x43\x81\xd6\xad\x0c\x02\xd9\x39\x9f\x06\xc5\xa7\x6a\x02\x9e\x97\xf3\x39\x58\x05\x5c\x80\x3e\x87\xbf\xd5\x9f\xbd\x6b\x48\x85\xd4\x57\xd7\xff\x08\x32\x6c\x05\x64\x7d\x26\x7b\xbc\x25\x7f\x9a\x40\x1d\x7d\x43\x1f\x8b\x23\x4a\x40\xc1\xf0\x83\xfc\x6b\xbe\xca\x6b\xa8\x10\xe2\x15\x93\x2f\x75\x8d\x01\x70\x50\x70\xae\x98\xb9\x84\x8b\x0a\x89\x84\x68\x8a\x69\xc5\x12\x81\x2f\x0f\xaf\x7a\xf9\xa5\xb1\x8f\x84\x0e\x83\xca\xb2\x7f\x2b\x8d\x80\x82\xff\x1e\xa1\x86\xef\xfe\xed\xdf\x07\x52\x00\x79\x72\xce\xb5\xcb\x9c\x3f\x05\xa8\xfa\xab\x41\xe8\x6c\x95\x15\xe0\xec\x93\x2b\xce\x17\x1d\x4e\x01\x1e\x54\xd9\x97\xe4\xf7\xc5\x06\x50\xc8\x20\x66\x6f\x6f\x70\x13\x81\x74\x5c\x7e\xa5\x4b\x0e\x6c\x80\x56\xa3\x3e\xed\x35\xab\x5d\xa9\x70\x41\x7d\x32\xa0\x74\xba\x95\x40\xf5\xb2\xbf\xd7\x19\x3f\xc8\x01\x86\x7e\x61\x7b\xce\x14\x27\x00\x28\x1c\xbc\x9b\xdb\x4b\x6b\x15\xe0\x23\xf6\x83\xf9\x72\x8e\xbb\xa8\xe0\x73\x5d\xaf\x4a\xdf\x62\x94\x40\x83\x1f\x85\x2f\xcd\x04\x69\x01\x43\xd7\xf1\x70\x6c\xb4\xda\x42\x05\xf7\x1b\x92\xda\xa7\x2a\x14\x01\xcf\xbc\xd8\xb5\xde\x69\xfd\x7d\x02\xfd\x0f\x0a\xf9\x44\x9f\x8d\x05\x14\x72\xb8\xd4\xff\x0f\x56\xf3\x0a\x1b\xb7\xcb\xc8\x51\xe1\xfc\xd0\xc2\xaa\x5f\x8c\x35\x80\x6d\x4f\xb9\x3f\xe7\x0a\x0e\x01\xb2\xa6\x79\x6b\xff\x03\x43\xe4\xe7\xb1\x9f\xcb\xa3\x9d\x63\x7f\x41\x58\xea\x31\x20\x5b\xf6\x51\xbf\x8d\xcb\xb8\x68\xda\xc9\xfe\xaf\x18\xd0\x07\x7d\x3c\xe2\xcb\xbb\x12\xdc\x23\x39\x07\xe3\x63\x63\xa8\xf0\x26\xaa\x3d\x36\x66\x5d\x1c\x15\xee\xdf\xf9\x68\x75\x65\x74\x35\x20\xf9\x57\xb4\x7a\xa9\x85\x10\xe0\xcf\xbf\x1a\x11\x19\x8d\x7f\x09\xe4\x2b\xba\xf8\xdb\xca\x7c\x3d\x50\x90\x6a\xf3\xfc\x96\xee\xd8\x14\x81\x4b\x2f\xd6\x86\x8a\x64\xf2\x01\x1a\x8d\xac\x69\x3c\xda\x1c\x0b\x58\x5e\x12\x96\x1a\x9d\x7c\x0a\x50\x53\xf0\xda\xe6\x3f\x23\xd6\x80\xbd\x73\xce\x6b\x47\xf7\x98\x02\x96\xc4\x9c\xe2\xc8\x1c\x3c\x48\x35\x72\x5c\x4c\xf0\xd5\x71\xbf\x08\xa8\x63\x2c\xbb\xf8\x79\xdd\x65\xaa\x92\x18\xc9\x5f\xe4\x64\xf4\x81\x84\x8e\xaa\x99\xa5\x3a\x12\xab\x00\x0d\x79\xe2\x6d\xd6\x70\x19\xac\x84\x8b\x7c\x1d\x33\xe9\xcb\xbb\xba\xff\x3f\x3a\x3f\xca\xeb\xc8\x5a\xf0\x03\x0a\xca\xe8\x1c\xeb\x91\xae\x01\x9c\x76\x64\xe2\x91\x7c\x3f\x00\xc8\x6a\x6d\xef\x6d\x2b\xdf\x0f\xa8\xf5\x49\x56\x62\xc6\xa7\x0a\x70\xb6\xd1\xe0\xc2\x26\x39\x3b\x40\x49\x15\x51\x97\xc7\xa2\x62\x80\xca\x17\x77\x89\x99\x8f\xdb\x01\x5e\x7f\xad\xd9\x34\xe0\xb3\x13\xf0\x37\xb3\x9e\x48\xcc\x68\x08\xe0\x53\xcb\x97\x8f\xa2\x97\xf1\x4e\xd9\x7a\xe7\x57\x52\x28\x60\x45\x6e\xf4\xe4\x3e\xab\x47\x64\xf4\xb9\xb3\x78\xf5\xc8\x78\x22\x60\xb9\xf3\x81\xb7\x3f\x02\x73\xc9\xf8\x73\xd7\xce\xdd\x3c\xab\x2b\xc9\x78\x62\xbf\x11\xd9\x78\x79\x34\x2f\xf4\x0b\x37\x46\x6b\x03\x4e\x66\x8d\x8f\x6d\x96\xde\x4d\x05\x61\xf2\x5e\x19\x73\x8d\x02\x02\x85\xc2\x05\x02\x5f\xf2\x2e\x11\xd8\x27\x6e\xdc\x9e\x62\xa2\x08\x78\xf2\xec\xe6\x8c\xef\x8f\xcc\x00\xf9\x0f\xed\x98\x08\x9a\x33\x04\x14\x0f\x67\x0e\x9f\xeb\xae\x04\x74\xdb\xb4\xef\x84\xcf\x50\x16\x19\xed\x64\x2b\x5b\x1e\xf5\x54\x02\xfe\x10\x7c\x71\x5e\xd3\x6c\x88\x40\x7b\x99\xab\x45\x1a\xbe\x5b\x01\x9f\x18\x65\x34\x84\xa8\xb2\x01\xfa\xbe\xd9\x9b\x1e\x6d\x1e\x44\x85\x21\x86\xae\x16\x6f\xe6\x48\xc0\x3b\x95\xed\xfc\x91\x69\x4e\x80\x1c\xcc\x9c\x39\x86\xde\x06\x80\x52\xfd\x3a\x7f\x8f\xdc\x3e\x07\xd8\xf0\xe6\x5e\xe1\x06\x1f\x5d\xc0\xdf\x5e\x34\x3a\xec\x59\xdf\x09\x8c\x5e\x0c\x7d\xcb\xe2\xa3\x02\x14\xd8\x8d\xc5\x0a\x5f\xe8\xcd\x22\x51\x10\xb5\xde\xb8\xa0\xdf\x42\x09\x28\x20\x06\x0a\x9c\x3c\x2e\xa7\x91\xb1\xf1\x93\x5c\x6b\x79\xda\x2a\xc0\xa0\x57\xe7\xd3\xe4\x0e\xef\xa3\x42\x97\x6c\xbf\xd4\x14\xdf\x3c\x81\x51\xac\xd2\x1b\x42\xf9\x23\xc8\xe8\x14\x78\xa0\x4b\x7a\x49\x17\x28\x78\xce\x90\xd1\x3d\xba\xed\x36\x81\xf7\xe6\x92\x4a\x6a\x86\x96\x08\x8c\xac\x5c\x73\x33\x38\x9d\x1d\xd0\x64\xa6\xf7\x5b\xb1\x85\x29\x15\xb4\xe4\x74\x24\x32\x1e\x88\x01\x96\xff\x1a\xcf\x4a\xb1\xda\x07\x58\x6e\x3a\x71\x4c\x6f\xd7\x2a\xc0\x13\xb7\x62\x6f\xb3\xb7\x3c\xa2\x82\xc8\xad\xd1\x6d\x36\x21\x77\x00\x79\xee\x11\xde\x2d\x01\x9c\x80\x20\x37\xbf\x37\x2c\xde\x9d\x0a\x0c\x3b\x3d\x77\x9d\x70\xca\x5a\xde\x9a\x7c\xaa\x97\x36\x43\x02\x8d\x2c\x53\x3f\x08\xf7\x6e\x04\xdc\xba\x7d\xc9\x65\xae\x6f\x9a\xc0\x4f\xc1\x41\xfc\xdc\x9c\xa2\x80\x63\x3f\x2f\x1e\x7d\xf0\xed\x12\xa0\xfc\x3a\x06\x49\xd6\x3d\xd2\x54\x18\xd4\x3c\x21\x55\xc2\xf7\x81\x40\xe5\x99\xa9\x80\x93\x5d\xac\x80\x7c\x8f\xe3\x37\x5b\xdf\xf5\x05\x34\xae\x71\x4e\x75\xec\xf1\x05\xfc\x59\x26\xe9\xaa\xd6\x17\x08\xc8\xf6\x63\x7c\x96\xc5\xc0\x10\x70\xf0\xea\x6d\x9b\xb7\x3a\x47\x00\xd5\x5f\xcb\xf2\xec\xab\xf6\x06\x9c\xf8\xbd\xc1\x7b\x7e\xf9\xbe\xca\x1e\x9a\x3b\xc7\xd8\x6a\x02\x32\xb6\x3a\xbf\xcb\x17\xd0\x06\xbc\x17\xec\xd8\xd9\x6c\xff\x87\x40\x8f\x87\xe2\xc2\x75\x39\x48\xe0\xe9\xe8\x0e\xbd\x33\xf5\x2c\x40\xc1\xbc\xab\x4e\xef\xdf\xae\x4e\x02\xe5\x2e\xfd\x12\x4e\x0b\x9d\x21\xf0\xf6\x48\x96\xb5\x1a\x7d\x02\xe0\x1a\xd6\x1a\xc9\x46\x95\xcf\x80\x87\x1b\x4f\x25\xdf\x4c\xf9\xb4\x7c\x69\xf3\x0a\x9c\xa8\xac\x02\xbc\xf2\xdd\x95\xdd\x4b\x49\x6c\xf9\x35\xfd\x73\x3b\xec\xd3\x6f\x82\x82\xe2\x7b\xa7\xfa\x79\x55\x3b\x48\x78\xe8\xe6\x2b\x77\x31\xe9\x3d\x80\xe4\x9b\x0d\xae\xe5\xfa\x02\x80\x4f\x47\x7e\x75\x33\x3e\xad\x01\x74\x2c\xbe\x21\xdf\xb1\x0c\xcf\xd4\xf3\x45\xe0\x5a\x4d\x35\x42\x7f\xa9\x9a\xf1\x73\x41\x80\xcd\xae\x5d\x69\x46\x4c\x56\x64\xf4\x90\x95\x4e\xfe\x39\x40\x06\xdc\x70\xe2\x89\x78\x60\x6a\x17\xe0\x5d\x93\xc8\xe0\xce\xe5\x4b\xa4\xdc\x69\x3b\x59\x76\xdf\x20\x32\xc6\x1b\x0c\xf7\x46\xbc\xa9\x07\x1c\x4b\x2e\x2a\x9a\x3b\x52\x04\x08\x8c\xde\x8a\x6b\x03\x4a\x01\x93\x9c\xc4\x1c\xaf\xe5\x4b\x00\x6a\x66\x4f\x6e\x8e\xe1\x57\x04\x3c\xa7\xbf\x54\xd5\xb1\xe8\x4c\x05\xef\x27\x0e\x4b\xa6\xcb\x0b\xed\x3f\xe8\x55\xaa\xd8\xec\xac\x6f\x05\x14\xba\x86\x99\x61\xaa\x31\x80\xc5\x2a\x7f\xea\x3a\x5b\x24\x00\xf1\xe1\xfb\x0f\x0b\xe3\x74\x80\xab\x9d\x4b\x0b\xde\xee\x14\x01\xec\x9d\x4a\x6b\x68\xf6\xe5\xa4\x82\x78\x89\xbf\xdf\x79\x55\x19\x82\x82\xfb\x91\xc2\xb5\xad\x17\x13\x00\x55\xee\x2a\xd7\xb7\x2c\xc3\x38\xb8\xc0\xa6\x6d\x19\xfb\xe7\xe3\xe6\xd9\x5f\x68\x00\x46\x7c\x0e\x61\xa3\x6b\x7b\x46\xa6\x94\xff\x70\xf7\x74\xf7\x0d\x42\xe3\x23\x81\x3a\xb7\x05\x57\xe7\xaa\xf4\x13\xf8\x9e\xa5\x82\xe1\x39\x8b\x3c\x50\x70\x21\xf6\xd9\x45\x19\x73\x05\x40\xd3\xb7\xe9\xd2\x6a\x8a\x92\x80\xdb\xba\x8b\xd9\xfd\x3e\x1a\x03\x7e\xa6\xe5\xd9\x75\x5b\x41\x9e\x0a\x13\xed\x52\xdd\xc5\x6c\xab\x01\x1f\x7d\x3e\xc7\x5c\xbb\xa0\x0a\x88\x0c\x1f\x26\xaf\xa6\xcd\x12\xc8\xa9\xbb\xd8\xeb\x40\x22\x00\xbb\xc6\x78\x14\x7d\x92\xc7\x08\xb4\x4b\xe0\x74\xaa\xf3\x5c\x24\xd0\xfb\x9d\x56\xaf\x8c\xd8\x14\x81\xb5\x61\xf7\x59\xce\x9c\xae\x02\x8c\x7b\x41\x1a\x9f\xd5\x63\x04\x94\x70\xff\xd8\xb3\xaf\x7a\x9c\xa0\x80\xb6\x6e\x4d\xe1\x9e\x13\xca\x40\xc1\x8e\xe3\xd5\xb2\x5d\xcb\x6f\x9b\x46\x41\xbd\xb0\x36\xd6\x40\x2a\xa4\x07\x78\x78\x8e\xbc\x7d\xb0\x12\x36\x15\x16\x1b\x6f\x64\xff\x4b\x50\xa0\xf2\x3c\xf2\x54\x74\xb2\x0c\x60\xc3\x71\x1e\xa7\x4d\x2c\x3c\x54\x00\xd7\xfa\xdb\xe9\x8b\x74\x54\xd8\x5a\xa2\x69\x1c\xc4\xea\x46\x85\x0f\x27\x5f\x66\xa4\x5d\x7f\x04\xc8\x10\xc1\x0b\x9a\x43\x0c\x80\xd3\x3b\xac\xa3\x6f\x0c\x65\x02\x8a\x3a\x3f\x9f\xbd\x16\x51\x06\x98\x51\xa9\xbb\xde\x34\x3b\x07\x50\xd4\x8a\x49\xfc\x78\xc9\x2f\x02\x55\x04\x09\x93\xa4\x38\x67\xc0\x72\xce\x2d\x1e\x36\x3a\x79\x80\x26\x6f\x78\x6c\xfe\xc1\xe8\xf1\x65\x87\x01\xa3\x56\x02\x85\x5d\x4f\x6b\x9a\xd3\xd6\x00\x05\xe3\xe4\x87\xa6\x93\x6f\xbe\x13\x38\x18\x1c\xcd\xf6\xc5\x70\x23\xa0\x55\xef\x49\x9f\x0b\xc6\x35\x80\x69\x26\x85\x9d\xe6\x69\x8d\x54\xc5\x8b\xb9\xef\xeb\xda\x0a\x63\xc0\xc9\xf5\xbb\x7b\xdc\x3d\x77\x01\x06\xa8\xa8\x6e\x71\x38\x5d\x43\x85\xf9\x63\x17\x9f\xba\x6a\x19\x52\xe1\x16\x97\xc2\xe7\x68\xed\x2c\x2a\x8c\x5a\xce\x4b\x29\x97\x64\x02\x96\xde\x5e\x53\xf2\xaf\x3c\x38\x66\xe8\xa1\x5f\xdb\x4e\x60\x50\x78\xb3\x61\x3b\x67\x29\xe0\x54\xaf\x54\x9a\x51\x6a\x31\x60\xd6\xd5\xa2\xfb\xbc\xdc\xfc\x80\x9f\xc2\x76\x96\xae\xa7\x91\x05\x1c\x93\xd0\xac\x91\x94\x31\x02\xbc\xca\x3d\x75\xcd\xe8\x46\x09\xa0\xdb\x61\xef\x55\x61\x32\xf9\x80\xd6\x7d\xd7\xb4\xe2\x86\xb5\x01\x5d\xa5\x1e\x7d\x6f\x72\x7f\x48\x05\xbf\xf6\x2d\xc1\x8f\x66\xaf\x01\x2e\xdc\x11\x9a\xe1\x7e\x50\x05\xc8\x25\x5f\xe0\xff\xf3\xbb\x2c\xa0\x5e\x59\xf2\xf7\xa7\xed\xb3\x04\xba\xd2\x3d\x3d\xcc\xf5\x42\x0d\x28\xe0\x72\xec\xcc\xbb\xb7\xa9\x9d\x40\x97\x23\x2d\x8e\x8a\x46\xaf\x01\x0d\xa2\x7b\x88\x11\x99\x68\x40\xb1\x35\xbd\xb9\x43\xc2\x25\x64\x14\xe4\x31\xdd\x9e\xd0\x52\x0d\xc8\x28\xd2\xed\x7f\xa9\x48\x17\xf0\xd1\x74\x4b\xff\x89\xd1\x52\x40\xd7\x46\xb6\x4f\x78\xa8\x06\x30\x25\xde\x70\xf3\xfc\xff\xc1\xcd\x97\x0c\x32\xe1\x55\xc9\x80\x87\x0d\x6e\x2d\xf6\x47\x27\x03\xf6\x2f\xdd\x7f\xf4\x71\x43\x07\x19\xf3\xfa\x36\x55\x0f\x78\xa6\x01\x86\xed\x0c\x7e\xaa\x90\x99\x0c\x48\xb3\xee\x6d\xbb\x48\x5b\x2a\x20\xd1\x44\x6e\x78\x22\xfd\x83\x40\x2b\x9e\x1f\x9d\x7b\x96\xcf\x99\x07\xba\xe6\x19\x43\x23\xc6\xa9\x30\xab\x1f\xa9\x77\x90\xbc\x13\x28\xd8\x12\xba\xf7\xca\x91\xef\x71\x54\x30\xf4\x5e\x5b\x90\x73\x37\x0c\x50\xc0\x6c\x87\xff\xc1\x9f\x4f\x00\x2d\xb6\x1a\xbd\xbe\xb4\x58\x0b\x98\x7b\xdb\xe6\x41\x6e\x5f\x0b\x09\x7b\x2a\xc6\xe7\xd6\x7d\xcd\x07\xb4\xeb\xda\xd8\x11\x7c\x27\x93\x8c\x9b\xfd\x6f\x57\xd0\x19\x3e\x04\x2c\xad\x33\xe1\xbf\x75\xbd\x05\xd0\xda\xaf\x33\x3d\xda\xa7\x0c\xb0\xcd\x95\xab\x4a\x4d\xae\x0a\xf0\x2a\x4f\xe3\xe5\x61\x81\xb7\x80\xe3\x3a\x0a\x6f\x7b\xd6\xbe\x03\xec\xb8\xfb\x3e\xe9\xc2\xdf\x7c\x40\x85\xdc\xc5\xcc\x87\x12\x79\x80\x31\x0d\xbc\xd9\x47\xf8\xf3\x00\x45\x04\x2c\x2c\xc3\x36\x3c\x05\xbc\xd8\xb3\xde\x28\xca\xec\x19\x09\xc5\x3f\x30\xfb\x2c\x7e\xe3\x05\x0a\xb0\xa4\xae\x2c\x38\x78\x07\x15\xe2\x46\x5c\xc2\x9f\xab\x39\x51\x21\xe9\xd2\x13\x91\x2f\xdc\x56\x80\x7b\xc3\xcf\x07\x4f\x4f\xca\x00\x1a\x64\x74\x3e\x6f\xaa\x2b\x01\x94\x0a\x4d\xce\x8b\x5b\x3e\x49\x79\x5f\x0a\x18\x14\x17\x6c\x04\x34\xfa\x66\xfb\xee\x4a\x58\x09\xe0\x42\x13\xcb\xf0\x89\x42\x32\x60\xbb\x94\x19\xc7\x06\x96\x21\x32\x9e\xd7\x10\xac\xa5\xdd\x53\x05\x88\xe5\x4f\x27\x68\x86\xbb\x00\xef\xaf\x7b\x69\x95\x3a\x9e\x0b\x18\xd0\x31\x5d\x37\x27\xd9\x08\xe8\x7c\xec\x42\xdf\x94\xd9\x6b\x40\x6d\x97\xaa\x7e\x9e\xb5\x8d\x80\x5c\xf7\x0e\xdc\x38\xd3\x1c\x01\x68\xf7\xee\x46\x81\x52\x44\x0d\x60\xc1\xd0\x2f\x56\x36\x87\x0c\xc0\x1e\xa3\xe4\xed\x13\x77\x32\x96\xd7\xa0\xd9\x78\x87\x75\x0a\xd5\x88\x9d\x47\x60\xc4\x4a\x83\x13\xf0\x67\xf8\x9f\xb7\x7f\x2a\xa2\x01\x3b\x7c\x37\xa9\xb0\x1e\x7f\x00\x28\xff\x6c\xf0\x40\x4d\xb3\x16\x20\xad\xb0\xaa\x8f\x55\xc7\x01\x2a\x58\x36\xcc\x28\xdd\x0f\x6c\x25\xe1\x87\xa2\x92\x94\x89\x23\x35\x80\x33\xe4\xa2\xab\x43\xb9\x7e\x80\xe6\x87\x75\x2d\x6e\x72\x94\x92\xd1\xed\x42\xe2\xfd\x7f\x23\x36\xcb\x34\xec\xd5\xd0\x01\xec\x79\x72\xf8\xcc\xcd\xbd\x66\x80\x32\x27\xb8\xfa\x16\x42\x02\x61\xde\xe9\x75\xf4\xb6\xd0\x40\xc0\x1f\x39\x0f\x87\x24\xe3\xce\x01\xd6\x05\x0d\xab\xfd\x69\xa0\x05\xe4\x78\xf7\xd6\xeb\xfa\xe6\x09\x82\x82\x72\x8f\xaf\x45\xfa\x5e\xef\x49\xc8\xf5\xc2\xb9\xf0\x1e\x7b\x19\xe0\xdb\xe9\xa7\x7f\x30\x72\x2d\xe0\x0f\x5d\x83\x8a\x44\x1a\x39\xc0\x3d\xe3\x7f\x25\x59\x4e\x09\x50\x61\x60\x74\x9d\x67\xda\xed\x14\x02\x9d\xc7\xd9\xce\x9e\x38\x50\x03\x14\x9c\x49\x92\x68\x68\x67\xe2\xa1\xc2\x77\x4e\x58\x7f\xd2\xa4\x06\x70\xd0\x5f\x50\x7d\xab\x32\x19\xf0\x54\xa8\x17\x58\x2c\x97\x89\xbf\x17\xe9\xfc\x74\xf9\x00\xf7\x98\x72\xd0\xdd\x5f\x4f\x02\x9c\xba\x94\x39\x7b\x6c\xe0\x05\x55\xd9\xe1\x94\x9d\x7d\xaa\xbd\x12\xf0\xe4\x8e\x68\xcb\xcf\x5e\xca\x80\x51\x63\x3d\x6a\xcf\xa5\xc8\x80\x9e\xb7\x48\xb1\x2f\xb4\xe3\x01\x9f\x1f\xe3\x0e\x66\x0f\xc9\x03\x7c\x3e\xef\xe2\xe5\x79\x91\x0c\x68\xa2\x10\x3c\xce\x1e\x18\x0c\x18\xfe\xa0\x47\x60\x5d\x33\x2b\xe0\xe6\x73\x21\xe1\xc2\xea\x9f\x09\x8c\x8e\x2d\x0f\x53\xec\xc9\x03\xcc\x69\x76\xaa\x3e\x14\x9f\x4f\x46\x71\xd9\x55\x93\x47\x93\xf3\xc9\xe8\xf7\xca\x2e\xcb\xd6\x76\x90\x8c\xfb\xfc\x4f\x64\xfe\x1b\x95\xe5\xd8\xbf\x5a\x8c\xb7\x04\x5c\x4b\x3f\xba\xdf\xa0\xf2\x1a\x55\x61\x79\xbc\x76\xce\x98\x59\x16\xd0\x40\xe1\x70\x05\x87\xcd\x67\x02\x31\xac\x9b\xf8\x75\xc4\x10\x70\xda\x66\x78\x8d\x7f\xd9\x2e\x40\x3b\xc1\x6f\xbd\x8d\x85\x02\x80\xa1\x97\x83\x99\x85\x97\x14\x01\xf9\x95\xc2\xbf\xcd\xac\x5e\x20\x50\x65\xaf\xd6\x86\xcf\x29\xe3\x04\x8e\x26\x24\x75\x37\xcf\x7a\x02\xc6\xf7\x97\x6c\x2e\x3f\x94\x42\x0d\xc5\xb2\x31\x7a\xb5\xe7\x04\xce\x29\x5a\x1e\x65\x39\x56\x0d\xb8\x63\xdc\xf1\x8d\xe7\xab\x4e\x02\xb5\xe3\x77\x0b\xa5\xd4\xf1\x00\x5e\xae\xac\xaa\x59\xa7\x67\x04\x78\xc5\x69\x70\xc6\x4f\xbe\x8b\x40\x01\x5f\x5e\x65\xba\xdd\x62\x40\x01\x71\xc4\xf1\xdd\xc1\xf1\x59\x02\xe9\xd7\x4d\xe5\xde\xd3\x16\x01\xbc\x78\xd2\x6c\xf8\x94\xea\xf2\x9e\x5d\xb7\x78\x96\x5b\xa0\x12\xf0\xdd\x84\x86\x84\x48\x72\x06\x60\x67\xf2\xc5\xdf\xff\x46\x74\x4a\x1d\x75\xa7\x2f\x48\x00\xde\xbe\xb4\x3b\x36\x52\xbd\x15\x50\x44\x56\xd6\xff\xff\xe2\xad\xca\x2b\xdb\xa1\x63\x6d\x80\x4c\x42\xb7\xb6\x59\xc5\x0e\x03\x1a\x1a\x38\x73\x74\x3b\x0e\x03\xa6\x49\x7d\xd9\xb0\x9d\xb9\x1a\x90\x6d\xe3\xf8\xe3\xb4\x19\x21\xc0\xb0\xa4\x80\xdd\x03\xf6\xbd\x04\x5e\xd9\xec\xe8\x58\xbf\xe8\x05\x14\x1c\xe5\xfb\x78\xf0\x64\x8c\x24\x60\xff\xe7\xed\xe9\xc9\xb1\xae\x80\x99\xa1\xe7\x46\xf8\xfb\x2e\x02\x8e\x58\x0b\x31\x0e\x05\x4a\x91\xb1\xcb\xfb\xd4\x11\xf6\x54\x1e\xc0\xdc\x43\xe5\x75\x93\x07\x05\xa9\x60\x77\x31\xa2\x2f\x50\x52\x1f\xf0\xa3\xb3\xe5\xb0\xdb\x5f\x02\xd0\xe4\x59\x7b\x19\x3d\x9e\x01\x9c\x50\x93\x6c\x9b\x32\xf8\x48\x60\x30\x9f\x6b\x94\xdc\x9f\x0e\x32\xf2\x33\x97\x6f\xd5\x92\xd6\x27\x63\xdb\xda\xdb\xb6\x4f\x8c\xab\xc9\x58\x93\xf3\xe4\xea\x44\x7f\x00\xa0\xa8\x80\x98\x0e\xdb\x57\x4f\xc0\xdc\x96\xed\x6e\x74\x9e\x1e\x80\x3d\xa4\xf3\x7b\x37\x35\xb0\x00\xbe\x99\x66\x3a\xe6\xc5\x11\x0d\x78\xcf\xc4\xe2\xb6\xb6\x96\x05\x15\x62\x73\x9f\x6c\xa9\x3b\x69\x48\x46\xa5\x6f\x8a\x37\x74\xd7\x58\x03\x56\xa5\x66\x5a\x8b\xd3\x1f\x07\xfc\xb5\x6a\x48\xe5\x01\x79\x3d\x60\xfc\x2f\x43\xf6\xae\x62\x79\x2a\x5c\x2e\xca\x7c\x36\xa3\xf2\x8b\xc0\x33\x5a\x0c\xed\xf2\x73\xb4\x80\xfb\xe5\x13\x04\x3a\xa5\xd7\x02\xe6\x87\xac\x4f\x0e\x6f\x2d\x05\x24\xa5\xae\x97\xf9\xb0\x8c\x99\x0d\x9f\xe6\xfb\x96\x61\xcf\xec\x11\x21\xbe\x94\x46\xc6\x87\x8e\x36\x17\xfe\x95\xc3\xdb\x2b\x0e\x2d\x76\x9e\x03\xbc\x54\xb0\xfd\xd0\x25\xd2\x59\x2a\x4c\xcc\xc8\x27\x3e\x6c\x3f\xb7\x52\x31\xef\x3f\x63\x73\xc1\xd1\x01\xb0\xe3\xd3\x3d\xe4\xa0\xb7\x07\xe4\x95\xb9\x65\xd2\x7f\x7f\x8a\xc0\xd1\xca\x64\x67\xa7\x9f\x19\x80\xbb\xb3\x15\x46\x07\x16\x32\x80\x52\x6c\x52\x4d\x7f\x99\xba\x9d\x00\x2c\x60\xf4\xa9\x74\x2c\x3e\x06\x78\xe5\xf0\x2d\x3e\xce\xfb\xd6\x80\x5c\x57\xcf\xc6\xbd\x6b\xd0\x03\xa4\x8f\x75\xd8\xc4\x0c\xf2\x80\x91\x0f\x13\x69\x6a\x16\x42\xc9\xa8\xa3\xeb\x1a\x5e\xa8\xf8\x8b\xc0\x1b\x73\xb4\xcd\xf4\xe9\x3f\x08\x7c\xd1\x5c\x2d\xc1\xd0\x21\x08\x14\x78\x65\x5c\x58\xc7\xf5\x27\x91\x84\x3f\xfa\xd6\xdf\x96\x6a\x95\x06\x94\x4d\x15\xfd\xf3\x22\xd5\x1a\xd0\x27\x6b\x9f\x73\x90\x76\x31\xe0\x96\x64\xda\x4a\xfb\x90\x0f\x64\x4a\x29\x6c\xdf\xd0\x8b\xf4\x66\x80\xdb\xf5\x9d\x84\x45\xad\xb7\x03\x7e\x4f\xaf\x64\xd3\x54\x66\x07\x64\xe2\xa5\x3b\xf7\x52\x2d\x97\x8c\xb4\x37\x2e\xa8\xf5\x3e\x65\x05\x1c\xd4\xb8\xa9\xaa\xf2\xbb\x00\x30\xd7\x4e\x73\x46\x79\x19\x2e\x6a\x36\x5c\x77\xeb\x0a\x00\xb9\x73\x8e\x31\xfd\xbf\xa3\xb1\x27\xfb\x82\x58\x0a\x01\x63\x45\x2b\xb4\xdc\x44\x99\x00\xaf\xae\xbd\xa0\xe7\x77\x36\x64\x25\x18\xe4\xe8\x5f\xb7\xb1\x97\x07\x5c\xd0\x79\xf9\x42\x31\x73\x15\xa0\xed\xb9\xa8\xb3\xf1\x1b\xfd\xa9\x50\x9e\xf0\xe8\x0b\x7e\x3d\x04\xa8\x63\x68\x1c\x10\xb0\x5e\x03\x30\x4b\xf1\xaf\xa9\x72\x91\x1f\x15\xe6\xa4\x0b\xe5\x9b\x2e\x5d\x03\xec\x6a\xde\x1e\x56\xad\xd5\x49\x42\x53\x5b\xf1\xd0\x70\x56\x17\xa0\x80\x4f\xfe\xf1\x20\x77\x14\x17\xe0\xbb\x18\x4b\xe7\x97\x27\x66\x08\x8c\x37\x6e\xfc\xfc\xe3\xe9\x1b\xc0\xad\xbc\x4e\xd2\xd6\x57\x6d\x01\x6d\xf6\x74\xef\x9c\x1b\x3d\x06\x58\xf8\x22\xbd\x28\x60\xb9\x3c\x68\xed\xe5\xb5\xbb\x5f\x0a\x28\x1a\x61\x5f\x90\xc4\x2f\x06\xe8\xaa\x72\x42\xe9\x27\x83\x32\x15\xd6\x1a\x7d\xcb\x55\x94\x5f\x20\xf0\x54\x9e\xbd\x58\x5c\xf2\x0c\x81\x17\xce\xda\x68\xf2\x67\x46\x03\x05\x1d\xbf\x1b\xf8\x8b\x43\x4e\x03\xd2\xe6\x6f\xd9\xfc\xd4\x08\x00\x8f\x9b\xc9\xb8\x23\x53\x06\xe0\xc4\x94\x2d\xd7\xfa\xc1\x74\x40\x99\x0a\xf7\x86\xcc\xb5\x19\x54\x23\xb5\xad\x26\x2f\x5f\x6e\x3c\x0a\xa8\xbf\xdb\x2f\xff\xf7\x1b\x39\x40\x7e\x2b\xeb\xcb\xdb\xa3\x97\x08\x0a\x7e\xbf\x39\xac\x18\xbe\x85\x06\xd0\xa1\x83\x27\x2f\xa5\xfa\x0d\x19\x79\xae\x8a\xdc\xad\x3c\x56\x07\xe8\xb1\xf8\x82\xf6\xd2\x7c\x11\xe0\x98\xb1\xd6\xc8\xa1\xf6\x77\x80\x53\xbe\x77\x8b\x4d\xdb\x00\xd0\xbe\x37\xbc\x66\x31\x90\x4c\x85\xb1\x0e\x75\x07\xd1\xbb\x4f\x01\x13\x07\xfd\x78\x95\x44\x2f\x01\x76\x5b\x04\xa7\x33\xde\xbe\x00\x28\x24\x76\xfd\xc4\xe8\xb0\x32\x15\x64\xc8\x2e\x37\xa3\x46\x6a\x08\x14\xbe\xaf\xb8\xe7\xf5\x84\x14\xa0\xdf\x9e\x81\x18\xd5\x3f\x1b\xa8\xb0\xb8\x7a\x6f\xd5\x91\x12\x25\xc0\x53\x92\x89\x21\xd6\xbc\x5c\x80\xa7\x47\x9b\x37\x3d\x7c\xc8\x07\x18\x12\x64\x92\xfc\xf6\xfd\x2c\x81\xd7\x94\xbe\x96\xf8\x9f\xff\xbb\x12\x5e\x0b\xce\xd2\x31\x9f\x1a\x24\x70\x4e\x39\xdc\x57\x4a\xfb\x22\xe0\xf3\xad\xf5\xba\x1c\x92\x3f\x08\xac\xfb\x91\x39\xbc\xd6\xdc\x19\x28\x98\x4c\xed\xfd\xbb\x8d\x75\x90\x84\x8c\x22\xd1\x27\xdf\xb6\x12\x80\x6e\xe5\xee\x66\x32\x6a\xd5\x80\x27\x7e\xff\xd9\xf1\x65\xa9\x0a\x90\xd3\xc5\x56\xfb\x5f\xf9\x0f\xe9\x5c\x4d\x1e\x67\x3e\x87\xad\x84\x98\x8f\x89\xc4\xe5\xb7\x04\x15\xdc\x8b\x7d\xba\x04\x62\xc5\x01\x57\x07\x0d\xac\x37\x50\xdf\x01\x58\x69\xcc\x71\x5e\x57\x63\x90\x40\x79\xfb\x1b\x1c\xb1\xbb\x3f\x11\xa8\x7e\xe7\x8f\x03\x4b\x9f\x1a\xe0\xab\xe4\xeb\xb3\x8e\x01\xbe\x64\x74\x8d\x51\x3f\x77\x70\xec\x3d\x09\x2d\x1d\x1c\x84\x8d\x56\x1b\x02\x05\x6d\x1a\x25\x27\x2c\x77\xae\xa3\x42\x7b\x1d\xb9\xba\x6b\xcd\x24\x81\xbb\xa4\xb8\x77\x96\x0b\x68\x01\xba\x5f\x55\x4a\x7a\x12\x90\x00\xf8\x5c\xcd\xd4\x47\x70\x53\x32\xa0\x5f\x50\xa6\xcc\xb5\x5d\xbf\x08\x4c\x94\xbe\xda\xb5\xa7\x05\x00\x0b\x77\x3e\x33\x76\xde\xb1\x0a\x70\x72\xb3\xff\xf7\x4f\xf9\x34\x80\x5b\x52\x5f\x8b\x5f\xb6\x4f\x07\x3c\x38\x70\xf6\x96\x55\x25\x0d\x60\x9d\x45\xec\xaf\x1f\x02\x97\x00\x1d\x22\x6e\x9f\x9f\xb9\x46\x43\x85\xf1\x8e\xaf\x6e\x57\xaf\x36\x13\xe8\xe7\x2e\xd3\xed\x65\x51\x0a\x98\xfc\xf1\xfa\x31\x56\x9a\x9d\x80\x02\x0f\xe5\xf7\x90\x3b\x95\x00\x3b\x3b\xcf\x7b\xff\x39\xba\x83\xaa\x6c\xa3\xb7\xb5\x71\x6b\xca\x06\x14\xf8\x19\x32\x97\xf8\x26\x1b\xb0\xec\xf6\x2e\xb7\xfd\x1f\x9f\x01\xbe\xdf\xb3\x51\x5b\x6f\xb9\x24\x7e\x28\x55\x4d\x5e\xc6\xb4\x77\xe4\xbb\x41\x43\x7b\x40\x26\x56\x32\xcb\xfe\x16\x3b\xc0\x1d\xcd\x6a\x39\x6f\x17\xec\xa9\xe0\x61\x84\x67\x62\x9c\x74\x01\x37\x65\xb9\xed\x9e\xce\x79\x06\xd8\x99\x92\x7c\x82\xfb\xfc\x31\xc0\x9c\xfa\x0f\x56\x9f\xe8\x8f\x92\x29\x25\x23\x3b\xbf\xe3\xee\x01\x71\xc0\xe6\x2a\xb3\x63\x1e\xee\xda\x54\x28\xcd\xba\xd2\xd8\x47\x7a\x0a\x28\xfe\x24\xb9\x8f\xed\x65\x0a\x20\xb7\x19\xb9\xcd\xee\x8f\xce\x4a\x50\xbe\xcc\x23\xfc\x40\xf3\x18\xa0\x59\xcf\xec\xfe\x2d\x75\x52\x80\x0b\xe7\x4c\x94\xb3\x35\x6b\xc8\xe8\xe1\xa9\x61\xff\x78\xb7\x35\xac\x80\xc0\xbf\x26\xb7\xd3\x3d\xf3\x56\x82\x54\x89\x96\xd3\x3f\x7c\xc1\x42\xef\xdd\x22\x76\x80\x11\x6b\x2d\xec\xa6\xca\x6c\x00\x5d\xca\x2d\xf8\x4b\xdb\x9f\x01\x5e\x29\x68\x9d\xf6\xba\x97\x01\x58\xdc\xf9\x91\x59\xd1\xd2\x01\x90\xb3\x61\xb1\x3c\x67\xbb\x0d\x60\xc7\xb0\x5d\xd8\xf8\x5d\x3b\xc0\xfc\xf9\x71\xee\xc9\x42\x37\xc0\xfb\x0f\x5d\x83\x6c\x87\x9f\x00\xf6\x08\x9c\x26\x65\x37\x1f\x00\xe4\x2f\x8c\x28\x67\xdd\x71\x14\xf0\xf9\xf9\x62\x3b\x93\x01\x6b\xc0\x33\x1e\x79\x7b\x15\x5e\x67\x00\x9e\x9b\x9d\x48\x1f\x1e\x30\x05\xcc\xab\x3d\x2d\x76\x75\xbf\x39\xe0\xcf\x8b\x3b\xbd\x33\xf7\x6a\x00\xfa\xb9\x1c\x7b\xe8\xb2\x77\x13\x15\x64\x1b\xd9\x75\xb9\x86\xd7\x52\x30\x5f\xa6\x97\x9e\xb8\x38\x4d\x60\xd7\xc6\xe7\x37\xac\x47\xd6\x00\xaa\x69\x39\xea\xd9\xac\xdb\xb7\x12\x54\x75\x22\xf8\x82\x7e\x0f\x90\xf0\xbe\xac\x4b\x69\x90\xba\x31\xa0\xc7\x65\xa5\x3b\x11\x4e\x22\x54\xb8\xb9\x67\xed\x2e\xbe\x18\x1a\xc0\x21\x4d\x9f\xc7\xf7\x34\x15\x01\xcf\x14\x0a\x64\xc7\xd2\xd0\x01\xee\x15\xac\x95\x30\xef\x8d\x25\x63\xa1\x89\xd7\xdf\x92\x87\x4e\x64\xfc\x31\x69\x49\xa3\xdf\xd6\x05\xc8\xae\x1c\x94\x20\x56\x4c\x02\xe4\xe4\xf0\xde\xd6\xfd\xb7\x12\xf0\xd2\x9e\x13\x2c\x9f\x54\x03\xc8\x28\xca\x6b\xc0\xf9\x66\x4f\x02\x60\x95\x95\xb5\x50\xae\x71\x02\x20\x9b\x88\x02\x5d\x96\x81\x13\x19\x19\x4a\xe3\xcf\xd4\xed\x66\x07\xbc\xac\x6d\x63\x81\x9f\xe7\x09\x0a\xee\xd6\x0e\x8f\x32\xb7\xdd\x27\x23\x9b\x94\xdf\x75\x43\xba\x6f\x04\x1e\xb8\x72\xf5\xcd\xdd\x53\xdf\x00\xc7\xd6\x1a\xca\x14\x3f\x1e\x01\x2c\xfd\xfe\xf2\x5d\x94\x7d\x29\xa0\x73\xf2\x73\x26\x3e\x97\x4a\xc0\xca\x0f\x5b\x55\xad\x82\x2a\x00\x4d\x2f\x2b\xab\xed\x2c\xca\x03\xac\x5e\xe5\x6c\x2d\x3d\x18\x05\x78\x9b\x5b\xfc\xc9\xb6\x43\xe1\x64\xec\x28\xe4\x91\x3b\xdc\x51\x0e\xc8\xa2\xf1\xd8\xfa\x71\x4c\x2a\x20\x6f\xbd\xf6\xfc\xcf\xdc\x2c\x40\x8d\xf0\x3b\x8f\xf2\x76\xc6\x00\x5e\x50\x0d\x1d\xab\x35\x8a\x06\x94\xdd\x6e\x7f\x25\xa5\x26\x88\x8c\x49\x0d\xa9\xef\xf7\xee\x8d\x07\x0c\x6a\x36\x4a\x61\x12\x6b\x02\x3c\x6c\x23\x9f\x9e\xf1\xb0\x9c\x8c\xfa\xc5\x30\x11\x77\xa3\x84\x8c\x5f\x5b\x79\xf5\xf2\x99\xc8\x80\x91\x5b\xc5\x8d\x34\x34\x76\x02\xd2\x8d\xe9\x9d\xff\x16\xd8\x04\x98\xbc\xab\xe1\xe3\xe4\x32\x1e\x9e\xbf\x62\x3e\xbe\x8c\xd7\x9a\x3c\x49\x25\xa2\xa5\x80\x05\xb6\x72\x93\x29\xef\xf3\x01\xad\x8e\x2a\xbb\xfc\x7b\x51\x52\x0a\x4c\x36\xfa\x4e\xc8\x53\xe1\x5a\xae\x12\xd7\x9d\x7e\x79\x40\x26\x61\xdf\x81\x69\x87\x17\x80\xaf\x0e\x35\x9c\xff\x36\x95\x07\xd8\x01\xdf\xe7\x57\xbf\x2c\x01\x9c\xd6\xbf\x4e\x74\xb6\x93\x49\xd8\x22\xb3\x3a\xbd\x5b\xba\x12\xf0\x45\x44\x79\x69\x43\x75\x2a\x60\x0c\x9f\xd7\xb7\x07\x35\x05\x40\x19\x75\x17\xf8\xee\xee\x9b\x08\x00\x94\x78\xf6\xe1\x21\x89\x39\x90\x1a\x5a\x46\x74\x6a\xec\x5e\x80\x3e\xde\x67\x9c\x06\x6b\xf2\x01\xa3\x4a\x4a\xdf\x0c\xd9\xfe\x22\x28\xa8\x97\xd8\xb9\x31\x68\x4c\x11\x28\x30\x9e\xea\x6d\x29\xd9\x3d\x4a\x20\x56\xca\xed\x35\x8c\x1c\x23\x50\xdc\x7c\xed\x59\x8b\xe0\x3c\xc0\x59\xeb\x33\xec\xb5\xc1\x3f\x09\x54\x91\x96\xbd\xde\x6f\x2d\x05\x38\x75\x3b\x85\x9b\x9c\x2a\x03\x28\xf6\x78\xe7\xc5\xcb\xaf\x1a\x09\x2c\xd9\x5d\x25\xbb\x9f\x14\x0a\x14\x8c\x47\x3b\x8a\x05\x78\x2a\x52\x81\x76\xb4\xf4\x58\xfb\xfd\x3c\xc0\xd7\xd7\x18\x76\x94\x5c\xa0\x01\x4c\xb9\x22\x78\x25\x5a\xd4\x1a\x70\xda\xe5\x5a\xde\xda\x8a\x48\x40\xfb\xa2\x9a\x48\xeb\x46\x2b\x40\x06\x11\xe7\x02\x45\xe2\x32\x99\x52\xb8\x7e\x7f\x48\x39\x7f\x5a\x1e\x90\x64\x11\xa5\x34\x1d\xf5\x87\xc0\xba\xb1\x23\x8e\xa6\xbf\x7d\x01\x1b\x6f\x7d\xc5\x13\xcb\x60\xda\x36\xd4\x53\xf4\x8e\x00\x3c\x2c\xda\xe9\xf2\xe9\x3d\x01\xa8\xcf\xe1\xc6\xb9\xad\xb8\x0d\x30\x32\xba\xad\x7e\x44\xb5\x8e\xc0\x44\x95\xca\x2c\x1a\xbb\x9d\x40\xc1\xc3\x88\x75\xee\x87\xf9\xf9\x01\xed\xe5\xaa\x17\x6f\xb8\xec\x07\x14\xae\x73\xdd\x40\xcb\xba\x0a\x50\x35\xe7\xac\x88\xbf\xe4\x4d\x2a\x7c\xf5\x59\xf8\x73\xb3\x5a\x17\xf0\x9e\x1c\xff\xe0\x76\x55\x01\xc0\xd8\xcf\x57\xb9\x76\xef\x96\xa2\x42\xa0\xd5\xc6\x7a\x67\xef\x64\x12\x05\x5d\x4e\xaf\x3c\x79\xee\x25\x02\xce\x0b\x6b\xd8\x88\xcd\x27\x01\xa5\xac\x7e\x74\x7a\xc0\x60\xe9\x2b\x81\xf3\xeb\x5e\x0f\x49\xf0\xa6\x00\x7e\x3c\x24\x10\x67\x35\xdb\x4e\xe0\x3c\xcd\xc9\x5a\x42\xec\x3c\x19\xd7\xbc\xfc\x30\x3f\x9b\x37\x48\xa0\xe8\x79\x9b\x8f\x1c\xed\x2a\x80\x2f\xdf\xf7\x28\x0e\x25\x3d\xa0\x42\x09\xdb\xf1\x99\xa3\xaa\xd7\x00\xc5\xc3\x82\x22\xfb\xa4\x78\x01\x7f\x4c\xec\xae\x97\x9b\xe1\x06\x94\x5e\x88\x71\x5a\x1d\xec\x4e\x05\x33\xc5\x00\xe7\xed\x5f\x3d\x00\x95\xe3\xd8\xce\x8a\xaf\xfb\x45\xe0\x49\x8d\x90\x80\x7b\x0c\xc2\x80\x93\x22\x4c\xf6\xb3\x9c\xb7\x56\x42\xe7\x62\x32\x5d\x4d\x8a\x0e\x60\x36\x5b\xd5\xc6\x41\x43\x3a\xc0\x33\xcc\xe6\x4f\x53\x9a\x9e\x02\xbe\xdf\xbd\xab\xe0\xf2\x35\x36\xc0\x3c\x29\x1a\x8f\x5b\xde\xef\x49\x18\xdb\x48\x77\xc6\x7c\xeb\x0f\x82\x02\x5d\x39\x8f\x84\x30\x89\x10\x12\x96\xdc\x50\xbb\x67\x26\x59\x4a\xc2\xf8\xf4\x9d\x39\x55\x5d\x17\x81\x82\x6a\x95\x02\xfa\x2d\x81\xdc\x80\x72\xc4\x4f\xf5\x7b\x9e\x65\x80\x9d\x11\xef\x56\x0b\x94\xb1\x01\xce\x8b\x4a\xb7\x30\x3c\x17\x01\x14\xef\x1f\x38\xe2\xef\xbe\x8e\x0a\x5c\xa9\x9f\x42\x63\x98\xb7\x03\xda\xd0\x57\xf2\xec\x33\x61\x01\x4c\xac\xdc\x28\xf8\xee\x49\x3c\x19\xd7\xdf\x2b\x61\x28\xab\xe3\x07\xdc\x38\xff\xd8\x59\xe1\x67\x22\xcc\xe7\xca\xe9\xdb\x3d\x48\x04\x14\xde\x65\xa7\xfe\xea\x55\x02\xe0\x81\x38\xe6\x91\x2d\xfb\x12\x01\xc5\x0d\xf7\x5c\xb1\x5f\x1e\x7d\x34\x8e\x63\x4b\x8f\x76\x26\xa3\x05\xd7\x90\x8d\x50\xcd\x35\x40\xc0\x96\xd1\x27\x36\xa7\x80\x52\xfc\x8f\xba\x8e\x1e\xaf\x39\x0d\x78\xc5\x8a\xc6\x92\x61\x78\x8e\xc0\xbe\xbd\xd9\x07\x4b\x8d\x0d\x81\x02\xe7\x07\x81\x13\xb4\x72\x9c\x80\xf7\x24\xbb\x34\xff\xb4\x92\x00\x63\x83\x6b\xdf\x5e\x8f\x2f\x01\xc4\x8e\xcb\xca\x02\x42\xe9\x80\x0c\x41\x45\x3f\x0b\xe6\xab\x00\x65\xf9\x0a\x35\x85\xe2\xe3\x01\x47\xb5\x69\xe8\x4e\xf5\xc8\x02\x4a\xdc\x7c\xc9\x68\xb6\x96\x0c\xc8\xb7\x85\xfe\xfc\x88\x4c\x05\xcc\x33\x3f\x49\x8a\x38\x73\xe4\xbf\x5b\xfc\x34\x6f\xe1\xf6\x27\x89\x06\x30\xc6\x48\x48\x22\x3e\xae\x04\x30\x9a\xd5\xfe\x1c\xf3\xe9\x0a\x32\x6e\xdd\x66\x59\xeb\xba\x29\x0f\x30\xf9\xad\xa1\xfb\xc1\xaa\x05\x02\x79\x2e\x4e\xbe\x53\xee\x0e\x03\x0c\x14\x39\xca\xae\x46\x63\x08\xa8\x2c\xbe\xf1\x5a\xd4\x8b\x74\xc0\x4f\x33\xf2\x37\xcc\xf8\x19\xa8\xf0\x50\xf7\xfb\x4c\xbf\xbe\x3d\x15\x86\x62\x86\x03\x1d\x6e\xad\xa1\xc2\xcf\xc6\x7d\xba\xfe\xec\xcf\x00\x07\xa3\x6d\xa6\xa2\x1d\x9e\x01\xaa\x32\x9e\xed\xe6\xac\x4f\x01\xcc\x0a\xdd\x1b\x79\xb0\x3e\x1d\x70\x6c\x44\xf1\xf9\xe8\xe8\x2c\x81\x71\x87\x68\xed\x44\x06\x34\x01\x25\xcd\x36\x0a\x4b\x55\x89\x01\xea\xd0\xd5\xee\x93\xb9\x12\x07\x98\x57\xee\x46\x0e\xdc\xf9\x83\xc0\x5d\xab\x0b\x6b\x36\x6e\x2a\x23\x63\xf4\xc8\x14\xd7\x79\x67\x1b\x40\xb6\xa9\x53\x7a\x37\x9f\x9f\x01\xe4\xd0\x1e\x3b\xf5\xd9\x33\x80\x0a\x62\xf7\x43\xeb\x43\x47\x14\x01\x93\x45\x6c\x5a\xbf\x19\xaa\x00\x5e\xa7\x27\x7c\x9e\x30\x3a\x00\x06\x46\x14\x92\xaa\x8f\x1d\x03\xe4\xde\xe7\xd3\x3f\xac\x6d\xbf\x12\x8c\x51\xf7\x2c\xbb\x72\x0b\x09\x85\xaf\x7a\x0c\xed\x93\xd6\x00\x74\x79\x63\x1b\xec\x16\xc1\x06\xa8\xb2\xf9\x51\x16\x5d\x42\x02\x15\x66\xec\xb3\x7f\x32\x6c\x48\x07\xfc\x1b\xd3\xbd\xfe\x1f\x2e\xd6\xbb\xd5\x77\x27\x56\x01\x16\x86\x5f\xbe\xb8\x36\xb7\x0a\x90\x81\xb4\xee\x23\x4b\xef\x4d\xc0\xbb\x3a\x67\x83\xf8\x6a\xbd\x01\x1f\x1c\x72\x5c\xd2\xfa\x38\x49\x60\x11\xd1\xcb\xc4\x37\x38\x42\x85\x6c\xde\x06\x09\x7a\x9f\x45\x02\x67\x92\x34\x2c\xd6\x9a\x6c\x01\x54\x6a\x37\x22\x5b\xa7\x69\x01\x76\xe5\x2b\xc6\x7e\x5d\x25\x01\x58\x14\x2d\xf3\xab\x74\xfb\x22\x81\x1b\x3f\x57\x3d\xdf\xff\xc3\x1c\x90\xc3\x2b\x94\xc5\x78\x15\xcf\x4a\x38\xde\x65\xf5\xb5\x98\xe3\xd8\x4a\x58\x78\x7f\xda\xce\x6d\xe9\x0f\x81\x0c\x47\x8a\x57\x8b\xaa\x3d\x23\x30\x27\xf8\xe3\xfc\x74\x48\x3c\xa0\xb7\xd3\x1f\x77\x2d\xd6\x36\x32\xa5\x80\x79\xb5\xda\xb4\x60\x2e\x09\xdb\xea\x7c\xed\x5f\xd9\x4e\x13\xa8\x74\xb6\xee\xdb\xcc\x6a\x03\xf8\x5f\x28\x3f\xbd\xd1\x4f\x9e\x43\x7a\x25\xc8\x8c\x30\x99\x4c\x30\x57\x01\x9e\x3c\x3a\x28\xf3\x0f\x7e\x21\xf7\x86\xfe\x21\x70\x75\x49\x7c\x79\x81\xdf\x4a\x88\x9a\x91\x89\x16\x19\xb1\x5e\x09\xfe\xb1\xb2\x17\x38\x1d\x0e\xaf\x84\xd6\x6d\xe2\x72\xa6\xb7\xab\x08\x3c\xb6\x65\xef\x94\x68\x82\x1e\xe0\x51\xb7\x07\xb7\x56\x09\x71\x02\x26\x7f\x78\x1c\xa6\xd0\x41\x06\x74\x96\xb3\xe2\x7f\xf7\x29\x1e\x90\xc3\xcd\x26\x71\xd0\xc8\x0d\x70\x7d\x6a\x47\x5c\x57\x87\x2b\x55\xf9\x50\xdc\x14\x49\x2a\xd4\x00\x1c\x10\xc8\x3b\xda\x11\xc0\x02\xa8\x7d\xea\x5c\x80\x85\xf4\x5a\xc0\x7a\x88\x3b\x18\x7e\x62\x3d\xa0\x89\xcd\x1e\x05\xfd\x0f\x4d\x24\x5c\x8c\x62\xe1\x88\xd1\xb8\x02\x2b\x60\xe6\x1a\x6f\xf8\xbf\x27\x33\x70\x8b\x24\x57\x81\x7e\x05\xe0\xab\x9d\x7f\x42\x73\x96\x51\xbf\x93\xfb\x8a\x98\xd8\x35\xc0\xed\x42\x95\xbc\xff\x60\x7b\xa4\x84\x95\xff\x81\x0c\xa0\xd9\x3e\xf1\x57\x6f\xb4\x55\x00\x0d\xa7\x2c\x0c\xae\x6c\x38\x04\x58\x28\x1e\x71\xbf\xdb\x46\x0a\x50\xef\x6b\xc6\x37\xee\xa2\x9d\x80\x45\x82\xeb\xe9\x19\xd2\x3d\xa8\xc0\x94\xbf\x6d\x63\xb3\x8e\x12\x20\xe3\xf5\x5a\x37\xe6\x91\x6f\x04\x2e\x9d\xec\xb9\x5f\xaf\x70\x13\x28\x38\xc1\xaa\xf6\xa6\xaf\x29\x9d\x8c\x8f\x84\x27\x3a\x44\xf2\x7d\x01\x7f\xfa\xbf\xb6\xb4\x1d\x28\x06\xe4\x34\xd3\xe6\x12\x3f\x12\x02\x78\x27\xbe\x72\xfe\x7b\x7f\x00\xe0\xc1\xe7\xab\x7b\xef\xb8\x56\x03\x5a\x3d\x49\x66\x4d\xde\x7b\x0f\xf0\xa2\xef\x86\xd1\x33\x49\x77\x01\xcb\x0d\x9d\xd5\x84\x94\x79\x00\x35\x9e\xa4\xc6\x6e\x6f\x97\x02\x7c\x54\xe7\x73\x5c\x3f\x81\x16\x70\xe9\xcd\xdd\xa1\x3b\x8c\x5b\x00\xf9\xca\x1f\x1f\xf4\x5b\xb4\x26\xf0\xe5\x88\x48\x54\x78\xc5\x71\xa0\x60\x8f\xbc\xfd\xdd\x56\xd6\x19\x82\x02\x8e\x25\x46\xd6\x58\xd9\xf3\x40\xc1\x2b\xae\x83\x8b\x72\xa1\x27\x01\x95\x73\x1d\x19\x35\x1f\x2b\x01\x9e\x1d\xce\x08\xba\x5b\x53\x09\x78\x66\xaf\xf8\xee\xc1\x5c\x19\xc0\xf1\xe6\x7e\xb3\x7b\x87\x91\xc0\x8b\x9a\xb7\x65\x1a\x5d\xf7\x00\x8a\x0a\x24\xcb\x4a\x9e\x64\xa7\xc2\x8d\x82\x34\xf5\x43\x0a\x3c\x54\x38\xf4\x9e\xb4\x67\x13\x6d\xe5\x4a\x28\x3d\x95\x9f\xa0\x54\xb4\xed\x7f\xc2\x7e\x21\x55\x55\xb2\x8a\x69\x25\xb4\x9a\xa9\x37\xfc\x98\x1f\x24\x51\x30\xf6\xf9\x1d\xec\x3f\x12\x0f\xd8\xb2\xbf\x2d\x65\xbe\xe9\x05\x99\x52\xfe\x43\xd4\xf1\x17\x69\x7f\x78\x90\x40\xb8\xaf\x34\xde\xec\x57\x01\x18\xa3\x5e\xe0\xd2\xb2\x0c\x3b\xa1\xf8\x97\x15\x4d\x77\xa9\xd0\x74\x3a\x66\xbc\x9c\xe4\x08\xa8\x74\x39\xec\x9c\xc7\xef\x2a\xc0\x73\x23\xf6\xbb\xfe\x41\xa8\xe3\x3e\x5d\xc2\x8e\xe5\x8f\x9d\xe0\xd5\x6f\xc4\x5f\xde\x02\x3c\x9d\xd8\x78\x58\x02\x6e\x51\x15\x63\xe5\xe9\xed\x4b\x3c\x46\x80\xc5\x7a\x12\xad\x12\x19\xcf\x00\xdf\x89\xce\x4e\x9c\x7f\xfd\x85\x40\x5d\x97\x8e\xc7\xa3\x35\x2c\x40\x41\x61\x73\x92\xcf\x22\xd1\x49\xc2\xdb\xca\xcd\x1d\x5c\xbc\x3e\x80\xd7\x8b\xba\x1d\x3b\xdd\xdf\x00\x66\x2c\xaa\x07\xf9\x47\x46\x03\xb6\x65\x6c\xe4\xfd\xe8\x95\x04\x18\x67\x97\xe7\xdc\x1e\xdd\x0a\xe8\xca\xb6\xe4\x9f\xfd\x24\x15\x50\x2c\x20\x3c\x56\xa9\xd8\x82\x8c\xea\x75\x47\xe9\x6f\x64\x19\x02\x32\xae\xcb\x0b\x4a\xb3\x51\x00\xe4\x4b\x98\x3d\xd3\xf8\xeb\x01\x19\xc9\x51\x13\x29\x16\x66\x75\x64\xd4\x77\x53\xca\xf8\x57\xf8\x7a\x05\x95\x63\x69\x3d\x01\x4b\xf9\xb9\x2f\x0b\x10\x9c\x80\x15\x12\x0d\xac\xab\xb3\xa5\x01\xab\xc2\xef\x59\x3c\x6e\xd5\x05\xd4\x9e\xd4\x88\x22\x44\x34\x00\xf7\xdc\xb8\x98\x59\xab\x4f\x8d\x5a\x49\x0e\x47\x9a\xba\x57\x04\x7a\xbd\x5f\x7d\x6d\xd3\x61\x69\xc0\x80\xc4\x3d\x67\xee\xa5\xe4\x01\x3e\xb1\xe2\xbd\x4c\xa2\x4d\x05\x3c\x32\x20\x7f\x5c\xa4\xf5\x1b\x81\xef\x0e\x7a\x1a\xda\x86\x14\x03\xba\xc5\x2f\xd5\xd9\x2c\x83\x95\x6c\x2c\xf6\xaf\xcc\xd4\xde\x9f\x71\xb1\x14\x00\x5c\xed\x2f\xed\x7e\x84\xc6\x11\xb0\xfd\x85\xb5\x6f\x7a\xf3\x71\x40\xf5\x90\x00\xf6\x0e\x59\x6e\xc0\x28\x45\xfe\xa9\x08\x0e\x4e\xc0\x90\xe3\xf6\x06\x89\x0f\xd9\x01\x15\xd3\xcd\x26\x19\xcc\x79\x00\x75\x5a\x99\x2b\x87\x3d\x0e\x50\xa1\x67\xc3\x03\x8c\xd1\xdc\x44\x05\xfa\x19\xf9\x57\x07\x8d\x69\x00\xcd\x3f\xde\xde\x96\xe4\xf7\x89\xa0\xe0\xad\x9a\xa8\x6c\xd9\x1a\x46\xc0\x2b\x4c\x2c\x57\xcd\x1a\xe6\x09\xec\xde\x6b\x6b\x38\x1b\xc1\x08\xb8\xe0\xfd\x7e\xe4\xcd\x0b\x01\xc0\x11\xf7\x8a\x3a\xc9\xa3\x56\x54\xa0\x21\xcb\x38\x0e\x2f\x70\x01\xea\x6c\xf8\x3e\xf9\x43\xed\x13\x81\x67\x3c\x55\xdf\x5d\xff\xbd\x44\x20\x6d\x3f\x61\x5a\xae\x7b\x00\x90\xfd\x55\xab\xc6\x6c\xa0\x14\xe0\xb7\x27\x05\xa4\xda\x12\x06\xc0\x63\x05\x83\xaf\x4a\xfc\x3e\x12\x2b\xc0\x33\xe4\xaa\x86\x2e\xcb\x1f\x02\x5d\x82\xf2\x69\x59\xfa\x56\x01\x2a\xe5\x07\x13\xf1\x42\xe7\xa8\xc0\x5a\xc3\xcc\xa0\x7e\x83\x03\x30\x23\x00\x5c\x8c\xd3\xd6\x03\x1e\xfa\x11\x6d\x74\xe0\xb3\x0b\x15\xfe\x7c\x39\x20\x1e\x11\x40\x0f\x28\x1d\xe6\x9f\x70\xc1\xb3\x02\xf0\x9b\x93\x95\x46\xf8\x82\x23\x60\xd1\x7b\x89\xac\xcb\x2f\x0e\x00\xea\x0a\xae\xbe\x76\x49\xee\x2f\x81\x53\x19\xaa\xde\x7a\x2a\x5a\x80\xd5\xa4\x6b\xd7\x1c\xfe\x3c\x00\x6c\x0a\xdd\x5d\x99\xea\xc8\x07\x48\x90\x32\xe4\xfb\xbb\xd7\x03\x2a\xde\x6a\x4c\xa8\x56\xe3\x02\x0c\xa7\xa9\xe8\x60\x8d\x94\xa4\x82\x87\xd9\x69\x71\x79\xc1\x1f\x04\x16\xd7\x08\xbc\xad\xd9\x1c\x0e\xb8\x5e\xe5\x9d\x9b\xf7\x96\x0a\xc0\x22\x23\x27\xfb\x16\x1b\x51\x2a\xd8\x79\x38\xd4\xf0\x67\xf4\x13\x14\x24\xbf\x5d\x5b\x1f\xb3\xa3\x87\x0a\x9a\x2d\xa9\x12\x8d\xe9\xba\x80\x35\x2c\xde\xa4\x74\x39\x1d\x2a\x38\x14\x88\x78\xf9\x2f\xed\x06\x8c\xdd\xce\xee\x50\xf4\x49\x95\x0a\x1f\x7c\x5f\x58\xad\x5e\x7e\x0e\xeb\x18\x88\xcc\x4b\x45\xad\x04\x1e\xde\xe7\x79\xda\x8c\xee\x00\xe0\x8e\xd7\x3c\x19\x11\xbb\x6c\xa9\x70\x67\xe2\x1e\xc3\xa7\xc5\x69\x02\x3d\xc5\x26\x73\x2e\x0e\xfe\x26\xb0\xbb\xdc\xf8\x05\x79\x8b\x14\xac\x80\xce\x6c\xef\x33\x75\x26\x9c\xff\x13\xa9\xb7\xce\xec\x6f\xd8\xc1\x0e\x98\x57\x73\xaf\x76\xe8\x45\x24\xe0\x99\x84\x4d\xb5\x16\x34\x21\x64\xbc\x9f\x4c\xdf\x22\xdd\x25\x0e\x48\xb3\x97\xfc\x93\x25\x9b\x1b\x30\xf6\x01\xb1\xd4\x62\x14\x06\xd8\x1b\x7b\x63\x9b\xf9\xc0\x3c\x81\xdf\x0b\x18\x95\x9f\x44\x98\x02\x05\x4a\x7c\x07\x3e\x9d\xe4\x92\x02\xb4\xcb\x3a\x96\xf9\xd7\x7d\x92\x40\xf9\x90\x19\x0b\xe7\xd5\xf4\x40\xc1\xf3\x0e\xdf\x05\xf1\xd0\x16\x02\x13\xd7\x04\x3d\x9e\x14\xe6\x00\xfc\x5d\x93\x89\x1b\xec\xf9\xa8\x90\x9f\x39\xbb\xee\xc9\x34\x12\x58\xd8\xf3\x33\x7e\xdf\x2e\x75\x40\x7e\xd5\xa0\xc6\xa8\xa3\x1c\x80\xb2\xc3\xc5\xd7\xa3\xb4\x18\x00\xd5\x9f\x8a\xef\xeb\x4c\x46\x82\x82\x2f\xb5\xb2\x1c\x9e\x0f\x69\x01\x05\x0a\x48\x71\x31\xa2\x07\x01\x2f\x56\x68\xbb\x66\x5b\xe7\x93\xb1\xf9\x81\x45\x1c\xff\xd9\x4b\x80\x17\x0b\x83\x7c\x16\x58\x57\x03\xde\x9d\x7a\x5c\x7e\x76\xf7\x77\x02\xa5\x59\xc6\xb8\x1e\x59\xcc\x50\x21\xd2\x2f\x59\x8c\xa3\x9e\x03\x28\x08\x94\xa3\x7f\x53\xfa\x24\x0f\xf0\xe6\xc9\xd2\x37\x93\xa6\x4b\x04\xbe\xc9\x65\xb2\x6f\xed\xdd\x00\xa8\x3d\x40\x58\x5f\xf7\x17\x01\x7c\x62\x2d\x9f\xca\xa5\xc1\x06\xf8\x3b\x28\x25\xe6\x37\x8b\x08\x60\xcb\x80\xbe\x5f\xc8\x34\x2d\x20\xc3\x63\x7e\x81\xbb\x0e\x0e\x64\xb4\xfc\xb4\xdd\xd9\xb8\xd7\x13\xb0\x27\x20\x66\xd2\xc2\xf6\x18\x60\x7a\xf9\xa6\x23\x2e\xbf\xc2\x00\xe7\x92\xfd\xea\x69\x36\x05\x02\x4a\x76\xbc\xd4\xd9\xe6\x7c\x00\xf0\xf4\xb9\x67\x4a\xf2\x51\xbb\x01\xb9\x5f\x85\x78\xf2\xc4\x27\x92\xb1\x06\x4d\x5b\xcc\xfa\x3e\x02\x96\xd4\x46\x75\x1d\x5f\x46\x90\xdf\xed\xa5\x7f\x25\x56\x87\xe6\xf7\x61\xda\x3a\x40\xc6\x60\x6d\xa1\x1f\x59\xe9\x80\x72\xfc\x02\xaa\x7d\xc7\xb6\x01\x7a\x8e\xbf\xec\x1e\x76\xd7\xa6\xc2\x84\xe6\x35\xbe\x9d\xf7\x77\x01\x8e\xa7\xee\xd5\x7f\xf4\xf6\xc4\xf2\x5e\xab\xd7\x50\x83\x6e\x0f\x20\x57\xd4\xa1\x35\x01\x29\x0b\x04\x3e\x64\xd9\x14\xf3\xfe\x67\x34\xe0\xfb\xe9\x79\xed\xd0\xd3\x45\x80\x0b\x42\xbd\xe7\xee\xaf\xea\x06\x64\xb8\xa8\xb8\x43\xdf\x6f\x00\xf0\x6c\xb6\x7a\x39\x5b\x52\x3f\xe0\x68\x93\x9b\xf1\xa5\x67\x65\x80\x3f\xc9\x5d\xda\x9b\xcf\x27\x01\xbe\xde\xe5\xb4\xe5\xe1\x63\x16\xc0\x86\x94\xea\xde\x72\x06\x01\xc0\xd1\xa9\x8f\x93\x17\x7e\xa7\x01\xd6\x95\xfc\xf8\xa6\xec\x74\x13\x50\x20\x23\x46\x8d\x25\x54\x1d\xf0\x6a\xa0\xcd\xcd\xd0\xc4\xe7\x80\x0a\x7a\x4c\xbe\x1a\x9d\x04\x20\x53\x8f\xd0\x3e\x99\xdf\x61\x80\xbf\xf9\x0f\x16\xb6\x13\x21\x80\x41\x67\xc4\x33\x19\x07\x6b\x00\x8f\x7e\xfd\xdd\x58\xf4\x38\x09\xb0\xda\x7e\x0d\xbd\xd7\xdf\x18\x32\xe6\xfd\xbd\x79\xca\x88\x43\x1e\x70\x63\x46\xfa\xd6\xff\x87\xf1\x3a\x0f\xe6\xea\x7f\x1f\xff\x9f\xad\x2c\x65\xc9\x2e\xa2\x2c\xd9\xcb\xbe\xe5\x5c\x96\x50\x21\x94\x16\x91\xec\xb2\x53\x2a\x84\xb2\x2b\xa5\x22\x22\xa1\xa4\xc8\x4e\x96\xac\x4f\x4b\x22\x91\xa5\x44\x91\xa4\x94\xec\x6b\x5d\xb4\xfd\x46\x33\xdf\xd7\xf3\xf9\x99\x69\xde\xf3\xfb\xcb\x6d\xee\xd7\xf9\xc3\x9c\xe3\x1c\xd7\x43\x5b\xe4\x2a\xa0\xd0\x87\x00\x89\xf2\xef\xe9\x24\x7c\xce\x12\xdc\xf2\xc1\x46\x1b\x30\xee\x88\x35\xaf\xeb\xc6\xfa\x3a\x94\x76\x99\x3a\x7a\x67\xbb\x01\xfc\x03\x7f\x2c\x4a\x76\xd4\x7c\x60\xff\x17\xce\x30\xff\x61\x30\xd5\xa2\x06\x7c\xeb\xde\xe8\x66\x12\x38\x4b\xe0\xf9\x9c\xb9\xaf\x26\xba\x1c\x40\x06\xff\x87\xaf\x9f\xbc\x58\x33\x01\xf9\x9e\xf8\xb3\xbe\x8a\xa2\x02\x3c\xfa\xfd\xa5\xdf\xbe\xe6\x60\xc0\xe4\xd8\x75\x95\x09\xa5\xc3\x04\x8e\xf4\x66\x87\x5f\x62\xee\x27\x90\xce\xe3\xc5\x55\x29\xa3\x69\x0a\xb4\x08\xa5\xab\x76\xab\x74\xd7\x61\x32\xdb\x85\xf6\x51\xed\x49\x02\x93\x6c\xba\x1d\xd6\xea\xac\x03\x32\xac\x69\xc7\x94\xd4\x04\x7b\x09\x7c\x5e\x16\xfe\xe9\xd3\xdc\x3c\x05\x4a\x22\x05\x1e\xf8\x1d\xb1\x04\x32\xf6\xb7\x28\x4e\xbf\xf9\x25\x04\x48\xe2\x66\xd5\x64\x50\x17\x07\x4c\xf4\xf0\x4a\x0c\x62\xdb\x0a\x38\x7f\xb2\x5b\xff\xd5\x70\x03\x81\xc1\x4f\x34\xce\xad\xbd\xb5\x06\xc8\xa8\x30\xa4\x51\xab\x7b\xfa\x85\xc0\xa3\xcf\xdf\xd6\x74\x46\xa9\x01\xbe\xae\x7f\x78\xe7\x53\xcf\x22\x81\x3b\x8d\x74\x5b\x39\xee\xee\x01\x32\x4e\x6e\x93\x2e\x4a\x7a\x5f\x41\x20\xb4\xd2\x26\x65\x0c\x53\x01\x32\xec\x8a\xf8\x78\xe8\x36\x07\x20\xf5\x53\x83\x88\xc2\x80\xd5\x77\xf9\x4f\xe1\x31\xfb\xc8\x05\x02\x93\x40\xa5\x9c\x7d\x77\x11\xfc\x03\x1d\x45\xeb\xa3\xff\xa2\x73\x8e\x69\xac\x60\x26\xfa\x7f\x22\x60\xaf\xa6\xbd\x93\xd7\xea\x0d\x77\x4e\x3f\x27\x6a\xb2\x15\xf0\xdb\xee\x6a\xde\x9a\x33\xcd\x75\xc8\xfd\x70\x90\xe5\x3a\x6f\x1a\x81\x53\xa6\x0c\xcc\xdd\xa9\xd4\x80\x47\x39\x7b\xee\x8b\xca\x1a\x00\x56\x16\xb7\xaa\x94\xe9\xbe\x04\x5c\xaa\x55\x48\x2c\x5d\x45\xcf\xd6\xd3\x76\x4e\x82\x4d\x80\x4a\x05\x45\x2a\x34\xae\x29\x80\x0e\x4d\xfe\x7c\x9f\xac\x55\x01\x65\x1c\x64\x6e\xdc\x17\x7f\x4f\x60\xd7\xd7\x23\x5e\x9f\xc6\xb9\x00\xf3\x4d\xee\xed\xe7\x32\x8d\xfb\x17\x4e\x98\xd5\xc6\x94\x14\x6e\x05\xe4\x5b\xa7\xbc\xd3\x2f\xf6\x0e\x81\x72\xf7\x79\xa4\x79\x57\x57\xb5\x95\x60\x92\x43\xf8\x2b\x56\x40\xd9\xa8\xce\xd6\x47\x51\x34\x80\x36\x17\xb5\xb8\x23\x4f\x5e\xab\xc3\x0d\x1f\xcc\x3c\x76\x72\xc9\x03\x19\xfb\xe2\x64\x54\xdb\xb4\x5e\x10\xf8\x26\x89\x7e\x82\x6a\xc6\x00\x30\x24\x30\x7b\x70\x9a\xfd\x21\xe0\xd4\x87\x8f\x23\x1c\x9b\xff\x10\xd8\x10\x9e\x37\xe1\x71\xfd\x1a\x09\x97\x85\x6c\xa5\xf4\xde\x69\x01\x8e\x8d\xc0\x8d\xad\x2d\x0d\x80\x89\xbc\x77\x49\x1c\x4a\x89\x14\x25\xa0\xfb\x8b\xc1\xc3\x27\x5a\x14\x70\x38\xe6\x79\xa7\x3b\xb0\x00\xf0\x55\xbf\x76\xf1\xab\x55\xa4\x39\xbb\xbf\xff\xbf\xd8\x27\xea\xbe\xf1\xf1\x09\x2d\xc0\xc7\x0d\x72\x37\xd8\x3e\x57\x01\x1e\x12\xe1\xf6\xb4\xe6\x0d\x01\x64\x5a\x93\x64\xba\x3d\x3a\x04\x70\x2f\xff\x63\xae\xd7\x57\x2f\x50\x14\x0d\xc6\xb7\x4b\x6b\x77\x26\x02\x2a\x98\xf6\x79\x3f\xd2\x4c\x04\x94\x72\xac\xb3\xbb\x67\xf5\x94\x84\x6a\xf4\x1e\xaf\x19\x57\x47\x39\xce\x42\xa5\xf6\xe9\xb9\x80\xf6\xbd\xb1\x52\xd9\xc1\xd5\x14\x50\xd5\x5e\x3c\xfd\x4d\x24\x89\xa2\xc8\x38\x54\x5a\xfc\x85\x52\x57\xa0\xe7\x6e\x4e\xdf\xff\x7f\xd0\x19\x2b\xca\x88\x0e\xdc\x0e\xc8\xc9\xf8\xf3\x67\x66\x4a\x30\xe0\xfd\x66\xdb\xcb\x93\x52\x6b\x00\xeb\xb9\x6b\xec\xe6\xb2\x1b\x49\x18\x2b\x4e\x9c\x1b\xe5\x56\x04\x32\x90\xd4\x92\xfc\xce\x72\x81\x20\x63\x57\xe0\x8a\x64\x3b\xd0\x00\x19\x81\x6c\xf6\x8e\xfc\x89\x0c\x14\xe0\xdc\xb6\x3e\xd2\xeb\xc1\x14\x81\x8f\x86\x7f\x3e\x26\x15\xec\x02\x7c\x3b\xc4\x6a\x32\xd6\x6a\x0c\x38\xd3\xc0\x78\x9e\xf5\x84\x26\xa0\xc3\x3b\xda\xed\x7b\x4e\x56\x02\xbe\xbc\x65\xf6\xfb\xc7\xc6\x36\xc0\xfd\x61\xe1\x5d\x03\x2b\xc5\x80\x96\x56\xd3\x21\x22\xad\x01\x80\xbe\xf9\x65\xa7\x0b\x79\x02\x00\x39\x1f\xe4\xb4\x2e\x5d\x3d\x4d\x31\x32\x28\xd5\xb7\x3f\x9b\xe0\x02\x18\xdc\xba\xb9\x4d\x68\xf6\x12\x60\x8a\x0c\x6b\x5b\xfa\xe2\x63\xc0\x6b\x83\xd9\x54\xf5\x0f\x1b\x48\xe4\x92\xbe\x71\xa1\xef\x73\x61\x23\x05\xcc\xf4\xbc\x55\xd4\x3d\x1b\x01\x3f\x96\x28\x56\x56\x9f\x6f\x02\xf4\x58\xa3\xcb\xb7\x6b\xa2\x9e\xc0\x9a\xc2\x2b\xa4\xcf\x01\x5c\x80\x1e\xcb\x16\x2e\x53\xc2\x32\x80\x51\x2c\xa2\xd9\xa4\x29\x4b\xc0\x5a\xd2\x6d\xb7\xdb\x47\xb5\x01\x9f\xe5\x4b\x76\x6b\x84\x35\x00\x3e\xe5\xe4\x22\x2a\xa5\x8a\x00\x2f\x1d\x5f\xbc\x1b\xdc\xd7\x00\x28\x3d\xde\xb0\xaf\x26\xbf\x11\xb0\x45\x1b\x9b\x83\x8e\x65\x92\x90\x79\x25\xa7\x6e\x9c\xaa\x01\x50\x27\x69\xfe\xf9\xb5\x6f\x8d\x80\x07\xdc\x9e\xb3\x97\xef\x37\x05\xa4\x71\x77\x7b\xf9\xa7\x4a\xf7\x5f\x50\x7c\xe3\xfa\x61\x86\x41\x01\x30\xf5\x54\xbc\xc9\x6f\x1e\x5d\x40\xdd\xf9\x97\x6a\xc1\xdb\x45\x00\x47\xfc\x93\x05\x1f\x16\xb2\x03\xaa\x60\x47\xd3\x8e\xdf\xb7\x01\x9f\x73\x0a\x0b\xc9\xad\x22\x80\xc7\xcb\xbe\xc0\xeb\x1c\xe0\x9b\xaf\x41\x35\x1a\x73\x3b\x00\x1b\xf5\x83\xee\x49\xe4\xb0\x02\x26\x9b\x0e\x78\x96\x35\x1e\x04\x94\x51\x4b\x8b\x6c\xed\xcb\x00\x6c\x9d\x8b\xf6\xfa\x8b\x24\x13\xbf\x91\xf9\xc9\x20\xc0\x2d\xfa\xf5\xdb\xd5\xfc\x8f\x02\xde\x0b\x11\xe4\xad\xe9\x91\x02\x14\x72\xb9\x7a\xc1\x8d\xf1\x3b\x81\xbd\x74\xd5\xcb\xb2\xcf\x75\x01\xe9\x4c\xd7\x71\xec\x2e\xde\x02\xb8\xd7\x9d\x63\x74\xaa\x5d\x0b\xf0\x58\xb2\xa0\x7b\xa5\xce\x7e\xc0\x11\x8e\x1c\xf6\x0b\x52\x87\x28\xe0\xee\x15\x13\xf7\x77\xb9\x75\xe9\x7e\xd4\x62\xcf\x14\x07\x38\xd9\x9b\x66\x61\x64\x60\x4e\x81\x5d\xd1\x55\xa7\x32\xfd\xd8\x00\x67\x13\x8c\x13\x7e\x89\x17\xd6\xe1\x41\x61\x3f\x3e\xa9\x35\x45\x40\x86\x08\x55\x5c\x8a\x4f\x67\x28\x20\x47\xbc\xa3\xc9\x16\xa9\x31\x02\x27\xad\x2a\xc6\xac\xf4\xdd\x00\xdf\x67\x25\x9c\x5a\x9b\x77\x1b\x30\xda\x32\x78\x8a\xf5\xf4\x5a\xc0\xa4\x10\xfd\x91\x9c\x49\x65\xc0\x1a\x27\x9d\xc1\x1e\x5a\x5a\xc0\xf6\x3b\x0b\xcd\x7b\xad\xd3\x01\x73\x5d\x1f\x9f\x97\x77\xcb\x01\x64\x70\x37\x3c\x26\x22\x9d\x03\x28\x65\x7c\xca\xd4\x70\x75\xc4\x8b\x06\x4c\x99\x17\xac\x00\xe7\x97\x95\xba\xb6\xec\xb1\x04\xbc\x39\x3c\x77\x45\xd7\xc9\x85\x44\x1e\x9d\x98\x3e\x75\x22\xce\x9f\x01\x50\xc1\x43\xbc\xd2\x52\x51\x1c\xd0\x6e\xa2\x3c\x2b\xf3\x4a\x03\x05\x9e\x0d\x33\x9c\x63\x63\xe0\x02\xb4\xf5\x7e\x25\x0f\x61\x1b\x01\xef\xd3\xdc\x2b\xe0\x8c\x2d\x07\xb4\x16\x9a\x7e\x79\x9d\x57\x83\x02\xf4\xa7\xe2\xcb\x63\xad\x39\x00\x37\xfc\xd8\x2a\x3b\x47\xad\x03\x38\xf7\xcc\xcf\x29\x8b\xf6\x2d\x81\x3b\x9d\xbf\xbc\x4f\xf1\xbf\x07\x64\xf4\x09\xf6\xb4\xfe\x85\x47\xe0\x73\xc9\xa5\xa1\x27\x04\x06\xbd\x9a\xad\x7e\xb8\xbd\x10\x70\xf3\xe1\x0b\x1c\xd4\xd9\x92\x14\x38\x7c\xd2\x5d\xe1\xfd\xde\x60\x0a\x0c\x9f\xb8\xb4\xf2\xd5\xbb\x90\xc0\x4b\x37\x0e\x59\x97\x11\x1a\x80\x47\x0d\x52\x1f\x14\x9c\x7f\x47\x20\x9a\x9d\x39\x95\x97\xf0\x84\xc0\x6b\xf7\x7d\xab\xf7\xe6\x5c\x82\x7f\xa0\xc4\x8c\x66\x4e\x25\x7f\x8c\x40\x05\x73\x33\xaf\xde\x80\x61\x0a\x0c\x7f\x2a\x18\x8b\x99\x75\x02\x32\xf6\x69\xa7\xd5\x0e\xdd\xec\x22\x70\x41\xfb\xbc\x9f\xd2\xa6\x25\x02\x0f\x1c\x12\xaf\x7c\x61\x99\x00\xff\xc0\x93\xf2\x8f\x05\x8b\xb7\xe3\x08\x74\x91\x12\xb1\x14\xf2\x4b\x00\x0c\x9a\xf6\xba\x6e\x1e\xb6\x83\x84\x77\xd7\x16\x4a\x6b\xd9\x29\x01\xfa\x7f\xef\xa2\x4f\x2f\xe1\x00\x9c\x8b\xb5\xff\x6c\x6d\xa3\x43\x81\x3b\xe7\x0c\xcb\xd4\x99\xa8\x00\x87\x2f\x4d\x34\xef\x14\x94\x04\x2c\xcf\xa8\x0d\x7f\x13\x73\x16\x70\x64\x37\xb7\x41\x33\x1d\x15\xa0\x05\x3f\x55\x6e\xfc\x98\x38\x60\x97\x8b\xc0\x4d\x5a\x77\x45\xc0\xcc\xea\x4f\xe7\x4b\xa5\xff\x10\xc8\x6d\x55\x51\x33\x2b\x24\x0e\xe8\xb8\x97\xc1\x34\xdc\xc2\x97\x02\xc3\x49\x34\x07\x7f\xc9\x0a\x02\x7a\xc8\x0c\x28\xce\xfd\x74\x00\xa4\x5d\x2f\x99\x2d\x66\xe2\x0e\x38\x3f\x90\xce\x34\xe7\xb1\x44\x60\xf1\x5c\xc4\xf5\x4b\x47\xbf\x12\xb8\x76\xd9\x76\x30\x33\x46\x0a\xf0\xe9\x09\x38\x8c\x59\x22\x80\x79\xe7\xe2\xfb\x3c\x9b\x77\x02\x06\xf7\xdc\x6c\xa1\x8f\xf1\x00\xcc\x5c\xda\xb9\xa9\x7d\xf3\x01\x40\x95\x27\xc9\xc5\x3b\x8e\x7c\x27\x50\x61\x7a\x73\xa6\xfc\x3b\x03\x20\xe3\x62\xf2\xd1\xbe\x6f\x6e\x02\x80\xc6\x76\xb5\x5a\x12\x7a\xba\x80\x5e\xa6\x37\x7f\x45\xe8\x0d\x13\x38\x6b\xd8\x18\xae\x91\xa9\x04\x18\x90\x23\x94\xc6\xa1\xe5\x0d\xf8\x1e\xe3\xed\x8d\x76\x7a\x03\x5a\xec\xe7\x7b\x91\x59\x6e\x02\x18\x7a\x88\xc1\xd7\xb1\x71\x81\xc0\x25\xd7\x58\xc3\xc1\xa7\xbf\x09\xe4\x39\xc4\xb9\x26\xf5\xda\x2c\x05\x9a\x8f\x29\x39\xbe\x11\xec\xaf\x43\x53\xa3\x67\x12\x8a\x73\x91\x80\xcf\xfa\x82\x67\x94\xd3\x7f\x13\xb8\x61\x59\x54\xc3\x83\x4a\x09\xc8\x18\x5e\xe2\xe2\x9a\x3c\xd4\x4d\xe0\xcf\x06\xef\x0b\x7b\xd3\xd7\x03\x72\x7f\x6d\x49\xe4\x6a\xd2\x01\x9c\x88\x7a\x1a\x18\x2a\xc3\x01\xb8\x7c\x23\x70\x03\x7b\xad\x37\x05\x36\x8f\x26\xbf\x3a\x75\xdc\x06\xb0\xfd\x1b\xaf\x7e\x67\x09\x2b\x20\x9f\xe2\xa9\xdc\xb1\xf9\x49\x02\x15\xa7\x35\x32\x0d\x79\x2e\xc0\xff\x82\xdf\xe2\x0f\x47\x62\x8a\x15\x50\x77\x99\xaf\xf4\x87\xe0\x02\x81\x0e\x5c\x95\xfc\x47\xaa\xa8\x00\x3d\x67\x7f\x19\xfa\x45\x08\xff\x0b\x8a\x0d\x07\xad\xd9\x94\x64\xfe\x85\x75\xb4\x1a\xb3\x97\xb3\x5f\xd5\xa1\xfd\x71\xd1\xf2\xee\x1d\xb7\x01\x25\xbf\x72\xee\x09\x08\xba\x49\x42\x2e\x6a\xa5\xc9\x4d\x49\xdb\x01\x6b\x2f\x12\x7b\x24\x5a\x91\xc0\x5f\xf4\x39\x56\x76\xbe\xf4\x80\xce\xb2\x63\x9a\x53\x01\x75\x80\x3b\x36\x1f\x0b\xda\xf8\xb3\x1e\xf0\xd7\x1f\x37\x8b\xc3\xcf\x42\x01\x8d\xd4\x77\xcc\x77\x4d\x84\x02\x2a\x1c\x2e\x53\xa1\xf3\x8d\x04\x5c\xa6\x95\x65\x4e\x60\x51\x04\x5c\x3e\x3a\xdb\x7d\x35\x59\x1e\xf0\x86\x19\x3c\xb2\x39\xd1\x0f\xf8\xac\x91\x23\xe2\x2f\x58\x59\xb6\xc8\x70\x87\x96\x03\x66\x9f\x30\x6b\x93\x2e\xa9\x07\x8c\xcd\x5a\xd8\x72\xb5\xb5\x10\x90\xc7\x4e\x96\xf5\x8f\x41\x11\x20\xef\x89\x03\x21\x27\x04\x6f\x03\x6e\x71\xf3\xe3\xb6\xd9\x59\x46\x60\xbc\xbf\x6d\x63\x49\x11\x1b\x90\x21\xac\xd5\x71\x57\x9a\x7e\xb8\x0e\xab\x8c\xb2\x8f\x98\xb2\x74\x01\x4e\x3d\x66\x5f\xa7\xd3\x7f\x17\x90\xab\x26\x7b\x51\x5e\x49\x92\x02\x47\x65\xd2\x0a\x2a\x67\x26\x08\x32\x1e\xaa\x96\xa5\x55\xb2\x48\x01\x96\xac\x44\x5e\xee\xbc\x59\x09\xb8\x77\x65\xe4\x4d\xda\xb5\x7c\x0a\x48\x9c\xda\xf5\xc7\xa1\xc2\x17\x90\x6a\x53\xcb\xb6\x56\xea\x40\xc0\x33\x49\x5a\xfe\xeb\x55\x6c\x01\x3b\xa3\xb7\x95\x54\x7f\x58\x0f\xa8\x6b\xcf\x78\x65\x0f\xf3\x23\xc0\xd4\x88\x0f\x53\xe9\x87\x7f\x12\x48\xd5\x86\x07\xee\xac\xbe\x8c\x8a\xb5\xf3\xdf\x06\x33\xe5\x01\xf3\x2a\xf4\xf4\xf6\x8c\xce\x10\xd8\xff\xbb\xfd\xac\x57\x87\x18\x90\xa1\xcb\x71\xdd\x4e\x57\xfc\x1d\x81\x29\xec\xf6\x33\x8f\x24\x33\x01\x13\xa9\x25\x3f\x9e\x73\x30\x07\x1c\x57\x5e\x9f\x5f\x2c\x78\x18\x30\xe2\xc7\xba\xf3\xcc\xcd\x67\x01\x8f\x6a\x5f\x62\x91\x14\x46\x02\xa5\x95\x14\x7d\x77\xbf\x16\x05\x32\xe6\xfc\x3b\x9f\xd9\xf4\xf1\x02\x4e\x28\x72\xe8\xa9\x08\x3b\x02\xd2\x6c\x09\xb4\xbb\xf8\xc6\x01\x10\xd6\xcb\x64\x95\x31\xd9\x51\x14\x07\xda\xa9\xad\xb9\xeb\x7d\x00\x59\x85\xcc\xbc\x2e\x0b\xb7\x01\xd2\x48\x46\x94\xad\x4b\x7d\x05\xf8\x3a\x1e\x24\x07\xd6\x35\x00\x56\xc7\x13\x21\x8c\xa5\xed\x04\xf2\xf1\x9e\xd9\xce\xa4\xa9\x05\x64\xb4\x6c\xf9\xb0\x27\x2e\x4c\x0e\x50\xaf\x9c\x61\x93\x63\x0e\x1d\xe0\xae\xfd\x07\x7f\x0b\x58\xb6\xd4\xa1\xa6\xbd\x8b\xd2\x31\xff\x65\x02\x6f\x98\x77\x1e\x96\xdc\x7a\x04\x30\x5c\x71\xbf\xdf\x6d\x71\x3d\xc0\x3f\x79\x83\x16\xfc\x1c\x1c\x80\x75\xd4\xf3\xe6\x6c\xcc\xe2\x80\xac\xa6\x93\xd5\x1b\xc3\x15\x01\x17\x12\xec\x9a\x83\xcf\xa7\x90\x50\xff\xc0\xbd\xa9\x1f\xca\xa5\x80\x65\xb2\x5c\x63\x34\x6c\xcf\x00\x5f\xa8\x77\xec\xf8\xb5\x5a\xce\xab\x09\xa5\xc5\x5b\xee\xa2\xc0\xfd\xc8\xcb\xfd\xcd\x5c\xcc\x80\x67\xfc\x2a\x74\x69\x4c\x44\x01\x55\xc7\x07\xe8\x03\x4d\x7f\x12\xa8\xcd\xb8\xd1\x25\x3e\xc3\x14\xc8\xd8\xc7\x5e\x2f\xf4\x78\x6a\x27\xe0\x3d\xff\xee\xac\x35\xcd\xbb\x01\xef\x3d\x0f\xe4\xd5\x11\x13\x01\x24\x7c\xeb\x2d\xff\xc8\xff\x22\xf0\xfa\x5c\x2e\xc3\x87\xb5\x6c\x80\x49\x43\x3c\xa6\xe6\xec\xdf\x09\x14\xeb\xcb\xf1\x8f\xb9\x2a\x0a\x58\xc5\x28\x39\x64\xb7\xb4\x40\xa0\x11\x77\x49\x41\xa4\xeb\x17\x02\xd5\x5f\x45\x44\x11\xcf\x47\x08\x3c\xa1\xab\x5c\x90\x22\xf9\x98\x44\x2e\xa7\x7d\xed\xde\xd8\x51\x53\x01\x5e\x91\xf8\x31\x16\x2a\xc2\x00\x78\xa2\x36\x6f\xe1\x7c\x5e\x3c\x05\xce\x6d\x5e\x39\x5f\xc8\xf0\x81\x44\x2e\xe5\xf4\x07\x1f\x5d\xa8\x8c\xa8\x5b\x1e\xf1\xb4\x7b\xdb\xd9\x4f\xe0\xe2\x36\x93\xb1\x13\x66\xb2\x40\x86\xb7\x4e\xd0\x07\x41\x31\x51\x0a\x94\x1d\xdb\x10\x15\xd2\xb2\x0d\x70\x48\xe4\x24\x2c\xe6\x28\x02\xda\x5c\xe6\xeb\xbf\x9c\xac\x05\xc8\x2d\x7f\x93\xb0\x55\xd6\xa3\x80\xfd\xd5\x61\x0f\x55\x47\xf9\x7f\x21\x7d\xe6\xf3\xf0\xa1\xe4\x6e\x02\x9f\x54\xb8\xbb\x3d\xf6\xd0\x03\xe4\x57\x9d\x8c\x9d\xae\xab\xad\xc3\x19\x52\x67\xe6\x9b\xd5\xcf\xea\x7f\x50\x1e\xbc\x97\x77\x32\xfc\x28\x05\x4c\xb9\x38\x6c\xfc\x8d\x38\x00\x27\xb6\xee\xea\xba\x2b\x46\x07\x48\xb5\xf5\x63\x6f\xfb\xd8\x4f\x02\x23\x3e\xaa\x3d\xbe\x73\x9e\x1f\xc8\xd0\x50\xf9\x93\x96\xef\xb5\x16\xb0\x77\x9e\xaf\xad\x71\xa6\x16\x30\xcc\x2e\xb8\x9c\xe7\x3a\x0f\x60\x46\xab\x0e\x91\xb6\xb4\x03\xf0\xd1\x26\xb1\xef\x7f\x18\xd7\x03\x76\xf2\xbd\x70\x88\x60\xf8\x43\xa0\x3e\x9d\xba\xcc\x45\xc7\x4d\x80\xed\xf2\xef\x36\xd1\x15\x1e\x03\x6c\x52\x98\x70\xda\xc2\x6a\x46\x81\xec\x0c\x7e\xd5\xb1\x62\x26\x40\xae\x4d\x22\x79\x81\x5a\x1b\x01\xcb\x4a\x2e\x4b\xdc\x32\xe1\xa3\xc0\x9d\xa6\x3b\x6e\xaf\xc4\x57\x08\xbc\x3f\xb8\xf9\xac\x66\x1d\x15\xa0\x55\x1f\x7d\x9f\xff\x20\x35\xe0\xc7\xc7\xa2\x16\x11\xc5\x8a\x80\x4e\x3d\xe5\x45\xfc\x41\xf7\x01\x07\x97\x35\x5a\xee\xe6\xe6\x02\xca\xd3\x1f\x17\x7c\x2d\x41\x00\xde\x09\x34\xd1\x2e\xbe\x4a\x05\xf8\xf5\xd6\x54\x58\xe9\xe3\x49\x82\x8c\xba\x83\xf3\xe6\xe5\xbb\xfb\xea\xd0\xb7\xfc\x45\x69\x27\xf7\x77\x02\x23\x9f\xad\x73\x6b\x1e\xdf\x09\xff\x40\x25\xf3\x39\xb7\x12\xc6\xdd\xff\x13\x1b\x37\x28\x3c\x2c\xb2\xb3\xfa\x17\x2a\xd8\x54\x26\x39\x23\xd8\x00\xcb\xdf\x75\x17\xdc\xdd\xad\x07\x68\x70\x64\x48\x79\xfd\x63\x1a\x40\x29\xda\xc5\x94\x9b\x3a\x71\xff\xc0\xb2\xc5\x21\x8b\xd3\xe7\x87\x08\x7c\xbf\xfb\xda\x7e\xa9\xcf\x1b\x00\x1b\xd3\xfb\xd2\x62\xc6\xd3\x28\xf0\x9d\x35\xdf\xfb\x2f\x70\xb2\x32\x46\x29\xe3\x13\x81\xf2\x5e\x87\xeb\xbd\x59\x6f\x02\x6a\x24\xf8\x3b\x05\xd2\xe8\x00\x3e\x17\x79\x5d\xa9\x41\x97\x41\xc2\xc4\x24\xcf\x9c\xe4\xac\x3a\xc0\x77\x7e\xb4\xd5\xe1\xb2\x8f\x01\xdb\x19\x76\x05\xfe\x2d\x06\x0f\x59\xc6\xba\x54\x1e\x00\x9e\xdc\xd4\xf3\x6d\x5f\x49\x17\x81\x05\x99\xe9\x19\x21\xfe\x72\x40\x06\x67\x83\xe7\xc1\x2b\xc4\x04\x81\xfd\xe3\x07\x19\x8b\xda\xc5\x00\xe3\x94\xcd\xd9\x4e\xc8\x6c\x04\xfc\x30\x2c\x65\x90\xbb\xe6\x3a\xe0\x81\x78\xd9\x8d\x26\x3a\x7f\x08\xdc\xfb\x45\xbf\x32\x94\x77\x2d\x60\xa2\xec\x76\xed\x31\x6a\x7a\xc0\x9a\x5c\xcd\xf7\xe1\x01\x7f\x08\xfc\x12\xbf\x35\xeb\xc4\xa3\x02\xc0\xee\x41\x6b\x8f\xf0\x49\x6e\xc0\xec\xd0\x5e\x05\x7d\x73\x16\x40\xa5\xfb\x09\x1a\xaf\xd2\x57\x4f\x4d\x1c\x99\xc7\x0e\x1f\x2c\x05\x8c\x3d\x2b\x26\x92\x2b\xbb\x15\x70\xcb\x78\xdd\xd1\xe8\xaa\x29\x02\x8d\x6e\xb6\x1e\xe4\xb9\xd5\x03\xf8\x99\x69\x4f\x87\x8b\x77\x23\xe0\xf4\xcf\x1f\xde\xad\x9d\x39\x24\xdc\xae\x1e\x33\x14\x6e\xda\x03\xd8\xc5\xe3\xfe\xdb\x42\xac\x11\xb0\x36\xfe\xb6\xd2\x5a\xa1\x36\xc0\x49\xf5\x17\x67\x6e\x7d\x7d\x06\x68\xad\x65\xef\x33\x48\xdd\x06\x78\x6c\x38\xa1\x76\x45\xbc\x11\x70\xbf\xd9\x90\x5c\xaf\x7b\x13\xe0\xb0\x95\x75\x9b\xe3\xad\xd7\x24\xac\x8b\xbb\xb5\x42\x17\xd8\x00\x18\xce\xba\x26\x7e\x25\xb6\x09\xf0\x97\x12\xfd\x9a\xbd\xae\x57\x00\x2d\xb8\x06\xef\x37\xfe\x78\x47\xa0\x98\x67\xcd\xf1\xf0\x4c\x2a\xc0\x60\xc7\x73\xdf\x2c\xbe\xef\xa2\xc0\x90\xcf\x0c\x35\xbb\x63\x1a\x81\xbf\x5a\x6c\x7a\x63\x57\xaf\xe1\x30\x10\x7f\x16\x5f\xba\x07\xf0\x3e\x75\xfa\x81\x97\x41\x87\x28\x0a\xd5\x4a\xd2\xcd\x56\xcb\x6d\x80\x5a\x47\xbe\xd2\xd2\xc7\x95\x02\xda\x94\x5d\xc9\xd8\x12\x59\x4b\x42\xcf\xe1\xe4\xb2\x8b\xd6\x15\x80\x73\xac\x3a\x3b\x2f\xdc\x88\x00\x14\x5a\x3e\x3d\x38\xf4\xc8\x1b\x30\xc4\x4a\xe1\x9d\x86\xce\x57\x02\xdb\x42\x3d\x6a\xa2\xf6\x3a\x01\x4e\xbf\xde\x20\xfa\x6c\x30\x97\x84\xed\xee\x2b\xb7\x93\x4f\x96\x01\xfe\x36\xd9\xad\x75\x51\xeb\x1e\x09\x4f\x0e\x7f\x2a\x7a\xb4\xc1\x1e\x70\xf9\xd6\x3d\x8f\x4b\x97\xe3\x57\xbf\x7d\xd4\xde\x4b\x23\x24\xc0\xe3\x2d\x2b\xb7\x8d\x53\x3e\x01\x5e\xfc\xfc\x3e\x6b\x1d\xd5\x08\x20\x69\x4d\x56\xac\xea\x96\x5a\x40\xc3\x1c\x69\xc9\x3c\xfe\x7a\x40\xfa\x5b\x9c\xf1\xf5\x86\xc5\x80\xdf\x5e\xa5\x51\xdd\xd8\x96\x45\x81\x8b\xbd\xb2\x9a\x87\xbd\x7a\x08\x32\x18\x2b\xfb\xeb\x7b\x6a\x99\x81\x0c\x1e\x63\xf1\xfe\x80\xd6\x29\x02\x9b\x72\x5f\x3d\x6c\x3b\xfe\xaa\x0e\x1d\xbc\xe5\x1e\x8c\x3e\xd1\x05\x32\x0a\xc6\xae\xcf\x7d\x5e\x3b\x4b\x60\x77\xbb\xc1\x4f\xb9\x8f\xd3\x04\x76\xda\xef\x38\x29\x7c\x71\x2b\x20\xa9\x4c\xfa\xd4\xc0\x51\x43\xc0\x7d\x02\xe1\x22\xcd\xf3\x48\xe0\xdb\x70\x11\x13\xd9\x51\x5e\x20\x43\xf3\x26\x6b\xaf\x7b\xe9\x12\x81\xc3\x91\x1c\x11\xd9\x1c\x24\xc0\x54\xad\xb2\xfd\x5c\xd9\xb9\x24\x74\x8b\x59\x63\x3c\x41\x4a\x07\x0c\xff\x7e\xe8\xfc\xd7\x55\xa4\xa7\x86\x4a\x45\xb6\x78\x03\xde\xf5\x35\xb3\xb1\x50\x5d\x22\xf0\x8c\x4b\x8a\xc5\x9a\xed\xb3\x04\x1e\xbf\xb0\xae\x73\x2a\x8a\x1e\xb0\x99\xde\x74\x8f\x38\x75\x15\x60\xd6\x71\xa1\xd1\x56\x7a\x2e\xc0\xf6\xc4\xdf\x96\x8e\x46\xfc\x80\x66\x1f\x34\xdb\x46\x5c\x2f\x01\x6a\x29\xa9\xbe\x80\x45\x37\x0a\xf0\x3b\x98\x4a\xbc\x7e\x77\x08\xf0\x67\x89\x8d\xaa\xd2\xb0\x28\x60\xec\xd2\x39\xcd\x86\x0a\x55\x40\x05\xe5\xfa\x9e\x00\x9a\xc3\x80\x0a\x29\xbf\x65\x4a\xd8\x4d\x00\x3d\x68\x7c\x9f\xd5\x30\xf7\x01\xfa\x7c\xa7\xb3\xab\x73\xef\x03\x14\xa7\xe2\x2c\x99\xf9\x9d\x05\xb8\xbb\xc6\xf2\x61\xed\x6a\x61\x0c\xcc\x8b\x36\xac\x6a\x04\x64\xe5\xd6\xe1\xfc\x8b\x4e\x21\x97\xce\x6b\x2d\x8d\x80\x67\xac\x0f\x4b\xff\x2d\x55\xae\xb3\x7b\xa4\xff\x64\x01\x3e\xac\xad\xb3\xb1\x8d\x2b\x00\x5c\x4f\xc5\xba\x35\xcd\x87\x06\xf0\xe7\xa6\xb8\x27\x78\x9e\x0e\xb0\x53\x24\x07\x18\x65\x78\x01\xb5\xe6\x5f\xf6\x71\x1a\xe8\xfe\x0b\x7b\xe4\xf3\x77\x6e\xf9\xb0\x42\x20\x55\xbe\xc8\x21\x6e\xce\x29\x02\x2b\xb2\x14\x78\xef\x16\x3e\x02\x3c\x75\xfe\x9b\x22\xbb\xde\x13\x12\x2e\x44\xd7\x74\x2a\x41\x11\xe0\x28\x7d\xce\x78\xf9\xee\x61\xc0\x5d\x65\x12\xa7\x2b\x56\x31\x2e\x3e\x13\xf7\x85\x31\x8b\x84\xc7\xb6\x5c\xc8\x2a\x5b\x2d\x87\x9e\x3b\x7d\x52\x7f\xfa\x1a\x70\x2d\x43\x30\x83\x12\xb3\x29\xe0\x6d\xfe\x58\xfa\xca\xcc\x2f\x04\xaa\x3c\x69\x3c\xe6\xfc\x4d\x06\x30\xab\x45\xf1\x3a\x6f\xde\x4e\x40\xae\x87\x1a\x41\xc3\x7f\x58\x01\x8f\xfe\x54\x51\x90\xf3\x0c\xa7\x00\x5b\xc6\x5a\xde\xb3\x95\x67\x00\x55\xe8\xfc\xfb\xc7\x8f\x50\x03\x6e\x49\xb9\xda\x3c\x76\x24\x8e\x02\x30\xe4\x60\xb3\xed\x93\x19\x20\xce\x4e\x08\xca\x86\x26\x03\x8e\xcb\x69\x6c\x9b\x66\x6e\x04\x34\x79\x97\x11\x5a\xd7\x55\x0e\x58\x20\xda\xd5\xfa\xb7\xdc\x1e\xb4\x9f\x92\x17\x0f\x05\x7c\x99\x57\x12\xe5\xa9\xa1\x0b\xd8\xa2\x58\x9f\xab\xac\x11\x0e\xa8\xf9\x7d\xf7\x33\xc1\x23\x19\x80\xb9\x9b\x5e\xec\x8d\xfb\xd5\x44\xc2\x16\x49\xb3\x38\xbb\x20\x06\xc0\x96\xa5\xfa\xec\x4d\xa7\xeb\x48\xf8\xa3\xfb\xdd\xc4\xb7\xfb\xd4\x80\x69\x51\xdb\x4d\x7d\xcd\x26\x00\x35\x65\xac\x7d\x76\xf7\xbd\x01\x7c\x1d\x1d\xc6\xc4\xe6\x56\x02\x78\x21\xa4\x23\xfd\xd7\xa1\x12\x40\x11\x8e\x9b\x5e\x95\x6b\xfc\x01\x33\x98\x3b\x38\xf5\x26\x65\x01\xc3\x97\x4a\x22\xa6\x5d\xb6\x02\x0a\xa8\xf8\x4a\x7e\xf4\xbb\x44\x81\x70\xf7\x30\x4f\xfa\x16\x7f\xc0\x4d\xf1\xf2\x75\x4c\xdf\x27\x08\x0c\xd3\x49\x63\xfc\xc9\x48\x03\x98\x3c\xa9\x3c\x98\xf5\x34\xec\x5f\xa0\xce\xaa\xdf\xcc\x6c\xa4\xf4\x2f\x74\xbb\x44\x9e\x73\xb8\xa5\x40\x81\x00\x27\x7a\x1e\xef\x42\x66\x40\xf5\xa8\x75\x72\x7a\x0a\xac\x14\x48\x19\xea\x8e\x1e\x6b\x9d\x26\xfe\x81\x02\xc5\x7d\x26\x6a\x57\x74\xe0\x1f\xc8\x67\x75\x61\x81\x8c\x77\x75\xa8\x71\x72\x9b\xad\xa2\x54\x08\x20\xcd\x81\x53\xde\xc3\xc7\x45\x01\x67\xbf\x8c\x3c\x38\x43\xe7\x0c\x58\xb3\xdc\x31\x1b\xb5\xce\x00\xf0\xe8\x87\x07\xaf\xce\xed\x37\x02\x14\xa4\xba\xda\xef\x63\x1a\x0c\x18\x75\x2a\x9f\xc5\x67\xda\x14\xf0\x85\x00\x67\x03\xcd\xbb\x4d\x80\x5d\x92\x1d\x22\xc9\xf9\x35\x80\xfd\x22\x26\xbe\x06\xcb\x1b\x01\xf7\xd9\x0f\x6f\x3b\xfe\x45\x18\x30\xf2\x93\x80\x47\x9a\x9e\xd6\xbf\x70\x98\xe7\x54\xaa\xe0\xba\x47\x04\xfa\x1f\xac\xe1\x52\xf9\xf5\x82\x84\x46\x85\x74\x7d\xbe\xf0\x84\x84\x8b\x56\x61\x9e\x92\x2f\x9a\x48\xf8\x24\x52\x57\xe2\x2f\xb6\xbb\x4c\xb7\x4b\xac\x42\x89\x36\xdc\xe2\x2f\xb8\x95\x77\xfb\x8f\x17\xe7\x93\x50\x44\xce\x36\xda\xde\xb6\x82\x84\xcd\xe1\x1f\x7e\xd9\xad\xc2\x4a\x37\xdb\xb0\x28\x24\x96\x84\x57\xd9\xd7\x4b\xff\x1d\xfd\x07\xd7\x10\x36\xe3\x9f\x8b\x71\x80\xaf\xd8\xbb\x9f\x0f\xb3\xd4\x93\xb0\x75\xaf\x47\xf2\x61\xab\x28\x8a\xc2\x18\xf1\x20\xf5\x2f\xde\xc9\x17\x0b\xea\x9d\x49\x02\x6c\xaa\xf3\xbb\x15\x5c\x7d\x13\xd0\xfe\xcd\x83\xba\xf2\x6e\x75\x0a\xd8\xea\x5e\x60\xa3\x09\xe5\x00\xd4\x55\x34\x29\xdb\x99\x62\x0c\x98\x55\xc2\x50\x53\x30\xbf\x05\xf0\x89\xf6\x87\xed\x96\x2e\x3a\x14\xb8\x53\xb2\x40\x53\x10\xf5\xae\x0e\xef\x65\x65\x88\x96\x95\xb2\x03\xd6\x3d\x6f\x55\xec\x7a\x21\x0f\x08\xfe\x3e\x6f\x38\xd9\x12\x00\x47\xda\x88\x51\x39\xa1\xc3\x80\x3f\xf5\x94\x9e\xba\x68\xba\x03\x06\xb6\xbf\x38\x5c\x73\xe8\x33\x20\xfd\x52\x07\x41\x95\xd3\x0e\x98\x6b\x15\xb3\x3b\xee\x41\x3b\x20\x0f\xbb\xc3\x47\xa6\x0d\x2d\x80\x82\x82\x0c\x27\xf5\x77\x54\x00\x96\x85\x32\xca\xb1\x3a\x3f\x06\xf4\x16\x8c\xff\xb0\x57\x7d\x8c\xc0\x65\xb3\x57\xcd\xc0\xeb\x03\x64\x6c\x90\xde\xcf\x19\x60\x16\x45\x90\xd1\x5b\x5c\x68\xa8\xb8\xb4\x1f\xc8\xa0\xdb\xe0\xf4\xf1\x88\x0b\x27\xe0\x78\x60\xad\x8b\xe9\x17\x3b\xc0\xe0\x83\x0f\x22\xd4\x69\x07\x00\x99\xdf\xf6\xf8\xaa\xac\xc2\x55\x65\xe0\x85\x7a\x77\x25\xa0\x59\xca\x82\x62\xc2\xda\xfb\x80\x2f\xbb\xf3\x9e\x2a\xe9\x68\x01\x92\xbe\xb0\x7c\x3d\x35\x32\x44\xe0\x8d\xa9\x59\xbe\x7c\x97\x78\x40\xcd\x48\xc3\xbb\xcf\x0a\x1f\x93\x70\xff\x91\xd4\x54\xe7\x88\x05\xc0\x62\x5a\x01\xf1\x13\xab\x88\x1c\xed\x35\x91\x37\xae\x02\xb4\x26\xca\xb5\xaa\x3f\x75\x03\xee\xb4\x2d\xbb\x24\x62\xfd\x1e\xf0\xae\x68\x9b\xef\xb4\x26\x37\x20\xe7\x92\x78\x81\xa7\xb2\x04\xa0\x81\xfb\xbb\x8f\xe3\xb4\xf7\x00\x3b\xd4\xfd\x38\xaf\x9d\xd3\x01\xec\xc9\x4f\x70\x2e\x6c\x78\x0e\x98\xa8\xd3\x76\xc3\x5b\xec\x25\x09\xb7\xba\x38\x3e\x61\x2f\x2f\x05\x8c\xb1\xde\xe8\x25\xe5\x54\x0e\x38\xdd\x24\x5a\x2b\xdf\x1d\x0c\x78\xc7\x63\xad\x3a\x29\x3c\x12\xf0\xce\x54\x90\xc7\x59\xab\x2d\x80\xbc\x6f\xdc\x2e\x26\x24\x2a\x03\x3e\xe7\xf5\xd5\x1e\x13\xaf\x07\x74\x9c\x8e\x9c\xdd\xde\x78\x8b\x84\x06\x06\x87\x37\x99\xf6\x55\x00\xb6\xcd\x34\x1a\xb1\x4b\x86\x01\xa6\x5d\x68\x3a\xe5\x9b\xfa\x84\x84\x75\x81\x7e\x63\x7f\x1e\xf9\x00\x3a\x2c\x3b\x3d\x89\xdd\xe0\x00\x78\xbb\x39\xb2\x55\x69\xf5\x10\xf0\x60\x57\xe0\xed\x0d\x35\x52\x80\xe2\x84\xe9\xd4\x8f\xe5\x32\xc0\x8e\x11\xdf\x41\x85\x88\xab\x80\x7c\x8b\x3a\x76\x29\xd6\x57\x01\xdf\xee\x60\x4d\xd1\xae\x8e\x05\xf4\xf6\xda\xef\xf4\xe3\xca\x55\xc0\x1c\xeb\xd3\xa1\xbb\x26\xb2\x00\x55\x7b\x3c\xf6\x9f\xdb\xe8\x40\x01\x07\x03\x76\xfb\x43\xc1\x16\x80\x46\x53\x21\xec\x5b\xba\xf4\x01\x57\x1e\x73\xbb\x2b\x16\x97\x01\xbe\xdf\xb8\x9f\xfe\x67\x5b\x3a\xe0\xb4\xfd\xd1\xa7\xc7\x1b\xd3\x61\x59\x51\xf3\xf3\x7c\xbb\x0f\xe0\xe8\xda\xca\x64\xa1\x6c\x36\xc0\xab\xda\x82\x03\xc1\x03\x21\x80\xc6\x5f\x9e\xd7\x31\x6b\x87\x02\x6e\xfd\x98\xcd\x15\xb0\xa9\x89\x02\x5a\x29\xf3\xfd\x54\x43\xec\x80\x03\x9b\x9f\x7e\x9a\xf0\x7c\x49\x90\x71\x2f\xae\x21\x6b\x62\xe8\x4d\x1d\xce\xcd\x4a\x6c\x1c\x9c\x5c\x07\xf8\x7c\x73\x83\xc2\xc3\xa2\x32\xc0\x65\x4d\x14\xd4\xcc\x0f\xf9\x17\xce\x99\x33\x05\x56\x37\x47\x03\x9a\xf1\xda\x36\x55\xfd\x1f\x8c\xb4\x9d\x65\xcd\x3a\x94\x07\xc8\x23\x49\xea\xcc\x3b\x92\x07\x78\x5f\xe8\xad\x18\xbd\xfb\x01\x0a\x9c\x51\xe1\xca\x88\xe7\x54\x07\x5c\xbc\x72\x69\x5c\xae\xe2\x3a\xe0\xe9\x0f\x13\x0c\x47\xd9\x77\x53\x60\x69\xaa\x3f\x81\x6f\x03\x1d\xa0\xd0\x90\xb5\xb5\xd1\xe3\x3b\x80\x77\x57\x1a\x5f\x27\x2f\x5a\x51\xa0\x44\xf5\xd0\xb6\xb7\x3c\xa2\x80\x45\x87\xd6\xa5\xe4\xef\xab\x06\xcc\xe0\x79\xdb\x44\x57\xff\x02\x90\x6d\x87\xff\xc0\x6b\xc7\x60\xc0\x78\x05\x8b\x36\x87\x86\xcb\x80\x77\x6a\x18\x9a\x2c\x5d\x1d\x01\xe9\xbf\x31\x16\x5d\x51\x78\x52\x87\x4f\xbe\x35\xd0\xad\x5c\xad\x04\x8c\x2c\xda\xb8\xae\x57\xb3\x01\x30\x46\x20\xc9\xe4\x82\x55\x15\x45\x49\x17\xdc\xef\x3b\x4f\x95\x01\x78\x7f\xae\x74\xfa\x83\x44\x06\xa0\x72\xf6\xc3\x53\x77\x46\x32\x01\xb3\x6e\x88\x7c\x7c\xb9\x3a\x52\x2f\xef\x69\x5c\x2c\xcd\x04\xd4\x14\xbb\xde\x37\xb5\x96\x1d\xb0\x3c\x7e\x67\x7c\x8b\x6f\xd3\xbf\xb0\x47\x23\x8d\xef\x9a\xe7\x06\x40\xa3\x53\xa5\x62\x4b\x1a\x72\x80\x93\xce\x34\x9a\xdc\x1d\xdc\x80\xaa\xe6\x9b\x32\xa5\xb7\x6a\x53\xc0\x76\xa4\xd4\x8d\x51\x6c\x89\xc0\xab\x0a\x57\xdc\x52\x72\x39\x00\x8b\x99\xce\xbd\x4e\x0f\x09\xa3\xc0\x35\x53\x57\x4f\x43\xcd\x32\x40\x9f\x92\x35\xc2\xf5\x0a\x2f\x09\x9c\xc9\xdb\x32\xb0\x5e\xad\x11\xf0\x92\xe3\xfa\x27\x7f\x41\x7a\xfd\x21\xe1\x2f\x4e\x49\xea\x5a\x6f\x3b\xe3\xf7\x2f\xac\xb0\x68\x8a\x5f\xfa\xc1\x0f\x98\x3c\x2b\xf6\xae\x4b\x81\x1e\xd0\xf3\x9c\xf9\xb0\xba\xd9\x2f\x02\x67\x62\x69\xee\xd7\x7e\xfa\x4d\xa0\x5c\xa1\xb1\x46\x8c\x25\x35\x60\x7e\xff\xdc\x8b\x89\x8d\x03\x04\x4a\xbc\xbf\x65\x15\x3e\xfe\x8b\xc0\x03\x1b\x23\x9f\x25\xb1\x6a\x02\x66\xba\x18\xbb\x75\x1c\x58\x03\xb8\xe9\x4c\xa9\x00\x6b\x7a\x3c\xa0\xde\x1a\xba\x7d\x5e\x52\x3a\x80\xd9\x45\x39\xd2\x1f\xe3\x1e\x52\xc0\x2f\x54\xa0\xd2\xf8\x6e\x22\x20\x89\xde\x36\x84\x4f\xf8\x03\x81\xbf\xb7\x66\x3a\x8f\x72\x0d\x11\xc8\xae\x77\x9e\xdd\x72\x54\x0b\xf0\x97\xe1\xe9\x80\x77\xe1\x06\x80\x4a\x5e\x34\xfe\x4b\x03\xf3\x04\x8a\xc7\x3b\x4f\x32\x04\x9f\x26\x61\x9d\xc7\xb6\x89\x9d\x4c\x8f\x01\xd7\x57\xe6\x54\x3d\x8d\xbd\x02\xd8\x76\x6f\x3f\xed\xdf\xc2\xb2\x99\xcd\xe3\x3c\x73\x11\xa0\x5e\x6f\x9c\x37\x47\x77\x11\xa0\xe5\x67\x0c\x0d\x38\xa0\x09\xe8\x78\x98\xf3\xd8\x2f\x7d\x46\x40\xbd\x74\xb9\x10\x9f\xda\x7b\x14\xf8\xbd\xc6\x4e\x38\xed\x42\x2a\xa0\x9f\xac\x06\xef\xbc\x59\x2a\x09\xaf\x9d\xee\xf8\xdd\xcb\x39\x4b\xa0\x30\x57\xd2\x3b\x51\xb3\x66\x40\xb9\x3d\xaf\x33\x22\xc4\x5e\x93\xf0\x71\x85\x6b\xd3\xab\xe3\x55\x80\x2c\x74\xcb\x69\xe7\xdf\x37\x93\x30\x16\x75\x42\xfe\x5e\x73\xce\xb8\xf4\x93\xb3\x68\x1e\x09\x0b\x44\xb8\x9e\xf2\xa4\xd4\x03\xe6\xd7\xd7\x7e\x16\xd8\x7c\x9f\x84\xec\x49\x45\x07\xd2\x4f\x71\x00\xc6\x8f\x0a\x6f\xb8\xde\x28\x0d\x28\xd7\x91\xba\x55\xf5\x2b\x3d\xe0\xfc\x96\xaf\xd7\x04\xf8\x05\x01\x0d\xeb\xd7\xa8\x4a\x44\x7c\x20\x91\x8b\x93\xfc\xc4\xe0\xc3\x07\x9d\x04\x2e\x7f\x35\x32\x2d\x2a\x8e\x00\x5c\x12\xd2\x96\x69\xcd\x6b\x02\x24\x74\x25\x2f\x2e\xde\x35\x02\x94\xbb\x7e\xba\x38\x66\x38\x08\x70\x34\x5a\x51\xf7\x4d\xcb\x15\xc0\xf3\x1f\x1e\xe9\x9d\xaa\xdf\x02\xe8\x70\xb2\xc2\x5c\xe7\x91\x11\xe0\x61\xda\xbb\x73\x62\xd3\xca\x80\x26\x5a\x55\xed\xc5\x19\xb2\x80\xb9\x7d\x04\x87\xac\xd7\x06\x40\x9a\xa8\x73\xea\x05\x47\x4d\x01\xdf\x66\x5c\xcd\xe1\x3d\x3c\x4b\xa0\x78\x6e\xe3\x63\xda\x18\x0d\xf8\x07\x9c\xdf\x6f\xdb\xb6\x61\xaf\xd4\xbf\xd0\x1b\xa1\xfb\xf4\xcc\x02\x12\x64\xb4\x0f\x8d\xcf\xab\x37\x47\x00\x19\xec\xb3\x93\xc2\x0c\x31\x32\x80\x54\x81\x7a\x8c\x57\x24\x2a\x01\xf7\x7f\xb9\x37\xbb\x2c\x55\x09\x78\x56\xe8\x85\xe7\x93\xc8\x72\xc0\xe7\xb7\xdd\x0d\x78\x55\x2a\x01\x07\x7c\x85\x13\x07\xf5\x23\x00\x2d\x2e\x98\xd9\x5f\x3c\x10\x01\xf8\x79\xb4\xcd\x30\x20\x9e\xb2\x3c\xe5\x4f\xfc\x98\xbb\xff\x06\x20\xf7\x97\x47\x44\xa6\xf6\x0d\xc0\x89\x7b\x8f\x3f\x85\xb3\x05\x03\x9a\xef\xf8\xb0\xae\xa0\x87\x13\x30\xe4\x42\x7e\xc4\x77\x25\x65\xc0\xdb\xc2\x97\xdd\x04\x85\xcd\xff\x05\x93\x8f\x07\xdd\x19\x5a\x9c\xff\x85\xe4\xe2\x3d\x8a\x99\x6a\x9c\x14\xe0\xec\x99\xca\xcd\x5b\x42\x02\xa7\x2b\x66\x7c\x0e\x9c\x78\x00\x58\xfe\xc0\x22\x77\xdc\xf9\x01\xe0\xbb\x35\x27\xb3\xaf\x1a\x7a\x53\x40\xa6\x80\xeb\xa8\x6c\x0f\x3b\x05\xf4\x3f\xf1\x98\x24\xf5\xce\x12\x58\xcf\xd2\x25\xb9\xf7\x48\x0d\xe0\xe4\xcb\x12\xbb\x18\x95\x7a\xc0\x34\x2f\xee\x66\xaa\x88\x7a\xc0\x1e\xb5\x2c\x9f\xdb\x47\x42\x00\x0d\x38\x84\xa2\x37\x5a\xa5\x03\x32\xa9\xaf\x79\xf0\x35\x3a\x13\x30\xf0\xf8\x80\xbd\x5f\xaf\x39\x05\xe8\x7a\xf9\x2e\x76\xde\x96\x06\xa4\x7e\x43\xb7\xa6\xaa\xd6\x1e\xf0\xfd\xae\xed\xfa\xa9\xaa\xd5\x80\x43\x3a\xb4\x17\x77\xaa\x54\x03\x0a\x8d\xd3\xfa\x6a\xac\xa2\x4d\x54\xe6\xbd\xef\x6c\x0c\xe0\x17\x85\x85\xa8\x53\x33\x31\x14\xc5\x54\x66\xdb\xc7\xea\x05\x36\xc0\x17\x81\xde\x1b\x3c\x38\x1e\x03\xaa\x1d\xdf\x54\xec\xfe\x7f\x90\x22\xcf\xef\xfa\x59\xc1\x15\xd0\x5f\xc0\xd8\xd5\x48\xd8\x95\xa2\x6c\x89\x0f\xda\x94\x16\x3b\x46\x22\x97\x78\x39\x33\x8e\xe1\x3b\xd2\x14\x58\xef\xda\x6b\xad\xbe\xb7\x88\x02\x59\x5b\xeb\x0d\xfe\xe2\xe9\x22\xf5\x8a\x38\x91\x0f\xb8\x83\x71\xfc\x92\xc6\x6a\x91\x88\x6b\x19\x17\xb8\xe9\x02\xd8\x61\x15\xb5\xbc\x64\xe6\x4c\x51\xfe\x83\x91\xd0\x37\xa3\x9a\x2e\x5d\xc0\x90\xf7\x59\x7a\xea\xcd\x25\x80\x9c\x8d\xbb\xfc\xaf\xe6\x56\x02\x96\x28\x44\x6b\x6e\xe4\x2c\x05\x4c\x66\xd5\x37\xb9\xb2\x5a\x3e\x89\xd7\x8b\x1a\xe3\x19\xc0\x74\x37\xd3\x9e\xb3\x69\xa7\x00\x89\x98\x89\xad\x02\xb7\xcf\x02\x8e\x6d\x34\x56\x89\xbf\x71\x06\xb0\xe1\xc1\xe5\xc3\xc4\xad\xb3\x80\x5b\x8f\xac\xd5\xd0\xac\x5e\x20\xd0\xc6\x47\x95\x31\x2a\x42\x19\xfe\x81\x7e\x41\xee\x16\xf9\x08\xe7\x7f\xe1\xcd\x96\x0b\xea\x1b\x1b\xb7\x51\x20\x4a\x86\xf9\x67\xa8\x8c\x06\x05\xaa\xdf\xd7\x24\x68\xaf\xee\xec\xfc\x65\x65\xef\xd4\x76\x34\x02\xf6\x5b\x9a\x2a\xf4\x3d\xcd\x07\x8c\xf5\x0e\xe3\x78\x18\x51\x08\x68\x21\x76\x54\x33\xa5\xb0\x10\x50\xcf\xe1\xa3\x91\x41\x74\x19\xe0\xb0\x93\x58\x6e\xd3\xeb\x46\xc0\x88\x07\x32\x62\xd6\x4f\x6b\x00\x19\x39\xfb\x3b\xfc\xbf\x95\x02\x3a\xd1\xfb\x1f\xe3\xcb\x6f\x04\xf4\xb2\x9a\xfa\xf4\xb7\xa4\x49\x09\x98\xdc\x1c\x6d\x04\x94\xb6\xed\xd9\x70\xb3\x44\x0e\xd0\xc2\xad\x5b\xab\xa4\x78\x9c\x40\xc7\xe9\x7b\x24\x8e\x8b\xd4\x80\xe5\x31\x76\x49\xaa\x5a\x8d\x80\x23\x93\x83\x82\x29\x69\x75\x80\x3d\xd9\x74\x8a\x4e\xcb\x55\x80\xc1\x57\x1f\x66\x14\x27\xd7\x01\x66\x24\x33\xad\xc4\x33\xc5\x00\x3e\xa8\x32\xe9\xdd\x11\xd0\x4c\x42\xa3\x5b\xc7\xe6\xc2\x74\x63\x01\xb7\x25\xde\x7e\xab\xb1\xfa\xaf\xf6\x89\x97\x5e\xd5\xf1\xa7\x2c\x80\xc2\x29\x9f\x53\x1d\xde\x1b\x01\x26\xe6\x7b\x8e\x5e\x0a\x4b\x06\x14\xff\xaa\xbd\xf8\xfe\xd9\x35\x0a\x38\xf7\xaf\x24\xed\x93\x78\x52\x87\x27\xae\x8f\x9f\x3a\x91\x9f\x47\x42\x93\xb3\xa5\x7d\xd7\xca\x76\x01\xd6\x97\x7c\x71\x7e\xe9\x1c\x09\x58\x22\x55\xe3\x6d\x98\x64\x41\x22\x17\x99\x4c\x86\x3c\x8f\xdf\x07\x00\xb9\xb8\xd6\xa6\x7d\xf5\xfe\x41\xa0\xd7\x81\xf3\x16\x8f\x5b\x0e\x02\x19\xa5\x21\x6b\xd2\x5e\xef\x14\x02\xd4\x38\xed\x29\x61\xf8\x95\x00\x74\x49\xd1\xb9\x54\xfe\x92\x0b\x50\xd8\xd6\xf5\x52\x89\xd8\xa5\x3a\xbc\x68\xf9\x58\x3c\xcb\xd6\x00\x50\xc4\xe1\xfa\xdd\x8b\xef\x65\x00\x6f\xdb\xdf\xb4\xe2\xfb\x26\x01\x78\x2c\x96\x8f\x2e\x93\x54\x4f\x42\xdd\x5d\x35\x66\x02\x5c\xa5\x80\xdc\xf5\x71\x82\x1d\xde\x37\x01\xf7\x0b\x68\xdc\xd9\xfb\xee\x3b\x81\xd0\x3a\xae\x10\x51\xa2\x09\x38\xf4\xca\xe7\xe4\x32\xab\x05\x20\xbd\xc8\x45\x2e\x66\x81\x12\xc0\x8e\x9f\xeb\xbe\xb8\x28\x93\x00\x47\x06\x3b\xd6\x19\xbf\x2a\x01\x54\x8d\xbf\x3f\xbd\x22\x75\x0e\xb0\x31\x24\x6e\x4f\xee\xba\x73\x14\xe5\x64\xef\xaf\x1b\x3b\xe7\x39\x01\x2b\x62\x34\x0c\xb2\xc3\xef\x01\xce\x0f\x49\x73\x90\xf8\xae\x03\x5e\x5e\x28\x5e\x1f\x65\x1d\x0d\x18\x90\x44\x08\xa4\xa4\xa4\x00\x4a\xba\x19\xc8\xca\x72\x3d\x01\xdc\xd9\xa5\xb0\x89\x7a\x75\xa9\x90\x93\x12\x0b\x50\x11\xb8\x4c\x42\x66\xe5\x37\xce\xb1\x22\x4f\x00\xbd\xb2\xcb\x9b\x1e\x08\x16\x03\x56\xce\xc5\x5a\x1a\x9f\x57\x02\x3c\x6e\x79\xfb\xb3\x84\xc4\x0b\x40\x99\x74\xf1\xfe\xf4\x67\xc3\x04\x46\xf5\x67\x06\xd1\xfc\xf8\x45\xe0\xc7\xa9\xdb\xd3\x9d\xda\xeb\x00\xdb\xe4\x0d\x25\xd6\xae\x7c\x23\x50\x8b\x5d\x33\x34\x89\x3f\x1c\x30\xfd\x45\xd6\xbc\x14\xcf\x3d\xc0\x94\x0f\x3f\xb8\x8c\x63\xef\x02\x5e\xa8\x09\x4d\xd2\xdb\xf7\x18\xd0\xbe\x82\x66\x59\x77\x15\xd5\x1d\xc2\xe1\xdc\xab\x2b\x5f\x5d\x58\xd4\xa3\x06\xe6\x13\x24\x6c\x5b\x62\x63\xde\xe9\x66\x03\x64\xb0\x89\x32\xd7\x3f\x79\x5d\x4f\x81\xa0\xed\x5f\xef\x0c\xfd\x9f\x92\xb3\xfe\x16\x7f\xe9\xa6\x50\xc0\xea\x33\x23\x0f\x12\x36\xd2\x03\xfe\xb9\x56\xd0\x72\xda\xb0\x11\x70\x92\x34\xb5\xe5\xec\x2a\x2a\xf6\xf1\x98\xfe\xc5\xfd\x67\x1e\x41\x1b\x36\x37\x00\x32\xb2\x85\xdd\xf8\x8b\xcf\x29\xee\x9d\xea\xe9\xd7\x28\x70\x49\xe7\xf0\x46\x2b\xa3\x4b\x80\x57\x77\x8a\x7e\x1a\xcb\xd0\x07\xcc\xe5\x78\x51\x5b\xc9\x7a\xe1\x5f\x98\x48\xfa\x72\x81\xd9\xb6\x0c\x10\x19\x92\x3a\xd5\xad\xa9\x00\x5b\xf3\x73\x15\x07\xbe\xe6\x03\x4e\xb8\x5c\x3d\xe8\x4a\x1d\x05\xa8\x9d\xd2\x7e\x33\xae\xdf\x1b\x30\xd0\x57\xbd\x73\x73\xdd\x57\x02\xb5\x92\xe9\x68\xcc\x2f\x67\x02\x0e\x98\xcd\x4e\x1c\xf8\x3f\x60\xd3\xbc\x5d\xe4\xe3\x6b\xfe\x2f\xdc\xfa\x2a\x3e\xd8\x93\x2a\x0d\xa8\xf0\xa0\xae\xc5\xe1\x4f\x20\xe0\x15\xf7\x03\x77\xe6\xd9\x42\x49\xd8\x57\x34\x9f\x7b\xb3\xba\x10\x50\xfd\x32\x7d\xee\xe1\x92\x42\xc0\xd9\xa3\x9c\xcc\x6f\xee\x65\x01\x8a\xc5\x6e\x2e\x4a\x58\x1d\x5d\xa9\xa9\x48\x60\xb1\xb5\x05\x24\x1a\x27\x77\x0d\x33\xda\x02\xaa\xec\xfe\xc1\xfb\xc8\xe3\x2a\x89\x3c\x8a\xde\x79\xef\x4b\xb5\x94\x07\xa0\xad\xda\x57\x45\x4e\x57\x4f\xc0\x2c\xb7\xbe\x6d\x85\x53\xfe\x24\xec\x1a\xca\x31\x2e\xb8\x3e\x4d\x20\xbf\x8e\xe3\xcd\x6e\x0e\x02\xb0\xc5\xf9\x61\x5f\x45\x19\x0b\x05\xee\xad\xbc\xda\xf5\x39\x5c\x1e\x90\xe7\x8f\xcf\x98\x46\x9f\x19\xe0\xdb\x8b\x6e\x6e\x36\x1a\x48\x60\x9b\xbc\x86\xa6\x43\xdd\x32\x81\xf3\x06\x31\xd8\xbb\xe9\x26\xe0\x71\xba\xfe\x44\xf3\xdd\x59\x14\x28\xe9\xf7\x0a\x71\x28\x3c\x08\xa8\x22\xec\xba\xf5\xbc\xb2\x29\x20\xcd\xde\x37\x7d\xa6\x3f\x2d\x29\x90\xd4\x0f\xa2\xb7\xb8\x9b\x48\x78\xc7\x6f\xae\x6b\xf3\x4c\x23\x09\x27\xcb\x2e\xba\x68\x3c\x79\x46\xc2\x8d\xa7\xf2\x6c\x91\xe6\x02\xe0\x2e\xbd\x5c\xda\x0b\x3e\x6e\x80\x6c\xc1\xeb\xab\x18\x7c\x03\x48\x48\x77\xf6\xf0\xee\x90\x82\x20\x12\xbe\x90\xbc\xa9\x50\x91\x12\x40\x42\xef\xfc\x9e\xe2\xef\xa1\xde\x80\x07\xb7\x16\x3b\xea\x9f\xf6\x05\xbc\x97\x25\x55\x64\x21\xe3\x05\x28\x78\x8b\x7a\x93\x93\xbe\x33\x09\xc7\x6c\xc6\x5b\xef\x33\x05\x00\x3e\x30\xca\xa1\xe3\xbf\x49\x05\xc8\xd3\x1a\xe4\x17\x75\x7e\x9e\x20\x43\x7c\x62\xac\xba\xd7\x62\xb8\x0e\xf7\x45\xba\x9f\xd0\xcc\x6b\x06\x1c\x77\x6d\xdb\xcc\x1e\xfc\x08\x50\x77\x89\x4a\x67\x4d\x4c\x36\xe0\xaf\x2c\x53\xef\x28\xb1\x12\xc0\x9a\x53\x35\xdb\x42\x8a\xc3\x00\xf9\xb6\x49\xb6\xbc\x63\x9a\x27\xf0\x74\x8b\xfb\xcd\x11\x1b\x25\x40\xe1\x15\xaf\xb0\x33\x19\xcf\x01\x1d\xdd\xb5\x9e\x76\x72\x3e\x01\xa4\x96\xcb\xbf\x77\xfd\x47\x1c\xa0\x45\x6f\xb9\xd2\x64\xe3\x7e\x40\x93\x95\x48\xb7\xcd\x7b\xdf\x12\xc8\x50\x23\x70\xfd\x8c\xfa\x01\xc0\xf8\x57\x33\x26\x0a\x3d\xfe\x80\xd7\x12\x23\x5d\x67\x39\xe9\x01\xbd\x3f\xae\x2d\x7b\x2f\xc8\x03\x18\xdc\xf9\x7a\x73\x67\x9e\x01\x05\x38\x0c\xc4\x34\x2b\x8f\xf9\x50\xe0\x80\xb2\x6d\x87\xbe\xaa\x3f\xa0\xf1\x4f\xad\xc9\xd1\x44\x4b\x40\xd5\xb4\xc3\x47\x47\x8f\x6f\x05\x6c\xab\xb1\xa9\x11\xdf\x11\x48\x01\x13\xb1\x4f\x1f\xc5\xf6\xc7\x01\x6a\x4a\x68\x04\xdd\x35\xa6\x07\xbc\xf7\xf9\x5b\xf0\xdd\x3c\x26\xc0\x6f\x62\x7e\x03\x7b\xee\x88\x00\xee\xb4\x6c\x75\xd4\x3d\x27\x00\x58\x8d\x96\x62\x83\x4d\xfc\x80\x06\x5f\x8d\x65\x4b\x58\x56\x08\xec\x09\x2e\xa2\xdb\xbb\x6d\x84\xc0\xbe\xc3\xbb\x6b\xd3\x84\xd7\x03\x6a\x3c\x74\xd1\x66\xec\x20\x01\x3a\x71\xe3\xf1\xcd\xed\x24\x40\x86\xfc\xcb\x66\x47\xff\xb0\x02\x2e\x32\xf3\xa6\x25\xea\x5f\xa5\x40\xfb\xce\x66\x67\x5d\x92\x28\x60\x6e\x6a\xa6\x7f\x81\x20\x12\xc8\x10\x9d\xda\x1b\xcf\x6d\x00\x78\xf4\xc2\xcc\x53\xed\x25\x35\xc0\x0e\xe3\xac\xd7\xf6\xa7\x35\x00\x05\xc3\x1f\xeb\xe9\x8b\x4c\x12\xc8\x99\x1b\xf2\xb8\xf0\x8b\x29\x60\x46\xc6\xb6\xb5\x9f\x62\xa4\xff\x27\xae\x70\x7e\x53\xfc\x20\xb7\x1f\xb0\xfa\xd4\x1d\x95\x8b\xd2\x2a\x80\xa1\x9a\x8c\x2b\xb6\xab\x8f\x69\xa7\x80\xc4\x81\x99\xa0\x73\x40\x46\xae\xd8\xcb\x91\x81\x45\x3a\xc0\x76\x61\xcf\x97\xf7\xd2\x58\x60\xf9\x44\x8b\x79\xd9\x11\xc7\xff\x7e\xe2\xe0\x86\xe0\x32\x7a\xb5\xb5\x80\xa4\xbd\x99\x1b\x2b\x43\xe7\x08\x8c\xfc\x9e\x18\x39\x34\x10\x05\x64\x30\x8c\xea\x3b\xf5\x48\x79\x03\x96\x76\x0f\xe6\x68\x7b\x3c\x22\x50\xd6\xd1\x75\x7c\xe1\x51\x31\x60\x0e\x2f\x66\xa7\x55\x94\x01\xce\x89\xdb\xd8\x09\xf0\x67\x01\x6e\xf7\xe8\x7f\x7a\x35\xa1\x8b\x84\xe7\x74\x1f\xdb\xff\x1d\x39\xa4\xa8\x28\xf2\x1e\x29\xa1\x80\xb9\xb5\x43\xc8\x1b\xbb\x12\xc0\x67\x23\x46\x86\x7f\xcb\xff\xc3\xf2\x89\x1b\x3b\x68\x5a\x9d\x01\xb5\xa4\x2e\x6a\x0f\x6d\x3f\x01\x68\x2c\x2b\xd9\xee\xeb\xd8\x0b\xc8\x50\x6c\x17\xda\x71\xa0\x0b\x30\x6e\xc4\x5e\x77\x97\x58\x1c\xa0\x1a\xcd\xa9\xf7\xbe\x34\xcf\x01\x67\x78\x83\x43\x03\x7d\x7b\x00\x45\xc5\x84\xc4\x87\x3c\x82\x01\x0f\xcf\x6c\xde\xa8\x1d\x12\x0f\xe8\x23\x76\xe0\x47\x82\x50\x3c\x20\x9e\x66\x6f\x18\x08\xb9\x00\x88\x47\x87\xc3\x22\x4e\x87\x03\x32\xc8\x8b\xf7\xb6\x37\x06\x00\x6a\xe4\x6e\xe8\x74\x57\x0d\x04\xfc\x53\x79\x6d\xd8\x26\x7f\x17\x60\xc3\xc6\x19\x51\xee\x2a\x6b\x40\x29\xff\xc0\xda\x75\xb6\x77\x01\x89\x49\x76\xa6\xe8\xe6\xb3\x80\x4a\xeb\xbe\x0c\xd3\xa4\x6a\x92\xd0\xda\xc3\x93\x37\xf9\xa1\x39\xe0\xdc\x00\xc8\x84\xc5\xef\x00\x6c\x3f\xdf\xbb\x7f\x8b\xb3\x2a\xa0\x59\xb9\x9c\xd2\xa4\x9c\x08\x20\x28\x9a\xac\xb3\xd3\xaa\x20\xf0\xc9\x38\x4d\xde\x76\x93\x50\x40\x81\xb7\xb7\xed\x1c\x1a\x66\x08\xcc\xe3\x91\xda\x2c\xf5\x63\x2b\xa0\xa9\xe5\xb3\x3b\xcd\x06\x97\x09\xf4\xc9\x4b\xec\x97\x31\x13\x07\x32\xae\x98\x5f\x8c\xb8\x7b\x55\x8c\x02\x2d\x4c\xa7\x0b\x26\x72\x46\x08\x94\x3a\x7f\x2e\x26\x79\xef\x45\x20\xc3\x3d\x24\xc3\x8d\x41\x78\x90\x40\x6d\x4f\xf9\xe4\x9e\x8b\xf7\x00\xdf\xff\x50\x3b\xf6\x91\x74\x10\xf0\x13\x47\xad\x6c\x55\xd7\x11\xc0\x50\x3d\x89\xc6\x03\x7d\xfa\x80\x61\x35\xf5\x45\xd2\x27\x5d\x00\x69\x79\x3e\x32\x9a\xdc\x51\x01\xec\x62\x5a\x90\x75\xe4\xdb\x0e\xf8\xe4\xed\xd9\x30\x4b\x1d\x26\x0a\x8c\x49\x19\xc8\x45\x53\x3d\x27\x30\x31\x91\x8f\xf5\x45\x3c\x37\xa0\x55\xf6\xbe\x21\x8b\x5c\x1e\x40\x8d\x5b\xc7\xee\xb3\x75\x8b\x03\x0e\xef\x93\x3f\x59\xc2\x6d\x0e\x28\xba\x76\x76\xe2\x98\xdc\x49\x12\xb6\x5e\x64\x0a\xfc\xe4\x50\x00\x98\xa0\xbd\xc3\x85\xdd\xa7\x00\x50\xd5\x9f\x7f\xa5\x2f\x5c\x0e\x70\xec\x10\xdb\xe6\x70\x46\x61\x0a\x7c\xde\x7e\xfe\xf6\xdb\xe7\x4f\x08\xac\x9f\xf4\xcf\xe1\x95\xe3\x07\x2c\xb5\x78\x1d\xed\xcd\x5e\x5c\x87\x13\x3a\x62\x1d\x8a\x57\xf6\xc3\x3f\x60\xdc\xfb\xab\xf7\x40\x0a\x23\x05\xce\x76\x75\xd0\xc8\xf7\x32\x01\x86\x1b\xe4\xf2\xb7\x8f\x0d\x13\x64\x44\x15\xea\x5a\x09\x72\x6e\x03\x94\x3c\x70\x7a\xb2\x2f\x44\x02\x70\xe2\x58\xc0\x9c\x08\x33\x37\x60\xe0\x5a\x8e\x07\xb7\xce\x48\x00\x9e\x9a\xb2\xc8\xb8\x2c\xc1\x43\x01\xd6\xa6\xde\x4e\xd9\x90\x57\x04\x4a\x56\xf3\xec\x3f\xee\xb9\x05\x30\xf1\x5e\x55\x87\x60\x15\x1f\x05\x36\x7c\x73\xf3\xfb\xc8\x48\x0d\xb8\xff\x98\x68\x4e\xae\xc6\x69\x40\x87\x0d\x5e\x51\x19\x73\xa5\x75\x18\x33\x5e\xdf\x5e\x38\x16\x0e\xb8\xee\xe2\xad\x8a\x8b\x1f\xe3\x80\x5c\x3e\x44\x3f\x62\xf5\xec\xed\x26\xf0\x84\x39\x78\x1a\xad\x1e\x6d\xc2\x73\xf7\x79\x86\x57\xe9\x03\xde\xbd\xc6\x22\x3e\x3b\x7e\x03\xf0\x7c\x08\xd7\xd8\x6e\xcd\xfb\x24\x94\xde\x29\xf6\xf2\x08\x53\x13\x60\x90\x1b\xd1\xae\x2f\xd1\x04\x98\x75\x61\x5e\xe7\x6c\xd2\x41\xc0\xef\xc7\x2d\x46\x03\xf9\x46\x09\x7c\xa8\x45\xda\xf2\xa7\xc5\x11\xf0\x57\x8e\xe2\xcc\x09\x9f\xef\x04\xfe\x3a\x3d\x38\xca\x76\xea\x20\x60\x49\xa9\x4c\x65\x52\xf3\x16\x40\x3b\xe9\x64\x35\xb1\x6d\xb3\x04\xde\x74\xd5\x2a\x64\xf6\xed\xa1\x40\x42\x73\x8d\xc7\xfd\xde\xee\x3a\x8c\x52\x15\xf0\xcf\xad\x6a\x04\xf4\xbe\xc6\x2e\xc5\xd7\x41\x0b\x28\x34\xe4\x16\xb8\x50\x69\x08\xa8\xf0\x28\xea\x5b\xb4\xb1\x32\x05\xde\xee\xfd\x41\x62\x7f\x1d\x0a\xc8\x73\x61\xd7\xd4\x9e\x63\x4e\x14\xc5\xc2\xac\x99\x66\x63\xc1\x15\xc0\x19\x8d\x76\xe9\xd0\x9d\xc2\x80\xd4\x61\xd2\xf4\x74\xe2\xa5\x80\x74\xdf\x82\x77\x16\x85\x76\x93\xf0\xdd\xab\xbb\x2b\x85\x37\x7a\x48\xb8\xe4\x5f\xc5\x6d\x26\x54\x4c\x42\x65\xe3\x50\x7f\x06\x96\x70\xc0\x6b\x9d\x9b\x7e\x81\xd6\x1d\x12\xde\x50\x08\x9e\x0b\x65\x0e\x07\x7c\xc9\xc8\x72\xd7\xed\x69\x35\xe0\xd9\xe5\x53\x22\x7e\xe7\x4b\x01\x7f\xcd\x79\x3b\x07\x1e\xf8\x42\x60\x62\xf7\x68\x3d\xd7\xb7\xd5\xa7\xf3\xff\x20\xaf\xe3\x64\x98\x2a\xbc\x03\x30\x66\xf3\x7c\x26\xbf\x6b\x05\x05\xc4\xd2\xda\xd3\x66\x83\x73\x28\x60\xbb\xee\x81\xce\xd9\xd9\x48\x0a\x90\x52\xbf\x8e\x57\xb3\x94\x00\x8a\x8e\xfe\xa6\xaa\x59\x85\xb2\xb4\xa9\xe7\x16\xde\x6b\x80\xc6\x54\x61\x46\x6f\x4f\xd5\x01\xf2\x6f\x75\xf6\x1a\x29\xb1\x07\xd4\xd7\x55\xf5\x39\x26\xbe\x44\x90\x91\x5a\xff\xbd\x57\x3b\x69\x98\xc0\xfa\x09\x95\xe4\x23\xa3\xb9\x80\x96\xf1\x4b\x03\x43\xa6\x46\x24\xac\x7a\xea\x57\xa4\xbb\xd3\x9f\x84\xf3\x5a\x7a\xb1\xfe\x1f\x0e\x00\x26\x37\x3d\xb2\xe9\xe5\xb8\x45\xc2\xf4\xef\xe3\x37\x35\xb7\xea\x01\x4e\xf7\xbf\x37\x7c\xf5\x52\x12\xb0\xb9\xed\x5e\x78\xf3\x54\x2d\xe0\x8e\x76\xbd\xa9\x77\x06\x2f\x49\x18\x2c\x5a\xb7\xcb\x68\xa5\x16\x30\xed\x04\x33\x15\x4d\x97\x19\x60\x79\x68\x9f\x66\xdc\xde\x18\x40\x22\xed\xd5\xad\x57\xc7\xee\x00\x66\x54\x7e\x10\xa6\x4b\xbd\x08\xb8\xd6\xf5\x46\x69\xd4\xa6\x5c\x40\x7f\x1e\x9f\xfd\x35\xce\x25\x80\x8f\x48\x4c\x9d\x02\x57\x38\x00\x8d\x46\xfa\xf3\xc5\x67\x1f\x02\x9a\x28\xa6\xdb\x3e\xa4\xe7\x06\x0c\x3b\xf3\x31\x60\x5b\x4c\x23\xe0\x87\x2d\x6c\x0f\xac\x36\x3d\x01\x34\x2b\x7b\xae\x69\xd7\xe4\x07\xf8\xee\x6e\x7c\xff\x2e\xed\x22\xc0\xfe\x61\x7c\x1e\xa3\x53\x04\x78\x31\xa7\xf2\x3a\xd5\x40\x1a\x09\x4f\x26\x7f\x2c\xfd\x5b\x6e\x1f\xca\x08\xb3\xe4\x70\x04\x0c\xd3\xd8\xd2\xd5\x15\x68\x07\xf8\x71\xda\x50\xf6\x7e\xa2\x23\x05\xf2\x96\x93\xae\x1f\x5c\xef\x01\x28\xdc\x75\xe6\xd0\xd9\x53\x51\x80\xdf\x2f\x97\xdd\xda\xd2\x5d\x44\x81\x38\xbd\x3b\x61\xff\xb7\x28\xca\xce\xdd\x9a\x9c\x3a\xf2\x2f\xd4\x1c\xd8\x54\x70\x7b\xdd\x26\x40\xb3\x75\x45\x0f\x3f\x7d\xe6\x01\x0c\xb9\xd4\x16\xd2\x28\x13\x4e\xc2\x23\x29\x37\x24\xf6\xad\x98\x00\x19\x39\xdd\x96\x74\x36\x89\x66\x14\x38\x2f\x7f\x44\x9a\x65\x86\x17\x30\x5f\x55\xe8\xd5\xd5\xcd\xf3\x04\x76\xbb\x1c\x63\x8c\x3b\x69\x0c\x64\x8c\xfd\x7a\x3a\xf8\xa4\xbf\x09\x70\xea\x28\x73\xc2\xe5\xe3\x94\xf8\x6f\x14\xcd\xbe\x1c\xf4\xb7\x4c\xbf\xb4\xd1\x0b\xf5\x69\x02\xa4\xce\x73\x67\xdb\x24\xba\x11\xf0\x66\x14\xe9\xda\xf1\x6f\x4e\xff\x42\xda\x9b\xd1\x03\xa1\xc7\xf6\x00\x9e\xe2\x23\x96\x1f\x73\x84\x03\xf2\x9a\x3a\x7b\x59\x9d\x0c\xa4\xc0\xa2\x81\xbe\x55\x16\x1e\x80\xe5\x73\x0a\xa6\xfb\xa6\xb4\x01\xef\x08\x6c\x1b\x6b\xf6\x6d\x04\x54\x89\xf0\x8b\x14\x5b\xb8\x4d\x42\xd6\xb7\x74\x6d\x02\x0c\x0f\x01\x1b\xfc\xa3\x13\xe4\x06\x48\x80\x09\x82\x4f\xed\x82\xd4\xea\x01\x8f\xee\x58\x7b\x5c\x69\xb5\xd4\x1f\x7f\xf3\x4b\x59\x5f\x07\xf0\xf4\x01\xa7\x95\xfa\x1b\x57\x49\x28\xc8\x72\xcf\x24\xa8\xc4\x0e\x90\x55\x3f\x7f\xb9\xbe\x57\x1e\xf0\x4b\x1e\xdd\x37\x16\xaf\x78\xc0\x76\xa6\x1b\xbf\x0b\x37\x38\x02\xbe\x93\xfc\x95\x68\x51\x1d\x40\x81\x57\x1f\xba\x13\xc3\xcf\x5e\x00\xbc\x1e\xf3\xb1\xeb\x90\x63\x09\xe0\x99\x36\x6e\xe3\x8a\x63\x6b\x01\x0b\x9d\xca\x4f\x2c\x1d\xd8\x42\x01\x6f\x06\x81\xce\x85\x6d\x5d\x04\x8a\xb0\xb1\x34\xd4\x7f\xfa\x42\x60\x59\xa0\x55\xcf\x8b\xd3\x3a\x80\xda\xcf\x8f\xbd\xa0\xdb\xae\x07\xb8\xf2\xc0\xd8\xa6\x4d\xe7\x37\x81\xcf\xf6\x15\x49\xb0\xcb\xde\x27\x61\x5d\xf5\x53\xb7\x63\x01\x71\x80\xf6\x85\xbf\xd7\xd0\xa7\x64\x93\x30\xa1\x45\xce\xef\xec\xe3\x38\xc0\xaf\x4c\x1f\x62\x5a\xcc\x59\x01\x07\xa5\x8e\x35\x86\xaf\xc4\x02\x8a\x7f\x7b\x91\xf8\x7d\xef\x07\x02\xf3\x0a\x07\x6d\xf8\xf2\xc6\x09\xdc\xd1\x12\xab\xd2\x65\xa2\x00\xb8\x94\x9e\xd1\x2a\x7a\x44\x0d\xc8\x65\x4e\x8d\x69\xbd\xab\x5a\x47\x1d\x12\x4b\x87\x0d\x0e\xea\x2e\x10\x78\xa0\x6b\x62\x9e\x2f\xea\x1e\xe0\x3a\x1e\x73\x83\x31\x73\x7d\x0a\xc8\xee\xfb\x96\x66\xa9\xf4\xba\x0e\xf9\xd4\x6e\x3f\xce\x65\xd5\x03\xf4\x77\x36\xd5\xd8\x0e\x69\x75\xa8\xe3\x7a\x25\x95\xe6\xc5\x5e\xf8\x07\xc6\x37\x27\xae\x19\xd6\x65\x05\xec\x13\x98\x64\xe8\x09\xfb\x4e\xe0\xa6\xdc\x71\x9b\xe1\xcf\x72\x40\x86\x16\xe7\x9d\xa3\xc6\x69\x41\xff\x82\x97\x61\xf3\x33\x06\x67\x1b\xc0\xef\x89\x35\x81\x61\xa7\xbf\x12\x98\xbb\xd1\x74\xda\xfd\x7a\x3b\x05\x5a\xa3\xea\xbf\x30\xde\x5f\x3d\xc3\xfd\x3f\x0c\xbe\x7b\x9d\x60\x43\xa3\x49\x81\xeb\x57\x54\xdc\xb6\xfa\xab\x01\xbe\xdf\x20\x73\x76\xb2\xf4\x15\x81\xa1\x7b\xb3\x97\xdf\xe4\xff\xa6\x80\xb5\x16\x7d\xb7\x3a\x75\x07\x81\x81\x95\x0e\x86\x72\x55\x45\x80\x1b\x8e\xbf\x7c\x62\xbe\x7b\x81\xc0\x46\xaf\x80\xdb\x13\x6f\xed\x01\x7d\x2f\xcd\x32\x58\x09\x1c\x00\x3c\xec\x6f\xea\xb0\xad\x35\x9c\x02\xe6\xc5\x9e\x60\xd1\x10\x49\x81\xb1\x46\x87\xf7\x59\x3b\xc6\x08\x32\xd2\x14\x16\xf3\x25\x37\x0c\xd7\xe1\x3a\xfe\x69\xe3\x8a\x27\xf9\x80\x9e\x8c\xd3\xce\x93\x57\x3f\x12\xe8\x7f\xf2\x04\xe7\x59\xd7\xaf\x04\x46\xd5\xdf\x66\x71\x1e\xba\x00\x64\xdc\x3e\x54\xd2\xed\xa8\xca\x4e\x81\xd6\x5b\x2c\x7a\x0b\x9f\x3f\x13\x68\x68\xf5\xfc\x38\xe3\x57\x51\xc0\x63\xb3\x7b\x9b\xd4\x76\xd7\x03\x66\xe7\x8d\x8a\x3b\x67\xda\x03\x4e\xb8\x7b\xbb\x84\x97\x66\x03\xda\xc8\x33\x7b\xcc\x7f\x60\x05\xf4\x1e\x57\x79\x7b\x55\xdf\x8c\x02\xba\xaa\x97\x37\x50\x1d\x78\x49\xe0\xc9\x0e\x5f\x86\xdf\x65\x6b\x01\x8d\x14\xd9\xf5\xd4\x22\x2a\x00\x59\x68\x27\xd7\x73\xaf\xd3\x00\x3c\x9c\xad\xfc\x3a\x9f\x27\x80\x02\x97\x64\x87\x78\x1a\x17\xef\x02\x0a\xb3\x6e\x3b\x74\xc6\x42\x04\x90\x35\x6e\x83\x68\xe3\xae\x6b\x80\x78\xf9\x7a\xe9\x91\x02\x4e\xc0\x19\xc1\x28\xa7\x2d\x27\xbc\x29\xa0\x22\x60\xb6\x85\x36\x9e\x16\x50\x4e\x76\xab\xe6\xa2\x44\x1d\x60\xc9\x67\x89\x99\xe6\xc2\x17\x80\x9e\x54\x52\xf3\x73\xbc\x4d\x80\x3f\xa6\xbf\x3a\xed\xa4\x6b\x00\xe4\x79\x47\xfb\xf1\xcc\x5c\x3d\x20\x4a\x9b\x0c\x5e\x97\x69\x00\xa4\xd2\xf7\xe4\xf9\x38\x5a\x0c\x28\xd2\xc3\xe5\x32\x77\xd5\x01\x50\x31\xf1\xc3\xe2\x40\x98\x3d\x60\x63\xa9\x6a\x46\x4f\x6a\x1f\x81\x21\xf9\x57\x6c\x35\x7a\xe4\x81\x0c\x01\x91\xc9\x9e\x4a\x5f\x21\x0a\x50\xad\x34\xdc\x77\x1e\xf1\x24\x21\xdb\x8d\x17\x9b\x5f\xf7\x3a\x02\xfe\xa0\xe5\x66\x62\xf1\xd3\x05\xd4\x93\x6b\x5f\x28\x73\xdf\x0d\xd8\x2e\xc8\xfa\xdd\x8f\xdd\x06\x70\xbc\x7b\xbf\xad\xb2\x5a\x2e\xe0\x39\xc1\xb0\xf1\x7c\x5d\x4d\xc0\xac\xe7\x1c\xfd\xe9\xab\xab\xcd\x7c\x95\xef\xfa\x79\x9e\x0a\x02\xf3\x2b\x8c\xdd\xf7\x7d\xdf\x07\x78\xfc\x79\xea\x5b\x9d\x97\x0f\x00\xe9\x1f\xb8\x8b\x7b\xb4\x09\x01\x5a\x70\xf6\x9e\x3c\x58\x38\x41\x90\xf1\xc7\x6c\x80\xfa\x98\xec\x17\x02\xaf\x0b\xc8\x1f\x37\xdf\x72\x87\x84\x9b\x06\x5e\x0a\x44\x5f\xb7\x04\xe4\x11\xdd\x4c\xf3\x0a\xcc\x00\x79\x55\x74\xe5\x3c\x59\xe6\x09\xbc\xe6\x3d\xf4\xc3\xd7\x3b\x1b\x90\x66\x36\xc6\xd0\x7b\x15\x75\xf2\xbe\xc1\x9d\xae\x6d\x24\xdc\xbb\x7f\x4a\xe2\xfd\x48\x13\x90\xd1\x32\x28\x7e\xc8\x65\x0b\x65\xf9\x0f\x2f\xd2\x1d\xa9\xce\xc6\x9f\x00\x14\x6b\x15\x9e\xda\x57\xfb\x16\xf0\xa6\xd5\xbb\xb1\xc5\x88\x78\xc0\x66\xa9\xaf\x1a\x9c\x43\xf7\x01\x63\x3c\x41\xc9\x50\xed\x3e\xa0\x7f\x2e\x47\xae\x91\x74\x06\x60\xdd\x68\xb0\xfe\x88\x4d\x06\x60\x88\xe0\xb6\x7c\x5b\x9f\xa3\x14\xa0\xb3\x54\x68\x9f\x9a\x69\xa8\x43\x16\x69\x2e\x5d\x4f\xdb\x97\x80\x55\x0f\xe6\x5c\x76\x1b\x29\x02\x06\x47\x7b\x8f\xdb\x9f\xa1\x03\xd4\x9f\xf9\x5e\x98\xf1\x6c\x86\x40\x5e\xf9\x98\x8e\xac\x3d\xeb\x80\x8c\x90\xba\x05\x79\xc9\xd4\x0a\x0a\xd4\x1c\x3d\x11\xc7\x0a\xa6\x80\x73\x21\x75\xee\x9d\xf5\x0a\x80\x6e\x2f\xf5\x88\x2f\xec\x83\x04\x66\xff\xf8\xb8\xd4\xcc\xca\x0d\xe8\x32\x75\xc3\x31\x43\xd2\x96\x84\xb7\x4a\xcb\xbd\x24\x24\x3f\x11\xe8\xed\xec\x66\xdc\x7c\x58\x01\xfe\x17\xd8\x3c\xf6\x96\x3f\xbb\xbe\x06\xf0\xa8\x79\xa5\x83\xa3\xbc\x16\x2c\x47\x68\xfd\x66\x6e\x28\x06\x5c\xf9\x9a\xe3\xc3\xb2\x8a\x14\x6b\xc6\x1b\x49\x4f\x03\x01\x47\x8f\x8e\x1e\xff\xea\x34\x40\x60\xea\x89\xe5\x6d\x33\x0f\xfc\x80\x0c\xdd\x5d\xdf\xdd\xee\xec\x12\x02\xdc\x6b\x72\xfa\xd9\xec\xb8\x37\x09\x87\xe8\x4a\x78\xcf\xec\x70\x07\x3c\xc7\xfe\x2b\x57\x25\xac\x10\x30\x33\xdb\x2c\xb1\x2e\x48\x87\x84\x39\x89\x3b\xb2\xde\x75\x6c\x04\xdc\x66\x58\xbd\x52\xbf\xfa\xbe\x46\x99\x07\xb2\x34\x66\x05\x50\xc0\x3b\xc9\x6c\xdf\xf3\xf2\xe4\xff\x09\xf3\xb5\x2e\x77\xca\xe7\x7f\x13\x64\x6c\xf6\xfe\x73\x7a\x42\xe4\x27\x81\x07\x6d\x3e\x59\x64\x09\x3e\x01\xec\x3f\xeb\xf1\xa3\xb2\x2d\x1c\x70\x3e\xb5\xdb\xe4\xa5\xec\x28\x81\xc1\x4e\xfe\xe5\x3e\x46\x69\x80\xeb\xee\x5f\xb2\x0b\xfa\xb9\x40\xa0\xc1\xa5\xc4\x61\x29\xa5\x65\x02\xe5\x6f\xf9\xc9\x9e\x3b\xa9\x0f\x64\xd0\x46\xfb\x95\x8a\xff\xba\x57\x87\x89\x57\xd4\x6f\x55\x8d\x10\x80\x0c\x5f\x52\xde\x5f\x0a\x99\x27\xb0\x65\x2a\xc0\xda\xd1\x3f\x07\xd0\x92\xa9\xab\xea\x2f\x08\x1d\x2e\xb6\xc1\x0f\xd6\x14\xa0\xcf\x5f\xf8\xa4\x6b\x2c\x4e\x81\xa8\x85\xcd\xd9\xbf\x19\x39\x01\xf9\x3a\xd9\xca\x55\xef\x2f\x10\x28\x95\x7b\x71\xe6\xfb\xce\x75\x80\xb5\x9d\x5d\xfe\xaf\x7e\xc5\x03\x6a\x89\x02\x13\x69\xe1\x20\x20\x0d\xcd\xc4\x8d\x95\x29\x46\xc0\xb6\xc9\x44\xaa\x3b\xc9\xdf\x09\xfc\x31\x18\x64\xf8\x4b\x8e\x13\xf0\xe9\x6d\xe5\xc5\x17\x3b\xf5\x01\xf3\xa7\x92\xb9\xf4\xbe\xcb\x01\xb6\x11\x4a\xd7\xd2\xbc\x92\x00\xa9\xa8\x1f\x94\x33\x6c\x29\x07\x0c\x31\xe1\x59\xd4\xee\x2c\x06\xb4\x1c\xf2\xf9\xbc\x87\xc5\x11\x30\x1d\xd9\x0f\x52\x7f\xb3\xa2\x28\xff\x81\xc5\x38\x92\xb6\x37\xce\x19\x50\x28\xe0\x1c\x5d\x7a\xdb\x46\xc0\x33\x62\x4b\xa9\xeb\x46\x78\x00\x0d\x3e\x08\xd0\x27\xb8\x9c\xa3\x40\xc5\x4d\x76\x1f\xf1\x21\x2f\xc0\x3e\xae\x2d\x3f\xcd\x18\x2b\x01\x2b\xb6\x74\xce\x69\xb8\x64\x01\xf6\xaa\xcb\xbc\xd4\x18\x59\x21\x50\xe1\x73\xe2\xf7\xe1\x11\x76\x40\x45\xb6\x96\x57\xf4\xdb\x9c\x28\x50\x32\x58\x96\xbf\x29\xb6\xa2\x0e\x3f\x9d\x15\xd1\x60\x8d\x54\x02\x64\xcd\xbd\xe4\xe4\x72\x90\x11\x70\xca\x63\xfd\xfe\x59\xc5\xb5\x14\x78\x1a\xba\x3e\xf5\x89\x9e\x1e\x20\xff\xb5\x2b\xca\xbf\xd9\x16\x08\x9c\xdc\xf8\x98\x41\x99\xba\x10\xd0\x3b\xf0\xfb\xfb\x4b\x32\xb1\x80\x86\x24\x95\x1b\x7f\xcb\x75\x67\x36\xda\x4e\x3a\x5b\x0a\xd4\x24\x76\x47\xba\xd1\xda\x00\x2a\xd1\x1a\xe5\x78\xa8\xba\x51\xe0\x95\xe7\x4f\xf5\xfc\x3f\xd5\x75\xd8\xea\x66\xbc\x98\xbc\x7d\x03\xe0\x81\x41\xfa\x60\xc7\xd5\x83\xe2\x7f\x88\xb5\xcf\xb1\xe2\x4a\x5d\x07\x48\x04\xf7\xfe\xb9\x96\xc9\x04\xd8\x2b\x75\x3f\x99\xed\x87\x3c\x09\x67\x0d\x0e\x71\x73\xd6\xaf\x01\x32\xf6\x28\xac\x04\xe9\xcf\xac\xa7\xc0\x68\xda\xcc\xb5\x86\x8e\x25\x02\xe7\xa8\x2f\xec\xfa\x3c\xcc\x0c\x64\x0c\xe8\xd6\xa4\x76\xba\xb1\x53\xe0\xf4\x09\xf1\x4b\xb2\xb3\x2d\x04\x66\x3a\x2d\x5f\xf1\x7d\xb7\x07\x70\x38\x53\xf8\xfd\x99\x8f\x3b\x00\x1d\x19\xdd\x2c\xd3\xec\x7e\x13\xa8\xc9\x52\xc0\xfd\xd4\xe2\x0f\x81\x76\x9f\x63\xf2\xd2\x76\x68\x01\x19\x74\x2f\x6e\x95\x64\x53\x21\x41\xc6\xc4\x78\xa2\x87\x2a\x9b\x10\x90\xf1\x73\x8d\xed\x99\x22\xb7\x35\x80\xc1\xd2\x42\xe9\x77\x2a\x35\x01\x9f\x05\x9f\x4b\xe1\xf7\xe1\x03\xfc\x22\x5c\x77\x6b\x1f\xe3\x66\x0a\x8c\xda\xf0\x78\xec\xd9\x3f\x4e\x90\x41\x7b\x8f\xb6\xce\x94\x75\x80\x02\x2f\xfa\x39\x7d\x53\x2f\x53\x01\x6e\x78\xb8\xe8\x42\xad\xab\x0b\x98\xb1\x78\x46\xef\x55\x6f\x4f\x1d\x72\x7a\xee\xcb\xcc\xfe\xad\x0d\xff\x40\xe4\xb1\xe7\xef\x2c\xbb\xfa\x09\x32\x16\x26\xaf\xf0\xff\x09\x67\x00\x9c\x09\x2a\x34\x34\xcc\x13\xa4\x80\x8b\xcb\xe1\xcd\xc6\x05\x1c\x80\x7a\x3f\xbe\xae\x5f\xff\xee\x2a\xa0\x72\xf8\x9a\xb2\x0a\x06\x43\x40\x31\x75\xee\x82\x8a\xec\xdf\x04\x3e\x38\xbb\x23\xcf\xc5\x41\x0b\xf0\xbb\x9a\x79\x8f\x18\x29\x1e\x50\x64\x48\xfa\xdd\x61\x75\x53\xc0\x60\x07\xef\x70\x85\x18\x5b\x40\x05\x3a\x8e\x0d\x4c\xd7\xcd\x28\x60\x20\xb6\xfb\x33\xcb\x3e\x7b\x0a\x6c\x0b\xf3\x0b\x58\xf3\x9b\x0e\x30\xee\x7d\x7a\xca\x40\xf2\x1e\xc0\xe5\x65\xc1\xbb\x57\x54\x77\x53\x40\xd7\x49\xe2\xf0\xc8\x0f\x0e\x0a\xdc\x33\xef\x4b\xf6\x90\xaf\x01\x5c\x89\x65\x2d\x50\x93\xa8\x01\x74\xf2\xa9\x36\xfb\x8b\xfa\xd2\xbb\xbc\x9d\xe2\x27\x00\x6b\xce\x4d\x67\xef\x52\x77\x05\x1c\x7a\x29\xd2\xe9\xc6\xe7\x04\xe8\xe5\x6d\xaf\xc3\xa3\xed\x02\x98\x2a\xd4\x90\xd7\xa3\x4e\x0f\xf8\x66\xa3\x17\x3b\x6b\x03\x1d\x05\xe2\x36\x6b\x52\x17\x52\x2d\x12\x28\xbc\xc6\x7e\xe3\xbe\x76\x05\x40\x5e\x31\x6a\x11\xd7\xd9\xfb\x80\x47\xb3\x9c\x86\x4f\x36\x7d\x24\xf0\x65\xce\x6d\xad\xe9\x86\x2b\x24\x4c\x3c\x79\xec\x70\xdd\xcb\x42\x12\x7e\x0b\xe4\xad\x78\xff\x73\x90\xc0\xa0\xb2\x9d\xed\x17\xa4\x16\x09\xec\xb8\x63\x95\x93\x73\x39\x16\xc8\x70\x35\x56\x5e\x5f\xde\xe9\x09\x38\xc1\xb6\x72\x54\xf7\x79\x2a\x60\x23\x4d\x49\x44\x41\xf2\x16\x40\xc9\xae\x87\x0f\x12\x24\xa2\xeb\x70\x72\xa5\xff\xad\xfb\xf0\x32\x81\x9a\x3f\x9f\x28\x9c\xc9\xe7\x04\x54\x70\xb6\x5d\xbb\xf9\xb9\x0b\x05\x02\xb7\x3d\xd1\x6c\x34\xe1\x04\x34\x94\xb2\x3f\x3c\x78\x38\x1b\x70\xcf\xaf\x4b\x07\x87\x4f\x0c\x10\x28\xec\xbf\x4e\xa7\xec\xb2\x2d\xfc\x03\x4f\x27\x36\x51\x25\xeb\xaf\xf9\x17\x6e\x15\xf9\x86\x4a\xb9\x29\x00\x6e\xe5\xaf\xe7\xbf\x64\x17\x0f\x88\x6f\x9c\x38\x3b\x96\x77\x00\x4a\x9a\xcf\xe4\x99\xdb\x97\x90\x30\xd4\xb0\x47\x62\xa1\x7f\xf5\xef\xf9\xf0\xf6\xef\x87\x62\xa7\x09\x14\xe2\x7b\x3e\x9d\x71\x69\x91\x02\x26\x89\xa6\xdc\xfa\x1b\xec\x00\xef\xa5\xb7\xf0\xd1\xb5\x39\x01\xb9\xfc\x07\x16\xa9\x75\xa2\x52\xf2\xac\x80\x27\x35\x05\x17\x52\xf2\x94\x01\xe9\x13\xb6\x3e\x62\xf6\xaa\x04\x24\xd6\x62\xf8\x5f\x94\xf6\x65\x7c\x9b\x9d\xd7\x01\xdc\x77\xed\xca\xfb\xbf\x28\xef\x37\x30\xfb\x52\xcc\x04\xd8\xf4\xbe\xdc\xc0\x7c\x63\x0e\x20\xbf\x51\xce\xa2\x71\xb0\x13\x05\xba\x58\xa2\x64\x7d\x3e\xfd\x26\xf0\xed\xee\xdf\xed\x57\x5f\x71\x02\xd6\x71\x14\xac\x29\xbd\x99\x03\xb8\x57\x50\x6a\xb2\x2a\xf4\x04\xe0\xcd\xc6\xcf\x6c\xd7\xa3\x96\x08\x32\x44\x3a\x35\x03\x07\x67\xa8\x00\xb9\x0b\xd2\x9e\x78\x9a\xad\x07\xec\x5d\xde\x69\xb2\xa5\xfe\x65\x1d\x36\xa9\x31\x9d\xbf\xc0\x62\x0a\xff\xc0\xb1\x26\xd9\x5a\xb3\x16\x26\x0a\xf0\xd4\x0b\x8e\x2f\x35\x50\x01\xfe\x56\xe6\x13\xa8\x31\xd0\x05\x64\xf3\x5e\xf7\x89\x6f\xcb\x4d\x40\xcb\xaf\xd5\x7c\x8d\x12\x97\x00\x5b\x7b\xbe\x8d\xcc\x8f\x5d\x06\x8c\x55\xcb\x1a\xeb\x9c\xb9\x0c\x78\x7b\xaf\x54\xd8\x8b\x86\x64\x40\x99\x84\xae\xf9\x08\xee\x0a\xc0\x50\x6e\x79\x9a\x1d\x23\x49\x80\x92\xde\x47\x47\x8f\x14\x1f\x01\x5c\xda\xc5\x2b\x6f\x20\xf6\x8b\x40\xee\x80\x13\xb6\xd8\xb6\x0f\xc8\x78\x3f\xad\xc5\xb0\xf3\x6a\x43\x1d\x7e\x51\xda\x61\xf6\x38\xc9\x14\x30\x5e\x5e\xa7\xdc\x74\xd1\x15\xd0\x35\xa4\xd1\x25\xf2\x80\x0b\x60\x9b\xd5\xeb\x00\x1a\x26\x1b\x0a\x70\x7f\x3a\x9a\xf2\xce\x64\x84\xc0\xb4\x23\x4c\x16\xf7\xd4\xbe\x11\x78\xf8\xc3\x8b\x97\x4f\x06\xe8\x00\xa7\xba\x99\xd7\x1e\xd3\x12\x01\x1c\x39\x79\x34\xe5\xa7\x95\x3d\xe0\xa1\x99\xde\xa4\x06\x31\x21\xc0\x5b\x7d\xc2\xbc\xbc\x19\x5f\x08\x3c\xb6\x49\xa8\x32\xe1\x2e\x03\x90\x21\x23\x73\x53\x90\x7b\xdb\x32\x41\x86\x59\xd4\xa1\x83\xf2\xab\xdf\xa8\xff\xe0\x18\x9f\x56\xa3\x3a\x4c\x07\x68\xf1\xdb\x34\x54\xef\x7d\x1a\xa0\x58\xb1\x2c\xcf\xd0\x66\x9b\x7f\xe1\x21\xfd\x63\x1e\xc1\x79\xfb\x7f\x41\xfe\x6d\xf4\xfa\x31\xf9\x7e\x02\x9f\x8b\x3f\xa2\x8a\x2f\xdb\x05\xa8\x5e\x75\x3f\xfa\x8e\x77\x3d\x05\xde\x6c\xdc\xb5\xf3\xf6\x8f\x67\x04\xae\x1c\xbb\x39\x60\xf0\x52\x01\x10\x0d\x0e\x5e\x4d\xc8\x1d\x23\xd0\x42\x25\xb2\xa9\x68\x6f\x0d\x81\x1b\x77\x05\xb1\x93\x2a\x78\x00\xc3\xe4\xfd\x24\x2f\x0b\xaa\x50\x60\x5e\x25\x94\xe7\xbc\xdb\x02\x81\xc7\x1d\xff\x1c\x63\x8d\x5c\xa1\x40\x5c\x8f\xe4\x80\xf2\xfc\x2e\x20\xe3\xf2\x39\x96\x96\xe6\x83\x2d\x04\x76\xc4\xdf\xb4\xc8\x90\x3d\x05\xd8\xa8\x62\x7a\x79\xbb\x08\x35\xe0\x73\x7a\x8e\xb3\x35\x34\xf7\x48\x68\xd4\xc5\x12\x92\xdb\x54\x0b\xb8\xe1\xc3\x51\xd6\x1f\xad\xb5\x80\x9f\x24\x7a\xb5\x84\x9f\x7f\x20\xf0\xb8\x2a\x6f\x9e\xe6\xe3\x07\x80\xf2\xaf\x39\xb8\xcc\xcd\xed\x01\xf9\x8f\xc4\xc9\xf9\x46\xcc\x12\xf8\x67\xd0\x6f\x6e\xdb\xdd\x15\x02\x2f\xb7\x3a\x5c\x2f\x68\xb1\x06\x6c\x89\x7c\xd3\xa2\xa7\xbf\x17\xf0\xcb\x81\xa7\x67\xcd\xac\xbe\x13\x78\xe3\x12\x2f\x3b\xbb\xa4\x08\xa0\xa1\xc2\xab\x34\xe8\xb9\x05\xc8\x29\xfc\x30\x26\xad\x52\x1b\xb0\xea\x90\x5f\xbb\xe1\xee\x3c\x12\x66\x28\x5e\x1d\x7b\x47\x5a\x3d\xd0\x3f\xda\xe1\x7a\x5e\x4d\x0e\x30\xd2\xf4\xaa\xbf\xcd\x4b\x17\xc0\xbe\x5b\x19\x6b\xbe\x3a\xd7\x52\x80\x66\x7a\x32\xe7\xfc\x7c\x5f\x1d\xf2\xab\x8d\xda\x1d\x7f\xbf\x1b\xb0\x6b\x26\xd4\xed\x70\x8b\x0c\xe0\x99\xa7\x75\xce\xb2\x8d\xd4\x80\x39\x69\x61\x27\x3d\xdd\xb5\x28\x10\xdf\xfd\x34\x20\x34\xa1\x93\xc0\x43\xa7\x2b\x5b\x05\xe7\xd6\x00\xba\x56\x0c\x48\x6e\x57\x9b\x21\xb0\xeb\xf7\x69\x83\x6a\x9b\x18\x12\x52\x4b\xdf\xa5\x31\xac\xe9\x06\x3c\x33\xfd\x39\x48\xb7\xa8\x09\xf0\x82\xf3\xe4\x35\x42\x5f\x11\x96\x83\x4a\xf6\x6c\x3f\x31\x46\x20\x47\x59\xdb\xad\x5d\x19\xfd\x75\x78\x6c\x42\x69\xb2\x5d\x4b\x11\xc8\xd8\xbe\xa7\xd2\x47\xf5\xac\x00\xa0\x68\x9d\x89\x5a\x67\x2e\x09\x50\x2b\x57\x73\xd3\xe2\xe5\xd5\x05\x6d\x25\x40\xe5\xbc\xb7\x1c\x90\xf1\x48\x3b\xd7\x3a\xbd\x73\xa0\x0e\x19\xb3\xdd\xd4\x4f\x9c\xff\x4e\x60\x78\xae\x9d\xca\x59\x19\x0e\xc0\x01\x9a\xc0\x13\xc3\x29\xd1\x14\x90\x0d\x64\x1f\x10\x38\x1e\x01\xf8\xee\x59\x90\xea\xc0\x82\x16\x60\xa5\x75\xc9\x03\x76\xd6\x35\x80\x3b\x16\x02\x6d\x43\x47\x12\x28\xa0\xda\xd8\x75\x8d\xbb\xcc\x0e\x90\x26\xf6\xb9\x58\xf9\xc5\x15\x02\xeb\xf7\xa7\x7d\xaa\x3f\x4d\x02\xf4\xbf\xb0\xf8\xf8\x87\x2b\x09\x50\x78\x2a\x50\x39\x8e\x9b\x04\xe4\x51\xfb\x25\xd1\xad\x4f\x76\x8a\x00\x0e\x55\xbf\x4d\x59\x63\x5d\x05\x08\xea\x87\x02\x5c\x07\xae\x03\xe6\xc4\xb9\x84\x09\x9e\x2a\x03\xcc\x6a\xfa\x9e\x12\x9d\x30\x0a\xa8\x50\xe4\xd8\x20\xde\x52\x0f\x58\xcd\x1a\x33\xd0\x9f\xdc\x4f\xa0\xf6\x1a\x5d\x1f\x33\xc6\x6e\x40\x2b\x5d\xae\x84\xe1\x1f\xbd\x04\xae\x0b\x91\x4d\xfa\xd9\xbe\x1e\xc8\x30\x70\x13\xbc\x69\x53\x3e\x42\x20\xb3\x8a\x44\x16\xb7\xf8\x0f\x02\xe9\x6f\x72\x17\x35\xf4\x70\x03\x19\x2b\x5a\x7b\x99\xa3\xa5\xa8\x00\xb3\x32\xdc\x57\xf6\x26\x5c\x03\x7c\x54\xc3\x25\xac\x37\xd8\x0c\x58\x97\x70\x8e\x59\x48\xf6\x23\xa0\xf2\xae\xbc\xbd\x9a\x83\x0d\x80\xf5\xb3\x74\x61\x42\x5f\xdb\x01\x4d\xe6\xaa\x5f\x6c\x6e\xdc\x0b\x68\x97\xfd\x5d\x8a\x7b\xa8\x0b\xb0\xe3\x52\x46\x27\xd7\x2a\x56\x86\xbd\x18\xd7\x08\xd7\x03\xea\xa9\xfc\x59\xe2\x4b\x55\x03\x54\xef\x59\x2c\xc9\xe7\x17\x07\xe4\x96\x9f\x52\xad\x56\xd0\x01\x3c\xf5\x8e\xed\x67\x42\xd4\x6e\xc0\x9c\xa7\x73\x8e\xeb\xb2\xb5\x00\x1b\xca\xa8\xb2\xec\x4c\x05\x00\x9d\x54\x4e\x46\x9f\xac\x5a\x26\x90\x5d\x81\xd5\x4a\x88\x4e\x0e\xc8\xe8\xe1\x8e\x3d\x2b\xec\x77\x88\x02\x0d\x3c\xaf\xd4\xbe\xae\xe9\xa8\xc3\x09\x86\x3d\xd4\xd5\xf2\xab\x4b\x9c\xce\xb3\x01\xfe\xbc\x63\xff\x42\xe9\xc6\x76\x47\xc7\x26\xf5\x7f\xe1\xc0\xf1\x0a\x29\xc9\x3f\xd2\x80\x1a\x59\x91\x21\x5e\x11\x0f\x00\x6b\x36\x5a\x16\x7b\x14\x91\x00\x89\x64\x07\x82\xd6\xbc\x1d\xd0\xf8\x65\xc8\xdb\xd7\x9c\x95\x80\xa3\x0e\xbb\xfb\x3a\x9b\xbe\x13\x18\xd4\xfc\xc9\x74\x34\x8b\x1e\xd0\xbf\x9d\xa9\x63\xd4\x79\x85\x40\x2d\xe1\x8e\xeb\x53\x76\xcf\x01\xfd\x05\xee\x39\x3c\x10\xaa\x00\x24\x09\xaf\x3b\x54\xf4\x54\x17\x70\x6a\x2c\x45\xa5\xe9\xed\x0f\x02\x83\xe2\x2d\x4d\xaf\xba\x9b\x01\x1a\xdb\x52\xcb\xca\x6f\x5a\x0b\xc8\xa1\x70\xb9\x55\x20\x70\x8e\x20\xc3\xab\x5f\x7f\x1c\x49\x0c\x40\x06\x8b\xa2\xc6\x46\xe1\x97\x26\x14\xa8\x32\xe6\x38\x9c\x2a\xcc\x0e\xc8\xc7\x6c\x76\x8c\xf3\xb3\x0e\x60\x2b\x07\x7f\xcb\x25\x3c\x0c\x18\x57\x6c\x39\x66\xf2\xe3\x08\x09\x39\x54\x66\xe1\x54\x23\x37\x20\xc7\x42\x8f\x48\x82\xe4\x0f\x02\x43\x6d\xbc\x5b\x6f\x1f\x1a\x26\x61\xb6\xf7\x14\xb3\x66\xee\x5d\xc0\x43\x96\x61\x9d\xdb\x92\x1b\x00\xa5\x53\xc7\x4e\x1e\x67\x4f\x02\x94\xf3\x1f\x94\xdd\x98\xb4\x0d\xf0\x4d\x26\x33\x9b\xf5\xe9\x51\x02\x1b\x6e\x2e\xcc\xf2\x1b\xeb\x03\x19\x52\x6b\xd5\xdb\xdd\xbc\x5e\x11\xf8\x45\x21\xf5\x0a\xef\xbc\x2c\xe0\xc0\xc4\xc9\x4d\x87\x35\xd7\x00\x46\x0b\x5e\x50\xad\xa9\xff\x45\x60\x0d\xcb\xda\x23\x96\xc9\xd2\x80\x99\x4c\xe3\x7d\x8f\x9f\x2f\x11\x48\x45\xd7\x9b\xea\x57\x97\x00\x38\x6e\xe2\xb1\xb8\xe3\x61\x26\x89\x5c\x14\x1f\xa2\xcf\xab\xea\xab\x80\x7b\x03\x7f\xfc\xae\x7d\x7a\x0d\x70\xe5\xf5\x86\xa1\xb4\x79\x12\xe0\x2c\x49\x65\xc3\x85\x5d\x19\x24\x64\xf0\x6c\x5b\xbc\x5d\x47\x02\x34\xce\x69\xab\x4b\x92\xd7\x03\x94\xa2\xbd\xc6\xaa\x33\xc9\x02\x58\xf1\x96\xa7\x70\xa0\xd8\x87\xc0\xd6\x16\xa5\x8e\x48\xab\x46\x20\xa3\x83\xc7\xe0\xc1\x3a\xc7\x4b\x80\x8d\xd2\x77\xb4\xa2\x56\x4b\x74\x44\xb7\xf5\xe6\x40\x2e\x40\x53\xd2\x47\xa3\xea\x8e\x4b\x80\xa6\xf8\x6c\x9f\xe5\xac\xe2\xff\xc4\x93\x57\xf7\xbd\x22\x32\x5c\x01\xf7\xe6\xfb\x19\x25\xb9\xf1\x00\x3a\x34\xbe\x1c\x5e\x63\x2d\x02\xf8\x62\xd1\x38\x7a\x66\x0f\x1f\x60\x8b\xa1\xf4\x37\x6a\xdb\x26\xc0\x18\x5d\xb3\x89\x79\xe7\x26\x40\x31\xb3\x18\xc1\x8b\xc3\xee\x80\x3e\x5c\x22\x9c\x8a\x1f\xdc\x01\xe7\xb9\xb4\x48\x97\xcd\x6c\x49\xe4\x72\x4d\xcb\x2b\x26\xba\xeb\x2c\x60\x76\x95\xf5\xae\x7d\x56\x7e\x80\xed\x13\x31\xf5\xf9\x77\x7d\x29\x8a\xe0\x99\x9f\xbc\x4c\x77\xac\x00\xdf\xb9\x37\xd4\x26\x16\x88\x02\xce\x64\xdd\x2c\x88\xe4\x62\x00\x5c\x7c\x62\xb5\x06\x75\x7e\x13\x64\x1c\x2d\x3e\x6d\xa8\x63\xf7\x93\x02\x8d\x82\xbf\xf6\xf7\xb0\x0f\x02\x6e\x37\xe8\xbc\x55\xf9\xb2\x1e\xf0\xa4\x94\x40\xca\xc3\x3d\x65\x80\x62\xa6\x87\xae\x66\xa8\x94\x03\xfa\x88\x6f\x3e\x7b\xf0\x01\x09\x90\x74\xea\xee\x5b\x7d\xe0\xa0\x40\xac\x76\x8d\xab\xde\xb7\x31\x02\xc5\xf3\x0f\x5c\x49\x50\x2b\x07\xdc\x1d\x15\x10\x72\x74\x58\x1d\xb0\xe2\xf3\x01\x9a\x43\xe3\x0d\x80\x41\x56\xbf\xf8\x63\x33\x0d\x48\xd8\x71\x27\x2a\xeb\x30\x53\x2d\xe0\x3e\xe5\xb3\xd6\xba\x72\xb5\x80\x82\x89\x74\xc9\x76\xca\xcb\x04\x1a\x7b\xcf\x85\x95\xe4\xbc\x26\xd0\x4c\x66\xbb\xc6\x92\x7f\x03\xa0\xae\xd0\xe2\x5a\xed\xdc\x4a\xc0\x9f\xf1\x09\x17\xc6\xab\x72\x80\x3c\x4a\x8d\x9c\x7f\x56\xc3\xc8\x45\x01\x06\xcd\xa6\xf5\xbf\xc6\xeb\x01\x3d\x12\x5d\x8b\xdf\xab\xd4\x53\x94\xe9\x19\xe7\x83\x0e\xab\xd7\x7c\xb3\x18\x4b\xfe\x69\xd6\x08\xe8\xd9\x26\xd1\x25\x9b\xfb\x8c\x84\xcb\x90\xbe\x27\x45\xb4\x11\x10\xcf\x7b\xd8\xd3\xfe\x69\x04\x1c\x3d\x78\xce\x83\x25\x73\x03\x09\xc3\x1c\x06\x9d\xbe\xaf\xde\x4c\x15\xbf\x85\xb3\x67\xb7\xf1\x01\xe6\xf5\x59\x89\x9c\xb0\xe9\x06\xe4\xa9\x5a\xd7\xea\xbc\x8a\x20\x2a\x81\xf7\x7f\x61\xc4\xbb\x61\x31\x75\xa6\x1e\xf0\x7b\xde\xf6\xed\xcc\x39\x9b\x00\x2b\xaa\xb9\x3f\x67\xcb\x50\x03\x1e\xdf\x64\xdd\x1d\xd8\xcc\x07\x38\x9d\x70\x4a\xf6\x3e\x47\x13\x60\x74\x24\x29\xa1\x45\xb9\x81\x84\xf2\x87\x1f\x67\xb4\xaf\xaf\x02\x9c\x53\xbb\x21\x78\x6e\x15\x45\xdc\xee\xc2\x63\x43\x15\x40\x1e\xe5\xbf\xb6\xbf\x2c\xe6\xb5\x0b\xf0\xd7\x62\xab\xd4\x21\x1a\x59\xc0\xed\x8a\xe6\xb6\x2a\xdd\x0d\x80\x0d\x6f\xd5\x6e\x67\xc7\xf1\x01\x26\xac\xdc\x55\x96\x74\x65\x05\x3c\x31\xbe\xbe\x76\x30\xc0\xbb\x0e\xdd\x94\xd4\x7d\x34\xa2\xeb\x01\x6b\x9d\xa6\xe6\x92\x6b\x1b\x01\x19\x5d\xd5\x44\x17\xb9\x9a\x00\x3d\xa4\xfd\x1f\x9b\xbc\x8b\x26\x21\xd3\xd3\x44\x52\xdc\x1e\x27\x40\xa3\x22\xff\x9f\x4f\x1d\x57\x8f\x3b\x1f\x3b\x8e\x28\x9f\x6e\x04\x7c\x58\x7b\x8b\x79\x4d\x44\x23\xa0\xda\xa1\xf9\xf9\x0d\x41\x35\x80\xa1\x0c\xfb\x38\x06\x68\x62\x01\xc3\x48\x3b\xc6\x39\x8f\x5c\x59\x7d\xdf\x15\x14\xce\xbc\x8f\x05\x3c\x7f\xb6\x97\xae\x6c\xeb\x6d\x40\x66\x4b\xcd\x75\x5e\x2b\x93\x04\xd6\x7f\xab\xb2\xf4\xef\xa3\x05\x32\x02\xc5\x96\xdb\x83\xea\x4a\x08\x74\xfb\x98\x28\xf6\x47\x55\x11\x70\x69\x8c\xea\xb4\xb4\xb6\x1a\x60\x50\xb4\xd1\x4b\xa7\xf7\xc9\x80\x55\x8f\xd3\xbf\x6c\xdd\x5c\x0f\xc8\x69\xbf\xed\x63\x66\x61\x2d\xe0\x6f\xb1\x65\xbc\xd8\x9b\x01\x58\xa6\x61\x2d\xb8\xe5\xa3\x13\x05\x3e\xf7\x76\x6c\x60\xdb\x55\x44\x22\x17\x39\xfd\xe9\xb3\x51\x3c\xda\x80\xef\x7c\x97\xac\x6f\xdf\xbb\x07\xe8\xab\x24\x38\xd6\xfd\xd9\x0e\x30\xb6\x73\x60\x69\xaf\xc8\x63\xc0\xcd\x96\x67\xeb\xcf\x44\x5e\x07\xac\xcc\x76\x3f\x98\xb9\xe9\x28\x05\x38\x43\xc6\x54\xc7\x37\x87\x90\xc8\xa5\xe9\xe3\xc4\x43\x03\x69\x39\xc0\x28\xde\xb5\xcc\xfb\xb8\xe6\x08\x8c\x62\x1b\x9c\x5e\xe0\xac\x02\xec\xab\x15\x62\xff\xe3\x4b\x0f\x18\xc1\x46\x2b\xe8\xc3\xce\x01\x28\x10\x7f\x70\x9b\x69\x7d\x0d\xa0\xf2\x1e\x16\xdb\x9b\x95\x35\x80\xea\x05\xd2\x27\xba\x8b\xf3\x01\xf9\x1f\x7f\xb1\xc9\x7c\xeb\x08\xf8\x63\x8f\xb1\xf8\x2e\x7e\x0d\xc0\xdf\x55\x4b\x2d\xcf\x1c\x15\x01\xcf\x75\xbe\x6f\x3c\xc2\x23\x07\x28\xa3\x2a\xf3\xcb\xa7\x8e\x16\x70\xbc\xd1\x51\xe8\xd7\x51\x5f\x0a\xb8\xee\x7a\xb5\x75\x84\x6a\x33\xe0\xad\x5c\xe5\x17\x07\xcc\x4c\x01\x79\x4f\x96\xc7\x4c\xf4\x7f\x25\xf0\x86\x85\x81\x41\x92\xb8\x11\x90\xf1\xd1\xa3\x57\xb2\xf4\x91\x28\xe0\xf1\x33\x7f\x06\x5d\x65\x68\x01\x17\x1c\xee\x8a\xfd\xf8\xc8\x0f\x28\x7c\xd5\x2d\x62\xeb\xfb\x7a\x40\x3f\xbb\xe1\xb6\x3a\xe3\x7a\x12\xe6\x88\x27\x2d\x79\x4d\x3e\x04\x2c\x1f\x70\xff\x32\xf4\x22\x1c\xf0\x65\xd5\xa1\x6e\xe5\xcf\xfa\x80\x26\x5c\x74\x73\x96\xae\x0d\x80\xd4\x15\x12\x79\x69\x76\xb5\x80\x53\x09\x4d\x57\x5e\x1d\xaa\xa4\x18\x79\x16\x95\x84\xff\x7d\xf5\xfe\xc3\x97\x91\x90\xe6\x8b\x66\x0d\x80\xa4\x84\x18\x2b\xc9\xfd\x0d\x80\xd1\x34\x92\xd9\x37\xb7\xd5\x03\x86\xa6\xb8\x17\xfc\x1d\x05\xb8\x09\x57\x6b\x7c\xa6\x02\xcc\x73\x79\x2c\x23\x13\x5c\x4c\xe0\xf5\x87\x8c\x03\x49\xc3\x72\x40\x86\x7c\xc1\xf6\xfc\xe3\xd7\x7f\x13\xf8\xcb\x3d\x5f\x68\x56\xa9\x11\x50\xca\x90\xf6\x75\xf6\xb9\xb3\x80\xdb\xba\x36\x28\x8f\x71\x06\x00\xde\xef\x19\x0c\x8f\x9e\xca\x03\xfc\xa1\x6d\xa6\xbc\x52\x13\x01\x68\x73\x50\x6e\x25\x73\x32\x1e\x90\xf5\x72\xf9\xce\x1b\x73\xf1\x80\x2d\x0f\x44\xfc\x68\x9d\x3f\x93\x90\x2a\xed\x91\xe0\xa9\xe6\x04\x8a\x11\x4d\x9d\x73\xe9\x75\x8e\x90\x7f\xe1\x98\x96\xaf\x47\xfa\x62\x28\xa0\x00\xa7\xff\x90\xc6\x5d\x1d\xc0\x51\xff\xdf\xd1\x42\x57\x9b\x28\xe0\xa8\x56\xae\xe2\x6c\xd8\x0d\xd8\xd6\xd2\x42\x8a\x60\x7b\x48\x31\xe2\xaf\xee\x4a\x69\x4a\x7b\x00\xf8\x72\xd7\x96\xe3\x7f\x5c\xef\x00\x6e\xbf\x7c\x5d\xbb\x71\xb5\xf8\xee\x0a\x8d\xd5\x4b\xcc\x00\xbc\xe5\xb9\x73\xb4\x61\xb5\x18\x5b\xcb\x4c\xa9\x11\xec\x80\xf4\x71\xd7\x42\x5d\xad\x1b\x00\x75\xf2\x1f\x4a\x76\xbe\xae\x06\xfc\xb9\xb1\x76\xb8\xd8\x9f\x44\x31\xf2\x7f\xeb\x2f\xda\xbe\x26\x0f\x70\x4e\x93\xa6\x96\x96\xbd\x11\x70\xc6\xf7\xf5\x85\x30\xf7\x4a\x0a\x88\x7c\xce\xdd\xff\x17\xba\x62\xfb\xd7\x1e\x38\x5a\x09\x58\xf3\x49\xed\xd5\xc5\xe0\x58\x40\xf3\x47\x3f\x39\xaa\x1b\x62\x01\xdf\x67\xd1\x36\x5a\x6d\xb1\x03\x94\x60\x14\xd1\x74\x1c\x24\x01\x0a\x96\xab\x3d\xfa\x6d\x77\x8f\x84\x11\x72\x09\x5f\xb8\x91\x44\xc2\x3f\x2f\xfc\xc3\x1d\x56\x47\x8b\x3b\x78\x96\xaf\x84\x46\x00\x96\xb8\x1b\x8d\x36\xb9\xa5\x00\xa6\xa5\x30\xd0\x2b\xae\x3e\x38\x9b\x84\x33\x62\xca\x79\x92\xf0\x0f\xfc\xf7\x04\x45\x75\x37\xbd\x39\x4e\xdf\x08\x58\x69\xae\x13\xb4\xf9\xf6\xea\xaf\xda\xcc\x6d\xf2\x7f\x71\x8d\x37\xe9\x89\xc0\x2a\xc6\x2c\x36\xa6\x06\x5f\xbb\x03\xc8\x47\xcb\xd7\xd8\xba\xa7\xe8\x7f\x22\xea\xee\x35\xba\x0c\xef\x10\xc0\xf5\x33\x3e\xf3\x1d\x4d\x11\x80\x7c\x3f\x7b\x69\xa6\x32\x6f\x90\x90\x99\xd3\xef\xd1\xe0\x64\x03\x60\x88\xea\x81\x5d\xe6\xab\x37\xea\xa1\xf1\x59\x61\xe9\xa2\xd5\xcd\x9c\x1d\x1a\xff\x3f\xca\xfd\x3c\x9a\xaa\xf0\xfd\x1f\xb8\x23\x53\x4a\xc9\x18\x22\x44\x86\xcc\x33\x65\x5f\xca\x14\x1a\x24\x24\x51\x86\x0c\xd1\x40\x12\x2a\x95\x39\x2a\x65\x2c\x49\x32\x64\x8a\xcc\x84\x38\xc6\x24\x63\x29\xa5\x51\x21\xa2\x94\x42\x17\x85\x67\x1d\xeb\x79\x3a\xfb\xb3\x3e\x7e\x9f\xf5\x7d\xfe\x3a\xaf\xf5\xbe\x76\x59\x6b\xdf\xfb\xbe\xaf\xfb\xde\x8e\x25\x74\x61\x14\x5a\xa2\xdb\xdb\x14\x10\xc5\x7a\x01\x70\x62\xdf\x9f\x1f\x4e\x1b\x1a\x00\x89\x24\xd4\x66\x17\x7a\x08\xe8\xac\x7b\x68\xf0\x4d\x7b\x36\x05\xa7\x58\xd6\x6b\x1c\x4c\xa8\x07\x4c\x8b\x1a\x2e\xab\xf8\x91\x01\xb8\x7a\x50\xba\xdd\xf0\x79\x06\xe0\x41\x4e\xf5\x4f\x21\x43\x19\x80\x7d\xfb\xfc\xcb\x4c\x86\xd3\x01\x57\x9e\x8c\xb1\x5e\xb8\x66\xf7\x51\xbf\x9f\x57\xa9\x83\x6b\xb1\xbc\x32\xa5\xf9\x7d\x3d\xe0\x85\xce\xa1\xb3\x33\xa1\xbb\x29\xd8\x0f\xb2\xbb\x98\xec\xea\x48\x25\xfd\x99\x1d\x5f\x16\xe6\xc5\x87\x74\x65\xd7\x41\x7f\x0a\x20\x4f\x5b\xbd\x52\x29\xe5\x3a\xe0\x90\x00\x45\x5b\x9b\x23\x0e\xf0\x80\x25\x9f\x4a\xd5\xd2\xeb\x30\x5d\x78\xd3\x67\x98\x3f\x0c\xd0\x91\x83\x8e\x69\xd7\xbe\x50\xc0\xe3\xa6\xf3\xf4\xd3\x8a\xc1\x14\x54\x8c\x38\x9d\xff\x10\x83\x01\xcb\xac\x25\xf1\xdc\xa3\x50\xc0\x6b\x57\x75\x96\xc4\xbe\x49\x27\xe1\x47\x42\x1f\x9b\xc5\xf5\x74\xc0\x47\x4b\x78\x9e\xc5\x50\x13\x3d\xce\x4b\x7c\x35\xaf\x1a\x16\x83\xbb\xcb\xfb\xef\xf3\xd9\x3e\x80\xf1\xd3\x61\x0f\xd5\xa8\xc3\xee\xb3\x57\x3f\x26\x52\x5c\x1a\x68\xf8\x37\xda\x61\x3f\x42\x12\x5f\x73\xcd\x10\x68\x93\x12\xee\xce\xf0\x4d\x01\xfe\x17\x3c\xf9\xaa\x29\xdf\xc7\x98\x00\x1f\x4c\x09\x8f\x6c\x96\x16\x02\x4c\x9f\x6d\xca\x60\xdd\x5f\x4f\x82\x71\xf8\x11\xbd\xd3\xeb\x4e\x01\x4a\xaf\x89\x3a\xb3\x30\xcb\xe9\x4f\x7d\xeb\xe9\xcd\xae\x05\x34\xfc\x94\xa8\x3b\x93\xd0\x00\x78\xa5\xc8\xee\xea\xa7\x1f\xf5\xa4\x64\xe5\xf9\x2d\xe5\x7b\x6a\xcf\x2f\x86\xd2\xae\xd0\x1c\xf3\xc9\x40\xc0\xa1\xb4\xb4\x15\x9b\xa9\x93\x7b\xed\xf6\xf2\x0c\x9b\xb8\x5a\xc0\x8e\x02\xd6\x04\x46\xd3\x0a\xc0\xcf\xaf\x3f\x3e\x5f\x48\x66\xbc\x42\x5b\x12\xa9\x0b\x9b\x21\x8b\xd4\xd2\xee\x81\x7a\xea\x7d\x96\xf8\xac\xc1\xd0\x4a\xa0\x97\x4b\xf5\xc1\x6e\x07\x7a\xa0\xe1\xfa\xc3\xb1\xb7\x9e\xd6\xed\x04\xbe\xdc\x5c\x71\x6e\xe3\xc9\x3f\x04\x96\xe7\x31\x8f\x84\xf0\x57\x03\x46\x9e\xb0\x55\xfc\x7f\xa0\xa1\x5f\x69\xe9\x02\xce\xbf\xdc\x70\xfe\x46\x91\xe7\x62\xc8\x2a\xdd\xc5\xb2\x82\x7d\x0f\x60\x80\x18\xff\x15\xce\x9d\xd4\xc9\xf4\xf2\xa4\x08\x9f\x46\x3d\xe0\x37\x75\xc1\xb5\xee\xf2\xf5\x80\x41\x07\xda\xdc\x8f\x1d\x8c\x05\x94\x7d\xe2\xae\xed\x64\x19\x4b\x4a\xde\x65\x3d\x15\xb8\x75\x38\x18\xd0\x2e\x65\x8d\x98\x87\x7f\x09\xe0\x1b\xa5\xaf\x2c\xb1\x0a\xe9\x80\xc5\x95\xb7\x02\x8f\x69\xe6\x02\x6a\x71\x34\x7d\xb5\x72\xa8\x05\x6c\xb3\x1d\xb2\xb0\x60\x7c\x08\x18\xd5\xba\x76\xff\x4c\x83\x35\xe0\x59\x2e\x09\xb6\x10\x51\x07\x0a\x1a\xf6\xf9\x74\x14\xba\xfa\x00\xf2\xcb\xe8\x3c\x48\x6c\x0d\x07\xb4\xcd\x2a\xd9\x50\xd3\xd6\x40\x42\x0c\x5f\x04\x56\x53\xc1\xcb\xaa\xcd\x55\x75\xf4\x04\xe0\x8f\x99\x35\x9c\xf1\x1e\x27\x48\xc9\x56\x8e\x61\xbe\x63\x7f\x03\x01\x59\x56\x88\x4e\x9f\x4f\x6c\x21\x30\x54\x23\x4e\xf3\xf2\xb1\x06\x40\xd3\x66\x8a\xcb\x02\xde\x5c\x3b\xb1\x4a\x30\x98\x02\x38\x7a\x3e\xc7\x74\x21\xf9\x07\x01\x9b\xab\x63\x6f\x96\x9f\x07\x14\xf2\xfb\x14\x36\xf3\xc9\x8a\x42\x4b\xfe\x61\x59\xfa\x72\xb6\x66\xce\x02\xc0\xb2\xeb\x03\xd2\xd1\xda\x05\x80\xef\x67\xca\x1e\x7b\x95\x7b\x00\xc2\x28\xa3\xdc\xcd\x5a\x0f\x0a\x1e\xa9\xba\x2a\xf9\x40\xf9\x2c\xe0\x0e\x13\x9b\x0a\x5b\x22\x0c\x70\x7c\x6f\xdf\xba\x4c\xbb\x02\x12\x06\x46\x25\x2d\xc3\x66\x3f\x11\x28\x3c\x2e\xe4\xa4\x68\x56\x0c\x34\x94\xae\x3c\x59\xb7\x80\xd1\xf3\x46\x31\xff\x89\xaa\x4e\xc6\xc7\xf8\xd7\x75\x31\x08\x6a\xdf\xd2\xe0\xe4\x61\x01\xfc\x31\xc6\xe3\x2a\xaa\xa9\x07\xe8\x7a\x5e\xa2\xf0\x63\x73\x19\x05\xc5\xf5\x96\x9d\x4d\xc9\xf3\x07\x8c\x1a\xbc\x2e\x62\x51\xec\x0f\xb8\x3e\xec\x6b\x6e\xc3\xf2\x0a\x40\x87\x73\x0a\x05\xde\xc3\x07\x49\xe8\x3d\x21\xae\xd8\x99\x71\x06\xd0\x9c\xcb\xdd\x77\x8b\xe9\x2c\x81\x94\x9f\x61\xc3\x0b\xaf\xb7\xc6\x52\x7b\xf4\x13\x4a\x53\x48\xb8\xfd\x76\x87\xb3\xb3\x62\x24\xa0\xdf\xf9\x58\x9b\x5b\xe5\xac\x80\xe9\x82\xbd\x99\x6c\x9f\xe3\x00\x5f\x47\xde\xf7\x5b\x80\xff\x63\xdb\x83\x97\x8f\x3a\x03\x1a\xac\xe1\xee\x67\xb7\x3e\x06\x48\x28\x8b\x47\x7d\xe9\xef\xa9\x41\xe5\x5f\x62\xda\x65\xa7\xb6\x00\x0d\x57\x9d\xff\xf2\xc9\x66\x32\x01\x46\x75\x4b\x8c\xd9\x29\x79\x02\xda\x89\x65\x8c\xdc\x3c\x6d\x00\xd8\xa3\x7a\xe1\x90\xb7\xab\x22\x20\x4b\x7e\x5f\xe5\xf8\xed\x30\x12\x5e\x9f\xb1\xef\x55\x3e\x2e\x05\x28\x54\xf4\x70\x28\x37\xfd\x10\x20\x1b\x7d\xab\x53\xcb\x2a\x11\x40\xf9\x17\x02\xa3\xde\x4c\x16\x80\x7d\xab\x6f\x4e\x28\xef\x1a\x24\x90\x9e\x73\x23\xd7\x57\x7f\x01\x40\xe5\xaa\xdc\x7d\x77\x9f\xef\x26\x81\xc7\x5e\xe8\xd3\x4d\x87\xd5\x80\x6b\x05\xe8\x73\x1e\x59\xb3\x03\xbe\xcc\x30\xdf\x2e\x6b\x6b\x41\xc2\x8b\xa5\x3e\xeb\xf8\x98\x8b\x09\xac\x75\xdb\xd0\x91\x73\xf4\x12\xa0\x2d\x73\x7f\xe8\x91\x2b\xfc\x80\x73\x22\x03\x22\x82\x1d\xf1\x80\xb1\x72\xa2\x07\xee\xfa\xe4\x01\x9a\xed\x7b\x75\x5d\xcf\xbb\x0b\xd0\xac\x4d\xca\xda\x59\x31\x0a\x70\xe4\x55\xf2\xa9\xf7\x03\x17\x48\xa8\x69\xfd\x90\x50\xb3\x53\x05\xb0\xb5\x73\xf6\xab\x93\x2d\x05\x10\x8f\xdb\xf3\x0a\xcc\x7e\x23\x50\xa6\xfd\x51\xc7\xb1\xb0\x0f\x35\x48\x2f\x2f\x7f\xf1\xd9\x32\x69\xa0\x61\xdb\x99\x1d\xbd\x9a\xd2\xe7\x00\xb3\x62\xb3\x32\x59\xe7\x0b\x01\xbf\x60\xf2\x95\x37\xc4\x33\x0a\x72\xf9\xec\x31\x59\x48\x54\x77\x9a\x5f\x0d\xed\x8a\x02\xd4\x0c\xf3\x79\x22\xfc\x22\x0a\x70\xd8\x45\x94\x51\x2b\x32\x94\x84\x7d\x4f\x3e\xb8\x9c\x6f\xf5\x02\xdc\xef\x9b\xec\xec\xfb\x7d\x9e\xc0\xf8\x76\xaf\x07\x4d\x96\x96\x80\x45\xde\xe1\x9b\x3e\xd2\x95\x00\x7a\xed\xad\x72\x92\xb9\x59\x07\xe8\x14\xc4\xc2\x51\xf1\x5e\x02\x50\x10\x4a\xb7\x37\xb0\xa7\x02\xb6\x84\xcf\x9e\x33\x15\xd1\x00\x1c\x10\xf0\x9b\x33\x7d\xcb\x05\x18\x91\x22\x74\xff\xab\xf1\x32\x40\xfe\x0b\xc3\x6b\xed\xe5\xea\x17\x43\xd6\x1a\xe5\xa2\x98\x82\x3b\x80\x6c\x76\xdb\x5a\xfe\x13\x1e\x74\x2c\x3b\xce\x89\xe8\x01\xb6\xbf\x5e\x1a\xd7\xc5\xca\x06\xf8\x98\xf1\xc9\x8e\x95\xf9\x75\x80\x47\xd6\x2c\x89\x0c\x58\x7d\x8d\x82\xf6\x37\x19\xe6\x5f\x45\x35\x00\xb2\xbf\x9a\xe5\x4c\x18\xce\xa2\xa0\x38\x5e\xf4\x93\xb8\x40\x9d\xe6\x23\xf9\x5d\x97\xa9\x89\x95\xc2\x6c\xc4\xd6\x92\x06\xc0\xd6\x88\x7e\x8a\x24\x11\x0c\xe8\x90\x16\xcf\xa6\xb0\x95\x02\xa8\x28\x79\x9f\xcf\x48\x5c\x0a\x50\x74\xfa\x92\x43\xdf\x38\x13\x09\xf9\xbd\xc9\xf5\x1e\x81\x9d\x04\x76\x69\x0a\x84\xda\x19\x89\x02\x96\xac\x60\x2c\x96\xb0\x3e\x02\x28\x78\x24\xd4\xb2\x4c\xea\x28\xa0\xc5\x95\xf5\xa9\x9d\xbf\x1f\x90\x40\xbf\xba\xd3\x4c\xc0\xca\x09\xd0\xdc\x54\xdd\x58\xf3\xf6\x21\xc0\x07\xee\x91\x36\xac\x63\x2b\x00\x45\xf7\x3e\x7c\xba\xf5\x4b\xc3\x62\xd0\x08\x4c\xa9\xd8\x43\xf1\x04\x94\xec\x7d\xd6\x2a\x86\xbb\x01\xbb\xa3\x5f\x47\x06\x17\xa7\x11\x28\xcf\xcf\xc8\xa5\x4b\xc7\x4f\xc1\xa1\x2b\xe9\x5d\xef\xf4\x39\x00\x75\xaf\x24\x47\x6d\xb8\x58\x0c\x78\x6c\x50\x26\xa4\x43\x39\x97\x82\xfb\x86\xc3\x27\x53\xf9\x5e\x02\xde\x9b\xf1\xd9\xf7\x71\xa0\x04\xd0\x70\xde\x38\x8f\xee\x4e\x14\xa0\x44\x8c\xfc\x0a\xfe\x93\x97\x01\xab\xb6\x6d\xfd\xf9\xb5\xab\x9e\x40\x5f\xdf\xa7\x7a\xdf\xde\x68\x01\x0d\xb1\x8f\x05\x0f\xe4\x44\x73\x93\x50\xae\xa9\xf2\xdc\xe8\xc2\x52\xc0\xc2\x7a\x16\xcf\xe6\x37\x22\x80\xa6\xc9\xbd\x81\xef\x59\xe9\x01\xb3\x52\xb4\x53\xf7\x33\x7d\x22\x50\x96\x75\x34\xfd\x32\xfd\x5a\x40\xbb\xa7\x67\x9f\xee\x9f\xab\x03\xbc\x30\x48\xc0\x15\xb5\x30\xc0\xae\x20\x4b\x19\xec\x0a\x23\xfd\xd0\x99\xbd\x41\x4e\x3d\x2a\xca\xb0\x08\x46\x4e\x1b\x7a\xc7\x33\x2f\x23\x21\xb5\xa8\x76\xfb\xc1\x9b\x73\x04\x5a\xd5\x3e\xe7\x72\x7a\xbd\x1c\x30\x93\xe7\xf2\x45\x55\x0d\x53\xc0\xf2\x9a\xa6\x17\xec\xbb\x0c\x00\x9d\x3c\xdb\xce\x29\x5c\x8d\x03\x74\xb2\x4d\x3e\xfc\x4e\xda\x9c\x84\xe9\xe3\x81\xf3\xe7\xa5\xf5\x48\xc9\x9b\x2d\x7e\xb7\x62\xb2\x36\x00\x6a\xea\xdc\xed\xb7\x56\x7b\x4f\x41\x27\x29\x86\x8e\xf5\x9a\xe5\x14\xdc\x91\x29\x3d\x8b\x8f\x79\x01\x3b\xe7\x2d\x13\x45\xae\xed\x07\xfc\x3b\x23\x73\x48\x3a\xe4\x17\x81\xc7\xd4\x4e\x19\x69\xd1\x55\x01\x2e\x8d\x4e\x62\xf3\x5e\x5a\x05\xc8\xb2\x37\x74\x79\x20\x6b\x15\x60\x87\xf0\xe3\x4d\x0b\x89\xc9\x71\xa5\xae\x04\xdf\xbd\x80\xa3\xab\xb2\x6d\xbc\x1a\xad\x49\x28\x6b\x9a\xed\xf3\xb0\x0d\x04\x8c\xd1\x75\x7a\x2d\x14\xab\x0c\xc8\xf5\xf7\x6c\xf6\xa3\x96\x3a\xc0\xa5\x72\xa7\xb7\x68\xad\x6a\xa4\xe0\xe1\x6d\xcb\xcc\x53\x32\xc5\x00\x2f\xca\x26\x3e\xba\x77\xae\x14\x50\xe4\xba\xb7\x6e\x1b\xdb\x0a\xc0\xd0\xde\xa6\x53\x53\xb6\xaa\x80\x7a\x0f\x2b\x8b\x35\x6b\x6b\x00\x3b\x6e\x16\xb8\xdf\x63\xb6\x03\xac\xfa\xdc\xe8\xb1\x9e\xd3\x1e\xf0\x98\x4c\xc0\x07\xf3\xef\x12\x80\x9f\xc4\xcf\x3c\x78\xbb\x76\x9c\x40\x62\x22\xac\xba\xe8\xd5\x15\xa0\x61\x32\x35\xeb\x99\x54\xff\x6a\xc0\xe0\x3f\x3f\xf8\x84\xf5\x79\x00\x55\x9f\x9d\x64\xfe\x1d\xa2\x06\x88\x9a\x85\x5c\x09\x97\x4b\x00\x6d\xdb\x7a\x82\xb2\x3f\x55\x01\x86\x9a\xa4\x88\x3d\xf8\x73\x19\x30\xde\x26\x2d\xef\x40\x02\x07\xa0\x91\x96\xcc\x80\x89\x0e\x3d\x20\x0f\x25\x9c\x65\xc7\xd0\x19\x12\xb6\x6f\x97\xeb\x7c\x3d\x7f\x08\x90\xdb\x6c\xfd\xfd\xd9\xad\x13\x04\x86\x06\xaf\xd9\xa4\x6a\xac\x00\xb8\xab\xf3\xf2\xf9\x57\xbc\xac\x80\x3e\xba\x1c\x06\x7a\x99\x4b\x00\xff\xfe\x54\xaf\xc4\x49\x11\xc0\x59\xe7\x18\x9d\x8b\xa6\xcb\x01\x7f\x5f\x8a\xa8\xe6\x8f\xda\x0d\xc8\xea\xfe\x58\x5a\x70\x85\x01\xa0\xe4\xba\x83\xf6\x77\x4f\x4c\x11\x78\x3d\xb4\x3d\x2f\xc1\xf7\x2f\x81\xdf\x7d\x79\xbc\x75\x15\x39\x81\x86\x4d\x6c\xf4\x8f\xa2\xfc\xe9\x01\xdf\x4c\x45\x6c\x22\xfc\xd7\x03\xb2\x49\x7d\x78\x16\xd5\xb2\x1e\x70\xdd\xc6\xf3\x0e\x45\x6d\x06\x80\x97\x46\xd7\xc7\xf6\xa8\xb0\x01\x4e\x4c\x74\x1c\xe7\x8c\x52\x04\x64\x37\x27\x22\xca\x1b\x06\x08\x9c\x2b\xe6\x72\x3a\x2b\x6a\x07\x34\x30\xee\xdf\xff\xc4\xbd\xb6\x9a\x82\x72\x74\x9a\x57\xaa\x9d\xb9\x01\x03\x5c\x59\xbf\xb9\xf5\x67\x03\x3e\x0a\x3a\x32\xbd\x7e\x3a\x1b\x50\x47\xe1\xdd\xaa\x75\x49\x7d\x04\xde\x2b\x6c\x53\x91\xf9\x25\x07\x18\xf6\xb5\x7b\xdd\xdf\x63\x83\x04\xe6\xb0\x10\x1a\x7f\x9f\x0a\x00\x0d\xb7\x46\x31\x53\xbd\xe8\x17\x81\x9e\x5c\xd6\xdc\x72\x7f\x2f\x53\x70\xd9\x90\x07\x27\x87\x4f\x09\x60\xbc\xe7\x61\xe3\xd0\xa1\x3c\xc0\xcf\x2c\x63\xaf\x64\x6e\xfb\x02\xc6\x3d\x50\x1c\x61\x60\xb9\x07\xe8\xf9\xd5\x2a\xe0\x9d\xf6\x3d\xc0\x55\x29\x15\x9c\x01\xaf\xb7\x02\x9a\xca\x1e\x29\x10\xba\x14\x02\xf8\x4d\x5c\x73\x15\xaf\x0a\xb5\x8d\xea\x99\xfb\x96\xe9\xe8\x00\x56\x79\x18\xec\x39\xca\x1e\x4e\x41\x63\xfa\x23\x4e\xef\xda\x2e\x03\x0d\x4f\xd5\x5e\x31\x29\xe7\x85\x00\x5e\xfa\x68\x22\xcd\x7a\x80\x03\x90\xe5\x16\x8b\x87\xa2\xee\x36\x12\xb6\x77\x1c\xe5\xbc\xd4\xc8\x02\x98\x7e\x69\x33\x77\xd8\x93\x65\x80\xa5\x42\x9f\x7a\x5b\x8f\x1a\x00\xa6\x06\x2a\x32\xce\x6c\xa2\x03\x34\xeb\x17\xde\xc5\xb7\x99\x93\x04\x83\x79\xf3\xf2\x9d\x6a\x0f\x6b\xf0\x92\x49\x9d\xa8\xaa\x8c\x16\xa0\xed\xad\xeb\x89\x5e\x8f\xb8\x00\x5b\xfc\xcd\xdd\x94\x26\x4e\x03\xfa\x88\xab\x94\x06\x84\xea\x01\x1e\xcb\x7f\x15\x74\xd8\x79\x88\xc0\xe9\x9e\x25\x57\x1b\xce\x32\x00\x0d\x6b\xdf\x9c\x0e\x53\x0a\x63\x05\x5c\xb5\x66\xb2\x93\xe5\x80\x29\x60\x54\xb9\xb3\x44\xe2\x53\x39\x40\x3b\xc9\xe9\xeb\x32\x7f\xb7\x00\x8e\xbe\xf4\x51\xed\x2e\xe4\x06\x8c\xba\x11\x25\xf5\xfc\xf3\x08\x81\x2e\x22\x3d\x52\x85\x43\xec\x80\xad\x92\x22\xef\x62\xbb\x01\x70\xf2\xe8\xe1\x70\x17\x43\x29\x40\x7a\x8d\xc6\x38\x2b\x57\x49\x40\xb6\x7d\x69\xb2\xe5\x05\x77\x01\x6f\xb9\xab\x5e\xd3\x18\x1a\x27\x30\xe5\x3d\x6b\x8e\xec\x2c\x75\x4f\xcb\x4c\xef\xd1\x77\xe5\x2e\xa0\xe9\x9c\xf8\xc1\x83\x99\xdf\x08\xd4\xd7\xf0\x89\xb7\xe0\xd8\x04\xf8\x53\xe5\x6f\xa3\x8c\xd2\x0c\x81\x3b\x9f\x58\x14\x16\x0c\x2e\x03\xd4\xa8\xf5\x8b\x2b\x61\x1d\x26\xf0\xad\x86\xeb\x1e\x3d\x43\x5f\xa0\x61\xcd\xca\xf7\x8a\xc7\x34\x65\x01\x35\x1d\xdf\x5c\xe6\x48\xa6\x03\x2c\x19\x9d\x96\x62\x88\x55\x27\x61\xdb\xd9\x07\xfb\xdb\x93\xb8\x00\x77\xfe\x8e\xe7\x13\x90\x8e\x07\x84\x0b\x9c\xa7\x1a\x1c\xaa\x01\x3f\xed\x79\x78\x44\x93\x8d\x02\x78\xbf\x77\xb6\xbf\x33\x6a\x13\xe0\xf6\x5f\x97\x98\x87\xfc\xd8\x49\x28\x70\x2a\x71\xdd\xb7\xe1\x0b\x81\x91\x0a\xac\x14\xd0\x7a\x57\x83\xfd\x27\x4c\x22\x0d\x1d\x15\x81\x86\x27\xb7\x47\xf9\xeb\xf0\x2d\x81\xd6\x29\x6a\x46\x2f\x36\x7e\x26\x30\xe1\x62\xc9\x2a\x91\x00\x46\x40\xac\x5c\x2e\x19\x3d\x92\x09\x08\x66\xc9\x49\x25\x1f\xa9\x1b\xfb\x25\xad\xca\x11\x97\x3d\x00\x57\x8a\x98\xcd\xde\x2e\x72\xa2\xe0\x69\xb6\xf6\x2c\x3a\x3a\x4f\xc0\x6d\x87\x9d\x15\x46\x44\xfc\x49\xd8\x18\x21\xde\x75\xee\x88\x3d\xe0\x1b\xe9\x93\x3c\x83\x7a\xf3\x04\x0d\xe2\xae\xfc\xab\x5a\xe6\xb4\x80\x86\xc3\x5b\x7e\x2d\x6d\x8f\x7d\x4f\xa0\xe2\xde\x57\x6f\x7d\x8f\x94\x02\x72\x8e\x5f\x9e\xa8\x9d\x1d\x26\xb0\x51\x66\xf2\xb2\x24\x75\x6d\xd9\x73\xa5\xeb\x23\xcb\x3a\x20\x61\x72\x93\x78\x58\x16\xef\x29\x12\xf4\x06\x3e\xee\x88\x63\x73\x04\x3c\x1c\xe5\x43\x44\xcd\xf1\x00\xfe\xf6\xfe\x79\x6a\xe5\x91\x69\x82\x86\x56\x7d\xfb\xea\x8f\xdf\x86\x08\xdc\xf1\x20\xf9\xcd\xad\x2b\x63\x04\x2a\x04\x3e\x7b\x5c\x73\x9b\x11\xd0\x5d\x89\x3d\xe0\xd8\xeb\xed\x80\x5f\x9f\x0f\x3e\x93\x3f\xb9\x0e\x30\xc0\x4e\xce\x99\xce\x4a\x01\xb0\x8f\xb5\x4c\xdc\xbc\x72\x9e\xc0\x80\x95\x72\xac\x61\xf9\xeb\x81\x06\xd3\x33\xfc\xc7\x25\x5d\x3f\x11\x68\x64\x5a\x2c\x17\xe7\x25\x02\xf8\xb2\x6e\xe7\x93\x0c\x41\x6d\x12\xfe\x8c\x5d\xb6\x98\xbb\x27\x0c\x18\xcd\x94\xb8\x6d\xd5\x78\x34\x05\xcb\xef\xda\x7d\x3a\x49\x3f\x4d\x60\xa7\x60\xf3\xb7\xfb\xe3\xb6\x40\x83\x0f\x57\xd6\xbb\x30\x99\x24\x0a\x6e\x14\x61\xfa\xe6\xde\xcd\x0c\x38\xe0\xae\x17\xb6\xd7\x4f\x80\x84\xfd\x31\x57\x25\x3e\xe9\xd9\x91\x50\xd2\xcb\x6a\x9d\xef\xd7\x4c\x60\xc7\x6e\x69\xed\xbe\x31\xea\xec\x3e\xd4\xc2\xff\x25\xcd\x02\xb0\x71\xe6\x52\xec\xf9\x20\x37\x40\xd1\xdd\xf7\x1d\x62\x7f\x58\x93\x80\xea\x99\xc4\xb3\x79\x1b\x40\x0d\x2e\xd3\xc9\x88\x8f\xca\x80\x7b\x9e\x8b\x1d\x6d\xd8\xb9\x1c\xf0\xe7\xfe\xbb\xe6\x7b\x1b\xa6\x08\x1a\x2c\xfa\x24\x0f\xe7\x39\x2b\x02\xfa\xa7\x48\x85\xf5\x7f\x28\xa7\x60\xd7\x51\xba\x29\xf0\xa5\x9e\xa9\x8b\x32\x3c\xc7\xb2\x55\x01\x4f\x7a\x85\xed\xbf\xc4\x20\x09\x68\x2f\x62\x5a\x94\x28\xb2\x06\xb0\x52\x77\xf3\xbe\xc3\xea\x09\x80\x79\x56\xbe\xa9\x93\x3a\x09\x80\xb2\xad\x6b\xb5\x8c\x4e\x55\x91\xc0\xfe\x28\xe9\xa6\x21\x15\x3c\x92\x02\xab\x79\xfc\xf2\x01\x8f\x76\xdf\xbf\x9a\x33\xf8\x85\x40\x49\x43\x09\x99\x2f\x9f\xbc\x80\x86\x3e\x3f\xc1\xdd\xba\xa6\xa2\x24\x48\x25\x0f\x4f\xf5\x3b\xbf\x21\xd0\x42\xa4\xf9\x75\x85\xbf\x1f\xd0\xb0\x5b\x70\xfb\x2d\xb6\x4e\x1d\x12\x64\x7c\x0e\x8d\xe4\x5e\x53\x06\x3c\x6b\xb5\xe1\x5e\x93\xf8\x5a\x40\xed\x84\xa2\xd5\xfb\x20\x02\xf0\xd4\xda\xfe\x43\xda\xcb\x8e\x01\x6e\x51\xdd\x73\x9f\xa7\xe1\x08\xe0\xdd\x80\xed\x2e\x1f\x14\xeb\x29\xd8\x11\xaa\xc3\xdd\xe5\xd0\x0d\xa8\x7f\xd3\xf7\xad\x45\x7b\x1b\x60\xc1\xb5\x42\x91\xce\xde\x76\xc0\x04\x95\xef\x44\x0e\x36\x00\xee\xea\xa5\x24\x6f\x76\x62\x03\x94\x9b\xcc\xc8\xdd\xa7\xbf\x8c\x84\x9c\xaf\xb5\xb7\x32\xee\xbf\xab\xc1\xae\xac\x97\x87\xc3\xa7\xcb\x01\xf7\xd7\x5d\x4b\x18\x4c\x75\x22\xc1\x23\xb8\xef\x8c\x9a\xa7\x0e\x60\x49\xc6\xaa\x71\xee\x7e\x35\x40\xae\x37\xbc\xa7\x65\x74\xd9\x01\x7d\x2f\x3e\x4e\x69\x23\xde\x10\x38\xa5\xe4\xeb\x7c\xc6\x7d\x39\x60\xd2\xe4\x45\xd6\x95\xed\xbc\x80\xba\xce\x2b\x2e\xce\xaa\xc8\x92\xe0\xb3\x39\xf8\x6c\xc5\x93\x17\x04\x36\xdf\x8b\x51\xd8\x7e\x57\x1e\xf0\xca\x7e\xaf\xb1\xbe\x0d\xfa\x80\xfe\x2d\x83\x3b\x9e\x32\x19\x00\x2a\xba\x98\x5d\x5f\xf2\x45\x0d\x70\xae\xf3\xea\x68\x44\x6c\x2c\x20\x83\x10\x13\x25\x3b\x97\x15\xf0\xa1\x24\x67\x6c\xa4\xe0\x04\x81\x67\x14\xf3\x5a\x22\x9e\xbe\x21\x41\xe0\xa5\x7a\x04\x27\xc7\x18\x81\xb3\x05\xfd\x91\xf3\x97\x97\x01\x7a\xa3\x95\x32\xe7\x19\x51\xc0\x2b\xb3\xea\x0f\xfd\xd9\x27\x09\x12\x72\xc3\x29\x1d\x2f\x99\x00\x7f\xfd\x19\x7f\x16\x33\x12\x0b\xe8\xe7\xbc\x71\xdd\xf6\x6b\x72\x80\xa7\x0d\xba\x06\x85\x5e\x50\x8f\xc9\x0e\x4d\x7b\x97\x83\x0a\x20\xcb\xc9\x7d\xfb\xcd\x94\xd3\x01\xbf\x54\xce\xbb\x39\x5f\xd2\x03\xe4\x8d\x15\x78\xb9\xd2\x94\x1f\xf0\xf8\x09\x8c\x8a\x22\x96\x02\xf2\x73\x0c\xda\x88\x14\x98\x01\x36\xca\x69\xf6\x7e\x39\x53\x0d\xf8\xee\x74\x90\xd9\x6c\x6d\x35\xe0\x36\x5b\xb9\xa9\xbf\xb5\xe4\x64\xec\x6e\xe5\xe4\xfd\x93\x99\x80\xa3\xc5\xc7\x5a\x0a\x4e\x64\x02\x3e\x75\x52\x79\xff\xab\x23\x0d\x70\xcb\x92\x95\x07\xa2\x02\x6c\x00\xe7\x23\x9d\x8f\x1c\xfa\x6d\x0d\x48\xa7\xbd\x7a\xef\xe0\x19\xea\xd4\x73\xf8\x3d\xe7\xbb\x6f\x37\xa0\xf0\x44\x5c\xe9\x5c\x8c\x31\xa0\xc8\xec\x6b\x47\x8b\x82\xad\x80\x9f\xe2\xf1\xd0\xe0\x97\xe5\x80\x06\xfa\x11\xe7\x77\x0e\x2e\x05\x54\x56\xdf\x37\x56\x46\xaf\x40\xc2\x84\xfa\x91\xa8\xa2\x93\xe7\x49\x40\xf3\x1f\x07\xbd\x07\x8e\x03\x82\x41\x76\x93\xc3\xf9\x9f\x04\x0d\xa7\x7f\xff\xf0\x3a\x1f\x5a\x0b\x68\xbc\x35\x52\x68\xa6\x36\x15\xb0\xc0\xf5\x91\xfe\x42\xf2\x75\xc3\x9a\x90\xa4\xe8\xb3\x35\xb8\xeb\x4a\xf8\xa4\xdc\xf3\x3a\x40\x29\xbb\xeb\x85\xbb\x5f\x37\x50\xd0\x2d\xf3\x33\x67\xeb\x1f\x24\xb0\xf5\x5d\xcb\xf5\x0f\x7e\x79\x80\x05\xaf\x8b\x6f\x8d\x4b\x8f\x11\xf8\x88\x57\xd9\x4d\xe8\xf9\x0c\x81\xa3\xa7\x3c\x9c\xd4\x3c\xef\x03\x0d\x1d\x25\xd3\x82\xde\x6b\xeb\x00\x0b\xf5\xf6\x6b\x73\x7f\x29\x03\xdc\x60\x98\xf1\xcc\xef\x9c\x0f\x05\x67\xad\x5d\x2d\xb7\x08\x95\x02\xc6\x37\x3b\x56\x6f\x66\x2e\x05\xac\x64\xb7\xed\x6b\x16\x2f\x05\xec\x55\x3a\x30\xcb\x5d\x9a\x44\xc1\x3a\xd3\xa0\x8c\xdb\x2b\xe4\x00\x77\x7d\xfa\xf5\xdd\x25\xb3\x8a\x84\x04\x89\x53\x4b\x05\xe9\x7f\x10\x98\x36\x7a\x60\xf0\xce\x9a\x42\xc0\x44\x63\xc5\x6f\x8d\x2c\x05\x14\xcc\x17\x89\x98\x4b\xa6\x26\x5d\xa1\x2f\xa3\x5f\xad\xb5\x00\x4c\x7a\xbd\x2d\x9f\x9d\x22\x0c\x98\x4d\xbf\x9b\x53\xe0\xfb\x34\x41\xfb\xe7\x5b\x59\x14\x9d\x99\x37\xd4\x02\x0d\x9c\x4a\xe3\xc2\x0b\x78\x57\x2b\xb0\x6b\x01\x5a\xd2\x86\xac\x03\xd2\x83\x04\x2a\x8d\x04\xbf\x3f\xcd\x13\x47\x60\x21\x45\xf4\x59\x9a\x98\x2a\x60\x9a\xe5\x17\x27\x46\xdb\x54\x12\xbe\x10\x7a\x37\xdc\xbf\x73\x02\x8e\xb9\x3d\x14\x2e\x09\x00\x12\xc6\x15\xdb\xbe\xdc\x8d\x2b\x24\xf0\x1e\x83\x8d\x8a\x4b\xd6\x37\x02\xc3\xc5\xfc\x4c\x9d\xca\xd9\x00\xf7\x86\xd5\xfa\xad\x95\x81\xc5\xb0\x3d\x6e\xef\x57\x17\x4a\xd0\x62\xd0\x1a\xe6\x69\x2a\x1e\xd8\x0b\x58\xf7\xa7\xe0\xe5\x86\xba\x25\x80\x7b\x23\x0e\xe4\x7f\x24\xd2\x29\x78\xe4\xfa\xbb\x47\xec\x59\x4c\x80\xb7\xac\x9a\x4f\xda\x7e\x66\x03\x94\xee\x0e\xdc\xb8\xca\x7b\x19\xe0\xe0\xc6\xc2\x30\xcf\x8e\x53\x24\x6c\xf6\xfc\x4e\xbf\x67\x9b\x2b\x4c\xf3\x97\xf9\xe7\x9c\xbd\x00\x78\x6b\x53\xfe\xda\x47\xf9\x05\x80\x36\x71\xf9\x35\x2b\x43\x0f\x00\x9e\x0e\x2c\x35\xf0\x59\x6d\x4e\x4a\xb4\xea\xf8\xdd\xa3\x7d\x57\x03\xaa\x73\xc7\xa5\x1a\x6a\x0d\x13\x58\xa1\xb3\x47\xc8\xd8\xcb\x17\x68\xe8\x17\x7d\xac\xed\x3e\x35\x4e\xa0\xe1\x72\x9e\x8b\x19\x41\x3f\x09\xb4\x34\x98\xd0\x56\xe6\x3e\x09\x34\x38\x5a\xbb\x4e\x2f\x89\x61\x00\xfc\x64\x11\x1f\xce\x9d\xfa\x10\x70\x87\xc6\x16\xd9\x05\xb8\xfd\x6e\x2e\xd3\xfa\xca\x45\xc2\x74\x8e\x7a\xfc\x41\xcd\x5e\x02\xc3\xbb\x0e\xc4\x95\x0e\x69\x01\x6e\x2a\x79\xd1\xe9\x51\xfc\x9b\x40\x6d\x21\xcf\xf9\xd7\xc1\x81\xb0\x08\x96\x55\x2f\xcb\x7a\x77\x91\x67\x31\x68\xee\x10\x1a\x08\x2a\x1b\x27\x70\xbd\xdb\xb2\x34\xd3\xe7\x05\x80\xf9\x7d\x0d\xce\x06\x4c\x14\x40\xaf\xac\x19\xce\x10\x5b\x69\xc0\x2b\xce\xa6\x0d\xec\x8d\x26\x24\xb4\xce\x18\xb6\x6d\x1d\x12\x23\x21\xcd\x4c\xe7\xfb\x0e\xb3\x11\x82\x86\x55\x47\xb2\xb7\x9a\xaf\x60\x81\x45\xa0\x7e\xd3\x5d\x47\x5b\x86\x58\x0c\xd1\x9e\x99\x9b\x55\xcc\xfe\x12\xf8\x63\xdc\xf1\xf0\x9f\x16\x66\xc0\x44\xbf\xb5\x23\xe6\x07\x96\x00\xa6\xec\xf1\xff\xe4\xba\x79\x27\x09\x27\x2f\xc9\x5e\xe3\x3c\xb4\x0d\x50\xd9\xf7\xd7\xc0\xeb\x27\x64\x74\x1d\xbd\x28\x4e\xac\x5c\x49\x82\x47\x4b\x8b\x99\x50\x4e\x5c\x0d\xba\xb8\x06\xc7\x1b\xec\x34\x06\xf4\xcc\x96\xda\xa4\xe3\x9b\x45\x42\x87\x78\x9d\xe8\x48\x08\x2b\xe0\x9d\xe7\x2d\xf1\x4e\xc7\x58\x01\x6f\x87\xae\xd9\x6c\x17\xac\x09\x78\xe6\x57\x68\xb4\xf2\xb4\x32\x60\x79\x52\x97\x47\xe8\xfb\x0d\x80\xcb\x28\xce\xdb\x12\x7f\x84\x51\x68\xc9\xf6\x8f\xbf\xf7\xd5\xd7\x4a\x91\x60\xc0\xb5\xde\x92\x2d\xbe\x10\x30\x72\x30\x72\xad\x1c\x75\x52\x3e\x19\x9f\x3e\x2d\x4b\xc5\x8f\x34\x3f\xfd\x2f\x51\x45\x80\x73\x06\xcb\x47\xdc\x73\x2a\x01\x5b\x5e\xa8\xae\x39\x42\xc5\x99\x0e\x33\x23\xd6\xd3\x65\x80\xdf\xd3\x59\x33\x1e\x1c\x6e\xa7\xa0\x40\xe7\x45\xe9\x16\xaf\x4a\x40\x49\xc6\x12\xdd\xc7\x54\x64\xe8\x4e\x98\xd8\x69\xbd\x21\x30\x48\xfd\x81\xfc\x6b\xbe\x4f\x04\x66\x0d\x1b\xd9\x07\xff\x90\x80\x45\x20\x97\xac\xf2\x68\xfe\x56\x09\x41\xc3\x7d\xbe\x17\x2a\x07\x95\x79\xe1\x7f\xc1\x8d\x21\xce\x78\x37\x67\x3d\x41\xc3\xad\xc7\x29\xbc\x9f\x9f\xf3\x02\x3a\xf3\x74\x05\x18\x68\x2d\x05\xbc\xda\xdf\xf5\xdd\x88\x45\x61\x31\xd4\xde\xb5\x2e\x8b\xfd\x2e\x41\xd0\xe0\x19\x90\xfa\x2b\xa7\xf1\x38\xd0\xf0\x6e\x9d\x6e\xc3\xcf\xea\xdc\x1a\x3c\x52\x7f\xda\x63\x60\x85\x33\x20\xd3\x5c\x95\xb7\xdf\xf1\x76\x02\x9f\x54\x1c\xba\xbe\x74\xd3\x32\xa0\xc1\x4f\xfa\xe1\x7a\x39\xf1\x21\x02\x6f\x95\xcb\xa7\x2f\xcb\x16\x03\xcc\xb5\x3d\x98\x1f\xb2\x4d\x09\x50\x61\xdd\x05\x65\x2e\xe9\x14\xc0\x87\x5f\x18\xf6\x44\x7c\xb9\x47\x41\xcf\xf5\xd7\x1c\x77\x1a\xab\x01\xfa\xd3\xbf\x47\x11\x05\x1e\xc0\xa1\x0b\x31\x1a\xfb\xf7\xd4\x01\x6a\xeb\x14\xdc\xda\x48\xc5\xf6\xc7\x59\xbb\x16\x12\xde\xba\x87\x5f\x8b\x66\xf8\x01\xdf\xa5\xf4\xab\x9f\x0c\x52\x03\x4c\x0e\xf1\xe0\x3c\x7e\xe9\x3e\xa0\x64\xd4\xd1\x43\x3b\xb8\x2f\x93\xb0\xe2\xc3\x2b\xa3\x91\xb6\x4f\x04\xfe\x3c\xc6\xf5\x75\xf4\x50\x26\xa0\x8a\x7c\xc8\xc6\x75\xc3\x3d\x14\xfc\xfa\x75\xac\x58\x98\x0a\x14\xe5\x6f\x5f\x48\xac\x8b\x63\x2a\x9a\xbf\xdd\xa1\xa0\xcc\x25\x8b\x17\xfb\xd9\xab\x01\xf9\xee\x4e\x1d\x3c\x2f\x54\x0d\xb8\x33\x8c\xaf\x82\x61\x59\x35\xe0\x67\xff\x3d\xbf\x6a\xdf\x94\x53\xb0\x5f\x59\x24\x72\xa1\xe4\xd6\xae\x26\x6b\x50\x97\x06\xe8\x2d\x79\x76\xe3\x6e\x8e\x6a\x12\x92\x89\x15\xf3\xfa\xff\x51\x72\x54\x4a\xb9\xb3\x70\xb1\x82\x42\xa2\xfb\x16\xb9\xe5\x24\xdc\xb9\x9f\xa8\xb9\xc5\x96\x73\xb1\x52\xbc\x94\x9c\xa0\x2f\xb6\x13\xe8\x19\xa6\x56\xe3\xd4\xf6\x9e\xc0\xde\x4b\xdf\x37\x9e\x1e\x91\x00\xbc\xaa\xac\xdc\x24\x36\xaa\x0e\xb4\xe4\xa1\x49\x89\xe9\x92\xa4\x12\x82\x86\x92\x0d\x73\x8c\xf5\x32\xbc\x40\x43\x40\xe9\x86\x4d\xc1\x4a\x3f\x08\x3c\xd9\x3d\xa1\x30\xbf\xb4\x8a\x82\x65\x29\x95\x9a\x0f\x14\x8b\x01\x8b\xb3\x9e\x65\x2d\x45\x51\x12\xaa\x5e\x13\x4a\x79\x66\x8e\x80\x9b\x38\x05\x84\x4e\xef\x7c\x4a\xa0\xcf\xf1\xae\x21\x28\xe3\x03\x1a\x34\x57\xb2\x31\x07\x7b\xab\x02\x1e\xe2\xd1\x8b\x67\xdd\x78\x08\x50\xd4\xd3\xbd\xcd\x63\x9d\x0e\x20\xab\xd2\xcf\x53\x61\x6c\x5a\x80\xcb\xd4\x13\xe5\xe9\xea\xfb\x09\xbc\x8c\x67\x9b\xcb\xb0\x9b\xc0\x93\x96\xcb\x79\xd4\xae\x32\x03\x0d\x5f\x35\xde\xaf\xfa\xaa\xff\x9c\xc0\x2f\x83\xb9\x0e\x7a\x5c\x27\x00\x4d\xb3\x02\x9b\xbe\x3f\xaa\x01\xe4\x57\xcf\xfb\xb5\x80\xd3\xfd\x32\xe7\x7e\x50\x11\xd0\xcb\xc4\x78\xe7\x85\xe1\x62\xe0\x73\x5f\xc1\x17\x63\xdf\x41\x60\xe2\xf2\xde\x3d\xe6\x1a\x5f\x08\x54\x3b\x55\xec\xed\xc6\xe1\x01\xc8\x54\x2a\xb7\xa9\xa9\xd4\x95\x84\xd1\x3f\xda\x51\x29\x62\x9a\x80\xca\x43\x07\xf6\x15\x07\xda\xfc\xcf\x44\x5d\x56\x4d\x20\x5a\xf8\x28\xe0\x77\xf9\xed\x93\x1d\x22\x47\x49\x89\xf6\xaa\x5b\x4a\xa1\xdc\x37\x6a\xf0\xee\x5a\xb3\x96\x2f\xf4\xf5\x80\x7b\x65\xdf\x5f\xf5\x36\xab\x03\x3c\xe8\x35\x50\xfc\xcb\xb0\xb1\x06\xe7\xcf\x9f\xe8\xe7\x30\xaa\x05\xbc\x30\x3b\x18\xa4\xb6\xbd\x01\x50\xa0\x93\xd7\xf4\x46\x66\x2e\xa0\xea\x1d\xe6\x58\x27\x39\xea\x33\xa6\xf7\xe7\xe6\x42\xc9\x7f\xac\xe1\xd6\x9d\x8b\xa7\x00\x6f\x36\xba\xd8\x0c\x7f\x6a\x00\x64\x8a\xae\x24\xea\x8b\x1a\x00\x05\xaf\x7e\xaf\xfd\x1a\x90\x0f\xd8\xa3\xa1\xc1\x5c\xfd\xf3\x32\x60\xfa\xdb\xde\x01\x22\x29\x12\x50\x75\xb0\x3c\x6a\x21\xf9\xed\xb9\xaf\xaa\x51\x72\x8e\xc0\xd9\x1d\x22\xed\x6f\xa9\xcb\x8e\x1d\x57\x95\xc5\x27\x45\x5e\x40\x49\xe9\x1d\x4d\x2a\x07\x0c\x81\x96\x9c\x6d\x82\xbb\x5c\x6a\x3f\x08\x1a\xc6\x9b\xf8\xee\xc4\x9e\x8d\x02\x1a\x4a\xfa\x0f\x87\x7d\xfc\xc3\x45\xc2\x5c\x3a\xaf\x17\xe3\xf9\xcb\x24\x30\x30\xd1\x6b\x44\xb6\xb0\x01\x46\x1f\x48\x17\xff\x33\x5a\x03\xc8\xba\x65\x36\xfe\x91\x6b\x09\xe0\xdd\xe9\xa1\xf3\x0b\xf8\xcc\x97\x21\x75\x85\x77\x3f\xa0\xcd\xac\x99\x58\xfc\x09\x1e\xc0\x2b\x52\x83\x31\xa5\xd6\xba\x80\xa7\x0f\xb1\x66\x2b\xb1\xdd\x05\x14\x3c\xaa\x6b\x55\x65\x92\x02\xe8\xe3\xf5\xa2\xee\xec\xf6\x66\x0a\x6e\xd7\x0d\x4a\x5a\x48\x02\xfb\x66\x8b\x22\xfa\x3e\xd6\xd0\xe0\x3f\x56\xd0\xdf\xd1\x1a\x0c\x8b\xe0\x86\xee\xd0\xea\x82\x00\xff\xc5\xb0\xa7\x37\xa6\xe2\x44\xaa\x23\xe0\xce\x8a\xed\xe3\xf3\x5e\xdc\x80\xbd\x11\x62\x7f\x73\xd9\xb5\x01\x53\xd9\xdf\xfd\xec\x10\x92\x23\xe1\xab\x4b\x65\xb4\xe3\x5c\x37\x81\xb0\xbb\x78\x3d\xff\xcf\x75\x80\x4f\xdc\x94\x5f\x6e\x28\xf2\x25\x41\x21\xe1\x9a\xfd\xe3\xb9\x42\xc0\xc7\x5e\x05\xc4\x61\xe7\xc3\x80\x74\x7c\xd5\x83\xae\x97\xf6\x2c\x86\xe8\xef\xc4\xf6\x1d\xdf\x77\x03\x4a\x55\xdf\x17\x8c\x5e\x31\x0c\x58\xd1\x7a\xbe\xe9\xc2\xa9\x7c\xc0\xb5\xdb\x3e\x1f\xb9\xa4\x70\x85\x84\x47\xdb\xbc\x46\xed\xa9\x1d\x64\xe8\x5c\xbb\xc1\x42\x07\x89\xe7\xff\x60\xf1\x8d\x3a\x70\xff\x8d\xa7\xb7\x1b\x97\x7b\xe5\x35\x10\x68\xcb\xdd\x6e\x62\x9a\xf4\x97\x40\x13\xae\xce\x7b\x07\x6a\x57\x02\x0d\xb7\x47\x0a\x6c\x4b\x62\x64\x01\xb7\xb9\xc5\x5d\xec\x2d\xa8\xa2\x60\xde\x63\x96\x87\xef\x84\x1a\x01\x25\x84\xc2\xf4\x9c\x96\x17\x02\xde\x56\x35\x1f\xe9\x0f\x28\x25\xc1\xd4\x4a\xf2\xf3\x20\x15\xa5\xc9\xda\xb3\x0b\xb8\x64\x3f\x61\xaf\x64\xdd\x00\x38\xb1\xe2\x49\xe4\x73\xf5\x06\xc0\x77\x26\x87\x4a\xe9\xb4\x1a\x00\x1f\x1c\xf5\x38\x5e\x2e\x2c\x05\xf8\x3a\xe1\x77\xd2\x21\x63\x79\x12\xb6\x74\xba\x1c\x2b\xd0\xe9\x20\x50\x4c\x2b\x69\x7e\xe1\x77\x5c\xf9\xb3\x5f\x0b\x3c\x64\x4a\x49\xb8\x6c\xfb\x2a\xf8\x38\x15\x12\x3c\x0d\x47\x17\x50\xd7\x91\x67\xb9\x00\xc6\xef\x42\xc7\xd4\xf8\x59\x17\x83\x54\xb2\x8b\xcf\x26\xa3\x15\x24\x64\xab\x1e\x5b\xcd\xfc\x78\x96\xc0\xdd\x8f\xa2\xd6\xd5\xc4\xd9\x01\xae\xa9\x77\xf9\xd4\x7d\xd2\x18\xb0\xb1\x0c\xf5\x9d\x0d\x75\x01\x05\x2e\x1c\xaa\x8c\xe6\xe3\x04\x34\x5b\x7f\xc0\xfc\xee\x17\x7e\xc0\x83\x3f\xfe\x0a\xf3\x3d\x0d\x24\xe1\xfb\x57\x17\x5e\xca\xfd\x60\x40\xf3\x8f\x7e\x61\xeb\x73\x39\x01\xe5\xea\x9b\xbc\xdf\xe7\x8f\x11\xc8\x7c\x57\x7c\xff\x31\x46\x7d\xa0\xe1\xc5\x4e\xc3\x76\xf3\x94\x2f\x04\x0d\xeb\x57\x70\xe7\x30\xa8\xd4\x2d\x06\xe1\x5f\x9d\xec\x9b\x28\x5a\x40\xc3\xdd\x8e\xac\x47\x82\xc9\x77\x00\x0b\x2f\x87\x44\x1c\x4e\x5a\x14\xed\x36\x27\x75\xc4\xe2\x9c\x48\x28\xee\x8d\xb2\xf2\x4b\x34\x5e\xac\x94\xc8\xd4\xb5\x6b\x19\xd3\x59\xc0\x91\x8d\x69\x82\xa7\x87\x52\x28\xb4\x64\x1f\x5d\xc5\x6f\x1b\x73\xfa\xc5\xe0\x2d\x96\xef\x7f\x8a\xda\x77\xa2\xaf\x5d\xbd\x75\x90\xda\x77\x42\xb8\x79\xa7\xb6\x7c\x93\x00\xcc\x14\x9a\xb8\x71\x62\x44\x1d\x68\x89\x4c\xcb\xc4\x85\x85\xed\xca\x3f\xcc\xd5\xb0\x3f\x4a\xde\xcd\x0b\x78\x4c\xfd\x02\x64\xb6\x29\x02\x2d\xb9\x78\x2d\x6c\x97\x08\x5d\x75\x0d\xde\x7e\xc9\xa5\x7d\x63\xad\x25\x20\xdf\xb2\x3c\xbb\xde\x1c\x3d\x12\x5e\x9c\xb5\x54\x7a\xa8\x23\x0e\xe8\x25\x1c\x12\xf3\x56\x57\x14\x50\x36\x8d\x71\xf7\xc6\x31\x5d\x40\x9f\xb6\xf0\x47\x17\xc7\xd8\x01\x2b\xef\x9d\xb8\xf6\x96\xff\x17\x81\x2d\x0f\x22\xd3\x55\xb7\x2e\x07\xec\xac\x54\x68\x9b\x5a\xc5\x41\xc3\xb4\x52\xfc\x2e\xc5\xc2\x4f\x04\xaa\x38\x3b\x2d\xe5\xde\x62\x04\x98\xf6\xf4\xda\xd5\xe2\x46\x15\xc0\xc9\x8d\xb3\x26\xd1\x46\x27\x48\x50\x79\xf9\xd3\x6e\x7f\xb7\x29\x09\xfe\x0d\x99\x15\xc9\x1b\x95\xfe\x27\x12\x37\x1f\x1a\x9d\x37\x79\x42\xd0\xa0\x3d\xc6\xe6\xc0\x5e\x69\x0a\xff\x0b\x8d\xc7\x4c\xbc\x15\x6a\xc5\x01\x95\x4d\x1a\x96\x77\x3d\x9f\x22\x70\xbb\x4a\xf4\x0e\xa5\x65\x32\x80\x52\x81\x7c\xad\x91\x07\xe7\x08\x0c\x8c\x20\x70\x8c\x29\x1e\xfe\x17\xde\x75\x19\x6c\xe0\xa3\xcb\x22\x81\x69\xc5\xf8\xfb\xff\x04\xe7\xd6\xb5\xb8\x86\x8a\xac\xc4\x7a\x86\x04\x86\x44\x12\xde\xaf\xb8\xd1\x73\x83\x0a\x3d\x85\x24\x39\x47\xea\x1a\xd3\xe9\xb7\x33\xf3\x15\x75\x8d\x51\xa3\x9b\xf7\xb1\xa3\xee\x2e\xff\x07\x86\x3a\x93\x96\xb1\x2f\x6b\x24\x70\x76\xaf\xb4\xe2\x17\x8e\x5f\x04\x4e\x08\xf2\x5c\x63\x1b\x79\x46\x42\xcc\xad\x32\xc7\xa9\xb8\xcf\x04\xc6\xed\xb5\x38\xbd\x6d\x88\x1d\x70\x76\xad\x82\xf7\xb1\xd0\x5e\x02\xb9\x53\x9f\xba\x8e\x3c\xed\x23\xb0\x8e\xdb\x34\x3c\x7a\xff\x83\x1a\xac\x3a\x77\xc4\x4b\xca\xcf\x11\x68\xb8\xc0\xf3\x28\xf5\xf4\x20\x17\x60\xb8\x48\x46\x14\xaf\x7c\x37\x81\xb7\xae\xf1\x5e\x12\x93\xa9\x07\x54\xbc\x7f\x64\x68\x01\xff\x92\x3e\x99\xdb\x69\x73\xbc\x0f\x6a\xd0\xac\x84\x45\xf5\xe6\x9f\x87\x80\xbf\x66\xce\x26\x09\xaf\x2c\x07\x0c\x68\x19\xfb\x7c\xb0\xbc\x0e\xf0\x6a\xf7\x1b\xbd\x73\xa5\x6e\x14\x14\x78\xd1\x11\x74\xdd\xf7\x2f\x81\x3a\xea\x5e\x59\xa7\xee\x6a\xc2\x22\xf8\x6d\xe4\xe1\xbe\x4b\x26\x7c\x31\xa0\x7c\x7d\xe1\x29\x61\x3f\xc0\xaf\xd3\xf1\x37\x7c\x84\xc3\x01\xef\x84\xc5\xbc\x9e\x1b\x3b\x08\x38\xbc\x3a\x58\x82\x45\x22\x06\xf0\x57\xd4\xfe\x83\x2e\xd1\x83\x14\xfc\x9e\xcb\x57\xc2\x4c\x4d\xbe\x3c\x75\x0f\x9e\xdb\x9c\x06\xb8\x43\x74\x42\xd0\x61\x7f\x0d\x29\x61\x1e\x5d\xef\xb7\x70\xe7\xdb\x75\xd5\x96\x04\x7c\x95\x80\x45\x30\x2c\xd9\x67\x3e\x47\x9d\x5e\xff\xb0\x7c\xf2\xc0\xe7\xd3\x4a\xbc\x80\xe1\x17\x6e\xfe\x3c\xa0\x24\x01\xb4\x24\xf0\x80\x2b\xc7\x1a\x6a\x33\xf7\xbc\xdb\xd4\x30\xa2\x58\x04\xd8\xf3\xf5\xf5\xeb\x05\xd8\x3e\xed\x4c\x34\xeb\x1d\x25\x70\x8b\x7a\xf9\xf4\xba\x5b\xc2\x40\xc3\x8e\xd0\xdf\x1c\x62\x51\x48\xd0\x30\xcb\xfb\x71\x92\xf9\xbb\x2c\x2c\x82\x84\xe1\x81\xe3\x0b\x5f\x0e\x77\xd0\xcb\x70\x5c\x52\x2d\x09\x98\x38\x3f\xf6\xb5\xaa\x9e\x17\x70\x98\xad\xe5\xae\xba\xec\x04\x81\x6d\xcd\xf6\xbd\xe1\xaf\x84\x00\xaf\x72\x9e\x38\xd9\x1c\xf8\x93\xa0\xe1\x7d\x6d\xda\x60\x4c\x72\x11\x81\xb9\x5b\xd6\x66\x28\x03\xf5\xc4\x79\x51\xa3\x38\x43\x21\x94\x84\xad\xce\xac\x05\x5d\xf1\xbe\x04\x8e\x9e\x18\x91\xb0\x3e\xa9\x02\xc8\x62\x21\xac\x72\xfb\xb5\x10\x60\xea\xb7\xa0\x9e\xd4\x91\x04\xc0\x9c\x5a\x35\x8b\xf2\x64\x0f\xc0\xe8\xec\x99\xea\x7a\x85\x58\xc0\xf8\x1d\x19\x11\xc5\x01\x42\x24\xf0\x56\x71\x2c\xb3\xb6\x52\x21\xe1\x42\xd7\xf3\xb4\xc0\x4b\x4b\x00\x05\xb5\x8a\xd7\xcb\x2e\x7f\x42\xe0\x07\x93\x0a\xba\xb4\xc3\xaa\x40\x83\x3e\x63\x4c\x58\x3e\xb5\x59\x1d\x39\xab\xec\x13\x4d\x6d\x56\x8d\xc2\x67\x97\xd4\x7d\xaa\x05\xc4\xf7\x73\xc7\x05\x9e\xd7\x02\x4e\x4c\x55\xe9\x2f\x24\xca\xda\xef\xe4\x34\xca\xe9\x01\xc5\x19\x37\x36\xec\x99\xbd\x0f\xb8\xc2\xad\x2e\xce\xf0\x65\x20\x60\x87\x71\xe2\x54\xd7\x83\x7b\x80\x2b\xd7\xee\xdc\x23\xb5\xba\x81\x42\x2b\x25\xa3\x82\xd8\xd0\xc3\x12\x12\xd8\x28\xcd\x36\x0b\x93\xf1\xdf\x23\x91\xd3\x7c\x7e\xff\xaa\x21\x09\xc0\xad\xf3\x2b\x29\x97\x47\x0c\x81\x96\xf8\xde\x4b\x16\x5b\x58\x71\xff\x41\x28\x86\x6e\x87\x86\x3c\x2f\x2c\x82\xfd\x1b\xae\xcc\x0f\xec\xfd\x4a\xfc\x7f\x7f\xd5\x7a\x06\xb0\xfe\x75\x9f\x5a\xd8\x5f\x4d\xc0\x7d\xa2\xd6\x63\x2e\x42\x3b\x00\xed\x9f\x86\xc5\xda\x08\x8a\x03\xfa\x68\x1f\x39\x7e\xf7\xf7\x5b\x02\x8b\x3e\xee\xf3\x5b\x6f\x21\x0e\x34\xcc\xc5\x2f\x69\x58\x58\x57\x45\x82\xd8\xb8\xa6\x4e\xcb\x01\x1a\x0e\x08\xac\x7d\x6c\x39\x49\xd0\x60\x9b\x71\xac\xb2\xd2\x43\x19\x68\xe8\x15\x66\x91\x3d\x99\xfd\x92\xc0\xba\x08\x2f\x56\xbd\xc1\xef\x04\xde\xb2\xdc\xb7\x89\x5d\x4e\x09\x68\x78\xb9\x85\x79\x84\x7e\x48\x82\xa0\x81\x62\x44\x8c\xcc\x24\x3b\xc1\x22\x78\x36\x12\xfb\xc6\xd8\xef\xda\x62\xd8\xc1\x5d\xf6\x77\x6f\x4c\x19\x60\x86\xe0\xbe\xf1\xfd\xb1\x19\x80\xe9\x9d\x9f\x67\xae\x14\xff\x20\x30\x8b\xf2\xe5\xeb\x95\x75\x73\x04\x9e\xb8\x54\x19\xef\x3e\xd0\x45\xa0\x9b\xbe\x9c\xef\xb9\x55\x02\x80\x1f\x18\xa3\x1c\xd9\x15\x4e\x92\xc0\xbe\x33\xc9\x48\xf0\xf9\x61\x40\x47\x01\xfe\x53\x69\x6d\xc5\x80\x12\x87\xd2\x74\x58\x07\x8a\x01\xaf\xfc\x71\x6f\x3f\xac\x7c\x1f\x70\x43\xd9\xae\xd9\x2e\xcf\x56\xc0\x10\x87\xce\xb0\xa7\x54\x44\xdf\x98\xb9\xb3\x90\x3c\x0a\xcf\xa2\x3b\xe3\x5f\x0a\x28\x6c\x38\xa1\xeb\x1c\xf0\x9c\x40\xa1\xbd\xa7\xef\xf5\x50\xc7\x54\x5a\x79\xf2\x61\x2d\xb5\x79\xfe\x37\x96\x1f\x8a\x60\x5b\x18\xca\x7f\xd8\x73\xf9\x62\x4b\xb0\x2c\x2f\x2c\x82\x77\xd2\xc3\xc2\x7e\xca\x3f\x08\x3c\x93\x7f\xaa\xf9\xcf\xd5\x5a\x40\xa9\x9d\xed\x87\x1f\x6c\x7e\x4f\x60\x30\xdd\xe0\xaf\xb3\x89\xac\x40\xc3\xd0\xd2\x8a\xfd\x67\xb6\xd7\x02\x6e\x37\xe9\x38\xb1\x80\x73\x8f\x5c\x82\xbe\x36\xe7\x92\x50\xba\x39\x45\x67\xe9\x60\x20\xe0\x5a\x37\xdc\x25\x5c\xca\x00\x58\xbf\x11\x9e\x33\xfd\x2a\xa4\x20\x5f\x29\x7f\x09\x57\x71\x2d\x20\xe7\xc5\xcd\x77\x5e\xdf\xe2\x07\xac\x9d\xb2\xa2\x28\xfa\x19\x01\xd2\x5f\xe6\x89\xb1\x93\x6e\x22\xf0\x94\x80\x63\xd2\x6c\xc0\x2c\x09\xe7\x73\x26\xd6\xf7\xbb\x0c\x11\xf8\x49\x3b\x98\xd1\xf9\x8c\x14\xa0\x0e\x8c\x7b\x94\xd4\xc7\x01\x3e\x29\x9c\x5a\xdb\xb5\x65\x13\xa0\xdf\x31\xfa\x73\x1f\xca\xff\x10\xc8\xe3\x18\x51\xbb\x45\x23\x04\x68\xd8\xe0\xbe\x7b\xa7\xa7\xe8\x69\x12\xf6\x50\xd6\x87\x0c\xd8\xc6\x00\xca\xdf\x0f\x39\x15\xc2\x5f\x45\x02\xe5\xda\x38\x47\xc7\xf9\x4a\xc0\x64\x37\xef\x90\xe7\x5c\x55\x80\x0f\x1f\x94\x44\xaa\xff\xc7\x35\xbe\x5d\x4f\x5c\xd4\x1e\x97\x03\x0e\x14\x79\x2f\x5f\xc0\xae\x38\xe1\x7c\x55\x2a\xfe\xed\xb5\xff\xf5\xc1\x75\x9a\x93\x1c\xcf\x46\x25\x80\x86\xff\x7e\x49\xb3\xe2\xfc\xa6\x9d\x92\xd4\x25\xf7\xbf\x71\xf8\xd5\x1d\xef\xa8\x6b\xb1\x04\x7a\x4d\x1d\xcf\xe4\x63\xa8\x07\x8c\xd9\x6a\x7f\xfe\x6d\x50\x31\xa0\xa4\xd1\x8d\xb8\x84\xea\x22\x0a\xc6\xbb\x79\xcb\xb9\x0c\x51\x7f\xba\x7a\xc2\x0d\x93\x37\x65\x80\x0a\x82\x1d\x5c\x65\x4e\xc7\x01\x33\xbe\xb5\xaa\x3e\xbd\x2c\x02\xe8\xbf\xbd\xff\xfd\x72\x7e\x2d\x40\x2d\xfa\x1b\x1b\x34\xaf\xda\x93\xc0\x75\xf0\x63\xd9\xb7\xae\x4d\x80\x6c\x62\xe9\x95\xa5\x0f\x27\x08\xdc\x98\xc5\x57\xb6\x72\xaf\x32\xd0\xc0\xd3\xf8\x58\x33\xdb\xba\xb7\x86\x86\x27\x7f\x25\x7e\x7c\x14\x91\x06\x1a\x6a\xea\xdf\x77\xe6\x85\x0c\x10\xb8\xea\xb5\xfb\xc7\x1d\x65\xba\x40\x43\x5f\x5e\xd5\xde\xc6\xd7\xa2\x24\xe8\xee\x61\xe9\x7c\x7a\xb2\x8b\x40\xe7\xef\x42\xb2\xe7\xcf\x3f\x00\x84\x55\x6e\x0f\xbf\xda\x3d\x00\x74\xeb\xf2\x76\xa0\x04\x16\x02\x8a\x5b\x1f\x5a\x6b\xba\xa3\x0e\xb0\xa8\x78\xcf\x59\x9e\x9f\xc1\x80\xc3\x2c\x21\x96\xaa\x56\x95\x80\xf7\x93\x6e\x33\x5e\xec\x29\x04\x3c\x80\xeb\x3f\xbc\xd1\x2a\x23\xe1\xdf\x9d\x8f\xaa\x73\xca\x8c\xa1\x4e\x87\xff\x46\x5d\x39\x6b\xd0\x42\xfb\xfb\x07\x33\xfd\xe3\x56\x3b\x64\x78\x81\x06\x57\x13\xb7\x4b\x0a\xb6\x99\x35\xc8\xb7\x8c\xff\xea\xb7\x62\x33\x40\xfd\x37\x01\x22\x5d\xac\x02\x24\x34\xd4\x09\x0e\x49\x48\xf7\x11\x8b\x20\x02\x2f\x1b\x4c\x5e\x3b\x01\xff\x0b\x3c\xb1\xd1\xf3\x32\xb9\xad\x04\x0d\x1a\xa9\x5e\xae\x6f\xe9\xea\x00\x55\x25\xc5\x38\x84\xf7\x28\x03\x6e\x68\x2e\xc8\xf8\xf2\x8a\x0c\x0b\xeb\xc4\xe4\x2d\xc1\x73\x04\xae\xa2\xdb\x52\x91\xf3\xd3\x18\xf0\xf3\x7a\x07\xd7\xd9\x9f\x17\x49\x88\x3a\x1b\x91\x1b\x99\xe3\x07\xf8\xcd\xa1\xa8\xf3\xe8\x94\x28\x20\x47\x27\x83\xce\xbe\xea\x72\x40\xc6\x84\xde\x0d\xd6\x54\x6c\x8a\x75\xec\x10\x79\x99\x0b\xb8\x89\x35\x1f\x17\x4a\x36\x36\x2b\x85\x34\xd9\xcb\x01\x2f\x2b\xed\x74\x5c\x40\x4e\xbe\x6d\x65\x38\x15\x75\x69\xeb\x55\x17\x92\x71\x3f\xc7\xd3\x0b\x78\x72\xee\x36\xc3\xc2\xa3\x7e\x44\x49\xf3\xda\xc2\x0d\x4f\x48\xb3\x64\x76\xa6\xde\xde\x7f\x90\x9b\x5f\x77\x73\xe1\xf6\xfe\x83\x96\xd6\x40\xab\xe1\x45\x1e\xc0\xe8\x46\xc5\x4c\xd5\x25\xb5\x80\xe9\x6b\xaf\x1e\x5f\x48\xde\x45\xfa\x67\x3c\x55\xfd\x41\xe0\xcc\x8a\x5d\x53\x8f\x0d\x0b\x00\x59\x6a\x2f\x8e\x9d\x71\xcd\xa5\xd0\x92\x9d\x4e\xbe\x9c\xcf\xc7\xeb\x00\x6d\xea\x7d\x55\x0f\xa5\x56\x00\x56\x05\xcd\x29\xed\xb8\xd1\x46\x41\x43\xa1\xa9\x69\xf7\x71\x05\x40\xff\x70\x71\xc5\xbf\x1e\x1b\x01\x83\xd6\x8d\x1a\xee\xe3\x09\x04\xdc\xc0\xe4\xd1\xad\xfb\x7b\x9c\x40\x4b\xcf\xa8\x35\x9b\xc6\xbc\x60\x11\xf4\x8c\x32\xdd\xdd\xc8\x60\x4b\x5d\x5b\x12\x4f\x59\x37\xad\x01\x14\xe2\x18\x8b\x3e\x4b\x59\x05\x98\x50\xaf\x21\x96\x1c\xad\x47\xc2\x71\xf1\x58\x43\xff\xb1\x6e\x02\xed\x4d\x8a\xa2\x1f\xb1\x6e\x22\x5d\xcc\xbc\x7a\xc8\xba\x79\x44\x97\x84\x7f\x17\x5f\x33\x0c\x08\xcd\xdb\x41\x07\x68\xca\xe4\xde\xfa\x8b\x8f\x81\x04\x93\xcb\x0f\xb2\xb2\xde\x17\xd7\x60\x7e\xbe\x57\xea\x2f\xb5\x9d\x80\xeb\xc7\x4c\x8f\xec\xd6\xe7\x02\xe4\x6d\x71\xdd\x99\x90\x16\x4e\x82\xd0\xf8\xb1\x18\x19\xea\xd6\xd1\x60\xb4\x27\x79\xa5\xff\x4b\x02\x9b\x86\x76\x99\x3d\xfd\x5c\x0e\xa8\xf0\x64\x66\xb2\x8b\x8a\x3f\x56\xe2\x62\x0b\x49\xac\xa6\x34\xa3\xbd\x5d\x76\x0d\x4e\x26\xea\x85\x37\x6f\xac\x02\x8c\xda\x73\x4f\x3e\xd9\x22\x11\x50\x26\xc4\x77\x2e\x78\xf7\x61\x12\x12\x82\xb6\x4a\x2c\x6c\x4a\xc3\x6f\x97\xb9\x3d\xa7\x17\x03\x5c\xf7\xac\xb9\x2e\x47\xb0\x02\x50\xf2\xa6\xe3\xdc\xb4\x40\x25\xa0\xb6\x92\xed\xaf\x21\xae\x2e\xc0\xc6\x67\x1b\x1d\x79\xb8\xbb\x00\xef\x14\x69\x56\x21\xb5\xd4\xad\xb5\xf3\xeb\xf3\xa0\x3a\x12\xde\x56\x8a\xf8\xf2\xca\xa4\x03\xb6\x27\x3f\x38\xf8\x82\x9a\x5c\xd8\xac\x11\x78\xd6\x3e\x0d\xb0\x6b\xf0\xd1\x9f\x22\x9f\x79\x02\x8d\x4e\x6f\x53\x3e\xf1\x8d\x0e\xb0\x7c\x36\x42\xde\x85\x7a\x52\xdc\xe4\x69\x7a\xd5\xef\x87\x04\x2c\x02\x73\x8f\x49\xf7\x85\x07\xe9\x1f\xfe\x2f\x6f\xb8\x33\x86\x37\x3d\xdd\x63\x4a\xed\xdd\x29\xa1\x02\x6f\xec\x9c\x00\xad\x95\xcc\x7f\x6a\x1b\x9d\x27\x41\xe6\xb4\x61\x44\x4a\xc2\x51\xc0\x0b\x26\xd9\x96\x0f\x1e\x2f\x03\x4c\xf5\xb1\x66\xda\xd7\xb5\x05\xb0\x62\x69\x0a\x9d\x31\x53\x08\xa0\x4d\xe0\xd9\xdd\x42\x2d\x16\x80\x22\x0e\x4f\x2d\xe4\xd6\x36\x90\xb0\x46\x2d\x57\xf5\xe4\x59\x0f\xc0\x3d\xa3\xe3\xba\x65\x6b\x8d\x01\xed\xc2\x3d\x3f\x3c\x72\xf1\x5d\x0c\xb3\x8d\xaa\x5d\x0f\x1e\x55\x11\x68\xaf\xde\x7f\xfb\x59\x69\x29\x05\x77\x1e\xe9\x3b\x39\x6a\x59\x01\xf8\xeb\xf6\xf7\x7b\xf3\xad\xc6\x80\x6d\x76\x57\x89\x99\x0b\x92\x80\xb5\x8d\xfb\x73\x78\x77\x8c\x13\x38\x34\xef\x69\xfa\x72\xa3\x17\xd0\x90\xb8\xcb\xbf\xf3\xd0\x6b\x4d\x40\xe6\x56\xd6\x94\x33\xe9\x9a\x80\xb6\x3b\xa4\xe0\x70\xe5\x3c\x81\xda\xad\x2a\x4f\xe2\x73\x6c\x61\x11\xb8\xe4\x94\xa7\xd5\x24\x96\x12\xa8\xc0\xb7\xf5\x68\xbf\xc8\x3c\x09\xcc\xc9\x5c\xa6\x8d\xf3\x3e\xb0\x08\xe2\x8f\xa7\x1a\xe5\x17\xf4\x11\x34\xc8\x6d\x14\xee\x7b\xc9\xdf\x00\xf8\xb8\x9f\xb5\x65\x01\x7a\xdd\x2f\xfd\x1b\x06\xeb\x01\x57\x89\xa9\x88\xbc\xa6\x26\xaf\x78\xc6\xd3\x3b\x67\x28\x80\xa9\x77\x05\xba\x17\xf0\x2f\xb9\xfa\x32\x89\xcf\x81\xba\x80\xa8\xd4\x39\xd6\x2c\x2c\x20\x01\x0f\xe2\x94\xd7\x8c\x49\x00\x0d\xe7\x78\xa7\x2c\x67\xa9\xa3\xfc\x0f\xff\x97\xe1\x8e\xde\xb8\xcb\x4f\x88\x7a\x72\x99\xf8\xc4\x65\x6a\x72\xe0\x3a\xe0\x24\x91\xc7\x70\x94\x52\x06\x18\x31\x9e\x7c\x62\xcc\xae\x16\x70\x36\xcc\x9d\x45\x56\xa2\x0e\x90\x2e\xf0\xa1\x8c\xcb\x5b\x0f\xc0\xda\x4b\xa5\x23\x5d\x0f\xe5\x49\xa0\xb3\xa8\x38\x7d\xa6\x9b\x81\x04\x87\x9a\xec\x0f\x77\x4f\xcb\x93\xe0\x22\x76\xe1\xb6\x42\x25\x23\xa0\x58\xd0\xfd\x57\xfa\xc5\x06\x80\xbe\x3e\xef\x79\x52\x15\x27\x08\x14\xdd\xef\x5e\x28\x1e\xa8\x02\x34\x38\x24\x09\x1f\xc8\xf9\x3c\x4e\xd0\x20\x58\x92\xf8\x47\x5a\x6a\x8c\xc0\xc8\xf8\xa0\xa4\xda\xd8\x62\xc0\x83\xb5\xba\x56\xff\x89\x8a\x7b\x77\xd0\x54\x89\x91\x04\x6b\xb5\x86\x03\x31\x6f\x0c\x00\xe5\x75\xf9\x77\xf7\xfd\x5a\x06\x38\x64\x31\x17\x6c\x75\x99\xba\x31\x4b\xe2\xbc\xb5\x80\xcb\x1f\xaa\xe2\x3b\x7a\x8b\x49\x09\xc7\xbe\xd7\xd7\x44\xed\x4b\x16\x03\xc1\xa4\xb6\xe9\x0a\xb5\x5f\x84\x6c\x18\x8a\xf0\x97\x2c\x07\xb4\x74\xb9\x14\x70\xe0\x54\x39\xa0\xe8\xab\xf8\x59\x8b\x80\x66\xc0\x5f\x57\x2c\x32\xb4\x2b\x73\x01\xd7\xd6\x32\x24\x55\xed\x2a\x22\xe1\x5f\x0b\x78\x63\xbc\xf7\xe7\x21\xea\xca\xff\x0f\x8a\xaa\x26\xc5\x0b\x03\xf7\x0f\x07\x7b\x86\xbf\x65\x52\x4f\x13\xff\xc0\xe8\xa2\x32\xf3\xb6\xbd\x89\xc0\x1b\x0c\xdd\x2d\xc3\x99\xda\x80\x73\xab\xcc\x62\xb5\x02\xca\x01\x6f\x7e\x70\x17\xc9\x16\xa9\x07\x5c\x5e\xe9\x21\x67\xf9\x7d\x33\xe0\x1f\xc8\x96\xcd\xa7\x37\x06\x7c\xd8\xf8\x4d\x3f\xfb\xf9\x00\x81\x11\x7d\x13\xa0\xfa\x85\x05\xf0\xfb\x8b\x6e\xf7\x2d\xbc\x26\x80\xbf\x7a\x36\x3e\x4e\x96\xde\x42\x02\xab\x5b\xad\xf9\xcf\x5c\x1e\xc0\x10\x99\xf9\xdc\xe5\x11\xcc\x24\x30\x74\x17\x0e\x54\x8d\x8e\x12\xe8\x72\x40\xd9\xc5\xeb\x71\x2d\x81\xcb\x2b\xbf\xc8\x5f\x6e\xe7\x03\x1a\x66\x9d\x03\xa4\x4f\x66\xf4\x10\xd8\xbd\x85\xbf\x5d\xa0\x3a\xb7\x06\x77\x0e\x4f\x3e\x94\x84\x0c\xc0\x12\xf9\xe5\xcf\x17\xf0\xc0\x25\xbd\x93\xf9\xc9\x18\x81\xcd\xfc\xb2\x29\x4b\x22\x54\x00\xe9\xff\x24\x84\xe9\x76\x07\x01\xb6\x85\x37\x96\x2e\xa0\xc9\xe3\xb8\x40\x9e\x53\x34\xe0\x97\xdf\x0c\x9f\x1b\x87\x85\x01\xa7\x05\x3f\xb7\x4a\xa8\x57\x01\x1e\x5a\x12\x75\x7c\x01\x77\xfb\x6d\x2a\x63\x3f\x97\x02\xca\x5f\xad\x4a\x5a\x48\x06\x65\x15\xe5\x97\xf3\x3e\x20\x21\xff\xe1\x7e\xdb\x05\xfc\xeb\xc2\xff\xce\x7a\xdc\xec\x2e\xfe\x51\xd4\x3b\xff\xdf\x48\x31\xbb\xb3\x6a\x61\xcd\xfc\x87\xe0\x6a\xab\x6f\x67\xa8\x43\xf0\x0f\x92\x72\x91\xac\x57\xa8\x1b\x4e\x9e\xe2\x66\xe5\x9b\x7b\x55\x01\x4b\xeb\x96\xc8\x69\xf6\x2a\x03\x6a\xdc\x60\x10\x7a\xde\xc9\x08\x18\x36\x56\x7b\xd1\x40\x30\x03\x70\xaf\xf1\x93\xe4\xd7\xef\xf6\x00\x76\x54\xfe\x1c\xd0\xb5\x8b\xa2\xe0\x87\x6b\x23\x53\x74\x39\x4b\x60\x3a\xa4\x89\xad\x75\xc4\xff\xdf\x27\x32\x4b\x1c\x8d\xfb\xee\xa2\x4e\xc2\xcd\x82\xe4\xf3\xaf\xbe\xd4\x91\x20\x8b\x57\xa4\xdd\x88\x3a\xc0\x27\xa1\x1f\x1a\x17\x92\xa5\x77\x1c\x2f\xfc\x66\xdc\x0d\xf8\x4e\x65\x48\x9b\xb8\xcf\x0f\x58\xdc\x32\x7a\x6d\xfd\xc8\x31\x40\x43\x97\x8a\xf9\xc7\x4b\xf5\x01\xdf\x97\x48\xfd\x4c\xe2\xb8\x03\xa8\xbf\x22\xe2\x6c\xa3\x6a\x3a\xe0\xbe\x57\xf9\x57\x3e\xaa\xd5\x51\x68\x49\x8f\x5a\x07\xaf\x18\x77\x2d\x09\xff\xee\xd7\xbd\x37\x1a\x1b\xdd\x3e\x4b\x00\x0d\xa3\x07\x96\x1f\x5b\x78\x52\xff\x41\x53\x3e\x2a\xea\x1d\x1f\x2f\xd0\xa0\x6b\x7a\xe0\xb7\x10\x5d\x75\x0d\xee\xfe\x6b\x61\x15\xbf\xd6\x12\xb0\xb6\xb3\x3c\x4c\xe7\xd8\xe5\xff\x89\xa6\x9a\x98\x7b\xe1\x73\x92\x24\xc8\xe8\xda\xb5\xfd\xb1\x62\x01\xd4\xb4\xff\xb1\x15\xd2\xa5\x49\x28\x6e\xf6\x0c\x2e\xb1\x11\x03\xbc\xb7\xc7\xdc\xc6\x7d\xaf\x16\xe0\x43\x83\x0b\xc6\x17\x2e\xdc\xad\xc1\xe8\x0e\xa1\x11\xee\x25\xe9\x80\x12\x5f\xbd\x0c\x78\xa8\x48\x58\xf9\x85\xf1\x9d\x43\x56\x0d\x6a\xf8\x35\x7e\xd8\x24\x90\x07\xa8\x54\x5d\xf2\x7e\xf2\xc2\x6e\x12\x86\xb9\x3b\x92\xbc\xfa\x94\x01\x7b\xac\xb8\xda\xac\x40\x09\xa6\x53\x36\x9f\x15\xcb\x17\xf9\xf7\x89\xf7\x3f\x72\x3f\x5a\x7d\x6a\x96\xa0\xe1\xce\x37\xbf\x9f\x91\x6c\x3f\x09\x2c\xdf\x47\xdc\xde\xa0\xbb\x1d\x50\xea\x75\x0c\x0f\xe7\x66\x66\xc0\x18\x47\x61\xb1\x0a\xcb\x2d\x8b\x41\xc3\x23\xd0\x7e\x9b\xc8\x9a\xc5\x50\xb6\x42\x73\x68\xe6\xce\x24\x41\x43\x89\x58\xb4\x84\xc0\x5e\x4e\xc0\xc0\x20\x57\xab\xd4\x4f\x27\xff\x27\xfa\xe3\xd3\x23\xda\xad\x36\xfc\xff\x89\xd3\x75\x29\xb2\x57\xfc\x2a\x00\xe7\xf7\xd6\x76\x32\x5c\xaa\x00\x74\xd7\x72\xf7\x5a\xc0\x8a\xc8\xd1\xe1\xa5\x54\xb0\xbf\xfc\x6b\x6e\x36\x98\x0b\xf8\xdb\x2d\x43\xd4\x9c\x8a\x56\xf5\x6b\x61\x07\xa8\xfb\x91\x47\x03\x8c\x0f\x29\xd4\x76\xf4\x0f\xff\xbd\xaa\xf5\x18\xb1\x49\xd0\x53\x9b\xcf\x7f\xe3\xdf\xb3\x42\x37\x79\x53\xdc\xf8\xb9\x0d\xe0\x68\x69\x58\xae\xcc\xb4\x30\xe0\x27\x49\xfb\x89\x36\xa5\x79\x02\x6f\xa7\x64\xde\x63\xce\x32\x06\x1a\x2e\x67\xf6\x04\x67\xcb\xf1\x00\x6e\x9e\x17\x8d\x39\xbd\x26\x06\xb0\x3a\x21\xc1\xa7\xba\x68\x19\xe0\x73\x9b\x2c\xe6\x58\x8d\x1f\x04\xfe\x2c\x7d\x2a\xfd\x6c\x27\x07\xe0\x2e\x49\x7f\x13\x8b\x59\x1b\x40\x89\x8a\x63\xcd\x87\x0f\xca\x92\x30\x17\x23\xce\xf9\x87\xe1\x4e\x0d\x1e\x30\x35\x9d\x4c\xd5\xd5\x01\x1a\xd8\x57\x4a\x9d\xac\x7f\xa6\x42\x82\xdf\x84\xce\x6f\x4f\x8b\x1e\x02\xd7\x26\x3e\xd2\x3e\xff\x48\x0e\x30\xfb\x95\x36\x8f\x73\x66\x2d\x09\xa7\xf2\x0e\x28\x74\x8d\xfd\x20\x30\xd3\xbb\x46\xe9\x46\xf7\x20\x81\x3b\x56\x3a\x75\xce\x68\x2e\x01\x3c\xa7\xce\xb5\xf9\xa7\x8f\xde\x62\xf8\xc3\x22\xf0\x42\xda\x2a\x0e\xd0\xce\x54\xe1\xeb\x7f\xa2\x4b\xc7\x3c\xa3\x25\xac\xa0\x06\xb9\x53\x96\xb9\x96\xda\xbb\x03\x96\x56\x15\xd8\x7c\xff\x98\x03\x78\xde\xf8\x4d\xc4\x02\x18\x7a\x15\x0e\x76\x8a\x35\x90\x4a\x32\xa2\xbf\x7f\xe8\xad\x2a\x07\xdc\x10\x66\x7f\x48\xff\x3f\x60\x83\x6a\x6a\x0b\xf8\x77\x1c\x1f\x17\xe8\xfa\xf9\x82\x3a\xdb\xdf\xcd\xcc\x2d\xb9\x3d\x24\x01\x34\xa4\x0f\x97\xfd\xfd\x43\x1d\xc1\x7f\x98\x3b\xd6\x6d\x66\x48\x3d\x7c\xff\x83\x5b\x9d\x72\xcb\xc2\x08\xba\x54\xdf\x90\xbe\xa2\x69\x09\xd8\x36\x60\xf9\xbd\xaf\xfc\x0f\x81\x3e\x14\x26\xbd\x12\x3f\x67\xa0\x41\xf0\xfd\x0c\x58\x33\xda\x02\x5a\xd6\xdb\xaf\xb8\xbb\x9b\x07\x30\x6b\x5b\x78\x47\xd0\xab\x07\x80\x1f\x0d\x5c\x9b\x64\x99\xeb\x00\x6f\xb4\x79\x3e\x90\xa2\xb6\xfd\x3e\x11\xfe\x35\x43\xfb\x0e\x02\x0d\x9e\x7c\x99\x89\x96\x09\xf6\x80\x22\x9b\xc7\xdc\x9a\x0f\x4e\x11\x78\x51\xa1\x2e\x53\xf2\x31\x2b\xe0\x90\xb2\xf2\x01\x95\xeb\x69\x24\xa4\xee\x7f\x2d\xee\xdd\x1e\x08\x28\x32\x6d\x59\xb4\x87\xb5\xae\x06\xb9\x64\x05\xb6\x1c\x0b\xf6\x00\x1a\xd6\xb4\xaa\x1c\xfb\x38\x21\x0c\xb8\x34\x56\x4f\xbd\xfb\xcc\x1f\x02\x8d\x8c\x5e\xb8\xe8\x6a\xaf\x06\x1a\x2e\xa7\xf0\x4e\x7b\xbc\xe4\x21\xe1\xc6\xc6\xa5\x12\xd9\x9f\x2f\x2f\x06\xcb\x2e\xba\x1c\x53\x4d\xe3\xff\x1b\x78\x57\xcf\x8f\x70\xad\x2b\x03\xd4\xd9\x9e\x9d\xc6\x4d\x45\xb7\x68\x7e\x87\xc2\x85\x58\xc0\x35\x07\x63\x4e\xa9\x6e\xa5\x00\x16\x66\xb8\x70\x7f\xda\x99\x48\x82\x86\xbd\x51\xd6\xc2\xb7\x5e\x2a\x73\x66\x84\x17\x5e\x77\x9d\xb0\xdd\xba\xda\x9b\x3a\x5e\xff\xa0\xe2\x7e\xaa\xed\x2f\x75\xbc\xfe\x41\x51\x57\xe9\xd1\x77\x29\x5e\xa0\x21\x58\xda\xc0\x37\x56\xf4\x07\x81\x82\xce\xb2\x9c\x9f\x7e\x65\x01\x6a\xea\x8f\xef\x73\x10\x64\x06\x6c\x90\x1b\x6c\x4f\x3a\x75\x1d\x50\x7e\xf5\x35\xcf\x05\x10\x22\x55\xbf\xcd\x9d\x1c\x01\xf9\xc7\x72\x38\x1e\x33\xd6\x11\xd8\xcf\xec\x7c\xf1\xfc\xda\x35\x80\x3b\x63\x96\x04\xa7\x78\xba\x2d\x86\xef\x9e\x0f\x1e\x2d\x57\xf5\x5a\x0c\x74\x35\xc6\x41\x7a\x4e\x92\x80\x92\x3d\x97\xee\xbc\xbe\xa1\x0a\x58\x78\x72\xc3\xb9\x11\xea\x63\xa3\x3d\x14\x7f\xf0\xad\xfe\x1a\x40\xcd\xc6\x16\xcd\xa1\x37\x3a\x24\xb8\xeb\x09\xcf\xe2\xcf\x01\x02\xd7\x5c\x5a\xb3\xae\xca\x90\x0e\xf0\x5e\xf8\x49\xe9\xc7\xf1\xdd\x80\x9c\xda\xb9\xf2\x05\x2b\x1a\x00\xab\x7b\xba\x98\xf2\x46\xa8\xbb\xb3\x6d\x3f\x7c\xd2\xce\x97\x92\x4a\xce\xaf\x65\x82\xc2\xff\x46\xff\xff\x90\x0a\xd8\x2a\xb2\xf5\xe6\x02\x46\x24\xe5\xf6\x85\x51\x4b\x21\x1f\xd7\x6c\x0d\xa3\x26\x36\x19\xc7\xc2\x43\xa9\xc8\x14\x18\x5c\x3b\x20\xdc\x08\x38\x30\x35\x21\xd6\x98\x51\x00\x38\xa2\xc1\xb6\xdd\x6c\xa0\x1b\xb0\xe5\x7e\x94\x77\x31\xd3\x4d\x40\x5f\xfd\xbb\x2f\xfb\xa9\xd7\x4c\x1d\xd8\x77\x22\x94\xfa\xff\x44\xf1\xea\xed\x5f\x80\x78\x85\x52\x67\x63\x66\x03\xe0\xcd\xca\x5f\xa1\x3d\xf7\xaa\x01\x2d\xea\x13\x79\x98\x9f\x64\x90\x4a\xda\xaf\x18\x85\x6b\x59\x79\x00\x57\x17\x49\x68\x67\x6f\x2c\xa7\xe0\x48\xaa\xb1\x94\x94\x52\x3d\xe0\x19\xb7\xef\x2f\xb7\x9a\x49\x02\xba\xd6\x33\xdd\xd8\x65\xa2\x0b\x28\x1c\xbf\xcf\xeb\x74\xb3\x1c\x09\x1a\x7e\x06\x43\x8e\x3b\xcc\x49\xb8\x19\x3c\x38\x19\x75\x51\x13\x50\xa3\xf2\x57\xfc\xbe\x67\x73\x04\xde\xa9\x56\x64\x70\x49\x32\x05\x1a\xee\x37\x0e\x2b\xcd\xc9\x9e\x22\xa1\xe3\x44\x7a\xe1\x86\x70\x1b\xc0\x53\xd5\xa5\x5c\x05\x73\x1c\x80\x13\x06\x2f\x9e\x99\x7e\xd0\x07\xdc\x6b\xad\xef\x16\xc4\xbe\x1b\x50\x6a\xb9\x3f\xcf\x36\x23\x1d\xc0\x1b\x47\x2f\x2b\x3b\xde\xdb\x0f\xf8\x55\xca\xfc\xed\x83\x7b\xd4\xa3\x64\x0d\xdf\xa1\xb2\xa3\xa7\x00\xbb\xfd\xb7\xb0\x74\x1c\xb2\x01\x5c\x37\x12\x6a\x2c\x3f\xb9\x05\x30\x3e\xc1\xef\xfc\xaf\x12\x1d\xc0\xd9\x9b\xea\x85\xf3\x22\xa9\x80\xab\xfb\x08\x97\xbc\x89\x0b\x80\x74\x65\x04\x73\x5d\x51\x4f\x0d\x7e\x4f\x09\xc8\xd5\x12\xb1\x03\xe4\x39\xb4\x7e\x1b\x8f\xe8\x71\xc0\x82\xa4\x97\xd1\x4e\x93\x7b\x49\xe0\x62\x2e\x5d\x6a\x7d\x98\x1d\x30\x93\x0b\x79\xb3\xcf\xd6\x01\xae\xb0\x61\x93\x5f\x00\x9b\xdb\xcc\xf8\x8f\x00\x5f\xc0\x5b\xb7\xb9\xb4\x56\x1e\xa5\x2e\x44\xbb\x73\x7e\x45\xe9\x08\x03\x7e\xf7\x89\x58\xce\x63\x94\x4e\xc1\xcd\xc1\x79\xfe\xb6\x97\xea\x01\x53\x2a\x94\x1c\x44\x44\x36\x01\xae\x98\xc4\x0e\xe3\x90\x36\xc0\xa1\x90\x36\x7b\x29\xd7\x16\xc0\x32\xdb\xdb\x6d\xd1\x2e\x85\xd4\x63\x59\x34\xef\x6f\x36\x31\x40\xf9\xbb\xad\x4c\xfe\x28\x06\xd8\xbf\x9f\xed\xdd\xfa\x16\x32\xbc\xa6\x5a\x7d\xe8\x95\xa7\x08\x1a\xda\xff\x68\x8f\xd5\x05\xf7\x11\xa8\x6e\x7d\xb4\x6b\xed\xdf\xdd\x40\x43\xe5\xc4\xf7\xb0\x00\xf7\xdf\x04\x16\x2c\xb5\x9b\x94\xfb\x7e\x0e\x70\xcd\x57\x75\x3a\x15\x41\x17\xc0\x3c\xfd\x1e\xde\xfe\xc0\x3f\x04\xaa\x14\xc1\x99\xa7\x95\x00\x28\xe4\x9a\xb2\x26\xf2\xcd\x19\x12\xc6\x3c\x87\x2b\xad\xd3\x76\x00\x72\xdd\xfd\xe2\xcf\xbc\xbd\x00\x90\x85\x5f\xa4\xff\x8b\x81\x34\x09\x1b\x7e\x32\x35\x5d\x10\xad\x00\xec\x3e\x53\xb4\xe7\x3c\x15\xcd\xfa\x61\x5a\x0b\x89\xfb\xd5\x34\xce\x1d\x66\xdd\x35\x78\xd4\x2d\x8c\x6f\x66\x97\x0e\xa0\x4b\x6f\x81\x8b\xb3\x86\x28\xa0\xe8\x61\x5f\xff\xc1\x13\x3c\x80\xa9\x53\x2f\x3c\x8f\xc4\xae\x00\xcc\xdf\x2e\x5e\xe1\x14\x52\x01\xd8\xf9\xe4\xd5\x3a\x89\x35\xa7\x00\x4d\xd6\x15\x5c\x7d\x5f\x47\x7d\x56\x63\x07\xd5\x8b\xc6\xf5\x48\xa0\xf8\x8e\x08\x8f\x2e\x35\x06\xcc\xe4\x7b\x01\xd6\x63\x7a\x80\xf9\x2b\x43\x33\x56\x5f\x34\x04\xd4\xda\x98\xbb\xa7\xb4\x75\x92\xc0\x58\x60\xcc\x2d\x3a\x7e\x1f\x50\xca\xd6\x9a\xa5\xf8\x3f\xc0\x7f\x36\x55\xe4\x7d\x83\xdd\xff\x0d\x4f\x8a\x2f\x1d\x31\x02\x71\x40\x9e\xdc\x65\xaf\x24\x27\x6b\x01\xcf\x64\x6c\x3b\x17\xf3\x2b\x1b\xb0\x30\x88\xce\x30\x73\x69\x3b\x05\x5f\x9b\x3d\x66\x89\xa5\x26\xba\xe2\x27\x05\x4b\x1a\x72\x01\x0d\xd3\x64\x43\x7f\x78\x85\x01\xba\x1c\xfb\x55\xbf\xcb\xd1\x8b\x82\xc2\x01\x16\xc2\xcf\xb5\x83\x48\xa5\x27\x62\xf6\xca\x63\xde\xc1\x80\xf1\x19\x6b\x7b\x75\x86\xaf\x03\x26\x55\x71\x88\x59\x79\x9d\x27\x81\x6b\xc0\x3d\xa5\x4b\x37\x11\xf0\x92\xbe\x09\xfb\x59\xf9\x73\x80\xaf\xa5\x05\x2e\x5c\xd5\xba\x4f\xc1\x0d\x50\x2e\xbf\x3c\xce\x1f\xb0\xcd\xea\xbe\x4c\xd8\x0f\x2f\xc0\x90\x3f\x27\xf3\x44\x3b\x42\x00\x63\x1f\xcd\x3a\x1a\x17\x58\x01\xfe\x56\xdf\xf4\x3d\x47\xc3\x18\x70\xae\xb7\x4b\xb3\x3c\x61\x27\x29\x29\x59\x15\x7c\x45\x76\x97\x27\x09\x13\x9b\xa5\xeb\x5e\x1e\xf6\x5c\xac\x94\xb6\xe4\xda\xaf\xf6\xf4\x71\x02\x47\x0b\x5e\x09\x8a\x71\xb2\x03\x9e\xf1\xd9\x54\x75\x76\x48\x1c\x30\xe2\x61\x71\x58\x44\xa9\x29\x09\x59\xa9\x6b\x35\x86\x0b\x97\x03\x7e\xce\x76\x70\xd1\x09\x16\x01\x7c\xeb\xcf\xf9\x28\x9a\x49\x9b\x84\x57\xc3\x92\x07\xb6\x74\xcb\x93\x30\xfc\xfa\x7a\x9e\xd8\xd1\x22\x12\xb4\x9f\x0a\x6f\x8d\xf0\x2d\x02\xcc\xed\x90\xd9\x25\x4e\x4d\xde\x04\xbc\x90\xe5\x1c\x3e\x40\xc2\x5c\x8f\x7b\xf4\xcd\x03\xb6\xa4\xc4\x48\xc3\x9e\x71\x1f\xdf\x5e\x40\xd3\xe7\x27\xde\xe7\xef\x96\x04\x1c\x0b\xa9\xaa\xbe\x6d\x53\x07\xb8\xb2\x35\xf7\xa4\xc8\xeb\x64\xc0\x0a\x9e\xb5\x9b\xda\x58\x0e\xc1\x34\xef\xeb\x28\x67\x39\x13\xc0\xde\xd6\x0f\x47\x9f\x39\x68\x03\x32\x8d\x36\x3c\xe9\x9e\x39\x0e\xb8\xad\x51\x3e\x29\xfc\xcf\x35\xc0\x8b\xc5\x02\xc6\x29\x2a\xc9\x94\xe9\x84\x3d\x7d\xbe\xee\xeb\x00\xaf\x36\x5f\xdc\x3f\x36\x3d\x43\x60\xeb\x17\xaf\x87\x42\xb6\x19\x80\x76\x15\x42\x4c\x4a\xba\x15\x80\x3b\x82\xf6\x0a\x9b\x16\x6b\x01\x5e\x96\x7a\xf6\xba\x3f\x69\x35\x60\xe2\xbb\xfe\x20\x62\xd3\x33\x0a\x2d\xe1\x67\xd0\xcb\x37\xe7\xf8\x45\xd0\xa0\x63\x68\xba\xca\x45\xad\x1e\x68\xa8\xdf\xd3\xe9\xf2\x6d\x63\x37\x81\x03\x7e\xc9\x7b\xef\xb4\x24\x02\x56\x04\x5d\xe5\x99\xda\x25\x4e\xc2\xf7\x29\xfb\x15\xf7\x9b\x1c\x48\xc0\xa2\xbe\xea\xa2\x6a\x2e\xc0\xae\xc1\xa9\x92\xa4\xe3\x87\x01\xaf\x8c\xbf\x8b\x78\x11\x3c\x4e\xe0\xba\xbd\x5a\xae\x45\x1d\x9b\x00\x95\x6d\xe8\xa5\x1f\xfd\x59\x0e\xe8\xd2\xd4\x22\x7f\x5d\x64\x09\xe0\xba\x06\xfd\x5a\x1f\x53\x23\x12\x04\x9f\x49\x56\xa9\x1c\x1e\x22\x70\xc6\x41\x55\x7b\xdf\x9e\x44\x40\x95\xbd\x36\xcf\xfa\xdf\xe9\x03\x4a\x3f\x3c\x9e\xd5\xd6\x6e\x02\x98\x71\xec\xfa\xfa\x3f\x65\xd1\x80\x99\x4d\x4c\x87\xc7\x57\xfb\x01\xc6\x9d\x17\x98\xe0\xf6\xe1\x01\xbc\x16\x2d\xe0\x17\xf4\x8c\x02\x78\x4b\x5d\xd3\xd5\x6a\x47\x08\x60\x39\x65\xdd\xc6\x3c\x1b\x2f\xc0\xb6\xb4\x04\x51\xee\xa0\x7e\x0a\xca\xb0\x77\x4e\x9e\xae\x29\xa4\x20\xc7\x2d\x22\x6c\xfb\x4a\x5b\x0a\xca\x3b\xc4\x8b\x97\xfa\x5c\xa2\x60\x77\xa2\x77\xa3\xd0\x6f\x6f\x0a\x3a\x31\xce\xb5\x3d\x8e\x3e\x0b\x78\x40\xea\x79\xc0\xad\x81\x37\x35\xc8\xd3\x79\xa6\xe4\xcb\x25\x21\xa0\xc1\x9f\xef\xfe\xd8\x61\xb1\x86\x1a\x44\xe7\xc9\xa1\x27\x87\xd3\x01\x85\xed\x76\xd0\xfb\xb2\x7f\xa2\x60\xde\xf3\x1e\xa5\x73\xab\x5a\x28\xa8\xfe\x4b\xd2\x64\x93\x68\x3d\xa0\x7d\xf0\x09\xd1\x86\xe2\x42\xc0\xca\x32\x93\x91\xf5\x87\x9f\x00\xce\xc9\x37\xad\xd6\x9d\xdb\x09\x98\xa9\xaf\x70\x43\x38\xc2\x02\x90\xa5\xaf\x92\x8f\x35\x49\x1e\xd0\xe3\xe0\x9a\x40\x95\x0a\x6e\x40\x4a\x61\x81\xc5\x56\xb7\x21\x02\x05\x0e\x88\xa4\xee\xfb\x3b\x41\xc2\x93\xad\x29\x72\xd3\xcd\xb3\x04\xf6\x3a\x0d\xad\x6a\x7a\xaf\x0c\x78\x64\x7c\x5f\x6b\x28\x1d\x12\x38\xf7\x8d\xa1\x45\xe4\x8f\x22\xd0\xd0\x63\x31\x6c\x9e\x50\x72\x8b\xc0\x55\xdb\xcd\x44\xde\xce\xc9\x02\xb6\x0c\x4a\x0d\x18\x57\x31\x00\x06\xc7\x4a\x2a\x79\x58\xfe\x26\x90\xe5\x79\xf9\xfa\xd5\x9a\x93\x04\x9a\xbd\x3b\xea\xd4\xa1\xcf\x01\xc8\x7f\x43\xb6\xa9\x7e\xb0\x1e\x30\x63\x3a\x6c\x69\xdd\xa9\x5a\x40\x4b\xd3\xfd\xf6\x6a\xaa\x4b\x00\x5d\x98\x8d\x36\x10\x6f\x7d\x49\xa8\xdf\xda\x1b\x6a\xa8\xc0\x09\x28\x7c\xef\xa6\x22\xbf\x5d\x0d\xe0\x8a\x2b\x4f\x0f\x4b\x8a\x97\x00\x5e\xbe\xa2\xff\x82\x8f\x9a\xd8\x3f\xcd\x9c\xdf\x3c\x5e\x0b\x68\x35\x9a\x1a\xa6\xf7\xad\x16\x70\xb5\xdd\xc9\x17\xf1\x32\x47\x01\x8b\x79\x99\x8e\x09\xf3\x9f\x03\x14\xca\x2d\xf9\x34\xf1\xb3\x10\x30\x4a\xd6\xe4\x4a\xe9\x64\x21\xe0\x47\x8d\xec\xc3\x57\xed\x3a\x28\xf8\xe3\x8a\xce\xbc\x64\x4d\x21\xe0\xfe\x87\xde\x55\x0b\xa5\x57\x39\x2f\x85\xb6\xd6\x99\x00\x86\xb1\x1f\x12\x0c\x91\xb1\x02\x24\xf6\x87\x1f\x02\x4e\x7b\xc0\x2f\x62\x3b\x3f\xb6\x49\xd9\x02\x7e\x5d\x9d\x32\x29\xa2\xea\x0f\x58\xa2\xd9\xcc\x91\xc0\xcf\x00\x78\x8f\x72\xef\x86\x4f\xdb\x39\x12\x9e\x96\xa9\xf6\xb4\x5b\x6e\x06\x94\xee\x62\x8e\xba\x62\xb5\x1e\x70\xc7\xd9\x94\xca\xfc\x31\x2e\x40\x31\x9e\x3e\x9f\x07\x87\xb5\x49\x20\x38\x4a\x82\x94\xda\x91\xc0\xaa\xc9\x24\xbe\xdb\x3f\x73\x00\x8b\xef\x0f\xbf\x09\xb2\xdf\x0c\xd3\xec\x2f\x5d\xa3\x55\xd6\xff\xfb\xc4\x1b\x5a\xed\x0d\x9a\x21\xcf\x6a\x70\xe2\xab\xbb\xa5\x6f\x87\x3e\xa0\x68\xbc\x91\x80\x4e\x8a\x0e\xe0\x2d\x87\x18\xba\x57\x83\x46\x24\xbc\xd4\x62\x3d\xf8\xd7\xf6\x2f\x81\x99\xef\xbb\x94\x5c\x3f\x4e\x10\xf8\xc6\xfb\xb8\xb5\xff\x9f\xbf\x24\x80\xf8\xb2\xd4\xf7\x51\x37\x09\xec\xcb\xae\x94\x4a\x67\x8e\x03\x6c\x56\x73\x6e\xf2\x9a\xcd\x02\x64\xb2\x3d\x33\x39\xcf\x73\x0f\xd0\xa0\xd5\xe9\x62\x66\x92\xd3\x62\xd8\x3d\xc6\xb6\x65\x5d\xb8\x0b\x4c\xd3\x5f\x2e\x5d\x17\x6b\x0a\xc8\x3f\x75\xa9\xbd\xdd\xf5\x04\x60\xfc\xd4\x52\x33\x60\x35\x01\x8c\xa4\xef\xd9\xd9\xc0\x50\x0d\x98\x1b\xe4\x3d\x4d\xbf\xa2\x1d\xf0\x8f\x5d\xca\xec\x12\x2a\x22\x9e\x1f\xa3\xa3\x48\x56\x01\x3e\x20\x3c\xb3\x55\xac\xaa\x00\xe5\xd9\x8e\xd9\xf4\xcb\x7d\xa4\xe0\x66\x4f\xd5\xbe\x9e\xb8\x66\xc0\xc6\x93\xb7\xea\x95\xa9\x25\x71\x26\xdf\x99\x6d\xcb\x76\x03\x9e\x7d\xc0\x73\x23\x90\xcd\x01\xf0\x90\x82\xdb\x09\x99\x6e\x27\x12\x62\x36\x16\xb8\xe4\x3d\xba\x00\x18\xc3\xce\xf2\x42\x3b\x99\x19\x90\x83\xeb\xfe\x86\x76\x71\x15\x12\xbc\xd9\xc7\xab\xec\x83\xb2\x08\x5c\x9f\xcb\xf7\x81\x45\x3e\x08\x50\xe7\xbc\xdb\xd3\x35\x2d\xaa\x80\x42\x5b\xef\xbf\xf8\x8a\xd7\x28\x18\x51\x7e\xee\x94\xe7\xce\x5e\xc0\x95\x97\x34\xf3\x87\x22\xcb\x00\xef\x97\xdf\x3e\xce\xc4\x58\x00\xf8\x4e\x76\x6e\x60\x5d\x7b\x26\x05\xbb\x7e\x3f\x6b\x15\xa6\xa2\xd5\x9f\x77\x92\xa5\xff\x14\xa0\x64\xf9\x86\x25\xb5\xc2\xde\x80\xee\x31\xa2\x5c\x2b\xb4\x7c\x00\x6d\x2e\x3e\x0a\xd3\x66\xcc\x02\x7c\xce\xb3\xcc\x72\xa5\xdd\x3d\xc0\x49\xbb\xeb\xa1\xa6\xcf\x8a\x01\x6d\x5b\xa3\x3f\xb3\xe9\xec\x01\x54\x74\x39\x19\x59\xc5\xb9\x9f\x84\x93\xae\x1e\x26\x4d\xa7\xed\x00\x7f\xff\xea\x2d\x11\x7d\x69\x0e\x58\x25\x79\xbe\x28\xc0\xc3\x19\xd0\x9b\x6b\x9f\xcc\xea\x07\x74\x8b\xe1\x46\xb5\xc5\xa6\x88\xdc\x97\x04\xb2\x5f\x7a\x94\xa3\x67\x4e\x07\x98\x1f\xd5\xb5\xb1\x44\xaf\x06\xb0\xf6\xee\x65\x83\x82\x43\xce\x80\x3b\xb7\xb5\x5b\x7c\xb9\xbf\x94\x04\xca\x61\xb7\x77\x51\x95\x7d\x04\xbe\x31\x67\x49\x66\x11\x2a\x06\xfc\x7e\x4d\x78\xa9\x68\xe5\x6f\x02\x5d\xa0\xdc\xf2\x38\xb7\x08\xa0\xc3\xe5\x15\xbe\x4d\x25\xa3\x04\x5a\x98\x58\x66\x26\xbf\x5b\x0d\x34\xa4\x73\xed\x94\x90\x53\x7f\x4b\xe0\xd6\x48\x89\x5d\xea\x79\x81\x80\x18\xb5\xcb\x94\x27\x92\x05\x50\xb3\x66\xcb\x08\x77\xc3\x2a\xc0\xb6\x7b\xdb\x84\x7f\x6b\x94\x51\x50\x5a\x97\xf0\x7a\xa5\xdf\x0d\x98\x78\x95\xd9\xb6\xd6\xa0\x1b\xd0\x8b\xfb\xfc\xda\x0c\xd6\x52\xc0\x7b\x5f\xd4\x67\xe2\x62\xd2\x00\xf7\x1f\x89\x35\x3a\xed\x67\x00\x58\xed\x73\xe3\xda\xe8\xba\x4d\x80\x6f\x78\xa2\x0f\xaf\x53\x7e\x0c\x98\xf3\xee\x98\x91\xa3\x90\x31\xe0\xc9\xe8\x8e\x02\x66\x6e\x06\x12\x1e\xf7\xde\xce\x73\x31\x7b\x57\x83\x8f\xaf\x2b\x3f\xfc\xa4\xc9\x0e\x58\x5d\x33\x63\x74\x8c\x39\x92\x84\x6b\x9a\x6b\x26\x54\x14\xdc\x49\x70\xbe\x77\xaf\xf4\x3d\x5d\x24\x05\x29\x57\x6f\x3e\xb4\x13\xae\x05\xbc\x3a\x5f\x21\xbc\x41\xac\x13\x70\x6d\xee\xdc\x32\x59\x81\x5a\xc0\x77\x73\xe7\x0d\x5f\x4d\xdc\xa5\xe0\xcf\x47\xa8\x2a\x22\x79\x06\x30\x63\xe5\x99\xea\x97\xf9\x51\x8b\x61\x8f\x7b\x9a\xe9\x2d\x9c\x20\x68\x60\xfa\x16\xd6\xc0\xa3\xa5\x01\x34\xbc\x35\xe2\x38\xf5\x96\x45\x0f\xb0\x78\x38\x3d\xb9\x9a\x45\x0c\x90\x63\xe3\x97\x57\x75\xab\x57\x02\x36\x6f\x2d\x31\x97\x93\xac\x01\xb4\x2c\xbf\x71\x64\x09\x47\x0d\x20\xef\x86\xb8\x98\x6f\x73\xce\x80\xd3\x59\xa3\x7b\xda\xef\xd1\x2d\x86\x7e\xcf\xfc\xab\x83\x47\x1e\x13\x68\x24\xc8\xfd\x52\x53\x8d\x0e\x70\xe5\x2e\x42\x7a\xea\xaf\x30\xa0\xa3\x11\xdd\xd0\xc3\xa4\x5f\x04\x46\x5d\xc9\x10\x5f\xdd\xbb\x0e\x90\x23\xa9\xfa\xd9\x33\xea\x89\x3d\x90\xc3\xe6\xa7\x43\x9b\x06\x60\x68\x41\x99\xa7\x69\x88\x2c\xa0\x6b\xff\xc1\x89\xe6\xbf\x8c\x80\xdc\x0e\x25\xed\x5e\x70\x1d\x30\xba\x29\xdb\xd0\xc3\x3b\x8a\x94\xe4\x95\xa5\xcc\x78\xbd\x0d\x04\x4c\xdd\x1c\x98\x46\xb7\x37\x0f\x50\xf3\xfa\x1a\xe6\xa3\x01\x1c\x80\x21\x7a\xd1\x92\xf5\x32\x6a\x80\x71\x67\xab\x5e\xd2\x6f\x61\x07\x2c\x98\x60\xbf\x67\xbc\x6a\x8c\x40\xf1\x01\xf5\x73\xcb\xa7\xa7\x08\x74\x74\xa1\x2f\xb8\x4a\xdd\x6f\xfd\x37\x32\x8e\x45\xa4\x0a\x73\x4d\x13\xc8\xb8\x21\xd7\x98\x4e\x2c\x95\x82\xc7\x55\xcd\x4a\x4c\xa2\x3a\x29\xb8\xc9\x1b\x37\xe8\x55\x94\x50\x30\x69\xbc\xe6\xcc\xc5\xde\x32\x40\x6f\xe5\x75\xfb\xcc\x5e\x05\x00\xde\x96\x96\x10\x15\xbc\xe2\x07\xb8\x22\x79\x5a\xb9\x86\x6e\x19\x09\x0f\x62\x5c\xea\xb2\x5c\x44\x01\xf3\xf9\x6d\xcd\x5f\xe9\xb8\x90\x92\x9e\xeb\x4f\x7e\xd6\x2e\xb3\x04\x5c\x9a\xcc\xd1\xc1\x77\x8f\x02\x58\x61\xb3\xe5\xd8\xf5\xec\x71\x02\x1f\xa5\xdd\xb6\xf8\x9c\x22\x08\x34\x5c\x79\xd6\xce\x28\xf9\x98\x1e\x90\xed\x51\xed\xca\xb0\x19\x3e\x12\x94\x5a\x8b\x92\x96\xf8\x8a\x90\xe0\x9f\xfa\xf5\xea\xbd\xcc\x5f\x04\x2e\x0d\x0a\x58\x7f\xa2\x5f\x15\x50\x6b\x56\x48\x22\xe7\x99\x22\xa0\xf9\xe5\xaf\xa2\x6f\x2c\xff\x10\xe8\x68\x1f\x7c\xea\x29\x83\x13\xd0\x60\x22\xbb\x4d\xa6\xc6\xb4\x95\xc0\xd8\x07\xbd\x4a\xb7\xa0\x14\x90\x61\xe3\x5a\x4e\xb7\x35\x43\x04\xfa\x6d\xba\xf5\x02\xd8\x55\x80\x06\xab\xfd\x92\xc6\x8d\xf1\xd3\x04\xde\x97\xd8\xc7\x69\xc8\x2a\x0f\xd8\x33\xb0\x73\x8c\xeb\xe0\x77\x02\xed\x55\x7e\xe3\xa8\x95\x08\xd0\x10\x20\x94\x5c\xb3\xf6\x95\x1b\xa0\xbc\xf2\x01\x95\x6a\xdf\x07\x80\xc1\x67\x25\x0c\x4d\x2f\xdc\xa7\xe0\x95\xd6\x87\xfc\x62\x74\x77\x01\x57\xb2\xaa\xc6\x6f\x93\x2b\x20\xe1\x65\x64\x7f\xfc\xac\xc7\x69\x40\x2b\x38\xb3\xfa\x8a\x92\x39\xe0\x67\x55\xc3\x90\x13\xe9\xbb\x01\x23\x1f\x94\x5e\xa4\xdf\x6e\x05\xd8\x13\xe7\x56\xc6\x1c\x67\x4a\x41\xde\xf0\x9f\xe1\x0a\x39\xd5\x80\x9f\x64\xba\xec\x44\x9b\x0c\x00\x43\xce\xf5\xc6\x7f\x7a\x70\x81\x04\xf6\x69\xe6\xa0\x85\x3f\x62\xcb\x6a\xf8\xac\xe4\xb0\x64\x8c\x40\x2e\x0b\x99\xf5\x2d\xce\xd7\x00\x8f\x4a\x9e\x0b\xab\xcf\xfb\x44\xe0\xee\x4b\x3c\x1d\xe9\xde\xdb\x01\x03\xe9\x83\x98\xf6\x47\xac\x03\x54\x79\x9f\x7d\x77\xb8\xd7\x93\x82\x15\x36\x32\x71\x41\x17\x1e\x03\x0d\x62\xf0\x52\x63\x01\x7b\x04\xda\x9f\xc5\xad\xaa\x06\x8c\xfa\x21\x74\x2d\xda\xd5\x19\xf0\xfc\xaf\xa0\x4a\x96\x6a\x3a\x12\x7e\xd7\x24\x4b\xdc\x2e\x19\x22\x70\xeb\x9c\x45\xdb\x4b\x99\x22\xc0\xaf\x6c\xdf\x84\x92\x72\x75\x00\x3f\x70\x1d\x34\x8a\xf8\x61\x0c\xb8\x6e\xcf\x78\x97\xf2\x5e\x26\x40\xe7\xde\x9e\xac\x17\xda\x71\x14\xac\x9c\x6c\xf7\x10\xa6\x6f\x04\xac\xf8\x2e\xb7\x2e\x96\xf5\x0e\x60\x90\xdc\x26\xd5\x3f\x2c\x77\x00\xbb\x55\xeb\x95\x4f\x52\x13\x83\xe1\x4e\xb1\xed\x2b\xee\x00\xc2\xa0\xaa\xb7\xdb\xd2\x1b\x80\x8a\x81\x9a\x35\xec\x2f\x66\x09\x1c\xd8\x68\x73\x84\x81\x33\x04\x68\xe8\x3f\xba\xc9\x6b\xcd\x0b\x3b\x40\xa5\xa9\x5b\x47\x3c\x66\x8a\x01\xf5\xcd\xfd\xf7\x17\x9d\xa3\x03\x3c\xec\x18\x34\xa2\x92\x7a\x79\x31\x44\x1d\x0f\xdb\xfa\xfc\xb8\x3c\x60\x8e\x35\xdd\xd8\x9a\xc9\x06\x0a\x32\x9e\x6e\x38\x5c\xfa\xb9\x16\x50\x4b\xe7\x8a\xf2\x50\x78\x2d\xa0\xc1\x9e\x03\xc2\x09\xc9\x5d\x80\x0f\xef\x4a\x5e\x1a\x37\xab\x03\xbc\xff\xf1\x85\x59\xf0\xf1\x58\x40\x0d\xb6\xd6\xc6\xc8\x52\x3d\xc0\x36\xc1\xb3\xe5\xc2\x6d\x75\x80\x8a\x4e\x51\x1d\x0b\xb8\x3b\x56\xc0\x20\xbc\x9c\x9c\xac\xdf\x1a\xa7\x5f\xb7\x3b\x82\x82\xe7\xfe\x6e\x0d\xfe\x7c\xdc\x01\x16\x81\xc7\xc3\x6b\xa7\x13\x63\x8c\x48\xd0\xe7\x87\x5f\x41\x06\x85\x24\xb0\x67\x1f\x16\x09\xa6\x82\xa5\xc6\x4a\xcb\xcf\xc7\x03\x90\xdb\x4b\x61\xaf\xa3\xb7\x07\xe0\x2f\x2f\xd1\xdc\x93\xec\x1e\x80\x6e\x65\xfe\x63\xab\x7f\x7e\x24\xd0\xef\x49\x35\x4b\x76\x88\x16\x60\x78\xe5\xda\x35\x9d\x26\x14\x40\xa1\x57\x9e\x27\x17\xd0\x61\xf6\x45\xcd\xca\x2c\x12\x70\xba\x4d\x4e\xa6\xd2\x24\x05\x90\xcf\x72\x72\x4a\xec\xae\x2a\xe0\x78\xb3\xe4\xd1\x59\x14\x03\xe4\x57\xf1\x1b\xc8\x69\x12\x25\x81\x2b\xe1\x0e\xcf\xfa\x10\x75\xc0\x3b\xec\xf5\x1f\x1b\xde\xbc\x05\xe4\xad\x9c\xbb\xb6\xe5\x86\x33\x60\x21\x63\x84\x5a\xcf\xae\x13\x80\xda\x74\x56\x4b\xab\x02\xad\x49\x68\x7a\xb5\xa5\xf9\xc9\xcf\x69\x02\x5b\xaf\x87\xf2\x9d\xf2\x74\x07\xdc\x45\xbf\x61\xbb\xb4\xe9\x55\x40\x86\x78\x25\xc1\xd4\xa0\x32\x0a\xde\x60\x61\xb8\x40\x99\x6b\x04\xb4\x8c\xde\x7f\x61\x4d\x5f\x3a\x05\x77\x55\x04\x16\xe6\xad\x2e\x07\x2c\xff\x91\xf0\xf6\xd2\x84\x25\xa0\x29\xb3\xab\x4e\xe8\xd6\xd5\x80\xdd\xdc\x7f\x0c\xbf\x7e\x2e\x06\x6c\xd8\xba\x51\xfd\x9b\x59\x14\x60\xcf\x1d\x45\x97\xdb\x6f\xc7\x09\x4c\x39\xb1\xd5\xe1\xa1\x21\x19\xaf\x6d\x96\x06\x28\x36\xff\x25\xf0\x3b\x1f\x53\x94\xcb\xf6\xa7\x80\xac\x94\x9d\xaa\x13\xa9\x6f\x00\xa3\x2f\x4e\x6e\x72\x60\x7f\x09\x98\x2d\x3f\x42\x57\x19\x56\x05\x78\xa4\xa9\x28\xd2\xef\x44\x17\xe0\x99\x73\xa3\xc3\xe2\xd1\xdd\x80\xc5\xaa\x26\x7b\x5d\x39\xa2\x00\xab\x27\xf6\xe5\xa9\x35\x06\x2e\x86\x87\xcf\xce\x6f\x93\xb2\xf7\x02\xec\x7c\x3c\xf5\x46\xdf\x33\x1b\xf0\x7e\xd9\xb6\x38\x33\x03\x7a\xc0\x7b\x7b\xd5\xe1\x5b\x7d\xcc\x62\x38\xf5\x7b\xf6\x96\x88\x6e\x76\x0d\xf6\x6c\xe8\x0b\xda\x2c\x74\x1f\x50\x76\x9a\xb1\x35\xbd\xf8\x04\x60\x33\x6f\x80\xb6\x17\x25\x0b\xd0\xe1\x87\x93\x5a\x9e\x57\x2a\x60\xd3\x80\x46\xbe\xf6\xf2\x26\x0a\xb6\x3f\x63\x7f\x9d\x4b\x4d\x36\x26\x35\x27\xb2\x7c\x2a\xab\xc1\x68\xab\xd4\xaa\xa3\x93\x45\x80\x0a\x8e\x05\x87\x65\x5c\x14\x00\xbb\x33\xab\x64\x9e\xaf\xda\x0c\x18\x3b\x90\x74\xbc\x7e\x19\x23\xe0\xb7\x67\xdb\x6f\xa9\x6a\x7b\x03\x46\x6c\x3e\x57\x76\xf4\x6d\x29\x05\x9f\x3c\x55\x38\xee\x78\xf1\x1b\xa0\x67\xc6\x08\x63\x73\xd9\x13\xc0\xa0\xaf\xdb\x7f\xcc\x52\x57\x7e\x89\x1c\xb6\xb4\x3b\x0c\x3d\x04\x2e\x6b\x62\x61\xfc\x7e\x61\x15\xd0\xd0\x70\x29\xaf\x22\x31\xeb\x0e\xe0\xe7\xf5\x2a\x9d\xe6\x2e\xf1\x80\x63\xe9\x19\xdb\x1d\x74\x5a\x00\x1f\xcd\x1e\xea\xff\xbb\xfc\x36\x05\x4f\x5d\xa0\x5b\x96\x9a\xf0\x18\x70\xdf\x99\xc0\xc3\x77\xa8\x78\xdd\x94\xbd\x24\x83\x8a\x58\xa7\x9d\xfe\xdc\x4e\xa5\x80\x46\x37\x5e\xf6\xd5\x1c\xe1\x02\x8c\x5b\xd1\xd3\xfd\x51\x40\x8c\x84\xb9\xcd\xb1\x5b\x3f\x1d\x2e\xab\xc1\x1f\xb3\x49\x61\x7f\x5c\xfa\x08\x8c\x5f\xbb\x7f\xb7\x5b\x39\x0b\xd0\x70\x56\xa5\xf8\x7d\x38\xef\x4f\x02\xd5\x12\xf2\x2f\x58\x7d\xdb\x03\x98\x7e\xf2\x48\x77\x9b\xe3\x6f\x02\x8f\x7c\xb9\x59\xd0\x91\x68\x08\x78\xe0\x06\xa7\x40\x46\xac\x2e\xa0\xc0\xf2\xf6\x4b\x47\xe9\x94\x00\x3b\x72\x24\xd5\xc5\x2f\x6b\x01\xb2\x8e\xa7\x9a\x87\x07\xe6\x02\x56\x0f\x50\xc2\x3a\xbc\x18\x01\xa5\xac\xb9\xdb\x4e\xb1\xf0\x01\xe6\x1c\x18\x33\x33\xb0\x28\xa1\x60\x8e\xb7\x7d\xc9\x54\x4f\x19\xe0\x32\xcd\xcf\x0a\x84\xb8\x3c\xe0\xfd\xdb\xf7\xe9\x1f\x18\x16\x50\x90\xdd\xfc\xcb\x31\x63\x96\x7e\xc0\xf8\x1d\xde\xa1\xba\xb6\x0f\x00\x65\x3c\x4d\xbe\x28\x7e\x6b\x06\x1c\xcb\xe5\x66\x19\x75\x54\x06\xdc\x9d\xe1\x93\x9e\xc6\x56\x05\xe8\x72\x29\xfc\x95\xf5\xf8\x2b\x40\xba\xbf\xcd\x9d\xab\x73\x7b\x00\x73\x77\xce\x0c\x77\xca\x54\x01\x4e\x98\x05\x8f\x29\x16\xb9\x01\xd6\x8c\xd7\x64\x3e\xef\x66\x07\x94\x68\xd1\x6f\x74\xcc\xbe\x0a\x98\xd4\xfd\x24\x0e\xc7\x1a\x01\x75\x65\x5f\xaa\xed\x0a\xdd\x06\xe8\x7d\x4d\xef\x97\x75\xfd\x66\x40\xcd\x8f\xa1\x4f\xcb\x12\xf4\x01\xd7\x50\x66\xf3\xf3\x54\x6e\x93\x90\x16\xe0\x6e\xa7\xe6\x12\x00\xf8\xfb\xf8\x4a\xab\x75\xef\x14\x01\x75\x86\xf4\xcd\x26\x54\xcb\x01\xa7\x66\x56\xa8\xfa\xf5\xe9\x03\x6e\xbc\x16\xd4\x79\x4d\x40\x11\xf0\x63\x6b\xbd\x84\xf5\x94\x1a\x09\xb6\xf6\xbe\x27\xce\x54\x0d\x12\xa8\x47\xe7\xab\x74\x44\x82\x05\xf0\x36\x83\xcf\xe5\x5b\x2f\x6e\x02\x82\xd5\x6f\xba\x05\x9c\xcb\xba\xb0\xcb\x7d\x22\x16\x70\x43\x58\xc9\xf0\xdb\x07\xcf\x6a\x70\xbd\xe7\xf6\xd4\x41\x6f\x05\xa0\xe1\xd6\x9e\xa7\xd5\x26\xa1\x8a\x80\x8a\x63\x4b\x0e\x5d\x55\xf8\x48\x20\x6b\x78\x68\x80\x72\xbb\x01\xd0\xa0\x91\x31\xc1\x9f\x3f\xbd\x0b\xb0\x3d\x71\xd2\xfc\xfa\xd5\x67\x04\xb2\x7e\x5d\xf3\xd0\xcd\x5b\x09\x30\xee\x62\xd8\xc1\x38\xcd\x1a\x0a\x2d\x59\xda\x48\x77\x86\x8b\x79\x86\xc0\x9e\x6f\x37\xac\xb2\x27\xea\x01\xf1\x51\x45\x73\xc5\xda\x5a\x0a\x7a\x64\x04\x6d\x59\x48\xa6\x42\xbc\x99\xcc\x1f\x07\x03\x0a\xb6\xcc\x2e\xbd\xf1\xb2\x11\xd0\xa4\x87\x27\x6b\xcb\xd7\x9f\x04\xf6\x97\x47\xfe\x11\x55\xfb\x44\xa0\xd9\x55\xfb\x10\xa7\x7d\x09\x80\x1f\x0d\x8e\xbf\x5d\xed\x58\x02\xd3\xaf\x93\x9d\xcf\x7c\xc9\x02\xdc\x7d\xdd\x9d\xe5\xde\x6a\x73\x12\x7c\x25\x80\x99\xbe\x64\x0d\xe0\x93\x5d\x0a\xa2\x61\x52\xf1\x80\x83\xad\x3f\xb7\xe6\xf5\x78\x02\xce\xdc\x76\x70\xd3\x7d\xe1\x09\x58\xd0\xd2\xe7\x5e\xf9\x29\x02\xd0\xcb\x2d\xd7\x23\xc0\x2a\x07\xf0\x19\x8f\xcc\x9f\x05\xc4\xde\x9c\xe6\x9e\x6f\xf6\x00\x5c\xd7\x29\x64\xbb\x9d\xae\x00\x70\xdd\xca\xc0\xb0\x9a\x86\xd6\x1a\x14\x7f\x2c\xa4\xb8\x5a\x0f\x60\x11\xb0\x5f\xdc\xf0\x25\x7d\x44\x79\x31\xf0\xb1\xd6\x64\x45\x6e\x9b\x27\xd0\x58\x69\x97\x40\xfd\xd3\xdb\x80\x9a\x82\x6f\x7e\xb2\xfb\x14\xd7\xe0\xe7\xba\x42\x3b\xbe\x87\x48\xd0\xe0\xe8\xf7\x44\xce\xfc\xc4\x53\x02\x43\x26\x8c\xd6\x27\x39\x38\x02\x72\xf3\xbe\x64\xbc\x7f\x28\x12\xf0\x8a\x7c\x5e\x7d\x2e\x15\xc7\x8f\x4f\x64\x76\xae\xab\x07\xcc\xe2\x1d\x4b\x49\x2b\x4b\x02\x1c\x93\x71\xd5\xaf\x70\x90\x00\x2c\xce\xac\x6a\x5a\x9f\x4c\x07\xc8\xb0\x42\x78\xc3\x19\x6b\x55\x12\x12\x72\xa4\x05\x5e\x51\xcf\x34\x4e\x43\xad\x0a\x95\x47\x6e\x52\xd0\x28\x52\x57\x45\xc5\xa7\x90\x7a\x98\x70\x39\x72\xa2\x24\x1c\xf0\xd5\xd4\xf7\xbe\x81\x4b\x85\x80\x8f\x05\x32\x02\xaf\x49\x71\x00\xc6\xc9\x2e\x79\xd0\x38\x7f\x91\x84\x55\xe5\x21\x1b\x65\xef\x5a\x00\x2e\x7b\xf7\x78\x93\xcc\x86\x7e\x82\x86\xc8\xc8\x1c\xa1\xd1\x25\xbb\x80\x86\xca\x3c\x86\x8f\x1b\xdc\x2a\x6b\x70\x40\xaa\xcc\xac\xd9\x54\x18\x70\x8d\x71\xff\x6c\x86\x11\x1f\x09\xb3\x3b\x36\xbf\x1f\xb2\xe9\x27\xf0\x31\x9d\x43\xb3\x2b\xf5\x4c\xac\xa9\x70\x62\x50\xd7\x28\x13\xd0\xa1\x48\x58\xcd\x55\x84\x00\x64\x36\xf3\xef\xa1\x3f\x74\x05\x70\x5b\x39\x87\xd2\xa0\x32\xf5\x60\xb7\xeb\xc3\x32\x3d\x53\xb1\xc5\xc0\xc5\x7a\xb1\x3c\x57\x8d\x6d\x31\x18\x78\x85\x3e\x2e\xd8\xf0\xa1\x06\x9f\x5d\xba\xdd\x2c\x96\x97\x06\xe8\xbb\x1a\xa3\xfd\x24\xa3\x00\x2d\xd3\x79\xc2\x67\x2d\x9f\x10\x98\xbd\x49\x75\xef\xc7\x2b\xdf\x48\xa0\x84\x8e\x0f\x0e\xed\xe4\x02\xd4\xbe\xbd\x7d\x7f\xe9\xea\x2d\x80\x27\x3a\xad\x7a\x2b\x8a\xab\x00\xc7\x4e\x65\x87\x9e\xb9\xdb\x00\x18\x2e\x1f\x7b\xfc\xff\x01\xdf\x2d\xb5\xae\x61\x07\xa2\x61\x7a\xf7\xef\x8f\x8f\xfc\xff\xfb\x13\x55\xeb\xdb\x8a\xff\x13\x19\xdb\x13\xfe\x3f\x7c\xda\x77\x54\xce\xff\x1f\xf0\xf1\x26\xa5\xb4\xa7\x14\xed\x34\xb4\xd3\xfc\xbc\x5a\xa4\x61\x14\x15\x51\x89\xa8\xd0\x30\x52\xd1\xde\x83\x34\xad\x22\x2d\x69\x68\x69\xcb\x75\x35\x8c\x92\xa2\x90\x08\x51\x21\x85\xd2\x7c\xb5\xef\xc3\x39\xf7\xf7\xba\x7e\xe7\x74\xdf\x7f\xbd\x1f\xe7\xf9\x7e\xfd\x79\x5d\xe7\x7a\xbf\xce\xb9\x7a\x24\x94\x7d\x01\x4d\xee\x4a\xb9\x1f\x9d\x3e\x07\x78\x22\x94\xf7\xdd\x69\xbf\x66\x40\x27\x97\xe3\x62\xc7\xb2\xcb\x01\x55\xaf\x1e\xa4\xf9\x94\xe8\x4a\x85\x42\xf7\x53\xa9\x1d\x16\x1c\x80\xca\x44\xa5\xb9\xaf\xc8\x3e\xc0\xe7\xe1\x3b\x0c\x2f\xbb\xaf\xa7\x42\xf1\xbb\x74\x29\x6f\xef\x07\x54\x10\xea\xd9\xf3\xb4\x65\x5e\x0b\x10\xd4\x19\x16\x33\x76\x1a\x00\x16\x2b\x16\x1e\x16\x61\x1a\x23\xb0\xb1\x2f\xe6\xa0\xf3\x5e\x3a\xa0\xe0\xa5\x86\xb5\x95\xf0\x31\x4b\x2a\xe8\xf7\x3c\x91\xf9\x99\xf3\x83\x40\x5e\x9f\x18\x96\x9a\x74\x6e\xa0\x20\x55\x42\x72\x62\x82\xb5\x83\xc0\xa4\xe9\xf9\xab\x37\xd3\x64\x01\x67\x97\x6c\x88\x90\xe9\x2d\x80\x4c\x6b\x94\x4c\x3c\xf6\x71\x03\x5e\x4c\x7a\x2b\x93\x9b\xb2\x0a\x30\xd9\xff\xa4\x64\x23\xf7\x77\x02\x1f\x1b\xf9\x57\xb7\x05\xef\x05\x3c\x34\x62\x22\xb3\x2e\xe7\x02\x60\xe7\x3a\xd3\xa1\xa3\xba\x7b\x01\x9f\x54\x6a\xad\x1b\xad\xb2\x05\x7c\x4a\x3f\xd4\x83\xc9\x39\x80\xe5\x33\x77\xa2\xbb\xd3\x8e\x00\xba\xc9\x1e\x30\x4f\x5d\x43\x07\x98\x1d\x2d\x65\xf9\x59\x89\x0b\xd0\x29\x7c\xcd\xc8\xee\x1b\x8e\x54\xe0\xbb\x37\x6e\x95\xa2\x11\x4c\x85\x94\xed\xdc\xb1\xda\x9a\x7e\x80\x23\x1e\xd6\x02\x0a\x93\x4c\x80\x4b\xe7\xef\xaf\xa2\x01\x4e\x2a\x8c\x9f\x34\xca\x69\x2f\xe1\xa6\xc2\xc5\x93\xd1\x1b\xcc\x23\x7c\xa8\xd0\x5a\x5c\x16\x28\x37\x3e\x49\x50\xb0\x63\x92\xe6\xbd\x54\xe5\x2e\x58\x01\x8e\x2f\x1f\x6b\xed\x10\xaf\x00\x14\x7f\x64\xd7\xfb\xbf\xd0\x3b\x73\x21\x80\xed\x58\x34\xe0\x0f\x97\x87\x8b\xb2\x57\x5d\x00\x67\x04\x94\x5f\x4f\x34\x35\x02\xca\x24\x72\x19\x0a\x57\x34\x01\xfa\xf1\xdf\x9a\xff\x71\xa1\x06\x70\xf2\x29\xdf\x70\x44\x61\x27\x81\x22\x0b\x55\x3a\xcf\xfe\xee\x55\xff\xc1\xe4\x4c\xca\x13\x76\xf1\x01\x02\x4f\xbd\x9f\x3a\x91\x40\xfa\x41\xe0\xa3\x8c\xd6\x2e\x39\x21\x53\xc0\x9c\x9d\xe2\x9d\xea\x73\x9e\x54\xf0\xc4\x2d\x4e\x39\xcd\x6f\x49\xb8\xc4\xa2\x3a\x6c\xd2\xc5\x00\xc8\xb5\xcb\xfe\xbb\x30\x3d\x1d\xa0\x28\x16\xd6\xab\x24\x70\x52\x21\xbd\xe6\xf2\x2d\x9a\xb3\x43\x04\xe6\x3d\xbc\x42\x73\xe1\x1d\x2d\xe0\x5e\x96\xe4\xdf\x1d\xda\x47\xa8\x30\x48\x62\xe0\xf1\xbc\xd7\x49\x60\x9e\x82\x4f\xef\xdc\x17\x7a\xc0\xd5\x42\xcf\x84\x16\xa6\x94\xa8\x20\xca\x74\x73\x7d\xd0\xae\x61\x02\xdf\x87\x89\xb8\x72\x06\x5a\x02\x3e\x97\x94\xcd\xfd\xd2\xb6\x1d\xf0\x86\xfc\x09\xcf\x7c\x75\x25\x40\xdb\xe8\x99\x4d\x5b\x0d\xda\x49\x28\x79\xb7\xc3\xd7\x70\x53\x06\x81\x46\x5d\xee\xef\xd7\x57\x54\x03\x16\x27\x7f\x7e\xcb\x4c\xff\x10\xd0\x57\x8c\x65\xd5\x9a\xbf\xb8\x22\x1d\x9b\xcb\xf2\x3f\xf8\x98\x23\xdc\x3f\x00\xf9\x54\xf8\x7e\x3d\x42\x39\xdc\x25\x1f\xf0\x02\xa7\x5f\x4c\xe5\xc8\x27\x32\x4e\xbe\x28\x35\x0b\xfb\x5b\xc4\x66\x67\x6f\xf3\x96\xe9\x03\x96\xea\x7e\x33\x4d\x2d\x94\x00\x94\x39\x59\x7d\x4e\x91\x51\x0a\x66\x0f\xfa\x3d\x9e\x53\xd8\x08\xb8\xb4\x50\x6e\xf4\xe0\xfb\x02\x81\xcf\x4a\x7a\x0c\xcb\xdb\xa6\x08\xbc\xf6\x79\xdf\xb7\x16\xbd\xdb\x40\x01\xe3\x84\xb3\x5b\x6d\x78\x21\x99\x52\x16\xa5\x3d\x16\xff\xe1\xe2\x19\xc7\x17\x35\x8e\x7b\x57\x42\x42\x86\xd4\x1a\xa3\x0d\x7f\x97\xe7\xea\x2d\x95\xfb\x64\xc4\x00\x1d\x93\x6a\x86\x9a\x8f\xd5\x00\xee\xe4\xfa\xde\x24\x76\xb0\x10\x50\xf8\x82\xcd\xc1\xd3\x36\x85\x80\x8d\xaa\xcf\xf3\x67\x99\x4b\x01\x0f\xfe\xac\x4a\xfa\x7f\xe0\xbf\x99\x2b\xf6\xb8\xed\xa1\x42\xf8\x4a\x78\x28\x14\xe8\xca\x9c\xa5\x0a\x18\x31\xbe\xbf\x6c\x82\xbe\x81\x0a\x2f\xae\x3d\x1e\xcb\xbe\xc6\x04\xe8\xfe\x6e\x49\xb1\xc1\x55\x05\xf0\x95\x9d\x65\x46\xfb\xf0\x2a\x40\x9b\x3a\x52\x69\xe9\x42\x22\xe0\xd8\xe9\xfc\xeb\xff\xf0\xdf\x77\xe8\xe6\xf3\x85\x11\x7f\xd7\xc3\x80\x57\x0d\xbe\x5b\x2e\x2c\x1d\x00\xac\x5b\x4a\xde\x58\x9c\xfe\x9d\xc0\x22\xc9\x0c\x25\xfe\x37\x0b\x54\x58\xac\xff\x78\xb6\xfb\xc6\x0f\x02\x83\x97\x9b\x85\xe6\x15\x6f\x93\xf1\xf3\x83\x8a\xb8\xc7\xcf\xa5\x01\xaf\x72\xc9\x24\x7b\x58\x7d\x23\x70\x87\x10\xc7\x06\x41\x96\x55\x40\xc1\x49\xe1\x68\x85\xc3\x12\xcd\x24\x6c\xf4\x5d\xbb\x7f\x7e\xdf\x1a\x40\xc7\x1a\x05\xd5\x4b\x17\xec\x00\x3b\x62\x8f\x5b\x5e\xae\xd7\xa4\x42\x81\x51\x92\x66\x84\xc6\x1f\x02\xe7\xe8\xaf\xdf\xf2\x7e\xa5\x0d\xf8\xee\x57\xea\x2e\x33\xe3\x04\x2a\x78\x38\x9a\xa9\xd9\x17\x46\x02\x66\x58\x2d\xf7\xd0\x69\x49\x00\xd2\x73\xa5\xca\x70\x67\xa6\x02\xa6\x91\x1e\x35\xe4\x71\x38\x51\xa1\xd4\x2b\xd4\x89\x89\x88\x07\xfc\xfa\xc5\x56\xf5\x1f\x5c\x8d\x14\xaf\x56\x77\x18\x03\x9a\xa6\x68\xf7\x36\xec\xac\x03\x94\xf3\x3b\x7b\x85\x6e\x57\x39\xe0\x4b\xc9\xd7\x7a\x12\x72\x01\x80\x26\x57\x72\x16\xf6\xed\x97\x04\xb4\xef\xf9\x13\x2a\x98\xc4\x05\xc8\x77\x7a\xea\x52\xdd\x6c\x32\x60\xd0\xc3\xac\x72\x73\x4f\x09\x40\x5b\xd9\xe2\xb9\x1d\xdf\xbf\x11\xf8\x69\xb6\x36\x9c\x97\xde\x18\x56\x40\xd9\xfc\xad\xa0\x97\x77\xa4\x56\x82\x4a\x84\xf5\x03\x3f\x83\x79\x02\x33\x0c\x0b\x82\x17\x83\x0a\x00\x05\x7f\x49\x55\x5c\xf1\x25\x01\x0e\x68\x56\x34\xcc\xa4\x28\x01\x46\x5b\xe9\x0f\x33\x3e\x53\x02\x3c\xcf\x93\xa5\xa9\xe0\xc9\x47\x85\xef\x0f\xd2\x59\x1e\xf4\xfe\x24\xb0\x7f\xe8\xd8\x72\x8a\xa5\x0a\xa0\x26\x07\xd6\x8f\xda\xd9\x93\x31\xce\x52\xf2\xe1\xa9\x2b\x4a\x80\x5f\x63\x3b\x6b\x6d\xdf\xf2\x01\x0e\x3c\x70\x8e\x5f\x3a\x9d\x04\xd8\x35\x4a\xab\xf5\xf3\x75\x19\x60\x78\x97\xc6\x72\xf9\x7d\x4f\x32\xe6\x07\x4e\x27\x6c\x6f\xe4\x01\xe4\x57\x5c\x15\x7b\xee\x49\x0c\x15\x9c\x5b\x1d\x04\x1a\x14\xd3\x00\x9b\xbd\x3f\x65\xfd\xc3\x75\x6d\xb5\x61\xf2\x5f\xf8\x89\x3c\x5e\x13\x75\xad\x10\x70\xea\x45\xb3\x5a\xcc\x5f\xa4\x0d\xb4\x84\xac\x63\xcd\x05\xbc\xb3\xb3\x47\xc1\x58\x39\x17\xf0\xec\x5a\x9d\xcb\x4b\xef\xdc\x00\xb9\xa7\x15\x8d\x8c\x4f\x9c\x5c\x09\xd6\xad\x17\xaf\xc8\x3e\xf4\x05\x7c\xbb\x35\xc6\x9b\xe6\x92\x37\x60\xb0\x46\x24\xcf\x08\x0b\x19\x50\xe3\xe3\xd0\x7e\xc5\x8f\x24\xc0\x39\xbd\xf7\xa7\x4e\xe4\x90\x00\x03\x53\x47\x1b\x84\x64\x1a\x00\x3f\xad\x2f\x5c\xd4\x50\xcd\x05\x4c\xae\x8f\xfe\x62\xe6\x9c\x0b\x48\xcf\xb9\x56\xbb\x63\xf5\x1d\x40\x37\x8b\xd0\x33\xdd\x59\xd9\x80\x77\x0b\xdf\xc8\x6d\xf9\x3b\xd3\x36\x76\xee\xeb\xb8\x0d\x09\xf0\x68\x2c\x69\x9b\xa4\xe2\x43\xc0\xdd\x9c\xde\xbf\xb7\xf1\x35\x02\xee\xd6\xea\x60\x7a\x2e\xb3\x1d\x50\xb8\xd9\xeb\xe2\x98\x9d\x0f\x15\xce\xe4\x16\x36\xaa\xff\x74\x00\xfc\xb2\xe6\xdd\xfc\xbc\x54\x06\xcc\x6e\x75\x16\x3b\xb7\xee\xc4\x7f\x27\xca\xa6\x1d\x5e\x3e\x96\x06\x80\xd1\x53\xe2\x13\x0f\x92\x44\x01\x89\xc3\xeb\x9b\xe9\x67\xf8\x00\x5b\x27\x7f\xa4\x2d\x34\xe7\x00\xf2\x1c\xd9\x42\x73\xc1\xb1\x10\xf0\xf6\x40\x1d\xbf\xb8\x64\x29\x19\x8b\xcc\x3c\x38\x5a\xcf\xc6\x02\x6e\x21\xfe\x1c\x17\xdd\x5e\x4e\xc6\x32\x22\xdc\x9d\xf6\x65\x2c\xa0\xcf\x86\x03\xfb\x93\xf9\x36\xfe\x5d\x70\xcf\x3f\xdc\x70\x10\x09\x54\x98\x1b\xff\x23\x5f\x63\x00\x14\xf8\x3f\x3a\x19\x74\x8e\x74\x87\xc0\x8c\x67\xfc\x19\xba\x9c\x13\x04\x06\x92\xe4\x17\x34\x46\x0a\x01\x5b\x4d\x4d\x19\xdc\x7e\x16\x02\x5a\x32\x70\x0c\x19\x07\x50\x17\xfa\xf7\x39\x7b\x7e\x75\xef\x05\x5c\xbe\xd3\xfd\x99\xa8\xdd\x0f\x98\x73\x21\x7a\x83\x9b\x93\x2d\x20\xf2\x7b\x73\x1b\xb7\xc5\x00\x9e\x38\x3e\xaf\x40\xd2\xff\xfb\xd3\x39\x19\x71\xeb\xc0\xee\x5f\x04\x05\x8e\xbf\xa2\x34\x7e\xc9\x77\x92\xf0\xa8\xf0\x46\x8f\x9d\x6e\x0a\x80\x9e\x75\xd2\xab\xeb\x6d\x04\x01\x1f\x16\x0d\x5c\x48\x5b\x9f\x05\x38\xb2\xf4\x98\xed\xd8\x73\x3f\xc0\xc9\xc3\x7f\x62\xb9\x14\x1a\x01\x37\xbd\x7e\x72\xf0\x1f\x26\x40\x23\xf3\xb8\x54\x23\xe0\xdc\x62\x24\xff\xbf\x62\x98\x12\xd3\xaa\x5c\x98\x48\x05\x69\xa3\x2f\xcb\xca\x0c\xa1\x80\x1f\x35\x5d\xc3\x7d\x1f\xec\x03\x5c\xef\xa7\xac\xad\xcb\x11\x4a\x46\xa6\xcd\x6a\x32\x51\x49\x4f\x00\xbb\x3c\xac\xef\x84\xb4\x34\x90\xd1\x47\x3e\x7e\xe8\xa5\x6a\x25\x60\x07\xdd\xa4\x83\x3d\xc3\x24\x81\x59\x52\x91\x57\x57\x89\xec\x06\x3c\xbd\x98\xb4\xe6\x86\x7d\x2a\xa0\xde\x57\x07\xd1\xcc\x4c\x12\xe0\x76\x6f\x75\x09\xf6\x93\x1f\x48\x98\x3c\x3d\x91\xf9\x7c\x51\x08\x28\xb8\xe9\xf5\x7c\x55\x39\x63\x29\x81\xb9\x8d\xcd\x79\xb4\xcf\x0b\x00\x37\x9d\x89\xb7\xed\xdc\xc3\x0d\x98\xd9\x11\xbe\xa3\x66\x83\x1a\xe0\xf1\x40\x75\xa7\x9a\x3b\xf6\x64\xd4\xb0\x98\x5a\xae\xf3\xca\x07\x94\x7f\x60\xd6\xb2\x4f\x39\x07\xf0\x65\xf0\x8f\xf8\x35\x78\x15\x90\x2d\x6f\x53\x1c\xfb\xfa\x6b\x80\xbb\xeb\x6f\xa4\x5e\xe1\xb7\x01\x2c\x0d\x0b\x13\x4e\x6b\xcc\x06\x94\x69\xe7\x0a\xb3\x20\x67\x03\xfa\xbf\x7a\x1d\x44\x5e\x2a\x05\x8c\xe6\xca\x55\xbc\x3f\xa3\x07\x58\x3b\x62\x2c\xb9\xd9\xa8\x19\x90\x39\x6e\x2b\x49\x33\xf9\x15\xe0\x6b\x41\xaf\x9f\xff\x70\xe3\xf2\xa0\xf5\xe0\xd1\x66\xc0\xf0\x79\x87\x7d\xd6\x0c\x09\x80\x8a\x2a\x2e\x71\x31\x41\x4d\x80\x19\x74\xef\xf3\x23\x7a\x1b\x00\x69\xbd\xd6\x59\x9e\x3f\xd1\x0c\xf8\xee\xf4\xb1\x30\xd3\xd1\xcb\x80\xbc\x5a\xc7\x8e\x3a\xf1\x95\x03\x7a\x5c\xd4\x28\x8f\xbf\x2b\x0a\xf8\xad\x3d\x66\x97\x7a\x46\x38\x15\x2a\xf5\x5e\x44\x77\x3e\xcc\x05\x7c\xd6\x7f\x91\x74\xc7\xc1\x1c\x50\x26\x8f\x65\x60\xf7\xde\xf5\x80\x6b\xbf\x97\x0e\xad\x3e\x16\x48\x85\xb7\xdd\x6b\xfc\x62\x2f\xde\x06\xe4\xfe\xa4\xc1\x9d\x58\xaf\x0c\x18\xca\x95\xa5\xbc\x8b\xee\x07\x81\x21\xb7\x47\x97\x2e\xc7\x4b\x03\x05\x2a\xbe\x3f\x5e\x24\xf9\x7d\x26\xe1\xbd\xf3\x35\x22\xaa\x96\xaa\x80\xe6\xd9\x81\xd1\x1f\x5b\x62\x01\xbb\x73\xaa\x1e\xd8\xa7\x7e\x26\x50\x18\x94\xd7\x08\x9d\xed\x20\xb0\x65\xf5\x8d\xbd\x6f\xb5\xb4\xe0\xff\x87\xbc\x65\xb5\x30\x5e\x29\x21\x2a\x14\x79\x8c\x88\x5b\xd0\xce\x13\x38\x2d\x19\xc4\xf5\x5a\xdb\x05\x28\xa8\x4b\xea\x58\xfd\x66\x77\x01\x19\x35\x5f\xf1\xa4\x07\xb5\x9e\x01\x0c\x1d\x4a\x70\x60\xdd\xe4\x02\x94\xc2\x2f\x16\x1a\x37\x54\x7a\x18\xd0\x5b\xa1\x34\xbe\xac\x70\x96\xc0\xa7\x85\x77\x97\x9c\xb9\x7b\x09\xe4\x1f\x49\xe2\xea\xde\x5e\x42\xcc\x36\x1c\xd2\xb0\x6f\x0d\x84\xff\x7b\xa2\xee\xf4\xda\x5b\x6c\x93\x3c\x80\x02\xca\xe7\x1b\x6c\xc4\xee\x01\x6e\x48\x19\xc6\xb7\x83\x55\x80\x03\xea\x8e\xaf\x02\x5c\x49\x80\x42\x9b\xa5\x6b\xea\x46\x44\x01\x3f\x0c\x89\xcf\xe9\xe8\xf3\x52\x41\x78\xf2\x64\xa2\xdb\xd5\xa7\x24\xf4\x74\xb3\x5f\xc7\x7b\x9d\x0d\x50\xf4\x7e\xc8\xa7\xea\x42\x41\xc0\x60\xf7\x1c\xc6\x64\x83\x06\xc0\xdf\x0f\x05\x1a\x7b\x14\x1b\x00\x67\x49\xbc\x97\x7a\x22\x82\x57\x42\xce\x6c\xb7\x68\x5a\x7c\x2c\x60\xaf\x6a\x4b\xe7\x98\x5d\x0c\x55\xf9\x0f\xcb\xad\xf7\x13\xdc\xcf\x05\x00\x06\x5f\x4c\x73\xf1\x9d\xe3\xa3\xc2\x09\xab\x5e\x01\xee\xc6\x68\x2a\x44\xdf\x48\xaf\x0e\x33\xb2\x07\xdc\xf6\xd4\x65\x3a\xf4\x6d\x21\x19\x77\x33\x84\x2b\xe8\xf5\xeb\x02\xe6\xf8\xf1\xca\x7e\x52\x1c\x23\xf0\xa0\x84\xb8\x46\x84\x6a\x17\x09\x99\x9b\x8a\xc3\x56\xad\x52\x02\x0a\xec\xa6\x1d\x82\xd6\x08\xf4\x91\x30\x9a\x58\xef\x7b\x4a\xa0\x10\x30\xb5\x4c\xff\xf8\x17\x9e\x7c\xc0\x8c\xd7\xd5\xbf\x2a\x5c\x72\xc8\xf8\xf4\xde\x63\x97\x47\xd9\x65\x64\xaa\x2b\xd3\xe2\xda\x71\x45\x0f\x2a\x14\x7f\xaa\xf4\x7d\xd6\x16\x09\xa8\x6c\x7a\x7c\x8f\x83\xa3\x38\x60\xde\x26\x75\x59\x79\xab\x10\xc0\x1c\x45\x81\xb7\x89\x86\x0b\x04\xd2\x5f\x2a\xa9\x79\x2e\x47\x00\x05\x64\xed\x32\x9b\x79\x69\x7a\xc0\xb3\xe3\xe3\xac\x0b\xb5\xcd\x80\xb7\xe9\x58\x47\xcd\x64\xef\x03\xda\x05\xd5\xb9\x5c\x6e\x68\x06\xfc\x59\x3d\xd9\x26\x33\xdb\x00\xf8\xa5\xb6\xa7\x9f\xed\x0b\x27\xe0\xe3\xba\x0c\x45\x5f\x43\x6f\x2a\xf0\xed\x5e\xaf\xf5\x6f\xf5\x7a\x7d\x71\x68\x79\x78\xcd\x04\x81\x7d\x37\x96\x1e\xdc\x79\x77\x1f\x90\xbb\xf0\x52\x2a\x2d\x39\x88\x0a\x4b\xcd\x1b\xe8\xfa\x6f\xfa\xaf\x74\x15\xae\x9a\xc3\x5f\xc1\x1b\x4a\x85\xd8\x0e\xad\x9c\xfb\x2b\xe3\xf3\x68\xe4\x13\xc1\x5b\x99\x54\xd8\xc7\x64\x1f\x26\xf0\x17\xb7\x1b\x9f\x70\xb5\x3a\x7f\x22\x30\x54\x79\xc9\x8d\x9d\xf8\x44\x42\x66\xf5\x85\x67\x70\xc6\x12\x56\xc0\x2d\x07\xcb\x03\x0c\x9c\x8f\x09\x9c\x54\x2a\xe4\xfb\x39\xf2\x9c\x40\xfe\x36\xc9\xf4\x84\x53\x8a\x40\x81\x5f\xf5\x4d\x71\x1b\xce\x66\x12\x9a\x68\xcb\x65\x4f\xf3\x56\x01\x5a\x5b\xbb\xd0\x06\x9c\x35\xa0\xc2\xf9\x33\x01\x37\x4b\x3f\x9f\xa6\x82\x2c\xff\xad\x68\xee\x98\x51\x02\x33\x26\xb6\xe8\x9d\xd6\x8e\x00\x2c\x4e\x14\x59\x66\x52\x7a\x0e\xf8\x31\x33\x60\xa3\x71\x77\x1b\xe0\xec\x4d\x03\xf6\xa1\x98\x56\x40\xb5\x82\xe6\xcc\xcc\xd4\x3a\x40\xbf\xe4\x8a\x3d\xdb\xd7\x71\x02\xd6\xb8\xda\x0a\x1f\x7e\xf6\x10\xb0\x76\xaf\x18\x17\xd1\xf2\x10\x30\x97\x9e\x7d\x49\xd7\x5a\x8b\x0a\xad\x74\x7e\xac\x65\x5b\x97\x09\xfc\x59\x12\x95\x7e\x5e\x7e\x99\x40\x25\xef\x74\x66\x11\xc7\x1d\x80\x26\xde\x1c\x12\x53\x09\x92\x80\xaa\x36\x77\x73\x17\xf2\x8b\x09\x6c\xf1\x2d\xb3\x18\x98\x33\x01\x14\x9d\x6a\x37\xe6\x19\x31\x02\x6c\xf1\xd9\x71\x3e\xec\x74\x1d\x81\xd7\xfd\x79\x68\xa7\xf2\xac\x00\xf7\xfd\x2a\xae\x29\x3b\xe8\x45\xc6\x36\xde\xa7\xbf\xfa\xbe\xe5\x01\xf6\x48\x0f\x24\xcf\xd2\x8a\x51\xe1\x03\x34\x45\x26\x4f\xde\xa5\x42\xeb\xbb\x49\x1e\xc9\x09\xea\x12\xb3\xa5\xbf\x84\x0e\x6c\x56\xc2\x97\x12\x25\xf7\x44\x5f\x4e\x40\xd3\x03\x5f\x45\x54\x9e\x33\x03\xea\x2e\x68\xfa\x79\x70\x55\x03\x56\xaf\x73\x74\xdb\x30\xde\x40\x46\xd2\xf6\x76\x45\xaf\xbf\xe5\xe7\xc7\x59\xf3\xfe\x99\x04\x40\x99\xac\x9c\x8d\xef\xef\x87\x00\x16\xee\x03\x5e\x01\xb1\xfb\x80\x9f\x5b\x79\xbe\xf3\xff\x85\xfa\x63\x89\xfc\xd7\x99\x6e\x80\x0b\x5f\x8a\xc6\x37\x58\xf1\x01\x36\x17\x89\xc4\x89\x27\x34\x00\x92\x15\xe2\xbe\x3a\xb3\xba\x91\xf1\x1b\x6d\xa4\x0f\xaf\x56\x22\x60\xfc\xc2\xd5\xba\xc4\x4d\xfb\x01\xf7\xf8\x25\x70\x0f\x2e\x1e\x00\x8c\x9e\x76\x0b\x3a\xaa\xe0\x04\x38\x37\xa8\xab\x1e\x22\x9e\x0a\x18\x64\xc1\x6f\xcc\xfd\x86\x1b\x90\xb3\x7e\xc6\x98\xf5\xfc\x61\x2a\xfc\xf7\x51\xcf\x90\x39\x3d\x2f\xdb\xa9\x02\x58\xc1\x25\x76\x88\xdc\xe0\x43\xc6\x60\x65\xc7\x94\xf6\xc5\x7a\x40\xf5\xcc\xcb\xa1\x05\x4f\xd3\x01\x35\x54\xf8\x38\x89\xe7\xe5\x80\x71\x03\x2c\x3c\x8b\x9a\xac\x80\xf9\x4f\xe3\x9e\xb7\xbc\xaa\x04\x94\xdc\xde\x60\x69\x3d\x58\x0f\xf8\xf3\x5b\x61\xca\xd7\xd5\xd7\x00\xbd\x4e\x72\x3c\xa9\x53\xbd\x05\xe8\x15\x7f\x54\x88\xd5\x5d\x14\x70\x55\x56\xa0\x65\x55\x5b\x36\x20\x4b\xe1\xb3\xf7\x8d\x3c\x5f\x08\xbc\x9a\xb8\x7a\x7f\x36\x36\x01\x5e\x8e\xcb\x6e\x75\x32\x2d\x00\x9c\xd1\x32\x4f\xa3\x99\xb9\x4b\x46\x97\x60\x8f\xf5\xbe\x39\x99\x80\x25\xde\xba\x5f\x39\xbc\x1a\x00\x1f\x1c\xad\xdf\xae\xb6\x33\x1d\xd0\x40\x92\x5b\x51\x52\x35\x1d\x30\xd3\x34\x55\x36\xc9\x20\x15\xf0\xe5\xf6\xd0\x9e\xb1\x07\x21\x64\xca\x8c\xfd\xbd\xe7\xae\xe3\x27\xc5\x01\x1f\x8c\x86\x1e\xe0\x09\x9f\x26\x30\x43\x4e\x3c\x2a\x7e\xf9\x06\x50\x70\xef\x81\xe0\xf0\x97\xfe\x73\x80\x3e\x19\xdb\x1d\x44\x0a\x26\x09\x3c\xf3\x3a\x92\x41\x5c\x95\x03\x28\x60\xa5\x65\x1c\xd7\x2a\xf9\x43\x60\x82\xd0\x8d\x33\x7d\x7c\x2a\x80\x82\x99\xae\xf3\x37\xd9\x79\x00\xdd\x05\xae\xb2\xc4\xb6\xd1\x02\x76\xae\xdb\x66\x71\x5c\x51\x09\xd0\x9f\xf3\xc5\x57\x9f\xce\x0f\x04\x1a\xf9\xcc\xae\xb7\x2a\xe4\x01\x0a\xaa\x44\x5e\x7f\xd8\x22\xcb\x01\x18\x55\xca\x29\x33\x34\xbf\x15\xd0\xd4\x2c\x6e\xe3\xd1\xee\x01\x02\x2f\x79\xd9\x9f\xea\xbc\x3a\x42\x05\x9f\xd3\x66\x5b\x74\xef\x4c\x50\xc1\x29\xa1\x31\xe1\xf8\xc6\x72\xc0\x27\x6f\xbb\xf3\xfe\xe1\xec\x0b\xbf\x88\xd1\xb2\x6c\xc0\x23\x4e\x7e\x83\x0c\x76\x62\x80\xab\x85\x7f\x30\xfe\xfb\xdf\x94\xa9\xf4\xe3\x33\xf5\xa5\xa5\x80\x59\xbd\xa1\xf6\x37\x5b\xb3\x01\x17\x2c\xbd\xa5\x0f\x96\x16\x00\x26\xc3\x8c\x45\x95\x51\x35\xe0\xe4\xa5\x54\xff\x25\xa7\x0a\x40\xd3\xe3\xf4\x68\x38\x58\x09\xf8\xfc\x53\x49\x5e\x98\x58\x2d\x19\xf7\x73\xe7\xb6\x84\x36\x94\x00\x16\xe8\x9c\xda\x6d\xb9\x54\x01\xb8\xf1\x62\x02\xdf\x91\xe1\x4a\x40\x8d\x3c\x39\x4d\x9d\xf2\x7a\xc0\x3e\xb5\x46\x05\x7a\xe1\x1a\x40\x83\xce\x24\x39\x4e\x43\x12\x20\x9d\xa5\x0e\xed\x29\x93\x07\x80\xfb\x95\x67\x5e\x9c\xaa\x7b\x08\xb8\x70\xb5\xb5\xab\x5e\xe4\x1c\x19\xa5\x8d\x14\x06\x7d\x67\x7c\x01\xef\x59\xee\x5d\xda\xf0\xd0\x0d\x90\x77\xdf\x98\xcb\x92\xe5\x1c\x81\xbf\x14\x4a\xed\xf5\xf6\xb2\x03\x5e\xf4\x9a\x93\x4e\x97\x50\x05\xa4\xab\x95\x7a\x69\xd3\x53\x07\x28\x69\x2b\x7a\xf2\xb7\xee\x23\xc0\x0f\xaa\x66\x6b\x76\xd0\x72\x02\xba\x77\x10\x47\xdf\x31\x31\x00\xaa\x70\x6e\x4d\x2f\x0a\x26\x00\x75\xa7\xd2\x79\x6a\xde\x9f\xa3\x42\xec\x83\xec\x58\x3b\x63\x2b\x40\xef\x8d\x35\x43\x4d\xdb\x95\x00\xdb\x7a\x13\xeb\xdf\x9e\x13\xa3\x82\xcc\x00\xf9\xe3\xcb\xb0\x29\x02\x8d\x9e\x8f\xde\x76\xc8\x5d\x0f\x18\xe7\x6c\xd9\x6f\x1a\xa6\x0e\x68\xee\x65\xcb\x75\x6e\x71\x03\x60\x03\x93\xfe\x9b\x41\x89\x77\x04\x46\xc7\x66\xf8\xad\x9b\xdc\x02\x78\x6b\xb9\x86\x5c\x10\x52\x4d\x46\x6e\x8f\xc7\x7b\x5d\x17\x6c\x00\x2f\x6f\x7b\xcf\xe2\x2d\x66\x09\x58\xf8\x9e\x6b\x39\xd7\xb9\x9b\xc0\x3d\x26\x8a\xdd\x79\xeb\x37\x02\x05\x22\xb3\xeb\xa6\xb8\x5a\xf9\xa9\xd0\xe2\xa2\x1d\xa4\x4c\xac\xa1\x42\x9f\xec\x85\xbd\xed\x5c\xc9\x54\x08\xb8\xbc\x33\x38\x44\x33\x02\x30\xc9\x34\x41\xac\xdf\x7a\x92\x40\x47\xd6\x38\xc5\xc7\x71\x02\x80\xbb\x8e\xd8\xc8\x1e\xe3\xbf\x05\x98\x22\xcc\xcf\xb5\xae\xa4\x94\x8c\xbb\xde\xfb\xf0\x69\x86\x3e\x01\x4c\xdb\xb3\xdd\x83\x25\xfc\x09\xa0\xd2\xab\x38\x5b\xed\xbf\xc5\xa2\x34\x30\xea\xe5\xf1\x46\xc0\x94\x72\x9a\xb7\xf7\x5e\x28\x01\xde\x2d\x65\x2c\xdf\x96\xca\x09\xf8\xea\xeb\x1b\xc5\x93\x03\xb4\x80\x47\x1f\x6d\x88\x98\x7f\x65\x41\x85\xd6\x35\x46\x3b\x6e\x9e\xa0\x05\x3c\xe4\xec\x2e\xb2\xf7\x64\x0e\xa0\xe9\x8f\xe2\x11\x56\xf9\x02\xc0\xa8\x2f\x0e\xbb\x81\xa4\x02\x58\x64\xd8\x73\x6c\x40\x63\x23\xa0\xdf\xc7\xa3\x37\x02\x7f\x2c\x13\x38\x14\x3a\xbf\x18\xd2\xd4\x4d\x05\x9d\xf0\xd5\x66\x6b\x19\x9b\x08\x3c\xbf\xea\xf4\xd1\xc4\x9b\xaf\xc9\x78\x47\x86\xa1\x7c\xce\xa6\x10\x30\x2b\x42\xa1\xa5\x6a\x7b\x18\xa0\xa1\xde\xa8\xf8\x01\xa5\x62\xc0\x6d\xc7\x93\xdb\x9e\x7d\xcd\x02\xd4\xfa\xf8\x75\x43\x7a\x4d\x21\xe0\x9d\xc6\x49\x78\xc7\xc8\x01\x28\xd5\x26\x98\xbf\x5d\xc2\x9b\x0a\x93\x76\x87\x98\xe9\xf7\xec\x01\x1c\xb9\xf3\xbb\x27\x8f\xe9\x0b\x81\x97\xb6\x9a\x3d\x9e\xa6\x4b\x02\xac\x1c\x58\xff\xe8\xde\x93\x72\xc0\x31\x65\x66\xa6\xc3\x7e\xe5\x80\xaf\x3f\x9d\x0d\x65\xd4\x1a\x25\x30\x73\xc3\x18\x53\x1f\xbf\x34\xa0\x04\x8b\x53\xf2\x7d\x17\x31\x2a\xb0\x4a\xe6\xb7\x7f\x4e\xef\x23\xa1\xc6\xec\x8f\xa9\x61\xf9\x36\x02\xc7\x1e\x64\x24\xc5\xc9\x9d\x01\x0a\x8a\x0e\x72\x2e\x74\xa7\x89\x03\xd6\x7b\x68\xe4\xf1\x5b\xad\x03\x3c\xbc\xc4\xc6\x12\x24\x5e\x06\x98\xc9\x26\xa9\xf3\x81\xa3\x93\x84\x42\x11\x09\x8f\x6b\xe5\x39\x00\x77\x19\xda\xa8\xb2\x2f\x08\x01\xae\xe6\x7b\x37\xc4\x9b\x59\x47\xe0\x99\xef\x63\x1c\xc5\x2f\xd4\x01\x19\xdb\x5b\x8b\x2c\xa6\xb7\x52\x21\x26\xfa\xb3\x2e\xef\xe6\x5e\x32\xa5\x90\x22\x65\x3f\xcb\x70\xce\x12\x2b\xc0\x80\x5b\xb0\x9d\xde\x43\x10\xf0\x31\xd7\x23\x11\x6d\x2d\x1a\xc0\xee\x4a\x23\xff\xb3\xaa\xdc\x80\xbc\xc7\x5e\xdb\xec\x51\x52\x07\xbc\xec\x57\xe0\xe3\xa4\xad\x0a\xa8\x27\x7f\x45\xbf\xa0\xd0\x00\xf0\x76\x67\x9e\x13\xe3\x50\x05\x20\xcb\x2d\x62\x2c\xe9\xc8\x3c\x81\x69\x5f\xcc\xf3\x4a\x8d\x87\xa8\xf0\x35\x29\x9d\x27\xb5\xf2\x35\x09\x5f\xce\x9b\xb6\x71\x1f\x2c\x01\xfc\x24\xb9\x63\x93\x73\x72\x31\x60\x70\xbf\x2f\x8b\xd9\x1e\x3e\xc0\x5f\x8f\x3b\x4f\xdd\xd8\x39\x47\xe0\x28\x6f\x7c\x7d\x75\xc0\x12\x81\xfd\x2d\xca\x67\x3c\x23\x59\x00\xed\x4d\xed\x86\xbd\xcd\x55\x01\x05\x6d\x9e\xda\xfb\x0b\xee\x01\x1c\x54\xae\x31\x7f\x6d\x6d\x4f\x85\xa9\xa0\xed\xba\xdf\xca\x58\x00\x69\x87\x04\x78\x97\x17\x3b\x08\x2c\x71\x8c\x21\x29\xf8\x9b\x00\xf2\xe8\xc7\xf6\xd0\x49\x95\x01\x32\xdf\x97\x38\xd0\xf1\x17\xdb\xe4\xb3\x2b\x49\xef\x1d\xa9\x70\xdd\x4e\x6c\x1f\x6b\x98\x0d\x15\x78\x4e\x3d\x79\x75\x38\x94\x07\xf0\xaa\xd0\x95\x88\xe0\x81\x22\x12\xde\x2d\x10\x63\xe7\xcc\x9b\x26\x28\xb8\xff\x39\x59\xa3\xc5\xf5\x1b\x81\x26\x7f\xee\x0f\x6c\xef\x9b\x25\x70\xcb\x67\x76\xf3\xf6\x0f\xbb\x80\x82\xe8\xec\x00\xd6\x70\x8d\x3f\x04\xa6\xb2\x33\x06\x89\xc6\xbe\x21\x50\x8b\xe6\xa7\xfe\xcd\x9b\xbc\x40\x81\x19\x07\x4b\x0d\x7d\xf4\x24\x81\x6c\x87\xf3\x07\xb5\x5c\xfe\x10\xf8\xa6\xc4\x3d\x6e\xc7\x41\x43\xc0\xb9\x85\x13\xd1\xbc\x9c\x4a\x54\xd0\x2f\xbb\x7d\xb6\xf7\x39\x2d\x15\xba\xf7\x24\x9f\x4d\x58\x18\x27\x70\xaa\x6f\xb1\xa8\x3a\x34\x85\x8c\xaf\xb2\x9e\xbe\x74\x4d\x32\x01\xdc\xeb\x3d\xb3\xe3\x78\x4d\x29\x20\x43\x62\x20\x7d\xc2\x35\x3b\xc0\x43\x55\x7d\x2f\x6b\x42\x0e\x00\x7a\xce\x65\xd9\x6c\xb6\x0e\x06\x3c\x3f\x7d\xe3\x7a\xdb\xd3\xbf\x9b\x9e\x0c\xfb\xae\xa6\x7a\x16\xc0\x33\xd2\x7b\xf4\xf6\x3d\x9b\x24\x70\x80\x2f\x6a\x31\xce\xe0\x1a\xe0\xd5\x17\x4c\x5a\x67\x5a\x36\x02\x2e\xd1\x8f\xca\x9d\x54\x78\x47\xc2\x0a\xd2\xb3\xa5\xb2\x13\x09\x40\x01\x3f\xc3\xfb\x8c\x54\xc5\x66\x02\xcd\x4d\xbc\x54\x85\x37\x8e\x13\xf8\xe8\xbb\xaf\xa2\xee\xec\x66\xc0\x67\xf7\xdd\xee\x34\x45\x67\x92\x91\x7f\xc9\x65\xbc\x83\xa5\x10\xd0\x3e\x30\xf2\xdb\x12\x4f\x21\xa0\xe2\xc5\x0c\xcf\x58\x1b\x61\xc0\x94\x3a\xbb\x61\x1b\x82\x0e\x70\xd3\x72\xdb\x7b\x89\x35\x6a\x80\xc2\x6e\x47\x95\x7d\xf6\xd3\x03\xe6\xac\xbe\x3b\x55\xf9\xb4\x9f\xc0\x6f\x74\x7b\x8d\x3e\x6d\xa0\x01\x0a\xaa\xc4\x5c\xbf\x9d\x99\x1e\x25\xd0\x41\xdd\x9b\x08\x89\xcb\x27\xe3\xa2\xe5\xee\xe9\xb5\x4e\x03\x04\xbe\x4a\x0b\xb6\x19\xc9\xd4\x04\x0a\xac\x42\x57\xe7\x5e\x0d\x56\xa7\xc2\xfb\x51\xc1\x6c\x9a\xdd\xa2\x80\xaa\xac\x9e\xf5\xdc\x7d\x81\x80\xd7\xd3\x4f\x6b\x59\x72\xbe\x24\xa3\xd6\xf4\x62\xb0\xa6\xf1\x77\x02\x13\xb3\x4f\xba\x6c\x3e\x3d\x4f\x85\x23\x3e\xb7\x37\x7d\xd0\xff\x40\xc2\x03\x1b\x9e\x15\xae\xda\x41\x02\x3c\xbf\x6d\x76\xe2\xe1\x01\x39\xc0\x0e\xe3\x51\xf1\xe3\x22\x9b\xa9\xb0\x31\xc7\xd5\xd1\x5f\x02\x09\xb4\xe8\x8d\xd1\x7b\xef\xb4\x1e\xb0\xb6\x5c\x26\x85\x67\x66\x0b\x20\x47\xd0\xaf\xb5\x5e\xd9\x75\x80\x58\xd6\x65\x61\x9f\x4d\x02\xdc\x12\x34\x1e\x7d\xe5\x4c\x27\x81\xb6\x45\x87\x33\xb8\x42\xbf\x52\xe1\xe2\xf0\xf4\x45\xfb\x48\x29\x40\x2b\xcd\xd8\xf6\x6b\x1e\x34\x80\xe5\x0c\xbf\x4b\xba\xaa\xbd\xa9\xe0\x99\xab\xa0\xd1\xd8\xc8\x03\x98\x6f\xb2\xbd\x7d\xc0\x90\x01\x90\x2e\x8d\x7d\x60\x98\x35\x66\x25\x1c\x2c\x5f\x3c\xfe\xc0\xd3\x7f\x25\x74\xf5\x5d\x89\x13\xb4\x4a\x02\xe4\xb3\x0b\x0d\x18\x94\xa5\x05\x3c\xa9\x28\x4f\x77\xe9\x32\x3f\xe0\x57\xcd\x5a\x41\x3a\xf7\x1d\x80\x1f\xa2\x8c\x04\x9f\x76\xb1\x50\x21\x1b\xce\x68\xd8\x65\xb6\x93\x28\x10\x66\x4e\x3c\xfa\xed\xf8\x30\x41\x41\xad\x2a\xa9\x31\x21\xec\x3b\x81\x35\x6e\xe9\x0e\x91\x9a\xb4\x80\x11\x1f\x66\x87\x3c\x68\x76\xaf\x04\x87\xc4\xa6\x58\xde\x1b\x22\x2b\xe1\x87\xda\x2e\xc7\x3a\xcb\x2f\x04\x2e\x6e\x61\x94\xa0\xfb\x3c\x47\x60\xc4\x4c\x51\x81\x8f\xf2\x4d\xc0\x1a\x47\xd5\x61\x56\x4d\x6a\xf0\xa9\x95\x7c\x8e\x4a\x52\x01\x4c\x2f\xd6\xf5\x96\xd0\xb1\xa3\x02\xad\x2c\xe4\xed\xea\x75\xa6\xc2\xd0\x6c\x56\x5e\x8b\xc4\x1d\x40\x3e\xd9\x91\xc2\x6d\x82\xab\x00\xed\x6b\x36\xbe\xab\x32\xeb\x24\xe1\x9e\xb6\x02\xe0\x21\xdf\x04\xac\xf4\x54\xb2\xf3\xae\x68\x00\xfc\xc8\x9f\x9d\x97\xd3\xd1\x44\xc6\x91\xcf\x8c\xf2\xff\x8a\xc1\x57\x46\x91\xa1\x89\x5b\x80\x85\xf7\x46\x7f\xbe\x36\xf4\x07\x14\x8f\x67\x66\x0e\x21\xe7\x00\x36\xbb\x73\xda\xe9\x73\xe5\x00\xf6\xf0\xa8\xbb\xcc\xf6\x4f\x11\x58\x3e\xd9\xf0\xa3\x7c\xf0\x18\xac\x00\x07\xf6\x67\xaa\x6b\xde\x79\x03\x4a\x1f\xd2\xdc\x75\xf3\xf6\x05\xc0\x3d\x3b\x9d\x7c\x38\x07\xdf\x90\x50\xe3\xd2\xe5\xd8\x6d\x3b\x1b\x01\x6b\xa3\xf6\xe7\x5e\x30\xaa\x02\x64\xcf\x3f\x7c\x4e\xf3\x0d\x09\x28\x57\x92\x83\xfc\xdc\x72\x92\x71\x80\xbb\xff\xb8\xd8\x78\x0a\x76\x13\x18\xfe\x47\xe1\x51\xdb\xda\xad\x80\xbe\xbd\xd7\x14\xcb\x4e\xc8\x03\x2e\x1e\x56\x51\x9b\xcb\x72\x05\x64\x73\x5f\x45\x5f\x53\xee\x0a\x98\xa5\x6a\x73\xbe\x57\xaa\x83\x8c\xfc\x0a\x4b\xaf\xfe\xe4\xd6\x92\xf1\x98\x8f\x56\xbd\x5c\x91\x2d\xe0\x67\x51\xfb\xfd\x9e\x37\xb4\x01\xe7\x69\xee\xde\xaa\xfd\xaa\x03\xd8\xbb\x99\xc9\x44\x32\x6c\x94\x84\x2e\x07\x14\x44\xf5\xd9\x8e\x03\x05\xcc\xb9\xee\x53\x34\x22\xf6\x80\xaf\x46\xfc\xb7\xa5\x32\x0c\x12\x28\xf8\x99\x94\x4b\x33\xa4\x0a\xb3\xf6\xdc\xf6\x63\xed\xb9\x80\xd7\x4f\xb6\x99\x7d\xdc\x95\x07\x58\x9d\xfa\x3b\x48\x8a\x95\x1f\x50\xe8\x59\xd0\x94\x69\x3b\x2b\x60\xfb\x6e\x0b\xf1\xb5\x83\xf7\x01\xcf\x5e\xd5\x77\x0d\xa4\xdd\x08\xb8\x71\x77\x6a\xe2\xa9\x7d\x5e\x64\x3c\x7a\xe7\xdc\xea\x59\x9d\x37\x40\x41\xb9\x76\xaa\xff\xac\x40\x39\xa0\x51\x13\x16\xdc\xd2\x75\x02\xcc\x91\xb4\xf5\x32\xa7\xa7\x03\x3c\x55\x70\xe7\x58\xf8\xb8\xda\xdf\xdd\xa8\x72\x4e\x93\xf6\x06\x60\xbe\x16\x29\x9c\x51\x72\x1b\xe0\xab\xbe\xd3\xdd\xe1\xd9\x3e\x80\x7f\xa6\x7e\xf1\x27\x70\x5b\x02\xce\x1f\x5c\x70\x3e\xfa\xc7\x10\xf0\x59\x8a\xf3\xfd\x2f\xe7\x24\x01\xf5\xcd\x9c\xbe\xa5\xf5\x2f\x12\xc8\xcf\x65\x42\x7f\x9d\x83\x00\x64\x69\x33\x7b\x97\xa3\xa6\x02\x18\xcc\x93\x28\x1f\xb5\xbd\x96\x84\x61\xa9\xcc\x91\xdd\x11\x33\x04\x05\xf9\x34\x03\x3c\x2a\xf7\x08\x40\x2b\xc7\x1e\xef\x19\x1e\x67\xc0\xb9\xd0\x26\x91\xa0\x25\x1b\x40\x91\x8f\x42\xac\x1a\x86\x15\x80\x63\xc3\x99\xcd\x6f\x2e\x56\x00\xba\x93\xde\xa6\xd8\x3e\xac\x00\xac\xdf\x35\xd2\x5d\x3e\x1e\x0f\x48\xff\xfe\x63\xe0\xe1\xb5\xb1\x80\x2d\x11\x7c\x63\x65\x7f\x8b\x8c\x7c\xe7\xf7\xaa\x29\x1f\xc0\x6f\x9a\xfb\x2e\xf5\x3e\x52\x00\x5c\xad\xb1\xdf\xce\x33\x37\x11\xf0\x7c\xf9\x6d\x71\x27\x99\x08\x40\x61\xfd\xdb\x7b\x98\xf3\x67\x09\x64\xb5\xcb\x70\x9a\x2c\x96\x02\x0a\xac\x5e\xc8\x1f\xd5\x61\x8b\x02\xac\xe1\x33\xf4\xff\x87\x59\xb9\xb7\x27\xe3\xe4\x77\x03\x8a\x1e\xad\xf1\x62\x39\x5b\x04\xe8\x5f\x5b\x59\x17\x52\x6e\x08\xa8\x77\x4e\xc7\xcf\x4e\x91\x13\xd0\x5f\x49\xef\xc0\xee\x4d\xfc\x54\x60\xf2\xbc\xf9\x63\x55\x13\x12\x2b\x60\xab\x8b\x83\xc0\xa2\x80\x2e\x50\xd0\xbe\x2b\x3f\x42\x72\x4c\x1c\x90\xac\xe7\x78\xba\xc4\xa8\x8c\x84\x0b\xda\xb7\x37\x39\xbf\x3c\x08\x2b\x60\xa2\xa1\x81\x74\xd7\xb5\x80\x84\x96\xee\x2a\x8c\x23\xda\xd1\x80\x9f\x76\xdb\xaa\x04\x7b\xa7\x03\x26\xfa\x7e\xfc\xf9\x2b\xe0\x10\x15\xf4\x36\x8f\x1e\x0d\x7a\x74\x86\x0a\x12\x0c\xa3\x42\x31\x68\xbc\x12\xc6\x84\x9e\x9c\xb7\x93\xd6\xa1\xc2\x76\x8d\xa5\x6b\xba\xa1\x22\x80\x5c\xbd\x61\x2e\x23\xa2\x62\x80\x42\xf3\x91\xfa\xc2\x86\x6b\x00\x0f\x44\xd8\xfe\xe1\x54\xe9\x24\xf0\xf5\x86\x73\x9d\xc5\x3d\x04\xac\x00\xa3\xae\x0b\x77\xfc\xc3\x3e\x12\x68\xac\xcd\x7c\x61\xb5\x4f\x27\x09\x25\x9e\x65\x89\x39\xba\xec\x82\x15\xb0\x7d\xd9\x2e\xfe\xee\xc6\x2f\x24\x0a\xa6\x2e\x99\x5b\x3f\xd1\xb2\x81\x15\x30\x28\xbc\x5c\x74\xef\xd9\x4d\xc0\xd5\xaf\x53\x46\x68\x06\xd5\x00\x53\x52\x4e\xd8\xd3\x89\xce\x10\xc8\xe7\x1b\x16\x22\xc4\x5f\x0c\x28\xa9\xbf\xe9\xda\xce\xb1\x3b\x64\x3c\x7a\xeb\xc9\xec\xd4\x8b\x63\x80\x8c\x39\x4f\x65\x42\x1a\x7c\x00\xcd\x5a\xcb\x83\xe5\x53\x7d\x01\xaf\x64\xfe\x36\x80\x40\x2b\xc0\x9b\x4d\x96\x3e\x2f\x2d\x37\x00\x76\x07\x2e\x9d\xd0\xf1\x14\xa5\x02\x30\x72\x1e\x10\x64\x1b\x27\xb0\x97\x97\x71\xec\x65\x8a\x02\x60\x50\x8e\xeb\xaf\x04\xde\x6d\x80\xad\x57\x0c\x4e\xd6\x0a\xcc\x10\x58\x95\x13\xbb\xb1\x37\x40\x08\xd0\x41\x9a\xe9\x71\x94\x5a\x32\x15\x96\x19\x7a\xcf\xac\x1e\x93\x07\x8c\x5e\x3c\xa5\x6a\x24\x6f\x0c\xa8\x2c\x46\x67\xd2\x1f\x5b\x08\x78\xfb\xd8\xba\x5d\x6f\xae\x8d\x12\x78\x48\x2b\x6a\x9e\xe6\x5e\x27\x19\xdd\x02\x67\xfc\x18\x67\xd6\x03\x0a\x5d\x54\xea\xbe\x28\xcd\xf1\xf7\x05\x11\xf2\x4b\xc3\xa3\x04\x30\x69\xe2\x1a\x47\xf3\xf3\x8d\x80\x21\x13\xf5\x7c\xe5\x2e\xab\x01\xc3\xe6\xca\xad\xb8\x5f\x1b\x03\xe6\xa6\xa8\x92\xf7\x46\x71\x53\x81\x8b\xe1\xf5\xd5\xd5\x9d\x1f\x49\xf8\xfe\xc2\xe6\xca\x90\x4f\x71\x80\xf2\xd6\x5a\x7c\xbb\xd4\x9b\x00\x23\xb9\x69\x8d\x36\xc5\x34\x02\x4e\xd9\xae\x92\xfc\xae\x51\x09\x78\xb5\xd0\xc6\xc8\x59\xba\x08\xb0\xcc\x7c\x5d\x7e\x1e\x6d\x35\x60\xf7\x30\x97\x0b\x39\xbb\x00\xd0\xf8\x31\x8d\x41\x80\x48\x13\x20\x3d\x23\xb9\xd7\xc4\xf2\x0f\x81\x15\xb3\x66\x26\xee\x17\x76\x03\xae\xed\xff\xba\xe8\xc1\xa1\x04\x68\x34\xc5\x27\xc4\x53\xc1\x09\x38\xdb\x38\x98\xc2\x96\xb0\x48\x50\x50\xfa\xd0\x84\x6b\x4d\xc0\x7b\x12\x92\x1c\x0e\x7a\xc5\x0e\x18\x03\x4e\x45\x27\x48\xbc\x1c\xaf\x02\x34\x74\xde\xc5\xdc\xf5\x17\x2c\xef\x98\xbb\xd8\xb5\xcf\x91\x29\x65\xde\x5f\x70\x88\xfb\x54\x00\x15\x0e\xbe\x2a\xbf\xf4\x73\xc7\x7d\xf2\x0a\x57\xd7\xb7\x90\x25\xdb\x8d\x2f\xae\x84\x8f\x0e\xd5\xf7\x59\xc2\x0b\x08\xac\x55\x2f\xca\x73\x8c\xa3\x03\x14\xda\x4c\x0e\xde\xde\x05\x80\x16\x6d\xd7\x83\xcd\x2b\x1b\x00\xbf\x87\x85\xbb\xfd\x43\xd8\xef\xde\x1c\x0b\xa1\xa3\x54\xc8\x7a\x7d\x47\x4c\x6a\x78\x84\xa0\x40\x6e\xfe\xf7\xa4\xba\xa1\x0a\xe0\xb0\xca\xeb\xbe\xe9\x93\xe9\x80\x52\x27\x18\x8f\xcb\x2a\x86\x01\x0e\x2b\x24\x05\xd1\x25\x6c\x02\x6c\xf4\xfe\xa9\x5a\x1f\x4d\x03\x68\x78\x60\xc2\x76\x8a\x20\x01\xae\x1d\x16\x8e\xfc\x87\xff\x8a\xed\x36\xc5\x98\xe1\xea\x43\x54\xc8\x02\x95\xfb\x85\x83\xfb\xc8\x18\x9b\xa1\xfa\xd4\xe2\x8f\x3e\xa0\x6a\x8d\x96\xe8\x25\x7d\x39\x40\x5a\xae\x33\x34\x12\x74\x9c\x80\x7b\xad\x8f\x4c\xcc\xb4\x7c\x26\xf0\x64\xc0\xe7\x2b\x92\xb7\x46\x08\x1c\x75\x6b\xbf\x15\x71\x43\x06\x90\x41\xa0\xf7\x21\xc7\x9b\x37\x04\x9a\x85\x48\xcd\x35\x8b\x73\x01\x05\xc6\x41\x6b\xaa\x2f\x90\xc5\xa8\x30\xc3\xd8\x77\x97\xc3\x64\x0d\x60\xba\xf9\x64\xf3\xa5\xec\x4b\x54\x60\xeb\xf2\x3c\x90\x6e\xe0\x09\xe8\x0d\x84\x97\x8f\xba\x16\xe0\x10\x5d\x7c\xc9\xdd\xe0\x44\x32\x8a\x49\x2d\x92\xae\xe7\xdc\x03\xb4\xdc\x68\xc1\xf2\xfd\x96\x21\xa0\xcd\x88\x94\x90\xc9\xb9\x31\x02\x9b\x75\x7c\xec\xa5\xbf\x8a\x03\x7a\xae\xe6\x2d\x62\x71\x2e\x23\xe3\x60\xfb\xe2\x91\xd9\xcb\x47\x01\x33\x2f\x77\x26\xf2\xff\x16\x07\xac\x72\x24\xcc\x73\x3d\xc8\x80\xe1\x0f\x64\x1f\xef\x49\x6d\x06\x3c\x12\x77\x8a\x76\xa0\xeb\x19\xa0\x4d\xdd\xf3\x4f\xbe\x15\x4c\x80\xfd\x1d\x19\x0d\x71\xfb\x6b\x01\x5f\x56\xa8\x98\x0e\x5b\x7d\x23\x90\xed\x03\xd9\xec\xab\x75\x2c\x60\x64\xaf\x85\xfa\x59\xba\x58\x40\x09\xdb\x6c\x0b\xae\xc5\x61\x02\x13\x13\xbd\xfc\x54\x6c\xc6\x08\xac\x94\x5a\xd2\x98\xbe\x7d\x15\x90\xc1\xd9\xb6\x83\x8d\x2d\x09\x70\x60\x79\xb3\x7f\x79\xfc\x15\x40\xc7\x03\xfb\x99\xde\xc4\x84\x90\x71\xce\xfb\x69\x41\xaa\x53\x1a\x19\x03\x72\xf8\xd7\xf7\xa8\x85\x91\xf1\x98\x47\x4e\x71\xee\x0e\x66\xc0\xc2\x8d\x53\x86\x6c\xc7\x9b\x08\xbc\xba\xca\xec\xe4\x01\xeb\x71\x2a\x9c\x6c\x4d\xbe\x2f\x6a\x37\x41\xa0\xf0\x61\x72\x84\x5f\xf6\x45\x40\xeb\xc8\x92\x5b\xcf\x94\x55\x01\x83\xd8\xe0\x74\x7f\xdc\x0e\x40\xbe\x17\x6f\x4d\x3d\x8c\xad\x00\x03\x03\x1f\x34\xbd\x9d\xd6\x06\xbc\x2f\x7c\x7a\x49\x41\x2c\x8c\x8c\xc3\x34\xca\xfa\x1b\x2e\xe9\x03\x92\xf2\xd6\xbf\x1f\x19\x32\x06\x64\xdd\x68\xe3\x32\xdb\x26\x0e\xe8\x5a\x62\xf7\x64\x8a\x8d\x7d\x25\x98\x35\x3a\xee\x51\x65\x9b\x23\x56\xc0\x4b\x9e\x21\x8b\x7d\xc1\x1b\x81\x82\xce\x1f\xef\x5a\xf6\xec\x12\x07\xfc\xce\x7b\x51\xa7\xe7\x8b\x2a\xa0\x45\x92\x76\x80\x77\xc5\x2c\x41\x81\xb5\x4f\x58\x8b\x64\x37\x0d\x50\xf0\x3d\x53\x4d\x36\x30\xbb\x92\xc0\xd2\xae\x4d\xa9\xb3\x3b\x54\x00\xcd\xd3\x23\xbe\x54\x34\x6f\x02\xec\x7a\x35\x79\xa9\x2f\x38\x1a\x30\x5a\xee\x65\x55\xf8\x80\x16\x15\xe6\xde\x0a\x0c\xca\x9f\x1d\x27\xd0\x79\x0c\x35\xdb\x3f\x31\x00\x46\x44\x3d\x5a\x73\x60\x79\x81\xa0\x80\xee\x32\xfb\xbe\x5a\x83\x71\x02\x9b\xb5\xbd\xae\x0a\xeb\x6e\x04\x64\xce\x12\x48\xff\xbd\x4a\x9b\x0a\x0b\xc6\x4f\xcd\x23\x78\xaf\x91\x30\x56\xf4\xb7\xcb\xbb\x73\x5a\x80\x11\x15\x69\x25\xbe\xaf\x08\xc0\x84\x4f\xb2\xea\x6a\xa6\x72\x54\xd8\xba\x24\xd0\xbc\x6d\xd5\x32\x81\x99\x93\xa7\xaf\x57\x73\xa9\x02\x6a\xfe\x7e\x79\xe4\xfc\x4e\x73\xc0\xeb\x32\x55\x93\x69\x5f\xa2\xc9\xb8\xc0\xcf\xc7\xdc\xe2\x63\x08\x08\x0c\x1e\x07\x5a\x95\x69\x01\xfd\xb7\x7b\x6d\x6a\x3f\x2a\x0a\x98\x5a\xe4\xbd\x9e\x57\xe4\x22\xe0\x05\xce\x5f\x3a\x9c\x93\x1d\x04\x6e\x0d\x52\x34\x53\x99\xd1\x06\x3c\x24\x5b\x3d\x65\x1c\x9c\x4d\xa6\x14\xfb\xdb\xee\xcf\xbf\xad\xe3\x01\x34\x1a\x6b\xab\x50\x08\x63\x00\xec\x17\x2d\x8c\x97\xf7\x30\x05\xd4\xef\x35\xca\x0b\x5e\xaa\x01\xec\xb3\xb2\x1c\xf1\xb2\xaa\x02\xec\x32\x57\x4d\x8d\x76\xa8\x03\xac\x8d\xed\x70\xf3\xd8\x2c\x09\x78\x41\x42\xe6\x49\x77\xc3\x2a\xc0\x1b\xf2\xef\x26\xf4\xa4\x7a\x08\xe4\x7d\xd1\xfb\xc8\x26\x59\x14\x28\xe0\x99\xf2\x13\x26\x6f\x9e\x27\x70\x31\x24\x59\x06\x6d\xfd\x00\x3d\x23\xd5\xbe\xb6\x73\x44\x01\x36\x6d\x4d\x91\x21\xb9\x72\x02\xde\x89\x1d\xcd\x52\xd8\x2e\x4d\x85\x57\x67\xc4\xca\x0e\xc6\x4a\x51\xa1\xc0\xf0\x44\xf7\xb1\xad\x96\x80\xdf\x0b\x98\xba\x6c\x67\xbd\x01\x87\x52\xb3\x1d\xc4\xcb\x75\x00\xfb\x5c\x7d\xa3\x83\x37\x88\x02\x1e\xe4\xf8\x79\xb7\xea\x43\x3e\x19\xd9\xc5\x0c\x4a\x69\xd9\x76\x00\xd6\x55\xde\x8c\xd1\xb1\x31\x01\x64\x12\x8b\xf6\x71\xdf\xb7\x15\xf0\xa6\xf9\xf6\x23\x06\xa4\x71\x02\xdf\xbe\x7e\xb9\x6e\xad\xff\x06\x40\x83\x28\xe7\x2d\xd1\x9d\x49\x80\x4a\x96\xee\x72\xfb\xee\x8c\x10\x38\xbd\x69\xbe\x9d\xc1\x68\x8e\x0a\xdb\x7a\xd7\xc5\x7f\xab\xa7\x07\x7c\xdf\x92\x50\x32\xbc\xaa\x11\xf0\x7c\xc5\x56\x85\x00\xb5\x5b\x80\x1a\x7a\x41\x6b\xdf\xe5\x7d\x23\x70\x67\xf8\x93\x9d\x34\xc3\x1c\x80\x1a\xb3\x61\xeb\x86\x8b\x45\x56\xc2\x2f\x83\xc4\x78\xd3\xc7\xf9\x80\xa1\x8e\xdf\x86\xff\x17\x2f\x3e\x9b\x5f\x09\x15\x7e\x4f\xc2\x94\xbe\x53\xce\x69\xd3\xd2\x80\x02\x2e\xbd\x86\x57\x92\x46\x08\x6c\x54\x5e\x7f\x3e\x5f\x2f\x15\x70\x21\xf6\xc4\xb6\xae\xd0\xc3\x80\x52\x3b\x26\xc3\x42\x98\xaf\x93\xb1\x89\x3e\x3e\xe3\xeb\xb9\x2b\x80\x25\x92\xdf\x15\x3e\xc6\xdf\x27\xe3\x89\x77\x7e\x07\x5c\x2b\xaf\x00\xea\x85\x74\x9e\xeb\x25\x5a\x08\xdc\x22\x2b\xa8\xbf\x5a\x4e\x0c\x28\xd8\x75\x79\x06\x62\xa3\x9b\x08\x24\x4e\x44\x32\x70\x9a\xcf\x10\x78\xee\xf0\x15\x03\x11\xbd\x2f\x54\x50\x48\x8c\x5b\x90\xb9\xfb\x8a\x84\x05\xb3\x27\xbf\xd7\xf9\x72\x02\xd2\xf9\xbe\xa8\x8e\x2a\xf9\x4d\xa0\xa9\xeb\xb5\x54\xeb\x12\x02\xf0\x54\x53\x72\x74\x99\xb5\x3e\x15\x64\x55\x35\x97\xb6\x6f\x0e\x03\xdc\xad\xef\x43\x1f\xdd\x40\x26\x70\x46\xd5\x31\x52\xff\x99\x21\xa0\xda\xbe\xc5\xe0\x87\xef\x96\x88\x15\xc0\x4a\xa8\x30\x17\x4f\xca\xc0\x0a\x48\xe9\x3b\xcb\x77\xc9\xef\x29\x81\x5a\x2f\x54\x5a\x45\x78\xaa\x00\x57\x09\x08\x8d\x10\x05\x0d\x80\xe3\x81\x67\xbb\x1f\xb6\x24\x03\x32\x44\x84\x0c\x48\x1e\x7b\x0a\xe8\xf4\xbd\x71\x58\x2f\x2f\x04\x70\x8a\x81\xdf\x84\xf8\x8b\x2b\xfb\xae\xd6\xff\x2b\xb6\xd1\x27\x08\x66\x15\x11\xc0\x4c\xfa\xc5\xc6\xd1\x3f\x8d\x80\x9f\xd3\x1e\x1d\x3a\x5e\x4c\x0f\xe8\xdf\x19\x7a\xaa\xc3\xa0\x1f\xb0\xf7\x1b\xeb\x9b\xeb\x7a\xfd\x80\x93\x56\x47\x56\x5f\xfb\x8b\x2b\x3f\xeb\x3e\xac\x9d\xe8\x04\x94\xcc\x77\x53\x7e\x1a\x73\x0d\x70\xed\x6b\x4b\x0f\xd3\xb3\x69\x80\xec\xce\x6e\x4a\xa9\xb2\xf5\x80\x4b\xfa\x9e\x6a\xbd\xe4\x3a\x40\x5b\xfb\x7e\xf9\xc9\xb6\x07\x80\xeb\x35\x67\x0e\x0e\x5f\x0b\x24\x53\x66\xce\x31\x24\xcb\xb2\xe7\xad\x03\x14\x72\xf8\x75\xab\x6e\xd3\x45\x32\xca\xfc\x2a\x98\x26\x78\x9b\x00\x0f\x1b\x0b\x6f\x9d\xdc\xcc\x06\x18\x6b\xaf\x66\xbd\xef\x80\x1f\x15\x72\x63\xd3\xb9\xd3\x06\x02\x00\xdd\xee\x79\xf3\xef\x78\x11\x0f\x58\x1b\xd3\x74\xbe\xd9\xf5\x3b\x81\x64\xc6\xf3\xf4\x6b\x64\x99\x81\x02\xee\xe5\xe5\xe3\x3b\x90\x0f\x90\x96\x8d\xe1\xc8\x8d\x79\x19\xc0\xc3\x4e\xae\x91\xef\x82\x6a\x00\xe9\x72\x66\x76\xbe\x38\x40\x03\xf8\x41\x66\xa4\xed\xa2\x69\x3f\x81\xeb\xe4\x4f\x3e\x76\xa3\x91\x00\x7c\xb3\xfd\x42\xc4\x47\xa5\xdd\x54\x68\xab\xec\xfe\x3a\x48\xd3\x4e\x42\xaf\x1b\x3a\xb5\x65\x9e\xb9\x80\x5b\x0f\x65\x6a\x71\x70\x74\x11\xc8\x5e\x21\x56\x1c\xda\x33\x42\x60\x6d\x05\xb3\x53\x78\x44\x26\x81\x97\x04\x44\xb2\x34\xbb\x82\x80\x02\xd3\x74\x66\xe3\xb0\x1e\x01\xc0\xbd\x7a\xf2\xbd\x4f\xca\xae\x02\x26\x9d\xdc\xea\x6f\x77\xb0\x97\xc0\x9a\x7b\x7a\x05\xaa\x35\x4b\x04\xce\xbe\xf7\xba\xbb\x4a\x82\x19\x50\x2b\x35\x48\x97\x45\x7d\x13\x15\x7c\x43\xcc\x4f\xa7\x9f\x60\x02\x0c\x5f\xaf\x6a\xf8\x69\x38\x0a\xf0\xd1\xab\x28\xe3\x4b\x7e\xb9\x2b\x61\xe1\xad\x5f\xd7\x03\x86\x6c\x32\xa5\xc8\xaf\x59\xcf\xaa\xd4\x72\x68\x25\x64\xf7\x30\x24\xd7\xc4\x9a\x91\x71\xcf\xaf\xf8\x3a\x35\xf9\x3d\x80\xbb\x77\xf6\x7d\xb0\xb0\x5e\x4b\x85\xea\xe1\x82\x96\x74\xc1\x78\x32\xde\x56\x65\xcc\x17\xdb\xa6\x03\xb8\x1c\xf9\xed\x1b\x3f\xbb\x14\x15\xb8\x60\x7d\x0c\x28\xf3\x51\x81\x71\xbe\xe0\xbe\x67\x30\x19\xf0\x45\xcc\x9b\x2f\xff\x70\xa9\xff\xf5\xb4\xd7\x5f\x44\x18\x0f\x5d\x0e\x6a\x6f\x24\x50\x95\xf9\xc3\x85\x9d\x02\x72\x80\xc7\x5e\x6c\x56\xdd\xf7\x46\x6d\x25\x70\x9b\xdd\xff\xb5\x53\xe2\x03\x09\x47\x19\x1e\x16\x36\x65\x8e\x13\xf8\x52\xfc\x87\x4d\x78\xa7\x1a\x50\xb0\x65\x3e\xfa\x68\x9e\x46\x21\x19\x83\x76\x0e\xbc\x98\xe0\xd0\x25\x23\x6b\xf3\x2a\x8b\x45\xfa\xab\x64\x5c\x67\x62\x9e\xa2\x7f\x2c\x0e\xb0\x4c\xc8\x23\xc9\xfe\x43\x22\xa0\x8e\xb9\x97\x3e\x9b\xc1\x32\x81\xe2\x1b\x3a\x6a\xe5\x86\x75\x80\x82\x92\x38\x43\xcd\x3d\xd2\x3c\x80\x36\xfe\x55\xc3\x4a\x5b\x1b\x01\x8d\x94\x19\x4e\xeb\xc5\x37\x00\x36\x35\xee\x0f\x70\x9e\x75\x25\xcf\x72\x7c\x70\x54\x93\x70\x04\x74\xa7\xed\x92\x75\x4d\x2b\x03\x5c\x5d\x57\xcf\xfd\x0f\x07\xa2\x2a\xcf\xff\xfc\xe8\x4e\x85\x5b\xcb\xa9\x3f\xe8\x78\x05\x00\x79\x9c\x72\x4b\x94\x38\xce\x02\xea\xde\xe1\xba\x64\xf9\x2a\x07\x90\xf6\x46\xde\x66\xab\xff\x01\x64\xbb\x4d\x4f\xc4\xd8\x03\x2a\xbd\x88\xdd\xb4\xae\x84\x09\xf0\xf9\xdd\xb1\x2b\x21\xcb\x64\xc0\xca\x72\xad\xcd\x9e\x34\x0d\x80\xf2\x21\xfb\xf7\x26\x65\x1d\xa3\x42\xfc\xf9\xad\x43\x4a\xbd\x45\x04\xde\x79\x2f\xcf\x17\xe9\xb2\x05\x90\xeb\x6c\xc7\xea\x77\x17\x78\x00\x97\xe9\xf8\xd9\xe5\x9f\xdc\x07\x7c\x31\x65\x1b\x78\x90\xb7\x11\xf0\xed\x6c\xd1\x47\xda\x3c\x5b\xc0\xcd\xac\xf4\xf9\x42\x7f\x9f\x7e\x5f\xf5\x6e\x3e\x78\xd6\x9b\x44\x85\xd6\x80\x87\xc2\x0e\xc5\xfb\x01\x5d\xfe\x98\x0e\xff\x7b\x02\x34\x85\xef\x18\x11\xd5\xd7\xa2\x42\x14\xf1\xfa\xe3\xa7\x65\x3a\x40\xef\x3d\x3b\x05\x05\xcf\x36\x02\x9e\x7e\x29\x95\x1b\x7a\x63\x0d\xa0\xe3\xbd\x06\x19\xf7\xc9\x4a\x32\x66\xe1\x4b\x66\xb3\xfb\x06\x80\x06\x4f\x2d\x3f\x0e\xea\x0e\x12\xc8\x98\x2b\xc2\x6d\xa3\x1e\x02\x58\xbe\x9b\x21\xcc\x25\xd6\x98\x0a\x8f\x42\x35\xbf\x4e\x8f\x91\x01\x93\xbf\x29\xd0\x2f\x5d\x6a\x06\xec\x39\x46\x1f\x58\xac\xdb\x00\x48\xe7\xfc\x26\xb5\xdc\xc5\x8c\x8c\x55\x06\x5f\xca\x7e\xb4\x92\xa8\xae\x68\x65\xc6\xc5\x5d\xc5\x69\x01\x37\x09\xfa\x76\x8b\x27\xdd\xa4\xc2\xe6\x22\x5d\x8f\xc8\xb2\x55\x80\x56\x15\xce\xcf\x44\x2a\x4a\x01\x55\x60\x8a\x36\x39\xaa\x01\xf0\xde\xba\xfc\xee\x2a\xf3\x87\x80\xab\xd9\x0c\xd9\x44\xfc\xd3\x00\xfd\x2e\x5b\x33\xb4\x6e\xb1\xa5\xc2\x9f\xc6\x2b\xc7\x2d\x7c\xe4\x01\xf9\x94\xf9\x18\xaf\x71\x30\x01\xaa\x54\xee\xe6\xcf\x1a\x1b\x26\x28\x60\x7a\x4c\x8e\xf3\x94\x92\x07\x0a\x24\x3e\xd2\x5f\x94\xb3\xd4\x02\x1c\x16\x3d\x73\x9d\x33\xcf\x10\xf0\x5a\xa0\xdb\xf9\x7b\x8b\xc6\x80\x7b\x27\x9c\x0b\x0f\xd0\x4b\x00\x76\xee\xb4\xb3\x1e\xff\x61\x46\x85\x10\x95\xa7\x1f\xda\x2d\x38\x00\xb7\x8a\xbc\x9b\xb5\xaa\xda\x07\xa8\x55\xc1\xd4\xf1\x23\xb6\x8b\xa0\xc0\xe3\xfc\x9d\x20\x2b\x42\x1b\xf0\x8e\xfa\x57\xeb\xcd\xbd\x8d\x80\x06\x8b\x75\x13\x17\x0f\x37\x00\x0a\x68\x0a\x4a\xe8\x32\x79\x91\xb1\x6f\xce\x6a\xbb\xe0\xfa\xe7\x04\xfe\x52\xce\x71\xaf\x92\xec\x02\xfc\xe2\x53\xc1\x76\x2d\xaa\x0b\xf0\xde\xfb\x58\xf9\xe1\x07\xa9\x64\xe4\xdc\x16\x90\x45\x3c\xa9\x05\x54\x9e\x7e\xe6\x12\xe2\xf1\x96\x84\x67\x85\x04\x5c\x3c\x0f\x2a\x03\x05\xde\x6c\x43\xae\x2a\x89\x5d\x24\x94\x31\xaf\x65\xb9\xaf\x5f\x0f\xd8\xb5\x4d\xd2\xcd\xa5\x65\x23\xe0\x88\xd0\x5b\x9e\x4a\x25\x6e\xc0\x53\xdb\x1a\xb2\xd8\x4f\x4e\x10\x28\xf3\xfc\x6a\x79\xb1\xf4\x06\x40\xf6\xdf\xd7\xa6\x6f\xaf\x3b\x0a\x48\x30\xd5\x74\xaa\x8d\x9c\x22\xa3\xb4\x7a\x1e\x5f\x98\x8c\x1d\x50\xd0\xd5\xfa\x78\xe8\x48\x28\x0f\xe0\xa3\xf8\xa3\x97\xf8\xf3\x8a\x00\x6f\x7f\x79\x7a\xc7\x4c\xc0\x0c\xf0\x6b\x61\x6e\xf6\xe7\x87\x04\x15\x04\x4d\x65\xd6\x0f\x26\xaf\x07\x2c\xea\xe3\xcd\x99\x5a\x23\x07\xf8\xe9\xa3\x7d\xec\x9c\xd8\x46\xc0\x0b\xfe\xcd\x38\xc9\x89\x04\x1e\x8f\xdf\x22\x2b\x37\xbf\x16\xb0\xfc\x61\x4b\xfb\x97\xd6\x6a\x32\x4a\x9c\xea\x6a\x6c\xb2\x16\x00\xbc\x7e\x61\xee\x57\x99\xbc\x08\x20\xf7\xdd\xb4\x21\xdb\x7a\x6e\xc0\x3d\x22\xc6\xd5\xcf\x8e\xa9\x02\xea\x9f\x29\x1a\xf8\x76\x3a\x88\x8c\x0d\x0e\xcc\x5c\xf2\x13\x2c\x80\x27\xce\xf5\xcd\xca\xcd\xcb\x51\x41\x3c\xf4\x52\xc0\xb0\x0b\x01\xd8\x36\xef\x50\x22\xa6\x3f\x4d\x60\x20\x7b\x51\xf0\x6e\x1b\x5d\x40\xae\x34\x7e\x9b\xc3\x89\x3b\x00\x07\x7a\x2f\x67\xdd\x35\x17\x03\xa4\x7f\x7e\x50\xf7\x9c\x91\x14\xa0\x11\xa7\x97\x9f\x6a\x94\x32\xa0\xb0\xf9\x85\xf6\xa4\x23\x32\x80\xf8\x28\xd5\xea\xd4\xc8\x19\x40\xd9\xee\xb0\x5e\x3d\x4f\x7e\x2a\x84\xd3\xea\xb3\x06\xcc\xbd\x22\x70\x93\x7b\x8f\x87\x6d\xc9\x06\xc0\x99\x1b\x85\x2a\xd2\x55\xa2\x54\xd0\x9b\x3c\xd1\x1c\x6b\xd9\x49\x35\xe3\x5f\xeb\xfa\x44\x90\x59\x89\x0a\x53\x2a\x64\xb1\x9f\x73\x5b\x01\x6b\x5a\xe5\xe6\x82\x7f\xf3\x03\xca\xad\x5b\xf6\x1b\x58\xa2\x01\x6c\x9a\x2d\x5a\x1a\x7f\xcb\x41\x05\xe7\x7d\xc1\xc5\x07\xb7\xbd\x24\xd0\xf8\x0c\x43\xe2\x06\x2d\x6b\xc0\x7b\x56\xc9\x39\x82\x5e\xdf\x08\xb4\xb5\xeb\xd1\xf1\x5c\x3d\x41\x60\xed\xbd\x91\x51\xfb\x64\x0e\xc0\xbc\xab\x06\x24\x87\x99\x22\xc0\x43\xb3\xaa\x6b\xf5\x37\x5a\x03\xee\x10\xae\xdc\xef\x16\xd7\x07\xc8\x6b\xf8\xf6\xa2\x88\x55\x25\xe0\x0d\xe3\xfd\x6b\x13\xb4\x5c\x01\xfb\xba\xb2\x04\x44\xd2\x36\x03\x66\x0c\x9e\xfd\xf1\x48\x22\x84\x0a\x4d\x32\xd2\xa2\x56\x4e\x47\x00\x99\x61\xed\xe4\x50\xaa\x3e\x60\xc1\x72\xb0\xbd\x3c\xff\x61\xc0\xd2\x13\x47\x98\xc6\x0c\x58\x00\xb5\xa3\x6c\x1b\xef\xfe\x58\x05\xa8\x91\x51\x1d\xc1\x91\xb1\x0a\x30\x4c\x30\x60\x4e\xd7\x88\x01\xf0\xde\xa1\x6c\xd6\x37\xee\xba\x80\xa7\x6a\x7e\xc6\xff\xba\xf4\x1c\x70\xba\x34\xb8\xde\x9e\xec\x08\xf8\x5b\xa4\x48\x30\xf0\xd3\x0c\x81\xcb\xcf\xfc\xd4\x95\xcd\x17\x09\x64\x1e\x91\xfe\xf1\xf8\x1e\x37\x50\x10\xb3\xd5\xdc\xa2\xd0\xa1\x9e\xc0\x45\xc5\x26\x6f\x93\x3f\xda\x40\x81\xe9\x1a\xc2\xf8\x70\xc1\x07\x02\xbf\xdb\x8f\xef\xba\xf9\x8e\x0f\xf0\xa7\xfd\x35\xf7\x99\x1f\xf3\x04\xb6\x3f\xda\xb5\xf9\x48\xee\x57\x02\x43\xbd\xe6\x68\x8f\x9c\x18\x23\x50\xf9\x96\x9a\x03\x83\x76\x29\x60\x82\x7c\x5b\x8a\xc1\x5c\x30\xe0\x21\xba\x7a\xd7\x6a\x17\x41\xc0\xbe\x58\x0b\xab\x23\x4f\x99\x01\xe9\x5d\x6e\x47\xa8\x3e\x92\x02\x6c\x95\x12\x30\xfd\xbd\x29\x8b\x8c\xa3\x7e\x5d\x88\xfa\x7d\x04\x7e\xa0\xff\xdc\xa8\xf1\xf8\x27\x81\x06\x23\xd2\x36\x31\x8e\x53\x54\x90\xeb\xda\x58\xe2\x6e\xfd\x8b\xc0\x9a\xb7\x06\x8b\xc7\xf2\x24\x00\x4b\x87\xbb\x8e\x06\xd4\xad\x02\x54\x4b\x12\xfa\x42\xf4\x29\x03\x16\xcd\xe8\xfb\x67\xe6\x6b\x00\x32\x1b\xd8\x2c\x7c\x5f\x52\x03\xe4\x29\xbe\xa2\x43\x6b\x2b\x0f\xb8\x6b\x63\x1c\xeb\xc8\x2a\x00\x4c\xfc\x3e\x0c\x2e\x52\x02\x80\xf9\x4b\x61\x66\x74\x6f\xdf\x10\x98\xd4\x2b\xfa\x27\xfd\x3a\x3b\x50\xe1\xda\x6b\xa6\x49\xe2\x0d\x09\x2b\xec\xf2\x49\x96\x1d\x96\x80\x65\x29\x8f\x2e\xae\x6e\xe5\x00\x8c\x34\xb5\x49\xf8\xa4\x73\x88\x0a\x5a\x27\x3b\xa4\x13\x66\x0e\x02\xd6\xba\x8a\x88\x8b\x32\x09\x02\x5e\x7a\xa3\xdc\x61\xdb\x88\x04\xd6\xad\xbb\xdf\xfd\xaa\xef\x29\x60\x62\xe2\xe9\xd7\x3d\x9a\x02\x30\xab\xa9\x9c\xac\xb9\xc8\x0b\xc8\x39\x83\xa2\x69\xce\xbb\x00\x6f\x49\x3b\x58\x7d\x4a\x0f\xa7\x42\x8e\xe0\xf2\xb3\x80\x8e\x2b\x80\x3a\x4c\xdc\x49\x0b\x47\x64\x01\xe7\x02\x27\x18\xc6\x18\x59\x00\x05\x54\x5d\xe2\x98\x6b\x3f\x91\x90\xd6\xec\x5c\xbc\x50\x0c\x3d\x50\x90\xb7\xbf\x61\xfa\xae\xd3\x2e\xc0\xa3\xc9\x05\x0e\x52\x06\xe1\x80\xab\xba\xcf\xea\xbf\x4e\x5a\x43\x05\x3a\xde\x13\x7e\xf2\x6a\x3c\x80\xc1\xf6\x26\xd5\xf5\xc3\xd2\x80\x7e\x15\x73\xd2\xe2\x61\x56\x54\x38\xdd\x7f\xeb\x70\x49\x07\x0f\xe0\x9f\xe8\xf1\xca\xf5\x57\x1e\x11\xb8\x53\xf8\xd3\xbc\xa7\x74\x15\xe0\xb7\x92\x9c\x73\x76\xc5\x15\x80\x37\x74\x76\x88\xf0\xb9\x55\x00\x46\x4a\x9f\x55\xa7\xd1\x49\x02\x8c\x3c\x24\x39\x51\x78\x28\x0f\x50\xa2\x26\xb8\x89\xdc\x79\x9b\x8c\x77\x03\xa4\x2b\x1d\x24\xfe\xae\x7c\x79\x26\xdc\x2d\x57\x2c\x01\x2b\xf9\x03\x78\x4a\x79\x9b\x01\x0b\xbd\x1b\x9d\x94\xf4\x0a\x01\x6d\x4d\x3c\x0b\x6f\xb2\xdc\x20\xe3\xc1\xe7\x47\x7d\x8d\xb3\xdc\x01\x4b\xb4\xa4\x17\x68\x4b\xab\x00\x53\xce\x0a\xe2\xd3\x8b\x35\x80\x5b\xb8\x0e\x59\xdd\x63\xbb\x0d\x28\x29\xfd\x79\x9a\x8b\x73\x86\xc0\x80\xf6\xaa\x09\x6d\x9b\xe3\x40\xc1\xe1\xab\x4f\x23\x3d\xd2\x44\x00\x77\x0a\x3d\x16\x98\xbc\xfd\x93\xc0\x90\xe1\xe4\x7d\x7b\x5e\x16\x02\x9e\x10\x93\x5a\xe8\x36\xd9\x0f\x68\xcb\xc7\xdf\xb0\x55\xd6\x0e\x50\xcb\xfb\x71\xa7\x7d\xc5\x1d\xc0\x33\xcc\x6b\xfa\xb4\x1f\xd5\x12\x14\xec\xda\xa5\x58\xaa\xe7\x91\x0c\x14\xdc\xcd\xbc\x16\x76\x96\x74\x87\xc0\x8b\xfd\x17\x96\xca\x2f\x2d\x12\x68\xca\x77\x48\x24\x2a\x52\x06\x90\xbb\xcd\x4a\x6a\x60\xf9\x0c\x19\xb9\xfc\x78\x06\x2a\xf3\x6c\x80\x82\x27\x03\x3f\xa3\xdc\x2a\x77\x02\xae\x16\x18\xd0\x09\xe3\x41\x02\x8b\x87\xf7\xd3\xf5\x4d\x6c\x07\x0a\x58\x03\x6f\x55\xd3\x0f\xb2\x51\xc1\xdb\x6c\xba\x5f\x82\x5d\x80\x0a\x3b\xb5\x0d\x7e\xb5\x48\x88\x50\xc1\x62\x5b\x5d\xb8\x5c\x4c\x1f\x81\x3d\x1b\xcc\x46\x06\x79\xd5\x01\x23\x56\x27\xca\x58\x88\x6c\x02\x7c\x6e\x17\x2c\xe6\x70\xc6\x10\x50\xf8\x60\xfb\x9b\xf8\x07\xa3\x04\x05\x36\x51\xb7\x4f\x79\xce\x8a\x02\x05\x52\xb1\xf4\x0f\xeb\x62\xdf\x93\xb0\x3f\xfb\x65\xe7\x78\xae\x2d\x60\x3c\xf7\x8e\x1d\xf9\xea\xe6\x80\x16\xf4\x4b\x37\xdc\x06\x0d\x01\x1f\xbf\x78\xf8\x4d\x67\x8e\x01\xb0\x79\x9a\x4e\x5a\xdf\x39\x80\x8c\x5d\x8d\x34\xaa\x21\x4e\x37\x01\xdd\x16\x33\x3a\x5f\x29\xdf\x04\x74\x0f\xca\xea\x8c\xdf\xff\xf7\x29\xc1\xc5\x52\xfc\x0a\xe5\x01\xe3\xbc\x9e\xc7\x4f\x5c\x3b\x04\x98\x97\x3c\x8c\xfc\x2d\x34\xfa\x38\xd0\x3c\xc5\xce\xb6\x83\xa6\x01\x3b\x43\x62\x3b\xcd\x99\x69\x1a\x30\xc7\x90\xf3\xe4\x86\x8a\x72\x32\xe6\xf4\x9d\x2d\xd1\xe5\xff\x4c\xc6\xad\x7e\x4b\x2e\xec\xaa\x7f\xc8\xe8\xe4\x42\x52\x28\xbf\xdb\x02\x78\x5b\x71\xaf\xc7\xf5\x67\xa1\x64\x14\xd8\xf3\x73\xb7\xe4\xda\x1f\x64\xbc\xdb\xf2\x53\xd3\x54\xef\x09\x19\x5d\xec\xef\x1f\x61\xe0\xea\x27\xe3\x54\x88\xca\xb9\x6b\xd3\xdf\x00\xd7\xa7\x9c\x55\x56\x97\x6b\x27\xff\x9f\x00\x00\x00\xff\xff\x78\x54\xd2\x13\xa9\x88\x14\x00") + +func modelMaxentWeightsGobBytes() ([]byte, error) { + return bindataRead( + _modelMaxentWeightsGob, + "model/Maxent/weights.gob", + ) +} + +func modelMaxentWeightsGob() (*asset, error) { + bytes, err := modelMaxentWeightsGobBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "model/Maxent/weights.gob", size: 1345705, mode: os.FileMode(420), modTime: time.Unix(1531158553, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _modelMaxentWordsGob = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2c\x58\x4f\xd6\xdc\x38\x6e\xef\xfe\x44\x52\x55\xee\x4e\x56\xb9\x54\xb6\xb9\x01\x44\x42\x12\x5a\x24\x41\x83\x60\xc9\x9a\x5d\xe6\x5c\x39\xdb\x4c\x1e\xf8\xf5\xc6\xcf\x65\xd7\x2b\x91\xc0\xef\xaf\xfe\xfc\xf7\xff\x7e\xfd\xfe\xf5\xef\x7f\xfe\xf6\xfb\x9f\xbf\xfd\xf6\xaf\xff\xfa\xbf\x7f\xff\xf3\xb7\x7f\x2d\xff\xe3\xb8\x61\xf5\xfd\x84\x82\xeb\x06\x19\x6a\xc4\x57\xa2\xae\xf6\x17\xb7\x53\x3f\x9d\x0a\x3c\x5f\x2c\xfe\x83\xd2\xd1\x65\xe6\xcb\xeb\x4d\x5d\x5f\x8a\x10\x4f\xaa\x87\xc3\x0f\x56\x77\x82\xe2\xd2\x58\x5d\xc6\x5d\xdd\xc9\x19\x17\x8a\xb8\x74\xfc\xe5\x32\xc2\xee\x05\x21\x3d\xa1\xab\x70\x3d\x9c\x0a\x62\x68\x63\xcb\x14\x43\x03\x89\x98\x43\x01\xb9\x50\x17\xaa\x97\xab\x08\xe2\x2a\xc6\xcb\x27\x01\xaa\xef\x8a\x11\x7b\x07\x79\xde\x30\x94\x0b\x28\xc5\x05\xc4\x1e\xc2\xd7\x8f\x3e\x8e\x03\xbb\x12\xd7\x85\xf7\xfd\x1d\xb9\x26\xb2\x4f\x7f\xda\x2d\x84\xb6\x31\xff\x0b\xea\xe3\x3b\x67\x4a\x2f\xaa\x51\x10\x3a\xbe\x1b\x67\x52\x8a\x90\x5f\xd0\x9a\xf0\x07\x72\xd8\x84\x8e\x53\xc3\x83\x39\xf3\x1d\x70\xdf\x31\xaa\x3b\xe8\x83\x6b\x1c\x22\x58\x75\x8d\xa3\x9f\xc4\xd5\x77\xa5\x78\x7d\x9d\xe8\x7b\x63\xae\x4b\x1b\x1a\x76\x21\xac\xc9\x1d\x82\x8f\xdb\x20\x5e\x3e\x9e\xd8\xd5\xf5\xca\xf7\xda\x55\x50\xe3\xf9\x3a\xb9\x37\x52\xc8\xee\x04\x92\x00\x51\xb8\x77\x77\xb2\xd4\xa5\xd1\xf1\xbe\x2a\xdf\x19\xd3\x81\xa1\x31\x75\xae\xee\xa2\x9a\xdc\x36\xa4\xda\x08\x93\x13\xce\xd9\x37\xe8\x8a\xeb\x49\x5d\x59\x9e\xff\x14\x6c\x82\x1d\xab\x82\xd2\x07\xbd\x9e\xa3\x6c\xcb\xe8\xb8\x62\x06\x3b\xa3\x87\x1b\x2e\x74\x27\x0a\x2e\x37\xea\xba\x53\xb4\x79\xb8\x0c\xf6\xcb\x76\x23\xc1\x63\x64\x90\x65\x1b\xea\xb7\x0c\x09\x03\xd4\x7e\xa3\xf8\x7e\x23\xea\x6b\x1b\x9d\x2a\xf6\xee\x0a\x73\xf5\x7c\x57\x94\x57\x1f\xd2\x84\x3a\xae\x27\xd4\xc3\x00\x70\x33\x67\xb7\xb3\x14\xaf\x06\x88\xd0\x58\x14\xc5\xa5\xd1\xd5\xed\x9c\x53\xa8\x60\x4f\x0d\x1f\xec\x1d\xb3\xb3\x2b\xba\xc6\x2c\x6b\x8f\x84\x35\xa2\x47\x10\x3d\xfd\x31\x28\xa1\xeb\x5c\x8f\xb5\x40\x85\x03\xc5\x16\x7e\xb2\x90\x3e\xa1\x3f\x5d\xb1\xfc\x80\xf4\xd7\xe8\x5a\xb0\x6a\xd8\x30\x13\xee\x6b\x13\x56\xec\x1a\x12\x2a\x50\xf6\xdb\x90\xae\xbe\xa0\x4d\xb9\x8f\x78\xae\x9b\xb0\x9e\x68\x80\xba\xbb\xdb\x99\x53\x88\x76\x6e\x1b\x0a\xa8\x57\x12\x4c\xfe\xb6\x01\xbd\x1f\xec\x8a\x92\xe0\xf1\xd0\x5a\x46\x77\x93\xa0\xeb\xb0\x63\x40\xbb\x27\xae\x91\x4b\x83\xfa\xfc\x88\x5c\x2b\xce\x41\xfa\x02\x1a\x4f\xd7\x19\x9a\x9f\x1b\xf1\xb0\xf1\x50\x6f\x4f\x44\xb7\x19\x59\x6e\x1e\x35\xf9\x1d\x72\xc7\x70\x42\x29\x28\xab\x60\x44\x6a\x6a\xc4\x91\x45\x19\x9d\x9e\x50\x5d\xa1\x8a\x3e\x33\x77\x74\x2a\x03\x17\xa8\xea\x04\x28\xbf\xa9\xf6\x21\x93\x99\xbb\xe0\xcf\x81\x55\xdd\x96\xf9\x76\x07\x83\x86\x04\x05\x0e\xf4\xf7\x49\x19\x83\x60\x64\x49\x61\x23\x55\x14\x0f\xbb\xfd\x19\x87\x7c\xd0\xf7\x8b\x44\xd7\x6e\xf4\x89\xe7\x02\x39\xbb\x1b\xfa\x19\x20\x17\xee\xfa\xc5\xbb\xaf\x13\xfa\x37\x55\x45\x09\x05\x0b\xcb\xe3\x32\xc7\xcb\x9d\x74\x9c\x2f\xfc\xf5\x3d\xb4\x90\xf0\x30\xee\x1e\xc2\xb7\x9e\x7e\x83\x4e\x35\x6c\xd0\x2f\xd4\x90\xe9\x63\xcb\xdf\xa1\x50\x7e\xfc\xcf\x41\xf1\x7a\xc5\x13\x8b\x71\xcc\x17\xae\xf8\xf8\xde\x20\xa2\x91\x67\xdf\x43\x8f\xa7\xc1\x26\x1a\x3e\x32\xa9\x66\x0c\x2c\xf3\x19\x85\x52\xca\xe8\x3b\x0f\x7b\x84\x8c\x7e\xae\x91\xab\x0a\x67\x23\xd2\xdc\x5d\x05\xca\x7f\xd8\x3a\x50\x27\xdb\xc3\x9e\x79\x82\x56\x41\xe6\x2d\x12\xdf\xef\xae\xa0\x68\x50\xf9\x83\xb7\x8e\xf2\x99\x20\x34\x2a\x2b\x50\x75\x91\x41\xfd\x4e\xbf\x30\xb9\x46\x0d\x43\x27\xdb\xbe\xeb\x58\x93\x6f\xc2\x1d\x97\x8c\x87\xbf\x41\x51\x96\x0d\x0e\xb7\x43\x44\x97\xa9\xeb\x1b\xca\xe8\xf3\x77\x43\x57\xd2\x78\xbe\xbb\xca\x88\x3a\x04\x5d\xa1\x7c\xf9\x8d\x41\x92\x23\xe1\xfa\xd5\xd9\x65\x1e\x69\xa9\x6c\x72\x35\x24\xf4\x9f\x03\x04\xdd\x87\xf0\xf6\x1d\x6b\x47\xd7\x95\x9b\x01\x40\xdd\x0e\x52\xdc\x06\x39\xbf\x31\x8d\x38\x4f\xeb\x77\x19\xa4\xcb\x0d\xe2\xf6\x91\xb3\x4d\x55\x31\x24\x9b\x81\x78\xdb\x44\x75\x9d\x77\x75\x0a\xf9\x0a\x4d\x78\x27\xfd\xa2\xdd\xed\xc2\xc5\xdd\x54\x0f\x3f\x15\xcd\x6d\xa0\xe7\x8f\x83\x3f\x28\xd5\xce\xfd\x3b\xfc\xa0\x6a\x87\xb6\x0f\x36\xb3\xd2\x5e\x0d\x04\x72\xc6\xbc\x26\xea\x87\x11\xf7\xb2\x33\x6f\x24\xc9\x60\xbf\xb3\xe8\x72\xe1\xf3\x4e\xf4\xb7\xda\xba\xd3\x2e\x79\x53\xb2\x7d\x22\x14\x67\x24\x5c\x04\xd4\x65\x50\x34\x29\x35\x96\x77\xc8\xea\xc4\x74\x70\x33\xc5\x29\x70\xe1\x7a\x60\x45\x81\x1c\xa0\x52\x81\xfc\x6a\xe7\xd3\x27\x44\x1a\x34\x14\x8f\x22\x2c\x5f\xca\x6b\x05\x1d\x02\x79\x3d\x41\x36\x1e\xe2\x4e\xcc\xed\x9d\xb0\x61\x4d\x36\xfa\x93\x4d\xa4\xdd\x36\xf2\x16\x22\x49\xcc\x46\xcf\x51\xd5\x60\x4b\x17\xae\xb7\x90\x52\x3d\x56\x2a\x6d\xe4\x8e\xee\x41\x90\x10\xb9\x35\x14\xa7\x27\xf5\xb5\xd1\x5c\x99\xff\x30\x45\x5c\x3b\x47\x42\x7d\x7c\x3f\x39\x5e\x86\x56\x3d\x9d\x30\x24\x77\x90\xe4\xf5\x44\xc8\x7a\x3e\xa1\xb1\x82\xf2\x12\xe5\x59\x14\x7e\xf9\x7e\x22\x36\xd7\xe9\x1f\xe8\xfa\x4d\xc5\xed\x66\x5c\x1b\xb3\xba\x4e\xf9\x5a\x37\x8c\x30\x3a\x86\xc8\xa5\x70\x0d\xd4\x4d\x75\x5f\x19\xea\x31\xc0\x66\xc3\x05\x5d\xc2\x4d\x9d\x30\x17\xcf\x92\x50\xdc\x8d\x39\xbb\xbf\x46\x69\xae\xf3\x68\xbe\x67\xc4\xf6\x62\xa9\x60\xab\x72\x91\xcb\xb6\xee\x08\x53\xd0\x22\x88\xfa\xf9\x04\x6f\x42\xf2\xb8\x66\x4c\xd9\x50\x6f\xc4\xfa\xfa\x39\xbe\xf7\xe4\x95\x59\x4f\xaf\x42\xf1\x72\x62\x26\x8d\xc7\xb1\xfe\x1c\x90\x69\x5e\x17\xa4\x85\x08\xf5\x03\x7d\xd9\x20\xad\x93\x27\x55\xfd\x09\xad\x3d\xfe\xaf\x91\x0e\x5c\x1a\x55\x97\x10\x92\xaf\x4c\x1d\x83\x9e\xc8\xf2\x84\x03\x24\x61\x75\x94\x10\x5c\x03\xaa\x6b\x92\x29\x00\xae\x20\xa8\xb3\x03\x2f\xb6\x20\x63\xa4\x19\x44\xf2\xf9\x6f\x28\x76\x34\x6b\x84\xb6\x72\xa3\x4a\x5c\x5f\x82\xf9\x1b\xec\x5d\xb9\x62\xd8\xe7\x17\x97\x86\x75\x29\xd0\x96\x8e\x10\xe4\x7c\xf4\x2c\x0b\xd4\xb4\x00\x89\xc9\x35\x66\x07\x5b\x46\xa7\x54\xd0\x6d\xa4\xb8\x46\x9c\xbc\xfe\x02\x75\x37\x75\xf4\xc9\xc6\xe4\xff\xc2\x1b\xb3\x49\x7d\x72\xe6\x88\xbe\x4c\x51\xe9\xcd\x8c\x6e\x13\xfb\x8a\xeb\x40\x79\xc9\xd4\xdc\xc6\x15\x1d\xd7\xfc\x84\x4e\xa5\x65\x5c\x9b\xd0\xc7\x26\x56\x51\xdd\xc6\xc9\xf6\x7f\xdb\x92\x2e\xea\x7d\xe9\xd7\xb3\x16\x44\x03\x99\xcf\x54\x48\x43\x3c\x11\x8d\xd0\x74\x98\xba\xd8\xb9\xf2\xc0\xb5\x20\xf4\x21\xb8\xc8\xd8\x5c\xcf\xd4\x96\x0e\xc9\x45\x96\x2b\x24\x81\x7b\xee\xf1\x42\x9f\xf1\x83\xd9\x75\xcc\xfb\xa2\x54\x7d\x3c\x8d\xd0\xdb\x50\xe5\xfa\xc2\x8c\xd1\xf6\x17\x76\x32\xde\xdb\x8e\x88\x47\xf7\xcd\x98\xb6\xea\x29\x3c\x8e\xd3\xdd\x66\x82\x37\xda\xec\xd6\x06\xcf\xa4\xf6\x2e\xb6\x86\x13\xd4\x70\x2d\xea\x20\x52\x72\x20\xf1\x74\xa7\x41\x51\x10\xbe\x5d\xac\x17\xca\xb8\x42\x9c\x0c\xfa\x81\xbf\x1a\xca\x34\xe6\xe5\x40\x7d\x83\x2a\xd6\x99\xa2\xf6\xfc\xf8\x2d\xdb\x2e\x93\x60\xef\x7e\x27\xcc\xc9\xe8\x8f\xd3\xfe\x4d\x81\x66\x6e\xb1\x14\xe0\x55\x20\xa1\x6b\xa6\x5a\x16\x10\xd5\x75\xc4\xe2\xa3\x89\xd0\xd2\x11\x7d\x19\x9d\xe2\x22\xf0\xf8\x4d\x60\xc6\xa0\x86\x8b\x72\x7b\x51\xb5\xe0\x20\x8f\xd7\x19\x75\x6e\xcb\x3a\x19\xfd\x86\x22\x8f\xbb\x59\x4a\xe8\x8d\xeb\x81\xef\x0d\x61\x28\xed\x23\x87\xc2\xf5\xc2\xe7\x0b\xba\xbb\x11\x2d\x36\x5a\x8c\xdc\x33\xe8\x12\xf9\x76\x85\xba\x06\x1b\x13\x68\x88\x9c\x79\x4c\xe9\x04\xf5\x15\xe5\x63\xa6\x09\x9d\xab\xbf\xed\x69\x01\x8a\x8d\xc0\x81\x94\x67\x29\x50\xfd\xc9\xa3\xe3\x6b\x94\x4d\x30\x67\x58\x76\x16\xb3\x84\x78\xfa\x3d\x33\x8b\xed\x31\xb9\xae\xd8\xde\x54\x3f\xdf\x53\x5a\xcb\x8c\xc5\xf8\x4e\xb4\xef\x38\x53\x23\x1c\x60\x7a\xeb\xff\xc2\x9c\x9f\xaf\x83\xc3\x36\xe2\x85\xea\x2c\xf3\x9a\x88\xe4\xdd\x5d\x14\x2f\xdf\xc4\xa4\x28\xd3\x26\x20\x8f\xff\x76\xba\xab\xe2\x74\x77\xb5\x83\x1e\x82\xba\xf4\x61\xc4\x78\x7c\x2f\x98\xf3\xfa\x21\xce\x53\xc5\x4f\x83\x74\x1f\x16\x30\x5c\x64\xbe\x5e\x8d\xfb\xf4\xc6\xb5\x0d\x69\x6c\xac\x33\x2b\xb2\x69\x5f\x18\x2e\x34\xc7\x7d\x25\xfa\x50\x27\xae\xef\x44\x7d\xae\xe6\x09\xca\xf5\x18\xe8\xe7\x99\xbd\xf2\x88\xe7\xab\x09\x6f\x93\x6d\x49\xb8\xb9\xc8\xed\x09\x19\x2d\x62\x2c\x49\x9e\xe5\x18\xf5\x95\x11\xa4\x1a\xf9\x2b\x62\x5a\xee\x29\x95\x99\xfa\x19\xf6\x6f\xad\xba\x21\x5f\xcb\x69\x7a\xcd\xa0\x0b\xe5\xbc\xdc\xf0\xb8\x0b\xb1\x19\x4e\xa8\xba\x32\xe2\x19\x5a\x36\x24\xaf\x37\x4c\xe9\x36\x03\x4b\x6f\xfc\xd5\xa0\xce\x23\x9a\x8c\x5a\xb0\x31\x5e\xce\xcc\xfb\x52\x2e\x2c\xc2\xb7\x5d\xfe\x42\x37\x2a\xe9\xba\xb3\xdc\x20\x29\x60\xb5\xdf\x7a\xa9\xd8\x02\xa5\xfb\xca\x16\x31\x77\xa3\x87\x0d\x42\x4f\x1f\x85\x0a\x06\xaa\xdd\x52\xbe\x1d\xc2\x08\x15\xf1\x0f\x41\xc3\x57\x27\xbb\x70\x87\x9a\x42\x47\x6b\x15\xab\xf1\xa0\x34\x7d\x25\x8c\x73\x66\x6b\xfe\x16\xe2\xb5\x80\x08\x61\xf2\xdf\x39\xb3\x23\x26\x93\x4b\x79\x6d\x83\x72\xb2\x8b\x28\xe4\xec\x3f\x90\x87\x65\x4a\x3d\xcd\x62\xad\x82\x18\x42\x0f\xd7\x46\x69\x5f\xdb\xe3\x77\xe1\x3a\xf1\x99\x41\xdc\x5f\x4c\xf5\x3f\x20\x7d\x50\x94\xbe\xb3\x86\xdb\xf9\xce\x5f\x54\x97\xca\xf7\xb2\x9b\xc8\x59\x88\xb3\x36\xb0\x16\x9e\xb3\x0f\x9b\xf0\x85\xd5\x32\x78\xbc\xdc\x66\x46\xa2\x27\x56\x33\xd0\xc2\xf5\xf1\x57\xa5\x1d\x5f\xca\x07\xce\x73\xee\x90\xf3\xba\x23\x66\x13\xb0\x26\x34\xe3\x8c\x20\xea\x92\xe0\x71\x27\x7c\x30\x4c\x21\xd0\x37\x15\x0b\xf4\xe6\x0a\x37\x17\xa8\x46\x25\xd3\xd3\x6a\x98\xea\x51\xf0\x7e\x59\x12\xcb\xa8\xe8\xa3\xa5\xb5\x57\xb4\x81\x58\x2a\xed\x85\x2f\xd3\xe8\x9c\x7d\x34\x88\xd8\x84\xab\x5a\x64\xb7\x46\xf7\x35\x9a\x87\x7a\x64\x7c\x5b\xaa\xeb\xf6\x90\x57\x57\x8e\x17\xd5\xe3\x8b\xeb\x62\x6e\x7a\x1b\x56\x36\x4c\x5e\x0d\x80\x4b\x1c\xb6\xe1\x09\xad\xd7\x64\x2a\x50\x0d\x85\x0d\xe6\xef\x3e\xb6\xef\xde\x1a\xba\x5d\xe7\x78\xf5\x48\xbd\xb3\xf4\xd5\x82\xa0\xe9\x17\x3e\xe8\x4f\x96\x8e\xeb\xc6\x64\xf7\x76\x2d\xc3\xe3\x0e\xa1\x66\x1e\xac\x2e\xf1\x5d\x0d\xed\x76\x6d\x8b\xf9\xa5\xc1\x54\xb4\xdf\xff\x7b\x49\x7c\xac\x86\x0c\x03\x4b\x04\x49\x5f\x89\x57\x1b\x83\x0d\xbe\xb2\x14\xab\x8f\x43\x67\x82\x3c\x87\x81\x24\x53\x04\x9b\x88\xc1\x70\xb9\x4f\x76\x05\x7a\x5f\xf1\x17\xd8\xa8\x5c\xb7\x98\xb1\x09\xdf\xf5\xab\xf2\x12\x47\x0b\x85\xea\x50\x74\x1d\xc1\xa2\xf4\xcf\x41\x29\xf4\x62\xde\xbd\x60\x4d\xe1\x1c\x85\x87\xfc\x30\x9a\x8e\xde\x67\x32\xcc\x50\x30\x6c\xb8\xb3\xa0\x33\xea\x5a\x42\x35\x1d\x20\xb1\x4c\x47\x39\x87\x5e\x11\x2d\x9b\x98\x0f\xef\x82\xb8\xce\xfa\xd0\xcd\xa9\x86\x58\x0d\x88\xba\x80\x94\x97\xce\x4c\x15\x9f\x65\x43\xb4\x8a\xa4\x6f\x9b\xc0\x77\x67\x13\x34\x3a\xbd\xc1\xc2\xe6\xcc\xbc\x65\xc2\xdc\xd2\x79\x4d\xef\x8e\x51\x50\x41\x1e\x57\x59\x2d\x09\xda\xd6\x75\x56\x89\x96\x27\xc6\x95\xef\xba\x3c\xd8\xbd\xcc\x1e\x34\x6a\x42\x59\x1e\x1e\x3e\xf1\xd8\x74\xa9\x78\xbb\x4c\xbb\xae\x36\x59\x82\xec\x33\x98\x99\x25\x13\x57\x61\xde\x43\x85\xc9\xf0\x6f\x8f\xd3\x21\x35\xec\x88\x06\x85\x1d\x64\xa9\x43\xdd\xc1\x39\xb9\x7e\x32\x2e\x37\xfc\x72\xb6\x78\x9f\x48\xf4\xf1\x68\x21\x27\xd4\x51\x36\x94\xd0\xb0\x46\xca\xfe\x98\x62\xd3\x4f\x6a\xeb\x6e\xdc\xb2\x4d\x50\xc2\x77\x9f\x1e\x3b\x9b\x31\x9b\xb7\xc3\x13\xac\xe1\x9b\x46\xf3\x67\xc2\x1a\xb3\x2f\x56\x16\x5e\xb3\x21\xe1\x74\x14\x3b\x93\x3f\xb2\x7d\xa3\x31\x99\xc5\x99\xc9\x46\x10\xf4\x0f\x8f\x7a\xbc\x8a\xb5\x07\x82\x6c\xfb\xa9\xbe\x8f\x03\x64\xfd\xe6\xca\x2f\xb7\x93\x18\x41\x20\xe7\x57\x47\x4b\xdf\x8a\x8b\xf9\x50\x14\x88\x97\xdf\x49\xba\x06\xde\x77\x8a\x56\x44\xd4\x64\x9b\xea\xcb\xfa\x8f\x4d\xf7\x05\x72\xcc\xf4\xee\xb2\xb5\xc6\x9e\xb9\xe1\xab\x50\xa6\xb9\x8b\x0e\xc5\x72\xc1\x9c\xb5\xdb\x60\x7b\x9c\x39\x92\x79\x67\xb2\x27\xf6\x73\x91\x51\x9d\x99\x8d\xb7\x0c\x94\xfc\x69\x05\x7c\xd1\x13\x7d\xaf\xa6\xa4\xfd\xa2\xea\xd9\xec\xcb\x1d\xcc\x69\x61\xca\xef\x0d\x4f\xf8\x90\x25\xf1\x9b\xe5\x72\x37\x7c\xd0\xd8\x2b\x4f\x48\x38\x23\xcf\x74\x8f\x28\x98\x48\xdd\x7d\x52\x73\xc9\xe4\x3d\x9e\x76\xee\x09\x86\x21\x18\xe6\x8b\x93\xc7\xdf\xc2\xf5\x98\x8d\xd9\xe2\xb1\xa5\x9c\x3f\x12\x7e\xd7\x28\x23\xaa\x70\xf2\x47\x86\xde\x83\xf9\x49\x46\xf3\xb2\x29\xc8\x8b\x60\x5a\x32\xdc\xeb\x5f\x3c\xc4\x1a\xe5\x96\x21\x5e\x21\x42\x41\x81\xd5\xc4\x7e\xcb\xe8\x1b\x5a\xcd\xdc\x68\x2a\x3e\x4b\x44\xcb\xa4\x39\x7c\x83\xf5\x1d\xb9\xf6\x68\x01\xea\x07\xa8\xca\x77\x02\x7a\x41\xfa\x7e\x6d\xe4\x0f\xe1\xd1\xcc\xd2\xcb\x94\xac\xba\x7e\xaf\x59\x9d\xad\x79\xe1\x9c\xd6\xfb\xef\xfc\x2d\x23\xa3\x6b\x30\x4b\x71\x27\xc1\xb0\xb1\x79\xaa\xef\x11\x32\x7a\x21\xa3\xe4\x7c\x25\x11\x4f\xc2\xdd\x5b\x46\x56\x87\x16\x42\x0f\x0b\x3c\x6b\xc1\x64\xbd\xe7\x9d\x48\xfe\x7e\x99\x80\x20\xd9\x9c\xd3\x80\x17\xfa\x48\x09\x6b\xd8\x87\xb5\x94\xaf\x0d\x2d\x26\xd3\x61\x94\x2c\xa3\xc7\x8c\xee\xb6\xba\x98\x2c\x42\x18\x06\xea\xda\x47\x33\x09\x5d\x36\xd2\x65\xe3\x5f\xae\x50\x4d\x4e\xcd\xec\x77\x2c\x90\xf1\xc5\x6d\x46\x02\xf4\x50\xb8\x1e\x3f\xda\xa8\xd4\x4f\x03\xd1\x1b\xda\x04\xe0\xe8\x7f\x24\xcb\xa1\xdc\xec\x5f\x4d\xa6\xd3\x88\x68\xed\x47\x66\xb0\x87\x8c\x56\x9b\xb3\xbb\x4f\xac\x4b\x04\x75\xcd\xea\x76\xa7\xfc\x41\xf1\xdb\xac\x18\x99\xa7\x13\x41\x8d\x67\x00\x55\xc3\xf2\xcf\x41\xa8\x6f\xfc\x65\x05\xbb\x46\x9c\x26\x30\xd3\x48\xbc\x16\x1e\x1a\x1a\x4a\xe7\xba\x6c\xfc\xbc\x92\xb1\x5f\x51\xe6\x3b\x1a\xfb\xaa\xb5\x7a\x0b\x02\xf8\x27\xcb\x01\x95\xfe\x31\x55\xe9\xff\x03\x00\x00\xff\xff\x90\x8c\x06\x79\xcc\x14\x00\x00") + +func modelMaxentWordsGobBytes() ([]byte, error) { + return bindataRead( + _modelMaxentWordsGob, + "model/Maxent/words.gob", + ) +} + +func modelMaxentWordsGob() (*asset, error) { + bytes, err := modelMaxentWordsGobBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "model/Maxent/words.gob", size: 5324, mode: os.FileMode(420), modTime: time.Unix(1531158553, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +// Asset loads and returns the asset for the given name. +// It returns an error if the asset could not be found or +// could not be loaded. +func Asset(name string) ([]byte, error) { + cannonicalName := strings.Replace(name, "\\", "/", -1) + if f, ok := _bindata[cannonicalName]; ok { + a, err := f() + if err != nil { + return nil, fmt.Errorf("Asset %s can't read by error: %v", name, err) + } + return a.bytes, nil + } + return nil, fmt.Errorf("Asset %s not found", name) +} + +// MustAsset is like Asset but panics when Asset would return an error. +// It simplifies safe initialization of global variables. +func MustAsset(name string) []byte { + a, err := Asset(name) + if err != nil { + panic("asset: Asset(" + name + "): " + err.Error()) + } + + return a +} + +// AssetInfo loads and returns the asset info for the given name. +// It returns an error if the asset could not be found or +// could not be loaded. +func AssetInfo(name string) (os.FileInfo, error) { + cannonicalName := strings.Replace(name, "\\", "/", -1) + if f, ok := _bindata[cannonicalName]; ok { + a, err := f() + if err != nil { + return nil, fmt.Errorf("AssetInfo %s can't read by error: %v", name, err) + } + return a.info, nil + } + return nil, fmt.Errorf("AssetInfo %s not found", name) +} + +// AssetNames returns the names of the assets. +func AssetNames() []string { + names := make([]string, 0, len(_bindata)) + for name := range _bindata { + names = append(names, name) + } + return names +} + +// _bindata is a table, holding each asset generator, mapped to its name. +var _bindata = map[string]func() (*asset, error){ + "model/AveragedPerceptron/classes.gob": modelAveragedperceptronClassesGob, + "model/AveragedPerceptron/tags.gob": modelAveragedperceptronTagsGob, + "model/AveragedPerceptron/weights.gob": modelAveragedperceptronWeightsGob, + "model/Maxent/labels.gob": modelMaxentLabelsGob, + "model/Maxent/mapping.gob": modelMaxentMappingGob, + "model/Maxent/weights.gob": modelMaxentWeightsGob, + "model/Maxent/words.gob": modelMaxentWordsGob, +} + +// AssetDir returns the file names below a certain +// directory embedded in the file by go-bindata. +// For example if you run go-bindata on data/... and data contains the +// following hierarchy: +// data/ +// foo.txt +// img/ +// a.png +// b.png +// then AssetDir("data") would return []string{"foo.txt", "img"} +// AssetDir("data/img") would return []string{"a.png", "b.png"} +// AssetDir("foo.txt") and AssetDir("notexist") would return an error +// AssetDir("") will return []string{"data"}. +func AssetDir(name string) ([]string, error) { + node := _bintree + if len(name) != 0 { + cannonicalName := strings.Replace(name, "\\", "/", -1) + pathList := strings.Split(cannonicalName, "/") + for _, p := range pathList { + node = node.Children[p] + if node == nil { + return nil, fmt.Errorf("Asset %s not found", name) + } + } + } + if node.Func != nil { + return nil, fmt.Errorf("Asset %s not found", name) + } + rv := make([]string, 0, len(node.Children)) + for childName := range node.Children { + rv = append(rv, childName) + } + return rv, nil +} + +type bintree struct { + Func func() (*asset, error) + Children map[string]*bintree +} + +var _bintree = &bintree{nil, map[string]*bintree{ + "model": {nil, map[string]*bintree{ + "AveragedPerceptron": {nil, map[string]*bintree{ + "classes.gob": {modelAveragedperceptronClassesGob, map[string]*bintree{}}, + "tags.gob": {modelAveragedperceptronTagsGob, map[string]*bintree{}}, + "weights.gob": {modelAveragedperceptronWeightsGob, map[string]*bintree{}}, + }}, + "Maxent": {nil, map[string]*bintree{ + "labels.gob": {modelMaxentLabelsGob, map[string]*bintree{}}, + "mapping.gob": {modelMaxentMappingGob, map[string]*bintree{}}, + "weights.gob": {modelMaxentWeightsGob, map[string]*bintree{}}, + "words.gob": {modelMaxentWordsGob, map[string]*bintree{}}, + }}, + }}, +}} + +// RestoreAsset restores an asset under the given directory +func RestoreAsset(dir, name string) error { + data, err := Asset(name) + if err != nil { + return err + } + info, err := AssetInfo(name) + if err != nil { + return err + } + err = os.MkdirAll(_filePath(dir, filepath.Dir(name)), os.FileMode(0755)) + if err != nil { + return err + } + err = ioutil.WriteFile(_filePath(dir, name), data, info.Mode()) + if err != nil { + return err + } + err = os.Chtimes(_filePath(dir, name), info.ModTime(), info.ModTime()) + if err != nil { + return err + } + return nil +} + +// RestoreAssets restores an asset under the given directory recursively +func RestoreAssets(dir, name string) error { + children, err := AssetDir(name) + // File + if err != nil { + return RestoreAsset(dir, name) + } + // Dir + for _, child := range children { + err = RestoreAssets(dir, filepath.Join(name, child)) + if err != nil { + return err + } + } + return nil +} + +func _filePath(dir, name string) string { + cannonicalName := strings.Replace(name, "\\", "/", -1) + return filepath.Join(append([]string{dir}, strings.Split(cannonicalName, "/")...)...) +} diff --git a/document.go b/document.go new file mode 100644 index 0000000..8e3ecbe --- /dev/null +++ b/document.go @@ -0,0 +1,126 @@ +package prose + +// A DocOpt represents a setting that changes the document creation process. +// +// For example, it might disable named-entity extraction: +// +// doc := prose.NewDocument("...", prose.WithExtraction(false)) +type DocOpt func(doc *Document, opts *DocOpts) + +// DocOpts controls the Document creation process: +type DocOpts struct { + Extract bool // If true, include named-entity extraction + Segment bool // If true, include segmentation + Tag bool // If true, include POS tagging + Tokenize bool // If true, include tokenization +} + +// WithTokenization can enable (the default) or disable tokenization. +func WithTokenization(include bool) DocOpt { + return func(doc *Document, opts *DocOpts) { + // Tagging and entity extraction both require tokenization. + opts.Tokenize = include + } +} + +// WithTagging can enable (the default) or disable POS tagging. +func WithTagging(include bool) DocOpt { + return func(doc *Document, opts *DocOpts) { + opts.Tag = include + } +} + +// WithSegmentation can enable (the default) or disable sentence segmentation. +func WithSegmentation(include bool) DocOpt { + return func(doc *Document, opts *DocOpts) { + opts.Segment = include + } +} + +// WithExtraction can enable (the default) or disable named-entity extraction. +func WithExtraction(include bool) DocOpt { + return func(doc *Document, opts *DocOpts) { + opts.Extract = include + } +} + +// UsingModel can enable (the default) or disable named-entity extraction. +func UsingModel(model *Model) DocOpt { + return func(doc *Document, opts *DocOpts) { + doc.Model = model + } +} + +// A Document represents a parsed body of text. +type Document struct { + Model *Model + Text string + + // TODO: Store offsets (begin, end) instead of `text` field. + entities []Entity + sentences []Sentence + tokens []*Token +} + +// Tokens returns `doc`'s tokens. +func (doc *Document) Tokens() []Token { + tokens := make([]Token, 0, len(doc.tokens)) + for _, tok := range doc.tokens { + tokens = append(tokens, *tok) + } + return tokens +} + +// Sentences returns `doc`'s sentences. +func (doc *Document) Sentences() []Sentence { + return doc.sentences +} + +// Entities returns `doc`'s entities. +func (doc *Document) Entities() []Entity { + return doc.entities +} + +var defaultOpts = DocOpts{ + Tokenize: true, + Segment: true, + Tag: true, + Extract: true, +} + +// NewDocument creates a Document according to the user-specified options. +// +// For example, +// +// doc := prose.NewDocument("...") +func NewDocument(text string, opts ...DocOpt) (*Document, error) { + var pipeError error + + doc := Document{Text: text} + base := defaultOpts + for _, applyOpt := range opts { + applyOpt(&doc, &base) + } + + if doc.Model == nil { + doc.Model = defaultModel(base.Tag, base.Extract) + } + + if base.Segment { + segmenter := newPunktSentenceTokenizer() + doc.sentences = segmenter.segment(text) + } + if base.Tokenize || base.Tag || base.Extract { + tokenizer := newIterTokenizer() + doc.tokens = append(doc.tokens, tokenizer.tokenize(text)...) + } + if base.Tag || base.Extract { + doc.tokens = doc.Model.tagger.tag(doc.tokens) + } + if base.Extract { + doc.tokens = doc.Model.extracter.classify(doc.tokens) + doc.entities = doc.Model.extracter.chunk(doc.tokens) + } + + return &doc, pipeError +} diff --git a/document_test.go b/document_test.go new file mode 100644 index 0000000..8f7816f --- /dev/null +++ b/document_test.go @@ -0,0 +1,17 @@ +package prose + +import ( + "path/filepath" + "testing" +) + +func BenchmarkDoc(b *testing.B) { + content := readDataFile(filepath.Join(testdata, "sherlock.txt")) + text := string(content) + for n := 0; n < b.N; n++ { + _, err := NewDocument(text) + if err != nil { + panic(err) + } + } +} diff --git a/extract.go b/extract.go new file mode 100644 index 0000000..1d7d3aa --- /dev/null +++ b/extract.go @@ -0,0 +1,540 @@ +package prose + +import ( + "encoding/gob" + "math" + "os" + "path/filepath" + "regexp" + "strconv" + "strings" + "unicode" + + mapset "github.com/deckarep/golang-set" + "gonum.org/v1/gonum/mat" +) + +var maxLogDiff = math.Log2(1e-30) + +type mappedProbDist struct { + dict map[string]float64 + log bool +} + +func (m *mappedProbDist) prob(label string) float64 { + if p, found := m.dict[label]; found { + return math.Pow(2, p) + } + return 0.0 +} + +func newMappedProbDist(dict map[string]float64, normalize bool) *mappedProbDist { + if normalize { + values := make([]float64, len(dict)) + i := 0 + for _, v := range dict { + values[i] = v + i++ + } + sum := sumLogs(values) + if sum <= math.Inf(-1) { + p := math.Log2(1.0 / float64(len(dict))) + for k := range dict { + dict[k] = p + } + } else { + for k := range dict { + dict[k] -= sum + } + } + } + return &mappedProbDist{dict: dict, log: true} +} + +type encodedValue struct { + key int + value int +} + +type feature struct { + label string + features map[string]string +} + +type featureSet []feature + +var featureOrder = []string{ + "bias", "en-wordlist", "nextpos", "nextword", "pos", "pos+prevtag", + "prefix3", "prevpos", "prevtag", "prevword", "shape", "shape+prevtag", + "suffix3", "word", "word+nextpos", "word.lower", "wordlen"} + +// binaryMaxentClassifier is a feature encoding that generates vectors +// containing binary joint-features of the form: +// +// | joint_feat(fs, l) = { 1 if (fs[fname] == fval) and (l == label) +// | { +// | { 0 otherwise +// +// where `fname` is the name of an input-feature, `fval` is a value for that +// input-feature, and `label` is a label. +// +// See https://www.nltk.org/_modules/nltk/classify/maxent.html for more +// information. +type binaryMaxentClassifier struct { + cardinality int + labels []string + mapping map[string]int + weights []float64 +} + +// newMaxentClassifier creates a new binaryMaxentClassifier from the provided +// input values. +func newMaxentClassifier( + weights []float64, + mapping map[string]int, + labels []string) *binaryMaxentClassifier { + + set := mapset.NewSet() + for label := range mapping { + set.Add(strings.Split(label, "-")[0]) + } + + return &binaryMaxentClassifier{ + set.Cardinality() + 1, + labels, + mapping, + weights} +} + +// marshal saves the model to disk. +func (m *binaryMaxentClassifier) marshal(path string) error { + folder := filepath.Join(path, "Maxent") + err := os.Mkdir(folder, os.ModePerm) + for i, entry := range []string{"labels", "mapping", "weights"} { + component, _ := os.Create(filepath.Join(folder, entry+".gob")) + encoder := gob.NewEncoder(component) + if i == 0 { + checkError(encoder.Encode(m.labels)) + } else if i == 1 { + checkError(encoder.Encode(m.mapping)) + } else { + checkError(encoder.Encode(m.weights)) + } + } + return err +} + +// entityExtracter is a maximum entropy classifier. +// +// See https://www.nltk.org/_modules/nltk/classify/maxent.html for more +// information. +type entityExtracter struct { + model *binaryMaxentClassifier +} + +// newEntityExtracter creates a new entityExtracter using the default model. +func newEntityExtracter() *entityExtracter { + var mapping map[string]int + var weights []float64 + var labels []string + + dec := getAsset("Maxent", "mapping.gob") + checkError(dec.Decode(&mapping)) + + dec = getAsset("Maxent", "weights.gob") + checkError(dec.Decode(&weights)) + + dec = getAsset("Maxent", "labels.gob") + checkError(dec.Decode(&labels)) + + return &entityExtracter{model: newMaxentClassifier(weights, mapping, labels)} +} + +// newTrainedEntityExtracter creates a new EntityExtracter using the given +// model. +func newTrainedEntityExtracter(model *binaryMaxentClassifier) *entityExtracter { + return &entityExtracter{model: model} +} + +// chunk finds named-entity "chunks" from the given, pre-labeled tokens. +func (e *entityExtracter) chunk(tokens []*Token) []Entity { + entities := []Entity{} + end := "" + + parts := []*Token{} + idx := 0 + + for _, tok := range tokens { + label := tok.Label + if (label != "O" && label != end) || + (idx > 0 && tok.Tag == parts[idx-1].Tag) || + (idx > 0 && tok.Tag == "CD" && parts[idx-1].Label != "O") { + end = strings.Replace(label, "B", "I", 1) + parts = append(parts, tok) + idx++ + } else if (label == "O" && end != "") || label == end { + // We've found the end of an entity. + if label != "O" { + parts = append(parts, tok) + } + entities = append(entities, coalesce(parts)) + + end = "" + parts = []*Token{} + idx = 0 + } + } + + return entities +} + +func (m *binaryMaxentClassifier) encode(features map[string]string, label string) []encodedValue { + encoding := []encodedValue{} + for _, key := range featureOrder { + val := features[key] + entry := strings.Join([]string{key, val, label}, "-") + if ret, found := m.mapping[entry]; found { + encoding = append(encoding, encodedValue{ + key: ret, + value: 1}) + } + } + return encoding +} + +func (m *binaryMaxentClassifier) encodeGIS(features map[string]string, label string) []encodedValue { + encoding := m.encode(features, label) + length := len(m.mapping) + + total := 0 + for _, v := range encoding { + total += v.value + } + encoding = append(encoding, encodedValue{ + key: length, + value: m.cardinality - total}) + + return encoding +} + +func adjustPos(text string, start, end int) (int, int) { + index, left, right := -1, 0, 0 + _ = strings.Map(func(r rune) rune { + index++ + if unicode.IsSpace(r) { + if index < start { + left++ + } + if index < end { + right++ + } + return -1 + } + return r + }, text) + return start - left, end - right +} + +func extractFeatures(tokens []*Token, history []string) []feature { + features := make([]feature, len(tokens)) + for i := range tokens { + features[i] = feature{ + label: history[i], + features: extract(i, tokens, history)} + } + return features +} + +func assignLabels(tokens []*Token, entity *EntityContext) []string { + history := make([]string, len(tokens)) + for i := range tokens { + history[i] = "O" + } + + if entity.Accept { + for _, span := range entity.Spans { + start, end := adjustPos(entity.Text, span.Start, span.End) + index := 0 + for i, tok := range tokens { + if index == start { + history[i] = "B-" + span.Label + } else if index > start && index < end { + history[i] = "I-" + span.Label + } + index += len(tok.Text) + } + } + } + + return history +} + +func makeCorpus(data []EntityContext, tagger *perceptronTagger) featureSet { + tokenizer := newIterTokenizer() + corpus := featureSet{} + for i := range data { + entry := &data[i] + tokens := tagger.tag(tokenizer.tokenize(entry.Text)) + history := assignLabels(tokens, entry) + for _, element := range extractFeatures(tokens, history) { + corpus = append(corpus, element) + } + } + return corpus +} + +func extracterFromData(data []EntityContext, tagger *perceptronTagger) *entityExtracter { + corpus := makeCorpus(data, tagger) + encoding := encode(corpus) + cInv := 1.0 / float64(encoding.cardinality) + + empfreq := empiricalCount(corpus, encoding) + rows, _ := empfreq.Dims() + + unattested := []int{} + for index := 0; index < rows; index++ { + if empfreq.At(index, 0) == 0.0 { + unattested = append(unattested, index) + } + empfreq.SetVec(index, math.Log2(empfreq.At(index, 0))) + } + + weights := make([]float64, rows) + for _, idx := range unattested { + weights[idx] = math.Inf(-1) + } + encoding.weights = weights + + classifier := newTrainedEntityExtracter(encoding) + for index := 0; index < 100; index++ { + est := estCount(classifier, corpus, encoding) + for _, idx := range unattested { + est.SetVec(idx, est.AtVec(idx)+1) + } + rows, _ := est.Dims() + for index := 0; index < rows; index++ { + est.SetVec(index, math.Log2(est.At(index, 0))) + } + weights = classifier.model.weights + + est.SubVec(empfreq, est) + est.ScaleVec(cInv, est) + + for index := 0; index < len(weights); index++ { + weights[index] += est.AtVec(index) + } + + classifier.model.weights = weights + } + + return classifier +} + +func estCount( + classifier *entityExtracter, + corpus featureSet, + encoder *binaryMaxentClassifier, +) *mat.VecDense { + count := mat.NewVecDense(len(encoder.mapping)+1, nil) + for _, entry := range corpus { + pdist := classifier.probClassify(entry.features) + for label := range pdist.dict { + prob := pdist.prob(label) + for _, enc := range encoder.encodeGIS(entry.features, label) { + out := count.AtVec(enc.key) + (prob * float64(enc.value)) + count.SetVec(enc.key, out) + } + } + } + return count +} + +func (e *entityExtracter) classify(tokens []*Token) []*Token { + length := len(tokens) + history := make([]string, 0, length) + for i := 0; i < length; i++ { + scores := make(map[string]float64) + features := extract(i, tokens, history) + for _, label := range e.model.labels { + total := 0.0 + for _, encoded := range e.model.encode(features, label) { + total += e.model.weights[encoded.key] * float64(encoded.value) + } + scores[label] = total + } + label := max(scores) + tokens[i].Label = label + history = append(history, simplePOS(label)) + } + return tokens +} + +func (e *entityExtracter) probClassify(features map[string]string) *mappedProbDist { + scores := make(map[string]float64) + for _, label := range e.model.labels { + vec := e.model.encodeGIS(features, label) + total := 0.0 + for _, entry := range vec { + total += e.model.weights[entry.key] * float64(entry.value) + } + scores[label] = total + } + + //&mappedProbDist{dict: scores, log: true} + return newMappedProbDist(scores, true) +} + +func parseEntities(ents []string) string { + if stringInSlice("B-PERSON", ents) && len(ents) == 2 { + // PERSON takes precedence because it's hard to identify. + return "PERSON" + } + return strings.Split(ents[0], "-")[1] +} + +func coalesce(parts []*Token) Entity { + length := len(parts) + labels := make([]string, length) + tokens := make([]string, length) + for i, tok := range parts { + tokens[i] = tok.Text + labels[i] = tok.Label + } + return Entity{ + Label: parseEntities(labels), + Text: strings.Join(tokens, " "), + } +} + +func extract(i int, ctx []*Token, history []string) map[string]string { + feats := make(map[string]string) + + word := ctx[i].Text + prevShape := "None" + + feats["bias"] = "True" + feats["word"] = word + feats["pos"] = ctx[i].Tag + feats["en-wordlist"] = isBasic(word) + feats["word.lower"] = strings.ToLower(word) + feats["suffix3"] = nSuffix(word, 3) + feats["prefix3"] = nPrefix(word, 3) + feats["shape"] = shape(word) + feats["wordlen"] = strconv.Itoa(len(word)) + + if i == 0 { + feats["prevtag"] = "None" + feats["prevword"], feats["prevpos"] = "None", "None" + } else if i == 1 { + feats["prevword"] = strings.ToLower(ctx[i-1].Text) + feats["prevpos"] = ctx[i-1].Tag + feats["prevtag"] = history[i-1] + } else { + feats["prevword"] = strings.ToLower(ctx[i-1].Text) + feats["prevpos"] = ctx[i-1].Tag + feats["prevtag"] = history[i-1] + prevShape = shape(ctx[i-1].Text) + } + + if i == len(ctx)-1 { + feats["nextword"], feats["nextpos"] = "None", "None" + } else { + feats["nextword"] = strings.ToLower(ctx[i+1].Text) + feats["nextpos"] = strings.ToLower(ctx[i+1].Tag) + } + + feats["word+nextpos"] = strings.Join( + []string{feats["word.lower"], feats["nextpos"]}, "+") + feats["pos+prevtag"] = strings.Join( + []string{feats["pos"], feats["prevtag"]}, "+") + feats["shape+prevtag"] = strings.Join( + []string{prevShape, feats["prevtag"]}, "+") + + return feats +} + +func shape(word string) string { + if isNumeric(word) { + return "number" + } else if match, _ := regexp.MatchString(`\W+$`, word); match { + return "punct" + } else if match, _ := regexp.MatchString(`\w+$`, word); match { + if strings.ToLower(word) == word { + return "downcase" + } else if strings.Title(word) == word { + return "upcase" + } else { + return "mixedcase" + } + } + return "other" +} + +func simplePOS(pos string) string { + if strings.HasPrefix(pos, "V") { + return "v" + } + return strings.Split(pos, "-")[0] +} + +func encode(corpus featureSet) *binaryMaxentClassifier { + mapping := make(map[string]int) // maps (fname-fval-label) -> fid + count := make(map[string]int) // maps (fname, fval) -> count + weights := []float64{} + + labels := []string{} + for _, entry := range corpus { + label := entry.label + if !stringInSlice(label, labels) { + labels = append(labels, label) + } + + for _, fname := range featureOrder { + fval := entry.features[fname] + key := strings.Join([]string{fname, fval}, "-") + if _, ok := count[key]; ok { + count[key]++ + } else { + count[key] = 1 + } + entry := strings.Join([]string{fname, fval, label}, "-") + if _, found := mapping[entry]; !found { + mapping[entry] = len(mapping) + } + + } + } + return newMaxentClassifier(weights, mapping, labels) +} + +func empiricalCount(corpus featureSet, encoding *binaryMaxentClassifier) *mat.VecDense { + count := mat.NewVecDense(len(encoding.mapping)+1, nil) + for _, entry := range corpus { + for _, encoded := range encoding.encodeGIS(entry.features, entry.label) { + idx := encoded.key + count.SetVec(idx, count.AtVec(idx)+float64(encoded.value)) + } + } + return count +} + +func addLogs(x, y float64) float64 { + if x < y+maxLogDiff { + return y + } else if y < x+maxLogDiff { + return x + } + base := math.Min(x, y) + return base + math.Log2(math.Pow(2, x-base)+math.Pow(2, y-base)) +} + +func sumLogs(logs []float64) float64 { + if len(logs) == 0 { + return math.Inf(-1) + } + sum := logs[0] + for _, log := range logs[1:] { + sum = addLogs(sum, log) + } + return sum +} diff --git a/extract_test.go b/extract_test.go new file mode 100644 index 0000000..7fb3681 --- /dev/null +++ b/extract_test.go @@ -0,0 +1,95 @@ +package prose + +import ( + "bytes" + "encoding/json" + "io" + "io/ioutil" + "math" + "path/filepath" + "reflect" + "testing" + + "github.com/stretchr/testify/assert" +) + +func makeNER(text string, model *Model) (*Document, error) { + return NewDocument(text, + WithSegmentation(false), + UsingModel(model)) +} + +type prodigyOuput struct { + Text string + Spans []LabeledEntity + Answer string +} + +func readProdigy(jsonLines []byte) []prodigyOuput { + dec := json.NewDecoder(bytes.NewReader(jsonLines)) + entries := []prodigyOuput{} + for { + ent := prodigyOuput{} + err := dec.Decode(&ent) + if err != nil { + if err == io.EOF { + break + } + panic(err) + } + entries = append(entries, ent) + } + return entries +} + +func split(data []prodigyOuput) ([]EntityContext, []prodigyOuput) { + cutoff := int(float64(len(data)) * 0.8) + + train, test := []EntityContext{}, []prodigyOuput{} + for i := range data { + if i < cutoff { + train = append(train, EntityContext{ + Text: data[i].Text, + Spans: data[i].Spans, + Accept: data[i].Answer == "accept"}) + } else { + test = append(test, data[i]) + } + } + + return train, test +} + +func TestSumLogs(t *testing.T) { + assert.Equal(t, 3.0, sumLogs([]float64{math.Log2(3), math.Log2(5)})) +} + +func TestNERProdigy(t *testing.T) { + data := filepath.Join(testdata, "reddit_product.jsonl") + + file, e := ioutil.ReadFile(data) + if e != nil { + panic(e) + } + + train, test := split(readProdigy(file)) + correct := 0.0 + + model := ModelFromData("PRODUCT", UsingEntities(train)) + for _, entry := range test { + doc, _ := makeNER(entry.Text, model) + ents := doc.Entities() + if entry.Answer != "accept" && len(ents) == 0 { + correct++ + } else { + expected := []string{} + for _, span := range entry.Spans { + expected = append(expected, entry.Text[span.Start:span.End]) + } + if reflect.DeepEqual(expected, ents) { + correct++ + } + } + } + assert.True(t, correct/float64(len(test)) >= 0.819444) // baseline +} diff --git a/go.mod b/go.mod index e9656be..88aa3c1 100644 --- a/go.mod +++ b/go.mod @@ -3,9 +3,12 @@ module github.com/jdkato/prose go 1.13 require ( + github.com/deckarep/golang-set v1.7.1 + github.com/mingrammer/commonregex v1.0.1 github.com/montanaflynn/stats v0.6.3 github.com/shogo82148/go-shuffle v0.0.0-20180218125048-27e6095f230d github.com/stretchr/testify v1.6.1 github.com/urfave/cli v1.22.4 + gonum.org/v1/gonum v0.7.0 gopkg.in/neurosnap/sentences.v1 v1.0.6 ) diff --git a/go.sum b/go.sum index 3e7c624..3353833 100644 --- a/go.sum +++ b/go.sum @@ -1,8 +1,18 @@ github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= +github.com/ajstarks/svgo v0.0.0-20180226025133-644b8db467af/go.mod h1:K08gAheRH3/J6wwsYMMT4xOr94bZjxIelGM0+d/wbFw= github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d h1:U+s90UTSYgptZMwQh2aRr3LuazLJIa+Pg3Kc1ylSYVY= github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/deckarep/golang-set v1.7.1 h1:SCQV0S6gTtp6itiFrTqI+pfmJ4LN85S1YzhDf9rTHJQ= +github.com/deckarep/golang-set v1.7.1/go.mod h1:93vsz/8Wt4joVM7c2AVqh+YRMiUSc14yDtF28KmMOgQ= +github.com/fogleman/gg v1.2.1-0.20190220221249-0403632d5b90/go.mod h1:R/bRT+9gY/C5z7JzPU0zXsXHKM4/ayA+zqcVNZzPa1k= +github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0/go.mod h1:E/TSTwGwJL78qG/PmXZO1EjYhfJinVAhrmmHX6Z8B9k= +github.com/jung-kurt/gofpdf v1.0.3-0.20190309125859-24315acbbda5/go.mod h1:7Id9E/uU8ce6rXgefFLlgrJj/GYY22cpxn+r32jIOes= +github.com/mingrammer/commonregex v1.0.1 h1:QY0Z1Bl80jw9M3+488HJXPWnZmvtu3UdvxyodP2FTyY= +github.com/mingrammer/commonregex v1.0.1/go.mod h1:/HNZq7qReKgXBxJxce5SOxf33y0il/ZqL4Kxgo2NLcA= github.com/montanaflynn/stats v0.6.3 h1:F8446DrvIF5V5smZfZ8K9nrmmix0AFgevPdLruGOmzk= github.com/montanaflynn/stats v0.6.3/go.mod h1:wL8QJuTMNUDYhXwkmfOly8iTdp5TEcJFWZD2D7SIkUc= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= @@ -14,13 +24,26 @@ github.com/shogo82148/go-shuffle v0.0.0-20180218125048-27e6095f230d/go.mod h1:2h github.com/shurcooL/sanitized_anchor_name v1.0.0 h1:PdmoCO6wvbs+7yrJyMORt4/BmY5IYyJwS/kOiWx8mHo= github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.6.1 h1:hDPOHmpOpP40lSULcqw7IrRb/u7w6RpDC9399XyoNd0= github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/urfave/cli v1.22.4 h1:u7tSpNPPswAFymm8IehJhy4uJMlUuU/GmqSkvJ1InXA= github.com/urfave/cli v1.22.4/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0= +golang.org/x/exp v0.0.0-20180321215751-8460e604b9de/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= +golang.org/x/exp v0.0.0-20180807140117-3d87b88a115f/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= +golang.org/x/exp v0.0.0-20190125153040-c74c464bbbf2/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= +golang.org/x/image v0.0.0-20180708004352-c73c2afc3b81/go.mod h1:ux5Hcp/YLpHSI86hEcLt0YII63i6oz57MZXIpbrjZUs= +golang.org/x/tools v0.0.0-20180525024113-a5b4c53f6e8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20190206041539-40960b6deb8e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +gonum.org/v1/gonum v0.0.0-20180816165407-929014505bf4/go.mod h1:Y+Yx5eoAFn32cQvJDxZx5Dpnq+c3wtXuadVZAcxbbBo= +gonum.org/v1/gonum v0.7.0 h1:Hdks0L0hgznZLG9nzXb8vZ0rRvqNvAcgAp84y7Mwkgw= +gonum.org/v1/gonum v0.7.0/go.mod h1:L02bwd0sqlsvRv41G7wGWFCsVNZFv/k1xzGIxeANHGM= +gonum.org/v1/netlib v0.0.0-20190313105609-8cb42192e0e0/go.mod h1:wa6Ws7BG/ESfp6dHfk7C6KdzKA7wR7u/rKwOGE66zvw= +gonum.org/v1/plot v0.0.0-20190515093506-e2840ee46a6b/go.mod h1:Wt8AAjI+ypCyYX3nZBvf6cAIx93T+c/OS2HFAYskSZc= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/neurosnap/sentences.v1 v1.0.6 h1:v7ElyP020iEZQONyLld3fHILHWOPs+ntzuQTNPkul8E= gopkg.in/neurosnap/sentences.v1 v1.0.6/go.mod h1:YlK+SN+fLQZj+kY3r8DkGDhDr91+S3JmTb5LSxFRQo0= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c h1:dUUwHk2QECo/6vqA44rthZ8ie2QXMNeKRTHCNY2nXvo= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +rsc.io/pdf v0.1.1/go.mod h1:n8OzWcQ6Sp37PL01nO98y4iUCRdTGarVfzxY20ICaU4= diff --git a/internal/model/load.go b/internal/model/load.go deleted file mode 100644 index 69f9d3f..0000000 --- a/internal/model/load.go +++ /dev/null @@ -1,18 +0,0 @@ -/* -Package model contains internals used by prose/tag. -*/ -package model - -import ( - "bytes" - "encoding/gob" - - "github.com/jdkato/prose/internal/util" -) - -// GetAsset returns the named Asset. -func GetAsset(name string) *gob.Decoder { - b, err := Asset("internal/model/" + name) - util.CheckError(err) - return gob.NewDecoder(bytes.NewReader(b)) -} diff --git a/internal/model/model.go b/internal/model/model.go deleted file mode 100644 index 8f5e442..0000000 --- a/internal/model/model.go +++ /dev/null @@ -1,285 +0,0 @@ -// Code generated by go-bindata. -// sources: -// internal/model/classes.gob -// internal/model/tags.gob -// internal/model/weights.gob -// DO NOT EDIT! - -package model - -import ( - "bytes" - "compress/gzip" - "fmt" - "io" - "io/ioutil" - "os" - "path/filepath" - "strings" - "time" -) - -func bindataRead(data []byte, name string) ([]byte, error) { - gz, err := gzip.NewReader(bytes.NewBuffer(data)) - if err != nil { - return nil, fmt.Errorf("Read %q: %v", name, err) - } - - var buf bytes.Buffer - _, err = io.Copy(&buf, gz) - clErr := gz.Close() - - if err != nil { - return nil, fmt.Errorf("Read %q: %v", name, err) - } - if clErr != nil { - return nil, err - } - - return buf.Bytes(), nil -} - -type asset struct { - bytes []byte - info os.FileInfo -} - -type bindataFileInfo struct { - name string - size int64 - mode os.FileMode - modTime time.Time -} - -func (fi bindataFileInfo) Name() string { - return fi.name -} -func (fi bindataFileInfo) Size() int64 { - return fi.size -} -func (fi bindataFileInfo) Mode() os.FileMode { - return fi.mode -} -func (fi bindataFileInfo) ModTime() time.Time { - return fi.modTime -} -func (fi bindataFileInfo) IsDir() bool { - return false -} -func (fi bindataFileInfo) Sys() interface{} { - return nil -} - -var _internalModelClassesGob = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x04\xc0\xcd\x4d\xc4\x30\x10\x05\x60\xcf\x7b\x7b\xdc\x2e\x88\xb4\x20\x01\x05\x70\x9c\x98\x3f\x8b\x9d\x8c\xc6\xc6\x06\x4e\x69\x85\x94\x41\xb3\xe6\x3b\xcf\x5f\x08\xe6\x91\xe4\x9c\xd2\xfc\x9b\x47\x7a\xc0\xf3\xd7\xc9\xcc\x2b\x87\x2f\x68\x9b\x3c\xe1\x65\xb0\x94\x90\x85\x5d\x0d\xeb\x2a\x37\x34\x73\x76\xfd\x61\xd7\x4c\xdf\x2a\x42\xb1\x66\x98\xa1\x14\x86\x56\x5c\x33\xba\x62\xdf\xe5\x11\xe1\x72\x27\xf7\x72\xcb\x11\xca\xd0\xc0\xbb\x9d\x3c\x7c\x61\xfd\xbe\x22\x37\x76\x75\x7a\x6e\xf8\xa8\x2c\xa5\x72\xe4\x86\xcf\x37\x76\x7d\xc5\xe5\x42\xb3\x8a\xe1\xf4\xf0\xff\x00\x00\x00\xff\xff\x14\x43\xb9\x44\xa9\x00\x00\x00") - -func internalModelClassesGobBytes() ([]byte, error) { - return bindataRead( - _internalModelClassesGob, - "internal/model/classes.gob", - ) -} - -func internalModelClassesGob() (*asset, error) { - bytes, err := internalModelClassesGobBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "internal/model/classes.gob", size: 169, mode: os.FileMode(420), modTime: time.Unix(1494607416, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _internalModelTagsGob = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x7b\x5b\x77\x1b\xc9\x91\xa6\x51\x57\x00\xa4\xec\xfd\x0b\x7b\xa6\x77\xda\x3e\xc7\x92\x4d\xa9\xdb\x7d\xd9\x87\x5d\x02\x50\x4b\x84\x45\x08\x43\x52\xd2\x78\x8e\x1f\x3a\x51\x15\xa8\x4a\x31\x2b\xb3\x3a\x2f\x00\xd9\x7b\xf6\x69\xe7\x77\x8f\xf7\x44\x44\x26\xc4\x99\xa7\xa6\xd8\x04\x2a\x2f\x11\x5f\x7c\xdf\x17\x51\xbf\xfd\xc7\xff\x2b\x26\xd9\x3f\xfe\xfd\x37\x93\xf3\xc9\xf9\x6f\x7e\xf3\x1f\xff\x5b\xfd\xe3\xdf\x7f\xf3\x1f\xd5\xb3\x72\xec\x8d\x86\x6c\xb3\x29\x83\x96\x46\x67\x9b\x4d\x7d\xb4\xd2\x7b\xd0\xf9\xc7\xc5\x66\x26\x9a\x5f\x82\xb4\x52\x77\xf9\xc7\xc5\x9b\xe9\x42\x58\xaf\xc0\xfb\x7c\xb3\xd9\x9e\x89\xf6\x00\xd6\x4b\x07\xd6\xe5\x9b\xcd\x6d\xbe\x31\x3e\xbb\x59\x94\xb7\xa3\x90\x1a\xff\xa0\x74\xbd\x50\x2a\xbb\x5e\x65\xdf\x7e\x9b\x2d\x57\x85\x13\x0a\x9f\x93\xbd\xbc\xc8\x96\xab\xd2\x04\xdd\xe0\x3f\xa7\xef\xc4\xd1\x82\x6e\x00\x3f\x92\x6f\xdf\x2d\xf1\xbf\xc5\xe6\xc5\xfa\x05\xfe\x50\x75\xd6\x84\x91\xbf\x7f\x10\x8f\xd9\xf5\xaa\x3c\x9a\x41\xd0\x32\x1b\x33\x8c\x42\x3f\x66\x9b\x4d\xee\xc5\x03\xee\xc0\x1c\x35\x58\x7c\xc4\xcf\x3f\x67\x3f\xff\x5c\x0c\x42\xea\x6c\xbd\x9e\x09\xdc\x8d\xe7\xcd\xcd\x44\x67\x01\x06\xd0\x1e\xbf\xa2\x03\x0d\x5e\x36\xd9\x7a\x5d\x77\xe0\x7d\xdc\x66\x19\xb4\x97\x2a\xbb\xda\xd4\xa3\x35\x6d\x68\xf0\x4f\x8b\x6f\xff\xfe\xa7\xef\xb3\xe5\x2a\xbf\xb6\xb4\xb0\xac\x11\xd9\xf5\xaa\x1a\x4c\xfa\xaa\x6b\xf1\x70\x04\xa5\xf0\xff\x4d\x07\x73\x38\x3d\xe2\x20\x1b\x2f\x07\xda\xc1\x1c\x0e\x60\x1f\x7d\x2f\x75\x97\x6d\x36\xd5\x6b\xe7\x85\xa7\x6d\x17\x4e\x0c\x90\xad\xd7\xd5\x0e\x1e\x8d\x6e\xb3\xab\x4d\xf5\x4e\x1c\x9d\xa1\x63\x3c\xf3\x56\x68\x27\x9a\xb8\x81\xec\xe5\xcb\x6c\xb9\xaa\x1b\x13\xb4\xb7\xb8\xf9\x8a\xbe\x90\x1e\x50\xc3\x7e\x6f\xac\xa7\x9f\xa7\xa3\x71\xd2\xcb\x03\x7d\x6f\x23\x74\x43\x27\x93\x1b\xa9\xf0\x33\x4a\x1c\x1f\xf9\x17\xbd\x74\xc5\xf6\x66\xfb\x55\xd9\x09\xa9\xe9\x93\xd5\x6b\x0d\xb6\x7b\xa4\x85\x89\x9d\xc2\x2f\xa8\xef\x8c\x35\xda\x1b\xfc\xdd\x4c\x6a\x0f\xf6\x20\xe1\x88\xc7\xf2\xe1\xc5\x2d\x9f\xc7\xcb\x6f\xb2\xe5\x6a\x3a\x18\x0d\x5e\xd8\x47\xfc\x8c\xd9\xef\x65\x03\xbc\xb0\xd1\x9a\xce\x8a\x81\x1e\x6d\x9c\xe3\xdf\x56\x0e\x1a\x6f\x70\x15\xb3\x83\xb4\x3e\x08\xa5\x1e\xb3\x9b\x45\x2e\x3a\x0a\x8c\x26\x38\x6f\x06\x5a\x65\xdd\x82\x17\x52\xd1\xa7\xce\x5a\xe9\x9a\xe0\x9c\x34\xbc\xdc\x19\x3c\x34\x2a\x38\xde\xe9\x1c\x84\xf5\xfd\x2f\x41\xdc\xe3\x57\x54\xa3\x4d\x2b\xc8\x82\xcb\xb7\x37\xdb\xb9\xd4\x6d\x70\xde\xca\xb8\x82\x25\xe0\x66\x68\xab\xad\x0d\x78\x2d\xe5\x87\x78\xf9\x85\x92\x7b\xfc\x92\xfc\x28\xf0\x98\x67\xa3\x35\xa3\x71\x82\x17\x51\x8a\x1e\x44\x9b\xdd\x2c\xaa\x1d\x34\x62\x80\xfc\xe3\x62\x55\x0e\xe2\x9e\x56\x3b\x1d\xc5\x23\x5e\x3f\x3f\xe2\xda\xe8\x56\xd0\x69\xd6\xcb\x5e\x58\x45\x4f\xde\x96\x78\x52\x74\x7d\xce\x5b\xa3\xbb\x6c\xbd\x3e\x77\xbd\xb0\xd0\x1b\xd5\xc6\x8c\x3a\x83\x87\x51\x19\x2b\xe2\xcd\xe7\x17\x2f\xfe\x82\x57\x2f\xb4\xf1\x3d\xd8\x6c\x75\x47\x51\xe0\x00\x6f\xb4\x1c\xc4\x67\x63\xb3\xf5\xfa\x4c\xea\x03\x38\x7f\x7a\x7e\xae\x29\x2d\x2b\x67\x1a\x29\x14\x06\x03\xfc\x12\xa4\xe7\x47\x83\x96\xf4\xa1\x69\x2b\x6d\xba\x8b\x39\x86\xda\x41\xfa\x78\x44\x53\x0a\xda\x08\x11\x3b\xe1\xa0\x45\x5c\x38\xf3\x30\x8c\xc6\x0a\x2b\xe9\xca\xa6\x47\x61\xad\x88\x4f\x7c\xc6\x2b\x90\x5d\x5a\xf8\x04\x43\xa3\x3e\x08\x2b\x4d\x70\xf8\x34\x8b\x4b\xb0\xe0\xf2\x8f\x8b\x7f\xab\xa1\x31\xda\x0c\x94\xc6\x98\xcd\xab\xbb\xe9\x0e\x34\xec\x25\x7f\x59\x2d\xf6\x7b\x21\x23\xc2\x08\x8b\x07\xbd\xad\x1a\x0b\xad\xc4\xec\xca\x95\xc0\x28\xac\x95\x31\xf7\x31\x79\xe7\x1e\x14\x1c\xa4\xe3\x47\x9f\x35\x46\x3b\xd9\x42\x42\xb0\x99\x86\xa3\x1b\xc5\xc8\x30\xc1\xa1\x8b\x88\x02\x9a\x0e\x7c\x14\xd6\x6b\xb0\xae\x97\x23\x9e\xc4\xc1\x28\xe1\xa5\xe2\xd3\xca\xa4\xce\xae\x36\xcf\x06\xa1\xc3\x5e\x34\x3e\xd8\x74\x4b\x6e\x84\x26\xa8\xb4\xd9\x42\x0c\x12\x33\xb8\xf4\xe2\x9e\x31\x74\xba\x82\x06\x86\x1d\x87\x59\x75\x71\xf1\xf7\x3f\x5d\xe0\x3d\xce\x79\xe3\xd2\xf1\x46\x8b\xa3\x6c\x31\x82\x8b\x45\x70\x3d\xfe\xe5\x04\x61\x32\xbb\xc2\x87\x9e\x0b\xad\x09\x2f\x23\xa8\xcc\x5a\x68\xe4\x29\x01\x4a\xe7\x1f\x09\x59\xcb\xa5\x11\x8e\xb0\xb9\x6c\x40\x71\xa0\x16\xbe\x87\x47\x8c\xfc\xe9\x5d\x2f\x7c\xd3\xf3\x2a\xca\xad\xb0\x9e\x62\xb2\x92\xde\x81\xda\xe3\x5f\xd4\x0a\x44\x0a\xbd\x62\x69\x39\x66\xab\xbd\x09\xd6\xf7\xd9\x7a\x9d\xaf\xcc\x91\x7e\x73\x67\x1e\x8d\x17\x04\xd7\x6f\x3f\xac\x28\xb0\x5d\x68\x1a\x80\x36\xfb\xb8\x98\x9d\x76\x85\x07\xd8\x08\xdd\xca\x56\x78\x0e\xa5\x79\x7c\x00\x9f\xee\x74\x90\x5a\x3a\xcf\x19\xd3\xca\xd3\x95\x15\x8d\x70\xb8\x9b\xa2\x07\x0b\xd9\xcd\xa2\x76\x90\x02\xa7\xdc\x07\x86\x88\x69\x4c\x63\xbc\x97\xa9\xe8\x40\x37\x31\x5a\xcb\x9d\x11\xb6\xc5\x4f\x7b\x4b\x4f\x99\x71\x30\x1a\xde\x56\xf9\x57\x63\x81\x96\x5e\x7a\xf1\xc0\x1f\xf9\xdd\x1b\x30\xb6\x93\xe2\xf9\x56\x34\x72\x2f\x1b\xda\x23\x68\x17\x2c\x64\x1f\x17\xf9\x51\x60\x98\xae\xa6\xaf\x75\x07\xea\x9e\xe2\x64\x3b\xbd\x16\xfa\x20\x95\x62\xf0\xde\x03\x7f\x51\x31\x0a\x2a\x15\x15\xa3\x30\xdd\x93\x44\xac\x69\x62\x26\xb6\x04\x24\x53\xe7\x2d\xe8\xce\xf7\xb8\x4a\x6b\x0c\x82\x62\x89\xbf\xc2\x65\x57\x3a\xc5\x51\xe9\x42\x4c\x81\xac\x07\xba\x1e\x0b\xa3\x12\x0d\x2e\xaa\x1e\x84\x16\x1d\x9d\xdc\xf9\xb6\x97\x4a\xb4\xa0\xc6\x5e\xd2\xc6\x32\xe1\xb3\xab\x4d\xf6\x8a\xa2\xe7\x15\x96\xac\xe2\x6f\xc6\xde\xd3\xb2\xf7\xa2\x49\xd1\x3c\xdf\x09\x7d\x6f\xc3\xe8\x9b\x47\x7a\x98\x37\xcd\x3d\xfe\x70\x2d\x6c\x43\xe1\x57\x0a\xe7\x00\x37\x71\x26\xf5\xde\xd8\xe1\x14\xdf\xdf\x71\x21\xac\x1b\xb0\x3e\x16\x58\x0b\x58\x25\x23\x7b\x60\xc6\x80\xcb\x9c\x9f\x6a\x2d\x03\x75\xc2\x0c\xac\x0e\xd9\x2b\xe4\x04\xd5\x60\x9c\xa7\x1b\xfd\x9d\x85\xd1\x82\x03\xed\x05\x16\x2d\xbe\xad\xe0\x52\x52\xb7\x80\xa9\x19\xc3\xbf\x14\xe3\x48\x01\x5f\x5c\xfc\xfd\x4f\x88\x2d\xb3\x6b\x10\xfa\xd8\x4b\x85\xf1\x52\xb4\xb0\xa3\xbf\xda\x8b\x86\x21\x66\xde\x18\xbd\x07\x22\x19\x98\xc7\xcb\xaf\x26\x5f\x55\x2e\x0c\xb1\xb4\x34\xa0\xbd\x25\x64\x2c\xbc\x39\xd2\x16\xdf\xc9\x7b\xc8\xae\x30\x76\x5c\xb0\x82\x3f\x36\x37\x23\x30\x14\x73\x2c\x7f\x12\x0e\xeb\xae\xe7\x22\x3d\xa7\x5a\xfe\x65\xab\xf1\x70\x38\x58\x5b\x73\xd4\x3e\x58\xfc\xea\xf9\x17\x74\x46\xf8\xba\x5a\x5c\xd3\x59\xbf\x41\x96\x43\xb7\xf7\x8e\x20\x29\xdf\x49\xac\x08\xd3\xc6\x1c\xc0\x72\x39\xac\x1a\x33\x0c\x86\x8e\xbb\x85\x46\x49\x9d\xc8\xca\x3e\xe8\x36\x56\xff\x87\x31\x55\xff\x39\x20\x2a\xc9\x58\x51\x2b\xba\x5e\xfe\xa3\x81\xa0\x88\xcf\xb7\x49\xeb\x3d\xbb\x3d\x4a\xff\x2b\x58\x25\x74\x4b\x31\x8d\x45\x1a\x4f\xc2\xc9\x5f\x69\xf3\x1f\xb4\x3c\x80\x75\x92\x41\x63\x0e\x0a\x1a\x2c\x5b\x44\x9d\xf2\x9f\x80\x3e\x54\x7b\xa1\x12\x0a\x57\xbd\x38\xa4\x05\x2e\xb0\x2c\x32\x4c\xf8\xd0\xa6\xca\xbb\x16\x5d\x10\x0c\x89\x14\x3e\x18\x30\x33\xe7\x6d\x20\x68\xe5\xa3\xe2\x52\x4d\x77\x73\x2e\x75\x63\x41\x60\x40\xd0\x96\x66\x18\x2d\xb2\x8d\x24\xeb\x08\x70\xcf\x09\x54\xfa\xde\x38\xc8\x56\x77\x33\x27\x1f\x9e\x0f\x46\x13\x76\x4d\x77\x18\x4a\xc0\x7b\xda\x5b\x33\x20\x92\x13\x8f\xe1\x7c\xa3\x47\xd4\xd7\xb2\xe9\x05\x10\x85\x3b\xb3\xf0\xf4\xf2\x4b\xcc\x53\x5e\xf7\x5d\x6f\x06\x41\x25\x7c\x8e\x8c\x00\x19\x70\x4c\x7f\x6b\x1c\xf1\x80\xe2\x73\x60\x60\x62\xf6\x48\x51\x56\x05\xad\x38\xa8\x8a\xcd\x8b\xbf\x31\xb5\x5d\x83\x75\x40\xe7\x39\x45\x4a\xa3\x70\xdd\x1f\x17\xb3\xc6\x4a\x2f\x1b\xe9\x10\x17\xea\x65\x2f\x1b\xd1\x11\xef\x2a\xd6\xa6\xa7\x58\xcb\xb5\x39\xe2\xa5\x5a\xe8\x38\xe5\x2a\x27\xf6\x40\x59\x3d\x83\x07\x6f\x61\x00\x8e\xbb\x51\x78\x99\x6e\x78\x3e\x82\xc5\xeb\xe6\x60\xca\x2e\x5e\x21\x07\xef\xe4\x81\x4b\xd4\x99\xd4\x78\xf4\xa7\xf8\x9d\x9b\x91\xe9\x23\x7f\xff\x08\xd6\xd1\x4f\xcf\xae\x85\x73\xa2\xe9\x83\x03\xef\xf9\x10\x5a\xd8\x83\x6e\x53\xed\x2f\x1b\x62\x8c\x9b\xcd\x6c\x29\xec\x78\x22\x57\xd9\x4f\x04\x95\xb3\x05\x28\x75\x6b\x82\x27\x84\x29\x7e\x32\x96\xa3\xad\x11\x1c\x90\xd3\xc6\x60\x2e\x12\x8a\x96\x77\x60\x87\x54\xc2\x82\xc3\x42\x30\x82\xed\xc5\x48\x3f\x52\xc1\xa1\xeb\xac\x90\xda\x5b\x62\xb9\xae\xe9\x8d\x51\x91\xab\x9d\xea\xc9\xe4\x2a\x96\xbf\x60\x5d\x22\x62\x83\xb0\xf7\x10\x09\xc6\xce\x9a\xfb\x98\x10\xf5\x68\xc6\xa0\x04\x32\xa2\xfc\xe2\x05\x11\xda\xc4\xfa\xf0\xd0\x16\x8f\x78\x7f\xde\x98\x7b\xbc\xe6\xec\xdb\x3f\x23\x0c\xb6\x46\xa9\xb8\xfc\xec\x9a\x2e\xf6\xb7\x44\xd8\x31\x15\x4f\xcc\xed\xd1\x04\x5a\x04\x4a\x96\xc0\x25\xaf\x3c\x62\xa0\xe6\x9f\xb6\x5f\x55\x94\x16\x06\x43\x73\x94\x0a\x9f\x34\x5f\x0a\x25\xf7\xc6\x6a\x86\xf4\xfc\xd5\x9f\xf1\x51\x58\x5f\xe8\x68\xdf\x06\x6b\x65\x23\x34\x9d\x29\x7e\xe7\xe9\xde\xa6\xf8\x55\xe9\x1f\xf5\xde\x04\xdd\x72\x7d\xfd\x97\x00\x3b\x68\x0c\xa7\x21\x42\x7f\xaa\xf3\x47\xd0\x1e\x77\x13\xd9\x3a\x49\x82\x2b\xdd\x44\x19\x63\x7d\xc7\x01\x73\x26\x07\x3c\xd3\x44\x40\xf2\xbb\x1e\x73\xac\xfc\xf6\x8f\x7f\xa6\xa5\x4d\x47\x73\x04\xbb\x0f\x98\x46\x33\x66\x67\xb1\xe2\xce\x5a\xd3\x7c\x89\xab\x62\x67\x28\x4b\xeb\x7d\xc0\x2c\x8f\xcb\x14\x76\x48\x88\x84\x89\x1c\x0b\xb9\x70\xd2\x11\x87\x30\xc3\x20\x5d\x22\x07\x9f\xa4\xef\xb3\xab\xcd\x54\xe8\x93\x90\x9a\x3e\xc9\xe1\x6a\x27\xbc\xa7\x00\x9c\x8e\x72\x04\x25\xf5\x17\x1d\x40\xc4\x15\x43\xcc\x05\x86\xfe\x52\x23\xb7\xc5\x54\x6a\x7a\x23\x39\xd1\xd3\x97\x66\x62\x40\xaa\x59\x36\x48\x7f\x48\x76\x61\xc6\x64\x3b\x4c\xd1\x62\x11\x85\x1e\xaa\xd3\x23\x17\xf2\x8b\x1f\xbe\x47\x5d\x36\x73\xa3\xb9\x07\xc7\x0a\xf5\x8c\xff\x91\x04\xeb\x39\x96\x30\x89\x54\xd1\x52\x7e\x96\x3b\x63\x78\xb3\xd9\x9b\xd7\x54\x06\x46\x25\xe8\x78\xe7\x16\x3a\x64\x94\x86\x4a\xe5\xe4\xf7\x93\xdf\xd7\xa8\xba\xe3\x21\x4d\x8f\x20\xee\x23\x98\xd5\x7b\x2c\x43\x4c\x18\x2e\x07\xd4\x11\x57\x9b\x72\xa7\x44\x73\x8f\x80\xf6\xc6\xa8\x76\x10\x3a\xb2\x14\xa5\x48\xa5\xec\xa0\x13\x9a\xae\xfc\xb3\x91\x9a\xab\x6f\xd5\xf4\x09\xe9\x38\x64\xae\x36\x53\xc2\xf8\x18\xbf\xef\xee\x3e\x52\xfe\xa2\x5e\xb6\xb1\xa8\x9c\x47\x16\x7f\xba\xdc\xfa\x89\x74\xa9\x38\x2d\x30\x5a\xb7\x09\xa8\x69\x8b\xb7\x1e\x43\xfc\x66\x91\xaf\x58\x47\xd7\x66\x94\xd1\x77\xa8\x3e\x68\xe9\x1e\x1d\x87\xa8\xec\x3a\x70\x3e\x5f\xaf\x6f\x4b\x6f\x42\x47\x20\x2e\xbc\x37\x96\x55\x53\xdd\xc2\x21\x49\xbb\x92\x3c\x02\xfc\x02\x91\x40\xa1\x5e\xc9\x4e\x7a\x41\x97\x54\x7c\x0e\x0e\x15\x50\xf6\x96\x85\xea\xc5\x77\x08\x7d\x4b\xbc\x57\x8a\xf2\xd1\x28\x99\xe8\x63\xed\x06\xa1\x14\xd8\x7c\xbd\xbe\xc9\x56\xf4\xf7\xc5\xb5\x75\xf4\xc3\x4c\xd8\x9d\xf4\xb1\x1a\xcf\x7d\x0f\x83\x03\x85\x4c\x65\x7b\xb3\xad\x48\x33\x21\x08\x9d\x6d\x85\xd4\xf0\x09\x76\x91\xef\x97\x62\xef\xe9\x3c\x8b\x8d\x39\xd0\xf7\xcc\x29\x02\x95\xe7\xab\x2e\x8e\x1c\xd0\x95\x0e\x58\x97\x31\x6a\x40\x77\x52\x03\x49\x16\x3c\x7b\xc7\xf4\xaf\xb8\x05\xcd\xeb\x68\x25\xa6\x6a\x50\x1e\xe3\xfd\x27\x2b\x23\xa8\x55\x03\x58\xe6\x84\xf5\xe5\x49\x21\xce\xa3\x83\xc1\x27\x3c\x5f\xd2\x35\x2b\xc5\x40\x50\xb6\xe6\x57\xa0\xfb\xbd\xf2\x6c\x02\x14\x16\x38\x8d\xbc\x39\x22\x8f\xbe\xda\x54\xd7\x92\x0e\x04\x61\xe8\x9a\x0f\xa2\xf0\xbd\x74\xd9\xea\xae\xba\x15\xda\x05\xc9\x06\x86\xf4\xcc\xad\x0c\x2f\xc5\xb4\xc0\xfa\x23\xbf\x78\x41\x79\x91\xc4\x3c\x47\x30\x32\x3d\x1b\x59\x1e\xea\xf7\x5e\xe8\x2e\xca\xcd\xd1\xc2\x21\xd2\xfd\xfc\xe5\x8b\x6f\x23\x06\x7f\x86\x48\xa2\x4b\xa9\x5b\x20\xb3\xa7\x35\x91\x60\x14\x6f\x59\x28\x4c\x07\xd1\x89\x5f\x39\xe3\xa7\x70\xc0\x98\xe3\x90\x66\x16\xb0\xd9\x9c\x63\x95\x93\x3e\x9c\x48\xdc\x34\x89\x03\x3c\x9b\x1b\xe3\x7b\xd7\xf4\x52\xb5\x1c\x16\xee\x51\x29\x19\xb0\x0a\x9f\x07\x0d\xc3\xa8\xcc\x63\xf2\x74\xf6\xd0\x02\x53\xc6\x33\xa9\x51\xba\xb4\x21\xfa\x02\xc5\x2b\x66\xa4\x95\xd0\x51\x33\xd7\x0b\x68\x44\x70\x58\xfa\xa7\x91\x30\x10\xe3\x96\x43\xe4\x75\xb7\xde\x02\x50\x28\xd6\x3d\x88\x03\x0b\xea\xf2\x43\x4c\xc3\xfc\x82\x00\x76\xe6\x1f\x47\xd9\xc4\xcc\xcb\xee\x4c\x76\xf7\xbe\x18\x0d\x69\xf7\xc9\xff\x20\xde\x6e\x7c\x44\xf7\xd1\xca\x83\xf0\x18\x8b\xb3\x5b\x18\xfd\x49\x79\xce\x10\x0c\x9f\x4b\x0f\x03\xe6\xd2\xb2\xb7\x8f\x2e\x5e\x6c\x45\xc6\x03\x1f\xef\x20\xbb\xde\x67\xd7\xab\xb3\x01\x2c\x5e\x4b\x2b\x49\x8c\xd5\x37\xc8\x8d\xb8\x5c\xcf\x63\xf1\x65\xb8\xcf\x2e\xc8\xdc\x53\xe2\xc8\xb7\x39\x08\x0f\xc8\xd9\x22\xfa\x93\xaf\x10\xb1\xfb\xd1\x04\x4b\x61\x36\x8d\xd4\x0b\x3f\x5f\x12\x73\x26\x13\xcf\x18\xa4\xef\x9d\x38\x10\x8d\xaa\xdc\x89\xcd\x96\x66\xef\x41\x23\x6a\xac\x6d\x0c\x41\x1b\xc8\x97\x52\xc2\x76\xcc\x76\x28\x2d\x90\xe4\x63\x5a\x9c\x45\x00\x3d\x79\x44\xde\x82\x48\xac\xbb\xf8\x24\x18\xbe\x6b\x67\x82\x4d\x0e\x55\x2b\xf0\x42\x38\x2c\x76\xc2\xc1\x4e\x50\x29\x2e\xf6\x52\x0d\x84\xff\xa4\x57\xa4\x73\x21\x7e\xa0\x51\x27\x72\xc5\x96\x18\x24\x25\x7f\x03\x23\xb3\x78\x27\x1f\x10\x6b\xb0\xe8\xa5\xf2\x6c\x85\x87\x0e\x03\xa0\x58\x8b\x86\x54\x59\x26\x3d\xe6\xf7\x99\xb7\xa2\x95\xa7\x42\xf6\x0c\xf4\x41\x5a\xa3\x71\xcd\xcc\x4e\xc3\xc9\x89\xc8\xdf\x46\xcf\xae\xfe\x25\x08\x1b\x15\xf4\x12\x69\x80\x8d\x36\x6a\x27\x08\x05\x99\x4a\xf2\xa2\x1c\xea\xf3\xcd\xa6\x96\x5a\x7a\xa6\xd4\xd3\x1d\x28\x09\x07\xd6\x48\x25\x62\xf4\xc9\x31\x18\x70\x45\xe7\x28\x62\x50\x11\x27\xfd\x5e\xde\x0a\xcd\xc2\xbf\x6c\x7a\x94\x7e\x9b\x4d\xb9\x16\x03\x1b\x5a\x67\x26\x78\xe7\x31\x60\xc8\xcc\xfa\x6f\xa8\x5c\x9e\xfb\x1e\x9e\x93\x53\x09\x18\xa9\xb3\x6b\xa1\x7b\xe1\x3d\x57\xa4\x33\x39\x0c\xd0\x4a\xe1\x23\x5b\x15\xca\xf7\x84\xf4\x57\x9b\xfa\x00\x3a\xaa\x80\x9a\x6a\x26\x55\xf4\xea\x6d\xf0\x49\x6e\x25\x94\xe0\xab\x7f\x63\xec\x4e\x34\x3d\x1c\x38\x73\x91\xfc\xb5\xbc\xad\x6c\xc1\x55\x66\x0b\x62\x67\x5a\x26\xdb\x77\xa0\x50\xc9\xb1\x78\xf7\x72\xa0\xef\xde\x42\x2c\xaf\xdb\xda\xe2\x2a\x38\x0b\x29\x31\x58\x7c\x05\x4b\x89\x90\x5f\xea\x36\x5b\x2e\x6b\x94\x82\xc9\x75\x15\xe3\x08\x29\xe0\x99\x4d\x72\x6a\xcf\xe8\x3c\x84\x6d\x13\xcf\x51\x2a\x19\xe9\x51\xc0\x73\x54\x78\x2b\x95\xc2\x1c\x59\xae\x6a\x52\x59\x94\x2e\xbf\x15\x2d\x3b\x24\x27\x03\xb0\x3e\xf6\x40\xb8\x7e\xb5\x29\x91\x4b\x10\x8e\x34\xf2\x20\x29\x8f\x88\x82\x61\x24\xa0\x42\x19\xa3\x79\x5c\x22\xd7\xe3\x6b\x8d\x5c\x68\x66\x01\x93\x37\x16\xf6\xcb\x05\xfb\xed\x17\x3f\xfc\x70\x41\xf4\x25\xec\x9c\x4c\x1a\xad\xb8\xd2\x0d\x1d\xdf\xb3\x27\xc0\x49\xa1\x93\x1d\xa9\x26\x65\x4b\xce\x46\x6b\x44\x4b\xce\x06\xd8\x53\x55\xae\xc5\x2e\xc5\xeb\x4c\xea\x83\x51\x49\x0f\xd6\x98\x2c\x98\x10\x18\x75\x44\xcc\x30\xbd\x9e\x3f\x9f\xfc\x58\x29\x38\xc4\xb2\x71\xfe\x09\x1c\x1e\x70\x6f\x82\xa3\x8b\xaa\xb6\xbd\x54\x72\x8c\x69\x3b\x00\x83\xeb\x19\x12\x6a\xf0\x27\xb6\x59\x2a\xe8\x18\x55\x44\x87\x01\x7a\xb3\x28\x64\x0b\x82\x25\x81\x1c\x92\x5d\x39\xf9\x5f\x93\x17\xa5\x23\x7a\xb5\xd9\x94\x9d\x15\xba\xc5\xf0\x8c\xd9\x49\xa2\x76\x96\x8a\x09\x5f\xab\x12\x47\x72\x77\xa3\xba\x47\x4a\xea\x3d\x50\x40\x7c\xcd\xa6\x64\x79\x99\x0a\xfd\x51\x52\xd7\xa3\xe2\x10\xc1\x7b\x1b\xc3\xa9\xb7\x30\x15\x23\xc6\x27\x09\x8a\x6a\x54\x82\x5d\xf8\xd9\x1b\x0b\xa0\xdd\xc8\x99\x51\x5d\x1b\xd7\xb0\xd9\x36\x3d\x40\x8f\xe1\xcf\x47\xba\x02\x37\x62\xa1\xbd\x42\xd5\xd3\xc6\x6f\xcc\xfe\x82\x05\xe2\x77\x6f\xe1\x88\x1c\xf1\xf9\x56\x34\xf7\x11\xa8\x8b\x65\xd4\xeb\xb5\x6b\x30\x10\x15\xc5\x90\xa4\x28\xc4\x2d\x06\xed\xa0\x09\x16\x70\xf3\x85\x13\x8f\x74\x25\xd3\x81\x83\x91\xab\xf7\xd7\x84\xc5\xdb\xec\x0d\xf9\x14\xd5\x27\x61\x75\xd4\xf2\x28\xc6\xe3\x5f\xa1\xb8\x45\xde\x75\xb5\x29\x87\xe0\x64\xc3\xa6\x51\x0b\x23\xe8\x96\xf1\x98\x94\x66\xfc\x7a\xf1\xd9\xd8\xe8\xa8\x72\x8f\xa7\x46\x2e\xc3\xd9\x5e\xec\x58\x00\x65\xdf\xe3\x9e\xce\x50\x85\x5a\x1f\x74\x0c\xa3\xc6\xd8\xd1\x58\xae\x6d\xb9\x36\x36\x5b\x2e\xcb\xe4\xe5\x56\x66\x8c\x59\x72\x6e\x21\x22\x3f\xfb\x8c\xf9\x2d\x9f\xea\xfc\x3f\xd5\xf0\xd2\xc1\x01\x30\xe3\x4a\x17\x19\x69\xe5\x68\x47\xe4\x8d\x45\xb7\x20\xc2\xde\xa3\x09\x74\x60\x95\x0b\xf6\x40\xf4\xb3\x30\x47\x4d\xdb\xa9\x98\xac\x51\xf9\x3a\x1a\x02\x7b\x8a\x26\x14\xe5\x54\x5c\xf0\xc8\xd7\x42\x07\x61\xe9\x26\xce\xd3\x1e\x4e\x27\xfc\x2d\xd5\xf7\xdf\x22\x29\xfc\x4f\x29\x96\xbf\x63\x97\xa1\xd8\x1a\x2e\xec\x73\xdf\x13\x32\x99\x40\x06\xdf\xfb\x3d\x9e\x77\x63\x82\x6a\xb3\xeb\x55\x31\x06\x35\xb2\x0e\xf9\x81\xa4\x7d\x6b\x03\xa3\x53\xf6\xf5\xd7\xd9\xd7\x5f\x97\x8f\x10\x45\xea\xd9\x68\x9c\x93\xa7\xdc\x2c\x45\x52\x0d\x6f\x42\x22\x0a\x63\xc0\xd2\x1f\x77\x3f\x13\x07\x21\x55\xec\x03\x15\xc7\xde\x0c\xd9\xa7\x6d\x25\x76\x94\xf3\x37\x8b\xec\x9b\x1f\xb0\x2e\xb2\x3c\x21\x01\x95\x64\x7b\x26\x71\x85\xf9\x86\x11\xa6\x26\x9f\x80\x20\xb4\x7c\x4f\x20\xb6\x5e\x97\xbb\xc0\xe1\x9f\x7d\x43\xfa\xf6\xe2\x87\xef\xbf\x65\x67\x11\xd1\x9f\x68\x3e\xa5\xb1\xf3\x44\x44\x8d\xb5\x92\x7b\x27\x4d\x5a\x5c\xd5\x9c\xfa\x14\xe7\x4f\x8d\x79\x8e\x16\x16\x7a\x0c\x65\x5b\x11\x58\xb2\x39\xb0\x12\x1c\xad\xd4\xb0\x21\x5b\x12\xe9\xc7\x12\xeb\x4e\xc0\x58\x62\xd0\x31\x3a\xb7\x66\x40\x2c\x42\x50\x98\xc2\xc3\x88\x9b\xe0\xfd\x7d\x8b\x88\x59\x91\x52\x21\xc1\x50\xec\xd9\xb9\x38\x47\x26\x60\x65\x73\xba\x63\xdc\x18\x92\xc2\xf2\xce\x06\xf6\xe7\xb1\x9e\x8c\x4c\x8a\x2e\x95\x43\xda\x93\x1f\x49\x2d\x65\x17\xe4\xd8\x7e\x36\x3b\xfa\xe4\x04\xcf\x23\x97\x91\x9d\xd7\xee\xd1\x79\x18\x22\x25\x4a\x87\xf8\xc6\x46\xd3\xae\x74\x80\xff\xf3\xe3\xe2\xdf\x66\xa9\x9d\x13\x4b\xbf\x31\x08\x85\xf5\xca\x84\x4e\x71\x54\x55\x58\x05\x28\x35\xe7\x27\xaf\x84\x31\xe6\xb5\xee\x92\x0b\x38\x4d\xb4\x06\xc3\xf9\x32\x74\x71\xf1\x73\xd7\x20\xf3\x41\x66\x80\x49\x71\x94\x2d\x57\xf0\x7a\x0c\x64\x89\x22\x28\x4d\xfe\x39\x5b\x2e\x8b\x26\x3a\xfd\x9c\x79\x10\x2b\x29\x39\xbe\xeb\x75\x3d\x88\xa6\x8f\x35\x89\xbb\x99\xc9\x1a\x64\x66\x45\x37\x13\x2d\x8f\xb9\x85\x3d\xc9\x51\xfe\xf6\xb3\x15\x16\x0a\x33\x0e\x51\x55\x16\x17\x7f\xff\x13\xaa\x8c\x29\x2a\xd0\x54\x96\x67\x5b\xa9\xef\xc1\x26\xc6\x00\xc4\x29\x52\x8b\xf1\x9d\xe7\x23\x63\x7b\x71\xb3\x99\x5d\x36\x8d\xb1\x09\x52\x67\x6f\xc5\x30\xba\x5e\x5a\x66\x53\x17\x2f\x30\xa5\xe6\x89\x60\x72\x52\x1f\x8d\x4d\xf5\xa0\x5c\x89\x83\xa4\xef\x9b\xfc\xcf\xc9\x8f\x75\x03\x52\x45\xe0\x6f\x61\x2f\x1b\xea\x54\x45\x33\x30\xda\x6b\x4d\xb0\xf6\x4b\xd3\xa2\xb8\x54\x51\xa4\xdf\x9a\x01\x50\x59\x75\xa8\xa4\x35\xde\xee\xb5\x70\xac\xba\xaa\x55\x20\x45\x78\xb5\xa9\x6f\x58\x3d\x71\xd7\x92\xc9\xf3\xec\xad\x51\xea\xf1\x68\x0c\x2d\xa3\x5a\x0a\x2d\x5a\x62\x6a\x45\x6f\x02\x69\x42\x94\x84\xbc\xaa\xc9\xff\x9d\xfc\x01\xb3\xa9\x8b\xd5\xc6\x22\xe5\xe7\x8d\xd8\x44\xf5\x6a\x2d\x7c\xb0\x51\x0b\xda\xc7\x74\x2e\xa8\x95\x3d\xea\x90\x6c\xbd\x3e\x7f\xd2\x97\xe6\x7b\x13\x6a\x30\x24\xb5\xeb\xed\xc9\xa9\x9b\x91\xfe\xd5\x26\xf6\x34\x7a\x73\x24\xc3\xf1\x1c\xb3\x13\xec\x41\xa4\x0e\x35\xb5\xee\x23\x51\x31\x64\x97\x50\x95\x4d\xd8\x3f\xf9\x71\xf2\x63\x75\x0b\x3a\xd1\xb6\xcb\xd0\xbd\x88\xf6\xe3\x8e\xb9\x22\x27\xeb\xe1\xc9\x3f\x8a\x23\x58\x36\x64\x2f\xef\x7f\x25\x5d\x9a\x0b\x22\x6f\x95\x50\x47\xf1\x48\x3e\xe2\x0e\xfc\x11\x40\x23\x50\xed\x05\x59\x41\xb0\xdf\x03\xa5\xf1\x0c\x1e\x46\xa1\x13\x1e\xc8\x94\x78\x35\xd2\xab\xc4\xae\x8e\xbd\xa4\x6a\x54\x74\x86\xc2\xa8\xc4\x88\x67\x74\x78\x8f\x5f\x3a\xbb\x0c\x48\x2a\x14\xfb\x78\x15\x4a\x9d\x80\xd8\x33\x5b\x80\xef\x15\x20\xd1\x66\x6c\x14\x2a\xee\x7e\xde\x18\xa5\x40\x74\x51\x65\x4c\x11\xfd\x92\x35\x73\x39\x5a\xa9\x22\xc5\x05\x17\x03\xb1\x78\x6b\x74\x17\x17\x83\xfb\xfd\x74\xb3\x98\x5f\x4b\xef\xc2\x4e\xba\x5e\x3e\xcd\xd7\x28\x4f\xb2\x97\x08\xb6\xf9\x6d\xd0\x0c\xf6\xd1\xe7\xe5\x9c\xb9\x85\xc6\x52\x03\x9f\x18\xba\x08\xbe\xc7\x62\x9d\x9a\x6b\xa8\x27\x59\xd9\xb4\xb2\x25\x0b\xe9\x08\x62\x4c\x62\x5a\x84\x56\x26\xc9\x7d\x67\x45\x4b\x37\x55\x5f\x69\xe7\xb9\x55\x5e\x2e\x8d\x66\x0b\xa3\xba\x16\xb6\x31\x8c\xe5\x94\x97\xe4\x7d\x0a\x32\xda\xaa\xf6\x14\xe7\x6f\x4d\x70\x31\x7d\xcb\x75\x68\x3b\xfa\xc2\x72\xaf\x0c\x09\xf6\xa9\xd8\x19\x9b\x9a\x65\xc4\x13\xa9\x79\x3d\x8e\x02\x45\x20\xdb\x5a\x2b\x50\x03\xb4\x49\x15\x74\x56\xf0\x1d\xe6\x9e\xec\xcb\x19\x38\x2f\x76\x4a\xba\x3e\xfb\xb8\x28\xaf\xbc\x50\x2c\x10\x06\xa9\x13\x45\xa9\xfe\x05\x31\xf0\x81\xf6\xdc\x08\x9d\x5d\xaf\x66\xe2\x29\x52\x4c\x59\x62\x31\x29\xfe\x8e\x24\xe2\x4f\xd4\x34\xa0\xb3\xa5\x96\x4d\x1b\x45\xdb\x3b\x2c\x86\x9b\xed\x5c\x74\x9d\xc5\x3a\x43\x71\x3f\xd3\xc4\xc6\xe3\xc4\x84\x06\x8f\xb0\x42\xcd\x66\xe6\xc7\xde\x06\xea\xcb\x65\x17\x84\x6f\x20\xac\x4e\xf8\x36\x67\x9e\x73\x60\xf0\xcd\x2f\xa5\x8d\xfb\xc4\x94\xe4\x5b\x18\x85\xe6\xe1\x00\x27\x22\x85\xac\x7c\x6f\xe5\x9e\xce\xfb\x6d\xe0\xbe\x42\x76\x49\xe5\xf5\x06\x44\x04\x84\xa9\x53\xe6\xd8\x72\x2b\xec\xec\xc9\x4c\x02\x75\xc6\x7c\xcb\x79\x47\xcc\xf1\x14\x19\xd9\x05\x99\x1e\x40\x83\x23\xa4\x3c\x95\x71\xbc\xb0\x39\x3c\x40\x13\x4e\x3d\xbd\x42\xc4\x7a\xf7\xe1\xf6\xab\xc9\x57\xe5\xd1\x1a\x4f\x39\x3a\x4b\x76\x63\x14\xca\x66\xef\x8f\x51\x7b\x71\xd5\x23\x1e\x6d\xcd\x4e\xd1\x8f\x25\x82\x44\x34\x8c\x9e\x34\x2a\x36\xc2\xb5\xe2\x17\xce\xb5\x63\x3a\xa8\xd2\x58\x5e\xfd\x59\xec\x89\xa5\x4c\xc8\x7b\xc1\x9c\x14\x59\x43\xac\x0c\x25\x09\x41\x76\xee\x90\xe2\xb2\x94\xd1\x42\x3d\x72\x19\xdc\xe3\xed\x46\x4d\x60\x74\xf7\x1c\xe9\x4e\xb6\x5e\x4f\xbe\x9a\x7c\x35\x8d\xad\x6f\xaa\x8a\xd4\xa8\x22\x64\xdb\x48\xe7\xf8\x60\xf3\xcb\x86\xab\xff\x3b\xe8\xa3\x2d\x5b\x5b\x8c\xff\x90\xb4\xcc\x20\xbf\x0c\x6e\x4c\x90\x58\x9d\x23\x6f\x7b\x0e\xc2\x2a\xc9\x12\xba\x31\x6e\x80\x24\xea\x67\x62\x00\xdd\x26\x57\x8a\x91\x2b\x5e\x33\xe6\x1f\xdd\x98\x8d\x05\xe2\x6f\xe0\x3c\x58\x66\x3c\xc5\xb5\xe1\xb4\xaa\xae\x74\x0b\x40\x73\x2c\x98\x7e\x5c\xc6\x7b\x39\xa4\x91\x80\xec\xf2\x0d\x67\x04\xc0\x49\xee\x66\x37\x3c\x35\xe1\x64\x17\xe7\x0f\x96\xc6\x32\x60\xe4\x6c\x74\x57\xef\x3b\xa9\x0e\x8f\x0c\x2f\xb1\x07\x96\xfa\x2b\x29\x63\x6b\x6f\xbc\x50\xe4\xc9\xaf\xa6\x5b\x6a\x4c\xf1\x92\xf2\x1b\x88\xa3\x47\x2d\x6b\xc4\xfc\x72\x43\x0c\xf2\xcc\x02\x3e\x32\x89\xe1\xb3\x11\x2c\xf5\xa5\x19\x71\x9e\xc1\x83\xb7\x82\x12\x93\x93\xa9\x30\x51\xbb\xd5\x8b\x60\x75\x2f\x08\x69\x8b\xf7\x0d\x03\x58\x81\x85\x05\xf3\x6a\x20\x21\x3b\xb5\x40\xad\x56\x56\xd4\x48\xf8\x28\xfb\x3e\x51\x4b\xf9\x6a\x53\x74\x82\x5c\x82\xe9\x80\x55\x31\xaa\x11\x20\xbf\x55\x53\xff\x3c\x1b\x1e\x89\xa1\x9d\x51\xf3\xfb\x14\x8f\x75\x6f\x8e\xb1\xc5\x30\x7d\x4d\x2d\x53\x1e\x2f\x98\x0a\xad\x53\xc0\x55\x04\x5d\x4c\xcd\x93\x9a\x65\x6c\x28\x3e\x07\x7d\xff\x54\xe4\xc6\x20\xa7\xc6\x7c\x32\x57\x2f\x88\x30\x0b\x6b\x65\x64\xd2\xc4\x18\x8f\xfd\x23\x16\x82\x4a\xe3\x01\x51\x6b\x5b\x09\x87\x6c\x6f\xba\x17\x83\x54\x92\x5b\x5c\x2f\x49\x7a\x64\x2f\xff\x42\x82\x01\x04\x99\xa4\xf9\x06\x48\x79\x66\x2f\xc9\x27\x47\xd5\xcb\x49\x72\x87\xe9\x10\xf8\xa2\xcb\xdb\x04\x28\x75\x7b\xd2\xa4\xcf\xf0\x7a\xc8\x2f\x8a\xf0\x5b\x0c\x42\x13\xae\x5d\x2a\x25\x85\xfe\x95\x02\xe2\x97\x80\x6c\x3a\xb1\xcd\xbd\x51\xca\x1c\xf9\x01\x8d\x18\x46\x21\x3b\xda\xe3\xc5\x9f\x63\x67\xa9\xd0\x70\x74\xec\x6f\xa9\x30\xec\xb8\x90\x9e\x75\x78\x59\xfa\xcb\x8c\x15\x65\x38\x07\xa3\xf3\x40\x98\x37\x5d\x1a\x4d\x40\x4b\xd7\x7d\x17\xa7\x60\xce\x9e\xd8\x6a\x34\x83\x17\xac\x19\xe3\x18\x87\x31\xa8\xdb\xb2\xef\xa2\x16\xf9\xe1\x1b\x1e\x50\x38\xa4\xde\xc0\x70\x72\x69\xaa\x51\x24\x4a\x54\x71\x3f\x9d\xb4\x2b\xf0\x7f\xf7\x81\xd4\x44\x71\x2f\x49\x08\xe6\x2f\x5e\xbc\x98\xfc\x58\xb9\x3e\x4a\xb5\x38\x6b\xc5\x97\x3f\x98\x16\xe8\x62\xea\xc1\x10\xb4\xe3\x07\xde\xdf\x51\xc0\x97\x3d\x70\x49\xcc\x6f\x5f\xf3\x2f\xee\xe0\x81\xe9\x7b\x49\xcb\xa2\x06\x3d\xc4\x21\xa3\x9f\x60\x67\x93\xca\x9c\xc7\x41\x8f\xb8\xf2\x99\x07\x05\x69\xcc\x73\xde\x18\xdd\x7e\xa9\xf8\xf9\x86\x9a\xc9\xb8\x5f\xf6\x99\x31\x1c\x45\x9a\x28\x40\xf4\x1f\xb9\xbe\x7c\xe2\x90\xca\x2e\xa8\xeb\xd9\x83\x1a\xe3\x09\xe4\xaf\xa8\x11\x5a\xfd\x55\xb6\x6d\x44\xce\x6b\xb3\x63\xa2\x52\xa4\xd9\xb8\xfc\x1d\xb0\x8d\xc3\x50\x8b\x91\xb8\x31\x87\x2f\x53\x51\x52\x63\xd6\x11\x73\x30\xf7\x8f\xa9\x89\xa0\x7d\x1f\x1d\x32\x33\x18\x6b\xcd\x31\xf6\x76\xdb\xd0\xa4\xfa\xbb\xec\x85\xb4\x09\x4c\xf7\xc6\x02\x06\xd0\x7a\x9d\x2f\x0d\x33\x8d\xdb\x90\xa6\xef\x66\xb7\x52\x77\x62\x34\x4c\xea\x51\x93\xd1\x34\xdd\xda\xf4\x3a\xd2\xb9\xe2\x6d\x60\x3d\x51\x75\xca\xec\x98\xfc\x52\x77\x88\x55\x22\x8d\x54\x21\x2c\x20\xa5\xe6\xc3\xdb\xfe\x33\xe1\x63\x3d\x40\x1b\x49\x40\x79\x47\x63\x4b\xaf\xff\xb5\xfa\xa0\xa5\x67\xee\x51\xad\x8d\x83\xb1\x8f\xa8\x89\x78\x75\xb5\x29\xef\xe2\x9c\xc2\xb3\xab\xa7\x63\x08\x9c\x5c\x83\xe4\x0e\x79\x8d\x6a\x33\x3a\x75\xd7\x71\x17\x8c\xf2\x11\x21\x76\xf1\xf6\xeb\xe0\x12\x9e\xd4\x6c\x84\x24\x06\x0c\xf7\x64\x34\x49\x65\x62\xaa\x1c\x4c\xea\x23\x22\xa0\x22\x79\x93\xac\xed\x2b\x62\x62\xb1\xfc\x72\x75\xa7\x41\xa1\xe5\xa9\xff\x4a\xf0\x7c\xcb\x3c\xa3\xf6\x56\xec\xf7\xe4\xf5\xcc\x1e\x9f\x94\x96\xf2\x68\xa2\xdf\x99\x19\xd4\xff\xd9\x37\x28\x68\x67\x16\x9e\x7a\xed\x97\xba\x83\x34\x07\xb9\xb3\xec\x24\x17\x54\x49\x37\x9b\x1c\x1e\xb9\x11\x9b\x80\xa7\xfe\x25\xc8\xe6\x9e\xd3\xc5\x04\x3f\x06\xea\x90\xb2\x81\x9a\xcc\x9c\xd1\x04\xca\xb5\x99\xd4\x8d\x0a\x27\x67\xec\x0a\x57\x50\x0b\x69\xa3\xf7\x59\x53\x07\x36\x32\x6b\x6a\xf5\x58\x1e\xfc\x9b\x46\x7d\xc9\x9e\x8e\x48\xb0\x3e\x53\xf2\x89\x8b\x69\x69\x06\x35\x1e\x5e\xe6\x4d\x76\xf7\x3e\xbf\x31\x6c\xb0\x45\x9b\x8e\x9a\x6f\x03\x58\xd9\x10\x4e\x4d\x37\xc6\xa2\x4c\xe7\xe8\x1c\x84\xed\xe2\x88\x6d\x8d\x59\x16\xbb\xd7\x3c\xc6\xc1\x28\xbd\x10\xfa\x3e\x3a\xaa\x3c\xe0\x34\x04\xe7\xb3\xeb\x15\x8a\xf4\xbd\xf4\xc9\x85\x69\xac\x21\xb3\xa7\x35\xb1\x50\x2d\x8d\xe5\x96\x43\xf5\xde\x7a\xe8\xe8\xe1\xf5\x1b\xc0\xc4\xe0\xc2\x2c\xf8\x4e\xf2\x3b\x32\xa9\x32\x83\xe2\xa4\xfe\x49\x19\x2b\x59\x26\xce\xbf\x20\x6a\x74\x91\x5e\xf2\xc8\x36\xf3\xfc\x4a\x43\x6c\x5a\xd3\xa4\x5e\xcb\xb3\x36\xc5\x3a\xf0\x0c\x42\x7d\x94\x3e\xfa\x52\xb3\xc6\x68\x2f\x75\xe0\x85\xcd\x9a\x1e\x06\xcc\x8c\x54\xae\xb0\x3a\xcd\xf6\x52\x0b\x1d\xa7\x51\xf3\x0f\xb7\xff\x1a\x89\x02\xb5\xad\xf8\x21\xaf\x63\x4b\x90\x22\x44\x21\xd1\xe7\xc7\x31\x41\x9f\x8b\x80\x80\x10\x93\x60\xaa\xc4\xf1\x34\x2b\x57\x35\x56\xf2\xdc\x40\xfd\xbe\xf1\x26\xc2\x4b\x76\x81\x5c\x6a\x7a\xc9\x34\x8e\x6f\xc0\x04\xaf\x8c\xb9\xa7\x7e\x50\x2f\x7c\xf6\x69\x5b\x11\xd9\xe6\xc4\xe9\xe2\xc9\x56\x2e\xd8\x8e\x59\xca\x04\xeb\xe1\x34\x0e\xc7\x62\x40\x9c\xb5\x5f\x5c\x08\x9a\x57\x36\x03\x6a\x0f\x1a\x33\xa8\x7b\xd9\xf5\xa9\x81\xfd\x41\xa7\xe4\xd9\x89\x16\x31\xc2\xf7\x40\xb9\x5f\xbd\x33\xba\xe5\xff\x35\x8d\xb3\xa6\xd4\xd5\x92\x27\xcd\x94\xa7\x96\x59\xd9\x99\x2f\x03\xae\x4d\xaf\x8d\x32\xc4\xb4\x4b\x1b\x62\x25\xce\x0f\x52\x20\x57\x39\x30\xf9\x27\x85\x4d\xe3\x54\x91\x8b\x0c\x52\x87\xa8\xee\x2b\x5c\x1d\x97\xe8\xc6\xd0\x5c\xda\xb9\x50\x11\x85\x22\x4f\x47\x70\x00\x61\x9b\xfe\xe4\x79\x93\x65\x11\x29\x62\xa3\x4e\xf1\xb0\x8c\x37\xcc\x51\x14\x64\x4b\x43\x17\xfc\x99\xab\xe8\x69\x32\xe2\xf6\x6c\x8c\x16\x7b\x6e\x77\xde\xd6\xb7\x61\xb4\x30\x70\x04\x2d\x2c\x40\xcb\xd3\x95\x75\x0f\x42\xf9\x1e\x99\xc3\x34\x32\x7e\xde\xe0\x67\xb3\xcb\x36\x9b\xdf\x5a\x20\xef\x42\xfe\x7a\xea\x8b\xf4\x32\x99\xf9\xf9\x2d\x77\xcb\x4b\x6a\x0c\x22\xaa\x59\x41\x46\xd9\xcd\xe2\xfc\x09\x37\x8b\x82\xb5\x6d\x13\xa9\xca\xf7\x70\xc4\xe7\x19\x0d\xcf\x91\x72\x63\x64\x7e\x43\x04\xa4\xda\xa1\xf2\xa4\x32\xfc\x92\x0b\x1d\xcd\x8b\x42\x54\x41\xde\xab\xd3\x50\x4c\x2f\xa9\x6f\x56\x39\x39\x70\xd1\x9c\x12\x7b\x17\x9d\xc1\x4b\x65\xb3\x9f\xbd\x4a\x0d\x9d\xf1\xf2\x49\x7f\x32\x8d\x36\x9c\x3a\x70\x1a\xb5\x08\x96\x86\xd8\xa9\x84\x2e\x85\x19\x02\x23\x26\x2b\x3d\xd1\x1c\x89\xe7\x91\x91\xca\xfc\xe7\x2e\xc6\x56\x41\xdb\xd8\x6c\xca\x85\x35\x47\x1d\x49\x10\xf5\xed\xf3\xeb\xe5\x25\x79\xd1\x3c\x9d\xba\x0b\x69\x3a\x20\x9d\x07\xf7\x1b\x6f\xbd\xd0\x8a\xb9\xf8\x04\xc1\xe0\x6c\xb4\x06\xeb\x42\xb2\x15\xf3\xe5\xe2\x96\x32\x37\x68\x4e\x56\x0a\xed\xde\x0c\x11\x5f\x6f\x91\xbe\x24\xa3\xa4\x51\x82\x07\x33\x9a\x2f\x4d\xb0\x9a\xe7\xb5\x78\xcb\xad\xe0\xbd\x67\x6f\xf9\xfe\xae\x4d\x6c\xd7\x55\x36\xd9\xf2\xd5\xe5\x3e\x01\xeb\x0c\x85\xc4\xde\x28\x9a\x9a\x42\x70\xf4\x5f\xba\xcc\xbe\x17\x88\x6e\x53\x2e\x05\x9c\xc6\x45\x6b\x34\xf2\x90\xcd\x84\xaa\x51\xc2\x30\x4e\x86\xd7\xed\x31\x36\x4c\x6a\x78\x18\x53\x15\xc8\x76\x8f\xd4\xb2\x27\xb7\x9c\xd2\xb2\x74\x3e\xbe\x56\xc0\x73\xcc\x71\xec\x07\xbf\xb1\xfa\x88\xec\x94\xda\x00\x9a\x02\xa9\x86\x07\x31\xf0\x90\xea\x8c\xad\x2d\xb6\x42\x6b\x06\x72\xbe\xaa\x1d\x74\x81\xcb\xb7\x0e\x94\x51\xd9\x7a\x3d\xbf\x3a\x4d\x3d\xd2\x46\xd3\xf0\x4c\xac\xe7\xdc\x58\x2c\x1b\xcb\x6d\xcb\xfc\x82\x42\xb2\xe8\xd2\xf6\x88\xd2\x38\x80\x34\x87\x99\xff\x64\x68\x98\xe7\x16\x85\x4b\x24\x42\xd3\x34\xe5\x4e\x8b\x38\x26\x5a\x7a\x1d\xc7\xb1\xa3\xd7\x41\xdb\xeb\x03\x25\xd1\xe4\x9f\x26\xff\x94\xbd\xfa\x8e\x95\x85\xc9\x3e\x6d\xf3\x38\x30\x5f\xaf\x4d\xb0\x91\xb6\x14\x4d\xec\x28\xbc\x7b\xd4\x3c\x42\x9c\xeb\xaf\x7d\x76\xb3\x98\xfc\x61\xf2\x87\x8a\x46\x9b\x38\xd6\x93\x1b\xcc\xa7\xdf\xc9\x53\x63\xb0\xb3\x20\x3c\x7b\xe9\x15\x8f\xa3\x45\xe3\x74\x27\x76\x9c\x4f\xd7\xc6\x72\xec\xdf\x2c\xaa\x43\x3a\xf2\x02\xab\x1f\x4b\x16\xea\x45\xdc\x20\xec\xf3\xb4\xd1\x41\x28\xd2\xd6\xf9\x2d\xcb\xbe\x29\x4f\x32\x52\x80\xcf\xc8\xa8\x91\xae\x31\xcc\x1d\xa5\x4e\x8a\xec\xca\xd9\x38\x06\x5a\x3f\xb1\x37\xb3\x57\xaf\xf0\x00\x16\xc1\x67\xcb\x65\x46\x0d\xcf\xf9\x46\x1c\xe2\x6b\x0e\xf4\xd7\x9f\x50\x21\xb0\xd2\xcc\xbe\xe6\xf9\xb1\xa5\xe1\x74\xd9\x16\x6f\x82\xda\xd3\xa2\x16\x56\x70\x68\xe7\x3b\xfa\xae\xb3\xa0\xe3\xb8\xb0\xe7\x9e\x47\x7b\x90\x2e\xda\x2d\xac\xda\x2a\x32\xfb\xf9\xbe\xd6\x22\x76\x09\xb3\x6f\x30\x2b\xf3\x9b\xf5\x0d\x05\x8a\x1c\x68\xe2\x90\x3c\xfd\x7a\x2b\xac\xdc\xb1\x54\xa8\x57\x52\xdf\x33\xed\xd8\xe6\xd7\x02\x92\x1c\x42\x80\x99\xfc\x9c\xfd\xfc\x73\xe5\x7b\x3c\x77\x2c\x68\xf8\x13\x9c\x86\x66\x8b\x5d\xac\x8f\x17\x3f\x7c\x4f\x77\x7f\x75\x43\x09\x3f\xdd\x1b\xe3\xd3\x78\xc4\x8d\x61\x85\x35\x4b\xa3\x8d\xbc\xca\xbd\x8c\x5d\xa0\xf2\x22\x0a\xb9\xf2\x48\x01\x80\x6c\x65\x61\x98\x76\x6d\x9f\xb9\xb0\x73\xb8\xe6\x34\xa8\x5c\xf3\x7b\x49\x29\xd8\x19\x12\x9e\x35\x51\xc9\x9d\x86\xfc\x68\x3c\x92\x87\xa1\x4e\x53\xd9\x3c\xa7\xd3\x82\x3d\x5a\x99\x96\x31\x8f\xed\x6c\x11\x5f\x14\x40\xad\x99\x86\x86\x8e\x3d\x68\xc4\xce\x5a\x28\x0b\xa2\xa5\x62\xb8\x13\x24\xb8\xcb\x0e\x92\x77\x70\xcb\x1d\x6d\x8e\x2e\xcc\x74\xac\xdd\x92\x4b\x72\xb5\x95\x2a\x29\x87\xbd\x09\x36\x5b\xae\xce\x4f\x53\xec\x49\x9f\x38\x25\xbb\x3e\x56\xcd\xa0\x89\xa6\x93\x5f\x6c\xe1\x48\xd6\x47\x83\x67\x9f\xd6\x74\xf1\xc3\xf7\x18\xc1\xcf\x68\x0c\xd6\xd0\x28\x00\x8b\x8a\xe6\x31\x92\x4b\x1a\x35\xb0\x7c\x8c\xf4\x62\x4e\xb6\xba\x9b\x2e\xe3\xd1\xe7\xfc\xbe\x86\x1d\xc8\x2a\x2a\x84\xa5\xce\xf7\x59\x34\xed\xa5\x38\xbd\x2e\x22\xf6\x7b\x56\x52\x6c\x15\x72\x22\x6e\x4d\xea\xfb\xd4\xbb\x93\xd2\x2d\xdf\x9e\x1a\xf0\x2b\x0b\x0f\x9c\x15\x53\x6e\x1e\x9d\x46\xcb\x93\xf9\xce\x08\xc2\x12\x34\x3b\x9a\xec\x7a\x55\x8d\x60\x46\x7a\x4d\xe2\xb6\x04\x9a\x2c\x5a\xae\x66\x4e\xfa\x70\x7a\x9b\x60\x01\x3c\x04\x8e\x7b\xc7\x30\x39\x67\x08\xfe\x52\x1a\xeb\x27\xaf\x65\x4c\xd3\xfb\x14\x64\xf8\xa0\x6e\xc2\xac\x49\x85\x31\xbe\x84\xc2\x87\x73\xec\x65\xd3\xe7\x9f\x56\x77\x33\x67\x06\x48\xad\x8f\xf2\x28\x62\x9b\x72\x90\x91\x36\xcd\xa4\xde\x9f\x5e\xde\x99\xf3\x80\x63\xfa\x57\x63\xb4\x3e\x15\x96\x12\xf1\xe2\x9e\x95\xe9\x69\x14\xa0\xbc\x6a\x04\x4f\x65\x4f\xfe\x38\xf9\x63\x49\x20\x82\xdc\x61\x4f\xb0\x8b\x1c\xec\xc0\xaf\x1e\xd2\xaf\x27\x22\x5b\xdd\xd5\xec\xcd\x45\x43\x4c\xa4\x86\x74\xfe\x35\x4d\x0d\xd4\x11\x9c\x29\x5e\x9f\xf0\xd5\x39\x52\xb6\xe7\x8f\x12\x54\x64\x90\x16\x80\x66\xe3\xc2\x4e\xc9\x86\xe3\xcb\x61\x44\xb0\xb8\xbe\xfc\x32\x4c\x33\x4d\x4c\x0e\x2b\xd7\x10\xa2\xfc\xae\x40\x38\x1e\x86\x78\xd6\x48\xdb\x84\x81\xdb\x0c\xc9\x59\x8e\x51\xcc\xc5\xd3\x27\x04\xbc\xa0\x8e\xe7\x08\x56\x92\x55\x52\xde\x8a\x86\x04\xfa\x76\xf2\xdf\x27\x2f\x6a\x0b\x2e\x28\xff\xa5\x2f\x1b\x2b\xd0\x86\xcd\x8b\xea\x2d\xb1\x3a\xba\x6b\xd4\x88\xd4\x17\xd4\xc6\x0e\x3c\xeb\x57\x53\xdf\x83\xaa\x5b\x7d\x0f\x30\x9e\x24\x1c\x0f\x47\x3d\xb1\x96\x10\xba\x97\xa9\x35\x44\x80\x8a\x47\xc6\x8f\x55\xc2\x47\xd2\x5d\xed\x29\xf1\xb2\xcd\x26\x23\x63\xa3\xec\xe2\xa0\xd2\x6d\xa9\xe3\xff\x98\x36\xd1\x3b\xc0\x67\x3a\x39\x48\x9e\xfc\x9e\xb9\xd4\x03\xc1\x1c\x49\x33\xd0\xd1\xbc\x0e\xde\x70\xbb\x41\x71\x9c\x4d\x37\x4f\x84\xfb\xb4\x11\xa3\x48\x55\x70\x07\xa9\x69\x76\x7a\x35\x04\x7f\xbd\xc5\xca\x4d\x87\xf0\x2a\xbe\x50\xfa\xe1\xf2\x1d\x9d\x4f\x0b\x8d\x68\xb9\xa8\x53\x87\x26\xfb\xc4\x4c\x88\x3c\x18\x0c\x9e\xff\x33\xf9\x7d\x21\xb5\x37\xa8\xaa\x7f\x62\x0f\x16\x13\x95\xc9\xd8\x3b\x6e\xa7\x14\xd1\x6e\xac\xbd\x35\x81\x27\xf1\x8b\xad\x89\x5d\xd2\x3d\x0a\x26\x1a\x51\x30\xa4\x43\xa2\x19\x18\xf7\xf6\xd7\xd8\x47\x2a\x34\x8a\xe5\xe5\x8a\x0e\x99\xa6\x5c\x08\x13\x78\x3e\x35\x6a\x81\x38\xa6\xcf\x87\x3e\x00\xe6\x64\xb6\x5e\x67\xdf\x20\xfd\x98\xa6\x97\xd3\xf8\x3d\x53\x1b\xbb\xe3\x33\xaa\xe8\x69\x30\xb0\xbc\x4d\x3e\x48\x67\x8d\xc3\x00\xa8\x98\xf5\xb3\xcb\x4a\x8d\x61\xfe\x76\x9e\x25\xa7\xd8\xa5\xa1\x7d\xfc\x03\x25\x74\x17\xe2\x9b\x0c\x97\x3a\x5b\xdd\x9d\x5d\x3a\x7a\xbf\x31\x55\xe2\x19\xfc\x12\x64\x12\x66\xd5\xe9\xdd\xd9\x8a\x36\x4c\xf7\xea\xcc\x73\xa4\xa2\x44\x5a\xab\xcf\x48\xf1\x93\x55\xd6\xf4\x3a\x7a\x39\xb3\x4f\xd0\x6a\x48\x2f\x0d\x94\xeb\xe8\x28\x6f\x33\x81\xcf\xcc\x38\xae\xcf\x9e\xd4\x30\x9a\xa3\x89\x2d\xdc\x85\x8d\xd3\xdd\xc8\xe1\x9e\x8c\x22\x16\x47\x10\xf7\x98\xc2\x9f\x7a\xe9\x63\x47\x8b\xb2\x7a\xb3\x29\x97\xbd\xd4\xac\xdd\xdf\x9e\x8c\xe3\xda\x02\x6e\x9c\xe1\xa2\x31\x48\x15\x34\x77\xc4\x7d\x1c\xbe\xc6\x7f\xad\x4e\xef\x47\x51\x20\x5e\x4b\xdf\xf4\x69\x48\x1d\x69\x7d\xac\x46\x3b\x68\xcc\x90\xaa\x4d\x23\x5c\x4f\xd5\xce\x18\x66\xc2\xa5\x32\xbc\xf1\x29\x8a\xb8\x68\x87\x17\x47\x7e\x0d\x76\xc6\xaf\x5b\x27\x33\x14\x61\x3a\x66\xdd\xe4\xc5\xe4\xc5\x34\x76\xb4\xa9\x67\x26\x53\x53\xe1\x7c\xa1\x0c\x3d\xaf\x15\x2a\x16\x11\xfc\x06\xa6\x56\x3f\x85\xcf\xd2\xbb\xc0\x76\x07\xb7\xf9\x73\x43\xe8\x76\xa6\xa0\x93\xee\x04\xca\xd9\x8a\xff\xe8\xf6\xc5\x25\x4f\x70\xf3\xe4\xcf\xde\x8a\x40\x7a\xf2\xd6\x44\x93\xe3\x6f\xfc\x96\x45\xb4\xc3\x99\xc5\x7f\xc3\x8d\xa9\x34\x64\x5a\x80\x68\xfa\x6c\x75\x37\x79\x3e\xf9\x71\x1e\x5f\x85\x62\x66\x9e\xd1\x4b\x99\xd9\x2b\xb2\x37\xa3\xd8\x45\x24\x7f\x1f\x05\x78\xf6\x9a\x0d\x96\xa3\xc4\x62\x42\x4d\x01\x60\x7c\xac\xf7\xe2\xcb\xac\x05\x16\x10\xca\x73\x11\x87\x55\x8a\x8b\xf8\xbe\x1c\xa5\x02\x83\x53\xbd\xb0\xd2\xc7\xb7\xe4\xab\xbd\x90\xf1\x7d\x80\x6b\xf9\xc0\x11\x51\xdf\x85\x53\xd8\x15\x9f\x22\x51\xc9\xbf\xe1\x69\xe8\xe8\xda\x91\x10\x31\x3b\x7a\x05\xef\xe3\xa2\x5c\x98\xa8\x61\x4a\x1a\xaa\xe4\x7e\x3c\x75\x19\xb2\xf5\xfa\xfc\xbf\x08\xe6\xf2\x24\xd1\x2b\xe4\x0e\xdc\x31\x9b\xbb\xde\x58\x9f\x1a\x5a\xd5\xd2\x04\x1d\x5f\x11\xed\x82\x54\x9e\x7a\x2a\xaf\xf9\xf4\xaa\x6b\x78\x90\xcc\x9b\x51\x9e\x45\xda\xbc\x30\xa7\x6e\xed\xd1\x58\x8e\x68\xa2\xf4\xd9\x7a\xfd\xff\x03\x00\x00\xff\xff\x36\x74\x93\xb3\x7e\x40\x00\x00") - -func internalModelTagsGobBytes() ([]byte, error) { - return bindataRead( - _internalModelTagsGob, - "internal/model/tags.gob", - ) -} - -func internalModelTagsGob() (*asset, error) { - bytes, err := internalModelTagsGobBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "internal/model/tags.gob", size: 16510, mode: os.FileMode(420), modTime: time.Unix(1494607416, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _internalModelWeightsGob = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\xfd\x79\x94\x1c\xd9\x75\x1e\x88\x03\x99\x55\x58\xba\xd1\xdd\xe8\x8d\xa4\x44\x5a\x4e\x49\xfc\xa9\xfd\xb3\x9a\xd4\xd0\x33\x1a\x8f\xed\xe3\x89\x54\xa1\x9a\x4d\x94\xd5\xd5\x35\x05\x10\xa0\xfb\x68\x74\xfa\x65\xe4\xab\xcc\x40\x45\x46\x24\x23\x22\xab\x50\x3d\x1a\xcd\xc8\x1e\x49\x5e\xe4\x63\xeb\xe8\xc8\xda\xac\x91\x65\x6a\xb1\x6c\xd9\xa6\x24\x4a\xa2\x96\x61\x14\x9b\xfb\xaa\xde\x17\xf4\x8a\x7d\x2b\xa0\x0a\x7b\x55\x01\x28\xcc\x79\xf7\xbb\xef\xbd\x9b\x95\x49\x0d\xff\x61\x44\xa3\x32\x33\xe2\xbd\xfb\xee\xfa\xdd\xef\xde\x77\xe7\x67\x47\xb6\x56\xee\xfc\xb3\x2d\x5b\x77\x6d\xbd\xf3\x33\x5b\xb6\xdc\x7b\xe7\xa7\xcd\xfd\xcf\x98\xfb\x1d\x5b\xb6\xdc\xfe\x47\x5f\x3d\x7e\xe7\x9f\x6d\xb9\xbd\xf5\x07\xfe\xf4\xbb\xa3\x0f\x7d\xa4\x56\xa8\xd6\x0f\x46\xb5\xf9\x34\x6b\xd6\x0e\x8c\x4d\xd6\x3a\x69\x52\xb4\xe3\x85\x4a\x65\x7a\x6c\xf5\x0b\xd7\xfe\xd6\x8f\xfd\xeb\x67\x8f\x06\x95\x89\x09\x7b\x5d\xde\xcf\x7f\x9b\xe9\xbc\x97\xcd\xa8\x50\x37\x2b\xd5\x03\x63\x93\xab\x97\x5f\x78\xa2\xb1\xfb\x13\x47\xcb\xea\x81\xb1\x71\x7b\x13\xdc\xc7\x7f\x9c\xa8\x5e\x11\xc5\xbd\xbc\x6a\xbe\x29\x6f\xff\xfc\x85\x9f\x08\x2e\x05\xd5\x89\x89\xe9\xd5\x7f\xfe\x23\x4f\x9f\x7c\xee\xfb\x4e\x97\x95\xc9\xc9\xd5\xcf\x7e\xcf\x4f\x9f\xff\x5f\x3e\xfb\x4a\xf9\x9e\x4d\x8f\x35\x39\x59\x6b\x6b\xd5\xad\x98\xbf\xf9\xf3\xbd\xbb\x2a\x3f\xf8\xb3\xbf\x13\x98\xc7\xe3\xeb\xf2\xc1\xe8\x07\x3f\x82\xbf\xd4\x73\x3a\x29\x7a\x2a\x8e\x17\x2a\xd5\xc9\xc9\xa9\xd5\xf4\x81\x7f\xba\xf8\xf5\xdf\x3c\x49\x2f\xc0\xd7\x43\xbe\x7d\xaa\x16\x25\xb3\xe6\x2d\xa6\x56\xb7\xfd\xd4\x2f\xee\xf9\x97\xf1\x71\x7a\x1c\xbe\x0e\x06\x57\x69\xbc\xd6\xd6\x59\x43\x67\x45\xc5\x7c\xf1\x75\xb3\x30\xd7\x96\x4a\xfa\x45\xbe\x09\xfc\x32\xb5\x7a\xb1\x2a\xa2\xa4\x55\xad\x1e\x18\x7b\x7c\xf5\xfb\xdf\x58\xfb\xc9\x43\x7f\x79\x95\x7e\xe0\x67\xdf\xf3\xfa\xb7\x6f\xec\xdb\x5a\x37\x5f\xf2\xea\xa7\xba\xff\xf0\xae\x57\xcf\x97\x76\xc5\x54\x51\xe8\xa4\xa9\x35\xbd\xf4\x27\xff\xe1\x5d\xaf\x7e\xaa\xfb\x56\x50\x39\x30\x66\xaf\xcb\xf7\x0d\xd9\xbb\xbc\xd0\xba\x4b\xcf\xf4\x99\xaf\xce\x7d\xee\x37\xbe\x7b\x39\x30\x9f\xe6\xeb\xf2\x7e\xf3\x09\xfa\xdb\xae\x2a\x22\x9d\x14\xf9\x4e\xf3\xa7\x66\x33\x7e\xf8\xc7\x37\x82\xea\x81\xb1\xa7\x56\x7f\x9c\xd6\x74\x19\xef\x12\xfc\xb0\xb9\x3d\x86\x2d\xfd\xe5\xc4\xac\xdf\xe7\x4b\xda\xec\xef\xfd\x74\xd6\xfe\xf9\x0b\x27\xe8\x2d\x5e\x34\x5b\xfd\xf7\xce\x94\xb4\x7e\x67\x7f\xe0\x23\x3b\x7e\xff\x03\xe7\x82\x91\xc9\xc9\xa9\x7d\xab\x66\x7b\xde\xf3\xfa\xb7\x4b\x7a\x73\xb3\xfa\x8f\xfd\xc9\xf1\xe0\x1e\x7e\xe0\xb9\xb4\xd0\x59\x5e\xc5\x5f\xee\xf8\xfd\x0f\x3c\xd5\xfc\x07\xd7\x82\xea\xe4\xe4\xbe\xd5\x5b\xbf\x77\xe9\x85\x27\x1a\xbc\xa0\xff\x7f\xb3\x9e\x7f\xeb\x4d\xb7\x30\x99\xfe\x64\x2f\xca\x74\x73\x9b\x79\x76\xac\xe6\x86\x78\xcd\x6b\x78\xda\xf5\x9f\x3c\xf4\x97\xc5\x2f\xec\x58\xa4\xa7\xfd\xcb\xe2\x17\xde\x37\xf2\xca\xfd\xf5\xca\xf4\xd8\xc6\x4a\x49\x3f\x61\x16\xfe\xf8\x6f\x9b\x35\xf9\xc1\xbf\x83\xef\x0d\xd3\x64\x26\xca\x3a\x39\x09\xfe\xe7\x7e\xe3\xbb\x7f\xe8\xad\x0f\x1e\x0b\xe8\xbb\xf8\xa6\x7c\x20\xfa\x10\xff\x6d\x57\x17\x59\x1a\xeb\x5e\x87\x9f\xfe\xc0\xbd\x1f\xfa\xc3\x5f\x5f\xe6\xa7\x37\xab\xf1\x99\xaf\x9e\xc3\xd3\x4f\xd0\x12\x1c\x1d\xd8\xad\xe9\xb1\x5a\x23\xcd\xa2\xa4\x45\xbb\x85\x43\x70\x9e\x5e\x83\xaf\xcb\x87\xf9\x2f\xa3\x64\x4e\xe7\x45\xd4\x52\x45\x94\x26\x39\x89\x03\x1e\xe8\x6d\xbc\x09\xdf\xb8\x65\x9d\x57\xb4\xac\xf4\xeb\x58\xf2\x65\x3c\xd7\x7f\x32\x8b\xba\xfb\xab\xb4\x67\xdf\x35\x62\x1e\xf9\x6c\xf9\x37\x86\x9e\x85\x42\x67\x73\x3a\xb1\x07\xfb\x87\xde\xfa\xe0\xb6\x9f\xfa\xc5\xe3\x58\x57\xbe\x09\x1e\xf4\x6b\x91\xa5\x85\xce\xcd\x6f\x8e\x18\xf1\xfc\x93\x2b\xb7\x5f\x3a\x7c\xf6\x54\x50\x99\xb6\xc2\xf0\xf5\xd2\xac\x28\x7e\xf1\xbf\x94\x95\xbd\x93\xab\xdf\xf8\xcd\xc7\xfe\xe4\xca\xed\x37\xcd\x82\x7e\xc4\x2e\x7e\xa7\xd3\x4b\xa2\x62\xe1\x2e\x2c\xe8\xfe\xe3\xbf\xfd\x6b\x5f\xac\x2d\x42\xd8\xf0\xe0\x27\x02\x12\x30\xdc\x5c\xa5\xf3\xff\xf7\x68\xcb\xcf\x05\xe6\x3b\xff\xeb\xe3\x47\x9f\x79\xe8\xbf\x2e\x97\x24\xc5\x58\xf5\xaf\xe1\xbd\xe9\xbc\xfc\xc3\xaf\xd3\x7b\xff\xf7\xf4\xbf\xdb\x78\x17\xfe\x5e\x6c\x14\x3e\x7f\x3e\x18\xb6\x22\xbd\xa4\xa9\xb3\xbc\x50\x49\xb3\x62\x5e\x11\x42\xc7\x02\xcf\x37\xc1\xbd\xee\x5d\xf2\x42\x65\xf9\x08\xfd\xe3\xbf\x37\x5b\xb3\xed\x42\x50\x9d\x1e\x9b\xe6\x73\x76\x8c\x9e\x83\xff\x01\x3f\xcd\xff\x10\xbc\x77\xd3\x4f\x8f\xef\xaf\xe5\x45\x2f\x29\x68\xcf\xff\xf0\xd7\x97\x7f\xf7\xcb\xff\xe8\x1d\xd2\x64\x7c\x6d\x84\xd7\xfe\x66\x57\xeb\x26\x49\xd3\x81\xb1\xd5\xd5\x7d\x66\xf5\xde\x25\x69\xe2\xeb\x72\xb3\x0e\x9b\x7a\x72\x5f\x2d\xeb\x75\xd2\xcc\xee\x32\xe9\xe4\x1f\xbe\x4e\xdf\xcf\xd7\xe5\x5d\xfc\xc7\x8d\x4c\xd1\x33\x4c\x93\x82\x3e\x81\x65\xe5\x9b\xf2\xfd\x9b\xbe\x79\x62\xa2\x96\xa4\x59\xd1\xd6\x2a\xc7\x93\xff\xc7\x2f\xff\xa3\xbf\xfb\xcf\x7f\xe4\x5d\xbc\x2b\xdf\x60\xb9\xf2\xde\xcc\x4c\x74\xb8\xd6\xd4\xe9\x28\xfd\xe3\x43\xb4\x09\x57\x59\x79\x8c\xff\xcb\xf8\xf4\xcd\xdf\x7b\xbd\x34\x4f\xf4\x31\xb3\x39\x8f\x7f\x9e\x5e\x89\xaf\xcb\xca\x9e\x71\x5e\x89\xf3\xe5\x6e\xfe\xf1\x8e\xca\x66\x9b\xe9\x7c\x92\x57\xe8\x19\xe9\x58\xfe\xee\x39\xfa\x18\x5f\x97\xf6\x9c\x34\x54\x38\xab\xb3\x4a\x65\x7c\xff\x2a\x69\x98\x1f\x63\xa5\xc7\x37\xc1\x7b\xdc\xf9\x2b\x74\xd6\xcd\xd2\xb9\x28\x09\x23\x15\xd3\x79\x85\x60\x5f\xc4\x07\xf8\x26\xd8\x7c\xc4\xf7\x4e\xd6\xf2\x74\xa6\xd0\x59\x85\x0c\x1d\xbd\xcd\x25\x3c\x0b\x5f\x97\x72\x15\x92\x34\x1f\x25\xb1\x84\x55\x58\x2e\xcd\x56\xc2\x22\xae\x40\xd4\x36\x5e\x3a\x7c\xf6\x07\x3e\xb2\xa5\x5e\x3d\x38\xbe\x7f\x95\xf4\xe5\x3b\xe7\xe9\x3c\xf1\xf5\x10\x43\xf5\x78\xad\x95\xf5\x3a\x1d\x95\x54\xfc\xbe\x9e\xc2\x63\xf3\xcd\xd0\x0f\x35\xa3\x96\x39\x8c\x24\x4d\x1f\x21\xd5\xbc\x4c\x62\xcb\xd7\xc1\x66\x13\xfa\x68\x4d\x75\xa2\x24\x25\xeb\x3e\xf5\xaf\x7e\x29\x79\xe0\x9f\xae\xd2\x7b\xe2\x18\x9f\xc0\x71\xfb\xd1\xbf\x6b\x54\xdb\xd2\x80\xc0\x4c\x4e\xd6\x9a\x3a\x0f\xb3\xa8\xa1\x9b\x24\x30\xf0\x34\xce\xe2\x53\x7c\x13\xdc\x6b\x64\x9d\x97\x6a\x41\x37\xef\x36\x7f\x48\x3b\xfa\xe5\x9b\x25\xad\x2f\x6e\x96\xa1\x25\x3e\x6f\xf4\xde\x95\x6f\x41\x43\xfe\xff\xc8\x90\xbf\x14\xd0\x6b\xaf\xfc\xae\x91\xc0\x0b\x65\xe5\x89\xf1\x55\xb2\xef\xa7\x97\xc9\xac\xf2\x1f\x95\x90\x3d\xb8\x28\x47\x49\xcb\x40\x21\x2f\xd3\xc9\x80\x84\x9e\x82\x96\xc1\xd1\xff\x8c\x59\x0d\xd6\x85\xda\xc8\x4a\xa1\xa2\xa4\xa3\x93\x62\x87\xd9\x1a\xa7\xae\x0e\x8c\xad\xfe\x4d\xb3\x97\xdf\x73\x14\xd6\x10\x07\xf3\x39\x5a\xd6\xdf\x32\xa6\xff\x53\xbc\x4c\xff\xc1\xe8\xc6\x97\x96\x02\x3a\x95\x7c\x83\xfd\x7f\xe7\x49\xb3\xb4\x37\xe8\xa1\xf8\x7b\x07\x16\xf3\x43\xfb\xf6\xff\xc8\xf4\xfe\x0f\xd5\x54\xa3\xb1\x30\x62\x9e\x98\x0e\xcb\xd1\x8b\xa4\x83\xb1\xe5\xdf\xc6\xfe\x7f\xeb\x9b\xe6\x7f\x5b\xea\x95\x3d\x7b\xf8\x61\x96\x06\xac\xd4\xd4\xf4\xd4\x07\x6b\xb1\x56\xd8\x17\xfc\xe6\x19\x5a\x08\xbe\x2e\x77\x45\x76\x53\x3e\xd9\xd3\x77\x7b\xd3\x79\x1d\x2f\x03\x3d\xc7\x4e\x03\x0c\xf4\xab\x25\xc9\x2f\x4c\x26\xeb\xeb\x97\x8d\x60\xef\x38\x83\x07\xfb\x9a\xf9\xab\x1f\xba\x42\x4b\x06\xaf\x68\xeb\x22\x76\x05\x77\x2f\x96\xc6\xb6\xfc\x03\x5a\x8d\x73\xc2\x6f\xbc\xbb\xee\xbd\xbc\x4a\x7d\x88\x94\xa5\xbd\x2c\xd7\xf1\x9c\xce\x2b\xd5\xa9\xe9\xa9\xd5\xde\x2f\xbc\x6f\xe4\xc0\xbd\x6b\xf0\x7b\xf8\xa6\x7c\x8f\x53\xa9\x9d\x28\x57\x4d\x72\x27\x33\x9d\xd3\xf1\xa1\xed\x2e\x4e\x93\x64\xf3\xb5\x53\x3c\x61\xac\xa2\x8e\x4a\x0a\x52\xfc\x4f\xad\xfe\xbb\x2f\xd6\x3e\x9d\xb5\xaf\xb0\x34\xfd\x5b\x23\x66\x37\x8f\x42\x6f\xf2\x3f\x41\x1a\xf9\x5f\x06\xd4\xb3\xb1\x3a\x99\x71\x66\x7b\x70\x00\xaf\x1a\xa3\xfa\x03\xcf\x63\x81\xf8\x26\xf8\xae\x21\x1f\xea\xf4\xb2\xa6\xd1\x6a\x93\x93\xbc\x42\x2f\x04\x95\x8f\x1e\xb4\xd7\xc6\x53\x66\x51\xcd\x55\xdc\x6b\x64\x51\xda\xcb\xab\xf4\xc4\xff\x1b\x89\xf6\x12\x69\x1d\x6c\xee\x2a\x8e\x12\x3c\xa5\xe3\xe5\x07\x36\xfd\xda\xc1\xf1\xfd\x35\xd5\xd1\x59\x14\xaa\x24\xaf\xe0\x45\x1f\x21\x05\x71\x02\xef\xc6\x37\xe5\xe0\x63\xee\xab\x45\x79\xde\xd3\xcd\x2a\xfd\x00\x76\xf5\x36\x64\x84\x6c\xf5\x5d\x23\x75\x92\x1e\x3c\xd3\x89\xb2\x36\x68\x18\x9b\x91\xd1\x18\x9d\x28\x51\x45\x9a\x2d\xd0\xfb\x92\x4b\xfa\x13\xcb\x64\x2f\xf8\x7a\x40\x27\xef\x7f\xb2\x16\xb5\x92\x34\xd3\xa4\xda\xd8\xcf\x24\x81\xb6\x3e\xa7\xf5\xdb\xbb\x69\x56\xcc\xa4\x71\x94\xb2\x29\xa1\xb3\xfb\xd3\x5b\xeb\xe6\x97\xf8\x7a\xf1\x3e\x77\xf0\xc3\x76\xa4\x67\xe0\x9c\x2d\x90\x3d\x60\xe7\x95\x6f\x02\xef\xe9\x74\x33\x63\x47\xba\x2a\x1e\x35\x7f\xfc\x7e\xf2\xa7\x7e\x9b\x6c\x99\xd5\xe8\xb4\x1d\x38\x9d\x27\xa0\xc0\xf8\x86\x9e\xf3\xff\x36\x06\xef\xef\x5e\x08\x76\xf1\x73\x1e\x4a\xc3\x59\xfc\xb0\xf0\x9a\x9d\x0b\xed\x02\xb0\xae\x09\xd7\x3a\xba\x39\x4a\xab\xfc\x09\xf2\x9c\xae\xd0\x17\x22\x88\xda\x8e\x15\x87\x47\x55\x59\xa4\x67\x80\xbe\x59\xc6\x17\xe2\x88\x2e\x0d\x91\xd4\x5a\x91\xf5\xc2\x59\xe3\x7c\x08\x37\xff\x3c\x1d\x4c\xbe\x0e\xbc\x97\xad\xe2\x6e\x5b\x35\x34\x02\x27\x48\xe5\x45\x88\x0b\xdf\x0c\x68\xb4\xe9\xb1\xda\x4c\x1a\xc7\xe9\xbc\xfb\x05\x63\x3b\x5f\x78\xe2\x22\x3d\x3d\x5f\x97\x0f\xba\x05\x8e\x55\x38\x1b\xf7\x8c\x43\x5a\x35\x8f\x80\x13\x76\x93\xfe\x18\x6e\xe1\xbd\x8b\xf4\x7b\xd0\x46\x5b\xea\x43\x44\xa4\x13\x65\x59\x9a\x51\x20\x00\x87\xf1\x0b\x74\x2c\xf8\x3a\xb8\xc7\xbd\x8d\x39\xa1\xf7\xd3\xb7\xfd\xea\xaf\x98\xff\xfd\x5e\xe9\x5f\x6b\x5d\x86\x4d\x27\x69\x57\x37\x2e\x93\xab\x0a\x0d\xb9\x41\x2e\x32\xe2\xad\xad\x8b\xe6\x51\xf1\x78\xb7\x49\xbf\x53\x0c\x31\x57\x5d\xa4\xb5\x87\x97\xf3\x95\xb2\x3a\xf5\xa4\x33\x4d\xa5\x71\x5c\x60\x1c\x5f\x86\x79\xa0\x60\xed\x9f\x3c\x58\xa7\x1d\xc6\xf3\xdc\x0c\x68\xc1\x26\x29\x24\xb9\x4e\x2f\x81\x90\xec\x22\x94\x30\x0c\xcf\xd5\x92\xfc\x53\xfc\xfc\xf3\x81\x0f\x13\x3b\x2a\x53\x45\x3b\x4d\x8c\x78\x6d\xbc\x46\x12\xbd\xf1\xda\x80\xf1\x3f\x30\x56\x0b\x7b\x85\x1e\xf1\x1e\xc6\x68\x9d\x1e\x1b\xc1\xdf\x69\x1c\x6c\x9c\xe5\xd5\xd2\xbb\x05\xaf\x0d\x98\x9b\xbd\x93\xb5\xf9\x34\x75\xfb\xfc\xfc\xf7\x19\x2d\x8b\xe3\xc9\xd7\xe5\x43\x3e\xd4\x4f\x5a\xaa\xa5\x8d\xa1\xcd\xf1\xe7\xb0\xf9\x37\xe9\x17\xf8\x3a\xd8\xac\xb4\x4c\x90\xfc\xc9\x9e\xca\x0a\x9d\xc5\x0b\x55\x6f\xdd\x2b\x75\x6f\x2b\xd7\xe9\x1b\x10\xc5\x1d\x73\x0a\x3e\x4a\x8a\x2c\x4a\xf2\x28\x34\x4e\xce\xc6\xd5\xc0\x1b\xc4\xe7\xb0\xd1\xf4\xb2\x37\x96\x07\xd4\xdd\xf4\x58\x2d\x4a\xf2\x74\x46\x65\xf4\x7b\x70\xe2\x2e\xd3\x4b\x41\x10\x2e\x62\x81\x90\x38\xf8\x6a\xb9\x39\x0a\x30\x7a\xb6\x97\x43\x59\x4e\x72\x5c\x7b\x86\x64\x44\x98\xd0\x71\x4e\x0b\x7c\x6b\x60\x77\x8c\xb6\x4d\x67\x66\x60\x96\xa0\x62\x96\xc9\x80\xe2\xd3\xc7\xc9\x31\x98\xa7\x27\x59\x22\x67\x12\xf1\xf6\x48\xdd\x2a\xc2\x66\x14\x16\xaa\xdb\x4e\x13\xcd\x4a\x1e\x9e\x12\xfb\xf3\x7c\xe3\xa2\x4f\x95\xe7\x51\x2b\xa9\xd0\xaf\xe1\x55\x61\x52\xf8\x3a\xf0\x2a\xb3\x1d\xb5\xda\xf1\xc2\x36\xf3\xf3\xd6\x33\xa4\x4f\xe1\x94\x9d\x86\xd6\x81\x72\x3a\x06\x31\xa6\x30\xfe\xc0\x55\x5a\x3a\xbc\xc9\x5a\xe9\xc3\x92\xeb\x4e\xd7\x75\x54\x2b\x0a\x23\x95\xd0\xf9\xc7\x71\x59\xa3\x0f\x41\x20\x8f\xe3\xab\x49\x06\x3f\x7d\xb1\xbc\x97\x3f\x95\xeb\x6c\x2e\x4a\x5a\xf4\x21\x84\x8c\x47\xe0\xa9\x91\x67\xf0\x21\xec\x18\xd2\x14\xa7\x5d\x10\x11\xe5\x99\xd2\x31\x5e\xd7\xda\x1f\x5a\x17\x6b\x80\x76\xbb\xc3\xd4\x56\x49\x33\x8a\x17\x2a\xc2\xaf\x7b\x8e\xd4\x05\x5f\x0b\x25\x99\xe9\x99\x58\x87\x05\xb2\x65\xd0\x26\x97\x11\x43\xe2\xc0\x9e\xa1\x4d\xfb\x1d\xf3\xfc\xd9\x6b\xe5\x7d\xee\x27\xa2\x64\x46\x75\x16\x48\xb5\x3a\xaf\x7d\xaf\xf7\xda\xef\xf3\xc6\x7f\x36\xa2\x60\xd1\xa9\xe8\xd3\x81\xd0\xdd\xa7\x07\x74\xb0\x89\x16\xf3\x8e\x8a\x63\x9d\x17\x26\x9a\xd9\xc7\xfa\xe5\x2c\x2d\x0a\x5f\x0f\x24\x13\xcc\xa7\x1a\x2a\x9f\xd5\x45\x43\xc5\x71\xa5\x2f\xb5\x23\x0c\x96\x58\xa3\x8e\xce\x73\xd5\xd2\x23\xa4\x9c\x60\x3b\xdf\x84\x23\x8c\x60\xf0\x02\x1d\x3b\xbe\xa6\x77\xe3\x3f\x2a\xef\x77\x72\xa5\x5a\x99\xd6\xb4\x91\x07\xc6\xac\xc0\xd3\xc7\x28\x2e\x59\x3c\x16\x18\x5b\x8b\x18\x6b\xad\xdc\xed\x3e\x96\x51\x8e\x8e\xe3\x76\xca\x55\xfc\xfa\x3b\xa5\xcf\x7b\x9e\xa4\x27\xe6\xff\x0e\x83\xc5\xff\x20\xcc\xc1\x4c\xef\x50\x54\xa1\xd3\xf8\x57\xc6\x67\xfa\xb5\x13\x78\x76\xbe\x11\x69\x4a\x8a\x29\x75\x5e\xe8\xe6\x76\xf3\x12\x24\xfe\xcf\x5d\x24\x95\x8e\xfc\xc9\xf5\xa0\x3a\x35\xbe\xdf\x66\xd3\xa0\x9f\x11\x3a\x5f\x46\xda\xf4\xe2\x4f\x04\x3f\xfc\xe3\x7f\xbe\x65\x91\x1e\x17\x09\x84\x8b\x81\xf7\xf1\x5f\x09\xbc\x63\x9e\x45\x6a\x07\x09\xe8\x98\xd1\x74\x6f\x5c\x80\xf8\x43\x7a\xde\x53\xa7\x57\x81\x51\x58\x21\x97\x1b\xce\xcd\x6d\xc8\xbe\x4d\x93\x99\x97\xe7\x64\x1e\xde\xc9\x9e\x1e\xb3\x42\x50\x3d\x5b\x17\xfd\x4f\x7e\xf8\xb1\x0f\xb3\xb2\x80\x9f\xfc\x22\x0e\x05\xdf\x0c\x84\x9c\x93\x93\xb5\x79\x55\x84\x6d\x2b\x93\x38\x71\x7f\x48\xc2\xc5\xd7\xa5\xf5\x77\xda\xbd\x2c\x5b\x80\x2c\xe1\xeb\xf0\x70\x7c\x3d\x90\x43\x31\x32\x38\xaf\xe2\x59\x91\x89\x80\x41\xe1\xeb\xa1\xd9\xe0\xac\x97\x54\xbc\x1f\xfc\x59\x99\x78\xfa\xac\x38\x6e\x7a\x66\x46\x87\xc5\x4e\x7a\x16\xe4\x8a\xe1\x7c\x72\x5c\x08\x13\x6b\x53\x05\x66\x6f\x90\xb9\x38\x6b\x9c\x80\x8d\xe7\x10\x77\x40\x3d\x7d\x09\xc7\x0f\x39\xa8\x4b\x24\xad\xc8\xbd\x3e\x0b\xd3\xce\x7f\x35\xe0\x83\x9b\xb7\xe3\xd4\x59\x5e\x90\xb6\x80\x9e\xad\xd4\xfd\x57\x9c\x93\x69\x8d\x1b\x22\x09\x9c\xf6\x8a\x99\x38\x9d\xcf\xe9\x55\x91\xc4\x3d\x81\x9f\xe3\x9b\xc0\xe7\x97\xa2\x5c\x35\x74\x1c\xab\x0a\xbd\x13\x3c\xfb\x33\x74\x00\xf9\x7a\xc0\xd3\x9e\x98\xa8\xe5\xe9\x5c\xa4\x8b\xaa\xf0\x05\xb0\x3e\xc8\x10\x8c\x42\xf4\x60\x7f\x6f\x96\xf7\xb8\xdf\x9a\x89\x39\xd5\x0f\x65\xf7\x69\xda\x2e\xbe\x16\xe7\xbc\x50\xb3\x3a\x9d\xd3\xd9\x4e\xf3\xf8\x14\xf4\x3d\x76\x8a\xbe\x1e\xea\xe1\x79\x12\x0b\x3c\xdd\x2a\xad\x3e\xff\x77\x44\x61\x36\x75\x48\xa7\x15\xc7\xfa\x12\x24\x1b\x9b\x74\x14\xdb\xc3\x7f\x86\x25\x84\x4f\x76\x2c\xd8\x1c\x8e\xd8\x98\x5b\x77\xba\x71\xba\xe0\x92\xaf\x30\xd5\x36\x9b\xc5\xe9\x09\x1c\x3e\xa8\xa2\x17\xca\x7b\xdd\xdb\xe4\xed\x5e\x17\xa1\x1e\x92\x12\x77\xe8\xad\xf9\x7a\xc0\x27\x30\x46\x3d\x49\x0b\x8d\x9a\x05\xf4\x2f\x74\x23\x5f\x0f\x88\xf5\x81\xb1\xda\x1c\x25\xe4\x26\x26\xdc\x96\xf9\x05\x3a\x23\xd6\x95\xec\x32\xa5\x3a\x27\x27\x57\x3f\x0a\x75\x84\x65\xe2\x1b\x5f\xa2\xc8\xb2\xb4\xa5\x12\x7c\x29\xb4\xe1\xb6\xba\x4f\xe0\x6c\x5b\x1c\x72\xce\x29\x8b\xaa\x32\x7c\x3b\x72\x31\x97\xe8\x55\xf9\xba\xf4\x0e\x42\xae\x55\x16\xb6\xc9\x41\x40\x00\x74\x1d\xaa\x0f\xe2\xf3\x5c\x20\xd2\x96\xd0\x43\x7f\xc3\xe8\xfa\x27\x61\x17\xa0\xb8\xd8\x8b\xe0\x7f\x40\x0e\x09\xc2\xa3\xe3\x18\x51\x13\xb6\x1b\x15\x22\xbe\x2e\x7d\x72\x3b\x4c\x93\xbc\x1b\x65\x2a\x44\x2e\x0c\xd1\xe9\xef\x92\x68\xf1\xb5\xf4\x3a\x12\x5d\x44\x21\x65\xc1\xe1\xb1\x2f\x97\x23\x53\xd3\x53\x1f\x74\x77\xbe\xe6\x83\x83\x00\x9f\x78\x7b\x7d\xb3\xcb\x38\x31\x51\x53\x61\x98\xf6\x92\x02\x11\xf2\x92\xd1\xc8\xe7\x2f\xd0\xe7\xa1\x4f\xd6\x61\x82\xe0\x11\x9d\x12\x8b\x66\x1c\x76\x9d\xed\x24\xe1\xfd\x52\xcd\x78\x21\xb7\x45\xec\xf2\x3e\x72\x73\x21\x8a\xa7\x4b\x51\x7f\xbb\x5d\x56\x1e\xfb\x04\x1b\xaa\x77\xc9\x8e\xc0\xc0\xdc\x10\xcf\x7c\x0d\xca\xe1\x2b\x46\x6f\x3e\x7d\x16\xc7\x08\xa9\x88\xcf\x0b\xa5\xd8\xd4\x49\xa4\x73\x4a\xab\xba\x94\xfc\x94\xbf\xe9\x4b\xfc\xf6\x74\xbe\x9b\x1e\x02\xe5\x24\xce\xff\xe0\x07\x6e\x40\xeb\x22\x33\x85\xb0\x1b\x7b\x4d\xc1\xe9\x38\xff\xd5\xb5\x52\xa4\xd6\xd7\x03\xd2\x4e\xd0\x5e\x9f\x21\x31\xb0\x75\x48\x9c\x41\x9c\xf3\xe3\x64\x67\xe1\xdf\x5f\x2d\x2b\x1f\x3d\xc8\x6b\xfa\x02\x69\x09\x28\xef\x6d\x28\x1c\xc1\x7d\xb8\x11\xf8\x8a\xda\x0d\x48\x14\xd4\xd1\x92\xc8\x1c\x8e\xd6\x77\x3b\xe9\x6a\x66\xaa\xd5\xe2\x2c\x0c\xe7\xdf\x02\x99\x8b\xdb\x69\x45\x46\x23\x13\x85\x40\x7b\x0d\x7b\xca\x37\xe5\xdd\xfc\x47\xc5\x02\x2b\x06\xeb\xc6\x49\xf7\xee\x7b\xbe\x83\x2a\x6a\xe8\x44\xab\xa2\x5d\x31\x6b\x80\xf5\x78\x13\xdf\xce\x37\xe5\x83\x2e\xac\x51\x4d\xfd\xc9\x9e\x2a\x34\x97\x7c\x71\xc6\xf1\xbc\x7c\x3d\x10\xd2\xec\x19\x97\xb5\x83\x71\x44\x9e\x15\xc8\x34\x5f\x0f\xb1\xf1\x53\xb5\x8e\x4a\xda\x69\x8a\xb3\xcf\xe7\x80\x64\xcd\x9e\x89\x21\x36\xa4\x69\x5e\x83\x53\x30\x08\x63\x97\x48\x6f\xf1\xf5\x80\x66\x7c\xb4\xd6\x88\xd3\xb4\x89\x8c\x10\x9e\xff\x6a\xe9\xdf\xe5\x6a\xf0\xa0\xab\x69\xa4\xaa\x19\xaa\xdc\x78\x7d\xa3\xbe\x24\x33\x4a\x27\x04\xe6\x64\x64\x51\x24\x4a\xbf\x09\x7d\x03\x9b\x7a\x11\xde\x11\xc7\x13\x03\x89\xb8\xe9\xb1\x5a\xa3\x17\xc7\x51\xde\x26\x27\x14\x7e\xd7\xf3\xa5\xf8\x82\x63\x62\xad\xce\x0f\x44\xa9\xe3\xfb\x11\x6e\xb6\x7a\x2e\x16\x46\x40\x7b\x83\x3e\xc6\xd7\x03\x3f\x6b\xbc\x81\x56\x9c\xa6\x1c\x02\x40\x90\x90\xae\xe4\xeb\x81\x15\x36\xbb\x52\x68\x8d\x7a\x89\x95\x0e\x4e\x21\xf1\x4d\xe0\x43\xee\x30\xed\x74\x63\x15\x25\xfc\x54\x4f\xf1\xf1\x5a\xc3\xdf\xf3\x4d\x30\x10\x3c\x4c\x4f\x7d\xd0\x28\xd2\x50\x77\x0b\x6c\x24\xb2\xe8\x17\x49\xb7\xf0\x75\x70\xaf\x2b\x5f\x66\x1d\x57\x2c\xc7\x81\x85\x37\x83\x0c\xed\xa5\xd2\x7b\x39\x57\x87\x01\x05\x8a\x5e\x03\xc7\x85\x3d\x54\x12\x64\xeb\xad\xfa\x08\x48\x35\xe7\xa2\x5c\x23\x18\x83\xc7\x0b\xf5\xcc\xd7\x81\x3f\xcc\x79\x1a\x46\xba\x58\x40\x00\x0d\x0b\x71\x41\xe6\x2a\xcf\xd3\x2f\xe0\xe5\x2f\x05\xa2\xb4\xb2\x32\x20\x9c\x07\xc6\xa6\x6a\x79\x9c\xce\x8f\x78\x83\x57\xad\x7b\xa5\x7e\x8e\x14\x10\x1c\xde\x53\xf8\x09\xeb\xb2\x5b\xef\x37\x8f\x55\x01\xbb\x65\x1f\x5a\x24\x27\x97\x87\xa4\x3b\x8c\x93\x1a\x85\x91\x4e\xc2\x05\x91\x14\x46\xa8\x60\x33\x6e\xf7\xf8\xd8\x29\x2b\xe0\x0e\x52\x95\x77\xcf\x68\x9d\x74\x30\xdf\x2c\xfa\x60\x29\xef\x85\xa1\xd6\x4d\x52\x18\x48\x70\x5d\xa0\xcc\x16\x5f\x8b\x4a\x79\x43\xc5\x45\x64\x54\x45\x45\x04\xf7\xcb\xa2\x16\xbb\x1c\x3c\x14\xe1\x91\x3f\xf4\x77\xcc\xff\x9b\xc3\x33\x35\x3d\x75\x2f\xbd\x17\x0c\xe4\x65\x28\x79\xdc\x70\x6a\x98\x8e\xd1\xcf\x7d\xa0\x4e\xdf\xea\xd2\x99\x07\xc6\xd8\x2e\xbc\x8c\xe5\x43\xcd\xef\x7b\x10\x25\xa1\x32\xf0\x60\xdd\x3c\x28\xfe\x61\x05\x6e\x37\x07\x56\x94\x15\x41\x28\xb6\x42\x87\xe6\xff\x30\xfe\xdb\xfb\x90\x76\xc5\x0e\x3d\xb8\x48\xe6\x0a\x99\xb2\x3b\xb4\x5d\x10\xad\xd5\xf2\xe1\x4d\x4b\xff\xf7\x6b\x87\xd2\xbc\x4d\x6b\x8e\xd4\x29\xd7\x99\xf9\xa6\xdf\x0e\x76\x12\x48\x22\xf4\xce\x2b\x70\xb7\xf8\xa6\xdc\x2d\xf2\x02\x73\x3a\xcb\x35\x2d\xbb\xb5\x19\xfe\xa4\xaf\x89\x65\x57\x5d\x95\x15\x1d\x9d\x14\xf8\x5e\xd4\x1b\xff\x03\xbe\x97\x6f\x84\xcd\xce\x8b\x2c\x9a\xd5\xa3\xe6\xab\x50\xa6\x3f\x2a\xf1\x1f\xe7\x90\x97\x81\x5c\x5e\x2c\x45\x66\xbe\x52\x17\x31\xfd\xd4\x50\x33\xa1\x3b\x2a\x4a\xb8\xc4\x80\x0c\xd9\x79\x88\x2c\xd2\x4f\x37\x68\xa1\x6d\x2a\x6a\xd0\x69\x9d\xaa\x75\x7b\x05\x74\x81\x75\xa2\xe8\x85\xa0\xfe\x57\xf1\x42\xd8\x9b\x63\xa5\x2c\x11\x86\xaa\x3b\x42\xef\x60\x4b\x5b\xbe\x80\x73\x33\xf0\xce\xc4\xe7\xf0\x3a\xf0\x1f\x4e\xf5\xd5\x63\xe3\xde\xe1\xaa\x2f\x32\x42\xf3\xc2\xbb\xfe\x33\x72\x1a\x60\x82\xd7\x02\x1f\xb8\xc4\x69\xa2\xc9\xf1\x41\x42\x0a\xf1\x11\x5f\xf7\xed\xf7\xdf\xfe\xb1\xbf\x5d\x91\xe1\x05\xb4\x86\x8d\x35\x36\x1f\xe2\xbd\x93\xb5\x28\xcb\x54\x33\x52\x85\x39\x72\xc2\x6e\x08\xe3\x7b\x7e\x20\x31\x7f\x60\xec\xf1\x5a\xda\x38\xa4\xc3\x82\xcd\xa7\xd1\x24\x6b\x3f\x79\x8c\x8e\x3e\x5f\x8b\xf2\xdd\x7f\xb7\xef\x13\x95\xca\x9e\x71\xde\xe6\x75\x08\x00\xdf\x04\xbb\x1d\xf6\x26\x34\x21\x97\xc5\x0c\x20\x55\xf8\xfb\x58\x43\xbe\x19\x08\x04\xf7\x8c\xd7\xba\x69\x5e\x70\xe5\x1c\xab\xf9\x46\xe0\x57\xf6\x0d\x51\x94\xea\x66\x69\xb3\x17\x16\x51\x9a\xec\x30\x7f\x80\xb3\xbc\x55\x66\xb4\x7f\x05\x79\x30\x04\x50\x50\x98\x38\xa6\x5b\x17\xcd\x6a\x23\x5f\x48\x99\x94\x8d\x33\x58\x56\x24\x17\xd7\x4b\x0f\x9c\x30\xae\x9a\x15\xfd\x46\xd4\x6c\x1a\x0f\x80\xb6\x03\x21\xfe\x7a\x40\x19\x2e\xd8\x1b\x38\xdd\x1d\x2a\x33\xdc\xa4\xa5\x6b\x92\xda\x3c\x57\x0a\x4c\xcd\x7a\x9f\xe0\xa8\x3c\xdf\x45\x6a\x02\x1e\xc5\xf3\x78\x62\xbe\xa1\x27\x86\x01\x3f\x4a\xf2\x01\xe5\xfa\x0d\xb8\xd3\x88\xc6\xb8\x76\x84\xd2\xc0\x35\x2a\x13\x58\xc5\x60\x5e\x02\x9e\xf9\x05\xb8\x20\x78\xbb\xe7\xc8\xa5\x45\x7c\xfa\x4a\x29\xd3\x9e\x02\xc0\xf4\xf6\x80\x88\x3c\x5a\x9b\x51\x61\x1e\x75\xa2\x58\xd3\xe6\x70\x9c\x41\x9b\x63\x63\x0e\x6b\x97\x7b\xdd\x7c\xde\xd9\x65\x00\x78\x2e\x0b\x4c\xc0\x6d\x7a\x34\x5b\xb5\x1a\xe6\xfc\xe5\x61\x3b\x8d\x15\x8a\x32\x88\x24\x6f\xf6\x55\x92\xe9\x49\x6d\x75\x42\x64\x03\x54\x92\x6f\xa3\xf5\x80\xb7\x75\x83\x6b\xaa\x38\x2d\xc0\xd1\xc1\x4a\xde\xa0\xcc\x1e\xce\x1b\x72\x3c\xa8\xae\xfd\xb1\x5c\xdb\x97\x06\x1c\xd3\xf1\xfd\xb5\x7c\x5e\xc7\xb1\x7b\x39\xfc\x4e\xb5\x2e\x1d\x07\xf3\x2b\xd8\x83\x55\x21\xae\x49\x5a\x44\xa1\x56\x8d\x98\x1d\x09\xf8\xb1\x37\x03\x01\xe3\xb8\x39\x04\xee\x30\x55\x0b\xa3\x22\x7a\x46\xbb\xb2\x29\xbe\x79\x2b\x12\x22\x7c\xb3\x28\x32\x9a\x59\xae\x13\x15\xe7\x23\xf4\x1e\x16\xe7\xe0\x4f\x13\xcc\x29\xd2\x1b\xd7\x10\x23\xf3\x4d\xe9\x05\xbd\x95\xa9\x66\x4f\xc5\x15\x91\xd6\xfb\x0b\xda\x68\xbe\x16\x48\xb8\x22\xd3\x2a\xef\x65\x0b\x3b\xe9\x6f\x91\xdd\x3b\x4a\xd6\x11\xfa\xe0\x18\x7d\x0e\xb6\x9e\xa1\x54\x90\xe2\xf3\x50\xce\xa8\xd5\x5c\x45\x00\x67\xe1\x8a\x5e\x72\xef\x90\xab\x80\x95\xbd\x4e\xe7\x01\xa5\x8f\xab\x81\x7f\x65\x80\xde\xd2\x6c\xbb\xf9\x67\x4e\xdc\xd2\x71\x81\xbb\x78\x2e\x30\xf2\x0e\x43\x76\x84\x0e\x88\x95\x3c\xaf\x1e\xbf\x21\xf1\x23\x7f\x5c\x0a\x3b\xf8\x82\x48\xd9\x36\x58\x99\x3d\x6e\x0d\x79\xe0\x7d\xc7\xd5\x01\x77\xf9\x89\xf1\x9a\xea\xa4\x04\xc9\x3a\x30\xb6\x4a\x59\x85\x7f\xb5\x8c\xc0\x80\x6f\x44\x92\x97\x50\x63\x9d\x28\x61\x54\x0b\xd7\x87\xe8\xe5\x6d\xad\x68\xb3\xc1\x9b\x1e\xab\xcd\x1a\x2f\xd9\xe7\x61\xd9\xde\x59\x07\x6f\xb3\xf0\x4e\x8f\x99\x60\x13\x1e\xb9\x79\x75\xc4\xe3\x27\xa1\x1b\xf8\x26\x78\xb8\xdf\xc1\x32\x22\x57\xdb\xff\x24\xcb\x1e\xd4\x36\x83\x63\xf8\x46\xe4\xa5\x54\x3e\xab\x9b\xdb\x2a\x1f\xff\x18\xe3\x16\x2e\xd0\x86\xf1\x35\x3e\x04\xfd\xbb\xc1\x31\x36\x36\x8b\x03\x24\xe8\x6c\xa4\xe2\x90\xa9\x3f\x31\x60\xde\x8c\x91\xf7\x38\x02\x12\x71\x5b\x35\xc7\x37\xda\x82\xfa\x66\x0f\xeb\x91\x47\x6a\xaa\xd9\xac\x8a\x20\x9b\x32\x1d\x70\xed\xd6\x71\xe8\x67\xe8\x7f\xa7\x06\x5c\x93\xf1\xfd\xb5\x4c\xab\xa6\x0b\xaf\xe0\xd1\x41\xd9\xf3\x75\x60\x03\xf0\x58\x33\x7c\x0a\x2f\x7a\x55\xf8\x86\x57\x07\x24\x64\xcf\x9e\x5a\xae\x33\x9d\x68\x8a\xfc\x2c\x46\xce\x7c\x1a\x47\x64\x0b\xf9\xfb\xf0\x37\xae\xf7\x99\x8d\x1e\x27\xa9\x0f\x01\xad\x4a\xe7\x9b\xaf\x85\x99\xfe\xd8\xd8\x93\xf4\x57\x38\x63\x5c\x84\xe3\x9b\x61\xaa\xad\xa9\xc3\x38\x4a\x34\x2f\x2c\x1c\x65\x96\x58\xbe\x11\x80\xb8\x46\xa4\xad\x4a\x42\xb6\x83\x4b\x65\x7c\xe3\x62\xb4\x28\xc9\x7b\x99\x6e\x8e\xfa\xb4\xc8\xce\xba\xc8\xaa\x72\x41\x13\xf6\xeb\x1d\x5a\x53\x1c\xcf\x25\x1c\x49\x48\xcf\xd9\xa1\x56\x22\x4c\x55\xd8\xb6\x8f\x8b\x9d\x38\x19\xf8\x5d\x39\x59\xfa\xc0\xac\xc8\x54\xb7\xab\x9b\xb4\xd0\x30\x83\xd7\xa1\x72\xf0\x14\x08\xb1\x11\x64\x9c\x17\x50\xc9\x19\x15\x46\x71\x54\x2c\x8c\x9a\xcf\xc1\x90\x2d\x41\x5a\x61\xc9\xde\xc0\xea\xc0\xf7\xc0\x76\x41\x95\xbf\x51\xfa\xd4\xc0\xe5\x01\x31\x9e\x98\xa8\x11\xf0\x30\x7a\xc6\x56\x31\x28\xe1\xfe\xaf\x8f\xe0\x90\xf0\xcd\xd0\xca\x5a\x3a\x33\xa3\x33\x27\x8a\x88\xca\x00\x13\xe5\x6b\x81\xb6\x9d\x8f\x8a\x76\x33\x53\xf3\xec\x4e\x01\xfe\x70\x0a\xbf\xc1\x37\xa5\xd7\x6e\xf3\x94\x6d\x39\x30\xc6\xaa\xe0\x68\xe0\xb1\x44\x47\x8d\xbb\x6c\x61\x0c\x51\xab\x5d\x6c\xaf\x3c\x61\x61\xd3\xcf\x05\x5e\xc4\x96\x60\xcd\x90\x3e\x81\xf3\x68\x13\xb0\x46\x93\xf1\xb5\x2c\xdd\xb2\x83\xef\x2b\xf6\xa2\xe0\x40\xe9\xdf\x28\x69\x8d\x40\xca\x70\x8a\x38\xdf\x80\xda\x2a\x8c\x19\xff\x03\x7e\x9b\xff\x41\x94\x23\xc2\x4c\xab\x22\x9a\xa3\x40\x7f\xe3\x16\xed\xde\xc6\xad\xc0\x97\xea\x67\x54\x52\x58\xa7\x06\x95\x99\xf3\x58\x22\xbe\x19\xd0\x25\x4f\x3f\x5d\x6b\xa5\x52\x4f\x9f\xc7\xc9\xe2\x9b\xc0\xc7\x60\x5d\x9d\x85\x14\x57\xed\xfb\xc7\x4f\xf0\x11\xba\x11\x54\x7e\xd4\x9e\xad\x1b\x7d\x67\x3a\x6a\xea\xf7\x56\x1e\xfb\x84\xb7\xd3\x7b\xad\xb3\x32\x0a\xa7\xd6\xa5\x48\x0f\x8e\xef\xe7\xe4\xc2\x25\x5a\x63\xc4\xa4\xb7\x28\xa4\x45\xe9\xe6\x3c\x3b\x3e\xd8\x3e\x06\x3d\xc2\xa0\x6d\x04\x95\x83\x16\x3d\xfb\x36\xb6\xc2\x46\x2a\xd5\x83\xd3\xfe\x0b\x28\x11\x8b\x5c\xeb\x2d\x72\x96\x90\xba\xdc\xc0\x32\x23\xa9\xb2\x4e\xe6\x14\x8f\xb2\x73\x91\xd2\x93\xf0\xd6\x8e\xc2\x8f\xe5\x5f\x94\xd8\xf3\x2a\xf2\x64\xd6\x49\x16\x1e\xe2\x6f\x05\xde\x28\x9d\x25\x1f\xd5\xf6\x4a\x78\xa4\xfb\x7f\x2e\x3d\x74\x7a\x46\xc7\xd1\x61\xd6\x40\xc8\xa8\x9c\xc4\x3e\xf0\x8d\xc0\xa6\x44\x49\x18\xf7\x9a\xc6\x36\x39\x00\xc1\xaa\xa8\x04\xfe\x82\x80\x0d\x5f\x21\x49\x85\x6b\xf9\xb6\x84\xff\x1f\x97\x65\xc9\x1b\x4e\xe1\xe7\xdd\xb4\xd8\x66\x16\x1e\xd8\x21\xe8\x1f\xf2\x25\xb7\xee\x46\x46\x04\x12\xf9\x57\xa5\x7f\xbb\x51\x20\x75\xb0\x3a\x0c\x0c\x86\x17\x71\xae\xfc\x9b\x43\xf5\x5c\xa7\x93\x26\xf3\x5a\xc5\x45\x9b\x5f\xd8\xf5\x51\xf8\x4c\xdc\x99\x81\x64\xda\xe4\xe4\xbe\x5a\xa6\x63\xad\x72\x9b\x7c\x45\x00\xc0\xf9\x22\xbe\x19\x48\x04\xd9\xbc\x70\x12\xcd\xa6\x09\xe5\x0f\xb0\x02\xdf\xc0\xaf\xf1\x4d\xe0\xb3\xc2\xfa\x70\x57\x67\x91\x4e\x42\x24\xd3\xb0\x6d\x48\x85\xf0\xb5\xf0\x83\xf5\xe1\x30\xcd\x42\x13\x9f\x92\xb2\x81\x50\xbf\x4a\xcb\xc6\xd7\x03\x7a\xcf\x44\xa7\x33\x51\x1c\x75\xa3\x24\xad\x90\x60\x39\xf8\x9b\x79\x20\x8b\x68\x76\xf0\xca\x34\xc9\x0b\x72\xb4\xcd\x13\x0c\x7d\x76\x9f\x9d\x3a\x94\x46\x49\x11\x2f\x8c\xf8\x7c\xce\xb3\x24\x19\xc0\xdf\xc2\x15\xe5\xff\x0e\x61\xe5\x7f\x08\x2c\xde\xfd\x50\xd8\x15\x98\x7b\x46\x74\xf0\xcd\x90\x1d\xa1\xe4\xa6\x11\xc6\x1c\x51\x3d\x4c\xc4\x55\x78\x20\x7c\x33\xe0\x81\x1c\x18\x1b\xaf\xcd\xa4\x99\x6b\x9f\x02\x86\x15\xe9\x4a\xbe\x96\x65\x1d\x3d\x97\xce\xea\x0a\x9d\x66\xd8\xd5\xf3\x24\xd4\x7c\x2d\x1c\x84\xf1\x1f\xd9\x5f\xf5\xe5\xa9\x57\x45\x9d\xe9\xa5\xb2\x0f\xb6\xf0\x5d\xfd\x5e\xe1\xc1\xf1\xfd\x56\x4a\x76\x08\x97\xfe\x1b\x02\x2e\x71\xbc\x14\x79\xb4\x0b\x25\xe9\x06\xfe\x17\x54\x4b\xf9\x23\x84\xad\xb6\xc9\x51\xc8\x36\xdf\xd1\x36\xf0\xe7\x03\x9f\xad\x8a\xa3\xbc\xd0\xc8\x2a\x7b\xd0\xe4\x9b\xa4\xfb\x2c\xbe\xc3\xff\x71\xde\x4d\x67\x75\xde\xd1\x49\xa5\xb2\x67\x0f\xbf\xda\x0a\xe9\x16\xbe\x76\xd0\xc8\xb6\x56\x19\xa7\x9e\x10\xfc\x5d\xc6\x96\x00\x60\x7c\x12\xce\x08\x9e\xec\x9d\x01\x7b\x6e\x0e\x5a\x43\x65\x69\x47\x17\x5c\xc9\x01\x62\x02\xd5\x31\xbe\x16\xb0\xc3\x39\x9d\xc7\x7a\x26\x8b\x66\x67\x47\xcc\xeb\x63\x63\xb0\xfc\x08\xa5\x91\x3d\x40\x89\x0d\xfa\x0f\x5a\xe4\x1d\x91\x88\xeb\x25\x3d\x3a\xd7\xde\x75\x05\xc0\x99\xaf\x07\xc0\x5d\x7b\xf6\x50\x17\x15\xb9\x40\xc8\x57\xdc\x11\xb1\xe0\x4e\x19\x50\x0e\x4a\xe0\xa3\xb5\x99\x28\x89\xf2\xb6\x55\x24\xfc\xc8\x81\x70\xde\x5e\x15\xb9\xe1\xbc\xd7\xc9\xab\xa2\xeb\x06\x76\x06\xd9\x90\xb7\x29\x3a\xb4\x61\xdc\x20\xe0\xb7\xa6\xe6\x55\xd6\xb4\x18\x36\x78\xbf\x7f\x2e\xb4\xe7\xe7\xb1\x17\x28\x67\x7e\x3b\xd8\xe5\x16\x64\x5e\xe5\xef\x31\x02\x68\xd1\xde\x02\xea\x76\x3f\x4a\x74\x80\x2c\xbd\xaf\x6e\x1e\xe0\x7f\xa7\x84\xe5\xbd\x8b\x22\x7f\xc3\x76\xd2\x42\xf5\x51\x8f\xb5\x39\x58\x7a\x03\x88\xe3\x9d\xb2\x3a\x3d\xb6\x8f\xdd\xb4\xab\x30\x75\xd8\xb7\x6b\x81\x47\xc8\xdd\x82\x00\x21\xdf\x7a\x07\x56\xdb\xc6\x72\xe6\x6d\x90\x96\xdc\x5a\x37\xd2\x68\x4d\x96\xdf\xbf\x63\xd2\xa7\xe0\xb2\x28\x4c\xcc\x15\x38\xa0\xd8\xb6\x87\x61\x63\x90\x14\x45\x83\x07\x74\xcf\x71\x3e\x4c\x16\x2e\x64\x95\x63\x91\x16\x85\x70\x20\x91\x5d\x02\x34\x8b\xaf\xc5\x36\x86\x2a\xd3\x23\xe6\x8d\xe0\x9f\x8d\xe0\xc7\x10\xf8\x9d\x21\xe1\x41\x24\xfb\xa7\xc2\x80\xde\x1c\xda\x27\xa6\x3b\xdd\xb6\xca\xa3\x67\x34\x9f\xb1\xf7\x92\x26\xb8\x8d\x25\x72\x88\xc2\xe9\x31\x17\x9d\xf9\xea\x4b\xda\x2b\xba\xbd\x82\x72\xa5\x16\x29\x65\x5e\xd3\x03\xa5\x9c\x43\x90\x66\x33\x3a\x2a\x7a\x99\x46\x86\x0e\xcf\x76\x9c\x5d\x21\x57\x36\x71\xe8\xae\x2d\x94\xb5\xe1\x30\x9f\x7e\x1c\x6e\xd9\xab\x22\x00\x98\x6f\xeb\x44\xcf\xe9\x8c\x02\x00\xc8\xec\x3a\x02\x07\x24\xb2\xd1\x93\xe1\xba\xb5\xdc\xb6\xae\xc2\xc4\x22\x26\x3b\x15\x3c\xe0\xde\xa6\x99\x45\x33\x05\x5c\xed\xe9\x29\xc6\x0e\x9e\x23\xa9\xe1\x6b\x01\xba\x51\x89\x8a\x17\xf2\x22\xdf\x45\x92\x0c\xef\xf9\x35\x1c\x39\x14\x84\x6e\x07\x95\x47\x1e\x61\x09\xfd\x26\x14\x2e\x9c\xf2\x77\x51\xdd\x86\xc0\x7c\x8d\x42\x5d\xb8\x5f\x2b\xa2\xb6\x7c\xab\xf4\x10\x92\xdb\xa5\xaf\x13\xc0\x5a\xc0\x29\xfc\x1a\x70\xc4\xfc\x13\x81\x80\x9b\xbf\x0b\x67\xbd\x4f\x47\xc4\x8a\x4b\x5f\xf8\x30\x70\x70\x40\x37\xde\xa0\x1f\xc0\xb6\x73\xb7\x0e\x0a\x76\xdb\xeb\x56\x34\x19\x12\xa3\x73\x24\xe3\x21\xd3\x5b\x16\x65\xd7\xe4\x96\xba\x68\xd5\x42\x61\x8a\xaf\x07\x9e\xc6\x48\xdd\x23\x23\x66\x7d\x20\xd7\x6f\xc9\x3e\x9c\x25\xbc\x16\x94\x7b\x15\xaa\x0f\xeb\xbb\xe2\x4e\x4a\xdc\x6b\x46\x61\x46\x3d\x0f\xe6\x80\x5b\xef\xdb\xac\x1f\x9c\xdc\x2b\xd8\x0a\xe8\x8e\x6f\x89\x48\x6a\x41\xc5\x5c\xc2\x72\xa8\x66\x01\x71\x1e\xd6\xba\x97\x45\x73\x0c\x41\x47\x4d\x05\x28\x02\x87\xb3\x32\x9f\xb6\xf1\xd2\x07\xbf\x13\xa0\x48\xcd\xe9\xbc\x99\xa5\xdd\x2e\x25\x27\xcd\x1b\x89\x86\x9a\xc7\x79\x01\xaf\x94\x1e\x8b\x7c\x5d\xb8\x41\x33\x2a\x6f\x47\x69\xb2\x43\xa4\xa7\x6e\x43\xa0\xf8\x84\xd3\x5a\xa3\xc6\xb3\x8e\x95\xb4\xf0\x52\x81\x71\x40\xbb\x0f\xff\x55\xe0\xeb\x76\x7f\x84\x0d\x87\x66\xba\x1d\x3c\xe4\x1d\xb5\x22\x8b\x1a\x3d\x34\xab\xd2\xf7\x70\xb2\x98\x3e\x6b\x13\xc7\x0f\xb8\xd3\xa8\xb2\x4e\x5e\x64\x29\x94\xd7\x94\xcb\x50\x98\x1f\xb5\x09\x0a\x87\xb0\xe9\xe5\x61\x6c\xa3\x6b\x9c\x03\xce\x82\xf3\xcd\x80\xe5\xd9\xb3\xa7\x96\xe9\x19\x8f\x9e\x86\xdc\x5e\xa3\x0d\x17\x89\xaa\x71\x8e\x0b\x2b\x75\x5f\xeb\x56\xcd\x39\x9d\x15\x51\xae\xb3\x7c\xd4\xa7\xb6\x57\x11\x46\xba\x9c\xb5\xb1\x2d\x9c\x63\x0a\x3c\xa2\xe9\x2c\x0a\x96\x36\xf9\x24\x23\xc2\x6e\xc4\xe5\x2c\xac\x22\xea\x5f\xf0\xf7\x6e\x51\x17\x08\xa2\xb8\x57\x06\x5e\x65\x7c\x7f\xed\x93\x3d\xe3\x92\xb3\xbf\x08\xa1\x02\x6e\x89\xaf\x4d\x54\xeb\xca\xae\x45\x11\xeb\x56\x96\xf6\xba\x79\xd5\xfb\x51\xdc\x48\x86\xdf\xfb\x76\xe9\xb1\x96\x97\x45\xff\x6a\xb3\x97\x34\x75\x55\xe8\x11\xfa\x0d\xf8\x49\xec\x0b\xdb\xa2\xda\xe6\xc8\x66\x62\xa2\xd6\x4d\xf3\x3c\x6a\x44\x71\x54\x10\x0c\xc8\xf7\x21\x41\xa8\x6c\x53\xd2\xd0\x0a\x41\xd1\x6b\xba\x7e\x1b\x36\x72\xb4\x3e\xd6\xe0\x6d\x5e\x93\xbd\x93\xb5\x96\xca\x1a\xaa\xa5\x85\x83\xf6\x1c\x1e\x91\x6f\x5c\xce\x6a\x2e\x4a\x63\xcd\x58\x35\x87\xf9\x77\x41\x68\x65\x71\xb3\x5b\xff\xf4\xd3\x35\x55\x14\x51\x01\xb7\xde\x7c\x23\xdc\x0e\x86\xcf\xf2\xcd\x10\xb8\xfd\x54\xad\xd9\xd3\xb2\x4b\x34\x90\x5d\xa2\xc2\x53\xff\x1f\x8a\x36\xfd\x19\xd4\xfb\xdd\x75\xb3\xfb\x7c\xbd\xe8\xfb\x85\xd2\xae\xce\xa8\xf5\x7b\x9b\x87\x3b\xff\x7e\xd0\x97\xcd\x33\xfb\xcb\x6d\x41\xb4\xa5\x70\x2b\xef\x60\xaf\x6d\xbf\x10\x19\x0f\x46\xcb\x0d\x69\xe1\x98\xac\x1d\x4a\xf1\xd4\xdc\x33\x5e\xf6\x35\x90\xfb\xac\x9b\xee\x74\xd3\x79\x9d\x01\x08\x0a\x57\x70\x9d\x8c\x0b\x5f\x97\x77\xfb\x7a\xe8\x87\xa1\x66\xf1\x9c\x70\xfe\xfb\x02\x64\xb8\x48\xb7\x85\xce\xca\x74\x11\x71\x46\xfe\x29\x9f\xc7\x37\x2f\xcb\x37\x03\xe1\xd7\xa3\xb5\x28\x09\x33\xad\x72\xe7\xff\x30\x37\x01\x49\xad\xe5\x29\xf8\x6e\xd1\x36\x32\x17\x65\x29\x35\x68\x2a\x13\x77\xa0\xb5\xcf\xa1\xb4\x44\x32\xd9\xbb\x2b\x38\x47\x3b\x8c\xbb\x82\x34\xe4\x59\x59\x1f\xbf\x4e\xce\x2f\x6a\x4d\x17\x64\x39\x84\x3b\x5f\x90\x5e\x58\x0b\x04\x96\xe2\x34\x3d\x1c\xcc\xdc\x29\x5a\x3d\xfe\x5e\x81\xd1\x0f\x55\xaf\xd5\x2e\x68\xd7\x11\x9f\x5e\xa3\xa2\x07\x5f\x93\xfd\x77\x40\xf8\xc9\x49\xb6\x44\x5c\x81\xc1\xc1\x3d\x4d\x7a\x0e\x4e\xf5\x48\xfd\x6e\x91\x15\xbc\xdf\xa3\xa3\xde\x46\xb5\x13\xa6\xe4\x2b\x01\x79\xc1\x7c\x03\xff\x16\x22\xb9\xce\x2e\x97\xc5\x80\xd2\x06\xa1\x9e\x73\x77\x5d\x50\x6d\x5c\x20\x69\x84\x79\xbe\x22\xba\xa1\xfe\x10\x0b\x03\xc5\xc1\xad\xfc\x80\xe0\x7d\x99\xbc\x08\x3c\x7e\x65\xd1\x67\x6a\x18\x9c\x01\x9f\xf0\xcd\xfe\x94\xb5\x59\x08\xf8\x2f\xd7\x03\x91\xcf\xb9\x24\x72\x12\x16\xab\xa4\x51\x21\x80\x2f\xff\x9b\x64\xf2\x04\x14\x77\xca\xc1\x84\xbc\xfe\x9b\x6f\x47\xdd\x9c\x5c\x39\xdb\x99\x61\x1e\xca\x76\x6c\x6c\xce\x1c\x12\x82\x6a\x8e\x7e\x03\x78\xcb\x6b\xb2\x31\xe6\x16\xbb\xec\xd8\x90\x37\x86\x64\x01\x6a\x5d\x9d\xe5\x11\x57\x18\xf0\xa1\x25\xf9\x0d\xbe\x85\x4f\x27\xb9\xee\x50\x0a\xc4\xf5\xbc\xc0\xdd\xe5\xeb\xc5\x21\x4e\x88\x3e\x5c\x64\x8a\xdc\x7d\xdb\xb9\x42\x26\x8b\x9d\x42\xda\x1f\x38\x4c\x23\xa4\x0c\x51\x41\xbe\xe8\xd0\x81\x89\xee\x65\x69\xde\xcb\x5a\x3a\x4d\x46\x3d\x74\xf8\x8b\x04\x80\x80\xd5\x79\x0b\x0f\x6b\x21\x7c\xb4\x1b\x70\x52\xe0\x2a\xe2\xa7\x2a\xf5\x87\x05\x44\x35\x9c\xd5\x85\xa6\x88\x65\xc4\x7b\x93\xcc\x52\xe1\xba\x38\xa7\x2d\x70\x0e\x91\x0c\x5f\x97\x1e\xc3\xab\xa2\xb0\x1d\x51\x0c\x01\xaf\x62\x55\x70\x4b\xac\xba\x64\xde\x7c\x14\x37\x47\x7d\xe3\xdb\x39\x68\x45\x98\xe6\x2f\x97\xbe\xa7\xe7\xbe\xba\x2f\x9b\xdf\xbd\x28\xbc\xc7\x77\x83\x87\x85\xf2\x68\xa6\x59\xce\x4d\x67\x3e\x17\x06\xaa\x05\xbe\x1e\x28\x6b\x4c\x4c\x4c\xd7\xe6\x55\x96\x38\x05\x65\x8b\x79\x12\xc6\x65\xcd\x54\x2b\xd3\x89\x6a\xaa\x8a\xd0\xdd\x5f\xc3\x0a\xf3\xcd\x80\xe5\xdc\xff\x64\x6d\x26\x4e\xa9\xd8\x48\xd9\xb7\x61\xaa\x6c\x97\xc3\x28\x87\xed\x94\xd0\x67\x38\x3d\x55\xf8\xde\x70\x9f\x5e\x97\x98\xa9\xab\x02\xf7\x70\x52\x64\x68\xdb\x51\x23\xcd\x04\x3a\x9f\x4b\x3a\x16\x0f\x6b\x1d\x6d\x26\x48\x49\x81\x26\xb3\xf8\x5a\x61\x08\x5f\x18\x20\xda\x98\x98\xa8\x35\xa3\x4c\x87\x45\x9a\x51\x22\xd1\xc9\xce\xb2\xc4\xc5\x2e\x8b\x96\x9d\xdc\x44\x71\x2a\xbe\xc7\xe3\xd8\xb7\x2e\x92\xc1\x01\xde\xfb\xa4\xc0\x31\x7f\x8d\xce\x30\x7c\xae\x35\x59\x9f\xc0\x09\x82\x52\x65\x98\x3b\xc2\x89\x15\x68\x1c\x88\xf2\x1d\x28\x2c\xab\x6f\x49\x2f\x8a\x5a\x9a\x8d\x4b\x47\x01\x0f\xb3\x75\x57\x7a\x6c\x28\xfc\x65\x51\xb7\x0a\xd3\x5e\x97\x98\x5c\x5c\xb7\xfa\x5b\x81\xcf\x8b\xbd\x35\xac\x56\xa9\x8a\x76\xac\x0b\x2d\xaa\x90\x2b\xa2\x4c\xe2\x33\x5e\xe9\x9c\x2a\x54\x55\xe4\xe2\xde\x28\x7d\xa9\xfe\x1a\xa5\xf2\xa0\x9a\x2f\x94\xf7\x88\x2e\xcf\xa6\x7e\x80\x92\x11\x20\x77\x39\x0d\xef\xd5\x16\x61\x3d\xe6\x65\xcb\xa2\x39\x6c\x70\x71\x6f\xe2\xbd\x2d\xa9\x46\xc5\xf1\x00\xad\xe0\xb5\x01\xc4\x79\xbb\x2f\x50\xe7\x8c\x28\x02\xe8\x15\x2c\x29\xe4\xff\x34\x92\x89\xc8\x42\x2c\x41\x47\x59\x8f\x15\x29\x1b\xb8\x73\x27\xc8\xd4\x62\x1b\x6e\x0b\x88\xc7\x51\x6c\x96\x5d\x6b\xb3\xd7\xc8\xe4\xbc\x00\x23\x82\x63\xfd\xb2\xef\xd6\x4f\x3b\x9d\xa8\x28\x6c\x58\x60\x61\x37\xe6\x0b\xd1\x9b\x5a\x01\xca\x10\xce\xf8\x75\xd7\x14\x3e\x9f\xa5\x49\xb3\xe5\x3b\x54\x91\xe5\x78\x93\x5e\x9f\xaf\x1d\xf1\x93\x0a\x43\xdd\xa5\x9c\x75\xd5\xd7\x0d\xb7\xd7\xfd\x4e\x73\xf3\x16\x1e\xf4\x9c\xd3\x00\x59\xcf\xc4\x38\x9c\x4a\x46\xa0\xb1\x24\xc1\x46\x4b\x03\x2e\xd0\x81\xb1\xa7\x6a\x69\xaf\xc8\xa2\x56\xbb\xa0\xdc\xbe\xcd\x62\x99\xdf\xe5\xeb\x61\xbe\xf3\x7c\x9a\xcd\x3a\xd4\x0b\x67\x00\x48\x12\x5d\x23\xc5\xc4\x04\x1f\x80\xd7\x8d\x63\xe2\xe4\xa5\x28\x98\x11\xc1\x92\x58\x88\xa0\xe0\xb9\x81\xda\x83\xf1\xd2\x7b\x2a\x53\x49\xa1\xed\x82\x63\xd7\xcf\x0b\x0d\x08\x5c\x2f\xd6\xfb\xdb\x02\x72\xac\xc2\xd9\x24\x9d\x8f\x75\xb3\xa5\x91\x86\x80\xbf\xfe\x06\x0b\x96\x45\xa8\xd3\xfa\x20\xb3\x5d\xa9\x8b\x82\xeb\x60\xcc\x30\x35\x3d\x55\x9b\x37\xcf\xc2\x71\x94\xcd\x90\xd1\x7e\xdb\xd4\xd9\x66\x23\x4f\x2d\xb8\x78\x65\xd8\xa7\xd3\xb2\xcb\xf3\xb4\xdb\xf3\x6e\x96\x86\x4c\xc4\x43\x8b\x8a\x2c\x2a\xc8\xcd\xf8\xda\x15\x19\x1e\x49\x1e\xa9\x52\xc6\xc2\x66\xfb\xcd\xe9\x74\x86\x79\xcf\x1e\x2e\x6a\xdd\x12\x79\x72\x52\xf2\x45\x9a\xce\x8a\x36\x9e\x13\xa2\x8d\xe7\x44\xf9\x90\xf0\x7f\xb2\x6e\x8a\xc8\x81\xec\xbf\x25\xa2\xa2\xe7\x46\xa9\xef\x5d\x78\x71\x70\x10\x57\x49\x5a\xe0\x92\xbd\x2d\xc0\x40\x87\xd2\x44\x15\x6d\x45\x3d\xe0\xac\x48\xce\xe2\x88\xf3\xcd\x40\x69\x67\x7c\x7f\x2d\x49\x93\x6e\x96\xce\x44\x08\xb7\xb0\xab\x48\x00\xf0\xb5\xc8\x79\x87\x31\x31\x18\xd0\x66\xc0\xff\xb8\x0a\x3d\xcc\x37\x42\xe1\xcf\xab\x08\x70\xfd\xf1\xfd\x6c\x0e\x5f\x47\x9f\x24\xaa\xa5\x84\xf1\xdb\x40\xf1\x1a\x99\xb7\xeb\xa4\xbd\xf8\x4f\x45\xd2\xa1\x9b\xe9\x3c\xef\x65\x3a\x47\x73\x9a\x25\x3d\xf3\xce\xc8\x76\x08\x11\x10\x01\x77\x44\xfe\xae\xa9\x63\xb5\x60\x73\x10\x76\xfb\xa5\x5c\x6c\x16\x9d\x3d\xe3\xb5\x47\x74\xa7\x42\x3b\x6d\xe1\x1c\xf4\xdd\x16\xe7\x21\xf2\x88\x3a\x53\x51\xcc\xc2\x33\xe9\x14\x83\x3f\xc5\xe7\x04\x8f\x44\x1e\x35\x35\x90\x1d\xe6\x15\xe1\x7a\xde\x21\xcd\xc7\xd7\xa2\xad\xb6\xa1\xb2\x44\x17\x05\xd7\x19\x1d\x9f\x97\x79\x0a\xcb\xe7\xe5\xc1\x00\x9d\x28\x49\xb3\x51\xef\xcf\x9e\x95\xa0\x8d\x2b\x50\xfb\x70\xb2\x3e\x53\x7a\x8a\x16\xc6\x29\x41\xd1\x9e\x14\xda\x22\xd3\x2d\x12\x41\xd7\x7e\x09\x34\x0c\x1c\xe2\x11\x2c\xb3\x80\x3a\x4d\xb9\x4e\xc1\x21\x0a\xab\xd7\x6d\x2a\x77\x70\x61\x1f\xd6\x69\xf1\xf9\xda\xe9\x77\x95\xe7\x29\xd5\x23\x47\x3d\x87\xc3\x1f\xd1\xd3\x62\xd5\x2f\xe2\xa7\xe0\x61\x9f\xa1\x07\x42\x2e\x70\x57\xdd\xbb\x4d\xb7\x86\x78\x72\xb5\xae\xd6\x59\xac\x59\x17\x58\xe3\xe3\xea\xc3\x3f\x75\x74\x28\xdb\x49\xaf\x5b\xf4\x32\x9c\x20\xb8\x23\xcf\xc3\xf8\xf1\xcd\x90\xda\xd3\x54\x4d\x37\x7b\xa1\x2a\x52\xdb\x4c\x48\x4a\x6f\xcd\x82\xac\x44\x61\xd2\x37\xb2\x6f\xfe\xe5\xa7\x9f\xae\xcd\xb7\x53\x4d\x59\xc8\xf1\xfd\x2e\xa9\x6a\x56\xc4\x82\xe4\x2b\x07\xa7\xac\xbf\xe7\x74\x58\x98\x45\x45\x14\x46\x79\x87\x13\x31\x88\xf8\xd6\x02\x8f\xdb\x5c\x2b\xfd\xf6\x46\x1d\xd5\xd2\xf9\x36\x63\x96\x61\x7d\x8f\x07\xde\x39\x44\x0c\xce\x98\xce\xc0\xa3\x5d\x8f\x43\xf1\x38\x2a\x0a\xf3\x82\x96\x03\x69\x10\xc6\xfc\x54\xbf\xa1\x82\xbc\xa1\x3f\x12\xa5\x94\x2b\x82\x6b\xe4\xb4\xe8\x64\x44\x5e\x31\x5e\xd8\x66\xb4\x29\x34\xeb\x8b\x32\xfe\x41\xf3\x11\x36\xfe\x38\x1d\x1d\xfe\x23\x59\xe5\x81\x56\xe0\x3f\x1a\x96\x95\xa3\x8c\x67\x1a\x33\xa2\xc5\x66\x4f\x7c\x26\x05\x1d\x1e\x08\x32\x18\x29\x61\x5b\x26\x36\x07\x6c\x4f\x3f\x5d\x9b\x89\xb2\xbc\x18\xf1\xcf\x75\x89\xe8\x7b\x98\x9c\x4e\x52\xa8\x6d\x5d\xf4\x82\xbf\x31\xe0\x4c\xef\xd9\x53\x53\xd4\xb8\x28\xf2\xb0\x8e\x44\xd2\x13\x4a\x0e\x89\x66\x8d\x0d\x23\xe1\x66\xd0\x08\xfd\xbe\x05\x90\x3c\x24\xe0\x17\x2d\x9d\x44\x69\x2f\x8f\x17\x60\xd2\xe1\xe2\x81\x3f\x8e\xcb\x1a\xa5\x80\x3d\x0e\x01\x00\x4c\xd5\x3e\xd9\xd3\xb9\x79\xc0\x8a\x4f\xf2\x1d\x09\x7c\x75\xfe\x88\xc0\x21\xb6\xd3\xae\x71\x1e\xcc\xfb\x5b\xec\x37\x69\x7e\x94\x6c\x20\x68\x90\xce\xaf\x89\x1c\x4a\xd4\xe9\xf6\x5a\x49\x7f\x33\xe2\x41\xd1\x8c\xe8\xd5\x69\x91\xc6\x3a\x53\x49\xa8\xff\xbf\xe8\x3d\xac\xab\xdd\x8a\xd3\x06\xb2\xa4\x48\x7c\x7d\x5d\xd4\xdb\x98\xd7\xcf\xe6\x7a\x3c\x7a\x0b\xa8\x0a\xdb\x97\x31\xce\xa9\xa1\x2b\x32\x4f\x74\x45\x74\xee\x37\x55\x3e\x22\x31\x90\xa8\x5f\x6f\xdc\x65\x24\x6a\xe3\xae\x45\x51\x2c\xbf\x2c\xfc\xf9\xf6\x87\xdb\x1f\x16\x2b\xca\xcd\xcb\x7c\x33\xc4\x79\x7c\xbc\xd6\x49\x8d\xe9\xe1\xf8\x82\xb9\xb8\x02\xdf\xb9\x72\x46\xec\x43\x98\xa6\x99\xc5\x08\x0e\x85\x61\xf8\x38\xbf\xd0\x61\x3b\x49\xe3\xb4\x15\xd9\x0a\x21\x6c\xc8\xcf\x93\x22\x86\x23\x80\xda\x15\xaa\x46\xcb\x92\x9d\xaa\x30\xcf\xd3\x8a\xb8\x63\xd9\x52\x75\xf9\x3e\xb0\x35\xf1\xc2\xb1\x4a\x50\x9b\xd9\x58\x29\x89\xe2\x73\xa0\x07\xe1\xe0\x54\xad\x9b\x26\x91\xad\x74\x5b\xde\x37\x52\xc2\x7c\x23\xf4\x46\x87\xe0\xcf\x9a\x61\xe7\x70\x6b\x41\x10\xc3\xd7\x8b\x1e\x23\x7c\x2a\x10\xd6\xf1\x02\xbe\x51\x22\x65\xf9\xaf\x06\x5a\xc1\xf6\xec\xa9\x75\x63\x15\x72\x07\xb7\x75\xa5\xa4\x8f\x65\x61\x99\xba\x19\xe5\x7c\x44\x98\x59\x14\xee\x97\xa5\x19\xf5\x32\xac\x7a\x45\xda\x31\x06\x72\x94\x14\x25\xc4\x77\x03\xca\xcc\x66\x76\x3c\x00\xf0\xa4\x20\xca\xba\x22\x1b\xdc\x2f\x0a\x09\x3c\xa4\x3a\x55\x61\x64\x9e\x15\x7c\x2b\x97\x85\x06\x5e\x2e\x85\x07\x5c\xe8\xd0\x1d\x6a\xb8\xe4\x37\x25\xf2\xe4\xe6\xc0\xee\x18\x13\xd9\x8d\x09\xfd\x6b\xa4\x84\x19\x2c\x60\xdc\x2c\x9d\x85\xf7\x4f\xe6\xdb\x5a\x15\x7c\x2c\x04\xc3\xc1\x3e\xf6\x63\xd1\xfe\x80\xbc\x2f\x82\x7b\xf4\xba\x5c\x1c\xa8\x61\x53\xb1\x62\x5e\x67\xed\xb4\x97\x5b\xe8\x8e\x85\xaa\x89\xe6\xe6\xb3\xc2\x99\x49\xb3\x42\xb7\x98\x04\x01\x6a\x18\x4d\x3e\x7c\x2d\xfe\xd2\x18\x7c\xdd\xdc\x89\xc7\x44\xfd\x78\x3d\xf0\x2c\x04\x47\x61\x87\x6c\xc8\x2f\xe0\x7f\x68\xa4\x73\x7d\x86\xe6\x39\xf0\x57\xdc\x1e\x0c\xcd\x0d\xe2\x1b\xf8\x2f\xdf\x2c\x7d\x34\xf0\xe6\x90\x3e\xb4\x99\xb4\x97\x51\x6b\x0f\x83\x70\x03\xd1\xd5\xba\x24\x8e\xd1\x8c\xd6\xcc\x40\x69\x99\x7a\xcd\xf7\xba\x76\x17\x5f\x38\xfc\x5d\xe8\x2b\x38\x21\x97\x84\xbb\x7d\x4e\xf4\x6d\x98\x0d\xbd\x87\x3e\x84\x68\xf2\x5b\xa5\xcf\xe2\xad\x41\x26\x2d\x3d\xac\xe0\xa7\x38\xdd\x07\x72\x3c\x2a\x5a\x59\x6e\x06\xa2\xe7\x72\x0b\xe5\x89\x11\x38\xad\x96\x22\x2e\xfc\x0b\x4a\x0d\x43\x17\xdd\x5d\xa7\x63\x00\x50\xc8\x7a\x29\x7a\x15\x4b\x11\x5f\x5c\x16\x94\x44\x45\x54\xc4\xba\x59\x35\xdf\x6d\x3b\xca\x45\x5b\x8c\xd4\xa3\xa7\xca\x87\xa5\xae\xd2\xaa\x13\xbb\xb6\x58\xbb\x1a\x17\xa1\x1a\xf8\x66\x00\xeb\x3f\xbe\xbf\xd6\xcc\xd4\x7c\xc5\xa7\x4e\xd6\x45\x85\x78\x7d\x08\x3a\x7a\x5f\xed\x7b\xc7\xf7\x3e\xbe\x77\xff\x3e\x28\x0d\xee\x74\x29\x65\xd7\x8b\xc8\x62\x1b\xbf\x8c\x12\x9f\xb0\x4f\x55\x02\x7a\x6c\x30\x88\xc1\xe2\xeb\xcc\x8f\xdb\xf3\x41\x4f\x6b\x51\x78\x22\xcb\x56\xe8\xb9\x2c\x0a\x2b\x22\x05\xf1\x9a\x30\x8f\xaf\x0d\xa5\x96\x2d\x98\x2b\xc8\xfc\x1d\x42\x8c\xe5\x92\xea\x0c\x7c\x13\x3c\x38\x50\xc6\x51\xf9\x88\x54\x28\xbe\x4f\x0a\x8c\x5e\xc0\x99\x03\x0e\x83\xd4\xdb\xae\xba\x4d\x99\xa8\x66\x9a\x39\xba\x62\x88\xe5\x69\x59\x9e\x3e\x2d\x98\x1f\x5a\xaa\xd7\x82\xa1\x73\xe5\xb3\x49\x5f\x58\xb0\xd6\x3d\x56\x59\x4b\x8f\x08\x76\xde\x9d\x8b\x66\x29\x51\x0b\xb9\x2e\x1a\xca\xdf\x5f\xf7\xb1\x7d\x75\xd1\x26\x9d\x75\xde\xcd\x47\x21\xc9\x88\x0b\xb6\xd5\x05\x15\x31\xb0\x21\xae\x46\x33\x39\xc9\x87\x8c\xf1\x41\x38\xe1\x15\xd9\x00\xd4\xed\x66\xe9\x9c\x8a\x47\x2b\x8f\x7d\xc2\xf6\xa5\x89\xb2\xfc\x46\x20\xea\x05\x1b\xd8\x60\xf8\x45\xff\x9e\x7e\xc9\x76\xb2\x0d\x6c\xd4\xf4\x54\x2d\xd1\x51\xd1\xd6\x19\xb4\x9f\x83\xb5\xba\x7a\xc1\x5f\x05\x0f\x38\xc5\xae\x9b\x51\x08\x77\x52\xb2\x5a\x3e\x5f\x8a\x14\xf2\xf3\x92\x6f\x70\x4e\x27\x45\x1f\xb9\xe4\x6a\x20\xfa\xca\x57\xb1\x41\x78\xce\x7f\x23\x20\x3f\x79\xaf\xdb\x8d\xb5\xf5\x91\x9e\xb2\xbd\x99\xf8\xac\x6d\xd4\x14\x54\x56\x05\xda\x22\xc7\xf7\xfb\x8a\xfe\x41\x7f\x23\x49\xaf\xb4\xee\x58\x1f\xb2\xaf\x7b\x1a\x5a\x61\x2b\x15\x60\x91\xf1\xbe\x32\xac\xb2\x9d\xf7\xba\x3a\x0b\xd3\x4e\xb7\x47\x88\x40\x47\x9d\x88\xec\x27\x5f\x8b\xa8\x3b\x2f\x90\x29\x20\x4d\x6f\x15\xba\xa7\x01\xba\x30\x2c\x93\x1f\x9a\xd8\x2b\xcd\xba\x15\x7f\x70\x7f\xb5\x14\xdd\xa1\xbf\x2a\x24\x79\x5e\xc5\x31\xb0\x09\xa8\xe1\xaf\x90\x5f\x65\x81\xe3\xa4\xfb\xb8\x71\x01\x3d\x61\x8e\x8e\xcd\x61\x38\x5e\x1c\x12\x6d\x4d\xd5\x66\x52\xea\x33\xa6\x47\x80\xf4\xbe\x45\x8f\xcd\xd7\x03\xe6\xfb\x51\xf2\x1f\x63\x7b\xfe\xf0\x30\x9c\xc3\xe1\x9b\x61\x3d\xad\x2e\x27\xc8\xa6\x17\xc1\xf0\x49\xec\x33\xdf\x0c\x7c\xce\x22\x63\x8a\x76\x94\xcc\x56\x65\x0d\x54\x70\x34\x31\x48\x83\xe9\x7a\x86\x11\x4a\x36\x75\x07\x7d\x08\x48\xd3\xa1\x1a\xf4\x36\x1d\x29\xbe\x1e\xca\x94\x30\x93\xf6\x12\xca\x60\x8e\xf3\x62\x00\xbe\xc1\xb4\x29\xd8\x27\x7c\xfe\xa2\x73\x88\xc2\xb4\xbb\x40\x99\xd9\x3e\x1e\x51\x99\xfa\x3c\x2f\xb4\x4e\x43\xc7\x40\x43\xbb\x38\xd2\x45\xb6\xfd\xd4\x29\x1d\x95\x8f\x8a\x68\xe8\x08\x27\x06\x98\x3c\x20\x10\xfd\x5f\xaf\xd3\x77\xd8\xc6\x0e\xd9\x50\x31\x2c\x63\xd0\xe5\xf4\x16\x7d\x01\xab\x25\x2c\xa7\xd5\x51\xd6\x2f\x4d\xa2\xd9\x59\x1d\x55\x25\x33\x2f\x1e\x17\xc9\x85\x93\x52\x6c\xd7\x87\x85\xba\x0b\x69\x2f\x69\x8d\xf8\x0e\xde\x13\x65\xe5\xe3\x1f\xe3\x34\xfa\x17\x4b\x1f\x17\xfc\x15\xbe\x09\xab\xbc\x32\x94\xaf\x3a\x2f\x54\x56\xf4\x1b\x80\x65\x69\x00\x96\x85\x61\xd4\x87\x0f\xb3\x73\x6a\x61\x82\xf4\xf5\xb6\x35\x70\x38\x50\x5d\xc7\x5e\x5a\x5c\x1a\xcb\xa7\xb4\x86\x53\xb7\x47\x33\x33\xf4\x3b\x0e\x9b\x21\xe8\x5b\x65\xaf\x7a\xa4\xe2\xf7\x88\x7e\xea\x5b\xc0\x6a\xb8\x3e\x20\x97\xd2\xbb\xd2\xd7\x10\xf7\x12\xa0\x4f\x08\xd1\xde\x25\x6c\x00\xce\xc2\xa5\xfe\x86\x48\x07\x43\x3c\x15\x78\x66\x87\x37\x20\x08\x70\xcd\x8e\x96\xde\x96\xac\x04\x92\xd8\x23\xf0\xce\xc9\xbd\x8b\x04\x0d\x80\xfd\x3e\x0f\x80\x2c\x1c\xd3\x6a\x9d\x2c\x3b\x84\x99\x31\xe2\xb0\xa7\x95\x7a\xe5\xa3\x07\xf9\x95\xb7\x2e\x52\x0a\x14\x8e\xca\x4a\x20\xf0\x6f\xa3\x08\x64\x2d\xec\x94\x74\x15\xaa\xed\xbb\x16\xed\x29\xca\x7b\x9d\x8e\xce\x66\xd2\x78\x76\xc4\x4b\x33\x33\x2a\x20\x8d\xb4\x4a\x6f\x27\xa1\xc5\x50\xe5\x67\x87\x64\xe4\xd0\x3f\x64\xe5\x05\x29\xc1\x2d\xa0\x15\xe2\x9b\xfa\x83\x92\xf4\x04\xfc\x6a\xa0\x63\xc4\xdb\xdc\xa0\xb4\x08\x4a\x88\x27\x44\x62\xf1\x9c\x28\x95\xaa\xde\x5c\xc4\xd4\x90\x38\x96\xe7\xf0\xd6\x7c\x33\x8c\x07\x5d\xe7\x45\xd4\xf1\x4f\x66\xeb\x30\x62\xaf\x06\x31\x6e\xd3\x53\xb5\xef\xfd\xd8\x3f\x9e\xfa\xd8\x63\x93\x94\x8d\x80\x70\xa0\xf6\x03\x4f\xe2\x86\xec\xd5\xf9\xb2\x4c\x0b\x6b\x95\x45\x79\x7b\x1b\xfd\x33\x22\xa6\x37\x49\x5e\xac\x93\xe6\x2d\xc5\x69\xc8\xa4\x6d\xf3\xf5\xcb\x7b\x85\xe4\x93\x83\x04\x07\xb6\x0a\xd3\x24\xd7\x09\x53\xbf\xb9\x3c\xb6\x03\xa6\x63\xe2\x89\x45\xcf\x88\xb1\x1a\x99\x0e\x7b\x59\x9e\xc2\xba\x3a\x1c\xf3\xa4\xaf\xd2\xd8\x1f\xe8\xf6\x9e\x79\x26\xb6\xd5\x24\x20\x50\xd1\xd7\x61\x2b\xde\xb4\x64\x78\xa7\xeb\xc3\x00\xe9\x1d\x45\xa0\x4a\x9c\x68\x88\xd3\x6b\x42\x51\xbe\x36\x8c\xa3\x50\x1f\xee\x9a\x00\x30\x93\xb4\xd5\xf0\xdf\x98\x63\x80\x42\x37\x9b\x02\x1a\x88\xf8\xc7\x6b\x79\x3b\xe5\x91\x31\x90\x6f\xf8\xd1\x7c\xed\xac\x00\x91\xc8\x8f\x78\x69\xfe\x7a\x20\xf0\xe0\x5b\xea\x66\x83\x1c\xa1\xaf\x2b\x13\x2d\xb9\xa5\xe9\xa4\x42\x57\xb9\xa5\x99\x74\xcb\x24\xa2\xfb\x27\xf6\xee\xef\xeb\x3d\x7a\x49\xf6\x1e\xbd\xe4\x7c\xb9\x66\x4a\x3c\xdb\x9a\x8e\x1e\x44\x60\x0d\x41\x97\x9d\x63\xe0\x7d\xe3\x5f\x2e\x45\x51\xb3\x2a\x38\xb1\xb2\x34\x8e\x75\x06\x44\x20\x6c\xe4\x2b\xa5\xb7\xb7\xaf\x0c\xcb\x60\x36\xa3\x1c\x58\x52\x76\x11\x36\xa0\x36\x36\x56\x44\x3e\xaa\x91\xa5\xc9\xe1\x8a\x1c\x3d\x23\x51\x06\xe7\x06\xd9\x28\xf6\xd4\x72\x23\x64\x08\x01\x20\xb7\x18\x1f\xc3\xd7\x22\x20\x9e\x8f\x66\x80\x43\x40\x08\xc9\x50\x07\xbe\x09\x76\x49\xd6\x1c\x5a\x1a\x84\x9d\xd7\x24\x35\xdb\xc5\x40\xf4\xdb\x5f\x13\x78\xac\x8b\x02\x10\x30\x17\x85\x8e\xc4\x5c\x7a\xf7\xd6\x6f\xbf\x57\x2c\x62\x83\x41\x95\x88\x38\x8e\x07\xa2\x7e\x75\xdc\x01\x65\x9b\x51\x4e\x2c\xa8\x14\xfe\x21\xa0\x3a\x0d\x21\x82\xdb\x72\x07\x1f\xe3\xc1\x06\x02\x32\x8e\xbc\x35\x7f\x42\x64\x7b\xf3\x5e\x23\x2f\x54\x52\x44\x2a\xde\x26\x5a\xe6\x48\x67\x3e\x6e\x79\xd9\x04\x93\xd1\x2a\x7d\x0f\x53\x34\x48\x26\xc5\x23\xa5\xe8\x13\x3e\x22\xb2\x3a\x79\x5b\xcd\x62\x05\x90\x3d\xfb\x3c\xad\x00\x5f\x97\x7d\x7d\x69\x71\x14\xaa\x46\xbc\x30\x62\xbc\x05\x9b\x77\x30\x87\x02\x00\xf5\x4a\xdd\x8f\xfc\x39\x70\x51\x64\xd4\x8e\x8a\xd6\xfc\x5c\x25\xcd\xf9\x08\x8d\xc6\x9e\xb8\x01\x7a\x8d\xaf\x45\x6e\x38\x34\xbe\x62\x53\x15\x0c\x00\xb7\xf4\x5b\x64\xcf\x2c\x2f\xd7\x30\x86\x46\x6a\xe5\xa7\x65\xef\x0b\xb1\xf9\x66\x73\x5b\xfe\xf4\xd8\x74\xed\xc0\xd8\x53\xa3\xde\xe4\xbe\x09\xe1\x81\xf1\x7f\x99\x16\x04\x46\xf2\x55\xc1\x67\x79\x43\xce\x56\xb8\x14\xf8\x38\x2a\x6c\xab\x2c\xe2\x9e\x39\x97\x45\x79\x0b\xeb\xcf\x37\x82\x72\xb8\xab\xc2\x59\xd5\xe2\x6e\x6a\xe8\x7c\x36\xe5\x70\x71\x5e\x93\xe4\x85\x03\xf8\xd1\xfd\x4f\xd6\x66\xb4\xca\xe8\xc3\x00\x50\x6c\x04\x32\xf5\xe6\x53\x81\x83\x51\xe8\xde\xc9\x5a\xa6\x67\xa2\x44\xf3\x09\xe0\x44\x50\xe0\x6b\x10\x24\x89\xbe\xac\x9d\xe8\x2c\x2f\x88\x6a\xc7\xf1\x82\x3e\x17\x88\x1a\xd2\x73\x43\x2c\xfe\x54\x0d\xaa\xbb\xaf\x0d\x1e\x9a\xc2\xa6\x01\x7c\xd3\xd1\xec\x2c\xde\x44\x36\xad\x31\xec\x40\x32\x28\x1d\x11\xdd\xa8\x99\x2a\x8a\x98\x1b\xd8\xf6\xb9\xae\xe1\x8a\x68\x27\x96\xec\x80\x11\x88\xa6\x27\x26\x3c\xc7\x8b\x4b\xcb\x5e\x28\x45\xd4\x7b\x64\x40\xae\xf6\x3f\x59\x8b\x7b\x49\xd8\x16\x83\x88\x40\x1e\xcf\xd7\xf5\xfb\x1c\x14\x48\x67\x45\xd4\xc1\xe6\xa3\x20\x73\x55\x74\x6f\x5f\x35\x67\x4a\x8a\xdf\xde\xc9\xda\x9e\xf1\x87\x08\x86\x63\x71\x26\xde\x75\x3c\x22\x12\x71\x2f\x07\x82\x8e\xe7\x0a\x44\x14\x8e\xeb\x3a\x4e\x3a\x6e\x4e\xb0\xb3\x8a\x3d\xb9\x8e\xb5\x46\xfa\x8f\x7b\xb2\x2c\xd1\xb7\x09\xbb\xd9\xd2\xc9\x46\xf0\x2d\x75\xdf\x1e\xf4\x45\x6e\xdc\x82\x1e\xfd\x35\x9c\x23\x66\xf6\x47\x1d\x88\x07\xbe\x04\xde\xb8\x82\x6b\x1f\xf9\xed\x3b\x84\x1b\xb2\x65\x06\xf2\x5d\xb9\xd7\xac\x14\x54\xd3\x97\x07\xac\xc5\xf4\x58\x2d\x0f\xd3\xb4\xcb\x21\x2a\x13\xae\x43\x08\x2c\xfb\xfa\x7d\xb2\xde\xa8\xa2\x64\x44\xe4\xcb\xd1\x14\x80\x75\xbb\x20\x4e\xc4\xa9\xb2\x0f\x51\x2e\x9a\xec\xa2\x02\x3c\x5c\x08\x5e\xd1\xff\x0d\xfd\xca\x2c\xd0\x7c\x13\xf4\x05\x16\x7b\xdd\xa8\x85\x61\x6e\x47\x23\x56\xc9\x6c\x55\x10\xaa\x01\xe9\x04\xc7\x01\x6a\x1b\x7a\xe5\xc6\x30\x2c\x87\x3e\xfc\xc9\x5e\x64\x9e\xab\xe2\x61\xc6\xb0\x13\x7c\xed\xbc\x3e\xd5\x49\x74\x5e\x2c\x54\xc5\xdf\xd1\x3b\xf7\xd1\x44\x59\x02\xc5\x21\x01\xe1\x7c\x54\x84\x60\x4c\x1b\x06\xe1\xde\xfc\x01\xcc\x99\xb2\x55\x6a\x6e\x10\x0c\x7c\xc3\xc1\x39\xe1\x25\xcc\xa8\x8c\x1b\x99\x61\x51\xfe\x00\xeb\xcf\x37\xb2\x67\x26\xcd\x74\xae\x35\xf6\xd0\x4e\xaf\x30\x9f\x43\xf2\xe4\x8c\x44\xbd\x5d\x94\xdc\xcc\x27\x87\xf1\xfe\x53\x43\x83\x75\xe6\xf1\x77\x7f\x8c\x55\xe0\x9b\xbe\x30\xb0\xd0\xd9\x77\x91\x34\x5a\x06\xa0\xad\x1f\xe4\x3d\x3a\x23\xfb\xd4\x31\x18\xca\x99\x53\x13\x94\xd9\xd9\x1c\x38\x71\x90\xec\xb7\x03\x51\xb6\x64\x55\x8e\x98\x70\x47\x9d\x4e\x39\x4e\xc6\x79\x09\xfa\x7c\x45\xd2\x72\xe1\x55\xe1\xd5\xfd\x47\x02\xfc\x42\xf4\x8e\x89\xb6\xb2\x91\x3a\xce\x25\x7f\x97\xa0\x26\x95\xb4\x55\x5c\x82\x82\xef\x71\x05\xa1\xa3\x1d\x89\x63\x0e\x3f\x0c\x1c\xe8\xb0\x50\x99\x7d\x07\xa0\x74\x41\x27\x62\x9d\xf4\x5b\x94\xe0\xb7\x03\xca\x48\x8f\x20\x65\x7d\x65\xa0\xf2\x61\x62\xf0\x2e\x53\x85\x23\x3a\x7b\x9b\xd4\x18\x5f\x0f\xc4\xec\xb4\x61\x2a\x2b\xaa\xbe\xb5\x6e\x0b\xba\x23\x61\xd2\x2e\x8b\xe2\xd7\x92\x38\xf6\x2d\x52\xe7\x15\x51\x05\x65\x0d\x61\xc9\xd3\x37\x93\xb4\x12\x24\x24\x69\xea\xac\x95\xa5\x3d\x26\x5a\xb6\xc3\x29\xcd\xda\xda\xa1\x95\x22\x94\xcc\x74\x82\x11\x6c\x88\x02\x5f\x26\xdd\xcc\xd7\x02\x4b\x75\x48\xb5\x7a\x2a\xdb\x26\x48\x61\x96\x44\x02\x80\x33\xa3\x16\x38\xef\x3b\x87\x6e\x04\x9e\x32\xf9\x0d\xd9\x6e\x71\x7c\x18\x0a\x47\x27\x4d\x87\x80\x71\x93\x69\x1c\xc7\xcb\x09\x61\xac\x9b\xba\x93\x26\x28\xe5\x8e\x98\x6d\xb3\x98\x3c\x8f\xcf\x44\xbf\xbb\x9d\x82\x24\x47\x22\x0d\x0f\xda\x1c\x3c\x4a\x30\x9f\xb9\xf8\xeb\xb9\x81\xcf\xec\x7f\xd2\xb8\x41\x49\xa2\x63\xb2\x97\x28\x99\x42\x29\xf3\x75\x69\xf3\xdb\x79\x57\x87\x91\x8a\xa3\x67\x74\x93\x12\x6b\x1b\xd5\xba\x9c\x61\xc9\x9c\x36\x00\x0a\xdf\x21\xf5\x07\x15\xcf\x89\x4e\x4b\xf9\xe7\x0b\x60\x87\xd2\x70\x56\x02\xb9\xae\x0a\x20\xd7\xd5\x61\x54\x3d\xf3\xed\x28\xf3\x5d\xbc\x8c\xa1\xa7\x67\xb5\x78\x7a\x9b\x7a\xeb\x68\xd5\x32\x21\xa2\x9b\x03\xb6\x2a\xd8\x62\xfe\x09\xec\x04\xb2\x70\x48\xed\x00\x3c\xbb\xa5\x0f\x83\x5f\x44\x33\x51\x48\xf0\x10\x9c\x10\x04\x00\x2f\x8a\x60\xe0\xc5\xc0\xf2\x14\x3f\x92\xef\x26\x95\xc1\x70\x70\x01\xbc\x3d\x4b\x7b\x69\xb3\xbc\xa2\xc7\x73\x94\xea\x25\x76\x8e\x42\x3f\xf0\x4c\x52\xfe\x56\x1e\x79\xc4\x72\x7a\x95\x1c\xdc\x19\xc5\x61\x35\x5a\xc5\x0d\x5d\xb8\x03\xc5\x09\x0f\xe2\x0e\xde\xd1\x22\x9f\x04\x9a\xe8\xfd\x75\x72\xcb\xe1\x02\x7c\x80\x52\xfa\xc8\xcc\xbf\x22\x4e\x6c\xa7\x57\xf4\x54\x3c\x42\x9b\x83\x82\xe4\xdb\xf8\x76\xbe\x81\xea\xb3\x12\x22\x86\x7a\x9e\x1a\xf0\x10\xa6\xa6\xa7\x6a\xc6\x64\x14\x28\x74\x38\x2a\xd9\x03\x63\x6c\xf6\x2e\x43\x3e\xec\x1c\x21\xa9\xf0\xf3\xe8\xf0\x0e\xdf\x39\xc5\x65\x7d\x57\xe7\x9a\xf6\x8c\x90\xbe\x69\x05\xd5\x56\x41\xc7\x30\xee\x73\xfc\xe6\x6d\x90\xfe\x38\x22\x0a\x89\xef\x0a\xb0\x56\x53\xe7\x51\x0b\x8d\x64\xb6\x9d\xc2\x1c\x4b\xd7\x66\x31\xe9\x41\x28\xa4\x59\x61\xa5\xce\x42\xf4\xe1\x60\x5e\xef\xb3\xfc\xb6\xde\x35\x9b\xe8\x79\x34\x68\x4b\x26\x2e\x4b\x73\x28\x74\x28\x7c\x55\x54\xaa\x78\x40\x12\x58\x8b\x1e\x1e\x20\x41\x27\xb2\x5c\x2a\xd9\x48\xfb\x79\x41\xda\xcf\x0b\x0e\xb4\x96\xcf\x6b\x5d\xb4\xb5\xd1\xde\x7d\x1e\xbe\xcf\x58\xdc\x14\xc0\xa2\x53\x82\x53\x35\x2f\xd2\x6e\x57\x37\x77\xc0\x90\x31\xc9\x29\xfb\xae\xb0\x2c\xc7\x83\xca\x63\x9f\xe0\xd7\xe7\x01\x09\x0e\xf3\x38\xe5\x48\xf1\x2e\x0a\xf6\x70\x9e\x90\xc9\x7f\x15\x08\x46\x93\xe3\x92\xca\xeb\xb1\x69\x91\x84\x60\x97\x90\x6f\x06\x22\xac\xf1\xfd\xb5\xb6\x4a\x5a\x9c\xae\x71\xc8\x4c\xf3\x11\xbe\x19\xa6\x52\xd2\xd9\x58\xb5\xd3\x8e\x12\x41\x00\x37\x17\xf1\xcd\x80\x11\x3c\x30\x66\xfe\xbf\x68\x8f\x7a\x23\x8f\x55\xc4\xc6\xbe\x50\x7a\x97\xec\x5d\xc8\x85\x54\x04\x78\xfd\x91\xfa\x2e\x4f\x91\xd8\x08\x47\xfa\x60\x04\x7e\x2d\x6c\xad\x9f\xef\xb0\x66\x36\x93\xe8\x23\xd3\x86\x8a\x55\x12\x6a\xb4\xb1\x22\x0c\x43\xd9\xc5\xd2\x67\x78\x3e\xdf\x8b\x42\xd6\x43\x45\xa8\x0e\x87\xe6\xda\xb8\x2a\x19\x0e\x75\xaf\x48\x93\x28\x14\x04\x51\x57\xe8\x3b\xf9\x5a\xf6\x91\xa9\x5e\x61\x71\x6e\x7d\x83\x3e\xa6\x6d\x53\xed\xbf\x93\x1d\x0f\x17\xfb\xaa\x34\xdd\x5e\x71\x8f\x3f\xc8\xf7\x51\xee\x8e\xc7\xdd\xd1\xcf\xc1\xcb\xd8\xb9\x48\x21\x0c\x4f\x80\x26\x5b\x0c\x1f\xee\x18\x1d\x4f\xcb\x0c\x43\xe7\x0b\x4b\xbf\x0a\xa5\xc4\x13\x52\x83\xfe\xb2\x87\x39\xb9\x90\xff\xff\x06\x83\xef\x00\xe6\x0e\xe6\xba\x06\x97\xca\xa2\x8a\x87\xa0\x1a\x1b\x99\xf6\x74\x9f\x6e\x36\xec\x64\x3f\x2a\x19\x8a\xe3\xa8\x88\x5f\xb4\xca\xf5\x76\xaf\xc0\x01\xc0\xb1\xbd\x20\xfe\x30\x72\x0c\x86\x94\xc0\x25\xc8\x91\x6b\x85\x99\x1e\xe3\x63\xba\x85\xa8\x9a\xf9\x9b\x16\x3d\x7a\x3b\x51\x59\x98\x16\x51\x98\xcb\x69\xbc\x74\xbc\xed\x64\x5e\x1f\xcb\xb7\x7b\xf0\xaf\x2c\xd9\xb4\x6f\x03\x5a\xee\xd3\xc5\x3a\x6b\x8d\xfa\x36\x8d\x2f\xb3\x02\xb0\xf4\xdb\xe6\x99\x2c\xc1\x63\xc5\xf5\xc9\xf1\x20\x4d\xcb\x6a\x39\x38\x90\x7b\x5c\xc2\x9a\x6c\x13\x73\x5f\x77\xb3\x97\xd7\xae\x5a\xd0\x19\x77\x1a\x5b\x82\x3c\x9f\x02\x3b\x2b\xea\xbe\x79\x57\x85\x7a\x3b\x2d\xa0\xdd\x59\x31\x61\xed\x5d\x51\x39\x63\x35\xee\x04\xc8\x7c\x37\x4f\xcc\x2e\xfd\x5e\xbe\x40\x2a\x75\x63\xd5\x35\x6f\xc5\xa9\x2a\xda\x79\xda\x41\x86\x05\x5f\xfb\x45\xda\x7c\xbe\xf6\x05\xcb\x34\xcd\xf5\x5d\x82\x74\x6f\xa3\x14\xf5\xfe\x33\x94\x9f\xc6\x89\x16\x93\x82\x56\x76\xd7\xc5\x20\xcc\xbe\x56\xda\x23\x64\xf6\x2c\x9f\x83\x47\x49\xa0\x39\x0f\x46\x7d\x5d\x46\xff\x83\xd5\x9d\x47\x6b\xaa\xa1\x8b\xc2\xf9\x51\x76\x1e\x7b\xc5\x75\xe8\x2d\x09\x0f\x55\x85\x61\xda\xe9\x2a\x40\x03\x7d\xea\x06\xc8\x60\x0b\x45\xf1\x92\x77\x48\x85\x69\x23\xcd\x67\x23\x91\xc6\x3e\x27\xeb\xbe\x83\x67\xe9\xd1\x1a\x8d\x18\x70\x67\x09\xce\xce\xba\x20\xf2\x47\x04\x6e\x07\x96\x6c\x56\xfc\x13\x13\xb5\xbc\x9d\xce\x57\x05\x41\x09\xb7\x03\xd9\xe4\x68\xc5\xb1\x95\xac\x0c\x98\x8d\xe9\x31\xe3\x2c\x26\x55\x3f\xed\x72\xb4\x2e\x47\xc7\x79\x1f\x7e\x5d\xe8\xce\x76\xaf\xd3\x2d\x30\x0e\xc2\xcd\x57\xd9\xeb\x66\xad\x08\xdd\x1c\xb6\xb3\x85\x3c\xd6\x19\x6a\xd6\x28\xdd\x5e\x16\x7c\x39\x97\x87\x13\xc7\xc4\x3a\x2c\xb2\x28\x64\x0e\x43\xc6\x87\x89\xce\xa3\x6f\x89\x25\xd7\x61\x9a\xa4\x1d\x3a\xec\x13\x13\x1b\xc4\x40\xb1\xb1\x3e\x34\xdd\x6a\x82\x92\x11\x12\x78\x3b\xd6\xd0\x88\x9f\xa3\xb8\xf3\xe7\x05\xdc\x9a\xb6\xe9\x63\x28\xf1\x93\x6e\x45\x89\x6f\xd8\x84\x0a\xda\x10\x90\xd8\x8d\xf2\xa1\x21\xa4\xaa\x76\xe8\xd5\xb0\x49\xa4\x2e\x49\x92\xe4\xf3\x74\xd0\xcd\x39\x41\x02\xe8\xe5\x40\xe0\xb3\x5f\x1e\x90\x80\xa9\x27\xf7\xd5\x54\x94\x55\x36\xa7\x55\x6c\x2a\x66\xc8\xd4\x8c\x6e\x8a\xe1\x13\xee\xaf\x6e\x07\x12\x8b\x4d\x02\x6b\x31\xe5\xae\xbd\xf8\x30\xcd\xb0\xe5\x27\xb3\x75\x73\x31\x7f\xd2\xa3\xa3\x12\xa5\xc2\x6e\xc5\x9b\x93\xd3\xf2\x1b\x4f\x07\x9b\x32\x8b\x7b\xf6\xd4\x26\x26\xde\x23\x62\xd2\xeb\xd0\xfe\x48\xee\x5e\xa2\x14\x00\xd0\x8b\x28\xa0\xc1\xaa\xed\x40\x3d\x16\xda\x63\x15\xe5\x47\x58\x79\x34\x8c\xa3\x0c\x53\x85\xe9\x84\xd7\x7a\x1e\x10\x33\xd4\xae\x2f\x04\x62\xcc\xf2\x09\x68\x48\x3b\x0d\x86\xde\xd0\xf2\xb7\x57\x1c\x87\xd3\xf1\xc0\x08\x8c\xf5\x8c\x28\xb3\xc2\xdf\x85\x03\x07\x6b\xf0\x3a\xe5\xe4\x70\x5c\xed\x60\x62\x3c\xfe\xbb\xb0\xbd\x38\x5b\xb7\xc5\x50\xce\x0a\x2a\x3f\x24\x96\xdf\xff\x50\xdd\x83\xe7\x2e\x8b\x14\x72\x5e\xf4\x9a\x3a\x29\xf2\x6d\x9e\xfc\xf7\xb4\x28\x5f\x9c\xc4\x2b\x58\x74\xa0\xe8\x47\xdd\x5e\x17\xb0\xc1\x40\x80\xc2\x57\xcb\xf7\xf5\xef\xc4\xc4\x84\x05\xd0\x3c\x0c\x77\xd7\xcf\x83\x1c\x73\x83\x00\x2b\x1f\x3d\xe8\x59\xca\xdc\xf1\xbc\x41\x1e\x3d\x12\xdf\x57\x03\xf2\x7b\x5d\x16\xcc\x57\xef\xb7\xd6\x05\xf9\xe3\xbb\x48\xe2\xd8\xf1\xd9\xb4\x9e\xb6\xe4\x54\xf5\x33\xfd\x8e\x52\x02\x18\x7a\xfe\x2f\x02\xb1\xd0\x37\xc5\x90\xc0\x2a\x3a\x6b\x6d\x0d\x9c\xde\x1e\x51\xed\x57\xc5\x04\xf4\x65\x36\xdb\x8c\x89\x28\x05\xfe\x72\x6b\xbd\x72\x70\xca\xc3\x7b\x3d\xe7\xd1\xea\x77\xe4\x4a\xcc\xd2\xa6\x4e\x29\x99\x89\xb0\x90\xd7\x16\x80\x9b\x53\x92\xc1\x67\x59\x8c\x25\x75\x45\xcb\x34\x1b\x11\x94\x90\xc8\x4c\xa2\xd7\xfe\x65\x5a\x57\x47\x22\x66\xbe\xd4\x4e\xfd\xb3\x27\xac\xc8\x7a\xc9\x2c\x2c\x92\xc5\x38\x57\xfc\x44\xb7\x01\x23\x43\xbd\x51\x94\xbc\x12\xd3\xa2\x2f\x09\xf2\xcd\x4b\x2e\x77\xd0\x56\x8d\xc8\x62\x91\xa0\x1b\x91\xbd\xe1\x6b\x51\xa7\xc8\x0b\x15\xce\xf6\x70\xce\x1d\xb4\xce\xaf\xc0\xc5\x01\xa8\x8c\x71\x1b\x75\xd1\x9e\x49\x33\x26\x64\x81\x1b\xf0\x5b\xf8\x14\xdf\x88\x64\x6b\x37\x4b\x3b\x29\x73\x46\xe2\x34\x9e\x87\x5c\xf3\x8d\x0b\x2f\x67\xe2\x74\x7e\x87\xef\x1a\x5b\xf6\xfd\xb6\xff\xeb\xee\xba\xe0\x9d\xe2\x0e\x32\x68\x76\xf0\xa8\x5a\xb6\x54\x3f\x77\xf7\x62\x1f\x81\x4b\xe9\x69\x9a\x5f\xf3\xe0\x45\x55\x14\x3a\x4b\x36\x91\x26\x4b\x9c\xa8\x7f\x89\x46\x1a\xe7\x8c\x09\x70\x13\xd2\xc5\xfe\xde\x14\xc3\xfc\x2e\x0e\xd4\xbe\xc6\xf7\xd7\xe6\x54\xdc\x73\xc4\x96\x4c\xaf\x20\x5a\x3a\xbf\x28\x36\x24\x8b\x5a\x3d\xdd\xcb\xaa\xe6\x84\xe2\x1d\x6f\x08\x52\xa5\x37\x4b\xc1\x92\xef\x75\x75\x43\x67\xba\x10\xcd\x9b\xcf\x93\x54\xf0\x75\xff\xdc\x82\xa8\xf9\x7e\xa8\x05\xd8\xcf\x0a\x71\xea\x59\xc2\x13\xa3\x1a\x11\x75\x5f\x11\x8b\x79\x0c\xaa\xc0\xe1\x88\xa6\xc7\x2c\xd7\x1d\x1a\x33\xa1\xb0\x5f\xc4\xe1\x77\xfc\x18\x66\xa9\x20\x44\xdc\x2d\x0e\x84\xf5\x15\xd8\x05\x4b\x77\x26\xf9\xc9\xaf\x42\x97\xf0\x37\x40\xb5\xc3\xff\xd9\x4a\x4d\xe9\x28\x3b\x9f\x12\xd3\xf4\xb7\x51\xee\x07\x41\xc5\x97\x68\xba\x19\x54\x76\xa5\x5e\xf9\xf8\xc7\x38\x9a\xe5\xdc\x1d\x80\x11\xdb\xd1\x8e\x8d\xc8\xeb\x1c\x0c\x0e\x6e\x36\x44\x23\xf4\xf3\xb2\x02\xf0\x65\xa8\x2b\xb8\x71\x97\x44\xd2\x67\x05\x96\xc0\x4e\xca\xbd\xcf\x95\xaf\x9b\x51\xe8\xba\xce\xe1\xce\x5e\x17\xe3\x6c\x6f\xcb\x49\x1a\x6f\x0e\x9c\x72\x13\x50\x00\xb9\x44\xfb\x69\x13\x93\x62\xaa\xb3\xa0\xaa\xc8\xbb\x2a\x0b\xf3\x82\x33\x7c\xe6\xf7\x70\x46\xce\xcb\x91\x87\xe7\x1d\x4c\xb1\x47\x8c\xaf\xa1\x83\x1e\xc1\x02\xa0\x8e\xcf\xd7\xc3\xb4\x4e\xda\xc8\xc3\x5e\x86\x0e\x77\xd8\x73\x9c\x13\x4b\x1f\x6e\x04\xc2\xa2\x6b\x86\xf8\xa6\x6d\x1d\x83\x45\x1c\x52\xfb\x6a\x20\xe6\x19\x72\xda\x89\x1b\x54\xe8\x5b\x61\x8d\xaf\x49\x16\xc8\xa3\x81\x57\x6c\x49\x33\x26\xc8\xc3\x06\xb0\xee\xb6\xa0\x0a\x11\xc5\x13\x2d\x8b\x7c\x28\xbb\x21\xb6\xec\x2a\x79\x25\x34\x8d\x33\x37\x0b\x0b\xb6\x83\xd7\xc5\x88\xc2\xd7\x45\x0a\x67\x2e\x4a\x30\xc1\x0d\x66\x9e\xfd\x20\xbe\x19\x70\xc6\x9f\x7e\xba\x16\x2b\x8e\xaa\x90\x78\xc7\xa8\x0d\xbe\x1e\x06\x54\x63\xfa\xf6\xbe\xd9\xcf\x82\x6c\x01\x2c\xce\xd6\x8a\x0f\x99\x86\xd5\x56\x71\x5c\xf1\x26\xec\x22\xf9\x2e\x7c\x2d\x92\x1c\x59\xaa\x9a\x0d\xea\xc3\xae\x8a\x51\xc6\xc7\x85\xfb\x71\x41\xf2\x7c\xac\x0a\x10\x59\x37\x56\x79\x11\x85\x55\x8f\x86\x7c\xad\x14\xc5\x52\x66\x90\xb7\x9c\x0f\x82\x05\x43\x75\xc1\x8d\x70\x60\xac\x6f\xd4\x0a\xb2\x3a\xb7\x05\x7e\xed\x82\x00\xa2\xcc\x68\x9a\x6f\x88\xfa\x83\xc3\x34\x9d\x95\xe7\xd8\xcf\xa7\x6c\xc4\x51\x32\x1b\x31\xc6\x94\x1d\x36\x38\x28\xf0\x56\x4e\x0b\x8a\xcb\x0b\x7d\x48\x91\x61\x14\x2e\x54\xab\xe1\x01\x3c\x9c\x18\x0d\x44\x2e\x72\x18\x9d\x3d\xa1\x69\xd3\x99\x19\x3c\xab\x6d\xc1\x92\xfd\x58\x03\x49\xbb\x47\x8d\x03\xd1\xea\xe5\xac\x25\x2c\x23\xd8\x52\x29\x48\x82\x5f\x11\x28\x9d\x2b\xc1\x66\x92\xc4\x3d\x7b\x6a\xc5\x87\x2b\x5e\x17\x71\xc2\x8f\x6f\x04\x93\x79\x92\x66\x44\x5a\x29\x2a\xf8\xef\xd2\x2a\xf0\x75\x20\x91\x50\xdc\x61\xc7\xd9\xbe\x5f\x2c\x45\x45\xef\x17\x87\x34\x74\xd5\x12\x87\xae\x79\x8a\xad\x36\xd3\xc2\xf3\xcd\x30\xbc\x57\x57\xc5\xda\x04\xcb\x96\x0d\x09\x9e\xd3\xb3\x81\xc0\xe7\x3e\x3b\xb4\xbf\x3a\x56\xad\x96\x55\x5c\xb6\x2d\x8b\x16\xcf\xf6\x65\x0d\x4b\x70\x61\x40\x5f\xc5\xb3\x1e\x9c\x13\x75\xa1\x73\xc3\x76\x13\xe9\x73\x13\xed\x1a\xe5\x0e\x03\x08\x93\xc3\xd7\x9e\x6c\x4e\x15\x51\xc8\x6f\xe1\xd8\x29\x7d\xf6\x65\x49\x74\x25\xa4\xdd\x6e\xca\x23\xbd\x5c\x03\x98\x90\x4a\xdf\x04\xd2\x88\xe2\x38\xb2\xbc\x31\xc8\x15\xc2\xfc\xf3\xf5\xe0\xf8\xed\xe9\xa9\x0f\xd6\x3a\x3a\xc9\x8b\xac\xc7\xa1\x36\x83\xd3\x05\x27\xed\x45\xd1\x79\xd1\xd4\x73\x3a\x4e\xbb\x1a\xa4\xc9\x53\x8c\x7f\x01\x6f\xb1\xc5\xc2\xd0\x5b\xd8\x1b\xab\x7a\x73\x4a\x70\x8c\xf8\x5f\xc0\xf4\x02\x5b\x9f\x14\x30\x9b\x9b\x48\x3c\x22\x0c\x18\x1d\xc8\xf9\x13\x75\x04\xc1\x7c\x2b\x3e\xe1\xc3\x30\x5f\xbe\x11\x02\xac\xf3\x50\x75\xcd\x89\xfc\xf8\xc7\xfc\x98\xaf\xc9\x49\x7b\x2d\xd0\x65\x45\xa6\x5c\xdb\x0a\x9c\x3d\x76\xe6\xf9\x46\x64\x30\x1b\xbd\xbc\x7d\x9f\x18\x2b\xb6\x4a\x01\x11\x27\xb1\x02\xa1\x87\x3f\x2b\xa9\x27\x6f\xf6\x55\x0c\x4e\x8b\xec\xf0\x75\xf2\x96\xe0\x2e\xac\xc1\x79\x40\xc5\xe3\x72\xe0\x07\x57\x70\xc1\x80\x89\xf6\x45\x87\xc6\x35\xc9\x89\x70\x8d\xd2\xc1\xb6\x90\x20\x8a\xa5\xe8\x05\xe7\xb1\xae\xa2\x9f\x6d\x3e\x4d\x9a\x3a\x03\xbe\x17\x92\xf7\x2e\x03\x69\xe0\x99\xbc\x09\x0c\x1b\xb6\xa6\x44\x35\x83\xff\x45\x0c\xb2\x66\x9a\x10\xfe\x2b\x67\x6f\x33\x1d\xa6\xbd\x6e\x55\xcc\x4f\x03\x0e\x14\xc6\x15\xdd\xa1\x28\x97\xbe\x3c\x8c\x48\x21\x8b\x5a\x51\x33\x2a\xfe\x9a\x51\xde\xf7\x7a\x6f\x9c\xf8\xb6\xe8\x0f\x99\x86\x92\x24\xd8\x52\x52\x7a\x09\x6e\xa8\x64\x36\xeb\x75\x0b\x1e\x76\x38\x74\x22\xbf\x97\x0a\x15\x75\x74\x73\x1b\x2d\x30\x52\xd4\x3f\x23\xe0\x43\xb7\x02\x3f\x4f\xec\x67\x24\x77\xe5\x11\x7c\x9d\x64\x3e\xb2\x66\xa3\x6f\x7c\x5c\xa4\x77\x7a\xd8\xdb\x49\x92\x22\x08\xe6\x19\xfa\x66\x78\xa6\x57\xb0\xb6\x28\x64\x1e\xeb\xef\xc2\x35\x32\xe4\xaa\xc0\x1e\x38\x1a\x88\xf1\x79\xc0\x35\xd9\x3e\xca\x61\x1d\x83\x6d\xd5\xed\x46\xf1\x42\x45\xce\x89\x27\xe9\xb4\x33\xe3\x3d\xc5\xed\x5c\x14\xea\x1d\x02\xa1\x78\x0e\x5e\x3b\x8f\xbd\x82\x03\x6e\x67\x60\x89\x8c\xfd\x97\xc8\x07\xb1\xce\x9f\x98\x34\xb7\x21\x33\x03\xaf\x8a\xa9\x39\x6f\x3a\xac\xb2\x36\x2a\xad\x28\xd0\x93\x05\xe3\x76\x8a\x4f\x92\x65\x0d\xf5\xa1\xd4\x1b\x82\x86\xa5\xd3\x8b\x8b\xa8\x0b\x4a\x5e\x4b\xef\x24\xbb\x45\x8f\x8a\xa6\x7b\x9a\xd8\xd1\x45\x4b\xf2\x63\x9f\x60\x24\xcf\xc8\xa2\x59\x04\xbe\xae\xfb\x66\x4e\xd5\x2b\xda\x3a\x29\xa2\xd0\x88\x66\x5f\x71\xda\x9c\x14\x3b\x7d\xea\x1e\x81\x0d\xcd\xf5\x2e\xf3\x55\x3c\x3c\x86\x4e\x3b\x43\xa1\x71\xda\xd9\xf1\xa4\x3c\x13\xb3\xa5\x23\x7e\x81\xf5\x7c\x39\x10\x4c\x00\xc7\x03\x11\x46\xae\x50\xdd\xd1\x0d\xa5\x31\x0b\x8b\xb5\x5c\xa3\x73\xe6\x7a\x09\x1d\x3a\x71\xeb\x22\x05\x2d\xf8\xf4\x20\x0f\xdd\xf8\x7e\x34\x30\x19\x8f\x48\x94\x75\x56\xc5\x14\xb6\x75\xd1\xd8\xc9\x23\x00\xf9\x8f\xbe\x43\xfb\x6a\xab\xea\x15\xfd\x25\xc9\x1c\x0f\x47\xdb\xce\x16\x93\x23\x64\x93\x99\xa8\xa9\x93\x22\x5e\x90\xd4\x70\x81\xc7\x0e\xbf\x30\x0c\x21\x1a\x47\x85\xce\x54\x08\x6c\x19\x42\x52\xd4\x96\xb8\xdd\x41\x82\x56\x4e\x8b\xee\xc0\x2c\x4d\x54\xdc\x1c\x91\xa9\xfd\xd2\x47\x12\x6b\x62\x74\xeb\x1a\xa5\xa1\x6c\xfa\x7f\x73\x6a\x63\xef\x24\xe1\x69\xe3\xb4\xe0\xe0\xcb\xd2\xb9\x4a\x6e\xd7\x81\x62\xea\x9e\xf1\x5a\x2b\x4b\xe7\x13\xb8\xef\x10\x36\xd0\xdf\x40\x4a\x31\xd6\x1a\x26\x73\x55\x78\xb9\x9e\x46\x0a\xec\x3e\xd6\x8d\x31\x9f\xb4\xfe\x8d\x8d\xef\xbb\xb1\x56\xcd\x11\xef\xd6\x23\x4b\xed\x6a\xd2\xae\xcf\xe2\x54\x29\xe4\xec\x45\xb1\x44\x61\x5b\x67\xd9\x82\xa0\xfc\x40\xac\xc5\xd7\x03\x99\x76\x23\x45\x91\x6b\xf6\x83\xc5\xba\x20\xc8\x61\xfc\xac\xda\x22\x53\x11\x97\xe3\x5d\xb9\xc1\x51\xa9\x5c\x12\x58\xb1\xbf\x10\x11\x55\x37\x67\xa6\x77\x60\x1b\xaf\x89\x9e\xc6\x33\x32\x0b\x7b\x56\x00\x55\xee\xad\x7b\x25\xb1\x3c\x84\xc2\xbc\xa1\x16\xd8\xf6\x5b\xe7\x4e\x12\x28\xb8\x0e\xd7\xc4\x58\xcb\x3c\xcc\xa2\x2e\x7a\x34\xdc\x3c\x1c\x07\xff\x5b\x97\x8d\x07\x69\x3a\x9b\x6f\xab\x38\xe6\x9f\x6b\xfd\xfa\x7a\xaf\x47\xed\xd0\xeb\xc0\x43\xe4\xa9\x64\x7c\x53\x7a\x1c\xcd\xb5\x3e\xdb\x91\xc6\xe9\x28\xfd\xa1\x6b\xf1\x16\xf3\xe3\x84\x07\x76\x8d\xd4\xbf\x95\x6b\xbc\x22\x54\xcc\xd6\xba\xf7\x02\x42\xa6\x62\x16\xc5\x44\x8f\x84\x3c\x2b\x5e\xa9\xc8\xa2\x6e\x8e\x52\x0e\xbe\xf3\x0b\xa8\x1f\xf2\xcd\x00\x38\x74\xcf\x9e\x9a\x4a\xa2\x8e\x72\x6c\x0f\xf0\x46\x2e\x09\x4c\xd7\x25\x01\xba\x6f\xa8\x38\x4e\x53\x8c\xaa\x73\x69\x81\x13\x42\x61\x9e\x10\xe1\xe1\x7c\x5b\x9b\x40\x6f\xb7\xc7\x8f\x2e\x05\x7e\xa0\xfb\x1a\xa1\x0b\x51\x78\xbd\x22\xb9\x84\x99\x79\x9b\x9d\x27\x28\x24\x54\x0a\x40\xda\xe1\x10\x85\xc6\xd5\x71\x03\xd5\x0f\x8c\x71\xca\x18\x2c\x01\xc8\x46\x1d\x95\x6d\x37\xef\x90\xfa\x16\x54\x57\x4f\x39\xc8\x24\xa9\x52\xfe\xde\x40\xd4\x2c\xb6\xd4\x05\xca\xf9\x9a\x68\xe2\xe8\xf4\xf2\x28\xdc\xee\xb3\x3e\x37\x02\x31\x1d\x77\x19\x5e\x25\xb2\xde\x9f\x16\x1b\xf5\x9b\xf8\x6e\x74\xfe\x30\xf4\x82\xeb\xef\x81\xe8\x7d\x3d\x21\x38\xeb\x55\x98\x41\x59\xf1\x50\x5f\x81\xf8\x3b\x3a\x2c\x1b\x93\xa4\x89\x26\x27\x9e\x5b\xc5\x44\xfd\x0c\xdd\x8e\x58\x0b\x04\x04\xc0\x82\x0d\x26\x2d\x0e\x8c\x3d\x5e\xcb\x74\x27\x0a\x73\x6e\x0d\x45\x36\xe7\xf7\x4a\x01\xa9\x5d\xee\xa7\xc4\x7e\x40\x8c\x7d\x2c\x74\x36\x17\xe9\x79\xb4\xde\x5b\x50\x2f\xbd\xb9\x9d\xe5\x24\x86\xa4\x9d\xc3\x32\xf0\xbf\x08\x9d\xd6\x51\x59\x2b\xe2\xb4\x17\x7e\x7f\x4d\xcc\xef\x5d\xf3\x3e\x6c\xaf\x61\xfb\x23\x50\x71\x81\x45\xe0\x6b\x31\x33\xa2\xa5\x13\x4d\x88\x83\x3e\x75\x26\xf0\x6e\xcb\x62\x0e\x70\x23\x6d\xc2\x50\xd9\x01\x57\xc2\x14\x4a\xbc\xfc\xef\xf7\x1d\xfa\x59\x1d\x8f\xc8\x41\xcb\xb2\x59\xf0\xa2\x1c\x5f\xc9\x53\x50\x6c\x5d\xc1\x55\xed\xf5\x4c\x91\xce\x69\x4b\x18\xc6\x5d\xf6\xec\x4d\xc1\x0b\x3d\xda\x4f\x18\x36\x24\x7f\xdf\x8c\xf2\x30\x4e\x73\xab\xde\xb1\x10\x2f\xe2\x07\xf9\x26\x90\x3d\x5d\xaa\x39\xaf\x98\x00\xca\x72\x99\x98\x97\x45\x65\xe7\x24\x36\x0e\xc7\xec\x1b\x2e\x5a\xec\xaa\x70\xb6\x1f\xd4\xf5\xb2\x04\x75\xbd\x2c\x93\x4b\x44\x15\xcc\x4d\x3a\x3c\xfa\x00\x5f\x6a\xe7\x20\x0c\x8a\xdf\x64\xad\x93\x36\xec\xf0\x37\x80\xe3\xbe\x20\x50\x73\x5f\x10\x96\x93\x70\x14\x9e\x2c\x12\xf1\x0b\xc3\x60\x03\x3f\xea\x66\x43\x4c\x8f\xda\x55\x17\xa4\x41\x7f\x11\x78\x3b\xf1\x1a\xd6\x16\x39\x28\x31\xb0\xbd\x88\xec\x0c\x22\xf8\xef\x96\x11\xda\xc2\x49\xe8\xf7\x99\x7f\x56\x70\xf9\x74\x33\x3d\xa3\xb3\x4c\x37\x99\xe9\xc6\xc2\xcf\x8c\xde\x43\xb2\x77\xbd\xf4\x5c\xd9\xeb\x12\xdb\x71\x62\x18\x0c\x76\x56\xc7\x71\xda\x6a\x89\xe1\xee\x2f\x4a\x92\xaa\x17\x07\x3c\x9e\x3d\xe3\x35\xd5\x3c\x94\x46\xbe\x0a\xee\x7a\xad\x26\x26\x9c\xf3\x29\xb0\x85\xaa\xa3\x5a\xfa\x2e\xef\x0a\x2f\x23\x62\x80\x58\xf4\x0d\x8f\x03\x51\x33\xde\xf9\xa6\x38\x97\x47\x05\xc1\xf9\xcd\xc0\xa3\xdc\xff\x45\xe0\xd3\x67\xaf\x00\xf1\x6e\xb9\x0c\x48\xc5\x22\x28\x19\xc4\x66\x52\x67\x78\x5b\x75\xb5\x40\x58\x9f\x0d\x3c\xc2\xfa\xac\x40\x84\x75\x54\xa2\x5a\x3a\xcb\xb7\x89\xb6\x49\xb8\x35\x38\x3a\xb7\xfb\x66\x5f\xd1\xbe\xc3\xdf\xfa\x36\x99\x25\xdb\x3d\x2e\x98\x9a\x8f\x3a\x81\xd7\x87\x89\x67\x5e\x50\x60\x71\x03\x1e\xdf\x94\x96\x12\x54\x1d\x56\xa4\x37\x60\xd8\xce\x92\x31\x02\xe0\xeb\x2f\xa5\x91\xbb\x00\x7e\xd2\xfe\x88\xd7\x98\x78\x72\xff\x5d\x07\xe1\xde\x49\xd1\x41\x28\x9c\x8b\x08\x79\x29\x3b\xa0\xcb\x47\xd2\xe7\x45\x80\xa5\x93\x96\x6a\xfd\xb5\x0d\x4d\x3e\x8e\xee\xc6\x76\xf2\x1b\xd6\xea\x06\x0c\x24\xdf\x08\x82\xcb\x34\x6b\xa9\x24\x7a\x86\xd9\x33\x20\x43\x98\xb0\xc9\xd7\x03\x14\xe6\x13\x13\xb5\x46\x34\xbb\x69\x2a\x29\xcf\x5e\xe1\x1b\x89\x8c\x2a\xd2\x58\x4b\xbe\xaa\x73\x92\x33\xe9\x5b\x78\x2c\x0b\x9e\xf5\x8e\x89\x9c\xa9\xe9\x7c\xbd\x15\x71\xb6\x57\x5c\xc0\xda\xd4\x33\x3a\x31\x2e\xaa\x27\x5c\xb1\x8d\x4e\x38\x89\x57\x45\x78\x71\x03\xee\x13\x90\xaf\x9f\x2e\xbd\x65\x39\x2d\x52\xef\x0b\xbd\x56\x9a\xc7\x6a\x2e\x52\x23\x02\x68\x7c\xbd\xf4\x99\x3d\x54\x51\x2c\xd7\x13\xfd\xb2\x1d\x60\xe1\xfb\xad\x15\x26\xac\xfb\xec\x17\xfd\x9c\xcd\x84\x09\x12\x94\x38\x9d\x47\xb5\xd2\x32\x29\x82\xe6\xc9\x52\xa2\x55\xdc\x38\xed\xb5\x01\xd7\x9f\xa8\xe2\x14\x6b\x56\x64\x46\x30\x0a\x9a\xaf\x85\xeb\xd1\x55\x19\x48\x6a\x99\x43\xbd\xec\x23\x54\xf7\x06\x1f\xad\xaf\x91\x4a\x20\xbb\x8e\xa2\x64\xaf\xdd\x86\xa5\x81\xfc\xf6\xe4\x64\x2d\x24\x4c\x1f\x71\x87\xde\x19\x10\x99\xc9\xc9\x5a\xa6\xe2\x18\x19\x20\xe4\xc4\xb6\xd5\x3d\x82\x7a\xdb\xe2\xe6\x7a\xff\xf4\x58\x4d\x85\x61\x2f\x2f\x52\x87\x35\x76\x1a\xd6\xd1\x57\xae\xbb\x74\x54\xa6\xc3\xa8\x6b\x27\xd4\xf6\xf9\x33\x96\xb3\x43\x26\xe0\xb2\x59\x9d\x8d\x92\xea\x70\x43\x1c\xa6\xed\x18\xd2\x77\x4a\x4f\xd6\x0c\xb5\xca\x6c\x38\x81\x07\x3e\xfc\x9b\xd2\x71\x0a\xc5\x39\x32\x4a\xa4\xe4\xaf\x3e\xb0\xe8\x87\x8c\x31\x5f\x99\x8d\xbc\xe9\x61\x24\x8f\x12\x44\xaa\x86\xce\x58\x1b\x53\xc8\x71\x14\xa2\x13\xfb\x3a\xbc\x51\x4b\x8d\xea\x23\xb3\xb1\xbd\x53\x15\x81\x50\x7f\x47\xd4\xf9\xde\x19\x44\x43\xed\xab\xed\x7f\xf2\x6e\xfa\x3d\x06\xbc\xf5\x8d\xb5\x32\x0f\x85\x8f\x5e\x23\x41\x77\xd8\x48\x23\x96\x16\x1b\x29\x48\xba\x56\x36\x8d\xac\x3a\x38\xbe\x7f\x03\x60\x21\xfc\xf1\x56\x2a\x55\xdb\xe8\xce\x83\xdd\x2a\x8b\x3e\x5b\x1c\xeb\x86\xca\x50\x0b\x7d\xca\x81\x75\xcd\x83\xf0\xf5\xd0\x41\xed\x69\xbc\xd0\xe9\x7a\x5f\xd6\xf6\x7a\xf5\xcd\xab\xa5\x45\x81\x02\x5b\x17\xe9\xb4\x99\x34\x6d\xde\x6d\x1e\x45\x00\xd7\x6d\xaa\x0a\x0d\x9f\xd6\x5c\x9b\xf7\x40\x1e\x18\x7c\x4d\xcc\x3b\x89\x05\x70\x20\x72\xb3\x00\x76\x0c\x27\xed\x9d\x55\xc4\x32\xed\x4e\x2f\x67\x07\x74\x0a\x8c\xc7\x92\x13\xa3\x38\xcd\x8b\xfb\xcc\x63\x31\xb1\x37\x30\x53\x38\x99\x3b\x17\x85\xf9\x26\x97\xf3\xf6\xe2\x0f\x10\x87\x87\x03\xc2\xda\x39\xf8\x5f\xba\x1f\x7c\x20\xc8\x4c\x73\xed\x1c\xea\x86\x90\x5b\x4f\x71\x1a\x75\xdb\xa2\xd9\x19\x9b\xde\xf5\xd9\xc5\xff\xf9\xfb\xeb\x04\x10\xb0\x03\xdd\x44\xcd\x03\xae\x02\x72\x39\x0c\x67\xb6\xa3\xa4\xbd\xce\x56\x9d\x46\x34\xa7\x62\x9d\x14\x55\x9f\x4f\xb9\x20\xa6\xc9\x9f\x10\xac\x61\x6b\x43\x5c\x83\xa9\x5a\xde\xd5\xb6\xc8\x06\xff\xe3\x42\x29\xe6\xb0\x61\x7a\x05\x0a\x5c\x6b\x7d\xa0\xee\x19\x9d\xdd\x47\x4f\xc5\x21\x90\x08\x0d\xb9\x69\x0e\x37\xa0\x8c\x44\x8c\x07\x18\x08\x8f\xa0\x15\x8d\xa9\x37\x02\x31\x84\x64\xa3\x94\xae\xe1\x2f\x05\x02\xbf\xfa\x2e\x39\x7e\xee\xe8\x9a\x05\xb2\x01\x98\x3b\xe0\x73\xaf\x20\xde\x85\xb5\xbb\x82\xc5\xc6\x32\x32\x05\x08\x23\xcc\xfb\xf2\x63\x71\xcc\x35\x4d\x37\xe0\xc9\xfc\xaa\x4d\xb3\x6f\x3e\x13\xfb\x9f\xac\xb5\xa3\xa4\xa9\x3b\x51\x81\x16\xe4\x3e\x48\xa1\x4d\x51\x78\x26\x8b\xa6\x6e\x6e\xf7\x20\x32\xf0\x53\xf7\x01\xa1\x65\xf3\x84\x24\x11\xb2\x35\x6d\x7a\x09\x94\x1e\xb6\x43\x7f\x21\xfb\xb7\xbd\xbe\x59\x8d\xef\x19\xaf\x75\x54\x94\xcc\x64\xaa\x63\xb5\xb3\xa5\x19\x10\x4c\x44\x47\xc4\x7c\xa2\x96\x1e\x21\xab\xe3\xbc\x0a\x0f\xa3\x3f\x2e\xd9\x83\x8e\xd3\x86\x59\x77\x63\xd8\xe4\x2a\x63\x70\x1c\xbb\x28\x83\x7d\x02\x81\x6b\xbe\x28\x3c\xcd\xb9\x28\x27\x16\x73\xd1\x93\xb1\x2a\x58\x73\x57\x07\x47\x84\x53\x8b\xd1\x21\x01\xce\x80\x4f\xb8\x24\x49\x4e\x8c\x8d\x77\x39\xe9\x54\x15\xce\x65\x82\x30\x7d\x25\x10\xb9\xf8\xaf\x08\x00\xb4\x4e\x8a\x76\x2f\x8f\x94\x73\x50\x45\xa1\xcf\x8d\x6d\x75\xb6\xaf\x2f\x1e\x00\x7e\xee\xb2\xe8\xfd\xbb\xdc\x07\xa9\x6f\xa6\x05\xb6\x01\xba\xf8\x8c\xb0\x6a\x67\x04\xcb\x46\x37\x56\x0b\xdb\x3c\x86\x19\x90\x13\xdb\xe0\xe2\x17\xfe\x3c\x0f\x82\xf0\x00\xed\x29\x37\xb4\xc8\xc3\x17\xef\x04\x3b\x23\x8a\x9d\x3e\x52\xfb\x1f\xb7\x8b\x3a\xcd\x06\x19\x05\x26\x2f\x12\xa3\x4d\xb6\x63\x88\xa8\x85\xf1\x55\xf6\x8c\xc3\x7b\xff\xd3\xfb\xeb\xde\xc5\xdf\x2e\xc9\xfb\x4e\x0d\x9d\xe4\x4b\x9e\x67\x42\xaa\xc8\x16\x59\xe8\x8b\x99\x24\x47\x04\x93\x2f\x0c\xf4\xa9\x4e\x4c\xd4\xe6\x53\x26\x82\x75\xdd\x25\xae\x17\x65\x59\x4c\xdd\x6f\xeb\x2c\x62\x46\x09\x47\x31\x69\x54\x81\x6d\xef\x1c\xc6\x59\x36\x97\x16\x56\x30\x2d\x06\x44\xf4\xbd\x0d\x42\xd2\xa8\x6a\xac\x0f\x87\xb6\xc3\x13\xeb\xfd\x29\xe1\xfa\x7f\xca\x05\xb7\x69\xd6\xe4\xd9\xb8\xf8\xb6\x5b\x81\xe0\x2a\xbf\x35\xf0\xa2\x7b\x27\x6b\x0b\xba\xa8\x52\xee\x0d\x5e\xcf\xa9\xd2\x4f\xef\xe6\xdc\xe8\x77\xe2\x26\x9b\x7a\x72\x5f\x2d\xca\xf3\x9e\x3d\x03\xc3\x9a\x2a\x37\xe7\xb4\x9e\x18\xaf\x65\x36\x34\x71\x16\x42\x34\xe4\xef\x16\xd3\x12\x7a\x49\x91\x2d\xdc\x6b\xa4\x0a\x8f\x7f\xb9\x14\x93\x28\x03\x61\xeb\xce\x43\xc7\xbb\xd6\x0b\x3f\x9b\xe6\x52\x5f\xd7\xc8\x51\x31\xa1\x65\x43\x74\xcd\x5d\x42\x5c\x8c\x3d\xfb\x7a\x20\x28\xa8\x78\x24\x0a\xf3\xd8\x92\xd2\x81\xc4\xee\xa8\x9b\x37\x80\xaa\xdc\xb6\xb8\x69\x38\x82\xf3\x37\xe2\xa8\xdb\xb5\x6d\x0c\x16\xb6\x4f\xdf\x6e\x71\xfb\xde\x97\x7b\x72\x72\xbc\xea\x0b\xa4\x57\x48\xfd\x20\xb3\xd8\x37\x7b\xea\x25\xf1\xf5\x61\x5b\x75\x3b\x3c\x06\x02\xab\xf2\x76\x20\x0e\xd8\xdb\x7d\x13\x1d\x54\xd4\xc9\x77\xf8\xca\xd0\x51\xb8\x32\x78\x8e\xcb\x78\x28\xe4\x18\xaf\xe2\x95\x71\xfe\x2e\x01\x74\xe7\x46\xc4\x3b\x9c\x22\xe0\x9b\xb0\x6b\x97\x02\xcf\xe6\xfd\x95\x01\xf0\xbe\x91\x92\x74\xc6\xc4\x68\xd1\x9c\x16\x13\x76\x2e\x88\x09\x3b\x17\x86\xb1\x11\x36\x32\x55\x44\x26\x0e\x53\x15\xe1\xcf\x1d\x11\xe4\xb6\x47\xca\x87\x65\x81\x66\x46\xe7\x79\x94\x26\x2a\x26\xc2\x16\xc7\xa5\x20\xd1\x65\xe6\x7b\x90\xde\xdf\x52\x97\x64\xa0\x5b\x16\xfb\xd2\x70\xbe\x59\xae\x9d\x02\x49\x87\x88\x71\x49\x74\x76\xf4\x91\xe4\x5e\x1a\x86\xc4\x9b\x8b\xf2\x9e\x8a\xf3\xef\xdc\xc5\x22\x5d\x98\x22\x8a\x47\x44\x27\x1e\x4a\x69\x80\x25\x9c\x12\x38\xd7\xca\xa2\x9f\x2d\xf1\xd6\x40\xc6\xf8\xc0\x18\xe5\x1c\xab\x22\x07\x8b\xd4\xbf\x20\xf9\x1f\x77\x03\xa2\x37\xaf\xb9\xd1\x9a\x44\x87\x5e\x44\x39\x12\x34\xc0\x64\x7e\x3d\xf0\x23\x83\xbf\x5e\x7a\x3c\xa3\xea\x12\xf1\x0f\x11\x90\xf6\x0f\xe7\x9f\xee\xaf\x31\x23\x79\x02\xf8\xa7\x6b\x23\x76\x2d\x51\x3b\x40\x36\x07\x20\xf6\x7f\x09\xee\x17\x4d\x65\x05\x6d\xe7\x4e\x3a\xdd\x7d\x43\x10\x21\x90\xd7\x03\x4f\x8d\x63\x8b\x2d\xf8\xce\x6a\x5d\x4c\xf4\x44\xe1\x13\xa1\xc8\x65\xb1\x96\x5b\xe1\x22\xdb\x80\x51\xce\x02\xdf\x1c\xc1\x3e\x5a\x53\x79\xde\xeb\x80\x6f\xcb\xc6\xd6\xe6\xc7\x85\xa3\x62\xa7\x02\x6f\x15\x55\xd0\x25\x11\xad\x15\x51\x78\x9f\x8b\x28\xbf\xef\x87\xea\x02\x03\xb2\x7d\x11\x96\xd4\x35\x0c\x1a\x13\x02\x63\x73\x0d\x85\x11\x1b\x55\x9a\x87\x44\xa6\xfd\xd9\xd2\x17\x5f\x6e\xf6\x13\xe2\x9b\x07\x83\x21\xe6\x57\xb4\xbe\x1e\xad\x1d\xa2\x8c\x9b\x81\x48\x38\x2c\x8b\x74\x2a\xb3\x17\xd9\x46\x67\xac\xaa\xed\xe6\xd8\xcc\xc1\x7a\x60\xec\xa9\x5a\x23\x4b\x55\x33\x54\xd4\x53\x45\xb5\x0a\x84\x97\x80\x61\xe1\x9a\x31\x7e\x62\xc6\x8d\x07\x60\xdf\x27\x48\xb7\x54\x98\x76\x2a\x7e\xa6\xe3\x35\x2a\x77\xf0\xb5\xec\x3f\xcd\xd2\x74\x36\x5e\x48\xaa\x62\xde\xc0\x65\xfa\x5b\xfc\xdc\x55\x42\xe5\x20\xdd\x5e\x95\x9d\xaf\x8f\x14\xef\x15\xcc\xd4\xc7\x11\xc2\x8a\xa0\x71\x1f\x4b\xf9\x7d\x75\x91\x5a\xbc\x0b\x35\x7c\x8b\x23\x12\x8d\x16\x5b\xeb\x9e\xc9\xe1\x7a\x20\x72\xfc\xf7\x22\x92\x72\x63\xf9\xcd\x76\x62\x6f\x6f\x10\x34\x83\x3f\x0e\xae\x2e\x88\xd3\xe8\xa2\x70\x08\x56\x68\x6f\x01\x37\xdf\xcd\x0d\x2d\x00\xeb\x5f\x27\x04\x02\xf4\xd4\x0b\x08\x14\x5d\x42\xdd\x39\xac\x57\x49\x02\x2c\x67\x9c\x47\xbb\x8f\xd4\xc9\x68\xda\xac\x3b\x6d\x03\x96\x02\x38\x26\xb8\x8c\xd5\xba\x9c\xf1\xd0\xcb\xf5\x2e\xdf\x02\x74\x4d\xf2\x86\x6c\x5b\x14\xb8\x90\x8b\x0f\xd6\x7d\xc0\xf8\x7c\xe9\x83\xe9\x15\x74\xbc\xf2\x84\x47\x3a\x65\xd0\x99\x3c\x95\xd1\x8d\x89\x33\x6b\x61\x47\x3f\xd2\x5a\x20\xea\x5b\xa3\x8d\xb5\x9e\x97\xe8\x6f\xfe\xed\x61\xe8\xdc\x99\x5e\x96\x28\x26\x96\x81\x6c\x63\x61\xf8\xda\x8f\xf4\x52\x45\xa2\x33\x9b\x44\xc0\xda\xbe\x04\x11\x80\x1b\xc1\x73\x41\xf0\x3e\xdb\x06\x60\x71\xd3\x63\xd3\xb5\xb6\x8e\xbb\x1c\xa9\x41\x51\x3f\x8b\x25\xe5\x1b\xd7\x2b\xd1\x88\x7b\x1a\x04\x20\xd6\xf2\xe1\x57\xad\x78\xf8\xd6\x82\x15\x7c\x01\x22\x44\xa4\x11\xe0\xad\xec\xaa\x8b\xe2\xf3\x7a\xe9\xcb\x31\x99\x36\x6a\x89\x11\xa3\x0e\x43\xeb\xe8\x83\x4e\x0f\x84\x8b\x93\x93\xb5\xb4\x68\xeb\x6c\x3e\x62\x88\x23\xb3\xf5\x92\x98\x58\xe6\xde\x61\xc3\x68\xd3\x5e\x31\x2a\xc6\x41\x22\x05\x8a\xeb\x6d\x8b\x1e\x8b\x5d\xa9\xfb\xa1\x32\xb7\x4b\x9f\x69\xd8\x5e\x1f\x36\x26\xb6\x49\xf6\xc3\x86\x2f\x08\x43\x5f\x10\x03\x86\x5f\x18\xc6\x76\x32\xa3\x3c\x39\x1f\x94\x03\xb2\xff\x7c\x2d\xea\xba\x33\x99\xea\x35\xab\xe2\x60\x5f\x14\x03\xa5\xd0\xb2\x87\xa7\xfb\x85\xa1\x55\xab\xa6\x4e\x1c\x57\x90\x1d\xa5\x56\x11\x33\xd6\xfc\x39\x69\xc5\x2a\xcf\xab\xbe\x9f\xe8\x5b\x62\xa2\x12\x5b\x5d\x9e\x2c\x2e\x72\xe3\x61\xa6\xf2\xb6\xf9\xd0\xc6\xbb\xf4\xb5\x62\x72\x9a\x25\xf6\x78\x6b\xc0\xaf\xf8\xe8\x41\xcb\x2d\x5a\xf1\xe9\xc9\x25\x11\xc8\x2d\x0d\xb1\xeb\x4f\xd5\x62\xdd\xd2\x49\x53\x65\x0b\x7d\x8c\xa9\x55\x3f\x99\x16\x26\x00\xd5\x89\xb7\xe4\xe4\x0d\x15\xab\x85\x3c\x52\xf4\x39\xb8\xb8\x5b\xea\xa2\xde\xc7\xad\xe2\xb6\xc7\xc5\xbb\x9c\x79\xd4\xe9\xc6\x0b\xbb\x68\xf1\x61\x7f\xae\x90\x5a\xc2\x5f\xde\x03\x8b\x00\x07\xfa\x2e\xc1\x53\xb8\x81\xd5\xb2\xa0\x02\xfa\x72\x38\x5c\x57\x4b\xcf\x95\xb6\x2e\xa6\xf9\xbc\x41\x40\x3e\x01\x04\xb0\x70\x7f\x8c\x24\xb0\x89\x18\xa3\xe0\x6c\xc1\xca\x31\x41\xb7\x55\xa7\x1b\xa5\x89\xed\xff\xb0\xc3\x35\x05\xc4\x41\xe6\x6c\xd6\x06\x1a\xd3\x26\x27\x89\x1c\x3d\xcd\xbc\x10\xf3\x38\x79\xc1\xd3\x7b\x42\x9c\xd7\xf9\xb6\xce\x74\x63\x41\xb0\xf0\x6f\x9a\xfa\x65\x95\x86\xea\xe8\xc3\x62\x56\x37\x03\x11\xf9\x66\x73\x3f\xe7\x63\x9f\xa8\x4d\x8f\x49\xc2\x78\x4e\x4e\x5a\xd3\xb6\x5b\x80\xe3\x92\x50\xc7\x79\x55\x0c\x45\x38\x45\xc6\x06\xaf\xce\x65\x5f\x38\x32\x2b\x9b\x7f\xe6\x6f\x19\x17\x91\xc4\x0e\xd5\x38\x8c\xd9\xe2\x6b\x61\xc8\xd3\xbc\x9b\xe9\x05\xd1\xaa\xbe\x2a\xfb\xcd\x56\x5d\x53\x57\x18\x47\x9d\x86\x5b\x38\x78\x2f\x77\x44\x58\x7b\x47\x88\x53\x53\xeb\xae\xce\x46\x64\x9b\xb0\xcc\xb0\x8b\x72\xf2\xe9\xc0\xb3\xd9\x9c\x1e\xd2\x96\x4c\xac\x1d\x9c\x5a\xe1\x26\xa5\x40\xa0\x8b\x87\x65\x13\x26\x6b\x51\xa7\xd3\x4b\x60\x56\x6c\xe3\x9d\x68\xc2\x1b\x08\x73\xf7\x4e\xd6\x62\xad\x30\xe7\xd8\x46\xa2\xe6\xa9\x60\xde\x51\x59\x80\x87\xf8\x4d\xf1\x8e\x3a\x0f\xb3\x74\xbe\x22\xe6\xb9\x7d\x11\x2f\xc9\x37\x2e\x8b\x47\x53\x9a\x2a\x64\xfd\xe1\x56\x30\x0a\x9c\x6f\x86\x74\xbc\x77\x63\x95\x14\xaa\x95\x56\x44\x33\x2a\xf0\x37\x7c\x5d\xf7\xe8\xcc\xf9\xa8\x48\x4c\x28\x65\x4b\x8d\xae\xe1\x7c\xd2\x07\xae\x5e\x8b\x15\x2a\x9e\xcd\xef\x32\x8a\x1e\x11\x20\x10\xf0\xb6\x00\x2c\xf8\x59\xd7\x71\x98\x19\x7d\x5b\xfa\x91\x1e\x60\xd3\xc1\x3b\x9e\x10\x31\xe6\xf3\x81\x68\x5d\xfd\x2d\x78\x1e\xce\x85\xf4\x34\x2b\x37\xfa\x52\x5c\x8d\x5e\x71\xbf\x97\x67\xa6\x6e\xe4\x36\x61\x72\x72\x50\xef\x7b\x23\x10\x74\x1b\x47\x44\x37\xd9\x35\x90\x17\xda\x06\x20\x5a\x63\x4b\x61\x4d\xae\x1f\xa0\x48\x5c\xdf\xb1\xc9\x00\xc1\xf6\xf0\x45\x89\xa4\xa9\xb0\x63\xcf\x1f\x12\x83\xbe\x6e\xa3\x12\xc9\x43\x21\x24\xd7\xd1\x55\xf8\x8b\x16\xd8\xea\x41\xb1\xd7\x03\x8f\x89\x37\xfb\xb9\xcb\xa8\x53\xe4\x08\x46\xa1\x4e\x19\x25\x2c\x78\x6f\x96\xb0\xe8\x38\x4f\x95\x45\x39\xc6\x35\x10\x10\xdf\xea\xa2\x4f\xc2\xdc\x28\x25\x99\x22\xd2\x59\xb0\x98\x12\xb1\x33\x52\xa7\x95\xb5\x98\x16\x5a\x0d\x4b\xca\x2b\xd0\x22\xbd\x2c\x2a\x14\xf3\x59\xc1\x0a\x9c\x95\xfd\x89\x67\x07\x12\x64\xc6\xbe\xa7\xb9\x1d\xe7\x80\xc4\x0b\x40\x99\x7c\xed\x08\xc8\xbb\x3a\x8b\x8a\x34\xd1\xdc\x48\x81\x77\x5f\x15\xf3\x53\x56\x87\xf7\x5f\xe8\xc3\x3a\xec\x01\x20\x37\x31\xc1\xcf\xfc\x4d\x12\x6e\xbe\x96\x5d\x0a\xed\x28\x99\xa5\x75\xb6\x9b\x0b\xd7\x0d\x9a\x13\x33\xc9\x00\x34\xe0\xd6\x35\x8b\xe9\x27\x33\x84\xc5\xd9\x4e\x1e\x11\x3e\xff\x99\xc0\x6f\xcd\x4b\x38\x1c\x10\xd4\x91\xba\x30\x40\x23\xe4\x4f\x41\x66\x9e\x87\x9c\x38\xdc\xbf\x27\x55\xdd\xb5\xb8\x39\x1a\xa3\xd7\x6b\xe8\x58\xab\x56\x4f\x67\xd6\x73\x91\x1d\xb0\x7c\xed\x48\x9a\x68\x8c\x3e\x26\x7b\x98\x97\xe4\x32\x87\x44\x89\xff\x92\x43\x66\x99\x83\xae\x9b\xa0\xe8\xc2\x3f\x21\xd5\xe7\x5a\x42\xcc\xdb\xa0\xea\x35\x4a\x44\xa1\x76\x76\xb1\xfd\x82\xa8\xd3\xd5\x4d\xa4\xfe\x98\x7f\x26\xa8\x08\x2e\x9a\xcd\x69\xcf\x3d\x7b\x6a\x99\x9e\xe9\xe5\xce\x40\xf0\x4c\x0d\x81\xa6\x5d\x11\xe1\xf5\x33\x51\x5c\xad\xc8\xd9\x39\xe6\x1d\x60\xc8\x36\xb0\x86\xb6\x3b\xde\xc6\x00\x0b\x51\xb7\x1b\xb9\xac\x3c\x7c\xdf\xcf\xe3\x54\xf0\xcd\x30\xef\x13\xdd\x41\xbc\xb6\xd0\x4d\x00\x26\xf0\xb5\x9b\x78\xd9\x88\xc2\x85\xd0\x93\xe3\xd9\x61\x88\x15\x3f\x18\x71\xe8\xd8\x2d\xd5\x68\x44\xba\x22\x52\x7e\x2c\x4c\xb6\x73\xf5\x5e\x51\xa9\x6f\xea\x94\x3a\xe9\x10\x71\x8c\x08\xdc\xc6\xb1\xc0\xe3\x39\x30\xb0\x80\xff\x66\x71\xd8\xb0\x06\xad\xcc\x89\xc3\x81\x18\x8a\xa4\xdb\x2c\x69\xb6\x21\xbf\xa9\x67\x54\x2f\xb6\x9d\x20\x82\x53\x7f\xca\x71\xea\x0f\x9b\xa4\x99\xeb\xa4\x10\x33\xf7\x64\xb3\xa1\xc5\xca\x0c\x81\x9d\xa8\x38\x4e\xff\x1a\xf2\xc8\xfb\x04\xcf\x5f\x94\xe8\xa6\x20\xe5\xe6\x9a\x1e\xdf\x0c\x94\x73\x1e\xad\x15\x6d\x6a\xe2\x75\x13\x8b\x2c\x57\x35\x3d\x9e\xed\xf2\xf0\x6a\xed\x93\x3d\x95\x15\x3a\xdb\xe1\x0f\xb6\x9c\x58\x7a\x53\xa4\x28\xd9\x9d\x85\x8c\x5f\x86\x32\x06\x0f\xe0\x97\xe0\xaa\x22\x6a\xe2\x01\xe6\x30\x68\x17\x02\x9f\x82\xff\xf4\xd0\x59\x09\xe0\xf2\x17\x54\x2d\x6f\x89\xee\xae\xb7\xdc\xe9\x6e\x47\xad\x76\x37\x8b\x42\xfb\x56\x96\xba\xb4\xe2\xa8\x66\xcf\x0c\xd4\xce\xf6\x4e\xd6\x9a\x91\x8a\x17\xf2\x08\x2d\x92\xce\x72\x39\x8d\x74\xd6\x15\xae\x67\xa2\xa4\x89\xf6\x14\x84\xe7\xdb\x16\x85\x85\x67\x92\x39\x32\x3c\x2f\x3e\x58\xf7\x53\x8f\x8e\x96\x7d\x39\x18\xa3\x0e\xc8\xbe\xfd\x01\x0a\x3c\x88\x93\x6e\x8b\x09\x3e\x3b\x16\x07\x6b\xc5\x4f\xd5\xf2\xae\x4e\x0a\xf2\x07\xad\xf8\xd0\x8f\xc3\x70\xdf\xe9\x23\x50\x20\xcd\x0c\x6d\xf4\x86\x80\x82\x44\xc9\x9c\x6a\x62\x60\x24\xa2\xc3\x2a\x3d\x00\x2c\xf7\x36\x4a\xb4\xc2\x71\x78\x3e\xf0\xf1\x50\xa6\x73\x9d\xcd\xe9\xfc\x2e\xf3\xdc\x48\x43\xae\x07\x62\x8f\xff\x24\xf0\x29\x3a\xae\x05\x59\xb8\x05\xad\x07\xec\xf5\x56\x0a\x4d\xf8\xaf\x50\x50\x97\x2c\x44\x16\x61\xe0\x41\x76\x8c\xab\x05\x3c\xed\xf9\x61\xed\x9d\x33\x99\xca\x2d\x9b\x76\xdf\x78\x34\xbe\x11\xef\x80\xd3\xfb\x77\x3e\xf4\x7d\x95\x1f\xb5\x15\xe8\x17\xe1\xe9\xd8\x49\x93\x92\x7a\xef\x05\xd4\x00\x6c\xa1\xd2\x67\x79\x98\xb4\x03\x8a\xe5\x08\x31\xb5\xf0\x4c\x42\xe9\xe9\x41\x34\x81\x60\x78\x31\xf0\x94\x25\xe7\x4a\x3f\xdc\xe9\x5b\x7d\x2c\x21\x97\xb1\x20\x88\xcc\x4f\x4b\xca\xf3\x13\x34\x1e\x97\xc7\x74\x05\xa2\xb3\xfb\x52\x59\x3d\xe8\xfa\xfb\x4e\x60\xd9\x61\x25\x5f\x2b\x3d\x7b\xca\x65\xe2\xb6\xb4\x1a\x86\x22\x24\x4b\xbb\x4e\x89\x31\x4b\xd9\x54\x79\xc2\x72\x94\xac\x04\x95\x8f\x7f\xcc\x81\xaf\x49\x8f\x63\x03\xcf\xc8\x5a\x94\xec\x6c\x3d\x01\x96\x05\xec\xda\x29\xca\xd6\x41\xb8\xce\x09\x8c\xc1\x6d\xf2\x44\x79\x4c\x04\xa5\xcb\x1d\x69\xba\xf1\x8d\x58\x27\xc0\xa9\x42\xed\x62\x90\x48\xf5\xd1\x5a\xda\x80\x28\x22\x60\x40\x18\xc6\x09\x3a\xbe\x71\xa6\x6e\x46\x35\xb4\xa5\x00\x81\xbe\xbc\x0c\xe1\xe0\x1b\xc9\x52\x90\x76\x54\x91\x12\x4d\x01\xc3\xb5\x05\x45\xcb\xb8\x9b\xc0\xb8\x29\x34\x3c\x38\x55\x7b\xfa\xe9\xbb\x7c\x4d\x15\x4d\x50\xc8\x68\xac\x62\x3f\x6c\x46\x59\x38\x10\xcc\x13\x8a\x36\x95\xb3\x81\x40\xdb\xad\x92\x5e\x40\xda\xf2\x58\x29\xe6\x3b\xfd\xa2\x3c\x46\x60\x6a\xb0\xac\xe5\xf7\x88\x98\xa4\xab\x47\xcd\x72\x0b\x14\xc9\xb8\x1f\x49\xee\x38\x83\xf1\x79\x1c\xf8\xab\x90\x27\x08\xed\x1f\x0f\x55\xbb\x6d\x73\xc2\xd8\xd6\x21\xd9\xf4\xb5\xc0\x27\xa1\xbe\x36\x10\x6b\x82\xbe\xb8\x83\xd1\x61\x38\x26\xc0\x37\xf1\xb5\xdb\x9e\x5c\x75\xbb\x69\x96\x56\x7c\x0e\xee\xf3\xa5\xf4\x43\x24\x43\x4b\x54\x84\x6d\x5b\x53\x64\x24\x91\x50\x76\x92\x05\xb9\xc8\x16\x68\x34\xfb\x5e\x9b\xe3\x39\x2e\x9c\x82\x15\x31\x21\x04\x8e\x83\xe5\x31\xf4\x1c\x6f\xc7\x4b\x81\xb0\x8b\x55\xd4\x19\xf1\xd4\x00\x27\x71\x2e\x11\x0f\x6e\xad\x8b\x46\x72\xa6\x12\x42\x8d\xe5\x9d\x61\x8d\xa6\x79\x57\x25\xa0\x73\xf0\x04\x81\x02\x7e\x75\x66\x68\x06\x4b\xc5\xfa\xb0\x4a\x9a\x18\x8c\x27\xd0\x28\xbe\x66\xe6\x51\x2e\x79\x91\x86\xb3\xa3\x9e\xee\xf6\x78\x29\xcb\xc0\x77\x04\x0e\x09\x1c\xa4\x08\x82\x3e\x27\x21\x91\x83\x53\xad\xc6\xf7\x13\xf8\x9d\x1a\xf4\x2b\x8e\x04\x97\x09\x26\xf8\x46\x0c\x7b\x88\x55\xd2\xcc\xe3\xa8\x69\x07\x5a\x88\x09\x0e\x36\x19\x78\x5c\x36\x9d\x67\x2d\x95\x70\x97\x37\x8e\xfc\x6b\xa5\x2f\xa6\x80\xe8\xd1\xba\x66\x9b\xfd\x17\xeb\x8d\x75\xa2\x1c\x13\x91\x98\x8a\x02\x8f\x86\x10\xf3\x56\x20\xd8\xe6\xff\xaf\xbe\xf1\x0d\x9d\x6e\x96\x76\x22\xe3\xd3\xfa\x04\xdb\x92\x28\x27\x0c\x96\xc3\xcc\x1e\x16\x3d\x4b\xa6\xec\x18\xd0\x04\x19\xfd\x90\x44\x59\x94\xe4\x45\x54\xb8\xd1\x31\x2c\x87\x88\x3c\xf9\xba\xbe\x39\x8f\xb2\x67\x9c\x7c\x53\x7a\x30\x3b\x8e\x5c\x84\x40\x27\x44\xdb\x67\xb7\x17\xc7\x15\xa3\x4a\x51\x85\x7c\x9d\xd4\x2d\x5f\x8b\x7e\x16\xe3\x77\xf2\x08\x0e\x47\x33\xb4\x24\x69\xc4\x1d\xb8\xa3\x91\xa5\x51\xac\xb3\x2a\x19\x23\x89\x40\x83\x98\x6f\xad\x8b\x6a\xda\xda\xd0\x21\xe9\x61\x9a\x84\x26\xe2\xa1\xd7\x75\x15\x64\x37\x90\x63\x49\x40\x13\x5b\x69\xda\xdc\x4d\xf6\x85\xfb\xd2\x05\xcd\xcb\x3a\xac\x93\x83\x1b\x1b\x11\xc1\x49\xe1\x39\x5d\x96\x97\x88\x44\x0b\x37\x48\x96\xe2\xa9\x6f\x93\xd5\x65\xd8\xa6\x68\x4e\x3d\x0f\xd8\x03\x7f\x2f\x6c\x36\x7f\x9a\x6c\x12\xcf\x7d\xa3\xcc\x29\xfe\xe8\x01\xe0\x08\x1d\xce\xcd\xcd\x99\xe2\xfa\x84\x85\xdf\x6d\x16\xd0\xa7\x9f\xae\xc5\xbd\x66\x14\x66\x69\x2f\x17\x24\x75\x9c\x5c\xb0\x73\xc0\x77\x3b\x6d\x98\x84\x45\x4f\x71\x86\xdf\x4d\xea\x75\x80\x88\xf5\x72\x97\x48\xf8\x7c\xf0\x21\xf3\xa6\x90\xf8\x4a\x5d\xa0\x1a\x36\xe8\x25\xf0\xaa\xdc\xf9\xc5\x70\x11\x18\x72\x1c\xfa\x15\xf8\x01\x72\x56\xba\x1d\x32\x20\xd6\x96\x7d\x48\xc7\x61\xfc\xd1\x83\x2e\x81\xe1\x99\xd3\xaf\x7b\xae\xfe\x8f\xee\x5e\x34\xee\x50\x5f\xa6\x12\x56\x62\x74\x51\xa4\xed\x5e\x95\xcd\xc5\xd7\xb1\xb3\x38\x73\x27\xa8\x4e\x28\x5a\x8d\x2c\xf9\xf5\x2b\xb4\x99\x70\x74\x56\x86\xf0\x11\x4d\x1a\x03\xde\xe0\xf4\x89\x85\xdc\x57\xdc\x70\xec\x73\x7d\xa0\x83\x5e\x66\xe9\x8b\x51\xb6\x38\x19\x88\x52\xfc\x49\xb7\x21\x5d\x55\x64\x69\xa2\xd8\x7f\x70\x73\x02\x04\x4d\xfc\x30\x00\x56\x37\xed\x25\x4d\x3e\xeb\x8e\x16\x5c\xa0\x2c\x02\x59\xc5\x52\x4d\x9d\xe5\x64\xaa\x10\x4a\xa0\xeb\x4b\x60\x66\x2c\x6c\x81\x13\x25\x7c\xb3\x28\x15\xc3\x60\xd5\x6a\xbc\x16\xf6\x0a\x28\x29\xf0\x1c\xa2\xd0\xc2\xd7\x92\x72\x3a\x6c\xcf\xab\xec\x99\x8a\x37\xce\x98\xab\x6d\x4b\x79\xf7\xc8\x91\xa5\xec\x01\xd8\x8e\x15\xd9\xc9\x72\xbf\x00\x8e\xd0\xcc\xaf\x7c\x87\x71\x07\x37\x56\x03\x91\xde\x01\x40\xd4\xa1\x9f\x04\x57\x96\x48\xe2\x02\x00\xc2\x0d\xf8\xa2\xa2\xc7\x20\x52\x7b\xd2\x86\xb8\x29\x4a\x67\x69\x23\x0a\x69\xaf\xec\x84\xc8\x8a\xe3\x7b\x3e\xe6\xf2\x39\x61\xa6\x1a\x8d\x05\x21\x27\x2b\x42\x4e\x56\x44\xe3\x53\x43\xe5\x51\xa8\xe2\x78\x61\x54\x54\xc2\x5e\xc3\x73\xd8\x84\x92\x48\xb3\x9e\x24\x15\x67\xb3\x4e\xb4\x54\x40\x16\x5c\x1a\x52\x8c\x9c\xaa\x1d\x4a\xdb\x2a\xc9\xc1\x79\xef\x13\x0e\x7d\x4d\x7d\xbb\x5d\x4f\x45\x92\xa7\x59\x11\xa9\x8a\x90\x23\x0c\xc2\xe1\xeb\x60\x33\xc0\xed\xc0\xd8\xe3\xb5\xae\x12\x14\x7c\x4c\x6e\x6b\xdd\xd8\xcd\x6a\xfb\xe0\x94\x25\x78\x62\xc9\xb5\xc0\x34\xc9\x71\x0e\x4f\x93\xcf\x50\xeb\xc3\x62\x10\xfc\x45\xd9\xc7\x4c\xc4\xd3\x2c\x0e\xb3\x69\x53\xcd\x8e\x78\x3d\xbc\x0e\x1d\x64\xf9\x74\x7c\x71\x6d\x5d\xe4\x14\x9f\x95\x34\xce\x71\xae\x77\x79\x60\xc7\xf1\xc0\xe3\xaa\x41\x3f\xe5\x86\xb5\xca\x39\x17\xb4\x61\x8e\xf6\xc9\xa8\x17\x37\x0e\x63\xca\x91\x60\x9f\xa2\x9f\x87\xdd\xb1\x9e\x12\x93\xa0\x30\xc2\x93\xff\x4e\x42\x96\xdf\x80\xaa\xe0\xd1\x7a\x81\x24\xe0\x3a\x5c\xf5\x1d\xf2\xaf\xc9\xe9\x62\xff\xa2\xf4\xde\xf2\xeb\x62\x96\xc6\x4c\x9a\x36\xf3\x6d\x1e\x35\xbd\x12\xf8\xc2\xdd\x0a\x56\xd4\x12\x49\x55\x1c\x2f\xef\x8b\xf2\x4d\x5f\x04\x94\xc3\x72\x4f\xf9\x68\x46\x1f\x6e\x47\xb1\xca\x50\x64\x36\xbf\x60\xff\xc4\x57\xb1\xce\x0a\x6e\xea\x58\x17\x77\x1b\xc5\x6b\x0b\xe1\x15\xc7\x79\x74\x2e\x10\x14\x5a\x6b\x78\x28\xf8\x66\x3b\xeb\x5e\x23\xef\xae\xfb\xea\x15\x40\x39\x1b\x1b\x78\x34\x7c\xe3\x16\xe0\x71\x60\xd7\xaf\xa2\xa0\x00\x1d\xb3\x93\x32\x24\x28\x9b\xdc\x12\x70\x70\x55\x14\x3a\x61\xb4\x28\x8a\xa2\x27\x25\x73\xea\xc9\xe0\x81\xfe\x40\xec\xd1\xda\xc4\xc4\x7b\xc5\xe0\x81\x17\x10\x2f\x41\x91\x6c\x20\xcd\x84\xe7\xfb\xa3\xd2\x67\xd5\xaf\xf7\x0d\x21\x2b\x05\x77\xf0\x2a\x75\x89\xe0\xed\x7e\x8e\x56\x0d\xff\xfd\x01\x7a\x5e\x18\xc4\x4b\x90\x05\xfc\x43\xb5\x2e\xe0\x5a\x37\xc9\x54\x32\x13\x09\xe9\x05\xe4\x67\xb6\x02\x20\x63\x9b\x27\xcc\x76\x23\x08\x7c\x1d\xb1\x3f\x77\xab\xb2\xf8\x21\x2d\xf0\x52\x20\x86\xce\xec\x04\x5c\x86\xb3\xea\xa4\x44\x6d\x8d\x82\x16\xd5\xd1\xa5\xee\xb1\xb4\x74\x37\x59\xb2\xed\x34\x66\xab\x06\x0f\xf5\x92\x28\xcd\xd0\xa1\xcb\x0c\x8a\x7d\xd0\xd0\x8a\xe3\x51\x38\xea\xc2\xa1\x38\x15\xf4\xd1\x38\x78\x6b\x42\x0d\x21\x8f\x64\x2b\x73\x3e\x2c\x9d\x49\xb3\xce\x36\xbf\x6c\xff\xad\xf4\xad\x5d\x37\x91\x7f\x61\x36\x96\x40\xb4\x05\x7d\x56\x8c\xdd\xdb\x5a\x97\xdc\x6c\x0f\x8b\x22\x7d\xd2\x9b\x51\x61\xd1\xa3\xa4\xbf\xd9\x3c\xd7\xa7\x6d\x56\xd3\xb6\x66\x7b\x0a\xe7\x38\x52\x8d\x28\x8e\x8a\x05\x0c\x56\x79\x4d\xce\x7d\xb8\x28\x51\x2c\x1b\x62\x9c\x32\x26\x98\xda\xe6\xcb\xc1\x11\x3a\xb5\x86\x2a\x8a\x58\x53\x4d\x81\x6d\xa4\x2d\x35\xf9\x42\xe3\xd2\x80\xa7\xfc\x28\xa0\xbe\xbe\x60\x01\x11\xe1\x7c\x03\xdf\xb8\x9c\xa6\xea\xe5\x45\xa6\xe2\x48\x25\x8c\xdd\x41\x36\x15\x04\xae\xc8\xfd\x33\x14\xcb\xd2\xac\x0e\x9b\x37\x99\xce\x45\xba\x10\x8c\x66\xc7\x24\xa3\xd9\xb1\x72\xd3\x1c\x40\xaa\xab\x1c\x9c\xc2\x2b\x41\xfe\x0e\xd3\x2b\xf1\xb5\x9b\x58\x43\x53\xa5\xdb\x88\x52\x7d\xa4\xb0\x2c\x86\xcb\x2f\x6f\xee\xcb\x3a\x38\xbe\xbf\xb6\x67\xcf\x36\xaf\x36\xb8\xb5\x1b\xe2\x77\x3a\x10\x11\xd6\x69\xc1\x87\xf2\x62\x20\x08\x73\xb9\x94\xc7\x37\xa2\x26\x12\xa6\xf3\x14\x0f\x02\x4c\xf3\x6c\x29\x54\xf6\x49\x31\xae\x4c\xce\x61\x9c\xd7\x6a\x36\xd1\x79\xae\xf3\xaa\xa0\x3d\x80\xfb\x8d\xb8\xf4\x84\x60\xa4\x93\x05\x98\x99\x1e\x0f\x5a\x83\x3f\x7f\x5c\x8c\x01\x02\x24\xd2\x21\x38\x25\xf5\x8a\xb7\x02\xd1\x5c\x9a\x2d\xf4\x89\x4d\x29\xc4\x66\x18\xc0\x96\x27\x22\xa0\xbe\x62\x41\xcf\x12\x0d\xed\x1f\x6e\xcf\x8f\x3e\x36\x22\x70\xe1\xe7\xfb\x5a\x89\xcc\xf6\xd8\xc0\xd8\x53\x83\x0d\x62\x07\x26\x26\x6a\xad\x4c\x6b\xb4\x51\x5a\xb6\x26\xfa\x56\xdb\x61\x30\xac\xb8\xd2\xd6\x59\xae\xe3\x99\x8a\xb0\xb8\xf0\xc8\x6d\x42\xcc\xc2\x21\x3a\x69\x91\x66\x69\xac\x2a\x12\xc9\x7a\x5c\xe6\x17\x8e\x0f\x70\xf4\x3d\xf2\x48\xad\x97\xcc\xab\x8c\xe6\xb6\x33\x8a\x05\xa0\x84\x63\x7d\x69\x7e\x92\x29\x4b\xcf\x3c\x64\x62\xce\x07\x6b\x7a\x41\xe7\x55\xd1\x41\xb9\x26\x32\x32\x4b\x62\xba\xd2\xa9\xbe\x72\x7b\xa6\x8b\x6d\x1e\xa6\x76\xa6\x14\xa3\xaa\x39\x7f\x69\xf9\xba\x3d\xf6\x07\x50\x23\x3c\xe5\xd6\xba\x80\x9e\xbf\x2d\x78\xc3\x3a\x69\x12\x15\x69\x16\x25\x2d\x90\xcf\x30\x84\x08\xdf\x89\xf8\xf9\x35\x31\x31\x01\x35\x6f\x66\xf3\xa2\x4d\xb4\xcc\x5e\x7d\x0d\x6a\x2a\xcf\x55\x93\x87\x19\x23\x38\x3b\x2d\x4b\x43\xa7\x07\x52\x2b\x26\x86\x50\x73\x69\xe4\xe7\xf7\x42\xfb\xbe\x2c\xc6\xc1\x0e\x92\xa9\x51\x11\x25\x2f\xa2\x24\x04\xcf\x2f\x22\x94\x25\x4f\x39\xfe\xa9\xc1\x31\x2f\x13\x13\xc6\x0f\x62\x2e\x23\x86\x4f\x60\xef\x2d\x96\xc2\x7b\xe4\x79\x2f\xef\x52\x27\x57\xb5\x72\x60\x6c\xe3\x8c\x00\xb5\xdd\x14\x7d\xf0\x83\xdd\x27\x26\x3c\x9c\x53\xad\x1e\xb1\x97\x3e\xbe\x71\x06\x47\xd1\x31\xd7\xb8\x6e\xe8\x2d\xf5\xfb\x65\x09\x3f\xef\x45\x49\x8b\x66\x88\x38\x64\xa2\xab\xd4\x71\x47\xb5\x33\xeb\xc6\xf8\xc8\xa8\x03\xb1\xd6\x56\x89\xaf\x3f\x26\x89\xfe\x4e\x88\x84\xa5\x4e\xf2\x1e\xf3\xa3\x40\xed\x3c\x27\x5a\x70\x9f\x1b\x28\x7a\xec\x7f\xb2\x66\xc7\xb5\x1d\x18\x73\x6c\x86\x1e\xdf\x7d\xd3\x81\xa9\x32\xad\xba\x55\xdf\x1b\x77\x5b\xd2\xb3\x2c\xf5\x35\xb7\xdd\xe3\xf1\xa1\x51\xca\x46\x8c\xa1\x83\x81\x2f\x14\x0d\xce\x4a\x9c\x98\xa8\x15\x99\x6a\xea\xaa\x64\x34\xe4\xa9\x10\xb2\x83\x88\x59\x85\x05\x92\xa3\xad\xe3\xee\x6e\x7c\x4a\xe0\x64\xec\x08\xbe\x3b\x72\x54\x13\x7f\x9f\x83\x15\x9b\x73\x81\xc5\x79\x5a\x54\x42\xd1\xc1\x63\x9b\xe6\x3c\x15\xfb\x69\x42\x63\xb2\xfe\x83\x2f\x85\x3a\xce\xe7\x91\x07\x72\x30\x1f\xc7\x18\xf8\x5e\x52\xdb\x96\xaa\x46\x64\x50\x8e\x93\xc3\x85\xe4\xfa\x9f\xc9\x61\xfd\xab\xc3\xd2\xbd\x33\xba\x13\x25\x51\x8e\xa3\xc0\xbc\xfc\x24\xa6\x96\xa3\xbf\x8f\xa4\x4f\x2d\xdc\xeb\x4d\x16\x06\xa1\xb0\x65\xfb\x26\x21\x81\xb1\x14\x67\xe0\xe6\xe1\x6d\xd6\x02\x3f\x6e\xf3\x26\x96\xc5\xf2\x73\x6d\xee\x50\x1b\xf3\x45\x9e\x69\x5b\x55\xda\x82\x4c\x9e\xc5\x97\xd0\xca\xe0\xd1\xe0\xb8\x58\x1c\x83\x18\x13\xb3\x2e\xe7\xbb\xbc\xb4\xb9\x18\xf2\xc4\x78\xed\xe9\xa7\x2b\x3e\x2a\xf8\x39\x41\x3e\xf9\x73\x43\x8b\xfe\xb1\x56\x36\x55\x62\x67\x11\xf7\x4d\x29\xf6\x4d\x11\x61\x5b\x77\x4c\x34\xbe\x43\x20\x7e\xa1\xaa\xa1\x00\x5e\x85\xf4\xc0\x17\x3f\x03\xe9\x81\x5c\x80\xa3\x16\x5e\x11\xd3\x5e\x5a\x82\x2e\x7a\x7f\x84\x65\xdf\x66\x37\x19\xd0\xc1\x2b\xb2\xdd\xa8\x17\x77\xb3\x08\x40\x11\x61\xca\x7d\x03\xc5\x3d\xa2\x77\x2b\x2f\xee\xeb\xcb\xd3\x9a\xd5\xb6\x5d\xe4\xbe\xe6\x72\x1d\xdb\x2b\xf0\x30\xb6\x23\xf7\x72\x20\x26\x79\xfe\x31\xa4\x15\x8f\x04\xe5\x83\xd7\x60\xf6\x1c\xc4\x17\x7f\x65\xc4\x63\x03\x09\x56\x94\x1b\x31\x99\xdd\x8d\xcc\x72\xed\x12\x34\x63\x6d\x63\x29\x10\x9c\x18\x6f\x39\xdf\xfe\x99\xb4\xd3\x88\x6c\x8e\x87\x87\xb3\x0a\x0f\x61\xa9\x4f\x5a\x0f\xa9\xbf\x2e\x6f\xb1\x19\x35\x31\x31\x51\xcb\x74\x57\x67\x61\x8f\x1a\x95\xf8\x37\x50\x37\xfe\x1d\x41\xdb\xf0\x3b\xc2\xab\x9a\x8d\x92\xbb\x68\x5d\xb0\x62\x47\x48\x94\x24\x19\x02\x54\x0d\xa0\x48\x76\x04\x06\xad\x9d\xd5\xc2\xf4\x96\xd0\x41\xe7\x65\x34\x7e\x4b\x82\x32\x47\xb8\x1d\x0a\x6a\xe3\x74\xe9\x08\xed\xff\xf3\xfd\x75\xff\x30\x89\x9e\xdf\x69\x7e\x13\x09\xc2\xff\x47\xce\xe1\x3b\x27\x66\xa0\xfe\x27\x31\x0b\xf3\x8e\x60\x6c\xd9\x82\xa0\x8d\xa2\x89\xf7\x3f\x58\xef\x1b\x42\x47\xc7\x19\x0a\xf0\x44\xd9\x37\xb7\xce\x47\x2d\x51\x1c\xeb\x96\x8a\xe3\x05\x94\x49\x5c\xef\xa8\x7b\xa2\xb7\x68\x93\x45\xc3\x88\xb5\x97\xed\x28\x43\xc1\x69\x7c\xbf\x63\x06\x36\xcf\x68\x19\x83\xa5\x4b\xd3\x2b\xf2\x7b\x3d\x56\x6a\xcb\xa2\x89\x7f\xf1\x77\xab\x81\x1f\x6a\xfe\x2b\x78\x79\x37\xcc\x64\xd2\xcd\x52\xe6\x31\x27\xd0\x59\x5b\x17\xfb\x4a\x24\xf4\x62\x50\x04\x2f\x21\x2f\xc0\xdf\x8c\xb0\x97\x45\x15\x05\x77\xe4\x59\x40\xfd\xe7\xe8\xff\xf7\xda\xb6\x86\x3b\x24\xc3\x67\x06\x52\x6a\x0e\x99\xa3\xb2\xd9\xaa\x68\x3a\x00\x0b\x94\x2b\x9b\x4e\xfa\x12\xec\xfd\x72\xfa\x43\xde\xd5\x61\x31\x2a\x02\x40\x1c\x57\x4b\xda\x4f\xcf\xef\x6a\xb7\x53\xae\x88\x0d\x17\xc4\x52\xf2\xda\x7c\x9d\x89\x25\x74\x42\x83\xb5\x27\x1d\x27\x18\x7d\x1f\x03\x8c\x91\x04\xb3\x5f\x2e\x92\xa7\xaa\xdb\xd5\x89\x6e\xa2\x6b\xc2\xf5\x28\x1d\x18\x63\x0f\x02\xf3\x99\xfa\xe0\xf5\x62\xed\xa7\xfa\x70\xdc\xb6\x89\x7e\x70\xec\xd1\xbe\x5a\x98\x76\x3a\x51\x51\x68\xeb\xf9\xc2\xd3\x7a\x05\xdb\xc4\xc2\x18\x88\xf9\x17\xfd\x2d\x7b\x8d\xa8\xb8\xcb\xbf\x18\x0b\xb7\xa3\xcd\x75\x14\x10\xef\xa9\x8b\xec\x08\x66\x23\xa0\x28\xf1\x22\xf2\x2c\x0e\x8f\x60\x24\x00\x87\xe9\x4f\xa0\x0a\xfb\x1a\x68\x9c\x0d\xdb\xeb\xa7\x06\x0d\xa1\x0b\xcb\x74\xdc\x0b\x0b\x95\x14\xc2\x8d\xea\x0a\x37\xaa\x2b\x92\x92\xcd\x4c\xe7\x5c\x9d\x14\x5c\x68\xe3\x8e\x23\x74\x73\x8d\x7f\x7a\xac\xf6\xe8\x3d\x02\xda\xf1\x72\x20\x74\xcb\xb2\x1c\x9b\xb2\x6d\xd1\xcf\x81\xb3\x43\x90\x85\x49\xb2\x74\x6b\xab\xa2\x20\xfd\x75\xd1\x2f\xc6\xfc\x72\xfc\x2b\x10\x34\x3b\x86\x50\xcc\x11\xf8\x83\xc0\xa7\xff\x57\x24\x7f\xd3\x0d\x41\xfd\x56\xa4\x89\x1e\xad\x4c\x4e\x6e\xbc\x56\xca\xa5\x23\x97\xc7\xcd\x50\xf1\xe6\xe5\x1a\x3d\x12\x4e\xe5\xca\x80\x93\xfe\xf7\x6b\x4d\x9d\xcc\x71\x74\x3f\x94\x46\x5c\xcc\xef\x4f\xf3\xa2\x9b\x32\x68\xdc\x06\x38\x22\xcd\xf4\xf6\xc0\xd9\xa5\x60\xa3\xa3\x33\x47\x54\x8e\x04\xd0\x39\x89\xd4\xf5\xe1\x22\xf5\xdd\xe9\xbc\x18\xa1\x57\x41\xcc\x5a\xa9\xf7\xcd\xf4\xf1\xc8\x1b\xf0\xc9\x58\x82\x47\x7b\x40\x75\x1e\xaa\xd8\x44\x8e\xb0\x44\xec\xf4\xc8\xbe\xac\xa5\x61\x2d\x0f\x44\xf5\x1b\xeb\x39\x0d\xe4\x2d\xd0\xda\x00\x37\xf3\xb5\x1c\x91\xa2\x3b\xe9\x1c\xd7\x96\x05\xae\x7b\xdc\x0d\x3c\x19\xec\xb5\xec\x66\xe9\x4c\x04\x01\x76\x84\x90\x7b\xdd\xf5\x40\x6d\xd9\xaa\x3c\xad\xb2\x78\x81\x72\xcf\xc8\xf8\xc1\xf4\xb8\xf6\x16\x11\x17\xf9\xa7\x3b\x64\x8e\x7f\x96\x0b\x76\xd1\x33\x38\x88\x7c\xd3\x77\xe0\xa3\x46\x67\xa7\x6f\xeb\x78\x17\x95\x43\x3b\x1a\x9a\xce\x45\xdf\x2c\x79\x84\x3e\x6f\xe2\x6d\x61\x94\xfe\x0c\x1e\x93\x43\x40\x79\xa8\x58\x29\x38\x7e\x96\x02\x31\xc9\xe8\x8f\x86\x4e\xc5\x56\x33\x96\xf4\x1e\xae\xfa\x92\x48\xd0\x2c\x0d\x9b\xbb\xdd\x52\xdd\xca\x40\x34\x62\xbb\xea\x6c\xfe\x6a\x26\xa3\xec\x5a\xe1\x72\x9b\x6c\x2f\x68\xf1\x90\x85\x85\xea\xb5\xc5\xc4\xcd\xbe\xac\x51\x40\xaa\x6b\x7d\x7d\xab\x93\x2b\x6e\x30\xa5\x9c\xe9\xd1\x2b\x38\x03\x69\x96\x07\x9a\x77\x85\x71\x60\xa8\x17\xf1\x8c\x2f\x47\xcb\xe7\x51\x25\xbf\x21\x39\xfa\x2e\xb8\x54\xae\xca\x73\x5d\xe4\x4c\xcf\x87\xc2\xfc\x48\x5d\x50\x18\x70\x49\x97\xff\x85\x34\xb1\xf5\x29\x5d\xa9\xb3\x97\x01\xe6\x53\xe1\xbe\xac\x8f\x1e\xdc\x78\x77\xa0\xb2\x78\x70\xaa\x36\x1b\xc5\x31\x78\x1f\xec\xd8\x6c\x7a\x0f\x3b\x4f\x7b\x30\xc9\xc9\xb0\xf3\x39\x3d\xe2\x5b\xa5\x9f\xa7\x85\x85\x7b\x0e\x0f\x0e\x41\xd8\xe7\xf0\xa0\xd8\x9e\x4b\x03\x6a\x7e\xef\xa4\x27\x23\xac\x0a\x1a\xca\xab\x62\xc8\xf0\x4b\x58\x22\x6e\xbb\x1c\x28\xd0\x8e\xef\xaf\x75\x54\xf2\x4c\x9a\x44\x12\xe5\x29\x01\x83\x67\x07\x6a\x69\x8f\xd6\xa2\x4c\xe5\x23\x82\xee\x8c\x87\x43\x59\xc6\x20\x19\xc5\xbe\x89\xcd\xc3\x19\xd8\x18\xa2\x45\xf6\xd5\xf2\x34\x26\x1c\x7e\x2e\x99\x2d\xd9\x45\xe5\x9b\xa1\xd4\x2e\x26\xd0\x76\x12\x8a\x12\xf9\x2d\x12\x67\x38\xaf\xa3\x75\x31\x9c\x60\x69\xd8\xe2\xb9\x01\x86\xd4\xce\x0d\x07\xe1\xae\xba\xd7\xfb\xa7\x24\x2d\xdd\x8b\xb2\x7a\x5f\x59\xdc\xec\x46\x58\xe5\x53\xe8\xc3\x2a\xb1\xfd\xa4\x3c\x54\x2f\x10\x4d\x9b\xef\x4a\x6f\x7b\xc9\x29\x71\x55\x14\xca\x8f\xe5\x40\xed\x9f\xb3\x75\x7c\x33\x8c\x42\x64\x1f\xf5\x7f\x40\xfc\xec\x78\xfe\x8a\x23\x72\x7e\xc7\x67\x14\x75\x42\x0b\x0c\xb6\x4b\x3c\xd5\x2a\x01\x08\x60\x40\x4f\xf2\x96\xd9\xc1\x83\x3e\x19\xdb\xc8\xa2\x90\xa7\x9d\xd9\x3c\xa4\xc7\x3c\x1d\x77\x18\x99\xf0\x19\x9d\xc7\x6a\x5e\xe0\x0a\xcf\x49\x5c\xe1\x39\x01\x5c\x8b\x92\x30\xee\x35\xf5\x5d\x46\x93\x5b\xca\x6b\xfa\x53\xe0\xce\x5e\xe2\xa3\x6f\xe7\x50\x54\x1c\x17\xf5\x68\x5d\x24\x8c\xd7\x45\xfc\xf3\x0a\xbd\x33\x30\x2e\x3b\xc0\x7d\x25\x00\xa4\xee\x26\x10\xe3\x77\x97\x45\x73\x68\xd4\x54\xed\x54\xf2\x2c\x6d\x9a\x60\x60\x91\x01\x59\xd4\x2d\xe6\xb3\xa8\xe8\xe3\x55\x39\x25\xf2\x6c\xa7\x86\xe5\xff\x66\xd2\x4c\xe7\x45\xc6\x23\x8a\xa1\xa9\xc0\x3f\x82\xf8\xe1\x46\xe0\xd1\x5d\x17\xdd\x86\x35\xd3\xb0\xc8\xa2\x04\xa0\x64\x3b\x88\xc2\xe7\xe5\xb8\xcd\x0b\x56\xe6\xeb\xc3\xb0\xdb\xe9\xcc\x4c\x14\x46\xdc\x12\x03\x8f\x61\x3b\x69\x6c\xbe\x5e\xf4\xe9\xd0\x5c\x77\x22\x95\x24\x3d\x15\x57\xc4\x1c\x63\x16\x5a\xbe\x71\xbc\x32\xcd\x34\x49\x33\x29\x0f\xe7\x85\x3c\x9c\x17\xa9\x49\xcc\xac\x72\xbd\x63\xb6\xa5\x46\xb6\xda\x0c\x4e\xc7\xdc\x57\xcb\x55\x3c\x07\xfc\x23\xa7\x18\x03\x41\x1f\x7f\x7e\x08\x1a\x73\x6a\x1f\x86\x96\xe2\x10\xb0\x6f\xd9\x9f\xfb\xd8\xed\xb2\x7f\x0d\x1e\x14\x44\x82\x04\x95\xbf\x1d\xee\x3a\xdf\x0c\x34\x27\x1f\x1c\xdf\x5f\x8b\x28\x1d\x89\xc1\xa0\x53\x8e\x03\x85\x9e\xcb\x8e\xb0\xf5\xe2\x3d\x93\x66\x45\x2f\x01\x0d\xe5\x86\x75\x79\x6d\xb3\x2a\x7d\x06\xc9\xa6\x91\xba\x67\x3b\xfd\x52\xe9\xc7\x4e\x7c\x49\x14\x2b\x66\x74\xf3\x6e\xf3\x57\x8e\x99\xc0\x61\x0f\xca\x87\xeb\x95\x3d\x7b\xdc\x38\xae\xca\xc7\x3f\xe6\x61\xb5\xe6\x37\x10\x06\xf7\x27\xdb\x45\x75\x04\xb3\x31\x10\x72\xdf\x85\xc8\x94\x82\xd1\x47\xbf\xbb\xee\x23\x84\x5b\x12\x94\xbb\x36\xac\x05\x66\x3e\xca\x8b\x99\x1e\x64\x8c\x2b\x48\x7d\xd5\xa4\xbe\x11\x76\x87\x61\x61\x10\x0e\x43\x98\xf9\x5a\x56\x46\xb5\xce\x77\x7a\xff\xff\xee\xba\xe0\xd1\xe2\xc9\x6d\xc8\x1e\x5d\xc7\xeb\x40\x33\xdc\xa6\x84\x20\x7a\xcd\x77\xd6\x05\x2c\xf4\x38\x22\x2b\xcb\x66\xed\x41\xc2\x2f\x06\xa2\xc5\xff\x62\x5f\xd8\x1f\x36\xf2\x9d\xc6\x23\xc0\x12\xae\x49\x53\xb8\xa5\xee\x43\xcf\x67\x85\x37\xf3\x7a\xe0\xcf\xf3\xd1\xd2\xf7\xbd\x5f\x22\x2c\x3c\x8f\x8c\x40\xf4\x86\x2f\x5a\x2b\x3d\x99\xe0\xca\x60\xe5\x7e\x7a\xec\xfd\x94\x06\xc1\x61\x07\x45\x95\x05\xbe\xd3\xb7\xe0\xa7\xae\x10\x0a\x1e\xa9\xa2\x7f\x1b\x88\xe0\x68\x05\x89\x5c\x3c\xc4\x0d\xbc\x2a\x94\xe0\x2d\x02\xa2\xa3\x8c\xfb\x6e\xe0\x07\x07\xde\xa0\x9c\x30\xdc\xc6\x5b\x62\x20\x33\x17\x84\xed\xf8\x58\xbf\x69\x4b\x10\x8e\x3e\x2c\x26\xf2\x7f\x5f\x00\x98\x0f\xd5\xc5\x35\x29\x75\xaf\xd0\xd2\xf0\xd0\x52\xc2\xb5\xe1\x09\xbf\xc1\xa7\xc4\xcd\xbc\x36\xdb\x0c\x03\x79\x99\x70\xf7\x76\x88\x88\xa0\xb3\xe1\xe9\x3b\xd8\xe6\xf3\x94\x86\xc6\x27\x50\x1a\x87\x61\x58\x05\x23\x31\xaf\x83\xab\xce\x36\xa3\xbc\x50\x79\xa1\x8d\xe8\xd2\x5b\xc0\x11\xbc\x20\xba\x3f\x2f\x08\x54\x4a\x27\x4a\x34\x37\x4a\xc3\x72\xbe\xd4\x07\xb0\x0c\xc4\x94\x1a\x99\xa0\x6d\xea\x90\xaa\x45\x55\x0f\x6a\x38\x4a\xab\x6c\x01\x0e\x62\x86\xb3\xc0\x62\x45\x1d\x9d\xc3\x15\xb6\x16\xa8\xe2\x47\x15\x97\xa2\x2a\xba\xab\x2e\xc8\xb6\xd0\x94\x8b\x52\xc1\x49\x39\x3d\x4e\x77\x75\x56\xa4\x51\xa6\xfb\x28\x01\x45\x00\x2c\xda\xa5\x3a\x3a\x6b\x71\x6b\xb5\xa5\x9e\x16\x4c\xe0\x17\x44\xa5\xfb\x84\xc4\x09\x1c\xf3\x33\x63\x92\x56\x1c\xe5\x6d\xa2\x5d\x42\x42\x8c\x1b\xbe\x91\x48\xd8\x45\xdd\x80\x0c\xf2\xc7\xab\xb8\xfd\x73\xef\xf8\xea\xb0\xe1\x28\xb9\x56\xc4\xf5\x52\x11\x2d\xb5\x2b\x62\x30\xc9\x8a\x00\x48\xa9\xd9\x67\xd2\x51\x31\xc3\x1e\xed\x64\x38\x77\x9f\x87\x08\xb9\xe1\xaa\x2e\xbb\xc7\xf3\x81\xf9\x13\xa2\x45\x46\x75\x1a\x91\x9d\xd3\xf8\xb8\x4f\x03\xbb\x09\xaa\xb2\xca\xde\xee\xa1\x06\x8a\xa3\x76\x1d\x27\x04\x67\xb8\x4a\x79\x10\x44\xba\x18\x0b\x8e\xd0\xf4\x64\x29\x06\x26\xae\xc9\xa1\x08\x3b\x06\xa8\x46\x68\xcc\x59\x57\x3b\x2c\xa5\x1b\x7c\x65\x16\xd2\xe6\xe2\x06\xb8\xd9\xa6\xa7\x6a\xaa\x95\x31\x9d\xa6\xc8\xd1\x18\xa1\x75\x14\xb5\xbe\x63\xf3\xd6\x30\x24\x61\xac\x55\xe6\x5a\xe2\x70\xfe\x6e\x4b\xe6\xff\xdb\xa5\x27\x92\xee\xf4\x92\x28\x8c\xba\x2a\xae\xfa\x2a\xd3\x0d\xd2\x60\x16\x19\x67\x84\x0f\x8a\xf7\xed\x3e\x64\x69\x94\x16\x51\x58\xf1\x70\x4f\xb4\x3c\xf3\xb5\xf3\x8c\xba\x59\xda\xf4\x45\x58\x6e\x40\x0a\x7c\xfa\xed\xec\xb0\x71\x38\xb9\x71\x62\xbd\xbe\xbe\x22\xb8\x94\xaf\x0c\x83\xa8\x67\x3a\xd7\x2a\x0b\xdb\x3a\xab\x1a\x1d\xe9\x88\x27\x27\xc5\xc4\x6d\x1f\x68\xac\x09\xf8\x7e\x37\x8e\x5a\xed\x02\x72\xea\x7a\x95\xdc\x6c\x98\x13\xc1\x43\x5e\x07\xa9\x6e\x37\x8d\x12\x1f\x63\xd3\x9a\xfc\x4f\xef\xa1\x9e\x5f\x9c\xac\xef\x27\x8f\x8d\xd0\x69\xe1\xee\x45\x47\xed\xd7\xc9\xb8\x67\xd9\xa5\x0c\x3c\x25\xc4\x45\xc1\x9c\x97\xb7\x41\x09\x69\x4e\x1d\x4a\x11\x0c\xd0\xe2\x1b\x39\xdb\x45\x67\xbb\xcd\xbe\xc0\x3b\xfe\x00\x79\x01\xc8\xbb\x1f\x11\x08\x89\xf3\x30\xa7\x88\xa8\x98\x1b\x09\xbe\xc2\x56\x74\x94\x93\x40\xfd\xf2\xf7\x92\x6f\x62\x39\xb7\xc8\x60\xb9\x7a\xb1\xeb\xf9\xbd\x25\x21\x02\x47\x25\x23\xdb\xb5\x40\x00\x7e\x6e\x53\x05\xc2\xce\x50\x15\x6c\x15\x77\x11\xe4\x97\x7e\xfd\xd8\x6e\x54\x95\xe9\xf4\x8e\x3d\xbc\xb8\xd9\x87\x9b\x1e\xab\xa9\x26\xe5\x38\x6d\x98\x0c\xdb\xbe\x85\x96\x1a\xba\xe9\xd7\xe4\x21\xd8\x52\xf7\x6d\x11\x79\xaf\x11\xa6\x49\x91\x29\xeb\x62\xda\x59\x91\xbe\x27\xcf\xab\xef\x74\x66\x26\xd7\xc5\x76\x8f\x7b\x1d\x25\xf6\x63\x4b\x71\x55\x71\x23\xd4\x98\x74\x09\xd1\xff\xb5\x40\x90\x73\x61\xa0\x18\x1e\x70\x94\xba\x03\x6d\x13\xdf\xe6\x88\x73\x7c\xbf\x05\x4c\x75\xd2\x39\xce\xdc\x21\x6e\x7d\x45\x4c\x3e\x7c\x65\x20\xbb\x38\xf5\xe4\xbe\x5a\xdc\x6b\x2c\xa8\x64\x56\x91\x18\x39\xee\x30\xcf\x63\x7f\x73\x20\x50\x37\x8b\x98\xe7\x69\x18\x29\xc7\x75\x6a\x29\x48\x85\xb5\x3a\x2f\x29\x4e\x16\xd2\x8e\x9d\xd5\x6a\x1b\xe4\x3c\x28\x67\x70\x46\xb5\xd3\x6f\xb6\xa5\x95\x67\x1a\xd3\x61\xb5\xf3\x8d\x87\x0c\x52\x8d\x53\x9e\x23\xea\x98\xb5\x5c\xf4\x00\x2c\x83\xf5\x32\x84\x27\xf7\x07\xe2\x98\x34\xcc\x7b\xa5\x49\x65\x60\x12\x95\xb5\x90\x43\x92\x5b\x1d\x9d\xb9\x51\xdd\x78\x1f\x78\x4d\x7c\x2d\x6a\x29\xb9\x4e\x0a\x9d\x30\x13\x15\xfc\x36\xc0\x02\xf9\x7a\x71\x13\xc6\xec\xc0\xd8\xa4\xd9\xa1\xfe\xb9\x58\x82\xf8\xf7\x4a\xe9\x71\xc1\x3b\x90\xe1\xb0\x1c\x15\xd2\x8b\xd5\x59\xfe\x3d\x74\xf2\x10\x16\x5c\x27\x0f\xd9\xa1\x24\xf7\x5a\x64\xc9\x76\x9a\xbd\x8e\x9f\x79\x83\xbc\x13\xa6\x27\x2a\x7d\x37\x0e\xf7\x74\xc0\x68\x56\x16\x05\x5f\xc6\x3d\x70\xcf\x21\xac\xb7\x71\x3a\xa1\x29\xae\x94\x92\x1f\xe1\x18\xcc\x0d\x7c\xfa\x6f\x07\x95\xfd\x4f\xfa\x64\x9e\x67\xef\xbc\x01\xed\x02\xd3\xf0\x10\xda\x23\xa0\xa9\xee\xae\xa3\x7c\x8f\x38\x88\x6b\xd6\xd0\x09\x77\xd5\xbd\x7e\xb8\x05\x1f\x18\x38\xcc\x4b\x04\x92\xc3\x22\x23\xbd\x06\x23\x0b\x94\x2e\xd6\x8f\x47\xd7\x23\x73\xb0\xbd\x5e\x79\xe4\x11\x56\x00\xa7\xc8\xa1\x74\x40\x7b\x4f\xa1\x33\x5a\x27\xc7\x1c\x12\xb5\x75\xd1\x9b\xb5\xf7\x2d\x0a\x7e\xd5\xea\x40\x73\xfd\xde\xc9\x5a\x33\x8b\x66\x3c\x3b\x90\x25\x33\xa9\xb8\x21\xe1\xbf\x35\x24\xc1\x53\x4b\xb4\x26\x74\xcf\xc4\x04\xab\xe6\x1b\x7d\xb3\xc2\x02\x01\xf0\xbd\xec\xba\xde\x0e\xa9\x84\x41\x8d\x70\xa9\xce\xcb\x29\x8b\xe7\xfb\x08\xb3\xd3\x34\x26\x56\x37\x3b\xc1\x93\xfe\xd0\xf9\x7b\x8e\xd9\xf4\x9c\xa8\xb5\xff\x01\x7e\xd4\xfe\x83\xd9\xd9\x8d\x13\x81\x98\x11\xb0\x2e\xd2\xd9\x5b\xea\x62\x6e\xce\x2a\x0c\x28\x32\x3b\xa7\x03\xef\x1f\x5c\xc2\x4b\x59\xda\x00\x31\xc9\x4b\xeb\x0c\xc9\x39\xa8\xd0\x23\x92\x91\xe2\x78\xdf\xb8\x96\xe3\x62\xa0\xda\x91\x61\xc5\x8a\x6e\xaf\x61\x9c\x53\x13\xc7\x4b\x64\xc3\x3b\x78\x67\xbe\x11\x45\xe6\x43\xbd\xc3\x85\xa2\x01\xb0\xf4\x6e\x40\x22\x5f\x0a\x3c\x07\xde\xa5\x81\xba\xbe\xcd\x01\xce\xeb\x38\x0e\xd3\x0e\xce\x3c\x62\x86\x33\xb2\x14\x30\xd8\x6d\x4f\xe9\xcc\x76\x96\xf6\x5a\xed\xaa\x2f\x41\x60\x02\x97\x84\xe1\xd9\x4c\x80\x7f\xcc\x6e\x1a\xc7\x51\x62\xa9\x74\x11\x1c\x03\xf9\xc3\xd7\x81\x54\x0b\xdd\xb4\xd8\x41\xdb\xc7\x11\x1d\x2d\x1a\x90\xb3\x68\xe3\x02\x84\x82\xc1\x70\x38\xcb\x18\xd1\x03\xc9\xfe\x5c\xd0\x1f\x0f\x7e\xf4\x20\x97\x06\x4e\x20\xd5\x66\xe7\x73\x0d\xd1\xed\xaa\x39\x97\x86\xca\x75\xfd\xd9\x2e\xbb\xbe\x61\x6a\x0f\x89\xee\xe3\x39\x9d\xe9\xa8\x95\x14\xe8\x4c\x41\xf5\xe6\x45\x3c\x17\xdf\x88\x60\x6b\x56\x27\x45\x2f\x9c\x5d\xc0\x77\x23\xf6\xbc\x29\x3b\x13\x6e\x0e\xab\x91\xe6\xdd\xb4\x80\xbf\xe6\x7b\x77\x2e\x88\x3a\xf7\x85\x21\xe9\xfb\x6e\x7b\x21\x8f\xc2\x88\xe9\x76\xe1\x9d\xbe\x22\x9a\x94\x5e\xf1\x9e\x6a\x9a\xd1\x9c\xbd\xbe\x39\x2d\xc2\xb0\x9c\x77\x6e\x43\x23\xd5\xce\x0b\x44\xe1\xf2\x9a\x70\x2f\x89\x93\x76\x6a\xe3\xee\xfa\x66\x07\xe0\xc0\xd8\x54\x2d\x4a\x8a\x2c\x6d\xf6\xc2\x7e\xee\xe5\x73\xf4\x40\x16\x11\xe9\x97\xa9\x13\x86\x2a\xa3\x7e\x6e\x9f\xc0\x5b\x96\xc0\xd2\x65\xf7\x4c\xf9\x42\x5e\xe8\x0e\xd7\x50\x1c\x8a\xde\x25\x77\x90\xb6\xec\xe3\x58\x81\xff\xfd\x7a\xe0\x21\x83\x61\x9a\x84\x99\x66\x28\x23\x84\x09\x64\x7b\x7c\xdd\x47\xeb\x95\x14\xd6\x06\x0f\xad\xa7\x3e\x20\x7a\x7f\x7a\x71\xa1\x92\x22\x1f\x15\xc0\xb7\xcb\x7d\x04\xa5\xb7\x03\x61\x99\x51\x50\x41\x1c\xd6\x4f\x67\xe2\xb2\x9a\x33\x69\xd6\xeb\x88\xac\x23\x32\x1d\x76\x66\xa5\x18\x62\x1b\xa5\x71\xda\x8a\x42\x15\x57\xe5\x50\xe1\xe3\x22\x9d\xc6\x3a\x14\x4f\xf5\x7f\xca\xd1\xf5\x69\x47\x37\xd5\x42\xc5\xf3\x38\x3d\x27\x86\xa9\x3c\x27\x50\x2a\x1d\x9d\xe7\x91\xd2\x89\x20\xf9\xee\x0f\xd9\x7d\xd9\xb2\xdd\x4b\x9a\x99\xc6\xa0\x7e\xa8\xe7\x2d\x64\x10\x5d\xce\xcf\x58\x2b\x64\x6c\x30\xfe\x06\xcf\xb5\x42\xc6\x91\xff\xbb\x88\x76\x2d\xde\x42\xb6\xca\xbd\x29\xe0\x9b\x6f\x8a\x04\x6f\x64\xfc\x9a\x3c\x9a\xd3\xdb\xb0\x14\x40\x67\x9c\x86\xaf\xc2\xd9\x1f\x5a\x79\xc9\x65\x64\x3b\x40\x68\x7b\x60\x77\xef\x60\xc1\x78\xfc\x8e\xc3\xf7\x77\x74\x33\x4a\x1b\x2a\x09\xd1\xb4\x05\x1b\xc9\xc5\x2c\xbe\x09\xee\x76\x3e\x5c\xaf\x4d\x51\x0e\x2a\x35\x80\x01\xf2\xb5\x9f\x29\x96\x45\xaa\x03\x01\x83\x08\x9f\xc4\x97\xf1\x8d\x58\x54\xc9\x1d\xca\x44\x6d\x22\xcb\x2f\x42\x51\x3b\x42\x9e\xbe\xd4\xcd\x06\x16\xf3\xe4\xc5\xfc\xa3\x8e\xca\x8a\xaa\x4f\xe6\xc2\x07\x84\x13\xb6\x4e\x31\x8e\xa5\xdf\x1f\x52\xe5\x8d\x53\x6a\xd0\x3b\x30\x66\x0b\x34\x81\xd0\xe1\xe7\x87\xa0\x7b\xa7\x6a\x85\xca\x9a\xe0\x78\x04\xc2\x62\x3d\xf0\xdc\x6a\x3c\xb1\xde\x32\xe3\x0d\x41\x6a\xd2\x28\xd8\xac\xd3\x87\x44\x3c\x27\x07\x08\x9f\x1b\x98\xe5\x39\x31\x51\xeb\x1c\x46\xdc\x6b\x19\x2e\x21\x17\xd6\xa1\x7c\x50\x1c\x60\xfd\xc9\x1e\xcf\x99\x9d\x1e\xe3\xa8\x6f\x2d\x10\x21\xe0\xda\x40\x57\x09\xa5\xe1\x4d\xa8\xa3\x9b\x11\x19\x3b\xd7\x28\x57\xad\xfb\x15\x1f\x74\xbc\x28\x98\x6f\x88\x0e\x54\x97\xd9\x32\x2f\x63\xc7\xad\xed\xf6\x55\x38\x13\xe8\xd9\x30\xd1\x52\xf7\xf8\xe0\x62\x59\x0e\xf8\xdb\x56\xff\x4e\x0e\x80\x71\xdb\x62\x9d\xe7\x94\x3d\x40\x90\x77\x96\x8e\x11\x74\x04\x06\x6b\xe1\xc7\xaf\x0c\x0e\x95\x78\x72\x5f\x4d\x45\x59\x98\xa9\x19\x18\x26\xcb\xa0\x40\x0b\xc4\x37\x22\xe5\x50\xb4\x31\x1c\xd4\x53\xf4\x9d\x13\x14\x7d\xe7\x06\x60\x03\x7b\x27\x6b\xad\x5e\x5e\xa4\x82\x17\xe9\x52\x20\x38\x14\x2f\xf9\xac\x4c\x1a\x47\x85\xd0\x76\xb0\xee\xbf\x29\x82\xaa\x35\x09\x49\x59\x15\xda\xce\x52\x5e\x79\x90\xe8\x16\x6a\xf0\xe7\xeb\x81\x95\xdb\x4b\x33\xfc\x0b\xea\x46\x7a\xc6\x79\xc9\x30\x86\xb7\x4b\xdf\xf9\x74\xbb\xcf\x9d\x89\x5a\xc9\x83\xe4\x9d\xc1\xb7\x67\x28\x34\x1e\x0d\x2a\x13\xad\x7d\x6f\x09\x9e\x95\x15\x41\x84\x7c\x1d\x5e\x0b\xe2\xa2\x37\x65\xa9\x89\xb9\xb7\xed\x24\x56\xd1\x3e\xf5\x2c\x62\x16\xfe\x0c\x22\x1b\x7c\xdb\xba\xe0\x47\x7f\x81\x52\x1d\x08\xd9\x8e\x53\xf0\x85\xb3\x7e\x37\x35\xbc\x6d\xf0\x11\x44\x36\xee\x2b\xb2\x4f\x09\xb8\x38\xa4\x78\xff\x12\xde\x16\x6a\xa8\x5f\x36\xde\x91\xe7\x6a\xe8\xf4\x12\x1a\x1e\x5b\xf5\xee\xca\x35\x31\xf7\x89\x61\x12\x50\x2a\xaf\x09\xc7\x2a\xd3\x89\x8a\xf2\x5c\x25\xa1\x1e\x21\xae\x1c\xac\x16\x52\xe8\x88\x65\xae\xc2\x9b\x77\xe0\xb9\xbd\x93\x2e\x74\xbb\x4f\xe0\x8f\x7b\x59\xd8\x1e\x85\x60\x40\xac\x17\xcb\x3e\x43\x6b\x7e\x5f\x36\x8c\xe1\xd0\x9c\xc2\xcb\x5a\x8f\x62\x87\x75\x81\x46\xab\xfb\xfe\xf1\x13\x9e\xa8\x60\xd2\x37\x6e\xf8\x7e\x48\x54\x70\x5c\x01\xc2\x7c\x8f\xed\xf4\x18\xc2\x80\x6f\xbc\xf0\x11\xdf\x11\x70\x9b\x8e\x31\x82\x85\x1d\x75\x6f\xb0\xcf\x50\xf5\xcc\xe2\x46\xbd\xf3\x92\x6b\x95\xa7\x89\x8a\x29\xa5\x8b\x45\x65\x7a\x13\x2e\x21\xe3\x45\x98\x88\x52\xb0\x95\xde\x90\x54\x5f\xc7\xb0\x0e\xa8\xa6\xac\x0e\xc1\x38\xe5\xb3\x91\x9d\x38\x63\xd9\xe0\xfa\x68\xe2\x76\x0b\x3a\xce\xa6\xb5\xcd\xff\x2f\x63\xef\xfe\x23\x49\x96\x9d\x87\x75\x67\x55\xf5\x63\xba\xe7\x3d\xbb\x5a\x49\x90\x91\x2b\x11\x5e\xc9\x5e\x0c\x40\xd8\x90\x05\x02\x46\x24\xab\x6b\x77\x76\x1a\x9c\x9a\x72\x77\xb3\x87\x1a\xc0\xc0\xdc\x8c\xbc\x95\x19\x5b\x91\x11\x39\xf1\xa8\x9a\x9a\x3f\xc0\x30\x04\x83\xb0\x01\xc2\x06\x2c\xd9\x02\x68\x89\x26\x69\x9a\xe6\x4b\xa4\xac\xe5\x6e\xd6\x2c\xc9\xd5\x92\xdc\x5d\xce\xcc\xce\xfb\xb5\x3d\xfd\x7e\x57\xbf\xdf\x5d\x6d\xc4\xf9\xce\xb9\xf7\x44\x47\x8c\xac\x9f\x26\x62\xba\x32\x33\x1e\xf7\x71\xce\x77\xbe\xf3\x7d\xcf\x31\x40\xf8\xb6\x6a\x4e\x7f\x3b\x68\x59\x33\xc3\x34\x19\xc6\xe9\xd8\xc2\x6b\xc3\xc1\xce\x08\x72\x65\xd2\x38\x0e\x42\x52\xd8\x38\x9d\x10\x4b\x8e\x9f\x38\xa8\x49\xce\x1b\xcc\x55\xb6\xb8\x89\x18\xdb\x3c\xf3\x7f\x81\x37\xdd\x6b\x5d\x6f\x62\xd1\x69\x46\xfd\xe0\xbc\x22\x7f\x9e\x6f\xb6\x21\xbd\x78\xb0\x6b\x5f\x2d\x4d\x0c\x7a\x2f\xa2\x38\x18\xc5\x69\x21\x7f\x3c\xa1\xfb\x3a\xc4\x8a\xc6\x51\x6c\xb2\x47\xab\x97\x2e\x49\x31\xbd\x0b\x5c\xe7\x36\x54\x4c\xf8\x64\x83\x26\xb8\x48\x07\xd3\x2f\x61\xe8\xde\x05\x64\xe9\x8c\xb1\x1d\xa2\x7f\x25\x50\xee\xc2\x4c\x16\x44\xc9\x0c\xe2\x25\x20\xdc\xec\xea\x79\xbc\x75\x93\xaa\x5c\x58\x83\x6e\x4f\x55\x4c\x7a\xb1\x96\x85\x27\x76\xed\x51\xdf\x0e\xfa\x33\x0e\x65\x95\x9c\xd9\x73\x4c\xa7\xbc\xa7\xe2\x7a\x38\x18\xa0\x08\xc5\xdc\x32\x86\xf0\xf1\x6e\xc0\x69\xbc\x87\xf1\xc7\x0a\xa9\xa0\x40\x48\x17\x05\xdd\x0d\x72\xa9\xb9\x8d\xea\x42\xa5\x5d\x5d\x79\x38\x5e\xad\xb5\x14\xaa\x76\x95\xd8\x24\x76\x96\x92\xff\x4b\xd5\x23\xda\xa2\x65\x75\xeb\x12\x7a\x9d\x2f\x05\xcf\x28\xd5\x00\x78\x4b\xe7\x45\x3e\xe3\x6f\xf2\x26\x9e\x38\xe2\xc1\x9f\xe1\xd1\x48\xd0\xda\x94\xea\x3d\xd8\x5d\x36\xa1\xc5\x70\xe0\x7a\xb4\x32\x94\xe0\x02\x06\x02\xb9\x33\x5a\xd8\xed\xd9\xf0\xd9\xd1\xb3\xe8\x99\x56\xd6\x75\xde\xe7\x4a\x92\x0a\x92\xa4\x49\xc2\x42\x9c\x49\xb8\x99\x46\xa9\x69\xbf\xe2\x66\x49\x66\xab\xfc\x43\xec\xc9\x50\x77\xf9\x12\x46\x16\x06\xf4\x9e\x0d\x5f\x0f\x7f\xe0\x1a\x89\xf2\x2a\x1d\xcc\x61\x23\x2c\xb0\x0c\xde\xb3\x73\xa4\xf4\x4f\xfd\xfd\xa9\xda\x56\x7f\xa2\xe8\x38\x93\x2c\x5d\xb5\x73\x75\x27\x08\x47\x57\x7a\x84\xa6\x88\xac\xbf\x3e\x04\xb8\xa8\xd1\x75\xdd\xe3\x39\x88\x72\x6e\x41\x98\xf1\x45\x07\xa4\x4b\xc0\x04\xae\x62\xe3\xc3\xd7\xfc\xae\x2a\xb2\x2d\xdb\xb8\x20\xf7\x30\x6c\x83\x50\xd8\xc6\x67\x3a\x34\xfe\x5d\x37\xae\x13\xac\xf8\x5f\x5a\x7a\x8b\x81\x34\x6d\xeb\xd1\x84\x63\x90\x5f\xa5\xab\x5e\x8f\xc8\xe9\x61\xbd\xa5\xf5\xb0\xde\xd2\x41\x3b\x89\xc1\xe7\xb3\xfe\xa2\x4e\x07\x5a\xf0\x63\xea\x6b\x76\xa7\x71\x25\xa2\x04\xd2\xa6\x59\x32\x5e\x47\xab\x66\xf5\x4a\x9c\x86\x42\xf5\xd4\x45\x36\xe1\xe1\xf0\x97\x28\xbb\x33\xd5\x9d\x03\xc6\xbf\xad\x18\xcd\x58\x44\x25\xbe\x7f\x42\x49\x08\xae\xda\xa4\xb4\x7b\x94\x74\xd5\x39\xd5\xb5\x72\x8e\x10\x32\x47\x8a\x76\xbb\xd0\x55\x14\xd8\x59\xe7\x61\xea\x8d\x64\xae\x06\xbe\xeb\xe1\x01\x16\x31\x00\x2b\x1f\xe0\x35\x2a\x65\x08\xd9\x5d\x8f\x50\xf7\xc0\x71\xd7\x20\x57\x58\xb6\xca\x42\xcc\x71\x91\xd6\x2f\xd7\xfb\xe9\xe4\x6f\xff\x95\x17\x94\x4b\xb3\x65\x0b\xe7\xab\x97\x39\x41\x7a\x8f\xfe\x90\x8f\x95\xa1\x68\x58\x66\x19\x45\xfd\x8f\xf8\x06\xba\xb3\x08\xc0\x38\xd4\xc0\x95\xb1\x49\x0f\xdd\x3d\xc2\xfa\x5b\x58\x84\x44\x30\x82\x16\x44\x89\x3f\x7d\x2c\x3a\x4b\x83\x10\x31\xec\x55\x04\x69\x2e\x84\x39\x30\xcf\x3b\xfc\xbb\x2e\x1f\x0c\x47\x76\x99\x09\x71\xf8\xc5\x23\x58\x85\x50\xb8\xb9\xa5\x78\x74\x9b\xad\xa2\x4e\xf9\xab\xa5\x71\xad\xea\xcc\xf6\x57\x4e\x02\x9b\x8d\x6d\xed\x85\x85\xae\x7d\xcd\x8e\x27\xd4\x39\xe5\xd6\x4b\x35\xa7\xa2\x6c\xfc\x18\xbd\x28\xa1\x7b\x57\xf7\x03\x84\x14\x0e\x0a\x58\xec\x99\x39\x8f\x7b\x03\xb7\x19\x3b\xc2\xde\x0d\x65\x97\xc1\x70\x3c\x56\xcb\xb7\x28\x88\x42\x10\xd7\x21\x00\x9c\xa3\x5c\xba\x60\xec\x14\x3b\x89\x07\x8b\x9f\x78\x07\x8b\x91\x52\x45\x7f\xb9\xae\x4d\x83\x36\xdf\xe3\x2d\xcc\xf5\xe7\xaa\x7c\xab\x2c\x5c\x91\x08\xb8\xd2\x5d\x6c\x50\x7c\x32\xdd\xcd\x7f\x9e\xa4\x8f\x56\x17\x80\x30\xf8\xef\xd2\xfb\xc3\x1e\xc6\x34\xe8\x9a\xc3\x12\xcd\x84\xef\x3e\xb1\xa1\xe5\x4b\x28\x76\xc3\xeb\xff\x0a\xad\x3b\x34\x13\xfe\xe4\x3f\xa3\x7b\xc4\x53\xd9\xa5\x50\x7a\x8a\xfb\xb6\xb8\x69\x0f\xbf\xb4\x45\x50\x88\x12\xbb\x15\xf5\x90\xbb\x4a\x61\xd7\xdb\x28\x83\x53\x76\x5e\x09\x60\xd4\x1b\xc1\xf2\x32\xdf\xa5\x63\x62\xb4\xd8\x88\xeb\x88\xaf\x8b\x7e\x3c\x55\x7c\xb5\x77\xa6\xfe\x12\x3f\x0b\x14\xb1\xe6\x0a\xde\x03\xf7\xea\x4d\x55\x1b\xcf\xe7\x0a\x5b\xa0\x9d\x05\x4f\x1b\x2b\x35\x76\x61\x39\x51\xfa\x4a\x45\x16\x25\x51\xb1\x3e\x43\x0b\x08\xb8\x88\x27\x68\x68\x00\x24\xf8\x53\x3c\x75\x21\x32\xb5\xb8\xe1\x65\x65\xb2\x93\x86\xa8\x32\x81\x94\x6a\xfe\x7b\xd8\xd2\x9d\xca\xa5\xeb\x3a\xbf\x82\xc7\x8a\x91\x7c\x6a\xea\x99\x10\x37\x55\xc2\xb0\x5b\x09\xcf\x47\x49\x68\x93\x6a\x33\xce\xe7\x14\x5c\x87\x14\x05\xd1\xdb\xa7\x4a\x07\xef\x9c\x52\xc2\x3a\xae\x4c\x5e\x2e\x37\x92\x82\x03\x4b\xdd\x65\x51\x91\xc3\xeb\x79\x33\xf0\x89\xc0\x9b\xaa\xf1\xc8\xc4\x71\x44\x29\x52\xf5\xd5\xaa\xc3\xff\xa0\x6b\x7e\xf7\xb2\xf5\x3c\x56\xf9\x1f\x02\x4f\xbe\x19\x44\x79\x51\x66\x7d\x16\x38\xdc\xa2\x1c\x61\xeb\x88\x7a\x71\xab\x69\x61\xf3\x9d\x33\xde\xea\x85\xab\xe5\x08\x24\xd1\x6d\x88\xd5\xe4\x63\x5a\x0b\xf8\xff\x4f\x15\xaf\xf9\x03\x0e\x22\xb0\x65\x7c\xac\x02\xe3\xeb\x6d\xe2\xb0\xd0\x37\x56\x5d\x2b\x9f\x68\x7b\xfa\x4f\xda\xe8\xe1\x96\xba\xe5\xd7\x89\x89\x8a\x1b\xbe\x83\x30\xd2\x55\xb5\x95\x3e\x55\x4b\xec\x9f\x17\xd6\x8c\x15\xf5\x8f\x21\x7f\xc9\xe2\xfc\xfe\x60\xb2\x71\x5e\x64\x54\xcc\x75\x49\x9b\xb8\x79\x01\x75\x3a\x1a\x34\xf3\x2f\xec\x10\x47\xd5\xb6\x1a\x47\x5e\x54\xb2\x4d\x18\x53\x2c\xdd\xf3\x95\x65\xd5\x1b\x75\x5e\x8b\x24\x9e\x0f\x6a\xee\x66\x69\x94\x14\x63\x9b\x14\x2c\x85\x81\x81\x8c\x6c\x9b\xb7\x6a\x7a\x08\x08\xb0\x3e\x6d\xec\x16\x82\x0a\xa5\xf1\x00\x00\x19\x46\x3f\x7c\xe0\xf9\xd8\x69\x29\xaf\x45\x31\x70\x3b\xac\x5e\xc0\x14\x44\x88\x4d\x55\x3f\x36\x6b\xe5\x5e\x93\x4d\x76\x50\x99\xd2\xad\x8b\x8e\x44\xc0\xea\xbc\x58\xd4\xfe\x22\xf0\x80\xcc\x4f\xe9\xab\x19\x2c\x51\x4f\xe8\x1d\x55\x80\x2b\x93\xa8\xc8\xd1\x77\x2a\xa6\x42\xaa\x93\x18\xba\xed\x98\x3d\xd0\x6a\x42\x54\xc1\x5a\x4d\x08\xfb\xee\xa8\xbd\x07\x7a\x17\xae\xd8\x58\x6d\xd1\x22\xf2\xe2\xbd\xb7\xaf\x6b\xc1\x97\x13\x2a\x23\x2f\x32\x6b\xf2\x32\x5b\xdf\xa3\x9a\x3e\xb6\xb3\xf7\x14\x76\xa7\xa3\x81\xf7\x9f\xe0\x7e\x40\x41\xe5\xfd\x2a\xff\x33\x9a\xbb\xfc\x47\x81\x6a\x1c\xde\x41\xa8\x00\xf6\xff\xdf\x44\x53\x0f\x66\xdf\x1f\x06\x5e\xb0\x61\x43\xd3\xba\xae\xd7\x5b\xd6\xad\x41\x1c\x84\xdd\x91\xe3\x09\x3e\x51\x0a\x95\xab\x24\x69\x78\x60\xde\xcd\x81\xea\x7a\x64\x72\x38\xd5\x78\xbb\x1c\x15\x9e\x1c\x84\x08\xff\xac\xd2\xf2\xb8\x57\x8b\x50\x3c\x01\x2b\xcc\xec\x20\xaa\x42\xe1\xdd\x78\x32\x02\x3d\x78\x0c\xed\xba\x16\x16\x78\x17\x4b\x0e\x98\x6f\x6c\xc5\x85\xb5\xf4\x77\x68\x75\xc6\xa0\xbe\x1a\x28\xc8\x18\x96\x4f\x78\x02\x10\x16\xc0\xf1\x83\x40\xa6\x56\x91\xad\x13\x09\x06\xc4\xdd\xaf\x50\x5e\xe2\xf4\x3f\x64\x1d\xf9\xec\xa9\x0d\xe5\x30\xf9\xa0\x16\x30\xab\xde\x7d\x9e\x98\xc2\x2f\xf1\x63\x93\xe8\x8a\x73\xde\x60\x96\x77\x6f\x67\xe3\xe7\x58\x7f\xa0\xd4\x48\x69\x54\xdd\xe1\xbf\xf0\x1a\x9f\x66\x30\xb0\x7d\x14\xcd\x31\x18\x40\x23\xe1\x63\xe5\x89\xbb\x1c\xc5\xe3\x59\x05\x33\x72\x9f\x0a\x9f\x28\xfb\x99\x9f\x22\x4c\xe3\x93\x96\x2c\xe3\xb9\xee\x20\x4a\x12\x9b\x91\x58\x29\xd2\xc5\x0b\xaa\xc2\x76\x41\x81\x6d\xa6\x9f\x9a\x0c\x0e\x63\x4e\x16\xd9\xe5\xeb\xb7\x1a\x0b\xfd\xf3\x8b\x5d\x9b\xa0\x96\xec\x1e\x3c\xa8\x30\x4e\x1e\x53\xfb\xb9\xb4\xf0\x5b\xe2\x68\x1c\x15\x30\xb2\x72\xf2\x6b\xd5\x3d\x4b\xe5\x52\x09\xc0\xfd\x99\x8a\x2f\xfa\x26\x59\xb1\x59\xbe\x57\x59\x8e\x6f\x4c\xbd\x59\xea\x31\x7c\x89\xdc\x5f\x35\x42\xb8\xec\x03\xb4\x55\x3f\x04\x41\xcd\x6b\x0e\x70\x33\xde\x04\xfc\xb6\xbe\x06\xd6\x60\xe5\x66\x52\xde\x33\x9c\xae\x8b\x27\xcf\x9c\x53\xbb\xf3\xab\xa5\x89\xa3\xe5\x75\xd7\xa1\x80\xbc\xed\x82\x12\xd0\xbf\xa0\x68\xfd\x79\x91\x99\x28\x11\xea\x40\xab\xc1\x81\x67\xd3\xfd\x57\xff\xe4\xbf\xec\x54\xef\x87\x9f\x40\x50\x7b\x1c\x3e\xe0\xcf\x47\x11\x24\xa1\xa5\x95\x84\xfe\x4e\x7a\x49\x1c\xdd\x6f\xb9\xb0\xc9\x9c\xda\xf2\x21\x6b\x83\x05\x0f\xa9\x25\x3e\xf2\x68\xaf\xf3\x4b\x07\xdd\x2a\x55\xdd\x06\xb0\xc9\x6d\x1b\xaa\x5e\x68\xb2\x22\xb6\x58\x7d\x44\xf6\x84\xbe\x9a\x4f\x54\xf3\xc1\x38\xe1\x02\xab\xb8\x35\xa9\xd2\xd9\x05\x65\xcd\x86\x00\x40\xd1\x41\x16\xdc\x76\xe5\x0b\x8b\x85\xcd\xb2\xe8\xf5\xd7\x23\xfa\x61\x91\xca\xad\x6e\x83\x8f\x1b\x3d\x66\x0b\x87\xba\xe9\x00\xbe\x49\x68\x5d\x3b\x87\xfc\x5b\xd4\x93\x3d\xbb\xe5\x66\x0d\x94\x4e\xa3\xd0\x92\x34\x01\xe2\xc4\xcf\x03\xa5\xd7\x7a\x6e\xea\x37\x3c\xfc\x3a\xc2\x8a\xb7\x95\x68\xca\x1d\xdd\x25\x74\x8e\xd8\xe7\x80\xde\x40\x09\xc2\x36\x76\x09\x2f\x1e\x9b\xc3\xb1\x46\x01\x67\xdf\x3e\xee\x69\x8c\x84\xec\xa0\xba\x15\x25\x7c\xf9\x97\x6d\x5e\x51\xf6\xb5\xa8\x98\xab\x46\x0e\xd0\xd7\x3f\xd6\xe6\x25\x70\x69\x42\x04\xf6\x58\x6f\xfb\xcf\x39\x97\x9d\x8e\x93\x5d\x3a\xe2\x00\xad\xdc\x16\x45\x4c\x7e\x2e\xd2\x06\x59\x53\x8e\x61\x8c\xa8\x59\x18\x17\x41\x62\x55\xc3\x37\x85\x1d\x92\x20\xd7\x4b\x5a\xaa\xfe\x79\x69\x4b\x6a\xc2\xb7\x87\xe7\xbb\xab\x36\x89\x42\xa6\x24\x62\x03\xb9\xa0\x31\xa8\x0b\xce\xf9\x6b\x92\xaf\x87\xa3\x28\xcc\x3b\x35\x41\x58\x9a\xe6\x22\x15\xeb\x39\x02\x66\x68\x93\x70\x7d\x6f\xc7\x69\x34\x6f\xdb\x50\x4a\x21\x27\x35\xa7\xf9\x44\xbd\x57\x9e\xbe\x1d\x90\x14\xf7\x36\xba\x2e\xfa\xc3\xf3\xae\x42\x4a\x63\x17\x09\xf3\x09\x6c\xff\x5a\x2f\x46\x14\x4e\x6b\xcd\xe3\xd5\xcb\x95\x26\x5e\x1f\xc9\x66\x65\xdf\x26\x03\x83\xc6\xd0\xe7\xf8\x93\x70\x82\xe3\xe3\x06\x99\xf3\xf0\x7c\x4d\x80\x5b\x79\xeb\xd7\x1a\x5e\x37\x5b\xe8\xd9\x07\x99\x25\xd6\x51\x1d\xa0\xdc\x85\xca\x27\x2d\x65\x87\x38\x5a\xb1\xdc\x24\xcd\xa5\x30\xa5\xe3\xcb\xda\xb2\x88\x85\x37\x1a\x34\xa7\x03\xf3\xdd\x89\xc9\x0a\xa2\x79\xc3\x3f\x69\x71\x71\x8b\xbc\x6f\xb6\x2e\xb9\x65\xab\x9f\x95\x09\xba\xea\x04\xa8\xa2\xe7\x2e\x18\xd4\xc3\x57\xb4\x70\xa8\x3b\x48\xcb\x7e\x01\xde\x23\xfe\x0a\x6b\x31\x7a\xa7\xb6\x29\x09\xa2\xdb\x94\x42\x4a\xf3\xfc\xc3\x55\x0f\x89\xb6\x89\xb5\x9b\xc6\x14\xe2\x23\x0e\xf9\x44\xf7\x19\x7e\x12\xd4\x71\xd0\x68\x12\x47\x89\x25\x67\x6c\xcc\xcf\x8e\xee\x3d\x62\x5d\x0e\xe6\x38\x60\x51\x11\xc2\x43\xf5\x0c\x45\x51\xcd\xf7\x9e\xb0\xa6\x05\x48\xe6\xff\xef\xd4\xd3\xb5\x8f\xd6\x09\x59\x36\x7f\xc4\xa7\xa0\xbf\x17\xa8\x0e\x58\x26\xe9\x03\x33\xa9\x15\x5a\xbf\x47\xbb\x3f\x88\x57\x1c\x65\x3a\xce\x4c\xf5\xa3\x00\x74\x3e\xc2\x35\xbb\x7d\xcd\xf9\x75\x5c\x25\x25\x6f\x41\x32\x95\x27\xe0\x88\xdc\x6c\xe8\xa5\x69\xd5\x4b\x3e\x6e\x33\x66\xb2\xaf\x4d\x8c\xef\xa8\x13\xdc\x92\x1e\x9c\x64\x46\xad\xea\x94\x99\x56\xd4\x02\x56\x20\x80\xa0\x2a\x55\xa6\xe1\x8a\x5d\xb6\x71\x6c\xb3\x19\xcf\x41\xb9\xa1\xb4\x98\xb8\x1c\x8f\x65\xfc\xa3\xc6\x30\x5f\x3a\xb0\xd4\x4d\x27\xd5\xee\xe9\xf7\x31\xc0\x98\x4e\x7a\xa5\x7a\xc2\x6c\x76\x49\x57\x01\x54\xed\x4c\xa0\x44\x8d\x7f\xb3\xcd\x3b\x90\x68\x63\xb3\xd5\xc0\xdf\xc0\xea\x82\xc8\xea\xb4\xee\x51\xba\xa0\xac\x01\x6f\x05\x8f\xab\x10\x32\x19\x56\xb7\x74\x78\xde\xe9\xdd\xfb\x7d\x4e\x17\xbb\x3f\x9f\xee\x11\x5a\xf0\xe2\xe2\xd2\x57\x55\x03\xc7\x03\x24\x4f\x78\x66\xac\x38\x42\xaf\x69\xf1\x49\x62\x9c\xb3\x69\x10\x11\xf4\x10\x04\x7f\xa8\xb9\xfb\x6f\x4e\x3b\xdf\xf8\x15\x6f\x8c\xf2\xc2\x82\xb3\xb1\xa0\x21\xc3\xb5\xb3\xa9\x52\x47\xbb\x85\x05\x11\xfb\xcc\x2d\x9d\xc2\x5f\x51\xcd\x77\x6c\x9a\x87\x4d\x6a\x06\x14\x5e\xed\x2b\x2b\xee\x08\xd5\xb6\xca\xf9\xed\x74\xfb\xcf\xf1\x4c\x02\xbe\x83\xcd\x6e\x0e\x34\x63\x00\x5f\x6f\xe8\x5a\xf2\x69\xac\xec\x02\x5e\x51\x50\xc0\xd8\x0f\xab\xc4\x02\x9a\x82\x27\x33\x92\x9f\x2b\x41\xe7\x95\x57\xb6\x2e\x29\xa3\x99\x77\x55\x55\xfb\x22\xc7\x8b\xa2\x3e\xd5\xf9\xda\xd7\x98\xa4\xc3\x34\x48\x2c\x8a\x8f\x11\xa6\xc8\xdb\x83\x72\x79\xba\xaa\x85\x89\x92\x30\x1a\x10\x50\xe0\xeb\xab\x97\x95\xc6\x23\xbb\x40\xb1\xdd\x61\x83\x05\x7a\x78\x7e\xa9\x9b\x17\xe9\x64\x22\x13\x0a\x29\xda\xf6\x0d\x95\xaf\x6d\xef\xb9\x5e\xb1\x6a\xb6\x0e\x3a\xca\x29\x82\xdb\xb2\xf8\xa4\x65\xab\x58\xea\xc6\x5f\x4b\x6d\x84\x45\x51\x4c\x49\xab\x31\x22\x66\xa5\xb5\xaa\x64\x54\xec\xa1\x31\x23\x97\x4b\x97\x04\x1e\xcc\x65\x6c\x7d\x82\x86\xd2\xa8\x11\x13\x47\x7a\x73\x00\x57\xaf\xa8\x2e\x89\xb3\x6a\x60\xcf\x92\x80\x91\x4b\x40\xab\xc1\x24\x60\x2a\xdd\x81\x14\xd5\x95\x19\xd6\xbb\x2e\x66\x28\xca\x6c\x9c\x46\xe2\xa7\x8f\x2b\xbf\xa4\x6c\x56\x2f\xa9\x52\x5d\x98\x66\x03\x9b\xe9\xb6\xf7\x3f\xc5\xa8\x16\xc1\xfa\x8e\xeb\x1c\x3f\x51\x5b\x97\xcb\xc4\xee\xac\x06\x90\xd4\xa8\x3d\x50\xf4\x3f\x06\xaa\x65\xeb\x53\x0c\x4d\x2c\xc5\xd7\x54\x31\xe2\x9c\xf2\x5a\xdb\x0a\x74\xef\x5d\x0b\xc4\xd6\x4f\xd7\x62\x21\x01\xb4\x9b\x55\x2b\xa1\xcd\x08\x59\x6a\x9b\x47\x72\x9b\xcc\x63\x18\xa7\xb9\x9d\xf1\x3e\xe0\xc7\xa7\xde\x79\x1b\x72\xac\x98\x57\xb7\xbc\xed\x42\x98\x99\x71\x3f\x16\xe9\x33\x31\xa4\xa5\x67\x28\x79\x5c\x53\x12\x62\x14\x0d\xec\x8c\xbe\x68\xe7\xe7\xf5\xf3\xa7\x91\xd8\x08\x73\xe0\x8b\xe0\xb1\x81\x49\x66\x3c\x3a\x05\xa6\x2c\x3e\xf3\x31\x36\x6e\xa1\x73\x3e\xa3\x80\xe2\x24\x5d\x35\xac\x1d\x51\x2d\x36\x08\xe5\x7e\x07\xab\x23\x9f\x34\x1a\xbc\x16\x0e\x75\x8b\x2c\x1a\x0e\x6d\xe6\x88\x46\x2c\xca\x44\xeb\xb0\x08\x34\xf9\x05\x7b\x62\x32\xf2\x18\x7b\x61\x81\x17\x40\xde\x67\xb9\xc8\xa9\x0a\xa6\xef\xea\xf2\x88\xce\xa6\xcc\xeb\xeb\x73\x7e\xcd\x78\xb4\xa7\x63\x41\x55\xd6\xbe\xa0\xdb\x22\xaf\x63\x70\x09\x07\x49\x22\xab\xc2\xc4\xcc\x9c\x43\x66\xb2\x8b\x12\x03\x3e\xee\x35\xd9\x7c\x07\xba\xc5\x28\x2d\x89\xe5\x7c\x60\x5e\x07\x95\x2e\xc2\x74\xa4\xcb\x2a\x04\xb5\x49\x2e\xc5\x0e\xee\x51\x54\x64\x91\x13\x53\x6f\xad\x63\x0a\x3b\xe7\x37\xb8\xce\x86\xd2\x03\xb9\x09\xee\x5f\xb5\xe4\x2e\x2e\xf2\xd3\xd8\x49\x0b\xb2\xe0\x93\x32\xd8\xc6\x69\x42\x9e\x83\x60\x87\x70\xb9\x92\xe2\x6d\x29\x5d\xb6\xa4\x17\x63\x13\x47\x21\xb4\x11\xb8\x56\x11\xf8\x0a\xeb\x2b\xf5\x6a\x77\x4b\xa0\xb9\x36\xb2\x16\x4b\xa0\x04\xfb\xd5\x6d\xc8\xca\xde\xd2\xe7\x3e\x31\xb9\x77\x9f\x64\x6d\xf0\xc0\xb7\x58\x1d\x55\x0c\xe1\x49\x96\xae\x46\x24\xea\xb7\xb3\x5a\x00\xb0\xe6\xfc\x88\x26\x83\xa4\x8b\xf4\x2d\xdc\x5e\x8d\xb5\x04\x03\x95\xfd\x1d\xf9\x84\xb6\xb9\x2d\xd4\x00\x58\x69\x5f\x6d\x34\xe9\xaa\xcd\xaa\x38\x8a\xcb\x3e\x62\x1e\xd8\x71\xf6\xeb\x17\xb4\xea\x5d\x99\x0c\x4c\x52\x3d\xb0\xe7\x85\xd3\x08\x50\xd6\x89\xf5\x2a\xe4\x5b\xfb\x3d\xc4\x26\x5c\x19\x99\xb5\x95\x8e\x17\x6c\x87\x8b\x1b\x1f\xbb\x71\x93\x97\xfd\x71\x94\x44\xe3\x72\x3c\xa3\xc7\x98\xef\xca\x9c\x51\x9c\x88\x3d\x3d\x85\xf9\x17\xa3\xd8\x16\x51\x98\xef\xf0\xdd\x1b\x97\x68\xb9\x44\x70\x72\x44\x91\xf5\xb8\xaa\x85\xa5\x8b\x29\xb0\x7c\x82\x29\xc4\x1f\x51\x72\x02\x71\xba\x46\xee\x85\x5b\x57\x28\x3b\xb9\xa2\x10\x09\xd6\x4a\x86\xdd\x00\x22\xf3\x5f\x0f\xbc\x19\xdf\xaf\x4f\x3d\xa5\x9f\x93\x29\x67\xcb\xee\xcb\x9a\xa7\xf0\xca\x04\x21\xf0\xa1\xf4\x98\xba\x47\x07\x33\x1e\x8e\xde\x9c\x7a\x18\x1c\x46\x9c\x88\xb2\x6e\x29\x0e\x43\x3f\x1a\x90\xfd\x89\x5a\x6a\x39\x77\x95\x70\xd7\xaf\xd7\xf0\xea\x42\x31\x10\x60\x86\x98\xcc\xe8\x3d\xbc\x30\x19\xfa\x3d\x58\x12\x16\x51\x1c\x90\x83\x6b\xba\x6e\xf5\xb6\x36\x98\xfe\x23\x8c\x08\x60\xc2\x3b\x7b\x5a\x1b\x66\x53\x35\x9a\xb3\x49\xb8\xa8\xcd\xee\xf5\x8f\xdd\xf4\x95\x33\x16\xdf\x82\x74\x1b\x34\xf5\xe2\x97\xba\x65\x52\xdd\x77\x98\x66\x02\x98\x60\x30\x42\x2e\x94\x8f\x1b\xcb\xf8\x4b\x4b\xdd\xe5\xcc\x31\x89\x95\x06\x0e\x1e\xb5\x58\x0b\xf9\xc1\x56\xad\x6b\x71\x1c\x31\x13\x0e\x21\xf2\x11\x55\xa7\x3c\xd2\xaa\xfa\x3c\xc9\x6c\x5e\x44\xec\x79\xc3\xa6\xd5\x4a\x00\xff\x84\x12\x11\x63\x0b\xf8\x3d\xde\x42\xf7\x36\xdd\x81\x88\xf0\xfb\x4c\xf1\x86\x9a\x46\x77\x91\xa7\x01\xd0\x63\x83\x18\x8c\x93\x6d\x88\x82\xf1\x62\xdf\x47\x30\x8a\x90\xa2\x83\x90\x90\xd3\x75\xa5\xcb\x30\xd3\xd3\x02\xcb\x8e\x74\xdd\x8f\x52\x9b\x0c\xa3\xc4\x3a\xdf\x3a\xec\x72\xc7\xb5\x63\xc3\x71\xed\x06\x66\x26\x51\x61\xe2\x28\x2f\x72\xc2\xa7\xc5\x51\xbc\x1a\x68\x62\x68\xb0\xd7\x85\x59\x26\x1c\x41\xb3\x80\xc5\xa7\x69\xbd\xc3\xea\xc2\x76\x97\xb8\xd2\x9b\xba\x86\xfa\xb6\x32\xd1\xba\xec\x05\x66\xa2\x7c\x85\x69\x19\xca\xbd\xf2\xe0\x16\x0c\x08\x24\x62\x7f\xca\x2f\x3c\x79\x34\x50\x8c\x61\x41\x66\x3b\x8b\xbe\x45\xcd\x97\x0c\xc2\x38\x2d\x8b\x19\xaf\x7b\xf4\xfb\x81\xda\xc7\x2f\xd4\xe0\x30\xdf\x1f\x5a\x98\x64\x18\x8b\xd3\x9e\x00\xe0\x9e\x75\x73\x4e\x0d\x80\xc2\xc6\x36\x4c\xc7\x14\xa0\x61\x2a\xdd\xd0\x1d\x0b\x37\x54\x40\xf0\xe2\x37\xbf\xd9\xd1\xdd\x76\x53\xdf\xe5\x7a\xe1\x0b\x31\x8d\xa1\x4d\x6c\x66\xe2\x19\x25\x21\x05\x1d\x36\x61\x55\xf9\xd4\xfd\xba\x5a\x8d\xd6\x4b\x18\x1c\x6b\xda\x3f\xd6\x34\xe9\x01\xf0\x78\x9f\x1d\xae\x4f\x0a\x69\x6f\x92\x3b\x54\x90\xd9\xb9\x60\x8f\x7b\x9c\x49\x4a\x9e\x5b\x88\xf5\x9f\xe9\x29\xeb\x90\x7f\x83\xbe\xc0\xd3\x18\xda\x4e\xf7\xc0\x69\x9a\xdc\x9e\x2a\xeb\xb7\xdd\x68\xaa\x64\x2e\x20\xbd\x05\x20\xc8\x37\xa7\x0a\x0e\xf9\x78\xea\xf8\x17\xff\xed\x93\xc0\x66\x10\x79\xdc\x51\x74\xe5\x03\x4f\x6e\x54\x99\xad\x1b\xad\xfb\x16\x78\x8f\xbe\x82\x6d\x17\xe3\xf3\x2a\xe5\xc5\x52\x32\xa7\xee\xaa\xed\xa0\x83\x3a\xe3\x74\xe7\x0a\xb3\x73\xc3\x77\xfc\x11\xe9\xc2\x75\x0d\x97\x2c\x04\xc5\x52\xb9\x34\x09\x45\x36\x57\x32\x10\xbb\x5a\xe5\x83\xdc\x4b\x22\xa6\xaa\xf4\x34\xf9\xc4\xf1\x03\x41\x5f\x83\x4a\x14\x40\xf1\xfb\x81\x07\xcb\xa1\xe4\x23\xc7\x4f\xfa\x48\xdd\xda\x70\x44\x22\x23\x8e\xb3\x75\x14\x63\x1a\x57\x8f\xe4\x13\xcb\xdb\x9d\x16\xc1\x25\xa6\x71\x77\x34\x2a\xac\x59\xdc\xad\x70\xe3\x6a\xea\xfb\x58\x9d\x9c\x8f\x97\xf6\x69\x84\x5c\x87\xe7\xbb\xa1\x89\xe3\x9c\xc2\x08\x45\x70\x74\x6c\x47\xbd\x05\x66\xe9\x8a\xcd\x10\x0e\x20\x56\xfc\xbf\x68\xcd\x41\x34\xf8\x43\x42\xae\x54\xad\xc1\x4b\x9d\x55\xaf\x9a\x15\xe7\x30\x1e\x84\xa2\xd4\x46\xef\xcb\x6c\x1c\x59\x54\xff\xb9\xe2\x58\xab\x3e\xfa\xc8\x7f\x2d\x2a\x46\x51\x32\xeb\xd9\x91\x47\x59\x49\x1c\x9b\x37\x3b\xf7\xf0\x49\xe0\x67\x22\x59\x87\xb8\x1c\x34\xc9\x8b\xac\x0c\x7d\x31\x17\xd0\x07\x72\x56\xad\x3d\x23\x80\xeb\xc3\x97\xfc\xc2\x42\xb7\x18\xd9\xcc\x72\x13\x10\xb8\x22\x77\x69\x97\xe3\x63\x55\x03\x89\x6d\x1e\x47\x88\xdf\x05\x42\xaf\x1e\xa0\x60\xeb\x2d\x58\x56\x5a\xc5\xfc\x33\xaa\xbe\xc7\xe6\xb1\xa2\xed\xe7\xc9\xf8\x47\x5a\x98\x70\x8b\x55\x28\x95\x48\xfa\x2a\x3d\x87\xea\x3e\xcf\x2a\x33\xcc\x71\x34\x58\xb3\xf0\x18\xa7\x6d\x81\x21\x51\xfa\x09\x81\x47\x9f\x52\xca\xa9\x85\x4d\x8a\xc8\xc4\x64\x08\xe7\xdc\xc1\x0f\x2c\x79\xad\x5c\xdf\x3d\x7a\x7c\xaa\x18\x50\x17\x95\x95\xd5\x4f\xb5\xbf\x5b\x11\x65\x19\x13\x4a\x1d\x45\xfb\xc0\xbc\xe3\x7f\xb5\xa4\x8a\x26\xeb\x47\x45\x66\x0a\x91\x3d\x03\xaf\xff\xa4\xf2\xa5\x3e\xe9\xca\xc8\x79\x91\x99\x32\xcf\x3b\x7e\x77\xd8\xac\x97\x1b\x54\x83\x4c\x6c\x4d\xc6\x28\x20\x30\xa9\x4f\xb1\x58\xe2\x3b\xaf\xa9\xfc\xe2\xac\x6e\x02\x30\x19\x89\x2a\xd0\x9f\x22\xc6\xf8\x19\xe0\x68\x3e\x51\xf5\xc5\x7e\x99\x25\xd4\x81\xe4\x2c\xe7\x17\x0e\xb9\x32\x57\x75\x89\xa2\xf3\x2a\x6b\xd0\xa0\xec\xf7\xed\x60\x87\x2f\x7c\x33\x87\xa2\xa6\xbc\x09\x18\xe1\x31\x25\x11\xf2\x57\xb5\x7b\xac\x75\x4b\x3d\x3c\x92\xf7\x2d\x74\xc7\x26\x31\x43\x01\xb8\x50\xa5\x63\xc6\x07\x9f\x28\xee\x38\xe9\x5b\x64\xeb\x79\x34\xc0\x0a\x0a\x14\xed\xa3\xc0\xfb\x0b\x7f\xe4\x16\xc3\xff\x98\x94\x5e\x2d\xdf\x36\x4e\xd7\x76\xa9\x06\x61\xf6\x06\x16\xbf\x66\xc5\x91\xdd\x00\xe2\x88\x20\x01\x84\x53\x94\xe7\x8e\xea\x8e\x69\x7a\xb8\x2e\x1d\xa9\x06\x8a\x58\xa2\xb5\xe8\x36\x76\x93\xb4\x90\x2a\x0f\x8a\xb7\xf7\xf0\x8b\x7c\xe2\xe8\xb5\x83\xa8\x8a\x8a\x07\xaa\x75\xe2\x4d\xd5\x3a\xf1\x66\xab\x26\xc8\xc8\x64\xb1\x29\x4c\xc2\x39\xb5\xb3\xf9\x71\x45\xd1\x13\x8a\x2d\x62\xc7\x11\x6b\xd0\xfb\x59\x0e\x76\x23\x1f\xeb\xf6\x8a\xc2\x14\x65\x61\x77\xd0\xcc\xe5\x4e\xef\xa9\x17\xea\x60\xec\xc2\xc9\x85\x1f\x9e\xaf\x29\x47\x49\x6b\xb8\xd6\x14\x6f\x2b\x29\x2c\xc7\x66\x32\x71\x6f\x91\x2d\x78\xd4\x74\x3e\xa5\x0a\xed\x69\x6c\xe6\x14\x7f\x6d\x6f\xaf\xe1\x98\x73\xd0\x29\x9f\xfa\xaa\xc1\x9f\xd1\x45\x23\xf4\xb9\xaf\xf2\xdd\x91\xcd\xfa\x51\x48\x63\xcd\xfd\xda\xfd\x40\x43\xf3\x9e\xa2\x48\x2f\x66\xd5\x66\x2c\xce\x80\xa5\xf2\xb6\x2a\x97\xbc\xaf\x39\xcb\x0f\xda\x84\x0b\xbb\x63\x53\x14\x56\x28\x05\x48\xfb\xb9\x1a\xcf\x27\x2a\x5c\x7c\xe9\x5b\x2f\x76\x3a\x2f\x2d\x39\x43\x03\xfa\x33\x3e\xd9\x78\xf8\xcb\x0f\xcc\x77\xcb\x24\x31\x63\xe9\x63\xc4\xd3\x81\x10\x91\xb4\x4f\x28\xc5\x05\x2d\xfd\x9e\xd9\xe5\xd8\x86\x05\x44\x17\x50\x3e\x44\xe7\x2e\xf6\x8f\x3f\x08\x94\xf0\xe4\x49\x44\x1a\xf8\xc6\xfb\x4a\xf1\x7a\x1c\xc5\x11\x49\x8f\xd7\xc4\xd4\x7d\x57\xd1\x7b\x53\x6f\x11\x31\x4e\x57\xed\x5e\xaa\x1a\x00\x35\x60\xa7\x2b\xd4\xf9\x2f\x07\x4a\x59\xf7\xa4\x56\x4c\xa3\xa9\xe7\x68\x71\x5e\xb6\x12\x2e\xea\x20\xb2\xc1\xac\x0a\xf5\xaf\x4f\xf1\x60\x91\x7d\xb1\x10\x23\x8a\x69\xbf\x4a\x23\x03\x4b\x30\x3f\x16\xc4\x4b\xb7\x1a\xbb\xc1\x81\xf9\x83\xd4\x1a\x5b\xe6\xc2\x2f\x64\x51\x6d\x45\x05\x6c\xba\x45\x55\x73\xd2\x24\x2c\xc5\xa9\x9d\x8f\xc4\x0c\xc0\x13\x42\x97\x21\x46\xe0\x64\xc9\x2e\xa9\x9a\xb1\xb6\xd8\x5a\x78\x71\x71\x46\x0f\x2f\x9a\x6c\xd2\x23\xa7\x10\xc4\xcd\x1a\x5d\xaa\x30\xe8\x87\x13\xad\x3a\x8f\xb8\xed\xe9\x79\x0e\xc7\x3d\x14\x8a\x44\x08\x45\x22\xd9\x65\x13\xc5\x65\x66\x39\x4e\x10\x19\x49\x95\x13\xdd\x55\x22\x5c\x17\xda\x50\xee\x49\x66\xc3\x28\xc7\xe4\xc2\x98\xc1\xe2\xcc\xc7\x1b\x02\x09\x0e\x6c\x98\x59\x93\x0b\x14\x20\x36\x0d\xaa\xc7\xec\xa4\xa6\x66\x9b\x89\xcd\x40\x38\x12\x9a\xb0\xaa\x0b\x5c\x0b\x34\x97\x94\x6e\x4c\x68\x13\xaa\x11\xe8\x0a\xcd\x0c\x2c\x50\xd7\x29\xdc\x64\x77\x17\x0a\x37\xa5\x55\x91\x1e\x38\x52\x8e\xb7\x69\x28\xf2\xbd\xaa\xfa\xce\xb5\xa9\xea\x35\xba\xa2\x34\x86\x46\xd6\x78\x2d\x54\x44\xbd\xa7\xb8\x3f\x9a\xcf\xd4\xdb\x8d\x0c\x88\x2f\x4e\xbf\xce\x39\x45\xbf\xa9\xf8\x7f\x57\x1a\x91\xed\xc2\xa1\x6e\x61\xa2\xa4\xa8\x97\x63\xbf\x33\xf5\x03\xf5\x3b\x2a\x4e\x5c\x4b\x93\x81\xcd\x76\xf8\x46\x6a\x68\x2d\x3a\xd1\x32\x17\x15\xbd\x4f\x4f\x41\xac\xab\xe8\x0e\x50\xd5\xbe\x1e\x28\xb7\x8b\xeb\x0a\xff\x59\x4f\xcb\xc7\x14\xb5\xef\x32\xed\xd7\xb0\xd5\x81\x6d\x31\xd0\x80\xcb\xd0\xeb\xc1\xa5\x5d\xc6\x0b\xc1\x73\xfc\x5f\x15\xce\xf0\x98\xea\xa7\xdb\xb9\xa1\x75\x6f\xa7\xbe\xd7\x67\xcf\x06\xfa\xce\xa8\x16\x29\x1c\x83\xea\x19\x8a\xcb\x23\x0d\x25\xec\x9a\xbf\xa9\x49\xf5\x6f\xe8\x7e\x9c\x74\x64\x8a\xf5\x84\x9e\x3d\xa8\x75\x58\x41\x00\x25\x5f\xa6\x47\x82\xa5\xe8\x68\x9b\x0e\x55\x62\xd7\x44\xf7\x59\x5a\x99\x3a\xf5\x0e\x6b\xe1\xee\x7e\xa7\x4d\xe3\x30\x34\xc9\x60\xbd\x6f\x32\xa4\x80\xe2\x69\xd1\x71\x52\x9c\xa7\x95\xa8\xf7\x9f\xbb\x69\x99\xd7\x76\x4b\xe7\x81\xe6\x23\xf1\xc0\x9b\x9a\x2e\x9b\xec\xa9\xce\xbe\x85\x2d\xe6\xf2\x49\xe5\x4c\xc9\x7e\x6d\x23\x99\x42\x80\xd6\xe7\x29\xd0\xc6\x8e\xf9\x53\xbc\x1c\xe4\x94\x27\xa6\x0a\x95\x62\x04\x54\x97\x95\x5d\x08\xe5\x14\xe1\x7e\x05\x05\x6e\xce\xe1\x30\x47\xa4\xc4\xe1\xc3\x12\x68\xeb\x80\x34\x2c\x72\x1e\x02\x01\xd5\x0c\xe9\xf7\xed\x93\x2b\x41\xe4\x8b\xd5\xfe\x9a\xda\x80\xd2\x95\xd8\x8c\xd2\xb1\xd1\x72\x0f\x17\xb4\xdc\x43\xd3\x30\xf9\xf0\xfc\xcb\x5d\x33\x58\x95\xba\x02\x86\x18\x8c\x83\x90\x62\x5e\x57\xe6\xc9\x7a\x01\x2a\xd2\x89\x79\xbd\xa6\x58\xec\x73\xb4\x73\x53\x3f\xdf\x00\x6f\xce\x2a\xc6\x39\x9e\x90\xa3\x9f\x57\xcf\xd1\xc5\xd0\x5e\xf9\xa3\x4d\xdd\xd9\x44\x19\x37\x7d\xf8\xfc\x07\xe3\x83\x8f\x1b\x81\xe1\x4b\x55\x26\x93\xe7\xe5\x78\x22\x6a\x96\x2f\x3b\xf7\x1e\x0f\xb8\x7c\xd7\xc9\xbf\xd8\x57\xcb\xa8\x40\x00\x09\xea\x24\xeb\x24\xf1\x89\xee\xf4\x8f\x4d\x34\xe6\x94\x4a\xe8\x5d\x7e\xd6\x5c\x50\x4f\xa0\x1f\x9b\x81\xcd\x55\x9a\x78\x47\x6b\xe5\xdf\xd1\xe8\x63\x4a\x1d\x20\x99\x28\x3d\x20\x80\xb9\xa6\x9c\x08\xaf\xa9\xa6\x48\x9b\x65\x29\xd7\x78\x31\x6d\x59\xbb\xda\x75\xdf\x3d\xef\x99\xcb\x8f\x2a\x76\xc9\xc0\xce\x50\xfa\xae\x19\x46\x6c\xbc\x0a\x50\xe8\x4e\x0b\x20\xdc\x5d\x36\xab\x69\x66\xfa\x80\x9c\x3d\x11\xa5\x1a\x28\x02\xd9\x3f\xa1\x9d\x74\xbe\x6d\xc3\x62\xae\x1a\x12\x5c\x27\xeb\xa9\x56\xe3\x8f\xa7\xfe\x01\xdf\x57\xbe\x7b\x6c\xaa\x8c\x90\xe6\x88\xc2\x23\xc2\x34\x4e\x13\xa0\x00\x6e\x41\xf6\xa5\x8f\xf3\x8d\x7e\xac\x03\xf3\xdd\x30\x4b\xf3\x3c\x36\xc9\x40\x55\xd8\x58\x84\x9e\x4f\x1a\x70\xe3\xe1\xf9\xae\x19\x0e\x33\x9b\xe7\xd1\xaa\xe5\x5a\x23\x30\x3c\xa4\x11\x7c\xac\x3b\x49\xed\xa0\x0c\xa9\x0e\x3b\xeb\x99\x3a\xb7\x54\x51\x1e\x6d\x56\x08\x1b\x58\x56\x1f\x31\xf3\xe5\x46\x7e\xb4\x6f\x5f\x77\x10\x65\x36\x84\xc3\x18\x82\x92\xa3\x8a\x64\x7a\xd4\x75\x2b\x4e\x4c\xc6\x84\x31\xe9\x8c\xe9\x38\x99\xb2\x27\xe8\x75\x8a\xf8\x3f\xdd\x2e\xca\x48\x1d\x27\xa4\x99\xaf\x45\xcb\x05\x45\x44\xda\xe6\x19\xf1\xe2\x23\xb4\x62\x89\xbf\x56\x6d\xf5\xf3\x1b\xf5\xfa\xeb\x56\xc3\x18\x5c\x27\x12\x55\x4e\x5f\x54\x2d\xb3\xc2\x94\xf1\x40\xa8\x98\xa2\x59\xa0\x5a\x0f\xa0\xf7\x54\xf3\x0e\xc7\x66\xb5\xab\x27\x57\x3b\x32\x59\x3e\xda\xe1\x2b\x7c\x90\x73\x47\x2c\xf7\xde\xb4\x49\x18\x44\x00\xc7\xd2\x7b\x4e\x17\xe4\x80\x6c\xbe\x7f\xd9\x66\x5d\x48\x59\x31\x8d\x13\x61\x63\xf9\x42\xd5\xd9\xc0\x37\x56\x87\x23\xbb\x26\xd4\x13\xb1\xe7\xf2\xda\x17\x17\x35\x6f\x3a\x5d\xef\x5b\x46\x93\xc5\xd1\xae\xa3\x94\xa3\x7c\xf6\x15\xc6\x26\x27\x7f\x79\x85\x3c\xa3\x3f\x51\x16\xc5\x16\x9e\xfa\x6a\x9a\x0f\xad\xec\xba\x20\x0b\x30\xb9\x9d\x0b\x74\xd3\x9a\x3e\xc9\xe3\x4a\xe9\x28\xeb\xa7\x19\x8d\x30\x59\xb4\xe8\x11\xca\xaa\x55\x93\x2e\x7f\x1d\xdd\x4f\x9c\x46\x29\xa0\x17\x2c\x0f\x6e\xd1\x6d\x40\x6b\xd5\x96\x32\x89\x86\xbc\x4a\x3b\x07\x1b\xef\x66\xa3\x1a\xce\x96\xad\xc9\x72\x92\x8c\xd3\x32\xcd\x1e\x46\x6a\xec\x57\xfb\xf7\x33\xb8\x8c\x7c\xa1\xcd\x9b\xf2\x69\x37\x4d\x28\xc5\x37\x85\xcc\x65\x2c\x86\x78\xb8\x7c\xdc\x08\x68\xaa\xd1\x90\x02\xa6\x5b\x74\x46\xae\xd5\xb7\x4b\x1f\xc7\xc3\x6f\xe3\x17\xba\x93\x98\x4a\xf9\x1d\xdf\x7b\x79\x51\x45\x22\x17\x95\x76\x94\x5f\x93\x54\x16\x73\x93\xf7\x7c\x3e\x73\x9d\x30\x51\xf2\x6a\x19\x79\x5c\x87\x35\xdb\xe9\x5a\x44\xbf\x5d\xfe\x74\x39\xb6\x83\x61\xec\x70\x56\x69\x59\xea\xb8\x26\xf4\x63\x54\x07\xde\x68\x85\xb5\x07\xb6\x2f\x2a\x19\xc8\xb8\xfe\x6d\xe0\x85\x5c\xff\x6d\x6d\xb1\xab\x16\x9e\xb1\x4d\x0a\x12\x8a\x67\xf6\x9a\x1a\xd6\xdb\xb8\x29\x09\x91\xf1\xe7\x88\x97\x50\x33\xdd\x4d\x64\x0d\x4c\xd4\xeb\x81\x2a\xcd\x72\x7b\x21\x32\xff\x1b\xda\xd7\xe6\x19\x22\x9e\x49\xd7\x97\xaf\xea\xc0\xf3\x34\x07\x31\x9b\xa5\x73\x69\x3c\x8a\x8c\x6e\x4b\x22\xda\xcf\x4c\x3e\xa2\x01\xc3\x5e\xa0\xf4\x18\xc5\x17\xf4\x71\x05\x03\x14\x26\x8a\xf1\xd5\xce\xbc\xfa\x79\x6f\xa2\xd4\x32\x5a\xd6\xa2\x8c\x19\xdf\x62\x00\xe2\x59\xf5\x7a\xed\x00\x29\x6b\xb7\x2a\x04\xfe\x41\xe0\x47\xcc\x59\xca\xdf\x91\x8d\xff\x58\x69\x69\x6d\x61\x51\x43\x49\xe0\x26\x71\xf4\x64\x58\x55\xd7\xc5\x1f\xd0\xca\x2b\x9f\x41\xb7\x53\x06\xa2\xca\x18\xab\xc7\xb6\x9b\x1e\x30\x52\xe6\xed\x1b\x1e\x27\xbb\x3c\xf5\xb3\x7b\xb6\x47\x01\x1a\x6a\x8e\x3b\xc0\x35\x67\x12\x00\xfd\x28\xf2\x0c\xf4\x56\xb3\xb9\x1e\x16\x11\xd5\x83\x7e\x80\xa3\xf7\x9d\x3d\x25\x91\x9d\xc6\x36\x2c\x63\x93\x61\x72\x09\xa7\x5e\x41\x0f\x35\xd4\x6d\x14\x11\x21\xd0\x57\xda\x4e\xd2\x73\xf1\x09\xba\x22\x1d\x90\xb6\x5f\xf5\xd2\x64\x66\x78\xb1\x6d\xad\x0c\x1d\x8e\xcc\xa4\xa8\x92\xbf\x03\xf3\xce\x1c\x41\xe5\x72\x68\xcd\x41\x39\xe7\x96\xf2\x14\x65\x38\x18\x2f\x81\xc5\x47\xd9\x9d\xb0\xcd\xe3\xd2\xf3\x7d\xdd\x8c\xc4\xf8\x41\xa8\x85\x51\xa7\x8d\x7a\xdf\x6f\x95\x82\xe1\x26\x29\xd7\x27\x8e\x26\x2b\x31\xb2\x7c\x4c\xc3\x93\xe3\xc9\x17\xdb\x8b\xf9\x6d\xbb\x78\x1d\x1d\x96\xe2\x7a\xa5\x12\xa0\x0b\x8a\xe8\xf7\x7b\x6e\x07\x5f\xb1\xeb\x89\xcd\x23\x93\xe4\x33\x4a\x17\xf3\xa7\xbc\x5e\x21\xc6\xd8\xd2\x96\x9f\xb7\x1b\x13\xe4\xeb\xdd\xbe\xc9\xa3\x10\x6f\x1c\xc3\xee\x07\x53\x0f\x25\xff\x40\xd5\x48\x4c\xf8\x6a\x19\xe5\x20\xd6\x3b\xdb\xd2\x8f\xa7\x5e\x0c\xe0\x63\x35\x9b\x06\xe9\xeb\xd6\xd9\x0d\x71\x57\xdb\x54\xf3\xf6\xb4\xdd\xd0\xf1\x46\xcf\xc9\x3f\xec\x86\xd1\x2a\xab\xae\xb7\x1a\xae\xf8\xc2\x70\x94\x2c\x47\x49\x54\x44\xc8\x1d\x44\xe4\x40\x35\xc2\x6c\x36\xa2\xcf\x85\x43\xdd\x51\x5a\xe6\x76\x94\xc6\x88\x3e\xc5\xbb\xcf\x67\x52\x67\x1b\x20\x5b\xb5\x6b\x66\x76\x58\xc6\x5e\x68\x5a\xe0\xd0\x8e\x93\xb3\x6b\x5a\x9b\x7d\xed\x6b\xdd\x41\x62\x54\x9c\x71\x47\x43\x95\x77\x1a\x2f\xe4\x05\xaa\x02\x22\x94\xc6\x48\x87\xd2\x14\x1f\x2b\x1a\xfa\xc0\xae\x9a\xb8\x34\xde\x05\x80\x0d\x82\x69\x10\x8b\x59\xf0\xc3\x03\xf7\xc0\x7c\x37\x9f\x44\x19\x47\x33\x22\x6e\xe8\x23\xfc\x53\x8d\xa1\xfe\xf5\xee\xc4\x66\x63\xa7\x2a\x2d\xc4\x53\x05\x5c\x68\x9b\x99\xbe\xc5\xf3\xf1\xc8\xfa\x99\x40\x9b\x76\xb5\x0c\xc0\xdc\xda\x15\xc6\xd4\x80\xb2\xfc\x33\x4c\x10\x3e\x51\x09\x95\xc9\xb2\x74\x8d\x71\x69\x30\x17\xf8\x61\xf2\x49\xe3\xda\xf7\xed\xeb\xe6\x69\x9a\xd8\x6c\xc6\xd3\x7e\x6e\xa3\x9c\x85\x28\xff\x3b\x58\x0b\x11\x5b\xdf\x55\x5d\x78\x60\xfe\x14\x26\x19\xcc\x55\x0b\xbf\x2e\x18\xb0\x1c\x0d\x0d\x7c\x47\x92\x38\x3c\xcf\xd3\xf6\xaa\x66\xcb\xfd\x4e\x63\xe8\x91\x97\x50\x99\xad\x46\xab\x76\x00\x44\x45\x24\x75\x69\x44\xe1\xaa\xae\x2a\xef\xa5\xa3\x1a\x80\x1b\xd8\xa7\x94\xa8\xf9\x6e\xa2\x00\x50\x32\x36\xfe\x7b\x10\x34\xc6\xb5\xed\x80\xee\x3c\x70\xc0\xbf\xbd\xa1\x00\x6e\x2d\xbe\x31\x43\xda\x4a\x58\x34\x99\xa9\x86\xdd\xe2\x32\x0a\xd5\xac\xef\x5b\x97\x27\xaf\x1e\x06\xe8\x41\x37\x89\xac\x80\xa9\x7d\x65\xda\xf9\xa5\x83\xde\xde\x5b\xab\x54\x1d\x98\xc7\x4d\xfd\xfa\xdf\xe9\x69\x59\xa1\x07\x53\x9f\x06\x81\x87\x8c\x0c\x77\x57\xaf\x25\xfc\xcf\xe3\xb4\x40\x7e\x2e\xfb\xbc\xc2\xa2\x36\x1b\xf1\xc4\xd7\xbb\x99\xe9\xf7\xd9\xa0\x91\x75\x3b\xe8\x89\x8a\x86\x47\x4d\xaa\x2f\x09\x89\x2d\x0a\x96\xf8\x95\xa9\x22\x33\x5d\x09\x7c\x2b\xc4\xd1\xa9\xee\xb0\xbc\x85\x0a\x03\x32\x16\x2f\x54\xb6\x36\xb2\x99\x5d\xb5\x59\x87\x04\xec\x58\x39\x87\xbe\x44\x54\x74\x1e\x5e\x1d\x16\x17\xbb\xa3\xa8\x98\x53\x8a\x57\x50\xda\x41\xa2\x7a\x09\xaf\xcb\xa1\x17\x4e\x6f\x94\x3b\x2b\x90\x97\x5d\x72\x79\xe7\x98\x1a\xb8\x5d\x8f\x3e\x04\x7a\xe5\xa4\xe7\xe7\xd1\xda\x28\x0a\x47\x4f\x55\xaf\x12\x75\xbd\xcf\x94\xc3\xcc\x03\x4c\x0f\x76\xfe\xa0\x41\x8e\x24\xfe\x06\x1e\x3a\xfe\xe1\xc9\x8d\xce\xbe\x7d\x7c\x61\xff\xa6\x5e\x22\xec\x7c\xe3\x57\x7c\x46\x75\x60\xbe\x0e\xd3\x38\x97\x23\x37\x8a\xff\xd9\x93\xbd\x6a\x18\x8a\xc4\x99\x2f\x05\x03\x91\x05\xc9\xf8\xad\x87\x9c\x78\x3a\xca\x4b\x4e\xc9\xae\x3c\xd2\xf3\x0d\x35\x77\x9e\xec\xed\xf5\x79\xa1\x4d\x69\xcf\x72\x8d\xbc\xcf\xfb\x6e\x66\x25\x62\x15\x85\x2b\xa8\x91\xb3\x2f\x10\x8d\x76\xf1\x08\x6a\xf1\xe9\x7b\x68\x3b\xd0\xd9\xba\x74\x97\x38\x3c\x94\xda\x65\xb9\x2a\x27\xfc\x20\x5f\xc2\xe3\xdc\x58\xa8\x7b\xbe\x9e\xa7\xba\x81\xfd\x3b\xe2\x5e\x41\x3e\x69\x6c\x9e\x0b\x87\x88\x90\xa5\xf4\xa9\x37\x6b\x0a\x0d\x8a\xc9\x90\x8f\xd2\xac\x30\x43\x9b\x77\x94\x76\xd3\xd5\x40\xc9\x32\x5d\x55\x40\x59\x99\xc4\x36\xcf\x77\x57\x4f\x05\xeb\xc9\xec\x86\x9f\x62\xf7\x00\x7a\x8a\xbc\x2d\x7d\x85\xe8\xde\x2a\x44\xea\xba\x72\x4f\xf9\x1e\xbd\x08\x17\xba\x3a\xc1\xb0\xcf\x68\x18\x08\xaf\xd5\x6f\x2e\x69\x3f\xb7\x19\x4b\xa1\xb1\xca\x87\xe2\xe1\x5e\x6c\x80\x8b\x54\x17\xb3\xb1\xed\x67\xfe\x25\x21\x62\x9c\xaa\x46\xdd\xa9\x9f\x3f\x51\x32\xd8\xe1\x7b\xf8\x28\x9e\xdd\x7a\xb4\xa7\x0a\x7f\x9b\x4a\x74\xf8\x9a\x5e\x85\x78\x99\x04\xe4\xfb\x89\xda\xb3\x5e\x2d\xc9\xe3\xc5\xd1\xac\xa8\x1f\x51\x8e\xa7\x5e\x2d\x75\x60\x09\xe3\xa5\xca\x83\xce\x83\xb1\x35\x9d\x99\xfa\xf4\xef\x87\x8e\x93\x18\x47\x7d\x1b\xcf\xf8\x75\xf1\xbe\xfa\xc4\x65\x6d\xb8\x76\xa6\xf1\x68\x0e\xbd\xd8\x8d\xed\x30\xca\x63\x53\xa4\x19\x18\x50\xc2\x4a\x51\xd5\xe9\xa6\x3c\xc0\xf3\x8b\xf5\x5a\x0e\xea\x3f\x1f\x28\x11\xd9\x0f\x54\x75\xf8\xf9\x03\xbf\xc8\xd8\x92\x33\x6a\xf1\x23\xe1\x9c\x8a\xb0\xcf\x69\x51\xed\xd9\xde\x1e\xf7\x0d\xe5\xe4\x31\x95\x3b\x5d\xd2\xbb\xe4\x7d\x1a\x3d\x20\xde\x7d\x05\x33\x1f\x13\xeb\x06\x61\x7a\xa2\x67\x54\x0d\x37\xc0\x70\x5f\xee\x39\xf6\xff\x61\x01\x1b\x76\x6c\x78\x94\xe2\x4b\x1b\x8e\xba\xfc\xd5\x27\x60\xc1\x20\x16\x16\xbe\x31\xec\xa4\xae\x34\x3d\xa0\x5a\x04\xed\xe0\x97\xff\x41\xaf\x45\xee\x20\x34\x59\x3f\x45\xe5\x06\xbf\x71\xa3\xc6\x61\x50\xdc\xe6\x26\xc9\x57\xc8\x95\x71\x6a\x92\xd9\x6a\xb9\x95\x7e\x62\x8f\xaf\x41\xad\x19\x4b\xf2\x8f\xa7\x8a\x35\x72\xb3\x56\x89\x24\x7b\x63\x25\x1c\x5e\x3d\x37\x11\x14\xd7\x0a\xac\x45\x16\xf5\x4b\xc4\x93\xd5\xcd\x23\x86\x79\x67\xea\xc3\xdb\x77\x1c\xf8\x31\x88\xf2\x61\x99\x3b\x45\x62\xdc\xdc\xbf\x0b\x3c\x9b\x9e\x5b\x15\x25\x5c\xf4\x39\xde\x24\x43\x23\x59\xc7\x29\x57\xbf\xa7\x84\xfc\x9b\xeb\xec\xe1\xf9\xc5\xae\x29\x0a\x3b\x9e\x70\x0c\x20\xca\x34\xf4\xf0\x44\xb2\x46\xd6\xd9\xd8\xbc\x66\x20\x97\xe8\x1e\xf9\x76\x45\x09\xda\xbe\xe1\xa1\xad\x3c\x1c\xd9\x41\x19\xa3\x59\xc4\x11\x30\x75\x43\x92\xdb\x6f\x8f\xab\x51\x74\x1c\xab\xa3\x34\x6a\xa9\x42\xca\xc4\x1a\x09\x64\x45\x22\xc4\x3b\xe4\x9d\x57\x64\xc2\x62\x94\x95\x44\x60\x76\x71\x07\x52\x67\x3e\x6e\x73\x7e\x9a\x64\x69\x61\x43\xe9\x6a\xe6\x3e\xc0\xe9\x54\x79\x44\x4c\x1b\x05\x99\xfd\xfb\xbb\xa1\xcd\xcc\xd8\xf5\xb1\x3b\xf1\x3c\x07\x80\x5c\x74\x8c\x9e\x70\x64\x92\xc4\xc6\xb4\xfc\x21\xae\x38\x19\x68\xb3\x58\x3c\x0e\xde\x8e\x03\xd5\x8a\x8b\x4c\x00\x9d\x66\xdc\xb2\xc1\x9d\x5b\x8d\x0b\x22\xfb\xf7\x3c\x1a\x26\x75\x11\x36\xa8\x14\x89\x55\xa7\x03\xd1\xd3\x32\x23\x10\x5c\x32\x60\x62\xee\xa2\x62\x87\xec\xe6\x2c\xcd\x73\x61\xd9\xb5\x38\x1a\xbf\x5a\x46\x85\xe9\xc7\xd8\x30\x84\x5d\x40\x57\xc8\x27\x0d\x8c\xff\xeb\xdd\x3c\x2d\x8b\x91\x19\x53\x18\xe0\x4a\xf2\xd5\x47\xf8\xc4\x55\xa2\xe0\xa8\x85\x18\x5e\x7b\x56\x73\x01\x51\x49\xf3\x7c\xe0\x1e\x72\x66\x29\xf0\xa7\x5a\x04\x22\x67\xc6\xf0\x91\x07\x43\xfe\x17\x6b\xf9\xc7\x53\xa5\xe3\xd9\xd4\x42\x79\xe5\x95\x6e\x18\x97\x45\x38\x9a\xf1\x20\x1c\x07\xf1\x58\x51\x6f\x2b\x43\x83\x53\x8d\x49\x55\xa5\x21\x22\x5b\xd4\xf1\xb0\x05\x32\x41\x3e\x56\x90\x5e\x98\x82\x49\xa9\x35\xbd\xb8\x72\x2c\x55\xf2\xa6\xb3\xc6\x12\x4d\xf5\x34\xe7\x5c\xb3\x55\xd7\xab\x8d\x93\x32\x32\x4c\xc6\x90\x11\xe1\x73\xb7\x73\x6d\x05\xea\x41\x1a\x96\x63\xc2\x9b\x5d\x9b\xe2\x39\xd5\xa6\x78\xae\xb5\x7b\x22\x4c\xc7\x93\x28\x96\x71\xc8\xa2\x25\xf4\x29\x11\x30\xf1\xb4\x81\x24\x7d\x76\x67\xc7\x59\x64\x5d\xd7\x60\xde\x6f\xe0\xf5\x39\xc1\x24\xe7\x22\xdb\xc1\x86\x84\x55\xf6\xaf\xa7\x35\x69\x31\x7a\x02\xd8\x60\x2f\xb7\x28\x15\x76\x07\x76\xd9\x26\x03\x61\xae\x3a\x2b\xcb\x2a\xe3\xe0\x93\xe0\x99\xba\x39\xd3\xe2\x62\xf7\xf0\xfc\xd2\xe3\xf4\xc5\xf8\x49\x56\xf9\xc1\xdb\x41\x89\x58\xc0\x4b\x4a\xee\x50\x8c\xba\x8c\x98\x4d\x36\x71\x5a\xd8\x64\x17\xaf\x36\x09\x4c\xe4\x1b\x14\x8e\x09\xd3\x83\x6e\x05\x5b\x11\xda\x19\x70\xc3\xdb\x41\x7d\xc7\x02\x01\x0e\x30\x18\x24\xdc\x2d\x88\x6c\x72\xb6\xa7\xf8\xf5\xd7\x68\xfe\xa2\x2c\x75\x52\xc9\x1e\x78\x58\xab\xe3\x8b\x5d\xc0\xe6\xf8\xd8\x71\x72\x56\xa2\x2c\x0f\x47\x09\x33\xde\x6b\x66\x3c\x62\xb9\xa3\x80\x69\x53\x0e\xcb\x28\x99\x51\x55\x33\xc8\x54\x62\x39\xe1\x32\x19\x57\xb1\x36\x7c\xf6\xb0\x62\xd7\x77\xa9\x9b\xfb\x70\xaa\x5a\xbc\x7e\x86\x74\x5f\x0a\x27\xbe\x97\xea\x1e\xed\xb2\xbc\x2c\x06\xaa\x79\xe8\xbc\x6e\x3b\xba\xab\x72\x80\x53\x7e\x2d\x8e\xa3\xb1\x29\x20\x63\x2c\x29\x93\x62\x66\xdd\xa5\x71\x2a\x76\x52\x0a\x91\x7f\x57\x81\xae\xc3\x0c\x45\x6d\x87\x01\x43\xd6\x4d\x0c\x64\x9e\x56\xb8\x77\x4c\x95\x0c\xc6\xdf\xf1\x2c\xe6\x90\x3a\xf2\x49\xcf\xe3\x7a\xfd\x74\x40\xe2\xee\x4e\xe2\x99\x5b\x4e\xc5\x5e\xcb\x6f\xb5\xdb\x7a\x4d\x2e\xca\x52\x37\x1c\x84\x4a\x53\x7c\x53\x1b\xb4\x6e\x3a\xba\xb2\xc9\x72\x9b\xf0\xb2\xc1\x75\x48\xba\x65\xa9\x49\x3e\xe9\xba\x18\x6c\x36\x44\xf1\x9e\x9e\x29\x86\xd2\x47\x58\x62\xf8\x44\xd5\xb2\x58\xd7\x36\x9f\xa5\x19\x20\xa2\x6e\x1e\x58\x45\xcf\x15\x1f\xd3\xeb\xe3\xbf\x51\xbd\x5a\x6c\xcd\x9e\x17\xc4\x46\x16\x45\x7f\x1a\x1d\x78\x07\x37\x91\xec\xf0\x09\x3d\x0f\x57\xfe\x5c\x74\x96\xa3\xdb\x19\x0c\xc1\x03\xfe\x49\x0b\x0d\xf3\x60\x77\x10\x2d\x2f\xdb\x0c\xc5\x4c\x26\xf6\x2a\xae\xe2\xd1\x36\x43\x8e\x28\xb1\x93\x82\x52\x4c\x31\xfa\x55\x0e\x7e\x3f\x9e\xaa\x44\xa6\xc6\x00\x29\xa3\x3c\x47\x93\xb4\x36\x91\xac\xf1\xcb\x10\x56\xde\x6f\x29\xc9\x2f\x74\x6d\x12\xa6\x65\x66\x86\xd2\xef\x81\x30\x06\x46\xd2\x12\x4b\xd1\x20\x11\xb1\x81\x5a\x27\xe0\xeb\xeb\x5f\xc8\x58\xf4\x6c\xcc\xe5\x32\x8e\x1f\xc3\x23\xc3\xcd\xbc\x8b\xbd\x0e\xe0\xc2\xbf\x57\x09\x3d\x4b\xc5\xb1\xa6\x2c\x1a\xd5\x58\x45\x34\x50\xad\x60\x7f\x33\xf5\x7e\x37\x1f\x28\xfb\x3f\x6e\xda\x01\xae\x77\x37\xf0\x66\x09\xfc\x5e\x85\xfa\x50\xad\x5c\x7c\x25\x41\xdd\xc0\x54\xc5\x03\x2d\x76\x5a\x07\xbb\x5f\xfd\xd6\x3f\x5d\xfa\xd6\x37\x16\x77\xd2\xf5\xb3\xf5\x03\x98\xdc\x32\xa1\xfc\x22\xc2\x16\x77\xca\xda\x54\xb4\x27\xde\x52\x63\x15\xf4\x02\x44\x81\x3b\x36\x9a\x2d\xf0\xfd\x32\x86\xcb\xa8\x00\x2b\x4a\x2a\xf1\xbd\x46\x66\xb8\xf4\xe2\x41\x6a\x5f\x43\x07\x23\x7d\x0e\x75\x23\x74\x40\xf1\xb1\xca\x2f\xcc\x9a\x68\xc0\xb1\xb5\x40\xe0\x13\x94\xa3\x2d\xe6\x71\x4b\xdd\xe5\xd8\x0c\x99\xb0\x29\x98\x89\x4a\xaa\xee\xd7\x72\xfa\x86\x56\xea\x7c\x37\x33\x99\xd5\xae\x52\x68\x2f\x93\xb2\x9b\x9e\xef\x05\xd7\x67\x95\x97\x57\xe0\xd9\x26\xe7\x75\x84\x13\x65\x61\x29\x9e\x58\x78\xc9\xbc\x6a\xf3\x49\xe3\x42\x9e\x5f\xec\xf6\x53\x66\xaf\xa0\x86\xca\xb0\x0c\x9f\x04\x9e\xd4\x9f\xaf\x99\x09\xda\x15\xb1\x80\x1f\x23\x0c\x84\x8f\xd5\x52\x9c\x97\x13\x9b\xad\x46\x39\x13\x00\x30\x3a\x6b\xd2\x13\xe7\x6b\x4a\x18\x2b\x2b\xe8\xd3\x10\x0d\xc2\xea\x52\x90\x1b\x7f\xac\x75\x96\x3e\x6a\x84\xb9\xaf\xbc\x22\x0e\x7e\xf4\x18\xf1\xac\xdf\x56\x8b\xf7\x45\xdd\xf9\x70\xb5\xcd\x7b\x37\x1d\x47\x49\x5a\x72\xba\x83\x6d\x0e\x28\x00\x1f\x37\x02\x9b\x43\x2f\x76\x97\x6d\x46\xfa\x63\x08\x39\xb1\x10\x21\xe4\xe4\x63\x4d\x64\xb7\xe3\x34\xcc\x4c\x11\x85\x33\x1e\xed\x03\x63\x13\x6f\xe4\x47\x5a\x47\xf3\x7c\x23\x67\x92\xec\xd9\x44\xe1\x28\xc2\x6b\x65\xb3\x10\xbd\x40\xfc\xa4\x8d\xbf\xb0\x6a\xb2\xc8\xf2\x45\x4a\x33\x8e\x2a\xa2\x6d\xba\x7d\x7a\x62\x4d\x38\x92\xcd\xc7\x95\x28\x9d\x85\xaf\x17\x4f\xed\xa7\x49\x4a\xee\x15\xd8\x16\x2e\x28\x39\x5c\x46\x3e\xf0\xa6\xe0\xb8\x84\xb8\xf5\x71\xcc\x7d\x69\x1e\x6f\x33\x1f\x20\xc1\x4e\xe5\x37\x0e\xfc\x87\x8f\x5b\x66\xde\xc1\x6e\xbf\x8c\xe2\x02\x0e\x01\x8e\xed\x53\x8d\x00\x6c\x96\xb7\x08\xd2\x67\x41\xb1\xc6\x9e\x74\x78\xbe\x3b\x89\xad\x47\xd2\x00\x2d\x5d\x55\x92\xae\x57\x5b\xa8\x26\x5d\x6b\xb2\x84\x87\x89\xf4\xb4\xd5\x58\x70\xf2\x8c\xb2\x28\x4c\xd9\xb6\x45\x14\x00\x3b\xce\x36\xe6\xb2\x72\x51\xbc\x35\xf5\xfd\x87\x67\x74\x75\xe2\x89\x9e\xbc\x98\xe1\x28\xcd\x8b\x78\x7d\x46\xab\xb7\x4d\x7d\x4a\x70\x57\x75\xb8\x9d\x99\x7a\x49\x5d\x27\x33\x11\xa5\xa4\xcd\x24\xe4\x88\xfb\xb4\x0f\x60\xbe\x32\x8d\xdb\x29\xb8\xbb\x10\x65\x53\x05\xd9\x27\x6a\xd3\xb4\xb0\xac\x43\xef\x64\xdf\xaa\xe7\xff\x1f\x60\x0f\x4d\xd2\x2c\x1c\x61\x43\x96\x7a\xa6\xff\x1d\xa6\x0e\x71\xa0\xdd\xa6\xb1\xb9\x96\x56\xf1\x13\xad\x0c\x92\x42\xd1\x20\x01\x98\xf5\xbf\x21\xcc\xc7\x53\x39\xdb\x18\x57\x87\x5e\xec\xf6\x33\x71\x48\xc2\x2f\xf2\xc6\xc3\x27\x8d\x14\x8c\xc2\xba\x91\x49\x86\xc2\x8c\x77\x12\x99\xd5\x83\xe2\x93\xc6\x3c\x3b\x30\xdf\xcd\x0b\x2b\x92\x42\x4e\x35\x0c\x57\x2a\x12\x62\x7b\x55\xb1\x33\xee\xd4\x3a\xc8\xe9\x21\xf0\x49\xf0\xb4\x12\x74\x0c\x47\x49\x1a\xa7\xc3\xf5\xc7\xe9\x5a\x18\x75\x83\x9c\x3f\xe0\xc1\x8b\xf8\x0d\x17\x07\xb8\x36\xda\x37\xa6\x5a\x20\x4c\x49\xa6\xb2\xbf\xb4\xa8\x4c\x57\xc3\xaf\xb6\x6f\x89\xa3\xa5\x97\x83\xff\xaf\x4f\xd2\x90\x01\xcc\x7b\x44\x65\xa3\x9b\xba\xa9\xfe\xb7\x11\x6c\x88\x33\x52\xb5\x41\xf0\x95\x28\x3e\x7c\x91\x95\xe1\x0a\x22\x6e\xed\x04\xc9\x54\x1d\x1d\x40\x7f\xdc\x50\xab\xfc\x47\xdd\xb0\x94\xc2\xad\xc8\x30\xd0\x63\xe1\x13\x45\xc2\xce\x27\x58\xf0\xb0\x10\xfd\x01\x05\x38\x7c\xdc\x08\xfa\xf6\xed\xab\x52\xfb\x65\x0b\xfa\x56\x8c\x25\x88\x69\xd0\x34\x0b\x84\x12\xfd\x98\x62\xd1\xa5\xb9\x7d\x84\x6e\x17\x89\xcb\x87\xf4\xe0\x1d\x85\xdc\x59\x58\x7c\x27\x50\xc3\x86\xc8\x6f\xcf\x6d\xdd\x9b\x7a\x22\x0c\x93\x93\x58\xba\x60\x5a\xe7\x85\xcf\x4b\x7b\xf1\xd4\x37\xa3\xdd\x6b\x98\xae\x56\x11\xce\xb2\x1d\x58\x54\x05\x34\x52\x40\x0f\x53\x20\x84\x36\xbf\xff\x34\x2d\x46\x42\x1a\xd9\xc2\xbd\xe2\x55\xde\x53\x9c\xd2\xf3\xaa\xd7\x71\x6d\x3d\x49\x10\xe9\x80\x23\x71\x4e\x2d\x64\x77\x54\x45\xef\xb4\x16\x25\x1d\x99\x22\x1c\x59\x52\xc8\x90\xc7\x72\x0e\x8a\x62\x22\x08\xd1\x71\x92\x55\x17\x58\x5d\xcc\xc9\x46\x1c\x9e\x77\x35\x5d\xdf\x8e\x78\x56\xa1\x77\x17\x90\xf4\xf3\x3f\xd4\xd4\xa5\x56\x0d\x78\xb2\x0e\xe9\xf4\x02\xdb\x9b\xea\x06\x8f\xd7\xdb\x2f\x15\x7f\x27\x36\xeb\x05\x43\x94\xb8\xc7\x93\x3a\x19\x3f\xd9\xca\xc4\x88\xb2\x34\x1f\x45\x63\x70\x24\xa4\xa4\xaa\x04\xce\x9a\x9d\x8a\x4b\x07\x96\xba\x66\x30\x00\xf9\xc8\x7b\xfb\xc8\xea\x3f\x2e\xf3\xc2\x70\x73\xa2\x34\x3b\x7a\x3a\x7f\xb3\x07\x68\xff\xfe\x6e\x3f\x4b\xcd\xa0\x4a\xb6\xaa\xc9\x29\xae\xee\x1e\x7c\x68\x2a\x55\xee\xdf\xdf\x5d\x2e\x93\x84\xc9\xd6\x7a\x8b\x91\x86\x66\xe5\x16\x5c\xe6\x23\x76\x80\xc5\xd7\xfd\x44\x83\x28\xcd\x10\xa4\xda\x03\xbb\x26\x8e\x56\xd8\x59\x08\xc9\xc8\xbb\xf4\x3a\x01\xcd\xc1\x7b\x5c\xaa\x99\x2d\xa4\xb7\x49\x99\xa0\xe8\x04\xd2\xe2\x19\xba\x7f\x3e\x56\x20\xc1\x8a\x49\x72\x93\xe3\x57\xf0\xaf\x50\x84\x44\x1b\x33\x04\xa4\xb0\x05\xfe\x58\x31\xd4\xfb\xd1\x8a\x05\xbd\x59\xdc\x44\x3b\xde\x75\xa2\xf6\xd4\x94\x27\xce\xef\x2b\x26\x51\xb5\xcf\xc6\x26\x4a\xec\x60\xb6\x5a\x97\xb7\x3e\xa0\x5b\xc3\x0f\x5d\x9e\x7a\x09\x36\x82\xa7\x0e\x6e\x7d\xd0\xb6\x79\x14\x59\x99\x17\x16\x38\x3f\xf2\xbb\xd3\x8a\x87\x73\xda\x77\xaa\xa6\x24\x60\xc0\xd0\x25\xbb\x05\xe3\xf9\x8b\x75\x70\x13\x6e\x5f\xea\x8e\x6d\x52\x18\x17\xaa\x3a\xc3\x91\xea\x7e\xc4\x70\xc4\xb7\x03\x57\xe9\x52\x98\x45\x7d\x9b\x01\x70\xc1\x10\xb8\xa5\xfa\xdb\x6f\x35\x6e\xe1\x25\xd2\x57\x4b\xc7\x42\x57\x76\x1b\x4a\x35\xb3\xa4\x7a\xdc\xd2\x86\x3a\xc9\xa2\x22\x5a\x81\x55\xee\x92\xd3\x78\xc0\xdd\x89\xca\xc3\x17\x3e\x2e\x8e\xf7\x91\x2a\x22\x72\xe3\xae\x18\xdd\x65\xbc\xa5\x4c\x1c\xfb\x51\x32\x60\x96\x9b\x16\x30\x17\xf8\x46\xb7\x91\x8c\xec\x18\x31\x8b\x5a\xbb\xa5\x59\x0a\x0d\x43\xa2\x45\xe6\x25\xa0\xec\xab\x25\xb1\x08\x49\x5c\x98\x61\x38\xbc\x1c\x20\xe2\x97\x68\xb3\x65\x73\x9f\xc0\xf7\x55\xfd\x2b\x2d\x5f\xf2\x47\x8a\x20\x1a\x47\x45\x11\xdb\xc7\x15\x38\x80\x65\x10\xcb\x23\x50\x4d\x6c\x9d\x77\x69\xd3\x91\xf2\x4b\x4d\x6a\x4a\x41\xa7\xe7\x54\xb7\xd6\x15\x84\x01\xd8\x56\xfe\x7b\x4d\x93\xdf\xa4\x7d\x08\x1b\xdb\x7d\x6c\xea\xae\x37\x74\xdf\x82\x67\x76\xec\xdf\xcf\xc9\xcb\x15\x84\x01\xa8\x33\x5f\xa2\x46\x36\x36\xc1\x57\xf9\xeb\x24\x9a\xd8\x38\x4a\x74\xbd\xfb\x9a\xca\x8d\xaf\xb9\x3a\xf0\x38\x4d\x0a\x0b\xf3\x94\x9a\x77\x32\x00\x85\x6b\x81\xa6\xae\xbc\xdd\x06\xa1\x8f\x4d\x62\xcb\x55\x46\x51\x59\x5e\x21\x50\xba\x69\xe7\x5a\x01\xaa\xb4\x2c\x06\xd1\x60\x46\x09\x3d\x5e\x01\xb7\x95\x55\x3e\xa7\x8a\xb9\x7e\x55\xa7\xc3\x61\x3a\xb1\xb4\xcf\xe0\x53\xb7\x50\x51\xc3\x73\x7d\x8d\xee\x90\x8f\xb5\x6e\xe4\xad\x96\x12\xc3\x41\xc8\x15\x3c\xa4\xfa\x71\x8b\x06\x9b\xd0\x44\xbf\xc8\x0b\x75\x6c\x5e\x8b\x42\x93\x59\x05\xb2\x33\xbd\x99\x4f\xda\x78\x15\x93\xd8\xa0\x9a\xcb\x9a\x26\x53\x0f\x4a\xc3\x72\x9e\x03\x93\x1b\x6a\xb5\xcb\xcb\x7c\x02\x3c\x7f\xc6\x67\x94\xe7\x94\xf4\xda\x29\xa5\xda\x79\xbb\x96\x39\xe4\xc5\xfa\xac\x72\xe6\xb8\x89\x31\x87\xe8\xea\x8e\x82\xae\xd1\x0f\x88\x55\xfb\xbe\x9a\x0d\xe3\xb4\x1f\xc5\x8c\x95\x08\x80\xa0\xd1\x04\x55\x98\xca\xa9\x6f\x0b\x23\x05\xcb\xc0\x3d\x6d\x64\x72\xcf\xe5\x69\x51\x12\x8e\xe6\xfc\x28\xbc\x57\x4f\x8d\x55\x8b\x07\xb6\x43\x94\xb9\x4e\xd3\xed\x8a\x06\xf4\x13\xee\x57\x43\x13\xc7\xee\xed\x49\xaf\x97\x4f\x28\xbf\xeb\xc5\x1f\xcb\x6c\x92\x45\xb9\xac\x60\x78\xfc\x70\xb4\x63\x32\x5c\x4f\x39\x39\xfd\x8d\x62\xa2\xc6\x69\x1e\x25\xc3\xd9\x6a\xe2\x8b\x15\x32\x7d\x85\x08\x3c\xf9\x45\x90\x41\x0f\xfe\x07\xe4\xb2\x98\x88\xa3\x28\x36\x49\x31\xca\xd2\x49\x94\x17\x9d\xea\xab\x04\x25\xa6\xb9\x2e\xf0\xb1\xa6\xe2\xc7\xd1\xaa\xcd\x22\x6e\x2b\x13\x3d\x43\x8d\x06\x3f\x23\x1b\x94\x4d\x4a\x8c\xe2\xd7\x25\xb3\x46\xda\x70\x5c\x31\x45\x9a\xe5\x4d\x32\xcd\x49\xcb\x9c\x1a\xa8\xf6\x2d\xb8\x2a\xb3\x5f\xae\xce\x37\xa0\xbd\x2a\xd0\x29\xf3\x28\xb1\x79\x3e\xb6\x6c\x6a\x8e\x45\x4b\xdb\x16\x36\x49\xc2\xd5\xb6\x33\x8a\x62\x1e\x1d\xce\x58\xbf\x1a\x1d\x7c\xa2\xa2\x1d\x2a\x83\x77\xfc\xeb\x86\x2e\x32\x1f\x2b\xc4\xcd\x8e\x27\x71\xba\x4e\x36\x43\x42\x68\x3c\xa5\x4b\x45\x28\xa6\x38\x9b\x14\xa7\x80\xf7\x7d\xca\x93\xa4\xdf\xcf\xc7\x75\x30\x2f\xc6\xe6\xfc\x91\xa3\xe4\x55\xa1\x46\x9a\x73\x98\x2f\x68\x31\xfd\x0a\x9f\xd4\xe6\x9b\xc9\x26\xd4\x08\x89\xd8\xf8\xa8\xd6\xd7\xbb\x35\x55\x3a\x5e\xf7\x14\x54\x36\xd7\x6b\x53\xf2\x99\x8c\xd2\x22\xe5\xcc\x4b\x7c\x9a\x7c\x89\xff\xe2\x74\x8f\xea\x7f\xdf\xe5\x37\xcd\x13\xca\x3c\xe5\x7d\x5c\x27\xff\x03\xf1\xea\xb4\x35\x16\x1f\x53\x90\x81\x80\xff\xaf\xa7\x5e\x3f\xfb\xaf\x31\x79\xf9\x9b\x54\x2b\x7f\x3f\x23\x0b\xf1\xc3\xf3\xbe\x85\x56\x51\xc7\x1b\xa1\xf6\xa1\x17\x59\x01\xaa\xa3\x85\x9e\x94\x1a\xd4\x05\x1f\x76\x1b\xea\xcb\x53\x88\xf1\x03\x85\x18\x3f\xa8\x1b\x83\x85\xa8\x36\xc9\x3a\xd4\x59\xf4\x0b\x94\x62\xa7\xd9\x30\xb3\x85\xc9\xd6\xf7\x62\xe4\x21\x6e\x39\x36\x55\x7c\xc3\xcf\x88\x9a\x83\x4c\x04\x42\xcd\xd8\xb7\xef\x4f\x7d\x2f\xe2\x9b\x81\x12\x34\xf9\x0c\xcd\xdd\x4c\x41\x02\x14\x20\x2e\x51\x7e\x29\xd8\x4e\x42\xc0\xcc\xf9\x0a\x14\xe0\xf2\x3f\x4d\xfd\x04\x7b\xb3\x45\x75\xa8\x9b\x86\xe4\x27\xc8\x33\x19\x60\x3d\xc2\x6f\x3e\x76\x0b\xe9\xb2\x89\xe3\xdd\xaa\x0b\x6e\x8e\x0a\x26\x52\x40\xa5\xdf\x14\x83\x4b\xdc\x3e\xf6\x41\x0e\x4f\x9c\x93\xbe\x77\x8b\x85\x85\x19\x96\x2f\x30\x83\xf0\x48\x9f\xf6\x0e\xd7\xff\xf8\x89\x9e\x0f\xbe\xfa\x65\x06\xe7\xde\xea\x5e\xd9\x39\x09\x0b\x9a\xd8\x28\x29\x09\xc1\xf5\x71\x3f\x8d\x73\xe5\x42\x7a\x5c\xb9\x90\x1e\x57\x19\x6f\xb5\xf0\xd1\x46\x27\xa0\x30\x5d\x2e\x06\xcb\x09\x95\x21\x5d\x0a\x7c\x79\xa7\x5a\xc5\x68\xe2\x69\x53\x20\x4c\x6b\x2a\xa4\x3f\xc7\x70\x2d\xb3\x25\x04\x47\xd4\x68\xf1\x24\xcd\xa3\x22\x15\x3c\x54\x99\x4d\x2f\xc8\x89\x8a\x6a\x13\x6b\xb2\x78\xfd\xf1\xea\x71\xb9\x04\xf1\x80\x98\x00\x7c\xae\xac\x0b\x4f\xe2\x07\x6b\x7a\x73\x6c\x19\x35\x55\x28\x9e\x78\xca\xa3\x34\x77\x2d\x50\x02\xe3\x6f\x4c\x95\x75\xe2\xef\x4e\x15\x39\x9c\x4b\x4d\x8e\xb1\xf0\xbc\x34\x5a\x32\xd3\xd6\xb5\xce\xed\xdf\xcf\x03\xfc\x3e\xc0\x1b\x04\x03\x57\x6b\x65\xb4\x74\x85\xfd\x3a\x59\x6d\x23\x50\x5e\x72\x53\x45\xa7\x3f\x4a\xbf\xc3\xac\xed\x40\x99\x19\x7e\xa4\x94\xbe\x8e\x4f\x95\x31\xc5\xa7\x41\xe7\x85\x05\xaf\x56\xe3\x40\x08\xbc\x7f\xd1\x82\x50\x22\x09\x47\xa7\x5e\x76\x2a\x9d\x0c\xcd\x84\xb6\x40\x76\xfb\xa1\xbb\x11\xe7\x1f\x3f\xbc\x42\x1b\x86\x69\x12\x75\x6a\x66\x1c\xb5\xc6\x47\xa1\xdd\x2c\x23\xcd\xa2\x0b\xe4\x1f\xaf\x5d\x88\x6a\x06\x35\x49\x68\xb3\x9d\xca\xb5\xfa\x98\x5a\x5d\x67\x40\xa1\x66\xdf\x96\x9a\xfa\x0f\x16\x05\x0c\x32\x3c\x7e\x60\x85\x2c\x0e\x28\x4a\x5e\xcd\xf2\xf6\xc1\x6e\x3f\x02\x81\x54\x2c\xd7\x3c\x86\xc8\x15\x19\xac\x3b\x77\x75\x08\x72\x13\x83\x42\x5c\xb6\x7d\x2b\x2c\xd5\x0f\xf8\xfd\x7e\x23\x9e\xf1\xd8\xfe\xa6\x62\x4e\xfe\x8d\xa6\xf6\x5e\x0d\xf6\x3a\x62\x44\x28\x5c\x34\xb1\x80\xd2\x7e\x50\xaa\x2a\x1e\x9a\xf1\xa4\xcc\x6d\x4d\x4e\x73\xaa\xe4\x34\x55\x73\xc7\x30\xb3\xb6\x10\xc5\x49\xdc\xc9\xc7\x4a\xbf\xe8\xe3\x60\xaf\xfb\xd6\x38\x2d\x88\x27\x0c\x3c\xee\x5d\xb5\x56\x9c\xd7\x28\xeb\x1c\xac\xb6\x10\xed\xdd\x0d\x6a\x7e\xbb\xf4\x88\x9c\xda\xd1\xf3\xb5\x6d\x51\x3a\x1d\xee\x04\x5a\x34\xb4\x55\x05\xce\x84\x61\x9a\x0d\xb8\x43\x4a\x5a\xf0\x30\x5d\xb1\x10\x5d\xd3\xa6\xa2\x67\x15\x75\x37\x8f\x92\xd0\x3e\xa2\x88\x10\x77\xb0\x96\x29\xda\xbb\xf8\x70\xb0\x6c\x0b\xee\xf0\x16\xe9\x3b\xe2\x1f\x66\xd0\xab\x87\x61\x06\x81\x27\x04\xfd\x3b\x69\x51\x06\x72\xbc\x8b\x56\x7e\x29\x29\xd0\xd5\x08\xa6\xf9\x25\x45\x10\xa6\x68\x1e\x9a\xa2\xd5\x18\xc3\x05\xff\x3b\x5c\x13\x9f\xb4\x21\x25\x6b\x26\x5a\x75\x31\xb6\x43\xa7\x9d\xac\xe0\xc9\xa9\xef\x7a\x19\xdb\x41\x54\xb0\x77\x8a\xcb\x39\x3f\x9a\x2a\x6e\x8d\x1b\x60\xf9\x28\x9d\x90\x0d\xa6\xa4\xea\x70\xa9\x43\xe5\x7b\xbb\xee\x3c\x98\xdb\xf0\xc5\xcc\xe3\x35\x22\xff\x5c\xcf\xe3\xcf\x36\xe1\x0e\x2e\xae\x82\xe3\xa5\x48\x49\xdc\x0f\xac\x30\x59\xeb\x28\x11\x34\xfe\x3b\x21\xd4\xfa\x18\x63\xcd\x46\xc3\x11\x7a\x0e\x45\x15\xba\x1a\x43\xa2\x16\xdd\xe2\xcb\x9f\x95\x03\xa2\xdc\x38\x41\xcc\xa9\x27\x83\x7e\x32\xf5\xfc\x13\x04\x9a\x52\x19\x50\x91\x55\x34\xe1\xc6\x27\x01\x32\x3c\x9f\x46\x37\x19\x13\xd6\x18\x9a\x1c\x44\x0d\xc0\x6e\x57\xa7\x1e\xc7\x62\x11\x04\x84\x4d\x77\x5d\x78\x55\x64\x66\x68\x07\xeb\xdc\x52\x27\xed\xd1\x8a\xe4\xfd\x7f\x4f\x7d\xe6\x7c\x09\xa5\x00\xf9\x60\x92\x1b\xa8\x20\x50\x9f\x3e\x62\xd8\x99\x9e\x1a\x38\xd0\x00\xe6\xfa\xc8\xd4\x07\xd2\x67\xf5\x0e\xca\xe1\xb9\xd0\x90\x9b\x9d\x5c\x61\x9a\x17\xb5\x8a\x30\x0b\x5a\xf1\x49\x8b\xe2\x1c\x89\x76\x4a\xb0\x24\xdd\x1d\x4a\x7c\xe3\x6d\x25\xaa\x6f\xc2\xb0\xcc\x59\x54\xbf\x5a\x5a\x04\x7e\xee\x2c\x7a\x8c\xba\x25\x4b\x32\x45\x61\xc2\x91\xfc\x86\x28\xf5\xa9\x2d\xf1\x23\xbf\x5f\x4d\xd2\x15\x93\xd8\x8e\x02\x83\x96\xd4\xca\xb5\xd4\x26\x54\xba\x16\xe5\x23\x29\x7c\x49\xfc\xa0\x12\xab\xcf\x5b\xc8\xbc\x4b\xdd\x72\xdc\xcf\x6c\x1c\x1b\xd6\x55\x45\xa4\xa0\x55\xda\x36\x95\xe8\xc6\x31\x97\xcc\x88\x8d\x87\x22\x73\x1c\x55\xdd\xcc\x47\x55\x02\x4a\xa5\xcc\x22\x22\x75\xc8\x2a\x18\x91\x5e\x5b\x25\x3b\xa0\x7b\x8f\xd7\xac\x5d\xc9\x77\xf9\x52\xc8\x4f\xd5\x82\xfb\x33\x82\xa7\x5c\xbb\x4d\x75\xc1\xec\x9c\x41\xc5\x06\xe7\xa2\xe1\x84\x46\x80\x99\x21\x58\x67\x4e\x2a\x3b\x78\x6a\x25\x72\xfb\x5a\x14\x9a\x84\x14\x48\x14\x8d\xea\x39\xa7\xf0\x58\x7d\x07\x06\xe4\x15\xc5\xcb\x84\xb6\xa1\x98\x83\xea\xda\x45\xdf\xd2\x84\xda\x7a\x73\xaa\x5c\x60\xcf\x2a\xbc\xec\xe8\x74\xaf\x0a\x98\xa2\x47\x54\x79\x5f\x19\xe2\x5c\x99\xfa\xf4\x7e\x0b\x5b\x0d\x3e\xbe\xa5\xd1\x6c\x28\xff\xb0\xeb\x91\xd2\x85\xe7\xc6\x2c\xa7\xf8\xe0\x8d\x92\x9e\xee\x55\x61\x94\xc0\x35\x3e\xf2\x19\x66\x36\x31\x03\xa3\xbc\x7f\xcf\x2b\xf7\xd2\xf3\x53\x6d\x81\x60\x32\xd3\x8f\xad\xf2\x70\x79\xa0\x10\xfa\xeb\x53\x2f\x71\x7f\x4c\x35\x96\xac\xa6\x51\x68\xf3\x39\x5f\x0d\x3e\x06\x33\x1c\xec\x99\x37\xe8\xe5\x3a\xd3\x3e\x25\x65\x4d\xd7\xce\x27\xad\x2d\x46\x69\x3c\x50\x25\x6a\xac\x8a\x28\x55\x5c\xd6\x0c\xc9\x4d\xa5\x9f\x33\xc9\xd2\xdc\x86\x25\x19\xe2\x2b\x32\x13\x43\xc5\xe2\xaa\xed\x93\xa5\xfb\x5a\x93\xa9\xa9\xc8\x02\x8e\x71\xf4\x3a\x30\x3c\x3c\x92\x33\x34\x72\xf9\xb8\xb1\x46\xfd\xa3\x6e\x6c\xfa\x29\xda\x41\x85\xe3\x45\x3f\x21\xa6\x59\xca\xd0\xe3\xa2\xda\x75\x8a\x04\xf2\xdc\xc2\x6c\xf7\x68\xc9\xe7\xf8\x08\x22\xc4\xcd\x46\x9d\xe8\xa5\x85\x43\x44\xb5\xe9\x28\xba\xd7\x71\xa5\xed\x7e\xbc\x81\xac\x7e\xed\x6b\x22\x72\xde\xf1\x74\x9a\x2b\x81\xcf\xa8\xae\xb4\xb8\x9c\x8c\xd3\x55\xa6\x8b\x02\xd6\xc0\xdb\x40\x44\x71\x73\xaa\xda\x0b\x81\x54\x8b\xa5\x77\x8b\xac\xec\x72\x9a\x0e\xf2\xa2\x5c\x5e\xce\xb5\xfd\x24\x7c\xad\x45\xb2\xb0\xa5\x80\x16\x47\xfd\x4c\xba\x0f\xc5\xb6\xbe\xfa\x08\x1f\x2b\xf4\x37\x4b\x49\x72\xd9\x11\x48\xff\x9c\x9e\x06\x1f\x4f\x1f\xe1\xaf\xee\xee\xdf\xff\xf7\xa9\x8b\x52\xf5\xe9\x8a\xec\xd6\x5b\x28\x60\x82\xe8\xcc\xfd\x07\x5c\x69\x47\xfa\x2a\xa5\xee\xce\x4b\xb2\xd6\xfd\x2a\xcd\x51\x3c\xf2\xed\x1b\x4a\xde\xe0\x03\xba\x31\x5a\x73\xd7\x9e\xe8\xf9\xa1\xf3\x79\xa0\x44\x6f\xff\xbb\x60\xfb\xcf\x79\x3a\xe4\xd2\x81\x25\x4e\x8d\x18\x8f\xc5\xe6\x33\x0b\xed\x4b\x9c\xec\xe8\xd1\x1c\x03\x16\xf3\xcf\x49\xc0\x4e\xf8\xa8\xf4\x96\xa4\xa2\xa1\x64\xde\x77\x6c\x78\xf4\xe2\x2a\xe9\xc5\xb1\x4c\x07\x45\x93\x78\x8e\xa7\x03\x6d\x25\x85\x6c\x0c\x4e\x23\xd7\x89\x39\xe4\xba\x58\xbe\xf1\x2b\x6e\xb0\xd0\xf0\xe6\xc5\x38\xe8\x1c\x7a\xd1\x5b\x65\x1e\x98\xf7\xb5\x78\xd7\x7b\xf7\x1e\x20\x7c\xbc\x8f\x2b\x9c\xd7\x62\x76\x6c\xeb\xd1\x56\x82\x48\x6e\xd7\x46\xe7\x6b\x5f\x13\x31\x9f\xe0\x29\xd7\x45\x92\x45\x79\x61\x93\xdc\x26\x8c\x16\xe2\x52\xdf\xc7\x2c\xe1\x93\xc6\x44\x26\x05\x10\x6a\xa7\xf0\x73\x1f\x02\xf2\xc8\x75\x39\x9e\x14\xce\xbd\x20\x28\xb9\x4d\x06\xd4\x22\xc2\xf9\x59\xa0\x92\x89\x1f\x63\x5e\x4b\xfd\x82\x06\x89\xa0\x02\x9e\x72\xd4\xe7\x51\x8e\x2f\xb8\xac\x34\x25\x2e\xab\xbd\x8a\xcc\x9a\x20\xac\xf5\x1c\x3f\xef\xbf\xa4\xd1\xcd\xc7\x6d\x9d\x37\x93\x34\x8e\x8a\x28\xcc\x15\x3f\x90\x43\x7b\x3e\x69\xd4\xc2\xab\x68\xc8\xc4\xb1\xcd\x86\xd0\x63\x58\x72\x80\x8f\x9f\x54\xda\x01\x73\x12\x9b\xf5\xb4\x9a\xa7\xaa\x65\x07\xa3\x4b\xfa\x77\x5a\xf0\xdf\x49\x66\xb3\x74\xc8\x2d\x52\xee\xa5\xc3\x0f\x47\xaa\x51\x2d\x39\xc4\xb7\x6d\xb2\x12\x09\x8d\x4b\x58\x97\x2a\xc6\xd7\x22\x1e\x63\x93\x2c\x67\x76\xc0\xef\xdf\xb5\xb7\x57\x7f\xcc\x27\x2a\x4e\x89\x92\x41\x99\x17\x59\x64\xf3\x1d\xda\xed\xec\x4a\xa0\xdc\x68\x4e\xab\x4a\x07\xbc\xac\x44\x37\xa9\x9a\xaf\x4c\xa4\xc7\x0f\xe0\x85\xfc\x96\x6a\x53\x63\xd7\x1b\x7a\xcd\x5b\xa4\x5b\xba\x75\xc9\x55\x15\xfa\xa6\x28\xac\x57\x01\xc1\xd4\x47\xb2\x8a\x8c\xe2\x4d\x05\x58\xfd\x41\xad\x6f\xbc\x8c\xd7\x77\x78\xaf\x9a\x4f\x94\x5e\x0d\xa3\x4e\x58\x9e\x1e\x60\x2b\x44\x90\xb4\x93\x40\x39\xdc\xe1\x8d\x29\x2d\x6f\xc2\x14\xf6\x85\xd4\x28\x4b\x93\x28\x9c\xf1\xb7\xf9\xbd\xa9\xaf\x81\xe2\x51\x60\x29\x3a\x8e\x0a\x74\xfd\xfd\x96\x93\x59\xaf\x4b\x70\x59\x37\x30\x07\x0a\xc9\x02\xb6\xce\xac\xa1\x96\x08\xf5\x60\x37\x1a\x26\x69\x66\xc4\x21\xc0\x35\xd1\x7f\xf3\x25\x57\xdc\x91\x44\xb0\x9c\xe4\xb6\xa0\xfe\x18\x5c\xe2\x96\x6a\x65\x9e\x7f\x9a\x32\x5b\x2c\xce\x3f\x9a\xd6\xa4\x26\x3b\x87\xe7\x1f\x6c\x54\xd7\x07\x34\xe8\x8c\x82\xd4\xff\x4a\x99\x04\x99\x81\x7d\xb5\x24\xfd\x23\x77\x5b\x67\x68\xe9\xe2\xe3\x86\x6f\x4b\xb5\x40\x2a\xf6\x68\xc7\x17\xa1\x8e\x20\xfa\xe5\x13\x25\x9c\x64\x0a\x74\x3e\x5a\x80\x90\xa2\x69\xa0\xa8\x55\x97\x03\xc5\x20\x25\x4d\xb1\xad\x4b\xea\x22\xc7\xe6\xdb\x69\x16\xa1\x58\x27\xc8\xc8\x4d\x1a\xa9\xb8\xdb\xbf\xa6\xd7\x86\xd0\x91\x29\x5b\xe0\x72\xbd\xdb\x96\x88\x16\x64\xc8\x5f\x3d\x44\x84\x56\x1f\xd3\xfd\xf2\xb1\x76\x54\x8f\xa3\x09\x1b\x70\xbb\xce\xa7\x4d\x6d\x3f\xed\x99\xaa\xfd\x2c\x2d\x46\x36\xdb\x41\x1b\xa7\x18\x17\x6b\xaf\x90\x6a\xef\x71\x86\xc6\x0f\x9b\x2e\x60\xdd\x7c\xaa\x57\x6d\x4a\xd2\x7d\xd9\x84\x5a\x16\xa8\x71\x29\x2c\x6a\xde\xc2\x2c\x76\xcd\x27\x0a\x82\x5d\x36\x51\x56\x4d\x21\xa7\x72\xf7\x86\xde\x71\x3b\x3d\xba\x52\x3e\xd9\x50\x0c\x89\x37\x54\x3b\x2a\xe3\x94\x7c\xe2\x5c\xde\xfb\x66\x4c\x01\x1e\x20\xa2\xef\xe3\x79\xbb\x16\xad\x5f\xfe\x16\xbf\xe0\x4b\xce\x26\x6a\x32\x5a\xcf\x23\x22\x0d\x76\xbc\x31\x39\x1b\xc3\xf2\x89\xba\xf2\xb4\x2c\x0c\xdb\xee\xa0\xa4\x80\xbe\x31\x3e\x9e\x3e\xfd\x70\x6b\xd6\xc1\xee\x2f\xec\xf6\x08\x28\x77\x0f\x61\xa1\xfa\x90\xf6\x76\x84\xfa\xa7\x81\x7e\xb5\xc9\xea\x78\x6e\xfd\x6f\x68\x21\xdf\x6d\x78\x2e\x48\xe7\x6f\x68\xab\xb1\x5a\x62\xb4\xf2\x7a\x4a\x2b\x95\x43\x4b\x9f\x77\x68\xa9\x96\x9f\xfd\x61\xa0\xf4\x5d\x7e\xa8\x9d\x96\x2e\x68\x2b\xfe\x0b\x9e\x75\x60\x72\xa6\x7a\x49\x37\xbf\xaa\x59\x7c\x4f\x3d\xb0\x9c\x7c\x45\x3b\x0a\xd7\xc2\x72\xc9\xc7\x6d\x2d\x02\x07\xbb\x85\x59\x41\x99\x4a\x12\x39\xba\x57\x3e\x51\xc8\x71\x66\x8b\x32\x4b\x72\x32\x45\xc4\x40\xf8\x91\xf2\x30\xba\x8a\x64\x50\xe8\xc9\x34\xa8\x34\x6f\xd9\x39\xe5\x3d\x2f\xe8\xcb\x8f\xb0\xf3\x20\x7a\x3a\xef\xe0\xae\xbe\x2d\xf2\xf5\x8e\x8a\xf0\x4e\xd1\x67\x44\xc9\xad\x25\xa0\x19\x9a\x6c\x20\x45\x56\x40\xa9\x00\x79\xf8\xb8\x91\x52\xed\xdf\xdf\xcd\x4b\xc0\x74\x8b\x4e\xb9\xa8\xe3\xda\x0e\x35\xd7\xa6\x5f\xc6\x71\x95\xed\x3a\xb2\xc6\x4d\x3c\x7a\xc8\xa9\x40\x4f\x1d\x93\x79\x5b\x43\x4e\xe5\xc0\x7c\x37\x8f\xc4\xa8\x4f\x88\xab\x1d\x67\xdc\x78\xb2\xc1\xb2\xa0\xa6\xdd\xc2\x44\xbe\x4e\xef\xba\x6f\x7d\x27\xae\x62\x7a\x2e\x1b\x4a\x37\x1d\x90\x7b\x0d\x69\xbd\x6b\xc7\x77\xc2\x89\xc7\x94\x6c\xdf\x5f\x4e\x7d\x83\xfb\x35\x85\x95\x4d\xb2\x74\x9c\x16\x04\xf8\x57\xaf\xdf\x49\xbe\x29\x29\x18\x6f\x3e\x97\x17\x99\x2d\x40\xc8\xaf\xe2\x54\x8d\xa4\x88\xa4\xb9\x14\xdd\x43\x9b\x14\x36\x5b\x8e\x6c\x3c\xb0\x19\x4b\x14\xd4\xb4\x65\x9c\x4a\x55\x35\x7c\xa4\x69\xae\xe3\xba\x1d\x67\x7b\xb2\x76\x2c\x67\x55\xfc\x62\x0a\x96\xf6\x10\xe1\xf3\x5a\xf3\xbb\xea\x11\xbd\xd4\xaa\xb8\x9f\x99\x28\x71\x8a\xfb\xa8\x48\x7d\xaa\xfb\xae\x3e\x55\x9a\x0a\x93\x32\x9b\xf3\x7c\xbb\xe3\xfa\xcf\xa0\x8f\x86\x24\x09\xe1\x33\x56\xba\x7b\x53\xa5\xbb\xad\x3b\xbf\x96\x4d\x3f\x43\xb0\xf9\x9c\x5b\xcb\x94\xd9\xff\xd9\x76\x0f\xf5\x22\x15\xc0\x4b\x58\xb8\xaa\xfb\xae\xe9\x1e\xeb\x3a\x31\xc6\xda\x97\x88\x33\x02\x3e\x51\x11\x21\x39\xca\x98\xe5\xa2\x5a\x31\xaa\xe9\x2a\x65\x30\xe5\x00\x7c\xb1\xb1\xe9\x1f\x9e\x7f\xb9\x5b\x26\x51\x31\x4a\xab\x17\x9a\x2b\xbe\x1a\xeb\x59\xf0\x49\x5b\xc6\x3b\x2e\xe3\x22\x8a\xcd\x3a\xd3\xdc\xb0\x24\x5c\x57\xe6\x99\xd7\x1b\x3f\xb7\x70\xa8\x3b\x31\xb1\xcd\x8b\x28\xa1\x36\x55\xbc\x38\x2e\x0c\xea\x50\xe1\xac\x02\xf0\xfb\x99\x35\x2b\xc5\x28\x4b\xcb\xe1\x08\x8f\x1c\xfb\xea\x39\xb5\xc7\x9e\x0b\xfc\xdf\x9b\x70\x25\x49\xd7\x62\x3b\x18\x32\xac\x0c\xde\x0f\xd0\x03\x3e\x6e\x7b\x41\x93\xd8\x26\xc5\xfa\xac\xcf\x0a\xfe\x78\x5a\xa3\xe8\x54\x13\x1f\x19\xf2\x5c\xcf\x53\x33\xb4\x08\x69\x38\xb2\x96\x73\x79\xe0\xcc\x1a\xf2\xde\xb6\xe1\x99\xa0\xd5\x22\xbd\x83\x46\x82\x68\x2b\xaa\xdd\xfe\x91\x9e\x0e\xc9\x19\xf8\x97\x05\x9c\x66\x28\xfa\xda\x48\xb7\xbb\x8a\xca\x55\x0d\xb9\x18\x3c\xbb\x9b\xc6\x2c\xf7\x31\x22\x7f\x43\x16\xcb\xe4\x36\xe4\x06\x77\xa6\xbe\x92\xb1\x45\x4b\xb2\x63\x5b\x1c\x98\x77\x6c\x0b\x0f\x9e\x9c\xd7\xf9\xf0\x66\xe0\x05\x04\xee\xd5\x88\x20\x36\x2b\xf6\xd4\x3a\x4b\x70\xf5\x58\xee\x1f\x4c\xd5\x84\xf9\x1e\x5d\x00\x63\x11\x35\xcf\x9e\xea\x62\x5c\xe7\xa5\x67\xe0\xdf\xa6\xab\x61\x6b\x70\x8a\xa8\x51\x23\xfb\x0b\x24\xde\xa8\xdf\x9e\xc5\xce\x8c\x19\x7b\x53\x31\xac\xd7\xac\x59\xb1\xdc\x18\xcd\xfc\x46\x2d\x80\x7d\x6e\x2a\x41\x50\x1a\xa2\x21\x5e\xa0\xeb\x1a\xa6\xad\x7b\xe4\x4c\x9e\x97\x19\xb6\xda\x36\x9a\x52\x5b\xdf\xd1\xd8\x0c\x2c\x8d\x2f\xc5\xfa\x12\x0a\xc9\xdd\xa9\x6a\x29\x63\x52\x16\x22\x94\x8f\xaa\x17\xec\x0d\xe6\x59\x04\x5d\x34\x49\xe8\x2b\x44\x94\xe4\xe1\xc4\x75\xdf\x3e\xb1\xcd\xf7\xbb\x10\x92\x2d\x30\x80\xf8\x38\xd8\xab\x55\xb4\xe9\xf6\xa5\x0f\x56\xf5\xc4\xea\xb6\xd2\x28\x46\x81\x6f\xeb\x92\xd2\x58\x86\x85\x25\x10\x90\x77\xb4\xfc\x25\x1b\x3f\xb3\xa8\x02\x8d\x36\x21\x83\x76\x0e\x57\x19\xc1\x8c\x37\xc7\xe6\xaa\x2e\x72\xea\x8b\x5e\x07\xed\xef\xdf\x75\x90\xee\xc4\x64\x66\x6c\x8b\x8c\x93\x14\x41\x7c\xe9\x4d\x09\x14\xec\x41\x88\x81\x0d\x63\xa2\x2b\x3a\xd3\x83\x37\x95\x3a\xd7\x9b\x0d\x4c\xe5\xf0\x7c\x77\x2d\x0a\x57\xa4\xf0\x81\xed\x67\x8b\x6e\x93\x8f\x1b\x08\xc4\xd2\x8b\x07\xbb\x99\x8d\x86\x89\xc8\x4d\x61\x43\x3e\x8a\xf1\xce\x27\xf5\x79\x62\x57\x9e\xac\x2e\x48\x3c\xb0\x30\x4d\x10\x61\x5d\x50\x44\xad\xeb\x4a\x9f\xfb\x0d\x0d\x52\x30\x19\x0f\x8b\xc4\x19\x8c\x7a\x24\xc8\xf7\x54\xb4\xd4\xc1\x38\xc2\xf0\x3d\x0d\xce\x8b\x2c\xb0\xd5\x93\x05\x64\x73\x1f\x2e\xa2\xd8\x82\x4f\xe0\x5d\x31\x9a\xa7\xb1\xfb\xbb\x7a\x36\x82\x77\x21\x94\x6e\xba\x4f\x04\x42\x1f\xb5\x75\x9e\xae\xd9\x38\x26\xee\x23\xa2\x99\x87\xda\xbb\xfd\x1e\xfb\x60\xea\x7a\x84\xfe\xd1\x33\xbd\x2a\xe5\x10\x11\x15\xa5\xcf\x5f\xed\x73\x4f\x28\x53\xf2\x93\x53\xa5\xbb\xcf\x6a\xd1\x88\x94\x6e\x6b\x6b\xbe\x1f\x21\x8a\x75\xc2\xba\xce\x6f\x79\x1b\xe9\xf9\xe1\x02\x8e\x11\xcc\x2b\xfd\xf0\x1d\xa7\x00\x7c\x47\xd9\x39\xde\x24\xc7\x02\x76\xaf\x0f\xd4\x20\x99\xd1\x26\x9e\x37\xc1\x97\x02\xdb\xec\x53\xac\xc3\x18\x9c\xbf\x47\xa5\x03\x40\x3a\x9a\xcc\x13\xa6\xd9\x64\xa7\xa6\x1c\x7f\x9f\x7e\x54\xe1\x21\x8a\xea\xed\xad\xd1\xb0\x92\x4b\xdb\x70\xf5\x56\x9c\x2c\x43\x75\xf3\x18\x53\x4f\x36\x44\x96\x16\x17\xbb\x79\xba\xe6\x56\x05\xe9\xf1\xd0\xbd\x1f\xcd\xa6\xc4\xa5\x6e\x9e\x96\xec\x68\x81\xe0\x0e\xcc\x24\x66\xd6\x04\xbe\x13\xe5\xf3\x2f\xb4\x05\xb7\x42\x57\x91\x82\xb5\x87\xb1\xcf\xeb\xbd\x34\xca\xc2\xd8\xce\xd5\xf0\xc7\xea\xdd\x88\xcb\xae\x97\x9b\xd3\x6e\x73\xdf\xa7\x6f\x13\xc2\x63\x0b\x1f\x93\x14\x11\xe9\xfa\x25\xb4\xa5\xe7\x2a\x31\xaf\xa7\x17\x0e\xc7\x7b\xe9\x2a\x5d\xe2\x75\x60\x9e\x47\xef\x75\x4d\x8b\x7b\x4f\xb5\x63\x71\xbe\x8d\x9a\x1d\xe7\xd8\x98\x21\x7f\x85\x28\x0c\x64\xae\xb7\x18\x1c\x06\x02\x76\x6d\xea\x73\x95\x9b\x18\xa2\xfc\x67\x53\xd5\x38\xff\xa7\xaa\xdb\xf7\xb2\x0a\x6a\xc7\xe9\xda\x4c\xcd\x29\x97\x2e\x4d\xae\xc0\xb3\x1d\xee\xb4\x75\x10\xf5\x4d\xe6\x51\x3c\xd1\xef\x3f\x35\x55\xd8\x3a\x54\x1e\x20\x7b\xb9\xad\xf7\xa8\x2f\xc5\xa7\xc5\xe8\x31\x27\xe1\xf5\xf3\x47\xb4\xb4\xcb\x0f\x68\x65\x60\xe2\x35\x8d\x08\xac\x58\xbb\x36\x54\x33\xe5\x5d\x04\x7b\xd0\x0c\x79\x83\x2e\x14\x37\x2a\x44\x07\xfc\x26\xc0\x2d\x57\xdf\xfa\xe6\x4b\x0e\x84\x57\x1d\x25\x33\x10\x9a\x63\xf9\x2c\x6a\x1c\x10\x18\xa7\x7a\x69\x58\x7e\x3f\x6b\x6b\x58\x1e\x46\xe3\xb1\xa8\xcc\x39\x74\xdf\x4b\x1c\x3a\x14\x68\x39\x25\x79\x4a\x02\x5d\x90\x19\x5c\xa3\x35\x1a\xd7\xb8\x7d\xc3\x37\x4a\x7c\xb9\xe7\x69\x3d\xcc\x31\xe4\xc0\x84\xee\x44\x74\x8d\x9a\xcc\xd7\xc5\xae\x21\xf9\xef\xb9\xea\xbb\x90\xa2\xfc\x39\xfd\x06\x56\xb2\x3f\x9b\xaa\x7b\xbc\xa0\xca\xae\x90\x4b\x41\x58\xb6\xab\xa1\x1c\xf2\xf5\xee\x30\x5a\x2e\xf2\x5a\x29\x5b\x7b\x65\x5d\xac\x75\x1a\x5a\x93\xed\xd0\x0a\xe1\x44\x9d\x75\xe6\x3b\xce\x56\x1b\x95\x5e\x0c\x52\x68\x84\x89\x2c\x80\xaf\x75\xfd\xb8\x86\xa4\x14\x51\xfc\x04\xbd\x7c\xe7\x4d\x5d\xfd\x8a\x23\x9f\x3a\xdb\xcb\x6d\x3d\x95\x02\x7c\x86\x77\x8c\xf1\xf2\xae\x92\x1b\xb9\x45\xeb\x27\x66\x0f\x8a\x60\x88\x87\xef\x6a\x3f\x43\x10\x51\xb1\x12\x1e\xa5\xf4\x0e\x63\x82\x25\xaf\xb1\x55\xfe\x11\xd6\x68\x71\x65\xac\x76\x41\x31\xd3\x41\x0d\xf6\xfd\xa9\x07\x82\x2f\x4e\xbf\xda\x18\x41\x07\x1d\x0e\x6f\x62\x4f\x43\xc7\x5c\x84\x96\x12\x1f\xb7\xf9\x67\x71\xbb\xfc\x8c\xaf\x9d\xfc\x4d\xe0\x2b\x16\xa7\xb5\x6b\xc4\x91\x46\x94\xb2\x7f\xff\x81\xee\xb7\xd3\x88\x39\x0d\x2c\x3f\x12\xf8\x9d\x7f\xb3\xa5\xeb\xa3\x3b\x8e\x06\x83\xd8\x3a\x0a\x3b\x2b\x80\x29\x65\x87\xe3\x6d\x6a\x9d\xc3\xcc\x0c\x4a\x23\xd0\x07\x84\xb5\x7e\x42\x1f\xe2\xe3\x16\x20\xaa\x9b\xa7\xab\x91\x2d\x94\xf1\xde\x66\x4d\xb5\x53\x07\xd2\x93\x34\x2b\xec\x60\x8f\x57\x36\xff\xdd\x40\x67\x0d\x7f\x32\xf5\xac\x8d\x3f\x9e\x2a\xf2\xe1\xdc\x86\xd2\x65\x99\xeb\xe9\x5c\x7a\xaa\xb6\xbe\xdb\x58\xd0\x44\xd7\xdc\x67\x6e\x3b\x7b\xd5\x82\xa2\xbd\xbc\x85\x6c\xfa\x8c\x6a\x22\x76\x1c\xa0\x19\x4f\x68\x7c\xac\xe7\x99\x93\x75\x1d\x79\x65\x14\x6c\xb3\xf5\x81\x59\xa7\xea\xb7\xd3\xa2\xdc\xbf\x9f\x7f\x1b\x76\x24\x28\xc1\xcc\x6e\xf8\xf0\x7b\x68\xf2\x47\xab\xe8\x02\xb3\x9e\x51\x38\x79\xe4\x34\x85\x78\x3e\x36\x96\x00\x3c\xd9\xbb\x34\x37\x44\x52\x01\x8f\x51\xfa\x5d\xe9\x31\xc8\xf4\xec\x38\x1b\xe1\x4b\x94\x4b\x61\xbd\x3f\x83\x25\x4b\xde\xab\xb2\x68\xbb\xa8\x13\xa1\x99\xde\x1e\x0f\x5b\x3d\x3b\xa3\xda\xb7\xef\x29\x4b\x9f\xd3\x75\x13\x93\xa7\x94\x2f\x57\x3a\x1e\x9b\x82\x7b\x3c\xb0\xa6\x3d\x08\x94\x9b\xd3\x03\xc5\xde\x48\xb3\x41\x94\x50\x1d\xc3\x19\x69\x7c\x1c\x28\x6f\xa5\x8f\x95\x87\xf3\xb0\xfa\xd2\x59\x3f\x4a\x2f\x2a\x61\x72\x48\xe7\xcb\xff\xa7\x05\x48\xfe\xc1\x23\xae\x10\x7f\x9a\xa9\x1e\x88\x23\x5d\x56\x6f\x00\xd9\x2c\xa4\xe1\xa4\xf7\xe8\x8b\x3c\xbd\x19\xa9\xc0\x9e\xea\x74\xae\x9f\x97\x92\xfe\x35\xdc\xa8\xac\x2f\x4f\xd5\x51\xef\x5f\xe8\xee\xdf\xff\x68\xf5\x54\x00\x61\x73\x7a\xe7\xcc\x5b\xab\xab\x76\xc4\x02\x97\x26\x7f\x8a\xf0\x9f\x39\x21\xdc\xd7\x2c\x3d\xef\xaa\x40\xf7\xe3\xc0\x67\x53\x9b\x34\x50\x84\x98\xe0\x03\xdd\xa3\x08\x68\x51\x5e\x3b\x46\x9b\xa9\x43\xf1\x9c\xb0\xc1\xb1\xe0\x51\x65\xed\x14\x3f\xdb\xf1\x0d\xd3\xbf\x8d\x71\xc2\x27\xb5\xf6\x96\x38\x2a\xe6\x94\x94\xd3\x4f\xd5\xaf\x5e\x21\x40\x01\xbb\xe3\x69\xa5\x52\x8c\x1d\x5c\xc8\x2e\x2d\xf5\xd5\x01\x44\x31\x67\xb4\xcb\x8a\xe2\xbf\x5e\xd7\xfe\x0d\xef\xbb\xc9\xb9\x6a\x92\xa8\x88\x9c\xcf\x0c\xd6\x89\xeb\x5a\x4b\x87\x0d\x39\x91\x9e\x9d\x71\x75\xcf\xd0\x64\x51\xbf\x6f\x4d\x32\xa3\x1b\xbe\xae\xd0\x15\x63\x43\xe2\x34\x14\x8d\x0e\xdb\x1a\x2d\x2e\x50\x00\x28\x6c\x58\x60\x7c\x38\xcc\xe3\xb0\x48\x17\xbd\x87\x57\x8e\xf8\xe7\x7a\x6b\x8f\x6d\x98\x86\x2b\x85\x89\x62\x0e\x64\xb1\xf9\xbf\x1f\x28\xa8\xe7\x7d\xb5\xc0\x16\x99\x78\x15\x7a\xff\xd5\x73\x6a\x31\x3e\xe7\x2d\xcb\xe3\xd8\x0e\x2d\x45\x20\xae\x57\xa9\xfa\x4e\xf1\xf6\xa9\x2e\x52\xfa\x96\xe8\x22\x81\xe9\xde\x51\x4e\xfe\x27\x95\xea\x70\xbf\xcc\x5c\x42\xec\x8c\x68\xbd\x29\x6d\x1b\xf6\x9f\x95\xe4\x0d\x41\x8b\x90\x23\x8c\xb9\x0a\xe0\x05\x55\xed\x0d\xd3\x32\xcb\xd1\x0c\x89\xed\xf9\x33\x84\xd8\x5c\x24\xa6\x1f\xe2\x7f\xc0\x9a\x26\xd5\x63\x5f\x01\x31\x09\xd5\xf6\x1e\xad\x26\x92\xe0\xb6\xd5\xa4\xc0\xaa\x7a\x16\xf7\x8e\x74\xf1\x81\xb6\x9d\xc4\x94\x42\x2e\x77\x44\xdd\xfb\x25\xca\x0b\xc5\xfb\xa6\x0a\x1c\xb0\xc0\xbc\xa7\x6c\xeb\x6f\x4d\x95\x00\x39\x22\x0e\x47\xf7\xa2\x71\xcb\xff\x42\x33\x95\x35\x88\xbd\x16\x76\x98\x16\x85\xe8\xcd\x21\x27\x62\x79\x70\x3e\x71\x01\xeb\xb7\xd3\x7e\x6c\xf3\x7c\x56\x4d\x05\x54\x24\x11\x8c\xfe\xed\x8d\x1a\xf7\xca\x2f\x92\xdd\x9e\x86\x9a\xc6\xaf\x29\xbd\xa1\x73\x2a\x03\xa9\xb9\x74\x58\xf2\xac\xf1\x2a\xdc\x10\x4d\xe4\x63\xd5\xce\x29\x1b\x7d\x0c\x88\x55\x14\x51\x95\x24\xce\x09\x25\xcf\xf0\x16\x1e\x14\xff\x43\xe0\x45\x05\xb3\x68\x30\xab\xfc\x1e\x1f\x28\x51\xd6\x93\x0a\xd3\x7a\x5f\x67\x08\xad\x06\x07\x23\xa7\xc6\xbc\xe0\xb1\x72\xaf\xc9\xdb\x94\x2e\xf8\x3a\x4f\x90\x19\x3d\xdc\x6b\x13\xa4\x36\x29\x3c\x32\x3f\x31\x99\x4d\x8a\x51\x9a\x72\x7c\xc8\xc3\x45\x77\xc5\x5c\x52\x39\xdd\xc2\xe2\x2f\xce\x68\x0f\x61\x28\xc8\x62\xa5\xd8\x83\x75\x09\x3b\xf7\x8e\x8d\xa7\x35\x78\x90\x59\xb2\xa4\xef\x78\x4a\xc1\x79\xd5\x05\x7e\x5e\xd7\xed\x97\x97\xa3\x81\x59\x8d\x0a\xe6\xd1\xba\x2d\xde\xf3\xbb\xa0\xbd\x02\x92\xca\x47\x4a\xec\xb8\x9f\x26\x03\x57\x2c\x70\x6a\xd0\xc7\x94\xe8\xcb\xb1\xba\xd7\x56\x92\x3f\xe9\x15\xe3\x2e\x4d\xfd\xd6\xca\x0a\x4a\x08\x3c\xb7\xe3\xbe\x90\xf8\xcc\x01\x47\x41\xa6\xf5\x23\x3c\x55\xfa\xcc\xd1\x27\x7a\x35\xfc\x9f\x66\xbc\xdb\x4d\x0e\xcf\x73\xb4\xfc\x01\x4d\x3e\xc0\x51\x5c\x55\x40\x86\xf0\xb9\x62\xe7\x32\xb5\x09\x01\xc7\x5f\xd2\xf5\x63\xff\x99\xd9\xa8\xd9\xaf\xfb\xfe\xc7\x47\x7b\x3e\xef\xb8\xd5\xaa\xe6\xc3\x12\x75\x7b\x3c\xba\xb5\xbd\xa7\xc5\xf8\xab\x75\x00\xb3\x7d\x47\x4f\x3b\x2b\x61\xac\xe2\x6d\xef\xde\xc0\xfe\x2d\xda\x96\x5a\x3a\xf6\xdc\x54\x39\xa1\x9f\x57\x90\xd4\x09\xec\x73\x52\x22\xad\x1e\x38\xa2\x8d\x7b\x4a\x33\x80\xed\xbe\xd9\x60\xaa\xcd\x5a\x54\x91\x0d\x6d\x6e\x8b\x59\x25\xa1\x78\x51\x2f\x68\x4a\xaf\x6c\x2b\xf0\x1c\x8a\x63\x4a\xda\xa1\x8c\x8b\xcc\xac\x46\x69\x6c\x59\xea\x17\x69\x19\x36\x77\x47\xb7\x73\xb6\x92\x9f\x7a\x0d\xcf\x34\x59\x8e\xb2\xf1\xac\x77\x40\xfe\x63\x8c\x00\xda\x02\x5e\x7d\xa2\xe7\x09\xff\x73\xd4\xc6\x0c\xd1\xab\x1b\x6d\xf5\xd7\xd0\x64\xd6\x26\xd2\x40\xce\xc6\xad\x74\xf1\x4c\xe4\xd4\xcf\xf3\x56\xe0\x65\x01\x5e\x8b\x6c\x4d\x9c\x8c\xae\x5a\xa2\xea\xc7\x95\xf1\x53\x5e\xc4\xeb\x73\x4a\xee\x8e\x51\x1f\x3e\x51\xe4\xd3\xe3\xca\x67\xfe\xbd\x40\xe9\xe5\x6c\xaa\xf8\xb5\x1f\x65\xc5\xa8\x46\x1c\xa2\x3f\x6c\xb3\xdf\x28\xd2\xe4\x09\x8f\xbc\xa3\xfd\x15\xaf\xfc\xb1\x0d\xba\x1e\x87\x1f\x2f\x1c\x72\xad\xe8\x18\x4b\x80\x43\xef\xe1\xde\xa5\xa0\x43\x8f\x98\x81\x76\x44\xc7\x6e\x1b\xac\x6e\x88\xbf\x8d\xaa\xcd\x5c\x2d\x0f\xbc\x33\x13\xf3\x96\x91\x3e\xa1\x53\x8e\x9e\xf5\xce\xa7\x7a\x8a\xba\x74\x99\x36\x51\x5c\xe4\x0f\x31\x60\x59\x9d\x4e\xf5\x0e\x2d\x47\xb1\x05\x08\xd2\x22\x93\xba\xa9\x3a\x4d\xef\x04\x1e\x7f\x3a\xad\x84\x1c\x9b\xae\x45\x4b\x2f\x1e\xec\x8e\x6c\x3c\xa9\x76\xc4\x8e\x47\x2b\xcf\x04\x9e\x27\x79\xa6\xad\x43\xc1\x26\x55\x1c\x3f\xeb\xd5\x38\xff\x1e\x8d\x3d\xc4\x84\x4f\x93\x87\x0c\x36\x7b\x68\xe1\x0b\x0d\xe2\x8b\x04\xf5\xf2\x22\x95\x16\x09\x44\xaa\xff\x07\xc5\x05\x7c\xdc\xe8\x39\x27\x56\x63\x18\xda\x09\x94\xb8\x95\x6f\xfa\x59\x25\xdb\x78\xb6\x05\xa4\x7d\xae\x3b\x74\x85\x66\xc6\x58\x02\x45\xc0\x38\x37\xad\xd1\x04\xc4\x73\x50\x91\xfa\xe9\x8f\x45\xc0\xef\xe1\x07\xf3\x0f\xbb\x59\x5a\xe6\xb9\x05\xcb\x1a\x28\xf8\x11\x2d\x5f\x7e\xc4\x29\x91\x0f\xa2\x21\x85\x20\xa2\x56\x79\x3d\x50\x5d\x2d\xf7\x02\x1f\xbb\xa1\xd0\x08\xe6\xd4\xf6\x8d\x36\x61\x4d\x53\x8c\xd3\x7c\x32\xb2\x62\x49\x87\x84\x0c\x32\x72\x7c\xac\x18\x9e\xcb\xb1\x7d\x2d\xea\xc7\x16\x1a\x10\xae\x5a\xea\x4b\xac\xa7\x14\x0c\xb0\xbd\xe7\x53\xff\xb3\x2e\xf1\xec\x9b\x24\xcc\x47\x26\x73\xec\x02\x97\xd3\x7a\x19\xee\xd3\x81\x57\x04\x4a\xec\xaa\x19\x18\x2d\x13\x73\x4e\x45\x33\x1f\x4e\x55\x65\xe0\x6a\x63\x88\xec\xdf\xdf\x0d\xd3\xf1\xd8\x26\x3e\x4e\x6f\xa3\xaf\x2b\x43\x23\xbb\xf6\x88\xf2\x40\xb8\x43\x9b\x1f\x72\x8e\x5b\x81\xc7\x5c\xd0\x2b\x87\x54\xe2\xd1\x5e\xe7\x95\x57\x80\x6e\x49\x8c\x82\xc6\x69\xa4\x7a\xdc\x22\x5b\x83\x91\x25\xd8\x53\x49\xdb\x4d\xd5\xd5\x38\xb0\xcb\x51\x18\xc1\x70\x15\x40\xdb\x67\xca\xc9\xed\x58\xa0\x6c\xe7\x51\xc7\x43\xe0\xbf\xd1\x86\x85\xe5\x45\x39\x88\xa4\xef\x1f\xd0\xe2\x87\x4a\x6c\xf0\xc3\x16\xc4\x74\xa9\x8a\x28\x4d\x04\x22\xb3\x14\xac\x9b\x9a\x1a\x4e\x88\xb2\xba\x23\xa9\x71\xef\x8e\xba\x93\xcc\x2e\xff\x7c\x77\xe9\xcb\xf4\xb4\x01\x02\x6d\x05\x8a\x73\x7a\x43\x01\xb6\x3b\x36\x3a\xbf\x74\xd0\xf5\x6f\xd1\x6f\x20\xd6\xb9\xa9\xcc\xac\x3a\x70\xbe\xc0\x4d\xce\x6e\x54\x81\x0e\x9e\x04\x37\x5e\xe2\x99\x5f\x53\x51\xdf\xaf\xfd\xe7\x14\x1d\x60\x93\xbb\x4a\xab\x01\xd6\xd6\x59\xa2\xb4\x2b\xa1\xfb\x05\x47\x4c\x25\xf2\xab\xc0\xe6\x84\x5e\xba\x02\xe5\x0b\x0b\x0e\x6e\xc0\x90\xa5\xda\xd3\xff\xde\x45\x37\x0d\x46\x0a\x8c\x67\xd0\xdf\x70\x95\x5e\x0a\x30\xa8\xdd\xe4\x4b\x04\x10\xe8\x42\x1b\xff\xb9\xb0\x79\x11\x8d\xd3\x24\xe2\xf6\x0a\xc7\xd0\x5f\x14\x15\x85\x7f\xde\x1a\x12\x2d\x93\xda\xff\x43\x25\x17\xdd\xaf\xf5\xf0\x6a\xfd\x52\xb5\x6f\x47\x45\x14\xa6\xd9\xa4\xe3\x6d\x96\x67\xb0\x93\xf0\xc9\xc6\xc3\x9f\xda\xb7\xaf\x9b\x4e\x6c\xa6\x12\x5d\x64\x0e\xef\x2a\x33\xec\x77\x5b\x34\xe3\x97\x48\xd9\xd3\x69\xcc\xb0\x7b\x53\xe0\x83\xbe\x73\x1a\x3d\x6c\xfa\x01\x3c\xbf\xd8\xb5\xaf\x85\xd6\x0b\x38\x88\x40\x61\xc7\xb5\x02\xfe\x76\x6b\xa2\x6b\xc7\x69\x81\x4c\x02\x7f\xf5\x08\xac\xc7\xf0\xfe\x4f\x2b\xae\xe6\x13\xbd\x87\xdf\x46\x75\xd5\x55\xee\x92\xd9\xdc\xb5\x00\x22\xe0\xb8\xa1\x94\x92\x6e\xb8\x06\xc8\xb5\x91\x25\x0e\x6b\xf5\x86\x01\x53\x9e\x44\x4a\x2c\x9d\x34\xd5\x18\xc6\xf1\x2c\x85\xb8\xec\xf6\xac\x1b\x74\xae\x62\xe0\x7d\x91\x12\x1c\x71\x87\x4d\x9c\x2e\x17\x04\x05\x71\xec\xaa\x56\xa2\xa6\xb6\x96\xdb\x16\xcd\x8c\xdf\x55\x51\xd9\x90\x4a\x8e\x12\x52\x6a\xea\x75\x56\xfb\x1c\x95\x2c\x66\xaa\x5f\xc4\x1a\x77\x5f\x49\xe0\x5c\x55\x5d\x9d\xc7\x6b\x0c\x8a\x6f\x3f\xcb\x4b\x3a\x6b\xa4\x68\xe2\xc0\xf1\x06\x0b\xeb\xc0\x7c\x77\x60\xc6\x10\xe9\xa6\xa1\x80\x05\x05\x25\x6c\x14\xda\x10\x03\x4b\x9f\x8a\xd3\x52\xcd\xcc\xba\xfb\x10\xc2\x8c\x07\xca\x26\xe2\xae\x2a\xad\xbd\xd5\xd6\x19\x04\xc5\xf4\x75\x45\x46\x39\xa2\x31\xd8\x23\xee\xfd\x26\x29\x85\x08\x33\x14\xb5\x69\xc3\x79\x0c\xa6\x7b\x8a\x43\xed\x45\x34\xfa\x26\x8e\xa1\xda\x27\x0e\x24\x7e\xa7\x39\xdd\x66\xe1\x6d\x5f\x9b\x44\x99\x25\xa0\x0d\x75\xe7\x6b\x14\x00\x3a\x01\xff\x45\x2f\x87\xec\xeb\x84\x2b\x49\x54\x74\x54\xa9\xfe\x0a\x5d\x17\x1f\x37\x54\x37\x29\xe6\x1a\xd0\x70\x40\x8c\x0a\x6e\xae\xb3\x7f\xd5\x74\x64\xc1\x44\x86\x71\x54\x14\x96\xcd\x38\xf0\xb6\xa1\x67\xc7\xc7\x2a\xff\x29\xd2\xc2\xc4\x51\x32\x44\x48\x82\xa8\xe0\x43\x2d\xc9\x02\xed\x8f\x9a\xea\xbc\x9c\xb4\xb8\x4d\x7c\xbb\xcc\x8b\x68\x39\x92\x19\x88\x92\x3d\x5a\x2e\xf9\x58\xe9\x39\xa8\x85\x09\x51\xd2\x35\xd5\x90\xa0\xbd\xef\x8b\xcc\x26\x83\x9d\x35\x2e\xba\xcf\xd0\xee\x01\x01\x46\xa0\x84\x34\x8f\xff\x21\x50\xe0\x36\xb6\x1b\xa1\xb5\x57\x13\x1a\x93\xfb\x4d\xc5\x6a\xb7\xa6\x18\xb1\x06\x23\xcb\x2c\x4c\x3d\x6b\xed\x63\x85\xb3\x2d\x47\xc3\x32\xb3\x3b\x95\xd9\x2b\x0a\x76\xd2\x47\xed\x47\xcd\x0f\xa7\xca\x1f\x02\xc2\x91\x00\x81\x2e\xd3\xc5\x61\xe9\xf8\x2e\x21\x6c\x7c\xdc\x94\xe9\x5b\xe8\x8e\xed\xd0\xf4\xd7\x0b\x8b\xa4\x11\xc9\xf6\x25\xb5\x88\xdf\x55\x0f\xf8\xa4\xe2\xb0\x8e\xd2\x38\x5e\x5f\x4b\x53\x84\x03\x48\xf5\xfe\xfd\x54\x89\x93\xd0\xfd\xf1\xff\x57\x6e\xbf\x9f\xb7\x2e\x2c\x24\x96\x41\x43\x0a\xe0\xf7\xe7\xf4\xab\x7c\xac\x2a\x19\x63\x1b\x8e\x4c\x12\xe5\xe3\x8e\x27\x90\x42\x56\x83\x8f\x95\x66\x64\x5a\x16\x93\xb2\x98\x55\xc9\xe2\x2d\x9d\x2c\xde\x52\xfe\x6e\x80\x2f\xf9\xd8\x0d\xf5\x81\x0d\xe3\x28\xa9\xb2\x23\xc7\xf7\xd8\xbe\xe1\x59\x21\x5f\xfe\xfb\xda\xcb\x8b\x43\x21\xa6\xc8\x2b\x6e\xd9\xff\xf0\xcc\x86\xbf\xa6\x49\x19\x23\xdd\x12\xcf\x57\x04\xc3\xc0\x64\x8e\xd4\x84\x97\x7c\xba\xb3\x9d\xa2\x13\xc0\x6f\x1f\x6a\x63\x2b\x33\xcc\xac\x08\x8d\x49\x3d\xc9\x27\xde\xcc\x8e\x01\x01\x73\xb7\x32\x19\x2c\xd2\xf4\x11\xc5\x8a\xfd\x48\x75\x79\x6e\xa7\x8c\x0b\xec\x8a\x1b\x53\x0f\xaf\x72\x33\x00\x86\xc7\x0d\x1a\x90\xfc\x0f\x81\x0f\x19\x8e\x6a\x56\xc2\x51\x64\xb8\xfc\x2f\x81\xb6\xbd\x50\x42\xd6\x65\x62\x5f\x9b\xd8\x90\x50\x4a\xc6\xe0\x94\xbf\xa5\x34\xe5\x6d\xd3\xb1\xc8\x45\x65\xa9\x9b\x97\xd9\xb2\x09\x2d\xc6\x20\xe8\x6c\x9f\x23\xe0\xe6\x13\xdd\x80\xb9\x09\xc0\x9a\x4f\x54\x70\xff\x5a\x31\x9a\x53\x56\x59\x17\x14\xf5\x0c\x0c\x3b\x04\x8c\xbb\x89\x76\x80\x50\xf0\x04\x12\x3c\xd6\xff\x0e\xbe\xec\x9e\x6d\x94\xac\x56\x81\xdb\xd0\xb9\xdd\x2e\x6a\x99\x90\x05\x27\xd9\xfa\x85\x1e\x6a\xd6\x40\x02\x0c\xe1\xe3\x79\x6d\x1b\x7b\xbe\x65\x55\x5c\xaa\xf6\x09\x82\x79\xf1\x63\xa2\x97\xec\x27\x9f\x26\x9e\x93\xe8\x74\xf4\x6a\x69\x77\x56\xb1\xaf\x44\xea\x9e\x17\x0a\x5b\x4b\xac\x22\x7f\x11\xa8\x8e\x00\x6e\x79\xc7\xbb\xc1\xf2\x00\x04\x7f\x07\xf5\xda\x20\x82\x7f\xaf\x2d\xd1\x18\x47\x89\xcd\x38\x86\x05\x6c\x7b\x4b\xf1\x4a\x6f\x35\xf6\xa4\x17\x16\xba\xb9\x81\xab\xb0\x92\xb4\x77\xe9\xb1\x9b\x9c\x89\x5d\x23\x6b\xe4\x8e\x6f\xa0\xe1\x92\xa9\x88\xe3\xf8\x35\x75\x35\x8d\xcb\xb1\xdd\x5b\xcd\x28\x47\x3d\xf0\xb9\xe9\x14\xf7\xe6\xb8\x69\xae\x59\x61\x16\x64\x3e\x10\x22\xbe\x0b\xad\x24\xd1\x7b\xf5\xbc\xed\x39\xa6\xdc\x22\x28\x3f\x35\xf5\xda\x58\x2c\x36\x24\x3e\x45\x34\xe5\x6a\x5c\x03\xec\x2b\xd7\x5b\x4c\xaf\xba\x83\x68\xd5\x66\x43\x91\x50\x40\x64\x8a\x66\x14\x3e\xf6\x5c\x19\x13\x96\x71\xb1\xde\x51\xce\x4d\xa7\x95\xae\x64\x6b\x6c\x31\x8e\x1c\x48\x87\xf1\xfc\x40\x71\x27\x36\xb5\xac\x68\xd3\xa9\xfe\xd0\x8b\xdd\x58\x78\xb8\x6d\x76\xd4\x0d\xfd\x58\x12\x50\xcf\xd2\x15\xab\x64\xbb\xd1\xc9\xc1\xc7\x8d\xbe\x3e\x72\x2c\x9d\x94\xfd\x38\x0a\x0d\xeb\xc7\x62\xf3\xc0\xd4\xe4\xe3\x1a\xbf\x33\x2c\x9e\x25\x75\x41\x24\x64\x9f\x63\xcc\xf0\xc9\xf4\x19\xa5\xa7\x35\x4c\x8b\x88\x83\x03\x25\x8b\x4a\x4f\x56\xea\x42\x52\x9e\x1b\x47\x99\x19\xda\x19\x0d\x47\x1c\x51\xca\x03\x9d\x0d\xa5\x63\xb5\xa3\xe7\x09\xb0\x23\x28\x7d\xce\xf9\x6d\xe9\xf7\x15\x98\xcb\xa8\x3f\x37\x13\xd2\x26\x04\xfc\x62\x3b\x21\x5c\x58\x62\x67\x7a\x82\x8d\xae\x99\xd8\x32\xa8\x83\x57\x25\xc9\x26\x90\x9c\x93\x7a\x9d\xe4\x18\x0a\x73\x79\xae\xd1\x51\x03\xb9\xe0\xdc\x74\x54\x9c\x8f\x3b\xe7\xe3\xa9\x57\xb9\x19\x45\xc5\x2e\xba\x4e\x24\xe4\xd0\x2c\xd7\xe1\x05\x72\x96\x2d\x5a\x30\x24\x8d\x55\xfd\x78\xcc\x04\x15\x24\xc5\x43\x4f\x57\xd4\x26\x77\xb6\x31\xf2\x0f\xcc\x77\xed\xb8\x6f\x5f\x7f\x3d\x66\xc3\x7e\x29\x99\x29\x47\x9c\xcd\xe0\x61\x5e\x10\xc9\x2b\x8c\x4c\x36\x36\xa1\x2d\x8b\x28\x34\xd0\xa0\xc2\x2c\xbc\xa9\x5a\xb8\x8e\x20\x54\x53\x9d\xa1\x3c\x7c\x62\xb3\xfe\x88\x57\x65\x9f\x01\x73\x0e\x80\x68\xa7\xe7\x97\xae\x27\x37\x94\x58\x21\x94\x51\x01\xc4\xec\xee\x79\x40\x6d\x47\x4f\xe9\xc2\xec\x44\x7f\xa0\x2a\x58\x89\x79\x38\x8b\xa7\x61\x2c\x5d\x69\x71\x33\x37\xab\xb6\x1a\x7f\x1d\xa5\xbc\xf7\x13\x7a\x90\x7c\x1c\xe8\x62\x54\x92\x53\x3b\x3b\xc0\x21\x80\xb7\x0f\x02\xc5\x76\x07\xd1\x57\x24\xdc\xab\x17\xc8\xc7\xaa\x6c\x36\x4e\x33\x53\xa4\x59\x54\x8e\x69\xd1\x41\xd0\x08\xa4\x9b\x8f\x55\x70\xbf\x9c\xc6\x71\xba\x66\x07\xbb\xa9\xa4\x2a\x8a\x57\x1d\xa7\xee\x0a\xbd\x47\x8c\x72\xd6\x23\xc3\x72\xfb\xff\xd0\x14\x92\xa8\x55\xb5\x8f\xb3\xcc\x1c\x7f\x04\x83\x09\x1b\xec\x91\xa9\xb7\xb5\xa8\xa9\x74\x50\x4a\x9e\xa5\xd1\x8a\xe9\x74\xbe\xf9\x12\x3f\x58\x88\x5e\xf0\x71\xa3\xa8\x78\x78\xfe\xe5\x2e\xd4\x74\xbd\xfa\x19\x7d\x40\xea\x22\xaa\x8c\x98\xa5\x79\x15\x9c\x94\x39\x71\xd9\x91\x52\xbe\xa5\x50\xec\xb7\x54\xf1\x3d\x2f\x27\xd5\x3e\xbc\xb7\x9a\xe8\x4e\xa5\x75\xc9\x69\xae\x5e\x51\xb2\x33\x7f\x46\x13\x48\x98\xe4\xd5\x57\x03\xee\x9e\xe9\x29\x7a\xc1\xd5\x40\xf9\xa5\xa1\x07\xd0\x39\xfb\x2a\x0d\xca\x6a\xf7\xc5\x10\xba\x86\x75\x45\x52\x32\x25\xc0\x77\xa2\xd6\x96\x61\x27\x52\x4a\x74\x41\xbb\x0a\xd4\x95\xc4\x56\x94\x44\x10\x0b\xaf\x85\x31\x35\xd9\x74\x1f\x89\xad\x8d\xd2\x74\x22\xc5\x50\x66\xec\xd4\xd8\x3b\x2e\x35\x2b\xb3\x55\xbb\x9e\x53\xc5\x41\xd0\x0d\xaf\x22\x68\x9e\xea\xf9\x92\xf2\x39\x55\x70\x63\x61\x05\x91\xf5\x6f\xa8\x97\x2c\x75\x97\xd3\x32\x61\xf5\x92\x9a\x35\x90\x94\x9a\x15\xb7\xb4\x28\x13\xfb\x85\xa2\xfb\xde\xde\x40\x42\xd3\xbd\xf4\x3d\x58\xbe\x6e\x05\x8a\x72\xcc\x9a\x5e\x28\x2a\xde\x50\x98\xf0\x1e\x94\x4d\x81\x68\x5d\xa6\x57\x8f\xa8\xe4\x86\x22\x1f\xdf\xc7\x0b\x73\x8a\x6d\x55\x04\x8a\x41\xf1\xb9\x12\xd4\xbd\xa6\xe7\xce\x75\x5d\x9f\x6a\x36\xb0\x1d\x98\x3f\xd0\x0d\xb3\x74\x6d\x20\x96\xfd\xc8\x19\x3e\xd7\x23\x83\x12\xe6\xad\xa6\x02\xdd\x2b\xaf\x74\x8b\xcc\x44\x89\xbc\x43\x91\x40\xf6\xfb\xb4\xb2\x60\x4d\xcb\xa4\xb0\xd9\x9e\xea\x86\xb1\x48\xd6\xe5\xd2\x58\x8c\x0b\x11\x11\x1b\x89\x30\x14\xaf\xe4\xa2\x3e\x0e\x94\x2e\x03\x08\x18\x98\xee\x8f\xf6\x3c\x41\x72\x3b\x8a\xc3\xdc\x88\x89\xd8\x1e\xdb\x10\x3b\x34\x4a\xd2\xfe\xf0\x88\xd8\xb7\xaf\x5b\x44\xc3\x51\x41\x51\x81\x6b\x24\x77\xf8\xd8\x39\x55\x55\xb4\x79\x68\x26\x56\xd9\xd5\x62\xe4\xf2\x71\x93\xd4\xbe\xd0\x4d\xcc\x2a\xba\xce\x9c\x28\xbd\x17\xa0\x3e\xd9\x2e\xd3\x5f\xe6\xa3\x2c\x4d\xc7\x0c\xcc\x82\x22\xc0\x7d\xfe\x7c\xd2\x16\x06\x99\xb2\x48\x59\x1b\xdb\x83\xf3\x40\xdd\xf8\xb8\x11\x6f\xbd\xf2\x4a\xf5\xdf\x95\xb4\x2c\x6a\x8e\x00\x1e\x2b\x3d\xa9\xa4\xe0\xe2\x68\x95\x59\x81\xdc\x46\x1f\xf8\xf7\xe3\x63\xed\x30\x2a\xa2\xd7\x6d\x92\xef\xf0\xfa\x78\xd7\xf8\x85\xe3\xc5\x3c\x50\xb4\x73\xe6\xf3\x4a\xd9\x5e\x35\x35\x32\xe7\x40\xda\xcb\xfd\x42\x6b\x93\x62\x54\xe6\x91\xc9\xc7\x58\x6a\x1c\x69\x50\x1b\xcb\xfa\xcd\x3a\x2b\x52\x06\x14\x85\x9e\xad\xa8\x8c\x17\x54\x8d\x68\x90\x55\x51\xf4\xac\xaa\x06\x60\x27\x41\xbc\x32\x03\x9c\xde\x75\xdf\xba\x36\xca\xa6\x66\x00\x39\xaa\xf4\x6d\xf6\x10\xd8\x7d\x59\x59\x4a\xe9\x26\x81\xff\xe2\x9f\xfc\xe3\x8e\x9f\xc1\xe7\x89\x86\xc0\xc7\x4a\x79\x32\x35\x85\x7e\xf2\x98\xa4\xf2\x1a\x7c\x8d\x3a\x8e\xd3\x75\xc8\x3d\x20\x7d\x3e\xca\x2c\x53\x11\xc8\xa4\x7b\x77\xd2\x99\x5e\xd9\xdd\xab\x9b\xda\x84\x74\x4b\x1a\x9a\x28\x07\x9d\x26\xca\xd3\x7a\x4b\x9d\xd8\x02\x3a\x16\x5e\xf6\x38\x50\x5b\x4e\x9b\xa8\x53\x95\xb4\xd2\x75\x20\x69\x40\xe7\x20\x1f\x2b\x4a\x22\x75\x5c\x53\xd6\xc1\xfe\x33\x81\xa2\xc8\x5e\x50\x86\xe3\xf7\xda\xfc\x76\x87\x91\x49\x0a\x50\x91\x34\x78\x8d\x3c\x14\x01\x98\x54\xe1\x14\x25\xf0\x78\x9b\x6b\x49\x77\x92\x46\xa2\x09\x80\xf5\xf7\x56\xa0\xe4\x33\x6f\x39\xfe\x61\x11\x85\x2b\xd6\x91\x7c\x9c\xbb\x42\x75\xd5\x7c\xd2\xac\x7e\x1f\x58\xea\x66\x96\xe8\xe9\xfc\xc8\x1d\x64\x50\xbd\x1c\x3e\x69\x63\x8b\x9b\xa2\xb0\xc9\xc0\x70\x71\x58\x40\x0b\x9f\x9d\x6f\x4e\x5d\x19\xed\xc5\xbf\xe3\xeb\x40\x28\x96\x21\xb1\xbd\x33\xf5\x24\x81\x33\x50\x80\xc2\xac\xbc\x83\x7a\x02\x70\xbc\x8b\x53\x2f\xc4\x7e\x5a\x79\x01\xfe\x37\xff\x10\xfb\x16\x2f\xb0\x88\x82\x45\x37\xb4\x8a\x53\x30\xd4\x1f\xa8\x7e\xb9\x9b\x81\x32\x9c\xdd\xbd\xe1\xb7\xc0\xb9\x0d\x8a\x7e\x44\xfb\x90\xf6\x00\xe1\xe9\xd3\x48\x97\x58\x74\xe6\xe0\x3f\x7d\xc1\x75\xe5\x56\x51\x1c\xf6\xd6\x2b\x6a\x25\xda\x83\x5a\x0d\x80\xa5\x67\xa8\x72\x86\xc4\x62\x17\x35\x1d\xe0\x07\x1f\xe3\x3c\x1c\x91\xe5\x97\x7a\x0f\x09\x50\xfd\xf2\xb7\x78\x09\x78\x04\xfb\x06\x46\xf3\xec\x86\xe4\x59\x24\xce\x00\x66\x09\x6e\xe6\x69\x2c\x0f\x82\xd6\xd2\x15\xa0\x7a\xf0\x40\x45\xb0\x67\xa6\xaa\xe1\xef\x4e\x83\x54\xf0\xca\x2b\x5d\x33\x1c\x66\x66\x55\xe1\xd1\xa8\x12\x6c\xdf\xf0\x15\x83\xed\xbd\xc7\x55\xa7\x8f\x21\x11\xd8\x2a\x14\x06\xe6\xf1\x7e\x50\x5b\x4b\x9e\x5f\x94\xa8\x38\x50\xa1\xca\xaa\xcd\xd6\xd3\xc4\xce\xd1\x6e\x89\x57\x73\x97\xb6\x54\xb7\x44\x7a\x28\x02\x29\x98\xae\x7c\xf1\xff\xd7\xc8\x5a\x34\x4c\x0c\x41\x95\x0b\x87\x18\xf4\xb8\x5b\xd7\x64\x54\xc1\xfa\x09\xdf\x45\xf8\x5b\x67\xe8\x0a\x11\x7d\x9f\x0c\x34\x19\xaa\x1c\xac\x93\xbf\xc1\xc2\x21\x91\x2c\xe6\x3d\x84\xc5\x18\xb5\x9e\x01\xba\x1d\x45\xd9\xb8\xc5\xd5\x71\x6c\xf3\x9c\x93\x23\x11\x0f\x00\x3f\x8b\x8f\x5b\xfc\x5f\x5f\xee\x8e\x4d\x3c\xc9\x4c\x58\x44\x21\xb4\x09\x25\x0f\xa4\xc6\xda\x0f\x14\xe8\x7d\xdd\x99\xa7\x67\x76\x6c\x06\x48\x16\x10\x0f\x74\x7a\x8a\x72\xd0\xd9\x70\x08\xbf\x8d\x8b\x35\xb3\xce\xfb\x12\xe2\x2e\x16\x66\xe1\x13\x6f\x1a\x5c\x16\xa3\x34\xcb\xb5\xd3\x1e\x8b\xcf\x88\xdc\x84\xea\x5b\x4f\xd3\x95\xdd\xbe\x9c\x04\x06\x17\xfe\xec\x2e\x3d\x68\x80\x3c\x47\xf0\x79\x25\x35\xbc\xa4\xe5\x48\xdc\xc7\xa7\x4a\xb7\xf8\x06\x52\x04\x27\x29\xef\x94\x16\xcf\x37\x42\x8a\x7d\xfb\xba\x99\x1d\x96\xb1\xc9\x14\x1a\x75\x44\xa1\x51\x47\x14\xa5\x3f\x4a\x56\x85\xdf\xd2\xd6\xa6\xed\x2b\x2f\x63\x3b\x88\xcc\x2e\xba\x70\xc6\x9a\x02\xaf\xfd\x78\x53\x01\x0e\x7f\x31\xf5\x15\xaa\xed\x3d\x2d\xed\x44\x33\xd4\x35\x6f\x39\xd4\xf4\x48\xe0\x97\x85\x26\xed\x79\xff\xfe\xee\xb0\x8c\x12\x6b\x3a\x7a\x0c\x68\x12\x98\xa2\x54\xc7\x26\x59\x11\x57\x44\x41\x49\xe8\x92\x05\x3e\x69\x89\x3b\xfb\xd5\x52\x82\xa8\x43\xc4\x77\xab\x1b\x93\x6a\x06\x7d\x1c\x3f\xc5\x5e\xe4\xc2\xc3\x57\xd2\x64\xe5\xeb\xaf\xc7\xd5\xfe\x51\x4d\x67\x84\x52\xa7\x01\x5f\xf3\x49\x8d\x9b\x16\x25\x83\x27\xe9\x35\xe3\x27\xae\x07\x0a\x32\xf8\x5d\x7a\x2e\x78\xc0\xdf\x21\xa1\x41\x71\xb8\xf0\xc3\xe7\x47\x18\x31\x22\x50\x56\x3d\x61\x05\x05\xbe\xec\x4b\x12\x8e\xdc\x7a\x1c\xcb\xbe\xe0\x92\x4a\x2e\x8e\x6d\xdb\x9d\xa5\xc6\x81\x25\xe7\x05\xdf\x71\xe4\x89\x1f\x4d\xd5\x4a\x08\xba\x2d\xe2\x78\x50\xd6\xf8\xca\xd5\x3c\x48\xac\x1d\x10\x40\xc3\x85\x28\x8c\x5d\x4e\xc9\xb0\xb6\xb9\x1e\x40\x0f\x42\x9d\xd3\x9b\xfa\x51\x7a\x09\x52\xff\xc5\x3c\x75\x59\x55\x75\x35\x58\x55\x01\xf7\x88\x4f\xae\x66\x69\xb5\x48\xf6\x72\xab\x3b\xcf\x65\xee\x78\xd2\xc2\x56\x57\x5d\x0c\x9d\x17\x59\x24\x26\x92\x8b\x7e\xc0\xab\x8a\x6e\x13\xae\xeb\xc6\x76\xd5\xc6\x33\x9a\xca\x31\x55\xca\x40\x17\x14\x90\xbe\x15\x28\x79\x99\xb0\x8c\x27\x45\x99\xe9\x94\xe6\xb2\x4a\x69\x2e\xb7\x49\xfd\x1e\xec\x8e\x4d\x94\x14\x26\x4a\x3a\x6a\x56\x1d\x0f\x14\x4d\xf8\xb8\x6e\x29\xb2\x21\x5c\x15\x3b\xbe\xee\xf8\x69\xe0\xe7\xec\xa7\x6d\x8f\x4b\x18\xe9\x1a\x50\x38\x19\xa8\xba\xc8\xc9\x1a\x6f\x20\x8a\x3a\x3e\x28\x87\x35\x85\x54\xb9\x1e\xfe\xf2\xe7\x17\xbb\x7d\x93\xac\x64\xe5\xa4\x50\x79\x19\x44\x75\x45\xf7\xf7\x99\x7a\xe7\xcf\xbe\x7d\xdd\xc3\xf3\x0b\x7b\x95\x13\xc5\x86\xe7\x74\x72\x9d\x0f\x33\xe2\x6f\xf5\x54\x68\xfe\x08\x35\xaf\x73\xc3\x2f\x26\x1a\xe2\x92\x7b\x74\xf7\x28\x9d\x7d\xa0\x9a\x94\x3f\xa0\x71\x0f\xf8\xf8\x9d\xa9\x2f\x6b\xfe\x05\xe0\x21\xfe\x87\x40\xad\x0a\x3f\x68\x2c\xc0\x5f\xef\xda\xd7\x26\x26\x71\x3e\xc8\xdc\x87\x16\x78\x34\x90\xe5\x33\xc5\x6b\xc5\xaf\xb2\x03\x93\x84\x5c\xdc\x65\xc5\x42\xa5\x3a\x75\x9b\xae\x19\x43\xf5\xe3\x56\x46\x64\x6e\x27\x26\x33\x85\x8d\xd9\xaf\x82\xc5\x10\x68\x29\x10\x61\x04\xb5\xc9\x03\x04\x63\xc6\x33\xb6\xe2\x4f\x94\x91\xc3\x27\xaa\x8f\x81\xb8\x24\x7b\x55\xef\x33\xde\x30\xe0\x9a\x93\x2a\x1d\x3b\x03\x0d\x16\x27\xa9\xa4\x3a\xa4\xb4\xd6\x12\x5d\x12\x7f\x3a\x78\xa8\x25\xcb\x77\xbf\xe3\x6a\xd0\xec\xb5\x49\x9b\x1e\x1f\x73\x56\xc5\x7f\xe5\xb4\xc3\xfa\x59\x9a\xbc\xc6\xbb\xba\x53\x1a\xf7\x8d\x0e\x6d\x74\xd0\xae\x19\x4f\x62\xa4\x4f\xd2\x58\x5b\x2d\xbb\x7c\xdc\x6a\x50\x16\x25\xab\x66\x00\xae\x07\x76\xb0\xe3\xb8\x35\x69\x83\xab\xd5\x11\x9b\x83\x83\x6c\x0a\x2d\xa7\x6c\x80\x90\x50\x14\xe7\x63\x25\xc5\x37\x4e\xb3\x62\x68\x86\x36\x9f\xa5\xdd\x44\x14\xdd\x3c\xe8\xb6\x89\x92\xa9\xd4\xb1\x3b\x4a\x2d\xd2\x7f\x4b\xdf\xc6\x69\x32\x94\x5e\x23\xa5\x04\xf3\x9c\xeb\xbe\x16\x79\x97\x7c\x5c\xd6\x1e\xdf\x6f\xeb\xc7\xf7\xdb\xc1\xd3\x91\xa3\x61\x8c\x6d\x32\x48\xcb\x9c\xdb\x5e\x9d\x89\x9f\x37\xf4\x9b\xfe\x2d\x15\x64\x2c\x67\x26\x2f\xb2\x32\xac\xd6\xb9\x19\x85\xb6\xdd\x56\x62\xf6\xa8\xde\x4a\x05\xb3\x25\x0e\x78\x2d\x4a\x46\x25\xfc\x3c\xb1\x31\x7c\x88\xab\xe3\x13\xd5\x05\x33\x31\x29\xad\x5a\x5b\x14\x30\x6f\x9d\x6e\x50\xf6\x9e\x5f\xec\xe6\x13\x1b\xd6\xfa\x92\x31\x41\xae\x28\x02\xfc\x15\x57\xbe\x67\x0c\x4d\xfe\x14\xf3\x91\xb3\x09\x3e\x09\x7c\xdd\xca\x64\xfd\xa8\xc8\x4c\x16\xc5\x28\x8d\x32\x45\x47\x09\xee\x7d\xa6\x50\x9d\xa1\x89\x92\x9c\x64\xc3\x31\x9a\xfe\x7c\xaa\xbc\xab\x58\x7c\xd6\xc9\x3a\xb8\x82\xda\x5b\xd8\x54\x91\x54\x5e\xd6\xae\x59\xe7\x95\x29\xda\xf7\x31\x1b\x39\x2b\xc4\xc8\xc4\xc2\xb2\x6b\x83\x4a\x01\xfc\x79\x17\x41\x97\xc9\xa0\x8c\xd7\x67\x3c\x8b\xe4\x16\xa5\x8f\xae\x85\xdd\x89\x3c\xcd\x28\xbd\x83\x28\x4b\x13\xaa\x9f\x71\x4b\x72\xa0\x24\x2e\xff\x90\xa6\x30\x2e\xe0\x08\x6f\xe4\xb2\xa4\x56\xdf\xcc\xff\xa2\x04\xaa\x12\x5b\x66\x69\x5e\x66\x43\x9b\x26\x1d\x4a\x8a\x1d\x9b\xc6\x71\x70\x36\x1b\x6f\xf4\xc0\x7c\xd7\xc4\x85\xcd\x12\x16\xa1\xf5\x6e\x92\x74\x01\x32\x28\xdb\x4c\xb5\xcc\x60\x35\x62\x45\x52\xf6\xf9\xa2\x85\x56\x3c\xbf\xbc\x99\x9d\x19\x44\xf1\x3a\xf1\x4b\x9c\x37\xf0\xe2\xa2\x96\x9b\x7a\xd9\xd5\xb6\xab\x57\x80\xbd\x15\xe9\x16\x50\x9e\xdd\x3d\x9f\x04\x8e\xa3\x3c\x8f\xaa\xa8\xb1\xe3\x4d\x9c\x68\x19\x10\x43\x27\xf9\xdd\x28\x59\x8e\xd3\xb5\x7c\x46\x75\xb1\xb2\x09\x36\x70\x99\x7b\xb5\xbe\x76\xa5\x76\x95\x26\x52\x0e\x45\x24\xb1\x63\x43\xc3\x48\x53\x15\x2b\x3c\xda\x5a\x7d\x0c\xd3\x35\x8e\x95\xb0\xb3\x9e\xc2\xaf\xf2\x89\x1a\xef\x99\x8d\x92\xbc\x84\xae\x2b\x0d\x31\xec\xa5\x2c\x8a\xc5\x27\xaa\xd7\xcd\x8b\xdb\x01\x87\xd2\x18\x02\x1f\xab\x0e\xcd\x28\x09\x33\x6b\x72\xbb\xd7\x83\x28\xc7\xb4\x89\xcf\xa7\x84\x8f\x70\xab\x03\xbd\x39\xb4\xa2\x9c\x01\x8c\x01\xe6\xcb\xe7\xb4\x7b\x20\x2c\x3b\x16\x78\x02\xca\xbb\xf4\xa3\x40\x07\x3e\xc5\x1e\x2f\x5d\x5d\x33\xde\x82\x97\xf6\xeb\xa5\x2d\xf8\xc5\x61\x5e\xfc\x41\xa0\xc5\x22\x97\xcb\x5c\x50\x7c\x29\x67\x74\x9c\x94\x56\x4d\x59\x6c\xab\xad\x4f\x37\xcc\xd2\x74\x85\xdd\xe4\x9c\x3c\x8d\x16\xb4\xf1\xc2\x2f\x43\x93\x0c\x46\x11\xb0\x09\x06\xd6\x94\x4b\xe3\x05\x45\x1f\x19\xa4\x61\x39\xb6\x49\x91\xcf\x69\xc4\xb8\xa6\xc2\x4a\xb7\xe8\xb8\xf4\x0e\xc1\x39\x17\x28\x35\xb3\x6d\x1b\x1e\x2a\x4d\xcd\x18\x5d\x4f\x40\x30\x8f\x29\xd3\xd6\x63\x6a\xed\x67\x15\x09\xfe\xa3\x56\x83\xcd\x65\x82\xcf\x64\x3d\x55\xba\x3d\xee\x9e\x5d\x5f\x67\xda\xcf\x6d\xb6\x2a\x61\x3b\x5e\x15\xf7\x4a\xf0\x49\xcb\x2e\x5d\x85\xbc\xf0\xe7\xf1\x32\x72\x27\x75\xde\xbe\xe9\x15\xda\x6f\xfe\xb4\xd1\xad\x8e\xe1\x9f\xe4\x65\x5c\x98\xa4\x90\x4e\x68\xae\x04\x05\xca\xe6\xf7\x6c\xad\x1d\x44\x85\xdc\xc3\xac\xec\xdb\x2c\x5d\x35\x3b\xbc\x1d\xd8\x19\x5a\xf1\x9c\x4b\xf7\x81\x79\x47\x70\xe9\x38\xb9\x03\x7e\x76\xe2\x21\xd2\x71\xde\xb4\x4d\x01\xed\xfd\xfb\xbb\xe9\xf2\x72\x14\x46\x29\xad\x5d\x62\xb5\x56\x25\x84\xe2\xb4\xf6\x90\x6a\xec\xd7\xbb\x87\xe7\x5f\x7e\xd2\xc3\x23\xa7\x80\x33\x62\xd1\xe2\xd8\x5e\x9a\x89\xbd\x0e\xe9\xcc\xc6\x8c\x76\xa3\x56\x0e\x3a\xe8\x72\x42\xdc\xf3\x21\x52\x49\xf1\xf2\xab\x82\x28\xb1\xf2\xa3\x47\x84\x93\x07\xbc\x05\x48\x55\xdc\x93\x5a\x3e\xa4\x69\x8c\xde\xc5\xdb\x00\x43\x51\x4c\xb8\xa5\x0a\x7e\xd7\x11\x69\xb1\xfe\x64\xa0\x16\xa7\xbb\x8d\xc7\x73\x78\xfe\xe5\xee\x28\xf2\x55\x00\x31\xaa\xad\x7e\x92\x8f\x1b\xf1\xe0\xc2\xa1\x6e\x3f\xea\x73\x3c\xe8\x8a\x6a\xbe\xc0\x36\xfd\x22\xdb\xd7\x41\x66\xf3\x41\xc2\xac\x48\xec\x1c\x17\x75\xec\xd4\x84\xc5\xaa\x0d\xab\xcc\xab\xa0\x42\x69\xa2\xbd\x17\x78\x4d\x9e\xf7\x1a\x79\xd3\x2f\x74\x4d\x92\xa4\x65\x12\xca\xbc\x71\x0a\x5f\xd5\x8b\xe3\x93\xc6\xce\xb8\xf4\xe2\xc1\xee\x24\x8b\x92\x30\x9a\x18\x69\x8a\x47\xf6\x0c\x97\x02\x3e\x6e\xa4\x99\x0b\x87\xba\x03\x6b\x62\x9b\xe5\xa3\x08\x66\x6b\x08\x8a\xf1\x3e\xf8\x58\xb1\x99\x4d\xf1\x9f\x16\x9d\xda\x0c\xa6\x9f\x92\xb9\xed\xd1\xca\xcc\x44\x71\x96\x1a\x36\xfc\x6a\xd3\x3f\x69\xe9\x23\x18\x44\xa6\x6f\x49\xf9\x5e\xc1\x17\x9f\x2a\xa3\x92\x4f\x1b\x9f\x3a\xf4\x62\x77\x92\xa5\x55\xec\xcb\x12\x08\x6e\x04\x57\xcf\x0e\xb0\xfb\x75\x15\x52\x7d\xa8\xa6\xaf\x7d\xcd\x80\x76\xd5\x51\xee\x31\x28\x3b\x09\x09\xc9\xf3\x22\x4d\xf8\x6a\x19\xe5\x11\x79\x08\xcd\x79\x7a\xe6\x9b\x18\xac\x60\x31\x5f\xc1\x7e\x22\xa3\xa1\xe3\x74\x90\xf6\x6c\xf8\xf8\xe4\x76\xa3\x48\xcc\x9c\xc1\xb8\xca\xf4\xbd\xf6\xda\x45\x45\xa9\xbf\xd8\x06\x63\x93\x0e\x2d\x39\xdb\xf2\xb2\xe9\x28\x2d\xd5\xc3\xe3\x93\x36\xd1\xab\x65\x13\x41\xbf\xb6\xe6\x6c\xce\x43\x99\x4f\x94\x28\xdb\xd0\x26\xcf\x92\x84\x3a\xb2\x52\xf4\xf5\xf3\xb1\xd2\xdb\x1d\xa7\xb1\x0d\x81\x48\x2e\x2e\xd6\x2c\xf0\x04\x5b\x96\xf8\xb3\x9f\x66\x03\x9b\xcc\x78\x6e\x15\xb3\xfa\xd9\x73\x44\xb9\x16\x6e\xaa\xa1\x97\x45\xe1\x68\xd6\xa7\xd7\xec\x87\x28\x62\xa6\x1d\x2d\x72\x7a\xc0\x03\x56\xfe\x6d\x9b\x24\x1c\xa5\xd9\xd8\x88\xbb\x04\x96\x65\xe6\xd4\xf3\x49\x6b\x65\x6a\x68\xab\x4f\xcd\x2a\xda\xe7\x8e\x0d\x7c\x85\x88\x6a\xf8\xe1\x85\xde\x5c\xe9\x17\x96\xdd\x6d\x6c\x8a\x70\xe4\x1a\x21\x50\x5c\x03\x1b\x1b\x0b\xf1\xae\x9e\x2f\x7b\xcd\x2a\x8d\xd4\x49\x5c\xb2\xc3\x3e\x86\x3f\xca\x6b\x92\x1e\xfb\x79\xfd\x9b\xca\x61\x7f\x54\x0e\xed\x8e\xea\x0d\x81\x9a\x75\x4c\xe9\x8a\x32\x0a\x89\xf0\xea\x3b\x4a\x3e\xe7\x24\x81\x23\xd2\x9d\x55\x0d\x41\xfe\x9b\xc6\xda\x79\x60\xbe\xbb\x5c\x7e\x3b\x02\x5b\x05\x0b\xec\xd9\xa9\x16\xec\x6b\xa6\xdf\xd5\x23\x8c\xd3\x9c\xd5\x3e\x30\x07\x98\x68\x51\x33\xae\x17\xd6\x5e\x8b\x31\x6a\x3e\x4a\x27\x13\x99\xa7\x5b\x64\x64\xb0\x75\x7a\xda\xfd\x82\x65\x9a\x04\x8b\x26\x69\xf6\x1f\x69\xbb\xd3\x56\x2d\xcc\x0b\x03\xd7\x6d\x7a\x61\x2c\x71\xa2\xc4\x73\x91\x14\x00\x2c\x7d\x53\x85\xe3\x13\x6b\x56\x66\x3a\x4e\x57\xe7\x4e\x4d\xf4\x93\x1e\xb2\xe0\x24\x2d\xab\x1f\xe5\x9f\xe8\xd0\x75\x48\xbd\x96\x89\xac\x26\x5b\x6d\xa7\xff\xe6\x4b\xdd\xaf\x7f\x31\x67\xd2\x07\xd7\x49\x14\x8e\xd2\xd8\xb0\x10\xb6\xb4\x63\x56\x7f\xcb\xc7\x2e\x33\x0c\xd3\x71\x6e\x0a\x9e\x20\x88\x36\x7f\x3c\x55\x32\x30\x3f\xd6\x5e\x1d\x51\x38\x32\x36\xde\xa5\x8c\x53\x3e\x0f\x7c\x23\xd2\x09\xec\x0c\xb5\x46\x26\xe4\xc5\x97\x54\x8b\xd2\xe7\x4a\x30\xed\x82\x96\x7a\xba\x18\x28\x19\xa6\xa6\x10\x45\x15\x5e\x56\x8b\x3e\x22\x55\xc1\x61\x7c\xcf\x34\x6a\x0f\xc8\x11\xee\x06\x5e\x1c\xea\x98\xf6\x40\x48\x93\x55\x4b\xe0\xa7\x2f\xe1\x70\x18\x2f\xe1\x63\x0b\x19\x32\x4a\x96\xab\x70\xa3\x5e\xbc\x67\x89\x05\xe1\xda\xec\x55\x86\x26\xeb\x5f\xea\xec\xdb\xe7\x25\xcc\x0f\x8b\x72\xfa\x15\xfd\x4b\xc7\x18\xeb\x42\x81\x84\x65\xcf\x31\x3b\x3e\xc7\x53\x61\x77\x5b\xb2\xe7\xc1\xad\xdc\x56\x02\x29\xf0\xef\xc3\xd6\x37\xb3\xa1\xa4\xe5\x76\x53\x4d\x13\x29\xd1\x9f\xe8\x50\xea\x98\xca\x95\x58\x73\x0e\xf3\xbf\xc3\x65\x5a\x69\x4b\xa6\x74\xc9\x99\xcb\xee\xdf\x7f\xd0\xf3\xe0\x7d\xa7\xe8\x45\xa5\x2a\xb1\xa7\xa7\x70\xcf\xcf\x81\x8e\x33\xb7\xb0\x7a\x8d\x8a\x1f\x59\x44\x45\x59\xed\xa7\x26\xee\x28\x02\xee\x05\xa5\xed\x7e\xa1\x56\x54\x31\x39\xe0\x67\xa4\x84\x3c\xa6\xf8\x24\xf8\x8a\xa3\x56\xac\x46\x59\x9a\x54\x49\x91\x89\xa3\xbc\xe0\xec\x40\xfa\xff\xe9\x4e\xb9\x67\x5d\xb9\x4e\x36\xb1\xa8\x6a\x53\x4e\xaa\x9c\xa4\xe3\x27\x0a\x58\x60\x7c\x5c\xbb\xb4\x95\x74\x95\xfe\x0e\x99\xed\x27\x53\x95\xf2\x7e\xe2\x00\xa6\x3c\x24\xcf\x18\x96\x7b\x47\x96\x7f\x1b\x01\x39\xa6\xd7\x75\x2c\x8b\x28\x5d\xbf\xa9\x1a\x67\xe0\x70\x04\xdf\x33\xf1\x2b\xf4\x58\x0c\x40\x13\xec\x9e\xec\x87\xc6\x27\xad\x2a\x8b\x99\xf1\x21\x83\x34\xc7\xfb\x2d\xf7\x5c\x23\xd4\xa0\x5e\xcd\xb0\x30\x89\xaf\x37\xe2\x01\x42\x32\x84\x8f\x1b\x1f\x93\xe5\xf8\xdb\xe5\x60\xe8\x74\xa6\x64\x91\x57\xfe\x60\xb7\xf1\xb0\x98\x63\xd9\xb8\xe2\xe7\x17\xbb\x79\x38\x5a\x8b\x92\x44\x85\xd0\x1c\xab\x08\x01\xb2\x79\x97\xdd\xc2\x8e\x27\xae\xae\x81\x37\x76\x46\xbd\xbd\x33\x4d\x76\xda\x42\xd7\x3e\x0c\xe7\xc3\x86\x53\x74\xed\x54\x55\x64\x4b\x91\x86\x06\xe9\xda\x2e\xd5\x26\x85\x3f\x73\x0e\xa3\xca\x6e\x74\xaa\xe4\xf1\x2f\x2a\x51\x95\x3f\x99\xd6\x4d\xb4\x1d\x2b\xf8\x06\xf0\x5b\xa9\x6c\x3c\xea\xea\x56\x76\xd5\x26\x1d\x2f\xca\xc0\x82\x5b\xc2\xe0\x91\xa8\xe3\xdb\x66\x6c\x88\xae\xef\xd9\xd2\x27\x91\xa6\xf1\xc9\x54\xac\xb7\xa2\xf1\x84\x34\x11\xdd\x03\x43\xdc\x7c\x5b\x29\x2f\xdf\xd6\x6e\xa5\x69\xc2\x90\x96\xe8\x25\xfb\x71\x70\x42\xd5\x9d\xf3\x71\x9a\x16\xa3\x8e\x67\x1f\x40\x41\x85\x8f\x1b\x61\xf0\xc2\xa1\x2e\x75\x4a\xdb\xbc\x80\x5a\x67\x9b\xe1\xec\x97\xdd\x9c\xb0\xaf\x15\x99\x81\x34\x5e\xb6\xae\xbd\x32\xce\x29\xf5\xe7\x73\xce\xa8\x25\xb3\x43\x93\x0d\x48\x12\xaa\x7a\x72\x58\x36\xfe\x01\x2c\x76\x85\x8a\xee\xd6\x83\xf3\x5d\xaa\x29\x21\xc4\x3f\xad\x4a\x24\x23\x13\xc7\x96\xf7\xc7\x9a\x3e\xb4\x58\xbf\x79\x1c\xa5\x88\x62\xcc\x31\xac\x84\xb7\xe9\x2d\xf3\xb1\xd3\x87\x58\x35\x89\x4c\x0d\x24\xbf\x5c\x8c\x76\xda\xb1\x07\xe6\xff\x43\x21\xc3\xb2\x1d\x58\xc6\xd8\x6a\xf1\x94\x57\xac\xf6\x1e\xfb\x99\x5d\x8d\x72\x3b\x98\x55\xa5\xd9\x1d\x3d\xbf\x10\xc1\x96\x52\xd9\x69\x2e\xb8\x06\xbe\x27\x95\xc9\x6f\x16\x8e\x0c\xb7\xc0\xe0\x73\x6f\x29\x3c\xf3\xad\xc6\x2a\x4a\xd7\x38\x36\x9c\x6c\x4b\xb7\x40\xc7\x09\xe0\x34\xc3\xaf\x6a\x1e\xbe\x16\x9a\x38\xea\x97\x99\xaa\x96\x4e\xf5\x2a\x31\x6d\x74\xd0\x1c\x7a\xb1\x3b\x36\x2b\x62\x6f\xec\x78\x54\x9e\x15\x76\x5a\x45\x2e\xe4\xa2\x1b\xa3\x5f\x96\xd5\x7b\x03\x4f\xad\x3b\xd2\x48\xc9\x0f\xbd\xd8\x35\xe5\x20\x82\xb7\xb1\xe3\x7c\x42\x0d\x50\xe0\x0f\xed\x4e\x9a\x0d\x23\x31\x63\x69\x6b\xfe\x7a\xf8\xda\x0f\xcc\x77\x57\x92\xd4\x79\x6e\xd7\x78\xf8\xb2\x71\x7a\xfe\x03\xa1\x41\x96\x79\x51\xce\xad\xf0\xb0\x50\xcc\xde\xc0\xe7\xb0\xb4\x32\x82\x86\xf0\xf1\x5f\x2a\xc1\xcb\x23\x53\xa9\xf2\x28\x53\x37\xce\xba\x91\x5e\x40\x1e\x8f\x8f\x5b\x1c\x9b\xba\x85\x99\x34\xd8\x97\xdf\x55\x91\xdd\x77\x5b\xf1\xb6\xbc\xec\x93\x1b\x69\x28\x7a\x08\x42\x4c\xa7\xdb\x11\x66\xfa\x93\xae\x04\x65\x92\x3c\xf6\xe3\x1b\xf1\x3b\x13\xdc\xf8\xa4\x4d\x5a\x60\xd9\x64\x63\x0b\xa7\x4e\x84\x9c\x37\xc0\xd4\x60\xda\xc3\xd4\xa3\xfb\xa7\xdb\x7d\xbf\x97\x33\xdf\xe7\x04\x28\x0f\x99\x2c\x1f\xab\x88\x7f\x94\x4e\xf2\x8e\x6f\x30\xbb\x4a\xb3\x9c\x8f\x95\x44\x64\x91\x0e\x18\x0a\x01\xe7\xfb\x4d\x2d\x6d\xfb\x66\xc3\xd0\x87\x64\xc6\x59\x39\x15\x41\xec\x65\xcd\x55\x7c\x43\x57\x49\x1a\x3b\xd9\xfe\xfd\x70\x2a\xed\x78\xfc\x81\xcd\x49\xc5\x7d\xc0\xd7\xa2\x4d\x1c\xad\xd8\x19\x55\x7e\xba\xa3\x7c\x83\x40\x92\x01\x70\x78\x56\x51\x61\xcc\x60\x00\xae\xe6\xbe\x7d\xbc\xa0\x5d\xa0\x8a\x3a\x1f\xab\xc1\x4a\x3e\x4f\x19\xee\x03\xb1\xe6\xfb\x98\x94\xc8\xb7\x4f\x2a\x75\xf7\xcb\x2e\x4c\xca\xec\x24\xb3\xb9\x4d\x8a\x1d\xfe\xe7\x6f\x28\x35\x89\x3b\xba\x24\xb7\x67\xc3\x57\x9c\x87\x5f\xe9\xf9\x40\x88\xad\x4b\x85\x97\xa1\x1a\x7e\xb3\x28\xb4\x83\x9d\xd5\x4e\x84\x5d\xfe\x16\x3d\x4d\x14\x49\x50\x5e\xe5\x63\x0c\x1a\x2c\x54\x53\x04\xb2\x58\x1f\xe1\xb4\x8f\x44\xeb\xaa\x52\x9f\xde\xde\x7b\x4a\xf9\x43\x24\x26\x09\x23\x13\x3f\xa5\x1a\x3b\x95\xca\xf7\x9f\xd2\x7a\x8b\x9d\xf8\xed\xa0\xf3\x4b\x02\x92\xfd\x94\xbe\x0f\x2f\xe0\x0f\x03\x0d\xd0\xc0\x2e\x04\x51\x3a\x8b\x6c\x21\xfd\xbf\x12\x90\xc3\xa9\x6b\x1e\xf5\xfd\x5f\xd3\x86\xe9\x92\x62\x9a\x89\xe4\xfb\xa9\xa9\x16\x3e\xa1\x89\x86\xe5\xfc\x2a\xc4\x19\x95\x7c\xcc\xcb\x32\x1a\xb5\x5f\xd7\x95\xc0\x87\x06\xb9\x8d\xe3\x7c\x67\x75\x07\x18\xa9\xec\xad\x88\x91\x21\x7d\x99\x78\x70\xa7\xe8\x76\xf0\x16\xc1\x9b\x71\xd9\x4f\x95\xbf\xf0\xe7\x03\x4f\x31\x7a\xbb\x85\xc6\xdf\x4d\x27\x45\x34\x8e\x72\x71\xeb\x93\x2e\x10\x1f\x8b\x9f\xd7\xae\xfc\xa3\x34\x2b\x76\x29\x0e\xed\x8f\x94\x47\xe3\xf7\xf5\x23\x3d\x5f\xb3\x18\x62\x84\x43\x72\x12\xdf\x28\xf3\x63\xa5\x8a\xf6\x68\x4f\x69\xe2\xeb\x6a\x4e\xbe\x9e\x17\x76\xfc\x98\xd2\xda\xe3\x75\x19\xe1\xdf\xfb\x74\x8b\xc8\x4f\x76\x91\xe1\x03\x66\xe2\x35\xbc\x23\xe0\x17\x73\x1b\x2a\x77\x87\x58\x3c\x48\x4a\x97\x03\xa5\x3b\xf6\x1e\x1e\x1d\x70\x89\x4b\x6a\xb8\x7c\x32\xf5\x0a\x9f\x2c\xba\x88\x9d\x85\x95\xa1\x45\x0a\xdd\x93\xc4\x4f\xb5\x30\x92\xaa\x38\x31\x4b\x27\x36\x8b\xd7\x49\x71\x04\x31\xcf\x4d\x65\xb1\x89\xb0\x96\x05\xbb\xbd\x21\xef\x81\xa5\xbf\x45\x58\x3f\x32\xdf\x7b\x53\x1f\x80\x9d\x50\x66\x13\x27\x49\x6c\x1d\x41\xc7\x1b\x2c\xe1\xcb\x9f\xc0\xa3\x40\x11\xeb\x08\xfd\x86\xc8\x15\x55\x83\x1d\xc5\xd9\xdb\x00\x5b\x70\x5f\xdb\x36\x6a\xda\xb2\xea\x8e\x2f\x13\x5d\x05\xd1\xf6\x0f\xa6\x0a\xaf\x7d\x1b\x3e\xc1\x62\x82\xa1\x84\x41\xb6\x83\x38\xed\xe4\xed\xaa\x85\x00\x69\x23\x24\xd6\xf1\x1e\x4f\x21\x3b\xe6\xcf\x23\x74\xf7\x65\x20\x11\x9c\x7a\x47\xe9\x43\xbd\x3f\x55\x24\xea\xb3\xc1\x23\x6e\x9c\xae\xcc\xfa\x1a\x3c\xb7\x13\x20\x03\xdf\x0d\x06\xb4\x68\x0d\x7a\xbc\xfe\x5e\xcb\x3e\xf6\x5c\x77\x60\x8b\x2c\x8d\xc0\xfc\x94\x08\x5c\x69\x13\x5f\x54\x51\x0b\x04\x3a\x45\xe9\x0b\xb3\x92\xd9\xb2\x7c\xd2\xe6\xbc\x3b\x8c\xd3\x74\x0c\x26\x01\x26\xd1\x1c\x02\x6a\xe1\x0f\x7b\xc6\xcb\x7d\x85\xe4\x2e\x97\xb9\xed\x28\x11\x08\xa6\x5a\xf1\x89\x42\x68\xca\xa4\x8a\x36\xc5\xc3\x4a\x72\x5a\x85\x15\x5f\x50\xf1\xf6\x60\x68\xf7\xf8\x56\x92\xeb\x34\xab\x10\x06\x3d\xa0\x72\x99\xc8\xbb\x57\x17\x8b\x54\x69\x37\x6a\xe5\x28\xfb\xcc\x32\xa6\xeb\x74\x69\xab\x3c\x0c\xf3\x1f\x0f\x1a\xcf\xec\x09\xdd\x4a\xca\x74\x57\x34\x52\xb1\x67\x15\x7e\x66\xab\xd1\x45\xbf\x6f\xa1\x9b\x97\x63\xa5\x4c\xfa\x6b\x81\xaf\xfb\xfd\x9a\xda\x5d\xc3\x74\xd5\x66\x76\x80\x00\x0f\x6f\x17\x44\x49\x27\x74\xe6\xca\x69\xc0\x23\xf8\x18\xbb\x22\x06\x76\xa7\x57\xc3\x4d\x26\xa0\xa8\x08\x7d\xa0\xa3\xe4\xf2\x25\x59\x34\x19\xb4\x94\x90\xfe\x62\x12\x6a\x31\x98\x73\xf8\x7a\x2c\x7b\xb7\x95\x0f\xd2\xa4\x2c\x72\xa5\x78\x74\x95\xfa\x1f\xf9\xb8\x11\x9b\x7d\xed\x6b\xdd\x62\x44\x26\x66\xbe\x29\x02\x6d\xa9\x7c\xdc\xe2\x6c\xbc\xd4\x5d\x4e\xab\x70\x0e\x7c\xb7\x97\x9d\x96\xab\xd2\x75\x75\xde\x7c\x13\x93\xc5\x91\x21\xec\x87\x4d\xc8\x9c\xfe\xb0\xd3\xea\x7f\x4f\x57\xa9\x6c\x3e\x49\x93\x6a\x34\xbe\xe4\xe3\x97\xc0\x27\x6a\x17\xda\x0a\x66\xe6\xd5\xd2\x8c\x4d\x16\x71\xc7\x22\x4b\xfe\xa8\xf8\xf0\xed\xb6\x5a\x75\x3e\xb6\xb1\x33\xa6\x13\x30\xd2\xd7\xc3\x8e\xb9\xf4\xde\x66\x99\x29\xc0\x80\x42\x1c\xc2\x54\x72\x3e\x51\xcd\x54\x65\x12\x15\x76\xb0\xcb\xe3\x53\xdb\x7a\xca\xd9\x01\x10\x28\x0b\xce\x05\x8a\xda\xce\x84\x5c\x8c\x5a\xee\xe2\xc4\xd6\xf0\x13\x8e\x37\xb0\x6c\xde\xc6\x1a\x26\xed\x84\x2e\x28\xb7\xe1\x28\x21\xc7\xd3\x59\xd5\x63\xf7\xbd\x40\xf3\xec\x01\xeb\x22\x67\xbf\x41\x4f\x46\xfc\x6b\xda\x84\xef\x26\xe9\x8a\x11\x5d\x48\xb1\x19\xeb\x28\xff\xb1\xa7\xb5\x53\x42\x66\xf3\xdc\x69\x05\x88\x1e\xa9\xdf\x85\x9b\x9d\x62\x82\x43\x4d\xd6\xcc\x4c\x5d\x49\xd6\xe7\x43\xd7\xf4\x76\xbf\xbd\xe7\x17\x95\x17\xcd\x0a\x4d\x1d\x57\x84\xf5\xcd\x9e\x27\x5b\x1a\x1a\x16\xba\x65\x32\xb1\x19\x0d\x58\xce\x59\x9c\x8c\xbc\x93\xbd\x3a\xa6\x88\xc1\xf2\xc7\x08\xd6\x31\xc3\xaf\x29\xde\xfc\x35\xd5\xab\x85\x02\xa1\x82\xf7\xce\x60\x5b\xe4\x93\xb6\x3c\x60\x2d\xcd\x62\x2c\x9e\x0c\x71\x04\xca\xd0\xe7\x48\xdb\x27\x8a\x68\xc0\xd2\x20\xd2\x8d\xee\x2f\xec\xb4\xea\xc4\x2d\x46\x51\x52\xe5\xdb\x73\x2a\x9c\x3f\x4a\x6b\xae\x23\x7f\x3a\x17\xea\x9f\x4c\x55\x5f\x03\xe8\x00\xd2\x6f\xfa\x70\xa9\x9d\x68\xcf\xac\xf9\x99\x84\x4e\x79\x52\xc6\x60\x8d\x96\xf0\x70\xd2\xf4\xfc\x62\xb7\x18\x99\x02\xfe\x2d\x18\x87\x7b\x36\xbc\x40\xd4\x59\x5a\x67\xd0\x24\xf0\x18\xe9\xf7\x20\xb8\xf8\x6a\x4f\xb9\xc1\xfc\xaa\x52\x0d\x3b\xaf\xb6\xac\xdc\x26\x83\x1d\x8a\x8e\x82\xa0\xc7\x19\xe6\x7c\xf3\x25\x4f\x80\x5d\xf2\xe5\x1f\xe5\x58\xca\x19\x2e\x3f\xa8\x36\xb6\x74\xb5\xec\xe7\xd6\x08\x1c\xe4\x24\xcb\x5d\x6e\x02\xad\x4a\xec\xfd\x77\x35\x6d\x37\xcd\x26\xf2\xa0\xb0\x70\x73\x53\x32\x9f\x38\xe6\x2c\xc9\xe0\xef\xf0\x5a\xd2\xd5\x34\x73\xa8\x0c\xca\x53\x08\xe9\xd8\xab\x0b\xf3\xf7\xac\xf2\x50\xba\xa7\xe6\xe5\x9b\x8a\x1c\x16\xdb\x61\x54\x25\xea\x22\x01\x88\x27\xfb\x7d\xfa\x6b\x3e\xae\x73\x55\x5f\xef\xdb\x6c\x98\x53\x5e\x88\x6f\xbb\xa1\x4d\x7a\x3f\xc2\x53\xfc\x22\x1f\xc1\x2a\x45\x1f\x97\xe1\x48\xa9\x30\x7e\x87\xb6\x83\x2f\xaa\x5a\xee\xdf\xdf\xcd\x47\x36\x5e\x56\x8e\xc3\x67\x15\x53\xfb\x6c\xcb\x2f\x3c\x57\xcd\x04\xab\x2a\x71\x53\xad\x86\x36\x75\xab\xf5\x28\x4d\x06\x26\xc7\xda\x25\xe6\xdf\x78\x15\x7c\xa6\x34\x59\x45\x1f\x8a\xb4\x0b\xa4\x59\xb4\x7a\xea\xd2\x2b\xfa\x8c\x7a\xa7\xe3\x71\xc9\x0e\x0d\xd5\x43\xaa\xe9\xc0\x60\x08\x9c\x53\x22\xf3\xf7\x6b\xe8\x96\xb5\x03\x36\x24\x65\x89\xf6\x9a\x3b\x81\x36\x10\x48\x87\x86\x57\x14\xe1\x71\x69\x52\xd7\x17\xea\xf8\x9a\x3e\xf5\x32\x3b\x75\x0e\x54\xd8\xf8\x58\xa5\xff\x5f\x5d\x78\xfe\xb9\xe7\x0f\x1d\xfc\xbb\x55\x52\x83\x09\xf9\x86\x32\x74\xfa\x29\xf2\x6b\x21\x06\xd3\xec\x62\x35\xe4\xc0\x03\xea\xf7\x61\x50\xe4\x5a\x59\xaa\xed\x93\xeb\x59\x18\xa5\x80\xe7\xa1\x17\x8a\xdd\xee\x83\xe9\xf6\x9f\x63\xba\xf4\x9b\x34\x78\xa5\x9b\x47\xc9\xca\x5e\x22\x26\x92\x03\x94\xaa\xd7\x87\xc0\xf1\xd3\xc0\x63\x9b\x37\xe1\x0a\x88\x68\xf1\x08\x45\x91\xc8\x51\x37\xe8\xb5\x61\xf4\x9c\xe4\xf7\x8d\x2c\xe0\xff\x44\x48\xe8\xa4\x60\xaa\xb5\x08\xdb\xca\xf5\xa9\x92\x2b\xe2\x02\xb8\x28\x3b\xfa\xc2\x25\x67\xe6\xc8\x42\x2f\x05\x3e\x23\xba\x40\x59\x3a\xbe\x6a\xdb\xc6\x97\xea\x95\xe0\xa5\x03\x4b\xd5\xac\xd8\xeb\x93\x29\xe8\x06\x02\x22\xba\xaa\x32\xb4\x9f\x28\xab\xbc\xff\x79\xea\x95\x2e\x3e\xa1\x17\xc3\x5a\x4a\x7a\x14\xb0\xc4\x3c\x9b\x45\xe3\xf9\x3b\xe7\x68\x1f\xfd\x42\x57\x1e\x30\xc8\x75\xac\x75\x12\xf8\xb7\x54\x74\x86\x99\x49\xa4\xf0\x2a\x30\x96\x52\xe2\xdb\x6c\x6c\xad\xcf\x2f\x76\x27\x36\x49\xf2\xf5\x78\xd5\x24\x91\xe1\xd5\xce\xcd\x0a\x2f\x01\xb3\xd9\x28\x2b\xec\xdf\xdf\x35\x61\x11\xad\x46\x79\xa1\x98\x29\x57\x54\x55\xe1\x8a\xb7\xd5\x2c\x93\x28\x1f\x55\xf1\xe3\x8c\xff\x53\x84\xc1\x08\xff\x99\x0a\x28\x76\xac\x2d\xae\x4f\xc5\x5a\x54\x54\x4b\xd3\x61\x57\x9d\x09\x54\x7b\xb5\xaa\xa2\xac\xa5\x59\xc6\xc2\xe9\xb5\x46\x29\x2e\x0f\xab\xfa\x5e\xbd\x3c\x47\x17\x00\xa8\xfa\x87\x6d\xa2\x99\x61\x9c\xe6\xd2\x1e\xed\x3a\x34\xf6\xef\x77\xfb\xb2\x47\xf3\x97\xe3\x94\x9a\x60\x77\xea\xd0\x0d\x1d\x56\x22\xee\xa4\x60\x57\x46\xa4\xb9\x0f\x0b\xaf\x58\x9a\xb2\xe8\xc2\x9d\x1c\x87\x57\xf2\xaf\x37\xc5\x15\x76\xa5\xa3\x58\xe3\xf5\x4e\x82\x5a\xc2\xb2\x9e\x3f\xd5\x79\x49\x66\xd1\x35\xca\xd8\xb1\x33\x5c\x0a\x3c\x5f\x60\x3b\x84\x7c\x80\x68\xc1\xcc\x13\xd4\x83\x39\xdd\x9c\xfc\x83\xa9\x6a\x4c\x03\x3e\x81\x95\xf9\x4f\x69\xc4\x52\x6c\xf0\xf8\x93\x1b\xb4\x34\x20\x87\xdd\x09\x15\x63\x69\x08\xa3\x29\x8c\xab\x84\x94\xbc\x7c\x5c\xed\xb1\xbb\x7b\x1a\xe1\x54\xd2\xc3\xff\x09\x9c\x4c\x85\x54\x45\x4f\x50\x38\xc2\x4f\x2b\x89\xba\x41\x14\x16\xd5\xb0\xdb\x41\x38\x89\xb8\xfd\x74\x9c\x42\x04\x82\x17\x0c\xf1\xdb\x34\x6d\xf9\x98\xfb\x6a\xa4\x86\xa3\xf0\x8c\xb3\x0d\x92\x60\xb5\x6f\xc6\x76\x68\xe2\xe8\x75\x07\xdc\xb3\x87\x3a\xfd\x94\xf8\xa9\xb7\xb5\xb3\x24\x05\x4c\x4e\x3c\x66\xcf\x9d\x88\x62\x37\xff\xb8\x96\xa9\x29\x0b\xb2\xad\x5c\xf4\xc0\x92\x0b\x06\x21\xa3\x88\xe1\x71\x0b\x5f\x51\x23\x9d\x8a\xd6\xb1\x4f\x73\x4c\xbe\x22\xe3\x19\xbb\xef\x55\xd5\xbe\x7a\x55\x21\xbb\x23\x6b\x06\x24\x52\x25\xe2\x64\xf7\x69\x50\xf0\x71\xe0\xd9\x58\x89\x2d\x49\x85\xc2\x0b\xb2\x9c\x50\xdd\xa6\x33\x3d\x0f\x1d\x5c\xd0\x0a\xbc\xe7\xda\x30\xb1\x81\x1d\xa7\x61\x66\x04\x80\xc4\x5f\xb2\x95\x17\x9f\x28\xa1\x8c\x32\xb7\x4f\x78\x3f\xa7\x27\xa9\x75\x16\xb8\xc7\x27\x58\x74\xb1\x68\xce\x62\x08\xea\x18\x10\x2d\x3f\x5f\xd9\x50\x9a\x75\x68\x8f\x43\xd0\xb3\x13\xfb\x27\xd6\x6c\x16\xc5\x72\xf4\xb4\xc3\x82\x2f\xee\x04\x7e\x84\xfb\xdc\xdd\xab\x9e\x94\xf4\x3a\xd2\xe6\xe4\xc2\x2f\x2f\xe7\x7a\x4f\x6d\x75\x5d\xd2\x46\x96\xf7\xf8\x85\x2a\xff\x63\x13\xc7\xc4\x82\x02\xb2\x8f\x40\x05\x49\xe9\x56\xa0\xca\x78\x97\x95\xc7\x59\x92\x4f\xa2\xcc\x84\x30\xc6\x11\x17\x5f\xba\x25\x67\xd1\xe3\x14\xb3\x1f\xa5\x05\x59\xba\x30\x9e\xf1\x24\xbb\x91\x1d\x57\x2f\x22\x32\x89\x12\x2e\x3d\xa1\x84\x4b\x4f\xb4\x12\x89\xd6\xd2\x6c\x65\x4e\x55\xca\x00\xd3\xa3\xc5\x96\x25\x49\xa4\xbf\x81\x16\x03\x44\xac\x93\xa9\x7f\xfa\x9d\x8d\xe6\x42\x7c\xb0\x1b\xa6\x45\xc1\x25\x43\x2d\xec\x28\xa0\xe4\x97\x7d\x41\x3d\x4a\x55\x56\xed\x7b\xee\xee\x20\x03\x67\x23\x34\x6d\xcd\x03\x14\x48\x1c\xd2\x5a\x94\x2b\xc2\xcc\x84\x2b\x83\x74\x0d\x3f\x2f\x36\x4a\xca\x50\xe8\x4c\xf5\xfb\x9e\x8c\x33\xcc\x4c\x51\xa2\xd4\x56\x7d\xc0\x55\x19\xaa\x0f\xf0\x49\x9b\x2e\xb4\x19\xd8\x57\x9d\x34\x09\x74\xa1\x20\xa0\xc7\xc7\xb5\x65\x3d\x8c\xed\x9e\xea\xdf\xd0\x71\x7c\x49\xf1\x48\xaf\x53\x34\x06\x66\xd2\x66\x40\x6b\x20\x9f\x60\x85\x10\xb1\x33\xb5\xfc\xb0\x9c\x9d\x14\xc4\xb4\x45\x3c\x7c\x3d\xb6\xde\x9c\xfa\xee\xd1\x1f\x06\x7e\xe1\xdf\xd3\x68\x84\xd9\xb7\xaf\x5b\x3a\x3c\x07\x2b\x3a\xc8\x22\x7c\x3c\xf5\x38\xe9\x1a\x94\x04\x67\xfc\x68\x44\xcb\x30\xb6\xf0\x8f\x03\xdf\xc2\x7d\xc3\x35\xf7\x4c\x62\x93\x24\x36\x03\x11\xc9\xf5\x6f\xa9\x0e\x6b\xe5\x10\xf2\xd7\xda\xe2\x60\xb0\x4e\x2a\x33\x22\x40\x48\x77\x8f\x6d\xe5\xcc\x54\xb5\x79\x9d\x57\x31\xdd\x49\x6d\x13\x6d\xfa\xb1\x45\xd6\x8a\x35\x10\x72\xf7\x88\x21\x99\x78\xc4\x1e\x39\x94\xc2\x3a\xb5\x65\x77\xe7\x1d\x2c\x37\xfc\x69\x55\xe7\x49\xa2\x70\x84\x3c\x06\xaf\xe9\x18\xdd\x38\x1f\x4f\x95\x04\x43\xba\xca\x74\x27\x60\x0e\x37\x14\x29\x9a\x59\x06\x6c\x67\xaf\x28\xac\x43\x33\xb6\xe0\x3a\x21\x51\xb8\xee\x5d\x23\x5f\x7d\x92\x48\x5b\x78\xc2\xdb\x36\x14\x7b\xe3\xfc\x17\xd2\xf6\xc7\x76\x10\x91\xbe\x9c\x2a\xb9\xc2\x97\x46\xa4\xd1\x95\xe9\x8f\x99\x44\x03\xaa\x5f\x61\x1f\x62\xe5\x06\x36\xc1\x0b\x3a\x2f\x2c\xf8\x42\xa1\x23\x9b\x7f\x84\xc4\x02\x43\xfe\x5d\x55\x41\xfc\x64\xaa\xc5\xbb\xfd\x20\xca\xc3\xb2\x28\x62\xf6\xf1\x68\xd5\x54\x7d\x52\x99\x8b\xa1\xdd\x77\x87\x12\x36\xfb\x0d\xec\x4a\x7c\x12\x28\x4d\xf6\xf7\x55\x7f\xfc\xfb\x81\xd2\xfc\xea\xa0\xbf\x83\x4f\x7a\xaa\x98\x3b\xa1\xef\xef\xe8\xa4\xf5\x1a\x00\x79\xf1\xf9\x6d\x68\x54\xef\xeb\xa6\xf1\xfa\x78\x12\x85\x02\x3b\x20\x07\x60\xd8\x81\x4f\xb4\xc4\x5d\x9a\x55\x5b\xf8\xae\xea\x91\x61\xfc\xc2\x7c\x1c\xe0\xdb\xf9\x40\xa1\x96\xd7\xf4\xc0\xbe\x86\x80\x09\x3a\x13\x9f\x28\x51\xe4\xf3\x58\x09\x58\x07\x76\xaa\xe6\x4f\xb3\x69\xb0\xca\xe5\xd7\xa2\x81\xcd\x27\x99\x28\xf9\x8a\x4b\x4b\xc7\xe9\x8f\x1f\x71\x63\x76\x6c\xa2\x58\xc2\x0d\xa6\xf8\xe3\x01\x0b\xdf\xbf\x05\xc1\x5c\x8e\x8a\xc2\xb1\x85\x9d\xa7\xaf\xab\x52\xdd\x52\x41\xeb\x89\xc6\x30\xad\xa2\xb2\x6a\xff\x4b\xe3\x68\x60\x1c\x02\x2f\x43\xb3\xe3\x54\x06\xff\x6c\xaa\xb2\xd4\x33\x6d\x5d\x2d\xcb\x26\xce\xb1\x12\x0b\x42\xa3\xd0\x1a\x85\xa2\x4e\xca\x2c\x1c\x99\xdc\x66\xcc\x08\x06\x73\x0b\xb8\x37\x1f\x37\xd8\x7c\xfb\xf7\x77\xc7\xf6\xf5\xd7\xd3\x61\x94\x66\x49\xaa\x9a\xd8\x38\x23\xe2\x13\x5d\x51\x8a\xa8\x13\x78\xae\x7a\xe9\xa8\xd0\x71\x53\x95\xd4\x71\x3c\x65\xf5\x86\x72\x12\x38\x82\xcc\x82\xf7\xd8\xe0\x2b\xf5\x44\x77\x71\x51\xa6\x35\x5c\x4b\x30\xd6\xde\x0a\x74\x05\x9f\x3e\x2f\x80\x76\x35\xcc\x70\xcc\xfa\xd5\xbc\x1f\x50\x36\x8d\x60\xeb\x2a\x92\x5a\x64\x08\x3f\x50\xb6\x89\xdb\xd0\x3e\xeb\xcc\xff\xf6\x2d\xf0\x52\xfc\x0e\x90\x0b\xfe\xc4\x54\x09\x6f\x5c\x43\x4e\x8c\xa5\xe0\x53\x0a\xd4\xf1\xf1\xbb\x54\x03\xc4\x53\xba\x82\x1d\x4e\x18\xb2\xd5\x63\x67\x1a\x2f\x40\xf4\xad\x2d\x6d\xa9\x7f\x03\x20\x82\x53\xb0\xac\x9e\x36\xde\xd2\x6f\x51\x8f\x23\x1e\xc1\xe5\xb6\xf2\x5c\x38\x32\x51\x56\x0f\xda\x15\xbd\x63\xd3\xab\x07\x9a\xc2\xc4\xe9\x50\x11\x46\xd0\x84\xc1\xc7\x0f\xeb\x34\xec\xdf\x7f\xa0\xbb\x6f\x81\xea\x0e\x58\xbc\x77\xf6\x3c\xc7\x59\x47\xab\xdb\x55\xdb\x0b\xdb\x9d\x0b\xd8\xa8\x7a\x99\x99\xe6\x88\x31\xf2\x86\x52\x32\xdf\xb6\x21\x04\x45\x47\xa6\xe0\x56\x74\xae\x70\x07\x1e\xac\xbd\xe4\x9a\x2d\xd2\xb2\xa0\xe6\x16\xda\xa2\x39\xcf\x08\xbc\xa4\xfb\x79\x2c\x30\x58\x53\x8e\xbb\xa6\xf8\x22\x42\xa4\x04\x3c\x0d\x92\x23\x7c\xbc\xb1\xc7\x37\x01\xf1\x1c\x77\x65\x39\x25\x89\x4f\x77\x24\x64\x1d\xb9\xf0\x7e\x99\x47\x89\xcd\xf3\x31\x87\xa4\xe2\x76\xd7\x71\x7e\xce\x67\x3d\x0b\x33\x29\x6c\xb6\x1a\xd9\xb5\x5a\x35\x00\xdd\xae\x02\xc0\xcb\x1b\x8b\xab\x29\xcc\x00\x8a\xa8\xc0\xd1\x30\x14\x79\x38\xed\x51\x44\x9a\xf9\xb5\xb0\xb2\xfa\x4a\x50\x71\x3f\xa3\x59\xcf\xc7\xb4\xa7\x49\x80\xe9\x07\x87\xcd\x4d\x26\xb0\x34\x50\xaa\x77\xa6\x4a\x3d\xfe\xa8\xb6\xbe\x3a\xdf\x20\xe3\xbe\xf2\x4a\x37\x34\xe3\x89\x35\x25\xdd\x15\xc2\x6a\xae\xa4\xf0\x89\xd2\x38\x65\x6b\x58\xf2\xa8\xd0\x72\xb3\xf4\xd2\x40\xb6\xbb\xaa\x3a\x5f\x8e\x60\xef\xe0\x7f\xa8\xd9\x2e\xa6\x51\xfc\x88\x6a\xb2\xbf\xae\xdf\xfb\x2d\xb5\x60\xbc\x43\x13\x10\x10\x21\x9e\x0c\xd2\x96\x3d\x4a\x7c\xe4\xbc\x16\x6f\xbd\xa0\x65\x82\xdf\xa3\x39\x88\x74\xee\xf7\xb1\x5d\x21\x33\xbf\xd9\x28\x65\xbe\xb0\xd0\xcd\x0b\x9b\x45\x71\xf4\xba\xad\xa9\xa9\xfb\x0e\x9d\x4d\x87\xd5\x1b\x5b\x24\x66\xce\x33\x14\x8f\x63\xfa\x00\xec\x38\x3a\xf5\x7e\x92\xe7\x55\xb5\x88\x79\xe7\x02\x9b\x78\x81\x57\xd2\x00\xd9\x5d\xfd\x26\x96\x2c\xd6\x51\xc7\x96\x79\x0a\x4f\x06\xd1\xec\x39\x2c\x60\x8e\xea\xe2\x24\x6a\x20\xb1\x86\xa8\xe8\x09\xca\x90\x45\xe3\x8b\x1e\x0d\xea\x7b\xa7\x34\x7b\xf5\x84\x6b\xf8\x1a\xd8\x38\xcd\x24\x56\x70\x2d\xb0\x5e\xe0\xe8\x98\x6a\x23\x9b\x98\xac\xc0\x44\x57\xfb\xe0\x6b\xca\xcf\xe4\xb5\x56\xd0\xcb\x26\x85\x68\xda\xb3\x91\xbc\xee\xf2\xf9\x9b\x56\xf3\x78\xfb\x5a\x94\x17\x1d\xa5\x29\x77\x4a\x79\x78\x9e\x6a\x53\xff\xc9\xcb\xa1\xe1\x38\x5e\xf1\x29\x0e\xd6\xba\xd0\x80\x89\xdd\x6e\x23\xa5\xf7\xb3\x88\xcc\x6b\xe9\xca\x10\x4e\x00\x1a\xe1\x63\xe5\xcc\x9b\x5b\x72\x5c\xdf\xe1\x87\xfa\x2d\x6c\x0a\x58\xbb\x8f\x4d\xfd\x32\x78\x0f\x77\xea\xb8\x14\xd5\x02\x05\x20\x0c\xef\x0f\x1b\xc4\x4d\xb5\x35\xaf\x56\x59\xb2\xd1\xa9\xe1\xa7\xf8\x0e\x3e\x69\x69\x83\x3b\xa8\x15\xea\xd9\x0a\x2a\xf0\xa1\xc6\x12\x42\x60\x21\x94\x79\x21\xd1\x28\x19\x94\x79\x91\x45\x26\xa6\xcc\xde\xa1\xf2\x6e\x79\xbd\xa0\xe4\x8b\x7f\x82\x91\x88\x61\xf9\x71\x2d\x77\x4c\xb2\xa8\xa3\x46\x26\xf0\x1a\x3e\x0e\x7c\x9d\x2e\x2e\x73\xb8\x47\x82\x63\xf6\x33\xba\x44\x3e\x56\x99\xd5\xb8\x64\x36\x26\x83\xd7\xf4\x6d\x02\x64\x3f\xcc\xdc\xa0\x7e\xe1\x01\x7c\xbb\xa5\xf4\x42\x1f\x76\xa4\x76\x37\x31\xf6\xd6\x08\xd5\x34\xc7\xa4\xd8\xdc\xc2\x76\x1f\x45\x79\x91\x66\x0c\x1c\x71\x1f\x4a\xa0\x7b\x52\x5a\x4c\xf2\xc6\x65\x12\xe9\x26\x5f\x26\x21\x6a\x47\xf5\xab\x6e\xde\x0d\xb3\x68\xcc\x5c\x2d\x30\x25\x4e\xab\x90\xf7\xb8\xaa\xd0\x7e\xaf\xf6\xac\x27\xc5\xfa\x0e\xc0\x8a\xa8\x76\xbc\xa9\x3a\x2a\x2f\x2a\xdb\xc0\x93\x88\x63\xf8\x8f\x94\xb5\xff\x49\x85\x19\x5d\x0c\xfc\x2a\xd0\xaf\xf2\x98\x6a\x18\xb0\xf4\xab\x17\x83\xba\xf1\x95\x9e\x72\xe5\x03\x23\x13\x41\xc0\x03\x0a\xa2\x9c\x68\x65\x75\x9b\x78\x3c\x9d\x8d\xa7\x6a\xdd\x44\x36\xc9\x4b\xa6\x50\xf3\xc2\x1e\x28\xde\x84\xa6\x15\x51\x2b\x6f\xe6\x81\x6f\xa6\x9f\x05\xca\x9c\xe5\xb4\x46\x52\x6f\x80\xf2\x25\x13\xdb\x73\x9c\xb7\x83\xed\xc4\xff\x80\x8b\x13\x2e\x9b\xca\x7e\xa2\x38\x5e\x2e\xe3\x6a\x58\x6e\x41\x5f\x75\xab\x29\xe8\xb7\xb8\xd8\x25\x7d\x0d\x81\x25\xb5\xce\x1e\x26\xc7\x35\x5d\x41\x3e\x8b\x65\x1a\x55\x85\x77\x54\xba\x38\x49\xf3\x62\x92\x26\xb6\xd6\x2b\x34\x55\xbd\x42\x35\x21\x09\x95\xdc\x36\xbd\xe5\x29\xa3\xc8\x0b\x9b\x17\x33\x04\x0e\x82\x19\xb5\x87\x12\x70\xe0\x8c\xb3\x1b\xbe\xc8\xd8\xd6\xa3\xd7\x1d\x64\xe9\x2a\xd1\x8b\xa5\xa2\xb5\x15\x28\x29\xb3\xf3\xaa\xf8\xa9\x65\x08\xa3\xc2\x8e\xf3\x39\x8a\x7a\xf1\xaa\x59\x9f\x54\xfc\xbe\xab\x4f\x21\xd8\xfc\x43\x9d\xe2\x7e\x8c\xef\x96\xb2\x93\x72\xbd\xb2\xe3\x49\x2a\xbb\x03\x1e\xd9\x6c\x4f\xb5\xcc\xcc\x6e\xec\x71\x2d\x33\x2b\x76\xd6\x67\xa9\xc8\x51\xb0\x1c\xdd\x56\xd8\xdd\xfb\xba\xe7\xe3\x5d\xf5\xf4\xd7\xaa\x29\x1d\x5b\x5e\x5c\x9c\xdb\xae\x77\xde\xd5\x1b\x9d\x4d\x4c\x5c\xb0\x0a\xb0\x2c\x58\xac\xca\xc1\x27\xf5\x66\xc5\xbc\x1c\xdb\x2c\xdf\xe1\x43\xc7\x1f\x60\x44\x20\xf8\xb9\x1c\x28\x1b\x2f\xfc\xa6\x34\xea\x75\xbe\xf9\x92\xf3\xab\xa1\xdf\x12\xf6\xa3\x87\xce\xf3\x35\x3b\xb0\x49\xa7\x46\xac\xaf\x9e\x83\x14\x48\x5b\xb6\xdc\x32\x89\x96\xd3\x6c\x8c\x5b\x75\xa4\x0f\x55\x74\x6a\xf3\x42\xfc\xff\x57\xda\xdc\xeb\x9a\xe5\x32\x03\xf7\x43\x1e\xf1\xb4\x58\xc8\xe8\x7f\x52\xcb\x67\xd9\x74\x95\x43\x66\xa7\xb4\xe5\x55\xb7\x1a\x0b\xef\xfe\xfd\xdd\x81\x9d\xa4\x79\x24\x2d\x08\x08\xe0\x3f\x55\x35\xe7\x4f\xd5\x2b\xc5\x62\x61\x33\x02\xb4\xb1\xe1\x42\x3e\x8a\x3b\x99\x03\x9f\x35\x9c\x68\x08\x93\x7f\xbd\x9b\x5b\x23\xb7\x8b\x19\xc0\xea\xbe\x7c\xa2\x8a\x40\x66\xdc\x8f\x56\x4d\x6c\x6b\x62\xc3\xa7\x94\xd8\xf0\x29\x17\x1c\x4e\xb2\xb4\xcf\xe8\x91\xf0\xaa\xaa\x8f\xf0\xb1\x6a\xdd\xcf\x9e\x8d\x9e\xa5\x6f\x43\x61\x9c\xa9\xbf\x7c\xa2\xda\x00\x62\x1b\x8e\xac\xee\x08\xe4\x95\x56\xd6\x0c\x85\xd3\x0f\x6d\xee\xc4\x97\xc4\x1d\xd5\x83\x14\xe7\x1a\x9c\x81\x97\x16\x0e\x75\x07\x51\x1e\x96\x79\x6e\xd9\x0c\x40\x46\xb7\x1e\xea\x2d\x6d\xe3\x55\xb8\xc4\xdd\x6b\x82\xc3\xaa\x92\xdb\x99\x2f\x64\x27\x8c\xd2\xc2\xd2\x6a\xcb\x9b\xdb\x2d\xad\x92\xeb\x85\xa4\x97\xa3\x41\x19\x46\xc2\x13\x44\xc2\x7a\x9b\xde\x26\x1f\x2b\x22\x43\x96\xc6\x71\x94\x0c\xa9\xaf\x1e\x7c\x03\x14\x22\xb1\x02\xfc\x18\x93\x16\x83\xe0\x2a\xa6\x18\x9f\xd0\xeb\xe3\xbf\xa2\xd5\x8e\x3f\x3d\xf5\xfe\x54\x98\x12\x51\x61\xe8\x6e\xe9\xc3\x00\xb5\x59\x7a\x8c\x4f\x5a\x4c\xda\x5e\x46\x0d\xb9\xa3\x4c\x45\x36\x6b\xf8\xaa\xf2\xc2\x30\xab\x51\x32\xcc\x67\xb1\xe1\x61\xe8\x72\x14\xe3\x5a\x94\xdc\x2a\xc5\x2f\x9f\xff\x4a\x51\x6c\x5f\xf8\xc6\x2f\x76\x7c\xe2\x74\x47\xab\x4b\xdd\x51\xbc\xc4\x49\x1a\x47\x21\x36\x7a\x11\xef\x53\x48\x3c\xee\x0a\x9b\xfb\x6e\xe8\x38\x62\x5a\xdd\x98\x2a\x7f\xb2\x4b\x53\x9f\x62\xfc\x8b\xc6\xd6\xf2\x2c\x4b\xff\xa8\x0e\xff\xf3\x0a\xe1\xff\x91\x5e\x9f\x4f\xb4\xb4\xf6\x3e\xd7\x1d\x64\x66\x0c\x92\x25\x0b\xc2\x06\xca\xd3\xb6\x59\xe8\x93\xb1\x95\xd8\xd5\x6a\x29\xf8\xe5\x6f\xf9\x26\x30\x27\xfc\x75\x4b\x7b\x9a\x1f\x6b\x5c\x33\xe9\x0a\xa4\x31\xcf\x01\xd0\xdf\xff\xf5\x54\x69\x5c\xfd\xeb\x06\xa3\xed\xd0\x8b\x5d\x2c\x6d\x4e\xab\xf6\x8c\x12\x11\x38\x13\xf8\x55\xd0\x44\x59\x3f\xcd\x12\xdb\xa9\x2e\x0d\x21\xe7\x5d\x25\x65\x7a\xb7\xa6\xe2\x39\xb0\xbb\x15\x8a\x34\xcb\x5d\x19\x9a\xb7\xc7\xbd\x05\x4a\x55\xe3\x4d\xa4\x79\xe2\xc0\xa0\xda\xa8\x79\x98\xba\x8c\xe3\x9b\x2f\xf1\x54\x43\x96\xc8\x1e\xf9\x6d\xf2\xf1\xe3\x54\xac\x0e\x04\x3a\xa2\xaf\xe5\x13\x97\xbe\xbe\x5a\x9a\x38\x5a\x06\x85\xd9\x11\x3e\x9d\x02\xd8\x05\xd5\x69\xd1\x2f\xb3\xa1\xd4\x59\x44\x00\x84\xbe\x52\xe4\x09\xe8\x4a\x51\x35\x3b\xd6\x3a\x2c\x8a\xcc\x30\xeb\x0b\xa0\xe1\xc9\xc0\x97\xef\x4f\xaa\x49\x9b\x59\xa7\x06\x63\x45\x46\xa5\xe6\x15\x2d\xcb\xa1\x8f\x42\xfa\x59\x5a\x8c\x6c\x06\xf1\x18\xd6\xfa\xc3\xdf\x02\xa0\x78\x86\xdf\x83\x93\xd8\xf4\x4e\x99\xa8\x16\x21\x36\xbe\xe7\x5a\xf7\xaa\xc5\x38\x4e\xc7\xd4\x00\xaa\x76\xbf\xb9\x9e\xdf\xfd\xe6\x36\x9e\x70\xe0\x12\xdb\x11\x61\x85\x41\xae\x73\x46\xe5\x87\x67\x1a\xfb\x35\x99\x8e\x27\xc3\x32\xe2\x94\x8a\x2b\x57\x34\xcf\xa4\x8a\xf5\xb8\xef\xd4\x0b\x57\x1c\x04\x8e\xb9\x81\xce\x50\x27\xca\x5e\xdd\xa9\xb4\xd1\xfb\x1d\xaa\x28\xfb\x96\x2a\xf6\x40\xea\xee\x28\x76\xc0\x9d\x96\x25\xaf\xca\x8b\xd3\x04\xb8\x17\xe0\x51\xc8\xbd\xf0\x71\x03\xb6\x86\x51\xf0\x20\x5a\x8d\x06\xa5\x89\x3b\xaa\x3e\xf1\x61\xe0\xef\xbd\xe9\xad\xbd\xb8\xd8\x4d\xcb\x22\xb6\x45\xfe\xc5\x02\x1b\x1a\x6c\x5a\x2b\x46\x64\x66\xf7\xff\x71\xf6\xa7\x31\x92\x65\xd7\x9d\x18\x5e\x15\x99\xb5\xf4\xca\xee\xea\x6e\x0e\x67\x34\x7f\x4c\xe8\x3f\x84\x5b\x83\x29\x11\xb2\x20\x18\x23\xc2\xc0\x0b\x65\x25\xc9\xae\x82\x99\x9d\xce\x2a\x56\x8f\xda\x5f\xea\x46\xc4\xcd\x88\xdb\xf9\xe2\xbd\xe0\x5b\x32\x2b\xcb\xb0\x21\xcc\x87\x81\x31\xb0\x8d\x91\xed\x0f\x1a\x7b\x30\x63\x4b\xb2\x46\x02\x66\x24\x4a\x14\x29\x52\xb2\x14\x49\x8a\x22\x29\xae\xbd\xb3\xf7\xae\x7d\xdf\xf7\xa5\x3b\xcb\x78\xe7\x77\xce\xbd\x27\x32\x5e\x8d\x0d\x7f\x21\xde\x63\x57\x64\xbc\xb8\xef\x2e\x67\xf9\x2d\x38\x82\xa7\x20\x68\x8f\x82\xe3\x37\xe8\x8b\x70\xde\x7f\x43\x31\x6c\x6e\x60\xdd\x60\xef\x78\x15\x11\x2e\x52\xa9\x9b\xa3\xe0\x9b\xf6\x06\x36\x45\x94\x3e\x36\xb5\xc2\x1a\x38\x31\x1a\x37\x65\xaf\x46\x01\x5b\xe7\xab\xba\x54\x74\xb2\xd6\x6e\x29\x73\x9d\x3e\xfa\x0c\xd2\x95\x68\x78\x6e\xfd\x6d\xd5\x35\x38\xef\x3b\xf4\x79\xd9\xce\x5d\x37\x38\x28\x88\x30\x77\x43\x09\x76\x87\x34\xbc\x93\x76\xed\x54\xf5\x56\xd1\x37\xc7\xd3\xf9\xf6\xe2\x6e\x41\x5a\x7c\xa4\xf4\x02\xcd\xb2\xc9\x5c\xc7\xa5\x25\x76\x04\x84\x83\xe7\xe8\xe5\xf2\x75\x2d\x4a\x73\xd9\x30\xac\x8b\x0b\x75\xf4\x43\xa4\x68\x57\x67\x55\xdd\xb6\x49\x5e\xed\x13\x54\xc8\x60\x64\x1e\xfd\x0a\xd4\x22\x8f\x6a\x2e\xfd\xe9\xba\x66\xcf\xb2\x39\xf8\xab\xbf\xf4\x4b\xbf\x34\x45\xff\x0e\x99\xc7\x0d\x6c\x5c\x9e\x61\xe2\x7b\xc3\xf7\x6b\xf8\x0c\xa4\x2d\x9b\xc6\xcb\x96\x95\x29\xf0\x02\xef\x8e\x7b\x51\x68\xdf\x76\x85\x19\xeb\x64\x6e\x30\x04\x85\x00\xff\xf1\x9c\x2a\x1e\xd6\xd6\x18\xa4\xd7\x33\xa5\xa4\xfc\x11\x2d\xa2\x2d\xb9\x8d\x76\x0b\xe4\x60\xf7\x55\xbe\x41\x62\x62\xb6\x48\x93\x69\xa5\x5c\x7e\x11\x89\x30\x4e\x8a\x4d\xb4\xbd\x63\x62\xbe\xa5\xc8\xed\x67\x26\x88\xbf\xd5\xc9\x47\x7a\x1f\x99\x71\x89\x24\x47\x42\xcc\xa4\x5f\xca\x37\x1e\xa2\x93\xc7\xd6\x7a\xc1\x1f\x2f\x44\xd3\xf0\x26\xd9\x3f\x56\xc2\x8c\xc3\xa0\x0d\xf4\xa2\x14\x31\x95\xbd\x7a\x2d\x68\x27\x77\x45\x49\x7e\xa0\xbc\xbc\x99\x92\x89\x45\x28\xfc\xcc\x8d\x3f\x63\xcf\x9e\xe6\xb0\x9f\x16\x69\x2f\x33\xc3\x3e\x57\x6d\x84\xbb\x15\x06\x74\xd2\x6e\x91\xf0\x8e\xe9\x8a\xdf\x1d\xc5\x3a\x24\xd4\x4b\x00\xab\xc6\x99\x70\x76\x14\xf4\x68\x4d\x51\x18\x27\x95\x1e\xd1\x57\x6a\x78\x69\xbb\xb3\xaa\xa2\x95\x88\xaf\xae\x9f\x84\x9e\xf0\xf3\x21\x0d\x1c\x9b\x69\xa2\xf0\x2b\xc0\xc9\x1a\xbd\xba\xae\xcb\x07\x2e\x87\xc0\x93\xc8\xe0\xd0\xb0\x08\x79\x44\x83\x94\xd9\x70\x3e\x65\x75\x2c\xe0\x9d\x00\x82\x90\x1a\x16\x3d\xbb\x2f\x6e\x79\x84\xd4\xbb\x93\xae\x94\xa4\x33\x12\x3b\xc9\x12\xe4\x98\xd6\x67\x76\xf4\x74\x4d\x45\x0c\xca\x88\x28\xe0\xaf\xd1\x57\xf0\xb5\x16\x50\xb1\x1d\x33\xb0\x8f\x28\x37\xdc\x37\x47\xca\xd8\xe8\x36\x76\x59\xd1\xed\x52\x8a\x3b\xc7\x01\x8c\x42\x04\xf0\x11\x3a\x85\x42\xf6\x0d\x07\xe1\x34\x6d\xcc\xe2\x31\x1a\x9c\x25\xdf\x1c\x05\xc7\xc4\x91\x32\xc1\x5b\xaf\x09\x3e\x5e\x84\xb6\xfc\xb4\x46\x59\x8e\xc2\xbc\x78\x55\x29\x42\x33\xe9\x53\x2a\xe9\x4f\xa8\x1c\xd2\x1c\x92\xe6\xb5\x7f\x19\x6a\xcc\xf5\xfa\x4e\xab\xf4\x87\x72\x9a\x19\x7e\x3f\xf7\xb5\x19\xe2\x51\x9d\x96\x9f\x53\xb2\xad\x60\x88\xb3\x9c\xe4\x48\xa9\xa5\x9c\x8c\xb4\x67\x4a\x5e\xb8\xa5\x46\x58\xb1\xf7\x95\x11\xe1\xfd\x28\xd4\x5b\x0e\x1d\x02\xf2\x8a\xf5\x25\x15\x63\x02\xf2\xe1\xa2\xfb\xa1\xa6\x23\x0d\x0a\x8a\x51\xdb\x27\xa0\x3c\xbb\xe7\x9a\x9d\xac\xec\xf2\x7e\x87\xed\x19\x09\x2a\xc6\xe0\x35\x45\x24\x3f\xaa\x88\x38\xca\xc6\xda\x9b\x09\x42\x1e\x83\xaf\xd7\x02\xc0\xf1\x90\xc9\x6c\xc1\x0e\x14\x2a\x72\x9d\x9f\x88\x5c\xab\x50\xa5\xec\x14\x00\xf9\x4a\x0e\x1b\x66\x0a\x73\xfa\x91\xfd\x60\x3b\xf5\x14\x3d\x7f\xa2\xdd\xac\xb3\x7b\x6d\x9b\x0e\x78\x49\xe8\x06\x40\x27\x84\xaf\xc7\xe8\xf7\x89\x21\xa5\xaa\x50\xa5\xbc\x30\x52\xc0\xdd\x0b\xb5\x4d\xe3\x38\xcd\xab\x20\xba\xfa\x8c\x10\x13\x42\x39\xf6\x82\xb6\x3b\xf8\x0f\xaa\xf2\xde\xb6\x36\xdb\x3a\x66\x98\xa5\xb6\xa3\xd3\xfa\x80\x3c\x1d\x8d\x19\x53\x69\x4e\xd6\x1d\x45\x0e\xe2\xf4\xb5\x30\x3d\xce\xbe\x7e\xf9\x17\xff\xff\xd5\xca\x42\xc0\x74\x76\x5c\xa7\x58\x89\x50\xbc\x1f\xa9\x7c\xe4\x0c\x69\x94\x62\x64\x5e\x43\x23\x1d\x1d\xb0\x77\xf1\x78\xd8\x8b\xdf\xa5\x1a\x33\x63\xf6\x09\xe4\xe3\x1b\xec\x5f\x7a\x8e\x03\xb1\xaf\x51\xff\x1f\x65\xb4\xdf\xd5\x82\xdd\x57\x47\x9b\x3f\xcd\x6b\xe6\x5f\x44\x8d\x7d\xcf\xf3\x4e\xfb\x5d\x14\xc7\x3d\x67\x79\xb7\x04\xd0\x2f\x63\xf1\x4e\x62\x50\x8e\x13\x75\x12\x27\xed\x5f\x81\xf5\x80\xb0\xf6\xbd\x31\x86\x01\xf3\x08\xc4\xbe\x40\x99\x35\xbd\x49\x95\x3e\x2f\x16\xb0\x30\xb3\x7e\x3a\x0a\xfe\x70\x2f\x63\xf3\xc2\x4e\xfa\xd7\x40\x30\x78\x30\x84\xef\xa3\x7f\x5f\x73\x21\x2e\x80\x05\x8b\xb5\xf6\x75\x86\x1a\x73\x5c\x4a\x92\x05\x82\xb0\x24\xe6\x34\xd0\x38\x6f\x44\x63\x90\xef\x82\xbd\x6d\xbd\x17\xff\x9e\x3d\x3e\x10\x9c\x44\xcf\xcf\x37\xcb\x44\x54\x56\x84\x5c\xa5\x9d\xe4\x6a\xd5\x3a\x86\x99\xed\xba\x0e\xaf\x47\x25\x60\x23\x0a\xc6\x93\x8e\x30\xb3\xfb\x9a\x6d\x93\xbb\xce\xb4\xe2\x6a\x7c\x77\x14\x0a\xab\x77\x55\x08\xbc\x49\x63\x69\x8f\x4d\xfc\xa9\x03\x07\x9a\xa9\x2d\x17\xc7\x59\x3a\xc1\xae\xe5\x16\x9d\x85\x72\x0e\x4b\xfd\x6e\x31\x36\x03\x78\x0b\xe0\xcf\x9e\x1a\x85\x69\x3f\x4d\x9b\x8e\xf8\x51\x7a\x61\xbe\x38\xd4\x11\x01\x94\xb8\x85\x28\x9f\x6f\x82\x31\xa0\x49\x4c\xd7\x89\x5c\x25\xf6\xb9\x1f\xd0\xa8\x23\xac\xb9\x8b\xd9\xa7\x41\xb5\x02\xa9\xda\x18\xef\x48\xcd\x63\xa5\x6f\xab\xc4\x75\x4b\xf5\x4b\x50\xcf\x59\x87\xa4\xb0\x37\x0b\xad\xe6\x15\xfe\xca\x71\xdd\x75\xbd\x46\x70\x79\xc0\xf3\x6e\x07\x34\xa4\x4d\x87\xb1\xcd\xb7\x2a\xf2\xe8\xa6\x35\x2d\xc9\x09\xbe\x85\xdf\xec\x3f\xff\x02\xe7\x83\xc7\x47\x41\xf0\x8e\x65\x92\x30\xb0\x1f\x7b\xb8\x45\x35\x0f\xc8\x30\x97\x8b\xfd\x32\x25\x1b\xde\x5f\xe3\x0d\xff\x12\x7a\xd6\x2e\xe5\xdb\x54\x23\xef\xd1\x96\x12\xc7\x9a\x5a\x0b\xe5\xab\xf3\xbc\xfe\x10\xac\xad\xd3\x5f\x93\xff\x52\x7d\x8b\x58\x7c\xd0\xdb\x11\xe0\x56\x8d\xee\x6a\x61\xb2\x9e\x0d\xae\x63\x68\xc9\xe1\xcf\xf1\xf5\x03\xeb\x4e\x59\x40\x86\xe1\x9d\xae\x47\x81\xf0\x76\x69\x0c\x80\xe1\xeb\x03\x79\x49\xea\xb0\x2e\xe9\xb1\xd6\x91\xac\x0d\x25\xf4\x34\xe6\xd8\xed\x3a\xc5\x43\xf4\x2e\x7d\x8f\x79\xcf\x1e\x7e\x27\xf0\x26\xc2\x9e\x7a\x05\x63\xef\x75\x71\xbc\x98\x13\xf3\x7e\xf0\x80\x7f\x4e\x2f\x9f\x3f\x81\x45\x8c\x29\xf2\x56\x14\xc8\xec\xa7\xd5\x61\xd5\xe9\x9b\xe1\x80\xeb\xbd\xe2\x13\xad\x9c\xec\x6e\x8d\x59\xdd\xf4\x4c\xd6\x25\xeb\x32\xbf\x7b\x9e\x8e\x54\xc1\x84\xdb\x77\x48\xba\xbf\xaf\x12\xf0\xef\xab\xce\x01\xcc\xfd\x6c\x77\x5a\xeb\x97\x9e\xd4\x18\xe3\x77\x95\x6b\xe2\x5f\xe0\x37\x20\x1e\xb9\xac\xfa\x38\x45\xdf\xa6\x99\xcb\x0b\x26\x01\x0a\x53\xb8\x1a\x64\x21\x0a\x3f\xed\xe3\x01\x72\x98\xe8\xc4\xc6\x89\xed\x28\x00\x70\x47\xa3\x00\x86\x3b\xaa\xc2\xd6\xcc\x05\x15\x52\x9f\x05\x79\x30\x3d\x4a\x1f\x98\x95\xef\xd4\xd9\xad\x76\x83\x74\x92\x97\xb4\xa9\x46\x54\x90\x72\x0f\xc9\x01\xfb\x0b\xcf\x54\x87\x9b\x27\x85\x2e\xcc\x70\x8f\x60\x33\x01\xfe\x11\x30\xdf\x8e\x94\xd4\x3e\xc2\x18\xf6\xc3\xa5\x73\xcb\xdb\xc1\xef\x96\x54\xe1\xab\x7c\x60\xb0\x9c\x09\x2f\x22\x91\x3c\x52\x31\xfe\x35\xe5\x07\xfe\xa3\x28\xd8\x46\xbf\x8a\x93\x4e\x54\xdd\xe8\x77\xe0\xeb\xa7\x5a\x74\xb8\x22\x10\xff\x23\x2d\xbe\xc9\x58\x5c\xcc\x99\x13\x01\xca\xbc\xc4\x9c\x08\x99\x06\x34\x0e\xd8\x71\xaf\x60\xe1\x0a\x36\xaa\x46\xc2\xac\x93\x0e\x87\x55\x48\x14\xe0\xba\xa7\x90\x23\x60\x64\xd0\x13\xc7\x11\x75\x2f\x0a\x45\xc2\x32\xe9\xda\x4c\xa4\x64\xa9\xec\x87\xfa\x4e\x83\xb2\x05\x89\xc9\x31\x2c\x62\x89\xa4\x05\xdf\x42\x14\xff\x17\x35\x9c\x9c\xc5\x38\x4d\x33\x3f\x3b\x44\x56\x2a\x44\xaf\x40\xb0\xa3\xb4\x7c\xc4\x27\x95\x43\x93\x99\x78\xf5\x10\x83\xb2\x11\x06\xc2\x94\x65\x8c\x87\x87\x75\x7b\xa7\xae\xfe\x31\xcc\xd2\x97\x6c\x87\x6d\x3f\x31\xf9\xce\xaa\xf6\x13\xc8\x19\x10\x9f\xfb\x98\x66\x03\x76\x90\x8b\xda\x01\x29\x2b\x7b\x39\x9a\x8d\xa2\x85\x41\xdf\x2a\x62\x18\x1b\xa7\xf2\xbe\xe7\x9b\x83\x6a\xe9\xa8\x90\x97\xf7\x3c\x41\x35\x2a\x05\xa2\x15\x33\x44\x09\x49\x30\xc4\x61\xc1\x5c\xaf\x69\xd0\xad\x12\x56\x50\x15\x39\x3e\x50\xae\x0e\x37\x14\x7e\xf4\xac\x82\x89\x77\xd3\x34\xcb\x49\x42\x0a\x29\xe3\x26\xc2\x8a\x21\xbc\xbd\x8e\xb9\xa5\x30\xee\x73\xa1\x39\xe3\xdd\xb8\xa6\xe1\xeb\x29\x86\x4d\x34\x98\x02\xa4\x18\xf3\xf4\x22\x85\x43\xb8\xfa\xf8\x14\x77\x61\xc6\xa7\xb8\x82\x5f\xec\x58\xa4\xc1\xe8\xd8\x31\xa3\x95\x6f\x6a\xa2\xa6\xd9\x66\x96\x96\x85\x4b\x10\x85\x08\x2b\x3d\xe0\x79\x40\x1f\x15\xce\xe3\x06\xfc\xe7\x17\x67\x9b\xf3\x0b\xf3\x4f\x56\x71\x32\x7e\xf2\x5b\x90\xce\x61\x1f\x62\x84\xae\x98\x78\x17\x94\xd3\xce\x4d\x25\x5b\xc4\x1d\x7d\x44\x5e\x0d\x52\xd1\xc1\x7f\xf8\x21\x36\x06\xcc\xab\x06\xd1\xf7\x05\x5c\x1e\xf0\x93\x17\xb1\x31\xa0\x20\x7e\x7e\xd4\x78\xf6\x59\xf1\x14\x88\xb4\xfb\x03\x5e\x04\xbe\xfc\x28\x6d\x52\xf8\xb3\xbf\x8d\x88\x05\x5b\xdc\x69\x3a\xa7\x70\xe8\x5f\xd6\x1d\xd6\x6a\x6c\x16\x66\x02\xde\x28\x48\x61\xe2\xd9\x45\xd5\x7c\x87\x52\xa7\xc8\x8b\xcc\x75\xc4\x6c\x8b\x9d\x5d\x95\x9f\xc8\x45\xe5\x97\x54\xbd\xda\xc1\xc0\x26\x5d\x03\x5d\xc1\xfd\x33\x5c\xb3\xff\xa6\x52\xcd\xf9\xe6\x84\x40\xc2\xae\xd9\x2a\xab\x2b\x17\x4d\xa7\x28\x83\xfc\x9e\x40\x30\x1a\x9e\xe7\x7d\x51\x59\x91\xc2\xe0\xdd\x76\xb7\x86\x2a\xfe\xcb\x18\x1b\x44\x8f\xaf\xe0\x07\xf1\x0d\xb2\x24\xaf\x73\xbd\x5b\x3a\x40\xe7\x23\x85\xd9\x7d\x59\x09\xab\xdb\xc4\x52\x5c\xd3\x69\x04\x6c\x18\xc3\xfb\xf8\x66\xa2\x0a\xba\x67\x8f\x30\xdc\xf3\x62\x2a\xd4\xf2\xb7\xb4\x42\x69\xe1\xae\x96\xe4\xb8\xf2\x40\x55\x8f\xb6\x4d\x1a\x8d\xdd\x73\xeb\x08\x3c\xd7\x83\x4a\x6a\x91\x26\xbd\xd2\x4e\x87\x56\xfa\x7d\x9a\xd2\x4a\x18\xed\x45\x6f\x6a\xaf\xce\xa2\xbf\x0e\x87\xe2\x3f\xfa\x24\x8d\x04\xd6\xeb\xd7\x28\x45\xc4\x81\x73\x4c\xb9\xfc\xdd\x44\xbc\xe0\x59\x3d\x5f\x7a\x8e\x43\x2b\x9e\x25\x58\x82\xff\xae\xca\x11\x11\xeb\x6f\x69\x05\xe7\xa6\xdb\x23\x85\x29\xe7\x83\x40\x88\x53\xf4\x5e\x25\xae\xaa\x86\xc8\x63\xe8\x83\x57\xee\xcb\x54\x6a\xf2\xd8\xcf\xf9\xe7\x25\x8f\x7e\x8d\xce\x11\x0f\xcd\xab\x06\x52\x94\xf6\x71\x26\x8b\xe5\xba\x2a\x7b\x1d\x45\xc2\xea\x8d\xd9\x77\x07\x19\x40\xd5\xb1\xfd\xe6\x44\x06\x44\x15\x97\x74\x98\xeb\xe3\x11\xee\xe3\x5e\xf4\x4e\x91\xde\x94\x56\x7a\x6c\x4d\x23\x08\x40\xfc\x06\x06\x92\x6f\x22\xad\xd1\x33\xb4\x55\x1c\x43\x36\xb5\x78\x19\x4c\x38\xc6\x88\x00\x40\xc8\xd7\xf4\xd8\xfc\x8f\x54\xe3\xda\xc5\x8e\x76\x50\xa4\xe6\x5c\xe3\xe7\x1b\x55\x04\x42\x61\xde\x63\x8f\xf5\xe1\x86\x86\xc0\x76\x85\xef\xbb\x36\x52\x1d\x80\x4b\xa3\x20\x86\xd1\x75\x8b\x8b\x36\xb3\x49\x21\x8a\x45\x78\xb6\xb1\x87\x9e\x6c\xe7\xcf\xcd\xed\x6d\x26\x69\x56\xf4\xa7\x42\x50\x87\x83\x19\x7c\x89\x1b\xca\x67\xf8\xba\xda\x74\xf2\xd5\x41\x3b\x8d\x5d\x3e\xc0\x19\x36\x56\x97\x93\xc6\x49\x28\x7f\x4d\xc2\x52\xc9\x49\x76\xd9\x59\xb1\x81\x62\xce\x26\x36\x52\x21\x70\xd6\x30\xff\x86\x59\x3a\x70\x0c\xe9\x98\xe5\x69\x3e\x36\xe7\xef\x4c\x34\xe3\x76\x06\x3f\xb6\x0d\x86\x2d\x17\x55\x55\xfb\xa2\x12\x97\x5a\xe9\x9b\xe2\x99\xf0\x9f\x8e\x22\x7c\x45\x93\xff\xdf\x63\xc2\xa3\xc9\x7f\x86\x56\x12\xae\xef\xe9\x1c\xf4\xd6\x48\xf9\xbe\x7d\x57\xfb\xbe\x21\x82\xe3\x0a\x21\xe5\x24\xd8\x84\x1a\x44\x8b\x15\x7d\xac\xea\x65\x48\x3b\x52\xa9\xa4\x5f\xc6\x9e\x81\x98\xfc\xc4\x48\xc9\xfc\x43\xbf\x11\xe9\xe1\xdd\x91\xf2\xf3\xba\x42\x9e\x83\x58\x5e\xa7\x70\x02\x21\x4a\xfd\x3f\xb4\x11\xce\x51\x2c\x7c\xac\x6f\x18\x55\x22\xb0\x9c\x6e\xd5\xc4\x62\x36\xee\x42\x8d\xcf\x53\x1d\x8e\x2b\x07\x76\x94\x14\xd1\x2e\xbc\x35\x7a\x34\xe0\xeb\x96\xc5\x15\xb9\x56\x52\x2d\xc4\x52\x8b\xa6\x53\xad\xbb\x00\x70\xc7\xaf\x16\xb4\x7b\x88\x1a\xdf\xc5\x8b\x11\x67\x6e\x9d\x54\x7e\xb9\x14\xb5\x06\x56\x56\x8c\x54\x1c\x7e\x5e\x75\x30\xbe\x94\x23\x18\xd1\x7d\x0e\x24\x15\xf7\xf1\x7c\x08\x79\xae\x46\x41\xc0\xa4\x57\xba\xb8\x58\x9d\x56\xa8\xb5\xb7\xe9\x45\xe2\xe7\xaf\x8f\x4d\xaa\xc0\x58\xba\xa9\xbe\xb4\x30\xf1\x93\x34\x0f\x54\xf4\x2b\xec\xf1\x29\x62\xb5\x78\xde\x4d\x30\xbd\xf9\x09\x15\x15\x3d\x00\xbc\x7a\x93\xf8\x04\xb3\x32\x71\x02\xdf\xe4\x0d\x9d\xbd\x48\x95\x0e\x00\xfc\x3e\xd1\x24\xdf\xd2\x0a\x0d\x6f\x16\x9d\x04\x46\xfa\x32\xfd\x12\xfc\x29\x28\x42\xa1\xef\xfc\x2c\x7a\xcb\x98\xc4\x9c\xad\x62\xc3\xdb\xb1\x16\x44\x19\xef\xeb\xc4\x3a\x2d\x3d\x57\x84\xdb\x75\x8a\xfd\xf8\xd6\xe8\x69\x85\xbd\x8f\x6d\x5e\xb8\xc4\x03\x91\xd0\x13\x3d\x8b\xb7\xcb\x37\xca\xd5\xe4\xa0\x1b\xb8\x43\x78\x6b\x58\x16\x77\x91\x23\x7a\x6d\xc7\xb9\x60\xec\xb9\xb1\xb2\x71\xe0\x40\xb3\x6b\x97\x6d\x9c\x0e\xad\x50\x94\x10\x4c\x4e\xad\x29\x1d\x3d\xed\x40\xd8\x2e\xe3\xa5\x46\x28\xd2\xbd\x39\x0a\x01\xe1\x9b\x35\x9e\x3a\x2f\x36\x3b\x59\xd9\x91\x4a\x10\xe2\x79\x98\x99\xf1\xb5\x1a\xa2\x22\x4d\x5c\xaf\x5f\x34\x74\xfc\x44\x4f\x21\x81\x95\xb4\xc1\x13\x8a\xd6\x56\x5c\x17\x91\x05\x76\xba\xe9\xb5\x60\x74\xda\x20\x48\x2c\x3d\xfc\x2b\x7f\x0f\x98\x66\x24\xb6\x1f\x8d\x34\x14\xc4\x24\x9d\x3e\x5a\xe9\x92\xba\x9d\x56\xef\xe4\xf4\x48\x8b\x76\x2f\x9b\x98\x16\xb8\xd4\x52\xaa\x2f\xc0\x69\xfe\x9d\x91\xea\x9d\x5c\x50\xca\xeb\x49\xda\x4e\xbb\xab\xd3\x55\x34\xe2\x29\xc2\x73\x73\x1e\x7d\xaf\x65\x58\x79\xa7\x97\x26\x93\x42\x12\x97\x59\x5e\x7a\xa5\x35\xc1\x16\x2a\x9c\xa1\x4a\xe8\x56\x4c\x1c\x93\x24\xf5\x6c\x90\x5f\xdc\x3f\xc3\xf9\xf5\x6b\x58\x54\x2c\x2d\x15\x85\x20\xf4\x34\x6d\x95\x02\x6e\xac\xe3\x1c\xbc\x64\x06\x5e\x48\xcd\x3b\x90\x05\x69\xf2\xb7\x27\x66\x15\x91\x2c\xca\xbc\xdf\x36\xa4\xa7\xad\xa0\xa9\x63\x1a\x28\x75\x36\x62\xb9\xed\x9a\x44\x48\x2a\x2a\xc9\xdc\xab\x92\xcc\x20\x9b\x9c\x56\x19\xbd\x17\xe9\x84\x1c\x98\xe4\x89\x0d\xef\x36\xf8\x37\x1a\x4d\x70\x99\x32\x01\xfe\x40\x1d\xa9\x96\x78\xe2\x3e\xa3\xc7\x4f\x04\x88\x86\xc1\x55\xca\x31\xfa\x9a\x52\x31\xb4\x49\x41\x4a\x51\x5b\xf4\x38\x8d\xf9\x01\xeb\x31\x43\x00\x89\x6d\xf1\xdb\x9a\xb1\x74\x45\xfb\x0a\x5a\x62\x61\x2d\x8f\x71\x94\x4f\x29\x72\xf1\xa9\x3a\x31\x5e\x97\xb8\xc2\x91\x0a\xd8\x18\xd9\x83\xbe\x43\xfc\x1a\x1b\x9e\x1d\xbd\x4e\x3f\x47\xe2\xcd\x8d\xf1\xd0\x81\x03\x4d\x88\xcd\x2a\x83\x7b\xe6\x5d\xf2\x8d\x5f\x24\x69\x46\xa7\x20\xfd\x43\x1c\x96\xdb\xe8\xe4\xe3\xeb\x35\xef\x1c\x1c\x97\x49\x81\x22\xaa\x84\x49\x0d\x6f\x96\xbb\xb9\x15\x6a\x7d\xb7\xd4\x09\x91\x77\xcc\x7f\x04\x18\xbb\x91\x2b\x52\x4d\x5a\x9b\x20\x14\x46\xbb\x14\x93\x1c\xc9\x22\xf3\x99\x31\x82\x1f\xaa\x37\xb8\xec\x72\x57\xa4\x59\x4e\x24\x3d\x88\x50\x30\x3f\x1f\x41\xc5\x31\x8c\xa1\x88\x0e\x2b\x97\x90\xd3\x0a\x75\x33\x74\x43\xf1\x26\x10\x4f\x7a\x15\xfa\x9f\xae\xeb\x5d\xc4\xa6\x70\xc9\x94\x9a\x04\x08\x16\xc1\x47\xba\xcc\x1b\x05\x1a\x24\xeb\x63\x66\x98\xcb\x88\xfd\x82\x72\xde\x54\x4b\xa1\x6c\xa7\xd6\x74\x08\x90\x99\x95\x2d\x55\x20\x83\x58\xeb\x87\xd8\x70\xbc\x73\xac\xaf\x7e\xc3\xf3\xd8\x07\xdd\xbb\x85\xad\xfe\xc3\xd1\x33\x21\x74\x49\x0a\x1b\xc7\xae\x67\x93\x8e\x9d\x0e\xb2\x7b\x27\x74\x35\xe8\x54\xa4\x60\xdd\x27\x14\xe1\xf5\xd4\xb8\x45\xbf\xc1\x70\x6b\x85\x50\x14\x34\x3f\x8a\x94\x9c\xdb\x34\x35\x02\xf0\x8f\x3e\xa8\x95\x27\x1d\xba\xd8\x2e\xe7\x4b\xab\xca\x16\x70\x83\xa5\x72\x0d\xa3\x28\xb7\x90\x98\xc2\x52\x00\x1f\x11\xeb\xe5\xb0\x8e\x58\x2f\xab\x99\xf8\xdc\x73\x7b\x1b\x13\x20\x5d\x41\xef\x3e\xe6\xd7\xc2\xb0\xcf\x45\x74\x96\x27\xa3\x1f\x26\x52\x65\x35\xaa\xb4\xab\x36\xd9\x56\xad\x16\x4c\x69\x08\x08\x78\xb1\xb6\xcf\xbf\x10\x0a\x59\xd5\xd2\x43\x8c\x08\x47\x67\x94\xda\xd1\x19\xf0\x6a\x1d\x41\xa4\xe0\x93\x4a\xc2\xa7\x6f\xda\x04\xb7\xaf\xe6\x19\x7a\x8e\x70\x5c\xe0\xeb\xd1\x53\x8a\xad\xba\x98\x99\xb2\x2b\x20\x06\x2f\x66\xe6\xc9\xf4\x37\x75\x20\xdb\x1e\x3c\x14\x92\x33\xe6\x82\x72\x9e\x8a\xec\xc0\x37\x28\xab\x21\x15\xdb\x13\x5a\xce\xa2\x14\xae\xca\x4d\x67\x15\x98\xf7\xa2\xc6\xa2\x7e\x55\xcb\x66\xbe\xa7\x60\x0e\x45\x3f\x1d\x98\x1c\xbd\x36\x80\x20\xde\x89\xc6\xba\x09\x2a\x37\xfd\xd6\x48\x19\xae\x5e\xf2\x85\xbb\xb8\x3c\xd8\x50\x13\x19\xdf\x24\xb3\x3a\x14\x59\x16\xd3\x32\x29\x8c\x4b\x18\x34\x86\x23\x18\x02\xfd\xe8\x32\xbc\xa9\xca\xc5\xd7\x6a\x44\xd0\x16\x9a\x2e\xf9\x72\xe9\xb2\xb1\x56\x50\x14\xc0\x5f\x97\x46\x8f\xf8\x18\xa7\xc7\x47\x27\x4f\x83\x48\xeb\xf7\x85\x33\xc2\xc4\x71\xba\x62\xda\xb1\x9d\xf2\x21\xcf\x7f\x89\x98\x9b\x19\x87\xa8\x0a\xe2\xd7\xbf\xed\x5b\x99\xf4\xb1\x7c\x5a\xb9\x67\x4d\x51\x97\xc1\x8f\xfb\xbc\xd7\xdb\x42\xe9\x40\x2a\x17\x4f\x29\xe1\x42\x1a\x0b\x3a\x2a\xc3\x0e\xf4\xa6\x0a\xee\xc0\x9b\xc0\xdb\xbb\x52\xe7\x4a\x82\xca\xea\x16\x25\x3a\xc8\xe2\x8a\x1e\x47\x28\xfc\x81\x7f\xf2\x04\x25\xfd\x88\x65\x38\xe9\x17\x5b\x32\xe5\x7e\x68\x1c\xde\x0f\x6a\x7f\x62\x1e\x5e\xad\x0d\xf1\x0e\x0f\xd6\xe5\xd9\x4b\xd9\xf6\xc6\x9e\x3d\xec\x35\x8c\x0c\xe3\xf2\x48\xd9\x36\xfe\x40\xbb\x12\x5e\x8d\xb4\x28\x37\xe0\x45\x2c\xeb\x3b\x0a\x10\x3c\x78\x4f\xae\x1f\xaf\x13\x75\xed\xc4\x69\x59\x8c\xa9\x8d\xa8\x93\x7c\xf2\x10\xdb\x3d\xd7\x8c\xbb\x1d\x65\xbe\xf2\xa1\x36\x5f\xf9\x50\x79\x1f\x99\x67\xf3\xa9\xd0\xff\xbb\xa7\xb8\x65\x37\x30\x9a\x62\xba\x59\xe3\xf2\xc2\xb5\x80\x62\x55\xe1\x3d\x7f\x27\x0a\xad\xdf\xdf\xd1\xb6\x3b\x69\xdc\xe5\x65\x86\xd9\x7e\x19\x7f\x1e\xef\x01\xf2\x11\x38\xed\x3f\x56\xba\x79\xc7\x54\xc4\x96\x77\x48\xb2\x72\xb7\xcf\x69\x68\x18\x25\xbf\xa9\x19\xb3\x5e\x66\xd8\x2f\x5c\x14\x6e\x94\x40\xcb\xa4\xdf\xf1\xfe\x99\x2f\x10\x56\xbf\x2f\x1a\x23\xe2\x8d\x10\x76\xdf\xab\x7e\x09\x2c\x9b\x4e\x59\x0e\x28\x46\x12\xb7\x15\xd5\x0c\xbc\xa8\xb4\x81\xee\x28\x59\xe9\xdb\x0f\xec\x0e\xb7\x63\xc2\x03\x79\x6b\xb4\xf7\xb5\x35\xda\xfb\x1e\x6d\xb5\x64\x87\xec\x7e\x00\xac\xc7\x3a\x4d\x1f\x56\x31\xa2\xa9\x8a\x45\xce\x90\x07\x8f\x66\xf0\x91\x3c\xa6\x8d\xff\x8e\x6a\x3b\xa3\x47\xfb\xef\x9f\x01\x8f\x03\xcf\x7c\xdf\x1f\x46\x8b\xa6\x53\xa4\x8c\xc7\xf7\x5c\x21\x8f\x38\x00\x50\x1d\x1b\xe5\xba\xda\xea\xf2\xbe\x23\xb6\x0d\x6f\x42\x02\x5c\x54\x20\xc6\xb5\x3a\x6a\x59\x66\x5f\x4a\x69\xfd\x05\xf9\x90\xeb\x91\xd2\x94\x9e\x6c\xfe\x54\xc7\x70\xda\x35\x53\x4a\x77\xee\xa4\x52\x25\x81\x44\xa4\x48\x79\xd4\xec\x21\x2b\x69\x2a\x82\x14\x1a\x0e\xc0\xd7\x51\x10\x34\x7a\xa9\x4c\x96\x1e\xa1\xe7\x62\x21\x39\xe5\x3d\x7f\x53\x79\xef\x5f\x55\x38\xd0\xed\x6b\x0a\x5a\xf7\x03\x9c\xbe\x88\x48\x1a\x2d\x45\x59\xbf\x4f\x0f\x89\xa4\x0b\x52\x22\x5c\xa3\xa0\x04\x8c\x55\xa9\xb0\xb5\x88\x88\x5d\x0d\xe6\x6b\xc5\x25\xdd\x74\xa5\xa1\xb8\xec\xa7\x15\xf7\xe3\xb4\xaa\xa4\xae\xd8\xec\x13\xd5\x5f\xc6\x24\x98\x02\x01\x16\x11\xf4\x3f\x6e\x29\x60\xf2\x0e\xcc\x08\x9c\xb2\xeb\x1c\x48\x62\x9f\x5e\x1f\x29\xf3\x91\x73\xa3\x00\xdf\xdf\xb6\x56\x1d\x84\xa2\xcc\xa1\x84\x54\x2e\x84\x1e\xde\x7f\xfe\xff\x83\xb8\x23\xd0\x99\x3b\xd6\x14\x64\xe3\x55\x85\x96\x7c\x07\x4d\x28\x81\x0d\xd1\xd8\xe3\x90\x3f\x3a\x16\x04\x12\x65\xc6\x83\xbf\x01\x7d\xe7\x6b\x1d\x9e\x9b\xf2\x60\xdf\xc4\x31\x07\xd7\x18\xd5\x6b\xda\x53\xe7\x5a\x1d\x7b\xd6\x74\x49\xd2\x99\x76\x48\xa0\x6f\xce\xeb\xd0\x1d\xb3\x05\xc1\xf5\x47\x13\x8a\xa7\xb2\xb6\x09\xf9\x13\xaf\x02\x6e\xce\x50\xb4\x51\xd0\xd9\x3e\xa7\x26\xe9\x99\x89\xf0\xae\xca\x6b\x8b\x36\x95\x2a\xb0\x55\x6e\xc2\x6b\x09\x56\xe5\x62\xb0\xf3\x0e\x7e\x8d\x68\xbe\x86\xd2\x48\xec\xda\x36\x2b\x90\x5c\x49\xfa\xac\xc4\x23\x2e\x29\x5b\xba\x34\xb6\x09\xd1\x53\x91\xae\x5e\x53\xe6\x28\xe4\xc7\x31\x1b\x44\xb2\xab\x87\xa0\xa8\xed\x9b\xcf\x60\x36\x6b\x55\x7f\xe9\xfe\x6f\x5c\xaf\xbb\x76\x11\x65\x88\x36\x3a\x04\x9c\x20\xa9\xf2\x75\xa0\x8e\xae\xa4\x59\x32\x1d\x30\x8b\xf7\x30\xff\xa5\x0f\xad\x8c\xb9\x76\xb4\xc2\x2c\x9f\xa4\x28\xed\xda\xd5\xec\x97\x55\x60\x4f\xf5\xd9\x5a\xb1\xd9\x49\x59\x89\x66\xcf\x1d\x1a\xa4\xbc\x77\x89\x3b\x68\xf5\x2d\xa2\x42\x3e\x59\xb2\x78\xb1\x39\xb4\xd9\xb2\xc9\xdd\x32\x5a\x8e\x38\xd0\x7f\x4b\x39\x55\x5c\x46\xe2\x2b\x8f\xb0\x41\xfd\x77\xff\xcc\x7c\xb5\x03\x3e\xad\xe4\xfa\x39\x85\xc1\xe9\x72\x2f\x0a\xa2\x8a\x7f\x4a\xcf\x82\x5d\x85\xcb\xe9\x38\x5d\x58\xab\x18\xc9\xe7\x1f\x8d\x42\x29\xf1\xe3\x91\xc2\x04\x5d\x22\x14\x24\xa2\x8f\xc3\xc4\x8d\x92\x0f\xd0\x7a\x43\xd5\xe3\x04\x76\x2b\x4c\xac\xab\xda\x20\xfb\x3b\x14\xf0\x78\xca\x8a\x0f\x94\x58\xf8\x88\xeb\x42\xa8\x61\x4b\xf2\x44\x41\x24\xd3\x54\x22\xea\xfb\x0a\x67\x45\x0b\x84\x8c\x74\x50\x9e\x99\xbc\x4f\xa4\x22\x44\x2c\xf7\xe8\xd7\xf0\xf5\x44\xdd\x62\xdf\xf3\x4d\x97\xbc\x54\xe6\x85\xeb\x88\x05\x9a\x30\xa2\x82\xbc\xd2\x99\xba\x16\x48\x27\x4d\x16\x5d\x36\xe0\x23\x47\x34\xf0\xd5\x5c\x3b\xea\x4f\xfc\x2a\x34\xe0\xa3\x02\x45\xff\x8f\x95\x19\xe5\xc7\x35\xd1\xc4\x8b\xa8\xea\xc4\x82\xfa\x02\xc6\xec\x96\x52\x3e\xfd\x70\xa4\xaa\xb2\x5a\x3a\xe4\x25\xbb\x62\xe3\x6c\x75\x4a\x95\x0c\xd0\xbe\xc6\xf5\x7d\x55\xab\x9a\x3c\x13\x77\xcf\x35\xfb\xab\x43\xab\x0c\x57\x7e\x4c\xdf\xc9\xd7\x0a\x03\x51\x58\x33\x60\x77\x6a\x5e\xd6\xca\xe8\x1f\xbe\x3e\xd2\xa5\x0c\x15\xfb\xc5\xcc\x24\x55\x58\xf5\xf9\x17\x82\x87\x41\xe8\x3d\x9c\xf1\x30\x15\x3b\x48\xe1\x0c\x4b\x9b\x27\x96\xf1\x0d\x85\x4f\x68\xb4\xc6\xaa\xf6\x4a\xa8\x7f\x58\x26\xc4\x3c\xc2\x01\x85\xa6\x2f\xa2\x97\x1f\xaa\x0e\xda\x47\x23\xed\xec\xde\x49\x07\xc3\xd8\xe5\x54\x24\xd7\xb4\x87\xb9\x60\x05\xac\x8a\x9d\xe4\xc5\xfa\x09\x4c\x58\xfc\xda\x57\x54\x29\x7a\x5b\x4b\x25\x30\xc7\x48\xc0\x5b\xb2\x85\x46\xf8\xff\xe9\xd0\xc7\x9e\x77\x7d\xa4\x22\x96\xdf\x88\x54\xcc\x73\x91\x06\x51\xef\xd5\x5e\x5b\xee\xf3\x2f\xf0\xf5\x87\x58\xb6\x42\x22\x0a\x8d\x62\xe4\x1e\x82\x2c\x56\x84\xde\x6b\x1e\x2d\x59\xa5\x51\x99\x59\xb6\x09\x26\xd9\xac\x6c\x0b\x58\x58\x2c\xcd\x46\x7f\x52\x80\x20\x35\xbd\xdf\x95\x74\x60\x13\x25\x3a\xc7\x4d\x0c\xbe\xa9\xa1\x75\xef\x6d\x52\xb4\x4a\x13\x87\x1d\x06\x80\x4c\x16\xbb\x81\x8d\x53\x72\x61\xa6\x99\x9b\x64\x89\x16\x8f\x94\x9e\xe9\x71\xa5\x26\x5d\x53\x4a\xcd\x4d\x5c\x06\xa4\xa5\x17\xea\x0c\xa2\x9d\xa3\x90\x8d\x0d\xcd\xea\x27\x54\xf8\x7a\x4f\xeb\x29\x7e\x6f\xa4\xa8\xfb\xe7\x23\x05\xfa\x42\xa6\x2b\x86\x80\x8d\x5d\xbb\x3c\xa6\x3e\xf0\xdb\x8e\xe2\x87\x79\x61\xb4\x85\xf9\xa0\x43\xed\x45\x80\xbf\xa5\x9d\x1e\xdf\xc7\x51\xa5\xbc\xf2\xa4\xe9\xb4\x75\x2d\xc4\x96\xef\xd1\x54\x92\xd2\x4f\xe0\xd0\x75\x62\x93\xe7\x6e\xd1\xb1\x88\xab\x38\xcb\x84\x32\xeb\xb1\x40\x1e\xed\x9b\xc1\xd0\xa5\x49\xde\x77\x43\xfa\xc7\xe2\xff\x16\xc2\xc9\x49\xb4\xf5\xfc\x42\x15\x66\x0f\x85\xa3\x33\x17\xb0\xf8\x81\xc9\x38\x99\x4c\x11\xdd\x3a\x5d\x49\xb6\x87\xb3\x1a\x63\x81\x4c\xf1\x61\xc5\x57\xbd\xa7\x88\x0f\xd0\xdb\xf7\xd9\x89\x97\x3b\xfa\x3e\x4d\x6c\x1c\x41\xec\x5c\x2d\x6f\x61\xe3\xf3\xee\x6c\x56\xe3\x91\x17\x26\x29\xa6\x15\x62\xff\xa2\x52\x55\xb9\xad\x74\xe0\xdf\xc1\xef\x10\x3c\xb8\x07\x2c\x67\x4e\x9c\x71\x45\xb5\xe9\x55\xfc\x4b\xbe\x19\x03\xd1\x66\x83\xfc\xf1\x86\x37\x87\xff\x3e\x0e\x4f\x11\x93\x0e\x70\xb8\x93\x74\xb8\x88\x77\x10\xcd\x38\x44\xb1\x17\x51\xab\x42\x42\x70\x78\xa4\x3a\x48\x8c\x4f\x16\xde\x04\x3d\x01\x16\xe6\xff\x1a\xa9\xd3\xf7\x82\xb2\x8c\x3f\x46\x0d\x64\x61\x36\x06\x59\xeb\x47\xe1\x11\x8e\xaf\xdf\x3c\x61\xb9\xbf\x7b\xae\xd9\x4b\xd3\xee\x8a\x8b\x63\xad\x64\x72\x49\x29\x99\x4c\xae\x3a\x2a\xaa\xe4\xd6\x64\x1d\x16\xb8\xc2\x53\xbf\xae\xc0\x9d\xaf\x6b\x91\x57\x97\xc5\x7a\xe2\x69\x75\xcb\x0b\x63\x23\xba\xec\xec\x36\xfa\xb1\xd8\x15\x59\x21\x94\x6f\xa0\xc8\x8c\xb0\xf5\x5d\xa5\x27\xc3\xfc\x0e\x89\x54\x68\x80\x7d\x85\xdb\x9f\x6d\x6f\x8c\x7d\xd1\x62\xd7\x4c\x6b\x76\x0c\xd6\xa2\x5f\xd6\x1e\xa6\x04\x11\x5b\x51\x67\xd4\x68\x3d\x9e\x6c\x53\x63\x6e\x5b\x1b\xe4\x9f\x1f\x04\x72\x24\x7b\xd4\x7e\xba\x32\x1d\xc4\xa7\x99\x96\xa6\x93\x13\x16\xcd\xc2\x68\x89\x82\xd6\x53\x1b\xfe\xd4\x67\x9b\x06\x9e\x5c\x22\x65\x56\x8d\x8b\x48\x9c\x85\x40\xa1\x63\xb2\xcc\x59\x50\xfd\x70\x36\x00\xc7\xc8\xd7\xca\x06\x29\x39\x84\x2a\x0d\x4e\xb2\xb3\x74\xa8\xf2\x75\xdd\x76\x9d\x0e\x6d\x82\x66\x14\x42\xc8\x0b\xca\x99\x1f\xfc\x71\xc1\x0d\x06\xd8\x05\xf7\x46\x24\x91\x0e\x7d\xc8\xae\xcb\x87\xb1\x59\x65\x7c\x11\xe0\xff\x27\x54\x3b\xff\xac\xa2\xd0\x7c\x27\x28\x8a\xbb\xac\x53\x2a\xeb\x58\x4c\xc0\xff\x0b\x11\x2f\xdf\x8c\xe1\x14\x0e\xc5\xec\x02\x26\x6e\x07\xd5\x98\x09\xa8\x39\x6c\xb1\x79\x91\xd9\xa4\x57\xf4\x2d\x20\x7b\x58\xe5\xdc\x67\xe1\x1b\x05\xa0\x68\x5b\xd3\x01\x79\x1e\x65\xc9\x73\x9a\xf0\x7f\x6e\x42\xaa\xd6\xe7\x7c\x99\xed\xba\x62\x9a\x22\x5f\x34\x05\x4e\xab\xa5\xb7\xa5\xa5\xb4\xda\x18\x8c\x2f\x84\xd0\x8d\xf9\xc8\x0b\xf3\xcd\x81\x5b\x5c\xe4\x03\x01\xa7\x12\x6f\xd7\x7c\x33\xb1\x8e\x77\x36\x0b\x9b\x65\x69\xe6\x72\xd6\xf6\x11\x26\x67\x23\x28\x93\x4d\xf4\x41\xf6\xcf\x34\x5d\x92\x17\x26\x8e\x65\xc0\x75\x4f\x87\xaf\x1f\x58\xbf\x2a\x4c\x5e\x70\x86\x2b\x72\x01\xd5\xc7\xb0\x5e\x6f\xa8\x0e\xe8\x91\xb1\x57\x56\x2e\xb7\x1b\x4a\x6f\xe0\x6d\x05\xab\x78\xbb\x46\xac\x7c\xa1\xd9\x31\x43\x57\x98\x58\x29\xe2\x9c\x56\x26\x69\xa7\xbd\x03\x6d\xc7\x26\x45\x99\x09\x11\x09\x58\x66\xb6\x3c\xe5\x9b\x2a\x86\xd2\x29\xd8\xe7\xfe\x69\x73\xe7\x74\x35\x63\x24\x2b\xa6\x7d\xc4\x8b\xd0\x2d\xcc\x87\xdc\x79\xfe\xf9\xbd\x5e\x91\xae\xa6\x22\x15\xa7\x5c\x92\x40\x91\x6c\x6d\xa4\xa8\x13\x6b\x4a\x2e\xa8\x93\x96\x59\x61\xca\xb8\x0b\xb0\xb3\x74\x7a\x55\xd7\x57\xf1\xc6\x0b\x97\xf3\x3c\x44\xcc\xf4\x53\x04\x84\x7c\x33\x31\x6b\xf6\x3d\xdf\xec\x97\x03\x93\xe4\x5a\xa6\x72\x34\xa6\x56\xfd\xa0\x72\x85\x4b\x72\xd7\xb5\xd9\x54\x75\x76\xa3\x70\xff\x9e\x2a\x03\x70\xb4\x8f\x20\xe0\x67\x41\xcd\xd4\xa4\x85\x33\xc9\x54\x50\xc6\xb8\xae\xa2\xab\xb3\x5a\xf5\xed\x43\xad\x6f\x9e\x59\x53\xd0\x76\x29\x12\xe0\xb4\x85\x00\x27\xf4\x15\x25\xba\x8c\x58\x98\x7b\x57\x4a\x1a\xd5\xc4\x9d\xb4\x9f\xc6\x53\x8a\x3d\x78\x66\xa4\x1c\x6e\xc0\xff\xc0\x99\x74\x4d\x7d\x2e\x5f\xb1\x5d\xd2\x71\xac\x26\x3a\xca\xf7\x27\xb1\xa8\xf8\xc6\x0b\x26\xf5\xad\x89\x8b\xfe\xb2\xcd\xf1\x9c\x63\x4e\xa1\x38\xa2\x6f\x8d\x42\xc5\x04\x6d\xcc\xf5\x6d\x13\x07\xf2\xfc\xf3\x7b\x89\x1f\x53\xb0\xce\x15\xce\x16\x6e\xb9\xf2\xcd\x5a\xd8\xd8\x57\x6c\x3b\x2f\xd8\x00\x1b\x3d\x54\x90\x95\x05\xb2\x4c\x1f\xc3\x96\x71\x7d\xcc\xdd\x9d\xd8\x49\xf9\x76\x65\xc5\x03\x12\x90\x47\xe9\x57\x53\x40\xac\x6c\xe8\xaf\xa0\x5a\x77\x59\x65\x2a\xef\x2b\x25\xa1\x4d\xad\xc6\xe7\x5f\x58\x67\x1b\x01\xfe\x83\x63\xfc\xc0\x7e\xc9\xcd\x72\xf6\xfe\x55\x46\x21\x8c\xd2\x14\x2d\xd1\x3a\xbc\x64\xec\x96\x65\xbb\xf1\xc2\x3f\x01\x20\xf8\xa3\x50\x10\xea\xbb\xc5\x62\x6b\x68\x2d\x70\x41\xc8\x77\xfd\x3c\x23\x17\x80\x4b\x2c\xd5\x6b\x38\x2b\x30\x71\x5f\x19\xe9\x44\xb7\x46\x66\xe4\x0b\x3a\xf8\x56\xe3\x07\x05\x28\xbe\x56\xe7\x48\x48\x3a\xa7\x83\x7d\xc0\x39\xa5\xba\x0c\x04\xae\xb7\x4a\x9e\xdd\x27\xd7\xaa\x18\x5b\xf6\xfa\x3b\x1a\xde\xa7\xe8\x24\xf6\x16\x4c\x5d\x5e\xae\x48\x12\x39\xdc\x1b\x63\x78\x20\x41\xfb\x88\xfe\xb2\xdf\xe1\xf7\x4b\xf1\xe9\xe9\xb5\x86\x28\x54\xff\x9b\x27\x50\xd7\xf5\x32\xc3\x73\xde\xf9\xf9\x32\x86\x08\x91\xf4\xf4\x1a\xa0\xc5\x88\x56\x7e\x40\x80\x4c\xd4\x70\x60\xf9\x42\x51\xd4\x47\xff\xa8\xa5\x4c\xbb\x90\xd3\xe0\x75\x73\x55\x1b\x73\x08\x88\x2a\xfc\xdd\xc7\x5a\x1b\x77\xc9\x67\x9f\x6d\x2e\xa6\xf1\xd2\x54\xf5\x0d\xc2\x41\x0c\x11\x19\x5b\x8c\x08\x2e\x77\x63\x98\xb5\xb3\x69\xb2\xb4\x4c\xba\x8d\x80\x8d\xbc\x42\xcf\x27\xd2\xcd\x35\x2d\xfe\xbd\xcd\xbc\x28\x07\xd4\xe9\xdc\x2f\xa4\xbb\x53\x88\x57\x58\xd7\x65\x14\xf8\x19\x0f\x12\xa1\xe9\x94\x83\x36\x59\xec\xd2\x00\xa8\x78\x60\xaf\x8f\x07\x36\x6e\xaa\xfb\x9e\x6f\x9a\x5e\xe6\x3a\x65\x5c\x94\xa4\x5f\xa8\x68\x43\x8a\xd6\x3f\xce\xb8\xcd\x4b\x3a\x88\x30\xaa\x9b\x5a\xf4\xe6\xb1\x4a\x11\x44\xa0\x57\xc7\x00\x7d\x99\x5f\x35\x06\xff\x69\x3b\xb7\x99\x5f\x5f\x38\xf7\xbe\x15\x05\x72\xcf\xb7\x26\x3e\x54\x1d\x1b\x2e\x1f\x9a\x84\xc5\x31\x50\x41\x38\x8b\xf7\xc1\x37\x0a\x00\xde\x36\xc9\xd2\x63\x34\x81\x78\x36\x61\x62\x8a\xff\x95\x52\x35\x3b\x37\x52\x62\x90\xc7\xe8\x38\x45\x8e\x78\x57\x9d\x77\xdb\xd6\x42\x11\x66\xf3\x5a\x00\x3b\x4e\x13\xc2\x12\xb3\xf7\xb0\x06\x9f\xde\xa6\x14\x4c\x22\x51\x2d\x6f\x7d\x9e\x26\x2f\x7a\x17\x3f\xaa\x41\x6a\xcf\x93\x19\x19\x42\x62\x09\xfa\xe8\x45\x4a\x38\xb8\xf1\x23\xbb\x66\x9b\xed\xcc\x75\x7b\x0c\xa7\x42\x1f\x15\x34\x02\xbe\x9e\x28\x4b\xee\x6c\x2e\xa6\x99\xed\x98\x3c\x94\x31\x58\x63\x59\xf9\xa9\x9e\x9a\x98\x6b\xde\x84\xa7\x6f\xa5\x37\x85\xd1\xbd\xab\x17\xee\x5d\x1f\xea\xe4\x85\x29\xca\x22\x65\x15\x3c\x6c\xed\x8f\xb7\x02\xa8\xe2\xf1\xb5\xc7\x3c\xdc\x33\x76\x1d\x14\xa8\xb1\x77\x1c\xd0\x5d\xc6\x23\x8a\xb5\x72\x44\xb9\x11\x52\xb7\xdf\x76\xb7\xaa\x72\xf4\x26\x98\x6d\xa1\xea\x8e\xac\x86\x09\x42\x48\x7d\x45\x85\xa3\xfa\x26\x16\xd9\xa6\x05\x2a\x82\xdb\x3a\x04\xfc\xcc\xe0\x33\xdb\x1a\x5e\x1b\xeb\x75\x6c\xff\x38\xf4\xdf\xd7\x89\xf4\xcb\xf4\xd7\x58\x2e\x35\x52\xd1\xfa\x75\x6d\xb1\x73\x4b\xa5\xce\x7f\x34\xf1\x12\x77\x36\xf3\xb2\xd7\xb3\x22\x19\xcd\x3e\xe9\x91\x72\xfd\x3e\x35\xf9\xe2\x77\x35\x3b\x76\xd1\x65\x69\x43\x81\x5a\xbf\xa1\x52\xa0\x6f\xd4\x99\xf7\x74\xed\xa2\x29\x63\x9f\xbb\x88\xe8\x65\xa0\xe3\x9e\x7d\x60\xfc\x95\xa7\x45\xdf\xb6\x57\x15\x78\xe6\x1d\xad\x4b\xfb\x4e\xf4\xe9\xc9\xb4\xbd\xb0\xb1\x65\x3a\x4e\x07\xaa\x38\x14\x39\xa0\xe4\x7c\x6d\x14\x82\xd1\xaf\xe8\x64\xe3\xfa\x84\x18\xcb\xc2\x4c\xb3\x9b\x36\x02\x31\x74\x7d\xa4\xec\x3b\xd6\x27\x66\xf8\x81\x03\xcd\x61\x9a\x2d\x99\x61\x1a\x3b\x1d\x69\xb2\x39\x80\xe0\x0c\x6b\xf4\x3b\xc5\x13\xa5\x11\x8e\xcb\x4b\x78\x8f\x02\x56\x7a\x4a\x69\x60\x74\xfa\x2e\x71\x79\x01\xb4\xd7\x98\xf6\x16\xa6\xeb\xbf\xc2\xaf\x12\xbd\x50\x1a\x72\xc4\x54\x0d\x85\x3e\xee\x96\x9d\x25\x28\x2f\x09\xf6\xb6\xe1\xad\x79\xbe\x13\x7d\x52\x61\x53\x06\x43\x53\xb8\xb6\x8b\x5d\xc1\xfc\x0f\x96\xa2\xc0\x16\x21\xba\x14\x12\x9b\x64\x50\xe2\xde\xb3\x87\x63\x47\x56\xa6\xe5\x9b\xb5\xb0\x92\xf2\xb2\x9d\xa5\x45\xaa\xd3\x24\x04\x17\xf8\xa7\x58\x23\x8c\x6a\x1a\x4b\x93\x96\x9c\xc1\x3c\xc2\x79\x7a\x73\xa4\x0e\xed\x9b\xd1\x33\xfe\x0b\x5c\x52\xc5\xa9\xae\x67\x0a\x56\xe5\x13\x2a\x48\xc3\x4b\x90\x9e\x1b\x57\xd8\x4f\x0c\x96\x02\x8e\xf9\x77\x34\xe8\xed\x9d\x28\x74\x0a\x72\x13\xdb\xfc\x29\x55\x31\x1b\x3b\xeb\xcf\x44\xba\x01\x4e\x03\xa6\xd0\x64\x02\x1c\xbd\xa3\x5c\x68\x41\x0b\xf4\x41\xcb\xae\x59\x4f\x57\xa5\xfa\x2c\xaa\x22\x6f\xa0\xf6\xca\x37\x80\x8b\xe0\x86\x95\x72\xd9\x6e\x04\x41\x13\x58\x7e\x77\x94\xf5\xf7\x19\x6e\x49\x49\x3e\xd9\xf0\x8a\x10\x87\x23\xa5\x97\xff\xf0\x5a\xa0\x25\xbd\x3f\x0a\xa7\xe3\xf6\x96\x96\xb4\x77\x09\x05\xd6\xca\x27\xfd\x3e\xbd\x2e\xbe\x56\x35\x99\x76\xd9\xed\xd9\x22\xdf\x12\x2a\x48\xc7\x46\xba\x78\xa5\x2a\xfc\x47\x14\x76\xf2\x26\x7e\x3a\x7f\xa2\x4e\xae\xb7\x3a\x4d\x44\x26\xd7\xcb\x80\xf9\xc8\xf3\x92\xce\x6e\x78\x0b\xc1\xef\xc7\x1b\xe3\x43\x9c\x6f\x46\x8f\x8f\xb1\xb8\xba\x64\x04\xe5\x89\x63\xbe\xf2\x7c\x2e\x92\x6a\xf3\xc0\x25\xce\x54\x29\xf5\x21\xd9\xd3\x10\x78\xdc\xd1\x72\xc7\x77\x82\x5f\x80\x89\x63\x81\xd5\xe1\x78\x61\xeb\x18\x9c\x5e\xf0\x30\xf5\x10\xde\xcf\xbf\xe0\xe5\x9a\x7d\xc0\x1f\x97\x83\xe1\x16\xa5\x54\xc3\xe2\x0c\xca\xb2\x20\x90\x13\x43\x8e\x8f\xa6\x9c\x14\x6b\xbd\x50\x84\xcb\x62\xbc\x10\x61\x4c\x28\xbe\x20\x47\x70\x58\x83\x4f\xb5\x42\xd6\xba\x6d\x2d\xe0\x96\x4f\xfb\x5f\xb6\x64\x07\x43\x48\x7c\x4b\x8b\xe4\x2e\x2a\x98\xde\x2a\xcf\x47\x68\xa8\xda\x61\xdb\xfe\x93\x89\x53\xa2\x0a\xb5\x9b\x31\xe4\xb9\x75\x69\x0e\xa9\xa5\xd4\xe9\x42\x15\x6d\x60\xbb\xce\x2e\x9b\xb8\xa1\x5c\x30\xae\x62\x27\xe0\x1b\x05\x96\x6a\x5b\x97\xf4\x1e\x0b\xb3\xfc\xf1\x9f\x0f\x4c\xa2\xff\xea\x09\x16\xeb\xf0\x0c\xd1\x05\x11\xe5\x3f\xa3\x8a\x29\xdb\x5b\x1e\x4a\xf1\xc1\x0e\x34\xff\xd1\x49\x65\x8a\x2e\xf2\xad\x1b\xaa\x4d\xb8\xb9\x55\xad\x64\xbc\xa1\xd3\x18\x62\x2f\x49\xfa\xa5\xe7\x42\x1b\x6c\xf7\x9c\xb7\xe9\x0b\x8c\x8a\xdc\x75\xed\x8a\x59\xcd\x1b\x41\xea\xe1\x2d\xac\x1b\xbe\x51\x59\x93\xc9\x57\x1f\xf2\xfd\xaa\xa3\x80\x00\x00\x9e\x71\x73\x34\x46\x1f\x6e\xec\x9f\x59\x67\x25\x09\x7c\x3b\xfc\xd3\xb0\xe2\xfe\x14\x33\x4a\x15\x47\xe6\xb9\x33\x74\x97\x14\x84\x44\x93\x6f\xac\xc0\xdc\x37\x1b\x54\xa3\xaa\x71\x11\xd5\x28\x81\x69\xad\xd8\x38\x7e\x54\xa9\x80\x31\x21\x46\x68\x24\xf4\x19\xc0\x5f\xb8\x14\x8e\x33\xed\x3e\xed\x84\x22\x4e\x59\x0d\x19\x1e\x07\x84\x7c\x19\x32\xda\x26\x84\x2c\xa9\x90\x34\x1f\xd1\x9b\xa0\xf5\x3d\xff\x24\xed\xaf\x40\x26\x7f\xa6\x15\x82\xdc\xe9\xb5\x9a\x7a\x55\xbb\xcc\x11\x3b\x32\x1f\x4a\xa9\x9c\x5d\xd4\xba\xf4\x99\x4d\x0a\xd7\x61\x91\x69\x5e\x87\xda\x66\xec\xbc\xea\x60\xdb\xa4\x67\x7a\x56\x43\x0b\x2f\x29\x3b\x2d\xf6\x8e\xc1\x73\xdf\x55\x1b\x57\x66\xdb\xa5\x83\xdf\xfd\xfa\xf1\x88\x00\x96\x4a\x1c\x36\x4e\xc9\x1d\x54\x35\x8c\xc0\xec\xe4\xeb\xf1\x26\x8e\x6b\xe3\x41\x45\x63\x96\x3e\x25\xe2\xb3\x4f\x69\x0f\xdf\x25\xd3\x4f\x63\xd7\x41\x84\x2e\x92\xc9\x0d\xaf\x0f\x7e\x4e\x01\x13\xcc\x62\x66\x1c\x36\x4b\xb1\xb5\x09\x1d\xe9\xc3\x51\xc8\x8c\x20\x6a\xe9\xc1\xf0\x88\x91\x85\x32\xac\xd4\x41\x8c\xcb\x6d\x4e\x85\x25\xc1\xc8\x2a\x2e\x0f\x4a\x68\xd8\xe4\xfe\x9a\x0e\x36\x79\x2b\x61\x29\x64\xc6\xd1\x20\x7b\x47\x5c\x6f\xd4\x77\x7b\x14\x74\x38\x6e\x2a\x36\xae\x29\x0a\x57\x94\xdd\xb1\xf7\x78\x5c\xbf\xc7\xe3\x13\x55\xde\xd9\x7d\xcd\x4e\x96\xe6\x79\x96\x1a\x71\x90\x65\x51\x19\x25\xe9\x7e\x73\xe2\x63\xd8\xe1\xca\x25\xbb\x62\xb2\x81\x32\x1c\xbb\xac\xdc\xac\x2f\xd7\xe1\x17\x16\x6d\xfb\x33\xaa\xe6\x7e\x49\xd7\xdc\x27\x2b\xd7\xc4\x7f\x85\x98\x2f\x38\x5d\xa2\xb8\x51\x7d\x23\xce\xd3\x5b\xd1\x58\xe2\xad\x14\x3a\x82\xa5\x4a\x3b\x73\x85\x71\x68\x0a\x48\x10\xd6\xf0\x9a\x79\xe7\x27\x92\xc8\x9d\xcd\x45\xa7\x40\x8e\x5c\xf6\x8e\x82\xa7\xfa\x99\x91\x36\x8e\xcf\x6c\xa7\xf0\x42\xc3\x38\x54\x6e\x6a\xa3\xe5\x9b\x13\x99\x87\x24\x04\x76\x9a\x14\xc2\xb0\x2b\xbf\xac\xba\x58\x80\x38\xa3\x6f\xf2\xfa\xa8\xf1\x5f\xec\xf5\x66\xbd\x61\x7e\x2c\x2f\xaf\x6e\x0d\xf3\x10\x2d\x6f\xb6\xd1\x42\x78\x25\x1c\x17\xa5\xe6\x00\xee\x39\x1b\x37\x68\xdd\xb7\xf3\xe3\x86\x2e\xb6\x43\x2b\x41\x8a\xd5\xd5\x04\x95\x22\xb6\xe8\xe5\x24\xd6\xf5\xfa\xed\x34\xeb\xa7\x69\x97\xfb\x3f\x0c\xdf\x18\xf3\xd4\xae\xbe\x4f\xa8\xfc\x7a\x75\x74\x5d\x8a\xbc\x42\x68\xfb\xf4\x94\x7c\xa3\x56\x71\xde\xe9\xaf\x58\x57\x1c\xb2\x59\x43\x89\x63\x9d\xd3\x34\xe2\x73\xd0\xe6\xf6\x11\x7e\x66\xfb\x36\xc9\xdd\xb2\x9d\xd6\x87\xe1\x61\x05\xd9\x82\x0c\x2c\x22\x86\x6f\xe8\x8c\xf3\xb2\xc7\x5f\x78\xf5\x4c\x13\x13\x64\x45\x7a\xf4\xd5\x1f\x41\x42\x7b\x5d\x75\x1a\x8f\x2b\xe5\x4d\x12\x8f\x68\xbb\xc4\xb0\x59\x00\x5a\xc7\x6c\x56\xc9\x37\x75\x3a\xa4\x6d\x93\x2c\x59\xef\xc4\x84\x00\x64\x73\x4b\x45\x23\x9b\xd7\xd4\x39\x59\xa2\x6b\xe4\x41\x64\x7b\xf6\xc8\xb5\xf6\x47\x88\x63\xdb\x33\x89\x84\x8b\x22\x42\xa5\x15\xa9\x6a\xec\x84\xe6\x9b\xfd\x34\xcb\x45\x4c\x18\xa7\x2f\xef\x5e\x7c\xa3\xba\x68\x4b\x49\xba\x92\x13\x76\x5b\x50\x82\x14\x32\xf1\x8d\xaf\xb5\x0f\x5d\x9a\x58\x1b\x24\x71\x70\xe4\x01\x35\x84\xad\x1b\x1c\x2f\x39\x99\x03\xcd\xbc\x9d\x26\xdd\x87\xc7\x8d\x49\xf6\xec\xf1\xae\xa7\x2a\x55\xfc\x83\x91\x52\x38\x04\x1d\x0e\xdf\x32\x02\xd7\xc1\x93\x85\xab\xb5\x81\x95\xf9\x23\x2d\x13\x00\x6e\x39\xb2\x18\xd4\xae\x70\x4a\x6c\x5e\xab\x01\x12\xe6\x43\x58\x6e\x57\x23\xc4\x00\x5f\x6c\xb4\x82\xf6\xad\xd9\x68\x87\x7d\x17\xa7\x79\x3a\xec\xa3\x02\xc0\x80\xf2\x28\x54\xe3\x2e\x8e\xab\x4b\xc5\x96\x7d\xb6\xb0\x7e\x38\x22\xe1\x1b\x0f\xed\xcc\xac\x6d\xa7\xec\xdd\x8e\xc0\x0d\xf9\x10\x5f\x6f\xc4\x23\x56\xaf\x77\xcf\x9e\x05\x5e\x1a\x82\xe0\x50\x49\xd7\x4d\x25\xa1\x76\x9d\xc2\x16\x51\x85\xd9\xb8\x9d\x7f\x71\xb6\xb9\x68\xe2\x58\xb5\xa8\x4f\x61\xe3\xe1\x1b\x45\x0d\x2b\x13\x3b\x18\xc6\xe9\xea\xc0\xb2\x50\x90\xe8\xda\x05\xc4\xf9\xf9\xb1\x43\x3e\xb1\xdd\x4f\xd1\x43\x21\x4e\xfa\x3a\xbd\x0f\x9c\x46\x6f\x46\x63\x05\xf3\x6a\x9f\xf2\x87\xc9\xfc\x82\x97\x10\x27\xd8\x0f\xca\x52\x3f\x01\x04\x43\x5c\x3b\xe8\x19\x91\x95\xde\x23\xfa\x0c\x26\xdd\x8d\x48\x89\x1e\x5c\xd7\x44\xa4\xbb\x14\x47\x73\x4e\xd9\x6a\x68\xa9\x9b\x6a\x62\x89\xea\x5d\xb5\x08\xd0\x11\xb9\x81\xc2\x93\x28\xdb\x37\xbc\xc2\xdf\x98\xf6\xd9\xe6\x35\x9a\xd6\x63\x09\x35\x56\xfa\xbf\xa4\x80\x4f\x1c\xed\xaa\x77\x00\xdc\xcb\x4d\x80\x9c\x30\xc7\x4e\xb0\x84\x17\xce\xbe\x1f\xd6\xe9\x05\x0f\x5d\x41\xec\x72\x25\x6a\x79\x1c\x4b\x46\x6c\xa6\xea\x0a\x38\x7d\x37\x0c\xfa\xce\xc0\x80\xa2\x82\xc8\xd7\x6a\x77\x66\xef\x47\x9b\xd9\x31\x25\xb3\x91\x56\x32\x9b\x38\x5e\x17\x66\x9a\xb1\x23\x8f\xdd\xc6\xc2\xcc\xc7\xbf\xf1\x44\x95\x8c\x7d\xfc\x1b\x4f\xb4\x94\xc1\x5a\x91\x0e\x7b\x66\x88\x27\x40\x31\xe4\xac\xb2\x22\x3b\xeb\xe9\x50\xcb\x36\x5b\x7d\x44\xd1\x33\xde\x19\x05\xe4\xe6\x96\x35\x55\x64\x78\x7f\xa4\x20\x0f\xf7\x03\x5e\xef\x8b\xbf\x4c\xfc\x26\xf1\x46\xf3\x71\xf6\xcb\x1f\xd1\x2f\xa6\xf4\xeb\xb9\x9f\x27\xec\x3b\x7e\x3d\xeb\x49\xa8\x28\x7d\xde\x6b\xb9\x84\x68\x77\xb1\xcc\xbc\x5a\xba\x68\xc3\xd1\x3f\x15\x89\xec\xb0\x93\xff\x62\xd9\x9f\x0a\xa1\xcd\xbb\xf8\x67\xde\x3e\xf0\x4b\xcf\xf9\x88\x31\x24\x54\xcb\x06\xa5\x40\xea\x78\x08\x58\x66\x1c\x3b\xee\xad\x9f\x3e\x50\xf5\x8b\xbc\x1c\x0c\x0c\x93\xcc\xd0\x09\xba\xac\xd4\xd5\x2f\xab\x4d\x97\x80\x42\xa1\xb4\x04\xef\x3d\x21\x83\x87\xe2\x11\x49\x93\x6c\xa3\x22\x0d\x1f\xac\x91\x12\xeb\x82\x93\x26\xab\x33\x63\x3d\xc9\xf1\xab\xca\xdd\x20\xf6\x49\x0b\x83\x7e\x05\xe2\xa1\xbb\x75\xb0\xfd\xc2\x25\x8e\xaa\xbc\xd5\xfa\xc2\x5b\xfb\x1e\x7d\x0d\x5f\x2b\xb4\xa9\x5d\x76\x8c\x90\x92\x44\x21\xf4\xba\x2f\xf8\xea\x87\xe9\xf5\x32\x9b\x57\xd1\x42\xbc\x3a\x15\x2c\x36\xcf\x2a\xfa\xcd\xa6\x56\xa8\x16\x5c\xaf\x55\x9d\x4f\xe3\x8e\x49\x52\x45\x00\x45\x1f\x40\x04\x44\x1f\xf5\x0d\xe7\xac\x38\x84\x1a\x21\xf6\xd7\xdb\x91\xd2\x59\x3b\x4f\x51\xbd\x8c\x90\x92\x88\xc8\x2c\xac\xdf\xbd\x5b\xcd\xfb\xca\xdf\x46\xdb\x21\x0d\x4d\x56\x24\x36\xa3\x1e\xb1\x80\xcd\x01\xf1\x42\x1a\xfb\xee\x48\x79\x6e\xfe\x19\x56\x04\xdf\x28\xf5\xb3\x33\x4a\x24\xe5\xf5\x91\x12\xf6\x89\x94\x8e\xf2\xbb\x13\xf8\x18\x6a\x83\xa7\xc9\xa2\xeb\xda\xa4\xc3\xbd\x14\xaf\xa6\xee\x67\xcf\x25\xed\x8b\x52\xf4\x63\x92\xa6\xa2\x07\x11\x85\x93\x00\x00\xbb\x50\x5f\x58\x61\x71\xb4\x46\x38\xa6\xae\x2a\x6a\xcf\x55\xb5\x4e\x56\xfa\xae\x58\x4c\xb3\x6e\x43\x01\x3e\x50\xc5\x11\x79\x85\x1a\x16\x43\x3f\x1d\xc2\x01\x54\x4c\x46\x68\x46\x8b\xcb\x48\x98\xfb\x9d\xd8\x2d\x2e\x4e\x8f\xc9\xe5\xe3\x4c\x15\xbd\xfc\xea\xcc\x90\xde\x72\xc0\x78\x4d\x92\x51\xbc\x94\xeb\x67\x1a\x1a\xd4\x4c\x60\x7e\xa9\x76\x6c\x8c\x26\x16\x66\x9a\x2e\xa9\x26\x46\xee\x37\x6a\xf4\x99\x7f\x10\x85\x9e\xf3\x0f\x14\x1f\x34\x33\x1d\x4b\x51\x9d\x3e\x0b\xde\x53\x54\xe1\xf7\x14\x73\xd0\x25\x9d\x6d\x81\x47\x24\xbf\xcb\xbb\x26\xcd\xcd\x71\x7e\xff\x7d\x3e\x81\xc6\x22\x2b\x29\x66\x34\xbc\x83\xc7\xf4\x9a\x52\xe7\x7c\xa2\xa5\x13\x8d\xb8\x6b\x1a\x61\x86\x9d\x50\x0a\x51\x27\x94\x25\x66\xd7\x2e\xc6\xb6\x53\x28\x63\x91\xbb\x38\xab\xf9\x46\x6d\x5c\x03\xd3\xb5\x8f\xd3\xd7\x01\xc0\x0b\xdc\x11\x76\x9a\x2d\x54\x28\xc3\x0e\x8c\x57\x22\x4a\x3e\xea\xac\xbf\x3c\x0a\xdd\xc9\xdb\xf8\x45\xf8\xf4\x4d\x44\x17\x5e\x57\xb7\x3a\x88\xf9\xbf\x44\x8a\x45\xb1\x75\x4d\x8b\x32\x44\x5a\x3b\x97\x00\x17\x9c\x8d\xdc\xa4\xd7\x8b\x76\xc3\x49\x25\x58\xda\xb5\xcb\x8e\x45\xe7\x76\xed\x0a\x53\xd6\x23\x0c\xce\x8d\xf5\x93\xdb\xae\x43\x8d\x13\x24\x74\xa7\x28\x52\x10\xd1\x8b\x09\xd2\xa2\xa0\x8b\x6a\xb4\x21\x32\xdb\xb1\x6e\xd9\xb4\x63\xab\x32\x96\x77\x68\x0f\xe3\x6b\x8f\xdd\x2b\xfa\x99\xb5\x83\x34\x29\x70\x3e\xa8\xad\x61\xaf\xdf\x3f\xc2\xe1\xd6\x8b\x61\x47\x2e\x31\x8a\x72\x22\xf8\x61\xa4\x29\xe8\x59\x37\x5e\x9d\x0e\x39\xf9\x71\xe5\xe0\x7f\x51\xb7\x04\x8e\x2b\x31\xd6\x8b\xa3\x9f\x7f\xc0\x52\x82\xb6\xfa\x40\xec\xda\x30\x3a\xac\xbb\xc8\x37\x0f\x54\x54\xce\xcc\xea\x20\x4d\x20\xc1\xa9\x09\xb9\x92\x45\x2a\xd1\x90\xdb\x75\xdc\xd4\x97\x52\xc7\x5f\x0b\xd8\x0c\x40\xcc\x7c\xad\x02\xfc\x34\xb3\x3d\x06\xb1\xf1\x6c\x8b\xf4\xcc\xd3\xaf\xd9\x9a\xee\x13\x0a\x98\xf0\x67\x88\x02\x25\x23\xa5\x95\x80\x30\xf9\xba\x12\x83\x3f\x81\x38\x57\x70\xe6\xb4\xec\x11\x69\x3f\xd6\x0a\x22\xb2\xe7\x79\x09\x8b\xed\x5c\x58\x2d\xd7\x15\x6c\xe8\x1e\xe6\xbe\x18\xd5\x55\x4b\x07\x55\xec\x9f\xe0\x44\xc1\x3a\xdc\xba\x46\xa7\x32\x73\xdf\x46\x8a\xb9\xc9\x8c\x27\x14\x4f\x6e\x79\x7a\xbd\xc9\x0a\xce\x43\xd8\x3d\x72\x14\xf6\x96\xc7\x5b\x61\xf6\xdd\xd5\x69\xda\xbd\x1a\xb4\x51\xb3\x6d\x4d\x89\x8e\xde\x6c\xb0\x47\xf6\x26\xb4\x17\x26\xf6\xf9\x03\x07\x9a\x99\xeb\xa4\xd3\x01\xd1\xfe\x32\xbe\x83\x0d\x2a\x95\xff\x10\xc8\x1d\xe8\x34\x9d\x51\x45\x25\x32\xc3\x76\xac\xc5\x84\xcd\x86\xdd\xb6\xf8\x66\x6c\xa5\xae\xf4\x57\xc9\x73\x8d\x89\xf4\x74\x38\x60\xa5\x7e\x4f\x39\x66\xbf\x35\x52\xe8\x24\xe8\x9b\x21\x1a\xfd\x36\xd5\x08\x59\x5d\xba\xce\xc3\xe5\xd3\x0a\xcd\xd6\xd8\x08\x5a\x93\x9b\x89\xa3\x67\xdf\xf3\xcd\x9e\x4b\x72\x9b\xf4\xe8\xc4\x43\x73\x05\x38\x63\xbe\x6e\xd5\x48\x65\x03\x4c\xd5\x61\xf1\x26\x7f\x5c\xcd\x05\x1b\x92\xc0\x29\x22\x77\x61\x36\x39\xc0\x40\x43\xdf\x8a\xaf\x95\x2c\x52\xe1\x7a\x36\xcb\x95\xc2\xf4\x19\x95\xc6\x9e\x79\x20\x3c\xf5\x90\x71\x85\xd1\x66\x3d\x50\x32\x95\x4e\x2e\xfd\x7c\xfc\x87\xcd\x2a\xc1\x20\x91\x02\xc8\xd2\xcf\x7a\x15\x26\x1a\x7b\xbe\x99\x28\x45\xce\xee\x6b\xb6\x33\x6b\x96\x16\xc5\xd3\x08\xff\xf0\xb6\x52\xb0\x0d\xf6\x85\x65\xd2\x37\xc3\xa1\x63\x8c\x07\xde\xf3\xb9\x48\x69\x82\x9c\x1b\x13\x9c\xb2\x66\xc9\x66\xf9\x54\x08\x19\xb9\xbc\xe5\x6b\x76\xde\xc0\xe6\x6a\x9d\x6d\x12\x55\x79\x6c\x97\xbf\x0d\x40\xa7\x97\x95\xd7\xca\xcb\x1e\xcb\xd9\xb5\x31\xa4\xb4\xf6\x4b\x0b\xe1\x3d\x65\xb6\xfe\x5e\x9d\x47\x51\xd7\x2d\xbb\x5c\xd0\xb6\xde\x54\x6e\xce\x3b\xd4\xd5\x8b\x25\x9a\x01\x9d\x25\xde\x1a\xef\x48\xa4\x20\x7a\x47\x26\x0a\xc3\xb4\x82\xf3\x62\x8a\xd2\x69\xa1\xaa\xd0\x66\x82\xed\xb0\x3f\x46\xd2\x94\xca\xc7\x30\x8d\x1d\xe3\x0c\xf0\xb6\x61\x0d\xc0\xd7\x3e\x47\x1c\x18\x17\x6f\xa5\xaf\x07\xaa\x1a\xd4\x71\xd4\xfb\x1e\xc7\x69\x2d\xb2\x4d\x0d\xb1\x08\x7f\xf2\xef\xb4\x94\x74\xe2\x39\x3a\xed\xd7\x2f\xfb\x6f\x3e\xe8\x92\x7e\x09\x87\x42\x4c\xb4\xb7\xf5\x3a\x9b\xc4\x37\x57\x43\x32\xcc\xd2\x65\x87\xda\xbc\xb0\xcb\x8a\x28\xd4\xcd\x8a\x51\x68\xf6\x77\xcc\xd0\x10\x46\xc1\x59\xcc\x0a\xb1\x5b\x08\x49\xf8\x5f\xa2\xf4\x80\x08\xed\xcc\xc4\x80\x1e\x38\xd0\x1c\xd8\x9e\x99\x0e\x01\xcf\x05\xad\xc2\x73\x8c\x22\x0a\x1c\x62\x7f\x4a\x01\x0f\xb8\x72\x77\xea\xc4\x60\x87\x36\x5b\x4c\xb3\x01\xb7\xa7\xf1\x12\x4e\xd2\x18\xf2\xb5\x0a\x8a\xf3\x32\x37\x09\x57\x1b\xb1\x5b\x9d\xd5\xc0\x83\xb3\xd1\xd3\x4a\x63\x77\x18\x9b\x0e\x1d\xd2\x64\xdd\xa9\x8d\x65\xf4\x9e\x22\xb4\x20\x4a\xbb\x59\xd3\x31\x0a\x60\x64\x48\xf8\x8a\xd6\xa3\x86\x7a\xc4\xb1\x69\xa7\x59\x50\xf0\xc5\x6a\x42\x60\xca\xd7\x13\x3f\x77\x67\x73\xc9\x66\x9d\xbe\xb3\x8b\xb6\x3b\x55\x45\x60\x38\x0f\x58\x3b\x10\x33\xf3\x7f\x1a\x05\x69\x84\xb3\x2a\x91\xdf\xfd\xb9\xbd\x5b\xf0\xcb\x21\xe6\x75\x23\x52\x08\x7d\x22\x87\xae\x5f\xa6\x19\x26\x7a\xb4\x34\x30\x38\x64\x2e\xa8\x2d\xb3\x93\x96\x79\x75\xae\x54\x5b\x26\xe6\xc6\x77\x14\x98\xe0\x3b\x75\x70\x40\x5b\x85\xc7\x62\x56\xee\xc7\x45\x0d\x9e\x2a\x1c\x2f\x2e\xd2\x94\x42\x19\xf1\x43\x6d\xfd\xf7\x2d\x05\x0e\xfe\x59\x14\xdc\x2d\xdc\xa0\xcd\x92\x30\xc8\xd2\xef\x28\x58\xd8\x58\xf6\x8e\xe3\x0f\xa4\x88\xe3\x5e\x8a\xd0\x1e\xec\xb8\x82\xfc\x00\xf6\xec\xe1\x05\xb5\x03\x02\xdb\xd8\x41\xb6\xd2\x79\x23\xc2\xc2\xd5\x9f\xc3\x14\xff\xf1\xe8\x29\x3f\x59\xec\xc1\x22\x2b\x73\x78\x82\xe9\x1e\x79\xf5\x27\xa5\x45\x5e\x53\xa5\x6d\xdb\x4e\x3a\xb0\xba\x8e\x7d\x9a\x4e\x07\xbe\x0e\x7a\xc4\xc6\xad\x98\x04\x2e\xf2\xc8\x53\x9f\x64\xc3\x47\xc4\x6d\xe7\x11\xcc\x88\x60\x4a\x78\x89\x53\x6b\x55\xc8\x2d\xda\x50\x35\xfd\xae\xae\xc9\x96\xa6\x02\x3d\x1f\x43\x87\x6b\x86\x52\x49\xb8\x24\x67\x47\xdf\x64\x6c\x48\x16\xea\xe1\x3f\x43\x90\x27\x7d\x9b\xd0\xc1\xbc\x36\x91\x86\x93\xc8\xd9\xb2\xcd\x56\x57\xfa\x36\xb3\x60\xd6\x21\x8a\xfa\x48\xf5\x7e\xc0\xeb\x53\x07\xdf\xac\x37\x7c\x7e\x4a\x09\x89\xc5\xa4\x17\x57\x45\xe6\x2a\x1b\xa4\xa1\xe0\x1b\xad\xdd\xc4\x32\x9c\xc2\x94\x9b\x94\x3b\x98\x6f\x76\xba\x6a\xcf\x3c\x12\xa9\x3d\xf3\x88\x3f\xa3\xf2\xf2\x90\x49\x98\x66\x21\x54\x0c\x05\x87\xfd\x30\x0a\xf2\xba\xb1\x59\x19\xd0\xd1\x49\xec\x45\x4c\xc8\x0f\x30\x54\x4c\x3a\x50\x4d\x53\xfe\x99\xcc\xf7\x8d\x94\xc1\xd8\x45\xca\x9b\x10\x81\xfd\xbe\x32\xb6\xba\x18\x8d\x55\x16\x95\x66\x77\x9c\x2e\x9b\x25\x67\x88\xc6\xae\xb1\x0f\x02\x9a\x1a\x33\xee\x40\x95\x60\xde\xd7\x05\xe8\x9b\xb1\xe2\x5e\xa1\x57\xa9\xdc\xf6\xc4\x50\xe3\x95\x3a\x3d\xb8\x65\xd3\x2b\x31\x2e\xa8\x06\xa3\x24\xca\xd7\x35\x58\xea\x6e\xd9\x6e\xdb\xee\x96\x31\xa6\x74\x28\x7e\x70\xc7\x0d\x67\x22\xdc\xb4\xb0\x5b\xfc\x60\xa4\x8e\xbe\x4b\xaa\x49\x0f\xbf\x92\x87\x68\x63\xc2\x2a\xd9\x8c\x12\x2b\x76\x5f\x00\xb4\x10\xd8\x9d\x8e\xd4\x5c\x5b\x0b\xfd\xc0\xdb\xd8\xc6\xf1\xcc\xd7\x95\xc6\xc6\x8e\x96\xea\xc2\x1d\x8e\x42\x1d\xf6\xa4\x37\xec\xca\xcd\x20\x2f\x21\x79\x39\xef\x45\x17\x15\x6c\x6f\x92\x12\xeb\x8d\x81\xdb\x6e\x4a\xe1\x9c\x6f\x73\x56\x8e\x79\x71\x5c\x25\x1d\xe7\x15\x93\xbc\xc8\x5c\xde\xe7\xa3\x8c\xeb\x04\xba\x36\xfb\x96\xa2\xf6\xba\xa4\x5b\xe6\x45\xe6\x6c\x3e\xdd\x78\xf6\x59\x5f\xf5\xa2\x61\x44\x8f\xff\x54\x44\x45\x52\xa9\x81\x29\x46\xf3\x29\xa5\xbd\xd5\xae\x8e\x2a\xfa\x0e\x76\x60\xa1\x17\x2c\x6e\x2c\x8f\xab\xea\x6c\x66\x18\xbe\x28\x42\x23\x4a\xf5\x63\x1c\xd6\x52\xf6\xfa\x4f\x51\x24\xc5\x86\xf8\xc8\x1d\xc5\xeb\x95\x1e\x04\x69\xd9\x11\x48\x8c\x7b\xe3\xd6\xdd\xa1\x0e\xa0\x2a\x96\xe7\x23\xdd\x53\x65\xa5\x7a\x9c\x4c\x87\x51\x2d\x91\x32\x79\xf5\x0a\xa5\x2e\x41\x4b\x12\x5d\x8b\x47\xd6\xe8\xb9\xf1\x26\xa6\xd7\x02\x80\xe5\x21\x6a\xbf\x21\x0e\xd9\xb4\x16\xd4\xfd\x3f\x26\x9a\x2c\x2a\x82\xdc\x63\x13\x7d\xcc\xd0\xf4\xbc\x05\x25\x0a\x31\xfd\xdf\xb8\x16\x16\x66\x9a\x2b\x2e\xb7\x19\x0e\x55\x94\xeb\xdf\x52\xa8\xc1\xb7\x82\x6e\x6e\x75\xfc\x9b\xa4\x40\x43\xdb\x53\x24\x3c\x16\xfc\x53\x2d\x5f\x32\xfb\xb9\x67\x54\x3f\xb6\x9d\xae\x4c\x8f\x73\x20\x3d\x7a\xe2\x03\xe5\xcf\xf7\x9e\x6e\x18\x1c\x0f\x96\x9a\xfd\x34\x2b\x3a\x25\x54\x07\xc5\xab\x84\x9e\x55\x14\xe9\x1a\x5e\x31\xed\x94\xc2\x1e\x24\x69\x61\xdb\x29\xba\x7f\x02\x11\xb8\x8c\x4a\x3b\xdf\x28\x37\xdf\x9c\x22\xad\x3d\x7b\x38\x8f\xbe\x42\xaf\x18\x87\xe7\x79\x1a\x63\xec\x11\xa4\xd0\x38\xbf\x7e\x17\x2f\x4d\x54\xda\x02\x10\xe5\x5f\xab\x1d\xa1\xef\xc4\xe6\x60\xce\xb7\xda\x42\xeb\xe1\x27\xa3\xb1\x8e\x4e\x2a\xa8\x21\x56\x04\xc4\x50\xa0\x93\x06\xfc\x34\xaa\x00\x37\x14\x6a\xa8\x4a\x6a\xe5\x28\x44\x1b\xf2\xd2\x48\x43\x1f\xd9\x08\x51\x0c\x26\x9e\xd0\x16\x8a\xcb\xe9\x12\x10\xf1\x08\x53\xbf\x1d\x85\xdf\x70\x5e\x05\x0e\xa7\x6b\xa2\xf5\xf9\xe6\x62\x6c\x07\xa2\x73\x28\x56\x16\xf4\xbc\x7c\x33\x71\xee\xee\xd9\xd3\xec\xa6\x9d\xb2\x0a\x67\xa5\xc5\x82\x3a\xc0\x2b\x34\x22\x7c\xed\x4f\x39\x3a\x5a\x39\x30\xf5\xf2\xf8\x41\x2a\x3f\x92\x12\xc9\x4a\xfe\x12\x76\x04\x2f\x44\xbc\x3b\x08\x11\xd7\x68\x2b\x50\x2e\x28\x8c\x01\xef\xcf\x18\x68\x48\xba\xf1\xf4\x9f\xfe\xca\x74\x75\xf0\xb1\x29\x96\x2a\x53\x35\xd6\x7c\xcf\xe0\xab\xcf\x68\x1e\xdb\xe3\x6b\x3b\xc6\xb0\xd4\x65\x61\xb3\xfc\x51\xda\x5e\x84\xff\x40\xb3\xd6\x63\xf9\xab\x99\x88\xbd\xe6\x8f\x79\xe3\x10\x20\x92\x2f\x34\x7d\xed\x89\x35\xda\x1b\x7d\x25\xb1\xda\x44\xd4\x49\x14\x80\x05\xa1\x22\xf7\xbd\x91\x12\x01\x3d\x4e\xa7\x05\x3a\x83\x17\x51\x17\xc6\xe4\x9f\x6e\xd5\x54\x8a\xf2\x8e\xc9\xa4\x23\xaa\xa0\x27\xb3\x1e\x7a\x52\xc7\x28\xe9\x64\xe9\x4a\x77\x2a\xc0\xf6\x2f\x8e\x54\x47\xe1\xa7\xc0\x43\x8a\xba\xe3\x33\x8a\x05\x3a\x18\xb8\xbc\x8a\x5a\x6d\x36\x85\x5f\x2f\x3a\xf2\xa1\xa0\xc8\x87\x8a\x3c\xfe\x23\xfc\xed\xcd\xf9\xe7\xf7\x7e\x8a\x36\x64\x9f\x3f\x2c\xcc\xf0\xe1\xfa\xf8\x9a\x22\x6a\x1e\xc3\xce\x87\x4e\xd5\xb1\x48\xab\xb9\x8f\x77\x8b\x47\x01\x7d\xf9\xfd\xc8\x27\xba\xbf\xf9\x58\xb5\xed\xb2\x17\x21\xb6\xee\x8f\xa9\x73\x8e\xaf\xfd\x99\x32\xc1\x78\x8f\xe0\xab\xeb\x9b\x5b\xa8\x18\xca\xde\x48\x03\x0e\x2c\xda\xd5\x91\x7a\x79\x67\x69\xaa\x0a\x9b\x9b\x86\x08\x45\xb4\x6b\x94\x7c\x32\x4d\x05\x53\x04\x31\xc0\x65\x6a\x80\x09\xcb\x87\x16\x36\xce\xda\x87\x90\x8c\xfb\x4c\xb0\x7a\x77\x58\x87\x37\x35\x10\x2b\x1d\xd8\xbc\x70\x1d\x7a\x4f\xac\xc1\x18\x79\x2c\x69\xfb\x74\x14\x26\xfb\xf9\x89\x1a\xe2\x67\x9b\xb1\x25\x2b\xa8\x29\xbd\x5a\x1b\xa2\x33\xf9\x0d\x9e\x58\xac\x0f\x51\xd7\x6b\x97\x36\x9d\xaa\x22\xdd\x55\xc5\xa1\xbb\x2a\x7e\x6c\x9b\xd8\x24\x5e\xd0\xc8\x9b\x73\x79\x4d\xfd\x0b\x51\x40\x4e\xf4\x57\x87\x69\xd1\xb7\x05\xd5\xdb\xc6\xe1\x68\xca\xc0\xfd\x41\x4c\xa3\x9e\xcd\x4c\x8c\x5a\xf6\x98\x38\x01\xa6\xcb\xc7\x91\xb2\xed\x57\xb8\xf1\xb6\x3b\xd8\x5e\xa5\xbe\x0c\xb6\xff\xbf\xa6\xe0\x96\xaf\x27\xd8\x2d\x44\x2f\xef\xa4\xe3\x1e\xf6\x1e\x80\xbc\x67\x8f\xb7\xa8\x79\x44\x30\x28\xf3\xb3\xfb\x1e\x0e\x20\x9e\x0b\xea\x20\x9e\xc7\x01\x8f\x6e\xdb\x6d\xbc\x69\x3c\xdf\x37\x69\x01\xb0\xe4\x2b\x7e\x04\x57\x42\x78\xce\x7b\x7e\x4a\xb0\x6e\x3a\x89\x1a\x92\xe0\x4b\x68\x35\x60\x87\x7b\xab\x2e\x57\xb3\x3d\x41\xfc\x89\x82\x58\xf5\x60\xa2\xeb\x15\x7a\x34\x36\xe9\xb9\xc4\xda\x8c\x73\x51\x14\xb5\xfe\x86\xde\x35\x5f\xd7\x68\x98\xcf\x35\x73\x37\x18\xc6\xec\x7d\xab\x8f\x75\xa6\xbd\xaa\xe3\x29\x48\xcc\xb7\x4d\x96\xd9\x38\xa7\x3a\x0e\x4e\xca\x93\xf4\x2e\x30\x5a\x6b\x63\x6a\xb9\x58\x31\xa8\x1d\xdf\x7b\xa0\x7c\x41\x3f\x5d\x31\x19\xf6\x32\x0d\x69\xc3\xfe\xf3\x81\x2e\x82\x5f\x89\xd4\x41\x6f\x5c\xcc\xb6\x64\x0c\x75\x8e\x02\xbe\xea\x92\x76\x7f\x3b\x33\xf1\xdb\xbf\x38\xdb\x34\xc3\xea\x3c\xb6\x64\x06\x44\x74\xe4\xf5\xcb\x0f\x26\x49\x0d\xaa\x33\x8c\x43\x35\xec\x71\x77\x34\x33\xfd\xce\x68\xa3\xa2\xc6\xce\x66\x39\xdc\xd6\x50\x42\xca\xd5\x42\x97\x8e\x77\xe3\x4b\xcf\xf9\x3a\x55\xc3\x9b\x77\x42\x51\x93\x39\xac\x44\xa7\x45\x78\xf7\x53\xa5\xfd\xf3\x73\xad\x8d\xfe\x4e\xc4\x24\xe6\x63\xcf\x1d\x12\xf5\x2f\xad\x7a\x01\x30\x25\x53\x6f\x51\x88\x7c\xb3\xce\x6d\xb2\x97\x99\x65\xbb\x6a\x32\xe4\xc3\x9c\x0e\x45\x21\x1d\xba\x3e\xf1\xa1\xdd\x73\xcd\x41\x9a\xb8\x22\xf5\xa7\x97\xd4\xbc\x1a\x5e\xd7\xf5\x84\x27\x55\xb7\x33\x53\xf0\x5c\xc6\x84\x38\xa7\xa8\xce\xe7\xd4\xa6\xd9\xb3\x49\xb5\x45\x58\xd2\x04\xc0\x7f\x66\x12\x80\xb2\xf2\x95\x9c\xe7\xf4\x68\x23\xab\x6c\x76\x5f\x93\xdb\x00\xa2\x18\xa9\xb6\x97\x73\x13\x67\xe9\x2f\x50\xe1\xfd\xd9\xee\x67\x1a\x8a\xc8\x85\x9a\x08\x5f\xab\x06\x4b\xc7\x25\x87\x4c\x92\x62\xc1\xe8\xca\x93\x97\x1d\xf2\xca\xbf\xc7\x94\xe7\x4e\xcf\xc4\x71\x3a\x14\x5b\x36\xf6\xfe\x50\x86\x25\x93\xc5\x52\xa8\x85\xe2\x55\x00\xba\x0c\x50\x1e\x5f\x8f\x42\x54\xb9\x9c\xc6\xe5\x40\xac\x21\x24\x5c\x0e\x8d\x8f\x53\x1b\xc1\x76\x2f\x2c\xcc\x54\x93\x66\x4a\xe5\x7b\xef\x2a\xb5\xb7\x1f\x47\x8a\xdc\xf6\xb7\xbe\x1a\xd5\xb5\xb1\x59\xe5\xb7\x87\xed\x0a\x98\x3c\xbe\xf6\x9b\x03\xc0\x57\xa4\xbf\x33\xae\x25\x87\x73\x76\xeb\x9a\x52\xa7\x58\xa7\xad\x1e\x8b\xe2\x1e\xef\x98\xd2\x8e\x0b\xfe\xd4\xa8\x0f\x80\xe3\xa9\xf9\x75\x9d\xb4\x9a\xa9\x0b\xf3\xa1\x9f\xbc\x3b\xe0\x17\x6b\x38\x92\xf6\xe0\x30\xcd\xcb\x4c\x20\xa4\x78\x79\x27\x46\xea\x4d\x4e\xf6\xa2\xe6\xe6\x9a\x54\xb2\x6a\xaf\x36\xc8\xc0\x96\xcb\xd6\xd8\xb5\xa5\x86\xad\xce\xc5\x72\x60\x12\x57\x98\xcc\x19\x56\x29\x18\x53\xf1\x14\xe1\xa2\x10\x87\x7f\xac\x00\x05\xa6\x9b\x0e\x0b\xdb\x45\xc6\xe6\x37\x31\x85\x5e\x88\x02\x56\xf8\x6a\xa4\x3a\xbe\x57\xd5\xd2\x01\x1b\xcc\x82\xac\x8e\xe9\x7b\x6f\x14\x1c\x85\xef\x29\x2f\x1c\x68\x9b\x68\x40\x95\x76\xd7\x98\x18\x8a\xdd\x73\xcd\x2f\x97\x86\x38\x8a\xa1\xfa\x0f\x46\x19\x5f\x8f\x9e\x1a\x9f\x68\xbb\x76\x35\x77\xcf\x3d\x52\xbd\x62\xd4\x25\xb7\xb4\x82\x10\x35\x9c\x48\xbd\xf0\x9c\x9f\xe4\x53\x60\xfe\x20\x24\xdc\xde\x0a\xb2\x9f\xbf\x7a\x9b\x73\xac\x31\xdf\x1d\x4c\x2a\xb0\x70\x71\xcc\xdd\x1a\x85\xf6\xc5\x43\xad\xb1\x84\xb9\xe6\x17\xf5\x6c\x52\x3a\xae\xeb\x61\x0e\xb0\x7d\x34\xdf\xf8\x3a\x48\x95\xf0\xd9\x8c\x32\x23\xc8\x45\xbd\x16\x29\xf9\xd3\xd7\xea\xb6\x53\x53\x14\x76\x30\xf4\xd1\x17\x6a\xc9\x67\x15\x13\xed\xac\x3a\xcb\x3a\xfd\x70\x76\xeb\x7e\x82\xec\xa7\x52\x88\xed\xa6\x03\x97\x90\xb5\x6f\xa8\x8d\xb1\x3c\x0f\x22\x8f\x6b\x91\x3a\xf7\xde\x9e\xe8\xca\xee\x54\xa4\xcd\x54\xfc\xa1\x05\xf7\x4a\xa3\x25\x81\x89\x74\xaa\x7a\x69\x62\x29\x25\x93\xa6\x80\xd2\x30\x99\x22\xdc\x29\xc6\xea\x15\xec\xb2\xa8\x95\x5c\x1b\x2b\xf7\xc4\x43\x70\x4e\xa0\xdf\xfa\x54\x4b\x35\xe1\x51\xc6\xc0\x87\xb6\xaf\x05\xe2\xf0\x79\x65\x32\xd4\x8e\xd3\xce\x52\xbb\x24\x81\x12\xfa\xa5\xe2\xb5\xab\x40\x50\x77\xe9\xef\xa0\xc7\xb1\xa9\xf5\x48\xb0\x40\xf8\xdc\x14\x25\x2c\x08\xf7\x00\x9a\xf3\x99\x03\x4a\x0a\x35\xd8\xb9\x45\x57\x14\x1e\xd0\x87\x18\xf5\x8e\x12\xd3\x0a\xbc\xc3\xa2\x6f\x17\xe5\x4c\xc3\x34\xbb\x1d\xa9\xd6\xd2\x6d\x25\x1a\x68\x3a\xc5\x56\xda\xa2\x11\x7a\x1f\x1e\x85\x00\xf3\x3a\x96\xb9\x77\x68\xaa\x36\x17\x09\x16\x1b\x4a\x86\x53\x6f\xcc\xba\xe9\x6f\x12\x97\xb3\x6a\x30\xb6\x63\x88\xb7\x20\x6e\x63\xce\x9e\xe8\xe3\x4f\x86\x0f\x73\x84\x66\xef\xa7\x71\x37\xb0\x4b\xbc\x84\xd9\xfe\x19\xaf\x6d\x16\x64\xcb\x96\x5d\x4a\x36\x20\xbd\x29\x85\xa1\x02\xe7\x08\x25\x78\xa8\x29\xe0\x83\x27\x26\xaa\xc6\x2f\xcc\xee\x6b\xc6\x4e\x58\xf1\xda\xbb\x56\x64\x41\x27\x2c\xe7\x66\x45\x6a\x46\x61\x58\x8e\x23\xfb\xe1\x1b\xa5\x5d\xd4\xcb\xac\x85\xef\x13\xea\xc8\x1f\x44\x4a\xbe\xea\x83\x1a\xfa\xfc\x7c\x15\x01\x74\x4b\x27\x6f\x12\x35\x18\x26\x47\xf0\x4d\x9d\xb6\xf0\x8a\x8d\xe3\x46\x50\x8a\x05\x31\x54\xf2\xf7\x27\x95\xab\xaf\x8b\x89\x49\x4b\x2b\xc7\x23\x41\xf6\xec\xf1\x48\x90\x8d\x11\xcc\xce\x66\x6e\x56\x94\xda\x3b\x1a\x90\xd2\xbb\x0c\x1d\x4f\x8e\xe9\xa4\x66\x14\xa6\xfd\xaf\xcd\x4d\x35\x14\x07\x9b\x7e\x08\x36\xdb\x1b\x94\xe8\xa2\x6c\xb5\xb9\xf5\xa0\x78\x77\x68\x7b\x26\x67\xa8\xb0\xa4\x73\x5a\x6d\x4b\x51\xcf\xda\xe9\x6a\x57\x29\xc9\x7f\x4d\x99\x08\x7f\x4d\x01\x46\x4d\xb7\x9b\xd9\x9c\x39\x39\x42\xef\x09\x01\x0d\x73\x4a\xb0\x4c\xaf\xab\xe8\xa6\x57\x65\xb0\xe2\x8b\xc8\x5e\x78\x58\x08\x62\x8c\x17\xd0\x4b\x8b\x65\xd2\xad\x76\xc6\x85\x79\x1f\x26\x05\x4e\xd6\x39\x4a\xfd\x45\x4f\x21\xec\xbc\xb9\x59\xb4\xc5\xea\x16\xfa\xfb\xc0\x1c\xbf\x33\xd2\x96\x4e\x5f\x1d\x05\x08\x04\x94\xc5\x70\x74\x8f\xf5\xae\xbf\x3a\x31\x65\x3f\x4b\x0a\xbe\xb9\x35\x40\x8f\x08\x82\xa3\x7a\x8f\xd2\xe1\xaa\x33\x7c\xcf\xac\xa9\x62\x14\xb4\xb5\x99\xbc\x1c\x29\x60\xf2\x4f\x3c\x82\xa0\x63\xb2\x21\x41\x85\xc4\x06\x9b\x7e\x81\x27\xf5\x06\xc1\x77\x46\xdd\x89\x9c\xfe\x98\xf4\x8b\x1b\x4e\xd3\xa4\x14\x4c\x46\x80\x27\xdd\xc1\xcf\x13\x6a\x3b\xed\x84\x08\x66\xb4\x95\xb9\xe9\x0e\x5c\x01\xbd\x91\x79\xaf\x05\xfd\x53\xa5\x39\xfc\xd3\xf1\xba\xff\x30\xdf\x16\x62\x8c\x77\x69\x2a\xa2\xb4\x82\x16\x28\x3e\xc3\x2a\xa6\xfe\x3c\x0e\xf9\xcc\x0d\xfc\x2e\x29\x3b\x52\xdb\x06\x09\x8d\x36\xf9\x1b\xa6\x2e\xaf\xa6\xc1\xee\x39\x7f\x8c\x07\x58\xee\xdd\x48\xc1\x8d\x4f\x29\x51\x5f\x97\xf4\xd3\xbc\x8a\x88\xda\xb1\x6d\x50\xf9\x0a\x21\x27\x63\x3e\xf8\x46\x35\xad\x77\x7d\xee\xf9\x07\x1b\x28\x3f\xea\x4b\xf7\x22\x1f\x87\x90\xe4\x19\xda\x99\xf9\x7a\x6d\xb2\xd3\x4f\xec\x78\x36\xe0\xf7\x72\x43\x17\xc8\xe2\x5c\x95\x44\xc2\x80\x2e\xba\x86\x62\x20\x9f\x53\x71\xff\x39\xf5\xa8\x65\x06\x56\x1e\x6a\x83\x8f\xad\x85\x4a\xdf\xcf\x11\x87\x1a\x81\xe9\x1d\xda\x65\x64\x6d\x2a\xef\x4a\x0e\xda\xb1\x69\x6c\x9a\xd0\x1a\xab\x32\xd0\x76\xd9\x8b\xab\xe5\x5d\xfd\x05\x2e\xdf\xab\x41\x7f\x5d\x55\xd2\x27\xb1\xc6\xa4\xcf\xd1\xc9\xac\x28\x1d\x29\x36\xdd\x5e\xcf\xa6\xab\xf1\x20\xe8\xa4\x8b\x8b\x56\xf8\x74\x5c\x30\x56\xb2\x4e\x97\x15\x75\xf1\xf2\x48\xd5\xab\x8f\xd7\x39\xd2\x2e\xa6\x99\x38\xec\x63\xcf\x3d\xa5\x3a\x39\x75\x72\x47\xb3\xac\x86\xc9\xe1\x1d\xda\xed\xe7\x95\x2d\xd3\x79\x05\xa7\x1a\x98\xcc\xd9\x82\xa3\x6d\xe4\x5c\xcc\xad\xe1\x1b\x9f\x24\x0f\xe1\x43\x57\x8d\x83\x54\xc7\xe9\xa1\xa4\x6c\x3e\x66\x48\x95\x18\x72\x33\xc2\x64\xfe\x18\x91\x19\x0a\x12\x48\xad\x51\x3f\xe0\x0d\x00\x1d\x96\x63\xe3\x6a\xcb\x41\x0d\x09\x06\x5a\x68\x56\x35\xa0\xb9\xe5\xb1\x86\xb3\xfb\xbc\x39\xaa\xfe\xfe\x25\x9b\x91\x72\x2d\x0a\xad\x1f\x01\x4e\x85\xc0\xf3\x2a\x4a\x5e\x98\xe8\x4c\xf7\x95\x4a\x2e\xc5\x37\x52\xec\x43\xdd\xd6\xcf\xf3\x85\xf9\x70\x68\x85\x3a\xdb\x05\x2a\x93\xea\xf6\x39\xb6\x5d\xb8\xad\x8f\x79\x4e\x22\x59\x58\xa7\x1f\x83\xf7\xf0\x11\x7e\xb1\xc4\x89\x35\xfd\x89\x7e\x3a\xb4\x98\xbd\x9e\x52\x01\x5d\x37\x1c\x16\x77\x47\x63\x20\xb9\x3a\x81\xea\x3c\x35\x99\xee\x77\x41\x22\x8e\xaf\x6b\xf4\x8d\x9b\xc5\x8a\x13\x3e\x02\x82\x9e\x33\x8a\x26\x7c\x46\x35\xc8\x3a\x65\x0c\xec\x24\xde\xe5\xcf\xf0\x2c\x7c\xa3\xf8\x76\x83\xb4\xe0\x32\x9e\x48\x4a\x85\x1f\xf3\x04\xfd\x18\x84\x0f\x0f\xab\xfe\xe0\xe7\xf6\xce\x6c\x0d\xfd\x0b\xb0\x13\x11\x25\xdd\x1c\x29\x72\xe3\xf1\x51\x50\xa1\x7f\x5b\x37\x39\x1e\x62\x3c\x0a\xde\xff\xbf\xd0\xb8\xc9\x34\x59\x82\x4d\xdc\xac\x87\x2a\xd0\x5f\x14\x87\xbf\x30\xd7\x4e\xa8\xee\x4f\xbf\xc8\x1f\x0d\x01\xde\xcf\xad\x29\xf0\xc1\x2d\x2a\x9a\x79\xbb\x80\x40\xd0\xfe\x3b\x6b\x41\x74\x5f\x58\x01\xd4\x9d\xfe\x6f\xd8\x4d\x13\xc7\xf5\x09\x65\x5d\xc1\xbc\x1f\xfe\xc3\x0a\x11\xb5\xf3\x17\x69\x7b\x86\x45\xcd\x13\x6b\x8d\x5d\xbb\x3c\x29\xe1\x19\x25\x4e\x53\xb8\x7c\xd1\x74\x0a\x97\x26\x5b\x54\xbf\xfb\x52\x34\x56\x4a\x50\x92\xe8\x08\xd9\x7c\xc1\x21\xd0\xd0\xbe\xa3\x86\xac\x6f\x4d\xb7\xca\xfe\xab\xff\xea\x85\x6f\xfd\x0b\xb9\xac\x52\x5c\xfe\xf9\xe8\x67\x9e\xf5\xa4\x21\x68\xc0\xae\xa4\x59\xc1\x5c\x4e\x3c\xd6\x0d\xe5\x63\x79\xa3\x0e\x93\xb7\x68\x0d\xc2\x0d\xe8\x1a\xdc\xa5\x38\x89\xaf\x55\x54\x9d\x5b\x3b\xc8\x1f\xc3\xf8\x22\xbb\x44\xf2\x8f\x1d\xf2\x31\x48\xfe\xe1\xbc\xf8\x88\x1e\x56\x44\x19\xab\xa5\x8b\xa6\xfd\x55\x8d\xd1\x3c\xa2\x40\x75\x5b\xd0\x4b\x41\x14\xf2\x96\xb6\xa2\xbe\x04\x6c\x86\xd0\xff\x29\x97\xc3\x97\x1c\x56\xda\xd8\x63\x62\x36\x97\x26\x02\x2b\xdf\x78\xf8\xff\x96\xca\x6e\x3c\x7a\xa0\xad\xe9\xec\x22\xad\x4b\x04\x06\xdb\x5a\xa1\x48\xb5\xad\xc6\x6d\xa8\x69\x92\x82\xac\x6b\xb1\xe6\x25\xb4\x08\x1f\x9a\xc4\xca\x54\xfb\xca\x52\x92\xae\x50\xd1\x01\x75\xf6\xdf\xc3\x16\xcb\x37\xaa\xec\x93\x1e\x74\x5d\x77\xa8\x0a\x1b\x67\xf7\xf1\x91\x77\x18\x23\xc7\x37\x13\x04\x8b\xfd\x33\x4d\x97\x65\x36\xb6\xcb\x44\x09\xf7\xc7\xf3\x4f\x29\xe7\x13\x9d\xd7\x80\x8c\xac\x42\xeb\xac\x30\x4b\x92\x83\x61\x8a\x1e\xa7\x8d\x99\xaf\x27\x98\x0f\xd5\x40\x55\x11\x62\xe2\xf2\x22\x23\xd4\x56\x23\xa0\xc4\x10\xab\x88\xe6\x45\xd8\xf0\xb2\xb4\x6d\x41\xc7\x46\x75\x03\x60\x66\x6f\x2d\xe5\xfd\x76\x8f\xaa\xe4\x62\x05\xfe\x4f\x4a\x03\xe9\x8a\x6a\x5c\x6f\x6e\xa9\xf6\x17\x42\x11\x4c\x5a\xe6\x35\x22\xb6\x7c\x43\x97\x6b\xd3\xb8\x9b\x13\x90\xbe\xe1\xbd\x72\x38\xde\x17\x7f\xa1\x9a\x78\xa4\x9f\x16\x36\xe6\x18\xc2\x93\x0d\x7d\x18\x7f\x76\x2c\x70\x4b\x5e\x72\xd3\xf4\x23\xb1\xbc\x51\x06\xf1\x88\x5a\x9f\xba\xb2\xf2\x2a\xb3\x71\x27\x5e\xe2\xec\x3e\xe0\x8d\x5d\xc7\x99\x44\x01\xc0\x1f\x51\x48\xba\x47\xd6\x9e\x54\x32\x21\x71\xe9\x09\x35\x38\xf6\x8f\xaa\x10\xe0\xa8\x4f\x2e\x72\x82\x46\x7a\x5d\x36\x96\xdf\x42\xf5\x83\x1c\x81\xbe\xb0\xfe\xf8\x5a\x00\x66\x1e\xab\x33\xbb\xca\xe3\x32\xe3\x9e\xbf\xb0\x02\x1b\x81\x21\x38\xc1\x7e\x98\x9b\x6b\x0e\x4b\x09\x01\xc5\x4f\x45\x9b\xab\x28\xe0\x46\x3f\x8d\x5d\xd7\xac\x62\x9a\x88\x4b\x55\xa0\x66\x40\x76\x82\xb3\x15\x55\x82\x49\x56\xcb\x29\xd5\x19\xe6\xa6\xad\x54\x2f\x35\x29\x47\xcb\x74\xd8\x15\x5b\xfd\x8c\xdd\x01\xd5\xa6\xe0\x62\x67\x3d\x5c\xa6\xed\xb2\xa2\x5f\x3d\x54\xc3\x6b\x2b\xdd\x55\xb9\xf0\x11\x1d\xee\x5d\xf1\x05\xa4\x76\xe6\xda\x12\x42\x2a\xb7\x49\xd9\x31\x4f\x6a\x95\xad\xc2\x74\x5d\x39\xa0\x77\xc7\xee\x6a\xca\xab\x44\x2b\xd8\xd9\x83\x36\xeb\x10\x2e\xae\x11\x50\xfa\x5f\xa7\x87\xe1\xeb\x91\x52\x73\x8c\xab\xf5\x39\x00\xa0\x83\xd5\x39\x68\xfc\x44\xa9\x43\xb5\x60\xcd\x92\xcd\xb6\xab\x3c\x93\x3d\x2f\x71\x90\xfe\xe6\xb8\xd1\x11\x02\x3b\xcd\xf5\xc2\xf4\x39\x12\x8d\x43\x1e\xe7\x43\x05\x5f\x39\x7c\xde\x56\x80\x9e\x22\xab\x62\x62\x38\x2f\x4a\xb8\xac\xaa\xbf\x27\x34\xd9\xe8\xeb\xaa\x20\xfd\xb6\x72\x6a\xd0\x89\x5b\xe6\xd8\xdc\x01\x41\xe4\xff\x8c\x1f\xe1\x49\x45\xc1\x59\xe4\xa2\xf2\x76\xdb\xd2\xda\xb8\xf8\x3e\xdb\x2c\x93\x4e\xb5\x27\xba\x44\xb4\xc8\x91\x21\x1d\x1b\x29\xe1\x91\xf3\xaa\x85\x7e\x2b\x0a\x82\x1c\x2e\xe9\x8a\x76\x22\xbd\x24\xc0\xc7\xb0\xd9\xf1\xf5\xc6\x7a\xfa\xc2\xcc\xde\xe6\x4e\x8a\x51\xbd\xc8\xa9\x0e\x25\x94\x48\xef\x65\xc5\x37\x5d\x8c\xd3\x14\x18\x02\x6f\x54\x83\x92\x86\xd8\x8f\x86\x57\xf3\x86\x2e\x57\xb6\x3b\xf4\x55\x9e\xa6\x1c\xec\x9d\xe8\x13\x18\xfb\x0b\x1b\x9f\x71\x67\x73\xff\xcc\x3c\x34\x5a\xb1\x53\xde\xd7\x0e\xc6\x5b\x49\x59\xd5\x67\x9b\xb3\xfb\x82\x69\xe1\xfe\x19\x0e\x56\x1f\x5a\x0b\xc7\xcb\x26\xc8\x10\x7b\xd9\x96\x2f\x3d\xc7\x35\x0d\x04\x35\x38\x07\x3f\x8a\x54\x4d\xe9\xb0\x0e\x31\x2e\x8c\x14\x57\xff\x83\x48\xeb\xf0\x6c\x04\x02\xcf\x2f\xcc\x37\x9f\xcd\x11\xce\xe1\xa7\x7d\xb2\xa5\x4c\xe7\x60\x3f\x22\x89\x2d\x4d\x11\x99\xd9\x84\x13\x02\x30\x65\xcb\x84\x28\x47\xb5\xa9\x99\xbc\x6f\xf2\x07\x67\xe9\x4f\x28\x27\xdb\xc2\xb8\x18\xd3\x41\x8b\xf7\x89\x0b\x45\x38\xee\xcb\xa4\x4b\x56\x05\x8d\xd0\xef\x86\x2d\x1e\x5f\xd7\x98\xe8\xcc\x37\x87\xb6\x10\xb3\x67\x9c\xac\xac\x97\xcd\x37\x8a\x92\x4f\x3c\xa1\x2a\x98\xf0\x2d\x9a\x2b\x4a\x45\xf0\x8a\xc7\x25\x8a\x9d\x15\x98\x4e\x78\x95\xdb\x50\xdd\x47\xdf\x82\x4d\xdc\x44\x60\x5a\x09\xb1\x9b\xbc\x40\xc1\x1a\xb3\xf0\xac\x9a\xf7\x67\x35\xe6\xf8\x37\x15\x07\x21\x4e\xcb\xa4\x87\x10\x82\x8b\x59\x8a\x46\xae\x43\x88\x97\xca\x2e\x22\x60\xac\xe9\x37\x54\x11\xfd\x8d\x31\x8f\xd0\x32\xcb\xb7\x52\xe4\x88\xc6\xc1\x09\x54\x94\x01\xeb\x84\x0f\x34\x8a\x8c\x37\xb0\xb8\x00\x7a\xe5\xf7\x2f\x10\x9c\x86\x77\x58\xff\x23\x55\x8a\xcc\x8b\x32\xe3\x87\x60\xd9\x04\xfa\x87\x22\xa1\xb0\xf1\xf0\xdb\x3f\xd3\x5c\x1a\x87\x14\xde\xc7\xb3\x20\x0e\x67\xd9\x36\x7c\xe5\x49\x85\x4a\x6f\x97\x59\x9b\x6b\xaa\x78\xea\xfb\x91\x3a\xd3\x80\x15\xc2\xf9\x70\xcf\x1f\x39\xb9\x89\x07\x4c\x9d\xe2\xfe\xac\x1a\x9f\x13\x4a\xdd\xbd\xc8\x5c\xbb\x4c\xb8\x95\xee\x7d\x51\xaa\x29\xc3\x37\x5a\x9b\xe1\x33\x1d\x48\x68\x21\x98\xda\x4c\x6c\x4e\xbe\xf6\x82\xc0\x3d\x93\x75\x6d\x42\x94\x43\x86\xea\xd2\x18\xd3\x51\xb7\xce\xfe\x8f\xa2\x9a\x12\x1a\x08\xdb\x41\x87\x42\x5c\xc7\x1e\x8a\x18\x89\x9f\x28\x99\xb1\xa2\xef\x12\x1a\x42\xda\x31\xe4\xbf\x57\x4f\xe1\xd1\x95\xbb\xe5\x0d\x1e\x57\x73\xbd\xc8\xdc\xb2\x13\x95\x43\x44\x33\xa8\x83\xf1\x75\x0d\xf4\x0e\x4e\x0a\x1c\xa9\x88\xc0\x25\x3d\xa3\x48\x5f\x6e\x5c\x7e\x9f\x6d\x0e\x33\xd7\xb1\xfc\xa6\x34\xda\x90\x7d\xd3\x23\x45\xbb\x79\xbb\xae\x23\xd5\x29\xe3\x61\xe6\xd8\x92\xd7\x7b\x1d\xfb\x00\xfa\x52\xa4\x4d\x65\xd8\xea\x58\x09\x34\x9f\x56\xf2\x57\xa7\x7d\x71\x72\xa5\xef\x3a\x7d\x0a\xf3\xc6\x24\x77\x7c\x74\x14\x30\xed\xbc\x11\xe3\xe5\x8c\xb3\xe5\x6d\x9e\x7f\x0a\x67\xbd\x10\x0d\x54\x03\x72\xeb\x9a\x92\x65\xbc\x47\x9b\x28\x42\xcd\xef\x6a\xa8\x4e\xa4\x48\xec\x67\xa8\x72\x82\x9d\xe0\xd5\x48\xbb\x80\xfe\x04\x49\x1e\xa2\xda\xed\x2d\x25\x04\x73\x22\x0a\x9a\xf4\xc7\x34\x36\x64\x53\x8b\x0a\xb9\xd8\x99\x6e\x40\xe9\x12\x09\xfd\x69\x2a\xa9\x4a\xe8\x48\x6f\xd2\xdb\xcb\x55\xbb\x0f\x3e\xff\x7d\x1c\x2d\xe2\x50\x47\xeb\x1e\x61\xe5\x26\xe2\xd8\x78\x2a\xf6\x6e\xe1\xde\xbc\x8c\xa2\xb4\x98\xb0\x86\x90\xeb\x2a\xcd\x45\xb4\x1e\xaf\x7a\x05\x2a\xbb\x6c\x93\xbe\xa1\xae\x05\xc6\x50\xd4\x18\x95\x84\xfa\x09\x85\x57\xbb\x5b\x67\x5d\x36\xcc\x6c\x0f\xc2\x5e\xfb\x67\x3c\xed\x25\x44\xc3\x5a\x9e\xed\x73\x9c\xea\x7b\x02\x76\x60\x74\x1e\xab\xf3\x81\x1e\x78\x69\x76\xc1\x28\xaa\x3a\xea\xf9\xe8\x13\x8a\x38\x57\x2d\xee\xe9\x50\x71\x5d\x57\x42\x64\xa8\xc6\xa1\xb1\x7b\x9c\xde\x15\x5f\xd7\x40\xd2\x9a\xe9\xe2\xa2\xf5\x70\x22\xcc\xee\x2b\x4a\x1e\xf1\x8a\x37\x24\xcb\xcb\xa1\xcd\xdc\x60\x98\xe6\xf2\xaf\x51\xe1\xba\x8e\x37\xc8\x37\xe3\x26\xe0\xcb\xb6\x1a\x28\x14\xfa\x50\x64\xba\x8b\x59\x85\x84\x17\x4e\x87\x08\x31\x5e\x53\xf9\x46\x3b\x2d\x8a\x98\x69\x8f\x98\xbf\x5f\x57\xc6\xc6\x1c\xda\x4b\x46\xfc\xb4\xff\x58\xd7\xe5\x9d\xb4\x24\x25\x5f\x8a\xbe\x30\x8f\x8e\x28\xb2\x1f\x10\xb4\x52\x8e\x78\x42\x35\x0d\x06\x65\xc7\xc5\x0c\xd0\xd5\x96\x05\xf8\x59\x6c\xf7\x8d\x30\xf5\xaa\x42\x66\x76\xed\xb2\x8d\xd3\xe1\xc0\x26\x45\x3e\xad\xa4\x72\x2f\xa9\x82\xe4\x45\x94\xe2\xd0\x42\x7c\x35\x52\x6e\x47\xf5\xea\x36\x65\x96\x78\x41\x0f\xac\x98\xd7\x94\x75\xfc\x6b\x13\x99\xdc\xce\x66\xd7\xb8\x78\x95\x46\x4b\xba\x33\x1a\xb4\x18\x1c\x4b\xbf\x5f\xd3\x8e\x06\x87\x9d\xaa\x6b\x2e\x1f\x4c\x85\x0e\xd7\x6d\x3c\xa9\x98\xcf\x57\x7f\x05\x07\xc4\xb8\xc7\x4f\xa7\x6f\x11\x8f\x08\x57\x48\xcd\xd8\x3e\x95\x2b\xc4\x98\x74\x32\x48\x6a\x0e\x4d\x4f\xf0\x41\x58\xaa\xa7\xb1\x25\xf2\x8d\x12\x99\x8a\xcb\x36\x09\x71\xf3\x64\x02\x30\xed\xb7\xc3\x79\xf6\xdf\xb2\x00\xb2\x04\x6f\x1b\xf1\x81\x7b\xf6\x34\xdb\xca\x0e\xe0\xbc\x36\x84\x3a\xef\xbb\x01\xb1\xed\xf1\xf9\xeb\x25\x7c\x82\x9c\xcf\x58\x2d\x7e\x60\x93\x27\x54\xc4\x00\x04\x00\x9e\x6a\x9a\x0e\x63\x3c\xc8\x3d\x8a\xba\x81\x21\x00\x1d\x06\x47\xe2\xef\xaa\xbc\x69\x7a\x4d\x79\x5e\x1d\xd6\x0c\xf4\xab\x63\xbd\xb0\x48\x77\xc9\xa8\xcc\x87\x21\x67\x37\x70\x94\xe9\x36\xe3\xe4\xf0\x7a\xbf\x5e\x73\x86\xeb\xae\x48\xf7\xae\x47\xca\x9d\xf3\xe3\x3a\xd6\x64\x27\x5d\xb6\x19\x0a\x55\x6c\x83\x1d\x85\xe5\x70\x73\xa4\x49\x16\xae\x43\xd5\x8b\x85\x19\x56\xa1\xc4\x66\x88\x64\x01\x96\xff\x7c\x4d\x4f\xc3\xff\x26\x7a\x5c\x09\xc0\x2f\xd9\xec\xd1\x50\x35\xbd\xa2\xac\xb4\xae\x60\x73\xc1\xda\xb9\x1a\x05\x20\xe7\xab\x38\x44\x44\x01\x5d\x95\x82\x79\x7b\xf0\xce\xda\xd5\x4b\xc2\x8b\xf9\x67\x91\x42\x8d\xdf\xa6\xb9\xe9\x09\xa1\x0b\xa2\x1f\x0a\x40\x13\xe6\xef\x7f\x37\xa9\x0d\x34\xdb\x1c\xa4\x99\xdd\xa2\x64\x35\x1a\x78\x7d\xe2\xed\x17\x34\x61\xbe\xb6\x83\x26\x02\x1a\x21\x67\x47\x41\x3e\xec\x88\x4a\x8e\x67\x7e\xf1\x97\xa9\xab\x8c\x64\xec\x71\x25\xb1\xcc\x53\x54\xbb\xfc\xa0\xb4\xde\x58\x53\x42\xd0\xa9\xc9\xba\x8f\xd2\x2b\x47\x18\x71\x3d\x52\x32\x08\x9c\xaa\xe1\x66\x9a\x65\xa1\xb1\x41\xdd\x1b\x53\xf8\x53\x92\x15\x9b\x5b\x94\x61\xe1\x0c\xbf\xa5\xbb\xc1\x7f\x19\x29\xe1\xfb\x87\xd7\x42\xc9\xeb\x4f\x47\x21\xee\x3b\x3c\xd2\xe4\x14\x39\x3b\x7a\xfd\x34\x2f\xda\x65\x5e\x78\xed\x47\x34\x91\xd6\x95\x2a\xd4\x14\x2d\x21\xd4\x29\x3e\x50\x23\x34\x97\x7e\x66\xbb\x32\xfa\x41\xb4\x88\x69\x7c\x95\x56\x01\x1e\xe2\x3b\xca\x7c\x76\x4d\x9d\x10\xef\xec\xa0\x86\x05\x22\x84\x57\xa3\xcd\x9f\xe6\x59\x06\xeb\x28\x1a\xf6\xdf\xff\x07\xad\x70\xb2\x76\xfa\x26\xe9\x59\xa4\xd4\x2c\x44\x89\x21\x45\x3f\xef\x63\x4c\x28\x84\x69\xc0\xdd\xe0\x59\xa0\x09\x88\xc1\xb9\x8c\xa8\x84\xa5\xc1\xe9\xcc\xf1\xae\xbb\xbb\xc5\xda\x77\x1d\x2f\x47\x44\x45\xe8\x89\x71\xf2\x5c\xa1\xf4\x3c\xf8\x91\x79\xea\x1b\xcf\x2e\x81\xb4\xec\x50\x62\x4d\x5f\x2e\x41\xc3\x6a\x78\xc2\xf7\x49\xfa\x5e\xbe\xf6\x39\x4c\x91\x19\x97\x30\xde\x81\xc1\x2e\x91\xea\xc2\x5e\x52\x38\xa7\x15\x43\x07\x11\x82\x68\xe6\xab\x47\xa1\x4d\xf7\x6f\xa2\xc0\xfa\xbe\x30\x71\xb0\x1c\x38\xd0\x5c\x2e\xe3\xc4\x66\x86\x8d\x16\x1a\xde\x9c\x8e\x45\x30\x84\xc8\x2c\x7b\x6f\x92\x2e\xdb\x78\xba\x5a\x25\x18\x44\x10\x64\x30\xab\xdf\x51\x8d\x47\x40\xb8\xa5\x4f\x1d\xe6\xc9\xaf\xfe\xea\xaf\x36\x42\x0f\xee\x36\x4d\x0d\xbe\x56\xe7\x48\x9a\xf5\x4c\xe2\x0e\x55\x43\x85\xe5\x80\x6a\xf1\x1f\x6a\xd0\xc7\x1f\xd6\x61\x96\xf6\x56\x57\x24\xd1\x81\xcf\x21\x0d\x7e\x4d\x63\x63\xae\xe9\x97\x78\xc1\x07\x9d\x5d\x3b\x4c\x73\x57\x98\x6c\x75\x4a\xe5\xea\x08\x2f\x44\x94\x25\x20\x73\x7e\xa2\x38\xa5\x7d\x3b\x70\xf9\xb0\xef\x95\x15\x11\xda\x72\xe7\x95\x6f\xc6\xcb\xdc\x87\x56\xe1\x91\x28\xb8\x94\xa0\xd2\xa3\x65\x17\x5c\xb2\x98\x66\x83\xd0\x21\xc0\x96\xb0\x89\x66\x30\x5f\xaf\x3d\xa3\x28\xe0\x79\x99\x65\x08\x11\xf0\x1c\xd8\x82\x99\xeb\xcd\x37\xbe\x2f\x36\x46\x56\x09\xc5\xff\x4b\xaa\x7b\x75\xc9\xbf\xf4\x65\xdb\x33\xa8\xc0\x8c\xad\x03\xbe\x99\xe0\x07\xcc\xcd\xed\x45\x67\x24\xef\x04\x0c\x3c\x36\x9b\xc3\x78\x1a\xbe\xa9\x53\x91\x1e\x9a\xce\x92\xe9\xc9\x22\x41\xab\xfc\x77\x95\xfd\xe1\xef\x86\x44\xbf\x30\x85\x8d\x51\x4b\xf7\x3a\xbf\x0b\x33\x72\x5d\x97\x30\xfe\x3f\x7d\xa4\x46\x70\xab\x6d\xf2\x25\x5b\xb4\x49\x3d\x55\xbf\x32\x65\xe3\x39\xc6\x65\x6c\xc7\x76\xf0\xb0\x8e\x49\xab\x19\xce\xf2\x30\x48\xe9\xb4\xbe\x33\xe7\x5a\xd4\x5d\x44\xb9\xe5\x02\x8e\x4c\x0e\xa2\xa3\x20\x84\xbd\x89\xb6\x31\x31\xc7\xa2\xed\xdf\x47\xda\xa1\xee\xbb\xbd\x15\x8e\x9d\x45\x4b\x9d\x97\x30\xfa\xac\x28\x2a\xa8\x90\x9a\x6e\xcd\x62\xe6\x6c\x02\xe4\x5a\x5d\x96\xf1\xb4\x02\x6e\x76\xec\xb0\x20\x6e\xd4\x54\x10\x24\x82\x30\x2f\xc2\xdb\xa3\x1a\x20\x70\x4f\xe5\x0d\x69\xbc\x3a\x18\x3a\x83\xda\xba\x26\x7c\x88\x60\x49\x18\xcf\xcc\x75\xfa\x26\xeb\x6e\xab\xc6\x50\x68\x0b\x0d\xef\xac\x7c\x06\x5b\xbe\x44\xd0\xb4\x6c\x7d\x4b\xb0\xfa\xe3\x48\x66\xb6\xd2\x01\x2f\x46\x66\xd5\x4f\xc3\x20\x9e\x9e\xa8\x77\xce\xee\x6b\x66\x2e\xe5\x2d\x47\x44\x3c\xe8\x2f\x89\xba\x47\x18\xdc\xd8\x14\x36\xdb\x12\x04\x8c\x4e\x8c\xc9\x21\x2a\xc2\x3e\xaa\x78\x5e\xe4\xa9\x7a\x01\x28\x66\xfd\x85\xf2\x95\x58\xb1\xae\xd7\x2f\xc0\x53\x11\x4e\x14\xaa\xf6\xde\xe9\xd9\x97\x9b\x26\xdd\xc0\x67\xf7\x11\xbf\x38\x1f\x83\x4e\x60\x70\x04\x47\xf1\x89\xb1\x56\x62\x56\x6c\x0f\x3d\xc3\xb3\x5a\xad\x98\xb5\x06\x44\x63\x3b\x14\xbb\xff\x16\x7b\x28\x76\xf7\x57\x23\x25\x91\x7a\x3f\xd2\xf5\x53\xc6\xb8\x48\x0b\xb3\xa6\xb5\x5e\x98\x78\x69\x0b\x12\x7b\xcd\x3d\x43\x88\x0e\x03\x05\x6c\xb2\x1f\xe8\x94\x0c\x07\x0d\xe2\xc5\xc7\x5a\x1b\xdf\xdc\xce\x66\x3f\x1d\x72\x25\xc9\x4f\x29\xef\x7d\xc7\x24\x50\x9c\x8e\x77\xa3\x50\xa9\x1d\x0c\xca\x42\x52\x1b\x26\x04\x69\xa9\xf5\xcb\x2a\x97\x2f\x87\x2b\x44\x02\xda\xb3\x87\x5f\xc9\x15\xda\x39\xf8\x7a\x02\x40\x43\x2a\xe1\x79\x10\xb6\xc3\x24\x3d\xa5\x4a\xd7\xa7\x7c\x5f\xb1\x48\xed\x7f\x84\xcd\x26\xff\xea\xcb\xa5\x3b\x34\xa5\x0a\x47\xc7\x10\x66\x68\x15\x7a\x91\x2a\xfd\xa4\x22\xb6\x26\x10\x4d\x4d\x13\x13\x3f\xdc\x50\xdc\xec\x86\x72\xb3\x50\x66\x20\x54\x88\x50\xe9\xf4\x5e\xff\x01\x9a\x24\x8c\xb5\x88\x94\xb4\xcb\x7b\xe8\x65\x60\x49\xde\x47\x4c\xc5\x7f\x00\xb3\x04\x6b\xe2\x8a\x76\xff\x2d\xdb\xb9\xfd\x72\x69\x93\x02\xbc\x0e\x0e\x76\x55\x46\xb1\x9d\xc2\x4c\xc6\x30\x29\xb1\xc4\x0f\x6b\xc4\x33\x56\x5c\x52\x30\x0b\x01\x2b\xee\xa4\xc2\xec\x9c\x54\x06\x4a\x2b\x7d\x6b\x63\xcc\x11\x44\xa0\xbf\x31\xda\x78\xf2\xc9\x7c\x99\x44\xb6\xcd\x37\x17\xcb\xac\xe8\x0b\xdd\x4d\x68\x56\xa1\x7e\x7d\x5a\x81\x2d\x07\xa6\x90\x52\x23\xa6\xf5\x4d\x65\xc4\x7a\x73\x14\xde\x0f\xd1\xed\x86\x19\x0b\x49\xd2\xd8\x31\xb1\x90\x8e\x04\x21\x19\xd6\x68\x3d\x99\x4e\xe1\x96\x03\x8d\x15\x45\x8f\x57\x55\x73\xef\x55\xdd\x2c\xb4\xd5\x71\x0c\x2f\x69\xcf\xb3\xf2\x41\xf1\xe1\x48\x05\xc5\x1a\x66\xfa\xc7\x58\x37\xa2\xc0\xae\xec\xe8\x7a\x69\xe2\x0e\x49\xe3\x04\x4d\x9b\xdf\x89\x54\x37\xe7\x77\x54\xd5\x9f\x8a\xd0\xf9\x96\xea\xf7\x88\x18\x69\x35\xc9\x70\x0a\xfd\xd6\x08\x3b\x81\x07\x58\xce\x7b\x17\xab\xf3\xca\xc6\xe1\x6f\x6a\xa4\x04\xe7\x9b\x43\x33\xe4\x20\x19\x3f\x99\xc5\x0b\xf9\x46\x15\xb9\x7a\x69\xda\x95\xa3\x6d\xcf\x1e\x2f\x21\x32\x15\x0c\x50\xce\x4f\x24\x91\xfb\x67\x9a\xb1\xcd\xf3\x2d\xa1\x83\xc4\xb6\x2f\x42\xd9\x0e\xa4\x36\x66\x24\x79\xb5\x86\x5d\xbb\x78\xcc\x0e\x2b\xc0\x7b\x27\xed\x2c\x15\xc6\x71\x51\x1d\x05\x86\x9b\x4a\x36\xe4\xe6\x58\xe5\xe2\xa0\x8d\x35\xa3\x08\x6f\x45\xe8\x45\x81\x05\x92\xd8\xb2\xc8\x4c\xec\x0e\xc9\x0e\x22\x96\x30\xba\xc6\x1f\x36\xb1\xb6\xe9\x2c\x59\xc6\xe4\xf9\x12\x98\x0f\x27\x27\x8b\x3f\xd5\xb4\x2f\x09\x36\xec\x0d\x7b\x98\xb5\xc5\x99\x92\x82\x51\xfd\x50\x15\x0b\x72\x77\xb0\xe8\xab\x4e\xd9\xb7\x14\xf0\xe4\x5b\xd1\x86\xee\xe8\x81\x03\xcd\x2f\xce\x52\xc1\x1d\x29\xd3\x0d\x85\x81\xb9\xa4\xd2\x08\x2e\x5a\xe1\xcc\x38\x3e\x11\x75\x2e\xcc\x54\x31\x70\x91\x95\x9d\xa2\xf4\x51\x27\x3e\xf9\x31\xe2\x1e\xbe\x51\xf3\x38\x2b\xf3\xdc\x99\x04\x70\x6f\xb4\x66\xbf\x36\x26\xee\x10\x30\x86\x3f\xc5\x2b\x00\xc0\xe1\xe8\x86\x78\x1e\x76\x7d\x52\x42\x53\x6d\xf4\x4b\x75\x42\x7d\x79\x91\xb9\xce\x92\x45\xb7\x09\xdf\x0a\x1d\x70\xbe\xf6\x3a\x3a\xbd\xcc\x1c\xf2\x45\x46\x36\x5a\x1c\x85\xf2\xd8\x75\x05\xd8\x6f\xbb\x6a\x85\x6b\xfb\x9c\x4b\x63\xc3\xf8\xb4\x2e\xf8\xe6\xb6\x53\x56\x69\xc5\x96\x86\x57\x00\xb9\x4a\x85\x16\x71\x11\x51\x06\x7d\xa8\xba\x60\x77\xff\x1b\x2c\x00\xa9\xfb\xd5\x9c\x79\x9d\x34\x71\x79\x31\xe6\xf8\xcd\x95\x1e\xbe\x09\xf9\x56\x39\x8c\x5d\x27\x6c\x60\x0c\xed\xd1\xac\x94\x8b\x13\x8b\x7e\xff\xcc\x8b\xcd\x74\x25\x91\xcf\x08\xc4\x30\x4c\xc2\xda\xf1\x06\x3d\x8c\x0f\x62\x60\x2d\x61\x99\xcb\xd7\xad\x90\x9e\x1e\x14\xb6\x0b\xe3\x23\x15\xb5\xe1\x84\x42\x2e\x77\x62\x6b\x12\xd2\xc0\xf4\x39\x11\x96\x82\x80\x2f\x36\x26\x12\xbb\x76\xe1\x1b\x3a\xce\x32\xb0\x0c\x91\xff\x95\x28\xd4\x8c\xaf\x28\x5c\x61\x46\x25\x4e\xe5\x3d\xcc\x93\x9f\x6f\xa2\x1d\xba\x55\xd7\xeb\xd9\xcc\x76\x21\x9c\xe8\x2b\x00\x9e\x43\xfc\xf1\x48\xc9\x4a\x1d\x8b\x02\xf3\x10\x8e\x2f\x62\x9b\x14\x12\x9a\x93\xea\xaf\x33\x90\xca\xc4\x8f\xd1\xb3\x78\x91\xd7\xea\x25\x79\xbb\x91\xc0\xaa\x40\x01\x9a\x41\xc5\xe8\xd5\x32\x2d\x8d\x36\xc5\x31\x45\x2f\x51\xfe\x08\xda\x13\xec\xff\x8f\xda\x23\x02\x41\x2c\xd9\xad\x94\x56\xa0\xc8\x00\xae\x20\xea\xdd\x18\x3d\xc4\xa7\xdb\xd6\x94\xe0\xb7\x69\xc7\x76\x4b\xf5\x8d\x6a\xcf\xfa\x02\xf7\x57\x5e\xd6\x96\xce\x2c\xad\xce\x8a\x0b\xf4\xe7\x30\xbb\x5f\xaf\xc1\x06\xce\x8a\x73\xa9\xcc\x3f\x9c\x4d\xef\xd3\x60\xf3\xf5\xe8\xb1\xf0\x66\xd2\x95\x64\x5a\xd9\xef\x9e\xa2\x27\x47\x1a\xb3\xb5\x15\xa2\x59\xc8\xf8\xc8\x7f\x58\xab\x81\xe1\x0f\xcd\xc1\x52\x23\x20\x1a\x2d\x55\x45\x6f\xac\xd5\x68\xc5\x56\x69\x13\xd5\x73\xf6\xcf\xac\x53\x4f\x75\xfd\x78\xad\x7d\x0c\x75\x62\x38\x00\xc6\x9b\xba\x87\x63\x9c\x6f\x26\xc2\xad\x6a\x22\xc3\xf7\x59\x1b\x20\x2a\xff\xd0\x1a\xfd\x73\x33\x1c\xc6\xa6\xec\xfa\x9d\x0c\xdb\xdc\x11\x3a\xa3\xf8\x5a\x0d\x5b\xec\x16\x0b\xc5\xbf\xbd\xa4\x0c\x0d\x2e\x8d\xb4\x28\x65\xee\x7a\x09\xc5\x4d\x94\x85\x89\x1c\x30\x0d\xb8\x58\xb6\x56\x7b\x5a\x9d\x68\x47\xe8\x7a\xdf\x54\x89\x69\x99\x2c\xba\x83\xd5\xbb\x0d\xcd\x72\xf0\xa7\x05\xd5\x30\x29\x94\x37\xdb\xec\xa5\xca\x4a\x1e\x0d\x25\xbe\xae\x93\x9c\xce\xd3\x92\xe5\xb8\xa5\xe4\xa7\xd0\x26\x27\x6b\xd5\x48\x33\x9b\x0f\x49\x52\xdd\x2b\xc1\xbe\x4e\xbf\x85\xaf\xa3\x30\x72\x89\x4b\x2c\x4c\xe7\x91\x3f\xbd\x89\xc1\xf0\x32\x5f\xbe\xed\xfa\x01\x0d\x80\x17\xb6\xf3\x7a\x32\x27\x88\x6a\x80\xf5\xf7\xea\x28\x08\x32\xdd\x56\x52\xde\x1f\xd5\x95\x0d\xf2\xc2\x0c\x86\xbc\x73\x72\x3f\x8f\x3e\x22\xbd\xbd\x00\x9f\xe8\xa4\xd4\x9b\xcc\x1a\x4a\xc9\xf0\x12\x3d\x8e\x40\x9b\x27\xbb\x9f\xb3\xc4\x77\xcb\x51\x05\xf3\xef\x45\x09\xbe\x84\x59\x91\xaf\x90\x01\x55\x6c\x12\xda\x0f\x67\x7d\xbb\x80\x86\x05\xa7\xfa\x35\x94\x61\xfc\x71\xbf\x30\x23\x71\x29\x0d\x11\xa2\xb8\x6b\x4a\xb1\xef\x64\xad\x15\x79\x95\xc4\x10\xbe\x98\x37\x03\x71\x5b\x08\x48\x9c\x77\x15\x4c\x27\xef\xd8\x84\x45\xb5\xb8\x70\xaa\xdc\x8b\x2f\x2b\x1f\x87\xf7\xc6\xc4\xa8\x97\xca\xe1\x94\xe2\xa2\x41\x25\x07\xdb\x37\x37\x94\xb0\xf1\xde\xf7\x66\x5f\x79\xd9\x26\x35\xa3\xa2\xb0\x92\xd9\x8a\x5e\xa4\x8a\xcf\x8f\x45\xcd\x07\xc0\xc1\x17\x33\x93\x2c\x55\xa9\xce\x14\x9d\xf5\x58\x31\x10\x49\x43\x8d\xe7\x86\x06\x93\x6d\x6a\x4d\xc0\xf1\x9a\xbb\xe7\x9e\xa9\xa6\x91\x77\x9d\xf4\xa6\x2d\xd7\xd0\x28\xf3\x4e\xc3\x0b\x33\xfe\x66\x8c\xc0\x81\xac\x43\x62\x9c\x80\xc4\xf8\x90\x0e\x11\x55\x62\x99\xe5\x04\x86\xc5\x0d\xc7\x38\x15\x38\x21\x88\x39\x2f\x34\x73\xd6\x32\xc5\xe2\xb8\x1e\x05\x29\xc9\xb7\x54\x8c\xf3\xe8\x5a\xa8\x10\xbd\x15\x29\x9b\xc3\xab\x0a\x8d\xf5\x6d\x55\xb2\x7d\x13\xb5\x7f\x9c\x86\xaf\xa3\x65\x87\x2a\xd4\x65\xb5\x36\xbb\x66\x90\x34\x34\x2f\x47\xe7\xb7\x21\xb0\x30\x49\x52\x9a\x38\x5e\xd5\xa9\x5a\xa3\xa5\x33\x53\xd5\xf2\x80\x27\x97\x74\xec\x03\x58\xf0\x6e\x9d\xe4\x59\xbb\xcc\xac\x29\x3b\x99\xe9\xe0\x54\x20\x81\xdb\x75\x4d\x5b\xcc\x6c\xaf\x8c\x4d\x16\xd3\x7f\x0f\x2a\x21\xd5\x60\x8a\x4a\xc8\x0e\xd5\xc5\x37\x6d\x5b\xb8\x0e\x88\x9c\x80\x7a\x8d\xb8\x10\xc4\x77\x5a\x20\xc4\x66\x66\xe0\x3a\xd3\x2a\x88\x38\x89\x91\xf2\x25\x88\x39\xe9\xb8\x1c\xa5\xdd\x00\xe7\xcf\x6b\xa3\xc0\xde\xdd\xfb\x6b\xb4\x7a\x7c\x5d\xde\x27\x47\x67\xb4\x57\xc1\xbd\x3a\x89\x06\x76\x4f\xa7\xcf\x2b\xe2\xee\x5e\x8e\x33\x8f\x62\x77\x10\x3a\x85\x08\xba\xb9\x65\x71\x63\xf3\x53\x2e\x94\x33\x2e\xf8\x6e\x34\x29\x02\x6e\x57\xbf\xec\xa2\x96\x32\x3f\x1f\x05\x6d\xfe\x1f\x07\xd9\x98\x53\xcf\xd2\x4b\xa5\x95\xfc\x2b\xff\x78\x8d\x86\x02\x6f\xf8\xcd\x91\xda\xc1\xd7\x69\x62\xc2\x5d\xea\xb1\xd6\x93\x0a\xa4\x37\x00\x37\x4b\x4b\x14\x61\x40\xb1\xf5\x50\x27\x72\xfd\x2d\x0f\x9e\xf8\x7f\x51\x2d\xf0\x14\xda\xbe\x5d\xd9\x12\x04\xf0\xff\x04\x33\x40\x2c\x96\x35\x8e\x7f\x14\x80\x7c\xc7\xe9\x7d\x88\x81\xd3\xa4\xd2\xed\x7c\x73\xb1\x8a\x1a\xd8\x0b\x69\x4e\x00\x0b\xf7\x30\x54\x18\xf9\xcd\x4c\x9c\x12\x25\x82\x8d\xc2\x19\xb3\xcd\x03\x07\x58\xb6\xd9\x47\x98\x63\x01\xf2\xfc\xf3\x7b\x43\x13\xdb\x1b\x27\x9d\xd4\xea\x85\x6f\xaa\x0a\x2e\x75\xb4\xb1\xd0\xc4\x77\x3e\x78\xe5\x5f\xd4\x95\xda\x53\xa8\xa5\xe2\xa7\xde\xc4\xb7\x0a\x05\x2a\xe4\x0e\xab\x36\x7b\x98\x36\x38\xec\xcf\x6c\xbe\xab\xeb\x6d\x40\x66\xf0\xdc\xc3\xcd\xfd\x91\x36\x11\x84\xb1\x10\xba\x11\x3f\xc2\x36\x08\xae\xf1\x11\x4d\xee\x42\x13\x13\xb8\xb5\xc7\xa8\x17\x2d\x15\xc5\x1d\x2a\x04\xce\xec\x62\x19\xb3\x53\x12\xce\xba\x3b\xa3\x09\x6d\x01\x94\xf0\xa6\xc7\x9d\x5e\xec\xc1\x47\xf4\x9b\x78\x1d\x10\x31\x2f\xca\xbd\x7b\x4e\xdb\xf5\x8a\x94\xe7\x5f\xe2\x09\x11\x8c\x33\xfa\x5c\x6c\x1b\x43\xed\x6b\x1d\xbb\xbe\x88\x7a\x2b\x6b\x69\x56\xd1\x14\x6f\x5a\x0d\xe8\x56\xea\x36\x26\xb3\x5b\xab\x97\x84\x93\xff\x4d\x15\x9d\xbd\x19\x29\x67\xf4\xb3\x7a\x2d\xdc\x40\x3a\xcb\x37\x48\x3e\x04\xa0\x58\x93\xa7\x51\x35\x71\xd1\x66\x96\x11\xbc\x48\x5c\x61\x5e\x3a\xf6\xbb\x45\xc5\x78\xa2\x89\x35\xdb\x4c\xec\x4a\x27\x1d\x58\x91\x12\x01\x8e\xea\x9c\x56\xc0\x3c\xa7\xaa\x25\x9d\x7e\x9a\x5b\x42\x89\x21\x5e\xfa\x56\x68\x7a\xff\xc2\x79\x0c\x3e\xdf\xa8\x26\xf5\xb7\x22\xcf\x56\x70\xbd\x7e\x11\x54\x2a\x70\x1e\x1c\x56\x3a\x44\x87\xbd\x25\x4c\x66\xbb\x76\x30\x2c\xc4\x24\x80\xe5\x85\xa3\xd0\x5d\x3c\xa6\xf0\xd4\x45\x56\xe6\x12\x44\x08\x01\xfe\x95\x48\x19\x77\xbc\xa2\xbb\x0a\x54\x49\xa1\x2a\x0e\xe2\x9b\x4d\x2d\x9d\x59\x8d\x42\xa2\x7c\x8d\xa2\x72\x06\x07\xd7\x39\xce\x75\x4c\x1c\x8b\x62\x17\x26\xfc\xf4\x9a\xdf\x38\xff\x1d\x17\x28\xb1\xb6\x1f\x6d\x4d\x12\x66\xf6\x36\xe3\x14\x32\x11\x08\x76\x8f\x62\xd6\x33\x54\x50\xe9\x16\x4c\x03\xcb\xce\xa8\xca\x1a\x9d\xc1\x9f\x7f\xee\xd7\xe7\x9f\xfb\xdc\x1c\x19\x2c\x21\x82\xf8\xb6\x32\xd7\xe3\x98\x12\xf3\xba\x41\xcb\x50\x94\x12\x42\x93\x60\xba\xa5\xa4\x66\x6f\x61\x89\x60\xe1\xdf\x98\x08\x74\xe7\x9f\xdf\xdb\x1c\x66\xb6\x30\x07\xe9\xe5\x20\x18\x02\xde\x82\xaf\x27\x28\x74\xbb\xe7\x9a\x5d\x3b\x74\x1d\xbf\xb1\x63\xf9\xbd\xad\xfa\x36\x6f\x7b\x60\xfa\x97\x4b\x97\xc7\x1e\xda\x81\xa7\x00\xfb\x48\x94\x79\xc3\x3c\xb8\xe4\x4f\x0e\xaa\xb1\xae\xa4\xd9\x52\x23\x74\x8c\xde\xd4\x5c\xcb\x37\x27\x85\x49\x76\x11\xc8\xaf\xcc\x61\x1b\x0b\x08\xc1\x25\xcc\x1c\xbe\x51\x00\xff\xa4\x1c\xb4\x6d\x96\xa3\xb5\x81\x11\xbc\x49\xf3\x5c\xa4\x49\x02\x48\x30\x28\x0f\xad\xb8\x58\x5c\x34\x10\x42\x9f\x56\xe1\xf4\x69\x35\x2f\x87\x26\xcf\x2d\x72\x67\x9f\x6c\x04\x2b\x14\xed\xdd\x96\x26\xb9\x4d\x8a\xe9\xe0\x51\x7c\x4a\xab\x85\x9e\xa2\xc6\xc6\x3a\x95\xe5\xd7\x4f\x4f\x00\x29\xc6\xa2\xe7\xd8\xb1\x36\x34\x0e\x6e\x88\xf5\xf3\xf5\x44\xcf\xf1\x85\xf9\x66\x6e\x56\xa0\xfa\xe2\x39\x75\x81\x29\x32\xc9\xa9\xab\x62\x39\xd3\x59\x2a\x87\xf4\xa3\xa4\x21\xa3\x89\xb0\x75\x3c\x87\xbc\x5f\x26\xf8\x12\x3c\xc8\x09\xf5\x50\x27\xea\x5a\xe5\x69\x52\x98\xcc\xa5\x0a\xbe\x7e\x46\x13\x03\xcf\x28\x4c\x47\xee\x0c\x9d\xe9\x48\x28\x3f\x46\x39\x03\x67\xc7\x65\xa2\xa7\x48\xe5\x66\xe3\xd7\xbc\x30\xbb\xaf\xd9\x31\x25\xf9\x9c\xf8\x59\xbe\xc1\x3c\x75\xe3\x8f\xd9\xf7\x3c\xe9\x81\x20\x1f\x66\x1c\x52\xa4\x31\x49\xe1\x80\x1f\xc2\xde\xae\xfa\xd1\x28\x30\xbd\x37\x0a\xc0\xc9\xf7\x22\x5d\x9a\x4f\x0a\x97\x94\x16\xe4\x43\x96\x1e\xd7\xca\xaf\xe3\x26\x43\xfb\xd9\x91\xf2\x7f\xb8\xaf\xc4\x65\x76\xcd\x6e\xf1\xd0\xf5\xf9\xbf\xd7\x0a\x24\xd8\x75\x6d\xdc\xb0\x9d\xe1\x5d\x72\x60\x6b\xd4\x4e\xf0\x7e\x71\x79\x95\x23\x37\x02\x85\x1b\xd9\x34\x5f\xab\x49\x3b\x30\x45\xd0\x6e\xf3\x7e\x6b\xd5\xdf\x14\xbf\xb5\x8d\xfb\x23\xb9\x86\xa6\xc5\x94\x02\x77\x63\x73\x46\x39\xe4\x72\x14\x8c\x69\xd6\x46\x3e\xa7\xb4\x03\x47\x62\x40\x9d\x22\xcd\xb6\x84\xdd\x8d\x1b\x22\xd8\x0f\xdf\x40\xbc\x82\x80\x1e\xb4\x79\x04\x32\xdb\x5a\x01\x75\x78\x56\xbd\x9e\x6e\xba\x1a\x5b\xd4\x01\x14\x04\xf7\x45\xed\x9f\xcd\xfd\x23\x9b\xd9\xc7\xaa\xc0\x08\xa3\xfe\x21\xd6\xa5\x14\x50\x1a\x5a\xc2\x63\xf7\x9c\x8f\x53\x68\x18\x7c\x12\xba\x20\x56\x12\x9f\x6a\x85\x4e\xe9\x27\xd7\xf4\x54\xc3\x7e\xee\xab\x25\x9f\xfb\xa7\xcc\x98\xff\x4f\xa0\xfb\xa0\xce\xfe\xf9\x80\x71\xf7\xbe\x39\x37\x94\xec\xe8\x30\xcd\x8a\xc5\x34\x76\xe9\xb4\x06\x28\xa0\x1a\x83\xc0\x9e\xa9\x11\x9a\xc0\xcb\xff\x41\xb1\xe1\xec\x41\x43\xba\x66\x74\x5c\x7b\x74\xf4\x35\x8d\x4f\xbf\x56\xe3\x37\xb8\xd0\x6c\xdb\x9e\x4b\x3c\xd9\x01\x15\x02\x96\x5b\xe5\x1b\xc5\xa0\x5c\xca\xec\x20\x76\xdc\x03\xc1\x69\xc6\x55\x78\xbe\x51\x92\xb2\x20\x2b\x88\x36\xa1\x36\x69\x1a\xae\x7a\x79\x71\x1c\xed\x1f\x8e\x42\x62\xf8\xe1\x44\x42\xba\x7f\x66\xb6\xe9\xb2\xcc\x74\x9d\x37\xcc\x54\xe9\xc6\x9c\x07\xe5\x3d\xa1\x95\x00\x00\x9d\x5b\x98\xe1\xda\xc3\x1f\x28\x0b\xb5\x3f\x18\x3d\xa8\x9e\x31\xcc\xdc\xc0\x66\xae\x63\x38\x97\x13\x62\x18\x0d\xa2\x30\xc3\x24\xf7\xc9\xdc\xc0\x60\xc3\x60\x79\xa4\x91\x92\xd4\x3e\x17\x3d\x1a\xb8\x66\x39\xce\x14\xd4\xa7\xd9\x1f\x84\x6f\x54\xc7\x79\xb1\x4c\xba\xf9\x13\xd5\x24\x61\xe3\x11\x44\xbc\x7e\x27\xf1\xa5\x22\x5e\x49\xc2\xf0\x6d\x78\xee\xe3\x75\xdd\x5d\xbf\x46\xbb\x29\x33\xb1\x34\xcf\xf1\x26\x55\x46\x98\x11\x48\xf9\x33\x22\xbf\xab\xa3\xa0\xc8\xcf\x3c\x2e\x46\xaa\x2a\xa5\x41\x66\x82\x33\x1f\x84\xca\x22\x22\xf5\x4e\x3f\x8b\x42\xb8\x99\x27\xd6\x1e\x0f\x41\x64\xea\x6b\xb9\x58\xe2\xf0\xfa\xe3\x6b\x0f\x1b\xcb\x6d\x5a\xc6\x53\x13\x0d\x3c\xbc\xb1\x5b\x5c\x2c\x40\x51\xe9\xfd\x8d\xd9\xde\x67\xaa\x48\x0e\x31\x81\x70\x02\xab\xdf\xce\x0d\x6b\x65\x15\x79\x53\xb5\xdd\x4d\x3c\x48\xf3\xe2\xd1\x50\xb8\x5c\xa7\xb1\xf0\x3b\xc5\xc2\x7c\x70\x89\x09\x46\x9c\x17\x15\xd3\xeb\x8c\x12\x7b\xfa\x5b\x8c\xb0\x97\xd7\xaa\xd2\x4b\x11\x9c\xa1\x75\x8d\xe6\x02\x6f\xb8\xfc\x19\xa4\x17\x12\xe9\xd2\xf3\xcb\xe6\x26\x7e\xf5\x2e\xe9\xd9\xc4\xa5\x65\xce\x01\x4c\x9d\x2d\x9b\x72\x90\xe8\x64\x96\x29\x98\xfc\x56\x22\xc5\xe5\x39\xac\x4c\x7d\xae\xd1\x8f\x15\x18\x3c\x3d\xbb\xbc\xc7\x30\x44\xed\x32\x73\x8c\xf8\x03\xac\x8c\xa5\xf9\xf8\xe6\x81\x81\xcd\xc0\x9a\xa4\x70\x03\xc8\xf4\xa3\x1c\x04\x75\x07\x9c\xf3\xdc\x4b\x47\x4a\xb4\x69\x2d\xe4\x36\x5d\x53\x70\xd9\x53\x75\x47\x5f\xf4\x0a\x91\xca\xf4\xb7\x3e\x0a\xc9\x5c\x1a\x73\xfc\x56\xb7\x01\xd7\x99\xac\x75\xed\x20\xed\x64\xa6\x10\x0c\xa8\x28\x63\x28\xad\x5c\x16\x56\x13\x25\x1b\x6f\x29\x61\x5c\x9c\xa5\x29\xd8\xe4\x7e\x2d\xaa\xa3\x3f\xc4\x3c\x5f\xda\xfb\xeb\x53\xb4\x96\xa5\x50\x55\xfd\x33\x4f\x52\xac\xfe\x38\xb2\x8f\xbb\xaa\xb3\x91\x17\x16\xe2\x64\x78\x77\x8f\x91\x75\x06\x12\xff\xff\x9d\x92\x22\xd4\xa6\xde\x50\x90\xbb\x87\x5b\xa1\xc5\x4b\xc8\xd6\xee\x56\x65\x5a\x7a\x8e\xce\x1f\xff\x29\x4f\x9a\xb9\x46\x7f\xc1\xd7\x36\xbd\xeb\xd6\x11\x02\x5e\x08\x61\xd7\xb3\xed\xad\x29\x2c\x1c\xaa\x51\x70\x3c\xa2\xab\xe5\xb7\x94\xed\xdc\x79\x05\x59\x4a\x38\xdd\xc4\x21\xc1\x93\x92\x6f\x54\x12\x09\x10\xab\xed\x4e\x87\x86\x30\xfe\x22\x5f\x8f\x42\x46\xfb\x0a\x3d\x29\x5f\x4f\xc4\x7d\x55\x76\xb4\x28\x8d\x27\x2f\x6e\x54\x7d\xa9\x54\x51\x75\x0d\x23\x2f\x07\x4a\x02\xfb\xbc\x12\xc0\x7a\x8f\x46\x1a\xd1\xd8\x0d\xd5\x39\x30\x9d\x4e\x99\x0b\xf5\xdc\xa7\xfa\xbc\x84\xf9\x46\x6b\x09\x0e\xa6\x94\x64\x14\x2b\x03\x21\xe0\xdb\xca\x75\x2c\xe4\xec\x37\xc3\x38\xa7\x79\xe1\x96\x54\x6e\x77\x4e\x57\xbd\x27\xe9\xc9\xbb\xe7\x9a\xb1\x35\x79\xf1\x50\xc0\x0f\x6e\x5b\x0b\xc3\x78\x06\x75\x67\x6c\x42\xff\xcb\x28\x48\xdb\xfe\x0c\x86\x73\x62\xcd\x48\xf5\x03\xaa\x94\xfe\xd9\xa7\xb0\xd3\x7b\xa2\xfc\x58\x01\x96\x04\xbf\xc3\xc2\x4d\xe3\x5c\x80\xc4\xd8\x68\xb9\x22\xc6\x37\x4a\x0c\x82\xcc\x8e\x62\x40\x9a\xd7\x2f\xe3\x0f\x45\xc1\x10\x8c\xf4\x5e\x11\xc4\x00\xea\x83\x49\xf6\xb7\x80\xfa\xf0\x4d\x14\x94\x84\x86\xfd\xb4\x48\x7b\x99\x19\xf6\x99\x64\x87\xbc\xff\x4d\xbc\x6c\xbe\xf1\x4b\xb6\x6f\xb2\xee\x8a\xc9\x40\x9b\x66\x0e\x3d\xcd\x2f\x81\x4e\xd1\x43\x0b\xd0\xd1\x8b\xb5\xdb\xd8\xd9\x45\x6c\x2b\x80\xdd\xbe\x8d\xed\x81\x6f\x74\x95\xd0\x75\x32\x81\x84\x0a\x28\x97\x9e\x44\xc0\xb7\x13\x42\x38\x0b\xf3\xcd\x7c\x68\x13\x8e\xb1\x15\x77\x51\x84\x2e\x5e\x1b\x29\x61\x9f\xeb\xd1\x53\x8a\xeb\x3e\x34\x59\x31\xb0\x49\xf1\x38\x3d\x8d\xc0\xa5\xa8\x21\x29\x4d\x64\x7a\x6b\x40\x82\x02\x24\x26\x52\x3d\x2a\xfc\x86\x6b\x20\x57\xc4\xb5\x38\xd5\x76\x65\x90\xfe\x11\x97\x1e\xf1\xcf\x6e\xd0\x1a\xc1\xf6\xc8\x25\x13\x64\xd3\xd0\xa3\xf6\x7d\xa0\x05\xb1\x17\xfb\x3f\xa9\x59\x88\x32\xe8\xe5\x07\xda\x1a\x98\x0e\x14\xa9\x95\x9e\xbb\x52\x88\xbc\xa4\xa6\x51\x67\xb5\x13\xbb\xa4\x37\xad\x60\xf3\xfc\xce\xb9\x26\x18\x85\x07\x3c\xa9\x9a\x99\x6f\x8e\xab\xbf\x95\x83\xc7\x48\x94\xda\xbb\x3f\x07\xf9\x5e\x56\x5a\x42\x09\xe2\x43\x84\x43\xe2\x55\x4c\x13\x1d\xa5\xb9\x47\x49\x65\x1e\xfb\xef\xbd\x28\xb0\x1b\xa1\x01\xe5\xc1\x9f\x5e\x30\x94\x81\x98\x28\xa8\xfc\x58\xd5\xfb\xff\x92\x07\x18\x45\xac\x1b\xaa\x89\x1a\x9c\x31\xf3\x38\x5d\xb1\x19\x98\x4a\x4c\x67\x52\x34\x42\xb6\xa8\xf6\x24\x93\xea\x7b\x98\x2f\xd3\x0a\xf4\xad\x8b\x7e\x5e\xf7\xd3\xe1\x92\x4b\x38\x1f\x14\x8b\x25\xfa\xd1\xe2\x29\x55\x87\xa8\xc9\x5c\xbe\x44\x98\xf8\x75\x72\x15\x5e\xbf\x3c\x7a\x24\x4c\xff\xd5\xed\xd5\x7e\x29\xfc\x60\x85\x3f\xbd\xa4\xde\xc1\x49\x5d\x89\xff\x1e\xde\x1a\xca\x37\xb7\xe9\x88\xf2\x40\x81\x39\x61\xbc\x4e\x91\xc3\x36\x66\xd8\x71\xd5\x00\x73\x5d\x9b\x14\xc2\x44\x41\x69\x0d\xeb\x99\xaf\xc7\x0c\xc4\x57\x53\x9c\x41\x88\x21\xef\x51\xe8\xca\xd7\x13\xcb\x72\xdf\xf3\xcd\xae\xed\xb8\x2e\xd2\x6a\xc6\x2a\x2b\xe7\xc5\xab\x2a\xad\x66\x77\xfe\x29\x9f\xd0\xbf\x0c\xc5\x7f\xc0\x5a\x19\xd8\x0e\xe8\xdf\x29\xa5\x00\xcc\xfc\x1e\x8b\x9e\x98\x80\x5d\x02\xb0\x66\x12\x56\x5a\x1d\x6a\xed\xcc\x15\x2e\xef\x37\xb4\x1c\xbf\x42\x8a\x9c\xf3\x70\xe5\xae\xcd\x0b\xe7\xb1\x4f\x38\x9d\xdf\x56\x12\x14\x6f\x4f\x2c\xc2\x5d\xbb\x9a\x66\xe0\x8a\xd5\x65\x17\x57\x41\x14\x66\xa3\xb2\xea\x0e\x2a\xf1\x61\x0f\x1a\xa4\x49\x31\xac\xb6\xc7\x0c\x89\x90\x42\xd7\x07\x19\x9b\x9a\xaa\x42\x2f\x95\x3a\x04\x72\x3e\xd6\xa3\xe5\x1b\xe5\x6f\x2f\x26\xa5\xdd\x86\xa2\x3a\x1e\x57\x56\xc3\xc7\x55\xf8\x30\xb4\xb1\xe9\x5a\x53\xe2\x2f\x23\x25\xe2\x83\x88\x6f\xa2\xc7\x14\x12\xcf\x25\x7f\x9f\xfe\xa8\x08\xfa\x28\xa2\xfb\xb6\xb5\xc0\xb7\x78\x0d\xe1\x3f\x02\xa7\x2b\xda\xed\xf7\x5e\x54\xe5\xfd\x5e\xc5\xa4\x5a\x95\x98\xa3\x4c\xf2\x44\x80\xf3\x2a\x56\x22\x36\xde\x0f\xa0\x7c\x24\x65\x35\x3a\x94\x7d\x11\x61\xb7\xe4\xf5\x5b\xb8\xf0\xc3\xcd\x12\x25\x62\xb7\x4e\xa4\x7b\xc1\x13\xd3\xa1\xe8\xa3\xb5\x5d\xc2\xb9\x47\x19\x18\x1b\xc4\x5d\x84\xd0\xf8\x8e\x0b\xb4\xd3\x63\x02\xdc\xa3\x1d\x19\x3b\xf5\x95\xa8\xf1\xc2\x7c\x30\xeb\xdf\x3f\xe3\xd1\x60\x01\x16\xd5\x60\x7f\x20\xf1\x43\x52\x05\xda\xfb\x08\x01\xb1\xbf\xdc\xc6\x71\x20\x11\xdb\x06\xe7\x84\xfd\x33\xf3\xcd\xfd\x33\x5f\xa0\x54\xc6\xef\x0c\xbb\x03\x38\x6f\x63\x84\x5e\xed\x38\x9d\xcc\x0d\x87\xb1\x4c\x65\xad\xf0\xc5\xd7\xa3\x87\xfd\x7c\xf9\x87\xdb\xc2\xf9\x73\x06\x2f\x4e\x74\x6a\x03\x75\xee\x61\x44\x36\x5e\xb3\xd1\xe7\x9c\xb7\xa2\xc0\xe5\x9b\xa6\x8d\x1d\xfb\xcf\x57\x26\xaa\xd6\xfb\x67\x9a\xf9\x20\xf5\x52\x6e\x38\x0b\x50\x2d\xe6\x6b\xd5\xd0\xce\xad\xad\xfe\x25\xf5\xa2\x24\xb9\x0d\xe8\xfa\x47\xc6\x7b\x1f\x34\x59\x84\xd1\x4c\x7d\xd9\x48\xa9\xb8\x5e\xaa\x29\xe1\x90\xf0\x2a\x89\xd9\xf0\x10\xe1\x17\x43\xf9\x86\xaf\xd5\xd3\x90\xfd\xa7\xed\x4e\xe9\xf6\xfb\xb5\x48\xe9\x2d\x5d\xd7\xc1\xd3\xd4\xda\x3f\x7c\xc0\x61\x0d\x2d\x80\x82\xc8\x02\xaa\x74\xc4\x2a\xbe\x7c\xa3\x92\x20\xeb\x0a\x52\x2e\xc6\x04\x7a\x02\x11\x08\x96\x08\xf3\x28\xc4\x22\xaa\x7a\x85\x78\x09\xe0\x1a\xfb\xa0\x2b\x88\xd5\x83\x90\xcc\x5a\x10\x35\x5a\x30\xb3\xcd\x34\xb1\xd0\xad\x67\x6a\xa6\xaa\x5b\x02\xbe\x2a\x3e\x1f\x3b\x36\x7c\xf8\x33\xcd\x67\x1b\x8d\x67\x9f\xe5\x5a\xcb\x7d\xa4\xf2\x7c\xa3\x38\x97\x2e\x49\x97\x61\x15\x8d\xd7\xc8\x6a\xcf\x7c\xa3\xc0\xb6\x84\x27\xe0\xfc\x07\x9b\xc0\x59\xac\x49\xbe\x51\x61\xb4\x29\x97\x5d\x8c\xf4\x5d\xba\xe6\x9a\x5e\x74\x5a\x19\x45\xe3\x9c\x1b\xab\xb5\xf3\x3f\x1a\x3d\x24\xcf\xb8\x32\x1d\x82\x88\xbb\xda\x5b\x69\x5b\xab\x1a\x62\xfc\x87\x93\xb4\x27\x88\xd2\x64\x78\x16\x6a\x4e\x6c\xa5\x67\x41\x4e\xcc\x86\x19\x7c\x33\xd2\x18\xe6\x86\x27\x84\xff\xde\x38\x9e\x39\x84\x1d\xbf\xa7\xfe\xf4\x60\x55\x1c\xe1\x59\xae\x45\x15\xac\x27\xcf\xa5\x9d\xcd\xc4\x2e\xdb\xac\xe8\x13\x88\x81\x76\x0e\x41\x75\x87\xa2\xfb\xf1\xfa\x8d\x66\x1e\xb1\x92\x58\xcc\x06\x50\xe4\x31\xf4\x7c\xc5\x88\x36\x64\xc0\xbf\xaf\xd5\x7f\x4e\xd4\x2b\xdd\x9b\xa2\x9f\xc6\xae\xc3\x47\x24\x8a\x75\xcc\x4f\xe6\x9b\x89\xfd\xe2\xc0\x81\x66\x3b\x26\x9a\x23\x45\x14\xc8\xfd\xd8\x88\x96\x6f\xd4\xa9\x67\x5c\x16\xbb\x44\x06\x09\x80\x07\xc4\x06\x7c\x3d\xb1\x0b\x1c\x38\xd0\x7c\x29\x2d\xb3\xc4\xc4\x2e\x1f\xa8\x2d\x89\xe1\xa2\x7c\x33\x0a\x35\x49\x93\xd9\x4f\xd1\x2f\x45\x4c\xfb\x14\x96\x23\xc0\xcb\xdf\xa2\xe2\x17\x52\xc2\xad\x6b\x74\x46\xe1\x77\x7d\x05\x87\x1c\x28\x7b\xdf\x45\x4c\x4c\x05\xed\x9f\x7f\x1a\xed\x51\x7c\xcf\xc3\x90\xac\xc1\x14\xde\xba\xa6\xd5\xf2\x15\xe7\xec\x02\x1d\x2e\x2c\x37\x88\xc3\x17\xa7\xe7\xcb\x51\x38\x11\x8e\xf1\x02\x10\x55\x07\x05\x99\x78\x2b\x90\xfb\x0e\x3f\xd9\x52\x68\x9b\xe9\x56\x98\x9b\x5b\x81\x96\xc1\x10\x7f\x77\xa4\xe4\xce\x01\x48\xc1\xfe\xf3\x89\xb5\xea\x54\x15\x7a\x46\x35\xc3\x50\xf9\x9b\x6e\x55\x07\x3c\x32\x98\x5b\x63\x28\xfe\x6c\x09\x2a\x85\x62\x3f\xa0\x82\x8c\x6f\xe3\x34\x44\x01\xe1\x74\x5d\x4f\x65\xd9\x16\x1c\x8b\x22\x41\xb9\xa9\xb2\xa9\x9b\x13\xe1\xd2\xec\xbe\xe6\x52\x92\xb2\xff\x9a\x6e\xc2\x08\xb6\x28\x84\xa2\x71\x6a\x16\x19\x47\xf0\x05\x11\x24\x1a\xb3\x56\x0a\xa5\xbd\x97\xca\x6e\xcf\xe6\xdb\x43\xd0\xfa\xed\x09\x0c\x8b\x7c\x03\x20\xcb\xd8\x84\xcf\xd0\xbb\x61\x9d\xa0\x31\xcd\xa0\x6a\xcc\x7d\xf8\x57\x7d\x3f\x22\xa9\x73\x0a\x32\x0b\xf1\x2a\xa8\x7d\xa0\x46\x74\x9a\x7e\x08\x40\x94\xff\x1b\x56\x90\x30\x8e\x94\x21\x8f\xe9\xb8\x38\x2e\x73\x15\x61\x5f\xd5\x3c\xe5\x8f\x46\xca\xcf\x79\x5b\x2b\xc0\x47\xdb\x59\x99\xe7\x64\xb3\x16\xf8\x24\x23\x85\xe8\x60\xed\x45\x61\x9a\xd0\x4c\xe1\xff\x12\x3d\xec\xff\xca\x7f\xfd\x89\x30\x21\x1e\x69\x05\x9d\xa2\x1d\x80\x54\xa2\x8c\x20\xde\x4b\x5e\xf2\xa4\x1a\x01\x84\x6f\x9b\x29\x90\xc0\x3c\x7f\x15\x11\x1f\xfe\xc0\xfa\x28\x84\x69\xec\xb8\x8b\x84\xfc\x16\x0d\x2c\xd6\x1f\x0c\x44\x10\x4d\xdd\x57\x06\xed\x5f\xd7\x0c\x4b\xc6\xa4\x31\xf0\x11\xe7\xa4\xb0\x74\xe4\xc4\x1a\xa4\x45\x9f\xe6\x46\xa8\x3f\xbf\x82\xcd\x41\xf0\x19\x4f\x2a\xb8\x74\x95\x87\xdb\xee\x36\xda\x14\x10\xac\x1e\xc1\x60\xf1\x0d\x3e\x89\xf4\x89\xf1\x3b\x2c\x6d\xba\x16\xde\x28\x37\xb1\x44\xf3\x34\x14\x5a\x5e\x57\xd6\x34\xb1\xed\xb9\x1c\xae\xa9\x0f\xd1\x37\x00\x3c\xc1\xcc\x50\xd5\x62\x9a\xf3\xca\x95\x0a\xef\x4d\xc1\x23\xa6\xcc\xc7\x18\x42\x40\xbb\xff\x15\x96\x3a\x96\xee\xa6\x96\x12\x83\xff\xc1\x18\x69\x71\xe3\x61\x33\xbb\x0f\x90\x1e\xca\x9e\xd0\x11\x13\x47\x95\xd0\x40\x9f\x74\xa4\xa6\xde\x74\x3a\x18\xda\xc2\xa2\x8b\xa7\x46\x46\x38\xa9\xe0\xe2\x33\x0d\x72\xa4\x9c\xe4\x26\x6d\x95\xf6\xec\x69\x16\xfd\x2c\x2d\x7b\xfd\x0d\x6a\x65\xbb\x83\x5a\x59\x0d\x72\xb1\x9d\xa5\xa6\x2b\x9c\x43\x24\xe1\x9b\xe9\x4b\xf9\x7a\xed\x49\x5f\x5c\x34\x59\x37\x4b\x53\x91\xeb\x17\x71\xdc\x86\xa2\x10\x4b\xcd\x61\x60\xb3\x1e\x57\x64\x7d\x63\x26\x38\x9d\x9f\x51\xed\x90\x2b\xf8\x51\x88\xb7\xae\x2b\x39\x35\xb3\xb8\xe8\xba\x66\xd9\xa1\x0d\xaf\x23\x60\xbe\x56\xde\xef\x26\xeb\x91\xd9\x2e\x77\x31\xfc\x9e\xec\xf1\xaa\x57\x31\x17\xd0\x21\xfe\xed\x28\x74\x8b\x7f\x1b\x5f\x2f\xd6\x96\xa1\x28\x97\xb9\x65\xd8\x1e\x05\xa1\x68\x75\x94\x46\xea\xa1\xff\x4a\x11\x11\x7b\x36\xb1\x1c\xe0\xe1\x21\x58\xe3\x82\x6f\xea\x2a\x79\x9f\x6e\xc6\x69\x5e\x4c\x29\x7c\xe8\x6d\x85\xdc\x3d\xaa\xfc\x95\x26\xc5\x35\x76\xb2\x08\x02\xb9\x38\x88\xd3\xb0\xaf\x0a\x84\x0a\x81\x6a\xf6\x2c\xc6\xd6\x16\x64\xd5\xa2\x43\x42\xef\x08\x1f\xf6\x69\x0f\xcf\x49\xdb\xb1\xeb\x99\xa2\x48\x95\xd0\xf1\xeb\x51\x10\x5c\x79\x7d\x62\x62\xef\x54\xed\x61\x85\x77\x78\x55\x95\xa7\x5e\xad\xa3\x33\xe7\xfd\x74\x05\x1d\xa0\x3d\x7b\xc4\x01\x45\x89\x7f\x1c\xd5\xc5\xec\x1b\x7a\xaa\xb4\xd3\xd8\xe5\x7d\x0b\x1d\x34\xd5\x05\x9a\xf3\xc6\x85\xda\xd6\x8e\xde\x1d\xff\x87\x89\xdc\xd1\x77\xa3\x5c\xe1\x1a\x1e\x40\xfb\xa7\x2f\xe3\xbb\x45\x6c\x4e\xa9\x8d\xfc\xe2\xaf\xa1\x4c\x8f\xa4\x0f\xfa\x4f\x10\x99\xb9\x4e\x7d\x00\x71\x41\x53\x3a\xb8\x83\x74\x9a\x3e\x82\xd3\x1e\x50\x24\xef\x6b\xec\x49\x07\x1f\x28\x27\x81\x7f\xff\xc0\xea\x67\xc7\xe4\x2e\x49\x95\x8c\x0b\xcf\x38\xbe\xa9\xe1\x15\x7c\xa1\x99\xd9\x3c\x8d\x4b\x8f\xd1\x13\x5e\x11\x7d\x4e\x08\x47\x3b\x14\x46\xa0\x13\x97\xb9\x5b\xb6\x5b\x54\xb5\xf9\xde\x48\xd3\xaa\x31\xd6\xc8\xfd\x6e\xd3\xcf\x11\x7d\x0f\x1a\x6b\xec\xa1\x47\x55\x09\xa8\x63\x63\xdb\xce\x4c\xc1\x85\x2c\x51\x6f\xaa\xc6\x4b\x6c\x28\xc2\x78\xa5\x6d\x16\x21\xc6\x32\x40\xc1\x14\xb3\x74\xf3\x9a\x02\x96\xd0\x70\xa3\xa0\xcd\x3c\x2f\x2c\xeb\x46\x2b\x44\x30\xcb\x26\x8e\xed\x2a\x88\x1b\xa8\xc7\xfc\x0c\x0f\xcf\x06\x45\xa3\x90\x20\x71\xd5\x86\xcb\xdd\x91\xee\xed\x1f\x53\x8a\xda\x37\x6a\x79\xc3\x9d\xcc\xe4\x7d\xd0\x7c\x34\x3e\x51\x58\x60\x52\x70\x33\x6d\x7a\x13\x10\x94\xf5\xc2\x49\xfe\xc8\x3b\x5c\x67\x8c\x68\x4d\x16\x3b\x9b\x6d\x51\x34\x00\x58\xe7\xe3\xf8\xd8\x06\xa6\x02\x76\xfc\x47\x09\x18\x83\xda\xe8\x56\xdd\x84\xbf\xa4\xc5\x64\x3b\xb6\x2b\x55\x00\xec\x3a\x7f\xae\x11\x90\x7f\xee\xa3\x81\x2c\xa5\xd0\x88\x5e\x19\x4e\x07\x96\xfd\xe5\x9b\x09\x72\x11\x11\x66\x63\x6b\x58\x29\xf0\xc5\x50\x66\xd6\xdc\xca\x31\x64\x70\x7b\x15\x5b\x86\x58\x80\x2a\x74\x44\xad\x26\xe8\xa2\x8b\xe3\x71\xd5\xc2\x3b\x91\x32\x5e\xbb\xa3\x8a\xa7\xb6\x93\x26\xe9\xc0\x71\xaf\xd7\x6b\x60\x86\x97\x7c\x49\xa1\xfa\x6c\xd7\xe5\x0c\x8a\x41\x74\x7b\x4d\xa7\xea\xd7\x54\xfb\x26\x2f\xd2\x6c\x00\x1f\x26\x21\xf9\xd0\x03\x48\x6b\xc5\x5b\x12\x99\xc4\x75\xb8\x80\x82\x03\xfd\x75\xa5\x49\xc2\x6e\x29\x88\x94\x36\xb5\x74\xda\xe0\x3a\x4b\xdb\x55\x18\xf5\x76\xa4\xa0\x91\x77\x79\x5e\xe2\x60\xdd\x44\x51\x23\xb3\x15\x5b\x61\x5b\x21\x26\x06\xef\xa8\xf7\x54\x24\x74\x5f\x75\x6e\xef\x8d\x35\x39\xec\x52\xbe\x2d\x34\x05\xb7\x50\x04\x2b\x2a\x0b\xf4\x2c\xa8\x39\x9e\x44\xc0\xc5\xd0\x7d\xa5\x9f\xc1\x58\x4c\xcf\xbd\x79\xc1\x83\x44\xae\x4c\xf0\xf7\x76\x52\xd9\xa0\xd3\x87\x72\x3a\xfd\x41\xa4\xd5\x28\x9e\xf3\x75\x9d\x72\x0e\x89\xed\xe4\x2b\x36\x2f\x38\xad\x16\x74\x26\x8d\x90\xc0\x36\x37\x7e\x70\x7e\x61\xbe\x39\xcc\xec\x62\xec\x7a\x7d\x36\xc3\xf3\x11\x43\x20\xdc\xfb\x35\x9a\x17\x99\x5b\xf2\xa0\x56\x21\xfd\x04\x6d\x83\x27\x5b\x81\x6d\x70\x7f\x22\xf7\x3f\x70\xa0\xe9\x06\x03\x4b\x28\xa4\x86\x62\x97\xbf\x4c\xaf\x81\xaf\x27\xab\xf6\x0b\xf3\x55\x60\x56\x05\xdf\x53\x61\xdf\xb8\x47\x51\x28\x06\xfb\xdc\x48\x49\xcf\xe9\xdd\xd2\xf5\x52\xb6\x66\x1a\xd3\xd8\x40\xe3\x04\x1b\x17\xd2\x92\xd3\x5a\x3d\xe7\x8e\x72\x96\x5b\xc9\xcc\x70\x8a\x72\x66\xb1\x08\x0e\xac\x18\x08\x80\x0b\xb2\xb7\x8e\xc0\xba\x42\xa5\x2b\xff\x26\xf1\x31\xe0\x8d\xf8\x7a\x02\x3d\xba\x30\x5f\x25\x1a\x29\x74\x16\x30\x93\x8f\xd0\xf7\xf0\x75\x30\xb9\x8d\xad\x1d\xaf\x9e\x32\xe6\x4c\xea\x16\x61\x18\x7e\xe5\x9f\xfc\x67\x5b\xe9\xf7\x21\x67\x9c\xe6\x8e\x39\x62\xf1\xf7\xd5\x4c\x3d\x46\xc7\x06\x06\x18\xa7\x37\xce\xb1\x87\xd0\x18\xc3\x02\x38\xe2\xb7\xcb\xea\x7f\x86\xb1\x01\xe9\x01\x69\xc3\x2b\xca\x28\x97\x45\x50\x27\xf7\x93\xcc\x2e\xbb\x65\x76\x21\x61\xfe\x47\x14\xe0\xce\x17\x6b\xa8\x28\x0b\x33\x8f\x29\xa4\xcf\x7d\x95\xf7\x5d\x8e\x14\xa8\xa5\x41\xeb\x1c\x47\xe3\xfd\xd1\x86\xa4\x75\x96\x23\x96\x87\x5a\xc1\x47\xe1\xbb\x40\x88\x79\x02\xeb\xfe\x19\x7f\x26\x60\x8c\x50\x62\xfc\x2b\xe4\x61\x5e\x26\x33\x50\x27\xde\x89\xb4\xbc\xd9\x44\xad\xe2\xd9\x67\x89\xf7\x82\x85\xc5\xc5\x00\xfa\x16\x29\x0c\x4c\x96\xc5\xbf\xd0\x1c\x66\xe9\xa2\xc8\x2c\x6b\xc2\x96\xec\xd2\x41\x85\x6c\x98\xa5\xdd\xb2\x53\xb8\x65\x26\x1f\x7b\x4d\xdd\x86\x72\x31\xaf\x73\x75\xb6\x79\xc1\xbb\xaf\x16\x7e\x40\xa9\x9b\xcf\x7a\xe4\x04\x7f\x32\xde\xee\x6d\xe7\x8d\x71\xb3\x2c\x2a\x10\x8b\x3e\xbf\xec\xee\x3d\x93\x4b\x77\x4a\x40\x8d\x0a\xbc\x72\x71\xcc\xb8\x31\xe9\x3e\x4e\xaf\x80\xab\x00\x14\x9c\x0a\x03\x90\xc6\x59\xca\x03\xf4\xe7\xf0\xce\xaf\x47\x41\x40\x14\x72\x9e\x88\xbd\x98\x2b\x89\xb5\x0e\x00\x1a\x22\x99\xff\x51\x75\x0b\x6e\x60\x56\x02\x16\xb7\x5d\x37\x32\x50\xc5\xc4\xef\xbe\x8a\x27\xe6\xef\x43\x16\x8a\xb9\x70\x51\xd5\x63\x56\x5c\xdc\xed\x18\xc0\xa9\xd9\x9a\x3f\x0a\xd4\xba\xdb\x0a\x8c\xb4\x22\x19\x09\x60\x08\xe7\xf1\x17\xf9\x26\x7a\x5c\xb3\xd8\xab\x54\x4b\xc7\xd7\x61\xdf\x87\xce\x00\xaa\x82\x57\x55\x1e\x93\x17\xd6\xc6\x0f\x2b\xe2\xea\x23\xc4\xe0\x17\xa4\x0e\xfd\x12\xaf\x69\xbe\x7f\xc6\xdb\xb3\xd1\x40\x68\x97\x4a\x51\x8a\xac\x86\x54\x50\xc9\x2a\xa0\x5f\x43\xc1\x12\x1b\xf5\x47\x34\xa6\x80\xcd\xbf\xe1\x0f\x76\x53\x64\x25\xdb\x4e\xeb\x99\x85\x57\x72\x97\x7e\x0b\xfb\xb1\x3d\x10\x42\xea\xc8\xa5\xa8\xe7\x3a\xa4\x00\xe7\x83\xe7\x10\xc8\x4f\xa2\xd4\xab\x23\x22\x5d\x91\xc0\x4a\x15\xd1\x66\x7d\x0f\x75\x92\x24\xc7\xf9\x62\x61\x92\x2e\x4f\x56\x81\x06\x05\x74\xbc\x36\x3c\x48\x52\x12\x24\xe2\x5f\x27\x35\x67\x9d\xf1\xab\x75\xb3\x1e\xed\x70\x1b\x51\x26\x5c\x2b\x40\x16\x83\xda\x3b\x5f\xfb\x1d\x75\xd1\xc4\x45\x50\x9e\x96\x20\x98\x7e\xc8\x83\xa2\xe0\x03\x07\x98\x06\xb1\x3a\xdd\xf0\xf2\xe8\xa8\xc1\x02\x8e\x05\xd5\x1b\xb1\x3a\x56\x22\x3c\x87\x95\x66\xb3\x3d\x38\x34\x09\xe9\x56\xb1\x5d\x0e\x36\xd1\x57\x54\xca\xfd\x4a\xf4\x09\x45\xe6\x2b\xca\xcc\x6e\xa1\xd5\x2f\x3e\x17\xa1\x3d\xc8\xd5\x34\x66\xb0\x2b\xaf\xbc\x73\x9a\xc9\x72\x74\x22\x44\x9e\xdd\x47\x3b\x9a\x13\xbd\x61\xac\xbe\xb7\xe8\xf9\xf9\x7a\xc2\x4c\x5a\xaa\x36\x1d\x93\x17\x41\x88\x12\x93\x9a\xa5\x5e\xf1\xf8\xdf\x1a\x29\xa2\xc4\x5d\x55\xc8\x5d\x4a\xd2\x95\x24\xd7\x0d\x55\x6c\x80\x12\x9f\xeb\x0d\xb0\xed\x7a\x4f\xab\xc2\xe9\x3b\x38\x3e\x10\xf2\xa3\xa3\x83\xea\x01\xe4\x06\x31\x15\x98\x9a\xe5\xb5\x8b\x82\x62\xc2\xd1\x48\x15\x9a\xae\x46\x61\xba\xbf\x4b\xd9\x1f\xf6\xae\xeb\x91\x22\xf7\x1d\x04\xa1\x0f\x39\xc0\xb1\xd1\xb8\xc0\xa1\x07\x27\xad\x03\x30\x8b\x4a\xc1\x49\xed\xbc\x88\xf0\x85\x99\x5a\xe8\x05\xf0\xdf\x52\x1c\xa6\x2b\xe0\x76\x62\xa4\xbe\x83\xc1\x40\x5f\xe3\x8c\x2a\x71\xf6\xd3\xa4\x5b\x66\x26\xd7\x67\xdb\x09\x55\x56\x3f\xa1\xd0\xe4\x2e\x21\x43\xd9\xe9\xc0\x2d\x3a\x83\x71\xe0\x1b\xfa\x72\xc6\x3c\x45\xaa\x88\x7d\x42\xc3\x39\x6d\x1c\x3f\x14\x0a\x80\xbc\x83\x0a\xcf\x47\x69\xcb\xc2\xaf\x1a\x5b\xd9\x57\xa8\xda\x2e\x28\x26\x65\xac\x7c\x3e\x6a\x7c\x71\x56\x00\x31\x94\xa5\x23\x3f\xfe\x2a\x36\x45\x41\xca\xd4\x18\x2e\xbf\x64\x92\xcf\x4c\x05\x8c\x39\x63\x5b\x11\x3f\xdd\x18\x29\xbe\xde\x99\xb1\x7e\x87\x4d\xba\x4f\xd3\x43\xb2\xe1\x4f\xa4\xec\xc5\xde\x89\xd4\xc6\xf0\xde\x28\xe0\x54\xff\xe5\x28\xd4\x24\xee\xa0\xf2\x8d\xe2\xee\x4d\x85\x06\xfa\xe7\xf4\xe6\x31\x10\xf7\x46\x8d\x17\xe6\xc5\xf0\x1f\x23\x89\xa5\x70\x79\x14\x38\xc6\x90\x5d\x96\x4a\xac\xea\xef\xb1\xc5\x08\x80\xed\xc7\x31\xbb\xa4\x10\x5d\x4d\x4e\xc4\xf8\x6f\xe1\x28\xc6\xb2\xdf\x4c\x27\x0d\x02\xa3\x6f\x8c\x54\x4b\xf0\x86\xb6\xc2\x3c\xae\xb6\x8e\x36\x09\xe8\x4c\xab\x67\x3b\xab\x6c\xaf\x98\x97\x8a\x5f\xf0\xa3\x51\xe0\xf5\x9c\x54\xad\xb7\xb4\x84\xe7\x27\x1a\x9e\x1f\xd3\xb3\xf9\x1c\xac\x1a\x49\xac\x35\xa0\xee\x45\x89\x92\x16\x0e\x86\xf8\x34\x06\x1f\x8b\xe5\x66\xa4\x28\x9f\xa7\xf1\x13\x50\x7b\x3c\x8a\x1f\xea\x05\x0e\xb5\x47\x45\xd0\x50\xfa\xae\xa2\x75\xb3\x04\x9f\x08\x2b\x54\xc3\x8c\x3e\x68\x30\xdb\x5a\xb4\xd9\x32\x47\xf7\xac\x31\x40\x9f\x17\xbd\x81\x9a\x42\xf6\x8a\x71\xde\x75\x5c\xe4\x70\x95\xb2\xc2\x4f\x54\xbe\x63\x18\xc3\x89\xa3\xf7\x9a\x92\xa4\xba\x36\x86\x5f\x20\xa3\xd9\x2d\xaa\x5d\xc5\xc0\x5b\xc1\xe9\xd2\x9f\x17\xe7\x06\x45\xd9\xbe\xa6\xbc\x09\x1a\x6b\xa1\xe6\x9c\x97\x49\xb2\xba\x6c\x62\x56\xbd\x47\x51\xfa\x43\x0e\xa1\x59\x4e\x5c\xa3\x87\x5f\xad\x13\xba\x59\x8c\x9d\x68\x4a\x8a\x7c\xe7\x18\xf9\x59\x6b\x4a\x3e\xae\x41\xbe\x06\xa5\x09\xf1\x88\x57\xac\xcf\x0b\x8a\xf6\x9b\xb8\x25\x70\x8c\x67\xbd\xb7\x15\xfd\x32\xed\xf0\x87\x05\xf5\x7b\x63\x8d\x9c\x2a\x5f\xb5\x79\x23\xf4\x3c\x20\x20\xcc\xd7\x51\x80\x1b\x9b\xbc\xc8\x75\xe4\xd3\x58\x53\x5d\x7d\x3c\x3e\xc2\xb8\xa9\xd6\x0e\xe5\xf8\x5c\x64\x54\x50\x6c\x68\xaa\xca\x18\x0a\x5e\x40\xe0\x89\xb5\xdd\x47\xe9\x91\xe9\x2c\x6f\x3d\xb1\x56\x6d\x61\xa8\xfd\x6d\x6f\x85\xad\x75\x07\xe5\xe0\x88\x8e\x1f\x6b\x85\x55\xf8\xcd\x1d\x6b\xb4\x06\x04\xa4\x4d\xe3\x24\x4c\xcf\x6a\xa5\xb0\x0f\x16\xa6\x02\x62\x9a\xbf\x4b\x49\x20\x36\x20\x12\xf7\x78\xd1\xdb\x92\xa9\x85\xb6\x59\x31\x10\x56\x6c\x1c\x73\xff\xd4\x4b\x6e\x2b\xfd\x9d\x00\xe9\x9e\x9d\x9d\x0a\xda\xa3\x6f\xd2\x4a\xf7\x3d\xf2\x30\x53\xde\xf1\x03\x3c\x28\x33\x53\x18\x0c\x30\x32\xd4\x33\x23\x5d\x43\x57\x82\x5d\x57\x14\x78\xa4\xa3\x6c\xef\x05\x58\xa4\x40\x46\x13\x05\x11\xb2\xd6\x49\x16\x5d\xd7\x26\x1d\x98\xd9\x42\xbb\x43\xa0\xe7\x8a\x13\xfe\xf6\xd8\xe9\xc4\x92\xcd\x8c\xae\x89\x42\x4a\x70\x51\xa9\x12\xba\xc1\xa0\x4c\x5c\x81\x8c\x59\x15\x00\xbf\xe0\xbb\xf5\x21\xf6\xba\x13\x05\x26\x7e\xdf\xc6\xc3\x87\xab\x6f\xc6\xd4\x7a\x0d\x2b\x54\xf1\x5e\x66\x39\xd3\x3d\xa2\xfc\x6d\xe0\xd7\x8a\x71\xc4\x64\x44\x31\xf7\xc7\xa3\x71\x5c\xa9\x17\x43\x3e\xa3\x9b\x0a\x1f\x52\xdf\x14\xdb\xd7\xdf\x9d\xf0\xdb\x5e\x98\xe1\xe4\x93\xd5\x0a\xd5\x2a\x9d\xf5\xe6\xaa\x34\xe8\xc8\x16\x6e\xab\x1c\xa7\x5d\x66\xb9\x76\x51\xb8\xab\x5c\x14\xee\x4e\xee\x0c\xb3\xcd\xbc\x48\x53\x30\x11\xb0\x9a\x3e\xd0\x74\x9b\x0f\x54\x9c\xd1\x49\x93\x82\x43\x92\x39\x2f\x65\xa9\x9c\x08\xfe\x46\xe9\x88\xbb\xa4\x5b\xe6\x45\xe6\x4c\x3c\xad\xd1\xdf\xa3\xb0\x33\xa3\xe9\x80\x03\x97\xcd\xbb\xa5\x6c\xa8\x72\xaf\xbe\x89\xe3\x6d\x0d\xaf\x5b\xb7\x1d\x2b\x4e\x44\x25\xaa\xc1\xc5\x1b\xb8\x8d\xd3\xc4\xb3\xa3\x66\xf7\x71\xd5\xa0\xb1\xa6\x20\xc3\x0d\x12\xe6\x47\x14\x78\xa5\xce\x9f\x12\xac\x69\x5f\xf4\xe7\xa3\x08\xf9\xd9\xf6\x56\xe8\x4a\x7d\x84\xdf\x8d\xec\xf9\x0d\x7f\xfc\x0c\x63\x9b\x14\xab\x0f\x29\xe9\x28\xd4\x49\x80\x62\x3b\x16\x29\xa9\xb9\xe3\x54\x0c\xc2\x3e\xf2\x07\xb4\x41\xe0\x58\x9c\x6e\x29\xfd\x32\x24\x94\x38\x22\x2f\x2b\x20\xe0\xa3\x08\x7a\x11\x95\xdc\x9f\x38\xd6\x76\x36\xdb\xb1\x35\x9d\xbe\x64\x3a\x42\x78\x51\xe4\x17\x05\xd4\x1f\x96\x6d\xea\x69\x65\x39\xc2\x06\xb1\xd1\xae\xc6\x10\x85\xfe\x33\xa3\x71\xa5\x92\x6a\xd8\xf9\xbf\x44\x81\x6e\x94\x74\x4d\x21\x52\x07\x7c\x60\xd3\x37\xaa\x88\x72\x56\xbc\x5b\x35\x5f\xd9\x64\x89\x5b\x36\x31\xd7\x55\x01\x11\xbd\xaa\x79\x61\x57\xeb\x1c\xbd\xf3\x2f\x97\x55\x2a\xcb\xbf\x10\xb0\x08\x36\xd6\xe4\x1b\xb5\xc0\x7b\xa9\xcd\x1f\xaa\x86\xd2\x83\x2d\x3f\xff\x42\x70\x80\xf4\x86\xf6\x8f\x40\x53\x09\x68\x86\x1b\xb4\xd6\x11\xd3\x7d\x5b\xa1\xd9\xee\x44\x01\x41\x70\x5f\x6b\xa5\x9e\xa3\xe9\x88\x28\xee\xf4\x58\xab\xa1\x6c\x63\xf7\x42\xe8\x7e\x4b\x2b\x09\xdf\xd2\xb2\x5a\xb6\x28\xd8\xb9\x95\x99\x7d\xf4\xb5\xc2\xf2\x0b\x9b\x7b\x7a\x10\xb9\xae\x77\x4d\xf4\x0a\x2a\xc1\x57\x26\x1f\x66\x16\x44\x12\x4c\xf7\x46\x2b\x34\x18\x6e\x61\x9c\x80\x3e\x38\x53\x03\x22\x6b\xb6\x4d\xd2\x5d\x31\xbd\x14\x4c\x2a\x4c\xba\x63\xaa\x63\x78\x9b\xe6\x80\xd4\xe5\x36\xca\x00\xec\x9e\x6b\xf6\x12\x50\xfa\x11\xac\xdf\xd7\x48\x8e\xfb\xa3\xc0\xa7\x01\x21\x78\xc5\x75\x2d\xb4\x6b\x3c\x01\xc8\x3b\x7d\x40\xd8\xd1\x07\x48\xbb\xc5\x92\x09\x85\x55\x96\xf2\xac\xb3\xcd\x1d\xb8\x3c\xb6\x26\x08\xf5\xa1\xb0\x03\xb2\x05\x5f\xd7\x94\x2d\xe6\x9b\x43\x93\xc5\xce\x78\xad\x6b\x59\x01\x0a\x50\x72\xc6\xab\x95\x78\x8b\xa0\x46\x48\xa2\xf1\xd2\xc4\x4c\x4b\x4f\x83\xb4\x9b\x3f\xaa\xc2\x82\x2b\x63\x6c\x02\x65\xa4\x7e\x16\x32\x29\xd8\xe7\x59\xc2\xd0\xe7\x13\x21\x07\x78\x08\x9b\x00\x0e\x97\x5b\xca\xa5\xf0\xa7\xbc\x5c\x45\x0c\x44\xc5\x9b\xef\x28\x2a\x3b\xbb\x1c\xa2\x1c\x78\xb2\x8e\xb0\x98\xd9\x2f\x97\x36\x2f\x68\x0e\x60\xa4\x91\x82\xfa\xa0\xce\x57\x41\xce\x6b\x23\x83\x8c\x14\xac\x3d\x64\x11\x18\x0f\xbe\x9e\x50\x84\x9c\x7f\x7e\x6f\x73\xe0\x98\x0a\x07\xb0\xdf\x7b\x9a\xc5\xf9\x9e\xd7\x7b\x69\x97\xb9\x4b\x2c\x29\x60\xd0\x90\x60\xfd\x5e\xd6\x32\xc9\xda\x0a\x38\x36\x8c\xd1\x90\x52\x5b\xf5\x2b\x70\xf4\x1c\xc5\x98\x02\xde\x82\x19\x81\x2f\x23\xca\x88\xb7\xd7\x0f\x85\xd4\x45\x6b\xb2\xad\xaa\x50\xf0\x5b\x34\xda\xc2\xb8\x0c\xbd\x7b\xe4\xba\xde\xed\xc5\xc3\x04\xdf\x8d\x14\xd1\x51\x3b\xf9\xb9\xc1\x30\x2d\x93\xae\xf0\x07\xea\xe4\x3f\x36\x4e\xed\x3d\x7b\x16\x9a\x89\x5d\xc9\x87\x99\x63\xf5\x55\xd4\xae\x10\x47\xf1\xb5\x3a\x42\x8b\x74\xe8\x60\xf4\xea\xd5\xb4\x3c\x14\xee\x86\xaa\xe2\xdf\x8f\x94\xb0\x61\xdf\x42\xf4\x9b\x06\x50\x70\xcf\x1a\x04\x5d\x53\x5a\x7f\xb1\xd9\x77\x3d\xaf\x29\x3e\xa6\x8a\x24\x32\x06\x75\x2f\x3f\x5d\xe6\xce\x13\x4e\xff\x3b\xa3\x20\xe7\x88\x70\x0b\xaf\x69\x53\x6b\x12\x7b\xdf\xec\xda\xc2\x66\x03\x97\x80\x07\x83\xe3\xe9\xa4\x0a\x0e\x6b\x67\xb5\x4b\xfa\xe5\x80\xb3\x1a\xbc\xea\xef\xab\xd7\xfe\xfd\x3a\xcc\x15\xd9\xbc\x15\xfd\x6a\x39\x34\x02\xc6\xf9\x3f\xd0\x37\xf1\xf5\xc4\x37\xfd\xa3\x66\x66\x87\x69\xe6\x8f\x28\x29\x7a\xe8\x0a\x88\x22\xe1\xf7\xd2\x64\xba\xb1\xef\x79\xde\xe9\x20\x12\xeb\xad\x95\x03\xcc\x4b\xbb\x88\x7b\xdc\xcc\x4a\xc6\xaa\x49\x68\x1c\xe2\xdd\x7e\xa8\xf4\x41\x36\xa1\x8c\x82\x91\xbc\xad\x50\x44\xf6\xe0\xd0\x76\x8a\x47\xb4\x09\xe3\x5f\x29\xd6\xf8\x89\x48\x89\xb9\xfd\x44\xc9\x69\x7c\x44\xd1\x01\xd2\xc0\x37\x68\x42\x49\x91\xa2\xe1\x85\x83\x5f\x19\xef\xbd\x57\xaf\x95\x3f\x80\xd5\x80\x3e\xe6\xb1\xf1\xda\xf3\xc6\x97\x4c\x7d\xfd\xc5\xd8\x76\x7c\x68\x81\x08\xe2\x94\x6a\x52\x9d\xd6\x3a\x82\xb7\x54\x28\xdc\x49\x13\x86\x7d\x88\x83\x6c\x23\xb8\xc9\xaa\xe9\x9e\x97\x43\xf2\x18\xdc\x16\xf8\xe7\xaf\xd0\x0f\x44\x1b\xf1\xc7\xba\x7d\xa3\x5c\x01\x2f\x60\x72\xf3\x07\x40\x6c\xe4\x4f\xa0\x73\xc3\x80\x5b\xa5\x9c\x68\x06\xae\xbb\xb5\xe1\x75\xfa\x3f\xa6\x09\xee\x63\x3d\x8f\x66\x81\x01\x33\xab\xad\xa1\x82\xa2\x9c\x0b\x02\xfd\x3c\x40\x03\x0a\x73\xd0\xe6\xdb\x94\x1a\xfb\x71\xa4\x21\x98\x42\x47\x51\xc1\x43\x50\x7b\x45\x55\xe0\x8f\x29\xbc\x2c\xce\xa3\x31\xb0\x9a\x98\xa9\xd6\xd9\x95\xa6\x49\xc7\x0e\x0b\xe5\x6c\x7d\x59\x69\x4a\x5e\xf6\x21\x71\xd7\x2e\xbb\xdc\xd2\x11\xc2\xee\x0e\x2a\x1f\x81\xfe\x31\x46\xf3\x6b\x4a\x31\x3a\xef\x9b\x04\x2b\x0d\x6c\x8c\x63\x5a\x15\xf1\xd8\x84\x74\xed\x67\x9b\x6d\x17\xc7\x5a\x17\x49\xcb\x44\x4f\x4e\x2a\x72\xd4\x4c\x07\xc3\xc2\x07\x07\x42\xd1\x0c\xf5\xdb\x37\x55\xfa\xb9\xe8\x8a\x7c\x2a\x18\x64\x7c\xa8\xa3\x3e\x26\x32\x8a\xfd\x77\xa8\xf9\xb3\xa4\xaa\xc9\x9c\xcd\xb7\xd2\x8b\x41\x87\xf1\xdf\xe2\xc5\xb0\x8a\x16\xad\x29\x41\x88\x8d\x29\x00\x86\x69\xcb\x76\x6f\xa8\xd4\x5d\xae\xa3\x56\xb3\x1b\xa3\x17\xf7\xff\xb7\x51\xe8\x5b\x9f\x53\x2d\xa2\xb3\x3e\x3c\x5c\x34\x85\xe9\x4f\x2b\xb0\xed\xdb\x23\x25\xe8\x49\x93\x1c\xf5\x02\xb6\x21\x10\xe9\x7e\x39\xe6\xed\xc1\xbe\xf1\x68\x18\x7c\xe9\x35\x8d\x11\xbe\x36\x11\x5b\xed\x9e\xab\x36\xc4\x2a\xd7\xe8\x98\x44\xf8\x7b\x08\xd5\x6f\x47\xca\x5b\xf7\xb6\x76\xfa\x8b\xcb\xa4\x67\xbb\x5b\x68\xc4\xc4\xea\x4f\x81\xa2\x4f\x28\x6e\x21\xf4\xb3\x45\xba\x58\xf5\x8d\x6f\x45\x1b\xc1\x8c\x84\x85\xb4\xc9\x62\x9a\x75\x82\xa9\x89\xb8\x72\x85\xf8\xf0\x0f\x55\xed\x6f\x61\x76\x2f\x63\x1d\x50\x3d\xbb\x13\x29\x7d\xba\xf3\x4a\xe3\xe4\xb2\xa6\xa8\xde\x42\x89\x5b\xaa\xf4\x43\x97\x19\x21\x24\xf9\xd0\x12\xb0\x48\xbe\x9e\x38\x21\x0f\x1c\x68\xe6\x26\x16\x5f\x61\xcf\xeb\x9b\x9b\x1b\x37\xc3\xc5\x86\x70\x45\x77\x2d\xfb\xe9\x4a\x4e\x1b\x1a\xfe\xe1\xf7\x46\x01\x68\xcf\xf8\x2c\x6f\x10\xe7\xc9\x51\xd7\x14\x2c\xf3\x7b\xf8\x85\x58\x9c\xf7\xc7\x85\x2a\x54\x64\x94\xa6\xe8\x26\x61\xe3\x7b\x43\x01\x38\xde\x88\x1e\xf6\xff\xec\xd3\x8f\xd3\x06\x84\x29\x05\xb5\x5a\x0c\xd7\x5d\x9a\x76\x82\xc0\xa4\x09\x84\x01\xbe\x46\xf4\x0b\xac\x8c\xdb\x51\xd0\xdd\xfd\x10\x4f\x82\xa8\x77\x4b\x4b\xa1\xb1\xa6\x55\x35\x8d\xf5\x9b\x14\x4b\x5b\xa2\x2f\xf2\x2b\xfe\x82\x07\x94\x86\xda\xf8\x6b\xca\xa4\xe4\x47\x75\x52\x1c\x85\x39\x38\x34\xa0\x06\x79\xc6\xc8\xa5\x31\x5b\x19\x9f\x0c\xaf\x9a\xac\xeb\x65\xe6\x50\x69\x7c\x45\x1b\x40\xbf\x32\xd1\xfa\xa8\x12\x16\x9b\x09\x68\x0b\x05\x07\x24\x76\xa8\x90\xb0\xf0\x27\x36\xa0\x3b\x0a\x7d\xf2\x6b\xbb\x67\x21\x3b\xc5\xad\xb7\x68\xac\x0f\x27\xbb\x70\xdf\x66\x6d\x6e\xfb\xd5\x19\xab\xef\xf0\x08\x3d\xaa\xa0\x55\x51\x7f\x43\x95\x02\xbf\x46\xc5\x2a\xbe\x56\xd9\x1b\xc9\xcc\x91\xf5\x0d\xc5\x97\x18\xe0\x9f\x29\x4b\x72\x86\xc6\x0a\x22\x48\x6a\xad\x79\x9a\x15\xdb\x42\x51\x19\xb3\xce\x3b\xbc\x85\x77\x75\x8a\x4e\x24\x44\x1c\x5f\xa1\x89\x82\xa6\xc2\x6d\xa5\xf7\x46\x82\x3f\x62\xcd\x7b\xba\xc6\x64\x61\x1e\x2d\xc8\x86\x42\xb8\x8c\xdb\x1b\xd4\x40\xfd\xda\x36\x27\x72\xf5\x6e\x89\x4a\xdf\x47\xe9\x86\x6f\x6a\xbe\x65\x0e\xd2\xb9\x08\x51\x70\x82\xa0\xb2\x80\xc4\xe4\x1d\xb5\x51\xdd\x98\x70\xfb\x90\xde\x7c\xd7\xe6\x43\x57\xd8\x69\xed\xa2\xa8\xe0\xbb\x3f\x62\x7b\x19\x0f\x21\xdb\x2d\x85\x8f\x75\x25\x5f\x95\xf6\xd2\x64\x35\x5d\x52\xa4\x92\x0b\xa3\xc6\x17\x67\xbd\x0b\x08\x09\x0a\xf8\xff\xe0\x09\xd7\x17\xea\xce\x15\xc2\xf8\x4f\x29\x84\x03\xc2\x2e\x4f\x23\x5f\x10\xd5\xba\xa3\x13\x43\xb2\x30\xd3\xcc\xcd\xaa\x3f\x60\x3d\x3d\x67\x2e\x94\x43\xd5\x79\x6f\x92\xee\xea\xb4\x92\x88\xbd\xa3\xf0\x67\x37\x30\x25\x74\x7a\xc0\xff\x61\x1c\xcf\xe9\xb8\x7e\x85\x79\x71\x83\x93\x60\x51\x05\x6c\x78\x33\xfc\x6d\xca\x38\xf7\xa2\x32\x72\x32\x45\x61\x93\xae\x61\x6c\xbf\x20\x35\x11\x46\xa3\x89\xbc\x1e\x05\xc5\x88\x3b\x9a\x44\x7e\x63\x14\x8c\xb9\x6f\xd7\x0a\xdf\x1b\x9b\xa5\x6d\xee\x1f\x09\x69\xbd\xfa\x25\x12\xe2\xd7\x11\xf9\x86\xa6\x70\x04\x6c\xd0\xd2\x16\x0c\xba\x16\x5f\x73\x8f\xad\xed\x5b\x33\xb4\x50\x4b\x98\xd5\xf8\x73\xbf\x09\x46\x41\x97\x60\x68\x56\xb3\x34\x8e\x73\x20\x61\x90\x99\xbf\xac\x50\xc3\xd7\xc6\xec\x80\x36\xfe\x9c\x7d\xcf\x4b\x61\x00\xe2\x32\x22\x9a\x4c\x6f\x89\x6f\x26\x6a\xab\xbb\xe7\x9a\x79\x6a\x86\x98\x4b\xa8\x41\xc2\x1e\x1f\xef\x07\xd5\x29\xd4\x78\xef\x29\x67\x3e\x22\xbb\xc4\xe9\x90\x3a\x74\xfb\x67\xf8\x58\x7d\x5f\x81\xa2\xdf\x57\x45\xe7\xa2\x6f\x07\xb9\x8d\x97\x6d\xfe\xb0\x56\xbe\x0c\x0d\x09\xd4\xee\xf0\xc3\xc6\x84\x4b\xce\x23\x40\xf6\x0f\xb6\x30\x13\x92\xaf\xdd\x12\x0a\xdd\x8d\xc6\xf4\xa6\x95\x16\xe3\x65\x54\x9f\x25\xf8\xd0\x9d\xe9\xf2\xd0\xa1\x2d\x0d\x4f\x83\xe7\xb9\x8c\x6a\xf8\x5b\x0a\x8e\x05\x18\x09\xff\xff\x51\xf0\x30\xfb\xa3\xb1\x3f\xd6\x77\xf9\xdf\xd1\x8e\x74\x51\x90\xc4\x5f\x79\xa2\x45\x39\x87\xdf\x6f\x3c\x23\x65\x9d\x2a\xcd\xba\xe9\x87\xe3\xa5\x41\x1d\x2e\x99\x1d\x98\x63\xa8\x5e\xbe\x3c\x52\xdb\xd8\x3f\xdf\xe0\x89\x32\xbb\x2f\x18\x74\xef\xda\xc5\xef\x8f\x0b\x53\xbe\xf9\x15\x72\xdc\xeb\xca\xee\x92\x99\xdb\x08\xcb\xaf\x8d\x94\x66\xfe\x31\xa4\x52\xe2\x65\x48\x19\x0f\x06\x83\xed\xf6\xf9\x2b\x69\x94\x90\x70\x01\x70\x8e\xb8\x96\x09\xda\xa8\xac\xdf\xd6\x51\xd0\x30\x5d\xb2\x53\xd5\x33\x23\xb2\xbd\x48\x2b\x58\x14\x4d\x02\xe1\xe3\xac\x97\x87\x44\x93\xa3\x4a\x6d\xdc\x32\xe8\x21\x98\x67\xf7\x30\x0c\x5a\x3a\x97\x79\x5d\xaa\xfb\x8e\xac\x42\xb9\xf4\xa3\xde\xc6\xd7\x13\x41\x45\xb5\x31\x0c\xca\xb8\x70\xc3\x98\xf1\x9a\xe2\x59\xd4\xf0\x44\xba\x8b\x4a\xd4\x3e\xef\x94\x59\xb6\x0a\xe1\xc0\x79\x0f\xfa\x09\x0a\xf3\xe7\xc6\x54\x0c\x07\x03\xf2\xa4\xab\xc6\x15\x51\xcd\xd5\x51\x48\xd0\xd0\xc6\x44\x21\x70\xeb\x9a\xaa\x0e\x1c\x9d\xd8\x8a\x76\x56\xa9\x4c\xec\x06\xae\x8a\x5b\x1f\xd8\xe9\x0b\xab\xb0\x6b\x61\x0d\xd4\x01\xd4\x49\xcc\xb3\xab\xef\x13\x43\x7a\x1f\x08\x94\xae\xd8\x3a\x6e\xe0\xe5\xab\x98\xf7\x83\xec\xf9\x07\x4c\xdf\x55\xb5\xd2\x79\xce\x4d\x5f\xa7\x35\x24\xb0\xac\xba\x01\x4e\x97\x6d\x96\x5b\x43\xc9\xb1\x9c\xa4\x8c\xbe\xc0\x17\x9d\x53\x5d\x0a\x88\x10\xa1\x13\xb3\x8e\x49\x85\x44\x19\xfa\x0c\xb4\x54\xff\x19\x60\xd8\xd2\x93\x13\x85\x7d\xe3\x32\xca\x72\x31\xbe\xe0\x49\xe0\x10\xff\x07\xb4\xb9\x61\xa1\x3c\xb3\xb6\x43\x2b\xb5\x2e\x93\xdc\xf1\xb4\x42\xa2\xb3\x7a\x0f\xf6\x28\xa4\xea\xe2\xb4\x47\x63\x80\xb9\xfb\xc6\xc4\xae\xbc\x67\x4f\xd3\x24\x26\x5e\xcd\x1d\xe7\x0a\x72\xc0\x35\x3c\x77\x77\x5d\xfb\xc9\xe8\xbe\x69\x6c\xda\x99\xe9\xa6\x99\xe2\x20\x1c\x53\x15\x88\x63\x35\x80\xf8\x79\x98\xf8\x07\xfb\x20\xe1\x13\xd3\x43\xf2\x8d\x2a\xb1\x0c\x33\x97\xa7\x89\xe8\xb0\x70\xec\x1f\x85\xf1\xba\x3b\xf1\xee\x28\x22\xce\x73\x9b\xf4\xd8\x16\x4f\x70\x55\x8d\xcf\xbf\xe0\xd5\xb0\x6b\xea\xfe\xf0\x0c\x19\x9a\x0e\xa5\x75\xeb\x87\xab\x21\x5c\x3f\x3c\x26\x77\x51\x14\xb1\xed\x4e\x55\x6f\x1a\x65\xdf\xbb\x54\x86\x41\x95\xeb\x3a\xbd\x68\xd1\x21\x08\x2d\xa4\x15\x93\x0d\x28\xa6\x12\xd7\xaa\xea\x23\x68\xba\x00\xdd\xe0\xf3\xf6\x85\x19\xf9\xff\x55\xfe\x58\x76\xfa\x4f\x36\xbc\x4a\xf9\x76\xb0\xd6\xa9\x66\xb6\xaf\xd9\x9a\xda\xfb\xeb\x5f\x64\x74\xd8\x11\xad\x56\xb5\x65\x4d\x51\xe0\xcf\xd3\xd6\xeb\x11\xcb\x22\x14\xfb\xaf\x7f\xa1\x35\x2e\x7d\xe6\x45\x18\xff\x1e\x3a\x89\x48\x05\xb6\xac\x29\x05\x0d\x96\x8a\x45\xde\xb3\x79\x2d\x4c\xf9\x8b\x1a\xb6\xf0\x09\x6a\x96\x0a\xfa\x58\xc3\x95\xe8\x40\xc1\xa7\xcf\xa9\x42\xcf\xa2\xc3\x64\x98\xd5\xfc\xda\x17\xfd\x87\x64\xa1\xe4\x66\xf5\x71\x9c\x36\x02\xcb\x09\xe9\xec\xf4\x5a\xe3\x4b\xcf\xf1\xe4\xe7\x4e\xa8\xf6\x2e\xf2\x25\x97\xe0\x49\x71\x9a\x26\x11\xc5\x64\x9b\x9f\x68\xa9\x6e\xf4\xd4\x5a\x75\x3c\xf9\xf5\x5e\x0d\xa4\x88\xd8\xd1\x10\x03\x71\xf0\xf7\xe9\x14\xf1\xa2\x70\x01\x47\x4d\xec\xe7\xf5\xbb\x13\x71\xed\xae\x5d\xcd\x25\x45\x04\x12\x93\x12\xfa\x62\xbe\x99\x48\xe2\x77\xcf\x35\x07\x21\x89\xc7\x29\xc5\xc1\x84\x66\x9b\x8a\xc5\x43\x8d\x79\xe3\x4a\xdf\x14\x53\x8d\x17\x04\xdc\x79\x1b\x87\x22\xce\xe4\xbf\xa6\x3d\x4b\xdc\xcc\x3e\x19\x82\xea\x74\xd8\x77\x79\x01\x5f\xba\xed\xf4\x01\xcc\x05\xe8\x6c\x32\xb6\x98\xc6\xd5\x87\x7d\x1e\xf8\xfd\x36\x4e\x67\x24\x88\xa7\x50\x82\xe4\x9b\x91\x92\x8a\x64\x9f\x0e\x89\x37\xc7\x24\x08\x06\xab\x5b\x02\x0e\xe3\x1c\x02\x2c\xdf\x84\xf3\x4b\xe1\x9a\x52\xfb\xc6\xc3\x48\x73\xee\x41\x59\x52\x5e\xd8\x61\xdf\x32\x50\xd8\x83\x83\xc3\xa6\x79\x4a\x63\x94\xee\xa9\x1a\xe9\x30\x8d\x63\x71\x41\x41\xb9\x9a\x49\x65\x7c\x13\x69\xd1\xac\x55\x3a\x3d\xab\xd9\xe8\x61\x74\xbe\xe5\xf3\x01\xf5\x8f\x45\xe3\x38\x74\x45\x3f\x98\xc8\xa1\xaa\x8d\xb2\x6b\x56\x25\x84\xc7\x94\x3d\x1e\xa9\xf9\x7b\x1c\xb3\xc5\x57\xe3\x33\x57\x7d\xb1\xa9\x9e\x54\x55\x73\x4f\xeb\x7a\xec\x69\xdf\x7f\xec\x97\x49\x37\xb3\x5d\x76\xe1\x42\x50\x88\x76\x1b\x5f\xaf\xd5\x58\x16\x77\x4c\x1c\x4f\x87\xd4\x0d\xc5\x3e\x1c\xe3\x5c\x5c\x41\xf3\xe4\x27\xaa\x1e\x7c\x7b\x82\x10\x47\x01\x7d\x47\xe4\x57\x11\x51\xde\xd6\x70\xf6\xc9\x8f\xbc\x30\xbb\xaf\x19\xa7\xe9\xd2\x98\xa4\x1b\x6b\x53\xf0\xcd\x78\xe8\x9c\x30\x20\x49\x29\x6a\x7f\x21\x54\xad\xe6\x42\x5c\xfe\xf4\xe4\x22\xed\xb2\x5e\xb5\xf8\x86\x86\xa3\xe6\xdb\x38\x06\x71\xe0\x7f\x14\xa9\xad\xf0\xd2\x04\x6a\x7e\xcf\x1e\x48\x38\x2e\xba\xc4\xe5\x7d\x9f\xcd\xb2\xeb\x8f\x0a\xee\x4e\xd6\x04\x77\xcd\x41\x9a\xb8\x22\xb8\xc6\x7b\x94\x76\x48\xd1\xce\x4d\xd4\x26\x67\xf7\x35\x4d\x59\xf4\xd3\xcc\x1d\x32\x9e\x37\x8b\xc4\xe8\x8f\xa3\x90\x24\xfd\xb1\xcf\xfc\xc8\x75\x77\xd9\x76\x49\xca\x1c\x20\x33\xb4\x1e\xb1\xbb\xae\xe3\xeb\xa0\xb1\x38\x35\x6e\x69\x5e\x3d\x14\x6e\x3e\x50\x60\x89\xb6\xc9\x73\xd5\xbe\xe5\x97\xca\x37\x13\xb5\xf7\xb9\xb9\xa6\x49\xba\x8d\x6a\xaf\xc5\xce\xc1\x92\xde\x7c\xa3\x7c\x7b\xdb\x65\x51\xd8\x6c\xaa\xfa\x97\xa8\x63\x1e\x1b\x05\xb1\x9c\xdb\x63\x8e\xe3\x21\x34\xc9\x13\x6b\x96\x44\xea\x40\x44\xe4\x42\x25\xf3\x9c\x2a\x16\xb3\xc5\x07\x9f\xfa\xd5\x43\xac\x1f\xae\xc3\x36\x88\x66\x1b\x5b\xc7\x7a\x82\xa4\x07\x3f\xbf\x1e\x3d\xea\x37\xd1\xbe\xcd\x1e\xa6\x7f\x86\xd4\x06\xaa\x5b\x08\xe5\xd0\x72\xf7\x22\x1a\x3e\xcc\xda\x46\x07\x2a\xf2\x8a\xcd\x38\xc3\x40\x0f\xf8\xbf\x69\x7b\xb3\x18\x49\xce\x3c\x3f\xac\x3b\xab\xaa\x9b\x64\xf3\x1c\x72\x66\x77\x25\x08\xca\x95\x07\x1e\x19\xa6\x46\xd2\xfa\x45\x5e\x3f\x64\xba\xba\x76\x28\x36\x34\xc5\x42\x75\xab\xb9\x26\xf6\x81\x91\x99\x5f\x55\x06\x2b\x32\x22\x37\x22\xb2\x8a\x35\xf0\x83\x6d\xf8\xc1\x80\x05\xd8\x92\x05\x5b\x16\x0c\x41\x90\x0c\x59\x16\x74\xed\xce\x4a\xda\xb5\xa4\xcd\x9a\x59\xcd\xa1\xe5\xcc\x2c\xc9\xe1\x7d\xf6\xc1\xbe\xef\xfb\xae\x36\xe2\xff\xfb\xff\xbf\xef\x97\x95\xc1\xb5\x5e\xfc\x16\xd1\x9d\x95\x19\xc7\x77\xfc\x8f\xdf\xb1\xab\x1d\x14\x6e\x55\xa0\x4c\x46\xe7\xf3\x5f\x41\x19\x13\x0b\x42\x63\x2b\xf4\x81\xee\x90\x5d\x4c\x11\x97\x80\xd1\x6b\xfc\xd6\xe2\x2a\x46\x5d\xe0\x2b\x03\x23\xea\xf6\x67\x27\xbd\x34\xd9\x3c\x62\x99\xec\x33\xc9\xb5\xae\x06\x6e\x93\xc4\x5d\x97\x8a\x79\xae\x6f\x96\x6b\x9a\x87\x4d\xe8\xe3\x16\xa9\x84\x7d\x4a\xa0\xb1\x24\x83\x2f\x2a\xb3\x26\x15\x3b\x6d\x36\xc9\x35\xcc\xe3\x6e\x12\xa7\x71\xf7\x8f\x31\xe1\xab\x21\x37\x6c\xc4\x3d\x97\xfa\x26\x28\x52\xf9\xcb\xd4\xeb\x82\x8c\xbf\x42\xfc\x08\x84\xda\x8b\x8b\x68\x35\x77\x8e\x9c\x4c\x2f\x91\x93\xe9\x25\xe2\xf5\x0e\xb3\xa2\x1c\x66\x5e\xb6\x10\x3b\xf9\x27\xf2\x1b\x7a\x5c\x77\x33\x9d\x28\x4e\xb2\x51\x39\x59\xf3\xf7\x10\xaa\x3b\x53\x41\xac\xd8\xad\x27\x49\x96\x05\x59\x03\x84\x09\xef\x93\x28\xc5\xfb\x53\x98\x17\xaf\x52\x5a\xc4\x3d\xe4\xbc\x5e\xd8\x7f\x79\x5e\x77\xdb\xb9\x76\x60\xab\xdc\x0d\x1e\x0d\x79\x54\xc5\x09\x18\x28\x58\x10\x00\x19\xc5\x83\xbb\x23\x3f\x6b\x0e\xa9\x01\x2e\x35\xdb\x0e\xf4\x9d\x6e\x1e\x6d\xac\x64\xb9\x72\x84\x4c\x04\x4f\x5e\x9f\x75\xab\x9f\xa0\x62\xdd\xe0\x9b\x55\x2c\xbd\x2d\x82\x49\xcb\xdb\xe7\xa9\x0e\xa9\xe4\x67\x73\x37\xfc\x85\x89\x62\x73\xdc\x73\xb9\xc9\x1a\x2f\x1c\xf2\x25\x63\x2a\x1f\x7f\xe9\x53\xa1\x2e\x8a\x67\x84\xf8\x5c\xf3\xdc\x38\x28\xae\xfd\xdc\x57\xc3\xf3\x51\x0f\x9b\xb1\x92\x76\xea\x2a\xe7\xd3\xb5\xbe\xa5\xa6\x4b\x92\x38\x2b\xcb\x06\xe9\xbd\xbe\xad\xf5\x15\x3d\xf3\x41\x73\x1e\xad\x1b\x7a\xc1\x3a\x03\xdc\x26\xa0\x9a\x9d\xcc\x23\x0f\xc9\x40\x09\xf5\x04\x33\x70\xa6\xc5\xc0\x5e\x5c\x6c\xba\x75\x40\x6d\x75\xc0\x7a\xba\x81\xb7\x86\xbc\x44\x0b\x28\x4c\xc5\x8b\x19\x52\x4b\x3c\x2b\x6b\x84\xea\xf2\x93\xbe\xcb\x71\xca\xf7\x57\x46\xe5\x28\x97\x40\x13\x8f\x17\x91\xfc\x39\x92\xed\xbe\xde\x0a\x44\x8b\x5d\x5b\x4f\x52\x5f\xd5\x25\x3d\x61\x9d\x98\xf1\x01\xf1\x13\xc7\x3c\x45\x02\x16\xf1\x8e\x50\x4b\x54\x50\x41\x6b\xbc\x78\xa1\x18\x45\x46\x6b\xa7\xaa\xf3\x51\x96\x0e\x38\xef\xd1\xed\xdd\x2c\x17\x0d\x33\x7c\x87\x26\x0a\x2d\xaa\xb7\x7f\x31\x35\x33\x6d\x30\x75\x24\x3e\x0b\xae\x03\x37\x78\xd0\xde\x20\x58\x7c\xdf\x45\xbd\x82\x94\xb8\xd0\x6c\x43\x80\x34\x61\xf0\x7e\xb5\xee\xed\xad\xc4\x69\x94\x76\x63\xcd\x7f\x4d\x8a\x34\x0c\x5b\x56\x22\x75\xaf\x8b\x0f\x76\x96\xce\x06\x56\xc7\x36\xe2\x76\xf5\x1c\x00\xb9\xc9\x0c\x08\x48\x6f\x66\xbb\x56\x57\xa2\x93\x65\xa9\x99\xe2\x63\xbe\xff\x04\x77\xa9\x27\x53\x0d\x5e\xaf\x67\x12\xe5\xab\x31\xeb\x7d\x5c\x20\x4f\xe1\x0b\x7e\xd1\x49\x47\x49\x12\xaf\x6c\xce\x90\x2f\xd1\x2d\x8c\x67\xa3\x30\x86\xf2\xf0\x19\x3f\x61\xba\xd1\xc0\xe5\x70\xe8\xc1\x8a\xb6\xa7\x1d\x30\x92\xea\x4e\xa3\x04\x9d\x5a\xaa\x7b\xee\x0a\x97\xaf\x2b\x65\xd8\xf3\x3e\x0f\x9b\x75\xf4\xf9\xf1\xb3\x16\x5a\x67\xa3\xc2\xad\x39\x37\xf4\x6b\xb0\xe9\xc1\x37\xbc\x2e\xdb\xd9\x9a\x52\xff\x52\xb3\xe8\xf6\xa3\x15\x97\xff\x71\x89\x46\xd0\xfd\x2d\x47\xd5\x43\x96\xb6\x0e\xef\xca\xc1\xd2\x29\xd8\x41\x24\x6e\x55\x05\x25\xb4\x40\xd6\xe2\x62\xd9\xce\xcc\x63\xe1\x10\x8c\xbd\x65\xe5\x42\x78\x7b\xaa\x15\xba\x9d\xa7\xea\x92\xd4\xa4\x1a\xad\x6c\x19\x7e\x66\x4c\xb2\x7b\x67\x48\x06\x69\x3d\xce\xa0\x89\x35\x1b\x2c\xb8\xaf\x8e\x43\x3c\x81\xc5\xd5\x44\xea\x69\x4e\x7d\x32\x01\xbb\xe9\xbc\xe6\xba\x93\x5d\x04\xb9\x44\xeb\x28\x4c\xc7\x9a\x4b\x4d\x57\xce\x56\x11\x24\xc2\xae\x3b\xd4\x78\x07\x4c\x4a\x15\xca\x24\x41\x43\x01\xf5\x6c\x8b\x2b\x6e\x83\x61\x94\xc6\xae\xf8\x2a\x29\xf3\xfc\x0d\x94\x9b\xad\xb7\x1d\xf2\xe1\x27\xd1\x2a\xd6\xba\x50\x8b\xf5\x4d\xaa\xf5\x08\xbd\xc8\xeb\x2d\x72\xa2\xbd\x46\xd8\x96\xab\x28\x89\x63\xa5\x52\x5d\x0a\xb5\xdf\x90\xdd\xc6\x5a\xb4\x24\x1e\x64\x22\xe6\x26\x28\x5a\xc5\x9a\x5e\x1c\xfd\x5b\x2f\x7b\xc9\x3a\x99\xc8\xc4\x09\x30\xac\xe4\x5d\xc0\x8e\x80\x8a\x82\x8b\x25\xfe\x1c\xb2\xe7\x4a\x82\x68\x51\x03\xfd\x43\x4f\xa4\x1d\x66\xc9\x66\x51\x6e\xe6\x2e\x75\x94\x4c\x1e\xa7\x98\xe9\x38\x97\xf3\xa2\xee\x5a\xb4\x6a\x76\x7a\x75\xbc\x9a\xb0\xad\xfc\xe6\x48\x10\xa1\x7b\x42\x83\xe3\xa6\x8c\x14\x54\x96\x76\x89\x5e\x80\x07\x75\x2d\x1c\x0a\xcc\x66\x4f\x7d\x83\x94\xa2\xfe\xed\x54\x6b\x69\xff\x7e\x21\x70\x48\xf1\x15\x49\xff\x2d\x64\x78\xdc\xe3\x07\x9b\x6c\x1a\x49\x5e\xa5\xb1\xe5\x28\x0d\x71\xa3\x49\x73\x87\x67\x70\x8f\xa4\xd5\x7e\x30\xc5\x90\x3d\x3c\xbf\x54\x85\x26\xbd\x58\x81\x1d\x54\xd5\x39\x4e\x88\xfd\xe3\xb4\x29\x14\xa5\xeb\xa9\x5e\xa2\x91\xd4\x64\x38\x5a\x39\x2c\x4c\xfa\x3c\xea\xae\xb9\x52\x9f\x72\x9d\x59\x74\x40\xf1\x67\xc3\x32\x1e\xc4\x16\xc6\x2d\x04\x05\x86\xe0\x8d\xa5\xac\x50\x3d\x61\x25\xa5\x1f\x4e\x4d\xb5\x5f\x6d\x76\x5c\xae\xce\x6f\xa8\x14\xe1\xf5\xea\x71\x0d\x93\xee\x20\x3c\x48\x6d\x3f\x25\xa7\x7f\x7f\x42\x79\x55\xb4\x9a\xcd\x05\xe3\x72\x6c\xdd\x26\x03\x47\x13\x0a\x81\x38\x72\x65\x60\xa5\x4c\x5b\x35\x2c\xa1\x2b\x2e\xd5\xb0\x13\x4f\x45\x71\x54\x7a\x42\x60\xc7\x61\x5f\xe4\x81\x42\x73\x6d\x46\xb2\x39\x3d\x9e\x10\xc2\x71\x09\x68\x20\xfe\xfd\x54\x53\x59\x39\x99\x92\x9f\x79\x07\xe3\xe5\x79\xff\x1f\x13\xc6\xa3\x71\x0e\x90\x0f\x70\xd3\xca\x9b\xd3\x13\x1f\x82\x0c\x93\x28\x4e\x93\x4d\x49\xaa\xac\xf7\x55\x7d\x3b\x03\xa7\x15\x34\x50\xeb\x43\x2b\xed\xd1\xd4\x43\x98\xf0\xf5\x78\x51\x7a\xec\x31\xa2\x03\xd7\x8b\xbb\x71\x0a\x60\x87\x35\x8f\xbe\xab\x61\xa9\x9e\x4d\xed\x09\x07\x0e\x34\xd3\x68\x30\xe9\xc7\xa8\x05\x1b\xab\x0b\x4f\x4b\xec\xe4\x6e\x10\xa7\x71\xd1\x75\x0a\x4f\xc6\x9b\xc4\xcd\xe8\xf1\x54\x59\x6a\x79\x5e\xcc\x03\xd8\x37\xf1\xa3\xc9\x9a\x5e\x20\x5b\x5d\x25\x3f\x8e\x60\xc4\x8b\xde\xbf\x8f\x91\x3c\x75\xe3\xd8\x98\xe3\xa5\xc0\x57\x3e\x36\xb5\x8e\x3c\xdf\x2c\xca\x2a\xe4\xf1\x8d\x9e\x86\x16\x9a\xcd\xbb\x3f\xb4\x15\x93\x48\x9a\xdf\x7e\x2b\xd6\x9a\x87\x9e\x54\x93\xc9\xa6\x7a\x54\xc6\xc5\x4a\xd4\xf5\xb6\x67\x86\xa3\xab\x2e\x44\x8f\xa7\x8a\x86\x0b\x87\x9a\xa3\xe1\x50\x31\xf4\xea\x94\x21\xf3\xc0\x5c\x33\x42\x49\x73\x2d\xcb\x5d\x84\x9a\xbb\x69\x15\xca\x95\x58\x59\xb9\x46\xdd\x75\x90\xe5\x6e\x86\xc4\xe0\xa1\xee\x8a\x3d\x6b\x1b\x7b\x16\x2a\xb0\x8f\xb5\x6b\x2e\xac\xdc\x1c\x1a\x36\x08\x1b\x18\x76\x6c\x3d\xf6\x58\xfd\x6e\x26\x56\x39\x16\x3b\x79\x2f\x86\x1a\x62\x6a\x96\xf4\x14\x00\x8e\xbe\xee\x3d\x5c\x03\xe0\x1e\x73\x52\x9e\x47\xfc\x71\x81\xf3\xd5\x15\x6d\x9b\x2d\x78\x5d\x66\x19\x3a\x74\x62\x7c\x0c\x08\x7b\xa2\xbf\x71\x7d\xaa\xc0\x27\x50\xc0\xc8\xe5\x59\x1a\x8d\xca\xb8\x1b\x25\xbb\x82\x75\x74\x36\x94\xc8\x04\xbf\x8e\xf2\x83\x1e\x53\xf5\xa0\x1b\xe5\xbd\xd8\x10\x7d\xca\x08\xc0\x3b\x30\x7a\x80\x5d\x75\x52\x2d\xe6\x9b\xfa\xf0\xd0\x79\xbd\x2b\x53\x55\x8f\x49\xb4\xae\x17\xaf\xac\xb8\xdc\x73\x24\x35\x27\xbf\x4e\xfa\xed\xba\x8b\x9b\x22\xc1\xb4\x3c\xd2\x52\x73\x94\x6e\xc4\x49\xe2\xc3\x57\x74\xd0\x6f\xc9\x74\xd0\x63\x2a\x78\xf7\x5c\x12\xaf\xbb\x1c\xc6\x79\x78\xf6\x0f\xe4\xe7\xf4\x98\x99\xdb\x17\xd1\xac\xb7\x96\x11\x11\x98\xca\xac\xb7\x8a\xbc\x08\x5b\xa7\xe2\xce\xf5\x64\x8b\x57\xd8\x22\x85\x78\x25\x5e\xfa\x15\xcc\x34\x3d\x99\x4a\xe2\x0f\xcf\x2f\x36\x4b\x97\xe7\x59\x95\x67\x36\x42\x82\x73\x4c\x5e\x8a\x1e\xb3\xa4\xa6\x2b\xe2\x74\xa2\x14\x31\xe6\x52\x04\xcd\xe4\x28\x57\x67\xa0\x17\x3c\x87\xac\xe1\x65\x7c\x4f\xfa\x46\xf5\x37\xfe\xd2\x5f\x28\xe6\x82\xc7\xfe\x6d\x56\xb7\xbd\xd9\x22\xf3\x1f\x00\xf4\x2d\x02\x93\x9b\xc2\xc3\xbe\x31\x15\x7a\x88\x77\x40\x94\xe7\xb1\xad\xaf\x3e\x02\xa5\xee\x72\x4d\x57\xb4\x9b\xa5\xdd\x64\xe4\x75\xf4\xd4\x43\xbe\x15\x40\x98\x81\x18\x90\x8d\x72\xe0\x61\x50\x0b\x47\x0e\x3a\xb3\x45\x63\xea\x91\x2d\xb9\x78\x09\x0d\x57\xff\xa4\x94\x87\xb1\x9b\x4d\x8b\x0d\xee\xdf\xdf\x5c\x4d\xa2\xdc\xa6\x3f\x61\xef\x4d\x39\xe8\x34\x3d\x58\xb7\xee\xf2\xcd\x27\x08\x1b\x8d\xe1\x44\x32\xec\x66\xf2\x79\x7d\x1c\xda\xaa\x6a\x64\x83\x25\x1a\xd8\x50\x6f\xdc\xf3\xe2\x62\x60\x47\x57\x37\x8e\x50\xe4\x07\x2d\x76\x9b\x15\xa3\x08\x83\x5e\x90\x77\xe8\xf5\x56\x70\x0e\xd7\xbd\x18\xf3\xe8\x56\xad\x38\x7f\x1e\xad\xce\x04\x70\xc8\xe5\x16\xb1\x2d\x61\x74\x88\xfe\xf0\x4f\xeb\x04\x05\xba\x59\x32\x1a\x98\xa1\x98\xc9\x35\x87\x31\x75\x91\x86\x69\x37\x89\x8a\x42\xe2\x62\x60\x11\x55\xd5\x01\x13\x0b\xfc\x58\x35\xf5\x6f\x85\x84\xe3\xbd\x49\x33\x02\x52\x56\xfb\x11\x31\x96\xca\x2a\x28\x0a\xa2\x14\x17\xc9\x6f\xe8\xe2\x04\x29\x6d\x18\x7d\x87\xec\x69\x80\x85\x30\x91\xcc\xa7\x48\x1a\x3b\x4e\x5d\x6f\x8e\x45\xad\xbe\x8b\xeb\xf0\x42\xc7\x8b\xd6\x4b\x78\xb4\x1d\x04\x3f\x74\x07\x05\x64\xee\x5a\x0d\x6e\x52\x34\xef\xba\xe5\x4c\xd8\x83\xfe\x90\xa4\x20\x4e\x11\x47\xf8\xe2\x54\x87\x65\xe9\xa5\x83\x3b\x38\x36\x18\x1f\x77\x59\x0b\xf4\xee\xd4\xf6\x2a\xf3\x2e\x2b\x80\x59\x45\x8e\x70\x64\x4c\xc6\x14\xff\x8a\x84\x1d\x3e\xa6\xb0\xbd\xcc\xca\x28\xd9\x57\xbd\x08\x96\xe5\x47\xbe\x7b\x99\x48\x60\x97\x5b\xd4\x71\xb9\x8d\xb1\x83\x54\x54\x69\x18\x0a\xa5\x6a\x05\xba\xe8\xae\xb6\xe0\x01\x90\x05\x7d\x2e\xc3\x5e\xff\x63\x8b\x64\x86\xd5\x61\xd0\x70\xab\x01\x17\x24\xea\x7d\x1b\x71\xe1\x66\xc8\x78\xf3\x28\x3d\xbb\xbb\x84\x8d\xbf\x32\x0e\x3e\x71\xa3\xb4\x18\x15\x43\x67\x96\xdb\xaf\xf8\xbb\x26\xa1\x85\x8f\x29\x95\x53\x41\xd0\x7d\x81\xe5\x76\x43\x22\x19\xdc\xde\x0f\x25\xec\x42\xe3\xe7\x1e\x8b\x80\x5c\xa4\xfa\xee\x6e\x60\x1a\x48\x52\xec\x60\xa8\xd9\x05\x8e\xe5\x13\x5b\xac\x82\x7a\x89\xa4\xad\x1a\x68\xf2\x63\x62\xec\x6e\x3f\x41\xea\xf2\x23\x78\x73\x99\xf0\x3c\x77\x94\x42\xd1\x51\xb8\x52\x8f\x13\xdf\x5c\xd5\x39\x80\x75\xd9\xb5\x45\xa6\x1c\x2a\xee\xc3\xb6\xc5\x28\x4d\x7c\x80\xb7\x0a\x08\xc1\x07\x54\xff\xbf\x3f\x0e\x16\x22\xe7\x24\x9b\xc5\xdb\x9a\x13\x2c\x05\x76\x82\x86\x0a\x04\x7a\xe5\x13\xe3\x7e\xff\x9f\xcf\xb6\x77\x66\x97\x8b\x8b\xd5\x10\x97\x57\x14\x75\x12\x47\x5d\xb0\xcf\xb1\xee\x19\x28\xde\x36\xaa\xef\xc4\x69\x97\xb4\x4c\x4e\x0a\xd4\xde\xd4\x5b\xc8\x9f\x2c\xcf\x86\xc3\x2a\x17\x5a\x36\x92\x35\x90\x4f\xe6\xdc\xb3\x73\x5d\x3b\xf4\x12\xf0\x3e\x5d\x21\x83\x6e\xa3\xad\xc2\xd8\x05\x53\xd4\x99\x12\x5c\x9c\x6f\xae\x44\x71\x52\xb0\xb7\xd5\xa7\x63\xd2\x20\xff\x34\x28\xc0\xbb\x44\x38\x6c\xe1\xab\x3f\x1f\x93\x22\x1a\x24\x3a\x8d\xf7\x31\x81\x34\x88\x8b\x47\x44\x53\x09\x25\xc6\x33\x54\x6e\xbc\x86\x8d\x46\xff\x03\xa3\xcd\x67\xc6\xd5\x10\xf0\xdc\x7a\xaa\xc0\xe3\xf5\xa0\xe1\xf7\x8e\xfc\xaa\xea\x46\x91\xb5\x57\x2f\xeb\x96\x79\x9c\x02\x21\x88\x9b\x7f\x15\xdf\x68\x3d\xfa\x06\xc9\x50\x92\x80\xf4\x70\x98\x29\x6f\xbd\xba\x16\x93\x9a\x0a\xd3\xf3\x78\x9d\x1f\xd5\x46\x9c\x4a\x59\xfe\x95\xed\x2f\xd8\x65\xf4\x0e\xad\x54\x97\x68\xf1\xef\x67\xa3\x7c\x2f\x49\x52\xde\xd4\x5b\xc2\xfe\x7f\x07\x53\x13\x25\x53\x60\x5d\x91\x79\x7f\x42\x1e\x34\xf7\xc9\x77\xf0\x1f\xe3\x37\xf1\xa8\xce\x92\x36\x7e\x27\x4b\x7b\x7d\x89\xdf\x51\xc3\xc3\x63\x52\xab\x79\x3d\xa1\xa2\xe1\x46\x5c\x48\x13\x27\x9d\x61\xb0\xe9\x79\xd6\x72\xc5\x76\x81\x20\x61\x7b\x0a\x01\xb2\x7f\x7f\x33\x5a\xcd\xb3\x6e\xdf\x0d\xaa\x50\x5d\xc6\x39\x06\x07\xe4\x34\xf5\x78\x2b\x44\x21\xab\x79\x36\x1a\x3e\x35\xe3\xfd\x82\xbe\xf1\x74\x5b\x96\x60\x25\xd2\x60\x20\xfa\x39\x1d\xda\xc1\x3f\x21\x08\xae\x79\x27\xa0\x6b\xf6\xe8\x56\x20\xac\x3c\x9c\x70\x0a\x6e\xec\xdf\xaf\x83\xe6\x08\xc3\x8d\x1a\x5b\x84\xcf\x3a\x4e\x98\xc9\x5b\x12\x93\x58\xc8\x56\xcd\x53\x80\x7b\xde\xc3\xfe\x61\x5c\x6e\x9b\xd9\x9d\xd1\x77\xbe\x43\x44\xa5\xeb\x44\x54\xba\x4e\xb4\xe7\x61\x24\xad\x35\x6d\x94\xce\xa2\xb3\x8c\x88\x08\xa9\xb0\xfe\x07\x20\x60\xfa\x1f\xad\xd0\x47\xe8\xc5\x05\x0c\x25\xe5\x5b\x00\x11\x39\x49\x3b\xd2\x11\x59\xe1\x48\x04\xd0\x30\xf0\xbb\xdb\xc1\xc6\x72\x30\x08\x32\x7b\x2a\xa3\x82\x9b\x32\x4d\x95\x2f\xd3\x42\x2f\xca\x48\xc5\xab\x10\x7a\xfd\xa3\x1d\x6c\xaf\x45\xab\x42\x5c\x23\xd6\xd2\x43\x8f\x87\x11\x52\x62\x5e\x66\x05\x5a\x99\x78\x9e\xaa\x5a\xe5\xe5\xac\x7c\xb0\xf9\x23\x92\x94\x9b\x8e\xb4\x97\xe7\x97\x9b\xae\x9b\xb8\x6e\xa9\xb0\x7d\xa5\x4f\x53\xfb\xef\xf8\x44\x4f\xb3\x5c\x7f\x44\x6e\x18\x91\x19\xeb\x7b\x20\x66\x44\xf2\xb1\x5b\xea\x9d\xd8\x09\xee\x10\x9a\xfa\x0e\x93\xde\x77\xb5\x43\x29\xfd\x34\xe1\x73\x76\x6d\x05\x44\xe1\x5f\x79\x71\x51\x2e\x0b\xcb\x86\xfa\x14\xea\xc9\xa4\xc0\x72\xe9\x9e\x20\x22\xbc\xe6\x2e\x7a\x82\x09\x07\x32\x62\xa3\x4d\x41\xf2\x44\xc1\x39\x48\xf0\x7f\x82\x10\x46\x0d\xf0\x5b\xa1\xc4\x7c\xa4\x15\xca\x79\xef\x48\xb8\x6a\x26\xf9\x21\x32\x54\xd5\x14\x2c\x97\x7b\x31\x34\x11\x49\x3f\xb9\xf5\x94\xaf\x43\x97\x7d\x71\x49\x96\x4b\xf6\xde\x77\x64\x84\xd7\x7a\xcc\x2f\x40\xff\xc5\xb3\xd5\x8f\x9a\xf5\x00\xa6\xa9\x3a\xfd\x62\xeb\x00\x3c\xec\x14\x06\x1f\xde\xf4\x77\x31\x39\x71\xcb\xf7\xb0\x8b\xa2\xb4\x3c\xbb\x25\xf7\xa6\x64\x9b\x56\xd0\x9d\x40\x35\x18\x69\x0c\x78\x69\x58\x3c\x67\xe0\x17\xa4\x70\x72\x99\xce\xaa\x13\x84\x94\x50\xe1\xf0\xf2\x34\x26\x29\x3c\x6a\xd0\x8d\x97\x86\x89\xb5\x4d\xf6\x4f\x8d\xad\xea\x89\xa3\xc7\x71\xb4\x45\xb2\x9b\xc7\x5b\x61\xf5\x2d\xf3\x28\x2d\x56\x5c\x2e\x33\x2d\x88\xac\x9d\x6f\x91\x16\xdb\x34\xb8\x62\xe1\x50\xb3\x70\xa8\x47\xc9\x8f\x9b\xf5\x7e\xc3\x6b\xda\x5e\xf3\x3d\x81\x6e\x5c\xc6\xae\xf8\x8d\x3f\x1f\x75\xcc\x4c\x0a\x8b\xfa\x04\x67\xfb\x38\x69\xb9\x14\x1b\xda\x30\x0b\xa9\xcb\x4d\x36\xd0\xbc\x59\x97\xcf\x0e\x73\xd7\x8d\x0b\x83\x3a\x69\xc5\xbf\x15\xd8\xf9\x1f\xf8\x74\x36\x77\x3d\xb7\x12\x5c\x23\x75\x42\x61\x25\xb3\xd9\x55\x37\x8d\x07\xd9\xc0\xa5\xe5\x68\xd0\x08\x68\xea\x93\xd4\xc6\x3b\xe9\x55\xb0\xa2\x6e\xd7\x0d\xcb\x3d\x13\x88\x34\x19\x20\xc8\x0c\x20\x80\xec\x7b\x12\x3e\x5e\x7a\x4c\xa2\x3b\x8c\x89\x47\x24\x87\x56\x27\x51\x32\x15\x2b\xf3\x51\xb2\x89\x65\xc9\x8b\xe1\x05\x85\xe6\xf7\x48\x1c\x17\x50\x28\xd4\x6f\x3f\xad\x82\x75\x8b\xf2\xe1\x8e\x01\xf4\x43\xe0\x29\x93\xb4\xda\x7b\xbe\x7b\x99\xbb\x6e\xb6\x9a\xc6\xdf\xf1\x41\xa3\x39\x3a\x86\x9e\xea\x89\x3a\xe9\xe2\x5e\x94\xa3\x94\xac\x2b\x2e\x39\x72\x9e\xe0\x66\xe4\x46\x14\x2b\x21\xff\x15\x4d\xee\x34\x94\x47\xee\xba\xbb\x4d\x5e\x37\xdc\x0b\xda\x70\x09\x14\x59\x96\xe7\x97\x75\xa5\x51\x4d\x42\x3d\xa1\x77\xbd\x9e\x25\xeb\x71\xba\x3a\x1b\xa8\xe3\x3f\xc1\xa4\x46\xa8\x7d\x99\x0a\xbb\x4f\x51\x71\x79\x96\xd6\xc8\x6e\x9c\xec\xc5\xc0\x35\xa9\x9a\x80\x64\xd1\xad\xd1\xfa\x73\xd5\x97\x59\x33\x82\xf6\x8b\x0f\x31\xd4\xb1\xf7\xdf\x14\xec\x81\x51\xd7\x9f\x21\x58\x50\x9c\x96\x46\x51\xc2\xd6\x70\x87\xf8\xdb\x77\xa6\x40\x73\x07\x0e\x34\x8b\x6e\xdc\x20\xa0\xdc\x99\x16\x6f\x17\x35\xe6\x39\xab\x2e\x75\x79\x94\x48\x57\xc2\x5b\x2f\x2d\xd2\xf5\x2f\xcf\x7b\xad\x52\xda\x0a\xde\x67\x66\xe0\xca\x4a\xdc\x75\xf9\xa3\x8d\xfd\x0b\xdb\x97\x5b\xa4\x10\xaa\x15\x11\x0c\xe6\x1f\xcb\x95\x63\xe1\xdc\xd7\x9e\x58\x93\x96\xe7\x61\x89\xad\xcf\xe6\xc2\x78\x4a\x67\x4d\x31\x87\xc4\x59\xe9\x8c\x7a\xab\xe2\x18\x33\x13\x4a\xde\x17\x10\x77\x19\x18\xa6\xe1\x25\x2d\xae\xd5\x29\x0d\x74\xe2\xa4\x93\xbb\x4d\x8a\xf6\xb4\xea\xa1\x27\x35\x36\xc0\xcd\x28\xcf\x46\x69\x6f\x4f\x68\xa0\xee\x6b\x07\xdc\x12\x22\x4e\x55\xa3\x1f\x93\x88\xce\x8d\x49\x8c\xaf\x57\x7c\x3d\x4b\x75\xad\x3c\xcb\x8a\x52\x4a\x9c\x6a\x3c\x4d\x4a\xc3\xf7\x77\x6a\xab\x1f\x9e\x5f\x6a\x3e\xff\x74\xc3\xcb\xdf\xfc\xc3\x31\x61\x7a\x3f\x69\x91\x14\x20\x06\x20\x1e\xdf\x49\xc9\xa3\xbd\xdf\x5f\xb5\xb4\x13\xa0\xfe\x05\x0d\x30\xfe\x9d\x6c\x50\x48\xa2\xae\xb4\x48\x6d\x52\x45\xa9\x8c\x93\x1c\x24\x93\x74\x8a\x22\x68\xfa\x39\x2a\xba\xd8\x06\xdf\x6d\x05\x9d\xb1\xb7\xb1\xc3\x23\x44\x7a\x5f\x22\x14\xe4\x0d\x47\xc9\xdf\x3a\x89\x3b\x32\x1a\xe5\x3d\x60\xe1\x3b\xa2\xfb\x2f\x06\xa1\xf2\xe3\xcd\x62\x36\x94\x6c\xcf\x8e\x1f\x0f\xe5\x87\xe2\xeb\xa8\x6f\x63\x9e\x7c\x2c\x8f\x12\x73\x00\xaa\xfc\x56\x44\xaa\x35\x4f\x5c\x98\x99\x10\xd5\x91\x27\x8b\xfe\xef\x83\x09\x9d\x0f\x4a\xbe\xca\x32\x2e\x47\xbd\x2a\xb8\xa8\xb6\x48\x0f\x40\xae\x9e\xb0\x2d\xf7\xb6\xf7\xb9\x74\x35\x4e\x9d\xcb\xab\x69\x8d\x1b\xab\x35\x0f\x7e\x8e\x90\xa2\x49\xdc\xcd\x86\xa5\xcb\x8b\xb9\x00\x48\xbb\xdf\x22\xba\xf9\x69\x12\x9f\xba\xca\xb2\x41\x93\x84\x86\x69\x39\x37\x11\x55\xf2\x95\x7c\x34\x21\x6e\x50\x43\xe2\x06\xad\xcd\xd0\xb7\x2f\x1e\x95\xe7\x81\x8b\x50\xde\x1d\x46\xd7\x7b\xb8\x22\xc3\x95\x57\x83\xc8\xf4\xa0\x02\x39\xf2\x16\xb6\x3d\xe0\xab\xdf\x1c\x07\x64\xe4\xc3\x16\xd1\xcd\xc6\x21\x81\x39\x31\xc1\xc5\xcd\x36\x50\x89\xc1\x8a\x82\x02\xaf\x1e\xd7\x94\xe3\x96\x9a\x65\x96\x4c\xd0\x88\x8e\xb4\x88\x46\x74\x84\x33\xdb\x78\xb5\xff\x04\x57\xba\x03\x6c\xf5\x0a\x46\x9c\xc7\x08\x1f\x9e\xd7\x4a\xb6\xfa\xbf\x19\xa6\xab\xba\x16\x94\x06\xaf\xb3\xba\xdf\x3f\x97\x20\x17\x65\xa9\x73\xf2\x54\x94\x84\x8f\x4b\xc1\x9c\xd3\x55\x13\x35\xcf\x59\xa4\x92\x1e\xb6\x18\x70\x79\x67\x6a\x9b\xb5\xd1\xa8\x28\xf3\x28\x89\x23\xcb\x7f\x4d\x3d\xb0\xba\x1f\x4c\xb1\xd9\x2d\xca\x7f\xf7\x4e\xc9\x42\x2e\x1c\x6a\xae\x66\xeb\x2e\x4f\xb3\x7c\x66\xc2\x1a\xba\xe1\xad\xc8\xef\x52\x65\xe6\x0e\x11\x21\xfb\xd9\xb0\xda\xaf\x43\xb5\xed\x16\x41\x55\x94\xf6\x63\x06\x14\x44\x95\x2a\xf3\x68\x54\x14\xb3\x9c\x27\xfd\x87\x65\x56\x35\xb1\x45\x39\xca\xd3\x19\x66\xa3\x35\xbc\x72\x29\xa8\xf2\xb6\xab\x10\x25\xbb\xdb\x1d\xe5\x51\xe9\x92\xcd\x59\xee\xc4\xc9\x25\x58\x2b\x4e\xde\x21\x1e\xe5\x35\x56\x65\xbc\xd6\x7a\x36\x80\xe3\xd6\xa3\x64\x24\xa1\xd3\x4c\x30\x4c\xbf\x38\xa6\xa8\xf9\x93\x71\xa0\xa9\xde\x6c\x85\x74\x7a\xd3\xa5\x8f\x54\xab\xb1\xb5\xa9\x08\x9c\x45\xc5\x97\x89\x04\xe3\x0a\x96\x22\x3d\xc1\xf3\xf2\x2c\x04\x2f\xf5\xf1\xa9\x0c\x5d\x7c\xeb\x49\xd2\x73\x88\xbf\xb9\x32\x13\x2c\x15\x81\x17\xb4\xb8\x3c\x40\xea\x8e\x12\xae\xbe\x9f\xf5\x0c\x18\x66\xf0\xea\xd0\x37\x39\x4f\xed\xb9\xdc\x0d\xa2\x7c\x6d\x86\xec\xc2\x7f\x30\x0e\x90\x1d\x14\x93\x10\x86\xdd\xaa\xc3\x24\x0f\x47\x79\xb7\x1f\x05\xe7\x1c\x75\xb2\xa3\x7c\xf8\x0f\x08\x8f\xb8\x9a\x44\x83\x2c\xcf\x46\x05\x62\x3d\xed\x8e\x91\x14\xf9\x05\x0a\x8e\x57\xf3\x28\x2d\x51\xb1\x32\x17\x32\x4c\x11\x3d\x93\x1b\x02\x02\x67\x8f\x84\x24\xc6\xe0\x25\xf2\xc6\x71\x8c\x04\x6c\xa7\xef\x53\xa9\xe3\x9e\xa7\x4a\xf4\x36\xd3\x68\x10\x77\x55\x27\x00\x5b\xdf\xbe\x36\x63\x48\xb5\x37\x86\x0c\xf5\x3c\xe9\x31\x3f\x08\x02\x77\x6b\x9b\x1b\x51\x0e\xbd\x3a\xec\x02\x18\x15\x7a\x4c\xd0\xf7\x5e\xbc\x1a\x97\x06\x09\x62\xb1\x39\x3d\xf6\x69\xc7\xba\x4b\xd6\x9d\x5a\x92\x78\x7f\x3c\xc2\xe9\xd7\x90\x18\x7a\x59\x9a\xba\x24\xd1\xb0\x48\x49\x1c\x63\xe2\xf1\x7e\x46\x35\x9d\x61\xee\x0a\x97\x4a\xc7\xbc\x5a\xb1\xb0\x12\xdf\xa5\x82\xef\xdd\x31\x71\x1c\xce\x23\xe1\x34\x2e\xb7\x5d\x64\x91\x64\xa3\x6e\x7f\x26\x14\x7b\xef\x4e\x0c\xb3\x30\x7d\x4e\xfb\x3f\x29\xfb\x79\xb6\x51\xec\x54\xe3\x5d\x30\x8d\x4c\xae\xbe\xdd\x27\x43\xd5\x6a\x89\xeb\xbb\xa8\xc7\x0e\xfc\x0a\x24\xd2\x93\x29\xec\xe9\xf2\x7c\xd3\x0d\x3a\x51\x9e\x47\x45\x61\xe9\x21\x86\xd9\x87\x94\xbb\x7f\x58\x67\x1b\xd6\xcb\x36\xd2\x32\xdb\x48\x67\x02\x62\x51\x39\xb8\x98\x76\x1f\x8f\x83\xce\xf9\x1b\x53\x4d\x5c\x2b\x5c\xa5\xae\x9c\x0d\xf8\xfe\x19\xd2\x5b\x8b\x9f\x16\x87\x61\xc3\xcb\x34\xbc\x38\xdd\x6c\x3b\xe4\xf2\xa3\x34\x5e\x77\x79\x11\x25\xc9\x26\xa9\x2d\x2a\x19\x54\xe5\x45\x5b\x81\x7a\xf1\x8e\x37\x83\x19\xc6\xae\xeb\x66\xc3\xaa\xaa\x25\x09\x65\xbb\x13\x6a\x06\xc6\x84\xa6\x0d\x46\x32\x89\x31\xe0\xe7\x86\x9c\xa1\xda\xe3\x29\x32\x15\x1a\xa5\x49\xbc\xe6\x04\x75\x8f\x38\xee\xaa\x0c\x1f\x3d\xae\xd3\x50\xe9\xf6\xa3\x38\xd5\x32\x8e\xb7\xf6\xa9\xae\xcd\xbc\x92\xbf\x46\xcc\x9d\xc8\xf0\x73\x09\x06\xf4\x1f\xef\xa2\xff\xab\x5f\x93\x05\x08\xc1\xde\x9e\x2d\x7a\x59\x8a\xfc\xc3\x2e\x74\x8e\x10\xa1\x20\x7f\xa0\xf4\xff\x4c\x3b\x2c\x27\xef\x8e\x43\xac\xbd\x2d\xa8\x51\x03\x9b\x90\x54\xc1\x13\x5b\xa4\x94\xf9\xf6\x98\x4b\x21\x4a\x8d\x44\x4c\xf7\xd9\x38\xe8\xf8\x5f\x95\x08\x04\xa9\xe6\x3b\x40\x6c\xea\x87\xe4\xc1\xa1\x2f\x77\x16\x8f\x1b\xf9\xdc\x6f\x8d\xa9\x57\xa1\x50\x68\x59\x54\xbe\xf9\x4c\xbb\x8a\x4d\x7c\x4b\xf4\xd7\x7e\xdd\xf3\x28\x25\x86\xb7\x16\x6c\xe8\x71\x0d\xaa\x69\x30\xc3\x30\xb0\xea\xce\x30\xb8\xc1\xba\x36\xe9\xd8\xc0\xde\x4d\x63\xad\xa8\xa3\xb6\x7d\x94\xd0\x1f\x47\x89\xc8\xbc\x12\x47\x7b\xaa\x2f\xb3\x08\x20\x68\x02\x6a\x41\x03\x4b\xf3\x4f\x39\xa5\x84\x24\xaa\x1e\x8f\x03\xde\xff\xde\x54\xea\xb6\xf4\xd2\xc1\x66\x27\x8f\xdd\x0a\x49\xf8\x7f\x46\x12\xfe\x9f\x91\xfa\x50\x2f\x2e\xba\xf1\x30\x89\x53\xd5\xc5\x47\x2c\x73\x93\x1d\xab\x20\x6a\x66\xb2\x1c\x35\x96\xa8\x12\x94\xa0\xb5\xa2\x17\x7e\xa3\x45\x72\x17\x1f\x73\x27\xf9\x62\x1d\x2f\xaa\x3b\x4a\xca\x51\xae\x2c\x48\xed\xe8\xc9\xb6\x61\xdd\x3d\xef\x4c\x90\xe5\xae\x28\x61\x76\x66\x4a\x66\x3b\xb1\x8d\x66\x94\x14\xc2\xb6\x8d\x2c\x4f\x7a\x4f\x85\x16\xcd\xdd\x56\x20\x8e\xbf\x73\x95\xe9\x1f\x6f\x49\xd2\x88\x41\x0d\xc2\x0e\xde\xca\x9b\x18\x7b\x56\xe6\x93\x9b\xf3\xfa\x1d\x2f\xda\x7e\xd9\x68\x13\xed\x44\x11\x7e\x1e\x86\x57\x5d\xb2\x85\x20\xf2\xa4\xb0\xdb\xdf\x93\xd1\xae\x97\x32\x0e\xab\xe7\xec\x56\x90\xd1\xdf\x6a\xd4\x81\xc8\x44\xac\x86\x6c\x9d\x3e\x23\x5b\xa7\xcf\xc6\xcc\xcf\xf0\xc1\x06\x3a\xcc\xef\x61\x54\xe9\xc9\xd4\x6a\xfe\xea\xab\xcd\xdc\x75\xd7\x12\x57\xc0\xc4\x1b\x79\x0d\x0a\xab\xde\xd9\xe3\x5b\x2f\x9b\x04\xfb\x54\x90\xba\x3c\x2f\x70\xc7\xd9\xc0\x28\x78\x53\x52\x1c\x73\x7b\x0c\x78\x25\x0d\x3b\xad\x5e\xf3\x1c\x79\xb1\xac\x64\xf9\x40\x42\xcd\x7d\xf4\xac\x51\x59\xb0\x79\xce\x44\x7e\xc2\xd2\xc0\x9b\x1a\x4b\xce\x3d\x8c\x3c\xcd\x47\x5a\xd4\x33\x57\x97\x1f\xa0\x49\xee\x53\x0f\xe9\x5e\x2b\x58\xcf\x9e\xc2\x8b\xc2\x8f\x3c\xac\x71\xb3\x3c\xd8\x2c\x86\x2e\x2d\x01\xb8\x44\x99\xff\xde\x98\x50\x48\xc7\xf1\xfb\xaa\x14\x43\x3a\x08\x79\x94\xae\xcd\x92\x2f\xe3\xc5\x56\xe3\xaf\xfe\x65\x5f\x97\xa1\x1a\x0d\xae\xc0\xfc\xaf\x42\xb1\xac\xec\xbb\x2c\x8f\xcd\x2c\xc2\x24\x49\xab\xc7\xa3\xc0\xa3\x56\x68\x3c\xfd\xcc\x97\xa2\xd7\x5d\x5a\x8e\x72\x57\x64\x03\x47\x8c\x86\x73\xa4\xb7\x3b\x6d\x79\xfc\x7c\xb5\x07\xa5\xab\x26\x1c\x8a\xa4\x08\x6f\xc2\x8a\xc0\x72\x0d\x78\xd5\xbb\xda\x75\x0e\xa8\x29\x19\x46\xe1\x9a\x54\x1e\x5f\x4f\x6a\x44\xe4\x0f\x36\x0b\x57\xce\x52\xd8\xff\x6f\x5a\x64\xfc\x02\xa6\x28\xf6\x85\x7f\xc3\xb8\xef\x6d\xdf\xc5\x2a\x5d\x51\xc6\x2b\xb1\xf5\x40\xcc\x29\x7d\x42\x27\xe5\x09\xb2\x0f\x5d\xc5\x0e\xae\xab\x0a\x59\x4e\x5f\xa4\x10\x3b\xaf\x56\x29\x98\xdb\x22\xab\x3f\x8f\xd7\x8d\x55\x79\x46\xa2\x6a\xfa\x0f\x03\x0d\xdc\xc6\xa6\xa4\xff\x33\x4d\xe9\x5e\x6a\xae\x64\x23\x6f\x6e\x59\xab\x71\x5b\x97\xf0\x67\xa9\xf2\xa7\x90\x8a\x5d\xa6\x5c\xf0\x32\xa5\x36\x83\x51\xde\x53\x1c\xac\x6f\x4b\x11\x8e\x2b\xb4\xe3\xb3\x64\x73\x30\xac\x22\xfb\xb0\xb9\xbc\x35\x9e\x30\xda\xc3\xa6\xad\xf5\x4e\x94\x9c\xcd\xeb\xd9\x03\x34\x5d\x5c\x8c\x72\x88\xa6\xe3\xcf\x9e\x96\xb6\x32\x72\xff\x5d\xc8\xcd\x91\x72\xef\xde\x7a\x9a\x4c\x4c\x64\x13\xd9\xd7\xf0\x3a\x61\x5f\x48\x31\x17\x97\xa1\xa1\x20\x16\x63\xed\xba\x2a\xc1\x89\xbd\x5f\x2e\x4d\x9a\xe0\x05\xe8\x8e\xc2\xd8\xb0\xb9\x61\xba\x43\x99\xea\xba\xb6\xa5\xb1\xd3\x9d\x19\x07\x7d\xd2\x4b\xe3\x80\xb3\xef\x64\x9d\xb9\xc0\xf5\x57\xbb\x19\x4b\xf4\x1b\xe4\xdb\x4d\x2e\x68\xea\xa5\x80\x55\xf2\x12\x29\x7b\x67\x40\x25\xb3\xdc\xb5\x47\x40\x7d\x51\x4f\x22\x4b\xb2\xee\x1a\x75\x2b\xce\x8e\xe9\x21\x4e\x5b\x62\x3f\xdf\xcc\xdd\x6a\x94\xf7\xaa\x15\xbc\xe1\xb5\x2b\xcf\x43\xac\x48\x8f\xb7\x6a\x62\xff\x51\x5a\x0c\x5d\x37\x5e\xf1\x50\x4a\x43\x4a\x33\x82\xda\x77\x16\xb2\x22\xca\xe3\xc8\x62\x53\xef\x61\x19\x1a\xcd\xdf\xa3\xa2\x79\xcf\xa5\x9b\x9e\x76\x89\x2d\xea\x18\x3e\xab\x27\xec\x56\x11\xa5\x65\x24\x10\xda\x6d\x79\x34\xdb\x5a\xd8\x33\xac\x5e\x75\x17\xa6\x9f\x1d\xc6\x4f\x95\x94\xeb\x2f\xf8\x82\x1d\xd9\xf5\x5e\xa7\x44\x4e\x44\x08\x06\xa3\x3c\x6a\x84\x74\x4b\xa9\x65\x7a\x52\xbb\xd4\x0b\x72\x0d\x4b\xbd\x6f\xe8\xfb\x07\xf3\x73\xaa\xce\x5d\x66\xa7\xfb\x24\x89\xa3\xb4\xeb\xf0\x22\x54\xbb\x57\x42\x06\xd3\xf1\xf5\xae\x17\x99\x2b\xd5\x7f\x71\xa2\x9e\x69\x83\x84\xf8\xd3\x2e\x1f\x44\xa9\xee\x3b\x8b\xa1\xbc\xe8\x1b\xdc\x6a\xe6\x6b\x62\x83\xa1\x8d\xb0\xe2\x84\xfa\xeb\x7a\x7b\xab\x2b\x40\xed\xfe\xd4\x98\xc8\xf5\x97\xd9\xab\xf8\x98\x4e\x77\xb3\xc2\xab\x7e\xc0\x93\xa7\xaa\x1f\xd0\x13\xc4\x7a\x98\xb4\x21\xa7\xea\xb9\x61\x56\x92\x73\xb3\x0a\x8a\xe8\x09\x09\x8a\x88\x80\xec\xde\xc6\xf2\xd2\x36\x5c\x0a\x4c\x0a\x22\xa0\x3d\xcf\x42\xa8\x05\x79\xc7\x45\x52\x73\xfa\x48\xb2\x00\x94\x20\xce\xb0\xb8\xea\x35\x7f\x19\x9d\x68\x0d\x18\xf7\xc5\x60\x19\x42\x98\x87\x89\x76\x48\x60\xb3\x7d\x44\xcb\x67\x2f\x4e\x53\x97\x8b\x71\xa1\xf9\xae\xd2\xdd\x83\x69\xe8\x8d\x35\x5f\x0c\xc6\x9a\x64\x26\x93\xa5\x23\x88\x41\xd8\xae\xce\x3f\x5b\xa3\x5d\x51\xf4\xa3\x35\x57\x0c\x5d\x94\x1b\xf7\x10\xcb\xa0\x9a\x5e\xe8\x09\xe1\xe7\x8b\x0d\x95\x9a\x0f\xc3\xe7\x3c\x2d\x2b\xe7\xeb\x78\xb1\xc3\xac\x74\x69\x69\xda\x23\x08\xc2\x2e\x50\xf3\xe0\x82\xe7\x21\x44\x85\x88\x94\x78\xb2\x80\x0c\xf9\xaf\x3e\x83\x08\x15\xa3\x83\x09\xa4\x3a\x97\x50\x75\xda\x35\x55\x7f\x85\x6e\xf4\x30\xf3\x16\x04\x58\x7b\x6f\x60\x1c\xea\x89\xc7\x8c\xbf\x16\x75\xd7\x66\x42\x5f\xe5\x2c\xc9\x1c\x5d\x93\x47\x6f\xa6\x8b\x5f\x21\xd4\x6e\x9e\xc7\x65\x96\x6f\xce\x86\xde\xe6\x78\x4c\xf4\x8e\xe3\xe4\x18\x79\x01\x8b\xb9\xa1\x66\xa7\x05\xf9\x17\x9a\xbd\x51\xa7\x63\x4b\xa2\x66\x41\x2d\xce\x88\xc2\x06\x3a\xc8\xd2\x32\x77\xd6\xd1\x41\xd8\x07\xe4\x89\x67\x57\x7e\xeb\x65\xdd\x1f\xfe\x6b\xd2\x62\xba\x37\x15\x00\x2d\x1c\x6a\xae\x47\x8a\xae\x45\x79\xe0\xd1\x76\xe8\x28\xef\xde\x62\x21\xe1\x3a\x12\x6a\x3e\x2a\xca\x4d\x54\xaa\xbd\x03\xc8\x81\x03\x5e\x68\x69\x92\x07\x13\x5a\x0e\x51\x51\x3c\x21\x99\x02\x47\x91\x1e\x31\x5d\x3d\x41\x1f\xb9\x57\x7b\xbf\x05\x02\x61\x1d\x7d\x14\x1b\xb5\xa2\x59\x24\xee\x37\xd4\x2e\x16\x13\xf3\x1d\xa1\xb0\x09\xeb\x21\x5a\x47\x67\x04\xe6\xe1\x55\xc0\xbe\xbd\xa0\xf1\x85\x72\xc4\xac\xd3\xfa\x55\x96\x7f\x2b\x5c\xbe\x1e\x95\x71\x01\x64\x82\x09\xb1\x36\x48\xb9\xd5\xdb\x93\x45\x03\xf7\x48\x63\x71\x71\xfb\x4f\xb4\x27\x32\x0f\xb9\x19\xb4\x66\x7e\x1e\x5a\xce\xdf\x45\xcd\xc9\x6a\xc5\x44\x09\xba\x31\x91\xd0\xe0\xc6\xc0\x76\x9d\xa6\x72\x1d\x9e\x7f\xa5\x7a\xac\xa3\xbc\xda\x06\x66\xc2\x22\x8d\xd1\xeb\xaf\x20\x40\x31\x3e\x9c\x9a\xac\x55\xac\xb7\xe1\xa2\x35\xe7\x41\x1b\x1a\x55\xb0\x95\x1f\x47\xb3\xab\xd1\xba\x83\xd3\x86\x19\xe9\x84\xdf\xba\x45\xb2\x51\xe7\x88\xdd\x7a\x5d\x16\x2f\xfd\x4c\x8b\x70\x95\xd7\xa6\xfa\x30\xaf\xbe\xda\xcc\x86\x2e\xa8\x70\x53\xc9\xaf\xfa\x6e\xeb\x11\xd5\x38\x43\xad\x46\x71\xda\x20\x41\x40\x54\x68\xed\x6e\xbc\xac\x7a\x96\xac\x15\x32\x79\x31\xda\x14\x72\x8a\x11\xa6\x88\x27\x5c\x1b\xbc\x08\x54\x17\x93\xd6\x43\xc8\x84\x3b\xd4\x97\xd5\xf4\x81\x24\xb2\x2e\x40\x11\x46\x07\xfd\xea\x40\xbc\xb1\x00\x5f\x3a\x8d\x10\x12\x69\xc6\xef\x90\xcf\xe5\xf9\x31\x61\xbb\x4f\x8d\x09\xdb\x7d\xaa\x45\x64\x40\xf4\xcc\xac\xf4\x5d\x43\x05\x1c\xe5\x1d\x5d\xd3\x31\x7d\xcf\x11\x53\xe5\x5c\x9d\x6a\x59\xea\xd4\xbd\x19\x2b\xed\x36\xd9\x90\x6f\x4f\x4d\xfd\xc5\x6a\xea\x77\xe2\xb4\xc1\x32\xeb\x6f\x71\x67\xea\xad\x5a\xa6\x9c\xbf\x28\xdc\xb8\xb2\xcd\xf5\xa4\xf5\xcb\x5f\x52\xaf\xed\xbb\x28\x29\xfb\xdd\x28\x57\xab\x7c\x94\x0a\xde\x21\x40\xe7\x3b\x35\x42\x98\x41\xc0\x5e\x7e\x11\x13\x5c\x6d\x29\xf5\x84\xba\x67\x2b\x71\x9a\x44\xe0\xa6\x2e\xf9\xc4\x8d\xd2\x7a\xd6\x51\xef\xb9\xe4\x9b\x98\x20\xe8\x23\x9c\x1a\x93\xbf\xf2\xa9\x89\xe6\xaa\x8b\xd2\xa7\x25\xaa\xb0\xee\x78\x20\x35\xde\x45\x6f\x17\x20\x9c\xbb\x02\xe1\x43\xb8\x71\x8c\xf9\x5b\x67\x39\x33\x32\xa0\x3d\x90\x99\xca\x9c\xc3\x7f\xed\x96\x3a\x29\xc2\xab\xab\x52\xb4\xe0\xa6\x14\xb2\xee\xaf\xb4\x89\xb2\x72\xb6\x45\x15\x7d\x48\x6e\x79\x6f\x8b\xc5\xc5\xed\xfb\x2c\x11\x7c\xbe\xb5\x8f\xd8\xe4\x44\x41\xf9\x98\x49\x97\x1f\xd7\x64\x8f\xcd\x22\x96\x32\xb1\x9f\x64\x27\x5a\xc1\xb7\x63\x5a\xce\xbb\xfa\x83\x2c\x71\x9a\x6f\x2a\x0e\x48\x66\xd4\x97\xd9\x57\x2d\x1c\x6a\x76\xb2\xd7\x1b\xd5\xd3\xc3\xe6\x77\x96\x36\xc2\xb3\xb5\x35\xcb\xdf\x1c\xc5\x25\x98\xa3\xd8\x25\x00\x9c\xd2\xe3\xf1\x9f\xf9\x32\xa5\x9e\xee\x6f\x8e\xe2\x42\x2a\xdf\x33\xd4\x80\xb9\x4d\x89\xc2\x69\x3c\x0d\xe4\x82\x8d\x36\x71\xed\x92\x6c\xc3\xe5\x7b\x43\x3a\x8c\xa7\xe0\x75\xbe\x16\x83\xf3\x8a\x60\xe3\xa9\x01\x63\x6c\xa9\x13\x04\x7a\xda\xb5\xd5\x78\x79\x49\xf7\xeb\xf7\x38\x2e\x88\x8a\x22\xea\xe6\x6e\x96\x0c\x29\x2f\x91\x9d\x24\xc0\x6a\x06\x69\x20\xb6\xdf\xf1\xa9\xe4\xce\xee\x3a\x4b\xdc\x6a\x23\xc0\x95\x14\x50\x61\x7e\x41\x0c\xec\xdf\xc8\xd2\x59\x6a\xac\x6a\xb1\x8c\x75\x32\xea\xe4\x94\x2c\x5f\xdd\xcc\xf2\xb5\xe0\x59\x8d\x75\x6d\x16\xed\x11\xec\xd8\x4a\x3a\x44\x40\x7d\x8b\x6e\xba\xdb\x17\x3d\x1b\x5d\x1a\x3c\xab\x3a\x30\xac\x7d\x55\x37\x4e\x8b\xb8\x80\x96\x3d\x66\xe3\xad\xf1\x64\x17\xcf\x7b\xce\x9d\x23\x06\xd6\x59\xf6\xa9\xbb\xc8\xdc\xa3\x73\x78\x3f\x18\x99\x4f\x4f\x90\x5b\xa2\x94\xd6\xfa\xeb\xac\xb3\x7a\x13\x81\xa0\xb7\x9d\xf2\x86\xb9\x67\x5b\x84\x55\xc1\xf2\x6e\xaa\x3f\x78\x28\xe8\x7b\x7c\x50\x93\xba\x1f\x6c\x0e\x4d\xdf\xc1\x2a\x01\xb7\x58\x0f\xf7\xd6\x84\xaa\x46\xba\x92\xc4\x22\xe4\x71\xe0\x80\xae\xd5\xf7\x5a\xb4\x70\xdf\x9b\xa0\x1c\x55\x61\xa6\x08\x15\xa0\x33\xec\x85\xe5\xbd\x8e\xef\x29\x12\x17\x1a\xe6\x22\xc5\x9f\xaa\x4a\x88\x3a\x3a\xe3\x29\x99\xbd\x73\x48\xc0\x87\x71\xa2\x3b\xa7\xd9\x5d\x87\xe6\xdf\x89\x31\xb1\x5d\x47\x49\x12\x17\xfd\x99\xc6\xb2\x3d\x6b\xd4\x4f\xb0\x08\x7e\x8f\x64\x28\x2f\xd6\x6d\x84\x45\x19\xad\xea\xe0\x40\xed\x0e\x20\x30\x3d\x66\x9c\xe4\xca\x4a\x14\xe7\xc5\x1c\xfb\xb1\x9d\x1d\x53\x11\xee\x08\xf5\xf7\x3f\x26\x6d\xb6\xe3\xdc\x3e\xb9\x1d\x4c\xfd\xba\x59\xee\xf6\xc8\x7f\x69\xb7\x63\xcc\x45\xa0\x0b\xd4\x35\x7e\xa4\x2d\x4f\xd7\x48\x8b\xf2\xc0\x70\x7b\x17\x5a\xe1\x56\xa7\x83\xbe\x17\x17\x9b\xa3\xa4\x8c\x07\x51\x39\x1a\xa0\x8a\x6e\x76\x68\x72\xd9\xe8\x7a\x41\x12\x03\x13\x8e\xcb\x70\xc5\x68\x75\xd5\x15\x25\x00\x50\xf6\x38\x64\xaf\xd2\x18\xb3\x15\x64\xc9\xce\x21\x52\x53\x64\x84\x7c\xa1\xa1\x24\xa6\xd1\x33\x22\xd2\x36\x94\xb4\x52\xe3\x48\x53\xe3\x91\x79\x60\x72\x3c\x8f\x93\x73\x4c\x77\x96\x56\xce\xbd\x6d\x86\xdc\x68\x54\x86\x6a\xd9\xb5\x49\x1d\xf8\x1a\x2f\xc3\xee\x7a\xca\xda\x70\xec\x45\x74\x69\x6a\x37\x78\x5e\x40\x2b\x85\xea\x0b\xfb\x2a\x7f\x75\xc9\x68\xe0\xdd\x63\xc5\xc9\x53\xfc\xf0\x36\xd3\x5e\x9e\x0d\xe0\x95\x84\x5d\xf7\x22\xa9\x5c\x6e\xc9\x50\x41\xb5\x70\xda\xbb\x74\x79\xbe\x39\xc8\x8a\x12\x40\x70\x05\xc8\x02\x08\x6e\x68\xd9\x9d\x37\xb6\x3c\xdf\x94\xf0\xec\xf0\xbc\x69\xa0\x63\x19\x31\x41\x74\x4b\xa1\x57\x22\xf1\x38\xf4\xfe\x5b\xde\xfd\xda\xe3\x8c\xb4\xa6\x62\xbe\xdc\x3b\x13\xd1\x97\x97\x9a\xdd\x24\x8a\x55\x46\xc2\x46\xa1\x9a\xbd\xe8\xc9\x14\xe3\xfb\xdb\x0b\x9e\xda\xa9\x3b\x37\x9a\x27\x6f\xc9\x2a\xa6\xc7\x93\x09\x60\x92\xfc\x92\xbc\x56\x14\x0e\x00\xa1\x47\x06\x79\x5b\x22\x21\xb4\xce\x95\x9b\x83\x05\x72\x1b\x5e\xfc\xa8\x54\xff\xae\xcc\x0b\xdf\xdd\x3e\x3c\x1f\xb8\x45\xdf\x5e\xd0\x3e\xce\x39\x9d\x6f\x68\x5b\xa8\x22\x29\xb2\x65\xd4\x11\xb0\x0b\x3c\xbe\x15\x68\xa2\x73\x5b\x8d\x43\x2f\x05\xcf\x87\xfd\xfb\xcd\xfa\x9f\x90\xb4\x73\x6d\x6a\x3a\x3e\x40\x14\x85\x45\xe1\x0d\xe9\x4f\x23\x8f\xfd\x8c\x83\xc7\x3f\xc2\x30\x44\x0d\xe1\x1f\xa2\xc9\x67\x92\xbe\x32\x08\x8c\xa2\x00\xc2\x81\x8f\x05\x82\x0d\xcf\x17\xd4\x12\xdf\x26\xcf\x85\x61\x9e\x0d\xf3\x58\x30\xbb\x0d\xf9\xb8\xd5\xd4\xaa\xeb\xb5\x8a\xda\xf4\x14\x95\x8e\x52\x77\x94\x44\x9e\x8d\x6b\x48\x68\xb9\x6a\x83\x42\x4f\x89\x72\xbd\x74\xb0\xd9\x71\x49\xb6\xae\xda\x92\x08\x81\x6e\xb6\x26\x48\x61\x81\xaa\xc4\xe5\xad\x41\x96\x27\x0e\xb6\x57\x18\xe4\x37\x25\x0e\xf0\x1a\xa8\xcb\xc1\x85\xf9\x69\x2a\xb1\xbc\x5e\xc6\xb0\x52\x7f\x41\xb7\x27\x2c\x9b\xc6\xec\xaf\x2e\x02\x0f\x65\x5a\x0a\x7f\xff\x42\x53\x24\xc9\x7d\xed\xc9\xe2\xde\xea\x0b\x2c\xb8\xe6\x08\xa6\x9b\xad\x68\x3e\x83\x4c\x4f\xab\x94\x7a\x42\xe0\xfe\x51\xea\x5e\x17\x35\x18\xd7\x9b\x63\xe6\x60\x35\x0c\x7d\xdf\x2f\xe4\x11\xba\x78\x22\xa8\x39\x42\xb0\xe5\xeb\x13\xa9\x42\xea\xdc\x97\xea\x7f\x7d\x99\x7c\x5b\x37\x8f\x0b\x53\x4a\x04\x7d\x10\xd2\x57\x1e\x34\x57\xdd\x80\x81\x27\x42\x7f\x29\x5b\x29\x5d\xfa\x8c\xd0\x5e\xbc\xd9\xde\xfe\x05\xbf\x8e\x11\xe0\xfb\xb6\x96\x1d\x30\xf4\x4f\x8c\x27\xa2\xe6\x17\x83\x24\xb6\xdc\x2e\x36\x11\x5d\x9a\x3c\x97\x9f\xb5\x60\x97\x0d\x2f\x79\x97\x2c\x34\x9e\xd9\x22\x31\xa7\x2b\x68\xf7\x78\x0c\xee\x61\xc3\x76\xfe\x5d\x36\x0e\xd4\x47\x8a\x69\xf7\x10\x41\x33\x6a\x0a\x0f\xa9\x42\x97\x44\x1b\x90\x39\xda\x1b\x06\x2b\x62\x60\xf5\x04\x14\x7a\x90\x8a\x19\x8c\x89\x61\xf0\xc4\x56\x80\x0e\xee\x6a\x87\x52\xd1\xe7\x41\xbf\xfc\xbf\xbd\x50\x8b\x6b\x4a\x5c\xb7\xcc\xe3\x6e\x5c\x6e\x62\xfd\xb4\xe2\x5d\xe0\x8c\x5e\x6a\x3d\x45\x40\xcf\x51\xe1\x8a\x47\x83\x46\xd1\x7b\xe3\x50\x31\x57\x8c\x2c\xc0\xa6\x17\xb0\x7a\x81\x21\xfd\x6e\x2b\x10\x59\xff\xf9\x44\x69\x83\xa6\xf2\xf1\x31\x91\x27\xaf\xf0\xbc\x3e\x3e\x05\x5a\x3e\x70\x40\x10\x59\x45\xb1\x49\xc8\xc4\x0f\xc6\x24\xfc\xfa\x01\xf9\xc8\xe7\xae\x18\x25\xe5\xe3\xa1\xae\xf8\xf3\x16\xe5\x8a\x97\x5b\x41\xc1\x74\x66\xab\x5a\xcb\xd5\x9e\x1b\xf5\x7b\xb6\xb7\xc6\x8b\xbd\x8a\xf1\x86\xa0\xe3\x04\x7e\x14\xef\xea\x8b\x31\x41\x87\x2e\x10\x06\xbb\xd1\x26\x1a\xca\x9d\x16\x95\xdd\x8f\x4c\x65\x32\x07\x0e\x54\x17\x9c\x8d\xf2\xae\xb3\xf4\x02\x31\xe6\x5b\x8c\x7a\xff\x3e\x7e\x17\x7b\xd5\xf7\x98\x3b\x1c\x15\xfd\xd8\xa9\x61\x21\x6a\xb9\xf7\x58\x94\xed\x9e\xdf\x7b\x85\xe2\xb5\xea\xd2\xb8\x2b\xfb\xb4\x17\x3b\x0f\x56\x60\x97\xa8\x91\xf4\x5a\x24\x72\xd3\x33\xc1\x96\x77\x5b\xde\xbd\x42\x1b\xdb\x81\x9d\x7f\x94\x20\x26\x2b\x51\x3e\x28\xb0\xd0\x63\x33\xb9\x2b\x7f\xa4\xc7\xd4\xed\xe8\x67\x79\xe1\x80\xc6\x40\xf0\xf3\xaf\xe5\xf1\xe9\xf1\xd4\xc2\xfe\x67\x9b\x5e\x5b\x60\x66\x42\x6a\xac\x61\xd6\x05\xbf\xa1\xdd\x1e\x50\x00\xcf\x4c\x55\x84\x0e\xcf\xbf\x20\x41\xcd\x8c\x6c\x6e\xa8\x88\x9e\x91\xdf\xc4\xbd\x1f\xc7\x46\x87\x42\xe1\x4d\xc2\xd0\xbe\xb4\x7c\xb0\x41\xc1\xa5\xea\xf1\xe8\xc9\xb4\x09\xed\xf2\x52\xb3\x3f\xca\x93\x06\xfb\xf6\x4f\xca\x82\xef\x24\x22\x3f\x3f\x29\xae\x4f\x56\xb2\xa7\xf1\x87\x16\x33\x53\x4e\x19\x99\x75\xcb\x37\xbe\xe1\x57\x48\x59\x64\x8c\xa7\xf0\xe4\x44\xc0\xa5\x1d\x86\x3a\x2d\x83\xa7\xa9\x3d\x33\x32\x71\xd7\x17\x0c\xbf\x44\x4e\x57\x37\x68\x5d\x88\xd2\x74\x14\x25\x8f\x86\xdc\xe8\x28\x62\x06\x2d\xef\x03\xc6\xe6\x6b\xfd\xcb\xf3\xf6\x29\x26\xd0\x5f\x68\x91\xa0\x8d\xe5\x90\x1e\x4d\xba\xdf\x44\xcd\x55\x3e\x02\xcd\xad\x5d\x5b\x21\x99\x5b\x1d\xb9\x3c\x8f\x93\x24\x52\x45\x3b\xaf\x8d\x16\x50\xdb\x17\x98\xcb\xbb\x22\x99\x1f\x5c\x9c\x91\x78\xe8\x26\xa8\xf5\xeb\xe0\x67\xf3\x4f\xfe\x74\x3b\xd4\x86\x9f\xd8\x22\x39\xed\xfb\xb5\xba\x3b\xd1\x20\xfa\xce\x0e\x71\xe5\x07\xa4\xd6\xf7\x80\xa4\x4f\x7a\xa3\x32\x76\xc5\x2c\xc2\x28\xd2\xeb\x7b\x41\xeb\x84\x20\x75\x20\xda\x82\xbc\xb2\xc6\x83\x5b\x4f\xfb\x17\x3a\x4a\x4a\xb4\xb4\x43\x4d\x97\x4d\x7d\xc9\x35\x34\x4e\x7b\xae\x53\xba\x5e\x5a\x7d\x9c\x4c\x5b\xd9\xa8\xf5\xf8\xb4\x34\xcf\x42\x73\xc5\x25\x59\xaa\x7d\x13\xf3\xa1\x20\x52\x9c\x04\xa7\xd6\x9c\xf0\x8a\x0b\x9b\x45\xe9\xf2\x4d\x80\xd2\x7c\x6d\xc7\x6f\xa2\x30\xf8\x56\x05\x1a\x22\x61\x44\x9d\xc4\x09\x1e\x1f\xf1\xea\x5e\xb9\x69\xa0\xc5\x6e\x13\xd3\x19\xd4\xb9\xed\xcb\x53\x57\xfb\xf2\xc2\xa1\x66\x51\x66\xb9\xaa\xb0\x1a\xed\x65\x62\x93\xae\x31\x61\xee\xc6\xb9\x84\x97\xc6\x14\xd5\x4c\x59\x36\x2e\xcb\x9a\xbf\x2c\xa8\x29\x63\xb1\x7c\x91\xe1\x6b\x45\xf1\xc6\x5f\x39\x38\x29\x85\x8f\xb7\x71\xab\x65\x56\x50\x83\x38\x8d\xbb\xd9\x60\x38\x2a\x83\xac\xa1\x35\x18\xe5\x39\x5b\xe7\xb1\xa6\x8b\xd5\x49\xa2\x74\x6d\x26\x74\xd6\x95\xb2\x66\x7f\x1e\x50\xe0\xf7\x77\x04\x6c\x9b\xcf\xb1\x95\x1c\x59\x05\x28\xd2\x54\x9b\x89\x2d\x4a\xa5\x4e\x48\x6d\x56\x81\x29\xe8\x62\xe1\x05\x36\xda\x81\xe8\x76\x85\x94\x49\x74\x53\xf7\x3a\xbb\xbe\x16\x7a\x14\x2f\x01\x71\xda\x4d\x99\xd2\xe6\xdd\x48\xde\x0b\xf7\x78\x6f\xbe\x8b\xad\x16\xdf\xf5\xdf\x4b\x38\xe6\x7d\x67\xbd\x8b\xda\x93\x5b\xb2\xd2\xa1\xac\x7c\x0c\xf2\x61\x78\x14\x7b\xc1\xb9\xc6\x88\x39\x41\x38\xd3\x3c\x29\x24\x10\xc6\x5e\xba\x77\x2b\xf4\x00\x11\xc1\x59\xf3\x94\xb4\x26\xce\xe1\xad\x20\x59\x7a\xb6\x6d\xa3\xbc\xef\xa2\xdc\xcf\x75\x0c\x59\x80\xb0\xf4\xb8\xfd\xec\x44\x25\x4b\x65\xeb\x44\xe6\x44\x5a\x77\xdb\x97\xeb\x7a\x9c\x79\xa6\x1b\x38\xb6\x95\x23\xa4\x97\x71\xa4\x6e\xf4\x0e\xe2\x22\x4a\xcb\x7e\x9e\x0d\x61\x6c\x8c\x00\x5f\x85\x03\xf5\x84\x65\x1c\x62\x90\xa8\x51\xcf\xd5\xa8\x45\x4f\xea\x51\xb3\x89\x37\xed\xf4\xb2\xc6\x3e\xab\x39\x3f\x91\x29\xc7\x83\x08\xb5\x11\xcd\xaf\xf0\x3a\x11\x77\xa1\x7c\xa8\xf0\x34\x59\x0b\xac\xad\xc2\xdf\x90\x47\xaf\xe3\x1b\xa8\x0a\xb3\xa8\x71\xd8\x11\x02\xd8\x29\xbe\x59\xff\x83\xf8\x83\x83\x51\xe1\x15\x3c\x4c\x3f\x60\xa2\xfd\x1a\x0a\x86\x51\xb7\x9b\x8d\xd2\x32\x4a\xcb\x62\x46\xc6\x8a\xf7\x63\x79\xd1\xd4\x03\x6e\xb4\x82\x59\xf7\xd1\xa9\xe5\xe6\xd0\x4b\x4d\x97\xa7\xce\x8a\x23\x5e\xb7\x2c\xa4\xcf\x6c\x54\x25\x55\x26\xb1\x87\xf2\xa0\x51\xc0\xb1\x0c\x79\x2f\x7f\x87\x2a\xc1\x75\xd2\x5f\x2d\x46\x83\x81\xcb\xa5\xdf\x13\x0a\xb0\x5a\x11\xd7\x93\xa9\x18\x79\x71\xb1\x59\xf4\x47\x65\xa9\x1c\x6d\x4c\xda\x2f\x68\x05\xfe\xa2\xc5\x85\x53\xe9\x3d\x15\x7d\x91\xed\x31\x99\x74\x00\x37\xf4\xb8\x4e\x8e\xac\xe8\xbb\xbc\x63\xe4\x12\xa3\x30\x06\xee\xca\xa5\x1a\xcb\x9a\x66\xe2\xa2\x75\x27\x96\x1e\x94\xbe\x19\x09\xfa\x62\x0d\xc4\x68\xa9\xb9\x9e\x95\x56\x2d\xb6\x72\x33\xfd\xe2\x39\xc2\x7f\x46\x49\x92\x6d\xc4\xe9\xaa\xf8\x95\x20\x46\xf8\x69\x8b\xb5\xb2\xef\xa2\x57\x65\x38\xf8\x80\x9a\x38\xc7\xda\xf8\x67\x26\xd6\xcd\x7e\x34\x68\x48\xee\x69\xde\xf7\x54\xf8\xfe\xbc\xa6\x87\xb4\xd0\x94\xfd\x58\x7e\x08\xdb\xf8\x11\xac\x4a\x7a\x42\xaa\xb1\x9d\x6c\xdd\x74\x7e\xb0\x7a\xce\xca\xaa\x6a\x6c\x56\x8a\x87\xef\x05\xa8\x5c\x3f\xeb\xae\xb9\x9e\xa0\x11\xe9\x11\xda\x43\x7f\x5f\x16\x0b\x1b\xbb\x32\x45\x50\x6a\x3a\x4d\x85\x8a\xd4\x6d\xac\x46\xa5\x29\xb0\xa3\x66\xf4\x09\xbb\xfb\x7e\x52\xc7\xba\x58\xcf\x02\x4f\x14\x65\x9e\xd3\x54\x43\x3c\x1d\x2a\xc9\x43\x97\xf6\x66\x83\x28\xd5\xf1\x16\x35\x1e\x1e\x4e\x24\xb4\x14\xd0\xde\x25\x2a\x7f\xd1\x1f\x25\x83\x48\x75\x57\x51\x1c\xf8\x43\xec\x05\x28\xc0\x40\xe8\x04\x55\xf4\xb3\x2c\xbf\x78\x6d\x4c\x20\xb3\x4e\x86\x21\x3d\x13\x96\xd2\xfb\x32\xdd\x3c\x42\x2b\xe8\xc7\x5d\x98\x68\x0e\x25\xce\x44\x29\x10\xf5\x29\x4a\x4b\x4f\xea\x0a\xa4\x65\x94\x00\x8b\xa8\x34\x70\xec\x82\xc6\x09\xdf\xf9\x30\xab\x20\x25\x4e\x4c\xc4\xd6\xf8\xe9\x81\x9c\x72\xcd\x53\x85\x87\xb9\x53\xb5\x4e\x8b\x12\x7c\xdf\x9d\xc9\x64\x3b\xb8\xe1\xfb\xf7\x37\x97\xe7\x9f\x69\xf8\x7a\xc9\x2e\x90\x4c\x90\xda\xdc\xc3\xb5\xa9\x03\xa7\xc4\x61\xa6\x74\x40\xf0\x95\x0f\x99\xf6\xad\xea\x70\xc8\x66\xaf\xcb\x1e\x89\x9d\xf0\x2a\xe9\x04\xec\x11\x6f\x1a\x0c\xc9\x63\x2d\x72\xb4\x3c\xd9\x6a\xfc\xda\xaf\xeb\x1a\xb7\x1b\xc5\x13\xfc\xe0\x3f\x6b\x85\x06\xfe\x7b\xb2\xce\x92\xc6\xaa\x81\x0a\xae\xb0\xb1\xe7\xb4\x7f\x8c\xef\x77\xa6\x9b\xb3\xd4\x1e\x3b\x4e\xca\x4f\x37\xb8\x77\xf8\x84\x94\x4f\x25\x15\x1f\x7f\xcd\xef\xe3\x1d\xd1\xca\x84\x54\x2c\x9e\xd2\x6e\x3c\x0c\x0c\x15\xc4\xef\x18\x29\xef\xd2\xfc\xdd\x88\x72\x01\x9f\x90\xf2\x9e\x6c\x1d\xa6\xc2\xf7\x35\x5a\x61\x7b\x2e\x2f\xca\x28\xed\x89\x0c\x99\xb7\xee\x3e\xc3\x4a\x1d\x67\x11\x22\x61\xe3\xe8\x4f\x41\xe0\xaa\xd7\x2f\x32\xf3\x89\xa6\x86\x44\x4e\xd2\x42\xa6\x75\x3a\xeb\x76\xf1\x61\x96\x44\xc0\x3b\x23\x69\x87\x8c\x98\x1e\x8f\xd9\x8d\x30\x2d\x1f\xa9\xc2\x33\xbc\xe2\x9f\xe1\x55\x5a\x14\x25\x2b\xa1\xfe\x0f\xb5\x03\x2f\x4b\xa9\x09\x71\xd7\x03\x89\xce\x18\x98\x8a\xe0\x4a\x1f\xa9\x7d\xed\x14\xf1\x7e\xb1\x4a\x9f\x7e\x01\xc9\x90\x59\xde\x54\x1b\x85\xa7\x00\x55\x63\x18\xbd\x29\xf8\x20\x61\xf4\xdf\x6f\x05\x99\xd1\x53\xff\x7a\x1c\x3a\x1c\x27\x25\x76\x45\x3f\x16\xb8\x22\x94\x51\xb5\x50\x8a\x0a\xce\x0f\x5a\x64\x90\x79\x1d\x83\xde\xfc\x3a\xab\x1b\xaf\x02\xb5\x97\x3d\xf3\xea\x3c\xe9\xd0\x7f\x88\x1e\x08\x72\x9b\x37\x50\x2f\xb0\xa2\xa9\xdc\x28\x9e\xc6\x95\x09\x7b\x96\xbf\x37\x26\xbd\xf5\xc6\x56\x08\x69\x3f\x27\xfb\xe0\x87\x2c\xc6\xf8\x10\xb4\x1c\x0b\x82\x77\x6e\xc3\xfb\x17\x9a\x45\x5c\x86\x85\x19\xdb\xc5\x0d\x32\x19\xba\x41\x25\x46\x17\xe5\x83\x28\x5f\xab\xb6\x79\x0f\xb9\x38\x8a\x1f\x30\x08\x5b\xc8\x4e\x5f\x8b\x56\x47\x51\xfe\x48\xf5\x49\x94\x7c\xe0\xa4\x6c\x18\x25\x79\x54\xa6\x10\x2b\x63\xc4\x88\xf3\xf2\xc0\xb0\xc7\x62\x2c\x60\x43\x83\x80\x21\x0a\x84\x37\x26\x70\xe0\x53\xe3\xf5\xc0\x01\x81\x2e\x2b\x3e\x94\xf8\x2c\x4b\x5e\xb5\x31\xe4\x8c\xc3\xd1\xca\x0a\x6e\x1e\xeb\xcd\xdb\x44\xca\x79\xbb\xce\xcd\x49\x1d\x90\x34\xa4\x45\x1b\xf3\x7b\x24\x5f\xf3\xbd\x2f\xcd\xf5\xb2\x51\x39\x1c\x95\xd8\x97\x10\x2b\x7e\x36\x66\xe8\xd9\x38\xd4\x23\x51\xb5\x40\x86\xfb\x43\xda\x7b\xe3\xb4\x5a\x06\x4a\x79\x01\x7e\x52\x51\x9e\x52\x57\xa7\x1d\x46\x79\x19\x77\xe3\x61\xb5\x67\x73\x53\xad\x41\x26\xc3\x21\xbd\xe9\x8c\xf2\x59\x8a\x93\xe5\x9a\x3c\xde\x33\xf4\x2d\x2f\xea\xc0\x34\x2b\x66\xd6\x1b\x1b\x7e\x53\x36\x33\xd4\x17\x4f\x70\xb1\xf1\xc4\xd4\x08\x3c\xf4\x52\xb3\xe7\xd6\x5d\x92\xc1\x26\x01\xcb\xe7\x43\xc6\xca\xe1\xb1\x18\x2e\xf3\x69\xf2\x95\xe9\x47\x89\xc9\x15\xaa\xbc\x5d\x2b\xd4\xbe\x8f\x04\x7d\xba\x2c\x46\x3c\xef\xd3\x0f\xef\xff\x33\x0d\xe2\x5d\x9e\x87\xfb\x6d\xda\x75\x88\x42\xd4\xe6\x02\x2f\x0a\x8b\x38\xa4\xaa\xf1\xe8\x66\xdb\xa4\xc9\xf4\x2e\xbd\xa9\x8d\xb8\xec\x67\xa3\xf2\x11\x99\xcc\x48\x36\xc1\x74\xc5\x93\xf8\xeb\x04\x8e\x3a\xc9\x0a\x45\xc7\x78\xc7\x3a\x85\x28\x4e\x2b\x8c\xc4\xb3\xc5\xca\x88\xca\xd4\x83\xba\x12\xf7\x30\x89\xd2\x54\x39\x11\x58\xdc\xde\xc0\x17\xeb\x09\xc5\x4b\xdd\x28\x77\x2e\xd7\xca\x97\x01\xc2\xc9\xaa\x61\x9a\x5e\xb8\xb8\x28\x54\xe8\x7c\x64\xb3\x00\xaf\x0d\x3c\x34\x3d\xf6\x68\xf1\x95\x28\xce\x37\xf1\x31\x6f\x01\xee\x95\x2e\x3e\x9a\xea\xaf\x8a\xee\x56\x56\x94\x71\x39\x2a\x1d\xa1\x4f\xa1\xb1\x67\xea\x4f\x35\x6a\x9e\xa5\xf8\xbe\xd3\xde\xff\x5d\x16\x8b\xfd\x2e\x51\x86\x3b\x11\x32\x9b\xe5\x79\x6f\x5d\x1f\x82\xe8\x69\xb6\xd6\xc2\xa1\x66\x94\xc6\x03\x4d\x0a\xcd\xaa\xd1\x57\xf8\xfe\xdc\xf7\xa7\x26\xfc\xf2\x3c\xcc\x9d\xcb\x68\x65\xa5\x8a\x20\x7d\x90\xa4\xfd\x76\x0c\x3e\xe4\xa3\x58\x39\x6f\xd5\x11\xc0\xcd\x40\x11\x84\x34\x8c\xa1\xfb\x1c\xae\xdf\x6b\x05\xbc\xd3\x3f\x6f\x3d\x11\xa6\xc6\xa6\x83\x34\x06\x36\x91\x3b\x58\x60\xf5\x64\x1c\x9a\x54\x97\xc8\xb0\x70\x3a\x38\x7a\xf5\xd5\x66\x9a\xa5\x85\x4b\x0b\x60\x6c\x11\x4a\x63\x19\xc7\xf2\x05\x1d\x6c\xd5\x06\xe2\x4c\xaa\xd7\x13\xfb\xe8\xb9\xd0\x12\xd7\x45\x1e\x51\xf7\x7b\xe3\xb0\xc6\x1e\x93\xef\xf0\x36\x72\x2f\x06\x1b\xb9\x69\x43\x93\x66\xe9\x06\x02\x92\x1d\x79\xb1\x6f\x4c\x4f\xe5\xf4\xe9\x89\x8f\x7f\x07\x51\xd9\x77\x83\xa8\xf4\x45\x6b\xe3\xb8\x10\xdf\xc5\x6b\x30\x0c\xc0\xea\xd4\x21\x84\x48\xe1\x24\x73\x9c\x4e\xfa\x0a\x70\x54\x96\x59\x9e\xba\xcd\x62\x26\xe4\xbb\xc7\x98\xfd\xa8\x69\x85\x95\xab\xc2\xea\xba\xe6\x36\xf7\x11\x4c\x1a\xea\x9a\x56\x78\x95\xbf\xc1\x53\x46\x98\x8c\xdd\xee\x2d\x41\xb8\xa3\x31\x74\x06\x71\xcc\x04\xae\xd6\x78\x5a\x0d\x2f\xe1\xf3\xac\x98\x3b\x6e\x5f\x1e\x53\x59\x71\x28\x37\xad\xa6\x90\x53\x72\xbe\x5e\xe6\x72\xe8\xbc\x75\xaa\xa1\xbe\xe5\x4b\x0c\xf6\xbd\x73\x72\x2c\xcf\x0b\x62\xd5\xe2\x49\xbc\x6c\x60\x30\xf4\x98\x64\x95\xa2\x21\x7b\x0d\x2a\x93\x5d\x4f\x5a\xd6\x5a\xda\x88\x5c\x5e\x16\x71\x12\xb9\x46\xe3\xdb\xe6\x46\xa4\x55\x4a\x3d\x69\x3d\x37\x19\xfd\xfd\x59\x89\x6e\x1b\xa1\x12\xf7\x8f\x5b\x13\x92\x1d\x5f\xb6\x21\xa7\x51\xd1\x1f\x45\xb3\x12\x89\x29\x75\x61\x4c\xcc\x65\x54\x43\x31\xbb\x3e\x62\xed\xb2\x46\x9d\x00\x8e\xc4\xe7\x51\xae\x5a\x36\x26\x2c\xd0\xd8\x61\x5c\x8e\xf1\xf1\x36\xe9\x90\x95\x71\xee\xa4\x73\xdb\xa0\x2d\xe6\x04\x02\x24\xeb\x3e\x87\xfa\x14\xaa\x40\xa8\x40\xe2\x2a\xbf\xd7\xa2\x76\xe7\x8d\x56\x58\x53\x8e\x8e\xc9\x6a\xee\x7b\x58\x37\x6c\x37\xdb\xb9\x7e\x3e\xdf\xec\x62\x51\xa4\x36\xe1\xd9\x16\xc7\x01\xde\x7d\x22\xeb\xb9\xb9\x50\x14\x3a\xcd\x18\x7e\x6d\x4e\x11\xa5\x67\xc9\x7f\xac\xe1\x35\xa1\xee\x4c\x14\x48\xe2\xac\x9c\x93\xaf\x60\x34\xa2\xa9\x15\x05\x98\xef\x49\x99\x04\x38\x7e\x9b\xb4\xe0\x2f\xf9\xee\x94\x38\x8e\xa4\xc5\x04\x4a\xfb\x02\x83\xfd\x2e\xd4\xa1\xe7\xbb\x59\x01\x7d\x8c\x09\x89\x5b\x55\x31\x9e\xc4\xad\xd3\xbc\xbd\x41\x53\xfa\xd0\xe2\x21\x19\xd4\x1e\x1d\xc0\xcf\xe3\x2b\x44\xc6\x1c\x12\x9f\x88\x75\x6f\x4d\xea\x36\x90\x9b\xd2\x2c\x2f\xfb\x8f\x37\x96\x97\xb6\xaf\x4a\x0e\xe3\x3d\xd0\x97\x5e\xb2\x14\xf5\x14\xaa\x42\x78\x50\xaa\x69\x86\x62\x94\x0a\xae\x1a\x63\xbe\xb1\x3c\xbf\x7d\x95\xac\xa0\x9f\xdc\x22\x88\xa7\x8a\xc0\xeb\xc9\x38\xac\xec\xbb\x60\x0f\x6b\x51\xc8\xd7\x26\xe7\xdb\xe2\xe2\x41\x99\x71\x7b\x89\x27\x7a\x6f\xb2\xe0\xcd\xae\xad\x44\x99\xd9\xe1\x30\xdd\x20\x2d\x19\xb9\x2c\xa4\x77\xb3\x53\x8c\x67\x11\xcb\x74\x83\x4c\xd9\x7c\x18\x2b\x58\x66\xf4\x78\xa2\x0c\xdc\x4f\x36\x9f\x94\x94\x4a\xdb\xe9\xad\xa0\x7b\xd6\xd8\x22\xfa\xf7\x36\x72\x66\x5b\x8f\x42\xf6\x77\x53\xfa\x05\x58\x4d\xf7\x00\xb0\x68\xeb\x94\xbc\x04\x7c\xef\xc3\x31\xa1\x3f\xd0\x94\xd2\x04\x85\xa4\xc7\x2f\x63\x2a\x7b\x04\xb5\xe7\x37\xea\xf0\xc2\xf7\x5e\x9b\xe0\x5d\x6e\x66\xa2\xdc\xe0\x7d\xc3\x54\x6f\x45\x4f\x48\xdb\xad\x28\x5d\x9c\xae\x8d\xfa\x89\x92\x91\x27\x98\xf8\x86\xc8\xf1\xf4\xed\x7e\x36\x2a\xa2\xb4\xa7\x5b\x9c\xb1\x0b\xc9\x7a\xf4\x9d\x56\x28\x4f\x0c\xc4\xde\xf8\xb1\x40\x06\x99\x15\xa0\x88\x59\xe0\xc9\x57\x50\x88\x6f\x7a\x77\x77\x48\x6b\xff\x02\xc5\x55\xfb\xf0\x14\x2d\xc8\x22\x7a\xd0\x39\x79\x3b\x18\x83\xca\x65\x46\x11\xe3\x6f\xed\xac\x4c\x7d\xe3\x1b\xcd\xc3\xf3\xb3\x81\x83\x87\x71\xcd\x26\x7f\x58\xad\x60\xbc\xaa\xc7\x35\x56\x88\x07\xad\x76\x0f\xea\x29\x46\xe0\x43\xcc\x28\x24\x34\x3f\xa4\xf5\xea\xc1\xf8\xf1\xd0\x28\xce\xca\x27\xab\xfb\x43\xcc\x75\x93\xa8\x32\xdb\xd8\x99\x19\xc6\x3f\x61\xc1\xef\x2b\x4b\x5e\x32\x03\xaa\xc6\x06\xf8\x98\x09\xfe\x36\x57\xa4\xe4\xa5\xcd\x35\xb9\x15\xd4\x1f\xff\xda\x38\x80\x54\x4f\xb5\x82\x31\xac\xce\x30\x25\xf6\x60\x48\x1b\x85\x80\xdc\xc8\xa2\x6e\xf9\xa8\x3c\x5d\x0c\xeb\x7f\x2a\x38\x34\x8c\x51\x88\xad\x23\x39\xfe\xa3\xf1\x97\x35\x83\x03\x13\xf3\x24\x5e\x3f\x8a\x7d\x77\xa4\x7a\x83\x5c\x55\x2d\x26\xcc\x11\xce\x62\xab\x24\xeb\x74\x36\x7d\x95\x01\x99\x3e\xb4\x10\xf5\xb8\xf5\x1c\x71\x43\x0b\x79\x37\xf2\xf1\xea\x56\x50\x6a\xb9\x81\xd7\xa3\x27\xec\xde\x9d\x64\xdd\x35\x74\xb0\xd1\xeb\x46\x82\xa7\xc7\x53\x30\xe2\xa5\xe5\xa5\x66\x96\xaf\x46\x69\xfc\x1d\xf3\x96\xb0\x06\xb3\x5c\xba\x9e\x50\xe3\xa5\x1f\xa5\xbd\xc4\xf4\xff\x99\x6d\x6a\x31\xd1\xc4\x90\xad\xc9\x1e\x3a\x59\xee\x5d\xfc\xbc\x03\x83\x5f\xf8\x41\x3e\x32\x30\x6c\x28\xa0\x74\x46\x9b\xd9\x08\xfe\x23\x8a\xd1\xc4\x18\xc1\xbe\x07\x5d\x79\x8c\x8b\xab\x54\xb7\xee\x66\xa0\x91\x39\x89\xbd\x09\xa7\xb8\xe4\xf1\xf1\xf2\x2d\x88\x4f\x2e\x93\x46\xe8\x11\xae\xa7\x5f\xf6\x72\xb7\x49\x24\xd5\x47\xc5\x92\x18\x26\x5d\xbe\xc3\xb4\xa2\x7d\xb8\x9d\xc1\x94\x38\x4e\x36\x11\xcb\xf8\xaa\xe6\xf2\xbc\xaf\x6a\xd6\xe8\x2c\xbb\x68\x55\xfa\x60\x78\x89\xec\xd2\x6b\xed\x95\x10\xff\xc4\x45\x96\x48\x21\xc3\x8f\xfe\x53\x84\x4e\x3f\x55\xe3\xcc\xd9\x5c\x4d\x87\x8d\x50\xac\x7c\x07\x3b\x90\x2d\x7e\x3b\x2f\xe7\x1b\xdf\x68\x6e\xba\x28\xef\x64\xd9\x9a\xe6\x0c\x1a\x78\x03\xa0\x6a\x51\x78\xcd\xa8\xfa\x3a\x3c\xdf\x6c\x87\x07\xdb\x53\x2d\x0d\xf4\xa4\x4e\x64\xba\xe3\xd2\x6e\x5f\xe4\xef\xaa\x1b\xd6\xed\x93\x14\x34\x4f\x70\xc7\xe8\x47\x84\x86\xcd\x5d\x51\x46\xa3\x3c\x4a\xcb\x62\x96\xf1\xd1\x93\xd2\xff\xbe\x50\xa1\x0d\x21\xfd\x8f\x5a\xb4\x6b\x37\xcb\xd6\xfc\x24\x35\xd0\x28\x01\x48\x7d\x88\x2e\xf6\x40\x22\x04\x32\x43\x85\xb8\x7b\x8c\x9b\x3f\x8d\xd1\x84\xfb\xb9\x34\xd5\xff\x7b\xf5\x55\x75\xdf\x2c\x85\xea\xc0\xda\x72\x08\x27\x14\x2e\x00\xa2\xeb\x55\x82\x73\x16\x71\xda\x75\x5f\x91\x9f\x35\xa0\x59\x35\x16\x00\x0a\x7a\x4c\x66\x05\x96\xf0\x39\x04\x3a\x26\x8e\x2e\xab\x07\x16\xa9\x5d\x6d\x92\xb4\x00\x84\x0f\x53\xe0\x27\x2d\xa2\xd0\x1e\x91\xab\x31\x8a\xb4\x44\x13\xa6\x68\x21\xcb\x92\x7e\x17\x60\x02\xaa\x4f\xc1\xfa\x0b\x3f\xc3\x8b\xd3\x3d\xa4\xc5\xdd\xb2\x7f\xc7\x00\xc7\x0b\xa4\xd7\xfd\x68\x3b\xf8\x8c\xde\xa9\xb5\xf0\xee\xe4\x19\x79\x59\x62\x91\xbb\xdd\x22\xb5\xdb\xdb\x54\x22\x2b\xf3\x28\x4e\x35\x32\xf0\xa2\xdc\x41\xa0\x7b\x2a\x2f\x12\x06\x89\xdb\x88\xf2\x5e\xd1\x8f\x87\x0d\x82\x64\x7e\x28\x0f\x43\x8f\x6b\xfb\xac\x3d\x97\x94\xd1\x9e\x80\x54\xd2\x1a\x9e\x85\xae\x01\x70\x72\x93\xbd\xa4\xc0\xde\xf6\xe4\x87\xea\xb5\x18\x29\x26\xe0\xfb\x3a\x49\x96\xf5\x04\xd6\xaa\x50\x00\xf2\x3d\xbd\x82\xba\x82\x71\xf2\x83\xd6\x08\xa2\x0a\x3d\xc6\x76\xe5\x69\xcf\xa1\x62\xf8\x0e\x39\xcd\xa5\x71\x51\x88\xf8\x46\x35\x52\x70\xab\x0a\xd0\xd5\x93\xba\xe7\x35\x4a\xa3\x8d\x28\x77\x7e\xf5\xaa\x13\x0a\x08\xc5\xe6\xd7\x5c\x1a\x01\x73\x88\xa2\x36\x93\xd4\x8e\x51\xf8\x7d\x91\xa4\x46\x93\xa8\x93\xe5\x51\x59\x85\xbe\x24\x3b\x38\x66\xd9\xc1\x71\x5d\x05\x70\x45\x17\x23\x19\x6a\x86\x1b\x0f\xc0\xfa\x63\xad\x9d\x8e\x83\x87\xe7\x9b\x51\x4f\x1c\x32\xcb\x3c\x2a\xe3\x75\xb4\x96\xb1\x74\x3d\x20\x19\xb0\x4b\x54\xbf\x3b\x1b\x64\x89\x5f\x8f\x06\x71\x1a\x40\x50\x2a\xe0\x2a\x0f\xc2\xc4\x5c\xc9\xe6\xa7\x1f\x0d\x3a\x48\x79\x5f\x09\x54\xa0\x50\x50\x3f\x43\x15\xfa\xdc\x25\xc0\xd2\x9b\x20\x23\xf5\xfd\xc6\xa1\x3b\x7b\x93\xa0\x19\xdd\x68\x10\xe5\x51\xcf\xe5\xaa\x21\x88\x42\xdd\x47\x18\x2b\x7a\x32\xb5\x26\x61\x0d\x8f\x5f\xd7\xad\x0e\x63\x0d\x35\x4d\x3d\xa6\x37\x59\x94\xd1\x66\x83\x9a\x7c\xb0\xae\xb7\xcc\xf7\x29\x12\x5f\xce\x33\x87\x46\x04\xf8\x8c\xb0\x1b\xd5\xe3\xad\xf0\xc1\x61\x54\x74\xfb\xf1\x2c\xc5\x55\xd0\xc6\x63\x8f\x3a\x0f\xb3\x0d\xaa\x1a\xbf\xed\xeb\xac\xc9\xa8\x1b\x67\x78\xa0\x3e\xff\x5f\xf4\xd6\x85\x47\x5b\x2c\x05\xb6\x9e\x25\xeb\x0e\xee\xac\x9e\x74\x7f\x0e\x8b\x92\x9e\x4c\xd5\x65\x5f\x5c\x6c\x16\x6e\x18\x41\xf4\x96\x14\x92\xce\x92\x42\xd2\xd9\x5a\x6b\xbe\xdc\xb9\x1e\x58\xb1\x88\x01\x8e\x93\x7a\xe9\x71\x02\xa2\x1a\x9e\x1c\x81\x12\xe2\x29\x4c\x24\x54\x5d\x6e\x31\xca\xe2\x68\x8d\xf6\xe8\x12\x78\xab\x9e\x89\x85\x25\x46\xb5\xb4\xf4\x84\xd8\x81\x82\x70\xf1\x91\x0d\x1e\xd3\x05\x92\x52\xbb\x40\x5d\x91\x62\x14\xa3\x41\x8c\x08\x1d\x2f\x11\x85\x01\xc0\x2c\x81\x46\xfb\xbf\xb8\xd9\x71\x83\x86\xc1\x46\xdf\xb9\x04\x2b\x04\xba\xac\x88\x6f\xf4\xb8\xae\xe4\x3c\x1a\xe6\x59\x94\x93\x98\x2b\x4a\x3b\x7a\x4c\x97\x16\xe5\xb2\x1d\xda\x5a\x77\x4f\x64\x18\x15\x86\x2e\xeb\xa1\xee\xce\x63\xda\x9d\x9f\xd8\x22\x16\x9f\x09\xcd\xe2\x73\x48\x5d\x05\x02\xf2\x2b\x5f\x6d\x13\x00\xf6\xce\x38\x54\x73\xf7\xb5\x1b\xfb\xf7\xeb\xb3\x50\x23\x0a\xec\x6c\x0d\xd9\xc0\xfc\xa6\x19\xc0\x1e\x1f\x48\xa5\x13\x11\xef\xac\x50\x7a\xfd\x6a\x1c\x60\xbc\x3f\xc0\xce\xaa\x42\x34\xd4\x36\xdf\xdb\x0e\x9b\xda\x7a\x5c\xc4\x65\x86\x4d\x0d\x10\x11\x44\x80\x7a\x4c\x4f\x66\x94\x66\x0d\xa6\x59\xca\x3d\x1b\xff\x32\x7c\x6c\x3e\xea\x49\xef\xc9\xa3\x03\x7d\x0f\x49\xab\x15\x8a\x21\xf1\x10\x15\x51\x8f\x85\x28\x30\x12\x1d\xb8\x74\x19\xf4\x3f\xb4\x9a\x3e\x18\x33\x5a\x1f\xcf\x09\xe0\x4a\xc0\x5e\x7d\x32\xe0\x95\xf0\xcf\x4c\x85\x88\x32\xac\x3b\x79\x34\x28\x32\x53\x20\xa8\x45\xdb\xfb\x54\x2b\x5e\xed\x97\x1e\x53\x66\xb9\x53\xf5\x6b\x96\x3a\x31\x34\xac\xdb\x75\x45\xb1\x32\x4a\xe6\xc2\xf4\x3c\x87\x5a\x3a\xa1\xac\x0d\x9c\xa8\x65\x05\x64\x23\xc7\xb0\xbf\x1b\xc1\x3a\xd4\x0d\x56\x72\xe7\x94\x05\x8f\x39\xfc\x63\x82\x45\xfe\x98\x9e\x7b\x9a\xa5\x52\xc6\x44\x87\xfe\x2a\x29\x9e\x40\xbd\xc4\x0b\x80\x2d\x7a\x3f\xd9\xbb\xf8\x51\x95\x64\x9a\x42\xbf\x07\xcd\xdb\xb8\xec\xbb\x7c\x8e\xc9\x4f\x04\x67\x04\x15\x06\x1b\xdb\xef\x49\x4e\x8d\x98\xf3\x89\x76\x08\x1f\x1e\xf8\xdc\xb5\xe3\xd2\xd7\xaa\xad\xad\x11\xb8\x4c\xfa\x6d\xe6\xea\x1d\x72\xd1\xc2\x89\x4d\x3d\x50\x08\x06\x9f\x9f\xa0\x1e\xed\x2c\x41\x7e\x7b\x41\x24\xe7\x66\x02\x2a\x06\x20\x77\xc4\x90\xdb\x13\x76\x76\x35\xb5\xf7\x95\xa8\x28\x5d\x0e\xd7\x64\xa4\x34\x37\x65\xa7\xf6\x92\x13\xa1\xcc\x72\x89\x3a\xf9\xc3\x38\x49\xb2\xe0\xef\x8a\x01\x7e\x0c\x81\x99\x9e\x4c\x05\x3b\x87\xe7\x17\xaa\x5d\xaf\x14\x72\x81\x9a\x75\x63\xb3\xbe\xa0\x80\x7b\x3d\x9b\x2c\xef\x26\xee\xab\x34\x84\x1e\xb6\x02\x17\x66\xef\x96\x14\xde\xd9\xf2\xca\x96\x2d\xf9\x72\xe5\xd5\xc9\x7c\xf2\xe5\xdc\xea\x0a\x55\x72\x0e\x0b\x1a\x46\xe3\xae\x36\x85\xe1\xf7\x81\x33\x41\xee\x70\x9b\xb0\x1b\x73\xa8\x41\xa1\x85\xfa\x13\x4c\x4e\xcc\x8a\x6b\xad\x30\xe2\x8e\x91\x3d\xe2\x05\xb5\x45\xd2\xef\xd2\x1b\xc5\x58\xfe\x5d\x84\x13\xb8\x9a\xbb\x52\xf6\xb2\xc5\x85\xd2\x93\x5b\x78\x07\xa8\x11\x9e\x9e\x7a\xff\x0b\x87\x9a\xaf\xb9\xd2\xe2\x79\x12\x1e\x38\x48\xc2\x03\xba\xec\xb8\xa8\xdb\xaf\x5e\x76\x50\xc6\x04\x50\x89\x4a\xbd\x5e\x22\x24\x34\x5d\xca\x8d\xec\x6b\xf2\xd8\xcc\xda\x4b\x9e\x14\xd2\xfc\xeb\xdc\x52\x16\x8b\x5a\x0b\xf1\x28\x91\x39\xc9\x1d\xe9\x99\xad\xc6\xb7\x17\x7c\xed\x5d\x2c\xb4\x6f\x32\x36\xfb\x6f\xc8\x73\x30\xbe\x67\x68\x52\x3f\xb6\x15\x48\x77\x90\xc5\x41\x18\x76\x1d\xeb\xbf\x95\x20\x02\xe6\x06\xf4\x3b\x80\x69\xee\x92\xb8\xe2\xbf\xd0\x77\x80\xc9\xf7\x77\xc6\x54\x82\xd6\xd7\x6b\x9c\xd4\x6a\x1f\x34\x99\x12\x79\x66\xc0\x35\xfe\x5b\xb2\x85\x1a\x64\xb9\xcb\xd6\x5d\xfe\x68\x58\xfe\xae\x8c\x05\xd0\x82\xab\x7e\x48\x61\xef\x71\xc1\x98\x61\xf9\xbe\xcc\x15\x4f\x55\x24\xb5\x46\x55\xb5\xb6\xa8\x6d\x08\x1e\xb5\x6f\x8e\x7b\xdb\x96\xdf\x9f\x8e\x3d\x5f\x3a\xd8\x5c\x89\x13\x5f\x26\xc2\xe8\x3b\x4a\x76\x21\xa7\x28\xa5\xf8\xb1\x97\x79\x80\xa7\xc6\x23\xc4\x7e\x79\x20\x13\x09\xc9\xd1\xb5\xa0\x9c\x3f\xfe\x33\x6d\xe2\xcb\x5d\x0a\xaa\xe8\x77\x9f\x16\x34\x14\x89\x3d\xbe\xe2\xe1\x0a\x14\x90\xb3\xff\x51\x19\xe1\x4a\x1b\x26\xbc\xf4\xb7\x9f\x23\x8a\xf1\x9d\x31\x19\x9c\x3d\xee\xed\xd3\x64\xe9\xf0\xb0\x19\xe5\x6c\xb6\x42\x5f\xf9\x22\xe5\xad\xab\x79\x2c\x26\xa0\x84\xaa\x7e\x4f\x1e\x9f\x1e\xd3\x6e\xd3\x93\xab\xa1\xfa\xce\x91\x56\xa8\xb0\x1e\x19\x07\xfe\x4a\x37\x1b\x0c\x5d\x5a\x20\x41\x91\xbb\x34\xdb\x40\xb9\x20\x3d\xa9\x03\xd4\x6f\xc4\x09\x42\x44\xb0\x39\x21\xda\xa7\xc7\x13\xa8\x82\x62\x4d\xb5\xd6\xad\xa3\x5e\x5d\x89\x3f\x7e\x71\x31\x74\xdd\xa9\x03\xbf\x33\xce\xb6\x3d\x6c\xe8\x86\x45\x3c\x43\x31\x27\xa4\x53\x2c\x1d\x27\x2c\xc7\xc3\xba\xa8\xbb\xec\x67\xa3\xd5\x7e\x83\xa5\xd5\x83\x0d\xde\x17\x54\xdd\x14\x57\xe8\x4e\x1c\x89\x7c\x21\x49\x8c\x5b\x0b\xed\x0c\xb7\xd0\x4e\xc8\xec\x46\xd3\x09\x3a\xdc\x78\x6e\x3f\x6e\x05\xc0\xcf\x5b\xf2\x02\x94\xae\x38\xc1\x39\x4e\xd6\x37\x91\xdf\x60\x22\x5e\xc0\x66\xae\x27\x04\x34\x52\x8d\x09\x3d\x61\x19\xcb\x51\x5c\x16\x7b\x83\xa1\x27\xd4\x1e\xb0\x90\xa8\xb7\x32\xe6\xc7\x65\x2e\x72\x2a\x15\xc3\xca\x69\x8d\x03\x07\xac\x33\x6e\x4a\x1a\xd3\x0a\x51\x2f\x34\xfb\x9d\x4c\x46\x95\x37\xce\x0c\x54\xcd\x23\x53\xe9\xf6\x9f\x6d\xba\xdf\x1c\x45\xc1\xd2\x1e\x45\x64\x30\x80\xf4\xb8\x86\xed\xb5\xd0\x74\xeb\x42\x24\x9b\x09\xf2\x24\x73\x98\xa6\xb8\xd8\x87\x84\x43\x3d\x35\xb5\x75\xbc\xfa\x6a\x73\x23\x2a\xfa\xa4\x2a\xf2\x21\xa9\x8a\x7c\x58\x87\x5d\xd3\xec\x7e\x73\x86\x56\xf4\x6b\xa4\x21\xb4\x2d\x7a\x04\x46\x48\x9d\xbe\xe2\xa5\x66\x7f\xb3\x93\xc7\x3d\x9d\xc5\x13\x0e\x47\x5f\x66\x0c\xbf\xb8\x28\xea\x9a\x71\x69\xa0\xd3\x6d\x74\xc4\xb6\x2f\xd7\xd5\xca\xfb\x51\x77\x4d\x61\x4b\x6a\x1f\x2b\xf7\x64\x56\xb2\xd3\x44\x85\x83\xcd\xa8\x93\x45\x79\x6f\x36\x40\x47\x1e\x60\xb9\x37\xf5\x38\x2f\xd7\x9a\x7c\x8e\x31\x62\x72\x4e\x75\x4d\xfc\x35\x37\x0c\x70\x11\x1b\x1f\xa1\x48\x73\x31\x50\xd4\xe2\xb5\x7e\xb5\xf2\x20\x3e\xb0\x4a\x37\xe9\xf6\x30\xc8\xb0\xec\x8f\x8a\xc7\xaa\x8d\x81\x61\x01\x5a\x66\x94\xbd\xcd\x96\x5f\xa6\x1b\xc0\x2d\x05\x2f\x06\xca\x4b\x26\x20\x20\xfb\x2d\x46\xfa\x45\xa9\x7e\xa2\xa4\xa3\x72\x3b\x5e\x1a\xca\x53\xb9\xcf\x91\x6f\x8c\xcb\xa3\x06\x41\x71\x54\x89\xc7\xd0\xf0\x3b\x9f\xef\x7f\xa2\x42\x42\x46\x95\x45\xac\xbe\x35\xe6\xe4\x95\xa8\xea\x93\x2a\x49\x65\x3c\x50\x12\xb2\x91\x08\x02\x4a\x55\xf1\xf3\xc8\x93\x7e\x97\xaa\x00\x1b\x2e\x5e\xed\x5b\x11\xdd\xbb\xd4\x1f\x38\xc0\x2e\xf5\x46\x79\xdf\x4c\xbb\x7d\x95\xb0\xc1\xce\xa0\x26\x13\xc8\x3f\x6f\xca\x55\x22\x12\x3e\x42\x4e\x44\x37\x39\xab\xdb\xa6\x6d\xe7\xb5\x6a\x8c\xe6\x9b\x13\xba\x08\xe7\x59\x27\xef\x3c\xb5\x47\xa3\x4e\x91\xe5\x1d\x01\x62\xe2\x8e\x3e\x46\xe0\xa0\x27\x35\x94\x9a\xa5\xe6\x7a\x1c\x74\xe3\x8d\xf2\x28\xd7\xa2\x27\x8c\xf3\x48\xa3\x64\xb3\x28\x05\xc5\x35\x61\xf8\xe8\xbd\xc1\xaa\xd7\x81\xba\xd4\x03\xbc\x02\x3d\x21\x62\x74\x96\xf7\x10\x2f\x06\xff\x27\xb9\x1b\xef\xb7\xe0\x8b\x0b\xe7\x68\x7b\x2f\x60\x6f\x88\xcb\x04\x0f\x06\x16\xe3\x7a\x4c\x5e\x3a\x51\x27\xcb\x65\x57\x47\xd4\xa2\x58\x6b\x12\x94\x3a\x29\xa3\x1b\xf5\xac\x5b\x6c\xb7\x18\x09\xd8\x6a\x8f\x5c\x8e\x09\x68\x84\xc4\x59\xa1\xd4\x88\x43\x34\xbe\xb4\x12\x93\xdc\x38\x9a\xe6\xda\x16\x37\x2c\xe7\xb4\x4c\xe4\x62\xb3\x18\x0a\xc7\x4e\x4b\x56\x75\x04\xb4\x50\x00\x16\x1e\x67\x5c\x22\x27\x52\x93\x81\x49\xc7\x01\x1e\xdd\xab\x89\x7b\x4c\x72\x6c\x33\x80\x08\xdb\xde\x05\x22\xaa\xff\x58\x0a\x1f\xb6\xc9\x11\xf6\xf7\x6a\x8b\x47\xee\x55\xe9\xc6\xe2\x63\x57\x5a\x61\xe0\xbe\x33\x0e\x08\xce\x6b\xc0\x8c\x9b\xf9\x44\x70\x91\x8a\x53\xc5\x4b\x6a\x5a\x86\x6c\x07\xc9\xa3\x1e\xd7\x51\x72\x06\x59\x78\xcf\xd8\x64\xae\x91\xba\xc9\xb5\x89\xbb\x75\xc9\x26\xbc\x4d\x90\x62\x6d\x4b\x30\xcc\x50\x56\x04\xb6\x7b\xda\xf2\x48\xcc\x48\x29\x24\x7b\x4f\xb5\x69\x1e\xcd\x6c\xd1\x3a\xf9\x60\x4c\x1e\x26\x0a\x3c\xc5\x7c\x78\x20\x3d\xb7\xed\xcb\xf2\x68\x3c\x7e\x62\x79\x5e\xb7\xca\xc7\xb7\xc8\xd5\x12\x8f\xc6\x0b\xfc\xed\x5f\xd0\x22\xc1\x3d\x2c\x96\xe8\xdc\xcc\x6d\x61\xb5\xc6\xca\x75\x6a\x4c\xe2\xf9\x8d\x36\xed\x19\xb3\x6d\x6a\x6b\x71\x33\xee\xc2\xb8\xf1\x57\xff\xb2\xdf\x1f\x77\xf6\x1a\xf7\x2f\x34\xcb\x8d\x08\x5b\x47\xed\xf4\xae\x01\x3f\xe7\x4e\x9c\xc0\x1b\xa1\xb6\x76\xa2\xc5\xe0\xe9\x69\xf1\xdc\x57\x9a\x1d\x57\x4a\xd2\x5f\xdd\x18\xae\x4b\x29\x3a\xc8\xd7\x60\x7f\xa4\x1e\x6e\x54\x6f\x49\x46\xaf\x13\x81\x43\xf9\x82\xd6\x14\xad\xe9\x4c\x9a\x18\xa9\xa3\xfa\xe8\x6f\x8d\x43\x7d\xf4\xb7\x7c\x66\xda\xc9\xe2\x10\xfb\x60\x77\x45\x91\x57\x8f\xc7\x01\x9a\x5a\x44\x9b\xc5\x13\xa1\x43\x79\x5b\xb6\x2f\xc3\xb5\x48\xbc\x8f\xad\xfe\x46\x2b\x84\xae\xa7\x25\xf6\xf7\x79\xe4\xc2\x21\xaf\xd3\x21\x3f\xe8\x7d\x73\xbd\x51\xed\xa3\x6c\x96\xf5\x3f\x73\x35\xa1\x81\x37\x6b\xc0\x66\xcc\x40\x1d\xc6\x92\xff\xe2\x7f\xae\xd7\x3d\x8f\x6e\x1e\x75\xd7\x7a\xd9\x86\x4a\x22\xaa\xce\x0b\x06\x91\x05\xae\x61\x83\xbb\xd5\xfa\x6a\x1c\x00\x0d\x79\x8c\xe6\x88\x3d\x24\xc3\x6a\x34\x48\x90\x75\x27\x26\xef\xd0\x4b\x70\x79\x10\xbe\xa3\x7a\xfe\x91\x46\xcc\x79\x8f\xeb\xe9\xe4\x2e\x92\x0b\x93\xe4\x03\x6b\x15\x06\x81\x2a\x1e\x92\xb7\x93\x32\xca\xcd\x5b\x2e\x54\xa8\x13\x97\x16\xda\xa8\x40\x8e\x01\x5d\x41\x3d\xf6\xf0\xbf\x32\x4b\x15\x24\x68\xaa\xde\x61\xb1\x67\xc1\xbb\x6e\x54\x5d\xb9\x7c\x10\x7d\x49\x6d\xe8\xea\xc9\x56\x1d\xb9\x33\x16\x00\x77\x98\x3d\xea\x15\xa2\x27\xe3\x7d\x04\x99\x24\x28\xf6\x49\xbc\x5f\x3d\x69\x3d\x66\xf9\xa6\x73\x8f\x52\x03\x76\xb7\xaa\x89\x7a\x03\x26\x8f\xcf\xba\xca\x82\xa6\xe7\x48\x33\x41\x09\xe4\xa8\x19\xce\x6c\x05\xd1\xd0\x5f\x6c\x07\xe8\xf8\x43\x6c\x41\x18\x5d\xcf\xd6\x38\x75\x2c\x35\x3b\x55\x48\xdb\x63\xc9\xc6\x1d\xc2\x12\xbc\xce\xf6\xb2\x8d\x59\x5e\x7c\xc6\x81\x09\x79\x8e\x65\x0e\xcf\x51\xcd\x3b\x20\xbc\x46\x69\xb1\x11\xad\xae\x2a\x6b\xd1\xbb\x37\x05\xbd\x8e\x77\x83\x32\xc5\x9f\xfb\xc8\xff\x99\xe8\xa1\xa4\x3d\xd3\x22\x47\x65\xfe\xbe\xfc\x34\xf9\xe9\x1b\xa6\x01\xd0\x13\xec\x6e\x5f\xf8\xa2\xb8\x7b\xdd\xf4\x26\x55\xa4\x5c\x98\xec\xa8\x63\xa8\x4d\x95\x91\x96\xe5\x89\x49\xd1\x69\xdf\x2f\xc8\xa3\xc4\xf0\xb9\x28\x11\xab\x37\x08\x3b\x3c\xaf\xf4\xec\xb9\xf6\xb4\x72\xea\x52\xb3\x28\xe3\x95\x15\x19\xae\xb8\xb3\x33\xa4\x44\x72\x66\xa7\xdd\xed\xcb\x4b\xcd\x85\x43\x78\xae\x1e\x2d\xed\xb1\x7e\x77\x91\x2e\x98\xc4\xa8\x3c\x02\x40\x5b\xde\x1d\x07\x0e\x5e\xcf\x0d\xb2\x54\x3a\xa3\x59\x5e\xec\xa9\xfe\x5a\x4b\x39\xd8\xb1\xf0\x38\x76\xb7\x29\xef\xbc\x89\x1b\x35\xfd\xbe\x20\xf2\x7a\x43\xd6\x33\x53\x45\x21\x4d\xfb\x24\xdb\xe0\x56\x21\xe0\x6d\x7a\x5c\x67\xbd\xdc\xcf\x46\x85\x85\xca\x56\x13\x97\x61\x66\x9e\x05\x5f\x0d\x2a\x2f\x59\x5a\xe6\x51\x37\x98\x74\x7b\xd5\x75\xdf\x5f\x9b\x4e\xdd\x5e\x5e\x38\x04\xe5\x77\x33\xeb\x46\x27\xe3\x27\xb8\x65\x3d\x99\x8a\x2c\x0e\x1c\x10\xd2\x75\xbe\x83\x73\xca\xc2\x60\xe7\xa9\x09\x01\x72\x63\x37\xcb\x1d\xc9\x0e\x01\x40\x67\x30\xec\x9d\x8b\x45\x75\x5d\x5d\x11\x15\x0c\x3c\xd1\xab\xb8\x28\x3d\xa1\xfe\xb9\x39\x8e\xbb\x62\xa6\xe1\x5d\x51\x01\x2d\x36\x03\xb7\xea\x75\x60\x2a\x4d\x1b\x7f\x2d\x1c\x6a\x0e\xfb\x59\x6a\x7c\x03\x0f\x59\xf4\x0c\xb9\x73\x41\x90\x30\xcb\x3b\x71\xcf\x23\x80\x2c\x67\xa5\xb6\xea\x25\xf6\xd3\x5c\xd9\x7c\x24\xf0\x65\xd4\x56\xc9\x9c\x46\xc9\xcb\x14\x05\x6c\xd3\xd1\x24\xb5\x5b\xed\x87\xf2\x80\xc6\xa7\x7e\x49\x26\x28\x06\xf7\x36\x45\xeb\x79\x96\x0d\x06\x91\xd2\xe1\x17\x27\xb4\x6a\x4c\x77\x3d\x5c\x5e\x39\x82\x84\x37\xfa\xfc\xb3\xed\xc6\xb7\x5e\xf6\xd1\xad\x5c\x1d\x56\x97\xa3\xf4\x20\x4f\x4c\x82\xe7\x49\xc1\xfb\x1a\x41\xc9\x4f\xd6\xd1\x89\xc4\x67\xd3\x57\x3f\x91\xea\xdd\x65\xcd\xaa\x8b\xec\x98\x32\xfe\x2a\xf5\xb2\xab\x91\xe6\xba\xc0\x1d\xec\xb7\x44\x54\x5d\x1d\xf4\x84\xb0\x24\xc3\xe2\x37\xfe\xfc\xaf\xa0\x84\xee\x05\xf5\x3d\x5a\x41\xb9\x57\xa8\xed\xfd\x83\xa9\xeb\x7c\x71\xd1\x83\x13\x19\xf1\xfd\xff\xd5\xa3\xe9\xe5\x2e\x1a\xe8\xf0\x31\xb5\x45\x79\x01\x06\xeb\x0b\xa6\x38\x83\xf8\xf5\x99\xf0\x6d\x90\x18\xf0\x69\x76\x68\x23\x1d\x0f\x2e\x8b\x59\x92\x14\xb3\xe4\x7d\x76\x67\x4c\xfa\x78\x7b\x08\x6b\xa0\x15\x2c\x64\x3d\xa7\xc7\x41\x83\x24\xef\xb8\xbc\x24\x99\x07\xa5\x5a\xe8\x09\x11\x15\xe2\xb4\x0b\xc1\xdb\xbd\x61\xfd\xf8\x57\xac\xfd\x77\x1c\x01\x9c\xda\x3a\x52\x79\xf0\x88\xcc\x30\xb3\x7b\x24\x9e\xcc\x49\x19\xdb\x7a\x3c\x0e\x46\x9b\x2e\x5d\x8f\xa3\x8e\xd1\x11\xac\x53\xdc\xf0\x84\xc5\x8b\x53\x3c\x47\xaf\xa7\xe3\x92\xd7\x15\x81\x62\x6c\x20\x92\xef\x38\x3f\xb1\xd7\xba\x6e\x36\x13\xe0\x50\x3f\x6c\x05\xd2\x8b\x1a\x9f\x20\xa3\x3e\xde\x62\xe5\xf4\x2a\xd0\x2d\x1e\x91\x61\x8a\xc9\x2a\xe4\xe0\x2a\x49\xf1\x39\xa5\x2c\xfc\x8b\xe6\x64\xef\xbd\x4b\xab\x67\xe3\x51\x4f\xde\x04\xee\xb4\x3c\x1b\xfd\x77\xaa\x2f\x24\x11\xd4\x07\x96\x4d\x4c\xe7\x0e\x39\xb9\xcc\x8a\x84\xc1\x97\x79\x55\x2c\xbd\x74\xb0\x59\xba\x68\xd0\x98\x90\x0a\x6b\x90\xf0\xb6\xb5\x0f\xa2\x3c\xcd\x12\x55\x1f\x32\x6a\x10\x0d\x26\xb4\x09\xcc\x47\xda\x5b\x97\x74\x8a\x2c\x19\x79\x18\x08\xa2\x18\xe4\xac\x7a\xec\x47\x57\xcf\xad\xc7\xde\xf6\xb4\x8e\x7e\xf9\x0c\xc5\xc8\xd9\x28\x8f\x56\xdd\x1c\xb5\xf8\x3e\x1a\x07\x73\xe5\x5b\xdc\x6d\x43\x53\xd0\x9b\xe6\x7b\x4f\xaa\x63\xb5\x4e\x88\xd9\xa0\x13\x7b\x9b\x07\xdc\xe6\x1d\xb9\x0a\x3d\x26\x90\xf4\x30\xda\xc4\x0e\x6c\xdc\xe2\x46\x10\x1c\x9c\x16\xdd\xdc\xdf\xcc\xdd\x6b\xb6\xf6\xf8\x88\x00\x8f\xda\x98\xc6\x35\xfb\x49\x37\x77\xbd\x18\x4b\x88\x8e\xb0\xc9\xe1\x16\xd8\xf4\x49\xec\x8a\xd9\x6a\x08\x58\x6d\x47\xc6\x9d\x4e\xbd\x56\xb0\x7f\x7d\x30\xe6\x29\xf9\x14\x71\x64\x87\x59\x5e\xee\xdd\xfd\x75\x0f\xc1\x6a\x78\x3f\x43\xad\xa4\xf8\x9a\x8d\xcf\x9e\xd4\x45\x0a\xd5\x9e\x4f\xc7\xe4\x21\x70\x53\x4b\x16\xc6\xe5\x98\x2e\xb8\x34\xdd\xeb\xdd\xb8\x14\x68\x11\xb2\x24\x14\x6a\x26\x00\xc3\x47\x09\x60\x7e\xa3\xc6\xa6\x4e\x88\x1e\x33\x14\xfa\x1f\x27\x83\x1a\xa8\xab\xe3\xe1\xbe\x4f\xb1\x53\x99\xad\x6d\x66\xb0\x96\x37\xf4\x4e\xb5\x1b\x18\x80\xb8\xba\x3b\xf4\xde\x6e\xb7\x26\xb0\xa3\xe4\xc9\x70\x95\x14\xfc\x14\x63\x85\x26\xe3\x3f\x65\xb5\xf4\x71\xe8\x96\x35\xda\x8f\x13\x2c\xf5\x75\x11\x89\x34\x25\x28\x6a\x9d\x99\x9b\x89\xd9\xce\x35\xbc\xd5\x36\x34\x03\x3d\xda\xcb\xef\x5e\x9f\x93\xeb\xf8\x5b\xad\x09\xa7\x4f\xd2\x08\xbe\xd8\xa2\xfe\xd8\x67\x80\x19\x78\xdd\xf5\xea\xb6\x90\xbb\x4d\xe3\x48\x6d\xad\xdc\xe8\x6f\xce\x92\x56\xf8\xcd\xf1\xcc\xcb\xcb\xf3\x5a\x64\x9e\x43\x43\xdd\xdf\xb4\x77\xe0\xfe\x74\x6a\xb9\xd9\xbf\xbf\x59\x0c\xa2\xbc\x9c\x09\x92\xb0\x9f\x13\x76\xe7\x06\xc1\xbd\xce\xd5\xd4\x33\x96\x9a\xc5\x28\xaf\x16\x13\x79\x64\x7e\xe1\x59\xb6\xd2\xce\xa5\x29\x22\xa8\x34\x32\x7a\x55\x44\x1b\xa7\x4e\xf7\x62\x44\x09\x77\x49\xe2\x89\x15\x22\x3b\x79\x1c\xa5\xb3\xec\xdc\x2d\xf1\xb8\xae\xda\xe6\x91\x2b\xcf\x02\x69\x7d\xa3\x3e\x93\xcb\xe3\xd5\x7e\x39\x43\xa1\xc5\x15\x0a\x4b\x20\x4e\x63\x26\x2a\x75\xe0\xdd\xa1\xcb\xbb\x7d\x53\x23\x32\xa4\x27\x95\x04\xa7\xb9\x2a\xaf\xbe\xda\xec\xf6\xe3\x24\x54\x57\x54\xd6\x84\x82\xb6\x2b\x3e\x05\x13\xaf\x87\xc7\x42\xe2\x74\x9d\x14\x17\x2f\xd0\x93\x79\x6a\x4b\x2a\xd5\x98\xed\x8f\xb5\x89\x79\x72\x8f\x6b\xcc\x77\x42\x07\xfe\xc7\xbf\xdc\x0e\xf2\x2c\x0a\xd9\x42\xe5\xe8\x32\xf3\x22\xcf\xb1\x73\x7a\x5f\x03\xf4\x57\x34\xe6\x57\xb6\xaa\x9e\x10\x68\xc6\x20\x92\x5e\x26\x11\x2a\x44\x7a\x3c\x7e\x96\x72\x98\x24\x71\xab\x71\x54\xaa\xd8\x27\x02\x8a\x63\xf2\x69\x3d\xae\x35\x0c\xe8\xb9\x28\xd1\x5c\xc1\x07\xaa\xd5\x9c\x32\xcd\x04\x1f\x4c\x8d\x06\x43\x8d\xd3\xb8\xbf\xa8\xc7\xa4\x4c\x2a\x95\x31\xd2\xd6\xfc\x5d\xf9\x9c\x1e\x53\xb0\xd9\x77\x79\xf9\x9d\x06\xc9\xd0\x69\x12\x64\xad\x05\x06\xca\x14\x6b\x05\x96\x2f\x93\x52\x0c\xfc\x87\x87\x93\x7f\x45\xc9\x17\x24\x4e\x7c\x7f\x20\xe8\x14\x82\x5a\x67\x98\x3c\xc9\xbe\xcd\x22\x8b\xea\x15\x27\x29\x4d\x8a\x53\xb7\x1e\x97\x50\x50\x5c\x38\x34\x89\x95\x46\x04\xf9\x3b\xe3\x10\x4d\xfe\x8e\xa4\xb0\x16\x8c\x59\x1d\x61\x98\xb8\x34\x2e\x47\x3d\x64\x72\x5e\x1b\x3c\xe0\xb7\x3e\x23\xff\xc2\x22\x19\x0d\x86\xae\x07\x4f\x25\xf5\x13\x20\x98\xf8\x6d\xec\xf7\xc8\xb1\x4e\x51\x9a\x7a\x8a\x47\xdc\x29\xe9\x2f\xe8\x87\xd8\xe1\x26\x2a\xfb\x5e\xd3\x00\xf8\x96\x6d\x2c\xa4\x7a\x52\xd3\xdc\x6c\xba\xd7\xdd\x60\xe8\xa5\x71\xea\xda\x8f\x61\xbf\x29\xfa\x59\x5e\xe2\x85\x21\xf4\xd0\xfa\x96\xc1\x48\x27\x75\x1b\x96\xe7\x83\x87\x96\x27\x54\xed\x05\x13\x11\xfb\xec\x09\xbc\x63\x04\x68\xc7\xc7\x8c\x42\x25\x57\xd7\x8b\x0c\x29\x8d\x4a\x7f\x87\xde\x32\xdc\x7f\xf9\xbb\xbe\x10\xb6\x5e\x7e\x13\x63\xdf\x97\x72\x02\x9f\x64\x9a\x8e\x73\x78\xbe\xd9\xc9\xb3\xa8\xd7\x8d\x0a\x6d\x84\xa0\x27\xf1\x53\xb9\x09\x3d\xf6\xcd\xa2\x49\xec\xbb\x6e\xa3\xd4\xbd\xb8\xea\x03\x3c\x93\x88\xcb\x0b\x5d\x86\x09\x5b\x74\xd0\x6b\x0a\xc9\xa5\x4d\x50\xcc\x4c\x61\xe8\x2b\x84\xb3\xc8\xd7\x8a\x5e\x94\x38\x4c\x2c\x44\x87\x67\xf0\x3d\x7a\x42\xae\x55\xc3\x3c\x1b\xc4\x85\x2b\xf6\x04\x23\x16\x55\x8e\xf5\x42\x1a\x9e\xd6\x73\x02\x1d\x3c\x3d\x69\x85\x32\xd5\xff\x78\x9e\x3c\x5d\x8e\x4e\xd5\xfd\x9f\x6f\x16\x59\x02\x75\x74\xca\x90\x3d\xd8\x47\x9e\x07\x00\xae\xea\x2d\x80\x35\x70\xa6\x4d\x70\xf4\xb3\x3c\x15\x7b\x2e\x4b\xb2\x55\xef\xb3\x6b\x90\x78\xc6\xc7\x13\x04\xa6\x28\xb3\xee\x5a\x01\x59\x01\xe4\x14\x3f\x91\x9f\xf4\x74\xbe\x17\x0d\xc5\x70\x1a\xcf\x14\xa9\xdd\x8f\x31\x46\x27\xec\x2d\x75\x17\x68\xd1\x78\xf9\xd1\xa4\xbe\x4c\xf5\xb4\x54\xfb\x7a\x1c\xda\xd3\xc7\xd8\x29\x93\x25\x9c\x93\x2c\x2a\x65\x3d\x01\xd6\xe0\xef\xe3\x67\x40\x9d\x41\xc5\x5e\x8f\x5b\x81\x30\xfc\xf7\xeb\x1a\xf3\xdd\xac\x18\xb8\x32\xee\x92\xb1\xe2\x0d\x32\x56\xbc\x41\xcf\x63\xb5\x7a\x7e\x8a\xf1\x21\x73\x21\x9f\x09\x4d\x85\xe4\xcb\xf3\xa0\xd5\xa4\xb3\xa1\xc6\xf5\x0e\x9e\x01\x4e\xd4\x91\x18\x65\xe1\x2f\x64\x2c\x60\x35\xfd\xc7\x94\x3a\x94\xdd\xc1\x70\x96\x7a\xf9\x2d\x16\x67\x68\x05\x66\x93\x5e\x8c\x9d\x3c\x49\xe6\x3e\xd9\x10\x66\x32\xea\x14\x48\x86\xf4\x37\x28\x98\x91\x60\x0b\x73\xd3\x6c\x2e\x42\x35\x22\xd4\x82\xdd\xeb\x52\xf0\x9b\x54\xfa\x3a\xce\x4a\x5f\xc7\x09\x09\x37\xcc\x60\xf7\xf4\x78\xf5\x55\x18\xac\x6a\x38\x6f\xfe\x80\xa1\x75\xb4\x17\x39\x22\x42\xba\x9f\x33\xac\x1a\xb6\x00\xd6\x77\xa9\x9e\x93\x79\x5e\x50\xfd\xf8\x96\x34\xd1\xd0\x31\x01\x2a\x4e\xd5\x73\x64\x70\x79\x23\xe4\x40\x6f\xb9\x11\xe4\x0b\x21\xdc\x2d\xdc\x46\x43\xe5\xc9\x45\xaa\x21\x22\x91\x30\xfe\xa0\x15\x62\x6b\x85\x7e\x1b\x1f\x60\x9f\xa7\x36\x9a\xda\x87\xd7\x9a\xae\x36\x4a\xd3\x9a\x7e\xd2\x3f\xc8\x61\x9c\xdb\x5c\x44\x4c\xfa\x58\x9b\x82\xd5\xc7\xa6\x9a\x19\x87\xe7\x5f\x69\x16\xc3\x51\xca\xc6\x82\x9f\xb7\x42\x5a\xf9\x39\x95\x7c\xa2\x5e\xb1\x97\x4c\x58\xe0\x0c\x8c\xc8\xfd\xdf\xb7\xa8\xe4\xa8\xeb\x36\xfa\x53\xef\x61\xee\xea\xc7\xc6\xa1\x4c\x74\x1c\x13\x4c\xbf\x6b\x2a\xb9\x7a\xbe\xb9\x9e\x6d\x60\x44\x98\xc3\xf9\x7b\xa8\x45\xe9\x49\x8d\xf9\xdd\x52\x73\xcd\xb9\xe1\x9e\xc6\x62\xc0\xa8\x93\x15\xee\x71\x2e\x06\xee\x92\xc2\xa3\x09\x50\x56\x2f\x09\xf5\x1f\x6b\x75\x5b\x7e\x5c\x17\x1b\xaf\x64\x45\x11\x27\x1a\x7e\xa1\xf2\xf9\x19\xd9\xf2\x7d\x56\xc3\xec\x3c\xd8\xfc\x46\xd1\x20\x4d\x84\x4b\x2d\x56\x1d\xa8\x23\xe2\x56\x11\x47\x0e\xda\x0e\xa2\xdf\xb7\xe5\xd9\xe9\xf1\x54\x7f\x76\x79\xbe\xd9\x73\x49\xb4\x39\xe9\xb3\x7e\x52\xde\xa4\xf9\x15\xef\xcc\x81\x5f\x7d\xb5\xe9\xd6\x5d\xbe\x59\xf6\x7d\x39\x13\x2f\xfd\x38\x89\x9b\xde\x21\x64\xd8\xa5\xf1\x0e\x35\x93\x85\x43\xcd\xa5\x85\x43\x88\x2d\x50\xd0\xfd\x3d\xf9\x38\xba\x24\x6f\xeb\xb3\x54\x1a\x38\xaa\xcb\x18\xfe\x27\x01\x94\xc0\x32\xa5\x8e\x06\x86\x79\x0d\xfd\xb2\x63\x90\x6b\xb6\x26\x22\x01\x7d\x6f\xd3\x22\x0a\x04\xa6\x94\x9f\xf0\xbb\xff\x9d\x4c\x67\xf5\x2d\x95\x07\x8d\x55\xe2\x5d\xc2\xee\x58\x81\x59\x41\x51\xca\x02\x97\x69\x6d\x8c\xf0\x9d\xaf\xfe\xc0\x81\x66\x37\x4b\xbb\x6e\x68\xad\x3f\x4f\xff\x25\x75\xd5\xe7\xfc\x65\x8d\x52\xaf\xdd\x2f\x3b\x81\x77\x4b\xf5\x73\x7d\x5a\xe5\xa3\x4a\x31\x87\xd9\x10\x41\x90\x57\x00\x3a\x1c\x44\x06\x9f\xf0\x2d\xc3\x24\x51\x19\x47\xc4\xfc\x28\x6a\xe1\x1d\x7c\x28\x6c\x2c\xcb\x1f\x6a\x74\x94\xff\x43\x08\x70\xcf\x06\x28\x63\xb0\xa4\x09\x7d\x2b\x95\x2b\x31\x5e\xe8\x4e\x09\xc7\x6a\x59\xe9\xc5\x45\x99\xc7\x9d\x51\x68\x25\x63\x23\x79\x43\x7e\x47\x8f\xc7\x5f\x9d\xd6\xeb\x38\x3c\xbf\xb4\x4f\x9e\x00\x2a\xf2\x7b\xb6\x1a\xbf\xf6\xeb\x13\x15\x34\x43\xc5\x57\xaf\x56\x45\xe8\x10\xfd\x23\x8b\x80\xf1\x10\x4a\xa5\x10\x56\xc7\xa0\xbb\x8e\xbd\x51\x9d\x3b\xa8\x6b\xff\x3b\x63\x42\x9d\x6b\x69\x18\xbf\x7d\xa3\x15\x2a\xbd\xc3\xc4\x45\xe8\x98\x78\x29\x0f\x50\xee\xf4\x78\x6a\x7e\x49\xd1\xad\x9b\xbb\xf0\xa0\xb5\x9c\xd5\x0a\x4d\xee\x69\x1e\xda\xc2\xa1\x66\x3e\xea\xf5\x14\x59\x88\x4f\x5d\xa4\xbf\xb8\x58\x57\xd5\xe8\xba\xa8\x00\x7f\x50\x69\xbb\xad\x90\x54\xfd\xbb\xa9\x61\xb6\x7f\x7f\x73\x68\xc6\xca\xe6\x0e\xc2\xc6\x0d\x44\x55\xfc\x6b\x75\x34\x80\x8d\x7e\x3c\x20\x11\x58\xf8\xcb\xea\xf1\xd4\xd5\x2d\xcf\x37\xb3\x0d\x5f\xd3\xc4\xe4\xfa\x19\xb9\xed\xfc\x8c\xd4\x64\x56\xe2\x95\xb2\xaf\xbd\x38\xec\xc0\xff\x37\xd6\x06\x3d\x21\x53\xbb\x62\xd4\x29\xe2\x5e\xec\x0d\x96\xfc\xa5\xbc\xe8\x2f\xab\x8e\xca\xdd\xad\xa6\xbd\xf9\x89\xaa\x67\xab\xdc\xae\xf9\xb7\xd6\x54\x65\x8d\xed\x37\x4b\x2a\x41\xe7\x99\x7b\x45\x2b\xf3\xee\x36\xb1\xb7\x4f\x72\x37\x27\x89\xd2\xf2\x09\xd9\x02\xac\xde\x4a\xcc\x3f\x0d\xb0\x7d\x4c\x5e\xdd\x11\x62\xf8\x4f\x49\xe7\xf8\x8e\x8c\x78\x2d\x60\x20\x35\x30\xf6\x4c\x48\x79\xfe\x2d\x8b\x73\xbd\xcd\x22\x36\x47\x68\x79\x9b\x30\x7d\x43\xad\xd5\x16\x8c\x9a\x01\xb9\x52\x25\xdb\x58\xc6\x54\x42\xa7\x35\xa1\xa7\xe3\x91\xf3\xdd\xfe\x86\xcb\xbd\xff\x2c\x82\x25\x25\x77\xea\xc9\xd4\xce\x25\x56\x12\xe9\xaa\x4b\xac\x09\x8b\x3d\xe8\x54\x8b\x20\x04\xa7\x6a\x37\xfb\x4d\x17\xe5\xb3\xe4\x05\xf5\x09\x06\xb1\x59\x6b\x50\x89\x54\x37\x22\xab\x13\x4f\x22\x3f\xe1\x09\xe9\xd5\x04\x5f\xa6\x2d\x20\x2c\x36\x7b\xa4\xaa\x64\xdb\x84\x5c\x1a\x46\x8c\x16\xc4\xf5\x53\x0a\xdd\xc0\xeb\x7f\xaf\x6e\x00\xe6\x2e\xea\x49\x32\xcc\xcc\x6e\x42\x6c\xbf\xe3\x33\xd6\x5e\xee\xd2\x6e\xdf\x2f\x9e\xa6\x98\x1c\x5e\xd5\x35\xea\x81\x76\xe3\x72\x2e\x54\x76\x7e\x8c\xd7\x03\x3c\xc8\x2d\xf2\xfe\x46\x87\x76\x42\xa8\x0c\xdb\xfc\x71\xdf\x68\x59\x89\x3a\xb1\x7a\xf3\x7a\x8b\x95\xea\x73\xc6\x11\x0b\x45\x2e\x04\xe2\xeb\x2e\x51\xba\xb7\x96\xc0\xe5\x27\xac\x1c\xfe\x2c\xed\x87\x3d\x97\xa7\x2e\x2a\xfb\x33\xd8\x73\x51\x92\xf9\x47\xdc\x2d\xfc\x79\x2b\xf4\x23\xfe\xa8\x06\x41\xdd\xec\xc5\xb9\x13\x93\x4c\xef\x03\xa5\x3c\x10\x0b\xab\x9e\xf4\xd8\xd0\x61\x14\xe7\xc5\x4c\xe0\x38\x28\xab\x14\x29\xb3\x62\xd7\x0d\x5c\xc5\xd5\xad\xb5\x64\xf3\x09\xb9\x61\xb3\x44\x92\x89\xa2\x66\xd8\x2d\x4a\x50\xae\xb0\xa2\xfb\x65\x01\xeb\xcf\xc8\x28\x31\xaa\x99\xfc\x9e\xfe\x37\xe2\x1d\xcc\x81\x59\x01\xe8\x60\x7a\x9f\x10\xc4\xa0\xd1\xd1\xaa\xab\x05\xae\x6f\x66\x8b\x34\x64\x1e\x6d\x4b\xb9\x5b\x2f\xa8\x6e\x89\xca\xa3\x38\xd9\x88\x36\x0b\x16\xaf\x3c\x89\x15\x42\x4f\xe8\x4d\x14\x65\xb4\xba\xea\x72\xe3\xc5\x78\x05\xb9\x65\xcb\x3b\x3e\xa3\xfe\xdd\x4d\x12\x6b\x7c\x2d\xeb\xa7\x7b\x28\x2f\xff\x02\x13\xc1\x34\xf7\xe5\xa9\x79\x8e\xf9\xe1\x79\xef\xd4\x5a\xfd\x8a\x7a\x4d\x10\xec\xff\x68\xc8\x6e\x46\x49\x22\x97\xa2\x03\xb6\xc5\xfa\x44\x34\x7a\x8f\x10\x42\xa0\x03\xfb\x51\xd3\x6f\x21\xc8\xed\x82\xa7\x7b\xdb\xb2\x94\x8e\x06\x1d\x97\x1b\x30\xdc\xb3\xf8\x96\xe7\xb9\x4c\xbc\xa0\xa1\xc4\x55\x3f\x13\x36\xa2\x7c\xa0\x9d\x43\x53\x32\x92\xd5\xc1\xe2\xd9\xe7\x76\x86\x2e\xcd\x03\x07\x96\x9f\x0c\x4a\x49\x3f\x25\xdd\xe8\xab\xc4\x69\xb9\x8b\x17\x63\xee\xcc\xf2\x9d\xc8\x9c\xde\xd0\x85\x4a\x79\x54\x88\x98\x6d\xbb\x08\x53\xe3\x9f\x8d\x43\x99\xee\x8c\xf0\x5c\x8c\x46\xdf\x20\x81\x6e\xb9\x27\x6f\xd2\x56\xbd\x28\xd2\xdb\xf7\xb8\x3a\x5f\x52\xee\xbb\xde\x2a\x7c\x33\xf1\xda\xbe\x4f\x1b\xcf\xbb\xf2\xe3\x48\xbc\x3e\xa3\xda\xe5\x30\x8b\xd3\xd2\xf5\x66\xab\xcb\x41\x67\xe1\x63\x82\xe5\x7e\x2c\xf7\x6c\xc0\xca\xea\x32\x0d\x70\x59\x63\x10\x3a\x18\xa9\x3e\xae\x92\xe6\x89\x2e\x78\x74\x82\xa6\x19\xe5\xee\x4f\x56\xb7\x89\x84\xfb\x1a\x44\xce\xbc\x33\x78\xb5\x96\x98\x0b\xa1\x24\x0f\x08\x03\x3f\x93\xa7\xe4\x95\xb0\x43\x0b\xf3\x1a\xd2\x53\xd3\x34\xaa\x6e\x19\x93\x71\x0e\x13\xd0\xda\xe4\x8d\xfd\x0b\x81\x86\x10\xda\xe3\xcf\xb4\x05\xcc\xeb\xe5\xb0\x97\x16\x0e\x05\x8d\x88\x6a\xc6\x23\x70\x39\xd3\x22\x2c\xe7\x55\xb2\xa6\xfe\x44\x58\x2c\xf6\x60\x83\x6b\xcd\x13\x5b\x44\x55\xd8\x2d\x6a\x66\xd8\xc3\x6f\x0a\x57\x10\x6f\xe5\x2b\x6d\xd2\xe7\x78\x0f\x9b\x1f\x4a\x2b\x7b\xb7\xd8\x1e\x10\x8c\x51\xed\xfc\x8c\x49\xaf\x78\x46\xb8\xf1\x68\xe8\xdc\x9f\xaa\x35\xbd\xb8\xd8\x5c\x8b\x7b\xa9\x83\x8e\x9d\x17\x1d\xac\x9e\x9d\x49\x5a\xf0\x7b\x79\x2d\xda\x04\x70\x10\x4f\xfc\x22\xae\x47\x4f\x58\x71\x35\xcf\xab\xed\x1e\x4e\x95\x08\x9a\xb6\x5b\x93\x86\xcf\xb4\x28\x05\xc8\xfb\xc0\xa5\x46\x88\x9b\x34\x9d\x34\xc2\xed\xce\x40\xf5\xc0\x81\xe6\x30\xca\xe1\x56\xa0\xc5\x46\x2c\x51\x56\x79\x7c\x96\x14\x90\x93\x41\x9c\xae\x96\x19\xf6\x3d\x13\x96\x90\x77\x60\x92\x13\xfb\xfc\x5e\xbb\x9a\x3d\x42\x1e\x31\x77\xc7\x5e\xbe\xf6\x97\x9e\x6d\x07\xee\xcb\x63\x5b\x64\xcc\x76\x81\xb9\x00\x3f\xc5\xc6\x21\x53\xf9\x4f\x83\x8f\x88\xf9\x3b\xb7\x45\x9c\xc6\xe9\x38\x7f\x71\xb1\xf9\xcb\xff\xd5\xaf\xfd\x97\xcb\x8d\xd0\x2e\x46\x8f\xd9\xb8\xc8\x35\x8d\x82\xdc\x45\x14\x43\xd4\x09\x80\x3c\x43\xd8\xfc\x12\xd0\xca\xea\xfb\x75\x4c\x92\x92\xda\x55\xcc\x2e\x3f\x58\x3d\xf5\xfb\x6a\x8d\x93\xe9\x52\x33\x1a\xad\x8e\x8a\x32\x4e\xbd\xa1\x03\x1e\xfb\xf9\x16\xbd\x83\x69\x51\x6b\x89\x06\x87\xc3\x3c\x8b\xba\xfd\x06\xe1\x95\x2f\x11\xe9\xee\x12\xf3\xec\x5c\xfc\x1d\x27\xc5\x50\x94\x74\xd1\x65\x41\x8a\xf7\x7b\xd8\xad\xf5\x3f\x48\x16\xe8\xf7\xe8\xa6\x87\x79\x36\xcc\x8a\x28\x79\x5c\xd6\x11\x6b\x13\xc9\x1f\x62\xbe\x5f\x6f\x4d\x2a\xf2\x54\xb3\xda\x50\xe0\x61\x63\x3b\x82\x98\x1d\x35\x44\x88\x59\xa1\x42\xfd\xae\x2c\x82\xfa\xef\x12\x80\x63\x22\x7f\x82\x31\x8f\xf5\x59\x11\x4f\x66\xbc\x20\x2b\x8f\xc9\x29\x4e\xeb\x9f\x16\xa3\x8e\xd9\xdd\x98\x2c\x7d\x75\xd3\xa6\x18\x10\xea\xbc\xe9\xc8\xd3\xb5\x11\x03\xbd\x3f\x26\x3c\xf8\xfb\x35\xa0\x88\x85\xe6\xaa\x4b\x5d\x5a\xba\xae\xa5\x61\x13\x6a\x21\x7a\x52\xe7\xe7\x5d\x6e\xc4\x5d\x08\x55\x9b\xbb\x56\x83\x34\xa9\x38\xe2\x1e\xc4\x48\x6d\x11\x32\x7f\xc2\xf1\xf3\x27\x35\x4e\x3a\x4b\xcd\x7e\x9c\x24\x0d\xd2\xc4\xff\x7c\xa2\x46\xf7\x79\x2d\xd3\x2e\x1f\x0d\x3a\x89\x9a\xa3\xf9\xc6\x08\x69\x92\x87\xa0\x66\xc5\x25\xe5\x23\xf2\xf2\xac\xf1\x19\xd0\x60\xb7\xe5\xe5\x51\x37\xf3\x15\x46\x5d\x79\x3f\xc5\xd6\x84\xda\x7c\xc3\xcb\x06\xff\x94\x1d\x48\xde\xf3\xe1\x48\xd4\xed\xba\x61\xb5\x6d\x92\xd0\x83\x12\xa3\x50\x7d\xd9\x85\x85\xdd\x24\xd7\xab\xeb\x41\xc8\x7e\x84\x9a\x92\x49\x96\xae\x1a\x7e\x13\x49\xfc\x75\xe2\xea\x5d\xaf\x7d\x92\xc5\xa8\x9a\x55\x4b\x54\xbb\xa6\xca\x94\x47\xea\x8d\xd2\xb8\x2c\x66\xa9\x17\xfa\xfb\x1c\xb0\xbc\x81\x5b\xc7\xc9\xb9\xd6\xee\xaf\x7b\xa0\xde\x94\x50\x9b\xa8\x14\x89\xa7\x1e\x55\x0b\x3e\x91\xdf\xd4\xe3\xda\xfa\xea\x20\x4e\xe3\x35\x43\xb1\x1a\x29\x99\x10\x0f\x41\x41\xc4\x78\x1f\x94\x99\x5e\x6a\x4d\xf4\x2c\xea\xb2\xcd\xd7\x5c\x9a\xc6\x68\xfc\x9a\x8c\x82\x7c\xbb\x9e\xf8\x88\x28\xea\x64\xeb\xee\xc9\x80\x2c\x7d\x62\x2b\x74\x81\xe6\xda\x5c\x8d\x1f\x13\x96\xfa\xfc\x78\xf7\xd7\xcd\x79\x07\x0b\x3d\x26\xc1\x2e\xa1\x83\xf8\xe4\xd4\xeb\xf5\x7f\x65\x2b\xb0\xc0\x55\xa2\x1f\xeb\xc0\xc3\x71\x88\x59\xfe\xc5\x78\x42\x4d\xa4\x1a\x95\x32\x6e\x16\xff\xe3\x36\x21\x6b\x4f\xf9\x4b\x5f\x49\xb2\x0d\x55\xbc\xc3\x25\xee\x6e\x13\xb4\xfe\xca\x38\x60\x09\x2f\xd7\x72\xd1\x4a\x97\xa6\xae\x28\x5c\x35\xa3\x97\xbc\x91\x32\x8d\xd7\x33\x54\xb5\xc9\xe3\x6e\x94\xce\x4c\xba\xf6\x78\xde\xf8\xe2\xd3\xb8\x42\x54\x90\x1f\xdd\xaa\x21\x80\xa7\x71\xea\xca\x4d\x28\x03\x72\x05\x0a\x73\xf5\x8b\x31\x21\xfd\x8f\x49\x20\x86\x07\xb7\xbb\x4d\x22\x5d\x99\xec\x5d\x8d\x20\xe9\xa3\x99\xbc\x9e\xd4\xec\x33\x4b\x22\x7c\x3f\xf2\x98\x3f\xdf\xf1\xf1\x4a\x62\xb7\x5a\x3b\xcb\x9a\xa2\x3a\x97\x47\x65\x56\x0c\xfb\x2e\xd7\x16\x5f\x9d\x40\x40\x4d\x29\x30\x89\xd2\x5e\x91\xc4\x3d\xf3\x85\xb6\xbd\x4c\x36\x14\x03\xcb\x56\x49\xe4\x07\x04\x4d\x59\xcf\xe2\xae\x9b\x25\x39\x24\x98\x7a\x5b\x54\x4e\xf8\xd4\x8b\x24\xc3\x5e\x4b\xd0\x51\xb9\xb0\xc3\xf3\xbe\xba\x41\x05\xb9\x8b\x53\x7b\x81\x2c\x17\x90\x58\x2f\x37\x67\xc8\x3e\xf4\x12\x49\x21\xdf\x63\x6f\x3a\xf6\xd6\x29\x46\xb1\x2a\xb8\x2a\x94\x4c\xae\x0e\x2f\xe3\x2e\x6f\xe5\x78\xb9\xe6\x32\x20\x3f\x83\xba\xca\xe3\x18\xb0\x98\x0a\x77\x70\xad\x28\xb4\x7e\xce\xb3\xea\xae\xac\x26\x86\x57\x23\x8d\x32\x97\xe7\x71\x8a\x25\xc4\xb2\x7c\xea\x4a\x5d\xdc\xa9\xd7\xbb\xb8\x28\x4e\x52\x5e\xc3\xe2\x38\xb6\x67\x04\xcd\x5a\x12\xc6\x25\xef\x12\x11\x0a\xbc\xe8\x93\x8c\x78\x3b\xcb\x4d\x48\xf8\x49\x62\x36\xbc\x89\xe5\x13\x53\xff\x0d\xbc\x70\x44\x51\xe8\x3c\xf9\x34\xd9\x6b\x2d\xec\x11\x9f\x61\x15\xf0\x90\x10\x4f\xe5\x76\xa1\xab\x6d\x88\x05\x89\x13\xf4\x9b\xd8\x6d\xf9\x93\x31\x99\xd9\x5e\xa8\x25\x8f\x67\x04\x86\x40\x02\xf1\x2f\x5b\xa1\x23\xf6\x2f\x43\x45\x6f\x34\x1c\xe6\xf2\xc1\xc3\xf3\x06\xf9\x90\x0f\x1a\xfc\x23\xa8\xb7\xb8\x55\x6c\x46\x98\xe9\xbb\x78\xda\xef\xda\xda\x91\x2b\xbf\xbc\x70\xa8\xb9\x7f\x61\x8f\x3c\x3d\xac\x70\xb7\xc6\x44\x13\xbe\x27\x59\xdd\x36\x0c\x1c\xb0\xe8\xfd\x11\x06\x07\x20\x23\x8f\x6c\x11\x79\xfa\x6c\x6b\xa2\xb4\x51\xba\x62\xc3\x15\xe5\x5e\xf9\x6e\x8b\xbb\x48\x09\xfb\x04\xa9\x93\xa8\x36\xb4\xc7\x54\x54\x5f\x8a\xb1\xa4\x62\xf1\xf8\x9f\x77\x35\xe0\xc0\x04\xf8\x78\x42\xf0\x2f\xea\x81\x19\x6c\x5e\x6b\xa1\xa6\x0e\x24\x06\xde\x08\x88\xc6\x6a\x3f\xb6\xc5\x30\x99\x56\x20\x40\x7c\x54\xc7\xba\x1c\xe6\xd9\x7a\xdc\x43\x6d\x1f\xed\x9d\x7b\xd4\xea\x61\xa8\xd7\x30\x2b\x5c\x31\x1b\x0a\xeb\x37\xa9\xf5\x75\xa2\x45\x32\x50\x37\xd9\xb8\xe8\x84\xaf\xc2\xe4\x19\x70\xd8\x4b\x6c\x67\xe7\xbb\x22\x24\x56\x56\x46\x8a\x98\x05\xda\xfb\x43\x82\x5c\x6a\xfb\x1a\x0b\xc2\xe5\x89\xed\x28\x9d\x21\xa4\x09\x5c\x55\xbd\x98\xb9\x1f\x78\x37\xc7\x01\xc4\x5f\x6c\xa6\x19\x14\x0e\xf0\xf4\xc9\xd4\xdc\xb2\xf7\x9f\xd7\x75\x27\xb2\xb2\x04\xe2\x0d\x53\xfd\x2c\xcf\xfb\xb3\xad\x27\xc8\xe5\x3d\xe9\xed\xab\x12\x60\x14\xc1\xdf\xc6\xb2\xe2\x9f\x9d\xaf\x93\x5e\x6f\x51\xdb\xe8\x2d\x2c\x05\xd8\x3b\xff\x41\x2b\x2c\x05\xdb\xe3\xa0\x87\x7a\x9c\x8d\xb7\xae\x8d\xc3\xeb\x7a\x30\xd1\x6a\x90\xc7\x0b\x4f\x39\x2e\xab\x76\xb3\x81\x48\x50\xb8\x62\x0f\x2d\x5f\x27\x39\xf3\x36\x3a\xa8\xfe\x17\xa6\x3b\xf2\x0a\x66\x8c\xc3\x64\x08\x4b\xe8\xa7\xfe\x3d\xaf\xe4\xea\x7e\x49\x92\xdc\x4b\x53\x05\xd4\x61\xd6\x5d\x73\xa5\xee\x55\x5e\x2f\xfd\xc0\x01\xbd\x60\xd3\x7f\x30\x0c\x5f\x4d\x46\xb0\x92\x65\x3d\xb3\x76\x37\x61\x20\xf9\x36\x55\x66\x98\x00\xdb\x06\x71\x9a\x5e\x94\x6f\xc4\xa9\xc4\x1d\x8a\x44\x92\x77\x61\xa8\x24\x4a\xfd\x86\x71\x92\xb0\xec\x0c\xca\x01\x66\xb3\x1d\x98\x7f\x7f\xab\x26\xca\x3c\xd8\x1c\x64\x29\xc4\xf9\x7c\xa3\xec\x0b\x96\x07\xfc\x82\x0d\x11\xa2\x5e\x1c\x85\xe2\x83\xbd\xe4\x50\x2a\x38\x5e\x97\xab\x17\x65\x96\xf5\x48\x15\x51\x55\x7e\xf5\xa4\x4d\xb2\x88\xdd\xcd\xbd\xc1\x6e\xe9\x0c\x9b\xa2\xed\xd9\x62\xbd\xdc\x56\xd8\x44\xbf\xb2\x15\x48\x0c\xc0\x66\xcb\x1a\xf2\xdf\x34\x91\x3a\xa0\x41\x70\xc6\x63\xda\xe2\x81\xac\x23\x3e\xd8\xb1\x1d\x9b\xb7\xef\x89\x2a\xdb\x28\xca\x1f\x99\x70\x2e\xfb\xff\xc9\x1d\x8d\x38\xdf\x2e\x9a\x0b\x9d\x03\xf0\x39\x30\xcd\xae\x13\x95\xf8\x83\xb1\xaf\xe8\x2f\x3e\xd7\x26\xa7\x9c\x99\x2d\x23\x31\x17\xf1\x60\x94\x94\x51\xea\xb2\x51\x91\x6c\xca\xc2\xe9\xb9\x2c\x5e\x5f\xed\x22\xab\xa6\xc7\x45\x99\x55\xd1\x9c\x3c\x1a\x14\xe0\x94\xdd\xaf\x27\x53\x69\xc4\xc2\xa1\x66\x37\x89\x07\x51\xe9\x40\xd0\xd2\xf6\xc5\x38\x20\x83\x4f\x11\x6e\xe2\xe3\xa9\xfe\xb8\xe1\xda\xbb\x51\x9e\xba\x55\x4d\x46\x30\x96\x7e\xce\x2e\x8e\x3f\x9f\x42\x3d\x1e\x7a\xa9\x59\x56\xe3\xd1\xf7\x94\x31\xf6\x6f\xc9\xd8\xd0\xe3\x2f\xfd\xb9\x81\xcb\xbb\xae\x67\xa9\x15\xaa\xd1\x37\xf1\x7b\x7a\xe2\x53\xab\xd5\x7c\xe4\x8a\x6c\x80\x8a\xb0\x09\x65\x37\xbc\x36\xe3\xbd\x56\xf0\x53\x9a\x7e\x3c\x55\xb8\x19\xc5\xc9\x28\xc7\x9f\x73\x61\x0f\x25\xc9\x7b\x94\x04\x9e\xde\x49\x81\xfd\xd5\x2a\x3a\x9f\x21\x95\xbb\x56\x78\x87\x5a\xe6\x34\xc0\x29\x69\x6d\x46\xdd\xae\x79\xcc\xa2\x22\xf8\xef\x5b\x61\xb1\x3d\x35\x09\x57\x08\x71\x62\x37\x89\xe2\x41\xb1\x87\xf0\x85\xc7\x49\xd4\xe0\xaf\xb7\x48\xe2\xe8\xb7\x50\xff\xf2\xc2\x0d\x1e\xb7\xa8\xcb\x3d\x72\xf7\xb7\xc7\x3b\xc5\x8a\x05\x37\x32\x18\x8c\xd2\xb8\x6b\xba\x62\xd5\xc4\x22\x16\xac\x4f\xec\x68\x77\x5a\xc9\x46\xf9\x93\x41\x35\xe2\xbb\x64\xae\xa0\x6d\x17\x04\x7e\x3f\xd4\xd8\x84\x5d\x10\x50\xb0\x50\xb6\x38\x2a\x19\x5a\x52\x40\xae\xf0\x7d\x34\x58\xf0\x3f\x1f\xe0\xea\x95\xcc\x8c\x72\x38\x92\xad\xff\x87\xe3\xf1\x53\x88\x5b\xf5\x6f\xe4\x55\xa2\x9d\xba\x87\xaa\xd3\xef\xb4\x42\xea\x12\xad\xbb\x7c\x73\x36\x08\xd1\x29\x99\x1a\x1a\xab\xd7\xe5\x76\xf4\x3f\x70\x01\xfa\x1f\xad\xe7\x88\x0e\x5b\x94\xf9\xa8\x5b\x8e\x72\x14\xbb\xb0\x02\xa0\x85\xa9\xc7\xbe\x59\x1a\xa7\x2b\x64\x6b\x8f\x06\xdd\x43\x7c\xb1\x9e\x50\xdb\x42\x91\x52\x73\xf2\x14\x30\x26\x6e\x90\x54\x33\xb0\xdd\x46\x69\x95\xdb\x46\xb8\x01\x3b\x76\x23\xbe\xfc\x09\x03\xdd\x55\x93\x31\x5d\xfd\x8d\x3f\x0f\x9c\x40\x96\x6a\x5e\xe8\x51\xd9\x44\xb0\xfd\x0a\xb3\x41\xf3\x38\x2d\x80\x2a\x58\x0c\x16\x1a\x1e\x3c\xfe\xf9\xc4\xbe\x8c\x77\x69\x89\x2f\xaf\xd4\xbd\x28\x99\x95\x97\x06\x42\xcd\x65\xb9\x11\x2c\xa2\x57\x08\xa4\xfe\x63\xd6\x11\xfb\x19\x69\x89\x77\xfb\x2e\x1f\x75\xe0\x0f\x86\xb0\xe1\x4d\x09\x65\xb4\x59\x01\xd3\x4c\xf3\x8f\x08\x51\x4a\xee\xa2\xa2\x18\x99\x29\xfc\x2b\x81\x2e\x5a\x3d\x53\xab\x60\x4f\x17\xa4\x17\x9b\x39\x13\xed\x30\xea\xfe\x90\x78\x11\x7f\x48\x98\x89\xa0\x70\x8d\x97\xf1\x33\xc9\xfe\xf5\x98\x16\xf0\xd7\xe2\xd5\xd5\xc4\x90\x39\x68\x29\xfc\x36\x61\x32\x7e\x9b\x10\xa9\xf9\x28\x51\x4f\x69\xd6\xbf\x81\xe8\x13\xf0\x11\x7a\xcc\x1a\x39\xc4\x00\xd9\xc8\xe3\xd2\xa1\xff\xec\xd3\x36\xef\x8e\x78\x96\xe8\x97\x0a\x16\x7a\x8c\x72\x0a\xd5\xe8\x45\xb5\x7e\x6e\x2b\x60\x73\xcf\x4f\x78\x72\x86\x84\xf6\x7c\x2b\x28\xed\x9c\xd1\x80\x0b\xc1\x93\xea\x89\x20\x2e\x50\xba\x00\x1b\xf3\x22\x8d\xfc\x57\x53\x2f\x60\x79\xbe\x99\x3b\x41\xb7\xeb\x2a\xe4\xf1\x45\x87\xe7\x3d\xbe\x88\x3b\x02\x22\xbf\xdd\xdb\xd7\xf0\x26\x69\x0f\x77\x12\x64\x4d\xe5\x67\xae\x4d\xd2\x8e\xf7\x26\xc5\x20\x98\x6b\x2b\xef\xdd\x7e\x8a\xd2\x0d\x05\xb4\x60\xb4\x02\x52\x84\xe5\x7f\x57\xbb\x41\x2e\x2f\x3b\xf7\xc3\x17\x17\x9b\xa9\xeb\xba\xa2\x88\x4b\x54\x19\x2d\x68\x94\xab\xb1\xa8\xf1\x69\x5a\x57\x93\x24\xdb\xd0\xd0\x1a\x2b\xd8\xbf\x65\x23\x2c\x6c\xa4\x46\x40\xc0\x33\xd7\xff\x19\x33\xa6\x2a\x88\x53\x5c\xaf\xb1\xed\x59\x6a\xf6\x5c\xe1\xf2\x75\xec\x7f\x26\x20\x23\x77\xab\x61\x3a\x19\x74\x1f\x9f\x04\xa4\x14\xa3\x46\xa8\x39\x42\xf6\x54\x8f\x6b\xaa\x99\xcd\xac\xb3\x1e\x67\xea\x1f\xab\x54\x3d\x62\x00\x04\x35\x94\x7e\x94\x94\xa2\x05\xa1\xe0\x39\xe2\x01\x35\xda\x00\x64\xe0\x3d\x6a\x7b\xd8\xd7\xdb\x16\x0e\x05\x15\xda\xea\x99\x69\x7c\x4d\xb6\x36\x6e\xd0\xc9\x37\x33\x28\xfb\xe2\x3b\x66\xdb\x61\x8d\xbe\x29\x03\xc6\xdc\x31\xa6\xef\x60\xa1\xb9\xe1\xe0\x29\x57\x2d\xb4\xa6\x8d\xd2\x20\xd1\x94\x1a\xf8\xda\x46\x94\xac\xcd\x4e\x34\xcb\xaa\x5b\x43\xd4\xfb\x21\x9e\x33\x96\x43\x60\xb3\xcc\x1b\x99\x34\xd1\xba\x65\x96\x17\xf2\x76\xb0\xe8\x6d\xe3\xaf\x7c\x85\xf5\xe5\x25\xaf\xab\x6b\x7b\xcc\x7a\x96\x8c\xd2\x32\xaa\x76\x35\x0f\x8e\x01\x6f\x1d\x65\xa2\x5b\xe3\x30\xa5\x15\x0d\x81\xec\xff\x0b\x6a\x37\xc4\xbd\x2a\xce\xf5\xe5\xd7\xff\xb5\x45\x32\x09\x08\x7a\x11\x8e\x43\x1c\xd4\x9a\x40\x78\x41\x66\xf8\xb3\xf3\x81\x1c\x7a\x49\x2a\xfb\x33\x61\xce\xbd\x81\x56\xb4\x7e\x15\x51\xf0\x4e\xd5\xf9\x91\x0a\x43\x68\x26\xfc\xf6\x75\xb9\x11\x7c\x13\x32\x75\x5b\x5b\x6a\x2c\x50\xfb\x59\x31\x04\x1b\xab\x41\xd9\x26\xb9\xdf\x7f\x4a\x51\x9a\x84\x5b\xae\xb7\x27\x90\xae\xce\x22\xaa\xb2\x09\xd7\xf0\x6a\x7d\xa7\x30\xdc\x8c\xfd\x43\xed\x88\xb3\xf2\x68\xf4\x53\xb4\x93\x95\xce\x0d\x64\x3f\x0a\xad\x99\x0b\xc4\x94\xbf\x40\xf5\xc9\x61\x9e\xc1\x76\xd4\x94\x41\xe4\xe5\xe3\x2e\x67\xdb\xa1\x0c\x78\x8a\xa5\x21\xee\xd4\x00\xbb\x97\x9a\xd9\x4a\x23\x88\x8a\xdd\x6b\x51\x9f\xea\x9e\xef\xa8\x94\x2e\x32\xc8\x97\x29\x2e\xf2\x53\x7d\x96\x24\x4e\xf3\xdc\x75\xcb\x78\xdd\xcd\x32\x11\x8a\xf4\xf4\x11\x45\xab\x99\xbf\x8c\x7a\x33\xf6\x9f\xa6\x27\x2f\x01\x76\x5e\x4d\x13\xeb\xd8\x4b\x21\xcc\x7a\xf9\x35\xcb\x49\x3f\xca\x7b\x22\xc9\xbe\x3c\x6f\x1d\x5b\xd5\x6a\xd4\x13\x0f\x41\x8e\x62\x2f\x1f\xe2\xd5\x18\xaa\x3d\xc9\xd4\x18\x02\xae\x24\x2a\xd1\x8a\xd8\xbe\xcf\xd4\x27\x65\x8b\xd9\xa2\x43\x00\x81\x41\xdc\xad\x86\x93\x96\x0e\x30\x23\xd5\x37\x10\x71\xff\x09\xf6\xb1\x3a\x5f\x57\xdf\x5c\x8f\xd2\xd5\x51\x94\x23\x78\x30\x73\x13\xf9\x23\x73\x3d\xa9\x61\xc8\x8f\xd2\xae\xcb\xcb\x28\x4e\x67\x02\xce\xf9\xc4\x38\xe4\x3f\x58\xb3\x55\x2e\x76\x42\x9e\x41\xec\x30\xaa\x6f\xf7\x04\x8a\x6f\xbd\xbc\x03\x7b\x68\x74\x0a\x26\x6e\x73\x18\x97\xae\x16\x50\x1f\x47\x4e\xff\xc8\x16\x71\x27\xbf\xc0\x1b\x40\xcb\xed\x41\x0b\x8b\x81\xca\xac\x90\x84\xed\x63\x52\x99\x36\xdb\x24\xf2\xb6\x43\x1c\x8f\xcd\xe6\x14\xe6\x9b\x89\xb4\x04\xb4\xfe\x33\xd8\xbf\x15\xba\x8f\x09\xe1\x51\xce\xbf\xf6\xeb\x1a\xf9\x7f\x81\xcd\x1c\x9b\x18\x3c\x80\x50\x10\x9a\x41\x49\x16\x2b\x2d\xc8\x35\xc8\x46\x4f\x8c\xd9\x4f\x08\xa1\x0e\x0a\x09\xff\x06\x05\x6c\xec\xf2\xd7\xd1\x59\xb7\xca\xa1\x8d\xb2\x6e\x96\xf6\x32\x9d\x3a\xd8\x86\x21\xfc\xa7\xc7\x94\xc9\xad\xb8\x3c\x8f\x8b\x06\x69\x52\x43\x9e\x4e\x8f\xa7\x76\x91\xe7\xd1\xb2\x9e\x09\x24\xfd\x3b\x2d\x32\xc8\x56\x8b\x1f\x08\xac\x9c\x9d\xc6\x7a\x2d\x35\x17\x17\x9f\xa6\x64\xe9\x36\x47\xe8\x6f\xca\x9e\x67\x6e\x99\xd5\x2f\x20\x25\xbb\xab\x83\x01\x3d\x82\xdd\xa0\x1a\x61\x43\xfd\xb4\x45\x96\x42\x47\xc9\x0d\xeb\x36\x0c\x9d\x4c\x71\x5f\x5e\x25\x92\xe8\x07\x32\xcc\x30\xfd\xff\x85\x34\x0b\xf1\xc4\x35\xf6\xd1\xa2\x98\xc4\x33\x6c\xdb\x8e\x00\xf7\x36\x26\x94\x4a\x37\xb6\xd8\xac\xab\xe7\x06\x43\x48\x65\x56\x57\x81\x24\xed\x2a\x29\x70\x82\xf2\x6e\x9a\x91\x75\x62\xc1\xdd\x7e\x94\xaf\x5a\x8c\x6f\x84\xf1\x06\x79\x06\x3d\x4d\x3a\x32\x45\x11\x27\x4e\x6b\xbc\x5a\xb7\xc2\x0d\x58\x11\x2b\x7c\x38\x4a\xd3\x91\xc4\x79\x61\x56\xb7\x78\x56\x4f\x2d\xd0\x0b\x87\xbc\xa7\x9a\xc2\x2e\xc6\x04\x88\xfe\x84\xf4\x2b\x86\x51\xb7\x44\x44\x61\x72\x53\x04\x94\xc2\x1d\x9b\x9e\x69\x88\x28\x2e\xb0\xac\xc3\x46\x5c\x80\xe0\x8f\xda\x16\x84\x84\xf4\x98\xca\x96\xee\xf5\xd7\xb3\x74\xae\x4a\x64\xd0\x65\x9c\x81\x7c\x81\xbd\x2d\x02\x85\x5f\x24\x18\xc9\x2d\x19\x51\x56\xe7\xf4\x11\x49\xec\x36\x04\x83\x87\x06\x1d\xb2\x54\xbc\x65\xa4\x06\xd7\x5b\x44\x79\x7b\x8b\x9e\xe4\x86\x4b\x56\xa2\xdc\xcd\x91\xe1\xa9\xae\xdf\x96\xca\x84\x95\xe1\x2c\x29\xd2\x42\x9b\xdb\x2c\x59\x43\xb1\x3e\x5b\x59\x89\xbb\x71\x94\x88\xde\x8c\x61\x2c\xe7\xb6\x64\xbb\xc1\xee\xf9\xbf\x8c\x09\xa0\x06\xcb\x2b\x2c\x55\x9f\xb0\x05\x28\x3a\xe3\x86\xb6\x6d\x78\xff\xd9\xfb\x63\x62\x8b\x3d\xd9\x26\xf2\x7e\xb4\xb1\xb6\x29\x7d\x5f\x33\xfc\x0b\x8a\x65\x67\x7c\x35\x6b\x25\x93\x62\xc2\x26\x97\x8b\x01\x31\xc4\x12\x79\x8b\xd2\xff\x8b\x13\xe1\x78\x37\x57\x84\xa9\x6f\x56\xf8\xe0\xfa\x02\x41\x63\xd7\x5d\x09\x85\x1e\xeb\xaa\xc8\x3d\x61\x69\x3c\xce\xb5\x4c\x5f\x60\x4f\xa2\x8d\x62\x14\x97\xb3\x2c\x60\x4e\x66\xe3\xfb\xa4\xca\x3a\xe1\xc5\x6e\x5a\x7f\x7e\x07\x16\xce\xaa\x10\x9f\xfc\x72\xbe\x6c\xf1\xc0\x3d\xd2\xc1\x9d\x36\x01\x14\x45\xef\xd7\x5d\x77\xe4\xcd\xb3\xb0\xb9\x40\x0a\x0f\xc7\x8f\xb4\xa1\x3b\xc1\x4f\x23\xee\x46\x8f\x4c\xbe\xc6\x03\x07\xb4\x44\xf1\x31\x96\x26\x0c\xdd\xcb\x93\x12\x6a\x54\xc9\xf8\x58\xd6\x23\x66\x83\x9a\x8e\x86\x8c\x15\x23\x37\x4c\xb7\xa3\x45\x16\x3f\x89\xe2\x54\x25\x03\x11\x17\xa8\x4e\x36\x4a\xcb\x0d\x14\xb9\xb0\x06\xdf\x67\x0a\x7c\x19\xe5\xc0\xc7\x23\xf6\xd8\x2b\xc9\x37\x5a\x98\x0a\x05\xc7\x3d\xff\x5c\x5e\x15\x42\x18\xd5\x59\x45\x1d\x64\xdb\x97\xd2\xd7\xb3\x64\xad\xd8\x88\x56\x1d\x34\x2c\x31\x77\x9e\x6a\xcb\xd5\x9b\xbf\x7c\x83\x1c\x73\xe4\xde\x91\xc0\xcd\x6c\xd5\x1b\x79\x45\x69\x97\x5d\xa7\xce\x4d\x74\x46\x02\x01\x69\x35\xcb\x7a\x9b\x2e\xca\xd1\x48\xc3\x8e\x02\x85\x43\x34\xad\x54\x10\x10\xd1\xee\x83\xa0\xf5\xe6\xf2\x32\x4e\xe2\xef\xb8\x1c\xa3\xdf\x72\x92\xd0\x81\xbb\x46\x50\xdf\xa3\xb5\x56\x7b\xdd\x7e\x96\x44\x79\xb0\xda\x43\x19\xe9\x24\x69\x92\x9c\x9c\xe8\x60\xa5\x28\x50\x43\x7d\x10\x4f\xe2\x46\x8b\x9c\x04\xcf\x8c\x09\x07\xde\x0a\xa0\xc9\x3f\x90\x11\x8c\xf0\xe0\x27\x93\x54\xd8\x1a\x51\xc1\x8e\x4b\x56\xe3\x11\xa8\x48\x26\xcf\xcd\x5a\xdd\x44\xde\xda\xc8\xf2\x7c\x33\x4e\x57\xe7\xc2\xf2\x75\x57\x03\x29\x73\x66\x92\x65\xd8\x62\x4a\x09\x92\xcc\xa7\xa9\xba\x26\x05\xf2\xee\xe4\xab\x55\x13\x69\x71\x71\xe9\x97\x68\x0d\x57\xb1\x04\xc4\x4b\x6f\x8e\xc3\xf4\x84\x32\x1d\xae\x4d\x6b\x41\x88\x67\xf7\x6e\x49\xec\x83\x8c\xe6\x8e\xe8\xcc\x22\x7b\x3d\xa2\x89\x9f\x1a\x9a\xb4\x99\x45\x37\x6e\x90\x68\x65\xd8\x9e\xae\x21\xf3\xc3\x02\x78\xa5\x45\x0e\x81\x1a\xde\x20\x57\xbd\xc2\x80\xd4\x33\x54\x64\xf8\x08\xea\x3c\x68\xaa\xdc\x1e\x4b\x1e\x80\xf0\xf2\x28\x02\x11\x93\x5f\x96\xc9\xa1\xd8\x61\xa9\x12\xe0\xc6\xf6\xb5\x99\x7e\x24\xab\x39\x8a\x59\x47\x48\x87\xe3\x6f\x6b\x1c\x84\x6d\x9b\x51\x6d\x69\x54\x8e\xf2\x28\x99\x0b\xce\x09\xa7\x78\x0b\x53\x4b\x58\xf3\x87\x0a\xfd\xc8\xcf\xc7\x01\xb4\x3a\xed\x16\x89\xba\xa3\x99\x90\x52\x79\xe5\x22\xdd\xf9\x45\xbf\xb0\x4a\x91\x2f\x47\x34\xe0\x55\x82\xbc\x86\xe9\xee\x36\x99\x6a\x5e\x24\x83\xf7\x53\x5f\xea\xf2\x34\x70\xfd\x28\x17\xa6\xda\xf2\x3c\xeb\x95\x78\x6b\xb1\xa9\xe4\xed\xdb\x0b\xcd\xdc\x45\x10\x5b\xae\x13\xf8\xaa\x13\xa5\x75\x51\xae\x5a\x02\x18\x3d\x9a\xd5\xea\x49\x0d\xc3\x3a\x1b\xe4\x8a\x78\x36\x59\x53\x4a\x01\xa6\x85\xeb\x0e\x1c\x68\x8e\x92\x32\x8f\xd6\xe3\x2c\x71\x65\x83\xf0\x39\x9f\x52\x52\xfa\xa9\x97\xf3\x18\x6e\x44\x9a\xc3\x61\xc8\x9e\xa3\x38\xe2\x3a\x4b\xa3\xec\x6e\xb3\xc9\x07\x56\x79\xb4\x64\x4c\x90\xb3\xe1\x7d\x87\xef\x32\x57\xf3\x14\x86\x83\x9f\xa7\xde\x0b\x51\xdb\x2a\xe8\x95\xde\xaf\x01\xba\xbe\xd0\xcc\x3a\x55\xaa\xb7\xc3\xe9\x19\x34\x5a\x3d\xae\x73\xe8\x5d\x89\xd0\x61\xb0\x02\xad\xfc\xbe\x9e\xd4\x14\xb7\x5e\x10\x98\xa6\x29\x60\x9b\xac\x9c\x4c\x4a\x44\x45\x7f\x9f\x15\x57\x3c\x8f\x7f\x43\x75\x94\xaa\x8b\x31\x59\x4a\xd6\xa8\xac\x01\x05\xaf\x08\x5b\x4c\x15\x4b\xb0\x2c\x3c\x24\xa5\x34\xc8\xd0\x4d\x80\x29\xb1\x28\xdd\xa8\x2b\xaf\xb9\x75\x97\x8a\x79\x89\x27\xc8\xb3\xf3\xed\xb2\x41\xc8\x1e\x03\x5c\x11\x17\xa5\x41\x0a\x16\xb1\x8f\xe5\x5d\x4c\xc8\xa9\x5a\xee\x50\x83\xd8\x48\xa3\x81\x9b\x25\xff\x2f\xec\xc2\x48\x3e\x1f\xe0\x62\x71\xf2\xfe\x38\x14\xca\x67\x26\xba\x20\xab\xd1\x70\x4f\xb5\x08\x91\x4e\xae\x39\x08\xc3\xb5\x1a\xe5\xe7\xab\x48\x5f\x95\x02\x3c\x0e\x8d\x6c\x98\x97\x9b\x24\xda\x4e\xb4\xd2\xd2\xd7\x9b\x8b\x8b\xb3\xa1\x07\x75\x84\x8c\x9c\xaf\x90\xf7\xc5\xc9\xf1\x84\x5a\x66\x9d\xad\x89\xcb\xbb\x7d\x5b\x83\xf0\x9a\xd0\x7a\xd2\xe3\x2f\x6d\xdd\xf6\x47\x83\x38\xb1\x1a\xb7\x0a\xf1\xe0\xd1\x98\x2a\x0f\x23\x67\x92\x75\x57\x94\x2e\x9f\xc0\x70\xff\x88\x31\xdc\x3f\xaa\x63\x91\xbd\x16\x0d\xa3\xd4\x15\x0e\x60\x6b\x6c\x21\xbb\x05\x68\xa0\xc7\xed\x3a\x32\xb9\xef\x7a\x99\x5e\x8e\xf7\x54\x0c\x30\x47\xd0\xb0\xd1\xf9\x00\xc4\xd2\xbc\x66\x76\x76\x4b\xa5\x9e\xbf\x51\x6c\x64\x79\xd9\x8f\x3d\x44\x4d\x1b\xcd\xf2\xa4\xac\xe9\x5c\x57\x75\xcf\xdd\x4a\x96\x0f\x26\xf8\xf9\x97\x88\x9f\x7f\x89\x50\x4c\xff\xd9\xaf\xfc\x85\x06\x35\x67\xa0\xc4\x6f\xd3\xfa\x29\x92\x59\xcc\xd7\xb4\x09\x85\x3d\xed\x32\x01\x3d\x2f\x4f\x4d\xf9\xfd\xfb\x9b\x1b\xae\x28\x02\x9b\x15\xe1\xcb\x31\x8e\x65\x8e\xd5\x29\x2d\xa6\xe2\x63\x4b\x9c\xef\xcb\xc4\xf9\xbe\x4c\xd7\xfd\x57\xe6\x5f\x9a\x09\x2d\x45\xb8\x33\xaa\x77\x18\x7e\x04\x1b\xf4\x03\xf2\xd0\x1b\x44\xab\x69\xbc\x12\x83\x00\x67\xc6\xee\x1f\x93\x37\xee\xcd\x56\xc8\xf4\xa7\xc1\xab\x8b\x8b\xcd\x9e\xab\xd2\x3b\x27\x71\xea\xe1\x40\x9b\xf3\xb8\x93\xad\x8b\x35\xc5\xc4\xa5\x66\x34\x1c\x26\x86\x36\x50\xf1\x20\xa9\x4b\x99\x90\x50\x9d\xe2\x64\x94\x0f\x5d\x39\x1b\x22\xe8\x1b\xe3\x49\x45\x0e\xf9\x32\x06\xbe\x60\x3c\x3c\x32\x25\xbd\x2d\xbd\xae\x6a\x8d\x47\x29\x15\xd9\xd3\x9b\xa4\x69\xf8\xd3\x31\x49\xfc\x1c\x0b\x34\x9e\xff\xfd\xe8\xd4\xe4\xa8\x56\xf2\x09\x97\x62\x35\x99\x22\x02\xd2\x09\x9f\x6c\xf6\x5c\xd4\x4b\xe2\x14\x2f\x13\x0b\xc6\x55\x32\x13\xbc\xea\x97\x79\x21\x42\xe5\x8a\xb1\xf2\xfa\x3f\xa1\x1b\x7f\x56\x6f\x1d\x0f\xe2\x01\x95\xba\x07\x51\x9c\x14\x59\x3a\x43\xd2\x66\xf8\x43\x2c\xd8\xf0\x4b\x01\x87\xea\x84\xaf\x16\x14\x49\xb6\xee\x52\x23\xf7\x4e\x14\xd6\x6d\x71\xae\xb1\xde\x40\x30\x24\xf7\xa2\x21\x4f\x6b\x22\xfe\xa9\x91\xe5\x72\x49\xe1\x36\xfa\x2e\x07\x1f\x04\x01\xda\x35\x02\x8f\x5d\x23\x32\xd5\xfc\xaf\x48\xdb\xc2\x00\xf3\xe1\x31\x29\x80\x14\xcb\xf3\x35\xdf\xc7\x72\x79\xdc\x95\xf1\xef\xfd\x37\x3d\x26\xff\x87\x0c\x50\xbf\x52\xc7\x07\x13\x6b\xea\xb0\x85\xa8\x37\x99\x9e\x7c\xa9\x50\xef\x20\xda\xec\x47\xc3\x39\x89\xab\xf1\x96\xfe\xf5\x98\x44\x75\x80\x0a\xc0\x1b\x43\xaf\x12\x0b\xe0\x47\xf8\x76\x1b\x29\xf6\x16\x36\xfa\x71\xe9\x36\xa2\xa2\x3f\x1b\x68\x80\x0d\x0e\x9a\x8f\xc9\xf7\x79\xb0\xb5\x0f\x01\xa6\x6d\xb5\xaa\xb7\x13\xa9\x33\x32\x40\x8c\x60\xdd\xe8\xb1\x1f\x67\xab\x59\xb2\xe2\x25\x5e\x0c\xcc\x5f\x7d\x10\x39\xca\x7d\x76\x79\x9b\x1a\x02\xd5\x3c\x96\xd5\x78\x26\x24\xeb\x57\xc8\x48\xf8\x7f\x93\x9d\x13\x8d\xaa\x2b\x53\x91\xd6\x81\x03\xcd\xa8\x28\xe2\xa2\x8c\xd2\xae\xa3\x44\xed\xbc\x64\x03\xa6\xad\x5b\x87\x1f\x8a\x53\xdf\x5f\x00\x34\xe4\x08\x9b\xf4\x1e\xa9\x71\x76\x6f\x16\x83\x2c\x2b\xfb\xf2\x38\x10\x51\x1d\x6d\x51\x46\x7c\x94\x56\xc4\xdc\xf5\x46\x22\x86\x3b\xbb\xfb\xeb\x1a\x9d\x82\xb9\x8a\x68\xe9\x24\x45\x4e\x27\x59\xbb\xfc\xcb\x91\x5c\x6e\xd0\x71\xbd\x9e\xd5\x3c\x0d\x0d\x4c\x94\xe8\x69\xeb\xe4\x17\x17\x41\x53\x47\x3d\xc3\x9c\xa0\x08\x06\x8d\xe4\xde\x6a\x43\x35\x36\xd7\xd1\xa8\x28\xf3\x28\xb1\x29\x8d\x26\x6b\x03\x13\x47\x4f\xea\x08\x17\x20\xc7\xcb\xa3\xad\x6b\x93\x85\x76\x54\x54\x96\x2e\xed\x45\x69\x59\xcc\x52\x83\xec\xe1\x38\x00\xc0\x15\xc5\xaa\x27\xb2\x86\x9a\x7d\xea\x8e\x20\xea\xd0\x4b\x55\x1a\xf6\x4c\xf5\x09\xc4\x88\x3f\x97\xac\x11\x63\xf5\xaa\x34\x5c\xb1\x78\xfd\x70\x02\xb0\x4b\x39\xde\x43\xa4\xb6\xa8\x8f\x7d\x34\x26\x45\xc3\xef\x23\xac\xd3\x68\x95\x29\x15\x0f\x5b\x64\x05\x74\x7f\x1c\x68\x48\x97\x45\x8f\x12\xc3\x76\x37\x89\x3b\xfc\x1d\xa6\xc8\xdd\x62\xa5\xfe\x99\x76\x15\x21\xf8\x3b\x5d\x0e\xcd\xc3\x69\xf5\x9b\x17\x9a\xc3\x3c\xee\xba\xee\xa8\x0c\xea\x37\x26\xbc\x51\x5d\x83\xf9\xf1\xd6\xc5\x30\x92\xc7\x61\xaf\x5e\xf0\x1c\x00\xd2\x79\x04\x93\xd1\xdc\x53\x6b\xf0\x10\xb9\x9b\xd8\xaa\x90\xff\x81\xd6\xa6\xc7\x53\x2b\x89\x58\xa6\x27\x89\xb4\x44\x51\xd1\xfa\x1d\x24\xf8\xde\x1b\xcb\xcb\x35\xde\x23\x80\xf1\xec\x16\x7b\x94\x67\x1b\x79\x96\x0d\xa0\xb9\x60\xea\x36\x0d\x2f\x28\xf8\x83\x31\x09\x18\x5f\x26\xa4\x5b\xd4\xeb\x21\xc8\x43\x57\xe3\x4c\x8b\x14\xcb\xcf\xf8\x16\xea\x4a\x36\x4a\x7b\xfb\xfc\xfb\xfb\x1f\x7e\x71\x2b\xc8\xc3\x7d\xeb\x3f\xe2\x52\xdd\xcc\x56\x88\x12\x75\xf2\xfa\x5c\xfd\xf0\xbc\x3e\x51\xed\xbd\xc8\x1c\xb9\xd9\x94\xf7\x8f\x15\xf7\x1c\xca\x98\x58\xce\xb7\x31\x18\xbc\x58\xf6\xf2\xbc\x06\x4c\xdb\xa4\xeb\x5f\x05\x39\x06\xed\x03\x98\x0b\xad\x2e\x50\x53\xf0\xad\x7f\x20\x49\x02\xf5\x49\x17\xbc\xa0\x51\xc0\x51\x74\xf3\xb8\x88\x8b\xc6\x24\x91\x94\xc8\xa3\x4f\x78\xac\x5b\x48\x5b\x15\xbd\x36\x0e\x1d\xcb\x1b\x2d\x2f\x64\x99\xbb\x5e\xdc\x0d\x03\x90\x05\xbd\xf4\x98\x7e\x3d\x2a\xcb\xa8\xdb\x9f\x23\x26\xf6\x39\xa6\x2f\xa2\x21\x80\x4a\xd0\x3d\x52\x96\x9e\x14\x0f\xa4\x36\xee\x30\x8f\xb3\xbc\x4a\x58\xe4\x79\xfa\x66\x7f\xf5\xf5\xd6\xc6\xdf\x99\x5f\xff\x6a\xb3\xe3\x34\xbf\x36\x09\x8b\x50\x9e\x99\xae\x00\x8a\xd6\x62\xda\xcd\x72\xa0\xac\xb1\x95\xaa\x59\x94\x9e\x4c\xed\x12\xcf\x37\xa3\xa4\x9b\xf5\x33\x50\x06\x7d\xe8\x4f\x19\xfd\xd3\x5c\x35\x4e\x13\xa5\xbf\xdb\xf2\xcf\x7b\x41\x9d\x20\x78\xe1\x22\xad\x8c\x70\x33\x46\x8f\x7d\x84\x58\x64\x03\xb7\xd1\x8f\xca\xc7\x42\xd7\x01\xb4\x22\x33\xdd\xf1\xee\xde\x7f\xea\x97\xa5\xc7\x8a\x27\x76\x12\x8f\x4f\xf9\xa4\xa4\xb9\xf8\x10\x43\x0a\x21\xee\x69\x14\xed\xac\x9c\x2b\xc3\xc9\x40\xfb\x61\x95\x9d\x16\xa7\xf9\xf6\xc2\x04\xd9\x04\x4f\x10\x12\x92\x7a\x4c\xf2\x1b\x55\x14\x53\x0a\x6c\xa7\xe1\x15\xe6\x14\x33\x6d\xfa\xaf\x3b\x1f\xbd\x58\xb4\xe4\x51\x77\x0d\x24\x13\x95\x9a\xa3\xaa\xd6\xf1\xa9\x4b\x5a\x9e\x6f\x8e\x86\x52\xbc\x6f\x84\x56\x10\x06\x85\xc9\x02\x13\xb2\x26\x5f\xd3\xc9\x63\xf6\xd1\xc1\x2c\xe5\x8e\x9f\x3c\xf9\xa8\xe3\x53\x12\x53\xed\xe6\x2e\x44\x28\x19\x17\xd5\xea\x9d\x28\x57\xc2\x98\xa7\xd4\x85\x9a\x2e\x65\x08\x79\x35\xea\x6a\xe6\xa7\xae\x97\x63\xda\x8d\x2f\x4e\x09\x84\x2f\x2e\x1e\x6c\x16\x6b\x9b\xb9\xb0\x2d\xb0\xe8\x2f\x31\xb6\xde\x8a\x09\x1f\xe1\x0d\x9b\x71\x7a\x60\x3c\xb9\x74\x35\x4e\x9d\xcb\x55\x9d\x0d\x43\x00\xb9\xa3\x1e\x13\xb7\x22\x87\xbf\x53\xf8\xe0\x6d\xfa\xe0\xed\xf1\x04\xcc\x71\xb5\x5f\xee\x09\x79\xe6\x39\xec\xbd\xd8\x02\x6e\x11\xf5\x41\x61\x7b\x18\xb8\x9f\x0a\x82\x52\x3f\xc4\x99\xda\xa7\x35\x6d\xe2\x17\x9a\x9d\x6c\x23\xb1\x18\xcf\x17\x56\x42\x91\x65\x42\x1b\xd7\x75\x93\x51\xcf\xe1\xfd\x2a\x34\x43\x42\x48\x83\x69\xec\x1c\x6d\x87\x5e\x6a\x66\xa3\x72\x25\x46\x74\xec\x3d\x81\x43\xba\x46\x61\xce\xaa\x4b\x5d\xae\x04\x8f\x40\x04\xfe\x4c\xe2\x13\x3d\x9e\x5a\x48\x96\x5e\x3a\xa8\x61\xb1\xdc\xa6\x01\x7c\xc3\x3a\x7c\xab\x15\x8c\x2f\x3e\x1f\x7b\xaf\xaf\x18\x7b\x1d\x99\xe4\xf8\xee\x5d\x5d\x49\xa6\x1b\x97\x9b\x1b\x71\xcf\x11\x52\xed\x34\x99\x85\xa2\x32\x6a\x56\xa7\x35\xac\xd3\xd5\x51\x94\x47\x69\xe9\x9c\xb2\x81\x7d\x7c\xeb\x93\xdd\xb7\xf0\x9e\xac\x17\xbb\x23\x6a\x7b\xf5\xd5\x2a\x6a\x7b\x34\x88\xc5\x72\xe4\x03\x97\x54\x40\x36\xae\xb6\xc2\xd3\x3a\xdb\x62\x4f\x5a\x84\xed\xd8\xee\x00\x45\x33\x23\xfc\xea\x01\xa1\x0e\x74\x85\x83\x83\xdf\xe1\x35\xd8\xad\x0e\x5c\x8a\x7a\x00\xb0\x18\xa2\xab\xf1\x82\xf5\x6a\x5b\xa4\x81\x7e\x8a\x00\xff\x77\x88\xa4\x37\x1c\x0d\x86\x08\xcb\x71\x11\xb7\x5b\xb4\x01\xdf\x1e\x87\x0f\x76\x86\xdd\x48\xde\x0e\x96\xcb\x07\xdc\xc4\x7d\x50\x47\xce\x5b\x8f\xd2\x38\x49\xa2\xd9\xe0\xa8\x71\x8a\xf6\x12\xe4\x55\x5a\xe7\x9d\xd0\xb2\xae\x9e\xb2\xc5\x0e\x79\xf6\xba\x10\x49\x54\x69\x08\xef\x61\x4e\x22\x7f\x3d\xde\x9a\x22\xd6\xbf\x74\xb0\x59\x6c\x64\x49\xe2\x52\xe9\xdd\x62\x77\xd8\xc5\x9a\x56\x67\xa9\xb9\x7d\x8d\x27\x76\x14\x8c\x34\xb1\xcb\x9f\x22\x3e\xef\xa9\xba\xca\xd4\x20\xce\xa3\x55\x43\x63\xa9\x92\x1c\x21\xe4\x1b\x5b\x54\x78\xd8\xd3\x9e\x56\x9c\x2e\xe3\x74\x93\xe8\xa3\xe7\x26\xb2\x87\xb0\x36\x65\x1b\xa9\xcb\x0b\x59\x72\x0c\x74\x23\xf7\x63\x9e\x69\x0c\xc7\x91\x07\xeb\x3b\x89\x2f\x9a\x9e\x37\xf4\x35\xf4\x98\x96\xbd\x6e\x5f\xb4\xc0\x64\xa8\x78\x6e\xa6\xa7\xce\xfc\x60\x1c\x8a\x5f\x27\x69\xcd\x89\xd3\x5e\x95\x5e\x6d\x3e\xc3\x45\x18\x05\x56\x62\x0d\x79\x0b\xbc\x52\xa0\x68\xdf\x1c\x53\xf3\xf9\x4d\x96\x6e\x7a\x5f\x66\x1b\x7a\x56\x58\xb4\x0c\x5c\xd8\x58\x36\xfa\xf6\x4d\x8c\x49\xd4\x72\xff\x09\xa6\xa4\x39\x5a\x54\x77\xbe\xad\x16\x7f\x68\x83\x5d\x21\x3d\xa6\xab\xc4\xca\x79\x28\x0f\x40\x2f\x8e\x63\x95\x6b\x32\x6b\xed\xe9\x3d\xc7\xae\x2b\x49\x04\x25\x50\x54\x07\x8c\xf0\x14\x82\x3d\xd1\xae\xde\xfe\xa0\xa6\xa7\x56\xa5\x2a\xab\x71\x09\x1a\x54\xa8\x41\x7c\x34\x0e\xdd\xe4\x1b\x54\x7b\xbf\x48\x45\xcc\xde\x68\x30\x43\xf7\x88\xf6\x1a\x96\x85\xeb\x44\x6f\x3d\x53\x57\x5f\xed\x26\x59\xe1\xc7\x30\xc6\x23\x18\x1b\x7a\x4c\xab\x47\x9c\xae\x54\xc9\x6b\x43\x1a\x97\x28\x76\x9c\x87\xfd\xaa\x9e\xd4\x6a\x87\xbc\x96\xc5\xa9\x89\x85\x21\x94\xbf\x3c\x9e\x68\x92\x05\x41\xb8\x87\x5e\xc3\x7a\x25\x5a\xcf\xf2\xa8\x63\x7a\x64\x28\xc2\x22\x65\xd0\xe3\xa9\xda\xc8\xd2\xf2\x12\x54\xf1\xca\x2c\xd3\xa0\x48\xf5\x90\xf0\x13\x26\x8e\x54\xa3\x83\x57\xf6\xf3\x78\xa5\x54\x0f\x5d\xef\xde\x46\x1b\x11\xbd\xe3\xc1\xa8\x57\x54\xdb\xac\xe8\xbd\x79\xb8\x86\x8a\xac\x19\xb9\x80\x1a\xf9\x3e\xe5\x1a\xc4\xe9\x94\x7d\x7a\xf5\x37\x66\xe6\xb4\x73\xad\xf8\xd5\x2a\x7e\xec\x8d\xba\x88\x1f\x0d\x27\x2e\xf7\x65\xa4\x4c\x2f\xad\x11\xaf\x39\xdd\x6c\x4d\xea\x3c\x24\xd7\x0c\x88\xed\x47\x1b\xae\x58\x8f\x93\xc4\x35\xe4\xb7\x4d\x1b\xbc\x41\x3a\xd2\x35\xf5\x6a\x51\x2e\x58\xd9\xdc\xe1\x0d\x7d\x81\x30\x31\x17\xc6\xcf\x11\x24\x6b\x98\x64\x08\x00\x64\x29\x47\x96\xfc\x8e\x4c\x4f\x3d\x6e\x05\x9a\x88\xfa\x63\xe9\x49\xcd\xbc\x78\xa5\x19\x0f\x86\x12\x50\xac\x3b\x4a\x33\x3e\x68\x85\xad\xe1\x83\xf1\xb3\x96\xcc\x55\x1f\x8d\x23\x38\x8a\x62\xa5\x21\x87\xf6\x80\x17\x26\xa5\xfa\xe8\x75\x2b\x33\x21\xaa\x54\x6c\x94\x9e\x4c\x3d\x0e\xdf\x41\xca\xd2\x5e\x34\x13\xd6\xbd\x0b\x4c\x7b\xb8\x84\xb6\xbf\x91\x67\x9e\x21\x81\x25\x73\x62\xf4\x86\x3b\xe8\x95\xe9\x31\x31\x38\xff\xe2\x5f\xfa\xcf\x1b\x21\xf5\x3e\x2b\x0d\x15\x3d\x6e\xb1\x07\x40\x24\xde\x25\xd5\xb0\xc0\xda\x07\xb8\xb9\x1e\x4f\x55\x61\xab\x19\x3f\x4a\xca\x78\x9d\x3c\x69\xbd\x84\xaf\x47\xdb\x71\xef\x34\xed\x79\xf1\x13\x03\x60\x11\xec\xeb\x16\x39\xa5\x4c\xd7\xe4\xc4\x88\xbb\x9f\x6d\x20\x0e\xf0\xaa\x82\x8b\xde\x85\xfd\xac\x1f\xc3\x82\x79\x9f\x0b\x50\xc8\x7f\x38\x9e\xe8\x98\x7a\x29\xc7\x5f\x6c\xf3\x14\x0a\x12\x73\x07\x9e\xd9\x0a\x2b\xd5\x30\x5a\x75\x52\xca\xf5\xdb\xfe\xf5\x56\x08\x07\xae\x33\x29\x2a\x4a\x0a\xf7\xa5\x21\xbc\xa5\x39\x9d\x3c\x76\x2b\xc5\x6c\xa8\x6b\xe8\x33\x40\x29\xeb\x11\x29\x53\xe3\x52\x77\x6d\x11\x7b\xf1\xa3\x3a\x57\xc0\x4e\x56\xf6\xab\x44\xcf\xeb\x8b\x1c\x95\x4b\xd3\xe3\xa9\xea\xd7\xc2\xa1\xe6\x8a\xa4\x0f\x2e\x0d\x76\xe6\x16\x18\x86\x6c\xf1\xec\x4e\x28\xcd\xcb\xcb\xf3\xd5\xe4\xd9\x43\xe1\xe2\x5d\xaa\x1f\xcd\xc8\x35\x2b\x3d\x88\xc4\x1b\xb7\xc7\xc4\xf2\x33\xb4\xb5\x81\x18\x77\x56\xc7\x04\x6f\xd5\x8d\x3a\x71\xea\x90\x52\xd6\xca\x0b\x4d\x83\x2b\x0e\x36\xcb\xd8\x26\x1d\x02\x81\x6b\xd8\xb0\xf5\x84\x82\x8d\x4e\x96\x55\x53\xb9\xe1\xb5\xb4\xaf\x8e\xe9\x01\x5f\x9d\xba\x24\x9b\x9e\x45\x96\xa5\x73\x8d\xa0\x63\x44\x40\xc3\x67\xda\x84\x0a\xfd\x6c\x1c\x5a\x31\xfa\xd5\x08\xf3\xee\x91\x6e\xcc\x4a\xec\x93\x5c\x7c\xc5\xbb\xd4\xf7\x7a\x77\xfc\x68\x5c\x65\x54\x2b\x7f\xb1\xb9\x0c\xa7\x74\x64\x6c\x57\x5a\xb4\x56\xcf\x6e\x51\xbc\x31\xc3\xa6\xdd\x27\x65\x62\xdb\xc3\x6f\xfc\xd5\xbf\xac\x1f\x7a\x20\xd5\x05\xcf\x57\xac\x96\x13\xb4\x8d\xb5\x4f\x2d\x3f\xfe\x3f\xfd\xa7\x40\xcf\x68\xfa\x32\x0e\x3e\x0a\x6f\x8d\x1b\x87\x5e\x0a\xec\xef\x17\x4d\xee\x65\xaf\x94\xf3\xb0\xda\x22\xe1\xc0\x16\x37\xb3\x15\x38\x46\x47\x30\xb8\x65\xf5\xfa\xcd\xaf\x6c\x35\x0e\xcf\x6f\x9f\x6e\x91\x82\xe2\x8f\xc6\x84\x13\xb9\x87\xf5\x1b\x51\xdb\x11\x6d\xb1\xa1\x2b\xd2\x6c\x87\x6d\x53\xc5\x6f\xe2\xef\x38\xad\x2a\x98\x16\x48\x68\x77\xbc\x5b\x07\xc3\xe9\xbb\x38\xfd\x4e\x23\xc4\xd4\x3b\xf4\x15\x76\xbe\xfe\x03\x07\xac\x4e\x67\x25\x5f\x84\x41\xec\x4d\x73\x5e\x1e\x07\xa6\xee\xdb\x75\xda\x3e\xab\xd9\x48\x51\xd1\x80\x11\xdc\x93\x88\x53\x8f\xa7\xa6\xb4\x74\x00\x52\xb7\x81\x4a\x2d\xfa\x29\x6f\x22\xbc\xc4\x6f\x5c\x6f\x51\x4a\x78\x79\x1c\xac\xe3\xba\xa3\xf2\x31\x79\x92\x58\xf1\x1a\xed\xa0\x67\xa7\xee\x5a\x78\x97\x1f\x12\x72\xf9\x1e\x59\x7b\xe1\x9d\x61\xc7\x51\xfb\x46\x0f\x1e\x09\x72\x3b\xb7\x50\x01\xc6\x57\xdd\x6a\x85\xd1\x76\xd6\x77\x01\x0b\xe7\xd4\x4b\x14\xc5\xb0\xc7\xda\xa1\xf3\x80\x25\x56\xcd\x02\x59\x9f\xe0\x0e\x1e\x1d\x7a\xb4\xf1\x30\xc9\x06\x51\x19\x77\xa3\xc4\x62\x36\xd0\x32\x14\x51\xaa\x27\x7e\xb5\x2f\xd2\x68\xcd\xc9\x03\x53\x31\x0c\x42\x31\xbc\x81\x7b\x47\xa9\xe3\x41\x9d\x69\x0b\x58\x87\x33\x41\xf5\xeb\xea\x98\x78\xec\x00\xea\x98\x6e\xe8\xce\x11\x52\xad\x3e\xdd\x2c\x2d\x46\x03\x5b\x81\x4c\x69\x8e\x9a\x13\x17\x6b\x4d\x27\xa2\x6f\x36\x08\x34\x86\xcf\x5b\x71\x69\x02\xe4\x1c\x25\x5f\xa9\x1e\x33\x56\x95\xa7\x31\x45\x11\x0e\x1e\x23\x77\xaf\x1b\x78\x4b\x88\xcd\x1f\x42\x5f\xd5\x80\x15\x8d\xe5\xf9\xed\x39\xa9\x61\x22\x0b\xb8\xcc\xf9\xca\x3d\x9d\x65\x58\x7f\x6e\x8d\x89\x37\xa1\x2e\xef\x98\x50\x0f\xe0\xeb\xa7\x95\x06\x74\xcf\xcc\xf6\x3f\x74\x15\xf6\xb5\x19\xe7\x2a\x24\x08\x9f\x24\x56\xcb\x94\xa1\xe7\xe5\x09\xa3\xf3\xf3\x0e\xb1\xbf\x8b\x28\x4e\x4b\x15\x86\x50\x19\x27\x96\x4c\x3f\x49\x2a\x52\x3d\x00\xc4\x02\x26\x1a\xa2\x1f\x26\x69\x1b\xbe\xb3\x33\xca\x3b\x51\xba\x36\x4b\x28\x8f\xbb\x1c\x95\x81\x45\x87\x61\xf8\x29\x8d\xcf\x37\xeb\x50\x2c\x07\x9b\xd1\x70\xe8\xa2\x7c\x36\x4c\xe2\xef\xe1\x66\x8c\x1d\xd3\xf0\xfa\xfc\xff\xc7\x98\x3c\xbd\xcf\xd7\x6a\xb9\xe5\xae\x9b\xe5\xa1\x1d\xe4\x7b\x21\xd4\xd0\x0f\xcd\x0c\xd7\xcd\xd2\x6c\xa0\xb3\x22\x04\x20\x3f\x21\xbc\xfe\x4f\x88\xc5\xde\x8d\x06\x9d\x3c\xee\xad\xaa\xfd\x2d\xa6\xc3\x3d\xd9\x20\xf4\x38\x28\x72\x67\x3d\x01\x3b\xb0\x94\x92\x0e\x28\x6c\xea\x77\x31\x8b\xd4\x71\xac\xed\x6d\xfc\xa3\x51\x49\x7c\xfa\x1b\xc4\xa7\xbf\x51\xc7\x6f\xb6\xda\xba\x5c\xbd\x56\xc4\x5b\x13\xe5\xf1\x9a\x3e\xc2\x8a\x73\xbe\x12\x69\xb6\x1e\xf2\xb4\xcc\xd7\x83\xa4\xe6\xa2\x51\x51\xc6\xdd\x06\xf1\xd1\x3e\x24\x13\xb4\x0f\x7d\xa5\xb9\x28\xf3\xb8\x5b\xee\x21\xd7\xe1\x53\xe6\xe4\x78\x78\x7e\xc2\x43\x07\x8f\xea\xab\xed\x90\x9d\xcc\xa1\x3d\x85\x5d\xef\xcd\xa9\x1c\xc3\x62\x06\x69\x32\xda\x23\x05\xdc\xe3\x7b\x63\x12\xfa\x03\x0d\xd3\xd2\x99\x40\x76\xe9\x67\x43\x37\x2b\x9b\x1a\x1e\x7d\x63\x8b\x21\x28\xf2\x47\x5e\x88\xef\x45\x0b\xba\x1a\x6d\x6e\xee\xb8\xc2\xa5\x5d\x37\x43\x1e\x38\xef\x91\x59\xea\x09\xf6\x8a\xbc\x4c\xd1\x7f\xcf\x45\x49\x15\x4b\x06\x32\x4b\x8b\x33\x12\x4f\x1a\x8c\x93\x44\x43\x78\xac\xaa\xc6\x22\xf3\xe6\xf5\x81\x0e\x7a\x9b\xda\x12\x3d\xd7\x4d\xe2\xd4\xe5\x88\xbf\x4c\xe2\x56\xde\xbe\x69\xdf\x86\x37\xb9\xe1\xc4\x01\x7d\x86\x5b\x5e\x84\x28\xda\xdb\xa6\xe2\xec\xae\xad\x9a\x66\x4f\xcf\xe9\x90\xf1\x74\xf6\x45\x6f\x0a\x77\x91\xa4\x30\x8a\xb5\x58\x7d\xab\xf1\x2b\x37\x08\x3e\x78\x83\xa2\xb6\xa2\x74\x2e\x79\x5c\x2e\x47\x11\xfd\x18\x84\x26\xe2\x5d\x8d\x68\xa5\x35\xf3\x88\x7e\xb3\x45\x52\xd5\x6f\xb6\x48\x35\xf7\xda\x98\x70\xa7\x6f\x92\x7a\xc2\x67\x2d\xc2\xa6\xec\xda\x0a\xa2\x65\x1f\x90\xf2\xe2\x4f\x48\x8a\x40\x34\x27\xbc\xf0\x52\x12\xe3\x76\x8c\x77\x10\x5a\xda\xef\x4d\x05\x38\x2f\x2e\x36\x93\x48\xca\x1c\xb6\x7d\x19\x39\x27\x00\x0b\xcf\xd4\x41\x25\xa3\x95\x15\x17\x4c\xc1\x0c\x9c\x46\x40\xb5\x20\xa8\x1a\xe7\x1b\xd1\xba\x05\xbc\xde\xfa\xc8\xeb\x7b\x9e\xac\x83\x5e\x00\x30\x2b\xb7\x01\x28\x91\x4a\xbe\xe9\x09\xc1\x29\x7b\xf1\xca\x8a\xcb\x5d\x5a\xce\x32\x1a\xdf\xc4\x01\xac\x11\x2f\xbf\x8d\xed\x0e\x28\x20\xbc\xa9\xd3\xe3\x67\x49\xfa\xba\x13\x8b\x7c\x64\x8e\xa5\x18\xe3\xec\x3d\x1a\x73\xef\x11\xf1\x71\x34\x4c\x54\xfa\x51\x23\x42\xb9\x77\xc3\x16\x35\x3c\x8f\x14\xb4\x02\x4b\x64\x9e\xa2\xd2\xf9\xeb\xa3\x28\x91\x6d\x4e\xfd\x70\xa9\x85\xfb\x29\xfb\x9f\x46\x9d\x2c\x57\x23\x24\x60\xb8\x4f\xa0\x1a\xa0\x27\x75\x46\x0c\x65\x1e\xad\xbb\x44\xc9\xc5\x08\xe8\x54\x6e\x45\x4f\xa8\xd8\x17\x17\xca\xbb\x42\x9e\x02\x13\x30\xb3\xbe\xa8\x2e\x09\x91\xc6\xef\xd7\xec\x5e\xaf\x54\x33\x3a\x77\x51\x61\x4e\x60\xea\x9e\x36\xa6\xf2\xc7\x31\x52\x02\x59\xcd\xa3\xb4\x57\xa8\xc7\xb5\x6a\xad\x4e\xba\x82\xd4\xbb\x86\x4d\x00\x68\x76\xb4\xec\x6c\x03\xeb\x8c\xd2\xd5\xc4\x86\x23\xa6\xd1\x75\xa2\x8d\x5d\x87\xf7\xd3\x0e\x75\x06\x08\x99\x29\x3f\x00\x0f\xc8\xc8\x02\x14\x3d\x64\x51\xde\xfb\x46\x41\xf2\x25\xb7\x31\xf1\xf5\x84\x36\xdc\x81\x2b\x8a\x18\x88\xf2\xea\xc9\x63\x71\xba\xc3\xde\xd0\x48\x16\xb0\xa5\x9c\xa2\x35\xbf\x93\x67\x1b\x78\x5d\x26\xf5\x34\x21\x02\x15\x5a\x04\x02\x1d\xee\xcd\x04\xaf\x98\xdb\x2d\xea\xaa\xbe\x31\x0e\xf6\x94\x37\x82\xd1\x7a\x4f\x24\xeb\x7a\x1a\x34\x20\x8e\x3f\x47\x5e\x00\xe7\x02\xfe\x2d\x2e\x45\x5a\x56\x97\x77\x83\x5f\xcb\xc5\xa0\xfa\x7c\x77\x82\xbf\x3a\xf5\xc6\x0e\xcf\x37\x57\xf3\x6c\x43\x2d\xeb\x0c\xce\x1c\x00\x69\x3f\x62\x97\x88\xa8\x2c\x5d\xae\xf6\x94\x56\x90\xb9\x40\xc5\x99\x0b\xac\x84\xb3\x99\x96\xfd\x38\xc2\x43\x52\xef\x65\xb9\x05\xf3\x61\xde\xb9\x05\x2c\xcf\x37\xfb\x2e\x42\x65\x04\x59\x10\xcc\xc9\xf5\x78\xda\xed\x7e\x79\xe9\xeb\xcd\x6c\x23\xdd\x13\xd0\x2e\x4a\xfd\x21\x64\xc8\xa2\xaf\x33\x37\xbc\x5e\xf5\x9f\x6a\x13\x0e\xe5\x0e\x8b\x85\x5f\x98\x88\xe3\xd3\x28\x79\x3a\x0c\xa2\xbf\x27\x3e\x60\x78\x6d\xb7\x48\xc8\xfd\xf7\x5b\x8d\x6f\x2f\x68\xba\xb1\x5b\x94\x3a\xf0\x2c\xf6\x6c\x51\x93\xec\x2e\x80\x03\xe6\x96\x2c\x3f\xa9\x02\x75\x5a\x63\xc1\x8b\xbd\xd7\x22\x57\xdc\x86\xd0\x07\x81\x57\x79\x1c\x51\x3a\xae\xb9\x21\x5b\x8c\xaa\x49\x23\x96\xc5\xd2\x7c\x15\x69\x02\x5e\xfc\x75\x76\xf1\x9a\x23\x92\x67\xb7\xef\x56\x74\xad\x31\x5d\x34\xf9\x0e\x53\x4c\x0b\xc8\x98\xae\x2b\xe0\xb9\xe8\x8b\x90\x7e\x25\xde\xdb\x26\x22\xf5\x67\x52\xb8\xc0\xc2\x7a\x76\xcc\x72\x3e\xcf\xed\x14\x23\xab\x6e\x76\x86\xc8\x3a\x67\xc9\xa6\xe5\x8a\xec\xa9\x78\x94\x6f\x79\xe2\xcb\x46\x8c\xca\xfc\xb6\x68\x1c\x6e\x6f\x55\x19\xb4\xed\x25\x11\xea\x4e\xca\xcc\x97\xe1\x62\x2c\xfd\x1a\x50\x56\xd9\x8f\xd3\x19\x0a\xe8\xc0\x9b\x43\xe6\x83\x28\x02\xe9\xe4\x91\xa9\xb1\xf6\xf2\x52\xb3\xdb\xcf\x0a\x95\x40\x47\xe7\xe7\x24\x22\x21\x3d\xf1\x5b\xcd\x30\xee\xae\xb9\xde\x2c\x05\xaa\x97\xb8\x5e\x02\x2e\x87\x19\x61\x50\xea\xb5\x87\x02\xc2\x5e\x5c\x74\x93\xac\x70\x02\x6a\x55\x45\x62\x2c\x30\x26\x4f\x4c\x22\x9a\x77\x88\x1a\x7d\x67\x6a\x6f\x3e\x70\x40\x5a\x3c\xd5\x12\x57\x85\x35\x88\x64\xfe\x88\x6e\xf6\x3e\x4b\x05\xdc\x6e\x05\xb9\xa2\x8e\x8b\xf2\x38\x5d\xc5\x42\x8a\x65\x76\x0e\x9c\x39\x3d\xd9\x62\x99\xc9\x34\x76\x40\x01\x11\x4d\x65\xc9\x53\x56\x77\xa6\xd3\xd5\x55\xe5\x13\x96\xdb\x9a\x9f\x5a\x25\xd9\xf2\x95\x2a\x12\x99\x93\x67\x89\x79\xf0\x01\x06\xb5\x29\x33\x07\x04\xe2\xa3\xd2\xe3\xf5\x26\xfe\xd5\x2d\xd9\xb3\x0a\x21\x43\x31\xea\x94\x2e\x5f\x19\xad\xa2\xa9\xe2\xb5\x61\x82\x4e\x4c\xad\x85\x42\x37\x4a\xa3\x5e\x1c\x69\x8b\x05\x20\xa1\xb7\xe4\xaf\xf4\xb8\x0e\x2f\x31\x74\x65\x1e\xe3\x77\xbc\x99\x6c\x10\xb1\x39\x4f\x51\xfc\x20\xae\x16\x70\x0d\x19\x10\xa0\x5f\x43\xc5\x4f\x4f\x76\xca\x2b\x1f\x9e\x5f\x68\x3e\xff\x8b\xd2\x3a\xf5\x42\x18\xfb\xf7\x6b\xd1\xf6\x0d\x8c\x0d\xac\x9a\xbb\xda\x54\x45\x6c\x05\xde\xd1\xee\x76\x80\x3b\x5d\x90\xc5\x0c\x6b\xe6\xfd\x56\x35\x91\x0d\x05\x22\x2f\x1b\xfb\x20\xeb\xad\xdf\xc0\xc5\x69\xc5\x81\xec\x01\x55\xaf\xcc\x76\x4b\xd6\x30\xff\xbb\xa0\x3b\x7a\x39\xa9\xea\xfd\x98\xa2\xab\x4c\x02\x64\xf0\x0d\x2a\x4f\xa2\x64\x6f\xd8\x4e\x79\xed\x48\xf9\xb5\x47\x8e\x66\xdb\x43\x59\x33\x90\x1a\xfd\x4c\xa4\x35\x10\xcf\xde\x54\x3e\x2a\x46\xc4\xb9\xa9\xa8\x4b\x76\x8f\x41\xdc\x53\x95\x01\x44\x1d\xfa\x33\x7a\xe2\x9b\x20\x82\x49\x9c\xd4\xf8\x3a\x49\x3b\xc0\x34\x96\xee\xf0\xfc\x62\x73\x23\x8a\xd7\x27\x01\xcc\xa7\x5a\xdc\xf5\x09\xdd\x8a\x5e\x26\xf2\x49\x73\x61\x71\xdd\x26\x09\x37\x05\x5d\x7a\x00\xdc\xfe\x05\x2f\x45\x2d\xf3\x42\x3f\x55\xa3\x44\x74\x50\x38\xce\x8d\x00\x36\x45\x76\x68\xda\x5f\x4c\xf8\xca\x8a\xf2\x97\xaa\x91\x82\x49\x76\x1a\x01\xab\x9a\x41\xca\x0b\x56\x35\x47\x68\x8c\x20\x83\x3a\xad\x2f\xd8\x24\x6a\xe4\x9d\xea\x7f\x61\x1b\xb3\xc0\x85\xe0\xa4\x27\xa5\xa7\xae\x68\x4d\x19\x90\x88\x70\xdf\x47\x0a\x86\x37\xbf\xcd\xae\xdb\x52\xb1\xf4\xba\x54\x2f\x5a\x3a\x75\x44\xb6\x5d\xe5\x99\x53\xd6\x7b\xa6\x45\xd2\x8c\x57\xc7\x8d\x6f\x7c\xc3\xab\x4e\xc8\x16\x8c\x02\xdf\xfd\x71\x88\x94\x05\xbc\xfa\xca\xf6\x33\x20\x9d\xe3\xd2\x1e\x43\x0a\x8f\x47\xf5\xa9\x0e\x25\xfc\xa9\xbe\x0f\xec\xb1\x8f\x6d\x59\xe7\xb1\x74\xe8\x52\x8e\x72\x93\xa4\x47\x48\x71\x8b\x84\xc0\x8f\x61\x7b\xc6\xba\x7b\x9e\x85\x9c\xf2\xa8\xe8\x2b\x94\x4c\x4d\x04\xe5\xcf\xcc\x50\x30\xc0\xf2\xc4\x56\x4a\x1e\x2e\x3a\x20\x20\x8d\xfb\xe2\xae\xa7\xdb\x9f\xae\x4b\xd2\x3a\x51\x61\x65\x19\xab\x73\xca\x57\x59\x05\x34\xac\xe7\xeb\x71\x19\x25\xc0\x6a\x7a\x87\xe5\x6f\xbd\xec\xf3\x85\x9d\xe3\xfd\x79\x78\x57\xf9\xaa\x18\xa6\xe6\x3d\x52\xd7\xbf\x47\x3d\xb7\x68\xd5\x29\x65\x0f\xaf\x72\x16\xf3\x59\x4f\xc8\x87\xc0\xfd\xe6\x28\x4a\x92\xcd\xb9\x00\x5b\x85\x68\x2f\xd9\xb9\xbf\xc0\x6e\x85\xa6\x16\xfb\x90\xd8\xf8\x47\xc7\xc1\x17\x7b\xe8\xf2\x32\x2e\x1c\x8a\x48\xde\x02\x75\xd9\x0a\x97\x7f\x38\xa6\x58\x15\x1a\xfb\xe6\xb9\x18\x1a\xe4\x8f\xa2\x7b\x64\x9c\x2d\x5a\xc5\xab\xf5\xbe\xdb\x08\x64\x9a\xbf\xc9\x19\xf0\xdf\x9c\x82\xa3\x1d\x38\xd0\x8c\x06\x0e\x6e\x0f\x0d\x6f\x5a\xf4\x68\x3b\xf4\xd1\xce\xb1\xc6\x52\x63\x6b\xba\xd7\xb1\xdc\xec\xb9\x95\x68\x94\x98\x85\x2e\x4a\xa5\x88\xa8\xf4\x98\xfc\x6b\x7a\xa3\x02\x65\x3c\xd5\x59\x1d\x07\xa1\xad\xe3\x24\xdd\x52\x64\xe9\xe6\x5e\x2a\xbd\xa0\xc0\x86\x09\xf8\x7d\xb2\x63\xb9\x80\x19\xab\x2d\x26\x24\x35\x66\xa7\x5d\x7d\x33\x99\x79\xbc\xe2\x1b\x51\x41\x39\x70\x20\x4e\x4a\xee\xb1\x6a\x09\xf0\x64\x32\xaf\x77\xff\x86\xcc\x7a\x0c\xb7\x7f\xc9\x71\xec\x17\x9c\x16\x63\xb7\xc0\x8e\xb6\xab\x4d\x1e\xfe\x37\x5a\x13\x2f\x89\xb0\xf7\x50\x2d\xd6\x1f\xa4\xac\x7a\x54\xac\x71\x07\x73\x82\xc3\x13\xde\x31\xb8\x04\xb3\xb2\x08\x22\xf3\x3f\xa3\x9a\x02\x48\xc0\x3f\xc1\xce\xa8\x27\x58\x11\xf5\x73\xe4\xf0\x51\x74\xa3\x5c\x59\xa1\xa6\x41\x17\xee\x7c\xda\x64\xe5\xc5\x45\x91\xff\xf5\x93\x0b\x8d\xbc\x1b\x64\x96\x1b\x7c\xd2\x95\xb1\x89\x05\x08\xfb\xeb\x33\x6d\x56\x27\x0f\xab\xc5\xbe\xad\x60\x36\x90\x6f\xba\x59\xd6\x07\xfb\x7c\x4c\x4a\xbd\x88\x74\xf4\x18\x43\x52\x3f\xc5\xb5\x7d\x97\xa6\x0a\xc6\x44\xad\xf3\x8d\x16\xe1\x51\xde\xa8\x0b\x4b\x87\xa3\x4e\x12\x77\xf7\x04\xd0\xa3\x5a\xef\x5b\x8f\xa1\xe1\x8d\x83\xee\xcb\xa6\x61\x2d\x7f\x72\x49\xd4\x22\x13\x42\x8c\xe1\xf8\x17\x7d\xe2\x52\xba\x3c\xc0\x50\xd5\xd1\x06\x2f\x1d\x64\x63\x3d\x9e\x8a\x4b\x9f\x17\x33\x7e\xb9\x0d\xdc\xf0\x51\x19\xfd\x7a\x4c\x1e\x67\x2b\xe2\x93\x1d\x72\x61\xcc\x8f\xdf\x1e\x53\xcf\xf1\xb7\x5b\x5f\x63\x15\xfa\x61\x94\x47\x1d\x21\x1d\xcf\x90\xe0\x30\xf2\x52\xec\x56\xa0\x56\x9b\x9f\x48\x98\x91\xdd\x2c\x55\xef\x0d\x0b\x7b\x65\x4e\xe9\x49\xeb\x17\x82\x68\xd2\x28\xef\x64\x7a\xdf\xa8\x8a\x2d\x7a\xaf\xeb\xea\x67\xcc\x03\xdb\x52\x95\x24\xab\x12\x03\x48\x45\xfa\x22\xc3\x81\x03\xbe\xc8\x50\x47\x42\x1d\x8a\x66\x0c\xbe\x1b\xf5\xb9\x3b\xa4\x3e\x32\x29\xe4\x96\x74\xb2\xc6\xa4\x3b\x4b\xb5\xc3\x9a\x0a\x0f\x29\xc2\xbb\x22\x1b\xe5\x5d\x57\xec\x0b\xb1\xa4\x92\xce\x91\xcd\x9d\x01\x4e\x50\x1b\x8f\x98\xdc\xff\x2f\x63\x6f\x1e\x23\x49\x76\xe6\x87\x75\x67\x55\xf5\x31\x3d\xd3\x73\x8f\x28\x41\xb6\x53\x5a\x0a\xe3\xb5\x09\x6a\x2d\x5b\xb2\xb4\xff\x64\xba\xab\xa8\xd9\x2e\xec\xd4\x14\xba\x7b\x67\xd6\x03\x01\x9a\x57\x99\xaf\x32\x63\x2a\x32\x22\x27\x22\xb2\xaa\x8b\x80\x01\xc1\x10\x0c\x41\x86\x01\x59\x90\x2c\xf8\x10\x2c\x1b\x92\x7c\xc0\xb2\xb5\x4b\x51\xd4\x8a\xdc\xcd\xe4\x92\xbb\x5c\x2e\x8f\x39\x39\x07\xe7\x60\xdf\x47\xf5\x7d\xdf\xd5\x46\x7c\xbf\xef\xbd\xf7\xcb\xca\xe8\x85\xfe\x19\x44\x4c\x57\x66\x46\xbc\xe3\x7b\xdf\xf1\xfb\x7e\x3f\xff\x2f\xe5\x9a\x81\x7d\x01\x4b\xb8\x23\xfa\xaa\x2d\x04\xb1\x28\x99\x16\xd4\x66\x35\x46\x76\xbc\x54\xb5\xf0\xbd\x5c\x73\x3d\xca\xaa\x68\x5d\x1b\xc7\x35\x12\xd4\xb9\x32\xa4\x36\xad\x2b\x13\x9e\x57\xe9\x9e\xe7\x69\x9c\xd6\xc2\x66\xbb\x46\xd2\x50\xd7\xfc\x6e\xed\x46\x9d\xee\x9a\x59\x9f\x0e\xc7\xfe\x53\xcd\x90\xa6\xa8\x8d\x4a\x1b\xe8\xd1\x9b\x04\xb7\x9c\x60\xc6\x78\xed\xc0\xbe\x7a\x62\x3b\x69\x11\x11\xac\xc7\x51\x54\x86\x0a\xcf\x9f\x40\xa9\x61\x06\x99\xb5\x68\x16\x71\x62\x81\x32\x1a\x7a\x53\xa9\x33\xdc\x1f\x80\x96\x8c\xd5\x06\x65\x94\x5c\xbc\xf1\x0c\xf3\x50\x20\xa5\xb5\xd5\xf9\xf0\x15\xd7\xaa\x0e\xc4\x65\x93\x17\xaa\xcb\x0e\xe8\xd1\x76\xe4\x77\x7c\x7c\x52\xda\x61\x4c\xf7\x8e\x89\x66\xfa\x72\x16\x32\x3b\xd6\x2c\xe9\xc8\xe8\x83\x1e\xeb\x24\xd9\xfa\xc2\x42\x3d\xcd\x5a\x5d\x93\xb5\xa7\x82\xfa\xec\x27\xa4\xa2\xb8\x4d\xec\xa9\xd3\x6a\xae\x10\x09\x5c\xeb\xda\xc4\xae\x96\xfb\xea\xb5\x03\xfb\xc6\x68\xd0\x9d\x13\xfd\x68\x42\x79\x93\x97\xfe\x23\x86\x54\xe5\xfc\x1b\xa4\x59\xf0\x71\x45\x81\x53\x35\xf7\x5c\x78\xe2\xb1\xb4\x81\x08\xeb\x5d\x3a\x76\xa3\x3c\x33\x36\x8e\x6a\x01\x48\xba\x41\xb1\xc6\xc6\xc4\xf7\xef\x5f\xa8\xe7\xeb\xbd\xbe\x29\xba\xf0\x06\xb1\x1c\xff\x79\x23\x20\xc8\xff\x39\x79\x76\x45\x37\xcd\xad\xd0\x1b\xc3\x89\xda\x06\x36\x36\x84\xb1\x77\x64\xaf\xc1\x43\x3b\x87\x08\x1d\x9e\xf0\x4d\xd6\x23\x02\xd9\x2d\x1e\x7c\xfb\x28\xd0\x48\x3c\x86\xa4\x1d\xe2\x5d\xc5\x34\x78\x71\x0a\x47\x61\x78\xff\x4f\x8f\x08\x47\x74\x8e\xb8\x97\xf3\x41\x69\xad\x53\x35\x76\x55\xfd\xe6\x93\xfe\xd9\x01\xb7\x41\x89\x87\xee\x24\x25\x5b\x4e\x56\x8d\x96\x14\x87\x4d\xb6\xce\x44\x30\xf2\x80\xce\xff\x08\x3e\xc7\x2b\x0b\xaf\xd4\x4a\xaf\x1a\xf9\x45\xcd\xd3\xea\x0d\xc1\x46\x7b\xa5\x57\x19\x08\xa5\xc7\xc4\xeb\x3d\xfd\x59\x94\xb4\x6d\x92\xa3\xc0\x81\x20\x6a\x24\x66\xd9\xc1\xf2\xa9\x80\x78\x6c\x8c\xfb\x7a\x7b\xf3\x05\xea\x83\x4f\x06\xcb\x46\x28\xe2\xb3\x7c\x77\xf9\x71\xc7\x3f\x16\x84\x95\x94\xd3\xde\x6b\xef\xfb\xd2\xdb\x71\x98\x65\x25\x89\x81\x59\xf6\x7d\x8b\xde\x33\x3b\xcb\xfa\x08\xf7\x35\xf7\xa9\x77\x13\xb9\x97\xf9\x79\x29\x89\xa7\x6d\xd7\x92\xeb\xcb\x75\xe5\x77\x38\x4a\xe2\x8a\x02\xb4\x16\x2e\xa7\x82\xdb\x7e\xab\x31\x96\x12\x2a\xbf\xcc\xe5\xfa\x76\xbb\x1a\x51\x7b\x86\xf2\xb2\xbb\x54\xf4\x95\xc8\x20\x0e\x7a\x62\x44\x9f\x96\x5b\xfc\x33\xcd\x10\xde\x6d\x52\xf3\x43\xd1\x35\x6b\xb5\x80\xab\x3f\xc9\x8a\x09\x27\x09\x10\x9a\x4a\xd0\x68\xa1\xb5\xe6\x5b\x0a\xf7\x2f\xf8\x96\xc2\xc7\x89\x18\x1a\xfe\x95\xd7\x8f\x0b\x58\x9c\xb3\x84\x1b\x1d\x14\xf9\xe3\x01\xea\xc0\x72\x40\xf7\x09\xdc\x7f\x1b\xa7\xa0\x64\x80\xfe\x87\x3f\xd3\x0c\xcd\x45\xff\xe4\xcf\x37\xa9\xae\xf2\xa3\xb1\x19\xba\x1b\x60\x23\xbf\x53\xc7\x4e\x73\x2d\x76\x04\xd3\x9e\x1a\x51\x46\xfa\xa2\x64\x86\x9d\x6b\x1b\x4a\x09\xa6\x28\xa2\x62\xd0\xb6\x9c\x5d\x84\x4b\xab\xd7\x54\x51\x2b\xba\x51\xd2\x99\x0e\xcf\x7e\x1d\xaf\xee\x00\xfd\xb5\x97\xfd\x35\x1c\x48\xfd\x2b\xe2\x99\x5f\x4a\xf3\x22\x4d\x76\xca\x43\xa2\x5b\x60\x37\x7a\x5c\x71\xea\xa2\x07\x0e\xf9\x03\x6d\x53\xd1\xfe\x93\x31\x6d\xcc\xd3\x24\x35\xfc\x01\x9e\x01\xa4\x9a\xf7\xc8\xd0\xf4\x4c\x02\x80\x75\x68\xc7\x06\xa9\xbd\xa3\x14\x70\x1b\xbb\x13\x1b\xa5\x63\xd1\x68\x8f\x62\x8e\x73\xcc\xd2\x99\x65\xd1\xaa\xb2\xf4\xa9\xf1\x84\x3b\x33\x56\x26\x57\xee\x75\xf2\xc8\x73\xa1\xc3\x20\x41\x1e\x65\x86\xd4\x9b\xc9\x16\x2c\x29\xa7\x24\xf1\x3a\xa1\x8e\x61\x8c\xf5\x7a\xa2\x66\xff\xc6\x1b\xf5\xe5\x2c\xed\xcd\x50\x1a\x5c\x63\x2d\xcf\xf3\xe9\x61\xde\x8f\x63\x55\x61\xff\x81\xd2\xcf\xf9\x19\xe1\x91\x3b\xd1\x6a\x94\x74\x76\x84\xf3\x55\x02\xa3\xcd\xcb\x78\x5f\x18\xdd\x1f\x72\x1f\x1f\xbe\xc8\xc1\xac\xcb\x45\xbc\x39\xa9\xc0\xb8\xf8\xca\xc1\xfa\x52\x9a\x65\xe9\xda\x16\xf5\xff\xb3\xa4\xfe\x7f\xb6\xe1\x12\x39\x49\x9a\xb4\xd2\xde\x92\x29\x1c\x80\x58\xa5\xe5\x29\xf4\x3d\x49\x09\x99\x4e\x9a\xb6\xf7\xca\x4b\x7b\xcd\xb2\x03\xfb\xb0\x5f\xfe\xab\xa7\x05\x47\xe7\x18\xfd\x48\x42\xed\x8f\x80\xf6\x82\x73\x71\x14\x7e\x8c\xf2\xfb\xc2\x4e\x39\xb2\x5f\xa6\x57\x25\x42\xae\x07\x18\x04\xc4\x3d\x90\x55\x05\xb4\xa6\x36\x22\x94\xc7\x35\xb4\xae\xea\xaf\xc0\xf9\x76\x19\xe5\x2a\x9f\xb5\x6d\x4d\x1b\xe7\xa3\x5f\xef\x5e\x95\xe5\x74\x63\x0b\xc9\x6c\x8a\xac\x05\x10\x24\x7f\x67\xc8\x91\x0b\x85\x88\x97\x7c\x15\xc7\x18\x53\x0b\xad\x4a\x4a\x47\xa2\x37\x13\x44\x8e\xaf\xee\x7b\xa9\x6e\xda\xab\x91\xfa\x6d\x0e\x54\x1f\xe0\x8e\x97\xb6\x16\x96\x5e\x9e\xab\xbf\x36\x77\x68\x47\x20\xc8\x43\x0e\x51\xcd\x13\x96\x11\xb6\x2c\xf2\x2c\x2a\x28\xee\xe8\x10\x03\x6e\xe1\x83\xe1\xe3\x21\xa8\x35\xeb\x8f\x8f\x21\x21\x7d\x94\xfe\xd4\x48\x1c\x1b\xa0\x15\x76\x8a\x9b\x02\x04\xec\x19\x39\xeb\xb0\xb4\x9f\x6c\x12\x29\xb0\x86\xaa\xf0\x76\x77\x37\xa9\x8f\x62\xc7\x28\xac\xb2\x3d\xc2\x8a\xe0\xc4\x5b\x24\x99\xe0\x98\x2b\xcb\xd7\x71\x6d\x40\x15\xad\x89\x99\x5d\x8e\x92\xd2\xd3\x6d\x33\xfc\xf2\x12\xfa\x49\x5d\x59\xa4\x22\x07\x55\x74\xd3\x41\x6e\x92\xb6\xc0\xe3\x9c\xe8\xce\x98\x56\x6c\xf9\xd6\xee\xd0\x28\x9f\x0e\x0f\xb4\xa3\x19\xf6\x6d\xba\x96\x38\x7e\x35\x17\xfa\x96\x23\xe2\x62\x62\xaf\x2f\x6b\x7b\x69\xe8\x97\x73\x2a\x1e\xa1\x8d\xe3\x44\x15\x79\xda\x8b\xff\xd9\xaf\xe4\x22\xa1\x8d\x93\xee\x1e\x33\xec\x9c\x1b\x92\x72\xf8\x19\x6e\xf3\xf9\x6d\x72\xb3\x72\x7b\x78\x26\x74\xad\x5e\x20\x00\xed\x33\x4d\x72\xb4\x37\xb1\xa7\xb0\x6e\xc1\xaa\x05\xc3\xf7\xc5\x90\x01\x57\x7d\x9b\xb4\xd1\x3c\xe3\xfd\xf3\x72\x21\x39\xff\xbc\x22\x9c\x88\x92\x5c\xda\x51\x64\x26\x90\xdc\x38\xd2\x20\x11\xd2\x23\x55\xc9\x91\x28\xe9\x0f\x5c\x5a\xcf\x19\x10\xee\x2a\xda\x1a\xed\x88\xf5\x6e\xdb\x1c\xee\xc4\xd4\x38\xdb\xf2\xfc\xbc\x2e\xa9\xfb\xf2\x1d\x38\xcc\xcf\x50\x1d\xd5\x2c\xf5\xc6\xab\x20\xe5\x48\xba\x2a\xc8\x6e\xb7\xc7\xbe\xbc\x57\x16\xbd\x5b\x9d\x41\x42\xe9\xc7\x24\xaa\x79\x76\x38\x06\x44\x2e\x67\x0e\x99\x40\x45\x70\x62\x16\xae\x0d\x89\x82\x63\xba\x49\xa1\xe6\x4c\x33\xe4\x90\xde\x6f\xd4\x66\x67\xd5\xef\x44\x63\x06\x3c\xfe\x9f\xc9\x26\xc3\xfa\xfc\xc5\x90\xfa\x41\x76\x8c\xa8\x8d\xed\x03\xca\x30\x74\xd2\x6c\xc9\xb4\xba\x76\x75\x8f\xfc\x2e\x8c\xe5\x47\x8d\x40\x0d\x24\x16\xf5\xf5\xcd\x33\x4c\x7a\xa4\x7c\x37\xfa\xc7\xc4\x26\x7c\x97\xc9\x97\x15\x00\xef\x39\x5c\xf7\xbb\xf3\x76\xba\x39\xce\xe1\x1e\xf2\xf9\x15\xd6\xf7\x25\x91\x17\x9f\x1a\x13\xe1\xa0\x17\x03\xe0\x00\xf6\xe2\x68\xa5\x00\xdf\x20\xe9\x9a\x7e\x7f\x1d\x05\x6a\x0c\xe5\x51\x3a\x66\x8f\x52\xa3\x4d\xbc\x92\xef\xaa\x79\xae\x3e\x24\xcb\x91\x40\x79\x0a\x4e\x1d\xd2\x5d\x27\x87\xb5\xaf\xfd\xa6\x82\x5a\x3f\x1c\x52\xdb\x3e\x66\x18\x27\xd9\x4c\x33\xb0\xbe\xbd\xfb\xa5\x26\x8d\x1e\x33\x8d\xaf\xda\xc2\x66\x26\x91\x7d\x0c\xa4\xc6\x05\x0d\x42\x60\x99\xde\x96\x27\xd5\x7f\xc1\x0e\xd7\x7f\x18\xcb\x27\x65\x36\x7f\x9e\x01\xaf\xa7\x51\xd2\xc1\x23\xa2\x5c\x88\xf7\x78\x28\x0b\x04\x96\x5e\x78\xaf\x1f\xfc\xad\x67\x46\xe5\x5a\xf2\x6f\x50\xee\x59\x87\xa9\xa5\x2a\xf4\x2d\xbc\x1b\x72\x4b\x37\x1a\x41\x26\xf4\x87\x8d\xb0\x8b\xfe\x25\x39\xe8\x3f\xc0\xe1\x8d\x63\xf0\xf2\x90\x70\x14\xe0\xf9\xc7\xf3\x7c\x4b\x2a\x5d\x0a\xed\xc7\xaa\xc2\xd9\xfd\xf7\x18\xaf\x7d\x05\xa1\x95\x73\xf2\x02\x71\xad\x72\xf7\xba\x9e\xd7\xe0\x19\x4b\x02\x4f\x3c\x4d\x15\xd2\x21\xa1\xcd\xef\x3f\x12\xe7\x2a\x8e\x90\xe6\x88\x31\x20\x37\xc4\x4b\x47\xac\xa8\x5a\x2b\x08\x55\x1e\x12\x1e\xc0\x26\x45\x66\x57\x22\x24\x89\x90\xb1\xd5\x98\x55\x6f\x26\x50\x13\x07\xf6\xd5\x4d\xd6\x19\x70\x3b\xeb\x36\xf8\xdd\x38\x68\xa0\x5d\x8c\x15\xfe\xd1\xf0\x05\xd7\xfb\x39\x48\xda\xa6\x67\x93\x62\xac\x8d\x0f\x96\xe6\xb3\x21\x19\xce\xcf\x88\x31\x3c\xef\xa6\xfd\x1d\xa1\xbe\xfd\x0d\x52\xc4\xbb\x3b\xe4\x3c\x9c\xcc\x7c\x68\x49\x74\x99\xf1\x6f\x70\x7f\xef\xe9\xc6\x9e\x50\x35\xf9\xea\x6e\x59\x12\x18\xfc\x07\x0d\xca\xac\x6b\xa8\xa0\x1d\x61\xb2\x58\x1c\xb7\x18\x37\x39\x9f\x23\x45\xd7\xcf\x31\xf9\x88\x71\x34\x5b\x06\x08\x0d\xf8\x90\xdc\xe6\x78\x66\xdc\xbb\x99\x9d\xab\xff\xaa\x88\x5a\xc2\x99\xbe\x29\xdf\x08\x20\xc1\xd5\x06\xed\x01\x24\x07\x10\x82\x1f\xa3\xbe\x42\xa4\x39\x1d\x56\x5d\x5e\x01\x99\xf5\x3f\x9a\x38\x72\xe7\xe7\xeb\xed\x34\xcd\x66\x38\xee\x3b\xcf\xb2\x7a\xe7\xc6\xb0\xee\x21\x70\x3a\xc9\x23\x78\xab\x22\x9d\xb7\x58\x5f\x37\x85\xd5\x2e\x5b\x58\xc5\xcf\x35\xbe\xd2\xbb\x09\xc3\xf6\xda\xe2\x97\xeb\xdd\x41\xbe\x64\x92\x36\x0c\x1b\x1c\xae\xf3\xc4\xd9\x74\x7e\x82\x37\x66\xff\x42\x3d\x4b\x5b\x2b\x38\x3b\x7d\xfb\xd7\x42\xa0\xd8\x79\x9e\x33\xeb\x10\xc5\x8b\xd2\x64\x77\x39\xbe\xc8\x90\x7c\x01\xaf\x09\xbb\x1d\x07\x0f\x1c\xc9\x5b\x63\x79\x40\x3a\x25\x8f\x61\x5d\xe8\x27\x50\x55\x75\x0a\x64\x84\x70\x3c\x36\x64\x1d\x1a\xaa\xda\xb4\xd2\xac\x9d\xef\x0c\x95\x89\x1a\x0c\xb1\x37\x73\xa1\x93\xec\x0a\x2b\x37\xff\x41\x83\x24\xc3\xf6\x34\x89\x1c\xfd\xaa\x2e\x41\xac\xd4\x3b\x8d\x67\x7c\xdf\x40\x6b\xc5\x2e\xdb\x38\xb6\xd9\x74\x58\x44\xdb\x24\xd5\xec\x01\xde\xe5\xd7\x48\x21\xdf\x3e\x35\x86\xaa\x09\x01\x75\x3b\xb3\x87\x6d\x3c\x3d\x06\x00\x18\x06\x7a\xc2\x5b\x44\x4f\x78\x0b\xdf\xe7\x50\x02\xac\x32\x3f\x48\x72\x1b\x4f\xd3\x58\xbf\xc3\xc3\xf8\x0e\x35\xb2\x9e\x22\xa1\x84\x53\x04\x32\xcc\x8b\xb4\x67\x5a\x20\xa9\x43\x05\x02\x41\x9d\x5e\x57\xc9\x33\x2d\xa5\x1e\x3a\x8d\xd5\x7d\x42\x0e\x1f\xbd\xae\x62\x21\x6a\x47\x1d\x3d\x99\x11\x82\x7e\xc2\x8a\x91\x1f\x36\x42\x84\x7d\x86\x4b\x85\x87\xfb\x26\x51\x8a\x50\xcf\x8c\xe3\x31\x07\xda\x66\x89\xd8\xf3\x02\xa1\xa3\x33\xd3\xe6\x26\x2a\xf8\xdd\x77\xa9\x7b\xed\x2e\x25\x99\x5a\x5d\xfb\xf5\xa9\xb0\x68\x40\x70\x07\xdb\xa8\x72\x95\xae\x99\x9d\x05\x49\xd0\x49\xe1\xba\xa9\x5d\xae\x5e\xfe\xdc\x65\xf1\xab\x54\x48\xca\x0f\xa6\x2a\x41\xea\x95\x6c\x7c\xee\x06\x3b\xcc\x35\xc7\x3a\x8f\xbf\xd5\xcd\xa2\xbc\x88\x9c\x1e\x89\x03\x8c\xd2\x69\x76\xa1\x11\x72\xd3\x79\x91\x59\xd3\x83\x4e\x0a\x2c\xc2\x1d\x22\xfa\x3a\x31\x56\x90\x98\x80\x07\x7f\xa5\xde\xb6\x6b\x8c\x88\x67\x47\x7f\xb2\x7e\xb1\xbf\x9c\xd6\x3c\xb7\x89\xf2\x4b\xb9\x64\x0a\xf5\x1f\x8c\xd9\x89\xd4\xb5\xa0\xe7\x63\xba\xb6\x43\xd6\xb5\x1d\xf3\x55\xf2\x78\x7d\x4f\xe8\x6d\xd4\x80\x4f\x3d\xef\x06\x47\x2a\xc8\x59\x39\xc1\xef\xf2\x7d\x11\x60\x7d\x0a\xc3\x01\x40\xcd\x5d\x58\x24\x8c\xfb\x43\x39\x6a\x90\x16\xbf\x4a\x6a\x64\x40\x08\x03\x4d\xf8\xfc\x48\x2a\x66\x8e\x6b\x2d\x64\x11\xbb\x51\xef\x31\x5a\x5a\xe7\xe9\xc4\xd8\x3b\x22\x6e\xf8\x2b\xa4\xdc\x77\x67\xc8\xad\xf4\x9f\x12\xea\xee\x49\x34\xb7\xc1\x13\xfe\xc5\x70\x5c\x43\x6e\x76\xce\xc1\x43\x1b\x04\xbc\xbf\xd8\x08\x7c\x04\x51\x1c\x0b\xe7\x62\xa1\xe5\x70\xef\x14\x05\xb9\x8b\xbf\x17\x68\xbe\x0a\x93\xb4\x4d\xd6\xde\x15\x70\xf7\xcf\x93\x98\xe1\xcf\x00\x3e\x83\xd3\xf7\x5d\x19\x48\x58\xe0\xc7\x81\xe5\x41\x7c\x7e\x9e\xdb\x87\x81\x5d\xf3\x85\x7c\x79\x47\x0c\x5f\xd0\x7a\xee\x99\xf5\x25\x1b\x7b\x02\x5a\xec\x2e\x6d\xcf\xd4\x9b\xaa\xd2\x55\x91\x99\xb6\xcd\x67\x02\x74\x4a\xeb\xd6\x48\xba\xdf\x97\x5c\xf9\xe6\x65\x22\x8b\x51\xa6\x3c\x4c\xf7\xe5\x49\xf2\xa2\xb9\xba\x69\xaf\x4a\x7c\x8f\xbe\x56\x98\x79\xa5\x32\x44\x88\xf2\x03\xd2\x39\x9a\xac\xe4\x94\x07\xf0\x52\x9a\xa5\x83\x4e\x57\x72\xa9\xb0\x19\xe7\x87\x94\x32\xc5\xb9\x8a\x70\x6d\x46\x52\x7f\xee\xff\x57\x10\x91\xb6\xa3\xbc\x95\x26\x85\xd5\x2c\x99\xa3\x25\xac\x79\xd5\x96\x3f\xa8\xa2\xbc\x8f\x7a\xfd\x74\x90\xb4\x7b\x0e\x01\xe4\xcb\x63\xf3\xf3\xbe\x3c\x36\xc9\x40\x71\xb0\x9c\xfc\x4e\x27\x34\xbd\x78\x93\x50\x0e\x85\xde\x90\x5f\x9c\x2e\x2f\xdb\xec\x49\x4c\xa8\x52\x17\x36\x88\x46\xee\x7f\x96\xf0\x00\xa0\x9f\x7f\x3b\xac\xcd\xce\x6e\xde\xe7\xfe\xca\x77\x11\x1e\xc0\xd2\xa8\xe8\x83\xde\x0c\x43\x4b\x39\x18\x4e\x61\xc1\x7f\x08\x5d\x57\x47\x62\x51\x8e\x1c\x6c\xfe\xb5\x61\x28\x22\xaa\x0e\x13\xf6\xf0\x71\xc1\x15\xe0\x1f\x2e\x48\x74\xa0\xe2\x0f\x13\x1d\x3f\x0b\x0b\x4e\x95\x52\xdb\x01\xb0\xf1\x3f\x83\x11\xd1\x1b\x3e\x9a\x6d\x27\xb3\x8a\x11\xf3\xf9\x67\x2f\x2b\x07\x86\x6b\xac\xb2\xc9\x82\xcb\xec\x6c\x5d\x94\x95\xa3\xbe\x89\x69\x7a\x40\x32\xa4\xd7\x64\xb0\xcb\xf9\x37\xad\x62\x86\xc0\x22\xe8\x49\xc6\xf6\x02\x5c\x0f\xa1\xfc\xa7\x43\x8a\x2c\xa7\x9a\xe5\x0b\xc3\x82\xdc\x6c\x84\xfa\x53\xb7\x0c\x13\x05\xc0\x90\x0e\xb4\x4d\x1c\x9f\x3e\xdd\x08\xdf\x74\x7a\x0c\xa3\xdf\x6b\x19\x3d\x5c\x30\xf8\x1f\x63\x67\xea\x4d\xe3\x51\x95\xd6\xa5\xcc\x9a\x15\x9f\x8a\xc2\x56\x38\x41\xc8\x90\x13\xc3\x2f\x4d\x30\x77\xe9\x67\xff\x83\x32\x54\x72\x79\xff\xf2\x65\x61\x7e\x9e\x68\x52\x85\xe8\xb6\xfa\xb5\x4a\xc1\xca\xed\x61\xcf\x8f\x00\x18\xc2\x14\xbc\x23\x19\x0e\xed\x5e\xc5\x22\x72\xa6\x89\x04\xd0\x76\x20\xdb\x88\xb9\xfe\x31\xd1\xc2\xd6\x04\xde\x0b\x23\xad\xd6\x17\xa8\xc3\x7f\x26\x2b\x1c\x9f\xde\x25\x91\x85\x92\x81\x0d\x03\x6a\xf2\x1c\x75\x4b\x9e\x96\xe6\x06\x44\x1f\x77\xd0\x36\xec\xd5\xb1\xcb\x11\x72\x05\x1c\xd9\x0b\x48\x94\xaa\xc4\x1c\x30\xc4\x47\x91\xd0\x46\x20\x78\x1e\x47\x1a\xbe\xed\x13\xc6\x92\xfe\x1b\x64\xa4\xf5\xcf\x24\xbf\xe0\x04\x3e\xcb\x09\xf6\xed\x52\x01\x33\x0b\x11\x78\x78\xdf\x7b\x9a\xb5\x5f\x3f\xe8\xff\xbf\x6f\x57\xd3\xc6\xb6\x29\x12\x8f\x00\xcb\x01\x2c\xfe\x5d\x66\x19\xbc\xe6\xd3\xfc\x26\x29\x64\x9d\x07\xbc\x84\xe3\xd1\xa4\x66\xc8\x8d\xca\x90\x76\xcd\x44\x45\x8d\x6a\x5c\x1b\xcc\xd4\xb8\x31\x0c\xce\x1c\x04\x7f\xa3\xb1\xb6\xc6\x2f\xa8\x7e\xfb\x45\x05\x90\x72\x79\x90\x0d\x56\xcc\x9a\xf6\xcd\x78\x01\x9d\x85\xa0\xd0\x18\x1a\xf5\x06\x45\x9a\xa4\x3d\xc5\x13\x39\xac\x68\xcd\x8b\xd2\xd5\xca\xbd\xbe\x79\x93\x0e\xff\x24\xcd\xc4\xbb\x42\xf4\x76\x93\x78\xc7\x7e\x8a\xd7\xc6\x4a\xbc\xda\x60\x6c\x70\xd6\xff\xea\x63\x81\x70\xec\x92\xac\x14\xc7\x0a\x26\x35\x05\x4f\x80\x13\x14\xab\x36\x25\xe0\x84\x49\xdb\x60\xb2\xb6\xe7\x9a\xd8\x19\xd8\x0c\xcf\xc8\xf9\x0d\x47\x7a\xf7\x28\x54\xcc\x9f\x1a\x51\x0b\xf9\xc5\xa1\x0b\x5e\x96\x33\x93\xb4\xba\x51\xe0\xab\x42\xe6\xf7\x2a\x71\xe8\x5e\x65\xe9\x4b\x5d\x19\xd3\xa1\xd4\xf9\x82\x82\xda\x51\x85\x51\x54\x8d\xfe\x4b\x23\xf4\xac\x6d\x70\x1b\x44\x9a\xe6\xb2\x48\x82\x82\xec\x59\x22\xe9\x3e\x1b\xfa\x54\xd2\x74\xba\xdc\x8e\x0e\xdd\x52\x8e\x99\xca\xad\x21\xeb\xe0\x86\x23\x14\x1b\xfe\x36\xe5\xc6\x73\xd1\x86\x9e\xa6\xb5\xff\xa0\x11\xb0\x61\x1b\xb0\x9f\x1a\x67\x34\x02\xca\xf4\xfe\x18\x8e\xbb\x28\xf2\x99\x90\x68\x3c\x85\xcd\x0b\x9b\xa4\xc2\xa3\xd8\x87\xa7\x88\x6b\x70\x1b\x62\x4d\xfd\x87\x47\x32\xaa\x74\x6d\xe6\x24\x29\xf0\xcb\x47\x38\x17\x73\x9b\x88\x0d\x94\x32\x1b\x4e\xe1\xdb\xc4\x13\x9e\xaf\x45\x45\xab\x2b\x63\xf9\x6a\xd0\x54\xae\x91\xd6\x72\xe0\x0b\x6d\x0d\xb2\xcc\x26\xad\xf5\x5d\xa1\x02\xf9\x05\x56\x18\x32\x39\x17\x70\xa0\xeb\xcd\x90\x8e\xbb\xeb\xc4\xda\xae\xa5\x62\x3c\xca\x70\x48\xa2\xca\x5f\x60\x38\xf4\x5f\xfc\x9e\x5a\x4b\xb5\xb7\x36\xa4\xfb\xb4\xb0\xa0\x37\x0d\x4f\x9a\x91\x26\xae\x57\xdc\x43\x90\xcb\x27\x72\xf2\x47\xd2\xb2\x74\x84\xba\x29\x97\x4c\x56\xc4\xb6\x80\xbb\xa4\x64\xf7\xb0\x1c\x8e\xf9\x3e\x54\x54\xde\x8a\x92\xc2\x1e\xae\x91\xee\x0a\x28\x1b\x5c\x7b\xac\xcb\x1c\xd8\xd5\xa8\x6d\x93\x62\x9a\xb2\xbe\x17\x18\xbb\xf9\x90\x3a\x5b\x51\x67\x92\x45\xf8\xe1\x0b\xcd\x2a\x6c\x5f\x3b\xca\x6c\xab\x20\x39\x76\xb1\x20\xee\x7a\x14\x42\xf7\xc4\x2c\x95\xde\x9f\x9e\xbc\xb0\x26\x63\xe4\xd0\xa7\x1a\x5b\x95\x48\x7c\xf2\xb1\xe8\xda\x6c\x2d\xca\xb5\x46\xe1\xe4\x47\x42\xab\xc7\xfd\x06\xb1\x86\x6e\x90\xd4\x63\x27\x8d\x92\xce\xd3\x24\xda\xc5\x9a\x1b\x57\xe5\x20\x05\x74\xe3\x5a\xa3\xdc\x86\x08\x7d\xce\x31\x7d\xb9\xa2\x94\xb1\x4a\x1f\x34\x42\x2f\xe9\xf6\x66\x50\xc8\xd2\x0a\x93\x76\x85\xb1\x85\xf8\x44\x0e\x55\x6c\xe9\x6d\x24\x38\x5f\x93\xfa\x9f\xa3\x48\x09\x60\xf5\x3f\x86\xeb\xe8\x15\xf9\x02\xfd\xb3\xcb\xce\x20\xd5\x7b\x9c\xb4\xf5\x96\x32\x93\xb4\x41\xda\xe4\x10\xdc\x54\x0f\xc1\x4a\x04\x0a\x10\xe4\x9f\x3e\xf2\xa2\xd4\x8f\x44\x35\x0e\x97\x5d\x05\x8b\x13\x30\x54\x3f\x5d\x53\x78\x80\x57\x76\xf1\x3b\x78\x12\x84\x3c\x3b\x5b\x6f\x75\xad\xe9\x2b\x1c\xcf\xd3\xd1\x95\x83\x0b\x44\xc4\xdd\x06\xa7\x6b\x1e\x95\x7b\x5e\x8a\x4d\x6b\xc5\xed\x1b\x14\x20\xb6\x37\x29\xe9\xa3\xb4\x15\xc0\x88\x1e\xa7\x2a\xde\xbe\x7d\xff\x65\x2d\xd4\x5f\x6f\x35\x08\x3e\x7d\xcb\x77\x2c\xe6\xa6\x95\x39\x4f\x00\xee\x87\x14\xf2\x36\xb7\x23\x57\xa7\x62\x71\x5b\x6b\xc7\xff\xa1\x54\xcf\xe4\xdb\x91\x76\xb8\xd2\xa0\x1c\xe5\x15\x0f\xc5\x4a\xa2\x8e\x8d\x6b\x04\x12\xbd\x40\xa8\xce\x0b\xf4\xac\x5d\xb3\x36\x13\x4a\xe7\x48\x8d\x50\xfe\xda\x71\x9a\xcc\x34\x03\xd3\xa9\x86\x87\x8a\xba\xa9\xc2\x80\xf7\x6d\x2a\xf2\x2f\x18\x3a\x6c\x6f\xd5\xb1\xd2\x1b\x82\x0c\x67\xa2\x3a\x5d\x0e\x03\x8a\x31\x37\x1a\x84\x16\xba\xc1\xe8\x92\x76\x3b\xb3\x79\xce\x88\xd1\x4b\x44\x0b\x75\xa9\x11\x8a\x84\x4b\x4a\x26\xae\x75\xd4\x06\xd7\x54\x83\xdd\xee\x99\x42\x18\xf8\xa6\x49\x56\x71\x53\xdc\x77\x6f\x18\xcb\x27\xd1\x7f\x40\x01\xc7\xa9\xc7\x55\xe8\xa1\x17\x51\x66\x63\x9b\xbb\xd8\x47\x09\x2e\x65\xdc\x1d\xd9\x25\xb5\x60\x98\x2c\x8e\xb4\x4b\x0f\x26\x02\x9d\x41\x7a\x5d\xb5\xa8\x4d\x6f\x10\xdc\x09\x5f\x6a\x27\xf1\xc8\xad\x61\xf4\x57\xea\x45\x2a\x5d\xd0\xee\x43\x55\xfc\x0b\x9e\x37\xce\xb4\x56\x06\xfd\x1d\x38\x0a\xc4\x21\x40\x7a\xe2\x02\x31\x44\x2a\xf1\x10\x1c\x8f\x53\x08\xc7\x1d\xd8\xbe\xfc\x4e\xd8\xb4\x5b\xc4\xc0\xdb\x8b\x62\x80\x53\x7d\x1a\xce\x37\x1d\x9f\x25\x92\x89\xc9\x16\x20\x21\x31\x92\xe8\x70\x82\x0b\x07\xe6\x02\x5f\x85\x75\x7f\xcb\xaf\xfb\x8e\x89\x12\x4d\x80\xba\x68\x41\x16\xab\x02\xad\x1b\xd4\x8d\x77\x96\x76\x41\x1c\xf5\x67\x28\x51\x0a\x43\x86\x5d\x39\xd5\x0c\x6d\x7e\x5a\x17\x56\x8f\x65\x38\x06\xcb\x9a\x68\xf9\x7e\xe5\x60\x7d\xf0\xd5\x95\xaf\x4e\xd1\xb2\xbf\x47\xc2\x00\x58\xba\x30\x1e\xa7\xc9\xaa\xb6\xad\x89\x8b\xa9\xb1\x0d\x5e\xae\x4e\xdf\xd5\x3c\x3f\xbf\xf9\x4e\x55\x25\x64\x39\x32\x05\xce\x29\xee\xb6\x72\xe9\x0d\xf2\x98\x8f\x90\xe7\xd2\x2b\x9d\x1c\x1b\xc7\x32\xc8\x30\xfe\xc7\x11\x11\x21\xd9\xfe\xc1\x58\x17\x9e\x27\xe6\x49\x07\xd9\x4c\xe8\x35\xd0\xaa\xa4\xd3\x5a\x09\xc0\xb8\x4f\xb1\x5c\xdc\xf3\xc8\xac\xa0\xdf\xe4\xfc\x44\xb0\x32\x3b\x5b\x5f\x36\x99\x43\x06\x63\xbe\xcf\x62\xee\xf4\xa6\xf1\x0c\x75\xa5\xd8\xc4\x64\x51\x0a\x44\x1e\x6a\x95\xdf\x97\x47\xd5\xeb\x89\xed\x33\x3f\x5f\x6f\xdb\x3c\xea\x24\x8a\x53\xd0\x9a\x3f\xf1\x46\x5f\xf2\x3b\x61\x39\xcd\x7a\xa5\x51\x20\x25\xb1\x21\xc3\x79\x6a\x5e\xfb\x6a\x7a\x14\x4e\xd0\x67\x9a\x15\x94\x70\x79\x37\x75\x10\x69\x2f\x64\x16\x44\xcd\xc8\x89\x32\x49\x32\x30\xf1\xee\xf2\xd0\xf6\xef\x1e\xb6\xf9\xf7\x48\x3f\xf1\x0c\x02\x19\xc4\x9f\x0f\x1a\xc4\xfc\xfc\x21\x47\xd5\x0f\xb0\x54\x71\x86\x83\xca\x0b\x61\xe5\x03\x31\x70\x6e\x4c\x9f\xf4\x48\xb2\x55\x1b\x47\xb9\x7a\x67\x98\xd7\xb3\xb4\x0b\xe0\x5d\xb9\x9c\x79\xe8\xc6\x0a\x85\xa1\xbe\xc9\x8b\x41\x86\xcc\xa3\x76\xbc\x50\x46\xfc\x8c\xff\xbb\x65\x93\x77\x3d\xdf\x3a\x0c\x06\xd6\x8c\x5e\x4f\xa4\xbf\x67\xe7\xea\x7d\x9b\xdb\xc2\xe8\x40\x62\x15\xdf\x24\xfe\xf3\x9b\x63\x71\xc5\x9b\xd9\x57\x65\x59\x20\xe6\xd1\x0c\xbe\xde\x78\x4a\x8f\x7e\x2c\xd4\x22\x53\x84\xe6\x7e\x66\xe4\x41\x41\xbf\xf2\x42\x93\xc2\xe4\xcb\xb4\x3b\x97\xb3\xb4\x93\xd7\x42\x85\xfc\x88\xbc\xa3\xe3\xc6\xae\x2a\x24\x16\xd6\x15\x7d\x5c\xa5\x9e\x98\x1b\x6f\x0c\x03\x9f\x7f\xde\x4b\xe3\x36\x8c\x35\xe3\x27\x6b\xb3\x73\x1e\x88\x3e\xd1\xea\x3f\x77\xa8\x1e\xdb\x65\x3d\x3e\xb1\x01\xbf\xcb\x8d\xfa\xdf\xf5\x11\x5f\xba\x96\xec\xa5\x77\xd2\x4e\x7a\xcf\x3e\xc1\x24\x13\xa1\xd6\xf6\xa4\x78\x8e\x80\x72\x3c\x90\x59\x47\x62\xed\x1a\x56\x1a\x96\xdd\x6d\x61\xcb\x85\x81\x54\x3c\x2d\x3c\xab\x27\x9b\x63\x74\x15\xb5\x57\xf7\x6d\xfe\xa9\xa6\x6f\x1f\xfc\xe5\x5f\x02\x2b\xc3\x98\xe4\x01\x96\xe8\xb6\x09\xe9\xa2\xf9\xf9\x7a\x2f\x6d\xdb\x2c\x21\xf5\x44\x50\x0d\xea\x35\xb5\xac\x95\x51\x9b\xd9\x45\xc0\xb2\x73\xc4\x7e\x03\xc0\x32\x2c\x2b\x48\x0c\xb1\xab\x55\xb3\x00\x39\xd7\xe3\x43\x82\x75\x00\xcd\xe6\x82\xf0\x5a\x20\x39\xa8\x42\xa8\xe5\x85\x29\x06\xc5\x78\x57\xc4\x19\xca\xd5\x9d\x99\x48\x63\x0a\x02\xbc\xb0\x59\xe6\x20\x9c\x18\xf9\x9b\x24\x7c\x7a\x93\x29\xec\xde\x1a\x58\xfb\x75\x4d\x99\x7a\x52\x5e\x7f\x58\xdc\x21\x6f\x63\xb2\x27\x6a\xff\x42\xe9\x76\x64\x91\x86\x8c\x70\x9b\xee\xb1\xc2\xd0\x3d\x3a\x13\xff\xd2\xaf\xfc\x95\xda\x18\xaf\xed\xec\x9c\xd7\x59\x0a\x2a\x6e\xed\x74\x8f\xac\x05\x3c\xcb\x3d\x76\x0d\x4f\x33\x0e\x50\x52\x31\x2e\x49\x42\x2d\x49\x97\x28\x08\x01\xf8\xd8\x85\x86\xe5\x6f\xe3\x78\x7c\xba\x19\x82\x27\x85\xbe\x79\xcd\x3c\xcf\x9d\xfd\xd6\x97\x9a\x15\x90\xbc\x4c\x70\xa2\xa1\x55\x6f\x53\x5c\x41\xbd\xe6\x70\xbf\xd5\xb5\xed\x41\x0c\x6e\x9a\x85\x4d\xd0\xfb\x68\x86\x09\x8f\x0b\xa7\xe5\x9b\x9c\xb3\xe9\xf7\x6d\x11\x15\x30\x79\x2a\xf7\x20\x9f\x73\xd2\x0f\x61\x94\x5e\xb6\x35\x49\x2d\xc2\x80\xde\x61\xfe\x88\x3b\x13\xeb\xe8\x2b\xe5\x69\x90\x0e\x42\xfd\x04\x67\xe6\x75\xbc\x39\x3c\x19\x48\x28\x38\x7c\x68\xc8\xa8\xf7\x6c\x06\x3d\x81\xc5\x4a\xc6\x5e\x67\x0d\x3a\x83\xf5\xe9\xa0\xc6\x3e\xc4\xac\x39\x40\x47\x6d\x21\x88\xa7\x94\x1f\x06\x0f\xe3\x11\xca\xcd\xf5\xda\xa0\x97\x04\x30\x03\x4a\x31\x7a\x4d\x63\xda\x4a\x93\x22\x4a\x06\xb6\x2d\xbe\x02\xec\x0e\xc8\x1c\x90\x4e\x07\xa6\xc5\x61\x76\x09\xbf\x3b\x0c\x3d\xb9\x9b\xe4\xff\xf7\x4c\x6c\xca\x60\x3c\xe0\xd0\x3f\xc2\x46\x75\x42\xb9\xa1\xc4\x7b\x6e\xec\x44\xc8\xfb\xeb\xb5\x09\x81\xd2\x45\x77\x33\x51\x12\x3b\xf4\x4a\xdd\xb4\x5a\xb6\x0f\x01\x11\x47\x17\x51\x3e\x93\x5e\x13\x58\xaf\x1d\x49\x56\xa3\x9d\x03\x59\x8e\xf5\xaa\xf5\x31\xbc\xc1\xef\x63\x8d\xc2\x88\xee\x6c\x86\x5c\xcd\x79\x22\x9f\xb9\x5c\xb1\x08\xda\xb6\xe0\x56\xda\x2a\xff\x61\xab\xde\x93\xd6\xc9\x31\x1e\xef\x93\x73\xf3\xfe\xf0\x05\xa2\xb6\x94\x1c\xe1\x20\x92\x36\x7e\x49\x72\x2b\xf7\x0b\x12\xe3\x8e\x08\x86\x5a\xfe\x63\x6b\x12\x9b\xd5\xb8\x32\x4a\xbc\xfd\x17\xa9\x79\xae\x93\xa5\x2d\xb4\x9a\xd6\x88\x50\x31\x80\xbe\xcf\x51\x93\xf7\x92\xc9\x73\xb4\xb1\x78\x40\x7e\xf9\x03\x80\x62\x7c\x84\xd5\x8e\x7f\x39\x46\x7c\x52\xb7\x58\xcc\xfc\x34\x45\x73\x83\xd8\x09\x12\x78\x08\x13\xb0\x1d\x4e\xeb\x49\xe6\x01\x93\x72\xcc\xbb\x23\xc5\x7a\x3f\x6a\x99\x78\x3a\xc4\x5e\x4a\x8b\xed\x60\x72\x35\xaf\x99\xb5\xb7\x49\x1d\x83\xa7\xab\xd8\xa9\x4c\x9c\x26\x56\xb2\xd6\x88\x51\xce\x8d\x75\x53\x85\xa0\xf0\x5b\x15\x44\xd3\x22\x20\x84\xc6\x6e\x42\x0c\x7b\xf8\xf0\x84\x7e\x90\xe2\xce\x85\x26\xc0\x4b\x3c\xc2\x85\xff\x06\x1d\xe1\x9f\x11\x18\xf0\xe3\x8a\x67\x5e\xa8\xc7\xd1\x8a\x9d\x2a\x0d\x86\xc7\xc1\x6e\x31\xc8\x58\x6d\xf7\x1b\xac\x26\x14\xe5\xb6\x3d\x5d\xbe\x10\x97\xed\x90\x5d\x38\x4b\x92\x82\x67\x19\xa0\xc7\x9d\x3f\x7f\xed\xaf\xfe\x27\x53\xe5\x81\x02\x37\xe8\x21\x91\x78\x29\x69\xa3\xe3\x10\xa9\x88\xb3\xa3\x44\x88\xe1\xfc\x4b\x23\x92\xdd\x26\x5b\x8b\x79\x09\xf1\x0e\xf7\x2b\x5a\x83\xeb\x79\x1a\x47\xed\x78\x7d\xaa\x7c\x03\xd4\xee\xa9\x5f\xe8\xce\x45\xd6\x1f\x39\x59\x45\x73\xde\xb6\x2d\x9b\x88\x00\xe3\xd7\x6d\x7b\x2a\x54\x49\xd4\x46\x63\x20\x1e\x12\xd4\xf8\xe4\x90\x39\xad\xa2\xc4\xec\x0e\xe9\x89\xb3\x58\xd1\x8e\x29\x54\xbe\xc1\x27\xad\x48\x09\x60\x18\x3a\xeb\xd0\x05\x84\x08\xf7\x46\x23\xa4\x9d\x37\xb8\xd8\xef\x48\x4f\xb0\xfe\x6f\x12\x6f\x42\x57\x51\x0c\x07\x03\x87\x00\x31\xa2\x4f\xc8\x77\x2d\xd6\x57\xa3\x3c\x72\xb0\x70\x87\xd6\x0f\xd9\xda\x4b\xa4\xa8\x20\x7c\x8f\x6b\x69\xb6\xe2\x9c\x6b\xec\xa3\xeb\x78\x47\x80\x4a\x3e\x90\x37\x81\xf7\xf8\x08\xb5\xb0\xae\xcd\xb0\x91\xbd\x2c\xc9\xd7\x7e\xd3\x03\xaf\xca\xf7\x55\x5d\x34\x5a\x52\xfb\x5f\x3e\x88\x77\xc2\x7a\xd0\x7c\x93\xde\x4c\xf8\x5d\xe0\xd4\x31\x59\x54\x68\xcb\xbd\x6f\xdc\x08\x4d\x1c\x95\x80\xc3\xd2\xa1\x08\x65\x80\x7b\xd4\x6a\x73\x6f\xf8\x6c\x88\xe7\xe2\xc8\x26\xbe\x60\xf7\xba\x9a\xff\x5b\x88\x94\xf5\x86\x7c\xad\x56\x8a\x56\x26\x24\xdb\xae\x12\x2b\xc6\x55\x1f\x75\xb7\xd2\xb5\x7c\x2a\x10\xc8\x6a\x16\x0e\xcd\xb0\xf7\x81\xb9\x71\xe2\x4c\x4f\x13\x75\x45\xc7\x7c\x3d\x4a\xac\x50\x17\x00\x4a\xaa\xfe\x8c\xde\xc8\x42\x42\xd5\xe5\x31\x18\x3e\x54\xe9\x9f\x92\x84\x9f\x93\xda\x25\xda\xe6\xbf\x3b\x51\x75\x51\xdd\x8b\x2c\x5d\x75\x73\x8e\x87\xba\x4e\x74\xc7\x9b\x98\x7f\x74\x8b\x9f\xf0\xa5\xa4\x41\xd6\xb1\xa0\x64\x3e\xb0\xcf\xb7\xb9\xcb\x53\xb8\x86\x00\x3e\xc7\xdb\x5f\xc7\x9a\x80\xab\x71\x97\x0c\xaa\x0a\x60\xbb\x58\x75\xb2\xb3\x61\xb1\xde\x89\x56\x6d\xd1\x65\x2d\x2c\x4d\xe6\xe2\x60\xfa\x05\x21\x85\xee\x53\xc0\xd7\x1b\x24\x51\x5e\x23\xe4\xd0\x71\x64\xca\xf5\x86\xe2\xb7\x24\x6a\x99\xcc\x74\x06\x26\x81\xc3\xe9\xcc\x47\xcd\x0b\x83\x9d\x9c\x40\xec\xcd\x1d\xaa\x2f\x45\x31\xf0\x0b\xf0\x1d\x66\x9a\x94\x54\x9e\x19\x85\x25\xb2\xde\xcf\xc5\x65\xf3\xf4\xe6\xe5\xb3\x63\xc2\x9f\xc0\xc1\x04\x6b\x72\x94\xf0\xa3\x53\xa3\xb0\x12\xbe\x6e\xe2\xc1\x52\xd4\xb2\x58\x8f\x9a\x5e\x6e\x04\x71\xb1\x13\x3e\xff\xd1\xea\xa6\xfd\x3e\xd6\xa3\xe7\xbd\x3b\xb0\xcf\x83\x75\x1e\x55\x2d\xc9\xa3\xde\x20\x36\x85\xda\x43\x14\x10\x35\x99\x0d\xbf\x49\x35\xf2\x35\x49\x38\xc1\x67\x31\x3b\x5b\x6f\x67\xeb\x33\x94\x6d\x1c\x86\x64\xe1\xc9\x21\xc7\xc1\x04\x3f\x02\x5b\x04\x92\xc5\x7b\x9a\x4f\x12\x76\x70\xb5\x74\x87\x88\x76\xa7\x18\x86\x4a\x64\x41\x70\xec\xc4\xac\x2a\x82\xb1\x12\xad\x12\xfc\xfd\x25\xd3\x5a\x89\xcb\xf0\x9f\xa8\xd8\x37\x98\x8a\x7d\xc3\x3b\x64\xad\xae\x65\x2a\x6d\x47\x13\x28\x7f\xab\x37\x4c\x93\x9a\xa4\xa2\xb3\x86\x50\x18\xa0\x65\x38\x3e\x5f\xc2\xf8\xa9\x7e\xc9\x70\xb2\x47\x4b\xe9\x44\x64\x82\xdc\xc7\x65\x7d\xfa\xef\x9a\x75\xf8\xfd\x45\x19\x29\x94\x87\xae\x55\xc8\x9f\xcc\xd5\xad\xe9\x38\x8a\x0d\xd7\x1f\x17\xce\xd4\x8b\x13\xe5\x99\x72\x57\xe5\xb6\x35\xc8\xa2\x22\xf2\x5c\xd4\x80\x25\xed\x6a\x12\x07\xc4\x7d\x3c\xaa\x23\x64\x0b\x94\xe3\x9e\x06\x22\x4d\xb0\xb6\x3d\x25\x5e\x39\x6b\x98\x00\x08\xd4\xeb\x35\x13\xf4\x5f\xa2\xba\x77\xe9\x85\xe7\x51\x9a\xec\x96\x1f\x02\x94\xa4\x26\x06\x0c\x6e\x84\x03\xb9\xe3\xf0\xfc\xa9\x98\x57\x0c\xca\x11\x78\x85\x5e\x09\xde\xb7\x09\x9e\xc0\x22\xc3\x62\xbd\xc2\x4a\x79\x9b\x2c\x52\x70\xc1\x17\xfc\x85\x36\x42\x9a\x0d\x25\x16\x70\x00\xc8\x7b\x48\xa7\x92\x22\x84\x93\xf1\x44\x88\x8f\xb8\xfd\x21\x86\xc8\xa5\xb9\xb7\xe8\xa3\x2c\x1e\x58\x2c\x8d\xec\x33\xf2\xf6\x4e\xbf\x4a\xbe\x16\x1f\xb8\x32\xa4\xfa\xb0\xd2\x97\x3b\x8c\x70\x40\x36\x82\xce\x4c\x19\xa5\x85\x91\xcc\xd1\x1e\x05\x5e\x23\x3c\x13\x76\xfa\x65\x29\x53\x3a\x36\x0e\x3a\xb8\x2e\x30\xb7\xf4\x79\x98\x43\x47\x18\x49\xfd\x07\x27\xe5\x94\xc7\x3a\xfe\x82\x58\xd2\x18\x98\xf6\x6d\x71\x30\x1d\x17\xd4\x5e\xee\xd2\xd3\xea\x1d\x52\x91\xdb\x48\x15\x4f\x92\xf0\x0b\x9b\x1f\x3f\xd2\x10\x15\x36\x96\x5a\xb3\xab\xf9\x62\xfd\x7e\x81\x21\xd6\x9b\x2a\x90\x6d\x6e\x57\x6d\x52\x74\xa7\x6a\x8f\x52\x2e\xae\x91\xbc\xf1\x56\x4f\x7a\xee\x50\x3d\x5f\xb3\x16\x39\x1c\xbc\x34\x38\x72\xf4\x9a\x74\x62\x0c\x94\x79\xa9\xf1\xbd\x41\x93\x19\x56\xd4\xaa\x81\xb6\xb0\x77\x74\x3d\xa1\xab\x0f\x2a\x00\xd0\x50\xba\x29\x3e\xf6\xcb\x78\x30\x4a\x34\x4f\x44\x65\x7e\x47\x6b\xf8\x39\x91\x64\x7f\x51\x21\x46\x7d\xb0\xbe\x3c\xc8\x4a\x2f\x6c\x46\xe6\xda\x11\xd8\x04\xc8\x2f\xc4\xe9\x42\xf6\xae\x5c\x04\x38\x56\x77\xc8\x5c\x39\x82\xc7\xad\xe3\xfc\xc6\x1b\xf5\x96\x19\x88\xe2\x66\x8d\x34\xe1\x65\x9c\x9d\x28\x7c\x55\x2d\x48\xe8\x91\x6a\xc1\xe7\xfc\xa8\x11\xd0\xfe\x1f\x79\x7f\xa2\x6d\x97\xa3\x56\x54\xa8\x42\x08\x12\x17\xf7\x65\x1d\x62\xe9\x6a\x45\x01\x9b\xee\x71\xc9\x45\x38\xe7\x9a\x80\xfa\xa6\x88\xf2\x65\xc8\x44\x70\x3b\xad\x13\xe4\x0a\x81\x71\xd7\x9a\xb8\xe8\xae\xef\x0e\xf2\xd0\x88\xcf\x7d\x0a\xbf\x1c\x15\xfc\xd8\xb5\x06\xe7\xad\x48\xdd\xf8\x22\x76\x13\xf6\xd9\xa7\x43\x46\x2f\xc9\x4b\xb8\xef\x1d\x03\x6c\x84\x9d\xd2\xcf\xa2\x9e\xdd\x19\x38\x22\xae\x13\x5d\xaa\x76\x66\xb8\xd4\x94\x3c\x80\xcb\x4d\x95\x8f\xec\x4c\x58\xb9\x07\x09\xa9\xe2\x2c\xe8\xe5\x89\x4d\x52\x2e\xf2\x58\x5a\xb2\xb0\xb0\x70\x4e\xdf\x24\x19\xdd\x4f\x29\x09\xf3\xa0\xa2\xc3\x74\xb1\xde\x8a\xb2\x56\x6c\xa9\x3e\xae\x1a\x2a\x8e\x4c\xed\x51\x30\xc8\xd6\x20\x6b\x87\x6c\x08\xc2\x4b\xa5\x41\xd2\x1b\x22\x51\x58\x89\xda\x6d\x8b\x1a\x95\x6f\x76\xa4\x42\xb1\x7c\x05\xac\xdf\x7b\xb0\x9d\xae\xbb\xc1\xa7\xa7\xff\xaf\x0b\xc3\xe7\xb9\x41\xc2\x26\xed\x48\x08\x13\x6b\xa1\x75\xe4\x17\x32\x72\x7a\xdd\x78\x9c\x3c\xd5\x5f\xda\xc9\x5d\x1e\x44\x85\x76\x9a\x38\xfc\x1e\x6b\xd2\x8c\x9c\x26\x88\x04\x53\x36\x4f\x8f\x4a\xeb\x0c\xab\xfd\x2f\xab\x04\x66\xe2\x28\x29\x63\xad\xda\x8b\x2f\x06\x69\xd9\xd0\x30\x72\x93\xc2\xff\x23\x13\x48\x87\xb9\x43\x75\x9b\xb4\xd2\x41\x66\x3a\x7e\x4e\x5d\xf2\x21\xb0\x15\x20\x1c\x51\xda\xf6\x31\x1e\xba\x62\x6f\x68\x47\x81\xb2\x98\x9e\x97\x72\x74\x38\xf1\x47\x31\x14\xb0\x07\x3b\x9a\x94\xe6\xd7\xe5\x09\xeb\x8a\x64\x20\x52\x10\x8f\x01\xa9\xef\xb8\x61\x64\x8e\xe1\x01\x7c\x87\xa9\xcb\x77\x09\xb5\xb4\xca\x7f\x81\xb3\xd5\xb5\x05\x95\xa7\x1e\x16\x31\xd0\x9a\xae\xe4\xea\x10\x95\x87\xe3\xbf\xf1\x17\xdb\xa6\x30\xad\xb4\xd7\x9f\xa2\x90\x19\x4b\xd9\x69\xc3\x04\xee\xa5\x53\xec\x1c\xa7\xb9\x9d\x96\x27\x47\xd9\xe7\xbc\xec\x59\x72\x07\x5d\x6d\x08\xfd\x0a\xce\x35\x0c\x8b\x73\xd9\x44\xb1\x6d\xcf\x84\x94\x07\x64\x42\x91\x5b\xdf\x09\x6e\x40\x6c\xf4\x63\x82\xe2\xd1\x9d\x45\xad\x79\xb5\x51\xf0\x7d\xd2\x41\x91\x47\x6d\xab\x14\x6a\xf0\xb8\x80\x70\xd3\x6b\xda\x16\x46\xc8\x5b\xa7\x1f\x49\x88\x16\x6a\x23\x3f\x11\xc4\x91\x5e\x3f\x92\x04\xaa\x13\xc5\xb1\x2d\x0a\x5b\x0b\x28\x72\x6d\xc9\x72\x20\xa6\x00\x89\x2a\x80\xe6\xf7\xdb\xe2\x16\xd6\x85\xde\x90\x5a\xe8\x1f\xc3\x06\xe9\x0d\xd5\x3e\xda\x83\xe5\x65\x9b\x21\x06\xc6\x1e\xbd\x83\xe1\x86\xe9\x38\x3e\x1c\x93\xe8\x76\x88\x80\xd8\x2c\xa5\xd9\x0e\xe6\x46\x11\x6b\xbe\xb9\xb7\x49\xe2\x20\xd8\x7d\xae\xe0\x23\x6b\x0c\x0d\x91\xfa\x3a\xc8\x55\xfc\x21\x05\x03\x79\x61\x4d\x3b\x2a\xfd\xfb\xb9\x43\x9e\x89\x30\x54\xc8\x7e\xe1\x2b\x8d\xab\x51\x52\x98\x8e\x25\xb9\x89\x7f\x40\x90\xc8\x7f\x50\xa9\x43\x9a\x17\x0e\xe8\xe2\xa1\x89\x94\x97\x78\xbb\x0a\x1c\x62\x0f\x17\x36\x69\x2b\xf4\x01\xa3\x83\xb6\x18\x4f\x23\xe4\x93\x75\xbf\x5f\xf9\x79\x93\x47\x36\x2f\xa6\x42\x1b\xf1\x59\x6c\x29\xac\x22\x6c\x0c\x57\x4d\xae\xe0\x6b\x15\xdd\x3f\x17\x04\xc0\xfe\x2b\xa7\x04\xbc\xc9\x9f\x73\x36\x73\xcf\x68\xab\xfb\xb4\x7f\xa1\xbe\x1c\x1d\xb6\xed\xe9\xe0\xcf\xa8\x4c\x01\x65\x6f\x17\x34\xaa\xfc\x90\xf8\x24\xcf\x55\x11\x5b\xb5\xa3\xbc\x95\xd9\x02\x83\x8e\x9d\x7d\x9e\xa4\x93\xce\x0f\x1f\xf3\x8b\xea\xeb\xb5\xd2\x72\xa2\x3e\x72\x0b\xbc\x23\x7a\xc3\xa1\xbd\x72\x33\x6a\x38\x07\x8b\x7f\x8e\xac\xff\xb9\x0a\xd2\xb9\x97\xea\x79\xcb\xc4\xfd\x9c\x95\x72\x36\x00\xf1\x43\x88\xd1\xa5\xfa\xfa\xa4\xde\xad\xa4\x93\x63\xdb\x71\x39\x15\xa7\xe9\x1e\xfa\xe4\xb1\x5f\x09\x97\xe7\xeb\x52\x59\x14\x3f\x56\xfe\x9b\xd7\x5e\xf4\x2a\xc4\x67\x29\xe8\x38\x3b\xa4\xfe\x94\xdd\x4d\xa2\xe3\xdf\x20\x01\xf4\x0d\x16\x68\xd8\xc0\xd1\x09\x33\xfd\x3d\x6c\x38\xbc\xc0\xf6\x11\x21\x91\xaa\x78\xae\x5a\x5d\x93\xb4\x5c\x65\x14\x07\xf1\x71\xe2\xfb\x3b\x4e\x0e\x58\xcb\x64\xed\x68\x79\xb9\x46\x2c\x6a\xba\x0f\x9d\x9e\x19\x61\x6f\xd3\x55\x9b\x95\xfb\x4b\xd0\x59\xb0\xa1\x5f\xc8\xcc\xe8\x75\x63\x6b\x9e\xe1\xd0\x2b\x75\x9b\xb4\xc5\xbb\xc3\x39\x72\x9d\x98\x26\xae\x13\x24\xbe\x95\x26\x45\x66\x5a\x45\xfe\x18\x45\x6d\x4a\x43\x8c\xc4\x2d\xc2\x1a\xa7\x68\x4d\xed\xd2\xc7\x59\x2f\x17\xbd\x4e\xc8\xb1\x1d\x19\x52\x3a\xf0\x5f\x34\x42\x61\x4c\x35\xaf\x11\xe2\x9c\x80\x5d\x43\x81\xea\xf7\xbd\x77\x1b\xf5\xca\x73\xda\xf5\x15\xf9\x16\xe9\xf2\x67\x5d\x8f\xf3\x04\x42\x40\xd8\x16\x0f\x17\xa2\xbb\xe4\x9b\x0d\x3d\xfc\xeb\x02\x05\xd1\x5d\xdb\xb1\xbd\x34\x59\xc7\x79\x08\xbb\x78\xa7\xc1\x10\xf8\xb3\xc4\x44\xbd\x31\x91\x51\xfd\x4a\x3d\xb3\x26\x4f\x13\xb3\x14\x83\x4a\x1e\x58\xcb\x23\x44\xe7\x79\xc4\x33\x3b\xf4\xd3\xd8\xa7\x0c\x3c\x91\x77\xc8\x6e\x7c\xc6\x4c\x51\x3f\xf3\xb4\xc8\x20\xac\x4b\x5a\x96\xeb\xeb\xe8\x04\xd3\xeb\x09\x0f\x69\x7e\xbe\xbe\x1c\xaf\x3b\x50\x05\xec\xe2\xb1\x21\x69\xac\x1c\x9b\xa8\xac\xcc\xcf\xd7\xf3\x56\x16\xf5\x8b\xb5\x2c\x2a\x14\x77\xca\x69\x77\xc7\xa4\x1e\x9a\x8b\x4c\x3b\xcd\xbc\x70\xb4\xa3\xd7\x0d\x0e\x94\x4a\x7c\xbb\x56\xea\xc0\x65\xdb\xb2\xa9\x80\xe3\x10\x93\x1d\x95\x5d\xa7\x9e\x28\xd0\x86\xf0\x0f\x6e\x4d\x4c\xeb\xdc\xa1\x7a\x36\x58\x8a\x51\x6b\x82\xeb\xfe\xd8\x28\x24\x1a\xef\x08\x03\x36\x7c\x85\x7b\x84\x9b\x6a\x9b\x6c\x2d\x4a\x22\x65\x71\x46\x06\x18\x61\xad\x92\xdd\x0f\x09\x6b\xf6\xd3\xad\xd8\xd3\xc5\xb9\x43\xf5\xfd\x0b\xd3\x4c\x26\x5f\x3e\x30\x0f\x8d\x83\xd9\x84\xfe\x83\x2a\x15\x97\xd7\xeb\x9d\x34\xd6\x55\x8c\xd3\x01\xe5\x44\xbd\x6e\xb8\x2c\xda\x9b\x36\xed\x97\xa6\xe0\xeb\x58\x4f\x0a\x1d\x93\x1f\x72\x30\x32\x9f\x48\x4e\xa2\x55\x9b\x39\xa4\xb6\xf6\x98\x12\x98\x15\x9d\xf1\x4e\xa2\xec\x71\x8f\xa0\x1f\x24\xed\x1d\xe4\x93\x50\xf0\xa4\x50\x7a\xf8\x82\x57\x19\x67\xa5\x1e\xad\x13\x26\x25\x65\x9d\xef\x4f\xbc\xec\xaf\xd6\x6d\x04\x0d\xdd\xd9\x59\xfd\x91\x93\x92\x87\xd1\x6b\x62\xe7\x6a\xa5\xb1\xf6\x60\xe3\x64\xbb\xd4\xa0\x0a\x28\x07\xfa\x93\xbf\xb2\x78\x60\xb1\xbe\x1a\xa1\xa7\x78\xb1\x1a\xaf\x1f\x8e\x07\x01\xd1\x4e\xc9\x5f\x3a\xd2\x07\x2a\x05\xfd\x80\x94\xb2\x4f\x32\x45\x5b\x3f\xcd\x8a\x75\xa0\xb6\x94\x24\xa7\xc1\x84\x39\x15\x7a\x7c\x2d\x9b\xe4\xd2\xc0\x5e\x0e\x30\xb5\x70\x86\xcd\xfa\x34\xf7\x53\x9b\xd2\x83\xd8\x11\xb0\x44\xe7\x1b\x44\x5b\xf7\x49\x83\xc2\xb4\x4f\x88\xac\xed\x3c\x73\x0c\x1c\x1d\x12\x15\xfe\x51\xb6\x6d\xa6\xdf\xb7\x89\x6d\xef\x0c\x7d\x90\xf7\x04\x79\xef\xd2\xc1\xb2\xdb\x9c\x8e\x5f\xf8\xf6\xbb\xb2\xc2\x31\x05\xd7\x1b\x94\x40\xda\x18\x12\x0a\xf9\xdc\x04\x57\x6d\xb9\x3f\x2d\x34\xd1\x7d\x55\xde\x61\x22\x09\x1f\x49\xc1\x54\x3f\x5f\x9f\xae\xf9\x96\xba\xff\x7b\x48\x9c\xa8\xc0\xe1\xc1\xaf\xbc\x47\xdd\xa7\xe7\xa8\xa6\xd8\x35\x51\xb6\x8e\x33\xd0\x59\x76\xb6\xf8\x2e\x7a\xc9\x4c\xcb\x87\xd0\xae\x8e\x5d\xf3\x7d\xbd\xa7\xab\x1a\x3a\x5b\x69\xb2\x3c\x08\xc5\x56\x64\xda\x7f\x46\x5d\x96\x0f\xe5\x8d\x54\x8f\xca\x67\xc0\xdb\x51\xbf\x5b\x2e\xfc\xc8\xd4\x88\xc3\x03\xb6\xda\xe9\xf1\x3f\xbf\x55\x2a\xe4\xa5\xfa\xab\xfb\x16\x9e\x08\xa5\xcd\xf7\xd1\x66\x08\xdf\xe9\x2e\xd2\x29\xb0\x5a\x47\x90\x35\x81\xf3\xf3\xb6\x38\xb7\xbe\x17\x7c\xbf\x6b\xc2\xfb\x03\xd9\x69\xb0\xc1\x3f\x1f\x52\x37\xc6\xfb\x15\xd4\x26\x01\x93\x42\x60\xb6\xe0\x73\xa0\x94\x8f\x60\x6e\x2f\xd5\x19\x96\x4c\x92\x94\xc1\xdc\xec\xac\xa2\x21\x7e\x2e\x4b\x46\x79\x75\xc0\x05\x0d\x17\x1a\x39\x4c\x2f\xba\x1e\xda\x8e\x26\x2b\xae\xaf\xee\xab\xb7\x6d\x2b\x6a\x8b\xdd\xdb\x14\x8b\xb7\x79\xde\x5b\x2d\x9b\x65\x69\x86\x0c\x17\x1c\x0c\x34\xe8\x3a\x49\xa4\x9a\xef\x8b\xbe\x4f\x0d\xf3\x1b\x04\x5a\xc9\xfb\xe9\x8a\xcd\x7b\x26\xd9\x29\xa0\x24\x9c\x19\x57\xa8\xa7\xe2\xce\x30\x50\x7c\x5e\xe2\x1e\x93\xa3\x9a\x48\x47\x3e\xf0\x7f\x6c\x08\x7a\x44\x29\xac\x80\x1e\x71\x7c\x56\x5b\x57\xd2\x8b\x2f\xd6\x41\xfa\xe6\x8e\x62\x25\xed\xc1\xb4\x38\x06\x1f\xdf\xb0\x14\x47\xed\xe9\xd0\xf6\x75\x9d\x9d\x9c\xc7\xe1\xa9\x3a\xa8\x4d\x40\x78\xdc\xa4\x04\x68\x37\xca\xfb\x26\x89\x5a\x08\xd4\xb1\x38\x7f\x07\x4e\x05\x7c\xd4\xe3\x98\x75\xfd\x97\x46\xc8\xef\x1d\x6f\x3c\x17\xf2\x3e\x71\xd4\x8b\x50\xc6\xdd\x41\x90\x0a\xcc\xaa\xd2\x95\x0c\x03\x68\xef\xb3\x46\x40\xba\xdf\x90\x21\x44\xde\x01\x34\xcc\x4e\x8a\xa0\x02\x9a\x6c\x93\x8e\xe9\x38\xec\x33\x32\xbb\xda\x04\xae\x37\x3e\x27\x9c\xd9\xbc\x9f\x26\x79\xb4\xa4\xa1\x48\x55\x70\x13\xcc\x9e\xa8\xc9\xc6\xa5\x63\x12\x18\x0c\xef\xa9\x4b\x07\x58\xa6\x26\x44\x5d\x1f\xe0\x0b\x0c\xde\x12\x90\x84\x44\x3e\x38\xaa\x75\xbb\x8c\x31\x69\x54\xb5\xcd\x27\x45\x24\x55\x9d\x55\xb8\x27\x2e\xc0\x91\x67\x70\x8c\xa4\x35\xdf\xcd\x79\xd5\x47\xca\x6f\x9a\x2c\x2b\xed\x4c\x68\x22\xba\x81\xd5\x81\xc3\xfe\x0c\x55\xfa\x58\x94\x72\x39\xb2\x19\x68\x8f\xe1\xf0\x68\x0e\x53\x6f\x08\x63\xbd\x94\x0e\x3a\xdd\xe2\xb1\x90\xde\x57\xfe\x37\xc7\xb0\x2c\x1f\x43\x3c\x57\x93\x19\x43\x53\xee\x3b\x54\x13\xf9\x63\xb8\x65\x78\xa5\x93\x98\x22\x37\xaf\x2c\x74\x7c\x81\x09\xfa\x10\x28\xea\x67\x28\x9f\x61\x96\x97\x4d\x94\xe5\x3b\x48\x0f\xfa\x24\x9e\x48\xb9\xd3\xf1\xfd\x1e\x7f\xb9\x10\x24\x30\xc8\x35\x39\x86\x93\x51\x6f\x88\xa7\x47\xc0\x29\xf0\x08\x50\x00\x82\x3a\x8e\x5e\x33\xa6\x39\x8d\x57\xf2\x69\xae\xf4\x8d\x7d\x63\x8d\xe9\x32\xf9\x77\xdd\x4f\xe5\xc5\xa0\x6d\x93\x62\x8a\x4a\x58\x00\x11\xa2\x6c\x09\xcc\x2f\xe2\xc7\x67\x47\x93\x3d\x5e\xaf\x97\xe1\x98\x10\xc0\xaa\xab\x30\x96\xc6\xd4\x1b\xf2\x44\xe2\xa8\x10\xaf\xdc\x93\xff\x6f\x1b\x05\x74\xd8\xb6\x66\x68\x02\x1a\x98\x78\x86\x08\x7b\x46\xb2\x70\x81\x2b\x38\x0e\x10\xbd\x67\x15\xf7\x5e\x81\xf2\xe8\xb9\xa4\xc3\xa4\xb4\xf6\x62\x3d\x8a\xb4\xae\xe4\x20\xbd\x44\x7a\x7e\x86\x9e\x73\x35\x2d\xed\xc6\xee\x00\x86\xda\xd6\xe4\x7c\x65\xe0\x1e\xd8\xe0\x36\xa3\x23\x43\x6a\x46\x3a\xd2\xa0\xdc\xa9\x1a\x62\xe7\x02\xe1\x19\x9c\x77\x14\xb2\x43\xd7\xaa\x78\xd7\x33\xdb\x23\x2d\x04\xd2\x1a\x71\x02\xeb\x17\xab\x34\x5f\xfa\x59\x5a\xd8\x28\xc9\x59\x3c\xf2\x0c\x67\x60\xcf\x50\x1b\xd7\xf2\xe0\xcd\xa8\x16\x72\x00\xef\xb3\xb1\x7d\x9f\x5c\xb1\xc2\x26\x6d\x9b\xb4\xd6\xe1\x4e\x38\x56\xf5\x9a\x27\x8b\xbe\x37\x26\xe1\xf1\xa8\xde\xbc\xcc\x94\xce\xc5\x0e\x39\xbf\xe0\xe4\x9c\xa4\xbe\xcc\x67\x9a\xd4\xe7\x73\x0b\xae\x82\xa3\x07\x11\x27\xc2\xc7\x2f\x9e\x1f\xe1\x02\xab\x72\x0a\x48\x3a\x9b\x19\xe7\x07\xf6\xf5\x32\x94\x89\x5d\x04\x22\x5f\x0e\xfb\x7f\x5b\xe2\x1e\x17\xa6\x54\x31\x65\xf6\xfa\xa6\x85\xe6\x1e\xd8\x16\xa4\xe7\x11\x56\x7c\xc1\xc4\xe7\x17\x29\x5f\xdc\x82\x0a\x6a\xb0\x70\xf0\x24\xf4\x7a\x02\x2b\x5f\xae\x51\x91\xea\x91\xd9\x50\x18\x6d\x83\x1c\x77\xae\x45\x26\x36\x5b\xb5\xb9\xca\xdb\xba\x02\x57\xe9\x02\x61\x6b\xdc\x1e\x8e\x15\xc1\xf6\xbb\x1c\xed\x6d\xdf\x38\xd2\xcf\xd2\x4e\x19\x50\x48\xad\x85\xc0\x48\x8e\x43\xe2\x13\xf2\x2f\xd1\x44\x82\xa5\x33\x2d\xad\x05\x98\xba\x2b\xde\x3f\x2d\x32\xd3\x89\x5a\xb5\x90\x93\x7e\x20\x2b\x5b\xaf\xfd\x9f\xb5\x6d\xcf\x01\x81\x91\x0a\xbb\x47\xd5\xc0\x4b\x24\x9b\x73\x86\x86\xd1\x26\x41\xf3\xd9\xa9\xdc\x95\xdf\x00\x88\x00\x9a\x04\xb0\xed\xfe\x29\x95\xf8\xb4\x6b\x08\x9a\xd9\x38\xbd\xce\x10\xfb\xf5\xb7\x86\x01\x39\xf7\x2d\x39\xfe\xf5\x6f\x28\x3b\x50\x64\x66\xa9\x8c\x77\xcb\xbf\xf4\x11\x64\xc8\x2a\x5f\xf4\x49\x91\x56\x77\x90\x25\x72\xac\x7b\x1e\x9e\x72\x20\x1d\x3d\xf1\xb3\xde\xde\x5a\x1b\x0b\xc4\x2e\x73\x2d\x96\x88\xb5\x55\x87\x57\x6f\x26\xea\xe3\xaf\xee\x5b\x00\x3c\x4f\xd8\x89\x9c\x1f\x86\x18\x10\x75\x3b\xbd\xf6\x9e\x66\x91\xae\xd9\x98\x15\x7c\xdf\x95\xd7\x55\x69\xd0\x46\xb0\xeb\xc7\x28\x92\xc9\x92\xb4\x16\x10\x40\x1b\xbc\xaa\x37\xaa\x9c\x9f\x35\x1b\xfb\x87\xc1\xb6\xbf\x80\x2c\xa3\xde\x70\x94\x93\x2e\xa5\x9a\x16\x77\xd0\x63\x62\xd8\xbe\xe8\xe1\xed\xb1\xe9\xcc\x84\x3e\x24\x28\x9d\x7a\xf0\x40\x48\x43\xdf\x18\x12\x36\x43\xbb\xd8\x5c\x05\x29\xfc\xe8\xb2\x5d\x83\xe8\xee\x4b\xfe\x70\x0f\xdd\x58\xe8\x24\x76\x32\xd2\x5b\xb7\xe2\xec\x6c\xbd\x6b\xb2\xb6\xcd\x24\xad\xee\xdb\xb4\x4b\x8b\x81\x47\x7e\x0f\x79\x42\x14\xaa\x2f\xfb\x85\x10\x65\x4e\x45\x00\xfe\xdf\x6f\xe3\xa9\xf5\x66\x22\x4a\x9b\x3b\x54\xef\x9b\xd6\x8a\x14\xf1\x10\xdb\x21\x51\x70\x55\x1e\x54\xaf\x09\xa4\xdd\x2e\x1d\x21\x5b\x86\xf3\x21\x56\xb8\xce\x16\xe2\xba\x77\x23\x06\x49\x2b\x16\xa1\xdb\x05\x4a\xd5\x78\x60\xd8\xe4\xa9\x71\x60\x5f\x69\x11\x56\xa3\xb6\xcd\xa6\x03\xa1\xd4\x3d\x0c\x34\x86\x0c\x42\xe3\x88\xca\x66\xc4\x22\x38\x88\xec\x04\x1b\xba\xd0\xbc\xaf\xda\xac\x6b\x0d\x50\x65\x2e\x20\x96\xa9\xc2\xc9\x05\x41\x6c\xc4\x2d\xd7\x26\xda\x72\xf7\x2f\x94\x6e\x56\x14\x47\xc6\xeb\x89\x3b\x0a\x9a\x00\xec\xfe\xc5\x58\xa6\x20\x69\xc7\x4e\x46\xde\xd9\xe2\xf2\x17\xf4\x9a\x00\xa7\x71\xab\x8b\xbd\x01\x1b\x74\x92\x51\xc3\x3f\x21\x2e\x98\xd0\x75\x66\x7b\xa9\x47\x3e\xe0\x98\xf8\x0e\x65\xb3\xbe\x43\x36\xc3\x1e\x36\x2d\xc1\x45\xbe\xea\x90\x05\x2a\xe1\xaa\x37\xf4\x18\x73\xbf\x3e\xcf\x58\x3d\x2c\x15\x07\xdc\xdb\x92\xc2\x9b\x9f\x3f\x50\x7f\x75\xdf\x6e\x8e\xf4\xe4\xa1\x01\x2a\x84\x80\x34\x42\xae\x9b\xc3\x49\xc1\x53\xfc\xf6\x7b\xc3\x00\x43\xbc\x29\xe1\x32\xca\x19\x50\xab\x42\x01\xf8\xb1\x66\x60\xa8\xbc\x48\xa3\x9b\xa7\x3d\x5b\x44\x3d\x94\xff\x61\xa7\xc0\xf2\xa4\xd7\xa3\x2d\x64\xa2\x73\x87\xea\x5f\x55\x22\x0f\xdf\xf5\x1b\xb2\xc9\x32\xc6\x4a\x6d\xc8\x18\xb3\xd3\xd4\x64\x10\x7f\xf5\xcd\xaf\x4a\x8d\x4e\xd5\x47\x09\x29\xf7\x0b\xbf\xca\xdb\x6b\x26\x5b\x76\xeb\xc3\xa9\x7f\xd7\x48\x16\x7c\xeb\x32\x5f\x3c\xb0\x28\x05\x0d\x1f\xb4\x29\xfc\x9a\x39\x2e\xab\x69\xcd\x7a\x26\x6e\xa5\x71\x4f\xed\xb6\x42\xb6\x86\x94\x0d\x38\x37\xb1\x86\xcb\x8f\xf5\x6d\x91\xa5\xb1\x1d\xf4\x90\x81\x73\xc2\xac\xf8\x16\x77\x9a\x91\xba\x56\x66\xda\x11\x6a\x56\x51\x0e\x4c\x92\xe6\xfa\x1a\xc1\xe6\x9f\x0b\xdc\x87\x69\x12\xe5\x85\x2e\x4c\x24\x42\xd4\x1e\xe8\x8d\x4f\xeb\x64\xb6\xc8\x4c\x94\x78\x43\x53\x85\x9a\x7e\x86\x56\xb1\xcd\x5a\x51\xae\x9a\xe2\x48\x50\xdc\x42\x08\x85\xb3\x1a\x25\x2c\xa7\x0e\x1d\xc2\xf7\xfe\x20\x13\x9d\xa0\x69\xaa\x3d\x69\xe5\x45\x1b\x38\x64\x7a\x60\xb9\xa1\xc5\xe1\x1a\x06\xfe\x5c\x55\x9f\x44\x5e\x64\x69\xbf\xbb\x9e\x47\xad\x48\x45\x54\xb9\x35\xd0\xd5\x7d\x5d\xf6\x21\x1b\xb4\xad\x58\x2f\x57\x8c\x08\x21\x23\x28\xbf\x55\x1d\x9d\x13\x47\xa1\xc1\xd5\xf4\x4c\xae\xad\xa5\xee\xec\xfe\x88\xd3\x9e\x0a\x85\x77\x93\x36\x99\xfb\x79\xbd\x34\xd0\x4b\xe8\x3e\x82\xf1\x3e\x42\x86\xfc\xc8\x18\x75\xe3\x72\xab\x85\x05\xe8\x24\x22\x65\xc0\x9c\x66\xe9\xf3\x14\xce\xf7\x7a\x69\xb2\x26\x78\xa5\x1a\x15\xcd\x59\x28\x80\x91\x4d\x79\x81\x3f\x0d\xa0\xf4\x8b\x4c\x07\x31\x29\x81\x55\xee\x08\x81\x80\xcb\x63\xc3\x22\x6a\x37\xa8\xde\x34\x5d\x15\x47\x55\xdf\xdc\xd6\xf1\x54\xda\x81\x88\xeb\x02\x75\x91\x75\xca\x03\x20\x49\xb3\x1c\xad\x4a\x88\x86\x6f\x23\xd9\xa4\x37\x74\x58\xb7\xb3\x28\x8e\x59\x5a\x08\xe5\x02\xcf\x76\xb7\x40\x79\xe3\x40\xbe\x76\xbe\x11\x0a\xfb\xae\x8d\x08\x0f\xa7\xca\x30\xd8\xd7\x4e\x26\xe6\x39\x62\xcd\x2a\x32\xb3\x6a\x13\xe1\x80\xe3\x32\x69\x68\x5d\xd8\xf0\x5e\x6b\x57\x03\xd7\x50\x48\x97\x67\x73\x45\xf5\x50\x94\xc8\xb2\x75\xc4\x1e\xc8\xd1\xec\x41\x1d\x1d\x06\xf0\x1e\xa5\x4e\x8e\x11\xd7\xea\xed\x21\x01\xec\x2b\x15\x55\xa1\x50\x36\x2d\xde\x07\x22\xca\xe3\x62\x0c\xf1\x23\xff\x10\x81\x91\xde\x34\x02\x84\xef\x38\xab\xa1\xae\x2d\x0f\xd0\x2d\xa1\x1c\xa0\x9c\x6a\x39\x49\xe2\xd5\xc2\xdc\x6a\xa2\xa4\x50\x6f\xcd\xa5\x12\xc3\x99\xcb\x02\x3b\xbd\xa8\xdd\x8e\x6d\xaf\x74\x79\x3c\xf4\x65\xa3\xc1\x6d\x48\xd4\x7a\x64\xe3\xc8\x2e\x23\xfb\x09\xd3\x7f\x9b\x33\x65\x48\x57\xe0\x34\xb9\x03\x83\xe1\x72\x26\xe1\xe9\xa2\xe4\xcd\x41\x22\x44\xca\x53\x01\x78\x83\xa8\x0e\x49\x3d\x78\x8c\xda\x18\x34\xd1\x05\xb2\xb0\x50\x5f\x1a\xac\x2b\xd4\x42\x59\xa7\x99\x98\xfd\xd2\x18\xee\x33\xd4\x93\x8b\x4c\x34\xd3\xd6\x73\xd6\xe7\x3b\xce\xcd\xb0\xc7\x1b\xa1\xc7\x32\x2a\x0a\xf4\x14\xaa\xda\xb9\x9c\xba\x30\x3c\xdb\x9b\xd4\xa5\x5f\xc6\xbd\x8b\x9b\x92\xb0\xda\xac\x8d\x9e\xe7\xa8\x23\xc9\x8d\xbc\x65\xbe\x93\x60\xfe\x24\x62\xa1\x6b\x46\xa1\x91\x70\xa5\x1d\x4e\x32\xb4\x63\xfe\xaf\xe8\x2d\xc1\x28\xe9\x4e\xc0\x32\xf9\x66\x95\x84\x44\x2b\x1e\xc8\x32\x97\xe5\xe4\xdb\xc8\x7c\x3b\x56\xe9\x92\xfc\xc7\xc4\xfc\xe2\xf8\x7d\x49\xa7\xf4\x1e\x8b\x91\xde\xf3\xdb\xc7\xb4\xb3\x34\xc2\x59\xe6\xe5\xc5\xa8\x65\x6b\x2f\xf5\xbc\x14\xad\xee\x74\xc8\x09\x69\x82\x5f\x6f\xa8\x43\xf7\xb4\x94\x49\x1d\xfe\xce\x07\x3d\x59\x9a\xf6\x6b\x01\x40\x05\xe6\x53\xbd\x6e\x84\x83\xb0\x95\x76\x92\xe8\xeb\x56\x18\x90\xe6\x7c\xcb\x97\xfc\x94\xac\x83\xbf\xff\x5c\x33\x54\x32\xf6\x40\xec\xc6\xeb\x94\xf8\xde\x9a\xcd\x61\xe8\xcc\x39\x13\x02\xdc\x41\x1c\x97\x51\xc3\x81\x45\xc7\x18\x8b\xed\x09\x97\xb7\x06\x7c\x9c\xb2\xd4\x8f\xf6\x10\xec\x57\xc2\x70\xf8\x60\xaa\xab\x07\x34\x0b\x62\x16\xcc\x21\x9c\x6e\x4c\xee\x2d\xd6\x38\x3b\x52\xd5\xd2\x8e\x2a\x16\x9c\xa3\xb9\xa0\x8c\x16\xa4\x00\xce\x4e\xc4\x23\xe5\x59\x90\xb7\x06\x45\x11\xdb\x76\x6d\x8b\x18\x83\x07\x68\x51\x0f\xb9\x89\xa6\x89\xf3\x48\x2b\x7a\x04\x8b\x70\xad\xd2\x33\xd2\xf4\xec\xd8\x48\x2a\x9a\xb3\x0a\xeb\xc8\xd7\x51\xf6\x3c\x4d\xc8\xd4\xd3\x43\xa6\xf3\x8e\x63\x61\x0f\xf3\x13\x7b\x5e\x4c\xa1\xd3\xac\x0c\xa6\x49\x3d\x76\xa3\x51\xb0\x93\x39\x2f\x07\xd0\xa3\xea\x17\x16\x3c\xa0\x27\x78\x30\x9d\x41\x14\x97\xa1\x36\xf6\x3a\xea\x54\xc0\x2c\xeb\x35\x3d\x4e\xd4\xeb\xa7\x59\x91\xef\xd8\xca\x0c\xae\xfd\x7d\x4c\xdc\x7c\x1b\x7b\x03\x7e\xe9\x26\xab\x31\xcd\xc0\x28\xa0\xbf\xe3\x77\x2a\xa1\xb7\x5d\x6b\x32\x27\xdc\xe1\x60\x9e\x4c\xd1\xa4\x74\x62\x2e\x90\xa8\xea\x51\x8d\x92\xc4\xe5\x1c\xe0\x8e\xa8\x3a\x92\xde\x8c\x3c\xea\x6e\x3d\x69\x75\xe1\xab\x7a\xc3\x51\xbe\x85\xde\x4c\x84\x7a\x2e\xaf\xb7\x26\xb4\xd5\x2c\xa3\x30\x46\xdd\x77\x64\xa2\x83\xea\xd0\x2b\xf5\x22\x8b\x7a\xb5\xd0\x3f\x83\x56\x72\xbd\xa6\x2e\xe6\x28\x69\xa5\x3d\x9b\x4f\x31\x76\x4c\x26\xc7\xc3\xea\xfd\x6e\x3d\x3e\xf1\xee\x5f\xa9\xaf\x46\x59\x27\x4a\xe0\xf5\x3a\x05\xca\x5a\x50\xa3\x9c\x20\x91\x93\xe0\x35\x1f\x2c\xe5\x51\x3b\x32\x10\xdf\x0d\x64\x36\x0f\x08\x26\xfe\x80\x52\xf1\x6b\x56\xe4\x18\x7d\x7f\x23\xd8\xd4\x5d\xca\x3e\x2c\xcb\x25\x93\x95\x91\x94\xeb\xc9\x66\x42\x25\x87\xf3\x7a\x96\x05\x4d\xfb\x69\x62\x93\x22\x9f\x09\x4c\xab\x67\x50\x5a\x45\x8a\xf4\x1f\xcb\x27\x71\xfd\xbb\xa4\x84\xfe\xbb\x92\x4a\x73\x10\xc9\x20\xc5\x9b\xb4\xc7\x8e\x4e\xed\x2c\x18\x43\x6a\x61\x1d\x3e\xf4\xa1\x6f\x5b\xc4\x4d\x0b\x92\x46\xbc\xdd\x08\x96\xef\xf6\x18\x51\x6e\xc7\xc4\x3b\x49\x51\xf7\x02\x11\x5c\x5c\x11\x93\xad\x88\x2b\x79\x6a\x65\x2d\xc2\x23\xa0\x5a\xb0\xbb\x49\xa5\x9c\x73\x1a\x24\xe1\xef\x76\x8c\x7c\xd5\xa2\x3f\xc8\x7c\x4e\x00\xbe\xd5\x3f\xa2\x36\xe4\x7f\x44\x3c\xf4\xa6\xd5\x4a\x07\x49\xf9\xf8\x52\xac\x71\xf9\xbe\x6b\xc4\x8e\x59\x48\x20\x83\xb8\xea\xb4\x98\x77\xc5\x5c\x4b\x32\x55\xff\x3f\xb6\x00\xb2\x67\xa7\x7d\xb2\x47\xb2\x71\x7b\x82\x4c\x0b\x4e\x07\x98\xed\xc7\x9b\x21\xdc\x05\x5f\x00\x9c\xe9\x6b\x30\x8b\xc0\xe1\x3d\x87\x82\xa8\x32\x37\x63\x20\x10\x25\x6d\x70\x5b\x24\x86\x11\x60\x2b\xd5\x17\x23\x71\xdb\x10\xbe\x39\x37\xdd\x51\x62\xb4\x67\x82\xc7\x70\x9f\x72\x1c\x07\x9e\x97\x87\x23\xb0\xca\x9c\x3e\xe9\x53\x23\xe2\xda\xfb\xac\x2a\x2b\xb6\xd6\x8d\x0a\x0b\x24\xaf\x03\x5b\x93\xfb\xac\x46\xce\x55\x47\x02\x43\x7f\x9a\xe1\x48\xf1\x19\x65\x3d\x52\x9c\x30\x40\x08\xfb\x0b\x13\x29\xfd\x1d\x96\xfb\x79\x82\x84\x9f\xaf\xca\x42\xa6\x83\x62\x39\x72\x2a\x56\xf0\xa2\x21\xcb\xac\xd7\x8d\xad\xd1\x8b\xa2\xbd\x30\xd0\x3f\x1f\x06\x9b\x73\x8e\xcb\x39\xd7\x69\x1f\xf6\x07\x49\x94\x77\x01\x8f\xf3\x75\x79\xb5\x8b\x7a\x53\x05\x9c\x1c\xf4\x3b\x99\x69\x23\x65\x82\xcd\x7d\xa3\x11\x36\xfa\x8d\xb1\x9d\x93\x47\xc5\xee\x72\xc1\x79\xfa\x03\xcf\xc1\x7d\x82\x11\x25\xca\x41\x8a\x65\x7c\x7a\x48\x3d\xb1\xbf\x2d\x2f\xa2\x3a\x42\x43\x3e\xda\x08\x2d\x7d\x49\x16\xbb\xab\xaa\x79\xda\x2c\x81\xb5\x0b\x81\x9c\xba\x26\x4e\xbd\x15\xb9\x4e\xae\x60\xea\xbc\xc1\x77\x7b\x8e\xfb\x20\x40\x87\x0c\x6f\xea\xbb\x2c\x8b\x69\xcd\xa0\x58\xdf\x41\xf8\x9e\x2b\xb2\xb5\xe0\xd5\x3d\x40\xf4\x88\x2f\x7f\x9b\x08\xf5\x41\x7f\x8b\x07\xb8\x8c\x17\x75\x18\xd5\x31\x2e\x5a\xa5\x78\xf7\x3e\xf2\xfc\xfc\x44\x5b\xec\x72\x54\x4e\x9f\xd4\x49\xf1\xdd\x33\xa3\xc0\x0f\xb2\xc1\xac\x69\x9f\x89\x65\x83\x05\xbc\x45\x1c\xe4\x51\xaf\x1f\x47\x2a\x23\x0a\x58\xb6\x76\x9f\xe8\x4d\x05\xfc\x66\x71\x5c\xca\x88\x74\xe5\x17\xdd\xcd\x04\xc0\x75\x76\xb6\xde\x8a\x4c\x8d\x1a\x5e\xf0\xf7\xae\xfb\x65\x8f\xfe\x7d\xfd\xc0\xbe\x83\x7b\x89\x4c\xec\x2c\xd2\xee\x18\xd1\x99\x51\x00\xc5\xee\x1a\x91\xb8\x98\x12\x14\x68\xff\x1e\x7c\x4c\xd7\x9c\x11\x42\xff\xa3\x44\xa0\x33\xdd\x64\x85\xbd\xd0\x90\x78\x11\xee\x06\x10\x23\x2a\xb6\x84\xbf\xfa\xfd\x46\x68\x4f\x7a\x57\xa6\x39\xc8\xd0\x84\xc5\xbe\x64\x62\x99\x0d\x64\xe5\x7f\x46\x83\xbe\xb3\x49\x30\xe5\x3b\x43\xe2\x9c\xbe\x4b\x4a\x72\xeb\x36\xd9\x11\x4a\x5a\x1b\xc3\x50\xf6\x52\x98\xb3\xd6\x0f\x1b\xe1\x98\xf9\x06\x55\xc3\x8f\x0d\x43\xdb\xd7\xc6\x84\x43\xf3\xea\xbe\xc5\xfa\x92\x4d\xec\x72\xe4\x0f\x19\x8c\xd2\xf9\x21\xb5\x17\x9f\x6f\x3c\x4b\x9d\x5c\x69\xde\xb7\x99\xa4\x12\xe6\xe7\x0f\x7a\x76\x6a\x49\x7b\xe8\xcd\x24\x72\x7f\xae\x9e\xa7\xab\x91\xf5\xda\x53\x30\xba\xf7\x31\x2f\x7a\x43\x19\x39\xa1\xa5\x8e\xf2\x56\x3a\x43\xa8\x1e\x74\x6a\x3a\x69\xd7\x31\xd3\x10\x56\x3b\xb0\x91\x2e\x23\xfe\x38\xcd\xc3\x5f\x78\xba\xfc\x38\x6a\x18\xdb\x46\x0c\x83\xd0\xd6\x27\x37\x76\xf2\xe2\x98\xe1\xbb\xa8\x82\x60\x09\x6f\x13\xd6\x77\xef\x93\x95\x3e\x2d\x8e\xa9\xbb\xc3\xa0\x36\xb0\x41\xcf\xb2\x13\x16\x03\x35\xd4\x23\x32\x0f\x48\x56\xbc\x8f\x58\x15\xee\x31\x58\x63\x00\x1a\xfa\x43\xe9\x48\x82\x97\xaa\x9e\x32\x70\xcc\xbf\x47\x98\x9d\x6b\xbc\x9a\x27\x21\x8d\x02\xea\x6b\xd9\x68\x55\x9b\x77\x1c\x7e\x56\xbe\xcd\x9f\xbe\x0c\xa0\xdd\x82\xac\x9d\xf3\xea\x0a\x15\x80\x2f\xb3\x34\xc8\x81\xd4\x39\xe8\x57\xbb\x7c\x19\x1c\x9f\x93\xf2\xfa\x38\x8c\xee\x56\x34\x6c\x2e\x96\x41\x4d\x94\x98\x71\xef\xfc\x03\xd6\xd1\xfd\x80\x8a\x06\xb3\xbf\xfe\x1b\x38\x1e\xbd\xfb\x12\x7a\xe3\x27\xda\x7d\x5e\x93\x02\x53\x56\x24\x36\xcb\xbb\x51\x5f\xf3\x76\x6e\xe5\x53\x63\xe2\x46\x10\x40\x31\x71\x94\x74\x6c\xa6\x10\x6f\x6f\x3a\xca\x49\x87\x83\xa5\x3c\xc0\x70\xf1\xae\x05\x30\x89\xed\x45\x89\xc9\x6a\xdc\x0e\x1e\xf2\xb5\x93\x1c\xc1\xb3\xb3\xf5\x9e\x2d\xba\x69\x3b\x8d\xd3\x0e\xea\x25\x0e\xbc\x11\xdc\x96\xf3\xde\xd9\x5a\xeb\x5a\x1b\x13\x35\x2c\x98\xd4\x1d\x02\xc8\x05\xf7\x51\xe2\x10\x4c\x33\xa1\x54\x03\xee\x26\x04\x47\x33\x80\x06\x22\x1c\x47\x7f\x85\x13\x82\x92\xd5\xe0\x3a\x68\xc2\xe1\x1f\xdb\x8e\xe4\xe2\xa3\x16\x8c\x81\x0f\xcb\xbd\x44\xfb\x85\x31\x26\xfb\x5e\xd4\xde\x45\x92\x8f\xdc\x20\xfb\x71\x63\x2b\x5b\x0f\x96\xc5\xf6\x51\x78\xaf\x07\x48\x90\x3a\x49\x31\xf9\x49\xc7\x79\x49\xe9\xdf\x49\x4a\xc1\xd9\xd9\x7a\x36\xc8\x4c\x3c\x55\x63\x0d\x41\x5f\xd8\x39\x3b\xae\x3d\x17\x62\xd8\x7e\x16\x25\x05\xea\xa4\x8b\x3a\x60\x97\x1b\xa1\x82\x89\x1a\x9a\x33\x04\xd4\x46\xb5\x12\x15\x45\x94\x77\x75\xd5\xe2\x7b\x8f\xf3\x8f\x1c\xa7\xc2\x65\x3e\xc8\xfa\x59\x94\xeb\x11\xea\xce\x3f\x3e\x18\x43\x28\xd5\x4d\xd3\x36\x82\x3d\xc7\x3c\x25\x8b\x0f\xdb\xf1\x16\x95\x91\x4e\x10\x2b\x2f\xf4\x4f\x6b\x01\xba\xff\x9e\xf8\x0f\x7a\x4d\x85\xac\xcc\x26\xe9\x9a\x00\x6a\xca\x61\x76\xa0\x58\x31\xd5\x7a\x43\x9b\x2d\xed\xe4\x42\xf7\x83\x40\xf3\xd9\x51\x38\x37\xd4\xed\x95\x1d\xf1\xf2\x97\x55\x6f\x80\x44\x76\x16\x43\xcb\xda\x7e\x87\x85\x52\x8c\x98\x23\x3e\x24\x1d\x24\x65\xc7\x77\xf4\x88\xd4\xf7\x57\xda\x16\x6d\x8a\x76\x26\x9f\x38\x5b\xa1\x17\xad\x92\x8a\xa4\x46\x78\x82\x0a\x92\x71\xd4\x2b\x4f\xb2\x9d\x78\x44\x44\x14\xef\x52\x00\x74\x77\x0c\x19\x20\xeb\x0d\x27\xee\x7b\xc3\x00\x8a\xf9\x8c\x89\xe6\xde\x65\xf5\x8a\xdb\x15\x8c\x58\x07\xeb\xb9\xb5\x3d\x64\xc2\x91\x8b\xdd\x89\xc4\x17\xf2\xbe\x17\x29\x1e\x52\xb0\x98\x17\x31\xf4\xa1\xe9\x1f\x56\x44\xf2\xcb\x51\xde\x52\xd7\x01\x3b\xef\x1e\x75\x72\xe9\xda\x53\x07\x54\x5e\x0a\xbe\xf9\x54\x33\x64\x72\x85\x98\xb8\x67\x93\x62\x67\x6d\xbf\x6a\x7e\xbf\xae\x38\x22\xa5\xf8\xc1\x1c\x80\x8b\x05\xcf\xae\xe7\xbe\x6f\x76\x09\x3d\x98\x67\xa5\x22\xb6\x79\x39\x64\x3a\x8b\xc2\x51\x81\xc1\x33\x83\xc0\x91\x5e\x4f\x00\x7e\x5e\xdd\xf7\x52\x5d\xa8\x43\x99\xba\x03\xf9\x73\x07\x56\xaf\xea\xa8\x1f\x64\x1d\xab\xd9\x32\x6a\x8b\xf1\x3d\x32\x8d\x20\xf7\xd0\x12\x8e\x9e\xa9\x2d\x3d\x94\x07\xf6\xe9\x32\xb9\x4d\x29\xe5\xc9\x14\xa2\x70\x09\x08\x8f\x1d\x82\x2b\x0c\xd7\xe2\xe6\x24\xe5\xdd\xc2\x42\x7d\x29\x13\xce\x7d\x77\x88\xb9\xba\x94\x0c\x69\x10\xe6\x77\xcb\x5a\x90\x06\xc2\xfb\x11\x0c\xd4\x9d\xc6\xb8\xa6\xef\xfc\x7c\x68\xe1\x58\x08\x5a\xdf\xb2\x44\x14\x99\x0a\x8f\xc7\xc3\x54\xcb\x59\x72\xda\xe9\x92\x23\xa1\x7f\xf1\xaa\xea\xb4\xbb\x0f\x9a\xde\x74\xed\x65\x57\x7a\x39\x4f\x49\x89\x4b\xd4\xd5\xa2\xa1\x38\x72\x0b\x33\x84\x52\x2c\x03\x6c\xf9\x27\x07\x02\x00\x16\x0b\x4b\xe3\x87\xd8\x30\xca\x12\x0d\x79\x1a\xfd\x17\xaa\xa5\x1c\x27\xe2\xa9\xd8\x28\xb5\x1f\x18\xf8\xb0\x00\xc6\x5a\x17\xae\x4f\x32\x6e\x1d\xd8\x07\xf2\x8a\xa9\x80\xb0\x7d\x40\x12\xce\x9a\x84\x75\xb4\x04\x5b\x53\x70\x2f\xcf\xd5\x57\x84\xc4\xe8\xd5\x7d\xde\x26\x13\xf1\xc0\x25\xa6\xfc\xcb\xd2\xb5\x5a\xa0\xfc\x47\x7e\x56\xaf\x99\x21\x2d\x8b\x7a\x76\x0f\x91\x28\x5e\x14\x34\xf5\xd8\x11\x84\xed\x0a\xb6\x5a\x4a\x1c\xbb\xd4\xd5\xe7\x28\x33\x2b\x81\x55\x23\x80\xb4\x7f\x2c\x9b\x1d\x51\xed\xbf\x21\x28\xc3\xf5\x06\xa5\x9c\x54\x3b\x55\x7f\x9c\x9d\xf4\xc1\x52\x5c\x8e\x6e\x96\x13\x67\xd3\x2f\x58\x08\xe0\x17\xe3\x82\x34\x83\xce\xce\xe0\x05\x4a\x15\xc0\x55\x42\xa6\x9b\x24\xcd\xcd\xcb\x66\xa6\x49\x32\xdd\x4a\x8d\xe1\x49\x02\x7c\xab\xf9\x45\x82\x5c\xd9\x36\xa8\x31\x90\x09\x3e\x8a\xc7\xd1\x9b\x09\x5f\x71\xff\x42\xbd\xc8\x06\xcb\xcb\x66\x50\x90\x90\xb6\xa2\x0f\xf5\x66\x2b\x6e\xe4\xc0\xbe\x32\xa0\x79\x46\x96\x01\x0e\xf4\xff\x5d\x7a\x2b\x1c\x3c\xbf\x34\x06\xf0\x15\x94\x8b\xca\x55\x40\xca\x31\xdd\x3c\x83\x85\xab\xfc\x54\x80\x3c\xa9\xb8\x9c\x4c\x06\xc6\x5c\xe1\xd4\x58\x7e\xd7\x44\x91\xd8\x13\x7d\xf9\x55\x72\x0d\xfb\x53\x46\xfa\x6f\xbe\x20\xb9\x02\x47\x55\x4a\xa7\xa2\xf2\x42\xc0\xba\xbf\x8b\x6c\x12\x7c\xe0\xeb\xa5\xaf\xb6\xf9\x31\x36\x36\xb2\x4d\x77\x03\x35\xb5\x6d\xdb\xcc\xc4\x3b\x42\xda\x63\x53\xc2\x55\xd7\x41\x11\x42\xda\x11\x69\x5c\xff\x64\x48\x39\x23\x45\x03\x23\x00\x78\x7c\x82\x91\xf6\xd5\x7d\x73\xf5\xa5\x48\xe3\x41\xd8\xa5\x6d\x82\x28\xd0\xeb\x11\xb1\xcb\xb6\xd3\x3e\xf8\xe3\x42\xad\x67\x83\xe4\x62\xaa\x42\xce\x97\x5c\x1f\x9c\x72\xda\xe1\x05\xdf\xa3\x6a\xf4\x7b\xbe\xcc\x35\xc8\x9c\x4e\x20\x8e\x50\xd0\x36\xea\xf5\x44\xfb\x06\x98\xac\xb3\xd2\x37\x77\x52\xaa\xdc\x7d\x89\x15\x7d\x9d\x6a\xb6\xd7\x19\x16\x7d\xbe\x42\x45\xbc\x0c\x58\x9c\xf0\x83\xb3\xf3\xe5\xa0\x3a\x33\xff\x4b\x8f\xa8\x10\x44\x49\x5e\x98\x38\x36\x1e\x48\x05\x90\xdf\x3b\xd8\x27\x7a\xc3\x35\xeb\x41\x3b\x4a\x01\xdf\xc3\x3c\x02\x15\x87\xc5\x78\x83\x9a\x5e\x7e\x30\x96\x5c\x58\xb7\xc5\x93\xf2\x21\xec\x88\xfb\xb2\xdc\x11\x84\x48\xb2\x69\x6e\x73\x7a\x44\x4c\x8d\x4f\x4b\x70\xe0\x84\x63\x49\x11\xea\xae\x6c\x59\xc7\x11\x12\xc8\x3f\x20\x38\x87\x10\x52\xc9\x9c\x3c\xe6\xbb\x34\x5c\x9a\x22\x81\xd3\x8a\xac\xc4\xd5\x06\x57\xbd\x09\x84\x78\x13\x31\xb3\xfe\x15\x63\xb2\xb3\xb4\xf7\x25\xf9\x6e\xac\x4e\x30\xf2\x21\x6c\x3e\x43\x0c\x40\xc7\x64\xb7\xc1\xfa\xdc\xc1\x4f\xc2\x09\xbd\xd2\xc0\x69\x84\xb3\xe9\xb6\x0c\x02\x72\x80\xdb\x21\x7b\x05\xb4\xdb\x85\x61\x19\x5d\x3b\x7e\x40\x2c\x0f\xd7\xd3\xba\xfd\xcb\xba\x4f\x3e\x1f\x8a\x15\xd0\xaf\x12\x93\xe1\x01\x81\x9e\x8a\xf8\x34\xe9\x95\x5f\x82\xa5\xc0\x4c\xbd\x2b\xdd\x86\x48\x09\xdf\xe6\x1c\xc5\x4c\x93\x12\xa8\x4a\x31\xe7\xb0\xc3\x32\x5e\xae\x81\x92\xa5\x36\xb0\xff\x3d\x87\xd2\x6f\xfc\x9a\xa2\x28\x8e\x8c\xad\x81\x6e\xbc\xbe\x27\xe4\xe2\x4f\x8e\x91\x88\x29\x1a\xc9\x65\x9e\x43\xf8\xfc\x19\x97\xeb\x6e\xca\x80\xfb\x6e\xa9\xf2\x71\xbc\x7a\xeb\x81\x7d\x5e\x00\x94\x32\xc9\x9b\x08\xcf\x90\xf3\xb8\xcc\xfd\x8c\xa5\xd3\x80\x69\x7d\xd3\x16\x8a\xdd\x54\xe4\x24\xbe\xd9\xc1\x28\x83\x83\xb4\x9c\xd9\xbc\x9b\x08\x95\x44\x68\x9d\xbb\xcb\xba\xe2\x77\xc7\x40\x1b\xda\xbe\xbd\x4e\xb2\xe9\x00\x3b\xeb\xf5\x23\xe1\xf8\x26\x8e\x0b\x1b\x4f\x95\x03\x89\x1a\xaa\xda\x41\x98\xaa\xfb\x0d\x66\x35\xda\xea\x7d\x08\xa3\x6b\x1e\xb5\xad\xb4\x42\xc3\x8b\xbe\x43\xb4\x35\x68\xef\x70\xdc\x7c\xce\x2b\xed\x99\x28\x29\x4c\x94\xa0\x7b\x06\x1b\x53\xc5\xbc\xf0\xb0\x27\xa8\x8c\x02\xd6\x03\xca\xaa\x38\x4a\xc2\x2f\x64\xe7\x6c\x5e\xf6\xd0\x2f\x1b\x69\x17\x03\xb0\xd9\xc7\x18\xa8\x7d\x8c\x04\x66\xda\x26\x99\x0a\x6c\x99\x7f\xe3\x81\xec\x6c\xd7\x0d\x3a\xd6\x5c\xe8\x33\x22\x36\x5b\x35\x89\xab\x30\xf8\xd8\x35\xc4\xb1\xcc\x2a\x9d\x26\x26\x6e\xe7\x6a\xe0\x54\x2d\x4f\xfe\xd6\x29\xe7\x55\x30\x78\x14\xf6\x70\x11\xc5\x00\xae\xe1\xcf\x00\x8d\x85\xc7\x8a\x11\xc5\x59\xf9\x23\x52\xa8\xbe\x38\x61\xea\xcb\x33\x6a\x90\xc4\xd1\x8a\xd5\x1e\x33\x24\x68\xc1\x29\xa3\xd7\xc4\x05\xbc\x9c\x66\x3d\xd7\x61\x86\x1c\xe0\xf7\xc7\x8a\xca\x17\xca\xb1\xdf\x3c\x43\x16\x79\x2d\xcd\xe2\xf6\x13\xa1\x60\xa2\x4c\x30\x78\x36\xd5\xbd\xc2\xbf\x6c\x13\x86\x7e\x1c\xa6\xd7\x87\x24\x92\xfe\x70\x58\xd1\x94\xa8\xf3\x0e\xe3\x80\x47\x01\x3c\xdb\xd7\xcf\xf6\xbb\x4d\xfa\xaf\xb0\x63\x1c\x73\x43\x80\x9e\xdf\x01\x05\x08\x7e\xfe\xde\x44\x88\x32\x3b\x5b\xef\xc4\x26\x4f\x52\x45\x11\xaa\xac\x8c\x90\xdb\x3b\x89\x99\xad\x47\xdd\xfc\x7c\xbd\x48\x0b\x15\x29\x45\x94\x04\xcc\xab\x5e\x8f\x02\x99\x45\xde\x4a\x91\x0d\x09\xdd\xb5\x6f\x0f\x29\x6c\x79\xbb\x11\x52\x15\xa6\xd5\x2a\x37\x76\xa8\x54\xbc\x43\xd2\x82\xef\x10\x46\xad\x9f\xe6\x79\xb4\x14\xc5\x51\x31\xde\x20\x3c\xa4\x06\x61\x6a\x5b\xea\x9b\x3c\xb7\xb9\x74\xf9\xfb\x1a\x5b\xf9\x29\x6f\xe9\xfc\x8a\xbd\x41\x99\x97\x1b\x7e\x07\x75\x4c\xbe\x54\x1b\xdb\x35\xa1\xef\xe1\x18\xa5\x5a\x96\xd2\xac\xad\x68\x38\x37\xf3\x61\x85\x5e\x22\xe7\xf6\xe0\xfe\x43\x1a\x7a\x7a\xde\x15\x5a\xd5\x44\x00\x3f\x49\xc9\x7d\x60\x1f\x78\x69\x84\xe7\x19\x6e\xf3\xef\x93\xa9\x3e\x41\xb2\x28\xbf\xf0\x96\xc5\x9a\x2c\x06\x15\x8e\xcf\x58\x5d\x01\x15\x0e\xb6\xf4\x43\x64\xe4\xb5\x6d\x84\xa0\x69\x42\x45\x82\x94\x13\x4c\xf1\x1f\x50\xf5\xfe\x18\x9e\xd4\x31\xdc\x87\x90\x28\x5f\x33\x7d\x56\x52\x84\x32\xba\x3f\x64\x83\x14\xd6\x05\x6c\x13\xbd\xa9\xea\xd7\x6a\x45\xab\x51\xec\x3a\x07\xf4\x40\x6c\x84\x0c\xc6\x29\x7a\xd6\x65\xd3\x4b\x07\xf9\x0e\x59\xec\x28\x16\x1e\xa5\x6c\xdd\xdf\xc7\xf6\x70\xba\xc0\x74\xd2\x63\xce\x71\x0c\x2b\x1d\xa7\xc2\xd0\x1a\x7b\xc9\xed\x30\x49\xab\x46\x14\x26\x3f\xa7\x3c\xca\xcf\x27\xaa\x5c\xf3\xf3\xf5\x76\xba\x96\x84\x2a\xa7\xca\xd9\x50\x6f\xd4\x87\x95\x69\x05\x91\x56\x71\x39\x47\x8c\xd8\x71\xe2\xd4\x01\x0d\x85\x93\x21\xac\x42\xb3\xb4\xd2\x38\x82\x3d\x46\xc5\x00\x99\x0c\xbd\xae\xae\xc5\x16\xb6\xd7\x4f\xc7\xd4\xe8\xb9\x1a\xfd\xa8\xf3\x31\xca\x56\x7d\x07\x3d\xa2\xd8\xff\x8d\x68\x7a\x95\x01\x4f\xab\x97\x15\x55\xc0\x83\xd2\x05\x11\xa7\xe9\x8a\x8c\xea\xe6\x3b\xf0\x40\xdf\xf1\x09\xeb\x6e\x94\x17\x69\x16\x19\x0f\xce\x71\xd9\x18\xa2\x50\x3a\x42\x39\x0b\x7b\x78\x9d\x80\x74\x1b\x63\xcc\x96\x15\xc5\xf1\x25\x93\xac\xf8\xe7\x47\x04\x74\x99\xb4\xfe\x90\x4d\xc5\xc2\xfc\x1c\x8c\x16\xae\x1e\x6d\x6b\xa5\x69\x44\xf5\xea\x76\x23\x90\x7d\xde\xa6\xd4\xe2\x92\x89\xe3\x34\x4d\xf4\xc9\x9d\x66\x2e\xb1\xd0\xbc\xdf\xd8\xf2\x9e\x2d\x13\x63\xd2\x11\x72\x23\xcd\x83\x33\xef\x26\x35\x8c\x7d\x52\xc5\x0d\x65\x5a\x6f\x0d\xa2\xcc\xb6\xa7\xc5\x05\x24\x4d\x4e\xd7\xde\x7d\x9d\xaa\xbf\xda\x78\x8e\xe2\xd2\xb9\x09\xd3\xfe\x95\x7a\x37\x6a\xb7\x6d\x32\xc5\xcd\x22\xf2\x55\x0e\xa6\x1c\x92\x28\x6c\xfb\xb2\x74\xa0\xf0\xe7\x45\x6e\xf5\x9a\xf3\xad\x5e\x55\xf9\xba\xb5\x34\x5b\xd1\xd2\x8b\xc3\xc5\x50\x67\xd6\x85\x46\xa0\xab\x32\x4b\x79\x1a\x0f\x0a\x1b\xaf\x0b\xe0\x07\xaf\xb2\x29\xbb\xc1\x71\xf2\x95\x0f\xec\xda\x40\xcb\x67\xd4\x23\xb2\x41\xb5\x5d\xd6\xf8\x7c\xd3\xb4\xd2\x25\xb7\xb6\x88\x9b\x7e\xd1\xdd\x6c\x4d\x18\xec\x5f\xa8\xbf\x36\x77\x68\x47\xf9\x93\x8c\x3e\xc1\x66\xfc\x71\x83\x86\xfb\x03\x19\x6e\x8d\x04\x60\x77\x50\xf3\xf8\x94\x3b\x50\x3e\x05\xbd\xa2\x3c\x4c\x1a\xc5\x4f\xd7\x3c\x5d\x87\x3a\x7d\x8e\x5e\xa9\xf4\x7e\x90\x36\xb8\x2e\xcb\x0d\xa7\xb2\xc6\x05\x18\x89\x69\xe4\x57\x50\x18\xbc\xcd\xa2\xd1\x37\xa8\xc5\xbc\xd6\x24\xc6\xfa\x13\x2c\x0f\x74\x6e\x2c\x10\x38\x85\xe0\x4b\xbf\x0d\xb9\x79\x38\x82\xdf\xa0\xb4\xc8\x55\x6a\x88\x3e\x39\x1c\x23\xd6\x2d\x17\x81\x36\x0a\x31\xb9\x62\xa4\xda\x18\x8e\xe9\xae\xfc\x2e\xd8\xe0\x7b\x2c\xcf\x7f\x9b\xa8\x0b\x50\xae\x75\x24\x37\x5b\xab\x78\xd2\xb3\x92\xc6\xc2\x87\x17\xba\xa1\x2a\x71\x34\xf4\x18\xc5\xfa\x9e\xc0\xc2\x7d\x81\x6b\x12\x43\x7e\xd7\x73\xdc\xa1\x76\x6a\x18\xb8\x6d\xef\xe9\x60\x79\xa6\x0a\x77\xde\x7f\x4f\xb9\xad\x31\x3e\x0a\x2c\xf2\x4b\xd2\x8b\x09\x4e\x01\xfc\x8e\x0d\x7d\x61\x62\x43\xbf\xf1\x46\x3d\x4a\x56\x4d\xee\x92\x01\xfe\x39\xcb\xa7\xd1\x9b\xc6\x9f\x7f\x84\x55\xa6\x2e\x19\xb1\x86\x58\x9d\x2a\x12\xa8\x37\xde\x7f\xef\x64\x83\x76\x60\xc9\xe4\xf2\x1d\x42\x89\xcd\x06\x03\x2e\x26\x2d\x45\x3b\x1d\x38\x62\x2c\x0f\x13\xf3\x6d\x39\xa7\x89\x74\xa2\xd5\xcd\xd2\xc4\x91\x87\xcf\xcf\x6b\xf9\xe0\x0d\x22\xad\x7e\x83\xb0\xa3\x71\x94\xb4\x6d\x02\x28\x15\x2c\xd0\x31\x4c\x92\xd6\xe3\x49\x6f\xe7\xf6\x18\xe4\xc5\x14\xf9\x13\xd4\xa2\x0d\xf5\x5d\x38\xd4\xf7\x24\xd6\x76\xb1\x1b\x91\xd9\x2b\x2b\x15\x9e\x02\xc9\x04\x4d\xc3\x36\x88\x3d\xee\xd8\x90\x7b\x67\x64\xb8\x9c\xd8\x80\x6c\x15\x04\x6b\xb7\xc6\xbb\x67\xca\xbd\xea\x0b\x94\xe5\xf6\x54\x05\xf9\x09\x53\x38\x3b\x27\xfd\xd9\x5a\xc5\x75\x1a\xd8\xa1\x59\x6b\x92\x98\x6c\xf1\x95\x83\xf5\xd2\xa9\xed\xb9\xc8\x16\x55\xf8\xed\x30\x1c\x7a\x33\xda\x7a\xec\x1d\xd8\x57\xcf\xfb\xd6\xac\xa8\x8f\x5a\xa5\xef\x14\x18\xeb\x7a\xa6\x1d\xe5\x69\xb2\xa3\xe6\x45\xf2\xc0\xf3\xa3\x5a\x36\x0d\x82\xe6\x82\x44\x19\x85\xb2\x6f\x51\x59\xef\x82\xa4\xb8\x31\xb4\x97\x09\x1c\xfd\xe2\x41\xd8\x7c\x04\x9a\xdb\x9a\xe2\xb2\xe9\xcd\xe8\x05\x7f\x88\xae\x0e\xe2\xc4\x66\xc6\xf9\xf9\xa1\xd2\x77\x81\xd5\x19\x2f\x8c\xe5\x37\x4c\xb6\x0c\x23\xe0\xfa\xda\x49\x20\xee\xd8\x23\x77\x8d\xe9\xf7\x4d\x6c\x5a\x5d\xe7\x68\xba\xde\x41\x92\x98\x3c\x3f\x81\x49\xfa\x8d\x5f\xab\xa7\x89\x8a\x60\xc1\xdf\xfc\x26\xf1\x99\x7e\xd3\x1f\xf0\xde\x11\x84\xc8\x06\x92\x45\xca\x89\xa0\x37\x8d\xad\x1d\x5e\x5e\x80\x60\x2b\x17\x3d\x0e\x95\x99\x11\x61\x2a\x76\x62\xd2\x91\x0e\xfb\xf1\x44\x0a\xf5\xd0\x2b\x2a\x60\x92\x45\x85\xa5\x3d\x05\x1c\xae\x17\x80\x0e\x8a\x0e\x84\xf8\x8e\x92\x56\xec\x38\x16\x3c\xb5\x56\x63\xac\x2e\x19\x22\xfc\x56\xd4\x31\x99\x50\xa7\xca\xfe\x70\x64\xa3\x35\xdf\x9c\x77\x89\xfc\xe9\xb5\xa8\x6d\xd1\x17\xee\x54\x15\xca\x65\xa3\xd7\x13\x54\x9a\x0b\x0b\xf5\xe5\xd4\x51\x55\x3a\xfa\xaf\x10\xcb\x4c\x7a\x31\x00\xf9\xa7\xca\xb7\xe8\xf1\x92\x9e\x09\x6d\x92\xca\x60\xee\x50\xbd\x9f\xc6\xeb\x7d\x4d\x66\x30\xf5\x75\x60\xa8\x76\xd6\xcc\xa4\x1e\xf4\x80\x47\xfe\x62\x18\xdc\xa5\x2f\xc6\xba\xd9\x7a\x45\x0f\x4b\x17\x98\x97\x7b\xcc\xd6\x7d\x6f\x22\xe2\x99\x3b\x54\x37\xed\x37\x07\xb9\x3f\xcb\xb4\x3f\x95\xb2\xd0\xef\x81\xc4\x73\x8c\x90\xad\x9d\x8a\x11\x46\x9e\x4a\xf1\x1a\x7a\xe3\xb1\x8c\x79\x01\x3e\x9e\xe0\x5f\xdd\x91\xb7\xd3\x6b\x72\x5e\x97\x05\xe6\xa2\xf2\x5f\x8e\x2b\x82\x92\x0b\x97\x24\xf7\x05\x23\x03\x96\x02\xaf\x7b\x47\xaa\x80\x8f\xa2\xb2\xef\x46\x59\x9a\x77\xa3\x9e\x99\x62\x9a\xd9\xa9\xd7\x0e\xec\xdb\xd4\x0c\x1b\x5c\xd3\x6b\x13\x83\x33\x3b\x57\x37\x51\xd6\xca\xcc\x72\x51\x23\x65\xdb\x8b\xd4\x33\x7b\x91\x5a\x71\x62\xdb\x89\xf2\xd8\x14\x69\xa6\x6e\xa9\x43\x8e\xd4\x3c\x57\x3f\x0b\x2e\xb4\xca\x7d\xd6\x32\xb1\x38\x78\x70\xbd\x6e\xa3\xe6\x87\xba\xc9\xc7\x70\x8a\x9c\xc8\xfd\x54\x10\x02\xfa\x98\x04\x67\x6e\x0f\xa9\xb6\xc1\xcc\x9b\xa6\x67\x85\xc1\x22\xaf\x85\x1e\xf2\x6b\x4c\x86\x10\xf0\x42\x4b\x69\x66\xdb\x69\xaf\x16\x22\x00\x50\x7d\x3b\x59\xde\xad\x86\xe8\xe5\xb9\xba\x69\xa1\xb7\xd2\xf7\xae\x92\xb6\x2b\x91\x80\x64\xe9\x8a\x75\xec\x3c\x88\xfc\x21\xf7\x3a\xe6\x11\x3a\xf6\x94\xf2\xfb\xe0\x31\x68\xfe\xd7\xe9\x2f\x50\x49\xf2\x61\x15\x8d\xe3\x52\x79\x80\xcb\x09\x03\x97\xe2\x21\x21\x82\x1e\x4e\x00\x95\xdf\x78\xa3\x2e\x53\xea\x56\xbc\x33\xb7\x6c\x87\x7d\x2a\x33\x69\xe7\x3b\x89\x7b\xf6\xa7\x0d\x2e\x0b\x0e\xd9\x44\x42\xfc\x0a\xa9\x97\x73\xe2\x9d\xe2\xe0\x42\x95\x1f\x27\xf9\x4d\x46\xcf\x3e\x68\x3c\xc3\xc8\x9f\xd5\x28\xb6\x1d\x3b\x45\x8a\xef\x7f\x04\x93\x0d\x03\x02\x91\x21\x37\xc4\x8f\xf9\x3e\x47\x65\x27\xf2\x1a\xbb\xa4\xef\xee\xfb\x48\xa2\x44\x0f\x60\x27\x0f\x5b\x3e\x91\x93\x8d\x0d\xf9\xd8\xdc\x14\x72\xf8\xc2\x0d\xbf\x2e\xe7\x2a\x52\x07\x60\xdd\x71\x6a\xd7\xb5\x03\x0e\x0d\x87\x8e\x1f\x2c\x27\x90\xe0\x39\x56\xdb\x0a\x48\x94\x34\xd3\x69\xf8\xe3\x84\xe1\x58\x25\x8e\x38\x36\x33\x9b\x97\xe6\xba\x05\x90\x37\x12\x94\x1b\x44\x2b\xbe\x41\x4f\x9d\x26\xf6\x79\xe2\xad\x7d\xbc\x49\x9a\x2e\xa8\xcf\x48\x45\x69\xf0\x5c\x93\xa4\x3f\x6a\xa3\x32\xa4\x46\xf0\xf1\xe1\xb0\xf6\xe2\x8b\x1e\x4b\x2a\xbb\x09\x19\x5a\x15\x84\x42\x87\x96\x36\x90\xa2\x90\xf2\x8c\xa0\x96\x5d\x67\x5c\xed\x8d\x37\xf4\xe3\xda\x54\x88\xd3\x47\xd9\xd1\x3c\x58\xea\x80\xa3\xc1\x3b\x2e\x2b\x02\xb5\xd8\xda\xa8\x74\x13\x3d\x2b\xe7\xdc\xa1\x40\x49\x5b\xfa\x28\x4e\x20\x57\x2c\x01\x5e\x70\xc7\x28\x58\xfe\xdd\xa3\x72\x8e\xe0\x4a\x3d\x20\xce\xb2\x24\x4a\xec\xb2\xd0\xa5\x1c\x70\x4e\xf8\x79\x4a\xe4\x4c\x36\x4c\xcf\xcf\xd7\xed\xe1\x96\xed\xab\xfa\xb5\x27\x65\xf7\xe5\xb1\x13\x94\xee\xbe\x4d\x3d\xce\xc5\xa0\xb7\x14\x2b\x96\xcc\x4b\xd7\x05\x19\x3b\x56\x67\xce\xbb\x69\x66\xa1\x8d\xec\x1c\xd6\x50\xe6\x7e\xe6\xa1\x44\x9a\x64\xfc\xe7\x7c\xa2\x7d\xa2\x8e\x7e\xa0\x3e\x3b\x37\x4d\x91\x02\x15\x0e\x60\x6c\x9d\x76\x1b\x0b\xb9\x91\x2f\x10\x9b\xac\x63\xb1\xad\xc7\x68\xa1\x90\x92\xd3\xaa\x14\x52\x72\x60\xf4\x43\x8a\xe4\x38\x45\xf9\xc2\xd4\x77\x60\xf3\x3c\x95\xe0\xfe\x49\x23\x34\x29\x27\xde\xba\x20\xce\xbb\x82\x37\xd2\x1b\xef\xa9\xd9\x56\x9a\xa4\xbd\x28\x77\x15\x0d\xb7\x73\xe5\x69\xdc\x96\xae\xe4\xc5\xec\x44\x79\x91\x85\xfa\x2d\xd2\xf6\x47\xa8\xce\x74\x84\xa1\x0d\x49\xfe\x44\x90\x1a\xdf\x3e\x62\x82\xf1\x67\x9a\x7e\x8b\x7c\xf3\xcf\x21\x55\x0a\x83\x73\x1f\xa5\x46\xe7\xfc\xc8\x56\xc0\xfc\xff\x92\x54\x14\x1c\x26\x31\x78\xc6\x3f\xf8\x72\x33\x70\xe4\x75\x9e\x19\x8d\xd1\xca\xc8\xbc\x73\x68\x8a\x7d\xb1\x6d\x14\xf8\xde\xef\x0c\x19\x1b\x58\xbe\xa1\xcd\x24\x2b\x84\x8d\x76\x6e\x2c\x4b\xc8\x08\xb3\x31\xb4\xc8\x61\x93\x0b\xe8\xd3\x89\x98\x96\xdf\xaf\xd7\x18\x57\xbc\xc4\x06\x91\x86\xdc\x1f\x86\xe2\xc5\x49\xcc\x14\x92\x09\x27\x71\xb8\xe2\xf7\x95\x28\x5f\xff\xa5\x41\x54\xdb\x36\x29\x06\xd9\x3a\x4e\x39\xf8\xb7\x5f\x90\x89\xfd\x84\x8d\xfe\xf7\x30\x5e\x28\x72\xa3\xbc\xe6\x19\x53\x7d\x4e\xfd\x03\xbf\x92\x6c\xd1\x8d\x5a\xce\x15\xa7\x2c\x81\x73\xc5\x51\x33\x73\xb4\x0d\x15\xca\x16\x59\xba\x34\xc8\x0b\xc1\xe9\xc1\xcc\xde\x96\x63\x16\xee\xe0\x51\x6c\x40\xa7\xae\x50\x7e\x15\x12\x1f\x7f\x50\xd5\xaf\xdd\x1e\x68\xc1\xd4\xe3\x8e\x7c\xa3\x17\x4b\x88\x2e\xc7\xb6\x68\x75\xd1\x55\xe7\x86\xe3\x94\xd6\xb3\xf5\x6e\xe2\x74\x38\xf4\x4a\x7d\x39\x6d\x0d\xe0\xaa\xe0\xa4\x45\x2a\x40\xaf\xc7\x22\xae\xb8\xdd\x97\xcd\x4f\xba\x4d\x4e\x34\x16\xe7\x94\xe6\xc4\x38\xe0\x39\x31\x31\x36\x87\x5e\xa9\xaf\x9a\xd6\x60\x80\xae\x47\x47\xd1\x12\x62\xcf\x73\x5b\x05\xa4\x40\xfb\xf2\x12\xa5\x13\x16\x29\x9d\xb0\x48\xb5\xb9\x96\xc9\x62\xa3\x07\x1d\xf2\x96\x57\xb1\x5c\xf5\xc6\xeb\x89\xb7\x4c\x32\x43\x35\xbf\x5d\xa3\xda\xcb\x5a\x54\xdd\xf9\x02\x4e\x12\xd2\x09\x7a\x3d\x50\x88\xf9\x94\xc7\xf1\x2d\xca\x6a\x4b\x69\xa2\xec\xcd\x38\x2b\x4e\x8d\xa3\xe7\x03\xfc\x99\xb9\xc7\x44\xf6\x56\x3b\x5a\xb1\x14\x36\x1b\xa4\x72\x74\x01\x03\xec\xd8\x0b\x2b\x50\xf7\xbd\xf5\xdc\xc6\xcb\x72\xd6\xb8\x95\x28\xa6\x43\x6f\x2a\xf9\x84\xd0\x0d\xe8\x53\x41\x48\x68\x1f\xa3\xa3\xe3\x13\x99\x0b\xe7\x70\x3f\x45\x5d\x9b\xc9\x8a\xab\x10\xb9\x6c\x3b\x75\xdc\xfe\xf1\x30\x34\x06\x5d\x9e\x60\x25\x77\x21\x41\x3f\x6d\xad\x84\x76\x0f\x9c\x76\xea\x8c\xea\x8d\xf7\x8d\x57\x12\xd1\xea\x41\x88\xe9\x4b\x52\xa1\x3c\x55\xd5\xee\xfd\xe6\xa0\xdd\xe9\x59\x6d\x87\xd2\x2e\x42\x79\x1d\xd7\x51\x18\x08\x26\x57\xad\x89\x75\xec\x91\xdf\x99\x6e\x8e\xa5\x1a\x08\x90\x73\x77\x2c\xf5\x14\x9b\xd6\x14\x71\xb8\xe2\x6c\x42\x88\xf4\x09\xc3\xd0\x2e\x4f\x74\xfb\xee\x5f\xa8\xe7\xa9\x72\x85\xc1\x5d\x3b\x2e\x0f\xa7\xd7\x15\x38\x57\xaf\xa5\x51\x3e\x99\xab\x13\x86\x8f\x9f\xa6\xbc\x72\x37\xea\x3d\x45\x15\x1a\x65\x24\xf1\xb8\xb1\x05\x57\xa1\xd3\x16\x15\xbf\x5e\x82\x88\xc2\x76\xb4\x05\xa0\x9b\xe4\xff\x10\x67\x93\xce\x10\x57\xc8\x7b\xaa\x59\x7a\xd8\x15\x3a\x8e\xc0\xd1\xc1\xcb\xd3\x66\x35\xac\x8c\xed\xcd\xc0\x8b\x89\xc5\x85\xa9\x9e\x96\x13\x08\x4f\x75\x4d\x3c\x30\xfd\x56\x12\x48\xe8\x45\xed\x04\x35\xd0\xd9\x59\x0f\x65\x0d\x9b\xff\x7e\x23\xc8\xdb\x5f\x9c\x88\x96\x5f\xdd\x57\x47\xe8\xa9\xf2\x15\x44\x85\x70\xa4\x41\xf1\xe7\xfb\x44\xe5\xbd\x9c\xc6\x71\xba\x66\xdb\x02\xca\xf5\xfa\xb2\x7f\xfd\x35\x9f\x98\x2e\x5d\x56\x46\x3e\xab\x6d\xf9\x50\x96\x3f\x0e\x0a\x45\x17\x39\xcd\x21\xf1\x27\xf5\x23\x0d\x92\xcb\xda\x2e\xa7\xb9\x7e\x3c\xf4\x78\x98\x2c\x51\xb0\x3b\xe2\xcc\x29\xee\x07\x86\x06\xdf\x26\x9c\xc2\x50\xc4\xf5\xa1\x67\x92\x98\x41\x1b\x59\x08\x87\x66\xc7\x56\xd3\xbb\xb1\x95\x9c\x65\x66\x9a\xdb\x0f\x64\x2d\x60\x6b\x6f\x1b\x85\x02\x9b\x36\xc9\x3b\xd0\x47\x95\x56\x48\x5f\x34\x95\x6b\x21\x16\xbd\x22\x63\xad\xd7\x54\x9f\x4f\xa2\x3c\x37\xc9\xce\xb0\xea\xd1\x1b\x80\xd9\xfc\x27\x43\x46\x3f\x93\x4f\xae\x24\x29\xee\x13\xe3\xfd\x20\xe5\x1c\xa8\xab\x5f\x51\x26\xad\xf7\xb3\x74\x49\x15\x17\x3c\x7a\xda\x13\x92\x5f\x9a\xc8\x3c\x48\xe3\xfb\x5b\x83\xb4\x30\x63\xdd\xb4\xe0\x28\x76\x20\x69\x8f\x8a\x69\xa5\x45\x6c\x92\x76\x8d\x0e\x99\x8b\x54\x35\xbb\xe8\x41\xf1\x4b\x83\xcc\x9a\x01\xa1\xf6\xcf\x8e\x77\x35\x92\x7a\x04\x9c\x7f\xed\x96\xa8\xa2\xa8\x5b\x56\xfa\x97\x5a\xc0\x25\x7d\x9b\xa4\x3c\xbe\x5d\xba\xed\x38\x61\xa2\x96\x88\x7e\xbd\x35\x70\x60\x18\x0f\x55\xf4\x64\x01\x97\xa8\xcb\x47\x74\xf7\xd4\xb5\x0d\xa9\x9e\x46\x28\x95\x5e\xa2\xe8\x6f\x59\x75\x18\xf0\xa0\xd7\x08\x45\x8f\x6e\x65\x78\x1c\x1f\x06\xf5\x8b\xe5\x65\x9b\xe4\x8e\x56\x19\x51\xd4\x6d\x24\x18\x3c\xa9\xac\x0f\x7a\x8e\x78\x43\x9d\xa7\xad\xc8\x16\xeb\x3b\x42\xc7\xcb\xfd\xe1\xa4\x9d\x46\xbe\xac\xd6\xe4\x2e\x42\x8c\x23\xce\xb7\x5a\x93\x78\x35\xe4\x2d\x7c\xa7\x75\x9f\x11\xdd\xd4\xd0\xf2\xdf\x9d\xae\x94\x39\x6f\x67\x76\xad\x16\xd8\x36\xde\x19\x52\xda\xe0\x9d\x0a\xa0\xe8\x4b\xf5\x41\xbe\x85\x1b\x7b\xc8\xdc\xd8\xd4\x84\xd4\xb3\x31\x20\xb3\x5c\x32\x0a\xf5\xe0\x0b\x44\xf3\xf4\xa6\x5d\xb3\xb1\xe7\xe7\x70\x0e\xb7\x0c\x85\xf3\xb8\xd9\x71\x2b\xa2\xd6\x5e\x79\x4e\x8f\x46\x7c\x75\x9f\x8f\x72\x30\x66\x18\x27\x64\x8a\xe1\x07\xdc\xe2\xde\xb8\xdd\xe8\x49\x85\x73\x73\x9f\x69\xf7\xb6\x83\x1b\x06\x21\xe3\x94\x98\x74\xc5\xdd\x37\x88\xd4\xee\x8a\x14\x65\xe0\x08\x2b\x60\xd4\xd7\x3c\x0f\xb8\x9a\xd2\xfb\xb4\xd4\x76\x36\xb7\x16\x42\xca\xd3\xb3\x6f\x3a\x5d\x5b\x14\xd1\x14\x51\x36\xdc\x21\xf9\x6f\x90\x2a\x38\xb8\xf9\x56\xf7\xe7\xe5\xb9\xfa\x6a\xd4\x49\xb3\x74\x90\x2b\x39\x61\xd0\x10\xf5\xd7\x15\x02\xd1\x0b\xf5\x74\xa9\x20\x06\x62\x9c\x71\xc8\x05\xea\xb5\xa7\x38\x6f\xdb\xc2\x66\x91\xd4\x28\x65\x13\xa1\x5c\x74\x7c\x48\x40\xbf\xe3\x13\x8e\xc1\xe2\x81\xc5\x7a\x91\xda\x5a\xed\x37\x7e\xad\x52\x52\xa4\x02\xcb\x91\xd9\x5e\x9a\xe5\xdc\x57\x0f\xc0\x88\x2b\x21\x56\x35\x24\xf5\xd2\xcc\x02\x90\x8d\xe4\xd2\x6d\x64\x37\xf4\x86\x14\xa3\xf2\xc1\x52\x2f\x2a\xc2\x62\xc4\xe2\x38\x45\xc2\xde\xa7\x28\xee\x28\xcc\x8a\xe9\xa5\x59\x54\x0b\xe0\x1a\x45\x1e\xea\xcd\xd8\x5a\x8c\xda\x66\x5a\xd6\x12\x93\xa9\x2b\x12\xbf\x41\x76\xf4\xff\xd5\x85\xe9\xf4\x0c\x2b\xd5\x18\x4b\xa3\x62\x6b\x5c\x77\x08\xab\xe9\x12\x9d\x8b\xcb\x66\x10\x6b\x0c\xa5\x8a\x8a\xfc\x53\xa7\xa8\xd9\x2c\x6f\x75\xd3\x34\xde\x43\x2c\x33\x2a\x7b\xeb\x38\x29\x49\x20\x4e\x45\x4a\x3c\x0c\xba\x1c\x59\x2f\x6e\xf5\xb5\xdf\x0c\x5c\x25\xe5\xa2\xd1\xbf\x92\x07\x74\x1a\x2d\x81\x81\xe2\x0e\x79\x91\xdf\x15\x7f\xc3\xf5\x5d\x05\x3c\x74\x62\x8d\x66\xc3\x1d\xde\xa1\x46\xf4\x1a\x15\x60\x11\x9b\x2d\x99\x5e\x9a\x00\x0b\xe6\x49\x83\x7d\x2f\x89\x16\xbd\xe0\xe9\xdf\x1f\x0b\xe5\xe3\xa2\xbb\x37\x50\x82\x5c\x92\xcd\x3b\x26\x52\xe2\x68\xa7\x03\x0f\xf8\x7d\xe6\xa9\x52\x60\x80\xd3\xd1\x0b\x38\xc8\x2f\x88\x00\x4e\xe1\xe1\x5c\x5d\xc0\x20\xbf\x87\x41\xc6\x8f\xdf\x6a\x10\xf7\xd4\x03\x51\xfe\x75\x89\xba\x40\x60\xa0\xac\x76\xe3\x5b\xa4\x6d\x81\xeb\xf4\xb4\x55\x7f\xfd\x35\xf5\xa2\x6e\x91\x66\xd6\x67\x2c\x65\xad\xc2\xe1\x8c\xac\x74\x6c\x2d\x5b\x53\xf1\xfb\x17\xea\x71\xba\x56\x63\x8c\x5c\xf9\xe7\x7a\x4d\x10\xb9\xb6\xb5\xfd\x99\x10\x83\x1c\xc3\x59\xef\x04\xf4\x64\xd0\x7c\xbe\xda\x07\x61\x47\xe1\x0a\xe9\x3f\x4c\x12\xa1\x1e\xac\x1f\xd8\x47\xc4\x98\xb7\x88\x18\xf3\x16\x25\x73\xde\x1a\xd8\xbc\x3c\xcf\x77\x05\xd3\xa0\x84\x02\x18\xf5\x2b\x0d\x82\x1a\xfc\x6c\x38\xa6\x68\x85\x64\x1c\xa2\x4f\x70\x76\x23\x9f\x77\x99\xec\xed\x2e\x70\xa5\xb8\x26\x96\xad\x93\xf0\xab\xf5\xd8\x16\xd3\xd4\x5f\x78\x96\x9a\x1b\xbf\xc0\xd1\x09\xeb\xa3\xe5\x6c\xd7\x1c\x14\x7c\x92\x8e\x50\xa5\x47\x49\x07\x20\x01\x84\x00\x78\x5d\x7f\xcc\x93\x99\xdd\x1a\x77\x1e\xd8\x57\xcf\xac\x80\x97\x85\x4a\xae\x46\xc9\x34\x3d\x87\xf5\xa6\xb2\x83\xb3\x67\x56\xec\x8c\x0c\x83\x97\xe6\xf4\x4c\x43\x9f\x33\xf7\xd8\x3f\x95\xf7\x42\xef\xe1\xe6\x90\x08\xc4\xf7\x34\x79\x5b\x0d\xb2\xf5\x3d\x65\x58\xe5\x3e\x44\x0a\x74\x27\x61\x25\x9c\xce\x82\x7c\x37\x10\xe4\xbb\xa4\x5e\xaa\x1f\xc1\xe2\xc1\x1a\x79\x20\x3f\xea\x20\x86\xe5\x88\xa0\xb0\xfe\x98\xa4\xd8\x9d\x7f\x54\x6e\x5d\x14\xc5\x9f\x18\x79\xd4\xf2\xdf\xfc\xb3\xcd\xe0\x77\x74\x4c\x1c\x0b\xb9\xd1\x7e\x52\xf8\x3d\x10\x20\xef\x93\x68\x90\x56\x94\xb5\x1c\x67\x24\x56\xcb\x09\xa2\xe7\x39\x31\x66\xef\xbb\x03\x14\x88\xbc\x2d\xd8\xef\xaf\xe9\xc4\xc9\x6c\xdf\x9a\xc2\xb6\xe3\xf5\xdd\xf2\xad\x48\xfd\x5f\x19\x52\xf0\x7f\xa1\x41\xac\x2b\xa7\xb8\x42\xf3\x58\x93\x72\x9c\xef\xc1\x5e\xa8\xe6\xa5\x78\x3a\xbe\x37\x98\xc4\x8d\xcb\xa1\xc0\xf5\x8e\xd1\x5e\x22\x0e\x35\x1d\x74\xcd\x23\xa2\xb8\xd1\x08\xed\x76\x30\xd7\xf0\x0d\x8f\x23\xf4\xd3\x7f\x68\x10\x45\x3f\x53\xa7\xf7\x4c\x76\x58\x1a\xb2\x3d\x89\xd2\x0d\xf2\x76\x6e\x54\x78\x8b\x73\xf5\x22\x72\x5e\x86\x92\x58\x10\x5d\xfb\xe9\x89\xe5\xed\x2b\xad\x26\x5b\x35\x19\x06\xda\x4d\x08\x01\xcb\x4e\x4c\x14\x12\xa5\x3f\x39\x9d\x0e\xed\xe1\x57\x1b\xd4\x25\xf9\xe9\x18\xd9\x4d\xf9\xc8\xc8\x75\xbc\xdd\x78\x9e\xf0\xc2\x49\x6e\xdf\x1a\x58\xc8\x22\x06\xde\x88\x0f\xb1\xaa\xf5\x06\x74\x2d\xea\xc9\x3f\x57\x0e\x84\x2f\x20\x3b\x75\xd9\x9f\x3c\xdb\x24\x26\xd5\xa3\xb4\x90\x36\xd1\x92\xee\x3a\xc6\x48\xb7\xec\xf1\x51\x38\x9d\x6e\xc9\xf1\x82\x2a\xaf\xd8\x23\xff\x09\x6c\x29\xaf\x8b\x5a\x4e\x12\x0c\xea\x8d\x46\x50\x64\xbb\x4e\x95\xb4\xbd\xcd\x72\xe7\x68\xc5\x10\xcb\xcd\x27\x3a\xca\xf9\xf6\xb5\xbe\xaf\xfd\x66\x98\x9e\xd7\x48\xe2\xa2\x5c\xad\xce\x61\xa1\x4e\xea\xda\x88\xad\x40\xab\x1b\x81\x75\xd1\xd1\xa3\xd7\x98\xfd\xdf\xef\xf5\xdb\x58\xc8\xae\x9e\x53\xbe\xa4\xfe\x83\x9c\x64\xae\x4b\x28\x48\xb0\xad\x45\xea\x0f\x2a\x75\x55\x83\x34\x6b\x3e\x23\xa8\x47\x12\xb5\x84\x52\x98\x05\xff\xbe\x43\xca\x9c\x9a\x77\x44\x92\xe6\xb2\xcf\x88\xf7\xa2\x2c\x4b\x41\x6d\x81\xfd\xfb\xbd\x46\xc0\x68\x7c\x6f\x2c\xb1\x10\xa5\xc9\xbf\x47\x28\x82\x6f\x4b\x51\x16\x59\xfe\x5b\x9a\x8f\xc0\x9e\xde\x29\xdc\x29\xd8\xec\xdb\x51\x26\x04\xa6\x66\xd7\x48\x06\x1c\x2f\x7c\x77\x58\x0e\xb2\x73\x8c\x25\xc3\x89\xaa\xdf\x75\x2c\x10\xa2\x1c\x70\xad\x36\x77\xf1\xf2\x0e\x7b\x5e\x8e\x2a\x46\xfb\xbf\x96\x72\xa0\x8b\x16\x24\x35\x23\x56\xf6\x57\x9e\x6e\x7a\x62\x83\xdf\xfd\xd3\xa3\xa9\xd7\xbc\x3c\xd1\x19\x4c\xab\xf2\x01\xc8\x62\x93\x31\xdb\x78\xbe\x29\x8b\x0d\x93\x3f\xd3\x0c\x2c\x34\xdf\x1a\x96\x5e\x0a\xfe\xff\xa7\x58\x77\x58\xdc\xca\xdd\x02\x1b\x82\x14\x0b\xcc\xf4\x8e\x66\xa8\xfa\x6b\xab\x88\x0f\xc2\x02\xc5\xfe\x97\x46\xe8\x67\x83\xff\x73\x59\xdc\x44\xd8\xa9\x93\x44\x20\x9a\x17\x83\xf6\xfa\x74\xf9\x6f\xd8\xb4\x37\x48\x1b\x02\x24\x1b\x8a\x2f\xc6\x10\x69\x7b\x5b\x45\xd8\x33\x57\xef\xa5\x3d\x9b\x14\x83\x9e\xac\x2a\x9c\xe0\x27\x65\xd2\xf5\x9a\x16\x55\x66\x97\x07\x1d\x6b\x73\x91\x81\xc3\x99\xaa\x09\x55\x4a\x66\x3b\xfa\x62\xa8\x6a\x62\x42\xae\x56\x68\xc7\xbe\x54\x5f\xb3\x76\x25\x5e\x9f\x22\x30\xc7\x39\xb1\x43\x38\x55\xaf\x91\x8e\xdc\x47\x54\xe9\x5c\xce\xac\x59\xc9\x6b\x0c\x09\x66\x17\xd9\x73\xa4\x02\x41\x1d\x98\x6b\x11\x36\x62\x58\xb7\xcb\x54\xe0\xe8\x3d\x33\x0c\xcb\xf3\x28\x11\x18\xf6\xb3\xb4\x6f\xe3\xd8\xb6\xb5\x3e\x84\x18\xf9\x3e\x53\xf9\xfe\x36\x13\x09\xde\xf3\x19\x23\xd1\xca\x12\x99\x28\x5f\xdc\x44\xfc\x0a\x7a\x84\xa3\x38\xf0\x30\x59\x93\x1c\x03\x1e\x2b\x56\x06\x5b\xc4\x6d\x48\x68\xf3\xd3\x15\xec\x3c\x8b\xf5\xa2\x1b\x25\x2b\xd3\xe5\xcb\x20\x3d\x80\x56\x6c\x38\xee\xda\xb3\x87\xf2\x84\x22\x1f\xdc\x01\x5d\x05\x26\x48\x0b\xe5\x57\x41\x0e\xe7\x7e\x83\x25\x3f\x6a\x9e\xbf\xf8\x2c\x11\xba\x8f\xc9\x71\xa9\xdf\x50\x45\x21\x53\x41\x8a\xda\x4d\xfb\x5a\xba\xa6\x12\xed\xc1\x50\x91\xf1\xf0\x61\xed\xda\x77\x26\x3a\x44\x74\x6b\x26\x4b\x6c\x26\x6d\xd1\x30\x07\x3f\xc1\xb9\xe0\xe5\xa2\x48\x1b\x45\x9e\x06\xc3\xf2\xf3\x21\xe9\xa1\x34\x88\xb7\xfe\x0c\xf1\x15\x08\x22\xb9\xb0\x8e\x71\x46\xfb\xf5\x87\xa1\x61\x67\x83\x94\x14\x26\x31\x60\x0b\x0b\xf5\x4e\x16\x41\xcd\x44\x26\x1e\x4b\xf0\x8b\x46\x58\x8e\x5f\x30\xec\x2e\x4b\xf3\x5c\xf2\x8d\xa1\x13\xf7\xe7\x78\x34\xbd\xa1\x58\xa6\x35\xe8\xcb\x46\xa8\xfa\xca\xbd\xd4\xa7\x6d\x1c\xf4\xc0\x49\x02\x05\x0b\x71\x92\xe9\x6b\xef\x34\x82\xf2\xab\x8d\xa3\x1a\x51\xe5\x7c\x30\x26\xb1\x4f\xe8\x5e\x93\x17\x16\x5d\xd2\x8b\x9e\x11\xb7\xb6\x10\x94\x9d\x83\x73\xb0\xae\x49\x01\x6c\x9e\xdf\x27\xc4\x1f\x96\x2a\x22\x0c\x25\xca\x73\x55\x89\x50\x9b\xea\xa4\x71\xbb\xa7\x88\x4e\x57\x9b\x0a\x4a\xaf\x1b\xd4\xfa\x28\x94\xf3\xcc\x32\x3f\xc6\x3f\xef\xea\x83\x5d\x9b\xed\x0d\xbb\x72\xfb\x48\x8c\x30\xaa\x24\x9b\xc3\x31\x3e\x0f\x62\xa8\xba\x29\xf3\xae\xd4\x97\x82\x53\x41\x82\xfe\xa1\x9c\xdd\x88\xff\x6b\xa3\x60\xb9\x9e\x40\xf0\x84\xdf\xb8\x23\xb8\x38\x8f\xa6\x85\xa1\xc7\xe1\xf0\x1f\x35\xcb\x23\xcb\x69\xef\x94\x47\xa9\x87\x06\x94\x47\xa1\x78\x28\xad\x3f\xdf\x7c\x94\xb1\xc8\x34\x9d\xeb\x89\x5c\x02\x4a\x67\xb2\xb3\x7d\x7e\xbe\xbe\x94\x26\xed\xbc\x46\xf8\xa0\x13\xd8\x72\x7a\xf3\x48\x1f\x74\x29\x4b\xa3\xd8\x66\x2c\xa4\xa6\xdd\xd8\x38\xca\x4e\x52\xcf\xcd\xf6\xe6\x5e\x92\xd4\x3a\x5c\xa8\x07\x89\xf1\xfa\x91\xec\x42\xbd\x0e\xd4\x5a\x83\x08\x9a\x92\x5e\x82\xf3\x44\x23\x14\x9c\x4e\x0c\x9f\xa7\xa3\x48\x68\xce\x84\xed\x4b\x76\x8a\x92\x7c\x0e\xa9\xbc\xc5\x00\xd5\x37\xd3\xc4\xe6\x62\x1f\x5c\x01\x5a\x2c\x09\xfc\xe2\x8b\x08\xc4\x1d\x09\x24\x85\x8c\xf7\x19\xd4\x80\x26\x61\xc7\x83\x59\xa1\x0f\xdf\x33\xeb\x4b\x28\x90\x38\x18\x43\x30\x0c\x27\x69\xdb\xee\x7f\xf5\x6b\x33\xc1\x94\xd4\x38\x2c\xbe\xae\xab\xc2\x83\x1b\x67\xe7\xdc\xf1\xdf\xa0\x16\xbc\xd3\x13\x10\x82\xd9\xd9\x7a\x6a\x5c\xa1\xd9\x7b\xd3\x5b\x95\xa4\x70\xb4\xde\xa3\x84\x74\x57\x6c\xf6\xfa\x34\xa5\xd8\xb5\x45\x04\x59\x97\xcb\x9a\x30\x80\xdb\xb8\xab\x49\xb9\xc2\x63\x84\x87\xec\xdb\xac\x67\x12\x9b\x14\xb0\x71\x55\x55\x98\xc0\x56\xdb\xb6\x99\xed\x0c\x62\x69\xf1\x08\x5b\x05\x54\x2b\x0e\xee\xf6\xdc\xa4\xf2\xea\x81\x7d\xcf\x97\x9b\xc4\x31\x97\x95\x9b\x44\x3b\xd5\x60\xdf\xdd\x69\x23\x3b\x46\x41\x56\x08\xdb\xf0\x2a\xd7\xc5\xca\xc0\x5c\xfc\x9e\xbe\x16\x98\x06\x98\x7d\x45\x48\x13\x5e\xd2\x33\x66\x4a\xca\x77\x8e\xff\xb1\xb6\xb0\xb0\x79\x1e\x8d\xf9\xa8\x4c\x9d\x43\xd7\xa5\xab\xd1\x89\x05\xd1\xdf\x92\xa0\x12\x85\x0e\x25\x48\x81\x61\xfe\x10\x47\x18\x12\x6d\x0f\x70\x12\xa3\xa4\xb2\x47\x9c\x53\x18\x47\x6d\xab\x77\xfa\x52\x32\x1f\x48\xe0\xfc\xc1\x78\x9d\xba\x2f\x00\x4a\x67\x79\x37\x65\x85\x7a\x27\xba\x7c\x0f\xe4\xcf\xaf\x91\x49\xde\xde\x94\xd1\xf2\x49\xcc\xf9\x79\xf7\x69\x31\xa7\xfa\xff\x27\xd6\xf7\xdc\xa1\x7a\xd4\xb6\xae\x62\xe6\x41\x43\x01\x40\xe4\xfd\x9f\x2c\x8d\xe3\x25\xa1\x87\xf2\xe8\xad\x33\x54\xf7\x39\x13\xb6\x7b\xdf\x24\x51\xde\x9d\x0a\x09\x97\xc7\x9a\x01\x62\xf9\xd1\x90\xd8\x71\x77\x8e\xdc\xb7\x2f\xa7\x69\xd1\x4d\x63\xa8\x2d\x39\x5a\x69\x2a\xfd\xbd\x4d\xb8\xf0\xcb\x13\x59\xf5\xd9\xd9\xfa\x52\x16\xf9\x0e\x66\xb8\x80\x37\x39\x15\x73\x73\xc2\xb9\xda\xbf\x50\xcf\x06\xb1\x3f\xbf\xb1\x03\xbf\x47\xe5\xf6\xef\xf9\x4a\x56\x7f\x10\x87\x3f\xac\x62\x7f\x0b\x69\xbb\x65\x93\x17\x4b\x26\x8e\x6b\xd8\xf0\x55\x85\x38\xa2\x5a\xc9\x32\x48\xf9\xd4\xbc\x40\xe4\x03\xa2\x33\x7b\x30\x8e\x51\x5f\x4a\x6b\xac\x14\xd6\x08\x6e\xe4\x25\x4a\x35\x9b\xcc\x2c\xe1\x41\xe1\x16\x9e\x21\xa2\xa2\x33\x9e\x4c\xb8\x67\x4d\xb2\xd6\x8d\x62\xbb\xab\x5c\x1c\x8e\x35\x57\xbe\x5e\x45\xa7\x19\xe5\xed\x2a\x4d\x8e\xdb\xbc\xe6\x9b\x6a\x77\x8f\xca\xfd\x0a\x74\xfa\x2d\x31\x6b\xf8\xa5\xff\x73\xe8\xad\xf7\xdf\xad\x37\x03\x15\x81\x2d\xdd\xd9\x4e\x2d\x40\xb1\x91\xda\x71\x89\x0f\x37\xe0\xa5\x63\x65\x12\x23\x7f\x87\x86\x6b\xe5\x16\xd2\x1b\x46\x84\xa7\xbd\x7e\x24\xe4\xcc\xfb\x03\x15\x57\x00\x92\xdd\xd9\x0a\x49\x5a\x58\x38\x58\x7f\x75\xdf\xeb\x8f\x95\x36\xc7\xeb\xc9\xf9\xea\xc7\x26\x2c\x8b\x2f\x83\x6d\x25\x4b\xd3\x7f\x01\xb9\x0a\x02\xe1\xb3\x43\x22\x3a\xb9\x49\x9d\xdd\x3f\x90\x8d\xa7\x7f\xc4\x19\xb0\x2f\x2a\xd2\x47\xf5\xe5\x6c\x10\x31\x17\xf0\x3b\xf2\x12\xae\xab\xbe\x02\x41\xd4\x32\x59\xcf\x26\xbc\x24\xb6\xf4\xae\x3e\xef\xd0\x38\x36\x8e\xd7\xff\xc6\x5f\x5c\x2d\x9d\xe9\x58\xc9\xa9\x91\x4c\x79\x40\xbd\x42\x0f\x2a\xf4\xf2\x17\xeb\xdd\xa8\xd3\x9d\x0a\x5c\x0c\x47\x48\x6c\xff\xf3\x06\x53\xe8\x90\xef\x68\x63\xdb\x31\x89\xd6\x3b\x1c\xf4\x90\x60\x88\x84\x11\x71\x40\x2a\xd1\x5f\xf1\x74\xba\xfb\x5d\x97\xfd\xcf\x28\x23\x97\x17\x69\x66\x80\xf5\x76\xf2\xe7\xc0\x04\x3b\x21\x94\x1a\x71\x0d\x05\x6e\x91\xbe\xcd\xf2\x34\x31\x71\xbc\x3e\x2d\x76\xdc\x39\xa0\xdc\x48\x4d\xba\x78\x4a\x0d\xec\x9e\x9a\xc2\x85\x41\xaf\x3c\xda\x44\x53\x7d\xee\x90\xa7\xd9\x23\x8f\xe9\x28\x21\x7c\x3b\x99\xf9\xba\x93\x16\x74\x47\x56\x18\xc5\xf3\xbe\xb2\xde\x4a\x5b\x2b\x85\x89\x62\xcd\x6e\x23\xaa\xfc\x88\xb9\xd7\x3e\x9a\x88\x3c\x7c\x3b\xd4\x61\x33\x15\x1c\x7e\x74\x77\xe1\xac\xfb\x0e\xb3\x50\x4d\x86\x66\x73\x87\xea\xed\x48\x3b\x0f\x3d\xa0\xd4\xe7\x4d\xb7\x35\x2b\xca\x75\x07\xeb\x71\x9a\xe6\x0a\x9b\x87\xbd\x1f\x11\x8a\x77\x54\x59\x79\x6d\xdb\x65\x9b\x65\x2e\x27\x8a\xaa\xc5\x05\x22\xd3\xbd\xd0\xd8\xda\x29\x7a\x60\x5f\xbd\x1d\xe5\xa6\xdf\x4f\xa3\xa4\xf0\x06\x17\x67\xc8\x59\x4a\xe0\x9f\x1d\xab\x78\xfd\xa5\xff\xfc\x57\x88\xe2\x02\x87\xbe\x83\x33\x54\xe8\xca\x47\x49\x3e\xc8\x4c\xd2\xb2\xd8\x09\xae\x61\x3d\x7c\xc3\x11\xa2\x4e\x37\xed\x76\x66\xf3\x3c\x4a\x3a\x0c\x07\x85\x6f\xac\xda\x25\xa4\xc3\xa1\x55\x59\x27\x6a\xe2\x25\x08\x4c\xaf\xef\xdf\x06\x87\xff\x51\xa2\xfe\x38\x4a\xd1\x50\x3b\x8a\x6d\xaf\x67\x50\xea\x45\x74\x7c\x8f\x1a\x6d\xef\x51\x71\xca\x9a\x0c\x38\x66\x94\x0e\x4e\x93\xc6\xc7\xe9\x89\x9a\xda\x2f\xd7\x57\xf3\xaf\x8e\xa9\xf5\x05\xe6\x90\x0d\x7f\x72\xb7\x4c\xcf\x66\x26\x47\x76\xd1\x83\xa3\x3c\x64\xeb\xf6\x90\x28\x64\x1e\x4c\x24\xa6\x7f\xb9\x5e\x74\x4d\x31\x15\xb6\x87\x76\x6d\xe2\xd0\x46\x13\xbe\xe3\xbf\x70\x35\xf7\xa5\x38\x6d\xad\x2c\x0d\xf2\xc2\x66\x33\xf2\xce\x5e\xc5\xd0\xf7\x66\xbf\xc3\x56\x0d\xb6\xda\x15\xe3\x09\xf2\x71\xa9\x8a\xd5\xd1\x14\x5c\xfb\x77\x7d\x40\x63\xed\x42\xbe\xf1\xca\x66\x91\xcd\x77\x12\xd1\xc0\x99\x20\xd2\xfa\x17\x5e\x6c\x72\xa2\x77\x0c\x35\x41\xcc\xcd\xcf\x8f\x42\x8f\xdf\x9e\x17\x14\xd1\x22\xc7\xe9\xdf\xfe\xf7\x47\x41\x12\xcd\x1e\xee\xdb\x2c\xea\xd9\xa4\x30\x31\x88\x51\x10\xbc\xdc\x90\xf3\x42\xaf\x27\x0a\x72\x0b\x0b\x8b\xf5\x58\x0a\x69\x4e\xde\x8b\x48\x37\x81\x39\x40\xaa\xf1\x3e\xa1\xac\x15\x32\xfa\x58\x88\x68\xbf\x0d\xdf\x54\xd5\xcc\x11\x1d\x2b\x03\x7f\x23\xd0\xc3\xea\x31\xe8\xa8\xf9\xc7\x93\x81\xe5\x3b\xea\x97\x11\x73\xca\xf1\x31\xda\x63\x19\x63\x3c\xcf\x79\x22\xa2\x2f\x7d\x48\xa1\x30\xf4\x15\x98\x8f\xe5\x57\xdd\x6c\x3c\xcd\x05\x18\x53\x74\x53\x74\x1f\xfa\x66\x27\x22\x0f\xa8\xc2\xeb\xb4\xa4\x7d\xc3\x03\xd4\x4e\xcb\x77\x3b\xec\x65\x05\xbd\x84\xe0\x30\xe2\xbc\xb6\x05\x23\xef\x4f\xad\x2a\xf4\xc6\x7a\xd4\xef\x47\x5e\x2a\x46\x89\xb4\x1a\xd4\x31\xff\xdd\xe1\xb3\xe3\x1e\xc7\x6b\x8b\xf5\x03\x8b\xf2\x58\x58\xdc\xea\x0b\xe8\xcd\x70\x5c\x2f\xc5\x64\x51\x9e\x26\xd3\xc4\xb8\x72\x0f\xe7\x2c\x66\xfd\x32\x0b\x56\x33\xe1\xd7\x65\x62\x2b\xee\xa6\x79\x3f\x2a\x4c\x0c\x68\xb8\x83\x03\x73\x33\x5e\x85\x03\xf2\x7a\xbd\xf0\x5a\x31\x4e\xa3\x70\xac\x08\xb3\xf5\x18\x79\xf1\xc5\xfa\x92\xc9\xf4\xe4\x72\x88\x20\xaa\x2b\x1e\xa1\xfa\x46\x96\x2a\x63\x10\x85\xb0\x8b\xbe\xd6\xf3\x1c\x1d\xf2\xa6\x10\xae\xea\x72\x67\x94\x3f\x4e\xe4\xd6\x73\xee\x66\x62\x56\x16\x5f\x39\x58\x17\x14\xa3\x6e\x74\xcf\x59\x48\x3f\xc8\x9e\x74\x3a\x38\x2c\x0f\x83\xbd\x73\x9f\x39\x4a\xef\x8f\xc5\x61\x2d\x1b\x3f\x52\xc2\x32\xc4\xfd\xab\x91\xa9\x11\xd3\xff\x45\x7e\xb9\x8b\x5e\x3c\xb9\x3c\x76\x96\x97\xa3\x56\x64\x15\xd5\x41\x88\xaa\x05\xdf\x7c\x13\x2c\xf4\xdd\x89\xd7\x14\x39\xf5\xe5\x60\xcf\x10\x18\xa9\x26\xbf\xde\x10\x4a\x3a\xef\xa7\x49\x7b\x2a\x28\xef\x6f\x6f\x52\x4b\xf0\x25\x2a\x3a\x5f\xf3\x9d\x7b\xdd\x41\xc7\x12\x21\xc1\x26\x13\x12\x6c\x92\x53\x05\x69\xc4\xd2\x82\x3d\x25\x0b\x15\x16\x7e\x84\x78\xdd\x73\x67\xfa\xb6\x80\x6d\xc0\x99\x71\xbb\xb9\xaf\xe5\xfa\xba\xee\x77\x31\xc7\xf8\x31\x7d\x56\x78\xbf\x77\x19\x6f\x79\x5c\x82\x0c\x18\xe2\x8f\xb8\xa4\xfe\x89\xb8\xe4\x08\x79\xef\xcb\x59\xe3\x28\xaf\xc4\xa6\x6b\x43\xfc\x30\xa4\x5f\xef\x0b\x33\xbf\xe3\x8a\x7e\xce\x4f\xd3\xaa\x4d\x4a\x37\x2f\xb1\x79\x2e\x94\x66\x5e\xb4\x9e\x71\xac\x35\x4f\x5f\x09\x8a\x64\xa7\x0f\x1c\x56\xc5\xe1\xa8\x90\x6a\xb4\x13\x86\xdf\xfe\x65\xdf\x48\x56\x8e\x8c\xd7\xd7\x9c\x75\xda\x54\xff\x9a\x2d\xeb\x6e\x12\x57\x5b\xfa\x6a\x8d\xc4\x3a\x14\xd1\xad\x37\xfe\xe8\xee\x98\xa5\x2c\xb2\xe5\x79\x72\x60\x9f\xeb\xd6\x19\x8e\xb5\xee\xb8\xfe\xa9\x24\xcd\xd6\x6c\x87\x28\x7b\x94\x87\xa1\x31\x46\xca\xe0\x0a\x2e\xdd\x34\x49\xa1\xa8\x8c\xef\xb9\x8e\x31\x47\x01\xe1\xa7\x54\x7a\x3c\x4b\x10\xed\x77\xaa\xd0\xbc\x4b\x83\x28\x2e\xa6\x89\x57\x50\xeb\x4a\xaa\xb6\x23\x9b\x0b\xdb\x40\xc9\x6f\x90\x95\xbe\xd9\x08\x5c\x03\xad\xd2\x6d\x53\x0a\xce\x7c\x8a\x18\xa4\x15\x53\xe0\x6b\x83\xa1\x1b\x89\x73\xdf\xdd\x28\xff\x92\x1c\x78\xce\x90\xc8\xdf\x21\x37\x7c\x04\xf9\x69\x14\x90\x37\x71\xc4\x23\x03\x72\xbc\x11\x72\xc0\x97\xc5\x6d\x52\x62\xc7\x06\x11\x0f\x4c\x8f\xa8\x9c\x79\x6d\x18\x4a\xdc\xdf\xd6\xcc\x9f\x07\xa4\x2d\xbe\x72\x50\x9b\x42\xef\x21\xa5\x85\xb4\xc8\xae\x66\x10\x61\x3b\xaa\x85\x56\x55\xf2\x41\x36\x4a\x65\x4c\xa8\x25\x02\x67\x81\xc6\xde\x72\xd4\xe1\x47\x14\x0a\x0b\xf7\xff\x87\x02\x00\x43\xeb\xd2\xcf\x50\x0e\x75\x1a\x3d\x32\x64\x48\x5f\x6d\x60\xeb\x7a\xe4\xaa\x2f\xd3\xee\x69\xb2\xe1\xec\xff\xe5\xff\x14\x99\x48\x47\x44\x21\x3f\xe4\xf4\x66\x18\x3c\x3d\xa6\x0d\x64\x80\x6e\xd0\xbe\x1c\x5e\x67\xe7\x2a\x2a\x88\xf5\xbe\x59\x77\x5a\x45\x4a\x71\xbe\x79\xb9\x4a\xcb\x29\x36\xab\x92\xf0\x79\xd5\x85\x21\xb7\xc9\x6b\x0c\xba\x49\xfd\xcc\x2e\xc7\xd2\x88\x30\x2e\x3f\xeb\x1d\xba\x7b\x44\xa0\x72\x9a\x9b\x2f\x5b\xc5\xc0\x80\x5d\x1a\x67\x35\xe8\xa6\xf4\xba\x2a\x93\xb6\x9c\x19\x95\x98\xd6\x65\x29\x1f\x70\x4b\xb4\xa2\xd3\x6c\xdd\xc6\x82\x44\x3b\xe0\xc8\xa0\x3f\x26\xae\xdf\x8f\x29\x0e\x89\x92\x16\xcc\x92\x32\x6a\x22\x97\x74\x05\x6e\x9a\xde\x84\x12\x48\x94\x4f\x61\xd5\xa1\x66\xbb\x4d\x5d\x51\x98\x7b\x4d\xa6\x63\x02\xae\x4c\xb8\xcd\x5f\xa9\xb7\x62\x93\xe7\x59\x9a\xf6\x30\x60\x0c\xc9\xc6\xc6\xbd\x43\x6d\x46\xa7\xa8\xb6\x9a\x77\xd3\xb5\xf2\x73\x39\x0a\x09\xd8\x26\x5f\x30\xc3\xca\x30\xd4\x4e\x6f\x05\xde\xbb\xc3\x7d\x9b\xe4\xce\xa5\xda\x3c\xa1\x7d\x12\x13\x2d\x50\xa5\x8f\xb2\x94\x45\x71\x1c\x99\x44\x0b\x5f\x3e\x21\x3d\x3f\x1f\x88\x17\x3d\x4a\xf1\x14\x93\x41\x84\xee\x52\xc7\x29\x4a\x22\xa7\x67\x2a\xb4\xaf\x0f\xd6\x5b\x69\xb2\x1a\xb5\x0a\x27\x41\xe9\x8f\xf7\xe0\x63\x5c\x6c\x3c\xe7\xed\x64\x56\x44\xad\x41\x5c\x0c\x32\x0d\xad\xe1\x05\xbd\x43\xf9\xad\xaa\x34\xce\x4b\x75\xe1\x45\xaa\x05\x7c\xae\xf2\xc5\xeb\xcd\xd6\x8c\x79\x19\x06\xbc\xba\xef\xa9\x72\x51\x62\x7c\xe1\x15\x63\x36\xef\x34\x98\x5b\x0c\x8c\x92\xd8\xe0\xa7\x1a\xb5\x17\x5f\x74\xd7\x9a\xcd\x83\x15\x01\x53\x25\x8c\xe5\x76\xc1\xe6\xa0\xa2\xf6\x63\x31\x1c\x0e\x02\x2e\x8f\x84\x1c\xf8\xbf\x46\xbe\xcb\x8b\xee\x05\xb0\xc8\x0d\xd8\x03\x87\xab\x16\x63\x83\x53\xe3\xe7\x32\x0a\xaa\x58\x35\x1e\xb8\x10\xf9\xba\x19\xe4\x16\x07\x84\xc2\x44\x05\xf0\xe1\x21\xa3\x5e\x8b\x4f\xf1\x7b\x7a\x43\xd2\xb5\xdd\xa5\x14\x53\x4c\x72\x10\x73\xbe\x7f\x86\x65\x38\x93\x55\x9b\xe9\x1a\xf2\x95\x5f\x9f\x38\x46\xe4\x87\xca\xcd\x5d\xca\xea\xc8\xc6\x00\x64\xea\xa5\x50\xd4\xf3\xbc\x81\x17\xe9\x4f\x7b\x51\x6c\x4d\xc7\x4e\x05\x2f\x0b\x8b\x14\x56\xfc\xe7\xe2\x03\x81\x12\xed\xa6\x47\xe9\x74\xb2\xd4\x38\x9c\xa3\x8f\xa3\xca\xcd\xee\x92\x19\x93\xab\x67\xae\x9e\xaf\xd9\x3e\xd2\x86\x0e\xc4\x26\xef\xac\x37\x8d\x90\x17\x5e\x33\x2b\xa9\x1e\xf8\xaa\xb2\x86\x49\x75\x92\x6b\xd4\xcc\x10\x25\x51\x6f\xd0\x13\x45\x57\x25\xa0\xc3\x5c\x7a\x41\xe0\xf9\x79\xd7\xef\x2c\xf3\x8a\xaa\x96\x1e\x28\xce\xf7\x08\xb0\x89\x55\x1b\xa7\x7d\x98\x45\x75\x01\x65\x69\x39\x77\xb0\x22\x2f\x9f\x8b\x2c\xe9\x14\xf3\xf2\x29\x78\xc0\xcb\x9a\x87\xd4\xcd\x89\x4a\xb9\xfb\x35\x13\xaf\xf8\x9c\x8b\xa3\x01\xa4\x8d\x75\x7b\x18\x38\x48\x56\x32\x93\x27\xe9\xba\xc9\xf2\x15\xc9\x22\xa3\xf7\xe9\x6d\x9c\x89\x7a\x43\x02\x2f\x99\x89\x92\x7c\x2a\xa0\x53\x80\xaa\xf5\xc3\x3f\xce\x06\x4e\x2d\x5b\x66\x6d\x3a\xe0\xf1\xb0\x1c\x70\x60\x5f\x23\x96\x60\xf8\x0e\xfa\x37\x55\xa8\x03\x6b\xb2\xc4\x6b\x5a\x04\xd9\x83\xf2\x51\x5d\x35\xa2\x6a\x3c\x62\xb3\x54\x7a\x4e\xb5\x1a\xe9\xe5\xcb\xa3\x3a\x32\x92\x0a\x2d\xdd\x2f\xd7\x4d\x51\xd8\x9e\xae\x2f\x38\x04\xc8\x00\xeb\xf5\xc4\x2f\x01\xb3\x1b\x75\x92\x71\x24\xa4\xe2\xc3\xf4\x66\x54\x95\xa9\x59\xca\xd3\x6c\x49\x25\x16\x1d\x6a\x88\x39\x01\xa9\x11\xad\x3b\xc8\xda\x2a\x65\xe8\x32\xd1\x01\xeb\xf3\x79\x55\x6f\xa9\xf0\x18\xf9\xd5\x00\xbb\x87\xfe\x75\xbd\xf6\x66\xbc\x9f\xa5\x85\x95\x16\xad\x28\xef\x4d\x05\x6c\x84\xb6\x3b\x39\x92\xd8\x72\x1e\x1d\xb6\x68\x4f\x70\x18\x8a\x17\xe8\x3d\x3f\x6a\x90\x29\xda\xd9\x0c\xe5\x22\x54\x04\xf1\xf1\x6b\xf2\xe8\x88\xf8\xfe\x27\xec\x32\xc5\xb6\x73\x77\xdc\x9d\x71\x48\x39\xc5\xab\xb7\x87\x81\xbb\xfa\x31\x20\x28\x1d\x8c\x46\xac\x2c\x42\x8b\x9b\xca\xa6\xee\x22\x88\x9a\xe7\x94\xda\x31\x62\x93\xb0\x03\xba\xf9\x88\x8f\x40\xba\xee\xd8\xd4\x4b\x4b\xec\x7a\x31\x65\xe5\xe1\xbd\x80\x9d\x73\x2e\x74\x19\x50\x01\x13\xf1\x39\x2c\x17\xf2\xd1\x47\xc6\xf9\xdf\x12\xd5\x80\x43\xf6\xf3\xb7\x18\x15\x78\x9e\x58\x54\x4f\x8a\xaf\xed\x83\x0b\xcf\x2c\x3b\xd5\xdc\x4a\x76\x0a\x7d\x60\x89\xdb\x3c\x46\xc9\xe7\xf6\x89\x5e\xb0\x0a\x13\xb5\xd6\xb5\x06\xeb\x1b\x79\x14\x1c\xa7\x7a\xed\x8d\x58\x4f\x64\x58\xa3\x04\x1e\x91\xef\x4a\x70\x48\x97\x6f\x3c\xd5\x0c\x0d\x45\xbb\xab\xd6\x77\x61\xa2\x38\xf5\xb9\x70\xec\x39\x3d\x9e\xf4\x86\xc2\xeb\x6e\xda\xee\xd8\x7e\xf9\x9f\x5a\x88\xaf\x80\x35\x73\x65\x5c\x17\xb1\xf7\x06\x49\x34\x13\xec\xf1\x74\x33\x84\x04\xd3\xa3\x31\xe2\x5f\x1a\x95\x3b\x0d\x89\x12\x61\xce\xcf\x93\xe5\x5f\x8e\xa4\x52\x32\x43\xd9\xbb\xab\x8d\x20\x88\x76\xa3\x41\xf2\xef\x3b\x47\x24\xda\x03\xea\x52\x24\xe7\x2f\x0c\x03\x87\x5c\x6c\x66\x42\x43\x8c\xca\x08\xa8\xa6\x0c\xac\x8f\x6b\x53\x2d\x7d\xfd\xbb\x43\x6a\x74\xbb\x40\x9c\xc1\x79\xd7\xf4\x5d\x6a\x0a\x98\x47\x34\xd7\xe9\x75\x15\x23\x71\xd6\xb5\xc2\xd7\x2a\x33\x8b\xe2\xfb\x4d\xe2\x19\xbe\x49\x3d\x50\x5d\xd3\xeb\x99\xd6\x4a\x5e\x2b\x3d\x24\x0d\xf9\x10\xa6\xb9\xf8\xaf\x22\x11\x23\x22\x19\xe3\x74\x25\xba\xd6\x1c\xf4\x3a\x40\xe8\x84\xc3\x67\x39\xcd\x7a\xe8\xcf\x94\x8f\x00\x1e\x04\xe9\x0b\xbd\x9e\x48\xb0\x09\x6f\xe6\xa0\xa0\xe6\x09\xa5\xc1\x74\x7d\xba\xf2\x7b\x48\xd8\x6e\x9b\x50\xfc\x78\xe3\x8d\x7a\x6e\x63\x64\x8c\xe1\x78\xfd\x37\x44\xbd\xf0\x8e\xfc\x32\x22\xb7\x77\x2b\x72\xa9\x0b\xf5\xbe\x71\x72\x21\x2a\x72\x43\xec\xb4\xe7\xc7\x36\xf4\x61\xdb\xde\x51\x7b\xd9\xa5\x31\x6e\x4a\x1e\xc6\x35\xaf\x93\xf6\xf6\x4d\x58\x34\x9f\xb0\xf6\x49\x10\x90\x26\x39\x4c\x1f\x7f\x73\x3a\x88\x77\x86\xb2\xff\xc7\x43\x52\x82\x3f\x0a\xfc\xb0\xa3\x57\x92\x07\x75\x9c\x04\xe1\x84\x9a\x92\x06\x0c\x87\x40\x2b\xed\x99\x5e\x4f\x12\xac\xcf\xd5\xa3\xa4\xb0\x49\xdb\x02\x82\x40\xee\xad\x53\x65\xd2\x7c\x85\xc3\x64\x04\xb5\x83\x56\x9a\xb4\x6c\x96\xd8\xf6\x0e\x71\xbf\x55\x30\x46\xc6\x0b\xc6\xfc\x5f\x89\xbf\xe7\x85\x64\x82\x87\xf0\x47\x72\x92\x38\x96\xec\x5a\x05\x0f\x95\x89\x23\x9b\x08\xdb\x99\xfb\x04\x09\x6f\xab\x9c\xae\x93\x89\xa8\x79\x25\x1f\x80\x92\xb1\x1f\xff\x05\x1e\xdb\x51\xf7\xba\x20\x71\x29\x3d\x3c\x35\x06\xbb\xac\x79\x51\xec\xfb\x02\x4f\x76\xbc\x0b\x8f\xd3\x3e\x5c\x97\xb1\x21\x71\xa6\x39\x07\x3c\xc7\x61\x87\xe9\xf8\xdd\x21\xc7\xde\x52\x03\xdc\x41\x6b\x75\x17\x2c\x07\xc2\x97\x7f\x4e\x72\x61\xd3\x4d\x82\x79\xfd\x00\xc9\x0a\x44\x9c\xb0\x6b\x88\xec\x6b\x15\xc4\x83\x07\x4b\xa7\xa0\x80\xdd\xd2\xd3\x0b\x47\x26\x66\xee\x73\xee\xeb\x51\xc4\x15\xf6\xc4\xd5\x61\x98\xa5\xa9\xa6\x7b\xec\xe5\xa8\xf8\xfa\x9a\x29\x94\x00\xcc\x4b\x77\x90\x8e\x87\xcf\xbb\xf5\xcd\x7a\x3a\x28\xd4\x6b\x77\x68\x8c\x31\x98\x86\x3b\x43\x62\x33\xe8\x74\xbd\x13\xe2\xf8\xef\xcb\x1f\x70\xbc\xf8\x81\x8a\x55\xc8\xbe\x33\x93\x45\xf1\xfa\x74\xc8\xe0\xde\x6d\xd0\xc0\x5d\x1f\x53\x68\x97\x37\x77\xc8\x8d\xad\xb1\xac\x34\xd4\xb5\xd2\x4c\xcb\xd7\x1e\xec\xf0\x73\xc6\xcc\x56\xf2\xba\xa7\xb2\x25\xf4\xed\xb4\x3f\xb0\x41\x48\xa1\xd3\x74\x78\x24\xa1\x4f\xeb\x25\xaf\xf2\x1f\x1c\xdb\x73\x15\x8d\x2c\x8b\xf5\xf6\xe0\xdf\x91\x90\xa3\xf2\xc3\x76\x57\xb9\x50\x1d\xc9\x9d\xcc\xb1\x0b\xcb\xc4\xa9\xf0\x0d\xb9\xf3\xf3\x8a\x9e\xbe\x22\xb6\x06\xa1\xdd\xee\xe6\x56\x4e\x6b\x97\xb5\x9f\x6a\x06\x37\xe4\xf1\x11\x91\x12\x0f\x7a\xd3\xcc\x7c\x23\x23\xe1\x11\x05\x1e\x38\x74\x87\x2a\x0f\xb7\x2b\x0b\x55\xb1\xf4\x18\x07\x34\xbe\x7c\xc0\x21\xf3\xb7\x4e\xc4\xab\xfb\x5e\x17\x1a\xf6\x81\xf6\x88\x38\x56\xc4\xf2\x4d\x1c\xa0\xb0\x8a\xda\xde\xc6\x51\x2b\x4a\x07\xac\x59\xa9\x22\x83\x7a\x33\xe1\xf3\xef\x17\xd6\x12\x53\xd8\x4e\x79\x72\xfa\x42\xbd\xf6\xb4\xe9\x0d\x61\x6f\xa2\xa4\x15\x0f\xda\xb6\x3d\x13\x74\x96\xaf\x0e\x49\x08\xf7\x22\x0a\xc0\x70\x15\xb7\x8b\xdb\xcb\xbe\x93\xfe\x51\xa5\x46\xd3\xd2\x20\x5e\x91\x52\x32\xbc\x8d\xef\x52\xd7\xd7\x15\xd9\x34\xce\x02\x7a\x4e\x9e\xb4\x30\x45\x6a\x73\x04\xf5\x00\x00\x5e\x95\xbf\x74\x3a\x3c\x01\x64\xc5\x8d\x07\xb9\x59\xb6\xc5\x3a\x3c\x52\x2f\xfb\x17\x12\x85\xc7\x89\x1a\xf5\x47\xa4\x44\xa2\x71\xb6\xfe\x91\x4f\xae\x97\xf3\x54\x74\xb3\x74\x2d\x99\x0a\x15\x59\x90\x0c\x63\x99\xfe\x6c\xc8\x0c\x67\x54\xaa\xcd\x4c\x14\xaf\x19\x18\x58\x9c\xd1\x20\x4e\x57\xc2\x3c\x4a\x6b\xed\xa4\x15\xb9\x6c\xda\xb5\x89\x55\xe8\xa0\x2c\x84\x28\xef\x46\x3b\x58\x45\xf1\xff\x93\xbf\x43\x12\x7f\x6a\x44\x89\xf4\xdf\xa6\xb0\xf4\x07\xb0\x63\x08\x0d\x6e\x21\xea\x80\xa9\xba\xf6\x48\x2a\xdc\xc2\xb6\xba\x89\x2a\xe2\xfa\x7c\xfe\xcd\x06\x71\xca\xdd\x9c\xe0\x07\x9f\x3b\x54\x37\xfd\x7e\x96\xf6\xb3\xc8\x14\x8e\xee\x02\xd5\xb1\xc3\x8d\x80\xba\x38\x4c\xde\x38\x7a\x5b\x04\xf8\x8b\x63\xf1\x09\x69\xff\x42\x66\x5b\xbd\x24\xc7\xd5\xc8\x4d\x2f\xf2\x42\xae\x55\xaa\x46\xcc\x9d\x55\x1e\x50\x39\x97\x42\xb2\xe2\x14\xd6\xca\x59\xf4\x0c\x77\xbe\x1f\xee\x9e\x4c\x13\xa6\x6c\xdb\xa8\x82\xf6\xb3\xc8\xc0\x58\xe0\xf0\x38\x01\x6a\x1e\x56\x6f\x6c\x57\x6d\x2c\xcc\x4e\x01\x57\xfe\x0f\xc9\xa4\x3c\xc4\x69\x88\x7f\x78\x58\xa5\x10\x5d\x86\xb8\x45\xa4\x9d\xf2\xea\x16\xc9\xe8\x39\x17\x29\xa0\xa6\xf3\x7e\x5a\xa0\x36\x8c\xbc\xe4\xc7\xcc\xea\xf0\x71\x83\x7b\x24\x24\xea\x11\xea\x28\xce\x5c\x78\xdf\xe2\x1e\xcb\x14\xcd\x34\x43\x21\xd7\x2c\x2f\x47\xe2\xf0\xae\x22\x86\xd1\x96\x8a\x46\x48\xac\x4d\xea\x3d\x2c\x2c\x08\x2c\xd1\x1f\x91\x3e\x31\xe7\x39\xde\xce\x37\x9e\xf0\xfb\x25\xb6\xa6\xbd\x4b\x46\x0b\x0e\xe1\x4f\x24\x50\xc1\x34\xcc\x8c\x82\xc8\x15\xea\x52\x58\x00\x0f\xc7\x55\x15\x24\x44\xc5\x76\xfe\x3e\xb6\xa5\xd3\x87\x0f\x6e\xf9\xe3\xcd\xe0\xe7\x15\x99\x59\x05\x77\x47\x48\x0c\x28\x28\xdf\x91\x51\x3a\x0f\xc2\x33\xbc\xd7\x02\x50\xf0\x16\x51\xf1\xb3\x3a\x7f\x6e\xb3\xd2\x4c\xeb\x06\xc5\xd4\x7f\x0f\x4f\xea\x8e\x07\x99\x1f\xb7\x88\xcb\x77\x43\x20\xf7\x3d\x18\x5b\xbd\xc1\x2e\xd3\xcf\x13\x4f\x6a\x6e\xcb\x53\xbc\x65\xb5\x62\x86\x02\x23\x9a\xf6\x1d\xea\x3d\xe4\xa8\xcf\x78\x68\xce\xbf\x13\xdd\xf6\x33\xd4\x06\xdc\xb2\x79\x1e\xa5\xc9\x2e\x72\x50\xcf\xca\x62\xc7\x0a\x3c\x49\xbc\xdb\xea\xb0\x3b\xdb\x2e\x13\x81\xea\x28\x4a\xe0\x4e\xec\xb4\xdc\x71\x1e\x62\x51\xbe\xaa\xfe\xd1\x04\x3a\x66\x7e\xbe\x6e\xf2\x19\xa9\x18\xc9\x36\xc5\x8b\xed\x6a\x06\x23\x84\xd6\x1e\x78\x7d\x7f\x88\x9f\x0f\xda\xcd\x1e\xc2\x1e\xd9\x4e\x3a\x25\x87\x96\xa3\xab\xad\x7d\xed\x37\x3d\xc3\x66\xa8\x70\xdd\xae\xe0\x52\x9a\x2b\xa3\xfc\x35\x93\xd4\x88\xee\xf6\x02\xd1\x9e\x85\xdd\x6e\x7b\x4b\xb6\xdd\x76\xe1\xa3\x43\x36\x31\xcc\x69\xf8\xc4\x18\x79\xdb\xde\xd2\xdc\x60\xcb\x9d\xe4\x35\x7c\x45\x62\x1a\xa5\x04\xd7\xaa\x21\x4c\xcb\x5e\x54\xd0\x61\xc9\xa7\x90\x0a\xd0\xfc\x2d\xa9\x6a\x4f\x8d\xc2\x71\x73\xa6\x11\x4e\xa9\x93\x50\xf1\x86\xa5\x3c\x29\x3a\x75\x8e\x77\x5c\xb6\x26\x86\xf4\x3b\x0d\x02\x2a\x5e\x1b\x52\xc2\xea\x28\x15\xc2\x73\xdb\x7e\x52\xbe\x0d\x47\x0f\x93\x4b\x3e\x1c\x86\xa2\xe7\x9f\x1e\xd5\x16\x16\x1e\xfc\xad\xbf\x80\xe0\x40\x5c\xf5\xbf\xfa\x57\x9a\xa4\x01\xb0\x67\xe4\x43\xd6\x0f\xbf\xdc\xa4\xb2\xc3\x43\xad\x67\x20\x36\xdd\x36\x0a\xbc\x62\x7b\x85\x28\xd6\xf5\xb0\x04\xd4\xcd\x5f\xfa\xcb\x4d\x89\xd4\x5c\xac\x4e\xec\x7f\x4f\x8e\x02\x4b\xc8\xb5\x5f\x99\x20\xe7\x97\x94\x7b\xd4\xeb\x6b\xfe\xd1\xb3\xab\x1c\xd8\xe7\xd9\x55\x2a\x9c\xaa\xb7\x06\x26\x2b\x6c\xa6\xba\x0a\xbe\x6e\x73\xc0\xd7\x70\x2a\x55\x86\x96\xb2\xa8\x28\x62\xe5\x26\x44\x3c\xfb\xff\xc8\xee\x70\xed\x82\x5c\xe9\x0a\x55\xb8\xa8\x27\xf2\xc4\x8a\xb2\xc6\x14\xbe\x4b\x92\xd5\xef\x4e\x12\x67\xbd\x72\xb0\xfc\x54\x1c\x69\xec\xeb\xfa\xf4\x03\x07\xb6\x12\x77\x21\x32\xbb\x47\x9c\x6b\xab\x51\x5a\xfa\xb2\xb0\x88\xb0\x9e\x9b\x14\x98\x6c\x56\x56\xbc\x7a\xa6\xd5\x4d\xa7\x49\x91\xfb\x13\x7c\x3d\x8e\x91\xeb\x63\x34\xf7\x35\x2f\x0a\x3e\x85\x14\x87\x3b\x98\x94\x19\x62\xd5\xe6\x3b\x88\xf7\xfa\x3e\xfa\x38\x50\xc7\xd1\x73\x0d\x59\x7a\x34\x8b\x63\xf7\xfe\x54\x5e\x0d\x5b\xe0\x01\xe5\xd5\x82\x10\x7f\xf9\x03\x51\x5e\x08\x56\xc7\x4f\xd9\x9f\x6a\x86\x1a\xc6\xb3\x23\xce\xe3\x90\x3f\x59\x64\xeb\x51\xd2\x79\x5c\x4e\x26\x38\x2e\xd7\x61\xa5\x5d\x82\x03\x8b\xd5\xb3\xed\x2e\xbe\x72\x70\x2c\x27\x02\x5b\x73\x6f\x48\x41\xea\x75\x9c\x54\xfa\x6d\x38\x0c\xf0\x79\xcd\xf1\xe1\xf4\xa9\x49\x2e\x56\xff\xa1\x49\x6e\x00\x56\x3e\x82\x96\xf7\xc7\xbb\xbd\x93\xf5\xa9\x70\x9a\x4b\xbb\xf1\xe6\x91\x61\x08\x2c\xce\x91\xd7\x20\x64\xa3\x3b\x82\x1e\xf8\x3f\x43\x72\x07\x31\x96\x2a\x6c\x38\x8f\x5e\xde\xde\xc7\x00\xc1\xc8\x5d\xa2\x50\xec\x47\x84\x65\x6d\xe5\xcb\x4b\x7f\x42\x71\xf6\xf9\x31\x8f\x24\x8b\x96\x06\xe5\xd1\x3a\x15\x82\xa6\x1f\x0e\x39\x8e\x26\xe4\xd8\x55\xaa\xa1\xaf\x44\x49\xdb\x66\x2d\x93\x29\xf2\x17\xab\xf9\x06\x8c\x98\xde\x4c\x70\xc5\x7c\xa5\xbe\x16\x29\x72\xd6\xf1\xd5\x50\x2d\xf4\x62\x63\x2f\x81\xa2\xb2\x95\xf5\xe9\x00\xaa\x3e\xd9\x20\xea\xc5\x3b\x44\x2a\x7a\x92\x21\x98\x77\x26\x0e\x92\xfd\x0b\xf5\x28\xcf\x8c\x8d\xa1\x07\x89\x24\xe7\xad\x21\x75\x7c\xdf\x22\xac\x5f\x3f\x4b\x7b\x69\x11\x25\x9d\x69\x6a\xe1\xda\x80\x95\x46\x64\x5f\x6b\x06\xeb\xb4\x41\xad\x0e\xb5\x51\x45\xd0\x98\x9b\xa4\x55\x0c\x4c\xb6\x4e\x7c\x14\x77\x89\x39\xff\x2e\xa5\x65\xdb\x69\xbb\xa3\x29\x12\x4d\xb3\x60\xde\x5d\xce\xa5\x2a\x4d\xdf\x4b\x8b\x34\x6b\xad\xb7\x62\xab\xb5\x48\x07\x0b\xa7\x08\xf3\x42\xe3\xd9\xad\x5d\x62\xf5\x37\xde\x78\x5a\x36\xb6\xc7\x90\x1d\x58\x0c\x9c\x7b\x3e\xad\x0b\x78\x8e\xc3\x8b\xcb\xd6\xc2\xcd\xef\x36\x42\x8b\xff\x03\x29\xb9\x78\xb8\x7f\x50\x36\x87\x91\x84\x4f\xf2\xae\x6c\x02\x1c\xb2\xaa\x31\xe3\x2c\xa9\x8c\xb3\xd3\xee\xf3\x10\xe1\x7f\xa6\xe9\x58\x17\xb7\x10\xe2\xf8\xb0\x64\xff\x50\x61\xd7\xd2\xb5\x22\x89\x27\x22\xdf\xfd\x0b\x75\x33\x28\x52\x0d\x62\x5d\x62\xa3\xe6\xc9\x4b\xae\x91\x98\xd5\x19\x56\x00\xec\x46\xab\x26\xdf\x16\xbc\xe3\x7e\x9a\x14\x3b\x43\xbc\xf2\x80\xb5\x58\xde\x95\x11\x43\xdc\x54\x13\x3b\x81\xb7\xd9\x06\x26\x6b\x97\xae\x21\xff\xe1\x1c\x8d\xcc\x03\xda\xb6\x69\x6c\xd6\x81\xf5\x40\xe2\x50\x35\x93\x9c\xa8\x54\xcd\x73\x57\x4d\x66\x41\x66\xe7\xea\x7d\x13\x65\x9a\xd5\x57\xe6\x24\xa2\xb2\x3d\x4a\x26\xb5\x6d\x5b\x4e\xa1\xcf\xf7\x88\x78\x27\xf1\x67\x13\xe9\xae\xfd\x0b\xf5\xd8\xb4\x56\xe2\x01\xb8\xb0\x17\x5c\x8f\xca\xa7\x74\x78\x3e\xc0\x52\xc5\x20\xdc\x24\x6f\xe5\xd0\xd7\xbe\x36\x45\xe4\x91\xe0\x38\xc3\xe7\x15\x05\xe1\x18\xc0\x1e\x25\xb9\x37\x48\x6c\xde\x4a\xa7\xa8\xc1\x44\x56\xe5\x18\x07\x37\x2c\xd5\x43\x5f\xfa\x6f\xc5\xe9\xa0\xbd\xa5\x72\xc5\xa0\x64\x3a\x5e\xa2\x3c\x1f\xd8\x6d\x55\x25\x5e\x55\x04\xc1\xb7\xb8\x66\xb3\x40\x2e\x7e\x9a\x75\x34\xa4\xce\x19\x25\xc8\x0d\x61\x6d\x21\xe9\xa5\xd7\xa3\x67\x18\x95\xdc\x1b\x24\x42\x86\x33\x3f\xaf\x5e\x92\x42\x32\xf5\x86\xa2\xb2\x4e\xb4\x6a\x9f\x1c\x07\xa1\x94\xe3\xec\x20\x3f\xe5\x32\x42\xd5\xfe\x1d\x54\x03\xfc\x1e\xde\xef\xd2\xf7\xd7\x87\xa1\xec\x78\x87\x79\x50\xb6\x2b\x8a\x09\x11\xc4\xb5\x61\x78\x9a\xdb\x40\xc8\x61\x66\xa7\xe0\x1a\x22\x40\xd9\x64\x56\xc8\x5b\x62\x35\x58\xb3\x14\x10\xa6\x0f\x71\x76\x61\x92\xaf\x4d\xac\xd4\x32\x82\xef\x46\xc9\x8a\x44\x72\xbe\xac\xc8\xbd\x4d\xcf\x11\x64\xac\x0c\x82\xd2\x2c\xd2\x9e\x3e\x78\x34\x53\xa3\x00\x12\x99\x6a\x3e\x3d\x66\xbb\xa3\xdc\xb6\x67\xe4\x89\x1d\x1e\x9c\x5c\xde\xb3\x92\x66\x40\x82\x12\x0d\x3e\x4e\xc1\x3f\x88\x55\xdf\x23\x64\x42\xcf\x26\x03\x4d\xc0\xc2\x46\xa0\xbb\x4e\xaf\x27\x12\x2f\x6f\xbc\x31\x4e\xef\x20\x3b\x0c\x3e\xf1\x71\x56\x0d\x3d\x5e\xd5\x96\xbc\x6c\xe2\x58\x92\xa1\x0e\xa5\x88\xd9\x41\x0d\xf4\x3c\xf9\x70\xca\x0f\xe6\xa8\x01\x5d\x84\x9c\x77\x4d\x51\xd8\xcc\xb6\xd1\x6d\x02\xe0\x28\x73\xdc\x29\x8b\x0f\xc2\xbf\xa3\x13\xdb\xed\xb5\xb9\x43\xf5\xce\xc0\x64\x26\x29\xac\x63\xe9\x74\x66\x35\xf4\x88\x30\x9b\x84\xf6\x5a\xca\x64\xfb\x9d\x49\x6d\x60\xcf\x30\x50\xb4\x6f\x92\x40\x22\x8f\x62\xd0\x76\x58\x37\x38\x16\xba\x03\x5c\xde\x3a\xfc\xca\x92\xcd\xe2\x08\x6d\x0b\xea\x47\x37\x42\x7f\xf2\x29\x6a\xfe\xcc\xd3\x9e\x5d\xeb\x9a\x62\x8a\x62\x33\xbc\x3f\xb6\xce\x1d\x92\x35\x3a\x45\x16\x2a\x19\xf4\xa6\x98\xcd\x5e\x86\x1a\x2e\xd5\xe3\x24\xef\x7b\x77\x1c\xf2\xfe\x66\x54\x23\xd6\x74\x55\x8a\xd7\x1b\x0a\x80\xe5\xb5\xb1\x82\x30\x80\x0f\x09\x28\xf9\x90\x40\x18\xad\x34\x69\xa7\x58\xe4\x58\x24\x38\x0b\xf5\x9a\xc6\xa3\x6d\xe3\x34\x63\xb9\xe0\xf3\xcc\xa9\x7e\x9e\x84\x85\x7b\x26\xeb\x44\xc9\x0c\x89\x5d\x9c\x80\x1f\x83\x17\x3a\xc3\xd4\xa5\x68\xf7\x43\x89\x6a\x8c\xee\xe9\x7c\x15\xf4\xb8\x58\x8b\x5a\xc8\xb7\xbb\xce\x86\x72\xff\xb8\xc6\x86\x47\xe5\x32\xdb\x16\xc8\x25\x67\x52\x81\x98\xd8\x1c\x12\x47\xff\x66\x90\xaf\x30\x59\x16\xe5\x93\x4a\x20\x08\x70\xde\x1d\xd2\x24\x5f\xa5\xac\x09\x4a\x87\xe5\x89\x5f\xf3\x15\xf9\x6d\xb2\xbb\xe1\x93\x5c\x19\x8e\xf5\x23\x12\x55\xd0\x9a\x35\xc5\x74\x30\x0f\x9f\xc8\x2b\xe9\xf5\xb8\xd5\xc7\x1a\x76\x07\xc2\x56\x07\xf7\xc0\xbe\x7a\x7f\x50\xec\x90\xb1\x85\x2f\x2f\x74\x90\x8b\x9b\x23\x84\x2d\xa8\x11\x9f\x94\x88\xc9\xc1\x7e\x03\xaa\x4d\xbb\x0f\x10\xc0\x4c\x35\x29\xe3\x9c\x49\x4e\x3d\xa8\xd6\x87\xee\xa0\xbd\x4d\x8a\x82\xc5\xf2\x13\xcf\xd0\xeb\x5e\x29\x74\xd2\x13\x17\x02\x5f\x4a\x56\xdf\x67\xb6\x87\xfb\x55\x7c\xcb\xae\xa4\x8b\xd8\x02\x01\x09\x54\xc0\xf4\xba\x42\xf0\x74\xb1\x1e\x25\x09\xc4\x7d\x5f\x0f\xa9\x2b\x1f\x99\x61\x5b\xba\xc5\x16\x10\x7f\xda\xf5\x3e\x13\x18\xcd\xde\xc7\xea\xc5\x4a\xd1\x5e\x62\xb6\x3b\x30\x9c\xdf\xa7\x3a\xce\xfb\x55\x12\xc5\x65\xb4\x1c\x25\x36\x5b\x9f\x22\xb4\xf5\x49\xca\x25\x3e\xa4\x24\xf9\xf5\xb1\xf0\xce\xae\x5b\x24\x94\x31\xd8\x77\xa9\xe8\x7f\x61\x48\xad\x5f\x6c\x5e\x4c\xb2\xfe\x04\xd0\x42\x0e\x29\xcd\xac\x5f\x70\xea\x80\x95\x06\xb3\xa4\xf8\xec\xf3\x4f\xe1\xd4\x75\xf0\xef\xa0\x28\xa8\xcc\x4a\x28\x9a\xdf\x66\x51\xc6\x0f\xe4\x40\xf3\x75\xf6\xd2\x67\x50\x16\xc6\xc6\x38\xdf\xd4\xec\xdc\xb8\x68\x01\x9e\x6b\xc7\x28\x78\x33\x1d\x9b\xf5\x6c\xa1\x52\x75\x9e\xb6\x37\x38\xda\xc7\x2b\xe0\xbd\x8b\x75\x13\x65\xfd\xd8\x24\xbe\x97\x0b\xb0\x8a\x5f\xe0\x81\xf5\xa6\x4a\x75\xc3\x0c\xda\x11\x84\xbc\x50\x3a\x47\x22\x46\xaf\x89\xf3\xc7\x1e\x6e\x75\x43\x7b\x3f\x8a\xcf\xda\x65\xa1\x37\xe4\xc1\xf7\xa2\x38\xb6\xd9\x34\x9e\x04\xf0\x23\x65\xb9\xd4\x9b\x46\xa8\xee\x2b\x5d\xb4\x63\xb2\x25\x12\xad\x28\x76\x5d\xc7\x38\x37\x8e\xc9\x42\xd3\xeb\x31\x68\x45\xd4\xce\x1f\x93\xc9\xc0\x72\xb8\x31\x24\x7a\x64\xf4\xee\x60\xfe\x1e\x6f\x32\xf4\x4c\x26\x16\x93\x01\xe8\x27\x3c\xab\x2b\xb0\x02\x18\xec\x8f\x84\xc2\xc3\xeb\x3c\xed\x77\x7f\xa4\x4f\x8d\xf2\xfc\x7b\x63\x4a\x76\xb1\x00\x1a\x4b\x63\x86\x05\xf4\x7b\x8d\xc0\x45\xfd\x7b\xe4\xdf\x94\x11\x7c\x3e\x1d\xca\x99\xd0\xb8\x73\x69\xdc\xf2\xd9\x90\xfd\x00\xbd\x8c\x5e\x93\xd1\x5c\x8b\xe2\x38\xdf\x42\x96\x19\x68\x0d\xab\xd2\x62\x5d\x93\xb4\xd3\x01\x00\x62\xde\xa3\x5d\xf0\x2a\x3a\x2c\x9c\x9b\x0d\x92\xc7\x64\xc2\x14\xcc\x30\x0a\x79\x25\x19\xdd\x39\x00\x9c\x1c\x16\xfe\x59\x88\x01\x13\xce\xc4\xf1\x11\x60\x5f\x61\x3d\xdd\x83\x4d\xf4\xde\x81\xe7\x3b\x9f\x69\x92\x62\xc4\x27\x95\x14\xcb\xe0\x43\xae\x85\x12\xbc\x46\x03\x7a\x53\x55\xf0\xf7\xe9\x3c\x52\xfe\x54\x67\xd7\xa1\x98\x1f\xc5\x21\xb4\x96\x66\x2b\xfe\xa8\x84\xbd\x51\xa6\x66\xbd\x61\x09\xfe\xa8\x70\xe0\x0a\x08\x11\x82\x55\x4e\xaf\x03\xb6\x22\xb3\xf1\xa0\xad\x0a\x00\x88\xf0\x8f\x0d\x03\xa0\xeb\x18\xf9\x0e\xad\x34\xef\x45\xad\xa9\x72\x6a\x01\x0b\xff\x09\xb1\x70\x5f\x96\xe5\xe0\x14\x5d\x48\x75\x27\xcd\x7a\x60\x06\x28\x57\xaf\x9b\xd1\xd0\x4f\xa2\x22\x7a\x6e\xde\x43\x73\xc9\x09\x22\x06\x58\x4a\xb3\x4c\xd4\x4e\x50\x51\xc3\x14\xfe\xa0\x11\x0e\x8c\x1f\x54\x15\xba\x96\xad\x0d\x8c\x22\x6e\x80\x42\xb1\xfa\xd4\xc4\x41\xe0\xa9\x9a\xa2\x38\x96\x98\x16\xfb\xf6\x77\x30\xa5\xc8\x66\x5c\x6e\xb0\x2a\x26\x05\x8d\x99\xcd\x07\x31\xe2\x37\xe7\x32\x91\xfb\x34\x24\x00\xfa\x9a\x13\x56\x51\x6a\xab\x46\xc8\x01\x1f\x1f\x12\xed\xde\x25\xca\x02\x20\xda\xf1\x8d\x7c\x9f\x30\x29\xc2\x27\x15\xa2\xf2\x28\x12\x47\x6f\x0d\x2c\x06\x9e\xfa\xff\x5e\x0f\x2a\x67\x0c\x68\xae\x79\x5a\xbf\xcd\x71\xae\x6b\xbb\x26\x3f\x5c\x85\xa6\x7b\x92\x75\x41\xc4\x05\x28\xc7\x46\x89\xc9\xc8\x98\x9e\x26\xfb\x62\x96\x0b\x9b\x3d\x23\x93\x8e\x28\x93\x72\x2f\x4f\x7c\x69\x54\x1a\x18\x87\x7c\x2e\xc7\x05\x1b\x5d\x59\x53\x91\xac\xb9\x23\x06\x0f\xde\xc1\x11\xbc\x11\x8e\xbe\x8b\xac\x66\x34\x35\xe2\xb8\xe2\x12\x5e\xd6\x2b\xc2\x87\xe6\xad\xa7\x9a\x72\x48\xc3\x23\xba\xcb\x1d\x6a\xdf\x6f\x10\xe7\xda\xe6\x30\xc8\xd4\xcd\xc0\xac\x38\xbe\x3b\xdf\x76\xb1\xf3\x4f\x09\x15\x19\xa6\xfc\x54\x85\xdb\x53\x6f\x0f\x7a\x7d\x17\x8d\x29\x61\xb8\xac\x12\xc4\xd8\x17\xb9\x20\x39\x39\xab\x8b\x07\x16\xeb\xb1\x19\x24\xad\xae\x55\x0d\x13\x24\x81\x8e\x72\x2f\xde\xd1\x80\x6a\x5b\x33\x2b\x76\x3a\xb4\x3d\x9d\x20\x81\xd2\x6f\xcb\x9a\xd3\xff\x3f\x24\x6a\xdb\x6f\xfb\xa6\x44\x93\x74\xb2\x75\x49\x45\x3b\x19\x3f\x6e\x44\x0b\x4d\x46\xdf\x46\xc6\xde\xb9\x9a\x04\x6b\x3d\x83\x2f\x76\x68\xd2\xad\x91\x71\x69\x3e\x13\x3b\xc8\xd2\x7c\x90\x75\x6c\xaa\x2c\x2b\x58\xa8\x27\xa9\x69\xf5\xe4\x58\x4a\xc5\x26\x45\xd4\x42\xcf\x07\x13\x50\x61\x3f\x6e\xc8\xb1\x88\xd0\xe0\x5f\x55\x51\xbe\xaf\xa7\x2b\x69\xd7\xf4\x00\xd1\xf7\xea\xf1\x0b\x5e\xa5\xe9\x14\x89\x48\x74\x06\x51\xdc\x96\x42\x74\xd0\x0d\x90\x33\xd3\xa1\x62\x2a\xda\xea\x96\xa3\xbc\xeb\xb5\xa3\x90\x8c\x80\x35\xc5\xb0\xdd\x19\x53\x16\xa9\xe4\xf3\xc8\xa2\xe5\xc0\xca\xe1\xf9\x03\xbd\x22\xdc\x07\x1e\x95\x9c\x9b\x81\x23\x40\x72\x04\x42\xcc\x26\x34\xb6\x87\xdb\xf1\xfa\x73\xe5\x5b\xa0\x83\x49\x15\x23\xf1\x85\x4f\xe0\x8c\xc3\xe2\xb9\x01\x1f\x03\x29\x1b\x2d\x37\xc0\x9b\x7e\xd0\x20\x12\x85\x3b\x32\x0c\xc8\x76\x43\x1b\xcc\x67\xc2\xca\x09\x57\xd4\x5f\x63\x8c\x8e\x0d\x39\x2a\xfd\xb2\x21\x85\xc9\x33\x42\x05\xc8\x8a\xb4\x98\xbf\x27\x46\x61\x8e\xdf\x41\x9e\x19\x0e\xd2\x76\x54\x85\xb0\x61\x4f\x35\xc8\x75\x82\x62\x10\x5c\xfe\x4d\x75\xa9\x1d\xcd\x2c\x2b\xf8\x15\x83\x2c\xb1\xed\x69\x6a\xcd\x38\xad\x01\x1c\xec\xc3\xbb\x4c\x31\xfb\x6e\x23\xb4\x73\x94\x9e\x67\xc8\x41\x24\x76\x39\x2a\xdc\x6e\x66\x31\x54\x04\x34\x9f\x63\x2f\x38\xe0\xe9\xb3\xf4\x00\xfd\x34\x13\x32\x6f\x61\x83\xc5\xfe\x38\x09\x03\xa5\x37\x8d\xd0\x6c\x77\x84\x07\xeb\x08\x25\x50\xb2\x32\xea\xca\xbc\x08\x05\xf3\x43\xeb\x75\xc3\xad\x95\xc2\x2c\x61\x19\x7b\x88\x73\xf8\xc4\x85\xad\xec\xf9\xaf\xee\x7b\xbd\xfe\xf2\x5c\x8d\x88\x87\xee\x0d\xc3\xb2\x1d\x27\xc0\x5b\x95\xe4\x52\x69\xf4\x82\x06\xab\x63\x51\x43\xdb\x04\xd2\xde\xb5\x09\xfa\xc5\xfd\x0b\xf5\xcc\xbe\x35\x88\x32\x10\xd9\x6d\x5e\x86\xfb\x36\xa9\x0a\x56\x9a\x09\x9b\xa8\xf0\xb6\xc3\x8e\xc8\x90\xe8\x8d\xaf\xf8\x2f\xc7\xa9\x41\x95\x26\x78\x6d\x3b\x9a\x5b\x5b\xce\xb0\xba\xae\x8e\x25\x48\x7c\x0f\xa3\xea\x02\x23\x8d\x03\x57\xe9\xb6\x2e\x24\xbd\xa3\x56\xe7\x37\xb3\xaf\x0a\x3a\x0a\x5f\x52\x6b\x86\x1e\xc1\x73\x8c\xb6\xe6\x5a\x96\xd3\x1b\xd4\xf6\x3f\x19\x2d\x87\xe8\xe7\x0d\xdb\x89\xd7\x9f\x28\xff\x0d\x51\x9c\xc6\x07\x5e\x6e\x6b\xee\x90\x9e\x31\xb7\x87\x63\xa0\x91\xd0\x17\xa3\x9d\x29\x7e\x05\x85\x8e\x93\x8b\x22\xbd\xe1\x56\x53\xb9\xf5\xf4\xff\x93\x1c\xd0\x1f\x4a\x93\x09\x0e\xce\x1b\xc0\x80\xc3\x24\x6c\x00\xb2\xa0\x37\xfe\xa8\x58\xb7\x26\xcb\x35\xac\x72\xc1\xbc\xac\x30\x00\xc1\x67\x9a\x9c\xa7\x97\xd1\x70\x15\xef\x27\x43\x29\xb8\x95\xd9\xc2\xee\x94\x27\xc5\x69\xb8\x41\xf0\x75\xb4\x28\xfb\x80\x47\xbe\xdc\x49\x49\x04\x05\xe0\xcf\x99\x8b\x9d\x88\x5a\xb7\x4d\xac\x3e\x90\x20\xf5\x63\xb3\xae\x6e\xb8\xd7\x33\x0c\xec\xb9\xe7\x26\x9c\xf7\x57\xf7\x2d\xd6\x5b\x71\x9a\xff\x89\xe8\xa9\xb1\xc3\x2a\x1f\xf4\xca\xf5\xed\x81\xe9\xdf\xa2\x58\xed\x5b\x15\x01\x73\x3d\x2a\xc7\xc1\x84\x5f\x80\x8b\x78\x81\x38\x90\xb9\x69\xe3\xcd\x34\x6b\x3b\x2c\x8c\xba\x40\x62\x9a\x9d\x3b\xf4\x7c\x88\x06\x44\x60\xab\x95\x99\x42\x51\xa7\x4e\x25\x35\xb8\xfa\x17\x1b\xa1\xa7\xe4\xd7\x2d\x48\x0e\xc6\x96\xb0\x2b\xae\x6f\x3d\xc8\x67\x67\xc7\x19\xa5\xa6\x42\x3b\x81\xaa\x64\x20\xf1\x0c\x46\x6f\x9c\x34\x3b\x9a\x81\xdc\xb6\x30\x63\x44\x2f\xbf\xc5\x44\x2f\xbf\x55\xa5\x08\x9c\x0f\xfa\xfd\x78\x1d\x66\x0f\x33\x7f\x94\x6a\xd3\x47\x27\xc6\xb5\x0c\x32\xfb\x59\x94\xb4\xa2\xbe\xf6\x0d\xe3\x2f\xb7\x51\x01\x7f\xdb\xc8\x79\xe8\x6b\x69\x96\xdb\x64\x2a\xb4\xe4\x9c\x83\x53\x88\x7d\xfa\x8f\x87\xc4\x64\xb6\xc1\x18\xd7\x41\xaf\x67\xb3\x99\xc0\x03\xf9\x5b\x32\x69\xca\x7d\x4b\x5c\x91\xd0\x33\x75\xf9\x19\x79\x57\xe4\x64\xde\xa3\xd3\x25\x5d\xca\x6d\xb6\x6a\xb3\x7c\x9a\x72\x77\xdc\xae\xa6\x15\x78\x18\x92\x0f\x08\xc2\xf1\x81\x07\xc3\x0b\xe0\xd3\xb4\xba\x3b\xc7\x49\xe2\xbc\xa8\xfb\x79\x82\xa4\xbd\x00\x28\x93\x43\x1f\x12\x7b\xf1\x77\x1a\xa1\xc8\x02\x9a\x4b\xf7\x4d\x5b\x2d\xf5\x81\x7d\xf5\x15\xab\x23\x87\x73\x6c\xaa\x39\xd1\x06\xa0\x7a\x68\xbe\x44\xb1\x96\x99\xa4\xe3\x33\x2a\x8a\x13\x87\xe3\xed\x40\xe3\x15\xdc\x6a\xbd\x74\xd5\x4a\xef\xac\x0b\xba\x43\x05\xf1\x71\xd0\xce\xfb\x8e\xfa\x03\x94\xbc\xf0\x48\xfc\x53\x2c\xeb\x26\xb9\xbf\x28\x07\x03\xec\x4b\xfa\x35\xa7\x89\x44\x0d\xf0\x15\xc0\x58\xaf\x4e\xc8\xf9\x97\x07\x54\x9a\xb5\xba\x76\x4c\xf8\xd8\x15\x2d\xb8\x82\xb1\xb5\xe6\xfe\xab\xf5\x57\xf7\xcd\xc9\x11\x02\x67\xe6\xdf\xc2\x49\xf2\x0c\x11\xbe\x28\x70\x67\x48\x07\xde\xef\x89\xd5\x86\x13\xaa\xc4\x2b\x40\x7b\xbe\x57\x45\x97\x50\xa4\x7d\xed\xd0\x42\x29\xf7\x2c\x95\x75\x99\x4a\xe5\xaf\xfd\xb5\xbf\x52\xab\xcd\xce\xe9\x09\x70\x91\xb4\xac\x82\x4a\x5f\x3c\xe8\x2d\x59\x10\x95\x20\xef\xf3\xbf\x60\xa1\xc0\x30\x81\xe2\x81\x34\x4b\x7d\xc8\xec\x7d\xd6\x65\x11\x8c\x09\x99\x8e\xb7\xe5\x1d\x91\x84\x7c\xa2\x19\xfa\x12\x6a\xe2\x13\x02\x6d\xf4\x7d\xfc\x86\xc3\x30\xb8\x67\x31\x4b\xb9\x08\x99\xfa\xac\xec\xdf\x21\x8e\xb8\xbf\x43\x39\xe3\xd2\x9c\xa6\x49\x5e\x63\x40\x42\xe8\x12\xbf\x18\xf8\x47\x6d\x96\x3b\x18\xa6\x13\x32\x0c\x54\x63\xff\xed\xf9\x09\xab\xe2\xb3\x05\x03\x1b\xc7\xe2\x5d\x79\x12\xcb\xf2\x63\x4e\xd1\xb2\x2a\xf9\x6d\xa2\x9e\xf3\x1b\xe1\x1e\x5e\xa6\x5e\x3b\x0d\xe7\x80\x04\xb8\x53\x95\x71\xcf\xec\xaa\x29\xe3\xc8\x69\xd6\x83\x84\x3d\x80\xbb\x0b\x5f\x04\xe3\x77\x82\x75\x84\x26\x09\x32\x16\x16\xa4\x51\x42\x11\xe1\xae\xcb\xae\x46\xfa\x26\x15\x9d\x2e\xa6\xd5\x4a\x7b\xfd\xd8\x31\x83\xf8\x14\xad\x4f\xa9\x9d\xa6\x95\xf5\xd7\x7f\xed\xbf\x98\x66\xf0\xe0\xc7\xd4\x43\x85\x8d\x0b\x9f\xe5\x0a\x53\x10\x4d\x35\x7d\xd9\xbe\x9b\xae\xb8\xe2\x02\x80\x78\xc7\xf0\x46\x7a\x43\x85\xf1\xbe\xe9\xd8\x19\x52\x0a\xd7\xc8\x16\x1d\xb9\xef\x61\x80\x9c\x8c\x5d\x2d\xb0\x89\x4b\x27\x96\x03\xbd\x84\x94\xe9\x52\x96\x16\x22\x17\x5d\x0e\xb2\xf3\xcb\xa9\x3f\xf2\x24\xf5\xe5\xe4\xa6\x88\xf2\x65\xe0\xbc\x9c\xae\x2e\x15\x95\x8e\x93\x7e\xf3\x2d\xef\x36\xf5\x4d\x94\x14\x53\xe3\x52\x6a\xe5\xf3\xa2\xc6\x0e\xae\x17\xd8\xf4\x23\x55\xbc\x26\x6d\x9b\x44\x2e\x8b\xe8\xd2\x8d\x54\xb3\xbc\x34\xfc\xa5\xc9\x52\xb4\x4d\x56\xa3\x2c\x4d\xc0\x8b\x37\x29\xef\x4e\xcd\x71\x15\x1d\x32\xf5\x5e\xda\x8e\x96\x45\x80\xa7\x34\x53\x2e\x64\xa3\x0e\xf2\x49\xb0\xcd\x57\x94\x67\xa0\xc6\xd2\x93\x7a\xea\x39\xc1\xfa\xe0\x31\x15\x69\x56\x3e\x5a\x0e\xc6\x3e\xd7\x55\x5b\x9e\x39\x7a\x1d\xce\xb6\x25\x5b\x84\x38\x19\x10\x13\xd4\x2b\xf5\x7a\x8c\xfd\x3e\x2b\x4c\x16\x4d\xd3\xf2\x7a\x20\x73\xee\x04\x27\x43\x1e\x11\xb9\x74\xf8\xb7\x7f\xe8\xbd\xd3\x32\xcc\xc9\xd2\xb6\x9d\x22\x40\xec\x69\x2c\x42\x25\x53\x6a\x04\x62\xdc\xa3\xde\xda\xad\x44\xda\x1a\xea\x09\x04\xca\xd9\x55\x38\x78\x83\xd4\x5c\x1e\x0e\x03\xf8\x6e\x69\x90\x47\x89\x55\x1d\x03\x02\x1e\xfe\x78\x18\x92\x00\x3f\x1e\xe3\x2c\x6e\x9b\xb7\xa4\x83\x02\xe8\xba\xe3\xa4\xa0\x37\x22\xdd\x8e\x0f\x1b\xdc\x5d\x1e\xf6\x4c\xd7\x24\x6d\x14\x29\x80\x95\x9b\x11\x27\x0d\x5d\x2b\x57\xb1\x1e\x1d\x9f\x1d\xb9\xe0\x9f\x0e\x69\xdd\x5c\x6b\x30\x05\x5e\x88\x88\x1e\x6b\x92\xfe\x1f\x2a\x51\x80\x71\x1d\x1f\x86\x3a\xea\xa4\x84\x6b\xe9\xe0\xb5\xd2\xc2\x13\x4d\xc3\xfe\x5e\x65\x63\x7c\xd5\x97\x84\x33\x91\x0b\xa9\x91\x04\xcd\x06\x1d\xd6\x1b\x8f\xcc\xa4\x67\xe9\xa0\xd3\x55\xa3\xa7\xd8\x65\xae\x39\x9c\x64\x71\xc4\x72\x51\x66\xbb\x6a\xac\x9d\xe0\x6b\xb3\x6f\xe3\xc8\x46\x7a\xe7\xac\xd4\xd1\x54\x59\xac\x11\x12\x2e\x1a\xb0\x78\xc1\xbe\xf2\x77\x94\x39\x4b\x83\x4b\x6c\x9f\x3b\xe3\x4a\x90\xcb\xc5\x13\x35\xe2\xdb\x95\xc1\xc4\x1f\xfe\x08\xbf\x8a\x83\x13\xbd\xb8\x2a\xe8\x35\x24\x36\x57\xb5\x56\x38\x9d\xbf\xd9\xa0\x94\xf3\x37\x87\x41\xa6\x08\x6d\x36\xc8\x78\x4e\x09\xae\x1b\xd1\xf2\x7d\xa4\x7f\xf4\x37\x1a\xb4\xcb\x7f\x24\xd3\x87\x99\x38\x41\x03\x95\xaf\x67\x91\xaa\xde\xe2\x69\x94\xc5\xc0\xf1\x2b\x97\x2f\x83\x9c\xeb\x95\x46\x68\xc4\x5f\xb3\xc2\xfb\x5d\xa4\x89\xb8\xba\x7e\xaf\x2c\x90\xa6\xf2\x78\xa2\x3a\x94\xa6\x1e\xc1\x8d\x91\xc6\xab\x8e\x4f\x08\xee\xb7\x6a\x4c\xea\x4d\x25\xcf\x55\x6a\x3c\x9f\x86\x53\xe6\x27\x82\xb4\x13\x13\xab\xb4\x74\xad\x4c\x14\xe7\xfd\x28\x21\x5e\x21\xf8\xf9\x7a\x1d\x28\xff\xd2\xb8\x0d\xb0\x32\x8e\x80\x4b\x02\xf6\xf7\x08\x06\x4f\x29\x0b\xb7\x07\x59\xd5\x3f\xdb\x0c\xd3\x72\x82\x48\xc8\x6e\xe0\x55\x00\xfb\xb9\x87\x0d\x0a\xfa\xd3\x3f\xd3\xa4\x44\xd1\x7d\xd9\x6e\xca\xee\x26\xd8\x38\x9f\x18\x08\x9d\x0d\x4f\x07\x66\xf8\xd8\xf4\x03\x7d\x2e\xfe\x15\xe7\xb9\x5e\x57\x85\x61\x69\x66\x3b\x69\xa2\xf0\x1d\x18\xbf\xff\x9e\x4a\xd7\xdf\xc0\x8e\x55\xcd\x27\x66\x13\xcf\x6c\x3b\x52\xf2\x31\x75\x52\xb6\x35\x03\xcb\xf4\xb6\x31\x35\xb0\xb4\xb3\xbe\x27\xc0\x1a\x74\x52\x7c\xcb\x64\xd0\x3f\x3a\x4e\xcd\x8b\x30\x48\xc8\x09\x9e\x96\x81\x50\x1d\x69\x86\xc0\x6f\x92\x11\xba\x80\x9d\x42\x2c\x84\x6e\xe8\x77\x35\x89\x8f\xfe\xc6\x44\x72\xea\xd5\x7d\xf5\x7c\xd0\xea\xd6\xa4\xb2\x8e\x30\x07\x4a\xe7\x7a\x4d\x7d\x5e\xe2\x5f\x0a\xda\xbd\x16\x12\x38\xc7\xe4\xe0\xd0\xeb\x71\xd4\xb8\x1d\xd4\x48\xfb\xe0\x22\x09\xd4\x4c\xc2\x36\x7e\xb9\x9e\x77\x53\x30\x5e\xe2\x85\xee\x90\xf8\xae\xb2\x5f\xe2\xe5\x26\xbb\xf0\x90\x86\x5f\x53\x3e\x31\x2c\xd0\xed\xcd\xff\x9f\xb1\x37\x8f\x91\x24\x4b\xef\xc3\xba\xb3\xaa\xaf\xb9\xaf\x25\x57\xa2\x04\xa5\xa8\x35\x47\xb0\xc6\xbb\x22\xf9\x87\x0c\xfe\x13\xa9\xae\xd6\xce\x76\x49\x5b\x53\xa8\xe9\xed\xa1\x06\x04\xdc\x2f\x23\x5f\x65\xc6\x54\x64\x44\x6e\x1c\x55\x53\x6d\xff\x65\x1b\x30\xe0\xbf\x7c\x48\x26\x04\xc3\xb0\x4c\x11\x26\x41\x91\x36\xa9\x25\xb5\xa4\x48\x3a\x73\x57\xe4\x0e\xf7\x9e\x6b\x77\xee\x9e\xbe\xef\xfb\x3e\xab\x8d\xf8\x7e\xdf\xf7\xde\x17\x95\x31\xb4\x81\xf9\x23\x72\xba\xaa\x32\x33\xe2\xbd\xef\x7d\xc7\xef\x50\x26\x81\x17\x39\x46\x21\x8d\xba\xaa\x9c\x44\x4c\x92\xa4\x65\x12\xda\xea\xcc\x9e\x55\x40\xec\x1f\x8e\xbd\xa6\x23\xab\x06\x3a\x1e\xc0\xfc\xbc\x33\x84\x7d\x52\x5b\xb3\x0d\x78\x84\xcf\xea\x7c\xaa\x7b\x73\x44\xc1\xcb\xd3\xd1\x28\xcd\x89\xf3\x85\x32\x42\xf4\x76\xab\xdf\xc4\x3c\xe5\x93\x40\x69\x5e\x5c\x24\x34\x22\xff\x03\x7f\x0d\x4c\x57\xae\xd4\x67\x5c\xab\x76\xfb\x66\x9e\xf2\xcb\x6e\x6d\x78\x6d\x08\xd6\xa7\x17\x92\xb6\xef\xa8\x9e\xa1\xe7\x28\x7c\xed\x86\xf8\xd2\x37\x43\x59\xf1\x48\x09\x4f\x69\xd0\xd1\x29\xaf\x4f\x95\x16\x85\x4d\x66\x3d\xfd\x8c\xd7\x2c\x72\x25\x80\x4b\x00\x1a\xf8\x7d\x65\x6f\x79\x74\xaa\x46\x7e\xa1\x9d\x99\x55\xc9\x0e\x31\xd9\x7e\x17\x8b\x9c\x5f\x34\x49\xf8\x0c\x6d\x9e\x47\x46\xf4\xee\x6b\x0d\x3b\xc1\xef\x6d\x7e\x9f\xbd\x0b\xa4\x0a\x40\x65\x80\x02\xe1\x08\x76\xeb\xac\x52\x1b\x16\xb3\x55\x80\xcf\x50\xb5\xfc\x9b\xb1\x22\x06\x7c\x93\x1e\xba\x4a\x2b\x5f\xe5\x23\xf3\x0a\x3d\x02\xfe\x8d\xa9\x8f\xb0\xb4\x9b\xb0\xa3\xb3\x5a\x10\xc0\xdb\x27\x7e\x75\x96\x42\x0b\x52\xf6\x33\xb4\xe7\xd1\x8d\x3a\x3d\x76\xaa\xb1\x55\x29\x13\x6a\xf3\x2d\xb1\xff\x69\x39\x2d\x8f\xf3\xca\x14\xbd\x2b\x07\x85\x73\x5e\xf3\x7a\x4a\x4a\x9e\xac\x4c\x38\x59\xae\x8e\x51\xe6\x65\xe1\xdc\x16\x92\x56\x6d\xc0\xdd\xb3\x05\xc4\xa3\xfc\xc6\xa5\xf7\x97\x4d\xbc\x19\x9b\xb9\x67\x5f\x7b\x18\xe5\x79\xf5\xdf\x68\x14\x69\x15\x7c\x3c\x31\x91\xc4\xf7\x38\xb8\xae\x4d\xc2\xc1\xd0\x64\x2b\xdb\x5b\x5e\x28\x4e\x4f\x7c\x2e\x52\xfe\x22\x9e\xfb\xd5\x07\x11\xf3\x55\x6f\x84\xc9\xd1\x11\x09\xe2\xd1\xa9\x55\xf4\xb5\xaf\xb4\x0b\x33\x88\x0a\xa9\xa4\xb1\xda\xfe\x42\x43\xf3\xfe\x22\x50\x32\xdd\xab\x69\x4c\x3c\x13\x93\xad\xcf\xaa\xde\x2f\x47\x0d\x8c\x5b\xd1\x26\x17\x68\x81\x42\xc1\xdc\x6b\xe2\x75\x8c\x62\x93\x17\xdc\xf2\x10\x20\xa6\x9f\xa6\x9c\x9f\x8a\x9d\x07\x0e\xb4\xbb\x51\x1f\xc5\xb8\xe6\x08\xe1\x1b\x9e\xad\xa9\x4e\x37\xc4\xff\x3d\x6d\x93\x85\x5c\xdd\x20\xe2\xb1\xb9\x37\xbf\x08\x36\x67\xa0\x2f\xb4\x87\x26\x29\x97\x4d\x58\x94\x99\x3b\x71\x45\xe7\xd1\x03\xa6\x4f\x06\x3f\xff\x19\xa9\x6b\x98\x0e\x87\x36\x3b\xd8\x35\xc9\x8a\xd2\x99\xe0\xe7\xc2\x2f\x54\xc8\xfc\x7a\x99\x16\x58\xdb\xdb\xfd\x26\xbd\x3d\xf6\xb8\x90\xeb\x81\x32\x05\xfd\x70\xec\x19\x5c\x27\x03\x05\x2c\x0a\x7c\x13\x5b\xd9\xd5\xd8\x22\xca\xdc\xbc\x13\xa9\xe2\xe5\x9a\x37\x40\xf5\x36\x38\x38\xbe\xed\xf6\x5b\x49\x14\xa1\x52\xd5\x6f\xfc\xd0\x03\x0f\x37\x3f\xe9\x28\xb2\xac\x23\x58\x25\x0c\xdb\x95\x53\x9a\x7e\x48\xdb\x3b\x6a\x4d\x1e\x1a\xfb\x96\x04\x50\x94\xe8\xbe\xfd\xdf\x81\x4a\x1d\x2e\xb8\xdc\xac\x5b\xe6\xeb\x3b\xab\x9f\x42\xf0\x6e\x41\xad\x1d\xb1\xe6\x1d\xac\x42\xb4\x06\xee\xe9\xe1\x26\x7a\xb8\xf8\xc2\xe7\xc7\xca\x00\xfd\xa4\x9e\xf6\x00\xe3\x85\x7a\xb1\x3d\x65\xf9\x30\x37\xd7\x1e\xc5\x65\xd2\x97\x68\x22\x66\xfb\xf4\x31\xa5\x4d\xb1\xf9\x28\xa9\x76\xbd\x49\x12\x9b\xa1\x06\xc7\x5a\x39\xaa\xd6\xcd\xd1\xa6\x7a\x6a\x54\xe6\x34\xab\x53\x8e\x77\x67\xe9\xf4\xe2\xeb\x06\x6a\xfe\x9e\xf6\xc0\xc6\xbd\x19\x5f\x80\x30\xc7\x0c\x67\x32\x4c\x33\xd1\xe7\xfe\xa0\xa9\x41\x6b\xc2\xb8\x6c\xf9\xb1\x48\x81\xdb\xc2\x2f\x1c\x44\x21\xcc\xca\x1e\xab\x51\x32\xf0\x93\xee\x18\x76\x1b\xba\xae\x38\x84\x8f\xe0\x50\xe1\x3d\xd9\x24\x33\x3f\xb2\xe9\x28\x76\x30\x43\xa7\xc5\x5b\xfd\x69\x7e\x31\x2d\x47\x34\x57\x15\x1f\x61\x4a\x23\x9a\xfd\xbb\x1d\xa5\x46\xa1\x29\x2e\x28\x3c\x40\x11\x85\x2b\xb6\x60\xf9\x3c\x24\xec\xe7\x54\xf2\x7e\x2e\x78\x42\xb5\x94\x93\x28\xc4\x18\x12\x61\xe0\xe6\x58\xe9\xd4\xbd\x41\x8f\x8b\xff\x41\xcb\x67\xbe\x31\xa5\xc0\x52\x3d\x87\x24\xdd\xa6\xd0\x32\xf0\x94\x47\x8f\x7a\xcb\xa4\xaa\x23\xd8\xc4\x55\x6d\xd0\xed\x1d\xa5\x5b\x78\x4a\xb5\xb4\x8a\x34\x1f\x44\x5d\xa0\x1f\x98\x34\xa4\xec\xbb\x6e\x4f\x3d\xc8\xf9\xf9\xf6\x72\x69\x01\x6f\xc3\xb1\x00\x79\x5e\xbe\x56\x06\xd5\xa3\x2c\x7d\x0d\x9a\x7e\x33\x4a\x7d\xed\x56\xcd\xc5\x8d\xbe\xa9\x10\x2d\x9e\xd5\x63\xb2\x5e\x14\x4a\x30\x58\xe0\xb9\xe3\x7b\xb8\x31\xfc\xc2\x71\x46\x4d\xd9\x2f\xf3\x22\xf2\x80\x52\xd6\xfb\xd6\x2a\xea\x4d\xf0\xf4\xc5\x76\x2f\xaa\x73\xc1\xb9\x81\x23\x3c\x5f\xcf\x2f\x19\x9a\x78\x94\x99\x90\x60\x26\xf4\xf3\xda\x13\x5b\xdc\xf8\xe9\x77\x85\xac\xd8\x50\x85\x8e\xb2\x74\xe8\xc5\xcb\xd0\xf3\xf9\xb6\x06\x04\x7c\xdb\x5b\x79\x25\xd1\xf2\x72\xb5\xac\xbe\xf6\x15\x67\x1c\xa2\x58\x9f\x67\x1b\x7d\x5f\xcc\xd0\x66\x51\x28\xb3\x3f\xf4\xbc\x4e\x2b\xce\xd9\x69\x95\x88\xe4\xe1\x60\xcd\x64\x07\x5b\x9a\x3c\xc2\xd4\x0a\x7e\xd1\x78\xae\xe5\xf6\x75\xad\x81\x7f\x4b\x39\xd2\xdd\xd2\x8e\x91\xb6\xf7\xb8\x47\x95\xde\x86\x20\x2e\xf2\x86\x2b\xa8\x55\xb1\xeb\x4f\x23\xa3\x13\x33\x1b\x65\x77\x71\x8d\xfc\x80\xa5\xf5\xac\x25\x54\xb8\x5a\x75\x9a\xbd\x5e\x07\xff\x4d\xda\x06\xd8\x12\x27\x28\xab\x43\xb9\x77\x8e\xa2\x3f\xdb\xd6\xd6\xda\xd8\x1e\x4b\x97\x97\xc9\x7a\xab\x35\x37\xc7\x1b\xf7\x3d\x02\xb5\xf2\xb5\x02\xfa\x76\x63\x33\xb4\xe0\x0c\xe0\x73\xfe\x84\xee\xd9\xc6\xd5\xa0\xb5\xef\x25\xde\x75\x67\x1a\xda\xa4\x7b\xda\x51\x92\xa4\x23\x13\x6a\xaa\xcf\x58\x53\x7d\xd4\xe9\x5c\xd8\xd8\xae\x46\x79\x94\x26\xdb\xe9\x8e\xa0\x4e\xba\x46\xdf\xc2\x69\xee\x3b\x29\x81\x6b\x58\x77\x48\x97\x59\xbb\x13\xdf\x1b\x1d\x7f\xd4\xfb\x97\xa7\x90\x45\xfb\x5e\x6a\x77\x4d\xf2\x7a\x95\x0a\xa0\x06\x51\x22\x5a\x8b\x4e\x44\x6b\x73\xa3\x9f\xd8\x3f\x36\xb1\x99\x71\x0b\x19\xd9\xc3\xdd\x40\x79\x98\xdf\xd5\x28\x63\xdb\xb3\x99\x89\x9f\x54\xe3\xe2\xb3\x78\xd2\x9e\x6b\x25\xa3\x4f\xa6\x1f\xb3\x7a\x25\x5a\x3c\xae\x3d\xe8\x08\x73\xbf\x1e\xa8\x06\xef\xfb\x94\x90\xe0\x6d\x51\xa2\x6e\xdc\x1f\xcf\x68\x9b\x86\x96\x33\xfc\x79\x0b\xed\x2b\x0c\xba\xee\xc1\x3d\xd4\x05\x6d\xa7\xe7\x70\x24\xf0\xc3\xca\x23\x53\x61\x63\x7e\xbe\x9d\x59\xbb\xcc\x45\x81\x43\x9d\x2e\x2c\x7c\x26\xea\x74\xef\x42\xbb\x57\x66\xa2\xac\xee\x72\xc8\x96\x13\x02\x3a\x3b\x35\x4e\x21\x14\x71\x41\xb0\xbe\x78\x1d\x4d\x2b\x61\x67\x54\x37\x8b\xaf\xa7\xc1\x80\x2f\xbd\xdc\x5e\x8e\x4d\x1f\x2e\x9e\x8e\x21\x0b\x5b\x41\x71\x55\xfc\x9b\x6e\x86\x12\xa7\x59\xba\x1c\x97\x69\x96\x86\x26\xeb\xa6\x22\x81\x2c\x2c\x57\xfa\x82\xa2\xfb\x21\xd9\xdd\xc0\x9a\x5e\x9c\x4a\x58\x46\xb3\x1c\x89\x0f\x5f\xab\xd1\x8b\x59\x8d\x56\xa9\xaf\x81\x8e\x27\x9a\xf6\x7c\xad\xce\xd0\x61\x94\xa4\x59\x54\xac\xa3\xc1\x2f\x9a\x1a\xd5\xcf\x8a\x16\x81\xeb\xb9\x67\x7d\x93\x44\x07\x2d\x9d\xcc\x72\x13\xaa\x1f\x94\x9b\x33\x3d\x69\x30\xfd\xcc\x5a\x86\xd6\xa2\x6a\xbb\xac\xdd\x8b\x7e\x4b\xb9\xfe\x11\x9f\x50\xf9\xf7\x0c\x87\x69\xcf\x14\xcc\x59\x47\xbe\x00\x07\x52\xbe\x9e\x3a\x19\xf7\xef\x6e\x0f\x22\x19\x9f\x88\x0b\x72\xcb\x19\x6b\x9f\x56\xf3\xaf\x7f\x9c\xa1\xa8\xc3\xba\x3d\xa4\xa9\x4d\x87\x5c\x26\x94\x17\x99\x59\x57\x3e\x28\xb7\x94\x0f\xca\xb4\x0c\xfe\xbe\x97\xda\x55\xd0\x80\x6c\x25\x1a\x1a\xb7\x14\x8e\x94\xdf\x43\xbe\xaa\xcf\x4b\xba\x71\x59\x45\xb4\xe7\x9f\x17\xb6\x26\x9a\xc2\xae\x6e\xf4\x5a\xe6\x47\xc7\x3e\xc2\x27\xb6\xa0\xee\x37\xee\x05\x6a\x68\x01\x0d\xd1\xef\xa3\x55\xc6\xc6\x9b\xfc\x42\x0b\xe8\x6e\xa0\x2b\xcd\xe2\x65\xf4\x41\x91\x60\xb3\xed\x0e\xff\x61\x25\xd4\x95\x8e\xa2\x24\x4a\x93\x5d\xaa\x09\x70\x0c\x7f\x44\xf0\xf2\xad\x05\x0f\x73\x51\x20\x83\xa3\xc8\xd2\xf9\x57\x10\x55\x10\x3b\xc1\x2f\xc2\xd8\xfc\x08\xad\x24\xf4\xb9\x0f\x53\xe2\x04\xe6\xcd\x5f\x4e\xcd\xaf\x68\x77\xb2\x4a\xa7\x74\x93\xd9\x3c\x9f\x5f\x34\xc1\x4c\xa3\x24\x8c\x8a\x4d\x18\x9e\x33\x0a\xc3\x73\xc6\x4d\x9d\x87\x76\xd8\xb5\x19\x37\xdf\x50\x4f\xcc\x4e\xb4\x33\xc5\x6f\x62\x09\xa3\x67\x31\xdb\x69\x80\x0c\x2d\x67\x51\x7f\x50\xd8\x84\x1d\x61\x6b\x7a\x14\xa2\x51\xf5\xb8\x6a\xbe\x1a\xc0\x0e\xb1\x87\x6f\x2b\x40\x3c\x7a\x8c\x9a\x33\xc6\x3f\x13\xec\xe4\x77\xeb\x81\x1e\x85\x6f\x7e\x7e\xdc\xfa\x67\xd2\x81\x3b\x15\xcc\xbc\xfc\xcf\xbf\xca\xd9\xd1\x74\x99\xbc\xb0\xf0\x72\xdb\xc4\xf1\xb6\x1a\xba\x8b\x7a\xa6\x32\xb8\xf4\xfa\xf8\x77\xc6\x2a\x69\x38\x4f\xb1\x1a\xb8\x87\x56\xa7\x89\x75\x68\xe2\x18\x3a\x0a\x0e\xde\xb6\xe4\x21\x6d\x8d\x4f\x93\xa6\xf5\xfb\xa5\x27\xfc\x4e\xa0\xc6\x82\xef\x28\xea\x68\x41\x2e\x08\xb0\x89\x7a\xd1\x0b\x78\xba\x11\x37\x96\x60\xa3\x18\xc7\x23\x7e\xba\xc6\x49\x17\x7a\x27\x47\x35\xda\xe7\xe8\x54\x48\xaf\x0a\x42\x72\x52\x4c\x2c\xe6\x86\xc2\xce\x52\x12\xfa\x5c\x2f\x48\x53\xc8\x2b\xd2\xa4\x55\x68\x2d\x73\x1e\x69\x49\xd3\x58\x77\x90\x37\x5b\x66\xcd\xed\x69\x2f\x2d\xce\x2a\xec\x37\x8f\xa9\x1c\x6d\xc7\xe1\x44\x20\x06\xc8\xd7\x53\x23\xb5\xbd\x0b\xa4\x18\x12\x25\x36\x29\xc4\xf2\xd0\xc9\x01\xa9\x91\x5a\xb0\x19\x38\x33\xb7\xa7\x3d\x8c\xc2\x2c\x1d\x65\x29\x18\xdd\x2d\x3f\xf1\x46\xcf\x46\x7c\xc7\xa7\x5d\x2a\xf6\x54\x65\xc3\xc8\xf8\x0e\x8a\x34\x3e\x3c\xc6\xe7\xa2\x0e\x7c\x51\x1c\xe7\x8f\xaa\x49\x3e\xb7\x78\x45\xdd\x98\x6e\x2a\xeb\xe4\x20\xcd\x44\x3b\xe4\xba\x12\x92\xfb\x40\x39\xce\x5c\xd3\x58\x05\x20\x98\xd1\x25\xd8\x85\x79\x01\x12\xbd\x1f\x07\x3e\x6c\xfe\x79\xe0\x71\x3e\x17\x1d\xfa\x29\x31\x59\x96\xae\xd9\xbc\x98\xa1\x1e\x8c\x66\x3f\x3a\xb1\x6e\x07\xd6\x3b\x39\x75\xeb\xf7\xef\x7e\x51\xca\x27\x97\x73\x30\x99\xb9\x46\x6c\xf6\x4c\x61\x33\x1a\x59\x93\x6d\xf7\xad\xb9\x9b\x14\xfe\x44\xb9\x44\xb9\x15\x00\x73\x28\xb0\x08\xda\xac\x4a\xf8\x44\x44\x64\x6e\xaa\xec\x8f\x33\x1f\xc2\x07\xc9\x27\xa6\x7b\xc9\x2f\x90\xca\x21\x68\x9f\x54\x01\xfc\xe4\xd4\xe9\xba\x77\xa1\x3d\x4c\x33\x0b\x37\x51\x84\xef\xc7\x3a\x1e\xde\xb3\x03\xce\xf0\xe8\x31\xfd\x55\xa0\xcf\xa6\x26\xb9\x95\xc2\x14\x65\x91\x66\x38\x5e\x5d\x47\x53\x69\xa0\x3f\x55\x23\x39\x9a\x64\x7d\x17\xa5\x8b\xce\x9b\xba\xfa\xba\x38\x20\xa0\xe8\xc6\xd7\x58\x03\x54\x07\xfc\xde\xd3\x1d\xaf\x41\x77\x4f\x81\x5a\xce\x29\x7f\xda\x13\xea\xa4\x39\xc1\xd3\x08\x19\x4c\xf9\x3c\xc0\x64\x2b\x4a\x93\x06\x22\xc3\x7c\xad\x35\x29\xb9\xbd\x22\x73\x26\x35\x73\x1a\x7b\xff\xe1\xbe\x59\x33\x85\x64\x29\x02\xf7\xf6\xdf\xfc\x82\x2a\xe0\x33\x1b\x97\x61\x41\x96\x9d\x3e\xc3\xd3\xa7\xc0\xc5\x26\x43\xe8\x51\xd9\xeb\xb9\x2d\x88\x54\xfe\xb8\x92\x24\x39\xde\x64\xee\x97\x96\x45\x1e\xf5\x2c\x21\x25\x71\x3e\xfd\x30\xd0\x26\x59\x08\xb2\x92\x13\x54\x7f\xcc\x0d\x16\x7c\xc9\x7a\xde\x63\xca\xe2\x2a\x01\x76\x9c\x5b\x3c\x59\x21\xf0\x7e\x96\xaf\xeb\xfa\x2f\x64\x33\xde\x99\xec\x43\xc5\x63\x63\x4f\x66\x6c\xf3\x7b\x4d\xfd\xb7\xcc\x86\x69\xd6\x43\x4f\x46\x30\xa1\x1e\xe5\xc1\x22\xf0\xc2\x3a\xf2\xa3\x61\xcc\x05\x05\x78\xaa\x9c\x7c\x87\x36\x23\xfe\xea\xd2\x6e\xae\x11\x4e\xd2\x5d\xe7\xeb\x26\x67\xd9\xa1\xe5\x30\x8b\xce\xea\x51\xd5\x65\x3d\x3a\x85\xce\xad\xce\xbc\x6e\x96\x9a\x5e\x68\x72\x9f\x93\xa0\x06\xfb\xc1\x58\x09\xcb\xfc\x20\xd0\x7a\x24\x49\x91\x99\xb0\xc8\x77\x55\x1f\x0b\x3d\x9b\xef\x2a\xf7\xdf\x16\x34\xb1\xa0\x0a\x79\x6b\xac\xe4\x60\xcf\xd7\xdc\xe1\x0f\x83\x01\x8d\x13\xe0\x16\xa0\xb3\x6e\xf2\xe9\xa4\x41\x9f\xeb\x68\xc7\x77\xaf\x86\xd5\x33\xab\x51\x0f\x75\x31\xda\x8e\xdf\xc5\xe7\xc5\xcd\xbd\x12\x68\xd2\xf4\x43\xa5\xca\x7a\x92\xd0\x3d\x38\xc7\xae\x29\x37\xe5\x0b\x2a\x10\x2e\x47\xd9\xd0\xf6\x66\x7d\xe3\xf4\xd0\x58\x51\x20\x37\x94\xfb\xd2\x45\xe5\xfa\xfb\xb1\x92\xd6\x48\x33\x1b\x47\x09\x0a\x14\xa4\xd3\x30\xed\xe6\xeb\x26\xfa\x57\x68\xbc\xd8\x1c\x62\xfd\xc3\xa0\xa5\xdc\x6b\xe8\x18\x12\x0c\xee\xe6\x07\x59\x1d\x7a\xe9\xaa\xcd\xd6\x06\x36\x1e\xba\x07\x29\x4a\xfe\x9e\xfe\x7c\xa1\xb1\x56\xb4\x79\x58\xf6\xd2\x21\xce\x08\x19\x99\x2b\xb5\xed\x63\xcd\x49\x5b\x3f\xdd\xee\x2d\x88\x37\x02\x25\x5e\xc4\x60\x35\xb6\xa5\x18\xd7\xf0\xcd\x8e\x9e\x77\x33\xa8\x4d\xe5\xbc\x06\x46\x37\x4d\xf3\x82\x4c\x15\x1c\x8f\xc7\xff\x20\x8f\xc9\x84\xc9\xd4\x72\x2c\xfc\x3b\x58\x4e\xc2\x77\x6a\x80\xa8\x45\xc9\xaa\xcd\x8b\x3a\x92\xe3\xba\xe2\x4f\x5d\x1f\x7f\xd6\x58\x25\x4a\x0a\x9b\x8d\xca\x6e\xcc\x00\x79\x4c\x8d\x19\xcc\xc9\x2f\xa6\x7a\xeb\x07\x0e\xb4\x7b\xe9\x5a\x52\x44\x43\x50\xd2\xb4\x2c\xbd\x5b\x13\x5f\x7e\x85\x9b\x34\x9f\xea\xa1\x46\x5e\x0e\x47\x0e\x2d\xcc\x1d\x88\xc0\x07\x7e\xad\xee\x68\x6d\xef\x49\xdf\x08\xfb\xcd\x9f\xeb\x78\x9a\xc3\x63\x13\x35\x6f\xd8\x85\x73\x11\x67\x0a\xb3\x9a\x29\x87\x9c\x61\x25\x3d\x4c\x71\xff\x36\x14\x1f\xb1\x29\x1f\xa3\xbd\x07\x18\xdb\x06\x35\xe2\x70\xb0\x43\xa9\x48\x84\x4e\x29\x3b\x11\x30\x8a\xc7\x4a\x74\x9e\xa5\xd4\x47\x68\x65\xfe\x5b\xb3\x55\x9f\xc8\xb7\x36\xa8\x11\x0f\x6d\x95\xba\x97\x59\x9f\x7c\x48\x3d\x3c\xf2\x23\x7a\xdc\x7c\xad\x9a\x76\x45\xc4\xbd\x38\xac\x97\xeb\x4a\x7f\xe6\x9c\x8e\x2b\x1f\x7a\xa6\xad\x4d\xb2\x3a\x3e\x92\xe9\x1d\x22\xbe\x35\xcd\xdf\x5b\x6c\x27\xd6\x3a\x29\x0b\x97\xfc\xfa\x44\xb8\x06\xd1\x18\xda\x90\xa2\xb6\x40\xca\xd5\x00\xee\xa4\x92\x9e\xed\x67\xd6\x14\x36\x53\x42\xca\x6c\xd9\x80\x98\x76\x0d\xfb\x88\x5f\xa8\xfc\xe2\x96\x46\x4f\x9d\x0f\x6a\x46\x23\x9e\x4e\xdb\x2f\xbb\x36\x63\x59\x5b\x8d\x16\x12\xec\x76\xf5\x01\xf1\x4c\x3e\xa5\x7d\xc9\x6a\x5c\x5a\xab\xac\xd5\xd1\xbd\xe0\x26\xaf\x28\xd3\x2b\xe3\x02\xfc\x63\x81\x4d\x6b\x41\xec\x06\x71\xf1\x85\x76\xcf\x8a\x6c\x36\xf2\xa8\x77\xc6\xbe\x33\xf5\x8e\x73\x6c\x0d\xd3\xe1\xa8\x2c\x6c\x16\x9b\x84\x8b\x4b\x7c\xdf\xc3\x63\x8d\x77\x51\x20\xfa\x5b\x35\xc3\xbe\xa8\x88\x48\x9f\x92\x40\x67\x68\x21\xa1\x58\x71\xf7\x56\xe3\xe6\x65\x65\x94\xb9\x5d\x2e\x63\xa2\xad\xe9\xba\x0e\x27\x2e\x3c\xb4\xd1\x59\x3e\xd2\x30\x69\x5a\x62\xfe\x1e\x08\x69\x3c\x02\xa4\xf7\x94\x71\xa0\x67\xdd\x78\x0f\x57\x83\x21\x8a\xac\x6b\x85\xb5\xf9\x48\xcd\x8d\xaa\x33\xd7\x6e\x52\x28\x53\x84\x8b\xcf\xa9\x6f\xde\xb3\xdd\xc2\xf6\x12\xcb\x9e\xbf\xf8\x1e\x4c\x1f\xe7\x17\x4a\x9b\xfc\x4b\xbf\x08\x74\x3f\x7b\x2b\x05\x8a\x9d\x75\x69\xfc\x9c\x97\x4b\x1a\xd9\x30\x32\x71\x74\xd0\x32\x17\x02\x88\xac\xbb\x0a\x88\xb0\x75\xe2\x69\x09\x9f\x4e\x0d\xb7\x89\x0b\x31\xaa\x6e\x4f\x99\x88\x4e\x76\x8d\x9b\x2d\x2c\x25\xc9\xde\xc2\xd8\xd0\x09\xbf\xc8\x6b\x51\x2b\x2f\x23\x7b\x72\x90\xe1\x6a\x4b\xb2\x00\x29\x4a\x34\x87\xc6\x9c\x9f\x77\x5d\xa7\x86\xc5\x3b\x34\x19\xd5\x46\x0e\x0f\x70\x57\xe1\x01\xee\xba\x4e\xcc\x72\x9a\x0d\xcb\x18\x76\xff\xf8\xaa\xf7\xb5\x37\x33\x96\x88\x10\xdf\x9b\xac\x9d\xf3\x32\x59\x69\x29\x1b\x90\xb7\x02\x9f\x3b\xbd\x35\xb5\x90\x5e\x68\xdb\xd7\x6d\x16\x46\xb9\xd5\x0d\x4b\xa6\x4c\x8b\x46\x8b\xe6\x2b\x6e\xfe\x03\x4b\xbb\xdb\x79\x91\x8e\x46\x12\xad\x30\xcc\x3f\x8e\xd0\xc2\x2f\x14\x42\x3d\x22\x44\x71\xbe\xad\x5a\xf4\xae\xa8\xf3\x18\xde\x37\xe8\xbe\xe3\x7b\xe3\x7d\xb1\x9b\xe0\x97\xce\x54\xbb\xa9\xbb\x7b\xe0\x40\x3b\x1c\x58\x9b\xe5\xb3\x2a\x9c\x7c\x40\x27\x1e\xd2\x9b\x4f\xb5\x8b\xe0\x3d\x4e\xd8\x24\x4d\x78\xdc\xb1\x42\x86\xe2\xa0\xe0\x60\x56\xd5\x6f\x09\xb4\xca\xaf\xcf\xcc\xae\x46\x05\xad\x4f\xf0\x41\x37\xd0\xe0\xdd\xb8\xdc\xd0\x55\xe7\x3c\x1d\x36\x6e\xd5\x1d\x46\x10\x78\x0f\xdf\x9a\x5f\x4c\x1d\xe8\x2e\x1b\x18\x9a\x96\x82\x71\xa0\x5c\x15\x44\xdb\xe6\x55\x3f\x3f\xdf\x1e\x65\xe9\x32\xa4\xb9\x4d\x8c\x38\x86\xb4\xea\x4f\x69\x0d\x23\x61\x81\xe6\x08\x6b\xcd\xab\xe3\xfd\x97\x7e\xf9\x1f\xb6\xea\xc2\x45\x73\xce\x4e\xcb\x35\xe3\xf3\x32\x5b\xb5\xeb\x30\x79\x11\x18\xed\xe7\x3a\x0a\x06\x7c\x5e\x79\x1f\xb2\x63\x3e\x96\xd1\x6f\xd0\x47\x70\x4c\xbe\x6a\x79\x08\x8f\x52\x76\xe1\x6a\x64\x8b\x96\xce\x3d\x94\x10\xea\x11\x65\x1d\x3e\xca\x6c\xcf\x72\xaf\xa6\xc6\x3d\x51\xf6\xa3\x2a\xea\xfc\xe7\xff\xd9\x2f\x69\x55\xaf\x1f\xd1\x17\xe3\xeb\x06\x72\x65\xbb\x6f\xf2\x14\x29\xb5\xeb\x3c\x80\xae\xc4\xd7\x53\xd8\x9d\xf9\xf9\x2a\x43\x6d\xa9\x90\x51\x53\x74\xf4\x2d\xec\x34\xee\xed\x50\x8f\xf3\x2e\x17\x29\xb2\x60\x29\xd6\xa1\xab\x89\x86\x28\xb2\xd7\xd3\xa4\x62\x8a\xb1\xc8\x5d\x05\x4e\xd9\x08\xd4\x13\x3e\x55\xcb\x09\xca\x95\x08\xb3\x0d\x34\x7a\x31\x9a\xe4\xeb\x26\xf0\xdc\x28\x4b\x71\xae\x0a\x1f\x46\x29\x68\x5c\x6a\xaa\x3e\x4d\xbe\x22\x14\x4b\x8c\x01\x3f\x45\x5b\x05\x47\xe5\x21\xe5\xf4\x73\xb1\xb1\x6d\x66\xba\x69\x1c\xe5\x03\x89\x1a\x4d\x86\x83\x0d\x35\x3b\xb7\xa9\x5b\x6a\x96\xc7\x78\x79\x99\xdb\xa8\x21\x60\x9a\xd9\xa8\x9f\x3c\x5e\xfd\x49\x7c\xc4\x4b\x18\x33\xe0\xc5\x35\xfc\x9e\x03\x08\x29\x7e\x44\x15\x9b\xc4\x2a\xb1\xb5\xe0\xb3\x52\x05\x2d\x65\xcf\x3b\x39\x97\x54\xab\x78\x03\xa1\x13\x0c\x07\x34\x2e\x94\x07\xa3\xf7\x68\xa5\x2d\x83\x80\xf6\xd3\xda\xa3\x3b\x18\x8d\xf0\xe8\xb8\x0d\x11\xf8\x11\xd6\x25\x05\x63\x2c\x6c\x6c\xab\x52\x5a\xa9\x71\x5f\xd4\x69\xc6\x45\xb5\x5f\xaa\x9a\xa2\x2f\xa4\x40\x47\x7a\xe2\x96\x33\xbf\x50\xdc\x8f\x28\xb1\xaf\x13\x14\xb1\x8b\x49\xe0\xa2\xcf\xb6\xaa\x3b\x20\xd9\x96\x92\x21\x27\x43\xbe\x34\x5b\x9f\x55\x96\x16\x37\x02\xaf\x43\x7e\x06\x05\x13\xff\x03\xa1\x61\xf9\x1f\x02\x9f\x42\x76\xb3\x28\xe9\xcf\x7a\x6f\x6b\x7c\x73\x45\x73\x59\xf4\x25\x5f\x75\x7f\xf8\x5f\x34\x6f\x67\x60\x7a\x3d\x0b\x59\x4c\xc1\x57\x5e\xc6\x49\xc4\x2f\x54\xe5\x5d\x90\xb7\xa7\xd6\x17\xd0\xf4\xcd\x4b\x0a\x1d\x98\x59\xb9\x81\x22\x78\x22\x43\x4e\x95\x57\x9e\xdb\xec\xde\xfb\xfc\xf3\xed\xfd\xbb\x5f\x6c\xf9\x74\x1b\x1d\x42\xb1\xf6\x92\xf3\x9e\x0e\x12\x46\x29\x22\xe1\xde\xd6\x51\xa6\x02\xdb\x26\x02\x39\xb1\x49\x98\x96\x55\x71\xc8\xa3\x45\x14\x20\xa2\x94\x5a\x3b\x4b\x11\xda\xae\x35\xed\xa0\x35\x6b\x56\x6c\x5e\xb4\xa8\x92\xc2\xa0\xe0\xac\x9a\x20\x9c\x1d\xef\x8a\xc8\xc9\xeb\x17\xdb\xff\x68\x97\x1f\xfe\x7f\x4b\x39\x35\xdc\x50\x1d\xe4\x67\x50\xcf\xa1\xbf\xfb\x34\x6a\x40\xe6\xa7\x7a\x2f\xf2\xcb\xcf\x75\x14\x62\x62\x32\xf6\xc4\x20\x8c\x14\xa6\x10\x69\x64\x49\x97\xa6\xa4\xa1\xbf\xb4\xe8\x71\x2f\x4b\xbb\xe5\x5a\x1b\xb2\x95\x79\x91\x0e\x6d\x96\xef\xa2\xf8\x83\xe4\x99\x85\xd3\xd1\xa6\x7d\x33\x50\xe2\x84\x67\xb5\x17\xe1\xd9\xc0\x0b\x40\x81\xfa\x88\xfc\xed\xe6\x58\xe1\x1b\x8e\x69\x27\xae\xb3\xca\x3a\xf8\xaa\xc6\xb6\xa4\x65\xe2\x84\x87\x64\x70\x4b\x8f\x49\x26\xb7\x9a\x52\x63\x93\x9c\x64\x15\xb0\x82\xbf\xaf\x10\x2d\x3f\xc6\x6a\x45\x23\xe6\xd4\xb8\xf5\xfc\xf3\x4e\x07\x4e\x09\x4b\x07\x4a\x71\x9e\x75\x39\x1c\xd0\xf0\xab\x82\x2d\xbc\x41\x5f\x4e\x00\xb2\x34\x53\x15\x15\x39\xda\x8c\x48\x68\x6f\x8f\x15\x4c\xfa\xa4\x42\xf7\x5f\x6f\xac\x4b\x73\x13\x3a\x67\x4b\x16\xac\x57\x3c\x83\xe9\xdf\x79\xc1\x11\xc9\xf4\x70\x4c\xab\xc3\x5d\x9c\x4a\xde\x91\xc4\x66\x59\x75\x4b\x37\x79\xa8\x35\xb8\xdc\x08\x4f\x21\x1e\x52\x13\x0d\x81\x92\xe5\x18\xf9\x05\x1e\x04\xca\x8c\x73\x5a\x11\xe2\x5c\xa0\xb5\x5c\x07\x36\x2f\x94\x94\xf3\x3d\xa5\x50\x0d\x46\x95\x1f\x60\x79\x3b\x97\x61\x64\x92\xa4\x34\x18\x94\xe1\x89\x80\x60\x8e\x80\x03\x5f\x27\xbc\xdb\x29\x2f\x33\x51\x95\xe2\x52\x2e\x22\xe3\x9e\x55\x2e\x7e\xdc\xd1\x97\x31\x87\x5f\xeb\x26\xeb\x46\x45\x46\x5e\xd3\xae\xdd\x71\x45\x19\x0a\xdf\xc3\xba\x05\x95\x7e\xda\x54\x5d\x92\xca\xe5\x38\x0a\x57\x66\x3c\x2a\xe8\x4e\x0d\x2a\x4b\xef\x2d\xa4\x95\x06\xbe\x67\xbf\x34\x59\x8f\x63\x10\x42\xdf\x9d\x40\x4d\xdc\x4f\xab\xd5\x7c\x4e\x1d\xc7\x26\x67\x11\x8a\xf9\x79\x0f\x96\xf3\xea\xc5\xcd\x60\xb9\x35\xa1\x34\xbb\x71\xfb\xdc\x1e\xd7\xa5\x94\xc0\xb8\x9c\x99\xb2\x57\xc6\x16\x24\x56\xd9\xb6\x28\x94\x50\x7f\x3f\xd9\xf1\xe9\xd8\x8e\x89\x2f\x46\xd6\x4c\xaf\x17\xa3\x37\xe3\xdd\x58\xaa\x43\x47\xfa\x7f\xbe\x07\xdc\x8f\x7a\xbd\x75\x05\x40\x3c\x86\x0f\xcf\x2f\xfc\xdc\x24\x31\x11\x4a\x6c\xc0\x7f\xa0\xa0\xc3\xd7\x8d\x55\x7c\xb7\x5c\x77\x8b\xdc\x79\xf6\xba\x3e\xfa\x34\xf2\x76\xef\x42\xdb\x84\xbe\x81\x2e\xd2\x6b\x2d\xa5\xc9\xf6\xb8\x32\x3c\x33\x5d\x82\xc3\x20\x51\xbf\x46\x27\x2a\x5f\x37\x48\xd5\xbd\xdc\x8e\xa3\x64\x05\x94\xf0\x17\x21\x85\x23\x93\xc6\x3b\xda\xde\xf3\xa8\xe2\xcc\x24\xa6\x28\x33\xdb\xda\x3c\x90\x96\x86\x86\xa4\xf6\xa3\xb8\xcc\x77\xd1\xd2\x42\x4b\xe3\xc6\xd8\x73\xa3\x80\xb6\x15\x15\x4e\xcf\x44\x9a\xc1\xb9\xc1\x50\x3d\x6c\x5c\x14\x19\xf7\x15\x8b\xf3\x94\x1a\x73\x3d\x3d\x69\xcd\xcd\x21\x3e\xfc\x72\xbb\x23\x47\x6c\x3f\x33\xdd\x2e\xbe\xd5\xa2\x17\xcb\x74\x1f\xf2\xce\x58\x7d\xb5\xad\x1d\x2f\x6b\x92\x99\xcc\xc6\x8c\x11\x72\x35\x91\xef\x83\xa8\xf0\x1f\xa7\x21\x25\x07\xd5\xad\x46\x59\x09\xab\x7d\xbe\x76\x87\x7d\x9e\x0e\x6d\xcf\xac\x93\x64\x04\xf6\x3a\xa8\x8e\x74\x1f\xfe\xed\x33\x1d\x4f\x5a\xbd\x49\xf7\x04\xd7\xac\x86\x8c\xbc\xeb\xdf\xa9\x62\x3a\xb3\x26\x1c\x88\xcc\x35\x9e\x13\x2b\xee\xf0\x8b\x60\xda\x97\x01\xb0\xf7\xc2\x78\xc7\x74\xa4\xb7\x87\xc7\x3e\xd5\x3d\xac\x5c\x5f\x32\x3b\x8a\x4d\xc8\x23\x0a\xe7\x6b\x57\x3d\x48\x41\x4d\xaa\x41\xd3\x43\x25\x82\xf6\xa1\x9a\x7b\x17\xe9\xc8\x1c\x84\xf4\x39\xaa\xe9\xef\xd2\x41\x05\x25\xeb\x73\x38\x82\xf8\x1f\x02\xc5\x1a\xb9\xad\xec\x65\xa6\x25\x03\x96\x76\x57\x41\x85\xbc\xfd\xab\x3f\xac\xdc\xa6\x16\xb9\xd5\x78\x27\xf0\x6d\x86\x33\xca\x72\xd3\xbe\x1e\x5a\x5b\x9d\x2d\xc8\x6f\x17\xbc\x37\x96\xf7\xc9\xaa\x5b\xa3\xf5\xec\x90\xcc\xca\xaa\x87\xe5\x80\xce\xf3\xf3\x72\x3d\x35\x02\x78\xa1\x6d\xe2\x2a\x22\xa5\x6b\x09\x43\x2f\x64\xc4\xa7\x72\xa4\x0f\xd5\x0a\x5a\x35\xd9\xaa\x61\x84\x16\x03\x13\x69\x1f\x09\x48\x71\x1a\x7c\xfb\x6a\xbb\x67\x63\xe3\x83\x07\x12\x38\xd4\x87\x7c\xdd\x84\x09\x62\x03\xdb\x1a\x98\xf0\x52\xa0\xa9\xe7\xd3\xf6\x9b\x6d\xf3\xff\x81\x1d\x13\x59\x54\x9b\xec\x6a\x7d\xed\x2b\x7c\xb2\xf3\x77\xc5\xa3\xe0\x5e\x1f\x96\xc9\xb3\x34\xa5\x96\xa9\x7b\xcb\xd9\xa8\x80\x6e\x87\xac\xe8\x16\x76\xa5\xfb\xa1\xa5\xdd\xae\x05\xe5\x0d\x04\xce\xab\xda\xfa\x60\x34\xda\xa6\xa0\xd4\xb5\xb9\xd0\x69\x2a\x39\x90\xb3\xa2\xb2\xc6\x59\x7e\x5f\x41\xf9\xa6\x6d\xbe\xf6\xec\xab\x6a\x92\xbc\x48\xe3\xbf\xde\xc0\xc4\xb5\x2d\x8b\x68\x54\x2a\x4d\x55\x69\x38\xeb\xee\xb3\x02\x97\xe5\x69\x1c\x85\xac\x2e\x8c\xfc\xe9\x50\xa0\xb8\x1d\x87\x9a\x9a\x49\x4e\x4e\x93\x9f\x1f\xf6\xc6\xa1\xc0\x17\x81\x87\xa6\x96\xca\x9e\x7d\xde\x9b\x97\x32\x0e\xa4\x29\xad\x8e\x62\xf0\x42\xeb\x19\x1b\xf7\xa6\x1b\x0f\x65\x76\x39\x4a\x4c\x12\xba\x35\x86\x34\xe3\x94\xb2\x7a\x3d\xe5\x5a\xa8\x23\x6b\x41\x04\x12\xd3\x07\x9f\x54\xbc\xa9\x84\x58\x87\xb6\x6f\xba\xeb\x85\x9d\xf5\xf1\xed\xfd\xb1\x67\xdd\x9e\x57\x7f\xfb\x41\x50\xe3\x78\x3d\xe1\x3e\x55\xb7\x4a\x0d\x67\x1d\xdb\x3f\x7a\x0a\x07\x05\x88\x76\x88\xa8\x58\xcc\x0c\xae\x17\x42\xed\x33\x0a\x4b\xd8\x4f\x8b\xc8\x30\x0c\x19\x1d\x87\x8f\x29\xbb\xe0\xeb\x46\x0d\x9b\xac\x64\x67\x0c\x14\xaf\x00\x58\xf0\xb5\xf6\xf7\xc8\x6d\xf6\x18\xc5\x64\x1c\xe2\x7f\xbb\xa3\x84\x36\xc9\x82\xf3\x55\xc7\x4b\xa4\x68\x8d\xd0\xc7\xf4\x21\x10\xda\x61\x6d\x07\x06\x0a\x74\x6a\x95\x13\xf3\x8b\xdc\x35\xfe\x8b\xb1\x17\xc1\x86\xbb\x0b\x75\x92\xde\x78\x66\xa2\x7a\x10\x28\x59\x44\x09\xbc\x29\xcb\x0a\xe3\xb2\xdb\xf2\x58\x9f\x3f\xc3\xfa\xe6\x17\xaa\xed\x19\xdb\x7e\x94\xc7\xc8\x5c\xe9\x50\x64\x55\x44\xe5\xb6\xf5\x7f\xd1\xc7\x96\x18\xff\x94\x3a\xf6\x8a\x41\x94\x3c\xaf\x32\xa3\x2b\x2a\x33\xba\xb2\xc9\xa8\x2a\x7f\xc6\x77\xc9\x9f\x86\x7a\x03\xb2\xe4\x45\x4c\x00\x31\x04\x3f\x4f\xcf\xcb\xd9\x5a\x7a\x6e\xfe\x29\xaa\x7c\x00\xda\xba\xcc\x2d\x36\xdc\xef\xab\x7a\x22\x8a\xba\x0e\x81\x64\xe7\xc4\x9b\x73\x5f\xc4\x2d\xe6\xbc\x67\xdc\x7a\x45\x96\xe0\xdd\x40\x6d\xeb\x2b\xd8\xd6\x0a\x7a\xb0\xc8\x37\xf9\x21\x8a\x2d\xfe\xb1\x40\x89\xde\x61\xa6\x23\x00\x8d\xa7\x95\xd9\x76\x34\x1a\x89\xf3\x26\x7a\x7e\xb7\x95\x6a\xd7\x79\xdd\x07\x3d\xa1\xeb\x81\x3c\x8f\xf2\xc2\x24\x05\x1d\xce\xe8\x03\x32\xd9\x41\xc8\x40\x7e\xcc\xce\xa6\x45\x02\x3e\xdf\x1c\xe5\xe7\xe6\xda\xcb\x51\xa1\xa5\x45\x2e\xd1\xb2\x13\x8e\xbb\x0f\xff\x77\x1d\x5a\xb8\xb0\xaf\x0b\xaa\xc7\xa5\xbb\x3e\xf5\x1d\x3f\xa6\x4e\x50\xd6\x32\x14\x05\x31\x3c\x14\x91\x10\x7b\x42\x65\x1b\xdd\xb2\x40\x17\x49\x7b\xf2\x22\x42\x1f\x1d\xab\x8a\xfa\x82\x72\xf8\xd9\xd2\x51\xd0\x6e\x13\x0e\xa2\x95\x08\xf2\x5f\x4c\xc0\xc0\x51\xa0\x8b\x1d\xa1\x48\x3f\xae\x4a\x48\x93\x3c\x45\x9b\x56\xa2\x45\xb5\xba\xf4\xd7\xc2\xff\x7f\x9c\x06\xd5\xae\xc6\xd8\xbf\x9b\xd7\xe9\xcd\x7a\xc9\xe9\x21\x05\x8f\xa1\x3b\xce\x5b\x39\x50\x8d\xe8\xbb\x54\xd3\x63\x97\xfe\x88\xd7\x29\x96\x20\xe0\xed\x8c\x5d\xc1\x03\x65\xda\x2b\x42\x22\x02\xf5\xf7\xc6\x8a\xb4\xf5\xe8\xa4\xf5\xe5\x57\x9c\x1e\xf4\xe6\x49\xb7\x94\x7e\x6c\xf9\x8c\x4a\x06\x01\x89\x45\xce\xf9\x45\x93\x80\x75\x55\x14\xb8\x23\x00\x55\x1e\x46\x71\x7c\xed\x49\x8c\xb1\x5d\x9b\x51\x5e\xec\x17\x94\x9a\x33\x4b\x26\x48\x62\xd7\x04\x64\xb7\xf1\xa8\xe5\x23\xdd\x75\x65\xc1\x79\xdd\x2f\x39\x13\xdb\x7c\xc6\x7b\x50\xf3\x04\x18\x09\xd5\xfd\x40\x8d\x79\xce\xe0\xe1\xa2\xc9\x96\x99\x04\x1f\x0c\x09\xdb\x4f\xc6\x8a\xe5\xc2\xb0\x4b\x6c\xd1\x69\x2a\xf1\xfe\xdd\x0b\xa4\xf4\xe7\x66\xad\xe2\xcd\xe9\x13\xe2\x13\x8e\x44\x15\x66\xeb\xb9\x0c\x59\x5d\x1b\x74\x7e\xde\x75\x3e\xe5\xe7\x8a\x2c\x92\x91\x99\x3f\x9e\x94\x3e\xc2\xf4\x2c\x7b\x7e\x9e\xb0\x3e\x38\x7f\x90\xbd\xe0\x21\xf0\xf5\x14\x31\x1b\x02\x85\x36\x5b\x8d\x72\x01\x1d\x22\xdf\x86\xdc\x20\x5f\x4f\xbc\x6e\x4a\x6c\x46\x45\x3a\xc2\x3e\x95\xc3\x98\x6e\x13\xbf\xd0\x99\xce\x7a\xd2\x8b\xb8\xe4\x71\x7e\x71\xa7\x03\xaf\xe9\x77\xba\xd1\x98\x3e\x1a\xc5\xe9\xd0\x49\x3f\x22\x2f\x7f\x4b\xe1\x3b\xdf\xf2\x85\x52\x75\xbb\xa3\x65\x94\x6c\x92\x03\xb7\x16\x94\xb7\xe0\x97\x5f\xe1\xf3\xfe\xfe\x54\x91\xb3\x67\x5f\xdb\xc6\x36\x2c\xb2\x28\xa4\xce\xaa\xc3\xf9\x23\x1c\xf2\xb5\x9a\x7c\x8d\xf2\x2f\xce\x68\xe8\xc2\x4e\xc5\x62\xe2\xfe\x1a\xba\xb1\xb3\x13\x9f\xbe\x8d\x32\x9b\x9b\xbe\x6d\x29\x69\xff\x53\x84\xac\xe4\xeb\xa6\x9d\xb4\x36\x88\x0e\x1e\x94\xf4\xb0\xb6\x14\xf9\x45\xa3\x4c\x5b\x6e\x12\x69\xb8\x88\x99\xbf\x86\xe6\x17\x81\xca\x47\x3f\x50\xa5\x9b\x08\x2f\x12\xbe\x09\xed\xbe\x8f\xf9\x37\x9d\xa8\x82\x97\x56\x06\xc4\x13\x9f\xe3\x96\x96\x49\xde\x3e\xf1\xd9\x5b\xb7\x8c\xe2\xaa\x70\xda\xa9\xc6\xbb\x5b\xb5\x66\xe3\x35\x05\x2f\xdc\x3a\xf1\x3c\xa9\x93\xda\x53\xfc\x06\xd5\x65\xd8\x70\x10\xec\xe7\x47\xa9\x6c\x83\xff\xa8\xc9\xeb\x4d\xf5\xe1\xab\xb7\x71\x96\xe3\xd5\xfb\x8b\xe5\xb8\xef\xce\xad\xa6\x55\xb2\x12\x47\x05\x98\xd5\xcc\x05\xad\x0b\x67\xd6\x24\x35\x7d\x3b\x0e\xbe\x3c\xac\xde\xa1\xe5\xcc\xde\xa3\xdc\x02\xcd\xe0\x7f\x3f\xf6\xce\x4f\x17\x55\x59\x6e\xf2\x91\x0d\x45\x3d\x4c\x64\xd8\x7c\x5b\xe3\xac\x42\x3a\x78\x64\x06\x3b\x36\x03\x3b\x87\xe4\x88\x25\x6b\x10\x38\x45\x6a\x48\x3d\xde\x90\x74\x8b\x31\xb1\x76\xb4\x2b\x4f\xc1\x6a\xa2\x27\x0f\x8d\xcd\x8b\x2c\xad\x19\x87\x2b\xfd\xd2\x33\xea\x28\x4e\xe3\x9e\xcd\xb6\x29\x33\x9d\xab\x35\xa3\x03\x9f\x9e\x3e\x08\xbc\xd9\xff\x03\xe4\x61\x32\x8f\x6d\xe2\x73\x0f\xd3\x8c\x9d\x6a\x44\x78\xad\xa6\x32\x52\x2d\x48\xce\x39\x9a\xe6\xfc\xb0\x5c\xd5\x8d\x8b\xe3\xda\x71\x5e\xeb\x40\x81\xc4\xb0\xa3\xfa\xd0\xc0\xd4\x3e\x46\x65\x27\x8e\x7e\xa6\xf1\xb0\x5f\x74\xa0\x10\x5d\x63\x0f\xf0\x7e\x0c\x2e\x89\xe8\x39\x4d\xb0\xcc\x44\x94\x77\x4a\xdc\x75\x69\xf1\x0b\x6d\x3b\x1c\x0d\x4c\x1e\x71\x4e\xa4\x3d\xd4\xf9\x5a\x0d\xcd\x46\x99\xed\x57\xc5\xd5\xba\x72\x56\xfb\x4d\x65\x52\xa6\xcd\x6a\x2f\x50\x32\x22\x35\xaf\xef\x50\xd9\x2c\x23\xc3\xad\xfd\xbb\x39\x55\xfc\x98\x9e\x11\x5f\xab\x1f\x84\x8f\xf1\x76\x4a\x4c\x51\x60\x1c\x26\xb7\x6b\x5c\x6f\xa5\xec\x97\xaf\xa1\xb9\x83\xad\xfd\xfe\x58\x99\x53\x82\x0f\x80\xa1\x2e\xeb\xf7\xe0\x43\x50\xac\x4d\x93\x28\x14\x83\x8d\x57\xb5\x56\x9b\x6c\x74\xc6\x7a\x39\x30\xeb\xfc\xbc\xfc\x83\xea\x12\x83\x88\x90\xb7\x34\x8f\x25\xf0\x26\xcf\x5e\x03\x54\xa1\x69\xb0\x5a\x1e\xf5\x0e\x45\xdf\x7b\x74\xa2\xe4\x13\xa3\x5e\x8f\xf4\x6b\xdd\xb2\x3c\x17\x10\x8b\x40\x8e\x01\x5d\xd8\xaa\x5e\xfa\x29\xd7\xd3\xed\x7a\xa7\x0c\xe9\x14\x68\x04\x9a\xc7\x0f\x1f\x55\x31\x60\xd9\x3a\x52\xc8\xab\x22\xc5\x36\x56\xe8\x94\x0b\x0a\x3f\x06\xb5\x6f\xd3\x77\x64\x72\x9c\x86\xdf\xd5\x34\x88\xef\x36\x29\x5f\x99\xcc\x26\x06\x55\x83\x03\x90\x39\x98\x07\x23\xc0\x45\xa2\xc4\x4f\x49\xd7\x6c\x5e\xac\x99\xac\xd7\x52\x32\xb3\x68\xda\xca\x18\x54\xbe\x79\x2f\x33\x43\x33\xab\xd8\x38\x37\x14\xa8\x1e\x72\xda\x68\x1f\x7c\xa2\x7d\x40\x2e\x4c\x7d\x54\xd2\x88\x49\xca\xc2\x2a\x89\xb2\xb3\x4a\xa2\xec\xec\xf8\x51\x4f\x20\x5a\xfe\xdb\xad\xaf\xfa\x46\xb3\x36\xcf\x98\xe9\xd4\xcd\xaa\x54\xc2\x7d\x03\x81\x5c\xa4\xd2\x3d\xb0\x6a\x1b\x39\x79\x20\x1d\x9d\xe9\x10\x1a\x14\x47\xdc\x15\x84\x1a\x24\xa7\x8f\x00\xa8\x82\x1c\xf8\x99\x4e\x55\xf2\x29\xd9\x23\x71\xdd\xff\x06\x1c\x64\x11\x5e\x2f\x8d\x5b\x07\x0e\x6c\x5c\xae\xd5\x9d\xfe\xf8\x1a\xff\x2c\x5c\xc7\x51\xe1\xdc\xa3\x68\x89\x33\x6e\x17\x4e\x4b\x2c\xfd\x93\xa0\xa9\xe3\x2e\x3c\x32\xf1\xe2\xad\x6f\xe1\xd9\x63\xe3\x6d\x21\x0d\x36\xe0\x78\x7e\x9e\x6c\xce\x21\x05\xfb\x0c\x24\x86\x71\x5e\xce\xa2\xcc\xc0\xe0\xe5\xd1\x8e\xa7\x02\xfd\x89\x1e\x0a\x6d\x90\x33\x05\xa2\xdb\xf9\xa6\x03\x22\x2f\xb2\x68\x85\x3d\x5e\xa4\x7f\x40\xf7\x86\x5f\x4c\xb9\xf1\xef\xdf\xfd\x6a\xfb\xf9\x56\xeb\xf9\xe7\x3d\xb8\xb5\xfa\x4a\x02\x6e\xf5\x5d\xd4\xdc\x86\x65\x16\x15\x91\xcd\x9f\x50\x74\xac\x3b\x08\x11\xf8\xa8\x2c\x2a\xc7\x89\x57\x75\x64\x56\x37\xb8\xfa\x73\xce\x61\xff\xf9\xe7\x6b\xee\x64\xa8\xe9\xb6\x33\x55\x11\xd5\xda\x3d\x2c\x0c\x67\xf9\x5c\x3d\x66\xe8\x53\x1d\x52\xe1\xf5\x1a\xf2\x00\xfe\x87\xc0\x8b\x58\xdd\xd6\x92\x98\x9f\x34\x81\x65\xd6\xa2\x8c\xd1\x91\x92\xec\xb6\x9c\x80\xf5\x69\xd7\x0f\xeb\x91\xc4\x9a\x03\x2f\x5f\x52\x75\xe7\x25\x15\xf1\xc2\x81\xc9\xe2\xc8\xce\xb6\x96\x16\x37\xb8\xd1\xcf\x26\x39\x55\xdc\xdb\x38\x1d\xd4\x7c\x73\x9e\x72\xcd\xb6\x6c\x68\x12\xb1\x2c\xc7\x0d\xc3\xf8\x00\xd3\x9d\x67\x26\x9e\x3d\xf3\x3f\x8d\x1f\xf1\xa2\x12\xad\x96\xd2\x72\xd2\x44\x96\xa6\xee\x67\x3f\x33\xbd\x92\x61\xd1\xec\x1f\x41\x71\x42\xbc\x24\xb4\x72\x5a\x31\x88\x92\x27\x7c\x5b\xf7\xaa\xb2\xdd\x79\x14\xbb\x0b\xc3\x9e\x87\x1a\x2c\xf3\x87\xda\xce\xe3\x86\xca\x29\xd8\x87\xd9\x91\xe4\x16\xbd\xdc\x19\xf6\xad\xf3\x8c\x77\x1e\xe5\xd7\x30\x91\x63\xc9\x5d\xc5\xee\xdd\x4e\xdb\x07\xb5\xde\x2d\x2a\xb9\x45\x50\xce\x15\x95\x6b\x64\x8f\xeb\xb4\x28\x2f\x69\xd3\xb5\x4b\x53\x03\xea\xbd\x0b\xed\x3c\x2d\x8b\x81\x35\x79\x61\x33\x40\x37\x44\xe6\xaa\xa5\xf4\xaf\xfc\xc0\xa1\x17\xe5\x61\x5a\x52\x88\xff\xff\xa9\xe5\xe1\xc3\x75\x2f\x1d\xda\x24\x0a\x23\x3e\x1b\xa4\x4c\x55\x23\xf4\x69\xb2\x8d\x94\xfb\xb1\x5d\xa5\x83\xa5\xa5\x60\x83\x81\xc6\x13\x2a\x04\x77\x6c\x6d\x06\xd6\xa6\xeb\xd8\x57\x9f\x94\x5f\xa8\x0e\xae\x09\x43\x3b\x2a\x60\x5c\xf2\xb2\x97\x6a\xde\xeb\x1f\xaa\xb7\x3f\xf9\x43\xdd\x7a\xb9\xa4\xbe\x95\x18\xe6\x3d\xa2\x3c\x83\x99\x86\xed\xc0\x38\x7b\xf6\x09\x19\x47\x03\x31\xb9\x85\x82\x7e\xc8\x59\x3e\x20\x10\xd3\x91\x32\xe1\x44\x60\x05\x25\xa4\xf3\x98\xa6\x21\x53\xbf\x1c\x68\x96\x8f\x8c\xe4\xfb\x69\x4a\x28\xe6\x19\x85\x77\x82\xc0\x2a\xd3\x81\xb1\x20\x65\x20\x57\x33\xf6\x1d\xd9\xac\x58\xdf\xe6\xf3\xcc\x8b\x01\x9d\x33\x0e\x86\xea\x6c\x08\x6e\x8f\xdd\xb0\xef\x1f\xbc\xa7\x20\xd5\xc7\xdc\xc7\x28\xcc\x8a\x19\xa6\x59\xa4\x14\xb5\x8e\x6a\x40\xff\xd1\xa9\x62\xd7\x79\xb2\x99\xd7\x87\x0c\x23\x12\x27\x0f\x75\x84\x5c\xd0\xfe\x69\x71\x64\x13\x50\xe9\x35\x71\xab\x46\xfe\x01\x62\xe1\xfb\x88\x47\x82\x1b\xf4\x74\x8f\x4b\x8a\xd4\xf1\xdf\x1c\xaf\x99\xc6\x29\x55\xf8\x4f\x54\xb6\x3b\x8c\xaa\x54\x95\x46\x68\x8e\x48\x0a\xe0\x91\x08\x3a\xf8\x6e\xcd\x28\x4d\xfa\xbc\xda\x45\x9f\x9d\xbe\x8a\x48\xdd\xfa\x2c\xab\x58\x8b\x84\x65\xb3\x58\x77\xe5\x90\xa0\xdb\x30\x98\xb3\x59\x9a\x8f\x4c\x08\x10\x05\x60\x1a\xef\xe3\x8b\xa2\xcd\x8b\xf9\x3b\x36\xff\x8d\x86\x09\xea\x22\xc6\x29\x21\xcd\xbd\xe9\x9d\x9d\xa1\xf1\x82\x33\x37\x56\xb8\xb6\xbc\x88\xb2\x5c\xc1\xee\x59\x79\x57\x64\xb8\x1d\xb2\xd6\x64\xbd\x2a\x89\x9e\xf1\xf3\xb0\x6b\x74\x83\x04\x8b\xa1\x6c\x7c\x0f\x8f\x6b\x1c\xb9\xbc\xc8\xca\x10\x87\x0d\x17\x34\x63\x55\x13\x9d\x57\x37\xac\x4c\xca\xbc\x34\xf1\xac\xc2\xe7\xf3\x0d\xd3\x66\x27\xd8\x68\xb7\x54\x4e\xf8\x8e\x1a\x55\x2e\x9b\x62\x40\x20\xcc\x2a\xdc\x3a\xb9\x9d\x05\xe7\x78\x76\x7b\xfc\x94\x42\xd5\xb8\x34\x78\xa1\x2e\x04\xcf\x2f\xa6\x1e\xd0\xc2\xc2\xcb\xbe\x4d\xe2\x55\x2d\xce\x23\x4f\x10\x3b\x85\xc7\x1c\x66\xfb\x75\xf9\x39\x11\xe7\x50\xae\x4c\xd3\x92\x48\x7b\x17\xda\x23\x13\xae\x18\xa7\x76\x26\xfa\x5a\x2d\x67\x09\x72\x41\x69\x42\x0d\x4d\x62\xfa\xa4\x2b\xfa\x28\x7d\xc1\x3a\xe6\x0e\x21\xee\x63\xad\x2a\xf1\xf6\xd8\xc7\xc1\xd6\xc4\xc7\xc1\x16\xa4\xb0\xd0\xc9\xd2\x76\x39\x37\x75\xfb\x0b\x9f\x1d\x4b\x97\x9b\xd6\xc8\x4f\x27\xb4\xf7\xc4\xef\x46\x75\x1a\xb2\x28\xaf\x8f\xa5\x61\x4a\xc7\xd7\xbe\x6b\x1a\x0d\xe5\x0b\x3b\x18\x94\xdf\xe6\xe7\x1a\x2d\xde\xaa\x4c\x30\x2c\x98\xc8\x8f\x28\xf2\x7b\x08\x82\xfc\xa2\xa9\xc1\x65\x87\x5d\x93\xf5\xd3\x19\xef\x89\x01\x59\x4a\xe7\x5b\xf6\xe5\x57\xf8\x8b\xff\xbe\x62\xe1\x65\x69\x57\x04\x53\xd0\x87\x40\x72\x87\x18\x8d\x89\xb6\x88\x65\xf9\xd6\x09\x71\xd7\xe2\xc2\x24\x45\xbe\x0d\xcf\x03\x59\xf8\x39\x5d\x66\x5d\xa1\x3f\xd4\xa4\xeb\xa7\xb0\x28\x0f\x15\xf5\x65\x64\x33\x7b\x90\x52\x01\x3c\xd0\xa3\xda\x41\xe2\xa8\xc2\x1d\x02\xf3\x1a\xa5\x49\x4b\x7d\xee\x33\x81\x96\xbb\x50\x93\x9a\xb5\x34\x5b\x21\x1c\x45\x4b\xfb\xbf\x07\xda\xff\xdd\xe5\x76\x36\x2f\xa2\xa1\x29\x80\xb1\xf7\x62\x73\x2d\xe7\x7d\xf5\x8e\xf6\x17\x84\xf7\xa8\x18\x19\xa9\xb6\x1c\x6b\xbd\xd1\x80\xea\xe9\xcf\x77\x3c\x85\xed\x35\x82\x28\x2d\x2d\x7a\xf3\x0b\x07\xb0\xfa\x71\xa3\xf0\x48\xdf\x16\xfc\x74\x30\x5e\xb8\xcb\xe3\x1b\x91\x24\x55\x32\x24\xa7\x15\x89\x1d\xc8\x4c\xb4\xa7\x50\xbe\x73\xee\xc1\x2f\x14\xeb\x9b\x48\x8f\x4c\x98\x54\xd1\x1b\xa9\x9e\x84\xf2\x69\x18\xf9\x62\xdb\xbe\x3e\xb2\x0a\x0d\xc5\x49\x01\x3d\x68\x49\x10\x1e\xf3\x28\xa0\x10\x53\x67\x6d\x41\xe3\x8c\xdd\x16\x9c\x0d\x17\x80\x17\x98\x5c\x1f\x76\x27\xf3\x72\x9a\x11\xde\xfa\x51\xbf\x77\x1f\x9d\x78\x84\x20\x5b\xd6\xa1\x5d\xc3\xb5\xa5\xb4\x61\xe8\x31\x62\xa9\x41\x60\x1a\x61\xe0\xf8\xd8\x73\xf5\xb7\xa2\x94\x43\x69\xc9\xc7\x2e\x4e\xd7\x9d\xd4\x89\xc4\x6f\x5c\x1e\x2b\x8e\xce\xdd\xf1\x33\x53\x42\x1a\x5f\x78\xc2\x4f\x0d\x39\xce\xa2\xa1\x78\x8d\xb2\x29\xf4\xe8\x3e\x45\xc0\x42\x96\x0a\x3d\x7c\x7c\x88\x33\x78\x5f\x60\xda\x66\x3b\x94\x9a\x23\xfe\x5c\xc7\x83\xc3\xb7\xdb\xd6\xa9\x6a\x48\xd1\x64\xf1\xa7\xd5\x4f\xc6\x9e\xc2\xf9\x83\xa0\xee\x09\xa2\x3d\xd5\xab\x02\x16\x9d\x50\xf6\xad\xe7\x3c\x2a\xea\x81\xf3\x8f\xb7\x3c\x3f\xf6\xda\x38\xe7\x9b\x5a\xfc\xdd\x38\x0d\x57\xba\x65\x95\x82\xcf\x28\x79\xa5\x4b\x6a\xc7\x6f\xa5\x16\x05\x5b\xe2\x4d\xa9\x3b\x7c\xb1\x5d\x0c\xec\x72\x81\x8c\x0f\x6b\xe2\x1c\x29\xa2\xa3\x22\x3a\xac\xe6\x4f\x37\x83\x5a\xc2\xd7\x2b\x43\x9b\x13\x80\x52\xd0\xbd\xf4\x37\x6a\xe7\xa9\x48\xda\xf9\xa1\x89\x29\x8b\x74\x98\x76\xa3\xd8\xce\x2a\xec\x20\xb3\x46\xb1\xa2\xee\xaa\xfe\xed\xff\x3a\xf6\xe3\xed\xd3\x2e\x4b\x18\x95\xd9\x28\xcd\x65\x84\x80\x19\x3d\x2b\x1e\xf1\x0b\x17\xf4\x87\x66\x3d\xcd\x66\x3d\xf2\x11\x77\xc3\x65\x76\xd5\x03\x65\x09\x67\x24\x70\xcc\x0e\x9a\x08\x27\x92\x4c\x31\xe3\xb4\x0f\x7f\x0e\x2f\x4b\x7d\x42\xcb\x52\x9f\x50\xc9\x45\x98\x45\xc3\x9c\x99\xc4\xcc\x23\x53\x42\xd1\xa7\x9b\x26\x54\x71\x54\x0c\xd2\x7e\x66\x46\x83\xf5\x9a\x44\x0d\x52\x6f\xd9\xce\x4f\xb9\x92\x1a\x2e\xfd\xcc\x3e\x42\x60\x98\xed\x28\x3f\xe5\x4b\x8a\x7d\xb4\x81\x35\x88\xc2\xaf\x45\x05\xb1\x8c\x47\x55\x4d\xfd\x56\xb3\x4a\x63\xba\x46\x3e\x00\x1b\xec\x20\x24\xa2\x0c\xda\xbc\xc2\x87\x8f\x6d\x9d\xa7\x55\xb6\x47\x9e\x38\xe0\x61\xa3\x3e\x3b\xab\xc4\x2a\x4f\x61\xf3\xa1\x4a\xff\x13\x35\x83\x1a\xc4\xeb\x8f\xf8\xde\x2d\x5c\x88\x30\x8d\x7a\x7a\xa2\x68\x86\xf7\x21\xfe\x77\x57\x99\xd2\x6e\x20\xda\xb8\xb6\xc8\x3f\xf9\x55\x57\x6f\x55\x1f\x91\xb2\xc7\x37\xfe\x3e\x12\x10\x9c\x13\xdc\xd7\x96\x24\x69\x5a\xaa\x01\x6b\xd5\x14\x68\xe9\xb6\x7c\xdb\x1c\x7f\xf2\xb3\x92\xeb\x2a\x77\xb3\x59\x39\x72\x6e\x94\x08\x0c\xc0\x77\x4a\xd3\x89\xde\x1a\x48\x89\xd9\x8e\xcf\x14\x97\x81\xf6\x9e\xf1\x78\x9c\x1f\x04\x1e\xd8\xc9\xf2\xe3\x88\x59\xa7\xfd\xb8\x35\x05\x00\xd2\x57\xdd\xb7\xb1\x38\x65\xcc\x3c\x4d\x91\x7b\x19\x63\xb1\x51\xe6\xd0\x3f\x42\x95\xf6\x25\x57\xa3\x3d\x51\x18\xa7\x6b\x02\x9b\x63\x78\x73\xa0\xa1\xce\xd3\x73\xe3\x57\xeb\xc2\xba\x28\x9d\xce\x05\x4a\x5d\xe1\x5c\x13\xcc\xa8\x1b\x9b\x1c\x9f\x4c\xd4\xc9\x7c\x2f\xe3\x9e\x2a\xa1\x97\xa3\xfe\xa0\x3a\xfa\xb6\xf9\x29\xdb\x51\x5a\xa0\x68\xe4\xdf\x0c\x74\xef\xf4\x94\xc6\xdf\x9d\x52\xea\xca\xd3\xde\x24\x18\xd2\x10\x5b\x38\x8b\x04\x21\x29\x1a\x35\x5e\x6b\xfe\x84\xd6\xc3\x5f\xb5\x59\x9c\xc2\x20\xc9\x87\xfa\x8b\x4a\x35\xe5\xa2\x4a\xf7\x86\x91\x19\x46\x68\xf1\x0b\xa6\xa5\xe5\xc4\x07\x4e\xa8\x50\xfb\x9a\x19\x99\xc4\xe6\xf6\x19\xea\xff\xb0\x7e\x5a\xe0\x27\xce\x87\xe9\x8c\x40\x73\xf7\x96\x96\x3f\x3e\x1b\xd4\xbc\x0d\xbe\x2a\xf7\x1b\x26\x23\x78\x62\x9f\xd2\xa7\x43\xbf\xe5\x36\x96\x17\x72\xc6\x87\xd8\x4f\x62\x77\x5f\x2d\x7e\x1c\xbf\x5b\x28\x86\x08\xee\x8f\x8e\x47\xb6\xb0\x0e\x5a\xaf\x2c\xb2\x24\x89\x24\x47\x62\x20\x4c\x7b\x17\xb7\x9d\x5b\xb4\xfc\x87\xc7\x4a\xd1\xfb\xc6\x66\xf2\xd0\xdc\x9e\xf6\x2b\x7b\xf6\xcd\x28\x4f\xc8\x63\x81\x9a\x29\x1d\x53\x43\xaa\xc1\xf8\x51\x5f\x0b\x32\x5f\xcb\x21\x3b\xaa\xa5\x26\xc8\x0e\x3f\x0d\x5a\xa1\x99\xc8\x4e\x4f\x47\x3a\x5c\x53\x85\x52\xee\xcf\x17\x02\xd5\xc6\xbe\x30\xa6\x24\xa5\x56\x68\xf1\x8f\xd1\xba\x90\x5f\xa9\xee\x18\x50\xfd\x87\x1b\x77\x45\xb1\x3e\x22\xb5\x05\x45\x36\x3d\xa5\x3a\xb3\xa7\x9a\xa4\xf5\xf3\x32\x83\xa2\x13\xf6\xc1\xa3\x44\xff\xc6\x11\xf4\x14\xe5\x54\xc2\xe7\xd4\xd0\x90\xe9\xf8\xc4\x12\x61\x25\x8a\x7f\xc5\xb9\x91\x3e\xe8\x61\x05\x6c\x39\x5d\x83\xa5\xe5\xc5\x17\x67\x7d\xee\xb7\x13\x6d\x7c\x87\x94\x72\xa3\xf3\x4f\xe8\xd8\x46\x26\x39\x2d\x62\x40\x6c\x69\x1a\xe7\x7b\xb7\xe1\x63\x35\xeb\x2a\xa4\x78\x35\x23\x1e\x9c\x2b\x03\x1b\xc7\x70\x9b\xe0\xc4\x9f\xda\x9a\x4e\x24\xd2\x6b\x74\xd2\x87\xc1\xa6\x40\x35\x28\x94\xf6\x27\x94\xea\x4c\xd2\xcb\x77\xfa\x10\xf3\x4e\x4d\x80\x51\xbb\x8b\x01\x7b\xe8\x94\x19\x3d\x19\xff\xb8\x36\xda\xa7\x9b\x86\x47\xce\x4a\xa8\xa2\x68\xf6\x39\x85\xa6\x27\xdd\x6a\x0b\xa1\x76\xc5\x04\x08\x74\x35\x7d\x5a\x09\x01\x1e\x1d\x6b\xd3\xff\x64\xd5\xae\x13\xc0\x1e\xff\x78\x95\x9e\x34\x5f\xd7\x1e\xd4\xc8\xc4\x3b\x94\xea\xe3\x2c\x69\x83\x40\x4d\x04\x83\x5e\x86\x42\x28\x83\xa6\xbb\xe4\x34\x2b\x10\x89\x96\x33\x03\x7c\x9f\xd2\x66\xf9\xf9\xe7\xdc\xa9\x33\x14\xfb\x0f\x6e\x8e\x37\xb1\x7e\x37\x47\xf6\x57\xaa\xd0\x9e\x16\x83\xd9\xea\xad\x90\x6b\x3d\xc4\x6d\x17\xd1\xbf\xea\xbd\xd0\xec\xe1\x42\x0e\x11\x65\x5a\x97\xec\xc0\x81\x76\x1e\x1d\xc4\x1a\x46\xb0\xff\x58\x59\xf3\xcc\x00\x47\x8a\xf9\x47\x95\xce\xfd\x83\xa9\x41\xed\x36\x35\x96\x7c\xa8\x35\x38\x1e\xd2\x97\xc7\xa7\x03\xd1\x0f\x01\xea\x0a\x9e\x2a\xf6\xc8\x9b\x0d\x1b\xeb\xe5\x76\x66\x87\x91\xc3\xa9\x38\x9f\x71\x07\xc4\x3c\x8f\x48\xc8\xa6\xf4\xaa\x87\x11\xa6\x29\x7c\x37\x97\x04\x1e\xf8\x49\xe0\xcd\x46\x3f\xd1\x0a\xa6\x2f\xef\x9b\x55\x68\x2f\x0c\x86\xf9\x5a\xb1\xf7\x18\x05\xc6\x2f\x54\xd8\x5b\xce\x4c\x12\xe6\xf4\x46\xa2\x39\xe1\xd9\x59\x97\x5c\x96\xd9\x35\x71\x1c\x39\xef\x06\x91\x28\xf3\x7d\xb1\x0b\xaa\x17\xd6\x8b\x4c\xec\xaa\x4f\x64\x68\x3f\xa2\xdb\xc6\xd7\xca\xe1\xcc\xf6\xfb\x50\xd7\xe2\xed\x18\xe8\xad\x29\x63\x6d\xb0\xd0\xc0\xce\x14\xea\xac\x87\x01\x90\x80\xa6\x80\x71\x4d\x61\x89\x44\x48\xc3\xd8\xfb\xcf\x52\xc2\x88\xdb\x3e\x83\xd6\x37\x8e\xc2\x9b\xf4\x3e\xe8\x66\x6e\x83\x30\x0f\x73\xb4\xc7\x8a\x30\x79\x5b\xa3\xed\x5b\x98\x5d\xa2\x67\x73\x46\xcf\xa4\xd8\x7c\xc0\x41\x94\x9d\xd5\xd1\x0c\x05\x23\x77\x98\xea\x7e\x70\xc3\x00\x2d\x4e\x57\xed\x8c\x6a\x6f\x1d\xd6\xdc\x4b\x7a\xaa\x42\x46\x53\x18\xd9\xb8\xec\xf7\xc9\x8b\x6d\x69\x37\x77\x83\x3e\x52\x9d\xa1\x8f\x1a\xd6\xe4\x62\x3b\xb7\x45\x11\x4b\xb1\x84\xe3\x89\xf1\x2e\xfc\xa2\x49\xa8\xcf\xc6\xb9\x5d\x1b\x58\x99\xf1\xc9\x44\xc6\xe5\xd2\xff\xdd\x45\xc5\x0d\xa6\xa5\x19\x46\x36\x29\x38\x4f\x46\xd3\x0a\x3d\x04\xbe\xfe\x4c\xf7\xb7\x65\x93\x0f\x44\x7a\x89\x5d\xfb\xb0\x76\xc5\xc2\xef\x11\xb7\x4b\xfe\xcb\xc7\xe9\xd1\x21\xf3\xbe\x47\xa1\x02\x65\xd5\xbf\xc6\x6f\x60\x6c\x7c\x85\xa2\x35\xb6\x2c\x24\xf2\xd1\xab\x3b\x12\x28\xec\x1c\x35\xe1\x44\x6c\xcc\xc3\x92\xae\x6b\xf3\xa9\xa3\x81\xb2\x15\xfc\x41\x0d\x52\x3c\xa6\x21\xb8\xd8\xa0\x54\x77\x05\x8b\xeb\x3f\x36\xca\xf6\x67\xd6\x2a\x45\x87\x3b\x81\x42\x32\xdf\x69\xd2\x5b\x5c\x36\x11\x97\xf3\x7a\xe3\xb9\xe6\x89\x83\x55\x5e\xd9\x2c\x23\xfa\x2b\xed\xf9\xf9\xa5\xd9\xea\xec\x45\xd8\x9f\x99\x78\xb4\xca\x4c\xc7\x8b\x91\x1e\xa2\xfd\x20\x5b\xe0\xd9\x86\x0c\x41\x23\x20\x51\xc0\xf2\x75\x93\x57\x51\x98\x26\xcb\x71\x14\x16\xad\x9a\xe5\xa5\x87\x91\x5c\x9a\xf2\x52\x38\x70\xa0\x9d\xb0\xcc\x05\x93\xab\xe9\x81\x08\xd1\xfa\x49\xe5\x18\xdb\x8f\x86\x16\xb1\xc0\x39\xc2\x78\x09\x8d\x40\xf8\x8f\x43\x3b\x4c\x33\x93\xf4\xca\xe1\x8c\x72\x31\xfa\x54\x09\xd1\x5d\xaf\xa9\x57\x3c\xae\x0d\xde\xed\x2c\xe5\xb1\xc8\x84\x4e\x69\x7b\x88\x63\x1a\x5d\x7c\x8c\xee\x1a\xff\xd4\x54\x55\xe5\xdc\x0c\x6d\xec\x35\xda\x71\xaa\xa1\xf6\xe3\x6b\x37\x1b\xcf\xd7\x4c\x32\x53\x73\x77\xf2\xf4\x83\x0d\xac\x11\xe9\xf4\xab\x1e\x2a\xe9\x0c\xf5\x58\x9f\x9a\xcb\x49\xac\x53\xa9\x2d\x1f\x53\x33\xa4\xd1\xf6\x2a\x24\xe1\x06\x7c\x7b\xec\xe1\xfd\x6f\xab\xbc\x9f\x97\xb9\xfb\x10\x2e\x21\x7a\x10\xa8\x36\xba\x6f\xbe\xb0\xb3\x78\x4b\xb9\x1b\xa2\x3a\x13\xe2\xae\x4e\x58\x46\x23\x9b\x6d\x9b\x52\x64\x14\x27\xa2\xea\x03\x71\xf2\xaf\x24\xb3\x7f\x1a\x28\xf8\xb4\x46\x30\x17\x69\x62\x71\x5f\x11\x32\x5b\x28\xe1\xf9\x45\xc7\xe7\x89\x36\xe9\xd9\xde\x2e\x1f\x51\xce\xd4\xcc\x63\x02\x65\x99\xba\x6b\xa2\x65\xf7\xa9\x72\x14\x39\x1a\xe7\x2a\x33\xf3\x4c\x87\xce\x12\x0d\xf9\x41\x3d\xb1\x8d\xc0\x9d\x72\x2c\x3c\xa3\x5c\x0d\xba\xab\x36\x73\xab\x40\xf7\x5a\x25\x4b\xf2\x53\x41\x93\x14\xd1\x6a\x94\x99\x98\xca\x7e\xdc\x9a\xeb\x58\x77\xce\x14\x75\x69\xb7\xa4\x32\x9d\x06\x5c\xd1\x88\xdc\x50\xf0\x5e\xc2\xcf\xf6\xa8\xe8\x8b\x81\x50\x99\xd6\x22\xb2\x77\x4c\x6c\x9e\x43\xce\x15\x85\xcf\x9b\x6a\x47\x31\x50\x9f\x41\xe1\x2a\xee\xcc\x4c\x7c\x0e\x91\x86\x61\x99\xe5\xb3\x3e\x49\xbd\xa9\xd4\xaa\x6f\x52\x38\x15\x91\x47\xda\x58\xfc\x42\xe9\xb0\x91\xee\x84\xdc\x1e\xbc\xc1\x3d\xf5\x66\xd3\x5a\x9f\xfb\x77\xb7\x8b\xcc\x26\x3d\xac\x7b\xae\x2b\x15\xe1\xf7\x84\x4a\x91\xf2\x28\xdc\x49\x4f\x55\xda\x05\x2d\x51\x8b\xda\xf1\xf3\x9e\x61\xfe\x4b\x4f\x4d\x6a\xeb\x9e\x3e\x0a\x16\xe0\x77\x70\xc2\x8b\x8d\xa7\x12\x71\xd6\xba\x94\x17\xc7\x8f\x38\x70\x9c\x51\xaa\x79\xd8\xc7\x7c\x1d\x68\xa2\x75\x01\xa2\x6a\xf5\xb7\x1d\x2c\xd2\x8f\x93\xa7\x00\x0c\xfb\x5e\x6a\x47\x59\x66\xf3\x51\x9a\xe4\xf0\x68\xdc\x2f\x38\x0f\x3c\x19\xbe\x6e\xb8\x59\xaf\xb6\x8b\x68\x18\xd5\xd4\xa8\xa0\x49\xc4\xd7\xaa\xa6\x2a\x4c\x5e\xf0\xae\x42\xdb\xed\xdd\xb1\xd2\x57\x7f\x57\x7d\x01\xc8\x1e\x71\x72\xab\x84\xe0\xc5\x74\x1c\xb3\x52\x94\xf9\xe7\xd4\xb6\x0d\xd3\xaa\xce\xad\x6e\x9c\x28\x8e\xa9\x3c\xab\x49\x19\xe7\xd5\xb6\x7d\x7d\x64\x20\x7c\xe0\xb9\x34\x0c\x69\xe2\x17\xb5\x29\x54\x5e\x44\x45\x59\xa4\x33\x4a\x08\xf5\x08\xa1\xe3\x31\xcd\xbc\x45\x81\x0c\xbf\x78\x41\xe9\x18\xc6\xd1\x8a\x7d\x86\x56\xa8\x13\x45\xda\x2b\xed\xec\x4f\x28\xbd\x90\x82\x5a\x0d\x61\xb7\x20\x62\xe0\x2f\xa3\xae\x42\xcd\xf9\xe1\x58\x49\x5b\xfd\x18\x40\x1c\x71\x65\x6a\x39\xce\xfc\x76\xac\x3a\x36\x70\x0c\x3c\x03\xf8\x9d\xc0\x57\xf0\xdb\x51\x58\x63\xfd\x3d\x18\x2b\x10\xc7\x69\xd4\xe9\x72\x4a\x54\x8f\x94\xab\x09\x44\x35\x69\x33\x6b\x43\x9e\x47\xa7\x94\xea\x89\x0d\x99\x16\x36\x2f\x6c\x26\x78\x4b\x44\xb7\x3f\xc3\x0a\xe7\x17\x0d\xcd\xcd\xf6\xaa\xcd\x7a\x51\x28\x94\x27\x84\xd4\x0f\x10\xb1\xf9\x85\xba\xc3\x2b\x69\xd2\x27\xdc\x39\x26\x30\xac\x27\x2f\x04\x28\x4f\x1e\x3e\xa1\xaa\x1d\xb8\x27\xb9\x6e\x8b\x62\x4c\x51\x62\x87\xeb\x07\xaa\xf2\xf6\x46\xf4\xcb\x69\xd9\x1f\x14\xd0\x51\x57\x26\xa5\x32\x7a\xdd\x41\xbb\x5f\x59\xe0\xec\x71\x5a\xa6\x6e\x40\x56\xa5\xe5\xb4\xe8\x04\x6b\x4e\x1f\x40\x54\x91\xa6\xf1\xa7\x2f\xb7\xa3\x9e\x35\xe8\xbe\xa2\x54\x3d\x8a\x5b\xc8\x2f\x94\x90\x2f\x6b\xab\x5b\xe0\x70\x31\x1f\xbd\x82\xde\x12\xbf\x18\x6b\x3d\x60\xe5\xcf\xf9\x03\x2f\x21\x60\xc2\x9c\x69\x1a\x58\x5b\xbb\x3a\x7e\xb4\x58\x13\x67\x6c\x4d\xfc\x63\x18\xd8\xb8\xf7\xa8\xca\x64\xb6\x60\x7d\xa1\x87\x72\x08\xc3\x17\xa7\xbb\xe0\x46\x04\x67\xf1\x54\x5d\xf3\xd9\xab\xea\x00\xe0\x22\x1b\xaa\xe5\x34\xff\x0e\x07\x4a\xc3\xf8\x34\xf7\x34\xa4\x9a\x6f\x7d\xed\x2b\xf2\x87\xa7\xa6\x20\xaf\x80\x9f\x9b\x47\x3d\x58\x8e\x7b\xdc\xdb\x0f\xb5\x38\xfc\x0f\xa7\x86\xf4\x4b\xbb\xdb\x36\x8e\x86\x51\x42\x8d\xec\xfd\xbb\x9d\xf0\x93\x27\xcd\x5f\x54\x58\x86\x22\xb3\x26\x2f\x33\xcb\x58\x14\xd1\xff\x56\xec\x96\x13\x8a\x9c\xbc\x92\x66\xd6\x24\xf9\x67\x8b\xfb\x36\xec\xab\xb4\xcb\xde\x5b\xf2\x98\x84\xc2\xa7\x12\x9f\xab\x1a\x29\x72\x54\x6d\x97\x55\x93\xe4\xb3\xbe\x3c\x6e\xe1\x30\x96\x65\xa5\xe8\x6a\x63\x75\x7c\x9f\x9e\xea\xb2\xec\x5d\x68\xe7\xa1\x61\x64\xb8\x60\xd3\x94\x66\xe9\x25\x95\x60\xe7\xa4\x56\xbf\x43\xf1\x2e\xa0\x7c\x2b\x8e\xfe\xd5\xbe\x74\x58\x63\x8f\x81\x3d\x3a\xf6\x0d\xce\xe3\xaa\xf3\x75\xbc\x36\xf5\x75\xb9\x6e\x3f\x8e\xba\x33\x4a\xc7\x20\xd0\xad\x5b\x85\x5c\x99\xd6\xf3\xab\x1e\xf0\xb0\x6b\xb2\xcc\xe4\xb9\xcb\x3a\x31\x39\xc2\xb3\xe0\x6b\x75\x1e\x24\x26\x0b\xd3\x22\x0a\xeb\x86\xfa\x4a\xec\xe2\x92\xc6\x9d\x9b\x38\x4e\xd3\xc4\x19\x27\xca\x6a\xf7\x10\xd1\xdb\x2a\x4e\x4d\x8b\x90\x1e\x38\xd0\xae\xee\x60\x1a\x7d\x36\x0b\xec\x31\x25\x45\x92\xec\xa0\xb5\x8d\x6a\x91\xdb\xd9\xfc\x62\x5c\x97\xde\xdc\x2f\x74\x92\x73\x81\xfa\x60\x80\x57\x3b\x8c\x96\x43\x4e\xde\x6a\xd2\xa7\xeb\x93\x7c\x10\xc7\x77\xfd\xc5\x64\x17\x37\xe8\xfe\x55\x47\x42\x2c\x07\x2f\x6e\xd7\x43\xe5\xb4\xf1\x30\xf0\x28\xf5\x9e\xdd\xe5\x1d\x9b\x7e\x58\x73\x4f\xff\x88\x7e\x05\xa7\xc8\x56\x8c\xee\xd0\x32\x3e\xac\xa6\x2e\xb7\xb5\x35\xce\x2d\x35\xe8\xba\x41\xc5\x20\x8e\xc2\x1d\x1d\x2d\x46\xdd\xa4\xcb\x90\xa5\x2c\x48\xc6\x24\xab\xb1\x1f\xb8\x9c\x74\xc8\x85\x51\x96\xc6\xd1\x72\x14\xd6\x4c\x82\xc6\x9e\x13\xe6\x9d\x96\xa0\x28\x6b\x7b\xdb\xfc\x20\x72\x07\xce\x6c\x5a\xe1\xdf\x7d\xae\xe3\xc3\x0c\xc3\xc2\xf1\x82\x9b\xbe\x68\x15\xbe\x1d\x3c\x5d\x6f\xdb\x26\xac\x3b\xc0\x95\x3b\x2d\x10\x54\x38\x3f\xa4\xac\xe3\xb3\xf8\x4a\xfb\x77\x2f\xb6\xbb\x65\xe6\x92\x65\x29\x7c\x5b\x4a\x5b\xb0\xc1\x0f\x3d\x34\x49\x68\x63\x19\x41\x22\x52\x83\xbb\x02\x04\xfe\xb7\xc7\xbe\xd8\xb8\xb9\x79\xf0\xb2\x77\xa1\x4a\xc2\xfe\x86\xf2\x04\x3b\x8f\x6d\x8d\x33\xf5\x34\x75\xf7\xf9\x44\x0f\x5a\xff\xe4\x57\x05\x90\x47\xc1\x42\x9a\x2d\x4a\x07\xfa\xdb\x01\x38\x0b\x68\xc6\xfd\x0e\x4e\x39\x8c\x85\x59\x80\x41\xe4\x0e\xe9\x39\x62\xdf\xcc\x10\x97\xd7\x65\x8c\x8b\x4b\x32\x80\xfe\x1d\x1c\x99\x58\x11\xc7\x88\x9a\xee\x88\xf1\x5e\x08\xf9\xdf\x05\xca\xfa\x02\x8c\x79\xb1\x8a\xc6\x42\x45\x54\x65\x23\x3b\x8c\x2a\x7e\x5b\x2d\xf4\x2d\x13\x9f\x85\x9c\x51\xd6\x89\x47\x02\xaf\xc1\xce\xa8\x1f\xbc\xc9\xd5\x31\x01\x5e\x05\xa0\xbd\xf9\x68\x98\x9f\x6f\x87\x83\x2c\x1d\xa6\x39\x09\xbf\x7f\x86\x49\xd8\x33\x8a\x2d\x3e\x1c\xa5\x09\xc1\xe7\x5d\xa1\x7f\x58\x85\xcd\xc3\xaa\x7b\x3c\xca\xd2\xe5\x28\xb6\xe0\xda\xa1\x84\x81\x3f\x17\x5f\x2b\xc6\xad\x11\xe2\xe2\x8b\xfc\x6c\x9e\xa0\x79\x9e\xb6\x48\xa0\x9b\xf9\x1b\xff\x09\xce\x1e\xe9\x11\xd3\x5d\x72\x69\xd8\xfc\xbc\xb0\x51\x26\x35\x87\x05\xba\x1d\x9c\xd1\xa9\x63\x2d\x4c\x63\xa3\x6d\x29\xde\x55\xd1\xe1\x5d\xe5\x87\x34\x28\x73\xf8\x6d\xa0\x31\x89\xfa\x8e\xaf\x15\x4a\xa6\x18\x64\xe9\xda\xac\x5e\x52\x67\xa9\x70\x77\x52\x75\x7e\xad\x80\x72\xc8\xff\xd0\xe4\x29\x17\xa6\x79\x81\xe2\x0d\xfc\x81\xd3\x38\x27\xf9\x45\xad\x4d\x14\x15\x7f\xb3\xba\x55\xa8\xa0\x9e\xa0\xca\x1f\x99\xd6\xd3\x1d\xa5\xcb\x38\x4b\xc4\x19\x2c\xee\xbb\xca\xdf\xe3\x1a\x3e\x96\x78\x8c\x54\x3b\x08\x98\xb7\x6b\x63\x6d\x9d\xf0\x97\xca\x6f\x6f\x16\x61\x07\xb9\xdd\x13\x9d\x3a\xc0\xb3\x5a\x6b\x78\x38\x3c\x40\x61\x9a\x41\xa7\xe5\x84\x9a\x9e\x9d\xa8\xe4\xf9\x89\x89\x27\xc8\x3d\xce\x1c\x22\x21\xf0\x2b\xc7\xe0\x9d\x9d\x6a\xd7\xc9\xf9\xa2\xaa\xf7\x9d\x68\x9b\x0b\xd8\xbe\x4a\xe6\xd4\x40\xcc\x5b\x73\x57\x0f\x02\xe1\xe0\x3e\x8c\xfe\xd8\x0b\x12\x5b\x90\x3f\xb1\x6b\x26\x45\x43\x04\x5b\x0a\x8d\x68\xdf\x6e\xc3\xb7\x46\x4c\xbd\xab\x0d\xa8\x9e\x9e\x32\x9d\x7a\x81\x54\x8c\x46\xc5\x4c\xdd\x15\xcf\x19\xfd\x5e\x52\x6e\x94\x0f\xea\xb4\xc3\x90\x8c\x1e\x69\x23\x3a\x3f\x44\x47\xe5\xaa\xcb\xea\x0d\x4d\xd6\xd2\x02\x1a\xec\x39\x26\xfa\x05\x4f\x28\xc9\xee\x88\xe1\x14\x6e\x3c\xb8\xe0\x11\xbf\xca\x4b\xc3\xc6\x66\x7d\x3b\x7d\x4d\xa4\xca\x1f\xd3\xe8\x0d\x7d\x2c\xe6\xbf\xf0\x3f\xe0\x80\x51\x6e\xb8\x2f\x3a\x2c\xb0\xaf\x8c\xcf\x78\xcb\xfa\xf2\xe0\x41\x6e\x14\xa0\x93\xb2\xb5\xe3\xd9\xc4\x5b\x27\x0d\x60\x55\x36\x8b\x6d\xb5\x94\xf5\x18\x7d\x32\xf1\x1e\x6b\xa0\xc4\x84\x51\x11\x1d\xb4\xc0\xd9\x3b\x95\x46\x87\x9e\x3f\xa5\x5a\x06\xcb\x11\x00\x2d\xfe\xfc\xdc\xcb\x52\x0e\x88\x62\xf7\x95\xa5\xd2\xf5\x40\x13\x82\xa2\xc4\xe6\x76\xbb\x96\x7d\xa5\x55\xee\x24\x69\xdd\xe4\xf8\x01\x65\x14\xa2\x13\x4b\x6f\x24\x5a\xb3\x5e\xf7\xe3\x41\xa3\x18\x79\x59\x08\xb1\x87\x3d\x2d\xc7\xca\xc1\xf5\xfd\x5a\xe5\x16\xad\x9a\xc2\xc6\xeb\x64\xdb\xad\x14\x13\xe4\x18\xdb\x50\x3a\x89\x8f\x63\x01\x63\xdb\x7c\x32\x56\x3e\x6b\x30\x06\x95\xef\xb3\xf9\xd4\x5e\x5c\x5a\x6c\x9b\xde\x6b\xa5\x43\x9a\x89\xf9\x17\xfd\x39\x59\xd0\x1e\x52\x6f\xe2\x34\xe9\x3f\xee\x63\xf1\x2d\xdc\x21\xc6\xb0\x07\x9e\x39\xb2\x03\x71\x00\xed\xac\x2d\x13\xa5\x0f\xf8\x4d\x1c\xa5\x00\x07\x9e\xd7\x4d\xd2\x07\x81\x92\x10\xe3\xcc\x5f\x04\x60\x3c\x47\xe8\x1b\xb8\x07\x08\xd1\xc8\x69\xd0\x17\x42\xa5\x8d\xfe\xdb\xff\xac\xa6\x8f\xbd\x68\x95\x72\xcb\xb9\x39\x07\xcf\xa8\x1e\xb1\x54\x35\xd2\xa8\x34\x61\x58\xe6\x30\x4a\xe7\x9d\x27\xfe\xab\xf4\x41\xf8\xc5\x54\xfa\x4a\x14\xcb\x38\x2a\x4c\xb6\xbe\x4d\xcd\x71\xae\x02\xb2\x21\x3a\x28\x1e\xd1\xf8\x44\xc7\xd3\xd1\x6e\x8c\x95\xed\xdf\xfb\x2e\x40\x75\x4d\x18\xc5\x71\x99\xcf\x6a\xf1\xab\x13\x4a\xde\xf1\x91\x8e\x07\x61\xbc\x35\x56\x6d\xc7\xd6\xa4\x21\xbb\x36\xcb\xcb\x71\x29\x87\x3a\x7e\xe9\x03\x65\xad\xfd\xc1\xd4\x11\xb5\xb4\xbb\x9d\x2e\x2f\xdb\x8c\x60\x1f\xc2\x15\x57\x3d\xb7\x3b\x81\xae\x07\x94\x15\xec\xf4\xc6\x5d\x58\x68\xe7\x36\x5b\x8d\x42\xa4\x1f\x32\x08\xab\xc9\x85\xd5\x20\x04\x71\xc8\xdf\x5a\x70\x03\x74\x4f\xb5\x3e\xa3\xb2\xf2\x58\xe4\xaf\x70\x61\x8a\x43\x37\x3f\xdf\x5e\x4f\xcb\xa4\xcf\x96\xe7\x8e\x07\x5c\x1d\x27\xc2\x03\xd6\xe1\xf6\x35\x69\x65\xe3\xe0\x7c\x6b\xac\x0c\xe1\xde\x52\x42\x6b\x79\x39\x9c\xf1\xd4\xc2\x77\x90\x70\x8a\xcb\x89\x27\x22\x1d\x75\xc1\x11\xfc\x3c\x42\x8a\xd1\x3f\xfd\x9d\x9f\xed\x54\xc7\xb0\x6e\x8f\x62\x6b\xb3\xf6\x28\xce\xa3\xad\xd8\x30\x68\xd2\x5d\x1a\x7f\xae\x9e\x2a\x57\xf7\xa7\xbd\x67\xdf\x53\x33\xde\x35\x7e\x27\xea\x1d\x34\x80\x8f\x29\xd3\x8f\x37\xb0\x41\xf1\x79\xe5\xd8\x47\x0e\xbf\x1d\x56\x75\x08\x8a\x7f\x15\x28\x0e\x0d\xb5\x31\x25\x71\xf6\x18\xc4\x53\xc4\x02\x55\xa2\xda\x8b\xdc\xe3\xfa\xa3\xc0\x1f\xa5\x6f\x81\x37\x8a\x43\xf7\x06\xed\x34\x71\xa4\xa3\x47\x89\xd2\xf9\xc8\x58\x4d\x51\x36\xa6\x50\xc6\x73\x73\xed\x28\x31\x3d\x9a\x67\xf0\xc2\x45\x5d\x7c\x5c\x39\x51\x1c\x1f\xff\xac\x00\x66\x4d\xde\x33\x5f\xff\xb5\x2f\x25\x46\x41\x43\x04\x20\x45\x9f\x53\x10\x52\x7a\xad\x65\x80\x63\xbc\xc8\x2d\x4f\x58\xbb\x39\x54\x94\x33\x04\x3b\xa9\x39\x70\x47\xea\xce\x13\x4e\xb3\xd9\xfc\x1c\x6d\x77\x54\x0e\xdb\xc9\x96\x1d\x8f\xf5\x7f\xa4\x7b\x89\xc7\xcd\xba\x9e\x42\x0c\xab\x82\x25\x48\xe2\x4f\x75\xaa\x82\x46\xa8\x89\x78\x46\xb4\xa8\xfe\xd3\xbf\x37\x21\x45\xd0\x1d\x40\x96\x50\x9e\x30\xfc\xc5\x09\x05\x50\x84\xd6\x9b\xbe\xfe\xf9\x25\x96\x7b\xc6\xce\xd9\xda\xa9\xcb\x67\x3a\xef\xd3\x56\x47\x8d\x20\x6e\x29\x09\xea\xc7\x3b\x5e\x1c\xe4\x67\x3a\x5b\xbf\xe0\xea\x5f\x45\x37\xdc\xde\xa9\x32\xca\x8d\xeb\xd8\x49\xa8\xa2\x77\x10\x33\x1a\x33\xbe\x99\x49\x95\x89\xa2\x5d\x73\x08\x4b\x0f\x29\x77\xab\xe3\x1c\x3e\x0f\xa3\x9a\x65\xd4\x92\xa6\x09\xdf\x56\x2a\xe1\x89\xcd\x56\x2d\xb3\x02\x71\x97\xb6\xd6\x4e\x32\xbf\x0b\xaf\x29\xea\x43\x5e\x98\xac\x97\x0e\x67\x3c\x18\x19\x9a\x01\x48\x2c\x4e\xd2\xc3\x90\x71\xfa\x66\x3b\xca\xbd\x0b\x0a\xa1\x4a\xc7\x40\xf5\x84\x1a\xed\x22\x1d\x0c\x36\xb6\x26\x8b\xd7\x67\xbc\x1a\x1c\x56\x91\x93\xc4\x54\xec\xc9\x1a\x07\x33\xcd\xc2\x28\x07\x27\x58\x38\xb1\xd5\xef\xf1\xb5\x1b\x9e\x8d\x32\x6e\x34\x66\xeb\x33\x2d\x65\x3f\xe0\xf1\x41\xd7\xea\x12\x65\xd3\xbd\xe2\xa5\xea\x4b\x31\x44\x42\x6b\xeb\xcb\x36\x16\x6b\x57\xb2\xf0\x58\xd4\x2c\xa5\x85\xda\x24\x01\x25\xfc\x49\x80\x10\xa4\x08\xf0\xea\x5f\xcb\x71\xca\x2c\x43\xb7\x71\xd0\xc3\xe2\xeb\x5a\x72\x6b\xa2\xe4\xd9\x6a\x9d\x38\xf5\xcf\x3d\xfb\x38\xf7\x7c\x17\x6b\x06\x71\x88\xd2\x86\x17\x99\xa4\x0f\x0c\x28\x62\x37\x6b\xe2\xe2\x23\x1d\xc5\x0a\x62\xce\x12\xca\x07\xc0\x27\xfe\x2b\x84\x67\x71\x0f\xc4\xbe\x62\x67\x07\x85\x76\xfb\xf7\x54\x3f\xd4\xc2\x05\xf6\xf7\x51\x3f\xf0\xda\xfa\x54\xc7\x1b\xb2\x4e\x74\x46\x70\x8f\x36\x20\x92\xe5\x1d\x68\x2c\xa0\x4b\xb1\x1d\x21\x59\xca\x4a\x9f\x43\xd1\xa2\xd9\xa1\x4c\x1b\x2e\xea\x0c\xf2\x16\x94\x09\x50\x73\xb1\xd5\xa6\x08\xe8\xf8\x28\xfb\x60\xac\x64\x31\x90\x77\x89\x3a\xea\xe6\x0c\x60\x6e\xae\x1d\x93\xbb\xb8\xcd\x5b\xf4\xf0\xd0\xf7\xf8\x5d\xcd\x5d\xf8\x5d\x35\x9b\x0b\xb3\x32\x1f\xb4\x14\x1e\xe1\x0d\x8d\x47\x78\x23\xf0\xe4\xa1\xe5\xcc\x7e\xbd\x24\x00\xce\x23\xca\xdf\xe1\x0a\xe2\xbc\x88\xce\x2b\x99\xd7\x0f\x95\x9b\xe4\xd9\xda\x1c\x95\xde\x40\x18\x96\x74\xdb\x58\xc8\x88\xb6\xbc\xf2\x9b\x7b\x51\x9c\xde\xb5\x0d\xb9\x67\x72\xae\x45\x45\xe8\xac\x2d\x50\xc0\xf1\x54\x9b\x5f\x28\x8c\x33\x98\xe4\x59\xb2\x1d\x75\xa9\x9b\xc6\xbb\x63\xb0\x35\x51\x63\xff\xeb\x4a\x4d\xec\x8f\xb4\xab\x38\x37\xb9\xd9\x6e\x4b\xc1\x2e\xa3\x5e\x9a\xaf\x27\x61\x46\xb2\x5b\x4a\x6b\xe1\x04\x9e\x36\xbf\x68\xc2\xa1\xb3\x17\xb8\xf2\xff\x6e\x29\x5f\xf0\xc7\x1d\x26\x62\xcd\x39\x72\x48\x5c\xf2\x68\xee\x46\x2d\x90\x51\x96\xae\x0a\x69\x57\xc4\xfc\xe8\xc3\xf0\x8b\x06\x12\xda\xcb\xed\x38\xcd\x99\x6d\x2b\xdb\x9a\x7e\x45\xf6\xb5\x1f\xb9\xda\x3c\x4f\x5b\xba\xaf\x70\x4b\xcf\x38\x6e\xd5\xce\xde\xb4\x04\xee\x50\x83\x01\xf8\x5a\x65\x5b\x07\x7b\x06\x7a\x97\x9a\x1f\xac\x44\x56\xa4\xef\x73\x6f\xca\x5a\x58\x80\x31\xa6\xb7\x0a\x19\xd5\x19\xc5\xfc\xb9\xa6\x41\x59\x9a\xd2\xf7\xa3\x26\x3f\x7f\xce\x23\x67\x7c\x71\xc1\x52\xcf\xe8\x3e\x60\x1e\x2a\x09\xe6\xe6\x1b\x38\x37\xd7\x1e\xd8\xac\x38\x08\x68\x13\x7b\x5a\x07\x6a\x45\x9e\x77\xf5\x07\xc9\x43\xaf\x9a\xb8\x94\xf5\x0b\x8a\x0b\xe4\x75\xf8\x7a\xa2\xef\xa1\x49\xec\x0e\xfa\x20\x48\xe7\x6e\xa2\x5d\xca\x2f\xe8\x53\xe1\xcc\x3e\xa6\x3b\x86\xdb\xaa\x38\xb6\x71\x79\xec\xe7\xbe\x17\x55\xc7\x6b\xcb\xa4\x61\x39\x1a\xdb\x17\x61\x25\x80\x77\xc0\x11\xe2\x6b\x85\xc9\xb4\xaf\x8f\xd2\xac\x00\x46\x03\x77\xfa\xb1\x89\xe7\xa3\xde\xc2\xae\x11\xfc\x80\xef\x58\x5c\x6d\xb0\x8f\x7b\xb5\x9d\x5b\x3b\xac\x7b\xa0\x78\x6e\xe8\xc5\xc0\xaf\xba\xae\xb5\xc9\x93\xd5\x3f\x21\xb0\x43\xd2\x16\x7d\xd6\xeb\xde\xb6\xfa\xc7\x7f\x13\x9b\x19\x5f\xf9\x67\x3a\x1e\x47\xf4\x4b\x9f\x47\x3e\x84\x74\xed\x1a\x9d\x05\xb8\x55\xcf\xa0\xfb\x24\xed\x58\xba\x89\xc8\x9a\xee\xf0\x59\x22\x87\x65\xcb\x29\xaf\x3d\xda\x51\x40\xf1\x5d\x80\x83\x72\x8d\x42\xc1\xcf\x19\x15\x28\x18\x61\x93\x65\x31\x01\x1b\xa3\xbc\x98\x51\xdc\x8a\x8b\x0a\xe3\x71\x45\x19\xf6\xfc\x59\x93\xe4\x5f\x98\x26\xbd\x52\x11\x34\x35\xdc\x4b\xe0\x40\x32\x7f\x5e\xc9\x6c\x72\x50\x3b\xd0\xb3\xbf\x91\x20\x7c\xe9\xfe\x78\xb5\x35\x97\x6b\x0d\x49\xa9\x0c\x1d\x60\x36\x46\x53\xd8\xda\x33\x8a\x32\x2c\x03\xaf\xbc\x80\xda\x07\x2b\x4d\x07\xca\x7c\xfc\x96\x1b\x37\x0f\xca\xfe\xa0\x55\xfd\x1d\xb4\x18\x3e\xd5\x9e\xaf\x9f\xaa\xe5\x16\xa6\xe9\x4a\xe4\xa4\x9b\x44\x57\xa3\x66\xda\xe5\x54\x0d\x4b\x9a\x90\xee\x54\x01\x9d\x8f\x67\x21\x2f\xb9\x79\xf2\x9f\x90\x68\xf0\xab\xd5\x16\x71\x28\x0b\xe4\x1e\x42\x1b\xf4\x8c\x8d\xfb\xda\x34\x64\x53\x21\x5b\x16\x4f\xd1\x41\x8e\x3b\xfa\xa6\xa6\x1a\xb0\x0f\x88\x60\x3e\xea\x1a\x0a\xd5\x09\x8d\x10\xa7\x9d\x6b\xcf\x20\xe4\xf0\xaf\x04\x2a\x28\xce\x52\xf3\x15\x5f\x63\x16\x09\x93\xa8\xba\xe0\xc6\xa0\xfd\x7a\x55\x4d\x07\xdf\xa7\x34\x18\xb7\xe1\x4d\x0d\x76\x38\x41\x6d\x16\xc7\x61\x73\x92\x51\x57\x03\x6f\x29\x5d\x25\x79\x4e\x05\x5b\xa0\x96\xf4\xe5\xe4\x98\xae\x79\x2a\x99\x90\x02\x27\xaa\x54\x56\xda\x44\x9e\x00\x3d\x58\x3c\xfc\x63\x75\x59\x85\xbe\x4d\x22\xd0\x54\xbc\x0f\x9a\xd6\xaa\xf3\x5a\x64\x2b\x51\xd2\x47\x11\x87\x34\x0d\x36\xdc\x28\xb7\x4e\xa3\x05\xe3\xd8\xa9\x0e\x2d\xb6\x4d\x21\x54\xff\x1f\xe7\x44\x39\x2c\xe3\x22\x1a\xc5\xb6\xcc\x6d\x36\xab\x88\x96\x18\x3d\xa0\xf7\x04\xb3\x10\xf6\x69\xc1\x23\x41\xb5\xf5\x6e\xd3\x0c\xd9\x84\x2b\x49\xba\x16\xdb\x9e\x63\xa2\x21\x0f\xba\x4c\xdf\x9c\xaf\xdd\x97\x19\x99\x72\x54\xed\xa6\xea\x8f\x3a\xf1\x75\xef\x91\xde\xe4\x03\xbd\x1c\x49\xdb\x0e\x5d\x9a\xe3\x1a\x33\x74\x7c\xec\x19\xb0\x6b\xc6\x66\x45\x1e\xc5\xc6\x22\x1a\x68\x39\x35\x11\x67\xf7\xd0\xea\x91\xc9\x8a\x28\x8c\x46\xc4\xf0\xaf\xee\x27\x22\xd5\x04\x21\x10\x75\x1b\xc4\xdc\xa5\xcf\x5e\x3d\x1c\x04\xd0\xff\x63\xec\x51\xbe\x47\x83\xcf\x7b\x41\x87\xf5\xbc\xb0\xd9\xfa\xaf\x7d\x29\x4c\x87\xb6\xb7\x8e\xaf\xa9\x85\x0a\x44\xb7\xaa\x9e\x27\x27\x0a\xc3\x7c\x81\xde\x46\xd2\x1b\x5d\x4f\x24\x69\xf1\x39\xaa\x89\xd1\xd3\x63\x62\x2a\x2d\xad\xfe\x73\x68\xa5\xe0\xd8\x79\x38\x56\x40\x5d\x06\xdd\xe2\x77\xee\xd0\x1f\x47\x0a\xca\x5e\xab\xd8\x20\x97\x03\x25\x6a\x05\x2d\x29\x41\xe3\x7a\x03\xf1\xb7\x71\xf6\xa2\x33\xce\x63\x48\x1c\x0e\x77\xe8\x40\x11\x85\xe8\xaa\xcc\xd7\xc7\x19\xf6\xe3\x2e\x96\xb5\x70\x8a\x95\xae\xc9\xbe\x7d\x42\xf1\x00\xd3\xc1\xf7\x94\x2d\xf8\x65\x4a\xf9\xa5\x75\x43\x4b\x40\x04\x48\x36\xf7\x52\x0e\x1c\x98\x22\x5e\x4a\xd7\xcc\x37\x01\xb5\x13\xbc\x1a\x19\x2a\xed\x8c\xe3\x34\x3e\xe2\xeb\xc0\x3b\x7c\x94\xc3\xa1\x49\x66\xb5\x7c\x1e\x24\xab\x71\x04\x9e\x54\xd1\xf2\x6d\xcd\xe8\xbd\xab\xd2\x3c\xdb\x85\x9a\x16\x8e\x98\x2d\x13\x7f\x46\xc1\x91\x6b\xe3\xf8\xd4\x09\xb7\xf8\xd2\xcb\xed\xe5\x6a\x67\x39\xd8\x80\xa0\x5c\xfc\x88\xf9\xaa\x17\xb5\x8d\xe2\x55\x0f\x3a\x13\xb1\x3c\xad\x9c\x37\x95\x82\x2c\xed\x6e\xc7\x65\xb8\xb2\x4e\x07\x11\xce\x59\x1c\x12\x7c\xdd\xa0\xa3\xfc\x6a\x3b\x5b\x47\x9b\x53\x4f\x6d\xf9\x5a\xc9\x38\xe5\x45\x1a\x1f\x1c\x9a\x64\x53\x7c\x53\x3e\xaf\x8f\xfa\xb1\xe3\xea\x8e\x96\xd3\xc4\x61\x85\x71\xdc\x59\xd8\xc9\x8b\xf6\x2b\xad\x00\xb1\xbe\x53\x13\xe9\x9b\x81\x22\x64\x5d\x0c\xf4\x44\xe9\x62\x83\xb5\xc5\x9e\x76\xcf\xe6\x51\xdf\x0d\xfe\x1d\x71\xc1\xd1\x3d\x2e\x35\xc9\x21\xbe\x66\xd7\x88\x20\xe2\x20\x3c\x6c\xd5\x2f\x84\xed\x26\x86\xc8\xc8\x84\x2b\xfe\x99\xa0\xeb\xc4\x18\x25\x7e\x31\xb5\x92\xf7\x2e\xb4\x6d\xb2\x9c\x66\x21\x09\xc3\x28\xa5\x26\x64\xbb\x7c\xdd\x34\x3c\xea\xdb\xa4\x14\x5f\x49\x0d\xd0\x15\x9e\xef\xe3\x8e\xe7\x1e\x4a\xbf\x91\xfb\xaa\x1d\x7f\x7a\xed\x9c\x48\xc2\xb4\x1a\xd9\xb5\x7c\x87\x92\x0d\x23\x7d\xa9\x8d\xf7\xf1\x18\xf8\x7f\x05\xaa\x6d\xf6\xb9\x8e\x42\x42\xbd\x47\x6f\xad\x39\x83\x68\x91\x3d\xee\xfe\xfe\xc0\x86\xb1\x41\xea\xc7\x1c\x54\xe5\xdd\x76\x5e\x3b\x99\x4c\x7b\x67\xcc\xcd\xb5\x33\x9b\x17\x69\xc6\x02\xc9\x4c\xde\x1d\xfb\x21\xd2\x09\xd7\x5e\x1a\x46\x55\x4a\x66\xb3\x88\x5b\xa6\x0e\x8b\xe5\xc0\x93\x47\x9a\x1e\x77\xdf\x0c\x45\x02\x94\xcf\x75\x85\x09\x9d\x9e\x01\xcc\xcf\xb7\x47\x71\xd4\x1f\x14\x0c\x43\x16\x95\xfa\x9a\x7c\x7d\x03\x85\x65\xd5\xe4\xb2\x3c\xb8\x83\x3c\x56\x1a\xec\x27\x9b\xfc\xf5\x33\xb3\x2a\x8e\xfc\xae\x91\xef\x5b\x70\x6f\x29\x2d\x4e\x93\x0c\xe8\xa4\xdf\xd6\x72\x42\xe9\x4c\xc5\x42\x40\x3c\x43\x29\x3a\x12\x89\xbb\x6a\x5e\x74\xa6\xd6\x91\x09\xfc\x94\x29\xca\x33\x63\x63\x36\xe2\x46\x24\x43\xce\xc5\x0d\x6f\xe5\x4a\xfd\x5d\x85\x21\x3b\xa2\x45\x73\x6e\x60\xfd\x63\x01\xb5\xa6\x26\xa7\x73\x73\xed\x62\x90\x45\xcb\x9c\x44\x4b\x01\x49\x7f\x40\x4a\x4b\xe5\x72\x12\x0e\xec\x90\x7a\x3e\x7b\xf6\x71\xaf\xea\xc2\x58\x19\xbf\xd7\x07\x20\xdd\xa8\xb7\xa3\xfa\x96\x38\xa9\x78\xac\x87\xb1\xcb\xfd\xc0\x5b\x43\x82\xbb\x8d\x94\xea\x9c\xd6\x93\xfa\xcd\x40\x1d\xa6\x17\x14\x9a\x6f\x1a\x29\x44\x82\xbd\x83\xa8\xd7\xb3\x09\xa2\x0c\x0a\x7f\xb8\xe3\xf2\xf5\x44\x21\x2f\xac\x18\x80\x71\x1d\x89\x47\x2a\x45\xa5\x7f\x02\xc5\x20\x4a\x56\xa0\x0e\x22\xcf\x90\x7e\xd2\x81\x8c\xab\xa4\x59\x06\x01\x3e\x1c\xa7\x59\xd4\x8f\x12\x43\x14\xdf\xc5\x9a\x2a\xab\x68\x88\xd2\x87\xc4\x99\x02\x5a\x12\xe7\x97\xc8\xfe\xf9\x1f\x1c\x30\x7f\x98\xae\x61\xf4\x0c\xb2\x1e\xc4\x66\x10\x9b\xee\x06\x35\x33\xcd\x26\x0a\x9c\x18\x24\x21\x4f\xe3\xef\x11\xe8\xef\xe4\x25\x93\x5e\x2b\x65\xae\x86\x4e\x28\xb6\x21\x5f\x2b\x06\xdf\x4a\x14\xae\x74\x4d\xc8\xe6\xd4\x52\x9d\xd1\x67\x94\xb2\xcd\xe3\x66\xfa\x66\x68\x77\xa8\x92\x11\xa8\x3a\xa4\x3c\xf0\x5d\xe1\xd1\x0e\x52\x1e\xb6\xbc\x1b\xab\x58\x73\x84\x82\x15\x8e\x9c\x9d\x34\xed\xc2\x76\xb8\x1d\x3c\xa9\xe6\xc8\x31\xa9\x0d\xbf\xe2\x34\x62\x31\x94\x15\xfb\x82\xcd\x7b\x7b\xdf\x4b\x7c\x32\xd1\xca\x07\xf0\xf7\xb6\x62\x8c\xdf\x56\x0c\xa4\x81\xcd\x9e\xa3\x2f\xc7\x74\x3c\x94\x01\x48\x00\xff\x92\xde\x45\x4c\x80\x69\xb6\x72\x7d\xac\x02\x2d\x8b\x30\xb3\x3a\x20\xe5\x6e\xc0\x9f\x5d\xc5\xd7\x45\x65\xc6\xd2\x31\x68\x8f\xbf\x45\xb8\x14\x5d\xa2\xa3\xe4\x63\x84\x0e\xfe\xe1\x3e\x85\x13\xf7\xdb\x6e\x98\xf3\xd5\xfb\x54\x72\x61\x89\xce\x4e\x7c\xb2\xfb\x00\x68\x1b\x14\x2c\x87\xb0\xb9\xc4\xd6\xdd\x4b\x41\x7c\x97\x9c\x58\x30\x7f\xbc\x19\xfc\xac\xc7\x9a\x0c\xd2\x22\x5d\xae\xa2\xfb\x40\x94\xff\x58\xcf\xba\xa6\x6d\xed\x49\x53\xab\x69\xde\x67\x39\x0f\xc1\x69\xd2\xa7\x17\x00\xe7\x34\x42\xf0\xd5\x76\x68\xe2\x58\x12\x05\xe5\xd3\xb2\x47\x5e\x8c\xff\xde\x67\x34\xe5\xba\x51\x6a\x93\x7e\x94\x58\xd7\xbf\xc4\x1e\x62\x41\x71\x7e\xe1\x6c\x06\x05\x1c\x19\xaf\xcf\xf8\x43\xec\x2d\x35\xe3\xbc\xa6\xec\x18\x2e\xba\x66\xf0\x5a\x46\xa3\x57\xde\x49\x32\xb0\x55\xc3\x5b\xc5\x70\x5b\xce\xca\xa8\x88\xc5\x4b\x1f\xc0\xbc\x37\xe9\x67\xf9\x5a\x31\x7d\xa2\x92\x47\x25\x38\x03\xce\xd5\xf5\xf1\xfc\x38\xed\xa7\x04\x28\x15\xaf\x81\x06\xd8\x40\x3a\x8a\x12\x1a\x33\x29\x90\xfb\xa7\x0a\x91\xfa\xe9\x66\x88\xe4\xd2\xee\xf6\xfc\xfc\xd2\x4c\x0d\x8d\xac\xb8\x0d\x67\x94\xe7\xcc\x9f\xaa\x83\x20\x4c\x13\x9a\xa2\xd2\x87\x06\xfd\x14\xa9\x2c\x5f\xbb\x0a\x18\x12\x0d\x36\x29\x24\x1f\xc0\x41\xc1\x50\x75\x7e\xe1\x52\xff\x2c\x5a\x8d\x6c\x66\xf8\x84\x46\xcf\x81\x97\x36\xbf\x70\x69\x15\x49\x28\x70\xa5\x2a\x72\x87\x5a\xfb\x30\xd8\x24\xa8\xf5\x42\x75\x96\x2b\x30\xc5\x87\x80\x39\xe2\x98\xfe\xfd\xda\x58\x91\x8a\x05\x74\x3f\x78\xf5\x39\xa6\xee\x92\x14\xae\xef\xe3\x11\xa1\x11\xb2\x81\xf9\x8a\x73\x1c\x7a\xc5\x1d\xd1\x2c\xfd\x8c\x2c\xeb\x7d\xa0\x54\x9c\xff\x4d\xb5\xf9\xc1\xa7\xdf\x3a\xd1\x2e\xf6\x87\xc6\xaa\x57\x7b\x33\x50\x9c\xce\x5b\x54\xa2\x49\x97\xa1\x8a\x24\x08\x55\xdb\x27\xad\xe7\x9f\x77\x66\x77\x55\x45\x28\xa3\x6d\x7a\xb0\xa2\xe2\xab\x0a\xbf\x37\x28\x68\x61\xad\xff\x96\x86\x95\x3e\x20\x20\x2a\x5a\x28\x1f\x51\x20\x41\xfc\xbc\x46\xa5\x29\x02\xd7\x75\x0a\x4f\x38\x7f\xde\x46\xdc\xc2\xa4\xf2\xbd\x31\x06\x1f\x4e\xf7\xe9\xcb\xaf\x88\xa8\x78\xe0\x61\x09\x7f\x40\x11\x46\xb2\xfa\xa7\x54\xfe\xd4\xb7\x99\xed\x51\xc4\x70\x19\x8e\xca\x6a\x1a\x92\xf0\xd5\x28\x73\xd8\x27\xa7\x6c\xea\x78\xc5\x27\x5c\xb5\x36\xb0\x66\xd5\x26\xb9\xf2\xfc\x64\x2c\x10\xbf\x98\x62\x40\xcc\xcd\x91\x2c\x73\x54\x14\xe2\x8c\x8e\x1d\x78\x14\x13\x23\xe7\xeb\x34\x3f\xcf\x8d\xe1\x8b\xea\x10\x4d\xaa\x77\x6b\x29\x1d\x2e\x9e\x08\xf0\x0b\x55\xa6\xee\xfb\xc7\xbf\x4a\x9f\x09\xad\x80\x96\x16\x7b\xa8\xf1\x5e\xd2\x32\x43\x2e\xa1\xd1\xef\xc8\x92\x3e\xa6\x55\x89\x85\x08\x0d\x1d\xbe\xa6\x58\x81\x6e\xca\xad\xa9\xef\x57\x95\x4b\xeb\xb6\x48\xa2\x95\x74\x79\x99\xf7\x9b\x02\x49\x79\xa7\x3f\x8f\x6a\xb5\xab\x36\x79\xae\xe5\x04\xf2\x37\xb0\x67\xb0\x4a\xdf\xa7\x95\xc2\x50\x66\x2c\x73\xc7\x9c\xf4\x04\x50\x76\x0d\x40\xfc\xba\x86\x03\x88\xb9\xee\xd8\x4e\x8e\xf4\xb9\x57\x9c\x00\x8e\xd0\x21\x87\x96\x61\x0b\xad\x48\x27\x1f\xbe\x24\xa2\x2f\xb3\x1d\x8f\x16\x38\x1a\x68\xf9\xf0\x33\x40\x8e\x88\xac\x80\xc2\x81\x7e\x42\xdb\xc7\x25\x9a\xd5\x57\xc6\x36\xf9\x91\xc2\x69\x5c\x26\x85\x75\x1c\x6d\xdf\x9a\x4a\x20\xf6\x2e\xb4\x45\xb2\xd3\xc1\xad\x6f\x61\xc7\xf1\x8b\x46\x6d\x0d\x52\x7d\x13\xff\x21\x54\xe1\x1f\xe1\x5e\xf0\x8b\xcd\x5a\x80\x7f\xbf\xbd\x67\xdf\x2e\xda\x65\xec\x1b\x45\xf7\x47\xac\xa6\x14\xaf\x0b\x5e\x69\xce\xe8\xa4\xba\xf1\x00\x86\x40\x9b\x9a\x25\xe4\x03\x95\x9b\xfc\x47\x95\x5c\x30\xa0\x51\xd8\xa2\xda\x5c\x3d\xa5\xf6\xb9\x23\x69\x00\xea\xc5\xd7\x9a\xd7\x5c\x66\xc9\x63\x0a\x5e\x7b\x97\xde\x16\x1f\x1a\x00\x4e\xc4\x98\x87\x08\x70\xce\xc3\x4b\x80\x4c\xff\xfb\x23\x78\xc2\x1c\xa1\x03\xa5\xe3\x8f\x62\x13\x4f\x08\x28\x69\x1a\x8e\xe4\xcf\x60\xd2\xc2\x7f\x0a\x31\xd5\x81\x96\x97\x9c\x78\xf1\x58\xce\xa3\xbc\xc8\x6c\xd2\x2f\x06\x8e\xc7\x20\x72\x87\xf4\x67\xf0\xd5\x3f\xd2\x62\xd9\xdf\xf4\xa0\xf3\x28\x89\x9c\x9e\x07\xf6\xe1\x1b\xca\xda\xe5\x0d\xef\x31\x11\x97\x6e\x4f\x39\x2c\xac\xef\xfe\x9d\x56\x80\xcc\x9e\x5d\xb6\x49\x8f\x68\x5c\x73\x73\x0e\x2b\xeb\x65\x25\x3f\x0e\xea\xaa\x45\xd0\xbc\x64\xd3\x02\x2c\x35\x71\x30\xa0\xfb\xae\x87\x91\x7c\xed\x3e\xd6\x9a\x8d\xaa\xa7\xf8\xd5\x3d\x4e\x97\x55\x4d\xc5\x2f\x04\x1e\x29\x98\x54\xd5\x7b\xd2\x52\x46\x44\xe8\xab\xf3\x75\x53\xf9\xbe\x9a\x46\xa1\xcd\x67\xd4\x3c\xeb\x92\xc6\x1c\xbd\xc6\xf8\x5f\x48\x9a\xdc\x72\xad\x7f\xd3\x5b\x65\xb3\x5d\x25\x4a\xf1\xa9\x9e\x80\x7c\xea\x66\x99\x61\x94\x85\xe5\x90\xdc\x78\x66\x3c\x78\xeb\x6a\xe0\xd9\xf1\x47\xc6\x1e\x90\x32\x0d\x92\xaf\xb6\x5e\x62\x4d\x86\x7d\x27\x85\xae\x57\xf8\xd5\xca\xca\x3c\xe9\x6a\xd5\xc5\x08\x17\x16\x9c\xc5\xea\x34\x7d\x6f\xa9\x9d\xd9\x38\x32\x42\x6f\x76\x03\x0f\x37\x32\xbd\xa4\x90\x2d\xf6\xf5\x30\x36\xd1\x10\xe7\x91\xfc\x4d\xed\xe1\xea\x12\x55\x67\xce\xc5\x29\x9d\xc8\xb5\x79\x40\xfe\x89\xa9\x9a\xaf\xfa\xa6\x06\x5a\xf1\x35\xb5\x3a\x16\x22\x12\x9a\xb6\x64\x52\xaf\x99\x30\xed\xe6\xa4\xb6\x21\x44\x3c\xa5\x98\xcf\x62\xc7\x68\x39\xa2\x0d\x2b\x9c\xa1\x67\xf5\x94\xd6\x66\x91\x4d\x42\xbb\xa3\x0a\xd7\x80\x2a\x41\x3b\xcc\xe1\x83\x5c\x3b\xff\x03\x35\x05\xfa\x29\x22\x01\x4e\x94\x1d\x13\x35\xbb\x43\x83\x10\x51\xea\x94\x1b\x2b\x96\x49\xc8\x5d\x22\x84\x29\xa8\x31\xf2\x75\x93\x40\xf4\xa0\x7a\x92\x99\xe1\xbb\x27\xc6\xc6\x6a\xfa\xf7\xb0\xa1\x65\xb9\xd8\x4e\xcb\x42\xdd\x3e\x84\x5a\x74\x47\xf9\x7a\xaa\xb9\xfb\x42\x3b\x49\x37\x3b\x79\x1f\x51\x80\x94\x23\x53\xd8\x30\x2f\xb4\xd1\x37\x99\xaf\xcf\x91\x49\x31\x04\x84\x5f\x34\xda\xc0\xda\x5e\x64\x8a\x8c\xfd\xd7\x84\x88\xe7\x3b\xbb\xc7\x14\xc4\x3a\xcc\x4c\x62\x5b\x8a\xa5\x06\xa3\x79\xbe\x76\x11\xae\x67\xc3\xd8\x64\x50\xbb\x74\x22\xf7\x6e\xf6\x75\x1c\x67\xb4\x94\xd6\x0d\xa6\x7f\x3d\x33\x84\xe9\x1f\x9e\xe7\x59\x65\xa7\x73\x76\x4a\x3a\x65\x7e\xbe\x1d\xf6\x44\xed\x19\xa1\xe5\x0c\xa2\x04\xea\x23\x00\x92\x35\x84\x46\x60\x56\xf4\x3d\x04\x7d\xb7\x39\x18\xcd\xcd\x71\x55\x3f\xe3\x3b\x76\xd7\x94\x6b\xd3\x56\xd5\x12\x3a\xdf\x24\x2a\x97\x17\x76\x34\x92\x09\x80\x28\xe3\xd0\x93\x91\x92\xc8\xbb\x25\x99\x1e\xda\x9d\x19\xfb\xa8\x7a\xca\xf9\x7d\x0c\x50\x9c\xec\x93\x53\x0e\xb9\xb4\xb9\x02\xdb\xbf\xbb\xbd\xb8\xb4\xf8\x04\x2d\x34\x51\xa1\xa0\x58\x8e\xdb\x00\x26\x0a\xda\xeb\x3f\xd5\x8c\x86\x9b\x34\x3c\x41\x07\xe7\x08\xde\x0d\x81\xec\x5f\x8c\xf5\x8c\xd7\x33\xb4\x8e\x51\x2a\xe5\x78\xc5\xce\x77\x99\x8b\x04\x1c\xd3\xb7\x75\xeb\xef\x5f\x60\xa8\x8c\xde\xe1\x4d\x45\x18\xfb\xfd\xb1\x9a\x82\x0f\xa3\x22\x57\xc9\xc1\x05\xe4\x85\xa2\xac\xf8\xa4\x66\x95\x24\x26\x6e\x29\xa9\xc5\xeb\xf4\x29\xf8\x5a\xe5\x11\x24\x6a\x5d\x57\xf2\x75\xe3\x1b\x5f\x01\x56\x37\xbf\x80\x7d\xa4\xf4\xa7\xe8\x9d\x85\xc9\x40\x77\x54\xd0\x35\x3e\xe5\x4e\x5f\x5f\xdf\xde\x72\xfe\x89\x4f\x77\x94\x86\x37\x23\x32\xc5\xf2\xdc\xd7\xea\x57\x75\x5b\x92\x66\xc0\x4b\x1b\x97\xa7\xea\x91\x5f\x69\x2f\x47\x3d\x1b\x47\xc5\xba\x9a\xd8\x70\xa5\xcb\x2f\x6a\xd2\xc3\x51\x18\x25\x7d\x8e\x4c\x32\x25\x6c\x39\xb3\xa3\xf3\x7e\x5b\x9a\x68\x18\x33\xea\x5c\x50\xeb\xf4\x47\xf9\x05\xb6\xa2\x1c\x5c\xcb\x59\x9a\x14\x04\x36\x9d\xa5\x3b\x20\xbc\x62\x5f\x55\x5d\xf8\x6c\x65\x93\x26\x85\xc7\x30\x4e\xf3\x4d\xfb\x41\x09\x45\x9f\x71\xcd\x91\xa2\xcc\x4c\xd2\x4b\x31\xea\x40\x12\x7a\x52\x43\x1f\x4f\x6a\xb6\x72\x5a\x46\x71\x6c\xa2\xcc\x22\x67\x60\x59\x39\xd5\xaf\xfb\x21\x15\x8f\xd2\x0a\x54\x56\x92\x49\x9e\x66\x2d\x05\x96\x84\xcf\x38\x5f\x4f\x35\xf0\x5f\x68\x67\xb6\x88\x32\x21\x90\x62\xa1\x20\x30\x21\x17\xbd\x53\xef\xb8\xfa\x98\x39\x48\xb3\x1e\x46\x9b\xd8\x0c\xff\x2d\xdd\x41\xbe\x56\x7d\x9e\x30\x4d\x8a\xcc\x84\x05\x0f\x6f\xe4\x74\xd5\xbc\xe1\x96\xb3\x57\x3e\x1f\xd4\xcd\xe4\x96\x64\x89\xdf\x50\x60\x04\x18\x73\x01\x97\x71\x43\xad\x18\x92\xbc\x33\x11\x3a\xf5\xc8\x4e\x7f\x5d\x17\x6b\xbf\x1e\x3c\xa7\x6d\xee\x8b\x2c\x5d\xb5\x59\xbe\xbe\xdd\x03\xe1\xc0\xe7\x16\x71\x18\xcf\xac\xfc\x4e\xe0\xa3\xf6\xc9\x40\x55\xb8\xc7\xe9\x4e\x89\x6a\xbd\x4f\x60\xba\x51\x56\x0c\x48\xbd\xc9\xa9\x2c\xcc\x76\x3c\x2e\x7f\x76\x22\x30\x7a\x9b\xac\x46\x59\x4a\xa6\x88\x26\x8e\xf2\x42\x99\x86\x1d\x55\xa6\x61\x47\x7d\xf2\x1c\x25\x7d\x3d\x07\x7a\x5b\xcd\x81\xde\x9e\x8a\xd7\x24\x26\x5a\xe5\x1e\x69\xa6\x6c\x48\x31\x78\xe7\xeb\x9a\x5d\x79\x16\x0e\x4c\x52\xcc\x2a\xdb\x6d\x28\x47\xf2\xb5\x4a\x6f\x58\x12\x55\xa4\x17\x24\xe8\x44\x49\x6c\x12\x86\x3b\x22\xcd\x41\x6b\x9a\xaf\x9b\x90\xb2\xac\x31\xce\x2b\x10\x05\xf9\xa7\x8a\xb6\xcc\x2a\xca\xec\xd7\xde\x34\x7c\x63\xa9\xec\x19\x6f\xe1\xfc\x01\xce\x62\xcc\xe7\x7f\x57\xa9\xa4\xff\xb4\x81\x2e\xb3\xc8\x6d\xd5\x19\x95\x52\x30\x1a\x5b\x80\x20\x4a\x29\xe7\x2f\xa6\x4e\xea\x17\xc8\x72\x82\x9e\x49\xcd\x46\x55\xac\xbd\x9a\xac\xf6\xcb\xa4\x1f\xd7\xd3\xa7\xeb\x6a\x80\x73\x7d\xfc\x9c\x1f\xb1\xd8\x2c\x8b\x8a\x34\x8b\x20\x29\x24\x2d\xe9\x53\x8a\xc3\x7c\xaa\xc9\x40\x97\x36\x9d\x62\xf7\x83\x80\xcc\xd7\xee\x79\x25\x69\x37\xed\xad\x6f\xf7\xc8\x86\xf3\x1a\xe4\x09\x89\x3d\x07\xc2\x72\x3a\x25\x97\xc7\x7e\xaa\xfb\x2c\xb1\x0c\xa4\xca\x9a\x8e\x2f\xe6\xd7\xbe\xb4\xf2\x6b\x5f\x32\x50\x13\x12\x02\x98\xef\x86\x7c\x44\xdb\x4c\x44\x38\x37\xe7\x71\xfb\x5e\x6a\xe7\xd5\xea\x2d\x73\xf6\xe6\x60\xe1\x58\xc5\x0b\xbc\xe4\x82\xdf\xda\x7a\x3a\x74\x69\x22\x8a\xce\x3b\x63\xd5\x15\xba\x33\xd5\xe5\x99\x9f\x6f\x9b\x62\x98\xe6\xa3\x81\xcd\x38\x3d\x11\x17\x72\x5f\x40\xdc\xa2\xdd\x22\xa0\xa9\xcd\xe2\x4d\x4b\xbb\xc9\xd0\x21\x8e\x6d\x58\x94\x46\x3a\xae\x58\x44\xc7\xb4\x2b\xe1\xb1\x26\x91\x9d\x2a\xa3\x8c\x12\xac\xfd\x57\xeb\xde\xc8\x42\xff\xd6\x63\x15\x2c\x3d\xec\x55\x93\x7f\xbd\xb4\xe0\x79\x13\x60\x02\x09\x29\xfc\xe9\xf9\xba\x8a\xc2\x32\x6c\x40\x23\x30\x5e\xdf\x55\x03\xc2\x56\xcf\x9d\x0d\x61\x95\x2c\xd1\x51\x65\xc5\x73\x87\xfa\x9a\x32\x57\x53\xc2\xa8\x5b\x50\x8d\x38\xf9\xd4\xf9\x79\xc6\x70\x1f\x0e\xbc\xaf\xf5\x21\x05\x48\xcc\x47\xd6\xf6\xd2\xa1\x2d\xaa\xa3\x7a\xcf\x3e\x4e\xc3\xef\xe0\x80\xe5\x17\x81\x87\x61\x24\xe9\xd3\x75\xd2\xa1\x83\xfc\xb2\xab\x9a\xe4\x3e\x74\xeb\xd0\x19\xbb\x89\x1b\x8e\xd3\xf2\x5d\xa5\xed\xb1\x8d\x3a\x60\xa8\xaf\x9e\x9d\x28\xc0\x9f\xa8\x04\x08\x96\x9c\x12\x3a\x96\x4a\x56\x33\xb5\xcb\x24\x7a\x0d\x38\x38\x4f\xa2\x50\xab\x9f\x40\x1d\x82\x73\x78\x2b\x21\xe1\xf0\xe0\x8e\x07\x8a\xf7\xcb\x7a\xb0\x68\x46\xcf\x4e\xdc\x82\x1d\xa4\x76\x95\x75\xf3\x44\x31\x47\x2d\x72\xea\x34\xe3\xe1\x3c\xdd\xd1\x56\x6e\x9e\x0a\x78\xb7\xa1\x8c\xaf\x6e\x74\xd2\xa3\x43\x10\xbb\x98\x8d\x5a\xf8\x85\xe2\x27\xe7\x85\x35\x71\x0b\x2d\x69\x6c\xf2\x5b\x63\xc5\x5e\xbf\xa5\x80\x61\xdd\xcc\x44\x09\x0d\xee\xd1\xdf\xff\x1f\xc6\x7e\xa8\xf7\xb6\xc6\xaa\xb0\x04\x84\x6b\x0a\x2c\xed\x96\x9f\x1a\xab\xc5\x6b\xab\x73\x86\x05\xf7\xe9\x61\x22\x6f\x9e\xa1\x69\x1c\x5f\x77\xe4\x36\x25\x76\x8d\x1a\x82\x9e\x7a\x7c\x47\x7b\x64\xdd\xf1\xe2\x1f\x83\xcc\xe4\x7f\x2d\xfc\xd6\x39\xa0\x65\x66\x34\x72\x62\xa9\x2c\xc0\x8a\xdc\x43\xd4\x58\x1b\xea\xb7\x6e\x19\x43\xb7\xc0\x61\xf0\x3c\x1e\x4f\xd1\xc3\x8b\xac\xcc\x8b\x5d\xf4\x19\x58\x59\x46\xf3\x21\x4e\x07\xca\xc1\x80\x55\xd2\xc5\x70\xbb\x7a\x66\x92\x71\xa8\x19\xc7\x61\x9c\x66\x92\x7f\x78\x10\xd2\xd6\x49\x4b\xc9\xd7\x68\x6c\x41\x6e\x93\xed\x5a\x6a\x1a\x01\x4d\x9c\x18\xe8\x13\x38\xbe\x75\xf5\xad\x79\xeb\x8e\x6b\x98\xf9\xea\xe3\xe0\x57\xee\x34\x5a\x83\x49\x6a\x97\x66\xe0\x8c\x49\x36\xea\x8b\xd1\xcb\xd8\x1e\x68\x36\x7f\xd0\x2c\xa5\x9c\x96\x05\x01\x48\xdc\xe9\x02\xc2\xa1\x40\xe0\x94\xb2\x4b\xd7\x74\x63\x0e\xd3\xa2\xef\xe9\xd3\xaf\xfb\x81\xce\xff\xbd\x85\x48\x12\x0e\xa2\xa4\x0f\x13\x30\xe5\xaf\x20\x62\xc0\x3f\xa5\x5f\x43\xd4\x67\x67\x2f\x81\x5a\x34\xd9\x93\x93\xb1\x4e\xcb\x61\xdc\x5f\xfa\x21\x7e\x45\x72\x72\x59\xb2\x71\x19\xae\x44\x82\x2c\x45\x8f\xf5\x08\x9e\x3b\xbf\x98\x02\x5a\x2d\x2c\xb4\x2d\x69\x34\x45\x39\xb3\x69\x5e\xf5\x06\x8d\xbe\xf9\x7d\xa9\x36\x64\x4c\x57\x9c\xdf\x98\x0c\x6a\xe8\xe3\xc8\x08\x67\x5a\x30\x70\xb1\xdd\x2d\x87\x23\x40\xec\x50\x13\xbc\x35\xf6\x63\xc7\xb7\x02\x2f\xe1\xfc\x5a\x19\xb3\x76\x01\x72\xbc\xeb\x63\x25\x02\x7f\x8c\x86\x68\x62\xdf\xaa\xac\x5c\x95\x4c\xf2\xb5\x5a\x77\xc7\x7f\xec\xcc\x0e\xd3\x55\x9e\x49\xb1\x9a\x44\xa0\x0c\x5a\xce\x2b\xd1\x2a\xb2\xbd\x81\x7c\x3c\x7a\x2c\x6f\xaa\x7e\x3c\xc0\x2b\x28\xcb\xef\x4f\x7d\xd5\xbf\xdf\x1e\xd9\xc4\x49\x3f\x88\x56\x89\x16\x2e\xf1\x8c\x3f\x9b\x45\x55\x06\x50\x9d\xde\xd8\x33\x88\x01\x5b\x30\x6e\xe2\x17\x93\x67\x5c\x06\x9e\x66\x36\xb7\x26\x0b\x07\x6a\xca\xff\x81\x92\xae\xfe\xa0\xd9\x30\x3b\x0f\x07\xb6\x57\xc6\x3c\xf9\x12\xa5\xf0\xea\xd7\xa4\xbc\x7b\x56\x3d\xdb\xe1\xc8\x16\x55\xde\x47\x9f\x1f\x79\x13\xc6\x7d\x7c\xdd\x68\xe5\x52\x64\x11\x33\x38\x58\x4e\x1d\x77\x56\xb4\xd5\x9b\x40\x81\xcb\x51\x62\x92\xd0\xf2\x37\x47\xd1\x7a\x4b\x23\xd4\xa7\x87\x63\x73\x7b\xda\x43\x53\x6d\x2b\x22\x17\x68\xee\xf8\x69\x2d\x7f\x76\x5a\xd5\x5b\xcb\x69\x36\x2c\x63\x53\x48\xa1\x2c\x82\xd9\x5a\x3d\xbb\x01\x9c\xb3\x54\x9d\x91\xe9\x48\x66\x48\xc8\x38\x4f\x29\x8f\x90\x53\xce\x49\xac\x4c\x96\xd3\xb8\xb7\x29\xff\x3b\xa5\x06\x10\xd3\x5a\x3d\x7b\xf6\xb5\xd7\xa2\xa4\x97\x0f\x22\x1b\x63\xac\x2a\xa2\x4e\x7e\x65\xe9\x63\xab\x6e\x84\xba\xa4\xac\x02\xaa\xbb\x25\x86\x02\x9b\x57\x22\xfc\xe5\xd2\x11\x1f\x36\xd8\x4d\x3f\x0a\xd4\xd6\xfa\x51\x93\x75\x82\x4d\xd2\xb2\x3f\xd8\xe6\x5b\x84\x3b\x26\xde\x30\x8a\x8d\x95\x91\x96\x9d\x57\x4a\x58\xb7\xa9\x45\x20\x1a\x76\x4a\x0e\x3e\x8a\x63\x9b\xb5\xd4\x16\xbe\xa6\xb8\x00\xd7\xa6\x56\xc6\x0b\xed\x28\x09\x33\x6b\xf2\xba\xb4\xd4\x99\x1a\x88\x41\xc9\x66\x9f\x56\xc0\x96\x32\xe9\x59\xd3\xc3\x91\x80\xba\x1a\xc3\x2d\x1c\xc2\xff\x06\x77\x0b\x05\xc3\xd6\x29\xf2\x13\x65\xfc\x49\x8e\x29\x81\x83\x29\xcd\xcf\x3b\x98\x92\x4f\x5f\x06\x51\x1c\xe7\x50\xf7\x17\x67\x46\xac\x45\xf1\x0e\x54\xc0\x73\xb4\xc8\x30\x66\x65\x5d\x17\x81\xb6\x09\x07\xc6\x44\x3d\x91\x7f\x10\x4b\x54\x35\x09\x04\xe0\x9e\xaf\xb5\x4f\xde\xd9\xa9\x07\x3e\x37\xd7\xce\xd2\x6e\x5a\xe4\xb3\xbe\x8f\xf6\xd1\xd8\xcb\x54\xfd\xc6\x58\x8d\x32\xc0\x06\x97\xde\xe7\xe6\xa4\xe3\x85\xf6\x28\xb2\x21\x0e\x47\xa1\xa7\x7a\x74\xf7\xd9\x40\x00\x70\x79\xca\x12\xd3\xf8\x87\xab\xca\x63\x66\xb6\x0a\x93\x1b\x37\xd5\xf3\xc9\xec\xc8\x44\xbd\x96\x47\x18\x42\x3e\x47\x88\x25\xd3\x3a\xad\x2f\xb6\x6d\x99\xa5\x23\x6b\x9c\xd8\x21\x1e\xfa\x65\x6c\x5f\x24\xbc\xbf\x3d\xae\x0d\xe0\x9f\x56\xd2\xde\x85\x89\x62\x9b\xd1\x54\x4a\x4b\xb4\xb3\x68\xd8\x58\xb9\x4d\x7e\xd8\xc4\x06\x5c\x36\xd9\xd0\x66\xf2\xd6\x38\x40\x7f\xa2\x8d\xc7\x58\x45\x1b\x77\xfa\xce\xd4\x9f\x98\x9b\xa3\x70\x1a\xdb\xd7\x95\x60\x8e\xd6\x3c\x9e\x56\xd6\x25\x36\x57\x99\x89\xfa\xa9\x68\x46\xf9\x12\xbf\x59\x1f\xdd\x74\xa3\xc4\x16\xb9\x22\x64\xbf\xad\x9d\x7a\xde\x76\xcf\xab\x5f\x26\x9f\x7d\x0a\xf8\x96\xb0\xe9\xdb\x24\x5c\x7f\x12\x5f\x1c\x29\xda\x0c\x06\xba\x2c\x05\x83\x9c\x42\xce\x7e\x3f\xf6\x7b\x94\x64\xab\x78\x10\xa5\x3c\x1a\x6e\xea\xd1\xed\xa7\xaa\xe1\x7d\x96\xba\xe5\x92\x26\x23\x87\x17\xe4\xac\x9a\x9c\x32\x59\x8a\xff\x05\x5d\x75\x44\x86\xb7\xf0\x45\xb1\xad\x4f\x05\x4a\x56\x7e\xfb\x14\xa8\xb6\x5a\x51\x79\xba\x5c\x48\x82\x84\x2f\x73\x47\xc9\x0a\x4f\x0f\x51\x5f\x68\x77\x63\xd3\xeb\x59\x9e\x4f\x72\x91\xa5\xac\x81\x8e\x7b\x44\xb9\xc9\xd6\xa2\x84\xcf\x25\xf1\x5f\xd4\x66\x8c\x4d\xda\x17\x26\xac\xd6\x88\x49\x22\xdb\xa3\x7c\xa3\x26\x17\x8d\x89\x02\xcc\x39\xd1\xf1\x3e\xae\x12\x9a\x81\x49\x7a\xb1\x23\xc5\x39\xd3\x22\x97\xa5\x1f\x6b\x86\x4d\x27\xbd\x74\xa8\x54\x33\xce\x28\x4e\xe8\xb4\x55\xc3\xbe\x97\xda\xcb\xa6\x9b\xd1\xa8\x53\xe9\x0a\xa0\xa9\xc3\xd7\x8d\x83\x67\x26\xb7\x56\xcf\xc6\xe1\xaf\x3c\x2d\xea\xe2\x54\x73\x6a\xff\xee\x85\xf6\x28\xb6\x49\x01\x05\x6e\x26\x3b\x04\x7e\x40\x74\x6d\xea\x18\x5d\x58\x68\x8f\x4a\x4a\x5c\xdd\xe9\xdb\x24\xe1\xef\xbb\xdb\x99\x1d\x59\x43\xe8\x42\xcc\xdc\xd0\x5d\x3c\xae\x3a\x8d\xc7\x15\xe7\x71\xcd\xc4\x2b\x6b\x66\x5d\x0b\xcb\x1d\x56\xed\xe3\xc3\x53\x89\xd0\x81\x03\xed\x7c\x68\x62\xe8\xac\xe3\xec\x04\x9e\x1a\xa8\x27\x86\x28\x8b\x2c\xb5\xb6\xb7\xe8\xa6\x59\x8f\x24\x66\xf9\x8e\x09\x90\xc0\x0f\x89\x2e\x29\xdc\xc7\x68\x10\xc5\xd1\x68\x96\x36\x81\x34\xfb\x75\x78\xdc\xda\x21\x70\x4d\x8d\xcc\xca\xff\x32\xf1\xe1\xb1\x18\x90\x98\x31\x37\xf7\x80\x36\x00\x9e\x80\xaf\x1b\x59\xe5\x51\x5e\xa4\x89\xd6\x3d\x3d\x37\xd6\xad\xbe\xcd\xb7\xa4\xca\x41\x7a\x65\x97\x53\x10\x9c\x62\x1f\xe1\xfc\xe6\x17\x2a\x60\x0f\x4c\x56\x24\xb6\x60\xf4\xa2\x53\x82\x73\x16\x7f\x47\xd5\xcf\x46\x49\x18\xf5\x84\xbf\xc1\xc6\xb7\x14\x4a\xc4\x04\xf7\x09\x5f\xbe\x15\x36\x2f\xb4\xcd\xeb\x49\xda\x23\x88\x7a\x97\xc7\x5e\x61\xff\x82\xe2\x69\xbd\x1f\xf8\x58\xba\x0b\xbe\xa1\xd2\x1d\x79\x4e\xa1\x44\x86\xf0\x55\x8c\xc2\x16\x05\x44\x69\xa6\xd0\x9b\x89\xc8\xf1\x33\xea\x00\x0c\xd3\xac\x57\x1d\x29\x5e\x6d\xe9\x2f\xf0\xc3\xf8\xe3\xa7\x68\xb9\xb0\xd6\xc5\x54\xa4\xdf\xf7\x52\x3b\xb1\x51\x7f\xd0\x4d\x71\xa6\xe1\xe0\xbc\x46\x9f\x1a\xcb\xf7\xaa\x1a\xe1\xcf\x74\x36\xd3\x14\x09\x5b\x66\xf2\x22\x3b\x68\x87\xf9\x4a\x84\xdb\xec\xa6\xfa\x7b\xbd\xd1\x56\xc3\x54\x5b\x4c\xee\x7b\x94\x5b\x60\xf2\xc8\x2a\xe2\xd8\xd1\x37\xe9\xad\x9d\x18\x4a\x15\x5e\x85\x92\xee\x6f\x80\xfa\x2b\xce\x16\x6a\x6b\x47\x1b\x6a\x04\xde\x08\x79\xe7\xc4\xcf\x21\x0e\x05\xb5\xc1\x4e\x08\xdc\x7c\x75\x8c\x48\x7f\xd4\x7f\xfe\xe9\xb0\x57\x6d\x4c\x9b\x9b\x21\xf2\x19\x49\x1c\xd5\xbe\x38\xed\x7c\x3e\x46\x59\xda\xcf\x48\x44\xbb\xa5\xc6\xa5\x6c\xdf\xc4\x2f\xd4\x56\xec\xdb\x34\xeb\xdb\x6d\xfe\x34\xe0\xa1\x81\x08\x63\x56\x8f\x86\x65\x18\x03\xc5\x41\xfe\x43\x74\x02\x58\xed\xab\xd1\xe2\x91\xad\x1a\x35\x2a\xe6\x38\x7e\x8b\x5f\xe8\xa2\x6d\x60\x87\xe2\x22\xe9\x20\xc5\xe7\x54\x09\x72\xce\xcb\x66\x0c\xd2\xb4\x48\xcb\x62\xa6\xb5\xb4\x58\x53\xe5\xc4\x11\x75\x53\xe1\x8a\x3f\xaa\xb1\x7b\x6d\x3e\x40\x2f\x03\x7b\xf1\x36\x7a\x39\x68\x96\x6c\x60\x30\xce\x2f\x10\xe7\xf9\xc7\xb4\x8d\x93\x35\xb1\xcd\x72\xd8\x86\x89\x8c\x69\x75\x83\xf0\xb8\x45\xb0\x0a\xbf\xf8\x1f\xaa\x0f\xb5\xc1\x3b\xcf\xe9\x83\x2d\xed\x76\x2f\xc6\x5e\x2a\xe1\x72\x93\xb0\x46\x1a\x5a\x93\xcc\xd0\xaf\x3b\xd7\x75\xf7\x94\x80\x61\x40\xde\x36\x3b\xf9\x2c\xec\x7a\x3e\x30\x99\x1d\x10\xf1\x5d\x92\x40\x11\x37\x51\xb2\xbc\x4c\xbb\x93\x30\xbd\x39\x93\x5e\x7c\xe9\xe5\x76\x92\x7e\x91\x1e\x0c\xf7\xd9\x03\xc5\x5b\xbf\xa8\xea\x8a\xbe\x29\x79\xc4\x26\xe4\x2d\x7a\x1b\x61\x75\x39\xbc\x1b\xfc\xf8\x67\x7d\xe3\x8a\xab\x32\xad\x08\xa6\x9a\xd4\x02\xe9\xbd\x3f\xf5\xd9\xf6\xec\x6b\x17\x66\x68\x67\x7c\x8b\xfb\x01\x85\x3d\x1c\x51\x97\x95\xc3\xc1\x99\xcd\xe8\x88\x57\x96\x76\xb7\xe7\xe6\x88\xb0\x58\x03\x94\x0a\x61\xab\xca\xfd\x79\x67\x23\x0c\x70\xed\xc2\x2f\xa8\xc5\x87\xfb\x0f\xf4\x36\x22\xed\xf7\xa6\x72\xe8\x25\x42\xaf\x78\xc8\x8f\xc8\x05\xfb\x73\xf8\x7c\x13\x82\x25\x37\x50\x41\x12\x89\x2f\x05\x5a\x38\xe5\xf6\x7a\x98\x26\x85\x89\x12\xff\x74\x81\x9c\xfe\x1e\x6e\x3b\xd6\xe1\xe5\xb1\x96\x4a\x6a\x12\x64\xcf\xcb\x6e\x0e\x6d\x1c\x35\x94\xbe\xab\x86\xd2\xda\x80\x39\xb7\x76\x85\x4b\x47\x49\x5f\xfd\x19\xff\x20\x50\x34\x39\x74\xb7\xa4\x43\x51\xfd\x65\x71\x5e\xf7\xbd\xe4\x88\x00\x31\x20\x09\xb0\xc7\xe4\xd8\x97\xac\xc8\x6b\x65\x8b\x28\x0a\x6e\xbc\xfc\x18\x65\xd3\xd4\x62\x7d\xff\x17\x3a\x3a\xe5\x18\xeb\x01\x17\xee\x8a\x93\x3a\x5d\xf2\xab\xbc\x7a\x17\x84\x32\x92\x53\x7d\x95\x8f\xdd\x2b\x1a\x4f\x89\x9e\x19\x66\x07\x27\xb1\x3a\xdc\x70\xbc\x7a\x1c\x80\xc8\xe0\xf1\xcb\x09\xbe\x49\xfd\x6e\x7e\x7e\xa9\x4a\x0c\xb7\xd1\x2f\xcb\xd9\x52\x7d\x0e\x7c\x2b\x4c\xc1\x9d\x36\x8b\xb3\xc0\xbf\x42\xa7\x01\xff\x8c\x4b\xcf\x33\x33\x8a\x7a\x75\x12\xea\xf7\xc6\x2a\xd5\xf8\x9e\x72\x1c\x4b\xb3\xbe\x49\xa2\x83\x04\xd7\x20\x91\x50\x2e\xed\x09\xe7\xcf\x9a\x0b\x81\x52\xbc\x01\x8c\xc3\xd5\xff\xaf\xf8\x9f\xa2\x8f\x28\xb6\xc1\x8d\xde\x56\x43\xdb\x8b\xea\x22\x0b\x68\xf0\x0b\x63\xde\x0b\x87\x77\xd3\x32\xe9\xf1\xc1\x84\x15\xf9\x0e\x96\x0c\xbf\x98\x3a\xb8\xa9\xfd\x17\x9a\x51\x54\x98\x58\x89\x32\x3e\x50\x83\x93\x07\x63\x05\x4e\x88\x8a\xc8\xe6\xbf\xf6\x25\xd3\x85\x2d\x1f\x8e\x79\xae\x61\xf8\x85\xdb\x3d\xdd\x32\x8e\x7b\xe9\x41\xcf\xeb\x45\xb1\xc2\xcd\x0b\x7e\xd1\x54\xe0\x76\xcb\x7c\x60\xd9\x98\x54\xaa\x24\x7f\x02\x9d\x54\x70\xcf\x6e\x9a\x94\xd5\x49\x5c\x3d\x00\x3c\xe5\xc3\x84\x0e\xe7\x6b\xd7\x82\x1b\x46\x79\xbf\x8c\x7a\x68\x19\x89\xe0\x22\xf7\x8d\x31\x0f\xb8\xaa\x28\xc0\x33\x1d\x7d\xae\x75\xcd\x3a\x28\x3e\x2c\xcd\x48\xdb\x0e\x0b\xe2\xa2\x52\x79\xfc\xef\x95\x5f\xfd\x69\xd7\xba\xc9\x6c\xbc\x8e\xdd\xac\x33\x48\x3a\x56\xff\x8b\x67\x3b\x4a\x08\xea\x89\x8e\x9b\xaf\x1d\xff\xb9\x89\xe7\xcc\x9f\x6d\x0a\x78\xd5\x27\x23\xba\x54\xf5\x87\x99\xc5\x10\x28\xcf\x8f\x69\xda\xed\xdc\x5c\xbb\x6b\x13\xbb\x1c\xb1\x37\x09\x6e\xd0\x9b\x4a\xf8\x6c\x3b\xca\x77\x4c\x12\xb1\xcb\x91\x7f\xde\x56\xcd\xba\xae\x0d\xcd\xd0\x52\x50\xc7\x3b\xb5\x26\x4a\x0a\x14\xfe\xb3\x9a\x26\x8b\x00\xce\xf2\x4c\x48\xe0\x7e\x6b\xac\x24\x14\x7e\x4b\xf1\x30\x5a\x9d\xcd\x8b\x73\xef\x82\xf7\x1a\x47\x6a\xc1\xa4\x67\x94\xf7\x35\xd1\x58\xa7\x77\xec\xb5\x8f\xbd\x98\x06\xf9\x3f\x93\x80\x29\x63\xe4\xb5\xd9\xe6\x05\xe5\x8d\x73\x4f\xa5\x44\x97\xc6\x5f\x98\x2e\x27\xd3\x55\x9b\x85\x69\x1c\x9b\xc2\x66\x26\x8e\x0e\xca\xa9\x23\xd8\xcf\xaa\xc0\x10\xe8\x67\xd3\xca\x36\x59\x66\x63\x25\xbe\x0e\xc0\x0b\x5f\xfb\x8d\x1c\xad\xda\xc2\x05\x6e\x14\xd1\x9f\x2a\x79\x50\xb4\xe6\xc4\xec\x49\xb1\xd1\x0e\x5a\x98\xac\xa0\x15\x74\x1f\x61\x14\x3d\x11\xb8\xef\x39\x4f\x99\xea\x06\xa2\x23\x73\x5a\x3f\x9d\x2d\xb4\xf4\xb4\x85\x17\x9a\xfa\x57\x90\xb0\x0b\x3b\xc7\xe7\xd2\xf7\xb0\x9b\x45\xb5\xda\xd7\x47\xed\x8e\xa7\xd5\xe4\x23\x13\x25\x84\xdd\xc3\xbf\xbd\xa9\x2c\xa9\xcf\x22\xf0\xf3\x3f\x50\x85\x26\x1a\x7d\x9e\xb4\x35\x19\xfb\x5d\x3d\x51\x74\xdd\xdc\x26\xa6\x48\xb3\x7c\x56\x51\x32\x2e\xe9\x4e\xd2\x7b\x4a\xaf\xe5\x92\x3e\x62\xde\x73\xce\x20\xaf\xa5\xb9\xcc\x18\x94\xa7\xc2\xa2\xeb\x51\x29\xa7\x92\xb2\x5b\xc4\x16\x85\x1c\x52\xc6\xcb\xc8\x6b\xf9\x45\x5d\x21\xde\xae\xb5\x3c\x51\xe5\x63\xfa\x32\xc2\xfb\x69\x70\x5c\x8c\xb2\x15\xde\xcf\x5c\x00\x04\xfe\x04\xfd\x43\xbf\x92\xab\xc8\xd8\xdb\xe6\xcd\x37\x59\x17\x5f\x89\xe2\x49\x76\xff\x50\x35\x60\xde\x1b\x2b\x60\xfe\x7b\xc1\x73\x4d\x70\x8f\x19\x45\xf7\x39\x3b\xf6\x66\x48\xb0\xc2\x10\xe1\x0a\x01\x7b\xe5\x2b\x91\x70\x15\x45\x01\x5c\xe5\x2c\x67\x5c\xe0\xc5\x0c\x27\x62\x6b\x39\x0c\x2e\x80\xd1\x11\x6f\x12\x85\x6d\x7e\x10\xfc\x8c\x6f\x79\xa4\x43\x9b\xe5\xa6\x8c\x01\xcd\xf6\xaa\x52\x17\x94\xaa\xd4\x05\x97\xf2\x9a\x21\x39\xee\x61\x33\x02\xcd\x00\x2d\x36\xbe\x56\x58\x32\xea\xf1\xc4\x16\x6d\x66\x91\x4d\xae\xfe\x26\x5f\x2b\x6c\x41\xdf\x74\x19\x9e\x86\x8e\x07\x37\x68\xf8\x45\xe0\x07\xeb\xbd\xac\xec\xe7\x33\x7e\xa9\x6d\x9f\xf8\xcc\x6a\x06\xe9\x93\x72\xe5\x70\x52\xd4\x07\x0f\xae\xcb\xd8\x49\xb8\x04\xd5\xdf\x10\x88\xc2\x67\x19\x3c\x32\x45\x80\xb0\x51\xe2\xd6\x32\xed\x82\x80\x26\x41\x8b\x36\xb4\x1c\x38\x3e\xd2\x9d\x1b\xfb\x3a\xfa\x7f\x73\xb7\x71\x35\x8d\xcb\xa1\xa4\x1a\xc8\x86\xaf\x05\x8a\x04\x3d\x3d\x8e\x21\x98\x9c\xcd\xcb\xa1\x9c\xad\x48\xc2\xd8\x67\xcb\xd9\x38\xba\x52\xec\x4d\x35\xb5\x32\x49\x61\xfa\x24\x04\x06\x51\x44\xaf\x43\xda\xf2\x9a\xa4\x8a\xd3\x9f\x0f\x20\x77\xe0\x0e\x6a\xd6\x8e\x16\xa8\xf0\x14\xc6\x70\x91\x96\xd1\xda\xc0\x14\x2d\xaf\xbe\x72\x41\x69\x74\x5e\xd0\x4a\x2c\xe9\xd0\x76\xd3\x1e\xd0\x5c\x22\xfa\xe8\xc1\x43\xad\x5a\x52\x10\x96\xa4\x1f\x26\x31\xe7\x1c\x32\x3a\x84\x16\xf4\x68\xf8\x1f\x28\x1f\xe4\xff\xaf\x95\x42\x99\x5f\x8a\x6a\x68\x43\x47\xa9\xc0\x0f\x92\x8f\xab\x25\x96\x45\xf9\x0a\x4a\x16\xe1\x5f\x56\x3f\x27\xa2\x2a\x4f\xba\x59\x63\x94\xa5\xeb\x3c\xc3\x66\xe1\x25\x2c\x07\x51\x61\xf2\x7f\x91\x90\x33\x60\xf7\xe3\x2b\xa2\x39\x84\x35\xf1\x7b\x81\x16\x7a\x43\x48\x45\x6e\xf0\x10\x9d\x76\x11\xee\xf0\x4f\x63\x4b\xa7\x26\xe2\xd1\x80\xff\xf9\x7a\x19\xc1\xe9\x4f\x34\xa8\x51\x8a\xf2\xb5\xd2\x1d\xe8\x46\x2b\xac\x58\xe2\xdc\x66\x7c\xbf\x56\x1d\x78\xff\xf4\x9f\x2e\xb5\x6a\xb3\x34\x75\x94\x9d\x6b\x02\x64\x86\x99\xf5\xac\x25\x41\xf6\xfa\xd5\x79\xde\x09\x37\xac\xff\x42\x36\xeb\x25\x9d\x3e\x24\xef\x30\x77\xa4\xb8\xc6\xdf\x75\xad\xd9\xbe\xa5\x23\x4f\xe1\xa0\x89\xcb\x6e\x54\x83\x63\x70\xe8\xe0\x17\x8d\x70\xed\x6e\xba\xe6\x5d\xac\x05\x4e\xa4\xa0\x45\x81\x1e\x94\xf5\xca\xd0\xd2\x08\x56\x70\xbb\x2d\xa7\x13\xf5\x16\x88\xc7\x28\x29\x3e\xa9\x16\xe0\xc6\x61\x40\x83\x51\x7e\x5c\x9f\x62\x80\xec\x7b\x89\x10\x44\x44\x1f\x01\x7a\x0c\x5b\xd6\x69\x99\xef\xf7\x05\x58\xc3\x63\x5d\x8d\xfa\x11\x92\x1a\x34\xe2\xd1\xa3\xe3\x6b\xe5\x12\x53\x0c\x22\xcb\x32\xce\x7b\x78\x9e\xc0\xaa\x7f\xc0\xb5\x9d\x1b\x13\xff\x54\x54\x6e\x1a\xa4\x63\x32\x4b\x6a\x3b\x78\xe6\x48\x2e\x31\x01\xe0\x6b\x77\x50\xe6\x36\xca\x07\x29\xa5\x7c\x92\xe5\xf8\x95\xa6\x7d\x6e\x8f\x53\x0f\x03\x4f\x79\xa6\xb3\xb9\x51\xf0\x2b\xed\x5e\xba\x96\xcc\x28\xb3\xeb\xb1\x77\xe0\xbd\xa1\x32\xfe\xf3\x2a\x49\x4e\xd2\x6c\x68\x12\x74\xdf\x85\x38\xdc\x72\x52\x19\xe8\xba\x29\x65\xe5\x3d\x8e\x6a\x2c\x85\xd3\x9a\x35\x2b\x09\xb7\x18\x3d\xad\x01\x8e\xb9\x7c\x5d\x53\xb9\x26\x8f\xdb\x3a\x6b\xb9\xe5\xb4\x51\x2f\x69\x9e\xf6\xd0\x1c\xa4\x15\xb6\xb4\x5b\x64\x62\x7f\x0f\x14\x72\x7e\xa1\x66\x47\x43\x4b\x29\xe8\x23\xc8\x8c\x70\xb3\xde\x45\xee\x8e\x0c\xff\xb6\x5e\xfb\x13\x0a\xaa\x68\x8f\xb0\xe6\x14\x76\xd4\xf5\x40\xfb\x53\xb6\x9c\xae\xd0\xce\x89\x1f\x2a\xed\x42\xe9\x81\x15\xf6\x30\xf0\x24\xca\x77\xc7\x4f\x29\x47\xdb\x51\x66\x87\xa0\x38\x89\xcd\x63\xf5\x9e\x0e\xee\xfe\xe5\x57\xb8\x40\xbc\xac\xb0\x9a\x99\x99\x92\xbc\xd9\xe3\x24\x6f\x64\xb1\x7c\xbd\x4c\x0b\x93\x6f\xf3\x2e\xab\x9c\x01\x62\xb5\xd4\x70\x9c\x67\xb5\xff\xea\xd3\x74\x9e\x42\x24\xe6\x41\x0d\x66\x10\xa5\x49\x3e\xab\xc6\xa1\x0c\xda\xe6\x17\x81\x87\x2a\xfc\x74\xec\x7b\x07\xd3\xd4\x34\xaa\xfe\x4b\x06\x18\xa2\xdc\x39\xac\x75\x09\x0e\x2b\x60\x7f\x6e\xa3\x83\x65\x26\x4b\xc6\xa5\x13\x3e\xb5\x70\x4c\xda\x32\x09\x07\x26\x8e\x6d\xe2\x7a\x66\x8e\xb0\xe4\xa6\x88\xe7\xdd\x78\x24\x2d\x0b\x28\x0b\x56\x7f\x16\xb0\x0e\xc8\xfd\xf1\xb5\x8a\x4a\x09\x91\xa9\x5a\x0a\xaa\x76\x4c\x29\x04\x1d\x73\x49\x61\x6e\xe2\x62\xcd\x14\xb2\x66\x05\xce\xa2\x61\x2e\x1e\xed\x95\xa4\xab\x5f\x6c\x29\x7e\xf3\x59\x1c\x4c\xc2\x1c\xac\x69\xe0\x16\x07\x5b\x3e\x73\x18\x8f\x95\x30\xc7\xb8\x41\x56\x76\xa1\x9d\x26\xf1\xfa\x36\xdf\x45\xbb\x41\xbd\x03\x51\x68\x57\xfc\xc6\xb7\xe9\xce\xa0\xb5\x0b\x43\x27\xe1\x2d\x6d\x6e\xf7\x2d\xed\x5e\x6a\x87\x59\x34\x1a\xf9\x48\x8e\x5e\xd9\x31\xe5\x05\x73\xcc\x89\x6c\x44\xc9\x72\x16\x25\x7d\x2f\x61\x86\x88\xfb\xae\x8a\xbe\xef\x36\x0d\x4f\xbb\x99\x49\xc2\x41\xcb\xc7\x1f\x14\xbe\xe2\x38\xea\xfd\xfe\xd2\xb2\x78\x9a\x8e\x6b\x14\x8b\x33\x1d\xcf\x5e\x78\x0c\x7d\x39\xe4\x6b\x8f\x75\x14\x03\x18\x86\x36\x58\xd7\xb7\xb4\xff\xd1\x36\xb6\x6d\x42\xb5\x37\x33\x51\x4e\xb0\x1f\x07\x9e\x12\x83\xee\x01\x92\x82\x2b\x5a\xdf\x78\x07\x6c\xac\x11\x6c\x6e\x50\xad\x87\x82\xf4\x53\x04\x16\x24\x18\xbb\x3a\x1e\xe2\xbe\x15\xb2\xbb\x88\x19\x1f\x04\x2a\xcb\xdd\x32\x79\xaa\xe6\xd1\x9e\x26\xd4\x36\x15\xd1\xa6\x8f\xc6\xca\xb5\xef\x92\xa6\x24\xd0\x3a\x43\xda\x7c\x2d\x50\x95\xde\xc5\xa0\x3e\xfa\xcc\x4d\xd2\xa3\x68\xa3\xed\x39\xb0\xe8\xaf\xd3\x47\xc7\xac\x70\x6b\xc7\xd7\x0b\x49\x1a\xe5\x9c\xb7\x88\x79\x06\x45\x57\x7e\x31\x75\xee\xce\xed\x69\x8f\x4c\xca\xec\x6b\xfc\xe9\xbb\xdc\x53\x05\x89\x08\xb6\xe6\x42\x16\x69\xc2\xd5\xf5\xb2\x74\xd4\x52\x5d\x74\x84\x7e\x21\x2e\x2b\x79\xf6\xd8\x74\xbb\x51\x75\xaa\xcc\xa8\x46\xd1\xdb\x78\xba\x38\x8d\x70\x92\x4a\x65\xb5\x79\x65\xef\x5d\x68\x0f\x6c\x1c\x85\xe9\x88\x36\x6e\xf5\x1c\xa5\x6f\xef\xdf\x71\x3a\xe7\xda\xbf\x7b\x4f\xbb\x6b\x97\xd3\xcc\xce\xd0\xef\xb8\xfe\xf0\xd2\x6e\x5e\x93\x77\x28\x04\xe2\x94\x9e\xed\x3c\xa3\x20\x96\x26\x5c\x19\x98\x35\x00\x9b\x1b\x67\x04\xda\xe1\x70\xd8\x25\xba\x42\xcb\x29\xb6\x1f\x57\xea\x5c\x2c\x26\x84\x62\xf0\x7a\x2d\x68\x94\x99\xfd\x9c\xcf\x6f\x8e\x04\xba\x55\x09\xd4\x37\x65\x44\xff\xcb\x73\x1d\xd5\x3d\xd8\x32\xa1\xe7\x8a\x54\xf9\x27\xc8\x8e\xb1\xf9\xfe\x0a\x1d\x01\x46\xfc\xa0\x76\xc2\x82\x7d\x00\xad\x19\xe1\x73\x29\x7d\x97\xc7\x95\x9b\xc1\x05\xed\x74\x74\x88\x6e\x2d\x16\xff\x77\x03\xe5\x13\xbd\x41\xf7\x0c\xdd\x98\x1b\xc4\x00\x40\x93\xe7\x1a\xb4\x71\x10\xf1\xcf\x61\x02\x87\xe9\x0b\x27\x5a\xc2\x35\xaa\xaa\x12\x76\x93\xee\x28\xcc\xd9\x1d\x95\x00\xe4\xeb\x79\x61\x87\xf9\xa3\xea\x6b\x9f\x42\x17\x48\x9c\x59\x67\xbc\x1d\xe4\x4f\xc7\x6a\x78\x79\x7a\xac\xf0\x84\xdc\x98\xc4\x49\xff\x80\x22\x03\x6e\xee\xff\xc9\x2b\x1d\xc0\x68\x0c\xdf\x84\x64\xe4\x5b\x45\x8f\x69\x65\x95\x53\x0e\xa6\x94\xbe\x16\x69\x84\xc6\x79\x6a\xbc\x09\xfd\xb2\xc1\x77\xa8\x17\xa5\xaf\x47\x3d\xab\x0e\x52\xa4\xfd\xd2\x43\x6c\xe2\x5e\xf5\x6c\x18\xf5\xec\xb6\x2a\xb1\x90\x96\x5e\xf5\xe9\x81\xa4\xbd\x83\xfb\xa9\x85\xb4\x1c\x04\xcf\xdb\x6b\x9f\x6c\x92\xad\xcc\x6c\x62\xa2\x3c\x27\x6c\x2b\x7d\x07\x71\x2b\xf6\xe0\xf2\xd3\x35\xf3\xf2\x8c\xe1\x91\x02\xf0\x52\x2d\xbe\xd3\xba\x19\x16\x1b\x02\xba\xcc\xf8\xf4\x62\x4b\x47\xd9\xbb\x2b\xdf\xa9\xab\x2a\xb1\xb2\x43\x92\x79\x42\x59\x06\xe4\xdb\x87\x58\xaa\xfc\x42\x4f\xa7\x06\x11\x35\x4e\x16\xbd\xf2\xec\xd2\x6e\xb9\xae\xa9\xf0\x8e\xd2\xd1\xf6\xea\xdf\x70\x68\x22\x77\xc5\x80\xe0\x68\x50\x73\xbd\xf7\xf5\xe3\x03\x3a\x59\x81\x81\x86\x52\x2e\x70\x8c\xdf\x1e\xfb\xb6\x10\x6b\x49\x14\xd5\xcd\x13\x0a\x3a\x2a\x96\x87\xf4\x16\x0e\xc3\xba\xa8\xa7\xd7\x8e\x1b\xc8\xa2\x2b\xe2\x20\xe0\x0b\xc9\x22\x5a\x9e\xa9\x1e\xb4\xe8\xb0\xd1\xc3\x95\x67\xd1\x52\x06\x01\xaa\x1b\x38\x30\x19\x12\xa8\x17\xbd\xe4\x9e\x97\xdf\x53\xaa\x42\x23\x53\xd8\x18\xa8\x53\xfc\x19\x9c\x41\x6c\x52\x42\xdf\x5a\x84\x3d\xdc\x14\x7e\x64\x92\x15\xd7\x01\xc6\x1c\x13\xdb\x02\x01\x74\x0b\x9d\x91\xb2\xdd\x5c\x17\xac\xb7\x6a\xb3\xdc\x6e\xf7\x04\xfa\x23\x1a\x47\xf0\xc1\xd8\xb5\x33\xfe\xe0\x73\x1d\x3f\x6f\x9e\x85\x1c\xbe\x37\x50\xf4\x4b\xc6\x87\x03\x12\x21\x29\xf2\x59\xe5\x2a\x7f\x47\x0b\x09\x31\x49\x45\xea\x68\x8f\x39\xbf\x33\x55\xec\xee\x5d\xf0\x15\x72\xad\x2a\xd6\xe5\x72\xad\xdb\x92\x0e\xb4\x1c\xc6\x15\x45\x34\xb9\x32\x7e\xcc\x83\x12\xa3\xde\xac\x82\x16\xdc\xa7\x0f\x81\x9c\x02\xe9\x17\xff\xff\x40\x25\x1b\xc7\x82\x4d\x73\xeb\x03\x07\xda\x8b\x4b\x8b\xbb\x14\x85\xec\x92\x8a\x14\xb3\xc8\x60\xf0\xbb\xff\x16\x3b\x11\x55\xf7\x95\xb1\xda\xa3\x3f\x50\xdd\x35\x76\x67\x91\x4e\x8a\x47\xdb\xfe\xd7\x63\x5f\x3e\xdc\x70\xcf\x30\x2c\xb3\xc2\x44\xf1\x8c\x57\x02\xbc\xaf\x2a\x5c\x2c\x66\xe9\x9c\x3f\xa9\x78\x02\x69\x8f\x05\x25\x64\xe8\xad\x4d\xf5\xcf\xab\xa5\xfe\x8f\xfe\xe1\x3f\x44\xc2\x20\x0b\xb5\x0a\x9d\xb2\x80\x7d\x3d\x51\xa4\x65\x16\xe5\x05\x9b\x2e\x39\x45\xfa\xea\x3b\xa2\xe4\x83\x4c\x0f\xf2\x94\x13\x8d\x04\x9a\xd0\x14\x83\xb4\x07\x54\x20\xeb\x1c\x8d\x3d\xa6\xf8\x94\x86\x93\x86\x55\xe5\x30\x5b\xed\x04\x96\x8a\xc6\x33\x62\xa3\x43\x74\xd7\xb4\x88\xb4\x38\x20\x2a\xd4\xca\x5a\x11\x31\x52\x01\x9d\x8f\x33\x4a\x6a\xeb\x7c\xdd\x20\xa4\x01\x17\x6d\x94\x3d\x82\xc3\x55\xab\xa0\xbe\xb9\x17\xbb\x7f\x37\xcd\x82\x32\xcb\xbf\x58\xbd\x2f\xee\x05\x6b\x4e\xf0\x0b\x25\x19\x16\x25\x10\x30\x17\xc5\x65\xfa\x48\x62\xbb\x31\xed\xea\xd6\x7e\x65\xcf\xbe\x47\xe8\x7e\xe3\x9c\xff\x09\x14\xb1\x14\x53\x68\xd1\x59\x10\xd3\xf3\x94\xd9\x0e\x1e\xbc\x88\xaa\x29\xc1\xf3\x9f\x04\x4a\x32\x81\xf9\x41\x02\x28\xf7\xf3\xbe\xd3\x0a\x99\x70\x3f\xd8\xcc\x2a\x3d\x70\xa0\xdd\x8b\x72\x33\x1a\xa5\x51\xe2\x47\x54\xd8\x58\xa8\xef\x79\x60\x44\x7f\x05\x6f\x75\xa2\xe6\x2a\x9c\x0f\x6d\x11\x85\xf9\x4e\xdf\x8b\x7e\xbc\x43\x59\x8b\x53\x31\xac\x52\x2b\x11\x3f\xa0\xaf\x09\x88\x17\x50\xae\xc8\x44\x1e\x8c\x95\x7f\x1c\xab\x77\xf3\x4f\x8d\xb5\x99\xd2\xd4\xa8\x65\x61\xa1\x9d\x0f\xac\xf9\xeb\xa4\x84\x95\x59\xa4\xed\x66\x51\x4e\x48\x28\x01\x4d\x7b\x72\xc5\x55\x0a\xdc\x92\xe7\x37\xb4\xd4\x0a\xb3\x62\x67\xbc\x3f\x39\x5a\x6a\x0e\xd7\xbe\xb0\xe0\xee\xfd\x67\xf6\xf9\x6d\x96\xbe\x66\x81\x1a\xc1\x71\xf9\x8d\xb1\x2a\xd3\xbe\xa1\xec\x4a\x87\x11\x99\xd3\x63\xb3\x3a\xb4\xe3\xd2\x6e\x2e\x7a\x3e\x1d\x7b\xd5\x90\x9b\xae\xef\x91\x44\x89\x2d\xd6\x49\x3f\x08\xd1\x6d\x6b\x47\xd1\x30\x2e\xa9\x2a\xff\xf8\x58\xd9\xfc\x1c\x55\x1a\x0a\x02\x37\xe4\xfe\x00\xcf\xac\x03\x3d\xbf\xfe\x5c\x93\x6a\xca\x17\x66\xab\x0f\xa7\x35\xf1\x40\x24\x7e\x8b\x7e\x95\xaf\xe9\x43\x8b\x02\xa9\x6f\x23\xae\x99\x4c\xd8\xd4\xaf\x0a\x60\x5c\x9b\x30\x7d\x3a\x95\x74\x91\xe8\x4e\x46\x0a\x54\xd1\xaa\x56\x21\xba\xa8\x54\x88\xb4\x48\x6e\x2f\xcd\xf3\x88\xc4\xbd\x96\xa4\xdf\x0e\xf9\x19\xbe\x9e\x72\xd6\x9c\x9b\x6b\xe7\xe1\x60\xcd\x66\x11\xcb\x6f\x61\xfb\x4b\x39\xc1\xaf\x5c\x90\x1f\x9a\xa4\x67\x0a\xac\x0e\xb4\x3c\xae\x2b\x1b\x22\x70\x83\x70\x48\x6c\x99\x78\x70\xe4\xa8\xcc\xc2\x81\xc9\x19\xd9\xe5\x26\xe8\x2e\x69\xfa\x09\xd5\xe0\xa8\x29\x7e\x3a\xf6\xb8\xe2\x7f\xd9\x34\xb5\x79\xad\xec\xf5\x5d\xdb\x81\x9b\x9b\x0a\xf5\xf1\xd1\xb8\x26\x7a\x35\x30\x49\xdf\x3e\xa1\x9c\xb9\x98\x71\x5d\x83\x4a\x4a\xcc\xa0\x0d\x28\xa4\x23\x05\x3f\x79\x10\x28\x77\xf5\xd3\x08\xea\x38\x4b\xae\x2a\x3f\x1f\x1c\x77\xae\x23\xec\xcb\x0a\x88\x3c\x48\x62\x5d\x7d\x6d\xd7\x9c\xdf\xb3\x8f\x6f\xe3\x87\x74\x28\xa1\x0f\x78\x51\xb5\xe4\x96\x4b\xf2\xa2\xaf\xfe\x11\x59\xed\xf5\xb1\x47\xa6\x61\x88\x81\xc2\x6c\x63\x0a\x2c\x36\x37\xd7\xce\x4c\x82\xa6\x35\x46\x34\xd7\x02\x35\xf3\x3e\xa2\x91\xfe\xae\xff\x1c\xa7\x49\xdf\x66\xbb\x3c\x56\x6a\xfb\xc4\xb5\x0f\x1e\xfd\x19\x58\x01\xd1\x27\xfe\xfa\xcf\x75\x14\x34\x92\x67\x85\xa8\xdf\xee\x78\x66\xec\xfb\xcf\x52\x89\x88\x89\x2c\x3c\x69\xdc\x2e\xd5\x9a\xfe\xe3\xd9\x6e\x64\xf2\x5f\x40\x97\x06\x23\xae\x4f\x82\xd6\x81\x03\xa2\x5b\x1c\xcc\xbc\xfc\xcf\xbf\xca\xfd\x1f\x88\x0d\x3b\x93\xe6\xaf\x7d\xc5\x15\x87\xf4\x60\xb0\xbc\xfe\xc6\xc4\x3b\x56\x3e\x47\x96\x90\xf4\xc4\x5f\x78\x76\xd2\x9a\x9b\xe3\xc3\x71\x0b\xc2\x37\x1e\xcc\x55\x7a\x30\x92\x15\xd0\xd3\x43\xb2\xf4\x80\xca\x54\x91\x27\x6a\xfd\x33\x69\x26\xbe\x8b\xe5\x42\x5f\xf9\xd1\x9f\x9f\x38\xd3\x60\xfb\x14\xd8\xf0\xc8\x4a\xef\xe3\xb4\xa2\xb3\xe5\xef\xfe\x9d\x0e\x09\xb5\x62\x21\x5e\x27\xc2\x67\xbd\x79\x82\x00\x78\x0b\xd5\x2a\x3e\xe4\x8d\x71\xeb\xf9\xe7\x39\x12\x83\x9f\x49\x15\x52\xf4\xb7\x3a\xca\x30\x70\x17\x99\x57\xd6\xc6\xb6\x48\x01\x6f\x41\x19\x93\xce\x94\x93\xcf\x22\x5d\xc6\x69\xb9\x0b\x5d\x34\x14\xef\xdf\x52\x47\xe7\x13\xc0\xd8\x23\xf3\xde\x32\x69\xed\x7b\xc9\xb3\x43\xbd\xbc\x61\xd0\xfa\xaa\xd8\x06\x6c\x05\x94\x95\xa1\x79\x08\xb8\x28\x0b\x1e\x99\x6c\xfd\x02\x6f\xe5\x07\x4a\x82\xd0\xc6\xd1\x41\xd3\xb5\xc5\x40\x49\xb3\x5c\xd5\x47\xe1\x55\x85\x2c\x0f\x4d\x62\x7a\x91\x49\x38\x9f\x43\x97\xf7\x8f\xc7\x7e\x82\x04\xc1\x30\x51\x76\xf4\xa9\x99\x4d\x6c\xd6\x5f\xdf\x59\x7d\x66\xd7\x56\x50\xb3\x66\x3c\x17\x34\xe4\xbf\x8b\x47\x29\xe2\x46\x2d\xe7\x66\x7e\x41\x49\xbb\xde\x18\xab\x23\xfd\x3b\x1a\x09\x77\x6a\xfc\xb8\xca\x3e\xd3\x78\x7b\x6b\x7e\x7e\xe3\xb2\xe2\x7a\x7f\x17\x47\x3b\x9e\xf5\x61\x75\x3c\x41\x00\x73\xe3\x32\xfe\x34\xff\xb0\x02\x6e\x0c\xd3\x7c\x60\x33\x95\x7c\x1d\xd2\xc9\xd7\x21\x25\x95\x3a\x8c\x62\x0b\x30\x21\x82\xd1\x87\xf8\x41\x21\x9b\xd0\xdf\xc7\x5e\x3a\x3c\xd6\xfa\x0c\x27\x11\x0e\xf9\x97\x54\xdf\x2d\xb3\x26\x4f\x13\xd0\xc3\xab\xe5\x2c\xde\x9c\xd5\x87\x87\x79\xce\x86\x26\xfd\x5d\x53\x85\xf9\xc8\xf4\xad\xa9\x02\xb4\xdb\x8d\xdf\x0c\xd4\xd6\xfc\xa6\x9a\x01\x8d\x4c\x0e\x46\xb1\xf7\x44\x55\xac\xc0\x4b\xaa\x16\x0d\x33\x53\x9d\x80\x5e\x6c\x56\x8b\xd0\x06\xbe\x71\x6c\xb2\x10\x6d\x49\x84\xc5\x9b\x5a\xe7\x94\x5b\x1c\x28\x1e\x8f\x4e\xf5\x4e\x9e\x7f\xbe\x1d\xdb\x28\x2f\x33\xab\x30\x82\x5b\x3b\x0a\x23\x38\x4d\xae\x7c\xa1\xbd\x1c\xa7\x6b\x42\xbb\x62\x9d\x59\xba\x49\xa2\x39\xdb\xa0\x99\x1d\xdb\x55\x1b\xbb\x1c\xd4\x99\xfa\x78\xa0\xd2\xbf\x54\xa5\xfb\xc3\xa9\xee\x2b\xc1\x5e\xec\x88\xce\x78\xe6\x4e\x29\x95\xef\xe3\x8d\x25\x4d\x3f\x4b\xd7\x5c\x9d\xc0\x26\x9b\xea\x63\x5e\x08\xb4\x86\x45\x3a\xca\x67\x7c\x8d\xf4\x40\xb1\xce\x2f\x28\x59\xd7\x0b\x6a\xd9\xaf\x45\xc5\xe0\xf3\xb5\x9e\x9f\x27\xf9\x41\x2b\x57\x4c\xf1\x95\xa0\xee\x4e\x98\xfb\x62\xf8\xd6\xea\x38\x89\xd5\x6b\x77\xd0\xc6\x41\x6c\xfb\xd7\xb4\x91\xd0\x16\x3a\x3a\x56\x56\xd5\x7f\x46\x25\xc2\x46\x2d\x90\x5d\xa1\x23\x15\x3d\xbb\x23\xd8\x02\x38\x90\x2f\x8d\x6b\xa2\x2b\x55\xe8\x74\xe2\xd5\x7b\x1d\x97\x6f\xac\x5d\xd8\xbe\x57\x83\x59\x6a\x81\xf4\xd3\xca\x12\xe3\x1a\xd2\x7e\x14\x0f\x0f\x54\xb5\xfe\x21\x86\xc2\xaa\xa5\xf9\xb2\xa3\xf1\x3f\xa5\x68\x16\x99\x89\x7b\xe2\x38\xe9\x7c\x08\xbc\x02\xca\xf1\x06\xd9\xc3\x17\xdb\x59\xd4\xa3\x3d\x83\xfe\x1e\xf0\xd0\x7c\xad\x6a\x16\x72\x4c\x82\x6d\xfc\x92\x2c\xe1\x9b\xb4\x6f\x44\x60\x4f\x8e\xfd\x22\x8b\xc2\x15\xce\x85\x1d\xf7\x51\x29\x57\x6b\xe4\x2a\xf1\x7c\xc0\xde\x10\x14\x07\xdd\x4f\x81\x77\x48\x69\x1b\x9a\x22\xf4\xfc\x35\x34\x1b\x2e\x28\x5b\xa8\x0b\x5a\x88\x62\x94\xba\xa9\x31\x9a\xdd\x77\xd1\x7d\xe0\x17\x8a\x24\x93\xd9\xaf\x97\x51\x16\x25\x7d\x52\x19\x63\xc5\xfa\xc0\x53\x06\x6e\x8e\x55\x43\xf0\x28\x62\x3e\xbf\x08\x7c\x51\xc3\xc5\x2e\xe2\xe3\x0d\xe5\xc4\xb8\x66\xe3\x78\xa7\x72\x03\xf8\xd1\x58\x3d\x78\x58\xe8\x21\x58\x6e\x21\xf5\x31\x9c\x3b\x3b\x48\x4c\x06\x1d\xae\x3f\x1d\xfb\x77\x01\x2c\xd3\xa9\x55\x78\x72\xf7\xb3\x13\xcf\xb5\x8a\x12\x38\xdb\xb3\x59\xdc\xab\x7e\xc9\x54\x9b\x80\x5f\x34\x79\xc3\x57\x7b\xda\x99\x0f\xb8\xe8\xe9\x6a\xff\x4b\x1e\xcc\x1b\x85\x40\x91\xb2\x2f\xc8\x58\xcd\x44\x41\xf8\x44\x93\x66\x5b\xc7\xa3\xf1\x2f\x29\x33\xbb\xc4\xae\xe5\xa3\x2c\x82\xfa\xfe\xcb\x5e\x31\xca\x0d\x06\x2f\x29\x15\xbb\xcc\x24\x2b\xc0\x3a\x21\x2d\x3b\x89\x3b\xcd\x2f\x14\x48\x8d\x18\x03\xb3\x4a\xed\xfe\x12\x0e\x55\x1c\xbd\x57\x94\xc9\x01\x38\x5c\xfc\xff\xc7\x9f\x53\x54\xb9\xc2\x66\x43\x52\x25\x65\x55\x3f\x3c\xcf\x73\x8a\xec\xf7\xe7\x8a\xab\x7b\xb1\xd6\xe9\x8d\x8b\xd5\x59\xe5\xf4\xc0\x58\x21\x6d\xd2\x8a\x30\x75\x42\x1b\xc0\x9e\x98\x4a\xb3\x97\x76\x57\xdf\x44\xf5\x8a\xb6\x00\x1e\xcd\x2f\xa6\xa8\xba\x5f\x6c\x0f\xa0\xaa\xc0\x03\x2d\x9c\x53\xbc\xe7\x31\xdd\xfa\x5e\xa0\x49\x8f\x1f\xab\xe6\x56\x94\x84\x65\xe6\xba\xb7\x00\xfe\xfd\x2b\x65\xac\xf2\xaf\xd4\xdd\xc9\xcb\x6e\x98\x0e\x87\x51\x51\x58\x3b\xab\x14\x4c\xd9\x0a\x53\xc0\x67\x7a\x6e\x74\x51\xe9\x40\x5c\x52\xd2\x58\x61\x3a\x1c\x95\x85\xcd\x08\x37\xec\xd1\x1c\x17\x91\x37\xf1\x8b\x66\xe9\xf1\xcc\xf6\xa2\xb0\xa0\xf1\x96\x13\x02\xdb\xbf\xdb\xd9\x97\x2b\xa0\xef\x3d\x35\xc7\x14\x1b\x43\xa8\x78\xe1\x49\x72\xf5\x82\x15\xf7\x8e\xb2\x67\xbb\xe8\xfb\xc8\x49\x31\xc8\xcc\xeb\xb8\xb1\x38\x8a\x40\x43\xc1\x2f\x11\x71\x9f\x7f\xa9\x35\xf9\x2c\x75\xdc\xd7\xd2\x41\x92\x17\x02\x9f\xd1\xbc\x10\x94\x6a\xbf\xa1\x9d\x68\x2f\x37\x9d\xef\xf9\x4a\x94\x0d\xc9\x4b\xcc\x75\xf6\x51\x85\xf3\xb5\xb3\xc8\xa2\xbd\x32\xab\x60\xf6\x9c\xbc\xe3\xe4\x3b\x1f\x28\x62\xd0\x61\xb5\x4f\xb7\x4f\x24\x72\x46\xfd\x04\x86\xe5\xf4\x20\xb4\x6f\x91\xe8\xc2\x7d\xde\x3d\x44\xfb\x7a\x91\x19\xd0\x71\xb3\x88\x6d\x48\x10\x5e\x4f\x63\x8b\x22\x7e\x5e\xaf\x21\xe3\x3c\xb4\x6d\xd9\xac\xd8\x56\x55\x6d\xb1\x23\x52\xe0\x5b\x0c\xfe\x01\x0c\xa3\xdc\x66\x2c\x2c\x87\xb0\x77\x42\x99\xf6\x9f\x08\x74\x3f\x8d\xf4\x03\xd8\xae\xa5\xc9\x3c\x49\x50\x45\xbd\x28\x1f\xc5\x66\xdd\x7d\x4b\x2e\xa4\x83\xda\xb8\x6a\x1a\x97\xb6\x07\xb0\x4b\x8b\x83\x12\x37\xee\xfb\x58\xfa\xfc\xa2\x81\x44\xbe\x58\x5d\xc4\xbd\x59\x25\xeb\xca\x47\x88\xd6\xbe\x42\x4a\xc1\x13\x3e\xe1\x06\x3a\x12\x9b\xe9\xc6\x69\xd4\xdb\xe6\x11\x2c\xec\x25\x2e\xce\x62\x1e\xc9\xd0\xea\x78\x85\xb8\xdb\x54\x7f\xca\xcf\x34\xf0\x54\xab\xbd\x9c\xf6\xa2\x82\x19\xde\x10\xc9\xba\xa7\x04\xb3\xee\xd5\xa2\xdb\x00\x3a\x3d\x1b\xef\xd3\x6a\xdd\x78\xbf\x89\xaf\x32\x4a\xb3\xb4\x44\xac\x96\x6e\x55\xcb\x7b\xe7\x28\x05\xca\x65\x53\x73\xaa\xdb\x50\x4e\x75\x1b\x1a\xea\x54\x94\xbd\xc8\xe6\xb3\x7e\x48\x7b\x18\xf5\x27\xbf\xc0\x32\x43\x67\xfb\xb0\x62\x3c\x1c\xd6\x00\x74\x6b\xc2\x01\x2c\xde\x11\x2f\x78\xce\xcb\x2f\x26\x9b\xc7\xfb\xae\xe7\xd8\xed\x46\xc8\xdb\x51\x78\xdf\x1d\x2b\x05\xa4\xbb\x81\x17\x9c\x1e\xd9\xa4\x97\xeb\xb8\xc2\x6e\xc7\xd8\x9b\xc0\x23\xca\x54\x6b\x73\xec\x7e\x01\xf6\x5c\x82\x7d\x56\x5e\xef\x22\xee\x79\x58\x25\xd2\x26\x2e\xb8\x78\x63\xeb\x48\xe5\x54\xfa\xb6\x4a\xa9\x72\x6b\x8a\x22\x16\x2c\x3f\xfe\xfd\xa4\xd6\xf0\x98\x76\x89\xa3\x43\x27\x63\x1b\xf4\x3d\x02\x8d\xa6\x5b\x2a\x30\x69\x8f\x97\x25\x06\x91\x72\x2c\x46\x30\x13\x7a\xb4\x17\x11\x48\x57\x6d\xd6\x25\xea\x3c\x4d\x23\xd0\x1a\xfa\x63\x5a\xf1\xca\x44\xd9\xfb\xbf\xea\xcd\x9c\xf4\xa2\x42\x0a\xb9\x26\x93\x26\x49\x45\x46\x51\xb8\x02\x5e\x11\x8a\x48\x9c\x06\x88\x77\xb7\x55\xb5\x7d\x46\x39\xd5\xb3\xcb\x97\x70\x38\x7c\x6f\x20\x1f\x65\x66\xcd\x79\x67\xb2\x24\x1a\xfd\xa2\xc8\xa3\xf9\x6c\x83\x74\xaf\xe8\xe7\x34\x98\x4d\x50\x6e\x5a\x1c\x34\xb6\xc4\x7c\xaf\xee\xad\x02\x0d\x28\x29\xf6\xa3\x4d\x78\xb7\xd7\xca\x61\x37\x9d\x51\x64\xea\x33\xaa\xeb\xb7\x4d\x4d\x3d\x37\x1a\x7d\x02\x7a\x99\x61\x46\x34\xd2\xfe\xc3\x81\xe7\x1a\x1c\x56\x60\x6f\x76\xb6\xcc\x5a\x1e\xa9\x74\xa9\x76\x9e\x4f\x91\x24\x5e\x68\xc7\xe9\x5a\xcb\x23\x41\xb7\x2a\x95\xf3\xad\x93\x86\x40\xd3\x35\xe1\x4a\xd7\x26\xac\xc5\x85\xf2\xfe\x94\xe2\xed\x9d\xf2\xa1\x2e\x33\xcb\xcb\x51\x48\x27\x09\x44\x07\x30\x73\x96\x3e\x9d\x32\xc2\x9a\xd6\xae\x5e\x58\x68\x87\x03\x25\x2e\xc8\xae\x3d\x63\x3f\x7e\xf9\xa4\xd1\xc9\x7f\x64\xf2\x62\x87\x87\x99\x61\xa0\xcc\x16\x5a\xb8\x13\x32\xab\xa6\xaa\x44\x19\xc5\x2d\xfa\xc2\xd7\xb9\x48\x1f\x56\xce\x26\x5b\x3b\x8f\xb9\x01\xc3\xeb\xbc\x96\x55\xc6\xec\x6d\xf5\x1e\xd7\xd8\xbd\xde\xae\x96\x33\xbf\xe4\x13\x5b\xcc\xfd\xab\x38\x88\x93\xef\x0e\x95\x1e\xb5\x8a\x42\xf4\xba\x7c\xcb\xfc\x37\x28\xcd\xe5\x5f\xd0\x32\xcb\xdf\xe4\x24\x4d\xd4\x32\x6b\x30\xa0\x51\x0e\x28\x3c\x26\x21\xb8\x1d\x88\x7a\xb7\x03\x05\xf6\xb9\xa3\x7c\x5f\x3f\xae\x8b\x84\x29\x65\x99\xab\x63\x1d\x84\xde\x6e\x82\x32\xaf\x59\x56\xeb\x12\x84\xd1\xcf\x5c\xc1\x83\xe6\x17\x6a\xb1\x8e\xe2\xb4\x70\xfa\x64\x62\xc3\xa8\x74\xc4\xef\xfb\xe1\xb1\x49\x42\x1b\x73\x58\x06\xc9\xf6\x3c\x2a\x6e\x36\x70\xc2\x21\x2c\x6c\x16\x05\x78\x2b\xb3\xa4\x8a\x5b\x33\xb4\x57\x35\x6a\x8e\x3d\xd1\xf1\x7e\x2c\x5a\x3f\xf6\xc1\x6e\xc5\x66\xe1\x20\xb2\xcb\x9c\x1f\x34\x79\x14\xfa\x08\x1d\x25\x79\x19\x47\x6c\xf4\x88\x46\xe7\x11\xac\x35\x7e\xd1\xe8\xe6\x04\x05\x17\xc7\x77\xc4\x01\xc1\x7a\x6e\xfc\x42\x45\xdf\x51\x66\x57\x21\xcb\xbb\x9d\xce\x6d\xe4\x37\xce\x1f\xc3\x63\xa8\x2e\xaa\xa2\x12\x9c\x90\xda\x60\x56\x10\xb6\xd3\x8c\xdc\x25\x10\x85\xa1\x11\xf3\xb2\xaf\x74\x1c\x12\x66\x5a\xbb\x66\xcf\x3e\x19\xf9\xb4\x34\x30\xc2\x47\xf9\x3b\x9e\x31\x65\x42\x1b\x13\xcf\x85\xfe\xba\xb8\xa7\xb5\x1c\xe1\xef\x9c\x9a\xe5\x1b\xf3\xcb\xcc\x4c\x17\xab\xad\xea\x4f\xa2\xcf\xcc\x9e\x54\xc8\x19\xee\x37\xe8\xa8\x85\x69\xb2\xac\x50\xe6\x4e\x8f\xa8\xba\xc9\x42\xb5\xf5\x8d\xc3\x81\x4d\xb2\xf5\xed\x2a\x67\x62\xfd\x75\x51\xab\x51\xaa\xd4\xb8\xb3\xfc\x53\x63\x25\x83\x76\x36\xd0\x53\x42\x35\x9e\xc9\x07\x74\xac\x28\x30\xe2\x3b\x58\x17\x42\x62\xf6\x07\x8b\x5d\x5e\xc6\x18\x4f\x04\x5a\x19\x3f\xa6\xf3\xd8\xb3\x0a\x3e\xe5\x45\x2b\xc5\x6b\x5b\x39\x22\x5f\xac\xb9\xf4\x58\x28\xef\x3b\x33\x3f\x7d\xbe\x2b\x4a\xd2\xb9\xa0\xa6\x8b\xe2\xc1\xe6\xcf\xe7\x7f\x8b\x7e\x1d\x55\xf2\x21\x25\x4b\x3d\xdb\x69\xbd\xe2\x58\xb2\x81\x6f\xe8\x9e\x03\x5a\x10\xcf\x68\x86\xd1\xb5\x0e\x45\xaf\xd4\xdc\xf1\xed\x10\x1a\x76\x4d\x68\x15\x0b\xe7\xb6\xfa\x6e\x0f\x27\x6a\x9a\x45\x2a\x18\x1b\xa7\x03\xc5\x85\x9b\xa1\xde\x21\xce\x96\x8f\x09\x2a\x2f\x16\x85\xca\x59\xee\x18\x6d\x02\x2c\xb2\x87\x63\x8d\xad\x3a\x42\x83\x45\x34\x05\xc6\xb4\xd0\x31\x32\xfd\x29\x7a\x73\x68\x88\xff\x31\xc2\x24\xfb\x2e\x50\xeb\x71\xe3\xb2\x76\x0f\xfa\x13\xed\x29\x70\x88\x22\x39\xfe\xe1\x0c\x35\x15\xa5\x43\x43\xc7\x0d\x9a\x70\x0f\x9a\x5c\x51\x97\xd3\x38\x56\x4d\x58\xf7\xac\xd4\xf3\xd9\xdc\xea\x23\xd1\x42\xe1\xc5\x3b\x3d\x9b\x25\x9f\xc8\x49\xfc\xec\xa6\xc9\x32\x59\x1b\x78\x06\x29\x9e\x3c\xa2\x20\x6f\x29\x9c\x04\x37\xd4\xbc\x38\x2f\xb3\x55\xbb\x6e\x7b\x84\x60\x61\xaf\x77\x0c\x3b\x6b\x66\x0d\xce\x05\xde\x8b\x62\x4c\x9d\xcd\x7b\xf6\xb5\x57\x6d\xc6\x32\x1f\xd2\x5b\xad\xa9\x64\x6d\x86\x64\x10\x87\xbf\x1b\xa7\x69\x2f\x2f\x32\x6b\x86\x2d\x35\x3f\x55\x16\xf5\x3a\x95\xe5\x00\xa3\xa4\x5c\xf1\x16\x42\x94\xf5\x3b\x33\x4e\x4d\x4f\x44\xa7\x9c\xfa\xae\x1b\x72\x69\x49\xd4\xa2\xcc\xba\x6c\xd1\xef\xca\x50\x5f\x92\x4e\x9e\x93\xde\x42\x88\x0a\xcc\x38\xd8\x8c\x72\xaf\x74\x56\x96\xaa\x87\x91\x17\x59\x9a\xf4\xe3\xf5\x6d\xb4\xbc\x44\x41\xa1\x7a\x7a\xe8\x4c\xdc\x51\xf3\xe2\x53\xe8\x0f\x6b\x2d\x06\x9c\x65\xe7\xf4\x08\x84\x4c\xd1\x68\xe3\x01\x75\x7c\x5e\xe9\xd3\x9d\x9f\x5a\x72\x7b\xc1\xfa\xee\x65\x66\x2d\xa9\x39\x82\x2a\xea\xc4\x9b\x4d\xf8\x8f\x28\x33\x5f\xa7\xfc\x12\xdb\x8b\x13\x04\x7e\xa1\x1a\x78\xa1\xc9\xed\x3a\x4d\x79\xb4\xcb\x87\xdc\x08\x65\xc6\x1b\xad\xda\x1d\xba\x7f\x52\xfd\x0a\xea\x39\x3e\x0d\x25\x77\x6d\x39\x57\x01\x6e\x52\xc9\x58\x4f\xbb\xb7\x61\x49\xf2\xef\xbb\x0e\x76\x9a\xf5\x2c\x4b\x41\xa0\x02\xfa\x86\xaa\x86\xbe\xb1\x19\xcc\x51\x25\x92\xf3\xf3\x4b\x8f\xd4\xe6\x7e\x4a\x47\xe0\xfb\x48\x3e\xb0\x61\xfe\x9c\xb6\xbc\x90\xf3\x3d\xc5\xe0\x8a\x92\x0d\x87\x83\xe6\xc6\x69\x24\x9d\x32\x63\xf4\x65\xd4\x6f\x07\xde\xf7\xeb\xb8\x9a\x85\x96\x49\xcf\x2e\x47\x89\x84\x7a\xd4\x2d\x7f\xa0\xe5\x52\xfe\x60\xbc\xb9\xe3\x58\x55\xee\x46\x46\x06\x6c\xf4\xa9\xcf\xfe\xf7\x1b\xf2\xe6\xc5\xb6\x35\x79\x81\xbe\x06\x32\xf2\x77\x39\x52\x4a\x85\x56\x7d\x2f\x34\x46\x58\xff\x03\xa0\x99\xdf\x71\x5d\x7a\xa8\x53\x89\x7c\x14\x92\x24\x16\xf2\xe1\x17\x53\x4b\x70\x6e\x4f\x7b\x68\xfb\x66\xcd\x14\x45\xcd\x4d\xec\x82\x72\x13\x6b\x62\xe6\x2d\xb6\x7b\xeb\x6c\x3f\x83\x49\xc5\x77\xb4\x52\xc7\x77\xb4\x90\x86\x89\xe3\x34\x4d\x50\x52\x3a\x88\x99\x92\xcd\xd4\x90\x87\x87\xb5\xf6\x46\x4d\xbf\x5a\xa4\x88\x69\x64\x32\xca\x22\x53\x58\x12\x91\x97\xd4\xaa\xe5\xfc\x51\x1e\x9d\x78\x04\x10\xbb\x6a\x3b\x46\x9e\x53\xc7\xfb\x39\x25\x22\x90\x45\xab\x36\x9b\xad\x0e\x22\x9c\x1a\x5b\x26\xaa\x21\x7e\x56\xad\x79\xb0\xd7\xf9\x87\x3a\x4d\x66\xc5\x03\x93\xf5\x6c\xb6\x8d\xd6\x18\x92\xa5\xcb\xca\x18\x07\x03\x3d\xa0\x00\x40\x1b\x64\x9f\x70\x4c\xcd\xb0\xc9\xee\x34\x15\xaf\xb9\xed\x19\xd6\xbe\xd3\x03\x48\xbe\x76\xcd\x93\xdc\x0c\x47\xb1\xe5\x2c\x1d\xe7\x00\x3b\xbf\x63\x62\x06\x6b\x3c\xd1\x2d\x7b\x7a\xd3\xc8\xc6\x6a\xcf\xa6\x7b\xca\xd0\xf1\x5e\x93\x8c\xb0\xe9\x11\x34\xcc\x39\x0b\xb3\x7f\x56\xd0\x52\x5e\x5a\xd3\x3e\x6a\xa2\xf2\x2c\xb3\x55\x3d\x1e\x65\x5e\x29\x3d\x25\xb4\xbb\xbf\xa3\x0a\x89\x6e\x06\xcb\xf2\x19\x65\x9c\xa5\xa4\x6f\x60\xc5\x26\x6a\x65\x7e\xf0\xb9\x6c\x63\x9a\xf7\x33\xd4\x64\x86\x54\x42\x11\x1e\xee\x28\x9c\x0a\x06\x47\xc0\x90\x3c\xd3\xa9\x99\x6d\x29\xae\xc3\xb4\x63\xf8\xe2\x4b\x55\xc1\xbb\x2a\x92\xc1\x68\xea\xe2\x2b\x00\x6b\xc6\x38\x49\xf4\xb7\xbf\xdf\xe4\x2e\xd6\x5b\x8b\x92\x9e\x73\x46\x41\x61\x77\x17\x8b\x9f\x5f\x4c\x79\x84\x48\x4f\x2d\x1d\x59\x58\x95\xf3\x9a\x0a\xbc\xf8\xd0\xb4\x5a\xeb\xdc\x5c\xbb\xc8\x4c\x92\x2f\xdb\x6c\xb6\xa6\xb5\xee\xa9\xdf\x2d\x3d\x19\x61\xd3\x07\x61\x58\x0a\xb3\x6c\x64\xb2\x22\x0a\xa3\x91\x49\x00\xe1\x65\x74\xc4\x1e\x49\xc9\x10\x34\x1e\xaa\x99\xc8\x72\x0a\x41\x39\xc4\x00\x1c\x12\x4c\x59\x47\x85\xfb\xe3\xc0\x77\x3f\xb0\xee\xf8\xff\x8f\x6b\x80\xfe\xcf\xea\x2c\x16\x69\xcf\x90\x6e\xfb\x42\xad\x7f\xe6\xa6\x5b\xba\x3b\x4c\x91\x07\xc7\x7b\xcb\x3f\xf2\xe7\x40\x50\x47\xf4\xfa\x7c\xc7\x47\x2f\x13\x12\xb3\x78\x9b\xbf\xaf\xb0\x58\xe7\xeb\x40\xe1\xd6\xee\x22\xd4\x08\xf4\xc2\xc3\x76\x7f\xa8\x56\xe3\x90\x0a\x35\x17\x9e\x40\x4c\xe0\xeb\xa6\x07\x96\x96\x45\xee\x4d\xad\xb9\xf9\x1c\xe8\x46\xf4\x13\x4a\xd8\xa2\x94\x1f\x54\x4c\x43\x47\x3b\x9c\x52\x80\xdd\xbf\x7b\xb1\x9d\x97\xfd\xbe\xcd\x8b\xa9\xd6\xbd\xc6\xc3\xf9\x32\xc4\xf6\xfe\x3a\x74\xab\x17\x05\x34\x71\x64\x13\x2f\x7c\x8e\x88\x0b\x7d\x3f\xbe\x9e\x3a\x52\xf6\xef\x7e\xb1\x6d\x8a\x74\x44\x83\x70\xa4\x0e\xc7\x95\x73\xf1\x71\x35\x5f\x1e\x9a\x70\xc5\x26\x07\xb9\x99\xec\x5c\x4c\xaa\x27\xc1\x2f\x6a\x7d\x76\xb3\xbc\xbc\x9d\x6e\x8a\x14\xbc\xb4\x1e\xa4\x53\x53\xad\x7d\xc4\xc6\x93\x81\x47\xce\xb2\x66\x98\x33\x3f\xf1\x1a\x05\xd3\x25\xc0\xfc\x7c\xbb\x67\xc3\x2f\xce\x6c\xfd\x82\xa3\x09\x55\x7f\x08\xe5\x51\xcd\x16\xc9\x4f\xf3\xbb\xa6\x30\x9c\xd1\xa2\x16\x78\x43\x77\x93\xde\x68\xe0\xba\xb5\xbb\x69\x9a\x17\xd2\x4e\x96\xa1\x2e\x7d\x30\x99\xf6\x3e\xa3\x58\x8b\x79\x54\x3d\x82\x62\x96\x76\x30\x26\x57\x1f\xe0\xa7\x95\xe1\xce\x1e\xaf\x0a\x58\x85\x38\xfe\x31\x45\xbb\xed\x65\xeb\x82\x4d\x40\x03\xec\xdb\xb4\xf4\xf8\x7a\xfc\x9c\x9a\x5c\x99\x7e\xdf\x66\x46\x86\x39\x22\xaa\x5c\xdb\x7a\x0d\xfd\x45\x93\x93\x10\x0b\xbd\x83\x6b\xe3\x3a\xb6\xd6\xd1\x69\x4f\x81\x97\x5e\x6e\x2f\x9b\x30\x8f\x86\x51\x6c\x55\xf7\xb3\xae\x5a\xe6\x23\x4f\x62\xfa\x66\xdd\x0c\x0d\x4d\x37\x99\x1c\x1a\xd4\x6e\x83\xe7\x7b\xbc\x57\x5b\x35\x59\x6c\x30\xc6\x61\x5a\x13\x0f\x7c\x85\xe4\xe4\x85\xd1\x46\x69\x56\xd8\x6c\xc6\x2f\x45\x30\x97\xa4\xa4\xf2\x3d\xbd\xdf\x55\x44\x7e\xd3\xcd\xd3\xac\xbb\xcb\x0f\x69\xfe\x03\xd6\x2f\x6a\xf2\xf7\x03\xd5\xf2\xb8\xae\x7d\x09\x3e\xa1\xf5\x8a\x78\xf1\x9e\x12\x3c\xff\x73\xec\x74\xfe\x87\xc0\xd7\xd1\x87\x02\x95\x50\x9e\x77\x02\x6a\x51\xf2\x5a\x99\x84\x34\x0f\xa0\x5f\x64\x09\x6b\x25\x08\x78\x4a\x41\x60\x86\x65\xbc\x9c\x66\x3c\xd2\x46\xbe\x7e\x4a\x81\x4f\x4e\xb9\x39\xd4\x30\xea\xf5\x62\xbb\x8d\x9e\x3a\x0e\xf3\x1b\x3a\xb3\xb9\xa4\x92\xb4\x0b\x1a\x6f\x7e\x4e\x79\x09\xb7\x3a\xbe\x23\x03\xf3\x81\x2c\xb1\x59\x3e\xab\x79\x4d\xf4\xab\x38\xf6\x67\xd9\x26\x1f\x19\xc7\x75\xac\x38\xf4\x27\xdf\x1f\x6f\xf2\xbe\x23\xdb\x96\x7c\x9b\x9f\x5b\xfc\x11\x3e\x04\x90\xf6\xec\x58\x23\xee\x6e\x2d\xe7\x20\x78\xa7\x66\xfb\xf6\x99\x67\x71\x62\x5f\x2f\xb6\x79\x60\x7c\x8b\x6a\x54\x47\x90\x73\xe4\x11\xee\xc5\x62\x0f\xed\x98\x78\x09\xe0\x23\x81\x96\x18\xce\x89\x13\xc5\xe1\x16\x3b\xfc\x0e\x7e\x93\x5f\x34\x18\x9d\xb4\xf3\xd0\x64\x21\x06\x49\x82\xa5\x6e\x39\xf3\xc8\xe3\xda\x77\xb3\x30\x85\xcd\x1f\xa5\xbf\xe7\x3c\xf5\x96\x16\xf9\x0b\x7f\x8b\x1e\x07\x56\xd6\x4f\x54\x9e\x79\x41\x4f\x97\xce\xa2\x00\x43\x09\x34\xdb\xa1\x76\x8d\x50\xae\xbd\xb1\xef\x1f\x50\x0c\x77\x99\x94\xa7\x85\x9f\xd1\xb8\x9f\xb7\x35\xf9\x2d\x31\x2b\x3c\x73\x16\x01\x59\x3f\xfe\x9c\x8e\xbe\x55\xd2\x4d\x1a\xa7\x4e\xd4\xf3\xfb\x8a\xd4\xf4\xfd\x26\xb2\xb1\x59\x5e\x8e\x7a\x66\x95\x2c\x4a\xf7\xec\x73\xc6\x11\x0a\x92\x70\xc1\x99\x0b\x87\xd1\x6a\x14\x6a\x51\x10\x7c\x1a\xbe\x56\x87\x52\x94\x84\x71\x59\x25\x39\x8f\x29\xb3\x5f\xf2\x2a\xda\xb8\xa9\x5b\x6c\x90\x65\x43\x13\x6a\xa6\xa3\x80\x05\xa2\x41\x8b\xc9\xc0\x22\x3d\x02\x9c\xdc\x57\xb0\xfe\x04\xdf\x47\x1b\x8a\xef\x6e\xa0\x20\xb7\xe7\xf1\x0d\xf0\xfb\x1c\x35\x3e\x3b\xeb\x5c\x6c\xe7\x23\x6b\x56\xaa\x54\xb0\xfa\x41\xae\x43\x38\xca\x49\x55\x52\xdd\x48\xd5\xeb\xdf\x23\x2f\xd4\x34\x78\x94\xa5\xaf\x43\xfa\x17\xfb\xf1\xa2\x92\xa0\xb8\xb8\x59\xb9\x75\x71\x69\xb1\xfd\xca\xe2\x8e\xd6\x57\xf7\xd4\x9a\x9f\xe8\xe7\x1e\xd3\x86\xaa\x6c\xff\x84\x9f\x82\x70\x07\x5b\x14\x05\x7e\x1c\xc4\xe6\xae\x02\x1d\x6d\xa8\x6d\xd1\xe1\x71\x0e\xed\x2c\x69\xa5\xd8\xe8\x27\x54\xf7\x86\x9c\x77\x66\xf5\x91\xa5\x19\xd7\x20\x96\xbb\x6a\x53\x4d\x51\xa7\x47\xbf\x4b\x6d\x53\x65\xc9\x0a\xff\x79\x5e\xe1\x3f\xcf\x2b\x96\x4b\x6c\x5f\x8f\x92\x7e\xc1\xb3\x2c\x14\xf4\x27\x75\x75\x7f\xb2\x51\xd5\xd7\xf6\xfb\x33\xaa\x61\x8e\x3e\x07\xf2\x9b\x9d\x0a\xa2\xd1\x34\xc9\x5c\x6c\x0f\xc9\x7a\xca\x41\x41\xd9\x2a\x8d\x5f\x34\x9d\xd2\xb1\xa5\xf4\x1d\x05\x1b\x76\x2c\x24\xb7\x25\x62\xd3\x63\xf0\x36\x54\x1e\x29\x90\x98\xa4\x98\x51\x72\x35\xf7\x02\x6d\x2f\x42\x7f\x43\x68\x4e\x4f\x2a\x91\xed\x2c\xe1\xb1\x3c\x3a\xb7\xb0\x52\xe1\xeb\x89\x9f\x6d\xa6\x85\x13\x5c\x92\xf1\x40\x6d\x70\xb0\xb9\x9d\xe9\x90\x08\x21\x7c\x01\x5b\x5e\x39\xef\xb8\x76\x6f\x38\x3e\x15\x5b\xf7\xbd\xd4\x1e\x95\x09\x01\x86\xf6\xef\xe6\x22\xf3\x76\xe0\x0b\xce\xdb\x6a\x3e\x9d\x8f\x6c\x18\x91\xb1\x29\xcc\x50\x34\x70\x4b\xf0\x5d\x1e\x7d\x73\x66\xec\x47\x8a\x67\x14\xaa\xde\x94\x79\x91\x99\x38\x32\x48\xe8\x65\xbf\x7b\x86\xe2\x74\xd7\xe9\x85\xf6\x20\x65\x4f\x4e\x20\x07\x7f\x30\x56\xf2\x0f\x3f\x50\x05\xd9\x28\x4b\x47\x36\x8b\xd7\x09\x3f\x85\x25\xf4\x50\x69\xd8\x7e\xa2\x84\x48\x66\x1a\x00\xd5\x36\x1c\xa4\xb6\x66\x76\xc3\xcc\x71\xec\xc4\x7b\xc8\x39\xe4\x9c\x9f\x1e\x73\xbd\xdc\xfe\xbb\x7b\xf6\xbe\xb8\x77\xdf\xcb\x08\xac\xf8\xc1\x3f\x27\xa2\x3d\x5f\xeb\x36\xb1\xe9\x45\x36\x87\xc4\x83\xb4\x44\xab\x87\x00\x1a\xde\x49\x24\x3e\x38\x4d\xa7\xa7\x63\x4b\xe0\x52\xf6\x4a\xd0\x37\x9d\x3b\xcc\x92\x8c\xe6\x59\x4d\x4e\xbc\x9e\xd5\xdb\x46\xe4\x61\x4d\x7f\xdd\x89\x55\x2d\xed\x96\xeb\xa9\x2c\x60\xef\x42\xbb\x88\x4c\x62\x92\xa1\x65\x9e\x16\x23\x32\xe8\x6b\x09\x3a\xa3\x61\x08\x19\xda\x24\x4f\xb3\x7c\x10\x8d\x5a\x9e\xac\xf6\x2d\x45\x56\xfb\x96\xda\x1a\x64\xf7\x9b\x13\xc3\xcd\xb9\xf7\x3a\x90\xf1\x7b\x0a\x64\xfc\x1e\x2d\x2b\x79\x38\xcf\x6a\x3d\x13\xb1\xa4\xa2\xd8\xe6\x34\xe6\xab\xdb\x2b\x1a\xf3\xd3\x70\xf6\x97\x09\x41\x49\x37\x03\xf7\xed\x58\xe0\xe1\x0d\xc7\x14\x97\x3b\xac\x6e\x81\x35\x2d\xa5\x0b\x0d\xfe\x19\x5f\x8f\xb5\x48\x61\x3e\x2a\x0b\xe7\x21\x82\xe5\xf6\x6d\xad\x30\xf8\xed\x26\x43\xf9\x38\x1a\x76\xa9\x05\xe4\xec\x16\x17\xea\x66\x25\xec\x60\xae\xa6\xdc\x26\xeb\x97\x43\x9b\x70\x73\x55\xb8\x8a\xaa\x0c\xfc\x88\xfe\x88\xf8\x59\xf8\xa8\xfd\x57\x4e\xb4\xad\x48\xd9\x84\xcf\x19\x25\x7f\xed\x2b\x1c\xa1\x2f\xaa\x8a\xe5\xaa\xd3\xfe\xcc\x63\x0b\x4c\x87\x86\xab\xca\x10\xf7\x69\x5f\x3d\x30\xf1\x6e\x5b\x2d\xda\xed\xdf\xcd\x79\xd5\x13\x93\xad\x5f\xe0\x9b\x01\x76\xb2\x04\x41\x65\x50\xfd\x74\xc7\xb3\x35\xba\x34\x29\x59\x99\xad\xe3\x35\x9c\xd7\xdd\x35\xd5\x5b\xb9\xa5\x2d\x41\x4e\x4e\x55\x5a\x07\x0e\xb4\x87\x26\x31\x4a\x40\x88\x8f\x9a\xa0\x76\xee\x48\xe6\x6f\x57\x6d\xe2\xd2\x55\xe4\x9b\x37\xf5\x1c\xfd\xa6\x73\x9e\x23\x90\xa3\x60\x91\xbc\x11\x7d\xe0\x15\x08\x8e\x29\x80\x7c\xbe\x62\x47\x45\x14\x9a\x78\xd6\x3b\x2a\x03\x3e\xe9\x2c\x8d\xf6\x0b\x04\x94\xb1\xaa\xfc\x62\x0a\x66\xb3\x67\x5f\xbb\x1c\x11\xe3\x56\xe6\xfc\x5e\x8e\x11\xae\xf3\x42\xf2\x6c\x92\xec\x20\x56\x72\xcd\xe9\xf6\xbd\xff\x97\xb0\x77\x0d\x92\x23\xcb\xce\xc3\x80\xea\x6e\x60\x00\xcc\xce\x7b\x76\x45\xca\x8f\x92\x4c\x7b\xe4\xd0\x7a\x68\xca\x0e\x87\xc5\x3f\x59\x42\xf7\xee\x12\x08\x6e\x4f\x47\xa3\x39\xb3\x9a\xa0\x23\x70\xbb\xea\x56\x55\x4e\x67\x65\x16\x33\xb3\xba\xd1\x08\xff\x50\x38\x6c\x87\x43\xf6\x0f\xd1\x76\x58\xe1\xb0\xc3\x41\x9a\x14\x45\x4a\x24\x25\x71\x49\x5a\xe4\x92\xac\xe2\xee\x72\x5f\xb3\x8f\x99\x9d\x37\xb0\x33\x03\xa0\xf1\x46\x03\x8d\x37\x1a\xaf\x86\x23\xcf\x77\xce\xbd\xa7\x3a\x13\xd4\xaf\xc9\x1c\x74\x55\xe5\xe3\x3e\xce\xf9\xce\x77\xbe\x4f\x3b\xdd\x7e\xe0\x21\x58\x1b\x45\x61\xdc\x21\x6c\x5a\xda\xab\x6b\xce\xe9\xe8\xa9\x86\xea\xef\xf8\x58\x9a\x8b\x7c\xac\xb7\x6b\xe4\xb1\xa2\xe5\x24\xb7\x6c\x68\x29\x36\xfa\xc5\x15\x8b\x02\x4f\xcd\xe9\x56\x43\xe4\x51\x54\x7a\x94\xaa\x09\x00\x4e\x24\x95\x37\xdd\x15\x16\x61\x8e\x03\x7c\x84\xc8\xea\xd3\xab\x75\x47\x18\xb0\xcb\x61\xcb\xc6\x4d\xd9\x63\x9d\x33\x8c\x7b\x53\x1b\x5e\xb5\xb5\x48\x83\xb1\x23\x60\xd5\x3a\xa9\x9a\xa8\x6e\x8f\xd9\x30\xef\x95\x68\x70\x7a\xfa\x3f\x2c\xee\x07\x37\xfe\x76\xe0\x91\x18\x28\x66\xa3\xee\x76\x0d\x9b\x89\x98\x49\xd1\x23\xc7\x2f\x5c\xa0\x95\x15\xe8\xe4\x29\xb6\x6f\x42\x99\x76\x0d\xac\x67\x2c\x0a\xbb\xa1\xf3\x84\xc7\xbf\x19\xd4\xbe\xf8\xda\xd6\x79\x14\x97\x9d\xd8\xdc\xfc\x7e\x47\x5a\x0e\x74\x8b\xfb\x8d\xa0\x98\xe5\x58\x22\xde\x19\x7a\x8c\xe2\xac\xda\xcb\xbf\x85\x26\x00\x7c\x7c\x8a\xd2\x39\x3c\xfb\x35\xed\x1d\xf9\x35\x84\xb3\x8e\x26\xfd\xda\xcc\x02\xc7\xf3\x77\x21\x28\x82\x68\xf4\x6d\x32\x1e\x46\x90\x7d\x02\x6b\x32\x5a\x2d\x77\x8c\xb4\x5b\x64\x40\x4d\x8a\x78\x3e\x6b\x81\xaa\x92\xac\x91\x7d\x2e\x22\xb9\x93\x84\x53\xba\x94\xe8\x0b\x5f\xf1\x4a\xb3\x45\x28\x8c\xc2\xc1\x2d\x55\x04\x5c\x22\x91\x33\x67\xc7\x70\x03\x03\x49\xe4\xac\x9e\x56\x0d\x74\xb9\x89\xd0\xbf\x0c\xec\xe2\xa2\x22\x9b\x5e\xf4\x83\xc7\x74\x8a\xcc\x3d\x83\x78\x2d\xea\x4f\x90\xff\x12\x16\x82\x6f\x84\xd8\xd5\xf0\x52\x1b\x6f\x84\x3d\x5e\x46\x80\xa4\xb2\x0b\x02\x9f\x8c\x19\xbe\x86\x9d\x64\x52\xb5\x6a\xaf\x05\xaa\x49\x8f\x75\x6b\x45\x20\xae\xe6\x9c\x60\xcf\xa8\x56\xb4\x95\x7e\x1f\x33\x9a\x93\x26\xed\xc9\xa9\xb7\xaa\xa6\xe9\x9b\x66\x98\xaf\x4e\x29\x3c\xf5\xa3\x40\xe9\xca\x42\xdc\x1a\x64\x05\x96\x9d\xe6\x7f\x68\xf8\x7d\xf2\x78\x29\x53\x38\x30\x5b\x6f\x27\x69\x53\x04\x6e\x9d\x48\x74\xf1\xc5\xae\x79\x5b\xb5\x16\x8e\xb9\xdd\x26\x47\x6a\xe3\xdd\xba\xc5\x38\x14\x0a\x42\x19\x5e\x9d\xa9\x77\xc3\x4e\xb7\xe6\xbb\x2d\x41\x33\x94\x0d\xa5\xc2\x1e\xc0\x2c\x87\xc6\x2d\xd3\x95\x95\xbb\x0a\xd2\xeb\x4a\x91\x54\xa2\x26\xc1\xf4\x7e\xbc\x15\xe1\xfa\x57\x94\x4a\xa3\x10\x2d\x0b\x58\xcc\x10\x56\xf3\xb1\x22\x24\xfd\xd2\x3f\x78\x8d\xfe\x0a\x31\xe6\x1a\x2e\x84\x4f\x94\xa8\x5f\xd7\xa4\xad\xdd\x3e\x3c\x78\x14\x68\x5f\x64\xca\x23\x45\xb0\xd1\xd3\xa5\xfe\x12\x4f\x1c\x63\xf4\xb2\xde\x45\xfe\x2f\x45\x2a\xbd\xa2\x61\xfc\x30\x6e\x4d\x8e\x89\xef\xab\xdc\xe8\xaa\x72\xfa\xbb\x4a\x1a\x28\xfc\x47\x4a\x55\xa1\x15\x9a\x5e\x12\xb7\xa0\x97\x29\x85\xc6\x31\xc7\x18\x5f\xc5\xef\xda\x30\xc6\xcc\x44\x1b\x06\xb2\x3d\x3e\xae\x62\x79\xb4\xc2\x94\xad\xcc\xaa\x7a\x8e\x64\x1b\xe8\xc4\x66\x45\x34\x9d\x78\xc9\xc1\x5d\x60\x67\x7d\xa8\x2c\x34\x6a\xa5\x5a\x67\x11\x12\x2e\x87\x76\x45\xd2\x00\xc4\x28\xd7\xb5\x36\xf3\x5d\x5d\x1c\xf9\x49\x49\x39\xc1\x39\xdd\xd8\x66\x12\xb7\x76\xf9\x30\x16\x41\x8a\xc3\xe7\x7f\xe9\x17\xbc\x83\xfe\x2f\xca\x4e\xf8\x90\xde\x24\xba\x6f\xfe\x97\xa1\x62\xf9\xdf\x2c\xa1\x00\xc5\xe6\x9d\xb4\xdb\x21\xa4\xc2\xdd\x00\x7a\xb1\xe1\xba\xe6\xff\xe7\xbd\x58\x5d\x81\x66\x3e\x72\x95\xe6\x66\x12\xe7\x61\xec\x33\x45\x0c\x9c\x0b\x18\xcf\x7c\xa2\xf8\x8a\x2c\x48\x1e\x77\xd0\x9a\x89\x12\xe3\x9b\x34\x80\x44\x0c\x5b\x75\x40\xfd\xc8\x6d\xc7\xc6\xe6\x36\x8d\x0d\x89\x44\x09\xd0\x57\x73\x22\xab\x77\x86\x7e\xf9\xfc\x13\xe5\x2c\xdf\x33\x91\x6d\x03\xd0\xac\x29\xe9\x54\x78\x87\xf1\xf1\xd0\x77\x1f\x2f\x27\x21\xef\xe2\xc8\x9b\xee\xe1\xe5\xf0\x49\x45\x2a\x19\x59\xd3\xda\xa5\xbc\xc4\x90\xb3\x8a\x09\x84\x37\x2a\xbd\xa3\x14\x39\x90\xa7\x83\x85\xc5\x6d\xcb\x12\x94\xe8\x95\x2b\xee\x64\xcf\xd1\x06\x2c\x6a\x22\x2a\xc9\x3a\x41\x5f\x8d\xa0\x94\xa3\x5c\x3c\x87\x37\x75\xb4\xf5\xa3\x40\x05\x24\xbc\xdb\x63\x55\xbe\x11\x78\x39\xee\xf7\x28\x07\xc2\x3a\x7a\x96\x18\x3b\xe2\x1d\xab\x24\x7b\xae\x61\x33\x16\x5e\x86\xa2\xb7\x9e\x67\x40\x0e\x6b\xc7\x71\xda\xff\xb5\x88\x26\xb6\x96\x6b\x0a\xc1\x7a\x08\xbc\xc8\x8b\x3e\xba\x97\x95\xa4\x79\xc7\x74\xec\x1e\xda\xd2\x59\xf9\x53\xf1\x8a\xaf\x0e\x7d\xfd\xf3\x1d\x7a\x83\x42\x04\xa3\x27\x80\xa7\xce\x8d\xd2\x28\x32\x6c\x0d\x15\xfa\x5a\x6b\x28\x16\x17\x33\xc9\xf8\xc4\x35\x32\x75\xad\x69\x65\x53\xbe\xc2\xf5\x00\x5f\x0d\x56\xf4\xd6\x50\xf9\x7d\x1c\xc3\x00\x17\x8f\x77\xfa\x6a\xfa\xd1\xdf\x7c\xa6\x51\x85\x23\x26\x45\x06\x93\xb6\x14\xab\x8c\x5b\xdb\xf9\x44\x59\xdb\x10\xe1\xb6\x49\x9b\x0a\x02\x08\x21\x6f\xfb\x9a\xfc\x46\xb0\x5d\xb3\x66\x66\xc1\x69\xc1\x74\x93\x04\x3a\x8c\x8e\xaa\x5c\x3c\x6f\x29\x86\xd5\x94\x34\xcc\xf3\xca\xfa\xab\x98\xfb\x36\x6e\xae\x6a\x1f\x2c\xfa\x63\xa9\x7e\xbd\xe8\xa9\xa8\x61\x96\x27\xa9\x98\xf4\x7b\x33\x99\x3f\x56\x11\xdf\x1f\xeb\x3a\x0e\xf1\x45\xf7\x68\x7f\x13\x5c\x93\xf8\x31\xa8\xca\x21\x37\x4f\x8a\x44\x95\xaf\xd1\x5c\xa1\xdb\x17\x23\x20\x7a\x13\xc0\x8a\xcf\x80\x7a\x20\x3e\x0f\xb4\xc1\xf3\xbf\xf8\x76\x99\x30\x1a\xe4\xc2\x3e\x40\xad\xf4\x27\x63\x8d\x3b\x4a\x64\xf1\xff\x2b\xb5\xc2\xcd\xbd\x72\xa8\x6e\xfa\x7d\x93\x9a\x5c\xcb\xf0\xbe\xab\x82\xf7\x77\xdd\x4f\x29\x91\xed\xd7\xf9\x36\xae\xe9\x59\xc9\xac\x24\x29\x7a\x57\x54\xb3\x7b\x83\xac\x58\x87\x11\x51\x00\x64\xbe\x45\x17\xcb\xc7\xa5\xcc\x6b\x6e\x7e\x0e\x76\x9e\x9c\x79\x61\x2d\x78\x27\x50\x0b\xc3\x3b\xda\xa5\x64\xc9\x3e\x5d\xcc\x73\xec\x8d\x1f\xd1\xde\x8b\x04\xef\x1e\x2e\x14\x73\x7e\xdf\x48\x15\x5b\x77\x8d\xbc\x6e\xda\x1e\x6a\x71\x77\xc5\xaa\x03\xbc\x5a\x9e\xfd\x8f\x40\x08\xc1\x6c\x7b\x34\x54\xa5\xe6\xa7\x94\xe0\xca\x35\xa6\x2a\x63\x59\x7b\xa8\xd4\xc4\x6e\xe9\x5a\xc9\x5f\xd2\x64\x47\xae\x05\xd5\x5c\x26\xd4\x55\x59\xa6\xb6\x07\xde\x7c\x42\x6c\xf4\x75\xc7\x72\xe9\x81\xbd\x72\xa8\x9e\x0e\xbc\x74\x01\x22\xc7\xf7\x55\xd3\x07\x22\x4a\x51\x68\x73\x7d\x8e\x61\x7e\x74\x75\xc2\x53\xbc\x11\xc3\x08\x1a\x47\x8f\x4b\x28\x84\x15\xed\xb5\x1d\x9b\x23\x34\x06\x4b\xe6\x42\xa0\x24\x2b\x10\xe7\x8b\x27\x9c\xb6\x7a\x54\xe4\x9b\x46\xb9\x98\xf5\x7a\xbd\x05\x1d\x4b\x2f\xf4\xf2\xa6\x92\xdd\x7b\xd3\xd5\xd2\xb3\xbe\xc9\x7a\x63\x1e\x56\x1f\xa8\x6a\xf0\x07\xa5\xc0\x83\x9c\x78\x2d\x8d\x79\x09\x6e\x9d\xc1\x93\xb3\xf4\x3a\xa1\x7a\x0b\xe2\x64\xa5\x6b\x53\xb0\xcd\xb0\x11\xb3\x44\x27\x9f\x28\x34\x17\xbb\xa1\x6b\x9c\x3a\x30\xeb\xac\x71\xcb\x61\xc9\xa1\x7a\xd6\x4c\x4d\x6f\x31\x82\x58\x93\x20\x51\xf4\xcd\x58\xdf\x90\x37\x8b\x59\xe8\xb3\x8a\x66\x1a\x45\xa6\x9f\x71\xa1\x75\xcc\xe2\x96\xf5\x76\x87\xfe\xae\xfe\x89\xa6\xbb\xb3\x2c\x31\xfb\xfb\x38\x1c\x2a\x4f\x6d\xf1\x14\x1d\x61\xdf\xf5\x8f\xbb\xc6\xdc\xb2\xe7\xd0\x81\xd9\x7a\x27\x2a\x46\x8d\x16\xd1\xa5\x4f\x88\xa0\x6e\x05\xa4\x94\x0d\x7a\x3d\x9b\xb6\x93\x68\x69\xd2\x8b\xb7\xff\x29\x8d\x68\xe7\xf3\xa3\x34\x8f\x94\x94\xca\xa6\xe7\x4e\xd8\xd5\x84\xf5\x93\x45\xae\x44\x79\xa7\xd4\x46\xde\xd7\x7b\xa2\xe1\x7b\xad\x63\xdb\x49\x72\xe4\x33\xd9\x6e\x25\x6c\xa5\xe5\xa1\xdf\xa4\x1a\xa8\x53\xbc\x72\xdb\xf0\x7d\x3c\xc2\xb1\x9e\x5f\xec\x1d\xb7\x55\xe1\xfa\x82\x6a\x0d\xb0\x26\x5b\xdd\xed\xe1\x89\xef\x0d\x95\xbc\x0b\xe4\x9e\x65\xb7\x53\x6d\x0b\xbf\xaf\x29\x94\xf7\x18\x89\xc0\xdd\x03\xfc\xc3\x66\x7d\xbe\x54\xd4\x29\x56\xc9\xa5\x38\x59\xa1\xac\x0b\xf3\x77\x1d\xbf\xc8\x27\x4a\x78\xce\xf6\x88\x02\xae\xdc\x1d\x4f\xaa\xa2\xc2\x49\x47\x6c\xe8\x35\x5b\x49\x6c\x22\x6c\xeb\xd2\x2e\x45\xd7\xc7\x27\x5a\x8f\xa4\x9f\x1a\xf6\x22\x13\x5e\x9e\xa2\x91\x6d\x8c\x6b\x08\xd2\xd3\x63\x55\x9f\xa1\xf2\x6b\xb8\xa1\x6d\x73\x97\x1d\x3e\x85\xb9\x04\x0c\x99\x8f\x4b\xf7\xff\xda\xcc\x42\x11\x62\x6d\xf3\xf5\xa0\xeb\x11\xf5\xaa\x8a\xda\x60\x3a\xe8\xb1\xef\xb1\x07\x3d\xce\xe0\x8a\xa4\x4e\x58\x49\xf5\x89\x57\x6b\x8a\x7a\xfc\x03\x35\x4e\x7e\xa0\xd8\x8a\x59\xd8\x35\x71\x32\x58\x9a\x50\xee\xc3\x1b\xc3\xda\x97\x67\x78\x45\x40\x8b\x8e\x48\x88\x2a\xb1\x7d\x27\x37\xe9\x14\x3c\xd1\x49\x8f\xec\x84\xe1\x57\x46\xc0\x5c\xd3\x66\x6e\xb2\x0c\x55\x07\x84\xbe\x20\xd1\xf1\xf1\xf0\x71\x7d\xf4\x36\xcb\xc3\x9e\x11\x3f\x4f\x64\x53\x4f\x37\x94\x08\x06\xcf\x40\x0c\x4f\xd6\x72\x15\x75\x0e\x25\x00\x25\x9a\xff\x35\x55\x21\x1d\x6b\x7b\xd2\xd1\x7f\x12\xb5\x77\x6b\xd7\x70\x54\x01\x1d\x88\x51\xfc\x38\x36\xa7\x7b\x98\x68\x7c\x32\x54\x38\xcd\x5b\xc1\x58\x87\x96\xea\xc3\x55\xda\x26\x36\x8a\x06\x91\x49\xb1\x46\x8a\x7c\xbd\xaf\x0f\x3c\x4d\xb9\x0a\xb6\xfd\xa9\x91\x5a\x40\xde\x0b\xbc\xb5\xef\x86\x5a\x74\xc9\xcc\xb9\xc9\x46\xf7\xe2\x4c\xe5\x3b\x59\x2f\xa8\x64\x2b\x4d\x22\xfb\x84\xc2\x42\xb9\x47\x03\xb8\xfb\x7d\x85\x96\xdd\x24\xe5\x32\xfe\xff\x7a\x9a\x7c\x80\x65\x89\x29\x18\xf4\x32\x55\xef\x8e\xac\x04\xa7\x9d\xda\xbf\x8d\x73\x9b\xe6\x26\x8c\x25\xa1\x27\xf6\xd9\x9f\xc0\x46\x02\xa9\xea\x43\x7c\x25\x56\xc6\xc9\x91\x9f\xbd\xab\xc9\x20\xee\xa0\xfd\x4a\xf0\x05\xbc\x1f\x34\xf2\x80\x32\x2c\x22\xab\x74\x57\xd8\x71\xa0\x05\xe0\xfc\xe0\xfc\x56\x74\xac\xaa\x49\x6d\x71\xd0\x31\x8b\x49\x82\x3a\x3c\xe7\x64\xca\x97\xe1\xec\x18\xb0\x97\xac\x32\xdb\x1e\xaf\xe4\x16\x42\x5f\x3e\x71\x00\x46\x98\xf5\x4c\x18\x85\x35\x4f\x38\x60\x43\x22\x3e\x51\xd8\xe6\x20\xb3\xd9\x5e\x2d\x1d\x74\x6c\xa8\x1c\x14\x90\xc3\x39\xb7\xc3\x62\x11\x91\x26\x14\x8a\xee\x5c\x77\xca\xab\xfb\xbd\xbf\xa8\x53\x70\xf8\x2b\x3d\x1a\x59\x72\x0b\x37\x75\x51\x43\xc0\xc7\xfd\x75\x17\x2f\x2b\xec\x29\xb7\xdd\xb7\x95\x03\xdf\xdb\x6e\x57\x7e\x63\x90\xe5\x61\xdb\xcb\x2a\x38\x10\xcb\xc5\x53\x1e\x7f\xef\xf6\x92\xb8\xc3\xb8\x29\xe2\xbc\x4d\xdd\xdc\xbb\xe9\x7e\xbc\x9d\xa4\xb6\xc7\x11\xb8\xec\x0e\x3e\xec\x5b\x57\x18\x97\x59\x31\xab\x7b\x08\x9c\xc6\x98\x59\x1b\x02\x63\xe7\xb3\x60\x8c\x21\xe9\x13\xcb\x53\xc0\xd3\xa5\x66\x4a\x4f\x00\x0f\xed\x5f\x63\xf4\x20\x12\xb9\xaf\x14\x60\x26\x08\x24\x05\x48\xf6\xb0\xba\xf9\x9a\xd4\xb4\x5c\x1d\x0b\x35\x3a\xc1\x63\xfc\x6b\xce\x93\x95\x78\xca\xe7\x87\xb7\x15\xdc\xfc\x3d\xaa\x16\x38\xeb\x67\x17\x02\xef\xa4\x90\x9f\xff\x46\xd5\x0c\x9b\xdd\x30\xea\x99\x74\x89\x9f\x29\xf6\x91\xbf\xd0\x92\x88\x7f\xe1\xd5\x4e\x4d\xd6\x32\xbf\x52\xf3\x51\x0c\x0b\xd2\xf0\x49\xa9\x56\x4c\xf2\x60\x59\x98\x92\x76\x9b\x87\xe6\xae\xa9\x46\x4f\x74\xb3\x63\x48\xde\x73\xb5\xb3\x76\x98\x1f\xcd\xc2\x5e\xaf\x48\x9f\xc7\x25\xee\x55\xcf\xee\xc5\xaa\xdf\xcb\x62\x93\x37\xbb\xde\x30\x15\x2f\xe4\xc7\x5a\xa9\xf7\xc7\x8f\xe5\x4b\xe4\x66\xc9\xa2\x85\xb7\xf8\x6b\x3c\x2b\x48\x60\x63\xd5\xdd\x45\x42\x4b\x28\xd1\x5c\x55\xac\xd0\x41\x2c\x1d\xb6\x2d\xdd\x98\x7b\x86\x5e\x3d\x1f\x57\x76\x9d\x27\x83\xd4\xb9\xa0\x8b\xac\x1d\x4d\x32\x3e\x29\xe5\xb1\xd3\xd3\xf5\x24\x0d\x6d\x9c\xb3\x3f\x19\x56\x80\x4d\x4d\x14\xdc\x54\xc2\x3b\x3d\x13\x0f\xda\xa6\x99\x0f\xa4\xe5\x01\xe8\xf4\x0d\xcd\x0e\xbf\xa1\xd0\x5a\x1b\x77\x25\x17\x19\xf3\xb6\x3c\x24\x27\xa5\xd4\xed\xa5\x97\xea\xdd\x24\xcd\x13\xe6\x02\x20\x6b\xff\x1d\x9a\xba\x7c\x5c\x0a\xa8\x0f\x1f\xae\x47\xe1\xa2\x4d\xcd\x84\x17\xa4\xfc\xf5\x93\xd4\x52\x89\x2c\xe9\x56\xa0\xbb\x47\x5e\x50\xe9\x40\x9c\x25\x51\x48\x3d\xc0\x13\xde\x8c\x1b\x85\x3a\xb1\xf2\xd4\xd0\x33\x19\x16\x4c\xea\xe7\x34\xe6\x87\xe9\x1c\x6f\x47\x98\xe3\xf2\xfc\xb6\x03\x33\x45\xd8\xb5\x98\xc4\x2d\xb6\x29\xd7\x4d\x7f\xcc\xee\xe7\x13\xb7\x29\x47\x61\x96\x47\x52\x12\x12\x5d\xd2\x9a\x73\xcc\xba\x87\xe5\x16\x48\xc8\x45\x6d\xc6\xf6\x85\x19\xf0\x9e\x45\x79\x4a\x4d\xaf\x6b\xe5\x96\x8c\xf9\xb9\x7a\xd6\x35\x7d\xce\x1d\x11\xcf\xb3\xb8\x17\x9f\x28\xd6\xbc\x19\xb4\xc2\x64\x92\x36\x68\x66\xac\xd0\xd3\x90\xee\xd8\xe2\xea\x9c\x11\xd4\x01\xcf\x5e\xad\xe8\xbb\x67\xd5\x28\xad\x5b\x7d\x5b\x11\xe9\xaf\x28\x92\xc1\xc7\x6e\xe1\x6e\x47\xd6\x64\x14\xb8\x8b\x8b\xb6\x6a\xa6\x39\xa1\xca\x6e\x6d\x13\x35\x8b\x74\x75\xde\x1b\x8a\x78\xe6\xd0\xc9\xd2\xf5\x1c\x98\xad\x67\x83\x38\x0d\x33\xab\xaa\xec\xd7\x54\xed\xf6\x5a\xe9\x23\x87\x0f\xd7\x9b\xd1\x20\x17\x49\x14\x97\xad\x78\x2b\xb2\x62\x21\xd2\x7c\xbe\xcf\xd7\x5f\x9b\xd3\x04\x62\x60\x26\x52\x27\xde\xe7\x9f\x71\xeb\x89\xe2\x1f\x9c\x9c\x41\x31\x50\x10\x1b\xfe\x30\x18\x2b\xa2\xd3\x3b\x72\x8d\xad\xc5\xa6\x2f\x19\x3d\x0d\x6c\xe9\x6c\x1d\x97\x67\x50\x5e\xe5\x5e\xb6\x29\xb7\xec\x75\x8e\xb2\xf3\x07\x1c\xd3\x48\x2f\x84\x02\xbb\x9e\xa2\x11\x38\x66\x70\x09\x6c\x67\x5f\x89\xfa\x54\x6c\x45\xbd\x01\xeb\x6e\x00\x64\x1f\x29\x67\xe2\x51\x85\x10\xe4\xa1\x7a\xd6\x85\x92\x93\xd0\x05\xe9\xe2\x05\xa7\x54\x5a\xac\x7f\xae\x55\x37\x21\xa7\x04\x32\xa2\x54\x8f\x3c\xad\xf5\x11\xfd\xa8\x16\x7c\xe4\xff\x5f\x04\x84\xe3\x2f\x68\x7e\xff\xfc\x5e\x0d\x71\xd0\x0c\x13\xf7\x01\x0a\x75\x9c\xb1\xdb\x01\x07\xd9\x28\x2b\x81\x8b\xca\x54\xee\xcd\x40\xf9\x83\x7c\x1f\xbb\x39\x56\x7d\x8e\x74\xb4\xf0\xa7\x94\x0a\xb4\x18\x1c\x75\x52\x86\xb9\x8d\x56\x27\xbd\x9d\xef\x1e\xf4\x1c\xb1\x85\x07\xbe\x08\x0b\x1e\xfc\xd9\x85\xfb\xf0\xbc\x5e\xf0\x96\x6d\xec\xd4\x6c\x58\x2d\x14\x8b\x82\x48\x87\x96\xb1\xb4\x43\xf5\x6c\xc5\x9a\x1c\xe3\x15\xa0\x0a\xd2\x4a\x3e\x56\xeb\xcd\xa1\x30\x9e\x54\x03\xe1\x01\x46\x9f\x68\x3f\xfb\x8a\xce\x0f\x94\xc5\xdf\xa9\xe1\x67\x15\xcb\x0a\xae\x41\x04\x37\x50\x35\x08\x88\xc6\xe6\x58\x3b\x30\xc5\x56\x22\x28\xe9\xdf\x7d\xd8\xeb\x27\x69\x9e\x91\x68\x09\xf2\xe4\x1d\x8d\xda\xf4\x34\x97\x07\x58\xbb\x0e\x51\xc2\xc5\xa1\xef\x43\x66\x8a\x00\x32\x83\xdb\x04\xae\x49\xb0\xa4\xae\x1e\x5d\x72\xa8\x4d\x9e\x0d\x3c\xec\xbe\x56\x92\xe3\xa7\x3a\x62\x49\x8e\x1f\xbf\x75\x4b\xf5\xb7\xe9\xa2\xcf\xc5\x12\xd8\x46\x44\xe3\xa5\xd5\xac\x99\x1a\x72\x12\xf4\x4d\xa0\xdf\x1e\xfa\xb2\xf2\xb7\x95\xbc\x63\x91\xc8\x3f\x55\xdc\xaf\xeb\x4e\x73\x0c\xf9\xbb\x8c\x89\x60\x6b\xbc\x40\x68\x8d\x32\x60\xfe\x12\xe7\x1f\x54\xce\x93\x64\xe4\x99\x86\xef\x47\xf9\x6c\xc3\xd3\x9f\x58\x69\x16\x79\x6e\x6d\xa4\x1a\x99\xae\xd2\xb3\x63\x32\x2d\xc8\x23\x58\x77\x1e\x69\xc3\xb2\x3f\xa4\xb1\x89\x20\xa6\xec\x2f\xee\x3b\xd3\x62\x76\x13\x12\xa3\x2e\x0f\x49\xaf\x57\x41\x6a\xff\xae\xc6\x20\xe7\x4a\x91\x9b\x28\x4a\x62\x91\xa4\xaa\xfc\x5b\x3f\x9e\x5f\x9e\x7d\x79\xd2\xcb\xa0\x9f\x1a\xea\x0c\xa2\xb8\x8d\xb1\xe6\x38\x2c\xdf\x93\x8d\x0a\x2b\xe9\x22\xdf\x52\x99\xc3\x79\x95\x39\x94\x51\xa9\x83\x07\xeb\x24\xbc\x0b\xea\x26\x2e\xea\x9f\xd2\x84\x13\xbb\x34\x05\xd7\x9c\xf5\xae\x80\x2f\xb5\x56\x56\x61\xe0\x27\x09\xe9\xdb\x81\x2f\x78\xbf\xed\x10\xaa\x76\x94\x90\xb2\x1e\x06\x26\x26\xd8\x5b\x8a\x96\xac\x05\xaa\x4e\x3a\x5a\x4a\x33\x89\x06\xbd\x38\xcc\xc0\x69\xc3\xba\x7d\x42\xf9\x79\x9d\x28\x0d\xe1\x85\x57\x74\xbc\x48\x5b\x35\xab\xd8\x04\x63\x92\x36\x3e\xc2\xe2\x56\x2d\x55\x6d\xde\xd9\x18\x67\x92\x1f\x3c\xc8\x68\xe2\x75\x05\xfd\xf4\x4c\xda\x49\xa2\x90\xeb\xb9\x58\x0f\x7f\x4b\xd9\x1b\xfd\x96\xc2\xa4\x93\x41\x1e\x25\xc9\x12\xc9\x2d\x23\x7b\x00\xb7\x86\x8f\x55\xcd\xad\x99\x24\x7d\x9b\x92\x7f\x62\xa6\x4d\x48\x6e\x28\x52\xc0\x8d\x12\xa8\x5f\x84\x0f\x4c\xcb\x60\xb1\xf7\xa1\x82\x97\x3e\xd6\xfd\xdd\x69\x62\x5a\x1c\x32\x88\xc3\x4a\xcd\xd9\x41\x9d\x55\x5c\xbe\x64\x31\xb3\xd4\x30\x0c\x26\x25\x96\x5d\xce\x10\x59\x27\x64\xe8\x59\x0e\x77\x02\xcf\x09\x6a\x15\x61\xfa\x17\x5f\xf3\xcd\xc2\x07\xbc\x96\x72\x45\xfe\xb0\x6c\x9a\x4d\xe1\xb8\x8b\x0e\x83\x8a\xd6\xd7\xc7\x94\xdd\xd2\x65\x62\xeb\xb9\x82\xd4\x65\x5a\x56\x5c\x07\x84\x0b\x2e\xee\x2b\xa8\xf7\xa3\xc0\xd7\x31\x76\x8c\x7c\x97\xd1\x52\x98\x36\xbb\x8b\x36\xed\xc8\xa8\xd7\xed\x3f\xa2\x70\x44\xcf\x11\x85\xf7\xcd\x52\xc0\x30\xb3\x50\xef\xa4\x61\x4b\x3f\x21\x14\xe3\x50\xa0\x46\xf1\x46\xaa\xa6\x82\xfe\x2d\xa6\x89\xe4\x75\xac\x55\x1a\x28\x81\xed\xd3\x15\x52\x27\x87\xea\x83\x7e\xd7\x9a\x65\x08\xda\x4a\x62\x06\x4e\x0c\x1f\x2b\xcc\x38\xef\x86\x69\x0b\xc0\x97\xec\x16\x4a\x6d\x6b\xad\xa2\x97\x73\x96\xc9\x46\x2e\xcd\x86\xbd\x09\x1f\xbb\xee\x9a\xd6\x20\x6f\x76\x27\x71\xe5\xcc\xe7\x56\xca\x45\x30\x92\x72\x6a\x13\xae\x6b\xea\xca\x0b\xbe\xaa\x1d\x92\x8d\xba\xc3\xc6\x99\x2c\xc6\x27\x55\x74\xf0\x3c\x35\x24\xe6\x50\xf3\xd2\xb8\xc1\x58\x4b\xe5\xe3\x9a\x8c\xc3\xcc\x18\xd8\x20\x39\x6c\xc8\x3b\x53\xac\x97\x68\x38\x0b\xaf\xd4\x17\xd3\xd0\xb6\x69\xbd\x70\xfb\xad\xdf\x7b\xbd\xf1\x3e\x0b\x67\x16\x5f\x26\x8a\x22\x6a\xab\xbd\xa4\x05\xa8\x92\x34\x6f\x27\x51\x98\x20\x61\x60\xaf\x26\xc5\x10\xbb\x38\x7c\x51\x07\x49\xd4\xf1\x86\x5a\xbb\x63\x7a\xad\x29\xe3\xd6\xb5\x2a\x3b\x93\xc5\x24\x59\x5a\xb2\xb6\x2f\x48\xa2\x93\xb5\xf7\x59\x0d\x1c\xf5\x80\x7b\xde\x52\x46\x49\xb6\xe5\xf3\x1f\x94\x9f\x11\x5b\x63\x72\x4f\x8d\x3c\xe2\x7d\x43\xc5\x3b\x91\xed\x98\xa8\x88\x08\x9d\xfc\xf7\x4f\x28\xac\xc1\xca\xb9\xa3\x41\x61\x92\x98\xee\x14\xa3\x08\x68\xd2\x69\x07\x69\x65\x91\xe9\xf5\x00\x31\xcc\x79\x29\x26\xaf\xb4\x5f\x6e\xd9\x2b\x82\x41\x93\x35\xd3\x70\x51\xf8\x4b\xa2\xf5\xa3\xaa\x13\xcc\x5f\x12\x01\x56\x8f\x77\xdb\x5f\x19\x84\xfd\x9e\x8d\xf3\x27\x94\x4a\xd4\x24\xe2\x32\x91\xe6\xa6\x7c\x12\xb3\x1f\x32\xd4\x7c\xac\x99\x46\x08\x5a\xb6\x08\x60\xdd\xba\xae\xcd\xfd\x26\x9d\xb4\xea\xa2\x8d\x2d\xb8\x4b\xc4\x10\x47\xc1\x6b\x97\x12\xb6\xe6\x82\x8a\x93\x3b\x52\x9a\x0d\x8a\x37\x79\x5e\x2b\xf7\xc2\x7e\x19\x64\x10\x00\x38\x0f\x28\xc8\x42\x6e\x74\x81\xf0\x6f\x3e\xd6\xdd\xcb\x0f\x94\xcf\xec\x93\x0d\xbf\xc1\x98\x34\x0f\x71\x89\x11\x6a\x81\xac\x7b\xa0\xbc\x77\xce\x28\x2c\x25\x0f\x3b\xdd\x5c\x42\x41\xa7\x15\x55\x2c\x77\xa2\x14\x5e\x11\x48\xa4\xe1\xb2\x89\xb0\x28\x3a\x29\x0f\x57\xff\xfb\xb6\xd2\x16\xff\x49\xa0\xac\x76\xd0\x60\xd0\x22\xb5\x53\xce\x22\xf0\x62\x24\xa5\xa0\xbb\x73\x79\xe4\xf4\xb4\xcb\x23\x7d\x38\xfa\x86\x39\x7a\x14\x23\x4b\x1a\xba\x6b\xbe\xb9\xdb\x2d\x64\x8b\x51\x18\xb7\x94\xe4\x10\xba\x69\xf8\xb8\x4a\xf3\x81\xf6\x9d\xa6\x60\x5c\x48\x5a\x2e\x8e\x89\xdb\x57\xc1\x78\x87\x48\xe2\x25\xb5\x39\x43\x1b\x4e\x95\xc4\x2b\x94\xe8\x3e\x79\x5b\x84\x47\x03\xd9\xf6\xd9\x1f\x4a\xd5\xc6\x37\x4a\x57\x36\xb3\xc0\x52\xef\xc5\xc6\xe0\x35\x85\xd0\x18\xcc\xc7\x55\xcd\xe9\xed\x30\x8f\x6d\x86\x2d\x82\x33\x42\xca\xcb\x25\x3b\x7c\x56\xa5\x46\xed\x30\xb6\xe9\xaa\xd2\xfc\xdd\x18\x73\xa1\x7b\xca\x81\xaa\xf9\x20\x65\x38\x0f\xb0\xed\x35\xed\x9d\x7d\x4d\xf5\x27\x9b\x38\xc9\xbb\x36\x7d\x9e\xde\xad\x6a\xa1\x7e\x9d\x03\xa7\x4f\x68\x78\xcb\x00\x29\x46\x83\x63\xea\x7a\xe9\xc1\xb7\x69\x6d\x91\x56\x59\x9a\x8c\xb2\x54\x13\x10\x81\x8c\xef\xe3\xa0\xf6\xd2\x4b\x4e\x0d\x89\xa6\x1e\x56\xba\x5a\x03\x2f\xcf\xd9\x9f\xcc\x0a\xd5\xee\x41\xa0\xbc\xa8\xf7\x8e\x94\x73\xcc\x5d\xca\x34\xb0\xb3\xbf\x15\x28\x85\xe7\x75\xa4\xe9\xfc\x57\x5a\x66\x11\x46\x8b\xc8\xe5\x76\x8c\x3e\xa3\x94\x9e\xd2\xec\xc9\xe2\xdb\xd0\x64\xfc\x57\x40\xd2\x44\xc6\xdf\xfb\xf0\x7d\x3d\xd0\x72\x4e\x43\xe5\x89\xc1\xdd\xc5\xf8\x97\xdf\xc0\x50\x84\xb2\xc7\x97\x9c\xad\x79\x71\x53\x48\xbe\x6e\x05\x8a\xe4\xcc\x06\x85\x8e\xf1\xea\x94\x2f\x6e\xa8\x1c\x64\x71\xc0\xbe\x5a\x12\xf7\xf9\xd4\x7b\xbd\x04\x9f\xce\xbd\x72\xa8\xde\x4a\x8e\x5a\xd4\x29\x64\xb4\x2a\x37\x93\x0d\x35\xcf\x57\x92\xa8\xdd\x31\x52\x25\x41\xe4\x86\xd5\x87\x8f\x5d\x45\xa5\x9f\x34\x97\x6c\xbe\x48\x81\xb3\x9b\x32\xdf\x0a\x3c\x07\xe7\x5b\x43\x1f\x9a\xf4\x7a\xab\x2a\x82\xff\x06\xfd\x95\x38\x3e\x14\xc1\xa8\x48\xdf\x96\x31\x9f\xb9\xba\xe1\x62\xe8\x58\x62\x25\xf5\x1b\x49\x45\x4c\x6c\xa2\xd5\xa3\xae\xbc\x83\xdf\x41\x5d\x98\x8f\x2b\x7a\xe7\xea\xbd\xa4\x45\x42\x0b\x35\xcf\x4c\x06\x8c\x21\x0e\xb7\x2a\xb8\x15\x00\xd0\xe5\x41\x10\x4f\xe6\xe3\x86\x84\x20\x2d\xd3\xeb\xb3\x98\x13\xc2\x99\xf3\xaa\xb5\xf1\x7c\x09\xf7\x2d\x6e\xb0\x99\xf4\x7a\x36\x2d\x16\x7d\x5e\xc2\x5c\x47\x6e\x31\xbc\x44\x80\xbc\x02\x94\x6c\x87\x71\x64\xe2\xd6\xa4\x4f\x6b\x3e\xa1\xe1\x09\x14\x8a\x69\xdd\xe2\xda\x8a\x29\x05\x68\xee\x9c\xea\x32\xeb\x0f\x28\xd2\xa8\x15\x4b\xb6\x94\x42\x6b\xce\xa0\xf2\xb4\x4a\xc5\xba\xc9\x8a\x5d\xb6\xe9\x5e\xe5\x27\x7e\x55\x51\xef\x6e\x2a\x71\xe3\xeb\x4a\x77\xe8\xb6\x72\x17\x60\x76\x25\x26\xf3\x27\x98\x25\x78\x82\xff\x8c\x52\x05\x00\xf2\x6c\x70\x87\x59\xbe\x39\x54\x7d\x42\x55\xdc\x9f\xb9\x7a\x3f\x32\x71\xbc\x0d\x56\xd9\x50\xb4\x9d\x39\x3c\x09\xd1\x29\x53\xfd\xf1\x3d\x1b\x45\x99\xa2\xbf\x6c\xa8\x25\x01\x01\x12\x00\xfb\xad\x2a\xe1\xfb\x5e\xd8\xca\xc2\xa3\x45\x6e\xea\x80\xe0\x3b\x34\x7a\x30\x93\x39\x9a\xc0\x85\x7f\xaa\x82\xb4\x9e\x49\xc3\xbc\x08\x42\x5e\xdd\xef\xfe\xb4\xe6\xba\x77\xbf\x43\x0b\x2c\xf6\x07\x60\xcc\xfc\xff\x69\xb1\x45\xd0\xf8\xa7\x15\x24\xe3\x66\x34\x58\xac\xf9\x3b\x81\x0c\x04\x1f\x57\xf0\xb6\x66\xea\xf6\x48\xdf\xa6\xa1\x8d\x59\xe4\xc0\xc1\x95\xce\xf3\xe3\xca\xf0\x3f\x2e\x4f\x99\x66\x37\x4a\xd2\xa4\x1d\x0d\x92\x34\x69\x9a\x74\xd1\x49\x56\x49\x70\xa4\xe4\xae\xcf\xab\x1a\x60\xcf\xa4\xab\xc5\x60\xad\xd5\x94\x6a\xb7\x0a\xe0\x2e\xa9\x3d\x68\x31\x35\x4d\xd7\x55\x29\x92\xcc\xb4\x08\x8b\x26\xf3\xf3\x25\xb7\xc2\x2f\x7c\x05\xd9\x17\xa2\xf1\x4f\x11\x01\xf2\x49\x95\xa7\x50\x27\x91\x80\x01\x23\xf6\x44\xa0\xbc\x08\x4e\xb8\x74\x30\x0a\x7b\x28\x96\xe2\x45\xfd\x48\xbd\xdf\x1f\x95\x72\xb5\x99\x85\x7a\x6e\xe3\xb1\x24\xea\xfb\x6a\x2e\x7d\x5f\x35\x9f\xa6\x36\xa2\x4e\xdc\xe2\x37\xb1\xcd\xdd\x53\xe4\xef\x2b\xaa\xa1\xe2\x8c\x13\x8b\x32\xb1\xcd\xf2\xae\xcd\xc9\x97\x82\xee\xcf\x55\x70\x7d\x35\x37\xf8\xdb\x8f\xc9\xb9\xd8\x9b\x22\xf4\xf5\x4e\x6e\x16\xd3\x4a\x53\x6f\xab\xd8\xb6\x9f\x26\x6f\xd8\x66\x0e\x0b\x50\x40\x78\xec\xd5\xe6\x7c\x78\x5c\xb5\xaf\x46\x51\xb4\x73\x03\xf4\x6a\x54\x1c\x39\x63\xf3\x3c\x49\x2b\x04\xc6\xc6\xf7\x89\x03\x2e\xfa\x97\xca\x1e\x3b\x51\xd1\xaf\x93\x41\xf0\x92\x08\xa5\x2d\xe2\xf0\xe1\x7a\x3b\x49\x7b\x54\x16\x40\x5c\xc1\x86\x76\xec\x5b\x8f\xcd\x55\xd0\x0a\x05\x7c\x0b\xd3\x26\xd3\x3a\xe6\xd8\xeb\x9c\xfd\xe7\xab\x62\x23\x7a\x4f\xa9\x18\x3a\xcd\x0b\x8c\x38\x64\xee\xf7\x15\x13\xed\xfe\x38\x01\x23\xcb\x7f\x5a\xa1\xc6\xdf\xa2\xa8\x47\xbc\x84\x3c\xcb\xec\x01\x09\xc2\xf2\xd8\xba\x85\xfe\x15\x3e\x41\x8b\x1d\x50\xb9\x13\xb4\xc2\xb3\xca\x12\x46\x39\x0a\xb9\xd7\x40\x8c\x01\xe0\x73\x06\x71\x96\x98\x14\x51\xda\xe7\x64\xf3\xe7\xf7\xbb\x1a\xaa\x9a\xb9\x70\xb8\x16\x53\x5d\x5a\x49\x29\x39\xfc\xb5\x67\xc8\xed\x0f\xe0\x32\x00\x6a\x64\x96\xe7\x79\x4b\x71\xec\x3b\x6f\x33\x75\x13\xe3\x84\x4f\xb8\x9f\xd0\x4d\x7a\x6f\x2c\x77\x8a\x86\x90\x13\x50\x2f\x66\x23\x40\xb1\x89\x91\x97\xb2\xe5\x65\x02\x19\xcd\x4f\x94\xba\x49\xcf\xc4\xa1\x69\x62\xc3\x47\x96\x09\x37\x0f\x3e\xae\x62\xce\xb0\x31\x18\x36\x0a\xfc\xee\x93\x0d\xb5\x3d\x8d\xfc\x54\xbf\x55\x21\xb8\xf7\x7a\x91\x33\x84\x59\xce\x54\x57\xec\x7b\x13\x68\x12\xe0\x93\x91\x72\xfe\xcb\x32\x31\x3a\x52\x89\x2a\x3f\x35\x49\x5b\xcb\x2b\xf3\xac\x4a\x54\x15\xea\x33\x6e\x5b\xfe\xb8\x59\xae\x5c\xeb\x27\x6a\xca\x1e\xc2\xd3\xa4\x7f\x4d\xf3\x7a\xee\x29\x81\xaa\xbe\x89\x4d\x8f\x25\x12\x44\x9b\xa4\xa6\x44\x4b\x7c\xd2\xde\x0a\xb3\x66\x64\xc2\x1e\x27\x43\xce\x6f\xca\x75\x6a\x9d\xaa\xd4\xca\xc8\x4d\x1f\x38\x22\x37\x87\x05\x1e\xc9\xbb\x5c\x0a\x8c\xc8\x0c\xb6\x15\x9a\x3c\xf5\x2c\x77\x54\x2e\x80\x45\xf3\x71\xa5\x89\x6c\x37\x8c\xc2\x7e\x3f\x8c\x6d\x36\xa1\x9d\x26\x77\x34\x94\xa6\x34\x3b\x66\x60\xbc\x1f\x57\x2b\x73\x3f\x4d\xda\x61\xfe\x94\x2f\xbe\xee\xa4\x8a\x11\x7e\xef\x6d\x2d\xa0\xfd\x09\x12\x03\x0c\xb7\xf7\x35\x2d\xfd\x23\x9a\xd7\xa8\x65\xed\x22\xb7\x2c\xcc\xfd\xab\x40\xb9\xf9\x13\xc8\x07\xb0\xd3\x3f\x4b\x23\x0f\x05\x6d\x48\xb4\xb0\x1f\x0b\x66\x05\x16\x36\x60\x8a\x40\x22\xef\x8d\xed\x70\x2a\x4a\xb3\x47\x4c\x2f\x8c\xed\xae\xda\x97\xa5\x22\xb3\xae\x74\xde\xb9\x41\x88\xff\x41\x61\xa9\x97\x03\xe5\x40\x76\x7d\xa8\xbc\xc9\xae\x97\x62\x9f\xd9\xd9\x7a\x7f\x90\x52\x65\x0d\xc3\x05\x21\xdc\x9d\x40\x69\x6a\xde\x51\x25\xc0\x4e\x02\x4d\x2f\x46\xbc\x28\xec\xdb\xba\x1a\x28\xc1\x8a\x87\x5e\x77\xb5\x1b\x52\xcf\x77\x4d\xa5\x70\xa7\x95\x46\xf7\x69\xd5\x9f\xd8\x1e\x58\x94\x50\xb0\x76\xdf\x51\xa8\xf2\x9d\x52\xb8\x2f\x33\xa4\x67\x63\xba\x18\x76\xab\x45\x0c\x8a\x84\xf0\xee\x5f\x7f\xdb\x33\x0b\xf5\xa4\xdd\x26\x20\x60\xc2\x2f\xf6\xe7\xf0\x1a\x45\x97\xdd\x77\x30\xdd\x29\x89\x04\x92\x04\x34\x77\xc2\x09\x8d\x47\x14\x9c\x6a\xae\x0d\xff\x82\x02\x78\xda\x49\x02\x7d\x09\xa5\xd8\x11\x28\x41\xcd\xb7\xaa\x50\x87\x66\x14\xc6\x61\x93\x17\x0f\x2c\x4b\x10\x5e\xe5\xe3\x2a\xbf\x1d\xdb\x4c\xe2\xa4\x17\x66\x39\xcf\x18\xee\xab\xa2\xdb\xc1\x83\x67\x38\x18\x88\xf6\xad\x12\xa0\xb2\xf0\x4a\xdd\x74\x3a\xa9\x59\xa6\x74\xca\x9b\x2d\x05\x8e\x41\xf9\xf7\xc7\xc2\x41\xdb\x6a\xe1\x35\x17\x9b\x96\xc8\x58\x7a\x28\xee\x5c\x49\x44\xa1\x08\x59\x85\x3c\xc5\x21\xa7\xab\x4d\xb9\xca\xf6\x85\xc7\x24\x58\xf1\xb2\x4d\xf3\x70\x31\xc2\xfa\xa3\xed\xea\xf8\x58\xeb\xdc\x25\xcb\xb6\xb7\x08\x5d\x4f\x09\xc2\xe0\xcf\x86\x42\x31\x0b\x55\xf2\x3f\xe0\xed\xf3\xbf\x94\x96\xbd\x85\x57\xea\xb4\x52\xd6\xbc\x2c\xe8\x45\x95\x60\x96\x5f\x85\x2a\x76\x22\x04\x52\x31\x95\x0f\x97\x2a\x08\x33\x45\x06\x39\x48\xd1\x97\x25\x32\x19\xf4\x19\xd1\xc9\x90\x4c\xb9\x67\x9a\x5d\x42\x8d\x76\x29\xd1\xf7\x33\xda\x3f\xe8\xaa\x22\xed\x6c\x0d\xfd\xc2\xfb\x5c\x43\x19\x8e\x20\x53\x42\x90\xf7\xa8\xaa\xd7\xa8\x18\xe9\x99\x2c\x10\x88\x04\xce\x6a\x66\xeb\xd9\xb1\xba\x5a\xdc\x0e\x5b\xbc\x59\x16\x83\x00\x45\x62\xae\x93\xf1\x49\xa9\xaa\xee\xba\x5e\x93\x9e\xcd\xc3\x1e\x50\x02\x6e\xb5\xd3\xca\x1a\x97\x4a\x31\x63\x11\xa8\x87\xfc\x80\xb1\xb4\x3e\x54\xd4\xf3\x87\x0a\xb2\x8c\x93\x62\x29\x3d\x30\xeb\x69\x1e\xbe\x75\x6a\x2d\x50\xde\xc3\x6b\x43\x55\xa4\xe2\x72\xac\x80\x7c\xbe\x6a\xbe\xa1\x9a\xe9\x98\xcf\x17\xc6\x9d\x49\x0f\xe6\xdf\x51\x06\xe3\x1b\xba\x57\x88\x2d\x1c\xc1\xd3\x7a\xaf\x94\xd1\xbc\x36\x57\x6f\x93\x4a\xca\xab\xfb\x5d\x49\x9c\xde\x96\xd4\xca\x2b\xd0\x8f\x2c\xb2\x9c\xfa\xbb\xc0\xe2\xa2\x6a\x68\xba\xa8\x1d\x2b\x7b\xfd\x5c\x3a\xeb\xb1\x5f\x70\x8e\x0e\x10\x07\x71\x17\xc0\xbb\xf5\xa1\x68\xc8\x2f\x0f\xa2\xd8\xa6\x66\x31\x8c\xc2\x1c\x03\x93\x65\x2b\x02\x05\x87\x5e\xd2\x4f\x24\x0d\xe3\x66\xd8\x8f\x98\x48\x88\x34\xe3\x9a\x52\xe2\xb9\xa6\xfb\xd3\xda\xf9\xde\xe2\x6e\x91\xe2\xee\x69\x6c\x9b\x2c\xa2\x31\x77\x5f\x39\x3a\x3d\x85\x01\xec\x1a\x25\xa7\xa7\x99\x65\xf3\x4d\x6c\xeb\xd8\x7e\x39\x7d\x00\x9a\x7f\x5d\x73\xe5\x0f\xe3\x85\x08\xac\xa1\x83\x7c\xfb\x86\xa9\x79\x6e\x37\x88\x54\xd2\xa5\x51\x05\x0c\x27\xfd\x41\x24\x85\x73\x04\x58\xc0\xfa\xf8\xd8\x57\xf0\xdb\x6d\x1b\x67\x96\x44\x3d\x31\x9a\x34\xc7\xff\xd2\x63\x05\x14\xb3\x41\xca\x26\x91\x6c\xab\x38\xf4\x9a\x2f\xd8\x27\xb1\x02\x5d\x55\x4f\xf4\xe7\xfe\xfe\x7f\x3e\xa6\xf4\x5f\x24\x1a\xa2\x6f\xaf\x1a\x54\x62\xd3\xe7\xf5\xd7\xf1\x30\x94\xf4\x58\xa5\xf1\x5a\x98\x31\xbd\x48\xac\x2f\x6b\xca\xed\x52\xfb\x3d\xe6\x36\x6e\xd9\xd6\x94\xf2\x50\x9d\x18\x79\xa9\xf6\x0d\x55\x2b\x9b\x50\xc6\x4e\x48\xd4\x30\x9e\x1e\x05\xfb\xbc\xd7\xc1\xcb\x68\xe5\x14\x3e\x5a\xcd\xeb\xb4\x0d\x55\xcc\xfe\xa0\xca\x89\x62\xc5\x1a\xd8\x4e\x61\x83\xa8\x8d\xfc\xc6\x51\x6b\xc8\x5a\x9a\xad\xc6\xad\xb0\x69\x72\x74\x9d\x39\xde\x9e\x8b\x2e\x40\x98\xc1\xfa\xb5\x67\xe4\x9f\x74\x92\x77\x9f\x51\x6d\x50\x3b\x46\x94\xe0\x61\x97\x84\x2d\x29\x16\x95\xc9\x91\x22\xf9\xec\x18\x29\xc1\x96\xdd\x28\x7e\x61\xf8\x6e\x52\xbd\x85\x9e\xe7\x8b\xe0\xe5\x80\x7d\xc3\x16\xe8\xec\xf1\xaf\x9c\x28\x77\x8e\x7c\x73\xd6\x0e\xa0\xe8\xd2\x57\x5b\xbc\x74\xec\x09\x8f\x10\xd1\xa2\x03\xfb\xde\xd0\x8b\xd5\xee\xa6\x84\x10\x0e\xf3\x7f\xb7\x42\xcd\x60\xae\xde\x07\x67\x43\x2b\xea\x0e\x7d\x3e\xcf\x4c\x3d\xbc\xc7\x87\x2a\x03\x49\x6d\x7b\x10\x73\xb7\x82\xe6\x8f\x0a\x4f\xd4\x43\xf4\xed\x30\xed\x91\x6d\xbf\x73\x3b\x99\x9e\x71\xe0\x10\x3d\x19\xc4\x47\x1f\x62\xd5\x04\xac\x78\x5d\xcb\x54\xa0\xde\x80\x9c\xfa\x7f\x52\x4e\x38\xbb\x20\xc0\x27\x10\x8f\x02\x85\xde\x1a\x8e\x65\x40\xbd\x30\xcb\xc6\xec\x16\xef\xa8\xd2\xcb\x9d\xa1\x27\xd2\x9b\x74\x91\x3d\x70\x00\xc5\x02\x99\xe3\xe3\x4a\x92\x57\xcf\x84\x71\x3b\x35\x3d\xe9\x0f\x06\xb6\x7b\x71\xa8\x9a\xa8\x1f\x28\xf7\xb8\x2a\xe7\xbe\x9e\xc9\x6d\x2a\x09\xa4\xb4\x61\x6a\xee\xa2\xb7\x3b\x5c\x36\x2d\x8c\x5f\x11\xec\xa3\xd7\x2e\xe6\x47\x74\xe1\xd2\x7b\x54\xd1\xc3\xd5\xb5\x51\x5f\x45\x37\xe3\xf0\xf9\x18\x0c\x92\xb6\x9e\xaf\x39\x57\xd0\x29\x1a\x81\xba\xab\xd5\x49\x89\xf9\xae\x98\x5d\x18\xbf\xf8\xb6\x2d\xa2\x7b\x8d\xf9\xd9\x03\x46\xbe\x48\x0c\x4b\xd4\x1c\x36\xe1\xc0\x28\x22\xc4\xb4\x25\xbb\xf2\x6b\x31\xe8\xa4\x4c\x41\xf0\x88\xa8\x90\x52\x0c\xea\x02\xf1\x03\x63\xdc\xd8\x2f\xf1\xb4\x7e\x93\xea\xe8\xf8\xc5\xab\x88\x02\x50\xda\x7e\xb2\xe1\x73\xeb\xd1\x50\x71\x4d\x76\x8d\xb6\xaf\x85\xd3\xd3\x48\x20\x38\x28\x42\x84\xc5\x90\x38\x9f\x94\x68\xb2\x07\x0f\xce\xd7\x97\x4d\xca\x7d\x72\x55\x3c\x5d\x1f\x54\x77\x93\xac\x1f\xe6\x26\xda\xa5\x64\x9e\xb6\x34\xbc\xc7\x2d\xab\x7c\x82\x27\x82\xf2\x1d\xd3\x32\x5d\x0b\x44\xf1\x78\x58\x92\xad\xaa\xf2\xd0\x0a\xb3\xce\x80\xb7\x2f\xcc\xa1\x75\x65\xff\xb1\xae\x46\x7f\x3f\x49\x97\x00\xb0\x01\x6e\x81\x67\x1e\xdb\x5d\x29\xa9\xfa\xf2\x36\x29\x5b\x59\xdb\xae\xec\x56\x53\x7a\x72\xe4\x77\xaf\x9f\xa2\xc5\x4e\xa6\x27\xa1\x5c\xf2\x54\x7c\x5d\xe2\xa2\xf2\x1a\xe5\x39\x84\xd5\xf5\x92\x0b\x70\x3a\x49\xd2\x5a\x09\x23\xae\x8a\x63\x21\xd0\x9b\xcd\x23\x3c\x37\x59\x23\x7d\x78\xb8\x98\x44\x2d\xbd\xb1\xd1\x0d\xc9\x26\x37\xee\x35\xb9\x62\xc3\x4e\x37\x07\xf2\x84\x91\x03\x30\x0d\x3b\xec\x2d\xd5\x4e\xb7\xae\x6a\x05\x8b\x51\x98\x1f\xe5\x78\x08\x0f\xed\x9b\x81\x7f\x80\xdf\xf4\xb4\xa5\x24\xe9\x91\xac\x9b\xf4\x1e\x15\x73\x82\xc1\x64\x84\xa9\x52\xa6\xd5\x40\x8a\x6f\x2f\xe9\x13\xbd\x85\xb5\x1a\x8a\x91\x86\xb6\x4d\x16\x66\xe2\x93\x52\x72\x25\xaf\xa8\x99\x0c\xe2\x26\xd3\x19\xf1\x3b\xac\x2b\xcd\x27\xc3\x3d\x61\xbd\x9f\xda\xf6\xcf\xd5\xc3\x9f\xa6\x07\xa0\x06\xdd\x0c\x6f\x56\x17\x87\x13\x87\xfe\xe1\x97\x3d\x33\xe0\x97\x7e\xc1\x6f\x3d\xae\xf3\xe8\xc9\x86\x37\xf6\x7e\x96\x74\x92\x51\x56\x15\xbd\xb9\x3b\x81\x6a\x53\xd8\xd7\x50\xb1\x1b\x24\xa4\xb1\x01\xfd\x8d\x46\xed\x17\x0f\x71\xe0\xf8\xcf\x69\x74\x20\xf0\xbf\xc6\xd8\x1c\xc6\xca\x0b\x23\xc2\x60\xf1\x40\xb7\x10\xd1\xcb\xfc\xa8\x7d\xf1\x35\x0e\xac\xfe\x8c\xc6\x3d\x56\xe8\xe7\xa8\xff\x49\xd4\x9d\x8a\x3d\x19\xeb\xd8\x29\xda\x9e\x10\x0e\x3e\x1c\x2a\xb7\x9b\xa7\x41\xc8\x11\x8d\x14\x02\x80\x85\x42\xae\xe0\xd4\xad\xa1\x17\xc1\xfc\xfe\xdf\x1d\x3d\xa9\x5c\x0a\xc8\x0b\xc6\x99\x40\x52\x0d\x0d\x6b\xd4\x16\x1e\x8b\xb8\x43\x7a\x15\x69\x40\xf5\x88\x22\x3e\x52\xaa\xde\x83\xd8\xac\x98\xd4\x82\x7a\xf0\xea\x7e\x2e\xf0\x61\xcf\xe4\x63\x17\x95\xb6\x4d\xda\xb3\xa9\xa0\x6b\x48\x6d\x26\x75\x78\xf2\x50\x31\xf3\xce\x3e\xdb\x78\x5e\x67\x7a\xac\x1d\x5e\x03\x2a\xec\x92\x95\xe2\x41\x48\x40\xe9\x43\x42\xd3\x6c\xda\x22\xf5\xd8\xed\x03\xd3\x5b\x18\xcf\x00\xba\x2f\x0c\xc7\x74\xbc\xc7\xf5\xcb\x6b\xca\xde\x90\x1e\x13\x77\x61\xe2\xd1\x20\x59\xb8\xaf\x6a\x0f\xcd\xc8\x64\x59\xd8\x86\x42\x11\x2a\x06\x70\xcc\xe4\x63\xe5\x0a\x90\x0d\xd2\x7e\x1a\x66\x36\x9b\x52\x05\xcd\x4d\xda\x89\x58\x18\x27\xd0\x0d\x84\x27\xb4\x5e\x09\x62\x21\xd1\xcf\xa9\xd8\x24\x6c\xde\x8d\xd9\x68\x54\x94\xe0\x14\xb1\x13\x1f\x07\xd3\xe1\x41\xa0\xcb\xb3\x83\x8c\x8d\x41\xc4\xa5\xfc\x98\xb6\x29\xb8\xa8\xaa\xe1\x1b\x5a\x1f\x1a\xed\x67\x00\xe7\xca\xea\x54\xaf\xcd\xef\xaf\x2f\x26\xd6\x41\x72\x18\x0b\xdc\x0e\xc6\x27\x0a\x3d\xe9\x67\xab\x51\x14\x0e\x7a\xbb\x8a\x67\x88\x87\xff\x3b\xb4\x18\x49\x4f\x42\xcd\x39\x69\x3e\x01\x22\xaf\xd8\x0f\xd3\xa5\x8a\xc6\x9e\xea\xb8\xbf\x57\x11\x23\x89\x19\xab\xd7\x5e\x74\x6d\x7f\xbe\x05\xb0\x04\x18\x14\x2f\xa4\x9e\x77\x53\x6b\x72\x1b\xbb\x4f\x4a\xd2\xa8\x12\xc8\xaa\x66\xf5\x28\x61\xd8\x4f\xd8\x91\xc5\x0d\xb2\x57\x5f\xa0\x18\x87\x6b\x25\xe4\xca\xb7\xfe\x45\x28\x36\x89\xae\xcb\x05\xdd\x27\x82\x75\x01\x89\xea\x83\x52\xba\xfe\xf9\x7a\xd6\x35\x11\x71\xc0\x51\x16\x15\x13\x3d\x5f\x8f\xd4\x5e\x0d\x61\x96\x44\x26\xe7\xd2\x34\x86\xe0\x24\x2d\x80\xce\x6f\xb5\xb8\x73\x19\x8e\x7e\x11\xc8\xfa\xb6\x99\x9b\xe6\x20\x2a\x92\x1f\xd7\x6a\x71\x44\xed\xed\x47\x74\x0a\xde\xcf\x27\x3d\xe8\xbf\xa3\xe1\x8d\x66\x4f\x2b\x74\xe8\x1c\xe6\xab\x74\x56\x6c\xdf\x43\x8a\x00\x47\xf9\x50\x69\x56\xe8\x36\x0b\x3b\x57\x1e\xb6\x6d\xea\x6b\x18\xef\xa5\xf1\xcc\x2f\x2f\x0a\xbf\xa1\x2d\x72\x99\x68\xcb\x9a\x2c\x34\x26\xb1\x72\x61\xd0\x80\xb2\xfe\x00\x23\x0f\xd4\xa5\x4d\x9e\xc3\x18\xba\x3b\xe1\x64\xe5\x86\x6b\xb1\x39\xe0\x3d\x4e\x02\x0b\x61\x73\x4f\xc4\x96\x32\xe7\xe8\xde\x25\x7e\xf6\x8f\x6e\xee\xb5\x7f\x80\x91\x20\xfa\x81\xda\x9c\x00\x29\x3e\xc2\x9a\x9b\xd5\xd8\x5a\x6e\x23\x7b\x44\x09\x8f\xbf\xad\x8a\xb1\x6f\x3f\x96\x77\x4b\x1e\x10\x13\x3e\xbf\x84\xdc\x0a\x30\xa5\x1b\x5a\xfa\x6d\x57\xe3\x05\xc7\xf1\xef\xf5\x53\xdb\xb5\x71\x16\x2e\x43\xf8\x19\x61\xe1\xf7\x14\x99\x7e\xe7\x48\x35\x18\x3c\x52\x4b\x92\x03\x25\x5f\xdd\xef\x7a\xd3\xe9\xf9\x4a\xd3\x7a\x05\x3d\xd1\xe4\x89\x28\xd0\x60\x8d\x5b\xa7\xa0\x8a\x8f\x4b\x4f\x63\x7e\x7f\x3d\xb5\x34\x6c\x6b\xbe\x13\xe3\x78\xa0\x48\x42\xc7\x4b\x4b\xec\xc1\x83\xf5\x41\x9c\x92\x92\x7d\xf1\x33\x08\x0a\xbe\x35\xf4\x01\xc2\xb7\x54\x19\x9c\x8c\xe0\xd2\x38\x7b\x52\x9b\xbc\x0c\x15\xd7\xe0\x96\xba\xbe\xb7\x86\x5e\x0e\xe5\x21\xd2\x07\xec\x1d\xb7\x79\x6b\xc2\xb3\xbe\xab\x34\xef\x11\x98\x88\x1c\x16\x5d\x37\xea\x43\xa7\xb8\x47\x9c\xe9\xba\xb4\xb7\x63\x0b\xbf\x8c\xdd\x12\xb7\xb7\xa6\x24\xb4\x90\x77\x2b\xa5\x74\x32\x4d\xe0\x70\xf3\xa3\xc0\x2b\xde\x9e\xd3\xf6\x17\x1b\xc1\x36\x6b\x81\x83\x07\x8b\x55\x7f\x9f\x32\xc3\x7c\x38\xd6\x86\x46\xb3\x4d\xa2\xb6\x22\x2d\x42\x88\x35\xd9\x50\xfa\x2f\xa8\x87\x23\x5d\x43\x66\x8c\xa4\xec\x06\x22\x4a\x27\x10\x50\xbc\x00\xfe\x2a\x2a\x40\x63\x03\xe0\x24\x5e\x16\x28\xe5\x13\x6b\x8a\x51\x38\x2f\x23\xe8\x9e\x52\x8f\xdb\x50\x2d\xdf\x67\x95\xfa\x78\x37\xec\x74\xa3\xd5\x49\xdf\x96\xf2\x54\xc3\xcb\xa5\xe1\x01\x01\x39\x60\xfd\x72\x8c\xef\x7f\xec\xb8\xd8\x26\x4c\xfb\x91\x89\x59\xe7\x45\x5b\xe4\x89\x3c\x87\x23\x4f\x87\xad\x6e\x7f\x00\xfa\x87\x5b\x26\xbc\x1a\x46\xd9\x45\x74\x76\xb6\x1e\x99\xe6\x12\xa7\xf9\x42\xab\x50\xa4\x90\xd3\x5a\x0b\x7e\x43\xf9\x2b\x44\xd6\x64\xf9\x13\x5e\x87\xef\x04\x0d\x0f\x14\xcf\xcf\x04\xfe\x65\xc1\x85\x9f\x2d\xda\xf0\x65\xd2\xc5\x5c\x3c\x10\x8c\x0c\xf8\x2a\x8f\xe9\x56\x4a\x73\xb8\x1f\x5b\x71\x92\xae\x98\x55\xa6\x8e\xa0\x00\x7a\x11\xeb\x2e\x9f\x54\xf5\xc0\xf6\xad\x89\x07\x39\x33\x2c\xb8\xd5\x8c\x1e\x1d\x80\xab\x77\x87\x6a\xe3\xbc\x56\xda\x38\x0f\x1e\x14\xb5\xd8\x44\x4a\x3e\xb8\x2b\x74\xc5\xf0\xb1\xd3\x98\x1c\xc4\x2d\x9b\xae\xa4\xa1\x58\x08\xe1\x86\x26\x94\x34\xeb\x86\xe2\xa5\xde\x2e\xa1\x19\xc5\x52\x12\x66\x4b\x13\x4a\x98\x16\x23\x57\x6e\x90\x1e\x1f\x3f\xe3\xe1\xf3\x2a\x77\x4a\xda\x68\xc6\xa9\xf9\xac\x8b\xdd\xdf\xf8\xa4\x24\x09\x4b\xf5\xf0\xd4\x2c\x5b\xe1\xfc\x39\x39\x62\xef\x3b\xb2\xee\x85\x26\x4c\xde\xf5\xf1\xb6\xe3\x58\x14\x7f\x8a\x68\x84\x39\x08\xb8\xcb\x1b\x95\x34\xca\x28\xc9\xf9\xe5\x89\x9a\x5d\x71\x6b\xe2\x10\x52\xd6\x0c\x9b\xa9\x77\x52\x6b\x97\x68\x3f\x1e\xe3\xeb\xf1\x49\x29\x5f\x5f\x78\x45\x69\x83\x7a\x2c\x80\x9e\x20\x1e\xf9\xbb\x43\x8f\xd4\x9c\x52\xdc\xca\xe2\xde\x6c\xd4\xa6\xfc\x55\x58\x2a\x63\xc5\x8b\x9a\xa7\xaf\x60\x8e\x4a\xd6\x20\x64\x54\x62\x24\x24\x04\x7a\xfb\x9f\xdb\x1a\xd3\x36\x47\xd1\xf9\xb1\x29\x6c\x3c\x48\x33\xc7\x0c\x41\x8b\xf6\x09\x95\xfb\xfc\xae\x4a\xc1\x9e\x3c\x55\x51\x4d\x39\x54\xb7\x26\xf5\x2d\x74\x48\x41\xbe\x33\xf4\xdd\x5b\x17\x55\x19\x68\xad\x8a\x8c\xda\xb2\xa6\x15\x51\xab\x95\x0b\xd3\xa1\xb5\x2c\xc2\xbc\x9e\x20\xd7\xb5\x51\x9f\x0a\x37\xaf\xee\x17\x89\x50\x2c\xab\xa2\x17\x5a\xa6\xae\x7c\xa9\xde\x49\x4d\x8c\xc0\xce\x69\x6b\x40\x1c\x55\xf6\x24\xbf\xe5\xc7\x79\x4a\x65\xd6\x50\x38\x72\xd2\x7b\x45\x43\x8e\x4f\x4a\xb5\x87\xc3\x87\xeb\x2d\xdb\x37\x69\x2e\xaf\x81\x99\x0a\x8a\xc4\x78\x7e\xa8\x22\x85\xcb\x55\x85\xe8\x6c\xc5\xda\xdc\xc6\x52\x1e\x47\xc2\xbd\xa5\x5a\xff\xb7\x1c\xad\x78\xd1\x44\x6c\xbb\x81\x54\x1e\x18\xbd\xe3\x39\xf8\x38\x7b\x8f\xea\xb0\xd0\xaa\x94\x14\xbc\x62\x36\x7d\x1d\xcf\x0f\x57\xfc\x21\xad\x8d\x8a\x0a\x35\xe3\xda\xb3\x3c\xf9\xa0\x63\x63\xbb\xd7\xe7\xfe\xff\x07\x76\x45\x20\xcd\xdf\x09\x14\xd3\x64\x8b\x96\x63\xa0\x88\xff\x12\xc5\x7b\x97\x07\x4e\xcb\xda\xfe\x88\x96\x60\x27\x0f\xeb\xba\x49\xf6\x40\xb7\x55\x54\x63\x94\x01\xeb\x3d\xe5\x4d\x9c\x85\x71\xd3\x3e\xa3\xa0\x9a\x1a\x6d\x71\xd8\x7d\xf7\x70\x6c\x29\x42\x8e\x4a\xcb\xf0\x87\xca\x52\x6d\xef\xc8\xa3\x51\x4f\x01\x93\x44\x36\xb4\xbb\x41\x81\x80\x6c\x1b\x74\x9b\xe2\x0d\x58\x5c\x34\xbf\xd9\xc0\x6b\xbf\x20\x28\xc0\xfc\xe7\x1b\x40\x30\xbb\x49\x77\x8c\xf9\xc0\xaa\xab\x62\xe6\x4a\xaf\x0b\x89\xc4\xcd\xd2\xc8\xa2\x90\xb7\x9f\xda\x8c\xfc\x13\x1c\x77\x1c\xa1\x13\x1f\x8f\x5e\x18\x07\x19\xc2\xc5\x81\xc4\x42\x48\xfb\x6f\x07\x5e\x52\xeb\x94\xc2\xc2\xff\x35\x01\xcb\x52\x5c\x53\x6d\xa1\x66\x29\x32\x71\x6b\xaa\xf6\xc5\xd7\x9c\x84\x95\xee\x99\xbe\xab\x01\x47\x74\x75\xe0\x1f\xee\x07\x4a\x74\xe4\x6e\x05\x7b\xe6\x50\xb1\x65\xb4\x06\x4d\xc0\xee\x88\xd4\x2e\xe2\x71\x68\x26\x0b\x1b\xc5\x97\xc2\xd7\xf9\xfd\xf5\x41\x6c\x4d\xb6\xaa\x7c\xae\xcf\x07\xde\x69\xe3\xbc\x52\xe4\x68\x26\x3d\x9b\xed\x53\x79\xf6\xad\x71\xb4\x9b\xae\x54\x48\x3f\xbe\x11\x8e\x5d\x7b\x11\x58\x7d\xa0\x3c\x9e\x2e\x00\x97\x72\x5a\x52\xc5\x90\xc3\xa2\x78\x5d\xe9\x2e\x3d\x45\x18\x93\xd0\x59\x54\xfa\xb7\xf1\xd8\x22\x7e\xcf\x74\x62\x9b\x87\x4d\x86\x85\xdc\x7e\xed\xf7\xee\xe0\x79\x55\x28\x5a\x1c\x84\x11\x6a\xd7\x33\x0b\xbc\x25\x5f\xa0\x29\xc4\xc7\x15\x04\xb4\xba\xe9\xd8\x38\x9f\xf0\xa5\xc7\x87\xf4\x94\xc5\xe8\xb0\xf8\xb0\xb0\xb1\x7d\x3f\x84\xa8\xac\x4e\xa8\x09\x8d\xf9\x89\xbb\x03\x09\x56\x1c\x03\xb6\xbf\xa9\xcf\xd7\xb3\x3c\x0d\x97\xa4\x8e\x23\x34\x18\xfa\x2e\x80\xd3\xf7\x14\x1d\xf3\xb2\x8a\x73\xbb\x26\x6a\x93\xce\x07\x20\xe1\x13\x34\xa3\x90\x4a\x6c\xd2\x4c\xc3\xaa\x73\x76\xe8\x69\x63\x50\x7f\x41\x1e\xc2\x52\xb5\xf8\xa3\xff\x11\xaf\x89\x4f\x28\x04\xc2\xcc\xae\x8d\x3c\xd0\x9c\x75\x93\x15\x9b\x02\x68\xc6\x0b\x05\x51\x85\x8f\xc7\xbc\xe6\xe3\x56\x12\x3f\x53\x5c\x04\x26\x10\x5c\xc2\x05\x02\xa3\xf1\x81\x9b\xdb\xd4\x66\x6d\xac\x5d\x8f\xa0\xed\x22\xd6\x41\xfe\x33\xac\x29\x88\xdc\xdf\x27\x0c\x0d\xe9\xe9\x71\x9e\x6f\x48\xd9\x4f\xd0\xf5\xb0\xaf\x88\xea\x33\x61\x9f\x42\x8c\xbc\x5f\x1f\xaa\xba\xde\x3a\xd6\x3a\x84\x6f\x00\x61\xc7\xa4\x49\x98\xda\x5b\x8a\x09\x5e\x2d\x72\xca\x30\x5e\xb6\x59\xee\x1c\x5b\xd8\x88\x42\xb1\xea\xd7\x14\xe9\x2e\x35\x71\x47\x98\x14\xac\x58\x1a\xa8\x96\xc1\xf5\x8a\xb6\x5e\x25\x33\x89\x15\x8c\x63\x3f\x3e\xd1\x12\xa5\xa9\x6d\x11\x77\x89\x1e\xad\xf4\x83\xd0\x03\x94\x4e\x11\xbf\x6a\xad\xd8\xc5\x8c\x54\x67\xbe\xf8\x9a\x90\x1b\x02\x6f\xfd\xfa\xcd\x52\xe3\xc0\xcf\xd7\x7b\x66\x09\x8c\x2d\xac\x64\x6b\x5a\x11\x66\xad\xa4\x63\x35\xb3\xa0\x3b\xf8\x9d\x06\x96\x14\x52\xe9\xa6\xf9\xc4\x05\xe6\xdb\x49\xa9\x08\xe5\xf6\x8c\x4a\xa4\x54\x84\x2f\x7b\x94\x67\x30\x99\x2b\x46\xab\x93\x4a\x8f\xe4\xac\x36\x18\x0a\x14\x71\xe3\x82\x12\xa2\x3e\xab\x18\x0b\x61\xdc\x1c\x20\xea\x71\x89\xa6\x2b\x91\x5f\xac\x8a\xc4\xf2\x41\x6f\xd1\x73\x10\x1d\x7a\xea\x14\xaf\xcb\xb4\xad\x22\x5c\xee\x47\x83\xde\xa2\xfb\x94\x2b\xba\xbb\xd2\xe6\xba\xf3\x33\xca\x6d\xdc\x9a\xf0\xdc\x82\xf7\xf0\xc4\x75\x9d\x02\xb8\xe2\xd4\xc8\x83\x5e\x26\xeb\x92\x2a\x67\xf1\xdd\xd2\xdc\xe9\xf7\xb6\xf5\xa1\xa2\xa7\xe7\x39\x04\x5d\xf6\x78\x29\x5c\x6c\x4f\xaa\xac\x29\xb1\xf5\x5b\x98\xaf\xae\xee\xe7\xc5\x38\xf5\x1e\xc4\x1c\x01\xd1\x44\x2b\xde\x9b\xf0\xe2\x68\xea\x4a\x0b\x5c\x49\x4c\x74\x7e\x7f\x3d\x12\x61\x60\x2c\xba\x6b\xba\xf1\x70\xad\xc2\x5b\x63\xae\x9e\x87\x76\xcc\x3f\xff\x6d\xbc\x64\x69\x57\xa8\xd0\x2b\xcb\xa2\x41\xaf\x2f\xf3\x0f\x01\x20\xc7\x39\x7c\xe2\xca\xdd\x9d\x34\xec\xdb\x0c\x76\x13\x28\x2f\x71\xc5\x59\x24\x73\xe9\x77\x41\xe6\xc4\x2b\x17\x11\x18\x8f\xdd\x65\x6d\x20\x5a\x2e\xdb\x3e\x78\xd0\x65\x85\x55\x2a\x47\x5d\x33\x88\x26\xfc\x04\xdb\xd0\x82\xc7\xbf\x33\x1c\x53\xef\x7f\x46\x49\xad\x37\xc3\x16\xeb\x5e\x60\x5a\x3c\xa0\x4e\x39\x3c\xf7\x0b\x9a\x89\x74\x75\xe8\xeb\x2b\xd9\xa0\x6f\xd3\x2c\x37\x69\xa6\x6c\x40\x4e\xd1\x27\xf9\xb8\x42\xcd\xa7\xde\x37\xab\xc9\x00\xeb\x9c\x73\x9e\x77\xb6\x68\xda\xa1\xb2\x9b\x48\x7b\x4b\xd5\x7a\x58\xc5\x13\x36\xcd\x25\xd3\x91\x34\x02\x91\x26\xb7\x28\xf3\x49\x29\xf5\x5c\x78\x85\xb4\xcd\x6c\x5c\x53\xfd\x53\x6b\x14\x9c\xf0\xb1\x8a\x04\x54\x4f\x37\xbd\x6f\xee\x58\xa5\x95\xc0\x45\xd9\xb3\xb3\x5b\xd7\x03\x2d\x9c\x8b\x37\x20\x7c\x11\x2d\x36\x6a\xc8\x8a\x64\xce\x49\x8e\xd1\xa7\x9c\x8d\xad\xeb\xfd\xfb\xab\x31\x2d\x33\x0a\xc4\xa5\x35\x33\x59\x84\x56\x96\x23\x1d\xcd\xef\xd7\x8e\x8a\xb3\xde\x52\xe8\xe0\x41\xe7\xae\xa8\xf4\x73\x36\x95\x06\x63\x66\xa3\xe8\x49\x9f\xe4\x89\x8e\x31\x80\x8d\x7b\x5a\xe0\xf5\x8a\x56\x42\xd5\x82\x71\xf0\xe2\xc7\x16\x7c\x43\x95\xb4\x77\x80\x5b\x81\x40\xee\x0c\x1e\x88\x70\x6e\xe8\xfa\xf1\x04\x26\x1b\xbe\xc5\x97\xf3\x7f\xae\xa8\x05\x92\x2e\x26\xfd\x7e\x92\xe6\x83\x38\xcc\x43\x09\x74\x44\x9c\x1d\x97\x8b\xe5\x8f\xc3\x1e\x11\xe0\x2a\x8f\xc2\xb9\x7a\x94\x2c\x4b\xde\x27\xa2\x0a\x8a\xe4\xbe\x56\xaa\xca\xfc\x7c\x7d\x25\x4d\x8a\x59\xef\x9a\x64\xdf\x53\x7c\xa1\xf7\xbc\xa8\x41\x6e\xa2\x88\x8b\x21\xdc\x7a\x8c\x2f\xc6\x78\x62\x4c\x01\x69\xed\x2d\x95\x56\x15\x1b\x74\xbc\x87\xaa\xb2\xd8\xd2\x6e\x6a\x8f\xd8\x89\x91\xe7\x4a\x9e\x1a\x2a\x69\xdc\x75\x34\xef\xe0\x2d\x41\x37\x53\xfa\x10\x3d\x39\x86\x8b\xd3\x58\x07\xdf\xe1\x27\x85\xfd\xe0\xf2\xf0\xb3\xa1\x0b\xca\xd2\xdc\x74\x6c\x3b\xf2\xfa\xea\xe2\x19\xa8\x9a\x3b\xd7\xd4\xea\xdf\x33\x1d\x73\x34\x8c\xa5\x30\xe9\xb8\x8e\x4e\x5e\xf6\x99\x86\x87\x27\x9f\x40\x72\x86\x99\x78\x5e\x67\x97\xe7\x03\xaf\x89\x38\x88\x9b\x10\xc4\xcd\x57\xf7\xd2\x97\x22\x92\xfc\x16\x42\x10\x24\xb6\xb7\x94\xd6\x08\x7a\x9b\x11\xc7\x6c\x21\x5f\xe0\x3f\x1a\xaa\xe6\xff\x9b\xf4\xaa\x98\x5b\x1e\x78\x49\xbb\x1a\x38\x6f\x62\xef\x5a\x8c\x7e\x09\x95\xb7\x2f\xae\xf3\xfb\xeb\xad\xd4\xac\xc4\x94\xe4\x39\x95\x99\x57\xf7\x3b\x40\x58\x31\x6b\xde\xc2\xdd\x21\x64\xdc\xd9\x70\x84\x84\x5f\x86\x2e\x9c\x34\xd7\xfb\x8a\xca\xa3\xa1\xc7\x6b\xce\x81\x9b\x80\xb7\xf8\x64\xe3\x05\x1d\x5a\x24\x69\x6a\x9b\x79\xb4\xaa\x7d\x05\x58\xfa\x9a\x4f\x54\x7b\xb5\x88\xc3\x3f\x5e\x1a\xde\xd1\xb4\x07\x79\x48\x25\xbc\x9a\x02\xa5\xe1\x73\xc2\xc7\xdb\x0d\x81\x5f\xdd\x5f\x7f\x75\xff\xeb\xe4\xd7\x84\xd8\xe6\x7b\x81\xa7\x23\x3c\x52\xe5\x4d\xe4\x73\x58\xb4\x3f\x18\xaa\x14\xee\x98\x42\x2a\xd6\x28\x21\xe2\x0f\x97\x72\xd8\xd7\x66\x16\x9c\xef\x68\x11\x56\x33\x6e\xa2\xa5\x72\x3e\xac\x6c\xd5\x5d\x34\xb1\x4d\x43\xc3\x52\x9e\xc8\x76\xef\xaa\xbe\x8d\xbb\x55\xea\xe2\x2d\xdb\xb6\x64\x0e\x52\xab\x69\xd9\x20\xd7\xf8\xf1\x51\xa9\xe0\xf5\xea\xfe\xd9\x7a\x3f\xc9\xfb\xc9\x20\x4d\x43\x4d\x56\x3d\xa1\x3a\x6d\x4f\x94\x1a\x34\xa6\xa7\x8b\xcc\x3c\xcb\xc3\x9c\xcc\x34\x69\x20\x8a\x02\x3f\x7d\x89\x48\xf3\xab\x86\xf9\xd4\xf4\x8b\x2d\x97\x8a\x12\x08\x51\xee\x2a\xfe\xfc\xf9\xa1\xea\xaa\x73\x7c\xa3\x56\x1a\xb6\x49\x07\xce\x43\xb0\xbf\x89\x78\x85\xdf\x4a\xe0\xe7\xeb\xbb\x6a\xfb\xcd\x56\x6c\x3f\x9f\x2c\xbe\x11\xeb\xc6\x37\x28\x59\x72\xf6\xf8\xf3\x12\x57\x7d\x63\xa8\x6c\xf3\x4b\xfc\xad\xc3\x87\xeb\xad\xd5\xd8\x64\xf9\x6a\x4d\x69\xb4\x62\xd6\x8a\x81\x77\x95\x04\x66\xd7\xa4\x2e\xbc\x75\xc8\xac\x83\xf6\xd6\x15\x11\xad\x6d\x7a\x61\x14\x9a\x14\x4f\x5e\xdc\x58\x3c\xcb\xe0\x7b\xa5\xef\x9f\x59\x80\x77\x0a\x37\xf4\x60\x59\xb8\xad\xc4\x48\x6e\x3f\x5e\x79\x3d\xb6\x69\x87\xa0\x03\x3f\xc4\xb9\xbe\xc5\x27\xd5\x25\xd4\x30\xee\x0f\xb8\x02\x28\x77\xad\x9e\x80\x8b\x18\x4d\x56\x0c\x86\x09\x0f\xca\xde\x55\xac\x35\x54\x6a\xa5\xbb\x41\xd9\x2e\x9b\x3c\x8f\xec\x84\x9a\x5b\x5c\x3d\x00\xbe\xc6\x32\x14\x32\x44\xaa\x0c\xc1\x5a\xd6\xf6\xd1\x83\x32\xe7\x04\xbd\x68\x29\x05\x7a\x76\x9d\x56\x4c\x31\xf3\xa2\x85\x18\x5f\xfd\x51\x85\xa4\xc8\x0c\x9b\x14\xd7\x94\xb0\x24\x2a\xf4\x7c\xac\x5a\xe2\x9b\x5d\x93\xe6\x60\x00\x21\x4d\x63\x17\x0d\x3e\x51\x22\x14\xa6\xd5\x7a\xa2\xe6\x44\x98\x98\xbf\x20\x4e\xc2\xbe\x73\xf6\x49\xe5\x10\xbc\xa1\x98\x26\x57\xc6\x4b\x5b\x63\x44\x6d\xe5\x0a\xf6\x28\xd0\xb2\xf1\x36\xcb\x06\xa9\xdd\xe5\x39\x24\xbf\x83\x60\x05\xe0\xe4\x43\x1d\xae\x5d\x54\x72\x04\x08\x67\x5d\x5b\xbf\x32\x70\xf3\x99\x26\x69\xe9\x14\x99\x66\xf1\x7d\x42\xe5\xa6\x0b\xc1\x77\x9c\xc6\x25\xb2\xe6\x7b\x43\x89\x9a\x5c\xa9\xd2\x4d\xcb\x93\xc4\xa7\x90\x58\x46\xef\x28\x95\xc6\x3b\x5e\x47\x23\x32\xab\x2b\x69\xf1\xe3\x34\xf2\x51\x6f\xbd\xa4\x94\x42\x2f\x8d\xc5\x97\x61\x1b\x18\x0d\x42\x2c\x98\x58\xf3\xf1\xd0\x9b\x31\x76\x4d\xeb\x05\x4a\x2c\x9c\xb0\xd1\x6b\x4e\x05\x6a\xaa\x51\xac\xd8\x0c\x54\x93\x8b\x82\x28\x06\x7b\x7a\xf4\x13\xa8\x5e\x21\xb9\xdc\x04\xd0\xe9\xf4\x8d\x5d\x8b\xec\x23\x5a\xdc\x00\x54\x4f\x8c\x94\x99\xc2\x19\x0e\x54\x71\x76\x17\x8c\x08\x6c\xfb\xb7\xb5\xf9\xfd\x55\xcd\x4f\x62\x56\x2d\xbe\x6e\xdf\x48\xd1\xe4\xa6\x88\xf5\x87\xa7\x71\x0b\x55\x75\x30\xd1\xb7\x86\x9e\x65\xf4\x7f\x22\xea\x12\x8e\xe6\xf6\x1d\xa1\xd8\x7c\x8a\x2d\x95\xa3\x54\x2f\x3c\xf1\x31\x5f\x2b\x02\xd3\x47\x81\x8a\x9d\x27\x46\x6a\xec\x45\xd6\xb4\x9c\x8c\x2c\x7b\x14\xd1\xb3\x10\xbf\xa2\xe2\x52\x10\xa7\xff\x30\x50\x8d\xa1\x3f\x74\xea\x64\x59\xd7\x86\x4b\x99\xa2\x29\xf0\xa6\xc2\x27\xa5\x4d\xb6\xc8\x85\x99\x95\x57\xf3\xfd\xd8\xf5\x0f\x55\xa3\xc8\x87\x2a\x5a\x1d\xf4\x33\x9b\x53\xa3\x08\xd0\xf9\xb3\x74\x45\x7c\x5c\x8a\x9d\xa0\x0a\xb3\x12\xd3\x07\xb4\x12\x29\x1f\x57\x35\x7d\x36\x93\x5e\xb1\x44\xf3\xc6\x88\xcb\x7e\x27\x50\xf7\xf0\x8e\xab\xcd\x2c\x87\x22\x1f\xce\x35\x49\x25\x95\x76\xa3\x0a\x9c\xcd\xba\x61\x3b\xaf\x79\xdf\xda\xef\x0d\x3d\xde\xf2\x3d\xef\x44\xc1\xf4\x41\xda\x38\xd1\x8a\x78\x57\x19\xe2\x8e\x39\x59\xea\x72\x79\xcf\x84\x31\x0b\x7a\x33\xbb\x17\xc3\x50\xa8\xbe\x0a\xc9\xb3\x8b\xc9\x20\x6e\xd5\x3c\x93\xef\x84\xa2\xeb\x9d\xa8\x6a\x2a\xef\x9a\x41\xec\xda\x1d\x40\xb6\xba\xaa\x78\x09\x1f\x68\x61\xe2\x32\x9a\xff\xea\xfe\xd7\xeb\xa9\xed\x5b\x52\x0f\x9c\xdb\x22\x95\xec\xad\xd3\xc0\xe9\xf8\xda\x1d\xdc\xd6\x02\x04\x28\xb7\xe0\x7b\x4d\xcb\xec\x69\x92\x65\x8b\x57\x61\xe5\x52\x7c\x08\xb9\xe1\x29\x45\xa6\x3d\xa5\x14\xb1\xfb\x36\x8e\xed\x2a\x86\x99\x88\xb2\x2a\x4d\xbe\x3f\x54\xd4\x47\xd3\xef\x47\x66\xd0\xb2\x2d\x62\x88\xa9\x94\x7e\xce\xa5\xf4\x15\x7a\x1b\x59\xd8\x42\x83\x5e\x15\x30\xe6\x89\x6b\xed\x64\x90\xe6\xd6\x42\x9b\x9b\x35\x6d\x68\xab\x13\x7d\x1b\x27\x7f\x9e\x34\xd9\x7a\xdd\x6b\xe9\x1d\xa3\xa7\xce\xc7\x4a\xe2\x66\xd1\x46\xa1\x5d\xb6\x7b\x8b\xef\x71\x61\xd9\xcc\x02\x2f\x22\xf7\x54\xcb\xdd\x98\xed\xf5\x39\x08\x9c\x61\xdd\x5a\x57\x42\xa3\x6f\x0d\xc7\x72\x2b\xa5\x6e\x7c\x3d\xf0\x8d\x40\xe7\x86\xe3\xfa\x08\xcf\xf8\x96\x2e\x02\x2c\xb2\xa9\x62\x1d\x76\x3b\x4d\xf1\x8d\x48\x4e\xe1\x51\x22\x1c\x80\xe2\x67\xc5\x7b\x5e\x79\x1a\xd5\x1a\x1e\x91\x6f\xdb\x9e\x89\xac\x2a\xba\xff\xb6\x8e\xf0\x11\x6b\xe0\x95\x1f\x53\x64\xa1\x3c\x8c\xc4\xb0\x07\x9b\xfb\x57\x03\x0f\xce\x7e\xd5\x97\xd6\xad\x89\xac\xf7\xd4\x47\xf6\xba\xa9\x5a\xc8\x36\xd5\x93\x66\x5a\xe6\xee\x62\x51\x01\x28\x7b\x52\xbd\xe8\x1d\xd8\x35\x45\x4a\x93\xe6\x0b\x52\x15\x94\x41\x80\x86\xfc\x90\xde\x37\x7f\x3a\xf0\xd4\xd1\xbd\xa3\xa7\x1c\xd1\xe3\xdf\xb1\x28\x56\xc8\xce\x12\x8d\xab\x58\x3c\xb8\x3d\x59\x3b\x7f\xcb\x26\xa9\x24\xc0\xd2\xa4\x3f\xe5\x63\xdb\x0f\x87\xca\xaf\xfe\x2c\xc2\x2d\x2c\xfb\xe8\x90\x46\xde\xfe\x7b\x54\x48\x04\x81\xe9\x96\x8b\x1f\x5b\x36\x4b\xf2\xa4\xe6\x53\xe2\x9d\xe0\x6a\xf0\x49\xa9\x49\x64\xe1\x95\x62\x39\x30\x21\x07\xcf\x98\xdf\x9f\x52\x30\xc3\xc7\x5a\xc8\x3e\x85\xb0\x97\xeb\x40\x80\x24\xa5\x40\xad\x65\x71\x89\xd7\xeb\x83\x38\x6c\x27\x69\x2f\xcc\x61\x51\x87\x7a\xd1\x88\x6e\x03\x55\x97\x6b\x63\xdd\x25\x15\xce\x0a\xfd\xd4\xe6\x39\x0a\xef\xda\xb7\xd4\xf5\xe8\x7d\xf1\x35\xc6\x52\xca\xee\xef\x64\x73\x60\xa3\xa4\xd8\x47\x7d\x67\xd3\x95\xa1\x82\x55\xb6\xe8\xf5\x8f\xe1\x3f\x00\xc6\xde\xd5\x28\x87\x35\xf1\x4a\x37\x8c\xd8\x2e\x12\xa5\xa3\xeb\xb4\xb6\x49\xd5\x94\x9e\x1e\xb6\x85\x6f\x07\x4a\x80\x43\x48\xfe\xdc\x54\x47\x68\x08\x82\x86\x6b\x78\xb1\x58\x3f\xd8\x73\x95\xbf\x19\xa1\x89\x48\x1d\xfa\x18\x38\x1a\x74\x50\x9a\x10\x5d\x8e\xe2\x35\xc9\x4a\xaf\x70\xe5\x1f\xd0\xf3\xc5\x43\x79\x58\x41\x03\x3b\x54\xef\x26\xd2\x79\x21\x50\xb2\x82\x95\xd5\xea\xdb\x4c\xe2\xcc\xc6\xd9\x20\x03\xcf\x04\x5f\xf9\xa9\xca\xc3\xde\x52\x3a\xec\xe7\x1f\x6b\x43\x52\xbc\xc3\x24\x0d\xcd\x84\x8f\xe6\x86\x5a\x13\x0e\x8a\xe2\x78\x62\xef\x28\x45\xf1\x2c\x8c\x97\xb0\x9f\x20\x4e\x03\xb9\x81\x8f\xd5\x0b\x4a\x6d\x67\x10\x99\x3c\x41\xdd\x05\xff\x0e\x05\x13\x3e\x56\x93\x2d\x4a\xda\x39\x97\x7d\xb1\x73\x73\x83\x30\x9f\x54\x68\x5d\xd9\x65\x1b\x83\xa6\x85\xfb\xbf\x44\x6f\x1e\xcf\xfd\x51\xe0\xe9\x8f\xd7\x1d\x9c\x92\x27\xc5\x9a\x11\xb7\x8c\x82\xc5\xcf\xe2\x86\xf9\x44\x65\x36\x76\xf1\xe5\x62\xf2\x6f\x5d\x55\xc2\x98\x1b\x08\x82\xa5\x52\xab\x14\x3a\x86\xaa\x36\xb5\xaf\xe1\xd7\xd7\xc5\x41\xab\x63\xf3\xdd\x9e\xc1\x73\x1f\x43\x8a\x67\xd9\x50\x95\xd9\x3e\xa5\x97\x0d\x92\x41\x0d\xc0\xa0\x28\x74\xe8\x1e\xde\xc0\xeb\xdf\xde\x56\x2c\xdb\x2c\xb7\xfd\xae\x8d\x27\x55\xc9\x04\xc9\x3c\x1f\x2b\xf1\x17\xa4\x8d\x5e\x2e\x5b\x55\x7f\x19\xc5\x70\xec\xeb\xff\x5e\x41\x6f\x5c\xae\x15\xa1\xfc\xa7\x35\x0d\xb1\x6f\x21\x6d\x0d\x18\xe3\x5d\xe5\x97\xfa\xae\xfa\x81\x66\xd7\x62\xbb\x56\x1d\x12\xba\x0d\x42\x65\x79\x8b\x49\x9a\x12\xcf\xbd\xe6\x0c\x5e\x4e\x06\xca\xf9\xe5\x64\x65\xac\x13\xc6\x6f\x14\x01\x12\xdd\x00\xe0\xea\xdf\xc7\xe2\x81\x75\xf6\x36\x9e\x3d\x12\x92\x3b\xca\xd9\x2c\xb5\xbd\x24\x5e\x45\x67\x3b\x3b\xa2\x0d\x7d\x15\xe9\xa1\xd2\x3d\xbf\xab\x80\x98\x7e\x71\x81\x7b\x8a\x67\x89\x0c\x65\x67\x83\xe6\x04\x77\xc3\xe3\x69\x49\x6b\x3c\x05\x11\xd8\xe6\x6e\x0e\x55\xe4\x7c\x4e\x47\xff\x0c\x58\xc8\xae\x84\x25\x4a\xf6\xa5\x9a\xeb\x11\x5a\x57\x39\xde\xc0\x44\xbb\x69\x0d\x00\x1e\x88\x2d\x19\x09\x3d\x1c\x47\x91\x40\x9f\xd1\xac\xcf\xe3\xba\xcd\x6f\x73\xe8\x11\x58\x18\x6c\x22\x60\xf8\x46\x95\xbe\x44\xcc\x4e\xc3\x74\xcd\xce\x0a\xdd\xdb\xa2\x6b\x6e\xaa\x89\x25\x47\xa8\x54\x10\xf6\xf5\x8d\x95\x30\xef\xfe\x34\xee\x15\x37\x71\x93\x39\xcf\x88\xcc\x76\x35\x8a\xbd\x04\x51\xc6\x29\xcc\x17\x20\xf6\xf0\x83\xc5\x5d\xb0\x08\x16\xc6\xe6\x56\xa0\xb8\x15\xf4\x52\x0e\x39\x2e\x3f\xdd\x39\x2f\xee\x81\xc7\xca\x8e\x23\x3b\x45\x99\xef\x27\x81\x72\xcd\x39\x16\x78\xcf\xeb\x1f\x83\xef\x8f\x08\xe5\xec\x50\x95\x61\xb9\xf9\x83\x3d\x4b\xa9\xeb\x0b\x13\xe8\x9b\x14\x0e\x88\x28\x82\x92\x2a\xbd\x81\x21\x01\x78\x0f\xb4\x19\x61\x22\x29\x72\xd5\x83\xc0\x4b\xed\x7e\x04\x05\x2f\x40\xdc\xe0\x62\x33\x3f\x95\x26\x29\x8e\xbf\xab\x56\xb0\xd6\x92\xc1\x9b\xc2\x83\xfc\xef\xe8\x79\xf1\xb1\xa7\x2b\xff\xca\xc0\xda\xa3\x96\xdc\x0c\x58\xe7\x38\x50\xf5\x16\x80\x35\x42\x68\x2b\xde\x84\xd4\xc1\x1e\xc7\xa1\xec\xd9\x34\x0d\x23\x38\xc3\xbb\xca\xa3\xab\xcd\xb0\xc6\x08\x78\x33\x7f\xe4\xa6\x60\xcb\xe6\x26\x8c\x24\x7d\xc2\xa3\x7b\xb7\x78\x28\x0f\xff\x11\x0b\x8e\xd0\x74\xfe\xaf\x9f\x1d\x6d\x13\xfd\x9b\x59\xa8\x7f\xf1\x35\x9a\xef\xce\x91\xd0\xc5\xa7\xef\x53\x14\x22\xf5\xd6\xed\xc3\xd9\x71\x3e\x13\x02\xb0\x30\xcd\x3e\xa5\x8f\xa3\x40\xb8\xa6\x1a\xf6\x36\xa8\x15\x91\x97\x3e\xda\xed\xd8\x8e\x8d\xde\x0f\xe0\xd6\x67\x1a\x9a\xe3\xa4\x85\x72\x76\x29\x73\xc0\x34\x89\xc0\xf6\x9d\x75\x0d\xa8\xc5\xd7\xf1\x71\xf0\x82\xd2\xf5\xcd\x72\x33\x48\x4d\x9c\x67\x53\x9a\xad\xa7\x04\x6b\x50\xca\x13\x7b\xce\xe2\x6a\xb1\x60\x7d\x17\x6f\x50\x3c\x41\x9d\x9e\xb8\x35\x69\xb3\x2b\xb3\x12\xef\xf1\x7d\x8d\x96\xbd\x5f\xe2\x0c\x1f\x80\xee\xfc\xa4\xdf\x11\xb8\x53\x59\x84\xf8\x8a\x6b\x77\xbd\x8e\x4e\xa1\xf7\xfd\xb1\xde\xdf\x2c\x27\x95\x4b\xfc\x19\xdb\x84\xf0\x49\xa0\x17\xe4\xa1\x87\x57\xbf\xa1\xfb\xf7\xef\x39\xce\x44\x2b\x6c\x32\x03\x1f\x2c\xa8\x7d\x14\xb8\xf1\xf1\xa8\xac\xca\xcf\xcd\x7c\x22\x83\x84\x54\xfc\x9c\xa2\x10\x95\x51\x61\x70\x9e\x91\xfd\x2b\x95\xbb\xe2\x3e\xf9\xb8\x04\x5c\xfc\x9d\x7a\xbf\x6b\x23\x29\x67\x60\x9c\xa3\x9d\x88\x8f\xdd\xf5\x9b\x3c\xe9\xd3\x4c\x13\x54\xbf\x58\x81\x1c\x14\xeb\x80\xbf\x35\x25\xaf\xbc\x59\x22\xc4\xcf\xce\x12\xbb\xa3\xd7\xf7\x99\xaf\x54\x5e\x7c\xed\xfe\x43\x6d\xbe\x33\x73\x00\x58\x17\x96\xff\x73\x2a\xd5\x3d\xae\x8c\xfb\x7e\x5c\xa5\x20\x60\x4d\x06\xc8\xc1\x3b\x95\x32\x75\x44\xca\x94\x1a\x97\xb4\x03\x1e\xda\x88\x42\xaf\x6a\x92\xc9\x55\x07\x0b\x45\x76\x25\x04\x02\xe6\x5c\xbe\x67\x9d\xc5\xe3\x95\x52\x60\x3c\xb3\x50\xef\x0c\x42\x56\x6d\x62\x0e\x66\xe0\x43\xa5\x0d\xaf\x1a\x06\x64\x8a\x17\x11\x4c\x17\xf8\x3b\x60\x5d\xbe\xa0\xfb\x49\x3e\xad\xd2\x03\x5a\xec\x37\x11\x1b\xa2\x79\x87\xf5\xb1\xf9\x44\xa1\x6c\xc9\xb2\x8d\x71\x07\x58\x19\x3f\xa4\x5f\xe1\xe3\x31\xc1\x83\xae\xed\xbd\xe8\xaf\x60\xc7\x48\xa3\x35\x4a\xd9\x74\x6d\xa8\x1a\x05\xfe\x02\x74\x10\x4c\xb1\xf7\x31\x45\x98\x99\x42\x9b\x91\x13\xa9\x9c\x59\x70\x42\x16\xc5\xa0\xc2\xbe\xf4\x3e\x6d\x6b\x00\x11\x1e\x8d\xbf\xaa\x62\x5b\x42\x34\x7f\x0e\x31\xc8\x98\xf9\x04\x12\xdb\xdb\x08\x48\x30\x3d\xfe\x39\x21\xc3\xd2\xc5\x82\x3d\x1a\x8f\xef\x12\xf6\x48\xfc\xfc\xdb\x34\x3d\x64\x01\xa6\x3d\x12\xdb\xea\x8e\x86\xa2\x41\x69\xf5\xcc\x96\xcd\xc2\x0e\x75\x5f\x16\x0f\x07\x70\xcc\xba\xa2\x53\xac\x97\xc2\xbb\xb9\x57\x0e\xd5\x93\x98\x25\x9e\x9c\x9a\x18\xe8\x80\xd2\x2e\xfe\x9c\x2b\xf5\x27\xcd\x25\x98\xe8\x8d\x0b\xa8\xbb\xba\xe9\xc5\xe1\x8b\xa1\x03\xd6\xc2\x76\xb1\xd4\xaa\xc8\x06\x08\x16\x5a\x87\xf9\x78\xf8\x9c\xd6\x06\x2c\x72\x57\x4c\x8a\x2f\xf1\xdb\xb8\x31\xf4\x55\xc9\x1b\x25\xe8\xc1\x09\x33\x86\xcd\x25\xbb\x4a\xc5\x52\x57\xb5\xf1\x2c\xe1\xcb\xca\xb2\x67\x29\x6c\x2e\xb1\xd1\x91\xb8\xbf\xd1\xab\x14\xa4\xa8\x8a\x39\xd1\x03\x73\xa2\xb8\x03\xe5\x87\x30\xe3\x34\x27\x55\x65\xaa\x3b\x48\x9b\xdd\x49\x35\x06\x36\x94\x14\x39\xc8\x4c\x7c\x3c\x1c\x53\x4b\xd2\x93\x3d\x31\x28\x42\x30\x77\x56\xc9\xe0\x5f\x7a\x6c\xc6\x49\x4e\xad\x36\xcb\xa7\x68\x90\x38\xc6\x9e\x78\xe9\xff\x37\xd0\xca\x91\x1a\x8d\xd6\x9a\x1b\x2a\x5b\xbb\x0d\xa7\x86\x3b\x88\xb9\x07\xdb\x2d\x85\xba\xbb\x5a\x88\x3e\x65\xba\x63\x26\x9e\x73\xce\x93\xcd\x85\x46\x17\x55\x53\x8f\x3d\xd2\x0d\x17\x43\xc7\xba\xc0\x82\xb3\xa6\x16\x9f\xb5\xc7\x16\x24\xe3\x24\xcd\xbb\x2b\xd4\x5e\x58\xdc\xea\x18\x4c\x28\x8f\xbc\xd2\xe6\x65\x90\x02\xd8\xc6\x9b\x66\x5a\x0a\x02\x48\x00\x64\x92\x80\x79\x02\x42\x33\x89\xb3\xb0\x45\x9a\x84\xbb\xe8\x21\x80\xa6\x0d\x3f\x61\xdd\x46\x8b\x55\x01\x6a\x4a\x78\xbf\x1f\xd3\x56\x23\x6a\x8d\xc5\x8a\x22\x32\x8e\x4a\x20\xbb\x6b\x8b\x98\xa5\xe6\x9c\x28\xee\x68\xcf\xec\x3b\x55\xd4\xf4\xb6\x4d\x97\x99\x23\xe6\xec\xab\x9d\xf5\xc9\x15\x75\xe9\x26\xca\x6d\x1a\x93\x99\x12\x45\x71\x60\x06\x6f\x29\x19\xd1\xeb\x9a\xc0\x71\xbe\x92\x4f\x90\x02\xda\x4d\xc7\x77\x08\xc5\xd8\xaf\x28\x64\xf7\xc2\xcc\x0f\x1a\x87\x33\x3a\x4e\x69\xd9\xff\xb1\x08\x0c\x5a\x76\x91\xa0\xc3\x99\x05\xdf\x6e\xe8\x62\x89\x0d\x95\x8d\x9b\x01\x89\x2c\xef\x52\x76\x9f\x78\x02\x3c\xb4\x03\xd5\x3d\xc9\xfd\x8f\x48\x24\xa6\x46\x13\xaf\x6d\xab\x52\xa2\x5f\xf1\xbc\x83\x8e\x01\x29\x84\x40\xcf\xbe\xe4\x90\x84\xed\x03\x94\xcd\xb7\x31\xe2\x64\x05\xdc\xbe\xaa\xce\xcf\xd5\xe3\x30\xb6\x6d\x52\x30\x99\x59\xe0\xbf\x43\x7d\x80\x8f\x4b\x8b\xd9\xfc\xfe\x7a\x2b\xcc\xf2\xd4\x66\x59\x7b\xc0\xb2\xb6\x48\x5d\xce\xab\x34\xe6\x7c\xb0\xcf\xab\x91\x36\x61\x07\x0a\x10\xe5\x2e\x79\x74\xf3\xf1\xd0\x77\x2f\xae\x43\xb6\x47\x70\x01\xaf\xb3\xd4\xb3\xe9\x52\x66\x7a\x36\x65\x63\x23\xe7\x04\xfa\x98\x4a\x29\x5d\x11\xff\x91\x0b\x0e\x6c\x64\x9b\x79\x1a\x36\x77\x15\x9f\x42\x72\xf5\x09\xe5\x07\x10\xfd\xbd\x8c\xba\xba\x54\xae\x69\x37\x16\xe6\xa3\x07\x33\x3e\x83\xe0\x17\xd1\xdb\x79\x6d\x2f\x49\x3e\x08\xd9\x94\x17\x1f\xc4\xc8\x70\x88\xa0\x53\x0a\xbd\x0b\x5c\xc0\x15\xa0\x3c\x05\x5d\x5b\x16\xb6\x4c\xcf\x74\x6c\x36\xe5\xf9\x54\x0f\x95\xa6\x12\x77\x1e\x0b\x5f\x94\xc6\x12\x80\x86\x13\x81\xa7\x92\x9f\x18\x0b\x44\x7a\xfd\x0c\xc8\x22\x12\xe6\x9b\xf4\x8a\xf9\x58\x25\xe3\x2d\x9b\x2d\x4d\x15\x01\x04\xf6\xbd\x9f\x28\x5f\x42\xf4\x89\xf1\x31\x2d\x1b\x20\x35\xdc\x0c\x74\x03\x8b\x87\x85\x08\x8c\x61\x46\x94\x3c\x87\x31\xb2\xa2\xaf\x6e\xe5\x36\xed\x85\x0e\x5c\x28\x6e\x07\x04\x8c\xef\x06\x8a\x99\xf1\x5d\xe5\x7c\xc6\x1f\x88\x10\x84\x21\x25\xde\xd9\xf0\x0c\xb0\x9d\x23\x5f\x4d\x5a\x36\xb1\x72\x4c\x66\xd1\x85\xc0\x87\xe7\x17\x54\x5b\xc3\xa2\x49\x6d\xb4\xba\xdb\xaf\x95\x77\xb4\xce\xe7\xaf\x6b\xf7\xf2\x13\x43\xe5\x6b\x7e\x02\x51\x1a\x76\x90\x53\xca\xec\x41\xb0\x0c\xcc\xd2\x73\xea\xa7\x4c\x3b\x0d\x9b\x46\x7b\xfc\x62\x0f\x96\xba\x65\x85\x86\x5e\x27\x0a\xf3\x66\xb7\x36\x66\xf6\x56\x53\xa6\x1f\x4f\x7a\x19\x90\xb0\xf7\xb4\x6f\xe4\x79\x3f\x50\x08\x3a\xfb\xc3\x21\x28\xe0\x6e\x6d\x84\x6e\xe7\x01\x49\xc8\xa0\xa8\x69\xb5\xa1\xe9\x19\xd1\x5a\x51\xc4\x97\xe3\x18\xcb\xae\x09\xfc\xc0\xac\x1a\x5d\x73\x5e\xd0\xd5\xe1\xa7\xac\x5e\x27\xf1\x20\x8d\x47\xe0\x0c\x97\xb0\x22\xe2\x42\xee\xa9\xde\xa5\x2c\xb7\x3d\xec\x3d\xdc\x2d\x1c\x28\xcd\xbb\x77\xab\xd4\xf7\xe3\x24\x15\xed\x00\x59\x58\x7c\x26\x57\xe9\x11\xb9\x6c\xe3\x16\xef\x56\xae\x22\xe4\x20\x81\x32\xa1\xbd\x08\x45\x17\x07\x19\x13\xa7\xf0\xce\x37\x87\x3e\x9a\xd8\x54\x7b\xa7\x89\x9b\xdd\xe2\xab\x67\x16\x38\xc7\x3e\x4b\x8f\x89\x8f\x4b\x91\xc9\xf4\x74\xbd\x1b\xe6\x93\x9e\xb3\xff\x35\x4d\x8e\xf8\x1e\x4d\x5a\x0c\x2c\x6e\x0a\x17\x7a\x57\x85\xba\x01\xd2\xfd\x9a\x6f\x53\xba\x3c\xd6\x0a\xfb\x42\x29\xd9\xcb\x97\xb9\x47\x1b\x2b\xf8\x96\x4a\x27\xdf\xd2\xf5\xcd\x7b\xd5\x54\xaa\x41\xdc\xe4\x24\xcd\xc9\x0d\x7b\xe9\xe1\x8a\xf6\x9a\xb9\xfa\xaf\x0c\x6c\x56\xcc\xf9\x6d\x14\x99\x4b\xaa\x9d\xea\x92\x1a\x0a\x51\xd2\x1c\x63\x4e\x30\x0b\x84\x4f\x54\x84\xbe\x8d\xfe\x2a\x5d\x67\xa5\x7e\x4e\x00\x24\x67\xb4\x08\x38\xd7\x7e\x85\xc9\xe0\xb9\x7a\xa6\xd3\x71\x97\xe9\x5c\x32\x66\xbd\x70\x8b\x73\x94\x2f\xe2\xbe\x66\xd2\x73\x4d\xc0\x5c\x70\x1a\x7a\x6a\x36\xca\x4d\x62\x36\x2c\x59\x71\xcf\xf6\x12\xee\x49\x18\x6b\x11\x43\xf6\x8c\x97\x01\x5e\xc1\xbb\xb4\x6f\x61\x7d\xba\xa0\x16\xdc\xd8\xa4\x69\xb2\x82\x65\x4e\xfc\x3f\xe8\x3e\xc5\x00\xa4\xcc\x2d\x99\xa9\x77\x4d\xdc\x0a\xd9\x69\x01\xeb\xc8\xa6\x12\xb5\xd9\x54\x45\xa7\x8e\x8d\xc9\x27\xa7\x05\xb9\x66\x2c\x2d\x90\x84\xe4\xe3\xc0\x6f\x60\x66\xd9\xa6\xa6\x63\xf7\x2a\xc8\xfe\x21\x32\x43\x46\x8b\x74\xcf\x0e\x4a\x87\x20\xbf\xee\xa1\x87\xc3\xe0\xa9\x52\xac\xfa\x55\xfa\x21\x6c\xf1\x08\x54\x9d\x99\xa3\xab\x87\x3c\x18\xaa\x8c\xec\x2f\x55\x45\x3a\x19\xe4\x45\x80\x8c\xe0\x58\x14\x03\x6a\xce\x8a\xf3\xaf\x74\x85\xf1\xff\xc6\x8c\x03\xaa\x06\x7a\x37\xf6\x14\x6e\xaf\x67\xf1\x8f\x4a\x87\xa5\xdc\xf6\xfa\x09\xa4\x79\x00\xc7\xc2\x49\x82\x8f\x03\x3f\x94\x49\xa5\x60\xaf\x22\x7b\xde\xc5\xc3\x71\x3c\xd3\xe2\x12\xf0\xb3\xb7\xf4\x32\xf9\x29\x17\x05\x50\xd2\xbc\xa5\x5c\xc4\x3e\xa5\x80\x17\x2b\xeb\x1f\xaa\x3a\x38\x1a\xca\xb6\xc6\x6a\x48\x9b\x15\xbc\x9e\x39\x7e\xbf\x91\x92\x77\x41\x83\xac\xab\x67\xe8\xee\xab\xed\xa0\xd4\x4b\x2f\xd5\xc3\x38\xcb\xc3\x8e\x67\x2b\x8b\x50\x15\x3d\x5b\x3e\x29\x05\x93\x07\x66\xeb\xa9\x6d\xda\x70\xd9\x2c\x92\xe2\xaf\x6b\x36\x1c\x93\x42\xba\x12\x6c\x5f\x3e\xb4\x8a\xba\x9b\x97\xae\x05\x74\xd6\xb7\x80\xfe\x0d\xa5\x93\x36\x88\x5b\xbf\xfc\xb3\x9d\xd4\xf4\xbb\x61\x53\x7a\xd6\x50\x3b\x5c\xd3\xe6\x40\x6b\x8a\x8a\x92\x77\xd3\x30\x8a\x6c\x3a\xe1\x47\x28\xe2\x20\x60\x69\xe8\x48\x91\x8d\x62\x3b\xa2\x34\x3d\x53\x8f\x93\xdc\x2a\xa8\xeb\x0f\x54\x35\xe1\x0f\xaa\xd2\x92\x3c\x59\x34\xcd\x66\x52\x53\x0a\x85\x1b\xaa\x2c\xbf\x11\xe8\x0c\xbc\x9f\xda\x9a\xaa\x5e\xc2\x7c\x41\x3a\x7c\x1e\x2b\x0a\x6c\x06\x51\x4d\x07\x25\x9c\x94\xca\x0f\x54\xb4\xc2\xa5\xd6\x44\xce\xe3\x48\x82\xa6\x31\xd2\x5e\xcd\x29\x6d\xbc\x55\xb5\xc1\x66\xd6\x4b\x87\x61\x8f\x04\x4b\x87\x8f\x75\x19\x38\x2c\x7e\x46\xb9\x0f\x15\xcf\x17\x00\xdc\x65\x25\x26\xf3\xb0\x74\x99\xd3\xd3\x84\x98\xa7\x61\x33\x47\xfb\x89\xfb\xd0\xab\xfb\x79\xa1\xe7\x99\x04\x40\xe1\xe3\xe1\x53\xca\x43\x24\x6f\x02\xe3\x76\x95\x21\xc7\x50\xc5\x7e\xed\x1a\xd4\x8b\x95\x8f\x4f\x9c\x57\x61\xd3\x64\x56\x34\x51\x10\x97\x30\x49\x87\x4f\x82\x7d\x0e\x8a\xfd\xaf\xfe\xcb\x9a\xde\x34\x8a\xb0\x4a\x36\x13\x1f\x33\xa4\x83\x88\x25\xdc\x5e\x77\x38\x3b\xbe\x9d\x5b\x2b\x30\x35\x5c\x4c\x3d\xf7\x8a\xc3\xe3\x31\x49\xb1\xcd\x6c\x39\xd8\x39\x4c\x56\x0c\x71\xa9\x5c\xae\x53\xfc\x15\x9f\xa8\xe0\xdf\xf4\xc2\xd6\x13\xb4\x5c\x5c\xc7\x17\xa1\x6a\x76\x82\x9e\x21\xe0\x68\xa4\x78\x58\x42\xbf\xa7\x8d\x01\xc6\x14\x12\xf0\xa0\x45\x2e\x41\x13\x32\xfc\x6e\xb5\x1c\xda\x38\x36\x93\x8f\xa7\xd7\xfb\x4a\xcc\x98\x10\xd0\x39\x87\x92\xad\x84\x51\xab\x69\x80\x96\x80\x43\xf2\x20\xa8\xfd\xd2\x2f\x78\xf5\x4b\xe7\xa5\xad\x2d\x7f\x52\xdb\x4c\xad\xf9\x6b\x31\x1d\xc7\xd5\x34\x91\x49\x57\x27\x95\x18\xed\xd7\xe9\x96\x01\xc6\x02\x5e\xc1\x5b\x60\xb3\x51\x49\x82\x3c\x10\x10\xad\x2e\xa6\x26\x6e\xf1\xe8\x90\xad\x4c\xd9\x4d\xfc\xea\x63\x9b\xe1\x53\xab\x22\x38\x4c\xb4\x9d\x7a\x0b\xda\x39\xf2\xbc\xe5\x7e\x64\x5b\x1d\x26\xe3\x69\x60\x87\x8f\xdd\x48\x68\x26\x69\x4b\x8f\xc0\x60\xac\x40\xeb\xf7\xa7\x6e\xd2\xb3\x29\xc9\x2d\x22\xf7\xba\xa6\xb1\xb8\x8f\x03\xef\xe0\xb4\xae\xdc\x48\x78\x0c\x88\x68\x8e\x4a\xb7\xfe\x1c\xb9\x92\x60\x9e\x15\xe1\x63\xbd\x6d\xa8\x63\x59\x25\xc7\xf7\x03\xc5\x73\xbc\x8f\x65\x05\xa9\x7c\x9c\xa7\xb6\x9f\xda\xd8\x0e\x52\xd2\x99\x71\x84\x92\x2d\x0c\x3c\x81\x99\x68\x38\xc9\xd4\xf5\xc9\xd1\x62\xd8\xda\xa7\x40\xf5\x7d\x23\x9a\x41\xa2\x89\x5c\x3c\x36\xa4\x21\xff\x36\x50\xa2\x3c\x27\xb4\x96\x88\xd0\x85\xb1\x7e\x69\xca\xd1\x43\x55\x9e\xdb\x43\x1c\x6b\xe1\xde\xd2\xe2\x87\x99\x79\x45\x99\xb6\x4f\xaa\xb7\x18\xc6\x59\x3f\x4c\xb5\xfa\xdd\x1f\x2a\xf5\xbb\x3f\x1c\xd7\x9a\x4f\xed\xdf\x24\xa8\x88\xc9\x2f\x20\x3e\xb3\xf3\x24\x82\x58\xc0\x14\x37\x35\x6d\x69\x27\x15\xd3\xf1\x1e\xb8\x02\x8d\x8d\x0c\xb4\x5f\x84\x57\x10\xb0\x05\x71\x99\x7d\xd6\x31\x56\x2f\x90\xc4\x38\x62\x08\x6e\x3c\x44\xe0\x35\x35\x52\x34\xbe\xe7\x1a\x9e\xec\x77\x0f\x72\xa6\x22\x93\x40\xcf\x00\x03\xe7\x29\xd5\x53\x78\x15\x6f\x0a\x78\x06\x46\x17\xb3\x2d\x02\x25\xb8\x73\x36\xa8\x7d\xe1\x2b\xbe\x96\x71\x40\x68\xea\x77\x28\xd9\xa4\xd2\x7d\xef\xb9\x11\x5e\x0c\x93\x38\x50\xd5\x47\x4f\xc4\x33\xd0\x57\x97\xb2\x10\x8d\x2d\x56\x7c\xa5\x75\x18\x01\xd6\xb9\xb1\x0d\x36\xb5\xe9\x6e\xba\x34\x59\xc9\xd5\x6e\xbb\x39\x1c\xb3\xd9\x1e\xaa\x60\xff\xd2\x50\xc3\xc9\xf4\x2e\x74\xdd\x8a\x45\xc7\x1a\x15\xc9\x5f\xcb\x68\xa1\x81\x0f\x30\xe6\x84\xc2\xe9\xa7\xa7\x39\x9a\xb4\xdb\x35\xe5\xf6\x7f\x65\xac\x12\xec\xf5\x69\xba\x83\x34\x9f\x52\x15\x81\x35\x05\xac\x7e\x5d\x8b\xc0\x9c\x52\xb9\xe1\x19\x1a\xcf\x20\x8e\x7c\x34\xdc\x2b\x64\x6e\x73\xa4\xe6\xb3\x62\xbe\x34\x3e\x71\x75\xfc\x34\xe9\x99\x38\x0f\x9b\x0a\xcb\x85\xc0\x31\x06\xcd\xf7\x87\xca\xf4\xe1\x91\xa2\xd2\xac\x98\x94\x4d\xb5\x31\xd2\xce\xe8\x25\xf2\x4c\xe0\xf9\x2e\x36\x6e\xed\xa2\xb1\xc6\xf6\xed\xf4\xea\x5c\x05\x5c\xa8\x8c\x33\x2f\x34\x94\xf2\x30\x82\x08\x00\x57\x97\x15\x13\x75\xd7\xe8\x19\xd5\x55\x42\xa5\x89\xa9\x9a\x72\xa6\xa2\xaf\x90\xa2\x5e\x31\x6f\x04\x89\xa5\xa9\x86\x37\x7a\x8e\xe6\x0d\xe6\xfe\x49\x2d\x4f\x69\xa2\x25\xe6\xd5\xf2\x83\x54\x6c\x9c\x8f\x1c\x23\xad\x1d\xc6\x70\xff\x98\x50\x58\xee\x39\x05\x17\x02\x13\x92\x26\x02\xe5\xd0\xfb\xcb\x3f\xbb\xf4\xcb\x3f\x8b\x62\x25\xd2\x45\x78\xa8\xf2\x71\xa9\x00\xc3\xb6\x65\x19\xf5\x54\xe7\xd1\xea\x84\xb2\xe7\xe3\xbe\x1b\xe7\x23\xe8\x74\x6f\x1f\xa8\xd8\xa0\x99\xf4\xec\x67\x68\xca\x0b\xad\x93\xc6\x35\x9e\xf0\x26\x4d\x47\x97\x28\x14\xeb\x8d\x6b\xb2\x2e\x7e\x47\x2a\x93\x63\xd3\x47\x77\xa7\xd5\x9c\x64\x06\x37\xa0\x62\xdf\xbe\x0e\xf2\xb5\x23\x51\xcd\xcd\xcf\xb9\xe6\xa9\xe2\x19\xe1\x23\x37\x79\x26\x02\xf1\x3e\xe9\xdb\xfc\x8b\x3b\xb5\xbb\x7c\x00\xf8\xf6\xd0\xb3\x00\x76\xd1\xb0\x44\x6f\x18\x4b\x2a\x61\xcd\xf9\xa3\xe1\xb8\x3a\x93\xd3\xf2\xd6\x26\x25\x59\x6e\x6d\xd4\x33\x4b\x36\x55\xda\xfa\x3b\x1a\x0a\x0b\xdf\x31\x7a\x71\x9c\xa9\x72\xf8\x30\x49\xcf\x4e\xea\x82\x9f\x6e\xb6\xfd\x5d\x25\x1e\xc4\x25\x76\xfe\x07\xed\xc0\x4d\x75\x53\xdb\x42\x26\x8b\x05\x7e\x6a\xe4\x87\xc8\xfb\x4a\x41\xfc\x34\x5e\x04\x38\x4d\x0c\x26\x20\xa5\xbc\xaf\xfb\x86\xef\x54\x59\x5c\x45\xe6\x88\x41\xaf\xa5\x0b\x84\x01\xaf\xf2\xf1\xc8\x35\xc6\x0d\x5a\x21\x08\x2a\xaf\x8b\x1a\x31\xbf\x0d\x11\x9d\x56\x02\x75\x4f\xd0\x95\xa2\x86\xf7\x39\x3c\x2c\x8c\xc0\x1f\x8d\x99\x62\xe6\x26\x8c\x19\xea\x97\x7a\x9f\xe7\xa1\xd6\x94\xc7\x4b\x0d\xed\x46\x42\x4b\x70\x34\xcf\xd5\x3e\x8b\x98\xfb\x7d\x0c\x7e\x63\x72\xe2\x9a\xc2\xd3\x30\x5b\x92\x2a\x34\xde\xdb\x3f\xc1\xaa\xc8\x27\xa5\x7c\xb5\x98\x47\x52\xc4\x94\x44\x17\x13\xe7\x96\x32\xe0\xbc\x55\x21\xa5\x37\x57\x57\xc2\xbd\x08\xac\xbf\x89\x5d\x88\x4f\xdc\x45\xe5\x83\xd4\x43\x62\xec\xff\x49\x33\x44\xbc\x40\xab\x3a\xcd\x52\x6e\x4c\x1a\x93\xd3\x2a\xbe\x40\xa4\x2b\xc6\x60\x15\x07\x6a\x4c\x36\xb6\xa3\x9b\x9f\xaf\x2f\x9b\x68\x59\x58\x42\x52\xd0\xa5\xb7\x28\x95\xde\x8a\x24\x7e\xd1\x46\xd6\x74\x06\xd6\x71\x45\x10\x0a\x7f\x4b\x59\x00\x7f\x6b\xcc\x10\x33\x6c\x1e\xc5\x2f\xa8\xad\xd5\xa7\x4f\xe5\x56\xde\x2f\xd5\x73\x9b\xe5\x61\x8f\x2c\xb1\x1c\x5b\xfb\x1c\x85\x2a\x22\x6f\xe2\x53\xa8\x56\x6a\x4d\x0f\x44\x56\x7c\xe5\xed\x31\x4b\xdb\x9a\xf3\xe8\x38\xae\x74\x8f\xed\x91\x7e\x94\xa4\x94\x1a\x4c\xf9\x4d\xf8\x16\x40\x6e\x91\x58\xa9\x39\xdb\x8e\xe3\x9a\xc9\x74\x0e\xcb\x21\x9f\x28\xae\xf4\x62\x34\x60\x0f\x1e\x35\xe7\xc5\x36\xe2\x23\x9e\x2b\xa8\xd7\xde\x2a\x3d\x58\xb2\xda\x35\xfd\x96\x8d\x8c\x68\x02\x62\xc9\xe3\x68\x94\x4f\x94\x2b\x63\x6a\x9b\xab\xcd\x48\x54\x50\xdc\xa6\xef\xda\x3b\xd6\xdc\x28\xeb\x9a\xb4\x65\xb3\x9c\xea\x61\x62\x58\x48\xc1\x1a\x36\x4a\x0a\xfc\xa4\x93\xee\x1a\x82\x79\xfc\x1c\xc4\x0c\xc4\xbb\x4c\xb5\xac\x9c\x51\xac\xaf\x24\x8c\x1e\xcf\x0e\x78\x1c\x15\xcf\xc4\x13\x45\x50\x08\x98\x05\xeb\x8d\x73\xe7\x28\x6e\x97\x1f\xd3\xd0\xab\x12\x24\x83\x3c\xcb\x4d\x5c\x0c\xfd\x27\x14\xf6\x77\x59\x51\xf4\xb4\xe3\xc9\xbe\x51\x11\x2e\x80\x55\x76\x53\x89\x65\xfc\x98\x00\x45\xc1\x9a\xe8\xb7\x34\xba\x88\x40\xe6\xb6\xe7\x4c\xe6\x83\x76\xdb\xb6\x74\xed\xe6\x92\x6e\x64\xd5\x36\xc6\xa8\xe4\xb5\xc8\x3e\x4c\x7c\xc1\x8a\x1f\xc3\xda\xfe\x7d\x65\xae\x79\x1d\xf5\x4f\xdc\xf1\x3b\x18\x4f\xe2\xdb\xe6\x8b\xe7\x17\xd5\x43\x2e\x52\x4b\x6a\x04\x97\xa0\x98\x5e\x86\x2c\x87\x9e\x76\xc4\x16\x6a\x12\x5f\x6b\x21\xfe\x28\x32\x39\xa1\x7e\xca\x1e\xa2\xa6\x44\xc2\x4f\xe2\xa3\xd8\xa7\x1f\xa8\xf2\x55\xd2\xa7\x14\x5a\x09\x43\xde\xd0\xc2\x90\x37\x54\x10\x9a\x99\xb0\xf5\x53\xc5\x3d\x63\xd5\xfe\x11\x05\x2a\xb8\x67\xa8\x86\x21\x6f\x98\x18\x01\x95\x72\xea\xcd\x5e\x9a\x64\xb2\xa1\xee\xec\xf7\x02\xd5\x6c\xb1\x85\x60\x4c\xd0\x38\x7a\x09\xd8\xe0\x9f\x85\xad\x02\x06\xf0\xbf\x54\x56\x18\x0f\x40\xaf\x12\xaf\x40\x5f\xc8\xdc\x3d\xaa\x7d\x79\x86\x27\xf7\x0d\xe4\x2a\xc8\xa7\x3e\x56\x62\xfb\x23\xec\xaa\x8e\xdd\xab\x0a\xf4\x94\x8e\x39\x11\xa5\x62\x65\x47\x4e\x31\x31\xf2\xd4\xcc\x87\x3c\xe3\x91\x49\x4f\x8c\xe8\x2d\x23\xec\xae\x41\x62\x11\xbc\xfc\x1a\xf2\x2e\x7e\x09\x2a\x0e\x4b\x4d\xce\x1c\x3b\x91\x84\xa6\x7b\xe6\x13\xb5\x8f\x76\x4c\xda\x0c\x4d\x4d\x35\xb0\x60\x18\x89\x2f\xe0\x67\x7d\x30\x63\x7b\x61\x33\x89\x5b\x83\x66\x9e\xa4\x53\x1e\xa0\xbc\xa8\xe3\xb5\x2b\x63\x17\x0e\xe1\x1a\x3c\xb6\x4d\x9a\x6c\xfc\x11\xb5\x06\x2f\x86\x91\x89\x8f\x6a\x2d\x98\xfb\x5a\xdc\x8c\x31\x32\x51\xea\xac\x5a\xf1\x4d\xcf\xa6\x61\xd3\x14\x99\xc1\xf4\x34\x47\xe2\xeb\x7c\x1d\x7c\x56\xc5\x16\xec\xa7\xc9\x91\xd5\x9a\x12\x95\x3e\x46\x57\xcb\xc7\x2e\x57\xc9\x06\x9d\x8e\xcd\x72\x56\xab\x81\x93\xd5\x8b\x0d\xc5\x5e\xe3\x7e\x3c\xaa\x7b\xfe\xfc\xb3\xa5\x1e\xad\x99\x85\x7a\xb3\x1b\x2e\x9b\xac\xa6\x7c\x61\x2e\x31\x32\xc0\x67\x8a\x4b\x94\xd9\xe6\x20\xa5\xc6\xe3\xa7\xe9\xa5\x83\x51\xc0\xb2\x77\x4a\x5f\xf6\x90\x67\xe9\xcf\x69\xfb\xe3\x62\x6c\x20\xe7\x78\x47\xdd\x0e\xaa\xae\x4c\x07\x0e\x54\xba\xf8\x90\xb2\x62\x14\x8f\xa0\x6f\x4d\xf3\x6a\xe5\x19\xd0\xa9\x11\x77\x7d\x30\x54\xf5\xac\xad\xa1\x36\x25\xde\xdb\xf0\x94\xd7\xdb\x98\x8b\x38\x39\x5d\x2a\x23\xcd\xef\x77\x96\xa8\x88\x59\x44\x1b\xb6\xb8\x4c\x11\x8d\x7d\x56\x75\xaa\xa4\x26\xb7\x9d\xd5\xdd\xca\x14\x72\xe7\x48\x41\x9a\xa7\xf8\x19\x8a\x44\xb3\x87\xcf\x2f\x62\xb0\x63\x56\x9e\x04\xf2\xc9\x5f\xd0\x50\x9e\x2f\x27\x83\x17\x55\xde\x12\x2f\x43\x09\xcd\x44\x6a\x4f\xfc\xaa\xda\x13\xbf\xaa\xda\x16\xb2\xc8\x5a\xf4\x38\x8e\x69\x90\xf3\x89\xaa\x86\xb5\xc2\xac\x99\x0c\xd2\x8c\xf5\x1d\x30\xed\x8f\xa9\xfe\x50\x86\x50\x85\x19\xb3\xfd\xa1\x11\xb3\x3a\xeb\x9b\x98\x25\x2b\x9c\x72\xa2\x57\x57\xde\x54\x7d\x1e\x91\xcd\x77\xd5\x16\x5e\xf1\xf9\x41\x31\x1c\x00\xbb\x9d\x50\x74\x3d\xe0\x22\xfc\xff\x87\x4a\x50\x7c\x4d\xf3\xe7\xca\x22\x4a\x07\x0f\xd6\xad\x61\xe1\x47\x14\x26\x4f\x6a\xa5\xa6\x93\xa5\x69\xf6\xf9\xfa\x72\xd8\xcc\xc3\x9e\x02\x13\x2f\x06\x1e\xce\xbe\x38\xdc\xa7\x44\xeb\x7e\xca\xb7\x26\xde\xc7\x45\xe1\x75\xee\xc1\xb2\xce\xce\x11\x23\x07\xb4\x37\x3f\xd7\x50\x38\x20\x0b\x06\x61\x6c\xdc\x0b\x74\xf1\x91\xd8\xf7\x58\x09\xee\x51\x86\x8e\x28\xed\xdd\xa1\xb7\x0b\xbc\x83\xa0\xc6\x09\x47\x17\xcb\xb2\xd8\x70\x16\xd7\x2b\xa6\x39\x34\xb0\x10\x19\x5c\xa7\x55\x1d\xf5\xe0\x77\x00\x21\x61\x5c\x8d\xf9\xcc\x7c\x8d\xc0\x30\x6c\x29\xa7\x50\xbd\x03\xf2\x39\x31\xaa\xfd\xd2\x2f\xf0\x24\x66\x0f\x75\x94\xfb\x3f\xd1\x4a\xa9\x30\x37\xc7\x52\xf8\x21\x41\x5e\xd8\x1d\x6f\xf1\x2c\xc4\xa6\x52\xae\xd4\x4d\x4f\x17\x21\x61\xee\xb9\xdf\x28\xb0\x5f\x51\xde\xbe\x57\x86\x5a\xb6\xa9\x88\x6a\x8b\xe8\xb1\x35\xe9\x8b\x79\x68\xf4\xc1\x1a\x30\xe6\xd4\x8f\xd2\xbb\x48\x51\xfa\x69\xb1\x68\xe3\x66\x57\x8b\x72\x9d\xd3\xa2\x5c\x45\xbc\xeb\x0a\xbf\x83\x0e\x1b\x2e\xe2\x01\xbe\xd8\xf0\x51\x20\xd7\x02\x81\xd5\x3e\x3b\xd2\x69\x6d\x44\xcd\xbc\xf8\x20\x06\xc7\xff\x3b\xf4\x4c\x2d\xde\xe4\x84\x90\x55\xa1\x4a\x60\xa2\x28\x34\x71\x13\x09\x2b\xb2\xbc\x2b\x0a\xc6\xbc\x32\x86\x9d\x9a\x2e\x53\x6b\x25\x08\xd1\x8a\x6a\xa7\x95\x17\x90\x78\x51\x4e\x14\x8f\x0b\x09\xd3\x77\xe9\x5b\x71\x7c\x41\xc1\x79\x1b\x8a\xbd\x15\x0f\x9a\x91\x35\xe9\xee\x62\x74\x3a\x0f\x12\x8f\x70\x72\x4c\x25\x7a\x70\xdb\xda\xbc\x1c\x98\x7d\x0a\xe8\x00\x16\x90\x5f\xa3\x9f\xc2\xcd\xec\x28\xd9\xf3\x1c\x3c\x58\xfc\x77\x89\x7a\xf7\x5e\x13\xff\xf1\x0b\xda\x01\xf5\x5a\xa0\x34\xb7\xdf\xae\x20\x37\xbe\x5e\xcf\x6c\xd4\x4a\x7a\xd8\x37\x5d\x4b\x87\x6f\xef\x28\xf5\x21\x1c\x98\xad\xb7\x6c\x2f\x69\x16\x19\x13\x00\x3f\x69\xb2\xaa\x39\x3b\x9a\x73\x5a\xea\xfb\x42\x25\xa9\x3b\x33\xcb\x61\xdc\xc9\x38\xe1\xc7\x08\x9e\xd4\x76\x78\x9b\xf4\x4c\x00\x05\x72\x0f\x20\x8a\xbb\x77\x15\x47\xb0\x9f\x14\xef\xaa\x25\x0a\x5c\x12\x2b\xd3\xb0\xe1\x13\x35\x9c\xfb\x51\x32\x68\x6b\x3e\xd8\x65\xfc\xa5\x68\xdf\x55\xc9\x33\x40\x2b\xa9\xe6\xe4\xc0\x2e\xd1\x40\x10\x0d\x8f\xe7\x54\xdf\x8e\x89\xc2\x2c\x0f\x9b\xda\xf4\x98\x07\xb0\x88\x34\x3d\xe5\xca\x31\x24\x1a\x51\x53\xbe\x54\x8c\x7f\xf1\x49\xb0\x9d\xa5\xf3\xd2\x4b\xf5\x2c\xa9\xf9\xde\xec\x3b\x6a\x26\xdf\x51\x72\xa7\x4d\x33\xc8\x30\x19\xbc\x73\xc8\x7e\x17\x25\x6e\x5f\xcd\xa7\xa7\xeb\x8b\x49\x92\xe5\x13\xbe\xda\x7a\x97\xb0\x09\xee\x7e\x15\xd9\x88\x8a\xfc\x34\x1b\x2c\x26\x69\x2b\x8c\x4d\x6e\xd1\x8c\x8b\xcc\xf6\x82\x82\xda\xee\x07\x8a\x83\x54\x2a\x92\x93\x41\x44\x6e\x27\x54\xcf\xde\x45\xfa\x30\x46\xf1\xdb\x18\x41\x62\x03\x5c\x35\x70\xc9\x43\x19\xbb\x28\x42\x94\x77\x15\xe1\xeb\x5d\xad\xa7\x4c\x7d\x69\xf3\xe2\x3e\x80\xb2\x35\xd6\xe6\x1f\xd2\x66\x80\x9d\xfb\xbc\x4a\xb1\xe2\x97\xdf\x78\x79\x42\xeb\xd8\x3c\x52\x8c\x8e\x8f\x86\xaa\xad\x66\xa2\x51\xc6\x8a\x66\xeb\x83\x38\xb3\x79\x1e\x89\x5b\xbc\x03\xdb\x5d\xeb\xc8\xbf\x45\x08\x86\xe9\xf2\xe9\x63\xfd\x0f\x63\x0b\x82\xae\xb0\x86\xe8\x87\x45\x46\xb1\x4a\x72\x33\xb5\x45\xd8\x33\x86\xe2\xb0\x55\xb5\x74\x9c\x3c\xe9\xb5\x09\x96\x32\xf4\x0d\xa3\xfe\x03\x7e\x92\xf3\x38\x39\x78\x90\x83\xfe\xf7\xb0\x77\x4b\xe7\x54\xb9\x2f\xa9\x98\xcc\xb9\x8d\xa2\x30\xb7\x93\xbe\x97\xe3\xa6\xf2\x3c\x38\x4e\x79\x98\x98\x40\xd2\x78\x41\xca\xfc\xd5\x2a\x23\x8e\x48\xac\xa0\x38\x7d\xa0\xe5\x48\x52\x89\x2a\x77\xae\x41\x73\x09\x5b\x08\x5b\x9a\x0c\x7d\xa7\x13\x1b\xc6\x81\x55\x7f\x5c\x85\xa3\xa0\x9f\x58\x2a\x09\xce\xb9\x4a\x74\xcd\xd9\x23\x5c\xd3\x35\xd2\xcd\x40\xd9\xaf\x72\xeb\x38\x22\xdc\x1f\xd1\x9d\x01\xa1\x80\xdc\x05\xbb\xec\xc2\x16\xca\xf9\xad\x4c\xcf\x30\x3c\x07\x0a\x2d\x1e\xe6\x25\xde\x81\x10\x45\x5e\x51\xf3\x78\x31\x32\xdc\xf0\x82\x21\x77\x3f\xf0\x7d\x9f\xf7\xb5\x37\x77\xdf\xa6\x82\xea\x3b\xb9\xc7\xf9\xfd\x5c\xbe\xbd\xaf\xe4\x71\xca\x2f\x6e\x66\xa1\x58\xb4\xb2\x24\x36\xe4\x8d\xef\x86\x29\x68\x10\x7c\xac\x7d\x77\x07\x51\xb4\xa7\x18\x8c\x62\xe7\xe0\x51\x5d\x18\x1e\x62\x4a\x3d\x89\x20\x0e\x6b\x9e\x36\xec\x64\x1a\x30\x77\x50\x62\xbd\x93\x76\x4a\x7a\x09\xa2\x6e\xad\x8d\x05\x7c\xef\x90\x3d\xd2\x4f\xd2\xdc\x19\xa8\x22\x42\x60\x20\x8a\x4f\x94\x9d\x70\xdb\x84\x69\xb4\xba\xdb\xc3\xf8\x77\xf4\xd7\x0e\xc7\x5a\x36\x7d\x09\x0c\x10\x08\x42\xce\xdd\xd0\xc7\xc4\xdc\xb8\x36\x54\x95\xe3\x47\x0a\x4a\x69\x9b\xac\x49\xab\x20\x77\xe0\x00\x5e\xc0\x48\xe0\xe3\x8a\x6d\x65\xb6\x9e\x25\x51\x88\xba\xbd\x68\x86\x78\xd8\xeb\x16\xa2\x68\xe8\x3a\xce\xfe\x07\x7e\xbf\xf9\xea\x50\xf1\x3c\xfe\x34\xa0\x08\x17\x4f\xf0\x2a\x02\x4e\xec\x96\x1f\x51\x88\x8a\x00\xe2\x1f\x21\x5b\x62\x1e\x06\x72\x4b\xe9\x2c\x2a\x46\xae\x60\xc6\x18\x88\x78\xe9\xd7\x87\x45\x34\xe1\x5a\xcc\xe6\x45\x25\x10\x6d\x6c\x4e\x22\xa3\x08\xa9\x69\xcc\x4d\x3d\x87\x57\x2e\x5e\x5a\xf4\xdc\x98\x3c\x37\xa2\xb8\x1d\x65\xc0\xff\x16\xb3\x08\xef\xe3\x1c\xa5\x0d\xae\x05\xec\xc0\xac\xd3\x80\xa7\x27\x0d\x68\xf1\x24\x26\x21\x7b\x6d\x01\xc0\x61\xdb\x6b\x84\xde\x58\x15\x4e\x2a\xa0\x06\xc9\x01\x22\x8f\x33\x54\x3a\x06\xa9\xed\x5f\x04\xb5\x2f\xcf\x38\xd5\x5e\x40\x4e\xce\x2a\xf8\xd5\xfd\x73\x5b\xeb\x94\x49\x00\x0a\xfb\x7f\x14\xa5\x71\xd1\x84\x51\x32\xc8\x51\xeb\x00\x3c\x78\x42\xbd\xde\x1d\x0d\x7a\xc0\xfc\x0f\xca\xab\x84\xb5\x21\x30\xe2\x36\xab\x9b\x2c\x63\xf4\xb5\x29\x4e\xba\x97\xb0\xbd\xa0\xfa\x4a\x3a\xa9\xb5\xb9\x20\x8f\x22\xa1\xe7\x5f\xc6\x95\x60\x5b\xd1\xe9\xb5\x99\x85\xfa\xab\xfb\x67\xc0\xb2\x11\xef\x3e\xa5\x7b\x8c\x78\x53\x1b\xfc\xf1\xff\x57\x08\x66\x16\x25\x2b\x62\xb2\xe0\x84\xa7\x5f\xf3\x27\xa5\x18\xe5\xf3\xf5\xc5\x64\x75\xc2\x93\xd6\xee\x52\xf3\x34\x26\x16\xfc\x01\x11\xe1\x1f\x53\x3c\x99\x9e\x89\x4d\x87\xf7\x38\xe7\xde\xeb\x22\x9b\x0d\x57\xd3\xeb\x0e\x7a\x26\xe6\x7a\x93\x6b\x1f\x7b\xd5\xdb\xec\xab\xfa\x07\xc7\xbf\x48\x8c\xf7\x00\xf6\x90\x37\x52\x6e\x9f\x3b\x04\x0c\x83\xa8\xd7\x8e\x81\x58\x7c\x99\x63\x0f\x7b\x6a\x22\x06\xa3\xac\x1a\x9f\xf1\xdc\x9a\x5c\x54\xe5\x30\x04\xc5\x3a\x10\xe8\xce\x69\x5c\x0f\x62\xd7\xcb\xa5\xc6\xb1\x62\x31\x60\x65\x33\xdb\x77\x3a\xa7\x18\xb3\xc7\x02\xdf\xc6\x78\x4c\x11\x9d\x8b\x55\x9f\xa9\x4c\xce\xee\xf0\x03\x9a\x43\x7c\xac\xe0\xb8\x95\x24\xa1\x92\xd8\x01\xa9\x9d\x5f\x45\x2a\xcd\x27\x63\xad\x7d\x51\x68\x77\xab\xba\xdd\x9f\x21\xea\x46\x51\x78\x9d\x96\x0b\xa9\xa4\xe0\x06\xf9\xcf\x86\xca\x2f\x64\x43\x75\x59\x6f\x28\xb6\xc6\xbf\xa9\x12\xf0\x25\xd5\x3a\x0a\x90\xb0\x5b\x1c\xa3\x77\xaa\xfa\x5b\xc4\xbd\xec\x96\xda\x07\x7a\x49\x1a\x66\xdd\x30\xe7\x1e\x0a\xf1\x6e\xf1\x44\xae\x4b\x25\x0b\x19\x4a\x73\x72\x93\xfa\xec\x19\x38\xdd\x9b\x34\xf4\xf9\x58\xa1\x41\xcd\xd4\x34\x97\xc8\xfb\x05\xf5\xe8\xf1\x56\x17\x1a\x1e\x7c\x12\xa8\x9d\xf7\x1d\xd5\xca\xad\x9d\xb9\x4d\xbf\x6f\x4d\xca\xac\x00\xac\x2f\x3f\x0c\x3c\x6f\x43\x97\xf7\x3b\x61\x92\x76\xc2\x44\x55\x7c\x7e\xa2\x6a\xe4\x3f\xa9\xf2\x60\xcf\x6c\x14\x21\x02\x17\xdf\x8b\x9a\x93\x78\xbe\xa1\xa8\xf8\xef\x7b\x3d\x80\xd5\xb8\x95\x26\xbc\xee\xe0\xc1\x43\x5b\x98\x8f\x2b\xf2\xec\xb9\x43\xf5\x76\x68\xb2\x66\x82\x67\x2e\x7a\x24\xbe\x88\x31\x66\xdb\xdb\xb1\x71\x33\xb4\xd9\x2e\x5f\x7a\x5c\x0f\x54\x46\x76\x4f\xfb\xca\x83\x48\x8e\xf2\xe9\x35\xc2\x2e\xf9\x38\x50\x72\x74\xeb\x8a\xc5\x95\x44\x2d\xe8\x3e\x69\x1f\x25\x61\x1d\x78\xd9\xe2\x8d\xa1\xdf\xdd\x4e\xd2\xf7\x22\xef\x86\xac\xac\xee\x40\x55\x66\x12\x73\xbe\x23\x70\x5e\xb4\x08\x8f\x95\xb2\x1f\x67\x7c\x0d\x14\x58\x77\x05\xd2\x7c\x91\x89\x50\xe1\x5c\xab\x38\xcf\x53\x3e\xbb\xad\x69\x03\x37\xf1\x19\x12\xe3\x1b\x1a\x60\x40\xcb\xd9\xa3\x10\x04\xa3\xb3\xce\xfe\x3b\xcb\x93\x3e\xb1\x1d\xb0\x33\x7e\x86\x62\x18\x70\xef\xbf\x8b\x5d\x5a\xe8\xee\x35\x27\xb4\x30\x09\xa1\x6d\x3c\xeb\xb7\xb5\x7c\xeb\x27\xa5\x41\xf6\x9f\x92\x24\xff\x98\x55\xdd\xdc\x50\x35\x8c\xcc\x39\x68\xbd\x9d\x5a\xdb\x72\x0e\x9e\x0e\x8e\xf1\xd0\x8c\x02\x4b\x8a\xfc\x28\x14\x29\x30\x20\x08\x3f\x51\xd6\x5b\x6b\x0a\x8c\x5b\x43\x0c\xc3\x7f\xa4\x6c\x09\x6d\xdc\x72\xfd\x90\x18\xe5\xe8\x0e\x14\xa7\xcc\x9a\x53\xd9\xff\x24\x18\x13\x87\x7c\x1c\x49\xba\x67\x5a\x76\x52\x65\xa4\xdc\x71\x87\xe1\x35\x45\x0f\xd6\x19\x96\x17\xdf\x27\xc9\x92\x6a\xb1\x4e\x07\x2d\xcb\x95\x9a\x31\x52\x87\x00\xb5\x63\x80\xd4\xa0\x37\xa9\xaa\x21\xf7\xf9\xd5\xf3\x99\x96\x62\xa3\x60\x49\x36\x48\xe5\x46\xd1\xec\x4e\xaa\x0b\x79\x92\x40\x37\xa0\x99\xbb\x47\x3e\xac\xf8\x98\xc2\x0a\x24\x9e\x6f\x29\x02\x74\x9e\xc4\x36\x9b\xf4\x32\xd2\x90\x40\xc7\x1d\x82\x70\x81\x75\xe4\x1a\x7d\x5e\x84\x9d\x9e\x71\xd9\x47\x18\x37\xc3\x7e\xc4\x39\x3c\x50\xba\x2d\xfa\x0a\x24\x8e\x4f\x35\x7c\x17\xe1\xc3\xb2\x62\xf9\x5c\x7d\x7e\xff\x0b\x9e\x92\xf0\x5d\xa5\x7c\x78\x98\x7a\x45\xc7\x94\xdc\x91\xa1\x3d\x42\x55\xde\xcd\x59\xed\xcb\x47\xc3\x00\xe1\xc6\x7b\x81\xae\x76\x80\x6e\x81\xfa\xc8\x8d\x40\x59\x6d\x5d\xc0\x56\xe8\x76\xae\x03\x52\xfe\x7c\x82\x50\x5a\xe0\xd0\x1f\x68\x57\xa1\x2d\x0a\x12\x5d\xa6\x35\x3d\xed\x34\x67\x8b\x58\x47\xa8\xd5\xbe\x50\x7e\x93\xa2\x51\x56\x47\xa1\x5d\x04\x97\x71\xc7\x85\x0f\x4b\x61\x6e\x5a\xa6\xe6\xf9\x05\xbc\x8a\xf0\xc9\x18\x2f\xb1\x67\xd3\x67\x54\x57\xc8\x35\x5a\x3b\x05\x2a\x2d\xbe\x1c\x70\xc2\xce\x86\x22\x5c\xb2\xe6\x2e\xc0\x76\x14\xbc\x11\x80\x5f\x0b\x10\x04\x8b\xe9\xa2\xdf\x0d\x76\x22\x68\x77\xbd\xeb\x73\xca\x81\xd1\x07\x1c\x2c\x1f\x81\xe8\x04\x0d\x33\xc0\x51\xae\xa2\x36\x8b\x07\x36\x86\x6b\xbd\x0b\x8e\x95\xc4\xb7\x1e\x6e\x89\xc2\x36\x3c\x9d\x11\x46\x4f\x8e\x94\xac\xd3\x95\x61\x11\xc4\x33\x45\x51\x29\x4e\xec\xc4\x12\x86\xfc\xe7\xfb\x74\x63\x98\x63\x77\x10\x8f\x88\x0a\x5c\xcd\x39\x8e\xee\x6e\x50\x02\xc1\x7f\x85\x81\x20\x32\xaf\x74\x95\x98\x21\x5b\x3a\xec\x39\x4d\xfb\x08\xcb\x1c\x23\xd4\xe7\x5f\xac\x2a\x41\x92\x94\xf3\xae\x6d\x1c\xa6\x83\x07\xf9\xf8\x56\xe0\xe7\xc6\xae\x86\xee\x11\xc7\xcf\xb3\x83\x84\x9a\xac\x37\x2b\xa5\x8c\xb3\x3c\x89\xf2\xa3\x3d\x13\xab\xa6\x38\x1e\x35\x7c\xe2\x28\x0b\x51\xd2\x5b\x34\x29\x5a\x2b\x24\x32\xf1\x18\xc7\x0f\x86\x0a\x56\xbd\x11\x3c\xa7\x04\x55\xd2\xa4\x17\x66\x96\x1b\x03\xd9\xd5\x57\x75\x5b\xb3\x15\xa0\x14\xcb\x7c\x68\x4a\x06\x44\x2d\x2b\x4b\xa0\x93\x24\xf5\xf2\xa4\x0a\xbd\x75\xd4\x1e\x48\xb0\xa1\xc0\xb2\xa6\x03\xbf\xbb\x3a\x39\xa9\xb2\x8c\x6c\x47\xc9\x0a\xc9\x96\x2b\xe3\xdd\x8f\x55\x23\xfc\xc7\xa5\xc4\x6b\x7a\xba\x9e\xa7\x54\x19\x99\xf0\xd1\xdf\x43\xcc\x12\xa4\x93\x1c\x7a\x4a\xd7\x84\x3c\x16\xd3\xee\x74\x4d\x1c\x66\x39\x24\x7f\x0e\x39\x8e\xa8\x26\x8c\x56\x08\x39\xcf\x08\x4b\x0b\xa1\xa7\x38\xfd\x7a\xf4\xa4\xec\x7b\x30\xb3\x20\x4d\x4e\xec\x62\x88\x29\x73\x67\xa8\x9c\xe8\x58\xa4\x12\xa4\xbf\x27\x1a\xbe\xf9\xa9\x6c\xad\x39\xbf\xbf\x1e\x59\x74\xe6\xb1\x4a\x0e\xa0\x1a\x70\x6d\xd0\x43\x71\x13\x69\xbb\x28\xc2\x29\x48\x39\x74\xfa\xc6\xa2\xaf\x5f\x8c\x26\x2c\xeb\x1f\x0d\x7d\x01\x40\x4b\xfe\xc5\x36\xec\x74\x17\x93\x94\xf0\x40\x97\x26\x14\xcf\x09\x20\xa0\x14\x9d\xf9\x8c\x5e\x98\x24\x1d\xcf\xa8\xb6\x6c\x4a\xbd\x75\x77\xe4\x37\xf1\x08\xf8\x04\x91\x24\x9e\xc7\xd7\xb5\xd0\xdc\xd7\x4b\x88\x31\x35\x0a\xf5\x93\x54\x02\x19\x25\x36\x72\xc8\xc9\x33\x78\xaa\xf5\x4a\x92\x66\x39\xc5\x76\xb2\x10\xd7\x9c\xff\xca\x86\x32\xdb\xef\xd9\x22\x1f\xb1\x10\xcd\x77\x31\x9b\x5f\xa3\xab\xc4\xc8\x0f\xb1\xbe\x92\xd0\xb5\xc4\x43\x61\xcc\x5c\xe1\x73\x0e\xa6\x4d\x8e\xac\xa6\xe1\x62\x42\xd5\xa5\xb0\x59\xf3\x9b\x08\xa6\x32\x1f\xbb\x54\x59\xf4\x99\x5d\x40\x7f\x56\xb7\x0c\x9f\x2d\xd5\x73\xbc\x2a\x68\x68\xb8\x0c\x84\x0d\x99\xc9\xd8\x7c\x52\xfa\xdc\xfc\x5c\x7d\x10\xf7\x53\x4b\xda\x4b\x35\x35\x16\xd7\x15\x19\x75\xdd\xc5\x86\x9d\x24\x6a\x2d\xda\xb4\x43\x29\xab\x4b\xdb\x7d\x7f\xcf\x86\x2a\x26\xf6\x5f\xee\xbd\x4c\x02\xc9\x18\x9a\xec\x48\x8a\xbd\xe1\xb4\x2a\x0b\xdd\x52\x3a\xa9\x8c\x8d\x0b\x02\x5c\x51\xea\x68\xa7\x49\x9c\x43\x0c\x41\x9c\xdc\x6b\xce\x33\xee\x8a\xd2\xad\x68\xb6\xf6\x28\xb6\xe6\xe6\x50\xb1\x35\x21\xb4\x28\x42\xf7\x6a\x71\x64\xd7\x79\x3e\x19\xfa\xfc\xe1\x94\x92\x2a\x62\x3d\x48\x07\x2d\x38\xd5\xc5\x8a\x1e\xc2\xe9\x7a\x37\xc9\x72\x35\x3e\xde\xd2\x3a\xaf\x2a\x06\xb4\xff\xd9\xdf\x9b\xd4\xdd\x88\x4a\xfb\x76\x6d\xe8\x5b\x79\x1e\x6a\x57\x8c\x1f\xb9\x64\x70\xa5\x9b\x24\xfd\x22\x88\xf6\xc3\xfb\x1c\x6d\x79\xa2\xa1\x42\x83\x12\x88\xe1\xee\x91\x6f\x04\x78\xae\xf1\x19\x05\xe2\x64\xd9\xe3\xa5\x55\x9f\xf5\x60\x75\x3b\x19\xc4\x2d\xe6\xe7\x72\x67\x00\xdd\x94\x74\x09\xf8\x44\x38\xe2\xbe\x6b\xbf\xc1\x71\x1b\x2e\x9f\x8c\x7c\x12\xf0\x86\x5d\x09\x33\x74\x4b\x21\xa1\x7e\x10\xf8\x44\xfb\x81\xca\xea\xdb\x49\xb4\x94\xd5\x3c\x3a\xfe\x11\x85\x4f\x7c\x5c\xc2\x0c\x16\x5e\xa9\x47\x83\x23\x83\x34\x4c\x06\x98\xdc\x40\x24\x91\x54\xf0\xb1\x92\x56\x6a\x25\x83\xc5\x22\x12\x2e\x22\x1f\xdd\x97\x30\xa6\x69\x24\xc1\xad\xb7\xf6\x4e\xf3\xae\x4d\x27\x7d\x69\xf9\x23\x44\x48\xc8\x61\xbf\xad\xc8\xbb\x37\x31\x0a\xf1\xf0\x1f\xba\xc9\x5e\x4c\xbe\x38\xa7\x97\x07\x28\x16\x75\x77\xe4\x4d\xfb\x46\x3e\x1f\x3e\xa7\x05\x9d\xae\x81\x9f\x34\x5e\x8d\x33\x93\x7e\x0b\x39\xa9\xb5\xf4\xef\x52\x0c\xcb\xf2\xa0\x14\xe7\x22\x9c\xd2\xa6\x2f\x51\x11\xf8\x58\x1e\xaf\x02\x4a\x7a\xe2\xf8\x15\x55\x8d\x6b\xd9\x6c\x09\xcb\x85\x6b\xb8\x28\xae\x4c\x08\x61\x15\x35\x6e\x6e\x2a\x9f\x50\x4e\x89\x28\x3e\xc8\x3a\xe5\x1f\xb4\x27\x6b\xf6\x6c\x96\xa5\xd9\xcb\xbb\xb4\xed\x39\x74\x03\x45\x14\x87\xde\x95\x13\x34\x74\x54\x15\x9e\x41\xe2\xa5\x4c\x0f\x82\xe2\x82\xdf\x7a\x6e\x34\x2e\xf1\x16\x7f\xb6\xe6\xf4\xda\x3e\x09\x94\xde\xe8\xbb\x04\x4a\x88\x92\x41\xf1\x12\x44\x4b\xcd\xb7\xd8\x9f\x1f\x7a\xbf\x83\xdb\x0a\xa7\xde\x42\x86\xe3\x84\x87\x8b\x67\x83\x8c\xff\x7f\xd5\x56\x88\x27\x55\x81\x6e\xc7\xc8\x2b\xb7\xfc\x2e\xc2\x75\xf1\x02\x57\x9b\xe5\x79\x3d\x2d\x6f\x32\x44\x89\x68\xee\xc6\x50\xc9\x30\x4c\x34\x14\x39\xf1\x3d\xed\x18\xfc\x1e\x00\x50\xc4\xcf\x8f\xf0\xfc\xf8\x86\x55\xb6\x7e\xae\xb4\xf6\x16\x83\x6b\x91\x3c\x06\xe7\x65\x8f\x44\xfd\x9a\x8f\xc7\x72\x9c\x38\xef\xee\xa1\xab\xa1\xfb\xf9\xed\xe7\x69\x3c\x23\x4c\x78\x80\xf2\x85\xb8\x01\xd4\x9c\x3b\xff\xd3\xb0\xa8\x74\xae\x7b\xd3\xe2\xb5\x73\x2d\x18\x5f\xee\xe7\xa5\xc3\xec\x16\xfd\x3e\xd6\xbb\xaf\xba\xba\xbc\x69\xb7\x4d\x98\x32\xcc\x8c\xf4\x49\x48\x22\x18\x40\xbc\x13\x21\x92\x3d\xad\xda\xed\x4f\x68\x21\xe8\x1d\xa3\x7d\xae\x2f\xaa\x65\x27\x94\x23\xe0\x2d\xdd\xa1\xb7\x89\x97\x8b\xfc\x6d\x77\x43\x2e\xc2\xc6\x2a\x4e\xc3\x8d\xdf\xa4\x5f\x42\x81\x7e\x07\xb5\xf2\x89\x98\x41\x95\x17\xa9\x89\x73\x1b\x25\x7d\xab\x05\x63\xbe\x1f\xf8\x91\xf7\xfd\xb2\xcd\xd6\x74\x11\x6e\xb6\x07\x5e\x19\x0b\x3b\xdc\x49\x25\x03\x74\xb2\x24\x5a\xf2\xf9\x7a\x9e\xa4\x31\xae\x13\x4f\x12\xee\x48\x48\x42\x2f\x51\xa6\x2c\xb5\xc7\x52\xf2\xff\x7a\x7d\x76\xf6\xdf\x47\x02\x8a\x71\xff\x8f\x29\xe5\xc7\x63\x3e\xa1\x2d\x7b\x08\xfa\x90\xf4\x95\x2e\x0e\xef\xf6\x4c\x50\x7b\xe9\x25\xef\xe0\x3c\xb3\xc0\x01\x24\x1a\xa2\x5c\x24\x5f\xac\x9a\x08\xb3\xd9\xd2\x01\xc3\x97\x01\x30\x24\x76\xb7\xa9\xc8\x85\x41\xfe\x2c\x92\x3c\x8c\xe5\x6f\x04\x5e\x26\xed\x4c\xa0\xe8\xb7\xdf\x0a\x94\x5c\xe2\x25\xcd\x07\x38\x47\xa8\x00\xa0\x03\xee\x0e\x90\x29\x47\xa3\x17\x4f\xea\x37\x40\x4f\x03\xca\xf4\x20\x50\x62\xd5\xf7\xbc\x92\xed\xff\xfe\xdc\xc8\xa3\xda\xd8\x95\x9d\xd5\x6e\x91\xc8\xba\xee\xa6\x2f\x7c\x85\xf3\xf3\xfb\x98\x94\xac\x28\x8c\xbd\x44\x7c\xb0\xbc\xec\x92\xe8\xc6\x99\xc5\x68\x75\x4a\xd5\x64\xcf\x63\xe9\x11\xb9\x54\xba\x5d\xac\x30\x97\x01\xa1\x08\x05\xc0\x4f\xc9\x7b\xaa\xb3\x9b\x98\xae\x76\x92\x6e\x0c\xeb\xdd\x0f\x70\x39\x7c\xa2\xdd\x2c\x94\xc6\xcc\x79\xbd\x45\x93\xc3\x4c\xcd\xc9\xa4\x5c\xd0\x6c\xc4\x0b\x5e\x4f\x35\xb6\x2b\x53\xda\xac\x15\x8b\x9e\xcc\x58\xdf\xdf\x0d\xde\x81\xb8\xad\x7a\xd3\x82\x47\xa5\x9a\xec\xcc\x42\xbd\x63\x7a\x8b\xac\x64\x83\xe9\x35\xd9\xf0\xed\x8c\x93\x23\x17\x31\x25\xe9\xd2\x8a\xb5\x4b\xca\xb1\xe9\xb8\xca\x8c\x8f\x8f\x21\x7c\x49\xdc\x7a\x6e\x0c\x5f\x73\x79\xf0\x03\x6c\x18\x4e\xfa\xc6\x51\xc0\xaf\x6a\x59\xce\xad\x40\x09\xbd\x72\xef\x2d\x77\xb0\xd0\x30\xc7\x5f\x5d\xc4\x9b\x76\xba\x0e\xde\x34\xf0\x4f\x31\x02\x31\xce\x3e\xc1\x62\xae\x35\x7c\x51\x05\xe2\x12\x95\xd6\xb9\x10\xa7\x2a\xa5\xdd\x82\x9d\x4c\x3a\xeb\x69\xfa\x88\xbd\x99\x27\x36\x35\x97\xfa\x61\x8e\x66\x27\x87\x92\x49\x70\xf2\x3f\x94\xd5\x98\x67\x67\xeb\x5d\x9b\x66\x36\x6a\xd7\xe8\x15\x3a\x8e\x95\xf2\x49\x52\x45\xfd\xd0\x46\xad\x6c\xd2\xbb\xea\xdd\xa5\x89\xcb\xc7\xb8\x6f\xbc\xf8\x37\xf1\xa8\xf8\x44\x75\xd2\xf5\x92\xd8\xa4\xcd\xee\xaa\xb6\x31\xe2\x26\x0e\xf9\x6d\xe5\x37\xd4\x26\x98\x80\xbe\x17\x70\xd0\x75\xe5\x7d\xf2\x43\x7c\x4c\xc0\x66\x1f\xe1\xa4\x61\x66\x9f\xa0\x7f\x43\x10\x01\x9c\x4e\x12\x66\xfa\x36\xfe\x07\x4c\x2b\xac\x61\xf7\xb1\x3c\x89\x1e\x47\xf1\x76\x58\xbe\x3e\x50\x8a\xb1\xf7\xa9\x96\x01\x74\x7f\x47\x89\x9b\x3e\x3b\x5b\x5f\x4c\x06\x9d\x2e\xa5\xcc\x33\x1c\xdb\xee\xa2\x61\xac\x45\x45\x5c\x0f\xff\x01\xa1\x34\x5c\xd6\xed\x25\x49\xd2\xa3\xf4\xd1\xf1\x7b\x3d\xd7\x57\x6b\x05\x18\x36\x62\xf0\xee\xcc\x35\x27\xd0\x7a\x5d\xb7\x1a\x5e\x2a\xd5\x5d\x17\x5e\xa9\xdb\x23\xe8\x79\x9f\x9d\x75\xba\x7a\x5e\x21\xf9\x7c\x29\x1c\x9f\x59\xa8\xdb\xc8\x2c\x26\xa9\x70\x83\x30\xf4\x6e\xab\xfa\xec\xed\xaa\x24\x2a\xcb\xcd\x2a\xa5\x47\x58\xb7\xf7\x22\xb8\xc1\xe4\xb8\x4e\xbb\x86\x20\xfd\x9e\xf4\x72\xbd\x54\xf2\x99\x9d\xad\xdb\x36\xfb\x50\x72\xfe\x82\xfc\x16\x96\x07\x7c\xac\x4d\x10\x93\x28\x4a\x56\x30\x76\xbe\xc4\x8f\xe1\x7f\x53\xbe\x50\x60\x11\x8a\x7f\x92\x2f\x6e\xfa\x66\x37\x7a\xb0\x42\x9e\xa3\xb7\x29\x6a\x5e\x1e\x1f\x89\x4c\x92\x3b\x3f\x4d\x2c\xc8\x9b\x63\xc0\xca\xa6\x76\x57\x32\x61\x1a\x5b\xce\xd4\x44\xc9\x83\x3e\xc9\x27\xca\xf5\x35\x1b\x64\x54\x8d\x16\x62\x10\x68\x13\xd7\xf1\xe7\x7c\x52\xe5\x86\xb5\x68\xe2\x25\xef\x0b\xcf\xaa\x6e\x18\x0a\x22\xf1\xe6\x84\x19\x8f\x34\xad\x15\xa0\x02\x0f\xf0\x04\xee\x93\x4f\x4a\x43\xa0\x48\x89\x07\x29\x75\x86\x58\x95\x6e\xb2\x8e\xa6\x24\x5a\x65\x9e\x85\x16\x99\x9f\xe1\xf5\xeb\x2d\xad\xaf\xfa\x9b\x34\x70\xb1\x7d\xbf\x13\x6c\x53\x9a\x9f\x9e\xae\x1f\x3e\xbc\xcb\x8b\xb7\x5d\x1c\x7a\x51\xb7\x8b\x04\xba\x73\x1b\x97\x1a\x40\x90\x2c\x40\xf5\x01\x8e\x3a\xd8\x76\xce\x94\x46\xe8\xe7\xe1\x4f\xac\x40\x9d\x4b\x08\x59\x45\xbb\xab\x9c\x0e\xcd\x6b\xe3\x1f\xd1\x35\xf3\xe1\xf7\xa5\xd2\xe0\x3d\x30\x5b\xcf\xbb\xa9\x35\xb9\x8d\x5d\xc7\xb9\xa3\xe5\xb9\x5e\x38\x50\x9f\xc0\x88\x79\xa8\x01\xae\xa4\x15\xb6\x43\xde\x95\xa5\x7e\xe6\x0b\x89\x1b\xa5\xd7\x34\x3b\x5b\xef\x99\x74\xc9\xfa\x62\x3b\xd2\xc5\x2d\x85\xc4\x6f\xa9\x15\x39\x59\xb6\x69\x33\xe9\xd9\x22\x0b\xde\x42\xa4\xcb\xc4\x89\x40\xb9\xa4\x70\x15\x06\xb1\xe5\x86\x72\x3b\x48\x56\xe2\xcf\xfa\xae\xbf\x2d\x7a\x23\xa8\x80\xdd\x56\xac\xbb\x93\x18\x5a\xb8\xd5\x67\x47\x9e\xa5\xf3\x74\xa3\x58\x4f\xe9\xff\xff\x72\xbd\xb1\xf3\x67\x3c\x08\xef\x74\xd7\x9e\x64\x71\x09\xf6\xc9\xc5\x5e\x2b\x9c\x74\xba\x41\xe6\xef\x0d\x55\x69\x89\xfb\x3d\x11\xaa\xee\x1b\x15\x63\x06\xe5\x8c\xb3\x14\x17\x73\xb7\xd7\x88\xb6\x57\x11\xc9\x2a\x52\xeb\x31\xa5\x4f\xba\x96\x5f\xad\x23\x22\x55\xaa\x4d\xd2\xfd\xf2\x02\x1a\xa1\x71\x2d\x37\x95\x7a\xfc\x8b\x0d\x8f\xdf\xc6\xe6\x28\xcb\xae\xe3\x77\xee\x6a\x65\xae\xbb\x0e\x49\xe8\x85\x59\x26\xdd\xbf\xae\xc5\xcc\x97\x85\xaf\xa8\xa6\x94\xc5\xb0\xf3\x7c\xf1\x98\x45\x2d\xcf\x53\x7b\xd8\xe4\x8b\xd9\x1c\x08\x1e\xc4\xc0\x5b\x41\x6a\xd7\x03\x2f\xdf\x70\x13\x9d\x16\x18\x17\xdf\x44\x50\xe4\x0c\xa0\x3c\xf0\x76\x1d\xcf\x13\x0b\xf7\x59\x0a\x97\xa4\x5f\x6a\x6c\x3d\xf3\xa5\x03\x2e\x5c\xe1\xb1\xa1\x77\x0a\x01\xf3\x35\x25\xc5\xb8\x85\x17\x28\x4c\x28\x7a\x81\xa2\xe6\xa9\x88\xa3\x97\x86\xbe\xad\xb1\x1d\x46\xbd\x49\xef\xc8\xf5\x50\x5b\xe7\xd2\x0a\x8f\xf8\xea\x01\x16\x4b\xb1\xe1\x71\x3d\xa4\x26\x4a\x7a\x49\x3c\xa9\x88\x7c\xff\x82\x73\x71\x29\x7f\xf8\xc5\x68\x43\x09\x8a\x6c\x2a\x70\x3a\x8c\x07\x61\x5e\x53\x4d\x29\x6b\x34\xec\xe5\x0b\xb6\xaf\x19\xf3\xfb\xa1\xb7\xcc\x4b\xe0\xd6\x79\x84\xf6\xb8\xb5\x37\x55\x6e\x79\x52\xd5\x86\x4d\xdc\x11\x15\x57\xd7\xd2\x5f\xbc\x5b\x69\x9c\x79\x1c\x8c\x6c\xa2\x90\xdb\x31\xf0\xfd\x5f\x1b\x2a\x35\xf3\xaf\xa9\x26\x8b\x5f\x19\xd8\xd4\x36\xbb\x49\x4d\x37\x42\xdc\xd1\x56\x38\x77\xdc\x53\x6b\xd9\xe5\xb0\x69\x65\x5f\x71\x7d\x93\xde\x52\xa4\x36\xf2\x8c\xa7\x76\x08\xc3\x77\x8f\xd7\x8f\x51\xf6\xe9\xb5\x22\x30\xfc\x9a\xe2\x23\xe4\xc9\x20\x0d\x33\x04\x3e\x88\xaa\x1f\xd0\x9b\xe5\xe3\x12\x29\x66\x66\xa1\x9e\x15\x4b\x9c\xc8\x08\xe0\x3a\x4e\x2a\xce\xfb\xc9\x92\x79\xd5\xf4\x74\xbd\x9f\xf4\x95\xe6\xe2\x75\xe5\xd7\xe5\xfd\xaa\x9a\x5d\x93\x9a\x66\xce\xc2\xd6\xe8\x08\x82\x8b\x2d\x1f\x3b\x0e\x77\xd8\xb2\x26\xdb\xe5\x19\x2d\xbb\x46\x7e\x9e\xdf\xa1\x79\xa9\x6a\x6a\xaf\xeb\x52\xe1\x21\xb4\x30\xfd\xd1\xdf\x6c\x68\x0c\xbe\x14\xa8\x7d\xbe\x9e\xf5\x92\x25\xb7\x92\x63\x71\xfc\x90\x86\x25\x1f\xbb\x05\xa4\x6d\xd2\x9e\x45\xc1\x07\x21\xd5\x54\x43\x49\xf9\x71\x8a\x22\xfc\x4b\x4f\x0d\xbf\x51\x42\x23\x48\xf2\x3f\x2d\x1e\x42\x8b\x99\x24\xe8\xb6\x82\xb0\x28\x1f\x0f\x5f\x70\xb3\xc1\x1e\x69\x46\x83\x2c\x5c\x0e\xf3\xd5\x9a\x5a\x71\x2e\xe9\xb5\xe4\x92\x62\x7e\x2f\xa6\xd6\x14\xb7\x44\xee\x24\x48\x2d\x21\x7d\x03\xf0\x1e\x25\x47\x71\x82\xa8\x29\x27\xb4\x62\xd1\xe2\x75\x4a\xad\x07\x79\x18\xaf\x4e\x79\xf2\x2e\x2b\x5c\x72\x62\x46\x6b\xba\x03\xff\x1c\xbf\xe1\xd7\x30\x97\x24\x7b\xf3\xf7\xd2\x1c\x64\x79\xd2\x33\xa9\x48\x73\x62\x3b\x38\x8b\xb5\x88\x4f\xb4\x34\x6a\x98\xe5\xd9\x94\x77\xbd\x67\xc0\x01\xeb\x1c\xf8\xfc\xcc\x7c\xa7\x9b\x12\x16\xbc\xe2\x4f\xdd\xaa\x50\x56\xaf\x67\xcd\xae\x6d\x0d\x5c\xc8\xc4\x8d\xce\x58\x5c\xc5\x9e\xa4\xf8\x6e\xec\x6e\x17\xdc\x70\x6c\xdb\x28\x3c\x42\x83\xd6\x71\xe5\x8a\xc1\x25\x5c\xb9\x8a\xe4\x2f\xcb\xd3\x70\xc9\x72\x1b\x02\x96\xea\x35\x7a\x4e\x22\x73\x4a\x17\x80\x77\xfe\xfb\x43\xd5\xd4\x70\xc7\xc9\x7e\xd8\xc8\xf6\xbb\xc6\xf5\x3c\x00\x29\x3a\x36\x54\x2d\x86\xc7\x02\x5f\x9f\x8e\xc3\x4e\x37\xef\x19\x56\xdb\x42\xa0\x30\x41\x0f\x8a\x8f\x47\x15\x8e\xe9\xcd\xa4\xd7\x8f\x2c\x74\x90\xd8\x2f\x59\x99\x44\xdc\x2b\x45\x75\x0b\xaf\xd4\x23\xdb\x86\x9e\xaf\xd3\x1f\x72\x3d\xd8\x93\x0d\x9f\x60\x5f\xd2\x49\xeb\x39\xc5\x23\xea\x27\x61\xc6\x7a\x14\x0e\x96\x2e\x6e\x0f\x58\xc6\xa3\x40\x99\x53\x9f\xd7\xb4\x6a\xce\xfe\xa5\xa3\xc5\xdf\x78\x77\xb5\x95\x9a\x41\x14\x36\xa9\xd9\x07\x09\xe4\x5d\xd5\x28\x81\x5a\x30\x3a\x8a\xcf\xb8\xa5\x68\x31\x4d\x68\xfa\x67\x13\xba\x0d\x9c\x15\x07\x1c\x14\x50\xbc\x64\xfc\xe2\x83\x2a\x60\xa5\x19\x85\x71\xd8\x9c\x18\x8b\x26\x7c\xfc\x0e\xbb\x5c\x0c\xa5\x3f\x51\x75\xad\xa5\x24\x9e\xf4\x2a\x0c\x80\x4e\xdc\xa7\xe7\xf7\xbb\xed\x8b\x7e\x1d\x0f\xf0\x91\x8a\x0b\x7b\x61\xeb\x09\x9f\x5c\xbe\x0b\xee\xb8\x30\x1c\xe9\x19\xc9\x62\xaa\x36\xfd\xb3\x2a\xb2\x7d\x14\x78\xce\x2c\x48\xe5\xde\x6b\x7f\xbf\x23\xcb\x8d\x69\x9b\xf4\xb3\x27\x7c\xe1\xef\x2a\x7d\x1e\xf3\xfd\x74\xe0\x95\x6b\xd7\x29\xcf\x95\x72\x8f\xcf\xe6\xd1\x3a\xc5\x18\x0c\x2e\x8a\xff\x08\xc0\x00\x96\x97\xbb\xa5\x07\x3c\x3b\x7b\xa8\xde\x4c\x06\x4d\x5d\x02\xbb\xa2\x4a\x60\xec\xb6\x28\x94\xb3\xf8\xa7\x94\x01\xd9\x55\xba\x16\x8e\x1f\x81\x42\x82\xfd\xb5\x0b\x31\x27\x80\xd3\x49\x48\xa8\xd1\x0a\xf3\xb9\xcf\xa2\x55\x1e\xf7\xbf\x13\xc0\x3b\x50\xd4\x63\xcc\xaa\xc7\x57\xff\x64\xa8\xd8\x0e\x7b\x49\xf5\x8d\x63\x29\xc2\x6c\x80\x87\xa3\x45\x8c\x25\xf4\x10\xaf\xf1\xa7\x69\xbb\x03\x8b\xff\x9a\x16\x44\xde\xc4\xbb\xe3\xca\x94\x77\x5f\x39\xf8\xb9\xd1\xc4\xa1\x7f\xf8\x65\x5e\xfa\x4e\x56\x74\xff\x2a\x69\x79\xa9\x22\x81\x7c\x8a\x65\x67\x67\x03\x23\x7c\x2c\x14\xc4\x55\xde\x45\xdd\x03\xb5\x86\x2a\x11\xdd\x3a\xf5\x7d\xba\x5d\x12\x6b\xf1\xa7\xca\x23\xe2\x53\xd5\x84\x98\x26\x49\x0f\x0a\xff\xd8\x19\xbf\x1e\x28\x9f\xff\x73\x2a\xef\x80\x0c\xb2\xd8\x66\x2b\x9b\xff\x47\xca\x92\xa8\xd9\x35\x61\xfc\x84\x72\x7f\x7c\x14\x28\x1f\x84\x8b\x81\xae\x5e\x9c\x50\x56\x5d\x53\x0d\xd5\x52\x7f\x46\xaf\x42\xa8\x9f\x60\xc9\xc5\x7c\xc0\xbe\x33\xe5\x10\xd0\x24\x5a\xed\xf5\xc3\xa6\xac\x09\xd8\xc5\xb8\xa9\x1b\xfc\xb9\xdd\x23\xd5\xfb\xf0\x9d\x22\x0e\x72\x91\xeb\xb2\x85\x5c\x70\x92\x22\xb8\x14\xa1\x00\xa5\x31\x56\x76\x48\xf9\x7c\xbd\x6f\x9a\x4b\x42\x33\x50\xe0\xba\xb8\x78\x9f\x53\xd1\x71\xc7\xc6\x36\x7b\xd2\xc7\x0a\x58\x6c\xf8\x38\xf0\xc2\x23\x68\x34\x72\x66\x1c\xca\x99\x83\x66\x05\xd3\xde\x75\xb6\xf4\x29\x35\xd6\x80\x17\x74\x86\xf0\x57\xf9\x80\x52\x3e\x66\x85\x34\xfe\xab\xa1\xb2\x2d\x5b\xaf\xec\xea\x36\xbd\xc5\x34\x34\xf1\x84\xee\x19\x18\x2b\x27\x9d\xa2\xe0\x5e\xc4\x20\xab\x1c\x80\xf2\x64\xc5\xa6\xe8\x40\x90\xe9\xa3\xda\xed\x4f\x29\x25\x85\xaf\x57\xa9\x7e\x0d\xe2\xdc\xf4\xfb\x0c\xc5\x38\xfc\xd1\x8b\x0f\x57\xfc\x26\x15\xf4\xd8\x2b\x4d\x25\xe8\x2e\x5b\xaf\xa0\x41\x7d\x09\x5e\x1c\xf2\x12\xa5\x25\x99\x1e\x2f\x9f\xb8\x58\x32\xb3\x47\xc2\x2c\xaf\x79\x6e\xc0\x9f\xd1\xf5\xf0\x71\xd5\xf5\xd8\x23\x7d\x9b\xe6\x28\x11\x4b\x5b\x4f\xcd\x49\x1c\xdd\xc2\xda\x26\x50\x5f\x15\xa9\xce\xb6\x42\x32\xc5\x8d\xc6\xac\x19\x86\x0a\xf5\x28\x89\x51\xcf\x2c\xd4\xdb\x83\xb8\x65\x7a\x36\xce\x4d\x94\x8d\xb5\x50\x2b\x10\xbd\xfc\xfc\x5e\xdd\x5f\xef\xda\x34\xb1\xd9\x84\xf2\x92\xe0\x8e\x38\x14\xe0\x3f\x1e\xaa\x3d\xdd\xfb\x49\x67\x79\x6a\x2d\xca\xfd\xc8\x84\xc1\xf8\x45\x50\x3a\x35\x2a\xc6\x89\x33\xc6\xf4\xca\x39\x3f\x18\xf3\x62\x35\x71\x2b\xb2\x29\xa7\x52\x58\x92\x59\x18\x8e\x4f\x14\x41\x2f\x8c\xdb\xc5\xb2\x26\xcd\x6d\x48\xac\x2f\x29\x44\xdf\xa3\xe5\x29\x50\xb6\x54\x93\x81\x51\x8a\xc1\xc2\x7b\x37\xf0\x6e\x95\x97\x9d\xc1\x78\xdb\xb6\x6c\x4a\x8d\xd3\x94\xaf\x89\xe2\x5f\x6d\xbb\x31\x31\xde\xfc\xed\xaa\xb5\xb7\x63\xb3\x7c\x90\x0a\x74\x81\x98\xe4\x43\x1d\xa0\x7c\xa8\xa2\x82\x9f\xfb\x2f\xfe\x5e\xcd\x73\xcd\x4e\x53\x48\xcf\xc7\x8a\xf2\xb6\x98\x9a\x10\xb1\x17\x8a\xb3\xec\x67\xc6\x27\xa3\x31\x9f\x4c\xfa\x55\x57\xee\xf2\x23\xe0\x5c\xa9\x53\x75\x66\xa1\xde\x4f\x12\xa8\x91\x30\x16\xa4\x94\x79\xce\x56\xc8\xbb\x1d\xaa\x67\x89\x67\x57\x39\x5c\xc1\x13\x47\x1f\x38\xce\x66\x3f\x4d\xfa\x49\xe6\x3d\xab\xc6\xa2\x23\x3e\x29\x3d\xbd\xb9\xf9\xb9\x7a\x77\x90\x2d\x1a\x9e\xc9\x5c\x17\x50\x1a\x8b\xeb\x2e\x12\x0c\xa9\xaa\xdc\x09\x9b\x35\x55\xec\xdc\x50\x40\x4c\xd9\x6e\x69\x7a\xba\x7e\xd4\xf4\x93\xdc\xa2\x49\x5b\xd4\x88\xe8\xf3\xc2\xed\x55\xfa\x30\xcd\x6e\x9a\xb4\x6c\x8a\xf7\xc8\x79\x59\xa0\xea\x7f\x67\x14\x4e\xbe\xd2\x4d\x22\x9b\x91\xf1\xbd\x2b\xf0\x5d\x56\x5a\x09\x7b\x47\x3e\xb0\x98\x68\x78\x5e\xd1\x8a\xc9\x72\xe1\x15\x89\x48\x72\xcd\xc9\xa8\x7c\x5c\x4a\x86\x3e\xcf\xbd\x59\x5e\xf5\x4f\xc4\xe6\xe9\x2d\x88\xda\xbc\xd3\x15\xb4\x7d\x52\x32\x57\xbd\x82\xeb\x9a\xdb\xcb\x2f\x0f\x8b\xfc\x54\x43\x07\x8f\x59\x78\x84\x34\x98\x10\xe6\xbd\x49\x9b\xf0\x98\x23\xb6\x20\xc2\x35\xa5\x0c\x5c\xf3\x2e\x8e\x2a\xc7\x79\x63\x70\x24\x37\xfd\x24\xb3\x4a\xb6\x60\x23\xd0\x5c\x61\x9f\x67\x24\xed\x76\xd8\xb4\x4f\x7a\xf8\xe8\x4d\x2e\x20\x48\x67\xa5\x22\xa0\x5c\x19\x7a\x91\x64\xa6\x63\x21\xbc\x41\x7f\x00\x2a\x3f\x35\x7a\xf2\xc8\x06\xd6\xb5\x3d\xce\x15\xc4\x39\xc4\x04\x3f\x06\xc3\x37\xec\x49\x53\x23\xcd\xb7\xa0\x11\x85\x8d\xef\xa6\x6a\x14\xcc\xba\x36\x5a\xb6\x19\x2d\x7d\x58\xd5\xee\xab\x72\xe4\x87\x81\x6a\xca\xaa\x11\xa4\x2b\x49\xb7\x2c\x9d\xa9\xe9\x87\xcc\x4f\x62\x8e\x60\xe0\x21\x41\x8f\xcf\xe5\x5d\x9b\x9a\x3e\x77\x54\x23\x09\xbd\x4f\x8f\x1c\x69\xe7\xa4\xa2\x57\x5d\x2a\x11\x5d\x8a\x84\x36\x4a\x56\x78\x29\x42\x1d\x03\x91\x2c\x1f\x8f\xbb\x66\x9a\xe8\x39\xbf\xb3\x7f\x13\x95\x5e\xbc\x84\x77\xb4\xbc\x36\x36\x56\x97\xad\x14\xb1\xac\x68\xf5\xf8\xde\xa9\x8f\xa8\x2c\x81\xb2\xe2\x8d\xc0\xbf\x8e\xf3\xc1\x58\x91\xb2\xe6\xb4\xd1\x1f\x04\x8a\xc1\x7d\x07\xe1\xa5\xa8\xfe\x68\x2d\xab\x1b\x14\xe7\x70\x03\x2f\x1a\x71\xf8\x33\x78\xb9\xa2\xe4\x49\x59\x05\xae\x85\x25\x74\x81\xf5\xec\x1c\xf9\xb2\xd2\x36\xe3\x17\x61\x8a\x9d\xc2\x35\x8a\xa5\x7a\x45\x8d\xa4\x9b\xb0\x3b\x9e\xb3\x60\x77\xbc\x88\x5b\x7a\xec\x35\x04\x89\x88\x93\xb4\x03\x14\x92\x25\xac\xb5\xb0\xf0\x05\x45\x35\x8d\x4c\x28\x2a\xed\x78\x78\x80\x69\xf8\x78\x4c\xba\x32\x6d\xad\x3e\xe1\xcd\x48\x58\x59\x09\x29\x06\x4b\x70\x21\x3b\xbe\xc3\xcf\x4f\xfa\x18\x35\xf3\xc6\xd7\x58\xfe\x15\x86\x2c\x86\xe9\x9f\x0f\x3d\xb7\x73\xfd\xb1\x0d\x67\x5d\x93\xa6\x0c\xe5\x4b\xc5\x55\x61\xcc\x6f\xab\x7e\x8a\x3c\xb1\x10\x75\x72\x32\x34\xc5\x03\xe6\x13\xd5\xdb\xdc\xec\x9a\x7e\x6e\x53\x74\x50\x09\xb7\xb0\xa6\x3c\xd5\x3c\x3c\x79\x1b\xbf\x85\x69\xf0\x41\xe0\xb1\xca\x34\xcc\xf2\x22\x7e\xf5\xaf\xe7\xe1\xd0\x6f\x20\xfc\x31\xcc\xa4\x3d\x8d\x9f\xd2\xfa\x0b\xa6\x1f\xe6\x26\x0a\x8f\xa2\x95\x55\xf9\x0b\xa3\x0f\x89\x8f\x4b\xb0\xd1\xc2\x2b\x22\xde\x50\xf3\xf8\x00\x88\xb9\x7c\xec\x26\x7d\x4e\xad\x76\x58\x8e\x71\x09\xbf\xb7\x4d\x2c\x71\x76\xd6\x21\x84\x15\xbf\x93\x35\x07\x79\xce\x35\x50\xfc\xd9\xb7\x87\x9e\xe8\xfd\xed\x2a\x31\x8a\xb6\x8d\xb0\xca\x54\x7a\x9f\x55\x68\x30\x64\x83\xc5\x2c\x0f\xf3\x01\x1b\x86\x60\x6f\x38\x1f\x78\xac\xa9\xec\x3c\x4c\x4d\x20\x61\xcb\x4e\x78\x76\x3d\xaa\xe7\xa2\x59\xef\xdb\x3e\x6f\x06\x7f\xab\xbc\xe9\xff\x8c\xaf\x66\xbb\x8a\x30\xdb\x4b\x29\x0f\xb3\xd3\x55\x46\x25\xa9\x6d\xa6\x83\x30\x57\x6e\xb9\x3f\xd0\x6e\xb9\x3f\x50\x85\xbd\x2c\x59\x5d\xb4\x26\x66\x73\x23\xd6\xab\xc7\x1f\x63\xd4\xd7\xa0\xfe\xc6\x27\x48\x48\x45\xd6\x5e\x4f\xbc\x41\xd4\x07\xcf\x00\x2b\x12\xe1\x67\x5b\xeb\x1a\x42\xf5\x65\xe5\x4e\x18\x45\x36\xcf\x11\x17\x88\xcc\x73\x31\x03\x25\xa0\xf7\x7c\xce\xff\xe4\xae\x12\xdc\x88\xc2\x5e\x98\x53\x56\x2e\x6c\x04\xfa\x45\xc6\x74\x35\xf1\x06\x3b\x29\xb6\x9a\x7b\x81\xe2\x97\x5d\x2a\xad\x5c\xb3\xb3\xf5\x6e\x92\x22\x20\x63\x43\xfe\x40\x49\x07\x9f\xa9\x12\xd6\x49\x93\xe6\x92\x6d\xdb\x28\x62\xf8\xdf\x45\x11\x5e\x9d\x74\x5d\x05\xb4\x61\x73\x95\x25\x94\xa4\xb0\xed\x13\xa5\xbf\x41\x9b\x15\xab\xf3\x8f\x54\xa3\xe1\xad\xd2\x9b\xc5\x38\x7c\xc3\x36\xf1\x66\xb1\x90\x3d\xdd\xf0\x1c\xd3\xa7\x47\xca\xf5\xd0\xa6\x19\x3b\xf6\x39\xef\x3b\xe5\x83\x76\xaa\x54\x12\x9e\xdf\x7f\xa8\x6e\x8f\xd8\xb4\x19\x66\x16\x04\x7c\x5c\x2c\xf2\x03\x3e\x56\x7d\x9d\x7d\x93\xe6\xd1\x2a\xc6\x0d\x6a\x64\xf7\x10\x08\xf2\xc9\x50\x4b\x44\xe0\xdd\x88\x5e\x44\x45\x86\x1d\xc6\xad\xd0\xe7\x9d\xd8\x65\x7e\xac\xb7\x9c\x1f\x97\x4c\xd1\x5e\x7a\xa9\x9e\x2f\x23\xd0\x95\x82\x6c\xcd\xdb\x30\x96\xa6\xfd\xfc\xfe\x7a\x3a\x88\xb0\x1c\x49\xfe\x3c\xe1\xad\xde\xcb\x56\x72\xf3\xfb\xeb\x59\x3e\x68\xad\x22\x5f\x45\xc8\xca\x34\x1f\x04\xc6\x3f\x1c\xfa\x40\xe7\x86\x2a\xbd\x0e\xda\x09\x75\x2d\xf1\xde\x42\x1b\x3d\xd2\x12\x68\xb1\x83\x1b\x7b\x4a\x2d\xf1\x6d\x13\xb7\x4d\x6a\xa9\x03\x4c\x9b\x97\x8a\xe0\x43\xcd\x49\x60\xf7\x55\x9a\x98\x9a\xd6\xd1\xd5\x5e\x88\x55\x5d\xc0\x7c\xaf\x56\x72\x49\xfd\xd8\xbd\x52\x5e\x7c\xf0\x60\x3d\xcb\x6d\xbf\xd9\x0d\xa3\x56\x6a\xe3\x09\x25\xd1\x02\xd6\xae\x04\xf7\x5e\x66\xec\xdb\xba\xa9\xd5\x30\x56\xec\x70\x51\x27\x4b\x7b\x97\x82\x11\x71\x58\xa8\x82\x42\x48\xfe\x48\x2d\x68\x39\x76\x66\x3e\x51\x65\x9b\xac\x9b\xe4\xbb\x94\x0e\xfb\x3d\xd0\x33\xa5\xcd\x03\x50\xa6\xeb\x00\xf1\x51\xfb\x3d\x08\x8f\x08\xa2\x43\x38\xa3\x40\x45\x15\xdb\x41\x33\x32\xad\x9a\x7a\xcb\xc0\xb1\x45\x9c\xfc\x33\xaa\x1d\xda\xb6\xa6\x94\xa2\x45\xa0\x74\x18\x4e\x28\x49\x3c\xa4\x8c\x02\x10\xaa\xee\xe4\x0d\x75\x6f\x7d\x93\xe5\x7b\x8a\x37\x84\xb0\xf3\x01\xa5\xde\x88\x7d\xfe\x8d\x02\x26\xf6\x34\x6a\xd3\xd3\x1c\x3d\xb0\xb1\x93\x03\xd8\xa7\x67\xbc\xce\x88\xab\x47\xdf\x1d\x2a\x35\x97\xab\x14\x71\x22\x4b\xff\xd1\xb8\x7d\x46\xc8\xbb\xb9\x6b\xa2\x2e\x5e\x81\x08\x16\x2a\x83\x61\x6a\xc7\xda\xad\x0c\x56\x76\x36\xbc\x09\xc8\x3f\x1b\xfa\x82\xc4\x13\xaa\x64\xf2\x24\x30\x67\xd1\x23\x2c\xae\x54\x9a\x16\x8a\xf1\x84\xc1\xf1\xe3\x4a\xa9\x0f\xea\x3f\x81\x56\x3a\xde\xec\x69\xdc\x35\x76\x67\x08\xda\xaa\x32\xca\x8c\x03\x9f\xb6\xbf\xd8\x03\xb3\xf5\x25\xc3\x1b\x36\x46\xe6\x7b\x5a\x6b\xf9\x3d\x05\xd0\xb6\x92\xa3\x16\xfa\xd6\x82\xcf\x7a\x58\xea\xbe\x82\xfc\xdf\xa9\x62\x65\xf7\x6d\x9e\x86\xed\x90\x5b\x15\x25\xe7\xaf\x39\xf1\x99\x3b\xb8\x7e\x8c\x6e\xdf\x99\x3d\x88\x57\xd2\x30\xcf\x99\x23\x24\x9e\xb3\x35\xe5\x41\xaf\x2c\x67\x6d\xdb\x0c\x22\x44\xd7\x22\x01\xe7\x7b\xfa\x4e\xe3\xb6\xf0\x46\xca\x6a\xbd\x33\x0b\x50\xc5\x8f\x92\x3e\x6f\x57\x18\x40\x28\xd5\xf2\xb1\xf7\x55\x8a\x4c\x3e\x4e\xa7\xdc\xa5\xd2\xc0\x2b\x1a\x69\x7d\xe8\xba\x2e\x8b\xbd\x20\x6c\x0e\x22\x92\x29\x9d\xdf\xcf\xb9\x17\xd7\xb0\xf9\xa4\x42\x6a\x61\xae\xde\x4f\x93\xdc\x36\x1d\x20\x02\x9e\xe3\x5d\xdc\x0f\x9f\x38\x5c\x0d\xfc\x28\xfa\x3b\x5c\xd8\x4d\xdd\x03\x7c\xb3\x4a\xfa\x36\xcb\xd3\x24\xee\xd8\x14\x10\x1e\xd6\x86\x4d\xad\xf4\x79\x05\xa9\x1a\x02\x94\xb2\xf4\xcc\xe1\xc3\xc5\xf8\x4f\x96\x32\x8a\x54\x9c\x71\xbb\x97\x8a\xb9\xa5\xa8\xa6\xef\x97\x76\x90\x03\xb3\x75\x7b\x24\x8c\x10\x02\x62\x76\x5e\x0b\x7c\x37\xe7\x1f\xd3\xbc\x90\x67\xb5\x8d\xd2\x36\xb3\x50\xff\xf2\xcc\x6e\x85\x52\xff\x55\xe0\x37\xfa\x33\xb8\x73\x94\x41\xbe\x43\x2b\x07\x62\xb2\x4f\x03\xdf\x3a\x05\xaf\x3d\x20\x01\x9b\xba\xbc\x72\x41\xf1\x48\x4d\xda\x5b\x45\x61\x97\x1d\x68\x95\xf7\xdb\x15\x85\xe7\x72\x6c\x23\x18\x43\x45\x01\xb1\x9d\xa4\x3d\x13\xd5\x7c\xb7\x1e\x4a\xa8\x7c\x3c\xaa\x50\xa8\xec\x85\x91\xcd\x48\xde\x00\x2b\x91\x34\x49\xd6\x9c\xbe\xff\xc6\x58\xe9\xae\x1d\x36\xf7\x29\xd3\x7c\xd8\xfa\x3b\x3d\xa1\x22\x0e\x61\xc3\xaf\xc0\x77\xed\x88\x0a\x0e\xa2\xbf\x4f\x51\xef\x42\x4d\xf3\x01\x3d\x2b\xe7\x02\x3d\x2b\x42\xc1\x67\x31\x40\xb0\x14\xbf\x1d\x28\xe1\xf4\x35\xdd\xbe\x78\x2d\x78\x5e\xb1\x15\xc2\x56\x87\x1a\x57\x69\x78\xa2\x91\x7e\x12\xe8\x0b\x9f\x8c\xb6\x0f\xff\xb9\xf9\x39\x11\x2a\x36\x1d\x8e\xb8\x10\x3a\x1d\x0b\x14\x0f\xee\x58\x15\x30\xdd\x8c\x92\xac\x18\xd5\x7e\x37\xd8\xd4\x22\x22\x17\x80\x14\xa0\x6d\xbe\xd6\x50\xd6\x0b\x76\x91\x92\x53\x1d\x9c\xcc\x7a\xb3\xea\x72\x52\xdf\x4c\xa2\x24\xa5\xc1\x2f\x2c\xd7\x9a\xd3\xa4\xc2\x52\x2c\xbe\x6c\x5e\xfc\xa5\x19\x9a\x5d\x63\xd3\xa5\xb8\x19\x66\x72\xa1\x27\x02\xc3\xff\xfd\xa1\xaa\x2d\xe1\x65\x3a\x1b\x5e\xb7\x69\xdd\x0a\xc4\xe3\xa8\x9b\xb0\xa1\x22\x96\xe5\x1b\x94\x4b\xf1\xb1\xb3\xfb\xcb\x6c\x78\x14\x21\x1e\x98\x02\x5c\x38\xe6\x13\x25\x50\xd4\x4c\x7a\x7d\x13\x87\x49\x3c\x85\x20\xc2\x55\x04\xbc\xa8\xea\x50\x01\xba\xa7\x94\x64\xe6\xb7\x75\x13\x36\xa9\x80\x3a\x63\xf9\xbc\x9b\x40\x46\x7c\x8a\xf6\x60\xfc\xec\x6f\xe3\x8b\xb8\xdb\x8b\xea\x59\x6c\xd0\x10\x28\x09\x16\xdc\xb4\xe8\x31\x28\xf1\xd4\x34\x69\x0d\x9a\xec\x39\xa8\x90\x47\x17\xa1\x5d\x0b\x74\xf5\x4a\xd9\x87\x5c\x56\xed\x44\xeb\x4a\x6c\xaa\x47\x6e\x6e\x94\x46\x09\xd4\xa2\xca\xf3\x1b\xca\x38\xf0\x3c\x6d\xd6\x42\x37\x98\xf0\x36\x62\xf7\x4a\x9b\xed\xf4\x74\x3d\x5b\x31\xab\x35\x2f\x70\x71\x6e\x4c\x6a\x56\xb1\x67\x52\xdb\x0a\x17\xc3\x28\xcc\x19\xc0\x63\xf1\xe9\x40\x83\x3f\xc3\x71\x74\xe6\xb3\x0e\x31\xca\x57\xc2\xbc\x2b\xb6\x12\x53\x3e\x16\x78\x12\xe8\x3f\x1a\xfc\xd1\x78\x88\xa7\xbf\x77\xe4\xc1\xc0\x73\x14\x11\xe3\xb1\xdd\x50\xf9\xd9\xf4\x4c\xb6\x8b\x7e\x1d\xa5\x8d\xa7\x99\x4b\x0a\x62\x0a\x42\x6a\x27\x43\xe8\xfa\x84\x1f\xd0\xa3\x96\xff\x4f\x77\x42\x50\xf6\xb3\x7f\xab\x51\xb1\xd6\xf5\xbb\xab\x59\x98\x44\x49\x07\xc4\x74\xee\x8e\xc2\x7a\x22\xad\x52\x15\x1b\x77\x3f\x4d\xde\x50\xfb\x23\xa6\xf7\x99\xc0\x77\x54\x9f\x19\x6a\x8b\xba\x66\xd2\xb3\x6c\x25\x8f\x21\xf6\x09\x2d\x85\x7c\x5c\xec\x4f\xd2\x09\x1b\x66\xcd\x34\x14\x5f\x77\x2c\x24\xdc\xf2\x48\x5f\x8e\x32\xfa\x45\x45\x59\xbe\xab\x88\xf3\x78\x85\xa2\x29\x83\x05\xee\xb4\x52\x9a\xbc\x3b\xd6\x55\xba\x7d\xa8\x7c\xe1\x2b\xd4\x96\x30\xe1\x31\x9a\x4f\x35\x29\xf7\x8e\x32\x97\xdc\x18\x57\x3e\x4b\x56\x9e\xa6\x2b\x05\x06\x77\x82\x0a\x43\x5c\x3e\x0d\xbc\xb6\xfa\x87\x5a\xea\x0c\xb5\x7a\x4c\x8e\xab\xda\xd5\xe0\xe4\xd0\x97\xba\x3e\x1a\xaa\x3a\x3b\x8b\xcf\x00\x61\xf8\xb3\xc0\x07\xd6\x2c\x8f\x2e\xcb\x5a\xf1\x1a\x31\x42\xd8\xcd\xc2\x15\x72\x67\x16\x44\x9e\x54\x2b\x4b\x5f\xa8\xc8\xb8\xeb\xa9\xed\x0c\x28\xe0\x52\x44\xf1\xe3\x43\x25\xd1\x7d\x5c\xc1\x1f\x36\x7e\x23\x59\x9d\xa4\xdf\x42\x24\x7e\x52\x85\x8b\xd7\x70\xd7\x7c\x82\x35\x81\xff\x6a\xcc\xa6\x7b\xc5\xa6\xfb\x54\x78\xf5\xb1\xa2\xec\xdc\x0b\x6a\xd3\xd3\x5b\xeb\xd8\x3c\xb0\x14\x63\x8f\x64\x8f\x3f\xdc\x0d\x62\xa5\x9b\x63\xdc\x32\xda\x7b\x30\xd5\x3f\x50\x78\x37\xf7\xef\x21\x8b\xfd\x76\x50\x9b\x59\xd8\x5a\x2f\x51\x63\xe6\xf7\xcf\x13\x7f\xd1\x2a\xe5\xe4\x4b\x4a\xa4\xf5\x92\xeb\x28\x5b\x0c\xe3\xd6\x84\x02\x38\x37\x14\x33\xea\x46\x31\x00\xb6\xde\x72\x2c\x37\x7a\x56\x53\xf4\x26\x01\x13\x5f\x50\x4a\xb7\x1b\xfa\x7d\x5f\xd0\xca\xb9\x97\x68\x54\xa0\x14\xe7\x1b\xb8\xc9\x9d\x98\x0b\x06\xaa\x5f\xc2\x35\x4f\xe8\x12\x48\xd2\xb3\x49\x6c\x95\x54\x21\xb4\x05\x10\xc3\x21\xfa\x03\x96\x32\x31\xf2\xec\x99\x0b\x0a\x57\x69\x5b\xa9\x26\x7e\xa9\xd2\xac\xdd\xcf\xf7\x4e\x92\x65\x61\x1f\x1c\x44\xa7\x89\xe6\xc4\xd2\x4e\xaa\x9e\xac\xbc\x9b\x86\xed\x7c\x77\xf1\x66\x10\x40\xde\xc5\x4d\x3b\x57\xb5\xe2\x66\xf8\x04\x25\x0e\x76\x0d\x0a\x3c\x78\xc9\xf2\x70\x5c\x80\x42\x8c\x24\xd5\xa8\xf1\x1a\x99\x60\xf5\xb2\x30\xa8\x30\xe8\xf4\x18\x66\xb8\x18\xd9\x17\xf0\xa7\x58\x52\xdf\x0d\x76\x4a\x3a\xbf\x3e\xf4\xf2\xa8\xeb\xca\x2e\x67\x57\xa3\xb8\x09\x49\x5a\x94\x8a\xf7\x6d\x65\x1e\x08\x21\x4b\xd6\xa8\xc6\x95\x22\xe4\xb8\x42\xb4\x26\x54\xe5\x27\x1b\x9e\x1e\xff\x55\x8a\xc4\xd1\x23\xf2\x21\xf2\x67\xec\xca\x9b\xe0\x3b\xc9\x16\x58\x13\x86\xd5\x3f\xbd\xa9\x5d\x8f\xf6\x8d\xe8\x99\xe1\x42\xee\xe1\x39\x01\x06\x65\x13\x99\x31\x5a\xb3\x58\x28\xf9\x41\x63\x16\x93\x28\xcc\x58\xc3\x1f\x63\xea\x36\xcd\x4b\x3e\x0e\xf6\xb9\x37\x69\x44\xf1\xda\x31\xee\xd4\x62\xa9\xa4\x40\x1e\x96\x56\x1b\xc2\x85\xfb\xd6\xf8\x96\x0f\xac\xb7\x1f\xa9\x54\xf5\x23\xa5\xee\xb0\x62\x4d\x3f\x89\xb3\x5d\x7e\x9d\x3b\x16\x28\x0b\x14\x4c\x3e\xa9\x30\xd3\x2d\xab\xd6\x46\x6f\x59\x5d\xfb\xc2\x57\x1c\xdd\xf3\x99\x70\x2c\x9d\x95\x34\x13\x0f\x04\x79\xb6\x88\x04\xd3\x17\x8a\xf0\xac\x16\x70\x87\x8d\x34\xe3\xd5\xae\x5c\xe0\xa3\xad\xd3\xb4\x62\xf1\x3f\xd0\xae\xc0\xff\xbf\x48\x56\xb7\xf5\x0c\xfd\x1d\x4c\x69\xac\x84\x17\x70\x77\x7c\xa2\x4c\x89\x7b\x61\xab\x97\xc0\xf5\xad\xb8\x65\x65\x4a\xee\x1c\xca\x1d\xc1\x22\xb7\xa6\xd9\x15\x41\x71\xcc\x1b\xe6\xd8\x89\xcc\x4b\xcd\x19\x22\x5f\x77\xaa\x1b\x72\x57\xac\x23\x04\x31\xce\x8f\xf4\xc0\xbd\xaa\x38\x78\xdc\x69\x06\x3c\xe1\x84\x5a\xdc\xf3\x64\x69\x75\xa0\x4d\x3f\x30\x20\xa4\x43\xb0\x92\xea\x90\xe6\xca\x57\xe4\x5a\xa0\xc2\xca\x12\x31\x9e\xa4\x11\x19\xa0\x95\x86\xc4\x9a\x93\xa9\xba\x5c\x2a\x01\xcd\xef\xaf\xdb\x23\xfd\x94\x6a\x17\xaf\xca\xca\x0e\xbf\x33\x3e\x76\x05\xdd\x08\x15\x7f\xb4\x3d\x49\xdf\xa4\x6f\x6b\xdf\xd3\xf0\x70\xcc\x8d\x31\xf6\xe9\xb2\x12\x1f\xb9\xa4\xd5\xb5\x2e\xe9\xee\xa3\x2c\x7b\x8a\xf6\x34\xac\x0e\xe7\x87\x2a\x89\xe4\xd1\xca\x0d\xe3\xb4\xfa\x63\x79\xf8\x1e\xb1\x3e\xc5\xf0\xa9\x18\x53\x2c\x5e\xa8\x15\x9d\x76\x8c\x94\xb0\xdf\xfb\x8a\x72\x73\x47\x71\x3b\x77\x91\xc2\x07\x6d\x00\x9f\xd4\x1b\x34\xe2\x9c\xf7\xa9\x17\x9a\xd1\x4e\x1f\x77\x14\xcd\x65\x39\x09\x9b\x76\x52\xd5\xaa\xd7\xf1\x97\x22\xdd\xe3\x73\xec\xeb\x18\x68\x7c\xe2\x76\xcd\x2c\x6c\xc1\x67\x13\xc5\x69\x18\x22\x3b\x11\x20\xe7\x68\xf1\x3c\x9a\x2e\x5d\xf3\x80\xeb\x12\x5d\xd7\xc8\xe0\x66\x55\x8b\x45\x6c\x3b\xde\x90\x52\x6a\xfd\x7e\xa3\xfb\xd0\x77\x1e\x47\x21\x51\xd8\x14\xa2\x7b\x5e\xbb\x69\x9e\xaf\x2a\xce\xfc\xf5\xb6\xd8\x2e\xf1\xcb\x93\x88\xc5\x47\x50\x50\xba\x04\x32\xb1\x13\xa7\xf4\x72\xd7\x77\x2a\x8c\x23\xe7\x8a\x9b\x48\xf2\x10\x2a\xeb\x33\x0b\x0e\xee\x52\xd0\x97\x72\x4d\xeb\x0f\x72\x56\x5d\xd3\x91\x88\xd8\xee\xd5\x9c\xca\xde\x83\xd2\x2a\x7c\xf8\x30\x8c\x4b\x32\x69\x51\x75\x30\xbb\x9b\x85\x67\x2a\xd8\xfe\x73\x4e\xc3\x8a\x97\x7f\x44\x5e\x7b\x1b\x0a\x38\x61\x3f\x0f\xa4\x90\x93\xa3\x52\xc7\xc6\xfc\xdc\xcf\xd4\x9b\x49\x96\x0f\x7a\x76\x9b\x16\xfd\x36\x3b\x00\x34\xe4\xbc\xe3\xf8\x5f\x7d\xd3\xec\xae\xb6\x6c\xda\x93\x1f\x47\x12\xf8\x00\x0b\x26\x20\xa1\x3f\xc0\x8f\x63\xee\x7a\xf1\xfb\xd6\x20\x69\xd9\x98\x61\x21\x56\xe4\x08\x3c\x84\x70\x5a\x51\x8b\xba\x26\x6e\x65\xa4\x78\xeb\x74\x92\x86\x43\xe5\x40\x3f\x2c\x11\x4e\xa9\x73\x98\x2c\xa1\x5c\x05\xed\xac\xa2\x8e\x9e\xad\x40\x4e\x5e\x57\x2c\x6c\xcc\x07\x14\x53\xf9\x58\x59\x85\x50\x8e\x93\x27\x69\xb6\x57\xe9\x57\x5e\xa4\x05\xc2\x65\x61\x4e\xdd\xe6\x0e\xc6\x17\x62\xab\x0b\x28\x3e\x60\xc2\x9c\x0a\x54\x47\xc0\x77\x03\x25\x28\xc1\x16\x32\xcc\x85\x46\x83\x1d\xb0\x36\x08\x94\xe3\xae\xaf\x29\x94\x3a\xe9\x44\xcc\x18\xd0\x16\x0a\x42\x94\xd9\x3e\x31\x0f\x1f\xae\xe7\x83\xd4\xc4\xad\x04\x4b\xbc\x52\x9b\x71\xd2\x33\xa5\xe1\x29\x2c\x86\xdc\x72\xbf\xab\xd8\xc8\xa9\x87\xb0\xa9\xb0\x1e\x93\xda\x7f\x8f\x26\x1d\x6e\xf0\x0e\x3d\x1f\xd9\x4f\x6b\xaf\x89\xe2\xde\x77\x02\x65\x77\x75\x87\x93\x7b\xf1\x54\xa2\xa7\x85\x98\xf5\x21\xb5\xe2\x70\xab\x25\x33\xd5\x11\x1d\x6c\x80\xd5\x32\x06\xca\x01\xa7\x61\x2b\x7a\xc4\x18\x37\xb5\x78\xe5\xce\x46\x11\x7c\x00\xd6\xb8\x13\x28\xee\x0b\x88\x67\x08\xf7\x6a\x0d\xdf\x60\xff\x74\x83\xe8\xe9\x4e\x3d\xb6\x78\x3f\xd8\xe1\xf7\x2a\xa1\x55\x30\x77\x58\xac\x5f\x3b\xcf\x5f\x1b\x92\xcb\x20\x10\xc5\xb3\x24\x65\x8f\x60\xf1\x14\x85\x97\x12\x52\xd3\x2a\x8d\xe4\x78\xdf\x48\x8d\x9b\xbd\x23\xaf\x54\x74\x0f\x23\x05\xb3\xfc\xbe\xaa\x1a\x0d\x5e\x8e\x5f\xae\xe9\x56\xc4\xe3\xda\xf7\xea\x78\xa5\xb7\x6d\x16\x46\xdc\xa9\x24\xf8\x62\x71\x03\x02\x2f\x56\x20\x39\x4b\xc5\xa4\xf2\x44\xb0\xd7\x79\x91\x16\x13\x1c\xdf\x77\xdc\xb7\x71\xb3\x6b\x62\xc8\x83\xb3\xb9\xcc\x98\xeb\xab\x47\x17\xff\x48\xed\xdb\x61\xcf\x3e\xe9\x09\x7d\xfb\xe8\x0d\x88\x8f\xb3\x76\x10\xbc\xe7\x7d\xa8\x9f\xfe\xe9\x86\x8f\x4d\xa6\x48\x5e\x07\xa9\xee\xa7\x43\x25\x81\x72\x5f\x2b\x69\x9c\xd2\xfa\x58\xc7\x87\xc5\xeb\x70\xb5\xd5\x57\xf7\xf3\xcb\xbc\x85\xdd\x94\xe2\xaa\x07\xcf\x8e\xa4\xa0\xd1\x8e\x8a\x94\x8f\x6c\xf3\x10\x94\x88\xca\x43\xcd\xa9\x58\x21\xf4\x46\xb0\x70\xaa\x6a\x5b\xec\x24\x49\x6b\xd5\x9a\x54\x97\xa8\x37\x87\x0a\x9c\xd9\xac\x56\x9f\xce\xd3\xc4\x10\xed\x63\xc2\xe3\xf7\x57\x87\xca\xb8\xfb\x92\xa2\x14\x6e\x95\x14\xfe\x7f\xbe\x1e\xc9\x16\x8b\x50\x68\x2d\x50\xca\x19\x6b\x55\xd0\xfd\x62\x92\xe7\x49\x6f\x52\xd9\x8c\x9e\x55\x75\x3d\x68\x55\x73\xf3\x0e\x66\xab\x70\xf6\xfd\x2b\x1d\x44\x83\x9a\xb6\xe2\x61\xa5\x3f\x3e\x51\xc1\x58\x94\xaf\xee\xa1\x8b\xc3\x84\x7d\xa0\xd4\xef\x1e\xe1\x26\x59\xfd\x85\x47\x02\x36\xa3\x35\xd5\x97\xf7\xb7\xb1\xe9\x61\x29\xb8\xaf\x85\x78\xd7\x68\xec\x61\xe1\xfc\x57\x9a\xb4\x7e\x5f\xb9\xae\xf5\xd3\x84\xa9\x3c\x63\xc2\xa9\x77\xd5\xa2\x0b\xf8\x41\xe4\x9b\xbc\x26\x8f\x69\xf5\xc2\x38\xcc\xa8\x4b\x97\x6c\x2f\x9d\x7f\x93\xd3\x0f\xd6\x22\x6a\x51\x92\xd9\x29\x5f\x42\x61\x5d\x2a\xc7\xf6\x2a\x56\x2d\xa4\x08\x9b\xca\x1a\x63\x17\x2a\xa7\xfc\x0f\x8a\x23\xd0\x1d\xc4\x64\xac\xe2\x71\x72\x14\x2d\xf8\xb8\xaa\xc5\x3f\x1b\xa4\xfd\x34\xcc\xa4\x45\x90\x53\x5a\x9d\xba\x43\x25\x00\xb9\xc9\x29\xed\xc6\x64\xa3\x88\xea\xa1\x4e\xe7\xbf\xb8\x28\x84\xcc\xdc\x9a\x88\x25\xf3\x96\xea\xe9\x20\xbb\xda\xbd\xc5\x2b\xc0\xa3\xbb\x82\xf7\x29\x4c\x00\x15\x2d\x5c\x54\x5d\xbb\x57\x31\x81\x91\xa5\x3d\x08\x94\xd3\xcf\xa7\xf8\x55\x10\xe7\xa1\xf1\x0b\x18\x05\x6d\x70\xd8\x26\x26\x46\xf4\x20\xb1\x35\xdd\xab\x44\x97\xba\x26\xcd\xba\x35\x5f\x77\x7b\x3f\xf0\x49\xd8\xfb\x63\x08\x63\x68\x9a\x98\xee\x78\x54\x37\x87\xaa\x07\x7b\x43\x21\x65\xb5\x86\x22\xda\x74\xc3\x28\xec\x33\x3a\x84\x35\x89\xe5\x21\xf8\x44\xcd\x92\x38\x5d\x45\x53\xb9\xd0\x69\x4a\x3c\x1b\x30\x4b\x26\x1a\x9e\x8b\x3d\x51\x8a\xe4\xa8\xe6\x1c\x9b\x28\x0f\x85\x50\x2f\x06\xf3\xaa\x9e\xf0\xbe\xef\xbd\x64\x52\xcf\x98\x3e\xec\x43\x55\xe7\x3b\x86\x17\xca\x4e\xca\x2e\x5a\x6f\xa7\xb6\xd5\x0a\x41\x4a\x71\xd5\xdf\xe2\xe2\xc1\x3b\x7c\x14\xd4\x7e\xd1\x8f\x66\x4f\x56\x1e\xc4\x3d\x23\xe2\x81\xac\xc1\x33\xa6\xc7\x53\x36\x93\x9d\xa9\xb7\xc3\xd8\xc4\x4d\x07\x4c\xe0\x2d\x83\xa4\xcc\xc7\x0d\x87\xc5\x85\xd1\x32\xab\x31\x8a\xc3\x01\x3d\x02\x19\x72\x35\x6f\x8f\x15\xf8\x56\x19\xed\xfa\xdc\x0e\x53\x2b\xba\xcc\xd8\x4f\xb8\x52\xc7\x27\xa3\xe7\x7d\xbf\x39\x29\x26\xc6\xd2\x3e\x2e\xf9\x83\x4e\x26\x5c\x0d\xbc\x58\x16\xc2\x28\x3c\xea\xb6\x0c\x60\xcb\xbb\x1b\xfe\x41\xe3\x8e\xb0\xf0\x95\x5b\x09\x5e\x7a\xa9\xbe\x68\xd9\x1b\x6e\x7e\xbf\x33\x97\xf5\xe6\xd4\x97\x54\x63\xfe\x20\x6e\x27\x11\x29\xb3\x38\x72\xd1\x95\x31\xa5\xf1\xed\x8f\xf9\x35\x42\x9b\xdb\x36\x4d\xb7\x35\x8a\xaf\xab\x32\xf1\xba\x46\x32\x73\x93\xb6\x58\x64\xc8\x19\x50\x7a\x54\xb6\x74\xf9\x73\xaf\x1c\xaa\xb7\x42\xd3\x17\x1b\x7d\xf1\x7e\xf2\xb4\x98\x8b\xa5\x8b\x9a\x9d\x3d\x54\x5f\x09\xf3\x6e\x2b\x35\x2b\x71\x4d\x89\xd4\xfd\x86\x52\xf2\xfd\x0d\x75\x51\xdd\x64\x90\xe5\x49\xcc\x82\x91\x22\x94\x59\x73\x2d\xa4\xdf\x27\xe1\x0e\x11\x85\xae\x39\x51\x66\x6e\xf1\x42\x45\x74\x5d\x73\xf5\x77\x94\x4c\xf6\xe9\xa2\x92\x25\x5b\xa3\x88\x11\xd3\x85\x11\x63\x3e\x51\x78\xdc\xe2\xea\x73\xc5\x2f\xb2\xe7\x24\xc5\x2b\xec\x61\x31\x54\x56\x2f\x04\x3b\x8a\x47\xb2\x12\xa5\x3b\xa7\x93\x0f\xb5\x2a\xb1\x3a\x3b\x4b\x4f\x60\x15\xc2\x22\xbd\x45\x98\x01\x4b\x20\x51\x01\x04\xcf\xf6\xba\x9e\x9a\xc7\x99\xdc\xcc\xda\x73\x28\xba\x0a\xc7\x41\x79\x57\x73\x2c\x0a\x12\xf0\x33\x0d\x0a\x39\x5d\xd2\x5f\xac\xaa\xb8\x80\x07\x15\x7a\x3d\x59\xdf\x5a\x2f\x97\x2d\xcb\xa5\xcf\x33\x6e\x96\xe0\xa6\xc3\x87\xeb\x99\x69\xdb\x49\xbf\x8a\x4e\x35\xb4\xef\xa1\x27\xa6\x5c\xa1\x97\x88\xed\xf0\xfc\xf0\x45\x99\x5f\x83\xbe\x4d\x6d\xbb\x1d\x36\x43\x61\x8f\x61\x49\xb9\xae\xfa\x1f\xaf\xab\x48\xa3\x6b\xe3\x3d\x74\xe7\x78\xd6\x6b\xb4\x81\x70\x60\x1a\x28\x0d\x12\xee\xc7\x47\xac\x7d\x59\x09\xf8\x72\xd0\x85\x40\xe3\x57\x87\x8a\x07\xcb\x0c\x15\xe4\x00\xf7\x95\xfb\xcb\xe9\x40\x47\x90\xe4\x81\x13\x77\x10\x58\x29\x17\xa4\x2f\xf1\x6e\xb7\xa9\x7d\x4e\x14\xed\xe1\x96\x63\xe3\x2c\x87\xa6\x99\xc0\xc8\xd7\x75\x31\x16\xbf\x2c\x0d\x91\x15\x78\x09\x71\x9b\xe9\xc2\x81\x04\xb1\xb2\x34\x9f\x28\x10\x23\x69\xe6\x2f\x4f\xd5\x0e\x1f\xde\xba\x8a\x5b\x13\x42\xb1\x2e\xec\x14\xd7\xa7\xc0\x5f\x41\xc2\x77\x94\xfc\x14\x67\x67\xeb\x26\x5d\x0c\xf3\x94\x65\x11\xe6\xf7\x33\x04\x32\x0a\x7c\xab\xc9\x48\x1b\xee\xb0\x01\x0d\x30\x1b\x16\xf9\x54\xf5\xc6\x6f\xd0\xfc\x61\x03\x42\x57\xdf\x6f\xa5\xe1\x58\xad\xec\x92\xae\x95\x5d\xaa\x62\xa1\xb3\xd9\x22\x25\xb3\x62\x2a\xe0\x73\x8f\x3b\x25\xce\xce\xc2\x2b\xf5\x66\x62\x32\x7c\x00\xcb\xf6\x75\xa5\xf0\x72\x5d\xe5\xe3\xfd\xf0\xe8\x51\x53\xf3\x28\xc0\x05\x0d\xc0\x5f\x28\x85\x22\x73\xf3\x73\xf5\x6c\x85\x28\x4c\x4e\xba\xf9\xb8\x96\xc0\x3b\x3e\x46\xbb\x8b\xc2\x3c\xab\x29\x67\xf1\xe3\x04\x66\xcb\xc7\xc6\xa2\x96\xd8\x7e\xae\x36\xbf\x7f\x6b\x9d\x96\x19\x6c\xd5\x3f\x56\xce\x63\x5b\x34\xf2\xb1\x14\xdd\x40\x8e\x2a\xb3\x45\xd5\x01\x58\xf6\x94\xcd\xb2\x91\xb0\x4b\xdf\x48\xb1\xe6\x00\xa2\xdb\x42\x62\x0a\x2c\xf6\x0c\x56\x09\xd7\xe7\x7d\x40\x40\x95\x9d\xc0\x45\x01\x64\xff\xfa\x58\xab\x0a\x77\xb1\x00\x28\x22\x19\xdb\x99\xad\x2d\x1a\x67\x0e\x39\xfd\xe2\x6b\x8c\x49\x6e\x81\xee\x89\x6c\x63\x53\xd3\x45\xd6\xb4\x24\xfc\x27\xb4\x0e\x2a\x65\x5e\xb1\x0b\xd6\x4d\x65\xfd\x34\x59\x0e\x5b\x76\xb7\xdf\x57\xbe\x01\xe0\x00\x6d\xd7\x57\x71\x59\x7c\x82\xe5\xc1\x61\x7b\xbe\xda\x0e\xe0\x01\xfb\x0b\x56\xfb\xff\x9f\xaf\x3f\x0d\x8e\x24\x4d\xef\xc3\xf0\xee\x02\xd0\x3d\xf7\x3d\x3b\x4b\x89\xd2\xbf\xf4\xf7\x46\x0c\x15\x1e\x4f\x98\x21\xdb\x61\xf3\x4b\x16\xd1\xd8\x19\x36\x82\xc4\x74\x00\xcd\xee\xf5\xf8\x83\xe7\x45\xd5\x8b\xaa\x1c\x64\x65\xd6\xe6\x01\x34\x26\xf4\x41\xe1\x50\xe8\x03\x43\xa1\xd0\x27\x52\xb4\x25\x07\x43\x92\x75\x98\x26\x19\xe4\x92\xd4\xee\x92\x74\x61\x79\xec\x41\xce\xec\xf6\xec\xdc\xf7\xf4\x7d\xdf\x37\xba\x1b\xed\xc8\xe7\xf7\x3c\xef\xfb\x24\x32\x9b\xdf\x2a\xbb\x01\x54\xe6\x9b\xef\xf1\x1c\xbf\x43\x1a\x4b\xbe\x2d\xb7\x62\xd3\x8c\xb8\x12\xe5\xbb\x73\xbb\xca\x6e\x59\x54\x75\xd9\xf3\x17\xda\x3d\x3b\x2a\xf2\x35\xda\x1a\x81\xe3\xe5\x88\x04\x11\xe0\x55\xc5\x76\x79\x1b\xa3\x20\xe0\x26\xdf\xe2\xcb\xf2\xd4\x9a\xe5\x6a\x76\xb0\xdb\x67\x07\x8f\x2a\x94\x40\x9e\x3c\x49\xef\x1d\xcf\x74\x09\xc7\x83\x93\x4b\x2f\x87\x41\xec\x03\xcb\x71\xc5\x21\xb2\x83\x31\x11\x82\x42\x2e\xef\xc8\xf9\x73\x79\x5f\x38\x5a\x5a\xd8\xc4\x26\x3a\x34\xbc\xe8\xc9\x1f\xa4\xb1\x12\xda\xac\x57\xbc\xbe\x82\x25\xc3\x20\x1b\x7a\xf5\x8c\xba\xd0\xa1\xf1\x1d\xad\xc7\x78\x0e\x53\xd3\x59\x5c\x78\x8f\xa3\xa3\x6a\xfd\xf4\x92\x62\x31\x67\xc9\x12\xcc\x8c\xf3\x5a\x9c\x0a\x4e\x2c\x52\x27\xa4\xaf\x92\x02\x62\x9d\x14\x0d\x7a\x61\x12\x81\x83\x21\xda\xd6\xea\x8b\x4f\xaa\xe8\x32\x1c\x96\x33\x0d\xc7\x1c\xce\x04\xe6\x89\x4b\x59\x48\x31\x92\x20\xed\x81\x8c\xfb\x7a\x93\x55\x09\x75\x4f\x26\x68\xc5\x39\x5f\x74\xd7\x63\x38\x11\x28\x4d\x8f\x83\xde\x5a\x20\x8c\x7b\x0c\x2a\x15\xd1\x7d\x0f\x1d\x39\xa7\x40\x6b\x1e\xb4\x39\x55\xc1\x8f\xe2\x45\x23\x54\x3a\xa9\xb5\x5d\x61\x76\xe4\x70\xbc\xbb\x9d\x10\xb9\x3a\x54\xfa\xa9\x5d\xdd\xe1\x29\x5d\xc7\x74\x72\xd7\x5a\xdf\x3a\x09\xf8\xb3\xf6\xc5\x44\x25\x9c\x7f\xa1\xe3\x3b\x07\xd6\xc4\x2c\x5c\x04\x9c\xca\x93\xf4\xc7\x30\x8e\x10\xbb\xc5\x8c\x3a\x82\x85\x8c\x8a\xc2\x57\x3a\x9e\x70\x99\x5a\x62\xc3\xf3\xf1\xe1\xec\xf9\xe7\xa7\x9d\x25\xbf\xcf\xe9\xbe\x59\x84\x36\x8f\x80\x66\xc2\xdc\x44\x61\x99\x3f\xab\xaa\xf5\xb0\xcc\x79\x43\x13\x4d\xf8\xf3\x05\xe3\x2d\x45\xf4\x96\xb3\x46\xb9\xa2\xa6\x67\x11\x5b\x93\x31\x96\x03\xd3\xfa\x2e\xa3\xd9\x31\xd4\xdb\xd7\x7d\x17\xf3\x4a\x85\x03\xa9\xc4\xb0\x52\xd3\xa5\x82\x80\x4b\x1b\x39\x38\x10\x0e\x6f\x9d\xab\xbc\xa7\xdd\x1d\x14\x69\x77\xd0\xd2\xf1\x33\xf7\x8d\x45\xfd\xb5\x81\x2f\x99\x9b\x8c\x05\x3d\x35\x39\x41\x1c\x99\x54\x5d\xaf\x97\x4c\x28\x9e\xd1\x31\x85\x52\xbb\xa5\x46\xfa\x6c\x6d\x07\xdc\x37\xdd\x1e\x45\x26\x66\x12\x98\x43\xd8\xec\xf3\x16\xf1\x34\x0d\x45\x59\xa3\x96\xdb\xcc\xec\x65\x89\x86\x5e\xdf\xb6\x2a\xa8\xd0\xf2\x6e\x24\xc0\xf2\x39\xea\x22\x79\x00\x4d\xaa\x88\xe6\x9a\xda\xd1\x1e\xa0\x94\x4d\xd0\x21\xe5\x1e\x28\x09\x45\x83\x42\xf6\xfc\xf4\x73\xe5\xa9\x8b\x12\xcf\x51\xd5\x70\xbe\x8e\x59\x8d\x3f\x7f\x57\x8b\x69\xd1\x86\x89\x40\xf2\x10\xba\x54\xd8\x02\xfe\x05\xce\x56\x14\x56\x8e\xa1\xd2\xc6\x17\x81\xda\xbb\x7e\x8d\xa2\x24\x9c\xad\xdb\x29\x84\xc6\xdc\xb8\x37\x56\xa7\xd6\x19\xb2\x87\xd5\xf6\x7b\xa2\xd8\x49\x73\x4e\xe8\xfe\x0a\xf8\xc1\x84\x50\x71\xf6\x2e\x07\x5f\xe2\x5b\xda\xc8\xa5\x98\x88\x69\xca\x7f\x00\xe1\x0b\x0e\xf3\xff\x5c\x89\xa3\xb1\x0c\x11\x5a\xdc\xad\x71\xa8\xca\xa4\xbf\x67\x73\x9b\x0e\xc3\x58\xc0\x2e\x0c\x33\xc1\x53\x08\xe6\x44\x91\xa0\x8b\x7c\x29\xcc\x5b\xfa\x18\xfa\x52\xeb\xc4\x7c\x39\xfe\xff\x35\xb5\xcd\xc2\x6e\x9a\x64\x6b\x59\x6e\x87\xa2\x4c\x87\xe0\x7e\x47\x47\xa9\x9f\xec\xa8\xd5\x58\x66\x67\x29\xd7\xb4\x83\x24\xea\xd1\x36\x20\xa2\x4a\x9e\x79\x75\xae\x36\x0f\x89\x53\x63\x72\x72\x98\x97\x5e\x59\x65\x02\xe3\x8c\xd9\x0c\x3c\xd7\xec\x5c\xad\x1e\xfb\xd2\xfe\x76\xd7\x64\x79\x2a\x9a\x7b\xce\xe3\x43\x61\x34\x95\xeb\xec\x30\x4c\x4d\xdc\x33\x74\x8f\x02\x62\xa5\x1f\x15\x14\xab\xe4\x4f\x26\x4c\xbb\x49\xdc\x23\xf5\x01\x9b\x4e\xf8\x26\xdc\x59\x9a\x1e\x28\x70\x9f\xd4\x0a\x70\x1b\xce\xa7\xa1\x3b\x30\x59\x16\x66\x5a\xac\xfe\xa6\x52\xc5\xbb\xa9\x5a\x02\x65\xe0\x1a\xe7\x96\x85\x63\x30\x4b\x99\xfe\xc5\x17\xea\xe6\xc3\xb8\x17\x9a\x18\x31\x34\x26\xde\x29\x3d\x0b\x4f\x81\xf3\x45\x3f\x1a\x9b\xbc\x48\x4d\x14\xbe\xc1\x1b\xb8\x30\x2a\xe9\xc7\xf9\x42\x05\x61\xbd\x30\x1b\x45\x86\x15\xa4\x59\x1b\x0d\xb3\x5d\x84\xd2\xea\x2a\x7a\x66\xa8\xc4\xf5\x19\x56\xa6\x40\x9e\x57\x82\xff\xea\x3e\xdd\x32\x13\xc7\x49\x11\x77\xed\x50\x12\x53\x7c\xc7\x3a\x9e\x85\x2f\x6a\x2d\x82\xd9\xd9\x85\xf6\x30\x89\xf3\x01\x37\x67\x30\x8d\x2f\xd2\x46\xc9\x9f\xc7\x5b\x59\x5b\xc4\x9e\x8a\xbb\x09\xd5\x82\xc5\x6b\x98\xbd\x32\x30\xc8\x62\x9c\xf1\x88\x87\x89\x15\x30\xfc\x65\x7f\xfb\xb1\x72\xdd\x83\x5e\x3d\x37\xe2\x94\x31\xf7\x4a\x22\x1e\xde\xbe\x08\x43\xbf\x26\xd5\x99\xad\x4b\x8d\x0c\xb4\x06\x49\x9a\x14\xfd\xc1\x62\x5a\x95\x8f\x41\x16\x29\x40\xb7\x0a\x59\x3b\x45\x8f\x03\xd5\x88\xbf\x52\x05\xd6\xcf\xb5\xa2\xc8\xd1\x26\xc2\x60\x56\xf4\xfb\xd6\x39\x5e\x8a\xa2\x96\x6a\x61\x9c\xf7\x5e\xaa\x79\x6a\xe2\xbe\xd4\xa5\xb0\x3f\xdd\x52\x69\xee\x2d\x15\x14\x99\x6e\xd7\x46\x16\x02\xd6\x0e\xf5\xfe\x47\x4a\x30\xf2\x8f\xb6\x12\x35\xca\xb4\xee\x85\xc7\xe8\x8b\x2b\x8e\x87\xa8\x5f\xdc\x19\x7b\x00\xee\xc3\x54\xfe\xe3\x1a\xd4\xd8\xeb\x48\x00\x4b\x0a\xdc\xdb\x26\x76\x7a\x2c\xc0\x9b\xe8\x0a\x3b\x8d\x4e\x4f\x24\xbb\x87\xbd\x16\x39\x1d\x4a\x8c\xc2\x89\x6a\xfd\xca\x0c\x9f\x01\xf7\x70\x02\xa9\x32\xe9\x8c\x73\x52\x93\x68\x31\xc9\x07\x36\x95\xbd\xca\xed\x01\xde\x24\xfd\x52\xa0\x29\x53\xf7\x65\xbd\x27\xa9\xed\x33\x46\x59\xea\x36\x6a\x10\x4e\x6e\xd5\x6b\xde\x37\xdd\xde\x37\xfd\xb0\xf2\x89\xf8\x11\x32\x2e\x8c\xcd\xbb\x88\xfd\xf1\x1a\x4f\xd3\x91\x2a\xb8\x82\xf2\xa8\xe5\x7e\x22\x9d\xa2\x8c\xf5\xa0\x68\x1e\x77\xff\xa1\x92\xef\x87\x83\x01\x4e\x5a\x64\x6b\x62\x3c\xa6\xac\xe5\xeb\x9c\xae\xd9\xd9\x76\x92\xf6\x4d\x1c\x66\x43\x6e\x11\xb1\x30\x48\x50\xc9\xbd\x3c\xd4\xd2\x8b\x2b\xe6\x66\xc4\xaa\xa6\x2e\x22\xf3\x6b\xe8\x9e\xd2\x6c\xb9\xd8\xa8\x8f\x64\xd2\x58\xd6\x0e\xa2\x42\x76\x20\xe4\x8b\x75\xaf\xe3\x63\xb2\xc4\xfd\xa8\xc3\x6a\x3a\xd3\xa3\x3a\x84\x64\xcf\x2b\x0b\xed\x7c\x10\xc6\xcb\x02\x63\xc3\x2d\x5d\x0b\x94\xf6\xf9\x35\xb7\x62\x4c\x9c\x87\x51\x24\x86\xd9\x72\x30\x63\x92\x20\x16\xba\x81\x21\xc4\x49\x78\x48\x91\x52\x97\xa2\xc4\x41\x0c\x95\xa0\x97\x12\xfa\xf2\x05\x94\x7e\x92\x2e\xaf\xed\xf0\x27\xea\x2d\x34\xe9\xd9\xf7\x53\x99\xe7\xa0\xb6\xe0\xfc\x40\xcb\x15\x82\x45\xf1\xdb\x5a\x00\xf8\xb7\x55\x70\xdc\x4d\xe2\xae\x65\x70\x5b\x93\xb8\xca\xa3\x4a\x46\xdd\x0a\x60\x15\x6b\x8b\xa7\x3c\x5f\xd4\xfa\xe3\xbb\xe7\xda\x26\xb3\xe6\x6f\xeb\x76\x36\x49\x57\xd1\xa1\xb8\x68\xe2\x65\xae\x5d\x4b\x73\xc8\x03\x8c\xd0\x14\x43\x93\x1d\xdc\x1a\xf4\xe8\x4e\x68\xa8\xe1\x05\x5d\xe7\xfd\x1b\x07\xf2\x5a\xb2\x51\xfe\x00\x8d\x38\xea\xdd\x77\x75\x1f\xed\x16\x4d\x7d\x86\x41\x23\x0b\xc6\xc6\xba\x31\xf6\xd2\x26\x60\x8e\x60\x22\xdc\xa5\xb9\x8d\xf5\xd4\x02\x44\x81\x76\x94\x17\xff\x5e\xc7\x4b\xe4\x2d\x9a\x65\x91\x9c\x92\x36\x92\x2f\x93\x7d\xac\x34\xed\xb3\xb0\x9f\x44\xc9\xd2\x52\xcb\x13\x04\x40\x9b\xe3\xcf\x0a\xc1\xb8\x6c\xd7\xf8\x78\xc7\x02\xfe\x76\xe0\xfd\x54\xbe\xad\xda\x00\x8b\x49\x5c\x64\xc2\x74\x10\x54\xa4\x42\x48\x36\x09\xa8\x75\x4d\x6c\x7a\xa4\x81\xe1\xf8\x0d\x0f\xd2\x86\xcc\x45\xee\x40\x01\x98\x6e\x34\x74\x53\x17\xa4\x84\xc4\xab\x4e\x8c\x5d\x68\x78\xa4\xd2\xee\x16\xd0\xaa\x49\x7d\x79\xbc\x49\xb4\xe4\x69\x45\x45\x8a\xb3\x22\x2a\xd7\xcc\x54\x55\x08\x90\x16\x83\x33\xdc\x9f\x9b\xf3\xc6\x3b\xbb\xe7\xbc\x29\xd5\xcc\x5e\xe7\x3c\xae\x1c\x8e\x8b\x74\xb1\xbc\xd1\xf2\xc0\x63\x5f\x11\x44\xf1\x62\x32\x22\x91\xdd\x8a\xcd\x32\x2b\xb2\x68\x4e\x97\xd2\x6b\x54\xd6\xb6\xa9\xd9\xd9\xb6\x29\xf2\x62\x88\xcd\xde\x59\xe0\x7b\x3b\x7c\x05\x56\xe9\xd3\x31\x3a\xb3\x97\xcf\xb6\x0d\xba\x71\xfe\x3c\x7e\xda\x93\x51\x6c\xb1\x3c\xb4\xaf\x93\x49\x42\xf9\x42\x75\x6b\x9a\x3f\x37\x08\x6a\x12\x64\x2f\x85\x0d\x3b\x5e\x27\xa7\xbf\x7c\x51\x89\x34\x7a\x61\xf2\x90\x77\xa5\x05\xee\x11\x91\x39\xfb\xfa\x30\xc3\x3d\x50\x2c\xf0\xc3\x78\x01\x72\x26\x95\xf7\xce\x9f\x35\xa2\xf7\xf2\x58\xd1\x49\x31\x10\x68\x4c\xff\x00\x77\x23\x23\xf4\x84\x46\x96\x99\xdc\x72\x6d\x97\xdd\x25\xe8\xaf\x8b\xd3\xc4\xfd\x54\xbb\xb3\x01\x69\x04\xb8\x34\xfc\x0b\x7c\x03\x12\x89\xdb\x4a\x05\x79\xbb\xef\x96\x16\x61\x2e\x4d\x62\xf4\xd1\xb9\xd8\xcf\x17\xba\x7b\x1f\x0e\x43\x76\xf1\x44\xf4\xf9\x2f\x03\x0f\x33\xf9\x98\xe6\x04\x7f\xc6\x94\xe7\x1f\x6a\xf4\xf3\x18\x24\xb9\x4a\x48\x18\x7d\xc9\x17\xb5\xdd\x71\xef\x2b\x6d\xd3\xb3\xdf\x2c\x4c\x6e\xb9\xe4\x82\xed\xfc\x96\x52\x90\xbd\xa5\x42\xfb\xa5\x24\xb5\x2b\x5c\x0b\xc2\x91\x70\x48\xfd\x24\xfb\x2a\x6b\x17\x24\x59\x7e\x6a\x79\x0c\x4c\x9a\x83\xd4\xeb\x54\xb3\x9c\x98\x0d\xec\x63\xb0\x93\xbc\x55\x2b\x55\x94\xe1\x5e\x42\x5f\xbf\x5b\x10\x0c\xef\x53\xdd\x1d\xbb\xd9\x76\xa5\x3d\x75\x41\x0b\x56\xbb\x15\x37\x32\x61\xbc\x54\x44\xc4\x10\x71\x7c\x47\xc7\x00\x07\xd4\x58\xe8\x77\x34\x6e\xec\xc4\x5c\x29\xf9\x2f\x45\x6c\x81\xae\xdb\xde\xac\x1f\x15\x78\x66\xdf\x39\xed\x1d\x72\x5e\x55\x29\x87\x49\x5a\x2e\xfb\x09\x4f\x81\x60\xba\xa3\x48\xa6\xf8\x22\xdc\xd1\xb1\x87\xa9\xf7\x19\xfc\x32\xa1\xb8\x88\xd7\x94\xc3\xda\x87\x58\x4c\x2c\xeb\x55\x7b\xd3\x65\x96\x00\x7f\xd7\x32\xe6\xa4\xfb\x47\xdb\xf6\xba\x52\xb8\xe0\x7e\x3e\x28\x5b\x5f\xba\x61\x2b\x67\x67\xb9\x9d\x28\xfc\x14\x36\x2a\xd1\xfe\x68\x90\x69\xe9\x26\xf1\x8a\x4d\xd9\x21\x45\xf7\x88\x9d\x82\xcc\x9b\x15\x4d\x84\x41\x32\xda\xd1\x72\x06\x47\xdf\xa2\x9b\x42\x86\x0b\xc3\x2f\xac\xb4\x2b\xa8\x91\xe3\x1d\xbd\x3b\xf6\xb2\xf5\xdf\xd2\x50\xbc\x13\x55\x75\x9c\xb8\xbf\xc3\x7f\xeb\x1d\xed\x0f\xc1\x8d\x35\x91\xd1\xd5\xd4\x99\xcb\x8a\x0a\xc7\x5d\x4a\xfc\xce\xb6\x8e\xbc\x13\xe2\xb1\xe6\x20\xe3\x95\xff\xaf\xd4\xc3\xc5\x5d\x1b\x20\x66\x24\xdf\xd7\x54\xa9\x76\x50\xf4\x79\xdf\x17\x86\xbe\xef\xbe\xd5\x75\x02\xcb\x77\x17\xc3\x0c\x46\x4b\xc2\xd2\x18\x89\x3c\xac\xef\xd2\x99\xd5\x78\x87\xc6\x8d\x78\xa2\xd6\x35\xcc\x33\x5a\x2d\x7f\xef\x39\x65\x3e\x7f\x1b\x83\x82\xcc\xe7\x20\x45\x26\xb8\x97\x1b\x90\x56\xe1\x91\x0c\x9e\xc6\x08\x21\xdd\xf9\x0b\x3c\x28\xf6\xe5\xa3\x68\x47\x39\x63\x5c\x6f\x01\x72\x34\x50\x52\x93\xd7\x11\xc6\x8b\xce\x37\xea\x59\xce\x0f\xcf\x15\x36\x6f\x07\xde\xc3\xef\x30\xce\x05\xec\x7f\x4f\x80\xd5\x26\x5e\xf3\xf4\xf6\x84\x5e\xee\xf9\x03\xb0\xe6\xc7\xd7\xef\x5c\x57\x3b\xe6\x1d\x50\x8a\x10\x81\x9d\x54\x84\xe3\xbb\xca\xdb\xfe\x3d\xda\x52\x10\xbe\x5d\x53\xb0\x0f\x1b\xe7\x61\x6a\xa3\xb5\x09\xa5\x5c\x83\xfa\xb0\xb8\x7c\xd3\x37\x89\x61\xfa\xd3\xbe\x1e\x62\xa3\x70\xc5\xa6\xa1\x04\x4d\xd2\x07\x57\x3d\x71\xa5\xdc\x68\xbf\x59\x84\xa3\xa1\x8d\xf3\xc7\xca\xf1\xc0\x84\x66\x2f\x76\x66\x4c\x12\xaf\x87\x05\xba\x28\x38\x87\xda\x09\x53\x2c\x11\xa8\x7c\xaa\xec\xee\x61\x7f\xc9\x85\x42\xba\x61\xa4\x6e\x1f\x54\xb5\x0b\x55\xd1\x68\xa2\xa3\xec\x10\x8e\xe0\x05\x62\x47\xfa\x70\xac\x55\xa0\x7f\xa8\x24\x6f\x3e\xa9\xf9\x1f\xce\xce\xb6\x47\x36\x57\x55\x06\x96\x45\x97\x54\xd7\x4f\xdf\xdb\xc1\x23\xca\x19\x7b\xf5\xd9\xf2\xed\x8b\x8d\x27\x4d\x32\xcc\xe5\xcb\x81\x5a\xbb\x3b\x00\x3e\x43\x65\x05\xa6\x43\xb8\x91\x77\x02\xe5\x06\x75\x57\xb3\xde\x4f\x03\xc8\x8c\x67\xfc\x7d\x4c\x45\x5e\xed\x63\x8f\x40\xfc\x82\x5a\x9a\x22\xe3\xaf\x6d\xd0\xb4\x88\xdd\xb9\xb1\x37\xcd\xba\x1a\x78\x83\x9d\xa3\xc8\xa3\x30\xdd\x4f\x32\x8e\x5a\x3c\xab\x95\x66\xf6\x05\x9a\x65\x78\x41\x37\x54\x51\xf2\x71\x62\xac\x00\xaf\x72\xb0\xa6\x4d\x26\xe1\x88\x38\x14\x5a\x22\x65\x2e\x6c\x56\x80\x7c\x6c\x28\x85\x63\xe1\x68\x03\xe8\x6b\xae\x9d\x16\xc3\xc5\x28\x8c\x65\x13\x62\x19\x9d\x40\x95\x7f\xfd\xee\x1f\xd9\x3c\x2f\xba\xa8\xed\x8b\x6c\xbe\xc7\x15\x9c\x6c\x92\x9c\xcd\x53\x13\x67\x4b\x36\x9d\xf0\x26\x6d\x5f\x62\x0f\x45\x51\xe2\xac\x22\x0c\x5e\xaf\x4a\xe3\xe4\x6b\x8f\x29\x25\xaf\x67\x3b\x74\x4b\x42\xfe\xf7\xd4\xe6\x8f\x91\x3c\x3b\xc1\x33\x67\x81\xb9\x81\xc8\xd1\x55\x64\x76\x8b\xb4\xc4\x65\x0a\xd7\x11\x5e\x02\x55\x20\x4e\xab\xca\xed\xe1\x07\xa8\xfa\x60\x0d\xbf\x89\xe9\x86\x16\xfb\xe4\xba\x17\x1f\x12\xa4\x34\x2a\x10\xe7\x6a\x6c\xad\xdd\x73\xed\xe7\xff\xc7\xff\x61\xa2\xbc\x29\xcc\x62\xbc\xe0\x8a\x1d\x80\x60\x6b\xeb\xed\x98\x97\xdb\xb1\xed\x2e\xeb\xfc\x01\x7b\xb8\xe8\x03\xf9\xf4\x79\x29\x5c\xb1\x4f\xd1\x2a\xe0\x8e\xac\xe2\x90\x1d\x0a\xd4\x5e\xc3\x32\xb7\xa2\x47\x52\xde\x18\x56\xfd\xb6\x8e\x32\xcc\xff\xf3\x4a\xfb\xf1\x4e\xe0\x77\x8d\x1f\x8d\x5b\x4a\x03\x96\xee\x0c\x2b\xea\xd7\x95\x78\xe7\x75\x04\x0f\x02\x12\xd0\x25\x3c\x1a\x61\x57\x27\x2c\x47\x18\x5f\xbf\x49\x6e\xc9\xce\xfb\xd1\x15\x9b\x7e\x84\xb7\x2b\x0d\x18\x6d\x5a\x70\x60\x52\x45\x8e\x5a\x20\x04\x5d\x24\xd6\x0a\x0a\x14\xfb\xee\x0f\x94\x8a\x54\x9e\xa4\x6b\x14\x8e\xa0\x4a\x77\x42\xb5\x08\xb5\x42\xfa\x4a\xb8\x12\xf6\x94\x3e\xe4\x07\x81\xcf\x9f\x3f\x50\x8e\x9e\x4b\x49\x91\xe6\x83\x1d\x1a\x9a\xa7\xf0\x62\x77\x14\xac\xf9\xf7\xe8\x80\x91\x25\xa9\xed\xc8\x3d\x9a\xb2\x5e\x6b\x9d\x9d\x6d\xf7\xec\x30\xe9\xa6\xac\xbd\x23\x68\x0f\x05\xae\xbf\xe5\xf2\xde\xf2\x7c\xca\x9d\x9a\xa3\x1c\xa4\x4a\x35\x92\x05\x84\xb0\x19\x69\x9d\x8b\xdc\x46\xb6\xcc\xae\x93\x96\x2a\xa5\x7c\x14\xe8\x2a\xcb\x47\xb5\x12\xba\x6c\x45\x71\x92\x4e\xb5\x76\xed\xe2\x8d\xf8\xf1\x8e\xca\x03\xef\x50\x23\x0c\xb1\xc7\x19\x05\x32\xbb\x4a\x33\x50\x3a\x57\xcf\x6a\xb6\xa7\x59\xca\x6d\x1a\x27\x49\xdc\x2a\x67\x1f\x9b\x9c\x28\x5a\xe9\xa9\xa6\xfe\xa5\x35\x29\xd7\xf1\x81\x5d\x79\x88\x02\x79\xfe\xbc\xfe\x94\xf2\x20\x87\xe6\x42\xa6\xfa\xa9\xbf\x31\x56\x3a\xbd\xbf\x71\x5f\xd7\xa6\xbe\x09\xa5\x45\xea\x90\x6b\x1e\xdf\xc0\x1c\x1d\xb9\xc5\x26\x5b\x23\x93\x52\xf6\x88\xb5\x75\x5d\xa5\x3c\x17\x69\xde\x23\x04\x9d\xe8\x34\x54\x26\x87\x49\x12\x87\xb6\x55\xa3\x8d\x49\xd3\xd8\xa7\x56\x5e\x0c\x7b\x86\x63\x02\x76\xb2\xe2\x0b\x6f\xb2\x95\x44\x85\x58\x17\x22\x32\xfa\x30\xf0\xf8\x8a\x0f\x55\xec\x12\xd9\xb8\x9f\x0f\x6c\x2c\x4e\x8d\x08\x97\x50\xc1\x47\xef\xf2\x9e\xe2\x65\xbc\xdf\xac\x2a\x16\x25\x26\x9f\xf0\xc7\xe5\x71\xed\x28\x72\x1e\xb5\x11\x9c\x5c\x07\x15\x57\xc0\x1e\x18\x45\x06\xef\x8b\xcb\x76\xe8\x7b\xbe\x8d\x5f\x90\xbc\x8a\x36\x23\x87\x79\x2f\xa3\x3b\x71\x36\x2e\xe7\x18\x7f\xc6\x2a\xe0\xdf\xdf\x4a\x46\xfe\xb9\xf6\xde\x57\x28\xf5\xe5\x9d\x8b\x46\x42\x76\x31\x09\xab\x4d\x6a\x63\x43\xa1\x0c\xc7\x4e\xca\xb5\xf0\x3d\x65\x79\xff\x6f\x54\x6d\x85\x7c\x94\x7a\xc9\xaa\x28\x41\xba\x96\x9f\xab\xb1\x9d\x0d\xb4\xb5\x6f\xdc\x5d\x9b\xf0\x29\x10\x2b\xdc\x21\x56\xfd\xe7\x0a\xa5\x75\x61\xfc\xb8\x4e\x40\x52\x59\xf1\xf4\x74\xe1\x53\xd8\xd1\xb1\xbb\x3c\xbe\xae\xc0\xc6\x47\x1b\x65\x52\x97\xc2\x74\x38\xe1\x41\x2a\x78\x9b\xf8\x85\x2f\xf5\x3e\x73\x43\xf5\x19\xbb\x26\x4c\x6d\x6c\x33\xcd\x74\x39\xa3\x34\x1e\xce\x68\x06\x77\x11\x87\xdd\x70\x64\x22\x06\x04\xe9\xac\x44\xc8\x9d\x2d\xe7\x70\xf9\x69\xa0\x18\xbe\x9f\x36\x28\xbe\xb7\xb3\xdc\xf4\xc2\x62\xd8\x52\x2e\x65\x17\x94\xa1\x71\xdd\x41\x77\xd7\x4c\xbb\x67\xfb\xa9\x15\xca\x89\x4b\x9e\x1c\x1c\xfc\x0f\x70\x70\x49\xa9\x5d\x46\x77\x14\xe6\x4b\x26\x8a\xb2\x09\x65\xbf\x7f\x4a\x6b\x37\x30\x7f\x09\x20\xe0\xed\x9d\xe7\x3c\x5d\x64\x6d\x64\xd3\x30\x5e\x8a\x20\xdc\xeb\x13\x93\xf3\xaa\x58\x77\x5e\xa9\x49\xe4\x69\xd8\x5d\x8e\x2c\xbd\x7d\x44\x2b\x57\xe9\x5c\x40\x8d\xe3\xb8\x72\xc8\xbf\x57\xc3\x88\xcc\x4f\xb7\x17\x23\x33\xe4\xec\x5c\xc8\x9b\x8a\xc8\x19\xf8\x0d\x76\x34\x48\xf2\xa4\x9b\x8c\x42\xc2\xae\x38\x25\xc1\xf7\x10\x64\xf3\x85\x3a\x2e\x17\x4d\xdc\x9f\x50\x5b\x1b\x4b\x5a\x3b\x0a\xb5\xb3\x9f\xf8\xb2\x49\x30\x75\xd1\xa4\x69\xc2\x08\x5a\xb1\x5b\xf1\x11\x9c\x37\x45\x5e\x4c\xf2\xdc\xf1\xa6\x84\x4f\xdd\x72\x5a\x66\x97\x95\x0c\x4b\xbf\xb0\x59\x8e\x1f\x44\x91\x88\x0d\xb0\xf8\xa2\x11\x76\x33\x4c\xf2\xc4\xb5\xd9\x10\x1c\xdd\xd0\x89\xc4\x04\x00\x93\x52\x95\xab\x1b\x8a\xb2\xe9\x58\xc5\xbf\xe2\x8c\x92\x89\x3c\xa3\xf6\xcb\x30\xee\x85\xa9\xed\xe6\xd1\x1a\xf1\xbe\xc5\xdf\xd7\xd7\xf7\xcf\x28\x55\x97\x9f\xd2\x8b\xe5\xcf\xc8\x34\x90\x04\xb0\x1e\x02\x5f\x8c\xbf\xe2\x5b\xa4\x90\xb9\x82\x22\xf4\x94\x32\x1a\x38\xa2\x2d\x78\x18\xf1\x20\x5f\x48\x01\x97\xbc\x5c\x1f\x49\x9e\x56\x9c\xa3\xb5\x24\x5d\x7e\xcc\xab\xb3\x1e\xc1\x84\x40\x0e\x74\x51\xc7\x34\x8c\xcb\x46\x0a\x75\x4f\x23\x00\xde\xe5\x78\x01\xa1\xe8\x25\xed\x76\x72\x41\x55\x33\x27\x3b\xbe\xa7\xf1\xbb\x97\x02\x6d\xc1\xe7\x5b\x30\x8f\x12\xc9\x50\xac\x25\x69\xbf\x67\xa7\x8e\x40\xf1\xb8\x6e\x35\x60\xe3\xbb\x51\x92\x0f\x5c\xf1\x5f\x60\x75\xfe\xb4\x3a\xa7\x26\x53\xbe\x1a\x76\x2d\x31\xad\xd8\xcc\x87\xee\x06\xd8\xa3\x1b\x4a\x2b\x6c\xbb\xeb\xfd\x99\x95\x90\x46\x7e\x52\x61\xbd\xe0\x22\xe7\xc4\x85\x5d\x9c\x7c\x4a\x77\xed\x2f\x28\x71\x8f\x91\x25\x01\x2d\xaa\x49\x29\xd1\xe3\x57\x45\x43\x34\x50\xc5\xc5\xc3\x78\x11\xe2\x8e\xeb\x4b\xad\x17\x94\x18\xdc\x01\x77\x4a\x75\x5f\xec\xbd\x98\xe9\xe2\xe4\xf6\x8e\xc7\x2b\x1d\xd3\x34\xf1\xbb\xe3\xaa\xf8\xcb\xfd\xa2\xbb\xa1\x35\x14\x25\x88\x9b\x3d\xfd\x09\xbe\xf0\x1a\xe7\x49\xbc\x64\xb3\x4c\x96\x30\x46\x9a\x1d\x20\xf8\x42\x2d\x91\x51\x6a\x7b\x61\x37\x0f\xe3\xfe\xa4\x2f\xf6\x02\xc8\xef\x22\x22\xa7\xfa\xf5\x49\xe0\x4b\x56\xff\xe6\x92\x02\xff\x8d\xd2\x30\xa6\xbf\x41\x03\x84\x8d\x1c\xdb\x2b\xce\x2b\x78\xd6\x21\xd6\xe5\x42\x11\xab\xcf\xab\xc3\x29\x2b\x16\x73\x72\x92\xec\xa1\x23\x80\x9a\xf0\xfb\x81\x47\xef\xbe\x5f\xab\xb1\xff\x5c\x3b\x0a\x17\x93\x14\x25\x3f\x6c\xd0\xe7\x35\x46\x96\x87\x19\x0b\xe9\x56\x25\xb9\xb5\x91\x99\x2c\x27\xb6\x98\xbc\xd2\x8b\x92\x06\x92\x27\x32\x7c\x8a\x68\x52\x7c\x5d\x1d\x27\x2c\xe9\x16\x8e\x49\x86\x89\x33\x41\x42\x1d\x22\x84\x52\x01\x19\x54\xb7\xa4\x2e\x4b\xc8\xef\x77\x2e\x63\x48\x8d\xf9\x73\xa0\x02\xc3\x15\x7a\x31\x0e\xb3\xa2\x7d\xe5\x98\xc0\x2e\xe2\x62\x34\xf2\xc2\xe2\x7a\x5a\x39\xf3\x8d\x0a\x9c\x7c\xa4\x11\x87\xfc\x81\x64\x75\x37\xe1\x27\x86\xc2\xc1\x4d\xaa\x50\x09\x12\x8b\x46\x53\xdc\x11\x1e\xf3\xb4\xae\xd1\x08\x4f\xbc\x47\x97\x11\xc4\x32\xe7\x98\x86\xc0\x5d\x69\x12\x41\xc9\x07\x70\x7b\x2f\xbf\x4a\x20\xe5\x13\xde\xb2\x15\x51\x00\x1e\xf4\x73\xfc\x31\xe4\xb5\x9f\xd7\x12\x81\xdd\x73\xed\xd7\x93\x22\x8d\xc9\x8b\x47\x59\x84\x9f\x57\xba\xfa\x1e\xf6\xb2\x58\x84\x51\x8f\x85\x03\x5f\x16\x74\xbd\x8f\x79\xbe\xf9\xb3\x54\xa1\xa4\x98\xe2\x67\x9e\xc0\xf9\x83\xf6\x11\x8c\x48\x37\x2f\x36\x52\xf5\x32\x93\x87\xd9\x52\x58\x55\xea\xbe\xa3\xaa\x22\x77\xbc\x18\x63\x6e\xed\x68\xd2\xaf\x5c\x76\x1f\xd3\x26\x6a\xee\xd7\x95\x6a\xc3\x13\x8a\x4a\xd8\x23\xf9\x18\x65\xfb\x75\x35\x50\x40\xba\xba\xe6\xeb\xee\xb9\xf6\x4a\x98\x44\x36\xcf\xb1\x65\x08\xf6\x43\x09\xda\x9f\x0a\x94\x7c\x41\xbc\xf6\x94\x57\x84\xfa\x35\xc5\x5f\x3a\x4c\xfb\x30\x32\xa5\x4d\x2a\xc6\x61\x00\xd9\xd0\x96\xd5\x7c\x02\x9f\x03\xdd\xc6\xab\x63\x2b\x42\x9a\x63\x48\xfe\x0e\xe3\xec\x40\x97\x7d\x13\x45\x05\x94\xdc\xb8\xa8\xe9\xea\x8a\xe5\x78\xb2\x06\xdd\xd8\x6b\x90\xfc\x5b\x9c\x76\x98\x6d\x77\x55\x50\x75\x86\x0f\x3b\xa4\x3d\x87\xc7\xad\xaf\x7f\xc3\xc9\x00\x28\xa7\x90\x9d\xeb\x0d\x24\xa1\x9e\xa3\x8e\x0a\x75\x46\x35\x02\xce\xa8\x57\xc0\x8c\xc4\x27\x5b\x2f\xed\xdf\xfc\x12\x77\x82\xd5\x7d\x21\xa8\xb6\x0e\x7e\x45\x02\xa0\x6b\x81\x17\xe6\xbc\x3d\xf6\xdd\xac\x3b\x81\x77\xcb\xb9\x82\x87\xc5\xc6\x3f\x05\x8d\x2c\x16\x12\x0d\x54\x79\xf4\x9c\xe2\x00\xdd\xa6\x21\x91\x27\xa7\x97\x00\x24\xca\x21\x4d\x62\xbb\x8c\xb7\xc0\xa4\x03\x45\x00\xfd\x44\xa9\x75\x7c\xe4\x84\xa8\xc8\xdf\x22\x2f\x52\x80\xbd\x1c\xd1\xa9\xbc\x1d\xaf\x59\xe5\x02\xd1\x24\x8a\x84\x09\x2a\x7a\x41\x74\x1f\x7c\xa1\x4a\x44\x07\x0a\x0e\xf4\x75\x72\xc0\xfb\x45\xa0\x8e\xaf\x77\x6b\xec\xfd\x17\xda\x26\x8a\x76\x50\xbd\x18\x73\xfc\xa6\x12\x1a\x7c\x00\x25\x71\x96\xf7\xa4\x01\x61\x51\xa2\x40\xc9\x57\xa2\x32\x8a\xce\xe8\x15\x75\xd0\x44\x26\xee\x17\x61\x36\x60\x83\x1e\xbc\xa1\x6d\x24\xbe\x20\x21\x78\x6b\xff\x9e\xaa\x1e\x38\xc6\xfe\x44\xad\x9a\xf0\x42\xbb\x9f\x9a\xc5\x09\xef\xb0\x7d\x5b\x1b\x24\xfe\x40\xc9\x07\xdd\x54\xf4\xe7\x28\x5c\x6a\x29\xaa\x01\x14\x54\xf8\xb3\xb7\x67\x02\x4a\x7f\x42\x15\xd0\x4f\x69\x96\xd7\x05\x65\x5c\x72\x47\xb5\x46\x96\x6c\x9a\xda\x30\x35\xc8\x15\xd8\x72\x22\xd0\xa1\x47\xf9\xa4\x92\xf7\xf8\x9b\x5a\x8c\xd6\x1e\xae\x0a\x6a\xb4\x9c\x6e\x29\xcb\xe4\x81\xd0\x72\x77\xac\x3b\x27\x54\x35\x14\xa5\x10\x57\x3f\xfb\x27\xff\xa8\xa3\x3c\x6d\x1f\x5d\x57\x4f\xbb\x83\x8a\xb7\x18\xdd\x47\xd6\x3d\xb1\x6e\xfb\xba\x92\x87\xdd\x54\x3a\xad\xdd\xb4\xe8\xd9\x6c\xc2\x47\xa4\x77\x50\xf5\xc4\x05\x44\xf1\xe4\x73\x83\xd8\xdb\x92\xe9\xda\x28\x5c\xca\x39\x65\x40\x60\x87\x94\x81\x3f\xfb\xe4\x27\x0a\xf3\x37\x44\x85\x59\xb4\x69\x5b\x4a\xd1\xa8\x61\x07\x29\xcf\x45\xa2\xf9\xb1\x48\x9b\x52\x11\x3a\xdb\x60\x0d\x99\x2c\x2d\x31\xa2\xf4\x55\x07\x05\xa5\xaf\x13\x8c\xe8\xd3\x95\xe6\xd3\x8a\x89\x6c\x9c\x4f\x79\x1a\xe1\xc9\xc0\x4b\x58\xe1\xbb\xb0\xae\xef\x69\x66\x00\x8c\x9f\x44\x76\x4d\xb5\xfb\x4d\x56\xc0\x33\xf0\x65\xa7\x56\xd6\x9a\xf3\x2a\x66\x3e\x07\xb1\x2b\x36\x7d\x58\xc9\x68\xe1\x64\xc5\xcf\x4d\xa0\x8b\x87\x6a\x3a\x37\x81\xd1\x53\xba\x86\xc9\xef\xac\x10\xe6\xa7\x9d\x05\x4f\x39\xe7\x30\x57\xdf\xa4\xad\x1b\x9d\xb1\xb3\x4a\x13\xf2\xe1\x75\x05\x11\xbc\x12\x28\xab\xba\x53\x0a\x24\x14\xa6\xa9\xe9\x85\xc6\x45\x89\xce\x09\x66\xb7\x73\x85\x69\xaa\x4a\x9a\xe1\x22\x5b\x5e\x38\x81\x63\xc7\x94\xb9\xe0\x05\x9e\x00\x6c\x8a\xd9\x13\x1e\x67\xd8\x45\x8d\xe0\xbc\x18\x3c\x28\xe9\x47\x6f\xaa\xdc\x77\x24\xbf\xf0\x15\x8c\x07\x69\xf0\xf1\x22\x60\x6b\x8e\x17\xf1\xe6\x58\xd1\x2c\x8e\x35\xc1\xe9\x62\x23\x3d\x20\xec\x49\xdf\x23\x15\x20\xfe\x5c\x83\x40\xef\x9b\xde\xd3\x26\x6d\x96\x15\x13\x15\x8c\x16\x53\x85\x91\x39\xb9\x68\x90\x82\x68\x2f\x25\x69\x3f\xe1\xdc\x9d\x49\x7c\x88\x58\x85\xd1\xe7\xf5\x9f\x8a\x3c\x8c\x48\xca\x79\x27\xfd\xb4\x73\x88\x76\x89\x33\xda\x7d\x38\xdb\xb8\x9f\x82\xde\x1f\xb4\x82\x30\xaf\x3f\xa2\x01\x92\xde\x7e\x6b\xd7\x2e\xf9\x85\x06\x9a\xd9\xab\xed\x81\x29\xe2\x5c\x8a\xa7\xa2\x70\x46\x5f\x2f\xda\x67\x8f\x29\x05\x5f\x13\xa1\x86\xec\xf4\x4d\x1d\xba\xec\xd4\xdf\x0a\x21\x1a\x29\xfd\xef\x1b\x1a\xde\x7b\xa3\xc6\xa0\x00\x05\xad\x97\x0c\xc3\xd8\xc4\x39\xf3\x7a\x11\xb6\x82\xba\xce\x9f\x15\x84\x6f\x94\x86\x5d\xfb\x84\xca\x25\xb1\xe5\xa0\xa2\x74\x11\x8d\x49\x87\x23\xf2\x11\x04\x7c\x31\x15\x2d\x55\x6e\xea\x1e\x42\x7c\x54\x46\x58\x5b\x13\x51\xc0\x04\x55\xd8\x91\x00\xef\x84\x6a\x0a\x2b\xf3\x04\x9e\x5b\xf6\x30\x58\x88\x22\xd9\xa3\x30\x2e\x17\x09\x4c\x8c\xa0\x79\x83\xce\x14\xdc\xe3\x79\x56\xc1\x15\x68\x65\x64\x52\x8e\x75\x71\x66\x7f\xa9\xdc\x7f\xbf\x6c\xda\x78\xbb\x49\x9c\xd9\x38\x2b\xb0\x75\x03\xd4\xf5\xa7\x81\xd6\x69\x50\xc0\xb0\xba\x73\xd6\x9e\x57\x16\xda\x86\x52\xd3\x09\x0f\x0b\x42\xf3\x4e\x8e\x1e\x1a\x11\x39\x9a\x15\xa5\x3a\xcf\x93\x34\xb6\x6b\x3b\x55\x0c\x54\x31\xcf\xd8\x08\xaa\x27\xd8\xec\x2c\x1f\xb0\x87\x30\x0d\x50\x82\x40\xd9\x4f\x58\x48\x9e\xce\xe0\xf5\x2a\x15\x60\xaf\xe5\xa5\xd7\x34\x33\xfd\xb8\x0a\x86\xcc\x20\x9b\x2a\x33\x4e\x15\x58\xc8\x01\x09\x6b\x09\x27\xb1\xee\x20\x8e\xef\x22\x8c\x13\x29\xd8\xad\xd3\x12\x83\xdc\x2f\x73\x83\x30\x11\x75\x39\xa4\x12\xdb\x3a\x2a\x3d\xdc\xb6\xae\x44\x20\x97\xb3\x87\x55\x43\xee\x3c\xe1\xe4\x95\x62\xa9\xe0\xac\x98\xb8\x24\xda\xdf\x0a\x51\x72\x0e\x5d\x5d\x55\xf3\x7b\x15\x6f\xf7\x3f\xfd\x9d\x8e\xd6\xbb\x6f\x89\xc7\xda\xaf\x3f\x45\xc7\x3c\x62\xc0\x6d\xda\x47\xeb\x67\x94\x7e\x4c\x3e\x08\xed\x8a\x05\x8d\x8f\x4f\x10\x5a\x5a\x72\x9a\x08\x94\xef\xf5\xa2\xd7\xaf\x66\xde\xa8\xfa\x38\x90\xb0\xa7\x75\x5c\xab\xad\xff\xf9\xe9\xf9\x76\x37\x32\x59\x16\x76\x79\xb8\x9a\x40\xd1\x5b\x21\x54\xaf\xbd\xc6\x62\xf1\xa3\xd0\x76\x71\x8c\x88\x56\x4d\x45\xc5\x46\xe6\x05\xb1\xdb\xb3\x41\xc8\xb8\x6b\x09\xde\x3c\x79\xe2\x94\x72\x1e\x5b\xb4\x26\x35\xd2\x00\x12\x4b\xa4\x96\x93\xc0\x38\xec\xf3\x58\x93\xd9\xc8\x66\x19\x2d\x07\x9c\x75\xdb\xb0\xaa\xa5\xd7\xe5\x51\xbc\x57\x6b\x4f\x4e\xed\x4b\x72\x5d\x35\x29\x78\x30\x58\xe6\x28\x03\x4b\x61\x80\xde\x0d\x72\xaf\x73\x63\x2d\x37\x6b\x48\x7c\x9d\xe4\x66\xbd\x47\xa6\xc7\x85\xbd\x89\x15\xe5\xc4\xf7\xe7\x9d\xd1\x9f\x37\xab\x0c\x97\x96\x4c\xbc\xa6\x2c\xbb\x2e\xe9\x52\xd0\xa5\x06\x94\xdc\x1e\x11\x4e\x95\xb3\xc0\x41\x47\xbc\x22\xec\x69\x55\x5d\xe9\x26\x71\x8e\x2d\xa3\x05\xac\x87\xa0\x4a\xa9\x17\x25\xb0\xd2\x9a\x7c\xe2\x0c\xc9\x41\x72\x50\x86\x69\xcd\xc2\xe1\x7c\x31\x7e\xda\x17\xd7\xb2\x30\xcb\x6d\x79\x06\x4c\x28\xa1\xd2\x0b\x7a\x77\x41\x16\x8f\x05\x3c\xd5\xd1\xb2\xf4\x59\x6e\x4d\x8f\xea\x1f\xc2\x1d\xa3\x51\x13\xf2\x98\xf2\x59\x60\x12\x93\xb8\x0a\x7a\xaa\x40\xb6\x1a\x2e\xa1\xe4\x21\xf1\x26\x8d\x61\x5d\x21\xb8\x1b\xf6\x4d\x6a\x73\xf6\xfd\x91\x5c\xb5\x7c\x63\xfc\xb9\x49\x00\xcd\x1e\x70\xde\x1d\xcc\xbc\xa1\xcd\x51\x58\x38\x5b\x9a\x75\xff\xb0\xbd\x6f\x9a\x04\x88\x70\x42\xa1\x6c\xa8\x45\xa2\xb8\xef\x3d\xae\x00\xe5\xb6\x0e\xff\x6b\xaf\xb5\x17\xbd\xbe\x9c\x54\xfa\x74\x7a\xaf\x18\xf0\xf5\xde\xc6\xfc\x74\x3b\x4f\x95\x9c\xaa\xc4\xab\x4a\xec\xe3\x3c\x0a\x9e\xd5\xb8\x7d\x91\x9e\x52\xa9\xe2\x88\x7a\xe1\xb1\xe0\x11\x0f\x0f\xcd\x87\xca\x8f\xe7\x9c\x56\x46\x3e\xe7\x7b\x53\x26\xcd\x63\x06\x72\xba\xe3\x8c\x4b\xba\x68\x9e\x4d\x75\x54\x73\x6a\x53\x01\xc3\x73\x8a\xf8\xca\xdb\x66\xc1\x1a\xbc\x76\x51\xaf\x79\xb2\x22\x42\x94\x53\xa1\xda\xc1\x1b\xbe\x40\x0c\xc1\x70\x02\x55\x2e\x27\x09\x78\x0f\x33\x28\x6f\x8a\x7f\x83\xd6\xa5\x54\x56\xb6\x2e\xb7\x97\xf6\xb7\x97\x52\x13\x77\x4d\x98\x49\x0a\xe4\x60\xde\xe5\xdf\x10\xfc\xf7\xd6\x93\xbe\x0c\xd8\x86\x26\x5d\xb6\x3d\x8e\x8b\x9c\x18\x9c\xab\x0f\x9c\x6f\xf2\x24\x2a\x83\xed\xc4\xd9\xe4\x3b\x8b\x66\x67\x33\x50\x9f\xa0\xbb\x66\xda\x7d\x13\x45\x09\x9b\xb4\x39\x75\x23\xc7\x3f\x02\xe4\x17\x85\xf8\x7f\x55\xa3\xfe\x94\x37\x9a\x85\x3d\xbb\x6a\xd6\x10\x92\x48\x3b\x40\x29\x11\xc0\x1c\x18\x3d\xb5\x6d\x9d\x26\xf2\x03\x72\xa8\x7c\xad\x55\x95\xe5\xab\xa8\xef\xa9\xee\xec\xc0\x92\x78\x22\x0d\x0c\xa6\xc6\x77\x09\xfb\xc4\x9f\x6b\x6f\x61\xff\x9e\xaf\x51\x39\x9d\xda\xb4\xca\x44\xe8\xba\x12\x38\xbe\xae\x18\x20\x6c\x21\xa9\x42\x2c\x68\xd7\x32\xa6\x16\xf3\x49\xdc\x98\x1b\xd0\x61\x66\x98\xb8\x58\xdb\x1d\x09\xf8\x2d\x39\x1f\x3c\x66\x23\x19\xd9\xd4\xe4\x49\x9a\x91\x69\x0a\x32\x19\x08\x20\x88\xd6\x70\xb9\x6c\x51\xe7\x3f\x8a\x2a\x01\xa2\x8c\xcb\x84\x5f\x12\x92\x9a\xd2\x8c\x33\xa9\x8d\xf3\x8c\xda\x73\x08\xa1\xb9\xdb\x25\x7c\x39\x8f\x56\x3e\x5b\xa9\xeb\x07\x1e\x6b\x7d\x92\x6e\x00\x5b\xef\x69\xe5\x1f\xd0\xa5\xac\xa5\xe5\xd9\x6e\x00\x77\xf0\xe7\x06\x22\xc5\x42\x9b\xea\xd3\x13\x65\x40\x84\x11\xbb\xa1\xbc\x89\x8f\x6a\x82\xcb\xa9\x06\x3a\xc8\x7c\x3b\x0f\x7b\xb2\x72\xa4\x43\xd6\x72\xc6\x88\x6f\x35\x9d\xc8\x00\xfb\x64\x62\x6b\x82\xe3\xe6\x3d\x2d\xaa\xf4\x9e\x63\x28\x8e\x52\xbb\x98\x20\xd0\x6c\xa4\x42\x3f\xe6\xa0\x47\x03\x13\x77\x61\x2b\x82\x8d\xf9\x01\x48\x5a\x8b\xea\xb7\x6f\x56\xb5\x9a\x4a\xa2\xc4\x03\xa3\xa3\x10\xb5\x1f\x8e\x0a\xf9\x22\xf0\x48\xa5\xd4\x2e\x45\xb6\x9b\x0b\x1a\xc5\xf5\xca\xdd\xc6\x8f\xb8\x4c\xac\x7c\xfc\x5b\x5f\x4d\xd2\x65\x9b\x66\x8f\xb4\x9c\x98\x35\xdb\x03\x00\x78\xf2\x6d\x6d\xe3\xf6\x1e\x4d\x29\xc6\x00\xf2\xa6\x8a\x7a\xf0\x9f\x63\x42\xe0\x02\x38\x3a\xf1\xb3\xa2\x8d\xd1\x59\xe0\x38\xbd\xd7\xc9\x8e\x87\x73\x9e\x0c\x94\xc4\xc2\x0d\x0d\x2e\xac\x43\xbe\xe7\xe6\xf6\xb4\xcb\x18\x2d\x34\x15\x43\x87\xb3\xda\xd0\xe1\xac\xf2\x3f\x1a\x16\x51\x1e\x2e\x99\x61\x18\xad\x61\x59\x89\x10\x8d\x72\x80\x3a\xaf\x36\xf7\xa1\xed\x9b\xb4\x6f\xa3\x96\xa7\x52\xfc\x71\xe0\x21\x07\x7f\xac\x2a\x38\x4b\xac\xdc\xe1\x20\x55\x57\x03\x5f\x61\xbf\xaa\x0a\x38\x7d\x1b\xdb\x87\x2b\xf3\x43\x45\x6e\x58\x09\x52\x8e\xa1\x81\x10\x52\x62\xb9\x37\x29\x1b\x85\x05\x97\xe0\xf9\x75\xf4\xb1\x62\x01\xb3\xf0\x81\xc3\x16\x96\x03\x8f\x17\x77\x45\xed\xff\x37\x9b\x45\x39\xb3\xdc\x84\xb1\x84\xf2\x4e\xc7\x7d\x76\x56\xf0\x9f\x15\xc1\x2e\x85\xe5\x01\x04\x80\x18\xf0\x2a\x5e\x45\xe2\x2f\x6a\x15\x4a\x99\x4e\x74\x82\xc5\x0d\x54\x95\x28\xce\x04\xcf\x6a\xa6\x24\xf4\x50\xcb\xd5\x88\xdf\x40\xc9\x8d\x45\x9c\xf8\xa2\x76\x28\xcc\x4f\x0b\x73\x8d\x9d\x0f\x95\x5b\xe3\x8c\x67\x2b\x6a\xd3\xa8\xad\x48\x62\xca\xe3\x86\x43\x9b\x76\x43\x03\xe5\x44\xd4\xe8\x70\x10\x9e\x50\xb5\xca\x13\x9a\xfc\x97\x26\x8b\x36\x45\x1d\xde\xd9\xb7\x3b\x81\x8b\x4f\xc7\x62\x18\x96\x27\xc9\xa4\x12\x31\x7e\x97\x2a\xb6\x48\x42\x8f\xd3\x71\x87\x70\x63\x3b\x32\x46\x2c\x95\xcb\x15\x2b\x93\xd4\xf6\xbe\x5a\xde\x03\x10\x0d\xef\x53\x09\xd2\xed\x8a\x7b\x5c\x15\xee\x9f\x02\x0d\x86\xba\x93\x40\x16\xa5\x19\x42\xd9\xa4\x20\xad\xca\x59\x86\x68\xe8\x7d\x8a\x49\x18\x35\x1a\x54\xb4\x64\x77\xcf\x79\x48\xb6\x43\xa6\xfe\x54\x37\x36\x58\xc0\x10\xa5\x81\x23\x6a\x8a\xfe\x14\xea\x57\x80\xd0\xed\x41\x00\xa9\xe9\x9d\x4e\x56\xbd\x9c\xaf\x48\x1c\xb9\x80\x8a\x26\xd6\x95\x80\xd4\xc1\xb8\xb9\x0a\x39\x12\xfe\x63\xb4\xd1\x38\x71\xc0\xf2\x2d\x21\xd2\x7a\x60\x5d\xd1\xd2\x27\xd6\x9f\x54\x06\xc4\xbd\x5e\x44\x55\x8c\xb9\x2a\x18\xd5\x61\xe3\x76\xcf\x39\x2c\xb3\xcf\xd3\x5f\xfc\xc5\x17\xd9\x2b\x99\x35\xc0\x68\xdf\xc6\xd8\x82\x38\x80\x8d\xe4\x73\x4d\xf6\x6b\x75\xfc\x0e\xb0\x6a\xa2\xa8\xe5\x41\x72\x67\x02\xa5\xdc\x58\x57\xad\x9c\x9b\x6b\x2f\x93\x39\x3a\x4e\x22\x40\xb6\x59\x49\x9f\x2f\x9a\x7a\xba\xac\x08\x35\xa9\x90\xf9\xff\x4e\xcb\x9f\xdc\xae\x64\x1c\x9e\x3b\x77\xdc\xd5\x5c\xb3\xdc\xda\x68\x68\x96\xd9\x92\x93\x5b\x37\xb8\x59\xe9\xe3\xf8\xac\x26\xcb\xcb\x68\xca\xc6\x79\x8b\xa6\x1a\xaa\xcb\x37\x30\xb9\xf8\x62\xab\x38\x4d\xb9\x7b\xef\x9e\xfb\xbb\xad\xe7\x9f\xf7\xba\x31\xae\xd8\x52\x61\x21\x5c\xc1\x31\x80\x3b\xbc\xc8\x87\x0d\xe6\xc0\x75\x6c\x6d\xf2\x7d\x2d\xc7\xce\xbe\xa7\xba\x29\xbf\x86\x33\x85\x35\x03\x03\xcf\xdc\x39\xa3\xfb\x90\x93\xeb\xad\x97\xf6\xf3\xb6\x7a\x14\x99\xa9\x33\xda\x2b\x47\x1b\x73\xfe\x0b\x74\xf3\x78\xd2\x52\xf8\x24\x0a\x62\xb4\xe2\x98\x5a\xa6\xea\xcb\xd7\xb1\xfa\x5c\x57\x79\xd7\x0c\x6f\xea\xdb\xd6\x69\x31\x3c\xc1\x93\x5e\xe9\x0c\x4e\x74\xca\x58\xc7\xa9\xa5\x94\x43\x8e\x42\x40\xab\xa3\x60\x5d\x50\x89\xc7\xd9\x7c\x95\x6a\xb7\x82\xf0\xd8\x9a\xca\x51\x44\x63\x04\x9c\xa5\xb5\x07\x1a\x83\x00\x62\xe1\xf8\xfc\x12\xcd\x00\x49\x6b\x9f\xda\x4a\xd9\xb1\xd0\x9f\x91\x7d\x47\x45\x66\x2a\xeb\xa5\xfc\x60\x24\xab\x0d\xa4\x82\x6d\x9d\xfb\x88\x70\x5c\xd1\x0a\xee\xa6\xbb\x6c\xfa\x96\x01\x3b\x1a\xda\x8b\xa2\xd7\x6d\x45\xf0\xfa\x3d\x0d\xb5\x6a\x6a\x37\xbc\xda\x1e\x26\xa9\x9d\xf0\x0b\x9b\x55\xae\x71\x38\x7d\x86\xd9\x00\x66\xe2\x21\xd5\xdb\xb0\x71\x3e\x28\xb2\xd0\x64\x48\x3a\xd9\x99\x95\xbe\x58\x5c\x5a\xbd\x0e\x4c\xd8\xb3\x49\x94\xf4\x51\xc7\xf2\xb5\x2b\xda\x36\xa5\x8e\xd5\x60\x14\xd1\x33\x21\x97\x7f\x30\xb5\xae\xd3\xae\x29\xf5\x3f\x0f\xdb\xfe\xb8\x49\x0d\xa2\x6b\x52\xbb\x54\x44\x9c\xe7\x89\xf1\x63\x4b\xf9\x24\xaa\x43\x3a\x19\x8e\xd2\x64\x18\x66\xf6\x01\x1a\x52\x4c\xbf\xc3\x8a\xcf\x86\xf0\x10\xff\xce\x29\x07\x92\xfc\x0d\xf0\x84\x58\xcc\x0e\x47\x27\xff\xcf\xd8\xa3\xa4\x8f\x52\xac\x22\x8a\x77\x0d\xb9\x62\x94\x98\x1e\x1f\xc9\xc8\xec\x6f\xd1\xad\xa2\x50\x7e\x5c\x13\xc4\xce\xea\x7d\xf7\x1f\xfd\xf7\x34\x27\xa5\x5a\x54\xae\x23\x29\x23\x3d\xa3\x10\x19\xb1\xed\xda\x2c\x33\xe9\x5a\xab\xf5\xf5\x6f\xf0\x66\x00\xa7\x49\xfe\xac\xc0\x03\xc8\x9b\xac\x92\xc8\x84\xca\x3a\x7f\x2e\x77\x2c\x4c\x80\x03\x79\x6a\x92\xb4\x17\xc6\xf4\x77\x5d\x75\xed\x62\xa0\x68\x38\x17\x9b\xc0\x1e\x61\xbc\x94\xa4\x43\x49\xe3\x84\x15\xa5\x4c\x15\xce\xa9\x78\xb3\x3b\xb0\xc3\x72\xde\x3c\x5a\xbe\x0b\x0c\xc7\xe7\x5a\x54\xe5\x02\xce\x45\x3e\x4a\x69\x83\x73\x94\x54\x8f\x1f\x41\xdf\x1d\xfb\xd8\xe5\x40\x89\x59\x62\x89\xe9\x6c\x83\x7d\xf3\xb0\x41\x49\x6d\x97\xf6\x21\x60\x01\x7e\x34\xf6\x9c\xf4\x8b\x81\xf2\xf8\xd9\xf0\x42\x02\x5d\xd3\xb3\xc3\x10\x12\x49\x48\x02\xbf\x17\xf8\xae\xcf\xf7\x54\x5c\xb4\x1a\xe6\x83\xa4\xc8\x9f\x2a\x7f\x12\xc1\xfe\x97\x0a\x44\xc6\x4e\xc7\xe2\xad\x51\x3e\x03\x2b\xd4\xd0\x26\x2b\x2c\x5a\xda\x7d\xf1\x7e\x7e\x44\x73\x80\xc9\x7f\x4c\x22\x93\xc6\xa4\x0a\x46\xbe\xa4\xa9\x8d\xa2\xe4\x3f\x1b\xab\x46\xe8\x0d\x6c\xf2\x4e\x7e\xc5\x19\x22\xfd\x2e\x30\x1e\x52\xce\x29\xc7\x40\x28\x2e\x34\x9c\x7c\x8f\x5a\x82\xf4\x0b\xdd\x33\xf9\xae\xab\x89\x27\x07\xd6\xfa\xe2\x5d\xaf\x59\x5d\x88\x9d\x11\x6e\xc8\xbf\xfb\xa9\x9e\xa6\x8c\x56\x77\x75\x23\xd7\xb0\x3d\x33\x56\xc4\x85\x77\x1b\x60\x0f\x8b\xc5\x1a\x17\x4c\xdd\xcb\xd8\x37\xed\x5e\x86\x88\xff\x0e\xac\xe9\x7d\xb3\x30\x69\x6e\xc1\xb8\xc0\xc1\x01\x13\x2f\x21\xe5\xd2\xa3\x22\x8b\xfb\x03\xf5\x16\x47\x36\xb5\x51\x64\xb4\x29\xf8\x58\x45\x7b\x17\x5c\x5e\x3c\x30\x5d\x0a\x1e\x66\x67\x2b\x9d\x07\xfe\xec\x94\x41\x7a\x36\x5b\x9e\xf4\xe5\x29\x70\xcd\xc5\x3b\xcc\x1f\x51\x4c\xc2\x12\xac\x70\x03\x9b\x6c\xd4\xcd\x34\xe0\xfd\x84\x36\x8d\x3d\x31\xf6\x72\x53\xd9\x92\x65\x9c\xb3\xd3\x01\xf5\x28\xa7\xe3\x3a\x6a\xdb\x50\x09\x5e\x96\xa7\xd6\xe6\x0f\x7a\x0f\xfc\xb7\x31\x15\x59\x0f\x5b\x71\xcc\xa1\x93\x8d\xfe\xf3\xdd\xb1\xa2\x5e\x6c\x04\x4a\xda\xe4\xff\xc1\xed\x21\x39\xff\xf3\x40\x91\x3d\xfe\xb7\xb1\x47\x04\x1e\xab\x40\x23\x7b\xbd\xb5\x49\xbf\x78\xee\x28\x9c\xfc\x1d\xdc\x36\xbb\xf0\x23\x44\x11\x0f\xc2\xad\xe7\xc5\xcc\xde\xb6\x52\xa9\x56\x0a\xf4\x1e\xb4\xa0\xe3\x5d\x9b\xc6\x0f\xb7\x76\xcd\x80\x3d\x29\x9d\x84\x93\xb8\x7b\x21\x2f\x97\xd1\x8a\xb3\x20\x74\x62\xed\xdb\xd7\xcb\x98\xc4\xe9\x83\x48\xfe\x98\xfc\x83\x4e\xcb\x89\x5e\x73\x32\x8b\xac\xef\xe1\x75\x4f\xf7\xff\x0b\x0e\xf3\xf8\x91\x1a\x85\xc6\x4c\xb7\x6b\x47\xb9\x89\xbb\x56\xa4\xf3\x9c\xbd\x81\x9f\x90\x67\xc6\x3f\xeb\x53\xc9\x41\x94\xa4\xc9\x52\x54\x24\x69\xd2\x35\xe9\x22\x35\x4e\xca\x2d\x15\x8d\x9a\xcf\x14\x4a\x10\xdc\x7d\x41\x71\x96\xdb\x14\xff\x4c\xa0\x8f\xd2\x34\x2d\xfa\xb0\xa3\x2f\x9f\x02\xf7\x7a\x4e\xe1\x9b\xa1\x48\x2a\x4d\x6f\xad\xfe\x53\x8c\x22\xe1\x86\x08\x47\xa9\x89\xbd\x32\x32\x91\xc9\x43\xae\x38\xf2\x0a\x09\x3c\x49\xec\xb8\x4e\x3b\x4d\x06\x50\xb7\xf3\x8b\xf9\xc7\x67\x94\xc5\xf1\x19\xb7\x29\x2d\x9a\x74\x91\x05\xf6\xdc\xb3\x2a\x01\x4f\x95\x54\xff\x96\x92\x21\xca\xc3\xc8\xb6\x94\xdd\x15\x1b\xd3\xf1\x45\xb3\x9b\x63\x64\x57\x4c\xdc\x5d\xc3\x2d\xb1\xe9\x41\xc5\x00\xc1\x83\x89\xfa\x69\x18\xf7\x10\x75\x36\xf1\x39\x7d\x2f\x29\x2b\x46\xa3\x24\xa3\xa2\x76\xc5\x68\x4d\x63\x12\x6a\xb2\xe3\x65\xe8\xe7\x84\xff\xf1\x6c\x67\x15\xcc\xb6\x8e\x4f\x9a\x9d\x6d\xdb\x03\xb6\x5b\xe4\xe1\x8a\x9d\x2a\x67\xa5\xdb\x15\xbd\xac\x19\xf6\x33\x44\x9b\x77\xb4\x2b\x31\x86\x10\xf1\xda\xf9\x7a\x04\xb4\xab\x5d\xc4\x23\xc3\xdc\x49\xf7\xf2\x3d\x59\xcd\x15\x08\x96\xf2\x6e\xcb\xef\x25\x7f\x85\x3f\xcb\x17\x81\x8f\x38\xb3\x91\xed\x16\x11\xd5\x7f\x5b\xbe\xc4\x7c\x35\x50\x7a\x0c\x57\xbd\xba\x47\x1a\xae\x98\x1c\xfe\xaf\xc8\x1f\x6f\x78\x67\xf3\xeb\x5f\xed\xf8\x54\xf0\xba\xde\x53\x1e\x5a\xd7\x05\x99\x74\x94\xa4\x20\x09\x4e\x79\x6b\xa4\x0b\x41\x95\x54\xec\x1a\x22\x17\x02\x4d\xfd\xa2\x3f\x2a\x74\x7a\xdf\x3f\x1b\x98\xd1\x48\x6a\xf7\x28\x2c\x6f\xa3\xde\x3b\x7f\x5e\xaf\x97\xc8\x17\xda\x59\x64\x86\x1c\x5b\xed\x69\x9e\x07\x8f\xa9\x18\xbe\x67\x7b\x53\x74\xae\x3b\x7d\xb4\xf9\x69\x67\xe3\xaf\x30\x8f\x9b\xaa\xb5\xf6\x18\x8d\x07\xa2\x82\xff\x53\xe9\x42\x0e\x4c\x9a\x47\x16\xa1\xa0\x78\xb7\x97\xc1\x88\x98\xba\x37\x14\xf4\x17\x4d\x77\x79\xd5\xa4\x3d\xa2\x7b\x0b\xef\xbe\xe5\x64\x7e\xb0\xc7\x60\x06\x9c\x51\x72\x65\x8b\x26\xc2\x06\x47\x83\x8b\xc4\xea\x2f\x29\x6c\xe2\xcf\x4d\x55\xd1\x85\xf6\xeb\xc5\x70\x94\x4d\xaa\xc9\xfa\x93\xaa\x86\x3e\x3d\xaf\x34\xcc\x68\x1d\x89\xed\x4a\x93\x9e\xcc\x92\xb5\xd1\x14\xfd\x94\xc3\x8b\xee\x13\x2e\xff\xc5\x40\x25\xae\xb7\x95\xe5\xfe\x05\x65\xfd\x7a\x42\xa9\xcb\xf4\xad\x89\x19\xe2\x24\xea\x74\xbe\x53\xa4\x1b\xf0\xa9\xcd\x8b\x34\xb6\x6c\xa9\xac\x4d\xdb\x65\x69\x79\x34\xdd\x86\xdb\x31\x57\xad\x59\xb6\xae\x7a\x89\x65\xbb\x19\xe8\xcc\x81\xfe\x9c\xd4\xff\x1a\x20\xec\x04\xde\x8a\xd6\x5c\xb5\x0f\x27\xdb\x29\xe5\x38\x75\x4a\xf1\xcb\xcb\x78\xa8\xa5\x70\xc7\x47\x50\xb9\xe0\x8b\x5a\x6d\x66\xdf\xf4\x4c\x7b\x94\xda\xdc\x1c\xa0\xc9\xc3\x02\x8b\xf4\x54\x22\xb6\xf8\x15\xf7\xf2\x5f\x2f\xd2\x30\x1b\xa5\x05\x41\xdf\x34\xc5\xee\x2e\x17\xf1\x70\x1a\x1f\xd4\x85\xf9\x3a\xe1\x87\x70\x65\x44\x8b\x68\x55\xec\x82\xe8\xef\x09\xb9\xc1\xa7\xea\x71\x92\xe5\x26\xea\x87\xdd\x96\x4f\xe5\x3f\x0d\x3c\x60\xf6\x53\x35\x3b\x87\x49\x8f\x32\x28\x9a\xd4\xf8\x7e\x08\x0c\x61\xc9\x6c\x22\xfc\x41\xb8\xfe\xb6\xd2\xef\x48\xed\x37\x8b\x30\x95\x72\x80\x84\x84\x74\x77\xa8\xd2\xfe\xa5\xf2\x7d\x3a\x5d\xa9\x79\x16\x99\x7d\x8e\xd6\x02\xeb\x45\x8c\xfd\xd9\x75\x43\x07\x58\xda\x19\x7c\x27\x28\x9e\x82\x69\xa6\x07\x47\x99\x93\x6b\x10\x58\x83\xff\x6f\xa0\xf4\xda\xae\x70\x00\x82\xfd\xf6\x3d\xa8\x1d\x33\xbb\x1f\x69\x80\x68\x54\x50\x15\x52\x78\xff\x65\xd2\x29\xaa\x9d\x65\xde\xe2\xd8\x55\x2f\xed\xe7\x5c\xf9\x6a\xd0\xda\xfb\x8a\x87\xec\x78\x79\xc0\x33\x4a\x6d\xfd\x70\xa0\x58\xe6\xb7\x69\xb9\xb9\xfc\x61\xf7\x9c\x2b\x58\x20\xe9\x91\xb2\x0f\xa5\x33\x7c\x31\xf6\x5b\x9f\x59\x49\xc2\xde\x83\x65\x8c\xa6\x85\xab\xf1\xfc\x9f\xab\x7d\xfa\x04\xde\x96\x26\x2e\xa2\xb8\x7d\x05\x3b\x84\x6c\x74\xca\xdd\x77\x3b\x86\x0f\x23\xfe\x69\x55\x16\xb3\x0e\xf1\x69\x9b\x28\x4f\xfa\x36\x1f\xc8\x49\x2c\xdb\x65\xf9\xa6\xe4\xaf\x37\x55\x6d\xb2\x82\xf1\x29\x8d\xb0\x00\xe5\x53\x9d\xe7\xa6\x3b\x40\x3e\xcf\x73\x27\x50\x74\x88\xd3\x75\xb1\xac\x57\x16\xda\x5d\x93\xe6\xad\x8a\x02\x80\x67\x59\xd5\x35\xca\xf7\x4d\xbf\xdc\x1e\x25\x51\x64\xd9\x0e\x08\x8b\xf6\x6f\xc6\x7e\x01\xff\x8d\xf2\x32\x78\xbd\x78\x9d\xf5\x02\x18\x2a\x16\x78\x6a\xd3\x59\xb7\x27\x32\x67\x06\x14\x1e\xad\xe3\x8c\x9b\x78\xa2\xe3\xd9\x33\x0f\xad\x3f\xae\xc4\x08\x87\x23\x9b\x72\x2e\x53\xa9\x94\xe2\x78\xe1\x50\x0e\xed\xf8\xf7\x1a\x7d\xf5\x6c\x37\x19\xda\x29\x7a\xa1\x68\x49\x6e\xeb\x28\xaf\x81\x8f\x15\x01\xf9\xb8\xaa\x41\x7d\x97\x12\x6f\x49\x48\x15\x8d\x39\x89\xc3\x3c\x49\x05\x0e\x21\x55\x87\x09\xef\xb4\xf5\xbe\x22\x39\x5e\x0d\x94\x3b\xfa\x69\x2a\xdd\xca\x6b\x52\xc4\xd3\xd3\x8a\xed\xce\x16\xb8\x08\x74\x76\x4b\xab\xeb\xb3\xc0\x63\xb9\x3e\x6b\x52\x2d\xcd\xcd\xc8\xed\xe5\x82\x08\xf3\x74\xc4\xa3\xe3\xaf\xaa\xad\x2f\x5f\x0d\xf3\x41\x96\x1b\x62\x1f\xe2\xe0\xd1\x45\x72\x1c\x27\xb0\xc5\x41\xe8\x58\x07\xbe\x10\x61\x3c\xb5\xf6\x0d\xab\x20\x2a\xd7\x02\x75\xe2\x5e\xf3\x74\xb5\xb0\x5f\xa4\x36\xa3\xe1\x62\xb7\x50\x6c\xcb\xae\xed\xe7\xc8\x49\x9b\x58\x84\x82\x53\xf3\xf6\x22\xbf\xf4\x34\x35\x88\x36\x2f\x2a\x90\xeb\xa2\x8d\x92\x55\x3a\x60\xf0\x96\xbe\xa0\xbb\xe7\xcf\x2a\x2a\x4a\xed\x88\x8a\x86\xce\x07\x95\x96\xa2\x78\xa2\xfa\x79\xbc\x58\x64\x6b\xe8\x26\xe3\xd0\x87\x78\x94\x08\xf7\x7a\x4c\xb6\x46\x40\x70\x51\x12\xcb\x44\x44\xd7\x3d\x04\xbb\xee\xc7\xbd\x6b\x57\x3b\x2d\x86\xa3\xc8\x02\x8a\x25\x2a\xab\xaa\x72\x76\x4c\xc9\xe5\xdd\x0a\xd4\xf9\xf5\x27\x5b\x45\x8f\xe7\xa7\xe7\xdb\x2f\x4c\x79\x9c\xe8\x67\xf8\x33\x8e\x02\xe9\xde\xe5\xfb\x81\x82\x8b\x01\x72\x8a\x98\xf0\xbf\x34\x28\x8c\xcd\xb5\x97\x4c\x14\x25\xab\x74\x6a\x49\x19\xa0\xfc\x12\x97\xb9\xcf\xce\x0a\xbe\xae\x11\x8f\x63\x0f\x8c\x5c\x67\x5e\xc2\x18\xc8\xf9\x61\x5c\x37\xf1\xf6\xb1\x17\x9e\x0c\xd4\x41\x6b\xe2\xc2\x44\xd1\x9a\x86\xa1\x83\x2b\xc7\x9f\x95\x14\x7a\x18\xdb\xcc\xee\x50\x35\xa7\x0f\xb1\x11\x70\xb0\x10\x78\x2c\xe8\x09\x3e\xe3\xd0\x60\xd7\xd9\xe2\x3d\xa5\x2b\x7e\x4f\x95\xc2\xcb\x88\xcc\x10\x03\x86\xfc\x25\x25\x95\xa2\xbb\x96\x5c\x6a\x6b\x6d\x66\x66\x6f\x3b\x4f\x93\x96\x0f\xdc\x36\x03\x95\x20\x6d\x2a\x2f\xf1\x9e\xed\x27\x11\x27\x01\x98\x5c\x07\xb5\x4c\xd3\xc1\xf1\xb3\x5b\xdf\xf2\x42\x19\x50\x4d\x7a\x57\xb3\xd3\xca\xbe\xfd\x27\x2a\xae\x64\x9f\x0f\x6c\x49\xdf\x41\x7e\xc8\x05\xe3\xcc\xc6\x79\x38\xb4\x71\x6e\x22\x8c\xae\xd3\x6a\x50\xce\xed\x5b\x13\xca\xd9\xd9\x76\xcf\xac\x49\xd9\x01\xfd\x0c\x2e\x3b\xf0\x45\x03\xef\x3a\x8c\x57\x92\x68\x45\xde\x3e\x72\x94\xe3\x4a\x60\xf7\x0f\x30\x8e\xd2\x36\x6f\xc0\x80\x44\x36\x66\xe2\x16\xb6\xeb\x2b\xea\xf8\xde\xd6\x51\xac\xf3\x53\x2a\x73\x5f\x64\x8f\xd7\x05\x0f\xe6\x72\x7d\xeb\x0b\xaa\x73\x31\x4c\x68\x14\x9c\x3f\x16\x26\x32\x68\x49\xfc\xb9\x76\x3a\xef\xdf\xf3\x35\x22\xf2\xb4\x7c\xfb\x00\x3b\xa5\xf0\xee\x9e\xd1\x06\x47\xa3\x24\x85\xb4\x0c\xdd\x0d\x37\x37\x54\xdd\xc9\x33\x3e\xfa\xa9\xb5\x31\x19\x1c\x4c\x7a\x04\xf7\xe5\xb1\x67\xc1\x1d\xd7\x6e\x50\x87\x95\x4f\x7c\x5d\x1e\x66\xff\xcc\xde\x36\x09\xac\xd3\x14\x94\xaa\x90\x76\xc0\x0c\x7c\x64\x0a\x65\x82\x24\xcd\x1e\xa4\x08\xc5\x29\x16\x95\x11\xa7\xb8\x83\x94\x03\xe2\x1a\xdd\xe5\xa6\x88\x95\x75\x47\xbd\x0c\x06\x47\x4a\xf9\x82\xde\x4c\x85\xb8\x86\xca\xcb\xcd\x40\xab\x49\xbd\xb9\x85\x08\x1d\x3d\x4e\xe3\x84\xce\x3f\x77\x3a\xb1\xd3\x1c\x0f\x3c\xba\xfb\xe7\x4e\xfa\x82\xd3\x3f\x60\x9e\x2c\x92\x70\xb4\x11\x59\xd8\x84\x96\xbd\x20\x69\x7c\x47\x77\x02\x11\x1c\xfa\x08\x37\xd1\x09\x70\x76\xed\xe5\x23\x48\x8f\xc0\xd3\x4d\xe1\x87\x8c\x5f\x7f\x06\x91\xb5\x48\x4a\xaa\xe2\x74\x6b\xbd\x8e\x1b\x7e\xb5\xbd\x14\xf6\xfa\x36\x17\x96\xa2\x20\x22\xe8\x6f\x08\x54\xe2\x71\x57\x3f\x86\xdf\x3a\x15\xa8\xb1\xff\xdf\xad\x28\x40\x2a\x7c\xe6\x99\x4a\x83\x8b\x88\xf6\xf2\x1d\x4d\x74\xb1\xad\xc5\x44\x4f\xe4\xcf\xb2\x34\x7b\x71\x42\x71\x4e\x4e\x8d\xb5\xcb\x05\x36\x05\x6c\xb9\xbf\x3f\x7e\x5a\xe5\x41\x12\xf9\xec\xf4\x5a\x83\x9f\x56\x03\x9c\x4a\x50\xe3\x71\x06\x77\x55\x1f\xf6\x7a\x95\x0c\xe1\xa1\xa3\x93\xb5\xfa\xc7\xec\x6c\x3b\x33\x91\x49\x43\xee\xa4\x29\xe0\xf2\xdc\x26\x8e\x64\xf1\xa5\x7d\xd8\x7b\x3f\xc5\x3f\x4b\x6f\x08\x7b\x25\x2b\x03\x0b\x48\x9d\x12\x1c\x4c\xcb\xcb\x94\xc6\xe0\x9e\x2e\x12\xf8\xc3\xe9\xd8\xef\xdf\xe3\x6b\x8b\x4e\x25\xf2\x9f\x8f\x15\xb8\x8e\x3b\x48\xe2\x69\xe1\xb3\x66\xe6\x8e\xb1\xed\xe8\x7a\x19\x43\x32\x91\x1c\x89\x07\x02\xd5\xbf\x42\x1f\x08\x71\xce\x35\x2d\xed\x70\x4f\x29\x3a\xdd\xd6\xbc\xa0\xcf\x08\x87\x82\x79\xfe\x43\x8a\xb0\xc5\x06\x82\x52\x71\x6e\x9e\xa1\x79\x29\xfb\x92\x16\xa7\xa3\xaf\x5c\xf0\x4d\x07\x07\x70\xe1\x92\x16\x63\x25\xa9\x27\x05\xac\xc0\x31\x7a\x37\x62\xbc\xe8\x81\xe3\x9f\x06\x5b\xa7\xd6\xee\xb9\x76\x56\x2c\x32\x80\x49\xa2\x50\xce\xbd\x68\x6c\x24\x0f\xab\xa2\xe5\x53\x53\x6e\x42\x3b\xe8\x05\x21\x34\x78\x17\x7b\x90\xe0\x13\xfc\x34\xe3\x62\x0e\xd6\xe3\xd1\x40\x3b\x25\x30\xd6\x89\xff\x80\xeb\xcc\x74\x4d\x9c\x27\x80\x75\x28\xcf\x4f\x67\x00\xaa\xa8\x31\xc9\x1a\x1a\x7b\xa8\x3a\x70\xde\xc5\x17\x0a\x7f\xba\x9a\xa4\x51\x6f\x35\xec\x59\x55\xae\x3c\xa4\xcb\x95\x87\xaa\xb6\x1a\x36\xde\x49\x53\x01\x69\x3b\xeb\xaf\x49\xe7\x4f\x81\xf7\xb6\xb1\xa9\x1b\x8a\x71\x50\x9b\xc5\x8c\x43\xce\x08\xa4\xdc\xbb\xf4\xc6\xf0\x62\xaf\x29\xa0\xa9\x49\xfb\x5e\x3a\x5f\x31\xda\x65\x06\x1f\xa9\x95\xe9\xf6\x4d\xb7\xe3\x24\x0d\x6d\x9f\x89\x43\xd8\xe4\xef\xe8\x66\x47\xdd\x6b\xb4\x4c\xc1\xdb\x26\x13\xb2\x11\x46\xe7\x37\x03\x35\x54\xbf\x59\xab\x32\xcd\xcd\xb5\xbb\x49\x44\x7e\xd4\x0c\x13\x60\x91\x0c\x9a\x12\x22\x98\x21\x21\xdd\x20\xcc\xbb\x03\x41\xb0\x0a\x5c\x5f\x63\xf7\xb7\x42\x6b\x76\xcf\x95\x99\xed\x94\x72\xf9\xe5\x42\x03\xbb\x1f\x76\x3c\xc1\x0e\x44\x53\x25\x3d\x2a\x46\x5b\x57\x74\xcf\x2f\xb5\x5d\xcb\x6f\x17\xbb\xd6\x21\x85\x94\x3a\xa4\x36\xc2\x51\x9a\x74\x6d\xaf\x48\x11\x4b\xed\xa9\x08\x48\xf3\x67\x85\x54\x5d\x2a\xd2\x30\x29\x32\xa8\x6a\x73\x87\x69\xf3\x62\x83\x58\xe6\x42\x99\xd1\x84\x76\xc5\x4e\xaa\xb1\x52\x36\x7d\x17\x54\x8f\xf7\x73\x9c\x5b\x62\x54\xad\x0c\x83\x47\x36\xee\x96\x09\x33\x15\x4d\x5c\xf1\xb3\x1c\x17\xc4\x6c\x0c\xab\xc2\x1e\xbd\xb1\x65\xca\x9a\x9d\x6a\xea\xe0\xfb\x70\xca\x5e\xa1\xa9\x88\xa1\xb8\x12\x54\x30\xb9\x74\x23\x4e\x2f\xc5\x2d\x76\xdc\x39\x3a\x27\x47\x02\x35\x78\x26\xcb\x6c\xdc\xb7\x69\x36\xa9\x74\xe4\xd0\x3a\xc3\xe3\xdc\x09\x7c\xbd\xec\x1d\xdc\x2d\xd2\x98\xcf\x1b\xc2\xcd\xa5\x24\xb5\x5d\x93\xe5\x3b\x5b\xca\xd5\xc3\x1f\x0c\x2c\x45\x80\xf9\x71\x29\x50\x67\xc1\x76\x14\x01\xf0\xf5\x90\x1f\x02\x8e\xe4\xe8\x58\xc9\xaf\x6f\x8c\x9f\x51\x40\x8a\x32\xb4\x2b\xe2\x30\x5f\x53\xf8\x66\x0d\x24\xb9\xaa\xf0\xbe\xf5\x3a\xcc\xec\x6c\x99\x22\x24\x23\xd5\xff\x39\xad\xfa\x3f\xa7\x6b\xb1\xf0\x0b\x30\x0b\x51\xba\xb9\xcc\x71\x16\x05\x94\xf2\x00\x13\xd4\xbc\xda\xf7\x62\x2b\x22\x57\x0c\xce\xc2\xfb\x97\xa0\x59\xc1\x28\xb6\xd7\x7c\x97\xe7\xa7\xdb\xb0\xe9\xa2\x2f\x52\xbe\xcb\xaf\x3a\xdf\x65\xd1\x6d\x18\x9a\xe1\xd0\x44\xb2\x25\x88\x0b\x61\xcb\x29\xc8\x1d\xaa\x51\xd9\xca\x54\x86\x58\x60\xa1\xf7\x4d\xa9\x18\x22\xf1\x85\x9a\x2e\x03\x6b\xa2\x7c\x50\xa6\xd9\x3b\x3c\x39\xe2\x7d\x9a\x5b\xfc\x39\xa8\x40\x6a\x7d\xbd\xf9\x8c\x3e\x17\x8e\x06\xea\x94\x39\xaa\xf2\x86\x61\x9a\xbd\xf8\x28\x1d\x3a\xdc\xf4\x55\x2d\x8a\x6b\x38\xcb\x05\x0a\xa5\x64\x26\xc0\x71\xc7\x72\x78\x10\xf2\xc3\x58\x5d\x93\xeb\x0a\x59\x72\x0e\x5f\x8a\x45\xf8\x1e\x4d\x31\x75\xb0\x2f\xc8\xdf\x5a\xf7\x2e\x6f\x6f\x8d\x3d\xfe\x91\x73\x7f\x54\x80\x7f\xa8\x6e\x39\x4e\xd2\x6e\x4b\xe9\x27\x1f\x0d\xbc\xb8\xee\x51\x55\x1f\xc9\x06\x66\xd9\x4e\x69\x31\x31\xcc\x03\x54\x65\xef\xd1\x6f\x61\x1b\x38\xaf\xbd\x75\xf5\xfe\x70\xde\xbd\xec\xdc\x66\x79\xb8\x14\x4a\x5e\x27\x38\x26\x5f\x71\xe1\x52\x3b\x98\x67\x1b\x0a\xda\x1c\xc6\x4b\x04\x9b\x74\xbe\x5c\x0c\xba\x52\x30\xd2\xd3\x8e\xe3\x96\x27\x07\xc2\x2e\x41\xcb\x58\x5b\x07\xcb\xf8\x2f\xe9\x87\xf9\xb3\xb6\xf2\x5f\x06\x46\x83\xf1\x9e\xb8\x75\x01\x7f\x36\xd8\x8f\x64\x79\x32\x34\xdd\x01\x9f\x32\x38\x8c\x11\x9b\xf2\xe7\xda\x0e\xb3\x7b\xae\x3d\xb4\xc3\x45\x6f\xcf\x24\x60\x59\xfa\x0b\x58\xb9\xec\x13\x2b\x37\xf1\x90\xe3\xeb\xa1\x77\xc6\xde\xe0\xf4\x35\xe2\x13\xde\xd0\xe9\x5f\x68\x87\x71\xaf\xc8\x72\x02\x26\xe2\xbb\x70\x92\x1d\x0c\x94\x7f\xda\x41\x07\x6f\xb1\x91\xed\xe6\x69\xd8\x0d\xf3\x35\x2c\x56\xcc\xc0\x0b\x4a\xd1\xb8\xde\xb1\x56\x5a\xad\x5d\x85\x66\xe2\x43\x51\x6c\x51\x1a\x9a\x2b\x99\x85\xee\x8a\x76\x1a\xa7\x97\x22\xae\xe3\x9e\x6a\xb8\x68\x57\x6c\x0a\x75\xf4\x57\xc5\xb2\x97\x13\x0c\x3c\x3e\x0b\xa5\x88\x8f\xe7\x57\x94\x13\x5d\x96\x9b\x28\x62\x69\x56\x05\xc5\x62\xbf\x76\x81\xe9\x4b\xf6\x84\x3c\xd6\xf6\xa0\xc2\x86\xb3\xe6\x36\x16\x1d\xb2\xc6\x8b\xaa\x9f\xc5\x6c\x01\x29\x03\x6d\x8d\x56\x66\xf6\xb6\x93\x6e\xd7\x28\x2e\x33\x08\x1d\xdf\xa7\xf7\xc6\x9f\xb7\x56\xe0\x76\xed\x6a\xcf\xef\xd9\xe9\x05\x8e\xa7\xe0\x7b\x21\x76\x1d\x0a\xe5\xc7\x7a\x96\x08\x06\xaf\x69\x94\x32\x37\x1e\x80\x71\xf9\xbf\xc7\xca\xea\xea\xac\x6a\x1d\x93\x9a\x7f\x45\x38\xb3\xd2\x57\xa5\x6f\x12\x45\x4d\x65\x9f\xa2\x2d\x91\xb3\x62\x38\xb4\xdc\x3e\x67\x7f\xea\xc0\xdb\x03\xfc\x54\x0b\xd3\x51\x37\x0e\xee\x21\xc8\x3d\xdf\xa1\x6f\xe3\xcf\xaa\xed\x92\x25\x51\xd8\x6b\xf9\x1e\xe8\x19\x0f\x81\xb9\x70\x46\x29\xec\xa5\x61\xb6\xbc\xa6\x20\x88\x20\x37\xf1\xe7\x4a\xcf\x2c\x1b\x25\xe8\x62\x6b\x7a\x0b\xa5\x2e\x22\x47\xa4\xf5\xea\xae\x07\xca\xaf\x00\x50\x2a\x91\x83\x71\x52\x36\x36\x32\xce\x7e\x85\x63\x93\x40\x51\x22\xcf\x37\x21\x55\x8b\xb4\x2f\x07\x94\xf3\x63\x53\xa0\x70\x65\xe2\xc1\x9a\x95\x13\x3e\x6d\x3b\xa3\xc2\x76\x94\x2d\x90\x57\xdf\x6a\xb2\xa4\x5a\x10\x2f\x8e\x0a\x83\xf4\xb4\x66\x9f\x9c\xd6\x8d\x58\xd3\xb5\x93\x94\xe3\x09\xe9\x50\x71\xb0\x6f\x28\x27\x7b\x66\xd0\xf3\x7f\x28\xac\x71\x2f\x0d\xa3\x88\xa6\x81\xab\x75\x80\xf7\x22\x68\xd4\xad\x87\x36\x85\xfe\x8c\xa3\x8b\xd6\xa8\x8f\xb2\x89\x10\x0b\xbd\xa9\x4b\xf4\xdb\xe8\x13\xc2\x38\xc5\xc9\x8f\xb8\x06\xca\x05\x27\xf6\x94\xa7\xd6\x64\x45\x6a\xd3\x1d\xf4\x82\x11\x7e\xfd\x97\x8a\x62\x24\x5a\x84\xb4\x52\xfe\x97\x27\x51\xb9\x71\x24\x76\xdd\x29\xf0\xfa\x8f\x67\xc6\x4f\x29\x99\x99\xb8\x17\xf6\x08\xfd\xe1\x5c\x24\x8e\x04\x9e\x17\x76\x64\xec\x85\xca\xff\x90\x32\x4c\xfe\xac\x24\x05\x73\xb3\x6c\x93\x15\x9b\x3e\x48\x2b\x09\xd5\x89\xb7\xe8\xcb\xd1\xb2\x38\xac\x97\xec\x71\x0d\x21\xb9\x84\x5a\x99\xc0\x04\x3d\x50\x60\x4a\xeb\xab\x7f\x3c\xf6\x9a\x4d\x4a\xaa\xe0\x2b\xf7\x1a\xc5\x53\x8b\x32\x31\xe2\x66\xa2\xf3\x3b\x71\xb0\xe7\x77\x15\x3f\xbb\x3c\xa4\xb3\x49\x9f\xf7\x1c\x42\xf1\x43\x1f\x0c\x08\x6b\x27\x3a\xaa\x58\xae\xb7\x99\x2c\x5f\x8b\x08\x33\xed\xbd\x31\x90\x49\xa0\x05\x71\x8d\x5f\x14\xff\x1f\x0a\x17\x1a\xf8\xc8\x24\xba\x40\x51\x7e\xce\x42\x8c\x99\xff\x00\x8d\x22\x1b\x8a\x37\x89\xc3\xf4\xec\xa2\xc9\xd9\x46\x05\xf3\xeb\x90\x7a\x58\xc8\xf7\x60\xb5\x9f\x0c\x9a\xfc\x6c\x99\x13\x12\x89\xf7\xa9\x23\xde\x38\xd0\xf9\x59\x27\x8d\xb7\x98\x24\xb1\xe5\xa3\x96\x95\x04\xc6\x0a\xeb\xfc\xa6\x16\x7a\xb1\x8b\xa2\xe1\xe4\x60\xca\x0a\xb3\xec\xfe\xe4\x30\x8c\x8b\x8c\x0e\x04\xa0\xfc\x77\xae\x7b\xd4\xe7\x69\xb5\x68\x0e\x11\x95\x01\x15\xff\xc7\x90\x89\xa0\x32\x74\x4c\x0d\x10\x8a\xb0\xa8\xce\x6f\xeb\x78\xe2\x76\x66\xd8\x3e\xd0\x81\x77\x5d\x3b\xe0\x8b\x86\x86\x0e\x39\x25\x65\x16\x0b\xc2\x59\xc7\x3b\x37\xdd\x1b\x54\xe3\x72\x5d\xea\xd9\x59\x0e\x04\x0f\x6b\x38\xa9\x35\xe4\xc9\x23\x6f\xb4\xbc\x2f\xb7\x37\x97\x4b\x01\xd9\x2a\x37\x35\x91\x5b\xbc\xa5\x4d\xf2\x44\x26\x0f\xb9\xd1\x5f\xab\x00\x3f\x8c\x4d\xb7\x5b\xa4\xb4\x60\xdd\x93\xdf\xd4\x69\xdb\x47\xb4\x8c\xf8\x3f\x70\x8c\xf2\x7f\x34\xa4\x58\xf3\xed\xa5\x50\xd4\x14\x10\x9d\x7d\x3f\x50\xa1\xda\xf7\xd5\x43\x45\xc9\xea\x0e\x8f\x5e\xf8\xbf\x68\x5f\xe0\xdc\x4d\xe1\x22\x2f\xab\x10\xe2\x2d\xda\x2f\x50\xef\xf8\x11\xfe\x2c\xbb\x1f\x34\x15\x4c\xda\xa9\x49\x2d\xb7\x19\x9c\x92\x77\xf9\x58\xc2\x90\xd8\x3a\xfd\xf7\x4d\xef\x69\x67\x36\xce\xe0\xc7\x2a\x1e\x82\xbe\x0d\x7b\x55\xeb\xb6\x1e\xaa\x15\x76\x5e\x68\x8f\x8a\xc5\x28\xcc\x06\x36\x9d\x2c\x67\x97\xec\x6b\x2d\xa7\x89\x0d\xe4\x12\x22\x03\x94\x67\xe5\xb0\x6c\x02\x44\x45\xe1\xb2\x55\x7a\x99\x1c\xb4\xe0\x4d\x4f\x74\x7c\x06\xf6\xbb\x63\xe5\x2c\x76\x41\x6d\xc5\x66\x68\xe3\xde\x50\x02\x09\x1c\x8e\xf7\x14\x02\xf4\x9e\x86\x1e\x27\x91\x8d\x80\xfc\xc5\x3d\x41\x8b\x08\x61\xdc\x51\xec\xaa\xae\x3e\x3b\x3b\xcb\x99\xe2\x65\x75\x34\xf6\x93\x32\x6e\x73\xac\x8c\xeb\x81\xa7\x0e\x5c\x07\xa1\xa7\xa2\xdd\xba\x8c\xfd\xa1\x09\x87\x59\xef\x49\x2d\xb4\xf3\x14\x49\xbf\x18\x95\x2b\x2c\xf3\xce\x8e\xcf\x82\x6e\xb9\x83\x2e\x36\x6f\x50\x28\x09\x69\x95\x46\xd2\x6e\x9d\x97\xba\xa7\xdd\x1d\x10\x11\xce\xb6\x54\xe9\xf7\x1c\x2f\x1e\x29\x60\x69\xf4\x58\x64\x0e\x48\x13\x00\x75\xb2\x4b\x4a\xb5\xfe\x92\x96\x89\x58\x1e\x98\xd7\x43\xda\x36\x84\x42\xa1\xf9\x14\xaa\xa4\xb8\x1a\x66\xbd\x64\x48\x05\x77\xd6\x7d\x0e\x14\x76\x6d\xac\xb2\xf6\x1f\xab\x54\x2c\x8c\xfb\xcf\x79\x8d\xf9\x9f\xff\x45\xad\x3a\xf1\xf7\xd6\x55\xcd\xed\x06\x42\x16\x01\xd8\xe2\xd1\x30\x7a\x8f\xae\x53\x26\x2e\xf2\x80\x5e\xb6\xe0\x21\x32\x2e\x42\x53\xec\xb2\x6a\x20\xfe\x8b\xaf\xac\x3b\xf3\xcc\x8d\xa7\x88\xdb\xe6\x4c\x26\x9c\x7a\xc1\x53\x1d\xa5\xad\xf2\xec\x7a\x39\x45\x30\x3c\x1f\x8c\x3d\x42\xe2\x67\x3a\x74\x4a\x39\x43\xd0\x5d\x33\xde\xb7\xdd\x61\x91\xae\xe9\x06\xeb\xdf\x47\xaa\x8f\xef\xbb\x4b\xbc\x56\x76\xa4\x41\x97\x01\x1b\x32\xd3\x03\xe5\x6f\x35\x60\x26\x47\x61\xde\xf5\x42\xd5\x28\x25\x03\x19\xc3\x9f\x55\xa9\xba\x9b\x72\x42\xaf\xf4\x57\x16\x9c\x4c\x92\xda\x3f\x55\x97\x9b\x9d\x54\xc5\x26\xca\x71\x5a\xca\x33\xb2\x1f\x76\x27\xee\xab\x9d\xe3\x9b\x57\x97\x55\x93\x3e\x4b\x86\x76\x31\xe9\xad\x4d\xea\x76\x1f\xbe\xc2\xad\xa5\xf9\x69\x7e\xfa\xed\xe4\x61\xc4\x9f\x95\x1a\xcd\x62\x19\x5f\x67\x19\xfe\x86\x9b\x58\xe5\xb3\x60\x73\xbd\xa7\x3a\x59\x9f\x13\xac\x4c\x04\xf0\x1b\xd2\xb6\xee\xc0\xa4\x61\xee\x54\x8c\xd0\xf3\xbd\xa4\xfa\xbf\x97\xc6\x5f\xa9\xb1\x32\x17\xda\xfb\xa6\xe7\x5a\x3a\x2a\xf0\x94\x8c\xb3\xca\xd8\x25\xb2\x59\xc6\xec\x50\x14\x21\x0f\xd3\xb8\xf0\x67\x77\xee\x47\xc9\xe2\xe2\xda\x94\x6f\xbd\x42\x7e\x0e\xbd\x93\x49\x48\x16\x0a\x87\xda\xef\xa8\x67\x70\x98\x09\xc6\x68\xeb\x71\x40\x81\x77\x5e\xa4\x4b\x74\x1c\x20\x56\xd8\x54\xae\x0c\xbc\x9b\xc8\xd4\x6a\xb2\x48\x28\x16\xb3\xb0\xc7\x3a\x00\x92\x49\xb7\xe6\x3c\xdf\xbd\x01\x11\x6e\xe2\x3c\xcc\xd3\x22\xcb\xd1\x82\x77\x41\xaa\x43\xa1\x5e\x57\x25\xbe\xcf\x1a\x9c\x24\xda\x91\x35\x92\xbd\xb3\x3c\x9a\x56\x38\x38\xd1\xc4\xd5\xc8\x6d\x9a\x86\xce\x92\xc7\x09\x93\xce\xce\x3a\x61\xd2\x3a\x09\x28\xcb\x0d\xde\x0b\x9a\x22\xac\x82\xc2\x17\xaa\xfe\xde\x2d\xa3\x41\x28\x7b\x97\x2b\x11\xfb\xdd\x21\x6c\x42\x7c\xe1\x81\xbb\x61\xd4\x4f\xc3\xe1\x04\x65\x58\x8e\x02\xe0\xc7\xa1\x22\xb5\xd2\x94\xcf\x2d\xb4\x47\x36\xcd\x0a\xd3\x13\x2f\x0e\xf1\x41\xa5\x3f\x82\xfa\xca\xdb\xca\xc5\xa1\xee\x11\x4d\x0f\x96\x97\x67\x40\x57\x4a\x4e\x48\x93\xaf\x05\x4a\x16\xe7\xac\xd6\x16\xff\x44\x05\x35\x79\x38\xe4\x88\x56\x8c\xc7\x94\x48\xd8\x49\x05\x23\x5c\x4b\x0a\xb2\x63\xf7\xdc\x8d\x73\x8a\xd2\x76\xae\x36\x9d\x76\xcd\xb4\xbb\x83\xb0\x7c\xb7\x15\x48\xbf\xda\xd8\x2f\x68\x1f\x0b\xc8\x6d\x3f\xd8\x52\xa2\x4c\x34\xe2\x8e\x00\x59\xbe\x0b\xbe\x20\x54\xb9\xf0\x47\xca\xb1\x41\xcd\xf3\x0e\xc1\xe5\x50\xba\xbc\x45\x3b\x93\x6e\x2c\x63\x02\x42\xe3\x12\xdb\xf9\xe3\x35\x50\x04\x55\xdc\x6d\xdc\xab\xfa\xd3\x8f\x2b\x36\xbb\x4d\x87\x70\x18\x67\x61\x7f\x90\x4b\x19\xae\x91\x6b\xd5\xd4\xab\xce\xc3\x61\x11\xb1\xe4\x20\x02\x6a\xa0\xe8\x98\x08\x88\x83\x4b\xb2\x31\xdf\xcc\x17\x6e\x83\xed\x51\xfc\xc3\x0a\x88\x4a\xcb\xe4\x0c\xc5\x32\xfc\x19\xb7\x2f\x32\x89\xcf\x6c\xf5\x74\x7f\xb9\xfd\xfc\xf3\x15\x23\x61\xc5\xf9\x3b\x1f\x54\xd8\x39\x71\x9e\xae\x3d\xd8\x72\xf6\xc6\x7c\x50\x00\x18\xf1\x81\x4a\x4b\x59\x43\xcb\x41\x3b\xb6\x12\x0a\xf1\x53\x0f\x54\x44\x8c\xb7\x30\x15\xcb\x63\x1d\x61\x6f\x7d\xfd\xef\x9e\xa3\xa8\x37\xcc\xc3\x15\xab\xe1\x7c\x81\x82\xf3\x55\x7c\x57\xe3\x68\xed\x19\xdf\x0a\xdb\x40\x16\xca\xec\xaa\x8e\x0f\xe4\xbe\x0f\x1d\x06\x89\xd8\xca\x89\x22\x1a\x37\xad\x5f\x99\x11\x6d\x66\xd4\x96\xf8\x87\x90\xb7\x3a\x95\xf6\xaf\x7f\xc3\xa9\xf7\x6b\x7c\x2b\xb2\x7f\xbc\xd4\x07\x3a\xbe\x99\xf9\xc8\xba\x0a\xef\x2f\xe1\xa1\x31\x02\xd7\x68\x5a\xe3\x90\x9d\xe8\x94\x53\x19\x81\x11\xe4\x4b\xb1\xb5\x3f\xc2\x7d\x60\x9c\x41\x15\x87\xe0\x4f\xf1\x02\xd0\x88\xd8\xd6\x91\x43\x67\x25\x59\x45\x3d\xfe\x55\x86\x05\x1d\x1f\x2b\x39\xab\x2b\x98\x6e\x88\xa6\x37\x83\xad\xf2\x8d\x52\x09\x4e\xed\x8a\x8d\x0b\xd7\x31\x42\x81\xe3\x77\xf1\xed\xcc\x2d\xc5\xc3\x4b\x0f\xbf\xa1\x44\xb1\x6a\xc2\xdc\x89\xa8\xb1\xc3\x68\xe0\xa1\xb4\x88\xae\xc5\x99\xba\x4e\x5b\x6a\x0f\xcc\x0a\xc0\x55\xac\xaa\x15\xa8\x84\xf8\x9c\x8a\x31\xbb\x79\x42\x20\x7c\x04\x09\x00\x5a\xa2\x2c\x7e\x94\x82\x04\x1c\x50\x37\x1b\x98\x51\xe4\xc1\x4c\xa7\x05\x93\x61\x02\x4d\x8c\xa9\xa3\x18\x67\x08\xc9\x65\x53\x4e\xdf\xf0\x4e\xfe\xbd\x8a\x11\xfe\x7d\xd3\x79\xdb\xb3\x4b\x65\xfa\xa6\x44\x2c\x78\x4d\xf1\x85\xca\x8d\x06\x66\x38\xca\x06\x61\x6a\x27\xcb\xd9\x20\xb6\x5c\xe5\x77\x89\x5f\x57\xcb\x29\x23\x7e\x4f\x1b\xdb\x7f\x4f\xd5\x7b\x16\x4d\xba\x08\xec\x02\x76\x4c\xe6\x48\xf0\x85\x42\x34\xa6\x76\x25\x89\x0a\xe7\x41\x24\x16\xf9\x4a\x74\xa1\xbe\xe1\xef\x9b\x6e\x2f\xa6\x89\xe9\x31\x8b\x4e\x50\x55\xb4\x71\x23\x4d\xc6\xe6\xc6\x2e\x83\x2a\x97\x1b\x25\x59\x8c\x98\x69\x93\x3c\x85\x37\xaf\x3b\x5f\x92\xd4\x2e\xda\x68\xb2\xa2\x52\x4e\x33\xcd\xf1\x83\x5c\xa4\x03\xdd\xf8\xfb\x09\xf5\x52\x5b\x26\xb5\xbd\x30\x1f\xf0\x26\x8d\x66\xdc\xdb\x18\x01\xbe\x08\x9e\xde\x1a\xf7\xb5\x77\xed\x7a\x4e\xb9\xf2\xee\x5c\x57\xfc\xfe\xa3\x63\xef\x42\xb0\xc9\x65\x2f\xe1\x0b\xfa\xfc\x8a\xfd\x75\x50\x7e\xbe\x3a\xf6\xd9\xc4\x11\xc2\x10\x01\x4f\x74\x50\x6d\xd8\x52\xdc\x44\x41\xe8\x06\xb6\x05\xec\x24\x13\xeb\x1e\x7b\x0e\xeb\x50\x47\xe5\x71\x2d\xc1\x09\xca\x6a\x50\x63\x63\xc0\x1d\xbd\xb1\x7f\xf8\x44\x47\x85\x95\x3b\xd7\x09\x05\x84\x77\x71\x17\x5b\xb4\xb0\x5a\xc8\x17\x94\xf1\x1d\x5a\xa0\x03\x45\xbc\x7f\x8c\x37\x8a\x75\x7f\xda\xc1\x67\x96\xe3\xf2\x04\x9c\xdc\x22\x39\xe5\x05\x78\x8f\x2a\x01\xde\xa3\xc1\x7d\xb4\xa8\xec\x81\x51\xc4\x24\x3a\xe0\x34\xf0\xd8\x77\x54\x08\x8d\x36\x86\xa3\xb4\x2a\x59\x84\xc0\x6b\x6f\x9d\x55\x1d\x82\x6e\x12\x77\x6d\x1a\xdb\xde\x03\xe5\x78\x69\xe7\x6d\x27\x1d\x5b\xc6\x19\x00\xb4\xdf\x46\xf6\xc5\x17\x63\x4f\x31\x38\xaf\x7d\xfa\xde\xa2\xaf\xe2\x5f\xe7\xb7\xc5\xff\xe3\x26\xee\x6a\x32\xb4\xb1\xb2\xc9\xe3\x00\x8c\x2f\x94\x6a\x63\x66\x56\x77\xb6\x9c\x5c\xef\x49\x14\x0a\x04\x12\x40\xef\x5e\x76\x1d\xdf\x87\x81\x56\x32\x7e\xe8\xbb\x08\xf3\x1c\xea\xd1\x89\xd3\xb5\x3a\xed\x26\xe5\x26\x01\xd8\x84\x6f\x48\x6f\x56\xc3\x51\x50\xa1\x98\xea\xf8\x74\xf2\x9e\xd2\xe9\x5a\xb5\x76\xf9\x31\x15\x99\x7e\x8f\xc6\x11\xb9\x2e\x4b\x0a\x61\x77\xb8\x85\x49\x8f\x1b\x41\xcc\x85\xc9\xbd\x03\xb5\x4b\xb4\xc7\xce\x2b\xfd\x2c\xc8\xd4\x88\x98\xab\x72\x5e\x3e\x89\xf7\x23\x28\x45\x9a\xb6\x08\x20\x8e\x61\x69\xb8\x02\xe9\x6e\xe9\x4e\xb2\xb9\x04\x42\x9e\x8f\x6b\x29\xc7\x6b\xaf\xb5\xf3\x81\x0d\xd3\x09\xe5\x3a\x7a\x81\x03\x10\xbc\xc6\x4b\x4a\x83\x60\x5d\x01\x79\x52\x33\x0a\x7b\xd4\x98\x9e\x28\x17\x19\xc6\x7c\xb3\x62\xd1\xaa\xe1\x37\xbe\x1c\x9c\xa7\xa6\x67\x1f\x51\xa0\xff\x1d\xeb\x15\x27\x43\xdf\xa7\x00\x6e\x0b\x4f\x7b\x1c\x81\x03\xa3\x54\x02\xb5\x53\xed\xa4\xbe\x09\x4b\x28\x2a\xf8\xca\x4d\xcd\xf4\xbc\xa9\x25\x2c\x3e\xc2\x60\x61\x39\xff\xc9\x58\x39\x04\xfe\x69\x93\xbb\xdf\x42\x7b\x35\xc4\xde\xef\x64\xbf\xbd\x97\xf6\xc7\xf7\x6d\x13\x9b\x61\x08\xa5\x79\xc1\x09\xa8\xa7\x3c\x0e\x2d\x20\x51\xc6\xf2\x75\xee\xcf\x95\xef\xca\x44\x0d\x60\x32\x3b\xdb\xee\x0e\x8a\x78\xb9\xa5\x42\x5d\x1a\x2f\x09\x7b\x1b\xfd\x6e\x8a\xc5\x61\x98\x3b\x4e\x01\x86\x00\x6f\x15\xb9\xd8\xb7\xc6\x95\xa2\x52\xbd\xcc\xb2\x67\x01\xc8\x23\x6e\xb3\x49\x0d\x55\xd9\x06\x1d\xd2\xfe\x99\x36\x0d\xe1\x55\x20\x8d\x54\x2c\x51\x29\x9d\x3a\x1e\xa6\x49\xd3\x30\x49\xb9\x33\x20\x4d\xf7\x4a\xd3\xa5\x89\x39\xd3\x0f\x4d\x9c\x4b\xc4\x25\xc9\x0e\xfd\x09\x39\x8c\x69\x6e\x30\xc9\xac\x89\xbe\x39\x34\x69\x3f\x8c\x4d\x14\x9a\x96\x8a\x13\x21\x87\xc3\x9f\xb5\xb1\x00\xa0\x99\x56\x75\xfc\x8f\xa9\x64\xef\x98\xdb\xe5\xb2\x41\xb2\x9a\x11\x94\x0a\x39\xe7\xdd\xb1\x32\x3a\x65\xe7\x20\x4c\xf8\x07\x3b\x95\xe2\x83\x27\x01\xdd\xad\x34\x4a\xc7\x0a\xaf\x54\x6f\x2d\x2a\x34\x42\x9e\xc4\x13\x1e\x1c\xf2\x63\x0c\x00\xf2\xc3\xf7\xe9\x60\x05\x74\xe7\x4f\x6b\xaf\x76\x66\x6f\xfb\x75\xd3\x4d\x16\xb3\x24\x9e\xd0\x07\xed\x8f\xd4\x99\xf0\x99\x8e\x0a\x8e\x35\x71\x0e\xe2\x24\xb7\xa4\x2b\xaa\x91\x97\x38\xd0\x80\x08\x52\x20\x17\xf1\x88\xfd\x42\x55\x5a\xb7\x37\xf9\xb5\x8e\x8a\x6c\x20\x13\x0e\x37\xf2\x96\x16\x39\x7f\xab\xd6\xff\x9a\x9d\x6d\x9b\x6e\x37\x49\x7b\x13\x5a\xdf\x15\xa3\x8b\x9d\xec\x98\x4e\xb8\xdf\x51\x0d\xf6\x81\x8d\x46\x68\xfd\x39\xe6\xbf\xe8\x55\x7d\xe7\x69\xbc\x38\x47\x09\x77\x16\xe3\x0f\xd4\xe0\xeb\x34\xb5\x62\xd3\xc7\xfc\x6f\x39\xea\xff\x51\x55\x00\xaa\xeb\x1d\xcd\xec\x6d\x0f\x42\x2f\xa3\x0c\x0c\xd0\x5f\x2a\xc8\xc0\x89\x4a\x87\xf9\x7e\xa9\x48\x64\x4d\x66\x57\xcd\x1a\xa0\xe9\x1c\x7a\x05\x15\x96\x86\xab\x6a\xfe\xc4\xcd\xd9\x51\xf9\x6b\x58\x05\x78\x49\x47\x54\xe2\x78\x44\xbb\x28\xa5\xe1\xa2\xe5\x12\x13\x3a\x7c\xf0\x33\xe1\xcf\x4a\x14\x2e\xb5\xba\x24\xdb\xa4\xf0\xe8\x73\x92\x5f\x4c\xbb\x1c\x81\x62\x7c\x0f\x63\xae\xf1\x45\xa0\xa3\xe2\x55\x9b\x66\x93\xbe\x89\x00\x54\xaa\x8b\x60\x5c\x97\x09\x3c\x5a\x89\x53\x9e\x54\xa5\x48\x93\xc6\x64\x25\xe6\x3b\xc9\x97\xb9\x7e\x2e\x4a\xb7\x6a\xfc\xff\x10\xfb\x90\x86\x61\x63\x0e\x1d\x6a\xe2\x0f\x12\x1d\x90\x6b\x56\x4a\x79\x59\x30\x37\xf0\x49\x47\x93\xff\x86\x56\x73\x4a\x93\x78\x39\xe4\x9d\xc5\x7d\xd5\x6e\xf7\x59\x95\x84\xb2\x9c\xf8\x29\x93\x4a\xdb\xfc\x96\xf2\xfa\x63\xca\x08\xce\xc0\x37\xb7\x00\x02\xb6\xae\xd8\x5d\xbb\xda\x59\xd1\x1d\x4c\x54\x44\x2b\xbc\x32\x1d\x36\x37\x76\x12\x76\x21\x6d\x3f\x89\x7a\xd0\x29\xda\xe3\x8d\xbc\x5c\x89\x11\x31\x92\x98\xf2\x78\x3f\x87\xc5\x28\xc9\xc1\xe5\x98\xdf\xc3\xe9\x08\x14\x9d\xf8\xb3\x02\x88\x9a\xcc\x8e\xf2\xb0\x0b\x0a\x5b\x39\xf6\xee\xc7\x5d\x26\xf3\xa5\xce\x66\x13\x83\xf1\x16\x5f\x8c\x96\xd3\xeb\x05\x92\x03\x59\xe3\x11\x55\x8d\x2e\x93\x75\x13\xed\xa0\xb7\x8c\x70\xf1\xb8\xea\xa7\xfd\x8d\xfa\x0b\x6f\x8d\x95\xec\xca\x89\x2a\x22\xc5\xa9\xac\x5e\x09\xf4\x73\x86\xf1\xb2\x58\x31\x62\x0b\x9d\xc4\xbe\x81\xdd\xee\x84\x22\x26\x20\x02\x44\x0f\xe2\xc3\x06\x94\x67\xdb\x16\x69\xd2\x2b\x43\x53\x07\x9b\xc3\xdd\xfe\x74\xac\xec\x4c\x6f\x69\xe4\xe6\x35\x35\xe4\xec\xec\xcb\x72\x78\x4e\x68\xc1\x25\x67\x87\xc7\x3e\x55\xda\x50\x99\xd6\x7f\xf4\xed\x2e\xf6\x84\x9c\x50\xb6\x25\x48\xb6\xf0\xb2\x51\x9e\x97\x5e\x8b\x42\xd3\x47\x91\x5d\x63\xec\xab\x33\x4e\xd9\xed\xa7\x85\x34\xf7\x6c\xbc\x12\x66\xa6\xcf\x62\xb8\x22\xdf\xa3\x7a\xd6\x75\x03\xda\x99\xbd\xed\x28\x5c\x4c\x45\x5b\x8d\x8d\xd6\x54\x73\xb6\x2e\xa3\xb0\x6b\x57\xbb\x9b\x0c\x97\x92\x14\x9e\xd9\x12\x3f\xfb\x66\xdc\x6d\x24\x4c\x20\x26\x5d\x50\x10\xd1\xcc\x94\xdb\x44\x19\x20\xa2\xc7\x7f\x0d\x8b\x0b\x08\xaa\xb7\x75\x71\xe7\x24\x3d\x1f\xff\x54\xd0\xda\x35\xb3\xa9\xa7\x68\xb2\x42\x2e\x32\x73\x5e\x06\xd4\x81\xff\x1f\xa2\x46\x1a\x16\x28\xf3\x19\x10\x33\x5c\x52\xd2\x50\xb7\x95\x3c\xf6\x73\x1d\x2a\xc7\xa9\x5c\x72\x86\x03\xc6\x16\xe6\x19\xba\x25\x8f\x50\xab\x0f\xad\xce\x3f\x1a\x6f\xff\x9a\x6f\xe8\xcd\x4f\xfb\x32\xc7\x9e\x99\xbd\x22\xd6\x84\xd4\xf8\x5e\xa0\x1a\x0e\xd0\x58\xc2\x71\xff\x77\x3b\xfe\xf5\x16\xb1\x59\x8c\x60\xf4\x2a\xc4\x66\x1f\x42\x5e\x09\x14\xd4\xfc\x78\xc5\x02\x2c\xcc\xc2\x4c\x1d\x1b\x10\x6d\xe1\xcf\xeb\xda\x4c\x83\xe0\xfb\x6c\x0e\x85\x2d\xf9\xb4\xd2\xfd\x3e\xdd\x00\xfa\xdf\xd3\xee\xad\xc5\x66\x18\x02\x8d\x89\xf1\x38\xac\xd4\x8b\x0f\x37\x75\x58\x7a\x36\x5b\xe6\x9a\xb6\x2c\x4e\xbd\x52\x3d\x07\x26\x89\x63\x9b\xf2\xf1\xc4\x49\x96\xc6\x10\x1c\x53\xb5\xa4\x9e\x35\xf9\x00\xe1\xb5\x6c\xf3\x2d\xa7\x30\xa0\x8f\xa7\x43\x2a\x81\x5c\xb4\x26\x9d\xd4\x2c\xa3\x73\x0a\x05\x74\x30\xf0\x92\x07\x5c\x99\x12\xd0\x5a\xd3\x38\x0c\x92\xa5\xa5\xa1\x81\x02\x2c\x2a\xa5\x47\x35\xa5\xf7\xa8\xea\x50\x67\xf6\x00\x5b\x89\x6d\x59\x09\x7c\xa1\xf6\xe4\x70\x38\x4a\x93\x15\xca\xf1\xc8\x67\x57\x93\x03\xf1\xf9\x5b\x38\x27\x59\x9f\x98\xee\x19\x59\xe7\x77\xe9\xd5\xf1\xe7\x40\x99\xfc\x1f\x56\xdd\x25\x3b\x1c\x45\xc9\x9a\x4d\xb3\xbf\x4d\x92\xdf\x07\x01\xab\x69\xe8\xcc\x3e\xd8\x61\x62\xac\x6c\xda\xcf\x68\xb3\xb1\x38\xb7\xa9\xcd\x72\x0b\x7c\xa5\x53\x28\xd8\x25\x40\xcf\xe3\x4e\x5e\x6e\xd5\x64\x03\xfa\x21\xf6\xbb\x0a\x5a\xca\xfb\xca\xef\xab\xdd\x34\x1c\x8d\x22\xe6\xd2\xe1\x79\x61\x8e\xeb\xf8\x1e\x0e\x0d\x7a\x5d\xe9\x78\x8d\xa2\x22\xee\xdb\xde\x4e\x3c\xa0\x58\x4c\xd0\xce\xaa\xa3\x65\xd4\xc3\x0f\x8e\x7d\xe7\x76\x83\xee\x83\x35\x6d\xf0\x98\xb2\xba\x54\x53\xea\xce\xd6\x2a\xdd\x4b\xfb\xdb\x7b\x5f\xa9\xa8\x24\x71\x81\x49\xd0\xfb\x4d\xee\xf5\x8b\x89\x81\x0f\x01\x2b\xab\x29\xe9\x5f\x16\xdd\x46\x44\x72\xbc\xc1\x19\x7c\xa1\x1d\x85\xb1\x2d\x46\x34\x84\x15\xed\x01\xc1\x1d\x36\xf4\x49\x47\x45\x14\x2d\x9a\xee\x32\x87\x9e\x4d\xd4\xa6\xad\x3d\xcb\xb9\xb9\xf2\x80\x99\xf4\xdb\x0f\xf2\x35\xac\xda\xd6\x7a\x15\xaf\x36\x3f\xed\x74\x72\x1f\x53\x64\xd1\xa5\x22\x52\xb1\x16\xba\x0f\xfc\x79\x5d\xb1\x80\xcc\x4a\x18\xf7\xb3\x9d\x9a\xb9\xfd\x30\xf5\x1d\x74\xab\x0f\x41\xd0\x3d\x15\xda\x5d\x50\x66\xf3\x37\xf1\xc6\x1c\x20\xab\x1c\x43\x4c\x8e\x8d\x26\xeb\x79\x33\x32\x69\xde\x52\x12\xa4\xf4\x15\x22\x47\x5a\x47\x94\xcf\xd3\xe3\xb0\x2f\x1e\x4a\x62\x80\x69\xf2\x67\xd7\x93\x5d\x4d\xd2\xe5\xa4\xc0\xcb\xc5\x50\xa1\xb7\xc0\xf1\x0f\xee\x12\x21\xef\xd1\x86\xc8\x76\x0f\x41\xa7\x2b\x91\x2d\x1b\x98\x39\xdc\xa2\xf3\x29\x3b\xd6\xd4\xd5\x5b\x1d\x84\xa3\xa8\x5c\x60\x4a\xc4\xaf\x2a\x85\xd2\x44\xe5\xb2\x07\xc2\xcc\x81\x7a\x5d\xb1\xab\xfc\x5a\xe1\xea\xaa\xa8\x2e\x49\x72\xf6\xd0\xc3\x19\x78\x85\xe6\x05\x7f\x56\xe1\x49\x2f\xcc\x4c\x3a\x6c\x29\x32\x33\x64\x8b\xa5\x24\xe9\x83\xed\xae\x49\xf3\x24\x89\x01\xb0\x10\x9b\x40\xcc\x06\xa0\xa8\xbe\xc0\xb8\xf1\x7f\x61\x7d\xf1\xff\x34\x89\xb9\x95\xef\xaa\x5a\x3b\x61\xf9\x51\xd1\x3f\xb9\x3f\xd1\x20\x46\x72\xe0\x0a\x89\xbe\x95\x71\x4b\xc7\x7c\x5d\x1b\x9b\x34\x4c\xf0\x9e\x50\x61\xba\xa9\x71\x03\x47\x68\xe7\x93\xfa\x88\x52\xe0\xa0\x2e\x40\xa6\x64\x73\xdf\xa5\x31\xe1\xcf\x4d\x8a\x30\x45\xdc\xb3\x06\x88\x6d\xd6\xc0\xa4\x09\xe5\x14\xc4\xcb\x3b\xc4\xc5\xad\xfb\xb2\xa8\xbb\x61\xda\x2d\xc2\xbc\xa5\xda\xf0\xef\x28\x47\xcc\x77\x6a\x45\x86\xd9\xd9\xf6\x52\x62\x20\xae\xcc\x0e\xcf\xf4\xad\xe2\xf6\xfc\xac\x3b\x23\x52\x3b\x4a\x93\x5e\xd1\xcd\xc3\x15\x11\xf1\x14\x94\x21\x8d\x07\xca\x91\x5f\x68\xef\xa5\x2f\x95\xb4\xd5\x62\x9a\x2c\xdb\xd4\xf4\xed\x43\xde\xbe\xf8\xf8\xd8\x8b\x8d\x40\xb2\xc9\x79\xd6\xb8\xa4\x16\xee\x33\xf8\xa6\xcb\xfa\xfc\xfa\x0b\x4e\xc6\x50\x8d\x39\xac\x54\x40\xd7\x51\xd0\x16\x8f\x94\x72\x21\x21\x20\x6c\x54\x58\xfb\x5a\x3b\x63\xab\x11\x56\x6b\xa3\xe7\x17\xe5\x36\xcf\x29\x58\x8c\xcc\xd0\x4e\x2a\x29\x69\xdd\x3e\x66\x18\x01\xd6\xc6\xb1\xb1\x12\xb3\x3e\xa6\x84\x16\x07\x45\xdc\x4f\x99\x81\xe2\x4a\x54\x4e\x29\xf9\x98\xea\xb3\x6d\xe8\x96\x78\x6a\x0d\x71\x86\x9d\xdb\xe8\xa9\xc0\xab\xab\x9c\xaa\x6d\x0e\x7b\xe6\xf7\xb4\x7b\xb6\x1b\xf6\x44\x9e\x0f\x09\x1b\x13\xcf\xf8\x42\x33\x41\x53\x33\xb4\xe5\x76\x86\x00\xd1\x35\x40\x76\x7b\x3d\x5a\xcf\x6c\xc9\x48\x00\x72\xc2\x53\x30\x19\x71\x2c\x1e\x30\x1e\x9d\x75\x47\xc5\x17\xa9\x1d\x59\x13\x91\x6c\x89\x7b\xab\xae\x0e\x7f\x49\xd1\x16\x4c\xbc\xb6\x98\xf4\xd6\xaa\xae\xa4\xf3\xee\x73\x83\x16\xc8\x42\x3b\x32\x07\xe8\xf5\xb9\x0a\x93\xaf\x36\xd5\xa0\x30\xf4\xbe\xed\x81\x91\xda\x37\x5c\x75\xc3\x57\x3a\x6a\xab\x64\x66\x6f\xbb\x27\x3c\x31\x51\x5c\xf4\xa9\xf0\x05\xb5\xee\xe3\x24\x1f\x90\x08\xd3\xfc\xb4\xa3\xce\x2b\x6a\xda\x8f\x83\xf2\x7d\xe3\x3f\xb4\x1b\x08\x69\x30\x6d\xb2\xb4\x2b\x4e\x8d\xba\xa6\xf5\x2f\x28\x03\x33\x5a\x72\x5a\x1e\x49\xdc\xcc\xb6\xee\x0c\x33\x7b\xdb\x26\xcb\x92\x6e\x68\x94\xfc\x07\x2a\x2e\xbf\x53\x69\x2a\xfd\x4e\x05\xcc\xb0\x54\xc4\x00\x26\xe1\xa0\x3d\xa8\xc0\xce\x07\xc7\xfa\xe4\x8f\xa4\xd7\xef\x0c\x78\xbc\xff\xfd\xa5\x40\x49\xea\x7c\xbb\xb6\x19\x97\xa7\x60\x36\x08\x47\x5e\x22\x4a\x70\xd8\x2d\x67\xda\xf7\xd7\xf7\x51\x95\xb2\x52\xdd\xc6\x2a\xe3\x8a\x30\x5f\xd4\x1a\x07\x33\x7b\xd1\x92\x1a\x65\x1c\x66\x02\x8f\xd5\xea\xa8\x91\xd3\x20\xca\x6b\xbe\xf4\x1c\xf6\x85\x97\x27\xb2\xc0\xfe\xd8\x38\xa6\xca\x78\x02\x5c\xa2\x7d\x80\xbd\x30\xd0\xe6\x13\x63\x8c\xc7\x95\x16\x44\x37\x19\xda\x87\x69\x70\xd0\x99\x3d\x80\x68\x9f\x2f\x94\xe5\x3d\xbc\x6c\x84\xba\xa2\x7a\xbc\xa8\xa4\x8a\x0d\xbc\x9f\xbc\x7f\xa6\x24\x6a\x0f\x53\x75\x02\x9f\x59\x93\x14\x29\xdf\x61\x6c\xd9\x72\x9b\xbe\x83\xd4\x4f\xad\x5d\xd6\xd1\xc1\xd5\x40\x45\x07\x57\x6b\xeb\x6f\xff\x9e\xb6\x8d\x32\x8b\x7d\x86\x8b\xaa\xca\x3f\xe5\x44\xb0\xb5\x39\x38\xb3\xb7\x3d\xb2\x79\x9a\x88\xde\x3a\x8f\x2d\x4b\xf2\x29\x23\xf6\x73\xe3\x47\xdd\x0e\xb8\x24\x06\x7c\xd2\x6f\xf6\x27\xd4\x99\x86\xb0\x7b\xa1\x1d\x5b\xdb\x9b\xf2\x5a\x4b\x0c\xa0\x41\x98\x75\x31\xf0\x46\xb5\x17\xb4\xe6\xd3\x1d\xc2\xdf\xa0\x8d\xf5\x7e\x83\x16\xde\x5c\x3b\x4a\xe2\xfe\xa4\x92\x3e\xb9\xa0\xc8\x37\x30\xfa\x46\x23\x7b\x92\x62\x5a\x54\x05\x4e\x36\x1d\xf5\x59\xb2\x94\x33\x80\x01\x65\x8b\x6d\xf0\xa8\xc5\xce\xf9\x68\xc7\x23\x48\x36\x94\x44\x53\xd7\xa4\x29\x19\xb8\xbe\xba\x79\x91\xde\x3e\x22\x3d\x30\x25\xa4\x10\xdf\x52\x7a\xaf\x2d\xa7\x32\x71\x50\x99\x13\x1f\xa7\x13\x11\x4b\xe5\x7b\x6a\x06\x87\xe4\xe3\x98\xb5\xa8\x62\x29\x39\xa2\x2f\x44\x1c\xa9\x8d\xf4\x0b\xed\xd4\xc4\xbd\x64\x88\xbc\x11\xe5\x9e\x23\x34\x24\xfc\xb9\xa9\x93\xd0\x1f\x78\x5f\xc9\x0a\xff\x97\x2f\x6a\x03\xff\x0b\x6d\xda\xbd\x40\x7e\x64\xb4\x02\xe2\x00\x81\x2e\x78\x14\xb0\x49\x01\x51\xdc\x51\x9e\x34\x8e\xd4\xec\x6d\x6f\x8e\xa2\x57\x89\xb0\xfa\x1c\x96\x27\x5f\xd4\x5c\x14\xf8\xd7\x1b\x3b\x65\x8b\xd6\x8e\x58\x5f\x1d\x81\xd5\x09\x15\x64\x9d\x28\x0f\x3e\x5f\x33\x5c\x5a\xca\xe8\x38\x63\xe1\x97\xc0\xc7\x77\x97\x55\xeb\x36\xb6\x86\x61\x66\x4d\xd2\x4c\x35\xe9\xa7\x99\xbd\xed\x7e\xc8\xe8\x24\x27\x34\x56\xce\x71\xbe\x70\x08\xe0\x6c\x94\x08\x43\xc8\x71\xd1\x5d\x8e\x70\xa6\xa1\xab\xf9\x2a\x79\x05\x10\xaf\x13\x65\x17\x1c\xa5\x1b\x15\xdf\x59\xcf\xec\x3e\xeb\x88\xbf\xa3\x6c\xad\x3b\x08\x4d\x9e\x86\x5d\xe5\xb9\xbb\xa1\x38\x2b\x1b\xae\x50\x99\x25\x45\x3e\xb0\x26\xcb\x27\xbd\x7d\x09\x38\x89\x38\x38\x6e\x05\x1e\x4f\xf5\x11\x5e\x36\x16\xec\x27\x4d\x8d\xb6\x34\x5c\xb1\xbe\xac\xca\x5e\x31\x63\x9f\xb7\xdc\xa8\x88\x6e\xe9\x53\xee\x8d\x37\x8c\x62\x7f\x9e\xd2\xf5\xc2\xc6\x52\xe9\xd0\xa4\x2b\x36\x92\xa2\x8a\xb3\x94\x28\x47\x57\x2c\x25\x94\xac\x72\x91\x72\x55\x15\xdb\x37\xd0\xe3\xfc\x59\x55\x33\x23\xb3\x3a\xa5\xba\x0f\x9f\xa9\x99\xf8\x77\xd6\x6b\x42\xc9\x08\xc9\x40\x05\x42\xd0\xf5\xb3\x1d\x8f\xb3\xed\x89\x5b\x0b\x1b\x47\xe8\x0e\xe3\xef\x93\x3c\x8f\x18\x5b\xe1\x11\x90\x77\x5f\x51\x65\xc5\x2c\x4f\xad\x59\xc6\x71\xac\x85\x2b\x04\x1e\xe0\x7f\x32\xb2\xa6\x5f\x48\x2a\x20\x92\x1e\x2d\x27\xc5\xcd\xd5\x14\xec\x8e\x1b\x35\x56\x1c\xf9\x46\xc2\x3a\xd6\x1d\xff\x02\xab\xf2\xcc\xba\xb3\x35\x9b\xd2\x17\xda\x59\x32\x55\x2e\x6f\x71\xeb\xaa\xe8\xa2\x97\xd3\x49\xea\xce\xbe\xf5\x3f\x45\x78\x7f\x6a\x13\x0e\x9f\xed\xb8\x2e\xf9\x20\xcc\xf3\xd0\xa6\x2d\x25\xd5\xc9\x9e\x5c\x7c\x71\xdf\xce\x70\x11\x47\xe1\x32\x3a\xb3\x2e\x06\x9b\x9f\xe6\xc9\xcb\xb5\x4c\xf6\x7f\x53\x92\x46\x53\x9d\x32\x57\x14\xb1\xec\xa6\x7d\x25\x2b\xc2\x2c\x13\xee\x9f\x83\x75\x6a\x0d\xd3\x06\x0c\xa1\x57\x17\xc6\x96\xb5\xb3\xe3\x7b\x2f\x3b\xd7\x9f\xf4\x45\xd7\x2c\x49\xf3\xb0\x18\x02\x41\xef\x38\x73\xce\xfe\x65\x43\x81\xf8\x4f\xba\x90\x3f\x0d\xbb\x83\x61\x12\x8b\x96\x8f\x14\x82\xe8\xa6\x84\xa3\xe0\xe7\xc4\x52\x9a\xe4\x03\x84\xef\x6c\x79\x19\x78\x1c\xe0\x51\x4f\xb7\xb5\x69\x9a\xa4\x61\x86\x0e\x82\x28\xc0\x94\x5f\x8f\x5d\xe5\xc1\x8e\xdf\x35\x26\xd6\x7d\xfd\x60\x14\x76\x97\xa5\xe9\x85\xd2\xd0\x4f\x68\xa7\xe0\xcf\x4e\xe3\x20\xb6\xbd\x96\x57\x8c\x62\xdc\x02\x5f\xf8\x32\x74\x6a\xcd\x10\x7d\x57\xf4\xfa\xb6\x91\x25\x37\x7f\xee\x38\x8f\x49\xb3\x46\x75\x1e\x47\xc9\xfd\x52\xc9\xe8\xc3\x2a\x48\xc4\xe9\xea\xcc\xb9\x57\xdb\xa3\x24\x84\xe4\xf6\x1e\x2d\x55\xe8\x74\x0b\x55\x94\xb3\x6a\xe3\xfc\x01\x4a\xc1\x70\x24\x3d\xa9\xaa\x68\x9b\xaa\x5e\xcf\x6a\xa4\xd8\x48\xae\xd1\x59\x85\x43\x9e\x05\x55\xd0\xe3\x65\xeb\x3a\xde\x53\x2a\xc6\x73\x9f\x69\x35\x8e\xdc\xf4\xed\x03\xaa\x1e\x73\x17\xb7\xe7\xd4\xb9\x48\xde\x34\xa8\x39\xbc\xbc\xcc\xbb\xd2\x2d\x25\x96\x7b\xa7\x8e\xc1\x96\x6e\xe0\xa3\x4a\x9a\x34\x8a\x1e\x29\x1f\x06\x0b\xe7\x8a\x12\xbb\x7c\x07\x0f\xa6\x20\x05\x92\x9b\x1c\x1b\x7b\xce\xff\x5d\x7c\x3d\x6a\x31\x7f\x4e\xe5\x17\x11\x0c\xae\x3a\xfa\xed\x97\x7e\x0d\x3b\xd8\xb3\x21\x1f\xd7\x9b\x34\x8b\x57\xe4\x3e\xf4\xd1\x90\x5a\xfb\x74\xf9\x7f\xd8\x0a\x5a\xeb\x14\x15\x31\x88\x4c\x9b\x56\x02\x37\xcd\xc6\xef\x81\xaf\x6d\x5c\x0d\xfc\x22\x38\xcb\xdf\xa9\xdb\xbb\xa8\x90\xac\x53\x78\x8f\xfc\x9f\xf1\xb4\xce\xe6\x75\x5e\x3d\xf1\x7e\xf7\x77\x2f\x02\x19\xce\x9a\x78\x48\x5a\xd0\x40\x3b\xa6\x51\x2d\x6c\x19\xe4\x72\x1b\x0f\xde\xdb\xc0\xf8\xe1\xec\x98\x82\x0f\x9a\x28\xec\x49\x62\x97\x14\xe5\xb4\xe0\x28\x4d\x4c\x43\xe9\x6f\x88\x53\xe8\xa3\x4a\x0a\x27\xea\x41\xb0\x11\x45\x1a\xee\x98\x23\x7d\x99\x58\x2f\x63\x6a\x8c\x35\x74\x4d\x91\xc9\xdf\x1d\x7b\xcc\xcf\x25\x8d\x3e\xb9\xc7\x33\x15\x0d\x9e\xed\x04\x40\xc3\xc4\x64\xaf\x18\xb4\x5d\x36\x6a\x89\x85\xab\x80\xb1\x43\x02\x78\xc5\xd8\x78\x77\xac\x2b\xfd\xa8\x07\xa9\x0b\x87\x21\xfb\xfd\xb1\x2f\x8c\x7f\xb5\xd3\x20\xb2\xb2\x1c\x27\xab\xee\x78\x62\x91\xbc\xc0\x4f\x8b\xbf\xaa\x13\x6c\x5f\x59\x68\x67\xc3\x24\xc9\x07\x74\xf2\x23\x1f\xf8\x80\xa0\x42\xfc\xd9\x49\x22\x2d\x99\x28\xb2\x31\x35\xb6\xf1\xec\xdb\x50\x6b\xa7\xc5\xb0\xff\xb9\x8e\xef\x9c\x6c\xa7\x30\x00\xfb\xd7\xad\x06\xe5\xb4\x99\x76\x96\x17\xb1\x68\x17\x6d\x92\x41\xf9\xe6\xcd\x8a\x88\x56\xb1\x68\x5b\x15\xa1\x11\xdf\x69\x3a\xb3\x95\x87\x56\xa6\x3a\xe5\x7a\x9f\xf4\xf9\xc9\x8f\x14\x86\x12\xa7\x2c\x62\x8a\xef\x61\x56\x48\x6d\xbd\x01\x55\xb7\x04\xc1\xda\xb9\x39\xd7\x31\xa5\xdb\xe0\x8b\x5a\xa6\xbe\x67\x7e\x4f\x45\xa9\xd7\x33\x5b\x68\x6c\x2a\xa5\x2c\x1c\xfa\xb7\x6a\x53\x81\xde\x41\x31\xb2\x69\x37\x19\x8e\x8a\x5c\x44\x0a\x9c\x5a\x83\x6a\xa7\x34\xd5\xc8\xf3\x24\xed\x3a\x80\x14\x56\xe0\x6d\xed\x41\x7e\xdb\xa9\x0f\x2d\x9a\xee\xf2\x52\x98\xca\x42\x61\x24\x67\xa0\xe4\x7f\xd7\x55\xc3\xca\x46\x51\x98\xe4\x60\x1d\x63\x2e\x70\x3f\x8e\x2f\x6a\x67\x7b\xf9\x1c\x8b\x06\x27\x14\xc8\x94\x2c\x51\xc3\x17\xee\xb8\x4b\x7a\xbd\x9d\xea\x2f\x41\x1e\xd2\xa1\xb4\x1c\x2a\xf6\x37\x54\x92\x02\x2e\x29\xff\x3c\xf6\x6d\x57\xd0\x76\x0d\x92\xba\x9e\xeb\x0b\xed\xd5\x81\x4d\xed\x22\x17\x31\x45\xa2\x97\x9c\x41\xb9\x3f\x43\x3b\x1a\x52\xed\xa3\xae\x52\x64\x16\x8b\x2c\x5c\x81\x9e\x28\x42\x45\x08\x3d\xb9\xea\x69\x39\xbc\x02\x66\xf3\x14\x24\x66\x8e\x87\x71\x7f\x87\xc6\xe3\x6b\xb4\x99\x50\xf8\x95\xe4\xcc\xcb\x5e\xc2\xdb\x21\x9e\x21\x8d\xc5\xda\xac\xeb\x0a\xb7\x1d\xae\x84\x51\x48\xcc\xc0\x72\x8f\x05\xa0\xe0\xb4\x32\x10\x3e\xad\xd4\x21\x4d\xda\x1d\x84\xb9\xed\xe6\xc0\x4b\x09\xac\x56\x63\x6c\x35\x98\x1b\x4f\x25\x88\x29\x7d\xb8\x64\xb6\xab\xd6\x3d\xc1\x20\x16\xca\x9c\x7e\x66\xef\xe6\x45\x6c\xcf\xfc\x3f\xc1\x53\xd5\xa5\xf9\x73\xed\xdd\x73\x53\x1e\x41\xf8\x9e\x96\x8e\x83\x46\x03\x42\xa1\x4b\xba\xf4\x74\x52\x83\xc2\xff\xa5\x9a\x91\xc5\x88\x3c\xf4\x5b\x1e\xb2\x8e\xda\x00\x7f\xae\xad\x8e\x7d\xd3\x6d\x13\xaf\xe5\x1e\x83\x26\x5d\x57\x4f\xa4\x39\xdd\xa0\xda\xbf\xa7\x9d\x25\x2b\xa1\xcd\x95\xaf\xe5\x65\xdd\x26\xb8\xac\x7c\x9d\x08\x4f\x9b\xa6\x26\x46\xe3\xc9\xf9\xa6\x7b\x02\xc9\xd1\xa6\x36\xdf\x37\x0b\xf9\xfb\xae\x83\x30\x3f\xed\x9a\xff\xbe\xc6\x91\x27\xab\x26\x65\xaf\x23\x8c\xda\xb6\x75\x05\xb9\xdf\xd6\xf1\xa9\xfb\xa2\xc9\x96\x6d\x0e\xe7\x0f\x14\x4e\xee\x60\xb4\x1d\x60\x49\x61\xb0\xeb\xd5\xa2\xf6\x62\x1a\xda\xa5\x09\xfd\x4a\xbc\x08\xcd\x8f\x54\x09\xe6\x5c\x35\xec\xc8\xec\x43\xe5\xff\xa1\x24\x75\x94\x03\x07\xf6\x08\x26\x04\x1e\xff\x0f\x2a\x19\x88\x48\xaf\x8f\x55\xf5\x88\xf7\x08\x41\x60\x20\x72\x73\x85\x33\xf7\xa2\x98\x94\x05\x30\xef\x86\x0a\xd6\x1e\x54\xc8\x14\x93\x65\x36\xcf\x1e\xad\x4c\xd5\x72\x3c\x30\xaf\x58\xc4\x16\x99\xda\x1d\x44\x1f\x48\x1f\x0e\x52\xe1\x11\x47\x35\x4d\x6b\x66\x5b\xbe\x13\x68\x2d\x6c\xac\x55\xec\x47\x2c\x2a\xcb\xbf\x1e\x78\x82\xe6\x3b\x81\xef\x8a\x5c\x46\x50\xe3\xa4\xb4\xf7\x4d\x73\x10\x76\x27\x78\x44\x57\xe0\x7f\x86\xe0\xfb\x4e\xef\x67\x7e\xda\xab\x9d\x2e\xfc\xcf\xbf\xc2\x2f\x0d\xe0\x4f\x8c\xec\x0e\x62\xb3\x30\x66\x3c\x68\x3d\xff\xbc\xfc\x72\xa0\xfa\xb3\xd7\x69\x7d\xea\xd6\xe6\x6f\x8d\x95\xff\xfd\x77\xc6\xea\xd9\x26\x3b\x8a\xfd\x37\xd5\x69\x7d\xfd\x1b\xae\x1b\x5a\xbe\x5d\xfc\xfb\x23\x90\xe8\x63\x1d\xdf\xa0\xf5\xcb\xc2\x9f\x44\x5f\xcc\xdd\x42\x19\x79\x0a\x28\x4c\xeb\x12\x6c\xef\xd0\x6b\x77\x29\x99\x17\x18\xfb\xb2\xc2\x4b\x55\xe9\xe8\x21\x8a\x44\x1c\x09\x64\xbf\x33\x83\xfb\xa0\x12\x2d\x2c\x86\x16\x3d\x5a\xc9\x99\xe8\xd1\x24\x9b\xba\x2f\x14\x46\x09\x70\x45\xe1\x10\xe6\x06\x62\x07\xe5\x8d\xa8\xeb\xca\x56\xfb\xa6\x5f\x6e\xaf\xda\x0c\xcd\x74\x2d\xfe\xc4\x3a\x1b\xf4\x0a\x71\xa0\x1e\x1c\x0b\xba\xc4\x84\xc3\x6c\x47\x39\x4e\x18\x3f\x30\x7f\x2a\x3b\xaf\x00\xd5\xcb\xdf\x56\x1e\x96\xd2\x7b\xe3\x4c\x07\x6b\xfb\x66\xad\x56\xb9\xf7\x95\xf6\x28\x29\x62\xd6\x57\x17\x6e\x9a\x2f\xfe\x7b\xcd\x82\xd4\x8e\xd2\xd0\xae\xb0\x3c\x90\x08\xe0\xd3\x1f\x97\x3d\xb7\xe5\x44\xbf\x0f\x36\x35\x97\x96\x92\x24\x57\x52\xb4\x87\x15\x5e\xe3\xb0\x2a\x00\xa7\x66\x64\x7b\xad\x2a\x05\x8c\x8e\x6e\x01\x25\x3f\xaa\xea\x89\x07\xf2\x07\x3c\xa3\xf3\xfb\x34\x08\x8c\x51\xa6\x87\x10\x8e\x85\xe7\x84\x00\xb3\x88\x4c\xe6\xae\x26\x93\x5e\xc5\x40\x61\xfb\xbd\x4e\x73\x53\x78\x48\x12\x09\x2d\x25\x69\x3f\xc9\x73\x0e\x67\x11\x3d\x1c\x1a\xab\x2d\x0a\xd0\x11\xcc\xc8\xe3\x5a\x3e\x7c\xbb\x4f\xb4\xd3\x64\x45\xf8\xe9\xf8\x25\x0e\xf9\x59\xaf\x5d\x09\x77\x9f\x73\xca\x8c\xa3\x34\xe9\x46\x66\x68\x40\x22\x74\xa5\xd5\xc3\xda\x4b\xf2\x70\x20\x81\x52\x5a\xc4\x0f\xd1\xc2\xc4\xd6\xfb\x11\xcd\x93\xcd\x0d\xdc\x0f\x02\xa6\xa7\x3b\x3e\x6e\x7f\x80\x52\x05\x2c\x10\x00\x71\x11\x13\x5c\x1c\x6b\x13\xa2\xb1\x4a\xee\xd9\x08\x00\x03\xca\x3a\x18\x0c\x2a\x76\x71\x7f\x11\x5b\x93\xad\xd1\xc9\x80\xa0\x65\x43\x09\x99\x9c\x53\x86\x3c\x27\x7d\x17\x2a\x0a\x47\x6c\x3e\x80\xed\xf2\xc8\x58\x41\x2c\x39\x6f\x16\xa6\x58\xfd\xd4\x26\xea\x78\x91\x4a\x4c\x0b\x5a\x1b\xea\x2d\xfc\x39\xd0\xa6\x93\xc3\x49\x35\xd2\xba\x48\x8e\x7e\x19\xb2\xed\xd6\xba\x16\x38\x6d\x50\x59\xde\xd3\xee\xd9\x15\x1b\x25\x23\x7c\xed\xab\x8e\x7a\xa2\xe9\xe6\xaa\x54\x9e\xdb\xe1\x28\x92\xda\x17\xf6\xfe\x4b\x78\x8b\x7c\xa1\xea\xfc\x71\xb2\x42\xea\x97\x74\x8e\x33\xdf\x3a\xf0\x38\x81\x8d\x5a\x9f\x6a\x66\x2f\xad\x08\xd4\x46\x1d\xa8\xc8\x35\xcd\x1e\xa7\x07\xc3\x59\xb0\x89\x2f\x15\x18\x4e\x03\xc5\xd3\x84\x69\x37\x35\x4b\x6c\xa4\x86\xc0\xef\xa7\x4a\xab\xf4\xa7\xae\xc4\x04\x93\x9f\x47\xe9\x89\x05\x69\xad\x32\xf6\x27\x3b\x5a\xf8\x88\x06\x09\x5c\x86\x93\x5a\xf8\xf2\x7b\xb4\xe2\x50\x3b\x78\xb0\xa3\x40\x72\xeb\xbe\x06\xbc\x1d\xf5\x09\x01\x04\x53\x89\x40\x04\x14\xb5\x61\x90\x3a\xa3\xb7\x13\x31\x5e\x0e\x8f\x26\xfa\x74\x99\xb9\xc9\x9c\xc1\xd7\x7c\xa4\x1c\xbf\x3e\x72\xab\x6a\xd5\xe6\x13\xad\x5f\xfd\x25\xfe\xf7\x1f\x8d\x7d\x59\xf4\x0a\x69\x28\x48\x90\x54\xef\xe4\x2e\xb4\xed\x37\x0b\x61\x34\x21\xfc\xf8\x58\x85\x22\x1f\x2b\x08\x01\x45\x9d\xd9\x83\x3e\x30\xff\x98\xce\x38\x56\xbe\x53\x42\xac\x5f\x42\xe7\xc6\xc9\x6a\x97\x77\xef\xd4\x9c\x5d\x49\x18\xfa\xc8\x4a\x30\xce\x59\xc0\x52\x0d\x47\x6c\x86\x1f\x73\x99\x5e\xee\x3b\x0c\xa2\x73\xd2\x72\x0a\x9c\xd0\x1c\xc5\xe1\xf3\xb1\xb3\xae\xee\xd9\x6e\x12\x67\x79\x5a\x74\x1d\xe4\x8a\xb9\x3e\x6a\x2b\xab\xf3\x7e\xca\x7c\x5e\x68\x71\x00\xb4\x00\x90\xc7\x9f\x35\x81\x8a\xf4\xbe\x2d\xb2\x11\xec\x1f\xb7\xb4\x1d\x00\x24\xa0\x9c\x34\x87\xdf\xd1\x3f\x6c\x44\xa4\x99\x90\xf5\x41\x66\x38\xb7\xfa\x84\xc3\x8d\x8a\xe4\x08\xbb\x0d\xb9\x24\x78\x94\xda\x6e\x54\xf4\x84\x04\xe7\x5a\xf8\xce\x20\xf7\x3c\x5a\xc8\xd8\xfb\x2f\x37\x90\xe0\x16\xca\x38\xb3\x18\x4a\xc2\x2f\x95\xff\xca\xea\x52\x2a\xbe\x97\x15\x3d\xc0\xae\x98\xa8\x30\x82\x87\xd0\xfe\x97\x02\xd3\xf0\xd9\xdb\x6a\x18\x45\x66\x48\xe8\x09\x0d\xfe\xe7\xf8\x48\x24\xd6\x1a\xc4\xff\xa2\x64\x45\x04\xd3\x50\x86\x07\x3e\x9b\x3f\x37\x81\x0d\x06\x45\xdc\x4b\x6d\x8f\x8b\x40\xd8\x4a\xb6\x77\x7c\x07\x7b\xfb\xfa\x93\x5a\x66\xc3\x2c\x13\x9c\xc1\xc7\x6f\x1b\x78\x5e\x29\xd8\xf9\x1a\x3e\x69\xc6\x38\x66\x1f\x5a\xa6\x10\xb7\xe6\xcf\x4a\x52\x33\x2a\x0e\x14\xa4\xda\x4b\x7f\x98\x11\xc6\x81\x46\x1b\x6f\x5d\xf4\xaf\xbd\xd6\x4e\x6d\xbf\x88\x0c\x36\x56\x11\x89\xf1\xc7\xea\x79\x57\x72\x30\xfd\xe4\x41\x5f\xd9\x7f\x7a\x5d\x19\x51\xde\xc0\x3c\x91\x0e\xbb\x4f\xf9\x01\xbb\xa7\x03\xe3\xb7\x9f\xa1\xb2\x29\x4a\xc5\x7f\x36\xf6\x55\xbe\xe7\x3a\x95\x52\x80\xf2\x79\xbb\x50\xeb\xc6\x10\x7d\xb2\x67\xb3\x6e\x1a\x2e\x4a\x0d\xc6\xd1\xb3\xdc\xd6\x78\xee\xbe\x60\x39\x93\x67\x45\x36\x80\xf8\x98\xd8\x12\x68\x8f\x82\x4a\x48\x1c\xf7\xd6\x88\x40\xed\x8e\xf6\x32\xc5\x40\x0d\xfc\x36\x82\x30\xbc\xad\x4f\xe9\x81\x9d\x42\x42\x79\x4f\x98\x28\xac\x09\x8b\xcd\x63\x23\x50\x62\x96\x7f\x5a\x03\xed\xc8\x1d\x66\x45\xdc\x33\x6b\x42\x56\xc1\x1f\x3d\x44\x07\x1d\x96\xc2\xa7\xda\x15\xe2\x3b\xe3\x47\xbc\x7c\x61\xd7\xee\x68\x29\x97\xf0\x72\xe0\xb1\x41\x6c\x43\x5f\x40\x06\xb8\xdc\x39\x50\xaa\x65\xc1\x12\x60\x7c\xd0\xa6\x66\xd5\x94\xa6\x19\x3e\x34\x71\xcf\x40\x1a\xc9\x89\x5b\x9d\x50\x7d\xd6\x13\x0a\x1f\xba\x68\x97\x92\xd4\x3e\xda\x72\x1a\x6f\xa7\x10\x19\x56\x9c\x1f\x9d\xb1\x7b\x19\x6e\x54\xfa\x36\x88\x26\xaf\x51\xba\xc7\xa2\xe7\xb8\x55\xa7\x42\xe3\xca\xca\x1f\x20\x43\xd7\x62\xbe\x88\xc0\xf7\xd0\x08\x60\xec\x1f\x5b\xa7\x17\x01\x58\xe9\x3d\x32\xd0\x46\x1d\xe2\x68\x03\x42\x89\xfa\x66\xa3\x90\x62\x27\xcf\x65\xe0\x20\x86\x2f\x94\x59\x5b\x6c\xf2\x84\x77\x17\x39\x73\x14\x38\xf2\x82\x92\x3d\xe6\x8a\x18\x4d\x3e\xe4\x45\xd7\x03\xdf\x1e\xbc\xae\xfa\xc3\x83\x24\xdd\xe1\x4b\xce\x88\x4f\x51\x14\xbd\x47\x4f\xa5\x80\x57\xaf\x7a\xd3\x24\xaf\x24\x7e\x46\x43\x47\xbf\x55\x91\xe9\xfb\x66\x11\x92\x05\x9e\xaf\x64\x60\x92\x4a\x8d\xa1\xa5\xcc\x1c\x55\xed\x01\x89\xa3\xb6\x48\x90\x54\xb3\x86\xb7\x7b\x65\xa1\x9d\x27\xb1\x59\x2d\xa7\x4b\xcb\x1f\x98\xdc\x1c\xe6\x8b\x46\xf0\x7b\x36\x4a\x93\x82\x3b\x67\x0e\xdc\xb2\xdb\x17\xbb\x9a\xd0\x64\xbd\x70\x25\xcc\x24\x13\x10\xa0\x32\x7d\x93\x20\x98\x1f\xd5\xf0\xe6\xe1\x94\x6f\x3f\x56\xc2\x78\x6c\x93\x9c\xf0\xa8\x7a\xff\x7b\xb4\x53\x21\x00\xbe\xa8\x0a\x69\x69\x31\x4c\x52\x66\x44\xe0\x20\x41\xc2\xcb\x9f\xef\x0b\x43\x1e\x84\x7d\x1c\x11\x62\x1a\xa5\x64\x59\x26\xd6\xfd\x14\x28\xd2\xec\x11\xbf\x0b\x3f\xb4\xae\x3c\xdf\x7e\x8b\x72\x91\xcd\x93\x15\x1c\x32\x3d\x0a\x02\x9d\xf3\x63\xff\x8c\x67\xf8\x3c\xc7\x11\xbe\x1d\xda\x82\x38\x38\x00\x46\xa4\xd7\xf8\xf8\x13\xeb\x34\x95\x08\xec\xf1\xeb\x4f\x74\xfc\x54\x3a\xfb\xd5\x8e\x62\x91\xee\x5c\x6f\xe0\x00\x2d\xda\xd4\x22\x95\xc5\xb2\x7d\x5b\xe1\xed\xdf\xae\x54\xba\x8a\x37\xcc\x64\x39\xa7\x1c\x66\x76\x8f\x63\xd2\xc1\xa4\x03\xf9\xef\xa6\x76\x80\x39\x58\x23\x2f\xcc\x4f\xcf\xb7\xb3\xa4\xe5\x89\x7f\x60\x8e\xf1\xe7\xb1\x2a\xe7\x15\xdd\xe5\xc8\x52\x49\x82\xb7\x4b\xa5\x9a\xfa\x1d\xef\x53\x91\x78\x34\x22\x40\x82\x67\x94\xf1\x55\x13\x60\x66\xae\x6d\x86\x36\x0d\xbb\x26\xce\x2a\x2b\xff\x83\x40\xad\xfc\x0f\x9a\x64\xf4\xda\x26\x4a\xe2\xfe\x44\x79\x4b\x78\x97\xd0\xa9\x76\xd4\x66\x07\xfc\xbb\xad\xb9\x96\x45\x2f\x89\x96\x26\x14\xca\xfd\x06\x36\x3d\xc1\x31\xd1\x70\x49\xb2\xb1\xf5\x0d\xed\x7d\xa5\xdd\x1d\xd8\xee\x72\xcb\xe9\x53\x6e\x91\x18\xac\x97\x66\x66\xda\x61\x2f\x42\xe5\x1e\x2f\x61\x03\xdf\xa7\x25\x21\x05\x34\xd0\x10\x3c\x2d\x9a\xee\xb2\xc4\x86\x78\xbb\xff\xbb\x82\xe6\xfc\x3e\x62\x43\xd1\xba\x95\xda\x4e\xf1\x62\xfc\x22\x05\xb5\x02\x57\xf4\x14\x1a\x04\xf1\xae\x6f\xe0\xf3\xc3\xc9\xce\xd6\xf8\x80\x8c\xe4\x47\x91\x89\xfd\x41\xe5\x16\xa7\x5f\xa8\xca\x52\x79\x90\x44\xf9\x1b\x43\x96\x92\x13\xe5\x37\x95\x89\x9d\xaa\xf9\x2b\xee\x7d\xa5\x8c\x9a\x27\x3c\xec\x04\x40\x30\xcc\xaa\x6b\x81\xdf\x58\x8f\xd4\x95\xeb\x76\xb5\xbb\x49\x02\x38\xc3\xdc\x9c\xc3\x0f\xb5\x9c\xe3\xda\x39\x15\xcb\x99\x2e\x09\xa3\x65\x0f\xd2\x38\xb2\xfc\x16\xfd\x2c\x83\x27\xca\xaf\xda\xfc\x50\x59\x93\xfe\xf0\x78\x39\x50\x9b\x1f\x8e\x3d\xbe\xe9\x18\x06\x1b\x23\x7f\x48\xc7\x26\xef\x62\x91\x09\xa4\xcb\xbb\x96\xd9\x17\x95\xd0\x14\x44\x43\xf8\xb3\xaa\x18\x2c\x26\xc9\x64\xc5\x1f\x80\x12\x30\xed\x5d\xcb\xff\x11\x28\xc6\x58\x43\x9f\x60\xae\xdd\x35\xe9\x62\x12\xe3\xa4\x15\x7c\xa7\xc6\x7d\xfa\x2a\x6f\x94\xf4\x27\x34\x1f\x96\x7e\x0c\xd5\x53\x12\x77\x72\x75\x20\x67\x0b\x53\x44\x79\x38\x8a\x6c\x05\x0c\x77\x42\x81\xe1\x4e\xa8\x36\x41\x96\x5b\x93\xc6\x19\x69\x8c\x20\x91\x7c\x6f\xac\x54\xa9\x8e\x29\x15\xb1\x0d\x1a\x14\xfe\x21\x0c\xa3\xd4\xa7\x25\x6c\x5f\x09\xe3\x5e\xd8\x35\x2e\x09\x14\xf5\x60\x5d\xe1\xdc\x3a\x77\xf7\xbe\xd2\x4e\xed\x52\x64\x0f\x84\xc8\x3d\xf6\x4d\x7b\x29\x42\x27\x8d\x78\x4a\xf1\x2b\xba\x49\xbc\x12\x92\x5b\x7d\x79\x3f\x90\x7f\x38\x81\x83\x9a\x2f\x5c\x32\x3b\xb2\x26\x2e\xf2\x6c\x8a\x6e\x86\x1d\x97\x94\xba\xcb\xbb\x1a\x70\x77\x89\xc2\x2e\x15\x8f\x89\xfd\xc7\x1d\x35\x01\xfa\x69\xa2\x13\x06\x5d\x7b\x3b\xef\xcd\x51\x93\x61\x19\x34\xb6\x54\xa6\x80\xb7\xc6\x9f\x2b\xd1\x76\xd7\xc4\x4f\x79\xbe\xee\x15\x8d\xec\x98\x5a\xf7\x1c\x83\x4d\xad\x78\xcf\x89\x1c\x62\xf2\x87\x3b\xca\x81\xeb\x0a\x35\x4e\x04\x5c\x4d\xb1\x27\x0a\x45\xa7\xf9\x40\x44\xd4\x74\x25\xf0\x73\xfd\x22\x52\x0f\x01\x60\xb6\x9e\x7f\x9e\x03\xc6\x5b\x88\x50\xd1\x98\xe7\x11\x71\x82\x91\xfb\xa6\xf9\xf3\x26\x96\x9a\xf8\xaa\x79\xc7\xb8\x4d\x0a\xf2\x44\x86\xa0\x0e\x18\x6a\x67\x79\x92\x62\x92\xee\xe1\x93\xe0\x2c\x56\x35\x5f\x34\x2b\x3c\x9a\xd4\xa3\xe8\x70\x6b\x10\x86\xe0\xcf\x0a\x7b\x9e\x27\xa3\x11\x54\xe8\xf7\xf8\x1a\xb2\xef\x62\x9c\xab\xf4\x29\xa3\x28\x84\x30\x81\x54\x88\x51\x7b\x96\x05\x43\x6d\x5f\xd1\x73\x94\x85\xd6\x4b\x56\x6c\x6e\xc2\x88\x2b\xb9\x78\x69\xdb\x3b\x8a\xb0\x00\xe7\x54\x31\x71\xf2\x44\x94\x91\x4d\x47\x36\x2f\x58\xe1\x83\x65\x95\x69\x95\x88\xc4\xf2\xfd\x40\x1f\xb1\x5d\xcd\x88\x5c\x3f\xe1\xe9\xd0\xd8\x06\x70\x80\x32\x86\x54\x90\x81\x4f\x28\x62\xca\x8a\x4d\xf3\x6c\x42\xfb\xf2\x7a\xfa\xcf\x6d\x6d\x59\xd7\x28\xdf\xc3\x20\x48\xc9\xd0\x9c\x17\x7e\xf9\xb0\xe2\xa6\xaf\x0e\x90\x6b\xb5\xf3\x75\x7e\xba\x9d\x5a\xd3\x83\x8a\xb7\xf3\x1f\x9f\x9d\xe5\xe1\x81\x0b\x90\x30\x5b\x24\x48\x29\xc3\xf6\x65\x0d\x2d\x3d\xa7\xa0\xa5\x5a\x99\xf0\xbf\x7b\xf1\x7f\xa2\x9f\x72\x26\xf7\xbb\xc4\xb5\xf9\x4c\x93\x5b\x22\xe8\x3d\x21\x88\x22\x78\x22\xc4\xba\xac\xa0\xcf\x17\x35\x56\xcd\x4b\xfb\xdb\xc9\xc8\xa6\xcc\x30\xf1\x26\x90\x9f\x04\x8a\xaf\xf5\x89\x6a\xa4\x87\xb1\x5d\x21\x6d\xe4\x35\xe5\xdb\x77\x8e\x22\x55\xfe\xdc\x80\xbf\x6f\x67\xab\x36\x8a\x5a\x4a\x5c\x43\x79\x49\xd7\x63\xec\x32\xf5\x18\x24\x51\x2f\x8c\xfb\xf2\x30\x6c\x4a\x86\xbb\x12\x87\x32\xed\x2f\x93\xf4\x53\x33\x7c\x5c\x99\x58\x71\xb9\x16\x6f\x8f\x5d\xb4\xf0\x66\xd8\x51\x13\xf5\x29\x54\x13\xb1\xcf\x9e\xc1\xf1\xe7\xec\x99\xcb\x1d\x18\x0f\x85\xf0\x0e\x61\xed\xfb\x48\x61\x85\xb4\x58\x3e\x14\x02\xf1\xef\x55\x54\xa7\x94\x81\xce\xbf\x1d\x7b\x79\x8f\xeb\x63\x0f\xf9\x67\xb3\x47\xa6\x0b\x04\x0f\x79\xa6\xf6\x33\x74\xbb\xc8\xd9\xa0\xd0\xec\x22\xda\xfd\x02\x0a\x3e\x85\xed\x4c\x82\x94\xf2\x2b\x68\xde\xfe\xdd\xaf\x76\x3c\x77\xe4\x01\x12\x55\x70\x94\x89\xf2\xeb\xd0\x04\x7f\x73\xac\x7c\x6e\x5a\x48\x1b\x40\xea\x3a\x44\x8f\x84\x2a\xc5\x59\x3c\xab\x58\xf6\xd0\xfe\xcb\xc6\x71\x18\x5e\x44\x24\xb7\x69\x7a\x4a\xc7\x51\x37\x3a\x81\x15\xc1\x66\x7a\x4f\xb1\x9d\xde\xd1\x0a\x6e\x97\x81\x92\x93\xed\x48\x23\x0e\xd3\x1e\xc5\xfd\x48\x5b\x8e\x53\x54\xc6\x9f\x1b\xe4\x25\x67\xda\x2b\x26\x2a\x2c\xf3\x20\xd8\xda\x1a\xcf\x29\x3e\xd7\x4d\x94\x93\x8c\xf7\xdf\x3d\xda\xcd\xff\x65\xb9\x58\x6f\x94\xc1\x4e\xfb\x6e\xd3\x46\x0b\x15\x02\xe9\xfc\x79\xfc\x8c\xe7\xba\x27\x51\x98\x87\xdd\xd0\xc4\xd9\x84\x8f\xd6\xdf\xc5\xe8\xb1\x06\x39\xfd\x2a\x5e\xf6\x87\x5a\x00\xdf\xa6\x4f\x28\x74\xd2\x76\xe4\x8e\x28\x3c\x4d\xa1\x01\x8d\x8a\x5c\x9b\x0a\x0b\xd8\xda\x77\x12\x60\x1a\x39\x2f\xd3\x33\x70\x02\x3c\xbc\xee\x31\xe4\x9c\x31\xa3\x7a\xb4\x13\x04\x16\x9a\xaa\x3f\xff\x5f\x77\x3c\xaf\x73\x6a\xdd\x4b\x17\x9c\xa6\x89\xe7\xb0\xda\x3a\x61\x2d\xe7\x94\x0b\x81\xdd\x18\x30\xc2\x00\x79\xc7\x66\x4d\xa1\xe9\xb5\xd7\xca\xa8\x62\x94\xda\x81\x8d\x33\x91\xe9\x65\x09\x5b\xe5\x6b\x56\x05\x76\x0e\xc2\xee\x03\x2d\xa7\x7e\x7c\x19\xf3\xdf\x55\x4a\xca\x91\x12\xf7\xfb\xf2\x21\x30\xb8\x9f\x07\xbe\x39\xfb\x39\xee\x89\x7f\x1d\xd1\x84\xe0\xae\x68\x40\xf8\xd7\x83\x07\xc3\xf6\x28\xb5\x4b\x3f\xdf\x5e\xf8\xfb\xf4\x8a\xb1\x42\x61\xdf\x8f\xa5\xfb\x1e\xb6\x0a\xc4\xeb\x1b\x68\x2a\xca\x48\x6d\xff\x9a\x4b\x50\x54\x27\xf9\xd1\x75\x6a\xed\x08\xb6\x8b\xe0\x0c\x38\x74\x0e\x6d\x49\xfa\x5f\xda\xcf\xc5\xb2\xc3\xc8\xac\x25\x7c\x68\xfd\xea\x2f\xf1\x46\x75\x9b\xb1\x21\x88\x71\xee\x69\x9d\x98\x43\xe3\xd6\x2f\xcb\x16\xf8\x21\x79\xc2\xe0\xf5\xff\x25\x16\x2f\x22\xdf\xc3\x63\x25\xcb\x21\x8e\x09\x74\xf5\xbf\xfe\x9d\x4e\xcb\xa9\x89\x3e\x46\x4d\x54\x3c\xcb\x55\x7a\xe9\x78\xf8\x2b\xb4\x0e\x51\x6e\xdc\x49\x30\x51\xec\x1c\x8f\x76\xca\x49\x82\x05\x0e\x42\x3b\x8a\x98\xd7\x20\xa5\x84\x28\xee\x43\xec\xbe\xe8\xea\x5f\x57\x18\xb7\x1b\x5a\x55\xe1\x85\x4e\x03\x5b\xc4\xf4\x63\x1b\x45\xa1\x9c\x09\x58\xa0\x8f\x76\x94\xb1\xc5\xa3\xeb\x8a\x73\x95\x24\x69\xa6\x4d\x05\x4e\xf3\xce\x84\xf7\x7f\x13\x67\x09\x5f\x60\x08\xc5\x43\xf3\x7e\x45\xdd\xd4\x0e\x93\x15\xc9\x05\x9c\xa8\xfc\xfc\xb4\x13\x95\x7f\xce\x03\xb4\xe2\x70\xa9\xcc\x1c\xc2\x24\x0e\xb3\xe1\xa4\xc2\x22\x6d\xef\x78\x61\xe2\xcf\xc6\xaa\xf3\x82\x84\x4b\xa4\xcf\xb7\x06\x4c\x65\xc8\x32\x34\x71\xb1\x64\xba\x79\x91\x7a\x7d\x10\xc4\x3b\xbc\xb7\xf3\x45\x83\x8e\x3c\xd6\x50\x37\x24\x2e\xac\xf6\x9f\x51\x02\x4f\x7e\xeb\x79\xf9\xeb\x33\x3b\x7c\xf6\x70\x88\x67\x08\xee\xff\xcf\x31\x56\x38\x18\xaf\xa0\xa2\x80\x77\x3e\xd5\x51\x64\xc2\x2b\x3a\x17\xb9\xe7\xfa\xe1\xa4\x70\x31\xe5\x9b\xf3\x3f\xa0\x83\x4b\xc2\x3b\x5a\x54\x2a\x17\x59\x70\x1a\xc5\xf4\x1e\x45\x99\xc7\x83\xe0\x07\x36\x4c\xb9\xbd\xee\x70\x22\xe5\x5a\x04\x83\xfc\xd3\xb1\xdf\x4a\xae\xd7\xfa\x43\xbb\xe7\xda\x8b\x69\xe8\x04\x37\x90\x8a\x7c\x57\xb5\xbf\xbe\x5b\x3b\x63\x7e\xa1\x9d\x74\xbb\x45\xea\xfa\xf1\x82\x03\x53\xd9\xf9\x39\xd7\x5c\x1d\xa5\xa1\x32\x55\xe2\x37\xc4\x17\xb5\x9b\x21\xab\x96\xa4\x48\x73\x8e\x47\x11\x84\x7c\xa8\x6c\x64\xb8\x9c\x26\x47\xcc\xd6\x39\x5a\x1e\x7f\xc9\x8a\x4d\x57\x07\x36\x1a\xca\xfd\xe1\x39\x26\xd7\xfd\x33\x4d\x76\xfc\x5b\xce\x53\xf3\x00\x8d\x96\xcb\xc4\xe7\xa7\x79\x95\xde\xd4\x05\xfc\x07\x3a\x5a\x13\x0e\xdd\x5b\xd1\xc6\xf5\x85\x8c\xc7\x28\x92\xc2\x3a\xe4\xb3\x0a\x48\x15\x9f\x60\x8c\xd2\x64\x18\xc6\x32\x05\x69\xd6\xff\xeb\x27\x3a\xae\xa2\xf3\xaf\x9f\x58\xaf\xdb\x58\x2e\xb4\xc3\x78\xc5\x66\x79\xd8\x37\xb9\x9d\xf0\x9d\xd5\x0d\x6c\xd9\xc8\x26\x8f\x2a\x2d\xb1\x7a\x73\x8c\xea\x13\x51\x92\xd9\x74\x52\x39\xf5\xa3\xc5\x8a\x28\xf0\x2a\x66\x8d\x38\xb6\xd2\x64\x03\x4d\xe4\xf4\x7d\x2b\xc0\x6b\x49\xc1\x9e\x73\x78\xcc\xd3\xbc\x29\x23\x72\x7a\xa2\xe3\x69\xd7\x67\xc7\x9a\x11\x58\xee\xc9\x02\xa7\x2a\x87\x41\x0a\x65\x0f\x2b\x5c\xfe\x73\x18\x70\xf6\x0f\x0e\xaa\x6d\xf1\xf2\x4e\x81\x42\xb8\x8d\x93\x03\x30\x95\x43\x08\x58\x51\xfa\x9e\x58\x77\x94\xbc\x9b\x4f\x50\x0c\x88\x5b\x79\x72\xdd\xe3\xf3\x26\x3b\x34\x1a\x08\x58\x0f\x53\x37\x05\xdd\xbe\x1b\xba\xda\x74\x37\x50\x7d\xf8\xdb\xc4\xcd\x70\x2a\x0a\x73\x73\x7b\xee\x91\x23\x3d\x6e\x67\x72\xbd\xf5\xf5\x6f\x38\xed\x7f\xbf\xae\x9f\xec\x94\x47\x17\x46\x9a\xc1\x12\xb8\x65\x90\x04\x10\xde\xb0\x36\x07\x76\xd2\xcf\x02\xdf\x17\xbf\x42\xc0\x37\xe4\x91\x13\xb5\x63\x61\x7e\xba\x9c\x55\x8b\x64\xd6\x42\x7f\x40\xcb\x19\xf0\xe7\xe0\xef\xf3\x0f\xdb\xd8\xa6\xfd\x10\x6a\x18\xcb\x79\x68\x17\x6d\x2f\x0d\x5f\x5f\xe2\x9d\x54\x41\x7f\x24\x6d\x3e\x5b\x23\xbf\x79\x19\x92\x3c\xec\xa2\xb6\x2a\x96\x57\xbe\x77\xcd\x96\xd8\x48\xba\x6e\xd6\x76\xe3\xfd\x33\x7b\xcb\x10\x72\x94\x86\xcc\xff\x9a\xf1\x69\x91\xd7\xb1\x6e\x0c\x70\x47\xc6\x93\x1a\x84\x20\x54\x7e\xaf\xd0\x83\xa4\x0c\xfb\x86\x19\xc2\xc8\xd6\xc5\x1b\x3e\x9d\xbb\x70\x5f\xe9\xfe\xd7\xcd\xc8\xc4\x36\xb3\x3b\xfc\xae\xb3\xa1\xe3\xb8\x93\x3a\x27\xfa\xcf\x34\xc4\x08\x47\xbf\xd4\x48\xc5\x2b\x7c\xce\x62\x99\xdd\xad\x3d\xfe\x0b\xb4\xa2\xe3\x3c\x91\x16\xb7\xc0\x34\x3f\x1d\x2b\x43\x92\x4f\x2b\xe5\x8c\xd8\xae\x7e\x85\xbe\xdb\x99\x90\x28\x10\x3b\x35\xb8\x5c\xf8\x33\x3f\xed\x45\x9e\xca\xf9\x2d\xeb\x58\x89\x72\x5d\xc6\xba\xe1\xf8\x87\x66\x2a\x93\xad\x03\x2d\xba\xf5\x0e\xb2\x1f\x24\x71\x97\x09\x5d\x82\x20\xfb\x1d\x82\xe9\xa3\xb8\x70\x43\xa9\x92\x3e\x08\xd1\x74\x66\xa8\x68\xa5\xfe\x23\x08\x81\xa4\x76\x55\xae\x19\x2c\xee\x9b\xaa\x20\xc9\x58\x09\x8c\x22\x63\x1c\x51\xe4\xdb\x41\x91\x98\xc8\x01\x60\x9f\x61\x82\x52\x0d\x34\xb6\x6b\x57\x7b\x25\xcc\xc2\x3c\x71\x52\x89\x2c\x57\xd8\x51\xb6\x75\x87\xf5\x2c\xbf\xd3\x88\x29\x21\xcf\x9e\x96\x8a\x0d\xbf\xe0\x59\x24\xc3\x56\x29\x37\xe5\x6b\x8f\xd0\x98\xf2\x49\x4e\x90\x58\x8d\x23\xa0\x80\xf4\x97\x9e\x58\x57\xf3\xa4\x45\x81\x10\x5a\xc9\x9b\x34\xa2\xba\x38\x80\x48\xe6\x07\x3a\xb6\xa5\x0d\x6b\xc1\xab\x23\x96\xbb\xa2\xa8\x23\xd2\xdb\x75\x87\x4f\xf9\xa0\x38\xc8\xae\x36\x4b\x37\x77\x4d\x14\xc9\x21\x89\xe4\xe5\x3d\x6c\x7a\x7c\xa1\x8c\x15\x8a\x18\x86\xaf\xe8\x11\xb2\xf7\x4c\xa0\xda\x17\xf5\xf2\xd2\xec\x6c\x3b\x8c\x97\xc2\x38\xcc\xc3\x56\x65\xe1\xf9\xa2\x69\x1d\x78\x3e\x3b\xdb\xce\x06\xc9\x28\xd3\xdb\x58\x15\x0d\xd1\xc0\xb8\xf9\x5a\xfb\x1f\xcc\xec\x7e\x79\xf7\xde\x85\x89\x72\x4a\x01\xdc\x0d\x6f\x6b\x01\xb4\xd1\xf7\xcb\xfa\xaa\x9b\x1e\x0d\x4d\x88\xa2\x1d\xf2\xcf\x2f\x95\xd0\xe9\x97\x4a\xfe\x69\x94\x26\x4b\x61\xae\xfb\xcd\x5f\x80\xed\xc0\x1e\xba\x81\x77\xf3\x7f\x9b\xee\x59\xbc\x75\x95\x38\xc6\xbf\x1a\x7b\x48\xcd\x09\x15\x6c\x9a\x3c\x99\xaa\x44\xaf\x4a\xff\xec\xb8\xd2\xb3\xbc\xa0\x58\xae\xda\x9e\xe3\xa8\x52\x7d\x1a\x15\x31\xdb\xbe\xb8\xb3\xfd\xba\x1a\x8e\xeb\xb5\x2e\xa0\x6c\x7d\xfd\xc4\x81\xc4\x80\x74\x60\xdb\x67\xad\x42\xc8\x04\xee\x26\x88\xe2\xaa\x59\xb6\x13\x15\x98\x81\x47\xf6\xdc\xab\x7a\x1a\x35\x38\xb6\x51\x3d\xa1\xcb\x42\x09\x98\x54\x9f\x28\x20\xfd\x27\xf5\x16\xe4\x2b\x0b\xed\xd4\xc4\x12\xba\x3a\x0d\x36\xe5\xbf\xdd\x54\xe9\x18\x26\x59\x3e\x41\x6b\x08\x6f\xe1\x12\x22\x0b\xe7\x73\xe0\x0d\x48\x7f\xe0\xc4\x01\x48\x0e\x6b\x31\x8c\xc2\x7c\x8d\x54\x80\x90\x04\xe0\xb4\xe3\xcf\x0a\xeb\x27\x6d\x20\xaf\x76\xc2\xe7\x3a\x5f\x28\xa0\xcb\xd2\x28\xc2\xcf\x21\x6f\x66\xac\x19\x5f\x38\xfa\x51\xb7\x08\xb3\x90\x15\xbf\x18\xf9\x12\x54\x60\x30\x0d\x9d\xec\x6e\x52\xf4\x21\x5f\x88\xb5\x76\x42\x69\x61\x9c\x18\xfb\xc6\xcb\x92\xc9\xf2\x45\x13\x89\x92\x89\x43\x63\x94\x01\x96\x4c\x39\x09\xe6\x87\xf9\x0a\xfd\x45\xc4\x9b\x5c\x1a\xe6\x0b\xa0\x48\x78\x36\xbf\xf6\x5a\x5b\x1f\x14\x94\xc1\x8b\x80\x3a\x9d\x01\x38\x36\x98\x08\x87\xc4\x89\x1d\x0c\x5d\x1a\xb8\xdb\xe9\xc9\x93\xe8\x10\xab\xac\xd2\x53\xe0\xf3\xa5\xc0\xfb\xea\x6d\x5b\xf7\x99\xda\x31\x8a\xe2\x1c\x54\xa7\x3c\x30\xf1\x87\xbe\x43\x0b\x14\xe9\xf8\x07\x00\x99\x22\xd2\xba\x4b\x67\x11\x72\x83\xbf\xd6\x15\xc5\x0f\xe8\x54\x65\x8b\x25\xb5\x9d\xbf\x33\x56\x0d\xc3\x93\x68\x24\x60\x9a\xfe\x1f\x81\x36\x4e\x39\xa7\x5d\x94\x2e\x69\x82\xeb\x41\xaa\x25\xe1\x2b\x7f\x8a\x19\x88\x95\xc5\xcc\x57\x04\xc4\x7f\x40\x61\x1f\x1a\x02\x5f\x06\x65\x00\xc9\xfe\x07\x78\xfd\x38\xd5\xe5\x2c\x44\xdc\x7a\x29\x50\x65\x8d\x0f\x02\xdf\x9b\x3d\xd4\x04\x0f\x1a\x25\x69\x9e\x1a\xe7\xed\x2a\xca\xd0\xf4\x74\xe2\x31\xfb\x33\x1e\xc0\x4f\x3e\xe2\x19\x56\x02\xc7\x2d\x33\x1c\x95\x9e\xc7\xca\xe1\x8b\x3a\x31\xf2\x95\x85\x76\x31\x1a\x58\xb3\xc2\xfd\x11\xf6\x5a\x0c\x3c\xa9\xea\xac\x83\x86\x76\x53\x2a\x17\xbe\x61\x7b\x68\xf2\x21\x9b\xd8\xd6\xf1\x9c\x62\x46\x30\xe1\xcd\x00\xfc\x81\x0c\x77\x3b\x8a\xdc\xec\x76\xa3\x1c\x4e\x8a\x9c\x6f\x7a\x07\xfd\x49\x91\xc7\x2e\x7f\x93\x51\x59\x81\x92\x7e\x85\x6c\x97\xfb\x21\x9f\xb9\x04\x1a\x39\x35\x56\x0d\xdd\xde\xa8\xe5\x0b\x6e\xa7\x15\x03\xe2\xb4\xd6\xca\x18\x0d\xa6\x14\x72\x6e\x67\xc7\x0b\xbd\x9c\xa9\x68\x4f\x94\xaf\x1a\x21\x35\xbe\x1d\xb5\xa8\x4f\x6b\x7b\xe0\x6b\xaf\xb5\xe3\x84\x8c\x23\x5b\xae\xb8\x74\x56\xc1\x0d\x76\xd0\x98\x39\xaf\x38\x7d\x5e\x2b\x05\x53\x9b\xda\x61\x12\xaf\x4d\xd0\x02\x74\x91\xde\x9c\xd2\xe7\x2f\x97\x04\xa2\xc3\x1f\x36\xc6\x49\x8b\x36\x4d\x4d\xab\xa2\x9d\x87\x75\x20\x1e\xf2\x5a\x66\xd6\x66\x66\xb5\xa5\x22\xea\xa3\x78\x99\x7c\xa1\x24\x48\xa2\x24\x59\xce\xa6\x14\xa5\x0f\xab\x59\xf8\x7d\x9e\xd1\xf0\xd7\x63\x2f\xd9\x72\x1c\xaf\x08\x15\xfe\x2f\xc7\xff\xff\xfb\x95\xb1\x92\xee\xb2\x5d\xb2\xe4\x69\xed\xe3\x0b\x2e\xd8\xf0\x45\xf0\x94\xea\xb4\x2d\xb1\xdf\xa1\x17\x92\x81\x96\x96\x28\x00\x37\xac\x2e\x52\xef\x1c\x8a\xf2\x9a\x44\x4d\xfe\x7c\xbb\xa0\x7d\x93\x81\x5d\x16\xec\x0b\x04\xa9\x5d\xf0\xf8\xd2\x7e\x4e\xb0\xef\x04\x8f\xbb\x3c\x8e\xd2\xf9\x9e\xc6\xc7\x9e\x51\xf8\x58\xaf\xab\x6d\x96\x96\xc2\x9e\x59\x09\xd9\x7c\xd2\xe9\xd2\x3a\x44\xd6\x54\xc7\x53\xe4\x6e\x2b\xcd\xc0\x6f\x16\x66\xd9\xd2\xcc\x12\xec\x26\x6d\xde\x7c\xa1\xc3\x1a\x76\xe1\xe3\x0b\xa5\x88\xd7\x4d\xa2\x28\x8c\xa1\xf3\x2c\x29\x73\xcb\xc9\x42\x5e\x18\x3f\xec\x06\x60\xa5\x20\x09\x69\xc9\x0e\x2a\xae\xe0\xde\x8e\xb0\x2e\x8e\x46\x66\xaf\xb6\x6b\x87\xd6\x44\x93\xde\x24\x95\x53\x07\x01\x5e\xf9\x6e\xfc\x39\x85\x7e\x3e\xaa\xa4\xef\x7a\x49\xb1\x48\xe1\x70\xb9\x08\x90\x65\x3c\x04\x86\x1a\x5f\xac\x3f\xe3\xd1\x58\x16\x8d\xd3\x94\xe7\x03\x68\x7c\x4c\xec\xe5\x8b\x26\xa9\x9f\x9e\x5d\x0a\xbb\xa1\x28\x1a\xa1\x9d\x75\x41\x01\xb4\x2e\xa8\x4e\xb7\x3d\x50\x6e\xce\x53\x5e\x38\xe3\xf2\x58\x29\x60\xa3\xb1\x8c\xd8\x0a\x5d\x56\x1c\x06\xdc\x73\x43\xb1\xfe\x6c\x93\x2d\x5c\x98\x1a\x80\xf3\xc5\xd1\x48\xdd\xf4\x71\x45\x68\x19\x86\xbd\x9e\x59\xab\x46\x05\x3a\x0e\xd5\x78\x07\x1b\xe7\x3f\x4b\x3f\xe8\x92\xce\x3d\xca\xa7\xa8\x7c\x04\x74\x1d\x99\xd7\x2b\xd5\x16\x9c\x5b\x1e\x18\x25\xd4\x70\xd4\xd9\x9d\x46\x74\xf9\xd4\xd8\x4b\xff\x58\x81\xbd\xfe\x10\x18\x66\xcc\x97\x7f\x46\x43\x80\xca\xfc\x2d\x3a\xb4\x45\x47\x83\x5e\x27\xa6\xfc\xc3\xeb\x74\x1a\x23\xd9\xba\x03\x21\x0a\x57\x97\xf4\xa3\xb6\x8e\xd7\x28\x5d\x02\x5f\xa8\x7e\x8f\xf7\x34\xac\x2f\x3e\x68\x11\x8b\x7c\x44\x89\x31\x9e\xa4\x85\x23\xc8\x29\x45\x38\xd2\xc6\x66\x40\x81\x82\xd8\x72\x95\x51\x0d\x07\x03\x24\xdd\x86\x05\x7e\x18\xc1\x00\x0e\xb0\xeb\x81\x92\x07\xfa\xc2\x61\x51\x86\x45\x16\x85\x43\xc9\x6c\xf1\x3c\x9c\xd9\x4a\xf3\x47\x61\x49\x6e\x2b\x6f\xa6\x6e\x32\x1c\x99\x3c\x0d\x13\x40\x0d\x70\xf3\xfc\xd3\x9c\x38\x8d\x7d\x1f\xad\x5e\xa1\xdd\x37\xdd\x5e\xb4\x79\x6e\x01\xe9\xc5\x8e\x71\x63\xac\xba\x2a\x5c\x44\x44\x47\x09\x92\xee\x98\xda\x9f\xd0\x40\x3a\xa1\x70\xa7\xc0\xb5\xad\xe6\x65\xb4\x6b\x57\x3b\x5b\xb5\x86\x41\x1e\x8e\x4f\xa9\xa8\x20\x0d\xdd\xc8\xf2\xc1\x22\x7b\x60\xca\x13\xa1\x26\xb4\xcf\x02\x4e\x57\x67\x0f\xe0\x68\x4b\x9f\x6b\xaa\xe5\xe7\xaa\x99\xde\x37\x45\xbf\x08\x63\x2d\xec\x74\x52\x09\x3b\x9d\x54\x1a\x34\xdd\xc8\xa6\xcb\x2d\xc5\x61\x7b\x0f\x5b\x0f\x5f\xb8\xaa\xff\xd0\xc4\x21\x40\xc4\x52\x1f\xa0\x1f\x93\xb2\xbf\x7f\x49\xa3\xd4\xae\x84\x49\x91\x45\xa4\x96\x37\xe7\x9d\xa8\xe7\xa5\xcb\x0e\x28\x31\xa6\xf8\x4d\x94\x81\x80\xc4\x62\x08\x6e\xc5\xf9\x8d\x7f\x3d\xa0\xe5\xc2\x3f\xa6\xc0\xb9\x26\x5d\x6a\x29\xc7\x68\x46\xdf\x0a\x0f\x7d\xeb\x06\xb2\xf7\x95\x76\xcf\x76\x5f\x6c\xa9\x28\xe6\xcd\xc0\xd3\x58\xdf\xac\x1d\x83\xbb\x76\xb5\xf3\xd4\xc4\xd9\x52\x92\x0e\x69\xdb\xc1\x2e\xfc\x19\xee\x8d\x2f\xee\x9b\x91\x1a\x9b\xc7\x66\xc2\x33\x35\x20\x8f\x5a\x61\x0f\xb0\x90\x90\xca\xbf\x7a\x76\xc9\x9a\x1c\x8a\x08\x5c\xcc\xa5\x3d\x48\x0a\xbb\x5e\xfc\x25\x0d\xbb\x83\xc9\x8a\x8d\xb2\x9a\xb0\x14\x02\xca\xe4\xa5\xaf\x12\xe3\xe5\xa7\x14\x06\x9d\x22\x62\x9b\xb5\x94\xcc\xab\x42\xf4\x5f\x70\xa0\x17\x13\x45\xb9\x8d\xa8\x76\xef\x76\xd3\x5f\xfd\x25\xa7\xb2\x48\x7f\x5f\x78\xfa\x4a\x72\xdc\x76\x41\x0d\x9d\xd9\xcb\xbb\xdb\x29\xec\xad\x7c\xe1\x6a\x9d\x99\x98\x7d\x8a\x8c\x05\xbd\x45\xd1\x1c\x6f\x62\x2c\x47\x84\x66\x2b\x9f\x5d\xd7\x6e\xf9\xb3\xd6\xb4\xed\x25\xa3\xdc\xf6\x76\x28\xab\x41\x04\x27\x08\x03\x3e\x42\x42\x27\x4b\xd3\xe3\x3f\x6f\xd1\x96\x28\xcb\x97\xbe\x08\xf5\x87\xba\xd7\x1c\xd9\x8d\x13\xac\xd7\x75\x8a\xce\x04\xaa\x53\x74\xc6\x71\x95\x81\xd3\x49\x10\xb2\x61\x93\x02\xba\x82\x3f\xbb\xf1\x18\x26\x51\x4f\xb9\x02\x1d\x52\x1e\x7c\xb7\x30\xf5\xc4\xad\x9e\xe6\x3e\x6e\xf9\x58\x53\x55\x63\x18\x66\x1c\x99\x39\xed\xba\xd9\x59\xe1\xa3\xd3\x9f\x05\xb7\xf1\xed\xa6\xc0\x78\xa1\x9d\x25\x11\x87\x68\xae\xd2\xaa\x84\xe1\x7d\x58\x3c\x8a\x4c\xd7\xf6\x88\xba\x8a\xdb\x7c\x0b\x67\xa5\x33\xd7\x75\xb5\x97\xf7\x31\x59\xf0\x53\x9f\x35\x34\xd1\xda\xf6\x40\xd7\x8a\x7a\x32\x56\x3f\x82\x65\xfe\xec\xe6\xe4\x8a\x8d\xc3\x2e\x97\x6c\x90\x09\xa3\xc6\x23\x9d\x5c\x05\x1f\xbb\x85\x9d\x00\x91\x49\x96\x1b\x12\x36\x71\xa1\xad\xa0\x9e\x34\x1a\xaa\x0e\x35\x6f\xf7\xc2\x2c\x49\x7b\xce\xff\x15\xc1\xc2\x9b\x34\x67\xf8\xf3\x56\xd7\x82\x72\xa2\xfe\xc2\x03\x34\xf5\x1c\xbe\x6d\x7e\xda\x45\xb8\x9e\x91\xf1\xc7\x14\x32\xb8\x04\xc8\xdd\xc7\x47\x5a\x62\xff\x74\xa0\x45\x55\x71\x7a\xa2\x7c\x71\x52\x11\xed\x70\x94\xe4\x56\xb6\x5f\x56\xc1\x27\xcf\xd5\x83\x0a\x75\xdf\x02\x59\xda\x0b\xd5\x88\x97\xc2\x4d\xa5\x0e\xc5\xd2\x3b\x52\xfb\x7c\xb6\xa2\x3a\x2f\x79\x34\x1f\xe4\x42\x46\x56\x80\x89\x09\xd4\x8a\x51\x21\x79\xa8\xe3\xc1\x86\x30\xa1\x0f\x2d\xc3\x60\x71\x90\xdf\x50\x72\x5c\x20\x87\xcb\x7f\x8c\x15\xd8\xf8\x02\xc5\x91\x9b\xd7\x03\x5d\x04\x8a\x73\x93\x95\x19\x7d\x6b\x6e\xae\x22\x29\x2a\x5a\xa3\x32\x65\x06\x45\x4a\xf6\x02\xce\xe2\xff\xa4\x0a\xc9\x4e\x2a\xd8\x52\xcf\xe4\xe6\x61\xef\xee\x77\x9c\x76\x03\x64\x6e\x1b\x81\xb7\x4c\x44\xbf\x5f\x7c\xbd\x7c\x10\xf7\x67\xb8\x63\x34\x23\xd1\x22\x53\x68\xac\x19\xa7\x57\x43\x9b\x8f\xcc\x5d\xc5\x83\xff\x96\xf6\x9d\xd9\x50\x5c\x97\x5e\x12\x27\x2b\x6c\x88\x82\x50\xfa\xa7\x98\x22\x7c\xa1\x36\x77\xf4\x5c\x93\x34\x7b\x82\xbe\x12\x91\x66\xab\xe3\x81\x3f\xba\xc1\x76\x17\xa5\x1e\x77\xf2\x2a\x62\x5b\xe0\xf5\xfe\x58\x03\x59\xaa\x7d\xe5\xf8\xe0\xd7\xdf\x0e\x94\x56\x00\xd7\x52\x10\x40\xb0\xe5\x35\xea\x1e\x70\x61\xc3\x92\x1c\x8f\xbd\xca\xe8\x77\xc6\xca\x31\xf4\x8f\x49\xb2\x04\x3f\x74\x45\xc5\xaf\x9f\xd5\x4e\xf3\x5d\xbb\xda\xab\x61\xd4\x6b\x29\xe3\x10\x14\xbf\xf9\x73\xad\xc1\x3e\x3f\xad\xf1\x17\x3d\x6d\x16\x73\x2a\xf0\xfa\x35\x75\xe7\x82\x99\xbd\x6d\x33\x1a\x59\xf2\x55\x55\x42\x07\xe7\x03\x0d\xbc\x96\x48\x69\x90\xe4\x36\x9a\x6c\x3d\xff\xbc\xf7\xa6\x9f\x9b\xc3\xf8\xef\x7c\x82\x62\x4a\x84\xc7\xcc\x75\x47\x20\x79\xd5\x33\x8b\x6d\x5a\xc6\x82\xae\x47\x88\xb0\xfc\xc6\xd8\xe7\x9d\x37\xf4\xf9\xb6\x6a\x42\xc9\xeb\xd1\x3b\x41\x37\x91\x3f\xab\x1a\x4f\xd7\xa4\x0f\xab\xf2\x0f\xaa\x86\x58\x20\x87\xc6\xfe\xe1\x27\x08\x7d\x86\x43\x81\x69\x0a\xe8\x25\x70\x57\x15\xd1\xfc\x4f\x68\x11\x60\xba\xc0\x44\x04\x47\xca\x36\x64\x0f\x0c\x0d\xa2\xb3\x0d\xc3\xb3\x53\xa9\x17\xbc\xaf\x7c\x2e\x86\x26\xcf\x45\xb8\x1b\x39\xe0\x71\x9c\x1c\x7c\xd1\xa0\x7b\x3c\x4a\x6d\x6e\x0e\x50\x25\x5b\xb6\x04\x4f\x83\xbc\x10\x3c\xa7\x22\xa9\x21\x51\xc0\x01\x8d\x05\x0b\x06\xe7\xce\x8e\x75\x5f\x07\xe1\x56\x39\xb2\x8d\x6b\x4a\x46\xa5\x9b\x26\x59\x86\x82\x17\x96\xe8\x4e\x06\x51\xa0\xae\x71\x05\xd3\x5c\xca\x6f\x9e\xf0\xc9\x9b\xa6\xb0\x25\x7d\x15\x66\x29\x8c\x4d\xdc\x0d\x4d\xf4\x58\x39\x78\xb8\xdf\x5b\xbc\x91\x3b\x0e\x9a\x07\xe8\x6f\x23\xf0\x1e\xea\x6b\x47\x34\x56\xf3\x1c\xd6\x94\x93\x2e\x28\x97\x9e\xca\x9f\x5f\x76\x20\xd9\x96\x93\x99\x7b\xb8\xa3\xf4\xe7\x38\x1e\x44\xed\xf9\xb6\xf2\xbb\x7b\x72\xdd\x67\xae\xa7\x95\xc5\x65\xab\xa3\xe4\xc0\x2d\xb7\xd1\x38\x80\x52\x9e\xe4\x1f\x35\x20\x5a\x5e\x25\x67\x8d\x34\x37\xe0\xda\xb8\x36\xce\xb6\x75\x25\x24\xb9\x4d\xa9\x1e\x65\x49\x11\xf7\x98\x36\x8d\x8a\xf8\xf7\x30\x9e\x7c\x51\xeb\x45\xcf\x4f\xb7\xbb\x49\x9c\xa7\xe1\x22\xb9\x99\x3a\x53\x34\xd6\x64\xe6\x8b\x40\x7b\x69\x10\xf3\xb2\x3c\xfe\xb3\x32\x38\xdf\x3c\xab\xe9\x06\x27\xd4\x5a\xb8\x15\xf8\xa2\x49\x52\xe4\x4b\xa1\x8d\x7a\x36\xe5\x78\xca\xa9\xc8\x79\x46\x03\xe4\xd7\xea\x16\x72\xdd\x24\xcf\x93\x78\xa7\x2a\xe6\x5f\x51\x92\x7e\x3f\x08\x7c\xb7\xe0\x4a\xb5\x72\x44\xef\x09\x6b\xf4\xf6\x58\x75\xb6\xc0\x2f\xe0\xff\x70\x72\xd3\xdd\xc8\x9a\x98\x62\x74\xa4\x79\x60\x43\x83\x7e\x34\x49\xeb\x0f\xed\xb9\x6d\xeb\xcf\xea\xa2\xb8\x4d\x57\xc4\x9e\xa0\x7c\x2e\x25\x5c\xb4\xe0\xf8\xa7\x7e\x1b\x49\x8a\xfc\xc9\x96\x72\x08\xa0\xa1\x73\x60\xd5\xf2\x0f\x60\x27\xf8\x8c\xe6\x8f\x58\x56\xab\x02\xc5\x41\x54\x3e\x44\x3f\xdc\xa3\x41\x1f\x02\x84\x19\xa9\xd8\x1d\x7c\xbf\xeb\xa4\x39\xfa\xf1\x23\x1d\x85\x67\x46\x2a\x8e\x2f\x61\x2c\x0c\xd6\xe0\x0f\xc6\x2a\x7f\xba\x42\xa7\x37\x76\xb1\xff\x84\xdd\xa5\xa2\x92\xcc\xfe\xb2\x35\x29\xc3\x7d\xd3\x33\xed\xd7\x8b\x34\xcc\x46\x69\xd1\xb3\x24\x46\xe4\xa2\xc5\xdf\xd4\x67\xe4\x6f\x36\xb5\x8f\x87\xa6\x1f\xdb\x9c\xf5\xb8\x9b\x8a\x65\x12\xec\x87\xae\x7d\xe5\x24\x1b\xca\x3f\x2d\x6c\x4c\x2f\x2b\xf4\x7a\x31\x1c\x4d\x79\x80\xe1\x89\xc0\x1b\x81\x00\xf8\x85\x07\xd9\x54\x82\x47\x97\x89\xf1\x22\xb6\x23\x6a\xdb\xb5\x69\xdf\xa6\x3b\xfd\x49\xcb\x73\x0d\x0b\xf9\x9a\x12\xb5\x87\x1f\x27\xda\xb4\x98\x50\xd8\x13\x3e\x18\x7b\x3e\xf0\x2d\xcc\x4d\xfe\x21\x85\xed\xeb\xa5\x61\xbc\xdc\xaa\x39\x46\x8a\x27\x5d\x93\xcc\x7f\x6c\x0f\xe4\x4a\xb8\xed\x8b\xb1\xcf\x8f\xce\x8c\xfd\xd1\x74\xad\x82\x5d\x58\x8c\xd6\x9e\x6a\x39\xc0\xf8\x8f\x11\x57\x61\x5a\x20\x9c\x46\x26\xf6\x28\x04\x57\x9d\x97\x95\x37\x33\xbf\x17\x28\x15\x94\x9d\xeb\x4a\xbe\x75\xa2\xa3\xec\xb6\xcf\xa3\xec\xe6\xc4\x16\x5f\xda\xef\x39\xdf\xe5\xa4\x96\xbc\x8a\x26\x1f\x03\xa7\xd1\x64\xc7\xee\xf5\x91\xe2\x05\x3d\x4e\x12\x30\x4e\x51\xc8\xaf\x36\xd6\x0d\x77\x11\xe6\xfc\x34\xaf\xe1\x1f\xa9\x5e\xcc\x7f\x93\x25\x13\x9e\x2b\x73\x46\xf9\x4e\x9c\x56\x1c\xcd\x7f\xe7\x9a\xb0\x59\x94\xf4\x8d\x38\x90\x38\x84\xc7\xbc\x17\xec\x56\xc1\xf9\xc8\x76\x8b\x88\x44\x5c\x9d\x59\x24\x40\x39\x2c\xdb\x1b\xf8\xea\x19\x2c\xd9\xf9\x67\x6a\x38\x96\x17\xda\x66\xc5\xa6\xa6\x2f\x5b\x7f\xa5\xad\x28\x12\x47\x9e\xbf\xbf\x6c\x72\x0b\xde\x12\xaa\x71\xa2\x93\xee\x98\x52\x9e\xd2\x7b\x45\xd1\x33\x47\x26\x0f\xcb\xbd\xfc\xc1\x72\x39\xc8\x44\x55\xb0\x90\x73\x81\x26\x97\xeb\x79\x7e\x57\xa9\xd0\x41\x21\x04\x2b\x68\x0a\xd8\x47\xc4\xa3\x70\x16\x75\x9c\x07\x9f\xdd\xfc\x56\x93\xc3\xc2\x28\xf2\x3d\x7d\x71\xf8\x28\xff\xb0\xf8\x86\xf8\xa7\xcd\x93\x55\xf2\xe2\x7a\xd9\x63\x37\xdd\xcd\x40\x94\x0a\xdd\x52\x9e\x0e\x28\xf2\xfd\xb8\x01\x17\xbc\xd0\xb6\x07\x46\xa9\xcd\x32\x61\xfa\x8a\xb0\x87\x8a\xf6\x2e\x55\xab\x75\x0d\xdb\x55\x2f\xcc\x88\xe5\xda\xf2\x64\x9a\xdf\xa3\xe1\xe1\xcf\xb5\x40\x6c\xcf\x2b\x0b\xed\xd5\xc4\x56\xb6\xae\xe3\x15\x8d\x43\xbd\x42\xad\x59\x7e\xa8\xfc\x3f\xe1\xba\xd0\xbd\x89\x28\xb4\x72\xb9\xfb\xa7\x0a\x98\x7e\x14\xa3\x8d\xff\x38\x3a\xf6\x9c\x96\x3f\x54\xaa\x72\x37\x51\x64\xe6\x1f\x0a\xaa\xd2\xf9\x6e\xe5\x9f\xd1\xb2\xb1\x39\x3b\x59\xcf\xce\x72\x86\x76\x56\xb1\x1e\xce\xaa\x0d\x77\x64\x8d\xc0\xa7\x10\xa8\x30\xe6\x8a\x2f\xb6\xea\x83\xfe\x42\xfb\x57\x66\x28\x00\xc1\x90\x1d\x51\x5e\xe0\x47\x94\xc8\xff\x62\x6a\x57\x59\x3d\x0b\x2d\xf8\x6f\x6b\xf9\xc5\x6f\x37\x6a\xd3\x87\x19\x15\xbc\x70\x2f\xce\x2e\xb5\xfc\x2d\xbe\xa8\x35\x96\xe6\xa7\xdb\x45\xdc\x2d\x23\xaf\x30\x56\xec\xeb\xe3\x8a\x7d\x7d\xbc\x62\x6f\x42\x9e\x28\x4e\x0a\xa6\x85\xe6\x11\x02\x46\x08\x46\x23\x6b\xf9\xb2\x96\x1c\xd1\x37\x65\x5d\x93\x0f\x38\x0f\x41\xd7\x94\x1d\xf5\xf8\xc2\x9d\x76\x65\xfc\xb8\x43\x91\xbc\xb8\x78\x58\x37\x8d\x7f\xa4\xa3\xc2\xe8\xd3\x28\xcc\xbb\x8b\x72\xc2\xa0\xd8\x57\xf7\x28\x9a\x9d\x65\xe9\x4c\x1e\x2e\xc0\xe5\x2e\x62\x90\xf9\x42\xf5\x8f\x87\x26\xce\x40\x9d\xdb\x2d\xec\xc5\xab\xd8\xc0\xf9\x22\xf0\x54\xa0\xee\x20\x89\x6c\x96\xdb\x34\x89\x26\x7d\x29\x97\x89\x32\x22\x90\x44\xbb\x0d\xd6\x20\x0b\xb8\xf1\x85\x8a\x08\x97\x92\x2c\x07\x11\xf4\x55\xbd\x31\x2d\x38\x09\x0c\x45\x87\x0e\xa3\xb0\x9b\xb0\x21\x94\x08\x25\x29\xb0\xc9\xe9\xf1\xd7\xea\x35\xb4\xdc\x46\xb6\x9b\x0c\x87\x45\xcc\x0c\x06\x5e\xa6\x38\x3c\x01\x33\xe2\xcf\xb5\xf9\xb6\x7f\x4f\x7b\x50\x66\xbb\x31\xc3\x2a\x70\xf4\x6d\x60\x07\xe1\x8b\x06\x64\xeb\xab\x2c\x1d\xdd\x52\xb5\xdb\xf3\x81\x2f\xea\x96\x09\xb2\x3c\xd3\xf3\x2b\xf6\x91\x72\xfc\x50\x1e\x44\xd9\x0e\x9b\x35\xf7\xa5\x10\xf7\xdd\x0e\x6a\x22\x86\x58\x4e\x5c\x88\x40\x27\x6e\x23\xf0\xee\xd5\x27\x28\x72\x51\x65\x6f\x29\x91\xfd\x21\xed\x2b\xae\x36\xbe\x4b\x60\x82\xac\x7f\x2e\x68\x6e\x09\xa5\xf3\x41\xd8\x5d\x6e\x29\x68\x70\xa0\xca\xcb\xfe\xa7\xec\x70\x94\xd0\x86\xc9\x66\xf4\x78\xdd\xe2\x4c\xff\x88\xda\xff\x9e\x7f\xa4\x1c\x09\x7c\x3f\x82\x20\xac\xf6\x6d\x9d\x32\x88\x70\x52\x9b\xbb\x66\x9c\x4e\x3d\x3d\x21\x62\x08\x86\xf2\x23\xd8\x92\x53\xd1\x11\xef\xca\x1d\x4f\xd8\x1b\x2d\x27\xc9\xd7\x02\x27\x4c\x3a\x84\xde\x21\x03\x82\xc7\x7c\x50\x5e\xad\xc5\x60\x7b\x5f\x69\x67\xdd\xd4\x00\x0f\xd2\x44\xe7\x6a\x02\xb2\x0d\xec\x52\x0e\x36\xa9\xcc\xfb\x96\xd3\x1b\x3a\x57\xa3\xd7\xef\x9b\x7e\x99\x8e\x9b\x70\x14\x85\x31\x17\x70\x91\xbf\x7e\xae\x04\x2d\x00\xfa\x13\x3f\xaa\x86\xa2\x7b\x1a\xe6\x6f\x40\xc9\x11\xc7\xc5\x45\x15\x97\xfc\x99\xee\xae\x9c\x6b\x2a\x8c\xa7\x45\xc4\x5f\x8d\xdb\x04\xb5\x11\x55\x00\x74\xfe\x30\xc0\xff\xa4\x76\x58\xce\x4f\xb7\x4d\x5c\xee\x76\x43\xf4\x76\x30\xbd\x59\x98\x03\x27\xec\x19\x25\x6f\x78\x6a\x5c\x91\x82\x4f\x17\x01\x51\xd4\xe0\x48\x69\xf9\x79\xe8\xf8\x1d\xd7\x33\x10\xf1\x89\x8a\xd5\xee\x86\xca\xff\xd8\x10\xc1\xa5\x8c\xe5\xea\x53\xd5\x00\x99\x43\x4c\x02\x07\x29\xe5\x20\x36\x43\x6c\x70\x27\x15\x8c\xe0\x8d\x24\x89\x92\xfe\x5a\x4b\x91\x0b\x8f\xe3\xef\xf3\x45\x2d\xe6\x21\x43\xad\x24\xb6\xe9\xa4\x97\x46\xe0\xc3\x03\xf5\xd2\xc3\x15\xf4\x02\x2d\x68\x81\xa2\x3f\xad\xd2\xd0\x7e\x19\x72\x86\x02\x3c\x74\x00\xce\xf2\x36\xf9\x42\x9d\x56\x8b\x49\xe8\x9c\x5a\x9c\x15\x8d\xdf\xde\x8f\x57\x92\x83\xdc\x0e\x1f\xf3\xd1\xe7\x03\x1d\x25\x81\x79\x8b\x56\x9c\x73\xe8\xd9\xed\xa5\xd6\x2a\x6b\x8c\x08\x1f\x42\x53\xa1\xb7\x87\xd0\x10\x8c\x51\x24\xac\x57\x03\xc5\x03\xdb\xa8\x40\x7d\x00\xd6\x93\xb4\xcf\xb3\x69\xcf\x8c\x7d\x8f\x89\x35\xc9\xa4\x60\xed\x8b\x46\x8b\x96\x42\x68\x89\xb3\x70\x08\x7f\xa8\x0e\xe4\x0f\x83\x8a\x57\x7d\x68\xb9\x20\x8a\xf2\xd0\x8f\x71\x0a\xf3\xc5\x7d\x3b\x95\x59\x9e\x74\x97\x27\x7c\x87\x98\x75\xac\x05\xa7\x5d\xee\x05\xc8\x34\x8e\x68\xf8\xa7\x49\x1f\x56\xdc\xd1\xb7\x94\x38\xed\xef\x8c\x3d\xd2\xf2\xdd\x40\x7b\xed\xe1\xac\x94\xc1\x50\x80\xf3\x4b\x81\x97\x96\xb8\x4c\xa3\x84\xcf\xdb\x3b\x9a\x29\x09\x39\x07\x91\x3c\xd3\xf6\x75\x63\x5f\xab\xc9\x6d\x9c\x9b\x1c\xe2\x1d\x4a\x74\x95\x71\x12\x7c\x11\x54\x04\x5e\x42\xb2\x98\x54\x66\x91\xc7\xe9\x76\xf8\x73\x93\x72\x00\x49\x07\x62\xa1\x70\xff\x2d\xf0\xbe\x93\xc7\x2a\x8b\x3e\x49\xe2\x87\xfd\x4e\xf1\xfd\x40\xa1\x74\x61\x7b\x23\x38\x30\x9a\xfb\x38\x18\xb8\x00\x82\x8a\x5f\xab\xa3\xc1\xaa\x5b\x4c\x7b\xcb\x6f\xc5\x7c\x64\x00\x2e\xd6\x0b\xa3\x55\x5c\xbb\x76\xd7\x8c\x23\x77\x6c\x5d\xc3\x2f\xed\x87\x15\x4d\xb6\x95\xec\xe6\x10\x26\xb5\xf0\x72\xd7\x2e\x98\x91\x2f\xd9\xd4\x4e\x95\x77\x20\x1c\x8d\x4a\xf3\xaa\x7c\x4e\xcc\xf5\x13\x34\x39\x50\x3a\xd8\xa1\x6a\x51\x67\x74\x60\xbc\x36\x32\x59\x46\xc6\x17\x28\x15\x7d\x48\xc8\x12\x27\x4b\xb5\x6f\xda\xa7\x64\xb3\xb3\x4c\x3a\xda\x6c\xd2\x8e\x46\xfc\x42\x47\x98\x40\x3a\xe9\x69\x04\xec\xd9\x00\xe0\x36\x79\x1e\xe6\x45\x8f\x75\xa4\xb1\x4d\xae\xd3\x2c\x16\x4a\x71\xf9\x94\x08\x58\x8e\x35\xaa\xa9\xf6\x92\x62\x31\x9f\xa2\x57\x28\x0a\x50\x3e\x65\x79\x77\xac\x1c\xe2\x80\xc5\x90\xb6\x23\xbd\x33\xc9\x01\xf5\xc6\x95\xac\x66\x8f\x78\x2d\xf2\x63\x15\x3d\xd0\x9f\x28\xef\xa8\xc7\x3a\x54\xd6\xc0\xd9\x75\x02\xb3\x4b\x52\x54\x45\xcb\x9f\xa0\x82\x03\x7f\x5e\x57\xe7\x23\x37\x7f\xa0\xe6\xba\x89\x1b\x15\x70\x8c\x2f\x5e\xdd\xd6\xce\xcb\x7f\x51\xa3\x83\xef\x9b\x9e\x29\x0f\xf5\x6f\x16\x26\x0a\x97\x42\x69\xae\x48\x5c\x54\xfe\x19\x09\x8b\xfc\x36\x9e\x85\x49\x71\x80\xc2\x06\x9e\xf3\x81\x4a\x75\xef\xdc\xa7\x9a\x9c\x25\x51\xd8\x45\xcf\x63\xd7\x2e\xaf\xb1\xe8\xf5\x16\x35\x0a\x2c\x49\xd3\x30\xdb\xa1\xe0\x1e\xdb\xd7\x31\x8a\x7c\xd5\xf1\x71\xca\x5b\x80\x98\xe8\x76\x10\xff\xc7\x58\x01\x4c\x4e\x29\xe8\xcc\xa8\x18\x8e\x38\x46\x76\x12\xbf\xe5\x10\xf1\x85\xd2\x1b\xb4\xa6\x0c\xf7\xe3\x07\x94\x4a\x20\xe3\x67\x98\x09\x89\xd3\x4b\xcc\xec\xf5\x8b\xfe\xbd\xc0\xc3\xd6\xae\x50\xc5\x09\x6b\xe3\xe8\x58\xbd\xe7\x75\xe5\x3e\x71\x42\x7d\x6f\x1a\x76\x07\x39\x43\x44\x59\xc2\x1d\x43\xbc\x55\xcf\x7d\xb5\x3c\x4f\xcb\xbf\xe1\x5c\xfa\x5d\x82\xbd\xa1\xaa\x4e\xbf\xf8\xcb\x0b\x93\x34\x3d\x9c\xd4\xbb\x17\x96\x79\x94\xc6\x52\x88\x94\x0a\x88\x7a\xb7\x51\x7e\x2d\xcb\x9d\x1e\x51\x93\xbc\xbb\x74\xc3\x5c\xa3\x19\x22\x2d\xb2\xd7\xfb\xc9\x7f\xb3\xe2\x92\xa9\xcc\x1f\xa3\x64\x64\xb3\x09\x7f\xda\x5e\x52\x87\xf5\x59\x65\x77\xf6\xc3\xf1\xb3\x9a\x23\x43\xaa\xbe\x26\x62\x71\x14\x89\x7a\x7c\xf4\x7f\x5c\x7d\x07\xe4\xe0\x30\x03\x2a\x0a\x70\x72\x8c\x37\x6d\x13\x26\x74\xdc\x5e\xe6\xe5\x63\x07\x10\x92\xbe\x52\xa9\x2c\xca\x59\x63\x95\xa0\xdf\x29\xe5\x0f\x73\x4a\x29\xf1\x52\x03\xc4\x74\x73\x72\xaf\x60\xf9\x12\xcc\x2f\x4c\xa2\xb1\x12\xfd\xb9\x81\xd5\xce\xa5\x52\x7c\x37\x0a\xf0\x6c\x81\x84\xe7\xe4\x3c\x16\x13\xef\x4f\x02\xdf\x61\xbb\x87\x82\x0b\xb6\xd2\x9f\xd2\x16\x87\x62\xe3\x27\x0a\x04\xc6\x8b\x94\x9b\x98\xca\x3b\x76\x7e\xda\x69\x8b\xf9\x52\xd8\x92\x8d\x21\x12\xc2\x9e\xe6\x14\x89\x89\xbf\xf9\xe3\x8e\x79\x6c\x47\xc6\xd9\xfd\x38\x3e\x91\x42\x24\x6d\x3d\xa3\x66\x67\xdb\x94\x00\x87\x23\x13\x4d\x78\xe2\x12\x27\x40\x98\xc2\x97\xd5\xc8\x4c\xd6\xa8\xa9\xaf\xbd\xd6\x5e\x4a\x43\x1b\xf7\x78\x3a\xa0\x98\x76\x24\xf0\x92\x07\x47\x54\xf0\x6c\x46\x91\x8d\xf3\x35\x14\xf5\x70\xfb\x38\xa9\xc4\x33\xbd\xb5\xd5\x4b\x08\xe1\xea\xf9\x72\xe0\x5c\x73\xaa\x4c\xdb\x6d\xdc\xe3\x2e\x93\x28\xe1\xb4\xbe\xfe\x0d\x27\x9a\xe3\xfb\xbb\xd5\x2a\x78\x94\x74\x27\x95\x7c\xfa\x5d\x7a\x37\x2e\xc5\x76\x0c\xbe\x27\x3b\x9e\xc1\x70\x53\x41\x76\x07\xd6\x44\xf9\x60\xa7\x82\xe0\xa1\x5f\x81\xcf\x47\x02\xd5\x41\xe4\xc0\x0d\xdf\x83\xbc\x45\x92\x11\x4f\x0c\x39\xaf\x45\xee\xbc\xfd\x20\x7a\xb2\x49\x01\x1f\x18\xce\x54\x2a\x18\xe0\xfb\xc8\xb5\x58\x11\xa7\xc3\x3c\x3c\x42\xe3\xc0\x9f\x2b\xb8\x87\xac\x48\x4d\xdc\xb5\x8f\x2b\x2c\xf4\x71\xdc\x30\x12\xc5\x0f\x99\xe6\xcd\x0d\x02\xee\xc0\x3a\xa0\xa7\x0c\xd4\x0f\x8f\x83\x9f\xa8\x94\x40\xbc\xc5\x8a\x82\x56\x1f\x0f\x94\x02\xf1\x59\x85\xf0\xb9\x50\x11\x28\x1b\xab\xb4\xef\x7d\x9a\xb7\xe8\x03\x40\xa8\x50\x1c\xc4\x5b\x4e\x3b\xf5\x76\x2d\x35\x9f\xd9\xdb\x1e\x15\x7d\x56\xf8\x94\xb3\x42\x1f\x1c\xca\x82\x22\x8b\xc2\x91\x2a\x31\x6e\x06\x3e\xb1\xde\xd4\xc4\xbd\x30\xa6\x66\x34\x6a\x9f\x8f\x73\x69\xc1\x79\xc7\xbc\xb4\x9f\x0f\x98\x93\x4a\x83\x2a\x7c\x16\xfb\x04\x6e\x1f\x8a\xf3\xc8\xe8\xae\x53\x70\x5e\x69\x5e\x62\x6d\xc2\x43\x0d\xcf\x05\x27\x56\x20\x01\x38\x19\xc3\xf6\x73\x91\x92\xc3\xcd\x8b\x63\xef\x95\xfd\xdf\x7e\x15\x28\x25\x51\xc8\x68\xd0\x7f\xc8\x62\x6b\x58\x8e\xcb\x89\xe5\x7a\xe1\x5c\x8d\x48\x37\x59\x68\x53\x2c\x10\xbc\xeb\xbf\x18\x7b\x11\x8b\xff\xa8\x24\x9a\xb0\x50\xf9\xdf\xc7\xcf\x54\x8b\xbc\x33\x7b\xdb\xf3\xd3\xf3\x7a\x4f\x46\x91\x4a\x36\x68\xcf\xff\xc8\x06\x49\x92\x4f\x7a\x12\xe1\x31\x05\x7a\x3f\x86\xb5\xe1\x28\x58\x8a\x8f\x55\x0b\xb5\x67\x67\xdb\x11\x27\x81\xbd\xc9\x32\x8c\x77\x12\x93\xae\x47\x40\x4d\xaa\x39\xe7\x85\xe3\x13\xa9\x0d\xd5\x27\x19\x9a\x3c\x4f\x6d\x06\x11\x23\xb4\x10\xff\x06\x19\x11\xd6\xeb\x26\x22\x47\x54\x2d\x6e\x37\x30\x42\x16\xda\xe5\xc2\x8d\xfb\x9c\xeb\x63\x92\x7f\x0b\x4b\x01\x13\xe0\xb2\x06\xf2\xb0\x3c\x0f\xaa\x4e\x13\x0a\x42\xb0\x62\xb2\x7c\xaa\xa5\xa4\xd0\xe9\x9d\x60\x9f\xb8\xac\x95\x94\x2f\x68\xd4\x35\xf6\x1f\xe6\x49\x75\x94\xea\x73\x92\x76\x71\x26\x60\xcb\xfd\x0f\x1a\x59\xff\x1f\x9a\x24\x43\x56\xc3\xd4\xa1\x6b\x80\xe5\xd8\xb6\xee\xf9\x2a\xdb\x94\xbc\x86\x8d\xcd\xa4\xff\x9f\x23\x5a\xd8\xf9\x82\xca\xf6\xde\xa3\x11\x17\xe3\x6f\x0f\x4c\x4b\xd2\xd8\x10\xcc\xa0\xe5\x67\xc1\x15\x35\x0b\xae\xd4\x0a\x53\xe5\x91\x95\x64\x79\x8b\x36\x1e\x04\x7a\x57\x51\x3e\xe0\x8b\x26\xae\x78\x6a\xa3\xa4\x2b\xc8\x24\xc1\x99\x29\x05\xb0\xe0\x29\x5d\x67\x31\x69\x2f\x8c\xfb\x53\xf4\xf4\x38\x04\x3e\x54\x34\xb6\x0f\xb5\x62\x33\xab\x4f\xa1\x7d\x7c\x3b\xd0\x9a\x3d\xe7\x94\x51\x5c\x6a\x4d\x9a\x9a\xd8\xd5\x28\x18\x3c\xa4\x8a\xcc\x87\xdc\x29\x5e\x8c\xfa\xa9\x21\xa7\x03\xdf\x8f\xba\xa1\xce\x7b\x16\x97\x90\x18\xb7\xc9\x22\x3b\xb6\xc9\x68\xb0\x96\x4b\x24\xa0\xcc\x90\x16\x9c\x19\xd2\xd3\x15\x0a\x8f\x19\x41\x20\xcc\x43\x2b\x00\xbe\xe4\xcf\x0d\x0a\xd8\x7b\xda\x51\x48\x82\x14\x2d\x27\x69\x78\x94\x5e\x32\x7f\x56\x30\xa1\x7c\x90\x64\xf6\xe9\x72\x5d\x3a\x0a\x44\x39\xed\x91\x4d\x4d\x74\x28\x01\x03\x42\x10\x88\x39\x61\x66\x7b\x99\xe7\xaf\xdc\xa6\xb7\x85\xc3\xe9\x0e\xce\x09\xb6\xc9\xc2\x09\xe4\xb4\x75\xbc\x94\xf8\x3b\x81\x2a\xf4\x7d\xae\x6b\x8f\x20\x08\x08\x06\xa6\x35\xb3\x57\x3c\xae\x54\x81\x93\x41\xc4\xa2\x12\x4b\xed\x72\x77\x4c\x95\xcb\x99\xe5\x36\xc7\x9e\x9a\x38\xd9\x51\xe2\xe4\x67\x95\xfe\x68\x6e\x87\x0f\xd2\x5f\x43\xa4\x71\x9b\xbe\x5e\xf2\x21\x3f\x0b\x3f\x55\x86\xf8\xcf\x74\x54\x32\x7c\x31\x50\x48\x8f\x23\xda\x0f\xe2\xaf\xc7\x55\x2f\x66\x3f\xfe\x37\x15\xaa\x6a\x94\x26\x83\x70\x31\x74\xed\x1e\xd4\xd3\xde\xd5\x42\x14\xef\x56\xc2\x83\x25\x14\x1a\x1f\xf5\xb8\xa7\x73\xca\x65\x61\x1b\x64\xd9\xd0\xaf\x67\xed\x53\x67\xdf\xe5\x60\xbf\x27\xb5\x17\xe4\x61\xd4\xe0\xd9\x6e\x2a\x50\xf5\xc5\x13\x54\x39\x14\x73\x7d\x1a\x59\xa4\x91\xc7\x90\xbd\x49\x10\x5e\xbe\x25\xa6\xc3\xe2\xbe\xd1\xe6\xf8\xff\xf8\xfa\xb7\x20\x39\xce\xec\x4e\x0c\x07\xaa\x1b\x57\x12\x1c\x82\x97\x91\xe6\xaf\xfd\x87\x4b\xda\x09\xd3\x1b\xcb\x61\x6c\x38\xfc\xb0\xa1\x97\x2c\x03\x3d\xa4\x00\xaf\x9a\x6d\x00\x03\x68\xf9\xc4\xaf\xb3\xbe\xae\x4a\x76\x56\x66\x31\x33\xab\x1b\xcd\xb0\x23\xfc\xb8\xa1\x70\x38\x62\xb5\x4f\xf6\x7a\x1d\xab\x95\x2c\x79\xb5\xb6\x2e\xa3\x5d\xaf\x46\x23\x4d\xb6\x66\xb4\xc3\x91\x86\x1c\x91\x04\xc9\xe1\x90\x1c\x10\x77\x34\xae\x8d\x3b\xd0\xb8\x34\x1d\x79\x7e\xe7\x7c\xdf\xc9\xae\xc4\xbe\x65\x02\x5d\x55\x99\xdf\xe5\x7c\xe7\xf2\x3b\xbf\xdf\xdf\x35\xf2\xac\xcf\x66\x69\xd1\xb7\x59\x3e\xa9\x68\x4a\xef\x63\x39\x89\x10\xb8\x56\xbc\xe5\x4e\x12\x3c\xd0\xdb\x8d\x82\x27\xe9\xdc\xdc\x84\x17\xf0\x81\xfb\x8d\x1a\xe7\x6f\x11\x30\x18\xa9\xbb\xbe\x6a\x30\x99\x8b\xad\xa5\xaa\xbe\xa3\x7f\x40\x33\xaa\x68\x44\xfa\xf1\xee\x9b\xc1\x6c\x66\xc3\xbe\x14\x52\x61\x25\xef\x06\xaa\xa2\x71\xb7\x91\xf8\x7a\x34\x4c\x93\x96\x42\x28\x90\x91\x92\x9d\xe0\x43\x9f\x38\x4d\x87\xfd\x34\xb6\x68\x98\x70\xca\x0a\xfb\x7c\xaf\xb9\x6e\xed\x0e\x21\xe8\x89\xcd\x79\x0b\x8b\x8d\x6f\x9a\x18\xb7\xc2\x34\xe9\x8e\xc2\x42\xf0\x0b\x8c\xbb\xc1\x0e\x15\x10\xce\x57\x9d\xb9\x1f\x44\x49\x24\xaa\xa7\x84\x6c\x16\x20\xe4\x29\x4c\xaa\x63\xda\x74\x47\x1f\x50\x59\x4c\x0a\x52\x2a\x64\xd2\x4f\x54\x70\x57\x39\xcb\xb3\x31\xa3\xeb\xa5\x5f\x93\x9e\x5c\xd0\xf5\xca\x96\x5e\x52\xd9\xf6\x47\x0a\x23\x9d\xd9\x59\x28\x0a\x69\x8a\x83\x4b\xaa\xb0\x83\x48\x05\x21\xc6\x07\x8d\x5d\xb2\xf9\x30\xcd\x8a\x09\x15\xb1\xa3\x7f\x80\xf5\xf9\x68\x7a\x24\xaf\xed\x63\x58\x62\xc7\x95\x4a\x27\xb2\x6a\x60\x7a\xe2\x6b\xc7\xd3\x9c\x81\xd3\x27\x14\x3a\x1d\x57\x51\xab\x7e\x4f\x52\x47\xe3\xeb\xe4\x35\xea\x70\xa0\x75\x88\xb4\xd1\xf7\x02\x9f\x4f\xfa\x9e\x7a\x90\x30\x36\x79\x1e\x85\x38\x04\x84\xda\xc2\x77\x91\x5d\x09\x7e\xf9\x71\xa9\xf1\xd1\x6c\x6e\xdf\x1c\x09\xe5\x15\x9f\x8c\x41\xed\x98\x74\x08\xbc\x74\x14\x42\x53\x00\x7b\x6f\x4d\x75\x58\xac\x05\x9e\xd9\x7b\x76\x1e\x88\x57\x7c\xfe\xb7\x4b\xef\xf5\xff\x76\x03\x35\x77\x35\x36\x69\x26\x5d\xee\xf0\x6c\x4f\x69\xc4\xd0\xa9\x5a\x18\xd8\xb5\x80\x06\xc1\x35\xfc\x5c\xe5\x8f\x3e\xa3\x2c\x30\xc6\xe6\x7f\x51\xa8\xf2\x7e\xd4\xeb\x2f\x1a\x38\xd1\x38\x2c\x74\x65\xe3\x9e\x8a\x17\xec\xc0\x6e\xf7\x01\x33\x97\xe8\x45\x5c\x91\x4c\x1a\x0b\xcc\x82\xf7\x10\x01\x22\x54\x6d\xe1\x45\xec\xec\xa8\xc5\xfa\xa0\x54\x30\xf7\xab\x74\x70\x60\x33\x9e\x73\xb8\xa5\xd9\x34\x19\xe5\x72\xd4\xe3\x8c\xb8\xab\xa1\x81\x77\x03\xaf\xc8\x64\x73\x9b\x14\x2c\xe6\xf3\x9a\x66\xa9\x3f\xe8\x9a\x77\x25\x08\x4d\xa2\x5e\xbf\xa0\xea\xa3\xcf\x0b\xe8\x86\x8c\x53\x9a\x0d\xe9\xae\x66\xc7\xe8\x1b\x6a\x08\x3e\x20\x99\xe5\x6f\x93\xad\xe1\xeb\x26\x79\xc1\xc2\x24\x68\x0d\x92\x1e\xfc\xea\x17\xa5\x98\xb1\x5b\xf5\x4a\xe5\x04\x43\x98\xf0\x58\x8d\x3f\x57\x58\x8d\x3f\x28\xbd\xa4\xc5\x1f\xb8\xec\x18\xa9\xef\xcc\xc6\xce\x9b\x6d\x6a\xd2\xde\xb8\x67\xf6\x4d\xb7\xfb\x36\x1e\xe2\x87\xd8\x31\xa1\x37\x07\x88\x93\x23\x13\xec\x8a\x35\xd7\xb4\x19\x47\x83\xa8\xb0\xdd\x1d\x7a\x34\x31\x46\x38\x1c\x1e\x06\x8a\x71\x0d\xb9\x7a\x0d\xe9\x90\xd4\x05\xad\x17\x11\xa4\x50\xdd\xb4\x17\x75\x59\x08\x64\x77\x30\xdf\x5f\xed\x6c\x24\xbc\x99\x9e\x6e\xe7\x66\x69\x52\xf1\x14\xee\xe8\xd4\x6c\x7a\xf5\x1c\x2c\xf0\xae\x14\x76\x1e\x8e\x25\xfd\xf7\x4e\xb5\xcd\x70\x68\x32\xd9\xd9\xb0\xd5\x60\x1b\xe5\x6b\x35\x3f\xf3\x76\x69\x36\x25\x32\xdb\x7d\x12\xfa\x3e\x20\x87\x80\xaf\x55\xe0\xd7\x1f\x55\x9b\xd5\xf3\x91\x1f\x57\xe9\xca\xe3\xe3\x82\xd9\x07\x66\xbe\xde\xee\x5b\xd3\x7d\x73\x44\xa6\x92\x9d\x68\x2d\x5e\x29\x9e\x85\x8a\xdb\xe3\x62\x27\x8d\x00\x8b\x0b\x68\xe2\xcd\xe3\x94\x5c\x80\x59\x7e\x47\x71\xd0\xdc\x86\x67\x82\x29\x9f\xec\xf8\xda\xe3\x3b\x1a\x67\x75\x87\x93\x23\x35\xce\x2d\x04\x88\x38\x22\x84\x7c\x7d\xa3\x9d\x3a\xb0\xa7\x1d\x0d\x86\x26\xcf\xed\x63\x57\x7b\xad\x3d\xdc\x66\x48\x64\xb8\xda\x9c\xce\x3b\x7d\x4d\xb5\x0a\x0d\x33\xb3\x60\x93\x22\x8b\x42\x12\xc7\x52\x29\xe7\x55\x45\x47\xbc\x3a\x16\x19\xed\xdf\xdf\xee\xa5\x0b\x36\x4b\x52\xfe\x90\x4b\x59\xba\x34\xdc\x07\x35\x8e\x84\x9c\x8a\x80\x79\xcb\xcb\xe7\xde\xa3\xcd\x2d\xf4\xc0\x22\x2d\x97\xd8\x51\x96\xe6\x61\x64\x89\xf1\x1f\x6e\x8d\xe0\x17\x14\xb3\xc9\x71\xd7\x76\x34\x9f\xa4\x8b\x82\xc0\x61\x71\x6e\x1a\x17\x11\xea\x7e\x5e\x29\x87\x46\xbd\xfe\x6c\x9a\xf5\xd3\xb4\xab\x34\xec\xd9\x5d\xe2\x9b\x26\xc4\x53\xd8\xaf\x02\xb0\x09\xef\x63\xff\x19\x4d\x16\x5c\x8b\xe3\x08\xcb\xb1\x02\x4f\x29\x3c\x93\x4d\x8a\xfe\x28\x8f\x4c\x3e\x40\x36\x0e\x5b\xf6\x74\xa0\x20\x59\xa7\x9b\xa8\x21\xba\x36\xa7\x56\x46\xd4\x0c\xe0\xdf\xae\x29\x25\xb4\x35\x95\x15\x1d\xc6\x26\x49\x6c\x77\xbb\x07\xb9\x33\x57\xb5\x33\xfb\x0a\x08\xa4\x32\xe1\x0c\xa8\x80\xa7\xc2\x8e\xb8\xd3\xc2\xab\x7c\x3d\x44\x2f\x77\x94\xb6\xe9\xae\x31\x15\x92\x7d\xd3\x55\x7c\x90\x0f\x6d\x58\x08\x45\x31\x7c\xce\x2b\xaa\x5b\xeb\x8a\xda\xbb\x83\xb4\x6b\x63\x52\xef\xc2\x6f\x01\xc4\x07\x8b\xf5\x57\xb0\x58\x18\xc6\x3b\x08\xf3\x84\x21\xa4\x7a\x08\xc4\x26\x97\xb5\x02\xc3\xf1\x06\x6d\xce\xb6\x29\x28\x59\x2f\x0f\x24\x1a\xe5\xb5\xc2\x8a\xf7\xdc\xbc\xd8\x17\x8d\x07\xcc\xdc\x0d\x1a\x35\xbe\x7e\x2c\x19\x60\x31\xca\x92\x6a\x07\x4c\xd0\x78\xc9\x5a\xf0\x16\x81\x27\x5a\xde\xae\xa1\xeb\xa9\x6b\x46\xbd\xbe\x37\x4a\xcc\x06\xaa\x34\x6c\xaf\x2a\xe7\xe0\x9f\x7e\xf3\x9b\xb4\x00\x61\x61\xae\x05\x1e\x21\xc7\x69\x4a\x06\x41\x6b\xd1\x97\x51\x3e\x6b\xa8\xdf\xe3\x88\xcb\xa6\x5c\x09\x34\x21\xf5\x18\x7a\xc8\xcb\x0e\xc4\x39\x8b\x4d\x21\xf9\xc4\x03\xcf\x37\x8d\x4c\x1b\x59\x3a\x67\xf3\x3c\xcd\x30\x94\x1a\x9f\xc2\xd7\xc1\x73\x1b\x3b\x38\xa7\xda\xaf\xbf\xbe\xc3\xf7\xcc\xde\x0e\x54\x23\x0e\x50\xd1\x92\x8e\xa6\x11\x42\x16\xf8\x1d\xce\x95\x70\x67\x60\xe9\x47\xe5\x14\xf1\x20\x71\xa7\x27\xce\x4c\xa5\x55\x26\xfc\x36\xc7\x4a\x1d\xb4\x2c\xda\xa7\x54\x4c\xb9\xa5\xa3\xd0\x86\x0f\xe9\x09\xc4\x3d\xae\xec\x3e\x02\xf4\x3f\xa3\xca\xb9\x88\x7a\x6a\x3e\xda\xfb\x3e\xc5\xbc\xb2\x1b\x64\x87\xf2\x11\x2f\xc4\x79\x75\xb7\xc2\x22\x1d\x2f\x3d\x67\xfb\x66\x6c\x5d\x54\x1a\x1f\x50\x76\x01\xde\xed\x59\x44\xf1\x48\x2f\x4c\x76\x1c\xda\x33\x35\x03\x9a\x22\xf6\x04\x03\xef\x6e\x9d\x1e\x3b\x90\x67\x5e\x3d\xd8\x1e\xa6\x69\x66\x25\x01\xe6\x5a\x96\x15\x73\xdb\x6e\x95\xcb\xea\xda\x3c\xea\x31\xcb\x01\xd6\x16\x0a\x64\x7c\x5d\x23\xf9\x48\x47\x30\xa8\xd8\xd6\xf0\xf5\xf8\xba\x51\x01\x2d\x8e\x16\xa2\xa4\x47\xeb\xd9\x75\x6b\x56\xe3\xa3\xa0\x24\x42\xad\x30\x0e\x41\xd8\xbf\xbf\x9d\xdb\x70\x94\x59\x05\x41\xb8\xa8\xc4\x34\x2e\xaa\x2d\x40\xbd\xe3\xe9\xdc\x1c\x75\xc9\x73\x41\x28\x50\x3c\x8f\x57\x6b\xaf\x9c\x5b\x93\x85\xfd\x1d\x98\x51\x69\x79\x1b\xeb\x30\x10\xea\x53\xdf\xee\x7b\x45\x97\xa6\xd7\x34\x97\xe8\xbf\x80\x35\xe5\x42\x13\xb9\x34\xd2\x53\x52\xcd\xf5\xfa\x19\x2d\x4f\x6c\xb2\xdd\xf8\x69\x64\x89\x7f\x4e\xe9\x01\xa1\x41\xa0\x45\x8a\xd5\xbc\x65\xd9\x37\xc0\xde\xf8\x45\x02\x1e\xe0\x6d\x40\x4e\xae\xd5\xeb\x28\x12\xf8\xee\xd7\x3a\x7e\x8f\xdc\x47\xe2\x18\xb0\xac\x2f\xe1\x81\x08\x52\xa1\x0a\x60\xe0\xa8\x7c\xae\x00\x2a\x9f\x7f\x15\x78\x06\xa4\x4d\xa0\x1c\x8d\x55\x06\x92\x2a\x27\xba\x7c\x40\x28\x69\x1f\x61\xef\xd1\x4b\xfc\xee\xd3\xcb\x1b\xfd\xf6\xd7\x5f\x6f\x9b\x51\xc2\x58\x56\x80\xda\x4e\x6a\x2d\x91\x93\x63\xac\xb2\xfb\xf7\x1f\x00\x22\xc6\xe6\xd2\x8f\x29\x6d\x37\xf4\x02\x32\xa6\x7e\x30\x07\x11\xb5\x9f\xf9\xde\x75\x87\x39\x3c\xa1\xdb\xbe\xef\x8c\x2d\x4f\xe2\xa6\x24\xd9\xd7\x96\xaa\x11\x02\xc4\x2e\x2a\x52\x5f\x51\x72\x4a\x59\x34\x6f\x27\x7d\xc4\xc2\x24\x3b\x8e\x62\xce\xe3\xed\x2e\xa8\x25\x7a\xb5\x61\x57\xb4\xe7\x4c\x56\xf4\x6d\x36\xa9\x48\xe6\xde\xa6\x41\x05\x3d\xde\x35\x9c\x89\x48\x49\x9d\x28\x7d\x2f\xc0\x07\x4d\x00\xaa\x22\x1b\x71\x2b\xbd\x88\x10\xa9\x0e\xe8\x4b\xea\x04\xe4\xd0\xdd\xc4\x08\x9a\x1d\xe3\x8e\x27\x62\x1a\x9b\x0d\x4a\x20\x25\x5d\x9b\xe5\x45\x9a\x76\x27\x3c\xfc\x84\xdb\xac\x9d\x58\xd5\xf4\x34\x9b\xd5\x2f\x5c\xc8\x49\x4d\x4b\x0c\x9a\x60\x06\x5d\x5d\xad\xbd\xaf\x5a\x65\xba\x76\x68\xb2\xa2\xda\xe7\x0a\x69\x79\x5f\x8b\xe6\xdd\x77\xa2\xad\x45\x34\x44\xc6\x8e\xe5\x00\x03\x4d\x12\x4a\x63\xe5\x08\x43\xf7\x4e\x39\xcd\xc0\x27\xdc\x72\xd9\xf7\xf2\x84\xb7\xc3\xb0\xe2\xa2\x1b\xa7\x0e\xd7\x0b\x63\x04\xa1\xfb\xa6\xdb\xd9\x12\x33\x2b\x37\x31\x3f\x36\x54\x19\xa3\x64\x14\xc1\x39\x47\x9c\xcf\x22\x96\x7c\x33\xe6\x68\x4f\x4f\xcf\xb4\x87\xa3\x2c\x1f\x71\x9c\xbe\x7e\x86\xde\x6d\x5d\xb3\x7a\xce\xda\xbe\x59\x88\xd2\x6c\xa2\xf5\xf2\x11\xde\x0b\x00\x64\x08\xa7\x74\xf5\x6e\x38\x55\xdf\x2f\x77\xba\xa9\x0f\x9e\x25\xdb\x26\x8e\xb2\x2f\x35\x6e\x03\x43\x2c\x72\xe6\x77\x08\x17\x23\x47\x78\x4d\x12\xcc\xd7\xa6\xce\x60\xc7\x8b\xce\x78\x65\x22\xb0\x38\x5b\x1d\xdd\x82\xfb\x03\x18\x1f\x17\x57\x79\x44\xe0\x24\xf5\x39\xe3\xcc\xb8\xcd\xec\x4f\xc2\x04\xe9\x0b\x86\x0f\x02\x95\x13\x79\x88\x33\x03\xae\xd2\xd3\xcb\x9e\x65\xe5\x11\x6a\xc6\x2c\x81\x1d\x28\xee\xd4\x2f\x34\x86\xc5\x0c\x06\x4b\xbc\xb6\x5c\x92\xa5\xfa\x53\xbe\x51\xc8\xcf\xbc\x30\x83\x21\x82\x4e\xfc\x02\xcb\x8d\xf3\x8d\x4a\xc8\x0e\xd3\xbc\x18\x65\x51\xd2\x03\x93\x3a\x5a\xeb\x7e\x4c\xbb\xb8\xd6\x6b\xc1\xff\x41\x26\x41\xd6\xca\x46\x33\xf9\xab\xed\xb9\xc8\x66\x00\x61\x63\xc8\x1f\xa8\xf3\x67\xa5\xac\x81\x1c\xc6\xd9\x72\x0f\x54\x17\xf3\xb4\xac\xa5\x35\xcc\xe3\xdd\x90\x5d\x94\x0c\x8c\x4e\x70\xf5\x22\xd8\x57\x91\xcf\xf7\x51\xe4\x79\x85\xce\xca\x46\x79\xb1\xa4\xd1\x27\xd7\x31\x33\x7c\xa3\xb8\xdb\x62\xb3\x05\x2b\x00\x5f\xf2\x45\xa9\x60\xe1\x17\xe8\x29\x70\x6c\xb2\xbc\x05\xca\x16\xb7\x68\xcd\xf1\x7f\x04\xcf\x8f\x15\x89\xab\x2f\x04\x12\x04\x7f\xf3\x85\xe2\x3e\x38\xaf\x48\x58\x36\x53\xbf\xbd\x40\xa0\x74\xcf\xf0\x82\xcd\x0a\xcc\x11\x6b\xab\x63\x35\x8b\xd0\x7a\xf5\x31\xa0\xc7\x2e\x53\xd3\x03\x5f\x7b\x99\x06\x22\x35\xac\xf3\x18\xd6\x28\x0e\x1b\x90\xdc\x61\x66\xcd\x00\x79\x40\x14\xe8\x37\xa9\xb6\xfd\x4d\xcb\x35\x05\xd1\xc1\x90\xa6\x1d\xd1\x37\xfe\x0e\x23\xf3\x10\x9b\x06\x29\xc7\x1f\x3b\x16\x5a\x52\x36\x48\x33\xa7\xb9\x88\x26\xad\x0f\x4b\xd5\xb1\xf5\xa1\x7a\xff\x2e\xad\xd1\x5d\xe4\x9b\xb0\x46\xb2\x72\x1e\x41\x3c\x0d\xd8\xac\x88\x82\xc0\x1a\xfe\x6e\xe9\xf9\x2a\xce\x2b\xa6\xae\x4f\x14\x07\x17\x6b\xf7\x60\xf7\x6d\x22\x6e\x7d\x94\x75\x2e\xeb\xf8\xfd\x27\x9a\x5d\xeb\x1c\xc2\x33\xc7\x70\xb9\x4f\x08\x01\x2f\xa9\xaa\xc8\xac\xa9\x0e\x0e\x46\xee\x00\x10\xf3\xa5\x06\xfb\x32\x00\x59\xf4\xa5\x14\x7d\x4e\x96\x2e\xd8\x9c\x3c\x40\x69\x9a\xd0\xcd\x14\x4d\xac\x54\xfd\xcc\x9a\xc2\xf5\xe8\xc0\x2a\xad\x69\xcc\xd7\x9a\xfe\xfe\x34\x8e\x0a\x36\x24\x1c\x6a\x07\xaa\x66\x77\x65\x0c\xcd\xc9\x5a\x16\x95\x3f\x33\x4c\xa3\xa4\x98\x50\x90\xf2\xf5\x5a\x4a\xb5\xf4\x07\xd1\xb6\xce\x57\x5c\x63\xcc\xd1\x22\x72\x72\x8f\xac\x47\xa1\x9a\x2d\x37\xd4\xef\x86\x69\x6e\x62\x48\x8a\x30\x39\x2e\x8c\x97\x63\xca\xdd\xbf\x5f\x38\x01\xc9\x3f\x15\x5e\x00\xdf\xb1\xa5\xc5\x66\xa3\xc1\xd0\x76\x91\x84\x72\x31\x97\x67\x69\x29\x77\x48\xbe\x38\x9f\x54\x08\xeb\x7f\xae\xd5\x10\x4b\x1f\x96\x9f\xd3\x89\xe0\x35\xc5\x22\x40\xbe\x5e\x36\x1a\xa2\x38\xf4\x18\xfa\xac\xe7\x34\x03\x27\xd8\x1f\x84\xa2\x5a\x38\xea\x3c\xb0\xee\xb3\x52\x17\xcc\xbd\x21\x9b\x4d\x47\x8c\x20\x80\xa7\x78\x32\xf0\x95\xcb\x93\xea\x27\xc2\x34\xc9\x47\x83\x61\x11\xa5\xc9\xa4\x6f\x2d\x5e\x0d\x14\xd1\xe5\xe5\x5a\x3a\x4e\xc1\xf2\xbd\xd9\xe8\x66\x66\x91\xd5\x03\x31\x1a\xdc\x00\x8d\x06\xd6\x87\x34\xe6\x58\xda\x67\xc7\x5c\x0d\x64\x86\x5a\xbe\xce\xfc\x85\x66\xf2\xfb\x42\xa5\xd1\x07\xa4\xba\xbf\x8b\xac\x1b\x9c\xf6\xcd\x1d\x1f\x7e\x26\x57\x75\xeb\xd6\x99\x1a\xd7\x11\x37\x60\xe8\x9c\x13\x0c\xec\xf9\x52\x11\x63\x7d\x41\xcf\x29\x6c\xb8\xda\x0b\x50\x25\xe9\x75\x5a\x4c\x4c\xab\xa5\x9b\x50\x7f\x57\x31\xe3\x6c\x5e\x6e\x48\x8b\x84\xe9\x60\x68\x0b\x37\x97\x08\x09\xb0\xcc\x24\xf6\xf4\xc0\xe2\xdb\xaa\x0a\xb5\xd8\x4f\xed\x82\xe5\x7c\x24\x22\x91\x2d\xcb\x0a\x5e\xbc\xa5\xe3\x03\xc3\xdc\x14\xa3\xac\x6b\x18\x4f\xc8\x94\x0e\xf4\x1b\xe2\x95\xf9\x83\xef\x76\x5d\x16\xf8\x71\x09\x21\x7b\x34\xb4\xd9\xb0\x60\xf4\x05\x9a\x9d\xef\x29\xe4\x13\x27\x21\x10\x32\x9e\xac\x83\xd1\x67\x2d\x0e\x53\xe6\x93\xd6\x14\xc6\x1a\x72\x6c\xf2\x1c\xa2\x8e\x53\x87\xd8\x0a\x6f\xee\xa8\x76\xf8\xcb\x34\x31\xc8\xdb\xdf\x6e\x90\xe0\x9c\x6a\x9b\xa4\x97\x2d\x4d\xd4\xdd\x55\x47\x8f\xfb\x50\x21\x48\xc7\xe1\x60\x2f\xb6\xf3\xc2\x0e\x87\x02\xaf\x65\xdc\x6f\xa9\xd4\x40\xaf\x07\x4f\xaa\xce\x9a\x82\x38\xd6\x44\x58\x0e\xab\x0c\x16\xf1\x82\xe2\x33\xbe\xa8\x8b\xad\x17\x1a\xf2\x4a\x07\x69\x3d\x44\x4e\x8d\x00\xc6\xe2\x23\x75\xc8\x7f\x54\x3e\xeb\xca\x9c\x73\x69\x36\x18\xc5\x5e\x90\x56\x20\xc6\xba\xcb\x4a\x31\x51\x2d\xf6\x6d\xf2\x55\x2f\xd0\xb2\x15\x6d\x7d\x42\x9e\xd8\xfa\xd6\xaf\xb9\x8c\xb2\x9a\x90\xd5\x52\x6f\xa6\x60\xf3\xd7\xfd\x6b\xb9\xfe\xda\xb3\x54\x26\x60\xda\x6d\xd5\xb6\xb1\x69\xb9\xe5\x2a\x77\xbb\x50\xad\x43\xca\x7f\x07\x08\x36\x90\xe1\xfa\xbf\x81\x4c\x41\x02\xf5\x4b\x9d\x14\x7b\x1f\x7e\xb6\xe8\xb4\x57\xeb\x40\x18\xb2\x15\xf1\xc7\xfb\x81\x87\x89\xac\x05\x8a\xd9\xf4\xb8\xae\x2a\x1d\x25\x67\x1e\x60\xb0\x16\x23\xf7\x45\x2e\x42\x33\x26\xda\xa1\x08\x03\xc1\xd5\xbe\xa6\xfd\x76\x54\x74\xa4\x14\x43\xc3\xc7\x7f\x15\xf8\x12\x68\xb8\x14\xc6\xe4\x13\x57\xcf\x0e\x6f\xe4\x0e\x4e\x53\xbe\x51\xca\xa4\xe0\xa1\x10\xe6\x85\xdd\x5a\xcf\xd4\x54\x67\xcf\x56\xef\x33\xb1\x5e\x9d\x13\x86\xf3\x72\x2e\x41\x8d\x7e\x8d\x7e\x89\xff\x2a\x50\xca\x33\xc7\x1d\x61\xf2\x6c\x66\x2d\x91\xcf\x60\x14\x84\xb8\x49\xcd\xcf\x05\xad\x23\xfd\xde\x58\x76\xed\xf0\x9e\x99\x76\x6e\xe3\x58\xc0\x0c\x30\xca\x9c\xc8\xe2\x9b\x26\x72\x1d\x0a\xa3\x07\x51\x22\xeb\x15\x07\xf1\x9d\x40\x51\xba\xdc\xd1\x5c\x37\x26\x09\x2d\x64\x01\xd6\x89\xba\xe0\xe0\xfa\xb5\xb1\xf0\x9c\x70\xf0\x79\x9e\x86\x51\xb5\x0f\x34\x33\x13\x1c\x1f\xd8\x31\x46\x29\x49\x49\x78\x97\x8a\x8b\xe6\x38\xa0\x15\x60\xa8\x6f\x28\x1a\xaf\x03\xed\x9b\x6e\x9b\xe1\x30\x36\xa3\x2e\xf2\x2d\xa2\xa7\xec\x03\x9b\x4f\x91\x04\xc1\x7f\xdc\x0e\x9e\x73\x2f\x63\x93\xb9\x34\x0b\x89\x2a\x68\xb2\xce\x9c\xe1\x79\x50\x15\x01\xe0\x99\xa0\xd6\xc6\xa1\xea\x2c\xdd\x11\xda\xb0\x0d\xfa\xc6\x91\x44\x3a\xab\x33\x4a\x67\xb1\x20\x98\xe9\x04\x4b\x4f\x68\x4f\xfc\x32\x8d\xad\xa9\x16\x01\x34\xbf\x5c\xcb\x41\x35\x7c\x88\xb2\x00\xc3\x80\xa9\xbd\x46\xb0\x22\xa6\x7c\x0a\x54\x46\xe9\x1e\xb9\xc8\xc2\x05\xe5\x81\xc1\xac\x52\x85\x93\xfe\x4c\xcd\x3d\x8d\x42\x9b\x3f\xeb\xf9\x4f\xff\x53\xa9\x1a\x9d\x1f\xa0\xc9\x08\x1f\x63\xd0\x27\x0a\x3d\x57\x4a\x2f\x63\x7a\x8b\x9e\x06\x1f\x3f\xab\x18\xe2\x3f\xa8\x29\xd3\x5d\xd4\x07\x3a\xa6\x5f\x20\x5c\x2a\xbd\x7e\xb9\x54\xd5\x20\x1c\xf5\x60\x22\x65\xb2\x15\x64\x05\x96\x55\x19\x9c\xdb\xca\x51\xd6\xfd\x38\xf0\x68\xe4\xdb\x98\x03\xfc\xc7\x13\x38\x8a\x61\xb3\xc7\xd9\x63\x5f\x6c\xf7\xb2\x94\x9d\xa3\xf5\x7b\x81\xa7\xa6\x63\x32\x71\xa1\xbf\x6b\x40\x70\x98\x3c\x1f\xb9\xb6\x0f\x6e\x2c\x0e\x74\x93\xf1\xc6\xdf\x9a\x9e\x6e\xbf\x50\x44\x2c\xaf\x81\x5f\x59\x2b\xbd\x2e\xe8\x9a\x3a\x71\xbb\x66\x30\x74\x8d\x16\xae\xa8\xe6\xc5\x79\xc7\x12\x79\x8e\x9e\x36\xdf\xa6\x2a\x2d\x93\xcb\x9e\x08\x17\x58\x3b\xc7\xdf\x5e\xcf\xa0\xae\x9f\xf0\xe1\xcf\x22\xf2\xb9\x52\xf6\xf7\xc9\xcd\x57\xbf\x75\x70\x52\x1d\x9b\x3f\xd7\x3d\x17\xb0\x83\x58\xf6\x60\xff\xc6\xbf\x7f\xaa\x55\x60\xa2\x62\x0e\xba\x1e\xd5\x1a\x90\x38\x97\x5e\x51\x05\xba\x82\xea\x4a\x07\x13\xde\x7d\xff\x1d\x75\x98\x71\xa6\x1b\xab\xe3\x7e\x5d\x8f\x2a\x7c\x69\x87\xea\xa9\xfe\x2f\x9e\xeb\x28\x12\xa3\x5b\x14\x39\x22\x84\x45\x38\xe0\x84\x3a\x1d\xd9\xf4\x77\xd0\x48\x81\x85\xbb\x1d\xa5\x14\x96\x8a\x0a\xbc\x76\x3d\x27\xde\xe1\x8a\x7e\xa9\x00\x05\xb1\x5d\xec\x26\x96\xb1\x4b\x12\xc5\x78\xb8\xe9\x8a\xa3\xf5\x1a\x58\xc3\xed\x27\x4e\xe7\xcd\x21\x2a\x4e\x29\x8d\x88\x2a\xc0\x9e\x1d\x45\x71\xd1\x52\x87\x18\x9b\x24\xbe\x69\x54\xd1\x9e\x8b\x7a\x23\x56\x3d\xaf\x6c\x75\xf5\xf7\xeb\xd7\xd4\xe8\x16\x89\xd9\xd2\xda\xc8\x5b\x0c\x73\x73\x8b\x1e\x05\xa3\x8b\xa4\x1f\x2f\x05\x90\xe6\x08\xeb\xf1\xc6\x05\x38\x75\xa8\x3d\x30\x59\x94\x38\xee\x50\xa7\xea\x5c\x7d\x83\x4b\xd4\x4e\x3b\xad\xc4\xf7\x74\xd3\x60\x3f\x0d\x99\xb0\xda\x15\x1e\xaa\x8f\x09\x33\x73\x43\x6f\x67\x98\x26\x73\x51\x36\x60\xb7\xd7\xc9\x79\x79\xf5\x96\x55\x8d\x3a\x5f\x73\x8a\x31\xc9\xd2\xa8\xa5\x34\xee\xb9\x05\x44\x58\xba\x04\x84\x13\x25\xf6\x68\x9a\x91\x9e\x36\x99\x25\x7c\xe5\x79\x45\x1b\x74\xde\x21\x01\xe8\x38\xe1\xf0\xca\x31\x56\x57\x0f\x05\x8b\xc5\xca\xf5\x72\xaa\x89\xd3\x18\x9a\xc2\xe4\x45\x96\x0e\xfb\x51\x38\xa9\x42\x87\x0b\xaa\x3d\x13\x1b\x09\x8b\x91\x81\x8d\x22\x10\xda\x40\xf0\xc1\xad\x4a\x8a\x95\x09\x11\x0b\x5f\xeb\xf2\xc1\x7c\x24\x1a\xed\x92\x97\xa3\xb7\xd4\x94\xd3\x68\x6a\xb9\xa5\xa8\x9c\x08\xf4\x44\x6f\x29\x8d\x4a\xf4\xd8\x22\x3c\xbd\x5b\xb1\x85\xa7\xbd\xcc\xe6\xf9\x0e\xda\x7c\x8e\x8d\xd6\xc1\x71\x7f\x82\x93\x86\x21\x43\xe4\x0e\x72\xf9\x87\xf6\x98\x94\x82\x3c\x57\xf2\x59\xdd\x8e\xf1\x7e\xe9\x9b\xf8\xee\x05\x1e\xe2\x7a\xd5\x91\x08\xcf\xa6\x59\x96\x2e\x92\xf5\xd0\x91\xa3\xe4\x2c\xab\xef\x15\x81\x9f\x9a\xf1\x48\xb3\x9d\x9a\x90\xe1\x0f\x94\x06\xfc\x23\x9c\x06\xac\xf9\x8b\x63\x5d\x40\x33\x0a\xb4\x37\xd1\x51\xed\x59\xf4\x6c\x58\x03\x17\xb1\x06\x04\xe8\x59\xbd\x00\xb3\xa7\x6a\x5b\xf6\x78\x39\x7e\xa6\x7d\xc9\x01\x6a\x72\xf4\x94\x6e\x71\x5c\x6d\x82\x8f\x0c\x33\x3b\x67\x99\xb3\xde\xc9\x88\x79\x49\xb1\x1a\x8e\x32\xcd\xa3\xa4\xb7\xad\x7a\x60\x64\x2d\xb7\x80\xed\x01\x7f\x7a\x8d\x8e\x7c\x64\xcf\xd1\xdb\xce\x49\x55\x25\x29\xf6\xdb\x5a\x71\x76\xf3\xb2\x72\x18\xbe\x54\xb5\xc6\x64\x64\x77\xb6\x1c\xed\x3d\xab\x43\xcb\xbc\xd0\x38\xe2\xd0\x66\x1a\x55\x7c\xf5\xd9\xd2\x77\x69\x3f\xc2\x42\xa5\xbd\x94\x3e\x43\xb6\x1a\x03\x39\x89\x8c\x86\xa8\x79\xf9\x4a\xc0\x04\x57\x02\xe0\x26\xb5\x96\xc7\x5d\xe8\x76\x37\x32\xf1\x52\x1e\xe5\x3a\x85\x49\x07\xb9\xa4\x33\xfd\x0b\x74\x33\x33\xa1\x3c\x72\x94\x6c\x24\x14\x6a\xb9\x06\xf6\x15\x25\x59\xd2\x8b\x16\x6c\x4e\xac\x7c\xe2\xa4\x2a\xb8\xea\x05\x9d\x8a\x42\x77\x05\x8e\xc2\x6b\xa8\xe0\x3a\xd5\x4e\x27\xe9\x71\x8b\xf6\x0b\x10\x8d\x3f\x1c\x6b\xa7\xde\x37\x4d\x34\xc7\x80\xdd\x16\x62\x8a\x99\xe9\x57\x1b\x73\xce\x81\x01\x3f\xb0\x52\x3e\xa7\xb0\xf4\x85\xcd\x8a\x45\x89\x0d\xa4\x3b\x8e\x49\x8e\xf9\xa6\x29\xa6\xc8\x8b\x6c\xc4\x1c\xbc\x2d\xa7\x6b\xfb\x9b\x81\xc2\x9a\xfd\x66\x13\xbe\x2c\x19\x65\xb9\x4b\xba\x08\x3e\xc4\x83\x89\xd1\xb5\x2c\x64\xce\x7a\xc9\x5a\x43\x3f\x75\x40\x92\xf7\x27\x68\x60\xf8\x5a\x11\x7e\xf5\xd3\xbc\x50\x0e\xfa\xed\x40\xb9\x04\xa0\x55\x84\xe1\xfd\x88\x7e\x09\x73\xf9\x9e\xe2\x6a\x9a\x8b\x8a\xea\x48\xdf\x46\x83\x21\x11\x60\xf5\xa7\x08\xb3\x37\x75\x14\x38\xf1\x8f\x4b\x85\x98\xe0\x0a\x9b\x90\x95\x79\x0e\xcf\x15\x76\x8f\xf1\xb6\x17\xc6\x8a\x28\x7b\xf7\xb6\xfb\x69\x96\x5b\xd0\x43\x39\x34\x92\x5b\x69\x27\xc6\xce\xc3\x2a\x0e\xcc\xa2\x6e\xd7\xa5\x2b\xb0\x56\x00\xba\xe4\xeb\x8e\x6a\x6f\xb1\xd9\x20\x47\xe3\xba\x50\x21\x29\x2e\xfd\x13\xaa\x62\x0c\xfe\x1d\xe4\x59\x6e\x23\x3d\x80\x04\xc4\xbf\xc1\xfa\x44\xed\xe3\x0b\x45\xe3\x04\x9c\x3e\xff\xfb\x58\x3d\x82\x3a\x9b\xc2\x34\xeb\x4e\x78\x0d\xf3\x3f\x2f\x7d\x8f\xd3\x35\x85\xf4\x1e\x37\x6a\x87\xf7\xb4\x7b\x69\x51\xd8\x44\x67\xad\xd0\xb4\x25\x39\x92\xb1\x73\x91\xf8\xf2\x07\x51\xc8\x4c\xa8\x38\x81\xb8\x23\x8d\x6f\x02\x4f\x7f\x62\xb2\x81\x6e\xf5\x45\x9a\x8a\x61\x93\x81\xaf\x5d\x5d\xd1\x4c\xa1\x57\xc6\xcc\xf6\xaf\x4f\xb5\xf3\x68\x30\x8a\x0b\x93\x58\x52\xcd\x50\xc4\x4b\x80\x44\xf3\x75\xc3\x44\x4e\x89\x74\xe4\xa4\xef\xf8\xbb\xa6\x9b\x1a\xbe\x47\xb5\x64\x24\x8b\x38\x9d\x31\x8e\x6c\x2d\x6c\x6c\x33\x11\x9b\xc5\x70\xfe\xa1\x26\x62\xf8\xc3\x1a\x97\xc9\xd0\xb2\x10\x93\xb0\x1c\xd0\xf0\xb2\x36\x82\xe2\xd1\xbb\x55\xcb\x1e\x66\x71\x77\xbb\xa2\xab\xbb\xc5\xc9\x36\x04\x33\xcc\x05\xec\xfa\x87\x5c\xe8\xf2\x7b\x38\x0a\x45\x95\x6c\x2c\x91\x2d\xa2\xfe\xf4\x3c\x70\x5d\xd6\x1a\xa9\x5a\xfa\xa6\x97\xb7\xa8\xcb\x49\x48\x7e\x69\x4e\xf9\xa6\x81\x87\xb4\xf2\x8a\x93\x6e\xcb\xb7\x1f\x1e\x0b\x7c\xcb\xe3\xb1\x31\x37\xfa\x57\x39\xf9\xee\xf3\x33\xa2\x28\xa1\xbc\xb5\x9b\x5a\x60\xe9\x63\xc5\x7b\xd2\x8f\xba\x5d\x59\xa7\x1c\xa9\xc0\x82\x4a\xd8\x32\xfe\x7c\xec\x05\x57\x43\xc5\x94\x08\x35\xb6\x2c\xf1\x6e\x72\xb3\xe0\xec\x25\x4e\x7f\x34\x02\xb3\x3e\x1f\xad\x58\xd8\xce\x87\x2a\xe5\x58\xd0\x68\x55\x4f\x83\xf3\xf2\x33\x3c\x0d\xdf\xa8\x6e\xc2\x74\x96\x95\x5e\xb6\x28\x21\xd1\xbf\x0a\x14\xc2\x02\xa1\x1e\xea\x74\x9c\x32\x62\xa5\x41\x3a\x76\x91\xc5\x3f\x39\xb6\x79\x8f\xcc\x10\xd0\x5e\xa0\xfc\x4a\x21\xd6\x73\x12\x35\x10\x97\x99\x98\x40\xc5\x0e\xfc\xc3\x3a\x93\x92\x2e\xf6\x76\x7a\x21\xb2\x8b\x36\xcb\xb7\x2a\x26\x84\x73\xaa\x07\x8c\x29\xaf\x30\x53\xf7\xe1\x46\xf0\x4d\xe0\x55\xfc\xce\xab\x54\xf6\xf9\x26\xb4\x8c\x3d\x3a\x8c\xb2\x0d\x41\x7f\xa9\xd0\x01\xff\x93\x0b\xf1\x62\x6b\xa4\x92\x27\x2a\x2d\x35\x5d\x97\x8d\xe3\x73\x60\x0f\x47\x6d\x9a\x5c\x98\x36\x8e\x10\x0d\x6f\x3c\x74\xa7\x0e\xb5\x33\x6b\xf2\x9c\xaa\xaa\x13\x2d\xa5\xce\x46\x63\x00\xeb\x7a\x4f\xa1\xe7\xaa\x33\x80\xe3\xcf\x34\x4b\xdc\x2a\xd2\xbf\x85\xb2\xd5\x26\x70\x13\xe1\xd8\xbd\x56\xfe\xa2\x4f\x9e\x1d\x1d\xda\x2c\x1a\x80\x8b\x29\x05\x31\xb5\x58\x6b\x1a\x12\xe4\xc9\x98\x27\x12\x76\x69\x9c\x69\xe9\xf0\x9e\x76\xd1\x27\x16\x8c\x6f\xfe\x06\xa7\x9b\xdf\x25\xb3\xc8\xd7\xc1\x46\xf6\x43\x57\xeb\x48\x16\xa2\x2c\x4d\xe8\xf7\x41\xff\xa0\x3d\x51\xb8\xea\xef\x6b\xd0\xe5\x8f\xd5\x02\x49\x6c\xb1\x98\x66\xa0\x2c\x85\x5d\x62\x06\x75\xac\xa5\x63\x38\xd1\x54\xb5\xe8\x4b\xa4\x8e\x60\xde\x40\xfc\x23\x70\x6b\x45\x13\xff\x29\xd6\x12\x22\xd0\xcf\xc8\x09\xa9\xf5\x3d\xe2\x84\x3d\xa5\x8c\xf3\xd0\x66\xf9\xc8\x74\x2d\xc2\x3e\x1e\x3e\xda\xeb\x88\x70\xae\xd3\x82\xe4\x6b\xc5\x2b\xa8\x73\x31\xdd\x7e\x34\xa1\xea\xda\x62\x7c\x71\x82\x7f\xa8\x08\xc9\xc6\x8f\x44\x56\x90\x71\xd3\xef\xb4\xdd\xf7\xef\xe7\x73\x7b\xa2\xe3\xe1\xf4\xdb\x94\x30\x53\x66\xe2\x5d\xf4\xb2\xc8\x0b\xb2\x08\xb9\x74\x80\xa9\xee\xa9\xaf\xd4\x58\x7e\x4f\x2a\x2e\xc8\x35\xad\xdc\x78\x99\xa0\x7f\x18\xd3\xfb\xa5\x4b\x60\xff\xe6\x3f\xec\xa8\x6c\xc7\xe7\xda\xa7\xfa\x0a\x25\xb4\x90\xa5\x6d\x11\xf6\x06\xa0\xaa\x9d\xcb\xad\x97\x8f\xb8\x08\x5a\xf2\xeb\xae\x8f\xb0\xe5\xd9\x03\x02\xc5\x2a\xa0\x9b\xa0\xbe\x01\xf7\x1f\x1b\xe5\x7d\x55\xf6\x7b\x5f\x31\x79\xd8\xa4\x17\x25\xd6\x66\x92\xdf\xc6\x7a\x05\xe5\xb0\xeb\x68\x75\xee\xb9\xd6\x09\x48\x47\x59\x6e\xe3\x05\x9b\x4f\xfa\x0a\xcd\x47\x30\x7e\x7c\x53\xfa\x07\x63\xe7\x9c\x6f\x5c\x8f\x82\xe9\x2e\xd8\xac\x88\x72\x3b\x90\xf6\x16\xc4\x51\xe7\x95\x0a\xde\x79\xd5\xc5\x6c\xb2\x81\xc5\x79\x27\xa0\x0a\x6f\xb8\x2f\xd6\x8e\xf2\xd1\x10\x56\x87\x2b\x10\x8a\x89\xf0\x64\x93\x68\xe0\x9c\x35\x85\x4b\x2f\x79\xee\x23\xcd\x4d\xd9\x80\xd4\x46\x29\xc5\xf5\x35\x31\xa2\x50\x51\x91\x57\x5e\xbb\x73\xc4\xe2\x22\xa5\x12\x7c\x6d\x53\xf3\xcd\x58\x16\x77\xff\xfe\x76\x98\xc6\xdd\x09\xd5\xfa\x18\x28\xfe\xff\xcf\xd4\xa1\xb8\xac\xb2\x6b\x04\x53\x48\x44\x32\xc8\xa1\x88\x3d\xa2\xd8\xe5\x78\xba\x76\x21\x2d\x18\x9a\x29\x4c\xe7\x2d\x47\x1e\x73\xbe\x36\x98\x3d\xc3\x8c\x14\x0c\x89\x2b\x15\x33\x2e\x94\x50\x71\x54\x3f\x54\x0c\x5a\x7f\xa3\x4e\xe0\xd9\x74\x30\x6b\xb2\x2e\x05\x37\x7b\x9a\x39\x88\x14\x1d\xc1\x62\x62\xb3\xbc\x1f\x0d\x27\xfd\x63\xc3\x1a\x02\xaf\xf0\x1f\xc9\x14\xc0\xc1\xfa\x67\x68\xe0\x13\xc4\xbe\xf6\x00\xcd\xd0\x3e\x41\x94\x04\x92\xe4\x27\x57\x9f\x6f\xb4\xdc\xcb\x1a\xbe\x03\x69\x71\xe6\x69\xc6\x89\x76\x53\xd7\x37\xd6\x74\xd1\x59\x58\xce\xf8\x4e\x51\x7a\xb2\xba\x00\x8c\xc6\xcf\xd4\xd9\xbb\xd6\x08\x48\x1c\x98\x6c\x31\x0a\xe7\x19\x00\x25\x6c\x9b\xf4\x4b\x7c\xa3\x94\xd4\x4c\x92\x58\x64\x9a\x99\x21\x06\x2b\x42\xe8\x62\x94\x29\xb5\xf1\x76\xfa\x3b\x18\xa2\xab\x64\x94\x90\xb7\x39\xa7\x19\xde\x4e\xd0\xca\x00\x54\xab\xb5\xac\x62\xe9\x9f\x68\x2a\xd7\x77\x15\xfe\x74\x33\x11\xc1\xe2\x78\x6d\x8d\xa9\x0a\x4e\x4f\xb7\x17\xb3\x88\xf5\x2d\xf8\xf7\x02\x8f\x70\x39\xd7\x10\xfe\xbc\xd6\xa6\x8e\xdf\x96\xca\xb5\x00\xcc\xc7\xd7\x0e\x98\x45\xcc\xdf\x45\xdf\xbe\x39\xd2\x0d\x32\x60\x70\xe4\x6b\xe7\xa8\xf4\x46\x51\xd7\x6e\x51\x55\x2e\xa6\x05\xd0\xc6\x1b\xab\x14\xa9\x37\xd6\xc5\x20\x26\x19\xc4\xc3\x3f\x6c\xc8\x41\x1f\xac\x8e\xb9\x28\xed\x72\xdc\xe5\xb8\x42\x7d\x5a\x77\x9c\x4a\x6b\xdf\x74\x7b\x94\xbc\x31\xe2\x34\x17\xb6\x0f\xfb\x7b\x7c\xa3\x20\x41\x85\xa9\xce\x51\x4a\x00\x38\x68\xfc\x81\x3d\x72\x3d\x76\xea\xed\x9b\x6e\x27\xb6\x17\xdb\x10\xf4\x2d\xa2\xcd\x52\x83\x5e\x28\x69\x96\x6a\x0d\x88\x8f\xe9\x97\x4a\x9a\x0e\x76\x54\xff\xe3\xf8\x49\xab\x57\x13\xea\x6e\x0f\x98\xdc\x84\xd5\x01\xdf\xe4\x69\xc0\xd8\xb1\x49\x6e\x53\x1a\x00\x81\xdc\x55\x7a\x5e\xac\x47\xd8\x05\x7a\xa8\xe7\xff\x1e\x4e\x3f\x61\x08\x94\x84\xb1\xc9\xc2\x7e\x54\x58\x4a\xb1\xa8\xf6\x8b\x63\x0a\x41\x77\x4c\xa5\x3d\xc2\x74\x60\x9f\x50\xb1\x4e\xa9\x69\x80\x2e\xc3\x43\x64\xdb\x43\x4f\x8e\xfc\xd8\xb7\x03\x45\xe2\xbe\x42\x1b\x12\xb9\x9b\xcd\x1d\x95\xba\x07\x2c\x1d\x8b\xe5\x04\x9c\x00\x49\xae\x54\xa3\x83\x62\xc7\xe7\xaa\xf7\xf7\x8e\x8a\x8c\xf2\x22\x33\xa3\x59\x9c\x01\x72\x60\xd3\x77\x0b\x4b\x9f\xa2\x84\x1d\x65\x49\x3e\xe1\x35\xd5\xd7\x54\x8a\x06\x0f\x87\xbd\x75\x69\xac\x23\xeb\xf5\xd7\xa9\xeb\x2b\x4b\xa2\xb7\xc4\x59\x47\x5c\xf2\xbe\xa2\x6a\x79\xdf\x2b\x29\xf4\x4d\x36\xb4\x99\x6a\xb5\x7b\x08\x3f\x05\x26\x6b\x6b\xc7\x1f\x9c\xd7\x14\xe5\xb5\xe9\xa5\x4f\xd2\x77\xab\xaa\xad\x6b\x72\xa2\x67\x45\x02\x75\x45\x91\x84\x48\xf2\xa7\xe6\xaa\x33\x87\xb4\xf2\x01\x27\x88\xbd\x06\x3e\xc5\x35\x06\x26\x8b\xa7\x48\x53\x24\x28\xf6\x96\xe3\x82\xbc\xaa\x3b\x40\x7e\x47\x91\x0d\xc4\x66\x31\x73\x52\x27\x70\xaa\x18\x14\xc9\x37\x4a\xe0\xda\x2e\xd8\x04\x3b\xc4\x09\x2b\xee\x9d\x92\x6b\x6c\x45\x58\xc0\x7b\xca\x1a\xde\x53\x95\xcb\x30\x0d\xe7\x87\x51\x81\xf9\xc5\xda\xbb\xab\x44\x8b\xee\x3e\x16\xc7\xd4\x4b\xd3\xee\x92\x35\xd9\x84\xef\x71\xbc\xa8\x74\xce\x59\x07\x1b\x0e\xea\xa6\x8e\x7f\x3b\x33\x3b\x4a\xba\x86\x1d\x22\xd1\xf0\x52\xed\x7a\x8d\xb5\xdb\x68\x40\xea\x0a\x64\x7a\x45\x58\xd4\x37\x92\x5c\x51\x84\xb8\xc9\x0b\xc5\x53\xbe\x9a\x77\x23\x50\xb0\x40\x4c\x37\x79\x15\x33\xbf\xd4\xd1\x32\x41\xf4\xf3\xb0\x93\x4f\x52\x0e\x4e\x68\xa3\x6b\x4a\x40\xad\x5f\x9f\xf2\x2c\x32\x2f\x1f\xd1\x52\x6b\xaf\xc9\xfa\x08\x34\x34\x84\xdb\x71\xe0\x4a\x9c\x09\x14\x24\x77\x95\x3b\x7c\xa5\xeb\xdd\xf5\x6a\x99\xcc\x52\xa1\x0f\x8b\x92\x5b\xbd\x60\x5a\xbe\x43\x11\x0d\xef\x26\xb8\xa2\x88\x68\xbe\x5f\x7a\x3f\xea\xbe\xd7\xd9\x4b\x0b\x1b\x73\x99\x0b\xbb\x9a\xf5\x84\xc4\x40\xf8\x0f\xdd\x19\x73\xff\xa8\x21\x7a\x60\xf2\x9c\x1a\x24\x15\x27\x64\xcb\x29\x4d\x5d\x71\x25\xba\x41\x74\x74\xa2\xa5\xb8\x90\xab\xc7\x14\xd8\x93\x62\x52\x19\x87\x9a\x55\x4e\x66\x9a\x3a\x14\x16\x1c\xeb\x0b\xd8\x2f\x7c\xa3\x70\x17\x79\x9c\x2e\x12\x6b\xd2\x81\x3d\x07\x84\xf5\xa5\xf4\x4d\xe3\x9b\x80\xca\xc2\xdb\x4d\x76\xbc\x28\xd1\xe7\xf8\x42\xbe\x69\xca\x59\xd8\xa4\xc8\x90\xf3\x43\x9c\x79\xbb\xf4\x31\xe7\xed\xe0\x19\x07\x1b\xeb\x5a\x40\x3b\xd9\x91\x16\x72\x93\x96\xd2\xb9\xf7\xe7\xdd\x5c\x1c\xf5\xfa\x05\x97\xb7\x61\xa4\x56\x54\x72\x1c\xb1\x14\x57\xc8\x03\xef\x0c\x32\xe9\xbc\x6a\x2b\x39\xc8\x3e\xd6\xf5\xc0\x83\x3f\xae\x28\x81\xc8\xad\x30\xf5\xc8\x55\xdf\x57\x95\x8c\xdc\x0e\x8b\x97\x76\xd2\xcb\x63\x1b\x3e\x0a\x54\x87\xff\x03\xfc\x90\x70\x31\xd1\xfe\x17\x85\x9d\xd6\x06\xad\x0a\xd8\xa8\xf3\x0a\xb3\x71\x41\x35\x8b\x30\xe8\xc9\xf5\xb6\x1e\x16\xbc\xf7\x8d\xb1\x7a\xc7\x8b\xed\x85\xa8\x6b\xd3\x90\xc4\x21\x0a\x0d\x10\xbe\x0a\xdf\x54\xc8\x10\xbc\x7b\x6d\x8f\x0e\x4d\x42\x74\x59\xd5\x1f\x8b\xf4\x76\xcb\xf1\x10\x6d\x5d\xf6\xe4\x0f\x57\x79\xfb\x09\x07\x8a\xe2\x0a\xbb\xe4\xe6\x31\x4a\xba\x76\x68\x93\xae\x4d\x20\x72\xc4\x22\x62\x8a\x87\x85\x2d\xb3\x68\x31\x6f\xb4\x47\xaf\xbf\xde\xce\xdf\x1c\x59\xfb\x16\x7a\xbd\x91\x01\x65\x7d\x2d\x11\x92\xa8\x06\x01\x27\xc3\x03\x85\x70\xab\x02\x41\x12\xe3\x75\x59\xea\x9f\x04\x35\xb4\xfb\x46\x90\xd6\xd4\xa1\x76\x4e\x6f\x1f\xe5\x85\xc9\x27\x35\x23\xfa\x43\xec\x2d\x58\x5b\x98\x6c\x25\xd9\x22\x8c\xed\x93\xcb\x12\x5c\xcf\x65\x69\x52\x44\x36\x6b\x29\x72\xa9\x0d\x4d\x45\x3e\x70\xce\xa3\x41\x14\x9b\x2c\x02\x93\xe6\x6b\x8e\xa0\x85\x00\x16\x8e\xb9\xc5\xb5\x29\x32\x8e\x59\x3c\x40\xff\xc2\x66\x54\xa4\x03\x73\xb4\xa5\xda\x65\x75\x4f\xf2\xb5\x5a\x50\x93\x99\x3e\x87\x0a\x12\xf2\xe8\x8e\xe5\xa6\x06\xcf\xae\x1d\x98\x04\xb5\x09\x9d\x14\xc3\xab\x3f\x0a\xb4\xa0\xab\x82\x2a\x9a\xa4\x87\x3a\xeb\x2b\xa2\x74\xaa\x1a\xcc\x7f\xa6\xfc\x85\x70\x36\xc2\x93\xc3\x49\xbd\x87\xb7\xe4\x9b\xb1\xf4\xde\xe1\x3d\x53\x94\x82\xb6\x49\x3e\x62\x0b\xa1\x37\xab\x38\xd1\xe3\x28\xa3\x99\xb6\xcd\xcc\x84\x7e\xf3\xb3\x2a\x8f\xc8\x82\xdc\x30\xae\x0f\x95\x63\xb6\x90\x46\xa1\xcd\x27\xbd\xab\x03\x26\x23\x01\xa5\x33\x86\xa4\x86\x48\x1d\x6f\xff\x69\x2f\x9a\x05\x49\x0c\x70\x46\xba\x96\x9d\xf6\xe7\x76\x94\xe4\x51\xd7\x66\xf8\x41\x58\x8d\x9f\xea\x4c\xea\x1f\x97\x4a\xf6\xfb\x42\xa9\x54\x90\x6e\x36\x24\xcf\x5f\x69\xe7\x23\xc9\xca\xe0\x1c\xbd\x41\xeb\x42\xbc\x68\xfa\x62\xf1\x58\xfd\x7a\x9a\x8b\xc8\x14\x50\x52\x86\xb9\x75\xf0\xb3\xae\xbb\xc6\xc3\x79\xb9\xc7\x12\xff\xd3\x48\x51\x0e\x20\x70\xcb\x17\x9f\x6f\xa8\x7e\xc9\x1b\x8a\xc3\x7a\xd6\xc4\x6f\x19\x66\x38\x44\xe8\x76\x1a\x40\x5a\xbe\x09\xe4\xfc\x4e\x87\x36\x79\xb2\xf2\x13\x24\x16\xf1\x38\xde\xd3\x2a\x56\x7c\x02\xe2\x56\x2c\x87\x57\xaa\x88\xeb\x23\xa5\xbd\xc4\xa8\xf4\xda\x51\xc0\x3c\x66\xa5\xa7\x17\xd9\x4c\xce\x2e\x2c\xf1\xdf\x43\x5f\x3a\xac\xc9\x3d\x85\xff\xf9\xd1\xc6\xa6\xfa\x03\x7b\x0e\xb4\xf7\xee\x25\x94\x2c\x76\xc8\x7b\x74\x94\xea\xb6\xde\x75\x2e\x63\x21\xab\xf0\x9d\xa0\xee\xf9\x3a\x67\xf9\xf2\xd8\xec\xee\x9b\x6e\xc7\xe9\x12\xab\x3b\xe1\x55\xd8\x15\xe5\x1b\xd5\x58\xd1\xcb\xac\x4d\x28\x46\xc3\x61\x76\x41\x49\xd2\xde\x0d\x14\xe3\xd0\xaa\xe6\xb9\xbe\xc4\x4e\x39\x2c\x11\x44\x36\x71\xbe\xd7\x0a\x1c\xab\x2a\xe7\x73\x53\x43\x14\x6e\x2a\xb6\x09\xd3\xed\xda\xee\x4e\x8f\x84\xfe\xa9\x72\x62\x11\x48\x30\xf7\x22\x9d\x78\xaa\x83\x55\xfa\x01\x77\x62\x83\x62\x36\xb6\x12\xa2\x04\xc9\xcf\x9f\xf2\x53\x22\xfb\xca\xb2\xac\xb0\xb5\x7f\x87\xb7\xc1\x02\xdf\xb9\xac\x16\x78\x9a\x2d\x9a\xac\xbb\xd5\xcf\xe9\x5f\xe1\xb7\x14\xba\xf5\xa0\x43\xb7\x7a\xda\x8d\xef\x2b\xfe\xaa\xbf\x0a\x94\x88\xe4\xf7\x9d\x43\x58\xd8\xf8\x28\xe8\x7b\x25\x43\x82\xb8\x90\xaf\xc7\xdc\xee\xd7\x5f\x6f\x27\x36\x2a\xfa\x55\x9c\xb5\x77\x2f\x7f\x37\x74\x1c\xb9\x9d\xae\x54\x1d\x49\xe7\xd4\x91\x4d\x93\x9a\x0f\x0d\x0b\x89\xa8\x1a\xac\xc8\xf3\x8d\x8b\xc9\x10\xbb\x99\xb5\x03\xa4\x1f\x5c\xdf\x8c\x3f\xe2\x56\x1d\xe3\x52\x9a\x85\x7d\x5b\x85\xa5\xdc\x3d\xc4\xc4\xb7\x68\xe7\x44\x6a\xf2\x2f\x68\x68\x5c\x25\xe0\xe5\x23\xae\x95\xd0\xf7\xea\x8c\x92\xae\xcd\xa3\xcc\xcc\xc6\x16\x89\x75\x6c\x84\x13\x0a\x00\x78\x4f\x25\xd9\xb5\x6f\x97\x59\x1b\x33\x98\x01\x71\xf8\x07\xb4\x6d\xf9\xba\xa9\x54\x94\x99\x28\xe7\xe4\x6e\x0d\x32\xec\xd5\xb1\x7d\xd3\x61\x66\xe9\x44\x63\xa2\x15\xa5\xf6\x3e\x41\xb1\x89\xa0\x43\x1a\x30\xd6\xc3\xd8\xe4\x05\xd5\xce\x3d\xd2\xeb\x8a\xd2\x22\x1e\x67\x0c\x7a\xfd\x75\x6a\x38\x74\x4c\x9e\xae\x25\xea\xb0\x28\x3e\x8e\xb7\x78\x4c\x4f\xb7\x87\x69\xbc\x34\xe4\x9f\x61\xfc\x2d\xfd\x8c\x60\x71\x1f\x0f\x8c\xca\x07\xb6\x7a\x42\xd4\xaf\x81\x74\x85\xe5\xc7\x6b\xfd\x5d\x2d\x71\xaa\xd8\xcc\x2b\xc3\x1f\x9a\x22\x45\x6b\xdf\x2b\x0c\x55\x47\xb7\x3c\x32\xc5\x9f\x28\x03\x7b\xa3\x9e\x2e\x4f\xa4\x09\x53\xb2\x4d\xf4\x23\x92\x86\xf2\xbb\xaf\x30\x59\x34\x37\x97\xc3\x37\x40\xf5\xf4\x86\xe2\xe4\xbb\xd1\x48\x26\x9f\xa5\x23\x49\x35\xc3\x06\xac\x28\x4e\xbe\x15\xd7\x3c\x30\xb0\x26\x29\xa2\x81\x9d\x6c\x29\x26\x8d\x96\x63\x34\x64\x57\x0c\x95\x08\xc8\x0e\x23\x1f\xf5\x54\xc7\x3b\x24\x83\xe8\x28\x1d\xbf\xc8\xda\x3f\x2a\x15\xb4\xe9\x72\x2d\x6d\x4d\x43\xc1\x7f\xe5\x12\x87\x6f\x8e\xd2\xc2\xb4\xea\x20\x60\x07\xfc\xbd\x3a\xd6\x20\x40\xd8\x8f\xe1\x68\x36\x8e\x42\x93\xd4\x39\x96\x2e\x6a\xaf\xf5\x62\xcd\x89\xeb\xa7\x84\xc8\x90\x26\x30\xac\x24\xd1\x80\xa2\x41\xe2\x1b\xc4\x22\x02\x42\x69\x28\x39\x66\xd1\x02\x9f\x21\x70\x16\x51\x7a\xe0\x6b\x2c\x4a\xde\x30\x09\xc1\x17\x09\xda\x2f\x6a\x33\x5c\xf1\xa2\xe5\x21\xd5\xaf\x8d\xbf\x51\xf9\xf1\x85\xb5\xf1\x84\x4f\x30\xa2\x34\xc4\x60\x5a\x0c\x2f\xfc\xa9\x9b\x0a\x8a\xbf\x98\x66\xf3\xd5\x91\xb1\x57\x98\x36\xce\x2b\xe1\xf2\xb3\x81\x62\xc1\x38\x1d\x68\x25\x60\x8c\xa0\x88\x11\xfa\xe4\xce\x43\xd8\x6b\xe9\x2e\x23\x33\x06\x0b\x0f\xee\xab\x5a\x34\x23\x2b\x67\x63\x64\x45\x11\x3b\xb9\xdb\xa9\x63\x35\x42\x16\xe3\x8a\x46\xa2\x56\x51\x3b\x3e\xd8\x7e\xf9\xc8\xb3\x78\x22\x4e\x95\x68\xed\xcb\xd2\xbf\xdc\xaa\x02\x94\xbc\x07\x60\x27\x47\x93\x28\xc0\x72\x3b\x81\x92\x5d\x3e\x5b\x6a\x7e\x11\x0a\x37\x5c\xfc\xe9\xf1\x27\x38\xbd\x90\x74\xf9\x7f\x35\x6f\xc9\x6a\xd9\x7a\xe1\x05\x2f\xc7\xf6\xcd\xdf\x70\x99\x38\x65\x33\xfe\x82\x10\xf1\x30\x37\x57\x28\x1b\x83\xd0\x6d\x7b\x87\xfc\x32\x81\x5c\x6a\xed\x74\xdd\x20\x37\x0a\xab\x38\x6c\x6b\x65\xc0\x9d\x84\x85\xab\x72\x70\x5f\x2e\x8e\x9d\xd6\xb2\x2a\x4c\xb5\x3a\x5e\x82\xf5\x0a\xcd\x0d\x7f\xba\x89\x44\x7a\x68\x72\x86\xe9\x38\xfd\x1f\x87\xe6\x6c\x75\x3c\x66\xeb\xd6\x06\xfc\x78\x98\x0e\xb8\x81\x13\xd9\x3a\xf0\x94\xf1\xb5\x3b\x04\x6d\xd2\xcd\xd2\x30\x13\xfa\x44\x81\xb7\xb4\x14\xff\x88\xe2\xa3\xfb\x58\x53\x79\xa4\xc3\xa5\x2c\xea\xf5\x8b\x09\x6d\x7d\x3c\x84\xef\x4c\xa9\x5a\x7e\xee\xa9\x42\x57\x91\x99\x05\x8b\x0e\x2d\xbf\xc4\x91\x86\xc7\x27\xe1\x8a\x32\x54\x48\x11\x5c\x9c\x6a\x82\xbb\x0e\x4c\x21\x6d\xe8\x52\x0a\xd5\x25\x52\x3f\x26\xb1\x19\x25\x61\xdf\xfd\x2c\x17\xfc\x1b\x1a\xce\x75\x57\x1b\x5f\x2b\x44\xcd\x1b\xe9\x2c\x13\xc2\x0a\x6b\x2c\x59\x79\x61\xfb\xa9\x3e\xc4\x07\x3d\x0d\x22\xce\x97\x2f\xc9\xd1\x16\xce\xd9\x8d\x6f\xf1\x92\x88\xca\xa0\xb4\x8f\x94\xd5\xbb\x65\xad\x47\xae\xf4\x88\xae\xc7\xf4\x60\x15\xac\x9b\xce\xa4\xab\x22\x1d\xa2\x64\x44\x54\xd0\xb7\x68\x8d\xeb\x5d\x95\x65\xa5\x48\xfe\x57\x9b\x9c\xf1\x39\x53\x98\x3e\x56\x22\xb6\xdb\x0f\x95\x74\xd9\x43\xcd\xf4\xb5\x36\xce\x07\x75\x60\xa6\x6d\x16\xb9\xbc\xe9\x3a\xe7\x2e\x61\x89\x08\x67\xcc\x2e\x87\x91\x1f\x39\x01\x5c\x44\x0d\x7f\xa3\x44\x71\x58\x93\x1f\x5e\xc5\x97\x81\xc7\x57\x0c\x42\x9b\x98\xc4\x2e\x69\x72\xf0\x9b\x3a\x3b\x75\x53\x51\x67\x80\xe6\x5c\x1a\xbe\x11\x34\x5c\xa1\xc1\xe2\xeb\x26\xa1\xc1\x42\x04\xad\x55\x01\xe3\xa0\xe3\x1b\xf0\xa0\xfb\x07\x35\x80\xb9\x09\xfb\xcf\x54\xeb\x8a\xc3\xc9\x40\x0d\xfa\x31\x25\x89\x7d\x93\x7e\x5d\x84\xd2\x68\x34\x61\xbc\x4e\x70\x92\x57\x4e\x42\xac\x0b\x87\xaf\xdf\xbf\x9f\x9d\xd5\x77\x02\x9f\xb0\xbe\x86\xe2\xad\x4c\x3c\x8d\x18\x12\x6b\xa7\x36\xf4\x7b\x55\x83\x2c\xd5\xa1\xca\xde\xb2\x68\x1c\xc6\x4d\xcb\x1e\x33\x96\x08\xe1\x07\x26\xfd\xbd\x52\x95\xf4\x57\xc6\x9c\x42\x3a\x4b\xe2\x68\xd6\xc6\x2d\xef\xc9\xbc\xa3\xe8\x12\xdf\x51\xa7\x61\xd7\x26\x6e\x45\x22\x3a\x64\x20\x0d\xdf\x04\xcf\xd6\x23\xcf\x17\xdb\x33\xaf\x1e\xdc\xa6\xa3\x24\x1f\x6f\x1d\x23\x4b\xae\x9e\x51\xfa\xd6\x7f\x1a\x78\xb8\xd1\xff\x53\xaa\x6c\x05\x93\xc4\xf2\xcd\x98\x7f\xf6\xc2\x0b\xd0\x22\x41\xa6\x11\xc9\xb9\x9b\xa5\xd2\xa2\xbe\xd9\xc4\xec\xc4\xbc\x92\xf4\x19\x1c\x37\x4c\xdb\xc1\x37\x8e\x91\xb5\x97\xa5\x8b\x36\x43\x4b\xa3\x4b\x40\xf9\x82\x21\x1e\x54\x34\xd2\x64\x97\x0c\x47\xd9\x30\xb6\x8a\x59\xf2\xba\x02\xed\x5e\x1f\x4b\x01\x72\x9f\xa6\x1d\xcc\xc6\x91\x64\x6a\xe4\x60\xa0\x17\x91\x93\x61\xe3\x8b\xec\xdd\xdb\x5e\x34\x04\x1b\x6b\xa9\xc6\x8e\xdb\x2a\xa1\x7b\x5b\x95\x4a\xf7\xcd\x1c\x6c\x69\x59\xae\x33\xfa\x8d\xcf\xb8\x37\xce\xec\x20\x5d\xb0\xdd\x2d\xbe\xad\xef\x3c\x86\xd3\xf1\xd8\xfb\xa6\xdf\x5b\x34\x69\xf0\x9f\xce\xea\x0e\xf0\x4b\x63\xb9\xb3\x23\x53\x87\xda\x6f\x58\x13\x33\xfa\xd6\x31\xfa\xad\x6a\x65\xb6\xd5\xa6\xad\xfd\xc2\x3f\xfe\x47\xcc\xc2\x2e\x0d\xed\x2a\x37\x8f\x22\x07\x7c\x1a\x28\xbb\x02\x42\xf8\x13\x25\x7b\x69\x93\x30\x1d\x65\x4e\x79\xcf\x75\x97\xee\xf3\xdd\xa5\x3b\x5d\x49\xd7\xa8\xd4\xed\x06\xa2\xd1\x8d\x25\x94\xc3\x7b\x66\xda\xa3\xa4\x0a\x69\xb9\x73\x0c\x0b\x19\xfa\x4b\x7c\xad\x5a\xaa\x08\x5a\xb0\xa5\xfa\x55\x29\x00\x2b\x36\xf9\x0b\x74\xbe\x49\xe7\x24\xbd\xa0\x14\x4b\x7c\x1b\xf1\xef\xab\x63\x22\xb3\x95\x2b\xbc\xd5\xab\xb1\x4f\x2c\x2b\xc2\x74\xae\x84\x21\xcb\xf2\x08\x16\x87\x35\xdd\xe9\xbd\x45\xdf\x5d\x39\x9c\xf7\xc7\xf6\xc9\xbe\x69\xde\x5a\x5c\xbd\x71\xed\xf0\xfb\xf7\xcb\xb5\x62\x2e\xee\xf5\x5d\x99\x07\xb6\x69\x45\xb9\xe6\x2b\x2a\xcd\xb8\x10\xc5\x31\xa4\x36\xb5\x58\x90\x4f\x8a\x7d\x32\x76\xc2\x4d\x4f\xb7\xfb\x83\x14\xda\x12\x33\x8e\xaf\xa0\xde\xd1\xfa\x9c\x06\xf3\xd9\xbc\xc8\xd2\x68\x1e\xca\xb1\xb2\x22\xbd\xe7\x72\x5c\x41\x70\x3e\x29\x9f\xf4\x39\x71\xb3\xb4\x5b\x29\x76\x6c\x43\x2b\xbe\xcb\x4e\xf9\x2c\x24\xa0\x05\x64\x5f\x7e\xfc\x74\xa7\x96\x02\xd1\xd5\x20\xf4\x37\x62\xd5\x42\xfc\x04\x89\xc2\x4d\x1d\x8a\x00\x54\xda\x4b\x8e\xa0\x9d\x5a\x13\xff\x2a\x0d\x0a\x8a\x0f\x3b\x3b\xaa\xfd\x97\x65\x17\x98\x1d\x30\xa8\xfc\x64\xf1\x45\x68\xfc\x99\xff\x88\x54\xa2\x60\xb4\xd6\xea\xe8\xf2\xd0\x80\xc8\x9f\xa5\x2e\xd5\xf1\xf6\xd7\x9a\x4d\x8c\x25\x10\xb6\xab\x56\x79\x21\x70\x90\x83\xc5\xe7\xa4\xfe\x39\x6c\x15\x5e\xea\xdf\x05\xbe\x73\xe9\x64\xa0\x40\x9b\x97\x29\xbb\x24\x0a\x0a\x8a\x11\xf9\x8c\x83\x53\x2f\xf6\xa3\xc2\xe6\xba\x03\x6f\xa2\xa3\x65\xb9\x15\x2c\x0f\xad\x63\xc8\x2e\x2b\x36\xf3\x51\x14\x77\x47\xc3\x96\x2f\xf1\x01\xb7\x2d\x34\x3c\x8a\x67\x3c\x4e\x73\xdb\xdd\xd1\x72\x94\xba\x5f\x12\xc9\x93\xb4\x70\x55\xef\x80\x92\xf5\x3d\x84\x45\xec\x1a\xd0\xb7\x21\x46\x78\xb7\x54\xfa\x9f\xc7\x4a\x55\xa7\x03\xee\xd0\xe5\x92\xab\x79\xe1\x21\xd4\x48\xa7\xd1\x70\x52\x29\x79\xc3\x6d\xd3\x88\x47\x4e\xc3\x07\xaa\x7c\xfa\x73\x3d\x45\x26\x8e\x53\x92\x55\x77\xfe\xc5\xc3\xc0\x67\xb7\x1e\xaa\xfe\x9c\xbe\x65\x77\xfc\x80\xa4\x28\x91\xe3\xe5\xeb\xb1\x02\xf1\xe1\x3d\xed\x61\x66\x89\x00\x91\xb7\x35\xe0\x47\x10\x58\xe2\x6b\x37\x69\x3d\x9b\x88\xda\xbf\x34\x81\xe8\x8e\x90\x26\x7e\xf4\x59\x1b\xa7\x8b\x2d\xef\x24\x6d\xa2\x32\x1f\x5f\x77\x7c\x34\x63\x8f\x86\xd6\x76\x9d\xb4\x0c\x6c\x1a\xcc\x22\x5f\x3b\x5a\x1d\xc2\x4a\xd0\xbc\x63\x51\x15\x81\x0a\x28\x0a\x27\x8e\x36\x34\x99\x19\xa4\x23\xfe\x53\xc4\x6b\x0f\x31\x77\x7c\xd3\x48\x75\x98\x17\xd6\x74\x23\xea\x26\xa6\x49\x6f\x62\xba\x56\xc4\x32\x61\xdf\x76\x47\xb1\xa5\x74\x0e\x82\x95\x93\x18\x13\x9c\x97\xff\x27\x7d\x0e\x55\xf4\x0f\xf0\x9c\x08\xae\x2f\xa8\xf5\x31\x8a\xba\xdb\x7c\x5f\xce\xa7\xa5\xef\x81\x3b\xa3\x60\x9a\xbc\x3a\x61\x3e\xdf\xa3\x65\x0b\x6f\xf7\x64\x59\x13\xf6\x52\x3c\x51\xfd\xa6\xce\xaf\xa1\xa1\x1c\x0b\xf2\x84\x4d\x78\xf7\x06\x16\xc3\xc4\x48\x0e\x47\xfe\x48\xbb\x4a\x0d\xbc\xcc\xa2\xfe\x28\x9e\x0e\x4c\xe5\x27\x30\x12\x7c\xa3\xb5\xd3\x86\xf9\x0e\xbf\x4c\x6f\xc2\xc9\xa8\x75\x2b\x02\x0a\xf3\x14\xa5\xe5\xb5\x64\x06\x6d\xbd\x7f\xf3\x0b\xcb\x8a\x72\x48\x77\x04\x32\x24\x8c\x4c\xed\x3f\xfb\xe5\x8e\x22\x89\xb8\x5e\x3e\xbf\x91\x9f\xf8\x95\xf6\xf4\xf4\xcc\x4e\x55\xaa\xbf\xab\x49\x28\x1e\x96\x5e\x56\xf1\xf7\xfc\xd1\xf0\xdf\x81\xa6\x0f\xf1\xe7\xc5\xd2\xe3\x15\x36\x11\x34\x05\x9f\x7d\x07\x6f\x04\x2f\x6c\xbd\x54\x1b\xed\x4a\xa0\x68\x09\x6e\x8f\xed\xcf\x7d\xd3\xac\x58\xc1\x0a\x31\xa8\x04\xbe\xb2\x7e\x4d\x65\x41\x86\x59\x3a\x88\x72\xa6\x24\x73\xa5\x03\xcf\xc7\xf5\x57\x63\xfe\x16\xad\x73\x13\xb6\xfc\xda\xbc\x48\x1e\xbb\x10\x48\x6e\x9c\xd0\xfd\xfb\x89\x55\x9f\x8e\x7f\xb8\x57\x35\xb2\x15\xa1\x61\x91\xea\x59\x32\xea\xa2\xa4\xce\xf4\xde\xa5\x12\x3a\x39\xab\x04\x2c\x36\x75\x36\x2e\xcf\x17\x49\xe4\xc4\x49\x8a\xad\x93\x77\xb1\xbe\xa2\x2a\x87\x8b\x26\x5a\x20\xfc\xa1\xe7\x87\x52\xe6\x94\x50\x6c\x62\xf6\xb3\x74\x31\x99\x50\x95\x87\xb5\x40\x15\xfe\xa4\xf4\xc4\x1a\x44\x65\x4d\xcd\x62\x60\x38\xd2\xd0\xde\x99\xb8\x70\xe3\xcf\x3c\x4c\xf3\x3c\x9a\x8d\xa1\x87\x23\xf0\x7f\xd5\x0a\xa0\x98\xf1\x4d\x18\xda\xa1\x4b\x98\x30\xea\x31\xf0\x09\x9c\xd3\x0a\xf7\x61\xba\x66\x58\x90\x32\x2f\x0c\xcb\x59\x3a\x55\xf9\x7a\x6c\x4e\xff\xab\xf6\xe8\xa5\xfc\x25\xd3\xaa\x65\x11\x7c\x26\xa6\x11\x1a\x5e\x64\xd6\x54\xae\x1f\x08\x5a\xe1\x1b\x9c\xc0\x9a\xe7\x1b\x37\x2e\xf9\x68\x98\xd9\x81\x65\xaf\xbe\x49\xec\x6c\x23\xc0\x8c\xe2\xf5\xb0\x9f\xa4\x71\xda\x23\xc6\xd9\x96\xe2\x7f\xae\x3e\x28\xd8\xa2\x27\xdc\x4f\xcc\x71\x73\x05\xc6\x8d\x79\xc4\xe0\x00\x9d\xa4\x8f\x20\x52\xdf\xec\xc8\xf1\x88\x8d\xa0\x2b\x45\x0f\xe6\x7e\xc3\xda\x17\x22\xb8\x06\x09\xc0\x74\x36\x2f\x4c\x18\xcb\xc7\x84\xcf\x89\x3e\x26\xd4\x54\x1b\xf3\xb2\x8e\xe8\x23\x59\x9a\x4d\xbb\x4b\x4a\x6e\x01\x91\x00\x5f\x6f\x94\x38\x7c\xfd\xf5\xca\xa6\xec\x50\xaf\x5b\x2a\x72\xaa\x6d\x1d\x45\xf6\x74\x56\xc3\x5c\x98\x4e\x9e\x9b\x1b\x02\x7f\x3a\xfc\x41\xe9\x9b\x2a\xbe\x8f\x8d\x25\x69\xdc\xea\x31\x70\x06\x9c\x1f\x4b\x2b\x3b\x05\x1e\xa2\xd2\xe6\xdc\x8e\xa3\x54\x77\xc8\x3f\xd6\x52\x15\xe7\x7b\xe3\xd8\xbd\xd8\x9e\xcb\x46\x79\x91\x19\xa1\x65\x56\xe4\xeb\x1e\xa2\xb1\x5b\xc9\xa0\xc6\xc3\xd8\xe6\x5c\x25\xe2\x36\xd7\x72\x63\x9e\x53\xf8\x50\x9a\x18\xcc\x8a\x7e\x94\x75\x27\xab\x75\xaf\xb2\x64\x07\x6b\x52\xd5\x70\x82\x00\x9a\x40\xb6\xef\xa4\xea\x3e\xca\xa3\x5e\x22\x34\x4d\x38\xbe\x6f\x28\xed\xd8\x1b\xea\x0c\x9a\x1d\xc5\xad\x1a\xda\x5f\xb7\x01\xd4\xe8\xdb\x96\x0c\xd0\x34\x02\xac\x57\x1e\xcb\x59\x45\x5f\xab\xcb\xd6\xab\xce\x7b\x59\xc8\xaa\xf0\xbf\x06\x67\xac\x7e\x54\x92\xf4\x3a\x21\x53\x18\xb0\xd6\xcc\x70\x9c\xf9\x83\xc0\xc7\x9f\x3f\x18\x33\x00\x2f\xb6\xe7\x6c\x96\x61\x65\xba\xa2\x8d\xea\x0f\x7e\x1c\xf9\x7f\x98\x16\x45\xca\x86\x12\xd6\xf0\x73\x05\x9f\xf8\xdf\xb0\x22\xb0\x54\x3e\x1d\xf3\x0d\xf6\x4e\x11\x7d\xa6\x9d\x50\xa9\x64\x16\x98\x40\xcf\xfa\x09\xb6\xb3\xc8\x5f\x9f\x53\x01\xfb\xa2\xc9\xfb\x51\xd2\x2b\xd2\x64\xa7\x77\xc1\xaf\xf2\x9f\x73\x3a\x1b\x0b\x0b\x85\x61\x4e\x24\xa1\x70\xf4\xbb\x1a\x5e\xb7\x09\xc0\x79\x97\x6c\x53\x84\x1d\x14\x3a\x08\x45\x54\x4b\x51\x75\x79\x70\xcc\x8d\x26\x87\xa7\xc8\x0c\xf3\x5e\x02\x93\xb3\x49\x41\x91\x37\x8d\xd1\x18\x4e\x4f\xcf\xb4\x4d\x1e\x9b\x24\x32\x5c\x98\x47\xde\x02\x96\x9d\xaf\x15\x56\xe1\x1b\xdf\x9c\x9e\xfa\xc6\x33\x9a\x78\x1e\xad\xba\xb0\xed\x13\x88\x35\x91\x6c\x5e\xa7\xa4\xa0\x2c\xa2\xca\x03\x91\xec\x36\x8d\x06\x43\x6b\x02\x55\x52\xe1\x26\x42\x26\x64\x5e\xf6\x7e\xe2\x9f\x68\xd2\xde\x4b\xc1\xc4\xc1\x7f\xfa\xeb\xcc\xde\x06\x72\x03\x74\xbc\x9e\x24\x63\x83\x23\x7d\x0d\x40\x31\x45\x6f\x36\xed\x05\x9e\x5e\x78\x81\x27\xe6\x47\xf4\x96\x92\x2b\xf3\x08\xfe\x4b\x8a\x9b\x64\x94\xd0\xb1\x6d\x5b\x35\xbc\xac\xee\x29\xbd\x34\x46\x81\x39\x75\xa8\x1d\x77\x11\xe0\xe1\x65\x3e\xd5\xa4\x31\xe3\x6b\xb1\xb2\x17\x6f\xa4\x16\x7e\xaa\x28\xb1\xa9\xe2\xc9\xa9\xb1\x74\x95\x6c\x81\x81\xc9\x22\xae\xa8\xc2\x48\x31\x33\x0f\xdf\x3c\x56\x14\x64\x60\xbb\x51\x18\x25\xf6\xf1\xca\x19\x0d\x4d\x80\xb1\x35\xbe\x09\x10\xa6\x1f\xda\x66\xf8\xcc\x64\xc7\x37\x7b\x5c\x53\xca\xa0\xa1\x49\xba\x51\x97\x2a\xfc\xda\xac\x54\xc3\x2d\xe6\x66\xe3\x80\xfc\xfa\x14\x48\x72\xe8\xf1\x98\xd2\xa5\x46\xef\xb2\xab\x46\x4d\xd0\xf2\x5d\x2a\x67\x95\x0a\xeb\x59\xc5\xf3\x98\x9b\xa5\xdd\xbe\xef\xe1\x36\xd9\x17\x04\xe6\xad\x8e\xef\xc0\xdc\xba\xec\xeb\xd1\xb7\x70\xde\xc1\x8e\x6e\xc6\x79\x87\x0d\xf1\x76\xd0\xfa\xe6\x6f\xf8\xbe\x1e\x2f\x9c\xb0\x82\xac\x36\x7e\xe3\x3c\x48\xd0\xc4\xab\x9a\xf0\xfa\x8b\x7c\x44\x02\xb6\x72\x8b\xde\xcb\x55\x02\x8e\x48\x5b\xd0\x03\xb4\xc7\x89\x23\xa6\x94\xae\xae\x93\x37\x25\xc0\x2f\xbf\x52\x0b\x6b\xc2\x3e\x2b\x9f\x4d\x7b\x52\x1c\x0f\xaa\x72\x00\xd4\x24\x4d\x6c\xd1\xb7\xd5\x01\xb7\xc3\x67\x1e\x40\x42\xed\x4a\xa0\x42\xa1\xb2\xfb\x57\x3a\xd4\xdb\xe5\x0a\xa5\x3e\xa1\xb0\xaa\x65\xc2\xae\x68\xb0\xd6\x1a\x46\x42\xc4\x70\x5a\x4e\x4d\x4b\x37\x76\xf4\xad\xc9\x0a\xc0\xf9\x60\x1b\xb9\x3f\x94\x59\xb6\x6a\x02\xcc\xaa\x15\xfe\x3d\x95\x12\xeb\x26\x66\x42\x75\x7b\xae\x6a\x1f\x23\x50\x7d\x01\xaa\xc9\xf1\x0d\x33\xb0\xf9\x16\x7a\x0b\x97\xc7\xd2\x64\x03\x9e\x22\xef\x94\x9e\x34\xe6\xa7\xc4\xbb\xfe\x89\x92\x36\x7a\xc3\xce\xcd\x65\x76\x09\x8e\x09\x96\x11\x8a\x99\x9c\xe9\xc5\x37\x8a\x64\xac\xf8\x7f\x8b\x51\xd1\xef\x66\x76\x71\xa2\x26\x01\xdd\x72\xec\x1b\xa7\xf0\xc6\x48\x00\xdf\x56\x6a\x4d\xf9\xd0\x86\x23\x88\x97\x6e\x55\x25\x98\xf7\x6a\x1c\x41\xd5\x92\x12\x1a\x00\x7a\x6c\xae\x59\xd3\x90\xe2\xe5\xb8\x2b\x04\xde\xc4\xb9\x31\x2c\xcf\x8b\xc2\x97\x25\xd9\x15\x25\x50\x34\xe5\xd0\x1b\x5e\xcc\x70\xc0\xea\x8e\xd8\x15\x2b\x81\xaa\x12\x68\x5a\xe6\x41\x94\x0b\x6e\x09\xcb\xff\x63\x4a\x43\xf1\x75\x03\xbb\xc5\x2b\xed\x81\xc9\xd3\x84\xbd\x03\xe6\x12\x53\x18\x89\xcb\x2e\xc5\x13\xda\x24\x4f\x33\x25\x3b\x76\xba\x54\x48\xae\xd3\x35\x8a\xce\x62\x94\x25\xb6\xab\x74\x8a\x76\x74\x7c\xe7\xd3\x23\x0c\x19\x0e\x98\x3b\xe5\xf3\x6e\xe8\xbb\x51\x6e\x86\xc4\x84\xcd\xad\x96\x48\x23\xdc\x54\xdc\xb9\x37\x9b\x30\x1e\x73\x71\x6a\x8a\x56\xeb\x5b\xbf\xe6\x2b\xd6\xce\xd3\xb9\xd4\x88\xe8\xe9\x66\xd1\x02\x30\x58\x80\x4d\x9d\xc5\xab\xc0\xaa\x73\xaf\xbc\x04\xb2\xcf\x28\x53\x18\xf6\x93\x2a\x60\xd9\xea\xd7\xc2\xdd\x40\xef\x3d\x5a\xf5\xb0\x55\x77\x60\x9e\x90\x7b\x41\xb7\x82\x94\xc3\x54\x99\xf1\x92\x5a\xe8\x69\x77\x29\xcf\x51\x24\x75\x25\x6c\x3a\xe3\xa5\x9c\xed\xff\x74\x31\x8b\x0a\x42\xc9\xba\xae\x02\xce\xb7\x39\x4a\x2d\x07\x5b\x7f\x88\x85\x2e\x62\x7a\x4a\x32\x2c\x1d\xa2\xf7\xd7\x17\x07\x2e\xa9\xe2\xc0\x25\xc5\xdd\x6f\xf2\xe7\xfd\x58\x5d\x40\x2b\xaa\x23\xde\xab\x5e\x19\xdb\xf2\x33\xe0\x45\x1c\x53\x8b\xa3\x9d\x29\x21\x7e\x8c\xc8\x11\xe2\xfd\xc8\x62\xad\xd4\xf8\x38\xe9\xc8\x72\xa2\x12\xd3\x4e\xad\xe1\xa7\x64\x90\xf9\x6b\x39\x01\x8d\x90\x62\x85\x46\x1f\x33\xb1\x95\x7a\x3b\x61\xdc\xb9\x2f\x07\x59\x06\xc6\x65\xe2\xb5\x4e\x63\xf1\xc1\x84\x01\x11\x83\xb4\x6c\x6b\xc3\x09\xf4\xad\x5f\x73\x0c\x14\x8a\x04\xf5\xae\x13\xb7\x8c\x4d\xd2\xcd\x43\x33\xc4\x32\xc2\xca\xc6\xc2\xc3\x83\xde\x52\x6d\x80\x9f\xe9\xbe\xf6\xb7\xec\x56\x0f\x12\x04\xa1\x1c\xd2\x5e\xbb\x3a\xf5\x06\x83\x97\x8f\xb0\xad\xe2\x32\x23\x36\x0c\x27\x2a\xb1\x94\x1e\x35\xe4\x1c\xf2\xd1\x70\x88\x42\xa2\xaf\x13\xb3\x70\x37\xdf\x34\xa9\x9f\xf6\x6c\x32\x8a\x12\x66\x9f\xd6\x15\x6c\x49\xe1\x8c\x47\x7c\x43\x9b\xe7\xd1\x20\xca\x45\x33\x55\xb0\xbf\x4a\x33\x64\x65\xec\xa7\x0e\xec\x69\x8b\x3e\x01\x4d\x84\x63\x0f\xde\xbf\xdf\xb1\x07\xab\x04\x7d\x9a\xc6\x9c\x83\x10\x56\x60\x9a\x4b\xa1\x05\xf6\xdd\x95\x71\x9a\xce\x6f\xa7\x87\x87\x2b\x7e\x0a\xf0\x6d\x51\x78\xf1\x8c\x44\x7c\xee\xc3\x6a\x4d\x2c\x2b\x82\xe0\xd3\x5a\x10\x6a\x13\x88\x2a\x1d\xfd\xac\xc3\x72\x7d\xee\xd0\x76\x94\xfa\x9c\xf0\x3e\xd9\x96\x8e\x4e\x27\x6b\x2c\x71\x93\x4a\x9a\x08\x84\xb4\x14\xd3\x3a\xfa\x08\xf8\x5a\x05\x7c\xf6\x68\x68\xf3\x7c\x7b\xcb\xf1\x3b\x3d\xc2\x20\xe3\x55\xaf\x06\xbe\x0a\x08\xd9\x5f\xfe\x77\xcd\x21\x78\x8c\xd8\x60\xe1\x88\x00\xe4\x24\xda\x79\x5e\x16\xfe\x6a\x93\xb2\x6a\xdf\x64\x90\xf6\x41\x96\x6e\x7b\xc7\xb7\x3a\x4c\x52\x08\x81\x62\xfe\x89\xca\x8e\xff\xd7\xce\x8e\x3b\x01\x70\xaa\x4c\x60\x87\xf1\xf3\xf0\x8d\xea\x2a\xed\x65\x26\x61\x3e\x4d\x41\xd5\xab\x78\x64\x55\x35\x43\x2e\xa6\x03\x93\x80\x50\x06\x55\xd9\x3b\x4a\x78\xf7\x2e\x21\xc6\xa4\x26\xa0\x18\x93\x7e\xab\x6c\x29\xfd\x59\x6a\x9b\x78\xa8\x98\xad\x67\xb3\x6a\x2b\x6f\xd7\xf9\x7f\x3a\xe0\x91\x72\x5e\xe5\xb8\x53\x2a\x03\x3e\xf9\xf7\x2e\xce\x09\x27\x97\x58\xfd\xa0\x32\xc6\x52\x66\x59\x55\x39\xc2\x77\x1b\x32\xe2\x33\x94\xa6\x4d\x89\xbd\xa5\xa6\xde\xad\x99\xe8\x5a\x1d\xc5\xc5\x39\x9e\x69\xdc\xbb\xb7\x6d\xc2\x30\x1b\xb1\x7e\x35\x5b\x7e\xcd\x00\x08\xed\x19\xc7\x11\xae\xc9\x0f\x9f\x51\xdb\x8d\x81\x63\xb4\xe3\x9c\x92\xb6\xd7\x37\x1b\x3b\x4c\x0f\xef\x79\x0d\xf8\x7a\xb8\x67\xac\x7a\xac\xc2\xbe\x8f\x03\x85\x15\xfd\x69\x13\xb3\xda\x1b\x69\x24\xb4\x3c\x18\xe3\xfb\x81\x97\xd8\xbb\xef\x1a\xe8\x07\x26\x1e\x92\xa0\x63\x88\x94\xc2\xfa\x27\xa5\x6a\x62\xa5\x5f\xc4\xf5\x75\x4d\x7c\x69\xb2\x22\x61\x0e\x22\x29\x06\xae\x29\x0d\xf5\x49\x44\xc4\x58\x26\xf7\x02\xd5\x22\xdb\xea\xf8\x85\xf5\x95\xe5\x9a\x88\xee\xc6\x77\x78\xb1\x3d\x97\x2e\x92\x68\xed\x74\xbd\xd0\xc0\xd7\x2a\x4a\x2a\x0c\xfe\x0a\x75\x80\x75\xb2\xf1\x7c\xad\x48\x19\xa3\x39\xbb\x45\x61\xc7\x3f\xa2\x17\x45\x30\xc5\xb2\x57\x4e\xf8\xde\x41\xcf\xfe\x8f\x40\x8b\x39\x38\x10\x61\x98\x0e\x88\x9b\x87\xfd\x3b\x1d\x48\xf2\xf5\xf2\xc6\xec\xcf\xeb\xaf\xb7\xc3\x7e\x96\x92\xa3\x13\x2f\x91\x64\x3d\x4e\x9e\x7b\x8a\x82\x11\x21\x87\xe0\x3c\x25\x4f\xbb\x68\x96\xa4\x85\x0d\x86\x73\x73\x47\xd5\x4c\x1e\xc1\x57\xc0\x21\xf4\xd7\x58\xdd\xc8\x4a\xbe\xad\x68\xc7\xbb\xa9\xcd\x9f\x68\x39\x06\x85\xdb\x8a\x21\x81\x49\x30\x58\x56\x8c\x16\x34\x22\xfe\x4d\x30\xe3\xc2\x59\x5c\x2d\x1f\x6c\x9b\xaf\x75\x88\x43\x03\xde\x39\x8b\x89\x8a\x12\x3d\x6d\x51\x94\x5a\x9e\x58\xf6\x52\xf6\x6f\x93\xb3\xc1\x96\xbb\x29\x4a\xe7\x7c\x37\xc5\xda\x4e\x1a\x68\xda\x33\x26\x2b\x0f\x0b\xab\x4f\xf1\x3d\x60\x55\xf1\xf5\x72\x4d\xbe\x75\x49\xba\x9e\x9c\xe4\xcb\x81\x3d\x8c\xab\x03\x83\x1f\x5f\x73\xeb\xb9\x54\x59\x45\x68\x25\x9d\x23\x39\x12\x98\x99\xaf\xc0\x93\xc0\x41\xf2\x33\x06\xa9\xc9\x77\xd1\xb8\xc3\x98\x4f\x2e\xd7\xba\x30\xc1\x65\x43\xa2\x12\x48\x29\x6f\xea\x28\x0d\x58\x38\x74\x58\x60\x37\x9a\x1a\xcd\x0c\xf2\xed\x8f\x63\x70\xf7\x71\x69\xd7\x26\x91\xed\x02\x44\xce\x64\x8c\xa5\x82\x5a\x7c\xa6\x4a\x65\x77\x60\xc3\xa4\x3f\xda\x87\x69\xdd\x34\x1c\xc9\xca\xa6\x6d\x8b\xf6\x8f\xbb\x4a\xd2\xe7\xee\x58\x56\x87\x54\x24\xe2\x51\x5e\xd8\x4c\xc0\x98\x8e\x19\xb2\xfa\x19\xbe\xd1\x12\xd0\x79\x4e\x39\x48\x78\x68\xd7\x4a\x5f\x0d\xf9\x1a\x6d\x22\x44\xb8\x93\xb4\x7e\x44\x7f\x40\xb1\x4b\x40\x41\x09\x1e\xc5\x0f\xb1\xe2\xd0\x84\xc8\xc5\x3d\x24\xbb\x99\x90\x06\xa5\xaf\x35\x3e\x6f\x10\xb1\x4f\x40\x34\x11\x5e\x38\xb5\x5a\x16\xbc\x2f\x6b\x95\xdd\xea\x57\x5c\x54\x7f\xc0\xab\x82\x3b\x44\x5a\x3a\x4a\xba\xcc\xa9\x7e\xbf\x54\x53\xb4\x93\x16\xa4\xef\x2c\x56\xbd\x9a\xc5\xd2\x36\xd5\xe2\x87\xce\x94\x1a\xcb\x0c\x02\xc4\x87\xf8\x3a\x8d\x7d\x82\x6d\xbd\xaa\xb2\x12\x4c\xb9\x2c\xf9\x73\xf1\xa0\xe6\x62\x93\xf7\x5b\x8a\xf7\x8e\xa1\x66\x42\xf7\xd6\x00\x04\xea\x8e\x12\x9b\x2b\x3c\xff\x0f\x90\x22\x11\x48\xb2\xae\x01\x34\x6d\x5e\x42\xb7\x71\xc5\xc9\x85\x10\xae\x5c\xb1\xa2\xe0\x5a\x84\x82\xdb\xe6\x2d\xde\x3b\x75\x15\x9c\xca\x92\x61\x0f\xae\x95\x4a\x30\x11\x84\x18\x48\x46\xec\xa2\xc4\x97\x33\xf5\x07\x04\x8f\x75\xb3\xc9\x69\x2f\x6c\x16\x13\x69\xdc\xfe\xfd\x22\x6f\x8b\x48\x05\xe6\x0a\x89\x33\x0c\xec\xb6\xb1\xe2\x28\x65\x99\xe3\x37\x22\x93\x28\x06\xf3\x0f\xb0\x10\xf9\xc6\x25\x46\xd2\x2c\xea\x45\x24\x91\x70\x60\xc6\x39\x8a\xde\xde\xc2\x89\xc5\x70\x6e\x06\x51\x0a\x22\xb2\x9f\x8f\xed\xa6\x7d\xd3\xc4\x6a\x13\xa7\xf9\x28\x43\x55\x17\xf1\xf3\xba\xd2\x64\xb9\x22\x5d\xaa\x1e\x0c\x3c\x97\x86\xa3\xdc\x39\xbe\x42\xfa\xed\x73\xb9\x57\x5d\x88\x15\x46\x0b\x51\x4c\x5d\x55\xb4\x10\xb1\x62\xb1\xc3\xf9\x3a\x78\x56\xc9\x82\x11\x14\x86\xac\xa8\x4f\xb3\x69\xe8\x1b\xbc\x78\xf7\x1f\xba\x1f\xc1\xc7\x11\x83\x51\x12\xd1\x20\xb2\x5e\x73\x4d\x99\xda\xb1\x93\x0c\x08\x19\x45\xbe\xad\x16\xf5\x94\x16\xb4\x67\x55\x36\x29\xb2\xf1\x42\xda\xb3\x31\xe9\x8e\x09\x19\x97\xe2\xa1\x5d\x55\x4d\xd9\x8b\xd6\xcc\x27\x36\xcf\x19\xa9\xe8\xe8\xec\xaa\x53\x8f\x6f\x94\x33\x3c\x34\x85\xe5\xc2\x94\x68\x98\x55\x6f\x2e\xda\x66\x8e\x7c\x9b\xec\x5d\x4b\x15\x04\x57\x35\x73\x07\xfd\xbe\x3c\xad\x8d\x2d\xf5\x4d\x60\x87\x61\x45\x7c\x16\x28\xf1\x92\xdb\xa5\x6f\xf9\xbc\x3c\x96\x4e\xa2\x0d\x36\x4c\x33\x27\x37\x82\x12\xc6\x75\x55\x6d\x66\x04\x07\xc3\xd4\x1d\x64\x36\xb3\xb3\x69\x86\xd5\x2b\x79\x1b\x95\xc3\x51\x76\x7f\xd6\x84\xf3\xbd\x8c\xcc\x19\x8d\x11\x97\x35\x15\x58\xea\xbc\x07\x82\x99\x7c\xde\x16\x7c\x24\xb9\x76\x32\x57\x0c\xbc\xd0\x80\xc4\x9d\x69\x2f\xd8\x3e\xd1\xb9\xa1\x9e\xbd\x7e\x2d\x60\x91\x95\x27\x5c\x97\xd7\x20\xdd\x42\x36\x07\xa9\xd3\xd3\x75\x14\x9b\x6e\xfa\xa9\x4c\x01\x02\x82\x9f\x6a\x10\xf3\xf7\xd5\x66\xe8\xda\x30\xea\xb2\x24\xce\x2b\x7e\x6d\x7a\xb6\xa7\x35\x95\x20\x00\x7b\x30\x8b\xf6\xd4\xda\x95\x68\x38\xe8\x2b\x70\xb0\x63\x39\xf2\xb5\x72\xae\x2a\x5f\x5b\xe9\xd2\x60\x90\xe5\x08\x14\x10\xec\x1b\x52\xaa\xe2\x53\x44\x8d\xed\xea\x58\xfb\xc0\xbe\xe9\xb6\x0d\xd3\x24\x1d\x44\x00\x8d\xd4\x98\x6f\x84\x1f\xa7\x69\x9c\x87\x59\x3a\x17\x85\x91\x10\xe7\x89\x8c\x86\x4f\x15\x6b\xb2\xbe\x2a\x44\x2b\xe6\xd2\xac\x8b\x38\x01\x43\x73\x5b\x8f\xd3\xed\xb1\xc8\xca\x95\x62\xd2\xa4\xb0\x2d\x95\x8c\xe3\xe5\x2f\x4a\x36\x4e\x01\x22\x8a\xe7\x79\xad\xb8\x2a\xad\xaf\xd8\xea\x3e\x13\x5b\xe4\x93\xfe\xd8\x7c\x58\xe7\xfc\x50\xe5\x00\x55\xef\x1b\x7f\xbc\x7d\x24\xe3\x16\x66\xd1\xac\xb3\x85\xe2\x27\x78\xd4\xd0\x0f\x6b\xb2\xd4\xa1\x8d\x16\x6c\x97\xf8\xda\xe1\x10\x3d\x80\x47\x2b\xa1\x52\x65\x61\x14\x07\x9b\x74\xa2\x95\x81\x6f\xfd\xf9\x84\x42\x0e\x01\x27\x2b\x4a\xf9\xfb\x1a\xb5\xac\x38\x33\xff\x25\x06\x0b\x19\x3a\xad\xfc\x49\x16\xf0\x39\x8f\x71\xe4\x50\x0a\xd6\xe7\x2f\x89\x4a\x07\xc7\xf8\x6a\xcd\xa1\xf9\x90\xfa\xbd\xa4\xe1\xb7\x7a\x62\xe4\x03\xc0\xcc\x26\xe0\x6d\x45\x56\xfa\x10\x49\x45\xbc\xf0\xcf\x68\x7c\x1d\xe7\x95\xe3\xa1\x82\xa4\xa9\xab\xd0\x79\x29\x37\x48\x6d\x63\x89\x7c\x89\x83\x5a\x4e\x19\x32\x88\xd8\x63\x3f\x29\x15\xe4\xed\x07\xa5\x07\x28\x6d\x55\x20\xb1\x1f\x71\x8d\x8a\xe9\x94\x15\x7b\x77\x5e\x98\xc2\xee\xf6\xcc\xab\xdf\x0b\x94\x8d\x63\x61\x36\x94\xf3\x1e\xd0\x33\x23\x6d\x7f\x99\x80\xbb\x8a\x0b\xd7\xd5\x9f\xca\x9a\xde\x9d\x62\x33\x67\x7c\x98\x43\x2b\x1c\xd8\xe3\xea\x25\xd5\x44\x88\x86\x13\x25\x5b\xb5\xac\x1b\xab\x89\x29\xdb\x77\x1d\x7b\xc7\x51\x12\xbe\x7c\xc4\xa9\xa3\xd0\x34\x32\x26\xdc\x61\x13\x42\xe3\xd2\x7c\x92\x0a\x50\xd8\x86\x2b\x35\xcf\x31\x1d\xa4\x5a\x7b\xe3\x82\x46\xaf\x5c\x57\x54\xc5\xeb\x4e\xdc\x63\xce\x76\x6d\xc6\xfc\xb5\xee\xdc\xc1\x51\x23\x25\x24\xd5\x00\xd0\xea\x34\xd0\xd4\xcd\x45\xb1\xdb\x47\x9c\x91\x52\x51\xd9\x89\x31\x4c\xc4\x81\x3d\xed\xcc\x1a\x0e\x42\xb0\xd4\x6f\x07\x35\xbe\x9c\x6a\x3e\x31\x53\xf7\xb1\x56\x30\x21\x9b\x96\xbd\xe1\xed\x5b\x13\x17\xfd\xa7\x5a\x8e\xd3\x98\xf1\xdb\x92\x1b\xaf\xbe\x02\xd1\xc2\x43\x2d\xa6\x04\xf4\x05\x92\x8e\xd7\x69\x45\x60\xe5\x72\x4c\x8c\x4e\xad\x47\x9c\xe8\xc6\x17\xa3\x9d\x90\x3d\x31\xac\x02\xd1\x92\xa7\x57\xe6\x5f\x21\xac\x1e\x1e\x1a\xa8\x6e\x10\x18\xdc\xc0\x14\x48\x33\x91\x4f\x7d\x15\xfd\x2c\x9a\x2b\x5a\x6a\x55\x31\x2b\xb3\x94\xad\x1e\xd7\xe6\x3d\xb4\x45\x96\xc6\x76\x34\x20\x87\x15\x8f\x7f\x46\x3b\x9c\xf0\xe8\x90\x73\x5b\x6b\x48\x38\x4f\xb5\x4d\x2e\x59\xe0\x19\x8f\x5d\xdc\xad\x52\x25\xf3\x66\xc9\x0c\x0c\xa6\x94\xbb\xb7\x6a\x9d\x5c\x1b\x57\xc1\xcc\x81\x99\xb6\x4d\x9c\xaf\x23\xf2\xcd\xd5\x58\x8b\xae\x73\x53\x2d\xe8\xcd\x51\x24\xdd\xdd\x58\xa3\xe7\x15\x42\x6f\x3c\x06\xa9\xec\x76\x9a\xa4\xb5\xa4\x74\xa0\x2a\x04\x97\x9a\x72\x5c\xf9\x28\x07\x57\xc2\x8c\x43\xb1\xd3\x58\xf1\x8d\x82\x01\x76\x6d\x18\x47\xc9\x86\xda\x4e\xa9\x58\x33\x57\x28\x3f\x51\x2b\xfa\x48\xe2\x7d\xbc\x07\xf3\x60\x7b\x68\xe3\xe2\x2d\xee\xfb\x71\x69\x58\x8f\xe7\x1f\xd7\xad\xda\xbf\xbf\x9d\xa5\xb1\xdf\x4c\x58\x73\x37\x15\xc7\xc0\xcd\x26\xe4\x5c\x6e\xa9\xf7\x3d\x29\x54\xab\x14\xeb\x65\x6a\xe6\x7e\xd9\x8e\xbe\xc2\xdc\x4f\x17\x77\xd3\x9f\xc9\x58\xa8\x23\x6d\x25\x50\x0c\xd0\x97\x89\xed\x07\x36\x85\xd9\x3e\xf1\xcd\x37\x34\xca\xfb\xdf\x2b\x34\xe0\x04\x8b\x19\xba\x22\x80\x73\xe5\xdf\xc7\x88\x22\xb1\xf1\xfd\xd2\x37\x17\x3e\x2a\xbd\x19\x87\x96\x0d\xbc\xf4\x2d\x1d\x55\xa8\xfa\x71\xa0\x3a\xed\xee\x94\x0a\xae\xf1\x28\xa8\xce\x3d\x9c\xc1\xa7\xc6\x8e\xfc\x43\xaf\xb6\x17\xb3\x34\xe9\x75\x53\x8a\xf4\x5c\xf0\xf0\x2e\xbe\x82\x59\xe4\x4a\x5d\x88\x6d\xea\x68\x4f\xcc\x3c\xc2\x2d\x58\xaa\x35\xc5\x31\xf0\x63\x4d\xae\xf0\x28\xf0\x60\xc8\x38\xcd\x4c\x37\x9d\xd0\xa4\x2a\x3f\x53\x13\xc2\x56\x1f\xbd\x7f\x37\x02\x0f\xc5\x8a\x4d\xd2\x1b\xa5\x59\x2a\x7c\x47\x18\xbe\x0b\x6a\x28\x2f\x8c\x61\x60\xa6\x0e\xb5\x87\xf9\x52\xd8\x4f\x4d\x62\xe2\xa5\x1c\xc9\x64\x2c\x37\xa4\x10\xf9\xba\x7c\x6e\x2c\x0c\x16\x2a\x12\x29\xa7\x21\x73\x25\x64\xc4\xd4\x35\xc3\xa5\xd6\x60\xa7\x5b\x41\xbf\xbc\x4d\x63\xe6\xbc\xcf\xf6\x36\x4a\x40\x08\x15\xcf\xe3\xd3\x12\x37\xfa\x26\xaf\x1b\xb0\xfa\xfc\x57\x58\x4a\x12\x69\xea\x7e\xf2\x6e\x34\x1b\x5b\x6c\x09\xe6\x7a\x2b\xbd\x67\xbe\xd2\x50\x65\x6e\xa7\x61\x38\xca\x72\x00\x02\x59\xec\xa6\xa3\x08\xe7\x41\x10\x20\x3d\x21\xd5\xda\x16\x0a\xbe\xe7\x54\x52\x2e\x8c\x47\x79\xb4\x10\x41\x64\xfd\x35\xaf\xd1\x56\x7d\x8f\x64\x1c\xbd\x27\x92\xce\x15\x36\x79\xd2\xfb\x2f\xb7\xb0\x03\x81\x78\x7f\x0f\xbb\x09\xae\x04\x9a\xf3\x31\xb2\x28\x56\x61\x00\x1f\x90\x79\x41\xdc\xf6\x03\xa5\xcf\x7a\x03\x3e\x8d\xeb\x79\xde\xbb\xd7\xd3\x40\xfa\x2a\xd3\x9f\xe2\xa0\x71\x1c\x4f\xd3\x5e\x99\xde\xd3\xf0\x47\x0b\x36\x47\x04\x85\x8c\xd9\x13\xcc\x4d\x0e\xe4\x2b\xe7\x93\x30\xae\x68\xef\xc3\x29\xc2\xaa\x70\x30\x76\xeb\x4d\x74\xb2\x03\xe2\x9d\x44\x66\x16\x1b\x48\x4b\xa7\xd5\xb5\x32\xac\x8d\x9f\xa9\xfe\x0e\x45\x90\x7f\x4b\xa7\x30\xde\x7a\xb2\xa3\x75\x58\xc8\x1e\x38\xae\x07\x37\xe1\xef\x05\x0a\x30\xb3\x82\x03\x59\x24\x44\x68\x94\x61\x4e\xb8\xc3\x0e\x83\xf3\x03\x76\x84\x05\x59\x44\x0b\x12\xaf\x03\xb1\x3f\x9c\x52\x9f\x90\x57\xcc\x39\x57\x9c\xee\xec\x04\xa1\x72\x29\xab\x87\x86\x1d\x40\x91\x6b\x8a\x2a\xf3\x4b\xed\xc0\xdd\x51\x04\xde\x45\x96\x0e\x27\x7c\x66\x75\x5d\x25\x67\x1f\x94\x1e\x18\xf7\x43\x45\x8f\x96\xbf\x34\x9c\x68\xbd\xf0\x42\x6d\xc1\x93\x6d\xfc\xc7\xbb\x91\x1a\x02\xae\xe6\xb9\xb1\x84\xd4\xe1\x3d\xaf\x31\x9d\x18\xe1\x38\x1c\x41\xb7\xdb\x9b\xe7\x9b\xf8\x40\xe6\xe2\x74\x91\x9d\x4c\x5e\x41\x41\x6d\x39\x89\x39\x1b\x66\x69\x3e\xb4\x21\x1a\xbe\x35\xe4\xc3\x71\x44\x7b\xf8\xd7\xbd\xe0\xf9\x71\x5e\xac\xc3\x7b\x66\xb6\xf9\xc6\xa3\x7b\x35\x47\x51\xf9\x56\x97\x11\x20\x89\x7a\x9d\x97\x18\x42\x4d\x8c\x95\xa5\x02\x45\x5b\xb5\x1a\x3c\xef\xf6\x6e\x3e\x9a\xcd\x8b\xa8\x18\x51\x15\x94\xfe\x46\xe8\x44\x7d\x39\xe7\xea\x98\xdd\x98\x3a\xd4\x7e\x6b\x94\x45\xa1\x10\xe5\x39\x7a\x60\x4d\xf6\xbb\x31\x9e\x3e\xf4\x6a\x3b\x1a\x0c\xa2\x5e\xe6\x4b\xae\x98\xcc\x8b\x8a\x38\xf4\xa2\x02\xf5\x25\x66\x00\x14\x82\x50\xb0\xab\x5c\xfc\x97\xaa\x71\x8d\x05\x74\xb1\x62\xb6\x77\x3c\x2e\x8e\xf1\x76\x52\x97\x69\x28\x70\x2f\xa6\x59\xdc\x5d\xac\x56\x80\xa2\x5a\x04\x89\x08\x5f\xab\xb5\x39\x4b\x3a\x30\x9e\x65\x93\xfc\x58\x61\xdc\xdc\x78\x4c\x1c\xde\xd3\xee\xa6\x2d\x85\xe9\x58\xad\x71\xc0\x36\x11\x1c\x84\x26\xcb\x22\x49\xf9\x4b\xb7\x7f\xf5\xfe\x42\x24\x27\x91\xc8\xd0\x76\x6d\x5e\x64\x92\x49\x75\x1c\xd1\xae\xd2\x78\x5b\x81\xd8\xf3\xb0\x9f\xc6\x26\x83\x6e\x1f\xd2\xd1\x6c\x0d\x65\xc4\x5b\x5e\xfd\x56\x15\x15\xe2\x79\x96\xde\x46\x3e\xe8\x53\xc5\xcb\x72\x4d\x31\xc5\x9f\x2e\xbf\xaa\x28\x3d\x92\x22\x33\xd4\x21\xb2\x00\x3e\x10\x00\x7a\x7e\xa6\x64\x2a\xef\x94\x4a\x03\xe5\xda\x58\x72\xee\xd0\xab\xaa\x1d\xc5\xa9\xaa\x42\xcb\x8d\xaf\x1b\xfc\xf4\xe9\x76\x3a\x37\x97\xdb\x62\xc2\xeb\x96\xde\xa8\x35\x49\x4e\x78\x59\xe1\x77\x55\x8d\x27\x34\xc9\x82\x01\x20\x55\x50\x27\xd5\x93\x7a\xd9\x5b\x31\x4a\x66\xc1\x0a\xc4\x03\x4e\xdf\x8f\x02\x55\x89\xff\x51\x23\x8d\xd8\xf0\xa5\xc1\x4b\xf4\x09\xee\x94\x2a\x7d\x90\x7f\x65\xec\xbd\x2b\xe7\xb4\xc8\x0c\xca\xda\x2e\x49\xfb\x97\x4a\x3b\xfe\x2f\xc7\x3c\xb5\x23\x54\xe7\xcb\x86\x59\x94\x4b\x49\x4b\x92\x61\x3a\x33\xa6\x4e\xde\x30\x8d\x12\x6e\x5a\x15\x79\xf1\x96\x27\xe8\xa1\x05\x2a\x64\x3d\xd5\x51\x2f\x7a\xe4\x5f\x53\xa0\xb9\x7c\x98\x26\x79\x34\x1b\xc5\x51\x41\x8d\x00\x7b\xa7\x24\x07\x50\x2a\xf3\x71\x4a\x05\x0b\xf6\xa8\xcd\x42\x7a\x44\x8f\x42\xb9\xa8\xb9\x8e\x2f\xba\x04\x6b\x6c\x16\x4c\x96\xd2\xa0\xc1\xd1\xe6\x86\x0e\xbe\x29\xbf\xea\xfb\x66\x6a\x5c\x4b\xbe\x9c\x71\x59\x35\x96\x5e\x6e\xf0\xdd\x16\x8a\x97\x34\xc2\x9d\x31\x10\xb2\x89\x9f\xd1\x3c\x5f\x23\xda\x62\xe8\x0c\x40\x51\xfe\x24\xa5\x20\xe0\xb7\xde\x25\x23\x81\x28\xef\x8a\xd2\xfa\xe8\xda\x39\x4b\xc4\xd2\xf9\x36\xbf\x5a\x2e\xab\x76\x54\xce\x34\xa0\xbf\x92\x05\x0f\xa4\x4e\x0a\x6b\x8a\xb7\xfd\x80\x8a\x31\x08\xd7\xfe\x8e\xa6\x06\x6e\xcd\xc9\x26\x2f\x2e\xb7\x0b\x24\x8c\xe3\xfe\x0a\x84\x2f\xa2\x96\xd4\x20\x84\xda\x37\xc3\xa1\x75\x4a\xde\x30\x1b\x1c\xc2\xf1\x4d\x75\x4a\x08\x3d\x62\x3f\xcd\x8b\xd9\x51\x5e\x70\xc0\xf5\x9a\x97\xaa\xd7\x6b\x69\xa3\xc5\xdf\xbf\x5f\xf7\xb9\xb7\x3c\xaa\xfa\x2a\x0d\xa4\x80\x49\xbd\xcd\xe9\x8d\x18\xc8\x8b\xe0\x04\x87\x10\xc2\x99\xcf\x34\xdb\xfb\xed\xa0\x96\x9c\x8e\xa3\xc4\x92\xa8\x98\xb0\x5c\xdc\xc0\x1f\xbf\x4c\x7e\xeb\x75\x1e\x56\xdc\x5d\x50\x64\xf0\x48\xbe\xb8\x21\xde\xbb\xd7\xc9\x50\x78\xe7\xec\x04\x39\x3a\xf0\x6d\x4e\xd5\x78\x59\xec\xe8\xa8\x6a\xb2\x63\xe0\x33\xdf\x8c\x01\xd1\xa6\x0e\xb5\xbb\x26\x5b\x8c\x12\x31\xda\x42\x5b\xaf\x39\xec\x5d\x22\xcb\x54\x4e\xc9\x76\xcf\x60\x7c\x9f\xd6\x02\xbe\xfb\xc9\x8e\xb7\xd7\x1f\xa8\xea\x25\x70\x4e\x94\xe4\xf8\xa5\xe7\x3a\x1e\x2f\xb5\x79\xb9\x7a\x01\xb1\x05\x5a\x7a\xa5\x89\xbc\x8b\xb0\x18\x11\xed\x2c\x26\xed\x46\xe2\xfd\x01\x36\x8a\x94\xfd\x95\x7e\xdc\x39\xd7\x63\x57\x99\x7f\x13\x11\xa4\x76\xff\x7e\xf6\xba\x18\x3f\xef\xa8\xb3\x7c\x0e\x67\x53\xe7\x2b\x8a\x90\x38\x8b\x0a\xae\x0d\x68\xed\x4a\xbe\x56\x58\x99\xdc\x24\xdd\xc5\xca\xf1\xd0\x5e\x6e\xb5\x98\xf8\xba\x7c\xc2\xf7\x1f\xbe\x44\x48\x05\xe1\x84\xc7\x22\x70\x39\xdd\xe9\x69\x87\x0a\xa7\x29\x10\xaa\x47\x27\x6f\x61\x06\xa2\xce\x8b\xd8\x42\xbe\x01\xef\xf5\x44\x47\xf1\x92\x4c\x2e\x7b\xa7\x65\xde\x14\x69\x8b\x42\x3a\xf1\xc7\xe9\x3b\x84\x6e\x4d\xaa\x3e\x73\x86\x52\x81\x13\xaa\x6a\xb5\xa9\xe3\xeb\x1c\x48\x2b\x32\xf7\xf5\xd8\xe9\x72\x64\xa6\x1d\x9b\xa2\x8a\x42\x5d\x73\xcc\x5a\xa0\x14\x96\x2e\x23\x87\x2c\xf3\xe3\x7d\x81\x70\x94\x17\xe9\xc0\x66\x93\x5e\x3b\xe4\x6f\x31\x27\x78\x91\xff\x39\xf0\x05\xdc\xe3\x1a\xe4\xfd\x81\x42\x6f\x2f\xd9\x58\xd0\xdb\x02\x1c\xad\x9e\x83\xaf\x55\x2b\x42\xd7\xce\x99\x51\x5c\x30\xcc\xde\xf9\x7a\x53\x87\x38\xda\x3a\x4e\xb3\x80\xa6\x87\x2d\x2a\x75\xf8\x48\xe9\xee\x1e\x57\x58\xe0\xcc\x0e\x4c\x94\xe4\x5b\xaa\x6f\x60\x29\x78\xe4\x24\x04\x8a\xe6\x27\xf5\x87\x8a\x90\xf1\x56\xa0\xd2\x06\x1f\x36\xee\x4c\xb1\xd9\xb4\x70\xe1\x66\xd4\x84\x03\x56\x55\x1b\xfc\xe6\xce\x33\x35\x87\x87\x0a\x89\x2d\x42\xf0\x08\x07\x0b\x95\x42\x85\x9d\xa5\x49\x91\x26\x2f\x46\x83\x2a\x50\xaf\xa6\xc1\x55\x33\x3c\x37\x8b\xf2\x39\x87\x66\x04\x20\x37\x1e\xff\x73\x9a\x20\xe4\xd5\xb6\x74\x5a\xdf\xfa\x35\xa7\x0d\x5a\x4d\x81\x22\x84\x39\xe8\x10\xba\xf4\x1a\x22\x3a\xec\x5d\x81\xd9\x6c\xc4\xc4\xe7\x9c\x5c\x09\x14\xbf\xf3\x4a\x83\x43\xd3\x4e\xb3\x5e\x3d\x3d\xf8\x69\xe9\x0f\xea\x4f\x9b\x12\x9d\x5f\x27\x16\xd1\x96\xb3\x06\xef\x3f\x4d\x4b\x9c\xaf\x97\x7d\xd5\x28\xec\x67\x4b\x79\x6c\xb3\x49\xcd\x3e\x8d\x3d\x20\x87\x91\x77\x6e\x57\x35\x1f\xf7\xed\xb1\xf9\x94\xe4\x6f\x4c\x14\x08\xd5\x3e\x70\x7e\xee\x3f\x39\xe8\x56\x61\x43\xcf\x5c\x94\xe7\x23\x3b\x49\x13\x29\x56\x42\x29\xad\x5d\x53\x6c\x9a\xbb\x3a\xbe\x80\x76\x7f\x6c\x82\x8f\xcc\xc0\x11\x4e\xe3\x5a\x5f\x2f\xbb\x1a\xc2\x21\xa4\x19\xe1\xfa\x09\x0e\x2f\x84\xf9\xd7\x75\x6c\x7c\x8a\xad\x0e\x0e\xa9\x2f\x4a\xef\x4f\x5e\x0f\x14\x64\xfe\x24\x76\xb1\xa8\x3f\xf8\xec\xe2\x1a\xb9\x29\xa2\x1a\xe2\x81\x54\xc9\x28\xb3\x83\x59\x9b\xf5\x26\x2a\xe3\xe9\xa4\x6c\x1c\x51\xca\x5d\xdd\x6c\x77\xba\x99\x57\x30\x1e\x28\xed\xb3\x93\x4a\xfb\xec\xa4\xea\x15\x4c\xb3\x79\x3b\x98\xd4\xaf\x4e\x53\x29\xc3\xe0\x3b\x60\x6f\x20\x0b\x24\x2c\x90\x3b\x1c\x7e\x79\xb2\x75\xe8\x55\x4e\x01\x6c\xed\x54\x56\x87\xe5\x01\xe8\xb3\x9a\xda\x5c\x7a\x5d\xfc\x22\xef\x66\xd6\xb0\x1e\xb1\x48\x74\x54\xc3\x21\xd2\x1d\x3e\x73\x36\x30\x5c\x99\xa9\xd6\x8b\xc4\x42\x64\xb6\x04\xde\xa0\xe8\x2e\xec\x5b\x70\x21\x71\xe4\xfc\xa8\xc6\xa6\xf3\x23\x55\x0b\x1d\x44\x49\x34\x88\xde\xe2\x7c\x5c\x13\xbc\x63\x9c\xbb\xfd\x35\x47\xc9\xc1\x9e\x99\x68\x1b\xb4\x1c\x13\xf3\xb8\xde\xe5\x0b\x2f\xb4\x4d\x3e\x2f\x9f\x70\x44\xae\x5e\xd9\xfa\x92\x82\x30\x98\x2e\x63\x42\x70\x96\x63\xd2\xf9\x7a\x6c\x33\x4d\x4f\xb7\xc3\xd8\x64\xd1\x9c\x83\xea\x33\xa7\x0e\x1c\x3f\x21\xd8\xf1\xfd\xca\xb3\xa3\x38\x8e\xea\xf4\xce\x9f\xf0\x12\xe6\xbb\xb1\xf0\x8d\x2a\x22\x47\x3d\x42\xdf\x11\x4b\xf8\xba\xf9\x15\x07\xb0\x1d\x66\x51\x12\x46\x43\x78\xfd\x87\x95\xb7\xeb\x3d\xdf\xb1\x97\x20\x4b\x34\xcc\x6c\x6e\x58\xd3\x8f\x3b\x39\xd4\x36\xb9\x54\x6e\xa0\x87\x9b\x3a\xd4\x9e\x3a\xb4\xbd\xe5\x28\x74\x3e\xc2\xe3\x60\x89\x71\x15\x99\x7b\xe1\x78\xfe\x45\x32\x42\x71\x38\xff\x5f\x4a\x48\x74\xf7\xb2\xc2\x08\xde\xd4\xdd\xaf\x37\x1e\xdb\xac\x1f\xa6\x83\x61\x6c\x8f\xb6\x7c\xfb\xfd\xa7\x81\x82\x02\x7f\xaa\x8c\x48\xf2\xd2\xc2\x4b\xe4\xfe\xab\x66\x0c\x51\x2a\xbd\x1a\x28\x4f\xcb\xf4\x12\x8b\x10\x93\x0f\x08\x24\xef\xe4\xb4\xf0\xdf\x98\x19\x56\xf7\x73\x3e\x45\xf5\x8d\xc2\xe8\xb7\xd1\xe8\xed\xdd\x4b\x4f\x6b\x32\x59\x27\xf0\x1b\x2e\x06\x8a\xe7\xf7\xe2\x98\xa9\x3c\xbc\x67\xa6\x9d\x8f\x38\x4d\xe6\xc0\xec\xec\xcb\x60\xcb\x5f\x52\xc4\xc7\xe3\x11\x06\x4d\xed\x5c\x6c\xbb\x3d\xef\x4d\x49\xee\xae\xfa\x1c\xb8\x95\x6f\xa9\x96\xf9\x53\xce\x05\xab\xf6\xfc\xc0\x26\x8f\x27\xa9\x7e\x46\x9d\xc2\x51\x32\x37\x22\x56\xdf\xca\x40\x00\x51\xbc\x02\x03\xc1\x37\x4d\x98\x93\xe1\x28\x1b\xa6\xb9\x8c\x08\x3c\xbb\xb7\x4b\xd5\xa9\xf8\xf6\xd8\xd4\xef\x9b\xae\x0e\xc3\x28\x2f\x22\x93\x44\x05\xf0\xd0\x58\x33\x90\x52\x90\x9b\x60\x97\xaa\x65\x87\x5d\x38\xaa\xc2\x36\x4a\xbf\x20\xf2\xca\x2d\x25\xf0\xaa\xe8\xbd\x33\xbb\x08\x73\x21\x82\x10\x64\x2e\xc4\x9c\x4a\xa6\xa9\x88\x32\x6a\x10\xe5\x18\x1b\x4f\xfd\x85\x62\x7b\xfb\x42\x9b\xfa\x81\xed\x81\x99\x4e\xd6\xdd\x84\x17\x15\xbf\xaa\xea\x14\x6f\x8e\x4c\x1c\x15\x4b\x5b\xe9\x85\xa4\x83\xcf\x4b\x95\x88\xf0\x9f\xeb\xf3\x73\x71\xe3\x07\xb4\xcf\x11\xc7\x31\x7a\x04\xce\xea\xfd\x46\x51\xb8\xac\xe7\x0a\x84\x38\xc4\x2f\x2a\x9d\xf0\x8b\x1a\xa7\x6b\x07\x69\x2f\x33\xc3\x7e\x14\x62\x50\x60\xcc\xd1\x79\xc5\xd7\x4d\xcc\x73\x79\x61\x32\xc7\x98\x0a\x63\x78\x19\x27\x31\xdf\xb8\xe2\xd6\x42\x15\xe1\x64\xcc\x59\x23\xdc\xc1\x2a\x84\xf8\x0b\x05\x99\xcb\x87\xd6\x76\x29\x7b\xe0\x78\xf2\xaa\x55\x87\xb5\x7c\x1f\xe9\x5e\xbe\xc1\x4e\x41\x62\xeb\xac\xd2\x01\x7b\x5f\x75\xdb\x9c\x80\x49\xc2\x08\x9e\x1a\xdb\xb9\xaf\xbf\xde\x9e\xb7\x4b\xb3\xa9\xc9\xba\x93\x2a\x6a\x86\xb6\x83\x63\x6b\x72\x49\x15\x30\x09\x08\x19\x88\x4e\x2d\x85\xe9\x80\x3c\x55\xd8\xc8\x0b\x00\x78\x60\xac\x8f\x07\x9e\xcb\x0e\x0a\x6c\x0e\xd6\xea\xff\x06\x8f\xc9\x9f\xfe\xcf\xf4\xba\x47\x49\x0d\xd6\x5e\x2a\xbf\xf5\xb2\x8a\x16\xc2\xd4\x84\x7d\xcb\x41\xa5\x28\xb7\xb6\x94\xa2\xab\x6f\x99\x1c\x98\xb0\x1f\x25\x36\x5b\x82\xa8\x13\x57\x58\x50\x3c\x00\x4e\x01\xaa\x74\x52\x7a\xf1\xd0\xa7\xe3\xb4\x42\x04\x31\xec\xe9\xfd\xb2\x34\x9c\xb7\x73\x55\xa0\x04\x4a\xd2\x75\x52\x4c\x98\x59\x1f\xa7\xc7\x24\xdd\x95\xc1\x30\xca\x10\x0d\xb8\x76\x16\xdf\xda\x12\xf8\x32\xf4\x9b\x0b\xa1\xa6\x42\xd5\xf5\xd0\x77\xc6\x8f\xbd\x57\x0f\xb6\x33\x9b\x47\x5d\xa1\x1b\x73\xfc\xcf\x9e\x55\x47\x49\x82\x86\x59\x54\x44\x61\x94\x0f\xb6\xf8\x4e\x80\x93\x14\xad\x01\x64\xf0\x76\xa0\x5a\xd4\x15\x4d\xf5\x47\x8a\x1c\xfc\xed\xc6\xd7\xcb\xc3\x94\xd9\xec\x5f\xe3\xe2\x00\x13\x3e\xf0\x8d\x43\x2d\xf6\xb2\x74\x71\x8b\x6a\x21\x42\xb7\x3f\xca\xf4\x5b\x3b\x9a\xda\x10\x9f\x17\xa2\xe8\xea\x61\xb0\x21\x6a\xed\x0a\x76\xd4\xb3\x69\xa1\xa8\x32\xaf\x6a\xaa\xcc\xab\x8a\x70\x7f\x31\x8b\x8a\xc2\x26\x38\x3f\x6a\x15\x13\xe0\x5f\xfe\x45\xe9\xfb\x61\x56\xea\x15\xba\x84\xf9\x82\x9d\x8c\xa7\x1b\xbc\x77\x15\xa4\x31\x1f\xa6\x45\x8b\xd5\x4c\x5a\xfb\xf7\xaf\x5f\x1b\xab\x99\x1f\xd8\xd3\xb6\xc9\x1b\xe9\x12\x9d\x83\x80\xfa\x3c\xc2\xee\x16\xb1\xc2\x96\xa7\xad\x6b\xaa\x2b\x2e\x44\xb6\x48\xcc\x40\xb3\x87\x96\xaa\x4e\xbc\xaa\xda\x10\x17\xcd\x3c\x29\x77\x1e\x74\xf0\x13\xd5\x87\x86\x96\x50\xc4\x49\xeb\xa5\xe2\x33\xe2\x4c\x86\xa0\x54\xbe\xea\xd1\x20\x51\x1e\x66\x76\x68\x92\x90\xbd\xc4\x69\xd7\x30\xe1\x93\x38\x97\x94\x13\x52\x98\x5c\x78\x20\x60\x07\x5a\x70\xa8\xf8\x66\x79\x03\x09\xd1\x91\x99\xea\x9c\x87\x1b\x8f\x8a\x31\xf7\x6b\xf1\x8d\x07\x11\x13\x3c\x9d\x6b\x52\xae\x49\xcf\x73\x74\xf8\xec\xce\x9c\xc9\x42\xc0\x13\xc4\x41\xf6\xda\xd9\x48\x9d\x32\x45\xa4\xca\x7b\x24\x66\x40\x4c\x3c\x7b\xf7\x72\xa0\x76\x9b\xac\x17\x5f\x37\x24\x69\xbe\xde\x9e\x8b\x98\x96\xc2\x31\xc4\xbb\xfc\xc2\x95\xf2\x49\x1f\x28\x84\x22\x0c\x21\x44\xa3\xaa\x88\x3c\xce\x34\x7a\xe8\x55\x70\x42\x2a\xc1\xa9\x6d\x1d\xdf\x2e\x06\xce\x14\xc4\x0a\x27\xc7\x8a\x5e\x7b\xa7\xda\x79\x3f\xcd\x8a\x39\x13\x43\x71\x00\xe6\xe3\xa1\x92\xc3\xe2\xe6\x58\x44\x3e\xd7\x14\x79\x59\x92\xce\x66\xb6\x67\x26\xbc\xbe\x27\xef\x28\xa4\x6b\xef\x93\x55\x00\x6e\xe3\x6c\x53\xf7\x5f\x98\x26\xa1\xed\x5a\xcd\x76\x70\x59\x89\xff\xb3\xac\x2f\x4e\xad\x71\xa6\x57\x39\x01\xd2\x6c\x1b\xfd\xa8\xeb\x46\x75\xd2\xde\xa8\x7e\x2a\xca\x03\x2f\x39\x55\xcd\x1a\x55\xbb\xdf\x46\x4b\x0c\xbc\x75\xee\x32\x79\x9c\xe2\x23\x19\xaf\xbe\x8d\x04\x71\x2b\x51\x92\x8a\x98\xc6\x0b\x79\xaf\x1e\x6c\xcf\x66\x29\x45\x59\x74\x52\x33\x12\x3a\xf0\xcd\x1c\x47\x1b\x7e\xc8\x11\x3d\xa9\x52\x3a\x52\x0e\x7c\xdd\xd0\xd4\xd8\x1e\x25\xdd\x11\x79\x66\x33\x7e\x34\x0f\xec\x91\x6b\x9d\x89\x8b\xf2\x30\x1d\x25\x05\x99\x76\x9c\x7f\x77\x02\xcf\x4a\x8a\x73\x11\x0b\x19\xa1\x14\xff\x3b\xd9\x85\xf5\x33\xa5\xce\xc1\xbd\x39\x8a\x32\xbb\x8d\x1e\x13\x01\x10\x34\x47\x81\x07\xfc\x79\xa0\x82\xed\x35\x80\x0c\x90\xfa\x3c\xaf\xd4\xce\x6f\xd1\xc6\xe1\x7f\xd7\xf2\x16\x9a\xf6\xb4\x1b\xe5\x89\x5d\x52\x1c\x46\x57\xeb\xed\xc4\xcf\xd7\x34\x59\xe6\xe6\x2c\x8b\x95\xee\xdf\xef\x72\xb9\x2d\xc7\x02\xb1\xaa\xe0\x2a\x5c\xa5\x2c\x52\x21\x49\x61\x92\x83\xa0\xc6\xda\xe8\xd1\x45\xa3\x84\x18\x6f\x48\xf7\xd3\x79\x31\xef\x29\x2f\xe6\xbd\xa6\xfa\x78\xd7\x86\x82\x1a\xc7\x31\x75\x5f\x01\x9c\xef\xab\x9c\xac\xc9\xb2\xb4\x67\xaa\xb9\x99\xf6\x99\x09\xa5\x6f\x71\x49\x91\x30\x71\x43\x88\x94\xab\x68\x7d\xb1\x2a\x78\x93\x3c\xce\x20\x4a\x84\xaa\x4f\x1a\x0b\xb4\x68\xcd\x58\x56\x67\xef\x5e\x22\x0c\x20\xbb\x02\xaf\x7d\x13\xd0\xc4\x0e\x2a\xea\xfa\x3d\x6e\xa8\xc3\xcd\xc4\x79\xfa\xb4\x37\x25\x27\x14\x99\xc7\x7d\x60\x96\x71\x04\x70\x4e\x49\x84\xeb\x2a\xff\x70\xfd\x1a\xfa\x46\x94\x7e\xdf\xb4\xa3\xa3\xa7\xd7\x93\xbd\x49\x0f\x8e\x55\x02\x17\x54\x30\x29\xb4\x28\x38\x35\x4b\x32\xff\xa8\xfd\x7f\x17\x63\xa8\x0a\x5b\xe2\x27\x6f\xeb\x78\x8c\xc4\x05\xaa\x12\x0b\x47\xea\x46\x43\x3b\x73\x60\xa6\x9d\xd2\xa2\x3a\xb0\x47\x83\x19\x7d\x3b\x75\x43\x1a\x31\x8d\xdd\xd6\x97\x86\xf5\x96\xe3\x5b\xb8\xaa\xce\x93\xd8\x2c\xe6\x69\xb2\xa5\xfa\x6e\x81\xf8\x29\x96\x71\xd6\xc5\x64\x36\x0b\x6c\x2b\x38\x2e\x0f\x95\x29\xf1\xc4\x8f\x8b\x51\x92\x90\x30\x69\xcb\xaf\xa3\x0b\x4a\x10\xe6\x82\xf2\xd5\x63\x53\x44\x49\x4b\x95\x1e\x56\x55\x8b\xc5\xaa\x6a\x2f\xcb\x47\x21\xe7\x6f\x61\x85\x2e\x52\xdd\x8e\xaf\x95\xef\x18\xdb\x05\x9b\x99\x9e\x05\x0f\x2c\x36\xf9\x9d\x40\x71\x13\x00\xcb\x06\x07\xea\xc3\x6a\x19\xad\x6f\x43\x3e\x84\xff\x89\x8e\x5f\x47\x49\xec\x64\x04\x2e\xbb\xbc\xd5\x7c\x96\x26\x69\x46\x0d\x0d\x82\x55\xae\xbe\x11\x63\xb5\x46\x8f\x25\x2d\xe4\xca\xa4\x3f\xd9\xf1\x69\xbb\xa9\x03\xcc\xe3\x07\xaf\x61\x82\xbc\x78\xe9\x9e\x27\x1b\x84\x83\xf9\xae\xb2\x41\x83\xb4\x88\xc4\x73\x15\xb4\x9f\xc2\x4a\xe9\x1e\xcc\xbe\xe9\xee\x72\xd5\xc4\xff\xff\x33\x80\x58\xe3\x10\xfe\x87\xd8\x44\xf0\x0a\x9f\xeb\xa8\x42\xda\xd3\xd4\x2b\x03\x9f\xb6\x45\xed\x99\xae\x3e\x75\x78\x8f\x90\x79\x70\x34\xac\x3a\x63\xbd\x16\x70\xbd\xbf\xd2\x11\x93\x9c\x25\x50\x61\xb5\xb9\x66\x0e\x38\xf2\xfc\x31\xfc\xc0\x81\x3d\xed\x28\x31\x61\x38\xca\x4c\x01\x67\x42\x2a\x5d\x0a\x2c\x87\x3c\x0a\xcc\xd6\x3d\x75\xa4\xd8\xa3\x21\xd8\x5d\x68\xff\x0a\xd1\x07\xed\x39\xa7\x8c\xec\x16\xdf\x95\x92\xd2\xea\xfc\x57\x63\x04\x0e\x87\xf7\xb4\x07\xc4\x57\x77\x78\x8f\x6f\x27\xab\x86\x4c\xa1\x52\x60\x69\x06\xc3\x18\xc2\xc4\x08\xbf\xb6\x77\x6a\x24\x38\x8a\x1b\x05\x79\x56\xd7\xef\x74\x44\x20\x99\xc7\x1b\x68\x1a\xdb\xdd\x74\x34\x1b\xdb\x49\x2f\x36\x76\x97\xcc\x02\x1f\x69\x4a\x20\xe8\xf7\x54\xe3\x6e\xa3\xc2\xc7\x6c\xca\x10\x21\xa1\x39\x55\xd5\x97\xb3\x63\xc7\x84\x23\xe5\x24\xd2\x0c\x6a\x75\xff\x0f\x44\xf2\x2b\xa2\x87\xeb\x3b\x2b\x8b\xb6\x7e\x86\x7e\x16\xd6\xeb\x51\x1d\x20\x5c\x99\x19\xe9\x66\xf2\x6c\xe6\x57\x54\xdf\x55\x48\x68\x73\x4a\x27\xa0\xe5\xf4\x76\xa9\x0a\x7b\x80\xf5\x88\x60\xb8\xef\x9d\xbe\x8c\x44\x23\xf6\xca\x39\x1a\x0e\xf0\x35\x6c\x5f\xf6\x91\xf0\xe6\x8e\x74\x63\x75\x23\xd8\x1d\xee\x70\xa5\x8a\xac\x74\xbb\x36\xc8\xd0\x59\x43\xcc\x4b\xaa\x53\x05\x92\xce\xae\xeb\xde\x33\x3f\x5c\x6f\xea\xdf\x4b\x49\xff\x98\x29\x9d\xf1\x05\x1f\x29\xe1\xb7\x8f\xea\x52\x60\xa3\xc1\xa4\x07\x22\xaf\x6a\xc1\xee\x40\x55\x03\xca\x1a\x66\xa6\x89\x9c\x6f\xb1\x6f\x8a\x56\xb5\x94\x14\x79\xb8\xf7\x30\x7d\x15\xbc\x5a\xa4\x4e\xc9\x4e\xa8\x2c\x55\xab\xd3\x38\x97\x65\xe5\x34\x56\x3e\x9a\xcd\x1c\xd9\xa7\x74\x6c\xaa\xb6\x71\xad\x42\x4d\x6c\x52\xd5\x10\x4e\x3b\xc5\xf2\x73\x4a\x98\x19\xe4\xd2\x42\xb5\xd9\x44\xc4\x81\xfe\x72\xfa\x29\x87\xa9\x75\xf8\xb4\x07\xca\x5d\x32\xd9\x6c\x54\x64\x26\x8b\x58\xd3\x6c\x9d\xc0\x2c\xeb\x97\x15\x8c\xaa\x17\xa7\x79\x0e\x75\x09\xfc\x3c\xf8\xa6\xf8\x5a\x35\x12\x8e\x86\xbd\xcc\x74\x6d\x97\xa3\x1d\x39\x45\xf5\xf1\xea\xa3\x22\x13\x16\xba\xfb\x9e\xdb\x08\x04\xbb\x50\x7d\x06\xe7\xf6\xb7\x4b\xaf\xbc\xfc\xed\x40\xcf\xbc\x2d\xf2\xaf\xd2\xf8\x39\xd0\x6b\x65\xd7\x60\x14\xa0\xa9\x09\xd3\xf9\x65\xa0\xba\xe1\x6f\x12\x10\x04\xae\xcc\x3a\x2d\x10\x54\x38\x1f\x6e\xb0\xc3\xd5\x12\x77\x14\xa8\x95\x9f\x0b\x33\x0b\xed\x00\x97\x99\x38\x30\xe3\x14\xd1\x55\x27\xff\x5d\xc0\x6a\xb1\x8b\x8e\x69\x50\xc6\x93\x60\xf1\x60\x12\x7d\x44\xdc\xd2\xcf\x5e\x4d\xaf\x53\x79\xae\x0c\x2d\xb6\xea\x8a\x16\x3b\x39\x4e\x23\x0f\x1a\x97\x67\x69\xab\x22\x61\xfc\x3e\xb1\x15\x0a\x77\xf4\xf3\x1a\xbb\xdd\x37\x49\xcf\x8a\xfc\xa4\x38\x71\x67\x94\x5d\xb8\x1c\xd4\x78\xf7\x36\x1e\x23\x53\x87\xaa\x88\x92\x00\x89\x92\x82\x87\xf3\x78\x4e\xe9\x97\x3f\x52\xdc\x49\x37\x14\x9e\x63\x10\xc5\x51\x61\xb2\xa5\x1d\xf4\x39\x6c\xc5\x07\xaa\xbf\xf2\xa2\xea\xaf\x9a\xe8\x28\xd0\xf5\xe5\x52\x6b\x6c\x63\x3d\x88\x03\x41\x8f\xcb\x8c\xe6\x34\x83\xe2\x4d\xa8\xb2\x5d\x6b\xd9\x8b\xf5\xbf\x61\x8b\x7a\x2e\xc0\x25\x89\x7f\x02\xab\x80\x39\x3f\xad\xea\xa7\x99\xcd\x23\x86\x43\x55\xf3\x25\x39\x45\x9a\x16\x49\x36\x8e\xd3\xf3\xb7\x4d\x52\x44\x61\x34\x34\x45\x5d\xae\xe4\x9a\x92\x2b\xb9\xa6\x12\x25\xb3\x94\xbe\xe3\xdd\xa2\xd9\xbb\xc4\xff\x70\x62\x01\xfd\xa5\x3c\x0a\x23\xc3\x3c\xb8\xac\x07\xa8\xe0\x53\xdb\x3b\xfe\x08\x69\x2d\x37\x70\x0e\x8c\x86\x79\x68\x58\x0f\x88\x23\xe8\xa0\x5e\x54\x75\x79\x5e\x43\x6a\x6f\x4e\xf8\xfd\x2e\x1c\x75\xcc\x17\x00\x85\x22\x40\xd9\xa0\x83\xc4\xe8\x11\x7a\x79\x24\x38\xb9\xcd\x85\x6f\x54\xb3\xfc\x30\x4b\x0b\x4b\x83\xac\xdf\x8a\x59\x30\xb4\x7e\x21\xe6\xed\x6e\x13\x95\xc2\xbc\x8d\xe3\xb4\xd7\xa3\xc7\x75\xd0\x46\xc7\x23\xc0\x12\x51\x70\x42\xef\xb9\xd1\xec\x46\xf9\x20\xca\x73\x49\xec\xa3\xa8\xcd\x4a\xa9\x7c\x33\xf6\x5b\xd3\xd3\xed\xa2\x1f\xd9\x05\xb1\xfb\x12\x0b\xd1\x93\xf3\x8d\xe6\xb5\x8b\x6d\xb7\xe7\x0c\x21\x0c\x01\x87\xc2\x7c\xd3\x00\xf3\x9b\x69\xcf\x3a\xd0\x2f\xe6\x85\x1d\x0c\xbe\x71\x42\x37\xa1\xc9\xba\x91\x09\x27\x5b\xbf\x3e\xe5\xb9\x0b\x0e\xef\x11\x18\x1b\x8d\x00\xe2\xc6\x27\xc8\x0d\xc6\xf5\xba\x07\x18\xa7\x31\x25\x83\xab\xdf\x72\xad\x8e\xbb\x3b\x7e\xe0\x76\x2f\xfb\x6a\x0e\xbc\x27\x34\xba\xc3\xe1\xfd\x6d\xec\x03\xbe\x71\xe9\xb9\x7c\x98\xa5\xa3\x02\x79\x3c\xe1\x66\xad\x76\xa7\x70\xb6\x36\x78\x66\xb3\x76\x2e\xcd\xa0\x55\x0a\x6f\x0c\xd9\x66\xb0\x02\x3d\xd5\x51\x1d\x6d\xb0\x00\x88\x36\x26\xd5\xd3\xe5\x44\x08\xb9\xa4\x85\xc1\xe0\x02\x88\xfa\x83\x77\xe1\xf7\xff\x97\xff\x64\xc2\x43\x88\xd0\x6b\xcc\xc9\xe0\x52\xd1\x77\x5e\x6e\x52\x21\x31\xbd\x34\x89\xde\x72\x09\x1c\x38\x32\xa0\x23\xe1\xeb\xce\x2e\xad\xdc\xc9\x72\x07\xe2\xae\xd1\xd3\xf1\x8d\xda\xff\x8b\xa6\xe8\x5b\x2e\xa6\x3b\x47\x42\xa9\x9a\x3e\x46\x0f\x65\xc1\xc4\x92\x7b\x80\x07\x8d\x2a\x20\x5f\xab\xba\x17\x13\x59\x0e\xa4\x42\x00\x97\x0d\x6c\x9c\x7c\xed\x2a\x58\x64\xba\x46\x31\xbe\x16\x67\xe8\x35\xe5\x64\x5f\x73\xbc\xb2\x26\x8e\x6d\x8f\x30\xfe\x9c\x36\x03\xc9\x06\x80\x97\x7c\x3d\x36\xd7\x47\x66\xda\xfd\x28\x93\xf0\x55\xba\x71\x74\x6b\x8e\x72\x69\x07\x69\xd2\x35\x4b\x3b\xab\xc3\x15\xab\xfb\x6f\x15\xdd\xc6\x23\xec\x53\x9c\x0b\x5f\xd0\x02\x53\x28\xf0\xd7\x38\x87\xc0\x28\x5c\xa7\xd6\xe3\x50\xfd\x9b\x3a\x0a\xb0\x78\x06\x50\x2e\x1c\x61\xd7\x03\xef\xf9\x1e\x6b\xf2\x4a\x49\xd2\xc7\x66\xa2\x51\x8b\x4f\xbd\xab\x79\xf9\xdf\xf5\x48\xe7\x68\xde\xc6\x4b\xdb\x7d\xd1\x73\xad\x74\x7e\x69\xf8\xb5\x65\x5f\x6e\x38\xa3\xc5\xed\x97\x4b\xc5\x7c\xf8\x65\xe9\x02\xa1\xf3\x2f\x10\xe0\xb3\x56\xe5\x40\x4a\xe5\x98\x4a\x64\xe5\xc3\x34\x2b\xf2\x45\x6b\x32\x2c\x52\xc1\xaa\x6a\x10\x6b\x13\xb6\xb8\x6f\x1c\x11\x11\x36\xe1\x59\x3c\x06\xdf\xa8\xfa\x54\x1c\x21\x3a\x13\x7d\x9c\x96\x92\x4c\xa0\x87\x42\xa8\x7b\xa3\xf4\xf8\x93\x63\xa5\x8a\x87\x8f\x35\x35\x7a\x56\x0e\x4a\x62\xe3\x96\x16\xbc\xe0\x2e\x5e\x51\x23\x6f\x4a\xc2\x2e\x46\x89\x4f\xa8\x36\xe9\xc4\x48\x50\x99\xa5\xa1\xb4\x3a\x60\x5b\xfd\x11\x0d\xac\xf8\x0c\xbe\x0f\xe6\x62\x4d\xd9\xac\xdb\xb5\xcc\x76\xab\xd5\xea\x1d\xad\x42\x13\x29\x7b\x3f\xca\xba\x94\xe6\x43\x9e\x7d\x1b\xfa\x43\x9d\x46\xbf\x43\xa3\x3c\x0a\x3c\x9b\x13\x84\x31\xd7\x3f\x51\x44\x8b\x73\x24\x64\xb2\xad\x9a\x71\xc4\x3b\xdc\x27\xaf\x14\xfa\x67\xbc\xb8\xc8\x01\xe1\x0f\xfb\x19\x7d\xab\xee\x94\x15\xbe\xe5\x96\xd3\x9b\x19\x1f\xca\xea\xd4\xe9\x47\x83\xdc\xc6\x73\x3c\x03\x8e\xf5\xb9\x72\x61\xa5\x8e\xe8\x06\xd3\x12\x38\xf7\x48\x0d\x2a\xec\x23\x26\xdf\x15\x10\x25\x45\x16\x85\x94\x78\x70\x15\x71\x16\x8f\x76\x39\x7b\x87\x22\x5e\x57\x6f\x1f\xa6\xc9\x82\x3d\x0a\xcb\x82\x5d\xfa\x67\x81\x47\xda\xff\x99\x6b\xda\xe8\xda\x3c\xea\xb9\x28\x13\x35\xed\x5f\x52\xc5\xeb\x49\xa4\x68\x70\xf8\xec\x5e\x96\xa3\x2f\xb1\x45\x11\xdb\x3c\x65\xee\x34\x19\x3a\x25\x79\xf3\x33\x05\xcf\x04\x4e\xdb\xe5\xab\x6e\x05\x0a\x93\xf0\x3d\xbc\x3a\x7e\xe0\x2f\x4b\xe7\xff\x7e\xfc\x6c\xc7\xf7\x3e\xee\x5c\xae\xa2\x0d\xc1\xc7\x50\x1c\x81\x57\xfe\x44\x49\xc7\x8f\xeb\xfa\x56\x31\x74\xcc\x2c\x68\x70\xf0\x91\xb7\x07\x4e\x46\x73\xe0\x8d\x43\x39\x2b\x7f\x3d\x8d\x23\x28\x60\x08\xad\x6c\xcb\x75\x79\x8e\x7b\x87\x87\x5e\x6d\xe7\xb1\x45\x6b\x8a\x03\xac\xde\x55\x11\xe6\x5d\x55\xf9\x8e\x92\x85\xca\x67\xeb\xc9\xcc\xa2\xc6\xcb\x25\x25\x54\xe9\xef\xab\x48\xf3\x52\xf9\x8b\x1b\x3b\xdf\x24\x2d\xf2\x0b\xba\x1f\xfc\x87\x81\x72\x12\xbf\xb2\xac\x54\x25\xb6\x80\x7b\x9d\xf9\xaf\x14\x5a\xff\x38\xbc\x10\xd0\x02\x82\xd8\xdf\x69\x63\x7b\xce\xaa\x9f\xd0\x58\xe1\x8f\xce\x05\xaa\x32\x75\x1f\x8d\xb9\xc2\x55\xa8\x14\x0a\x3e\x87\xc3\xcb\x88\x5c\xd8\x42\x78\xbf\x37\x74\x84\x71\x83\x32\xdc\x4c\x07\xb1\x16\x50\x06\x8c\xf5\xd8\x28\x18\x83\x13\x73\x03\x47\x8c\xb0\x82\xf8\x04\x27\x98\x33\x84\x46\xc0\x37\x7c\xdf\xa0\xd3\x99\x61\xe2\xc1\xb3\xce\x65\x9d\x9b\xa3\xe3\x39\xb2\x9c\xe6\x44\xb8\x06\xb0\x82\x10\xcb\x2b\x46\xb4\xfb\xce\xa3\xb7\xd5\xa1\x15\x2f\x4d\xb8\x02\xe0\xff\xf8\x8b\x94\x21\x27\x1c\xc8\xbd\xe7\x6b\x67\xd1\x46\x8d\x83\x43\xaf\xb6\x4d\x04\x38\x21\x8e\xd2\xfb\x0a\x13\x7c\x3f\xf0\xb8\x40\x48\x99\xe5\xdb\x95\x26\xd9\xb7\xb5\xf4\xfa\x25\xc4\xe6\x38\xb4\x50\x8d\x95\xbe\x0f\x0f\x0c\x43\xa5\x89\x49\xfa\x3b\xca\x11\x62\x66\x3e\xc9\xb1\x37\xa0\x55\xe7\x62\xbb\xd8\xf2\x31\xcb\x05\x9c\xaa\x7c\x13\xd4\x91\x40\x61\x66\x7c\x25\x1b\x5e\x81\x2e\xc2\x8c\x2b\x3d\xec\xdd\xdb\x8e\xc5\xd0\xc0\xb8\x7c\xbb\xf4\xc4\x08\x8c\xc4\x14\x2d\x70\x7f\x1e\x53\x13\x5f\xba\xc4\x49\xd4\x03\x9c\x7b\xc2\xc6\x12\x92\x07\x32\xb2\xc2\xf2\x40\x2f\xc9\x7f\xa5\xc0\xab\x79\xdf\x66\x03\x23\x75\x6f\x27\xc2\xe1\x33\x8f\x13\xcb\x3e\xe0\xee\x47\xbd\x7e\x6c\x12\x50\x97\x63\xa3\xc0\xdf\xe3\x6b\xe7\xef\x8d\x12\x9b\x74\x5d\x44\x8f\x13\xfd\x43\xa5\xa3\x8c\x9a\x81\x68\xff\xec\x56\x27\xe3\x9c\x2f\x3b\xc1\xb7\xb9\xab\x90\x49\x77\x3d\xdd\x5f\x66\x0b\x73\x94\xfc\x05\x9a\xe9\x7f\xf7\x0b\x1d\x5f\xef\xdc\xb1\xac\xb8\x54\x8e\x51\xf9\x56\x20\xc3\xb4\xba\x51\xbf\xbd\x53\xc3\x62\x14\x69\xfa\x54\x75\xdc\x49\xb6\xcc\xb7\x7f\x7f\x56\x7a\x5e\x33\x4e\x7f\xc2\x46\xf3\x86\xc5\xb6\x64\x6a\x15\xd4\x95\x11\x9a\xa0\xc8\xc4\xcc\x24\xf0\x5d\xaf\x07\x9e\x30\x05\xa5\x24\xe4\xb9\x1e\xd5\xb0\x83\xb4\x16\x60\x93\x58\x3f\x4c\x24\x6c\x5b\x8e\x1b\x68\xd7\xb2\xf7\x27\x4c\x46\x30\x1d\x32\x12\x0e\x48\x56\x19\x06\x01\x92\xe9\xbc\xd6\xbc\xcd\x77\x83\x74\x00\xa7\xfc\x66\xd8\x43\x3c\xf8\x5d\xcd\xb1\xca\x6a\x58\x78\xf3\x9b\x4a\x7f\xe5\x41\xa0\x4e\x3f\xe6\x21\x66\xa9\x4f\xda\x7c\x08\x5a\x6e\x50\x32\x8b\x09\x01\x19\xe7\x2a\x81\x67\xcb\xf1\x68\xfd\x61\xe0\x25\xe8\x8f\xc3\xc6\x60\xc1\xb6\x54\x79\xe3\x8f\x61\x34\xb1\xc1\xcf\x97\xde\x62\x5c\xc5\x1a\xe7\x37\xe9\xa8\xe2\x53\x74\x14\x00\xc8\xf5\x6b\x41\x6b\xef\xd4\xfa\x35\x05\x33\x8e\xd3\xcc\x26\x6f\xa5\x54\xfa\x66\x22\x8b\xc0\x07\x2d\xa7\x54\xc1\xda\x14\x85\x09\xe7\x59\x72\xdd\xd1\x0d\x1d\x98\xf1\x44\xaa\xfe\x6d\x55\x7d\x13\x79\x23\x29\xe0\xa9\x87\x32\x0b\x55\xd4\x4e\x83\x2f\xc8\x45\x7a\xfe\xc7\x71\x61\xb0\xfc\x31\xb7\x12\xc1\xcd\xc6\x14\xad\x9f\x29\x3d\x83\xd5\x38\x90\x60\xef\x5e\x52\x79\x88\xe6\xa2\x90\x6a\x33\x38\x3b\x91\x97\x43\x6a\xfc\xae\x8a\xea\xc6\xb3\x4d\x4e\x32\xab\xb0\x71\x98\x4e\xe8\x48\xac\xf4\x07\x33\x2b\x85\x63\xdc\xee\xd4\xf2\xe6\xdd\x48\x22\x19\x54\x6c\x51\x92\x90\x1b\x67\x27\xaa\x70\x73\x30\x04\x53\xea\x6b\xf5\x52\x0c\x36\x1f\x58\x81\xe0\x6b\x9e\xd1\xb9\xb9\xf1\xc6\x26\xc8\xcb\x74\x01\x0d\x52\x00\x1e\xe7\x24\xab\xce\xf5\xcc\x82\xbb\x3b\xef\x47\x43\xa2\x2d\x14\x1f\x9f\xdc\x01\x71\xf2\x9f\x76\x4e\xfe\xac\xcd\x8a\xdc\xb1\x57\xe3\xd1\x90\x21\x13\xca\x64\x45\x5a\xbc\xa6\x52\x35\xb3\x11\x41\xda\x9f\xf4\x3d\x81\x1c\x23\x8a\xe2\x89\x27\x0f\x40\xb8\xc9\xd7\x00\x40\x72\x49\x0d\x67\x1d\xce\x1b\xa6\xc9\x86\xa1\xbb\x13\x28\xf2\xae\x3b\xba\xe9\x68\x13\x55\xb3\xa5\x20\xb1\xf9\xeb\x0c\xcc\xdc\x5e\xeb\xa1\x69\x2a\x59\x0f\xa2\x9c\x75\x8b\x1d\x10\xe2\xc0\x1e\x57\x59\x54\x82\xf7\x69\x56\x44\x03\x89\x62\x1c\x0e\xb8\x7a\x1c\xc1\x01\x7b\xb7\x7b\xc1\x26\x44\x6a\x7d\x44\x49\x3d\x78\xc9\x4b\x90\xb1\x89\x7a\x7f\x4d\xa5\xfb\x3f\xc3\x63\xda\xd0\x8a\x55\x9d\x1d\xa4\xab\xd5\xaa\x09\x45\xb7\x1c\x79\xcc\xea\x58\xf5\x70\x7a\x9a\x70\x56\x5b\x7d\x3d\x97\x35\x0a\x5c\x76\xbe\x1a\x0a\x38\x68\x3f\x2c\x6b\xd0\x81\xea\xbd\x55\x09\xf8\xa0\x6b\xf7\xda\xe5\x82\x88\x24\x89\xd8\xa1\x12\x65\x5e\x0f\xcd\xe4\xec\x1b\x33\x76\x07\x1e\x11\xd7\xcb\x4c\xd2\x0d\xfb\x51\xdc\xcd\x6c\xa2\x2a\xab\x8c\x59\x46\xbf\xec\x2d\x55\x20\x3d\xd9\x54\xa3\x21\x9c\x96\x60\x09\xa4\x2b\xa2\xa5\x1a\xca\x25\x66\x61\xe8\x9f\xcd\x75\xcc\xc2\x45\x0d\x61\x95\xf3\x0c\xbd\xc4\x8a\x15\xf6\xed\x80\x54\x0d\x55\x5b\x43\xad\x8b\xc6\xc9\x1a\x46\x85\x1d\x4c\x56\x33\x2d\xde\x4f\xf5\x13\xcc\xe8\x51\xd6\xe0\x28\xd5\xa7\x01\x97\xdd\xd6\x91\x47\xb3\xa3\x2c\xa5\xc6\x2a\xce\x05\xe1\x75\x7f\xae\xdb\x5e\x7f\xae\x80\xf6\x79\x62\x0a\xc8\x17\xf9\xbc\x23\x77\xfe\x0a\xcf\xe7\xc6\x0c\xc5\x8b\xed\xcc\x24\xbd\x0d\x54\xad\xa7\x68\x9c\xf8\xba\xd6\x9d\x3d\x6b\x93\x62\x94\x81\xdb\x65\xca\xc1\x8e\x68\x77\x3a\x5d\xa6\xea\x7b\x84\x16\xd0\xe3\xea\xbe\xa7\x58\x0c\x6e\x34\xc6\xc9\x99\x0d\xd3\xac\x9b\xb3\x89\x41\x1a\x91\x75\xd2\x25\x07\x46\xaf\x82\xf9\xbf\xa1\x78\x0a\x67\xad\xe1\x9e\x56\x09\xa8\x95\xfc\xca\xaa\xe6\xa0\xb0\x4c\xd5\xed\x00\xed\xee\x18\xbe\x58\xb3\xde\x71\x5a\xe3\x93\xbf\x49\x2f\x82\x68\x82\x05\xda\x70\x60\x73\x62\x06\x75\xa5\x75\x3e\xe3\x51\x2b\xbf\x57\xaa\xea\xfa\xe9\x1a\x08\x8c\x64\xe2\x31\xa3\x8e\x3c\x40\x65\xd8\x1b\xf0\x50\xc3\x2c\x1d\xda\x6c\xc2\x43\x2b\x77\x74\x3c\x3c\xab\x85\xaa\x97\x74\x2e\x35\xea\xd3\x0d\x87\x59\xba\x20\x2d\xb9\x8e\x53\xab\xda\xda\x08\x27\x18\x1e\x26\x14\x53\x62\xf8\x4d\xd6\x23\x0a\x6e\x5e\x7f\xc2\xab\x58\xed\x49\xc9\x8c\x8f\xaf\x28\xea\xdc\x1a\x01\xba\x89\xc8\x1e\x6c\xf4\x7c\x3d\x66\x75\xa7\xa7\x0f\xb6\x87\xf1\x28\x27\x5a\x28\x78\x6c\xd7\xf0\x6c\x42\x5d\x52\x99\x47\x31\xaa\x0d\xb8\x81\xf9\xa8\xcb\x0f\x08\x1b\x8a\xe1\xe4\xeb\xf2\x49\x4d\x58\xf1\xac\xd2\x14\x5c\xa9\x27\xe2\x14\x59\xfc\x9a\x16\x18\x94\x5a\x19\x70\xea\x3f\xf7\x09\xbf\x03\xbf\xd0\x69\x1d\x91\xd3\xff\x1e\xd9\x70\xc4\x2f\x35\xe6\x9c\xfb\x14\xae\x62\xc8\xcf\x29\xcd\xb4\x87\x81\xe2\xe8\x06\xef\x0a\x5c\xba\xf5\x52\x01\xa9\xef\xe0\x40\x86\xcd\x7f\xba\xd3\x7a\xf9\xc8\xfa\x09\x72\xcd\x45\x41\xa4\x9a\x0a\xf8\x88\x2b\x3e\xf1\xf6\xe4\x2f\x37\xa8\x14\xb6\x4d\xf7\x0d\xaa\x5b\xf3\x58\xb1\xbe\x3a\x5c\x59\x11\x5b\x1f\x2f\xcc\x1c\x84\xaf\x00\x7c\x09\xc6\xea\x24\x0e\x05\xbe\x51\xba\x60\x89\xcd\x98\x82\xdc\x6b\xc1\x3b\xa3\x78\x5b\x97\x8b\x3e\x0f\x9e\x50\x14\x44\x1a\x23\xb4\x81\x46\x61\xac\xcb\xfe\xd5\x83\x6d\xa2\x30\x26\xf9\x02\x58\x3a\xd7\x8b\xed\x63\x9b\xbf\x55\xe2\x1f\xfd\xa8\x60\xc6\xc0\x69\x47\x51\x49\xbf\xc1\x37\x63\xbf\x71\x78\xcf\x2b\x6d\x33\xd7\xeb\x9b\x24\xca\x0b\x93\xd4\x44\xac\x4b\x95\xa3\xf8\xc4\x95\x8c\xf2\xca\x4d\x66\x3d\x7a\x61\x3e\x50\xfd\x39\x27\x14\xd4\x69\x10\x2f\x6d\xf7\x82\x0b\x7f\xbf\xa3\x10\x49\x3f\x55\x1d\x33\xf7\x54\x67\xe1\xf6\x65\xd5\xac\xca\xe1\x06\x9c\xa1\x2b\x98\x09\x9c\x1b\x9b\x91\xcb\x11\x8a\xe4\x8d\x1b\xf3\xd0\xab\x6d\x93\xe4\x8b\xdc\xbf\x28\x07\x15\xb9\x59\x72\x82\xa9\x48\x3e\xb3\x79\x3e\x30\xf3\x02\xa8\xe0\x6e\x78\xa5\x84\x75\x4e\x41\xe2\xe6\xcc\x88\x45\xe4\xd6\x91\x3d\xd3\x34\x48\xc8\xb2\x9e\x6c\x6a\xf1\x8a\x06\x64\x96\x40\x79\x20\x22\x63\x2a\x49\xff\x3b\x2a\xd1\x7a\x46\xfd\x9e\xed\x2e\x46\x3c\x2d\x8e\x34\xd6\xb5\x7a\xfd\x4c\xb1\x6d\xa3\xd0\x6c\x92\x90\xca\xf3\x33\x5e\x78\xe9\x9b\xbf\xe1\x08\x34\xbc\x47\xf2\xbf\x2a\x01\xe9\xbc\x9f\x0e\x73\x75\x56\xf0\x3e\x11\xb4\x90\x62\x05\x48\x07\xb6\x1b\x71\x05\xcf\x31\xf6\x78\xf6\x9e\xb1\x7c\xc7\xbe\xe9\x76\x7f\xfe\xeb\x94\xde\x73\x5a\x2d\xd5\x52\x41\x03\xe6\x5a\xe5\xab\x02\xf4\x30\xd9\xf1\xd9\x8e\x74\x38\x4c\xf3\xa8\xf2\xd8\xb7\x78\x61\x1f\x54\xc8\xb8\x7f\x9f\xec\x8f\x7e\x27\xa6\xe8\x07\x8c\x58\x98\x43\x6a\x52\xb6\x71\xaa\xba\x08\x38\xb8\xe0\x1b\xd5\xdf\x53\xf4\x4d\x32\x8f\x7e\xf0\x6a\x97\x22\x82\xb9\x83\xfc\x1e\xdf\x8c\xb1\x55\x4d\x1d\xaa\x8e\x9c\x38\x0a\x99\xad\xca\x11\x85\x00\xc8\xcc\xd7\xb5\xa7\xe9\x45\x21\x60\x0c\x22\xd7\xe8\xab\x7f\x9f\x93\xb0\x11\xea\x87\xc0\xc7\x22\x37\xc4\x3d\x15\x8e\x2b\x78\xea\x90\xfc\x51\x50\x23\x43\x6d\x6d\x50\xe6\x66\x66\x72\x8d\x26\x1d\x85\xf3\xcc\xca\x00\x33\x7f\x92\x86\x93\xaf\xc7\xac\xe2\xe1\x3d\x38\xe4\x4c\xdc\x52\x5e\x02\x6a\xe3\x7c\x1d\x28\xc1\xbe\xb4\x60\xc9\xfd\x57\x7c\xc7\xed\xf4\xf4\x63\x3b\x6e\xa7\xa7\xdd\xba\x2d\x14\x22\xfb\x91\x42\x64\x3f\xf2\x27\x74\x77\x21\xca\xcd\x2c\x63\x0f\xa4\xdf\x59\x37\x3f\xab\xc0\x7f\x2e\x8d\xe3\x74\x31\xa7\xed\xe6\x60\x4f\xca\x80\x7a\x3d\x92\x2f\xc6\xb6\xeb\xd4\xa1\x76\x1e\x47\xc3\xa1\xe9\x31\x93\x2a\x9c\x9e\xcb\x4a\x87\xae\x9e\x67\xe9\x8e\x06\x78\xe7\xc7\xd8\x0e\xf7\x87\xb3\x29\xd6\xa1\x68\x3a\x78\xb0\xdd\x6a\xa9\x15\x91\xa1\x28\xe2\x79\xdf\xb8\x43\x12\xce\xe1\x7f\x50\x28\xbf\x77\xeb\xe2\x47\xfa\xa1\xf2\x21\x40\xf1\xc0\x0c\x7f\x9b\xf2\xda\x7c\xad\xb0\x13\xa3\xb8\x88\x06\xa6\x80\xe0\xf9\xcc\xfa\x99\xea\xd8\x5e\x3f\x53\x7b\xe8\xc4\xe4\x5b\xaa\x25\xc2\x29\x19\x5d\x6c\x7d\x18\x68\x4e\xd2\xd5\x72\x23\x1e\x47\xb2\x38\xfe\x4c\xc8\x8a\x7c\x57\xcb\x31\xa4\x3f\xb3\xec\x63\xe9\x1f\x7f\x95\xe2\x58\xf8\xfa\x8f\x98\x42\x97\xe6\x09\xc1\xd6\x97\x9e\xfd\xad\xfb\x2b\xcb\x4a\x7c\xeb\xe3\xc0\x87\xc9\xbf\xc6\xa7\x0c\x39\x2a\x0b\xff\x90\xb9\x18\x69\x6f\x7d\xe7\x59\x44\x7b\x58\x0d\xdb\x96\x5b\x2f\x1f\xf1\xcf\xbd\x77\x6a\xfd\x84\x0b\xe6\x32\x22\xb1\xd7\x05\x41\x90\xfd\xf1\xb5\xc2\xfd\x0e\x0d\xd0\x1f\xd5\x4b\x60\x42\x20\xef\xc8\xd7\x4a\x45\x2c\x1f\x85\xa1\xcd\x73\x6a\x0e\x9e\xf4\x5d\x0d\x7f\x54\xaa\xd6\x87\x3f\x0a\xfc\xa1\x78\x46\xd1\x33\x9e\x51\xfd\xb8\x03\x13\xa2\xc5\x16\x1f\x79\x10\xa8\x9a\xff\x03\x75\x6e\xf4\x29\x3d\x42\x5f\xee\x30\x66\xfb\xa4\xad\xe0\x8c\x6a\x22\xb5\xc3\xa1\x8d\x55\xb7\x3b\x73\x82\xf1\x4d\x93\x40\x65\x2f\x75\xa3\x03\xd6\xa1\xf7\xf0\x11\xbe\xd1\xb0\xe8\xe8\x68\x61\xc3\x96\x47\x74\x5d\xd5\x68\xd1\xab\x4a\x59\x62\x50\xad\xc3\xd8\x2e\xb0\xaa\xb1\x90\xb1\xfa\xd4\xf0\x05\x57\xaf\xb3\x79\x38\xea\xa6\x03\x66\xe2\x83\x53\x09\x01\x6a\xbe\x7e\x2c\x77\x3e\x31\x9b\x13\x46\x84\xac\xdd\x89\xdd\x94\x95\xe5\x6c\x66\xe9\x57\xe5\x1d\xed\xf9\x6c\x5a\x56\xd1\x57\x16\xd9\x39\x82\xff\xc2\x13\x5e\x87\x27\xcd\x37\x4a\xac\xee\x1a\x3d\x0f\x5f\x97\x1a\x64\xb2\x60\x93\xa2\x8f\xc1\x83\xc7\xf3\x99\xf2\x7e\x3e\x6b\xea\x1d\x8e\xa3\x24\x4c\x63\xc9\x47\x21\xb2\xf8\x50\x45\xe0\x9c\xc1\xc7\x41\xb3\x69\xd9\x9f\x66\x8b\xfd\x14\x05\x4a\x4a\x2c\xa8\x2a\xd4\xcc\xfa\x1d\x14\x93\x84\xed\x65\xa3\x01\x3c\xb0\xe7\x40\xdb\x1e\xb5\xe1\x88\x7d\x61\xa7\xcc\xe7\x5e\x6a\xbc\x76\x32\x75\xa8\xdd\x8d\x42\x8e\xf5\x70\x1c\x01\x33\xc4\xd7\xcb\xba\x76\x92\x45\x0b\xa6\x88\x16\x2a\x57\x62\xea\x10\x67\x2c\xaf\xd1\x02\xe5\x6b\xe5\x45\xe6\x51\xb2\xd5\xb7\x07\x7e\x09\xd7\x57\x52\xf7\xf4\xea\x98\xc1\x2f\x29\x40\xc0\xe1\x07\xf0\x1b\x16\x24\x27\xe1\x70\x5c\x7e\x3e\x16\x33\xee\x9b\x76\xb4\x7d\x92\xc6\xc4\xb9\x70\x3d\x50\x90\xbe\xeb\xea\x04\x1d\xc6\xa3\xa4\x67\xb7\xd3\xde\x92\x16\x94\x6a\x21\xc1\x79\xbb\x4c\xc7\x29\xff\x3b\x70\xd7\x82\x37\xa9\xce\x5c\xfe\x23\x98\x6d\x94\xdb\x18\xa4\xc9\x7f\x05\x4b\xcf\xff\xa3\x86\x61\xea\xbf\xfd\xef\x69\x6b\x20\x33\x7c\x56\xb3\x88\x9d\x6d\x02\x11\xe4\x45\xca\x32\x69\xf0\x5c\xce\xe8\xac\xec\x99\x86\x93\x98\x44\x2c\x42\x6b\xbb\xec\xfd\x48\xc2\x8e\xc6\x5b\x88\x5f\xfc\xea\x0a\x63\x13\x0d\x0c\xc7\xcb\x33\x8e\xc6\xa1\x9a\x83\xc7\xb1\x38\x50\x67\x5f\x96\x26\xb6\x90\x91\x66\x1c\x77\xa0\x28\x23\xfe\xba\xe9\x38\xe6\x6e\x32\x68\xf0\x22\x56\x45\x89\x09\xa9\xce\x6d\x1d\x55\xbb\x9f\x5c\x7e\xd2\xb5\xba\xe4\x92\x15\x63\x32\x5a\x32\x28\x42\x4c\xeb\x93\xf5\xa4\xf5\x45\xdf\xed\x1a\x62\xab\xe9\x71\xf4\x0d\xd5\x26\xc7\xfa\x79\x47\x35\x03\xe7\xc3\x38\xaa\xde\xdf\x7b\xc3\x17\xb4\x3a\xed\x05\xc5\x3d\x37\x30\x45\xd1\xb7\x8b\x1c\x8e\x8a\xb2\x41\xf5\x41\xbe\x56\x69\xe4\xbc\x4f\xed\x39\x64\xa7\x1c\x49\x47\xf5\x0e\x48\x53\x42\xee\xd2\x85\xf5\xd5\xca\x41\x7d\x5b\x27\x5e\x86\xa3\xbc\x3f\x8f\xd6\x1d\x69\xb4\x3c\x59\xaa\x5c\xf4\x49\xf5\x7b\x45\x66\x22\xe2\xac\x3c\x20\x26\xef\x3e\x2d\x61\xbe\x56\x49\x31\x93\x4b\x88\xd1\xd2\x4d\xc1\xa5\x6e\xf7\x0d\x3c\xf4\xd5\x54\x27\x0b\xe2\x69\x87\xaa\xff\x42\xa3\xe7\xbf\x50\xb5\xc9\x30\x4b\x53\xf2\x4b\x1d\xe2\xe1\xaa\x42\x02\x5f\x55\x1e\xc4\xc1\xf9\xa5\x2d\xf4\x25\x88\xbc\x6e\x04\xba\xf6\x70\x86\xfc\x67\x5c\xaf\x28\xcb\x8a\x63\x59\x00\x23\x92\xb2\x7c\x73\x14\x15\x04\xad\xc2\x79\xfd\x25\x7f\x95\xc6\x7f\x3a\x8a\x5c\xcf\x40\x86\x10\x15\x29\x8f\x16\xba\x74\x10\xa2\x6e\xa2\xa9\xc1\x11\xfb\x5e\xa9\x14\x40\xef\x36\x75\xd0\xd9\xd9\x59\x4e\x20\x60\x32\x81\xdb\x16\x19\x9e\x96\x6a\x67\xd4\xce\x58\x94\x0f\x9e\xf2\x9d\xdf\x9f\xe9\xdc\xed\x53\x14\x23\x21\x32\x7c\xa4\x72\x90\xf7\x75\x5d\x79\x73\xa7\xd6\xa9\xff\xf2\x11\xf6\x88\xaf\x69\xa6\xfa\x33\x88\xb5\x61\x71\x39\x4c\x45\x2e\xf2\x1e\x39\x64\xd2\x8f\xaf\x14\x57\xce\xc0\x09\x13\xfc\x4e\xb5\x80\x30\x8c\x1f\x05\x1b\x18\x73\xf6\xef\x6f\xef\xdf\x4f\x0a\xcc\x40\x93\x5e\x24\xe3\x29\x85\x40\x85\xde\xf8\x19\x36\x1e\xb2\x43\xf7\xf0\x63\x18\xe8\x49\x7a\x09\x61\xe4\x51\x30\xa6\xf7\x35\xe1\xe0\x29\x9e\x4e\x57\x1b\x76\x1c\x66\x37\xe8\xc5\x99\x1a\x11\x47\xa1\x10\x74\xd2\x28\x38\x00\xc5\xfe\xfd\x3c\x54\x5b\x96\xeb\x44\xce\xd5\xf9\x0d\xdb\x73\x13\xc3\x83\x89\x9e\x84\x3c\x8a\xe3\x0d\xfa\xe6\x6f\xf0\xbe\x98\xa1\x11\x91\x8f\x57\xae\x38\xc6\xf0\xbe\x72\xd9\xf2\xe8\x68\xd1\xa7\x6d\x88\x94\xc0\x25\x3a\x10\xf9\xba\x09\x47\x6c\x8f\x0e\x33\x9b\xe7\x93\x8a\x9a\x14\x14\xe3\x52\x44\xd0\x73\xe5\x35\x21\x57\x1b\xc1\x7b\x69\x38\x6f\x01\xee\x74\x86\xbf\x9a\x0a\x31\xfc\x3a\xb2\x30\x49\xb8\xa3\xfa\x43\x3c\xda\xa6\x0e\xc5\xc7\x4e\xa7\x83\x5c\x69\x55\x5a\xe6\xd2\x39\x77\x02\xb1\x88\x81\xa0\x2b\xaa\x27\xe4\xa6\x70\x6c\x18\x04\x7d\x9b\xb0\xad\x90\xaa\xfb\x54\x81\x06\x16\x39\xed\x3f\xe9\xd1\xc8\xf7\x14\x0c\xff\xb8\x46\x91\xfd\x29\x15\x8f\xa5\x32\x34\x76\x18\x4d\xb5\x07\x29\xb5\xd1\xf0\x79\x27\x24\x8a\x0a\xef\x79\x4e\x85\xb6\x49\x3a\x9b\x76\x97\x28\x25\x81\x68\xeb\x7d\x1a\x52\xbe\xc6\xea\x97\xb0\x4e\xc9\xb0\xac\xea\x00\xf5\xcb\xb1\xf0\x7a\xe6\xc0\x0c\xbb\x1f\x88\x34\x91\x6a\xfe\x03\x7c\x03\xdf\x94\xcf\xa9\x0c\x4c\x92\xd8\xb0\x88\xc2\x11\xc2\x65\x94\x25\xae\xd3\x66\xe7\x6b\xe5\x6d\x0e\x19\xd9\xd8\x72\xc4\xe2\x9b\x3b\x3e\x74\xd8\xbc\xbc\x31\x5d\x43\xfa\xc8\x85\x92\x23\x5c\x45\x2d\x5e\x98\x31\x5b\x8e\x28\xe9\xaf\x95\x3d\xfe\xd6\xcb\xaf\x4e\x2a\x16\x2f\x29\x0d\x38\x80\x43\x35\x9c\xf8\xd4\x89\xd2\x23\x48\x7f\xae\xf9\xcf\x40\xab\x92\x6f\xaf\xf5\x7e\xee\x93\x1a\xc7\x69\x32\x8c\x42\x21\x49\x5b\x0f\xa3\xce\x5c\x44\x0e\x41\x5f\x0d\x34\x9c\x88\x5b\x9a\xef\xe6\x0a\x62\x2c\xfe\xb2\x06\xc6\xc2\x83\x6d\x1b\xf6\x59\xe5\x07\x5f\x76\x19\x06\x90\xb5\xef\x03\x95\x15\x3d\xa1\x39\xe8\xfb\x36\x21\x59\xb5\x4f\x18\x7b\xa9\x34\xbe\xba\xe9\x62\x92\x47\x6f\x6d\xe0\xcd\xad\xb1\x13\x3e\xa3\xf8\x12\xb2\xa2\x6f\x4d\x5e\x4c\xa8\xc0\xe0\xb6\x62\xe6\xdd\x4e\x3e\xfe\xfa\xc3\xb1\x73\x64\xdf\x34\x09\x78\xb1\x3b\x05\x23\xc6\x90\x65\xbe\x51\xa1\x5e\xdf\xc6\xc3\x7c\x0b\x0d\x06\xdc\x80\xb5\x5a\x79\x43\xb1\xaa\xae\x29\xd5\xa8\x49\x82\x0c\xf3\x07\x9a\x9a\x7a\x4c\xaf\x97\xd9\x9e\x29\xa4\x74\xc7\x51\x05\x59\x39\x89\x30\x54\x62\x66\x14\xc7\x36\xc7\xf2\x45\x3a\x02\xe4\xb4\x7c\x0d\x57\x16\x43\x18\xe5\x61\x16\x0d\xa2\xc4\x48\x52\x69\x5a\x8b\x8f\x4e\x39\x55\x31\x9f\x39\x31\x73\x73\x36\xe4\x51\x44\x1d\xf0\x81\xea\xe2\x98\x54\x6a\x90\x17\x95\xe1\x5d\xb2\x26\xcb\x9f\xd3\xa0\xd5\x1f\xe3\x34\x84\x4d\x5b\x29\x55\x85\xe6\x5f\x03\xc5\xe1\xaa\xac\x53\x87\x84\x27\x81\xe5\x3d\xa4\xe6\x4a\x3b\x87\xbf\x40\x0d\x33\xd8\x77\x91\x7a\x04\x1e\x15\xa7\xff\xba\xd6\x70\x01\x8d\x2f\x2a\x2c\x35\xe4\xd1\x5f\xe2\xe4\xc1\x64\x00\x35\x83\xff\xb8\xab\x3b\xc0\xce\xe1\x48\xc3\xe8\xfc\x18\x06\x08\x87\xf1\xb3\x1d\xaf\xa9\xb8\x1d\x99\x12\x6c\x98\x75\xd5\xb7\x13\x47\x89\x91\x15\x85\x17\xf8\xb0\x54\x14\x47\x1f\x3a\xac\xc4\x5c\x9a\x59\x92\xd2\xc2\xd6\x41\x3a\x90\x99\x1d\x54\xbe\xf7\xa0\xa3\x7c\x7d\x5a\x19\xb2\x51\x92\x73\xb0\xef\x84\xb5\xaa\x01\x90\x86\xf4\xa6\xa6\x96\xca\x51\x95\x07\x83\x9f\xc4\xe9\x0f\xbe\xd1\x4a\x84\x91\x19\xa4\x2c\x23\x28\xfc\xe4\x17\xb5\x23\x73\x51\xd9\xc9\xc2\xc4\xf3\x51\xd2\xdb\xaa\x7c\x87\x8f\x69\x06\xe0\x9c\xa3\x83\x1c\x1f\x03\x54\xdd\xcf\x92\x30\xe5\x43\x33\x17\xe7\xfb\xee\x31\x45\xaf\x43\xaf\xb6\x87\xb1\x4d\x8a\x25\xb2\xad\x58\x48\x2b\x74\x3a\x39\xd0\xe9\xfe\xfd\xec\xf5\x3c\x70\x95\x96\x61\x9a\x66\xd5\x4e\xa1\xc9\xc4\xcc\x42\xcf\x94\xaf\x97\xf5\x99\x1c\xd9\xb9\xa7\xab\xc7\x61\xfd\x6c\x2e\xe4\xe1\x2f\x3f\x20\x63\x2a\x7d\x57\x34\x57\x00\x99\x61\x61\x3a\x9c\x76\x35\x54\x2a\x00\x72\xd1\x10\xf2\xea\x8e\xed\xaa\x5a\xff\xb5\x9a\x30\x2a\x3f\x3f\x52\x0c\x72\xc7\xe8\x85\xb0\xd3\xb6\xe1\x2c\xc7\x92\x5f\x2f\xbd\xec\xff\x1a\xec\x2a\x9a\x11\xee\x07\x8a\xb8\xe1\xa4\x8a\x22\xa2\x24\x8c\x47\xdd\x28\xe9\xed\x52\xb5\x42\x40\x22\x50\xcf\x85\xc8\x00\x6b\x8e\x61\xdf\x22\x42\x2c\x4a\x45\x14\xfa\x21\x99\x23\xbc\xf6\xff\x40\x9d\x9b\xd8\x38\xbc\x51\xb1\xa3\x26\x3a\x5e\xfc\x70\xf7\xb2\x67\xaf\xf9\x4d\xea\x6b\x56\xfe\xa6\x30\x15\x9e\xc3\xfa\xc3\x83\x7c\xbf\x81\xa6\x73\x8a\x84\x43\xf2\x82\x30\x7b\xd5\xd3\x34\xb1\xae\xfb\x84\x59\x2f\x5a\xb0\x89\x88\x8e\xbb\x0e\xd6\x69\xc9\xfc\x9e\x54\x5a\xb4\x27\xeb\xb2\xab\x0d\xb4\x76\x51\xb6\xe0\x12\x75\x58\x73\x8c\xcc\xe2\x9b\x60\xe3\xf9\xff\x62\x3b\x4c\xd3\x78\xd2\x57\x3f\xb9\xe6\x86\xed\x8b\xa5\x2f\xb2\x4e\xb4\x58\xe4\x48\xf4\xce\xc0\x5c\x54\x50\x78\x82\xba\xc3\x53\x48\xbd\x38\x91\x0d\xbf\xfd\x3e\xa5\xca\xae\x6b\xff\xdc\x57\xa3\xa2\x92\x75\xbb\x03\xd5\x7e\xae\x96\x69\xee\x85\x9d\x64\xfa\x50\xb3\xd8\xd6\x51\x24\xd6\x57\xf1\xc4\xd8\x88\x4f\x74\xbc\xe4\xd5\xaa\xca\x98\x3d\x05\x5c\x03\x92\xbf\x8f\x34\xdf\x45\x64\x84\xeb\x05\x26\x85\x9d\x60\xbe\x29\x75\xcd\xcc\xcc\x2f\x4d\x28\xda\xad\xcf\x4a\x75\xae\x82\x3d\x16\xcf\x7d\x7b\x0c\x01\x52\xad\x8a\xd0\x0c\x5d\x25\x43\xf4\x67\xab\x07\xe4\xeb\x06\xf1\x33\x5e\x48\x2d\x1f\xc7\x9e\xd6\x1d\x31\xa7\x5d\x67\xc5\x28\x27\xa4\xb5\xeb\xab\xe6\x24\x19\xdf\x04\xbb\x14\x00\x37\x41\x68\x8e\x1a\xc3\xb9\xc0\x43\x58\xce\xa9\xa8\x1f\x8a\x19\xc2\xe8\x2f\x2d\x18\x2b\x58\x01\x62\x47\x7e\xb9\x09\x89\xd1\x1d\x44\x49\x94\x17\xac\x85\xa8\x7a\xaa\x51\x49\xc1\xae\x61\x38\x1d\x46\xf1\x81\x2a\x4b\x92\x47\x31\xe1\x0d\x23\x42\x1b\x9c\x5d\x4c\xba\x2d\xa5\xbe\x86\xf4\x97\x29\x62\x16\xec\x60\xe9\x4c\x7c\x42\x74\x34\x77\xa9\xcc\x73\xd8\xdf\x3d\x71\xc4\x95\xa9\xcf\xd1\x99\x4e\xce\xd3\xef\x3d\x43\xcb\x0c\x4b\x7e\x85\x6c\x80\xa3\x26\x74\x4d\x92\x28\xf6\xe0\x44\xf8\xb4\x54\xbd\xdb\x6f\x2b\x45\xcc\xab\x58\x1d\x02\xe1\x54\x02\x4b\x17\x03\xa5\x7c\x04\x30\x29\xa2\x88\x4d\xf5\xa6\x1f\x15\x5d\xff\x00\xa6\x92\x01\xe4\x14\x3d\xd3\xa6\xf8\x66\x1b\x99\x60\x38\x14\xf7\x9b\xd6\x50\x5e\x64\xd1\x3c\x72\xba\x8e\xd4\xbe\xfa\x79\xf1\xf0\x9b\x14\x05\x87\xa9\xd3\xac\x16\xba\x29\x7a\x4b\xe1\x9b\x6a\x00\xe7\x99\xc1\x28\xb7\xae\x59\x50\xc4\xbb\x7c\x3a\xe7\x56\xf9\x4b\x3e\xfd\x64\x63\x1b\xa6\x83\xc1\x28\xe1\x12\x6a\x3e\xa9\xe4\x63\x8f\x6b\xd6\xf9\x15\xa5\x25\x7b\x9c\xbe\x4e\xd6\x62\x43\xe1\x39\x9a\x8b\x5a\x2d\xc5\xeb\x54\x23\xef\x77\xc0\x43\x93\xcc\x93\x7a\x9d\x03\x81\xb1\x00\x1e\x4c\x24\xcc\x0c\xa4\x12\x9e\x1d\x93\x85\x22\x4e\xd9\x8c\x00\x59\x4a\xff\x06\xde\x2c\x5f\x3b\x57\x69\x90\x76\x6d\x96\x44\x6f\x61\xec\x9b\x48\x46\x1b\xea\xca\x8b\x51\xd2\xcd\xfb\x91\x8d\x05\xf3\x83\xd7\x45\x93\x26\x5f\x8f\xf3\xb6\xed\x6d\xa7\x0b\x36\xeb\x66\x66\xae\x50\xb4\xbc\x48\x86\xf1\xb5\xc3\xe4\x2e\xa5\xa3\x2c\xb7\x31\x6a\x1a\x8e\x1b\xcd\xb9\x18\xf7\xe0\xec\xc2\x89\x87\x35\x55\x9c\xb7\x62\x1f\x46\x45\x3a\x3f\x1a\x0c\x47\x2d\x6f\xc0\x98\xa7\x8f\x6f\x96\x1b\xf2\x0d\x8b\x51\x38\xcf\x42\x39\x4e\xf6\xc8\x51\x4c\x68\x02\xda\xd9\x34\xee\x42\xba\x5f\x71\x3f\x49\x5d\x94\x51\xe4\x0c\x33\xc2\xd9\xe1\xba\x15\x0f\x8b\xed\xc7\xc9\xe5\x42\xda\x6a\xf1\x8a\x33\x34\x26\x95\x73\x60\x4f\x7b\x2e\x4a\x4c\x12\x4a\x67\x02\xf6\x2c\x8a\xf9\x7c\xdd\x48\xd5\x1f\xf6\x53\x4f\xe1\xdb\x48\xfc\x51\x03\x24\x24\x4b\xd4\xd0\x80\x6a\xf2\x27\x75\xe5\x91\x71\x7e\x1a\x3c\xee\xbd\x40\x81\xad\xfe\xac\x89\x1c\xce\x64\x59\xe4\xb0\x6f\xc8\x3c\x71\xf4\xca\xf9\xc2\xd2\xb3\x48\x5d\x1d\x53\xbd\x79\xfd\xf5\x76\x6c\x5b\x64\x0b\x1b\x85\xaf\xfd\xa4\xbc\xf0\xdf\xfc\x23\x5e\x92\xae\xdf\x63\xaf\x10\xdb\x7e\xa8\xfe\xae\x88\x06\xf6\xb9\xf1\x43\x1c\x16\xea\x04\x92\x6d\xc2\xec\xa4\x58\x3b\x7e\x4a\x36\x58\x46\xbe\x2e\x1d\x56\x59\x61\x89\x59\x14\x91\x08\x40\xd4\x42\xa7\x4d\xd6\x16\xaf\x09\xb2\x1a\x64\xf1\xe8\xe0\x7f\x85\xbd\x83\x4d\x9d\xea\x99\x71\xb6\xfc\x5b\x32\xe8\x30\xbc\xec\xb4\xc0\x88\xaf\xe9\x8e\x8e\xdb\x58\x6d\x9a\xa0\x1d\x1e\xcc\x3d\xac\x49\xe4\xbb\xd6\x69\x8c\xd9\x4f\x1a\x4b\xdb\x1d\xd8\xd3\x9e\x8f\x20\x48\xea\xa3\x0a\x8e\xbd\x45\xca\xcb\x75\xd7\x67\xe9\x20\x4a\xc0\x56\x77\x78\x8f\x34\x9f\xd0\xef\x4a\x23\x8a\x2f\x30\x8f\x92\x7c\xd1\xf4\x7a\x36\x13\x7b\x86\x94\xd3\x9f\xe8\x4d\xf1\x51\xe9\xdd\xe6\x4f\xd5\x19\x68\x8a\x74\xd8\xf2\x8c\x80\x9b\x3b\xbe\xa3\x72\xf3\xb2\x10\xec\x17\x0b\xdb\x7c\x6b\xee\xdf\xdf\xbd\xac\xe3\xe5\xcf\x54\x53\xfd\xaa\x92\xb5\xfd\x15\x1a\x63\xd7\x4d\xb0\x7f\xbf\xc8\x01\x63\x24\x45\xed\x65\xe3\x20\xbd\xd8\xce\x0b\x93\x74\x4d\xd6\x9d\xf4\xfd\x86\xe7\x54\xe3\xeb\x64\xa7\x1a\x10\xf7\xbd\x0e\xcb\xb1\x5a\xd6\x00\x51\x96\x5b\xd6\x35\x55\x6c\x40\xd9\x4a\xe1\x8d\xdd\xb8\x93\x5f\x78\x81\xf8\x6d\x6d\x16\x99\x96\xe6\x95\xaf\xc1\xa9\x37\x9a\xb3\x7f\x20\xe7\x88\xc2\x81\x9e\xd1\xba\xdd\x67\xc6\x5c\x6d\xea\x02\x67\x89\x24\x61\x0b\x68\x79\x41\x2a\x55\x65\x4a\x87\x36\xa3\x1a\x8a\x4b\x1b\xfc\x48\x61\xe3\xc7\x15\xc5\xf6\xee\x6d\xcf\x99\x98\x11\xde\xdc\xb6\x43\x4f\x2f\x2d\x3c\x35\x33\x64\xe6\x15\x90\xef\xb2\x92\x33\xba\xac\x69\x60\xa3\x84\x69\x08\xe0\x27\x70\x8e\x94\x6f\x1c\x00\xdc\x84\x45\x4e\x46\x0d\x15\x85\x4f\x31\xc7\x28\x9a\x6c\x46\x10\xe8\xba\xf0\xaa\xcf\x73\xa8\x48\x0f\x87\x88\xf0\xe6\xd8\xdb\xec\x9b\x6e\x9b\xd8\x30\x39\x2a\xf7\x8c\xd0\xeb\x4b\xff\x88\x8e\x81\xc3\xa8\xd8\xea\x63\xc1\x33\x9a\xa7\xf1\xbb\x81\x62\x70\xfc\x6e\xe9\x14\x90\xfe\xe5\x19\x3c\xa5\x2a\xa7\x78\x5b\xb9\x81\x5e\x76\x7a\xba\x3d\xf3\xea\xc1\xe7\x5a\x5e\x92\x15\xce\x13\x56\xf1\x09\x18\x1d\xac\xfb\x3f\x29\x7d\xc0\xf8\xa8\xd4\x7e\xa0\x4f\xe9\x1f\x23\x23\x07\x9b\xc1\xc9\x6f\x18\x8d\x6b\x74\x74\x89\x66\x35\xb6\x99\xd8\x42\x5a\x54\x88\x98\xd9\x41\x14\x36\x4e\xb2\xa5\xb0\x60\x5c\xb1\x41\xea\xfe\xb4\xd2\xe3\x63\x4e\x70\xfe\x2b\xb5\x67\x5b\x1d\x55\x22\x7a\x82\x36\xad\xb4\x3c\xd2\x9e\x17\x15\x29\x55\x95\x9f\x8f\x50\x85\x63\x8e\x81\xc0\xe7\x6b\x75\x17\x06\x5a\x8f\xf8\x1a\x7e\xa3\x20\x4b\x6a\x00\x2a\x13\x71\x5e\x07\x8e\x13\xeb\x72\xf1\x8d\x42\x39\x56\x26\x31\x05\x65\x84\xe7\x0f\x00\x56\x86\xaf\x15\x08\x3a\xb7\xc5\x93\x5a\xcc\x10\xbf\x80\xc3\x07\xfd\x51\x35\x34\xa9\x90\x4f\xfa\xac\xce\x4d\xf5\xf4\x13\x1d\x9f\xee\x5f\x03\x24\x10\x43\x74\x92\x58\xe3\x30\x41\xdf\x45\x1a\x8e\xff\x43\x23\xfa\x4f\xd6\x75\x00\x7d\xa6\x6a\xd1\xe4\x85\x9d\x1b\x21\x15\xe6\x34\x7e\x0e\x38\xbd\x1f\x5d\xfc\x48\xb3\x6c\x89\xcc\xbb\xe3\xed\x85\xa9\x76\xe2\x26\xfb\x24\xc1\x70\xb3\xac\x89\x0f\xe5\xa3\x81\xcd\x72\x80\x0e\x85\x99\x9b\xd6\x08\x96\xd2\x35\x95\xda\x47\xe6\x1d\x7f\xc4\x8a\x48\x38\xe4\x6e\xa8\x44\x04\xd7\xe9\x5c\xf5\xdd\xa7\x1b\x39\x59\xc4\x9f\x2f\xbd\x11\x89\x47\xe1\x3c\xfc\x12\x8e\xd4\x03\xdd\x99\x5f\xaa\xc2\xd3\xd8\x71\x40\xca\xdf\xa6\x90\x78\x02\x8f\x70\x45\xe5\x42\xae\x28\x35\xaf\x6f\x7c\x03\x54\x5e\x38\x68\x9e\x04\x50\x4c\xf8\xa9\xfc\xc2\xe4\xae\x17\xa4\x93\x4e\xa0\xe9\x9a\xa9\x3e\x79\x9d\x08\xe9\x01\x6d\x19\x18\xcf\x9b\x9c\xe3\x45\x94\xcf\xd8\x43\xfc\x1d\xba\xb0\x91\xda\xbf\x1e\x28\xf5\x87\x13\xb4\x33\x60\x54\xef\x11\x19\x18\x16\xea\x96\x8e\x97\x26\xbe\x19\xa8\xda\xfc\x6f\x93\x2f\x05\xe7\xed\x5f\xa3\xb7\xd3\x15\xd2\xbc\x6a\xf7\x75\x85\x17\x7e\x08\x96\x30\xbc\xcb\x35\x18\x57\x7c\x31\x04\xc0\x51\x6d\xdf\xd1\xe8\x86\x13\x9f\x3d\x8c\x7b\x93\x1a\x76\xd3\xb9\x15\xf5\x6a\xbd\x71\x10\xc1\x43\x34\xba\x69\x59\x05\xf3\xbb\x1c\xeb\xdf\x5b\xd1\x90\x3a\x1e\xb4\xe7\x84\xc1\xe6\x69\x10\xdd\x89\x86\x40\x3e\xf4\x39\x50\x14\x72\x6f\xd2\xc7\xf9\x7a\x2c\xe5\x56\x45\x7e\x49\x98\x11\x13\x2f\xb7\x24\xe3\x9c\xba\xa1\xa4\x15\xff\x46\x95\x37\xae\x6e\x10\x52\x1e\xee\xf0\xed\x49\x37\x74\xcf\x3e\x5a\xc2\xb0\xb0\xb7\xd2\xe4\x61\xf4\xff\x5a\x27\xa6\xa4\xbe\xe9\xb0\xda\x07\xf6\xf0\xa3\x4e\xe2\x04\xd4\x9d\xb0\xd2\x4c\xe9\xad\xaa\xfd\xc6\x5e\xc5\xb5\x8d\xca\xa6\x23\xb0\x3a\xec\x54\x41\x1b\xe8\x7c\xa6\xda\x61\xdf\x28\x1d\x0b\xa7\x32\xef\x48\x78\x2e\xab\xdf\x49\x7a\x69\x0d\x81\xb3\xa2\x45\x5b\x56\xc6\xba\x04\xaa\x69\x48\x13\xaf\xff\xeb\x11\xe8\xdf\xd1\x62\x23\xdf\x69\xe2\x9e\x0e\x8d\xe7\xf1\x82\x23\x37\x01\xe3\xc1\x37\x1d\x9f\x7e\x1b\x55\x73\xb6\xd5\xdb\x3e\xb8\x06\x4a\x7e\x46\x32\xf2\x1f\x2b\xea\xf9\x8b\xa5\x8a\x43\x3e\xa7\xa3\x53\x92\x0c\xaa\xe8\x14\xa7\x59\xd4\x15\xf2\x74\x45\xb9\x35\xe3\x28\xb7\x36\xc6\xdf\xbf\xda\x1e\x98\x64\x34\x67\xc2\x62\x94\xc9\xf3\x33\xb1\xbf\xe2\xa8\x5d\x19\xab\xc8\x1d\x7a\x95\x5a\xe7\x95\x48\xc3\x05\x95\xdd\xbf\xe0\x9c\xfb\x59\x13\xc7\x69\x9a\x50\x53\x7f\x35\x61\x70\x60\x5b\xc4\x5c\x40\x1d\x2f\x3b\x50\xac\x71\x7b\xe6\xb0\x64\xa6\xef\x34\xf5\x00\xbe\x31\xca\x8b\x28\xb4\x8f\x6f\xcb\x68\xc0\xbd\x75\xd3\xb0\x48\x33\xb7\x64\x70\x84\x21\xbe\xe0\x6b\xc5\xc3\x12\x66\x69\x9e\x13\x21\x00\x0d\x85\xe8\x51\xfb\x9c\xe1\x3d\xad\x68\x5d\xd8\x48\x5a\x99\x61\x25\x18\x47\x86\x83\xf1\x6f\x55\xe9\xfc\xac\x22\xcb\x23\x65\xa0\x24\xb2\xf9\x33\x64\x40\x71\xbc\x4c\x00\x53\x81\xf3\x6e\x3b\x90\x5e\x22\x3a\xae\xb4\xc5\x69\x90\x91\x76\xe6\x5a\x1a\xbc\x87\x5b\xc1\x06\x8c\xc1\x2b\x0e\x52\xa1\x9a\x68\xae\xea\x62\x3e\x39\x6f\x38\xc3\xb9\xd5\x9f\x39\x92\x54\xfe\x69\xfb\x32\x98\x73\xb1\x2c\x9d\x44\x7f\x75\x56\x30\x5f\x07\xcd\x98\x63\x6e\xac\xec\x97\xc0\xfa\x37\x4e\xdf\x0b\x2f\xb4\xbb\x51\x3e\x1c\x15\x0c\x37\x47\xd9\x1a\xd4\x9c\x7c\xad\x82\xb5\xae\xcd\xe7\x5b\xbe\xeb\x02\x0d\xf6\xc2\x1c\xeb\xc9\xce\x4d\x88\xd1\x84\xc3\x70\x78\x0f\x67\xcb\x59\x9f\x53\x78\x74\x7c\xc3\xcb\xc5\x72\x83\xb4\xf8\xe1\x3d\x33\xed\xc3\x7b\xa6\x09\x3f\xb7\x4e\x0c\x5e\xeb\xd7\x94\x3c\xd8\x5c\x9a\x0d\xb6\x2a\x01\x21\x6e\xed\x10\xf1\x24\x5f\xf1\xbc\xe1\x99\x3e\xfe\xf7\xa7\x3b\x75\x59\x40\x2f\xea\xd6\x78\xe8\x33\xd9\x81\x4a\xbd\x04\x2a\x25\xe3\x89\x49\x8e\x0e\x6d\x92\xdb\x09\xd5\x65\xb6\xaa\xf8\xfe\x1e\xd4\x72\x37\x4a\x4c\x30\x46\x3f\xe8\x84\xef\x51\x02\xf2\xcd\x09\x69\xb8\x65\x70\xa1\xe6\xad\xa6\x19\x10\xa9\x82\x13\xa3\x25\x82\x4d\x00\x71\xe3\xf5\x1b\x9a\x28\xf4\x4f\xd9\x87\x87\xaf\x85\xf5\x28\xdd\xda\x92\xb4\x0f\x47\xd9\x2c\x67\x54\x70\x92\xa2\x61\x93\xaf\x35\xa6\x63\x94\x45\x5c\x71\x95\x0a\x31\x0b\x2a\x63\xe4\xef\xc0\x95\x10\x7c\xec\x33\x8a\xa2\x7a\x81\x52\xb2\x39\x85\x48\x70\xe8\xef\xeb\xde\xc3\x3f\x0e\xbc\x47\xbd\x52\x2a\xb8\xd3\x15\xad\x5b\x0f\x19\x05\x69\xc9\x6a\x10\x27\xc9\x87\x86\x25\x6a\x38\x82\x51\x39\x87\x73\xb5\xae\x09\xd3\x5d\x7a\x5a\x91\xe0\xfd\x7b\xf6\xbb\x44\x66\xb2\x1a\x7d\x9e\x95\x52\x41\x91\xee\x22\xd7\xe2\xa0\x21\xfb\x64\x9a\x4f\x2b\x01\xb0\x0f\x4a\x55\xdb\x86\xe6\x25\xbc\x80\x9a\x47\xfb\x13\x8d\xd8\xa6\x46\x29\x87\xcc\x74\x08\xbb\x89\x4e\xe5\xb2\x49\xd5\x8e\x8c\x8f\xb4\x93\xd0\x10\x21\xc5\xf9\xd0\x65\x54\x07\x26\x49\xac\x3b\x30\xf4\x42\x17\xfd\x4b\x9f\x39\x35\xc3\xa1\x35\x31\x61\x3d\xc1\x70\x4f\x84\xce\x81\xef\xa1\x06\x5e\xe4\x71\xa8\xad\xea\xd0\xef\x9b\x85\x34\xc4\xba\x71\x72\x66\x2e\x3e\x3d\x3f\xe6\xbe\x1d\xde\xd3\x8e\xd3\xc5\x1a\x20\x5f\x7b\x42\xcf\xaa\xde\xef\x3c\x8f\x06\xb4\xd2\x14\x6b\x41\xe9\xa9\x4e\x56\xb4\x34\xfc\x2d\x05\xe4\x2c\x32\xd3\x8d\x92\xde\x6e\xaf\xaa\x7e\x0b\x66\x91\x3b\x59\x4a\x2d\x60\xb2\x02\x17\x9a\x0d\x3d\xf5\x7f\xc0\xf3\xba\x15\xc0\xd3\xc6\x9e\xb9\x48\x33\x88\x6f\x3b\x07\xe7\x5a\x68\xfb\x94\x53\xa5\xbd\x82\x4d\xcb\x4a\xe8\xec\x24\xbd\x24\xaf\x59\xec\x0f\x84\xe9\x9b\x71\xb4\xe0\x68\x6e\x75\x3c\x3d\xf0\x2d\xac\x1f\x26\xf3\x0e\x54\x32\xbb\x49\xf1\x74\xa6\x1d\x9a\xbc\x50\xcd\x36\x57\x35\x98\xe3\xaa\xc2\x01\x67\x36\x4a\x16\xc8\xa4\xb9\xb0\xf4\x33\x4d\x68\xf4\x59\x8d\x1f\xa7\x57\xd9\x3f\x96\x8c\xc5\x4e\x58\x07\xb2\x83\x6f\x9c\x01\x1c\x25\x89\x19\x08\xb1\x10\xfb\x8e\x0a\xbd\x3a\x81\xe8\x5e\xda\x9f\xfd\xe3\xe4\x45\x3a\x18\x4a\x2a\x12\x56\xef\x98\xa2\xbe\x3b\xa6\xd2\x50\x3d\x94\x00\xb7\xf8\x1a\x30\x34\x44\x70\x12\x1f\xa3\x95\xe1\x48\x92\x3d\xb3\x0b\x92\x35\xb0\x53\x0f\x15\x2d\x75\x68\xb2\x2c\xb2\xe0\xe9\xc7\xec\x3f\x50\xd5\x90\xcd\x04\x92\xc1\xf9\xfd\x7d\x0a\x87\x24\xa5\x33\x4e\xb7\xfd\x5a\x7b\x31\x4d\x01\x0c\x47\x32\xfd\x9e\xea\xbb\xbb\x8e\x1d\x3b\x8e\x23\x9c\x8b\xed\xd1\x68\x36\x66\x20\xb3\x10\xb7\xb6\xa6\x3d\x6f\xab\x8f\x9f\x47\x49\x92\x56\xbe\x55\xb7\x55\x23\xa3\xf1\x07\xd9\xd5\xa6\x1a\x58\x6c\x92\x6a\x55\xd8\xac\xa5\xf3\xd7\x8c\xc2\xe7\x1b\x45\x93\x9f\x99\xa1\xcd\x2d\xec\xc6\x2b\xee\x78\xa8\xde\x44\xe8\xc8\x1b\x94\x76\xbb\x54\x22\x55\xa2\x81\x37\x35\xb7\xe0\x66\xf8\x4a\x12\x5b\x29\x59\xa5\xa8\x30\x49\xae\x08\x34\x11\x1b\xf1\xb5\x3e\x56\xd3\x9c\x3b\x56\x39\xe8\xd4\xf5\x4d\xae\xe7\x23\xba\xd9\xd4\xf1\x16\x20\x1d\x15\x79\xd4\xb5\x5b\x94\x1d\x53\x82\xb1\x57\x02\x45\x45\x7e\x1f\x6b\xa5\xe6\xc9\x0b\x93\xea\xc6\xc8\x8e\xca\x6d\xdc\xdd\x5f\x23\x45\xbe\xa5\x48\x91\x6f\x35\x49\xd8\xe7\x05\x11\xcf\x58\x15\x5a\x5d\x26\x2b\x2b\xfd\xba\x2d\x47\x70\xf7\xb1\x0a\x1a\x06\x51\xd8\x37\x16\xaa\xca\xf0\xce\x91\x0f\xe2\x6b\xbc\x3e\x4e\x0c\x70\xea\xe3\x54\x41\xc1\x81\xaf\x4b\x05\xf8\xbf\x1a\x7c\x55\xa1\x5a\x84\xfd\x2e\xcd\x00\xe0\x5d\x67\x99\x48\x1c\xc6\x94\x0d\x5e\x5f\x51\x3d\x5b\x97\x15\xb5\xe1\x30\x8d\xa3\x1c\x34\x10\xc8\x13\xbc\x17\x28\xf2\xcf\xf7\x9c\x08\x6a\x98\xc6\xb1\x0d\xd1\x68\xa3\xf8\x85\xdf\x09\x14\xd4\xf1\x9d\x31\xcf\xeb\xd0\xab\xed\xb9\x34\xeb\x45\x0b\x38\xc6\x91\x62\xf9\xb9\x4a\xb7\xfc\xbc\x4e\x20\x11\x75\x55\x97\xf7\x55\x7a\x7b\x81\x35\x29\xfe\x9a\x8f\x4b\xc5\x5f\xf3\x31\x12\x99\x9a\xd1\x52\xa4\x4d\xfc\x1e\xdc\xdc\xa1\xb4\x86\xf4\x67\x6d\x0c\xd0\xf6\xee\xad\xce\x9a\x24\x1f\x44\x85\x63\xc9\x16\xee\x0f\x05\x3b\xf9\x4c\xc1\x03\xf3\x51\xd2\x35\x4b\x5b\x3c\x0b\x15\xd7\xe5\x5d\x73\x9a\xaf\x54\xa1\xa2\x01\x9b\x7f\x1f\xc9\x55\x1c\x26\x9b\x3a\x35\xd8\xd5\x60\x76\xc2\x83\xfe\x59\x4f\x1d\xc5\x7c\xd8\x21\x61\x63\xf2\x2a\x38\x89\xa5\x43\x75\x86\xfd\x99\x07\x8a\x2d\x76\x95\xe6\x1b\xcf\x7d\xbe\xdc\x88\xa9\x70\xca\x86\x24\xc8\x0c\x3a\x23\xd7\x23\x78\x42\x33\x0a\x9e\x18\xdf\x3c\xaf\x1e\xa4\xe8\x2a\xcd\xa3\x5a\x3f\xc6\x4d\x65\x62\x6e\x36\xc9\x13\xcd\xc6\x26\x9c\xcf\x35\x09\xf1\x05\x4d\x42\x7c\xa1\xc1\x2c\x1d\x6c\xcf\x65\xe9\xa0\x55\xbd\x8a\x93\x8d\xab\x9e\x4d\xda\x45\x76\x2b\x88\x47\x1c\xa7\x8b\x66\xa9\xe5\x59\xd7\x30\x04\x82\x6a\xf2\x51\xcf\x1b\x26\x9c\xc7\x1c\x23\xa0\x65\x04\x12\xdf\x04\x5e\xab\x35\x9b\xb7\x85\x20\xa8\x38\x27\x03\xa0\x23\xcc\xdb\xc7\x3a\xea\xbf\x56\xaa\x02\xcc\x8a\x7a\xb0\x28\xc9\x87\x51\x66\xbb\x50\x1e\xc5\xd2\xbc\xa7\x02\xe3\x4d\x1d\x5a\x2a\x80\x13\xfd\x0d\x3c\x12\xbe\xa1\x01\x85\x51\xbc\x5b\xd6\x4a\x48\x1e\xe6\xf5\xe6\xc8\xc4\x03\x64\xb0\x71\x96\x4e\x28\x6c\xd5\x84\x92\x26\x9c\x35\x59\x62\xb2\xae\x42\xe9\xa0\x5b\x82\xaf\xcb\xc7\x09\x02\x27\xd1\xd1\x6e\x9a\xcd\xb5\xbc\xde\xfe\x06\x7d\xbb\x06\x86\x82\xcc\x0e\x2d\xf1\xcd\xeb\x68\x49\xf1\xbd\x9d\xf7\x14\x10\x36\xa9\xec\x96\x16\xac\xd3\x39\xb0\x71\xce\xf3\xa9\x43\xed\x6e\x66\x16\x5d\x46\x4e\xf2\xfa\xde\xfd\x3e\x55\xaa\xae\xd3\xd3\xca\x11\xcd\x6c\x98\x2e\xd8\xac\x0e\x63\x47\xf2\x93\xaf\x15\x95\xc3\x30\x4b\xc3\x51\x46\x61\xce\xa4\x47\x57\x7e\x5f\x6b\xc4\x80\x64\x8c\x3b\x07\x4a\x85\x0e\x3d\xd5\x20\x3a\x3c\xd5\xce\x17\xe9\xe8\x68\x29\x06\xca\x2f\x54\x56\xee\x0b\xd5\xc2\x2a\xd8\xfc\x14\xbc\xeb\x8e\xe9\xbf\x7a\x2f\x61\xfa\x97\x70\x6f\x36\x4e\xa5\x19\xcc\x09\x9f\x3a\x7e\x9e\xe3\xe5\x13\x8a\xef\xe7\xff\x47\x23\x86\xb3\xf3\xba\xd6\x86\xf8\xb2\x54\x89\x18\x56\xbd\x74\xcd\x81\xbe\xa9\x78\x62\xb9\x46\x0d\x59\xad\x08\x6c\xc4\x1b\x30\x56\x70\x61\x4e\xa9\xea\xe3\xc4\x32\x41\x00\x5c\x08\xb2\x77\xaf\xdf\xc7\x95\x2b\x0a\x24\xf2\x6e\x64\xfd\x85\x23\xc1\xcb\xc8\x02\x69\x89\x88\xe9\x24\x45\x55\x78\xde\xff\xe8\x69\xa8\x7f\x1f\xc9\x6f\xe4\x61\x26\x48\xab\x1d\xe6\xa4\x45\x5d\xd9\x4a\xc7\x58\xd0\xe4\x2c\xb2\x8a\x6f\x3a\x0f\x2a\x0f\x61\xcf\xad\x0c\x06\x1c\x2a\xc1\x51\xe0\x2c\xbf\x86\xb8\x03\xee\xe5\xfb\x63\x4b\xde\x75\x05\x5b\x34\xc8\xb2\x5c\x94\x6a\x11\xe4\x2a\x94\x40\x1e\x7d\xfa\x34\xed\xf5\xb6\x54\x1f\x91\xce\x22\x35\x91\xa7\x94\x6e\x3b\xe8\x2c\x6b\x0a\x02\x82\x4c\x95\x9a\xa9\xd7\x40\x47\xb9\xfd\x1e\xfd\x3c\x5f\x2b\x4f\x7d\x98\xa5\xdd\x51\x68\xbb\xdb\x14\x6f\xf0\x3d\x6d\x56\x5f\x57\x9c\x84\x4c\xe0\x81\xe1\xfd\x4c\xe3\x65\xee\xab\x42\x0f\x97\x13\x24\x79\xa7\x24\x63\x48\xf3\x0e\xf8\x14\x64\xc4\xbe\xa3\xd1\x53\x97\x10\xb3\x01\xa8\x8d\x6c\x21\x86\xf8\x2e\x4d\x3c\xff\x91\xa6\x13\x2f\x32\x5b\x84\xc4\xd5\x56\xcd\x34\x62\xc9\xdf\x2f\x3d\x03\xde\xef\x2b\xd4\x5f\x3a\xc8\x1c\xf7\x9e\xa8\x43\xd0\x3b\x73\xcd\xa5\x54\xfd\xee\x6b\xc1\x4e\xf7\x23\x2f\x7c\xa5\x7a\xdc\x1a\x55\x2e\x72\x8d\xa7\x34\x9a\xe6\x26\xde\x99\xab\x3e\xa5\x16\x55\x80\x5a\x23\x32\x06\x1f\x6a\xf2\xfc\x2f\xa0\x49\xc5\xdf\x86\x68\xcd\x45\x3d\xae\xe6\xf3\x99\xc6\x8d\x7d\xa2\x98\x3b\xce\xe3\xf1\x91\xc5\xbe\x49\xf9\x69\x3c\x0b\x93\x04\x49\x77\x66\x03\x73\x73\x62\x0d\xab\x20\x60\x8e\x87\x34\x7b\x7c\xdd\x08\x2b\x4d\x13\xd5\x9c\x0f\xaf\x73\x13\x61\xd8\xf8\xba\xa3\xb9\xb9\x68\x41\x6d\x57\xdc\xd3\xc8\xed\xa0\x54\x7c\x42\x21\x85\x2e\xaa\x92\xd0\xa4\x46\x73\x9f\x08\xbc\xa5\x3b\xa7\x7c\x97\xef\x6a\xb1\xbd\xdf\x52\xad\x05\xa3\x61\x2c\x0c\xf1\xd8\x22\x9b\xa1\xee\xc6\x37\x9d\x06\x30\x9b\x49\x42\x9b\x17\x19\xf8\x47\x5e\x63\xaa\xd4\xcf\x69\x24\xf8\x3a\xd8\xad\x95\x40\x06\x69\x61\xb3\x49\xd5\x3f\x05\x40\x27\x2c\xc7\x69\x58\x46\xbe\xa1\xa7\xe7\x3f\x6a\xb0\xfe\xaf\xb5\x67\xb3\x74\xd4\xeb\x17\x13\x4a\xd0\xe3\x3a\x7d\x88\x33\x66\x54\xf9\x95\x58\xed\x79\x09\x9b\x40\xd9\x04\x01\x7d\xf6\x9c\x44\x64\x95\x86\x85\x6f\x02\xbd\xe3\xb2\x81\xcd\xf2\xed\xbe\x5f\x0d\x25\x60\x91\x93\xa1\xb7\x41\xd5\xfe\x3a\x76\x9f\x14\xbb\xe9\x75\x84\xdc\xc9\xa7\x53\x41\xf6\x20\xb4\x79\x34\xc5\xbe\x3c\xee\xa9\x38\xfa\xbb\xaa\x0d\x89\x89\xe5\x3e\x46\x98\xdb\x07\x30\x1a\x22\xf3\xe6\xe1\x40\x4f\x76\xbc\xf3\x8c\xa6\x24\xb6\x9b\xf7\x68\xed\x08\x63\x3a\x36\x16\x0e\xd6\x87\xb4\x92\xb0\x97\x01\x5d\x84\x11\x7c\xb2\x4e\x8e\xa9\x85\x10\x31\x4e\xd8\x3f\xad\x65\xad\x60\x3f\x1a\x3e\xe7\xe1\x0c\x47\xc9\xe0\x60\x5e\x36\x75\x90\x30\x82\xe1\x7d\x80\x97\xe1\x7e\x4b\x3a\x84\xe0\x29\xde\x01\xa2\x91\xff\x4a\x35\x79\x5c\xa5\xc6\x04\xec\x83\x7f\xa5\xbd\x99\x0b\xd8\xd8\x8c\x2c\xa3\x77\xc1\xd9\xb6\xad\xa3\x7a\x55\x99\x96\x40\x0e\x7d\xdf\x67\xc4\x06\x43\x58\xa2\x68\xbe\x30\xac\x1f\xe3\x95\x31\x2f\xf7\xe0\x43\x32\x07\x7c\xe0\x73\xac\x67\x95\x8e\xc9\x7b\xe5\x93\x1e\x80\x6e\x8f\x6e\xf3\x88\xf6\xf7\x61\xb0\x80\x0a\xbb\x80\xef\x72\x34\x8c\x7b\xa7\x5c\xe1\x8a\x46\x85\xff\xaa\x74\xdc\xdd\x47\xaf\xa8\xd2\xe6\x8a\xca\xf1\x0f\xad\x89\x91\x5e\xd0\xe2\x30\x48\x28\x20\x15\x8f\x13\xf0\xc7\x0e\x7c\x9e\x0f\x4c\x06\xf5\x58\xfa\x9f\x1f\x3c\x47\x40\x2d\xa7\x50\xe1\x99\x1d\x51\x66\xc6\x0e\x86\x54\x9c\xa0\xbc\x1a\x88\x25\x06\x69\x0a\x1f\xd8\xb5\x17\xab\x66\xee\x71\x56\xbe\x05\x9b\x75\x23\xb4\x81\x39\x3a\x48\xfa\x39\x66\xa3\x0c\x7c\x5f\xef\x69\xb5\x1f\x4c\x96\x3f\x55\x3d\x08\xbe\x78\x0b\x3c\x0e\xf8\x25\x3f\x2b\x3d\x3a\x63\xfb\x72\x5d\x5f\x6c\xdf\xb4\xe3\x80\xa4\xa1\xa2\xaa\x40\x0a\x79\x3e\x1c\xb5\xff\xea\x1f\xd0\x28\x60\x3d\xa3\x7c\x8d\x9d\xfd\x2b\xcb\xe4\xc8\x08\xa7\xbb\xe2\xb4\xb9\x47\xa6\x45\x94\x2a\xb1\x9d\xb8\x87\x54\x07\xb7\x13\xcb\x12\xea\x47\x49\x61\x93\x3c\x9a\x8b\xc4\x59\xc5\x56\xba\x08\xdb\xc1\x37\x81\xef\x24\x5d\x48\xe3\x51\x52\x58\xa4\xaa\x7d\x7a\x7f\x2d\xf0\x3d\xe4\x6b\xea\x0c\x8f\x12\xd3\xb5\x6f\x8e\xa4\x99\x5f\xba\x23\xaa\x3f\x96\xe6\x88\x9d\x0e\xea\x3c\x3b\x89\xbd\xa8\x4b\x31\xa2\xa5\xde\x72\x5a\x33\xec\xf2\x0b\x0f\xe7\xb3\x2a\xf1\x59\x3d\x1c\x11\x80\x29\x0a\xa4\x8f\x79\x14\x44\xae\xa4\xe5\x68\x2a\x4f\x2a\xc1\x5c\x62\x80\x76\x6a\x39\xb2\x2a\x0b\x33\x9b\xa6\x78\x4d\xa7\x7f\xec\x4c\xda\x65\x9f\xbb\xb7\x26\x1f\x65\x60\x28\x9e\xf2\x2c\x00\x5e\x74\xae\x54\x55\x60\x10\x3d\x22\x9e\x3a\xad\xd8\x41\xcc\x82\x4d\x46\x18\x25\x86\x66\xc1\x02\x08\x4e\x6b\x63\xbc\xbc\x7f\x7f\x3b\x34\x49\x77\x49\x81\x8d\x8f\xa9\x82\xd5\xb1\x46\xe1\x68\x4e\xb1\x51\xa0\x81\x51\x46\x6d\x92\xaf\xdd\x89\x3b\x48\xf3\xd8\x0e\xa4\x67\xce\x21\x74\x14\x14\x7e\x0c\x3a\x3f\x75\xa8\x9d\x1b\xec\x36\x49\x59\xb6\x1c\x13\xf9\x19\x85\x0a\xec\x99\xb7\xcc\x84\x67\x87\x61\x31\x50\x18\x50\x24\xca\x84\x16\x4e\x0c\x4a\xd1\xb7\x51\x96\x6f\xab\x06\xd4\x7d\xc6\xf7\x89\x3f\xb5\xec\xbf\xec\xcf\x95\xb2\x0a\x7a\xde\x14\x50\x56\x41\x2c\x67\x5c\x1a\x65\x57\x67\x6c\x9c\x0e\xcc\x7c\x9d\x1a\x1e\x42\xaa\x20\xa2\xb0\xb2\x7e\xcd\x3d\x8d\xc9\x73\x9b\x15\x30\x6f\x82\x24\x55\xc5\xdc\xb5\xc0\x2b\xa2\x30\x68\x52\x32\x0c\x51\xaa\xc5\x87\x4a\x2d\x3e\xf4\x18\x5e\x15\xbb\x40\xad\x8b\x8a\x55\x0e\x98\x35\x21\xad\x90\xf9\x22\x82\xa1\x78\x89\xb2\xec\xa8\xd7\xb6\x3a\xe4\x7d\x0a\x78\xd3\x63\x86\x4f\x95\x5e\x26\xe9\x3f\x61\x97\x4b\xb9\xcb\xd9\x84\xc1\x30\xcd\x0a\x93\x14\xb1\xa6\x8c\x5a\x55\xc1\xf3\xaa\x02\x68\xe5\x51\x81\x94\x04\x1c\x9a\xd3\x74\x70\xf0\xb5\x4a\x54\xe7\xc5\x68\x76\x36\xcd\x92\x96\x62\x19\xfc\x02\x36\x89\x6f\x54\x0a\x35\x4f\xff\x3f\xca\xfe\x3c\x46\x92\x33\x3d\x13\xc3\xbb\xb3\xaa\x0f\x92\xcd\x21\xbb\xc9\xe1\xec\xe8\x27\xfd\x94\xb3\x3b\x30\x25\x7b\x44\x8c\x6c\xc3\x58\x09\x06\x32\x5d\x5d\x23\x0e\xcb\x62\xb1\xd1\xdd\x6a\x4a\xf4\x1f\xcb\x2f\x23\xbf\xca\x0c\x76\x64\x44\x32\x8e\xaa\x2e\xda\x06\x16\x06\x6c\x2f\x8c\x85\x60\x1b\xc6\xae\x8f\x5d\x63\xbd\x36\xa0\xf5\x7a\x05\xad\x46\xc7\x48\x96\x84\xcc\x19\xcd\x2d\x89\xc3\x73\xc8\xe1\xd9\xf7\x55\x7d\xdf\x67\xb5\x11\xef\xf3\xbe\xdf\xf7\x46\x45\x70\x61\xff\x41\x20\x82\x5d\x79\x7d\xf1\x7d\xef\xf9\xbc\xcf\xb3\x1c\xda\x3c\x7b\x44\xa9\xf0\x1f\xd5\x2a\x84\x47\x81\x16\x73\x62\xb6\x7b\xe7\xa4\x65\x43\x76\x15\x91\xf9\x5f\x92\x6b\xc6\x37\xb9\x4f\xae\x51\xa3\x40\xa4\x02\xa4\x66\xa1\x2e\xa2\xba\x88\x43\x8b\x0c\x05\x68\xb0\x33\x5a\xee\x74\x68\x42\x46\x11\xc2\x23\xbd\xab\x04\x3f\xdf\x9d\x78\x86\xb4\x6c\x1c\xd9\xb8\x1f\xf6\x23\xa2\x1d\xf1\xaa\x33\xf4\x81\x42\xf2\xe6\x09\xf3\x51\x1e\x40\x84\x79\x97\x8a\xa1\xfc\xff\x31\x38\x2e\xbe\x26\x9c\x21\xd3\xef\x90\x7b\xae\x41\x75\x95\xc2\x55\xd1\x6d\xad\x47\xa5\xcf\xb6\xf3\x64\xc5\xa4\x32\x12\x82\xa2\xc6\x6d\x5a\x2e\xbe\xae\xed\xc1\x85\x85\x76\x6a\x47\x86\xd4\x16\x66\x6a\x6a\xce\x70\x38\xeb\x4a\x3f\xf1\x82\xe2\x87\xa3\x82\xbb\x09\x86\x52\x41\x86\x19\x3b\x42\x9b\x83\xaf\x6b\x99\xc8\xc2\x42\xbb\x67\xa3\xd0\x2e\xf3\x80\x87\xd0\x79\x94\xeb\xcb\xd7\x4d\xb0\xe5\x20\x74\x23\xe4\x82\xc4\x53\x5c\xf8\x67\x14\x17\x52\x11\x0f\x76\xf8\x3c\x99\x09\x9e\x60\x79\x78\x22\x18\x66\x04\x30\x71\x3c\xfb\xcb\x13\x3f\x30\x74\x0e\x7b\x10\x87\xea\x77\x27\x8a\xc4\xeb\xa4\xe2\x8f\xf9\xce\xc4\xb3\x3a\xdd\xc0\x57\xe1\x16\x24\xcc\x96\xc4\x4e\x5a\xa3\xf4\xbd\xba\x64\x6b\x69\x86\x7a\x45\x96\x85\x36\x95\x9f\x27\x69\x95\xaa\x2e\x9e\x6d\x22\x96\xec\xdb\x65\x93\xe5\x26\x17\x48\x3f\x1e\xcf\xba\xea\xa8\x5f\xd0\xe2\xd9\xba\x5e\x9a\xe5\x66\xb5\xa5\x46\x7d\x3f\xaa\x0a\xd3\xd4\x79\x60\x17\x29\x84\x48\xf3\x95\x30\x96\x10\x42\xfc\xa3\xf2\x95\xd5\x7a\x57\x10\x15\x19\x8f\xf6\x3d\xcb\x51\x0c\xa8\x79\xa5\xbb\xd3\x72\x84\xee\xe7\x26\x9f\x57\x65\x3a\x1b\x94\x56\xb4\xc8\xa2\x55\xcd\x87\x7b\x0a\x40\x03\xd1\x93\xf6\x66\x24\xc5\x6e\x6a\x51\x5c\x2b\xf3\xdb\xde\x2b\x9c\x55\xa9\xd4\x6a\x31\x1e\x13\x45\xa9\xeb\x68\x56\xb9\xfb\x14\xd6\xae\x07\x33\xce\xfd\x26\xfa\x95\xd2\x7b\x6a\x18\x9d\x4b\x8a\x3c\x48\x59\xfe\x4b\x5a\xd9\x1e\xa2\xb1\x5e\x51\x08\x7e\x5c\x49\x70\x25\x2b\x44\x57\xe2\xc6\xee\xcf\x6b\xfa\x69\x46\xcb\xf2\xbf\x28\x78\xea\x45\x15\x51\x04\x26\x1a\x31\x63\x27\x92\xa5\xeb\x74\x92\xf8\x5a\x13\x93\x11\x75\x76\xcb\x47\x70\x40\x5f\xf3\xb5\x83\x67\x25\xcb\x36\x4d\x43\x96\xd1\xc6\x57\xbe\xad\x6c\xdf\xed\xda\x16\xa6\xe1\xd3\x30\x0f\x8d\xea\x24\x09\x4a\x83\x5c\x30\xdf\x34\xb4\xc6\xdb\xc9\xd2\x92\x4d\x11\x89\x33\x67\x55\xc7\x8f\x87\xfc\x7e\xc7\x5b\xf9\x35\x65\x9b\xed\xab\x45\x98\xaf\x6e\xd5\xfc\x2a\xe5\xaf\x77\xf0\xac\x03\x73\x6e\x74\x84\xb6\x1e\xf3\xf4\x57\x64\x2e\x7c\x00\x71\x49\xb1\xb8\xe4\xa9\x35\xf9\x6a\xcb\x33\xed\x5f\xd0\x99\xee\x05\x45\xf0\x4c\xfc\x69\xdb\x14\xc5\xfb\x9a\xa2\x93\x62\xa9\x1e\x18\x90\x77\xf1\x16\x6c\x0e\x3a\xbe\xfe\xbf\x86\x6a\x93\xd8\x09\x3a\xed\x08\xe2\xaf\x36\xd0\xf9\xec\x69\x07\xc9\x41\xcb\xae\x1a\xf6\xeb\xad\x89\x32\x66\x6f\xa9\x2f\x67\xe3\x57\x92\xd5\xad\x6a\xa4\xe1\xa2\x46\xc5\xf0\xae\x42\x8e\x71\x8a\x5c\x03\x5f\xe3\x80\x21\x33\x3c\xa5\x6a\x51\x75\x0a\xe5\xf9\xfd\xcc\x73\xf7\x99\x23\x7a\xf5\xbc\xeb\x60\xd8\x27\x7a\x60\x4d\x49\x8f\x52\x9c\x7c\x49\xdf\x54\x8f\x4c\xdc\x4f\x56\x62\xde\xae\x62\x96\xfc\x60\xe3\x47\xaa\x63\x56\x64\xcc\x39\x2c\x58\xcd\x96\x93\x8e\xad\x83\xe9\x0e\xcc\xcd\xb7\x4d\x9a\x2f\x15\x4c\x58\xab\xf9\xf9\xf9\xba\xd6\xb3\x22\x0e\xc0\x22\x47\x47\x55\xc8\x0e\xd5\xd2\x5f\xd0\x14\x8e\xc9\xc8\x26\xb1\xdd\xa6\x1f\x2d\x7d\x21\xa6\xbf\x50\x4a\x21\xf7\x26\x8a\x9f\x86\x91\x8b\xe8\x3c\x6c\x9a\xfa\xee\xe2\x35\x3a\x04\xb2\x49\x7c\xa0\xb9\x94\x04\x45\xb6\x45\x95\xe7\xee\x2a\x15\xcd\x73\xba\x81\x7a\x0c\xee\x4c\x34\x0a\x7c\x19\x68\xa6\xfb\x39\x85\xff\x4a\x4d\x04\xf2\x17\x51\x57\x53\x44\x06\x6f\xe9\x66\xfe\x55\x8d\x97\x51\xac\x8c\x77\x94\xf5\x7c\x69\x6e\xae\xd5\xaa\x0a\xf2\x39\x54\x61\xcd\x95\x1d\x98\x7b\xa9\xdd\xb7\xb9\x4d\x47\xde\xb9\x08\x5f\xa5\x07\x6b\x6c\xea\x6a\x41\xd3\x50\xa2\x07\x57\x53\xf1\x4d\x95\x26\x1a\x9c\x61\x98\x6f\xd8\x79\x2d\xaf\x92\x30\x69\x37\x6c\x6f\x9b\x06\x76\x5c\x9a\xb4\xd8\x66\xd8\x5f\x30\xa9\xe0\xb4\xe6\xeb\xc6\xfd\x65\xf3\x61\x18\xf0\xa7\x69\x31\x24\x69\x55\x3f\xae\x08\x1d\xe2\xcc\xc6\x83\x96\x87\x25\x1f\xf5\x02\x7f\x07\x8e\xba\x5a\xcb\x2b\x66\xd5\xa4\x98\xc5\xc2\x33\x60\x31\x0b\xbe\xa9\x99\x8b\xfd\x2f\x88\x46\x7a\x65\x98\xbb\xe5\x54\x69\xcf\x56\x18\xce\x4d\x96\x87\x81\x89\xa2\x55\xa4\x3b\x48\x56\x6e\x74\x74\x97\xf4\xdd\x89\x82\x4f\x5e\x76\x0d\x8a\xd4\x84\x48\x06\x61\xa5\x3f\xd4\x64\x5e\x1f\xba\x04\x3b\x0d\xa3\x7f\x63\xe8\xd6\x70\xe0\xe2\xf0\xe0\xc1\x44\x75\xa2\x2f\x56\x74\xf5\x35\xf2\x28\x0d\xfb\x7d\xa7\xa5\x04\xd7\x7b\x0f\xa9\x1f\xdf\x34\xd1\x4a\xb3\x26\xb4\xec\x36\xc5\x08\x32\x2f\x37\x9d\x0a\xc9\x71\x61\x77\x95\x0f\x06\xf3\xcd\x70\x9c\xc8\xc0\xae\x77\x14\xd7\xc5\x39\x5d\x5b\x3b\x05\xa3\xeb\x66\xb3\x16\x9d\xf6\x34\xe7\xd8\x50\x2e\xb8\x8a\xb3\x8a\x29\x82\x3b\xaa\x9e\xf7\xbe\x3e\x74\xa7\x60\xb4\xd1\x45\xba\x46\xa1\x27\x33\xa3\xa0\x4e\x88\x2e\xd4\x0f\xc8\x68\x23\x7c\xff\x14\x6b\x2c\xdd\x84\xd6\xf3\x92\x01\x1e\x47\xc7\xc2\xd5\xec\xe6\xf7\x3b\x8a\x41\xd7\x77\xfa\x95\xbf\xfb\x77\x67\xca\x18\x5e\xd4\xff\x74\x74\x38\xf1\x43\x74\x9b\x94\x42\xb2\x3d\x44\xba\xb0\x58\x50\x24\x35\x5c\x9a\xe6\x9b\x86\x96\xc4\x9e\x76\x2f\x59\x89\x5c\x4b\x02\x19\x22\x52\x32\xbe\xd6\xa4\x40\x43\x93\xd9\x34\x23\xb1\x4a\x67\xd9\xca\xef\xe5\x58\x72\x9c\xda\xdf\x6d\x2d\x7a\x50\x8c\x4c\x6c\x66\x7c\x5d\x78\xa8\xe9\xd3\x2e\xa8\xce\xea\x85\xc9\x06\x2e\xc2\x5f\x2c\xc3\xf3\x59\xfa\x0c\xa1\xe1\xf6\xd3\x1f\xc7\xab\xa4\x6e\x1e\x9c\x78\x7c\xf2\x94\x56\x46\x4e\x93\x43\x42\xa1\xad\xd4\xac\x36\x61\xca\x41\xf8\xec\x1a\x4e\x40\x14\x8e\x7a\xac\xb7\x25\x94\x60\xde\x64\x41\x07\x5f\x58\x94\x1a\x6a\xa2\x4b\xa9\x59\x55\x08\x82\xe3\x8a\xf1\xf6\x78\x47\x0b\xd9\x88\xd9\x85\xee\x16\x96\xf2\x83\x89\xa7\x54\xbb\xa8\xd7\xf8\x83\x8e\x82\x0c\x34\x91\xca\x98\x28\x0a\x19\x23\x20\x51\x97\x42\x47\x1e\x56\xa4\xaa\xe3\x30\x8a\xc0\xd3\xa7\x06\xf7\x5f\xd2\x63\xf8\x82\x3c\xe6\xba\xb4\xf0\x22\x55\xf0\x35\x19\x28\x40\x50\xc0\xbc\x33\x51\x54\xc7\x3f\x56\xd9\xc5\x8d\x0a\xb0\xb8\x28\xdd\x73\xf9\x9b\x2a\xae\xdc\xf1\x3c\x1f\x98\xf3\xa0\x7f\x47\xd5\xc0\x95\x25\x37\x62\xba\xbb\x42\xe0\xf7\x12\x7f\xce\x3f\x68\x1a\x50\x1d\xa7\x21\x8b\xc0\xa2\x1a\xb0\xae\xe8\xdf\xd7\x27\x4f\x2a\x4e\xaa\x2c\x2d\xc6\xac\x77\xed\x71\x15\x9b\xbb\x8a\x2e\x70\xb3\x62\x9b\x0e\x92\x91\x3d\x54\xa1\x8a\xee\xf8\x08\x54\x23\x45\x5f\x31\x63\x13\xdb\xcc\x3e\x46\x6b\x8a\x8e\xc0\x11\x80\x99\x58\x54\x99\x9e\x2a\x0c\xd0\xec\x94\x2c\x98\xa8\x2d\x97\x3f\x14\x09\x32\xc3\x64\x44\xbb\xb6\x5c\x26\x61\xf0\x54\x1d\x90\x7b\xb4\x2f\x91\xec\xde\xee\x28\xe2\xc4\x1b\xf4\xe5\xb0\x61\x1f\xc3\xde\xd7\xa3\x15\x78\xab\x13\x1d\x65\x8d\x19\x8b\x8d\x64\xdb\x83\x59\xc3\xf8\xd5\x22\x4c\x57\xc1\x6a\xe9\xa2\x37\x37\x1e\x78\x57\x05\xd8\xec\x33\xf0\xcd\xde\xa8\x39\x49\xaa\x94\x06\xd6\xc4\x52\x00\x55\x6a\x5c\xee\xa6\x36\x41\xb6\xb8\xb8\xaf\x1d\xc6\x7d\xd2\x1c\xe6\x92\x9d\xc8\xfb\x29\x50\xf0\x05\xe5\xe4\x03\x93\xda\xd2\x6e\xa9\xd2\xca\xef\x4c\x7c\x09\xf7\xb6\x1a\x4f\xbd\xd5\xc8\x1d\xc1\xbd\x58\xed\xaa\xce\x69\x57\x75\xae\xf3\x94\x87\x04\x15\xa9\x35\x05\x4b\x8f\xce\x28\x40\x3a\xbc\x3f\xc2\xb9\x1f\x4d\x14\xf3\xc4\x31\x3d\x3e\x10\x25\x79\xce\x3c\xca\x82\xcd\x54\xb2\x8a\x3f\x55\x53\xb1\x37\x9a\xbc\x76\x96\x14\xf9\x70\xc6\x0f\x60\xdf\xa5\x0f\x55\xea\xf4\x7b\x5c\x2d\xd5\x7f\x68\x5a\x8c\x12\xea\x33\x94\x0e\xce\x99\xba\xe7\x3c\x2b\xa2\x82\xa6\x16\xa3\x5e\x64\xb7\x94\xbb\x12\x31\xe7\x61\xda\x88\x70\xa4\x47\x54\x27\xf1\x23\xc5\xf8\xbe\xa6\x74\x9d\xdf\x68\x9a\x21\xa4\x13\x4a\xdf\x1a\x81\x0b\x4a\xca\x58\xdb\x3b\x9a\x7f\xe8\xa2\x9e\xb6\x1d\x5a\xeb\x78\x1a\x64\xdc\x80\xfe\x56\x98\x24\x7d\x34\xfc\xf5\xb9\x05\xfa\x33\x27\x1a\x5b\xfe\x99\x4c\x50\x6f\x7c\xe2\x2f\xbf\x5c\xc6\x9e\x59\x12\x1b\x0c\xfd\xa2\x95\x73\x55\xab\x97\xd5\xf3\xc3\x03\x73\xcf\xb6\xb3\x20\xc9\x59\xfd\x4b\x78\x10\x3d\xa4\xe6\x7b\x35\xcc\xdf\x73\x8b\xa5\x09\xe9\x15\x99\x9b\xd9\x13\x44\xb5\x1a\xae\xfe\x76\x4d\x26\x6f\xef\x5c\x3b\xb2\x59\x36\xdb\xda\xbd\x5b\x78\x0a\x95\xb4\xee\x1a\xa2\x11\x07\x3a\x2c\x6d\x09\xde\x49\x4f\x36\x50\xd6\x4f\xd4\xaa\x1e\xda\xc9\xa8\x14\x41\xc8\x37\x08\xb8\x9b\x38\x1f\xa6\xe6\x50\x4b\x7b\x32\xed\xe1\x9a\x10\x0f\xc3\x30\xf7\xc5\x49\x29\x70\x2b\xb4\x96\xa6\x92\x89\x8a\xe0\xe0\x16\x15\xb0\x3c\x40\x3b\xd6\x8d\x40\xfa\xb8\xe6\x81\x1a\xc2\xb8\xab\x7a\xe9\x33\xdd\x1d\x0e\x68\xf8\x5a\xdf\xcc\x68\xf4\x28\xd9\x28\x91\x8b\x54\x8a\x10\x77\x6b\x2b\x3c\xbf\xbf\x0c\x6a\xc7\x28\x67\x49\x55\xa8\xe5\xc8\xad\xce\xd7\x4c\xd2\xde\x39\xe5\xc7\x67\xd4\xc8\xc4\x0f\x55\xc9\x88\x63\x31\xf1\xe3\xfe\xf8\x0d\x4c\x14\xd9\x74\x95\x5c\x31\x4e\x1c\x43\x78\xb0\xd7\xd0\xc5\xe3\x7f\x98\xa8\xe6\xe2\x9a\x53\x5e\xe9\x99\xf8\xd0\xab\x45\x92\xe3\x0c\x09\xa0\xdc\x3f\xa6\x37\x34\x3f\xe4\x35\xc5\x38\x9a\x15\x03\x93\x22\xbe\x72\x43\x03\x6e\x1f\xc2\x95\xa0\x99\xfe\x43\x9c\x2c\x04\x07\x97\x6b\xb5\x85\x5f\x7b\x91\x18\x23\x99\x6c\x1d\x36\x8e\xf9\x25\xf8\x46\x75\x28\x46\x06\x68\x23\x88\x25\x0b\xc9\x1e\x2d\xb6\xd6\xa4\x41\x13\x81\x49\x21\xf9\xa6\x41\x09\xa1\x9d\xda\x57\x6c\x90\x57\xd3\xd6\x1f\x4f\x54\xc9\xf9\xc7\x2a\x84\xcd\xac\xc9\xc8\xbf\xef\x99\xdf\xef\xc7\x0a\x16\x16\xdc\x58\xc1\xc6\xd4\x18\xe6\x5f\x1a\x9e\x9f\x9d\x0f\x35\x8c\x6f\xd2\xcb\x96\x5d\x4d\x5f\xa7\xff\x70\xc3\xeb\x4a\x46\xe7\xa2\xaa\x2c\xd8\x43\x87\x92\x18\xd6\x98\x91\x5b\x13\x5f\x82\xb8\xd9\xa9\x08\x3e\x8d\x4d\x6a\xfb\x44\xcc\x2b\xcf\xc6\x3f\xc0\xb7\x80\x20\xc4\xfe\x7f\x1d\x86\x81\x6f\x28\x80\x42\xc6\x02\xc4\x2a\xca\x72\x28\x93\xf2\x35\x7e\xa0\x8c\xe8\x78\x51\xcc\xac\xe8\x91\x20\x50\x68\x48\x2b\xe5\x80\x70\x1d\xdc\xd6\x6c\x84\xd7\xd5\x7c\xdc\x5b\x1d\x3f\x8d\xf7\xbb\x8d\x63\x52\x81\x23\xdb\x53\x50\x04\x11\x68\x3b\xee\x1a\xc0\x76\xd4\x4b\x4d\x20\x23\x15\xa8\xa1\x70\x6a\x24\x44\x3f\x2d\xaf\xde\xa3\x6a\xe1\xbd\x10\x42\x99\x15\x7e\x3e\x4e\x02\xa5\x5f\xe4\x61\x15\x87\x4c\x14\xb5\x34\xfb\x27\xfd\x9d\xe0\xe7\xc5\xc2\x8c\x93\x22\xe5\xf8\x83\x85\x8a\x10\x7f\x88\x6a\x91\x07\x07\x9a\x20\x08\xfb\x36\xce\xe9\x74\x62\xad\xee\xaa\x89\xa9\xb3\x9a\xea\xe0\x9c\x2a\x86\xda\x38\x2b\x52\x4b\xb5\x69\xf1\x55\x65\xea\xe5\xb8\xb9\x0f\x08\x8d\xd1\xfb\xea\xac\xbf\x5f\xf3\x67\x7b\xe7\xda\xf6\x90\x4d\x83\x30\x03\x90\x12\x58\x97\x4d\x53\xd5\xaa\xfd\xeb\x89\x0f\x38\x5a\xdd\xba\x30\x6b\x99\x26\xae\xb6\x5a\xbf\xf1\x75\xaf\x67\x5e\x7e\x65\x01\xad\x7a\x13\x3e\x0e\xcb\xe7\xe8\x46\xcb\xce\xaa\xfd\x74\x56\x31\x33\x27\x2b\x71\xb6\xa5\xf5\x6b\x2f\x56\x3a\x8b\xd2\x8e\xf7\x5f\xe5\x94\x56\x4f\x3a\xa3\x11\xd2\x77\x9b\x10\xd2\x26\x30\x7d\x3b\x0a\x21\x68\x23\x42\x0a\xbe\x6e\x74\x44\x6d\x08\x80\xc0\xc2\x00\xf8\x19\x4f\x3a\xeb\x7b\x83\x9b\x34\x59\xdf\x95\xc9\xcf\xd7\x3f\x4e\xcd\x9f\xa7\xa2\x15\x8a\xa7\x7b\xbf\xa3\x00\x52\x6c\x28\xa4\x8a\xae\x84\x24\x92\x28\xec\x73\x3d\x19\xee\xeb\xb2\xea\x52\x5c\x56\x8e\x71\xc5\x44\xd1\x76\x3f\xc1\x75\x51\x4f\xbf\xa1\x87\x86\x18\xff\x5f\x2a\x51\xc7\x93\x0a\x75\xf1\x86\x26\x55\x3b\x0b\x47\x8a\x0e\x26\x6a\x69\x30\x1d\x9b\xa7\xbe\xa4\x9b\x87\x36\x9b\x2d\xff\x89\xeb\xf8\xb4\xf1\x90\x2f\x9c\x54\xd1\x1c\x46\x37\xf9\xff\x6f\x4c\xde\xf7\xec\xdd\xd3\xfe\xd5\xed\x8a\xb4\x17\x73\x9b\x38\xb6\x2c\x2d\x89\x12\xce\x89\x89\xa2\x2b\x39\xdf\x51\x7a\x6e\xac\x0c\x8a\x70\xe6\x8d\x89\x1e\xbd\x54\xb9\xcd\x07\x4d\x03\x5e\xc4\x58\x18\x8e\x39\x88\x83\xad\x03\x7a\x98\xaf\x6b\x96\x88\x5a\x81\x79\x18\x23\x6f\x77\x35\x75\x5f\x5f\x57\x54\xa4\x07\xe3\x64\x05\xea\x38\x2c\x96\x5c\x11\x4e\xf6\x43\xcc\xcb\x36\xed\x99\x3c\x04\x41\x92\x60\x07\x69\x43\x88\x48\x6a\x13\x29\xed\x38\xb5\x4b\x36\x75\x63\xaa\x18\x9c\x9b\xd2\xb3\xe2\x6b\xdd\x28\x5b\xb6\x8f\xf8\x16\x1a\x2b\x34\x22\x8c\x3b\x0a\x93\x4c\xcf\xfd\x27\x3f\x83\x79\x1d\xc9\xa7\x3d\x1b\xf1\x6f\x4f\x94\x5e\xfe\x5d\x2d\x5d\x7d\x4a\x69\xe4\x6f\xed\x7a\xa0\xea\x95\x89\x97\x18\xdd\x3a\x55\x62\x23\xff\xed\x44\x0d\x21\x64\xa4\x70\xe3\x58\x3d\x10\xd5\xf3\xf5\x54\x75\xfa\xcb\xc8\x61\x95\xcc\x9c\x34\x84\xbc\xea\xd8\x7f\x7c\xbb\xa3\x2a\x53\xb7\xe9\x5b\xf3\x5f\xf9\xe1\xec\x34\x59\xe9\xcf\x2a\x34\xd9\xd5\x8e\x42\x7c\xff\xb6\x0e\xdd\xf0\x4b\x81\x0d\xfb\x71\x6d\xe9\x17\x16\xf6\xb6\xa3\x24\x19\x93\x30\x13\x4c\xbb\xb0\xfc\x28\x46\xac\xb5\xa6\x39\x9c\x7e\xf2\x9a\x8d\x39\xcc\x95\x12\x8a\xae\xad\xd4\x26\xb1\xf7\xb4\xf3\x61\xc8\xa3\x23\xf8\x72\x27\xc8\xfa\xf0\xb5\xf3\x79\x62\xd4\x54\x78\xb8\x79\xaa\x86\x16\x4e\x76\x14\x0c\xff\x4d\xa5\xfb\x77\xb7\x61\xf4\x67\x4f\xf9\x58\x08\x53\x23\xe2\x46\x98\x6c\x41\x25\xf3\xc6\xa4\xe2\x10\x1b\xf8\x0b\xb3\x3c\x25\x54\x86\x52\x0a\xe5\x66\x96\x04\x45\xbb\x14\x0f\xc2\x28\x29\xd3\xe0\x55\x36\x8d\x0e\x7a\xed\x62\x01\x46\xbe\xc2\xde\xae\xb9\x5a\xfb\x20\x35\x4e\xe6\x17\xb6\xf0\x04\x0e\x3b\xdf\x28\x9a\x5f\xd3\xef\xcb\x10\x10\x62\x05\x54\x39\x04\xb5\xa1\xba\x29\xc7\x15\x19\x21\x68\xe1\xf9\xff\x63\xf9\xf8\xd5\x8a\x36\x53\x44\x2e\x31\x8f\x8f\x44\xf6\x3a\xd4\xb9\xd0\x71\x87\x41\x67\x3c\x03\x16\x93\x40\xb6\xeb\xe7\x60\xda\x84\x14\xa8\x61\x06\x3f\x48\x32\x41\x1e\x4b\x16\x54\xc9\x8f\x74\xb1\xec\x35\x13\xe0\x2f\xdd\x9c\x42\x69\x1d\x85\x60\xc3\x5b\x81\x5f\xfe\x95\x5f\x6e\x95\x41\x1d\x6a\x6a\x27\x95\x16\xd8\x49\xa5\x19\x3e\x0a\xb3\x20\x89\xa9\xaf\x52\x46\xb3\x4e\x76\xe1\x6e\x47\x69\x30\xdc\x6d\xc8\xe4\x16\xdb\x49\x2f\x0a\x5f\x2d\xec\xac\xe2\x2e\x7b\x4f\xf1\xe0\x93\xef\x5c\xbf\x43\x1e\x48\xb4\xbc\x7c\xcc\x3f\x08\x97\xad\x59\xe1\x8a\x28\x4c\xd8\x71\x22\x5b\xe2\xeb\xce\x0e\x1f\x2d\x85\xe9\xc3\xaa\x7b\xfb\x4f\xc1\x1c\xe9\xea\xf6\xe5\x29\x47\xb0\xce\x3d\x0c\xa1\xf6\x6d\xf9\xbf\xc2\xbe\x92\xea\x58\x69\xc2\x60\x3e\xbe\x8f\xc5\xe3\x57\xd0\x12\xa1\x34\xf2\xa6\x62\xf1\xbc\xa0\xbe\xcb\xd8\xa4\x5b\x7d\xa1\x0d\x2c\x83\x08\x40\x36\x4f\xd5\x7c\x1b\x37\x0a\xf8\x06\xdf\xd1\x05\x56\x7b\x05\x76\x7d\xab\x89\x7e\x67\x5c\x64\x43\x31\xf3\x52\x27\x52\x32\x88\x67\xd5\x8e\x5c\x4a\x0b\x22\x6b\xb6\x34\x9d\x88\x0e\x3d\xa0\x06\x92\xd5\x96\x26\x14\x51\xc1\xd1\x26\x21\x08\x3e\x91\x39\x47\x48\xa8\xaf\x30\x15\x2c\xdf\xd4\x38\xa8\xf6\xbf\x40\x30\x35\xe6\x2b\x04\x16\x09\xec\x21\x7c\xdd\x64\x0c\x21\xfe\x4f\xa6\x0d\x30\x18\x4c\x75\xf1\xf5\xb4\x41\xf8\x3f\x2f\xe3\x46\x4a\x50\x24\x68\x2a\x5f\xcc\xd7\x6a\x40\xbf\x97\xe4\x43\x9b\xf2\xd0\xb3\xf0\x96\x57\x8e\x7c\xb9\x90\xf0\x45\xeb\x7e\x20\xce\x8c\xc6\x8e\xe4\x08\xff\xc8\x33\xf7\x7c\x33\x15\xd6\x9f\x51\x48\x43\xbf\x2e\x69\x63\xfc\xb4\xc6\x26\x29\xaa\xc9\x13\x9a\x70\x2f\x4f\x48\x37\x52\xea\xb3\xaa\x69\x81\x9c\x0c\xf6\x82\x4b\x54\x42\xe2\xd8\xf0\x94\x8a\xcc\x2e\x15\x91\xeb\x79\xf2\x90\x06\x5e\xe6\x27\x36\x5c\x10\xb9\x42\x58\x3f\x4f\x30\x71\x51\x11\x4c\x5c\x6c\xd2\x2b\x1c\xda\xfe\x40\xb8\x30\x15\xd7\x9c\x23\x9e\xab\xd4\xf7\x47\x66\xf5\x91\xf2\x61\xe3\xdf\x1e\xeb\xaa\xa5\x46\xc6\xae\xf8\xe6\x45\xb0\x76\x2b\x35\xcf\x71\x64\x20\x5e\xcb\x4c\x87\x18\x0b\x73\x52\xfd\xe5\xd3\x76\x3c\xb6\x9e\xd3\xfd\x22\xcc\xb6\x63\x47\xf4\x2f\x71\xdc\x4c\x49\x1a\x0e\xc2\xd8\xe4\x28\xb6\x08\xfb\x00\xb3\xbc\x62\x57\x6c\x41\x3b\x1f\xc7\xfb\xb2\x4a\xae\x7b\x49\x72\x30\x23\x00\x27\x47\x01\xf0\x2d\xa2\x3a\xde\x12\x42\x69\x79\x3b\x61\x29\x22\xcb\x21\x42\xe5\xbe\xb9\x95\xad\x46\xcb\xa1\x69\x79\x08\xd6\x9f\x4c\x34\x09\x70\x53\xf5\x6e\xc9\xa4\x76\x8b\xe2\x6f\xf9\xd3\x89\x17\x16\xe3\x1c\x9a\xc7\x11\x3a\xfe\x51\x02\xf8\x0d\xdb\xb3\xa6\x50\xa1\x60\x1b\xda\x3b\xc7\x21\x36\xf8\x06\xf9\x5a\x0d\xaa\x26\x45\x1e\x24\x23\xbb\xa5\xf5\xfc\xbc\x73\x24\x15\xd5\xc9\x72\xc9\x15\x27\xd9\xfa\x0d\x7a\x70\xdc\x20\xd5\x02\x02\x36\x7d\xac\x7c\x21\xe5\x74\xff\x70\x67\xd7\x63\xa7\xff\xd1\xcf\x75\x3d\x73\xce\x31\x2d\xf4\xb5\x6d\xea\xcb\x17\xf7\x19\x8e\x27\x83\xd0\x2d\x47\xca\xb1\x1d\x33\xbb\x74\x7e\xfe\x93\xa7\xba\x0a\xb5\xbb\x4e\x6e\x46\xa8\xf7\x7d\x7b\xfe\x6f\x4d\x55\x35\xec\x3e\xb5\x4a\x14\xd2\x7f\x51\x0b\xe7\xbc\x24\xb4\x82\xb5\xa8\x86\xdc\x71\x9a\x16\x63\x16\x80\x10\x90\x6c\xf9\x31\x82\x9e\xf5\x63\xa1\x26\x00\x08\x00\x3b\x92\x03\x18\xbe\x71\x64\xe2\x41\x12\x2f\xa5\x49\x2c\x2e\xde\xb5\x56\xca\x15\xe1\x1b\xb5\xa2\xc5\x52\x88\x1c\x94\x4f\x8c\xa2\xd1\xdd\xdc\x55\x69\xf6\xed\x32\x86\xf4\xdc\xb9\x79\x5a\x94\xa9\xa7\x2b\xe2\xc2\xb8\x7e\x03\xe5\x32\xbe\xd9\xc0\x03\x60\xf4\xb0\xd3\xef\xd3\xe6\x12\x12\x62\x81\x24\xdb\x38\x0f\xf3\xc8\x73\xc3\x83\xb5\x61\x13\xed\x2a\xbe\x9e\x4a\x9c\x16\x99\x9e\xc9\x73\x2a\x29\xe0\x69\x9e\x56\x02\xcc\xc7\xf5\x1c\xf7\x0d\x05\x17\xe8\x11\xa5\x39\xd4\x1c\x79\x5c\x54\x8f\x71\xfe\x80\xa2\x02\x91\x84\x57\x29\xb0\xed\xf7\x89\x18\x00\x78\xcf\x77\x3a\xca\xc5\xb7\xba\x3e\xab\xbb\xa0\xea\x6b\xa7\xe9\xbd\x24\x82\x97\xf9\xaf\xe4\xb5\x24\xb6\x7d\x3b\x8e\xac\x54\xf4\xd6\xa9\x8c\xbd\x7e\xbc\x4c\x60\x71\xa8\xc3\x41\x1c\x2e\x85\x81\x97\x52\x14\x36\xb9\xf2\x83\x64\x58\xa7\x29\x48\xa2\x81\x79\xee\xbf\x2a\x00\xdb\xa2\x03\xb0\x35\x94\x2d\x86\x26\xed\xf7\xc3\x0c\x1b\x4b\x62\x90\x96\x53\xbb\x6d\x94\x4f\xc8\x22\x13\xc6\xb3\x4a\xfa\x93\xb7\xbc\xa8\x1e\xfa\x9e\xfa\xb5\x89\x92\xe0\xf9\xc7\x2e\x3d\x1b\x87\x59\x9e\x44\x1c\x65\xbb\x83\xef\xf1\x4b\x8d\x32\x5c\x4b\xd6\xa4\x33\xba\xe9\x3e\xf1\xbc\xf4\x6f\xc3\x72\x61\x0e\xe1\x9a\xd2\xaf\x64\x3a\x84\x9d\xda\xde\x2b\xda\xc3\x7c\xa2\x25\xaa\xdf\x53\x68\xf0\x13\x9a\x95\xed\x0a\xc5\xec\x4e\xd8\x50\x3b\x43\x00\x4f\x50\x3e\x9b\x62\x04\x5a\x48\xcb\xd4\x89\x7e\x80\xef\x07\x8b\x76\x9e\x8c\x85\x2a\x03\x4a\xd9\xee\x62\xc7\x33\x80\x1e\xef\xf8\xfd\x76\x03\x5e\x42\x88\x42\x4a\x43\x87\xfd\x76\xa7\x86\xc6\x04\x98\xaa\x0c\x81\x00\x39\x28\xbd\x24\xc0\xcb\x17\x94\x9c\xde\x85\x86\x60\xf0\xd9\xf2\x22\xb3\x33\xf4\x12\x44\x1b\x77\x68\xa5\x2a\x32\xa3\x5c\xde\x51\x6c\x08\x3c\xbb\xcf\x5d\x6b\x64\x82\xb7\x3b\x4a\xea\xf4\xb6\x02\xa1\xa6\xa6\x8c\xa0\x66\x35\x80\x78\xe2\x47\xee\x4f\xe2\x65\xd8\xe2\x7f\x4e\xa1\xb3\xb0\x8f\xf9\x9d\xc3\x1d\x1d\x4f\xda\xcd\x83\x93\x7c\x53\x49\x5f\xa2\xa2\x87\xbf\xe4\x89\x92\x8e\x6a\xfc\x9f\x6d\xde\xd9\xc5\x08\xc4\x19\xac\x71\x43\x2b\x20\x7a\x37\xf5\x62\x49\x7b\x29\x35\x71\x30\x0c\x33\x0b\x28\x24\xe0\x55\x90\x9f\xe0\x6b\xc5\x3e\x1b\x3c\xd3\xd2\xb8\x41\xc5\x70\x70\x41\x15\x6d\x52\x3b\x4a\x48\x9b\xa7\xdc\x73\x38\x39\x0f\x90\x86\xf0\x4d\xed\x18\xef\xde\xdd\x2e\xe2\x25\x13\xa6\x5c\xcf\x43\x42\x8d\x2c\x8c\xaf\x6b\x9e\x67\x7e\xbf\x74\x5e\x67\x54\xfa\x70\x4b\x81\x15\x8f\x28\xb0\xe2\x05\xf5\xc0\x23\x53\xc4\xc1\x90\xa3\x60\x9e\xaf\x24\x62\xca\x4a\xfd\x84\xd5\x57\x3a\x62\xd5\xca\xf0\x3f\x46\x06\x91\xcd\x2a\x68\xd2\xb6\xae\x3e\x81\x95\x52\x07\x13\x0a\x09\x10\x45\xfc\xe0\x92\x39\x54\x7e\xe9\xf2\xef\x84\x99\x7c\xc6\xeb\x8f\x30\xac\x12\x63\x8c\x5b\x6a\xb2\x1c\x14\x82\x86\x83\x61\x9e\xb5\x5a\xbb\x77\xfb\xe1\xba\xf2\xdd\xf8\xa6\xe3\x1f\x45\x2f\xc9\xf3\x48\xc2\x55\x19\x90\x2a\x7f\xb6\x54\x8e\xdd\xb8\xd0\xd2\x60\x68\x38\x12\x46\x1c\xca\xfd\x6e\xbe\xa9\xe5\xe1\xbb\x77\xb7\xa3\x44\x12\x1b\xa1\x89\x23\x1b\xc1\x37\x93\x2f\x54\x6a\x19\xb1\x28\xe5\x64\x6a\xac\xeb\xa2\x1a\xeb\xaa\x2a\x48\x58\x93\x3e\xe1\xad\xdc\x0d\x05\x9d\xfd\x57\x38\x63\x08\x48\x36\x75\x95\x36\xc9\x49\x2d\x8b\x78\x59\xa5\xd2\xe7\xd4\xb0\xd3\xe5\x89\x9a\x9e\x79\x0f\xfe\x1e\x55\xa6\xeb\x64\x23\x65\x16\x9d\x9e\x30\x5a\x7e\x5b\x69\x74\x0b\x15\xdf\xfb\x88\xf5\xf0\x19\x67\x68\xf4\x96\xd5\xf7\xa6\x7e\x9a\x6f\xf5\x49\xa2\xcf\x74\xe7\xb4\x34\x84\xb0\x7d\xb7\xa8\x73\x04\x1b\xf6\x28\x6f\x1c\x8e\xd2\x6a\x87\xa2\xcc\x04\x23\x33\x70\x4c\x38\x70\x1a\x00\x88\xf0\x75\x93\xdc\x37\x94\xcd\x89\xde\xc8\x61\x34\xae\x2b\x62\xc9\xeb\x8d\xbe\x69\x58\x80\xa9\xd5\x4f\x8a\xd0\xca\x60\x82\x15\x69\x78\x45\xc8\x4e\xc6\x51\x64\xff\x64\xc3\xa4\xc8\xf9\x5c\xa0\xb8\xcd\xda\xc1\xce\x8d\x7b\x9a\x80\x4f\x27\x1a\xc9\xfe\x54\xad\xec\xfd\xe5\x32\x16\x40\xe5\x5b\xca\x79\xf4\xcc\xb0\xe8\x7f\xd3\xf1\x68\x99\xcb\x1d\x35\x3e\xf6\xbb\x70\x78\x7c\x43\x0b\xed\xf8\xb9\x5c\x35\xe7\xad\x89\xca\x57\xea\x02\x29\x80\x56\x06\x36\xcb\x1c\xa8\x4f\x94\xb7\x3c\xea\xe9\x42\x47\xcf\x3a\xf5\x19\x19\x23\xc1\xbe\xef\x52\x41\xa5\x18\x3b\xed\xd8\xa4\xa2\x1c\x1d\x85\x14\x1c\xf9\x01\x25\xf8\x74\xbe\xf6\x03\x8e\x45\xbf\xef\x32\x6f\x57\x30\x54\xd5\xc3\x5a\xa9\x69\x61\xc1\x75\xab\x5a\x2a\x01\xab\x60\xc1\x1a\xd0\x17\x7b\xda\x2b\x34\x1f\x43\xdf\x08\xa5\x37\x70\x88\xf1\xb5\x82\xab\x67\xd6\x30\x3f\x27\x8e\x20\xa2\x25\xd4\x53\xee\x2a\x65\xb0\x63\x6a\xc8\xcc\x2e\xdb\x74\x35\xa7\xae\xb5\x87\xbb\x69\x44\x0f\xc6\xfd\xb0\x3d\x4e\x61\xea\x42\x20\x2b\xbe\xed\x15\x14\x79\xf6\x70\xf9\x7a\x1c\x45\xc6\x80\x31\xb7\x14\x45\x1b\x30\xbb\x57\x71\xc4\x85\x9e\xd1\x37\xc4\xf8\xb8\xbb\x62\x58\x79\x92\xf9\x25\xf4\x63\xb1\xa9\x6f\x6b\x8a\x71\x2e\x86\x09\xc9\x91\x2f\xcf\xe7\x79\x24\x9e\x07\x71\xf8\x75\x85\x56\x61\x86\x44\xb8\xae\x9f\x34\x89\x18\xe5\x69\x38\x18\x78\x26\x4d\xe6\x7b\xc4\xcb\x84\xfc\xb1\x41\x55\x3b\x0c\x84\x60\x42\x08\x0f\x5a\x4a\x27\xa0\x01\xd0\x18\x24\xa3\xcc\xe4\x0c\x10\xe3\x03\xa4\xe1\x1b\x7f\xd3\x00\x10\xdb\xd3\x0e\x92\x6c\x64\xf3\x30\x10\x64\x19\x76\xc1\x71\x3d\xcf\x7a\xdc\xe5\x6b\x66\x64\xe3\xfe\x48\x1a\xb4\xe8\x7c\x68\x48\x1b\x2f\x21\xc7\x91\x4d\x62\xfe\xe3\x30\x4a\x90\x30\x01\xac\x82\x3e\x34\x5f\xbb\x35\x47\x3f\x97\x23\x27\x3c\xc3\x35\x8d\x4a\x5e\x6b\x9a\xec\xc9\x56\x47\xe3\x32\x64\x93\xaa\x9d\xc0\xe2\xfc\xe0\xde\x89\x86\x96\xfa\xb3\x80\xf8\xb4\x94\x3f\x83\x0f\x91\x2c\xfa\xf3\x3e\x7a\x0c\x33\xd3\x5f\x36\x71\x6e\x78\x98\x04\x5b\xe5\x3e\xf6\x20\xdf\xa8\x89\x43\x1a\x78\x4b\x62\x9b\xae\xb6\x94\x02\xda\x9a\xaa\x8d\xae\x4d\x9e\x52\xcd\x9d\x38\x4f\xc3\x5e\x01\xe5\xb0\xd2\x0d\x21\x37\xe3\x8a\x11\xdf\x74\x3c\x89\xe9\x45\x35\xb4\x7e\xd1\xd9\x91\x83\x14\x74\xb2\x7b\x87\x4d\x3f\xae\x18\x0a\x3c\x44\x20\xb3\x81\x29\x82\x02\xb5\x33\xc0\x49\x7e\x8a\xc7\xc7\x37\x0a\x7b\x9b\x15\xd9\x38\x0c\xc2\xa4\x90\x5d\xe2\x80\x50\x7e\x08\xf0\xc2\x67\x72\x78\x05\x91\x49\x03\x66\xd9\x12\xb3\x47\x1f\x24\xf6\xb0\x41\xf4\x2c\x0b\xf9\x27\x08\xff\xaf\xef\xfe\x9c\xe9\x78\x61\x8c\xf0\x50\xc4\xdf\x08\x87\xfb\xba\x66\xe1\xbf\xae\xc2\xd9\x5e\xae\x06\x38\xa1\xa1\xcf\xd7\x6e\xe5\x96\x49\xc8\x8b\x13\x3d\x84\x92\x33\xf0\xf4\x7c\x53\x83\x3e\xef\x7f\x81\x48\x62\x01\x16\xc0\x03\xba\xa1\x02\xd9\xb3\x6a\xac\xee\xa8\x9b\x43\x18\x86\x51\x84\xd0\x1a\xee\xe2\xd3\x8e\x1e\xbb\xfc\x54\xb5\x02\xfa\x36\x32\xab\x4e\xad\x10\xce\xfa\x8f\x61\x37\xf8\xa6\xa9\x9b\x3b\xb0\xb1\x8d\x73\xcb\xf0\x3a\xe1\xf7\x51\x90\xbc\xb7\xd5\xe8\x7b\x91\xd9\xec\x21\xaf\xf2\x74\x8e\x4c\xab\x00\x9c\x54\xbc\x75\xa1\xa3\x2a\xc2\x37\x2a\x44\xa6\xf4\x7d\x10\x3d\x7d\x84\xa8\x0c\x27\xe1\x7a\xc7\xf3\xfc\x5f\x57\x40\xfc\xe3\xaa\x26\x67\x22\x0b\x90\x9c\x9b\xfd\xf2\xa8\xc4\x3a\x68\xbb\xcc\x79\x02\x93\x06\xa0\xbf\x94\x19\x3f\xf2\x0c\xc8\x3d\x0f\x4f\x3c\x00\x6c\x73\x4d\xbb\xf6\xc0\xdc\xa2\xc4\xb1\x7b\xf7\x38\x6f\xa7\x3c\x5f\x6d\x96\x14\x6d\xee\xd4\x66\x63\x93\x65\x02\xcd\x6b\x0a\x67\x1f\x75\x87\xcf\x4b\x04\x20\xd2\x64\x92\x0b\xbe\x69\xb0\x3f\xed\x28\x1c\xd1\xbc\xfa\xde\xb9\xaa\xd4\x30\xdf\x28\x94\x0b\xea\x03\x48\x48\x59\xd6\x41\xc9\xba\x5c\xf4\xfa\x89\xff\x25\x4b\xe0\x8a\xf6\x83\x62\x06\x89\xc3\x19\x54\x01\x70\xf6\xbe\x47\x0f\x06\x81\x1b\x4b\xce\x23\x4b\x3a\xa1\x2b\xb7\x43\x6b\x19\xb0\x26\x9e\x5a\x23\x4d\x9d\x45\x29\x9e\xc9\x9e\xc9\x9e\x49\x9f\x99\xa9\x22\x19\x9c\xe7\xe7\x53\x0f\x43\x74\xa7\x23\x95\xb4\x2c\x59\xb6\xa9\x0d\x07\x71\xce\x43\xa9\x8e\xef\xc5\xbd\x12\xc5\x5a\x6e\xe4\xd4\x05\xf0\x77\xb7\x07\x26\x4b\xa2\x30\xc6\x0c\x51\xd3\x5c\xed\x93\x6e\x15\x55\x72\x37\xeb\x25\x7c\xa1\x21\x84\x35\x7f\x43\x4d\x2c\xbc\x31\xf1\x83\xef\xc7\x14\x14\xb1\xb4\x69\x02\x73\xc3\x09\xff\xb6\x6e\x3c\x7c\x5b\x1d\xe3\x71\x12\x85\x41\xc8\xa2\xf0\xf0\xdf\x60\x56\x45\xf0\xf4\x76\xc7\x5b\x0f\xd6\x0e\x46\x51\x12\xfa\x8b\x82\x71\x51\x4d\xb4\xd3\x93\x4a\x4d\x82\xce\x1c\xe2\xac\xff\xaa\x16\x48\x94\x01\x7f\xb2\xc2\x01\xa2\x90\x51\x2a\x62\x4a\x85\x9d\xe9\x17\xa3\x5e\xcb\x87\xcf\xa0\xaa\x96\x62\xc4\x4e\xed\xd5\xd2\xbc\xb4\x93\x2d\x47\xa5\x75\xa2\xe3\x43\xb5\x13\x2a\x16\x34\x59\x16\x66\x79\x19\xfe\x92\x85\x04\x39\xee\x27\xf4\xbe\xf8\xbe\x60\x51\x12\x2c\x63\x93\x00\x58\x64\x46\x78\x31\xd2\x20\x90\x82\xc3\x8e\xa1\xd0\x2f\x60\x5e\x05\x0a\x8c\xf3\x74\x95\xce\xb8\x53\x9c\x50\x20\x15\xff\x7b\x87\x36\x8a\x5a\x4a\x09\x12\xcf\x4f\x64\x21\x7d\x6b\x73\x90\xc4\x68\xb8\xb9\xf8\xfa\x45\x17\x6b\x2b\xc0\x77\x6c\x57\x46\x26\x6e\x79\x3d\x55\x26\xe8\x14\x9e\x58\x29\x09\x40\xcf\x52\xf5\xa1\xd6\x54\x1f\xaa\x8e\x98\x58\x5c\x6c\x2f\xa5\x36\x2e\xcd\xb9\xb3\x6d\x7f\x50\x21\xe5\xaf\xd4\xae\xc7\x91\x7d\xdc\x27\xdd\xa0\x97\x44\xba\xf2\xad\x89\x1a\x3a\xe7\x5a\x2b\x10\xee\xb3\x90\x16\x42\x14\xdc\xea\x6a\x9d\x2e\x4e\xa1\x1d\xa5\xad\xee\x4a\x79\x68\xce\x2c\xe9\x6c\xa1\xd5\x70\x83\xb6\x33\x8e\x2a\x54\x63\x9c\x96\x7f\xb9\x83\x61\x5d\xae\x6a\x1c\xcd\x09\xa5\x9a\x7c\x4a\xd7\xfe\x9b\x28\x59\xdb\x83\xc2\xa4\x4c\xf4\xa3\x29\x99\x05\xeb\x24\xab\x6c\xd2\x41\x61\xb7\xaa\x18\x9b\xe7\x8a\x9d\x04\x96\xa3\x1c\xc1\x5c\xa8\x60\x8c\xca\x2f\xcf\x96\xab\xe3\x21\xac\xef\xd5\x62\x9b\xf2\x5c\x15\x31\x33\x65\x4a\x76\x00\xa0\xc4\x25\x35\xa1\x7b\xb7\xa3\xdc\x75\x9d\x11\xea\xc0\x5c\x7b\x90\x86\x23\x6c\x2f\xa7\x5a\xe5\x15\xac\x2a\x05\x42\x9b\x9b\x59\x15\x10\x33\x1d\x1f\xdf\xc0\x3f\xe3\x65\xe7\xf0\xa1\x7c\xa3\x5a\xa0\xbf\xf4\xb5\xc5\xf9\x5f\xfa\x79\x3d\x8c\xae\x0a\x8e\xb7\x90\x8b\xc1\xaa\x1c\xee\xa8\x0d\xba\xa5\xdb\xda\xbd\x9b\x97\x71\xd3\xb4\xdc\x03\xc8\xa9\xf1\xa8\x65\x4a\x93\x76\x17\x6c\xfb\x25\xcc\x4a\xe3\xab\x7d\x9f\x7a\x0b\x78\xdb\x37\x30\xcf\xc7\xc9\x02\x33\xe3\xe3\xcf\xb6\x4e\x55\xae\xc3\x60\x36\x7c\xe4\xf7\x55\xb5\xfd\x8e\x9e\xe0\xd9\x01\x7a\x4f\x09\x2b\xca\x47\x0a\x8f\x77\x5a\x09\x4f\xed\xea\xce\xec\xfb\xad\xe7\x39\xc3\xf8\x0e\x2d\xae\x68\x31\xb4\xdc\xc0\xff\xb5\x4e\xeb\x6b\xbf\xc9\x25\xe0\x19\xe6\x7c\x43\x65\xf7\x96\x16\x4e\xfa\x04\x15\x21\xd7\x2d\xdb\x33\xbf\x5f\xcd\x9e\xbc\x20\xd8\xda\x0b\xba\xaa\x78\x0b\x01\x8a\xfc\xe4\xd6\x6f\x7c\x9d\x4b\xfb\x77\x14\x0d\x36\x0d\xfe\x65\x60\x6b\x52\xa0\x69\x8f\x1c\x2a\x7f\x9b\x0b\xa5\x9e\x5b\x74\x21\x96\xc4\xae\xfd\x22\x75\xc0\x60\x3c\xf7\x3b\x8a\x96\xe7\x4e\x03\x42\x69\x5f\x3b\x8c\x45\x04\x67\x8f\x53\x62\xf7\xc7\xe2\x48\x53\x47\xfc\x4b\xf3\xcf\x3d\xfb\xdc\xfe\x7d\xa0\x8f\x81\x21\xd8\x46\x73\xcf\x18\x8f\xdd\x46\xa5\xd5\x0a\x4b\x80\x43\x42\xee\x66\xbd\xbc\xff\xe2\x6f\x75\xe5\x4b\x9b\xf8\x10\xa5\x14\xea\x59\xc3\x56\xf3\x75\x13\xfb\xee\xd0\x1a\xaf\xf3\x83\x7c\x00\x4a\x43\x7c\xed\xde\xdc\x8e\xc3\x2c\xe9\xdb\x19\x45\x2d\x70\x4a\x39\xd4\xdb\xd4\xbe\x40\x2b\x63\x4d\xd3\xf9\x0f\xad\x19\x5b\xee\xdd\x08\x8f\x4d\xa5\x1f\xe9\x8b\x3e\x47\xd4\x48\x5c\xd2\x43\x9f\x91\x59\x50\x85\x65\xf3\x9a\xd2\x20\xbe\xa6\x9c\x45\x30\x0c\x3d\x3b\x28\x1c\xe7\x79\x35\xb1\xc4\x84\xa8\x38\x5a\x47\x55\xfc\x76\x88\x05\xd1\xdd\x64\xf8\xde\x39\x17\x3b\x7b\x0f\x58\xe6\x91\xb6\x55\xa3\x1e\x95\x26\xe3\xe9\x86\xb1\xf6\x45\xcf\x8f\xc3\xf1\x2b\x4f\xe0\xd2\x47\xc8\x34\xae\xaf\x36\xe7\x09\xe4\x5b\x5a\xca\xf0\xbd\x01\x13\xcf\x37\x1d\x5f\x47\x1a\x99\x30\xda\xe6\x87\xea\xfe\x35\xfe\x0e\xed\x4f\xe6\xcd\xe4\x1b\xc8\x58\x08\x6b\xac\x1f\x63\x3e\x4f\xae\x47\x98\x65\x55\xdd\xfd\x62\x67\x3b\xff\x06\x66\x9f\x65\x75\x5d\xda\xfd\xa2\xb4\x2b\x84\x6e\x51\x98\x63\x6a\x06\xff\x70\xaf\xe3\xbb\x9e\x17\xd5\xea\x23\x29\x90\xba\xaf\x1a\x08\x39\xd7\x34\x48\x16\x15\xaf\x25\x31\x2f\xb6\xc0\x13\xe9\x35\x52\xd0\x6c\xa0\xc3\x09\xe3\xe5\x24\x5a\xf6\xcd\x63\x34\x31\xce\xa8\x86\xc6\x99\xc9\x17\x15\x8d\x5c\x60\xc6\x61\x6e\xa2\xf0\x35\x16\xa0\x2f\x2d\x8a\x23\x06\x72\xfd\xcf\x6b\xb0\x55\xd2\xcd\xac\x77\x80\x5e\x22\xd6\x90\xac\x48\x6d\x3a\xa3\x09\x30\x54\x2c\x80\x44\x5b\x8a\xfc\x0d\x25\xc7\xb1\x59\x4d\x93\x48\xfa\xa1\x2e\xf5\xf0\x69\x88\xaa\x1f\x0e\x92\x55\x33\xa3\x5c\xd6\x4d\x4e\x75\x39\x22\xd0\x51\x4c\x6b\xea\xc3\xc6\x5e\x91\xf6\x6d\x9c\x25\x23\xab\x33\x5f\xd4\x35\xa5\x27\x28\xc7\x3c\x4f\x93\x71\x18\x08\xa8\x1c\xde\x63\x2b\x3a\x05\xe8\x84\xdd\xac\xb4\xd7\x9b\x5a\x4b\x4b\xe1\xa0\x48\xa5\xd1\x23\x1c\x46\xf4\x0e\x8e\x89\xcf\x01\x9b\xef\x4e\x7c\xa7\xe2\x3b\xb5\x37\x7b\x71\xef\x5c\x7b\x64\x73\x23\xab\x23\x7a\x07\x2d\x47\xb4\x7a\x6e\xe2\xa1\x0f\xa4\x14\x9f\xe5\xc4\xbf\x8c\x87\x2e\x0c\x4c\xc2\xbe\x53\xbe\x0e\x80\x81\x9d\xf5\x3e\xb5\x18\x18\x47\x58\x39\x34\x29\x32\x63\xf4\xb6\x76\x74\x3d\x2a\x9d\x27\x54\x04\xb7\xfc\xb8\x1a\xa0\x19\xdb\x20\xcf\x48\xaa\x0e\xd5\xf4\xbf\x51\x3a\x3a\x97\x10\x33\xa1\x50\x72\x5e\x69\xea\x3e\x0a\x24\x33\x4e\xc5\x1d\x3c\x47\xd4\x3c\x1e\xad\x88\x0a\x44\x11\x3f\x7f\x20\x22\x4e\x53\x78\x85\x73\x71\x57\xeb\x8d\xd5\x21\xb4\x94\x7a\xdb\xd1\x38\x07\x10\x12\x28\x0f\xcc\x68\xf2\x75\x33\x28\x7d\x6c\x78\x72\xa5\xa9\x53\xbf\x51\x26\xfc\x17\xda\xb1\xc5\x5f\xe3\xcb\xbf\xde\xf1\x10\xdf\xd7\xeb\x13\xf6\x07\xe6\x9e\x55\xf2\xd5\x1f\x2b\xf9\xea\x8f\x5d\x73\xc4\x1e\xca\xa9\x3c\xba\x28\x28\x95\x99\xae\x9f\x1b\xb8\x8f\x93\x26\x2d\xcb\x87\x42\x82\xaf\xff\x72\x3b\xfa\xff\xd1\xff\x47\xc0\x70\x0d\x21\x0e\xac\xe8\x15\x0a\x52\x30\x5a\xb1\x63\xea\x33\xae\x87\x81\x50\x47\x8c\xf2\xaf\x10\x2b\x20\x49\x5d\x23\x9a\x73\xec\x7d\x5e\x63\x14\xaa\xcf\x76\x5a\xcf\xcf\xbb\x66\x20\x36\x1a\x65\x5e\xff\xe9\x17\xa6\x4a\x00\x6a\xb6\x4b\x91\x8c\x28\xeb\x52\x8c\xe3\x46\x8d\xca\xa8\x0e\x21\xde\x63\xc0\x20\xe1\x2b\x7f\x4e\xfd\xc6\x4d\xdd\xd6\xd3\x4f\x3b\x79\xc7\xd2\xc0\xa2\x4c\xf0\xa1\x52\x0b\xbb\xdb\xf1\x48\xb9\x3f\x87\x33\x60\xd5\x4d\x62\x53\x17\x78\x9d\x22\xe5\xfd\x77\xa6\x14\x38\x8a\x36\xa2\x17\xd5\xbb\xf5\x24\xe5\x1e\xa8\x60\xdc\xa3\xd8\x48\x26\x4a\x1f\x53\x14\x3d\xe9\xc0\xa6\x40\x3f\xa3\xf5\xfe\x2e\xf2\x1a\x17\x95\xb9\x44\xf2\xa2\x42\x1e\xfc\x31\xbd\x9d\xf8\x04\xcf\x82\xfa\xf1\x35\x57\x10\xcf\x6d\x96\x87\xa3\x24\x5e\xdd\xe6\x25\x84\x4e\xe9\x1e\x3f\x98\xa8\x75\x73\x0a\xcb\x3c\xf5\x34\xf5\xff\x60\x57\xb7\xf5\x6b\x2f\xae\x9f\xd3\xf4\xde\x17\x95\xf8\x6f\x52\xa4\x3b\x7d\xcb\xe4\x9b\xf4\x42\xbc\xc7\xba\xae\x14\x6d\x9e\xaa\x27\x72\x94\xf6\x8d\x14\x89\x2a\x0d\x79\x5a\x3b\x66\xb0\xa2\x2f\x84\x70\xf6\x12\x79\x58\x3c\xdc\x77\x26\x0a\x2c\xb8\xa9\xab\x70\xd4\x17\x35\x6d\xe5\x35\x98\x07\x9c\xed\x2b\x88\x8d\xc5\xc3\x97\x2b\x87\xb3\xc1\xb3\xf5\xfc\x25\xbb\x5e\x4b\xf0\x66\x23\x75\x14\xe3\xe6\xb1\x3f\xdd\xd7\xf1\xc5\xec\x77\x14\x92\x3b\x2a\xb2\x47\xcb\xa7\x2f\x8a\x37\x8a\x89\x61\x3a\xf1\x34\x36\xa7\x74\xa3\xfe\xd1\xa9\x0e\xba\x4e\x28\x92\x7b\x1e\x3b\x65\x95\x4e\xd2\xba\x26\x53\xf5\xef\xb5\xb1\xd7\xe5\xe9\x7a\x71\xad\x19\xa0\xce\x90\x2f\x3e\x3a\xf5\x65\x8a\xdb\xaa\x0d\xb9\xa5\xfb\xa4\xae\xf1\x07\x36\xa6\xda\xd3\x56\x7c\x0d\xf4\xa1\x6e\x76\x54\x96\x81\xb8\x87\xaf\x3b\x4a\x13\xe9\x26\xbc\x92\xa8\xac\x2b\xf4\xe4\xa6\xa9\x5f\x94\x7e\x38\x9e\xf1\x3e\xfc\x16\x72\x41\x47\xe9\xaf\x66\xf5\x1c\x55\x67\x31\x88\xc2\x83\x56\x31\x66\x5e\x57\xa9\xaf\xa6\x65\x0b\x92\x28\x49\x39\x5e\x77\xfd\x08\x17\xd6\x1d\x57\x83\x7c\xfd\x64\x44\xb0\x53\x9a\x55\xc1\x53\x58\xc3\x06\xe1\x9b\x8e\x22\x7a\xe2\xa1\x26\xbe\x51\xd5\xe9\xac\x08\x86\x84\xa1\x14\x9a\xd4\x96\x62\xe1\x53\xac\x02\xff\x87\xc6\xfb\x9c\xd5\x00\xa4\x9f\x74\xaa\x4f\x9b\x4e\x3d\x92\xdf\xff\x13\x5f\x81\x69\x72\xb0\x77\xb0\x34\xa8\x36\x22\x2e\xb9\xad\xb5\x1b\x76\xd2\xf3\x5e\xbf\x45\xa6\x0c\x26\xf6\xb1\xa9\x97\x0b\xff\x33\x4a\x3b\x91\x1b\xfc\x77\xca\xfc\x64\xc9\x4a\xc8\xcc\x49\x22\x3b\xef\xf1\x37\x27\x5d\x1d\x34\xb5\xe3\xc8\x04\xd0\xfc\xa0\x6f\x83\x0d\xcf\xaa\x01\x8c\xba\xf2\x9c\xcb\x7f\xef\xf1\xae\x1f\x29\x6f\x4d\x37\x86\x6a\xfb\x5f\x68\xaf\x0c\x93\x64\x4c\x8c\x8b\x6e\xca\xef\x36\x59\x5e\xc5\xb4\xf6\xac\xe3\x00\xd8\xd8\x4a\xd8\xf3\xc2\xbe\xf6\x38\x32\x71\xee\x67\xf6\x84\x5c\x5f\xd1\x6d\xfd\x08\xdb\x10\xa5\xbd\xfa\x08\x47\x79\xa2\x47\x49\xca\x48\x2d\x58\x9a\x1f\xe1\x69\x89\x7c\x15\xbd\xde\x0f\xac\xf8\x6e\x7b\x90\x98\x96\xef\x37\xbf\xa9\x78\x92\xdf\x6c\xaa\x92\x41\x30\xa7\xe5\x81\x95\xef\xe3\xad\xf9\x46\xa9\x86\x8d\x92\xbe\x8d\xa0\x55\xc5\x4f\x19\x24\xcc\x88\x80\xdf\xed\xf8\xb7\x98\x56\x21\xca\xbb\x34\x03\x8a\x19\xa4\xac\x72\x26\xaa\xc1\x5c\xe2\xe2\x1b\x65\xa7\x9e\xff\x8f\x7e\x6b\x46\x15\x87\x01\x71\x71\xfc\xff\xcf\x79\x52\x9f\x06\x0c\x74\x66\xa3\x68\xcb\x8c\xd7\x47\x39\xa9\x26\x2f\xbf\x39\xf1\x8a\x4b\x0f\xe8\x6c\x03\x0e\xca\x44\xcd\x28\xa9\x3d\x68\x4a\xe4\xfb\x36\x4f\x93\x10\xab\xc5\x4c\x31\xf8\xa9\x42\x1b\xb3\xb1\x25\xb7\xb0\xd0\xee\x15\xab\x7a\x5f\x9e\xab\x93\xa0\x63\xd1\xae\x91\x3b\x15\xaf\xef\xc7\x9c\x1c\xfc\x6c\xd6\x4f\xd3\xf0\x1e\x44\xc2\x7f\x53\x71\x00\x80\x05\x1a\x9b\xfb\xb4\x2a\x52\x9b\xd4\x8a\xf8\x31\x16\xed\x75\x3d\xc1\xf6\x7a\x9d\x63\x7a\x6f\xb9\x01\xe3\x30\x4f\x52\x2a\x23\xcb\xf3\xa6\x1f\x22\xb3\x05\x65\x60\x84\x08\xe2\xa8\x9a\x3a\x5d\x0e\x83\x3c\x1c\x65\xdb\xcb\x2f\x82\xc2\xce\x27\x1a\x26\x79\x51\x31\x5b\x9d\x55\x81\xc7\xbd\x8e\x6a\x07\xff\xb4\xa3\x10\xbb\x40\x67\x0b\x44\xd1\x27\xb7\xdb\x6a\x73\xc4\x5f\x69\x67\xc9\x92\xe1\x2c\xc2\x7d\x4b\x27\x88\x7c\xae\x76\x58\x17\x16\xda\xb9\x4d\xd3\x24\x95\xc1\x6d\x1c\x35\xcc\xcd\xf3\x75\x6d\x6d\xc0\x82\x92\x06\x6e\x86\x03\xf5\x8e\xcb\x4a\x38\xe6\xb4\x52\xa4\x7b\xc7\xb5\xb9\xec\xc8\xa6\x03\x46\xe6\x4b\x29\xa4\x5c\x5c\x89\x8e\x94\x94\xe5\x0d\xb2\x95\x22\x35\xd8\x72\x72\xe9\x57\xb5\xa0\x6b\x58\xe6\x41\xae\xf5\x2a\x9a\xf4\xde\x6a\x9d\xa9\xd8\x85\xd4\x70\xa5\x8c\x39\x53\xb0\x71\xa5\x15\x47\x4f\x48\xb3\xa9\x28\x46\x59\x41\x48\x87\x7d\x3b\x5b\x7e\x2d\xd6\x36\x57\xdc\xa2\x3f\x9d\x54\x4a\xc6\xe5\x8f\x92\x62\xd4\xc6\x25\x7f\xf9\xe5\x76\x38\x1a\xa7\x36\xcb\xa4\x62\x02\x07\x76\x9d\x96\x8c\xaf\x15\xba\xd7\xa4\x69\xb8\xcc\x80\x67\x44\x0c\x5c\xe5\xe1\x1b\xb7\xba\xa3\xf0\x50\x6e\x03\xe5\x8e\x79\x72\x8e\x6f\x9a\x8d\x84\x1d\xb5\xb4\x9c\x2d\x3d\x01\xd1\x09\xdd\x58\x08\x90\xbe\x7c\xb2\x94\x5b\x66\xa6\x77\xb0\xf4\xe7\x44\xea\x15\xed\x1f\xd8\x9c\x47\xbb\xad\x5f\x97\x30\x13\x81\x2b\xf6\xe1\xa6\x69\x45\x07\xd3\x2e\x15\x91\xfe\x16\x1d\x45\x1e\x73\x5e\x8d\x67\x85\x2c\xc0\x6e\x5b\x4a\xcf\xe3\x23\x25\xda\xfb\x51\xed\x37\x96\xce\x28\x66\xeb\xce\xf4\x0d\x1d\x4d\xe5\xe0\xb0\x69\xd6\x66\x66\x45\x11\x6d\xa1\xc3\x54\x11\x33\x65\x65\x1c\x85\x12\x5d\xb2\xd8\x82\x2d\x9f\x31\xbf\xaf\x66\xb7\xdf\xaf\xa5\x9a\x8b\x8b\x6d\x33\xb0\x71\xb0\xaa\x0c\xe8\x29\x6d\x40\x4f\x55\x71\x63\xf6\x21\x98\x2c\xec\xc5\x0f\x29\x2d\x82\xe5\xd8\xd6\x55\xd1\xd4\xe1\xca\xf0\xac\xc6\xd2\xdc\xec\xf8\xe1\xba\xbf\x51\x40\xa0\xcd\x53\x1f\xbf\x62\xc2\x8d\xc1\x87\x1b\xb3\xd7\xe7\x16\xdb\xfb\x5f\x68\x55\x88\xfd\x5a\xd5\x71\x6d\xcf\xe8\xfd\x9a\x55\x0a\xb0\x98\x68\xe0\xeb\xda\x40\xda\xcb\x2f\xb7\x97\xc3\x65\xd3\x2a\x7f\x10\x12\xa8\xdb\x78\xea\x7c\xa3\xa1\x70\xfd\x3e\x1f\x16\x94\xfd\xd9\x8b\xa0\xeb\x20\x2e\xa5\xa1\x3c\x13\x17\x69\x26\xe4\x45\xb0\x1d\x47\x94\x1d\x39\xd2\x28\xdb\x67\x4d\x96\xcf\x78\xda\x1f\x4e\xad\x10\xc4\xfd\x90\x36\x36\xce\xe7\xe5\x9a\x9f\xfb\xd5\x76\x36\x4e\xf2\x59\x5f\x79\x39\xa7\x39\x86\x98\xe6\x5f\xb6\x93\x07\x35\xd4\xc1\xbb\x54\x8d\x18\x99\x38\x34\x15\xd8\xc0\x44\x9b\xa4\x5d\x6a\xf8\x3d\xc6\x88\xca\x8c\x76\x4c\xf4\x4d\xb1\xc5\x8f\x29\xf2\xdb\x9b\x95\xb6\x50\x16\x24\x9c\x4b\xa0\xbc\xd3\x52\x65\x82\x37\x69\x4b\x60\x17\xb3\x42\xa9\x23\x89\xf3\xba\x46\xdf\xe8\xa8\x52\xfd\x35\xd5\x96\x88\xad\x49\x7b\xab\x2d\xdd\x90\xf2\x4d\x85\x77\xfc\x00\xbb\x89\x96\xcd\x00\xb5\x27\xe6\x86\xec\xf8\x4c\x17\xd3\xab\x52\x1c\xf4\x3f\xb9\x88\x83\xa1\x49\x73\x51\xed\x60\x5d\x00\xfa\x00\xd1\x08\x90\x53\xfd\x5a\x94\xe4\xab\x19\xc0\x01\xb0\x4e\x77\xa8\x91\x22\x73\x0d\x7e\x27\xdf\x56\x61\x5e\xaf\x48\x63\x86\x39\xf2\x9c\x5a\x47\xcf\xac\x6d\x3c\xd3\x7b\xe7\xda\x26\xc8\x5d\x6f\x01\x5d\x0c\x58\x19\xbe\xae\x34\x5a\x83\x22\x9a\x51\x95\x8b\xb3\x8a\x5b\xe9\x3a\xd5\x95\x81\xa6\x3e\xa2\x12\xf9\x83\x83\xde\x6c\x85\x5e\xa8\x46\x76\xcb\xff\xa0\xf3\xa1\xf3\xb5\x22\x2c\x50\x29\x2b\x26\x65\xf8\x01\xbc\x33\x8f\x7a\xf0\x4d\x43\x6a\xdd\x1e\xa7\x61\xb0\xe1\xe7\x6d\x56\x0d\x9b\xcd\x5d\x5f\xb8\x5d\x31\xe5\x4e\xf4\xcc\x1c\x6b\x9a\xf2\xf9\xf7\x39\xa7\x92\xa2\xf5\x2e\x95\x1f\xc6\x4b\x21\x84\xee\xe7\xf7\xbb\x9a\x66\xb9\x30\x7c\xdd\x84\x08\x24\x3a\x5f\x05\x14\xbf\xa9\xbc\xf6\xcd\x46\xf9\x4f\xcf\xc9\xa5\xa0\xf0\xe7\xd4\xc3\xf5\x15\xff\x7e\xba\x8a\x30\xc5\x89\xd1\xba\xbd\xfc\x64\xd7\xa3\x10\x31\x88\x89\x68\xec\x04\x65\x71\x80\x47\xac\x4d\x64\x90\x32\x1c\x8d\x6d\x3f\x1c\x89\x88\x3f\x4a\x1b\xd7\x55\x09\x50\xd3\x7f\x66\xc3\x24\xcd\x6d\xda\xa2\x7a\x19\x1e\xe3\x19\xc0\x97\xf9\x46\x75\x74\x7e\xfd\x6b\xf3\x0f\x63\x3d\x9d\x89\x29\x77\x05\x0c\xd7\x17\xe0\x1d\x2a\xe8\x3c\xf2\x6b\xdb\x76\x4d\x15\x3f\x03\x02\x15\x1c\xb1\x53\x4a\x9c\x90\x89\xca\x90\xd7\xa0\xe7\x2d\x64\xd3\xe5\x43\x61\xf2\xc2\x1a\xee\xe2\x2b\xed\x7c\x98\x14\x83\xe1\x76\x7f\xd8\xd7\x75\x5c\xc4\x6c\xb1\x6e\x26\x66\xef\x1c\x7b\xbd\xff\x7f\xd7\x8f\x2f\xf2\xcc\x39\xab\xe5\x54\x28\xa0\xe8\x1b\xa2\x02\x75\x4d\x81\xc1\xd2\x64\xc5\xce\xfa\xb1\xb1\xe3\x7a\xc0\x86\x87\xe4\x84\x53\x03\x0b\xc6\x77\xca\x60\x01\xab\x8b\xb6\x3f\xa3\x88\x3a\xaa\xaa\xb6\xa6\xa5\x21\x28\x18\x47\xa9\xb0\xd5\xf5\xb3\xe1\x30\x9f\x22\x1f\xe1\x50\x95\x71\x12\x1c\x94\x21\x5a\x58\x61\x80\x80\x61\xaa\x8e\xe0\xeb\x09\xce\x5d\x51\x3b\x84\xcb\xe5\x81\xe8\x67\xdb\x94\x22\xef\x45\xcd\x1d\x09\x0e\x70\xf8\x9a\x59\xfa\x1e\x78\xf4\x3f\x50\x22\xad\xdb\xa6\xa5\x2f\xc3\x4c\xc4\x3f\x41\x01\xaf\xce\x85\x35\x32\xab\x3d\x4b\x5c\x77\x0e\xa1\xe6\x46\xce\x78\x52\x98\x87\x05\xe9\xe1\xcb\xe0\xe0\x4e\x17\xd3\x8f\x87\x26\x0b\x5f\x13\x7a\x55\x61\x4e\xa3\x47\x8d\x1f\x76\x65\xe2\x01\xa7\xef\x4d\x14\x31\x66\xab\xeb\xc9\x52\x87\xd6\x30\x9a\x0d\x75\xaa\x1b\x04\xa6\xe5\x6b\x55\x4b\xca\x87\x69\x91\xe5\x2d\x3d\x92\x76\x09\xb1\x00\xdf\x28\xf2\x0a\x1a\x44\x44\x23\x41\xe4\xc7\xfc\xd8\x13\xc0\x9c\x08\x54\xeb\xf9\xdf\xcb\x2f\xb7\xb3\xbc\xe8\xaf\x3a\xc3\x87\x46\xd4\x75\x45\x40\x7a\xbd\x32\xcf\x14\xd8\x38\x8f\x56\x1f\xa2\x27\x84\xec\xe3\x4d\x6a\x5e\x0b\x61\xae\xff\xb0\xed\x53\xc5\x0c\x8d\x06\xa5\x88\x06\x2a\x44\x25\xd6\x89\xdc\xf1\xc2\x17\xbb\x8a\x66\xf9\x81\xe2\x4f\xbe\xa4\x8a\x05\x26\x38\xf8\xb9\xf2\xc9\x21\x99\xde\xd4\x55\xf2\xec\x68\xf6\x61\x52\xfb\x81\x47\xee\x7d\xe1\x71\x12\x1e\xc5\xb1\xfb\x59\xda\x43\xf8\xff\x3b\xbb\x8a\x3c\xb3\x35\xad\x8a\x4e\xfc\xda\x8b\x55\x2c\x10\xbc\xf5\x0e\xaa\x67\xc1\x4a\xcc\x4c\xd5\x54\xee\x96\xa9\x22\x09\xdf\x39\x55\x54\x08\xbe\xa7\x15\x8e\xc6\x98\x88\xa5\x54\x5b\xca\xc7\xde\x2e\x5f\xa1\xef\x2c\xbb\xd0\x01\x91\x57\x53\x13\x14\x99\x55\xc5\x1e\x06\x0f\xf0\x8d\x92\x0b\x18\xda\x68\xcc\xa4\x66\x20\xfb\x46\x01\x17\x31\xd2\x5f\x2a\x19\x9d\xc3\xaa\xf0\x30\x4e\xc3\x65\x62\x35\xa6\x36\x97\xa0\x16\x5b\x6e\x38\xb9\x52\xb7\x39\xaf\x05\xf7\xe0\x95\x05\xf4\x58\xae\x8c\x58\xf3\x06\xfc\x7d\x9a\x78\xf0\x27\x6c\xe3\x25\x25\xce\x75\xc9\x4d\x97\x05\x49\x14\x99\x5e\x92\x1a\x47\xc5\xa7\x84\x78\xfc\xac\x65\xa5\x14\x76\x90\xe5\x45\x5c\xef\xcc\x37\x98\xef\xaa\xb1\x89\x83\x61\xcc\xe4\xa4\x08\x51\x6f\x74\x5a\x2f\x8a\x2e\xcb\x0d\x55\xda\x78\xb5\x30\x51\x98\xaf\x52\x98\x8b\x44\x1f\xec\xa4\xb8\xfe\xfb\x9d\x6a\xdb\xcf\x79\x81\x1b\x6a\x9b\xa6\x51\x7f\x2b\x7d\x12\x62\x1e\x0c\x63\xe3\xbb\x6f\x9b\xaa\xa3\x7a\x74\x52\xd5\x1a\xf2\x29\xe1\xf6\xae\xab\x65\x7e\xba\xa9\xfb\xa8\x62\xef\x48\x46\x5f\xa4\x6f\x80\x03\xfe\x80\x1e\x15\x4e\xc0\xa5\x89\xe7\xed\x3a\x4a\x06\x8e\x05\x05\x3b\x15\x71\x29\x32\xb6\x0e\x22\xfb\x9c\xc0\xce\x5b\x53\x98\x1b\x0e\x4c\x15\x51\xc0\x29\x1a\x08\xc3\x7e\xbb\x49\x9e\x01\xde\x94\xb9\x4c\x11\x4d\xcf\x90\x19\xc6\x0b\xfe\x00\x78\x27\x2c\xad\xc8\x44\x22\xf8\xfa\x08\x35\x2d\x7c\xe4\x43\x5d\x65\xeb\x59\xa8\xc0\xe9\xfb\x94\xe1\x01\x5a\x4d\x67\x29\x9e\x95\x51\x25\xda\x07\x70\xfa\x27\xb4\xae\x14\x51\x71\xbc\xe4\x60\xbd\x64\x2d\x5d\x90\xfd\xfc\xbc\xab\xa9\x35\x28\xb3\x8d\x09\xd5\x52\x1e\x7a\x09\x91\x14\x04\x1d\xd4\x46\x38\xe7\xb7\xdd\xb9\xcc\xc3\x51\xd8\x0f\xf3\x55\x95\x0c\x7e\xa3\xe3\x93\xc1\x6f\x4c\x2a\x72\x96\x43\x24\xf3\x82\xb7\x55\xd8\x5b\xe5\x0e\x4d\xda\x0b\xf3\xd4\x0c\xec\xac\x8f\x76\x99\x76\x1b\xcb\xfa\x30\xac\x8c\x74\x00\x7d\x26\xf3\x68\xd7\x97\x1a\xb2\x71\x6a\x4d\x3f\x53\xd9\xfa\x39\x95\xad\xd7\x39\xc6\x0f\xcc\xb5\xfb\x26\x37\x5b\xfd\xc8\x06\xb3\x37\x0b\x5f\xaa\x2f\xd8\x00\x8b\xe8\x1a\x16\x7e\x38\x08\xe4\x71\xcc\x3c\xa8\x1a\x1d\xa9\xcd\xc2\x41\x2c\x72\xc6\x78\x66\x6c\xbd\x18\x5c\xa4\x24\x28\x2e\x77\x54\x97\xe1\xdb\x15\xc1\xfa\xf2\x63\xf1\xea\xcb\x13\x85\x98\xb8\xa8\xf2\x99\x2c\x37\x4b\x4b\x19\x49\x52\xe2\x51\x3d\xd0\x43\x98\xcc\xa5\x24\x71\xab\x9e\x7e\xd2\xba\x61\x35\xc3\xb5\xb0\xd0\x36\x79\x2e\x6c\x0d\xc0\xd1\x9f\xee\x78\xbd\xa8\xd3\xca\x6c\x50\xfb\x8a\xab\xc6\xc2\xbf\xea\xd9\x8f\xd7\x94\xa8\x67\x9c\xf4\x67\xfd\xac\x34\xa6\x87\x61\xb0\xa1\xad\xec\xa0\xb4\x07\xe6\xe4\xff\x4f\x3e\x5f\xad\x58\x1c\x98\x7b\xa9\xfc\x6f\xbb\xaf\x60\xf2\x10\x82\x28\x88\x7b\x20\xd6\x65\x7a\x6a\x30\x31\x6f\x53\xbc\xc1\xa7\x8a\x9c\xb2\x4c\xe0\xd3\xfa\x38\x29\x01\x27\xd0\x76\x53\x37\x14\x7b\x9c\x53\x60\x67\x5c\x51\x4a\xca\x75\x62\xc3\xc5\xc5\x3d\xed\xbe\x5d\xb6\x51\x32\x2e\x7d\x5e\xd6\x52\x31\xee\xa7\x1c\xa2\xf2\x5d\xad\x78\x28\x25\xb8\x22\x33\x68\x72\x60\xfb\x7f\xa8\x99\x1b\x3f\x54\x2d\xa4\x91\x1d\x25\x65\x2a\x53\xda\x1c\x59\x2f\x7f\x66\xef\xc3\xe0\xb9\x05\x76\xbd\xc7\x75\xd4\xa2\x05\x28\xac\xd4\x9c\x92\x34\x2f\x62\x3b\xab\x10\xff\xe7\x95\x1a\xd1\x0f\x10\xf6\xf1\x4d\xa7\xa5\x68\x5f\x7d\xb0\xbd\x92\xa4\x07\x6d\x4a\xc5\x7c\x84\xa6\xe0\xba\xe3\x6b\x05\xbc\xc8\x27\x2a\x5a\xc8\x3f\x83\x38\x76\x50\x44\x26\x4f\xd2\x55\x2e\xee\x23\x48\x60\x24\x15\xdf\x28\x71\xed\x9e\x21\x66\x0c\x37\xb9\xfe\x3d\xdd\xa8\xb9\x04\x33\xcb\x6c\x69\x0e\x20\x13\xf6\xad\x89\x88\xcf\x86\x91\x07\xf4\x67\xeb\xe4\x52\xd6\x2f\xa9\xde\x3c\xd3\xb9\xb3\xae\xaa\x92\xe6\xfe\xca\xdf\x56\x73\xae\x9f\x68\x05\xee\x2b\x84\xba\xc0\x79\xfb\x26\x8d\x0a\x23\x76\xbc\x5f\x65\x59\x53\xcc\x38\x78\x64\x8c\x93\xee\xa8\x9c\xef\x07\x13\xcf\x99\xf0\x3d\x72\x71\x00\xbc\x1c\x83\x8b\x73\x98\xe9\xdd\xf3\x6c\x9a\x4e\x91\xd2\x1b\x96\xfd\x70\x47\x0f\xb2\x22\x83\x12\xb0\xae\x9a\x6b\xba\xa0\xf2\xbf\x77\x98\x16\x02\x05\xc5\xc3\x0a\xbc\xfc\x57\xe4\x08\xf1\xc6\x37\x26\x9b\xbf\x5c\xe5\x84\x16\x1a\x43\xc2\xe0\x8a\xdc\x2f\x21\x0d\x98\x83\x12\x9e\xcb\xf9\xa7\x17\x3d\x22\xae\xdc\x32\x5c\x7a\xa2\x38\x14\xdd\xf4\xa3\x08\xff\x81\xbb\x3b\x82\x34\x07\xe9\xe3\x27\x7c\x9a\x44\xe1\xa7\xf5\xf4\xd3\xa2\x5c\x46\xbd\x1b\x27\xa1\x55\x3a\x54\x04\x0a\x27\x27\x9f\xf7\x95\xf7\xa5\x25\x4b\xc8\x4c\x12\x7d\x75\x2c\x8b\xe7\x15\x3f\xd5\x79\x85\x89\x62\xc5\x3f\xca\x61\xf0\x89\x37\x60\x68\xf9\xa6\x36\x7b\x48\x80\x3e\x7b\x68\x6c\xe3\x2c\x5c\xb6\x8a\x91\xfe\x58\x85\xa3\x88\x56\x16\x8e\xe0\xb6\xa2\x79\x59\x31\x69\x1c\xc6\x83\xed\xf4\xa7\x5a\x6e\x1f\xee\x93\xf9\x34\xd0\xb3\x3e\xa1\x19\x52\x4f\xd1\x46\x81\x05\x44\x18\xec\xa4\xd8\xca\xdd\x24\x0a\x43\xb4\xcf\xa4\xfc\xb6\xb1\x2c\xf4\x95\x76\x6a\x23\x52\x43\x9b\xf5\x05\xe6\x8f\xe9\x9b\xc2\x3a\x22\x51\xc2\x26\x3f\x4e\x1b\x0d\xf1\x75\x9d\x9d\xbe\x3c\xc6\xcb\x82\xbe\x92\xb9\x56\x75\x90\x3e\x75\xa4\x31\x7d\xa2\xd6\xcb\xc3\xb8\xb0\xfd\x2d\x3e\x23\xb8\x3f\xa9\x28\x88\xa8\x92\x2d\x08\x35\x45\x33\x8b\x36\xb5\x54\x82\x25\x41\x8f\x8a\xd1\x38\x44\xc9\x65\x6f\x05\xc0\x2f\x63\x48\x1b\x75\x93\xf6\xbc\xb0\x0f\x54\xe4\x61\x19\x89\xbb\x16\x18\xce\xe0\x15\x7a\x00\xd8\x89\x27\x94\x90\xca\x61\xad\x08\x9a\x9b\x38\xb2\xab\x5b\x3d\xa6\x98\x53\x07\x9c\x50\xa8\x52\xf3\x35\xed\x78\xe1\x44\x57\xb1\xfb\x79\x38\x25\xc1\xfb\xa9\xda\x65\x32\xea\x31\x07\x20\x6c\x1a\xc4\xe6\xf8\xda\xfd\xea\x22\x56\x3a\xc9\x30\x13\xbb\xba\x1e\x2f\xb7\x6b\x2a\x99\x59\xdf\x06\xa9\x35\xae\x53\x05\xeb\x72\x14\x4b\xc9\x37\x0d\x4d\x8e\x3d\xed\x2c\xb7\xa1\x80\x5b\xe5\xa4\x6c\x98\x92\xf6\x72\x62\x51\x08\x39\x06\xec\x90\x2b\x38\xce\x4e\xac\xc4\x05\x8e\xdf\xae\x70\xc1\xb1\xc0\x89\xa3\xb7\xf5\x18\x2d\x64\x1e\xe4\xd4\xfe\xd7\x36\xa1\xbc\x44\xad\x90\x8e\x8a\x23\x57\xdb\xf8\x29\x74\x6e\xfe\xe2\xa9\x69\x25\x81\x2a\xd2\x96\xd2\xca\xf8\xa1\x1a\x00\xfd\x61\xad\x99\x5a\xfe\x70\x46\xe8\xf2\x7a\xc1\x6a\x32\xdf\x20\xdf\xd4\x0e\xc0\xd3\x4f\xb7\x5f\x51\x12\x1d\x32\xe1\x5b\x19\xfd\xf5\x4d\xb0\xcc\x44\xf9\x6b\xbd\x22\xe5\xe9\x4e\x29\xde\xa9\xa9\x9a\x53\x4d\x44\x1c\xa5\x0f\xe3\x18\x05\xa0\x18\xcc\xee\xf3\x75\x13\x13\x29\x9b\xb3\x59\x4f\x82\xcd\x13\xc5\x48\x71\xb7\x75\x5b\x8a\xa5\xcb\x97\x24\xee\xd5\xf4\x94\x7f\xa1\x1d\x9b\xd7\xc2\x19\xdf\xbf\x84\x8f\x17\x05\x2d\xfa\xe6\x08\xaf\x4e\x4e\xfc\x18\x4e\x92\xd9\x6d\x5e\x0e\xf9\x47\x15\x3e\x08\x5a\x4e\x58\xc7\xcf\x77\xd5\x00\xcb\x3b\xaa\x80\xd2\x42\x32\xe9\xc4\xf5\xcb\x5f\x2e\x32\x86\x7e\x1c\xaf\x9f\x14\x83\xc8\x64\x5b\x74\x06\xcd\x4e\xc3\xfd\x34\x57\xd6\x63\xff\x2e\xcf\xd1\xc7\x8e\x17\x3b\x5f\x6a\xaa\xb5\x57\x38\xc4\x50\x45\x82\x7d\xbf\xac\x46\x8f\x2e\x6b\x6d\xc6\x64\x3c\xe6\x4e\x2f\xba\xe0\x4c\x5c\xce\x37\x9a\x94\x70\x68\x96\x99\x38\xcb\xe9\x8a\x3f\x3f\xef\xaa\xa6\x15\x5d\x2f\x13\xed\x2a\xcd\x88\x88\xa7\xfb\x89\x3a\x99\x58\x81\x3f\x9f\xe9\x92\x13\xae\xf0\xbb\x61\xc1\xbf\x0d\x37\x06\xd3\x79\x5f\x81\xcd\xef\x53\x14\x8f\x23\x78\x1f\x54\x0b\xd8\x50\x57\x60\x9f\xe0\x16\x6e\x7a\xb4\xc9\x7f\xbf\x6b\xaa\x66\x3c\x99\x0f\x05\xa9\x07\x34\x62\xc8\xbc\x65\x4f\x4d\x95\x46\xc5\x0c\x70\x84\x08\x0e\x2e\xc1\xbd\xc3\xdd\xcd\x22\xad\x95\x67\x50\xeb\xfd\xee\xdd\xd3\x5e\x49\x62\x70\x21\x08\xea\xdf\x53\x40\x5c\x54\x4a\x4d\x41\x6a\xed\xc1\x59\xa5\xce\xf4\x36\x6f\x02\x91\x40\x57\x8a\x9f\xc0\x46\x08\x81\x96\x94\x41\xe3\x30\x30\xa9\x19\x14\x26\x9e\x51\xc0\xa6\x9d\xbc\xc2\xc8\xdc\x8e\xfa\xcc\x2d\x79\xa2\xbb\xd1\x7a\x7c\xa5\xbd\x94\xda\x57\x0b\xbb\x41\xac\xfa\x3d\x25\x56\xfd\x9e\x07\x6d\x8f\x4d\x80\x98\xc4\x95\x2e\x16\x9d\x4c\xe2\x19\x35\x83\x3b\x30\x69\xdf\xc6\xdb\x14\x8f\xd9\x0c\xe1\x0d\xf1\x30\xdf\xa5\x8d\x08\x7f\x75\x1b\x0f\x10\x37\x57\xf1\xfc\x91\xe6\x9f\x52\x8d\x63\x06\x16\x4a\x63\xec\x51\x35\x6c\x10\xe7\x33\xd5\xf1\xba\x85\x05\xbe\xd6\x62\x22\x5a\x1b\x70\x29\x8c\x07\x24\x77\xb6\x57\xb8\x73\x80\xd4\x76\x40\x19\x47\x65\x7b\xba\x51\x35\x28\x48\x46\x6e\x14\x42\xc8\x52\x15\x41\xc0\x51\xd5\x24\x58\x0a\xe3\x98\xd6\x0b\x95\x67\x14\x1a\xf8\xba\x66\xb1\x16\x17\xdb\x7d\xf0\xf0\xbe\xc4\x1d\x8a\xfb\x8a\x33\x10\x1c\x9d\xa8\xa6\xfe\xbe\xea\x62\x3c\x50\xec\xf7\xe3\x64\x5c\xe6\x25\x61\x12\x6f\xd5\x79\xc9\x19\x84\xd9\x38\x3d\x9b\xba\xbe\x61\x75\x1f\x31\xa8\xa6\xa9\x76\x98\x65\x9f\xc9\x9c\xa9\x45\x23\x92\x0f\xf6\x4c\x94\x87\xa3\x24\xdd\x08\x8d\x78\x6e\xd1\x41\x23\x9a\x16\x30\x1c\x8d\xa3\x50\xf8\x32\x1c\xc2\xd2\xd7\x6b\xd7\x1c\xfb\xc0\x52\x6a\xed\x43\x2d\xd1\x01\xfa\x9d\xbf\x03\xb3\x8b\xcc\xf1\xee\x44\x29\x55\x21\xba\x14\x09\x37\x2d\x47\x49\x79\x22\x96\xed\x08\x25\xf3\x30\xfa\xb7\xb0\x75\x45\x35\xb1\x25\x83\xd1\x17\xbe\x38\x6d\xe0\x77\x78\xda\x8e\x66\xc8\x73\xc3\xd0\xdc\x50\x14\xc3\xe7\x95\x5e\xfb\xa7\x4d\xaa\xfe\xcb\x21\x52\x3f\x97\xe4\xbb\x30\xef\x27\x94\x4e\xa0\xf9\x75\xa5\x41\x4c\x71\x5f\x7b\x9c\x26\xc3\xb0\x17\xe6\xc0\xed\xc9\xe0\x3f\x99\x16\x61\x04\xd8\xe9\x62\x26\x42\xf7\x18\xde\x98\xc0\x93\x80\xa8\x8c\xaf\x9b\xa4\x7f\x56\x6c\xb4\x64\x52\xab\x06\xc3\x21\xf8\x29\x6d\xe2\x5d\xae\x0a\x1c\xc6\x24\x76\xc1\xdc\x40\x08\x67\x80\x7a\xe2\x6b\x65\xd8\x96\x52\x5b\xf4\x39\xb0\x00\x56\xe4\x0a\x36\x14\xdf\xa8\x1a\xdb\xb8\xe8\x45\x61\x36\xb4\xfd\xad\x95\x12\xc4\xc4\x37\xd6\xb9\xfa\x25\x01\x8a\xd7\xc9\xe3\x3d\xc3\x7f\xa5\x7b\x76\x9f\x56\xca\xd1\xe9\x60\x75\x3b\xbd\x05\x22\xa8\x33\x0a\xa7\x70\x19\x26\xd6\x8d\x48\x3a\xa2\xac\xdb\xdb\xa9\x82\x26\xfc\x5b\xf8\x6e\xc8\x86\xa0\xd5\x85\xf0\xfe\xd2\xc4\x43\x8f\xbf\xaf\x02\xc5\xd5\xb1\x05\x89\x23\xba\xad\x5b\x69\xea\x10\x79\x23\x22\x18\xec\xa3\xd9\xae\x1a\x74\xd9\x32\x75\xe4\x4a\x61\x1c\x8e\x8a\xd1\x56\x3f\xde\x71\x8b\x7a\xf4\x22\xa6\x4f\x16\xb3\xd2\xdc\xc4\x5b\x9f\x54\xad\x4a\x4e\xa0\x85\x30\xf3\x09\x45\x28\x10\x59\x66\x42\xf6\x0f\x1a\x18\x61\x14\x1a\xd0\xf6\x10\x2c\x91\x37\xb5\x43\x13\x62\x0e\x0b\x91\x18\x70\x77\x68\x42\x63\x49\x11\x64\xbf\xd9\x44\x5d\xd5\x4b\xd2\x34\x59\xf1\x4d\xf0\x46\x65\xaa\x86\x44\x75\x68\xcd\xf2\xea\x0a\xb1\xca\xb5\x5a\x4a\x48\xb8\xb5\xe8\x05\x86\x7d\x43\xdf\x1e\x0a\x86\x26\x1e\xd8\xfe\x6c\x45\x85\xb0\xa5\xb8\x00\xcb\xef\x89\xc0\xe3\xb4\x2a\x2a\x9c\x56\x54\x09\x51\x92\x1c\x24\x3a\x28\xa7\x1c\x8b\x57\x31\x45\xa5\x9a\xd4\x43\x5b\x9a\xff\x46\xa5\xc8\xcc\x82\x37\xe3\xc7\x34\x6e\x56\x26\xce\x68\x2f\x22\x7c\xf9\xb8\x02\xd2\x30\xaf\xbd\xa6\xb8\x86\x0e\x23\xfe\xe1\x9b\x26\x3e\xad\x70\xa4\x94\xc7\x11\x5e\xfc\x25\x7d\x12\x5f\x2b\x56\x87\x60\xd5\xc4\x66\x14\xf6\x35\x66\x0c\xdb\x5d\x00\x64\x3b\x74\x8a\xbf\xcd\x0f\x96\x9f\x45\x50\x05\x67\x83\xe3\x07\xc3\x07\xa3\xc9\x95\xbb\x0a\x19\xaa\x12\xeb\x39\xa5\x69\xf4\x77\xd5\x28\x69\xca\xb4\x36\x4b\x22\xd8\x14\x86\xcd\x93\x4d\x11\x08\x7d\x03\x79\x46\x38\x1a\x27\x69\xfe\x6f\xd2\xca\xf7\x85\xc3\x34\x89\x22\x47\x49\x83\x12\x10\x9b\x4f\xbe\x69\x54\x2d\x7a\xb5\x08\x6d\x4e\x94\x0c\xae\x84\xb3\xb0\x20\xd7\x2a\x87\xb4\x51\x64\xe3\xcf\x96\x0d\xdf\x38\x84\x3f\xbf\x1f\x1c\x4b\x59\x1e\x06\xa1\x89\x55\xa3\xe2\x96\x6a\x54\xdc\x52\x66\x24\x4f\x46\x5b\xc8\x43\x33\x3f\xe9\xc4\x87\x12\xf7\x70\xbe\x11\xbf\xdc\x56\x9c\x0c\x90\x94\x97\x6c\x61\xe3\x99\x7a\xf9\x65\x30\x37\x99\x65\xeb\x24\xcd\x50\xdd\x86\x4f\x83\x25\x3c\xab\xdb\xe5\x47\x6b\x1d\x0a\x3a\xd0\xf9\x90\x68\x1e\x51\x76\x3f\x4e\xa5\x6b\xbe\x56\x2b\x94\x27\x87\x42\x56\xbc\xd2\x02\x23\x02\x85\xf8\x9c\xd6\x0a\x89\xfa\x4f\xb6\x1c\xf9\xfb\x9f\x61\x94\x4b\x42\x32\xb2\x78\xd8\xa9\x57\xc8\x89\x3b\x69\x53\x87\x31\xf9\xaf\xef\x51\x8e\xe1\xea\x48\x7e\xd3\x6e\xa2\x46\x98\x6b\x35\x78\xe1\x7f\x90\xc2\x55\xd8\xeb\xf0\x8a\xed\xcc\x2a\x21\x51\xb9\x12\x78\xbb\x85\x4e\x1a\x7f\x17\x58\x5f\x54\x61\xd6\x91\xdb\xe3\xe6\xb8\x42\xce\xf1\xb8\x0c\x0c\xc5\xc9\x8e\x0f\xdd\x66\xa6\x7e\x7e\x6c\x56\x89\x70\x2f\x25\x99\x30\xde\x39\xce\xc3\xf2\x77\xf2\x4d\x2d\xd1\x3e\x30\xf7\x52\xbb\x57\x64\xab\x18\x5b\xc0\x7b\x63\x46\x00\x86\xe0\x43\x2d\x44\x35\xad\x74\x48\x28\x92\x05\x7c\x40\x21\x00\x24\xdb\x7c\x4b\xab\xb7\x4f\x54\x60\xfa\x07\xba\xe3\x7d\x86\xdd\xa3\xd0\x6b\xaa\xd5\x7a\xa8\xab\xda\xa9\x1f\x76\xbc\x9c\xe1\x7b\xae\x6f\x97\x14\x79\x16\xf6\x6d\x4a\xe1\xb8\xe0\x9e\x54\x47\xf4\x9c\x22\xd6\xb9\x57\x03\x07\x3f\xb7\xd8\x0e\x4c\x14\x94\x51\x6f\xb5\xfa\x01\xda\x42\xa9\x1f\x8b\x67\x0d\x8a\x68\x9c\x86\xb9\x26\x38\x43\xbf\x49\x94\x77\xeb\xd5\xfe\xb6\x35\x69\x3e\x14\xde\x58\x47\x59\x7b\x44\xe5\x63\x47\x6a\xc5\x95\xd2\xae\x05\x54\x5d\x74\x2d\xc1\x33\x8a\x75\xe6\x8c\x96\x3a\x19\x8f\x23\x70\xc6\x48\xad\x9c\x1e\x80\x60\x27\x5b\x5e\x31\xaf\x16\xbf\x3d\xb7\xd8\x1e\x61\x40\x5a\xb1\xa8\xb2\x0a\x11\xdf\x38\x50\xe2\x38\x0d\x99\xf4\xda\x33\x21\x95\xbb\x5f\xd0\x02\x9f\xc5\x86\xb6\x14\xc6\x26\xe2\xd4\x10\x09\x04\x43\x66\xf9\x46\xa1\x51\xfa\xcc\x9e\xb3\x95\xce\x9e\x43\x4f\x79\xc6\x5f\xd0\x69\xc0\xe5\xfe\x0f\x48\x3d\xf8\x46\xf3\x81\x7c\x47\x89\xe6\xde\x73\x93\xaa\x23\xe3\x91\xeb\xa8\x0f\x30\x3e\x9a\x6f\x54\x5b\xac\x00\x20\x66\x8f\x93\x07\x53\x88\xd6\xb7\x35\xa2\x95\x1a\x06\x1a\x17\x46\xff\xfb\xcf\xda\xc8\x32\xb0\x17\xef\xd1\x11\xc0\xd1\x59\x9f\x54\x25\x05\x0e\xcc\x39\xaa\x28\xa5\x2f\x93\x9a\x20\x0f\x03\x9b\x3d\xa2\x29\x9a\x54\x0f\xe2\xf0\x44\xb3\xab\x5e\x50\xfb\xe8\xe3\x8e\xd2\x47\x39\x43\xc6\x09\x1e\x15\x24\xd9\x7c\x4d\x3f\x47\xc4\x68\x60\x87\x80\xf3\x41\xd1\xfd\x3a\xd6\x52\xc4\x49\x7d\x4e\x5e\x8c\xfb\x26\xb7\x9f\xcd\x0a\xf6\xa4\xfb\xcb\x3c\x35\x71\x06\x9d\x2a\x0c\xef\xcb\xcc\x4d\xcb\xb1\x19\x01\x9b\x86\xaf\x7d\xbf\x56\x03\x79\x7e\xbe\x9d\x5b\xd6\xda\x73\xf8\xed\xbd\x73\xaa\x4b\xec\x76\x7f\x90\x17\x26\xc2\xa0\x8e\x02\xdf\xed\xf3\xcd\x6e\x17\x0f\x9d\xa6\xfd\x2a\x75\xa7\x8a\x58\xf5\x38\xd7\x50\xb7\x63\x5a\x25\xe0\x8a\x1a\x97\x38\xa2\xe9\xb2\x09\x3a\x85\x36\x86\x9b\xa5\x75\x03\x6a\x9b\x08\x1a\x28\x19\x9b\xaa\x2f\x1c\xd3\x54\x17\x37\xf0\x0c\x50\x27\xfb\xa4\xe3\xc1\x80\xe7\x2a\x74\x1d\x4e\x65\xa0\x34\x75\x2d\x55\x80\xd7\x23\x49\xe7\xd5\x06\xce\x4d\x8f\x2a\xd3\xc2\x7f\xe1\x1d\xf3\xff\xac\x71\x10\xa7\x5c\x8b\x82\x1e\x18\xa9\x1a\x31\x36\x55\xa6\x40\xca\x77\x91\xe9\x90\x9d\x9a\x19\xd2\x1a\xe1\xea\x47\x8d\x07\x51\x03\x8f\x1b\xd1\x07\x8a\x9c\x9b\xdf\x16\xf6\x50\x10\x15\x59\xb8\xcc\x82\xeb\xa2\xdd\xf5\x4d\x55\x3c\xf9\x66\x2d\x56\xf8\xd5\x32\x87\x4d\x96\x66\x54\x95\xeb\x43\x35\x93\x71\x1a\x5b\x1e\xe1\xde\x3b\x2a\xf4\x49\x93\x7e\x4b\x41\x32\x31\x83\x28\xec\xdb\x9f\x0b\x2b\x3f\x04\x7b\x5a\xe0\x61\x1e\xcb\x71\x41\x29\xa2\xe6\x61\xdf\x66\xe8\xb7\x20\x4e\xfa\x14\x35\x3d\xbe\xa9\xd9\xd6\x32\x0e\xcc\x87\x36\x1d\x25\x2d\x9f\x33\x9c\xd3\xad\xe1\x73\xee\x6b\x2c\x85\x65\x90\x89\x11\xbd\xf5\x4b\x78\xaa\x28\x68\xa1\x68\x83\xc7\xf5\x80\x4c\x8c\x60\x32\x1a\x46\x07\xb2\x64\x39\xb4\x79\x36\xab\x08\x59\x1e\xed\xaa\xa7\x39\x51\x5e\x5c\x30\x3c\xf0\x91\xdf\x51\xd5\xad\x51\x12\xe7\xc3\x68\x75\xb6\xb5\x77\x6e\x7d\x2b\xc1\xe3\xb0\xd2\x3c\xe8\x05\x83\x75\x56\xf5\xbb\xbf\x53\xab\x3c\xec\x9d\x6b\x67\x65\x9c\xea\x9b\x35\x00\xc9\xfe\x54\xc1\xcb\x7f\xaa\x05\x0f\x47\xa4\x74\x4b\x82\x32\xe2\x77\xf0\xf5\xd0\x86\x7f\xa0\x63\x55\x6e\x3b\x61\x6f\x1f\x57\xcd\xfa\x07\x13\xb5\x47\xfe\x52\x23\x99\xd0\x5a\xc1\x0f\x67\xc9\x43\xe1\x6b\xa6\x07\x8a\x28\xe7\x3e\x1e\x28\x4a\xa0\x75\x3e\x91\xf9\xfd\xed\x15\x93\xdb\x94\x14\x3c\xb0\x63\x04\x00\xe5\x61\xe9\x1f\x55\x0a\x07\x07\x2d\x84\x77\xb5\x96\x94\xdb\x8e\xcf\x79\x16\x2f\x6f\xce\x82\x34\xa4\x73\xe5\x78\x23\x6e\x77\x54\x91\xea\xba\x52\x55\x7c\xab\x01\xf7\xf3\x52\x3b\xb3\x00\x23\xa2\xe6\xcb\xcc\x79\x82\xa2\xf3\xa8\x5f\xcf\x9f\xba\x64\xe2\xdc\x64\x00\x3d\xe1\xab\x81\xc1\x81\xaf\x6b\xb2\x4f\x65\x60\x62\xc6\xff\xc1\x57\xbf\xaa\x88\x5c\x36\x38\x74\x8f\xab\xef\xa7\xc5\x60\x07\xed\x1a\x44\x09\x68\x20\x20\xb1\x03\x4f\x96\xb4\x2b\xe9\x7b\x0a\xee\xc1\xfb\xad\xd7\x2b\x0e\x13\xbb\x80\xc3\x68\x7c\x26\xea\x16\x5c\x07\x70\x20\x0a\x3f\x17\xff\xcf\x10\xae\xf3\xbb\xd1\x66\xc1\xc1\xb8\xa1\x7c\x48\x2f\x49\x0e\x96\xf1\xa3\xc3\x63\xde\x54\xb1\xdf\x15\x3d\x0b\x50\xaf\x4d\x2c\x2c\xec\x6b\x9b\x91\x4d\xc3\xc0\xb7\xc2\x5c\x5f\x5a\x51\xc6\xd4\x0a\x7b\x2f\xbf\xdc\xb6\x59\x8f\x27\x8d\x61\x9c\xff\x1b\x5a\x1e\x86\x3f\x4c\x2a\xa0\x0c\x5f\x45\x59\x09\x53\x6c\x2a\x98\xfd\xef\x4e\x7c\x57\xff\x0c\x4e\x06\xf2\x81\xe3\x13\x0f\x5d\xb1\xb1\x4d\x07\xab\xdb\x54\x16\x01\x44\x84\x30\x1f\x56\x8a\xf0\xe5\xf6\x11\xf5\xb2\x32\xbe\x11\x4a\x44\x8f\x82\xba\x5e\x0d\x33\xea\xd3\x9c\xa3\x64\x59\xaa\xb3\x8e\xf9\xbf\x5c\x0b\xd1\xda\xac\xd7\x74\xf7\xb5\xb3\x22\x5d\x32\x5c\x1c\x44\xb8\xcf\x60\x6c\xbe\x69\x62\xc7\x1a\x99\xf4\x90\xcc\xb1\x35\x0e\xe1\x3d\xa1\xc8\x65\xa9\xba\x49\x1c\x96\x0e\x2f\x74\x61\x52\xd1\x7c\xf0\x1b\x77\x1c\x59\xd6\xc4\x91\x46\xb8\x22\x80\x39\x5c\x89\x1d\xf2\xd0\x32\xaa\x1b\x45\x9d\xf7\x91\xc5\xf1\x4d\x33\xd1\x4b\x2f\x0d\xed\xd2\x8c\x9e\x03\x9a\x78\x9c\x0e\x9a\xf1\x08\x1d\x7e\xa2\xec\xf2\xd0\x8c\x46\x94\x42\xec\x15\xed\x65\x9c\x14\xbe\x76\x27\x9a\xa5\x23\x66\x3d\x72\x9b\x11\xcf\x08\xf5\x76\x90\x47\x91\xbc\x86\x1e\x24\x7b\x70\xf5\x59\x26\x08\x8a\xac\x7c\x0f\xc7\xc2\xb3\x65\x4a\xe7\x18\xa9\xfe\x23\x5d\xbf\xe2\x57\x27\x9e\x1d\xe0\xe3\xda\x43\x7a\xf9\x65\x97\x61\xa8\x0c\xf4\x8a\xe2\x36\xba\xa2\x1a\x89\xd9\x38\x49\x73\x66\x8f\xd6\x21\xa3\x4c\x69\xfb\x22\x5b\x1e\x2e\x2d\x99\x78\xb5\xe5\x37\x2b\x53\x78\xf3\x8d\x73\xad\xaf\x24\x83\x81\x6b\x63\x8a\x3c\x60\xf9\x9e\x7c\xdd\xa0\xb6\xb2\x48\x7e\xdb\xb6\x5a\x5f\xfb\x4d\xc7\x4a\xab\xe9\x6a\x1b\x58\x1a\xcd\x0a\xb1\x34\x7a\x63\xfb\xb1\x22\x70\xfe\x58\xa9\x56\xa4\x26\xee\x27\x23\xc4\x3f\x8b\x5a\x57\xcb\x05\x08\x8f\xa8\xda\xc7\xcf\x95\x51\x3b\x77\x5a\xb0\xad\x5c\xad\xda\xa7\xc8\x77\xaa\x32\x56\xe5\x8a\xe0\xb1\x73\x8f\x59\x08\x58\x54\xe8\xf2\x8f\x81\x55\x62\xa1\x4a\x25\x8c\x04\xdc\x12\x82\xa9\x8f\x08\x59\xe8\x48\xcf\x77\xef\xe6\x5a\xf4\xbb\xc8\xc2\x90\x1b\xfd\x6f\xa8\x66\x20\x87\x7a\xcb\xd3\xde\xb5\xae\x03\x1b\x85\x63\x80\xc8\x5b\xca\xfc\xad\xdf\xf8\xba\x9b\x02\xc3\xc9\x11\xec\xef\x66\xc1\x2a\xbf\x41\xf1\x2f\x5c\xfc\x3b\x1d\xdf\x55\xfc\xb4\x32\x0a\x73\x0d\x90\x62\x0e\x9f\x11\x4b\xe3\x43\xbe\xab\x04\xd4\xaf\x6b\xdd\xda\xcd\x98\x2f\x40\x7f\x94\x69\x9d\xf0\x91\x75\x96\x38\xc9\x60\xfb\x49\x14\x99\x14\xc7\x55\x94\x97\x7c\xde\x83\x79\x0c\xa4\xde\x6f\xd6\xac\xfc\xde\xb9\x76\xbf\x00\xb6\x0a\x11\x07\xc8\x36\xf8\xda\xe1\x55\x4c\xd4\x33\x71\xe8\x3d\x08\xb0\x7c\x9f\x4e\x14\xb0\xef\xd3\xce\x53\x5a\x7d\x32\x27\x09\xe3\x5c\x6a\x0a\xfc\x98\xe8\x67\xcb\x23\xdb\x00\x30\x7d\x71\xef\x5c\x7b\x71\x71\x4f\x45\x41\x87\x56\x46\x92\x6b\x37\xa0\xb0\xa2\x85\x7c\x18\x7c\xd0\xa9\x20\x11\x1a\xc6\x01\xd0\xb1\x55\xac\xc9\x1f\x6a\x5e\x84\x0d\x74\x14\x59\xbe\xd5\x63\xf1\xf7\xd0\xee\x40\xd9\xeb\x7f\xc4\x57\xe2\x1b\x32\x2d\x9c\x11\x61\xff\x62\xfd\xd7\xb1\xeb\x90\x61\x6c\xad\xcd\xa2\xee\xde\xdd\x4e\x8b\x5e\x18\x98\x11\x2d\xbc\x0c\x8d\xa9\xae\x3d\x13\x3e\xe0\x98\x0d\x93\x34\x29\x06\xc3\x5e\x6a\xfb\x98\x0e\x87\x45\x3d\xa3\xf5\x73\xcf\x60\x77\xb9\xa0\x73\x71\xd1\xd1\xaa\x94\x3f\x44\x40\x78\x8f\xaa\xa1\xef\x3c\x79\xca\x03\xf9\xa1\x9f\x8f\x52\xc1\xec\x54\xc9\x57\xfd\x35\x7e\x17\x9c\xdc\x83\xea\x44\x90\x42\x30\x6e\x05\xe6\x80\x39\xa7\xa6\x1b\xc6\x88\xca\x63\x8e\xb4\xfa\xaf\xe0\x33\x85\x17\x94\x8e\x39\x10\x8d\x38\xce\xce\x02\x1e\x10\x9b\xfd\x50\x97\xd6\x12\xe1\xd2\x2d\xea\x45\xe2\x99\x81\x32\x12\xa6\x17\xc3\x5f\x08\x57\xef\xa2\x95\x8e\xfe\x2c\x53\x27\x21\x16\xd9\x44\x63\x85\xa8\x42\xbf\x85\x05\xc3\xc3\xdb\xd4\x25\x93\x01\xff\xf6\x91\x1f\xa4\x5d\xcd\x72\x3b\xca\xb6\x28\xc1\x28\xa1\x84\x43\x8c\xf8\x98\xf2\x55\x90\x60\xaf\xc0\x06\xe0\x80\xae\xbb\x79\x9c\xa4\xf7\x8a\x0d\xa0\x0f\xe3\x16\xfe\x8e\x7a\x3e\x77\x1a\xe5\x6b\xcd\xb2\x4d\x49\xe1\xc0\x25\xef\xeb\x8a\x8c\x63\x5d\xa1\x57\x88\xba\x7c\x8b\x9a\x56\xe0\xa1\x3f\x85\xb8\xde\x23\x37\x6a\x22\x18\xda\xe2\x38\xc5\x2c\xfa\x21\xb1\xc3\x0a\x4d\x8e\x32\x61\x99\x22\xd5\x38\xeb\x18\xb7\x80\x14\x4e\x23\xe6\x22\x41\x3e\xf3\x2d\x6c\x0d\x04\xdc\x48\x0b\x51\x50\x80\x92\x36\xac\xf1\x51\x7f\xa0\x8b\xf1\x38\x0a\x6d\xba\xd5\x67\x41\x3b\xf1\xd4\xe1\x41\x18\x34\x09\xd7\x79\x8d\xb6\x80\x6b\x4d\xef\x9d\xd3\xd8\xe4\x7d\x7c\x32\x4f\x2b\xc4\x53\x6a\x90\x3d\x08\x76\xd4\xb7\x3a\xea\xd0\x51\x31\xa9\xe3\xd4\x2c\xf7\xcd\x8c\xe7\x23\x07\xbb\x08\x7e\xd0\x09\x5d\x94\xbf\xe3\x3c\xf9\xb2\x39\xf4\x2b\x5f\xfd\xea\x57\x61\x87\x71\x92\x8e\xab\x51\xe8\x07\xb0\x1c\xa2\x04\xe4\x3b\x57\x45\x1c\x85\x07\x6d\xb9\x80\xe5\x1e\xc4\xbb\x5e\x80\xe7\xe0\x1b\x7a\x17\xa4\x7d\xe8\x77\xf3\x75\x43\x23\x72\x5f\x3b\xb5\x4b\x09\x05\x47\x2d\x55\x72\xbc\x35\x51\x14\xc4\xb7\xb4\xbf\xb7\x99\x4d\x97\x6d\x86\xd8\x1b\x0e\xf4\x2a\x52\x3a\x99\xe3\xa5\x33\xca\x6c\x94\x95\xa1\xde\x72\x3b\x08\x4b\x65\x05\x90\x40\x9f\x25\xe6\xa3\xa9\x96\x9f\x99\x25\x9d\x23\xa0\x36\x03\xbf\xcc\xa3\x12\x68\xfe\x9f\x6e\xaa\x22\x0c\xad\x59\x76\xd0\x52\x18\x9c\xdb\x4a\xb1\x5c\x4b\xc6\x05\x51\x92\x31\x4b\x05\xde\x1d\x1c\xe5\x7c\xfd\x59\xd8\x97\xb1\x89\x45\xfa\x1b\x40\x8c\xf3\xea\x01\x7c\x4f\x73\xed\x5f\x76\x5c\xfb\x43\x93\xf6\x83\x24\xc5\xc0\x2c\x23\xf6\x60\xf7\xc0\x2f\x73\x56\x01\x2e\xdf\xc2\x76\xe6\xa0\xa2\x49\x4a\xae\x97\x0c\x0a\xb4\x57\x51\x59\xb9\xac\xaa\x19\x98\xdf\x17\x02\x64\x07\x5c\x8a\xc2\xbe\xdd\xea\xe7\x41\x89\xfa\xf7\xfe\xdf\x7f\xa2\x5b\xcd\xa9\x1c\xd3\x02\xd7\x8c\x5d\x10\x7b\xc0\xfd\x83\xa3\xec\xb6\x23\x9b\xe2\xe4\x60\x5b\xf0\xb6\xe7\x9b\x86\x1e\xcd\x62\x7b\x5c\xe4\x15\xaf\x8c\x0a\xbc\xb4\x57\xbc\xa1\x2a\x13\xa9\x3e\x00\xbe\x28\x64\x7d\x40\x3f\x90\x7f\x54\xa7\xa5\xa8\x5f\x1f\xd3\x93\xac\xe3\x72\x57\xab\xce\x09\x0a\x22\xf2\xa7\x2a\x15\x29\x54\x50\x2d\xfc\xc7\x2d\xcf\x85\xac\x66\xc3\x0f\xc6\x50\x74\xa3\xe5\x10\x3c\xa6\x37\xaf\xc7\x6b\xb5\xa3\xdd\xbb\xdb\x26\x36\xd1\xea\x6b\xee\x03\x98\x72\xa9\xe3\x37\xf4\x19\x55\x54\xa4\x6e\x64\xb2\x6c\xd3\x0c\xd9\x40\x93\x7a\xd0\xc6\x0c\x75\x7e\x7f\x3b\x37\x11\x2a\x9d\x78\x2c\x37\xd5\x7c\xe4\xcd\xc9\xc3\x6e\x25\x5f\xa3\x79\x0f\xec\xfc\xbb\xf4\xbd\x31\xcd\x06\x38\xa1\xf3\x02\xe5\x83\x43\x40\x7c\xa2\xb3\x91\x75\x73\xf7\xee\x76\x32\x9c\x29\x83\x5e\x89\x8c\x7d\x05\xf7\xe3\x89\xef\x68\x35\x8a\xfc\xb0\x46\xe6\x30\x1c\xf3\x12\x22\xf2\x65\xbc\x18\xdf\x34\x65\x24\x59\x6e\x56\x79\x72\x14\x91\x01\xb3\xe9\x89\x31\xd7\x94\xbf\x4a\xf8\x26\x48\xad\x0d\x86\xbc\xf4\x2f\x09\x72\xb5\xa3\x1a\x25\x75\x20\xf0\x81\xb9\x67\x15\xe9\x19\xc3\xf8\x27\xbe\xfe\xfc\x11\xce\xa3\xe0\x2d\xbd\x30\x80\x35\x23\xf0\x7f\x38\x7a\x67\x17\xbd\x42\x17\x1c\x67\xfb\xe1\x5a\x11\x6a\xf7\xee\xb6\x8d\x1d\x01\xb8\xce\x7c\xf8\xba\xb6\xab\x0e\xcc\xb5\x8b\x98\xe4\x9c\x36\x0e\xa1\xfa\x39\x4e\xaf\xec\x11\xc6\x4b\x04\x94\xc7\x92\x6b\x6a\x28\xbe\xd6\xf3\xcb\x51\xb6\x43\x81\xab\xae\x21\x24\xa0\xa5\xfd\xed\x27\xba\x3e\x69\xf8\xf2\x2f\x03\xab\x43\xd1\xd8\x57\x9e\x9c\xfa\xa4\x6b\xe7\xd4\x03\xbf\xbf\x34\x55\xcc\x88\x17\xc8\x15\x3b\xac\xf7\xde\x39\xaf\xa3\x7d\x40\x1a\x5c\x77\x38\x60\x82\x09\xfa\x02\x26\xa0\x11\x18\x3d\x50\x5a\x4e\x45\x6c\x8a\x32\xd0\x0d\x5f\xb3\x5c\x16\xc7\x66\x64\xae\x48\xbe\x69\x90\x4f\x6b\x2f\x15\x71\xdf\x8d\x0b\xc8\x8c\x9c\xdf\xc1\x88\x0c\x05\x53\xef\x31\x20\xa3\x7c\x34\xa3\xc6\x8c\x31\x16\x8d\x84\x0c\xe3\x6b\x32\x47\xfe\xb8\x33\x87\x3d\xfb\xda\x6b\x91\xed\x53\xcc\x2e\x51\x81\x02\xd4\x5e\x54\xb3\x58\x36\xec\x67\xa3\x64\xa6\x7c\x1f\xec\xca\x7b\x5a\xd2\xf1\x5d\x3c\x03\xc4\x8a\x9b\xba\x15\xf1\xc5\xf1\x10\x40\x57\x04\xa6\x98\x63\x92\x92\xba\xe7\x13\x7a\x5d\x6b\xc8\xf4\x32\xa4\x05\x88\xec\x1e\x9e\x6a\xf6\x99\x2d\x78\xc2\x48\xb1\x3f\x47\xb3\xe8\xf8\xb3\xfb\x4a\xda\xfd\xe6\xe4\xef\x7c\x46\x1c\x94\x8d\x6d\x40\x7a\xc2\xd2\x21\x85\xef\x3f\x8d\xe3\xcd\x37\xbe\xf9\x9c\x9a\x25\xd7\xa5\x76\x95\x09\xb7\x8f\xce\x79\x99\xe2\xa4\xc8\x87\x2b\x36\xcb\xad\x48\xc0\x6b\x8d\x6c\x51\xfd\xda\xe8\x9e\x9f\x7e\xba\x9d\xf4\x28\x5c\xe9\xc3\x70\x08\x07\x23\x7d\x9e\xaa\xd4\xca\x64\xc2\x1d\xcd\x85\x32\x34\xa3\xb1\x19\xc4\x0c\x3f\xc5\x61\xe0\xd1\x60\xd8\x9c\xab\x5a\x63\xed\xa3\x8e\x1f\x84\xb9\xda\x24\x07\x37\xb4\x06\xd3\x15\x08\xdd\x8f\x76\x3c\x0e\xff\xa8\x9a\xdd\xde\xa3\xca\xb8\x59\x38\x88\x4d\x04\x9f\xc1\xfc\x08\xf4\x29\xc2\x95\xe0\xfb\x57\x26\x4c\xc7\x49\xca\xbd\xb4\xc6\xce\x8c\x1b\xf1\x17\xee\xae\x19\x4d\x2f\x0f\x75\x72\x04\xcf\xeb\xf4\xcd\xb0\x0b\x6f\xd4\x66\x2b\xe6\xf7\x93\x83\x32\x61\x2c\xcf\x0d\xc0\xe0\x4b\x1d\x0f\x12\xbe\xd4\xcc\x54\xb7\x94\xaf\x24\x49\xbf\xe5\x73\x87\xcb\x8a\x0a\xf1\xf2\x67\xb2\x9c\xa5\x85\xf0\xcb\x60\x75\x6f\x6b\x24\xee\xed\x26\x95\x73\x42\x81\x2d\x83\xbb\x14\x1e\xf3\xf4\x44\xa9\x38\x21\x7a\x41\x43\x61\x2b\x81\xed\xd7\x2f\xa9\xf1\xb1\x41\x6a\x7a\x3d\xb0\x1a\x09\x9e\xe3\xc1\x44\xf3\x9e\xd7\x09\x19\x0f\xcc\xed\x69\xe7\x45\xea\x96\x04\x16\xee\x7f\x81\x97\xe1\x1b\x0d\x3d\x23\xbc\x51\xca\x94\x00\x88\xbf\x4e\x41\x76\x9f\x6f\x2a\x20\xb8\x41\x38\x6e\xa9\xae\xec\x9a\xa6\x3e\x5e\x53\xa1\x79\xdf\x46\x61\x60\x72\x8b\x84\xc2\x69\x05\x39\x60\xe0\xdb\x6a\x2c\xac\xae\xa4\x47\x0c\x9c\x07\x5d\x8c\x82\x3a\xfd\xd6\xa9\xef\x97\x6e\x55\x78\x9c\xc8\x66\x99\x4d\x5b\x9e\xed\xe4\xd6\xc4\x97\x3c\x6e\xa9\x39\x4f\x0a\xa8\xb7\x2b\x42\x6c\xc0\x05\x61\x76\x1f\xea\xfa\xcc\xec\x44\xc7\xf7\x02\x01\x44\xe4\x6b\x78\xf9\x4a\xc3\x0f\x55\xc8\x77\xe9\x31\xa2\xd3\xb5\x7d\xea\x3f\x32\xcc\x4d\xb4\x0a\xa0\x3d\xa2\x71\xd6\x94\x43\x90\xfd\x7e\xc7\xf7\xe4\x2e\xaa\x6c\xeb\x9b\xc8\x61\xb4\xee\xae\xcc\x2e\x2a\xb6\x8a\xeb\x6a\x64\xa5\xc8\x8a\xd2\xca\xa1\x61\xae\xed\x25\x33\x12\x4c\x14\x89\xc2\x35\xfa\x54\x84\x27\x9b\xa7\xbe\x8c\xb4\x19\x03\x16\xb8\x79\x1b\x61\x85\x93\x8a\xf7\x4a\xf9\xe7\x3b\x02\xff\x4e\xc3\x1c\xc5\x00\x19\xc3\x68\x39\xf2\x99\x4b\x9a\x72\xda\x60\xba\x5e\x38\x74\xfc\x98\xcb\xda\x44\xf4\x16\xd2\x6d\xaa\xc9\x25\x65\x0a\xe1\xa2\x6a\x39\x0e\xf9\x16\xf4\x57\x1c\x75\xdd\xaf\xbb\x09\x58\x25\x4e\xcc\x5e\x17\x70\xff\xb3\x5a\xc9\xc2\xf6\xfb\x18\x83\xab\x84\x96\x7c\xa3\xba\xd1\xaf\x98\xb1\x89\x1f\x2e\x57\x09\xe7\xe5\x43\x3c\x0f\xd1\xc0\xa1\x9c\x12\x6f\x0f\x16\x1b\xd8\xa7\x75\xda\x29\xc8\x1c\x77\x60\x0a\xc5\xe9\xae\xef\x9d\x93\x3f\x42\x6e\xec\xe8\xe0\xca\x75\x05\xc8\x97\x91\x15\xc2\xde\xea\x2b\xd5\xbf\xf4\x4b\x3f\xa3\xa6\x36\xdf\x44\x15\xcb\x05\x18\x7b\xe6\xf7\x3b\x45\x0d\xc5\xef\xa4\xa7\x3e\x4f\x12\x3e\x45\xc8\x0a\xfc\x24\xe1\x4f\xa9\xee\x8c\xc5\xfc\x0b\xaa\x2e\xc3\xbb\xde\x04\xf8\xc7\x21\xef\xca\x03\x83\x0d\xfb\x83\x8e\xda\x22\x9b\xa9\x1c\x22\x43\xf3\x0a\xb8\x72\x6a\xe2\x79\xb9\xaf\x23\xcb\x81\x2d\x06\x24\x97\x41\x91\x44\x52\x21\xc4\x41\x6a\x3e\xf3\xae\xae\xab\x5d\x21\xce\x11\xa6\x21\xa7\x1a\x1b\x3c\x13\x57\xec\xdc\x24\xce\xde\x39\x2f\x6d\x8b\xcd\x23\x2a\x2d\xb4\x8d\xf9\xe3\x6b\xae\x70\xff\x0b\xed\xa5\x30\xee\x53\x6a\x83\x66\x27\xaa\x53\x7c\xad\xe2\x94\xbd\xfb\xf6\x6f\xf1\xcd\x7e\xee\x1f\x22\x23\xbe\xd2\xf1\x3b\xe5\xa2\x22\xd1\x3d\xd5\x29\xf7\x27\xeb\xb2\x35\xb4\x36\x81\xef\x4b\x83\xb0\xf4\x28\x1a\xac\xed\xb8\x5c\xcf\x34\x44\xda\xcf\xb6\xed\xa1\x71\x14\x06\x21\x1a\x73\x88\x0d\x31\x9d\xca\xd7\x35\x87\x57\x26\x64\x36\x1d\x85\xb1\x89\x66\x7c\x2d\xe0\x82\x22\xc8\xe5\xdf\xc3\x9c\xc5\x8e\xf0\x6c\x98\xac\x6c\xa9\x00\xb2\x16\x16\xd6\x59\xfc\x05\x86\x72\x16\xa2\x49\x64\x6a\x9f\xf8\x3c\xa2\x35\xc1\x5f\x3d\xe5\x89\x3a\xe2\x38\x29\x62\x90\x51\x33\xf1\x9e\x50\xb1\xfa\xaa\x23\x72\x44\xa4\xb8\x27\x3e\x43\xdc\xf9\xa5\x1d\x4a\x56\xe3\x82\x16\x53\x79\x87\xf6\x86\x93\x97\x2c\xb7\x03\x22\xf8\xb3\x38\x6f\x7c\x83\xf3\x86\x0f\x7c\x97\x3e\x9c\x7b\x15\x5d\x35\x82\xc3\x2c\xdd\x1a\x3b\xcf\x1a\xb4\x64\x89\xb0\x31\x99\x0a\x5d\x38\x7f\x1a\xca\x20\x91\x5d\xb6\x78\xb0\x70\xfb\xe7\x54\xd2\x7c\x4e\xc9\xa1\x1e\xb4\x71\x16\xc6\x83\xdc\xe9\xbe\xb0\x50\x4f\x55\xb5\x67\x97\x03\x0a\x12\x7e\xcd\x85\xb4\xd8\xf4\xc7\x14\xc7\xfa\x31\x65\xf1\x32\x3b\xce\x9f\x01\x62\x45\x78\x19\x54\x49\x05\xa5\x53\xe1\x62\xa0\xdf\xc3\xff\xb0\xc1\xe5\xc7\x04\x96\x43\x35\xe7\xa2\x22\x69\xbf\x81\x48\xc6\x29\x4d\x96\x6f\x0d\xcb\xf6\x27\x34\x56\x8f\x00\xe2\x26\xd5\x51\xa4\xc5\x4f\x0b\x0d\x77\xba\x03\xed\x22\x58\x4c\xd4\x14\x98\x67\x75\xa2\xc2\xdc\x73\x60\x3a\x90\x85\xd8\x88\x84\x3c\x30\xb7\xd8\x8e\xed\x20\xc9\x43\xe3\xf9\x16\xb9\x8e\x4a\x3b\x5c\x6a\xaa\x0d\xf0\xcc\x30\xee\x17\x81\xb4\x62\xf0\x5c\xff\x33\xb8\x78\xbe\xf1\xc5\x74\x56\x12\x20\xd3\xd4\x28\xaa\xe5\x4d\x45\x52\xc8\x93\x84\xbf\x7d\x4b\x4b\xac\xbc\xd5\x24\x43\xd7\x4f\xcd\x48\x68\xd1\x59\x60\x7e\xa2\x86\xf3\x38\x66\x90\x3a\x98\x62\xa8\x0b\xa3\x65\x68\x78\xbe\xe4\x06\x20\x74\xd5\x48\x1d\x29\x46\xb3\xc9\x68\x44\x03\x50\x57\x3a\x35\x11\xb7\x88\xa5\xcb\x5f\x3e\x7a\x69\xff\x7b\xaa\x1a\x62\xac\x0d\x6d\x46\x82\x33\xae\x07\xa4\x75\x21\x2b\x81\x9f\x2a\x8b\x42\x36\x0d\x16\xf6\x6c\x95\x2b\xb6\x17\xcc\xaa\xe2\x34\xdc\x16\x0c\x0d\x84\xca\xf8\xba\xa3\x26\xa8\x9a\xaa\x33\x51\x18\x1f\xe4\x82\x8e\x0b\xa1\x5c\xc3\xb2\x2e\x7d\x4e\xa0\x9b\x9e\x1a\x5a\x40\x84\x7a\x59\xa1\xab\x2f\xd7\x1a\xd9\x5f\x69\x9b\x20\x48\x0b\x79\x09\xcf\x5f\xe0\x10\xc9\x30\x46\x03\xc6\x69\x1c\xe6\x79\xd6\x2b\xd2\x01\x14\x18\x85\xc1\x5f\x1d\xf5\x93\x2a\xed\x8b\x4d\x5e\xe6\x1b\xd1\xea\x8c\xcf\x67\xce\x69\xd1\x0c\x10\x62\x0b\x39\x68\x13\x1b\x4f\xd1\x0f\x05\xb3\x86\x9d\x7a\x5b\x95\x12\xb7\x74\x55\xd7\xee\xc7\x38\x74\x70\x0e\x67\xdd\xce\x4f\x96\x6d\xda\x2f\x34\x97\x22\x7f\x03\x47\x55\xb7\xb0\xc0\x08\xa0\x27\x28\xe2\x84\x11\xde\x3e\xad\xd0\x1a\xe5\x69\x18\x70\x73\x07\x68\x9c\xb7\x68\x34\x19\x25\xa8\x3b\x08\xaf\xdc\x62\x78\x78\x28\x54\x4b\xa5\x91\xd0\x50\xf1\xde\xd7\x1e\x9b\x54\xa6\x3d\x59\x96\xaf\xa3\x88\x99\xbf\xa3\xd8\x95\x40\x8b\x6b\xb3\x6d\x7e\x42\x8e\xb1\x36\x30\xca\x37\x10\xaa\x60\x67\xde\xd2\x22\x1a\x9f\x4c\x7c\x5b\x99\xa7\x1d\xe0\xc0\x1e\xe0\x54\xe1\x5f\xb4\x6c\x68\x11\xe7\x61\xf4\xb8\x9a\x04\xfc\x43\xd5\x25\xd8\xd4\x55\xf3\xce\x9f\x74\x7c\xe6\xc0\x14\x1f\x58\xc1\xb7\x10\x07\x89\xac\xa7\x62\xe8\x7c\x8f\x90\x43\x4e\x31\xbe\x8c\x00\xe5\xa9\x95\xa6\x72\x1d\xea\x2b\x8c\x3d\xec\x28\xf8\xd1\xbb\x8a\x35\x04\xf5\x56\x44\x53\xb7\x34\x83\xd5\xe6\xae\x9f\x9b\x3a\x5a\xa3\x34\x9e\xdf\xdf\xce\xcc\xea\x8c\x3a\xe9\x4c\x8a\x09\x93\xfe\xbe\x46\x66\xa8\xf5\x58\x8a\x0c\x17\x04\xe0\x07\xee\x77\x14\xee\xeb\x7e\x13\xc7\xd8\x20\x0d\xed\x52\xcb\xef\x3a\xce\xbd\xf8\xc6\x75\xdf\x7a\x26\x1f\xa6\x49\x32\xc2\x71\x77\x8d\x35\x37\x8b\xeb\xa5\xf7\x7b\x49\x92\x39\x71\x4d\x38\x05\x64\x3f\x4e\xd1\xb4\x7c\x5a\x30\xfc\xad\x5a\xd7\xbb\xf4\x16\xb9\x89\x68\x30\x68\x61\xc1\x09\xc3\xd1\xaf\x10\x65\xb8\x5d\x6e\xd6\x93\x19\x88\xe4\xd3\x50\x13\x3a\xac\x84\xfe\xbf\x87\x4f\x43\x8c\xf1\xae\x9b\x12\xcd\x8a\x1e\xb5\x70\x02\xe0\x0c\x35\xb8\x16\x7e\x15\xf0\x41\x3c\xa8\x7b\x75\x3e\xdb\x32\x4c\x32\x29\x66\x98\x5a\xfe\x2f\x3f\x52\xd4\x53\x1f\xd5\x5e\xb5\x77\xae\x5d\xc4\x7d\x9b\x66\xb9\x89\xfb\x33\x3e\x37\xbc\xab\x20\x06\xc8\x4e\xd1\x2b\x3e\xe9\x7e\xa8\x05\x17\x0e\x41\x8e\x7d\x8a\x03\x10\x06\x5f\x4f\x1b\x48\x24\xcc\x12\x01\xfa\x5a\x6a\x4a\xb7\xa3\x82\x4a\x4d\x5d\x12\x98\x2c\x4f\x93\x19\xaf\xfc\xb4\x95\x92\x8e\x8a\xc2\x37\x7a\x1d\xf7\x94\x5f\x84\xe6\x1b\xd6\x5e\xa6\xa4\x3c\x20\xfe\x66\x47\xa1\xd1\xd7\x14\x50\x76\x14\x46\x7d\xbb\x02\x22\x43\x19\xbc\xa4\x64\x0b\x1f\xbd\xa6\x4e\xcc\x3f\xc3\x47\x0b\x1f\x91\x37\xd9\x63\x13\xc6\x4b\x05\x45\x67\x4a\xaa\x49\xd1\xc6\x6a\x9c\x55\x3f\x35\xf4\xa4\x54\x4c\x74\x4f\x51\xe4\xdc\x53\xb4\x43\x9e\x36\x42\x5c\x4e\x13\xd3\x7d\x43\x18\x9a\x0d\x6d\x84\x73\xe4\xe2\x37\xd7\x99\xd3\x84\x70\x26\x85\x5a\xa3\x67\xcc\xbb\xd5\xf1\xb0\xb9\x5b\xae\xfa\x19\xc6\xcb\x36\xcb\xc3\x81\xc9\x25\x70\xe2\xd6\x27\x8c\xb8\xf4\x41\x3d\xa4\xf2\x15\xbb\xb4\xd4\xd2\xc3\x35\x7a\xe8\x66\xa3\xcb\x7a\x71\x7e\x7f\x7b\x68\x32\x16\x6a\x63\x76\xd8\x8e\x1f\x9f\x7b\xaf\x86\x87\xdc\x3d\xdf\x5e\x8a\x92\x95\x56\x05\xde\xbf\xb0\xe0\x7c\x55\x93\x70\x61\x36\x4c\xc3\xd8\x97\x97\xb0\xad\x8f\x2a\x58\xaa\x56\xc9\x34\x03\xfb\xb8\xa2\xbe\x62\x89\x49\x58\xf5\x2b\x64\x69\x61\x50\x4f\x4c\x3c\x83\xe4\x17\x91\x4f\x70\xef\x7c\xe2\x37\x14\xd2\x4b\x72\xbe\xe1\xdf\x46\xf8\x0b\x1b\xb0\xa9\x5b\x61\x38\xd6\x2c\xe7\x4a\x2f\x0a\xe9\xa5\x50\x26\xfa\x88\xee\xca\x53\x53\x45\xbe\xb6\x85\x8b\xe8\x88\x0b\x10\x3a\x01\xe1\x75\xf1\x33\x31\x03\x7d\x13\x45\x26\xa3\x83\x26\x6d\x63\x45\x01\x7e\xa5\xa3\xda\x63\xaf\xe3\x19\xc0\x60\x0d\xcd\x41\x9b\x8d\xad\x49\x2d\x8f\x4c\x4a\xf6\xe2\xc3\x9b\xa3\xba\x4e\x15\x07\x26\x8e\x59\x9a\x1d\x9d\x87\x07\x6a\xa2\xf4\x8e\xd2\x23\x7b\xab\x69\x20\xbe\x67\x63\xbb\xc4\xa4\x81\xa8\x1d\x1c\xc1\xbe\xe3\x1b\x35\xb9\x15\x9b\x83\x16\xe6\x4c\x05\x16\xa2\x9a\x73\xa1\xa3\xe6\x04\xdf\xd8\x08\xe6\xda\xb3\x77\x4f\x7b\x61\x61\x1f\x0a\x9d\x58\xed\x7f\xae\x87\xa1\xff\xb9\xda\x1e\x71\xdf\x6c\x53\x87\xe6\x30\x95\x35\x44\xb3\xbb\xa5\x94\x99\x14\x09\xe9\x79\xb0\x6d\xca\x73\x6c\x39\x0e\xf0\x07\x5a\xe5\x5b\xd3\x98\x66\xc3\x64\x3c\x8b\xa7\xaa\x46\x28\x3d\x5f\x3c\xbd\x8c\xff\xa5\xa3\x7e\xe7\xd9\x8e\xef\x52\x11\xad\x58\x14\x06\xa6\x27\x08\xc9\x0a\x1d\x37\xdf\x74\xbc\x74\x66\x6a\xb3\x24\x2a\x72\x51\xa6\x07\x88\xe9\x38\xc5\x2b\x7c\xad\x98\x02\x46\x26\xb7\x69\x68\xa2\x8c\xc4\xeb\xa4\x8a\xa5\xf4\x88\x3a\x7e\xb6\xf9\x8a\x2a\xb2\x70\xcf\x03\x25\x93\xbf\xc4\x66\x47\x58\xf8\x7a\x47\x45\xba\x87\xd5\x92\xff\xfb\x5f\xcd\x20\x1a\xac\x49\x87\x64\xae\x52\x3d\xa6\x6f\x50\x87\x4f\x76\x16\x2d\x91\xd4\x1d\x6b\xa0\xb6\xf9\x76\x56\xa4\xcb\x76\xb5\x22\x45\x7a\x4a\x0d\x86\x9f\xaa\x65\x9e\x5f\x29\xe3\x73\x1a\xea\xf1\xfe\x16\xfd\x94\xb7\x14\xc9\xec\x5b\x0a\x39\x40\x8c\x32\x2d\xe5\x0c\x4e\x4d\x14\xbb\x78\xbd\x41\x38\xbf\xbf\xdd\xb3\x76\xec\x0c\x15\x0e\xf1\x75\x45\xfe\x72\xbd\x92\xa9\x0f\xc3\xd1\xa3\x6a\xcf\x72\x04\x09\xbf\x7f\x8e\xcc\x13\x5e\xb5\x89\x28\x9e\xb5\x26\xaf\x92\x78\x14\x3a\x34\xae\x02\x3a\x52\xf8\xdd\xf3\xbc\x12\xd7\x95\x72\xda\xbf\x80\x6b\x93\x64\xcc\xf3\x0f\x00\x3d\xcd\xe4\x7d\x64\x25\x45\x1e\xb1\xc2\xbb\x18\x66\x3b\xe8\x20\xe2\x45\x0f\xe8\x45\x78\xb3\xef\x21\x93\x45\x70\x76\x84\x3a\x89\x78\x87\xab\xd8\x23\xfc\x0a\x15\x99\x83\x6a\x17\xe6\xf4\x8f\xe8\x23\x71\x8e\xfe\xb8\xc2\x17\xdf\xf1\x43\x1e\x8f\xd0\xc6\x11\x42\x3d\x5a\x38\x1c\xe2\x1b\x15\xf3\x9f\x3d\x44\xab\x82\x58\xf5\x3c\xe2\x6d\x57\x69\xf6\x19\x03\xbf\x03\x10\x0c\xc7\xc8\x50\x0b\x2a\x8d\xb6\x14\xfa\x35\x5f\xec\xba\x4a\xdd\xd7\x77\x4d\x4b\x5b\x81\xff\xff\x2d\x04\xf8\xc8\x03\x66\x6b\x3c\x40\x07\xe6\xe6\x59\x5e\x55\xdc\x3f\x22\xfa\xcb\xaa\x82\x76\x59\x01\x43\x56\x4c\x9a\xda\x98\x05\x95\xb1\x3c\x77\xb5\x22\xe1\x5d\x55\xed\x0e\xa8\x2c\x57\xbe\x0f\x6a\xda\xeb\x1a\x6c\x42\xcf\x1d\x1b\x62\xab\x62\xcd\xcd\x53\xbb\x1c\xc6\x09\x4a\x0f\x7a\xe8\x01\x3b\xef\x64\xa5\x62\x41\x50\x47\xfe\x07\xe5\x0b\x22\x6b\x96\xc3\x78\x00\x80\xa2\xe8\x08\x96\x9b\x54\xfe\x94\x36\x00\x9e\x21\x10\x48\xa8\xb1\xde\x56\x21\xd2\xb9\xce\x13\x1a\x0d\xc6\xe6\x8a\x5a\xd7\x70\x63\xb7\x75\x35\xf9\xb4\xd6\x44\x76\xb3\xab\x03\xf3\x9a\xcd\x41\x9c\x0a\xe0\xdb\xfb\x9a\xff\xf3\x7d\x45\x1d\x31\x32\xd1\xd8\xf6\xad\x02\xe4\xb1\x62\x1d\xdf\x28\xdb\x99\x99\x25\x3b\x28\x4c\xda\x07\x91\x11\x8f\x62\xd3\x12\x89\x5e\x34\xfd\x6e\x09\xc4\x76\xa8\x63\xfc\xcc\x0e\x58\x7a\x15\x3d\xce\xb3\x23\x3e\x4e\x25\x7b\x57\x41\x77\x03\xf9\xff\x17\xbe\x07\x8e\xf4\x35\x5a\x45\x1c\x23\xf0\x09\xa1\x75\xf0\x43\xb4\xf5\xdc\xae\x2c\xf7\x06\xbf\x6d\xa7\xf5\xf4\xd3\xbe\xc6\xef\xb9\xed\xfe\xb4\xe3\x75\x1e\xce\xd5\x48\x6b\x25\x78\x38\x68\xca\xe4\xa1\x0f\xb7\x2c\x55\x68\xe5\xc9\x4e\xd6\xfa\xa9\x18\x2f\x29\xe2\xa4\x08\x86\x61\x4b\x57\xbe\x7e\x4f\xcf\x50\xfe\x9e\x1a\x5f\x48\xc3\x8c\x98\x2d\xcb\x13\x07\x9f\xba\x09\x52\x9a\x7c\x43\xf0\x58\x86\x89\x74\x3c\xbb\xfa\xdd\x8e\xa2\x04\xbc\x4a\x65\x62\xc4\x0a\x38\x3a\xb4\x49\xb6\x3c\x45\xad\x45\x1c\xbe\x56\x77\x63\x8c\xb4\x7b\x37\x0d\x4f\xa7\x61\xaf\xe0\xe3\x37\x2f\x58\xe5\x49\x65\x5a\xce\xfb\xeb\x60\x29\xc0\xfc\xa6\xb2\x2e\x8b\x6e\x04\xd8\x97\x4c\x7e\xe2\x26\xc0\x83\x61\x91\x06\xc3\x2d\x95\x19\xa7\x89\xf2\x45\x0f\x3c\xd9\xdd\x3f\x04\x2d\x23\x4e\xc0\x8d\x89\xa2\xee\x79\x43\x0d\x94\x27\x3d\x9b\x91\x30\x19\x1c\x3b\x4b\xba\xc0\xf2\x71\xaf\x09\x69\xc3\x43\xb4\x45\x50\x85\xbd\xe7\x30\x79\xc3\x22\xcd\x19\xe2\x84\x6c\xab\xc5\xac\x0b\xa8\x7c\x7c\x4b\xcf\x1c\x6d\x9e\x7a\xc0\x77\x90\xc4\x4c\x90\x6a\x53\xb4\xad\x59\x13\xb2\xe3\x13\xb7\x63\x4d\x0d\xdf\x3c\x0c\x44\x72\x91\x07\x85\x69\x9d\x64\x68\x58\xfb\x39\xdb\xaf\xd2\x17\x9d\xd6\x6b\x70\xba\xe6\x46\x17\x16\xda\xc9\xd8\xc6\xce\x8d\xc2\x04\x42\xc0\x9f\xaf\x3b\x3b\xb5\x9a\x7e\xd4\x4f\x6d\xfc\xb0\x42\x89\x7c\x34\xf1\xe4\x15\x1f\x20\x78\x13\x81\x15\xdf\x77\x3c\x86\x13\x8d\xa3\xce\x3a\xff\x42\xd1\x06\x48\x39\xbf\x06\x71\x8d\x1b\xac\xf1\x84\x0e\x1f\x4c\x3c\x75\xde\xc7\x4d\xb2\x94\x3d\x13\x1c\x2c\xb8\x01\xef\x94\x2c\xbd\xaa\xa5\xfa\x15\x84\xf2\xcb\xf2\xec\x51\x2d\xaf\x73\x7e\xa2\x00\x4c\xb7\xd1\x26\x41\x21\x6c\x1b\x50\xf3\x7c\xd3\x55\x3c\x6f\xbf\xa7\xc3\xe6\x0f\xe8\x60\x39\x2e\xff\x03\x12\xe8\xdd\xa3\x6f\x81\x48\xeb\x16\x30\xb7\xfc\x47\x1d\x3f\xfa\xfe\xa7\x1d\xd5\x07\xff\xae\x66\x9e\xb9\xe4\x18\xc5\xb2\xa4\x88\xc8\x60\xa2\x84\x84\x64\x11\xfe\xe0\x1e\xbd\x95\x64\xfe\x3e\x8a\x18\x86\x71\x9e\xb5\xbc\xa2\x3f\xa0\xbd\x42\x3c\xe3\x8f\x64\xcf\xa6\x39\x55\x29\x50\x47\x7d\x43\x89\x4c\xbe\xa1\xcc\x8c\x89\x8a\x51\x1c\x62\xa3\xe0\x07\x9d\x56\x3f\xee\xb4\x9a\x26\x85\xe8\x08\x90\xe3\x08\xdf\xff\x62\xa2\xaa\x50\x57\xd5\xe0\xf5\xf7\x69\x9b\x08\xe7\xa9\x1c\xb1\xe5\x30\x4f\x13\xda\xf0\x08\x78\xd9\x66\xf2\x8d\x02\x64\x85\xb1\x09\xc2\xa4\xe5\x11\x13\xac\x43\x2f\x9c\xe3\x8e\xac\x23\x08\x8a\x71\x68\xf9\xd8\xc2\x6e\xdc\xee\x28\x81\xd5\x6b\x4a\x18\xea\x1d\x55\x1a\x2d\x63\x5f\xe8\x09\x2a\xe2\xdf\x72\xad\xc4\x10\x35\xc9\x04\x16\xc2\xdc\x83\x22\xe9\x51\x85\x82\xf5\xe8\xf8\x91\xed\x87\x81\x09\x49\x07\x66\xb1\x22\xb9\xc6\x0c\xeb\xf8\x25\xd8\x5e\x77\xd4\xbc\xf1\x19\x85\x82\x09\x52\xdb\x0f\x73\xa0\x08\x98\xc4\x08\xdb\x47\x18\x8d\x64\x45\xc7\xd6\x25\x97\x4e\x84\xd0\x21\x4f\x81\x7a\xc4\x4b\x6e\x29\xbc\x6d\x3f\x5c\xb6\x69\x66\xd5\x20\xf9\x71\x45\x3e\x75\xbc\xfa\xc4\x93\x95\x58\x7d\x0d\x40\xa0\x64\x9a\x76\x57\x35\x8b\xfc\x85\xf6\xde\xb9\x19\xdf\x59\x3e\x3b\x51\x1a\xb1\xc7\x68\x4e\x4b\xa8\x7d\x6a\xd4\xac\xf3\x24\x40\xcb\xbd\x52\x9c\x5d\xd0\x16\x0b\x1a\xd9\xff\xaa\xfb\x13\x3f\xcc\xb0\x92\x9a\xf1\x58\x8a\x8e\x18\x00\x44\x30\x07\xcb\x38\x03\xfc\xa2\x3c\x22\x1f\xe3\x0e\xcd\x78\x8b\xa2\x4b\x06\x8d\x14\xe6\x36\x11\x3f\x38\xcb\x57\x2e\xba\xf4\x68\x29\x10\x16\xb1\x62\xf1\x3b\x79\x6a\x82\x83\xdc\x70\xc0\xd3\x7e\xa0\x10\xb9\x2c\xe6\x21\x42\x11\xb4\x20\x88\xf0\x6f\x2a\x48\x52\x7f\x35\x36\xa3\x90\x1d\xa8\x0b\x0c\x5d\x57\x7c\xd3\x54\x05\x97\xdb\xbb\xd2\xac\x2e\x32\xbb\xa3\x0c\x34\xa5\x16\x46\x06\x0d\x55\xc8\x0f\xb0\xf4\xf0\xf5\x3b\x69\x21\x61\x5f\x1e\xa2\x09\x7c\x18\x81\xc7\x09\xf7\x89\x16\xf8\x4e\x4a\x90\x3c\x0f\xc9\x1c\x6f\x50\x86\x1d\xc0\x42\x63\x0c\x0e\x67\xf0\x49\x98\x4c\x35\x43\xf0\x92\x1b\x0f\xf5\xf9\xdf\x38\x39\x68\x21\x67\xe4\x24\x0b\x54\xd7\x5a\xd5\x2f\x53\x43\x2a\x4f\xe5\xd3\x42\xb4\xc8\x54\x46\x7c\x03\x0b\x2b\x25\x9d\x96\x92\x17\xf4\xfe\x03\xf4\x9a\xa8\x9a\x5d\x54\x15\xe4\x73\x35\xbf\x32\xbf\xbf\x6d\xd2\xc0\xc4\xc0\xfb\xa2\x02\x85\x3a\x15\x5f\xab\xca\xea\xb2\x19\x27\x69\x46\xb5\x4d\xa7\x5a\xe6\x15\xcc\x54\x52\x61\x8a\x3c\x45\x11\xaf\x52\xab\x15\x2c\xb2\x12\xf7\x4e\x93\x31\x31\x6f\x28\x77\x0b\xfe\x7c\xbe\x76\x05\xfc\xa1\xc9\x86\x61\x36\x54\xa2\xcc\x55\x9c\xdf\x4e\x5d\xb8\xc8\x8d\x13\x03\x74\x9a\x78\xee\xcc\x68\x36\x8f\x41\xd8\xdf\xaa\xc8\x59\x4f\x4e\x7c\xe1\xfd\x92\x82\xd2\xcf\xa0\xec\x27\x84\x32\x2e\x32\xf9\x7b\x7f\xab\xab\xf6\xfa\xf9\xa6\x4e\xc6\x72\x12\x30\x66\x90\x27\x70\x68\x6d\x65\x1a\xa7\x81\x66\xd4\x66\xdc\x2a\x73\x8c\x82\x7e\x6a\xef\x07\x3a\xae\xf8\x54\x71\x01\x42\x66\x03\xbf\xef\x5d\x27\xc4\x55\xc4\x64\xdc\x44\x78\x85\x3c\xd3\x2f\xee\xf4\xca\x4f\xbf\xb8\xd3\xd3\x1a\x92\xa5\xc6\x17\x85\xf3\xfe\x9f\xf0\xc1\x7c\xd3\xa9\x14\xa3\x6d\xba\x4c\xc5\x0f\x32\xca\xeb\xc4\x13\xb2\x67\xfd\x74\xad\x46\xb2\x67\xef\x1e\xe0\x65\x6d\x1a\xdb\x94\x1d\x93\xf8\x41\x84\x26\x28\x25\xb1\x9a\x0d\x92\xf4\x53\x93\x8d\x30\xff\xe7\x16\xdb\x10\xea\x15\xf2\xe6\xfb\x93\x2a\x49\x94\xc4\xfe\xff\xe1\x4e\x6a\x5f\x09\x90\xa9\xe1\x71\xf4\xad\x89\x28\xcc\x5c\x7f\x83\xc2\xa1\xf5\x37\x9c\x98\x92\x09\x88\x44\x33\x37\x52\xbf\x47\x17\xf2\x03\x7a\x7b\xbe\xee\x7c\x16\xdb\x6a\x9e\xa4\xc1\xb0\x34\xdb\x2d\xf5\xb8\xfe\xa4\xe3\x6b\x25\x7f\xa2\xc6\x41\xc6\xc5\x68\x2c\x58\x71\xe5\x08\xf7\x39\xdd\x11\xc5\x97\x94\x26\x33\x8a\x25\xfd\xaa\xf6\xe7\x17\x3c\x33\x6a\xfc\x56\x03\x59\xde\x4b\x6d\x7b\x28\x8c\x2c\xda\x75\x8e\x72\xdd\x13\xfa\x7f\x7b\xe2\x11\x99\x97\x9b\xca\x4f\xe3\x34\x19\x85\xac\xa6\x85\x02\xc8\xb7\x94\x54\xca\xb7\x9a\x14\xb2\xbf\xdc\xee\x87\xa9\x0d\x34\x01\x2f\xce\x0b\x5f\x2b\x22\x80\x95\xa1\x8d\x77\x95\xeb\xcc\x38\x35\xde\x11\xf8\x3e\xcc\x36\xec\xdc\x90\xc3\xdc\x7d\xd2\x69\x7d\xed\x37\xb9\x27\x73\xaa\xa3\x84\x6a\x00\x48\xc3\xa3\x5f\x03\xee\x07\x36\xe4\x1d\x0a\x5b\x15\x4b\xfe\x3c\x27\xc1\x9b\xa6\xad\xdd\xf3\x5c\xa6\x5f\x43\x5c\xaf\x85\xd1\x1d\x3f\x6f\xb9\xe2\xf0\xa7\xe8\xb8\xe3\x8f\xd6\x81\x3b\xe3\xcf\x98\xa8\x51\xb3\x77\x11\x9e\x88\x42\x6f\xc3\x84\x4c\x3f\xcc\x0e\x7e\x66\xbd\xbc\x01\x9d\xd1\xb3\x51\xb4\x62\xcb\x73\xa4\x38\x4f\x6e\xa3\x3d\xe5\x8c\xbf\x8a\x24\x7d\x63\x67\x60\xd3\x91\x89\xb7\x7b\x2e\xf8\x2d\x5f\x9a\xba\x29\xc2\xf5\x7f\xbb\xeb\x4b\xbb\xf7\xb4\xe6\xc5\x05\xfc\x38\x51\xaa\xa3\x1d\x84\x0f\x3a\xac\x1c\x22\x98\x56\x10\x5e\xbc\xdf\x80\xcd\x79\xa9\x6d\xb3\xcc\xc6\x79\xb8\x01\xb0\x04\xa9\x1f\xbe\xae\x35\x25\x30\xca\x16\x45\x36\xc8\x13\x11\xf2\x76\x85\xc0\x45\x11\x45\x38\xa2\x08\x28\x82\xa4\x48\x73\x53\x44\xfd\x4a\xc9\xeb\x53\x55\x1d\xfc\x54\x15\x67\xcc\x60\x40\x74\x15\xcb\x16\x83\x17\xe8\xe9\x61\xb8\x92\x3d\xa6\x92\x7b\x98\x99\x7a\x2c\x66\xf4\x0c\xc3\x74\x5c\xe1\xbd\x7c\xbd\x78\x59\x5a\x63\xc0\x89\xef\x75\x3c\xfe\x2d\x0b\x07\x31\xcd\x21\xc4\x79\xb4\x0a\xcb\x0e\xfc\xf1\xbd\x4a\xa0\xd0\x69\x1d\x98\x5b\x7f\x7f\xa2\xc6\x17\x37\x21\xaa\x10\x19\xbb\x06\xc6\x4a\x13\x45\x69\x38\x18\xe6\x71\x28\x88\x17\x34\x55\x2e\xab\x69\x9f\xcb\x4d\xfb\x2f\x5e\x0a\x7b\x2d\x35\x59\x75\x5e\x29\xa4\x9f\x6f\x7a\x41\xaf\x88\x80\x66\xc3\xdf\xfc\x54\xfd\xfd\x4f\x55\xa8\x3e\xa6\x09\xc4\x44\xa1\x6c\xe1\xee\x64\x5e\x70\x63\x61\xf3\xb9\xc5\xb6\x8d\x4d\x90\x3b\xca\x6e\xac\xe5\x31\xf5\x2c\x8e\x35\xf4\xf0\xda\xac\xf9\xe1\x72\xfa\xa6\x81\x0d\x3f\xa1\x1b\xf7\x8d\x50\x23\x8b\xe7\xa4\xdf\xce\x37\x2a\x6f\x0e\xe3\xa5\x30\x0e\xf3\x10\x1b\x43\x30\x61\x2d\xc7\xce\x82\xf6\xa9\x4c\x1e\x36\x6d\xdc\xa1\x8d\xc2\x20\x19\xe7\xe5\x49\x3d\x20\xa4\xd7\xe8\x1d\xc3\x4c\x5d\x55\xb4\xcc\xef\x6a\x0d\x10\x6b\x06\xa9\x19\xb5\xfc\x9e\x3d\xa5\x52\xc8\x53\x55\xfe\xfe\x62\xdc\xf2\xd3\x17\x17\x3a\x5a\xd0\x42\x02\xe2\x71\x8f\x13\x08\x27\xb8\xe2\xcc\xcd\x35\x5d\x9d\x5b\x77\x80\xee\x20\x19\xd3\xfe\x94\x60\x88\x9d\xb2\xe3\x6e\x77\xd3\xa1\xeb\x0a\x5d\xcc\x38\x4c\x7e\x85\xce\xda\x6c\x9a\x9b\x30\xde\xe1\x6b\x50\x9b\x89\xea\x13\x55\xdc\x53\xa8\x82\xa8\x5a\xaf\xc4\xd5\x37\x2b\x3a\x53\x1d\x55\xa9\x3a\xad\x06\xfa\x7e\x4c\xa5\x3c\xac\xee\x4d\xa5\xd8\x76\x05\xf6\x1d\x6e\x03\x01\xa2\x13\x49\xf2\x93\xf5\xa7\xeb\x42\xc8\x2f\xec\x6b\xf7\x4c\xe4\xf6\x89\x40\x86\x7d\x84\x79\xf8\x33\x59\x18\xbf\x34\xff\xdc\xb3\xcf\xed\xdf\xd7\x2a\x9f\x02\x1c\xc0\x63\xd3\xd6\xaf\xef\x93\xeb\xee\x53\xca\x4e\x8d\xc6\x36\x0f\x81\x99\xc0\x08\x17\x36\xc5\x75\x78\x3b\x58\x36\x4d\x02\x7f\x6a\x52\x91\x44\x86\xd0\xcd\x56\x95\xc8\x71\xdf\x81\x75\xa4\x26\x5e\x6c\xed\x0f\x61\x9c\x84\xc9\xcd\x27\x50\x1f\x77\x5a\x4a\xd4\xbb\x69\x8e\x38\x49\xfb\x36\x65\xd1\x09\xd9\xeb\x0a\xda\x76\x51\x05\xfa\xa9\x19\x87\xfd\x16\x55\x65\x31\xd1\x32\xd3\x55\xb3\xcd\x33\x53\x5d\xb7\x2b\x96\x92\x59\xf2\x92\xf8\x1e\xe7\x55\x52\x87\xf0\x9c\xaf\xe1\x3d\xe5\xc6\x7f\xd6\x4a\x52\xc4\x7d\xf2\x7f\xa8\xf3\xae\xeb\x82\xc9\xeb\x8a\xf6\x66\x73\x0d\xbf\xe3\x66\xc2\x92\xed\xe5\x1e\x64\xf2\xe4\x8e\x67\x11\x7f\x9b\xa6\x09\xdc\x04\x92\x53\x3a\xbf\x41\x9e\x0a\x27\x65\x6b\x57\xd1\x46\x3d\xe0\xa2\x9e\x1e\xdf\x00\xe8\xe0\xda\xe4\x29\x15\x2a\x83\xf1\x9f\x86\x4c\xb7\x28\x22\xad\xab\xd4\xa1\x12\x6f\xa3\x88\xc6\x19\x0c\x8f\xa7\xff\x57\x8a\xff\xe4\x7c\xd3\xfc\xd3\x20\x59\xb6\x24\xf9\x34\xa3\x02\xa1\x6d\x4a\x8d\xfa\x06\x2d\x32\x6a\x19\xb7\x1a\xd5\x69\x5e\x2d\x6c\x86\x26\xef\xee\xdd\x0e\x91\xa4\xa0\x09\xef\x2a\xcf\x39\x4e\x6d\x46\x3c\xf3\xab\x28\x83\xc3\x8a\x61\xd0\x96\xaf\x9b\x66\x8e\x83\xb4\x88\x83\x61\x68\x53\x4c\xb1\x0a\xb9\x16\x6d\x14\x78\xd2\x4b\x1d\x6f\x20\xd7\x1c\xf8\xb0\x57\xa4\x03\x9b\x65\x4a\xae\xff\xa6\x16\x06\xb8\xa9\x44\xed\x92\xa5\x25\x9a\x96\x77\x62\xb7\x50\xf7\x94\x44\xf1\x89\x0d\x74\x2d\x7b\xda\x0b\x0b\xe8\x3c\xa1\xf4\xca\x72\x26\x32\xc8\x54\x7e\xa0\xd0\xe7\xfa\x02\x2b\x6b\xbb\x0a\x4f\xa6\xd4\x3c\xfa\xa1\x19\xcb\x48\xbf\x00\xf1\x3c\xce\xfe\xac\x22\x5c\xa6\x71\xa0\x19\xd5\x41\x44\xe6\x82\x1e\xce\xdb\x13\xaf\x7e\x77\xad\xc2\x74\xf7\xdc\xfe\x7d\x3f\x8b\xcd\xe6\x1a\x03\xe5\x29\x42\x90\xd0\x9a\xfa\x2c\xfb\xc3\x89\x57\xcd\xa0\xee\x88\xf0\x57\x7e\x0c\x1d\x0f\x58\xdb\x0f\x34\x87\xdb\x25\x54\xad\x61\xa0\x11\x66\x33\xa7\x11\x19\x58\xd9\xd1\x88\x7a\x58\x41\x6b\x4a\xbf\x40\xba\x42\xb4\x26\xc0\xfd\x6c\xed\x52\x40\x2a\xf3\x0f\x8a\x33\xea\x30\x50\xdc\x78\x6e\x77\xa9\x9d\x2b\xea\x9e\x14\x67\x3a\xbf\x54\xee\x0f\x27\xf6\xbe\x7b\x7e\x7d\xda\xd9\xfc\x65\xce\x76\x76\x74\x5b\xcf\xcf\x3b\x21\x50\x3a\x25\xb8\xb9\x43\x51\x28\x2b\x6c\xc1\x7b\xb0\x46\xb0\x2a\x63\x1c\xc5\xce\x81\x37\xdd\x4e\xc5\x1e\xd6\xdb\xae\x55\x44\xf6\xce\xb5\xb3\x30\x12\x79\x76\xc7\x6f\xea\xb9\x4e\xdd\x06\x1d\xd8\x38\x8f\x2c\xd3\x17\x39\x59\x5a\x3f\x90\x3d\xdb\xf5\xbd\xca\x5b\x0a\x14\xd5\x0f\xb3\x21\x4e\x2c\x9e\xc2\x61\x95\x21\xc1\xfa\xe3\xf5\x5e\x40\x35\x09\x02\x43\x04\x6b\xf4\x2b\xb4\xe4\xa5\xaf\x1f\xfd\x92\x0b\xf9\x93\x74\x60\x67\x94\x88\x12\x44\x59\x25\xea\x54\xa3\x41\x6a\xd6\x3f\xe9\x01\x62\x26\x78\x0f\xc7\x7a\xe4\x19\x90\x94\x76\x4a\x66\x22\xfb\x08\x3d\x03\xee\x59\xa3\xb4\xc7\x45\x29\x5d\xa5\xb8\xa8\xcb\x08\x47\xc8\xe4\xa2\x3a\xbf\xce\xcc\xd4\xd8\x2e\x28\x64\xe1\x7a\xad\xe3\x45\x20\x4e\x29\x3e\xd2\xc3\xd8\x6c\x5c\x43\x45\x8a\x87\x87\x78\xbe\x96\xbd\x52\x2a\x1a\xdb\x40\x02\x63\xec\x5d\xc4\xb9\x7c\xdd\x64\x50\x49\x4f\x6e\xd9\xa6\x5c\x46\x76\xd4\xee\x2e\x8d\xbf\xa4\x42\xd3\x6f\xfa\xba\x27\xd1\x3a\xcd\xf8\x64\x16\x2b\x8e\x53\x0e\xa1\x18\xe4\xcc\x47\x54\xdd\xf5\x6b\xcf\xef\x6e\xb5\x14\x0f\xb6\x52\x92\xba\xd0\x79\x52\x01\x77\xf2\x34\xe9\x17\x01\x37\xcb\x9f\x75\xd3\x88\x1e\x4f\x0a\x8c\x28\xf6\xd2\xbf\xd6\xba\x7e\x15\xdd\xd9\x35\xa5\x63\x9d\x99\x28\x27\xc6\x4d\xfa\x06\xff\x39\x15\x4a\x71\x5c\xf8\x5a\xb7\x07\x86\xd6\xa4\x59\x12\xa3\x48\x0c\x84\xc3\x8f\x3b\x0a\x2b\xcf\xc0\x11\xec\x12\x1e\x36\xe4\x3f\xa3\xa3\x29\x2d\xe7\xc6\x72\x41\x96\x5b\x02\x90\xba\xb0\x17\x5c\x9a\x82\x5a\xd0\x94\x3e\xd9\x33\x33\xad\xc5\x45\xd6\xd7\x44\x74\xc5\x38\x35\x9c\x77\x8d\x5e\x0a\x92\xd1\x28\xcc\x73\x6b\xd1\x81\x17\xce\xd9\x32\x46\x83\x67\xff\x17\x7a\x64\xba\x91\x78\xce\xf6\xfb\xa1\xdd\xa0\xaa\x5d\x7e\xd8\x46\x46\x03\x7b\x48\x6b\x1e\x68\x8e\x22\x21\x2f\xf2\x6d\x28\x3b\xf8\xb7\x06\x94\x08\xa3\xcd\xf1\x66\x47\x01\xf7\xde\x54\x7f\x97\x91\x8a\xae\x7b\x0b\x5d\xdb\xd8\x5c\xa3\x6c\x28\x0d\x56\x0e\x31\x37\x7f\x08\xdf\xab\xb6\x20\x9d\x12\x4d\x98\x8d\x4d\x4e\x60\x4f\x8f\x93\xfc\x73\x1c\x2c\xbe\x51\x25\x9a\xa5\xb4\x74\xaa\x8a\xde\x5a\xd3\x5e\xd7\x05\x20\xfb\x36\x37\xc0\x91\x96\x2b\xe1\x52\x26\x9f\x3e\xd5\x8e\xdc\x9e\xbd\x7b\x5c\x5c\xdb\x52\xf4\x71\x18\x5e\x91\x01\x3f\x8f\xf2\x18\x0f\xc3\x28\xc9\x92\xf1\x90\x31\x6c\x3c\x1b\xa8\x68\xe8\x8f\xaa\x88\x71\x64\x06\x61\x40\xb3\xd7\xe8\x39\x1c\xa3\x99\x12\xf4\xba\x01\xd5\xe3\xeb\x89\x9f\x70\x3a\xe6\x79\x69\x6c\x9c\xd9\xed\x7a\x90\x04\xcf\x1f\xfd\xcc\x23\x13\xef\x43\xfe\xa9\x92\x12\x87\xb1\xa0\x1d\xff\xe2\xcf\x74\x95\x68\x27\x0a\x0c\xf4\x82\x7f\x77\x17\xcc\xa5\x98\x97\x06\x72\x12\x8e\xb4\xf2\xd0\x44\x30\x45\x6e\x60\xdc\xcd\xea\xa3\x4a\x2f\x8c\x46\x3b\xfc\x43\x2b\x62\x64\xc5\x9c\x42\x74\x74\x3a\xd1\x40\x28\x1a\x46\x46\x46\x96\x18\xaa\xae\xe1\xcd\x87\x55\x7a\x9c\x0f\x69\xeb\xa4\x04\xf2\x73\x8d\xa0\xf2\x97\x20\x31\xe4\x8c\xd1\xe9\x54\xf8\x9a\xff\x87\x13\x4d\xc6\xfa\x01\xfd\x0a\xe4\x29\xd7\xe8\xeb\x09\x94\x5a\xd6\xfe\x99\x95\xa1\xc9\x67\x94\xfc\xfc\x25\x0a\xc4\x81\x57\x39\x47\xa1\x12\xf2\x9f\xef\x69\x8e\x7b\x9b\x9b\x30\xe2\x9d\x2d\xda\xfd\xda\x7d\xd4\x29\xca\x48\x96\x72\x34\x92\x2d\x2b\x1d\x45\x3a\x0e\xd2\x6b\x14\x23\x6f\x0e\x85\xc9\x48\x58\x04\x9d\x0e\x6f\xf9\x83\x45\x3f\xb2\x1e\x5f\xb7\x4d\x91\x27\x23\x8f\x96\xe6\x7a\x00\x0c\xa6\x14\x07\x1c\x08\xa4\xf4\x3c\xdc\x52\x86\xb3\xc6\xd4\x20\x05\x44\x3b\x7f\xa6\xeb\x00\xe8\x47\x77\xa1\x1f\x01\x14\xdc\xf9\x46\x2e\x2d\xa7\xdd\xa4\xa9\x11\x58\x5f\x45\x66\x89\xd4\xd4\xda\xb2\x41\x75\xde\xa1\x99\x9d\x52\xff\xcc\x54\xb1\x01\x3f\xd4\xf5\xfd\xd0\xa5\x24\x1d\x81\x1e\xfe\x59\xb6\x89\xc8\xc4\xf9\x9a\xbe\xba\x68\x71\xfa\xce\xd4\x09\x3d\x69\x5d\x8c\x7a\x89\x52\x81\xbc\xa4\xb8\xa2\x3e\xd2\xcc\x3f\x47\x9a\xa6\x5a\xcd\x72\x68\x5c\xb8\xd2\xa4\x79\xe5\xb1\xfd\x7d\x02\x7c\x73\x0b\xc1\x49\xe3\xfb\x79\xd5\x93\x70\x67\xf8\xb0\x37\xb1\x48\x7c\xa3\xb0\x06\xab\x04\xe8\x52\xa2\x8d\x17\x95\xa6\x13\x22\x44\x1c\xf5\x1f\x75\xb4\x04\x70\x90\x8c\x2c\x47\x21\x30\x83\xe0\x58\xe7\xeb\xce\x2e\xd7\xc0\x7d\xb5\x08\x53\xeb\x4a\x61\x48\x46\x3e\xa5\x5f\xc4\xd7\xaa\x85\x50\xc4\xe8\x2b\xb9\xca\xfc\x19\xcd\xa5\x7c\x46\x91\x1a\xf7\x4d\x6e\x1e\xd6\xcc\x7f\xc7\x3a\xaa\x6c\xf9\x1e\xf6\x3a\x02\xf0\x0b\x08\xc0\x65\xf6\x8f\x36\x22\xde\xf0\x3a\xc2\xda\x0a\x11\xb0\x68\x44\x7a\x2b\x74\x05\x61\xb9\x93\xc7\x70\xd4\xf8\x27\xdd\x1e\x2f\xe2\x22\x93\x1e\x35\x8b\x61\x29\x54\xc2\xa6\xae\xc2\x35\x1f\x55\xa2\x65\x59\x9e\x44\x51\x55\x19\x84\x9e\xa5\x48\x83\x3c\xb1\x51\xf0\xfd\xd9\xf6\x2f\x62\xe3\x2b\x3d\xdd\x79\xc7\xed\xef\xb9\x41\x23\x3b\xb0\xfd\x8a\x84\xc6\x96\xae\x6f\xd6\x6d\x99\x7a\x1d\xfa\x91\xcd\xb7\x6a\x6c\x09\xad\x01\x02\xa0\x4d\x00\xfc\x33\x6a\xa5\xe3\x87\x65\x2e\x61\x0d\x1d\x34\x65\x61\x81\x33\xbc\x7b\x8d\x4c\x4f\x49\x9c\x83\xd1\x5e\x70\x5a\xe5\xe7\xf1\xb5\x7a\xa2\xc3\x22\xce\x19\x2a\xa6\x39\xd8\x11\x66\xdd\x54\x23\x21\xc7\x2b\x44\xed\x14\x7b\x4b\x2a\xeb\x8d\xba\x1d\x8d\xa3\x64\xd5\xda\x47\x14\xb6\x0e\x85\x7d\x01\xcb\x97\xd6\x96\xf5\x4f\x3a\x0a\x73\x07\x3e\x3f\x74\xe8\x31\xaa\x87\xd2\xc8\x9a\x06\xa7\x33\xf6\xcd\x45\x98\x7b\x95\x94\x8a\xaf\xde\x30\xc1\x2c\xdf\x54\x38\xa0\x23\xd3\x57\xb5\xce\xb3\x5a\x06\xee\xac\xd6\x9a\x34\x81\xdd\xd2\x72\xe3\xb9\x97\x15\x07\x0e\x97\xa4\xdc\x28\x93\x02\xcf\xf9\x36\xc4\x65\xb7\x27\xb2\xa2\x57\x9a\x61\x8b\x52\x13\x52\xd6\xbf\x99\x54\xd4\x60\x67\xbc\xe6\xdd\x55\x17\x06\x8e\xcb\x70\x3a\x63\x73\x24\x82\xf1\xf4\x6d\xf9\xc6\x39\x92\xb4\xf0\x76\x19\x5e\xf4\x4d\xbc\x3f\xdf\xd4\x10\x21\x7b\xe7\x08\xfb\xc5\x3e\xc4\xe9\x83\x3c\xe7\x67\xf3\x7d\x8f\x3e\xb2\x66\x50\xd8\xd9\x4a\x5b\xda\x77\x97\x2e\x75\x3c\xed\xeb\x3d\xfc\x0e\x6c\xc8\x3b\x8e\x3b\x2c\x48\xcd\xb2\x6d\x69\xfd\x14\xa5\x58\x7e\xa1\x52\x99\x88\x82\x04\x41\x1b\x0a\x83\xa7\x74\x95\xb0\x8e\x67\xa7\x70\x9f\xa6\x73\x67\x54\xb7\xf7\xaa\xaa\xb6\x60\x1f\x0b\x15\xb2\xb7\xa1\xd9\x30\x59\xb6\x08\x6f\x85\x7e\x08\x4c\x7b\x7c\xad\x6c\x34\x98\xff\x94\x4f\x5a\x53\x3e\x69\xad\x91\xa4\x94\x45\x8e\x28\x6a\x00\xac\xe4\x13\x25\x1e\xf7\x49\xad\x44\x3a\xbf\xbf\x0c\xf9\x8d\xa7\x3b\x43\x98\x8a\x49\x16\xbe\x56\x96\x3a\x4e\x46\x45\x6a\x66\x55\x68\x7e\x6c\xa2\x27\x74\x4e\x00\x97\xcb\xff\xd4\x51\x10\x93\x13\x93\x87\x3d\x5a\x7e\x8b\x1f\xa0\x60\xdd\x72\xc7\xb0\xf9\xfc\xbc\x9b\x52\xf0\x79\xe0\x1d\xb8\x34\xc4\xa7\x9f\xaa\x8e\xe0\x98\x76\x1f\x31\x3b\x48\x04\x46\x65\x1b\xec\x83\xe3\x3a\x34\x9b\xa8\xc1\xd0\x3b\xf8\x50\x89\x84\x55\xe3\xa2\x18\x8d\x6c\x9a\xcd\x7a\x38\x0c\x4f\xb8\x3a\x8d\x4f\x57\xc3\x3c\x33\xd1\x24\xb6\x0d\xfb\xa3\x1d\x85\xcb\xae\xa9\x23\x22\xed\x2d\xc7\x76\x77\xd8\xd5\x43\xcc\x88\x26\x59\xf0\xd0\xb8\x25\x80\xc3\x26\xfd\x81\xba\x7d\x25\xe0\x02\x46\x2b\x11\x00\x3d\xd4\x55\xec\x5b\xb3\x54\x48\x13\x16\xc5\x8d\x11\xf9\xfe\x17\xda\xa9\x0d\x92\x18\x35\x92\x96\x6f\xed\x54\x81\xad\xfe\x18\xc6\x45\x4a\x3c\xa6\x95\x7a\xf7\x73\xbe\xc6\xdd\x54\x77\x37\xfd\xe5\x30\x13\x88\xb1\xd2\x09\xf7\x34\xbd\x8d\x47\x6a\x89\x62\x5e\xfa\x3b\xa7\xd2\x53\xbe\x83\xa8\xf1\x3c\xae\x66\xb9\x53\x6b\x2a\x5f\xff\x94\xfa\xfa\xa7\x1c\x0e\x73\x24\xe4\x58\x30\xe8\x20\x64\xe4\x6b\xcd\x8a\x62\xc7\x2d\x45\xf2\x7f\x92\x0b\x3a\x7c\xd7\x24\xb7\x9a\xf5\xc3\x96\x76\x1a\xf4\x6a\xbe\xa9\xd5\xe1\xdc\x70\xda\x8c\x12\x08\x38\x47\x85\x7a\xd7\x44\xda\xf7\x5b\xcf\x0b\x6f\x6f\xcd\xde\x2c\x2e\xb6\xd3\xa4\xd7\xb3\xd2\x43\x86\x0f\x62\xf5\x5c\xbe\x71\x56\xff\x95\x22\xcb\x49\x00\x1f\xa1\x09\xb6\xf9\x6d\x85\x44\x62\xf8\x1c\x02\xbc\xb3\x6a\x90\x61\x14\xf6\x57\x6c\x96\x6f\xf1\x47\xef\x16\x4a\x53\x4e\x2f\xad\x7c\x43\xb4\xec\xef\x2a\xb1\xf8\xab\x13\x75\x8a\xaf\x34\xb5\x46\x07\x36\x19\xd9\x3c\xe5\xe1\x22\x47\x83\xe3\x53\xdd\x9a\x39\x7b\xb1\x0c\x8b\xb3\xac\x18\x09\x0a\x14\x0d\x91\x5b\x6a\xca\xe7\x84\xd6\x25\x58\x53\xfc\x94\x45\xec\x46\x4c\xbc\x22\x36\x0b\x96\xf1\x8d\x02\xb3\xf5\x4c\x16\x06\xe8\x16\xf2\xfc\x3b\xa2\x4a\x54\x82\x3f\xd4\x81\xe0\xf5\x8e\xaa\xc0\xe8\x31\x94\xb5\xa6\x1f\x6d\xfa\xa3\x30\xcf\xeb\x04\xa5\x0e\x45\x78\xa6\x02\x06\x0f\x92\x94\x7b\xf2\x08\x1e\xee\xa9\x22\xd6\xba\x36\xa6\x8f\x4e\x9f\xd0\x9d\xb4\xac\x88\x72\x52\x12\x55\x24\xe6\x7e\x98\xe6\x2f\x74\xa5\x07\x56\x15\x16\xf6\xbe\x0b\xd7\xfd\x4c\x00\xbb\x65\x9c\x51\x96\x76\xe5\x1b\x35\x21\x17\x24\xa3\x51\x11\x87\xf9\x2a\x71\x66\x08\x49\x04\xfd\x46\xd4\xa0\x60\xe8\xf0\x0f\x57\xd5\x74\xc2\x17\xa6\x1e\xed\xfb\xab\x3f\x57\x61\x5c\x0c\x0a\x3b\xe3\xd1\x64\x98\x2c\x80\xf7\x3c\xaf\xa9\x7e\x3f\xac\x61\x83\x4a\x53\xbb\x64\xad\x54\x8c\x5c\xd7\xdd\x61\x06\x8f\xd5\xb6\xd6\x57\xda\xa9\x1d\x99\xd0\xe3\xe8\x75\x9a\x27\xe9\x5f\x03\x68\x3d\x48\x8a\x98\xf1\x67\x4d\x93\xb6\x0d\x33\xcb\x71\x78\x48\x0a\xdd\x0e\x8c\xec\xb8\x8a\xb4\x44\xfb\xd0\x9a\x34\x47\x55\xd2\x01\xc6\x5d\x3f\xe5\xa2\x02\xf8\x1f\xa3\x8e\x03\x5f\x6b\xd9\x9b\x7b\x35\x37\x51\xae\x4c\xdf\x9a\x68\x46\x69\x9a\xa3\xf1\x0c\x17\xc6\xb5\x4e\x09\x8d\xd4\x9e\x4a\xc3\x3c\x0c\xc0\x01\xaa\x69\xe2\xca\x6f\x24\x8a\x5f\x6a\x37\x0c\xd3\x30\xcb\x47\x06\xd0\x75\x21\x5b\xd7\xcc\xeb\xae\x2d\x3f\x34\x21\x93\xa5\xea\x61\x7c\x91\x09\x7c\x52\xb3\xe2\xdb\xd4\x66\xe5\xae\xde\xaa\x6b\x14\x50\xb1\x81\xdd\xe2\x71\x4b\xa1\x2c\x50\xa8\xd2\x73\x4a\xbf\x87\xe7\xb7\x44\xee\xe1\x73\xd5\x04\x75\xd6\x4f\x80\xbe\xdf\x51\xc4\xe9\x68\x3b\x22\xfe\xd9\x3e\x55\xa3\x84\xef\x56\xb0\x0b\xab\x36\xdd\x81\x6e\x16\x5c\xe1\x4d\x18\x4b\x81\x86\x92\xdd\x40\x5d\xec\x06\x25\x1e\x22\x2b\xe6\x51\x47\xf7\x14\x2d\x08\x48\xf5\x71\x7d\x16\xc0\x58\xa4\x64\x7f\x05\x3c\x17\x7f\xc6\xc4\xd7\x3a\x41\x0f\x08\x5b\xc8\x2b\x0e\xd8\xe4\x8c\x2a\x6d\xe4\xa9\xe9\xdb\xfe\xd6\xf2\x33\x11\x05\xfe\xa4\xa3\xfa\x5c\x9c\x00\xf0\x8d\x86\xe3\xae\xa9\x69\x66\xc0\x71\x59\xb5\xad\x56\xa2\x11\xe7\x66\xc6\x26\xcd\x69\x62\x8d\x63\x3b\xda\x30\x32\x6e\x50\x91\x47\xda\xb8\x55\xbf\xd2\x5e\xb1\xfd\x81\xb8\x7e\x04\x7a\xcc\x6e\xc0\x37\xbe\x94\x59\xc4\x31\xce\x20\xf2\x71\x4c\x02\xf0\x75\x2d\x16\x29\xbd\x08\x84\x7c\xd9\x3e\x08\x6d\x95\x02\x63\x9c\x73\xef\x3d\x32\x79\x30\x9c\x51\x4a\x5a\x6f\x77\x3c\x82\xe2\x78\x35\xef\xde\xa5\xe0\x2e\x71\x6e\xe3\x80\x67\xb4\xb1\xd5\x36\x4f\x7d\xa5\xf2\x73\x5d\x1f\x36\x6a\xd9\xab\x32\x88\x79\xdc\xe3\x3d\x38\x14\x46\xd8\x76\x58\x0b\xa6\x9c\xc4\x06\x50\xc5\x9e\x3d\x8c\x6d\xfb\x97\xa8\x65\x00\xce\x76\x07\x5a\x2a\xa8\xf5\x9d\x85\x0f\x43\x40\xf2\xe8\xd4\x5b\x9d\x47\xb4\xdc\xcb\xb6\x69\xeb\x6b\xbf\xe9\x3b\x2f\x4e\x58\xe0\xa4\xc2\x13\x5c\xa4\x19\x7e\xe9\xa0\x97\x8f\x14\x9f\x70\x94\xf6\x34\xac\xc7\xe6\x6e\x13\x3b\x01\x05\x81\x14\xda\xd2\x47\x4a\x71\xc7\xb7\x90\xea\xb4\x70\x65\x60\x55\x04\x81\xcd\x96\x0a\x00\x78\x65\x0c\xd3\x8f\xcf\x9c\x54\xdd\xc7\xdc\xf4\x32\x85\xd0\x3a\x4f\x5f\x8f\xaf\x55\xcd\x0c\xc8\xc1\xd5\x87\x74\x33\x90\xd6\x4a\x1a\x73\xf4\xfd\x04\x2e\x58\x2e\x03\x42\xef\x53\x78\x24\xfc\x0f\xf4\xe6\xfc\x0f\xb0\xbc\xe8\xa3\x9d\xa3\x85\x90\x2e\x91\x92\x3f\x38\xa7\x92\xb9\x65\x13\x85\xac\x17\xae\xaa\x3e\x5e\x91\xb3\xa5\xc4\x61\x15\x64\xfa\x63\xd5\xa8\x1c\x26\x2b\x5c\x37\x62\xc6\xdd\x8e\x8a\x4c\xea\x2d\x29\xe0\xaf\xc3\x11\x71\x97\x7a\x60\xcd\xd9\xaa\x28\xcd\x81\x39\xa7\x41\x55\x4f\x28\x9f\xad\xa8\x5e\x20\xf7\xff\x1d\x25\x53\xf1\x3b\x2a\x37\x1c\x85\x83\x61\x6e\x5a\x9e\x75\xe5\x04\x2c\x2a\xdf\x34\x60\x7a\x17\x3d\x82\x99\x4d\xe3\x59\x1d\xed\x9f\xed\x78\x01\x10\x12\x26\xa3\x3f\xc4\xd0\xd5\x09\x32\x4e\x7c\x5d\x0b\xbd\xbe\x02\x9a\xe1\x30\x71\xd2\xd3\xb0\xde\x27\x94\xed\xac\x74\xfb\x6f\xd7\x8b\x6e\xed\xe7\x16\x79\x78\x55\xa6\x0d\x94\xe8\xf1\x31\x1a\x77\x90\xf5\xa0\xf3\xe8\xa0\xab\xbb\xe7\xfd\x98\x8c\x17\xff\xbb\x86\xe3\xc8\x2c\xa4\xaa\x72\x71\x43\x35\x64\x0f\x75\x94\xf8\x12\xef\x0f\x01\x92\x78\x97\x36\xdb\x75\x44\xcf\x49\xdc\x4f\x62\x14\x38\x50\x1f\x7a\x53\xd5\x8a\xea\x2a\x43\xf3\xfb\xdb\x45\x06\xa7\xe7\xa6\x27\xcb\x47\x84\xd2\x43\x8b\x9c\x9e\x6c\x3b\x1f\xa6\x5f\xa8\x3d\xba\xf2\x90\xae\xa6\xa1\x89\x29\x62\x13\x32\x34\xd5\x50\x42\xb2\x21\x79\x42\xc3\x14\x63\x56\x90\x06\x4b\xcb\x67\xee\x50\x68\x14\x95\xef\xa6\x94\x52\xc3\xfa\xe1\xe6\xfe\x48\xfb\xbc\x3f\xaa\x8d\xe6\x96\xf1\x8f\x8d\x83\xa4\xa0\x1d\x4c\xbf\xd4\x81\x9a\xcb\x67\x2f\x24\x91\x3e\x0a\x33\x36\x8f\x31\x3f\x8d\x36\x0b\x04\xbd\xf8\x5a\xb7\xa5\x42\xc8\xb6\x23\x4e\xff\x09\x59\x0c\xbe\xee\x78\xbf\x10\xdb\x64\x3c\x5c\xe5\xa0\xfa\x59\x0e\x27\x2e\x2b\xb2\xc6\xcb\x0a\xe9\x60\x4d\x16\x46\xab\x33\x7e\x72\xa7\x82\x5c\x3a\x42\xae\x14\x33\x86\xf5\xb9\x97\xc5\xc5\xf6\xc8\xe6\x26\xca\xd4\x3c\xf7\x07\x13\x85\xae\xff\xa0\xe3\x6d\x61\x91\x87\x11\x85\xee\xae\x3c\x85\x9c\x98\x4b\x23\x58\x52\xe0\x88\x31\x7e\x8d\x42\xc8\x0f\x27\x8a\xe4\xfe\x5a\xa5\xac\x39\x5e\x61\x11\x3c\x11\x04\xa3\xbf\xe4\x1b\x45\x9f\x1b\x99\x43\x2d\x82\xc8\x70\x36\x59\x4d\x2d\xbd\xb2\x71\x94\x24\xe3\x61\x12\x59\x46\x40\x2b\x80\xb2\xa3\x09\xa9\xf1\x9f\xee\x9d\x6b\x07\x49\x96\x2b\x25\xe0\x35\x0d\x71\x5a\xdb\xa0\xb7\x39\x42\x67\x8a\xf1\x1a\x74\x68\x34\x76\x03\xad\xd4\x2b\xb0\xaf\x7c\xd3\x58\xe5\xee\x85\x7d\xce\xc8\x19\xc2\xa8\x46\x07\x2f\x28\x07\x64\xc6\x63\x6b\x22\x61\x46\xe4\x88\x53\xe5\x62\x33\x5d\x35\x44\xba\x69\x5a\xe1\x12\x1c\x69\xe9\xff\xb3\xf4\xac\x44\x90\x51\xaa\xb0\xbd\xd4\xc4\xc1\x90\x0e\x36\x1e\xe3\x1f\x72\x59\x0e\x4e\x09\x61\x36\x2a\xf7\xdb\xba\x1e\xf4\x71\xdf\x05\x3e\x4b\xa1\x8d\xc0\xa3\x8e\x34\x01\x0d\x5e\x26\x7c\x9b\x28\xf9\x2f\x4d\xd5\xbc\x52\xa6\x09\x9c\x77\x3a\xd5\x6b\x37\xc2\xf5\x46\xc7\x8f\x6a\xbd\x31\xf1\x05\xde\xb7\x55\x43\x29\x18\x9a\x74\x60\xfb\xcc\x07\x03\xdb\x71\x55\x89\x7f\x62\xf4\xab\xa2\x7b\x22\x27\xdf\x1f\xda\xd8\x2c\x73\xf7\x48\xd3\x4c\x4b\x71\x6f\xe3\x46\x59\x5c\x6c\x0f\x93\x31\x79\xc4\x97\xd6\x4f\xe3\x8c\x21\x24\xb8\xab\x58\xe0\x2f\xa8\xf0\x6e\x68\xd2\x65\x9b\x51\x2d\x41\x51\xf0\xb4\x14\x21\x8e\xff\x41\x51\x62\x96\x6c\x8a\x79\x3f\x74\x34\xdf\xac\x08\x52\xb7\x1c\xcf\xc1\xa9\xea\x11\x4a\xe2\x59\xcd\xb4\x89\x69\x6c\x8c\x24\xbf\xae\x20\x78\x47\x35\x97\xd1\x1d\xf5\xc1\x43\x4b\xaa\x8f\x54\xe7\x87\x25\xba\xa1\x92\xc6\xef\x4f\xd4\x14\xc7\xed\x06\x2d\xc3\xf9\x76\x96\x9b\xd1\xb8\xe5\x19\xf3\x8f\x23\x40\xe2\x1b\xd5\x63\x19\x99\xd8\x16\xcb\x8c\xb6\x69\x9a\xb1\xdb\xe8\x8d\x25\x3d\x88\x4d\x9e\x20\x15\x16\xf1\x2a\x8f\xfa\xd1\xe4\xd6\x41\x11\x8d\x0d\xbd\x3b\x9a\xb6\x6c\x92\xf8\x46\x91\x8e\x85\x71\x96\x1b\xee\x30\xe2\xe4\xcc\xd2\xe6\xe6\xeb\xa9\xc0\xc7\x57\x12\x1a\x81\x97\x0e\xd3\x9b\x64\xd5\xa4\x36\xe0\x43\x73\x1e\x8c\x03\x80\x65\x87\x86\x3b\x6c\x21\x46\x06\xa1\x59\xf3\x19\xc1\x0d\xc5\x7f\xff\xf9\x9f\xef\xfa\x52\x13\x77\xf4\x90\x30\x3d\x50\xf3\x7c\x41\x12\x67\x61\xdf\xa6\xb3\xde\x4e\x7d\x7f\xa2\x4a\x10\xff\x3b\xbd\x3b\x02\xb2\x87\xbb\x7e\x7d\xb6\x4f\x37\xae\xea\xfe\x17\x48\x53\x2b\x26\x81\x9d\xf2\xdd\x84\x4f\x50\xe9\xa9\x9d\x56\x43\xe3\x4b\x61\x19\x28\xcc\xef\x77\x06\xb1\xfc\xb6\x62\x29\x3d\x30\xbb\x5f\x8c\x41\x77\x4f\x7f\x0b\x40\xde\x51\xfa\x5b\xbe\xae\xc3\x5e\x5e\xd8\xd7\x4e\xd2\x70\x10\x8a\x26\x38\x43\xb3\x27\x0a\xfa\xfc\xb1\x9a\x02\x0b\x4d\x0e\x9d\x0c\xec\xee\x16\x01\x35\x15\x28\x65\x9f\x53\xc9\x9b\xa9\xe8\x36\xb9\xa2\xd9\x77\x55\xed\x61\x6c\xd3\xbc\xc8\xb2\x10\x9e\x8f\x53\x2c\x8d\x41\xbe\xdd\x10\x77\xb6\xa3\xe2\x50\xc1\x33\x9d\x08\xd5\xd0\xf2\xe3\xeb\x5a\xbc\xb2\x7b\x77\x3b\x0a\x7b\x96\x24\x47\x2b\x92\x30\xae\x19\x73\x51\xc1\x77\x29\xdf\x06\x35\xa7\x70\x6c\xb5\x76\xef\xae\x56\x50\x91\xd6\x41\xb7\x05\xed\xf7\xcb\x1d\x0f\x04\xfb\x6e\xc7\x0f\x07\x5c\xc4\xf3\x14\xa2\x83\x86\xaf\x36\xb2\xf9\x30\x11\x2f\xc4\xbd\x6f\x35\x83\x75\xa1\x66\x01\x9f\x7e\xba\xbd\xf2\x4c\xf8\x0c\x55\x46\x65\x4c\xa6\x32\x3f\xd3\x20\xb3\x91\x86\x01\xab\x9f\x0b\x5d\x88\xef\x64\x1c\x6f\x92\x83\x31\x24\x25\x87\x8c\x58\x98\x61\xd4\xe2\x81\x59\x11\x79\xef\x35\x95\xe2\xac\x98\x28\x7a\x94\xce\x0e\x22\xc1\x8f\x1a\x80\x95\xe8\xaf\xfd\x3e\xce\x1e\xec\xd3\x1b\x48\x35\x60\x16\x79\x7e\x8d\x01\x02\x14\x38\x61\xe3\xdc\xed\xf8\x81\xca\x63\x08\x52\xe0\x2d\x67\xba\x0a\x8c\x38\x2d\x7f\xda\x3a\xf3\xa1\xc0\x62\xae\x01\xf2\xab\xb8\xd4\xf1\xa4\x93\xbe\x59\xdd\x5a\x19\x97\x6e\x39\x49\xde\x93\x7a\x2f\xdf\xd3\xe4\x3a\x37\xe8\x2b\xa1\x53\x73\xc5\x77\x09\x2f\x7d\xa1\xdb\x40\x7b\xbb\x62\xed\xc1\x68\x75\x86\xc8\xc9\x01\xdd\xc7\x08\x22\x5c\x16\x00\x0b\x48\x62\x6f\xaa\x70\x23\xb2\x4e\x8c\x47\x7a\x7f\x5b\xa6\xbe\x9c\xc3\x94\xdf\x18\xa3\xbc\xdc\xf1\xcb\xdf\xb7\xaf\x18\xdd\xd0\x44\xc9\x0f\xf5\xa0\xfb\x94\xe5\x72\x79\xaa\x61\x5e\x68\x1f\x41\xea\x83\x34\xec\x49\xd2\xe5\x98\x7d\x5d\x74\xb5\xa6\xfb\x04\x47\x15\x62\x37\x4f\x4d\x9c\x45\x45\x40\x80\x91\xf9\xfd\x5e\x84\xee\x45\x7f\xe3\x9a\x3f\x99\x4d\xc3\xa4\xc8\xa2\x55\xb2\xa2\xd2\x36\xa6\xaf\x2d\x04\x4e\xf4\xf9\xce\xe9\xee\x15\xa7\xb6\xad\xfb\x64\xa5\x88\x1d\xd2\xb4\x16\xc7\xe7\x7a\xc8\x9f\xaf\x5d\x8f\x2e\x1c\x81\xa9\x7e\xd6\xbb\x0b\x90\xcd\xc8\xe0\x5f\xf9\x19\xd2\xd5\xa1\x0f\x47\xda\x7b\xd3\xf5\xa1\x96\x4a\xbb\xf7\xff\xdd\xd4\x55\x2c\xa5\x37\xa2\xd6\x46\x8f\xe0\x64\x08\xab\x65\xf9\x05\xf0\x40\xc1\xaf\x03\x44\xcb\xe6\xae\x92\x39\x00\xf5\x99\x9b\x88\x2e\x4f\x8c\xd3\xdd\x5c\x54\x62\x7a\xe5\xaa\xe2\x6d\x31\x5f\x8d\xa4\xf5\xa1\xa9\x42\x7d\xf1\xd7\x97\x15\x56\x92\x39\xfd\x65\x13\x07\x16\x2c\x5c\x38\x30\x77\x68\x45\xe1\x3e\x66\xa6\x5e\x84\xf2\x6c\x8d\x92\xb7\xb4\x66\xe1\x21\x32\xe5\x82\xb8\x28\xbf\x8b\x60\x37\x76\x2a\x08\x4d\x9a\xc4\x83\x68\xf5\xa1\xf2\x9f\x9d\xd0\x7b\xf9\x4b\xa5\xb2\x5d\x7e\x3c\xbe\xdd\xe6\xa9\x17\x15\xfe\x2e\x46\x04\x90\x7d\xdd\x56\x28\xa7\x7b\x9a\xf2\xfd\x07\x1d\xcd\xc1\x42\x3f\x54\x48\x89\x7c\x92\x42\x22\x61\xe5\xee\x99\x75\x50\xb6\xde\xf1\x89\xa2\xd7\xa4\x29\x48\x37\xb1\xd5\x72\xa2\x60\xc7\x15\xd1\x97\x9f\xb0\x83\x19\x61\xa6\x63\x3c\x1b\x36\x6d\xf4\x52\xf4\x04\x5a\x5d\x4f\xc2\x81\x08\x14\x3b\x83\xe3\x10\xe1\x49\x76\xd8\x0c\x1b\xdb\x15\x6e\x9e\x61\x91\xae\x75\x54\xf7\x10\xa4\x00\x00\xe7\xbd\x51\x73\x93\xbb\x77\xb7\xf3\x24\xb2\xfd\x44\x55\x5d\x8e\xc0\x8c\xf1\x4d\xe7\xf3\xae\x22\x3b\xb6\x69\x18\xe7\x36\xee\xcb\xa4\x01\xf6\xf5\x8f\xe8\x13\xf8\xba\xa3\x8f\x5e\x1c\x27\x39\x03\xde\x1c\x07\x31\x50\x67\x7c\xad\xe2\xef\x41\x92\xf6\x4c\x30\xb4\xcb\x0f\xd1\x31\x85\xfd\xc6\x40\x2c\xc2\x30\x26\x32\x15\x55\x16\x95\x26\x9c\xa0\x67\x20\xc5\x6d\x5f\x6a\x3d\x4e\x44\x6e\xa8\x81\x9c\xa4\xa3\x23\x3a\xea\xb4\x3e\x58\xac\xa3\x9a\x5b\xc1\xc4\x5b\xe9\xa1\xe0\xc7\x7c\xa0\x9a\xff\x47\x75\xe1\xe3\x32\xfb\x2b\x01\x47\xf8\x7a\xd3\xc3\x6a\x3c\x79\xcb\x74\xe3\xfc\x5d\x99\x95\xac\x8e\x93\x7c\x68\x33\x91\x5e\x5b\xf4\xe0\x98\x85\x05\x67\xe5\x1a\x8a\x7c\xa3\x30\xcb\xc2\x48\x60\x79\xae\x10\xea\x46\x55\xcf\x6b\x0e\xc0\xd4\xcc\x2a\x16\x31\x80\x54\xf8\x5a\xcd\x13\x9c\xd1\xac\x3c\x67\x20\x55\x88\x44\x33\xcc\x46\x26\x0d\x0e\x86\x26\x9e\xa1\x5a\x15\xba\xd7\x6b\xea\x7d\xd0\xa0\x80\x95\x69\x75\xbd\x4f\x0a\x22\x93\x86\x4b\xab\xa0\xcf\xc1\x0a\x5f\xea\x28\x7d\x72\x70\x7d\xc3\x97\x1d\x83\xe1\xe7\x9b\x6a\xa6\x64\xfb\xbb\xa8\x12\x87\x30\x60\x2b\x59\xa5\xf5\x5b\x64\x28\xe8\x2c\x9b\x9f\xa1\x40\x5c\x9a\x4a\x5e\x1a\xfd\x6d\x2a\xda\x31\x29\x3a\x38\x5f\xd4\x44\xe0\xb3\x4e\x1a\x97\x7e\x17\xbf\x7b\x57\xd9\xdf\xb3\x95\x98\x87\x56\x11\x79\xf8\x07\x30\x1e\xf8\xf9\x77\x27\x4a\xe5\xef\x1c\x0a\xf7\xcc\x57\xd0\xf1\x35\x9c\x77\x78\xe4\x4e\x98\x0c\xca\x25\x43\xa5\x6f\x66\xea\xe1\x28\x81\x4d\xad\x54\x75\x84\xb9\x59\x59\xea\xb5\x8e\x16\x50\x88\x07\x91\xdd\xe6\x1d\xe2\x5f\xd1\xd0\x93\xb8\xeb\x96\x52\xc7\xa7\x35\x87\x41\xb9\x3f\x51\x65\x10\xc8\xbf\x22\x2e\x41\x49\x0b\xfb\xe7\x4d\x55\xd2\x1a\xa7\xe1\xb2\xc9\x6d\xb4\xda\xa2\xf5\x43\x72\x72\x49\x25\x72\x97\x26\x0f\x09\x44\xe3\x20\x95\x98\xf0\xbf\x3f\xa9\x20\x07\x26\xde\x3a\x3f\xd6\x55\xb3\x4c\x3b\x88\x46\x12\xd6\xe9\x9e\x33\x63\x43\x13\x09\x82\x4d\xc5\xc4\xe2\xd4\x8e\xe1\x9d\x45\xc4\xac\x4e\x93\xb1\xaf\xbd\x62\x33\x58\x25\xce\xad\x95\xdd\x3f\xab\x35\x28\x86\x21\x69\xbd\x1d\x98\xe3\x64\xfb\x93\x89\x9a\x20\xfe\xa4\x96\x35\x97\x89\x4f\x9c\x08\x70\x07\x6b\xf8\xa1\x0a\x76\x3e\xac\x1d\x56\x97\x09\xe7\xb9\x7a\xcd\x29\x3d\xe5\x72\xaa\xe3\x86\x9e\x2d\xc3\xa7\x65\xda\x46\x49\xa3\x9e\xf6\xb4\x2d\x9f\x22\x0e\x81\x7b\xd5\x2a\xd4\x3d\x5b\x1a\x2d\x3f\xf7\x7a\xaa\xe2\xb2\xb5\xda\x9b\x18\x2d\x60\x58\x41\xa3\x2a\x80\x9b\xf2\xbd\x71\xc6\xb7\x4d\xfd\x52\x0d\x4d\x2f\x64\xa6\x4d\x17\x34\xb8\x35\xfd\xbf\x27\x0a\x4a\x71\xb1\x56\x36\xdb\xb3\x77\x4f\x7b\x68\x40\x58\xe0\x31\x58\xe5\xaa\xc3\x06\x33\xeb\x2f\xcb\xfc\xaa\x01\x8e\x60\x98\x8c\x5b\xbe\xee\x8e\x0c\x56\xc0\x89\x0d\xc4\x53\x3d\x3b\x08\xe3\x56\x55\x38\xd4\x0d\x5a\x5f\xd4\x94\xfe\x26\x1d\x30\x33\x09\xc2\xae\xfb\x00\xe3\x48\xa7\xaf\xfc\x1c\xb9\xf6\xa6\x34\x8a\xb8\x9a\x21\x5a\x80\x2d\x25\x12\xd8\x80\x9e\x1f\x86\x71\xbf\x74\x93\x0c\x39\x40\x0a\x08\x7e\x5d\xbe\x76\xb1\xe2\x38\x1c\x5b\x9d\xcf\x9d\x55\xd5\xa6\xb3\x0d\x70\xab\x7d\xed\x91\xb5\x1e\x67\x82\x0d\x03\x79\x0c\xbe\x56\x3a\xf6\xa9\x09\x0e\xda\xdc\xe2\xab\x54\xf0\xce\x7e\xfa\xe8\x4a\xed\x43\x0e\xcc\xbd\xd4\xfe\xd2\xd7\x7f\x6b\xcf\xd7\xbf\xb6\xf8\xb0\x22\x14\x78\x47\xf5\x25\x40\xd0\x05\xc3\x07\x0d\x3a\x00\x50\x7e\xb7\xa3\xa6\xe6\x7e\x48\x1e\xb9\x22\xc6\x86\x77\x9a\x9d\x92\xc9\x97\x23\xe1\x87\x50\x4e\xc2\xd4\x62\x83\x6f\x6a\xa2\xb4\x34\x4b\x4b\x61\x3a\xe2\x70\xe2\x80\x17\x05\xd5\xdd\x3e\x85\x9f\xb7\x51\xb8\x6c\x53\x4a\xd0\x35\xa9\x8b\xcc\x63\x28\x6a\x1e\xd6\xd3\xe6\x1b\xfc\x0c\xf1\xa9\xe5\x07\xb1\x84\x27\x5a\x3b\x9e\x14\xc6\xe3\x8a\x06\x59\xcb\x5b\xe1\x2b\x8a\x13\xf8\x8a\x2a\xa3\x9a\x30\x22\xa0\xbc\x9e\xda\xa0\x55\x92\x09\x0e\x4f\x0e\x32\x4e\x93\xc0\xf6\x8b\xd4\x66\x5b\x7c\x8d\xf3\xed\x89\xaf\x39\x33\xe1\x21\x8b\xff\xb1\x93\x51\xa2\x36\xcf\x3a\x74\xea\x4e\x75\xae\x6c\x70\xd0\x49\xf9\x36\x89\xde\x54\xce\x4a\x90\x27\xb3\x65\xf4\x84\x7a\x70\x8b\x9c\x2d\xc0\xbe\x6c\xa2\x84\x54\x51\x8d\x5a\x54\xd5\x71\x82\x94\x31\xbd\x02\x83\x29\x7f\x0b\xe2\x50\x30\xf5\x03\x33\xc1\x3b\x12\x4d\xd1\x63\x1d\x4f\xac\xb8\x64\x88\x9f\xc0\x75\xc6\xfc\xb8\x75\x67\x87\x1f\x57\x8f\x0d\x56\x54\x30\xe7\x64\x6e\xa4\xed\xa5\xe2\xf8\x38\x5b\xa1\xb3\x40\xd6\x0c\x71\xdb\x29\xd0\xc7\x48\x63\xb5\xe5\xc8\x3c\xee\xaa\x3a\x4f\x36\x36\xd9\x08\xee\x42\x9a\x97\xbe\x22\x7a\xb6\xa3\x11\xbf\x66\x1c\x32\x3d\x22\x4e\xfa\x1d\x6c\x25\xbe\xa9\x15\x68\x16\x16\xda\x4b\x96\x29\x0c\x1b\x95\x95\xeb\x87\x73\xbe\x1d\xdb\x10\x9c\x3a\xf3\xfb\xb9\x76\xf2\x1d\x3a\x44\x78\x00\xdf\x98\x78\xae\x80\xd7\x55\xc2\xbf\x64\x72\x8b\xe7\x8e\x2d\x73\x44\x6b\xa2\x79\x0d\xf2\x95\x30\xee\x53\xfb\x75\xfd\x12\xfd\xc1\xfa\x25\x87\x1d\x33\x01\xa1\xa2\x4c\x2c\xe2\xdd\x52\x11\x2b\xf7\x85\x54\xca\x9c\x2a\x48\x9e\x16\x83\x41\xe4\x86\xfc\xb1\xc1\x77\x92\x07\x43\xf6\xbb\x3e\xf1\x53\x2f\xb3\x15\xca\x85\x28\x61\x2c\xb4\xcc\x13\xfb\x90\xf3\xb6\xa2\xe2\xce\xec\xc8\x46\x54\x76\xd2\xd2\x51\x15\xf9\x7d\x04\x18\xc7\x6b\xe9\xe7\x81\xb9\x76\x12\xdb\x2d\x1e\x2c\x7a\x0a\x68\x62\x47\xbd\xb4\xb0\xa0\xfb\xa6\x8b\x7e\xff\xee\x16\x1a\xdd\x73\x95\x3e\xd3\x2b\x36\x9f\xf1\x3d\x1e\x00\x6a\xa4\xa6\x4f\xeb\x2c\x94\xb0\x8f\x78\xfc\x09\x58\xe1\x1c\x0a\x43\xcd\xc5\x4a\xd7\x37\x4f\xc3\x71\x84\x1a\xcb\xbc\x33\x8b\xf4\x7d\xd0\x28\x39\x32\xf1\xaf\xba\x85\xbc\x8e\xb3\xae\x22\xce\x6d\x1a\x14\x51\x0e\xed\x57\x55\xbe\xf4\xc0\xb7\x8b\x9e\x6c\x66\x05\x8c\xed\x78\x54\xb0\x2f\x9f\xa3\x2a\x12\x7d\xe8\x57\x7f\x96\x1e\x1b\x42\xe0\x87\xa7\x6a\xbe\x25\xb2\x16\x9d\x04\x37\xe2\xb6\xd7\x5d\x2b\x4d\xa8\xac\xe8\x0d\xd2\xa4\x18\x03\x37\x86\x7f\x3f\x8d\xc0\x9f\x6f\xbc\x06\xfe\xab\x85\x89\xb6\x29\x71\xb3\x77\xc8\xfe\xc2\x34\x60\x5d\xf1\xff\x31\x71\x8e\xba\xfb\x7d\xc2\xad\x88\xfe\x99\x02\xfe\x63\x74\x03\xb1\xcf\x03\xd5\x9f\x1c\xaf\x18\x3a\x3e\x68\xdc\xfc\x14\x5f\x45\xc8\xd2\xfd\x5c\xfe\xf5\x5a\x81\xf4\xc0\xdc\xb3\xed\x90\x75\xe2\xe1\xda\x6e\x2b\x90\xc4\x6d\x65\x6b\x47\x26\x36\x03\x9b\x66\x0f\xb7\x1c\x03\x0d\xcf\x09\x31\x79\x03\xb8\xaa\x9c\x72\xa9\x9f\xe4\xba\xaa\xb0\x5e\xe7\xd5\xc0\xc0\x4f\xb4\xc2\xea\x55\x7c\x67\xd1\x66\x28\x7f\x26\xd6\x02\xaa\xee\xeb\x97\x3e\x13\xbb\x95\x9b\x83\x36\x86\x66\x19\xdc\xee\x1d\x02\x27\x0b\xb5\xaf\x4f\x91\xcf\xea\xf2\xd6\x43\xdd\x06\xcc\xe3\xb2\x19\x14\x88\x89\x5d\x62\xe9\x93\x4c\x55\xf3\xa3\x9a\xba\x89\x24\xdf\x9d\x67\x0f\x7a\x14\x5d\x57\xbe\x51\x75\x80\x91\x89\xfb\x26\x4f\x52\x56\x75\x43\x49\xe6\x30\x3d\x64\xbe\x56\xd6\x79\x35\xb4\x51\x9f\x14\xd7\x1d\xbb\x0c\xda\xcd\xdc\xa0\xe9\x54\xd6\xd9\xff\x3c\x04\x31\xf8\xf0\x9f\x00\x5c\x85\x43\x7a\xbb\x53\xe5\xad\xf4\x4a\x51\xa8\xd0\xa0\xfa\xd0\x42\x3a\x83\xf7\x02\x35\x83\x48\xbc\x52\xd2\x2a\x25\x5c\x6d\x25\xf2\x70\x09\x35\x57\xc4\xe9\x3c\x9e\x26\x8d\xa4\xf2\xe7\xc9\x7b\x2b\xd1\xba\xd8\x44\xab\xe5\xc2\x21\x72\x77\x62\x1c\xbe\x51\x7b\x5e\x35\xca\x52\x6b\xa8\x1c\x5c\xee\x20\x74\x12\x5a\x8a\x3a\xf4\xe6\xc4\x63\x46\xce\xa8\xb9\xed\x95\x20\xcd\x2a\xc0\xad\x8e\x52\x0f\x38\xa3\xa2\x92\x81\x8d\x6d\x4a\xe1\xd7\x16\xe5\xb1\x6f\xaa\xa6\xf3\xb5\x8e\x92\x7e\x01\x13\x0c\xe3\x29\x3b\x5e\xe3\xfd\xdd\x5a\x0d\xea\x45\xf0\x82\x25\x2b\x88\xe2\xb9\xd6\x80\x1a\x9e\x14\x1e\x9a\x90\x22\xb6\xbf\x62\xd2\x7e\x65\x4e\xf1\x3e\xd6\x86\x6f\xd4\x1c\x70\xcf\xd5\xca\x15\x6e\x4b\xa1\x8b\xee\x2a\x09\xae\x33\x4a\x97\x20\x4b\x46\x36\x89\xed\x56\x84\x58\xf0\xb2\x1f\x50\xd8\xe6\xe5\xcc\x5e\xd8\xe7\x06\x2a\xe9\x07\xf0\xbf\xc0\xab\xf0\x4b\xf4\xcc\x71\x9d\x75\xf2\xc0\x5c\x7b\x64\x5e\x2d\xc2\xc8\xf4\x93\xd4\xf0\xb0\x11\xdc\xc9\xdb\x8a\xf1\x10\xdb\x04\x90\xbe\x6b\x2e\x71\x5e\x49\xd2\x7c\xc8\xec\x0f\x22\x9a\xe9\xbb\x4c\x98\xc3\x47\x38\x7b\xb5\x36\x8d\xb1\xb8\x48\xca\x0b\x26\xce\x51\x3f\x44\x31\xf2\x9c\xae\x17\x5c\x56\x36\xee\xfb\xca\xc6\x31\x77\x33\x46\x97\x65\x9c\x58\xa1\x70\xcf\x3b\x05\xa6\x32\x14\x2f\x6d\x00\x15\x14\xca\xa5\x43\xe0\x77\x52\x29\xec\x9f\x54\x23\xb6\xe3\x30\x8a\x30\x9b\x83\x0d\x83\x09\x59\x78\xc0\x2b\xf8\x04\x41\x2c\x56\xc6\xcc\xbd\xe2\x68\x92\x8d\x21\xf3\x45\x9d\x83\xca\x6c\x28\x33\x9f\xd3\x02\x91\xf3\x1f\x3c\xde\xf5\xf5\x9e\xd9\x69\x43\xe1\x2d\x4d\xa2\xa8\x47\xe4\x06\xae\xb2\x07\xee\x52\xbe\xae\xed\xcd\xe7\xe7\xdb\x59\xd1\xef\xdb\x98\x7f\xae\x26\x29\xe6\xeb\x26\x4e\xdb\x2c\xf7\x69\xe3\xff\xbb\x84\xb0\x3d\x8e\x4c\xec\xb9\x94\x98\x48\x92\x5e\x04\x0b\x74\x4b\x75\x08\x4f\xba\xf0\xa3\xc8\x86\x46\x17\x64\x71\x66\xa4\x3a\xab\x83\xb1\x24\x38\xb8\xab\x8c\x28\x45\x11\x47\xa9\xac\x7f\x3a\xf1\x14\x95\x0f\x50\x66\x63\x3b\xd3\x51\xb2\x22\x3f\x56\x5d\xac\xbb\x54\xf9\x43\xc4\xf5\x00\xe7\x01\x85\x9e\xbb\x13\x8f\xcf\x3e\xdc\xf1\xe3\x0d\x88\xfd\xb8\x1f\xdf\xa9\x68\xa2\xd0\xef\x95\xbc\xb3\xcc\xbd\x04\x5d\x46\x3b\x02\x91\x1c\x8f\x7f\x01\x32\xcc\x8a\x81\x32\x85\xa2\xe8\x88\x6e\x35\x75\x5b\x97\x4c\x5a\x86\xd9\xa0\x09\x73\x84\x64\x0e\x24\x76\x5a\x01\x22\x53\x96\x71\xf5\x44\xea\x27\x3a\x2a\xd4\x3e\xa1\x6a\x09\xe3\x61\x65\xae\xe7\x1c\x59\x45\xbe\x56\x73\x17\xe3\x24\xcd\x53\x13\x4a\xc3\x4a\x17\x0f\xa5\xc4\xe8\xa0\x81\x84\xac\xc9\xb6\x2a\xad\x7c\xe4\x59\xae\x5d\x56\x7e\x13\x2e\xfe\x63\x71\xe8\x5b\xbd\xfa\x78\xd7\xb7\x5c\x00\x21\x11\xb8\xea\x63\x6a\x0e\xdc\x14\x2c\x6c\xc6\x63\xfb\x1d\x0f\x78\x39\xaf\xba\x41\x3d\x93\xd9\x9e\x89\xa2\xad\xf4\x7d\xe1\x62\x7e\xa8\x65\x3b\x89\xb5\x54\xe8\xc9\x7d\x16\xce\x1a\x62\xce\x92\xfa\xe9\xda\x2b\x8a\x70\x39\x5b\x09\x01\x7a\xa1\x77\x77\xfa\xf0\xa5\xa7\x71\xaa\x4d\xce\xb3\xdd\x55\x19\x59\xdf\xc6\xa9\xb5\x99\x92\x9d\x3e\x4b\x06\x94\xaf\x75\xa3\x69\x6c\x52\xc9\x8d\x45\xca\x03\x33\x34\x7c\xdd\x90\x44\xbc\xd4\xee\xf3\x28\x29\x76\xf1\x7b\x0a\x37\xfc\x5e\xcd\xd0\x96\x7f\xdf\xb3\x43\xd2\xee\x7e\x4e\xc2\x69\xd0\x69\xf3\xb5\xb2\x80\xe5\x57\xc9\x14\x01\xf3\x5d\x45\xc0\x7c\x77\xa2\x4b\x65\xe1\x78\xab\x1f\x7b\xbe\x82\x7d\xe7\x50\xc3\xe5\xd3\x06\xaa\x0d\x73\xdc\x48\x6a\xee\x00\xfd\xcf\x2f\x21\xa3\x24\x03\xde\x4a\xc6\x30\xb2\x26\xe6\x9e\x92\x48\x8a\x52\x5c\xa5\xf9\x8b\x71\x4a\x6f\x56\x3b\x3e\xcb\x36\xcd\xc3\x5e\x64\xa1\xec\x2f\x3c\xec\x7e\x0f\xfd\x90\xac\x00\x82\xda\x2b\x13\x45\xd7\x78\x77\xa2\x4c\x3b\x66\x14\x45\x3e\x57\x29\x57\x33\x1b\x30\x82\xd7\x99\xee\x46\x9b\xb8\xb0\x50\x9a\x7f\x16\x49\xf6\x64\x39\xb7\x26\x4a\x9f\xf9\x96\x0a\x0b\xc6\x61\x1e\x0c\xa9\x42\xa6\x9c\x58\xcb\x91\x33\x54\xe0\xff\x79\x6a\xe3\x41\x3e\xcc\x34\x05\xeb\x1d\x95\x94\x80\xcf\x16\xdd\xb9\xd3\x7a\xda\xae\x8c\x6d\xd2\x55\x8e\xe1\xd0\x59\xba\xa3\xd1\xfd\x77\x54\x07\x2a\x0e\x86\x3b\x5c\x67\xed\x9f\x7c\xb1\xab\x8a\xb9\x0f\x26\x9b\xbf\x2c\x5a\x40\x13\xef\xd4\x9f\x40\x52\xe8\xe8\x10\xca\x73\x21\x74\x51\x1e\xb2\xf7\x67\x93\xaa\x1e\xeb\x01\x51\xe1\xfd\x2e\x43\x08\xb1\x51\xfe\x9a\x1a\x29\x0c\x40\xd5\x6a\x95\x9f\x9f\xfa\x6d\x17\xdb\xe0\x20\x4c\x13\x26\xe4\x30\xe0\xc7\xd7\x1e\xac\x98\x14\x69\x66\x49\xa0\x0f\x49\x8f\xb0\x67\x29\x35\x40\x89\x15\xee\xab\x4d\x5d\xe6\xbd\xdb\x55\x89\xe1\x54\x79\x48\xd6\x69\xa3\xae\x83\xef\x89\x79\x91\xb5\x9f\xc1\x24\xb3\xcc\xe8\xf9\x14\xea\xe3\x89\x1a\x62\x5e\x53\x9f\xb2\x62\x56\x33\x90\xb5\x38\xeb\xfe\x9c\x7f\x78\x2d\x07\x89\x1b\xd7\xca\x36\x07\xe6\xda\xd9\x30\x59\x21\xcf\x2e\xaa\xf7\x0a\xc2\x7b\x66\xe2\x67\x72\xb2\xa1\x49\x6d\xf6\x44\xe9\x41\x91\x1e\xdc\xd4\xb8\x71\x78\x24\xc4\x35\x1f\x90\xf1\xc0\x3a\x5d\x21\xab\xc0\x00\xcd\x89\x9f\x7a\xd8\xca\x2a\x89\x28\x2d\xfe\x23\xda\x02\xa8\x1d\xde\xd0\xf8\xee\x4b\x13\xd5\x20\xbc\x4c\x4f\x9a\xd5\xfd\x70\xf0\xdd\xa4\x92\x1b\xf5\x79\xa8\x4b\xee\x5b\xfa\xa4\x8a\x5d\xe3\x12\xb6\x93\x33\x9e\xf3\xfb\x79\x03\x6e\xef\x2a\x63\xbd\xbd\xab\x40\xef\x6b\x8e\x5d\x20\xb6\xb6\x1f\xd9\x2c\x9b\x29\x7f\x3f\xbe\xce\x19\x55\x03\x44\x0e\x2f\xd4\xd9\x75\x92\x9f\xa1\x49\xfb\xab\x5b\xfc\x80\x23\x8f\x68\xe3\xe1\xff\x05\x6d\x6d\xcd\xc4\xa9\xd2\xd6\x79\xd9\xcc\x0a\x3d\xda\xb7\xe3\x24\xa7\x6f\x82\xea\xc9\x6d\xa5\xe8\x87\xc2\xb0\xcc\x51\x3f\x59\xe7\xe5\x78\xf9\xe5\x87\xcb\x47\xc2\x92\x24\x5a\x8d\x15\xb4\xbf\x02\x04\xf6\x35\x52\x1c\x3d\x0d\x38\x85\x9b\x7f\x47\x4f\x99\xf2\x5c\x1f\x9e\xe1\xbd\x8e\x7a\x6c\x6c\x0b\x45\x4a\xd9\x77\x7b\x48\x1e\x1b\x7c\x8c\x82\xae\xf6\x63\x1e\xa8\xef\xa0\xa3\xb2\xde\xac\xb5\x8b\x19\x29\x0e\xda\xb9\xae\xa2\xb9\x21\xd6\x14\xf7\xe3\x52\x11\xf7\xb3\x87\xe9\xc7\xb2\x5a\x0c\x36\x10\x6c\xc8\x31\xa5\xac\xb3\x79\x5a\xee\x0c\x91\x6f\xf1\xaa\xa2\x70\x3b\x22\x0f\x53\x7e\xcc\xfa\x25\x9c\x15\x00\xb2\x10\xec\xe1\xf1\x7e\x8c\x6d\x2b\xc5\xf0\x9d\xaa\x00\x6b\x83\x70\x29\x0c\xb6\xfa\x19\xcc\x5b\x74\x42\x1c\x41\x9a\x1e\xd5\x2d\xe3\x35\xb7\x5f\xca\xbd\xcb\x37\x53\x35\x94\x7e\x4b\x75\x3a\xd3\x24\x18\xda\x2c\xb7\x29\x9b\x67\xec\xcd\x29\xd6\x9f\x6f\x3a\x1b\x9b\x11\x04\x09\x27\x61\xcf\x20\x34\xd1\x8c\x67\xeb\xba\xa8\x65\xb3\xb0\xd9\x61\x4b\xef\xd5\xa6\x16\x40\x19\x3e\x1a\x27\x59\x98\xdb\xad\x14\x58\xe3\x3d\x90\x27\xc0\x33\xb0\xdf\x72\xba\x1e\xee\xfd\x3e\xd7\xf5\xf9\xd1\x09\x6c\x48\x41\x9a\x3d\xee\xc8\x3d\x62\x93\x25\x71\x18\xcc\x54\x80\x36\x0b\x0b\x4e\xfc\x50\xb5\xb5\xfe\x1f\xc2\xde\x2c\x46\x92\x2b\x3d\x17\x63\x67\x55\x75\xf7\x70\x1b\xae\x33\x73\x81\xbb\xe4\xf5\x95\x31\xb2\x31\xa6\xe5\xfb\x20\x5c\x0b\x06\x22\x55\x5d\x1a\xaa\x0b\x9e\x62\xa3\xba\xd5\x94\xe8\x17\x9e\x8c\x3c\x95\x19\xac\xc8\x88\x9c\x58\xaa\x58\x7c\x32\xfc\x70\xe1\x27\xc3\x2f\xbe\x36\x0c\xdb\x90\x01\x41\xf7\x5e\x1b\x96\x6c\x4b\xa3\x5d\xca\x9a\x7d\x5f\xb8\x0f\x87\x4d\xb2\x9b\xbd\xef\xfb\x56\xdd\x5d\x6d\xc4\xff\xfd\xff\x39\x7f\x54\x04\xe1\x17\x22\x82\x5d\x55\x99\x71\xe2\x2c\xff\xf2\x2d\x5b\x2d\x9d\xa0\x03\x52\x4a\x9c\xf1\x28\x08\x10\xb4\x44\xa1\x81\x46\x1b\x99\xd3\x4f\x5a\x71\xf3\xb1\x5d\xe1\x86\x07\x0b\x6c\x21\x27\x16\xb5\xad\x9d\xce\x04\x8b\x8b\xdd\x12\xc2\xe3\x45\x94\x26\x51\x3e\xee\xd4\xfa\x07\x35\x7e\xed\x33\x8e\xf8\x9f\x14\x76\x10\xe5\xa2\xaa\x84\x07\x65\xa8\x13\xdf\x6c\xaa\x2a\x7d\x68\x32\x12\x0a\x5e\xae\x57\x8e\x65\xd9\xb6\xd5\xdc\xa9\x1b\x1e\x32\x2a\x54\x0a\x28\xaa\x98\xd2\x9a\xcc\x55\x5b\x3f\x03\x3c\x5c\x5c\xe1\x63\x8c\xa9\x97\xfd\x2b\x93\x49\x6c\x4d\x6e\x92\x82\xb2\x55\xec\x6f\xef\xea\x02\xe9\x05\x85\x0d\x7a\x57\x8b\x8a\x05\x35\x7d\xce\xd5\x59\x8f\x04\xbf\xa9\x20\xe8\xbb\x81\x71\x56\x42\x0b\xd2\x7a\xf9\xd8\xe5\xcc\x61\x9a\x4e\xac\x64\x32\xde\xc6\xf2\xa4\x52\xaf\x3f\xd9\x12\xd3\xbe\xd8\x8d\x92\x42\xe4\x19\x84\xb6\xa7\xe9\x7c\x2d\x0d\xd2\xb1\x4d\xc8\x6c\x8d\xab\x81\xaa\x6f\xe3\x9a\x38\x2a\x65\x5a\x17\x31\x39\x8d\x40\x71\x90\xe2\xc5\x45\xc7\x1b\x75\x00\xbc\xf2\xb5\x68\xb7\x82\x61\xde\xe0\xa8\x03\xbb\x16\x82\x7a\xb1\x32\xa9\x0e\x63\x11\x00\xf2\xa8\x98\x9b\xd8\x89\xb0\x71\x74\x1a\xa5\xcf\x43\x2f\x55\x71\xb7\x85\x45\x34\x22\x3f\xd8\x95\xf3\x75\x03\x33\xb9\x70\xa8\x9b\xd9\x34\x1b\x9a\x24\x7a\xc3\x82\x7d\x21\x3a\x28\xf4\xd0\x08\x6c\x21\x2a\x83\x7d\xf3\x17\x4a\x5f\x6d\x12\x49\x28\x2b\x76\xdc\xd5\x1f\x10\x31\x2f\x3f\x50\x07\x7f\xfb\xb7\x3b\x3e\x8d\xfb\x50\x37\xd5\x3e\x74\x47\x72\x58\x2d\x96\xf1\x44\x9b\xd6\x9d\x56\xa6\x75\xa7\xdb\xbe\xfb\x4a\x9c\x96\x59\x94\x8f\xa4\x77\xe6\xbc\xa9\x5c\x55\x88\x07\x4c\xb0\xa4\xcf\xd6\xd2\x81\x28\x84\xc1\xa5\x77\x46\x52\x6a\x4f\xd7\xe8\x15\xb0\x4b\x73\x63\xb2\x10\xd9\x27\x09\xcb\xcc\xad\x24\xd1\x3b\xa4\x99\x23\x02\x89\x4e\x60\x25\xd9\x58\x1f\xd9\xcc\x42\xde\x0d\x79\xc4\xb7\x15\x2a\x14\x1a\xf0\xce\xb0\xfa\x77\x7e\xdf\x19\x77\xb5\x31\xd7\xaa\x53\x87\xbb\x27\xa2\x73\xe3\x3b\x87\xc7\x1b\x9d\xff\x43\x2f\x75\x6d\x32\x32\x49\xe8\x56\x10\x76\x70\xb0\x1f\xf8\xda\xbd\xd6\xaf\x97\x36\x8e\x6d\x47\x41\xd8\xb0\x0b\x49\x8e\xe3\x18\x91\xb1\x8d\x86\x23\x2c\x2f\x54\x8a\x6f\x7b\xad\xc6\xf7\x6f\x07\xbe\xbf\x39\x2c\xf3\xc2\xac\xe4\x29\x9b\xc8\x4b\x4c\x51\x7d\x78\x4d\xf6\x58\xac\x06\xb4\x04\x61\x1c\x85\xd5\xf6\x56\x8d\x88\x8b\xa8\x7c\x74\xa5\x4d\x22\xd3\x84\xbf\x34\x83\x9f\x03\x1f\x79\x9d\x6a\x94\x75\xf7\x2f\x75\xf3\xc2\x38\x46\xb6\xe3\x2b\xfb\x63\xfe\x9c\xd6\xe4\x29\xa2\x71\x19\x47\x33\x5a\xf3\x1e\x61\x2d\xa2\x4f\x06\x91\xa1\x98\xf7\xa6\x97\x43\x1b\x9b\x37\xbc\x00\x1d\x80\x9d\x28\x31\xf0\xb5\xaa\xd4\xe4\x71\xba\x1e\x73\x77\x11\x2d\x01\x10\x18\xf9\xda\x4d\xa4\x2a\xd3\xcb\x73\x99\x73\x08\x71\x58\x49\x9b\x6f\x02\x55\x6b\x0c\xad\x1d\x54\xf9\x3a\x9d\x92\xf8\xe2\xef\x68\xac\x20\xbb\xb1\xa0\x1a\xfb\x91\x56\x31\xdb\xb0\xfd\x2c\x5d\x47\xa2\x0f\xf0\x22\xb4\x6d\xf8\xda\x6d\x69\x6b\x69\x34\xe8\x74\x7e\xef\x77\x39\x9b\x06\x8b\x81\xaf\x55\xbc\x36\x8c\xd3\x1c\x40\x04\xc4\x2d\x47\xe9\xa8\xe0\xeb\x9a\xbf\x9d\x5d\xab\xa2\x16\x87\x26\xf8\xe3\xa9\x02\xc5\x20\x6a\x41\x58\x7e\xbe\x4d\x1a\x3d\xb3\x13\x4b\x07\xc5\x8c\xea\x2c\x02\x74\xe0\xa4\x4d\xdd\x42\xb9\xab\xa8\x8f\x2b\x26\x74\x55\x1c\xa9\x69\xfa\xde\xc1\x96\x12\x79\x3e\x57\x6b\xaf\xda\x21\x63\x16\x5c\x21\xa2\x0a\x96\xf8\x46\x35\x1a\x33\x33\x60\x75\x45\xec\xf8\x78\x57\x1c\x09\xf0\xcd\x66\x9b\x45\x7b\x66\x0d\x99\x54\x7a\x10\x08\x52\x0a\x21\x4a\x7c\x96\x81\xd2\x9a\x4d\xec\x1b\xa5\x8d\xcd\x4c\x47\x69\x40\x6a\xbd\x28\xb5\x09\x9f\x6e\xab\xdf\xf6\xcb\x28\x1e\xb8\x41\x41\x1d\xec\x5a\xa0\x41\x96\xf4\x17\xf8\xcf\xb5\xc8\x05\x1d\xe8\x4e\x32\xdb\x17\xed\x11\x87\x7f\x52\x2e\x66\xde\x04\xcb\xbe\x3e\xb1\xc9\x20\x2a\xca\xcc\x82\xb9\x26\xba\xc9\x14\x27\xa3\x75\x7e\x41\xed\x91\x3f\x53\x75\x92\x95\x32\x09\xd1\xf9\xa9\xc2\x12\x54\xac\x3e\xa5\x48\x5f\xf0\x5f\x9e\x48\x78\x82\xf2\x44\xfe\x19\x05\x5a\xd9\x6a\xda\x06\xee\xa3\xca\x1b\x98\xcd\x2e\xfa\x5d\x5c\x94\xeb\xe0\x49\xe5\xba\x16\x25\xab\x5a\x55\xe9\x28\xfd\x65\xa4\xd5\x90\x91\x91\x0c\xd0\x9f\x89\x1b\xb0\x3e\xf6\x68\x06\xff\x4f\x5f\xde\x1f\x63\xcc\x44\x41\x18\x73\x46\xc4\x85\x55\x25\xcc\xe4\x05\x63\xff\x50\x7c\x65\x82\x22\xdf\x28\x14\xb6\x99\x30\x77\x10\x09\xcf\x25\x8d\xf6\xd7\x5a\x88\x21\xe9\x03\x3a\x53\xa6\x73\xaa\xcb\x7b\x4e\x71\x64\x26\x69\x1c\xef\xa5\xe1\x76\x34\xa2\xc5\x45\x9f\x5e\x3a\x5a\xd7\xdd\xa9\xa7\x1b\xdc\x46\x95\xdc\x05\xb6\xcb\xc2\xcb\xbf\x8a\xdd\x13\xdb\x13\xa3\xe0\xf9\xa6\x11\xbd\xbe\xfa\x6a\x77\x3d\x8a\x45\x61\xd2\x69\x86\xb9\x39\x75\x7c\x67\x8a\xbc\x3c\xdf\x3d\x3c\xbf\xf4\x14\x65\x03\x08\x60\x6a\x2a\x2b\xdf\xa4\x7d\x88\xa5\xeb\xa7\x4a\xe6\xf7\xc7\x53\xd5\xe2\xe3\x66\x0e\x12\xc3\x77\x68\x15\x71\x4b\x15\xa1\xa1\x23\x13\x57\x0f\x08\x74\xd3\x07\xd3\x9a\xc2\x89\xa7\x12\x5e\x09\x3c\xab\xed\xff\x45\x4f\x92\xb7\xdf\xc0\xeb\xcf\x9f\xe3\x57\x2e\xe0\xe0\x6a\x3a\xe1\x4b\xbe\xab\x4a\xb1\x65\x5e\x56\x51\x80\x23\xe6\x3e\xda\xf3\xe5\xdb\x47\x37\x7d\x91\x6f\x35\x4a\x86\x83\x94\x13\x16\xe4\x68\x47\x50\x8e\xe5\x1b\xad\xab\x54\x45\x34\x49\x11\x6f\x30\xb7\x83\x05\x9c\x28\x91\x45\x68\xbb\x8b\x3e\x05\xef\xf4\xa9\x4d\xe5\x89\xc3\xfd\x2f\xec\x4c\x88\xce\x45\x79\x94\xc6\xc2\x91\x92\xaa\x21\xe3\xee\x0a\x29\x88\x3b\x3a\xca\xcb\x0e\x28\x0d\xd0\x34\xe6\xf1\x07\x0e\xbb\x53\x85\x88\x59\x1a\xc7\x1c\xa9\xba\x4e\x9b\x07\xc2\x3c\x50\x8e\x42\x5e\x09\x78\x64\xb2\x01\xcb\x2c\x23\x2d\xba\x88\xb7\xcb\xc6\x25\x53\x8f\xb7\xbd\xa5\x44\x45\xb7\xbc\x49\xf4\xe3\xb3\x9b\x4a\xce\xf3\x19\x64\xef\xd8\x54\xe7\xda\xea\xbc\x61\x54\x44\x6f\xb0\x65\xfc\x2b\x3c\x3c\x47\xa7\x6a\xac\x8e\x36\xf6\x9b\xa5\xa5\x83\xdd\xdc\x48\x99\x1f\x41\xf8\xc7\x9a\xab\xf4\xb1\x23\x3b\x4c\x46\x26\x1b\x9b\xd0\x96\x45\x14\x9a\x98\xc0\x42\x22\x41\x4c\x6f\x80\xb5\xdc\xf1\x8a\x5d\xed\xd5\x4b\x1e\x61\x1f\xc3\x3c\xb9\xff\x99\x27\x88\x7d\xdd\x86\x65\x11\xad\x59\x85\xfd\xfe\xb0\xa6\x83\xd5\x38\x81\x0f\xbc\x74\xb0\x6b\xb2\x22\x0a\x1d\x15\x80\xb9\x0a\x81\x27\x61\xfc\x4a\x6d\x23\xaf\xa5\x91\x70\x8e\x51\x12\x3d\xa6\x1c\xa0\x11\x6f\x88\xe0\x2d\x7d\xae\x88\x50\xef\xfc\xca\xcb\xf3\xe4\x34\x90\x45\xe3\x28\x51\x79\xa2\x74\xcc\x3b\x4e\x08\xe2\xec\x54\x23\x12\x0a\x13\x25\x79\x07\xdd\x73\x07\x36\x56\x61\xb8\xda\x68\xd3\xa2\x48\x93\xcf\xd1\x23\x49\x5e\x51\x4d\x1a\x6c\x22\x67\xb1\x71\x88\x5b\x83\x0f\xcb\x19\x25\x8e\x4d\xe4\x6f\xb5\xd8\xca\x49\xa5\x18\x34\x8b\x4e\x13\xff\xdd\x5a\x2f\xb1\x25\xad\x5d\xe8\xe6\x36\x2c\xf9\x5c\x62\x88\x7f\x50\xc3\xfb\xb7\x99\x31\x55\xab\xc6\x9d\xe5\x48\xbd\xaf\xaa\x1e\x12\x54\x6e\xd9\x96\x5a\x79\xe0\xe6\x45\xea\xfb\xbe\xcc\x7a\xa1\xe7\x13\x06\x4c\x8b\xe1\x66\xcc\xa2\x90\x38\xc1\xef\x20\x4e\x06\x2e\x00\x1e\x91\xae\xec\xf4\xa4\x22\x0b\xae\x99\x98\x43\x23\xd4\xf3\x98\xbb\xcb\x37\x8d\xe8\x62\xff\x52\xd7\xc4\x26\x5f\x35\x60\xef\x00\x2c\xc3\x98\x46\xbe\x51\x62\x62\x03\xdb\xb7\x09\xc5\x16\x4a\xb9\x03\xe7\x94\x64\x38\x7e\x52\xf6\x53\x53\x28\x8f\x9c\x9f\xd2\x76\xcf\xd7\xca\x11\x61\x60\xd7\x6c\x9c\x4e\x1c\x6c\x43\x40\x5e\x1d\x27\x02\x00\x26\x38\x36\xcd\xd9\x4d\x9f\xd4\x4c\xb2\xb4\xb0\x51\x92\xef\xae\xb6\x38\x49\xb0\x69\x60\x94\xa8\xdf\x92\x2b\x21\xd2\xae\x88\x77\xab\x6d\x49\x01\xc6\xe2\xff\xdf\x02\xf6\x3e\xd8\x8d\xad\xc9\xbc\xbe\x1c\x32\x15\xb4\x43\xf8\xba\x51\xd8\xde\xb7\xd0\x9d\xbc\x30\x7e\x81\x76\x14\x4c\x92\x87\x81\x72\x4d\x7e\x40\x43\x81\x2a\xd1\x49\x05\x45\xfc\x11\x7d\x15\x6c\xa6\x9f\xaa\x82\x70\x3e\x29\x07\xbc\x05\xb2\x34\x7f\x50\xb3\x01\x69\x01\x7c\x8c\x0d\x5e\x13\xfd\x12\xd0\x2f\xd7\xb5\xd3\xf9\xf5\x26\x96\xff\xa5\x83\xdd\xb5\xb4\xb0\x34\xe7\xb8\x2b\x13\xf8\x1d\xeb\xdb\xaa\xd8\x54\xf7\xbd\x2f\xd6\xd3\xa7\x69\xd4\x51\x59\x79\x33\xa8\xd9\xa9\xfa\x42\xd1\x5b\x81\x56\x1d\xa5\x78\x01\x91\xd8\x4f\x70\x7a\x4b\xa4\x44\x2d\x48\x64\xf3\xaf\x2a\x5f\xcb\x73\x54\x0f\xc6\x2e\x0c\xaa\xad\x18\x26\x10\xfc\x8b\x7f\x61\xaa\x00\x67\xac\x88\x83\x6a\xfb\x2e\xf4\x2f\x70\x04\xfc\x6b\x4c\x70\x9c\xc9\xf7\xb0\xa5\x23\x86\x3a\xc6\x01\x03\xc8\xa7\x3f\x6b\xf3\x62\x81\x2f\x84\x4d\x80\x07\xc5\x0f\x32\xb9\x08\x25\xbb\x19\xee\xe1\xa0\xde\xf2\xbe\x6a\x50\xf4\x6d\x34\x64\x36\x80\xdb\xbe\x9c\x4e\xcf\xc9\x96\xf2\xec\x52\x77\xdd\x44\x85\x54\x65\xb8\xc5\x83\x5d\xd2\x05\x86\xae\xa4\xf0\xd0\xb1\x6a\xc3\xd8\x8c\xfb\xd6\x55\x54\x00\xf3\xba\x3d\x55\x98\xaf\xdb\x81\x76\x30\xd9\x30\xf0\x89\x72\x06\x3e\x2f\x7b\x03\x68\x29\x53\xac\x93\xc7\x02\xcf\x28\x04\x09\x1f\x4e\x55\xe9\xf6\x43\xd5\x6a\x5f\x4b\xb3\x34\xb1\x6f\x8c\x70\x06\x6b\xb6\x00\x5f\x4f\x9f\xf7\x91\xc8\x8a\x1d\x30\xe4\x4c\x4c\x0c\xd0\x44\xe6\x9c\x9a\x6f\xb4\x13\x77\x94\x4f\x52\x97\xba\x3b\x61\x33\xe7\xcd\x73\xb9\x01\xea\x5c\x5a\xea\x66\x51\x38\xa2\x41\x44\x55\xa2\xd3\xf3\x6c\x68\x84\x85\xf8\xdd\x9b\x53\x6f\xab\x69\x5f\x9f\x51\xa6\x71\xe7\x55\x96\xf3\x31\x41\x0c\xb8\x0a\xdb\xd8\x53\x0f\xbd\x24\xfd\x69\x5a\x4b\x38\x6c\xaf\x61\x92\x3b\xec\x96\x53\xec\xf9\xa9\x5a\xe8\x2b\x66\x20\x25\x53\x94\x2c\x3f\xc1\x7c\xe6\x9b\x96\xe2\xd9\xc1\xee\x9a\x89\x4b\x27\x39\x5c\xf3\x66\xe6\x1b\x05\xa8\x5e\x49\xb3\xd0\xee\xa9\x56\x1e\xf2\x82\x5b\x08\xdf\xd0\xc2\x62\x4f\x7e\x3c\xe1\x5f\xd0\x6a\x63\xcb\x2b\x25\x84\xf3\x17\x80\x07\x89\x4f\x93\x47\x48\xfd\x52\xe9\xa3\x51\x45\x68\x6f\xf5\x31\x08\xdb\x3b\x9b\x35\xfa\xec\xf2\x01\x37\x23\xab\xdf\x47\x4f\x6e\x77\xcf\x87\x36\x57\x82\x1a\xf0\x43\x09\x9e\x21\xae\x10\x5d\xc5\xcf\x2b\xef\x54\xe1\x7e\x2f\xe8\x5e\xb8\x34\xcd\xfe\x56\x21\x4d\xc4\x2c\xe4\x73\xd5\x67\x8b\x8f\x79\xf5\x5d\x41\x71\x7f\x47\x8b\x1b\xee\xe9\xf9\x96\xe0\xaf\x34\x21\xf8\x3e\xf2\x15\x7c\xc3\x3b\x08\xb8\x11\xaf\x43\xaf\x59\x10\x44\x1d\x67\x98\x70\x5b\xd1\x56\x46\xd6\xac\x45\x31\x64\x9b\x50\x84\xf9\x30\xa8\x09\xe2\x78\x0d\x10\xd6\x1a\xe3\x9f\xa2\xf1\x42\xcd\xeb\x9a\xca\x35\x9c\x02\xea\x9c\x82\xf4\xc1\x63\x69\x7b\xb3\x56\x48\xea\x38\xe3\xc9\xb7\xf0\xea\x45\x35\xa9\xd9\xb9\xea\xe6\x45\x66\x0a\x3b\x8c\xf2\x42\xa9\x68\xc1\xde\x49\x1e\x4f\x30\xdd\xec\xab\xbe\xb4\xd4\xee\xab\xde\x38\x6a\x16\x0e\x75\xed\x9a\x4d\x14\xfa\x05\x84\x4a\xb1\x58\xf3\x79\xf4\xc4\x44\xb1\x2a\xc2\xdf\x99\xfa\x22\xfc\x1d\xe7\x90\x4d\x8a\x03\x1b\xf1\x9a\x49\x22\xf3\xd9\x49\xbc\x14\xc7\x06\x99\x96\x8b\x45\x96\x79\x52\xa9\xbd\x6b\x30\xd7\xc8\xc0\xf8\x40\x48\xf7\x2a\x6a\xbf\xdc\x58\x8d\x8b\x8b\x07\xbb\xa6\x9f\xa7\x59\x5f\xf6\x26\xe7\xee\xe5\x34\xc8\x35\x68\x7a\xa5\x4c\x06\x66\x4c\xce\xde\x1d\xdf\x30\x38\x37\xd5\x53\xbc\x45\xe4\x7d\x25\x4a\x94\x81\x0a\x0b\x15\xd0\xf7\x17\xd1\x82\x96\x20\xcf\xbe\x3e\xc9\x6c\x9e\xcf\xd6\x1c\xd0\x7c\x78\x02\x0d\x0f\x11\x9f\xa6\xa7\x44\x64\x7a\x5a\x0d\xc6\x6f\xfe\xc6\x6f\x00\x55\x8e\xd7\x74\x57\xaf\x30\xdd\x73\xb9\x4b\xc9\xa8\xb8\xfc\xb4\x74\x87\xa2\x64\x0d\x82\xb0\x1d\x75\x92\x5d\xa7\x51\xe2\xeb\x36\x3f\x20\x6b\x24\x0f\x14\x54\x74\x1d\x30\xed\x11\x4a\x71\x35\x6b\xe1\x70\xb9\xbb\x5a\x4a\x88\xa8\x68\x23\x79\x71\x5b\x23\x78\x8e\x68\xa0\xd1\x29\xd5\xc8\xde\x05\x1c\x02\x8a\x13\x67\x1b\x13\x78\xe1\x50\xb7\xc8\xaa\xfd\x9d\x7e\x4a\x46\x4a\xe1\xc8\xcf\x28\x41\x99\xdb\x4a\x0c\xd7\x94\xc5\x28\xcd\xa2\x37\xdc\xb3\x63\x83\x44\x27\x8f\xaf\x1b\x23\x76\x78\xfe\xc5\xee\x4a\x16\xd9\x64\x10\x6f\xd0\x11\x86\xfa\xc9\xae\x9e\xe7\x04\xdd\xc2\x87\xa3\x0b\x70\xa6\xd1\xe1\x71\xaa\xae\x71\xec\xa4\xc4\xf1\x47\xa0\xab\x8f\x82\xfb\x37\xf1\xe2\xf9\x8f\x34\xcb\xc2\x0b\xdd\x28\x09\xcb\x71\x5f\x0a\xf1\xd8\xb8\x6f\x28\x60\x45\x53\xb3\x75\xe1\x50\x77\x82\xc6\x67\x0e\x56\x26\x8e\x91\x73\x0c\x48\xc2\x9e\xcb\xa8\x0f\x6c\xf1\x37\x5c\x63\x84\x33\x83\xbd\xd5\xdf\x17\x2f\xf0\x6a\xa3\x56\xc6\xd6\x07\x5d\x69\x52\x4d\x4c\x18\x7f\x52\xf2\xf9\x07\xcf\xf6\x7c\x73\xf3\x66\x5d\xe4\x9b\xf6\x4a\xec\xb8\x77\xdb\xf6\xbf\x15\xd3\xcf\x48\x3e\x89\x07\x4c\x8c\x35\x3c\xd8\x95\x25\x50\x24\xce\xf3\x9c\xda\xaf\x97\xb6\x6f\xd1\x93\x47\x6a\xfa\x3f\x07\xfe\xb4\x39\x01\x90\x1d\x7a\x9a\xc7\x15\x0c\x9d\x34\x1e\xb0\xae\xa5\x37\xdb\x51\x5f\xbf\xb3\xa9\x9c\xfa\xd3\x2c\x1c\x59\xa2\xce\x39\x2a\x78\x35\x00\x52\xe7\xda\x99\x4e\xbe\xd0\xed\xbf\xb0\xf6\x02\xbd\x35\x75\x3a\xb8\xa3\xa2\x65\x91\x1e\xe8\x9a\x90\x74\x95\x79\xcd\x49\x53\x44\x77\x48\xda\xa5\x1d\x4d\x51\xd8\x2c\xaf\x39\x77\xb1\xf2\x06\xdf\x04\xde\xbc\xa6\x58\xcb\xe7\xb4\x25\x48\xe0\x09\x53\x70\xd2\x70\xba\x0c\xbe\xb2\xf9\x77\x48\x30\xc4\x44\xe4\x39\x45\x68\x4f\x63\x5b\x98\x2c\x32\x49\x47\xa9\x48\x7c\x82\xef\xcc\x37\x2d\xc9\xd2\xc1\x6e\xbf\xdc\x70\x2b\xd2\x91\x35\x5c\x0b\xee\xb2\xaa\x91\x53\xe5\xcc\x84\xc5\xa3\x14\x06\x61\xeb\x79\x17\x72\xa2\x38\xa3\x8f\x6b\x4e\x0d\xe0\x00\x00\x60\x3d\x02\xcd\x15\x87\x21\xf1\x8e\x64\x9f\x06\x2a\x79\xb8\x86\xe8\x1e\x49\x0b\xf0\xb5\xa2\xbf\x40\x41\x11\xfa\xab\xe7\xda\xdc\x41\x87\x69\x51\x58\xd0\x66\x31\x84\x9f\xe2\xbb\xf0\x8d\xc7\x6c\xa5\xe3\x28\x21\xcc\xec\xd7\x16\x5a\x51\xf6\xc1\x3f\xfb\x8c\xfd\x63\x92\xc2\xbb\x6b\x46\x0d\xef\x69\x55\xb2\xbe\x8a\x27\xc1\xe1\xf5\x9e\xaa\x11\x4d\xd2\x32\x23\x79\x41\xa7\x0a\x02\x26\x19\x16\xec\x4f\x69\x59\xf3\x75\xe0\x41\xeb\x17\x20\xaf\xa2\xbe\xc8\xaf\x77\x4b\xde\x47\x70\x86\x5d\x07\xd6\x44\xf4\x29\x3b\x4e\x15\xe4\x4c\x6b\xc5\x67\x12\x9b\x50\x0e\x4e\x84\xb0\x3f\x52\x9e\xe1\x3f\x72\x3b\xcf\xc4\xe4\xb9\x9b\x10\xcc\x90\x98\xfa\xc5\x73\xb5\xb1\xcd\x51\xcb\x0c\x66\x98\xf8\x25\xe4\xa6\x90\x41\xe1\x6b\x4f\xc6\x1b\xa5\xeb\x83\x74\x1d\xfd\x72\xfc\xe3\x9d\xda\xf9\xad\xc4\xb5\x8e\xd7\xe8\x45\x99\x35\x7b\xb0\xae\xb4\x51\x2f\xa6\xd4\x27\x8a\x44\xd9\xd9\xac\xf2\x13\x87\xa6\x70\xe1\xd3\x09\xbc\x1f\xd4\xef\xf7\xf6\x7c\x75\xe9\x42\x03\xfe\x84\xb6\x53\x3a\xb1\x59\x11\x59\x11\xbb\x44\xe5\xfd\x88\x6e\x76\x72\x90\xc5\xea\xe6\x3e\x03\x4d\x93\x30\x2e\x07\xdc\x84\x72\x34\x62\x5f\x19\xd8\xdb\x53\x3c\xa9\x5d\x0d\x4a\x46\xf5\xb6\xfa\x36\x34\x65\x6e\xa9\xe7\x8a\xdd\x12\x3c\x17\xc7\xe5\x75\x08\xd0\xeb\x2d\x3b\xd1\xc1\xee\x20\x4d\x8c\xf3\xbf\x14\x2d\x0c\x05\xa3\x7a\xaf\xb1\x88\xbe\xd2\x8d\x4d\x51\x44\xa1\xed\x78\x69\xec\x9f\x29\x0c\xe6\xcf\xb4\x81\x5a\x6a\xb2\xc1\x97\x79\x36\x22\x95\xbb\x3d\xd5\x11\xc9\x2e\xc5\xa9\x3c\xd5\x28\xb7\x7c\xf9\xcb\xdd\xf5\x91\x09\x57\x67\x7c\x56\xfc\x80\x66\x0b\x86\xf5\x2a\xbd\x59\xa9\x4a\xc9\xcc\x59\x89\xcd\x70\x28\x5c\x7f\xdd\x31\xe2\xeb\x16\x35\xd9\x03\xdd\x6a\xb1\xcb\x76\x8c\x55\xf3\xc8\xa6\x5a\x42\x8f\x28\x5d\x17\x1e\xf1\xe7\xbc\x6a\xf6\x79\x6a\x3c\x21\xcf\xd9\x8d\xfa\x2a\x3a\xde\x48\x61\x71\x32\x71\xe3\x09\x53\x79\x2b\x50\x46\x81\xff\x37\x6a\x3e\x9c\xd6\xd1\xb9\x8c\xb7\x77\x5d\x19\x91\xde\x9c\xaa\x0a\xce\x05\xdd\xb7\x82\x41\x08\xf6\xaf\x27\xb1\xff\x61\xdb\x3f\x46\x6d\x2f\xfc\xa9\x9f\x07\x2a\xb0\xf8\x02\xd7\x5e\xf0\x63\x57\xa7\xaa\x98\xc4\x3a\xf1\x88\x54\xae\x21\xaf\xc2\x60\xcf\xa1\x29\x21\xbe\x87\x3b\x77\x8e\x2a\x86\xc9\xd2\xc2\xe6\xc5\x0c\xfd\x39\x87\xd4\x73\x82\x0b\x37\xe8\x69\xb0\xde\xde\xd6\xb5\x8d\x61\x66\x8a\x32\x56\xa5\x74\xd7\xda\xf3\x70\xb4\xb6\x6a\xc5\xc8\xac\x59\x58\x33\x39\x52\x98\xab\x92\xdf\xc4\x00\x63\x62\xdd\x51\x36\x95\xdb\x2a\x02\xc9\xa2\xe1\xa8\xc8\x9f\x50\xbc\xfd\x47\x68\xb9\x83\x14\xf7\xdf\x82\xcb\xc3\xc7\x0f\x7a\xc3\x4a\x59\x40\x5e\xfe\x03\x1a\x7e\x87\xd0\xf6\xbf\x81\xf7\xcd\xf8\x32\x7a\x76\xf4\x4d\x66\x48\x29\x1f\x07\xd9\x1d\xaa\x91\x20\x8b\x3d\x81\x60\x0b\x8d\x9e\x22\x50\xce\xc7\x0f\x5b\x31\x93\x49\x9a\x15\x23\x6b\x90\x79\x6e\x13\x6a\xf6\xc0\xf6\xfd\x36\x3c\x4e\x9e\x86\x91\x89\xa3\x7c\xdc\xf1\x35\x0a\x18\xe8\x4b\xa0\xe9\xe1\x33\x10\xa3\xcf\xd3\x0c\x3b\x02\x4e\xa9\xef\x69\xd3\xaa\xef\xa9\x22\xc6\x6a\x94\x0c\xf2\x59\x0f\xb6\xfd\x1e\x66\x8c\x34\x14\xd4\x5c\xda\x52\x80\x8e\xf3\x8a\xda\x6d\xc2\x55\xd9\x7d\x18\xf2\x55\x83\x7f\x29\x05\xb8\xb8\x20\xf5\x33\x51\x1c\xf1\x2d\x8d\x3d\x9b\x8a\x0c\xfe\x20\x50\xcc\x95\xbb\x5a\xc3\xf9\x8c\x6a\x6c\x7e\x34\xf5\xe1\xce\x0b\xff\x84\x72\x04\x84\xf7\x67\xa7\x8a\x74\xbd\xa5\x10\xec\xa3\x32\x19\xb2\x84\xa6\x08\xb3\x76\x1c\xcf\x7e\x4b\x73\x96\xb2\x74\x92\xe6\x26\xce\xe7\x94\x04\x6d\x07\x85\x55\x94\x95\x3f\x52\x6c\x4b\xd8\x26\xe0\xb3\xd9\x54\x88\xa3\xb9\xe0\x39\x1e\x23\x9b\xac\x45\x59\x9a\x20\x07\x9e\xf1\x7c\xc6\x8f\x14\x07\xe9\x4d\x1c\x30\x08\x36\xbe\xef\x51\x53\x70\xe3\x99\x51\x2f\xe5\x89\x9e\xc7\xa4\xdc\x53\x8c\xd5\x47\x36\x7d\x3d\x61\x3d\x4a\xf2\xd9\xce\xcb\x07\xb8\x6e\xbb\xa5\x7c\xa6\x50\xb9\x91\x92\x7e\x15\x5a\xb3\xd2\x80\xda\xf4\x27\x51\xb8\x6a\xb3\x1c\x1a\xfc\xc2\x71\xa8\x55\x31\x1c\x65\xfd\xbc\xb2\xaa\x26\x00\x70\x94\x26\x8f\x7a\xe7\x8e\x53\xd0\xe4\x75\xbf\xe7\xd2\xd4\x2b\x75\x94\xa4\xf2\xb1\x43\xf7\x1b\x08\x9e\x59\x52\xc2\x63\x39\x6f\x04\xc4\x58\x6a\xdb\x58\x5d\x92\xf2\x56\xdb\x24\x23\xe0\x82\xe7\x7d\x81\x0e\xc0\x37\xe4\xa1\x0a\x23\x8f\x29\x2e\x80\xf9\x9d\x2b\x73\xe1\x50\x37\x5f\xb7\xa6\x20\x71\xa5\x8e\x3f\xab\xce\x2a\xbd\xd3\xba\x0b\x92\x0d\x8b\xa7\xb0\x1f\xe3\x04\xf9\x07\xa5\x08\xf1\x5d\xda\xd2\x24\x8a\xa7\x2f\x2d\xfa\xc1\xb4\x1f\x09\x3e\xa5\x1a\x32\xb4\xf4\x1e\x4e\x3d\xd6\xe9\x02\xbe\x2a\x87\x3e\x81\x52\xfc\x3b\x81\x23\x07\x49\xe2\x55\xda\xb5\x30\xe5\x99\x39\x25\x2d\xae\x6a\x64\x70\x0d\x06\x26\x0b\x8e\x6a\xa3\x83\xab\x98\x7a\xe2\x2b\xd0\x04\x3f\x2f\x74\xd3\x32\xcb\x3b\x8a\x03\xfc\x2d\x45\x39\xf8\x16\xaa\x18\x38\x59\xa3\xb4\xb0\xe1\x28\x49\xe3\x74\xb8\x01\xfc\x1b\xca\x8a\xa7\x74\x26\xb0\x55\xd3\xa5\x68\x05\xf7\x4f\x32\x3b\x8e\x6c\xc6\x5d\x04\x5d\x4e\xe6\xeb\xc0\x77\x1d\x05\xc3\xa5\xd0\x58\xdf\xab\xe1\xb6\x3c\xb4\xe0\x96\x8b\x31\x8a\x2a\x7f\x1a\xc6\x56\x49\x31\xff\xdd\x54\x29\x9a\xff\x9d\xca\x86\xcc\x64\x12\x1b\xea\x4d\x55\x43\x8e\x97\x71\x33\xf0\x50\xf9\x9b\xba\x92\x97\x66\xab\xca\x30\xec\xc6\xb4\x86\xdf\x15\x18\x5c\x91\xae\x27\xb3\xd5\x3b\xe3\x55\xa2\xdd\x3c\xb4\xf4\xd9\x87\x1a\x7d\xf7\xb0\x35\xee\x89\x92\x81\x7d\x1d\x87\xa8\x08\xdd\x62\x2e\x02\xba\x70\x52\xc9\x33\x9f\xd1\x54\x8c\x47\x7a\x6d\x7e\xc9\x2b\x85\xcd\xd6\x4d\x06\x50\x0f\x43\x17\x15\xc8\x55\x8b\x1c\xae\xd8\xa4\x1c\x66\xd6\x82\x4c\xcc\x72\x93\xf4\xb3\x22\x3d\xd9\x52\x4f\x1a\x64\x66\x9c\x73\x0f\x1f\x13\x80\x55\xff\xc5\x43\xbe\xe3\x88\xc9\x27\x34\x60\xec\x9c\xa2\x68\xda\xd7\x27\xb1\x89\x92\x7c\x4f\xc7\x19\x6e\xfd\x3d\xfe\x08\x36\x8d\xeb\x81\x22\xf4\xbc\x37\xd5\x04\x77\x7c\xb0\xa0\x48\xab\xcd\x0f\x3b\xd3\x31\x6c\x40\xc0\xa5\xdf\x55\x2d\x9e\xcc\x86\x69\x36\x10\x57\x29\xa7\x3d\xa2\xd0\x82\xfe\xd5\xf7\x4d\x8c\xdd\x1d\x11\xc3\x9f\xd0\x8f\x39\xeb\x8e\xea\x2b\x09\x24\xb0\x05\x3c\x46\x6e\x08\x8a\x96\x8d\x52\xa7\x48\x30\x3b\x27\xa1\x22\xcd\xec\x63\xb4\x71\xe0\x48\x64\xa0\x89\xd4\x54\xe9\x29\xb0\x42\x1e\xd0\x04\x45\xc0\x72\x06\x67\xa2\xf8\xc8\x55\x23\x82\x4d\x1f\xca\x69\xc8\x2b\x81\x5f\xa1\x09\xf9\xde\x17\xa0\xf0\xe1\x0a\x4d\x6e\x43\x66\x51\x02\x81\x1d\xb5\x4d\xc8\x74\xcd\x14\x6c\x67\xed\xea\xf9\x4b\x4b\x2e\xaa\xab\x06\x9d\x59\x6f\x3e\x55\x24\x39\xce\x14\xec\x0c\x24\x4e\x77\x95\x84\x3c\x29\xec\x6c\x3f\x5e\x33\x5f\x33\xeb\xab\x75\xe2\x8f\x87\x27\x9e\x57\xa2\x1a\x59\xda\x2f\xf3\x82\xf4\xfe\x95\x98\xe0\x8b\x3c\xb0\x37\x94\x87\xee\x2d\x15\xe8\x36\x41\x11\x87\xe7\x3d\x48\xa7\x1a\x3e\x70\xb4\xcf\x60\xda\xf1\x8d\xb6\xc6\x78\x7d\x92\x66\xc5\x1e\xe5\x67\x71\x09\x93\x52\xf8\x7e\x98\x88\x32\x0e\x4a\x00\x1d\x26\xdc\xe8\xcb\x3c\xa4\xec\x48\x0a\x95\xd5\xeb\x94\xca\x67\x53\x33\xb0\x9b\x98\x9c\x09\xce\x4e\xbb\x71\x69\xc9\xf5\xa7\x65\xb7\x5c\x4f\xb3\x78\xb0\x1e\x0d\xec\xac\xc2\xc9\xce\xf4\x34\xaf\xe0\xb2\x22\xd8\x9e\xa3\xb3\x48\xdc\x0c\x7c\x88\xb4\x12\x25\x26\x09\x23\x9b\xf1\x52\x76\xfa\x65\x52\xd4\xb8\x06\x29\x02\x3c\x3b\x30\x8b\x5c\x33\xde\xb5\xe9\x3a\x14\xa6\x4c\x7c\xca\xa0\x75\x62\xa4\xd6\xbd\x33\x65\x78\xf5\xd5\x6e\x31\x8a\xd0\x50\xc1\xd1\xcf\x32\xd5\x7c\xd3\x52\xe0\x3b\xd8\x8d\x92\x3c\xca\x5d\x82\x8c\xc0\xe7\x63\x84\xc3\x7c\xa3\x90\x3b\x2b\x69\x66\xf3\x42\x43\x50\xeb\x1e\x9d\x2d\x7a\xd7\xe2\x05\xae\x70\xda\xca\x5e\xe7\x44\xcb\x1a\x39\xd8\xb5\xc9\xc0\x0e\x66\xab\xb1\x05\x8d\x8b\x8d\x19\x11\x0a\xce\xf5\x14\x9b\xf2\xd4\x54\xd7\x02\x1e\xf3\x3d\x54\x16\xc1\x92\x2d\x4b\x11\x0a\xef\xba\xe8\xb1\x5f\x66\x03\x2b\xc6\xeb\x78\x58\x76\x48\x14\x45\xf2\x8e\xa2\xf9\x7a\x0d\xd2\xe3\x6d\x41\xd1\x7a\x54\x8c\x06\x99\x59\xe7\x6d\x4a\x1c\xcf\x34\x71\x45\x07\x45\x26\xdf\xd8\xa3\xca\x64\x5b\x3c\xe5\xd9\x50\x8e\x3e\x58\xce\x94\x6a\x4b\x40\x9e\xf7\xa3\x69\xc3\xb1\x5b\x48\x52\x0a\x0a\xf2\x27\x8d\x89\xf1\xf2\xc2\xa1\xee\xc8\x0c\x34\xe7\xfd\xb2\x66\x56\x5c\x6e\xe3\x35\x65\xe1\x6f\xfe\xcb\x7f\xf5\x1b\xf4\x30\xaa\x35\x2c\xde\x1a\x77\x5b\x39\x42\x54\x0e\x61\xb0\x9a\xb3\x62\x59\x76\xb6\x2c\x6d\xf3\x63\x60\xed\xc4\xb2\x87\x20\x76\xdd\x6d\x0d\x53\xde\x6e\x9d\xb4\x62\x83\xa5\x9f\x68\x1a\x78\x04\xd6\xb4\x0d\x4a\x15\xca\x37\x93\x82\x6e\xb5\x7d\x48\xa1\xd7\x97\x3f\xc6\x51\x62\x49\x4d\xcb\x29\x8e\xb1\xce\x05\xdf\x4c\xbf\x24\x79\x4b\x6c\xc3\x22\x4b\x87\x86\x7a\x8e\x4e\xe4\x57\x84\x87\x3d\x50\xf9\xbd\x60\x07\x8c\xf6\xc0\x4b\x07\xbb\x0b\x87\x76\xfb\xdd\xe8\x9e\xda\x8d\xee\xe1\xcd\x88\xcf\x8a\x0a\x6a\x7f\x41\xdf\x18\x63\xf9\x36\xcd\x47\xbe\x6e\x3b\x68\x0e\x76\x47\x69\x3c\xc0\x52\xc5\xa0\xbc\x3f\x55\xa3\xf5\x7e\x9b\x23\xed\xff\x3f\xba\xe3\xf3\x2e\xac\x8c\x23\x93\xa0\xf7\x25\x6d\x79\x58\xcc\x21\xae\x3f\xa6\x2a\xe7\xdf\x56\x41\xc0\xc8\xc4\x31\xf2\x46\xd4\x89\x1e\xeb\x79\x34\xf9\x19\x8e\x3f\x14\x6e\x67\xc9\x1f\xca\x2e\x88\xd2\x41\x96\x7d\x3d\x1c\x99\x64\x68\xf3\x3d\xaa\x87\x08\xbd\x62\x9c\x8d\x97\x14\xc5\x9f\xa5\xd3\x85\x0a\x54\x2d\x2b\x1c\x2a\xbb\x48\xc3\x9c\x0f\xd3\x40\x71\xd0\xbc\x8e\x5b\x9e\x96\xd9\x6e\x2f\xe1\x78\x4e\x19\xb5\x7f\x91\xb6\x72\xc4\x1b\x73\xc8\xd4\x91\xc2\x7f\x47\xc9\xc0\x70\xa9\x00\xef\xf1\x86\x83\xd2\x0e\x6c\xbc\x26\xe3\xcd\x78\x41\x7c\xbe\x80\x07\x95\x3a\xa1\x8d\xc6\x16\x06\xc5\xaa\x5a\xef\x04\x72\x74\xc0\x6f\x22\x0f\x33\x44\xa9\xe7\x04\x0d\x03\x5f\xab\xd7\xb1\x6e\x86\x76\xb7\xe2\xf7\xef\xae\x46\x62\xfb\x96\x12\xac\x7f\x1a\x05\x37\x2e\x40\x05\x3e\xcb\x45\x1e\x86\xdc\xf3\x64\x63\x91\x7e\xf5\xe5\x6e\x18\x47\x13\xda\x0f\x68\x0b\x11\x61\x92\x6a\x48\x44\xa1\xfc\x59\x15\x47\x0e\xcb\xd8\x14\x69\x96\xcf\x55\x7f\x15\x59\x0a\xe3\x75\x1d\x46\xca\x19\x69\x7d\x03\x13\x19\xcb\xe5\x58\xa0\x81\xa0\x0a\xe2\x31\xb0\x93\x88\x0c\x83\xa9\x5c\xe7\xa4\x5f\xdd\x93\x5d\x74\xe9\xc6\xc0\x64\xab\x64\x7c\xcb\x50\xd9\xa9\x8a\x66\xcf\x2b\x5a\xfe\xf3\xf4\xa6\x11\x06\xcc\xa2\x7a\x8a\x9b\x9b\x35\x45\x4f\x9b\x47\x03\x9b\x84\x80\x42\x28\x4a\xd6\x8b\x4a\x52\x90\x7f\xd6\x66\x2b\x69\x36\x9e\x55\xef\x9f\x04\xf2\xb7\xb9\x7c\x8a\xe5\x7d\x3b\xf0\x14\x95\x47\x36\x9f\x51\x5a\x2c\x31\xb3\xd0\xaa\x41\x45\x00\x79\x9b\xe2\x20\xbe\x56\x9c\xcf\x24\xb1\x61\x11\x85\x65\xa1\xc4\xdf\x3f\xd2\xe2\xef\x1f\x35\xb5\xfb\x17\xba\xab\x16\x0f\xc1\xa2\xf4\x4a\xee\xf0\x56\x4b\x07\xed\xc0\xc1\x6e\x91\x95\xb9\x2e\x0a\x5c\xac\x43\xa8\x9f\xf6\x01\x2d\x61\xb7\x98\x78\x20\x74\x47\xd5\xa1\xbb\xac\xaa\x98\x61\x9a\x17\x6c\x0d\xe1\x84\xdf\xaa\xd1\x14\x66\x6b\xf5\xad\x70\x24\xc2\x99\x02\x6f\xf1\x81\x7a\x27\x51\x32\x88\x32\x1b\x16\xf1\x06\x72\x54\x41\xb5\x79\x17\x9c\x4b\xca\xcd\x7e\x30\xeb\x9b\x4f\x5c\x87\x91\xa2\x70\xc7\x7b\xc0\xe0\x30\xc4\x92\xfa\x41\x23\x20\xa8\x0e\xc3\xd5\x28\x5c\xed\x9b\x70\x95\x4f\x1d\x51\x56\xf2\x03\x7a\xc9\x45\xf8\x83\x28\x9f\xc4\x66\x83\x43\x11\x89\x17\xd4\x76\xcd\x2e\x94\xd8\x96\x66\x7b\x0a\x0f\x76\x5e\x11\xfc\x92\x72\x6c\xb3\xb4\xcc\x09\x53\x84\x0a\xe3\x51\xbc\x01\x8e\x6e\xa6\x3e\x57\xbd\x83\x8d\x06\xa7\xf9\x71\x3c\xa6\xb8\xd3\x4a\x3e\xf5\x5a\x39\xee\xa7\xb3\x4a\x3f\x97\x05\x61\x05\xa8\xed\x71\xbd\x88\x67\xb1\x1b\xec\x6e\x58\x1b\xbd\xfa\x6a\x37\x33\x51\xdc\x8f\x56\x05\xc9\xde\x66\xec\xe5\x97\x23\xcb\x79\xb1\x87\x22\xc6\x41\xeb\x64\x01\xaa\xf1\xab\xa9\x2a\xf9\xdf\x08\xb4\x98\xf5\x5a\x94\x0c\xa9\x98\x2a\x0c\x22\x9a\x30\x4e\xd7\x79\x59\x9a\x2d\xe8\xce\x20\xda\x3b\x1b\x78\xf3\x9e\xdb\xaa\x13\xf7\x79\xd8\x05\x3b\x63\x9d\x6a\x34\x14\x45\xe5\x60\x23\x89\x08\x47\x26\x8b\xd3\xa2\x40\xf1\x44\x3c\x48\x95\x0a\xcc\xa5\x46\xb1\x7f\xff\x52\x15\x76\x0c\xa8\x33\x8a\xfa\xc3\xac\xc6\x9e\xb0\x14\x8e\x1c\x25\x7e\xd8\x4f\x2a\x5a\x65\x98\x26\xa1\x8d\x00\xb6\x16\xed\x31\x5d\x88\xf4\x1b\x47\x98\xd9\x41\x54\x6d\xb6\x30\xd1\x62\x68\xda\x74\xd7\xaf\x71\xdb\xf4\x02\x66\x83\x08\xa0\xd3\xf0\xa3\x82\x8b\xa3\x55\x89\xb6\x8b\x8e\xdc\x51\x3a\xfb\x45\xdb\xb6\xfa\x58\x1c\x8e\x9f\xc3\x99\x2b\xfa\xe9\x4a\x8e\xf2\x8e\x62\x2e\x14\x91\x45\xb9\x02\xa7\xd0\xaf\x68\x61\xb2\x48\x49\xbd\x5f\xe3\x37\x81\x2d\xaa\x6a\x3a\xc7\x87\x25\x5f\x1f\xa2\x2f\x2f\xd2\x82\x3b\x17\xe6\xe2\x22\x50\xd1\x51\xf5\x99\x9d\xba\xa7\x1e\x7d\x12\xdf\x04\x8f\x4a\xb0\x76\xe8\xa5\x7f\xaa\xf8\x0f\x30\xa0\x40\xbf\x94\xb5\x99\x85\x83\xa2\x42\xf0\x1b\x1a\x88\x71\x2f\xe8\xbc\x7c\xc0\x91\x84\xd5\xa0\x6d\x83\xdf\xc8\x36\x17\xd3\xce\xef\xfd\xae\x74\xfc\x89\xaf\x83\x89\xf0\x97\x9c\x19\x88\x17\x08\x1d\xc7\xf8\x63\x6f\x05\x60\x5b\x30\x5d\x25\xe8\x7c\xf9\xcb\x4e\x0f\xa5\xf3\xd5\x97\x3d\xd3\x74\xdf\x3e\xce\x7d\x6e\x92\x7d\xc1\x36\x5b\xc1\xe1\x6d\xdf\x02\x70\x01\x7f\xf2\xc6\x54\x41\xe7\x9f\xde\xa4\x57\x4f\xe7\xfd\xd3\x4f\x41\xce\x1b\xeb\xe6\x03\x25\xf3\x74\x0c\x58\x6d\x71\x13\xf3\x4a\x7f\xef\x01\x93\x8d\x64\xfd\x7f\xa7\xd5\x85\x4f\xfc\xab\xa0\x6e\x29\x2d\x12\x38\xd0\x89\x01\x34\xfc\x1b\x81\xaf\x68\x0d\x32\x9b\x0f\x12\x9b\x21\xa2\x69\xd3\xfc\x97\x0d\x2b\x2e\xc3\xd5\x8d\x59\x0f\x2a\xbf\x83\xc9\x80\x9e\xc8\xff\xaa\xf8\xae\xf7\xf0\xd0\x38\xfb\xbe\xab\xd4\x82\xc6\x51\x0c\xc9\x14\xa1\x84\xfa\xb3\xf7\x62\xa3\xae\xb0\xb4\xd4\xcd\x4a\x66\xe7\x88\x28\x0f\x97\x72\xf9\x46\x91\x56\xc7\x26\x5c\xb5\xc9\x1b\x11\xf4\x88\x99\x43\xaa\x70\x44\x0f\xc9\xc2\x04\xad\xfb\xb3\xd8\xf3\x38\xba\xc2\x5f\xe4\x80\xb6\xad\x31\x49\x22\x88\xd5\xf8\x54\x73\x43\x44\xdb\x7c\xf3\xe4\x62\x0b\x3d\xea\x40\x77\x92\xa6\x71\x47\x9d\x37\x68\x65\xca\xf4\xdf\xb9\x85\xef\x5f\x02\x7b\x76\x85\xfb\x71\x6e\x33\xa5\xef\x26\x3d\xab\xe7\xeb\x79\x4e\x95\x77\x2e\x2d\x1d\xd8\x43\x0f\xe3\x66\xa6\xe7\x8d\x61\x31\x60\x31\xb1\x93\x8d\xe0\x83\x6b\xec\x46\xac\x00\xe9\x9a\x2a\x6b\x9c\x2b\x6d\x19\x65\x5e\x98\x95\x15\x3e\x67\xa4\xa5\xa1\xda\x1b\x5a\x70\x26\x8e\x86\xa3\x22\xde\x78\x4c\x49\xf5\x30\x24\x4c\xc4\xdf\xa9\xaa\xcf\x09\x77\xe0\xed\x38\x81\x98\x13\x35\x20\xd5\x3c\xbc\xc3\x6b\xd2\xe5\xe8\xcb\x82\xb4\xb8\x11\x78\xa4\x5e\x87\x1a\x37\x22\x56\xa0\x93\xd2\x46\xe2\xba\x6f\x5f\x37\x35\xab\x35\xa7\x4a\x1a\x1b\xb1\xaa\xf4\x0d\xc4\x03\xfb\xa0\x0b\x51\x6b\x5b\x08\x29\x54\x56\x48\x62\x87\x59\xda\xf1\x10\x78\x1e\x69\x01\x56\xb7\x00\x14\xa2\x81\x35\xac\x0f\xe7\x28\xe0\x5e\x01\x11\x1e\x23\x68\x02\x1e\x6f\x14\x1e\x96\xe7\xbb\x69\xc2\x26\xb8\xae\x7d\xe5\x46\xe1\x73\x3d\x5f\x5f\xdc\xb5\xd9\x62\x2b\xf1\x6b\xdd\x74\x65\x85\x78\xee\xa2\x23\x53\xfd\xb2\x08\xcc\x68\x13\xc6\xf1\x24\x8a\x59\x60\x5d\xc8\xed\x9a\xe9\xae\xb8\xf3\xff\xfc\x0f\x7e\xe7\xb7\x97\x9f\xf6\x64\xa1\x8f\xf0\xbe\x11\x91\xfd\x09\x4f\x35\x31\x8e\xa3\x0d\x87\xcd\x95\x02\xbf\x7b\xfc\x18\x6f\xdc\x2d\x01\xaf\x16\x33\x4b\xfa\x87\xc8\x43\x6f\xd2\x82\xc2\x41\x7d\x17\x06\x14\xd8\x95\xae\x05\x2a\x0a\x85\x17\x23\xde\x26\xaf\x01\x7c\xc8\x43\xad\x4c\x74\x14\x9b\x2c\x5a\xfc\x67\xb0\xb1\xf2\x8d\xe2\x3c\x7c\xa8\x52\xaa\x68\x3c\xb1\x61\x08\x4e\x80\xb3\xfc\x60\x80\xa0\xf0\x70\x9f\x74\x39\x63\xe1\x31\x7e\x8e\xef\xe8\xe1\x3d\x17\x1b\x4d\xf7\xfd\x4b\xdd\x30\xcd\x26\x69\x66\x38\xcc\x11\xe7\x6e\x95\x52\x34\xa9\x2c\x54\xff\x9e\xd8\x44\x1a\x8e\x35\x1f\x06\x71\x68\x68\xb1\x77\xcc\x53\x7a\xbb\x33\xde\x68\x88\xb1\x80\xe2\xeb\xd4\xb2\x31\xaf\xa7\x59\xb6\x31\xa3\x24\x9e\x59\x14\x13\x25\x3c\x20\x95\x05\xbb\xd0\x52\x0a\x31\x59\x16\xad\x31\x0d\x63\x1b\x55\x98\xed\x5f\x78\x21\x5e\xe3\xb5\x58\xb1\x2f\x5f\xa1\x0d\x01\x8b\xf8\xba\x12\x71\xfc\xa9\xea\xf0\xff\xe7\xbf\xf9\xaf\x3a\xbe\x01\xf2\xb3\x9a\x22\xca\xce\xa1\x5a\x9e\x27\x4a\x65\x36\x10\x9c\x1d\x0e\xf3\xdb\xaa\xcf\xdc\x41\x6c\x25\x64\x55\x0f\x5a\x08\x63\x93\x43\x56\x97\xe3\x29\x0c\x16\xf3\x14\x02\x95\xef\xff\xaa\xce\x60\xf0\x0c\xf7\x30\xcd\x06\x64\xae\x4f\x01\xe8\x9f\xfe\x23\x54\x01\x94\x0f\xb3\x68\x12\x7e\x80\xe5\x23\x62\x47\x2a\xb8\x7f\x48\x19\xbb\xb2\x09\x7c\xd1\x83\xfe\xdc\xde\xb9\xab\xa7\x9a\xab\x73\x9b\x7e\xac\x0e\x99\xd7\xe7\xb0\x93\x4a\x05\x08\x2b\x53\xfc\x1b\xbd\x43\x3a\x5a\x78\xd8\x96\x99\x34\xce\x92\x5a\x35\x6d\x89\xb2\x78\x43\x99\xa3\x1c\xd5\xe6\x28\x47\xd5\x29\x5d\x8c\xaa\x14\x96\xb8\x56\xcb\x42\x5a\xba\x1b\x28\xff\x29\x05\x5f\x3a\xae\xb0\x8d\x61\x9a\xe4\xec\xf9\xf1\x0a\x87\x30\xef\x4e\x7d\x38\xf3\x6e\x5b\x85\x15\x06\x0f\x24\x96\xcf\x61\x95\x4a\x4d\x3e\x98\x7e\xa9\xe1\x60\xcf\x08\xcc\xc7\x95\xc4\x25\x3f\x08\xf6\xb2\x63\x74\xdc\xb8\xb0\xcf\xe9\x0c\x6e\x63\x02\x38\x27\x10\xaf\xae\x0a\x05\x45\xac\xd7\x9b\x14\x75\xe2\xfb\x02\xb6\x01\x90\xf4\x71\x6d\x8d\x75\x07\x27\xa2\x33\xe3\x72\x6f\xf2\x8f\xb5\xb0\xa3\x99\xd8\x59\xda\xe3\xb0\x95\xdd\xa5\x4f\xe1\x6b\x1c\xfa\x08\x6e\x99\x10\xc9\x37\x6d\xc7\x47\x15\x6f\xcc\xd2\xb7\x47\x10\x77\x72\xea\x81\x80\x9d\x9e\xd2\x0b\xb8\x3f\xf5\xa0\xf8\xef\x28\x25\x9b\xcc\x9a\x01\x55\xee\xb8\xbb\x38\xf5\x34\x96\x1f\xe8\x54\xe1\x32\x26\xb2\xf4\x20\xab\x3f\x86\x4a\xe1\xae\x5e\x8d\xf9\xfd\x98\x6b\x1e\x0c\x91\x67\x8b\xde\x48\xf5\xbd\x78\xc0\x94\xe5\xf8\x05\x9a\x2f\xae\xcf\xe8\xf7\xd4\xa7\x1b\xe6\xa0\x4b\x4b\xdd\x81\x4d\x22\x3e\xc6\xc4\x89\x51\x79\x9e\x5f\x6e\xd4\x68\x16\x17\xbb\xfd\x68\xa0\x34\x9e\x2e\x53\x98\x2d\xfd\x90\xa7\x35\x16\x3d\x2f\x2c\x93\xdf\x58\x71\x44\xd9\x42\x01\xe9\x22\x55\x0e\x7f\x58\xae\x9b\xbc\xb0\x54\x1a\xc3\x4a\x81\x4b\xac\x5b\xec\x55\xf6\x82\xf0\x1e\x0c\x6c\xfe\x21\x4a\x44\x44\x23\xb0\x25\x01\x5b\x21\x73\xf3\x28\xb7\xf6\x33\x4d\xbe\x7d\x89\x32\x8f\x86\x09\xed\x65\x4e\x9a\x72\xbf\x04\x9f\x47\x09\xd7\xc1\xd7\x81\xc7\xed\x34\x7d\x28\xf7\x2f\x75\xcd\x10\x24\x1e\x74\x23\x21\xa6\xc8\xd7\x6d\x8d\xb4\x21\x51\xf5\xdd\x83\x9f\x09\xd4\x7e\xd1\x24\x08\x1f\x78\xe9\x60\x77\x25\xb3\x5f\x2f\xc5\x2e\x11\x13\x01\xcd\x31\xbe\x6e\x65\x91\xda\xac\x88\x56\x22\x39\xdb\x1c\xda\xd2\x25\xd9\xe7\xdb\xce\xa6\x32\x19\x59\x93\xc1\x40\x0d\x71\xe6\x2c\x65\x4e\x88\xc8\x76\x51\x08\x82\x49\xf6\x6e\x8b\x56\xdf\x2b\xdd\x91\x8d\x27\x34\xf2\xcc\x69\x0c\x7c\x04\x71\x5e\x1d\x23\x71\x9a\xae\xe6\x44\x90\xd3\x43\x8c\xd5\xb6\x1d\x28\x95\x7b\x4e\x02\x44\x09\x52\xb9\x61\x6d\x01\x62\xc8\x64\x35\x84\x3d\x62\x20\x54\xbd\x47\x77\xed\x84\x82\xdf\x53\x2a\x4e\xb1\x1d\x9a\x90\x71\x32\x80\x9d\x5c\xd1\xe9\xc6\x1f\x29\xbb\xfd\xcb\x8d\xd1\xdd\xb7\xaf\x1b\x8e\xb2\x28\x2f\x22\xc9\xcf\x04\x83\x51\xf3\xff\xf4\x00\xb8\x75\x6b\xc8\x04\xdd\xf3\xd7\x50\x90\x14\x32\x5b\x93\xe8\xd5\x9d\x94\xfd\x58\xb1\xb0\xc0\xa2\x82\x68\x06\x5f\xab\x89\x1c\xa6\xa1\xe9\xf8\xd7\x74\x72\x5a\xab\x2a\x38\x2d\x47\x96\xb4\xcf\xb5\xab\x23\xfc\x74\xa4\xeb\x4d\xe3\x81\xef\xbf\xa5\x93\x95\x53\xad\x1e\xbe\xe1\xc8\x8e\xa3\xd0\xc4\x5c\x6b\x65\xc7\x74\x3c\x9a\xd8\xa7\x37\x27\xc9\x81\xee\x30\x36\x98\x61\x78\x92\xbb\x88\x14\xa4\x25\xef\x71\x75\x27\xa6\x1e\x18\x47\xba\x43\x39\x48\xa8\xe2\x68\xd8\x51\x56\x87\x0e\xb6\x17\x96\x05\x49\xed\x38\x55\xa1\xef\x2b\x55\xdf\xef\xd7\xcd\x34\xac\x7d\x8c\x46\x0a\xe5\x4e\x00\xbe\x81\xe5\x62\xc0\x0e\x0e\xc2\xfb\x1c\xba\x63\x9f\xde\x52\xd2\x4a\xd7\xa9\x18\x22\xc7\x87\x82\x7e\x9f\x02\x65\x93\x0d\x77\x55\x73\x8d\x61\x95\x52\xe7\xea\x38\xab\xd7\x6d\x85\x9d\x30\xe9\x86\x19\x83\x69\x28\xba\x0a\x1d\xc7\xe7\xfd\xa8\xf1\x2e\xaa\x2d\x22\xb6\xc3\x88\x1b\x97\x1e\x2e\x8b\xad\x48\xa2\xb8\xcf\xab\x43\x34\x5e\xb5\xd0\x10\x47\xa0\xf3\x26\xb5\x52\xf9\x5a\x85\x95\x7d\x5b\x3c\x5a\x8d\x24\x8e\xab\xdb\x78\xb5\x38\xc6\x19\x25\x8c\xa3\x68\xd7\xa6\x02\x05\x6e\x29\xca\xd7\x5d\x95\xa8\x1c\xa3\x2a\x04\xe2\x6a\xb6\xc1\x14\xed\xd1\x6a\x7c\xb8\x61\x46\x16\xef\xa2\x3f\xa8\x64\xd8\xa3\xf4\xf5\x68\xc0\x84\x38\x6c\xae\x10\x6f\x42\xca\x06\x19\x47\x94\xec\xee\x6b\x95\x9c\x34\x8e\xcd\x24\xb7\xf0\xc5\x44\x39\xec\x7d\x0d\xf8\x7c\x3f\xf8\x42\xb3\x81\x5a\xbd\xed\x3d\xf4\x05\x31\x6d\x3e\x51\xda\x99\x1f\x61\x91\x23\x2a\xfa\x1f\xe8\x08\x46\xb6\xf4\x4b\x0e\x23\xb5\xaa\x1d\x23\x2e\x31\x33\xd8\x5a\x51\xb1\x8a\xf3\x68\x32\x91\x20\x9c\x47\x55\xe9\xaa\x3c\xd0\xa8\xf7\xa3\x2d\x2b\xf0\x40\x37\x2f\x4c\x51\xed\x43\xa1\xd4\x1b\xf1\xae\x59\xae\x8c\x6f\x36\xd5\x07\x9a\x78\x2c\xea\x7e\x78\x9c\x93\x4a\xf7\xf8\x86\x96\xd5\xfb\xb4\x51\x2e\xf8\x4a\x77\xdd\xf6\xc1\xb7\xc0\x4c\xe4\x98\x1c\xfd\xb1\xdb\x28\x1f\xa2\xaa\x7c\x4c\xb1\xa6\xc6\x26\x4a\x0a\x66\xc4\xfa\x19\x7d\x4c\xcd\xe8\x63\x6a\xc6\x85\x62\x0c\x83\xf0\xf2\x2d\x1e\x54\xe9\xcf\xaa\xaa\x38\xbe\x39\x43\x81\x49\xea\x48\x04\x9d\x9e\x50\x5c\xec\x28\xe9\xa8\x96\xff\x77\x50\x9b\xe3\x9b\xb6\x0a\x4f\x94\xe7\xa5\x65\xef\x14\xf4\xd4\xae\xa9\x7e\xf3\x69\xed\x72\xb1\xad\x8c\x12\x87\xa3\x34\x2f\xfa\x1c\xde\xd3\x2e\x2a\x06\x06\x0a\x89\x74\x4d\x79\x90\x5c\x6a\xfb\xf0\x95\xcc\xda\x37\x18\x79\xa9\xe5\xe0\xf9\xba\x91\x8b\x72\x30\x91\x40\xcb\x59\x1c\xdf\x66\xbc\xab\xdf\x6d\xad\x77\x78\x52\xe9\xc5\xca\x59\x50\xe6\x33\x9d\xaf\x2d\x70\x6c\xfb\xe7\x34\x9b\xf1\x70\xf7\xb1\xbc\xf1\x3a\xef\xe9\x66\x71\x91\x95\xe1\x2a\x8e\x3d\x36\x92\x0a\x34\x65\xe8\x7a\xe3\xc1\x96\x96\xba\x71\x39\xee\xdb\x8c\x3a\x2f\x78\x96\xff\x05\xa7\x0b\x8a\x21\x17\x14\xbc\xe2\xe7\x9a\xd9\x7d\x5c\x99\x09\x9a\x38\x4d\xec\x9c\xd6\xba\xba\xae\x45\x36\x18\x00\x2e\xd2\xce\xea\x15\x9c\xa5\xa7\x42\x95\xbf\xd3\xd3\xa8\xf4\xa1\x8d\x45\x50\xdf\x99\xfb\x2a\x92\xa3\xe7\x1a\x99\x2c\x8d\xa3\xc4\x08\x4b\x09\xab\xfa\x29\xe5\xe9\xfe\xbe\xa6\x34\x3f\xb1\x59\x73\x53\x8a\xa3\x37\x2c\x25\x62\x42\xf1\xa9\xa6\xaa\x50\x7f\xda\xac\x33\x07\xeb\x26\x5b\xa9\xa3\xa6\x2e\xa9\x10\x54\xcb\x1d\xc5\x66\x2d\x65\xb7\x40\x86\x15\xd2\x81\x24\x10\xc3\x36\xa9\xbf\x7e\x5a\x92\x18\xa8\x8b\x8e\x99\xb5\xca\x37\xae\x91\x3a\xb0\x2b\x36\x84\x68\x06\x3d\x1b\xa6\xc8\x11\x2d\xb0\x76\xa4\x8d\xd5\x1a\x25\x2b\xd1\x70\xe4\x61\xc1\x5c\x21\x69\xa8\x04\xe0\xd4\xfb\x43\xd7\xa7\x34\xfd\x01\x91\x61\xe9\xe4\x06\xec\xf6\xdf\x63\x92\xf0\x8d\x5a\x6d\x79\x99\xad\xd9\x28\x8e\x01\x13\xa9\x7e\x06\x89\xe9\xdb\x8a\x4a\x85\x21\xc3\xef\x9e\xf4\xc4\xbb\xcc\x78\x26\x26\x50\xdf\x97\x95\x35\x91\x32\xb4\xdb\x18\x4f\x8a\x74\xcc\x3b\x01\x0b\xb9\x04\x4a\xc4\x04\xd9\x1e\xa6\xd5\x05\x15\x8b\x99\x68\x90\xcf\xf9\xa0\xf3\xbe\x66\x75\x1c\x57\xf6\x2b\xe0\xfb\xc9\x3c\x57\xec\xe2\x63\x4a\x38\x2e\x8c\x6d\xb6\xaa\x6a\xe2\x88\x93\x25\x45\x91\xf9\xd9\x8f\xb2\x62\x34\x30\x1b\x35\x29\xaf\x2d\x25\xe5\xa5\x39\x16\x2b\x69\x66\x43\x93\x17\xa0\x9e\x20\xbc\xbb\x83\x6d\x51\x34\x69\x3a\xce\xd5\xec\x0e\xf0\x52\xfc\x0f\xb5\xa2\xc7\x38\x1d\x2b\x79\x85\x93\xaa\x2e\x75\x52\xfb\x3b\x4d\x8a\x68\x4c\xec\x19\xe7\x0d\x80\xf0\x9c\xaf\x5b\x8a\x53\xcb\x24\xb1\xea\x5e\x12\xe2\x78\x48\x40\xf2\xb5\xab\x38\x13\x97\x4e\x39\x0b\x1f\x57\x9d\x9b\x2b\x81\x22\x9b\x6f\xb9\xfa\x93\x19\xa4\xf1\x64\xd4\xe9\xec\xdb\x27\x4e\x8b\x5a\x11\xfc\xbc\xfb\xd3\x61\x46\xdc\x39\x4f\x53\xa1\x18\xc5\xf9\xfc\x2b\xa7\xb3\xa6\x9d\xf0\xbe\x6e\x31\xb2\x63\xab\x4a\xe1\x1f\xab\x89\xf9\x71\xd0\x34\x74\x3f\xc0\x82\x2e\xb4\xde\x00\x7c\x42\x8c\xf3\x47\x53\x2d\x17\xc4\xb2\x4c\x02\xca\x57\x02\x4e\xd6\x14\xb9\xb6\xd1\xc3\x9a\x16\x4f\xbd\x9d\xcb\x74\x7f\x95\xe8\xd9\x41\x19\x7a\xfa\xa2\x94\x9d\x3a\x4e\xc7\xf9\xb8\xd3\xa7\xcd\x6c\x98\x95\x51\xe1\x04\x72\xb5\xb0\x14\x5f\x6b\xee\x69\xe9\x17\x3f\x2a\xcc\xf7\x95\x42\x2b\x2a\x74\x58\x0e\xe7\x6b\xd1\xf8\x1b\x36\xfb\x1c\x3d\x39\xa2\xf1\xdb\x0a\xd0\x8e\xb9\xec\xf2\x92\xe5\x79\xe9\x09\x7e\x6b\xaa\x1a\x84\xdf\xc2\x2c\x16\x5e\x16\x3d\x96\xf0\xe8\xbd\xd3\xcc\x71\x4c\x69\x61\x72\xb5\x25\xb1\x65\xce\xde\x06\xc8\x4f\x3e\x9c\xaa\x14\xec\x43\x15\xbe\xf5\xb3\x68\x30\xc4\x6b\x76\x2a\x9c\x4a\x4e\xca\x07\xaf\xab\x94\x2c\x26\x0a\x61\x85\xf4\x9d\xaf\x55\x64\x9e\xd8\x38\x4f\x13\x3e\x67\xb0\x39\xb0\x78\x81\x4b\x81\xbd\x42\xc8\xf5\x9d\x75\xbc\x97\x0f\x48\x1d\x0f\x8e\x0b\xce\x73\xf8\xc0\x4b\x07\x75\x87\x45\x12\xd6\x6d\x58\xce\x73\x19\x34\xa8\xd9\xdb\x54\x0b\x16\x70\x0e\xde\xf3\xb1\xeb\xcc\x52\xf5\x0e\xa5\xd2\x87\x88\x11\x80\x02\x38\x8d\x8c\x87\x7f\x45\x6d\xd6\x94\xc9\x42\x8c\x1f\x7b\x8e\xf8\xef\x2a\x11\xcf\xd3\xca\xb0\x0b\x50\x18\x51\xfd\x70\xae\xb2\x36\xca\x06\xc0\x8b\xb8\xf2\xa2\xe3\xa5\x6a\x88\x08\xa0\xdb\xe2\x53\xed\xd2\x42\x33\x89\xac\x78\x11\xa9\x36\xce\x41\x9e\x6d\x57\x95\xd2\xe2\xb6\x03\x51\xbd\x66\xc2\xaf\x97\x82\x2b\x41\x1c\xce\x10\x63\xbe\x69\xac\x2c\xd2\xb0\x18\x44\x6b\xd1\xa0\x64\x64\x32\xba\x64\x0f\xa6\xbe\x7d\xf6\x40\x29\xf5\xe4\xd6\xae\x46\xc9\x70\x6f\xc7\x15\x34\xdf\x9e\x2a\xcb\x21\xd6\x80\x16\x57\x79\x4c\x0b\x71\xff\xf4\x8b\xea\x1a\xc2\x3c\x29\x67\x6b\x74\x63\xe0\x85\x3f\xce\xbb\x02\x63\x5a\x14\xe9\x8c\xae\x70\x74\x9c\x09\xec\x39\xcd\x7b\x79\xd0\x60\x6d\xef\x5b\xd0\x0a\xc0\x8a\xda\x85\xb2\xa6\x14\x5d\x9e\xf3\x6f\x1f\x38\xb4\xea\xa4\x86\x99\x13\x76\xb2\x73\x28\xd8\x20\x08\xb8\xa5\x76\x9d\xd3\x53\xdf\xbe\xbc\x45\x5d\x51\xfe\x05\x85\xc6\x3e\xad\x29\x95\xec\x80\x23\x3c\x8c\x9d\xeb\x79\xff\x92\x22\x78\x08\x3d\x50\x0b\x3f\x34\xea\x6d\xcb\x07\x7e\xad\x5a\xd9\x45\x94\x8f\x3a\x3a\xea\x52\x60\xa7\x4b\x8d\xf7\x4e\x82\x9a\xfd\xcc\xe4\xd1\x9a\xcc\x17\x96\x54\x55\x82\x8d\x9f\x7a\x7f\x81\xcc\x6c\xcc\xf8\x23\x01\x6c\x08\xf1\x8e\xf1\x65\xb1\x13\x2d\xb4\xf3\x6e\x6e\xc7\x51\x62\x32\x6e\xa9\x61\xd2\xf3\x5c\xe6\x1b\x37\x7f\xf3\x71\xe4\xc5\x24\x51\x29\xc3\x5e\x2c\xdd\x12\x7a\x26\x51\x5a\xf5\x9d\x8a\x28\x29\xca\xc8\x29\x8a\x3a\x67\x56\x75\xbc\xb4\xf1\x03\xcc\xaa\x9d\xf3\x10\xc1\xb3\x54\x79\x73\x16\xed\x2a\x42\xa5\x0f\xc5\x6e\xf4\x21\xc5\xe6\x2c\x6c\xd5\xb0\x6b\x5f\x5a\xea\x86\x51\x16\x96\xe3\x35\x11\xdf\x7a\x85\x97\x10\x4b\x0d\xf2\x4d\x0b\x78\xe2\x40\xb7\x1f\x97\x96\x83\x7b\xd5\x41\x72\xed\x24\x25\xa5\x9c\xa5\xb9\x7d\x82\xa6\xa3\xac\x6a\x2f\x35\x7c\x57\xd5\x32\x1e\xa5\xad\x0f\xbb\xfb\x17\x41\x4a\xc5\xf2\x3b\xb3\x43\x42\xd8\x81\xea\xa1\x5f\x86\xf2\xc0\x09\x6c\xaf\xf8\xf8\x99\x4d\x25\x95\xf8\x90\xa6\xb9\x28\xab\xe9\x7c\xe4\xcf\x34\x11\xeb\x56\xe3\xac\xda\xbf\xd4\x35\xd1\xaa\xdd\xa9\xdb\xbd\xcf\x17\x16\x7d\x5e\x3d\x1f\x0d\xe7\x7c\x25\xe7\x9b\x53\x9d\xb2\xb1\xd0\x92\xf3\xc1\x73\x93\xfe\x99\x9e\x12\xb8\x7a\xd8\x28\x08\x2c\x1c\xea\x4e\x0c\x60\x9c\x6d\xaa\xac\x12\x9e\x02\x0a\x41\xe4\x8e\xea\xb0\x46\x83\xe4\x02\x62\x69\xbe\x51\xda\x4a\x5a\xb4\xaa\x29\x45\x21\x05\x7d\x9f\xc9\x16\x23\x6b\x8a\x2c\x0a\x4d\x0c\x75\x36\x49\x4d\xaa\x77\x28\x39\xcb\xce\x2f\x5e\xad\xd6\x61\xda\xf1\xa0\x6b\xa8\x6d\x4a\xe1\xc3\x1f\xc7\x66\x65\x38\x32\x49\xa7\xa6\xd5\xe4\x5a\x97\xff\xe9\xd9\xba\x76\x86\x99\xcc\xf9\x2a\xf6\x66\xa0\xc2\xca\xe3\x78\x58\xb4\x35\x8f\xa9\x6c\xf7\x34\xdc\x6f\xf8\x1f\x54\x7e\x2e\x3e\x71\x36\x99\x51\x35\xef\x73\x2a\x78\x02\xb9\x92\xcd\x4d\x15\xf0\x64\x98\x99\x64\x60\xcb\xac\xe3\x5f\x05\x6a\x51\xc2\xff\xf8\xbc\xee\x5f\xc5\xf1\xc6\x1c\x7d\x05\x4c\xd8\x6b\xb4\x1e\x51\xb5\x3c\x8a\xec\x8b\x35\x10\x10\x35\xf1\x4f\x11\xea\x4c\x7c\xb7\x77\x6a\xb9\xec\xdb\x47\xdf\x7e\x52\xa4\xab\x55\xce\x6c\x51\xce\xc1\x9f\x99\x21\x8d\x80\x5a\x58\x81\xd2\xd3\xa5\xa9\x1e\xd6\xea\x4d\x23\xdc\x7a\xbb\xa6\xfa\x57\x0e\x36\x50\xbb\xc6\x11\x88\x33\x47\xda\x01\x1d\x27\x76\xc7\x82\xf7\x28\x70\xed\xea\xb5\x88\x10\x47\xc9\xa0\xcc\x8b\x2c\xf2\x8e\xd2\x52\x64\xe9\x10\x49\x9b\xaf\x1b\x3b\xd2\xf2\x81\x6e\x99\xe4\x69\x1c\x85\x91\x8b\x9c\x21\x51\x01\x21\x52\xbe\x6e\x64\x35\x87\x5e\xea\xa6\x6b\x36\xcb\xad\xc9\x67\x7d\x6b\x4c\xeb\x59\x6f\x63\x34\x10\xdb\x20\x0c\xc7\xf5\xa3\x0d\xd9\x6a\x9c\x01\xf0\x9b\xf2\xdc\x0e\xec\xcf\x02\x18\x55\x3c\x3c\x9b\xa7\x59\x81\x97\x80\xf3\xe1\x03\x8e\x23\xf8\x6e\xaa\xbc\x3e\x3e\x0e\x7c\xc3\xfb\x96\xf2\x74\x79\xa0\x72\x8d\x89\xc9\xa2\x7c\x37\xfe\x04\x7e\x6b\x3b\x50\xc2\x46\x28\xcb\xe3\xa1\xee\x63\x7a\xe3\xa7\x66\xd0\xe8\xe7\x1b\x60\xdc\x71\xce\x5f\x51\x09\xa3\x7d\x9d\x42\xe5\xe1\x6c\x0d\xcb\x4b\x7f\xdf\x19\x03\xb8\xbc\x19\xd1\x0d\xc0\x5b\xd7\x35\x5e\xd5\x64\x59\x64\xb3\xb9\x6a\xa8\x71\xf4\x32\xb2\xc9\xf1\xec\x1c\x33\x1c\x89\x2b\xe6\xd3\x1e\x2a\x22\xa3\x67\xfb\x50\xe9\x3a\x8c\xa3\x24\xaa\x46\x3b\x9f\xf1\x6b\xea\x8a\x82\x5c\x6d\xe3\x8f\x73\x00\xa5\xea\xf8\x23\xb3\x46\xb4\xc5\x7d\xfb\x1c\xf3\xa4\x3a\x14\x05\x00\xe6\x0f\xdc\x61\x66\xaa\x80\x31\xe6\x8e\x14\x0a\x99\xd7\x11\x5e\x4b\xb9\x41\x29\xeb\x35\x9d\x41\x17\x0e\x75\x8b\x51\x16\xad\x14\xb5\x60\xf5\x82\x92\x07\xba\xa0\x7a\xaf\x79\x91\x66\x1b\x7b\x3c\x75\xff\xa2\x27\xa0\x1e\xbe\x36\x55\x45\xfe\x8f\x30\x39\xf8\x98\x40\xcc\xc6\xa9\xa8\xda\x8e\xaf\x06\xde\x48\xe0\x74\x9b\x02\x74\x38\xb2\x66\x62\xb3\x19\x0f\x8c\x61\x8b\x49\x24\x40\x77\x95\x6c\xc5\x89\x46\xf9\x90\x96\x6b\x1e\x0d\xec\x9c\x67\xcc\xde\x51\x8e\x99\x50\x65\x02\x92\xea\x27\x14\x3d\xa2\xf6\x09\xcd\x03\x9c\x9d\xf7\x1b\x03\xf6\x95\x6e\x3f\xb3\x65\x62\x33\x1e\x30\xc1\x98\x2a\x92\xed\xa7\x6d\xc8\x99\xbc\x28\xfb\xfd\x34\x4b\x10\x8d\x38\x3d\x5b\x5f\xd7\x6d\x53\xa8\x8b\xd3\x7e\x7f\x43\x74\x2e\x51\x04\x3b\x85\xf3\x81\x6f\xb4\xdd\x23\x09\x8e\xec\x56\x5a\x5e\x9f\xe0\xd5\x8b\x14\x41\xf5\x54\xd2\x1f\x53\x12\x7f\xa8\x7d\x60\xb9\x3e\x54\x70\xd4\x47\x7a\x8f\xfb\x6a\xe4\x6b\xd9\x1e\x8f\xf6\xbb\x32\xd5\xd5\x54\xcc\x01\x31\xd9\xa4\x8c\x11\x9f\xf2\x57\x98\x86\x08\x1f\x2f\x4c\x15\x81\xeb\xb2\xf6\xd1\xfe\xb6\xca\x77\x73\x9b\xad\x45\xa1\x7d\x1c\x7f\x1f\x5f\x1c\x1d\x1a\xa1\xc1\xf8\x7c\xfe\xa8\xd6\xe3\x39\x82\xc6\x3f\xf2\xd6\xe3\x34\xc5\xb0\x1c\xef\x52\x3e\xea\x08\xb9\x87\x45\xd9\x0b\x32\x15\x42\xce\xd5\x8d\x63\x8d\x24\x3c\xa6\xcb\xb3\x33\xbd\x66\x63\xa3\x6f\x72\xab\xe2\x98\x53\x2a\x8e\x69\x2a\x2b\x55\xfb\xaf\x49\x44\x30\x1b\x78\x91\xf3\x1a\xe1\x7d\x5e\x55\xf0\xf2\x32\x2a\xf2\xdd\x1d\x27\xd3\xca\x3e\xb4\x2c\x97\x35\x55\x7c\x53\x96\xe2\x10\x21\x2d\x5f\x23\x65\xc4\x37\xb6\xd4\xad\xa6\x16\xf8\xbe\x6e\x9c\x0a\x92\x45\xa4\xe5\x7d\xb6\xc3\x85\x10\xfc\x29\xbc\x04\x6e\xc7\x35\x92\x0b\x72\x9c\x4b\x27\x13\xe9\xd4\xe0\x0f\x5c\x53\x7f\xec\x9a\x42\x3b\xe6\x0e\x00\xc8\x5a\x20\x81\x22\x04\x5f\xd2\xd6\xb5\x36\xcf\xb3\xfc\x85\xce\x0e\x0a\x9e\x57\x80\xbf\xa4\x04\xe6\x57\xa2\xd7\xed\x60\x4e\x59\xf8\x7f\x18\x28\x31\x7f\x1c\x2e\x18\xc9\x4f\xa6\x0a\x1a\x0d\xb1\x01\xfe\x0d\x67\x43\x51\x26\x03\x9b\x55\x79\x09\xeb\xf5\xe1\x84\x82\x16\x29\x5f\x6f\xee\x2c\xc6\x2d\xcf\x77\xcd\x40\x76\xfc\x7a\x75\xec\xb6\x3a\x11\x6f\x6b\x47\x6e\x9b\x3c\xee\xcb\x9f\x0c\x6d\xc7\x3e\x77\x45\xf9\x7d\xff\x80\xb6\x49\x64\x03\x73\x9b\xaa\x93\x75\x6f\xda\xf9\xda\x82\x37\x45\x3e\x3c\xcf\x47\xf3\x17\x48\x1d\x98\x43\x02\xa4\x0f\x5a\xc1\x07\x79\xdb\xb3\x80\xea\x01\xf2\xfe\xef\xf0\xb2\x31\x73\xef\xa8\x23\x8c\xa2\x0f\x8a\x75\x3a\xce\x0b\x15\x1b\xa4\xac\x7e\x55\xb3\xa5\x48\xc5\xe6\x7b\xea\xaa\x59\x5a\xe8\xaa\x7a\x28\xf1\xf7\xad\x1e\xca\x79\x7a\x38\x3c\xed\x25\x2d\x22\x7e\x7d\xea\x61\x47\xd7\xdb\x76\xd5\x35\x9b\x29\xac\x0a\x0a\xb8\xf0\xe4\xe4\x6b\xf5\x28\x7d\x13\x16\x36\x8b\x4a\x28\x32\x21\xe2\x62\xfe\x30\xdf\xb4\x31\x74\x87\x69\x41\xb0\x3b\xa9\x82\x75\x9c\xaa\xd5\x16\x0e\x3c\x56\xea\x6a\x8b\xb6\x26\xa4\x38\x99\xf0\x49\x21\xbc\x66\x1f\xc5\x5f\xd6\xad\xf5\x32\x4b\xec\x00\xd6\xc3\x1a\xa8\x8d\xb0\xe7\xc9\x9e\x7f\x71\x73\x54\xb4\x92\x34\x53\x01\x31\x19\x26\xee\xa0\xf3\x0e\x3b\x00\xe5\x13\x9c\xcc\x8f\x35\x4c\xa8\x96\x96\xba\x23\x3b\x70\xea\x6d\x62\x08\xee\xeb\x5a\xcd\x96\x23\x41\x6d\xd7\x6c\x06\x60\x11\x5e\x28\x6a\xad\x7c\xdd\x56\xdb\xde\x30\x85\xa3\xb7\x48\xc7\x80\x46\x5f\xba\x04\x2d\x9f\x62\x92\x68\x2c\x1e\x8c\xd2\x32\xa9\x3e\x12\xbf\x72\x47\x11\x0a\x66\x7a\xba\xbe\x4a\x72\xa5\xaa\x50\xa5\x93\x2a\xdf\xab\x31\x93\x89\x89\x63\x3b\x20\x5d\x17\xed\x5f\x8f\x2a\xd6\x0c\x69\x54\x21\x40\x38\x83\x81\xc6\xe3\x9d\x70\xe5\xc1\x31\x79\x94\xb2\x32\xba\x28\x26\xd2\x4f\xf2\x8d\xfb\xc9\x30\x4b\xd3\x55\x5e\x46\xae\x28\x5f\xfd\x96\x84\x45\x9a\x89\x3f\x8e\x06\x7b\x3d\x72\x60\x77\x4f\x35\x3e\x70\x5e\xd4\xb4\x86\x1c\xaa\xcf\xbd\xbd\x5f\x05\x0a\xa2\xc7\x75\x3d\x04\x40\x3f\x41\xfc\xc4\xde\xe6\x6d\xf8\x2f\x16\x8a\xe0\x2a\x24\x2a\x0d\x77\x35\x86\xfa\x6e\x23\x52\xa3\xde\xcb\xc8\x10\x24\xa1\xfa\x76\xe2\x76\xa9\xaa\x03\xff\x1d\x8d\xeb\x67\x85\x7a\x87\xe7\xbb\xc5\x88\xfa\x8b\x33\x8a\xac\x7c\x41\x19\x5b\xb2\x81\x20\xd3\xef\x1a\x9d\x90\xc3\xf3\x4b\xdd\x81\x1d\xa7\xc3\xcc\x4c\x46\x51\x48\x5f\x5d\xbc\x64\x3c\xb8\xf2\x68\x83\x13\xc9\xe8\xef\x8c\x78\xbe\x38\x97\x05\x88\xa0\x72\xf7\x63\x6d\xe4\xb8\xc4\xbe\x5e\xcc\x7a\x64\xfd\x65\x6a\xa0\x22\x52\xd0\x7a\x1c\x8f\xf4\xbc\x36\xd4\xa6\x67\xbf\x8e\xb2\x34\x01\x04\x8a\x82\x5b\xe4\xc4\x28\xe1\x01\xe8\x82\x48\x95\x45\x30\x55\x16\x35\x8a\xe2\x98\x85\x9d\x50\xc5\x82\x91\x28\x5f\x37\x46\xf6\xc0\xf2\x81\x6e\x3f\x36\x63\x41\xd2\x8b\xd2\x8c\xa2\x9d\x3f\x50\x4d\x3e\x93\xe7\x76\xdc\x8f\xd9\x4a\x4c\xe4\xa7\x15\x45\xee\x54\xad\x97\x67\xf2\xfe\x6c\x8d\x9a\xe2\x81\x90\xb7\xf0\xc2\x74\xfa\xc2\xff\xa0\x0e\xed\x61\x19\x86\x11\xbe\x18\x2b\x2e\x06\x4a\xb8\xfa\xa6\x16\x2a\xcb\xec\x38\x2a\xc7\x70\x18\x74\x99\xc4\xfe\x25\xb7\x96\xbc\xd3\x9c\x49\x0a\x33\x4c\x13\x82\xb7\x10\xcb\x03\x99\xdc\x7f\x83\xdd\x51\x23\x3b\x45\x03\xa5\x85\xe6\xd1\xcd\x47\x65\x81\xa4\x4a\xd0\xd9\x5e\xe8\xf0\x9b\x78\x36\x19\x73\xe5\x66\x99\xae\x27\xeb\x04\x83\x74\xb5\x52\x28\x67\x61\xe7\x61\x14\x88\xd4\x42\x5b\xc4\x96\x26\x29\xbd\x5d\x85\x55\x52\xa0\xd0\xa3\xda\xaf\x28\x8b\xc6\x36\xdf\xed\x5b\xb1\x7b\x68\x9e\xe9\xce\x34\xb2\xf1\xce\xa6\x72\x07\x60\x01\x03\x24\x83\x3f\x47\x5a\x26\x0d\xec\x26\x5d\xf8\x95\x6e\x9e\xae\x14\xd6\x4b\xd2\xa3\xde\xfa\x41\xe0\xb9\x68\x1f\xa8\xaa\x50\xdf\x24\x5f\x2f\x19\x84\x02\x4c\x16\xd4\xff\xf8\x5a\x69\xed\x8c\xca\x7c\xd5\x66\x1d\xcf\x43\x42\x97\x5f\xb4\x08\x25\x0a\xdb\x28\x87\x69\x1e\x9b\xb5\xc8\xe0\x8f\x8a\xae\x28\x0d\xa2\x08\x8b\x4a\x7f\x76\x25\x22\xd7\x30\xc5\x12\x9d\xe9\xf9\xaa\x1a\x57\x5a\x11\x12\xdd\xd5\xd4\xf8\xd1\x46\x1e\x85\x91\x49\x90\xa3\x23\x5a\xbd\xa4\xe4\xa2\x76\xa1\xe0\x80\xb9\x7b\x43\x49\x8c\x91\x6c\x7d\x99\x51\x77\x42\x58\x1f\x57\x30\xbe\x88\xa9\x7e\xa9\xd2\x10\x6e\xd4\xe3\x64\x46\x2a\x86\x5c\x9d\x30\x8c\x2f\x6e\xdf\x52\xd2\x8a\xa8\x29\xf2\x1e\xea\xb0\x24\x79\x51\x4e\xa2\x81\x2b\x86\x0a\x5b\xcd\x87\x05\x4a\x9b\xa9\x28\x07\x1b\x3b\x54\x82\xa1\xd7\xcd\xd7\x0d\x5e\xd3\xab\xaf\x76\x57\xd2\xb0\x04\xd8\xcd\xf9\x13\xbb\x64\x49\x4b\x18\x64\x76\x60\x81\x7f\x3e\x2c\xa4\xca\x2d\x2c\x5a\xb6\xdb\xa0\xaf\xe4\x28\x11\x4b\xe2\x60\x74\xad\x56\xf3\x8c\x26\x84\xbf\x58\xf0\xfe\x71\xfe\x7c\x7e\xa0\x76\xbe\x1b\x8a\x91\xbb\x1e\x0d\xec\x1e\xdf\x4b\xe8\xf4\x7c\xa5\xf6\x02\x82\x5c\xc1\x7d\xd7\x6c\xd8\xaa\xef\xe9\xac\x00\x96\xe7\x1d\xb5\x98\xa0\x4f\xe2\x23\xa7\x48\xef\x55\x76\x42\x0d\x43\x39\x35\xd0\xb9\x94\xbd\xa2\xe6\x63\xdb\x71\x4a\x3a\x4f\xf7\x1e\x15\xa4\x48\x98\xcf\x2a\x69\xb2\x93\x0a\xf8\xf2\xd7\xff\xb8\xe7\x17\x26\xeb\x20\x41\x7e\xe1\x99\x4d\x3f\xc2\x61\x66\xa9\xe9\x39\xa3\xc2\x83\xfb\x81\xda\xbd\xcf\xd6\x39\x02\x2d\xd5\x75\x93\x8d\x31\x4d\x5c\x50\xa3\xe8\x56\xae\xc9\x53\x8e\xc7\x26\xdb\x98\x51\xd8\xe3\x13\x8a\x1e\x82\xa4\x45\x84\x08\x5b\x25\xff\xe2\x68\xc5\x16\xd1\xd8\x2a\x1c\x11\xd8\xa3\x7c\xdd\x26\xc8\xd0\x9d\x98\xcc\x26\x05\x1e\x0e\xf5\xeb\x8b\x0a\x38\xb2\xa5\x4b\x42\x3a\x17\x34\x79\x1e\xad\x59\x68\xb2\x4b\x6c\x4f\xf3\xdb\x79\x7d\x39\x85\x29\x80\x26\x20\x26\xb7\xbb\xa7\x04\xda\x9b\x05\xfd\x57\x5f\xed\xc6\xb6\xd8\xed\x49\x26\xc7\xf4\xee\xf2\xad\xc0\x0b\x7c\xcc\xd0\xab\xc3\x17\x7e\x13\x47\x89\x63\xdf\xec\x17\xe1\x83\x26\xa0\x9e\xf4\xea\xa3\x2c\xcc\xcc\x4a\x31\xa3\x12\xd2\xab\xb4\xc8\xc5\x5d\x4b\xa9\x96\xd6\xd4\x39\xcb\x2c\x1c\x99\xdc\x3e\x51\xfd\x2c\xe2\x37\x26\x58\x89\x28\x19\x7d\x0f\xb6\x1d\xd0\x0d\x43\xfa\xe2\x62\x47\xa0\x25\xb2\xcf\x04\x4a\x82\xe5\x28\x65\x4a\x18\x28\x16\x34\xc4\x0e\xb1\x9b\xf0\xfa\x6c\xce\x18\xd4\x84\xe1\xe8\x19\xb0\xf9\x73\x54\x88\x5d\xeb\xff\xd0\xb2\xb1\x36\x7f\xb2\x26\xe1\xee\x97\xc3\x6d\x5d\xf2\x9c\x25\xfb\x1d\x21\x9e\x7b\x38\xc4\x2d\xad\xa7\xa9\x99\xac\xb3\x9b\x5e\x50\x74\xf4\x1f\x28\x73\x86\xf7\xff\x63\x16\x44\xc3\x26\x04\x07\x0a\xbc\x9f\x3d\x9b\x2e\x00\xfc\x7a\x77\x53\xd5\xac\xb9\x94\x28\xd6\x2e\xcf\xaa\xca\x77\x98\x8e\xc7\x36\x19\xe4\xca\x4d\xe2\xa8\x6a\xb5\x1e\x55\x13\xb3\xc8\x0c\x68\x9e\xde\xca\x99\x02\x32\xb1\x75\x7e\xc2\x95\x14\xe2\x68\xd5\xce\x55\xff\xa4\x8b\x7f\xe8\x56\x20\x59\x43\x3d\xfa\xa4\xd6\x27\xf9\x06\x8d\x04\xf6\x9e\xb9\x9e\x36\xd6\x99\xa4\x19\xb9\x19\xe8\x0e\x62\xe0\x9d\x8d\x7c\x92\x13\x8e\x4c\x36\x74\xcd\x5c\xcc\xd3\x39\x3a\x1a\xd1\x41\x41\x12\x85\x09\x71\x4d\x91\x35\xc9\x3e\x9d\xb5\x5c\x5c\x62\x77\x42\x65\xf0\x27\x94\xc0\xe3\xd8\x0c\x13\x5b\x44\x61\x47\xd1\x0f\xb7\x94\x1e\xe0\x96\xc3\x04\x79\xf3\x1e\x8e\x48\x9d\x25\x5e\xf5\x32\xc5\x12\xef\x4b\x35\x1e\xad\x2d\xa8\xa9\x9c\xd8\x9c\x31\x85\x02\x23\xf6\xb0\xe0\x8b\xca\xcb\x24\xb3\xf9\x24\x4d\xf2\xa8\x1f\xdb\x59\x1f\x80\x1c\x51\xea\x4a\x47\xb8\x93\xe1\x34\x93\xab\x40\x88\x6f\xda\x88\x9b\xab\x99\x4d\xde\xd0\x8c\x7a\xce\xdd\xf8\xa6\x36\x77\x86\x26\x1b\xc4\x36\x47\x3c\x81\xdc\x94\x11\xfe\xaa\x3d\x26\xb5\x8a\x6b\x2d\x38\xa2\xee\x30\x32\x0c\x98\x42\x20\x81\x9a\x1e\x5f\xbb\x1a\x55\x3e\x4e\xe3\x81\xf5\xaa\x4a\x82\x8e\xf1\xc1\xc3\x79\xd5\xd9\x18\xdb\xd7\xa3\xd0\x24\xb3\xaa\x3c\x2c\xf4\x45\xe7\xa1\xec\x14\xfb\xcf\x23\x5d\xe6\x7f\x68\x73\x74\x08\x4b\xf1\x12\x7a\x45\x5b\x64\x0a\x7d\xe3\x6c\x03\xff\x51\x85\xd4\xd1\xc0\x26\x9e\x5a\x74\x80\x77\xdc\xef\xea\xbe\xc1\x77\xb5\xdf\xfb\xc8\xbe\x81\xc0\x4f\xf4\x77\x3c\x14\xff\x72\xe0\xa5\x43\xca\x84\x6a\x11\xf2\x75\x64\x3e\x55\x6b\x41\xa6\x93\x8c\xd9\x7a\x9a\x15\xa3\xf5\x51\xc4\xa6\x64\x0c\xf2\x0a\xfc\xf9\x7e\x5e\x15\xa3\xa3\x71\x54\xb0\x9e\xdb\x92\x97\x2d\x56\x65\xcb\x9d\x49\xa8\x98\x51\x44\x49\x54\x44\x2c\x1b\x8d\x8d\x0e\x22\x40\x62\x86\x4e\x83\x2b\x2a\x2a\x4d\x6a\xf1\x8b\xe4\x9a\x8a\xd2\x8a\xa0\xa2\x3a\x4b\xbe\xd2\xdd\x52\x26\x59\x89\x72\x11\x34\x44\x29\x0b\x8a\xfd\x7c\xdd\x06\xac\x66\x37\xfa\xea\x9d\x0b\x1f\xbd\xa3\x88\xea\x3e\xa5\x31\x93\x89\xc9\x8a\x92\x37\x1a\xf1\x58\xa7\x31\xe1\x1b\x17\x50\x64\x51\xea\xc5\x21\x71\xb4\x21\x76\xe2\xeb\x9e\x02\x83\xa7\xb1\x45\xd3\xca\x89\x6e\xd0\x24\xc7\x91\x75\x1e\xab\x0b\xe5\xe6\x9b\xba\xad\x3e\x99\xc4\x96\x45\xae\x11\x7b\xb2\x26\x33\x60\x07\x5b\xb5\xc9\xdf\x22\x96\x6b\xf3\xbc\x9a\x82\x26\x46\x66\x27\x7e\xb5\xbe\x68\x7f\x43\x01\x06\x2f\xa8\xfd\x2d\xb3\x79\x1a\xaf\xc9\x14\x73\x16\xc3\xd5\xe4\x94\x48\xdc\xaf\xb5\xfc\xeb\xa5\xb5\x6f\x70\xff\x1a\xe1\xc9\x77\x91\x6b\x39\x23\x2d\x7f\x1d\x28\x44\xf1\xfb\x4a\x4b\xf7\x68\x2d\x5e\xb6\x36\x79\x9a\x3e\x9a\x0d\x91\x02\xd5\xf4\xbd\x1a\x54\x67\xad\x73\x41\x5b\x16\xa8\xfc\x23\x08\x15\x9c\x36\xc9\x7e\x4f\xe0\xec\x38\xd1\xac\xbd\x9b\x34\x7e\x48\xbd\xce\xa0\x58\x0b\xa8\x09\xb7\xf0\x30\x23\x6e\x6b\x80\xfb\x55\x05\xf7\x3f\x81\xc6\x0b\x62\x97\xb7\xa7\x8a\xc7\x7d\x47\x09\x5f\x71\x47\x12\x69\xfd\x43\x42\x9a\x08\x31\xa3\xd9\x53\x19\x95\x43\x4e\x81\x1d\xa3\x77\xc9\x53\x9d\x5d\xf4\x6a\xc3\xcc\x16\x0c\xcc\x73\xae\x47\xd5\x6f\x39\xcf\x0a\x67\xe5\x7e\xb9\xd1\xfb\x38\x3c\xbf\x44\xea\x93\xd5\x37\xc1\xce\x73\x52\x6f\x43\x27\x15\xd2\x6e\x92\xd9\x41\x14\x16\x5a\x2e\xff\x8a\xea\x3b\x5e\x69\x2b\x1a\x0f\x22\x1c\x9a\x6c\x0a\x4f\xfc\x25\x31\x88\x7f\xae\x7e\xb4\x25\xb9\x60\x69\x5f\x74\xf6\x92\xbe\xaa\x79\xd6\x7b\x4e\x45\x6b\x91\x23\xde\x63\xe2\x3e\xa2\x3a\x63\xec\xf8\x24\xad\x58\x39\xfc\xd3\x49\x94\x08\x14\xff\x20\xbf\xfe\x4f\x94\x9f\xd9\x27\xb5\x59\xf6\xf5\xb5\x90\xbe\xb6\xc0\x3f\x3b\xce\x09\xe3\x81\x22\x54\x4c\xb2\x28\xb4\x4f\xab\x69\xc3\xed\x44\x44\x55\x4f\x10\xe9\x18\x2b\xfe\x2d\x9a\x74\x62\x12\x45\xdf\xdc\x29\x49\x55\xf3\x01\x41\x07\xd2\x28\x24\xd0\x8f\xf6\x54\x99\xef\x97\x90\x04\x72\x7a\x4a\xfb\x16\xf8\xc1\x7f\x14\x28\x79\xd4\xbf\xa0\xd5\x84\x9c\x90\x6d\x7e\x30\x81\xcf\x52\x10\x8c\x7d\x56\xa8\x26\xda\x43\x89\x6d\xb3\x30\x69\xf0\x89\x67\x02\x65\x44\xbe\x62\xf3\x3c\x4a\x19\x24\xc5\x9e\x32\xca\x08\xe5\xa4\x03\xe5\x4d\x4c\x3c\x9e\xf1\x00\xf2\x1b\x8a\xa8\x7d\x8c\xaa\x82\xa2\x25\xf9\xb8\xe7\x85\x64\x1b\xbb\x55\x04\xc1\x32\xd0\x38\x70\xd9\x80\x06\xa9\x06\x34\x43\xb6\xe1\x50\x82\x50\x07\x52\x0e\x18\x48\x2f\x1c\x9b\x95\x89\x59\x37\xb0\x61\x43\xc5\xea\x89\x9e\xef\x1a\xef\xdd\xf4\xed\xa4\x13\x6e\x76\x4c\xb2\xb4\x9a\x54\x19\xf2\x55\xbc\x01\x74\xed\xf0\xe1\x50\xc2\x14\x19\x8d\xea\x1b\xb0\xa9\xfb\x54\x3b\xb3\x44\xaf\x45\xc9\xf0\x73\xaa\xc5\xff\x9e\x0a\x12\xcf\xa8\x22\xdd\x7b\x9a\x26\xca\x7d\xd6\x5a\x4d\x47\x5a\xa2\x9d\x7d\xfb\x5c\x47\xd4\x83\x55\x7f\x49\x5d\x22\x74\xb8\x76\x35\xa4\xd0\x7f\x8b\xcd\xfb\xc6\xe2\x7f\xcb\xa7\x07\xbd\x0c\x6c\x62\x2c\x2e\x28\x7d\x04\x9f\x67\xad\x45\x19\xc9\xdf\xe3\x55\xa3\x16\xfb\x9d\xc0\xd7\x65\xbf\xa3\x0a\x6f\x03\x3b\x36\xc9\xe0\x89\xba\x4a\x97\x7f\xde\x2b\x34\x7c\xe8\x93\x7f\x1e\xf2\x54\x2c\xc0\x41\xb3\x9c\xb6\x97\xf9\xa7\x88\xab\xc8\x9a\x61\x98\xb2\x28\xc8\x43\x9f\x02\x53\xe7\xee\x54\x29\x0a\x6e\x69\xb0\xea\x1e\x00\x62\xb8\x4d\x4b\x6b\x0c\xcf\xf4\x4b\x0d\xb8\x2e\x5a\x73\xd1\xc2\x44\x71\xdf\x84\xab\x9f\x59\x7c\x73\xba\xe5\xd1\x50\xb6\x0d\x4c\x1b\x98\x9d\xc8\x4d\x0b\x2e\x62\x54\x26\x83\xcc\x8a\xa0\xad\xf8\x69\x2b\x4b\xb4\x9f\x36\xbe\xd1\xab\xaf\x56\x9b\xe0\xb8\xac\xf6\xa8\xcf\xd6\x09\x7a\xda\x17\x67\x42\xdf\x6f\x91\x42\xd5\xa3\x3d\xcf\x26\x79\x74\xd3\xb7\xfb\xe4\xa7\x59\xc0\x50\x79\xf3\x49\x11\xf8\x3c\xd0\x0a\x2e\x7d\xde\xb7\xe0\x36\xd3\x36\x95\x98\x41\x3a\x18\xda\x4c\xb8\x5c\x28\x57\x5c\x0b\x6a\x0d\x3b\x25\x1c\xf2\x76\x6b\x55\xb9\x48\x63\x6a\x52\x4b\xb3\xe8\x46\xa0\xf4\xdf\x8f\xe1\xc4\x45\x77\x11\x9c\x3f\x76\x6b\x9b\xea\xc4\xae\xa5\x78\x97\x4f\x6c\xc2\x41\xb5\x13\xe5\x76\xd0\xd0\x8b\xd3\x67\xea\x68\xff\xc5\xc5\xee\x6f\x3d\xa6\x4c\xbb\xcf\x4d\x6b\x8a\xb9\x8d\x9a\x02\x26\xd7\x1d\x15\x9c\x9c\xa9\xb7\xae\xe8\x6b\xa3\x26\xf0\xe6\xd4\xfb\xba\x5c\x6c\x9a\x22\xf2\x07\xf2\x6e\x2c\xc3\xe6\x63\xee\x70\x14\x25\x36\xb7\xb3\x04\xff\x72\x8c\xea\x6a\xb6\xf3\x4d\xe0\xf3\xec\xd3\x4a\xfe\xfa\xb4\x02\x4f\x59\x93\x47\x54\x5d\x9e\x67\xb4\x17\xc0\x0b\x7c\xbd\xe9\x26\xb8\x35\x59\x3e\x47\xc3\x20\xce\x6c\x75\x39\x17\xfa\xc2\x88\x72\x6e\x69\x10\xf7\xe7\x7a\x9d\x97\x0f\x70\xe2\xfe\xe3\x9a\xf0\x2f\x95\x84\xed\x80\x50\x1b\x18\x8e\x9b\x58\xb7\xb5\x3c\xd3\xf1\xd5\x1d\x5c\x76\x9b\x9e\x04\xeb\x79\x9b\x36\x4f\xec\x72\xcd\xbe\xd3\xe2\x62\x77\x62\x22\x06\x96\xea\x22\x2b\x5f\xb7\xc8\x1b\x11\xee\x3e\x74\x8b\x46\xcc\x38\x54\x03\xe8\x62\xad\xc8\xba\x62\x79\x86\x3b\x79\x5a\x87\x51\xda\xd2\x6d\xd4\xd3\x2d\xcd\xb4\x6e\x66\xa3\x24\x2f\x3c\x3b\x08\xe9\xcf\x29\x04\x27\x7c\xd3\xd0\x71\x93\xbc\x69\xdd\xe6\xc5\x6e\xdf\x39\xfb\x15\x8d\x0a\x4e\x8b\x5f\xe2\x05\x20\x7b\x7f\xb4\xe7\xcb\xca\x8c\x2f\x70\x8a\x96\xcb\xf3\x22\x4b\xe8\x9b\xb4\x61\x6c\xb2\x30\xcd\x3a\x35\xe4\x88\x2f\x39\x5e\xaa\xc5\x40\x66\x10\x81\x47\x85\xb1\x39\xc9\xda\x69\xf8\xd1\xef\x69\x3a\x96\xb2\x03\x0d\xd3\xac\x1c\xe3\xa5\x60\x5e\x9c\x57\x16\xb6\xe7\x3f\xd3\xb5\x70\x1c\x85\xa3\x68\x68\x12\x9a\xab\xce\x50\xd2\x23\xb7\x3f\x55\x7a\x62\x45\x3a\xb4\x05\xb9\x43\xbb\xd0\x05\x6a\xe1\xac\x3a\x47\x0b\x1e\x03\xc7\xc6\x47\x80\x64\x5d\x9b\x7a\x6c\xe2\x8f\x51\xf4\x16\xc0\x88\x9e\x0f\x34\xd6\x22\x60\xa7\xea\x94\xff\xb6\x65\xa3\xb7\xaf\xdb\xb0\x2c\xa4\xa3\x28\x3d\x5d\xda\x36\xa4\x70\xbb\x73\x1a\xbe\xbc\x70\x48\x0a\x16\xd8\xa6\x5a\xe5\x2c\x76\x4e\xa8\xe5\xf9\xe5\xae\x19\x0e\x33\xb3\x26\xfc\x4e\xec\x18\x47\xb5\xe6\xfc\xd1\xa6\x1f\xec\x3e\xbf\x16\x31\x0d\xd1\x4c\x38\x81\x69\xc8\x37\x8d\x12\xc5\xfe\xa5\xee\x6b\x69\x99\x25\x26\x46\x71\xca\x1f\xa5\x70\x4b\xe4\x6b\x55\xec\x49\xcc\x5a\x34\xa4\x5a\xfd\xe7\x68\xc4\xd9\x56\x17\xcb\x5c\x74\x59\x3a\x4e\x5d\xeb\xe3\xc0\x97\x35\xef\x53\x4e\x80\xad\x7e\x13\x87\xa4\x94\x15\xaa\xd8\x00\xcd\x0b\x3e\xcf\x1d\x3d\xa7\x9a\x19\xdc\xc6\x0f\x7c\xb3\xc7\x9a\x41\x24\x42\x8b\xac\x7f\x10\xf8\x49\xf2\xa1\xd7\x80\x35\x89\x19\x44\x46\x78\xb9\x75\x0d\x2b\xc1\xe0\xb6\x00\x02\x46\x69\x3e\x89\x0a\x13\xe7\x4d\x20\x96\xbb\x69\xa8\xdb\x90\xbf\x9f\x45\x9f\x9a\xc5\x44\x03\xa5\x9e\xe0\x3b\x2e\x45\x5a\x98\x98\x1c\x38\x5d\xb7\xe1\xe3\xa9\x9a\xbf\x5b\x20\xe7\x49\x22\xe7\xf9\x5a\x3f\x6c\x73\xfc\x30\x59\x5a\x7a\x83\x4c\xc6\xca\xab\x4c\xb0\x39\x33\xbf\xd2\x2d\x93\xcc\xac\x59\xd7\x3c\x14\xe6\xba\x6f\xdb\xb2\xb4\x1e\xea\xdc\xdb\xaa\x05\x58\x4e\xb2\x28\x17\xd0\x1b\x8a\xdd\x6f\x6b\x05\xf4\xb7\x9d\x9c\xf7\x88\x68\x96\xce\xd4\xe8\xd3\x69\x8d\xe9\xa3\x6a\x4e\x6b\x36\xcb\x53\x58\xa5\x3a\x81\x67\x77\x78\x9d\x77\xd5\xe4\xa2\x4c\x12\x1b\x63\x8e\xb2\x07\x9b\x72\xee\x7f\x10\x7c\xd1\x0b\x95\xda\x49\x96\x0e\x33\x33\x1e\x47\xc9\x30\x9f\x51\xa6\x15\xf7\xb4\x82\xef\xae\x9e\xe6\x3d\xec\x44\xbe\xcb\x86\x95\xdb\x89\xc9\xaa\xdd\x7d\x4e\xf1\x3b\x6e\xab\xf8\xf1\x8c\xf6\x06\x00\x7e\x46\x6c\x22\xaa\xf0\x0a\xa5\xfe\x57\xa7\x8f\xfb\x5a\xad\x29\xea\x88\x58\xfa\x82\x02\x89\x75\xd2\xfe\x26\x19\xa4\xe3\x78\x03\x89\x8a\x83\x97\x54\x4f\x2f\x3c\x7a\xdf\x6b\x7d\xbc\xe7\x01\xa9\x33\x9b\x9e\x06\x50\xf4\xd3\x84\xf7\x03\x84\x79\xc7\x35\x81\xfd\x78\x0b\x27\xfd\x60\xb7\xca\x26\xa2\x34\x11\x84\x0f\x76\xfe\x6b\x1a\xf9\x7e\xad\x06\x88\x78\x2d\xed\x7f\xae\xee\x8d\xe2\xd4\xb8\xae\x22\x8e\x61\xc1\x64\xe5\xee\x7a\x27\x50\xe7\xcd\x45\xc5\x61\xf8\x70\xaa\x68\x92\x2c\x6d\xec\x4e\x3d\xcf\xf5\xbb\xa0\x29\x49\x26\x59\x9d\x55\xbe\x15\xf0\xa0\x11\x8c\x84\x67\xc5\x5d\xaa\x37\x85\x14\x85\xcb\x24\x45\x44\x92\xe9\x73\x1e\xec\x78\x7e\xaa\xf4\x8e\x2e\x4c\x55\x2d\x87\xc3\x3a\xfe\x17\x7a\x5a\x14\xbc\x1e\xb8\xaa\x60\x58\x66\x45\x15\xb2\x68\x4a\xd5\x77\x35\xa5\xea\xbb\xaa\x96\x3b\xb0\xd5\x61\x4d\xdb\xc1\xf2\xbc\x4b\xb4\x3d\x04\xe2\x08\xad\x06\xbe\x0e\x3a\xbf\xf3\xfb\x2e\x31\x7f\xd4\x4d\xa9\x17\xfe\x79\xe7\x6b\x0b\x4e\x9b\x1b\xc7\x37\x6a\xa7\x35\x3b\x6f\xd0\xc9\x01\xa3\x7b\x97\x88\x29\x7a\x8f\x11\x7e\xa4\xb7\xa2\xba\x02\x4e\x82\x80\x63\xab\xcf\x76\xa5\xe6\x2f\x7f\x99\xf3\xec\x5f\x61\xa4\x1c\xd3\xf2\xab\x2f\x3b\x91\xb6\x6a\xfe\x23\x7d\x3e\x8d\x62\x20\xce\xca\x27\x36\xab\xfd\x1e\x8b\xe4\xf9\x1e\x9d\xcf\x68\xc8\x5d\xab\x31\xba\xde\x0e\x3a\xbf\xf7\xbb\x0e\x07\x32\xe3\x7d\xd2\xe1\x3a\x85\xc3\xfa\x2e\xc9\x2a\x0b\xc7\x97\xa6\x1b\xf6\xca\xeb\x81\x6a\xfe\x9c\xd6\xc8\x9c\xef\x41\xb7\xd3\xc9\x86\x56\xc1\x14\xb2\xcc\x7f\x33\xed\x1c\x7a\xc9\xab\xe2\x56\x1b\x39\xa6\x25\x64\xe5\x00\x91\x63\x29\x0d\x34\xde\xbf\x39\x55\x85\x59\x68\x61\x23\xc7\xbd\x82\x44\x0b\x3b\xeb\xbb\x81\xef\x31\xc5\x51\xc1\x07\x68\xa7\xee\x4a\xa4\x74\xe0\x2f\x07\x35\xe3\xbe\x78\xf2\xa8\xd7\x59\xfc\x47\x3d\x8f\x52\xec\x6c\x7a\x26\x10\x7c\x9b\x45\xbd\xb3\xfa\x22\x08\xb4\x59\x50\x07\xe9\x09\x3b\x88\x49\xf0\x51\x3d\x14\x8e\xcc\xb7\x31\x5a\x58\x90\xd7\xa7\x8a\x86\xf4\x49\xe0\x23\xe5\xdc\x26\x02\x4d\x96\x98\x8f\x7e\x52\x82\x3e\xdf\x0e\x5d\x4b\xb3\xbd\xaa\xfe\x86\x9a\x38\x92\x2a\x06\xe1\x4a\xc4\xea\x45\xa1\xce\xea\x12\x3b\x23\xbc\x91\x7b\xed\xee\xf9\x9c\x6c\xd7\xa6\x72\x0e\xfc\x54\x91\x01\x36\x4c\xb2\x6a\x07\x64\xce\x85\x3d\xf7\xbf\xa7\x11\xc1\xcc\xba\x44\x85\x14\x49\x43\x5a\x18\x21\xe1\xc8\xd0\xf1\xe2\xeb\x84\x57\x03\x0f\xdf\xbb\xda\x9a\x1d\xe7\x51\xbc\xe6\xdd\xd5\x65\x33\xd3\x3b\x9b\x0a\x66\xfb\xd5\x21\x6d\xf3\xfc\x59\x5a\x08\xea\x21\x5f\xf1\x7e\x8c\x0b\x87\xb6\x6f\x61\x76\x89\x26\xb8\x07\xe5\xdc\xa6\xe8\xc9\x29\xb5\x39\xce\xd3\x03\x3d\xb5\x4f\x61\xc1\xd6\xa4\x14\x1d\xad\xff\xb0\xd8\xec\x1c\xa7\xc1\x40\x20\x76\x07\x74\x3b\xfc\xc6\x13\x14\x45\x6f\x9f\x98\x2a\xd1\x66\xe6\x0c\x63\x47\xbe\x47\x43\x8a\xb9\x74\x93\x17\xab\x98\x0a\x55\x03\x8f\x65\xf4\xaf\xb5\x32\xc4\x98\xeb\xd5\x22\x8c\xa8\x29\x37\xaa\x28\xff\x0f\x8d\x11\x3e\xf0\xd2\xc1\xee\x24\xcd\x8b\x75\x03\x7e\x1e\x53\x97\x68\x48\x84\xc6\xa4\x5c\x38\xb2\x34\x1c\x95\x99\x10\x8a\x19\x1d\xbc\xc3\x0c\xd6\xc1\xe5\x32\xd3\xcf\x09\x01\x8b\xec\xea\x16\x92\x04\xbe\x09\xbc\x5f\x0c\xec\x7d\xf8\xba\xcd\x1b\x38\x8f\xc2\xd5\x19\x5d\x84\x98\x7a\x25\x86\x3b\xea\xed\x1d\x9f\x6a\xb7\xbe\x81\xb5\x63\x29\x80\x0b\x0f\xd9\x47\x79\x67\x95\x84\xa7\xc9\xaa\xb0\xbc\x7a\x43\x22\x03\xd1\x71\x42\x3a\xe7\x5b\xc5\x31\x06\x51\x6e\x26\x93\x2c\x75\x86\x36\x48\x93\xd9\x7b\x8b\x6f\x94\xec\x53\x62\x0d\x2c\x75\x78\x06\x05\x8a\x43\x89\xb2\x2e\x76\xf0\xf7\xa7\xbe\x0e\xfc\x0d\x1a\x22\x37\xe5\xaa\x09\x2b\x27\xb6\x93\x1b\x59\x37\x51\x31\xab\x2a\x61\xac\xa5\x8e\xdd\x71\xae\xe7\x63\x17\xc6\x17\xc9\x09\xa5\xad\x8d\xec\x4e\x25\xc0\x6a\x09\xc8\xe6\xf5\xb4\x6e\x40\x47\x89\x89\x07\x8a\x32\x04\x2a\x39\x5f\x4f\x9f\xf7\x4d\xb8\x91\x5d\x33\xd9\x20\x31\x83\x37\xe0\x65\x8e\x53\x84\x51\x8a\x28\x01\x03\x37\xc6\x50\x46\xd5\x4f\x5e\x4f\x33\xe8\x0f\x38\xdc\xc2\x9b\x14\x6a\x20\x0c\xfc\x81\x26\x25\x5e\x9e\xaa\xed\x14\x96\xac\xcc\xee\xa6\xf7\x8c\xd1\x65\xc1\x98\x1a\xbb\x15\xfb\xc2\x56\xa3\x45\xbe\xb8\xb8\xdc\x1d\xa6\xe9\x40\x01\x94\x51\x98\x97\x4a\x75\xcb\xdc\x4c\x27\x36\x99\xf3\xb5\x85\xbd\xf4\x58\xa2\x5c\xb0\x93\x45\xc1\xb2\x09\x78\x08\xb4\x2f\x9a\x6a\x2d\x5f\x21\x1d\x58\x9b\xcd\x78\xc5\xc0\xcb\x78\x08\xac\xb1\xeb\x48\x5c\x70\xd4\xfc\x48\x8b\x2e\x9a\xb1\x7d\x92\xfe\x34\xe2\x9f\x07\x81\x12\x4f\xbf\xc1\x1b\x09\xa2\x28\x80\x87\x65\x83\x50\x41\xd8\x11\x65\xe5\xb5\x97\x22\x08\xd6\xc0\x9c\xfa\x2d\xff\x0c\x52\x72\x07\x96\x7a\xd9\xe1\xdd\x76\xa3\x80\x8c\xde\xc3\x35\x95\x38\x3c\xc4\x77\xe6\x7f\xc0\x66\x27\x16\xf9\x4f\x69\x22\x67\x16\x25\x69\x47\xb7\x4a\x95\x38\xc8\x05\x45\xb2\x1e\x44\x79\x58\xe6\xb9\x80\x48\x1c\x23\xdb\xcb\xaa\xb6\x7a\xa9\x01\x92\x2d\xd9\x3b\x17\x32\x02\x25\xd4\x75\x4d\x55\xe4\x13\xd7\x75\x7e\xc5\xc1\x5c\xab\x51\xe0\xeb\x40\x3b\x67\xc7\x31\xd2\x30\xac\x50\x40\xdc\xf8\x5a\xa1\xa0\xc7\x69\x52\xf4\xb3\x08\xc4\x83\x03\xbc\xe6\xa1\xb8\xec\xa4\x46\xbe\xfa\xb2\xe3\x79\xf9\x8d\x37\xcd\x86\xb0\x5d\x9b\xf1\x33\xfb\x86\xe6\x84\x05\xca\x43\xe0\xa1\xcb\xcc\xd1\x53\x70\x69\xab\x16\x77\xe7\xeb\xe9\x17\x35\x2f\x77\x62\xc3\xc2\xf4\xa3\x38\x2a\xd8\x3c\xa8\x95\xe5\xa0\x5e\x58\x3a\x29\x63\x93\xcd\xf9\x0a\xca\x15\x6d\x67\x42\x13\xa0\x0d\x50\xaa\xd2\xa3\xb7\x77\xfa\x28\x1c\x9e\x7f\xb1\x7b\x78\xfe\x95\xe7\xe9\xf3\x45\xbb\xb2\x1a\x76\xa7\xc1\x5d\x4d\x31\x9c\xb7\x3f\xa7\x16\x1d\xa6\xd8\xbb\x3c\xc1\xd1\x70\xfb\x9f\x30\xc7\x84\x12\x4e\x51\x26\x90\x66\xa7\xa7\x4a\x08\x68\x4b\x07\x02\x67\xe8\xc4\x16\x0d\x7b\x8f\xf1\x7d\x02\x48\x67\x8c\xfa\x5b\x81\x42\x0a\xfe\x0d\x9d\x5c\x58\xa3\xe7\x39\x23\xe0\x4f\x09\x14\x17\xef\x34\x45\xfb\x48\xaa\xd0\x3c\xc3\x79\xf5\xf4\x26\x9d\x88\xa2\x39\x47\x4b\x44\xec\xa7\x68\x89\x89\x15\x7e\x1b\xce\xa2\x30\xce\x60\xc8\xc9\x21\x2b\x7b\x48\xbf\x2d\x0c\x36\x2c\x94\x98\xb0\xe0\x80\x37\xe4\xeb\x4d\x07\xfa\x31\x45\x94\xaf\x78\x70\x2f\xaa\x41\x37\x68\x41\xf1\xb5\xab\x11\x8c\x6d\x16\x49\x1d\x0b\x3b\x1d\x34\x3c\xf8\xba\xb1\x4b\x1e\x58\x3e\xd0\x9d\x18\x98\x5a\x21\x88\x3d\x8d\x63\x0a\x6f\x17\xbe\x44\xc2\xb0\xa4\xa1\x16\xc5\xa4\x16\xa4\x45\x5e\x98\x64\x40\xc6\x8b\x78\xdd\x4a\xc1\xdf\x79\x6f\xb9\x02\xea\xba\xc9\x56\x0c\xab\xc2\xe0\x85\x9f\x08\x94\xd1\xc0\x89\xe9\xe3\x2a\x03\xf8\xf5\xa7\x95\xe6\xfe\x25\xea\xda\x88\x13\x20\x7d\x5b\xc4\xb8\x2c\xc6\x8f\x0a\xc5\x23\x14\x71\xa3\x28\x71\x85\x3c\x6d\x50\x60\xb8\x45\xab\x80\x9b\x83\x41\x4d\x52\x5b\x51\x12\xdf\xc3\x39\x20\xdb\x44\xc7\x8b\x57\x61\xbe\x0a\x65\x1a\x0f\x8a\x8f\xff\x99\xb6\x03\xbb\x46\x47\x35\xfb\xb7\x2b\xfa\x37\x9a\xba\x12\x6a\xb4\x54\xee\x81\x04\x5e\xb3\x35\xd2\x50\xc7\x31\xae\x2f\x29\xdd\x07\x93\x13\xff\xb7\xb0\x83\xd9\x2a\x07\x74\x22\xc8\xd5\xb7\x10\x62\x6b\xf5\x57\xb0\x7d\x72\x3f\x83\x6f\x94\x4d\x55\xba\xb2\x62\x33\xe8\xf4\xa3\xa3\x76\x56\x31\xe5\xef\xd1\xfa\x76\xb8\x0f\x5f\x4d\xd7\x46\xf4\x63\x43\x3d\x1c\xd2\x68\x76\xa9\xef\xe2\xa2\x6b\xe9\x63\x94\x9c\x6a\x98\xcb\x84\xb6\x69\x90\x44\x48\x89\x36\x0f\x99\x84\xd5\x2b\x46\x44\xc4\xa5\x12\xbc\xb1\x47\x36\xe9\xe9\x90\xee\xde\x6c\x13\x6a\xcf\x47\xe9\xfa\x9c\xe6\x1d\xd3\x80\xb3\x47\x59\xa0\x42\x30\x8c\x2a\x02\xf6\x8f\xe9\x29\x11\xc1\xbe\x3b\x7d\xce\x81\xa5\x27\x36\x0b\xd3\xf1\xa4\x2c\xd0\x2f\x5f\xf0\xc0\x63\x87\x70\x7a\x12\xe7\x2a\xfe\xce\x0d\x25\xfe\xbe\xd5\x08\xe8\xf7\x2f\x75\xf3\x51\x66\x07\x03\x0b\x45\xe3\x9a\x50\xae\x50\x32\x94\xdc\xea\x47\x2a\xc4\xb3\xe3\x14\xfa\x8a\xbe\x16\xf2\xe7\x8a\x26\xf2\xe7\x8a\xb0\x3f\x19\xa5\x89\x9d\x51\x68\x89\xc7\xc1\x1f\x85\xc2\xeb\x13\x8a\x49\xf8\x7f\xb9\x68\x75\x68\xd6\x57\x37\x66\x54\xc9\x13\x00\x29\x94\x08\x60\x76\x8c\xfd\xf2\x78\x0d\x06\x10\xa7\xc9\x10\x87\xab\x77\x59\x9d\x77\x09\xd1\xb3\x0a\xae\x37\xb0\x59\xbc\x41\x35\x1e\xd7\xf5\x62\xd9\x63\xbe\xc1\xa1\x80\x2a\xe5\x0f\x03\x55\xb2\x6c\xd6\x7c\x99\x75\x5b\xb8\x60\x01\x31\xc8\xad\x40\xe1\xf4\x6f\x29\x68\xf2\xd2\xef\xfc\xc1\x6c\xcd\x45\xa4\xe3\xac\xef\x1e\x51\x89\x35\x07\x34\xd8\x3e\xde\x54\x40\xb0\x28\x29\x6c\x9c\x1b\xa0\xf3\x70\x4e\x7e\x10\xf8\xf3\xf3\x03\x15\x97\x0c\x33\x13\x49\xb1\x5d\x1a\x80\x3e\x61\x69\xe2\x4c\x0f\xcf\x77\x47\xe9\x44\x9e\x03\x9d\xdf\x63\xaa\x0b\x7c\xcc\xbd\xa1\x7e\x39\x9e\x6c\x28\xb4\xdf\x9b\x0a\x67\xf3\x66\x63\x88\xf6\x2d\x10\xd2\xc8\x38\x37\x15\x6e\x2a\x6b\x29\xa4\x8b\x75\xb4\x99\x29\x9e\xab\xce\x58\xb1\xa2\xda\xa1\x86\xe4\x51\xf7\x0c\xfa\xc4\xaa\xfd\x9b\xc0\xc7\xa4\xd7\xe8\x1b\x21\xda\xfc\x36\x56\xb3\xcb\x9c\x9c\xb2\x11\xe1\x18\xa4\x8a\x79\x0b\x85\x28\xbe\xd1\xbc\xfb\xd3\x08\x7c\x59\xa3\x19\xa5\x24\x31\xfa\xa1\x0d\xd8\x69\xdc\x38\xff\x30\x16\x54\x77\x88\x96\xc3\xf3\xfc\x85\xaf\x2a\x82\xc3\x45\x64\x19\x98\xfe\xdc\x7b\x17\x7b\xe9\x67\x3d\xaf\x3c\x33\x49\x68\xa2\xdc\xe6\x33\xd5\x06\xe5\xc2\x24\x27\xfd\x79\x5a\xa3\x4a\x7e\xe0\xce\xb4\x55\x1b\xc7\xe9\x10\xda\x49\x35\x81\x36\x4c\xb6\x4f\x15\xb3\xf9\xb6\x52\x67\x67\xa2\x90\x40\x38\xda\x9c\xa8\xbf\x5e\x46\x82\x9d\x46\x86\x74\x8e\x6a\x83\x7c\x3d\xf5\x38\xe8\xb1\x29\x2c\x4b\xd5\x74\xbc\x82\xee\x05\x2d\x17\x70\x21\xf0\x48\xf6\x95\xf2\xb5\xa8\xc8\xcb\x8e\xaf\x4c\xdf\xa0\x2f\xc9\xd7\x2d\x86\xbe\xd5\x6a\x30\x61\x31\x5b\xa3\xa3\x78\x08\xe6\x6d\xbc\x38\x3e\xa9\xa7\x1e\x4d\xf6\x58\xcf\xa3\xc9\x36\xd2\x32\x19\x3e\x46\x5f\x09\x51\xe0\x3b\xd8\x0a\x10\x30\x3f\xb2\xe9\x75\x39\x18\xdc\x05\x3c\xc1\x69\x25\xe2\xfc\x5d\xaa\xde\x32\x7d\x1c\x93\x0d\x6f\xfb\x24\xde\x30\xdf\x28\x68\x24\x62\x6b\x16\x33\xab\xf7\x20\x75\xb1\x31\x4d\x27\x4a\x28\xe7\x03\x9a\xd3\x7c\xad\x0a\x28\xeb\x23\x13\xdb\x8e\x62\xe2\x1e\x51\xea\x29\x47\xb4\xd1\xb0\x8d\x27\x44\xeb\xc5\x09\x74\x93\xa2\x52\x91\x99\xf1\x85\x66\xd4\x5c\x30\x33\xde\x56\x76\x89\x97\x11\x79\xe2\x1f\x1e\x01\x6e\x93\x6f\x00\xa7\x13\xef\x99\xa7\x95\xc9\x68\x3e\x89\x32\x74\xb6\x5e\x71\xc1\xb8\xea\x1a\x5d\x55\x13\x59\x63\x9f\x0b\x1b\xdb\xd7\x39\x1e\x75\x6a\xf8\xce\x37\xe2\xfb\xea\xe9\x33\x13\xae\x72\x55\x0b\x6f\xfd\xe7\x98\x5f\x98\xce\xa8\x50\x89\x8d\xac\x9f\x9a\xf6\x75\x13\xda\xac\x4f\x39\x9e\x27\x3a\x9f\xa5\x97\xca\xd7\x81\x2f\xfc\xe4\x69\x19\xd7\xc4\xce\x29\x50\x97\xdf\xa1\xc7\x61\x09\x5c\x27\xd7\x3a\xb2\x49\xcc\x4e\xb1\xc8\x78\x58\xda\x9c\x6f\x9c\xa3\x3d\xe5\xf0\x09\x57\x56\x70\x58\x1d\x47\x15\x9c\x6f\xdc\xa6\xbb\xe2\xf1\x22\x78\x1f\x57\x01\x4f\x44\x9f\xf7\x88\xb6\x19\x42\x45\x07\x3b\xe1\x7d\x7a\x26\x84\x13\x77\xa7\xff\xe2\x33\x21\xe3\xa4\x2b\xb5\xb1\xce\x52\xf5\x07\x9c\x55\x6a\xe7\xbf\x3c\xc8\x41\x0a\xd2\x2b\xbc\xc4\xeb\x8d\x6e\xd5\xa1\x97\xba\xc3\xcc\xda\x64\x94\x96\x39\x96\xbb\x16\xbb\x17\x32\xa9\x12\x0a\x0b\x23\xa0\xf1\xc3\x3d\x35\x4e\x55\xc7\x19\x47\xff\x12\x9b\x3b\xfb\x8a\x62\x7f\x74\x26\xa3\xd5\x12\x05\xe8\x02\xf6\x8a\x38\x7c\x20\x34\xc0\xff\x5f\x09\x9e\x66\xf6\x35\x1b\x32\xff\xc9\x79\x5d\x2f\x2e\x6e\x5f\x0b\xfc\x0b\x6f\xfa\x82\x54\x9b\x5d\xbf\xcc\xd9\x31\x4b\xb0\xd3\xf4\x47\xb0\xd8\x4f\xa9\xc8\xf2\x8e\x2a\xb8\xf7\xd3\x78\x56\x35\xcb\xef\xf0\x01\xe6\x0c\xdb\x24\xe8\xf9\x97\x4f\xf5\xbc\x1c\x90\xd6\x3a\xce\xcc\xc4\xe6\xd6\x0e\x04\xec\xa5\x8f\x6f\xe6\x3e\x05\xbe\x2d\xdb\xf4\xde\xaf\xa2\x3b\x1b\xb2\xa3\xe7\x4c\x67\xdf\xc2\xb6\x68\xe6\x08\x84\x53\x79\x9e\xfd\x58\x85\x51\xaf\xd9\x64\x35\x12\x25\x5f\x24\x9c\x37\x70\xe2\x61\x0e\xbc\x37\xad\xb1\x79\x25\x2d\x8c\x92\x35\x93\x45\xa6\x1f\x6f\xcc\xa8\xf4\x22\xf0\x18\x94\xff\x53\xd3\xae\x9a\x7e\x8d\xfb\x97\x88\x79\xec\xd2\x4a\x4c\x97\x2b\x6a\xea\x5c\x51\x65\x94\xd7\xd2\x48\xa0\x81\xa2\x43\xe0\x33\xb7\x0b\x8d\x3f\xbe\x6f\x5f\x77\x98\xe6\x79\x62\xfa\x1d\x85\x6d\x39\x45\x99\x9b\x44\x7f\xbe\x20\x3c\x4e\x13\x5b\x98\x6c\x03\x2f\x50\x74\xe3\x94\x98\xf6\xdf\x2b\x03\x80\xb3\xca\xb6\xeb\xe3\x69\x53\x14\xa0\x6b\xc2\xb0\x1c\x97\xb1\xa1\x0a\x91\x06\xd1\x29\x01\xa4\xcb\xea\x0c\x1c\xd8\x38\x26\x96\xb9\x43\xd1\x82\x11\xc0\xd7\xaa\x00\x0a\x4f\xf3\xbc\xe3\x71\xb5\x50\x34\x11\x95\xc2\x27\x1c\xfd\x2a\xcd\x6d\x42\x45\x65\xa4\x93\xe0\x5b\x39\x51\x5d\xc7\xc7\xfe\xdb\xe7\x68\x32\x62\x13\xbd\x8e\xa3\xd3\xd9\x4b\xea\x2d\x4e\xa1\x77\xc3\x6a\x8e\xce\x79\x45\x98\xff\xea\x99\x9e\x02\x3e\x70\xcb\x58\xb4\x07\x7c\xc9\x9a\x8d\xc2\x05\x7b\xdb\x94\x73\xe8\x5a\x93\xc5\x04\x2a\xa9\x4e\x1c\xd7\x81\x5c\x16\xc7\xc4\xb7\xd5\x01\x50\x98\x64\x35\xdf\xed\xad\xca\x79\x6c\x11\x57\xbe\x1b\x78\x54\xe7\xbb\x38\x18\xc0\x10\x7a\x18\x78\xe7\x97\x87\x14\xb9\x49\x3d\xf0\x29\x8d\xf6\x5c\xb3\x42\x50\x15\xf9\x2f\x4f\x56\xbb\xa2\x18\x23\x7f\xd9\x80\x2c\xec\xdb\xd7\x0d\xd3\x64\x98\x99\x42\x5e\x3f\x7d\x2d\x19\x51\xdf\x38\xb9\xd8\xe6\x60\x95\xae\x27\x9d\x9a\xea\xcb\xe2\xa2\x5c\xbb\xc6\x76\x3f\xb3\xeb\x94\xc5\x38\xb0\x31\x54\x5a\x50\x49\x66\xab\x44\x44\xba\x9c\x88\xa3\xcd\xb7\x5b\x71\x7d\x9d\x42\x4c\xe7\xcb\x5f\x66\x35\xaa\x1b\x60\x54\xf0\x4d\x43\xd0\x61\xe1\x50\xb5\x3b\x45\xe2\x53\x8e\x98\x69\x9b\x86\x82\xaf\x1b\xfb\xe8\xe2\x62\xb7\x18\x95\xe3\x3e\x96\xac\xb0\x0c\xfd\x08\x9c\x6c\x0b\xed\x4c\x51\x98\x70\x34\xe3\xdd\x76\xb9\x14\x80\x9a\x01\x6a\x86\x58\x78\x7f\xe1\x89\xe7\x69\x1c\x0d\xa2\x95\x0d\x40\xbc\x98\xdc\x1b\xd4\x98\xbe\x4a\x7a\x7c\xdd\x1a\x06\x83\x09\x16\xd6\x87\x4d\x37\xd4\x0f\x0e\xb2\x68\xcd\xce\x2a\x55\xa0\xcb\x2a\x4c\xf8\xa9\x72\xfd\xdd\xd5\xab\x51\xb5\xda\xc8\xc7\xa6\x9f\xa5\x66\x40\x23\x87\x9e\x35\x44\x35\xf9\xba\x4d\x91\x61\x90\xae\x0f\x36\xb4\x42\xba\x72\xf1\xb9\xa8\x0b\x30\x65\x91\x8e\xc1\xdb\xae\xd6\x82\xb3\x20\x73\xfc\x43\x4c\x57\x4c\x94\xb6\xb3\x0e\x0a\x86\xf4\xcb\xa8\xfa\xb1\x4a\x36\x4e\x01\x48\x29\x40\xb8\xe1\x7a\x0b\x88\xa9\x18\x65\xd6\x14\x36\xe1\xc4\xc0\x29\x21\xed\x77\xaa\x48\x53\xaf\xac\x2d\xc5\x22\x14\x11\x0e\xcf\x73\xb0\xb1\x0b\x61\x24\xdf\x28\xf7\x17\xaa\x22\xe4\xb3\x14\x71\x0a\xcb\x9f\x76\x06\xbe\x99\xfa\x24\xf5\x6c\xa0\xb2\xd7\xb3\xee\x80\x62\x5d\x11\xb7\x0c\x45\x29\xde\x97\x42\x8f\x37\x86\x64\x19\xf9\x30\x07\x97\x62\x86\xaa\x3d\x4e\x02\x55\xa4\xb8\xa4\xca\xf0\x99\x9d\x64\x36\xb7\x49\x41\x28\x12\x56\xb8\xa2\xcf\x42\x26\xf1\x66\xa0\x68\xaa\x58\x3b\x38\x19\x77\x6d\xb6\xb5\xb6\xfb\x19\x49\xd3\x20\xcd\x81\x6c\x03\xf9\xa8\x6e\x5f\xa0\x36\x00\xa2\xe7\xef\xeb\x92\xe8\x4c\x4f\x05\x5a\x36\x16\x3f\x8c\x6a\xa8\x91\xb2\xc0\x56\x9a\xaf\x1b\x72\x0c\x2f\x2f\x1c\xea\x16\xd6\x64\x33\xde\x3a\xe0\x04\x25\x08\x78\xff\x5c\xba\x92\xe8\xc1\x19\x4d\x5b\x33\xc8\xa1\x95\x2d\x1d\xf5\xea\xc9\x50\x90\xdc\x9e\x7a\xb7\xdc\xf5\x2f\x01\x07\xe3\x4a\x95\x9e\x80\x70\x91\x3e\x46\xa8\xa6\xbe\xb2\x75\x49\x3b\x11\x79\x12\x56\xb9\x9a\x99\x28\x41\xe1\x16\x1b\x31\xe7\xaf\x7c\xa3\x2a\x8b\xf9\x28\x8b\x92\xd5\x19\x9a\x36\x18\x6c\x28\xdc\x20\xe1\x3f\x82\xb4\x4d\x04\x83\x1d\x6c\xce\x46\x59\x47\x19\xe1\x60\xfb\xe7\xeb\x46\x0b\xfa\x2b\xdd\x71\xba\x26\xf5\x13\xe0\x0c\x19\xeb\xc2\x37\x8d\xcd\x74\xdf\x42\x75\x8a\x56\xb1\x29\x3d\x82\xa4\x90\x5e\x8b\xe3\xd2\xf4\x9f\x37\x37\xd3\x24\x2d\xd6\xa3\x62\x44\x25\x6e\xe9\x6c\x09\x69\xaf\x7a\x63\x7c\xad\x80\x82\x26\xcb\xd2\xa1\xa9\xe6\xa3\x2e\x1b\x54\x43\x21\x14\x54\xd5\x2d\x61\xbd\x26\xfe\xb1\xc6\xde\xbc\xb8\xd8\x0d\xd3\xac\xb0\x12\x9b\x62\x77\x61\x98\x82\x73\x71\xf0\xf1\xe3\x1d\x17\x8a\x64\x26\x14\x2d\x49\xe4\xe4\x68\x4d\xf1\x75\xa3\xd6\x70\xe0\xa5\x83\xdd\x7c\x3d\x5a\xc1\x6f\x08\xbe\xcf\x33\xdf\x3c\x59\x6a\x5c\xe6\xa3\x2c\x4d\xa9\x8d\xef\xc5\x46\xb9\x97\xcd\x37\x81\x87\xcd\x8e\xa2\xbc\x48\xa1\xbc\xec\x8b\xe9\xd8\x57\xa5\xc6\xf4\x98\x4f\x61\xf3\x7f\xaa\x74\x1e\x4f\x10\xc2\x09\x8d\xfb\xcb\x5c\x4b\x16\x85\x42\x1a\x42\xe4\xf4\x67\x14\x8a\xee\x26\x06\xc3\xc1\xa4\xbf\xfa\x32\xaf\xe1\xdb\x58\x46\x02\x1d\xef\xbc\x2c\x3f\xc4\xee\x9a\x12\x9b\x7a\xd6\xd1\x55\x8d\x63\x9f\xd9\x9c\x79\xd9\x95\xc3\x7f\x89\xea\x95\xc0\xf6\xd1\x62\xe2\xb3\x1f\xf5\x0c\xfc\xdc\x1d\xe5\x67\xca\x7e\xef\xb5\x2d\x09\xed\xbe\xc7\x37\x7d\x25\x72\x8e\x34\x12\x30\xa5\x6e\x01\xec\x8e\xb3\x05\xb0\x4b\x54\xbf\x9f\xec\x55\xf1\x03\x4e\xc1\xdb\xc8\x17\xf8\x86\x8a\xe7\x5c\x58\x21\xbc\x1c\x62\xde\x27\x7a\x54\x39\xc3\x7a\xbe\xad\xed\xbb\xc0\x27\xa2\x38\x71\xfa\x85\xc6\xce\x74\x78\xbe\x5b\xa4\x65\x15\x17\x78\xd5\xca\xcb\xea\x90\xbb\xa6\x62\x84\x6f\x4d\x9f\x8d\x7c\xd1\x34\x5b\x8b\xac\x37\x67\x41\x2f\xe6\x17\xf4\xd3\x7c\x5d\xab\x40\x0e\x13\xda\xc9\x14\x52\xa6\xfa\x2d\x80\xbb\xd0\x82\x41\x25\xe2\xb6\x36\xaa\x0b\x74\x63\x08\xa3\x2e\x8d\xc5\x6a\x3a\x88\x33\x7a\xf5\x7c\xfc\xff\x1b\x31\xc2\xab\xaf\x76\x27\x66\x23\x4b\xe3\xb8\xa3\xd8\xbb\x67\x15\xb0\xf1\xac\xaa\x92\xbc\x66\x92\xd2\x64\xe0\xdc\x89\x61\x50\xf5\x49\x08\x4d\xae\x4f\xbd\x6c\xe3\x76\xb0\x33\x3e\x3d\x3c\xff\x22\x95\x65\x33\x3b\xb2\x49\x2e\x4d\x1e\x66\xe8\x29\xcd\xb2\x13\xad\x71\x4c\x9e\xae\x45\x16\x45\x68\xe1\xda\xd0\xf7\xe5\x9b\x46\x6d\x99\xf0\xf7\x65\x38\xea\x50\xc9\xc2\x29\xc9\x56\xf3\xbf\xa9\x24\x4b\x29\x98\x34\xee\x58\x90\x3e\x50\xe9\x58\xd3\xd4\x51\xca\x18\x59\x34\x1c\x49\xcb\x11\xc7\xd3\x79\x9d\xe9\x9e\x6f\x0f\x4d\xc9\xa0\xc3\x43\x2d\x2e\xaa\x90\x0e\xef\x17\xfb\xcd\xd6\x54\xe1\x24\xae\xa9\x52\x46\x98\x26\x45\x94\x94\x51\x32\xfc\x5c\xb5\x56\x11\xff\xc1\x97\x5d\xeb\x92\x31\x10\x4e\xdb\x75\x1e\x55\x70\x0f\x88\x82\xe3\x25\x43\x23\x1d\x83\x79\x16\x9d\x6c\xfe\xa1\xa9\x9a\x88\x1f\x69\x52\xac\x2d\x6c\xb6\x57\x81\x3f\x4f\x69\x64\x2c\xf4\x48\x1c\x54\xd9\x09\x8e\x1f\x47\x04\xe3\x8c\xaf\xfd\x07\xb1\x1c\x0b\x46\xe1\xd8\xd4\x23\xd8\xcf\xbb\x12\xd7\xb8\xca\x1d\xe4\x35\x61\xf9\x5d\xd0\x34\x99\x0b\x81\x8e\xa1\xcd\x3a\x18\x76\x28\x89\x00\x35\xca\xd7\x6d\xe5\x80\xbe\x49\x56\xdd\x6a\x45\xbd\x12\x62\x9c\x7c\xdd\x38\x7c\x17\x0e\x75\xd7\x4d\x06\x6b\x27\xec\xcf\xa8\x2d\xf2\x75\xe3\x74\xf9\x4a\x37\x4c\xcb\x89\xb3\x50\x47\x64\xbf\xab\xa7\x74\x0b\x77\x6d\xb6\x08\x4f\xf4\x4b\xea\x1c\xd1\xcc\x55\xdc\xd9\x17\x39\x3e\xdc\xae\xd5\x1b\xab\xef\x22\xd9\xef\x53\xbe\x91\x47\xd2\x29\x68\xbb\xb9\x61\xf3\x25\xe0\x7b\x81\x8a\x1f\xce\x37\xc6\x66\x71\xf1\x20\x33\xaa\x3a\x5e\x11\xf9\x7b\x48\x6d\xf9\x26\x78\x4e\xc1\xdb\xf2\xc2\x94\x99\x49\x0a\x44\x7f\xd8\xa9\x4e\xe0\xc7\xf9\xa6\xd5\x4a\x28\x4f\xcc\x84\xc6\x92\x15\xaa\xe8\xb9\x44\xad\xaa\x65\x15\xe5\xa1\xe5\x38\xcc\x71\xce\x5d\x33\xe6\x5c\xad\xa8\x1d\xe7\x76\xce\x6f\x9a\x08\xc2\xf8\x1a\x99\xa7\x9c\xee\x4a\x52\xeb\x58\x5d\x96\x6f\xe7\x98\xfc\x56\x15\x45\x4d\x6c\x56\xa0\xe0\x8a\x8d\x96\xc1\x9b\x7c\xd3\xb2\x8b\x55\xe3\x18\x5a\x11\x03\x61\x53\x2c\x2c\x08\x71\xc8\x6a\x91\xb6\x5a\x65\x6f\x69\xa7\x28\xeb\xe4\x8e\x2f\xb4\x40\xb4\xa0\x55\x36\xa3\x6c\xb4\xdf\xd2\xee\x3d\x97\x95\x04\xf8\x8d\x16\xe1\x97\x03\xdd\x89\x0d\x57\x79\x89\xe1\x9c\x62\xf9\x0e\xbe\x09\xbe\xe0\x03\xdc\xb2\x5f\x45\x84\x45\x04\x5f\x5b\xed\x08\x5b\x9d\x44\xc2\x5f\xf4\x61\x90\x09\xc3\x32\x2f\xaa\xa8\x69\xd6\x51\x83\xbf\xf5\x11\x76\x1b\x41\xaf\x57\xdb\x06\xff\x03\xa2\x05\xfe\x07\xc7\x8c\x20\x39\xc8\x68\x80\x57\x2f\x42\xf2\x1d\xe5\xca\xa3\x4c\x7c\xe3\x34\x19\x5a\x18\x8f\x3b\x09\x22\xd7\xff\x65\x37\x3f\x46\x29\x68\x4a\x27\x7c\xb4\xa9\x54\xb3\xf8\x0c\x32\x07\xe1\x74\xee\x04\x7e\x2c\xcf\x93\xce\xd1\xd8\x9b\x1c\x20\x95\xb8\x33\xf5\x0a\x36\x77\xda\x4a\x1a\xa1\x4d\x0a\xcf\xad\xe5\x1e\x2c\x26\x1d\x0e\xd3\xbf\x9f\xaa\xaa\xf8\x99\xe9\xe3\x4a\x7f\x69\x63\xb7\xa7\x7a\x5e\xd6\x66\xe0\x8a\x87\xff\x4d\x6c\x12\xd2\x5a\xa0\xbf\x25\x5d\x8f\xea\xcc\x90\x54\xa8\x25\x07\x9d\x40\x8c\xe5\xb0\x00\xca\xb6\xf5\xb1\xb9\xdd\xa6\xc6\x32\xb1\xe9\x24\x16\x16\xa5\x60\x67\x15\xe2\x74\xae\xa7\x8c\xda\x9a\x62\x7c\x8b\x8b\xdd\x95\x28\x16\xca\x89\x28\x12\xd2\x68\xf2\x4d\x9b\x05\xe8\xc4\x4c\x9c\x26\x3d\xf2\x88\x29\x86\x8c\x6f\x02\x1f\x52\x0f\x5e\x50\x5e\x89\x17\xb5\x6f\xd3\x45\xa5\x65\x59\xcd\x96\xc2\x66\x4c\x6b\x14\x61\x98\x8e\x17\x89\x69\xd3\xeb\xcd\x6d\x16\x59\xf6\x89\xc6\x98\xde\xc7\xc8\x8b\xdc\x87\x3f\x57\x3f\xd0\x99\xe2\x9e\x9e\xde\xa2\x5e\x78\xe1\x85\xc7\xbd\xc4\xf4\x75\x5a\x05\x58\x70\x77\xa8\x6a\x2c\x1e\xba\xf4\x22\x94\xa7\xe7\x41\xae\xd3\xde\x51\x02\x70\xff\x40\x6a\x02\x0c\x0a\x83\x6d\x99\x53\xb1\x76\x2d\xfc\xb3\xca\xf9\x9b\x29\x1c\xfc\x97\x28\x5e\x67\x55\x9a\x5a\x84\xba\x6e\xf2\x2f\x2a\x45\x0b\xce\xc9\x11\xb3\x6d\x61\xc9\xa3\xe3\xfd\x28\xd1\x85\xd9\x96\x0b\x47\xbc\x6b\x44\xb8\x0e\xfe\xd3\x9b\xb4\xf5\xaa\x53\x5c\x1a\xc5\xd7\x02\xd5\xc9\xd8\x46\x6b\x8a\x5d\x4c\x30\xb2\xa8\xac\x3d\xb2\x59\x65\x00\x72\xf0\x7b\xcd\xfb\xc7\x7b\x9e\x8f\x7d\x56\x49\x3a\x1e\x9b\xea\xce\xc6\x23\x80\xce\xa1\xee\x74\x76\xaa\xba\x85\x0f\x94\xbf\xca\xb3\xbd\x6a\x28\xa5\x0c\xea\xcb\xf7\xe7\x28\xb1\x70\x2e\x1e\x8e\xb4\x3b\xb7\xd9\xc2\xcc\xec\xc7\xa5\x9d\x64\x11\x0b\x5c\x89\xa3\xbc\x87\x56\x9f\x57\x72\x3f\xa1\xc9\xac\x4d\x66\x7c\xdd\x19\x94\x6f\xb7\x79\x2d\x1f\xe0\x2e\xdd\xbd\x40\x39\x37\xc7\x51\xb5\x99\xc4\x16\x82\x67\xae\xdc\xec\x60\x4c\x54\xbb\xe1\xf7\x7b\x62\xba\x93\x9b\x7b\x78\x7e\x81\x61\xe3\xd5\xba\x97\x6d\x0c\xf3\xe7\x96\xb2\x8e\xbb\xf5\x99\xf2\x4f\x83\x32\x8b\x32\xd6\x33\xc0\x76\x7a\x4a\xd3\xc7\x9b\xfc\xe7\x43\x2f\x75\xcd\xca\x4a\x14\x47\xa6\xb0\x54\xff\x73\xcc\x5d\xc7\x51\xbe\x1f\xa8\xec\xc0\x95\x47\xc2\x54\xbe\x9f\x76\x9f\xe7\x6b\x57\x48\x1f\x96\x26\x1b\x58\x2a\x18\x3b\xac\x64\xbd\x50\xb1\x73\x07\x3a\xf4\x52\xb7\x58\x8f\xb8\x60\xe5\xe8\x67\x0a\xd9\x1e\x88\xd8\x65\x1a\x0f\x90\x28\x61\x98\x2f\x06\xde\xc7\xeb\xa2\x6e\x96\xa4\xfd\xbe\x8b\x26\x31\x81\xce\x2b\x42\xc0\xf9\x46\xeb\x06\x86\xb3\xc9\x60\x44\x94\x61\xde\xd6\xd0\x01\xd4\x58\x2d\xdf\x01\x1b\x50\xc9\x2f\x77\x3a\x77\x88\xa2\xf1\xc2\xb0\xf6\x40\x0b\x44\xb6\xbd\x6b\xf3\x09\xb5\xdd\x14\xc2\xe3\x41\xed\xf9\x27\xda\xa9\xef\x27\xda\x54\x75\x54\x56\xcf\xa0\x29\x2d\x75\xb6\x8b\xd3\x62\xb1\xa4\xa6\x3a\xe3\x67\xc0\xf7\xa6\x9e\xb4\xf4\x00\x5b\x05\x82\x96\xa6\x52\xfa\xfe\x25\x98\x42\x77\xfc\x2c\x85\xa3\x0e\x5f\x7f\x26\x39\xb3\x18\x95\x59\x3e\x30\x1b\xf9\x2c\xbe\x15\xa2\xe0\x6d\x6c\x8c\xc8\x37\xe0\x67\x29\x7e\x71\xda\xda\xa7\x85\xe6\xcd\x72\x6d\x98\x36\x52\x06\xf4\x2c\xf3\x4b\xda\xd2\x61\x14\x25\xe2\x88\x8c\xc0\x83\xdb\xed\x7c\xb3\xa9\x68\x53\x69\xb2\x41\x65\x30\xd6\xa5\x9a\xaa\x4d\xf4\x32\x6d\x5c\x4e\xb0\x6a\xd9\x4b\x58\x4a\x25\xa1\x4c\xdc\x4a\x19\x28\x22\x0c\x9b\x63\xc8\xfa\xf6\x9f\xb6\x16\xd9\xf5\xbd\x1e\xc2\xf1\x00\xfb\x27\xb6\xb3\x93\x50\x0b\xe0\x1b\x40\x89\xd0\x1f\xbb\x1a\x78\xfe\x0e\xb4\x28\x31\x9d\x6e\xd0\xf7\x13\xe7\x52\x8f\x5b\xa8\x9e\xcf\xe9\x73\x97\x59\x81\x79\x8e\xd5\xf5\x87\x53\x5f\x1e\xfc\x43\xc5\x74\x0c\xe3\xb4\xdf\x87\x6a\x5d\x15\xd7\x31\x24\x09\xe7\x83\xe0\x93\x7c\xf5\x34\x49\xc7\x65\x66\xf6\x54\x7b\xae\x2b\xba\xb8\xc0\xf7\x3e\x7d\x2d\xa7\x31\x51\xc3\x9b\x1d\x9e\x77\x78\x33\x9f\x82\x02\x82\x8c\x2a\xd8\x59\x45\x32\x81\x07\x01\x90\x16\x28\x85\x21\xbe\x46\x89\xec\x1c\x22\x44\x9c\xaa\x7f\xea\xa4\xcc\x8b\xcc\x24\xb9\x46\xe0\x89\xdf\x29\xfd\xb4\x30\x59\xdb\xaa\x98\xa3\x68\x60\xb1\xc7\x60\x12\x5e\x9c\x2a\x67\xc2\x8b\xc1\xe7\x5c\x23\x70\xd6\xd3\xa1\x4f\x53\xc9\x9d\xc7\x40\x61\x11\xf9\xb9\xf9\x87\x94\x5e\x71\x8d\x5f\x2e\xa2\x9c\x4a\xea\xf4\xb4\x2a\xa3\xdd\xc5\x13\x0a\x3b\xa5\xc5\x28\xc1\x8e\x6d\x36\x14\x1c\x9d\x58\x9b\xd0\x02\x13\xcf\x93\x16\xa5\xf8\x49\xc9\x78\xad\xed\x33\xf4\xb3\xdb\x67\x94\x39\xd9\x4a\x66\xc6\x56\x2b\x17\x9e\x22\x70\x0b\x5f\xab\x29\x90\xdb\x6c\x4d\x1c\x4e\xb0\xa3\x1d\x55\x42\x50\x9f\xd4\x5c\x16\xd5\xda\xbb\x11\x78\xa1\xe6\x5b\x0a\xd7\x46\x7b\x1f\x61\x40\x3a\xca\x1e\xe0\x8a\x42\x92\x5f\x09\x3c\x4d\x3b\x2f\x5e\xd8\xe3\xb3\xe9\x0b\x35\xb1\x4e\x7c\x1a\x0a\x1d\x3f\xa1\x59\xa6\xc5\x84\x91\xca\x3d\xde\x53\x95\xd3\x4b\x1a\x56\xfe\x9e\xea\xfd\x4f\xb2\x74\x3c\xa1\x95\xbd\x3c\xcf\xc9\xe6\x27\x1a\x09\xf8\x49\x03\xf5\x52\x05\xbe\x51\x51\xe4\xfd\x32\x1b\x8e\x94\x4e\xe9\x3b\xfa\x4b\xbd\xa3\xa0\x21\x26\x11\x93\x5c\x24\xf8\xef\x2b\xf2\x03\x2b\xaf\x62\xdd\x5f\x09\xbc\x94\xd0\xc4\x66\x2b\x36\x2c\xe2\x8d\x39\x1f\xa7\x5c\x0e\x94\xd9\xc6\x43\xa2\x24\xe0\x2f\x7e\x5f\x05\x9f\xa0\xca\xb2\xb0\x8e\xc2\x97\x80\xdf\x12\xa5\xc9\x5e\x0a\xfb\xc4\x19\x44\x69\xbb\xcd\x6c\x2a\x4c\x60\xa0\x54\x3b\x99\x1b\x8b\x3c\x70\x57\x4f\x55\x53\xb5\xcd\xe4\xa3\x3d\xc5\xfe\xfd\xa0\xe9\xc6\xb1\xd0\xcd\x28\x4d\xa5\x07\xc6\xe4\x7f\x5b\xc9\xec\xbd\xed\x36\x5c\xfb\xfa\xa4\x0a\xe9\xa1\x03\x4b\x1f\x86\x1a\xe0\xa7\xca\x1f\xe4\xd3\x9d\x02\x43\xbf\xde\x5d\x5c\xdc\xeb\xa9\x35\x40\x05\xb1\xe0\xa5\x56\x91\xda\x0a\x7c\x47\xec\x6c\xa0\x60\x03\xc7\xa6\x5e\x98\xf2\xd8\xd4\xbf\xd6\xb9\x4d\xa5\x90\xd4\xcc\xf7\xab\xa8\x61\xc5\xda\x18\xe0\x65\x27\xcf\x7c\x58\xac\x95\x3f\xc5\xc4\x13\xe5\xf5\x9a\xd6\x6d\x9e\x66\x45\x54\x8e\x01\xa6\xc0\x02\x38\x82\x71\xc7\x99\x70\x1b\xdf\x8f\xfd\x35\x51\x63\xe7\x13\x76\xea\x6b\x33\x7f\x56\xd7\x92\x49\xf2\x2f\xd2\xdf\x43\x85\xe1\x09\x32\x31\xc4\x1a\x85\x6b\x03\x0b\x20\x91\x80\xa3\x90\x48\x3c\x4f\xea\x41\xa0\x30\x6f\x0c\xa6\xc4\x5f\x9a\x21\xca\x17\x06\x8e\x61\x91\x28\x94\xef\xdd\xac\x42\x74\x09\x94\xe8\x7c\x03\xf4\xec\x2a\xda\x4d\x4a\x4b\x60\xc1\xe9\x28\x54\x3b\xaa\xab\x87\xec\xf7\x25\x3b\x9a\x42\x98\xe0\x57\x03\x45\x37\xe9\x6c\x36\x74\x8c\x30\xbe\x37\x14\xc4\xf2\x28\xc7\x46\xf4\x0f\xdb\xcf\x01\xea\x8b\xa2\xfd\x5f\x62\xe9\x20\xff\xfe\xcb\xb6\x35\xed\xa5\xdc\x94\xb4\xc6\x65\x2d\xad\x71\x59\xa1\xcb\x0c\x99\xd5\x76\x74\xd7\x4e\x09\x53\x5f\xaa\xb6\x31\x29\x16\xa4\xe9\x93\x4a\x10\xe6\x16\xc6\x14\x29\xd8\x49\xc5\x8a\x3e\x5b\x83\x09\xfb\x32\xfe\x35\x4a\x26\xf1\x76\x3e\x9c\x7a\x0c\xe9\x13\x9b\x35\x0b\x2e\xa5\xec\x77\x8d\xce\x66\x8c\xf4\xcd\xa9\x42\x9e\xf3\x6b\x03\x8e\xe9\xa6\x62\x1e\xed\xa1\x8c\x4d\xa8\x81\x8a\xe6\x56\x8e\xfb\x36\xdb\xed\x13\x20\x96\x0e\xd5\xab\x04\xbc\x90\x8f\x31\x6f\x9c\x85\x68\xf5\xb2\xc4\x0c\xd0\x6f\xef\x47\x75\xa2\x95\x59\x33\x46\xf1\x8e\xc5\x07\x02\xdf\x3a\xbe\xd6\xc8\x91\x16\x0e\x75\x6d\xb2\x56\x25\x39\xec\xb7\xea\xa9\xcb\xff\x1b\x86\x9e\x6f\x1a\x25\x82\x7d\xfb\xba\x61\x6c\xa2\x31\x47\xf4\xc8\x19\xaf\x62\x9d\xf1\x8d\xe6\x31\xdb\x24\x1c\x8d\x4d\xb6\x4a\x1f\xe0\xcc\x13\xf6\x2d\xc8\xb5\x42\xdb\xe7\x13\x93\xad\xe6\xb5\x36\xae\x9e\x04\x4a\xb1\x7b\x2d\xca\xa3\x3e\x67\x43\x2e\x61\x5e\x9e\x77\xc9\xf7\xb3\x35\xd5\xd7\x92\x7a\xbc\xb3\x1e\x86\xcb\x78\x6f\x09\xa8\xe9\x39\xb0\x01\xc3\xf0\x41\x98\x94\xcf\xe8\xdd\x25\x61\x05\x2e\x2f\x35\x09\x42\x34\x5f\xab\x73\x39\xb3\x31\x71\x7e\xe2\x8d\x8e\x8a\x8c\x39\x32\xe1\x1b\x55\xa5\xf9\x7a\x69\xfb\xd6\x89\x5b\x61\x5a\x6f\xab\xaa\xe6\x76\x1b\xb6\x87\x0c\x61\xb8\xbe\x24\x22\x0b\x5e\x67\xfc\xf2\xf4\x71\xd9\xc8\xab\x15\xfc\x9c\xca\x86\x8e\xd2\x6c\x16\xa2\x41\xb5\x16\x94\x69\xfe\x01\x47\x34\xa7\x19\x87\xed\xf7\xdb\x34\x26\x38\x19\xef\xd2\x0a\x43\xa5\xe9\xaf\x15\x7e\xfb\xea\x54\x75\x19\x98\x5a\xc6\x2c\x42\x14\x3d\xa5\xf2\xea\xb1\xe0\xdf\xa4\xed\x13\x89\xe6\x9b\x3a\xc2\x09\x3c\x27\xf8\xa1\x96\x9c\xfb\x54\xe3\xfb\x59\x6a\x40\xd0\x0c\x4a\x97\xe5\xc3\xa9\x56\xa6\x7b\xbc\xb7\x73\x6f\x92\x5c\xcb\x8c\x87\x5c\x98\xd0\xa0\x52\xe4\xed\x9f\xea\x25\x70\xab\xb1\xbd\xed\x5f\xea\x66\x51\x38\x22\x68\x3e\x9c\xfd\xc5\x76\xb2\x86\xc3\xf8\x52\xa4\x4c\xb5\x6d\x16\xa6\x71\x6c\x87\x11\xe9\x51\x7b\x8b\xa5\xba\xda\xb7\xe4\xc2\x76\x12\xc5\x76\x52\x44\x21\xaf\x32\xd1\xf1\xf6\x00\xee\xcb\xaa\xdb\x97\x66\x55\x86\xfd\x28\x9e\x5b\xfa\x74\xbe\x41\xf0\xf9\x9e\x0f\x61\x66\x7a\x4a\xf1\xf8\xa4\x56\xc9\x78\x40\x1b\x8b\x08\x33\xd1\x4b\x93\xf7\x4c\xe3\x8e\xaf\x78\x8f\x4a\x36\x7c\xfc\x4e\x15\x1e\xbb\xd9\x88\x5d\x5a\xea\x16\x25\x9c\x88\x66\xbc\xd5\xe1\xb7\xb4\x3c\xd0\xb7\x94\xa3\x8c\x7d\x3d\x24\xc9\x75\xe7\xae\x71\x61\xea\xbf\xf6\xc7\x5e\x7a\xf3\x5b\x37\x9b\xe6\x55\x07\x44\x1c\x5d\xf3\xc9\xb5\xe1\xd5\xc9\x16\x6e\xde\x81\x6e\x18\x47\x63\xa7\x81\xae\x60\xa5\x5e\x8d\xff\x0b\x8a\x1d\x95\xd8\x2a\xda\x36\x59\x64\x59\xc2\x80\x6d\x31\x55\x07\xfc\xc2\xf4\x79\x97\xe5\x46\x2b\x51\x48\x01\x62\x94\x8f\xd1\x6b\x77\x0c\x36\xd7\x60\x79\x4f\x6f\x44\x37\x9d\xd4\x94\x1d\x0e\xc5\x65\x57\x08\xca\xd5\xef\xe0\x75\x3c\xa6\x3d\x06\x41\x93\x76\xbe\xaa\x5e\xc8\xf2\xe9\x9e\x0a\x84\xb7\x1c\x7e\x64\x12\x85\xab\x25\x18\x11\x22\xba\xe0\xf7\xe5\x66\x0d\xe7\xf0\xfc\x42\x77\x32\x4a\x0b\x98\x72\xf1\x5c\x64\x43\x2b\xda\x6e\xc4\xdc\x4a\x6d\x7e\x69\x31\xca\xc3\x51\x24\x55\x25\x61\x68\x74\x94\xf5\xbc\x4f\xee\xdf\xb0\x85\x21\x94\x26\x76\xd1\x1f\xd0\xfe\xc0\xd7\x5e\x1f\x2d\x2d\x8b\x91\xcd\x92\x39\x7f\xc2\xc2\x98\x00\x71\x36\x43\x61\x19\x64\x47\xcf\x83\x49\xf3\x74\xcf\x57\x7e\xb5\x1f\xfa\xaa\xcd\x9f\xf4\x4a\x4c\xff\xc5\x17\xe8\xc7\xf0\x24\x47\x69\x7a\x4b\x65\xca\xbf\x58\x08\xbe\x60\x69\xfd\x93\x4d\x65\xb7\xb9\x3d\x55\x6a\x54\x08\x54\xd9\x04\x7c\xaa\xa3\xe4\xa9\xe6\x4c\x3e\xd6\xa3\xa8\x4e\x21\x7c\x95\x11\xc9\xf2\x3c\x87\x47\x0f\x14\x4c\xfe\x93\xff\xb0\xf7\x6c\xa3\x61\x57\x8e\x3a\x9d\xdf\xfb\x5d\x4f\x67\x5a\x9e\x77\xac\x6f\xe7\x6d\x17\x0d\xac\xc9\xd9\x01\x1a\xd1\xfb\x55\x00\x50\x5c\x39\xd9\xa5\x00\x38\xcd\x58\xb5\x2e\xf0\x4e\x54\xff\xb6\x91\xf8\xff\x56\x77\x6c\xb3\x2c\x8a\x63\x4a\xfc\x51\xab\x3c\xa2\x49\x4f\x47\x5c\xe1\xb2\x8a\xca\x6d\x92\x97\x40\x17\x4b\xea\xe9\x11\xfb\x18\x57\xb4\x51\x9e\xa6\x6d\x0a\x65\x1a\x9e\xcb\x35\xf7\x7e\xde\xa6\x6b\x62\x5d\x69\x92\xff\x63\x7a\x1b\x88\x71\xaf\x23\xa8\x97\xba\x1f\xfd\x9a\x53\x85\x70\x0a\x0b\x70\x65\x44\x3a\xb2\xad\x24\xce\xef\x11\xb2\x08\xc1\xfd\x47\x74\x22\x21\xcc\x3a\x41\xf1\x0a\x6a\x5a\xcc\x6b\x55\x04\x54\xc7\x4a\xf6\x7a\x60\x7f\xff\x2c\xe0\x47\xd8\xaf\x3a\x9b\x8a\xd4\xbc\x05\xc6\x09\x44\xbb\x2e\xd0\x36\xbb\xfd\xd8\x26\xbd\x12\x34\xc6\xee\x33\xf2\x08\x65\x90\x1f\xa3\xa6\x85\xf5\x79\x5a\x91\x77\xff\xd9\xa6\x06\xef\xd3\xb2\x41\xf0\x73\x9f\x98\x64\x98\xf4\xff\x23\xc9\x5a\x49\x49\xb4\x3a\xeb\x85\x9e\x44\xfb\x3e\xf6\xa3\xb7\x79\x6e\x4a\xa3\x59\x29\x1f\xce\x6c\xd6\x0c\x9f\x42\xfb\x45\x95\x4d\xdd\x43\xab\x19\xd9\xde\x4f\x95\x5e\xf4\xae\x4d\x25\xc2\x87\x90\x1c\x51\xc9\xfb\x0a\xfa\x77\x03\x25\x17\x49\x8c\x3c\x82\x95\xc5\x02\x51\x73\xb8\xa7\xf6\x03\x86\x8a\xca\x82\x72\x48\x8f\x5d\x4f\xf5\xaa\xd7\x26\xad\x87\xea\x29\xb1\x34\xff\x7c\xda\xd0\x1e\x97\x1d\x5b\x41\xf5\xde\xa7\xf1\x72\xda\x2f\x9e\x8e\x7c\x55\x93\xa0\x76\x53\xb6\x86\xa1\xbf\xaf\xed\x9b\xf7\xb0\x69\x0d\xea\x96\x4d\xb5\xd7\xe5\xf9\xee\xc8\x71\xfd\x5c\xef\xd2\xfb\xff\x9c\xd5\x76\x2d\xb6\x4a\x61\xf3\x51\x34\xe9\x74\x7e\xe7\xf7\x1d\x24\xaa\x1a\x59\xbe\x76\xc0\x91\x89\x4d\x12\x39\x57\x85\xba\xa9\x79\x9c\x53\xb5\x00\x8b\x28\x29\xed\xe0\x31\x57\x6c\xfc\xf4\xb9\x9e\x92\x9c\xda\xa6\xb1\xaf\x15\xcf\x60\xad\xf3\x05\x40\xb1\xa5\x05\xa7\xf2\xbd\xce\xa6\xb2\xcd\x3e\xa5\x79\xe8\xe8\x46\x33\xf6\x99\x92\x52\x94\x37\x4f\x20\x40\xc3\x3a\x3f\xa3\x64\xbb\xcd\x60\x8d\xe4\x17\x67\x95\x88\x2f\x37\x8d\xf9\x06\xfb\x2b\xbb\xda\x2a\x1d\x0e\x6f\xcb\x99\xa4\xeb\x23\x9b\x41\xfe\x06\x33\x70\x96\x40\xfc\x8e\x96\xbc\xe4\x0c\xfb\x1e\xb8\xbe\xcb\x20\x33\xeb\x7b\x3c\xb1\xe1\x24\x46\xcf\x89\x40\x57\x0f\x8b\x13\x01\x69\x94\x70\xc0\xe9\x6b\x62\x1a\xfc\x02\x5b\x14\x60\x68\x47\x68\x14\x11\x9a\xde\x52\x65\xa7\x91\x4d\x06\x24\x07\x89\x08\x00\x3b\xfb\x71\x8c\x86\x6c\x6e\xbe\x49\x70\x47\xe9\x6b\x25\xa9\xa8\x83\xd4\x1a\x2e\x8e\xc4\x70\x5e\x51\xc4\x93\x68\x38\x42\xb3\x41\xf1\x03\x65\xd5\xfd\x5c\x81\x58\xf3\x91\x1d\x0c\x9c\xd2\x0a\x76\x37\xa6\xe3\xf2\x8d\x4a\xdd\xc2\x51\x16\xe5\xc5\xd8\x20\x23\x73\xda\x05\x5e\xc7\xc0\x95\x9d\x57\x62\x5b\x84\x23\x0b\xb0\x33\x1b\x1e\x2b\xc2\xf9\x77\xb4\x47\xec\x7b\x8d\x56\xd5\xfe\x25\x00\x12\xab\xd8\x6d\xfb\x16\xa1\xb2\x6f\x7d\xb6\xde\x6e\x38\x48\x9d\x36\x92\x38\x8a\x2b\x41\xf0\xd3\x4a\xc7\x20\x8e\x72\x62\x8d\x60\x85\x8a\xd1\x0f\xbd\x08\xb1\x00\xaa\x95\x7a\x62\x83\x7c\xca\x49\x6a\x57\x33\x4f\xe4\xae\x77\x9e\xbf\xfb\xf6\x75\x33\x2e\x43\x62\x0a\x1c\x55\x1a\x9a\x0c\x9c\x11\x5f\xaa\x27\x94\x39\x67\x64\x66\x14\xfa\xe4\x17\x34\x6f\x30\xbb\x00\xcc\x15\x71\x97\x67\x1c\xf0\x32\x2f\xa2\xa2\x04\x2b\xc1\x9d\x95\xef\x28\x25\x08\x4e\x56\x44\xae\xd2\x33\xd1\xe2\xa8\x6f\x33\x13\xd3\xd1\x8b\xe2\x87\xe8\x63\x63\x4d\x63\x3f\x76\x7e\x41\xde\x1c\x86\xa1\x0a\x18\xd1\x9b\x78\x16\x84\xff\x8f\x78\xed\xed\xc2\xda\x98\xdb\x54\x58\x75\x68\xd9\xa3\xcc\x7b\xb5\xd6\xec\x54\x25\xca\xab\xea\xfd\x84\x96\xaa\x3e\x2a\xe4\xbf\x8f\x31\x47\xa0\x3b\xab\x34\xbf\x4f\x37\x0a\x85\x2f\x2f\x1c\xea\x8e\x69\xd6\x38\xe5\x2d\x2c\x0f\xc9\x7f\x5a\x90\x67\x45\xea\xf5\x84\xc5\xb8\x42\x99\x55\x5c\x50\xdf\xcd\xae\x99\x5c\x14\xed\x9d\x9a\x8b\x57\x76\x69\x90\x0c\x0e\xcf\x77\xf3\x89\xb5\x5e\x01\x48\x68\xb6\x8a\x72\x1b\xfc\x5a\x4b\x93\xd6\xc6\x96\xf5\xf3\x91\x2d\xe4\x33\x9e\x67\xc6\x00\x44\xc4\x36\x0f\x54\x97\x63\xb6\xf7\xbc\xd7\x44\x1d\xd9\x6c\x9c\x8e\x2d\x59\x89\x55\xbf\xab\x14\x18\x1c\x53\x4f\x35\x72\x49\x91\x24\xcd\x3a\x8a\x0a\x81\x46\x18\x5f\xab\x4a\xfb\xa1\x74\x02\x0e\x1f\x16\x01\x34\xce\x59\x73\x8f\x7e\x85\xb9\x68\xbd\xea\x6c\x95\x90\xe3\xb3\x80\xa5\x7d\xbb\x91\x26\x83\x99\xea\x4f\xa0\x96\x00\x79\x1c\x2e\x21\x62\x8e\xe0\x4c\xec\x6c\xea\x96\x89\xc9\xd3\x64\x0f\xe6\x19\xda\xf6\x20\xd1\x22\xda\xf9\x3b\x1a\x14\x61\x50\x51\xe4\xe0\xd4\xc4\x14\x9d\x8a\xb6\x3b\xbc\xba\x9a\x3b\xe0\xa9\xe0\x79\x85\xf3\x7b\xad\x5c\xb3\x09\xa4\x2c\xab\x4f\x60\x8d\xf4\xc0\x9b\x9c\x9f\xae\xa1\xf0\x32\x93\x53\x57\x4b\x88\x32\x34\xde\xd8\x9c\xff\x2c\xf0\x4e\x5c\x77\x95\xf3\xd3\x05\x77\x2e\x8f\xcb\xb8\x88\x36\xac\xc9\x70\x30\x70\x43\x62\xda\xd9\xa1\xd5\x0f\x24\xf4\xa7\x3e\xa0\x47\x9a\x4b\xc0\x47\xfc\xc9\x2b\x58\x9e\x2e\xe4\xf1\x46\x7f\x97\xa7\xb5\xfa\xd5\x5a\x44\xf5\xab\x8e\x73\xbf\x3a\x45\xe1\xae\xcc\x34\x97\x6c\x95\xa4\x4d\xc5\x11\x0b\xe2\x5c\x16\xdb\xe3\x9b\x16\x9b\xd9\x05\x69\x87\x48\xef\x1e\xbb\xd8\x2d\xc5\xf2\x9a\x53\x1e\x0f\x37\x55\x4f\x6c\xcd\xc6\x6b\x16\x87\x97\x83\xa5\x78\xa6\x5e\x8b\x4e\xe5\xc1\xae\x4d\x06\xe9\xba\x14\xbf\xd0\xe4\x7c\x67\xaa\x3a\x9e\xef\xa8\xc2\xf2\x8a\x49\x92\x08\x64\x6a\x0d\x75\x97\xee\xe3\xce\x46\x3c\x79\x62\x96\x49\x5e\x66\xa2\x0b\x4d\x8f\xe3\x7a\xb1\x2e\x57\x6e\x5a\xaa\x2d\x1c\xea\x4e\x4c\x39\x11\x19\x6f\xe9\x18\x75\x9c\xda\xfc\xa9\xe0\x71\x5f\xb1\x89\x07\x9f\xa7\xf9\x22\x78\x69\x1a\x6d\x2c\xee\x27\x7a\x35\xa5\x51\x7a\xbd\xce\xda\xca\xf5\x15\x01\x11\x14\x8a\x8c\xdf\xa6\x6e\x06\x8a\x7b\x88\xe0\x11\x93\x97\x05\x64\xb1\x64\x59\x65\x13\x51\xeb\x59\x9d\xc6\xfc\x20\xa8\x72\x06\xe1\xbe\xe9\xb4\x75\x66\xd3\x2f\x7f\x6d\x7b\x1f\x97\xe4\x60\x57\xc5\xf9\x68\x3b\xdc\xa4\x4f\xe5\xeb\xc6\xc6\x7d\x78\x1e\xfd\xe6\x4e\x2d\x71\x56\x47\x78\x53\x56\xe5\xd0\x4b\x0a\xc2\xc7\x23\xa6\xdc\xd1\xda\x1c\xd8\x16\xba\x2b\x26\xce\xad\xd2\xd7\x39\xa3\xf4\x75\xce\xd4\xd4\x16\xc3\x34\x1b\xd8\xc1\x6c\x67\xf9\xc0\xf6\x1d\x25\x42\x8d\x6a\x9b\xd3\xc4\xd8\xbf\xb4\x7d\xa7\x51\x45\xfa\x4a\xd7\xe4\x39\x87\x19\x35\x3e\x72\x67\xc9\x13\x95\xfd\xf1\x1f\x9b\x84\x8a\x7f\x07\xb6\x49\xec\x7f\xfb\xca\xf4\xd9\x7a\xdb\xed\x6b\x0b\xdd\xe5\xf9\x6a\x8f\x64\xbb\x20\xe4\x47\x0f\x55\x97\xf8\xb2\xea\x41\xda\xd8\xae\x91\xed\x39\x16\x9d\x08\x4b\x57\xcf\x2c\xfe\xd0\x7e\xef\x39\xa1\x9a\x28\x99\x1d\x90\x4b\x83\x6e\xc2\xa3\x6a\x09\x81\x28\x91\xb8\xac\x5e\x38\x5f\xeb\x64\xfa\x61\xcd\x8a\xe9\xba\x6a\x85\xf7\x63\x13\xae\xee\xf5\xf3\xe4\x6a\xa0\x14\xbe\x39\x50\xc3\x2b\xf8\x23\xfa\x20\x27\xbf\xbc\x24\x91\xd6\xcf\x10\x88\x00\xc8\xc7\x9a\x42\xe2\x32\xe8\xe1\x1a\xd7\x1b\x35\xc0\xaf\x74\x89\xa4\x97\xb1\x73\x3c\x4e\x81\x8b\xb4\xc5\xf1\xb5\x9a\xb2\x45\x1a\xc5\xb6\x80\xf0\x1e\x4b\x0c\x07\x5a\x6e\x78\x67\x16\x57\x05\x7b\xd6\x4c\x3a\x9e\x59\x77\x01\xc7\xab\x24\x29\x7e\x04\xf2\x49\x5a\xd4\xde\x07\x36\x72\xe9\x77\xfa\x8d\xfb\x84\x2a\xe0\x02\xf9\xb9\x5b\x35\x83\xae\x2b\x2f\xbf\xeb\xa8\xc6\x2a\x9f\x64\x5f\x22\x55\x86\xe8\x57\xb1\x89\xf0\x4d\x5b\x98\x3d\x8a\xc2\x55\x2e\xe2\x49\xbe\xa6\x93\x37\x75\x18\x96\x89\x58\x8e\xc4\x50\x93\x43\x31\xff\x87\x53\x45\x0b\xfe\x21\xbe\x09\xa0\x98\xec\xbd\xc6\x37\x8d\xb7\xb3\xb8\xd8\x1d\xda\xa4\x8a\x46\x67\x55\x2d\xea\xa3\xa0\x4e\x0c\x74\x7e\x8e\xf7\xd4\xea\xbe\xae\xdc\x1a\xf2\x22\x2b\xc3\xa2\xcc\xec\x60\xae\xca\xc7\xf1\x3d\xae\xd2\x4c\x62\xb1\x19\x34\xcd\x45\xc0\xd0\xb3\x1d\x2e\x63\x0c\xa5\x27\xd1\xd2\xb0\x5c\x8f\x72\x1b\x92\x14\x0a\x46\xc8\x75\xf4\xab\xef\x2b\xb5\xba\x36\x22\xcf\xd0\x44\x2e\x17\xc7\x6b\xbe\x82\x39\xcc\x37\xee\x68\x8d\xa3\xc2\x66\x26\x64\x36\x3c\x76\x87\xd3\xaa\xb2\xfb\x88\x92\xb2\xb8\xd1\x72\xca\x92\x18\x6e\x48\x48\x40\x5d\x51\x3f\x15\xa8\x8a\xba\x3f\xc8\xd7\x47\x36\xb1\x6b\xe2\x0c\xe6\xb2\x9f\x97\x97\x05\x9c\xf8\x4c\xcf\xf3\x91\x6f\xd3\x52\x47\x09\xa8\xb3\x59\xdb\x1c\x6d\x52\xc4\x1b\x4f\x62\xc1\xb3\x10\x30\x50\x57\xa8\xbe\xee\x42\x5b\x58\x68\xcd\xd5\x13\x38\x58\x58\x35\x72\xf8\x87\xf7\x11\x9b\x09\xe2\x9f\x5e\x92\x40\xfe\xab\xb7\xa7\x4d\x32\x11\x91\xcc\x68\xb8\xc9\xfd\x40\xe5\x62\xdb\x88\x8a\x91\x18\xdc\x0c\x3c\x5f\xe8\x1a\x66\x27\x0b\xd0\x79\xef\x18\x1b\x17\x69\x62\x28\xc4\x68\xf5\x9f\x77\x9a\x5c\x14\x55\x68\x9e\x99\xe2\x03\x5f\x6a\x5b\x50\x61\x6c\x72\xa4\xc7\x78\x83\x3f\x0c\x14\x12\xfb\x87\xaa\xce\xdd\x4f\xd3\x55\xb8\xc5\x39\x22\x94\x57\x69\x65\xe1\x5c\xbe\xc1\xa3\x4a\x31\xcc\xa7\x51\xdb\x38\xbf\xf9\xa6\x4d\xa2\x63\x90\x99\xbc\x88\x42\x62\x4c\xa3\xe8\xc7\x26\x7d\x38\xe5\xdf\xa3\x97\x83\xb3\xfc\xee\xd4\x1f\x0c\x47\xdb\x28\x74\x7d\x13\x9b\x24\x04\x27\xc1\x05\xc2\x3e\x28\xd6\x6a\x1f\x26\x31\x43\x2a\xe1\xe8\x8a\xad\x6f\xbe\x7f\x23\xf0\xe7\xd1\x75\xda\x65\x91\x22\xbe\xaf\xba\xb4\x69\x18\x52\xba\x55\x6d\x0f\x3a\xec\xf4\x26\xfb\xac\x11\xc4\x0d\x71\x25\x3a\xf8\x83\xa9\xc6\x30\x9a\x6c\x02\x99\x01\x9c\x1f\xf7\xd5\x7c\x9c\xeb\xf9\xc6\xf2\xa7\x81\x12\x19\xbf\xa3\x0e\xe8\xd7\xd2\x7e\x3e\xa7\x3a\x27\xff\x06\x53\x0a\xd5\xa3\x77\xa7\xea\x4f\x03\xc3\x8a\x15\x73\x45\xc5\x62\x77\x1b\x09\xd0\xc2\xa1\xae\xc9\x8b\x34\x89\xf2\x91\x0b\x13\x10\x1c\x01\x21\xc4\xd7\x3d\x9f\x77\xbd\x6c\xf2\x39\x3a\x9b\x9c\x76\xc5\x61\x69\xc0\x7e\x32\x55\x8e\xa0\xb3\x3d\x5a\xce\x98\xa0\x7f\x3c\xf5\x63\x7b\xb5\xf1\x25\xc8\xa6\x0d\xa5\x04\x81\x64\xc8\x49\xea\x63\xf4\xeb\x6d\x6c\x90\x81\x5d\xb3\x71\x3a\x11\x50\xa1\xd6\x0b\x70\x11\x67\xf5\x95\x04\x5e\xea\x8f\xc2\xf0\x0d\x53\xa5\xa4\x0b\x87\x78\xa2\x6d\xa9\xa5\xbe\x15\x34\x23\x9f\xa5\x25\xa2\x0c\xc0\x51\x02\xba\x3e\xda\xcf\x41\x35\x7e\x17\x3c\x54\xd2\x33\x6a\xe6\xb0\xf7\x3b\x57\x0b\xaf\x47\x76\x14\x61\x84\xe8\xba\x78\xd1\x8d\xef\x60\x4d\x29\x4c\x9b\x28\x09\x42\x8a\x0e\x87\x4a\x53\xfa\xf1\xb7\xba\x66\x6c\xb3\x2a\x13\x13\xf2\x1e\xbe\xcf\x71\x6d\x68\x72\x5c\x55\xf3\x06\x59\x9a\x12\xc2\x05\xc5\x7d\x3c\xca\x1d\x70\x19\xf8\x26\x50\x95\x95\x35\x64\x2c\x38\x0c\x4f\xeb\x6a\xde\x69\xc5\x3e\x9a\x64\x76\x0d\xe6\x26\x1d\x85\xfb\x52\xf6\x6a\x6f\xb7\xad\xec\x95\x32\x2b\x46\x36\x9b\x51\x95\x96\xb3\xaa\xf2\x04\x57\x23\x89\x35\x5b\x45\xec\xb3\xc8\x59\x8a\x63\x47\x3e\x45\x9f\xc9\xd7\xd3\xe7\x95\x15\x08\x4d\x9d\xb1\x4d\xd8\x3a\xc7\x9d\x79\x87\xe7\xe5\xba\xcd\xae\x68\x25\x33\xc9\x6a\xf5\x3d\x3b\x1e\x60\xc1\xbc\x48\xa9\xd4\xc8\x29\x67\xcb\xc9\x28\xcd\x22\x43\x7c\x38\xec\xfc\xa8\x1b\x71\x96\x84\xdf\x92\x54\xb9\xfa\x5c\xe7\x1c\xef\x31\xd5\x0f\x94\xb0\x46\x98\x26\x85\x1d\x4f\xd2\xcc\x64\x1b\x08\x04\xda\xd2\x52\x29\x23\x67\xd1\xc0\x52\x5b\x12\x13\xf5\x2a\xa2\x42\x76\x65\x57\xda\xe8\xa7\x54\xdd\xf4\x8e\x76\x49\xb8\xdf\xc8\x5d\x16\x0e\x75\xe3\x34\x5d\x95\x33\x5e\xb4\xbb\x15\xbb\xa3\xc9\x0d\xa6\xb4\x35\xb7\x8c\x03\x6d\x53\x62\x6b\x39\xbc\xfa\x26\xe7\x60\x59\x0a\xc1\x9e\x5c\x7a\x5f\x05\xcb\x13\x93\x15\x02\x65\x91\x36\xa5\x46\xe7\x35\x7a\x1e\x87\xe7\x5f\xe9\x4e\x4a\xe8\xa0\x28\x67\x5e\x09\x15\x6f\x07\x1e\x1d\x75\x56\x15\xa6\x26\x69\x1c\x97\x05\x52\x36\xc0\x10\x6e\x4f\xbd\x91\xde\xed\x56\x73\x9f\x30\x4d\xc2\xb8\x74\x01\x11\xce\x0a\x1e\x2c\xbe\x69\xe4\x6c\xfb\xf6\x75\xe3\xb4\xdf\xf7\x0a\xcc\xc8\xb4\xcf\x2b\x39\xc7\xf3\x6a\xe9\x8a\xf6\x07\x4e\x26\xc7\x53\xf7\x12\xac\xdc\xa2\x70\xd2\xd0\xcb\xf3\x4e\x1a\x5a\xc9\x47\x24\x26\xde\xc8\x23\x76\xb2\x14\x34\x9c\x8f\xf7\x8e\x28\x0b\xc0\x4e\xaf\x46\xb8\x6e\x75\x45\x20\x93\x1d\xe3\xd6\x3e\xa7\xfb\x98\xed\x92\xfb\xb7\x04\xab\x07\xbb\x93\xd8\x24\xac\xc7\x82\xe4\xa5\xd3\x53\x85\x42\x5e\x16\x8c\x3b\xd6\xdf\x3f\x5b\x35\x49\x6e\x20\xab\x25\xa6\x45\x1d\xe5\xe1\xe7\x0f\xf3\x95\x32\x5e\x89\x58\x89\xac\x0a\x0d\x51\x94\x39\x4a\x0f\xcb\xd7\x0a\x13\xb7\xc2\x3a\xb2\x4b\x4b\xce\x31\x0f\x3b\x2a\xa2\xff\x0f\xf0\x85\xb0\x72\x20\x76\x21\xda\x09\xbe\x58\x6b\xe2\x38\x32\xc9\x1b\xbb\xe9\x41\x9c\xdf\xd1\xcb\x8e\x41\x85\xcf\x66\x95\x08\x0a\x41\xf8\xff\x23\x5c\x73\xf2\x11\x4b\x4b\x8e\x02\xa5\x0b\x7d\xb9\x59\x47\x42\x27\x06\x41\xd5\x0f\xa2\x4f\xcd\xb5\x77\xce\x31\xfc\xae\xf4\xfa\xc4\x24\xce\xea\x19\x19\xf4\x75\xd5\xbc\x3a\xa7\x97\xf3\x07\xaa\xe7\x32\x88\x72\x72\x24\xc8\x31\x33\x59\xa8\x8e\xbe\xbe\x88\xd6\x3d\xa3\x84\x6c\xab\xe0\x3c\xe2\xc3\x42\xd4\x99\xfd\x96\xf9\x4b\x95\x61\x46\xc9\xa0\xe4\x70\xce\x61\x89\x9c\x04\xc3\x65\x85\xdf\x08\x4d\x61\xe2\x74\x28\x68\x4c\x20\x0a\x8e\x51\x6c\xc1\xd7\xca\x26\x7d\x25\xcd\x6c\x34\x4c\xa0\xfd\x89\x15\x7d\x1d\xd0\x31\x39\xad\x3c\x26\x8d\x35\x60\x51\x72\xf8\xb9\xee\xf1\x5d\x0b\x74\x79\xf7\x5b\x53\x5f\xec\xb8\x39\x55\x0c\x54\x66\xb8\x89\x72\x88\xff\xfa\x7f\x19\x28\x21\xeb\xef\xb5\x6d\xa8\xeb\x04\xc0\x9a\xd3\xf2\xde\x70\xa0\x64\x06\x0f\xfd\x31\x74\x38\xd8\xb8\x16\xab\x72\x06\x12\x9d\x42\xdb\xf1\x55\xcb\x38\x2d\x45\xbe\xcb\x69\x6e\x38\xdc\x49\x9d\xac\x9d\xa5\xf1\xa3\x7e\xf3\x3f\xa7\x32\xdb\x37\x11\xa3\x80\x0a\x79\x9d\x36\x0e\x31\x28\x54\x1a\xeb\xe2\x7b\x8d\x80\x94\xb9\x98\x4e\x4e\xd4\x1b\xdb\xec\xda\xf4\xc5\x41\x46\xc7\xa1\xf0\x71\x4f\x53\x56\xd2\x31\xf3\x3c\xfc\xf0\x7d\xa2\x50\x65\x9f\x34\xd2\xce\xc5\xc5\xe5\x46\xb0\x83\xc4\xf6\x06\x96\x26\xdf\x34\xbc\x18\x0f\xcf\xbf\xe8\x62\x47\x47\x0b\x16\xc2\x2e\xfd\x26\x2f\xe4\x40\xd5\xfe\x8e\xab\x64\xbf\xb0\xe1\x28\x89\xbe\x5e\xda\x7c\x56\x19\xec\x3f\xc4\x33\xb3\xdd\x12\x8d\x3a\x8a\x09\x7b\x36\x3d\x1c\xf1\x5d\xef\xd8\x63\xfa\x26\xae\x9d\xe3\x5a\xbb\xaf\xc5\x71\xe6\x60\x37\xed\xe7\x36\xa3\xba\xda\x46\x87\x6a\xa9\x0e\x41\xa2\x6c\x3b\x77\x1e\x2a\xaf\xbe\xda\x8d\xad\xc9\x92\x28\x19\xce\x29\xa3\x83\x6d\x42\x5b\x72\x0e\x3c\x55\xb5\x64\xa4\x30\x62\xe5\xe3\xd5\x47\xfe\xbd\xc2\x29\xfd\x27\xff\xd9\x6f\xcc\x74\x16\x17\xb7\x7f\xa9\xdc\xde\xb9\x52\x8a\x9b\xe3\xaa\x61\xd5\x8f\xc2\xd5\xf5\x08\x91\xbd\x13\x1f\xf7\x1c\xe9\xcb\x0e\x5c\x16\xa7\x26\x99\x53\xfb\xde\x5b\xa4\xc7\x23\x38\x33\xbc\x26\x3c\x25\x4e\x44\xcc\x3b\x74\xbf\x44\x8d\x59\x7d\xac\x19\x0e\xcd\xb0\x2e\x6f\x5f\x33\x16\xde\xc9\xff\xa7\x52\x1a\xa6\x9f\xc2\x40\x2f\x38\x74\xb3\x3f\x19\x8a\xcc\x92\xe5\xa2\x73\xbf\xbb\x32\x55\x0e\xe5\x57\x1a\x81\xe3\xf2\x7c\x37\x2f\xfb\x6b\x96\x94\x21\x68\xdf\x60\x7b\x78\xa5\xda\xf6\x53\x6c\xbc\x32\x15\x7c\x90\x63\xc6\x69\x99\x14\x7b\xaa\x0f\x63\xfd\x10\x2c\x21\x64\x5d\x38\xa9\x91\x66\x7c\x4c\x6f\x43\xfe\x3f\xfd\x39\x81\x09\x29\x9c\xe4\x79\x5a\xce\x22\x45\xb2\xf3\xab\x56\x11\xd2\x20\xca\x94\xa7\xaf\x82\xd5\x2f\xc8\x8d\xaa\x1f\x84\xa3\x08\xba\xc3\x62\x33\xa6\x9c\x3b\x59\x51\x9f\x2b\x67\x14\x5b\x8b\xdd\x8c\x76\x64\xbb\xa7\xac\x66\xf9\xab\x4a\xfe\xab\x14\xfc\x2e\xa8\xfe\x71\x48\x7a\xa2\x6c\x38\x89\x21\x7b\x58\x5b\x3d\xd5\x68\xc9\xf5\x13\x8e\xea\xb5\x26\x3d\x5d\x61\xd9\xd1\xb4\xc7\xd4\x01\x6e\x07\x5d\xa0\x4e\xaf\xd1\xd3\x3d\xd0\x35\xf9\x2a\xcf\x8e\x9a\x9b\x92\x54\xe4\x9f\x71\x5d\xaa\x89\xcd\xd6\xa2\xbc\x5a\xa3\x7e\x21\x3d\x42\xf9\x34\x5f\xf7\x76\x2e\xd1\xc5\xc5\x6e\x66\x27\x65\x3f\x8e\xc2\x8e\x0a\x2a\x2e\x69\x74\xc2\xa5\x96\xa0\xe9\x60\x77\x14\x0d\x47\x36\x83\x78\x1e\x67\x49\x48\xdd\xb0\x83\xc1\xf0\x11\x1f\x7b\x13\x19\x29\x6e\x9e\xea\x49\x0d\x6a\x62\x8a\x2c\x4a\x91\xcf\x60\x5b\x87\x2c\x3c\x5f\xd7\xdc\x9b\x63\x88\x49\x08\xa0\x49\x29\xaf\x03\x2b\x0c\x6e\x1b\x58\xda\x7c\xed\x98\x7c\x26\x5c\x4d\xd2\xf5\xd8\x0e\x86\x76\x46\x91\x9b\x66\x7b\x1e\xf1\x79\xb7\xae\x3f\xfb\x59\x4e\xce\xd5\x09\x47\xef\xc1\x49\xd8\x2a\x3d\xdb\x9d\x4e\x32\x55\x48\x7a\x78\x7e\xe9\x51\x08\x02\xd3\xa6\x89\x77\x0c\xc5\x6e\x47\xa1\xf6\xe8\x99\x1f\x04\x8a\x4f\x2d\xca\xba\xa8\x80\xc1\x25\x0e\x1b\xd2\x7d\xcc\x4d\x87\xc3\xdb\x2f\x49\x1e\x6b\x80\xe0\x98\xfe\x89\x72\x23\x2d\xd2\xf4\xf3\xd5\x12\x40\xa9\x12\x8e\x27\xec\xcd\x1e\x28\xa4\xe0\xcf\xb1\x02\x70\x74\x6e\x63\x8a\x22\x6d\x9b\xd9\x54\x40\x78\xe6\x7b\xa0\xc5\xfb\x11\xbd\x32\x91\x07\xf4\xa9\x09\x7a\x07\x38\x92\xbf\x4d\x75\x03\xbe\xae\xdb\xe5\xe2\x19\x05\xc3\x4c\x5b\x19\xf2\x84\xf3\x9a\x17\xd4\x26\x16\xd5\xed\x9b\x24\x71\xe9\x0a\xa2\xc6\x7b\xca\x97\xf4\x5e\xcb\xa9\xdd\x35\x61\x68\x27\x85\xe9\xc7\x56\xe5\x78\x47\x54\x8e\x77\x44\x89\x79\x57\x39\x5e\x14\x46\x13\xa1\xaf\x33\xc4\x09\x83\x24\x96\x97\xbe\xb0\x70\xb9\x51\x5f\xda\xb7\x8f\x6c\x47\xf1\x27\x20\xcc\x03\x6a\xd5\x23\xa8\xe3\xe2\x45\xdd\x41\x3c\x87\xa8\xeb\x68\xab\x7d\x0d\xc1\xe3\xbd\x23\x4f\x07\x41\x1f\xdf\xa8\x1a\x99\x2d\x0c\x6d\x32\x40\x40\x5e\x51\xe1\x20\xd7\x4b\xc4\xcc\xbe\x25\xfd\x2b\xb2\x32\xf4\xd2\x48\xfa\xb0\xe3\xeb\x16\x3d\x1f\xf2\x1f\x0b\x29\xe2\x6b\x4d\xb6\x7c\x50\xdc\x37\x93\x22\xca\x21\xa3\xe4\x44\x60\x96\x96\x9c\xee\xcb\x33\xae\x1d\x30\x1c\x15\xeb\xb6\xfa\xef\xac\x87\x84\xb3\xd1\x7a\xcd\xa2\x45\x4b\xd8\x62\xfa\x76\x7a\x2d\x1d\x96\x15\x13\x65\xeb\x66\xa3\x56\x8f\xf6\x91\xc5\x0f\xa7\x1e\x96\xb6\x96\xc6\x65\x52\x58\x54\x81\x5e\xa9\x99\xbc\xa0\x94\xbe\x15\xf8\x02\xee\xc9\xc6\xec\x5a\x38\xd4\x35\x83\xd7\x4a\xa1\x77\x39\x9c\xc2\x39\x25\x46\x78\xae\x31\x45\xf6\x2f\x31\x1a\x91\x08\x47\x33\x9d\x1d\xfa\xcc\x6c\xe0\x84\x27\x16\xac\x86\xc3\x3d\x98\x6c\x3d\x72\x32\x3e\x58\xa8\x8c\xec\xe3\x9b\xba\x98\x58\x35\xf5\xa3\x34\x41\x18\x00\xe2\xf8\x49\xc5\x72\x83\xe7\x10\x16\xff\x5b\x2a\xac\x2f\xca\x70\x55\x38\x3e\x22\x7b\x43\x1b\xbd\xe8\xde\xc8\xf7\x19\xc6\xd6\xae\x94\x60\x4d\x39\x1f\x74\xcf\x5e\x6e\x16\xce\xbe\xd2\xb5\x26\x1b\x9b\xcc\xd5\x75\x00\xc0\xfe\xa6\x76\x33\xfd\xa6\x97\x79\xb4\xc3\x8c\x41\x11\xa8\x62\xe0\xb4\xe0\xeb\x16\x4b\x89\x03\xdd\x37\xcc\x9a\x98\x54\xb5\xce\x4f\x5f\xd0\x18\x96\x26\x33\x09\x90\x85\x3e\x4e\xd3\x26\xc3\xcf\x2b\xf0\xa8\x89\x12\x9b\xf5\x53\x93\xf1\xb0\x48\x79\xd5\x63\xbd\xfc\xd9\x8f\xc3\x75\xef\x0e\x2a\xbb\xf0\x77\xe6\x00\x65\x40\xfa\xb5\x8b\x88\x94\x08\xca\xd0\x73\x06\x24\x5a\x2b\x66\xbc\xa7\x6d\x2e\xde\xf1\x0c\x90\xf9\xe7\x1a\xb3\x9f\xd8\x1c\xa3\x34\x2b\x79\x08\x9c\x6f\xac\x53\x7b\x3f\xeb\xdb\x3c\xb1\xc9\x8b\x59\x3f\x19\xce\x4d\x95\x9c\x52\xa0\xa0\xad\xa8\x08\xf0\x0f\xb5\x58\x18\x7a\xd8\x22\x4f\xe4\x2d\x85\xe5\xdc\x6a\x44\x12\xd5\x1e\xb2\x11\xd9\x78\xb0\xd3\x4b\x4c\x15\x8c\x04\x1e\x64\xf3\xdc\x92\x0e\x15\x16\x28\x22\xf5\x5f\xa9\x3a\x00\x0e\x36\x6c\x78\x0f\xda\xd4\xdf\x56\xb2\xc8\x26\x03\x86\xf1\x38\x8a\x57\xf5\xb9\x7c\xa3\xf4\x56\xe2\xb2\x4f\xf9\x5d\xd1\x51\xda\x36\xa7\x02\xdf\x2f\x39\x35\x7d\xcc\x9b\xc6\x2d\xfc\x33\x6a\xff\xa1\x6b\xfb\x16\x7a\x79\xce\xa1\xb0\x7a\x61\x40\x12\xec\x85\x1e\x8e\xab\xda\x1f\x70\x00\xea\x5f\x4c\x95\x50\xe6\x3b\xe4\xfc\x81\xb8\x02\xa2\x89\x18\xfc\x2b\xd0\x79\xc0\xdf\xba\x4d\x20\x6d\x89\x7d\xb5\x0c\xff\x4c\x0f\x15\x75\x54\x3c\xce\xd0\xe9\x8b\xca\xea\xae\xcd\xce\xd7\x44\xee\x16\x29\x00\x56\xd9\x3d\x50\x15\x31\xd7\x77\x6d\x7a\x17\xc0\x73\x81\x6a\x8e\x72\x85\x06\x91\xc3\x23\x9b\x2a\x46\x7f\x1f\x47\x37\xba\x14\x4f\x6f\xd6\x03\xf1\x2a\xf6\x13\x85\x82\x6a\x8b\x71\x98\x86\x6a\xe6\xbb\x58\xcc\x69\x78\x5e\x27\x26\x02\x7a\xf9\x77\x00\xf5\x17\xcb\x24\x3f\x2b\x7e\x4e\x65\x6b\x24\xb9\x7f\xaf\x04\xea\xb5\xe9\x57\xbf\x4c\x56\x6d\xd6\xa9\x32\x39\x91\x6e\xa9\x86\x52\x24\x5d\x94\x2d\x42\xba\x61\xe2\x22\xb2\x5c\x60\xc2\xa7\xfd\x35\x8d\x3b\x5f\xb7\xc8\xfc\xad\x99\x32\x91\x9a\x81\xd4\xb3\x95\x51\x9f\xa6\xc5\x87\x69\xb2\x52\x02\xd1\x5d\x4d\x12\x0c\xd9\xcd\x40\x51\x87\x39\x42\x16\x89\x08\x45\x72\x6f\xe2\x78\x16\x0e\x75\x27\x65\x66\xb9\xd2\x22\xb6\xcc\x9e\x56\x7f\x5e\x55\xb8\xc8\x3a\xc3\xd2\xb1\x82\xf2\xca\x5d\x95\x36\x1f\xaf\x03\xe3\x3c\x93\x34\x0f\x47\x69\x1a\xe7\x7b\x55\x38\x86\x4a\x8c\x13\x03\xdd\x2f\xa5\xdd\xeb\x53\x6f\xc9\x01\x15\x2c\x85\xc8\x58\x70\x4a\x8c\xd5\x03\x6d\x6f\x05\xaa\x6f\xf8\xdd\x66\x1b\xa5\x0a\x74\x06\xe9\x84\x33\xd5\x57\xb6\xaf\x4c\x95\x82\x1e\xd7\xaf\xc5\x54\xcd\xbf\x65\x13\x9a\x41\x64\xb0\xa4\x85\xa3\x44\x3f\x2a\x6c\xf1\xc7\x95\xa3\x4d\xfa\x9c\xaa\xca\x5d\x54\x44\x8a\xa3\xb4\x48\xb0\x98\xf6\x6e\xaa\x5e\xfa\x03\x1a\x30\x21\xc2\xd2\x8b\x71\x12\xad\xfb\x16\xdc\x2a\xf1\x00\xa1\x9f\xa2\x7d\x86\x9d\x80\xc3\x7b\x20\x2c\xee\x02\x22\xa0\x72\x38\x29\x03\xce\xf6\xaa\x29\x8f\xb7\x32\x47\xf9\x1a\x4e\x11\xf6\x4d\x43\x8d\xb1\x03\x46\x8c\x73\xf7\xa9\xf6\x0e\x84\xd1\xbb\x50\x1b\x17\x1c\x87\x6f\x24\xed\xd9\xd4\xae\xab\x4f\x35\xb2\xbf\xa5\x25\x8e\x59\xd8\xd9\x53\x25\xf0\xa2\x05\x0f\xd0\x32\x06\xe9\xaf\xa6\x0a\xac\x57\x16\x4f\x2b\xe3\xd6\xbf\xc3\x98\x4b\x10\x5b\xad\x39\xf1\x9c\xa2\x99\x8d\x95\x7a\x1d\x7f\x19\x8f\xf0\x18\xe8\xf6\x22\x9a\x4d\x43\xcb\x3f\x86\x21\xc4\x8f\x69\xc3\xc8\x93\xaa\x28\xf4\xd7\xd8\x3f\x10\x58\xcd\x6c\x7a\xd1\xca\xf7\x6a\x5c\x57\x74\x36\xb1\x8c\x21\xd8\x20\x70\x1c\x9a\x09\x82\x1c\xa7\x37\xce\x96\x7b\xaa\x34\x38\xc9\x4c\x58\x44\xa1\x85\x75\x20\xba\xb9\xbf\xc2\xa3\xb2\x7f\x6e\xe0\xc1\x74\xef\x20\x33\xc0\x03\x79\xcc\x89\x29\x46\xb1\x2d\xb8\xab\xe4\x2c\xc5\x5c\x67\xee\x6f\x1a\x0b\xe1\xab\x2f\x77\x87\xd1\x9a\x35\xeb\x66\x63\xc6\x9f\xd5\xff\xcf\x74\xa7\x37\x38\x46\x5e\xcb\xa1\x9a\x2a\x65\x99\xd5\xf2\xb7\xf4\xc4\xd2\xb8\xa4\xf7\xe5\x24\x89\x9c\xf2\xdf\xa9\x46\xbe\xbb\x70\xa8\xbb\x16\x85\x45\xea\xa8\xbc\xe8\x98\x9d\x0c\x14\x20\xf9\xa4\xeb\xf7\xc5\x2f\xbc\xf6\xc2\x4c\x83\xbf\xe9\x8c\x92\x16\x17\x1d\xa9\xbc\x0d\x92\xd8\xb7\x71\xba\x4e\x70\x2a\x67\xa8\xe5\x04\x7d\xbe\x4f\xcf\x29\x0e\x60\xd5\xa3\x60\x52\x3e\x74\x31\x67\x16\x0d\x06\x8e\x4c\x8b\x28\x6a\x76\xd3\x73\xfc\x67\x1b\xe5\x94\xfd\x4b\xb0\x73\xc0\x56\xef\x80\x8c\xbe\xb6\xa2\x54\x4e\xa3\x64\x10\xad\x45\x83\xd2\xc4\xac\x3f\x2f\xa4\x7b\x6f\x46\xfc\x5f\x2b\xa9\x0f\x48\x46\x60\xb1\x3e\x0c\x76\x14\x7b\x16\x7c\xc2\xef\x9d\xbe\xdf\x9f\x2a\xc8\xd2\x96\x12\x9e\x32\x63\x93\x33\xa1\x16\xa7\xed\x9b\x38\x46\xf9\xa6\xcd\xda\x64\x60\x57\x00\x51\xf6\x32\x2a\x30\xc4\x97\x44\x46\xd7\xdf\xa3\x71\xca\x69\x83\x1c\xf9\xaa\xde\xb3\xab\xe7\x4b\x80\x83\x28\x9f\xd8\x98\xf0\x0a\x98\x6e\xa8\x37\xf0\x75\x5b\x1e\x09\xec\x27\xa7\xbb\xd8\x37\xcf\x60\x00\x04\x59\x43\xcf\x8c\xe0\xe8\x46\x0b\x05\xf9\x60\x37\x33\xc9\x90\x33\xd1\x03\x5e\xce\xb1\x7a\x5f\x5e\xce\xd1\x5b\x81\xad\xa4\x61\x9a\x81\xbe\x2b\xc6\x7c\x1d\x27\x30\xfb\xed\x9a\xc7\x61\x18\x47\x09\x81\x5a\x9d\x74\x60\xcd\xa8\xa9\x7a\x95\x4e\x1c\xd9\xeb\x6a\xbe\xab\xca\x7f\xc5\x88\x4c\x13\x9e\xf5\x18\xf7\xc7\x78\x8f\x45\xa8\xbe\x3d\x55\x96\x65\x67\x89\x5f\x87\x73\xe8\x7b\x88\xb0\x24\xbd\xa2\x3f\x8f\xaa\xe8\x03\x9a\xd8\x5c\x1a\x07\x7f\x50\x0a\xcf\x33\xde\x26\x7a\x0b\x11\x16\xbe\xde\x55\x25\x85\x8a\xca\x10\xf6\xfe\xa7\x50\x57\x40\xac\xf7\x18\x20\xd3\xf8\x97\x87\x4a\xe1\xe0\x2c\xe6\x12\x76\x33\x68\xb1\x72\xff\x08\x73\x93\xff\x21\x50\x90\x9f\xbd\x0d\x6e\x07\xb0\x33\x44\xa3\xa3\x4e\x1b\x56\xcf\x69\x6d\xe1\x70\xba\x65\xbd\xbf\x48\x16\x3c\x1b\xc8\x41\x9d\xb6\xa9\x83\xcd\x3c\xa0\xdd\x5a\x1c\x8d\x7d\xd9\x3b\x2d\x8b\x30\xe3\xdf\xc2\x34\x7a\x47\xe9\xec\xfd\x59\xe0\x73\x80\x0f\x14\x0a\xcb\x14\x45\xb5\x7f\xa3\x3f\x8b\xdd\x05\x26\x74\x7c\xad\x3e\x20\x1a\x4f\x4c\x58\xcc\x79\xc8\xc6\x53\x3d\x8f\x60\xf8\x53\x05\x0c\xdb\xb5\xe9\xd9\xc8\xe7\x75\xe5\xe6\x82\x9a\x69\x71\x1a\x7a\xcb\x14\xfc\x3d\x0e\x66\x44\xac\xd7\xd3\x8a\x9b\x06\x84\x0b\x87\xba\x59\x44\x1a\x88\xbe\x2e\x7c\xb1\x4e\x9e\x6a\xab\x9d\x47\x49\x98\x8e\x5d\x01\x07\xe1\xf0\xb5\xa9\xc7\xca\x5d\x0b\x76\xc8\x19\x1d\x7a\xa9\xfb\x1f\x11\x4e\x03\x05\xd3\x6f\x6b\xf9\x9a\xd3\xd3\x5d\xbf\xc6\x91\xec\x7d\x1a\x32\x9c\x8d\x1f\x6a\x21\xee\x33\x6d\xee\xaf\xe1\x88\x17\x6f\x67\xa9\xe6\xf0\xfe\xa2\xab\xa5\x7b\xe1\xc1\xf5\x28\x19\xb2\xa8\x2a\x66\xfc\x25\xfc\xa4\xb0\xd6\x7c\xc9\x13\x14\x3b\xa1\xb6\x29\x68\x9a\x89\x50\x6f\x40\x5c\xf8\x8b\xc0\x63\xe0\x7e\xe1\xd9\x1b\x93\x32\xcb\xdc\xc0\x20\x16\xfa\x86\x52\x45\xff\x86\x46\xcb\xd9\x49\xf1\x82\x8a\xe9\xdf\xd2\xa8\xc8\xb7\x1a\xaf\x6a\x79\xde\x35\x91\x5d\x81\xf0\x82\x36\x61\x54\x6d\xec\x89\x89\x92\x95\x92\x44\x94\x97\xe5\x7c\x3e\xa7\x1c\xdd\xcf\x35\x3a\x22\x52\x76\x1e\x1a\xcc\xfd\x17\xbd\x5c\xad\x2b\x93\x33\x0f\x1c\x13\xe3\x5e\x1b\xd5\x36\x8b\xd8\x38\xaf\x15\xae\xdc\x86\xa8\xcd\xed\xc4\x28\x9f\x7a\x11\xbc\xf5\xc7\xea\x7d\x5d\x39\x89\xca\x38\x32\x49\xa4\xc5\x01\xcf\x28\xfb\xf2\x33\x2d\x36\xda\x07\xc8\xdc\x7e\x25\xe2\x29\x2e\x3f\xa8\x7c\xf9\xce\x04\x8f\xba\x3d\xf7\x5f\x3c\x81\x1d\x16\xd3\xf8\x0a\xa5\x87\x08\x35\xe0\x36\x8a\xa1\xde\xc2\xaf\x33\xa3\x7c\x5a\xa3\x97\x57\x1f\x02\x6c\xc2\x7b\x55\x9c\xdf\xf3\x62\x6e\x37\x02\xe5\x37\xf9\xa1\x76\xa2\xfc\x90\xb6\x65\x67\xda\x5e\x4d\x52\xe0\x4f\xef\x68\xd0\xd5\x6c\xcf\x13\x08\x56\x2d\x6c\xeb\xb7\xaf\x10\x31\xe2\x4a\xe3\x65\x2c\x2d\x75\x47\x69\x8c\x50\x1b\x21\xc3\x47\x53\xe5\x02\x7c\x11\x5f\x1a\x87\xce\x4d\xaf\xf4\x00\x65\x77\x5e\x28\x38\x00\xb8\x6c\x0f\x88\xc5\x43\x04\x76\x08\x8d\x3a\x3d\xaf\x8d\xe8\xa5\x53\x26\x36\x2f\xa2\x90\x74\x09\x95\x60\xf3\x79\xa5\x64\x7f\x5e\x41\xd4\x8c\xcd\xd2\xc4\x94\x05\x59\x99\xd0\x77\x42\xd9\x1a\x20\x0f\xbe\xae\xd1\x44\x33\x33\x04\x80\x1b\x3b\xc3\xae\x9e\x6f\x0a\x7c\x5a\x33\x8a\xfc\xbc\x0a\xae\x4c\x18\xa5\x33\x1e\xa4\x77\x4f\x1d\x6a\x97\xb4\x56\xe9\x19\x57\xf1\x4c\x13\x5b\x44\x63\xd4\xee\x91\x67\x42\x2b\x90\xaf\xd5\x7e\x9e\x45\xe0\xde\x7a\x62\x97\x22\xb1\x7c\xa8\x38\x4b\x57\x6b\xcf\x91\xaf\xf4\x29\xab\xc6\xc4\xe1\x6f\xc1\x37\xad\x8e\x35\x23\x6b\x33\xad\x24\xfa\xab\x40\x27\x0a\x52\x5d\xcb\xd2\x3e\xf7\xb9\x80\xd5\xfd\x31\x3d\x2a\x5f\xd7\x02\xb3\x55\x3b\x46\x2a\x2b\x24\x44\xfa\x06\xc2\x42\xf4\xfb\xd4\xba\x8d\xa4\xf8\xe8\x8a\x74\x3e\x94\x24\x4b\x52\x2f\xc7\x6e\x63\x5b\x2d\xe7\x5c\x97\xf6\x4f\xab\xd2\xfe\x69\x95\x42\xe4\x63\x13\xc7\x4f\xfa\x60\xe1\xee\x54\x89\x3b\xfd\x60\xea\x8f\xe7\x5d\x68\x42\x48\x40\x4e\xb9\xa9\xb3\x96\x71\x61\xcf\x7b\xaa\x56\x80\x9c\x03\xe5\x97\x63\x48\xf1\xb0\x6d\x5d\x55\x6c\x90\x5f\x68\x8c\x2a\x78\xe6\xd2\xd7\xa7\x71\xc1\xb2\xe5\x20\x12\xd0\x92\x4f\xd1\x33\xa1\xaf\x3f\x4a\xb3\x22\x0a\xcb\xb8\x28\x33\xcc\xdd\x57\x18\x3e\x22\x7d\x5f\xbe\x0b\x3c\xb8\x67\x92\xa5\x6b\x51\x4e\x46\x56\xf4\xf3\x4e\x07\x51\x73\x10\xbd\x10\x6a\xdf\xbc\x06\xd8\x3c\xa2\xac\x8f\x03\x15\x72\x7d\xac\x90\x7b\xb9\x19\x97\x99\x89\x76\x57\x3f\x2a\xda\x6e\xaa\x6d\xf3\xe3\xa9\x12\xeb\x64\x4b\x34\x99\xee\xd5\x90\x09\x08\xa9\x1a\x32\x41\xc6\xe9\xd2\x56\xb8\x1a\x5b\xa5\xaf\x7f\x76\xaa\x64\x0f\xb8\x00\xc2\x37\x54\x26\xe4\x9f\x52\x2c\x7c\xd7\x13\xed\xf8\x1c\x0b\x1d\x0e\xbe\x56\x05\xa1\x22\xca\xf3\xd2\x02\x76\x20\x46\x76\x14\x8e\x8a\xc3\xdd\x73\xfe\xb1\x47\x26\xb3\x90\x37\xa6\x38\x5b\x9c\x34\xd5\xa1\xf3\x26\x2d\x3f\x44\xc2\x5b\x8a\x0b\x78\x45\x09\x1f\xe5\x85\xcd\x6c\xaa\xda\xd8\xa8\x70\x09\x36\xa4\x19\x58\xbe\xd2\x5d\x89\xcb\x1c\x85\x67\x76\xb0\x57\x68\x83\x8b\x0a\xcc\x65\x62\x09\xcf\x3a\x2a\x37\xa5\x1f\x96\x3c\xd5\xff\xf0\xc0\x4e\x6c\x32\xb0\x49\x88\x45\x2e\x72\xef\xb4\x2a\xf9\xc6\x55\xfa\x87\x36\x1a\x5a\xe6\x10\xcb\x17\xa5\x1f\x94\x27\x78\x6e\x67\x83\xf8\x60\xf7\x6b\x0b\x33\x3e\x02\x63\xed\x4d\x2c\x3c\xc8\x7c\x6d\x5f\x51\x2e\x9e\xf9\x28\x4b\x93\xe2\x0d\x7c\x02\xd2\x3a\xee\x8c\xf1\x8d\xca\x8b\x92\x74\xcd\xc6\x64\x8b\xe5\x11\xe3\xf4\x76\x05\x3d\x2e\x32\xb4\xe5\x68\x0e\xd5\x62\x01\x07\x6b\xcd\x9c\x6a\xea\xe0\xd8\xdd\x4b\x5b\x3a\x0e\x2a\x6e\x5a\xe0\xe5\xdf\x52\xd9\xd1\xd8\x0e\xaa\x33\x63\xaf\xfa\x4e\x0c\x20\x17\x25\xd2\xea\x8f\x3b\x09\x7a\x97\xf6\xfc\xbb\xa9\x92\x79\x23\xd9\x88\xed\x0b\xaa\xa2\x79\x59\x8b\x99\x06\x5f\xf2\x86\x5b\x7a\xb1\xc7\x1b\x33\x9d\x7d\xfb\xb8\xcb\x7c\x7e\x8a\x67\x62\x21\x77\xf4\xab\x90\x3c\xde\x6b\x53\x2e\xab\xa6\x5b\x14\x47\x6f\x48\xc8\x23\xca\x25\x1d\x27\xc5\x7c\xac\xd1\xf0\xab\x5e\x1f\x73\x62\x45\x39\x57\xd4\x6d\x95\x8c\xec\x29\xd7\x62\x19\x96\x79\x91\xea\x7e\xd1\xd5\x9a\x36\x80\xb3\x3f\x8d\xad\xc9\x0d\xd3\x11\xc4\x66\x53\xb3\xe5\xa4\xec\x52\x98\xb1\x9d\x51\xab\x67\xea\x85\x7a\x10\x20\x22\x54\x78\xe0\x9d\x47\xd3\xb2\x1f\xdb\x01\x37\x43\x11\x25\x9f\xd1\x2e\xef\x67\x3c\x56\xd3\xe4\xc5\xba\xc9\x06\x33\x4a\xd2\xfb\x04\xbd\x3c\x6c\x88\x28\x23\xa3\xe0\x79\xb1\xd1\xd4\x5c\x9e\x5f\xee\x96\xa4\xf1\x51\xa4\x29\x8f\x28\x62\xa7\x13\xca\xf7\xe8\x44\x6b\x60\x08\x41\x38\xe7\xff\x83\x42\xc3\x11\x2d\x7b\x7b\xa4\xc5\x20\xcf\x64\x79\x9a\xe8\xd0\xe6\xb2\x82\x0e\x5f\x56\xbb\xde\xd8\x16\x66\x32\x4a\xb3\x9c\xd4\x64\x5c\xf9\x47\xf1\x5b\xdb\x34\xd1\x0a\xfb\x7a\x11\x41\x79\xff\x15\x4e\xfb\x2f\x2a\x7a\xe6\x15\xda\x3c\x10\x98\xfd\x8d\x32\x4f\xca\xa2\x35\x13\x77\xbc\xcf\xda\xd9\x40\xe1\x23\x1a\xf3\x49\xa2\xfd\xf5\xb4\x8c\x07\xb3\x9d\xaf\x2d\x70\x82\x38\xdb\xa3\x52\xef\xff\x47\xd9\x9f\xc7\xc8\x72\x65\x67\x62\xf8\x7b\x59\x55\x6f\xe7\xd6\xcd\xd6\xae\xdf\xa4\x20\xfd\xd4\x02\xdc\x22\x20\x8c\x67\x0c\xeb\x9f\x48\xd7\x2b\x89\xcd\x07\x75\xb1\x50\xef\xe9\x51\xe6\x1f\x06\x6f\x65\xde\xca\x0c\x56\x64\x44\x2a\x96\x2a\x16\xe1\x01\x06\x86\x21\x0c\x06\x82\x60\x7b\x3c\xb6\x67\xc6\x9e\x91\x07\x63\x19\xd6\x8c\x6d\x2d\xee\x91\xac\x56\x2b\xb2\xd5\x2d\xb1\x5b\xec\x85\xec\x85\x6c\xee\x6f\xdf\xf7\x7d\xa7\x11\xe7\x3b\xe7\xde\x13\x15\x41\xc1\xfe\x83\x40\x04\x5f\x65\x66\xc4\x5d\xce\x3d\xcb\x77\xbe\xcf\xb9\xfe\xbf\xfe\x79\x76\xc1\x18\xc7\x2f\x3d\x26\x2d\x22\x9f\xb9\x99\x88\xc7\xc7\x04\xb4\xb4\xa2\x85\x8c\x76\x2b\x0c\x8d\x34\x02\x92\x19\xcf\xbe\x71\x07\x06\x49\x00\xc3\xb5\xa0\xdd\xf9\x64\xeb\x36\x8d\xcc\x66\x47\xc7\x53\x1d\x27\x2b\xf6\xc5\xb6\xae\xc7\xc8\x9a\x61\x21\x0f\x26\xee\x8b\xaf\x72\x5d\x2a\xbd\x44\xba\x8d\x32\x1e\xf6\x56\xc5\x9e\x9a\xb0\xcf\x5e\x7f\x5e\x3d\xd3\xa9\x71\xdd\xd7\x69\xf0\x3d\x50\x8f\x99\x03\x66\xab\x29\x42\xea\xf9\x6c\xe9\xcf\x01\x24\x26\xe4\x64\xaf\xac\x15\x5c\xf3\xed\x8d\xa4\xe2\x81\x03\x07\xbb\x59\x28\x0e\x84\x60\x27\xe8\x49\x05\x3c\x21\xc3\xb5\x46\x24\x45\x18\x2e\x91\xc0\x54\x8c\x81\x27\xda\x04\xa8\x2a\x3b\x3e\xa3\x4a\xb8\x58\x7b\x08\xd4\xaf\x2b\xa1\xa3\x37\xda\xd8\xee\xb3\xd4\x54\x07\x01\xef\x27\x0c\xdc\xdd\x40\xb1\x4f\xdf\x55\x03\x92\xda\x7c\x14\xc6\x6b\xb3\x5e\x87\xfe\x07\x4a\x72\x90\xb5\x1d\xe1\x57\xdc\x53\x72\x92\xc7\x1a\x8b\x19\xcd\x17\x13\xdb\x0f\x57\x39\xf3\x2d\xf2\x0d\x1d\x2f\xe5\xd0\x62\x52\x97\x50\x2f\xcf\x46\x96\xa9\x3f\x51\xe8\x06\xf5\x27\x5f\x2b\x32\x8e\x68\xd5\x74\x54\x77\x11\x76\xbd\x90\x11\x68\x50\x78\x56\xa4\x26\xee\xdb\x7d\xbe\x12\xf6\xc4\xd4\x17\x8b\x4f\xc3\xe9\x74\xfa\x9d\xcb\xf3\x1c\x04\x1e\x47\x6f\x28\x36\x00\x03\x0c\xe1\x8c\x7f\xa5\xf4\x8a\x16\x7f\x09\x67\x56\x53\x8e\x62\xda\x77\xf5\xb8\xaf\x9d\x0e\x44\x89\x52\x68\x1b\x21\x74\x7b\x4d\x39\x59\xab\xa6\x0f\x78\xad\xa2\x45\x0c\x7c\xcc\x70\xb9\x55\x47\x7e\x64\x0d\x1b\x69\xd8\xaf\xeb\x35\xc8\xb5\xaf\x60\xbe\xa3\x62\xa3\x91\x79\xd5\xa4\x88\xbc\xdb\xe8\x36\xfd\xe8\xfe\xdd\x5f\xfc\xa5\x99\xca\x95\x47\x79\x03\x9d\xb8\x70\x7a\xee\x69\x7a\x9d\x0f\x1a\x79\xa0\x43\xcf\x77\xed\x2b\x94\x09\x42\xe6\x01\xab\xe4\xcf\x4a\x5f\x3c\xff\xb3\x86\x9d\x5d\x38\xd4\xcd\x88\xd1\xde\x0a\x85\x10\x86\xe8\x34\x92\x92\x4c\x07\xaf\x91\x30\xd7\x03\x61\xf3\x1e\x5b\x13\x87\xf1\x90\xb3\x2b\x2e\xa3\x7b\x51\xa9\x16\x5e\x54\xce\xa5\xe9\xa7\x49\x96\x41\xa0\x40\xa2\x6d\xfa\x11\xbe\x71\xb6\x2d\x5b\xb3\x79\x7f\x04\x21\x44\xd8\x9f\x9b\xaa\x7e\x7a\x5a\x41\x1c\x8f\x6b\xba\xf7\x22\x27\x88\x19\x31\x3f\x71\xe9\x2f\x50\xf4\x6f\x17\x15\xa9\xaa\x66\xc2\x37\x2b\x45\x66\x07\x1d\xdf\xd7\x78\x59\x91\xcc\x7a\x01\xf1\x49\x64\xc2\x38\x0f\x57\x57\x75\xd3\xba\x26\x6a\x3d\xe7\x5c\x8e\x97\x8b\xc1\xd0\xee\xa0\x3f\x13\x4a\x73\xd5\xdb\xfe\xa0\xf4\xae\x27\xea\xbb\xee\x67\xdd\x10\xee\xed\x79\x37\xec\x26\x00\x0f\xf0\x25\x9e\xe1\x49\x62\xcf\xb5\xf4\xb0\x9c\xfb\xf8\x0d\x44\x70\x73\x0e\xed\xb9\x52\x8c\x49\xc9\x09\x1f\x93\x52\xb5\x2a\x15\x9d\x6f\x2c\x89\x43\xcf\x77\x57\xc3\x28\x9c\x84\x31\x0e\x25\x87\x0c\xf4\xc4\xe0\xe7\xa9\x0a\x0b\x07\x65\x49\x43\x97\x57\xd2\x62\x82\x90\x1b\x0e\x2f\x90\x7a\x7c\xed\x19\xcf\xac\x89\x76\x7b\x57\xe6\x49\xf4\x6d\x3b\x31\x75\x29\xd8\x7d\xf8\xe4\x54\x89\x27\x9d\x29\x55\x2f\x3c\xbf\xad\x68\x68\x79\xc6\xb3\xbd\x3d\x4d\x1e\x55\x6b\x87\x6a\xa1\xff\x58\xe8\x6e\xd8\x28\x22\xee\x4a\xcf\xc7\x28\xb4\x99\x17\x1a\x99\x41\xa4\x1e\xc6\x95\xb3\x2d\x23\x5a\x63\x0f\x10\x21\x47\xad\x17\x51\xa4\x61\x26\xf5\x21\x81\x67\x55\xaf\x2e\x07\xfa\x27\x71\x14\x15\x31\x16\xb3\xaa\x38\x7a\x08\xfc\x6f\x95\x0a\xd8\x7f\xc1\xd7\x3c\xfb\x79\xb8\x2e\xa2\xbc\x0e\xf5\xea\xb2\xd9\x27\x4b\x11\xda\xb1\x79\x7f\xb6\xf2\x5b\x61\xb3\x67\x7a\xd5\x00\x70\x53\x88\x62\x9d\x3e\x59\x47\xa8\xb7\xa0\x8e\xfa\x45\x34\x31\x1d\x72\xf3\x6b\x19\x24\xbe\x69\xd1\xc0\xeb\xe6\x45\x2a\x4d\x5f\x48\xef\xb2\xe2\x85\x48\x7b\x28\x10\xc1\x29\x4d\xc8\x4d\x7a\x15\x94\x25\x52\x07\xfd\x92\x3b\xe8\xb5\x26\xc3\xda\xde\x8e\xa3\x1e\x67\x5f\x0a\x88\x88\xed\x53\x9f\x62\xbe\x82\xc4\x06\x4e\x07\x3e\x63\xb0\x6a\xb0\x41\x71\x4a\x9f\x66\x27\xc6\xb9\x26\xcb\xd2\x0a\x3b\x37\x55\x72\xe1\x9f\x06\x41\x61\x0d\xed\x26\xfc\x0b\x6d\x42\xc8\xc9\xea\xaa\x4d\x95\xce\x35\x23\xf6\xa4\x62\xec\x7d\xd9\xb1\x89\x22\x4e\x20\xc1\xfb\x3c\xa5\x92\x81\xa7\x14\xb7\x69\x14\x99\x49\x66\x07\xb3\xaa\x34\x72\x83\xfe\x54\x62\x39\xd5\xe5\x75\x5d\xa9\x2d\x5c\x69\xc1\x97\x2e\x75\x07\xd6\x4e\x66\x7c\x7a\xed\x58\x59\x3f\xed\x5d\x69\xff\x6e\xf0\x98\xea\xd6\x4a\xb9\x5e\x2b\x48\x01\x9d\x45\xf2\x7e\xdc\xd1\x40\x91\x21\xe3\xac\x60\x70\x51\xe9\x3b\xef\xfe\x35\x9e\x97\x7b\x82\x03\xd5\x42\x71\x5e\x61\x47\x4d\xbf\x9f\xa4\x83\x30\x1e\x3e\xa1\x3a\x51\x08\xa6\xfb\xac\xa7\xb1\xda\xbf\x9f\x87\xeb\x2f\xc9\x99\xc4\xc9\x70\x36\xf0\xc9\xb2\xdf\x2a\xfd\xe1\x2d\xec\xb8\xb0\x45\x5a\xb8\x75\x77\x8f\x0e\x2e\x6e\xdf\x85\xe7\x02\x27\x15\x85\x69\x0c\x2d\x8b\x1f\x33\x5b\x39\xd9\x25\x7c\x15\xb7\x9d\x62\x85\x7c\xbf\x54\xd9\xab\x26\xce\xff\xb9\xc5\x6e\x9a\x14\x39\x49\xa1\xbb\xa6\xfc\xcb\x2a\x6b\x7c\xb9\xa6\x0b\x51\x44\x6b\x1d\xcf\xab\xf7\x43\x3c\x1a\xdf\xa8\xf9\x59\x0d\xa3\x71\x47\x69\x38\x5c\x44\xf2\x90\x6f\x54\x7f\x65\x15\x5a\x8c\x4c\x11\xed\xa0\x27\x86\x29\x40\x0c\x85\x9c\xee\x87\x98\x40\x07\x65\x75\x1c\x71\x1f\xaa\x0c\x13\x18\xf8\xb0\x10\x6f\x35\x1a\xb2\xf6\xef\xef\xae\x84\x49\x6a\x33\x6b\x52\x86\x2d\x4a\x1d\xd1\x43\x2f\xde\x71\x71\x71\x3f\xe9\xaf\xe5\x26\x04\x50\x17\x0f\x7c\xb6\xd4\x09\x77\xef\xe1\xdc\x6b\x03\x47\xae\xa6\xc9\xab\x56\x91\x6e\x30\xa2\x8e\x6f\x34\x45\x17\x61\x22\x77\x78\x1a\x52\x51\x05\x97\xfc\x86\xc6\x9d\x93\xfd\x50\x07\xbc\x3b\xed\x31\x3e\xfc\x91\x46\x64\xf1\xdc\x22\x41\xdc\x3b\x1d\x45\xd5\xad\x68\x18\x2f\x04\x5e\x5b\x76\x05\x0d\x72\xb3\xb4\xf2\x14\x47\xb3\xc0\x63\xf7\x90\x9b\x80\x35\xb5\x5d\xb7\x24\x7e\xa9\xfc\x31\xe5\x85\xe7\x36\x05\x97\x1c\x44\x5a\xbc\x12\xb0\xd6\x46\xbe\xd8\x48\xd0\xc8\x49\x34\xb2\x66\x1d\x91\x93\xb0\x61\xab\x4a\xcc\xd7\x4b\x9f\xc4\x5e\x0f\x73\x64\x7f\x9f\xf5\x90\x0d\x25\xa0\x20\xee\x51\xbe\x41\x81\x55\xf5\x18\x4e\x47\xcc\xb1\x5b\xdd\xa7\x8d\x29\x15\xcc\xad\xeb\x86\xe2\x9b\xd4\x66\x93\x24\xce\xea\xba\x49\xdc\x2d\x2c\xfa\x96\x5b\x72\x7e\x87\xe7\x9f\xed\x1e\x9e\xa7\x66\x0c\x4d\xdb\x81\xbf\x9e\x23\x42\x5d\x56\xf0\x83\xa9\x41\x0a\xe0\x41\xa9\x24\x43\x3f\x08\x14\xb9\xcc\x69\xb5\x1d\x6e\x40\x18\x85\xff\x01\xb1\x9a\xf4\x45\xd0\xc9\x88\x17\x7b\x9d\x4c\x20\x90\x24\xfb\x40\x0f\x81\x7e\xe5\x33\xa5\x8f\x83\x77\x4c\x75\xde\x50\x1d\x30\x7f\xa6\x23\x96\xa4\x4f\x1e\x2b\xfd\x92\x68\x26\xd2\x17\x4a\xde\xcd\xa7\xc3\x47\x26\x26\xa0\x4e\xc7\xa9\x23\x5e\x56\xea\x88\x97\x1d\x89\x6f\x31\x59\xb1\x26\xa7\xfd\x25\x12\xa7\xd5\x47\x10\x1d\xbf\x81\xa3\x12\x6f\x58\xb6\xe0\xc9\xab\x88\x23\x5a\x0d\xb3\x11\x25\xc6\x30\xa9\x77\x03\x9f\xb7\xc2\xbe\x91\xc0\xa2\xa5\xf0\xbe\x52\xad\xf3\x74\x86\x5e\xc2\x39\x62\x2e\x54\x07\x16\x0d\x09\xd1\x3b\xae\xba\x33\xb0\x51\x6e\x76\x77\x0e\x1c\x78\xc4\xa2\x74\x8e\xae\xbb\x1a\x36\x75\x23\x79\xa0\x93\xf4\x4a\x0e\x5f\xa7\xd2\x76\x4a\x09\x06\xda\x29\x4c\xe0\x5e\xea\xe8\xfd\xb5\x56\x06\x8a\xbe\xc9\xc2\x38\x61\xff\xce\xb5\x43\xf9\xd6\xa8\x96\xf0\x91\xdc\x5f\xf8\x68\x00\xeb\xb2\x39\xe2\x9b\xc0\x23\xd8\x72\xd3\x5f\x93\x33\x5d\x0a\xa7\x1d\xd7\xb9\xfd\x96\xc6\xf7\xfc\x79\xa9\x52\xa1\xe7\xda\xda\x24\xc2\xf1\xc4\x0e\x42\xd7\x26\xe1\xa4\x62\x0e\x1c\x90\x6b\xb7\x1a\x52\x13\xc6\x2e\x17\xc8\xcb\x5f\xb3\x62\x7e\xa0\x4a\x62\x93\xc8\x9a\x01\x5c\x40\x00\x05\x24\x09\xcc\x77\x2a\x91\x3e\x4e\xe2\xac\x9a\x66\x75\x0c\x97\x1d\x0d\xc5\xf6\x32\xa7\x57\x1b\xbe\xf7\x0b\x0b\x87\x48\x17\x3a\xe1\x60\x0d\x38\xd5\x85\x47\x57\x14\xa2\x38\xdb\x1c\xaf\x24\x51\x98\x8d\x81\xe1\x82\x7b\x7c\x02\xe5\x65\xbe\xd1\xc2\xf4\x26\x1d\x86\xcc\xa5\xe0\xf8\xea\x5c\xf7\xfa\x11\x2c\x1d\xbe\xc1\x0a\x13\xb2\x01\xef\x96\x4e\x4c\x6a\xe3\x9c\x83\x32\x44\x20\xe8\x3c\x11\x3a\x3b\x75\x14\x3c\x6c\x98\xb3\xc5\xc5\xa5\x6e\x6a\x21\x20\xce\x21\xb4\xeb\x7f\x59\x9e\x77\x70\x32\x59\xf1\x04\xdc\x98\xd1\x95\xd7\xce\x17\x16\x3c\x86\xc3\x6b\xde\xdf\x76\x6b\x68\xa5\x08\x49\xf2\x72\x46\x8b\x38\xb2\xc7\x8d\xfd\x7c\x1c\x13\x0b\xcc\xdc\xd1\x46\x72\xb8\x5a\xe3\x1b\x66\xdd\xa6\x5b\x7a\x94\xea\x85\x4c\x85\x4b\x48\xcd\x64\x14\xf6\xb3\xd9\xca\xef\x92\x1a\xa0\xb2\x76\xd7\x54\x26\xea\x02\x66\x86\xff\xa1\x4d\xd4\x8f\xfa\xb8\xb2\x2d\xdc\x27\xbe\xeb\xb3\x56\xc3\x5d\xad\xfe\xf0\x05\xa7\xf8\x78\x49\xa9\x3f\x5e\x72\xa9\x85\x41\x6a\x86\x43\x29\x37\x00\x77\xcc\x08\x06\xbe\x51\x5a\x7f\xc2\xb6\x01\x0c\x08\x2a\x6a\x27\x14\x34\x12\xa4\x2a\x42\x9f\xdf\xe2\x76\x98\x62\x10\xe6\x33\x3e\x97\x74\x5f\xe1\x33\x98\x2e\x0f\x66\xea\x9c\xf2\x69\xf3\x91\x4d\xed\x6a\x92\x5a\xcd\x72\xf2\x9e\x6a\x78\x7b\x4f\x49\x2c\x32\xe6\x8f\xfe\x12\x63\x72\x9a\x1e\x50\xd2\x03\x0a\x32\x7b\xdf\xb7\xc5\x1a\xcf\x11\xe9\x82\x44\x1f\x30\x36\xb2\x99\x0b\x87\x08\x73\x96\x9a\x0c\x84\x79\xe0\xa5\xd8\xc6\x00\x3c\x7c\x6a\x57\x4f\xd1\xb2\x82\x69\x58\xb8\x68\x3d\xc0\x21\xcb\x93\xfe\xda\x4a\x9a\xac\x55\x0b\xd2\x8b\xb8\x21\xb9\xe3\x9a\x33\x7c\x8a\xf4\xed\x72\xcb\x31\xbe\x70\xa8\x8a\x4e\x9e\xa6\x83\x18\xbd\x56\x7f\xad\xdd\xea\x47\xa5\x12\x44\xb8\x4e\x28\x4c\x97\x3a\xf0\xbd\x65\xa7\xd8\xa5\xc3\xd2\x00\xcb\x26\x2b\x20\x96\x3e\x30\xbf\x1b\x28\x54\xc8\x97\x03\xcf\x2a\xfc\x27\x80\x93\xf3\xcf\xab\xa6\xff\x6f\x29\xd5\xe7\x6b\x70\x03\x70\x64\xbd\xa1\x61\xce\xe7\xd1\x92\xea\xca\x88\x3e\x67\xf3\xfd\x40\x91\x35\x7f\x84\xc3\x1f\xcd\x36\xe0\x41\x92\xa8\xca\x01\x54\xf2\x34\xec\x93\x39\x75\x99\xe8\x7b\xba\x43\xf7\xe3\x9a\x02\x5f\xcb\xa1\x3b\x2c\xc2\xd8\x1a\x72\xec\x10\xd2\xc2\x0f\xe3\x6b\x95\xb8\xeb\x27\x59\x1e\x6d\x02\x08\x23\x2d\x6e\xbe\x1d\xe9\x1a\xbc\x03\x49\xb2\xa8\xd2\x95\x66\x62\xa9\x42\xb5\x22\xae\x16\xde\x9e\x6a\x5f\x0a\x55\xbd\x22\x95\x3e\xad\x22\x5b\x3e\xb7\x91\x1b\xfd\x18\x18\x4c\x58\xe2\x7f\x44\x23\x8e\x4d\x77\x23\xf0\x9d\x04\xff\x48\x53\x7a\xc0\x3d\x53\x1b\x4d\x0e\xd7\x4b\x8d\x83\xb1\x3a\x56\x38\xd8\x82\x6f\x2c\x1d\x4a\x1f\x96\x9e\x7d\xef\x43\x45\x6e\x90\x98\xb5\xc8\xc4\x03\x10\x64\x8a\x22\xe2\x56\x31\x54\x69\x73\xa7\x9f\x76\x6d\x0f\xae\xcf\xef\x8f\x4a\x5f\x0f\xba\xd9\x7a\x2a\x88\x00\x31\x73\xea\x60\x46\x6f\x63\xb9\xf0\x4d\x0d\x41\xb3\x9a\x6f\xce\x55\x0f\x81\x52\xce\x1f\xc1\xc0\xa3\x54\xf1\x51\xe9\x71\x58\x68\x6f\x14\x31\x95\x6a\xf4\x84\xfb\xa8\xa5\x3a\xdb\x0f\x87\x26\xb5\x79\xce\xaa\xaa\x2e\x91\xe0\xb3\x35\x97\x95\xe8\x61\x75\x44\xac\x86\xe8\xf1\x75\x12\xb5\x17\x6a\x16\x6f\xcb\x6e\x7e\x6e\xb1\xf2\xe7\x9f\xac\x96\x03\x3b\x65\xa5\x1a\xd4\xdb\x81\xb7\xb4\x9c\x6b\x11\xdc\x7c\xf5\xa2\x40\x56\xdc\xc7\xac\xc3\x65\xbd\x4a\xae\x9b\xcb\x43\x55\x1b\x90\xa5\xdd\x03\x15\x33\x6d\xef\x79\x40\x3b\xcb\xbc\x0b\xd9\x4b\x8d\xf8\xb7\x9a\x2d\xa9\xc0\xc1\x60\xe0\x84\x38\xa3\x44\xeb\xef\xa2\x1d\x04\x2e\xfa\x3f\x6f\x63\x81\x98\x98\x2c\xb3\xf1\x90\x93\x3d\xae\x77\xdc\x35\x41\x37\x5b\xac\x5f\x7a\xa9\x9b\x25\x63\x3b\x4a\x36\x66\xfc\x02\xc4\xa9\x89\xb2\xe7\x5b\x9a\x47\xec\x4c\xed\x08\xec\xaf\x6d\xce\x54\xa6\x42\xf7\x0c\x22\xaa\xbc\xa5\x7b\x08\x3e\x68\xfc\xe8\xe1\xf9\xa5\xae\x8d\x93\x62\x38\x9a\xf1\x07\xcd\x57\x69\x17\x01\xef\xf8\x45\x95\x69\xfe\xc3\x46\xb3\x74\xe5\x9a\x59\x03\x5d\x3d\x96\xb5\xa3\x07\x16\x89\xbb\x36\x22\x83\x71\xb2\x2e\x78\x55\x47\x00\x5b\xcd\xbe\x10\xc0\x3a\xba\x82\x22\x8a\x92\x02\x3e\x2b\x52\x0e\xef\xd0\xb6\xe7\xeb\xb6\x73\x97\x28\xb5\x3a\x3e\x14\xb9\xaf\xba\x21\xee\xb7\x39\xe4\xd9\x24\x8c\x22\xca\x75\x33\xb3\x49\xa0\xdc\xf9\xeb\xaa\x9e\xf3\x0d\xd5\x5b\x9d\xa7\xa6\xf2\xac\xf6\x91\xa5\x42\xc8\xf6\xaf\x68\xc4\x10\x85\xbd\x1b\x28\xf0\xe2\x19\x3a\x8c\x90\xed\x3e\x4a\x24\x27\xce\x38\x55\x06\x9b\xff\xa8\x54\xdc\xd7\x17\x60\xf4\x44\x3f\xcc\xc3\xb9\x6e\x07\x5e\xd8\xe9\x82\x6a\xc5\x3d\xa9\x82\xe8\x6d\x53\x5f\xca\x1d\x9a\x78\xa8\x6a\xcb\xef\x97\xaa\x01\xe7\x0a\xcd\x12\xbe\xf7\xb8\x02\x52\x0f\xc2\x8c\x74\xdc\xb6\x20\xb3\xaa\x0f\x4a\xe0\xb8\x95\xad\xe6\x05\x6a\xc4\x1e\x87\x71\xe8\x38\xa3\x5e\x74\x62\xc2\x34\x12\x52\x4a\x6a\xe3\x2e\x4d\x4d\x0c\xb3\xc1\x59\x57\xed\x05\x9c\x6e\x03\xf0\x2c\xcf\x3f\xae\x50\xfa\x8f\xb0\xdb\x05\xc0\xae\xc4\x45\x2f\x28\x6a\x82\xa3\xa5\x6a\xde\xe2\xd7\xc1\xb4\xde\xa7\x31\x75\x42\x48\x95\xad\x71\x00\x68\xa7\x40\xbf\x9d\xb4\xb9\x34\x09\x0b\x93\xea\x53\x8a\x91\x27\x5d\xf5\xa8\xdc\x0b\x14\x95\xea\x35\x57\xfb\x18\x99\x28\x42\xaf\x10\x3c\xca\x1b\xaa\xb3\x97\x45\x26\xf9\x1f\x02\x2f\x35\x7b\xa9\x2e\x6b\xbc\x1e\x0e\x6c\xb6\xb3\x7a\x9c\x9a\x8a\x2f\x3c\x17\x7e\x7f\xe1\xe8\xf1\xa0\xdb\x7b\x8a\x04\xf0\x0a\x4c\x22\xfc\x9e\x2b\x4a\xd1\xee\xba\x46\x3b\x8e\xac\x8d\x3a\x4a\xf4\xe6\x52\x7d\x6c\x14\x89\xf5\xc8\x26\x29\xd8\x99\x6b\x81\xb7\xe4\xf1\xe9\x3b\xb0\x45\xb6\xf5\xfc\x3a\x7d\xaf\x96\xc7\x1c\x6e\x26\xb3\xaa\x8d\x9e\xc9\xe0\x9c\xc0\xad\x6b\x67\x86\xc4\x14\x33\x41\xa8\x42\x1e\xa4\x07\x1f\x57\xa9\x6a\xae\xff\xe1\x87\x6f\x95\x4a\xdd\xec\x7b\x38\x9a\x91\x67\xba\x83\xc8\x53\x40\xc7\xd5\xb7\x4b\x2b\x05\x2d\x63\x07\x07\x5a\x16\xe6\xfe\xdb\x34\x62\xd8\xb6\x6f\x04\x8a\x61\x1b\x32\x03\x38\x83\x76\x50\x7b\x21\x7f\x20\x50\xdc\xf9\xc7\x94\x42\xcf\x87\x8d\xf2\xdb\x81\x03\xdd\x6c\x23\x1c\x8f\xc5\x3a\xc2\x09\xfa\x48\xf1\x82\x7d\xe4\xc2\x19\xea\xe1\x46\x00\x20\x4d\x9a\x37\xf0\x9a\xae\xe9\xdd\x9f\x7c\x9d\xde\x67\xdc\x58\x0d\x6d\x12\x25\xc3\xb0\x4f\x19\xc1\x6a\x21\x39\xd5\xc8\x17\xfc\x8d\x66\xbb\x2e\x56\xb2\x70\x10\x9a\x74\x73\x27\xbd\x88\x10\x44\x68\x65\xc0\x6f\x63\xe1\x49\xb9\xb0\xe3\xc8\xdf\xce\x04\xaa\x83\x04\xd2\x32\x78\xa2\x6d\x50\x7f\x42\x6b\xe0\xb7\x34\xf2\x71\x94\x86\xab\x79\x36\xeb\x69\x64\x41\xd4\x09\xb7\xf9\x0a\xf6\x2e\xdf\x60\xf2\xc4\x56\x6c\xa1\x72\x5d\x9e\xef\x7e\xf6\xb3\x7b\xbd\x9c\xf6\x69\xac\x60\x2c\x24\xee\x1c\x44\x1c\x7c\x1e\xe3\x86\xa8\x00\xfd\x2a\x4e\xdf\xe6\x39\x9f\x7e\x51\x81\xc4\xad\x40\xf5\xce\x23\xc5\x05\xb7\xe0\x76\x0d\x05\xa5\x08\xd3\x9b\x31\xee\xe1\xf9\x67\xbb\x45\xba\x62\x18\x45\xe5\x0a\x0a\x0e\x01\x73\xa9\x91\x3b\xaf\xdc\x43\x6e\xb1\x21\xbe\x3d\xe7\x25\x9d\x52\x30\xd2\x53\x4d\x5a\x9c\x83\xd5\x7f\x4f\x56\xa3\xc8\xb2\x48\xf4\xe7\x78\x2f\xee\x70\x47\x1e\xe8\x22\x22\x1c\xbe\xc1\x8a\xc0\xc3\xfc\x1f\x78\x7d\x69\xa0\x52\xc4\x93\x60\xda\x79\xc4\x66\x05\x1b\x78\xfb\xd4\x43\x0d\xaf\x68\x4c\xf7\x5f\xd0\xe8\xc2\x40\xdf\x09\x7c\x06\x88\xbb\x97\x85\x48\x47\xc9\xba\x3f\xa8\xb5\x0a\xb6\x31\x2e\x40\x3a\xa1\xda\x30\x8f\x20\x43\x42\x82\x06\x0e\x5e\xbd\xb6\x99\xf5\x53\x33\x61\x3f\xcc\x35\xc8\x78\xb4\xd2\x05\xc7\x85\xd2\xb7\x26\xb3\x91\xcd\x32\xc4\x03\x4b\x4e\xe4\xca\xe3\x53\xce\xab\x9c\xd3\x7a\x68\x37\x58\x11\xc2\x81\xef\x01\xab\x12\xe6\x6e\x5f\x9a\x0c\x33\xfb\x98\x87\x85\xfd\xce\x67\xa8\x7d\x96\x56\x9c\xf9\x0c\x8b\xb7\xe1\xe5\xaf\x61\x99\x3a\xe5\xd9\xea\x20\x11\x42\x51\x87\x94\xfa\xea\x53\x3d\xc5\x94\x01\x53\x05\x8f\xf5\x01\xde\x0c\x8e\xf4\x51\x55\xde\xba\xa3\x00\x3d\x5c\xb3\xc4\xeb\xef\x9a\x2a\xb6\xd8\xd9\x9e\x1c\x56\x2b\x42\x6d\x23\x85\x9c\xce\x56\x6a\x1b\xa9\x6e\x3d\xe9\xb0\x0f\xaf\xe4\x66\x92\x64\xe0\xee\x11\xbe\x0c\x25\x94\x7e\x53\x53\x75\xb5\x82\x6b\x92\x89\x8d\x31\xf2\x02\xf5\xd5\x18\xe0\xb6\x7c\x6a\x1a\xae\x5b\x6a\x22\xc3\x6a\x01\x83\x08\x37\xa9\xe9\x62\xae\xee\xf4\xf8\x01\x0d\x05\xac\xc2\xb6\xde\x53\x1a\xa7\x6c\x87\x5e\xaa\x0b\xcb\x9b\x9b\x4f\xf8\x26\xf0\x76\x34\xb7\x63\x52\x9b\x29\x52\x0b\x6b\x25\x7d\xa3\xd5\xaa\x96\xb6\x51\x35\xb4\xc7\x14\x55\xf7\x31\xa5\xb7\x47\x0b\xa4\x1f\xda\x38\x57\xad\x19\x37\xb1\x9b\x70\x88\xa2\xf9\x18\xae\xc1\x91\x46\x9a\xee\xb9\xc5\xee\x24\x89\x9a\xb4\xde\x57\x55\xd5\xf0\xaa\x9b\xa4\x55\x93\xe5\x36\xf6\xb0\x10\x98\xef\xb7\x4b\x25\xf6\xf2\x36\xea\x68\xbe\x82\x34\x49\x6d\xee\xbb\xeb\xe0\xcc\x71\x27\x1e\x9c\x51\x66\x57\xc2\xaa\xbf\xe1\xe5\x83\x4d\x9a\x8f\x56\x92\x22\xe6\x3c\xb6\x40\x0b\xbc\xe7\x7a\x5b\x01\xa4\xdf\xa6\xe5\x2d\xb5\xc0\xb6\x8d\x3e\x19\xd9\xc8\x20\x2a\x56\x32\x6a\x4e\x55\x40\x63\xe2\x35\x31\xdb\x81\x03\x6e\xd7\x7b\x38\xfd\x85\x36\xee\xc4\x41\xd2\x2f\x9c\x56\x3c\xf7\xc8\x68\xd9\xb0\xfb\x1e\xe7\x53\x6d\xfb\x1d\x5e\x09\xf6\x8c\x5f\x52\xcf\xfc\x9d\x29\xd9\x7d\xc9\x8a\x54\xdf\x45\xa1\xf6\xcf\xfc\x2c\xce\x3c\xc1\x70\xd5\x24\x28\x9a\x9d\x4b\x4b\xdd\x51\x92\x2b\xa2\xdb\x33\x8a\xe8\xb6\xd9\x08\xb8\x3c\xdf\x4d\x6d\x66\xc7\x42\xb4\x85\x18\xe9\x22\x6d\x01\xbe\x6e\x85\x23\x0c\x53\xb3\x0e\xff\x5b\x78\x6f\x3b\x4e\xb4\xf0\x58\x63\xc7\x2d\xcf\x77\xb3\xdc\xc4\x83\x19\xff\xb5\xff\x77\xa9\x64\x0a\x81\x36\x16\xb4\xab\xcf\xb7\xf7\xa3\xa4\x18\x6c\x49\xe6\xd6\x38\xa5\x5a\xb4\xc5\x23\x33\xc9\x93\x49\x47\xed\x6d\xa5\xcb\x70\x49\xb5\x24\xf6\x93\x64\x4d\x01\x2a\x6e\x6a\x40\xc5\xcd\x72\x9f\x5b\xcb\xc9\xea\xea\x63\xb4\x0e\x91\xc1\xf8\x12\xad\x37\x61\x6c\x51\x21\x17\x2a\x13\x70\x66\x59\x65\x13\xd3\xbf\x7d\xda\xd9\xbf\xe0\x95\xde\x9f\x13\xfa\xdd\x6b\xe5\xf6\x9f\x73\x1a\xc4\xb4\x03\x91\x5a\x81\xd8\x14\xbe\xf4\xaf\x94\x90\xd6\x0d\x38\x06\x22\x72\xab\xf8\xe2\x7d\x1d\x06\x6c\x00\x1d\x0f\x42\xe0\xb6\x43\xbe\x69\x01\x4d\x53\xf3\x7c\x5f\xfa\xc0\x6b\xcc\x90\xc8\x49\xb1\x4b\x0c\x1b\x7e\xbc\x31\xe4\x55\x30\x66\xc6\x93\x22\x43\x2d\x4e\xc0\x89\x3e\xf8\xbe\xaf\xc4\xcc\x2e\xb4\x40\x99\xbb\x99\x7d\xa5\xe3\x61\x0f\x00\xdd\xf1\x75\xe0\x65\x32\xd3\xd5\x24\xc2\x7c\x21\xdc\x3d\xa1\x4b\xe0\x27\x82\xad\xdf\xfb\xdc\x62\x37\xfb\xf9\x49\x8d\x5a\x5e\x4d\xc9\xf7\xd4\x3a\x18\x87\x31\x8e\x02\xd6\x31\x99\x2a\x3e\xde\xb7\x68\xf8\xb1\xf3\x76\xf7\x14\x43\xe6\x65\x1d\x86\x1f\x51\x5a\x65\xd9\xc4\xa4\x6b\x4e\x18\x10\xa9\xee\xb3\xba\x0d\xe5\x8a\xa6\x8f\x7d\xd8\x28\xa1\x53\xbd\xda\xbe\x02\x55\xa6\x19\xc5\xa3\xfc\x15\x1a\x46\xa1\xa0\xee\x38\xda\xec\x13\xae\xbc\x59\xed\x16\x86\x1f\x6b\x94\xad\x53\x61\x3a\x70\xc0\x35\x28\x6d\x69\x30\xfe\x5c\x77\xe1\x10\xb9\xbc\x22\x79\xd9\xd1\xd2\x8a\x0a\xab\xa5\x68\x7e\xbf\x16\x68\xdc\x16\x7c\x09\xac\xdf\x0f\xc8\x7a\x60\x00\x6f\x29\x34\xdf\xf9\x52\xab\x93\x97\x35\xba\x21\x1a\x4d\xd1\x71\xfd\x8c\x22\x0d\xc8\x6d\x14\xd9\x7e\x5e\x18\xb4\x0f\x4b\x42\x4f\x61\xf9\x4e\x35\xe6\xfe\x85\xa5\x6e\x66\x01\x68\x15\xb5\x7e\x45\xed\xf4\x95\x16\xfc\x52\x77\x25\xa2\x26\x8d\xc3\xf3\x9c\x81\xba\x5a\xa3\x07\xf7\xfd\x8e\x7f\xdd\xd2\x0b\xd1\x9d\xa4\xe1\x7a\x18\xd9\xa1\xc5\xe0\x33\xbc\xb8\xac\x41\x90\x7c\x52\xe1\xa1\x22\x7b\x9b\x10\x49\xa9\xef\xe0\xd5\x19\x61\x99\x43\x55\x29\x4b\xd6\x6d\x1a\x27\x29\xab\xab\xe3\x64\x7f\xa4\x4a\x27\x37\x31\xc2\x2c\xbe\x86\xf5\x2a\x4a\x6c\x2a\x7f\xac\x73\x06\x8f\x82\x1f\x55\x7a\xb6\xc8\xc6\xa4\xa6\x8a\x13\xa8\x21\xce\x15\x25\xab\xef\x15\x5e\x32\x25\xcb\x72\x4b\x85\xb8\x8c\x6f\xc1\xd1\x74\x1b\xcb\x1c\xee\x7b\x93\x7f\xec\xf0\xfc\x8b\xdd\x28\x5c\xb3\x0a\xc8\x73\xb3\xf4\x22\x56\x37\xdb\x32\xa3\x8e\xfe\x19\xd5\x2b\xbc\xcc\x75\x85\x56\xbc\xab\x41\x3a\xef\xaa\x12\xe3\x04\x9d\x3a\x99\x02\x47\xb1\x33\xca\x37\x81\xeb\xbf\x35\xb1\x19\x9b\x58\xe8\x54\x70\xce\x6c\xeb\xa9\x43\x67\xdb\x54\x81\x57\xa3\x88\xc9\xa8\x16\x75\x92\x68\xc1\x99\xd1\x86\xce\xcd\x42\x37\x8c\x5f\x2e\x52\x79\x07\x51\xf4\xe9\x38\x26\xbe\xbb\xf8\x02\x24\x90\x4e\xb6\xa5\xbe\x46\x26\xe6\xb6\x04\x64\x77\x6f\xa9\x4c\xef\xad\xd2\xfb\x60\x7d\x93\x0e\xc2\x64\xdd\x64\xfd\x22\x32\x69\x47\xb1\x50\x9f\x57\x6d\x09\xe7\x5d\x75\x68\x23\x49\xd3\x4d\x67\x74\x44\x0f\xa6\xfa\x1d\x54\xde\x81\xa9\x10\x3d\x0b\x15\xa2\xd8\x7c\x0f\x16\x24\x12\x2c\x9d\x69\x65\x49\x98\x60\x0d\x4b\x42\x8e\x22\x1f\x56\xfc\x5c\xcf\x67\x87\x39\x57\xef\x28\xa2\xfd\xe4\xa2\xc9\x03\x21\xf2\x45\xed\x6b\x32\x3b\x34\xb2\x08\x1f\x2a\xf3\xbb\x31\x4a\x22\x9b\x99\x88\xb7\xa2\xe8\x4f\x54\x3f\x86\xb0\xf2\x96\x6a\xac\xf9\x40\xbd\xc5\x7f\xfc\xf7\x7f\xa9\x53\x1d\xd3\xb0\x96\x17\x03\x9f\xdf\xba\xa8\xfe\xea\xb9\x43\x87\x66\x3d\xac\x69\x54\x2a\x66\x34\x16\x8b\xe3\x05\xaf\x32\xc0\x6f\x96\x3f\xf3\x89\x0d\x44\xc9\x60\x25\x0d\x89\xee\xf6\x05\xd7\xaf\x7b\x5c\x81\x30\x6f\xeb\x55\xba\xad\xd1\xce\x42\x61\xac\xc9\xed\xac\x6a\x4c\xd9\x36\xad\x29\x22\x74\x1c\x35\xc3\xe3\x3d\x8d\x4d\x39\x5f\x3e\xa9\x1b\x6b\x07\x45\xdf\x3e\x56\x85\xc2\x6f\xa8\x04\xf1\x59\xc5\xd7\x76\x02\x33\x29\xb8\x6c\xfa\x41\xb8\x31\xf7\xc8\xef\x71\x99\x54\x7f\xb8\xed\xa4\x0e\x77\x18\xc0\x9b\x9c\xf7\x01\xde\xed\x5d\xcd\x20\x70\xa2\x54\x00\x2a\xa6\x1e\x83\xe7\xc0\x3c\xb3\xfc\xd5\xaa\xa2\xb6\x6e\xd2\xd0\xe6\x9b\x3b\x55\xf6\xe8\xb4\x6a\xf3\x3a\x87\xb3\x45\xba\xde\x3c\x95\x1d\x80\x16\x52\xd4\xa5\x33\x87\xff\x48\x3b\x7f\xff\xab\x4a\x53\x4a\xc5\x73\x51\x88\x70\x58\xbf\x4b\xf4\xf4\x5b\x52\x71\x26\x4c\xfb\xa9\x59\x05\x34\x4a\xe8\x44\x15\xd5\x7d\xa7\xe7\x0b\x1d\xb7\x5d\xd0\x13\x27\xf1\x6a\xd8\x77\x92\x18\x48\x5c\x7c\x49\x69\x02\x7f\x49\x63\xb4\x92\x68\x40\xba\x13\xce\x44\x7d\x35\x50\x46\xe8\xbe\xe2\xb9\xfe\x6a\xa9\x0c\xd2\xfd\x86\x2f\xbf\x7f\x3f\xf1\x11\xc5\x83\x5a\xe2\x9e\x0e\x70\x49\xe2\x2b\x9c\xf4\x24\x07\x0c\xdb\xb5\xee\x1d\x38\xc0\xa9\xb8\xbb\x2a\x46\x3f\xae\x9c\xab\x41\x38\xcc\x68\x20\x00\x33\xba\xa1\xba\x32\xfe\x44\x77\xc5\x5d\x6b\xed\x31\x1c\x59\x93\x86\xf1\x90\x23\x00\x01\x6e\x7b\x18\xc9\x79\x85\x9b\xaf\x9c\x50\x13\x0e\xe3\x5d\x95\xc9\x10\xf1\xba\xea\xa1\xc0\x2f\x34\x43\x90\x3d\xec\xe8\xbb\x5a\xe8\xec\x28\x81\xe9\xf0\x78\x9d\x9e\x2f\x15\x5f\x50\xb2\x95\x6f\xe3\xc8\xc3\x9c\xd5\x53\xd0\xab\x76\x83\x28\x43\x85\xa4\xb2\xfa\x75\xc9\xf2\xfa\xee\x0c\x3e\x98\x19\xa4\xa0\xa5\x07\x8f\x62\xc1\x0b\x47\x88\x37\xb7\xa8\xe0\x60\xeb\xce\xf6\x74\xcd\x2e\xb7\xf1\x13\xca\x9a\x23\x61\xaf\x1c\x00\x91\x4e\x00\xb9\x03\xac\xc2\x3d\xa5\xc8\x38\x37\x55\xb6\xf1\x21\x1c\x59\x6c\xb8\x6f\x60\x4a\x90\x40\x67\x65\x2c\x38\x4d\x6f\x96\x8a\x73\xfd\x14\xd5\xa6\x90\xe0\xdb\x41\x9b\x1c\x2e\xe1\x0d\xec\x3b\xe1\x83\x55\x01\xde\x23\x5a\x1e\xf8\xc5\x6d\xd3\xad\x3e\xef\xf2\xfc\x41\x82\x68\x2a\x46\x79\x07\xaf\x70\x71\xec\x11\x77\x46\x17\x71\x66\xf3\xdc\xf9\xd8\x88\x00\xfe\xb4\x54\xad\x5d\x28\x60\x73\xea\xbc\xe1\x7b\x2c\x1c\xc2\x59\xd7\xf1\xb8\xa8\x3b\x4a\x27\xff\x4e\x13\xd1\xb4\xbc\xd4\x4d\xad\x71\x6d\xc7\x3e\x98\xa3\x57\xe4\x1b\x05\x5d\x18\xa6\xa6\x6f\xa9\xc9\x69\x46\xb5\x41\x9d\xac\xd9\xc0\x3b\xba\x41\xf2\xfc\x27\x68\x55\x25\xc3\xd4\x8c\x95\x36\xfe\x4d\xad\xa6\x75\x53\xf3\x90\xc5\x79\x12\x77\x94\x52\xf4\x45\x55\xc6\xba\xa8\xd2\x46\xe3\x30\xcb\xcd\x9a\x8d\x19\xd6\xeb\x53\x9f\x0d\xf4\xdc\x92\x4b\x87\x58\xcd\x2d\xc2\x0a\x09\x82\xba\xf0\xc1\xba\x89\xc6\x49\x96\x3f\xa6\x0e\xff\xc0\x03\x96\x9f\xe8\x29\x10\x56\x83\x75\x75\xd1\xdb\xc9\x6a\x12\xb1\x63\x99\xea\x0c\xef\x0a\x1a\x51\x01\xff\xaa\x9e\x81\xd9\x9e\x17\xab\x9e\x9d\xaa\x8c\x26\x37\xff\x08\x35\x92\x96\xe5\xb9\xdb\x52\xcd\x5e\xe8\xe6\x45\xba\x66\xe1\x58\x21\xbf\x8f\xf0\x89\xaf\x95\x72\x99\x19\x50\x8a\xa8\xf2\xfc\x3c\x22\x13\x09\x10\xbe\x6e\xb8\x6d\xd5\x0a\x9a\x90\xda\xa2\x23\xe1\xfc\x9a\x2a\x18\x7c\xcd\xc5\xef\xe3\x22\xb3\xc5\x78\xd6\xc7\x8e\xb3\x80\x49\x09\xe3\x84\x2a\xce\x68\xaf\x51\x53\x70\xad\xa6\x26\xe3\xac\xb5\x74\xa1\x2a\x4a\xf1\x8b\x2d\x82\x57\x4b\x5e\x7d\xab\x8d\xc3\xc1\x9f\xbb\x93\x84\xba\xcd\x69\x8c\x1c\x87\x92\x23\xf6\xb9\xd0\x46\x4f\x68\xc7\x93\x28\xd9\xf4\x89\x43\x47\xcd\x58\xbd\x95\x50\xb1\x34\x1f\x69\xa1\x3b\x0a\x73\xe6\x3b\x10\xd1\x66\xaa\xc5\xc2\xb6\x7e\x1d\x03\xe1\xca\x9e\x6e\x9d\xbd\x51\x2a\x9d\xca\xaf\x2b\x97\x61\x12\x66\x79\x12\xe1\x2c\x42\x42\x11\xad\x1a\x18\x4b\x66\x67\x90\x6e\x9c\xad\xa5\x6a\x71\xd8\x32\x1b\x43\x7d\x5e\xb5\xa3\xd0\xb7\x78\x91\x5e\xa7\xb1\x63\x72\x9b\xe5\xbb\xb4\xdc\x1f\xcc\xbe\x93\x5e\xaa\xd6\xb0\x34\x16\x57\xd6\xd1\x41\x1f\xab\x35\xac\x18\xa8\x97\x1c\x27\x88\xcf\x1b\xa2\x24\x2a\x8c\x22\xfe\xb8\x1d\x26\x36\x9b\xf5\x2b\xf8\x34\xf6\x13\x9c\x1f\xc6\xa6\x03\xeb\x76\x5e\x11\x9b\xed\xe9\x35\x0b\x46\xdd\x89\x4d\xfb\xa3\x28\x81\x77\xb9\x15\x11\x0d\xff\x8e\xc1\xea\x78\xf7\xa3\x4a\x9f\xf3\xa3\x4f\x50\x01\x58\x73\xd1\x05\x7f\x86\xc6\x0e\xd3\xfb\x9e\x5a\x72\x75\x94\xe6\x78\xb2\xa9\x99\xc1\x51\x90\xe0\xeb\x5a\x13\xd7\xab\x30\x53\xad\x7c\x09\x4a\x17\xa4\x18\x0c\xa2\x6a\xeb\x7e\x61\x41\xd3\x66\x2f\xa9\x9e\x76\x9e\xc1\xf0\x37\x8b\x84\x15\xee\xa5\x80\xd1\x59\xac\x2f\x3a\xc9\xff\xe8\x19\x88\x06\xbb\xe8\xfb\x30\x53\x3b\x7b\x0a\xa1\x04\xe1\x52\xa4\x2d\x1e\x10\x08\x00\x67\xc7\x3d\x05\x37\x79\x8f\x8e\x4a\x41\xa4\xd2\x62\x10\x4b\x59\xf9\x19\xfc\x81\x52\x3a\x6a\x91\x21\x09\x87\x36\xee\x13\xc9\x04\xf3\x71\x38\xa2\xaa\xea\x49\x80\x69\xfa\x5f\x1a\x75\xc1\x03\x07\x96\xbb\xab\x36\xcd\x89\x50\x03\x16\x43\x9c\x12\xef\xd9\x35\x09\xdb\x97\xe7\xbb\xd0\x57\x9e\x55\x80\xd4\x63\xe4\x85\x68\xa2\x40\x91\x2a\xf4\x32\xa8\xb3\xbd\x16\x90\x79\x7f\x64\xa2\xc8\xc6\x43\x0b\x9c\xb2\x54\xa0\xe8\xc5\x71\xc8\xdc\xc3\x49\xc9\x14\x44\xe5\x1e\x37\xe5\x2f\x52\xc2\x06\x25\x96\x69\xe9\x13\xa5\xd7\x02\x05\x0a\xb8\xa2\xfa\x94\xc6\xa6\x3f\x0a\x63\x9b\xed\xaa\x3e\x27\xe4\x33\xfa\x64\x60\xb9\x17\x44\x74\x1f\x29\x62\xe9\xb3\x70\x93\xe0\xc1\xff\x25\x12\xb1\x7c\xa3\xd4\x75\x78\x25\x09\x99\xb2\xef\x6b\x77\x9a\x90\x7b\xaa\x5f\xc6\xc0\x9e\xad\x91\x6d\xc2\x38\x00\xbd\x09\x06\x55\xf8\xb0\x53\xec\x5a\x2c\xba\x07\xbe\xd3\xf5\x3f\x7b\xa0\x08\xb5\x6e\xd0\x59\x02\x57\x8b\xbb\x14\x45\x36\x9e\x1e\x08\xc7\xe3\xc3\x16\x36\xc2\x85\x6e\x3f\x89\x07\x76\x1c\xb3\x8f\x2d\x80\x7c\x25\xc6\xdd\xd4\x93\x58\x5c\xec\x2a\x2e\x15\xc1\x3a\x28\x3d\xad\x0b\x4a\x9c\x23\xb5\x36\xcb\x0d\x51\x05\xe0\xef\xb9\xa8\x1f\x78\x39\xd5\x33\x5a\x36\x8a\x73\xf7\xce\x9f\x76\x65\xd1\x73\x8a\xf0\xb5\x9f\xc4\x59\x31\x1e\x53\xe2\xcc\xe3\x67\x7e\x37\xf0\x85\xc7\xdf\x6d\xab\x0d\xd8\xf1\x4a\xba\x99\x68\xd4\x7c\x50\x63\xc0\x79\x52\x3d\xf5\x24\x32\x7d\x8b\x41\x81\x73\x8e\xa2\x13\x5f\xab\xc0\x63\xd5\x84\x51\x91\x5a\x66\x81\x65\x57\x2f\x50\x4d\x3d\xcd\x2c\xce\x0b\x4b\xdd\x55\xb3\x9e\x30\x5a\x4a\x9c\x06\x95\x56\x3b\x16\xf8\x01\x74\xc3\x67\x07\x73\x8a\xb6\x82\x11\x67\x4e\xde\xcb\x39\xca\xc8\xde\x22\x88\x60\x31\x46\x66\x9f\x9e\xfa\x3c\x49\x6a\xf3\x22\x85\x2a\x8b\xe7\x1e\x65\x73\xc1\x37\xc1\x53\xa1\xe6\xd7\x4d\x6d\x1f\x90\x3a\x6c\x8e\xf3\xaa\x67\xe1\xbc\xa2\x9b\x5e\x35\xe9\xe3\x34\xa6\x8c\x8a\x2c\x09\x26\x80\xa7\xdc\xde\xa3\x03\x03\x4b\xf3\x96\x02\x65\x9e\xa5\x18\x0c\xe1\xcc\x6b\x64\x17\x05\x53\x49\x67\xbe\xd3\xc1\xad\xb6\x08\x26\x00\x5d\x28\xb0\x0f\xbb\x08\x66\x05\xdf\x12\xaa\xcb\x42\xc4\xe0\x5d\xe0\xb9\x29\x21\x14\x70\xc6\xde\xa3\xfd\x85\x0c\xcb\xbf\x75\x55\x7c\x13\xe7\xe1\x38\xcc\xb2\x90\xf1\xa8\xd8\x4e\x37\x68\x64\xf9\xba\x81\x23\x78\xe9\xa5\xee\x9a\x49\x4d\xb2\xc6\xf9\x26\xe4\x4a\x50\xd5\x73\xc4\x60\xbf\xfa\x82\xb4\xa0\x2b\xda\x27\x6a\x2b\xa0\xf3\xd0\xa7\x8c\xbf\xa3\x95\x82\x95\x3f\x79\xaa\xfc\x11\xb7\x1a\xbc\xbd\xcf\x05\x7d\xec\x90\x60\xd5\xb0\x4b\x85\xd3\x91\x0f\x25\x45\x3e\xe3\xe5\xd1\x01\x24\x72\x9a\xd8\xce\x75\x69\xb2\xbc\x2f\x2e\x76\xc7\x26\x2e\x00\xf7\x59\x9e\x77\xde\xbf\x86\x5c\x37\x39\x29\x17\xbb\x83\x2a\x90\xab\xdc\x06\x95\x40\xbd\xac\x98\x3a\xbc\xfc\xec\xa0\x18\xaf\x90\x3f\x86\x67\xde\xd9\xf3\xf6\x7f\xdb\xd4\x3b\xc7\xcd\x9e\xbe\xc3\xf3\x5d\x33\x99\xa4\xc9\x24\x0d\x59\x70\x67\x91\xcf\x45\x34\x5b\xf0\x75\xb0\x57\xb1\x83\x3d\x46\xf3\x0f\x33\xca\x6e\x34\x52\x64\x8f\xd4\xd6\xd9\x4d\xf0\x08\xf8\x4e\xdf\x81\x1d\x15\x41\x4e\x9c\x12\x48\x07\x3c\xac\x9f\x75\xbf\xfa\x02\x3b\x9f\x7c\x50\x61\x91\xe5\x5a\xd7\x11\x40\x1b\x71\xa1\x68\xa2\xb0\x24\x6e\x52\xd9\x1f\xfe\xd4\x57\xd4\x36\x1a\x70\x02\xda\x75\xae\x57\x1f\x91\x04\xc8\x13\xca\x4c\xe5\x06\x0d\x49\x0b\x8e\xba\x88\x7e\x16\x8e\xc9\x05\x8d\x28\x45\x19\x43\x48\x8d\x3c\x1b\x66\x11\x9b\x8e\x66\x46\x66\x90\x8b\x64\x41\xfc\x33\x45\xf9\x33\x1d\x6f\x5a\x1a\xc6\x82\x8f\xd8\x24\x4e\xa2\x30\x1f\x85\xfd\x8e\xc7\xb5\x3d\x50\x15\x94\x07\x81\x50\x0a\x24\x1b\x76\x07\x8d\x31\x4b\x5b\xd3\xd2\xc4\xe0\xff\x9f\x3a\xf7\x70\xb4\x54\xbc\x29\xbb\x7b\x1e\xd5\x76\x9e\xf6\xb1\x14\xe4\x1e\x77\x70\xc9\x49\x64\xb3\x0c\x2d\xb0\x4e\x59\x63\x59\x40\x4c\x47\x14\x8b\x31\x90\xb1\x18\x92\x6f\x78\xac\x43\x11\x53\x22\x8e\x8f\x44\x16\x33\x52\x81\xce\x09\xcf\x58\x9b\x14\x69\xdf\x79\xb5\x8e\xf3\xd9\x9d\x42\x80\xae\x71\xb7\x46\x63\x8b\x51\x8b\xdd\x98\x24\x85\x3a\x3e\x3d\x73\x5f\xe1\xc2\xee\x2b\xf4\xf0\x24\x32\x31\x91\x62\x3b\x7b\x74\x47\x69\xb9\xee\xe9\x79\x84\x20\xa7\x1b\x85\x1b\x4e\x06\xc6\x8c\xcd\xab\xa4\x6d\xe1\x09\xd5\x3f\x3d\xf5\x5e\xec\x4f\xd0\xfe\x43\x85\xf0\xae\xa6\x8d\xf9\x56\x23\x1e\xaa\x42\x46\xb3\xba\x1a\xa6\x63\xaa\x14\x61\x07\x6a\x59\x60\xe1\x51\x54\x4d\x7f\x69\x31\x80\x49\x10\xc5\x70\xc5\xb5\x7e\xa7\x45\xb6\x23\x0a\x57\x7d\xd3\x11\x57\x8f\x69\x64\xa5\x92\xac\xb3\x70\x23\x93\xff\xb4\x17\x46\xdf\x8e\x14\x38\x9e\x7e\xae\xa7\x92\x52\x67\x79\x1f\xb3\x76\x2d\x31\x2e\x0a\x05\x47\x67\xbf\xf0\xb4\x3e\x81\x82\x04\x82\x99\x5d\x3d\x4a\x42\x3b\x49\xfe\x85\x43\xbc\x0f\x3b\x53\x1f\x0a\x01\xa1\xcd\x0c\x33\x40\xc6\x49\x5b\x35\x8d\x0d\x8e\x33\x54\x53\xb0\x32\x9e\x24\xed\x16\x78\x36\x35\xac\xd0\xee\xa9\xe7\x74\xda\x41\x6a\x2b\x42\x46\x43\x7b\x05\x5b\x62\x67\x4f\x09\xc8\x1d\xc1\x29\x09\x0f\x76\x5f\xaf\x0a\x6c\x98\x83\x0c\x38\x53\xe6\xc9\x20\xa9\x1a\xfc\xf8\x4b\x94\xc0\x43\x18\xfc\x58\x8f\xda\x8b\x78\xdf\x81\x80\x0f\xbb\xe6\x84\x4a\xff\x3f\x40\xce\x46\x20\x37\x0a\xa2\x91\xda\x41\x98\x13\x7d\x06\x72\xa8\xdb\xe8\xc5\x90\x56\x3f\x8b\x4f\x29\xd9\xe0\x45\x47\x72\x51\x4d\x97\x2b\x47\x2d\x2f\xd5\x04\x13\x60\x54\x6e\xc2\x89\xc2\x9c\x6c\xeb\xf9\xb0\xe8\x5a\xa0\xd8\xa7\xdf\xd3\x3e\x77\x67\xea\x57\x5c\x9e\xc0\x3b\x5c\xf2\x6d\xcc\xae\xbd\xd8\x1f\x42\xc9\x28\x4c\x28\x2b\xf3\xff\x8a\x49\xf6\xb9\x45\xe2\xcd\x5c\x63\xd3\x80\x03\xea\xdf\x28\x69\x89\x7f\xe3\xc2\xc7\x6c\x12\xa6\x61\x8e\x90\x54\xb0\xd0\x1d\xc5\x93\xed\xed\xea\xcb\xc9\xca\xce\xea\x1b\x84\x97\xce\x27\x95\x2e\xd1\xa2\x74\xd7\xce\x86\xdd\xa3\x53\x83\x9b\x48\xb8\x79\x56\x80\xbe\x34\x34\xc2\xd7\xd0\x4a\x35\xd7\x0f\x51\x9b\x10\x36\x6b\xef\x05\x70\xb9\x09\xee\xe2\xf1\x06\x36\x61\x79\xfe\xa0\x13\xc5\x05\x2d\x15\x4e\xee\x6f\x23\x78\xe1\x1b\xa5\xa7\x13\x56\x61\x1d\x10\x60\x5b\x48\xe7\x24\x2e\xa7\xf5\x21\xd0\xe0\xa7\x9b\x2e\xc8\x67\x33\x1c\x11\x48\x94\xec\x98\xd6\x88\xf4\xbc\x44\xd3\xe7\x3f\xd3\xeb\x7c\xf6\xb3\x0c\xf2\x61\x16\x49\xe9\x1e\xa8\xd6\x0d\x12\x1d\x6f\xb4\x59\xe0\xac\x6f\x63\x93\x86\x09\xe4\xbe\xa5\xd6\xe8\xcd\xf1\xc5\x5a\xd7\xd4\x24\x04\xba\x51\x1c\xc2\x8e\xa2\x4f\xd6\x98\x84\x9a\x75\x0a\x8b\x6c\xae\x7a\x0a\x64\xcc\x4f\xd1\xe4\xc1\x42\x7e\xb5\x54\x4e\x02\x83\xca\xb9\xe7\xa3\xf4\xfe\xdf\x9d\x46\x99\xe9\xf0\xbc\x53\xe9\xee\x28\xa4\x34\x58\xe4\xf9\x3a\xd0\x44\x57\x71\x9f\x70\x7e\xd5\x2f\xbb\x0a\xea\x92\xbf\x71\xfa\xba\x99\x59\x93\x4c\x9d\x48\xfa\xaa\x5a\xc9\xff\x16\x3c\xa6\x42\xda\x64\xfc\x63\x64\x27\xe1\xc3\x77\x20\x33\x85\x85\xb4\xa7\xe7\x01\xd4\xdc\xbf\xc8\x3d\x6d\xd8\xad\x12\x3a\xd3\x98\x8b\x18\x50\x65\x8c\x15\xfc\xdf\x65\x50\xa6\x7e\xbc\x8e\xd3\x26\xe0\xe6\x2d\x80\x8e\x45\x3d\xa8\x9a\x7f\xe9\x9b\xa3\x71\x74\x14\x2e\x2e\x67\xf3\x07\x08\xe2\x91\x5e\xfe\x9e\x6a\xd4\xf8\x4a\xa0\x76\x0d\x28\x32\x84\x07\x95\x56\x1f\x80\x29\x57\xc9\xd5\x53\x05\x68\x49\xa6\xbd\x0d\x43\x25\xe4\xb8\xd5\x9e\x45\xb2\x62\x7b\x4f\xcb\x66\x36\xfb\x64\x41\x4e\xf1\xb7\x72\x4e\x7b\x02\xac\x78\xc8\x2d\xd9\xba\xe0\x59\x03\x34\xc2\xa0\xdf\x6f\xe0\x61\x3e\xd7\x9d\x24\xd5\xe4\x2f\x7f\x02\x33\xd7\x13\x0a\x13\xb7\xba\x6a\x2d\x75\x62\x63\x15\xa1\xf3\x4c\x44\x8b\xab\x5f\x64\x6a\x29\xb2\x4c\x52\x26\xf6\xec\x43\xc3\xc8\x64\x19\x21\x47\x84\x05\x66\xab\x23\xb7\xe8\xdd\x3d\x97\xf0\x7b\x9d\x36\xa9\xfb\x84\x57\x2e\xf8\x77\xca\xd7\x5d\x0f\xed\x06\x87\xfb\x78\xeb\x53\xaa\xdd\x85\x8d\x07\xfc\x54\x3b\x0c\xb3\xc8\xe4\x49\x9a\xcd\xa8\xe2\xda\x17\xcb\x1a\xed\xa8\x52\x48\xbb\xaa\x46\x60\x60\xe3\x3c\x2b\x88\x40\x19\x93\xcb\x68\x19\xbe\x69\x84\xf2\xbf\xd0\x4d\xed\x2b\x26\x8a\x3a\x5a\x18\x47\x09\x1e\x5d\x52\x85\x03\xea\x89\x4e\xa2\xa8\x72\xe2\x9e\x13\x1b\x78\xa2\xf4\x64\xdb\xd7\x51\x50\xe2\x1b\x5a\xeb\xfc\x47\x95\x27\x25\xe2\x58\x49\x11\xc3\xfa\x02\x0c\xc6\xd8\x41\xbe\x69\xe3\x66\x0b\xe3\x7e\x6a\x0d\x8b\x0b\x48\xeb\xb0\x77\xa5\xbe\x5f\x7a\xea\x37\x82\x9d\x75\x94\xa4\x20\xbe\x5c\x12\xa5\xaa\x97\x6d\x14\xf6\xd7\x6c\xae\x40\xa3\x6f\xd2\xf9\xca\xd7\xaa\x68\x40\x44\xb1\x7d\x3e\x09\xa5\x84\x5a\xfd\x29\x5f\xbb\x00\x9c\x04\x26\x73\xca\xbb\x20\x2a\x46\xec\xf5\xbd\xd2\x1f\x50\x47\x69\x73\xe1\xac\xff\xa6\xe7\xf5\x48\x8a\x95\x9c\x04\xa6\xb9\x8f\x59\x05\xfe\x8f\x03\x63\x8c\x68\x86\xd5\x06\x10\xb9\x5d\x0d\x7c\x02\xe2\xa2\xde\xe7\xc7\xb1\x50\xf0\x26\x0f\x4b\xcf\x8b\xb8\xad\xe7\xdf\x7f\x90\xda\xcd\xd5\x42\x6c\xa5\x6b\x08\xa9\x26\x9e\x6f\x1c\xb0\x26\x0a\x57\x6d\x54\x6d\x40\xb2\x76\x8c\xe0\x2b\x35\x9a\xaf\x45\x9e\x23\x4f\xd2\x71\xb5\x14\x3b\x4a\x97\xec\x1b\x81\x4a\xd6\x7c\x43\x57\xd9\x6d\xcc\x39\x72\x6e\x8c\x51\xf9\xdb\x6f\xb5\x14\xbb\x5e\xec\xae\x59\x2a\x01\x76\x9c\x64\x20\xfa\xd6\xa4\xaf\xd2\xe7\xe3\x92\x4c\x08\x04\x61\x43\x11\xa5\xd7\x42\x40\xb8\xd6\x1f\x37\xb2\x8b\xcb\xf3\xcb\xdd\xd8\xa4\x69\xb2\xc1\xbf\xe4\xb8\x32\x9d\x7d\xbb\xac\x52\x6e\xeb\x36\x45\xf7\xf2\xf2\xbc\x4f\xff\x54\x8b\x4f\x3a\xd6\x9a\x18\xb2\x67\xbb\x63\x33\xe0\xf0\x03\x99\xd0\xef\x6b\x06\xcf\xef\xd7\xa5\xfd\x20\xae\x4e\xdf\x0f\x2c\x10\x8a\xe2\x7c\xdd\x96\x00\xc9\x72\xa3\x04\x49\x04\x47\xaa\x30\xa5\xe5\xe3\xba\xb9\x33\x96\xe5\x00\xcf\xe1\x07\x18\x1e\xbe\x51\xb9\x1f\x4a\x5e\xac\xdb\xc1\x9c\x7f\x94\x3f\xa5\x41\xe1\x6b\x7c\x4e\x68\xa9\xf1\x95\x8e\xe3\xc6\xd1\x23\xfd\x8d\x12\x68\x99\x98\x89\x4d\xf7\xf9\xec\xdc\xee\xa9\x32\xbb\x7c\x50\x32\x02\x03\x5f\x2e\xd0\x24\xaf\xa4\xf4\x8e\xde\xe9\xef\xd2\x3e\x93\xe6\x39\xda\x34\xfc\x57\x6a\xf2\xf6\x51\xde\x4d\x64\x54\x69\x71\xe3\x44\xd9\xde\x53\x18\xae\x0f\x34\x4f\xd8\x64\x92\x90\xbc\x62\xe5\x1d\xc8\x31\xa6\x80\x05\xf7\x14\xc6\x15\xec\xfa\x42\x0f\xe1\x33\x97\xfd\xb4\x18\xaf\x44\xdc\xea\xf6\x88\xce\xa7\x47\x27\x5a\x45\x65\x57\x92\x78\x20\x34\x26\xd8\x0b\x1f\x68\x5e\x05\x0e\x1c\x98\x3d\xae\x8d\xe6\x34\xe9\xf7\x8b\x89\x68\x9f\x30\x17\x51\xa0\x48\x61\x4f\xab\x34\x77\x18\x67\x79\x4a\x5d\x00\xd9\x0e\x05\xc5\x39\x5e\xea\x96\xc4\xc0\x37\x64\x70\x66\x1e\xef\xfa\x7e\xe9\x21\x41\xdc\x67\x28\x4d\x8c\xcd\xf6\xaf\xc5\xee\x6a\x98\x32\x5f\xbc\x1c\x21\xaa\xd6\x75\xa2\xa6\x25\x3c\x9e\x44\xa1\x89\xfb\x56\xe9\xbc\x72\x63\x15\xdf\x28\x93\x9e\x15\x2b\x2f\xdb\x7e\xbe\xab\x96\x33\x52\xdd\x06\xc8\x96\x30\x18\x90\x40\x7e\x58\x94\xb7\x14\x77\xc2\x2d\x45\x88\xb1\x17\xcb\x00\x71\xe9\x4d\x25\x70\xf4\x75\x65\xba\x26\x45\xbc\x39\xa3\xfa\xe8\x2e\x29\x0e\xc0\x87\xea\x04\xbc\xd0\xc6\x4f\xcd\x6d\xef\x1d\x95\x5d\xac\x91\xbd\x6c\x0d\x28\x96\x97\xba\xc5\x64\xa6\x7a\x72\x27\xdf\xea\xc4\x32\x8f\xd2\x7a\xc3\x93\xbf\xde\x70\xa1\x0e\x3d\xdf\x1d\xac\xf6\x3b\x9e\x41\x8e\x4b\xb3\x52\xda\xdd\xa7\x18\x06\xf3\xdd\xaa\x88\x74\x1f\x8e\x86\xeb\x20\xfa\xec\x67\x19\x07\x0e\xff\x07\xde\x08\xc7\x5d\xf4\xe3\xc3\xa7\xd9\x69\x14\xb9\x17\x1f\x0e\x5e\xc1\x5e\x11\xb1\x33\x72\xab\xf9\xcb\x02\xdf\xbe\x1d\x52\x78\x5a\xfd\xa1\x04\xe1\xd5\x0f\xf1\xb5\x3b\x33\xc3\x2c\x37\x0c\x16\x87\x13\x04\x1e\x3d\xb8\x4a\x27\x75\x0a\xf0\x8a\xf2\x60\x06\x61\x96\x25\x71\xb5\xa0\x90\xf1\x12\x65\x2c\x8f\x9e\x39\xa1\x54\x64\x4e\xb6\x24\x8e\x16\x40\x38\x3f\x09\xe3\x58\x62\x17\x59\xb7\x7a\x41\xb7\x4c\xf6\xb8\x88\x07\x86\x09\x0e\x25\x88\x56\x28\xd0\x4b\xaa\x30\x98\xce\x55\x0f\xc1\x95\xee\x40\x89\xdc\x22\xbd\x20\xf2\x54\x33\x07\xff\xd3\x2f\x78\x2a\x96\x5f\x3b\xc8\xc1\x9b\x6e\x53\xee\x8f\xe8\x65\xab\xa5\x21\x39\x01\x0a\x2e\xf0\xe2\xdc\xf9\xcd\x95\x84\x06\xc9\xc1\xa1\xe7\xbb\x93\x22\x1b\xcd\xfa\x94\x3b\xa3\x39\x1c\xc7\x99\x73\x6c\xb0\x3d\xb0\x55\xde\x51\xa7\x4a\x96\x9b\xd5\xd5\x5d\xd5\x8a\xc5\xc8\x6c\x23\xb8\x8b\x1e\x6a\x98\x75\x26\xb1\x45\x72\xe5\x48\xe0\xc3\xfb\x77\x69\x59\x63\x3e\x6e\x6b\x9a\xd1\x33\x64\xfb\x01\x0a\x99\x9b\x3e\xae\xf8\xdf\x26\x13\x86\x2d\xc1\xff\xba\x5a\x7a\x05\xdf\x6f\xa9\xdc\xe6\x05\x15\x0c\x66\x49\x12\xef\xa1\x13\x00\xee\x38\xa9\x37\xf1\xa3\x5d\xaa\xf9\x59\x7e\x62\x3e\x42\x98\xc6\x7f\x84\x98\x1d\x49\x8c\xd3\xaa\x9b\xf5\x46\xa0\x74\x12\x8f\x61\x03\x48\x77\x3d\x99\x0d\x24\xe3\xde\x53\xa4\x82\x66\xdd\xa6\x9b\x3b\x54\x16\x05\xe1\x19\x20\x34\x8c\x36\xe5\x1b\x4c\xa6\x50\xb6\xf8\x88\x1b\xfd\x80\x42\xeb\x22\x89\xe1\x34\x89\x92\x81\x7d\xc5\xca\xa1\x02\x23\xc2\x59\x7f\x0e\xee\x4b\xc5\x74\x79\xb1\x95\xe2\x29\x5a\x29\xc6\x94\x43\xc0\x82\x82\xf8\x3f\x3e\xfd\x2f\xcb\x5a\x77\x53\x0b\x9c\x26\xcb\x4d\x15\xcb\xb3\x43\x25\x5d\x3d\x1d\x27\x22\xe1\xb3\xbd\xd9\xd8\x46\xb9\x4d\xc1\xf9\x87\x15\x0f\x64\x31\x5f\xb7\x71\x88\xae\x98\xc1\xc0\xae\xe4\x8a\x71\xfc\xb6\x62\x1c\xbf\xad\xe2\x3c\xb3\x92\x14\xf9\x8f\x75\xbe\xb0\xc0\x0b\xe3\x24\x42\x6b\xb4\xed\x5c\x2d\x15\xfd\xce\x19\xcc\x2c\x37\x7a\x51\xd8\x58\x0b\xa1\x39\xf3\xa4\x18\x3a\xde\xe4\x24\xad\xe8\xb3\xd2\x84\x21\xbd\x76\xa4\xec\xbc\xb0\xa4\x7b\xc4\x5f\x74\xa3\x48\x8b\x01\xf5\x73\x48\xa0\xb8\x14\x64\x65\x26\x11\xb5\x82\x38\x11\xf6\x0e\x8a\x92\x48\x2b\x5c\x57\xbc\x25\x0f\x35\x5a\x6a\x96\x92\xb1\xc8\x56\xdc\x80\x37\x8a\xc5\xbb\xbd\xa7\xb8\x33\xaf\xd3\x6a\x47\x0d\xef\xb8\x82\x75\x1c\x01\x1e\x92\x75\xad\x1a\x1e\xc6\xf2\x7c\xd7\x46\xe1\x30\x94\xde\x3b\xe9\x5b\xa8\x7e\x92\xaf\x5b\x2a\xf6\x4b\xdd\x6c\x62\xe3\x81\xf3\x4a\x11\x9b\xdf\x50\x60\xa6\x1b\x3a\x1e\x4f\xad\xc9\x77\x7b\xb6\xd9\x1d\xbd\x9a\x0e\xbe\x22\x72\xbb\x48\x69\x29\xd6\x2a\xe0\x19\x70\xf9\x94\xea\x35\x9c\xd4\x8c\x73\x54\xd1\x18\x89\xb4\x35\x13\x66\xe1\x80\x7f\xd4\xda\x8e\x65\xc6\x8a\xee\x85\x7f\x9b\x6f\x54\x78\x9b\x8c\xc6\xc6\xe2\xd5\x60\x7f\x90\x67\xe7\xeb\xde\xa7\x15\x18\x2d\xcd\x57\x93\x28\x4c\xb2\x59\x3f\x62\x7f\x09\x7f\x4b\x32\x4f\x7e\x1d\xc0\x72\x09\x26\xc5\x93\xa7\x25\x54\xac\x0c\xe3\xe1\x6e\x5a\x66\xd2\x8b\x4a\x8b\x46\xb2\xe8\x1e\xc8\x0d\xea\x0d\x2c\xa0\xa3\x35\xf2\x82\x40\xa5\xc2\xfe\x2a\x50\xd2\x58\x77\x70\x48\x61\xfd\xde\xa1\xc9\xc5\x2a\x7d\xd4\x38\x2f\x96\xe7\xa9\x27\x66\x56\xc1\x1b\x67\x7a\xde\x28\xcd\x50\x0a\x1c\x39\x7f\xd2\xde\x61\xdb\xf7\xd4\xb4\xcd\xcc\xac\x24\xeb\x38\xb7\xa4\xc5\xa5\xb3\x3c\xff\xe8\x8d\x1a\x25\xb0\x47\x3a\xad\xd8\xd4\x10\x0f\x90\xab\xae\x3b\x60\xed\x99\x3a\xdb\x9f\xd8\xc2\xdc\xbc\x32\x31\x9b\x36\xcd\x66\xab\x65\xe3\x92\x2a\xbe\xbf\x7f\xae\xa7\xfa\x01\x79\xb6\x99\x0a\xac\xf4\xde\x52\x14\x4e\x66\xc8\x3e\xc0\x2b\x06\xae\x4d\xba\x79\x2a\x5b\x21\x78\x41\x8d\x08\x2b\xa2\xcd\x9d\xde\x93\x7e\xac\xe7\xd7\xc7\x8e\xa9\xe2\x1f\x67\x5f\x1d\xe9\xbe\x9b\x58\x18\xce\x10\xba\xf2\xf2\x11\x4c\xa3\x1c\xfd\x4f\x29\xe7\x39\xee\xa7\x16\xf5\x65\x61\xed\xfd\x1b\xcd\xda\xfb\x37\x81\x06\x61\xa5\x63\x3b\x08\x19\x2d\xe7\xcb\xf0\x9e\x1a\xf4\x1e\x6d\x1c\x80\x02\x9e\xee\x79\xfb\x3f\x33\xdd\xea\xe2\xff\x32\x81\xef\xa4\x9f\xd8\x41\x82\x16\x1d\x3c\x48\x09\x66\x24\x69\x6c\x90\x27\xf0\x30\xd8\xe3\xb4\x2d\xf9\xba\x61\x75\x08\x58\x6c\xfa\x6b\x66\xc8\x81\x33\x0c\xc3\x9b\x2a\x67\xf2\x66\xe0\xbb\x5f\xa3\x7c\x1d\x6f\xc4\xa0\xd3\xa0\x8e\x40\x75\x0e\x0c\xbb\x8c\x7c\xd3\x28\x3c\x54\xfb\xdf\x86\x43\x06\xd4\xb8\xd1\x51\x3c\x36\x5b\x2d\xdd\x67\x3f\x2b\x82\x8a\xe2\x27\x0a\x37\x14\x3d\x8e\x90\x46\xe9\x3c\xbb\x29\x06\x33\xaa\x3b\xe3\x92\x22\xa7\xbb\xac\xa4\x86\xff\x49\x8b\x9c\x89\x92\x90\x56\x9a\x71\xdf\x56\x67\xf3\xb7\x75\xff\x45\x61\x87\x51\x18\x2b\xc9\xae\x8f\x54\x47\xfa\x47\xb5\xc5\x3a\x89\x36\x9f\xa0\xc7\x67\x45\x61\xd8\x06\x44\x4b\xd7\xb0\x9c\xe0\x9d\x5d\xc7\x42\xc4\x9f\x21\x09\x0d\x1c\xf5\xae\x9e\x6f\x2a\xf8\x3a\x1d\x35\x58\x39\x6f\x29\x3e\x82\x19\xaa\xba\x09\x52\xd6\xeb\xfc\x7e\x1c\xa8\xd1\x3a\x0e\x47\xc8\x41\x5e\xab\xfd\xc9\x37\x54\x10\x14\x20\xbb\xcf\x04\x3d\x52\x99\xa0\x22\x83\xa1\xc5\x01\x58\x6f\xc4\xae\xe1\x3b\x94\xe2\x65\xb3\x03\x8e\xa4\x8b\xc2\x6c\x6c\x98\x26\x08\xe6\x0c\x75\x72\xbe\x6e\x69\x16\x5c\xe8\x9a\xfc\xe7\xf3\x9a\x34\xce\xdb\x35\xde\x47\x75\x80\xc4\x76\x98\x02\xe3\x25\xd6\x9e\xfe\x90\x6f\xda\xc0\x6c\x83\xd4\x8c\xd1\xe3\x03\xe8\xc6\x11\x8d\xe3\x38\xa2\xa0\x5e\x1b\x23\x93\xdb\x75\x9b\x82\x3d\x47\xd2\x90\xf4\x1e\x2c\x1f\x51\xa3\xbb\xf0\x05\x18\x22\x60\x0e\xe3\xe1\x0e\xd5\xe2\x7f\x15\xc5\x2f\xbe\x29\x3d\x9c\xea\x7e\x59\x27\xc4\x5e\x9e\x67\x2b\x38\xd7\xf3\xe0\x9b\x7f\xdd\x12\x5b\x3d\x2b\x44\xd7\xe1\x0a\x3b\x88\x18\x51\xd4\xcd\xf9\x5a\x23\xc5\x4d\xd4\x67\x71\x3d\xe1\xcd\x50\x8d\xca\x67\x1a\xdb\x64\x79\x5e\x58\x7d\x9c\xfe\x1a\xce\x88\xaf\x97\x1e\x81\xfd\xf5\x56\x8b\x13\x27\xb9\x11\x3f\x07\x59\x29\xf8\x5f\x7c\xed\xb9\x1f\xe2\x7c\x54\x64\xa1\xc9\xe0\x22\x63\x33\xdc\x0a\x6a\x78\x52\x97\x49\x7c\x4f\xab\x3d\x26\x71\x42\xdf\xde\x06\xcb\xde\x0a\x20\x02\x31\x70\x6e\xb3\xdc\xc4\xb9\x78\xf3\xd8\x60\x1c\x6f\xe0\x68\xf9\x61\xdd\x9b\x6f\x09\x4a\xed\x2b\xc4\xba\xd8\x51\xec\x29\x17\x31\xaf\x7c\xd3\xc6\x8d\x9a\x25\x45\x3e\x62\x6f\xc8\xf5\xff\x2f\x3a\x5d\xbd\x0b\x6d\x0d\xca\xab\x61\x2a\x63\x8e\x9a\x89\x06\x4c\xbf\x57\xd6\x28\x93\xc3\x3c\x49\x55\x85\xf7\x8e\xca\x58\xf2\xee\x64\x6d\x4f\xfd\x31\x93\x6e\x84\xfd\xb5\x8e\x66\xfd\xe5\x92\x26\xdf\xb4\xec\x9c\x83\xdd\x49\x64\x36\xc1\x87\x2c\xfc\x57\x5e\x66\x9f\x71\x3b\xc0\xcc\x6c\xef\x79\xcf\xe9\x62\xad\x3a\x6a\x42\xb0\x56\x09\x8b\x82\x3a\x47\xce\x06\x5a\xf1\x6a\xdd\x9a\x08\x20\x61\xec\xbc\xd9\x9e\xb7\xce\xf7\x34\x7f\x4d\x73\xd0\x0f\xcf\x53\x54\xc8\x67\xde\x92\x2b\x7b\xfa\x5c\xd3\x65\x87\xe9\xb1\xbf\x59\x84\x93\x89\x1d\xa0\xa9\x12\x0e\x11\xab\x76\x72\x15\x41\x7d\xec\x35\x6d\x5f\xaf\x2a\x5c\xc4\x8a\x49\x63\xcb\x49\x79\x78\xcb\x47\x54\x17\xea\x11\x47\xad\xbb\x6e\xd3\x15\xee\x6d\x87\x37\xf7\x50\xf5\xb7\x3d\x54\x42\x39\xa9\xcd\x8a\x31\x3b\xc6\x18\xd2\x5d\x3d\x0f\x49\xda\x35\xdd\x6a\x0e\xaa\x5d\x97\xda\x7e\x5a\x84\xb9\x63\xf0\x86\x13\x87\x34\x24\x5f\xb7\x24\x18\xbb\xa9\x89\xd7\x64\xb1\xa1\xbc\xfa\x7b\x81\x12\x59\xf9\x3d\xc8\xbe\xb9\x63\x61\x8f\xcf\x8a\x5d\xa5\x73\x04\xd3\x73\xa4\xe6\x6b\xd6\x5a\x7c\xab\x03\x06\xc0\x19\xae\x78\x21\xa1\xc1\x0c\x86\x98\x44\xc4\x64\x52\x58\xa9\xc2\x3e\xfe\xff\xa5\x9a\x97\x8b\x6d\xca\xe6\x79\x6a\xc2\xd8\xc5\x47\x38\x1f\xaf\xaa\xb3\xf2\x6a\xcd\xc9\x1b\x4f\xa0\xbb\xed\x48\x27\x6e\x2a\x31\xc9\x9b\xce\x30\x99\xd5\xd5\x70\x60\xd6\xc3\x1c\xfd\x15\x52\x5b\x51\x00\xcc\x63\x74\x34\x0b\x89\x85\xd2\x01\xb8\xef\xf4\x19\x36\x6d\x1e\x87\x6b\x09\x14\xa1\x9c\x78\x4b\xa0\xb1\x85\xcd\x13\xf3\xc0\x01\x69\x5e\xe9\xa8\x63\xe9\x82\x66\xc5\x56\xb4\x6b\x5e\x24\x77\x87\x22\xd6\x62\x72\x3d\x1c\x29\xbf\x1f\xa8\xea\x1b\xed\x57\x8e\x88\xcb\xad\x28\x14\xec\xe9\xed\xbd\x16\x55\x23\x33\x36\xaf\x5a\xb7\xb0\x84\x85\xc3\x1f\x03\x27\x1a\xe7\xd3\x81\x03\x07\xbb\x2b\x26\x8a\x92\x24\x86\xbe\x51\x35\x74\xb5\x54\x80\xec\x4a\x27\x67\x11\x27\x1b\x2b\x61\x3a\xd8\xca\x95\xef\xc4\xb0\xce\xbb\x70\xa4\x3f\x4a\xc3\x2c\x0f\x6d\x36\xa3\x10\x22\xb3\x9c\x49\x55\xe0\x16\xf1\xdd\xaf\xf9\x9a\xa7\xc9\x73\x9b\x6e\xce\x28\x3e\xc4\xd3\x0a\x57\xb7\x93\x8c\x0c\xce\xa1\xed\x53\x87\xaa\xb5\x19\x68\x7c\x04\x68\xe3\x8c\xdb\x6f\xfd\x34\xa4\xa9\x30\x33\x4f\x4e\xe9\x2c\x10\x72\x63\x8f\xde\xef\x4c\x6b\xdd\xec\x2d\xab\xd8\xc6\x43\x33\xdc\x22\x86\x8f\x86\x19\xbe\xd6\xbc\xf4\x36\x1f\x25\x83\x59\x9f\xab\x38\x87\x5c\x05\x50\x33\x60\x00\xd2\xf8\x2a\xfe\xff\x35\x3f\x75\x60\xe3\xbd\x3e\x0b\x72\x57\xa7\x56\x01\x49\x13\xb5\x03\xd5\x7a\x7a\x53\xed\xaa\x9d\x3d\x85\x42\xbd\xad\x95\xb7\xee\xf2\x02\x47\x69\x09\xea\x74\x62\xa8\x3d\x1d\xd9\xf6\xa9\x62\x8f\xf8\xa0\xec\xb6\x1c\xd9\x23\x93\x8e\x4d\xdf\xb2\xde\x79\x67\xab\xb4\x3e\xdf\x28\x8d\xec\x7e\x92\x4e\x9e\xd9\xab\x19\xab\x4e\xab\x06\xdd\x59\x04\x8b\xf0\x25\xae\x96\xaa\x6a\xc3\xbd\xfc\xb5\x4c\x3f\x45\xb5\x5f\xf9\x29\xd5\x78\xb5\x97\x78\x7d\xa4\xe3\xa1\x7a\x1c\x44\x7a\x47\x28\x97\x05\x23\xf8\x80\xb2\x2a\x08\xab\xfe\x16\x25\x51\xb3\x19\x43\x22\xd6\x81\x96\x5c\x0f\x57\x89\x9f\xc7\x56\x3c\x1e\xe8\x29\x1b\x25\x93\x59\x0f\x9c\x3f\x4f\x3f\x2b\x90\x3a\x4d\xc5\xa1\xa5\xc6\x6e\xab\x8a\xeb\xc0\xae\x87\x24\x0b\x52\xfd\x33\xce\xb6\x33\x8a\xa1\xfe\x4c\x4b\x55\xed\x60\x37\x2b\x86\x26\x55\xc2\xb4\xdc\x04\xcb\x37\xaa\x50\xb7\x5a\x1d\x3d\x2b\xc9\x46\xa4\x6a\x4f\xf7\x02\xaf\x2b\x7c\x4f\xfd\x6d\x91\x87\x51\x58\x6d\xdf\xd9\x6a\x48\x5d\x85\xac\xfa\x62\x97\xd7\xa9\x36\x92\xcb\xce\x3a\xef\xfe\xad\xa0\x41\x5b\xb8\x44\xb4\x85\x8a\x38\x61\xf7\x54\xd7\x50\x7f\x58\xea\x7c\x0e\x25\x1f\x9c\xe4\xe5\xf2\xbc\x30\x53\x52\x01\x94\x91\x2a\xd5\xa1\x86\x46\xd9\x83\x9c\x20\x7a\x0b\x09\x22\xe0\x5f\xae\x2a\x76\xd1\x9b\x48\x4a\x6a\xbf\x5b\x7c\x58\x5a\x6c\xf8\xab\xeb\x08\xc4\x14\x09\xe6\x92\xc3\x0f\x6a\x0e\x7f\x85\x69\x4e\xd7\x6d\x96\x03\x41\x80\x28\x0f\x4d\xfe\x7c\xad\xca\x3f\x9b\xeb\x22\xb0\xeb\x34\x95\x7d\x99\xf3\x5c\x93\xcc\x6b\x79\xe9\xe7\xba\xe3\x22\x0e\x61\x00\x25\x42\xf6\xd1\xf2\xf1\xc0\xa3\x16\x8f\xb9\xf2\xd1\x8a\x1d\x86\xf1\x4e\x07\x39\xfe\xfc\x93\x04\xf8\x72\x90\x78\x37\x3d\xbb\xa7\x9d\xfd\xfb\xdd\xb4\xd1\x8b\x22\xab\xb6\xb3\xa7\xe5\xab\x6b\xc8\x9c\xbf\xd3\xd2\x3c\x68\x63\xbb\x1a\xf6\x43\x43\x5d\xb7\xca\x8e\xa3\x1f\x41\xd4\xd4\x1d\x95\xc9\x28\x44\xdd\xde\xfb\x9c\xdc\xd9\xc5\x37\x5b\x09\x82\x97\x16\x0e\x75\x97\xe7\x3b\x9e\xae\xf7\xb8\x52\x74\x3c\xae\x25\xb1\x92\x74\xbc\x43\x49\x62\x75\x7a\x4a\x12\xab\x33\xf5\x6d\x7c\xa7\xb1\x10\x84\xec\xac\xe3\xa8\xa5\x39\x7f\xc1\xff\xa0\xfa\x7c\xc2\x34\x35\x83\x10\x7a\xe7\xba\x17\x57\xe1\xa4\xce\x07\xfb\x54\x43\x2b\x8e\x5e\xc9\xa0\x56\x6b\x50\x52\xab\x5b\xb3\xaf\x8b\x8b\xdd\xc9\xdf\xfb\xbb\x0a\x63\x8e\x06\x3f\xbe\x56\x31\xfe\xaf\x85\x30\x43\x78\x3a\x98\x6a\xa1\x62\x51\x95\xe0\x9b\xaa\x42\x95\x26\xfd\xb5\x4c\xc9\x00\x31\xf3\x1d\x12\xee\xdf\x54\xdc\xf6\xb7\x1d\xd0\x67\x68\x63\x9b\x83\x49\x76\xc6\x97\xb0\xee\x28\xd9\x6a\xb8\xf6\x62\x7f\xb7\x9e\x8e\x62\x36\x5f\xfe\xf9\x68\xc6\xf7\x72\xc1\xb6\x88\x0e\x8f\x26\xea\x6c\xcb\xf7\xe4\x36\x4d\x93\xd4\x3b\x22\x58\xba\x5f\xd2\xb4\xc8\x5f\x6a\xe9\x4b\x7e\xd1\x31\x4b\x21\x48\x66\xcd\x17\xbe\x09\xb6\x2e\x5d\xa2\x39\xcf\xd3\x44\x34\x20\x69\x0a\x9c\x44\x91\x97\x2b\x9a\x2a\x98\x5b\x12\x15\x63\xbb\x87\x56\x2b\x7c\x31\x20\x74\x39\xab\x4a\x67\x0e\x0e\x83\xf3\x30\x90\xe8\xee\xfd\x76\xbd\x27\xe5\xb0\xc7\xd0\xf8\x90\xbb\xd3\x53\xec\x1d\xef\x05\x6a\xd3\xbd\xa7\x11\xe8\xd7\x74\xc6\x23\x8c\x06\x51\xb8\x6a\x67\x15\x21\xf7\x69\xd5\xd4\x00\x40\x0a\xff\xff\x40\x69\x53\x5c\xa8\x65\xe6\xe2\xcd\x62\xc6\xb3\xf6\x9f\x45\x7d\xc8\x25\x38\x9e\x5b\x7c\xf4\x40\x81\x59\x72\x13\x87\x21\x3c\x64\x18\x48\x68\xfe\xf3\x75\x1b\x9d\x67\x3f\x32\x19\x7b\x7e\xb0\xb6\xcc\x47\x86\xa1\x81\x00\xa2\x20\xa7\x7d\x44\x05\x5d\x91\x19\xd5\x69\x7a\x29\x50\x46\xf0\x8f\x15\x8b\xca\x79\x15\x29\xc7\x76\x2d\x49\x32\x83\xa8\xd7\xa1\x5f\xaa\x0d\xcb\xd8\x19\x1a\x1e\x57\x61\xa9\x36\xbb\x80\x6a\xb6\xae\xa7\x03\x07\x68\xfb\x28\xf5\xd3\xf3\x35\xbe\xb4\xad\x7e\xf7\xe7\xba\x59\x9e\xda\x78\x98\x8f\x6c\xac\xc5\xb6\xff\x6b\x25\xa9\x77\x45\x8b\x09\x29\x1a\xc3\xb5\x70\xdc\x01\xe3\x6e\x09\xc6\x87\x76\xea\xb9\x89\x89\x4c\x1e\xb2\x7b\x25\x4c\x39\x7e\x93\x9d\x6a\x84\x27\xcb\xf3\xdd\x41\x98\xf5\x49\xa8\xf8\xf0\xbc\xd3\x99\x54\x24\x11\xa7\x7c\xbb\x0c\x63\xad\x89\xa3\x05\x59\xb2\xb7\x4b\x9f\x0a\xff\xf1\x5e\x1d\x83\xed\x86\xf1\x7a\xd9\xd4\x6d\x73\xf4\x11\xd5\xac\x0b\x59\xb2\x52\xa8\x39\xab\xa6\x2c\x4b\x88\x47\x46\x33\x5b\x81\x46\x06\x2e\xd6\x47\x8a\x28\xf5\x87\x2e\xe2\x5b\x31\xe9\x10\x81\x24\x3e\x87\x90\x6f\x07\x55\xa3\x50\x1d\x7c\x8c\xb6\xb0\x20\xb3\x5a\x92\x4c\xb9\xed\x8f\xe2\xea\xd8\x72\xc8\xb0\x5a\x83\x8e\xa8\x3f\xb5\x76\xaa\x4e\xc2\xd4\x2a\x86\x12\xd0\x45\xf0\xb5\xda\xa0\xa8\x5f\xa1\x95\x54\x90\x61\xff\xb8\x54\x3a\x70\xff\x38\xd0\x2d\x11\x1b\xa2\x7d\x2e\xfd\x49\x4a\x7c\xe5\x8c\x8a\x8b\x23\x13\x0f\x0b\x33\xb4\xbb\x3e\x81\xb0\xfa\x07\xaa\x2e\x8c\x16\x38\x84\x4b\x77\x34\x53\x1c\x2b\x58\xf2\x0d\xbd\x00\xe6\xe6\x21\x9d\x56\x7c\xdd\xa6\x0d\xb1\x52\x30\xc0\x09\xdb\xf9\xdd\xd2\x3b\x52\xef\x2a\xc4\x52\x6a\xfb\x9b\x7d\xce\x2a\x22\xe1\x0c\x52\x07\xbe\x2e\x3d\x40\x21\x2a\xd8\x1b\x90\x0d\xab\xf7\xe8\x8f\xf8\x86\x85\x54\x67\x50\x95\xc7\xf0\x8e\x8f\xf0\x76\xbc\xd3\xf0\x8b\x7f\xa1\xbb\x62\xfb\xa6\xc8\x6c\xc7\x47\xd6\x5f\x2d\xfd\x89\xfc\x55\xc5\x31\x9b\xda\x2c\x89\x0a\xd5\x5f\x86\x60\xe2\x8b\x14\xd6\xf2\xb5\xf3\xfb\xc6\x61\x1c\xf6\x4d\x4a\xa7\x1c\xce\xe1\xfb\xaa\x90\x81\x81\x97\x32\xb9\x87\x7d\x25\xc4\x0c\x5c\x1d\xaf\xb3\xaa\x19\x8b\xf0\xf5\xd2\x98\xe5\x2b\xc2\x6f\x96\x9e\x9a\xe7\xcd\x46\xdd\x76\x79\xbe\x3b\x4c\x00\x80\x83\xab\xc9\xe2\x5f\x7c\xe3\x30\xae\x93\x24\x8a\x0a\x57\xa9\xe1\xd6\xfa\xd2\x77\x7d\x5c\x54\x99\x3c\x43\x4c\x3f\x28\x26\xe0\xfc\xfb\x53\xfa\x4b\xd6\xc6\x0f\xbc\x41\x38\x87\x13\x45\xb0\xa2\xe2\x7c\xc6\xc9\x5a\x88\x7c\x3d\xc6\x81\x71\xb7\x7c\xd3\xb0\x6b\x9c\xed\x4d\x8d\xa7\x17\x92\x00\x58\x05\xc3\x2d\x87\xfd\xb3\x5d\xa2\x59\xaf\x3e\xe0\x88\xb1\x94\x2a\xa2\x82\x45\xd9\x55\x33\x36\x24\x0a\x5f\x9d\x72\x42\x75\x5c\x0d\x2c\x5f\x2b\xa2\x8a\x38\xec\xef\xd1\x44\x40\xe7\x14\xa5\xc6\xd1\x5a\x8b\x81\xc3\x56\xff\x8b\x9f\xed\x79\x1a\x8a\xd7\x9f\x9c\x7a\xed\x89\x07\xa5\xc2\x23\xb2\x94\x92\x53\x1e\xae\xa7\xa3\xa4\xa4\x7c\xbb\x16\x20\x17\x71\x0e\x83\xe0\xbc\x4d\x27\x95\x7e\x5e\xcb\x9c\x26\xe9\xd8\xa6\x4f\x55\x4f\x27\x3e\x06\x45\x40\x8e\x7e\xde\x11\x98\xcc\x90\xc7\x2f\x54\xf4\x64\xd0\x1d\x0f\xb9\x72\x7e\xe8\xb1\xf1\xd2\x4c\x77\xcd\x39\x40\x98\x7a\x71\x14\xaa\x77\x10\x91\x7c\xe5\xd2\x7d\x93\x53\x0a\x28\x88\x82\x03\x08\x3e\xf8\x5d\x25\x4f\xc8\x71\x05\x0c\xf7\x97\x71\x38\x60\x61\x5d\x83\x99\xe2\xdf\x6f\x18\xe0\x6a\xea\xb3\x0d\x33\xe1\x1d\xca\x04\xd4\xea\x9b\x4f\x2a\x46\xa5\x41\x38\x89\x92\xb1\xc9\xc3\x7e\x47\xc9\x71\x9d\x56\x3d\xe0\xa7\x95\xd3\x91\xe5\x26\xe5\xb6\x34\xd7\x58\xba\x3c\xef\x1a\x4b\x65\xe3\x13\xdd\x54\x0e\x8a\x2a\x51\xe8\xa3\xf7\xe7\x1b\xe5\xb3\xe7\x05\xc3\xe5\x1d\x77\xb3\x4b\xc8\xc1\x17\x80\x17\xf4\x17\x6e\xfb\x54\x8f\x90\xcd\x29\x9d\x74\xae\x79\x60\xdd\x80\x50\x53\x12\xf5\xbe\xe3\xe3\x04\x0e\x15\x69\x71\x68\x29\xf0\x8e\xcd\xab\x12\x9c\x31\x01\xb9\xd2\x1f\x3f\xd7\x96\xe3\x1a\x17\x51\x1e\x4e\x22\xdd\x2a\x7e\x57\x01\x38\xef\x2a\xee\xd3\xac\x48\xd7\xc3\x75\x49\x56\x38\xed\x89\x6a\x48\x44\x7b\xa2\x8d\xe7\x6b\x14\x46\x96\x9a\x2d\x60\x59\x6f\xab\x40\x6c\x77\xaf\x46\x40\xe0\x70\x81\x4d\x2e\x2e\xf2\xe2\xd3\x30\x19\x84\x7d\x3e\xc6\xd1\x1c\x73\x41\xb5\x5b\x35\xf1\xa9\x87\x9e\xef\x0e\xc2\x7e\x4e\x9d\xf0\xbe\x35\x37\xf0\x2d\xb0\xe7\xd4\x24\xc6\x26\xdb\x89\xaf\xc6\x32\x46\x6e\x1f\xc0\xc2\x9d\x53\x05\x21\x65\xf6\x55\x29\xd0\x54\xaf\xe0\x36\xbf\xe3\xbb\xfa\xed\x4f\xf7\x14\x23\xe4\xdc\xb4\xe5\xd1\x20\x22\x09\x42\x2a\x47\xb0\xe4\x9b\x2e\x2e\x37\xac\xe8\xe2\x62\x37\xb2\x43\x13\x85\xaf\x4a\x60\xcd\x09\x41\xec\x2b\xc9\x0e\xb6\x15\x89\x86\xa9\x59\x99\xf1\x71\xfa\xbb\x78\x05\x38\xc5\xc0\x8e\x4a\x4b\xd0\xa7\xeb\xa2\x86\x66\x35\xb7\xec\xd9\x30\x1a\x36\xf0\xa0\xd9\xf3\xad\xa0\xef\x97\x6d\x96\x59\x9e\x25\x69\x94\x50\x8d\xea\xdf\x68\xbc\xd7\xfe\x85\xee\x86\xc9\x72\xbb\x61\x72\xe6\xc0\x81\x55\xe0\x80\x97\x6f\xbc\x14\xb1\x8d\xb9\x5a\x20\x49\xbd\x8e\x6b\x27\x3f\xab\x8e\x04\x1b\x23\x0d\x6f\x19\x92\x80\xc0\x79\xb6\xe7\x63\xf0\x8f\x4b\xd5\xa9\x7f\x44\xbd\xba\x19\xac\x27\x7d\x56\x5c\xac\xcc\x27\xf2\x9a\x1f\x28\x8c\xda\x07\xaa\xf0\xb9\x5a\xc4\x83\xbd\xb4\x40\x60\x7f\x71\xa8\x21\x01\x7e\xae\xf4\x32\x4e\x27\x74\xa4\x86\x53\x43\xfa\x76\x68\x3a\xf0\x80\x73\xe8\x76\x96\xee\xb7\x6a\xe7\xf0\x75\xa0\x5a\xcc\x84\xc9\x0e\xff\xc4\x6d\xc6\x28\x59\xfd\x71\x2d\xbf\xb8\x5a\x8d\xd6\x93\xd5\xa9\x21\xe9\x67\x7a\x23\x96\x3b\xa2\xaf\xc7\x66\x3c\x8e\x1e\x66\x04\xb6\x77\xa1\x8f\x2c\xa2\x48\x1d\xa7\x41\x74\xa7\x76\xd0\x13\x98\x0f\xde\xcf\x0d\x15\xe5\x42\xef\x82\xff\x7f\xa9\xcc\xd1\x1d\x2d\x16\xc2\x5d\x0d\x2e\x51\xb7\x70\x88\x47\xe0\x2c\x01\xf8\xdc\x4f\xec\x97\x9c\xdd\xb6\x9e\x07\xad\xaf\xc5\x76\x83\xd6\x80\xa8\xcd\x77\x1c\x7d\xf8\x59\xd5\xf9\x34\x08\xb3\x49\x64\x60\xc4\x61\xe0\x81\xcc\xe5\x6b\x45\xf7\x90\x59\x62\x5f\xe5\x0d\xb2\x17\x64\x25\x30\x47\xd7\x31\x64\x7c\x13\x28\xcc\xeb\x1f\x93\x17\xad\xc8\x51\x5e\x74\x45\xbd\xea\x75\xe0\x4e\x5d\x09\xbc\xd0\xfb\x93\x3d\x5f\xb8\xbc\x8e\x18\x5c\xc2\x7f\x8f\xe0\xff\x03\x4c\x34\x7e\xe2\x7b\xd8\xdc\xac\x13\xe4\xd8\xd8\x57\x2b\x07\x96\xe9\x17\x11\x42\x81\x39\x13\xc5\xcd\x37\xf0\x21\x2c\xbb\x6d\xd3\x2d\xfa\x3a\x2f\xbd\xd4\xdd\xbf\xff\xf1\x6a\x49\xb8\x03\xff\xc0\x81\x65\xcf\x7c\xed\x82\x84\x1f\x60\x86\x98\xfd\x1c\x13\x09\xb3\x77\x83\x96\x35\xa6\xe8\xab\xbc\x14\xe1\x30\xdc\x0e\x94\xcf\x7e\x5b\x49\x6e\x5d\xd7\x70\x15\xd0\x70\xc1\xfe\xb0\x27\xe0\xa0\x22\xd5\xbe\x60\xbf\x8c\x16\x85\xd4\x35\x3d\xe4\xaa\xf2\x25\x93\x7c\x73\xc2\xf0\x29\xa6\x79\x09\x7c\x48\x7b\x59\x55\x6d\xb3\x91\x49\x6d\xb6\xaf\x5a\xa9\x78\xde\x8f\xe9\x5b\x59\x45\x2a\x50\x9c\x4b\xa0\xf1\xc4\xab\x73\xe5\x1c\x07\xef\x03\xcc\x14\x9c\xa8\xeb\xc8\x34\xc0\x82\xa0\x52\x09\x83\xbd\x93\xa4\x73\xb0\xd0\x1f\x95\x0a\x19\x8a\xfd\x23\xda\x81\xf4\xb2\xc0\xf6\x5c\x6b\xb8\x3d\x9f\xab\xce\xcb\xcc\x95\x7e\x11\x6e\xdf\xc3\x00\xf1\x4d\x23\x58\x3b\x3c\xbf\xd4\x4d\x8a\x9c\xea\x10\x58\x59\x33\x74\xae\xba\x66\x6f\x97\x41\x84\xda\x29\x8e\xa4\xed\x53\xdf\x14\xb4\x62\xd2\x7e\x64\x36\xd9\x73\x70\xec\x37\x4a\xe0\x55\xc1\xe1\x37\xd3\x62\x02\xa1\x01\x4e\x1d\x2b\x16\xac\xff\x0b\x38\x55\xcc\xeb\x39\xe7\x4a\xf5\x53\x33\x1e\x0b\x71\x27\x3e\x75\x14\xa3\xc8\x37\xa5\x0a\x90\xd3\x22\xda\x9c\xf1\x4d\x48\x8f\x94\xfc\xc2\x25\x6d\x34\x2f\xb6\x81\xfd\xf3\x64\x30\x50\xac\xf3\xec\x75\x8b\xaf\xa2\x2b\x37\x9b\xd6\xce\x79\x40\xdf\xbb\xa5\x82\x88\x9e\xd0\xa5\x9b\x2f\x97\x4a\x3e\xed\x94\x86\x57\x3e\x6a\xb0\xb9\x1d\x9e\x5f\xe8\xae\x14\xf1\xc0\x66\x2b\x26\x5e\x43\xfe\x8c\x43\x01\xf6\x96\x25\x30\x70\xd2\xc6\x36\xb3\xa9\x15\x2d\x6a\x89\x86\x55\x94\xac\x21\x56\x1f\x3b\xc8\xc2\x24\x4d\x26\x36\x9a\x53\x4d\x3b\x8c\xd1\x76\xf0\x33\x57\x14\x64\x39\x34\xc1\xf8\x7b\x61\x9d\xbd\xbd\x16\xf8\x79\xdf\xa4\xc3\x30\x42\xea\x09\x6b\xe9\xa3\x52\xa5\x01\x3f\x72\x24\x33\x44\x51\x6f\x87\x61\x96\xcf\xf8\x9c\xd3\x39\xd5\x79\x72\x57\x79\x15\x9a\x5d\xac\x18\xc7\x3b\x94\x28\xe1\xdb\xb4\x3c\x91\x27\x79\x57\x9d\x46\xcc\x64\x8f\x0d\xc4\xc9\x1a\x0d\x79\x44\x54\xbf\xaf\xc1\x9b\x78\x78\xfe\xc5\x6e\x18\xdb\x57\x92\xd4\xac\x88\x16\x14\x7c\x38\xd4\x1d\xf9\xba\x0d\x83\x36\x0e\xa3\x88\x53\x33\xa2\x3a\x50\x13\x10\x6f\x51\x5b\x2d\xe2\xd5\x34\xb4\x31\xe9\x80\x3b\xc0\x3e\x1a\x44\xf8\x7a\xea\x03\x38\xfb\x8a\x4b\x28\x01\xfc\x83\xae\x01\xbe\x76\x49\xaf\x8d\x30\x1e\x64\xa3\xd0\x46\x03\x25\xee\xf2\x5d\x25\xee\xf2\xdd\xad\x9a\xac\x2f\x2c\x75\x97\x9e\x3f\x48\x4f\xfe\x88\x0e\x9b\x47\x57\x5c\x55\xde\x71\x41\x91\xbe\x06\x1c\xd8\x9f\x40\xdb\x06\x4e\xaa\x9b\xa5\xa2\x57\xbc\x5c\x6a\x14\x61\xc7\x49\x98\xec\x9d\x6a\xee\x55\x48\x00\x48\x76\x06\x06\xef\x2d\x15\x68\xbc\xa5\x92\x63\xf9\x28\x49\x49\xa2\x54\x69\x03\x63\x26\x70\x5c\xdc\xaf\x41\x54\xb6\xce\xca\xa1\xe7\xbb\xe3\x30\x2e\x32\x5a\x63\x70\xbc\xc0\x4b\x85\x1a\xeb\x9f\x28\xcd\xa8\x6d\xbd\xad\xe6\xe0\xa5\x97\xba\xab\x61\x3a\x56\x9e\xe2\x75\xe5\x29\x5e\x57\xf9\x80\xff\xe4\x17\xff\xfe\x8c\x0f\xf3\x50\x16\x40\xc6\x83\x59\x78\xa4\x5b\x48\x91\x8b\x26\x66\x00\x95\x7f\x81\xba\x5f\xd7\xad\x61\x1f\x94\x3e\x84\xbb\x0d\xf3\x8d\x02\xc5\x1b\x2e\x5f\x13\xc6\x14\xd1\x13\xa3\x9c\xb0\x47\xc0\x89\x42\xae\xef\x3b\x81\x02\xec\x7c\x84\xed\xa0\xba\x5a\x0f\xba\xb6\xfb\xad\x28\x8f\xcf\x75\x6d\x9c\xa7\x76\x92\xda\xd8\x16\x29\xe2\x8b\x1a\x37\xbc\xb0\xb9\x7f\x62\x2d\x3c\x49\x33\xbb\xab\xf3\x6b\x72\x14\xbc\x55\x12\x37\xbe\xa3\x1c\x77\xa4\x52\x77\xe0\x38\xa0\xe0\xf3\x14\x58\x7e\x60\x09\xb6\xf7\x3a\xbf\xfe\x79\x0f\xba\x78\x41\x08\x89\xd9\xce\x62\x9d\xcc\x4c\xfd\x58\x64\x45\x14\xc6\x99\x2e\x6a\xe3\x59\xa5\xc2\xed\x00\x29\xc5\x64\x12\x85\x24\x56\x5a\xfd\x33\x0b\x57\x06\x8a\x0c\xbf\x19\x18\x2f\x2e\x76\xfb\x23\x6b\x26\x1d\xcf\x4b\x8e\xba\xb0\x00\x07\xbc\x5b\xb9\x99\x14\xe9\x63\x95\x7b\x80\x95\xca\x18\x0c\x26\xc1\xac\x37\xe2\x57\x33\x85\x35\xfc\x18\x78\x37\x98\x74\x1b\xbe\x02\xf3\xbb\x91\x83\x2c\xa2\x91\x2a\xeb\xfb\x07\xe4\x13\x02\x19\xb4\x4f\xb1\x3e\x3d\xd4\x5c\xf1\x1f\x2b\x61\x52\xa8\x16\x49\x69\xae\x4d\x9b\x97\xc0\xd3\x76\x46\x31\xc5\xde\x56\x94\x67\x70\xc9\x85\x4f\x74\x8f\x07\x6d\xee\xf0\x5d\x3f\x27\x31\xe4\xf0\x4d\xb8\x4b\x19\x96\xf9\x8e\xaa\x89\x20\xad\x82\xf5\xaa\xb5\x47\xbe\xd3\x08\x06\xf7\xef\xef\x5a\x93\x85\x55\x4c\x77\xd8\x2f\x1f\x5a\x32\xa2\xb3\xa8\xf2\x60\x61\x2e\x81\x9a\x56\x42\x66\x94\x36\xfd\x3e\x17\x34\x35\xf1\x63\x64\xad\xa3\x4b\x40\x9c\x08\x77\x84\xaf\x55\xf7\xb9\xa7\x14\xf3\x3b\x9d\x5f\x98\x6f\x94\x41\xd8\xbf\xcc\xb5\x2c\x34\x69\xcf\x4e\x55\x35\x1f\x79\x01\x38\xa8\xc7\x54\x9f\x4f\xdf\x46\x11\x90\x69\x2c\x8c\x0d\x47\x58\x08\x96\x69\x89\x08\x59\x63\x47\x69\x07\x09\x17\x9b\x99\xe4\x3b\x1b\xca\x9c\x0b\x3e\x14\xf6\x7c\x5a\xc8\xea\x32\xbc\xa9\xa7\x59\xff\x6b\xd2\x00\xf4\x02\x88\xda\x8e\x29\xa4\x52\x56\xa4\x36\x82\xec\x2b\x42\xaf\xdf\xc6\x94\x68\x29\x13\xfe\x07\x60\x24\x44\xd7\xc4\xbb\xd4\xab\x61\x14\x59\xe6\xe5\xc5\x40\x9c\x2a\x1b\x4d\x09\x88\x8a\xee\x29\xde\xdf\x95\x34\x19\x47\x96\x0f\x65\x4d\x10\x29\xac\x04\x7b\x79\x01\x75\x17\x17\x97\xfe\x7f\xf4\x2e\x70\x9a\x1f\xef\x79\x34\xd8\x35\x84\xa9\x30\x27\x8f\xe8\x00\xc0\xf6\xfc\x6f\xb0\x3d\xb1\x5d\xb6\x4f\x7d\xe3\xf3\xee\x1f\x9d\x52\xa2\x14\x4e\x3e\xd8\xb9\x58\x27\x85\x4e\x6a\x27\x1b\x5b\x8d\x02\xf7\xd5\x13\x96\x1f\xf9\x0a\xe6\x4f\xa1\x85\x68\x7f\x42\xb3\x7e\xcd\x52\x25\x58\x18\x46\x3b\x8e\x88\x79\xdb\x54\x09\xb2\xbe\xa3\x34\x60\x9f\x9a\x56\x96\x10\x1f\xfe\x77\x14\x85\x90\xc3\xf9\x0f\x9e\xa2\x74\xb2\x48\xb7\xd1\xa0\xc3\x34\xed\x99\x56\x66\x14\xd6\xe0\x6d\x66\x99\x42\x3e\xf9\x1d\xea\x63\x96\xc3\xa6\x1a\xd1\x47\x0f\x40\x06\x8d\x68\xf0\xba\x4a\x16\x5c\xf9\xc9\x5e\x15\x50\x63\x25\x3e\x62\x4f\x14\xf8\x96\xc7\x51\xef\x83\x57\x74\x55\xed\x2c\xb3\x92\xa4\xd5\x76\xd9\xd1\x71\x24\x9f\xec\x85\xe1\x1c\x03\x67\x8a\xb0\xea\xd0\xc8\xe3\x4c\x38\x56\x7a\x84\xfc\x36\xe4\x98\xf9\xaf\x82\xbd\x9e\x85\x20\xfe\x71\x7a\xd6\x9a\x57\x0d\x97\x6e\x7b\x4f\xd9\x9d\x07\xf4\x2b\x58\xdd\xf7\xb1\x1a\x59\x6b\x33\xe8\xfc\xca\x6f\x70\xda\xed\x7e\xa9\x0b\x7b\xc7\x02\x0c\x93\x63\xa8\xf2\x09\x87\xdf\x0e\x14\x4f\xe5\x4e\x82\xcb\xe0\x28\xfc\x93\xd2\x43\x64\xce\x61\x1d\xc0\x52\x9e\x44\xf6\x1c\xab\xf0\x1a\xf6\x20\xc6\xf7\xa6\x6a\x6c\xdb\x33\xf5\xc1\xfe\x09\xd5\x25\x34\xd7\xab\x56\x11\x4c\xc8\x51\xa5\x60\x78\xa3\x54\xa4\x1a\x0f\x81\xb8\xc5\xa7\x1f\x60\x07\xb3\x0a\x0d\x19\x57\xc0\x2c\x8f\x07\x9e\x86\xec\x96\x07\x4e\xda\x68\x18\x42\x86\x56\xca\xee\xe8\x71\xe2\xeb\xb6\x6a\xb7\x5d\xb7\xb1\x22\xec\xfd\x87\xf4\x1e\x7c\xad\xdc\xf4\x6c\x14\xee\x50\xfe\x0c\xa4\x1f\x51\xde\x7e\x0b\xd3\x85\x78\x9d\x01\xea\xf8\x41\xc4\x9d\xda\x7d\x84\x2d\x7a\xbd\xd1\x90\xf0\x0b\xc4\x18\x13\xd9\x01\xe7\x66\x5a\x19\xc3\x35\x7c\x61\xdd\x46\x8f\xab\xfa\xea\x3f\x2f\x15\xf1\xf1\x95\x3a\x67\x1a\x0d\xae\x14\x73\x14\x9b\x0f\x77\x05\xe0\x5d\xf7\xf4\xbc\x62\xf4\xbf\xc0\x0b\xb9\x2e\x45\x07\x04\x07\xb8\x52\xb2\x28\xd5\xbb\xb9\x0e\x88\x85\x43\x52\x01\x0c\xbc\xfa\xc6\x05\x54\x64\xb8\xfa\xdd\x2a\x79\x9b\xa7\xd6\xe4\x9b\x73\xaa\x8b\xa7\x54\xe4\x46\xe0\x4e\xc0\x0e\xbf\x4d\x0f\x82\x1a\x13\x67\x0d\x84\x5c\xad\xed\xf8\x37\x69\x7f\x24\x21\x36\xab\xc6\x93\xcb\x20\x0a\xf2\x4d\x2c\x70\xd7\x4c\x48\x03\x57\x91\xdc\x20\x65\xc0\x1c\x1d\x7c\xd3\xc8\x51\x90\x94\x64\x1a\x4e\xf8\x33\x6c\x3e\x95\x4e\x8e\xd6\xf7\xce\xed\x78\x12\x59\x4d\x71\x7c\x57\x27\x83\xef\xaa\xe3\xc1\xbe\x02\x1f\x40\xfb\x80\x1d\xc7\x8d\x79\x46\x89\xb1\xdc\x73\x81\x30\xa9\xc8\xf2\x49\xe4\x6a\x76\x8b\x8b\x1c\xbb\xdf\x57\x5d\xf8\xa7\xda\x40\x6d\x63\x13\x17\xab\xa6\x9f\x17\x9e\x62\x46\xfa\x47\x3d\xc8\xf4\xaf\x54\xaf\xea\xc4\xa4\x26\x8a\x6c\x94\xc1\x6b\xc7\x69\x71\xbc\x54\x28\xd6\xe3\x30\xbc\xc0\x6a\x5c\x0b\x1a\x69\xf0\x83\x2e\x97\xa1\xf5\x0f\xfb\x16\x5d\xe2\x02\xaa\xa6\x95\x2a\x68\x6b\xff\x87\xf9\xc8\xe4\x3f\x4d\xbf\x2c\x04\xe7\x9a\x51\x52\xd5\xbe\x6e\x96\x5b\xb8\x2d\x0f\x72\xa1\x69\x67\x8d\xcf\x72\x0b\x15\xa7\xcb\x4e\xef\xeb\x6d\x25\xd0\x14\x8d\x58\x02\x51\x2e\x3d\x7a\x14\x28\x74\xcf\xb6\x9e\x4b\xd3\x25\x9f\x9a\xd6\xe9\x2b\x9d\xa1\x39\x51\xd6\x48\x40\x69\xa3\xe0\x54\x7c\x9b\x98\x3b\xb1\x69\xd0\x84\x8e\x0a\xe1\xb6\x5e\x8d\xf0\x52\xd5\xa1\x1f\xd6\x99\x42\x5f\x70\xdc\xd3\x28\xd8\x22\x50\xdc\x3e\xd5\x34\x9c\x35\x9a\xd1\xe5\x25\xc9\xf2\x05\x5e\x0d\xe4\x08\xe8\xf8\xe8\x91\x9e\x78\xaa\xb7\xd5\x62\xfd\x72\x77\x14\x66\x13\x13\x87\x7d\x01\x92\x70\x43\x3b\x32\x88\xd2\xdd\xfe\x84\x2e\x9f\x88\x88\x2d\xf6\xed\x31\xa5\x82\x7a\xac\x01\x10\x7c\xe9\xa5\xae\xad\x1c\xd9\x4f\x6a\x48\xf2\x9d\x6c\x26\xcf\x2d\xd1\x0e\x7a\x5f\x13\x4e\x2f\x5f\xb7\x24\x08\xbb\x69\x38\xb1\xb3\x3e\x10\x7e\xb3\xf4\x85\xd4\xfb\x78\x01\x24\x88\xce\xe9\x34\xd2\x71\x97\x45\xb0\x51\xf8\xaa\x59\xb1\xf9\xa8\xa3\xe8\xa6\xce\x2a\xd2\x83\xb3\x8a\x69\x3f\xb7\x91\x9d\x8c\x92\xd8\x92\xef\x20\x32\x08\xd5\xbc\xa2\xa8\x7d\x9f\x3a\x54\xf8\x1a\x6b\x93\x29\xa7\x21\xd4\xa0\xb3\x60\x78\xdc\x6f\x34\x42\x8b\xca\x7a\xe5\xb9\xe9\x8f\xe0\x4c\x4a\x38\xa1\x73\x09\x5b\x3f\xb2\x70\xa8\x9b\xad\x85\x0e\x4b\xe4\xfa\xe7\x7d\x34\x1b\xf8\xc5\x73\xd2\x93\x38\x8c\x92\x34\xb7\xe9\x1c\xad\x45\x1a\xa4\x2f\xff\x24\x25\x08\x44\x7a\x4d\xe5\xab\x1f\x29\xd5\xce\x99\xa9\x17\x45\xbe\xa8\x1c\xab\x81\x9d\x14\xd4\x25\x81\x45\xc4\x8c\x43\x1a\x7e\x3b\xd7\x53\xb9\xc8\xce\xf4\xe9\x06\xb8\xfa\x60\xf7\x73\xb3\x8a\xba\xf7\x5c\xa0\x2b\xa2\xef\xc3\xc9\xe1\x22\x3b\xd6\x10\x12\xd7\x5f\x69\x2c\x8c\x03\x07\xba\x5e\x10\x44\x87\xf7\x35\xa6\x48\xe1\x01\xf4\xa1\x4e\x96\xdb\x09\x00\xa7\x88\x15\x11\x06\x3a\x44\x8c\x73\xfe\xdf\x57\x25\xb5\xf5\x24\x2a\x26\x79\x91\x14\x19\x31\xfb\x61\x1b\xdc\xa1\xbd\xc8\xd7\x2a\xfe\x4a\xe2\xc1\x63\x64\x60\x04\x48\xe6\xf9\x5b\x5e\xaf\x26\xf9\xe1\x3f\xfc\xf1\x5e\x65\x02\x70\x4c\x1c\x21\x5c\x8d\x30\x25\x78\xac\x2e\x50\xe1\x38\xfc\x6f\x07\x9a\xd1\xe2\x9e\xaa\xb6\x9c\x08\x54\xf4\xce\x15\x41\x29\x2e\x7b\xdd\xf7\xc7\x77\x4c\x3b\xbf\x76\x90\xbf\xec\xa1\x1a\x8b\x15\x93\x02\x2d\xfc\x6c\xab\x1e\x8f\x1f\x80\x41\x98\xf5\xa3\xa4\x8a\xbe\xa8\x1a\xae\x8d\x91\x48\x49\xd3\x83\x08\x1f\x15\xcd\x30\xdf\x28\x58\xd8\xd8\x8c\x4c\x3e\x0a\xd3\x4e\xf5\xce\x70\x86\xce\x69\xb0\xd9\xb9\xda\x89\x6a\xd3\x09\xce\x76\x61\x9b\x3a\x81\x68\x86\x6f\xda\x3d\x89\x7e\xbf\x60\x29\x78\xd8\x77\x46\x8d\x23\xe4\xba\x47\x16\x1a\x2b\xef\x94\xaa\x34\x66\x10\x1a\x9f\xad\xf3\x59\xb8\x9c\xe3\xb7\x94\x14\xdb\xb7\xf0\xbc\x32\x61\x4f\x8b\x91\x19\xaf\x98\x34\x35\x59\xe6\x7a\x9a\x70\x8a\x00\x42\xc1\xd7\x0d\x8c\x1f\x9a\xe9\xd3\x28\xa4\x26\x7c\x5a\x94\x2c\xbc\x81\xa9\x64\xe8\x89\x52\x11\x6e\xb6\xc6\x1f\x9e\x7f\xb1\xbb\x6e\xd3\xcd\x59\x8f\x03\x01\x0d\x82\x74\x6c\x7a\x0c\xd7\x71\x1c\x63\xf0\x0c\xb4\x7a\xe5\x2f\xfe\x87\xff\x11\x19\x64\xc1\x07\x2a\x50\xe4\xd7\x7c\xd5\xce\xac\x27\x69\xbd\xaf\xf1\x2e\x0c\x08\xce\x8f\xef\xd3\xab\x2a\x47\x76\x41\x4e\x52\xb5\xe2\x36\x4c\x98\x73\x13\xa5\xe4\x03\x14\x55\xf8\xc5\xb6\x3c\xf5\x24\xc9\xc2\x9c\x4a\xe1\x70\x10\x55\x27\xaa\x7b\xc9\x16\x21\xc5\x83\xae\x65\xd3\xe7\x10\x99\x4e\x4d\x42\x14\x9f\x14\x60\xbc\xa4\xf2\x23\x8f\x06\xca\x8f\x3c\xda\x4a\x82\x18\xc6\x59\x98\xe5\x94\x8c\x90\x16\x1a\xfa\x7a\x25\x35\x7e\x50\x77\xb5\xfb\xee\x1a\x49\x1d\xc6\x36\xdf\x48\xd2\xb5\x6c\x46\x71\x73\x9f\xd5\x79\x9d\x3d\x34\x93\x80\x96\xce\x2a\xe5\xd8\x95\x70\x30\xb0\xa9\xf6\x61\x99\xa7\x8a\x6f\xca\xdd\x61\x77\x92\xda\xd5\x5f\xea\x6e\xfc\x14\xcd\x39\x6c\xd1\x75\x78\x3e\x8e\x8b\x6e\x79\x5e\x12\x43\xa7\xd0\xc9\x82\x8f\x33\x94\x03\xbe\xeb\x3d\x8a\xde\x60\xbf\x3a\x80\x92\xc0\xdc\x74\x28\x42\x14\x04\xba\xea\xdb\x45\xa8\x02\xbb\xcd\xfd\x5e\x38\x0a\x59\xb4\x1d\xf6\xf5\x81\x46\x04\xfc\x07\xdc\x62\x03\x63\xf2\x13\x53\x8f\xfc\x3b\x49\xbc\xe3\x64\xd2\x1e\x7c\x5a\x85\xbd\x0f\xc9\x54\x23\xdb\xbc\xb7\xe7\xe9\xd3\xd1\x1d\xea\xce\x64\xcf\x29\xb5\xbb\xa7\x58\x85\x7e\xa2\xe7\xd1\x6d\x1f\x97\x95\xaf\x05\x9f\xf7\x51\xa9\x90\xd8\xa7\x14\xcd\xe8\x1f\x23\x8d\x4c\xe3\xf3\xff\x7f\x8a\x12\xc4\x52\x99\x79\x52\xe9\x03\xbd\xb2\x61\xa3\x68\xc6\xc3\x7a\xe1\x44\x22\x63\x7c\x8c\x9e\x0c\xc1\xd9\xf5\x06\x5f\xc5\xc2\xa1\xee\x46\x18\xc7\xc9\x86\xc0\x63\x34\x7b\x0c\x5f\x2b\x3c\x93\x9d\x84\x91\x9d\x64\x9b\x5a\x77\x93\x85\xed\xf8\xa6\x8d\x43\x23\xb6\x1b\x12\x70\x48\x6f\x03\xcd\x95\xe8\x4f\xf8\xc6\xde\xb3\x6e\x8d\x4e\xd2\xe4\x65\xdb\xcf\xb3\x9a\x92\x95\x06\x93\x75\x78\xee\x44\x16\xcd\xa7\x45\x37\x4c\x24\x88\x2e\x4c\xd4\x65\x4d\x1c\x7c\x59\xa1\x5a\xb3\x3c\xe9\xaf\x01\x50\x8f\xe2\x31\x56\x0f\x2b\x32\xf3\x4d\xad\x04\x9a\x15\xf6\x71\xd5\x09\xc3\x25\x59\xe9\xe1\x53\x66\x9e\xbc\x64\x61\xd6\xa0\xf5\x00\xef\xe9\x0c\x8c\x21\x5c\xbc\x93\xd8\xb9\x2e\x0d\xe2\x54\x40\x3a\x68\x2b\x94\xb2\xb2\xae\x31\x2b\xa8\x23\x9a\x9c\x30\xf0\x77\x41\x97\x89\x81\xba\x8b\x84\x1f\xdc\xad\x53\xae\x10\x60\xc6\x36\x0d\xfb\x26\x36\x18\x1c\x9c\xeb\x2c\x13\xcd\x37\x9a\x89\x7e\x14\xc6\x6b\x7b\xab\x05\x2b\x73\x43\x7f\xc8\xc2\xba\x81\x27\xc3\x44\xd7\x11\x1e\xfc\x9b\x2a\x22\x62\xb0\x06\x0e\x81\xf3\x8a\x96\x7f\x1b\x77\xb8\x3a\x8d\xde\x25\xb7\x2b\xce\x52\x92\xca\xe1\x7d\x1d\xb7\xde\x91\xd2\xf7\x8a\x0d\x13\x13\x75\xf4\x57\xd3\xb8\xcb\xcf\xec\x96\x44\xcf\x9a\x6e\x57\xfe\xef\xe9\xbb\xf8\xba\x2e\x22\x3c\x4e\x72\xab\xdb\x55\xef\x2b\x00\xf0\xfd\xc6\x72\x3e\x70\xa0\xfb\xb2\xdd\xb0\xe8\x89\x41\x31\x02\xe8\x38\xbe\x6e\x55\x84\xcd\x46\xc4\x6a\xc6\x8b\x92\xf7\x40\x50\x6b\xf6\xf1\xfc\x16\xe3\x24\x1e\x98\xcd\x3d\x5a\x91\x1b\xab\x0c\xd9\xef\x1b\xd8\x6e\x4e\x2b\xdf\x1d\xb3\x0f\x39\x34\xc5\x37\x7e\x1f\x09\x33\xf8\x89\xdb\x15\xd4\xf4\x3a\x59\x30\x54\xc0\xff\x46\xf5\xb4\xbf\x89\xe9\xc5\x2a\xdd\xd5\xd0\x3c\x23\xf1\x8c\x3e\x21\x6f\x05\x69\xc1\x00\x59\x25\xbd\x7c\xb1\xf1\xf6\x07\x0e\x74\xc3\x78\xdd\xc6\x40\x19\xbb\xda\xec\x39\x55\x9b\x3d\xa7\x2a\x0e\x83\xd4\x82\xf3\x7d\xc6\x23\x18\x10\x63\x70\x77\x7e\xbd\x23\xbf\x45\xb0\x6f\x35\x49\x87\x56\x72\x33\x4a\x26\xf9\xa0\x13\x56\xf6\x2b\xfc\x65\xf3\xea\xab\x9b\x10\xc0\xd2\x09\x38\x39\x48\xb7\x26\x3f\xa4\xd6\xd7\x2f\xd2\xea\x31\xf1\x3e\xe2\x41\x68\x77\xc2\x61\x56\x37\x46\x2e\xe5\xe3\xf4\xc6\x3c\xe1\xe1\x05\xfd\xe2\x61\xd6\x2f\x32\x6a\x6b\xad\x16\xb6\xb8\xd9\xd5\xf4\x88\x49\xd7\xac\x21\x43\xa3\x58\x43\xee\x2a\xd6\x90\xbb\xea\xcf\xf2\xcd\x35\xab\xc7\xe1\x5b\x78\x48\xbe\x69\xb4\x97\x7d\xae\x9b\xda\xf5\x24\xca\xc3\x78\xc8\x3c\x2c\x0c\x1a\x09\x94\xc1\xbb\xa8\x00\xfb\x26\xcb\x2c\x93\xda\xd2\x5a\xc3\x92\xc4\xd3\xf0\xb5\x23\xeb\x32\x43\x1b\x0f\xcc\x8c\x12\x26\x3b\x4a\x63\x8d\xea\x07\xa6\x58\x92\x7b\x5b\x9d\xaa\xfd\x0b\xae\x37\x80\xde\x1a\xeb\x75\x4e\x09\x99\xcc\xb5\x60\x1a\x16\x85\x53\x84\xe5\xaa\xa4\xdd\x6d\xaa\x99\xb3\xce\x29\x4c\xd5\xa5\xe0\x29\x1d\x05\xf4\xd1\x18\xf0\x82\xe3\xc8\x3b\x4d\xb3\xc1\xd7\xad\xed\x1f\x26\x85\x0c\x36\xbc\x7e\xac\x71\xbe\x2e\x5b\xfa\x7d\x0f\x1c\x38\x38\x8b\x2d\xeb\x62\x12\xef\x82\xc1\x0a\x21\x29\x0e\xd1\x3c\x21\x9a\x6f\x8b\x3f\x8a\xd4\x37\xdd\xbb\x9a\x9e\x1b\xaa\x56\x2a\x99\xd4\xfe\x66\x11\xa6\x9e\x0c\x01\xc7\xc8\x47\xf4\x31\xbe\x6e\x23\x75\xc8\x93\x62\x38\x92\xe3\xd2\xf1\x20\x54\x5b\x48\x78\x10\x1a\x44\x3a\xcb\x4b\x3f\xd7\xed\x9b\xd4\xda\x14\xf6\xcf\xf5\xdf\xf8\x5e\x1c\xa7\xe4\xd0\x37\x29\x96\xb6\x28\x3e\x29\x82\x94\xb3\x0a\xd9\xdf\x4f\xc6\x2b\x26\xc7\xde\x85\xc3\x78\x42\x49\x5b\x9e\xa8\xc3\x39\xc3\x18\xf1\x83\xa0\x90\x34\xb8\xec\x7d\x2d\x42\xf0\xe5\x1a\x42\xf4\xaa\xea\xc5\x5a\x31\xe9\x4a\xf5\x68\x5a\x72\xea\x8c\xe6\x9b\x3d\xa3\x42\xf1\xbe\xc9\xe6\x54\x45\x66\x6e\xea\xf9\xaa\x45\xca\x07\x51\xdd\xde\x9e\x02\xe9\x7c\xa8\x36\xc4\x87\x2a\x48\x18\x99\xf5\x30\x1e\xee\x51\x29\x8a\x2e\x60\x03\xf8\xf6\x2b\x14\x0e\x2b\xb0\x97\xe4\xb2\x77\x4e\xe9\x5c\xc5\x99\x77\x1c\x73\x24\xb4\xdd\xf5\x79\x70\x94\x4b\xbf\xad\xb4\x12\x6e\x28\x3a\xd3\x63\x6d\x30\xf8\x22\x0e\x23\xbb\x6e\x59\x57\x56\xc8\xeb\xbc\x01\x3d\xad\x02\xf9\x49\x98\xe7\xd9\x4a\x91\x02\xd4\xf2\xa2\xab\xdb\x55\x7f\x8d\x94\xed\xf7\x30\x98\x42\x13\x52\x57\x0e\xb7\x4f\xd0\x3f\x22\x9d\xfa\xd7\xe4\x5a\x21\x43\xba\xa4\xe4\xf8\xb6\x93\x41\xc0\x09\x7f\x4f\x77\x88\x2d\xa1\x5c\x04\xff\x82\xb3\xb0\xd8\x18\xff\x73\x0d\x86\x79\x51\xc7\x76\xa7\x29\x00\x40\x52\xef\x74\xa0\x00\x88\xc7\x4a\x95\xf3\x86\xcb\x87\xca\x1d\xf0\x46\x2e\xe4\xf0\xe5\xb9\xd3\x8d\x2d\x4b\x5b\x22\x0a\xd7\x2d\xbb\xb7\xa8\x71\x7f\x4c\x83\xe7\x1a\x55\xaa\x37\x96\xa0\xf3\xd3\x4a\x3b\x6d\xa5\x08\x23\x21\xd2\x5c\xd4\x74\xa3\x0b\x72\xa3\x84\x21\x48\x6a\x2d\xda\xe1\x53\x46\xa0\xd2\xd0\xbd\x2d\x8e\x57\xb8\x72\x52\xb1\x4a\xd1\xf5\xc6\x1f\x08\x94\xf2\xd6\xe5\x46\xab\x55\x15\x91\x16\x13\xe2\x84\x87\x19\x7d\x9c\x38\xb6\x71\xc2\x75\x7a\xaa\x30\x88\x34\x13\x4e\x33\x54\x26\x70\x12\xed\xee\x29\xd5\x85\x88\x98\xd6\x77\x29\xe4\x0e\x07\xa6\xa2\x1a\xe1\x31\xcb\xd0\x4b\x40\x00\x75\xa5\x4e\x7d\x49\x93\x2f\xf5\x25\x5f\x11\x84\x05\x47\xb6\xfa\xc9\x5e\x8b\x67\xd7\x4f\x8a\x09\x17\x5e\x74\x66\x4e\xaa\x56\x72\x98\xf5\x69\xdd\xcf\xa9\x30\x18\xa0\x5d\x0c\xde\x53\xbd\x7a\xef\xd5\xf2\x3c\xef\xc1\xab\x98\x24\x60\xe3\xce\xa8\x83\x74\x92\x64\x99\xcd\xb2\x90\x73\xd9\x58\x9b\x77\x15\x28\xe3\x6e\xf9\x19\xf7\xc7\x61\x3c\x4a\xb2\x49\xc8\xc4\x64\xda\x09\xfd\xd5\x17\x9c\x13\xfa\x19\xd5\x2b\x15\xe7\xa4\xd5\x16\x72\x1f\xb7\x20\x37\x3a\x8e\xb9\xf9\x64\xc3\x6b\x7b\x6e\xb1\x9b\xda\x0c\x67\xa7\xea\x3f\x64\x99\x26\xbe\xa9\x11\x29\x0f\x4c\x4d\x01\xa1\x1a\x67\x01\x08\xeb\xad\x1c\xc6\xd9\xd3\xf4\x1d\x18\x11\xc9\x30\x62\xff\x5d\x57\x5d\x90\xbb\xa7\x35\x88\x9d\x12\xe9\xf9\x80\xbe\x1c\xf6\xee\xbb\xa5\x27\xe6\xe0\x7e\x13\x69\xed\xa2\x85\x87\x27\x3d\xad\x7b\xb0\xae\x31\x24\xc0\x71\x71\x57\x4b\x85\xa5\x6d\x03\xd7\xba\xf6\xde\x7d\x82\x1a\xe0\x34\x79\x03\x26\x43\x88\x76\xab\xe5\x0d\x57\xfc\x16\x55\x61\x70\x46\xff\x3e\x4a\xed\xfc\x8b\x4a\xf4\x7a\x27\x12\x00\x08\x05\xff\x55\x9b\x2c\xf1\xc0\xc6\xa1\xf8\xd4\x4a\x2b\x7e\x41\x6e\x6a\xd4\xf8\x71\x96\xa4\x79\x58\x8c\xe7\xfc\xd4\xdf\xc2\xcb\x8a\x22\x06\x3d\x87\x48\x62\x74\x1c\x41\xe1\x2c\x96\x25\x76\xc2\xf5\xf2\x67\x3e\xc1\xb9\xcd\x72\x93\xdb\x6c\xc3\x66\xf9\xac\x82\x39\x60\x1f\x08\x59\x74\x35\xe8\x78\xb9\x13\x9a\xe6\xa5\xd3\x53\x31\x78\x1a\x32\x7e\x52\x54\x37\xe9\x8d\xc4\x8a\x74\x9e\x5b\x7c\x74\x45\x0b\x24\xe2\x07\x70\xee\x7e\x1c\xe8\x86\x1a\x82\x42\x26\x45\x8e\xd2\x3a\x77\x8b\xa8\xb2\xc3\x1c\x42\x65\x38\x77\x8c\x4d\xe7\x1b\x0d\xc3\x45\x0f\x15\xd6\xc0\xde\xde\xe3\x0e\x38\x3a\xb0\xd4\xec\xe2\x29\xff\x4f\x2a\x94\xc2\x07\x78\x6a\x61\x51\x6d\x09\x37\x36\xc2\x38\x76\x81\x9d\x34\x21\x79\x7c\xfb\x65\xb5\x13\x93\x7e\xdf\x64\x61\x12\x43\x9b\xd4\xc9\x90\x01\xac\xcd\xd7\x6d\x72\x1e\xab\x61\x4c\x32\xba\x1d\xb5\x26\x6e\x96\x6a\xb5\xdc\x6c\xef\xd0\xcf\xf0\x2b\xd8\x29\x0f\x14\x24\xfc\x41\x5b\x37\x7c\xdf\xc6\x88\x50\x3d\x98\xe2\x72\x0d\xe6\xaa\xb6\x7b\x9e\xc4\x9b\x3a\x69\xf9\x4f\x75\xf1\xfb\x9f\xb6\x51\x74\xf7\xcd\x78\x62\x4d\xa1\x88\x24\x76\xeb\x5e\xaf\xdd\xd3\xad\x0e\xaa\x2c\xc7\xd8\x66\x39\xdb\x39\x69\x14\x52\x7e\xc2\x99\xc0\x7b\x68\xa9\x09\xa3\xbe\x49\xd9\x43\xc3\xaa\x7a\x5d\x67\x27\x5f\x57\x92\x1e\x2b\x49\xb2\x16\xc6\x43\x00\xdb\x30\x2a\xe7\x14\x61\xf2\xb9\xc6\x36\x3d\xf4\x7c\x37\x1c\x4f\x92\x34\xa7\xb4\x2e\x0e\x31\x50\xc5\xf1\xb5\x27\xe2\x8b\x33\x55\x1a\x47\x89\x10\x1a\x54\x7c\xad\xf0\x6f\x1b\x61\x9e\x6f\x76\x3a\x9f\xfd\xac\xb4\xf7\xe3\x18\x93\x5e\xff\x26\x8d\xf6\xb3\x28\x91\x86\xa2\x62\xed\x08\xfd\xab\xd7\xe4\x1b\x87\x96\x35\x7d\xf2\xf0\xd9\xeb\xc6\x9b\x1d\x53\x82\xe3\xc7\xda\x14\x7c\x52\xbb\x6e\xe3\x42\xbe\xdf\xf1\xb0\x55\xdf\xc0\x37\x81\x0e\xd7\x8b\x61\x75\x4c\xd8\x19\xb2\x15\x32\xce\xde\x71\xbc\xa6\x20\xce\x4d\x90\xe9\xd2\xf2\x52\x77\x6c\xd1\xac\xec\x7c\x9d\xa0\x96\x6d\x6f\xf4\xbd\xed\xef\x9a\xc1\xba\x4d\x73\x50\x40\xf9\x4d\xf0\x9e\x36\x99\xef\x35\x76\xc4\xc2\x21\xf2\xb7\xea\xea\xbe\x4a\x73\x43\xb2\x46\x91\xa1\x0a\xac\x12\x87\x7b\x91\xd1\x4b\xa7\x35\xd9\xc8\x1e\x4a\x42\xc3\xbd\xe4\x5e\x1c\xd7\xb3\xec\xf1\x52\xef\x37\xb9\xb2\x97\xba\xd6\xf0\xc6\x6c\xcd\xd7\xfb\xa6\x11\x02\x76\xcc\x79\x7f\x1c\x94\x6e\x48\x99\xee\x9a\x2a\xdf\xef\xaf\xf9\x10\x55\x2a\xf2\xee\xa6\x01\xe0\xe0\x93\x3d\x2d\x18\xc0\x81\x3a\x26\xde\x10\x0e\x34\x22\x21\xfd\x6b\x67\x3c\x32\x3e\x34\x2b\x36\x0f\xfb\x5c\x39\x10\x2a\x14\xfa\x45\x4e\xd5\x2b\x39\xe4\x9b\x0a\x41\x59\x64\x76\xb5\x80\x03\x82\x13\xe8\xb2\x42\x6a\x5d\x6e\x8c\xd3\xfe\xfd\xdd\xd8\xbe\x92\x73\x78\xcc\xb9\x56\x5a\x57\x5c\x1d\x0e\x14\xdf\xe6\x4d\xf2\x08\xe0\xd2\xde\x6f\xec\xdc\x6a\x91\xad\x86\x91\xac\x16\x9c\x00\xb7\xb0\x5a\xf8\xc6\xd5\x9a\x26\xa9\x5d\x0f\xed\x06\xed\x71\x78\x15\xa0\xbf\xe4\xeb\xc6\x86\xdc\xbf\xd0\x4d\xed\x98\x79\x1b\x55\x93\x02\xfc\x24\x81\x50\xb5\xe4\xdc\x27\x36\x5d\xb5\xfd\x9c\xf3\x2c\x6d\xbc\x9e\xfe\x28\x1d\xa4\xc9\x3a\x28\x1a\x84\x9f\xa2\x7a\x5d\xa1\xa7\x68\x88\xb4\x57\xb6\x3c\x59\x83\xc9\x74\x6a\xe6\xd5\x60\x89\x6f\xb6\xa5\x38\x7e\x78\xbe\x7b\x78\x7e\x01\x3c\xf2\xd8\xb4\x7f\x51\xfa\x5c\xe9\x6b\x34\xb6\x8c\x68\x2e\x95\xeb\xf6\x1a\xf9\x41\x52\xb9\xf3\x22\x9f\x5f\x57\x9e\xc2\x5f\x90\x13\x25\x60\x6c\xe6\x6f\xf1\x3c\x18\xab\x11\xca\x0e\xe4\x1f\xe1\xaf\x6e\xd1\xbb\xf1\x75\x2d\x08\xb4\x83\x6c\x9f\x4a\x7c\x9e\x0f\x94\x08\xcb\x19\x7a\x48\xf8\x61\x37\xe8\xb9\x44\x6c\xde\x13\xa6\xef\xa6\xc5\xcd\xac\x43\xba\xa0\xcb\x09\x79\xd1\x3a\xa2\x87\xe1\x70\x01\x7e\x95\x68\x1a\x79\xf8\x07\x37\xb5\x23\x85\x74\xaf\x4e\xe6\x9d\xae\x3d\x06\x07\x53\x70\xe3\x58\xc2\x22\xfd\xac\x75\xbe\xf0\x0a\xd2\x82\xec\xfb\x3b\x30\xc1\xee\x81\xaa\x9d\x26\xdc\x3e\x0a\xd0\x73\x3d\xa8\xf5\x6c\x55\x33\x83\xf0\xe7\xaf\x14\x3f\xc4\x0f\x69\x36\x5c\x18\x5c\x1d\x2e\xfc\x55\x5a\xd8\xab\xdf\xb7\x13\xd1\x18\xc3\xf0\x9e\xc6\x38\xf0\x4d\xb9\xa5\x19\x72\x79\xa9\xbb\xb8\xb8\x93\x06\x07\x79\x8c\x8b\x04\x2e\x72\x39\x54\xf7\x35\x08\x04\x9c\xa1\xab\xde\x44\xe7\xad\x1d\x62\xcd\x95\x8d\x1f\xb6\xc4\x97\x5d\x13\x0e\x66\x7c\x35\x05\x48\x70\xf8\x6a\x0f\x69\xd4\xe4\xac\x68\x4b\x8c\x8d\x4d\x6c\x86\x28\xcc\x2b\x31\x96\x25\x8e\xb8\xaf\x63\x21\x08\xf7\xe7\x27\x39\x21\x7d\x13\x39\xfb\xc1\x55\x6c\x2d\x9c\xf0\x81\x07\xbe\x90\x9f\x93\x76\x6a\xd2\x63\x0a\x2a\xf1\x8e\xb3\xa4\xd9\x86\xb5\x79\x6c\xb3\xac\xe3\x71\x31\xe7\x14\x81\xe7\x39\x95\x4e\x4a\x6d\x32\xe7\xc5\x6c\x38\x1e\x76\xc4\x17\xce\x6d\xbe\xab\x1d\x18\x3c\x1f\xc2\x94\x33\x8d\x17\x5b\x5c\x74\xa7\xa8\xcb\x8e\xb2\x6c\x3d\xa2\x7d\x4d\x1c\x22\x0d\xb6\x2d\xa9\xfd\xd4\xf4\xed\x28\x49\xb9\xb5\x1c\x1b\xf0\x54\xe0\x13\x97\xa7\x7c\x3b\x63\x92\xa6\xc5\x24\x9f\xf5\xa9\xbd\x93\x81\x6a\x44\xfd\x48\x27\xde\x35\x7d\xf5\x59\xe5\xe1\x85\xf1\x7a\x98\x5b\xf4\x0b\xb0\x4a\x12\xc6\x02\xaf\xf9\x28\xf0\x1d\x9c\x67\x15\x6b\xc7\x1b\x2a\xe3\x1f\xdb\x8d\x68\x73\xd6\x0b\x0d\x70\x64\x89\x6a\xc8\xd3\x74\xe6\xa1\x64\xbd\x77\xaa\x94\x36\xcf\x2a\x2c\x52\xdf\x46\x51\x11\x19\x62\xaa\x7e\x74\xa4\x6c\xb2\x2d\x23\xf6\xb8\xd1\x0a\x29\x48\x93\x21\xda\x3a\x29\xe0\x78\x84\xa6\x77\x3c\x3d\x7b\x11\xc2\x1c\xd4\x12\x07\xe4\x69\xb8\x52\xc4\x1c\xc5\x3b\x1f\xc6\xef\xaf\xc6\x21\xfa\xdc\x62\x37\x4b\xa2\x64\xc6\x63\xde\x8e\x96\x0a\x78\x77\x42\x69\x74\x5d\x0b\x3c\xab\xe5\x24\x0d\xd7\x4d\x6e\xa3\x4d\x44\x45\xb0\x72\x10\xb0\x87\x5b\xc3\x0c\xa4\x02\xe2\x6f\xd2\x7d\x4d\x8a\x95\x28\xcc\x46\x72\x28\xc2\x46\xcc\x02\xa9\xc6\x37\x53\x85\xce\x09\xe3\x70\xdd\xc4\xdc\x3d\x22\xa9\x38\xcd\x94\x72\x4e\xf3\xb2\x36\x4b\x72\xfb\xf7\x77\xb3\xdc\xda\x94\x76\x39\x90\x47\x77\x03\xe5\xb1\x9e\x53\x9c\x93\xa7\x15\xfc\xe4\x05\x93\xce\xa8\xda\xe7\x23\xe4\x02\x44\x24\x52\x43\xfe\x3d\x89\x4f\x6e\xe3\x04\x7c\x0b\xc0\x3b\x7d\x33\xf0\x64\x1a\xdf\x54\xf4\x2a\xa4\xab\xc8\x5c\x15\x0b\x87\x5c\x25\xc5\x27\x18\x2e\x2a\x9a\xa7\xdc\xbc\x12\x02\x9d\x26\xf0\x55\x1a\x2a\xb8\x9a\x30\xe1\x7c\x4d\xf3\x2d\x80\xd7\x96\x70\x34\x32\x43\x5f\x08\x70\x2c\x01\x2e\x07\xa0\x2b\x4e\xa6\xc8\x47\x49\x1a\xe6\x9b\x73\xf4\xcb\x35\xad\x2d\xe7\x90\xb8\x95\xf6\x10\x8b\x9b\xff\x4a\x29\x02\x36\xa5\x5b\xc9\x01\x89\x29\xe9\xde\x51\x7c\x39\x17\x35\x79\xcd\x27\x11\xcc\xa7\x92\x03\xd3\x09\x4a\xa9\x33\xd6\x24\x69\xb3\x22\xca\x65\x81\x71\x7d\xba\x86\x23\x70\x9c\xc7\x45\x0c\xed\x6b\x64\x27\xef\x90\x91\xc0\x5a\x40\x49\x5a\x72\x60\x3e\x09\x39\x34\x24\x62\x8a\xbc\x36\x0b\x94\xab\x8e\x94\x8f\x5a\x9a\xe5\x96\xba\x59\x3f\x11\xa5\x87\x56\x2c\x6a\x53\x0b\x7b\xa9\x9b\xac\xae\xda\xb4\x3e\x4a\x7f\xa8\x3b\x98\xfe\x50\x13\xc9\x87\x51\x24\x5d\x5b\x22\xa6\x43\x3f\xc0\x37\x0d\x7b\x73\x78\x7e\xa1\xfb\x72\x91\xe5\xe1\xaa\x4b\x2e\x89\x5b\x53\xbd\x8b\x64\x44\xb7\xce\xc3\x33\xdd\x38\xec\x8f\x92\xc8\xb0\x3a\x00\xea\x11\x4c\xfc\xcc\x37\x0d\x66\xed\xfd\xfb\x89\x4c\xaa\x88\x5c\x6d\x58\xd4\x02\x55\x1b\xe7\x85\xd6\x34\x45\x21\x48\x77\x0d\x45\x97\xf5\xd7\x16\x00\xd7\x48\x29\x85\x5f\xc2\xf3\xe0\x5c\x6f\x43\x6c\xae\x14\x19\xaa\xb5\xf0\x3e\xc0\x9c\xc7\xd7\x8a\x23\x21\x37\xe9\xd0\xba\x55\x05\xab\x80\xce\x56\xbe\x56\x82\x73\x49\x11\xf7\x2d\x81\xdf\xb8\x07\x06\xd6\x43\x0b\xf6\x69\x26\x5a\xbe\xae\x4b\x08\xc4\x83\x9f\x26\x9f\x08\x35\x45\x28\x46\xa1\xf9\xec\x1a\xc0\x4c\xf8\xd9\xed\xb0\x9c\xe2\xbf\x74\x7e\xe5\x37\x5c\x13\x46\xb5\x80\x55\x37\x99\xf8\x35\x1f\x13\x94\x1d\x4e\xf0\x71\xb8\x7d\xee\x66\x51\xe9\xa2\x77\xf6\xef\xe7\xc3\xe0\xcf\xe1\x05\x73\x4b\x4d\xd0\xf9\x82\xd8\x77\x64\xed\xb9\x75\x2c\x50\xa8\xf6\x2b\x40\x77\x60\xd4\x3b\xd4\xce\x83\x04\xc4\xf6\x1e\x61\xba\xa4\xf0\xe9\x49\x2f\xe6\xa6\x04\x66\x92\x26\x3e\xb8\xc9\x4c\x99\x15\x28\xa2\x0c\xd1\x1f\xe7\x56\xa5\x40\x09\x10\x7f\x0d\x66\xc8\x79\x1a\x4e\x97\xf2\x08\xb9\xfd\x88\xfe\x9f\x22\x18\xb1\xb0\x64\x55\x9e\x29\xf6\xfe\x4e\x97\xf6\xb3\xaf\xf4\xad\x1d\x70\x14\x8b\xa7\xbe\xa3\x69\x49\x8f\xd1\x4b\x7f\x52\x0e\x42\xdc\x42\x28\xb5\x6a\x67\x05\x1d\x36\xd2\xdb\xa9\x08\x1f\xaf\x04\x9e\x35\xa5\x6f\x56\x66\x3c\xf1\x25\xfb\xa3\xc2\x74\xe1\x23\xf0\xeb\xaa\x1c\xdd\x4f\xe2\xbe\x4d\x05\x95\x8a\x22\xde\x09\x25\xcc\x70\x42\xb1\x25\xae\x9a\x30\xdd\xc4\x26\x14\x31\x25\x9a\x35\x51\x59\x6a\xc9\xf5\x2b\x67\x54\x39\xa0\xda\x31\x6d\xfa\x7e\xcb\xdd\xfe\x66\x3f\x72\x94\xe6\xae\x1c\xe6\x5a\x40\x2e\x2a\x16\xcf\x30\x35\x68\xfb\x16\x90\x8e\xc2\x01\xdc\x55\x8a\x76\xe7\x83\x1a\xca\x53\xda\xfb\x47\xd6\x44\xf9\xa8\x6f\x52\x0b\x9b\x84\x4d\x06\xf1\x38\xbe\x56\x9d\x21\xab\x11\xd3\xdc\xb4\x43\xee\xe5\xcf\xa2\x30\xb7\x29\xe5\x62\xe9\xc9\x18\x46\x46\xc1\x8b\x40\xca\x9a\x12\x57\xa9\xcd\xc3\x54\xc0\x65\x8e\xc6\xdd\x57\x07\x2e\x6a\x24\xf1\xd8\xa6\x43\xab\x19\x09\x6e\x28\xd4\xcb\x8d\x52\xc1\xd0\xc2\xe1\x28\xcf\xac\x25\xcb\xb3\x70\xa8\x95\x3f\x56\x44\xbb\x56\x52\x53\x8c\x6d\x98\x51\xb2\x56\xf7\xa2\x30\x5f\x3a\xdf\xe8\x2e\xde\x24\x42\xa0\x4d\xea\x63\x08\x22\x76\x11\xef\x0a\x6c\x0d\x93\x91\xd6\x1d\x2f\xdd\x23\x01\xd3\x31\x07\xa6\x7c\x51\x0c\x52\x7e\xf3\x77\x1b\x86\xfd\xd0\xf3\xdd\x38\x89\x01\x81\x15\x54\x87\xaf\xed\x5c\xd6\x12\xd0\x49\x96\x43\x1d\x05\x49\x4f\x86\xf6\x02\xab\x79\x42\x89\xc5\x5c\x0e\x7e\xf6\x13\xb6\x61\x18\x67\x79\x98\x6b\x6e\x4a\x29\x14\xa9\x1c\xd1\x07\x2d\x50\xda\xa5\xee\xaa\xc9\x88\xaa\xab\xb2\xb5\x40\x68\x1e\x41\xf9\x84\x6f\xda\xbc\x94\xff\x2f\xe4\x96\x8e\xbb\xae\x8a\x5b\x68\x34\x98\x21\x12\x1b\x40\xe8\x22\xbd\x4b\x6a\x53\x50\x8e\xe1\x44\xb8\x19\xa8\x6d\x7c\x5a\xb1\xeb\x1f\xd7\xbd\xc9\x23\x33\xb1\x03\x72\xf2\x61\xbc\x98\x7e\xd2\x9d\xa7\x87\x05\x09\xfa\xd7\x8d\xf3\x94\xea\xd0\xd6\xa4\xb1\xcd\x72\xa4\x70\xa5\x77\xce\xa3\x8b\xa0\xec\xc2\xb4\x43\x8d\x7c\xa2\x2b\x1b\x8d\xc2\xcc\x86\x83\x04\xe6\x10\xe3\x72\x52\xc9\x0e\xde\x0d\xbc\x82\xc1\x85\x46\x8e\x8e\x62\x23\xb3\x3e\x30\x6a\xdf\xd6\x64\xda\x2f\xba\x14\x5d\x9c\xe4\x61\x5f\xbc\x0c\xe1\xce\xf4\xe3\x7f\xde\x21\x8e\x2a\x17\x8e\x8d\x93\xeb\x7f\x75\x6d\xda\xd7\xda\x98\x00\x33\x6b\x52\xe9\x31\x11\xb2\x36\x9a\x27\x84\xc6\x37\x02\xc5\x25\xfe\x81\x32\x38\x2b\x26\x85\xe5\x84\xe1\x83\x37\xc2\xd7\xce\x86\x8d\x8b\xac\x9f\x50\xfc\xca\xbb\x16\xf9\x62\x6e\xa7\xe7\x9b\xc0\x53\x90\xac\xdb\x28\x99\xa0\xc8\x5c\x67\xa8\x47\xe5\xe3\x89\x9e\x42\x3b\xbf\xa3\xb2\x29\xa0\xd6\x7c\xd4\xa6\x82\x80\xb8\xac\x3f\xe3\x5d\x66\x6a\x3e\x7d\x84\xa2\x3a\xce\xce\xbb\x4a\x2f\xce\x0c\x06\x61\xc6\x4a\x5b\x30\x15\xdf\x55\xac\x66\xdf\x6d\xb4\x47\xca\x5a\xc8\xd3\x70\xd5\xa4\x21\xfd\x8e\x6b\x59\x5f\x96\x04\xcc\x87\xda\xdc\xdc\x56\xa5\x3e\x9b\x86\xf9\x88\x18\x29\x35\xe3\xf1\x47\x8a\xcc\x91\xa1\xaa\x30\xf9\x77\x1a\xbf\x5f\xb9\xe1\x26\xce\xc3\xdf\x2c\x48\x94\x41\x2b\x20\x5e\x2a\x6b\xec\xfb\x2d\xb1\xf9\xd8\xf4\x47\x21\x49\xbc\xf0\x0a\x00\x90\xe4\xdb\xf8\xa0\xf4\xe6\xa9\x0e\x85\x36\x97\xfe\xc5\xee\xc0\xf6\xc3\x81\x2c\x4f\x69\x6e\x21\xc3\x29\xdd\x2d\x8e\x55\xba\x80\xf7\x3f\xab\x14\x48\x2f\x94\x2a\x0d\xbb\x7d\xea\xcb\xa7\xff\x05\x1c\x69\xc4\x2d\xbb\x7a\x2d\xfb\x67\x63\x14\x8e\xd9\xc9\x15\xd4\x49\xc7\xc9\x96\x9e\x56\xe9\xe4\xcc\xda\x35\x58\x5c\x49\x7b\xf9\x24\xc4\x37\x4b\x85\xe5\xd1\x75\xe7\x30\x5e\x8d\x0a\x1b\xf7\xa5\x54\x0a\xa7\xeb\x0f\x02\xef\x47\x9f\xaf\x67\x6d\x14\x47\x64\x4e\xb1\xed\x8b\x60\xf0\x96\xe4\xc3\x1d\x85\x34\xba\x23\xd4\xde\x2d\xd6\x36\xb5\x91\x91\xa0\xe2\x11\x3d\xea\xa3\x13\x5b\x33\xd8\xcb\xf3\x07\xbb\xfb\xf7\x63\xd1\x70\x5b\x01\x0c\x27\xbc\x97\x0f\xe9\x05\x61\x51\xbf\xe3\xe2\x42\xbb\xb2\xc2\xfe\x1f\x8c\x12\x34\x4e\x05\x2c\xd5\x51\xf2\x0c\x62\xc4\xfb\x45\x34\x31\x1d\xf2\x6d\x61\xdf\xf9\xe0\xe4\x1b\x75\xf2\x9b\xc1\xba\x89\xfb\x76\xa7\x87\x48\x9f\x57\x4d\x2a\xaf\xa9\x6e\xff\x2b\x98\x57\x69\xb8\xa1\xa7\xe6\xae\x42\x32\x98\x42\x61\x4d\x3f\x24\x6c\xc7\x6d\x04\x92\xab\x61\x3a\xe6\x88\x0d\x65\x87\xbb\x18\x6d\xbe\x69\x93\x1b\x79\x61\x79\x7e\x8f\x6f\x9f\x10\xb9\x1b\x1c\x30\x97\x15\x32\xe8\x75\x38\x38\xc8\x4c\x75\x7a\x8a\xfd\xf9\x2e\xb5\x30\xb8\x22\x83\x7f\x93\xff\xa9\xf4\x8e\x0e\x8f\x12\xf2\x3e\x47\x15\x54\xfc\x4e\xe0\x7b\x84\x9d\x2e\x6b\xa7\xc6\x80\x4f\xbf\xc5\x37\x2d\xbc\x6f\x91\x29\xe2\x01\xf7\x8b\x3a\x9a\x0f\x85\xc9\x75\x33\x97\x14\xd1\xa0\x53\x3d\xab\x20\x3d\xe9\x91\x84\x33\xa5\x06\x96\x19\x46\xc9\x98\xc8\x9f\xd8\x4c\xe3\x59\xff\xbc\x54\x6d\x7d\x7f\xde\x20\x31\x5b\x38\x44\x1f\x4d\x2d\x35\x62\x71\xd5\x8a\xfb\x6e\x03\x85\xf0\xba\xa9\x1c\x40\xd6\xdc\xc6\x26\x9c\x99\x6e\x55\x0e\xa2\xa3\x99\xb2\x48\x9b\xd1\xba\x89\x43\xa0\x22\x15\xe9\x8c\xec\xb5\x93\xee\x68\x1c\xa4\x9b\xce\x89\x67\xe1\xea\xc0\xf7\xc6\x6a\x4c\x64\x62\xd6\x22\x13\x0f\x76\x76\x9c\x68\x06\x0b\x4e\x3b\x72\x09\x4f\x76\x75\x91\x3a\x05\x59\xaf\x4e\xb9\xa4\x4c\x92\xc6\x9f\x08\x14\x97\xef\xd9\xba\x12\x7c\x9a\xed\xd0\x52\x61\xaf\x21\x6e\x14\xaa\x5e\x45\xe8\x0b\xd5\x21\xfe\x87\x40\x35\x60\x3f\x28\x15\x92\xff\xb5\xb6\xaa\x75\xdf\xe4\xd6\x17\xdd\x71\x5e\x3f\xa0\xb5\xc0\xd7\xaa\x17\x38\x29\xf2\xc8\x6c\x70\x2f\x30\x96\xca\x4d\xdd\x0d\x76\x53\xc3\x4c\x4d\x6c\x06\x66\x17\x7d\x2b\x5c\xa3\xef\x97\x3e\x2e\xfa\x50\x11\xbc\x9f\xc3\xe6\x85\xaf\xfc\xd5\xc0\x43\x64\xee\x28\x02\xc1\x07\x44\x82\xc0\xd7\x58\x84\xb0\x9e\x37\x1d\x00\x36\x35\xd9\x88\x17\x90\x34\x1c\x76\x1c\x65\xe7\x49\x45\xd9\xc9\x8b\x40\x5a\x14\x95\x90\x3c\x09\xa8\x2b\x86\x5c\x44\xb6\x02\x48\x71\x7d\x75\xa9\xb5\xaf\x4a\xad\x02\xdb\xf6\x03\xfa\x29\xbe\x0e\x9e\xf6\xa9\xc2\x61\x1a\xf6\x8b\x28\x2f\x52\xd2\x09\x7e\xd6\xbf\x72\xe5\x83\x20\x74\x85\x52\xa2\x93\xeb\x3a\x3c\x2f\xff\x7f\xda\xa4\xe4\x3d\xd8\xb5\xaf\x8c\x4c\x91\xb9\x6c\x91\xf8\x85\x64\x42\xf8\xa6\xa5\xe3\xf0\xd9\x6e\xb1\x9a\xc8\xf9\x2c\x51\x26\xad\x13\x84\x8f\xf7\x03\x4d\x7e\xab\xc8\x77\xf2\xb0\xbf\x66\x73\x00\xf6\x04\x27\x4f\x2f\x22\x62\xef\x1d\xcf\xcf\xab\x10\x0b\xff\x9e\xa6\x4e\xec\x63\x1b\xdd\xf6\xd8\xc6\x05\x63\x38\x81\xfc\xba\x4a\x33\x2f\x78\xee\x8e\xd3\x20\xfa\x76\x9b\xc3\x39\xb2\x66\x1d\xbc\x8d\x48\xac\x1d\xd3\xdc\xba\x6f\xd0\xa7\x81\xe3\x3a\xa7\x96\x64\x6a\x07\xae\x66\x23\x9e\xd0\x27\xfa\x4b\x6d\x47\xc5\x88\xdc\x5c\x1a\x0b\x84\x59\xd7\xb4\xd2\xd6\x49\x4c\x02\x5a\x06\x3f\xf2\x69\xd4\x24\x8c\x60\x9b\x05\xdc\xab\x7a\x0e\xeb\x7a\xc6\x9b\x31\x50\xf0\xa2\x4a\x47\x4f\xca\x37\xb5\x92\xae\xc9\xcd\x3e\xcc\x25\x9c\xfc\xa3\xf8\x69\x27\x94\xeb\xcb\x6d\x2c\x83\x8d\x64\x87\xa6\x6b\x61\xa6\x5c\x1a\xe2\xc5\x27\xe1\x1e\x02\xb1\x76\x93\xce\x73\x57\x61\x74\x3c\x24\xd7\x94\x18\xdd\x1c\x11\x9a\xc0\x42\xdc\x2a\x15\x5e\xe7\x81\xaa\x12\x7c\xfe\xb9\x83\x33\xba\x86\x5b\x43\xe6\x5e\xe5\x2c\x16\xe0\xae\xdb\x1a\x98\xd2\xe5\x79\x2e\xdf\xd7\xdc\x78\x7a\x4d\xbe\x71\x1b\x7f\x60\xe3\x4d\xb0\x3c\x0a\x73\xa5\x22\xe2\xd7\x4a\x22\xd8\x5d\x8c\xbd\x08\xfc\x8e\xfd\x96\x9e\x39\x2f\x0c\x3a\x08\xd7\xad\xdf\x69\xae\xdc\xe6\x04\x7f\x3f\x6a\xb8\x5d\x87\xe7\xbb\xfd\x64\xbc\x4a\x60\x27\x57\x3d\xe6\xe8\x87\x6f\x14\x75\xc1\xa8\x48\xa9\xa9\xcc\x76\x3c\x45\xec\xfb\x68\xe9\xe2\x1b\x95\xb8\x5f\x31\xfd\xb5\x61\x9a\x14\xf1\x60\xd6\xd7\xda\xce\x06\xde\x58\x5d\xa7\xa9\x72\x27\x8f\xeb\xb5\xbc\xa9\xf5\x33\x92\x62\x38\x8a\x58\xa5\x94\x3b\xdc\xe9\x85\xa4\xdb\xdd\xb5\x80\xd9\x39\x65\xd7\x67\x09\x86\x8f\xe2\xe3\xa7\x40\xe7\x28\xbc\xd4\xbe\x43\x92\x2b\xf4\xc2\xec\xe0\x97\xc1\xaf\x2f\x1e\x9a\xab\x51\x91\xd4\x84\x8b\x1c\xe0\xe9\x54\xa0\xb8\x9e\xff\x49\xe9\xc3\xa5\x1b\x0d\xfb\xf1\xc2\x12\x84\x0c\x6a\x3e\x0f\xf7\xfa\x49\x13\x79\x8b\x96\x71\x64\xfa\x6b\x51\xe1\xf3\x16\xa8\x57\x01\x1c\xc3\xd7\x0d\xff\xa4\xda\xf6\x49\x1a\x0e\xc3\x58\x9c\x69\x39\x38\xee\x68\x28\xc4\x1d\x9f\xb0\x30\x91\x61\xd2\x7a\x38\xaa\xef\x2a\xa7\xf5\xdd\xc6\x8a\x21\x22\x8e\xd4\x0c\x25\x3c\xc0\x51\x79\x43\xd1\xe8\x6e\x23\xc0\x14\x92\x47\xa7\xda\x38\x2b\x49\x9a\xad\xe3\x09\xb2\xce\xaa\x54\xe2\xd9\xb6\x52\x57\x6e\xfa\x79\xd8\xe7\x8c\x4f\x1b\xa4\xab\x81\x29\x5a\xe8\xae\x18\x86\xfc\x61\x7e\x59\x17\x9f\x6f\xda\xf4\x8b\xa3\x24\xc9\x40\x02\xc2\x84\x84\x34\xed\x92\x8b\xf6\x78\xf6\x5b\x98\x36\x39\x79\x6a\xa8\x44\x01\xb4\x7b\x30\x77\x1d\xa1\xbb\x3c\xcf\x86\x6d\xae\x57\xc3\xf1\x56\xdb\x09\x6d\xa2\x50\x68\x03\x24\x75\xa6\xd7\x51\x0a\xaa\xb4\xcd\x30\x48\x3f\x68\xeb\xd1\x48\xed\x38\x59\x77\x7e\x11\x1c\x8f\x13\x81\xaf\x8d\x9f\x68\x8c\x12\x05\x13\x49\xda\xf1\x8d\x81\x27\xf5\xa9\x7a\xb2\xd9\x9d\xb5\xbf\xbb\x92\x14\x71\xbf\x5e\x36\xb9\xa4\xf9\xcd\x2e\xd5\xcc\xfe\x38\x89\xf7\xe8\x64\x60\x35\x00\x5c\x90\x50\x8c\x27\x97\xb7\xb0\x4c\x1f\xf6\x3c\xd5\xb0\xc6\xd2\x9d\x5e\x0d\x0d\x66\xf0\x5d\xad\x51\xc7\x94\xd3\xf8\xe2\x37\x35\x25\xf0\xb6\xde\x67\x14\xef\xca\x98\xa8\x5e\x8b\xd4\x42\xd9\x05\x78\x9a\xaf\xc0\x65\xe2\x9b\x52\x29\x9e\xb3\x18\xbd\x34\xbe\xb6\x8d\xde\xc4\xe4\xba\xf3\xf4\x6d\xec\x30\xbe\x51\x55\xdf\xc1\xcb\xec\xd4\x33\x59\x13\x4d\x8b\x10\x37\x79\x77\x35\x0a\xc7\x61\x2e\x65\x51\x27\x65\xa6\xe4\xcb\xbc\xe7\x57\xa4\x61\x0c\xac\x8b\xf0\x0e\x78\xf0\x1a\xd4\xc8\x81\x1a\x3b\xdb\x78\xee\x17\x96\xba\xe3\x24\x65\x42\x25\x2c\xae\x1b\xf0\xee\xf8\x46\x25\x1c\x4d\x38\x70\x2b\x4a\x7c\x35\xff\xe8\x17\x1a\x7b\x15\x14\xc9\x83\x10\xfa\xc1\x9f\xd0\x93\xfd\x23\x3e\x54\x8b\x73\x9b\xc2\xdb\x34\x91\xee\x2d\x82\x99\x95\x9d\xde\xe6\x55\x4e\x52\xbb\x6e\xc2\x2d\x50\x1d\x76\x68\x84\x50\xcf\x17\x4a\xc6\xc9\xc0\x46\x14\x02\x09\x3f\x42\x67\xbf\x30\x86\x5f\x0b\x14\x7d\x07\x50\xf4\x4c\xd0\x1d\x68\x6c\x20\x8d\x81\xeb\xbf\x70\x3a\x7e\x47\x5a\x30\x11\xfd\x24\xce\xc2\x81\x94\x7b\x05\xa8\x7a\x5c\xe3\xb8\x8f\xab\x80\x78\xc5\x46\x11\x09\xae\x23\x3d\xc4\xca\x30\x81\x12\x76\x41\x61\x0e\xf1\xfd\x49\x0d\x38\xd4\xa4\x81\xc5\xe4\x29\xec\x16\x78\x8a\x4c\xc7\x8a\xd3\x05\x7d\xf7\xe4\xdd\xfe\xcb\xa7\xa8\x1e\x00\x2f\x8c\xb1\x91\x70\x8d\xf7\xf4\xd4\x36\xda\x46\x44\x08\x88\x7d\xa0\x1b\x8d\x13\xf7\x26\xdc\x13\x38\xe1\xbb\x7b\xd5\x08\xe1\x03\xbb\x54\x50\x70\x85\x08\x03\x85\x18\x5a\x79\xed\x60\x89\x43\x02\x6a\xdb\x94\xc6\x1d\x9f\xee\xa0\x73\x42\xb0\x48\x2a\x9b\x7f\xb6\x8d\x37\x75\x38\x4a\x32\x96\x06\x91\xc8\x5e\x53\xa3\xd6\x5d\xcf\x31\xd2\x9a\x78\x49\xf8\x84\x7c\xad\x80\x00\xab\x91\x59\x4f\x52\x40\xb4\xda\xa4\x8c\xc5\xcf\xb0\xf9\x6c\xf5\x6e\x52\x36\xf2\xef\x7c\x49\x71\xf9\xdf\xa6\xca\xc0\x27\x89\xa7\x1d\x9e\x5f\xa0\x66\x84\x14\x5b\x50\x50\x07\xb4\x05\x05\x76\xe0\x4b\x88\x2f\xdb\x95\x8e\x62\xd4\x67\x18\x1b\xdf\x38\x8c\xd9\x24\x9c\xd8\x28\x8c\x1d\x6f\x12\x7a\x0c\xfe\x22\xd0\x2c\xc0\x18\x55\x59\xc2\xde\xdd\xf9\x7b\xbf\xf8\x4b\x9d\x6a\x3b\xc0\x60\xdc\x56\xc6\xe3\xb6\xc2\xaf\xaf\x14\x69\x9c\x61\x85\x8a\xd9\xaf\x86\x1f\x70\x98\xef\x2b\xe6\xe8\x7f\xa6\x06\xe5\x86\xcb\xcb\xac\x44\x85\xcd\x38\xd8\xad\xd1\x87\xc3\xb9\x46\x48\x29\xa4\x53\xf4\xa0\x22\x65\xe6\x29\xc3\xc6\x49\xbc\x66\xb9\xde\x29\xaf\x41\xa3\x21\xd8\x1f\xdf\x0b\x37\x4c\xcd\xab\xd2\xd2\x0b\xa7\xec\x5c\xe0\xcb\x60\x6d\x14\x81\x4b\xdd\x97\x8b\xc1\xd0\xa5\xec\x51\xaf\xe1\x04\x36\xdf\x34\xb2\x11\x84\xee\xb5\x69\x24\xd8\x3e\x87\xa5\xf1\x40\xdf\x36\x77\xc6\x8c\x95\x2f\xc8\x3a\x28\x98\x29\x11\x45\xd9\x9a\xee\x26\xc9\xfb\x2a\xae\xb5\x2a\xf5\x81\xb7\x86\x76\x24\x5f\x2b\x10\xc9\x46\x18\x0f\x92\x0d\xb8\x40\x30\x7a\xdc\xf6\xc7\x37\x2e\x95\x34\x2a\x22\x6a\x8f\xc0\x7b\x23\xba\xe1\xce\x0b\xbe\x69\x43\x61\x55\xce\x0e\xbc\x25\xee\xad\xa5\x65\x23\x6a\xb9\xd5\xca\x40\x9a\x1b\x84\x78\xec\xfd\x37\x39\x03\x16\x0e\x75\x37\xa8\xe2\x1b\x8a\x8f\x8b\x24\xd9\x05\x25\xd4\x7e\x41\x81\xfa\x86\xd6\xae\x65\xb3\xaa\xf2\x77\x12\x27\x36\x8a\x2a\x50\xe4\xe7\x7f\xc0\xe9\xcd\xff\xd0\xe6\x5d\x67\x26\x0f\xb3\xd5\x4d\x37\x9e\xc2\xe6\xdd\x71\xfa\x47\x6f\x35\xbc\x6b\xa9\x7b\xac\xdb\x38\xec\x03\x0a\xc9\x24\x32\x18\x31\x61\x94\x69\x13\x19\xda\xb0\x51\xd4\x51\xfc\x29\xa7\x95\x9c\xac\x16\xe0\x1a\x53\xa5\x12\x39\x6e\xd7\x64\xe7\xd2\x5b\x17\x14\x23\xe9\x23\x35\x32\x23\x93\x0e\x36\x77\x56\xdf\xc8\x02\x64\x5a\xbb\x06\x5b\x4d\x88\x61\x54\xa0\x24\x5d\x79\x92\x61\x51\x4d\x86\x88\xc3\x91\xcb\xfd\xb2\x2f\x65\xe4\x61\xde\x1f\x49\x59\xdc\x11\x79\x1c\x38\x20\xd7\xae\x0a\x36\x49\x93\xbe\x1d\xd0\xc9\xde\x71\x1a\x06\x20\xf9\xe3\x6b\x17\x82\x8c\xc3\x57\xec\x60\xb7\xa2\xba\xbb\xcb\x8e\x9f\x73\x9c\x5d\xb7\xf4\x29\xaf\x83\xf5\x5b\x3f\xd3\xab\x8b\x6e\xfa\xc6\xdd\x4b\x9a\x6c\xfe\x3e\x9c\x70\xa7\x21\x55\xad\x17\x11\x4e\xf8\x51\xd5\x3b\x3e\x4e\x62\x92\x6d\x08\x93\x38\x9b\x23\x86\x15\xe4\x2a\xc0\x06\xa8\xb4\x60\x84\x9f\xe5\x0a\x2d\x37\x58\xc0\x33\x5a\x52\xa6\x09\x7f\xaa\x36\x30\x75\xdf\x1f\x9e\xe7\x62\xc3\x8c\xe2\xc9\x9e\x99\x7a\x6f\xc0\xae\xd8\x98\xda\xa7\xb1\xca\xb1\x05\x8e\xd0\x23\x00\x8c\xf3\x7b\x34\x1a\x18\x6d\x2e\xa1\x23\xeb\xbb\xbd\xa7\xf8\xf7\xc3\x2c\xb7\x31\xdc\x0f\xa9\xed\xaa\xc6\xca\x87\xa5\x96\xa8\x5c\xb7\x26\x82\xa1\x10\x8a\x06\x05\x07\xbb\xe3\xaa\xac\x29\x21\x0b\x66\x94\x98\x16\x95\x0e\x1e\x5d\x53\xd2\x46\x5f\x51\x92\xe9\x36\xb2\x43\x13\xe7\x11\xf7\x8f\x71\xef\x31\xe8\x6a\xa4\x11\xd9\x67\x8f\xe3\x24\xcd\x47\x14\x2c\xa0\x5c\x08\x99\x08\x81\xb6\xd3\x37\x08\xac\xc5\x23\x6a\x1e\x95\x5a\x3a\xff\x3e\x01\x83\xf8\x23\x4a\x87\xeb\x32\x30\x96\x30\x7c\xdb\xa7\x0a\x60\xca\x18\x29\xac\xfe\xb9\x9e\x3f\x13\x9f\x59\x7e\x86\xb2\x16\x48\x30\xfd\x5b\xcd\x13\xc8\x84\x90\x78\x00\x58\x5f\xf1\x1d\x5b\x38\x14\xaa\x88\xd0\x59\x18\xe9\x8f\xf4\xf1\xf5\x25\x2d\xdb\x63\xf2\x34\x34\x69\x9f\x59\x24\xf1\xd3\xaf\x07\xfe\x31\x5e\x57\xec\x4c\xfd\x64\x3c\x89\x6c\x6e\xe9\x29\x61\xa7\xa7\x78\x19\x98\xda\x6f\xc1\xee\x6a\xb4\xb9\xa8\x74\x29\xf9\xa7\x22\x8a\xc2\x6c\x84\x13\x15\xe7\xed\x57\x4a\x05\x86\xfe\x8a\x4a\xa5\x83\x8a\xac\x8a\xfa\x3d\x14\x0c\x4c\x58\x8e\x2a\xd2\x75\x11\x3c\x6c\x41\x28\xbe\xe8\x1e\x99\x5d\x76\x54\xe7\x6f\x28\xc8\xea\x0d\x97\x82\x5c\x8d\xec\x06\x52\xb8\x72\x74\xf9\x13\xe5\x82\x16\x67\xbb\xa4\xa4\x5c\xb6\x4f\x15\x0b\xf0\xa7\x7b\x9e\x44\x28\x32\xe1\x60\x8e\x8a\x79\x78\xbc\xd7\xc8\xf0\x62\x6d\x40\xe8\xd5\x11\x36\x50\x86\x8f\xff\x8a\x68\x8f\x30\xb2\x57\x54\x3f\xa1\x5d\x0f\x07\x36\xee\xdb\xdd\xd5\x97\x38\x45\x2e\x87\x63\x3d\x19\x28\x19\x9f\xdb\x1a\x3b\x73\x83\x46\x0b\xf9\x92\xaf\x95\x9a\xbf\x91\xe2\x7f\x94\xcc\x2f\x05\x0a\xcf\x7b\x44\xf1\x66\x5c\xf5\xbe\x9e\x4d\xf3\x22\xcb\x42\xb6\xc1\x52\x6c\xee\x78\x5a\x45\xe5\xdc\xad\xdb\x68\x9f\xa2\x3f\xfc\x7d\xf2\xcc\x99\x34\x1b\x76\x51\xc8\x6e\xe9\x49\x35\x34\x4a\xc0\x86\x1e\x42\x0a\xd6\x02\x78\xec\x3b\x29\xcb\x03\xcf\x88\x81\x6d\xf8\xf5\x59\xa4\x36\x6a\x9a\x7f\x88\x1d\x76\x4e\x69\x81\x4a\x3b\xf6\xa7\x55\x2d\x6e\x3c\x31\xa9\x59\x89\x2c\x72\x4a\x28\xe0\x5e\x56\xa5\x59\xae\x0f\xc2\xd6\xde\x6b\xb8\xd4\x54\x41\x1b\x25\xd2\xd0\x2f\xca\xcb\x1d\xc7\x7e\x74\x29\xd8\xea\x52\x1d\x7a\x5e\x90\x17\x20\x78\xf6\x14\xf3\x8c\xd8\x11\xf6\x22\x9d\xef\xce\xf2\xec\xc7\xe9\xed\xe4\x5c\xa6\xc9\x12\x44\x87\xdf\x8a\x9f\xa2\xc1\x71\xd8\xfb\xfd\x0b\x2e\xe5\xa8\x09\x8f\xaf\x96\x4a\x8d\xe2\x66\xa0\xa2\xbf\x1f\x80\x2b\x4f\x94\xfe\xe9\xcc\xa1\xa4\xcc\x99\x27\x01\xcd\xc2\x2a\xba\x43\x7b\x0e\x89\xef\xaf\x53\x81\x16\x66\xad\xc4\x1b\xd4\xdc\x69\x4c\xf3\x0e\x4a\x8c\xc2\x43\x38\xc2\xcb\x5d\xf1\x29\xaa\x5e\x89\x17\x5c\x4f\x3c\xb2\x15\xc0\x4e\xef\x23\xab\xec\x0a\xc7\x8e\x98\xf8\x2c\x28\xc9\x30\xb5\xbb\xa7\xb4\xb0\xb0\x4e\xae\xd3\xaa\x97\xa4\x4f\x33\x16\x7a\xb1\xfb\x9b\x45\x28\xce\x30\x12\x4f\xd7\x75\x86\xed\x7a\x9b\x88\xe2\xc1\xee\x86\x81\x2c\xec\x12\xc3\x1e\x2e\x2b\x08\xc4\x65\x15\xb6\x8c\x6c\x9c\x86\xf8\x43\xe6\x61\xa3\x55\x21\x9c\x6c\x2d\x2c\xb8\xe3\x30\x96\x40\x50\xf1\x73\x1c\x74\x49\xfc\x96\xf2\xfa\xf2\xfc\xc1\x8e\xf7\xca\x90\x22\x11\x71\x17\x8d\xec\x8c\x92\xd4\x0c\x92\x8e\xfe\xba\xd2\x97\x4f\x5a\xe9\x74\xaa\x53\xd4\xab\x02\x8b\x7b\xa1\x5a\xcb\x2e\x28\xd3\x94\x6d\x84\xe3\x31\x31\x6a\xb9\x7a\xc8\x19\x25\x89\x8d\x70\x55\x5a\x0a\x7c\x89\x78\xd5\x84\x51\x91\xd6\x1a\x66\x61\x0d\x24\x01\xe3\x78\x8e\x27\x61\x6c\x22\x8f\x46\x44\x6e\xe4\x9e\xae\xdf\xde\x2b\x25\xbd\x63\xe3\xf5\x30\x4d\x62\x60\xb3\xa2\xcd\x99\x6a\xe1\x60\x17\x5c\x55\x2e\xec\x05\xd5\xab\xff\xcd\x1a\x7f\x44\xbe\x81\x94\x19\x96\xfa\xfb\xf4\xec\x7c\xad\x9c\x8c\x34\xa9\xc2\x22\xca\x99\xb9\x5e\x40\x90\xd4\x09\x0a\xfa\x31\xf5\x9d\x83\xe4\x89\xea\x9f\xe0\x54\x6d\xef\xa9\x3e\x07\x70\xe8\x22\x2f\x00\xc5\x19\x38\x55\x3b\x28\x5b\x82\x88\xf5\x88\xd6\x0a\x63\xb5\x5f\x04\xda\xb7\x4a\xe5\xac\x5d\x09\x54\x12\xb1\x03\xfe\x1e\x4e\xcc\x91\x83\x22\xc9\x50\x5a\x94\x30\x6f\x3b\xa6\xbe\xd8\xfb\xb0\x5e\x34\xf7\x60\xeb\x5d\x3d\x45\x27\x2b\x2c\x50\xba\x19\xbc\x7a\x6a\xe9\x12\x6f\x09\xd9\x06\x26\x1e\x6c\x76\x3c\xa1\x0e\xb0\x60\xb2\x66\xc5\x6d\x5f\x35\xfd\x30\x62\x50\x95\xa7\xf7\xe5\xf0\x86\x6f\x1a\xee\xed\xfe\xfd\xdd\x8c\xe8\x65\x0f\xcf\xbb\x96\x88\xea\x69\x80\x5d\x67\x02\x78\x18\xbd\xdb\xaa\xcb\x6b\x6c\xd2\x35\x49\x77\x4a\xb3\xa0\xaa\x94\x37\x9b\x02\xd0\x4e\x0b\x92\x93\x8e\x8f\xd3\x4e\x29\x31\xbe\x66\xc5\x61\xff\x7e\x51\xc9\xda\xbf\x5f\xe6\x4b\xd9\xea\x0b\x0a\x88\x7d\x54\x31\xb5\xf4\xcd\x24\xcc\x4d\x14\x66\x63\x1a\x33\x38\xdf\xf0\xa4\xf8\xba\xa5\x67\x61\xa9\x9b\xda\x55\x9b\xba\x4e\x0f\x86\xd5\xa8\xa6\x85\xd7\x6b\x8b\x3c\x8d\xb3\x3d\xd5\x9a\x80\xe1\x42\x45\x19\x71\xd4\x95\x40\xd5\x11\xef\xd3\x32\x10\x95\x42\x9d\xa3\x57\xf5\x34\x70\xf2\x8a\xc0\x26\x2d\x22\x81\x83\x78\x1f\xeb\x3f\x57\xfd\xb3\xf7\x54\x6e\x65\x62\xb2\xfe\x28\x84\xe7\x09\x00\xcb\x65\x04\xd0\x7c\xe3\x5c\xb3\xcc\x9a\x7c\x46\x51\x2d\xc0\x82\x09\x3d\x3d\x4d\x34\xc6\xf8\x43\x45\x08\x97\x5a\x9b\xed\xa0\x0f\xa1\x86\xb2\x8d\xfa\x1f\x6a\x8c\x2f\x4e\x3a\x42\x9f\x2f\xcf\x09\x33\x2d\x8b\x6e\x43\xdc\xe2\x47\x95\xa3\xbe\xb2\xb2\x89\x82\x8b\xb0\x2a\x54\x9f\xe7\xd6\x5f\x0c\x14\xf2\x13\xdb\x28\x55\x29\x6c\x0b\x1d\x27\xc6\x70\x9f\x1e\x5f\x04\xa1\x54\x63\xd6\x69\x3a\xdd\x64\x3b\x79\x2b\x3e\xb1\x39\x71\x05\xd7\x15\x0e\x3a\x8a\xdf\x4c\xa5\xa4\xae\xd1\xf4\x60\x2b\x1f\x2d\x55\x93\xd1\x65\xc5\xdd\xd7\x4f\xb2\x67\x3a\x1a\xb8\x5e\x23\x91\x97\x41\x5c\x09\x87\x43\xc9\x91\x70\xa5\x5c\x07\x2f\x37\xd5\xca\xcd\x8a\xc9\x24\xa9\x76\xc9\x70\x56\x73\x9c\xbd\xd3\xd4\xa1\xe1\x6b\x7c\x11\xff\x55\xcd\xe1\x49\xb3\x1c\x1c\xa8\x58\x05\xd7\x11\xbd\x31\x87\x0e\xfc\x47\xa1\x1f\xa8\x06\x1e\x59\xbf\x3f\x82\x35\x04\xe2\xe0\x82\xea\x11\x65\xee\x5b\x01\x3a\x54\xd3\x0b\x2f\xfc\x2e\x79\xc0\x92\xf0\xad\xc6\x4c\xca\x3c\x7e\x76\xde\x04\x61\x06\x37\x60\x62\x77\xc8\x46\x54\xb0\xfc\xb3\xaa\x7c\xb1\x8e\x88\xd5\x87\xef\x67\x74\x8b\x3f\xfd\x0e\x13\xa0\xb5\x30\xed\x11\xfa\x7b\x5c\x8c\x3b\x8a\x66\x06\xa7\x29\x5f\xb7\x14\xd3\x9f\xed\x9a\x2c\xb2\x76\x32\x53\xef\xdb\x5d\x96\x5a\xf4\x5d\x7a\x67\xf8\xc9\x67\x1c\x3c\xc7\xac\x24\x14\x86\x55\xcf\xc3\x04\xec\x81\xef\x44\xba\xd7\xaa\x22\x3d\x4a\x72\x26\x26\x75\x92\xb6\x9e\xd2\xf3\x0d\x68\x62\x08\x5b\xfc\x1a\x51\x4b\xd4\x04\x64\xb1\xab\x81\x33\xc7\xcf\x7c\x58\x2a\x6a\x0b\x24\xd2\xf8\x13\xc1\x63\x2a\xc9\x14\xe5\x08\x65\x71\x88\xc1\xe4\xf0\xf5\xd4\xff\x5d\x3e\x32\xf9\x4f\x79\x5e\xa4\xef\x63\xa5\x60\x82\xae\x22\x03\x23\xde\xa1\xb7\x72\xc3\xa7\x7a\x3e\xcb\x31\x43\x5d\x46\x08\x92\x4f\x61\xe6\xe1\xc1\x3e\x24\x4d\x0f\x07\x05\x70\xc4\xfa\xe7\x75\x5a\xeb\x21\xdc\x51\x46\xe2\xa1\x74\x8a\xef\x3d\x06\x67\x85\xe3\x54\x72\xcd\x25\xad\x42\x2e\x37\x02\x1a\x84\x6a\x58\x27\xb3\x53\xb8\xc9\x70\x86\xde\x0b\x7c\xdf\xcc\x87\xd4\x54\x85\xb4\xdc\xd7\x10\x0a\xe0\xd0\xbf\x0b\x5f\x1a\xd5\xc9\xed\x4c\x5e\x0c\x9c\xd1\x87\xd4\xd3\x85\x61\xb9\x81\x76\x27\x91\xa3\xa1\xf1\xa7\x09\xfc\xaf\x7e\x04\xe5\x10\x58\x9f\x33\xb0\x7d\x34\x60\xff\xdd\xd3\x3d\x6a\xac\xe2\x2d\xd4\xc6\xc1\xea\x78\x55\x31\x51\x42\xa6\xea\x53\xb5\x47\x54\x03\x30\xe9\xed\x54\x2e\x1a\xe5\x11\xf0\xf4\x33\x3d\xd5\xc6\x7e\x56\x7d\xf0\x42\x5d\x72\x4d\x2c\x53\x16\x9b\xc9\x04\xc8\x4c\xa7\xf9\xe3\x99\xd4\x4a\x5f\xa1\x5a\xb1\xfb\x6a\xc0\xcc\xea\x45\x58\x2f\x99\x3e\x81\x14\xd2\x4d\xb2\x05\xb0\x2a\xf7\x68\x8f\xa2\x44\xb0\x4b\x29\x46\xec\x23\x3a\x6e\x56\xc2\xc0\x39\x85\xd0\xf0\x0a\x0d\x2f\x36\x18\xf2\x52\x38\x70\x7e\xb7\x54\x39\xa8\xcb\x3a\x57\x3b\xdb\x00\xad\x11\x39\x1c\xb5\xb0\x87\x49\x5c\xc3\x1c\xd4\x28\x63\xbd\x33\xb6\x11\xc6\xb1\xcb\x8c\xb1\xf4\xa6\x6a\x58\xc2\x66\x66\x4a\x72\xe5\xad\xa7\x23\x9b\x27\x69\xd8\x57\xe9\xd1\x53\x2a\x3d\x7a\xaa\xf4\xa8\x3c\x15\xa9\x22\x9a\xc7\x50\xa1\x1b\x05\x9b\xe7\x53\xe4\xa8\x62\x61\x5e\x51\xe9\x92\x33\x1c\x72\xba\x98\x78\xff\x82\x47\xee\xbc\xe0\x18\x9f\x2f\xea\xba\xde\x65\x72\x37\x10\x00\xdf\xc2\xbe\xc2\xea\xdd\xd1\xf3\xf3\xc4\xdc\x77\xe2\x75\xf9\x0c\x66\x18\xaf\xdb\xac\x3a\x7d\x70\xe2\x73\x1d\x47\x59\xb4\x4b\xaa\x59\xe4\x1d\xcd\xf2\x7b\x15\xfb\x06\xce\xc4\x07\xa5\x57\x9f\xfb\x5e\xc3\xe3\xac\x42\xa3\x91\x21\x0c\x8a\x30\x08\x7d\x1c\xa8\x96\xbc\xcb\x30\x2c\x82\x90\x12\xef\x25\xb2\x86\xb5\xe8\x91\xad\xb9\xaa\x08\xce\x58\x5d\x0c\x43\xc8\x38\x54\xce\xb9\xd3\x78\x02\x94\x01\xb6\x1c\xfc\xe2\xd6\x98\xb9\x5a\x87\xd2\x4a\x49\x3f\x0f\xe7\xa5\xa3\xac\xe4\x2c\x08\xe3\x05\x70\xde\x52\x51\x1a\x99\x78\xb0\x95\x68\xf7\xed\xd2\x77\xb4\xbe\xad\x12\x78\x59\x5e\x0c\xc4\x15\x66\x09\x63\x45\x3f\x75\xa9\xdc\xeb\x51\xfd\xab\x4f\xab\xde\xef\x27\x7a\x64\x51\x81\x71\xbe\x42\x89\x2e\xde\xe2\x9a\x32\x73\xb6\xe7\xdb\x98\xc0\x04\x27\x8d\xf5\xbe\x4d\xe8\x2f\x03\x95\x44\xba\xaa\xc1\xeb\xff\x8c\x12\x12\x58\x76\x42\xe0\x2e\xbc\x4f\x1d\xa7\x3b\xb5\x63\x4a\xa7\x81\xf0\xf5\x6a\xe7\xb4\x5a\x83\xcc\xb2\x3f\x55\x98\xc0\x4f\xf7\x14\x04\x12\x3d\x58\xf0\x9e\xb7\x01\xaf\x0e\xe7\x84\x69\x93\x04\xfa\xe2\x81\x13\xc3\x91\x89\x0d\x05\xa3\x82\xcd\xae\x7e\xd3\xc9\x60\xf8\xbe\xab\x5a\x0f\xfa\x78\x1c\x66\x59\xe5\xf5\x79\x30\xdd\x4d\x45\xb3\x36\x33\x55\xae\xd8\x17\x03\x9d\x94\xe6\x64\x86\x40\x43\x5b\xc8\x1e\x56\x8a\xc1\xd0\xa7\x45\x01\xf5\xb8\xac\xb8\xd5\x2f\x2b\x68\xda\xf3\x8b\x07\xe1\x5b\x60\x0f\x82\x46\x51\xc6\x5b\xf9\x8d\xd7\x1b\x51\xd0\x2f\x77\x57\x92\x34\x4d\x36\x28\x46\x43\x3e\x19\x02\xa8\x78\xdd\x8f\x68\x18\x64\x7f\xfa\xa4\xb4\x8d\xd1\x9d\x94\xe1\xe9\xb0\x88\x3f\xc2\x59\xc5\x37\xaa\xec\x3a\x49\x6d\x75\x14\xa8\x42\xde\x1d\xec\x0a\xbe\x69\xe4\x5b\xf6\xef\xef\x52\x2f\x79\xa6\x0b\x63\x9c\x70\xe1\x1b\xd5\x9a\xb2\x99\x14\xf1\x10\xed\x90\xbe\xf4\x7f\x4e\x35\xad\x9d\x73\x75\x2a\x13\x0d\x6d\x1a\x1a\x94\xfe\x05\xe1\x4a\x03\xc4\x37\x8d\x64\x0b\x61\x95\x63\xe3\x93\x2d\x52\x28\x55\x50\xcb\xd3\x8d\xca\x2c\xb5\x03\x8c\x27\x45\x6e\xd3\xf0\x55\xee\xcd\x73\x5a\xbe\xbe\xbd\xf1\x82\x3a\x46\x5b\x9d\xcd\xfe\xc8\x4c\x08\xcb\xad\x15\xdd\x3c\x48\xa8\xde\x20\x9c\xa7\x49\x94\xd1\x52\x84\xe5\x7a\x9f\xf2\x0a\x30\xe4\xec\x7b\x60\x41\xdf\x55\xb1\xed\x36\x42\xc0\xf2\x1f\xd5\x9a\xd3\xad\x29\xc0\x09\x85\xf4\xc7\x2b\xd4\x47\xed\x24\x60\xab\x79\x41\x44\x77\x8e\x8f\x12\x8c\xc5\x7d\xcd\xff\x1b\x28\x95\x01\x86\x36\x0b\xbb\xb1\xaf\x0b\x1f\x85\xe7\x27\x3d\x65\x4f\x6f\x61\xe6\x27\xbe\x44\x62\xbf\x11\x51\x2c\xfa\x6d\x59\x3a\x1e\x22\x0d\x71\x61\x57\x1b\xdc\xbf\xe0\xb6\xf9\x13\xae\x7e\x10\x4e\x26\xce\x86\x0a\x32\x4d\x43\xd6\xc4\x79\x59\x0d\x6d\xda\x47\xea\x0b\xae\xc8\x63\x3d\x5f\x9d\x79\xac\xa6\xeb\x3d\x08\xf9\x11\x69\x41\x38\x4d\x2d\x07\x82\x78\x5f\xf9\xb2\xa7\x6f\xd6\xc4\xb6\x74\xd7\x4a\x13\x7a\xb8\xd4\x9d\x14\xf1\xa6\x4a\x76\x1d\x51\xc9\xae\x23\xaa\xbd\x97\xc8\x68\x23\x13\xa3\x9f\x41\x08\xc8\xbc\x8a\x53\x53\xdc\xe6\xc0\x81\x6e\x14\xae\x58\x54\x35\x3b\x3e\x78\x01\xe2\x5c\x34\xb7\x55\x7b\x72\xb2\x6e\x53\x1b\x0e\xe3\x7c\x53\xd1\x90\x5d\x54\x98\x90\x8b\xe5\xa7\xea\x09\xd0\x67\xba\xbf\x76\x50\x51\x55\x7c\x53\x15\x74\xbe\xd9\x62\xee\x0e\x76\x27\x36\x1e\x6c\x21\x2e\xd9\x36\xf5\x1f\xda\xd6\xf3\xed\x96\x1b\x36\xb5\x9f\xa9\x3c\x3a\xd4\xb1\x41\xd0\x00\x2b\xfb\x71\xe0\x19\x2b\x5f\x7f\xba\xe7\x53\xae\x67\x02\x05\xeb\x7d\x72\xaa\x02\x56\x88\x8c\x62\x43\x3e\x39\x55\x54\xc7\x52\x6e\xc6\x3f\xc1\xb9\x74\xf5\xa5\xc3\xf3\xec\xa1\x33\xd1\x34\x23\xaa\x4a\xc5\x9a\xf5\x93\x3d\x85\x8b\xd9\x8b\xb3\x00\x47\xff\xb5\xd2\x53\xf5\xe2\x08\x45\x80\xf5\xd4\x54\x95\x5b\x1e\x06\x1e\x8d\x76\x8a\xbc\x5f\x78\x80\x7f\xc3\x09\x7a\x71\x98\xb7\x0e\xe6\x4b\x2f\x91\x04\x42\xb8\x6e\x63\xd4\x4d\xe0\x55\x00\x9e\xe6\x48\xb3\x5d\xcb\x41\x13\xf5\xf2\x39\x32\xd8\xc6\x65\xab\x24\x09\x46\x03\xc8\x37\x81\x6a\xf0\xd9\x08\xb3\x6c\x87\x0f\xe7\xdf\x85\xb3\xe0\x3c\x9e\x6a\x3e\x78\xa8\xe0\x34\xf2\x9f\x95\xbe\x53\xf1\x7b\x18\x43\x9c\xfd\xef\xd6\x52\x61\xc6\x46\x8f\xfb\xf8\xef\x43\xd8\x0a\xc7\x4b\x5d\x7d\x37\x60\xd7\x77\x6a\x35\x14\xd6\x6f\x11\x44\x75\x35\xc1\x4e\x52\xba\x3a\x78\x84\x09\x9b\xde\x4f\xa0\xd6\x4a\xc3\x04\xcf\x23\x74\x43\x34\xa7\xfc\xf9\xd2\xc7\xaf\xb7\x14\xb5\xda\x04\xd6\x0d\x3b\x7b\x5f\xa3\xeb\x62\xe1\x50\xd7\xbe\x92\x0c\x0a\xce\x9e\x72\xc3\xa1\x32\xe5\x77\xda\x38\x53\x07\x66\xec\xcd\x15\x3c\x53\xc0\xcf\xf8\xba\xc5\x68\x3c\x4b\x88\x0f\xda\xa4\x38\x6f\xbe\xab\x34\x08\xbe\xab\x60\xc9\x26\x4c\xa3\x30\xb6\xbb\x14\x23\xdc\x65\x52\x47\x96\x60\x8d\x26\x11\x16\x9e\x61\x74\x7c\x13\xa8\x72\xdd\x8d\x40\x8b\x6f\xdf\x50\x49\x3f\x06\x5d\xf2\x8d\x6e\x8d\x24\xa1\xb4\x01\x72\x8a\xe2\x23\xe3\x5b\xf8\x2e\xf0\x47\x40\xb6\x19\x0f\xc2\x3e\xcc\x14\xcd\x3c\xce\x9f\xeb\x98\x45\xbe\x29\x6b\x1a\x7b\x63\x60\x16\x98\xee\x4a\x09\xce\x1f\x75\x99\x95\x64\x52\x44\xe2\x1f\x33\xab\x38\x0d\xab\x30\x8c\xcb\xdf\x91\x62\x64\xca\x4d\x95\x12\x19\xd0\x50\xf0\x4d\x23\xfe\x58\x9e\xef\xf6\x8b\x3c\xc3\xbe\xc3\xf1\xc6\x94\x20\x2c\x8b\x5d\xaa\x5e\xc0\xbb\x5a\x9e\x32\x4c\x27\x11\xb5\x50\x7c\x61\x41\x4a\xa1\xa5\x72\x11\x2f\x29\xf7\x3e\x0a\x57\x52\xc3\x4d\x8f\x2e\x9b\xb6\xe8\x7d\x0a\x5f\x41\xcd\xc6\x26\xe7\xb6\x38\x4f\x9f\xf7\x1d\xbd\xb8\xbf\xd3\x6c\x4a\x58\x38\xd4\x8d\xad\x1d\x70\xed\x8d\xb5\xc1\x02\xe5\x5e\x9e\x55\x09\xe2\x30\x4d\xe2\xb0\xaf\xbd\x40\x4e\xeb\xf3\x4d\x8b\x3e\x5a\xd7\xc4\x39\x39\x8f\xd8\x0b\x82\x7c\xd5\xb8\xa4\xe6\xba\x5e\xe8\xae\x5a\x24\x99\xda\x05\x64\x5c\x53\xef\xf0\xe7\xf1\xae\x2e\xde\xd3\xa9\x6b\x95\x0c\xb5\x79\x1e\x91\xf4\xc5\x4e\x55\xd6\xbd\xa6\x6b\xc3\x1a\x04\xfb\xf5\x52\xfd\xf2\x1d\x0c\xa0\x94\x90\xbd\x75\x7a\x10\x28\xe4\xd1\xb5\x60\xcb\x89\x78\xe0\x40\xf7\x73\x4f\x57\x8f\x26\x49\x43\xfa\x7e\xd7\x3d\x59\xad\x6e\x6e\x3a\x0b\x54\x8b\xf1\x2d\xde\x1b\x8c\x94\x25\xfc\xad\xeb\x75\xf8\xd5\x17\x1c\x7b\x8e\x37\x71\xdf\x25\xdd\x02\x0e\x71\xf1\x44\x1c\x09\xeb\x46\xac\xd7\xd5\xab\xfe\x59\xa0\x48\x0e\x38\xaa\xc2\x54\x30\x52\x41\x88\x3d\x95\x60\xe3\xd7\xe9\x08\x11\x6d\x6d\xda\x8e\x9c\x4c\xa5\x73\x46\x80\x92\xd5\x11\x26\x5c\xc9\x2e\xb1\xd9\xef\xa7\x85\x1d\x90\xa7\x2a\x74\x43\x4a\x82\x83\x31\x07\x48\xca\x40\x1c\xbb\xc6\x25\x05\x83\xab\x99\x98\xc6\x49\x34\xc0\x76\x90\x6c\x9e\x2f\xc7\x1c\x6b\x63\xf0\x18\x15\xf1\x20\xb5\xe8\x40\x92\xaa\x82\xc2\x41\x21\xbb\x85\xd1\x3c\x45\xaf\x20\x0f\xf3\x98\x4a\xf8\xf7\xd7\xe6\xaa\x43\xd9\x3d\xb4\x37\x12\x77\xeb\x28\x6d\x1a\x1c\x27\xcb\xf6\xdc\xa2\xc3\x72\x7b\x7a\x9c\xd4\x0e\x76\x63\x9e\x39\x9f\xa8\x25\x6a\x2e\x29\x02\xa6\x3b\x8a\x2b\x7c\x17\xa9\x79\xe2\x91\xd9\x2b\x96\x2d\xe8\x95\xb6\x4e\xc0\x8a\xc0\x16\x7d\x03\x4f\x29\x8e\x74\x1b\x7d\x41\x16\xc6\x7d\x9b\xda\x19\xef\xfa\xa2\xe5\xd7\xf9\xac\xbf\xf2\x1b\x8e\xb8\x42\xd5\x89\xc2\xfe\x5a\x31\x81\xc5\x60\xbe\x78\xf8\x5b\x42\x1e\xbf\xcf\x67\x5a\xb2\x7c\x0f\x79\x5f\xe8\x2b\xf8\x6f\x4b\xa5\x57\xcc\xb3\xe0\x38\x82\x3c\x12\x16\xc9\x21\x20\x40\x9e\x9a\x52\x1a\x17\x4f\xb7\x17\x99\x13\xf2\xb5\xff\xf7\x9f\xa5\xd5\x82\x4f\x50\xb2\xf6\xd1\x15\xc5\x63\xf2\xf8\xb4\xc6\x99\x92\x0e\x32\xc5\xcc\x73\x4c\x99\x93\x63\x5b\xe9\x4e\x0f\xcf\x77\x0f\x3d\xff\x53\xd5\x77\x63\xbb\x6e\xef\xd5\x08\xcb\x68\x50\xf1\x6c\x25\x39\x6d\xf0\x22\x6e\x90\xd3\x86\x28\x00\x6a\x69\xf8\xf4\x1d\xda\xac\x88\x63\xbf\x83\x64\x2f\xd2\xde\xac\xb5\xee\x5a\x68\x7f\xfd\xf3\x9c\x0e\xbb\x8a\xba\x86\x20\xa4\x2b\x23\x82\x3f\x3a\x45\xe5\x28\xfc\x1c\x4b\x31\x23\x1d\x72\x8b\x8c\x00\x93\x27\xd2\x9a\xc1\xf5\x15\x68\x2f\xf2\xef\xb1\x6d\x11\x46\xf9\xca\x9e\x20\xbc\xe0\x84\x8f\xee\xe2\xc2\xf7\x5e\x81\x6d\x92\xf3\x4f\xf5\x7a\x31\xce\x0a\xa6\x76\x66\xaa\xb0\xb3\x37\xb0\x03\xf0\x2a\x27\x03\x78\xaf\x0e\x44\xe1\x0b\x92\xef\x6b\xca\x63\x9b\xad\xb1\xb3\x84\x08\xe9\x07\x81\x8f\x96\x7e\xd0\x38\x20\x3e\xd7\xcd\xac\x1d\x8b\xc3\x8a\xea\xcd\x37\x61\x2e\xf8\x46\xe5\x6d\x1c\x95\x05\xe0\x1c\x88\x18\x4f\xa9\x48\xf2\x54\xa3\x3b\xa6\xfa\xfe\x74\x1d\x9d\x35\x08\x21\x98\x2b\x12\x89\x1e\xe0\xfd\x30\xa3\xd7\x55\xfb\x40\xdf\x64\x7d\x33\xb0\x78\x2a\x24\x54\x00\xa4\xe7\xeb\x36\x2a\x2e\x1b\x0f\x92\x34\x93\x5e\x2a\x96\x99\x80\x39\x10\xcd\x09\x25\xee\x62\xe2\x35\xcb\x6d\x7a\xa2\x00\xad\x1a\x9d\x2e\xab\x16\x6e\x1b\x0f\xc3\x18\x40\xf1\x39\x9f\x01\xff\xa1\x4a\x5e\xbf\x47\xa6\x4e\xd2\x0c\xf4\x35\x70\xcf\x99\xf2\x41\xb8\x89\x9f\x54\xa4\x20\x59\xb2\x6a\x52\x38\xa8\xa8\x0b\xc1\x29\xe6\x6b\xa5\x18\x50\x64\x9c\xc6\x60\x62\x66\x7c\xbf\xb0\x34\xb7\x50\xd5\xa4\x89\xa7\xdc\x15\x92\x67\x9a\x50\x41\xb0\x3c\xe1\x90\xea\xe3\x30\x0a\x73\x30\x9f\xb8\x16\x66\x0f\x6e\x3a\xd9\x42\xd3\xb2\xd8\x4d\x6d\x6c\x84\x86\x95\xbf\xf2\x96\x02\x55\xbe\x87\x6f\x10\x74\xb0\xa3\x14\x4a\x92\x38\xb4\x33\x0a\xbd\x86\xec\x3f\x76\xe0\xf6\x9e\x62\x85\x6e\x12\x0c\x2d\x2e\x76\xb3\x0d\x33\xe1\x65\x2d\x3a\x47\x33\x5e\xd4\xe2\x42\x63\x3d\x10\x82\x6d\x92\xda\x71\x58\x8c\x55\x13\xca\x5d\xd5\x84\x72\x57\xc1\x3f\xb3\xb1\x89\x22\x9b\x91\x2a\x96\xfc\x02\x20\xf8\x7c\xdd\x10\x50\x5f\x38\xd4\x1d\xc7\x7d\x06\xee\x88\xa9\xa5\xb7\xe0\x1b\x55\xe6\x5b\x35\xc5\x2b\x78\x75\x69\xe3\xd0\xd9\xc8\xca\x78\x88\x4e\x7a\x0b\xf7\x7e\x6e\xc2\x48\x35\x13\x1f\x51\x28\x93\x23\xc0\xc5\x63\x99\xc4\x59\xd1\xef\xdb\x2c\x5b\x2d\x98\x98\x6d\x51\xd2\x92\xa5\x3a\x50\x6e\x07\x4f\xbb\x8f\x4c\x6c\xda\x1f\x45\x09\x31\x76\x78\x61\xfa\x0b\xa5\x06\xc7\xef\x53\x79\xad\x7f\xf0\x98\x3a\x9d\xcf\x2a\x0e\xed\xdb\x4a\x53\xe4\xaf\x4a\x9f\x30\x67\x49\x7d\x07\x28\xaf\x0c\xa0\x28\x13\x79\x79\xbe\x33\x81\xaf\xc7\xfd\x08\xbb\x03\xf8\xfc\x0d\x3c\xb9\x24\x42\x34\x71\xbf\x12\x7a\xfd\x2a\x65\xb6\x61\x3e\xcf\xeb\x3d\x36\x9e\x44\xa1\xc5\x51\x25\x22\xbb\x0a\x68\x71\xbe\xb1\xba\x7f\xa1\x6b\x07\xa4\x7a\xc7\x0c\x99\xc8\x72\x6c\xa3\x24\x09\x5f\x4f\x7d\xff\xe3\x06\x8a\x32\xa3\xa4\xc8\xa0\xd6\x02\x23\x73\xa4\xf4\x21\xe4\xbb\xf4\x96\x7c\xad\xfb\x22\x2f\x2a\xb3\x77\xbb\xd1\x14\xf1\xdc\x62\xb7\x88\xf2\xd4\xac\x87\x49\x64\x11\x6c\xb9\x78\x7c\xd1\x47\xdd\x35\x20\xa5\xd9\xdc\xa7\xa8\x2a\xde\xa3\x03\x14\x4e\x31\x73\x9a\x61\x1d\xff\x97\xaa\x1b\x14\x85\x74\xa9\x50\xd5\x2c\x04\x1d\x75\xc2\xa7\xac\xd4\xdf\x90\x17\x42\xf4\xb8\x6d\x4a\x7b\x85\xff\x2a\xf0\x60\x37\x66\x37\x11\x34\x50\x1b\xb5\x38\x49\x6b\xc5\x9d\x66\x7d\x49\xe2\x0d\x05\x36\x7e\xc6\x3c\x43\xb3\x81\x04\xd0\x0f\x4b\x95\x0d\xfa\x61\x0b\xb1\xcd\x6a\x0a\x32\x40\x25\x62\xfc\x8e\x52\x17\x7b\xa7\xad\x44\x94\x25\x45\x44\x4d\x47\x0a\x0d\x82\x1e\x41\xe1\x66\xdc\xeb\x3b\x66\x92\xc7\xbc\xbe\xe3\x8e\x9e\x52\xd1\xdb\x89\xa3\x1b\xa8\x22\x8e\x57\x61\xce\xb7\x4d\xb7\xff\x1c\xe7\x54\x01\x12\x43\x19\xe6\x3e\xb9\x33\xf8\xfb\x1f\xd0\x76\x12\x8d\xb9\xca\xe5\x81\xcf\x02\x89\x1b\x27\x90\x51\xb9\x03\x08\xb6\xe7\x7a\xaa\x86\xf3\xa7\x70\xff\xf0\x55\x0f\x1b\xf6\xf3\xc0\x81\x6e\xbe\x11\x66\xf9\xcc\x8c\xd6\x49\xf2\xfb\xe2\x7e\xe0\xab\x98\x17\x34\xb9\x72\x12\x0d\xf6\x54\xee\x10\xbe\xf8\x22\xf2\x39\x00\x56\x83\x4a\xc2\x55\xd4\xbd\x4a\xa8\xd0\xf6\x3b\x95\xc8\x65\xa9\x8f\x7c\xaf\xf4\x07\x0d\x88\x03\x60\x65\xee\x05\x1e\x76\xcb\x3c\x61\x30\x19\xb3\xbd\x4f\x69\x55\xa4\xe1\xc8\x11\xcc\x32\x7b\x47\x50\xa3\xf2\xf0\x84\x1b\x31\x23\xaf\x18\xe1\x4e\xaf\x27\x68\xf7\x4f\xa9\x50\x76\x6c\x62\x34\xc2\x57\x13\x07\xfb\xf5\xc5\xc0\x63\xfb\xbf\xf8\x89\xb4\xf6\xe3\x22\x1d\x58\x10\x19\xc2\x88\x41\x86\x13\x43\xcb\xbc\x1d\xc2\xe2\xea\x4a\x28\x83\x97\x4d\x5f\x24\x23\xa9\xac\xf4\xda\x53\x53\x87\x53\x7a\xed\xa9\x5e\x5b\x19\xc3\x4c\x20\x56\xe6\x16\x0d\x12\xe1\xa2\x12\xe2\x91\x07\x1b\x49\x1a\x0d\x36\xc2\x81\x85\xda\x3b\x82\xb3\xf3\x35\x66\xaa\xf3\x70\x86\x84\xa2\xcc\xfb\x2f\xe7\xcb\x7d\xbe\x71\xd3\x0c\x14\xdd\xef\xc7\x8a\xa6\xec\xe3\x52\x13\x9d\x27\x93\x24\x33\x51\xb6\x43\xe9\x83\xdf\xc2\xfa\x40\x81\xe1\x0d\x5a\xdc\x7c\xad\xb2\xbe\x57\xb4\x9a\x15\x6b\x31\x49\xdb\xba\xfe\x7e\xbb\x6e\x90\x6a\x7a\x4e\xe5\x2d\x96\x3d\xa6\x5c\xf3\x24\x85\x51\xf4\x14\x9c\x63\xd9\x64\xf4\x1b\xae\x95\x55\x4b\xe8\x7b\xd5\xb3\x5b\x81\x87\xa2\xb2\xa2\x30\xbc\xcb\x8f\x69\xff\x21\xc2\x07\xb2\x4e\xfa\x61\xe8\x65\x5d\x57\xa2\x13\x59\xbf\xac\x3c\x85\x33\xf0\xf3\x91\xfd\xf8\x1f\xaa\xa3\xe9\xd1\x19\xa0\xbc\x84\x0d\x82\x5e\x59\x58\x88\x15\x88\x6f\x8a\x80\x0e\x59\xd9\x2b\x0d\xbb\xf9\xcb\xa0\x06\x1f\x08\x3b\x1f\x60\x75\xef\x21\x62\xe6\x1b\xc5\xdb\xb3\x61\xd2\x31\xe9\x52\xb8\x6a\x13\xbd\xae\x54\x9e\xda\x1a\xea\x06\xa9\xd9\x00\xb9\x0d\x32\x15\x6f\xe0\x7d\x11\x63\x30\xc9\xbe\x0c\xf0\x13\xfa\x98\x35\x7d\x92\x18\x7b\x96\x87\xe3\x6a\xd0\xd1\x54\x7a\xbf\xfe\x79\xd7\xc1\xef\x29\xd8\xbf\x47\x87\x36\x5f\x07\x6a\xc9\xde\xfe\xe4\x3d\x67\xd3\xa1\x4d\x67\x68\x36\x45\x9e\xa0\xe3\x04\xf6\x18\xaf\xc4\xea\xde\x1e\x5e\x69\xc2\xc1\x4e\x0f\x7a\x39\x5f\xea\x55\x5f\xbd\xd1\xa3\x4f\x53\x79\x42\xc8\x3b\x15\x4e\xfb\x3c\x59\x38\x98\x2b\x06\x1b\xca\x8a\x7a\x4c\x05\xe5\xa0\x21\x14\xc7\xe4\x53\x3d\xf5\x48\xa5\xaa\x6c\xe1\xdb\x50\x65\xdf\x39\xf5\x91\xce\xba\x1d\x85\xfd\x08\x7d\x47\xdc\xe1\x4c\x6b\x14\x49\x98\x7f\xaf\xfa\xa1\xee\x69\x7e\x94\xd3\xad\xbc\x1e\xa3\xa4\x18\x8e\x60\x60\xdc\xe9\xad\xa4\x11\x02\x61\xc2\x0d\xe3\x2c\x37\x51\xc4\x55\x2c\x97\x4b\x7f\x23\xa8\x91\x28\xb5\x50\x95\x0c\x6c\x16\x0e\xe3\x5a\xb7\x22\xe4\x57\xf8\xba\xe1\x87\x57\x11\x43\x3f\x89\xfb\xa9\xcd\xad\xa2\x0f\x41\x0e\x52\x90\xdf\x92\xdf\x1a\x9b\x74\xdd\x46\x82\x86\x97\x02\x9f\x8a\x65\x2f\x2a\xe9\x95\x55\xb3\x9e\xa4\x61\x0e\x22\x71\x4d\x73\x00\xef\xfe\xa2\xf2\xf4\x2f\x96\x1a\x72\x76\xb9\x8d\x4c\x7d\xa5\x18\xf0\x5b\x71\x48\x1d\x78\xcc\xfa\xfb\x5a\xf4\xbc\x48\xc3\x4c\xda\x2b\xd0\x0f\x79\x16\x3b\x83\x6f\x94\x90\x81\x89\xf2\x64\x68\xf3\x91\x74\xa6\x73\xff\x48\xe0\x69\x4b\x2e\xa8\x10\xc4\x8c\xc7\x49\x4c\xd1\xca\x27\xb8\xe2\xb5\x12\xf3\x24\xdb\xe9\x19\xf8\x79\x8c\xe4\xc0\xc1\xf0\xe1\x68\x9e\x2a\xc6\x27\x94\x62\x01\x68\xb8\x8f\xfc\x01\x7f\x3e\xf0\xb8\xbf\xa6\x86\xf4\x73\x8b\xdd\xdc\xbc\xe2\xd7\x8a\x48\xfa\xd1\x5a\xe1\x9b\x96\x48\x71\xa1\x3b\x31\x9b\x49\x21\x63\xe5\xda\x45\xb5\xda\xdf\x93\x1e\x24\x9f\x85\xe3\x90\x0f\x3a\x8c\x24\xb0\x18\x7c\xed\x76\x5c\x11\x6f\x84\x19\xfe\x4c\x04\x66\x35\x90\x46\x50\xf7\xf6\x95\x49\xe5\xcb\x4b\xfe\x5e\x98\xa0\xc9\x48\x09\x45\xb4\x16\x86\xa5\x0d\x91\xdb\x01\x9d\xe8\xa8\x71\x75\x28\x25\x86\x24\x08\xbc\x36\x3c\xcb\x4d\x05\x39\xa3\xc6\x73\xf1\x49\xf0\xa7\x67\x02\x45\xd5\xd9\x46\x25\xbb\xd4\x1d\x87\x91\x5b\xe4\xc8\x07\xb1\x2a\x12\xdf\xb4\x54\x79\x97\xba\x2b\x26\x5e\x73\x7e\xad\xb4\x5e\x76\x5c\x33\xfa\xf6\xde\x27\x51\xca\x66\x76\xdd\xa6\x26\x02\x9d\x13\x16\xc2\x9e\x69\x6d\xcf\x38\x00\x26\x8a\xff\x22\x1c\xe2\x0b\x93\x3f\xd6\x53\xf2\x7f\xb6\x9f\x8c\xc3\x78\x38\xeb\xf3\xe6\xf7\xe8\xbc\x74\x40\x1b\x97\xec\xbb\x57\x47\x68\xfb\x13\x7b\xc5\x73\x87\x33\x79\x3b\xb6\x90\x30\xb9\xfb\xfa\xb9\x7d\x65\x12\x99\x98\xcb\x58\x95\x95\x55\x1c\xda\x0b\x7f\x5b\x9f\x68\xb5\xeb\xcc\x84\x89\xae\xe0\x31\x03\x00\xc2\xd7\x8d\x8e\xf2\x03\x07\xba\xfd\x34\xd9\xe0\x94\x10\x0e\xe1\xdf\x51\x82\x5c\xbf\x53\x85\xc2\xce\x71\x34\xb3\xd5\x2b\xbb\xce\x78\x0f\x55\xbd\xae\x88\xb7\x6a\xed\xf3\x8a\xf4\x18\xfe\x69\xb5\x29\x90\xfd\x40\x11\x8a\xaf\x9d\xbb\x58\xc4\x6b\x71\xb2\x11\x67\xc4\x25\xd1\xda\x39\xa5\xab\xbd\x93\x30\x26\x43\xc8\x61\x30\x9d\xf5\x9e\x26\x69\xc9\x2b\x9c\xfa\x2a\xda\x79\x55\xfe\xcb\x93\x24\xca\x66\x7d\x37\x62\x87\x82\x5e\xe4\xe8\xee\xe0\xfd\xf8\x1f\x50\x68\xe7\x7f\x51\x58\x8a\xb1\x09\xe3\xd5\xd4\x8c\x2d\xfa\x4c\xa5\x6d\xc2\x2f\xa2\x6b\xec\x8b\xc2\x0d\x3c\x01\x0c\x32\xff\x99\xd2\xbd\xff\x48\x57\xe1\xec\xc4\xa4\xa4\xa7\xa3\xc4\xfc\x58\x38\x88\x6f\x28\x74\x70\x3c\xe9\xcf\x79\x24\x36\x99\x37\xf8\x23\xf7\x83\xa7\x43\x09\xde\xd6\x6d\x4a\x2d\x54\x99\xe5\x68\x08\xaf\x35\xdb\xf3\xfd\x69\x80\xe3\xe1\x31\x1f\xa8\xc2\x6f\x65\x20\xc2\x2c\x9c\x51\x14\x16\xb7\xf8\x9d\xc4\xeb\xa0\xd1\x15\xa2\xa0\x16\xa6\xae\x51\x12\x27\xd0\xda\xc1\x7c\xdc\xa8\x31\x0b\xf9\xa6\x07\x8d\x01\xcb\xf2\x34\x89\x87\x3b\xaa\xc9\x45\xd4\xcb\xf5\x2f\xec\xb7\x3f\x41\x56\x04\xc7\x09\x9a\xb4\x61\xa6\x3e\x40\x14\xce\xbc\x7f\x5a\x29\xf1\xbc\x3b\x6f\x53\xe8\xbb\x63\x20\x98\x76\x45\xa5\x72\x8e\x62\x97\x71\x33\x87\xee\x8b\xcb\xcd\xea\xaa\x4d\xb3\x5d\x8a\x8a\xe6\xb8\x16\x17\x3d\xc1\xe3\x82\xcc\xcd\xff\x08\xbb\xeb\x84\xe5\x9c\xf4\x34\xe7\x77\xf0\x6b\x1c\x0b\xf0\x4d\xe0\x8f\xad\xef\xb6\xb1\x96\xda\x62\x32\x4a\xd2\xd0\xcc\x28\xaa\xab\xd3\xaa\x93\xff\x1d\x58\x54\x98\xf2\xb7\x54\x8f\x54\x66\xcd\x30\x35\x63\xec\x3f\xb1\x59\x6a\x40\x2f\x37\x78\xda\x0f\xcf\xbf\xd8\xad\xd6\xcd\xc6\xc8\x46\x63\x87\x4b\x66\xd4\x4c\xe9\x51\x63\x8f\xd3\xf1\x8a\xb7\x7c\xa8\x0e\xf6\xb1\x89\x6d\xb1\xce\x49\x5c\x44\xb9\xff\x0f\x61\xef\x1a\x24\xc9\x95\x9d\x87\xcd\x54\xf5\x0c\x06\x18\x60\xf1\x26\xb5\x92\x6c\x95\x65\x86\xd7\x0a\x83\xe3\x90\xc3\xb6\x6c\xfd\xc9\x52\x77\x73\xc1\x19\x92\x8d\x76\xcf\x70\x40\x23\x1c\x61\xdc\xca\xba\x5d\x95\xe8\xac\xcc\xda\xcc\xac\x6e\x34\xc2\xbf\x64\xff\x50\x38\x18\x0a\x59\xb2\xf4\x4b\xb6\x68\xda\x92\x48\x5b\xa4\x49\xee\xf2\x21\x31\xc8\xea\xdd\xe5\xee\x92\xbb\xd8\x5d\x3c\x16\x58\x00\x03\x60\xe7\xfd\xee\x79\xbf\x67\xd0\x70\xe4\xf9\xce\xb9\xf7\x64\x67\x0e\x1d\xb1\x11\x9b\x89\xe9\xaa\xca\xc7\xbd\xe7\xf9\x9d\xef\x3b\x4a\x96\x81\x8f\x1b\x6a\xf2\x3d\x93\xc5\x76\x9d\x5d\x84\x70\xac\xb4\x1c\x21\xde\xf9\x8a\xef\x1a\x99\x6c\xa5\x4c\x12\x67\x5a\x5f\xfa\x92\x9e\x01\x92\x12\xcc\x5b\x53\x45\x30\xfb\x21\xf6\x1d\x22\xaf\x7b\x35\x2b\x38\x7f\xa8\x53\xa4\x85\x89\x67\x3c\xcc\xef\x5f\x07\xbe\xdf\xf9\x00\x7d\x16\x51\xf7\x50\x9c\x54\x17\x9a\x18\x41\x4c\x41\xc2\x5b\x85\xa4\x2c\xd2\x30\xa0\xcf\x49\xc7\x60\x7b\x61\xf5\xd5\x57\x3b\xeb\x36\xdf\xdd\xfa\x45\x09\x13\xde\x55\x78\x97\x33\xd4\xdb\x41\xc7\xe8\x27\xf4\x10\xf1\x35\xbb\x50\x40\x76\x12\xd0\x0e\xca\xf4\x0b\x37\x6b\x17\x46\x44\x63\x19\x51\xe0\xd9\x6d\x34\x2d\x81\xa6\x69\x99\xfe\xcd\x87\x78\xd4\xbe\x59\x5e\x5e\x4f\x22\x17\x10\x21\x88\x62\xb0\x2e\x9f\x28\x28\x46\xdf\xe6\x61\x16\x8d\xc5\x87\xbd\xc2\x57\xc9\xab\x8e\x4f\xaa\xd0\x9d\xcc\x7e\x51\x19\xa7\x3d\xdd\x96\xe3\x72\x3a\x51\x41\x94\x20\xb5\xc5\x86\xdf\x43\x78\x44\x06\x0f\xe1\x3d\xc1\x46\xee\x41\x5f\x1a\xaf\x7c\xef\x46\xeb\xcb\x2f\x3b\x70\x49\x69\x89\x60\xf4\xde\x85\xc1\xc4\x92\xbc\x43\x2e\x03\xa0\xe5\xdd\x1b\x65\x7a\xc4\x22\x36\x68\x94\xe1\xf9\xdc\x41\x43\x8c\x33\xb1\xa0\xf5\x73\xbf\xc2\xd1\xf6\x6d\x6c\x77\x54\x4c\x9f\xe8\x2a\x34\x0b\x68\xd9\xd1\x0d\x69\x77\xd5\x90\xd1\xe7\x6a\x92\xf6\x3e\xa5\x3f\xf8\xf4\x7b\x5a\x7e\xf3\x26\x1b\x15\xa1\x05\xa7\xf2\x23\x2e\xf8\x83\x69\xfb\xe0\x7f\xfb\x4b\xc2\x1d\xab\x68\xdd\x8a\x4c\xaa\xe7\x8e\x2b\xc2\xeb\x6a\xd7\xd0\x7d\x4b\xb3\x9d\x49\xd2\xb7\x59\x98\xd2\x76\x5d\x5a\xf4\x93\x73\xbe\xdf\x1d\xfc\x94\x9e\xb3\x67\x1c\xb3\x9b\x1d\xc5\x32\xbd\xa0\x96\xec\x05\xcf\xa5\x6d\xfa\x03\xa6\x33\x75\x44\x2f\xce\x60\x9d\x9b\xea\x69\xd4\xa8\x48\xb3\x1c\x74\x4b\x5c\x1c\xa9\xf0\xfb\x3d\xa5\x48\x2e\xb2\xd2\x9b\xcd\x54\x1a\x2b\x95\xe2\x7f\xcb\x4b\x09\x04\x95\x46\x40\x25\x9f\x78\xbd\x78\x56\x71\xd6\x7d\xac\xa7\x9f\xce\x06\x8a\x21\x0d\x23\x12\xa8\x06\xbf\xa5\xcb\x2c\x2c\xe2\xc4\xce\x80\xe2\x0f\x57\x1c\x59\x92\x4a\x1c\xd8\xc2\xdc\xb4\xfe\xcb\x6e\x31\x5d\x84\x59\x72\x21\xe9\xfc\x21\x4e\x7b\x7e\x44\x6b\xd4\x51\xe8\x94\xcb\x9d\x95\x53\x70\x97\xf8\xab\xff\x2b\x50\x84\xda\x97\x38\x01\x42\x39\xf2\xfb\xd8\x30\x58\x9a\xff\x32\xf0\x1c\x94\x1f\x2b\x34\xff\xcf\xfe\xec\x5f\xc5\x67\x44\x21\x15\xf9\xa2\x93\xcd\x2e\xef\x5f\x26\x47\x95\x3c\xc1\x07\x68\x69\xc0\x4e\x82\x05\x03\xa6\x11\xb2\xba\x28\xfe\xbe\x4f\x8a\x50\x78\xc9\xf7\xb1\x2f\x91\x82\x71\x6f\x5a\x98\x5e\xe9\x0e\xa4\x6b\xd9\x72\x5f\x7b\x93\xc0\x2a\x4e\x03\xb5\x7c\x4a\xa8\x55\x54\x0a\x32\x6f\x51\x1c\x84\x28\xfe\xdb\x34\x46\xc5\xf0\x1b\xe0\xbd\xf8\x07\x15\xf1\xc1\xf0\x1c\x1e\x3f\x4e\xfe\x0f\x7a\xab\xb0\x30\x98\x49\x61\x44\xa1\x46\x2f\x71\x0d\xc4\xad\xc7\xc3\x32\x13\x3e\xb3\x51\x86\xa8\x42\x5c\xe0\xb0\x62\x93\x22\x4c\x47\x76\x46\x13\xc9\x79\xe8\x8c\xc1\x70\x1a\x5e\xec\x0c\x20\x9e\xd2\x96\x70\x7c\xde\x51\x38\xf4\xf0\xc8\x7f\xfe\x57\xbb\x1e\xc1\xf7\xe4\x86\x9a\x35\x3f\x55\x19\x72\x55\xb8\x9d\x0b\x9a\x27\xfe\xad\xa9\x1e\xe2\xeb\x4f\x66\xb4\x5c\xbb\x02\xbf\xfe\x82\xe6\x10\x38\x13\xe8\xb8\xb0\x49\x84\x3b\x4e\x73\xde\xd3\x22\xd0\xaf\xd5\xfa\xa7\xcf\xc8\xde\x4f\x93\xd5\x28\x84\xd0\x4e\xf9\xe4\xb0\x83\xce\xea\xe6\xca\xd9\xda\xfc\x73\xe9\xa9\xfa\xa2\x5e\x47\x8b\xd0\xc9\x39\x3b\xf6\xf9\x63\x81\x87\xd6\x94\x66\xeb\xb9\x72\x21\x60\x19\x5d\xa1\x3f\x63\x5e\x45\x5c\x96\x60\xc5\x69\x1d\xa1\x89\xf8\x8f\xb0\x26\x91\xca\x1d\xc7\x9a\x44\xf0\xfb\x35\xd4\x73\x61\x2f\x5a\x5d\x9f\xf0\xdd\xa2\x3c\x91\x39\x33\x2a\xac\xbb\x81\x6a\x84\xa1\xea\x29\x89\xb0\x0f\x78\x6e\x04\x55\x12\x57\xd7\x46\xbc\x89\x8d\xe6\x16\x98\x63\xc3\xd8\xd4\x5c\x4b\xdf\xc2\x1b\x16\xab\x49\x6f\x58\x66\x31\x7d\x58\xe4\xd2\x91\x7c\x77\xf9\x03\x42\xfe\xef\x9f\x1b\xcb\x15\xb3\xa0\xaa\x22\x1b\x44\x95\xd2\x09\xad\x7a\xb0\xa5\x1e\x14\x8a\x01\x70\xdc\xed\x1b\x53\x28\xb4\x08\xbd\x4d\xf9\x15\x70\xcb\xa7\x70\xb9\x32\xfb\x49\x0f\x4b\x78\xb0\xe8\xcb\xf1\x7e\xae\x29\x98\xc5\xd8\x66\xcb\x69\x86\x50\xd3\xb7\xd8\xee\xc1\xdf\xba\x29\x1b\xe7\x49\xeb\x82\x90\x73\x73\x9d\x71\x79\xff\x93\xb8\x55\x99\x38\x3a\x70\x40\x8e\x9b\x40\xb3\x3c\xe6\x5c\xd5\x48\x55\x14\x16\xdb\x3f\xb2\x34\x4b\x3d\x50\x9b\x01\x08\x8f\xb7\xfe\x23\x3c\x31\x3e\xa9\xd5\x72\xe7\x0f\x75\xc2\xcc\x52\x3e\x1f\xe5\xf8\x29\x6e\x27\x2b\x8d\xe8\x73\xc1\xf6\x10\x7c\xfe\x50\x27\x1a\x24\xe9\x28\x4a\xa2\x74\x92\xb3\xf4\xb7\xab\x24\xfa\xaa\xa2\x4b\x9e\xe3\x34\x19\x14\xd1\x08\x8c\x7a\x8c\x41\xa3\xa2\x87\x43\x93\xb9\x2c\xe7\x29\x60\x34\x44\xbb\xd4\xe1\xad\xa2\xa4\x6f\xda\xb4\x1b\x2a\x85\x48\x87\x4d\xf5\xf1\xe6\x7d\xc5\x8c\x5a\xa4\x6b\x1c\x3a\xa0\xec\x0b\x44\x19\x1f\x6b\xe1\xe8\xfe\x6b\x44\x44\xbd\x5b\xcd\x91\xc2\xbd\x49\x9f\xca\x17\x9f\x7f\x0b\xbf\x8c\x2c\x97\x4b\x45\xae\xb3\xb5\xe4\x79\x9c\x9a\x44\x7d\xd2\xe5\xe5\x28\x8c\x4c\xdc\x4f\x47\x2d\x8d\xf3\x46\x07\x9a\x8f\xd5\x34\x8c\x49\xc2\x61\x4a\x00\xf6\x72\xe5\x09\xcc\x80\x56\x9e\xe0\x0f\x1a\xad\x94\x35\x60\x3d\x54\x93\xea\x67\x15\xb6\xb6\xb9\x10\x36\x4c\x7b\x3d\xa0\x4f\x98\x12\x3e\xa8\xf0\xc3\x2b\x78\xc6\x24\x24\xd5\x41\x14\xb1\x60\x5b\xff\x1f\xdd\x61\xbd\x44\x28\x0a\xb7\xc9\xbc\xe6\xe3\x15\x15\x59\x5e\xd6\xdf\x18\x9a\xc4\x47\x6d\x3a\x35\x15\x98\x8d\xe3\xdd\x33\x59\x11\x85\x93\xd8\x64\x33\xbe\x4a\x7a\x02\x1b\x59\x87\x87\xf8\x1c\xb8\x4e\xb0\xa7\x1f\xdd\xa8\x50\x53\xd8\x88\x6e\x95\xb3\xfd\xa0\x52\x2b\x78\x5e\x13\x47\x94\x01\x25\x54\x84\xcb\xdd\x2b\xfd\x20\x5a\x8a\x78\xd5\x3b\xba\x6a\x4c\x53\x8f\xb3\xfd\xec\xdf\xf9\x2f\x68\x2f\xca\x7c\x71\x69\xa6\x65\x10\xd1\xd1\x5d\xa5\xa5\x3f\x31\x85\x85\xac\x20\xfc\xe9\x4d\xb8\x07\xd4\xbb\x79\x40\xda\xc9\x8d\x3b\x46\x8c\x23\xb5\x7c\x71\xff\x42\xf9\xff\x82\x9b\x71\x33\x3c\x6a\x54\x47\x3f\x82\x28\x31\x44\x1a\xcc\xdc\x59\xfa\x37\x59\xd1\x5d\xe6\xd0\x2b\xfc\x74\x35\x82\xb9\xad\x2b\x78\xc5\x30\x66\xd7\xa6\xff\xc1\x43\x12\x35\x3b\x8a\x06\x99\x2f\x5c\x03\x7a\xb2\x89\x45\xc6\x27\xb5\x75\xf9\xea\xab\x9d\x3c\x8d\x2d\xdb\x18\xc7\x17\xe9\xf8\x46\x2e\xeb\xf1\x3c\x12\x05\x7b\x92\x9e\x23\xcf\x3f\x50\xe0\xc7\xf3\x4b\xf4\x29\xf4\x1a\x77\xe8\x19\xf0\xab\xf0\xb8\x42\x06\xac\x3c\xd8\xa7\x40\x5e\x48\x87\x96\x9e\x8f\xc3\x13\x94\xc6\x81\x3f\x13\x54\xaa\x17\xbe\x7a\xf8\xd8\x86\x22\xd0\xfa\x10\x19\x92\x6b\x66\x2d\xf9\xc1\xaa\xf2\x95\xc2\xd6\x7e\xbf\xb9\x42\x6d\x49\x54\xba\xfc\x11\x6c\xa3\x07\x14\x86\x63\xee\xe5\x52\x45\x81\x6f\xfa\x33\x0d\xce\x27\x4b\xc7\x36\x2b\xd6\xff\xbb\xff\x34\x34\xf9\xc4\xc4\xc5\xba\x9a\x18\xd8\x52\x13\x03\x5b\x4a\xe8\xd2\x24\xeb\x4f\xd1\x43\x72\xc2\x35\xe5\x43\x42\x7f\x81\xdf\x37\x3c\xea\x67\x6a\xf6\xef\x01\x75\x61\x05\x91\x5f\x61\xd3\xa5\xe7\x05\x6b\xfd\xf9\x54\x29\xb5\x60\x36\x8a\x3e\xf1\x37\x9e\x26\x54\xb8\x00\x1f\xca\x27\x24\x9c\xbb\xd5\xce\xdd\xfe\x85\x2a\xe9\xaf\x83\xa3\x3a\xad\x96\xa3\xd8\xcf\xe8\xda\x6d\xd5\x22\xb9\xa5\xd9\x4e\xcf\x26\x76\x39\x72\xd3\x90\x15\xc9\x10\xc1\xdb\x35\x8a\xfb\x95\xcf\x92\x9e\x9f\xe8\x0e\xd3\x25\x08\xab\x4a\x03\x00\x70\x39\x8a\x5d\x99\x0a\xe5\x88\xdb\x78\x65\xc2\x53\xe6\xd1\x67\x9f\xd7\x76\xf4\xd2\x6c\x67\x35\x2d\x84\xad\x48\x62\xcc\x96\x13\x50\x3a\x56\xab\xa7\xec\x5f\xa0\x42\x8f\x09\x8b\x68\x15\x3d\x3e\x26\xf6\xaf\x90\xfc\xab\x5d\x93\xc6\x51\x68\xc1\xf7\x02\x7c\xfa\x49\xc5\xf7\xf7\x75\x8d\xe9\xf8\x36\xad\x54\x94\x7b\x40\x69\x0c\xa3\x54\xc7\x7f\xce\xcd\x75\xfa\x51\x1e\x9a\xac\x6f\xfb\x6d\x9f\x9a\x70\x2e\x8c\x3a\xca\x39\x0d\x83\x7f\x50\xeb\x02\x52\xed\x2b\x8d\x71\xe3\xd2\xb4\x68\x29\x22\x9a\xa6\x36\x43\x9a\x44\xd2\x71\xc5\xe6\x3e\xa5\xc7\x86\x4f\x29\x3a\xca\x30\x4d\xc2\x78\x42\xed\x7b\x9f\x03\x6e\xea\xfc\x6c\xd3\xd7\xfe\xc7\x83\xcc\xf4\xa5\xb3\xcc\x1c\x1a\x81\x8f\xdf\x6e\xe8\x29\xad\xf3\x5a\x7e\xf7\xbc\xda\x51\xfb\xf6\xed\x7b\xdc\xd3\x73\x01\x00\xff\x14\x33\xda\x95\xc1\xb5\x24\x03\xe5\xf2\x56\xed\xe2\x57\x9c\xbe\x45\x99\x4a\x88\x8a\x4a\xf9\x4c\xb1\x81\xae\x93\x5b\x41\x42\xfd\x4f\xf5\xce\xba\x0e\xe8\x03\x4e\x36\xd5\xa0\x2a\x83\xa1\x44\x29\xe3\xa1\x75\x35\x5b\xd8\x32\xec\x75\xd9\x0e\xa7\x77\x74\xe1\x92\xea\x35\x55\xf3\x96\xa3\xe2\x8d\x35\x43\xe3\xbe\xce\xf3\xbc\xab\xe7\xca\xde\x6d\x20\x10\xee\x14\x26\x1f\x46\x2d\xdd\x09\xd3\x8c\xf9\x4a\x68\x95\x28\x68\x90\xe3\x39\x87\xef\x13\xce\x26\x9f\x18\xdb\xd7\x27\x00\x1e\x4a\x53\x55\xb5\xee\x2f\x03\x4d\x86\xc9\x96\x83\xcf\x6b\x92\x79\x8c\xd2\x31\x0c\x36\x50\x0a\x15\x9f\xc0\xb6\xc9\xf8\x9c\xd2\x92\xde\xb1\xa1\x52\x48\x86\xb1\x60\x9f\x73\xdd\x0f\xa0\x82\x5b\xf0\xaf\xb8\x82\x6f\xaa\xd1\xb6\x2d\x2a\xcf\x08\x08\xaf\x7c\xe3\x7a\x02\x05\x05\xfc\x5f\x9d\xee\xfc\x19\xb6\x8c\x80\x7d\x8a\xa4\x25\x2d\x5e\x87\x87\x71\x5c\x03\xac\x60\x21\x8c\xd5\x3e\x6d\x6f\x63\xe6\x00\x26\xfa\x0a\x2c\xbc\xcc\x02\x34\x22\x78\x7b\x26\x36\x09\x13\x43\x23\x50\x38\xaa\x74\xd9\x8e\xaa\x80\x2e\xa6\x16\x35\x1b\x20\xdc\x0e\xca\x8d\x7c\xac\xc9\xde\xa4\x05\x50\xfe\x3c\x12\x3d\x86\x9d\xf2\x89\x17\x16\x9a\x70\x92\x22\x78\x33\x3f\xba\x73\x47\x61\x6d\x62\x6b\x12\x8b\xd9\x41\x69\x73\x97\x0f\x43\xba\xdc\x3e\x41\x1f\x64\xe0\x61\x9d\xe7\x06\x1a\x93\x42\xcb\x3c\xa9\x47\x9e\xed\xed\xfa\xc1\xf5\x7b\x1a\xf1\xfd\xd5\xa9\xa6\xf9\x8c\x63\x4b\x56\x97\xf4\x37\x90\x73\x55\xc8\x0c\x81\x62\xe0\x7f\xa0\x6b\xe2\xff\x3e\x95\x8e\x98\x99\x14\x29\x09\x87\x52\x4b\xb6\xfc\x1a\x47\x59\xe2\xc1\xa1\x81\xd2\xb6\x59\x65\xbe\x45\x47\xc6\xb4\x20\x65\xc9\x0b\x2a\x0d\x8a\x27\x6f\x70\xd0\x25\xb2\x1b\x4a\xd6\xa3\x2a\x65\x65\x4d\xf6\xc5\xf2\xb7\x50\x6c\x83\x4f\x45\x1a\xbd\x13\xe3\x2a\xce\x0a\xcc\xcd\x7b\xe1\x93\xfd\xe2\x41\xf7\x00\x82\x89\x9d\xd1\x46\x59\x08\x51\x35\x60\x5c\x6e\x14\x75\xf1\x25\xc9\xa4\xaf\x05\x4a\x91\xf0\x0a\x02\x05\xac\xe8\x1d\xdd\xd6\xcf\xfd\x8a\xcf\xfd\xcb\xb5\x2a\x76\x87\x5e\x14\x8a\x95\x27\xb1\x19\x51\x87\xfc\x2e\xed\x19\x6c\x0e\x80\xc5\x98\xe2\x1b\x01\x01\xc2\xcc\x53\x53\xdd\xed\xdf\xb9\xd1\x7e\x79\xfe\xd0\x16\x6f\x63\xfc\x37\xc0\x4d\x45\xef\xa8\xf5\xb2\x44\x84\x90\x7e\x70\xf8\xf2\x72\x5b\xc1\x7f\xbd\xda\xe4\xf9\x89\xd4\x9e\x03\x0c\x7c\xd7\x37\xa6\xaa\xee\xf3\x8d\x5a\x27\x6d\x6e\xae\x53\x64\xe9\xa4\x17\x4b\x8b\x46\xb8\x72\xe8\xe2\x85\x44\xc7\x97\x9b\x47\x36\x8e\x53\x83\x37\xeb\xa6\xfd\xca\x87\x29\x33\x7d\x4d\x84\xa4\x6b\x59\x9a\x0c\x88\x22\xc4\x69\xb0\xec\xf7\x96\xb1\xe5\xd4\xa7\xee\x07\x4a\x18\x38\x4e\xd7\x66\xbc\x01\xbd\x3f\x55\x34\x3d\x5f\x9f\xaa\x38\x11\x7c\x68\x32\xd2\xdd\x50\xd6\xa0\x79\xfd\x82\x91\x00\x32\x55\x55\x7e\xb3\x8c\x5b\x3d\xad\x7a\x69\x03\x66\x24\x28\xd7\x1d\xea\xc7\xe7\xb0\x0c\xf8\x44\x4b\x71\x4f\x15\x08\xea\xd8\x54\xe1\xe6\xee\xd4\x10\xdd\x2f\x74\x08\x26\xbe\x62\xad\x1f\x4b\x6e\x6a\xeb\x79\xdf\x9d\x47\xfd\x96\x1e\xa2\x67\x5c\xac\x88\x7b\x37\xdc\x67\x2f\x25\x71\xaf\x96\x72\x96\x54\x1d\x90\x05\x5c\x1f\x56\x8f\xcd\xc8\x26\x85\xa8\xaa\x20\xa6\x7d\x1f\x7e\x82\x4f\x34\xbb\x12\xc9\xb7\xdb\xbc\x22\xc7\x16\xf8\x4a\xe9\x65\xc5\x58\x94\x4f\xf2\xc2\x44\x09\xbe\xf9\x45\x87\x54\xf4\x99\xf8\x91\x46\xe2\xda\xde\x24\x8a\x0b\x25\xb1\xbc\xa9\xd9\xd8\x6f\x55\x7a\xdb\x7e\xa1\x24\xf6\xf5\xe2\xd9\x6d\x05\x7f\xdd\x18\xd0\x05\xff\x4a\x23\x42\xb5\x18\x2a\xcd\x83\x4a\x1b\xc4\xc3\x0e\xae\x55\x3b\x14\xd5\x4e\x44\xa5\x91\xa1\x3b\x27\x95\xe6\xc5\xf6\x2e\x8a\xe3\x9f\xac\x74\x51\x74\xb7\xe2\xa1\x2d\x15\x7f\xff\xeb\xd6\x64\x8f\x97\x37\x83\xeb\xe7\x81\x50\x18\x8f\x07\x74\xc7\x6e\x2e\xa9\xfc\x32\xbd\xeb\xd0\x9f\x42\xdf\x10\xb5\xd5\x47\xbb\x2a\x7f\xe4\x35\x2d\xa2\x11\x9e\x75\x6f\x0f\x99\x39\x98\xbc\x5d\x1b\xaa\x99\x7b\x9e\x62\x06\xdc\xef\x13\x5d\xdd\x5f\x1a\xd9\xfc\xd9\xf2\x0b\xf0\xc4\xf1\x5c\x71\x5f\x47\x34\xf4\xe9\x98\x66\x36\xfd\x90\x6a\x3a\xf8\xc9\x73\xd3\xd6\xa1\x97\x7c\x2a\x5c\x3e\x6f\xfc\x0c\xf3\xcf\xc1\x26\xfe\xda\x54\xb3\xb1\xaa\xf2\xc6\xed\xa9\xe7\x09\x64\xea\x4b\x84\xcb\x7f\xaa\x19\xb2\xda\xdd\xd6\x2f\x1e\x74\xf8\xca\xf2\x09\x21\x7b\x3a\xc6\x8d\x47\x7c\x7e\x77\x57\x8d\x16\xfc\x26\x4a\x63\xc8\x01\xef\xc0\x54\xf0\x89\xc2\x54\x9b\x5e\x48\x0a\x7f\x52\xe6\x2e\x2f\x46\xc8\xd9\x7c\xaf\x72\xcd\xc6\xe1\x50\x21\xec\x50\x4c\x7f\x18\xb3\xd5\xc2\x42\xa7\xcc\x11\x26\xa6\xb0\xa8\x52\x22\x51\x3f\xae\xab\x62\xe7\x15\x7a\xb4\xcc\xc0\x64\x27\xe7\x85\x93\x58\xe1\x09\x46\xda\x9b\x32\xcd\xf8\x8c\x1a\xf8\xcb\xc7\x36\x2c\xd2\xac\xed\x87\x41\x3f\x51\xc6\xf3\xc2\xb4\x42\x69\xa0\xc4\xf8\x57\x23\x05\xbc\x63\x6c\x08\x9f\x28\x77\x12\xa6\x09\x0d\x82\xe0\xf9\x8a\xa8\x89\xa2\xdd\xdf\x54\xfc\x07\x45\x3a\x29\x88\x7e\xd2\xb5\x56\xbf\x49\xeb\x4d\x60\x14\x1e\xfb\x79\xaa\x66\x80\x0f\xcf\xce\x77\xf2\xaf\x4c\x4c\xe2\x64\xa4\xdc\xd4\x3d\x3d\x65\x19\xff\x55\x0a\xee\xc9\xeb\x91\x15\xb7\xc1\x5a\x98\xf4\x94\x44\x17\xf3\x29\xcd\x6c\x2b\xe3\x2c\x2f\x3a\xaa\xdd\x96\xe2\xe0\x6d\x2a\xb1\xd0\x10\xdd\x2e\xff\xd8\x39\x53\x85\x15\xf9\x40\xf5\xc0\x37\xa7\x2a\xa0\x7b\x4c\xd1\xae\x5e\x56\x97\xd0\xcb\xac\xed\xdb\x64\x86\x56\xa3\xb0\x03\x79\x00\xfe\x0d\x74\xfe\xf8\x1f\xc8\xf6\xf1\x3f\x28\x26\x85\x3c\x8d\xed\x28\xa9\x14\xd7\x41\xe6\xc5\xc7\x35\xca\xf7\x03\x07\x3a\x66\x3c\x8e\x99\x66\x22\xdf\x56\x4a\x55\x13\x8b\x4a\xf5\xc8\xe4\x51\x48\x35\x6f\x61\x28\xa3\x0b\x43\xfe\x7b\x3b\x50\x2a\x21\xb7\xa7\x6a\xb2\x00\x81\xb7\xc4\xae\xe5\x23\x90\x76\xfe\xf6\x6d\xf1\x42\x27\x34\xd9\x18\x0c\xd6\xf4\x3e\x10\xc3\x80\x31\x84\x8f\xb7\x8b\xa0\x2f\x2e\x2d\x76\x16\x16\x9e\x26\xfb\xee\xe6\x69\x5e\xf6\xb8\xb2\xc0\x83\x42\x77\x80\x8a\x1d\xc6\xe3\xb7\x03\x3f\xc3\xb2\xa5\xf5\x21\x1e\x68\x8d\x2e\xa4\xce\x70\x41\xc2\xdb\x26\xe4\xba\x0a\x9c\x7d\x83\x3c\x95\x62\xc6\x79\x85\x1d\xcf\x15\xea\x1f\xbb\x41\xd3\x25\xa9\x7f\x9f\xc0\xd3\x62\x7c\x7a\xa0\x68\x48\x59\x93\x45\xaa\xb1\xdb\xeb\x1c\xfb\x17\x88\xea\x84\xb6\x34\x2c\xfd\xdb\xf4\xdb\xd2\x0a\x6d\x39\x02\x71\xad\x55\x6a\xf3\x22\x1a\x99\xc2\xf2\xc4\x87\xe4\x36\xe5\x07\x71\x37\x3f\xa6\xa7\xc1\xc7\xaa\x68\x7c\x79\xaa\x04\x14\xff\x88\xde\x03\x1f\x2b\x7b\xb1\x3e\x59\x69\x79\x9f\x70\x22\xa8\x00\xcb\x1a\xea\x2e\xc3\x49\xbe\x62\xb3\xaa\x9e\xf1\x4d\x7c\xca\xcd\x74\x7b\xec\xe9\x85\xa9\x9f\x27\x5b\x49\xd2\xb5\x47\x7d\x96\x0d\xad\x48\xd7\xb5\x3f\x3c\xeb\xf9\x77\x0f\x1c\x90\x09\x3a\x3d\x98\x71\x1c\x49\x2f\x9f\xd0\x54\xbf\x78\x09\x7a\x30\xc2\xb8\x50\x3e\x0c\xf6\x4a\xaa\xf6\xb5\x4c\x1a\x7b\x7b\x68\x75\x21\x2d\xdb\xa2\xa5\x8d\x27\xf2\xe7\x9a\xe4\x00\x86\xdc\x5d\xe5\x61\x11\xc7\xc0\x74\x05\x02\x94\x82\x92\x22\xb4\xfa\x2f\x6a\x86\xc6\xcf\x5d\xfb\xa2\x1f\xe5\x04\x67\x41\x31\x49\x48\x06\x3e\x9f\xaa\x99\x05\x4c\x38\x22\x83\xba\x87\x35\x89\x9f\xbd\x13\x6c\xaf\xac\x2f\xbe\x74\x10\xca\xea\xe3\x34\x2b\x7c\x65\xbd\x51\xd4\xdf\x25\xd1\xaf\x45\x86\x2d\x3c\xe2\xba\x4f\xf0\x77\x7c\x12\x3c\xaf\xe2\xc6\x5e\x1e\xf5\x23\x93\x45\x96\xa5\xd1\x50\xe3\x78\x9f\xcc\x21\xa2\x2d\x4c\x0e\xf0\x31\x62\x32\xfe\x23\xe5\x4a\x87\xc4\xa0\xaa\xe8\x23\x76\x22\x4b\xe4\x93\x0d\xa5\xfb\x98\x9b\x28\x23\xe7\xec\xa8\xc2\xf6\x7b\xaa\xb0\x7a\x94\xda\x31\x61\x96\xe6\xf9\x8c\x8f\x99\x8e\x51\x9a\xe9\xb8\xf3\x3c\x6b\xab\x6a\x79\x7f\xa0\x82\xe3\xb1\x4d\x4c\x4c\x7c\xf0\x9e\x04\x93\xe9\x97\x25\xc9\xd8\xee\xbd\x96\x66\x3b\x51\x1c\x4f\x48\x4d\x49\xe0\x9a\xe8\xfd\xbe\xa7\x18\x2e\x8e\xeb\x5a\xf2\x66\xf0\x98\x20\x0f\x96\xc3\x56\x25\x45\x2b\x7f\x56\x72\xb7\x86\x9e\x6e\x38\x34\xd9\x40\xd2\x41\x94\x5e\x2f\x60\x67\xf1\xc9\xf4\x79\xed\xbf\xc1\xe2\xc6\xb2\xda\x07\xbd\xa6\xeb\x76\xae\x3e\xe1\xc2\xf2\xc5\x90\x9e\x49\x06\x33\x44\x5a\x8b\xcd\x04\x6c\x16\x56\x05\xe6\x83\xf9\x18\x11\x22\xff\x91\x82\x72\x16\xe9\x38\x32\x99\xc0\x24\x05\x79\xa5\xc6\xef\x2f\x04\x6a\xbc\x62\x3c\x8e\xcd\x24\xe7\xba\xb3\x08\x5b\x94\xaf\x08\x29\xfa\xb7\x34\xb0\xee\x1e\xed\x31\xc7\x63\xe2\xc6\x96\xbf\xa5\xd8\xbb\x4c\x1c\x5b\x34\x2f\x51\x62\xb8\x10\x28\x76\xa0\x3a\x1c\x72\xfe\x50\x27\x4a\x0a\x3b\xc8\x8c\x6b\x01\x80\x4d\x04\x24\x6c\x7c\xbc\xd1\x34\x97\xd5\xcb\x44\x78\xb8\x12\x25\x0b\xaf\x95\xaa\xac\x9b\xc4\xb2\xf2\x14\xbc\x12\x8a\x65\x7c\x3c\xd5\xca\x0d\x66\x1f\xdb\x4e\x19\x1a\xf1\xc5\x75\x2e\x56\x22\x58\xf8\x4c\x3d\x42\x99\x76\xd8\xe5\x0b\xc9\x98\x55\x12\xa9\x61\x3f\xab\xc7\x18\x4f\xd8\xcf\x19\xb0\x2f\x33\x29\x4a\xad\x4d\xfd\xf2\xfc\xa1\x4e\x19\x66\x46\x26\x8e\xde\x90\x85\x27\xb3\x32\x15\xe1\x95\xed\xcf\xd4\xa9\xc7\x45\x45\x96\xb6\xfc\x55\x9d\xd6\x32\x83\xa7\x6b\xcd\x98\xd2\x88\x8d\x27\x71\xdc\x33\xe1\x4a\x4b\x55\x69\xd0\x13\x97\x2e\x61\x9d\x8d\xfc\x95\xce\x64\xbc\x26\x24\x61\xac\x12\x13\x78\x50\xef\x9f\xeb\x38\xc7\xc6\xe9\xda\x1e\x5f\xcf\x63\x2a\x7c\xb8\xfa\x9d\x1b\x8a\x52\x72\x67\xd7\x93\xd5\x31\xfa\x46\xf4\x27\xa8\x9a\x2e\xc4\x2a\xbe\x90\xff\xc1\xd4\xcf\x4e\xed\xd8\xd0\x54\x38\xe3\xb6\x2f\xa4\x5d\x54\xf3\x4f\xbf\x8f\xe7\x81\xdc\xd3\x23\xb4\xc2\x74\x34\xb2\x49\xb1\xcb\x7b\xbd\xc7\xba\x6a\xa3\xa3\x4a\x82\x67\xbf\xbb\xeb\x58\x07\x8e\x3f\xbd\xa1\x3a\x34\xc7\x15\x6c\x31\x8c\xb2\x70\x12\x15\x33\x15\xc1\x76\x8f\x9f\xaa\x56\x0b\x2a\x42\xee\x7e\x66\x6a\x9c\x8e\x27\x98\x4b\xdb\x4d\x0f\x89\x31\x4a\x53\xcf\xfd\xc1\xec\x36\x48\x26\xbe\x03\xdb\xe0\x14\x83\x1c\x9c\x92\x1b\x6b\x4c\x78\xae\xf6\xc8\xc8\x64\x61\x9a\xb7\x5a\x73\x73\xae\xf2\xa6\x12\x50\x0d\x85\xe8\x4d\xb2\x04\xf3\x4b\x9e\x88\xef\x63\xfc\x9e\x44\xa2\x0d\xb2\xd7\x43\x6b\x56\xd7\xdb\xe4\x6d\x1c\xc1\x83\x63\xe7\xfd\x86\x6e\x6e\x9d\x77\x19\x59\x3f\x4b\x89\x5e\xb3\xad\x24\x66\x77\x76\x3d\xc2\x07\x43\x25\x88\x40\x2f\xa9\x89\x84\x5e\x66\xd7\xa2\x64\x30\xa3\x20\x37\x12\x61\xf2\x59\xd7\x17\xea\xaa\x8e\x53\x01\xe2\x43\x82\x6e\xd0\x40\x0b\x92\x6d\x26\xe9\x41\x51\x0a\x2d\x09\x3c\x9d\x73\x6a\x4d\xed\xd8\xf0\xab\x3d\x8b\x56\x6d\xb6\xab\x5c\xc7\x08\xd9\xce\xe8\x14\x6e\x77\x17\x57\xc4\x33\x05\x53\x9f\xd4\x7e\x57\x39\x86\x9b\x35\xea\x8b\x43\x2f\x75\x8a\x49\x06\x5d\x73\xae\xad\x54\x54\x46\xfc\x9a\x89\x46\xe3\xcc\xe6\x39\x15\xff\x9d\x32\x3e\x16\x83\x50\xea\xb9\x89\x87\x68\x30\xb1\x93\xac\xdd\xfa\xf2\xcb\x3c\xa4\x79\x5b\x99\xc8\x8f\x75\x9e\x7a\x59\x89\x41\x9a\x30\xb3\xcc\x66\x27\x05\x5d\x7a\xc3\x7c\x12\x7c\x51\x30\x8f\xab\x36\x0b\xd3\x38\x36\x85\xcd\xc8\x9a\xb1\xa5\x17\x5a\x83\xf2\x11\x49\x8c\x5e\x91\x85\xb0\x6b\xba\x5d\xbb\xa9\x3a\xb4\x9f\x29\xf2\x02\xdf\x20\x5c\xc9\xa2\x7c\x1c\x39\xf8\x3a\xc2\x5c\x56\xdf\xe3\x13\x35\xa2\xdb\xcb\xac\xe1\xd2\x82\xd3\xe2\xf5\xba\xbc\x4d\x22\xa2\x84\x6c\xc8\x87\x3c\x10\xc7\x52\x6a\x53\x45\x8a\xf9\x5d\x15\x78\x5c\x6b\xb4\xb0\x59\x5a\x06\x88\x92\x86\x49\x73\x42\xf7\x23\xf4\x13\x30\x59\xc2\xe2\x1a\x28\x9f\xbc\x09\x77\xcc\x27\x81\x2f\x92\x62\x32\x89\x8f\x37\x1a\xd0\x1b\x6b\x43\x13\xae\xac\xb7\x1e\x36\x09\x2a\xad\x8c\xe1\x64\x64\x12\xc2\x06\xc2\x78\xb7\x36\x7c\x79\x72\x2f\x01\x5a\x1d\x66\x55\x2c\xfc\x7f\xfe\xef\x77\xf5\xb4\x91\x1a\x5a\x9e\x2a\xb3\x31\x36\x45\x11\xe5\x1c\x18\x37\xa9\xaf\x3a\x19\x97\x2c\xb3\x79\x81\xcd\xeb\x6a\x56\x65\x36\x0c\x03\x80\x0b\x42\xf1\xf3\xa9\xae\x57\x7a\xdf\x54\xec\x61\x6b\x65\x10\x52\xb4\x94\xd2\xe7\x39\xa5\xf0\x71\x4e\x95\x09\xf3\x34\x8a\x5b\x6a\xc0\xe6\x98\x1e\xbd\x39\xa6\x90\x8d\xc3\x74\x64\x97\x25\xc8\x44\x64\x0d\xe4\xa0\xf4\x97\xe9\x73\x48\x67\xef\xb8\x18\xbf\x5c\xf8\x8f\x97\xee\x9f\xa2\x86\xdb\xff\x49\x57\xe1\x69\x91\x0c\x22\x58\xde\xb5\xe1\xe0\x49\xbf\xf8\x3c\xdd\x20\xbe\xf6\xaf\x6e\xa8\xc2\xdf\x66\x95\x5d\x94\xdc\x09\xf2\xca\xeb\x14\x8b\x51\x45\xfb\xc9\x0e\x39\x4e\x04\x72\x10\xd8\xc3\xa2\x60\x30\xb1\xa4\xe8\x4a\x3f\x53\x38\x91\xd5\x9b\xb9\xa7\xde\xcc\x3d\x95\x25\xae\xed\x8b\xf6\x61\xbf\x0b\x63\x2f\x16\xa7\x70\xf6\x7a\x11\x86\xb0\xbf\x5b\x8f\xb4\x2a\xe0\xff\x67\xd3\x4a\xa6\x4c\x31\x10\xec\xe3\x4d\x55\x7e\x85\x60\x22\xff\xf7\xc0\xeb\x54\x0f\x6d\xf6\xa4\x07\xa5\xee\x05\xdb\x07\x02\xe2\x63\x35\x8c\xf3\x41\x6e\xbc\xde\x51\x61\xdc\xee\xae\xe2\xed\xe5\xb2\xb6\xe4\x5f\x3e\x98\x68\x6d\x78\x2d\x72\x28\x81\x0a\x7d\x43\xdb\x8b\x4a\xde\xa1\xc8\x0e\xce\xfa\x8f\xab\x73\xbf\x6a\x73\xbf\x49\xc9\x30\x7f\x6d\x8d\xcc\xe2\x85\x4e\xda\x7b\x4d\x49\xaf\x09\xb6\x46\x03\x6d\x6a\x31\xd7\xa1\x97\x3a\xa3\xa8\x5f\xa4\x6b\x49\xdb\xaf\x21\x14\x20\x51\x3f\xdd\xa1\xac\x41\x3d\xb2\xfc\xf2\xcb\x65\x50\x94\xa5\xfd\x09\x63\x53\x94\x70\x8d\xf2\xe3\x67\x03\xbf\xa3\x6c\x31\x8c\xc2\x5c\xd5\x2e\x51\x08\xe6\xe3\x1a\x30\x75\x61\x61\x91\x52\xb3\x51\x94\x28\x63\xd7\xd8\xb2\x91\x6d\x9f\x8e\xc7\x69\x6e\x77\xfb\xa2\xd0\x3d\x7a\x1d\xaa\x0a\x38\x2f\xbc\x28\x58\x40\xd8\x14\x3f\xdd\xf5\x8e\x13\x90\x0d\x54\xb3\x6e\x35\x6a\x6f\xdb\xaf\x4c\x84\xd8\x4b\xf8\xd9\x35\x59\xbb\xf3\x87\xfd\x28\xb6\xa3\x91\x51\x18\x4c\xcc\x53\xf3\xb1\x0a\x13\x52\x9a\x22\x8e\x67\xe8\x06\xf5\x62\x67\x46\x88\xc0\xe3\x77\xaf\x22\xd8\x15\x08\xcd\xc3\xf8\x1c\xc2\x74\x3c\xb6\x59\xbb\xbc\x15\xe4\x09\x97\x14\x89\xf6\x0c\x06\xba\x60\x80\xee\x35\x55\xbf\x8b\xcc\xe4\x5e\x96\x45\xa6\xc9\x5a\x9e\x8b\xce\x19\xa7\xd1\xbe\xb5\x7d\x8a\x05\x8a\x2d\xb7\xc0\xf5\xb7\xbb\x90\x43\x2f\x75\x7a\x99\x49\xc2\x61\xdb\x93\x96\x7c\x8d\xbe\x97\xc7\xd1\x02\x1f\x64\x7c\xbf\x36\x2c\x28\x37\x47\x6a\xcd\xb6\x9f\xb7\x55\x7e\x71\x5f\x51\xb7\x30\x80\x58\x62\x2c\x1f\x9f\x9a\x64\x10\x33\xbf\x1e\x8c\xcd\xdb\x81\x47\x8d\xbe\x5d\x81\x53\x8e\x63\x43\x95\x0b\x66\xc8\xa5\x17\x27\x6c\xb9\x4d\x1e\xb9\xaa\x84\x21\x75\x4b\x9f\x2d\x6e\x4d\xab\x12\xa2\xb1\x89\x12\x09\x7f\x31\x27\x82\xc0\x84\x8f\x15\x9a\xb9\xc8\x26\xe1\x8a\xcc\xc1\x0b\x94\xb1\xbc\x05\x3e\x56\x8e\xc8\x8c\xd2\x15\xda\x5e\x80\x53\x32\xbd\x3e\x9f\x28\xee\x21\xb3\x6f\xb4\x6f\xc6\x63\x16\x4f\x2a\x60\xe5\x49\x6a\xb9\x3b\x0e\xc9\x45\x7f\xa2\xaa\xd9\xe3\x34\xcf\xa3\x5e\x6c\xf7\xf8\x49\x1c\xf0\x0c\x39\xc2\x4c\x1f\xd5\x73\xd3\x4e\x78\x3f\x7d\x7a\x45\xdc\x86\x5b\x0f\x60\xbb\xb1\xb8\x31\x6c\x02\x2c\xdc\xa6\xab\xb2\xe5\x29\xa5\xaf\x79\x21\x25\x49\x7c\xfe\xf1\xae\xea\xc6\xdc\xd0\xd4\x46\x3b\x6b\x99\xfe\xd2\x2c\xc1\x2e\x0b\xe2\x12\x53\x44\x9e\x42\xc0\x72\x6b\xaa\x34\x05\xa0\xe6\x8c\xd7\x76\x52\xf3\xe1\x9e\xd7\x72\xc4\x99\x59\x2e\x18\x97\xe2\xd6\xc8\x81\x03\x6e\x8d\xec\x75\xe5\xd7\xff\x66\x1f\xc5\x79\xc8\xfb\x38\x7a\x17\x49\x1c\x3d\x74\x77\x59\x35\x84\xd7\x32\x53\xee\x5f\x2c\x55\x84\x63\xa0\x6c\xe0\xe3\xa9\x9e\x96\x30\x83\x89\x0b\x56\xf1\x34\x4e\x6b\xdc\xeb\xe9\x86\x86\xcd\x2b\x64\xc4\x84\x05\xc8\x09\xcc\x9d\x09\xfc\x4e\x3e\xa3\x62\xdc\x81\x79\xc3\x16\x50\xb8\x94\x36\x87\x2a\x63\x1c\x6b\x42\x4b\xf4\x26\xeb\xb2\x66\x61\x4b\x3f\x0a\x54\xcb\xe0\xa3\x8a\xd4\xe8\xa8\x34\xda\x78\x94\x78\x03\xe0\x22\xe5\x63\x85\x05\x7a\xc3\x26\x51\x31\xe4\x5b\x45\x08\x7f\x37\x50\xe0\x97\xbb\xaa\xa6\x4e\xb5\xd9\x09\xa9\xe5\xba\xed\xce\x7f\xcc\x27\x0a\xe0\x54\x1a\xe0\x6c\x92\xe4\x5a\xc7\x1c\x53\x02\x58\x1f\xd0\x0e\x93\x52\x04\x7d\x89\x60\x56\x25\xe6\x2d\x1c\xb5\x1d\x1c\x3e\x4b\xd7\xf3\x49\xcd\x50\x13\xb4\xce\xf6\xad\x82\x50\xc3\xb4\x7e\x84\xaf\xe7\x93\xa6\x31\x4a\x20\xa3\x7d\x02\x04\x07\x7f\x44\x89\x88\x1f\x99\x0a\x19\x8d\x57\x82\x88\xd7\xdb\x7e\xec\x17\xc5\x39\x78\x03\x16\x4d\x42\xf2\xfa\x91\xe6\x7e\xb2\x49\x8e\x21\x0f\xa1\x6d\x2e\x7f\x01\x9e\x07\x41\x21\x8c\x15\x4f\x4d\x48\xd7\xd2\x7f\x41\x61\x7a\x69\xaa\xa4\x22\x4e\x2a\xa9\x88\x93\x98\x4d\x96\x4e\x68\x11\x15\x13\x16\xb3\x2f\xcd\x01\xae\x12\x34\x5a\xcc\xe4\xa7\x00\xaf\x77\x94\x8b\xfe\x9f\xc9\x32\x23\x2a\xdb\xd1\xad\x3f\xad\x83\xd4\x07\x4d\x33\x17\x1b\x89\xa4\xac\x07\xfd\x5e\xd8\xde\xb3\x5a\x5a\xec\x1c\x9e\x5d\x7c\xdc\x33\xef\xdf\xd2\x1c\x9f\x22\x45\x0c\xb3\x7a\x01\x95\x24\x3e\xd1\x72\x71\x10\xbb\xc0\xfa\xb9\xa1\x80\x4c\x1f\x4e\xbd\x1e\x0c\x48\x07\x45\x61\x80\xac\x2d\xec\xc4\x0f\xa7\x4a\x96\x18\x70\x4f\x58\xd0\xa3\xb5\xb6\x81\x77\xf9\x24\x59\x2e\xab\x09\xd9\x47\x0b\xae\x9e\x4f\x36\xbe\xe0\xe6\x2e\xc2\x15\x2f\x8d\x8b\x57\x7f\x4d\xaf\x83\x6b\xb5\x05\x4b\x90\xc1\xb4\x18\xda\x6c\x2d\xca\x2d\x15\xc3\x10\x59\x9c\x56\x49\xfe\x49\xf2\x61\xd8\xb8\xbf\xa1\x36\xee\x38\xcd\x0b\xdb\x7f\xb4\xe5\xf4\x1d\xee\x29\xc6\xe8\xd3\x78\x6a\xa8\xec\xbf\x8b\xaa\x24\x0a\x11\xd7\x34\x73\x18\x87\x6f\x28\x55\x9f\x9f\x6a\x69\x7e\xb4\x8d\xf8\x0b\x68\x65\xca\x47\x1a\x24\x0f\xd2\x49\x91\x4b\x5e\xe7\x06\xe8\x14\xc5\x4c\x5d\x0e\x7e\x11\x72\xf7\x69\x11\x85\x2d\x2f\xd9\x79\x5e\x67\x6e\xaa\xdd\xb6\x5c\x0c\x77\x79\x51\x0b\xac\x79\xf6\x91\x53\x35\x8a\xf9\x87\xf4\x71\x58\x91\xdd\x94\x6e\x01\x02\x71\xcf\x69\xa7\x4b\x98\xc0\x55\xdb\x26\x6a\x39\x29\x59\x14\xc3\x35\x43\x4b\xdc\x8f\x02\x5c\x84\x4b\x13\x25\x81\xed\x41\xde\xd2\x6c\x67\x39\x4a\x4c\x12\x56\x15\x84\x7e\xa2\x15\x84\x7e\x32\xd5\xe3\xd8\x49\x1e\x89\xb9\x9a\xf1\x63\xeb\xe7\x15\x0d\xe7\x79\x05\x26\xe6\x18\x8c\x4f\x82\xed\x44\x04\x73\x73\x9d\x15\xcb\x34\x35\x5a\x78\x46\xfa\xaa\xba\xda\x6b\x0a\x86\x75\x63\x5d\xbd\xa5\xd6\xd8\x5b\x4e\x0a\xb8\xb4\x21\xd9\x64\x64\x13\x16\x7c\x75\xad\x42\xd7\xf8\xfc\x5c\xb1\x08\x5e\x55\xc1\xd0\x6a\x14\x5a\xf2\xd0\xc8\xc7\x3e\x9e\x56\x38\x48\x94\xb6\x64\xad\x44\xfe\x1f\x77\x12\x62\xa0\x8a\x4d\xd2\xcf\xa9\xec\x25\x4d\x26\xec\x2b\x04\xd8\x37\x02\xc5\xa9\xf2\xb1\xf2\xaa\xf6\xf5\xd0\xe6\x3c\x09\x02\x4b\x74\x5b\x6b\x87\x9c\x27\x88\x0e\x8f\x44\x35\x55\xf0\xd6\x6c\x5e\xb4\x2a\x70\x7c\x4d\x5e\xdc\x30\xb7\x58\xa4\x93\x8c\x24\x82\x95\x16\x52\x4b\x51\x8b\x36\xf9\xa8\xcc\x0e\x26\xb1\x29\xd2\x8c\x2f\x54\xd4\x30\x54\x0b\xe2\x9f\x4d\xd5\x9a\xb9\x5c\x11\xd7\x9b\x24\x7d\x6a\xc9\xd0\xf3\xd8\xda\xa0\x4f\x6d\x6d\xa8\x87\x3f\x32\x51\xfc\x58\x79\x9f\x0e\xf3\x52\xae\x45\x87\x73\x70\xf2\x93\x08\x1c\x3d\x37\x85\x73\x37\x81\x4f\x93\x4e\x22\xa2\x03\x8c\xed\xfb\x8a\xc0\xe2\xb8\x92\x75\x47\x1f\x1a\xbe\xe3\x9a\x9a\xee\x5a\xc9\x90\xd1\x89\x90\x97\x9f\xd9\x6e\x34\x22\x79\x98\x59\x9b\x60\xa9\xc9\xe4\x8e\x7f\xac\xd5\xba\x62\x7d\x74\x90\x9c\x12\x7c\x9e\x6c\x3f\x84\x52\x37\xf1\x28\xf9\x44\x19\x95\x28\xcc\x1f\x2f\x2f\x1c\xcb\x01\xa4\xe8\x0e\x7e\xe2\xfb\x5d\x3c\x8c\x83\x0c\xf3\xb3\xa9\x02\x44\xec\xfb\x8f\xba\x3e\x9c\x79\x62\xc3\x65\xf9\x7f\xeb\x79\x1a\xdd\x44\x64\xf3\x18\xe9\x32\x2a\x73\xfb\x0a\xef\xb3\x3f\x42\x44\x4f\x89\xd9\xd3\xfb\xe0\x53\xa8\xc5\xf2\x9f\x7d\x51\x29\x1e\x84\xd1\x6a\x14\xef\xd6\x03\x6a\xda\x98\x04\xda\xcc\x00\x03\x02\x13\x89\x68\x8f\x8f\xf1\x43\x62\x06\xea\x7d\xa2\xce\xd8\x66\x51\x2a\x7c\x72\x82\xa1\xd6\x64\xbb\xf5\xcf\x2c\x76\x5e\x4b\x05\x31\xe9\xeb\x77\x8a\x7f\xc7\xeb\x83\x46\x2a\x89\xe3\xc2\x4d\xe0\x41\xb4\x27\x6a\xb9\xf2\xdc\x5c\x27\xcc\xa2\xf1\x38\x96\xaa\x9e\xc3\x3a\x3b\x0e\xf7\x77\xf0\x14\xd0\x6d\xb8\xdf\x88\x57\x2a\x32\xd3\x07\xce\x5c\xa8\x3b\x5b\x8e\xcc\x75\xa6\x5b\xa9\x60\x94\x4f\x5e\xd4\x3f\x1e\xf7\x2d\x8e\x55\xbb\x4b\xc1\xd4\xb1\x0a\xc8\xa6\xfc\xe3\x67\x37\x3c\xd8\xe2\xd3\xa9\xd7\x33\xe1\x97\x03\x71\xd7\xbf\xde\x6d\x20\x54\x2a\x32\x13\x82\xbc\x1a\x53\xd8\x68\x78\xf2\xb1\xa6\xe2\x4b\x92\x09\x0a\xf2\x6d\xbf\xc4\x1e\xa8\xcc\xfa\xfa\x54\xeb\xd2\x6f\xdf\x0e\x65\x8c\x46\xcc\x20\xab\x26\x9e\xb0\x0b\x83\xdb\xb8\x3d\x55\x44\x04\xb7\x55\x21\xa9\x47\x02\x32\x34\x09\x0c\xa7\x79\x92\x56\x00\x1f\xab\x1a\x6e\x2f\x23\xff\xd9\x72\x6c\x7c\xe8\xa3\xf2\x71\xcd\x2b\x51\x85\x3b\x6d\xb7\x94\x8a\xac\x1f\x9e\x3a\x47\x62\xbe\xd2\xc3\x16\x04\xc0\x64\xb4\x86\x5a\x26\xd2\x67\xb0\x8f\xf3\xb1\xaa\x79\x8e\x4d\x9e\xb7\xfd\xc3\xff\x1e\x99\x30\xa0\x2c\xdf\xa7\x6b\x87\xd5\x3a\xe6\x38\x0d\xa2\xa4\x1f\xad\x46\xfd\x89\x89\x2b\xd4\x89\xcc\xa2\x23\xb3\xa4\xde\x40\x64\x69\xb6\xdb\xbf\x2a\x20\x6c\x10\x1d\x81\xc9\x0e\xbb\xf5\xd9\xae\xa6\xf6\x56\x93\xa8\x8c\x22\x94\xfe\xde\xf6\x07\x53\x2e\xd2\x3c\xa5\xa2\x8d\xac\x1e\x3f\xf0\xbd\x83\xac\x06\x9c\xd6\x9e\xae\x84\x98\xbd\xb4\x6f\x07\x26\x6f\xfb\x39\x27\xa6\xa1\x76\x4a\x4c\x1e\x82\x73\x2f\xf8\xd2\x43\x82\xda\x49\xe2\x2c\x25\x97\x97\xdd\xe8\xc6\x49\x4d\xa8\x79\xb2\x89\xd7\xfe\x35\x5b\x14\xeb\x08\x9e\x84\x28\xae\x7c\x14\xc2\x2c\xd7\x60\xd6\x87\x66\xd5\x0a\xd8\x4e\xf8\x53\x7d\xeb\xe2\xdd\x26\xb4\xd4\x72\x34\x18\x16\xc2\x42\xe9\xa8\xfe\x3c\xed\x5f\x43\xf6\xbd\x80\x68\x2a\x2f\x24\xfb\xe6\xe0\x59\x95\x8b\x4e\x6a\x71\x7f\x8e\x03\x6d\x7f\x77\x19\x26\x8a\xb7\xf7\x91\xc9\x79\xd5\xbb\xbb\xa6\x52\xf8\xef\x05\x8a\x1f\x68\x13\x51\x36\x9a\xb6\xef\x4c\x1b\x60\x7a\x73\xf3\xa0\x97\x73\x43\x13\xbf\xe4\x9b\xc8\x8a\xdc\x1a\x45\x5b\x07\x67\xf0\xf8\xc9\x7b\x8a\x97\x89\x85\x1f\x63\x91\xbf\x14\x29\x01\x0f\xaf\xba\x58\x19\x54\x31\xfd\x7c\x2f\xfd\x86\x48\x39\x96\xbf\x01\x8f\x8d\x7c\x09\xeb\x7a\x27\x14\xa5\xe1\x44\x7e\xac\xbe\x8d\x79\xdb\xf8\xd3\x44\xeb\x22\x92\xc2\xf4\x62\x10\xa0\xb2\x50\x2e\x7f\x6f\xe0\x8b\x4d\x77\x01\x0e\x10\x1c\x5d\x53\xbb\xd4\xc4\x28\xad\x31\x5f\x8b\x12\x81\xf6\x9b\x76\x64\xa2\xa4\xb0\x09\xa6\xaa\x5c\x98\x71\x5e\xe1\x23\xcf\x37\x4d\x17\x7c\x65\x92\x16\x19\xa7\x6d\x95\x66\x29\x9f\x34\x05\xef\x51\x92\xa4\x8e\xf0\x9a\x39\x6c\x55\xdb\xf0\x9e\x62\x54\xec\x09\x37\x96\x60\x14\xe8\x5e\xf9\xa4\xd6\x5e\x3c\x70\x80\x24\x2e\xa3\x44\x16\xa7\x4c\xbf\x95\x3f\xc4\xc7\xaa\x7a\xb3\x6c\xf3\x22\x5a\x35\xf1\x8c\x32\x82\xc2\xdc\xc7\x67\xb0\xe2\x78\xb4\xbf\x1d\xa8\x24\xee\xb7\x6b\x0f\x7a\x41\xc1\x27\x85\x9a\xd5\x5b\xf6\x0f\x34\xe7\x8a\x42\x52\xdb\x3c\xb7\x49\x41\xe5\x17\x17\x54\xdc\x52\x41\xc5\x2d\x8d\xa3\x88\x4d\x3e\x64\x2f\xc3\x73\xb0\xd5\xa1\x58\xef\xd7\x46\x93\x24\x0a\xa3\x31\x59\xe0\xf2\xa2\x81\x11\x38\x8d\xbd\xc0\x27\xd3\x4e\x3d\x20\xb0\xd9\x7a\x31\xcc\xd2\x71\x1a\xd9\x22\x4a\x74\x93\x1a\x13\x5d\x42\x23\x59\xb7\x58\x8b\x9d\x9e\xc9\xb9\x17\xce\x7d\x61\xba\x0d\xe9\x11\x3f\xa1\xb1\x8e\x19\xe1\xe4\x04\xcf\x52\x3e\x25\x3e\x56\xe2\x42\x9f\xe0\xde\xa4\xb7\xe3\xd2\xff\x2c\x0a\x23\x0b\xb2\x44\xd1\xf5\x21\xeb\x80\x30\xe7\x76\xa0\x74\x70\x4f\x6a\x72\x4d\x13\xaf\x10\x69\x10\x40\x49\x77\x35\x12\x0d\x0a\x5b\x6e\xdc\xdb\x09\xf4\x9e\xa7\xd2\x07\x72\xab\xff\x41\x2f\xeb\x93\x4d\x64\xb8\x96\x87\xee\x14\x7e\xfe\x5d\x85\x9f\x7f\xf7\x2f\xeb\x09\xd0\x58\x3c\x39\x6f\xae\x51\x05\xfe\x52\x79\x72\x18\xce\x82\x98\x81\x1d\xcb\x6c\x12\x49\x76\xf3\x22\x3f\xc1\x93\x4a\xf3\x1b\xa1\xbc\xe4\x0b\x0d\x90\x3e\x26\x94\x41\x76\xe4\x88\xd0\x1c\xb7\xc4\x6f\x6b\x6e\x89\x2b\xae\x6d\x92\x47\x83\x04\x58\x1e\x2d\x5d\x0f\xb3\x06\xbe\x4c\xc7\x97\xe4\xa2\xf3\xf3\xba\x68\x6a\x0a\xd6\xcd\xf7\x54\x29\x97\x2b\xc2\x49\x5a\xf4\x1d\xcd\x59\x54\x42\x59\x99\x8b\x4c\xa4\xa8\x74\x79\x4e\x58\x93\x65\x26\x19\x90\x04\xdd\x8c\x52\xd6\x7c\x8f\xee\xc8\x85\x0a\x9e\x15\x73\x4b\x11\x54\x6f\x4e\x9f\xaf\x3a\x95\x97\x97\x66\x3b\x87\x67\xe7\xa9\x56\x24\x3d\xcd\xd6\x2f\xff\xbc\xef\x77\x28\x9d\xa3\x3a\x1a\x74\xa1\x63\x7a\xe9\xa4\xa0\x55\xce\x83\xd5\x4a\xae\xea\x92\xaa\xfb\x7d\x67\xea\xeb\x8a\x17\x6b\x36\x65\xf1\xa5\x83\x9d\x3e\x67\x77\x9a\xca\xba\x3e\x8b\x6c\x46\x69\x32\x78\xdc\xcf\x48\xcd\x74\xab\xbc\x4e\x7e\xda\xfd\x37\x09\x6d\x22\x4c\xc1\xe4\x93\xa4\xae\x48\xeb\x08\x6b\x67\x53\x95\x78\xbe\x0d\x0f\x03\xa4\xc4\xfd\xc0\x83\xa4\x6f\x69\xc6\x87\xf7\xa7\x15\x33\xea\x95\x6a\xff\x79\x83\x2c\x5a\xa7\x1f\xe5\x23\xb3\x2e\x4a\x4b\x42\x0b\x44\x97\x29\x84\x41\x4f\x2a\x3d\x5e\x10\xde\xba\x3a\xf6\xc9\x40\x8d\x5f\x9c\x54\x69\xfb\x9a\x8d\xf2\xe5\xc8\xc6\x98\xa0\xc0\xfe\x39\xa6\xf6\xd2\x31\xad\x42\xb4\x93\x11\x48\x70\xc3\x3f\xd2\x51\x9d\x6e\x79\xd9\x38\xfd\xca\xc4\x26\x45\xbc\x0e\xe2\x3d\xac\xd1\x23\x2a\x1f\x39\x12\x78\x83\xbe\x1a\x65\xc5\x44\x78\x8c\x85\x8e\x6a\x33\x50\x33\x81\x9b\x2a\xb6\x1e\xa4\x69\xff\x71\x5c\x85\x70\xb1\xb5\xdc\x58\xf1\x93\xc0\x47\xba\x01\xb4\xf2\xfb\x90\x8a\xdd\x9c\x2a\x8d\xc5\xad\x40\xb5\x0c\x3f\xc2\x4b\x14\x0a\x98\xf2\x5d\xc1\x4a\xfe\x1e\xcd\xc4\x48\x02\xe9\x0b\xdb\x5b\x53\x9f\x37\xff\x98\x1a\x61\x82\x20\xf6\x01\xfa\xbe\xc5\x7d\x8a\xd0\x72\x47\x57\x11\x5a\xee\xd8\x10\xb3\xb0\xbe\xef\xb5\x7d\x2d\x94\x97\x45\x06\xd8\xe7\xda\xbf\x77\xac\xa1\x36\x89\x98\x03\x03\x81\x3e\x51\xbd\x3a\x55\x8c\x2f\x57\x9b\x22\x5d\x93\x17\x93\x02\x66\x16\x6f\xeb\xb4\x2a\x45\x9f\x56\xf0\xac\x6c\x22\x1a\x19\xc8\x21\x41\x15\xc1\xc7\x1b\xb5\x2a\xd3\x7c\x67\x14\xf5\x49\xf6\x99\x9e\x6e\x65\xc5\xc8\x52\x92\x64\xdb\x1a\x6a\xc7\xfe\x25\x2c\xa1\x8a\x6c\x32\x5d\x59\x4f\x41\x51\x04\x6c\x59\xab\xab\x69\x70\x8f\x4e\x95\x7c\x12\x48\x4c\x10\x33\x5c\x21\x43\x27\xad\xe0\x06\x5a\x8a\x2c\xca\x21\x10\x20\xd1\xad\x9e\x47\xbb\xa8\x39\xe4\x34\x63\x7c\xbb\x2b\x37\xf1\x5a\x9a\x0f\x27\xa6\xed\x07\x0d\x2e\x2a\x80\x19\xa7\x55\x4c\xac\xa1\xd0\xf8\x94\xf0\xae\x65\x51\x51\x40\x0f\x59\x40\x38\x67\xb0\xf4\x50\xbd\xa4\x78\x67\xeb\x9a\x92\xbc\x5e\x31\xeb\xb9\xcd\xf2\x9e\xcd\xc0\xbd\x0e\x14\xf5\x79\xa5\x0c\x79\xbe\x96\x6f\xcc\xcd\x75\xe2\xc8\xf4\xa2\x38\x22\x60\x3c\xdd\x90\x24\xc0\x4a\xbd\xf6\x5c\x45\xb9\xff\x45\x5a\xab\x00\x60\x9d\xd1\x68\xac\x33\xb5\x80\x71\xff\x42\x67\x6c\x4d\x68\x8b\x68\x64\x95\x6a\xf7\x1d\x05\x38\xb8\x53\x5b\xb8\x0b\x0b\x07\x3b\x79\x3a\xa2\x0f\xe5\x6d\x8d\xe5\x99\x6a\x1d\x32\xa5\x7e\xbc\x55\x3e\x3d\x87\xa3\x02\x6d\x54\x31\xc9\xec\xc3\xf9\xd1\x2a\x8a\x27\x79\x3e\xc9\x58\xb2\x03\x93\x8e\xa0\x42\xe5\x63\x65\x7b\x7a\x96\x58\x47\xb8\x1f\x29\xb0\xfc\x72\x7f\x0b\x5e\xff\x49\xe5\x2d\xd3\x49\xd2\x7f\xc2\xcb\xa7\x5e\x9c\x2a\x0a\xf9\x13\x64\xfe\x51\xf7\x45\x48\x01\xab\xf0\x2d\xd5\xdd\xfc\x07\x9a\xe1\xef\x5a\x65\x92\x9d\x61\x90\xb8\xc2\x47\xbb\x14\x92\xa1\x22\xb9\x13\xe4\x13\xf8\x86\x2b\x81\x6e\xe4\xab\x28\xe4\xef\x4f\x55\x5b\xee\xaa\xaa\x25\xa6\xa1\x51\x69\x74\x55\xef\xf9\x79\x35\x9e\xb8\x5a\x86\xf6\x03\x53\x58\x54\x2e\x90\xec\xbc\x4d\xe1\x9c\xb4\x88\xc9\xb6\xb2\xf6\x8c\x23\x02\x07\xa9\x57\x34\x76\x9d\xcd\xad\x2b\xa5\xad\xdc\xaa\xcb\xae\x90\x90\x01\x31\xd6\xa0\x92\x8a\x24\x0f\xd2\x9e\x22\x2b\xe0\xb7\xf2\xd9\x2a\xac\xb3\x18\x3e\xde\x5a\x5a\xdc\xba\x56\xbe\xc7\x2d\xa4\xbd\xb0\xd2\xbb\x81\x77\x43\x64\x71\x27\x50\xa3\xc5\xdc\x28\x72\xcd\xe0\xd2\x46\xf2\x9f\x29\xd4\x18\xcb\xd3\x4a\x55\xbc\x35\x37\xa7\x09\x8a\x84\x2b\x8e\xd1\xd1\xc2\xf2\xa6\x88\xd5\xc7\x69\x92\xa7\x24\x6f\xac\x8a\x9c\x47\x55\x3e\x72\x54\x4d\x79\x64\xb6\x5c\x9c\x96\xb0\xff\x33\xbe\xd2\x77\x41\x09\xf8\x7d\x4c\xd7\xc6\xc7\xd8\xb2\xfc\x47\xb5\x64\x92\x26\x1a\xec\x30\x4a\xfa\xf4\xca\x50\x99\x9e\x01\xbe\x0d\x31\x2c\x20\xc7\x58\x88\x77\x15\xe2\x20\xca\xd3\xd8\xc8\xaa\x07\xca\xe0\xae\x42\x1c\xdc\x75\xc5\x46\xda\x4b\x7b\xe9\x2a\xc4\x59\x28\x99\xf4\x6f\xd0\x6d\xe2\xeb\x3f\x99\x2a\x62\x74\x50\x9d\xb1\x58\xa3\xe2\xb9\xdd\xbb\xa1\x58\xb9\x2e\xeb\x2a\xd4\x23\x6c\xe0\x5d\x2c\xb5\xc0\x37\xf4\x3e\x10\x9b\x08\x8a\x3f\x6d\x2a\xc9\x0e\x4c\x31\xa4\x59\xd4\xf2\x77\x10\x87\x9f\xd6\xdd\xc3\xd3\x1a\x89\x4e\xd3\x9d\x19\xb7\xfe\x1d\x80\x48\x55\x8a\x95\xaa\x18\x8f\xcb\xc8\x89\xe4\x53\xcb\x99\x49\x56\xe2\xf5\xdd\x9e\xd5\x0c\x72\x20\x4e\x25\xf6\xc0\x01\x19\x4e\xa7\xed\x23\xad\x12\x45\xdf\x7a\x5c\x27\x28\x47\x9d\x8b\x1c\xa7\x85\x9b\x4a\x92\x0e\x52\xcb\x49\xc2\x72\x5f\x5a\x46\x56\x9b\x34\xae\x88\x3e\x25\x53\x6c\x21\xf7\xa7\x0a\x3f\x7f\xbf\x66\x98\x0f\x1c\xe8\x98\x9c\x10\x37\x8e\xa7\xca\x91\xbf\x7a\x2f\x50\xd5\x47\xb0\x51\x85\xf2\xfd\x8c\x52\x60\x54\xaa\x21\x49\x96\xc6\xf1\x48\x4a\x16\x28\x6e\x03\x88\xcf\xc7\x1b\x9a\xcf\x69\x34\x4a\xfb\x51\x01\x6d\x02\x14\x80\x39\xa6\x81\xa5\x83\x8d\xa8\xa8\x82\xf2\x5f\xe1\x91\xa0\x32\xe9\x45\xd3\xc7\x26\xcb\xcb\x0c\x08\x4b\x0a\x76\xe6\xa2\x96\xbb\xbb\xe8\x1e\x79\x3f\x4d\x9d\x04\x27\x77\xb2\x15\xd9\x1c\x03\x82\x10\xed\x9f\xa8\x8d\xed\x72\x71\x0f\x8c\x5d\xd2\x48\x40\x6c\x7f\x49\x71\x4c\x5d\x52\x35\xea\x91\x59\x59\x33\x43\x72\xe7\x02\x24\xa2\xde\xb6\x20\x89\x1a\x68\x3e\xd7\x40\x5b\x9b\xd8\x3c\x6f\xfb\xf6\xf2\x15\x35\x2f\xc3\x65\x2f\x51\x1b\x6a\x18\x53\x0d\x27\x3d\x99\x1c\x44\x79\x81\x41\x43\x7c\xa2\x54\x02\x47\xe9\xaa\x7d\x9a\xbe\x0e\x45\xf1\x47\xba\x6a\xc4\xb2\x85\x1c\x49\xda\x66\x74\xe5\x30\x19\x67\x90\xf1\xb8\x82\x9e\x13\xc8\xba\xa5\xc4\xc9\x77\x60\x5c\x47\x3a\x6d\x2d\xff\x69\x3d\x32\x76\x7c\xaa\x74\xff\x8f\x6b\xbe\x3a\xb0\xc2\xb0\x42\x39\x01\x98\xb1\x19\x9e\xd8\x50\x63\xba\x98\x12\x96\x32\xa8\x1f\xb9\x20\x1a\x05\x81\x38\xc5\x69\xb6\x3e\xe3\x3b\x80\x3f\xc1\xd3\xc0\x4f\xfe\x80\xbe\x80\x75\xd6\x55\x4b\x58\x67\xe4\xe9\xaa\xcd\x72\x6b\xf2\x3d\x74\x43\x78\x52\x0c\x32\x45\x9d\xff\xdb\x8a\xf5\x60\x67\x57\x11\xc2\xb0\x0a\xa4\x22\x8b\x7c\x51\xb8\xa4\x54\x1f\xe8\xb3\xa9\xa2\xb4\x3f\xa3\x82\x90\x71\x66\x7b\x29\x68\x62\x95\x92\x89\xa7\x11\xd9\x5e\x66\x7a\xf5\xd5\xce\x57\x26\x4e\x8e\x55\x78\xa1\x35\x49\xb4\x1a\x4b\xcb\x6c\x68\xa3\x55\xdb\x7f\x8c\x3a\xb7\x17\x71\x71\x98\x67\xfa\x28\xf0\x59\xd6\x16\x96\x1b\x6e\xe1\x43\xf8\x28\xd1\x48\xa2\x3b\x95\xa2\xbf\x87\x8d\x7c\x1b\xee\xd7\x31\x74\x97\x5e\xda\x4d\x97\x28\x10\x68\x13\x27\x59\x61\x63\x3b\xc8\xcc\x78\x58\x01\xb0\x9c\xd7\x6c\x39\xe7\xd5\x13\xca\x43\x93\x85\x76\x97\xa2\x09\x3b\xa1\x6a\xca\x60\xf2\xc4\x6e\xbb\x4d\xf7\x24\x53\x30\xbe\xdd\x75\xd1\xb1\x34\x2d\x4f\x92\x64\x9d\xf2\x05\x29\xd6\xd0\xcb\xab\xf0\xa6\x6b\x42\x6e\x54\x12\x6e\x56\xb0\xa5\xe9\x60\xfd\x0b\xe5\xef\x4b\x83\x98\x5e\xac\xa2\x21\x5a\x90\x15\x83\x40\x84\xfb\xcb\x95\xf9\xb5\xa9\x57\x3f\xff\x63\x44\x61\xa2\x8c\xeb\x99\xa4\x2f\x69\x45\x1b\xc6\xfc\xc2\x99\x7e\x1d\xef\x51\xc8\xea\xcb\xbb\x91\x41\xcd\xf2\x9a\xf1\xeb\x20\xa2\x96\x00\x78\xbb\x6f\x59\x7c\xe9\x60\x67\x60\xbc\xc2\x89\x80\xf7\x3d\xa0\xfb\x27\xb8\x2f\x16\xe3\x6f\x28\xf0\x2c\x76\x26\xd9\x40\x3e\x8f\x45\x7e\x5d\x91\x21\xf2\x73\xc1\x15\xbf\x5d\xeb\xef\xbc\xfa\x2a\xa9\x6b\xf3\x2c\x33\x1e\xf3\x2e\xbc\x0c\x5c\xff\xa5\xa9\xa6\x49\xf0\xb3\x31\x67\x95\xed\xcd\xc7\xd6\xac\xa0\x28\xe2\x98\xd6\xdc\x0d\x5c\xf6\xde\xc3\x4e\x06\x36\x2d\x78\xb5\xc9\x74\xa6\xc2\x89\x9c\xaf\x4f\xe9\x2c\x2d\x3a\x71\xeb\x96\x62\x87\xf9\x27\x74\x25\x7c\x5c\x91\x09\x88\xb2\xfe\x23\x8a\xda\x9a\x6a\x5d\x42\x73\x5d\x7e\x86\xc9\x4e\x37\x94\x6c\xef\xd1\xa9\xe2\x30\xfc\x74\xda\xfa\xd2\x97\x78\x56\xe1\xbb\x8a\xd0\x67\x77\x57\xab\x72\xae\xda\x8c\xda\x13\x6a\x44\xfd\x12\x1e\xb4\x8c\x96\x6f\x7f\xd0\x2f\xcf\x1f\xea\xd8\x55\x9b\x68\x36\x3f\x38\x59\x09\xda\x9a\x24\xdf\x22\x69\xd1\x73\x15\x98\x36\x96\x54\x84\xd5\x74\x9b\xb5\xb9\x55\x54\xd5\x4c\x20\x2b\x63\xfa\xdb\xfb\x90\xfb\x17\x3a\xa9\x29\x66\x7c\x6c\xbc\xab\xeb\x6f\x14\xa6\x1d\xd5\x01\xce\x59\x45\xb4\xc1\xb3\xde\xe7\x2b\x7b\x54\x3b\x9e\xa9\xc7\x9c\xd8\xba\x28\xca\xff\xa3\x67\x35\xf5\xce\x35\xed\x19\x51\xdc\x45\x0d\xff\x87\xca\x17\x7c\xaa\xe0\xf1\x7f\xbd\xeb\xa7\x0f\x23\x92\x16\x43\x79\x19\x71\xe3\x2e\xf2\x59\xb0\xb5\xcf\x76\xfd\xf0\xe5\x8e\x0d\x9f\xe8\xf7\xed\xaa\x8d\xd3\x71\x19\x2e\xed\xa1\x4b\xc4\xda\x05\xae\x40\x12\x76\x5a\xf9\xd8\xb8\x4c\x42\x8a\x3c\x72\x77\xd7\x33\x44\xcc\xd0\x8f\x21\x56\x66\x65\x2f\x84\x70\x3f\xc6\xda\x11\x3a\x22\x9f\x09\x84\x69\xb2\x1c\x47\x21\x4b\x38\x31\xea\x70\xea\x2d\xde\xe5\x40\xf9\x8a\x9f\xa8\x29\x86\x71\x6c\xd6\x6d\x96\x93\x22\xa4\xd3\x2b\xf7\xf3\x03\xc0\x3a\xca\xd8\x12\x5d\x09\x7e\x7c\x06\xfc\xbd\xc0\x6f\x70\x6e\x8b\x05\x70\xbb\x12\x29\xd4\x2d\xc8\x8b\xe5\x6f\x0a\x3e\x0e\x7e\x9b\x47\x76\xf8\x44\xbb\xc9\xc8\xd3\xb7\xc1\xd8\x30\x04\x84\x4f\x6a\xc0\x8c\xfd\x0b\x9d\xbc\xc8\xdc\xbb\x83\xb1\x45\x69\x11\x06\x1e\x2f\x43\x36\xc1\x73\xb5\x99\x9c\xdc\x62\xfc\x97\xd3\x71\xf8\x3b\x98\xe6\x07\x8a\xb7\xf1\xfa\x54\x29\x87\x7c\x0f\x26\x5f\x68\xad\x1e\x95\xe0\xb9\xaf\xf4\x1d\x39\x50\x13\x14\xbd\x27\xaa\x19\x64\x96\x88\x3a\xc9\xfd\xa2\x41\x75\x1e\x19\x2f\x9f\x68\x8e\xee\x21\x18\x7f\x68\x57\x03\x4e\x70\x25\xf0\x80\xd5\x2b\xaa\x7a\xd2\xb3\xc5\x30\xb6\x43\x3b\x42\x7b\x18\xc9\xcb\xed\x40\x0b\x28\x1d\xd7\x1c\xb8\x28\x80\xc1\xf0\x9e\xd0\xa0\xb4\x13\xae\xfd\xd1\xb3\x31\x23\x30\x91\x11\x03\x81\xc9\xc7\x4d\xe5\xca\xbc\x30\xe3\x18\x86\x02\x01\x1e\x9a\x3b\x7c\xac\x2e\x76\x39\xcd\x6c\x68\xf2\x02\xc0\x03\x91\xdb\x23\x0f\xe9\x20\xaa\xfb\x25\x3b\xb9\x1d\x78\x75\xcc\x62\x92\xc9\x7c\xbc\x0c\x8f\x29\xd1\x99\xcf\x54\x45\x94\xa4\x0f\x76\x7b\x60\xc8\x67\xf4\x32\x45\x3b\x40\x97\x9b\xc9\x3c\x00\x99\xf5\x17\xf4\xb3\x95\x32\xb4\x24\xb6\x1e\x40\x35\x9e\xc4\x6c\x0d\x85\xc8\xbc\xa5\x24\xcc\x74\x08\xb1\x1a\x99\x3d\xe5\x97\x8b\xe4\x2c\x3d\x65\xa1\x8a\xd4\xb3\x9e\x5c\x91\x62\x3e\xbf\xa9\xc7\xa5\x61\xf4\x45\xa9\xd0\x49\xa3\xe3\x52\xa0\x80\x4c\x4d\xdc\x58\x07\xcb\x03\xaf\x97\x28\x9b\xc9\x87\xaa\xe7\x14\x4f\x6e\xcf\x20\x0b\xc7\x63\xfc\xaa\x52\xaf\xfd\xaa\x43\xaf\xa6\xe3\x71\x9a\x48\x62\x88\x0e\xc9\x5d\x35\x44\x7b\xb7\xe6\x60\x5e\x5e\xa4\xa2\x7f\xdb\x57\xac\x31\x6b\x28\x3a\x56\x74\x37\x12\x91\xf8\x18\xff\x35\x33\x36\xc9\x17\x68\x43\xf0\x30\x15\x5e\x04\x92\xc5\x5d\x1b\x3e\x4b\xb8\xa9\xc8\x2b\x6e\x22\x61\x96\xf1\xab\xf2\x35\xca\x35\xd2\x53\x87\x27\xd9\xc1\xd5\x0a\xd4\x01\x59\x7b\x44\x18\xce\xe9\x39\x71\x96\x4e\x4f\x00\x25\xa4\xbb\x8a\xf2\x14\xb3\x82\x0c\x88\xa6\xee\x92\xa0\x5c\x1a\x6a\xd6\x89\x0d\x41\xe9\x03\xbc\x29\x02\x66\x3e\xae\x4c\x56\x44\x49\x18\xf5\xd9\xd9\x3b\xfd\x2e\x9f\x46\xd4\x7b\xd0\x65\x54\x35\x32\x19\x3a\xff\x52\xf0\xf4\xe3\x2b\xf5\x38\x70\xff\x42\xc7\xf4\x29\xf5\x69\x2b\x0e\xbe\x0f\xa7\xce\x95\x3e\x05\x0c\xad\x14\x11\xbc\xbb\x60\x5e\xeb\x19\xbf\x22\x2e\x6b\x2e\x20\x80\x5a\xb0\x47\x8e\x21\xbd\x10\x02\xb2\xa6\xa1\xbc\x6c\x42\x6d\x7d\xe5\xd3\xde\xd6\x3e\xe6\x6d\xd5\xe6\x5b\x33\x79\x61\xb1\x76\x65\x68\xcd\x8f\xc0\xd4\xf3\x25\x7c\xbb\x1b\x3b\x71\xc4\x61\xbe\x2f\xa3\x89\x0d\xc6\x59\x3a\x4a\x0b\xc4\x7c\x02\xe9\xbe\x18\x28\x5d\xa3\x8b\x8a\xbb\x6e\x64\xe3\x96\x6a\x35\xa1\xd3\xcd\xc7\x6a\xdd\xe6\x11\x4d\x6f\x38\x39\x94\x47\x36\x7c\x64\x7b\x81\xfa\x1b\x78\x7e\x3b\x54\x3e\x9b\x8f\x4d\xb6\x52\x61\xe1\x85\x27\x10\x4a\xde\xba\x96\xf0\x2b\x9d\xb5\x61\x9a\x7a\x0e\x4d\xb9\xdc\xf2\xb7\xe4\x3e\xfc\xdb\x0b\xd3\xd1\xd8\x16\x76\x17\xfd\x02\xd3\x17\xd3\x9f\x3a\x39\xa4\xf2\xd7\x1c\xaf\xf1\xd2\x2c\xff\x03\xa9\x91\x6d\x5d\x6c\xa0\xe1\x59\xa2\x56\x56\x5e\x64\xd6\x8c\x5a\x3e\xcc\xf9\x30\xf0\x5d\xb3\x0f\xb7\xe5\xdb\x43\xcb\x82\xea\x4d\x50\xcd\x87\x69\xb6\x8e\x6c\x16\x15\x29\x4a\x62\xe2\x17\xe9\x65\x8a\xc7\x6c\x2a\xaa\x0e\x6c\x12\x19\x1e\xf2\x6e\x6a\x22\xab\x61\x70\x9b\xec\xdb\x85\xa5\x82\x3e\xf7\xff\x02\x97\xe0\xc8\xa6\x5c\x4f\xe0\x1a\xd9\x12\xfe\xef\x53\x45\x9b\x5b\xc7\x19\xcc\xcd\x77\x7a\x59\x9a\x84\x29\x07\xd5\xcc\x9e\x03\x03\x24\x54\x3a\x4d\x92\xd2\x51\x1e\xa6\x19\x9e\x91\x20\xe6\xcb\x0b\x10\x24\xfd\xd3\x6e\xd4\x20\x59\xb5\x99\x53\xdb\x45\xc6\x79\x0b\xae\x83\x4f\xd4\xec\x5b\x3e\x24\x1e\xf1\xb6\x9f\x07\x43\x53\xd0\xc1\xfc\xca\xab\x82\x21\xd4\x10\xeb\x7e\x9a\xed\xa6\x7f\x82\x2d\x99\x06\x3e\x94\xda\xd5\xd5\x70\x04\x3f\x9a\xcd\x20\x64\x21\x2a\x51\x02\x3f\x9b\xea\x8b\x63\x93\x93\x33\x14\xaa\x67\xfa\x33\x94\xec\xff\x0a\xd2\x5e\x66\x90\x9a\x7a\xbe\x8b\xb3\x53\x0f\xb2\x40\xbf\x10\xcd\x83\x5d\x1b\x8a\xff\xfb\x53\x52\x44\x14\x02\xb3\x67\x95\xc6\x6e\xb2\x92\x4d\xc6\x45\xb8\xde\x52\x46\x0f\xac\x18\x7c\x3c\x7d\x4e\x31\xdf\x2e\xc7\xf6\xf5\x68\xd5\xa2\x9f\x2d\x00\x44\xe4\xba\x7c\xac\xc3\x68\x6b\x92\x49\x91\xd3\x8c\x85\x52\xef\x74\x5c\xa5\xe4\x9a\x9c\x92\xa7\xe2\x75\xab\x6b\xc7\x90\x54\x73\x56\x44\x1c\x54\x60\x75\x71\x93\x88\x4f\x54\xdf\x7f\x64\x92\xa1\x29\x0a\x23\x64\x11\x22\x3a\xa6\x34\xc2\xa1\x78\x07\x2c\x07\xcf\x35\x30\x9f\x8d\x1b\xc4\x18\x67\xe9\x6b\x36\x74\x63\x48\xba\xe2\x2f\x39\xd7\xf3\x91\x6a\x82\xe6\x36\xcc\x6c\x61\x18\xa0\x21\x2a\x33\x7e\xbe\xb5\x32\xbf\xdb\x9b\xc8\xa0\x20\xd0\xc4\x40\xa5\xf1\x71\x53\x04\x3f\x4e\xa3\x3c\x4d\xda\x3e\x78\x06\xc5\x05\xd6\x03\x0f\x8d\x0a\x70\x5c\xc7\x57\xfd\xf8\xb5\x19\x55\xa2\x63\x19\x00\x8d\xe7\x43\xce\x76\x46\x4f\x28\xd5\x05\x23\xe6\xe6\x3a\xe1\xd0\x24\x03\x80\xbb\x05\xc5\xa2\x90\x20\x48\xed\xe1\x7a\x2e\x28\xf6\xf5\x1f\xd5\x0c\xf4\xfe\x05\xd5\x9a\xa4\x65\x84\x15\x7e\x5a\x81\x4c\x4e\xd7\x82\x85\x43\x2f\x75\x46\x69\x66\x09\xe9\x25\xf3\x45\xa5\x65\xde\x62\xb5\x51\x60\xbc\xfe\xc8\xe1\xdf\xf3\x51\x9a\x16\x43\xc2\xf0\x33\x5f\x0d\xf6\x03\x36\xdd\x31\x6a\x86\x21\x78\xf9\x31\xfd\x2e\x32\xfa\x19\xe2\xee\x80\x1d\xfa\x88\x36\x99\x14\x13\x3c\x06\x69\x2d\xea\xdb\x84\xf3\x18\xc6\x64\x55\xf0\x59\x92\xea\x14\xfb\x20\x02\xcc\x82\xe0\x84\x81\x11\xf9\x66\xdf\x91\xfd\x49\x03\x7d\xdc\x62\xa7\x98\x8c\xd8\xb0\x33\x33\x43\xe0\xe9\x36\x2f\x79\xfd\xaa\x68\x14\x39\x53\xe7\x28\xd4\xcb\x7d\xcc\x0c\x3b\x81\x66\x2a\xcd\xd7\x04\xc3\xea\xc8\xdb\xdd\x0c\xf1\x65\x85\xb2\x4c\xa3\xf8\x89\xd6\x2f\x1e\xe4\xfa\xc3\x77\xe8\x97\xe1\xb5\xbe\x1e\xa8\x28\xf3\xa2\x2a\x1f\x48\xa4\x2e\xe0\x64\xba\x06\xbc\xff\x37\x15\x75\xf7\x4d\x8c\x48\xb3\x75\x0b\x2a\x70\x21\x8f\x1a\xbb\x80\x12\x2a\xff\x8a\xea\x36\xbe\xaa\xf1\x8d\x8f\x6c\x78\x7c\x63\x31\x04\xab\x75\x8c\x7a\xa6\xe4\x93\x74\x15\xae\xce\x53\xfe\x98\xe3\x2b\x55\x08\xaa\xca\x34\xfb\x68\x92\xd0\x78\x36\x2d\x15\x5c\x27\x86\x3a\x60\x46\xcf\x4f\x95\x78\xcc\xe9\x5a\x25\x6f\xfe\x50\x27\x4c\xc3\x14\x4e\x1f\x56\x98\x53\x5c\x3e\x51\xe1\x55\x32\x19\xd9\x2c\x9d\x00\xca\xe6\xd8\x11\x96\x66\x1d\xf6\xc2\x7b\xa9\x5e\x66\xcd\xca\x64\x8c\xbd\x22\xb4\x9e\x3e\xd0\xab\x53\x5f\x32\x8b\x5c\xc2\x12\xf8\x00\x6d\xdc\x55\xf2\xd9\x77\xdd\x68\x9e\x63\xf6\x9f\xf1\x6d\x8d\xf3\x6a\x5e\xf8\xa2\x12\x37\xff\xdf\x71\x2f\x48\x45\x1f\x28\xa4\x41\x4c\x08\x70\x1a\xc3\x24\xc4\x8f\xf0\xea\xd1\x40\xa9\x30\xee\xd5\x5b\xe6\x0b\x9d\xb1\x19\xfb\xe1\x4d\xe1\x13\xd3\xe4\x62\x0d\xc5\xd6\x4e\x2f\x4e\xd3\xfe\xba\x22\x97\xc7\xf5\x4a\xb5\xdc\x47\x8e\xd1\x68\x5c\x46\x9b\x07\x0e\x38\xa2\x0a\xfa\x6a\x99\x5f\xf1\x05\xf2\x76\x6d\x68\xa4\x4c\xd4\xd7\x4c\xb2\xd2\xaa\x45\x03\x22\xa7\xe4\xea\x62\xe9\xc8\xe6\x34\x4f\xe9\x34\xcc\x51\x22\x94\x8c\xbd\x01\xce\x1f\xc6\x36\x63\x4e\x39\xf8\xed\x13\x53\x5f\x51\xaa\xbb\xbf\x32\xa2\x95\xf6\xc5\x4c\x85\xae\x85\x20\x09\x28\x7f\xa1\x6e\x8c\xd1\x40\xe1\xb9\xf6\x81\x45\xaf\x97\x93\xe5\x14\x30\x8f\x77\x7e\x9c\xc2\x0b\x6c\xa2\xe1\x79\x8f\x4c\x36\x88\x92\x76\x6b\x69\xd1\x51\xec\xf9\x2a\xee\x15\xd5\x51\xfc\xb3\x0a\xac\x21\x8f\xb8\x7e\xc3\x25\xbb\xa9\x2e\xdf\x79\x06\x9b\x2f\xc5\xf1\x23\x14\x61\xe3\x79\xfd\x3b\x9d\xd8\x23\x8b\x82\xaf\x7a\x87\xca\xc8\x58\x94\x77\xa6\x1e\x88\x89\x81\x76\x94\x08\x18\x32\xc8\xd2\x0a\xb5\x27\x7f\xe0\x40\x67\x18\x0d\x86\xcc\xb6\x81\xfe\xc3\x13\x5d\x9f\xb9\xe2\x12\x51\x15\xda\xbd\xa1\x68\x93\xd3\x38\x1d\x24\xa6\xa5\xbb\x13\x53\xd5\x9d\xa8\x3d\xb4\xb9\xb9\x4e\xdf\x86\x02\x3b\x47\xf2\xfd\x09\x2d\x0a\x3e\x76\xf5\x78\x93\x24\x42\xc1\xe2\xb0\x25\xbe\xe4\x30\x30\xf9\x63\xbe\x22\xb3\x93\xc0\x02\x2c\xb7\x0d\x13\x2b\x64\x6f\x4a\xe3\x95\x2b\xe9\x7c\x42\x28\x55\xdd\x05\x92\xb9\x98\xd6\xfe\x85\xad\xb7\x02\x15\x10\x41\xb2\x45\x9c\xc8\x17\x14\xe6\xde\x64\x4c\x45\xeb\x56\x9d\xa3\x20\xbe\xa1\x1e\x03\x26\xc3\x51\x38\x7b\xb4\xab\x48\x6d\xf6\x50\x11\x97\x3b\x6a\x8a\xe6\x0e\xd4\x55\x58\x52\xbf\x11\xe8\x69\x7d\x3b\xca\x09\x41\x02\xdf\x80\x8a\x88\xd0\x5d\xa9\x0e\xf9\xe7\xe4\x81\x04\xe1\xfa\x84\x87\x84\xa7\x19\x44\xf4\xb0\x0f\x76\x92\x98\x35\x1f\x77\x7d\x0c\x96\x78\x25\x18\x54\xb3\x4e\x6b\x9e\x72\x5d\x8e\x4c\xc7\xb6\x4c\x13\x1e\xf1\xca\x7e\xd7\x15\x9a\xfd\x1e\xad\x4c\x74\xf3\x77\x53\x42\x8b\x30\xee\xc6\xd4\x87\x74\x37\x02\x05\x81\xfa\x04\x29\x25\x9f\xd4\x66\x22\xca\x2c\x6d\x79\x82\x2a\x1e\x2c\x23\x1c\x11\x03\x2b\xf8\x44\x51\x56\x15\xeb\x63\x28\xb3\x3c\xa6\xb8\x7b\x2f\xd3\xfb\xc4\x6f\xa0\x5b\x89\x32\xd2\xce\xae\x42\xfd\xdf\x42\x3c\xce\x7c\x41\xf4\x9c\x9d\x5c\xdc\x7e\xa9\xdd\xed\xdc\xa8\x88\x62\xd0\xc2\xe3\xc6\x14\xaa\x6d\x1c\x28\xa8\x29\xf9\xbe\x35\xc5\x30\xa7\x9a\xb1\x88\x76\xd0\x0f\xf1\xc9\x54\x51\x8c\x81\x9b\x16\x97\xc3\xdc\xb4\xc2\xa3\xee\x87\x6b\xf3\x22\xca\x94\x50\xd2\x09\x45\xa0\x7b\xa2\x62\x74\x26\xb6\xff\x85\xaa\xdb\x2f\x17\xae\x08\xea\xe1\x69\xba\x3e\xbe\x53\x79\xfd\xb7\xa0\xe4\x77\x8c\x12\x4e\x75\x81\x8b\x23\x28\x7c\xb6\xf0\xe4\x10\xee\x7e\x82\x27\xc7\xbd\x03\x15\xdb\xbd\x09\x71\x3e\xc7\x7c\xbd\x7f\xc1\x17\x12\xbc\x76\xf3\x3d\x8d\x28\xfa\x3f\x6b\x06\x64\x69\xb6\x33\x30\x23\x82\xab\xba\xfe\xc7\x19\x3c\x6c\x3e\x51\xd9\x4e\xba\x6a\x33\x22\x71\x69\xf9\xe0\xa7\xaa\x77\xda\x30\x41\xdd\xcb\x52\xd3\xb7\x59\x4b\xc5\x60\xcc\xfe\x25\x18\x8f\xaa\x30\xc3\x5f\x52\xde\xd9\x7e\xf1\x07\x0e\x74\xc6\xb1\x09\xa5\x06\xed\xd6\x7c\xf9\x4b\xb2\xe6\x1b\x84\xd9\x32\xbb\x9a\xc6\xab\x14\xcd\x3a\xbd\xbc\x37\xb1\xda\x84\xdf\xaf\x69\x00\x6d\x68\x92\x7e\x9e\x8e\x44\x8a\x11\xc5\xcd\x3f\x51\x3c\x53\x7f\xa2\xf8\x39\xc2\x32\x87\x5c\x8e\x42\x61\x28\x9f\xe7\xd7\x71\x23\x50\x58\xf3\x1b\x78\xb5\x1c\x0b\xd1\x1b\xc4\x0a\xff\x1c\xf1\x27\x76\xf4\x03\x26\xcf\xf8\x4b\xf8\x19\xb0\x89\x29\x65\x43\xc2\xb4\x53\xb1\x73\xdd\xd0\xbd\x0f\x4f\xbe\x12\x66\x26\xb1\x6d\x85\x0f\x42\x43\x01\x96\x94\x69\x17\x50\x8d\x69\x77\x55\x00\x6c\xc3\x61\x12\x7d\x65\x82\x67\xae\x8c\x4e\x79\x8b\x62\x8d\x6a\xf0\xb2\xf9\x8e\x9d\x64\x69\x99\xa5\xd3\xca\x11\x40\x94\x46\x47\x35\x44\x6d\x98\xb9\xa9\x8a\xaf\x61\xe8\x43\x1c\xc9\xd3\xba\x02\x90\x1b\x62\x87\x2a\x23\x7a\x26\x80\xd3\xd8\xd6\x37\x9b\xa6\x01\xcc\x78\x9c\xa5\xab\x92\x1c\xa2\x0c\x01\xe6\x10\x3e\xae\xd0\x43\xf7\x6c\xab\x7c\x45\x58\x8d\x47\x14\x2f\xd9\x91\x5a\xe6\x79\xe0\x40\xa7\x6f\x97\x6d\xe2\x48\x40\x9d\xa0\xd9\x82\x67\xdf\x74\x83\x2d\x69\x6c\x67\x4a\xcf\x21\xcb\x88\x10\x41\xa2\x39\xe3\x4d\x25\x98\xd6\xd1\xc6\xfe\x37\x4d\xd1\x5e\xe1\xc6\x15\xd8\x9f\xe9\x39\x89\x7b\x0e\xad\x95\xd9\x7e\xdf\x66\xed\x8a\x4a\x9f\x8a\x9f\xc0\x33\x22\x4c\xf5\xdb\xb3\xe3\xa5\xd9\x4e\x6c\x0d\xf3\x3f\x33\x1a\x23\x50\x85\xcb\xcd\x0a\x1b\x4e\xf4\x06\x56\x25\x7e\xe6\x53\x72\xa3\x22\x06\xa4\x78\x83\xfe\xbc\xa9\x1f\xbe\x9c\xc6\x1c\xba\xca\x10\x9e\xaf\x15\x9d\xab\x19\xb2\x05\x2a\x5c\xd0\x0a\x28\x6d\x41\x45\xe8\x8f\x4f\x02\x4d\x38\x1d\xe5\x7f\xcd\x4f\x58\x7f\x8d\xdc\x16\x36\xff\x8d\xc0\xb3\x0e\x02\xcf\x21\x83\x48\x64\xba\x61\x57\xde\x9b\xaa\x29\x8b\xfb\x9a\xe8\xfc\xb9\x8d\xd6\xcb\x02\x5f\xba\x36\x55\x5c\x65\xf7\xb5\x2f\x9e\x01\xff\x3b\x0f\x65\xea\x89\xb3\x53\xc0\x83\xe1\x5a\xae\x04\xad\xf9\x43\x5b\xac\xb4\x8d\x5d\x7a\x85\x62\x00\xd4\x99\xee\x52\x6d\x81\x09\x5d\xe0\xea\x68\x33\xfd\xf7\xcf\x51\x6d\xd0\xf1\x09\x97\xaf\x0a\x7f\xf5\x18\x49\x7d\x09\x20\x50\x69\x7c\x3d\xd9\xf5\x66\x7c\x66\x03\x06\x47\xda\x00\x2a\x00\x7c\xb6\xab\x1b\x65\x27\x89\x61\x51\x02\xbd\x67\xab\x93\x4c\x07\x0e\x74\x96\x16\x35\x09\x3b\xec\x8b\x48\x33\x7a\xd7\xf7\x89\x6a\xb1\x8e\x4c\x62\x06\x04\xeb\x75\x71\xff\xc9\x3a\x92\x90\x95\x7a\x74\x29\xea\x48\xc5\x8b\x24\x11\x84\x14\x05\x10\xad\x68\x74\x2f\x54\x60\x98\x03\x1b\x73\xe4\x83\xe8\xf0\xa4\x96\x4b\x3a\xe9\x52\xaf\x5e\x64\x13\x2a\x66\xeb\xfa\xb5\x4e\xed\x9b\x50\xda\x39\xb1\xd0\x61\x9b\x61\xc7\xf3\xa4\x93\x63\x7b\x29\x5f\x18\x72\x8e\x7b\x81\xa7\x8d\x19\x45\x49\x14\xa6\xa3\xf1\xa4\x20\x88\x6d\xf9\xbe\x5c\xd0\xe2\x55\xd0\xbe\x4b\xbf\xcf\xc7\x14\x1c\xf3\x1f\x35\xec\x8c\x83\xa8\x24\xe1\x52\x10\x88\x5c\x0d\xaa\x53\xc1\x6a\xf8\xb7\x21\xc7\x9f\x8c\xf3\x35\xd7\xd5\x47\x4f\xf8\x1a\xbd\x4d\x74\xf8\x31\xf0\x27\x6b\x42\x0d\xd8\xaf\xac\xef\xc6\xd3\xd5\xc6\x1b\x31\x0e\x93\xaa\x3a\x21\xfc\x39\x61\x23\x7f\x47\x41\xb7\x79\xc4\x48\xcc\xfd\x76\x5c\x1b\x24\x19\xd3\xa2\xd8\xae\x2f\x7b\xb7\x22\x90\xac\x32\x5e\x45\x76\x36\x4a\x13\x93\x17\x96\x8b\xa8\x3c\xc5\x14\xf8\x1d\xf1\x51\x53\xb8\xc1\x10\xd5\xf2\xaf\x78\xc0\x30\xf0\xc9\xe6\xf9\x9a\x8b\xe1\x4f\xa0\x8c\x5d\xa1\x2d\x74\x4c\x60\x9a\xb6\x10\x7a\x13\xcc\xb6\x88\x08\x16\xa0\x76\x3e\x56\x91\x38\x88\x88\x22\x89\xab\x2a\xb3\xa2\x7c\xa2\xbc\x63\x94\x2c\x9b\x51\x3a\xc9\xdb\xe5\x63\x66\xae\xdc\xa9\x6f\x45\xbc\xad\xc1\x3a\x0f\x54\x34\x6c\x26\x45\xba\x47\x49\xb0\x7e\x1c\x28\xe1\xd4\x8f\xb1\x9a\x51\xa2\xfa\x94\x9e\x03\xbe\xe1\x53\xcd\x13\xd2\xee\xaa\x10\xfc\x2e\x6c\x91\xe3\xea\x77\xfc\xa7\x1a\x3b\x91\xc7\xe9\xaa\x4d\x22\x56\xf5\x93\x16\x30\x5d\xa1\xa0\xb6\x9b\x24\xdf\xed\xa8\x97\xf9\x58\x10\x71\x14\xa0\x69\x7c\xdc\xac\xe8\x99\xd9\x71\x9a\x31\xab\x24\xeb\x78\x6f\x5d\xa9\xfd\xe9\xa1\x97\x3a\x85\xcd\xb2\x34\x8b\x98\x3f\x08\xeb\xe9\x8c\xea\x88\x6c\x53\x91\x0c\x2d\xc4\x72\x91\xf0\x7f\x4a\x6f\x1c\xa8\x96\x5f\x0f\x14\xc8\xef\x53\x32\xe7\xfc\x0f\x0f\x15\x14\x18\x99\x6c\x85\xd1\xf6\x40\xe9\xfc\x10\xcf\x43\x1a\xf9\x8a\x0f\xe9\x32\x47\x8b\x68\x6d\x6f\xba\x2a\x75\x6f\x12\xc5\xfd\x7c\x46\xb1\x25\xb3\xf0\x18\x10\x10\x8c\xc9\x94\x76\x83\xc7\x9c\xfa\x1a\x70\x1e\x66\x94\x29\xcc\x28\xfc\xd7\x2d\xa5\x76\x78\x4d\xe9\x85\x7e\x2b\xd0\x88\xa6\x06\x28\x75\xdf\x14\x66\x97\x1a\x14\x83\x2a\x2b\x3e\xf0\xc7\x8a\x1f\xeb\x1d\x6d\xe4\x77\x32\x99\x3c\x42\xc6\xeb\x4d\xa0\x97\xcc\x84\x11\x6b\xa4\x02\xa7\x01\x99\x62\x3e\xae\x81\xe3\xca\xfc\x24\x45\x1e\x80\x12\x3d\x93\x79\xf1\x89\x32\x17\x32\x0f\xb6\x3e\xe3\x89\x73\x4e\x04\xbe\xc6\x7d\x42\x4f\xa1\x81\xe7\x9e\x8f\x37\x9e\xab\xd4\x7d\x23\xd2\xd3\xcf\x67\x54\x9a\x7a\x19\xed\x4e\x27\x3b\xb2\x34\xeb\x84\xf5\x3c\x4d\xc8\xa5\x5a\xfa\x5e\x06\xfe\x66\x35\xcd\xa2\x02\xb5\x05\xe6\xc4\x0b\x7c\xe1\xe3\xa3\x26\xb6\x80\x7e\x3a\xe0\x96\x28\xcb\x3e\x05\x7e\x9f\x5d\xa8\x82\xda\x56\x23\xa2\x65\x70\xc3\xa7\x7c\xa1\x32\x2d\xed\x33\x43\x93\x14\xc3\x34\x4e\x07\xdc\xdc\x93\x01\x59\x0f\xae\x3f\xd9\xac\x25\x6e\x0b\xf3\x7a\xcb\x87\x75\xf7\x03\x3d\xf6\x51\x0f\xd8\x17\x3b\xc3\x34\x2f\xa2\x18\x5c\x7a\x6a\x7e\x6c\xc1\x6b\x2a\x3a\xf1\x12\xcd\x05\xd5\x4f\x8b\x19\xd5\x16\x65\xf1\x41\x01\x4f\x95\x9f\x71\xbc\x7a\x1e\xc2\x7e\xda\xfb\x7f\x6e\x5e\xb6\xfc\x38\xc2\x79\x25\x5f\x7d\xde\xf3\xcf\x45\xab\x11\x68\x7d\xd4\xa0\xd4\x47\x8a\x87\x91\xe9\xf9\xe4\x32\x9a\xb4\xcb\x27\xc5\x30\xcd\x3c\x55\xa5\xf4\xc9\x3c\xe8\xb1\x3e\x4f\x78\xe0\x80\x48\xd7\xf1\xdc\x8a\xab\xcc\x1c\x38\xe0\xca\x29\x75\x22\x96\x83\x04\xf3\x96\x1f\x72\x03\x05\x9e\xc6\x4b\xf1\x07\xad\xa5\x49\xdf\x66\xe0\x16\x77\xc2\x96\x0b\x5e\x9f\x9a\xe7\xf0\x80\xb0\xb8\xae\x8a\x02\xb7\x50\x90\x61\x71\x22\xfa\x76\xc9\x2d\x1a\xa8\x61\x32\x33\x8e\xfa\xe2\x2d\x35\xf1\xa6\x94\x39\x94\xdc\x8e\x35\xe1\x10\xa8\x11\x49\x5b\xaf\x60\xf7\xf2\x89\xea\x82\xe6\x2b\x51\x86\x66\x8b\x34\xad\x01\x75\x66\xba\x39\x5d\x70\xdf\xd9\x6d\xda\x67\x36\x5c\x71\x1a\x85\xa8\x1f\xbf\xa3\x6a\xef\xef\xa8\xd1\x6a\xb3\x66\x30\xd5\x84\x1c\xe0\x0f\xe8\xcf\x2a\x31\xba\xb4\xa8\xca\xef\x42\x24\xfe\x23\xda\xe7\xfc\x01\x4a\x92\xd0\xe2\xd3\x1d\xfb\x5f\x78\x71\xb6\xe5\xa3\xe2\x2d\x5c\x32\x9f\x04\xdb\x29\x35\x34\xc1\x25\xc5\x91\x15\xd4\xff\x3b\x53\x0d\xc0\x57\x42\x8c\x61\x3a\xc9\xb8\xf1\x8d\x8c\xed\x07\xaa\x22\xfa\x83\x1a\x3c\xa4\x5c\x41\x84\x64\x2a\xa2\xdc\xe5\xe9\x32\x84\xd0\x72\x72\x17\xdf\xd7\x21\xce\x30\x22\x69\x91\x47\xe8\x49\x08\x62\xc1\x77\xb1\xbe\xa1\x24\xc7\x4e\x55\xe7\xbb\x7c\xd5\x18\xb1\x37\x53\x69\x22\x25\x10\x8e\xbd\xa6\x16\xe7\x5a\x9a\xca\xc0\xbf\x28\x40\x69\x39\xa8\xda\x6e\x92\x87\x67\xa3\xd7\xa2\x96\xef\xd8\x1e\xd7\x72\x62\xc7\x1f\x12\x8c\x9a\x62\x98\xa5\xe9\x08\xbf\x86\xf1\xcf\x4d\xc5\x0f\xbf\xa9\x6c\xd2\x7f\xf5\x5f\xfe\xd7\xad\x32\x1e\xe3\xba\x4e\xe0\x3b\xe4\xe5\x5e\xad\xe4\x52\x4b\xb3\x4b\x72\x55\x33\xbe\xc8\xf3\x2f\x28\x6c\x77\x5a\x1e\xce\x88\x5d\xa1\x0d\x83\x3f\xf9\x77\x81\xa6\xc6\x4c\xf3\xa8\xb0\x7b\xa8\x44\x22\xba\x50\xe5\x9f\x0a\x59\x3f\x59\x48\xc7\x43\x57\xde\x81\xd0\x92\x2a\x78\xca\x59\xcf\x9c\xd4\xfe\x6b\xe4\xe7\xb0\x86\x1f\xd9\x50\x8c\x2f\xd7\x6a\x9e\xf6\xc0\x81\xce\xba\x2d\x28\x2b\x03\x22\xeb\x77\x28\x79\xe5\xe3\x26\xba\x9e\x7e\x94\x8f\x3d\xd9\x1f\xb2\x37\x1e\x9d\xe2\x93\xda\x28\x7d\x19\x07\x0e\xd3\x78\x24\x51\x20\x4a\x3f\x9c\xd4\xf1\x89\x9b\xb9\xcd\xc3\x61\xf4\x46\x3a\x1e\x66\x65\xb0\xd9\xf6\x9b\xf9\x0e\xc1\xc3\x10\x44\x9f\xd4\x93\x7f\x17\xa6\x8f\x2b\x38\x0b\x3a\xc0\x6e\xca\x55\xcf\x5d\xd0\x05\xf3\x09\x95\x89\x84\xd7\xca\x57\x93\x22\x53\x18\x7a\x18\xa2\x03\x42\x97\x28\x02\x21\xfe\xef\xf2\xa1\x59\x6b\x79\x20\x04\xb7\x06\x65\xb5\xfb\x48\xbd\x9f\xa6\xd9\x6e\x95\x1c\x7f\x13\x65\x04\xc7\x88\xe0\x79\xa2\x90\x1b\xf1\x31\x5e\x39\x7f\x84\xda\x2a\x42\x9b\xe0\x9b\xd5\xa6\x97\xa7\xf1\xa4\xa0\xba\xe7\x82\xb0\x79\xfc\x5b\xfa\x16\x3e\x6e\x2a\xf8\x99\x38\x8e\x9c\x54\xbe\xc8\xc8\x28\x02\x87\x4d\x75\xf1\x89\xc9\x38\x70\x68\xda\x31\xcf\xb8\x08\x36\x8f\x12\x9b\xe7\x23\x9b\xec\x52\x97\xcd\x2b\x15\xcc\x8c\xcf\x50\xe7\x4a\x20\xc3\x1e\x92\x71\x77\xaa\xc2\xba\xba\x04\xc0\xe1\xd9\x85\x4e\x94\x98\x30\x9c\x64\x86\x19\x1e\x58\xf3\x97\x76\xa5\xe8\xff\x2a\x3d\x8e\x34\xeb\x3f\x42\x57\xdc\xc4\xd2\x45\xbf\xa5\xf4\x49\x16\x1c\xe5\x2d\x85\x4f\x08\x91\xcf\x4d\x2b\x97\xba\x5f\x72\xd0\x07\xae\x4e\xb7\x6c\x63\xe6\x48\x7c\xc5\x89\x17\xd0\x57\x63\x39\xed\xec\x2a\x17\x70\x6d\xfa\x57\x94\x0a\x4b\x36\x1a\x5a\x22\xb7\x2d\x9f\x17\x68\xd6\x70\xeb\x17\x94\x60\x78\x7d\x14\x7a\x69\xb1\xd3\xb3\xa1\x99\x94\x2e\xc0\xb5\x3d\x51\x97\xe6\x63\x05\xe9\x0e\xe3\x74\x82\x80\x08\x4e\x14\xf8\x7c\x3e\x56\x1d\x9a\x01\xf3\x09\xce\xcd\x49\x46\x41\x6c\x1f\x3e\xbb\x90\x55\x10\xe5\xf9\xc4\xf6\x77\xd3\x53\x45\x6e\x7c\x4a\x75\x6c\x66\xba\x2d\x4d\x0a\xec\x71\x99\xe7\xd4\x74\xe2\xdb\xda\x2b\x5e\x6c\x82\x01\x67\x69\x8a\xec\x00\x29\x17\x10\xb3\x7c\xdc\x94\xbe\x47\x49\x3f\xca\x6c\x88\xcf\xb8\xe1\x37\x35\xe4\xd6\x30\x40\x9c\xd9\x31\x08\x78\xfd\x24\x1a\x43\x50\x04\x6d\xe7\x30\x11\x79\x68\x93\xbe\x73\x9d\x8c\xdc\xad\xa0\x78\x7d\x8f\xb6\x58\x33\x8a\x18\xfc\x63\x45\x0c\xfe\xb1\x1a\xcf\x5a\x8e\xcd\x8a\xcd\xe9\xfd\xb1\xf2\x22\x8d\x78\x8a\x0a\x63\x45\xe3\xa8\xbf\xfe\x64\xeb\xf0\xec\xd6\x95\xca\x5c\xc2\x69\xc4\x6b\x88\x00\xef\x6a\x82\x6b\xb4\x1f\x11\xfc\x7d\x46\x7d\x8c\xad\x2b\x54\xb8\x11\x7e\x4b\xcf\xd0\xf3\xd1\xd4\x77\x2d\x59\xbc\x1f\x86\xe5\x54\xa0\xc6\x05\x2e\x2b\x8d\xe4\xfb\x4a\xca\x81\x29\x5d\xd1\x8c\xfe\x3d\xcd\x98\x70\xb6\x49\x1c\x6a\x14\xe5\x83\x49\xd4\x97\xa0\x5b\x50\x94\xbe\x73\xd7\x86\xd7\x40\xa6\x79\x63\x3b\x8f\xdf\x81\x03\x4b\x9d\xf9\x43\x5f\x50\x6a\xc1\x2c\x5c\x25\x85\x2a\x0f\x5f\xff\xa7\x5a\x0e\xe5\x01\x6e\xc5\xb1\x92\xbb\x62\x06\x37\x3e\xb1\xc2\xef\x21\x2f\x74\x1a\xc8\xee\x26\xef\x92\xf7\x16\xf2\x79\x72\x33\x70\xa4\x6f\x4e\xd5\x0b\xc0\xb8\x14\x72\x61\x8c\x51\xe1\xd3\xc7\x14\xb4\x92\xa8\x50\xa9\x44\xd0\x52\x23\x25\x6f\x62\x2f\xf0\x49\x23\x00\xfc\xff\x9f\x4c\xa6\x09\xd8\x9d\x9b\x64\x05\x50\x6d\x47\xa4\x76\xe0\x80\x1b\xb2\x7c\x58\x24\x0a\x6e\x8c\x34\xcb\x77\x29\xbe\xe6\x2f\x94\xe6\x7a\xeb\x0a\xae\xd4\x8d\x20\xce\x1f\xda\xba\x32\xd5\xa3\x01\x17\x55\x56\x6a\x56\x23\x26\xc9\x50\x43\x87\xaa\xbe\x5b\xe6\x2c\xbe\x39\x1c\x66\x96\x9a\x36\x5b\x67\x69\x15\x6d\x9d\xad\x3d\x87\x03\x07\x3a\x71\x14\x02\xc1\xe4\x30\xfb\x88\xa6\x04\x26\xf4\x30\xf6\xf8\x51\x94\x44\x79\x98\x45\x3d\xdb\x46\xcd\x45\xfb\x1d\x25\x7f\xbe\xe8\x28\x5d\x1a\x9a\x29\x61\xcc\xd3\x1e\xa2\xe8\x49\x6b\x47\x46\x4b\x1f\xe5\x0f\x74\xfe\xd6\x53\xb4\x8c\xd0\x27\x3f\xa5\x46\x7f\x16\x29\x5a\x11\xc8\x65\x69\x59\x1d\xf9\xc3\x61\xa1\x48\xfd\x13\x60\x02\xb0\xbf\xaf\xe9\x1a\x1e\xcf\x92\x0b\xe7\x33\xed\x34\xbc\xc9\x3b\xaa\xbf\x75\x59\xd5\x0a\x19\xec\x8b\xa0\xfc\x01\x6c\x85\xe0\xb4\xca\x8d\x82\x2b\x3f\x86\xbd\x51\x91\x90\x40\x4a\x73\x5b\x65\x65\xcb\x99\xb5\x6f\xd8\xb6\x42\x92\x03\xa9\x01\x07\xf9\x28\xf5\x30\x11\x87\x5d\x54\x16\x2e\x8e\x46\xe3\xa8\x0f\xe0\x9c\xf0\xb9\xd0\x5d\x68\x8d\x70\x58\xa9\xf7\x6a\x0b\x98\xd0\xa5\x69\x6e\x09\xac\xe5\x78\x59\x9d\x8f\x67\x99\x46\x29\xca\x3f\xa9\x00\xc9\x36\x16\x52\x6e\x27\x33\x47\x17\xce\x27\x4e\x3e\x22\x2f\x4c\x11\xe5\x45\x14\x46\xdc\xed\xe4\x19\xf8\xa9\xc7\xd7\xdc\xf1\x98\x2e\x1b\x47\xab\x52\x83\x96\xd1\x97\xd2\xa4\x4a\xed\xfa\x99\xaa\xad\x7a\xa1\x73\xe8\xa5\x76\xeb\x97\x7f\xde\x57\x87\x1d\x81\xe0\x9b\xf4\xf8\x25\xc8\xdd\xeb\xad\xdb\xc1\xe7\xe9\xed\x23\x68\xa0\x8e\x12\x7f\xfa\xb3\x40\x0d\xb1\x7e\x1b\xed\x2d\x58\x9d\xeb\x53\xe5\xae\xae\x28\xf8\x25\x9e\x15\x4a\x3a\x37\x02\xc5\xdf\xca\xd8\x30\x96\x8b\x0f\x7c\x9f\xf4\xae\x66\x8c\xe0\x14\x43\xb0\x10\x78\x9a\xcc\x4d\xb5\x41\x0b\x1c\x65\x82\xfb\x88\x5e\xf1\x7e\x3e\x87\xaa\x72\x45\x7e\x4d\xf8\xe5\xca\xe7\xcb\xda\xe0\xe4\x9c\x44\xb8\xdd\xcb\xaf\x7d\x84\xe6\x19\x22\xd5\x47\xbb\xcf\x45\x5e\x9e\x74\x10\xe5\x85\xcd\x64\xa0\x4f\xc6\x83\xcb\x4b\xe7\x63\x95\x19\xe7\xc5\xba\xe3\xab\x76\x7a\xca\x0e\x3f\x76\x13\x4f\x12\x06\xe3\xc7\x0f\x1d\xa3\x08\xd3\x24\x33\x51\xdc\xae\x14\x90\x17\xd4\x88\x5b\xf9\xa4\x50\xc6\xbd\xaf\x61\xc0\x69\x96\x45\x96\xc1\x64\x52\xcd\xf1\x23\x40\xd7\x03\xcf\xca\xf4\x7d\xc5\x13\x3f\x88\x27\x05\xfd\x14\x03\x9f\x2a\xa5\x31\x1f\x4c\xdd\x50\xf8\x4f\x00\xaf\x73\x9a\xb4\x67\x2e\x02\x32\x2f\xae\xcf\x5b\x2e\x11\x17\x39\x2d\xcd\x7a\xc0\x73\x79\x69\x08\x46\x1e\x54\x75\x6e\x7c\x7c\xf5\x51\xa0\x48\x4d\x77\x74\x5b\x3f\xf7\x2b\x3e\xff\x77\x6d\xa1\x0f\xf1\x24\xb1\xda\x6e\x52\x74\x01\xeb\x72\x09\x7e\x14\x46\xfe\x36\xbd\x25\xfe\x07\xf5\xa4\xb2\x34\x5d\x76\xd1\x14\xd6\xe2\x49\x85\xbe\x3c\xe9\x66\x17\x43\x93\xf5\xa3\xe5\x65\xf8\x4b\x47\xde\xae\x84\x33\x14\x97\xc7\x72\x94\x58\x56\x51\x42\x11\x8a\xe5\xe0\x45\x5a\xbe\xfc\xd8\xd6\x5b\x2a\x39\xe8\x9b\x11\x76\x3e\xac\x13\x78\x96\xf8\x58\xc5\xbb\xfd\x34\x49\xa4\x2e\xe1\x26\x5d\x16\xfc\x74\x8b\xd0\x65\x2f\x4f\x92\x19\xf5\x83\x80\x54\x8a\x8c\x78\x4b\xcd\xeb\xab\xe1\xe3\x93\x0e\xf7\x97\xd8\xa8\x18\xda\xec\x31\xc5\x4c\x7f\x51\xd1\xf3\x71\xd6\xee\x5a\x65\x73\x73\x4c\x7e\xf0\x7c\xb7\x7c\xc4\x2e\x4e\x9b\x3f\xc4\xfb\xf4\xa7\x29\xeb\xd8\xba\x47\x46\x41\x66\x81\x5a\x8e\xbb\x19\x4d\x1d\xf4\x14\x5a\x1b\x7e\xc4\x67\x60\x93\x7d\x6d\xbf\x00\x37\x15\xab\xf4\x7b\xca\x53\x5d\xaf\x15\x02\xa8\xac\x12\x7f\x29\xb5\x51\xac\xe6\x6c\x2e\x51\xf0\x24\x2c\x0f\x4d\xe3\xf7\x10\x53\xf6\x50\x00\x6e\x3d\xf1\x49\xad\x60\xb6\xf8\x12\x54\x6f\xb2\xa8\x07\x51\x1d\x2d\x62\xf9\x17\x4a\x28\xed\x2f\x6a\x95\x0d\xca\x2a\xd6\x5a\x1e\xf3\x8c\xe8\x41\xd8\x9e\x2b\x7c\x05\x6f\x20\x84\xe7\xa1\x5f\xfa\x5a\x19\x00\x56\xc2\x05\x36\x7f\x9a\x76\x9a\xd3\x2c\x9e\x9b\x07\xf8\xf6\x15\xf8\xb5\x7f\xfc\x1f\x12\xd0\x11\x23\x51\xed\x0d\xad\x88\xf5\xa5\xae\x4f\x4e\x9e\xc1\xbb\x45\xf0\xb1\x85\xe5\x81\x97\x38\xb3\xa1\xf8\x8c\x77\x6f\x38\x62\x8c\x93\xcf\x80\x98\xd3\xd5\x4d\x4a\xc7\xa1\x84\xf8\x5f\x74\xb3\x9a\xde\x6c\x75\x36\x14\xde\xea\x6f\xd3\xaa\x41\x32\x76\x57\xeb\x8b\x3d\xb3\xe1\x33\xc7\x91\x79\xa3\x6f\x50\x8e\x87\x31\xf8\x87\xe4\xf2\xf0\x20\x5a\x1b\xaa\xf0\xc4\x52\x3c\x88\xb7\xbf\xa6\x22\x87\xd5\x94\x84\x86\xcb\x8f\x01\xa8\xdb\x42\xff\x0a\x66\xfe\x6d\x45\x3f\x05\x5d\x00\xa1\x87\xab\x33\xa3\x94\xb6\x7d\x92\x2d\x1b\x16\x75\x99\xe7\x05\x7a\x2c\x50\x12\x11\xc7\x9a\xf0\xf7\x71\xba\xce\x80\x00\xe1\xee\x69\x39\xea\xaf\x33\x0e\x65\x35\x49\x64\xaa\x07\x2b\x6f\x53\x5b\x47\xdf\x9d\x1b\x99\x4c\xfe\x0e\x8f\xe1\xa4\x8e\xde\x4f\x2a\x4e\x52\x5b\xc6\x17\x4c\xcc\x22\xac\x30\x7e\xa2\x81\x41\x93\xb0\x8c\xff\x37\xad\x43\xbc\xa5\x2d\x45\x9f\xaa\x8d\xd0\x5a\x9a\x92\xc1\xf4\xf0\xe7\xd3\x8a\x7a\xfb\xb4\x8a\x80\x88\xaa\xa0\xcf\x7d\x52\x18\xbd\x2b\x8a\xf5\x66\x90\x99\xfe\xc4\x70\x27\x0a\xa5\x9b\xdf\xd5\xc2\x6d\xbf\x1b\x6c\xc3\x87\xec\x5f\xe8\x1c\x38\xf0\x45\x5a\xe7\x68\xf6\xa3\xee\x06\x93\x72\x03\x01\x08\xb2\xae\x9b\x00\x3a\x72\x64\x39\xf5\x84\xee\x27\x80\xfb\x47\x6d\x84\x51\x34\xf8\xb5\x53\xc0\x50\x61\x03\x1d\x21\x98\x8a\xa0\xbb\xe8\x25\xc3\xda\x30\xb4\x52\x78\xbd\x7c\x5d\xec\x14\x45\x49\x30\x8a\x37\x83\xd6\x2f\xcd\xfb\xfe\x57\x19\xf2\x54\xe3\x17\x87\x46\x29\x9f\x21\xd3\x4a\x71\x13\x96\xaf\x6c\xaa\xd8\x97\x50\xc7\x70\xf0\x76\x07\x3b\x3a\xaa\x49\x68\x69\x7f\xbe\x22\x72\xb7\x54\xf9\x16\xaf\x50\xee\x2f\x84\x42\x5b\x2a\x05\x4c\x28\x27\x5a\x8b\xfa\x10\x1f\x13\x5c\xab\xdf\x06\x90\x75\xe5\x63\x32\xb8\xfc\x37\x2a\xb0\xb6\x89\xa1\xf6\xae\x9f\x16\x80\xe1\x47\xed\xe0\x18\xb2\x03\x3e\x51\xc4\x14\x97\x9b\x1a\x93\x23\x93\x98\x30\x16\x3a\x34\x3c\x30\x98\x51\x3e\x9e\xfe\xcd\x87\x04\x49\xe3\xcc\xf6\xa3\xb0\x30\x3d\xc6\x59\xb2\x5f\x09\xb4\x8f\xa9\xa8\x1b\x47\x36\x29\xf2\x47\xe9\x11\x0b\x30\xdd\x27\xa4\x15\x92\xda\xe3\x81\xaa\x44\xdc\xa5\xf7\xea\x18\xfe\x0e\x4b\x2d\xee\xfd\xc0\x97\xf2\x10\x0d\x0a\x11\x39\xbd\x13\xfe\xb0\x1a\x3e\xb4\xc9\x20\x36\x49\x7f\x17\x5d\x01\x2a\xf0\x7f\xaa\xdb\x88\x7f\x8a\xaa\x1f\xd6\xe2\x7d\x5a\x59\x12\x71\x94\xdf\x0e\x3f\x71\xc6\x39\xec\x38\x2d\x80\x4a\x71\x3d\xc3\x5b\xca\xe3\xdf\x52\x60\xf1\xd8\x0c\x12\xd3\x87\xf6\x06\xd0\x82\x5a\x3c\xfc\xa2\xce\xaa\x8f\x2b\x20\x63\x96\x9a\xfe\x5e\xda\x05\x48\x5d\x8e\xeb\xb1\x8e\x6f\xd1\x37\xb8\x42\x9d\x28\x28\xff\x9d\x36\x2c\x31\xfe\xe8\x14\xaf\x7c\x3e\xa3\x02\x13\xf2\xdd\x6b\x6a\xce\xef\x87\xd8\x5d\x58\xea\x77\x02\x8f\xa0\x07\xfc\x05\x96\x72\xe7\xc6\x5e\x8f\x52\x89\xd4\xf8\xe3\x39\x35\xfe\x78\xae\x71\xa4\xc7\x0c\x32\x6b\x59\x62\x09\x09\xec\x3d\xbc\x5f\x80\x9a\xb8\xd9\x26\x13\x91\x8a\xcb\x33\x5b\x79\xa2\xbc\x00\xb7\xc4\x5f\xf6\x53\x8a\xf4\x65\x95\xf1\x62\x18\x81\xef\x4d\xfd\xf0\xc6\xcc\x86\xf7\x71\x9b\x30\x08\x30\x60\xff\x46\x2b\xf4\x8c\x61\xc1\xf0\x88\xf7\x12\x4f\x02\x0c\x18\x0c\x00\x5d\xf0\xe2\x17\xbb\x64\xff\xe4\xb1\xd0\xf3\x42\x84\xfb\x79\x23\xbb\xf7\xb2\x5d\x13\xae\x12\xb8\xf8\xb3\xc8\xc1\xf8\xa4\x09\x1a\x3c\xb6\xe9\x38\xb6\x3c\x5d\xad\x1a\xb7\x07\x1d\x59\x9e\xdf\x58\xd0\x48\x45\x9e\xfe\xfb\xb8\x7d\xac\xfd\xbb\x35\x40\xb4\xda\xad\x85\x79\xbd\xed\x83\x1a\x08\xb8\xba\x98\xcb\x53\xad\xbf\xdb\x88\xda\x19\xd9\x3c\x37\x03\x79\x8d\x58\x77\x8c\x73\x43\x78\x73\x07\x36\x5e\xc2\x3e\xa7\xde\x96\xa5\x93\x5e\x2c\x9f\x13\xcf\xa5\xa8\xac\xee\x29\x31\x1d\x2d\x51\x3e\xa4\x71\x7d\x14\xa1\xb0\xe1\x3f\x55\x55\x66\x2d\xc7\xf6\x9e\x4e\x08\xce\x54\x74\x47\xcf\x78\xd1\x74\x82\xb7\xcf\x78\xe7\x0a\x26\x7a\x59\xb7\x7e\x6b\x6e\x6a\x2e\xc8\x7a\xeb\x7b\xfe\x50\x87\xf0\x5c\x3c\xc9\x23\x40\x2a\x05\xaa\xaa\xbd\xdc\x25\xc2\x2f\x5b\x03\x4d\x02\x1e\x83\x0f\xb6\xb7\x52\x25\xb2\xaf\x91\x91\x11\xf8\x29\x1a\x0c\x99\xb4\x48\xe8\xa3\xfc\x80\xf5\x27\xaa\x2e\x72\xb3\x66\xe3\xf7\x97\x91\x93\x6a\x8a\x63\xd9\x62\x46\x8a\x8f\x6b\x92\xb2\x73\x73\x9d\xd8\xf4\x6d\xd2\xf6\xb0\x04\x56\x11\x01\x3e\xe7\xf4\x54\x91\x05\x5c\x68\x2a\xf5\x8e\x4d\x91\xa5\x89\x19\x20\xcc\xc0\xb5\x1d\x53\x22\xb2\xc7\x9a\x00\x2f\x65\x2a\xb0\x8b\x7e\x86\x35\x69\xc9\x60\xa1\xa6\x7d\x4b\x69\x65\xec\x52\x03\x5e\xad\x0d\x5f\xf5\xad\x33\x3f\x2c\x2c\x74\xa2\x32\x57\x48\xf2\x28\x2c\x6f\x66\x0b\x1a\x46\x30\x75\x6f\x4d\x2b\x4c\x5f\xca\xf0\xac\xee\x6b\x57\xd5\xfb\xd4\xe4\x04\xad\x0e\x98\xb1\x07\x55\x8e\xb3\x62\xfd\x39\xcd\x17\x8f\xd8\xdb\x75\x97\xbc\xf2\xe3\x0d\x98\x1f\x5c\xff\xce\x8d\x32\x4c\x82\x0f\xdc\xd1\xf5\x05\x87\x9d\x1b\x4a\xd2\xff\x81\x26\xfa\xbd\x1f\xa8\xe2\xc6\x05\x54\x0c\x11\xbf\x5c\x0d\xd4\xe6\xfc\x03\x5a\x55\x5c\xcc\xd7\x43\xf6\x77\xf5\xcc\xec\x25\x80\x86\x91\x3a\x5c\x99\xfa\x61\x04\x6e\xe0\xe2\xe1\x3f\xb2\x41\xd6\x0b\x21\xdb\x67\xe4\x15\x50\x96\x04\xb3\x0b\xe2\xb2\x2f\x34\x8d\x4c\xc6\xe9\x9a\xcd\xda\xbe\xba\xc6\x13\x25\x30\xbd\x8f\xd1\x7b\xc4\xc8\x6a\x6b\x63\xfb\xbb\x43\x67\xb9\x98\x64\xbd\x8a\xf6\xe3\xc7\x41\x05\x46\xb4\x7d\x19\xcd\xcd\x93\xd0\x51\x4b\xcd\xe2\xf0\xa4\xaf\xb8\x91\x3a\x26\xe7\x20\xd8\x73\x2c\x0f\xc7\x62\xf1\xfd\x20\x50\xa3\x5f\x3f\xa8\xb5\x9c\xe6\x0f\x75\xc2\xcc\x9a\x51\x24\x76\x5e\x03\x6a\xf8\x58\x15\x6c\x08\x2f\xcd\xe3\xfd\xa2\xcc\xda\xf2\x2a\xad\x6a\xf1\x2d\x47\xe1\x1e\xd5\x3b\x9e\x92\x3f\x46\xc3\xa1\x45\xa3\x64\xb4\x86\xba\xcf\x74\x7d\x87\x82\x57\x84\x10\x6b\xd1\xe5\x60\x11\x9c\x9f\x7a\x22\x25\xa6\x4c\x44\x15\xf1\x96\xa3\xc7\xe8\xdb\xe5\x28\x89\x0a\x1b\xaf\xb7\xbd\x24\xc3\xaf\xc2\x5d\xba\x4a\xff\xd2\xac\x03\xb7\x6d\x6b\xca\xcc\xcd\x95\xee\xe1\xa7\xcb\x65\x00\x70\x2d\x71\x56\xf3\xd7\x5c\xa3\x7c\x51\x3a\x9a\xba\x8a\xf8\x28\x70\xf5\x88\x31\xaf\x07\x88\xc2\x71\x69\xef\x2b\xc6\x9a\x23\x58\xd1\xb0\x79\x8f\x6c\x54\xea\x6e\x4a\x87\xfb\x63\x94\x21\x99\xb8\x6e\x4a\x3b\x07\xf1\xef\x27\x48\x23\xf0\x34\x58\xad\x07\x8b\xef\x39\x30\xbd\x22\xd2\x06\xbd\x05\xe2\x91\xef\xa0\x10\x59\x19\x06\xc0\x36\xba\x4f\x5b\x0a\xbb\xfb\x7f\xc5\xc6\x61\xf8\x33\xf6\x17\x9c\xf3\xad\x29\x39\x42\xac\x81\xaf\xd2\xeb\x93\xe7\xf8\x8c\x62\xc7\x29\xcc\x78\x98\x66\x68\x00\x22\x27\x3f\x46\x5f\xcf\xc7\x4d\x73\x13\x71\x9a\x0c\x6c\x46\x3e\x0c\x5b\x71\x77\x57\xf5\x0b\xbe\x31\xf5\xd0\x88\x5b\x9a\x22\xf7\x46\x03\x79\xf2\xc1\x4e\x3e\x4c\xd7\x04\xb3\x01\xc7\x7f\x53\xd3\x27\xdd\x44\x65\x9a\xfe\x3c\x5d\xfe\x1b\x74\xb3\xec\xf5\x11\x26\xa3\x00\x7d\x5f\xd5\xcc\xfe\x1c\x0f\x0e\xaf\x5b\x18\xae\x11\x4d\x9f\x08\x14\x36\xe4\xba\x12\x88\xdb\x43\x93\x98\x30\x5f\xd7\x03\x45\x16\xf7\x28\xca\x0b\x02\xa8\x6e\xcd\xcd\xf1\x83\xff\x9f\x28\x1d\x10\x56\x44\x5a\x11\xf8\x87\x16\x09\xcd\xa2\x10\x70\x1f\x6b\x00\x17\xbc\xa3\x4b\xab\x03\x19\xdb\xae\x0d\x15\x88\x6d\x90\x0a\x27\x12\xac\xb7\x74\x8e\x79\x86\xf2\x29\xa7\x21\x5d\x1a\x5f\x61\xed\xa3\x97\x0b\xfb\xff\x0d\xf2\x49\x98\x40\x79\x72\xa3\xf5\xcb\x3f\xcf\xe6\x72\x07\x15\x57\x44\xf8\x8c\x5e\x11\x0b\x36\x70\xba\xc9\x9c\x0f\x41\x19\xd1\xe2\xe2\xb9\xe0\x2e\xd5\xf7\x96\x23\x7e\xfc\x84\x16\x10\x62\xf0\x23\x6a\x08\x37\x4c\x13\xd7\x11\x94\x79\x7a\x7a\x18\x32\x69\xaf\x09\xa7\x27\x59\x91\xa5\xe9\xa8\x0e\xab\xc3\x1f\x1f\xc1\x8b\x67\x4a\xb0\x5a\x95\xee\xf0\xec\x3c\xd5\x56\x67\x7c\xf0\x78\xaf\x42\x14\x5c\x2e\x01\x59\xc2\xf4\x13\x70\x67\x6f\x39\x6a\x4a\xd3\xeb\xad\x43\x44\x0b\x4e\x6f\x47\xb7\x7c\x9f\x5a\xd2\x09\x0f\x0e\x96\x46\x50\x6c\x5e\x51\xc2\xae\x46\x79\x48\xfa\xbc\x50\x05\x3a\xe8\x6c\xa8\xb2\x08\x17\xa6\xcf\x29\x1c\x7d\x99\x9a\x8e\x2c\x49\xa4\x1f\x16\x32\xed\x36\xc8\xe2\xf9\x64\x63\xbb\x49\x7f\x79\xb1\x33\x2c\x03\xb5\x44\x2a\x4c\x40\xc5\x71\x85\x89\x4f\x9a\x48\xc2\xfa\x76\xd9\x4c\xe2\x42\xc9\x4a\x5c\xae\xf0\x82\x69\xbc\x79\x3c\xc9\xf7\xf8\xb8\xe0\x06\x9e\x3c\x9e\xca\x1d\x3c\x3c\xd8\x9a\xab\xd3\x6d\xc8\xd9\x57\x1c\xc1\x3e\x3d\x00\x3c\xfb\x2d\x5a\x1d\xf0\xd8\xf7\x14\xf3\xfc\x83\x5a\x07\x93\xc2\x40\xa6\xa1\x6b\xa2\x83\x6d\xd2\xc7\x25\x2e\x06\x9a\xf6\x6e\xf9\xc4\xf6\x77\xb0\xcc\xf8\xa4\x09\xda\x1d\x0e\xd3\x6c\x82\xf1\x36\x66\xe0\x0c\xfc\x9c\xf9\x31\xb7\x28\x52\x53\x30\x54\x1e\x81\xf7\x31\x35\xa1\x01\xfa\x28\xc1\x45\xd0\xdd\xc3\xc8\x69\x7e\xd5\x5e\xda\x33\x99\x52\xe1\xe7\x44\x90\x4f\x6a\x99\xd0\x81\x03\x1d\x33\xc9\x8b\xcc\xc4\x91\x71\x6c\xe9\x28\x44\x7c\x80\x75\xc4\x27\x0f\x6d\x8d\x9b\x6c\x94\x97\x61\x2d\xd8\xa1\xb8\x85\x45\xef\x09\x01\xe5\x59\x0d\x3c\xdc\xd9\x7d\x98\x9c\xd7\x72\x9a\x16\x3d\x13\xa3\x4c\x0e\x9f\xc5\x54\x3b\x7c\xd2\x10\xc6\x1e\xa4\xd6\x56\x16\x85\x45\x4b\x0b\x1e\x04\xaa\x0b\xaa\xc9\x84\x72\x9b\xad\x8a\xf6\x08\x8a\x53\xdf\x56\x3c\x50\x0c\x9e\x16\x54\x79\x65\x1c\xc2\x26\x3f\x4d\xe6\x9d\x9b\x82\x64\xa2\xa4\x41\xb8\xf3\x67\xa4\x31\x11\x28\x1d\xea\xa3\x3a\xfd\xba\x0b\x73\x87\xb4\x8a\x47\x87\x50\xd0\x7b\xa2\xeb\x05\xec\x7e\x8d\x3c\x00\x0c\x32\xf4\x7a\xd1\x79\x42\xec\x80\xe4\xf7\x18\x27\x72\xf0\xf0\x5f\xc3\x9d\xc2\x29\x5f\x9f\xfa\x49\xcd\x13\x88\x10\x5c\x5e\xec\xe4\x4a\x3e\x98\x56\x86\x1d\x7d\xa3\x73\xe7\x86\xd6\xb8\x3f\x13\x78\xd7\xf6\xc8\xf3\x5d\x1d\x36\x4e\x95\xfa\xfd\x19\xaa\x66\xc2\x9f\xbc\xaf\x24\xf7\xf2\xd0\x24\x7d\x13\xef\x56\x3d\x2f\xd4\x97\xf1\x04\x3e\xd3\xb0\xc4\x7f\x8d\x2b\xe2\x13\xe4\x53\xfc\x67\x6a\x2b\x9e\x51\x2b\xdc\x14\xe9\x08\x1b\xa9\x09\xc1\xe1\x9b\x36\xa5\x2f\x78\x44\xe9\x07\x81\x39\x5e\x9e\xb5\x6a\x51\xb0\x88\x3f\x42\xcb\x9b\x1a\xc2\x70\x0e\xd7\x03\x5f\x78\x45\x49\xac\xde\x6f\xe0\xde\x5a\x74\x54\xa4\xbb\x7c\x2d\x1d\x82\x57\x42\x97\x47\xaf\x0b\x55\xfe\x19\x4a\x6b\x84\xe9\x93\x7e\x86\x67\x91\xfc\xd0\x4b\x4a\x84\x29\x74\x0b\x78\x95\xc7\x03\x8f\xda\x3c\xde\x34\x43\xbb\x9c\x66\xa1\xa5\x58\x48\xf9\xef\xf9\x8a\x4a\x69\x25\x3a\x46\xfb\xe1\x68\xa3\xa1\xeb\xdb\xc9\xca\xc8\xbe\x26\x40\x80\x46\x2a\x5a\xbd\x4b\x8a\x61\xbe\xd7\xcb\xc6\xec\xea\xaa\x01\xa2\x9d\x08\x2b\x65\x4a\xa1\x8c\x2f\x44\x5c\x86\xae\xcf\x25\x64\xe5\x52\x80\x8b\xdf\xb5\x51\x61\x42\xd0\xe4\x07\x9a\x2e\xa1\xbc\x55\x04\x0b\x57\xb6\x41\x90\xab\x37\xf4\x42\xc7\xe4\xb9\x1d\xf5\x18\x06\x8a\x9c\x13\x4c\x21\x7c\xbc\xd1\x80\xf9\x7d\xcd\x8c\xda\x4a\xb2\x03\xc1\x24\x0c\xe2\x35\x25\xa4\x7e\x59\xf7\x45\xed\xb2\x4d\xfa\x18\xe7\x03\x44\xfb\x47\x53\x05\x3c\xd5\xd6\xf8\x23\x87\x95\x14\x89\x4a\x27\x70\xc7\x50\x49\xe9\xc8\x79\x11\xc1\x65\x34\xc5\xb5\x44\x27\x7a\xa6\x15\x77\xf8\x6a\x93\xd2\x62\x94\x94\xb9\x59\xce\x59\x20\xee\x7a\x43\xd1\xdf\x6f\x38\x60\x5f\xdf\xc6\x96\x64\x80\xd8\x1f\x28\xad\x16\x77\xa2\x7a\x2b\x34\x29\x9a\xcf\xf8\x41\xc4\xf3\x41\x75\x78\xcc\x15\x1f\x3f\xa5\xd4\x47\x9c\x96\x02\xe9\x2e\x2f\x47\x31\x0b\x90\x94\x0f\x0e\x95\x0b\x30\xcc\xf2\x71\xa3\x2c\xc0\xd8\x84\x2b\x34\x71\x8b\x8f\x21\xe8\x04\x9a\x95\x8f\xb7\x67\x66\x87\x67\x17\x3b\x87\x5e\x42\x80\x8f\x42\xd9\xa6\x16\x13\xd9\x54\xfc\x2a\xa3\x28\x2f\x03\xa5\x25\x91\x8f\x85\xea\x31\x1f\xd7\xd2\xfa\xa5\xd9\x4e\x9e\x4e\x8a\xe1\x8c\xaf\xfa\xa3\x56\x2a\xf5\x6c\xcd\x2a\x53\xd9\x94\xbe\xb5\xf8\x9a\x89\x46\x76\x1b\xd4\xdf\xf3\xc3\x5c\x54\x23\x91\x6b\x69\xda\xcf\x26\xcb\xcb\x0a\x5c\x3d\x9d\x2a\xb9\xfe\x69\xe0\xbf\x35\x1f\xa6\xab\xb6\xe5\x85\x14\x81\x74\xe2\xe3\x1a\xda\x83\xca\x13\xc9\x20\x2f\x0c\x41\x3b\xdb\xad\x85\x85\xad\x1b\x68\x01\x61\x6d\x61\xee\x1a\x51\xc8\x23\x5d\x8f\x31\xe9\x4d\x96\x97\x25\x75\x92\x32\x8c\x07\x31\x5e\x68\x90\x41\x3f\xd8\x89\xa3\xa4\x6f\x5a\x95\xe7\x4f\x8b\x53\xde\x8c\xbf\x61\xd3\xcb\x26\xe3\x82\x89\xcb\x58\x70\x7c\xaa\x60\x7c\x77\xe0\xf1\x1c\x07\xb5\x67\xde\x6e\x14\xe0\x1d\x99\x3c\x34\x99\x69\xa9\xb1\xc1\x4d\x25\xd8\xb5\xe9\xa0\x16\x69\x96\xd8\xa2\xb0\xad\x32\x21\xab\x48\x16\xc9\x36\x68\x10\x5f\xb3\x49\x98\x8e\xc6\xa5\xbd\x61\xc8\x8d\x1e\x82\x72\x04\xd5\x1e\x8a\x79\xa7\x81\x81\xb6\xb3\x5a\x26\xa2\x80\x89\x61\x7b\xf2\x1d\x22\xac\xe5\x5a\xa3\xd0\xeb\x2b\xbc\x72\x1a\xf7\x6d\xb2\x5b\xcd\x0f\x70\x68\x0c\x7f\x70\x2f\x50\xac\xa3\x5b\x5c\x7c\x60\x21\x3a\x35\x96\x02\x78\x0c\xd3\xf2\xd6\x88\xce\xcb\x98\x71\xd4\xf2\x3e\xee\x42\x95\x8c\xba\x21\xf8\xed\x5b\x3b\xe6\x86\x18\x02\x44\x90\xac\xf1\xb1\xea\xee\xe4\x51\xb2\xd2\xaa\x94\x4a\x1c\x88\xee\x5a\x05\x8b\x30\x0a\xcd\xee\x72\x49\xe3\x09\x80\x5d\x4b\x8a\x31\xe5\xe7\xf9\xbf\x2b\xea\xef\x0b\x81\xaf\xca\x31\x67\xbc\x8c\x2c\x2a\xcd\xcc\x74\x92\x14\xeb\x33\x55\xaa\x60\x87\xf5\x68\xfb\x52\xd3\xc6\x3b\x81\xe2\x19\xdd\xa3\x14\x17\xc6\xf1\x64\x34\xb2\x85\x60\x63\x98\x89\x8b\xee\x57\x58\xb9\xea\xa3\x81\x2f\x76\x8a\x74\x3c\x8e\x65\xff\x08\x79\x1d\xbd\xfe\x87\xb1\xd7\x1d\x9e\x7d\xa5\x33\x4c\x89\x1f\x93\x3e\x24\x45\x85\x96\xd3\x85\x39\xe1\x88\x37\x47\x51\x1e\x25\x85\xcd\xc6\x19\x5d\x59\x4b\x91\x6d\xea\x3e\x93\xea\xd4\xaf\x9a\x58\xfa\x78\x70\xc8\xe7\xa6\x8a\xa5\xb1\xce\x60\x51\xde\x43\x6c\x72\x9b\xed\x2a\xb3\x58\x57\x8f\x77\xdd\x94\x1d\x5d\x45\x3f\x89\xd9\x4a\x81\x7f\x93\xd7\x87\x13\x2f\x14\x41\xed\x68\x1c\x5b\xc7\x2a\x0a\x50\x25\x23\x2a\xf8\x64\xa3\xa2\x27\x1e\x0d\xda\xca\xb7\xde\x80\x21\x91\xfa\x2a\x16\x3a\xca\xb3\x3f\x6a\x78\x92\x8b\x1d\xec\x57\x6d\xbe\x90\xae\x0a\x5c\xae\xa1\xd4\x99\x0f\xd3\xb4\x48\x27\x05\x51\xbe\xb9\xa6\xa8\x4b\xd7\x30\x5d\x2c\x10\x69\xcf\x01\x3d\xc9\x7f\x46\x71\xf0\xbf\xa9\x38\xf8\xdf\x54\xb5\xb0\x30\x8e\xc6\x94\x65\xb6\x95\x9c\x0e\x07\x8a\x6e\xb2\xf0\xcb\x2f\xf3\x02\x7c\x10\x78\xa4\xfd\x72\xbc\xde\xf6\x1c\x70\x2d\xc2\xc7\xa0\x96\x04\xc0\x15\x82\xad\x3f\xa9\x25\xc3\x73\x73\x28\x12\x97\x2e\x45\x66\xa2\xe9\xe7\xf8\xa4\x66\x47\x5f\x7d\xb5\xb3\x36\xb4\xc5\xd0\x66\xc4\x2c\x03\x17\x7f\x9a\xaa\x52\x7c\xdc\x60\xf4\x17\x3b\x61\x4c\x08\xd6\xb9\xf9\x0a\x82\x55\x2b\x01\x0a\x6f\xbf\x2f\xec\x2c\x47\xb1\x70\xe9\xe2\x25\x82\xcd\x97\x8f\x15\x86\x2e\x9f\x24\xbd\x28\xc3\x0a\x17\x7e\x6f\xb5\xa5\x74\xa4\x96\x2e\x2f\xdb\x2c\xdf\x5d\x5a\x05\x6e\x87\x06\x3e\xbc\x63\x89\x0a\x7c\xea\x5d\x3d\xe1\xfc\x03\xb5\x76\x77\x52\x48\x20\x5e\xbd\xc1\xcf\xe4\x6b\xb6\x1f\xe5\x43\xba\x1c\xfc\xc8\x31\xd8\x0d\x3e\xa9\xc5\xf0\x87\x67\xe7\x3b\xb1\x89\xfa\x7a\x2e\xf4\x63\x5a\x48\x7c\xdc\x10\xf5\x1f\xec\x44\x59\x9a\xb4\x2a\x62\xb9\xbe\xce\xb0\x19\x6c\x0f\x6c\x97\x66\x3b\x86\x67\x42\x00\x18\x39\xa6\xc0\x23\xc7\x9a\x48\x75\x97\xd3\x3c\x67\x04\x9b\xae\x4f\x49\xfe\xe5\xc2\xd8\x34\xcd\x6d\x42\x0b\xa8\x29\x82\x93\x58\xa1\x0c\x5e\xd6\xa2\x04\xda\x9c\x8e\x5b\xdb\xf3\x91\x68\xd8\x8e\x89\xdc\x84\xaf\x70\x02\xb4\x1c\xf5\xfd\xb6\x81\x90\x28\x7e\xd6\x4b\xa4\xde\x40\xb1\x13\x2e\xe6\x14\x1a\xcd\xc0\x96\x33\xad\x1a\x92\xeb\x77\x94\x64\xe7\x0d\x15\x0c\x9f\xd4\xd1\xd4\xe7\x70\x17\xa8\x67\xfc\x11\xf9\x91\x0a\x89\x84\x5b\x68\x8b\x2f\x1d\x74\x0f\x85\xcc\x1d\xbe\x6c\x17\xd2\x1f\x54\xb7\x80\xf0\x46\xa5\x88\x65\x18\xf8\x52\x68\xe7\x38\xaa\x8a\xc3\xb3\x8b\x5b\x98\x85\x94\x44\xb9\x7c\x5c\x82\x59\xf4\xe9\xf0\x72\x94\x8d\xf2\xdd\xca\x9f\xfd\x43\xc5\x36\xb1\xef\x19\xc6\xd7\x29\x1d\x8a\x17\xb7\xda\x1b\xbe\xbb\xfc\x61\xe0\x66\x9a\x3f\xfe\xf7\xba\xdb\xdf\xfd\xab\xaf\x76\xc6\x93\x5e\x8c\x3e\xa1\x20\x61\x15\x77\x0a\xbb\x7e\x21\x2b\xd8\x1e\xa3\xbf\xfa\x6a\x67\x60\xe2\x55\x93\xd0\x50\xb9\x1f\x97\xe1\x4c\x58\x28\x3b\xca\xb7\x26\x58\x7d\xfd\x46\x8b\x09\xb8\xf1\xa4\x1c\xe7\xb9\x10\x98\x08\x1d\xbb\xf0\x1e\xd5\xa5\x51\x50\x79\x5b\xa9\x52\xdc\x57\xc3\x14\x99\x2d\x4c\x14\xef\xf2\x19\x3c\x03\x62\x10\xce\x63\xbf\x20\xe7\xe7\x1e\x0a\xff\x43\x69\x8f\xb6\xbc\xaa\xe0\x72\x9a\x7a\x95\x3f\x47\x45\xb2\x20\x9d\xb7\x3b\x81\xaf\xb6\x12\x1e\x33\x25\xd9\xbe\x19\x25\xd7\x7d\x91\x5e\x23\x42\x9a\x37\x95\x48\x15\x08\x7c\xf9\xbf\xd7\x1e\xe4\xfe\x05\x22\xc1\xc9\xc7\x99\x35\xfd\xb6\x9a\x7f\x46\xc5\x1a\xde\x01\xbc\x0d\x08\x81\x6f\xaa\xec\x2a\xa7\xce\x7c\xb4\x5c\xbe\xc5\xc3\xb3\x5e\x10\xcd\x8d\xe2\xfe\xbf\x7a\x6c\xb9\x41\xb9\xb7\x33\xce\xd2\xc2\x2a\x7d\x43\xd1\x0d\xf1\x29\xdf\xa5\x66\x72\xdd\x95\x78\x5b\x72\x76\x54\x25\x67\x47\x9b\x35\xe0\xf3\xa8\x6f\xc9\x81\xf1\x9d\x04\xbe\xb3\x7a\x54\x49\x2e\x9d\x6f\xc2\x8b\xa4\xbd\xd7\x64\xdc\x0d\xd9\xca\x07\x8a\xe8\xf5\x83\xe9\xf6\xe2\x23\xe5\x90\x59\x1a\xc6\x66\xe4\xb4\x6b\x39\x16\xe2\xd9\x17\x3e\x51\x1e\x66\x60\x88\x0b\x7f\xc6\xdb\x8a\x7b\x0a\x31\x7b\x9d\x76\x2c\x6c\xf5\x59\x18\x1a\xac\xf2\xf7\x95\x1e\xc5\x30\x9d\x64\x39\xaa\x63\xf0\xad\x5b\x2a\x47\x7e\xa0\xe4\x0f\x58\xaf\x99\xe5\xd1\x28\x79\xc6\x6a\xd9\x52\xa5\xf4\xc7\x37\x9e\xf4\x38\xcc\xb8\x97\x66\x69\x4b\x4d\x9e\x83\x80\x8a\x8f\x6b\xce\xe3\x85\x4e\xcf\xc4\x6f\x98\x50\x69\xe5\x5f\xd0\xf9\x4d\x5d\x2f\xe4\xd0\x4b\x9d\xd7\x26\xfd\x01\xc2\x04\xf4\x18\xd0\xde\xe5\x63\x95\x8b\x8c\xcd\x1a\xc6\x13\x16\xbd\x28\xdb\x7e\x59\xa0\x97\x6b\xe1\xc4\xdf\xed\xf4\x6d\x18\x47\x89\xd8\x7b\xb5\x4f\x05\xe2\x7d\x41\xed\xe8\x30\x1d\xd1\x24\x7e\x79\xb1\xcc\x5b\xac\x65\x57\xce\x4c\x7d\x15\xec\x39\xda\x18\x30\x9d\x3b\xa8\xb7\xa6\x2d\x0a\x40\x4e\x57\x68\x5f\x62\x1b\x5f\xab\xd5\xc3\xa4\x4a\xcd\xe3\xa0\xb4\x01\x11\x09\x73\x48\xca\x27\x1b\xbe\xb9\x5d\x0c\x89\x6b\xfb\x59\xa5\x2e\xf0\x3e\x5e\xa7\x1b\x71\x72\x18\x87\x8b\x6a\xca\xf1\x6a\xe0\x21\x34\x3f\xb5\xe1\x81\x22\xf7\x71\x77\x52\xf9\x51\x55\xc1\x2b\x9a\xd7\x84\xed\x1a\x1e\xf2\x99\xc0\x13\xf3\x9d\x23\x78\x3c\x96\xcc\x55\xd8\x38\xfc\x08\x57\x6b\x60\x99\x77\xa2\xd8\x8b\xb7\x8f\xfa\x18\x58\x42\xa0\x88\x29\xba\xe8\x70\x2a\x6e\x28\xc7\x11\xde\x5c\x72\xc5\xcb\xd5\xc8\xae\xd9\xfe\x2e\xa5\x7b\xc4\xc1\x2b\x0c\xf8\x35\xec\x0d\x00\xa3\x1e\xe9\x7a\x2c\x04\x73\x9b\x8a\xfc\x87\x9a\x8e\xb0\xe1\x7a\x18\x5b\xcc\x03\x33\xcd\x38\x9e\xa7\x70\x8e\x0b\x6a\x39\xb7\xb6\xcf\xf3\x26\x70\xb9\xed\xae\xae\xac\xb5\x9c\xbe\xf4\x2d\x65\x24\xe3\x88\xa4\xaf\xa3\x34\x61\xd2\x2f\xe1\xf2\xf6\x20\xa8\x4f\xa6\xaa\x6d\x7e\x49\xcf\xc9\x9f\x53\xd3\x34\x3c\xd8\xcc\x1f\x0f\xb4\xec\xeb\x30\x16\xc6\x2b\x29\xb3\x7b\xfd\xe0\xba\x94\x40\x99\x61\x94\x2b\x88\x21\x4e\x9a\xe4\x57\x98\x9b\x7d\x9b\xb9\x9e\x54\x2e\x2c\x74\xec\xa8\x97\xf6\x23\xd9\x4f\x4a\x0c\x62\xde\x89\x41\x88\x63\xcb\x87\xe9\x5a\x2f\x7a\x43\x61\xbd\x39\xdf\x13\xf6\xc1\xed\xa6\x73\x69\xb6\x13\x25\xab\x69\x3c\x49\x0a\x93\x45\xf1\x7a\x4b\xcf\x1c\x7a\xda\xfe\xcb\x4e\x47\x73\x9c\x66\x36\x57\x24\x9f\x67\xd4\x48\xc0\x3b\xf7\xa9\xe7\x2c\x13\x03\x5a\xc7\x3d\xca\x53\x62\x4c\xa7\xb5\xe3\x06\xec\x5d\xb3\x7f\x53\x4f\x1a\x19\x62\xf9\x7f\x44\xb5\x61\x4e\x4e\xb5\x9a\x80\xd2\xe6\xc5\x58\x0b\x03\x25\x34\x84\x74\x53\x15\xea\x18\x3a\xc4\x5f\x55\x09\x36\xfb\x36\xde\x43\x2b\xd1\xb5\x7b\xca\x95\x28\xca\x29\x7e\xae\xed\x62\x83\xe4\x33\xd0\x15\xc7\xb0\x89\xb6\xf0\x46\xf1\x4c\x4e\x04\x1e\x7f\x7e\xd5\x37\x8a\xb3\x1e\xc4\x80\xb8\x10\xa4\xc1\xf5\x5b\xdc\x10\x82\x71\x7b\x5f\x95\x32\xec\xa4\x47\xc4\xec\x6e\x5a\x9d\x4b\xf7\x7c\x12\x3c\xab\x23\x95\xd5\xc8\x0b\x78\x60\x83\x32\x29\x04\x9f\x68\x42\x85\xfe\x6b\x93\xbc\x20\xac\xb5\x2e\xb8\xd3\x23\x04\xca\x01\x25\x08\x5c\x11\xb3\xa9\x21\xbb\xff\x5a\x03\xe6\x62\x91\x14\xfd\x98\xc2\x8c\x2d\xca\x3d\x6d\xdd\xee\x79\xa9\x8a\xb1\xb5\xfd\x75\xec\x06\x69\x0a\xfa\x9a\xd5\xbf\x9a\xfa\xc1\xf3\x73\x2e\x25\x19\x44\x6f\x8c\x44\x43\x07\x10\xc7\xf3\x6a\x4c\xe9\x7c\x03\x29\xcc\x92\x16\x5b\xa6\x07\xe2\x34\xba\x14\xd1\x52\x45\xdd\x75\x25\xdf\xdb\xf2\xb2\x6d\x64\x0e\xb1\x98\xae\x53\x68\x0b\x1c\x59\x69\x4c\x05\x68\x7c\x5c\xbd\xe7\x99\x0d\x35\x2e\x5e\x79\x47\x37\xd8\xcc\x22\x60\x7b\xa4\xeb\x55\x0f\x6e\xc1\xe2\x3b\x88\x83\xdf\x48\x9b\x0d\xec\x10\x2f\x96\x07\x2b\x66\x98\xc6\x4c\xbf\x8f\x4a\xdd\xf7\xd4\xc8\xc7\xf7\x9a\x33\xf5\x2c\x1d\xf3\xb3\xc3\xca\x3e\xad\xf5\x69\x4f\xeb\x10\xb3\xb0\x36\x1e\x99\x15\x9b\xb5\x7d\xec\x75\x72\xea\xdd\xc7\x23\x8a\xd2\xb7\xf4\x92\xd2\x39\x48\xcb\xec\x42\xe8\x0f\xb1\x96\xae\xd2\x8b\x84\x4b\xdf\xdb\xf5\xb9\x46\x6b\x43\x85\xf3\x93\x5e\xcf\x02\x3a\x0a\x6c\xcb\x5d\x80\x9d\xf4\x0f\xcb\x3a\xf6\x33\x85\xcb\x26\xc3\xa2\x75\x4a\x79\xe5\x0e\x66\x76\x36\x7a\xbc\x82\x09\xa7\xdd\x2c\x45\xb4\xa6\xca\x35\xb1\xb5\x6a\x4a\xca\x9b\x4a\xe0\xf1\x43\x2d\xf0\x58\x2f\x1d\x2d\x2c\x74\x8a\x0c\x51\x24\xad\x2f\x91\x4e\x51\x84\x84\x97\xa6\xfe\x11\x59\x93\x43\xa9\xd0\xb3\xf1\x9f\x25\x73\xc9\xc7\x8d\xf4\x9d\x3d\x5b\x14\x36\x6b\xab\xbe\xf3\x7b\xaa\x2e\xfa\x29\xee\x9c\xbb\x5a\x4d\x53\xe5\x66\x39\x8b\x42\xee\xfc\x21\x06\x7e\x3f\x50\x01\xf1\xfb\x0d\x48\xd5\xc5\x4e\x6c\xd1\x9d\xc2\x22\xbf\x33\x55\xe4\xa1\x5c\xcb\x44\xc2\x76\x51\x8d\x01\x64\x26\x8e\x4b\x17\x55\xda\x29\x81\x4f\x94\x17\x2a\xb8\x8a\xe7\x94\x72\xec\x60\x12\x93\x87\xce\xb1\x5c\x64\x1e\xa8\xbc\x46\xa9\x0f\xfa\x39\xb6\xab\x8d\xb5\x95\x7c\x98\x16\x6d\x3f\x22\xc1\x5c\x4a\x70\x10\xb0\xc4\x42\x1c\xbe\xdd\xe1\xd1\xa0\x5c\x1c\xdb\x2c\x4c\x89\x79\xb3\xe5\x67\xb0\x81\xf7\xe2\xe3\x26\xac\x72\x27\x5d\x5e\xce\x2d\xb8\x17\xc5\x9a\xd0\x0f\x8b\x39\x79\xb6\x9e\x38\x67\x88\x60\x90\x14\x9c\x57\x43\xa6\x9a\x1e\xf4\x8c\xaa\x67\x99\x51\xdf\x0c\x31\xd3\xe5\x04\xf5\x9c\x26\x49\x5d\x5f\xa3\xb4\x0b\x43\x1b\x73\x70\x20\x41\x39\xbd\x25\x89\xd6\x9f\x71\xf3\xa6\x71\x48\x8f\x9e\x17\x2c\x72\xe3\x73\xf0\xa7\x7c\xa2\x9a\x53\xe1\xd0\x8c\x7a\xce\x67\x4b\x71\xa4\xb4\x8a\x52\x84\x7b\x18\x67\xd5\x32\x11\x1e\xb8\x40\xe2\xbe\x16\x9c\xba\xdf\x70\x07\x8b\x1d\x6b\x72\xf4\x15\x64\x20\xa8\xe5\x48\xfb\x2e\x36\x09\xfb\x1d\xec\x14\x60\xeb\x59\x64\x60\x23\xa3\xa5\xf8\x44\xd1\xc5\xf7\x33\xd3\x8b\x92\x7c\x65\x5d\x71\xcb\x7f\x33\x50\xf5\xd7\x6f\x36\x8e\x04\xe4\x63\x93\x24\xce\xa2\xb9\x38\xcf\x89\xb0\x40\xbd\x09\x35\xd8\xff\x4d\x31\x34\xe6\xe1\x30\xb1\x51\x5f\x18\xe1\x78\xa3\xa8\x5a\xe3\x45\x47\xfd\x94\xae\xda\x8c\x37\x83\xc4\x76\x42\xc3\xdf\xf2\x94\xfc\x35\x84\xc2\xfe\x85\x4e\x3e\x9c\x14\x7d\xa2\xd9\xd6\x0c\x5f\xca\x19\x6d\xba\x80\x70\xcd\xc6\x7d\x79\xdf\x52\x1e\xa5\x5b\x92\xd1\x11\x15\xa4\x4d\xb2\x70\x68\x72\x9b\xef\x52\x73\x39\xac\x5e\xee\xb8\x3f\x1c\xdf\xd2\xb9\x8a\x52\x8e\x67\x0e\x3a\xaf\x06\xc2\xc2\x34\xcb\x26\xe3\x72\xab\xb7\x7d\x0b\xf5\x47\x95\xfe\x33\x7d\x23\xb2\x99\x9b\xdb\x9b\xbc\x2f\x2f\xcd\x76\x0e\xcf\x92\xb6\x36\x22\x92\xef\x50\x85\x88\x8f\xf1\xc2\x01\x1e\x3e\xa9\x63\xc2\x4f\x15\x71\xe8\xde\x0d\x85\xa6\xef\xfa\x62\xe7\xce\xae\x2f\xd1\xfb\x57\xe6\x41\xcb\x97\xf5\x18\xfc\x65\xa5\x46\x1c\x46\x59\x38\x61\xed\x72\x7c\xed\xc7\x1c\xba\x89\x72\x31\xdd\x1d\xff\x13\xbe\x45\x04\x8e\xeb\x2e\x9d\xc8\x76\x0b\x93\x14\xc2\xd0\xee\xa4\x29\x9c\x60\xcd\x3b\xea\x0d\x8d\x4c\xb6\x62\x41\xc8\xec\xa9\x72\xef\x4c\x95\x39\xd2\x5c\xfe\xa7\xf9\xc2\xf8\xcf\x54\x2b\x99\x4a\xe6\x5f\xc0\xbf\x8a\xda\x8f\x4f\xa1\x4f\x07\x7e\x30\x89\xe7\x19\x51\x7e\xbd\x49\x8f\x1f\xbb\xe6\x48\xa0\xc8\x11\x41\xe8\xe4\x24\x6d\x4b\x67\x25\x95\x5d\x5a\xd6\x52\xb6\xa0\xa7\x86\x8f\x10\x04\xff\x45\xcf\x3d\x5e\xfa\x31\x57\x19\xde\x2f\x14\x28\xb7\xc9\x90\x6d\x5d\x71\x26\xac\x97\xd9\x37\x86\x89\x5d\x8d\x0a\xdb\x52\x57\x06\xba\x7c\x11\x18\xf4\x5e\xc9\xbe\x3e\xa6\xc2\xb3\x17\x85\xfd\x64\xea\xf9\x41\x3e\x51\x8f\xa4\x17\x65\xdc\xf4\x17\xb5\x2b\x95\x5a\x5f\x0a\x7c\xcc\x07\xf4\x0d\xff\x91\xaa\x63\xa4\xfd\x28\x9d\xe4\x2d\x95\x19\x5c\x57\x03\xc0\xd7\x55\x63\x27\x36\x79\x5b\x91\x76\x1c\xe7\xd7\xe4\x04\xe0\x17\x7c\x3a\xfa\x05\x85\xb1\xcf\x56\xf2\xdd\xbe\x66\xfe\x1e\x9e\x3f\x3e\x74\x4f\x63\x1f\x20\x1c\x0e\x30\xdc\x15\x2a\x1c\x20\x0b\xfa\x2c\x50\xbd\x9a\x40\xe7\x66\xe9\x28\x2d\xf7\xe8\x8c\x87\x58\xa2\xcf\xc9\xc7\xaa\xf9\xca\xb2\x8e\x5e\x14\xca\x5d\x5e\x9a\x26\x11\xf8\x4c\x9c\x3b\x7f\xf5\x55\x76\xc8\x10\x99\x14\x96\xd9\x6d\x64\x22\x3f\xf7\x2b\x9d\xbf\xdb\x52\x82\xe8\xe7\x50\x7e\xe7\x13\x97\x34\x84\x71\xea\x2a\x4a\x58\x34\x97\xf5\x9c\x5d\x33\x1b\xf3\xc8\x24\x7d\x6f\x5c\x65\x0c\x4b\x8b\x0c\xbb\xb4\x16\x28\x11\xba\x0e\xc9\x49\xe8\xeb\x05\xc2\xa8\xe4\x67\x48\x7c\x22\x34\x71\x5b\x0d\x7a\x61\xe4\x10\x6e\xe2\x08\x55\x84\x64\xc6\x5f\xf1\xee\x0e\x4d\x1c\xdb\x04\x38\x97\x72\xbd\x6b\xa6\x1e\x11\x9e\xd6\xf2\x6c\x59\x36\x19\x94\x97\xdf\x56\x93\x72\x9b\x8a\xd2\x12\x83\x96\xd2\x82\xda\x1e\xc9\x1d\x9e\xed\x0c\x2c\x63\x48\x5d\x4b\xdd\xb7\xd7\x2b\x6b\x2b\x61\xf5\x3d\x81\x1d\x2a\x08\x62\xa3\xde\x09\xe9\xc5\x33\xaa\xc8\x8d\x1d\x96\x17\xc9\x27\x2a\x2b\xa5\xbe\x43\x3e\x74\x37\xcd\xea\xb7\x4a\x6a\xfc\x42\x53\x0b\xb3\x98\x64\xe8\x40\x89\x56\x1c\x19\x36\x11\x8b\x7b\x52\xd1\x4e\x45\xe1\x0a\x33\xb5\x3a\x26\x07\xcf\xea\x50\xf3\x9e\xf3\x87\x3a\x66\x30\xc8\x08\x17\x45\x16\xd7\x31\x67\x39\x4d\xd3\x4b\x4d\x93\x56\xa6\xdf\xcf\xac\xb4\x96\xe7\x39\x97\x3b\x32\x55\x7d\xe6\x23\xe5\xbb\x93\x9b\x4e\xd7\x6c\x46\x4d\x7d\xa5\xa8\x76\x57\x09\x0e\xdd\x55\x49\xd7\x9a\xb1\x59\x91\x47\xb1\x61\x6d\x63\xf8\x37\x0c\xb1\xf1\xf1\x86\xbf\x61\x52\xc1\xe5\x98\x4c\xc8\x72\x15\x27\x77\xbd\x1e\xbb\x34\xdb\x89\xa3\xd0\xcb\x7e\x23\x42\xc0\x64\x2b\x1f\x57\x85\xcc\xd2\x6c\xc6\xaf\x85\xc7\xbb\xde\xe5\xdf\x57\x9d\x6a\x1e\xb8\x91\x62\xcb\xf6\x37\xf8\x42\x19\x6c\x46\xcb\x4a\x18\xfc\x94\x26\x97\x3c\xa5\xca\x3d\x7d\x4b\x33\xfd\xd4\xc0\x75\x38\x4a\xcf\xbe\x70\x91\x72\x6f\xa1\x5f\xf1\x95\xb2\x8b\x53\xc5\xfa\x74\x09\x63\x1b\x92\xb9\xfb\x64\xa3\x6f\xc3\xd8\x64\x94\x6d\x80\x09\x1d\xb9\x36\x2c\x12\x53\x20\x2a\x04\xe0\xa3\x1b\x8a\xe8\xfb\x5d\xaf\x55\x62\xc2\x15\x01\x01\x09\x64\xd7\xcf\x0b\xbc\x39\x55\x22\xec\xdf\xd0\x3e\x85\x4c\x56\xe9\x3a\xe0\x1a\xdf\x0f\xfc\xc0\xd2\xfb\x53\xbf\x45\xfa\x96\x38\x51\x4d\xc6\x73\x04\xe8\xa1\xdf\xa8\xa0\x1d\x1e\xc0\xda\x89\x38\x8b\xaf\x7d\x7c\xd4\x44\x27\x3e\x30\xb2\x3b\xb9\x36\xac\xb9\xf5\xcf\xeb\x18\x3f\x8d\x63\x99\x7c\x15\xa9\x9f\x1d\x68\x73\xca\x90\x68\x69\xfd\x79\x94\xc9\xb9\xe1\x68\x34\x4e\x27\x49\x7f\x24\x93\xa2\x58\x7b\xe8\x45\xf1\x71\x0d\x51\x45\xb3\x9e\x51\x11\x25\x36\x33\xd9\x7a\xbb\x5c\x4a\x0e\x00\xe1\x60\xee\x0f\x94\x92\xd1\xb9\xc6\xe4\x74\x9c\xa5\x2d\x0f\x8d\x01\x61\xad\x14\x1c\x1b\xc1\x1d\x26\x1b\xdb\xbc\x68\x53\x1b\xd9\xc1\x4d\x1d\x0b\x16\x42\x5a\xf4\x0b\xea\x4c\x73\xaf\xbe\xda\x09\x33\xf3\x06\x67\x1a\xae\x29\xef\x2a\x8b\x9a\x49\x77\xcd\x8c\x77\xfb\x08\xfc\xae\xc6\x1f\xf3\x50\x35\xec\x04\xcc\x00\x9a\xd0\xcc\x59\xc4\x21\x15\x05\x72\x0c\x55\x68\x10\x7f\x7a\xa5\x33\xb4\x24\x23\xeb\x1c\xa1\x0c\x0d\xaa\x01\xc2\x06\x79\xd5\x79\x20\x1a\x5b\x15\xca\x78\x27\x85\x7a\xa2\x11\x90\x3f\x49\xe2\xb4\x5c\xf3\xb0\x76\x4e\x2c\xc7\xc3\x2d\x4f\x35\x12\xa3\x8f\xcc\x68\x94\x16\xc3\xb6\x07\x28\x1f\xa3\x96\x88\x94\x8a\x5b\x8e\x8f\xe8\x46\x23\x17\x60\xd4\xb7\x26\xe6\xac\x06\x58\x97\x1f\x2a\x1d\xa0\x1f\x2a\xbb\x0f\x42\xa1\xdd\xfe\xed\xdf\x45\xce\x8b\x7a\x03\xa3\x96\x11\x46\x01\xee\x85\x80\xe8\x23\x98\x16\x07\x14\x71\x29\x61\x7b\x43\x49\xb0\x0f\x6d\xbc\x3c\xa3\xd9\x05\xae\xaa\x01\x83\xf3\x6a\xba\x99\xf7\x15\xff\x51\x13\xbb\x7c\x9e\x4e\x32\xe6\x9f\xc5\x4d\x9c\xc0\x47\xf8\xa4\x79\x97\xac\x24\xe9\x5a\x6c\xfb\x03\xbb\xad\x45\xbc\x20\x10\xf4\xbb\x14\xd7\xc1\x1b\x9e\x54\xc8\x53\xdb\xef\x47\x56\x35\x01\xb7\x81\x1c\x1b\xb5\x27\x58\xed\xaf\xad\x18\x22\xd1\x09\x74\xb3\x3a\x4e\xb1\xf5\x8f\x9a\xb0\xea\x59\x94\xaf\xf0\x04\xbc\xc8\x22\xd1\x55\xa3\x37\xf7\x9d\xc0\xb7\x0a\x2e\x4f\x9f\x55\x94\x2f\x23\x93\x44\x6f\x38\xaf\xe4\x44\xf1\x7d\x58\xa0\x92\x78\xd2\x8d\x88\x92\x41\xfe\x97\xa4\xfc\x8f\x3b\x63\x1d\xe5\x96\xf0\x06\xd8\x12\x5f\xe8\xaa\x9e\xc3\xd7\x15\xe8\xe1\xdd\xa9\x87\x54\x21\xff\xc1\x4d\xb6\x36\x9a\x3a\xd2\x93\xbc\x10\x17\x80\xbd\x0f\xea\x74\xd4\x75\xde\x9f\x2a\xea\xb5\xcb\x35\x8c\x73\xb9\x77\x93\x34\x59\x25\xd0\x81\xae\x28\x5c\x56\xe3\xa0\x24\xb0\xef\xa2\xe4\xed\x63\x3a\xc4\x30\x1a\x66\xe9\x38\x4b\x43\x9b\xe7\x69\xc6\xf6\x5d\xb5\x27\x16\x1d\xa3\xd3\x76\x8f\xf0\xea\xab\x9d\x41\x9a\xe0\x87\x01\xf9\xbf\x83\x77\x84\x6c\xe0\x84\x62\x56\xdc\x9c\x3e\xae\x50\x3b\xfb\xf8\x57\x10\x0b\x7c\xae\xd9\x18\x3e\x57\xa1\x6a\x66\xfb\x13\x6a\x3c\xe4\x68\x14\xa2\x2d\xc7\x88\x55\x3e\xa1\xa7\x25\x91\xbb\x6f\xfc\x70\x8d\x15\x57\x75\xbc\x66\xbd\x5e\xe8\xf4\x2c\xe1\x98\x11\x9a\x23\xc1\xdf\xd1\x55\x8a\x62\x3b\x36\xbc\x09\x7e\xd9\x60\x2c\x40\x82\x7b\xba\x5c\x09\xfb\xb7\xbf\x94\xa5\xd9\xd2\xdc\x10\xa0\x42\x5e\x2c\x0a\x73\x9f\x55\x04\x0b\xe8\xf2\x04\x6e\xfa\x8c\xaa\x62\x7e\x65\x12\x81\xb6\xcf\xb1\x92\x9d\x99\x7a\xf1\xbc\x33\x8d\xf6\x6d\x9c\xd9\x65\x11\x3d\x43\xf3\xef\x31\xdc\x8b\x93\xa8\x76\xd3\x86\xed\x1a\xaf\x38\xed\xd6\x41\x64\xd8\xe7\x4a\x7d\xc8\x7f\x44\x13\xf5\xbf\xf8\xf7\x16\x5a\x7e\xa9\xb3\x4a\x15\x9f\x04\x15\x79\x8d\x22\x4b\xe3\xfc\x91\x96\xd0\xa9\xff\x8f\x0f\xa6\x1a\xc9\xa8\x6a\x35\xb7\xb5\x31\xb9\x4d\xb6\x53\x78\x85\x2b\xe5\xef\x32\x78\x10\x50\xa4\x94\xa1\xde\xb0\x26\x36\x09\x46\xed\x58\x5d\x70\xaa\x66\x7a\x3e\x77\xfc\xda\xfd\x28\x07\xfd\x99\xbc\x13\x27\xd7\xea\x6a\x33\xdf\x9c\x2a\x29\xc3\x93\x8e\xa1\xce\xf4\xb9\x2c\x23\xfc\x22\x58\xba\x2c\x25\x18\xa8\xbe\x14\xf7\xef\xf0\x86\x2f\xd4\x1c\xd9\x0b\x98\xb0\x34\x05\x27\x45\xd8\x92\xef\xd2\x15\xf0\x31\x22\x13\xb9\x60\x33\xa6\x36\x82\x68\x32\xb9\x71\xa6\xa5\x59\x87\x0b\x90\x36\xc0\xa8\xcc\x09\x8a\xcc\x8c\x2b\x93\x9e\x53\x0f\xbc\xb8\xa0\x82\x33\x72\xdb\x36\x4b\x76\xa9\x97\xf0\xae\x66\x47\x51\xcf\xfd\x3c\x16\x3b\x23\xe0\xf8\xde\x05\x0a\x24\x6f\xa1\x4f\x74\x25\x20\x0a\x11\xa1\x2d\xd5\x94\x86\xa3\xc4\x03\xfb\x33\x3c\x64\x40\x60\x1f\xeb\x36\x10\x4c\xe7\x63\xbb\xe6\xcc\xb7\x14\xbf\x7c\x00\x58\x7f\xae\x65\x34\x36\x89\xa8\xe5\xd8\xf2\x15\xfa\x13\x8a\x38\xec\x84\x2f\x5b\xa2\x07\x0c\x04\x37\x1e\xfa\xd3\x14\xb3\xcb\x08\xb8\x0f\x13\x77\x20\x66\x17\x66\x4e\x35\x42\x69\x07\x13\xe4\x90\x40\x21\xdc\x44\x0e\xc9\x27\xee\x95\xd0\x96\xcc\xdc\x9d\x20\xcd\x46\xc3\x8a\x8f\x37\x1c\xab\xea\x24\x2c\x8d\xef\xf2\x24\x66\x42\x01\x40\x98\x4e\xa3\xe4\xe5\x80\x09\x4b\xb3\x22\xba\x1d\x54\x70\x24\xd1\x72\x91\xef\x2e\x3f\x86\x58\xf7\x8a\xe2\x49\x7a\xa0\x1c\x1f\x37\x61\x71\x77\xdf\x9f\x6e\x6b\x42\x0b\xea\xff\x6c\x43\x39\xf1\x95\x4e\x94\x98\xbe\xfd\xca\xc4\x14\x10\xa7\x71\x85\x37\x3f\xc4\x78\x41\x21\x25\xef\xb8\x95\x21\x08\x37\xdf\x1b\x65\xae\x25\x5c\x12\x83\x56\xb0\xec\x3e\xa7\xe5\x0a\xf3\xb5\x53\x31\xea\x31\xae\xe3\xa1\x7c\xe3\x4d\xf4\x49\xc3\x68\x40\xea\x29\x4b\xb3\x5e\x89\x55\xcb\xb2\xd6\x95\x1f\x17\x3b\xa3\x34\x2f\x5a\x14\xce\xc3\x9e\x9d\xc0\x68\x3e\x9f\xb8\x76\xfb\xb2\x09\x2d\x4d\x23\xc3\x2b\xef\x02\xe7\x07\x6e\xee\x86\xd6\x7e\x3d\x8f\xe8\x1c\xce\x1f\x02\xd9\x58\x65\x6d\x10\xa0\x49\xb7\x83\x6e\x06\x39\x23\x78\x8d\xb9\xfa\x1f\xf8\x59\xc5\x22\xe5\x52\xfb\xc3\xc0\x67\xee\xef\x26\xe5\x7d\xb7\xfd\x24\xc5\x0e\xc5\x33\x7c\x45\x15\x93\x2e\x2b\x9a\xb1\x62\x38\xc9\x46\x69\xd2\x87\x32\xb7\x63\xeb\xdc\xef\xd9\x3a\xbd\x4b\x8e\x4a\xbb\xde\x9f\x84\xe5\x6e\x77\xc4\x96\x9f\x28\xf1\x43\xfc\x20\xca\xe7\x2c\x3d\x83\x40\xfa\x5d\xb7\x09\xcb\x2c\x2f\x2b\x97\xec\x97\x5f\xf6\x63\xa3\xe5\xa3\x72\x1d\x00\xc7\x18\x7d\x7b\xaa\x26\x55\x4f\x07\xaa\x20\xf1\x38\xed\x24\xa9\x9d\x3a\x6c\x4f\x68\x7a\xb9\x1e\x91\x02\x93\xbc\x80\xa3\x5d\x2c\x97\x86\x43\xcb\x31\x88\xa2\x65\x5a\x74\x6c\x0d\xf5\xe2\xd4\x41\x8a\x9e\xc1\xee\x83\x5c\xfd\x22\xf2\x16\x3c\xdb\x8f\xd5\xc4\xca\xcd\x9a\x89\x7a\x79\xfe\x10\x09\xd0\x64\x7d\x8e\x68\x45\xa4\x80\x6e\x1b\x19\xcd\xd7\x61\x19\x61\xae\xcf\x54\x10\x04\x6f\xd8\xec\x51\x35\x40\xbe\xa5\x40\x47\xf7\x15\xed\xc1\x5d\x82\x1e\x3b\xc6\x3d\x4f\x5c\x72\x89\x4b\xc1\x08\xcb\xae\x06\x4a\xcb\x64\x06\x1c\xd9\x22\x43\xa0\x48\x76\x8e\x06\x8f\x46\x14\x58\xfc\xed\xce\x2b\x7b\x2a\x74\xd9\x4e\xd1\xea\xc9\x0d\x3d\xd3\x4d\x37\x86\x54\xff\x16\x7e\x1d\x21\xd2\xee\x0d\xcf\xba\xde\xfe\x5b\x5d\x6f\x38\x37\xd9\x9d\x20\x92\xbb\xd8\x48\xf0\x95\x16\xa6\x48\x5b\xaa\x22\x0a\x06\x47\x3e\x56\x45\x91\xb1\x59\xb5\x7d\x4a\x10\x85\x8f\xbc\xbc\x36\xa1\x77\xf1\x9c\x6c\x67\x2a\x45\xa9\x74\x90\xb6\xb4\x93\x6c\x29\x7a\x19\x09\x1d\xcc\x60\x90\x99\x55\x53\x6c\x53\x32\xf8\x4c\x01\x4a\x3e\xf3\x71\x86\x59\x5e\x5e\x4f\x22\x87\x96\xc1\x9d\x5e\xd5\xe2\x20\x57\x6b\x10\xda\x32\xc5\x7d\xcd\x9a\x38\x9d\xe4\x32\xc6\xa0\x8d\xbe\x8c\x79\xea\x0b\xcf\x46\x70\x76\xc8\xfd\x51\x79\xe0\xe3\xda\x73\x5c\x7c\xe9\x60\x67\x90\x59\x8b\x76\x3d\x2c\xcd\x55\xa5\x67\x77\x35\x90\xa9\x9a\x71\x96\x0e\x32\x33\x1a\x71\x90\xb4\x85\x31\x0a\x44\x44\xd7\xb0\x6c\x24\xdf\x6d\x28\xdf\xf6\xa3\x7c\xc4\xac\xa1\x0e\xeb\xe2\xa2\xe6\x73\xb5\x7a\xd2\x0b\x44\xb6\x3f\xe3\x31\xce\x2c\x80\x8a\x42\x60\xab\x5b\xe1\xe0\x75\xca\x3a\x17\x15\x41\xd0\x38\x8b\x56\x4d\x61\x1f\xa5\x27\xc6\x84\x26\x98\x0b\x66\xb9\x4e\x7a\x9f\xd8\x03\xf7\xc8\xa0\x09\x77\x6f\xf9\xdd\x8e\x0d\xdf\x8d\x5e\x71\xbf\x03\x86\x19\xc0\x62\x01\xed\xb5\xe6\xe6\x9c\x06\xa8\xef\x1d\x4c\x46\xf9\xba\x7a\x0d\x28\xff\xf1\x71\x8d\x9b\x89\xe6\x3d\xa2\x22\x1c\x4a\xdf\x54\x38\x77\x69\x51\x09\x19\xaf\x37\xcb\x76\x32\x1e\xa6\x59\x64\x28\x13\x10\xe6\x4f\x3f\x41\x7d\xca\x11\x78\x9b\xd1\x28\x4d\xa2\xc9\xa8\xed\xcd\xfb\x7d\xa5\x93\xc7\xc5\x04\x19\x34\x55\x54\xbc\x69\x31\xe3\x57\xc4\x31\xfc\x19\xc6\x23\xa4\xc7\xc7\x67\x6a\xb1\x1c\xd3\x1c\x8d\x65\xc6\xc8\xa2\xcc\x88\x8e\x4f\x05\xbe\x95\x74\xaa\xb6\x46\xe6\xe6\x3b\xa3\x34\xb1\x85\x14\x11\xdd\x60\x44\xb9\xbd\xc5\x1d\x7a\x5f\x63\x47\x26\x27\x60\x81\xc5\x9e\x60\x26\x7e\xac\x12\xa1\xe5\x6f\x30\x1a\xbd\xcc\x24\xe1\xb0\xe5\xeb\xdc\x60\xed\x10\x7d\x1c\xff\x00\xe6\x4d\x42\xe1\x96\xee\x1d\xc0\x46\x1e\xd1\xac\x14\x37\x1a\xa7\xf9\x27\xa3\x5e\x66\xe3\xd8\x28\xc1\x15\x6e\x6a\xf3\x89\x02\xdb\x25\x36\xce\xb9\x59\x2d\xb1\x45\xb9\xa0\x44\x87\x5b\xa9\xb3\xff\x48\x55\xfb\x81\x0a\x29\x58\xcb\x7d\x0b\x95\xe9\xad\x8b\x4a\x99\xd0\xc9\x76\xb6\x3d\xa5\x09\x87\x1d\x88\x21\xae\x2b\x72\xe7\x0f\x15\xad\xa7\x49\x06\x84\xca\x54\xd3\x7d\x77\xf0\x5c\xf9\xa4\x06\x8e\x58\x9a\xed\x8c\xcc\x7a\x0f\xe2\x39\xb0\xf2\x60\x56\xe0\xe3\x87\x8c\x2a\x15\x76\x86\x82\x30\x04\x6b\xa0\xa9\x42\xd5\x86\x2b\x99\x5a\x06\x0f\xee\xed\xad\xc6\x19\xa6\x22\x8b\x46\x2d\xcd\x55\x32\xad\x70\x7a\xd4\x83\xc0\x17\x3b\xeb\x36\x8e\xd3\x35\x38\x0f\x47\x51\xe4\x5a\x25\x67\x14\xf6\x36\xb7\x49\x94\x66\x4f\xf8\xb8\xf9\xcf\x02\xc5\xa4\xc4\xd5\x2e\x61\xc5\xa0\xb7\x85\xa8\xee\x34\x3d\x5e\xe9\x46\x2a\x26\x1a\x06\x33\xb3\x28\x4b\xd0\xfa\xc5\x83\x6e\xdc\xb6\x7c\x53\xc0\xa1\xfd\x0e\x6f\x32\xe1\xee\x29\x1f\x01\x0a\x16\x1f\xc1\xd6\x8a\x7e\x78\xb9\xe9\x91\xc9\x5f\x6d\x9a\xdc\x1f\xa5\x93\x2c\x71\xde\x09\xf5\xe7\x5f\x57\xb5\xe8\x5f\x57\xf5\x85\x3c\x2a\x26\xc6\x75\x65\xf1\x24\xbe\xa3\xf8\xa8\xfe\x01\x35\x19\x45\xa1\x88\xbe\x10\xaf\xeb\x27\xb5\x15\x51\xba\xe7\x61\x9a\xc0\x00\x22\xfe\x05\x3f\x26\x1f\xab\x7e\x79\x68\x26\xb9\x2b\x51\xc9\x0e\x53\x86\x5f\xe5\xc0\xdf\x9b\xfe\x94\xc7\xa8\x26\xab\x51\x96\x26\x23\x9b\x14\x26\xde\xed\x11\x1d\xd3\xa9\x1f\xb5\x3f\x17\xe8\x80\x8a\x90\x04\x15\xfc\x11\x7f\x02\xdd\x5f\x09\xbb\x9e\x50\x57\x96\xe5\x7b\xe8\x5d\xb9\x6f\x70\xca\xd1\x57\xc9\x65\xe0\x5d\x71\x36\x08\x2c\x39\x38\x0b\x78\xcc\x5c\x21\x85\x7f\x84\x2d\x84\x85\xc2\x14\x1a\x32\xa6\xa0\xb4\x99\x27\x49\x14\x46\x63\x13\x3f\x4a\xd1\x96\x74\x68\xcb\xdf\x92\x5c\x43\x11\x42\xb1\x9a\xa7\xd3\xb2\x5e\x52\xea\x0a\x0e\x4b\x87\xa0\x9b\xeb\xb9\x81\x2f\x86\x30\x3b\x19\x9a\x02\x75\x1d\x7a\x62\x92\x67\x14\x2b\xee\x86\x91\x25\x7c\x52\x2b\xf8\xcd\x1f\xea\x24\x29\xa6\x27\xb1\x44\xce\x29\xce\x90\x73\x4d\x54\xc9\xf9\x57\x26\x4c\x5e\xe1\xe6\x31\x01\x02\xe0\xe3\x26\x91\x50\x6a\x1e\x15\x36\x33\x18\x29\x64\xaa\x92\xc0\x43\xb7\xde\x6a\x00\x0a\x77\xc2\x61\xea\x9b\x91\x8e\x07\xcc\x65\x94\x9f\x54\xe2\xbe\x35\x50\x49\xb8\xaa\x9a\x2e\x1a\x9d\xa9\xdd\x47\xf9\xed\x69\x12\xda\x2c\xe1\xf0\x1d\x11\xeb\x5b\x81\x62\x95\x02\x25\x2b\xae\x6f\xcb\x43\xe3\x20\x5c\x3a\x12\x16\x29\x11\xd6\x6a\x79\x91\x2d\x85\xc3\x09\xd3\x24\x31\x04\xe9\xd7\x3c\x70\x37\x03\xa5\x4b\xba\xa9\x8b\x65\x47\x1e\xaa\xde\x93\xd9\x3c\xca\x0b\x27\x51\x27\x9c\xde\xf4\x59\x3e\x51\x93\x38\x99\x49\xf2\x74\x84\x14\x9b\x99\xce\x90\x98\x0b\xed\x99\xdf\x2f\x76\x9f\xdd\xa7\xf8\xb0\x4e\x68\x75\xa2\x13\x0a\xcf\x94\xdb\xc4\x14\x76\xaf\x07\x41\xbe\xab\xc5\xe7\x6f\xa9\x11\x00\x46\xec\x38\x97\xb2\xb0\xb0\xc5\x99\x95\x30\x42\x96\x16\x09\xd1\xdd\x8f\x34\xdf\xdc\x67\xc8\x38\x90\x96\x5c\x0f\xd4\x40\xc7\x0f\xa6\x3a\xb5\xfb\x67\xae\xdf\x3a\xda\xd7\xdb\x67\xa0\xd4\x20\x90\x2e\x25\xde\x73\x55\x81\x53\x4e\x36\x8d\xb9\x16\xc3\x32\xbd\x6e\x7b\xdb\x03\x7e\x19\x98\x6c\xb4\x51\x84\xef\xba\x49\x0f\xd8\x14\xb2\x0a\x44\x46\xc8\xe7\xb9\xc7\x34\xf4\x60\x98\x59\x53\x70\x88\x04\x70\x1f\xd3\x45\xf1\x89\x0a\x11\x08\x34\x42\xda\xc4\x7b\x7d\x49\xe2\x4c\xa0\x86\x67\x30\x8f\x8c\xe7\x72\x4d\xb1\x0d\x71\x15\x1b\x86\x6b\x0f\x05\xdb\x6e\x2f\xf8\x70\xe4\x24\xdd\xa1\xaa\x1f\xcd\x73\xd0\xc2\xec\xa8\xce\x60\x95\x0f\x1f\xc1\xe2\x25\xc5\x47\x4c\x3d\x78\x2e\x9f\x2a\xa6\x60\xd7\xdf\xd7\xc3\x67\x81\x2e\x2c\x79\x2d\xca\x55\xf3\xba\x76\xfb\xdc\x68\x13\x86\x1c\x1f\xd1\x8c\xac\x2d\x23\xa5\xc7\x3c\x8c\xe5\xd1\x0d\xc5\x13\xb7\x05\x07\xe0\xc6\x67\xcb\x98\x44\x78\x53\x14\xd8\xe2\x9f\x4c\xb5\x20\xbc\x1a\xdb\x69\x75\x3d\x5c\xf0\xb2\x2e\xbf\x80\x4f\x02\x7d\xac\x2d\xd5\x32\x5b\xc9\x6c\xf2\x06\x62\x0f\x47\x25\xea\x0b\x45\x97\x74\x39\x76\x9c\x66\x68\xe0\x94\x7f\x2c\xe5\x08\xdf\x0c\x84\x7a\x38\xf7\xc0\x6a\x96\x6f\x6e\xae\x63\xca\x30\xc7\xf6\x67\xfc\x02\xbc\xac\x3d\xc8\x1d\xc5\xb3\x72\x59\x8f\xcb\x1d\xa9\x25\xa2\x2f\xcf\x1f\xea\xa4\xc5\xd0\x66\x6b\x11\xcb\x24\x32\xa9\x70\x50\x61\x18\x7e\xca\xd5\x2d\x7b\xe3\xd4\x26\x86\x2b\x2e\x08\xdf\xc0\x3a\xc4\xc7\x95\x32\x46\x3e\xb4\x8f\xd1\xf7\x60\x35\xde\xd3\x23\xb6\x8f\x75\x95\x6d\xda\x9c\xb6\x7e\x69\xde\xf1\xae\x95\x4b\x53\xfc\x3e\xbd\x44\x41\x1a\xd1\x3d\x22\x5b\x64\x49\x05\x27\x5e\xe4\x16\x01\x8f\x12\xa3\x26\xf0\x54\x77\xfb\x3c\x47\x19\x26\x46\x49\x3f\x5a\x5e\xb6\x99\x80\x0e\xe4\x0d\xf9\x50\xe6\x52\x53\xb6\x1b\x4f\x5e\x9f\x64\x8c\x10\xd2\xbf\x2b\xec\x10\x0d\xfc\xd0\x79\x6c\x64\x92\xc5\x49\xa0\xab\xde\x9c\x17\xd9\x89\x92\x70\x48\x33\xae\x58\x88\x4f\x6c\xf8\xc6\xd6\xd3\xca\xd5\x9f\x6e\x18\xd8\x4c\xc7\xe3\x34\xb7\x68\x05\xc1\x7f\x60\x62\x50\x50\x9f\xbe\x4e\x5c\x97\x84\x44\x2c\x99\xf8\x4a\x87\x88\xff\xb7\x9c\x1e\x82\x17\xff\xb0\x71\x54\x80\xde\xd2\x15\x80\x9d\xd2\xfa\x55\x0d\x72\xdb\x01\x1e\x78\x71\x3b\x2e\x7b\x5e\x0f\x63\xd1\x7d\x82\xe5\xf9\x2c\xf0\x89\x24\xd0\x10\xe8\x1c\x5d\x9c\x0a\xb4\x79\x64\x0b\x13\xc7\x93\x6c\x10\x85\x1c\x1c\xa0\x58\x73\x64\xea\x0b\x37\x47\x1a\x90\x4a\x4b\x9d\xa1\xf5\x80\x3d\x29\xe9\x7b\xc3\x78\x49\x81\x8b\x97\x4d\x36\x8a\x92\x41\xc1\xf9\x9a\x93\xa4\x72\x96\xea\xcf\x35\x42\xf8\x6c\xe0\xfb\xfb\x83\xcc\xda\x95\x87\x32\x9c\x3f\x6c\x66\x74\xd5\x66\x09\xe8\x19\x94\x49\xd9\xef\xb9\xfd\xdd\xa8\x92\x19\xf5\x62\x34\xa0\x1d\x6d\xa0\x0f\x05\xce\xa8\x61\x6b\x60\xab\x80\x88\x7a\x0e\x46\x50\xa6\x16\x9e\x51\x02\x4d\xa3\x28\x21\x14\x60\xcb\xb1\xb7\x01\x1b\x86\x06\xc1\x55\x6c\x2f\x19\xdf\xd6\xfb\x78\x3d\xcd\xda\x0f\x27\x1b\xaa\x70\x12\xf9\x5c\x3b\x1f\xaf\x53\xc5\x98\x29\xc1\xe1\xae\x5d\x38\xed\xc4\x55\x79\x20\x4c\x88\xc3\xb7\xef\xd7\x17\xa8\x91\x17\x25\x83\x49\x54\x46\x95\x68\xe5\xe9\x51\x77\x38\x24\x06\x6d\x3c\x6c\x42\xe7\xc0\x81\x4e\x3e\x36\xf9\x88\xf7\x22\x6b\x5d\x05\x7e\xfd\xfe\x58\x69\x32\x26\x76\x60\x8a\x68\xd5\x62\x58\xc6\xc9\xf2\x96\x0e\x44\xe8\x31\x2a\xa0\x99\xa6\x5a\x41\x66\x43\x1b\x8d\x8b\xbc\xdd\x00\xbd\x62\x05\xf0\x69\x05\xa2\x25\xa5\x9d\xc9\xb8\xaf\x0a\x8f\x2e\xd2\x74\x53\x37\xf7\xa6\x5e\xa4\x26\x1c\x5a\x9b\x45\x29\x07\xb6\xa2\x89\xda\x72\x6c\x5c\x9b\x8d\xe3\x75\x79\x14\xaf\x62\xaa\xe0\x15\x8f\xc6\x5f\x70\x03\xbb\x35\x20\x09\x71\xf9\x17\x94\xc0\xb8\x0d\x25\xb3\x7c\x6a\xae\x6f\xfa\x53\x55\x38\x2e\x35\x99\x0f\xcf\xbe\xb8\x47\xcd\xb7\xde\xc4\x02\x56\x2e\x4b\xf2\x6a\x22\x32\xdc\x02\x53\x1b\xc2\x98\x07\x78\xc8\x8e\x6b\x48\x13\x22\x96\xc6\x51\xb4\xa0\x1b\x48\x56\x32\xa3\x04\xdc\x91\xde\x9f\x55\x2d\xb2\xba\xb0\xc4\x81\x03\x9d\x62\x32\xa2\x76\xa2\x43\x7c\x7e\x4e\x9f\xe0\xe3\x5a\xd2\x52\x3e\x94\x3c\x9f\x8c\xfc\x4c\x02\xda\xcb\x77\x95\xe9\x65\xfd\x0d\xc4\x97\x67\x2b\x1b\xaa\x30\x3d\x6a\xd9\x60\x3d\xdd\x56\x28\xfd\x4b\x6a\x60\xe5\xa8\xe2\x3b\x1b\x73\x13\x66\xb7\x47\x5b\x22\x7c\xc5\xc6\x79\x00\x85\x20\x5c\xee\x29\x74\xbe\x60\x02\x6e\x07\x4a\x30\xf9\x27\x53\xa6\x11\x79\x5e\x95\xd1\xb3\x22\x0a\x27\xb1\xc9\xe2\xf5\xbd\x8a\x7a\xf3\x6e\xe0\x2b\x8f\x6f\x23\x39\x90\x66\xc4\x76\x61\x75\x69\x53\xdc\x53\x26\xbc\x85\xe2\x88\x1b\x63\x75\x14\x5e\x1f\x07\x95\x59\xba\xd2\xe7\x09\x03\xb0\x37\x68\x9a\x78\xca\x14\x85\x09\x57\x76\x79\xac\xdb\x0d\x0d\x0b\xe2\xc0\x07\xdb\xe8\x03\x7a\x22\x88\x4a\xbf\x8b\x2b\x13\x7c\xad\xe3\x9a\x89\x8a\xa1\x9f\x72\x12\x46\x38\xff\xb1\xf3\x8a\x64\x68\xc5\x0c\x0d\xfa\xbe\xc2\x0a\x42\x5f\x29\x4c\x20\x0d\x0a\x16\x3d\x9b\xd9\xe5\x02\xdf\x8d\xce\xed\x6d\x7a\x26\x7c\xac\xa2\xd7\xdc\xac\x46\xc9\x80\x61\x2e\x32\xe3\x07\x63\x81\xe7\x74\x36\x50\xe3\x5e\x98\x35\xad\x28\xfb\xc9\xe4\x81\x2f\x8e\x73\x53\x79\x46\x6d\x95\xd3\x95\x19\x03\x3f\x68\x74\x2c\xd0\x5b\xc8\xdf\x71\x2f\x4b\xd7\x12\x40\xa3\x04\x82\xa4\x26\xae\x2e\x6f\x17\xbd\x3a\x3c\xdb\x59\x58\x78\xbc\x7c\x85\x78\xcc\x5f\x9d\xfa\xde\xe3\x51\x7a\xa8\x48\xb4\xbe\x05\x1f\x01\x07\xf5\x2d\x3d\x62\x77\x2b\x50\x3c\xfc\xff\x6a\xea\xd9\x3b\x3f\x56\xca\x95\xf7\x08\x22\x02\xfb\xc4\xc5\x4e\x2c\xf4\x4d\x8c\xbd\x02\x84\xf7\xbb\xd4\x0c\x13\xdb\x22\x0d\x8e\xe5\xd8\x8c\x7a\xe9\xba\x60\x5d\x18\xa7\xa4\xe6\xf3\x4e\x34\xe9\x64\x2f\xa7\x69\x31\x4c\x63\xc0\x4c\x70\x0f\x00\x8e\xf0\x71\x2d\x0c\x3b\xf4\x52\xa7\x97\x45\xf9\x0a\xad\x16\xd6\x97\x56\x94\xdd\xf7\xfc\x78\x40\x18\x9a\xb5\x5d\x7a\xd0\x87\x95\x7d\x98\x62\x5f\x69\xe1\x9e\xd5\x61\x07\x14\x87\x50\x77\xd9\x74\x21\xd9\x1b\x51\x1c\x02\x24\x29\x3c\x85\xaa\x0d\x77\x6a\xaa\x68\x92\xbe\x5f\xa1\x24\x4d\xa2\x32\x0c\xd0\x4c\x3a\xae\x68\x7c\x5f\x61\xf6\xcf\xb8\x6d\x93\x8f\x2d\xd3\x3f\xba\x2c\xe5\xd1\x0d\xd7\xee\xda\xdf\x41\x4a\x4f\x57\xfa\xe0\xd9\x1a\x73\xea\xc2\x42\x27\x34\xe3\x96\x4a\x52\x2f\x29\x4b\x7f\x49\x05\x0d\x0b\xf3\x07\x67\xfc\xbb\xb9\xac\x34\xf7\xbe\xf2\x45\x66\x2e\x02\x68\x6e\x6f\x57\x29\x1b\x3c\xd9\xf5\xe9\xe3\x30\x2d\x90\x7e\xe2\xe9\xfe\x44\xb7\x90\x7f\xa2\xe4\x1c\x2f\xa8\x69\xe7\x0b\xaa\xde\x61\xc2\xcc\x6a\x4a\x68\xb4\xa2\x54\x05\x7b\xde\xa1\x8a\x1b\xdc\x48\xb9\x68\x58\xeb\x02\xde\x6c\xeb\xa2\x32\x65\xc4\xc6\x8b\xe1\x1b\xd7\x51\x2e\xaf\x4e\x4a\x02\x74\xb7\xb8\xbf\xcf\xe1\x1d\x65\x46\xc7\xbf\x62\x36\xac\xf2\xe2\x9a\x82\x8f\x30\x4b\x93\x15\x37\xd8\xc4\xa4\xcf\x81\xa6\xe8\xf8\xd4\x65\x74\x83\xcc\x8c\xed\x6a\x94\xc0\xf5\x21\x6e\xf8\x2d\x15\x43\xfc\x96\x6b\xe2\x0f\xd3\x49\xd2\xe7\xba\x1e\x6c\xfc\x51\x1d\xfa\x1d\x0d\xaa\x11\x23\xb6\x02\x3f\xaa\xc0\x87\x99\xf5\x84\xb6\x0c\xce\x6c\xb6\x6a\xb3\x5c\x29\x06\x32\x4f\x82\x00\x11\x7d\xd0\x93\x9b\x78\xd5\xf4\xd3\x0c\xde\x1d\x17\x79\x4a\x91\x3c\x35\xa9\x22\x2e\x76\xf2\xc9\x68\xc4\xb4\x14\x8e\x61\xe3\x42\xa0\x99\x64\x54\x97\x68\x71\xf6\x60\x5b\x0d\x57\x9f\x54\x0a\xd8\x0c\x70\x00\x9a\x69\x4b\x2d\xdc\xd0\x16\xad\xd6\x2f\xff\x3c\x57\xf0\x99\xe3\x9c\x4f\x02\xcf\x67\x59\xa4\x49\x84\x2b\x07\x44\xf0\x94\x92\xb1\x3d\xe5\x68\x7d\xfb\xa9\xcd\xa9\x03\x0f\x57\x73\x8c\x98\x5a\xa4\xed\xa2\x12\x73\x04\x0b\x0e\xf2\xe7\x58\x57\x8e\x2b\x17\x7d\xf2\x99\xae\x82\x86\x73\xf9\x4e\x24\x95\xb6\x6f\xd4\xbf\xdb\x59\xb3\x76\xa5\x5d\x26\xe3\xc8\x51\xcf\x28\xb1\xb6\x7b\xaa\xc1\xde\x48\xef\x34\xb0\xd9\xc8\x24\x12\xf3\xf2\xd4\x35\x56\x38\xb7\x14\x20\xb4\x78\xb2\x91\x5e\x3a\xb6\x83\xa8\xcc\x97\x19\x2c\x27\x24\x1b\xe5\x6f\x0a\x77\x87\xcf\x97\x87\xe9\xc8\x3e\x5e\x2e\x30\xf8\xb6\xe3\xec\x3a\xd1\xb1\xdc\xdd\x55\x42\x1c\x7f\x00\x2b\x88\x70\xe5\x8c\x46\xe8\x9c\xd6\x94\x6e\xff\x42\xa3\xa9\x01\xdc\xa4\x4f\xfc\xf1\xd3\xa5\x99\xdb\x9a\xe9\xaa\x2c\x65\x46\x65\xe7\xbf\x8b\xfb\x93\x05\xa1\xbc\x71\x61\xb2\xc2\xf6\x1f\xf5\x25\xc6\x16\x71\xbb\x03\x61\x79\x5f\x57\xc5\xce\xe9\xca\xdc\xc7\xe4\x9a\x61\x7f\x7f\x0c\xff\x86\xb7\x05\x29\x2e\x34\xcc\x58\x08\x83\x3f\x0e\x53\x21\xec\x18\x0d\xdb\x2b\x4c\x47\xb6\xcf\x5c\x0f\x08\x73\xae\xa8\x90\xe7\x4a\x23\x71\x78\x9c\xae\x71\xed\x1b\x4f\xeb\x96\x16\x5a\xff\x78\xea\x5b\x0e\x8d\xd3\x12\xfd\x28\x1f\x7b\xe8\xa5\x1e\x2f\x70\xe3\xa0\x9e\xe7\xbb\xd1\x24\xf4\x6d\x9e\xdb\x0c\xe5\x53\x37\x8c\xee\x81\x64\x97\x6b\x17\xbd\x7f\xa1\x63\x92\x41\x8c\xa1\x0e\x24\xf1\xdf\xd3\xf8\xcc\xef\xd5\x0a\x34\x2f\x74\x42\x9b\xd0\xe4\xbe\x6b\x4f\x60\xbd\xf1\xb1\xf3\x7e\x61\x9a\xac\x5a\x4e\x82\x17\x19\x01\x72\x4a\x61\x72\x30\x3f\x27\x29\x6c\xc3\xe3\x48\x27\xc5\x20\x75\xfd\x30\x21\x25\x6e\x39\x96\xb0\xdb\xaa\xad\xa8\x29\xeb\xb3\x28\x4c\x77\x7b\x55\xcd\x8f\x29\x26\x67\xa5\xbb\x8a\xf4\x2a\x5b\x77\x81\x5e\x97\x21\x99\x13\xc4\x73\x40\x86\x8f\x55\xa1\x16\x32\x09\x6d\x2f\xbc\x7b\x2b\x50\xec\x0c\x97\x01\x6b\x43\x09\x52\x93\x2e\x99\x78\xb9\xfc\x1f\xd9\x76\xcd\x9f\x24\x88\x95\x86\x32\xb8\xcd\x72\x53\xbc\xd1\xf6\xc0\x8c\x5b\xca\xf3\x1e\x99\x6a\xf6\xad\xa7\xdc\xf3\x1e\x8d\xe3\x75\xf7\xbc\x60\x72\x30\xd1\x83\x4d\x72\x56\x8d\x51\x5c\x51\x5d\xee\x71\x3c\x49\x06\xb6\xbf\x9b\xae\x1e\x0f\xe3\x43\xda\x4f\x78\xb4\x90\x9c\x71\x6a\xa5\x8e\xa6\xef\x2c\xb2\x7b\xc4\xa7\xff\x32\x50\x74\x90\xe7\x1b\x1d\xec\x5a\x66\xf3\x22\xb6\x8c\x25\x57\x1c\xe7\x9e\xcb\xdc\x3b\xfd\x81\xc9\xfa\x36\xd9\x5b\xde\xa7\x13\xc3\xf5\xd1\xf0\x39\xe8\x27\xb8\x9a\xce\x81\x03\x6e\xf4\x11\x02\x0c\xfc\x2f\x1a\x31\x7f\x5b\xa1\x6c\x3e\x9b\x6e\x53\xb7\x29\xaf\x1d\x16\xed\x11\xcc\x2b\xc8\xbf\x94\xaf\x8c\xe9\xfd\x6b\x73\x92\x65\x02\x6c\x38\xfd\x45\x7b\x85\x67\x22\xf8\xc4\x61\x21\xa3\x64\x85\x6b\x28\x08\x6c\x31\xc3\xc2\xc7\xcd\x94\xec\x59\xfa\x9a\x0d\x0b\x99\x00\x42\xf1\xe3\xa2\xaa\xae\x5d\xac\x5d\x0d\x06\x80\x38\x45\x43\x01\x40\xa3\xde\xee\x07\x4f\x57\x9b\x6d\x6e\xa1\xe8\x51\x2e\x41\x18\xf9\x71\x8c\xf7\xdd\x7e\xee\xdb\x3c\xcc\xa2\x1e\x38\xeb\x10\x6c\xf3\x5c\x28\x9f\xa8\x60\xc0\x66\x21\x3b\x34\xa9\x70\xb7\x1c\x27\xd2\xe9\xaa\xaa\xa4\xc2\x99\x7c\x79\xae\xb2\x45\x74\xd9\x43\x31\xca\x2f\x47\xf1\x28\xa7\x9d\x01\x93\x70\x5b\xc5\x79\xe7\x28\xee\x64\xcd\xdc\x5a\x23\x77\xff\x42\x67\x14\x8d\x2b\x7a\xb4\x8c\xaa\xe7\x93\x5a\x27\xf7\xd0\x4b\x9d\x34\xb1\x8a\xf0\xf1\xf6\xd4\xbf\xed\x9b\x34\xd2\x0d\xc3\xf6\xf5\xed\x59\xde\xdc\x7c\x67\xff\xc2\x33\x54\xd2\x45\xa8\x77\x36\xf0\x39\xf7\xaf\x3d\xa5\xf4\x43\x3f\x84\x57\x43\x3e\xcf\xbc\x67\xa8\x26\x3c\xb6\xa1\xca\xcb\x7f\xa8\xb0\x30\x37\xd9\x72\x09\xdd\x04\x21\x70\xf9\x67\xa8\x0f\x88\x65\xfe\xf5\x40\x11\x25\xdc\x0a\x3c\x39\xcc\xaf\xa1\x43\x00\x53\x70\x9c\xf6\x3a\xf6\x34\xac\x0c\x4c\x07\x4f\xd5\xc0\xb9\xdf\xc4\x60\x01\x33\x70\x29\xa6\xdb\xaf\xab\x21\xfc\x9e\x29\x8a\xd8\xee\xf6\xef\xf0\x3a\xd9\x54\x61\xea\x52\xa6\xf2\xba\x92\x22\x3e\x16\x28\xfd\xce\x4b\x81\x6a\x5c\xd5\xe3\xa5\xc3\xb3\x0b\x9d\x91\x35\x03\x9b\x01\x2f\x83\xb7\x7e\x8c\xd6\x2b\xba\xcd\x3b\xba\x5e\x34\x07\xa4\xa2\xb0\x49\x7f\x5f\x99\xf1\x49\x62\xf3\x30\x85\x58\xaf\x9b\xd4\x2a\x5f\x0e\x82\x9f\x07\x75\x21\x47\xfe\x87\x29\x74\x1e\x5d\xdb\x7a\x98\x45\x79\x91\x8e\x87\x36\x03\xa5\x00\x90\x64\xed\xae\x4f\x9a\x81\xd8\x81\xd5\xba\xad\x6c\x6e\xbe\x12\xc5\x31\x66\xcb\x45\x07\xe6\xfa\x54\x15\xf9\x77\x74\x5b\x2f\x0b\xbf\x71\x3d\x71\x86\x6a\x43\xb6\xd2\xda\xb6\x0c\x16\x9c\xf8\xf5\xa6\xaa\x9a\x2c\x47\x83\x49\x66\x89\x2a\x53\xf8\x2c\xa1\x5e\x80\xa4\xe9\x6d\x5a\x18\x7c\x4c\x4f\x8c\xff\x46\x37\xc1\x18\x6c\xc1\x27\x6a\x7e\x38\x8c\x4d\xce\xa4\x25\xae\x24\x43\x59\xb7\x4c\x89\xb5\x16\xbc\x4c\x82\xaa\x43\xdf\x52\x36\xf0\x56\x53\x58\xd2\x8b\x27\x5c\x7e\xc0\x62\xbe\xa9\xec\xf7\x4d\x87\x1c\x98\x24\xa1\xcd\x4a\x73\x56\xac\xb7\x15\xbd\xf0\x45\x95\x9b\xdf\x0e\xd4\xf4\xcd\x09\xed\x96\x7b\x26\xe9\xa7\x09\xe0\xef\x78\xec\xf7\xe1\xc2\xf9\xa4\xd6\xf8\x73\x8a\xb7\x69\xcc\x49\x11\x9c\xd3\x0d\x3d\x00\x76\x43\x21\xd2\x97\xd3\x49\xf6\x38\xdd\x35\x8b\x8a\xd3\x72\x70\x32\xd0\xfb\x17\x5c\xbf\x16\x6f\xd2\x49\x8f\xbb\x0e\x19\x0b\xa8\x89\xfe\x0f\xed\x5b\x04\x80\xac\x5c\xce\x44\xcd\xd8\x44\xc2\x52\xa0\xa2\x9c\xb7\xa7\x5e\xf9\xf3\x84\x4e\x9c\xd4\x80\x5f\x34\x48\xd2\xcc\x8c\x26\x5c\x14\x17\xda\xe9\x8a\xc7\x55\x40\xf8\x35\x34\x17\x5a\xdb\x08\x79\x67\x1d\x09\xaf\x84\x24\x36\x59\x8d\x72\xa1\x9a\x7a\x85\x97\x26\x63\x10\x50\x95\xe1\x01\x34\x69\xb5\xd5\x1b\x8f\xf3\x7a\x26\xa9\xb5\x6d\x0c\x49\x1a\x5b\xdf\xd4\xc3\xff\x59\x3a\xb6\x59\x11\x59\x4c\x55\xb9\xf7\x5a\x6e\x76\xce\x67\x88\x4f\x04\xfe\xe7\xb2\x4a\x1c\x10\x94\xa1\x78\xb0\xb7\xab\xb8\x95\xef\x4c\x2b\x4d\x8d\x86\x11\xff\xb1\x35\xc9\xa4\xc8\x11\xb8\x4b\xeb\xbf\x7c\xee\xc2\x52\xaa\x6e\xf9\xae\x03\x5a\x2c\xa7\xfd\xbe\x70\x59\xca\x1c\x65\xcb\x89\x45\x5e\x50\x3d\xb3\x3e\xa9\xba\xf8\x38\xe7\xa4\x0a\x7d\x4f\x56\x20\x3b\xfb\x56\x65\x6a\x10\x5e\x90\xc1\xba\x7c\xd2\x30\x16\x77\xb0\x33\x9e\x64\x03\xe9\x51\xc0\x95\xdf\xc2\xab\xe7\x13\x57\xcc\x18\x99\xd7\xa3\xd1\x64\x44\x06\x5e\xba\xcb\xde\x0f\x83\x36\x0c\x45\xcf\x0b\x18\x0a\x01\xe6\xfd\xc3\xa9\x27\xea\xaf\x30\x39\x5e\x6a\x24\x75\x8b\xc2\x15\xeb\x7a\x26\x22\x7f\xaf\xf8\x5f\x4f\x37\x11\x44\x90\x04\x73\x68\xf2\xa2\xed\x71\x06\x17\x29\xb9\x17\xac\x44\xcb\x4d\xb9\xdf\x51\xe8\xe1\xd8\x9a\xc1\x84\x8a\x28\x7a\xa8\x7d\x6e\xde\x0d\xb5\x3f\xad\xa0\x13\xfd\x08\x89\xb6\x56\x73\x28\xaf\x4b\xd4\x1c\x1a\x72\x18\xd3\x7f\xcd\x84\x02\x68\x71\x30\x6d\xa5\x35\xfd\xd3\x1e\xc7\xfb\xfa\xd8\x66\x11\x50\x7c\x31\x77\xcc\x05\xca\x52\xde\x94\x60\x5c\xea\x2a\xa9\x8b\x2f\x1d\xdc\xa5\x6a\x91\x53\x35\x91\xf5\x3e\x47\x0a\xa8\x89\xfc\x26\x9e\x3e\x7e\x1b\x1c\x5a\xe8\xee\xec\xe8\xfa\xc1\xad\x24\x5d\xb5\x71\xdb\xc7\x01\xa8\x60\xa0\xe3\xc7\xf8\x3e\x19\x1a\xf1\x0f\xa7\xfc\xd0\xa8\x67\xb9\xc0\x24\xdc\xa7\x2d\xcf\x83\xaa\xc3\x04\x62\xd5\xdb\xab\x58\x61\x6e\x92\x29\x64\xb6\x66\x64\xe9\xae\x56\x73\x78\x96\xeb\x04\xd0\x5d\x40\xe8\x75\x5f\x4f\x46\x7e\x55\xe9\xac\xdc\xc2\x46\x97\x95\x52\x6e\x74\x84\x3c\x57\x54\xe7\xf7\x41\x85\x46\xaf\x59\x16\x7b\x39\xca\x72\xb8\x1f\x47\x28\xbd\x34\x2b\xc7\xaa\xef\x99\x0f\xd3\xb5\x2c\x4d\x47\xaa\xfc\x72\x43\x95\x5f\x6e\x34\x68\x02\x33\x91\x94\x0b\xc0\x51\x96\xbf\xae\x10\xf6\x47\x55\xe0\x5e\x57\x44\x58\x7c\xe9\x60\x27\x27\xf5\xe3\x96\xea\x0a\x55\xb9\x18\x1c\x77\x46\x14\xa6\xb6\xdf\xd6\x14\x98\x40\xf7\x92\x61\x3b\xfd\x54\x57\x05\xd9\x7b\x2b\x52\x20\x61\x6a\xda\x8a\xb3\x03\x97\x27\xa5\x35\x7a\x7e\xac\x0a\xe0\x12\x84\x6c\x92\xe7\x4a\xff\x10\x81\x23\x33\x72\xf1\x49\x53\x9a\xdf\x4b\xb3\xcc\xdf\x0c\x0a\x32\xe7\x95\x22\xfd\x79\x45\xe2\x63\x96\x97\xa3\x4c\xb1\x8c\x4b\x8b\x85\x7e\x43\x9a\x2f\x15\x3a\x95\x61\x44\xe0\x0b\x01\x9b\xd3\xed\x0a\x0c\xbd\x5c\x1d\x58\x11\xef\x90\x89\xe2\xe3\x1a\x4b\xaf\xb8\xfd\xa2\xbc\xcc\x6d\xc4\xf5\x27\x11\x5d\xf0\x49\x2d\x90\x99\x3f\xd4\x79\x6d\x32\xea\xa1\xbe\x22\x63\x53\x2d\x47\xb7\x7a\xdc\xd3\xb2\xae\x59\x2b\xa8\x17\xa9\xdc\xa8\x2a\x8e\x5e\x71\x93\x5e\x11\xc5\x51\xce\x14\x09\xce\xdb\xb8\xd9\xcf\xc7\xba\x1e\x90\xf5\xb6\x6e\xe8\xb5\x14\x91\x4d\x98\x26\x7d\x69\x82\xbb\x50\xcd\xcd\x88\x5f\x50\x0d\xf3\x74\xd5\x66\x63\x13\xa1\xf5\x21\x4d\x37\xfa\x9c\xb0\xad\x96\x9f\xc3\x1e\xbd\x57\xeb\xeb\x97\x1e\x5c\x24\xb0\x79\x19\x22\xed\x40\x65\x02\xdb\xfc\xd6\x54\x29\xd2\xbc\xd7\x98\x11\x67\x96\x59\x2b\x79\x75\xe1\x42\xae\x05\x6a\x00\xe1\x5a\xa5\x5b\x3c\x09\xed\xe3\x14\xd9\xe1\x5b\x3f\x43\x55\x90\x65\xed\x35\xa8\xfe\x5d\xa5\xe4\xf5\x3e\x21\xa3\x9d\x4a\x77\xf9\x9a\xb1\xe5\xa1\x6a\x81\xc2\xd5\x7b\x08\x07\xf8\x7b\xb1\xf6\xd0\x73\xc3\xd4\x31\x42\xe9\x99\x0d\x6a\x2e\x03\x2f\xfe\x56\x05\xba\xdd\x50\x39\x5c\x4b\xb3\x15\xae\x8c\x34\xb6\x60\x7c\x96\xbc\x6a\x56\xda\xba\x6e\x85\x62\x38\x2c\xe1\x67\x81\xaa\xc7\x5e\x77\x0d\xaf\x30\x72\x45\x45\x84\x20\x57\x15\x08\x84\x99\x73\xf1\x43\x4f\x74\x9f\x55\xd0\x97\xb5\x24\x27\x8e\x88\xb6\x1e\x92\xc3\xcd\x23\x94\xbb\x89\x36\x39\x02\xca\x0f\x15\xac\x6f\x2d\xcd\x8a\xe1\x23\x7e\x96\x13\x99\x98\x43\x93\x96\x1f\x02\xf0\xec\x26\xbe\x8e\x4f\xe8\xf1\x69\xa1\x63\x84\xad\xb7\xa7\x0a\x11\x7f\xb3\x49\x89\x6c\x98\x82\x67\x91\xfe\x0e\xcf\xff\x9c\x52\x6f\x39\xe7\x22\xd2\x70\x68\x47\x65\x3c\x09\xa6\x02\x2c\xf6\x3f\x54\x0b\xff\x0f\x55\x8e\x46\x85\x92\xb0\x40\xec\x5a\xe1\x46\x42\x43\xf3\x3a\xfd\x02\x1e\xf6\x8e\xae\x3c\xec\xd7\x6c\x9e\xcb\xd0\x24\xc2\xf1\xbf\xc0\xea\xe6\x13\x57\x87\x31\x61\x68\x63\x9b\x11\x13\xd6\xe1\x59\x5e\x4e\xbf\x8f\x8a\x0a\x9f\xa8\x71\xea\xe1\x48\xc4\x61\xf1\x7c\x6e\x28\x7f\xc6\xa3\x4b\x82\x56\x68\x28\x27\xf6\x26\xeb\xee\xf1\x20\xc0\xbd\xae\x50\x64\xd7\xd5\xf2\xfa\x7b\x4b\x07\x67\x34\x75\x3b\x27\xe4\x28\x77\x3e\x45\x21\x1e\x2e\x60\x4b\x73\x34\x3e\xba\x21\x76\xcc\xbe\x4e\xed\x74\x8f\xdc\x7e\xae\xeb\x91\x89\x3b\xa9\xfb\x89\x62\xfe\xe7\xaa\x54\x53\x47\x0e\x92\x0f\xce\xd3\x28\x6e\x55\x60\x0b\x2d\x25\x31\xec\x01\xe1\xa5\xff\x1d\x89\xee\xa1\x64\xe1\x4c\x7f\xcd\x27\xaa\x0b\x32\x49\xa2\xe2\x31\x5a\x75\x82\x38\xf1\x6b\xf3\x3c\xac\x04\x96\xe3\x7b\x64\x18\xf8\x18\x51\x89\x90\x88\xaa\xe0\xec\x22\x9c\x21\x06\xfa\x8f\x62\x43\xf0\x17\xc3\xca\x60\x0d\x5f\x55\x83\xdf\xb7\x1a\xac\xe4\x2b\x80\x6c\x0c\x25\xf0\x45\xf8\x00\xb5\x54\x3e\x6e\x8a\x2f\xd3\xe5\xe5\x28\x8c\x78\x9c\x50\x58\x1f\x35\x3e\xb0\x46\xee\x36\xdf\x49\xec\xeb\x88\x6c\x44\xdd\xb1\xbc\x4d\x51\x7d\x74\x54\xf6\xe8\xc4\xb4\x55\xa4\xf4\x58\x57\xf5\xa2\x6f\x29\x13\xf2\xf9\xf4\x31\xf7\x74\x7f\x76\x8f\x1a\xf7\xfd\x55\x45\xb6\xf4\x1b\x53\xb5\x8f\xbe\x1e\x54\xe8\xfd\x54\xe1\x62\xd7\xc6\xf6\x3e\x1a\xfa\xbc\x8f\x74\x95\x4e\xe1\x07\xb5\x38\x62\x69\xf6\xff\x63\xec\xcd\x82\x24\xb9\xb2\xec\xb0\xaa\xc8\xcc\x2a\x54\x01\x68\xac\xdd\x1c\x8d\x4c\xb2\x18\x6a\x68\x98\x0f\x10\x66\x12\x3f\x68\x1a\x7d\x44\x4c\x56\x4e\xa3\x51\xc6\x4e\x24\xb3\x6a\xaa\x34\xd0\x0f\x5e\x78\xbc\x8c\x70\xa4\x87\x7b\xc0\x97\xcc\x4a\x18\xbf\xb4\x98\x0d\xf5\x21\x13\x25\x9a\x28\x52\x34\xd9\x48\x43\x1b\x51\x1c\x8e\xc4\x9e\xad\x35\xec\x61\x47\x36\xd8\xdd\x33\xbd\xa0\x1b\x7b\x63\x2d\xd4\xbe\x57\xd6\xbe\xa3\xb2\x64\x7e\xcf\xbd\xef\x5d\x4f\xf7\x12\xf5\xe7\x5e\x95\x11\xe1\xfe\x96\xfb\xee\x72\xee\x39\xed\xbe\x1d\x47\xc9\x5a\x15\x6c\x75\x4e\x81\xad\xce\x29\xfb\x14\x44\x21\xfb\xe4\x4e\xa8\xc8\x35\xdf\xfe\x57\x27\x9a\xa8\x9c\x53\x5b\x4e\x4e\xd6\xaa\xb0\x1e\xd2\x1b\x09\xab\x4a\x43\xa1\x64\x08\x9d\x0b\x5f\x30\x63\xc9\x3c\xbe\x51\x89\x02\xb3\x6a\xd6\x1e\x57\x8c\x1b\x37\x74\xbf\xce\x3d\xca\xd0\xf0\x11\x43\x1e\x31\x1e\x74\x67\x57\x55\x53\x26\x8a\x80\x69\x1d\x56\x04\xcb\xf0\x5f\xab\x43\x69\x47\xd7\xfb\x3c\x4c\xca\x81\x8f\x4f\xad\xab\xbc\xe3\x79\xd8\x5b\x44\x4b\xff\x84\x86\x90\xf0\x25\x77\x9f\x59\x7f\x46\x85\x43\x71\x79\x1e\xb3\x59\x11\x93\xf5\x03\xd5\x03\xf9\x03\x55\xc4\x0f\x6c\x9c\x25\x15\xd9\x06\xc0\x49\x24\xbb\xb4\x75\x43\x2c\xce\xee\x6b\x67\x45\xba\x12\xae\xc8\x84\xe2\x69\xfe\x05\x3d\x0d\x5f\xbb\x2c\xd0\xc8\xc4\xc5\x92\x09\xf2\x22\xb5\xd3\x9e\x54\x0a\x9a\x65\x9b\xd4\xcf\xbf\x79\x59\xc3\xbb\xaa\x3e\xe2\x8a\xcd\x9e\xa9\x14\xb5\xe9\x2f\xe1\xdd\x1e\xa5\x74\x2a\x36\xe0\xbf\xea\x94\x4b\xd3\x31\xb6\x1e\x98\xe5\xb4\x31\xd2\x8f\xa8\x97\x6d\xa7\x72\x25\xb6\xf9\x67\x98\x6c\x40\x51\x1e\x5b\xd7\x2a\xb0\xbf\x07\xdf\x02\x3e\xda\x4e\xec\x2b\x24\xfb\xbe\x07\x0b\x84\x13\xe6\x49\x3a\x04\xf1\xcd\x3b\xd7\x95\x34\xed\x65\xd5\xb2\x73\x03\x49\x21\x29\x17\xaa\x5e\x79\x90\xdd\x63\x8f\x3e\x8d\x09\x46\x64\x7c\xc4\x15\x8d\x6c\x9a\x26\xb1\x4d\x0a\x68\xd9\xbb\xb8\xcd\x11\x12\x9d\x75\xed\xb3\x81\xc9\x0a\x13\xe5\x6b\xd3\x3a\x96\x00\xe7\x1c\xb3\x6b\x2b\x46\xa6\x73\xda\xed\x3c\xde\xf1\x78\xda\x7c\x6d\x1c\x06\x65\x7c\x3b\xc3\xd0\xc5\xc5\x4a\xa7\xe2\xfc\x26\x5c\x28\x21\x23\x2d\x5f\x1f\x5e\xe6\x9b\xcd\xf4\x59\xbd\x34\x81\x74\x9e\xc3\xfe\x5f\xac\xf4\x8c\xfa\xa4\x6f\x60\xc6\x61\x6e\x66\xb4\x16\xc5\xa4\xa5\xfa\xe0\xb5\xde\xc5\x43\x9b\xe2\x1f\x77\xb0\x8e\x68\x24\x95\x2c\xd7\x95\x5d\xbe\xb1\x74\xea\x39\xaa\xbe\xbe\x4d\xa2\x64\xe0\x09\x4b\x35\xf1\xb2\x4e\x37\x4b\x37\x5e\x83\x61\x33\x41\x50\xa4\xc4\x29\x72\x60\x56\xf0\xd4\x13\xef\x4f\xa2\xbd\x06\x36\x6e\x43\xc7\x09\xd6\x64\x60\x6d\x5d\x9c\xdd\xe7\x1a\x55\xa8\x22\x21\x2d\xda\x0d\x5d\xc1\x51\x12\x5b\xce\x6d\xba\x01\xf0\x83\xd1\xf1\xb4\x2d\xdc\x8e\x31\xd3\x3a\x30\xbb\x79\x79\xa2\x7a\x2a\xcf\xa9\xda\xe6\xd3\x5d\xff\xe1\xcd\x49\xeb\xa5\x72\x37\xfa\x7e\xc7\x7e\x98\xe5\x45\xda\xa3\x2d\x2b\x24\x69\x0f\x61\xa7\x06\x6c\x93\xaf\x1b\xf8\x2e\x4d\xd8\xb7\x9c\x65\x44\xbc\xfa\xe9\x44\x01\x38\xae\xa9\x21\xaa\x33\xa1\x10\x9b\x4e\x91\x3a\x89\x3c\xec\xde\x33\x48\x12\xf0\x8d\xf2\x90\x46\x26\xda\x8d\x3d\xe0\x18\x7a\x17\x45\xd3\x87\x9b\x35\x60\x17\x4e\x6a\xc1\xbb\x4d\x9d\x22\x3e\xd1\xf1\x8d\x44\xbf\xa0\xe1\xc2\x09\x7b\x19\x71\x15\x82\x94\x7b\x13\x25\x22\x04\xde\x18\x1a\xd3\xe7\xfe\x7a\xb7\x81\xb1\xd5\x2b\x98\x4a\x7f\x11\x3d\x3e\xdf\x34\xf9\xcc\xbd\x22\xf5\x4e\xa1\x08\x55\xf9\x58\xe2\x7c\x43\xd7\x44\x19\xa5\x88\x4f\x80\x35\xc4\x80\x63\x41\x7d\x29\xfe\x4e\x5f\x98\xee\xd9\xd8\x2e\x85\x2e\xa5\xc7\xaa\x48\x08\x3b\x44\x22\xa9\xc1\xb5\xc9\x93\x62\x2b\x09\x00\x28\x92\xf8\xba\xbb\x35\x4c\xdf\xff\x72\x7b\xa9\x88\xfb\xc6\xa5\xd0\xca\x41\x46\xfc\x85\x4e\x3a\xbe\x6e\x68\x5c\x5c\x68\x0f\x6d\x9a\xd9\x68\x09\x5b\xda\x89\x81\x2f\x2c\x2e\xc8\x8d\xaa\x40\x12\x7b\xde\x4e\x95\x20\xe6\x8e\x76\xa1\x59\xa1\x8f\xa1\x34\x85\x95\x27\xc8\x2f\x14\xa7\xf9\x7f\xb0\x67\x5c\xc6\xdf\x91\x48\x7e\x5f\xc5\xde\xfd\x30\x33\xbd\xc8\xf6\x5b\x5e\x92\xf1\x98\x4e\xfb\xd7\x29\x58\xe6\xf6\xb7\xb3\x38\x1c\xb3\x49\x84\xbb\xc4\xa8\x79\xbe\x51\xd6\xb8\x6f\x47\x49\x90\x9a\x3c\xdb\x49\xaf\x0d\xdb\x7d\x4c\x61\xf7\x50\xbe\xc1\x8e\xba\xa4\x3d\x0c\x6e\x07\x93\xea\xae\x6a\xbe\xbd\xa3\x94\x78\xea\x7a\xd5\x73\xfb\xdb\xc3\x22\xed\x73\xd5\x1c\xa8\xd5\x33\xde\xc3\x78\xe3\x8c\x92\x78\xcd\xad\x21\x37\x95\x49\xe6\xb1\x1f\x85\x71\xfe\x71\x95\x1b\x4f\x41\xf2\xc1\xcc\x2b\x1d\x5f\xa1\xd5\x2c\x06\x89\xe9\x3f\x82\x6d\x2b\x1c\xf3\xe5\x6b\x22\x3c\x80\xc6\x38\xb9\xc0\xfb\x9f\x04\x00\x00\x8b\xf8\xb4\x36\x41\x13\x25\x45\xfc\xe5\x16\x52\xa7\x03\xb3\x9c\x21\xbd\x56\x7b\xe5\x83\x73\xfb\xdb\x4b\x51\x28\xc7\x05\x13\x0b\x61\xc5\x08\xcb\x90\x9f\x12\x1b\xe7\x49\x91\x9a\x01\xb4\xc6\x5d\x41\x6d\xd1\xa7\x5e\x1e\xf3\xa1\x6c\xb0\xfc\x08\x7d\xa7\x48\x63\x2b\x86\x08\xc6\x3e\x48\x69\xbe\x7c\x40\xf8\x70\x4f\x75\x7d\xdd\xea\x33\x85\x08\x79\x17\x4f\xe4\x98\x20\x5d\xce\x77\xc7\x7a\x43\x52\xcb\x66\x19\xb3\xfd\xb9\xcc\x87\x03\x31\xd7\x33\xaa\x07\x89\xa3\x26\x74\x02\x45\x08\x4e\x8e\x2a\x16\x8c\xa3\x93\xaf\xba\x21\x08\xe3\xbe\x1d\xdb\xb8\x6f\xe3\xc0\x82\x82\xcc\xd1\xcc\x3b\xf2\xa0\x8b\x2a\xfc\xf8\x89\xa6\xd7\x6b\x02\x2c\x8d\xc2\xa8\x6f\x99\xe1\x00\x69\x71\x9c\x51\x7c\x5d\xc1\x60\x0e\x62\xd3\x52\x1b\x6c\x8b\x19\x7d\xb6\x56\x76\x0c\x25\x26\x90\x62\xb6\xb7\x56\xba\x5b\x75\xc9\xf4\xd2\x30\x98\xa6\x2f\xe3\x26\x00\xfa\x4b\x69\x08\xf0\x1d\x75\xdf\x45\x34\xc4\x37\x2a\x03\x90\x0f\x8b\x51\x8f\x16\x3a\x83\x53\xd4\xde\x3c\xaf\xea\x14\xaf\x17\x65\xe4\x96\x32\xa4\x9d\x1b\x75\x51\xbe\x17\x06\xe2\xd2\xad\x72\xd4\xc4\xe5\x23\x3d\xac\x9d\xf7\xd7\x85\xeb\x66\xaa\x74\xaa\x98\x75\x81\xc6\x0e\x6e\xf0\x83\x8e\x22\x4d\xb9\xad\x48\x49\x02\x33\x36\xbd\x30\x0a\x73\xf0\x1e\x38\x6d\xd6\xc5\x59\x27\x19\xdb\x44\xd3\xd9\x0f\xb3\x31\xf1\x51\xb7\x54\xea\x19\x7c\xb9\x7c\xad\x78\x6d\x7a\x09\x0b\xa4\xf8\x14\xf6\x35\xe5\x7b\x5c\xab\x30\x01\x8d\xd2\x17\xbe\x4a\xf3\x84\x90\xea\xda\xa4\x75\x50\x60\x1f\x1f\x63\x70\x70\xd2\xef\x5c\xf7\xc5\x84\x0f\x15\xfc\xe7\x33\x78\xec\xb0\xa1\x3b\xba\x4a\x53\xfc\x0e\x39\x9c\x48\x03\x9d\xee\x78\x0d\xd0\xc7\x61\x48\xe0\xbd\x03\xec\x86\xe0\xf7\x0a\x44\x75\x91\x71\xf8\x2e\xa0\x18\xa8\xa8\xdc\x86\x55\x45\xca\x61\xe7\x7a\x19\x7a\x30\xd6\x8a\xc2\xc1\x4d\x66\x85\x83\xdf\x78\x57\xb5\x7f\x6e\xa8\x7c\xf9\x97\xe4\x54\xbb\xf0\x65\x6e\xbf\x88\x6e\xac\xfb\xb5\x14\x85\x71\xdf\xd0\x9c\xba\x96\x07\xa5\x16\x54\xbe\x83\x48\x24\xf9\xb2\xcd\xb0\x18\x0c\xad\xe0\x54\x11\xa5\x7e\xa0\x13\x21\xec\x01\x73\x0b\xba\x96\x1f\x4e\x93\xa5\x30\x7f\xaa\x1c\x4b\x7c\x2b\x0b\x6f\x71\xee\x87\x16\x05\xfc\x75\x86\x40\x70\xb1\xaa\xa3\xd2\x66\x37\x3a\x2a\x4b\xf9\x05\x62\x39\x54\xa6\xa7\xba\x64\x02\x1d\xb5\x8c\x97\x41\x3f\x43\x2f\xa2\xdb\x18\x31\xad\x33\x5d\x6f\xb7\x8e\x40\xf1\x0a\x28\xe8\x6b\x70\xbf\xf0\x23\xd7\x34\x41\xcc\x7d\x9c\xe9\x98\x70\xd0\x67\xc0\x99\x38\x54\x33\x37\x0b\x2f\xef\x6b\xc7\x66\x84\x03\x0e\xaf\x08\xbc\x0c\x5f\xab\x4c\xd4\x6b\x45\xbc\x0c\x9f\x55\x11\xd6\x09\xf8\xe5\xc7\x13\x6f\xed\xea\xa5\x45\xf0\x3f\x24\xa3\x5e\x68\xb0\xfe\x45\xd1\xd2\x23\x67\x2f\xb8\xc2\x4c\x94\x04\xcb\x43\x6b\xfb\x8a\x27\xe2\xaf\x30\x59\x7c\xe3\x85\xde\x54\x25\x46\x4e\x3d\xe5\x78\xd7\x62\xb0\xe7\xdb\x83\x24\xc9\x6c\xcf\xa6\xe9\xda\x94\xd2\x08\x38\x81\x91\xc4\x01\x42\x69\xbb\xcd\xbb\xaa\x9c\x1d\x98\xb1\x8d\xa6\x15\x87\xc6\x05\x2e\x53\xba\x22\xb1\xaf\x45\xff\xee\x44\xd5\xa2\x7f\xb7\xf3\xac\xef\x39\x88\x72\x9b\xc6\xd4\x74\xb8\x83\xd6\x93\x68\xf2\xd5\xc4\xfa\x24\xb6\x50\x71\x06\x72\xd0\x4e\x64\xa7\x7c\x5f\x69\xeb\xf3\x8f\xb9\x62\xd3\x7e\x38\x43\xdf\x0d\x0b\x77\x95\xbe\x1b\x0e\xfd\x47\xd8\xc5\x92\x17\xf6\xe0\x14\x44\xad\x52\x20\xf6\x29\x10\x68\x79\xd2\x1c\x70\x83\x17\x9e\x4e\xba\xbd\xb6\x2e\xa4\xe7\x9e\x6b\xaf\x5a\x51\x61\x87\x6b\x06\xf6\x0c\xbe\x56\x48\x96\x2c\x19\xd9\xbe\x59\xe3\xbd\x89\xff\x47\x5b\x2d\x4c\x09\xb3\xff\x03\x21\xf5\x57\xae\xad\xc6\x44\xe1\xb2\x9d\xa1\x69\xd3\x93\x0d\x33\xff\x08\xf9\xda\x80\xec\x9d\xa3\x9d\x84\xbf\xb9\x4f\xa6\x82\x22\x94\x99\x7f\xbf\xeb\x0f\xc4\xbe\x4d\xb3\xdc\xc4\x4e\xee\xc8\x0d\x86\xe7\x39\x6b\xe0\x17\x36\x84\x57\x66\xd7\xc8\x71\xd8\xea\x72\x83\x44\x11\x66\x6c\xd2\xbc\x74\xed\xa7\xdc\x7b\x3d\xf5\xa4\x92\x3c\x7d\x1c\x01\x85\xe0\x98\xbe\xa2\xe3\xe0\x94\x19\xf6\xb1\xcd\x3f\xa7\x67\x12\x74\x6f\xf9\x66\xb0\x17\xb9\xeb\x7f\xb2\xaf\x17\xe1\x8a\x89\x6c\x9c\xcf\xb8\x42\x6c\xf6\x54\x57\xd1\xd0\xbf\xa3\x92\xc6\xdb\xe9\xc8\x80\xd1\x67\x7d\x13\x09\x81\x94\x10\x56\xb8\x62\xd3\x2c\x5c\xd2\xe7\xe1\x6d\x75\x1e\xd6\x29\x5e\xa4\xea\xf8\x7a\x61\x96\x11\xfb\xb3\x30\x02\xfd\x34\x36\xee\x06\x6c\xa4\x80\xab\x65\x1b\xc7\x84\xb4\x55\x0a\x6d\xc8\x17\xe0\x08\x65\xcf\x50\x1a\x1d\x3d\x16\x62\x29\x49\xf2\x9e\x89\xa2\xe9\x72\x48\x00\x19\xbe\x09\x23\xe8\x78\x28\x5c\x85\xfa\x36\x7e\x18\x87\xcc\x65\xf7\xc3\x6b\x26\x5e\xb6\x10\xa2\x91\x42\xa2\xe2\x33\xf9\x2b\xa5\xae\x73\x52\x01\x3f\xc3\x7e\xf6\x98\x96\x65\xf7\x7d\x29\x7f\x0d\x3c\x75\x38\x5c\x1f\x20\xb8\x46\x52\x69\x06\x0d\x1a\xb4\x0e\xfe\xee\xaf\x75\xd5\x30\x9c\x9d\x68\xb2\x32\x6c\x09\x3c\xe7\x8f\x95\x10\xd8\x66\xd5\xf1\xa9\xb1\x09\x0a\x86\xd7\x47\x7d\x59\x48\x31\xa5\x4b\x34\xbd\x43\xcb\x88\xaf\xd5\xdf\x05\x51\xd1\xcb\x88\x96\xc0\xf1\x5a\x2d\xce\xf2\x22\xfd\x84\x96\x9b\x0c\x4d\x63\x46\xcb\x92\x2e\x1e\x48\x08\x25\xa1\xe2\x1b\xba\xae\x9c\xd3\x13\x66\x46\x61\x14\x9a\xb4\xa5\x22\x16\x64\xe4\x44\x68\x40\xb2\xf9\x79\x12\x0f\x9e\x0b\xa3\x8a\x66\xcc\x5f\x68\x3e\xdb\xbf\x50\x58\x8e\xd7\x88\x21\x28\x62\x8d\x50\xf8\x89\x57\x3b\xba\x69\x46\x15\x05\xbe\x3f\xf9\x9a\x57\x21\xb4\x2b\x49\x54\xe4\x61\x12\x1b\x2e\xb0\x09\x6c\xad\x7c\x6b\xbe\x6e\x2a\x91\x97\xbe\xf1\x32\xf2\x63\x12\x51\x91\x71\x95\x94\xa8\x07\xcf\x5c\x56\x6d\x41\x6b\x49\x91\x3e\x4e\x5e\x99\xe6\x49\xe1\x25\xd9\x71\x11\xdd\xfb\xdb\xd6\x75\x73\x88\xb7\x64\xd7\xc8\x9a\xc3\xfc\x4e\xad\x57\xd9\x50\x0f\xcc\xba\x74\x22\xbd\x2c\x8a\x38\x5f\xc0\x3f\x93\x9a\x81\x57\x12\x67\x20\x34\x16\xed\xbf\x99\x28\xc6\xaa\x9f\xd5\x8c\xde\xaf\xb5\x7f\xe5\x1b\xbf\xbd\xf0\x8d\xdf\x9c\x9f\xa1\xf1\x17\x49\xa8\xf2\xcb\x9c\x44\xb9\xcb\xc2\x5c\x51\x9c\xb1\x47\xe9\xd9\x31\x0e\x3f\xab\x41\xe5\x88\xa5\x2a\x0d\x4c\x94\x14\xf1\x80\xc3\x7f\xc0\xac\x3e\xc1\x44\xf3\x4d\x03\x07\xdc\x7c\xbb\x57\x64\x61\xb4\x36\xa5\xcc\x91\xe6\x16\x42\xf2\x49\x3a\xc5\x9e\x72\x15\xa2\xb4\x08\xf2\x22\xe5\xe2\x13\x0e\xfe\x33\x34\xee\x7c\x5d\x9b\xea\x3d\x73\xe5\x54\xf7\xe0\x1b\x61\xa6\x8f\x77\x54\x20\x7d\x5c\xc5\xeb\xa6\x38\x84\x15\x01\x0b\x46\x90\x98\x4d\x90\x62\x49\x0a\x5e\x51\x5c\x0e\x13\x1b\x87\x87\x28\x6d\x29\xa9\x2c\x75\xf4\x9f\x57\x79\xe0\xd4\xe6\x26\x8c\x1e\xa1\x75\xe3\xb6\x8c\x83\x0c\x1f\xa9\x6c\x1f\x9a\x7a\xa7\xf8\xe5\xcb\x4a\x3f\x53\x65\xa5\x9f\x4d\x7c\x7b\xc4\x11\x5a\x38\xfc\x01\x15\x92\x85\x71\x9c\xac\x10\x41\xa3\x12\x9e\x82\xd7\x21\x38\x27\x2f\x50\x96\xa5\x2f\x4c\x79\xbd\xe5\x7f\x09\x0b\x8c\xe0\xe4\x02\x9e\x48\x38\x24\x6a\x8d\xc5\xaf\xb4\x9f\xff\x2a\xfd\x84\x64\x6f\xe8\x99\x61\x86\x8e\xd0\x72\x15\xfa\x6d\x5a\xa1\x8c\x99\x57\x38\xd4\x1f\x93\x6b\x8b\xac\xc4\xb6\x75\x55\x14\xd9\xb1\x5e\xc6\x4b\xf0\x7f\xbf\xa3\x1a\x07\x8f\xa2\x58\xe2\x38\xd5\x54\x15\x92\x26\x0f\x6e\xdb\x91\x8e\x4a\x65\x5e\xea\x90\x2f\x2d\x02\x57\xde\x38\xfe\xd1\x44\x81\xc7\xae\x74\x3c\x8c\xfc\x2f\x09\xa9\xe3\x18\x88\xcb\x43\x00\x11\x76\x6b\x1d\x19\x35\x11\xce\xf2\x3d\xde\xc1\x93\xb5\x94\xe2\xde\xbd\xed\x25\x6b\x72\xa7\x02\xbb\x49\x36\x62\xf3\x72\xcd\x0c\x1f\x98\x5d\x68\x9b\xf1\x38\x4d\x5c\xed\x09\xfd\x63\x28\x70\xf0\xb5\x66\x94\x48\xa2\x24\x0e\x4d\x04\x47\x1c\xe3\x72\x56\x75\x83\x56\x05\x9e\xac\x19\x3d\xe1\xdb\x7a\x6e\x23\x21\xcf\xdd\xeb\x34\x18\xb0\x41\x27\x30\xb0\x02\xd5\xc3\x7b\xc2\x81\x3b\x03\x70\xa5\x34\x44\xd1\x84\x0b\xa3\x57\x95\x68\xe2\x25\xe9\xe8\xd8\xb1\x5e\xce\x2b\xb6\x36\xeb\x37\x88\x9c\x8e\x2a\x5b\xdc\xee\x68\xbd\x89\xe3\x4a\xee\xe9\x77\x30\x81\xc2\x89\xe5\x83\xc2\x71\x02\x18\xbb\x27\xf4\xfc\x1f\xe8\x67\x5d\x2b\xb2\xa7\xaa\xdd\xf0\x74\xe7\x26\x8c\x7b\xc9\xea\x94\xca\x50\x9d\xc0\x72\x11\x1b\xd3\x72\x5a\x2b\xff\x58\x9f\x77\x91\x19\x0c\xa8\x9f\x7a\x2b\xab\xbc\xf0\xaf\xd0\x98\x21\x62\xfc\xd8\x49\x13\x0c\x92\x31\x95\x18\x84\x49\x4e\xe7\x27\x5b\x4e\x18\xf3\x88\x06\x4d\xb7\x1c\x9c\x23\x1c\x8d\x23\x16\x20\x92\x9e\x97\x72\x92\x24\xaf\xf6\x30\xba\x9a\xcc\x8c\x0a\xcb\x2b\x42\xa8\x0f\x34\x27\x42\x13\xc4\x69\x64\x4d\xbc\x3a\x0c\x23\x50\x4a\xb1\xb4\x6e\xa7\xa5\x64\x76\xb7\x40\x3f\xf7\xee\xdd\xd7\xde\x33\x47\xde\x16\x5c\x9f\x77\x74\xd8\x75\x5e\x31\x1c\x1e\x57\x51\xe7\x92\x49\xed\x94\xea\x9e\xb8\x53\x51\x7d\xa1\x11\x84\x83\xe2\xcb\x5d\xb9\x8d\xe3\x30\x83\x84\x97\x03\xfe\x3a\x27\x74\x77\x97\x3e\xa4\x11\xc1\x02\xeb\xaa\xe0\xcd\xf2\xd4\xb4\x94\xcd\x3b\x36\x51\xd6\xf0\x58\x25\x59\x63\xa3\x84\x32\xde\x2c\xef\x52\x91\x7a\xa9\xab\x52\x11\xd7\xbc\x42\xa7\x5d\xc7\x9a\xc0\xca\x3d\x83\x25\x88\x3e\xe0\x23\x2a\x2c\x28\xc3\x89\x6c\x57\xcb\x69\xd0\x1d\x2b\xd7\xed\xe6\x19\x15\xe1\xfd\xf3\x8e\x12\xc9\xfc\x62\xe2\xfb\xef\xa6\xba\x94\x34\x10\x64\x7c\xf9\xcb\x40\x19\xb3\x58\x33\x7e\xf9\xea\x44\xa1\x12\x7f\xae\x48\xff\x86\x45\x2a\xca\xc7\xae\x2b\xc0\x71\x60\x9f\x04\xae\xa5\xe2\x2f\xb0\xe0\x28\xf6\x14\x77\xab\x21\xa4\xfa\xb8\xda\x57\x55\xda\x55\xfc\xd5\x03\xd5\x54\xcb\x6d\xa5\x53\x4a\x68\x18\x2e\x06\x8b\x50\x74\x7c\x19\xf4\xae\xe7\x7e\x0f\xb3\xe5\x6c\xda\xa3\xcc\x41\x62\x2e\x11\x08\xd9\x60\x78\x25\x7f\x88\xd7\xa4\xa7\xdf\xf5\x54\xd7\xc3\xa7\xa2\x24\xb5\xf1\x1b\x98\x48\x61\xfb\x52\x42\x5c\xbe\x3e\x64\x0f\xe5\x36\xce\x04\xd2\x89\x79\xde\x50\x70\xdb\x8d\xc9\x57\x7d\x30\x37\xb6\x41\xb8\x84\x12\xf2\xf4\x56\xa1\xdc\x79\x57\x15\x69\x39\x39\xd5\x0d\xcd\xd7\x7c\x4c\x95\x47\xc7\x26\x0f\x6d\x9c\x67\xbb\xbd\x78\xee\x97\x6c\xff\xb0\x20\xce\xa9\x1e\x92\x8b\x48\x11\xea\xe2\xab\x68\x32\x79\x01\x1a\xee\x58\xc3\x01\xf1\x89\xa2\x10\xdb\x80\x37\x8b\x9b\x63\xe4\xe9\xc9\xd1\xab\xa4\x8b\xed\x38\x27\x08\xf5\x2e\x7a\x2d\xa0\x6c\xb8\x20\x88\x49\x3b\xa9\x8a\xbe\x0c\xab\x85\x61\xf8\x87\x13\xaf\x72\x07\x9e\x1f\xbc\xee\xf6\x6e\xf9\x53\x5c\xbb\x26\xb3\xec\xd0\x2e\xe5\xfc\x09\x67\x57\x93\xa6\x75\xcf\x04\xcb\x64\x34\x99\x6f\x99\x7e\x01\x8b\xfc\x0c\x4d\x0d\x83\x0f\x15\xe8\xf8\x8a\x8a\x76\x73\x93\xc6\x21\x08\x4d\xb7\xf6\xfd\xf1\x8d\x5a\x9f\x2b\x36\xee\x27\x0c\xc1\x17\x6d\x53\x2d\x7a\xda\x04\x29\x5d\x4a\x52\x4b\x70\xff\x29\xaf\x1c\x74\x43\x2d\x64\x56\xa5\x17\x59\xb6\x67\xdd\xaa\xb4\xa3\xf1\xd0\x64\x2c\x7d\x55\x0e\x21\xec\xcf\x61\x25\x03\x7a\x58\x11\xdf\xae\x26\x49\x04\xcc\x00\x36\xf5\x3f\x57\x98\xbf\x4b\x58\x14\x9a\x89\x0d\x47\xcf\x2d\x1a\x21\xbe\x6e\x4a\x7a\x04\xa4\x71\xd0\x52\xa2\x38\x58\xef\x7c\x3d\xa9\x64\x55\x06\xa9\xe9\x17\x84\x12\xd4\x9d\x87\xae\xde\x75\xc3\x41\xb6\x06\xa9\x89\x1d\xd0\x13\xcb\x13\x8c\xb7\x58\x19\x97\x75\x3f\xdf\x25\xf7\x29\xca\xb7\xa7\x92\xd7\x15\x14\x8f\x6a\x5b\x67\x8c\x6d\xbd\x21\xa2\x67\xa3\xd0\x92\x9c\xc0\xdc\x7e\x9e\x82\x2b\x95\x42\x7b\x39\x89\xd2\x84\xd4\x50\x74\x8f\x4d\x9a\x26\xab\x9c\xfb\x51\x0d\xb4\xfb\x5c\xf0\xad\xaa\x77\x69\xff\x31\x3a\x3b\x10\x54\x31\x8e\x0a\xee\xe1\x0c\xf1\xd4\x8b\x15\x27\x2b\x27\x5a\x09\xad\xaf\x1f\xe4\x4c\xc6\x09\x98\x66\x46\x7b\xd0\x64\xb9\x04\x7c\xf9\xfb\x4a\x57\x53\xaa\xf4\xcf\x76\x35\xd4\xe5\x92\x5a\x21\x4f\x69\xc4\xce\x0d\xf5\x98\x3d\xdb\x7f\xd4\xa7\xdd\x9e\x5d\xf7\xf9\xe4\x7f\xf2\x37\x68\x33\xe2\x64\x81\xa3\x87\xad\xf5\xe8\xba\x6a\x7f\x9c\x5e\x57\xf8\xb0\xaa\x7c\x9c\xc2\x7d\xed\x56\x92\x7a\xdc\x41\x4d\x86\xe0\xd7\xff\x06\x52\x54\x94\x8a\xba\xfc\xcc\xfa\x93\x2e\xfa\x4f\x83\xe1\xc8\xa4\xcb\x2d\xef\xd1\xfd\x3f\xf8\x72\xbe\xe9\x3c\xab\x50\xaf\xa3\xa5\x24\x85\x4e\x10\x8d\xa5\x43\xd2\xa9\x0e\x16\xd7\x11\x94\xa4\x76\x85\x95\x54\x1c\x68\xd2\x09\xb0\xfc\x4c\x53\x3f\xfd\xb9\x4a\xac\x0e\x4d\x3a\xca\xa0\xa3\x02\x47\xea\xb6\xe2\x90\xbe\xed\x69\x88\xc2\xd8\xc4\x41\xb8\x45\x7f\x8c\xb5\x4f\x45\xaf\xc6\xfb\xa2\x99\x0d\x8a\x14\xed\xa7\x58\xc6\xcc\xcc\x8d\x8c\xd5\xcd\x89\xcf\x5e\xa1\xf9\x90\xff\x08\x48\x3b\xb1\xa4\xda\xac\x7a\x05\xd2\x22\x4e\x96\x20\xa7\x8a\x94\x02\xf4\xd4\xf8\xba\x51\xc2\xd1\x1e\x0a\x86\x26\x1e\xc0\x2f\xc1\x39\xf6\x43\x2c\x41\x54\x59\xce\xa8\x86\xa4\x8d\x26\x06\xe9\x71\x98\xb7\x54\x39\xe0\x5d\xf5\xf7\xef\xd6\xaa\xfe\xf3\xf3\x5c\x65\xa1\x9c\x9f\x70\xb1\xa9\x1a\xda\x25\x45\xfd\x58\x57\xc8\x03\xdb\xc5\x28\xcc\x73\x2b\xe5\xcc\x8a\x00\x39\xdf\x28\xc2\x9f\x5e\x9a\x54\x15\x88\x99\x5f\x8c\x6f\x2a\x11\xcf\x60\x98\x4d\x7b\x88\xfd\xc6\xa4\xca\xe7\xad\x4d\xb6\xe7\x20\xbd\xd0\xa0\xfe\x31\x5f\x3a\xe3\x36\x0d\x93\x02\xed\xdf\x9c\x21\xa1\xaf\x10\x59\x84\x72\x21\x4a\xd6\xa8\x56\x99\x59\x5c\x68\xe7\x43\x93\xef\x28\xcf\x32\x54\x63\x78\x4a\xe0\xc9\x31\x31\x16\x36\xdf\xcf\x27\x1e\x3b\x37\x45\x30\x3c\x78\xc8\xa7\x3b\xfe\xc0\xbf\x5f\xd3\x09\x2c\x43\xf0\x22\x0e\x86\x51\x92\x82\x36\xb2\xa5\x51\xf7\xb4\x68\x04\x81\xdf\x40\x05\x33\x2a\xb2\x28\x1c\x89\x29\x16\x2f\x9e\xc6\x55\xf8\xf0\x54\xa5\xfb\x3b\x0f\xcd\x18\xa7\x76\xc4\xbc\x25\x8c\x4a\xc6\xc7\x04\xa2\xac\x7c\xa0\x30\x5f\x32\x51\xc4\x5b\x11\xa7\xcf\x76\xea\x3c\xe6\x6b\xa7\xbd\x35\x0c\xb3\x3c\x49\xe1\x77\x29\x22\xf4\x13\xaa\xb5\xef\x84\x72\x66\x8a\x18\x9b\xb1\x8f\x22\x34\x66\xe4\xa4\x46\x37\x01\x7f\xee\xc8\xd9\xca\x99\x87\x01\xf9\xbc\x01\x9e\xb3\xaf\x9d\x0d\xc3\xf1\x58\x86\x13\xdb\x69\x13\x96\x8f\x6f\x6a\xe3\xf9\xea\xab\xed\x25\x13\x53\xb0\x53\x6e\x41\xa1\x9e\xf7\x98\xdf\xcb\x2a\xac\x38\xa5\xf4\x80\x6d\x90\xc4\x09\x09\x92\x93\x29\x61\x85\x30\x7a\x51\xfe\x12\xfc\x30\x1c\xb1\x6d\x5d\x85\x4e\xfd\x52\x27\x6b\x70\xf6\x4a\x67\xab\xd7\x16\x08\x4c\xdc\x0f\xfb\x26\x40\x25\x40\x28\xad\x5a\x8e\x1e\xff\xe1\x41\xa5\x3d\x34\xb6\x01\x4a\x12\x88\x65\x4f\xd0\x11\x2b\x2c\xb7\x1e\xc1\xb9\xa3\xab\x88\x6d\x3f\x55\x3d\xc7\x97\x26\xcf\xaa\x44\xd8\x52\x91\xf6\xbc\x97\xc6\x92\x4a\x9d\x8a\xbe\x92\x3f\xda\x8a\xa5\xa5\x9d\x3e\xef\xb3\x4d\xf1\xea\xbc\x8b\x25\x0a\x43\x73\x63\xa2\xfa\xa1\x2e\x10\x62\x96\x8f\x59\x4e\xc5\xe3\xc9\x71\x02\x4a\x73\x93\xe2\xa7\x36\x39\x61\x17\x5a\x4e\xe4\xf7\x1d\x04\x0d\x6e\xa5\x94\x6e\x1d\xe6\xe4\x66\xc7\x53\x2f\x37\x92\x3d\x64\x26\xca\x5b\xda\x89\xf7\xe8\xb1\x8b\x93\x67\x1c\x92\x31\xee\xdb\x37\x56\x92\xc2\xa9\x8b\x4b\x83\x81\xa6\x7a\x6b\x30\xb8\xa6\xc8\x87\x4c\xbb\xe4\x3a\xf0\x5e\xf2\x1d\x78\x5f\xdd\x9a\x9c\x9b\x2f\x83\xfc\x1d\x5e\xbf\x80\x60\xef\xfb\x36\x2f\x93\x6b\xed\x98\x96\x7c\x6b\xcc\x5b\x1d\xd0\x4e\x76\xfc\xe1\xfa\x96\xb2\xc0\xf9\xd0\xc6\x4f\x2a\x48\xf0\x7f\xdf\xf1\x94\x12\x47\xe1\x05\x61\x12\x6f\x29\xca\x70\x56\x27\x12\x9f\x97\x7e\x0d\x0e\xe1\x54\x57\x01\x87\x2f\x6a\x1a\xd1\xcf\x31\xa3\x4e\x3c\xd4\xf5\xf6\x7f\x1b\xc0\x63\x21\xa2\x24\xf7\x8c\xbf\x8c\x40\xfc\xb8\xfe\x82\x46\x1d\x01\xc9\x23\xeb\xe5\xbb\xc2\xe7\x40\x0b\x33\xc2\x9c\xeb\x0a\xce\x35\x4c\xc6\x76\x46\x21\x35\xa6\x54\xb5\xfe\x7d\x5a\x35\x22\x29\xaa\x2a\xd8\x6f\x77\x34\xdb\x88\xef\x58\x5e\xb5\x59\x66\x23\x39\xa9\x2a\xfa\x93\x7c\xd3\x70\x94\x2e\xb4\xb3\x71\x18\x45\x14\xb8\x22\x09\x75\x54\x25\xa4\x8e\x3a\x44\x74\x6a\x97\x92\x74\xc4\x91\x3c\x9c\x1c\x50\x03\xf3\xf5\xfa\x93\x9a\x22\xb2\x18\x0c\x73\x12\xc4\x43\xe1\xed\x01\x82\x07\x4c\xcb\xa6\xea\x18\xbd\xac\xba\x96\x99\x35\x54\x50\x62\x0a\x5f\x71\x84\x5f\xd8\x25\xc7\x5d\x2f\xcd\xef\x37\x50\xeb\xee\x6b\xa7\xd6\xf3\xc9\x48\xb8\x7b\x73\xa2\xc8\x77\x6e\xba\xec\xdc\x4a\x18\xe4\xe1\x88\x61\x35\x58\x02\x8c\xcb\xe0\x9b\x4a\xaa\x26\x5e\xce\x9e\xa6\xbc\x03\x40\xbe\x28\x69\x0a\x5c\xba\x3c\x2a\x11\x65\xde\x23\xeb\x24\x6e\xb9\x16\x47\x3f\xac\x89\xf4\xa7\x95\xfe\xdf\xe3\x5d\x95\x4f\xdd\xb6\xee\xbd\xef\xab\xe0\x3b\xa9\x90\x2e\xa9\x21\xda\xe7\xf4\xae\xe9\xf5\x1c\x55\xee\x1e\xe9\x58\xfd\x1e\xce\x21\xde\x11\x88\xcd\x85\x66\x86\x26\x45\x44\xc0\x55\x1d\x14\x0e\x72\x15\x97\x9d\x2c\x23\x23\x26\x38\x69\x05\x85\x3a\x33\x69\xfd\xd6\x37\xf8\x3d\x3e\x51\xfd\xde\xdb\x1a\xb2\xd2\x8b\xed\xd7\x0b\x03\xa4\x94\x0b\xf0\x40\x80\xca\xd7\x35\xaa\x9f\xb9\xfd\xed\x7c\x6d\x6c\x95\xc2\x2c\xa4\x9b\x04\x4c\xd6\xa0\xb5\x9b\x15\x63\x06\x6c\xc3\xa9\x47\xe6\x0e\x4e\x3d\x5f\x3b\xb8\x48\x2f\x4a\x82\x65\x4a\xb3\xba\xee\x92\xfb\x93\x0a\x5c\x51\xc9\x51\xee\x50\x1d\x83\x19\x53\x8e\x47\x38\xda\x30\xa5\x3f\xa5\xdf\xe0\xeb\xa6\xfe\xdf\xa1\x35\x29\x7c\xfc\x72\xee\x30\x66\x5c\x1c\xe1\x9b\x86\x0c\xc0\x8b\xed\xa1\x19\x8f\xbd\x16\xbb\x4b\x5f\x96\x53\x2e\x18\xc6\xad\x1f\x9b\xdb\xdf\x0e\xe3\xac\x3c\x43\xc1\x84\x28\x89\x83\x8b\xb4\xbd\xf9\xba\xe6\x8b\xef\xd9\xd3\x36\xa1\x96\x0d\xb8\x85\xf5\x23\x2c\x1c\x1e\xa2\xfa\xd3\x89\x17\x4c\xdb\xde\x7d\xc2\x77\xc4\x45\x45\xbf\x01\xfe\x39\xe7\xc6\xf3\x59\x05\x13\xc8\x82\x22\x23\xce\x0c\xa4\xb7\xa4\x2d\x51\x35\xea\x7e\xbb\xe3\x10\x18\xff\xcd\x71\xd5\x58\x7a\xdc\x9d\x69\x61\x14\x15\xc4\x5b\xee\xe6\xdb\x15\x15\x7c\xfb\xfe\x09\xd5\x9e\x33\x2a\xd2\xbe\x15\x51\x6b\xec\x4b\x36\x93\x7c\xa3\xca\xae\xe3\x61\x18\xcd\xb4\xf6\xec\x71\xcb\x0d\x9f\x82\x21\x46\x4f\x05\xd3\x90\xa8\x34\x08\x5b\x6b\xe9\x3c\xf2\x2e\x68\xb2\x62\xd3\x3c\x1c\xd9\x8a\xa3\x8c\x69\x14\xaf\xf9\x69\x85\x73\x09\x42\x13\x85\x59\x4e\xe0\x58\x64\x92\xb8\x17\x99\x6f\x14\x33\x4d\x19\x3d\x46\xd1\xda\x4e\x0f\xf3\xdd\x41\xd6\x19\x5d\x51\x57\xe1\x56\x88\xe6\x57\x39\x8a\x22\x9f\x59\x6e\x7b\xfc\x11\xd3\x1d\xc0\x9c\xdd\xa2\x83\x1a\x89\xe4\x33\x6e\xb3\x8c\x53\x4b\x3c\x9c\x53\x0a\x81\x0c\xab\xed\x60\xc6\x07\x66\xd9\x37\x7a\xa0\x46\x71\x90\x44\x4b\x00\xb7\x0a\x3f\xb7\xfa\x10\xa7\x37\x70\x9a\x7d\xa9\x36\xe9\xe1\x26\xfa\x54\x13\x0f\x22\x09\xdb\x50\xb4\x3e\xaa\xb4\x30\x8e\x56\xba\xa2\x93\xfe\xda\x57\x34\x61\xf2\x3f\xa5\x39\x82\x8d\xbe\xa3\xc8\x7f\x76\xae\x2b\x84\x23\x1a\xa9\x78\x3e\x1e\x20\x4a\x72\x7e\xab\xa3\xe3\x63\x72\x59\xfc\xea\x2d\x7a\x6d\xbc\xc0\xf6\x2e\xf9\x09\x58\xec\x77\x90\xa5\x46\x6e\xef\x0b\x3a\xeb\x1c\x22\xad\x1c\x00\xdc\xcc\xc0\xf6\xf3\x33\xd6\x1c\xe2\x3d\x7b\x1c\xf1\x65\xb8\x02\x3b\x08\x57\xf4\xcd\x89\x77\x4b\xdf\xf4\xa8\xb6\xc8\xa4\xb2\xff\xb8\x2a\x00\x97\x55\x4a\x04\xcf\xe8\xe6\xd0\x91\xaf\xfc\xbd\xc8\xaf\x76\x5e\xc1\x4a\xcf\x2b\xe0\x4a\x6c\x7a\x2d\x85\xcd\x38\x45\x87\x8c\x74\xc5\x3b\x96\x97\xd4\x9a\xe5\x6c\xca\x37\x23\xfc\xce\x44\xd7\xba\x94\x79\x3c\x51\x41\x2d\x45\x2b\x2c\xe7\xeb\x14\xd5\xca\x4f\x49\x09\xae\xc1\xb6\x65\xb9\xc9\x8b\x3c\x49\x61\x7d\xb1\xb2\x1f\xe9\x7a\xff\xf7\x91\x75\x1f\xa0\x8d\x93\x28\xcc\x4b\x5b\xbd\xdb\xdb\x0f\x90\xa1\xa2\x7e\x70\x1a\x1e\x24\x13\x67\xd2\x33\xc2\x18\x1f\xd3\x84\x3d\xd3\xeb\xb4\x16\x90\x07\x39\x41\x91\xb1\x2b\xb2\x2d\xce\x6a\x8a\x1f\x89\x90\xa6\xe1\x66\x8a\xca\x45\x43\xab\x72\x5a\xf4\x7a\x36\x9d\xa1\x0a\x8b\xc4\x07\x1e\xa5\xbe\x8b\xd0\xeb\x6a\xe7\x0b\x32\xf0\xc4\xc4\x2b\xa2\x1f\x6b\x28\xaf\x91\xb0\xec\x68\x64\xe3\x3e\x2f\x04\xa9\xe9\xd2\xa8\x4a\x51\x77\x4b\x45\x7d\x7e\xbe\xfd\xea\xab\x5f\x75\xa3\xf9\xeb\x4f\x77\x15\x83\xd5\xdd\x89\x2f\x43\x7e\x4c\xb6\x01\x33\xcf\xfd\x1f\x38\x1e\x4f\x76\x3c\xc7\xf3\xdf\x83\x43\xc4\x91\x4c\x47\x23\x93\x3e\x99\xb4\x9e\x7b\x8e\x1d\xdb\x6f\xe1\x6c\x60\x55\x4a\xd4\x7a\x45\x74\x9a\x36\x12\xff\xd9\x44\x21\xb0\x8e\xe9\x24\xe6\x1f\x29\x85\xe8\x8b\xa8\x2f\xf3\xe7\x69\xb3\x63\xb6\x66\xd6\xbd\x40\xd3\x3b\x1d\x25\x87\x7e\xa9\xd3\xfa\xfa\x41\xde\x79\x9c\x34\x95\x90\x66\xeb\xe1\x7d\x60\x76\xae\x1d\x0c\x4d\x92\x73\xb6\x01\xa3\x7f\x58\xeb\x2a\x1d\x56\x00\xc8\xb1\x89\x22\xa6\xcf\x69\x6a\xd5\x68\xa8\xd7\x33\x55\x21\xcf\x18\xeb\x68\xe0\x61\x45\x54\xc3\x6f\xc6\xa5\xf0\x50\xcb\xf7\x61\xf0\x09\x2b\x08\x54\x7f\xe0\x44\x36\xeb\x11\x4b\x49\xcb\xa9\x7f\xa0\xfe\xc6\xd7\x2a\xa1\x38\x48\x93\x62\x9c\xed\xf0\x8a\xa8\x9f\xd2\x94\xc3\xbd\xfc\x05\x56\x9f\xd0\xad\x29\x35\x89\x1b\xba\x0a\x78\x06\x2e\x25\x7f\xbe\x06\xbe\x99\xdb\xdf\x1e\x85\x59\x16\x72\x43\x8c\x13\xd5\xf1\x02\x3b\xf5\x0e\xee\x3d\xed\x3c\x14\xbf\x07\x46\xf5\x96\xa6\x6a\xbb\x55\xf1\xcf\xc7\xa3\x41\x85\x7c\xda\xe7\x3f\x8e\x34\xb5\x39\x67\xc3\xc4\xcb\xca\x3b\x0e\x1e\xe7\x7a\x6f\xd4\xd2\x72\x65\x70\x21\xb9\xc3\x4a\x7a\xe6\xb0\x4e\xcf\x1c\x6e\x60\xf6\x7a\x91\xa6\x37\x8c\xa9\x5b\xab\xa5\xdc\x06\x4d\x97\x70\xb1\xe3\x4d\xe2\x6a\x32\xb2\xf1\x6e\x5f\x86\x7c\xa0\x0a\xd7\xef\x21\x0c\x10\x42\xf7\x4a\xfb\xa2\x0b\xb3\x98\x1b\x1e\x9b\xfd\xcb\x8e\x92\xce\x67\x97\x0e\x25\x43\xe8\x7f\x31\xf2\x7a\xe2\x59\xf4\xeb\x53\x51\xc6\x8a\x49\x6c\xa7\x69\xc3\x0b\xa9\xac\x2f\xd8\xdf\xec\x28\xd8\xed\xdb\x84\xbf\x81\x21\xd8\xb6\xee\x97\x6d\x14\xd9\x1d\x2a\xcf\xff\x24\x17\x1d\xf0\x5a\x9f\x2a\xf8\xd7\xf6\x75\xc5\xfa\xaa\xa4\x0d\x1e\x68\xde\xc0\xe3\x95\xcc\xeb\x1b\xb6\xff\x98\x47\x38\xdc\xc6\x4b\xc2\xfb\xbb\x3e\x51\x0a\xc0\x47\x70\xa6\x0b\x27\xab\xef\x05\x40\x3b\x33\x4c\xc9\x5b\x13\x0f\x6e\xba\x45\x88\x1c\x78\x07\xc7\x55\x65\xf1\x23\x6c\x4e\x1c\x02\xc8\xb2\xc3\x26\x31\x99\x20\xe3\x4c\x6a\x0e\xbd\x64\xb8\x06\x49\xc2\x9c\x88\x78\xe4\xcb\x1a\x09\x7e\x42\xc1\xd0\xee\xd5\x0e\xc0\xd2\x11\xca\x20\xe7\x07\x76\x03\xfc\xe1\x07\x0a\xac\xf4\x81\xaa\x50\x8e\x6d\x9a\x97\x8e\x36\xfb\x4d\xae\x60\xe4\x88\x24\x2f\x74\x5c\xee\xb3\x18\x99\x38\xcc\x4d\x1a\x1a\x82\x65\x6e\x12\x4b\xe6\xe6\xcd\x26\x8b\x95\x45\xc5\x60\x10\x66\xc3\xd6\x54\x45\xb5\x75\xef\x5e\xd7\x93\xee\xab\x20\xe3\xd2\xb4\x4d\xfb\x3e\xf2\x93\xda\x6e\x30\x4a\x07\x5c\x19\x17\x31\x0c\xe2\x03\x6e\x7d\xf5\xd2\x22\xd8\xc8\xae\x84\x59\x55\xbb\xe9\x32\xb6\x20\xdf\x28\x53\xb9\x57\x94\x94\x84\x6b\xdd\x57\x33\xce\x28\xcc\x46\x46\xe0\x97\x9d\xb4\xb3\xe0\x97\x5d\x86\x9d\x43\x7d\x6c\xb3\xa2\xcf\xd8\x3a\xb8\x50\x65\x6e\x45\xe4\xf0\xa1\x52\x77\xfa\x10\x09\x27\xfe\x2a\x07\x35\x88\xc2\x3c\xb2\xca\x67\xb9\xa8\x7a\xa8\x2e\x4e\xfe\xa3\x87\x2c\x95\x24\x08\x4c\x19\x27\x19\xa1\x62\xc4\x81\x79\x4a\xd3\x7e\x9c\x72\x18\x83\xbe\x0d\xec\x98\x9c\x45\x1a\x63\xae\x9d\x4d\x74\x1d\xad\x41\x88\x7a\xd5\x9a\x65\xeb\x35\x63\x05\x41\xe9\x97\xf5\x27\x2e\xd3\x14\x41\xea\x61\x5a\xf9\x16\x1b\x88\x93\x71\x04\xa1\x66\xa7\x1b\xcf\xc9\x3e\xfd\xe0\x99\xae\xe7\x31\xb1\x45\x9a\x8c\xad\x89\xb3\x19\x4f\x99\x02\xf1\x19\xae\x76\x31\x83\x26\xdc\xf5\x16\xe5\x4a\xb8\x25\x85\xf6\xa0\xb4\xa7\xd4\xab\x12\xf3\xed\x5e\x98\x78\x15\x44\x0a\x9f\xb0\x2c\x8e\xa9\x4e\xb8\x63\x8a\x53\x25\x1f\x26\x45\x66\xc8\x5b\x2a\xe7\x0c\xe6\xe0\x2a\xc2\x72\xbe\x51\x61\xab\x5d\xb1\x69\x64\x98\x15\xb2\xfc\x13\x21\x59\x2f\x1f\x51\xf8\xda\xa5\xac\x17\xa6\x49\xcc\x69\x02\x9a\x2b\x1c\xbc\x1f\x74\x3c\x53\xea\x07\x6e\x6d\x0c\xcd\xea\x72\x36\xad\xd1\x6f\x27\x26\x4a\x13\x6b\x5b\x97\x4c\xaf\x70\x80\x7b\xfc\xc8\xe1\x06\x6a\xc1\x7d\xc4\x0d\xe9\xaa\x08\x92\x1d\x55\xf9\xee\x5b\x4d\x44\xa4\x43\x93\xe5\x6b\x53\x3e\x73\x77\x4b\xf3\xf5\x4e\x26\x1e\x04\x7e\xc7\x35\x56\x0c\x52\x13\xc6\x33\x6a\xcf\x9e\x9b\x78\x44\xe7\x5d\x7a\x4c\x24\x6a\x1f\xed\xfa\x82\xd5\x3b\x2a\x93\x50\xef\xc4\x5b\x9c\x6d\xaf\xda\x70\x30\x64\x5f\x08\x4b\x00\x15\x25\xbe\x6e\x78\xe3\x85\x76\xdf\x8c\x8c\x23\x77\xc4\xa6\xb8\xac\xfd\xcb\x3a\xfa\xf1\xa5\xf9\xf6\xa8\x88\xf2\x70\xec\x62\x4a\x07\x20\x71\x00\xa8\xd3\xb5\xdf\x7a\xf5\xd5\x76\x9c\xe4\xb6\x97\x24\x90\x76\x43\xbd\xea\xa3\x89\x6f\x47\xfa\xa8\xd6\xe0\xb2\x77\x6f\xb9\xc1\x38\x5c\x61\xd7\x49\x59\xeb\x1b\xb5\x92\xce\xf3\xed\xa1\x19\x8d\xac\x6b\xd4\x07\xe8\xed\x1a\xde\x87\x6f\x6a\x67\xf4\xe2\x2c\xe1\x0d\xc9\xc1\x50\xa4\xe3\x0b\x8e\x3b\xc9\xf3\x11\x8c\x0d\x61\x8b\x38\x0d\x82\x7c\xd0\x59\x18\x33\xbe\xa9\x65\x8b\xf7\xcc\xb5\xc3\x38\x0b\xfb\x16\x7d\x5c\x8e\xa7\xc8\x45\xc5\xe0\xb1\x82\x33\x73\x45\x75\x09\x44\xa6\x97\xa4\xbb\xe9\x35\xd0\x39\xb2\x6b\xdd\xb7\x5d\x73\x06\x01\x55\xf4\x53\x94\x72\x47\xc0\xfc\x8f\x68\xc2\x39\x92\x56\xcd\x40\x9c\xac\x41\x57\xde\xd1\x8e\x6a\x33\x7d\xd0\x51\xb2\x2c\x3f\x9c\x28\x36\xa5\x6f\xd7\x44\xcb\x16\x16\x17\x90\x28\xcc\x6c\x9f\x8d\x6a\xa3\x33\xbd\x35\x43\xb6\x38\xdb\x4e\x96\x96\xa6\x4b\xa3\x82\x20\x11\x74\x7a\x18\xb3\x3b\x34\x18\x22\x33\x59\x0e\x06\x22\x83\x99\x6e\x1d\x88\xde\x4e\x2d\xe9\x75\x29\x9e\x2b\x76\x5a\x00\x49\x9d\xa2\xed\x82\xf3\xe3\x42\x53\x6f\xf9\x38\xb5\x79\xbe\x36\xed\xc3\x9c\xcd\x8e\x22\xec\x81\x92\x0d\xfc\x9f\x9b\x8a\x69\xf5\xff\x98\x7c\x55\x71\xf5\xbb\xae\x32\xa6\x93\xe2\x72\x83\xa2\x1f\xbe\x38\x79\xcc\x13\x88\x26\x19\x65\xf5\x71\x0c\x1e\xc1\xf9\xc8\xd8\x5a\x0c\x3d\x3c\x99\xf7\x15\x78\xeb\xf4\x44\xc5\x33\x0c\x67\xe0\xb0\x5b\xb7\xcb\xec\xea\x6a\xc5\xa3\xfb\x0a\xc2\x99\x45\xc5\xe8\xe1\x0a\xce\x62\x67\x47\x61\x16\x24\x71\xbf\x08\x50\x04\x73\xb9\x9c\xf2\x17\xa4\x5e\xae\x0e\xfb\x71\x92\xe6\xd9\x23\xe5\x04\xc1\x03\xb9\x4b\x06\x19\xcb\xee\x9c\xa2\x17\xfc\x85\x26\x63\xbd\x89\x17\x86\x5b\xcb\x2d\x93\xfc\x67\xf0\x29\x39\x8c\x9d\xf8\x5a\xe7\xf7\x15\x1a\xab\x6f\xd3\x70\x45\x0f\xb6\xf8\x5e\xba\x5a\x20\x56\x35\x2e\x0d\xf1\xb4\xc7\x31\xec\x84\x62\x26\xa2\x53\xa4\x68\x9c\x30\xea\xa2\x60\x40\xae\xb8\xe1\x48\xc3\x60\x98\x5b\x71\xe2\x7c\xe0\xa6\x48\xb3\x6b\xc6\x10\xd2\xdc\x21\x49\x5d\x4e\xa9\x98\x08\xae\x2d\x0e\xe5\x9b\xaa\x1f\xfa\x1f\xd5\x0c\xe3\x9e\xb9\xd2\xf7\x88\xc2\xd8\xf6\xa7\x95\x6f\x7c\x66\xa2\xc6\xed\xe7\x4a\x61\xe9\x92\xd6\x39\x78\xa0\x52\xb4\x69\x32\x10\xb1\x1f\xa4\x3f\x3e\xd1\x78\xba\x4f\x54\x63\x64\x50\x44\x48\xfe\x96\x5e\x5e\x39\x07\x92\x43\x6e\xf9\x6b\x95\x89\x0c\xd2\x64\x3c\xed\xc3\x8c\x3b\xb4\x47\xf1\xad\xef\x4e\x7c\x9e\xf5\x5d\xa5\x84\x76\x47\x49\x0b\x99\x3c\x4f\x4d\x90\x23\x9e\x86\x65\x3a\x4d\xa1\x0e\x5f\x6b\x75\x97\x61\xb8\x22\x5c\xbb\x4e\x23\xb8\x7c\x5b\xbe\x51\xb8\xbb\x7e\x6a\x57\xc9\x0a\xf0\x26\xe9\xe8\xa3\x5d\xd1\xd8\x7d\xde\x84\xa3\x00\xf2\x86\x79\x4a\x5c\x57\x7d\x39\xde\x4e\x95\xcc\x55\x36\x2e\x2a\xe1\x90\x3e\x35\xd8\x2f\xce\x56\x64\x09\xf9\xba\x49\x51\xb8\x1f\x66\x69\x31\x66\x82\x40\x87\xd1\x74\xad\x43\x30\xd0\x12\x3b\x3e\xa5\xda\xa4\x50\x8b\x23\x9f\x02\xab\x94\xab\xe6\x48\xee\xa1\x77\x00\x4e\xd6\x91\x8e\x6f\x0c\x89\xcc\xa0\x4a\x4d\x50\x4e\x94\x30\x13\xd4\xd6\x1d\xe9\xe8\x8e\xc7\xce\x79\x75\x1b\x71\x7e\xde\xe5\x96\x1a\x5a\xb1\x88\xac\xa8\xa5\x3a\x04\x8e\x2a\x1e\xc5\xa3\x6a\xde\x47\x86\x30\xbb\x99\xea\x73\x66\x99\x39\xbe\x69\xfa\xf6\x2c\x2f\x82\xe5\x2d\xbc\xe1\x7b\xf7\xba\x26\xaa\xaf\xaa\x31\x0a\x52\x4b\x4b\xd8\x44\xb4\x88\x37\x89\xcd\x99\x84\xc1\x2a\x19\xcc\x6c\x67\x19\x15\x63\x2e\x01\x90\x15\xc4\x85\x06\x25\x60\x97\xe3\xfc\x3a\xdd\xd1\xf8\x9a\xd3\x64\x2b\xb8\xbd\xab\x92\x07\xd2\x81\x74\xc8\x04\xbf\xae\x5b\xde\x35\x70\x9c\xaa\x8d\xfc\xc1\xc5\xd9\xf6\xd8\xc4\x36\x8a\x42\xfa\x8c\xd3\x61\x2e\x1f\x41\x48\x15\xf5\x97\x07\x66\x75\xa6\xe5\x38\xbf\x3e\xc0\x1f\x4a\x3b\xa9\x6a\x2d\x55\x84\x69\xa7\x69\xee\x91\x39\xab\x77\x65\x53\xbd\xaf\xa7\x53\x32\x38\xf1\x51\x8a\xe7\xeb\x26\x57\x37\x0a\x97\x84\xa2\x03\x66\xea\xed\x8e\x3f\xdb\xde\x56\xf4\x0e\x23\x1b\x98\x38\x7c\xbd\xb0\xac\x5a\x2e\x29\x6a\x4f\x98\xc8\x2d\xc7\xf0\x07\x36\x29\xa7\x28\xbe\xc1\x57\xd4\x61\xbb\x12\xc6\xd3\xaa\xc5\x93\x0b\xb8\x82\xaf\xf5\x47\xf4\x25\xc5\xd1\x59\x67\x60\x9f\xdb\xdf\x7e\xcd\xa4\xa9\x33\xd2\x42\xda\x54\x7e\x06\x11\xf4\xf6\xae\xc7\x69\xdc\x50\x78\x93\xd7\x92\x30\xce\xa3\x35\x0a\xb8\x18\x05\xd6\x51\x90\x25\xce\xeb\x89\x0d\xf1\x69\x39\xae\x9d\xe3\xa4\x3c\x32\x51\x52\xf3\xe5\xb2\x1d\xd9\x38\xcf\x54\x07\xde\x39\x15\x32\x9e\x6b\x1a\x78\xd2\x93\xae\xf0\x26\x5f\xd2\xd2\x5a\x97\x1e\x92\x37\xb4\x29\x97\x5a\x25\xd9\x5c\xae\x16\xbe\x6e\x60\x99\xdd\xd7\x1e\x47\x05\xdb\x10\x19\x0a\x35\x2c\x1a\x4a\x09\xb4\x95\x6f\x3a\x3e\xad\xfa\xe2\x4e\x37\x09\x16\x05\xc9\xa8\x67\xf2\xa9\x0a\x58\xad\xfc\x08\x4e\x56\xe8\x23\x4a\x45\xac\x52\x05\xeb\x53\x0f\x86\xc0\xc9\x28\xed\x0f\x07\xf1\x43\x4d\xc0\x70\x6b\xe2\xed\xf2\x45\x3a\xc8\xf8\x8f\x14\xdc\xf4\x30\x11\x71\x08\x93\x46\xb9\x14\x1d\x29\x44\xb9\x46\xb9\xc9\x4c\x35\xba\x46\xe1\x92\xa5\xda\xa3\xef\x59\xbc\x40\x47\x17\x5f\xd7\xb6\xf6\xe2\xec\x62\x3b\x2b\x7d\x08\xce\x57\x08\x6a\xa0\xa5\x24\xe5\x3d\xd0\x6b\x50\x18\x42\x64\xdb\x96\xe2\x17\xc1\x83\xf1\x75\x53\x26\x27\x48\xe2\x0c\xe8\x5b\x1f\xde\x33\xc3\x0d\xdf\xd4\xf8\xa9\x89\x52\xdc\x31\x20\xa6\x02\x77\xc1\xd1\x72\x51\x73\x2b\x5f\x74\x6a\x79\x63\x13\xc6\x98\x2d\xc4\x09\xf0\x9f\x70\x10\xdf\xaf\x48\xe1\xfb\x8a\xea\x6b\xa5\x45\x11\xa2\x07\xb8\xb5\xff\x6c\xd2\x52\xcc\x7b\x0a\xa0\x72\x61\xb2\xdb\xa5\x9b\x66\x5b\x8a\x7f\x0a\xcb\xc2\xd3\x8b\xb8\x2f\x37\x71\x6c\xd7\x70\x56\x81\xfe\xef\x07\x8a\xfe\xf3\x07\x0e\x9e\xb2\x3a\x0c\xb3\x65\xb1\x6b\x98\xd3\xbb\xf0\x48\xf9\x46\x2b\x7c\xac\x1a\xf0\x8e\x3d\x0c\xde\xd8\x00\xeb\x8a\xac\x59\x91\x62\xa1\xe2\x27\x75\x64\xa5\xd5\x72\x6a\x4f\x48\xad\x71\x84\xe1\xe5\x84\xcb\x4f\x65\x9b\x6f\xd7\x40\x1c\x2f\xcd\x53\x8f\x8d\x06\x48\x82\x45\x02\x66\xf2\xa6\x32\x36\xc8\x1e\xe0\xf7\x7f\xae\xd6\x6f\x16\xf6\x22\x42\x4e\x78\xa8\x27\x4a\x75\x7c\xad\xb0\xfa\xd9\x30\x49\x28\x3b\x53\x3a\x74\x30\x2a\x2d\x0a\x38\xf9\xba\x86\x4b\x21\x49\xcc\x30\x0d\x8a\x30\x87\xc1\x10\xde\x25\x7a\x29\x21\x64\xd2\x63\x61\x33\xfb\x84\x7f\xfe\xbb\x30\x90\x5c\x2b\xa1\x45\x2f\x9a\xe6\xe5\xee\x55\x19\xcf\x57\xd8\xf3\x7d\x4f\xc7\x3e\x28\xae\x31\xbe\xbf\xab\x20\x2b\x1f\xe2\x84\x40\x42\x71\x7b\xd7\x77\x2c\xe3\x50\xae\xa8\xd5\x60\x91\xad\xeb\x4c\xf7\x97\x1d\xaf\x48\xf4\xce\x44\x1b\xdc\x3b\xca\x43\x0b\x47\xe3\x84\xc4\xb0\xcb\xaf\x84\x8f\x3e\xa1\x81\xe5\x6b\xa5\x04\x3d\x0a\x83\x34\xc9\xd6\xb2\xdc\x8e\x30\x0f\xce\xfd\x50\xba\x26\x0d\x90\xd6\xb6\x09\xf2\x70\x45\x50\x3f\xa8\x55\xfc\x10\x1b\x88\x6f\x54\xb2\x80\x96\x71\x4b\x33\xef\x5c\xd4\x01\x7f\xbd\x1a\xbc\x38\x5b\xda\x91\xa5\xb0\x6f\x39\x19\x0e\x83\xf3\x3e\xbd\x04\x5f\x57\x2b\x05\x6c\x6f\x9c\xf0\xb7\xab\x1a\x9c\xa9\xfc\x5d\x91\xc6\xbb\x7d\xac\x70\x0f\xe3\x0c\x57\xfc\x06\xb2\xbb\x92\xb7\x2d\x67\xa6\x42\xcf\x2f\x29\x41\x4d\x8d\x7d\x5f\x97\x99\xc1\x08\x8f\xa7\xbb\x8e\xa1\x10\xd8\x63\xb9\x7c\x24\xc9\xe7\xe3\x09\x12\xa2\x11\x53\xd0\x24\x9a\xea\xd7\x3f\x85\x04\x44\x57\xe9\x34\x54\x40\x0f\x84\xa3\x83\x83\x70\x57\x26\x9d\xdb\xcf\x1b\xfa\x2e\xca\x77\x70\xe2\x4f\x4d\x3c\xa6\xc7\x8e\xc6\x91\x41\x31\x53\xda\xb1\xbd\x83\x78\x4e\x01\x5c\xfa\xe1\x38\x4a\x46\x38\x1a\x17\xbc\x30\x85\x6b\x50\x03\xa7\x8b\x14\xfb\x1a\xd9\x84\xc2\x00\x93\xe3\xe4\x6b\xe6\xbd\x34\x67\xbd\x26\xbb\xd0\x5e\x35\xb9\x27\x92\xc6\x7b\x1c\xe9\xa8\xfa\xcb\x91\x06\x29\x51\x07\xa8\x28\x44\xc9\xd7\x51\x93\x39\xf4\x09\x12\xfe\xc2\x38\xe5\xda\x8e\x20\x60\x3a\xad\xa0\xe9\x4f\xac\xab\x46\x3f\xa6\xa5\xc3\xc8\x3c\xd2\xd5\xca\x7b\x77\x54\x7c\x6b\x63\x9b\x0e\xd6\x76\x7a\xee\x8e\x3b\xaa\x49\xe3\x4f\x95\x5d\xe5\x5a\x1d\xc7\x4a\xb4\xce\xe0\x97\x5c\x99\x54\xb4\xc3\x14\xe6\x7d\x47\xd7\xb1\xc8\xc4\x87\x42\xeb\x49\xdb\x18\x3c\xac\x44\xaa\xea\xea\x32\x7b\xf6\xb4\x97\x6c\x5c\x0c\x52\x12\x79\x75\x18\x6b\x8a\x8b\x36\x6f\x2b\x74\x6b\x5d\xae\x6c\xcf\x9e\x76\x98\x9b\x48\x52\x0e\x15\x85\x6a\xbe\x51\xe9\xc7\x9e\xc9\xc3\x5e\x92\xe3\xe8\x41\xae\xe4\x4f\x3a\x4a\xb0\xf9\x4f\x6a\x93\xfd\x6b\xed\xa8\xdc\x01\xb1\x70\xee\x20\x71\xfa\xd6\x44\xa9\xfc\xbe\xd5\xd1\xf2\x95\x26\x0a\x63\x2c\x0b\xae\x2e\x78\xcd\xd6\xff\xec\x0b\xdf\x12\x96\x26\x2b\x49\x96\x2b\x5d\x7f\x56\x59\xe6\x9b\x7a\x16\x74\x4f\x3b\x30\x45\x26\xc7\x66\x45\xe7\x89\x6f\x54\x98\x3d\x32\x59\x06\x3f\x5d\x5a\x47\x7c\x6e\x16\xfa\xdf\x48\xa6\xfc\xa2\x12\x25\x15\x71\xff\x99\x29\x2f\x4a\x3b\xd5\xf5\xaa\x65\x1c\x6b\x80\x90\xe4\xa6\xce\xa7\x7d\xaa\x34\x6e\xf8\x44\xc2\xb0\xdc\xc1\x18\x21\x1c\x3b\xc7\x11\x21\x0e\x92\xff\xbd\xd3\x52\xdc\x80\x84\xb8\xc0\xd9\x71\x06\xd5\x0f\xac\x7f\x16\xdc\x62\x06\x39\xcf\xaf\xf8\xc6\x3f\x04\xfc\x03\xd1\x25\x34\xfc\x99\x44\x89\x0e\x41\xb8\xa7\xbb\xd7\x15\x1f\xdf\x29\x16\xad\xe4\x8f\xe0\xb8\x42\x44\x7a\xbf\xa3\xe7\x24\xec\xdb\x1d\xe5\xb3\xe1\x3b\x5a\xeb\xaa\xd9\xeb\xd9\xae\x5f\x87\xbb\xd6\x3d\xc9\xcc\xf6\x75\xdf\xc3\xf0\x24\x9d\x96\xec\xe2\x29\xca\x49\x30\x62\xd8\x34\x43\xc5\x42\x3a\xe1\xca\x3f\x06\xba\xe5\x1e\xac\x34\xec\x15\x22\x29\xbe\x5e\x57\xcb\xba\x49\xd6\x62\x1c\x46\x62\x87\x04\xb8\x44\x93\x20\xf1\xe2\xd3\x4a\xfd\x28\x4f\xed\xc8\x82\x75\xe6\x45\x2e\xb5\xc0\x29\x95\xc2\xa4\x87\x98\xdc\xad\xad\xc0\xd2\xec\xbd\x5e\x84\x36\xc7\x8f\x21\xe8\x3b\xab\x02\xc0\xb3\x0a\xb6\xf5\x37\xff\x93\xbf\x35\xa5\xb7\xad\x02\x92\x83\xd4\x45\x84\xcb\x7d\xa0\xb2\x64\x6d\x34\xe3\x39\x14\xb8\x7a\x0e\x83\x74\x47\x51\x55\x80\x30\x54\x44\x6d\x7d\x0c\x72\xbd\x81\x76\xe5\x45\x66\x85\x84\x1b\xee\x5c\x3d\xc5\x49\xdd\x72\x0c\x5c\xa7\x5c\x16\x74\x29\x8c\x25\xea\x96\xba\x91\x92\xdd\xc6\xec\x38\x8e\x72\xc7\x21\xb4\xa1\xf6\xdf\x30\x89\x07\x94\xe7\x85\x6b\x7d\x91\x8e\x3b\xbe\x9e\x78\x0a\x8d\xe3\x17\x69\x55\xe3\xfa\xbe\xa2\xe5\xbe\xa8\x32\x42\x77\x60\x8c\xdd\x37\xb9\xf1\x3e\xd9\xf9\x9a\xfb\x41\x6a\xdb\x5a\xb2\x01\xf4\x5b\x7c\x1a\x11\xb5\x79\xbe\x76\x6a\xa9\x26\xcd\x33\xa4\x4a\xf1\x7e\x15\xd2\xc3\x29\x74\x4b\x62\x50\x44\xc0\x9a\x55\xba\xbd\x12\x78\x98\x0d\x55\x2f\xf9\x5d\xd5\xe8\x73\x57\x21\x81\xec\xa1\x61\xd8\x0b\x73\xce\x3c\xe3\xfb\x0f\xd3\x5c\xf2\xf5\x43\x1b\x71\xf2\x55\x1b\xe7\x5a\x42\xe4\x12\x2d\x1b\x49\x55\x54\x22\x84\x22\x9a\x51\xa9\x47\xce\x44\x61\x13\x82\x37\x56\x98\xe2\xf0\x2e\xfc\x3f\x1d\xcf\x6e\xf5\x0f\xaa\x08\xce\x17\xcc\x0b\xd8\x22\x70\x72\xae\xa8\xf3\xf9\x87\x13\xe5\x3f\x2a\x99\x4a\x93\xf6\x21\xb1\xcf\xaf\xaa\xca\xf4\x1e\xf9\xae\xb4\x29\xc7\x46\x68\x9e\x5f\xe4\xfc\xeb\xf5\x89\xcf\xf2\xa1\xf5\x87\xf9\x2e\x6b\x45\x98\x3d\x7b\xda\x51\x98\xe7\x91\x9d\xf6\x75\x7f\xd6\x0c\x07\x08\xe7\x23\x55\x84\x81\x58\x27\x46\x7b\x43\x21\xc5\x46\x26\x1d\x84\xf1\x2e\xf5\x7c\xc7\x61\xaf\xe1\xbf\x70\xd1\x01\x2b\xfb\x26\x0d\x3d\x56\x3c\x1e\x0d\xa7\xd4\x0f\x3a\x5e\xa6\xf9\xaa\x62\x25\xba\x3a\x51\x08\x00\xee\x49\x17\x95\x78\x15\x39\xc6\xd9\x2a\x8f\x97\x18\xa3\x6b\x0a\xc6\x71\xad\x4e\xfb\xb8\xb8\xd0\xce\x56\xc3\x51\x4b\x69\xa5\x6f\x74\x54\x07\xc2\x86\x2a\x97\x8f\xd3\x24\xb0\xb6\x5f\xc6\x6e\x3b\x14\x3c\xfb\x82\xaa\x61\xb0\xfa\x22\x67\x95\x3b\x35\x1a\x00\xfe\x04\x96\x13\x7f\x44\xad\x6d\xa1\x06\x9b\xf1\x51\xe4\x76\xe2\x13\x15\x47\x93\x3e\xa7\x78\x0b\x04\xfe\xf7\x40\xb9\xa3\xdb\x6b\x14\xdb\x07\x66\xe7\xa8\x0b\x2d\xee\x87\x9e\x48\x47\x93\x60\xcf\x3b\x12\xec\xaf\x28\x5e\xb9\x34\xb0\x8f\x96\x06\x07\x7e\xbe\x6c\x5b\x27\x43\xe7\x12\x0f\x77\xf4\x11\xcd\xb9\x37\x21\x2d\xa4\x03\x13\x45\x5e\x64\x93\x60\xf0\x40\x6d\x2c\x71\x02\x0d\x3e\xe6\xff\x3e\x99\x35\x04\xcd\x57\x74\x0b\xd3\x17\x5e\xd2\x20\xb5\xfd\x50\xa4\xf3\x39\x0a\xec\xf8\xc5\x7d\xa7\xb6\xff\xf7\xbf\xdc\xee\x27\xa3\x30\xb6\x24\x03\x36\xa5\xd0\x86\x93\xea\xa9\xe5\x52\x72\xf7\x3b\x3e\x69\xca\x95\x12\x2a\xcb\x2c\xcc\xed\xf7\x50\x2e\x7f\xad\x66\x70\x35\x49\x97\x5d\x70\x8f\x41\x00\x12\x9c\xaf\x6b\x18\xd7\x3d\x73\x24\x01\x9e\xc4\xd6\xf1\x2c\x73\x35\x99\x3e\x26\x95\x65\x9f\xe4\x4b\x56\x63\x9b\x12\xf5\xf7\x82\x13\xf3\xf5\x06\xfc\xe2\x44\xf9\xa1\x27\x88\x6b\x16\xe3\x87\x7e\x32\xb8\xdc\xd7\x14\x54\x87\xc5\x10\xe1\xb0\x7f\xae\x99\xbc\xfa\x46\x35\x65\x7f\xce\xb3\xef\x68\x13\x94\x58\x0d\x3d\x0a\xdc\xeb\x1f\x4d\x74\x0e\x4a\xc5\x4e\x8f\x75\xb7\x42\x09\x41\xdf\x1e\x85\x41\x32\xce\x7d\xf6\x0b\xb1\xe7\x17\xd8\x20\x7c\xd3\xa0\x27\x2c\xe3\x8c\x9d\x2e\x0a\x70\xe5\x6f\x8b\x32\x5c\x43\x8e\x28\xb5\xd6\xf9\x35\x8e\x83\xda\xd7\xdc\x7f\xd2\xf1\xa5\xda\xa1\x49\x39\x81\xe2\xb8\xd4\x3c\xdb\x4e\x0d\x4d\xb9\x67\x4f\xbb\x88\x93\x1e\x75\x14\x70\x37\xa2\x53\xa4\x77\xf4\x12\x8d\x6c\xb0\x49\x91\xf7\x8d\x48\xa4\x62\x3b\xb0\xaf\xc5\x37\xcd\x32\x82\x36\x0d\x6d\x06\x07\x04\xdb\x06\x4d\x00\x80\x94\xb0\x30\x0f\xea\xb9\xe7\x6b\x1e\xcc\xe2\xec\xbe\xf6\xd8\xe4\xa2\x6e\x89\xb9\xfa\x63\x95\x3b\xfc\xe3\x2a\xf1\x55\x94\x3d\x51\x2e\x03\x38\x47\xa2\x87\x82\x6d\x72\x11\xb9\x03\x38\x64\xe7\x80\xe5\xc4\x32\xdc\xdd\x55\xc2\xd3\x9f\x74\x54\xd6\x83\xa1\xd5\x42\x9f\xa9\xba\x87\x2e\x4f\x94\x86\xfb\x7b\x8a\xeb\x61\xba\xeb\xf3\x50\x9f\xc0\xbc\xe0\x1c\x78\x93\xd6\x31\x1c\xd9\xdd\x20\x77\x06\xf9\x05\x0b\x3a\x48\x4c\xe9\x0f\x88\x28\xec\xad\x99\x98\x0f\x08\x89\x0f\x3c\x94\xff\xcc\xc4\xcb\xad\x8f\xc6\x91\x09\x63\x21\xe6\x80\xd9\xfa\x52\x15\xd4\xbf\xc0\xda\xc1\xb1\xdd\xaa\x89\x3b\x3c\xdf\x1e\x85\x71\xfc\x82\x1a\xe3\x4b\x5a\x5d\xe5\x92\x0a\xf0\xfa\xa1\xcd\x6c\x84\x75\x29\x3d\xa9\xf4\xdd\x82\xe0\xde\x7a\x6a\xed\x7f\xb9\x34\x82\x66\xb9\xe5\x1b\x97\x4e\x6b\x31\xc5\xd3\xca\x8c\xc7\x49\x6e\xb3\x47\x55\xa6\x95\x69\x6d\xe4\xf8\x56\xd4\x53\x37\x10\x29\x01\xff\xff\x0f\x3a\xad\xdf\xfa\x06\xe3\x9a\xa0\x95\x01\xf7\x76\x7b\x57\xa1\x8b\x58\xb4\x14\x9f\x60\xbd\x37\x44\x8e\x80\x45\xa1\x3e\xb0\xd9\xf1\x1d\x2a\x75\x19\x07\x52\x69\x0a\x92\xb4\xcf\xa5\x55\x57\x78\xf3\x5c\x1d\x0f\x2a\x34\x96\xf5\x9d\xbd\xaf\x1d\x85\x83\x21\xd6\x33\xca\x41\x20\x8b\xe5\xeb\x26\xe2\x84\x91\x09\x86\x61\x1c\x66\xf9\x16\x3e\x17\xd5\x64\xba\xa1\x85\xbf\xf3\x22\x8e\x6d\xbf\x85\x90\x4f\x98\xdc\x29\x64\x54\x54\xee\x12\x14\xf5\x8b\x00\x2c\x02\x3e\x51\xff\x9d\x89\x4f\xff\x7c\x47\x05\x35\x36\x5b\x86\xd7\x8c\x65\x71\x9e\x46\x5a\xfc\xaf\x96\x13\x58\x38\xa2\x58\xdd\xea\xdd\x88\xa5\x4d\x18\xa7\x36\x08\x33\x64\x9c\x98\x45\x5c\x11\xef\x1f\xd5\x34\x1e\x49\x2c\x7d\x32\xd2\x2f\xd0\x72\xbd\xba\x27\x9c\x56\x4c\x18\xe7\x36\x8a\x2c\x94\xf4\x94\xa0\x89\x7b\x0e\x74\x11\x31\x7d\x9c\x82\xa4\xe4\x45\x1a\xdb\xfe\xe3\xa5\xdb\x82\xb8\x6f\x13\x96\x01\x9f\xba\xdd\x51\x34\x70\x13\xef\xe2\x43\xcc\x01\x03\x74\x8d\x0a\x8f\x82\xf0\x2c\x47\x04\x2e\xcf\x35\x2c\x37\x81\x81\xd2\x2b\x60\xff\x5d\x86\x25\xaa\x70\x6d\xe1\x37\x00\x8c\xe0\xcf\x77\x3c\xe9\xd5\xdf\xbf\xa1\xaa\xe2\xf6\xd0\x38\x4a\xfa\x6c\x86\x45\x34\xc7\x67\x78\x1b\x8b\x7f\x87\x6c\x9a\x1c\x9a\xf2\xd1\x2d\x62\x40\xe1\x2b\xa5\x07\x85\x2d\xbc\xd6\x94\x47\xce\x8b\xb4\x57\x86\x84\xba\x11\x1d\xc6\x50\x2c\x40\x9d\x7a\x67\xa1\x3d\x4c\x72\x1b\x65\x53\x3e\xf1\xf2\x09\x0c\x9d\xc8\x23\xa8\x8a\xc7\xb5\x8e\x6e\xe1\x48\x97\xb9\xe1\xd9\x11\x69\x6b\x86\xed\xa6\x66\xea\xd8\x2c\xf3\x78\x48\xba\x43\x29\xa7\x9c\x6a\xaa\xe5\x0e\x93\x22\x73\xb5\x5c\x91\xfb\xf6\x90\x0d\x8e\xa1\xe0\x4e\x5c\x2b\xdd\x6a\x81\xc8\x78\x46\x03\x7a\x33\x4c\x22\xf4\x91\x1c\x89\x8f\xab\x43\x7a\x7a\xbb\xa2\x8c\x36\x06\xd3\x0a\xac\xcf\xcd\x01\x28\x64\x3e\x42\x51\x05\x12\x32\x53\xeb\x3e\xcf\x36\x55\x2b\x1f\x3d\xdf\x1e\xd9\x43\x61\x60\x18\x5d\x2d\x34\x46\xbe\xe3\x45\x37\x8f\x8d\xc2\xe0\x91\xf2\xc9\x70\x1c\x6d\x4e\x54\xc8\x3b\xbd\xae\xba\xca\x76\x90\x80\xa2\x74\x86\xe0\xd4\x14\x8d\x8f\x96\x10\x91\x3d\xd5\xee\x3a\x27\xf6\x33\xe6\x1d\x12\xe9\x4d\x8f\xaa\x29\x96\x92\xac\xe5\x6b\xc4\xa8\xd7\xf3\x75\xc7\xab\xe3\xf5\x43\x13\xf1\xc9\xc6\xca\x22\xaa\xdd\xa0\x4e\xe0\x3b\x3f\xdf\xb6\xaf\x17\x26\x9a\xf6\x8d\x43\x7f\x0f\xab\xc9\x75\xed\xbb\x4f\xdf\x50\xf5\xda\xcb\xea\x38\x0d\x92\x28\xb2\x03\x90\xf7\x48\x30\x34\x75\x70\xd1\x33\xa8\xf9\xa8\x84\x4f\x77\x09\x80\x7c\x80\x73\x19\xeb\x42\x38\x75\x3c\x96\x39\x48\x8a\x38\x27\xd8\xa8\xcf\x74\x9c\xec\xf8\x0c\xc8\x49\x0d\x49\xc8\x42\x13\xd3\x63\x70\x3b\xfd\xa4\xb5\x67\x0f\xfb\x50\xdb\x01\x38\x93\xec\x24\x39\xf1\x2e\x03\xb9\x38\xeb\xfe\x87\xea\xd3\x70\xf1\x6e\xd5\xd6\xf7\xde\xbd\xed\x81\x89\x22\xcb\x0c\xc9\x8c\x5e\xeb\x78\x8e\x8e\xf3\x4d\x5b\x62\xa9\x48\xf3\xa1\x45\x38\x87\x68\xf5\x7d\xa5\x88\xc5\x4d\xf0\x48\xf3\xcd\x94\x41\xf5\xe6\x4d\x28\x21\xa0\x1e\xf6\xe8\xba\x4f\xb4\x05\x51\x92\x0f\x43\xa7\x9b\x21\xdc\x9c\x1e\xac\xb0\xd1\x74\xca\x41\x9c\xdc\xc6\x01\xc4\x4a\x9b\xfa\xa6\x9a\xf5\xd9\x8a\x41\x14\x2e\xeb\x6a\xf9\x0d\x55\x2d\xbf\xd1\x24\xe5\x9e\xdb\x2c\x0f\x97\x42\xde\xc3\x2a\xbe\x9a\x93\x44\xae\x6e\x30\x3b\xd5\x48\xa5\x19\x0c\xcb\x21\x8e\x07\x52\x34\x93\xdc\x3e\xbd\xb2\x24\xfd\xb7\xee\xde\xfd\x2f\xb7\xb3\x3c\xb5\x19\xb4\xf0\x58\x21\x87\x9e\x56\xd4\x72\x9e\x54\xad\xee\x83\x81\xcd\x72\x0a\x01\x91\x94\xf8\x6c\xc2\xad\x21\x2f\xf9\xde\x85\x06\xae\xca\x8c\xa4\x7d\x34\x67\x88\x22\x67\x71\x2d\xa3\x61\x3a\xb2\xe9\x0e\xef\x49\xdf\xaa\xb4\x21\xb5\x5c\x0f\xd7\xf6\x75\x9a\x78\x0c\xd2\xd7\xba\x34\xe5\x38\xa6\xcf\xe1\xe8\x42\xfe\xe3\xa7\x13\x9d\xc9\x8c\xf2\x96\x4f\x57\x5f\xd0\x8c\x57\x17\x14\x4b\xe5\x52\x9a\xc4\x39\x5b\x01\x4d\x81\x29\x41\x74\xa5\xf4\x1b\x2c\xef\x54\xcc\xb3\x97\x01\xfd\x44\x4c\xff\x97\x64\x64\xf8\x1a\x66\x15\x16\xef\x98\x02\x94\x7f\x8a\x33\x41\x38\xbe\x29\xe9\x2e\xcd\x9f\x7a\x1f\x8f\x7a\x61\xec\x98\xfb\xe0\xae\x2f\x68\xa1\xa3\x05\xd5\x2e\x36\x8e\x4c\x9c\xef\x2e\x87\x17\x83\xc0\x42\xc7\xa8\x08\x5d\xd5\x9c\x35\xc7\x75\x16\x88\x85\x5e\x60\x45\x60\xee\x09\xf5\xbb\xfc\x4c\x57\xf1\x69\x01\xd5\x2c\xf8\x80\xf2\x0d\x99\xd6\x83\xf6\xbe\x50\x7c\x3c\xe6\x46\x73\x39\xe4\xbe\x26\xbc\xfb\x5d\x85\x54\x43\x12\x0c\x27\xe8\xa7\xb5\x0d\x41\xd2\x49\xb6\x74\x31\xed\x9a\x42\x14\xbd\xab\x39\xbd\xdf\x55\x4d\x45\xd9\xaa\x1d\xe7\x00\x3c\xe0\xf4\xc2\x8a\xe4\x6b\x57\xe2\xe1\xe6\xf8\x96\xe7\x96\xb9\xa3\x2b\xae\x77\x5c\xba\x79\x2d\x29\xe2\xc1\x8e\xf2\xcf\x44\xe2\xdc\x9f\xac\x9f\x92\x67\x2f\x3c\xf0\x7e\x40\x7e\x5e\x8d\x4f\xb0\x05\xa5\x6b\x52\x49\x22\xd8\x20\xec\xdb\x7e\xb4\x86\x91\xe1\xaa\x5f\xa5\x28\xcf\xb5\x43\xa4\x88\x5b\xdd\x87\xb5\x8d\x65\xb9\x05\xc5\x2f\x9e\x91\x14\x3f\xa5\x5d\x9d\x36\x18\x16\x2d\x3b\x53\x08\x6e\x8f\x37\xed\xce\xd8\x1e\xca\x77\xf8\xf4\x1a\x5e\xd6\x21\x12\x5c\x45\xfb\xc1\xc4\x71\xed\xfc\xfe\xd3\xd0\x9f\x11\xfd\x5c\xe5\xf6\x1f\x56\xc2\xf5\x36\x0e\x48\xd6\xcb\x2d\x5e\x8c\xda\x19\x7e\x5b\xbe\x73\x99\xa9\x9e\x4d\x97\x6d\x64\x45\xd1\x43\x72\x37\xde\x16\x9d\xd1\x89\xfa\x7b\x4a\x48\x76\xc9\x64\x3d\x3a\xe6\xa4\x05\xd1\xeb\x5b\xdc\xd4\xb5\xc6\x62\x10\x91\xa5\x73\x65\x65\xb8\xb7\x7c\x5d\x43\xab\x50\x11\x34\x62\x0f\x1e\x16\xe6\x5f\xab\x3e\x96\x8f\x61\x9f\x61\xd5\xbf\xa8\xd4\xed\xd2\xe5\x35\x2a\x5a\x09\xa6\x96\x96\x26\x00\x43\x48\x6a\x08\xc0\xb6\xfc\x79\xfe\x77\xd4\xd6\xe0\xe4\xfc\x41\x47\xa9\x9a\xfd\x81\x8a\xa4\x56\x87\xc8\x33\xd3\x40\x70\x6b\x1c\xcc\x08\x7c\xad\xe3\xbc\xf0\xa4\x6b\x8e\x76\x2f\xff\x97\x36\x2a\x9c\x04\xcc\x10\x9e\x23\x7c\xbf\xad\x89\xab\xb7\x77\x2b\x24\x66\xde\x9d\x5a\x4a\xd2\xd1\x8c\x02\x1c\x72\x6b\x92\x93\xe9\x50\x68\x06\x1f\x8f\x7e\xa8\x65\x8d\x4e\xd6\x4e\xaf\x57\x5f\x6d\x8f\xcc\xa1\x70\x04\x86\xd2\x72\x4d\x0b\x6a\x4e\x79\xc3\x3a\xe6\x8f\xa0\x4b\x5c\xfe\x25\x53\xc3\xc2\x3f\x12\x9e\xd8\x3a\xbb\xeb\x42\xbb\x18\x27\x31\x29\x54\x60\x39\xc3\x43\x75\xfa\xc2\x2f\xcd\xf3\x3e\xfa\x52\x71\x6f\x07\x91\x35\xb1\x4d\xc1\xbc\x87\xf5\x08\xb2\x4f\xd1\x1e\xa1\xb7\x42\x94\xff\x59\x1d\x05\xbf\xa7\x9d\xd9\x08\xa8\x67\x1a\x66\xfc\xc0\x5d\x4d\x43\x8c\x21\xc7\xf2\xbe\x50\xeb\x31\x79\x69\xbe\xbd\x64\xd2\x96\xe2\x2f\x41\xf1\x91\xaf\xbb\x8f\xab\xcc\xcc\x68\xdc\xd2\xd4\xcb\x13\x8f\xdc\xf9\x79\x6d\x38\xf6\xec\x69\xdb\x15\x29\xd0\xbb\x01\x2c\x7f\xe5\x61\x03\x48\x79\xb3\x28\x59\xa5\x4f\x48\x6e\xcc\x67\x73\xce\x57\xaa\x35\x41\x64\x94\x10\xe3\x05\x2d\xc4\x78\xc1\x2b\xc1\xc7\x79\x18\x84\x63\x91\x78\x95\x96\x31\x45\xb9\x7e\xa7\x2a\x46\xea\xa7\xc5\xf4\x57\x4c\x1c\xa0\xf0\xee\x0f\x53\xdf\x4e\xf0\xa9\x6e\x6f\x2a\xd2\x71\x92\x31\xab\xa7\x34\xd3\xb7\x1c\x23\xca\x29\x57\x81\xeb\x17\xc1\x32\x39\x5f\xf0\x6c\xa6\xba\x2d\x25\xf5\x5d\xba\xc3\xb2\xa5\x9e\x50\x5a\x6c\x26\xcb\xb3\x96\xf7\x95\x19\xfd\xc6\x37\xae\x33\xae\x17\xf6\xb8\xd5\x1d\xd1\xc9\x29\x7a\x56\xbe\x56\x78\x1d\xe6\xdf\xe7\x82\x95\x66\x6e\xe7\xeb\xda\xb4\xbc\x34\xdf\x0e\x8a\x51\x18\x63\xea\x61\xfc\xbf\xa5\x0e\x82\x6f\x29\xde\xae\x20\x2d\xc2\x9c\xe5\x62\xe1\xe6\x7f\xd8\xd1\x4d\xd4\x34\x2a\x82\x73\x79\x42\x75\xab\xac\x48\x62\x04\x4e\xef\x9f\x76\xbc\x03\xfc\xa7\xaa\x3f\x67\x90\x86\x7d\xf6\x3c\x61\x4f\xb6\xa1\x86\xc9\x37\x0d\xb0\xc3\x85\xb6\x89\x92\xd8\x22\x13\xeb\xe8\x38\x16\x67\x39\x2b\xfb\xb5\xae\xf3\x85\x5f\x78\x7a\x5d\x71\xb9\x5b\xdb\xdf\xa1\x68\x33\xb9\xad\x84\x6f\x60\x6b\xf1\xfa\xf7\xe8\x20\xe0\xeb\x6a\xe5\x8f\x1e\x4d\x6a\x82\xfe\xbb\x97\x05\x2e\x85\xdc\xe9\xa9\x89\x6a\x94\x3c\xae\xb3\x05\xff\x97\xe6\xee\x47\xae\x88\x3f\xe2\x18\x58\x86\x45\x3f\x2b\x4d\x8e\x93\x84\xb9\xd5\x51\x34\x81\x47\x54\x6f\x94\x46\x07\xf7\x92\xb5\x7e\x4b\xa9\xbb\xbd\x8b\xe7\x16\x31\xc1\x87\x56\x67\xd7\x46\xb1\xcd\x55\x01\x98\xc5\x3a\xf9\x46\x75\x99\x98\x7e\x3f\x83\x12\x08\x1e\x18\xe4\xd9\xf0\xf0\xee\xd1\xda\x41\x31\xe2\x86\x52\x20\x3c\x3f\xf1\x64\xa0\xff\x96\xfa\x63\x90\xa7\xbc\x8f\x37\x42\xdb\xc6\xdb\x1d\x4f\x7f\xf3\xb6\x57\xec\xb4\x79\xc1\x61\x17\xd2\x41\x1b\x44\x18\xc3\xd7\x13\xcd\x73\x04\x19\x1d\x76\xbf\x35\x85\x2b\x5f\xd7\x32\x41\xf2\xf2\x61\xce\x20\x6c\xbc\xd1\x39\x45\x6d\xf5\x8e\xde\x92\x57\x6a\xdf\x30\xb7\xbf\x6d\x47\x24\xa1\x9f\x4e\x55\x58\x88\x7d\x81\xf9\x4b\x25\xf0\x51\x57\xf3\x9a\xdb\xdf\x36\x4b\x4b\x36\xc8\xc9\x15\xc3\x69\x77\x97\xf0\x96\x62\xd4\xcb\x6f\x92\x06\xd7\x96\xd3\x05\xfb\x9e\x8b\x7b\x06\x61\x1c\x87\x30\x0f\xac\x6f\x35\x51\xa7\x7b\x63\x93\x4b\x90\x44\x49\x6a\xfa\x09\x6f\x37\xa1\xc5\xa7\x8f\xf1\x4d\xa5\x69\x25\x2f\x52\x41\x4b\x39\x15\x7f\x4d\x6f\xe8\x53\x12\xe8\xa0\xca\xa6\x4b\x67\x4a\x0e\x86\x72\xea\xe5\x5c\x68\x39\x4d\x3f\x4e\xf6\xf2\x4d\x13\xd5\x35\xf3\xff\x55\x7f\xd6\xd3\x7b\xe9\x9f\xcd\x4d\x16\x0c\x6d\xda\x52\x25\x73\x16\xc7\xe0\x9b\x4a\x1d\xd9\x8e\x4d\x8a\x4e\x2f\xff\x98\xe0\xa1\x94\xed\xe4\xed\xff\x8a\x19\x14\x16\x0d\x03\x9b\x97\x21\x28\x79\xb9\xc6\xcb\x21\xeb\x28\x18\x9a\x34\xe2\xb9\x10\xe4\x26\xbd\xa5\x74\x73\x6b\x1f\xcf\x44\xa3\x96\x3f\x73\xee\xa9\xc0\xee\x5e\xa5\x04\x14\x99\xc1\x4e\x5a\xd1\x92\x17\x2f\xb7\x9b\x10\x23\x78\x17\xe9\xbf\xeb\x68\x6a\x15\x9c\x83\x9a\x4a\x01\x07\x2d\x73\x44\xc1\x40\x9e\x55\x02\x3a\x66\x90\xec\x20\x33\x88\x21\xf8\x49\xa7\x42\x62\xd3\x72\xc2\xeb\x87\x69\x3a\x11\x3b\x7f\x41\x55\x58\xbe\xc6\xd4\xe0\x19\xeb\xc0\x9d\x72\x99\xa7\xc1\xd0\x30\xe9\x0d\x2c\xc1\x35\xc5\x45\x72\x4d\x9d\x63\xa3\x30\xcb\xd3\x22\xcb\x2b\x74\x73\x1d\xbf\x27\x2f\x2a\x77\x72\x68\x4d\x1f\x7a\xbe\x62\x75\xaa\x14\x10\xf3\x4e\xe6\x71\xbd\xe3\x85\x49\x77\xae\x6b\x31\xf2\x75\x1a\x52\x19\x39\xef\x77\x5f\xa3\xe5\x0a\x8c\xd3\xf6\xee\x56\x82\x80\xbd\x7b\xdb\x66\x30\x48\x6d\x96\x85\x2b\x36\xa6\xb8\xc0\x9d\x6b\x47\x55\x5f\xfe\xd1\xa6\x6e\xf1\xa1\x59\xcd\x87\x49\x1a\x43\x6f\x0e\xee\xe0\x8c\x12\xe6\x7b\x53\xeb\xcd\x4d\xad\x3f\xbb\x95\x17\x75\xae\xfd\xd2\xfc\x63\xf4\x27\x22\xdf\xe1\x01\x66\x3f\x46\x43\x88\xf0\x7f\x50\x7e\x43\x88\x8d\xbc\x18\xd6\x75\x25\xf9\xf8\x3f\x75\x94\x1a\x2f\xd8\x5b\x44\x61\xc6\x27\x5b\xbf\x44\xbe\x8c\xbf\x69\xa2\xe2\x7a\x20\x48\x70\xc8\xdd\x9f\xf8\x94\x68\x66\x93\x42\xe4\xd3\x14\x44\xc7\x23\x79\x6a\x01\xd3\x5c\x3b\x35\x71\x7f\xca\xb3\xb6\x1f\xc1\xe9\x85\x98\xe2\x09\x85\xd3\x7a\x74\xdd\xe9\x0e\xc6\x83\x28\xcc\x86\x23\x13\x2b\x2e\x48\x36\x50\x42\x99\xd4\x98\x66\xa3\x0a\x23\x0b\x78\x21\x5c\x05\x10\x0c\x87\x2d\xaa\x23\xe2\x21\x88\x97\x17\xd9\x01\x0a\x00\x18\x1f\xa8\x18\x32\xa5\x0b\x1e\x15\x28\xab\x1d\xdd\x47\x3d\x5e\x02\xe9\x3f\xf8\x82\xc7\x35\x1b\xf5\xf1\x4e\xbd\x2c\xbf\xaf\x1d\x24\x71\x3f\x2c\xcd\x93\x54\xcb\x91\xaf\xbc\x87\x0d\xce\x37\x8e\xa4\x23\xb5\x11\xdb\x5c\x0c\x34\x16\xdd\xfd\x8e\x2a\xed\x82\x4c\x53\xd4\x77\xd4\x79\x76\x74\xf2\x8c\x12\x90\x2e\x37\xdd\xc8\xc6\xf9\xb4\x92\xec\xde\x54\x9a\xd6\xdc\x60\xef\x52\x17\x07\x66\x5d\x4a\xdd\xa7\x52\x06\x26\xcd\x81\x23\xc3\x3c\xc1\xe4\xf3\xb5\x5a\x1b\x41\x62\x82\x61\x4b\x89\x2b\x70\xd9\x88\x6f\x9c\xef\x9b\x99\x7e\x39\x45\x7f\x67\x9f\x6b\x03\x2f\x47\x1c\xfe\xec\xdd\x4e\x05\x88\xf4\x8c\x36\x0a\x51\x3e\xec\xaf\xc5\x50\x05\x12\x8a\xa7\x72\xf1\x0b\xf7\x53\x1d\x02\x3e\xdf\x8e\x6d\x98\x97\xa7\x48\xb9\x31\x1c\x05\xc5\xa2\x8b\x2d\xd4\x79\x93\xda\xd8\x14\x51\x4e\xc9\x7b\x2e\xac\x63\x70\x64\x65\x63\x2e\xc4\x9d\x50\x7e\x6c\xab\xeb\x64\x00\xac\x89\x5d\xc1\x46\xd0\xb6\x2d\xc7\x98\xb1\x9d\x36\x15\xb8\x99\x8e\x3a\x0c\x7d\x90\xc4\x81\x1d\x4b\xd9\x54\x36\x95\x07\x03\x9d\x57\xb4\x7c\xe3\xa2\x57\x6e\x0c\x6a\x1e\xfe\xa6\x87\x8f\x56\x44\xa9\x1a\x75\xed\xfc\xb1\x2b\xd1\x99\x97\x64\xf8\xe5\x46\x86\xd0\xd5\x61\x38\xca\xc2\x80\x55\xed\xa4\x0b\xc0\x47\x43\x77\x95\x75\xcf\x6d\x19\x7c\x03\x26\x56\x1e\xa6\xe5\xe0\x6c\x5e\x56\x0e\x66\xcf\x9a\xbc\x55\xfa\x78\x8a\x48\xd1\xdd\x3c\x14\x5e\x18\x24\x71\x2e\xe2\x51\xd2\xe3\xe9\xed\xc1\x95\x26\x58\x92\x57\x6d\x58\xa3\x1d\x8a\xd3\xe0\x32\xcd\x39\x5f\xab\x46\xec\xe5\x30\x0f\x86\x36\x7e\xe8\x99\xfd\xa4\x6a\xf4\xcc\xb2\x34\x7b\x01\x7e\xa8\x48\x86\xfb\x5a\xde\x39\xf5\xae\x59\x38\x88\x91\x0d\x41\x7d\xf6\x3a\xd5\x5e\x71\xa2\x5f\x56\x22\x41\x7f\xff\xac\x3a\x97\xde\xd2\xc0\xf2\xb3\x35\x97\x7e\x6e\xbf\x26\x09\xe3\x6c\x18\x17\x8d\xe9\x31\xe0\x59\xde\xd5\x28\x9f\xd3\xce\x9e\x2c\xa5\xb6\x6f\xd3\x10\x1d\xc7\x8e\x74\x90\x76\xb1\x10\x10\x36\x61\x96\x4d\xba\xcc\x40\xf6\x0a\x1b\x27\xdf\x28\x6f\x32\x1d\x5a\x22\xc5\xdf\xa9\x28\x2a\x50\x77\x67\x75\x1c\x6c\x24\xac\x1b\x1e\x02\xbe\xe9\xf8\x1e\x78\xb4\x89\x8b\x9e\x8e\x92\x5e\x3e\xad\xd0\x60\x04\x3b\x33\x8c\xb4\x01\x4c\xe6\xb6\x52\xfa\xb9\x5d\x5b\xfd\x7b\xf6\xb4\x97\xc2\xd4\xca\x51\xc2\xb9\xed\x6a\xa2\xdb\xd7\x22\xfb\x26\x9d\xd2\x45\x4e\x7a\x54\x5d\xe4\x41\x72\xe8\x91\x6e\xc3\x04\xe5\xa9\x89\xb3\x20\x0d\xdd\x56\xc6\xd1\x7d\x4e\x1d\xe3\xe7\x2a\x39\x91\x70\x65\xad\x55\xc5\x80\xd1\x53\x89\x6e\xe0\xd6\xb0\x62\x61\x71\x81\x58\x56\x39\x17\x80\xde\xf5\x37\x3b\x9e\xf2\xe9\xcd\x26\x88\x56\x96\x9b\x81\xe0\x13\x05\x1f\xec\x2d\xd2\xf1\x87\x6a\x27\x8c\x6d\xce\x9a\xf5\x08\xde\x4e\x69\xce\xb8\x53\xb5\xad\xf7\xea\xab\x20\x96\xec\xf1\xec\xa8\x9d\xe1\xf1\xaf\xe7\x9a\x78\x2e\x41\x55\x32\xe5\x3b\xb2\xaf\xa9\x3d\x8e\x55\x84\x85\xfe\x51\xcd\xb7\xd8\xbb\x77\x5f\x7b\x1c\xf0\xcb\x31\xe7\xa3\x2a\xe0\xfd\xd1\x64\x2b\x6c\x93\xb6\x51\x9a\xda\x6c\x9c\xc4\x7d\xc1\x6b\x69\x26\x39\x81\x1f\x7a\xa1\xad\x30\xce\xc3\x51\xd8\x67\x0a\xe1\xd2\xef\x72\x1c\x7a\xe5\x0a\xe5\x9b\x26\x3a\xda\x71\x92\xe5\x36\x25\xcf\x82\x23\x69\x9a\x2b\xa9\x54\x96\x3f\x87\x34\xcb\xe9\xc9\x2f\x6f\xa5\xdb\x5c\xd8\x27\x13\xb1\x8b\x72\x17\xc8\x34\xb3\xc0\x00\xab\xb2\x69\x30\xe0\x61\xd5\x19\x79\x83\x4f\x2a\x9c\x07\x7f\xae\x49\x9a\x4f\xea\x6e\xed\x0a\xf3\xef\x2d\x72\x1d\xf9\x67\x34\xfd\xea\xaa\x95\x6e\x66\xa4\x1b\xa0\x29\xc6\xdd\x62\x6a\x69\xdf\x76\x25\x95\x60\x68\x97\x87\xc9\xca\x94\x2f\xd1\x9e\x51\xc2\xb5\x87\x75\xc2\xfe\x9a\x0e\x33\xed\x72\x92\x64\x66\x67\x19\x27\x73\x0f\x42\xc7\xb3\xdc\x9c\x50\x8a\xdc\xa0\x85\x44\xe9\xe5\x27\x1d\x65\x69\x6f\x6b\xdc\xf7\x55\xc5\x9d\x72\x46\x61\x89\xb2\x31\x18\xca\x1e\xf3\xbe\xe0\x05\xd5\xe6\xf7\x25\x2a\xd8\x58\x7e\xa7\x3b\xd5\x34\x52\x39\x5e\x8e\xad\xbd\xfc\x29\x80\xe3\x4e\xd0\x4f\xe1\x5c\x67\xad\x1d\x7c\xe4\x3a\xce\x39\x18\x8d\xbf\x40\x35\x90\x89\x64\xe8\xdd\xb8\x85\x86\x6a\x65\x42\x30\xb3\x85\x7a\xf5\xd7\xcb\x7d\xaf\x19\x53\x3e\xd2\x3a\x2f\x0a\xa7\xfa\x39\x45\x71\x0c\x19\xd6\x04\x4b\x45\xaf\x8c\xa2\xcb\xf0\xc1\xb1\xf3\xba\x98\xa4\x2e\x17\xb1\x77\x6f\x7b\x14\x4a\x02\x4e\x78\xb9\xfd\x34\x23\xf3\x01\x23\x7d\x56\x41\x4e\xec\x21\xe3\xb8\x56\xfc\xf3\xbd\xd7\xf1\xbd\xdb\xef\x35\x41\xe4\xed\xa1\x71\x92\xa2\x0c\x2b\xa5\xe9\x96\x6f\x41\xab\x19\xf3\x97\xe6\xdb\xd9\x30\x49\x65\x5b\x89\x7f\x44\x3b\x11\x2b\xea\x56\x47\x57\xad\x94\xd2\x7e\x92\xe5\xd9\x13\x34\x0a\x70\x03\x2e\x50\x42\x06\x8e\x2f\x18\x7b\x91\x13\x3c\xcb\x12\xa3\x48\xc6\x23\x55\xc3\xc8\x3e\xcc\x3f\xe6\x69\x5b\xb7\xb5\x67\x8f\x07\x3d\x94\xab\x84\x39\x37\x35\xfd\xfd\xfb\xaa\xf3\x64\x3b\xe0\x94\x38\x9b\x7f\x41\x76\x8d\x01\x0c\x13\x45\xe4\xba\xad\xab\xca\x1b\xd3\xd4\xb4\x84\x1f\xd9\xb6\xde\x40\x23\x32\x2e\xfd\x17\xa5\xec\x71\x56\x29\x7b\x9c\x9d\x3c\xea\xf1\x2e\xd9\x13\x6a\x05\x9d\x40\x5d\xd9\xf1\x2b\x28\x39\x44\xca\xe3\xd5\x55\xa4\x91\x1e\xc7\xe3\x9e\xe8\xb4\x9e\x7b\xce\x33\x53\x78\x7a\x7f\xd5\xe2\x35\xb5\xee\x69\xde\xce\x74\x94\x8e\xdf\x87\xf0\x04\x10\x1c\x5f\x01\x72\x44\x7c\x7d\x1a\x5d\xc7\x66\xf0\x92\x27\xa6\x69\xea\x71\x5a\x32\x51\x66\x5b\xaa\x59\x15\x6e\x10\x5f\xd7\xb8\xeb\x9f\xa7\xa4\x42\x6b\xab\x0d\xe1\xeb\xda\x26\x78\xf5\x55\x22\xe7\xa3\xbf\xe7\x22\x1f\x39\x71\x52\xf0\x6b\x38\x67\xf3\x61\x18\x8b\xbb\xc4\x82\x98\x1d\xe5\x3d\x9c\x75\xee\xfe\xc8\xa4\x69\x98\xe4\x79\x4b\x65\xf4\x36\x2b\xcd\xa5\xbe\x9a\x30\x88\x4c\xcc\x3d\xaf\x4d\x72\x90\x4e\xa3\x32\xe9\x85\x0c\xb5\x12\x95\x07\x2d\xf9\xe0\xfc\xc0\x22\x5e\x4a\x8a\xb8\x2f\x31\xa8\x03\x3f\x39\x94\xfe\x45\x55\x1b\x88\x42\x90\x2f\x1c\xf0\x64\x6c\xbe\xe4\x45\x6d\x32\x2e\xca\xcc\x6d\x9c\x81\xf8\x5d\x08\x10\x7c\xda\xe4\xe2\x44\xa1\x93\xff\xcb\x5a\x4e\xf0\xa5\xf9\x76\xdf\x9a\xc8\x01\xcf\xb1\x96\xae\x2a\xa2\xed\xab\xb5\x12\xd8\xc1\x85\x76\xb2\x1a\x4f\xab\xbe\x7a\x0e\x63\x85\x18\xb1\x7c\x66\x78\xd2\x1f\x60\x55\x61\x6b\x3e\xe8\x6c\xcd\xf7\x88\xb3\x33\x32\xb9\x19\x24\x69\xdf\xb4\xbc\x4f\xcc\x95\x3c\xbe\x71\xfd\x87\x7d\x6a\x12\xe4\x9a\x09\x2c\xdb\x8d\x89\x72\xf7\xb6\x77\xd5\x3c\x9c\x53\x54\x31\xa9\x1d\x27\x19\xe5\x00\xa6\xbc\xc6\xff\xd4\xba\x27\x97\xfb\x4b\xc5\x1a\x33\xdd\x6d\x58\x62\xc9\xd2\x92\x4d\xf9\x97\x51\xc9\xe6\x42\x2b\x73\xf7\xd2\xda\x90\xcd\xff\x8c\xd2\x34\x88\xa9\xaa\x16\xa1\xca\x8d\x52\x03\x30\xda\x7c\xad\x8a\x1d\x20\xc1\x9a\xdb\x2f\x27\x1b\xce\x2c\x77\xcc\x2d\xce\xba\x64\x51\xf9\xb0\x92\x82\xfa\x8a\xca\xda\xf6\x22\x3e\x3c\x70\x50\x8a\x96\x32\x2c\x2d\x13\xec\x4a\x91\xc5\x9f\x1f\x66\x4c\x70\x5b\xc4\x6d\xae\x18\xae\x33\x77\x17\x5d\x11\xa5\x97\x00\x02\xe6\x1a\x47\x37\x34\x3d\xf7\x36\x82\x09\x22\xab\x88\x22\x8c\x70\xa0\xb6\x16\x67\x37\x2f\x3b\x37\x65\x58\x64\xcb\x5e\xef\x51\x75\xa5\x89\x45\x39\xa2\x99\x67\xce\xa3\x6f\x50\xf2\xbc\xbf\x8a\xd5\xea\x78\xaa\xe6\x7d\x1f\xf6\x93\x95\xce\x95\xbe\x59\x23\x59\x48\x78\x31\x77\x55\x83\x35\xa7\xf4\xe5\xe1\x9e\xaa\xa6\x10\x96\x8a\x88\x36\x94\x24\x5f\xe9\x88\x73\xf5\x0f\x57\x95\x7b\xb7\x2e\x85\xdc\x3e\x30\xfb\xe2\x13\x9a\x3b\xf9\x1a\x76\xa0\xa8\x20\xf8\x5a\xf5\x0d\xb2\x69\x58\xc3\xff\x0b\x0e\x37\xd6\xdf\x56\xc5\xc8\x73\xf8\x69\x2c\xcb\xfb\x13\xa5\x51\x79\x5a\x33\x42\xb2\x9b\x09\x87\xf6\xbc\xe2\x76\xf9\x6c\xe2\xe1\x79\x4c\x15\x2e\x90\x0f\xf2\xa6\x59\x7c\x15\x03\x0f\x0b\x78\x5d\xf5\x9b\xae\x9a\x68\x99\xb8\x3a\xb0\x08\x90\x9c\xe3\xeb\x87\xc2\x60\x7a\x61\x9f\x7b\x39\xb0\x1b\x80\x76\xaf\x88\x49\xca\x4d\x43\xf5\x74\x75\x48\xc9\x8a\x79\xef\x4c\xd1\x27\xa4\x19\x6b\xeb\xc6\xfc\xe6\x5c\x3b\x0a\x97\x2d\x27\x1d\x91\x62\x03\x52\x16\x6f\x73\x53\x33\xa1\xa9\xee\xd3\x28\x31\xfd\x19\x8f\xc2\x07\x9b\x81\x23\x19\x52\xc7\x9f\x77\x0e\x99\x84\x41\xfe\xc8\xdb\x16\x6b\xd2\x91\x41\xfb\x8e\xff\x46\x2e\xc4\xf1\x8d\x53\x01\xef\x9b\x58\x81\x82\x3f\x9d\x54\x33\xce\x8e\x75\xe0\x7c\xad\x22\xf2\xea\xab\xa4\x15\xcd\x15\x7a\xc6\x2f\x60\x25\x4d\xad\x7b\xf4\xe9\x87\x98\x64\xd4\xfc\x66\x6a\x5d\x1c\x07\x17\x67\xdb\x52\x95\x44\x50\x72\x51\x11\xea\xd5\x0f\xfb\x32\xb0\x36\xe9\xc0\x72\x10\x82\xb4\xc1\x4f\x15\xe4\x06\x19\x7d\xe9\xe0\x7b\xd8\x92\x18\x9a\x38\x9c\x82\x67\x27\x22\x94\x1e\x80\xcb\xce\x3c\x23\x38\x74\x0d\x2a\x1c\x0c\x73\x9e\x59\xbc\x10\xea\x75\x0c\x84\xaf\x94\xc7\x9b\x6a\xd9\x41\x9a\x70\x0d\x41\x40\x9a\xf4\x43\x7c\xa3\x51\x25\x44\x76\x14\xe7\x5a\xc4\x87\xb1\x80\x42\x80\xfe\x6c\xe8\x93\xba\x61\x5e\x30\x25\x9c\x03\x3e\xff\xdd\x8f\x30\xdd\x7c\xd3\xd0\xe1\xf5\x22\xa1\x35\xd8\xbe\x8a\x0b\xa1\xdc\x09\xd5\xac\x65\x96\xdf\x48\xe0\xca\xa0\xd9\xe1\x16\xb6\x27\xdf\xa8\xe0\x22\x88\x4c\x38\x9a\xf2\xd2\x29\x9f\x56\xf8\x20\x55\xf6\xb7\x0e\x89\x27\xd1\x84\x64\xc5\xa6\x2d\x0f\x32\x86\xe6\x8c\x70\x83\x28\x6e\x78\xf3\xc2\x74\xe9\x6f\x6b\x1d\x0c\xec\xb4\xdb\x4a\x3f\x8f\xd7\x32\x26\x67\xa7\x53\xae\x37\xa3\x24\x48\xe8\xa5\x71\xe6\xb2\xe1\xe5\x1b\x4d\xf6\x55\x8c\x46\x36\xdd\x05\xdb\x89\x73\xff\x47\xca\x39\xfa\x40\x21\x82\xb8\x67\xa7\x52\x4f\x96\xb2\xba\x0f\x96\x18\x2a\x20\x25\x3b\xda\xbc\xf0\xe6\x41\xd7\x21\x61\x4a\x8d\x69\x63\xae\xfd\x7a\x61\xca\x30\x87\x67\x8b\x93\xce\x74\xfe\x4a\x02\xfa\x29\xa5\x1b\x3d\x0c\x83\xc8\x66\x33\x3e\x26\xba\xa4\x35\xbf\x90\xa8\xc4\xfa\x9d\x42\x7c\x01\x9f\xfb\xfb\x08\x6f\x25\xf2\x6c\xca\x61\xa4\x49\xcf\xa2\x3a\x22\xac\x55\xf4\xae\x8a\x31\x40\xce\xce\x7b\x0d\x33\xfc\x22\xa1\x39\x06\x33\x5e\x04\x65\x77\xb7\x34\xe6\xf0\xc7\xee\x57\xa8\x64\x5b\x4e\x3c\x0e\x10\x38\x84\x40\x33\xeb\x15\x7c\xed\x38\x7f\x8c\x4e\x0d\xac\xc4\x2b\x1d\x85\xf0\x02\x4c\x04\x75\xe4\x07\xb4\x8e\x60\xf9\xfe\x2d\x05\x77\x08\xe7\x4e\x20\x54\xe4\x4f\xe3\x5c\xc4\x7b\x9d\xa0\x85\x2b\x54\xf9\x7a\xe1\x52\x48\xc4\x5f\x45\xa6\x1c\x27\xf6\x06\x2a\x72\xfc\xbd\xae\xe5\xbe\x67\x32\xbb\xcb\xff\xf8\x03\x1c\x98\xae\xe9\x62\x71\xd6\x9f\x7e\x9e\x6c\xe1\x8c\x6a\xb6\x07\x22\x16\x3d\x1d\xa8\x5d\x61\x71\x4f\x21\x7c\x54\xa7\xad\x3b\x7a\x9b\x10\x0c\x4b\x26\xcb\x7b\x26\x8a\xaa\x10\xeb\xbd\x7b\x5d\xf9\xb7\xa1\x9a\x9b\x8d\xc3\x38\x59\x5a\x9a\xf2\xe8\x84\xcd\x0a\x5d\x1d\x8d\x9d\xe0\x11\x9e\xd0\x04\x98\x31\x57\x58\xd4\x81\xb9\xcf\x1d\x98\x5f\xd5\x02\xfc\xd2\xf9\x9b\x29\x52\x15\x44\xad\x52\xbf\xf6\x81\x45\x14\x82\x48\x5d\x09\xe7\x4f\x54\x0b\x4b\x0d\x9b\xf9\xf5\x83\x6d\xc2\x72\xd2\x73\xc2\x1e\x9d\xef\x28\x27\x43\xeb\x68\x2f\x2f\x27\xad\x96\x62\xab\xd3\xd8\x9f\x86\x46\xa1\xf6\x38\x0d\x47\x42\xd1\xad\x69\xfd\xf8\xba\xb6\xf6\xf7\xee\x5d\x6c\x9b\x55\x93\x5a\x55\x3d\x79\x5f\x55\x4f\xde\x57\x19\x29\x62\x67\x73\x11\x90\x43\x4d\x3a\x77\xe0\x3d\xd7\x41\x96\x2c\x2d\x11\x81\x19\xa7\x3c\x91\x32\x60\x0f\x8d\x6f\x74\xad\x76\x68\x52\xfb\x15\x9f\x0f\x69\xa1\x85\x14\xf6\xf1\xda\xc4\xeb\xde\x1c\xc5\x37\x08\x7f\x13\x0d\x99\xc8\x62\xd1\xfa\xd5\x02\x5c\xb2\x2f\x95\xe6\xd0\x19\x2d\x24\x78\xbb\x33\xb5\xef\xb7\xbf\xe9\x18\xbf\xca\x09\x43\xdd\xf7\x2a\xf6\x1b\xe6\xe2\x06\x49\x92\xf3\x92\xef\xa8\x96\x9f\xb3\x4d\x9a\x45\xcb\x76\x2d\xb6\x19\xa9\xd5\xc0\x3a\xcb\xc0\x28\x0f\xe7\x3d\xcd\x9b\x60\xd3\x81\xd0\xdd\xb1\xd6\x54\xc7\x13\x3a\xff\x8e\x3a\xc0\x46\xe1\xa1\xdc\xee\xd4\xda\xd4\xe5\x76\x87\x6f\x84\x73\x46\x52\x98\x4a\x7e\x60\x03\x7e\x18\x36\xa9\x6e\xab\x02\xb8\x0c\x03\x3c\xb5\xee\xa3\xa2\xd5\x34\xc9\x85\x20\x0f\xae\xf0\x9d\xea\xce\x52\xf5\xe3\x26\x68\x41\x38\x1a\xd9\x7e\x48\xda\xf7\xae\x15\x02\x0e\xa3\x50\x4b\x29\x4e\xec\x61\x92\x4f\x79\x65\xe7\x63\xaa\xd3\xf4\x7a\x47\x09\x5b\xf9\x7c\xad\xe9\x85\xb1\x85\x62\xb6\x80\x00\x5b\x4e\xa0\x99\x19\x79\x25\x49\x2e\x31\x58\xb9\x8b\xa1\xf2\xf0\xa2\x53\x9e\xf1\x7b\x03\x5a\xa5\x8e\x0c\xd7\xc7\x39\xd7\x9b\x1c\xee\xd2\x66\x72\xe6\xc4\xe5\x82\xca\x05\xc1\x37\x5a\xa7\x39\x4d\xfa\x05\xa1\x3c\x0f\x3a\x39\x16\x00\x20\x24\x2a\x95\x43\x7f\x3c\x4c\xf2\x04\x85\x12\x9d\xc9\xe3\xeb\x7a\x6d\xe5\xe5\x7d\xed\x2c\x4f\x82\x65\x5e\x5f\x4e\x65\xb7\x7c\x74\x11\xaa\xda\xfa\xe8\xcf\x23\xc5\xcf\x9e\xb0\xec\x3f\x0f\xff\xff\x42\x23\x05\x6f\x78\x06\xa3\x24\xcb\x57\x99\x32\x4d\xe8\xad\x7d\xbe\xe4\x81\x02\xb5\xa6\x36\xb3\x23\xd6\x9f\x97\x8a\x0d\x52\xaa\x7c\xad\x0c\x5a\x1c\x30\x70\x5b\x07\x89\x38\xa6\x4f\x4d\x14\xb1\xce\x5d\xc5\x9b\x18\x9b\x34\x35\xac\x01\xf9\x8a\xf4\xa3\xd2\xb3\x48\x6f\xea\x13\xba\x0e\x62\xe3\x7c\x97\xcf\xbc\x5f\xa3\x75\x8f\x01\xdd\x86\x8e\x1b\xc9\x29\x93\x35\x91\x64\x33\x3d\x94\xc8\x34\x53\x7f\xaf\xb4\x78\x94\x27\x86\x90\x24\xc2\x35\xe7\xff\x51\x24\xd7\x9e\x5e\xad\x6f\x97\x22\x1b\x20\x57\x8c\xd0\xf2\x82\xe2\xc9\xbb\xe0\xf2\x6b\x91\x35\x99\x5d\x35\x50\xaa\x10\xe4\xb3\x4a\xe5\x68\x35\xc6\x93\x5e\x7b\xa5\x70\xca\x78\x28\xea\x7f\x06\xa3\xc4\x37\x6a\x52\x7a\x29\x18\x4b\x5a\x0a\xe3\x7e\x5c\x1b\xa2\xaa\xf4\x50\x90\xbc\xa0\x78\xf1\x37\x61\x29\x5d\x0e\xc5\xb5\xfb\xee\x5e\x2f\x47\x43\xf8\x8a\xe8\xab\x91\x6c\x64\xcc\x26\x36\xf0\xd3\xdd\xd6\x37\xe7\x38\x96\xdc\xce\x0c\x72\xc8\x61\xd6\x5b\x98\x29\x4b\x9a\xa4\xab\x26\xed\xab\x31\x83\xde\x34\x5f\xab\xd6\xc0\xd4\xbe\x5e\x84\x59\x98\x6b\xa0\x1b\x02\x33\x09\x43\x1d\x7a\xa3\x3c\x80\xa6\x14\xc1\xf5\x5d\x1d\xa7\x80\xca\x07\x41\xc8\x99\x9a\x93\x71\x70\x6e\x7f\xbb\x6f\x47\x26\xee\x63\x6b\x8a\x29\xf2\xf1\xe8\x69\x2d\x3b\x66\xd2\xbe\x8d\x31\x29\xac\x49\x39\x51\xad\xe5\x75\xc6\xe9\x32\xe4\x82\xfc\x3f\x1f\x90\xa8\x09\x9c\xed\xa8\x92\xd3\xd9\x1a\x4c\xa4\xdc\xfb\xaf\x25\x3d\xd7\x06\x82\xa5\x81\xd4\x11\x5f\xd7\x3e\x53\xbe\x88\x09\xa8\x9f\x12\x43\x81\x94\xd1\xa6\x62\x70\x7b\x13\xae\x1f\xfc\xad\x7b\xb5\x53\x8d\xda\x0f\xe2\x71\x64\x62\x87\x09\x72\x22\xac\x7b\xf7\x3a\x84\xdc\x13\x2a\x44\x1c\x5a\x77\xfe\x39\xe5\x77\x1f\x78\x6c\xd6\xfc\xf7\xfd\x2f\x97\x43\x48\xbe\x99\xcb\x63\xff\x98\xe6\x87\xaf\x6b\x1e\xd4\xf3\xed\x5f\xf9\xed\xdf\xfc\x8d\xc5\x96\x47\x40\x81\xd0\x49\xaa\x4d\x6a\x17\x44\x61\xbc\x4c\x88\x8f\x72\xe3\x03\x7d\x70\x1b\x6e\x04\xdf\xa8\xe2\x4b\x66\xe2\xfe\x1a\xfa\x53\xa4\x7a\x56\xda\x6c\x9c\x9f\x50\x34\xc6\xc9\x7c\x53\x29\xba\x5e\x51\x5d\x43\x41\x12\x93\xe3\x98\xa4\x68\xdb\x95\xba\x4b\xf9\x2d\x7c\x5d\xa3\x10\x29\x07\xb8\x67\x09\x49\x2b\xae\x15\x6f\x2f\x05\x5f\xf2\xad\x86\xc3\x24\xcd\x2c\x27\x57\x91\xdf\xe2\xb4\x2e\x37\x1e\x76\x54\x8a\xe0\x7b\xca\x81\x28\x9f\x8b\xd9\x7a\x59\xc0\x94\xd6\x80\x88\x99\x6e\xad\x93\x1f\x98\x7d\x85\x94\xbd\xcb\xd5\xc6\x6d\x67\x52\x5d\xd4\xd8\xb4\x7a\xfd\x22\x30\x59\x3e\xe5\x97\xe7\x45\x95\xbe\xe0\x30\x13\x01\xf1\xdd\x1a\xfe\x0c\x42\x00\xa3\x71\xe9\x75\x0f\xc3\x71\xcb\x63\x90\xf0\x25\xa2\x15\x27\x21\xcc\x1b\x36\x4d\x66\x7c\xa7\x32\x88\x50\x10\xb5\x00\xd9\xc3\xe6\xeb\x03\x5a\x4a\xc8\x3d\xdf\xa1\x65\x42\xbd\x5f\xfb\x9f\x6e\x34\x45\xec\xe3\x4e\x29\x9e\x90\xeb\xe5\x2b\x6f\x9e\xd1\x9a\xe2\x4d\xe9\x1f\x74\xa5\xb7\x7c\x21\xee\x43\x38\x92\x7c\xd3\x48\x28\xb7\xc2\x24\xbf\x6e\x26\x50\xb6\xe6\x6b\x55\xdf\x1e\xa7\x61\x82\x54\x32\x8b\x74\x72\xba\xda\x49\xea\x94\x4b\x00\x26\xf6\x5d\xd2\xb2\x76\x5a\x9e\xbe\xcd\xe7\xc2\x43\x01\x4c\x3d\x3b\x0c\xe3\x7e\x4b\xc9\xe8\x75\x14\x6d\xf0\x59\xf5\x1c\xc1\xd0\xae\xac\x3d\x1c\x21\xe5\xcf\xf9\xd4\x80\x1b\x14\x10\x87\x53\x8a\x26\x12\x9a\xeb\xa8\x81\x3c\x86\x68\x51\x48\x5d\x7d\x61\xe0\xa8\xe6\x06\xe5\xf6\x7a\xc1\xa6\xf8\x1f\x29\xa4\x3c\xd5\xe4\x6a\xd6\xa3\xa3\x7d\x9c\x01\xa5\xa5\x05\x3a\x36\x78\xc5\x7c\xed\x92\xdb\x61\x5c\x1e\x33\x44\x3b\x8a\x61\xc6\x9a\x65\x7f\x8f\x6f\x6a\xce\xd9\xdc\xfe\x76\x1e\x8e\xe4\xfb\x99\x1f\x90\xbe\x5f\xb8\x02\xfd\x93\x87\x71\x38\xe3\x73\x62\xa0\x6b\x13\x9e\x5f\xc5\x6b\x30\x4d\x45\x02\xc1\x98\xd0\xaf\x63\x2e\xff\xa2\xa9\x4f\x7d\x64\xd2\x30\xe7\x64\x1b\xc3\xf6\x3b\x1a\xc2\xdf\x10\x7f\xbf\x66\xc6\x26\xb6\x99\xdd\x81\xf7\xc4\xaa\x01\x23\x07\x1e\x6d\x86\x58\xc8\xa4\x5f\xce\x03\xd0\x76\xac\x2b\x94\xe7\x93\x5d\xd5\x27\x75\x44\x51\xaa\x8f\x93\x7c\x9c\x14\x69\x1a\x4e\x79\x6f\xed\xd2\x44\xb1\x1d\x80\x36\x9b\xc5\x08\x95\x1b\xd7\x0f\xb3\xa1\x65\xb2\x35\x46\x7a\xd2\xab\xa0\xc2\xc3\x09\x21\x21\xa1\xf7\xc3\x7d\x95\x9c\x6c\xc0\xa9\x79\x09\x61\x0f\x5f\x68\x6c\x3b\x1f\x16\xa3\xf1\x30\xf5\xd3\x5c\x69\x2f\xe6\x9b\xce\x33\xca\xb7\xec\x87\x01\x89\x05\x4c\xf9\xcc\x1e\xc0\x92\x88\x01\xb6\xd1\x60\xe1\xe7\xbf\xd5\xa0\x82\x3e\xdf\xce\xf2\x94\xb8\x85\x70\x92\x62\x88\x91\x95\xe6\xeb\x5a\xb1\xe0\xef\xec\x6b\x9b\x38\x4e\x8a\x38\x90\x4f\x09\x63\x11\x6d\x1d\xa1\x32\xf2\x79\x8e\xc8\xae\x84\xb1\xa5\xe2\x18\x20\x5a\xf7\x3b\x8a\x70\xf9\x03\x5a\x6a\x7c\x4d\xa3\xc5\x7f\xe4\xc5\xc8\xe3\xdc\xa6\x41\x32\x1a\x9b\x18\x1d\xcc\x9c\x48\xa2\x99\x92\xa4\x92\xee\x0a\x8e\xc2\x20\x4c\x0a\x28\x26\xc3\x1e\x21\x53\x22\xcd\x01\x3e\x68\x38\xdb\x30\x26\x73\xed\x38\x01\x7f\x80\xa6\x88\xbf\xaa\xc0\x1f\x57\x35\xe6\x3e\x59\x45\x05\x17\xe9\x38\xa4\xe6\xd0\xcb\xcb\xa8\x1a\xe4\x10\xde\x57\x79\xc7\x64\x6c\x53\x93\x0b\xb8\x4c\x0a\x52\x8a\x50\xe6\x5d\xe5\xbe\xe4\x66\x4c\x54\x71\x73\xfb\x9d\x60\x3c\x05\x71\x5a\x31\x03\x1c\x6b\x37\x5d\xba\xc3\x84\x69\xe9\x20\xd9\x06\x2a\x33\x77\xa3\xda\xa4\x32\x6b\xb9\x4d\x4a\x75\x74\xb9\xf6\x2e\x4f\x44\x65\xc6\xa6\x17\x46\x42\x39\x2e\x42\xf4\x2d\xc7\x9a\xae\xeb\x92\x4b\x49\x6a\xd3\x22\x8e\x45\xae\x87\xc1\xbb\x1d\x7f\x70\x1e\x55\xb1\x41\xdf\x06\x76\xd4\xb3\xe9\x63\xa5\x71\xc2\x0a\x82\xf0\x34\x6c\xe7\x34\xc2\x24\xa5\x9c\xf1\x22\x43\x69\x20\x60\xc7\xb5\x5f\x58\x00\x66\xaf\x64\x30\x17\x4c\xfc\x15\x30\x4d\x29\x62\x3a\x1f\xde\xd2\x8b\x0b\xe5\x25\x4d\x02\x7f\x86\x80\x2e\xe2\x35\x78\x4b\xb0\x6a\xcd\x98\x5b\xd1\x5c\x51\x65\x71\x96\x8f\xc8\x1f\xd2\xde\xc7\xdc\x7c\xdc\xf1\x76\xe7\xf5\xc2\x66\x94\xbe\xdb\x4d\x0f\x0f\xc3\xf3\x7b\xaa\x0b\xe3\xc8\xc4\xa3\xb3\x39\x09\xcd\x18\x2b\x0e\xf1\xe0\x7a\x6e\xe8\xf4\x07\xed\x16\xb1\x71\xe5\xc3\xf2\x75\xc7\xf7\x51\xb0\xa2\x96\x08\xbe\x6d\x5d\xed\xcf\x13\x30\x92\x58\xde\x65\xad\x48\xb9\x46\x09\xc8\x9f\xa8\xf4\xea\x64\x6b\x9c\x46\x10\x5e\x38\x5f\x7d\xbf\xd8\xd9\xc5\x5f\xfc\xfa\x0b\xe8\xc9\x17\xf5\x8e\x6a\x76\xc0\x47\x98\xa7\xd5\x11\xb4\x60\x5e\x68\x29\x62\x8e\x0d\x5d\xf3\xd9\x50\xe0\xe3\x71\x64\x72\x6b\x0a\x5a\x56\xd2\x09\xdb\x52\x2d\xb2\x75\xd5\xbf\x51\x18\x87\xa3\x90\x93\xba\x38\xcf\x7f\x04\x3f\x81\x6f\x54\x52\x71\xd9\xc6\x79\x11\x2c\xb3\x48\x05\xce\x1f\xae\x5a\x20\x3e\x81\xe0\x25\xf2\x3a\x77\x6a\x7e\x17\x75\x53\xc4\x66\x64\x15\x7e\x71\xba\xeb\xdb\xa3\x6f\x57\xa8\x0d\x6a\x59\x9d\xd2\xe7\x8c\x12\xc3\x12\x47\xc8\x72\x83\x71\x8b\xaf\x2b\xb4\x19\xcb\x36\x7d\x42\xd5\xda\xc1\x05\x82\x8d\x71\x6d\x52\x69\xbc\x5a\x78\x59\xe8\x32\xe1\xd0\x31\x28\x8d\xbc\xcf\x8a\x72\x0e\x8e\x66\xb6\xe5\x28\xb8\x6f\x12\x70\x09\x81\xd5\x35\x98\x6e\xb8\x90\xbf\xdf\x69\x1d\x94\x21\x3a\x4a\x0b\x10\x99\xcc\xb7\x91\x09\xc5\x2a\xbd\x86\x5a\x83\x08\x96\xa8\x38\xe1\x81\xcb\xec\x0c\x4d\xba\x42\xe1\xb6\x7b\xcf\x13\x15\x4e\x65\x75\x98\xf4\x6c\x9c\x27\xba\xd9\x1a\x49\x0f\xbe\xae\x64\x10\x86\x36\x7b\xd4\x1b\xaa\x1d\xe0\xde\x11\xa0\x2a\xad\x60\x0c\x0f\x0a\xa1\x70\x2d\x77\x76\xbd\x16\xf1\xfa\xa4\x35\xb7\x7f\xf3\xa3\xea\xa9\xad\xe2\xa1\xe3\xa8\x64\x54\x14\x76\x85\x8b\x57\x91\x6e\xb5\xd6\xeb\x9e\xd1\xbe\xf6\xd0\x44\x39\xeb\x14\x22\x12\xe0\x4d\x2f\xfc\x02\xf4\x6d\x98\xca\x3b\x6a\xed\xf7\xed\x92\x8d\x33\xb0\x78\xe3\x9d\xd1\x29\xe5\x58\xa5\xfd\x3a\x7d\x53\x03\x46\x3f\x98\x68\x95\x91\xcf\xf0\x1a\xb0\xa7\x75\x39\xe0\xb9\xfd\xed\xb1\xc9\x32\x1b\x0f\x38\x04\x76\xf6\x46\xa5\x5e\x7d\xb9\xa1\xc8\x51\x70\xa3\x49\x17\xf5\x8a\xf2\x63\x0f\x13\xaf\x20\xe5\xb3\x54\x35\xf3\xc3\xd2\xad\x93\xed\x74\x23\x58\x8e\x06\x7c\xb2\x8d\x9a\xdd\x2a\x7d\xa5\xd4\x66\xd6\xa4\xc1\x10\x0e\x37\xd6\x97\xe4\x76\xf8\x6e\xbd\xa9\x4f\xad\x3f\x22\xb6\xbd\x94\x54\x03\x5b\xfe\xe8\x3e\xab\xaa\x6a\x67\x55\x07\x43\x1c\x0e\x6c\x1a\x1a\xaa\xd3\xe0\x2c\x07\x34\x83\xaf\x1b\xb3\x9b\xb9\xc9\x51\x26\x71\x5e\xef\xd7\x0f\xfe\x7f\x79\xbd\xa4\xb2\xba\x45\x26\x18\x05\x2d\xbe\x6e\x88\xd2\x5f\x6c\x9b\xa5\xc8\xe4\xc9\x21\x69\x59\x77\x82\x68\xee\x64\xaa\xe3\xf9\xf6\xee\x6d\x8f\x43\x80\x1d\xa4\x06\xdb\xf2\xfd\xbd\x9a\xc3\xd9\x46\xcb\x61\x2a\x69\x5d\xa1\x68\xa2\xa1\x16\x58\x7f\x4d\xfd\xf3\xe5\x7d\xe4\x91\xae\x84\xfd\x82\x9d\x7e\x46\x07\x61\x25\x0a\x54\xc8\xe7\x00\x28\x73\xfc\x54\x69\xb4\x84\x28\xa3\x34\x22\xf0\x05\xff\xcd\xc4\xbb\xd7\x17\x3a\xaa\x88\xf0\x28\xb1\xd3\xe3\x03\xdb\xd6\x55\x5c\xcd\x20\x24\x6c\xde\xcb\x34\xe4\x92\xba\xf2\x10\xc7\x9b\xc0\x70\x02\xc6\xc2\x08\x58\xa1\xac\xa1\xc1\x47\x65\xe6\x77\xb1\xfe\x60\xcf\xbe\x02\xf7\x03\xf0\xf1\x16\x58\x7c\xb8\x13\x72\x5d\x35\x68\xcc\x10\x78\x53\xd0\xfb\xfe\x5c\x0b\x6c\x4a\x15\x66\xa4\x1f\x77\x74\x95\xfc\xf0\x9f\xd1\xa9\x2f\x6d\x7a\x2d\x27\x35\xb0\x7d\x5d\x8d\xd8\xe7\x8a\x9d\x25\x2d\xe2\x6c\xa7\x66\x7c\x52\x2a\x55\x13\xcd\x0b\xd2\xd1\x2a\x29\x27\x55\x72\xfd\x38\x8d\x2b\xbe\x99\xc9\x54\x44\xe5\xca\x37\x8d\x15\x71\xdf\xa6\xab\x69\x98\xdb\x69\x0f\x31\x66\x1c\x2f\xc2\xad\x3b\xba\xa5\x18\x6b\x0e\xb3\x70\x47\x01\xb9\xc2\x41\x9c\xa4\x2c\x03\x86\xaa\xe6\x59\xf8\x23\x7c\xa3\xec\x7a\x9e\x86\x4b\x11\x5a\xd4\x44\x58\xb3\xe5\xd4\xbf\x2e\xba\x64\x76\x3e\x0c\x25\xef\x37\xe7\x6d\xb9\x57\xa8\xbb\x54\xcb\xe2\x48\x4a\xa1\xc8\xc9\x75\x9d\xf2\x9a\x2d\xa7\x34\xfc\x60\x43\xd5\xac\xee\xaa\xca\x49\x66\x33\x52\x29\x44\xfe\x05\x41\xf0\xe6\xa4\x02\x2c\x75\xe9\xce\x8b\xb5\xf6\x23\x52\x50\x06\x7e\x51\x8a\xa0\x70\x7e\x7f\xa0\x1c\xe1\x1f\x34\x34\xe0\xb5\xfb\xc9\x6a\xbc\x6a\xd2\x3e\x49\xd1\xc2\x6f\xfa\xb9\x96\x91\x3a\xaf\xfa\x20\xb4\xce\xdd\x2f\x1e\xda\x98\xb2\x14\x15\x49\xaa\xa4\x92\xff\x1d\xf0\xac\xf2\xd1\x97\x92\xa0\x10\xbf\xd0\xf5\x4f\xbb\x1e\x98\x7a\x21\x79\xef\xde\x76\x9e\x14\x38\x33\x84\xf9\x53\x01\x60\x8e\xba\x5c\x78\x69\xb5\x02\x22\x78\x67\x58\x47\xc7\x83\x60\xef\x93\x57\x0c\x23\xc0\xa9\x44\x54\x5b\xeb\x64\x6f\xf2\x6a\xc4\x7c\xe1\xed\xd8\x49\xda\x55\x70\x71\x58\xe4\x14\xc8\xb7\x2b\x6a\x62\x5f\x4b\x62\x93\x0f\x4d\xcc\xaf\xe7\xf8\x3a\xcb\xbf\xe6\x9b\xc6\x6a\x97\xe9\x25\x45\xde\x52\xc5\x80\x89\xc7\xec\x9d\xe9\xe8\x54\xd0\xf0\x11\xa5\xbd\xd2\x5a\x57\xed\xd7\x5f\xd2\x2b\xa2\x6e\x7b\x8b\x4f\x66\x2c\xbd\x4d\x7a\x74\x8c\xd6\xae\xae\xf7\x5e\x98\xbf\xc5\xb5\xbd\xef\xdd\xcb\x99\xdf\xff\xb9\xd9\x03\xcd\x96\x43\x84\x28\x0e\x81\xea\xc8\x06\x8e\x51\x05\x19\x3f\xf7\x27\x9a\x65\x3b\x0e\x5a\x3e\x29\xb2\x93\xdc\x0a\xbe\x5e\x77\xd5\xc1\x30\x4a\xf2\x1d\x5e\xf0\x12\xf6\x07\x4f\xf5\x43\xf8\x76\x98\x4f\x28\x8e\x69\x35\x6b\x0c\x03\xe4\xc5\xe0\x3f\xdd\x6a\x3a\x9d\x7a\x1c\x5a\x39\x82\x27\x27\xce\x79\x05\x4b\x09\x21\xf8\xbb\xea\xc1\xb3\x24\xdd\xdd\x72\xb4\x12\xdb\xd6\xd5\xa8\x83\xdc\x5d\x88\xc7\x30\xd0\x9a\x4b\x02\x13\xfd\x38\x92\x7e\x28\x44\xfe\x18\xe6\x04\xab\xe7\x18\x3c\x59\xe5\xa1\x49\xee\xf2\x7d\xbd\xae\x76\x76\xb7\x6e\x3a\x12\x34\x8c\xf3\x34\x89\x1c\xcf\xb7\xde\xb7\x7c\xad\xea\x48\xac\x46\x6a\xa2\x1d\xf4\xf8\x98\x5c\x26\xa4\x84\x1b\x08\x45\x2c\x8c\xcb\x2d\x85\xef\xdd\x0d\xc7\x56\xf0\x4b\xe5\xd7\x83\x56\x65\xa3\x21\xb9\xf1\x4a\xbb\x5f\x06\xa2\x2e\xe1\x83\x8d\xf9\xb1\xf2\x80\x3f\x6e\x90\x81\x6f\x67\xc9\x88\x84\x0e\xa7\x3c\x93\x28\xea\xe3\xf0\x05\x6e\x29\x92\xc3\x87\x27\x75\x31\x18\x54\xce\xd8\x3c\xa3\x1b\xaa\x2e\x60\xc8\x61\x44\xef\x29\x49\xfa\xef\x34\xba\xa6\x49\x6e\xe3\x3c\x64\x0f\x03\xe6\xeb\xa4\x92\x7d\x3f\x59\x7b\x81\xbd\x7b\x17\x49\x91\x2d\xcd\xb7\xe8\x0d\xf8\x6e\xbb\xa6\xb1\x7a\xb1\x3d\x32\xb1\x72\xcb\x70\xfe\x03\x00\xce\xd7\x0d\x68\xc1\x85\x76\xcf\x2e\x25\x29\x8e\x32\xa4\x50\x40\xfb\xc1\xd7\x9d\x67\xeb\xd5\x26\x03\x72\x6e\xce\x6f\x60\xd2\x25\xd9\xe1\x13\x5b\x21\x41\x1d\x03\x9b\xa9\x74\xee\x29\xa5\xb6\x70\xaa\xa1\xe1\xe3\xc5\x76\x6a\xc2\x0c\xf3\x86\x42\xe3\x0d\x05\xed\x46\xd1\x5d\x10\xe6\x5b\xd7\xf0\xdc\xfe\x76\x3e\x4c\xad\xc9\x6d\xcc\xfc\xbb\x68\x62\x64\x66\x48\xbe\xa9\x19\xc9\xc5\xd9\x76\x94\x04\xcb\x22\x9f\xec\x2a\xc9\x1e\xf5\x7a\x52\xe9\xd2\x7c\xd2\x20\x25\xb6\xaf\x1d\xdb\x41\x92\x87\xc6\x69\xb3\x39\x4e\x6c\x6d\x04\x1b\x7a\x22\x57\x92\xd0\x65\x25\xb9\xad\x5f\x25\x88\x8e\xba\x86\x8e\xc0\xe4\xc3\x24\x0a\x03\x46\x3b\x73\xfe\x0c\x5b\x1a\xd1\xd3\x6d\xb6\x16\x58\x88\x3b\xbb\x4f\xab\x10\x2c\x37\x61\x24\x55\x12\xa7\x9f\xee\x42\x97\x3a\xc9\xf7\xc2\x62\x19\xad\x18\x82\x65\x81\xf3\x83\x95\x9e\x68\x2a\x44\xf5\x49\x51\xc8\xf6\xfb\xb6\xbf\xa3\x8c\x37\x10\x8d\xdc\xc3\x8a\x10\x6e\xbb\x96\xa3\xa4\x3a\x49\xf1\xbb\x93\x45\xf4\xfd\x85\xb4\xe0\xf8\xc3\xba\x58\x12\x99\x2c\x03\x81\x0a\x72\x89\x7f\x58\x61\x27\x25\x5b\x07\x10\xce\x45\x78\xc6\x7c\xa3\x80\xc6\x57\x3a\x5b\xea\xed\x52\x62\x7f\x5b\xeb\x74\x27\x26\x15\x00\x1a\xd0\x39\xef\x4d\x94\x24\xdc\x7b\x58\x33\xb0\x7b\xc3\x24\x4f\xc6\x69\x92\xdb\x80\xe2\x31\x8c\xba\x68\x92\xd3\xf7\xcb\x42\x51\x03\x34\xea\x45\x02\x0b\xd2\x67\x0c\x56\x38\x0f\x97\xc8\x6d\x3e\xa6\xf4\x33\xec\x14\xbd\x16\x27\x85\x55\x3f\x00\x67\xfe\xa4\xfa\xd8\x54\x20\x37\x2b\x36\x35\x03\x4b\x4a\xbf\x8a\xdd\x7b\xa1\x12\x77\xb9\xbe\x4d\xb7\xc0\xcf\x75\x54\x83\xfa\xbd\xa6\x36\xeb\xb1\x09\x96\xcd\x00\x7b\x14\x5f\x3c\x0d\xc2\x40\xcd\xc2\x22\xda\xea\x0d\xc1\xe3\x30\x8c\xa2\x2c\xec\x5b\x55\xb5\x3b\xa7\xaa\x76\xe7\xea\xaa\x72\x73\xed\x9e\x25\xbd\xb5\x96\x96\xcf\x29\xd7\x8c\x74\xec\x79\xec\x61\x14\x8e\x31\x3f\x61\x45\xaa\xfb\x43\xe5\x51\x7c\x58\x4b\x63\xed\xd9\xd3\x36\x99\xd0\x47\x38\x0d\x1f\x5f\xc7\x3e\xa5\xd0\x0a\xa5\x31\xe7\x94\x32\x8e\x03\x94\x1f\xf8\xba\x56\x13\x25\x5c\x7b\xce\x6c\xcc\x6e\xce\x2f\x29\xfa\x9c\x4b\x8d\xa8\x83\x5f\xf9\xc6\x6f\x2f\x7c\xe3\x37\xe7\x51\x4d\x87\xd7\x79\x91\x83\x24\xbe\xab\x44\xc2\x3a\x42\xd6\xa5\x0c\xb3\x2c\xd1\x07\x52\x87\x57\x60\xd8\xf8\xa6\x91\x2a\xdd\xc4\xe1\xc8\x08\xf7\x0b\xf6\x1a\xa7\xb7\xf8\xc6\x81\xc3\xb2\xbc\x48\xfb\x6b\x4a\x8d\xf5\x82\x52\x63\xbd\xd0\xd8\x04\x5e\xf4\xa2\x30\x20\x8f\x09\x46\xec\x88\xd2\x0f\x7b\x57\xfb\x28\x9e\x42\xaf\x6f\x7b\x45\x3e\xed\x0b\xd5\xe7\xe1\xb8\x89\xec\x76\xb9\x0c\x25\x0b\xe2\xbb\x6e\x5a\x5d\x45\x4a\x21\xf0\x4c\x3c\xff\x55\xe4\x04\xf9\xa6\xb6\x16\x9e\x67\x81\xc7\x96\x4f\x82\x7e\x86\x3d\xc1\x37\xb5\x86\x89\xf2\xd8\x2a\xe2\x6c\x6c\x03\x55\x86\x69\x6a\xba\x6b\xf0\x0e\x82\x24\x4a\x46\x3d\xe1\x63\x84\xe7\x74\x5f\xbb\x51\xf7\x1b\x4e\xfa\x05\xa8\x36\xd8\x2c\x6f\x91\x2f\x05\x4f\xe8\xa4\xf2\x8a\x4e\x7a\xd6\x11\x52\xe1\x89\xa2\xd6\xd4\xc2\xcb\xfb\x3c\x65\xc7\x93\x4a\x73\x21\x84\x44\x8f\xa7\xab\x39\xad\x54\x12\xeb\x8a\x57\x7b\xf7\xb6\x6d\x5e\xf4\x99\x81\xff\xff\x17\x2d\xfe\x4b\xf3\x6d\x9b\x05\x69\xb2\x4a\x1f\xc1\x38\x1e\xa1\xec\x2f\x5f\x6b\x94\xec\xc8\xa6\x61\x60\xe2\xc7\xc8\xa6\x20\x3b\x72\x9b\x86\x51\x62\x03\x9a\x7e\xe7\xe3\x7a\xe6\xff\xef\x4c\xd4\x34\x6d\x5f\xd7\x10\x2a\x5f\x05\xbe\x34\xd1\x14\xb3\x8f\x2a\xed\x84\x5b\xf0\xf1\x90\x29\xd9\x44\xaa\x81\x8b\xac\x64\x6b\x50\x5c\xf8\x48\xe5\x83\x56\x92\x68\x25\xa1\x95\xe9\x3a\x94\x7d\x62\x6b\x53\xf1\x48\x61\x65\xa2\x42\xf9\xb6\x22\x58\x0c\x4a\x5b\xb8\xa6\xeb\x6a\xe7\x94\xe4\xe8\xb9\x9a\x61\x58\x9c\xdd\xd7\x5e\x32\x2b\x94\xa4\x50\xe2\x53\x1f\x2a\xcf\xf0\xc3\x1a\x19\x02\x25\x1f\x93\x2c\xb7\xf1\x72\xb2\x9a\x2d\x87\x48\x40\x22\x2d\xc2\xf0\x03\xbe\x69\x14\x57\x7d\xa3\x5c\x9f\x52\xfc\x13\xda\xec\xf2\xd5\x84\x4f\xbb\xa9\xb3\x9c\x6c\xb5\x6a\x5f\x57\x94\xb6\x97\x14\xa8\xa6\x20\xa9\xd7\x6a\xbf\xc4\x4b\x3e\xc8\x7e\x08\xc3\xd2\x8a\x4d\xf3\x90\xe1\x92\x0b\xde\x85\x50\x74\x05\xb5\xde\xfa\x03\xb3\xf3\xbb\xe8\xb5\x11\x07\xb2\xe6\x24\xd7\xb9\x31\xd5\x2e\x13\xec\x48\x07\x8f\x93\xef\xe0\x00\xce\x07\x66\x5d\x61\xdc\xe3\x2c\x7e\x44\x33\xeb\xe4\x17\x9d\x32\xdb\x25\x45\xcc\xdd\x2b\xc2\x28\xdf\x41\xde\x0a\x92\x7a\x0c\xa0\xe2\x1b\x45\x56\xf5\x25\x4c\x9b\x93\x66\x5f\x9c\xad\x48\x5a\x89\xfa\x77\x83\x8a\xd2\x52\x39\x26\x51\xf8\x86\x4d\x5b\xaa\x2e\x72\x42\x33\x10\x76\x7e\xe5\x21\x81\xce\xd8\xa6\x59\xe2\xe9\xb1\x25\x9b\xa0\x53\x0b\x6a\xce\x86\xd6\x46\xbc\x1a\x24\x2f\xa5\x20\x4a\xb5\x67\xa3\xf6\xa8\x24\x8a\xcc\xd8\xc1\xae\xe0\x62\x33\xcd\x15\xc0\x9a\x77\xd4\x30\xbe\xe5\x75\x59\x8b\x34\x23\x3d\x6e\xdf\xe2\x87\x53\x8f\xaf\x6b\xf9\xab\xf2\x84\xc9\xd6\x82\x61\x68\xf2\x94\x5d\x57\x41\x90\x2b\x98\x7d\xe3\x79\xcb\x3e\x5d\x4b\x3d\x21\x07\xd0\x22\xea\xec\x93\xcd\x3d\x93\x65\xa1\x70\xdc\x35\x1a\x40\x25\xac\x17\xa5\xd6\xf4\xd7\x76\x79\x6f\x85\xc5\x46\x90\x8a\xe4\xe6\x53\x81\x45\x69\x0e\xd5\x13\x8a\x00\xe2\x1e\x6c\x93\x6b\x49\x39\xe8\xf8\xdf\xce\x29\xf2\xdb\x16\xd9\x39\xbc\x65\x5d\xbe\x6a\xcf\x9e\x36\xd1\xaa\x67\x56\x41\x66\xf9\xb9\xc5\xd6\xb7\x9c\x18\x5c\xdd\xf5\xa3\x44\x4d\x1a\x0e\x42\x38\x32\x38\xbf\xa1\x17\xc0\xd7\x0d\xe1\xe5\x7c\x3b\x48\xc6\x63\xae\xcb\x20\xce\x47\x45\x8f\xaf\x35\xfd\x58\x1a\x8e\x46\x04\x8d\x92\x56\x1d\x05\x8a\x39\xe1\x63\xa1\x24\x5e\x09\x7d\x2d\x06\x89\xf5\x1d\x5d\xdf\xfe\xb0\x89\xb1\x42\x5c\xb4\xa1\x1a\xa4\x7b\x61\x12\x25\x03\x47\x75\x05\x6f\xe2\x38\x6d\x5a\xbe\xee\x78\x91\xd8\x41\x6a\x6d\x9c\x8d\x4d\x4c\xf4\xe8\xe8\x86\xf9\x33\x45\x19\x7e\x9e\x0a\x88\x7c\x4d\x83\xc0\x7f\x03\x8b\xca\x01\x0f\x5c\x0d\x89\x7e\x1a\xfa\x4d\x98\x74\x93\xbd\x2d\x1c\x57\x1f\x63\x81\xf0\x8d\xca\xa6\x07\x45\xda\x6b\xf9\x1e\xaf\xdb\xb4\x17\xf8\xda\xa9\x5f\x8e\x8b\x28\x18\xa6\x61\x79\x42\xb7\x54\xdb\xd4\x4f\x26\xbe\x06\xf7\x93\xce\x53\x1a\xab\x62\xb3\xdc\xf6\x29\x71\xae\x9a\xca\x18\x9e\xf3\xa3\x5f\x59\x77\xf5\xba\x17\x9e\x43\xe2\x49\xd0\x5e\x5b\xb7\xfa\xfe\x97\xb7\xca\x66\xb0\x8f\xd7\xd1\xfe\x9e\x12\xd7\x49\xb2\xdc\x44\x53\xaa\x99\xef\xa8\x52\xc7\x43\x8e\x15\x6e\xf5\xdb\x55\x9f\x76\x85\x7b\xe0\x1c\xcf\xc9\x81\x59\x47\xd2\x5a\x5a\x30\x54\x8e\xcf\x75\x7c\xff\x3d\xcc\x3a\x52\xce\xdf\xae\xc0\x03\x5e\x88\x5f\xa0\x21\x65\xd2\x7b\x95\x2d\xb9\xdb\x90\x98\x21\x5b\xde\x97\x60\x1a\xc1\x36\x49\xb4\x4a\xbf\xcb\x94\x8a\xbc\xc3\xf8\x35\x68\xc0\xea\xbe\x3a\x15\xdf\x5f\xd1\xec\x54\xef\x3b\x7f\x37\x48\x8b\x6c\x38\xed\x5f\xfe\x02\xad\x50\x2c\x67\xe4\x29\x71\x0c\x9d\x55\xe2\x60\x17\xca\x08\xc8\x8b\xf9\xa7\x61\x96\xc4\x23\x21\x3e\x42\xf8\x88\xa8\x98\xaf\x95\x0f\xd2\x2b\xd2\x01\xe8\x57\x05\xd9\xba\xa1\x90\xad\x1b\x9e\x24\x9b\xca\x8f\x8e\x58\x0e\x8d\x2d\x82\x0a\x7d\x52\x69\x12\x71\xe7\x86\xaf\xec\x9e\x82\xc7\xc6\x37\x0d\x12\x28\xfb\xda\x26\x18\x86\x76\x45\xbc\x1a\x96\xb8\xc3\x4e\x12\xbd\x3b\x5d\xed\x59\x2a\xd7\x58\x9f\x81\x82\xac\x9c\x40\x0f\x2d\x2a\x0a\x4f\x54\x62\x7b\x5e\xdd\xa8\x92\x7f\x02\xab\xce\x37\x5a\x8c\x5e\x27\xb2\x36\xca\x38\xdc\x87\x94\x38\x16\x70\xec\xbc\x03\x78\x02\xdf\x54\x8e\x05\xa2\xf1\xd0\x9a\x01\x1b\x4a\x47\x16\x90\x2c\x06\xe0\xb9\x61\xcd\x4d\x08\x9c\x87\xe3\x55\xf5\x1c\xab\xce\x89\x37\x51\x14\x96\x5f\x3d\xb3\x55\x15\x85\x6b\x8f\x0a\x24\xb9\xa1\x8a\x87\xef\xeb\x43\x69\x5b\x4d\xdc\xd4\x25\x3a\x2d\xf5\xe7\x22\xa6\x55\xe5\x32\x57\x3b\x53\xd3\x5b\x9a\xde\x70\x94\x91\x60\x90\xeb\x84\x71\x34\x5e\x77\x3a\x14\x8f\xc0\x26\xe3\x64\x62\xcd\xe6\x8e\x42\x7e\xf2\x99\x27\xa4\x1a\x72\xda\xbf\x5e\x84\xc1\xb2\x4d\x77\x90\x6f\xc4\xba\x13\x8a\xf5\xec\xd8\x44\x15\xce\xc1\x02\x03\xbb\x7a\x51\x55\x08\xef\x21\x29\x84\xe3\x6c\x7b\x57\x23\xcb\xd3\x54\x0b\x32\x2b\x92\x59\x87\xb3\xea\xfc\x35\x25\x2c\x98\x05\x69\x28\x4c\x47\x74\x04\x38\xbd\xeb\x03\xc2\x7e\x73\x75\xe2\x49\x0a\xb6\xc1\x34\x22\xc9\xf8\x66\x47\x05\x53\xc7\x51\x86\x14\x74\xd4\x56\x6f\x79\x71\xb6\x9d\xac\x4a\x4b\x0a\x93\x75\xe2\x13\xc2\xdc\xe9\x0c\x7b\xb2\x6a\xd3\x61\xe2\x65\xe7\xa5\x91\x4e\x77\xd5\x35\xf8\x5f\xcc\x28\x58\x70\x2f\x8b\x20\x60\xde\x01\xa3\x16\xdf\xd4\x6c\xdd\x4b\xf3\xed\xa5\x28\x31\xbe\x5f\x11\x68\xc4\x53\x0a\x99\x78\x4a\xa5\xea\x06\xa9\x89\xb1\xcb\x00\x15\xfa\x3d\xd5\xeb\x79\x51\x21\x15\x58\xf7\x50\x98\x73\x7c\x7d\x2b\x30\xa9\x8d\x44\x8b\x08\xdf\x7f\xbb\xa3\xb4\x85\x6f\x37\x26\xb9\xfa\x36\x0b\xc4\xcc\xb9\xc1\x2b\x7f\x40\x06\x4f\x16\x57\x2f\xec\x8b\x1e\xf4\x2b\x4e\x31\x50\xcb\x07\x36\x16\x14\x57\x93\x34\x1f\xce\xe0\x6c\x16\x20\x49\xf9\x53\xba\xae\x25\x79\x08\xc5\xcd\x7a\x96\x90\x6e\xd8\xe9\x5f\x2a\x9a\x9f\x6c\x18\x3a\xad\x6f\xa1\x13\xa0\xd5\x0e\x37\xe2\xb4\x32\xe8\x77\xd1\xd0\x8a\xef\xbb\xa5\x8e\xbf\xb1\x4d\xc6\x91\x7d\x8a\x16\x18\x76\xfc\x97\x18\x26\x38\xd2\xef\xd0\xfa\x64\xba\x83\x8e\xa2\x28\xbb\xdc\xd1\xbe\x9d\x4f\x94\xdc\x04\x0f\x9a\x23\xa5\xfe\xfa\x41\xde\xa5\x3f\x55\xcc\x2f\x5c\x16\xc5\x6b\x33\x24\x0c\xc5\x60\x29\x07\xc2\xc4\xdd\xc4\xfe\x77\xb5\xd7\x45\x21\x66\xfb\x48\x35\x81\xfd\x0b\x8d\x95\xb9\x4a\x60\x7b\xfc\xd1\x11\x65\xe3\x83\x24\xce\xc2\xbe\x4d\x6d\xff\x11\x1a\x08\xe9\xe2\xf7\x99\xdd\xb7\x2a\x41\x25\x66\x9d\xff\x47\xc9\x4a\xdf\xc3\xeb\x09\xf8\x93\x1e\x0f\xc3\xf6\x33\x0c\xbd\x70\x05\x34\xc0\xc1\x57\x42\xbb\xea\x96\x3f\xbc\xed\x3f\xeb\xf8\xf6\x84\x3f\x53\xda\x2c\x26\xcf\x6d\xdc\xcf\x94\x57\xc0\x2c\xdc\x7c\xa3\xf0\x39\xd9\x72\xb9\x14\xfb\x8a\xa8\xe0\xb0\x26\x2a\x38\xbc\x35\x78\x9d\xdb\xdf\x3e\x30\xfb\x35\x85\xaf\xdb\x44\xf4\x08\x74\xc9\x31\x5a\x6a\x92\x20\x56\x04\x30\xf7\x34\x72\xe1\x03\x34\xe4\xb1\x10\xac\x36\xa4\x9f\x41\x75\xce\x49\x1e\x94\x83\x05\x2f\xf0\x38\xa6\x09\xe1\xec\xb7\x27\xbe\xb5\x8c\x95\xd6\x70\x9c\x6f\x76\x34\x5d\xee\x97\x34\xe5\x58\x7d\xd0\x29\x87\x1d\x9f\xe9\x96\xeb\xca\x25\x98\xcb\xb5\x2b\x02\x4d\xde\xf7\xfa\x08\x6e\x82\xf8\x1d\xa5\xf3\x86\xd5\x77\x5f\x29\x80\x3e\xc0\x14\xb2\x76\x4b\xad\x22\x7b\x70\x71\xb6\xfd\x5c\x95\xcc\x14\x00\x1a\x61\x36\x6d\x98\xe6\x71\x1a\x06\xae\x63\x05\x99\xa4\x4f\x27\xde\xbd\x04\x13\x1e\xce\xd0\x1b\x4a\x47\x67\x64\xe2\xbe\xc9\x93\x74\x6d\xba\x4a\x4e\xe0\x58\x45\x35\x45\xfa\x69\x2a\x0c\x63\x27\x1e\xa9\x41\xb0\x4a\x53\x93\x15\xe2\xfd\xb0\x28\xa6\xa6\x53\x3b\x37\xf9\x9a\x2a\xab\xe5\x36\xc5\xb9\x64\xa2\x47\x69\x5e\x79\x2a\xe9\xb0\x84\xd5\x79\x9f\x51\xb8\x8e\x9b\xc7\x31\x02\x5c\x53\xa7\xe5\xad\x8e\xe6\xd6\xea\x28\x0e\x79\x02\x0a\x89\x5e\xfa\x79\x4d\x6e\x30\xd5\x55\xf9\x85\x29\xdd\x58\xb2\xbd\x2b\x79\xe1\xd7\x8a\xfe\xc0\xb2\x9d\x13\xb5\x23\xd5\x12\xc0\x2c\x5e\x78\x86\x93\x6c\x40\x00\x7d\xda\xe5\xb8\xb7\x97\xc5\xac\x4b\xd7\x8a\x6e\x61\xa9\x92\xf1\xaf\xc6\x3b\xcb\x3f\xc4\xf2\xba\x3b\xa9\x2a\xf6\x96\xaf\x21\xfe\x9d\x67\x0b\x7f\x9b\xb6\x0d\x5f\x4f\x54\xa1\x7e\x43\xf5\x42\x9e\x6c\x92\x1f\xad\x7a\xaa\x18\xed\xcb\x1d\xa5\xa0\x7c\x59\xb3\x11\x46\x49\xc1\x75\x45\xc1\x90\xd2\xab\x3b\x3f\xc8\x6f\xd1\x5b\x4d\xb4\x89\xab\xd6\xa9\xf3\xaa\x1e\x16\x27\xb4\xd9\xf1\xad\xdd\xe3\x30\x4f\x24\x67\x8f\x21\xff\x5c\x67\xd3\x3f\xaf\x61\x5f\xbe\x39\xd7\x8e\x2d\x63\x9d\x84\x58\xa6\xf5\xcd\x39\xc7\x2b\xe3\xc3\x98\xac\xe8\x8d\xc2\xdc\xa9\xf2\x3a\x06\x42\x45\x42\xd6\x10\xd8\x92\x6a\xbe\x50\xf7\x61\xef\x5e\x52\xfb\xd8\x77\x98\xc7\x49\x9a\x86\x70\xca\x50\x1b\x3b\xae\x3b\xd1\x8f\xd7\x1e\xfc\xd7\x08\xae\xcc\xe3\xef\x50\xe6\xae\xf1\xb1\x5e\x67\xdd\xbb\xb7\xdd\xb7\x3d\xc3\xd8\x30\xec\x4d\x1c\xb5\x88\xfa\xaf\x55\x34\x92\x2b\x70\xe7\x06\xc5\xb4\x41\xd2\xe7\xe0\xc6\x89\x4f\xcc\x6b\xf1\x09\x47\xd5\x14\xf5\x6d\x1a\xad\x4d\x7b\x4a\xa1\xbb\x8a\x68\xf1\x26\x0d\x05\x1f\x7b\x38\xbb\x90\x4e\x3d\xa3\xd8\x9e\x8a\x38\x18\x9a\x78\xc0\xfd\xf7\xaf\x38\x20\x83\x5a\xd3\xc7\x3a\xaa\xde\x0c\x81\x28\xbe\xee\x56\x74\x28\x92\x74\x47\x4b\x13\xec\x97\x1f\xc2\xdb\x7f\x41\x26\x1b\x07\xe7\x76\x82\x2a\xe2\x60\xe6\x0a\x23\x92\xca\x40\x84\x23\x65\xf3\xdd\xa6\xde\xbd\xc0\xa4\x3d\xe6\x51\xc4\xf1\xf3\x8e\x42\x48\xbd\xa3\x18\xc4\xfb\xa6\x18\x0c\x73\xc4\x9b\xf3\xba\xa0\x23\x39\x98\x3a\x47\xb9\x84\x29\x83\x64\x85\x51\xfa\xf0\xb2\xd9\xef\xd1\x6b\x8b\x4b\xcb\xae\xd9\x33\x1b\x26\x45\x44\x82\x41\xca\x37\x78\x69\xde\xc9\x80\xd1\xb7\x09\x36\xa2\x5c\xfd\x30\x50\x4f\x33\x2c\x17\xf9\x02\x28\x37\x33\xd8\xab\xce\xe1\xb3\xa7\xdc\x20\x83\x34\x29\xc6\xd9\x94\x12\x6a\x3d\x53\x6d\xc6\xf7\xe8\xf6\xba\x4a\x66\xb9\xd1\x93\x14\x9a\xe4\x4e\x20\xc8\xb1\xf6\x1d\xa9\xd0\x47\xa1\x5a\xd4\x52\x8c\x93\x1f\x28\x51\xd2\x0f\x3a\xaa\x7a\x1c\xf6\x09\x79\x89\x10\x1d\x0b\x5e\xf2\xd4\x34\xde\x48\x6c\xff\xb7\xb4\x82\x36\x81\xb8\xc2\x50\xec\x80\x55\x47\x78\x77\x13\x4e\x24\x7f\x52\x25\x36\xa9\x49\xc1\x44\x60\x61\x71\x0a\xf5\xa5\x67\x20\xac\xfa\x1a\xfa\xff\x86\xed\x3f\x41\xff\x89\xb9\xdb\xc0\x11\x80\xe1\x3e\x0d\xbf\x05\x5d\x48\x9b\x34\x41\xac\x86\x41\x09\x78\x21\xef\x54\x4c\xb5\x2c\xd4\x8f\x13\xe4\x1a\x1c\x39\xfe\x62\x4a\xfa\xc0\x37\xc1\xa8\xa3\x21\x7f\x86\x60\xb0\x9b\xac\xd4\x29\xb4\x46\xbe\x8f\xf1\x2d\xf6\x63\x64\x17\x7a\x58\xdb\xb6\x26\x8a\xc6\x60\x98\xb8\xc2\xaa\xf4\x29\x28\x41\xd0\x63\xae\x09\x89\x90\xa9\xa3\x30\xb6\x7d\xf0\x58\xc2\xcc\xdc\xd0\x2c\x7a\x8f\x75\x7d\x67\xc8\xd5\x4a\x1a\x59\xc5\xdd\x5c\x0e\xfe\x0f\x68\xd8\xf0\xc8\x17\x71\xea\x20\xf1\x75\x07\x9b\x01\xfe\xfd\x2f\xe0\xc7\x21\xa9\xfc\x00\xe5\x0d\xb8\xeb\x8f\xae\xb7\xf6\xec\x91\x8d\x0c\x3f\x12\x63\x01\x26\x4e\xcc\x47\x6b\xbd\x74\x56\x9c\xe6\x84\x47\x59\xdc\xa1\x53\x53\xba\x50\xc9\x11\x53\x3c\xeb\x02\xf5\xbc\x85\x3e\x03\x4c\xe7\x75\xf2\xe3\x50\xc5\x63\x5a\x08\x0c\xeb\xf5\x89\xe2\xcf\xfc\x92\xdc\x4b\xce\xd8\x76\x74\x27\x54\x6b\xbd\x8c\x0f\x10\x49\x4f\xd8\xa9\xc1\x4c\x1f\x43\x1a\x06\xce\x2a\xd3\xe9\x0a\xa9\x7c\xb9\x6c\x50\x85\x43\xa7\xb9\x5b\x35\xa5\xaf\x8b\x76\xf4\x8b\xe4\x9e\x62\xa0\x99\xfe\x19\xab\x1f\x81\x12\x46\xe5\x9c\x3b\xa5\xc2\x2c\x2b\x38\x8b\xed\x0a\x42\x4e\xd1\xf4\x5c\x05\xf5\x94\xdb\x41\x1a\x32\xd3\x39\x7c\xae\xe3\x58\xe0\xf2\x14\x3e\xe5\xf4\x5d\x67\xa9\x46\x36\xb6\x91\x1c\xe0\xff\x4e\x97\x27\xc9\xd6\xa8\x9e\xcb\xcb\x35\xef\x28\xae\xd0\xbc\x01\xa1\xa4\x95\xc2\x61\x79\xe1\x6e\x01\xd6\xcb\xd7\x95\x1a\x4f\x34\x26\xa1\xb0\x05\xa7\xf3\xd9\x72\xfa\xee\xc7\xb0\xf9\x34\x0f\x04\x4b\x93\xd3\xde\x43\xcc\x7f\x92\xc6\x1d\x26\xe4\xba\x2a\xee\x30\x30\x54\x94\x97\x7d\x72\x7e\x89\x09\xa3\x4c\xd4\xaa\x88\x24\x39\x12\x14\x2d\x8c\x0b\x6d\xc5\x70\x85\xb5\xfd\x64\xd3\xb5\x1c\xfb\xf8\xb1\xda\x29\xf2\xd2\x7c\x3b\x4b\x82\xd0\x44\x61\x06\xed\x26\x9d\x46\xe3\x6b\x95\x8e\x58\x12\xfa\x2a\x2c\x39\x81\x67\xd2\x9b\xf3\x4d\x43\x8f\xc3\x2b\x65\xdc\xba\x44\xfd\x69\x33\x34\x7a\x52\xf2\xac\xf4\x89\xb5\x1c\x09\xf9\x99\x49\x45\x76\xc1\xb7\xf2\x3e\xd6\xf5\x78\xd1\xff\xf4\x6f\xfe\xc7\xba\x67\x64\xba\xeb\x1b\x8a\xa7\xd7\xb7\x06\x40\xbf\xde\x1e\x50\x9e\xf6\xc0\xac\x93\x63\x51\x86\x41\x13\xbd\xac\x12\xff\x68\xab\xf5\xdc\x73\xbc\x00\x2e\x62\x43\xf1\x4d\x6d\x00\x5f\x7d\xb5\x3d\xb0\xb1\x4d\x5d\x9d\x10\xfe\xf6\x86\x06\x3d\xd5\x19\x96\x09\x5d\x97\x2c\xef\xf0\xc4\x67\xc4\xcf\xea\x61\x50\x0e\x2f\x32\xdd\x55\xb9\x5f\x16\x83\x6c\x6a\xe4\xf1\xe5\x10\x53\xe4\x09\x29\xca\x8b\x9c\xa2\xdf\x9d\x08\x3e\x79\x90\xe9\xe3\x94\x56\x29\x9e\xec\x2a\xd4\x10\x8c\x16\xfe\x68\x53\xe7\xe2\xff\x04\xfb\x15\xe6\xf9\x2f\x1b\xbb\x79\x4c\x1a\x0c\xc3\x15\xd7\xb1\x8a\xc8\xee\x6a\x47\x01\xcc\xae\xaa\x38\x60\xd5\xda\xe5\x6c\x87\xef\x76\xc3\x63\xc0\xcb\xfc\x14\x1f\x82\x4d\x3f\xab\x7a\xb1\x7f\xa6\xe0\x76\x3b\xd7\x2b\x89\x95\x67\x3d\x7a\xa3\xf4\x0f\xad\x4d\x5d\x00\x8b\x3d\x7a\x57\x51\x01\x5e\xef\x68\x07\xa1\x21\x3f\x98\xd9\x38\xb7\x71\xe0\x52\x1d\xc0\x11\xfd\x48\xe1\x8b\x7e\xf4\xd0\x36\x85\x6c\x98\xac\xf6\xc2\x37\xc8\x30\x0a\x5b\xbc\x42\xaf\x9c\x6d\x64\x6d\x50\x88\x53\x58\xf9\x2f\x26\xfe\x60\xf9\x42\xb1\xc2\xf6\xac\xc9\x35\xdb\x21\x7c\x91\x4a\x95\x8a\xc9\x7e\x26\x1e\x36\xf1\xc9\x44\x01\x39\x6f\x28\x1a\xa4\xbe\xcd\xc6\x26\x24\x6a\x11\x21\x11\xfe\x09\xfd\x30\x5f\xd7\xc2\xbd\xc5\xd9\xf6\xd0\x66\x61\x4e\x84\x5c\x07\x84\xbf\xf9\x17\x1d\x9f\x6d\xfc\x85\x2a\xa4\x8c\xc2\xa8\x1f\x31\x45\x08\x9c\x4d\xcc\x26\x5f\xab\x42\x41\x40\x28\xd5\xfe\x14\x9d\x93\x22\xa9\xe7\xfb\x23\x6e\xd1\x0e\x41\x20\x76\x44\xc1\x14\x43\x13\x24\x41\x00\x7d\x55\x64\x53\x6f\x69\xdd\xbf\x5b\xaa\x3d\x65\x39\xc9\x92\x95\x44\x17\x61\x60\x76\xe4\x88\xf5\x86\xce\x0c\xca\xa9\x2f\xa3\x75\xef\x83\x1d\x51\xfd\x31\xbb\xc8\x3b\x41\xc0\x7a\x55\x47\xf1\x77\xd4\xab\xe7\x43\x9b\x8e\x12\xbc\x3a\x4a\x0f\xff\x12\x7f\xca\x37\x4a\x43\xa6\x6f\x83\x30\x0b\x93\x78\xb7\xa2\x26\x78\xaf\x42\x62\xa0\x9a\xed\xc1\x3d\x25\x5d\xa1\x3e\x05\x75\x59\xa5\x56\xfe\x78\xa2\x18\xea\x5e\x9d\xe8\x7e\x19\xcf\xa8\xcb\xaa\x26\x42\x4e\xf6\x30\xc8\xb7\xed\x87\x59\x9e\x10\x0a\x10\xeb\xea\x63\xcd\x28\xf5\x71\x53\x67\xe0\xd8\xa4\x39\x75\x8d\x13\xb0\xea\x02\xb2\x19\x9b\xf5\xcc\xd4\xab\xaf\xb6\x73\x73\x68\xca\xa7\x0f\x6f\x77\x70\xb4\x60\x4f\xe3\x1c\x15\x19\x9d\xba\x86\xf1\x8b\xc4\xe8\xd0\xf2\x05\xdf\x23\x1d\xbf\xc3\x8f\x34\x00\x85\xa4\x6b\x9f\xcf\x7b\x59\x90\x34\x56\xb2\x22\xbd\x38\x3a\x24\x18\x61\xcb\x10\x95\x5e\xd0\x34\x1a\x75\xae\x8e\xc5\xd9\xf6\x20\x4d\x4c\xcc\xc4\x40\x82\x58\xd1\xf0\x95\x8e\xae\x84\x2e\x41\xe9\xec\xc9\xd2\x2c\x2b\xcd\x8d\x05\xef\xbe\x1e\x74\x3e\xe3\x05\x45\x38\x73\x9a\xf4\x77\x51\x87\xba\x4f\xee\xa7\x13\xf2\x9d\xdb\xcf\xd9\xd5\x3f\xd0\x09\x03\x6e\xc1\xc1\x72\x78\x9b\x76\x92\xeb\x83\x5e\x5c\x70\x0a\xae\xe5\xe0\x21\x01\x0e\xef\x84\xbd\x99\x8e\x42\x47\x32\xa3\x3d\x77\x8e\xc0\xc5\x12\xed\x0f\x1d\xda\xac\x86\xf1\xae\xf2\x2b\x84\xfa\x9e\x5e\x4b\xd2\x09\xe5\x13\x23\xbf\x76\x5c\xf7\xbb\xdd\x67\x27\xd7\x09\xfd\x2e\x8a\xb2\x1e\x44\xa6\x61\xc5\x0f\x93\xfd\x10\x21\x3c\xb2\x16\x12\xc1\xd7\xcd\xea\x2b\x6d\x82\xc8\xf6\xb7\x28\x2f\x7a\x8e\x29\x15\x4d\x04\x45\x9a\x86\x16\xdd\x55\xd2\x19\xa3\xe0\x51\x97\x6a\xa7\xc4\xf3\xe5\x5b\xf6\xb3\x61\x68\x23\x49\x7f\x48\xa3\x7b\xc5\xb5\xa9\x71\x6e\x2d\x2e\xfc\xaa\x90\xf4\x28\x0e\xc1\x6b\x13\x5d\xf1\x6c\xc8\x1e\x05\xba\xf2\x24\xea\x39\xe5\x67\xf8\xba\x49\x31\x64\x14\xc6\x63\x1b\x24\x8c\xb3\x86\xd1\xb8\xa7\x28\x84\x4f\xe8\x06\xe3\x56\xf7\x09\xa5\x7b\x37\x12\x91\x66\x38\x82\x97\xb5\xe7\x7d\xb9\xe3\x15\x1d\x72\x9b\x86\x10\x2a\xdb\xc7\x6b\x15\xac\x46\x7c\xad\x4a\x3d\x41\x5a\x88\x74\xb2\xd0\x1c\xd3\x77\x0a\xff\xb1\x2a\x1d\x84\xe9\x38\x49\x73\x62\xcc\x00\x26\x15\xf4\x8d\x02\x88\xa3\x8f\xc1\xc1\xfe\x5c\xb9\xe8\x4b\x26\x80\x14\xf2\x8b\x15\x40\xbd\x74\x59\xf9\x05\xf9\x26\xc2\x3c\x74\x4d\xdc\x46\x84\xce\x37\x6a\x77\x6c\x28\xcf\x10\x04\x5c\xd3\x14\xac\x69\x15\x23\x3c\xdd\x11\x0d\x9f\x3d\xc2\x21\x19\xff\x99\x1a\x80\x25\x83\xa4\xba\xef\x77\xbd\xa6\x61\x2d\xa0\xbc\x95\xb5\x57\xc3\x63\xcf\xb5\xc7\x66\x2c\x58\x36\x6e\xaa\xd5\x4a\x3c\x17\x14\xe3\xc8\x52\x61\x23\xae\xa7\x70\x9b\x68\xa5\x65\xd4\x19\xb9\x24\x1d\xd8\x9c\x6b\x03\xa2\xbd\x45\xdf\x2f\xaa\x5c\xff\xde\x56\xa5\xce\x57\xaa\xe2\x4c\xcc\xb2\xd8\xf1\x84\xaa\xff\x27\x8d\xa0\xb0\x3c\xa9\x0d\xca\x0d\xf1\x58\x84\x3f\x98\xf8\x16\xa1\xe3\x13\xcf\x9f\x0b\xa5\x31\xfe\x77\x0d\xc4\xf4\x0f\x3d\xb6\x69\x20\x74\x39\x48\xb9\x03\xe9\x84\x03\xe9\x7e\xe9\xe5\x6e\x5e\x86\xd3\xcd\x86\x76\xc5\x66\x79\x38\x30\xb9\x1b\x7c\x9c\x98\x77\xd9\xe0\x60\x4d\x30\xbf\x9e\xf4\x12\x39\xc6\x94\x22\xcb\x93\x51\xf8\x86\x60\xab\x50\xa3\xb9\xaa\xb0\x33\xd7\x70\x8e\xca\xdb\xfb\x7a\xdd\x52\x18\x9b\xd2\x8f\x28\xdd\xba\xaf\x1f\x74\xb2\x8b\x1e\x3b\x55\x87\xf5\x97\x9e\xa7\x19\x87\x36\x66\x83\x02\x93\xfd\x91\x12\xbc\xfc\xa8\x76\xe0\xee\xdd\xdb\xce\x92\xc8\x77\xa7\x22\x69\x7f\x53\xa1\x23\x6f\x36\x89\xb6\x0c\x4d\x11\xcb\xd4\x4b\x7c\xa3\x88\x03\x2f\xaa\xfa\x6a\x38\xb2\x51\xdf\xe0\x4f\x9d\xc8\x4a\xf9\xa7\x22\xb2\xa2\x68\x3b\x4d\x18\xa5\x89\xe9\x53\x0c\xe5\x3a\x94\x7c\xb7\x92\x43\xf4\x0c\x52\x33\xe2\x97\x74\x5c\xa6\xf3\x9e\x1d\xd2\x21\x6c\xcc\x28\x6e\x79\x48\x01\x10\x36\x52\x3f\x69\x60\xde\xc8\x62\xc2\x8e\x38\x90\xc5\x49\xc5\x96\x7f\xb2\x42\xbc\x61\x8a\x68\x46\x99\x5f\x64\x34\xb1\xd6\x58\xa9\x1d\xb1\xc8\x1f\x4f\x2a\x4c\x3a\x9a\xc8\xf6\xff\xae\x8d\xeb\xe2\x6c\x19\xb4\xbb\x54\xbc\xb0\x7a\x79\x77\xb1\xde\x5a\x37\x3f\x4f\x3a\x6b\x79\xc8\x64\x06\x2e\xaf\xfa\x3d\x95\x2e\xfe\x5e\x53\xda\x3d\x88\x8a\x1e\x46\x50\x7a\x79\x5a\xae\x31\xb3\xae\x11\xfb\x7c\xbb\x1f\x12\x6d\xc2\x50\x96\x32\x56\xec\x49\xc5\x51\xf0\x2e\x7c\x21\xe9\xad\x53\x42\x5a\xe1\xa8\xc7\x42\xe4\x08\x07\x51\xa4\xe4\x6b\x65\xb9\x53\x9b\xe5\x09\xb7\x16\x08\xde\xcf\x33\xa0\x9f\x74\xf3\x3a\x0c\x07\xc3\x47\xe9\xc7\xb8\xb5\x41\x1b\x87\x07\xf0\x17\xe4\xf9\x94\x98\xff\x03\x72\x83\x44\x6e\xa4\xfc\x62\x64\xe1\xa6\x15\x66\xfd\xd1\x75\x5f\x9c\xfc\x0f\xbb\xb4\x68\xc5\x9f\x54\x3d\x58\x1f\xeb\x1c\xee\x5b\x0a\x50\x12\xad\xa5\xc3\xb5\x7c\x28\x8b\x93\x29\xcb\x69\x71\x0a\x7d\x79\x83\x00\x22\x29\x13\xc4\x81\xe3\xa3\x60\xd7\x9b\x3e\x26\x6e\xb8\xef\xbe\x88\x4c\xb0\x3c\xa3\xd4\xa0\x78\xe7\x09\x10\xcd\x87\xf6\xef\x69\x02\xc2\x8e\x8a\x25\xce\xa8\xb3\x09\x1c\x4d\x53\xbe\x1f\x19\x53\x8a\x60\x6f\x32\x51\xd6\xe9\x6c\x03\x57\x37\x64\x6b\xb8\x8b\x4e\x3a\xc9\xfd\x41\xc4\x85\x4e\xee\x35\x53\xfe\xd2\x52\x92\x8e\x8a\x08\xaa\x41\x42\xf0\xd7\x72\x4d\xe3\x15\x2d\xee\x74\x84\xa5\x83\x63\x15\xa4\x97\x7c\xdd\x6d\x2c\x3e\x13\xd3\x71\x4b\x91\xce\x9c\x51\x64\x76\x67\x94\xe4\x0e\x51\x07\x4e\x79\xe1\xae\x3b\xf4\xe6\xf0\x55\xa7\xbb\x9a\xca\x53\x39\x17\x51\x64\x07\xb6\x3f\x43\x2f\x2c\xc2\xb1\x7e\xe7\x9c\xd6\xa2\xee\xe4\xab\x02\x7a\x7c\x93\x4e\x29\x06\x05\xa8\x43\x7d\xcd\xc4\xcb\x16\x93\x2e\xd2\x6d\x1e\x49\x72\xaa\x1c\x06\x1c\x9d\xa5\x4f\xf0\xcb\xe5\x93\xc2\x59\xff\xa4\xe3\x5b\xb8\xcf\xe8\x25\x8e\x24\x2c\x46\xf1\x9e\x2a\x9d\x7f\x81\xa2\xbd\xe8\x86\x50\xda\x16\xf6\x77\x63\xd2\xfa\xcd\xff\x5c\x60\x31\x1d\x9d\x35\x50\x42\xe2\xef\x4c\x94\xde\xc1\x54\x57\x29\xde\xfc\x53\x05\x0d\xb9\xdf\xf1\x63\xf6\x1e\xd2\xdc\x88\xcc\x7e\x58\x61\x29\xe6\x16\x09\xac\xb6\x07\xa8\x1f\xe0\xb5\x76\x11\x97\x2f\x32\x6b\x7c\x30\xb2\x9f\x46\x88\x54\xa1\xa9\xa0\x5c\x3c\x3e\x71\x8c\x4d\x2a\x6a\x74\x3b\xba\x0a\x58\xb5\x7d\x9d\xdc\x34\x38\xd2\x77\xc1\xff\x05\x28\xd0\x5f\x55\x10\x44\xa6\x9f\xac\xd2\x04\x20\x9b\x8c\xf6\x58\xbe\x7e\x28\x97\x42\x9e\x10\xd0\xd6\x93\xdf\xbd\xaf\xc8\x67\xf9\xd1\xc5\x66\x7b\x20\x29\x75\x34\x99\x28\x7c\xc3\x79\xe2\x48\x7a\x80\x92\x83\xaf\x55\x27\x51\x60\x72\x13\x25\x03\xdd\x49\x34\x99\x28\xe1\xeb\x89\x12\xcf\x1d\x24\x51\xff\x51\x85\x03\x3a\x05\x33\xe8\xdc\x4d\x47\x1b\x7b\xb6\x52\x29\xc2\xa3\x62\x9a\xbe\xe4\xc1\xc4\x62\xe0\x0a\x00\x37\x62\x6b\x05\x4e\x4d\xe2\x7e\xb6\xd2\xad\x4d\x2b\x11\x0b\xe3\x7d\xd5\xa0\xff\xb7\xff\xd6\xdf\x46\xc2\xd5\xc1\xbc\xf6\xb8\x2e\x5e\xed\xe1\x86\x26\x0b\x92\x56\x35\x90\xa3\xcf\xf1\x8d\x1a\x9a\x95\x30\x8a\xcc\xc0\x4e\xb7\x34\x5d\x7a\xf9\xf6\xc8\x25\x5f\x57\xfb\x90\xf1\x31\xfc\x1f\x0f\xe5\x90\x58\xb5\x51\x34\xe3\x37\x1f\xa3\x23\x31\x98\x80\xe1\x20\xb1\xf9\xfd\x89\xf2\x3b\xce\x12\xda\x0a\x03\xb6\xbb\xab\xc9\x46\xc7\x04\xa1\x80\x85\xd8\x89\x1d\xe3\x04\xa4\xcb\xe1\x83\x99\xf9\x78\xe2\x6b\x23\x77\x27\xad\x83\x0b\x9b\x4c\xbc\xe6\x32\xd8\x07\x66\xd9\xfc\xde\x52\xdc\x12\x51\x3e\x9c\x71\xfb\xee\xbf\xf8\x25\xf2\x60\x69\x43\x1c\xfe\xa5\x75\xb5\x6d\xee\x57\x7c\xd4\xab\x13\x25\xa1\xec\x55\xb4\x47\xb6\x1f\x06\xd4\xd0\xe7\x2a\x17\x77\x74\x60\x77\xa7\xf3\xb4\xa6\x13\xee\x17\x41\x6e\xfb\x8a\x00\x90\xe1\x98\x7c\xe3\xc9\xf1\x23\x93\x65\x02\x5b\x46\x1d\x8b\x01\x31\x7c\xa3\xd6\xc7\x92\x21\xdd\xe7\x79\xdf\xa7\xa3\x20\x91\x1e\x4f\xc1\x4a\x87\x92\xe9\xf7\xc5\x89\xdd\x4e\x47\xdc\xae\x58\xd2\x11\xf7\x8e\xd0\x4c\x57\xb1\x9c\xfc\x21\x32\x10\xb0\x09\x33\xeb\x4d\xcc\xc7\xa9\x1d\xa7\x61\xec\xd2\x3c\xd8\x19\xe8\xb0\xe0\xeb\xad\xca\x61\x65\x58\xf3\xdc\x73\x4f\xd0\xb3\x49\xf9\x8a\x42\x3d\xe7\x1b\x3a\x7e\xa3\xab\x0a\x33\xf8\x40\x85\x94\x53\x5d\x0f\x0d\x7c\x7c\xbd\xb4\xf3\xc8\x43\xfd\x2b\xd8\x5d\xf8\x00\x0b\x9d\x72\xdb\x20\xb7\xff\x36\x5b\x54\x97\x65\x29\x47\x19\xfe\xe7\xf9\x8e\x97\x90\xfc\x0b\x9c\xfa\x8e\xf1\x62\x6e\xbf\xab\x00\xe8\xce\xbe\x86\x82\xec\x42\x7b\x10\x25\x2b\x16\xdb\x56\x58\x21\x5b\x4a\xf7\xc3\x5b\x9e\xd7\x5e\x08\x5e\x50\xb1\xc3\x86\x8a\x1d\x7c\x24\x34\x0a\x83\x34\x59\x35\x2b\x02\xb5\xe5\x8a\x2b\x96\xa4\x94\x5f\x9f\xad\x10\x9b\x82\x46\x2a\xdb\xe1\x71\xaf\xa4\x12\xb1\x79\x81\x32\x55\x58\x1e\xff\x2b\xde\x43\xb3\x10\x89\x0c\x7f\x85\xc7\xd7\xdb\x60\xad\xc4\x35\xa3\x28\x0a\xbf\x45\xdf\x8a\xd3\xf2\x1e\x96\x34\x83\x6d\x27\x9e\x38\x1b\x6d\x87\x42\xa7\xda\xd4\x17\x48\x5a\xd6\xa3\x90\x38\x83\x5a\xbe\x2e\xc5\xc0\x71\xbe\x71\x09\x90\x6c\x98\xac\xa6\x49\x32\xc2\x98\x38\xf2\x1a\x4f\x64\xe3\xfe\xd2\xc4\x43\x5b\x64\x2c\xdf\x0a\xf7\xe7\xba\x56\x14\xda\xd6\xf5\x32\xc4\xe7\x94\x7b\x07\x26\x06\x95\xe6\x5c\xd7\x2a\x63\xeb\xaa\x0d\xdb\xa4\x66\xc9\x70\xbb\x16\x8a\x4f\xcc\x26\xc7\x37\x8e\xe6\x7a\x64\xd2\xe5\x47\x54\x55\x1d\xd2\xf2\x4c\x8c\x0c\xd4\xb6\x53\xf4\x2d\x4f\x6a\x8c\xdc\xa9\x89\xea\x2e\xda\xd0\xea\x92\x27\xd5\xa6\xb8\x32\x51\x24\xbe\x1b\x93\x47\xbd\x30\x09\x32\xbd\x5c\x45\x26\xf0\x1f\xaa\xd6\x9f\x4c\x3c\xee\xf3\xba\x4a\x8b\xf7\x6c\x6c\x97\xc2\x3c\xa3\xbe\x8f\x0a\x2b\x9f\xb4\x73\x69\x41\x94\xf3\x15\xf6\xbe\x5a\x94\x5c\x6e\xf1\xa5\xc4\x8b\xa1\x23\xb3\x7e\x41\x65\xd9\xbd\x8c\xc2\xeb\x85\x35\x59\xc8\x25\x3d\xb8\x68\x2c\x18\xcd\x37\x93\x5f\xf2\xe2\xbf\x71\x5e\xda\x1b\x1b\xdb\x22\x0d\x4d\x84\xd4\x2f\xfb\x65\xc8\x32\x89\x93\x56\x29\x56\x2f\xdb\xc7\x5a\x9a\x65\xd6\x73\xa3\x22\x03\xc5\x59\x5c\xda\x2d\x5c\x11\x85\x6d\xf8\x09\xec\x1f\x1f\x44\xf8\x05\xfe\x20\x1e\xd1\xe9\x81\x1d\x9c\xdb\xbf\x79\xa6\x43\x66\x0c\xa9\xd3\x9b\x64\x7d\xe0\x75\x71\xa1\x4f\x40\x73\xca\x61\x19\x92\xf8\xd6\x94\xe2\x38\xbd\xa4\x32\xc3\x5c\xe8\x86\xab\x7a\x67\xb2\x4b\x2c\xe8\xf3\x7f\x1d\x73\x81\x78\xea\x06\x1e\x92\x91\xff\xa8\xa1\x62\xa5\x20\x95\x2b\x2c\xbe\x34\x63\x9a\xd2\x17\x91\xe7\x0f\x27\xdb\x7f\x95\xd7\xec\x29\xca\x75\xa3\xe0\xf7\x27\x48\xd4\x61\xdd\xff\x6e\xa7\x74\x7a\xb1\x1b\x3f\x23\x9c\x12\x52\x56\x6f\xc1\xe9\x15\x96\x8a\x72\x4b\x01\xc3\x00\x7a\x55\xee\xaa\x87\x4e\x0f\x2c\xec\x55\x64\x91\x59\x34\x95\xf8\x30\x99\xf8\x19\x67\x00\xb2\x3c\x7f\x09\x8f\x5b\xa4\x41\x4b\x03\xed\x4e\x31\x0d\xce\xd9\xbb\xd7\x95\xc1\x3c\xbc\xf5\x6d\x4d\x7d\xfe\x3d\x60\x73\x60\xa7\xbe\xcd\xa7\x00\x33\x5d\x75\x94\xbc\xfd\x46\xc7\x33\x7b\xfe\x1c\x0e\x1b\xc0\xce\xd7\xe1\x09\x3b\xb0\xf3\x6f\x7d\x83\x37\x28\x63\x2e\x2b\xfc\xed\x68\x56\x7d\x0f\xfb\x58\xfa\xcd\x54\x2b\x26\x3a\xcb\x1f\xd3\xc2\x6f\x67\x95\x0c\x17\xf2\x86\xb8\xfe\x53\x95\x86\xff\x33\x05\x16\x3d\xa1\x1b\xce\x7f\xa2\x8b\x5c\xbb\xba\x9e\xae\xfd\xb6\xc6\xd2\x4e\xad\xd3\x9a\x70\x00\xe1\xe7\x9e\x73\xd0\x41\x7a\x05\x71\xfb\x1a\xc2\xd5\x25\x3b\x32\x9c\x99\x76\x52\x6a\x8e\x93\xed\xfe\x56\x09\xf1\xf9\xf9\xf6\xfc\xfc\x2f\x95\x4f\x81\x25\x7b\xad\x53\xae\x27\x78\xc1\xdb\xd6\x69\x3d\xc1\xc1\xfb\xc7\x34\x8d\x58\x04\x3f\xe8\xa8\x88\xe6\x18\x16\x14\x56\xe6\x65\x3a\x80\x59\xec\x11\xeb\x46\x08\x2b\x68\xc5\xc3\xfa\x80\xff\xc8\x71\x51\x95\x83\x23\x7a\x02\xea\xac\xc3\x76\xc4\xd2\xfe\x67\x58\x13\x3a\x96\x70\x60\x70\x4f\xd1\x34\x51\xf0\x79\xf0\x2c\x62\x09\xde\xa4\xa5\x26\x6c\x42\x34\xb2\xc8\x79\xb7\xba\xe5\x26\x91\x0a\xb9\x2e\x02\x7c\x8e\x71\x66\x62\x6b\x4c\x0d\x3e\xf3\x51\x43\x79\x7a\xa1\xfd\x7a\x91\xe4\xa6\x42\xbd\x04\x16\x7a\xbe\x9e\x3c\xe3\x0e\xa1\xd7\x92\x22\x8d\x09\x52\x32\xe5\xdb\x2e\xf8\xe8\x90\xc2\x96\xee\xba\xf3\x5e\x48\xb2\x62\xd3\x27\x68\x18\xb1\xce\xff\x6a\xa2\x32\x00\x17\x68\x7e\xe0\xed\x6c\xd2\xf6\x43\xe2\xe8\x03\x45\xad\x72\x51\xe3\x9c\x21\x97\x8a\x9f\x6f\x75\x55\xeb\xd6\x71\x1e\x08\xb8\x61\xad\x75\x9f\x3b\xde\x09\xfc\x16\xc2\xda\xef\x4d\x54\x2b\xf3\x23\xc8\x23\xa9\xde\x04\xc9\xcd\xce\x40\x58\x4c\x98\x33\xb6\xb2\x95\xbe\x34\xdf\x4e\xde\x48\x62\xdb\xb7\xe3\xc8\x8a\x42\x3c\x90\x85\x9b\x27\x14\x06\x34\x30\x45\x1e\x26\x45\x36\xe3\x13\xe9\x9c\x14\xc2\x58\xa0\xf1\xdd\x29\x95\x7b\xf0\x02\x56\x14\xca\x69\xd7\x6a\x49\xbf\xc5\x59\xca\xb4\x45\x80\x4c\x1f\x98\x75\xc7\x23\x0d\x94\x9c\xa9\x4f\xa9\x76\xc6\x34\x0b\x97\x6c\x7f\xca\xe7\x43\xee\x60\x1c\xe0\x3d\x4d\x75\x75\xf6\xda\xcb\x13\x65\xe1\x20\xce\x66\xd4\x18\x41\x05\x0b\x56\x6d\x6a\x5d\x95\x2c\xb6\x77\xbd\x2f\x76\x83\x0c\x8d\x74\xa9\x36\x70\x57\x51\x1f\x66\x12\x3b\x20\x07\x56\x32\xd6\x8f\x6b\x39\x76\xc5\xac\x33\x4d\xcd\xa9\xd4\x34\x93\x09\x6b\x18\x10\x85\x9b\x38\x50\xf9\x46\x69\x7f\xbe\x66\xe2\x17\xa8\xdb\x5a\x54\x4a\x15\x7d\xf5\xa9\x89\xd6\xa3\x89\x22\x91\x8e\x72\xfd\xa1\x8e\xad\x67\x43\x6b\xac\x59\x9b\x67\xd3\x9a\x6b\x9b\xfe\x10\x15\xcf\x1b\xba\xfc\x79\xa3\xa3\x48\xb8\x9b\x52\xdb\x44\x99\xd0\x52\xce\xd5\x39\x2d\x7a\x70\x4e\xc1\x50\x23\x6b\xfa\x36\xcd\x76\x90\x25\x90\xff\xf6\x43\x7d\x12\x16\xcd\x7d\x49\xf9\x0c\xfc\x3f\xb4\xb1\x9c\x98\xbf\xf7\x03\xeb\xdc\x92\x07\x66\xdb\x59\x94\x8c\xc7\x6b\x84\x1c\x11\xd2\x73\x9f\x84\xd1\xdc\x00\xe3\x34\x19\x8f\xcb\x45\xb5\x38\xeb\x34\x14\xcb\x97\xc5\xc9\x7f\x98\x0e\x66\x04\x35\xb7\x6a\x7d\x20\x2f\xcd\xb7\x97\xc2\xd8\x66\x53\x2a\x3c\xc1\xfe\xc3\xa1\xf4\x40\xa5\xee\xea\x12\xb8\xcf\x3b\xf9\x1c\x89\x06\x61\xfa\xaf\xe9\x1c\xcc\xb5\xda\x8f\xce\xed\x6f\xc7\xb6\x5c\x34\x2d\xc5\x48\x44\x3f\x2a\x54\x45\xb2\x65\xcc\xeb\x85\x19\x99\x34\x8c\x71\x22\xc1\xad\x7f\x97\x06\x9b\xaf\x55\x22\xb4\x9f\x22\xca\x72\xca\xdd\x1e\x4d\xae\xe1\x27\x59\x12\x85\x41\xc8\xbf\x2e\x20\x63\xdf\xa0\x79\xb6\x2a\xe1\xd2\xb7\xd8\x77\x38\x32\x2f\x77\x3c\xf7\xcf\xb7\xe0\x78\xf1\x7f\xd0\xdc\xc0\x96\x32\x26\x0b\x1e\xc8\x95\x06\x64\xc5\x2b\x34\xe6\x53\x8a\x6d\x1b\x40\x3c\x4c\x1e\xc4\x56\x10\x42\x5d\x53\x89\xd5\x2c\x09\x42\x9b\xaf\xcd\x68\x32\x99\x2f\xb4\x7d\xfa\x82\x1e\x0e\x36\xfc\xa7\x30\xee\xc8\x24\xfc\x42\x11\xda\xbd\xa9\xb2\x0a\xbf\xb1\x6f\x96\x06\x41\x5a\xfe\x54\x3f\xe1\xad\xce\x57\x94\xf1\xcc\x83\x21\x59\x4e\xe0\x05\x7e\xd1\x51\x4c\xfa\x9a\xc8\x1c\x81\x3c\xbc\xa0\xef\xc3\x77\x96\x8e\xa8\x06\xd5\xa1\x22\xed\x4d\x55\x5a\x7e\xfc\x0c\xa3\x6f\x41\x88\xd6\xbd\x01\xe9\x25\xab\xc0\x6a\x4a\x7b\x83\xf2\x58\xef\x36\xe8\x60\xbd\xd2\xee\x99\x2c\x0c\x1c\x7e\x50\x48\xad\xca\x6f\x17\x4a\xab\x06\xd4\xe6\x38\x0d\x63\x92\xb5\xd7\x68\x85\x8e\xae\x1e\xef\x76\x8f\xf4\xc2\x63\x1e\x67\xb8\x8d\x41\xfc\xd2\x09\x5a\xfa\x5d\x92\x50\x55\x30\xce\xeb\x58\x38\x70\x7c\x19\x53\xc6\x7a\xbd\x2a\x57\xf8\x07\x13\x95\x41\xff\x73\xf2\x06\x34\x8d\x1a\xce\xaa\x1f\x69\x3f\xe3\x04\x39\xf3\x2c\x07\xde\xc4\xa5\xd1\xee\x25\x45\x79\x52\xa9\x4a\xe3\x86\x56\xf3\xdd\x50\x81\xca\x92\xc9\x72\x9b\xe5\x58\xa4\x38\xcb\x6f\xaa\x4e\xc4\x63\x64\xca\xc4\xa1\xf5\x30\xd9\x20\x19\xaf\xa5\xe5\x71\x88\xd4\x2f\x2b\x72\xd2\x07\x2b\x42\xed\x62\xca\x3d\xf0\x2e\x4e\x84\x11\x0a\x47\xef\x1d\xfc\x21\xdf\x34\x04\x9c\xf3\xed\xdc\xc6\x4b\x49\x04\xc3\x27\xa9\x15\xe5\x55\x9c\x57\x32\x04\xdf\x76\x64\x1e\xc4\x16\x90\x6f\x49\x3e\x74\x74\xf2\x41\x55\x61\x08\xf4\x0b\xdb\xf6\xa2\x07\xd8\x38\x5e\x97\x7a\x19\x70\xef\xde\x76\x1c\x06\x26\x35\x83\x82\x5b\x26\xe0\xd0\xb3\x35\xe2\x9b\xce\x57\xab\x6e\x74\x39\x37\xf3\xf3\x0b\x3b\x69\x3b\xc0\x9f\xff\x23\x9c\x22\x82\x35\x54\x45\x52\xf4\x83\x8b\x8e\x80\x96\xa4\x60\xb9\x3c\xa1\x5a\x9e\xf2\xd2\x8e\xa7\x1b\x36\x07\xda\xfa\xc6\xa9\x43\x28\xb8\x70\x54\x71\x6c\x3d\x5b\xe1\x78\x48\x56\xec\xc8\xc6\x39\xc9\x20\x21\x3e\x82\xae\x3b\x7c\x45\xfe\x45\xae\xa7\xd0\x30\x49\xa3\x0b\x3d\x97\x60\x60\x6b\xd2\x7d\x8b\xb3\xed\x5e\x92\x0f\x6d\x3a\xed\xc9\xf0\x38\x01\x82\xa8\x07\x26\x11\x06\xec\x94\x6a\x81\xff\x5c\xad\xbc\x1e\x51\xde\x39\xf5\x44\x19\xc5\xf2\x83\x7c\xad\x20\xf3\x63\xfa\xe3\xac\x5c\x04\x7b\xf6\x38\x42\x0b\x9a\x65\xc9\x94\x39\xbe\x92\xbe\x25\x0e\x17\xc9\xd4\x3a\x8e\x49\x57\x3d\xae\x37\xa3\x1d\x98\x7d\xb1\xfc\x09\xe9\x27\x74\x1a\xdb\x5e\x6f\xbb\x66\x76\xf6\xbf\xdc\x36\xe3\x71\x64\xd7\x44\x54\xb1\x42\x20\x29\x55\xe7\xad\xa5\xd1\xe7\x55\x1e\x90\x6d\x1c\x77\x7f\x56\x3a\x41\x1b\xaa\xdb\x26\x1c\xf1\xb4\xbb\x3e\x67\x47\x63\xb2\xa1\x71\x5b\x49\x1a\xdb\x14\x49\x22\x81\x77\xb7\x1c\xed\x05\xd7\x7c\xb1\x30\x6f\x51\xd5\x82\xaf\x3b\xcf\xea\x9c\xc7\xb8\x6f\x23\x53\x9e\xe2\x58\xae\x80\xc4\x31\xb6\x93\x6f\x5c\xdf\xc3\x80\xe5\x7c\x9c\xaa\x02\xf7\x32\xc8\x46\x6a\x79\xa5\x10\x2d\xfb\x00\x27\x08\xad\xdb\x08\x31\x8e\x2a\x12\xf2\xbb\xf0\x49\x25\x3b\xa6\x98\xa6\xaf\x76\xb4\xf2\x36\x9e\x0f\xc6\x15\xd5\x3a\xfe\xae\x8e\xaf\x90\x1e\xe9\x78\x5b\x92\x25\x45\x1a\xd8\x8c\x11\x60\x02\x1a\xa4\x85\x82\x60\x97\xf9\xf7\xb1\x27\x7f\xa4\x1a\xab\x88\x24\x2f\x80\xe7\xec\x45\x70\x2b\xac\xed\x3a\xa5\x95\xa6\x6b\xbb\x94\xdc\xae\x62\xd9\x7a\x44\x0b\xb2\x81\x75\x06\x81\xc1\xbb\xc8\x4e\x09\x41\x09\x0d\x80\xb3\x61\x73\xfb\xf9\x9d\xdf\xd5\x89\x8c\x9f\xc0\x10\x02\xd5\xfc\x47\x0d\xf8\x99\x05\xe8\xf2\x33\xad\x16\xc2\xee\x9d\xe8\xcf\xc5\x5e\xdf\xb6\xae\x5c\xbf\x4b\x2a\x04\xb3\x87\x02\x48\x51\x97\x3f\xcd\xea\x76\x48\x04\x88\xd4\x9d\x77\xeb\x07\xa1\x89\xf3\x47\xc8\x9a\xb8\x33\xcf\x71\x42\xf3\x9b\x20\x8b\xfd\x07\x95\x44\x1b\x99\x06\x9d\x24\x86\xb3\x7c\x1f\xc3\x0a\x97\x8a\x3b\xc6\x24\x7d\xdc\xd4\x59\x98\x9a\x5e\x0f\x60\x1f\x58\x8e\xcb\xca\x8a\x5c\x7e\x08\x29\x44\x10\xf6\x85\x6c\x0c\x9e\xd1\x36\x8c\x0a\xdc\x8c\x6b\xf4\xfc\x52\xb1\xfb\xea\xd6\xf2\xc8\x8b\xed\x03\xb3\x73\xcf\x96\x5e\x15\x1e\x8b\x85\x16\x50\x5e\x3a\x49\x89\x0c\x8d\xd9\x46\x6c\x7f\x0f\xe8\x2f\xa6\xee\xa6\x55\x8c\xad\xc4\xc5\x15\xc9\x2a\xfb\xe2\x4a\x8b\x7a\xe2\x65\x75\x21\x33\xc6\x7f\x85\x41\x91\x52\x3c\xbd\x86\x4b\x44\x7b\x10\xe1\x65\x25\x42\xba\x49\x83\xba\xf9\x11\x96\x0f\xbe\xf4\x9a\xa2\x71\x7a\xe9\xfd\x8e\xb2\xe0\xe7\x29\xfc\x72\x90\xe0\xd2\x35\x44\xc6\xf3\x70\xed\x08\x7d\xee\x39\xa2\x41\x18\x27\x21\x14\x50\x5f\xf1\x7a\xa1\x2e\x6f\xc3\xad\xa2\xc2\x8e\xe3\x5d\xda\x3d\x07\x7f\xa3\xa5\x53\xa5\x27\xb5\xce\x4c\x7d\xb6\x5f\x9a\x6f\xf7\x12\xeb\x02\x60\xc1\xe8\xb5\x14\xe1\x86\xea\x94\xfd\xaf\x15\x1b\x79\x48\xec\x9b\x79\x92\x02\xd9\xe1\x14\xfd\xe7\xa5\x7c\x07\x91\x39\x18\xee\x6b\x0a\xb8\x8e\xde\x66\x8a\xb7\x90\x7b\xb8\x4d\x66\x46\x8e\x1d\x5a\xa9\xf8\xb9\x13\x35\xda\x4f\x57\x89\x0d\xa3\xa5\x94\x89\xc2\x39\xcd\xb0\x5b\x8b\x6e\x00\x3f\x07\x80\xd5\x76\x6c\x48\xdc\xfc\x8f\x4d\x19\x14\x4a\xb0\x67\x36\xce\x8d\x73\x8b\x74\x54\x2b\x81\x6c\x63\x4f\x0a\x43\xf9\xa7\x34\x98\x07\x43\x26\x23\x82\xd9\xc0\x2a\xfd\xb2\x09\x44\x9b\x14\x79\x64\xd6\x32\xe0\x51\x5c\xbb\x7e\xf9\x7d\x7c\xa3\xfa\x29\x7a\x49\x9a\x26\xab\x82\xd2\xc4\x14\x9d\x53\xd3\x75\xce\x21\x8d\x28\x30\x0d\x7b\x05\xf1\x8c\xb9\x26\x68\x2e\x81\xd3\x9a\x1c\x3c\xdb\x6d\x6d\x55\x38\xc4\x63\xee\x5e\xd7\x48\xb6\x7e\x72\x68\x46\xc1\x1a\x4f\x50\x6c\x8d\x71\x66\xe5\x23\x29\xaf\xe3\x55\x01\x08\xb9\xa5\x53\xca\x1f\xb9\xc3\xad\x1c\xe8\x28\x6a\xf9\xfc\xf6\x5d\x5d\xb2\xbd\xeb\x50\x98\xa9\x35\x9e\x70\x0e\x4e\xe0\x0d\x05\xa0\xb8\xa5\x8b\x77\x3b\xba\x3e\x3d\x68\x32\x6a\x39\x2b\x7d\x56\xad\x36\xca\x4a\x16\x02\x87\xaa\x57\x33\xf7\xb5\x7b\x91\x19\x31\x28\x08\xf1\x2d\xd4\xcf\xf9\x7a\xa2\x91\xf5\x41\x6a\x4d\x66\xfb\xbb\xf0\x0b\x0e\x78\xb9\x38\xeb\xba\x5c\xd5\xe9\x70\x5e\xa3\x6f\xfe\x37\xdd\xae\x74\x84\x1c\x59\xe9\xa0\x29\xe7\x02\xf6\x07\x35\x60\x61\x45\x2f\x1f\x82\xbf\xd6\x57\x05\xc7\x26\x5d\x76\x10\x11\xc9\xa1\xf8\x9c\xb5\x46\x57\xc6\x61\x96\x99\xf8\x11\xfa\x4b\x11\x55\xf1\xed\x90\xb7\xb5\x88\xf8\x47\x08\x66\x05\xf0\x4d\x13\x28\x7d\xf9\x2d\x27\xa7\xf5\x00\xe6\x4b\x20\xe2\x8a\xa8\xe2\x92\xca\x75\xf5\x0b\x69\xcc\x71\xe5\x06\xaf\xcb\xe8\x56\x69\x69\x43\x8a\x08\xd0\xc4\x1a\xd7\x94\x48\x91\x37\xb0\x9d\x6e\x45\xdd\x73\x97\x05\xdf\x28\x04\x17\x51\xd7\xed\xf0\x7d\xa3\xe8\x50\x91\xe3\xb7\x3c\x71\x5c\x82\xcd\x29\xf4\x6d\xa8\xae\xb6\x53\xd5\x23\xfa\x59\x25\x4c\x64\x06\xdc\x61\x01\x37\x12\x67\xcf\x5d\x1c\x07\x7c\xd3\x14\x75\x6c\x6d\xfd\xc2\x8c\x7d\xae\x66\xef\xf3\x26\xca\x94\x2c\x0f\x47\x45\x14\x2a\xc8\x3c\xe7\xa9\x7c\x23\xa5\xa2\x49\x59\x09\xa3\xc8\xa2\xfd\x59\x15\x3e\xaa\x94\x29\x0e\x36\xed\xe9\x2d\x8e\xab\x7e\xa6\x15\x1b\xf7\x13\xd0\x73\xc3\x07\x39\x43\xfb\x81\xaf\x55\x4f\xe0\x4a\x18\xd8\x47\xcb\x95\x0c\x1f\xef\x1d\x4c\x05\xea\x6b\x5f\x4e\x14\xd1\xfe\xe7\x13\x45\xcb\x75\x44\xef\x91\x9f\x6b\x8a\xaa\x1f\x74\x3c\xc2\xbb\x45\x26\xca\x71\x2b\x2d\xbc\xbc\xcf\x29\xdd\x94\xaf\x00\xa4\xca\x15\x7a\x30\x29\x43\xec\x16\x0b\xb2\x06\xd2\x4d\xa7\x69\xb0\x38\xeb\x64\x25\x55\x93\x96\x62\x2e\x48\x22\x47\x32\xa2\x58\x53\xe6\x9c\x19\xde\xba\x0e\x4b\xbf\x25\x29\xf2\xe9\x72\x15\xb9\x02\x9d\xc3\x53\xa2\x40\x80\xa7\x6a\x11\x7a\x03\x87\xf0\x07\x7a\x6f\x5a\x93\x46\x6b\x8f\x7a\xaa\xe3\xb7\xa9\xa2\x28\x09\x9d\x72\x50\x45\xb2\xd0\xd9\x70\xf3\xa4\x32\xdb\xa7\x91\x65\x02\x46\x84\xd7\x9e\x0b\x9c\xca\x67\x77\xfd\x79\xe5\xc6\xe6\x3f\x9b\x54\xbb\x8c\x1d\x17\xc5\x5b\x2a\xec\x31\x23\x93\xdb\x22\x6d\xf9\x76\x85\x53\x64\x89\x84\x5e\xb0\x91\x4f\xc7\x9a\x5c\xa9\x54\x1c\x86\xd7\x29\x12\x72\x3e\xbd\x3d\x4a\xb2\x20\x59\xdd\xad\xb8\xd0\x3e\xd6\xb2\x0d\x87\xa9\x86\x26\xb8\x0c\x05\x9a\xf9\x31\x0d\x02\xda\xa3\xf8\x90\x75\x92\x26\x8b\x52\x7b\x40\xa8\xcc\x1f\x80\x71\x43\xa2\xe9\x8b\x89\xe2\x52\xf9\x91\x6a\x66\x20\xc3\x8f\x66\x06\xa4\x81\x10\x5c\xf0\xb5\xca\x7b\x97\x47\x2a\x85\xb4\xce\x29\x78\xb7\xe3\x9d\x85\x77\xd5\xe8\x8d\xc2\xd4\xc4\x7d\x4e\x80\x60\x09\xbc\x87\x07\xe6\x1b\x17\x41\xf5\xc3\x2c\x2f\xd2\x1e\x1f\xd2\xf0\x19\x90\x2e\x12\xf6\x3a\x2d\x12\x42\xaf\x03\x9f\xfe\xd3\xa6\xfe\xb0\x11\x85\xf5\x74\xba\x22\xce\xfe\x6e\xc7\xc7\xdf\xdf\x55\x82\x7c\xac\xd2\xba\xc3\x27\xb1\x3e\xa6\x1f\x42\xc0\x89\x5d\x87\xc0\xef\xe3\x4e\x25\xc1\x49\xcb\x0d\x61\xff\x51\x05\x24\x3e\xff\x50\x1c\xa4\x49\x47\x01\x77\x45\xa2\x88\xf5\xbe\x26\xb6\x7f\xbf\xb1\x59\x75\xb8\xd6\x4b\x43\x8c\x88\x6e\x5d\xc1\xe9\xf5\x96\x0e\xb9\x2f\x4d\x1a\x75\x68\x47\x26\x2f\x52\x12\xc3\xe6\xc0\x54\x10\x65\x2a\xc9\x8e\xcc\xbe\x58\x8d\x06\x2e\xbe\x20\xb2\xc6\x0b\xdc\x63\x34\xa6\xd6\xfd\xc8\x4c\xd5\x24\x7d\x16\x16\x17\xda\xec\x4a\x8a\x21\xc1\x6f\x71\x0b\x3e\xdf\x28\x67\x38\xb6\x59\x1e\xd9\x19\x32\x6c\xbc\x21\xb5\x87\xc0\xd0\x0c\xd9\xaa\x78\x17\xac\x79\x16\x1c\x45\x4e\xe9\x66\xed\xc4\x80\xc4\x53\x78\x28\x1f\x2a\xaa\xd5\x0b\x9a\x7d\xe5\x82\xf3\x26\x56\x4d\x1e\x0c\x6d\x2a\x63\x25\xa2\x99\xf4\xfd\x30\x33\x7f\xac\xd3\xb7\x47\x5c\x2a\xb1\x97\x26\xa6\x1f\x98\x2c\xa7\xe4\x38\x32\xb5\x37\x14\x5b\xdf\xe5\x8e\x97\x26\x63\x15\x04\x98\x75\xd4\xf9\xb0\x2c\x37\x1a\x15\xf9\xa3\x88\xca\xbb\xd8\xec\x37\x55\xd4\x77\x54\xef\xa3\xf3\xb5\x0e\x89\xfd\x2f\x63\xf2\xd1\x3d\xcc\xfd\x81\x78\x15\x69\x16\x54\x8a\x72\xab\x28\xdd\xf9\x68\x8f\xbb\x74\xf8\x46\x19\x89\xd4\x0e\x4c\x18\x4f\xf9\x9d\xc5\x96\x09\x91\x0a\x68\x4f\x70\x06\x9c\x52\xc4\xfa\xc9\xd2\x52\x18\x94\x23\x4b\x4b\xc8\x31\xb9\xbb\x1e\x13\x90\xef\xa2\x00\xf8\xe1\xc4\x57\x1c\x56\x93\x91\x8d\x1f\x51\x48\x87\xcf\x2a\x8d\x21\x37\x3a\x4a\x6a\x0e\x7a\x59\xf8\xb3\x13\xba\xc1\xe2\x14\x68\x66\xd6\x71\xf2\xe3\x08\xbe\xa7\x6b\xcb\x17\x1a\x4a\x33\xed\x61\xe1\x34\x90\xf0\x5c\x87\xb1\x06\xf9\xc6\x2d\x9a\xd4\x86\x03\xbf\x3b\x50\x7c\xbd\xae\xe8\x56\xaf\x37\xe7\x09\x9e\x33\x91\xe5\x62\x96\x90\x47\xd1\x6b\x0a\xab\x94\x5b\x93\xa9\x19\x8f\x85\xf4\x57\xb8\xe1\xe9\xa7\x44\xf0\xdc\x6f\xa2\xd7\x8b\x24\xb7\x94\xa1\xdb\xbc\x4b\x87\x14\xf6\xcb\x5d\xb2\x68\x7c\x5d\x0e\xd2\xe6\x5d\x45\xec\x1c\x17\x2c\x87\x82\x62\xc5\x17\x0a\x5a\xf3\x45\x63\xa8\x97\x15\xbd\x3c\x8c\xc2\x6c\x4a\x7d\x48\x53\x84\x7f\x89\xa1\x05\x02\x48\xf7\x3a\x66\x49\x6c\x72\x34\x32\x34\x12\x97\x8b\xd1\xb2\x45\x9a\xf4\x93\x28\x32\xe9\x94\x8a\xd9\x1f\x59\x77\x9d\x75\xb3\x4f\x77\x7d\x42\xef\xf6\x43\x83\xe3\x20\x89\x06\xd4\x3e\xef\x7a\x43\x3e\xc2\x0f\x4a\x87\x97\xd7\xa9\xa0\x96\x54\xce\xc0\xa1\x80\x70\x8c\x41\x6f\x7c\xd7\xd4\xd9\x45\x72\x51\xbc\x6b\x70\xce\x6e\x60\x83\xf1\x4d\xc3\x67\x16\xda\x79\xb2\xea\x28\xb7\x85\x05\x9c\x7e\x56\x68\xc0\x7d\xf2\xab\x17\x99\x0c\xed\x77\x92\x14\xf4\x65\x5f\xf4\xe9\x8b\x58\x79\x43\x7b\x5b\x18\x67\x45\x5a\x95\x2e\x03\xde\x48\x7a\x48\x7c\xaa\x64\x9c\xbf\xd0\xaa\x20\xa9\xe9\x79\xa4\x60\xe7\x0f\xf3\xa1\x35\x8e\x7e\x1a\xd9\x17\x84\xc0\x7c\xed\x50\x8f\x51\x31\xe0\x8d\x23\x62\x98\x1e\x2b\xbe\xa1\x30\x51\x23\x93\x0e\xc2\x38\xdb\x49\x3f\x27\x62\x3c\xb4\xb4\x99\x15\x90\xde\x51\x7f\x07\x1c\x4a\xae\x6e\xc8\x17\xd2\xae\x76\x7f\xe5\xc8\xd5\xa7\xd6\xb7\xba\xa9\xaf\xbe\xda\xce\x8a\x60\x48\xb6\xcb\x29\x9a\x2f\xcc\xed\x67\x40\xce\x70\xa2\xda\xc7\x1a\xf5\x52\xcc\x8a\x4d\xe3\xa4\xc8\x14\x84\xf7\x4d\x05\xe1\x7d\x53\x19\x2e\x13\xe7\x86\x81\x0b\xf8\xc6\xeb\x70\xda\xf9\xa6\x51\x0c\x8d\x78\x7e\x78\xc6\x64\x4c\xcb\x5f\x92\xb1\x7e\x5c\x31\xde\xda\x55\x98\x52\x91\xa0\xf2\xc5\x79\xc0\xb4\x44\xf2\xde\x07\x43\x59\x9e\x86\xcb\x4c\x43\xeb\xf1\x0f\x34\x92\x82\x98\x68\x18\xb0\xd5\x24\x5d\x06\xc9\xa4\x30\xfe\x7a\x38\xe5\xdb\x84\xe1\x73\xda\x15\x8e\xa4\x42\xf3\x5e\x04\x49\x14\xd9\x20\xc7\x90\x09\xc4\xb3\xe5\xd4\x9f\xae\xd6\x06\x62\x71\xb6\x3d\x8e\x28\xab\xd0\x52\x64\x0c\x17\x15\x5d\xd6\xc5\x5a\x87\x78\xe9\xa3\x0c\x4d\x1a\x52\x87\x55\xcb\x57\x4e\xa1\x77\xfd\xff\xf2\xf5\xa7\x31\x92\x9c\xe9\x9d\x18\xde\x9d\x55\x7d\xf0\x26\x87\xe4\xac\xfe\x98\xdd\xbf\x73\xed\xc1\x72\x01\x53\xb4\x21\xc3\x6b\xed\x7c\x89\x54\x75\x8d\x38\x2c\x68\x8a\x85\xea\x56\x53\x4b\xf8\x03\xdf\x8a\x7c\x33\x33\x58\x91\x11\x39\x71\x54\x75\x8d\xfd\x41\x30\x16\xc2\x62\x61\x2c\x60\x5b\x6b\xad\x81\xb5\x21\xed\x1a\xbb\x92\x20\x5b\xd7\x48\x3b\x5a\xad\x26\x6b\x46\x73\x88\x9a\x11\x87\xc3\xe1\x7d\xf6\x7d\x55\x75\x57\x37\xfb\xbe\x8a\x46\x3c\xbf\xe7\x79\xdf\x27\x2a\x83\xfa\xc4\x0c\x76\x55\x56\x66\xc4\xfb\x3e\xef\x73\xfc\x0e\x7e\x3d\x56\x83\xff\xb2\xdb\xb5\x49\xbc\x36\xad\xa6\x5d\x02\x72\x55\x86\x9f\x07\xdd\xf8\x90\xee\x92\x70\xb6\x1a\xf0\x33\x65\x62\xf2\xbc\x1c\xba\x53\x00\x99\x09\x7a\xbd\xfc\x5a\xdd\x93\x1e\xb3\x03\xf7\xb6\x1c\xc9\xf9\xc4\xd8\x4f\x18\xa6\x3b\x94\x5b\x22\x47\x3a\x81\x82\x85\x2f\x02\x0d\xce\xd0\x76\xb6\xfe\x28\xef\xdb\xcc\xc4\xdd\x96\x42\x03\x6c\xd5\x94\x36\x55\x72\x1e\x5b\xd3\x4d\x7b\x3d\xba\x61\x78\xa3\xe3\x81\x07\xda\x1f\x6f\xd2\xd3\xf1\xc3\x22\x54\x05\xac\x14\xca\x17\x2a\xaf\x0e\xd3\x24\xb4\x59\xc2\x78\x47\x44\x6a\xae\x83\x58\x25\x06\x25\x09\xc0\x25\xa7\xb0\x89\x31\x7a\x38\x43\xdf\x8c\x9d\xf6\x10\x50\xb1\x03\xd6\x09\xc0\x22\x46\x1a\xbe\xc3\x7f\x8f\x3e\x35\xee\xf3\x0d\xa2\x7b\xb1\xd0\x22\xdd\x7f\xf4\xad\xee\x5f\x57\x91\xff\x37\x1b\xe6\x60\x0b\xed\xd5\x28\x69\x69\x6e\x9f\x5a\xf5\xa7\x26\x22\xec\xe2\x0c\xb7\xfa\x79\x99\x62\x17\xbc\xae\xd5\xed\x5e\xff\x4c\xe1\x9a\xd8\x16\x85\x6b\x35\xb3\xa2\x49\xcd\x92\x4e\x65\x76\x27\x54\x4f\xfb\xbf\xf9\x6f\x39\xae\x8a\x57\xbe\x92\x44\x99\x5e\x77\xbc\x6d\xa3\x48\x19\xdc\x3c\xab\x35\xd2\x7c\xef\x3a\xcd\x12\x33\xb4\x49\x01\xd4\x0f\x8b\x32\x2b\x7e\xf0\x39\x65\x03\x73\x62\xfc\x80\xfb\x20\x87\x9e\x99\x52\xc7\xcf\x58\x75\x9f\xaf\x29\x4a\xc5\xe6\xc4\xc9\x5c\xad\xa0\x30\x24\x8d\x2a\x8c\x29\x0f\xcf\xf0\xcd\x7a\x8f\xfe\x12\xbf\x9e\xb8\xdb\x87\x9e\x6f\x77\x6d\xaf\x0a\x24\x2d\x2f\xc4\x82\xfc\x51\xfa\x64\x0a\xc7\x5f\x1e\x29\xb3\xb5\x69\x5f\x9c\x32\x96\x9a\x2f\xc6\x6a\xa6\x5a\xc3\x34\x35\x85\xe4\x32\xf3\x9e\x96\x32\x3a\xf0\x08\xa1\x53\x4d\xf3\xd4\x61\x9a\x81\x6b\xc5\xb3\xf0\xb1\xe2\xd6\xed\x22\x50\x9e\xcb\xdf\xab\x9d\x2d\x58\xc9\x1a\x6a\xbd\x9f\x53\x6c\x40\x8c\x84\xda\x0a\x72\x2b\x14\xf5\x62\x96\x4f\x2b\x14\x8d\x03\xf8\x02\xf1\x2f\xe0\x81\x88\xb0\xb7\x9a\x8c\xc7\x26\xa9\x4e\x70\x6e\xb1\x3b\xc1\xf0\xc3\x33\xf2\xba\xf6\x31\xa2\xc2\x4c\x57\x5b\x11\x1f\xf1\x4c\xa0\x50\x0c\xa7\x69\x6b\xf1\x3f\x68\x44\xc3\xe9\xa6\x6a\x7c\xd5\x9a\x65\x9b\x41\xad\x11\x2d\x72\x4d\x3a\xbb\xea\xac\x8e\xab\x6c\x8d\xc3\x0b\x2a\xac\x6f\x68\xd1\xb3\x6f\x34\x0c\xbd\x4d\xb8\x9c\xa4\xab\xb1\xed\xf6\x65\xc1\xb3\x47\xa1\x6e\xfa\x5c\x9d\x00\x1d\xcd\xcf\xb7\x8b\xa4\x40\x90\x14\x8b\x9d\x96\xf2\xa5\x69\x4a\x7b\x47\x66\x8d\xb6\x0a\x76\xa0\x48\x4c\xb5\x94\xf6\x94\x6b\x4a\x17\xa6\xd7\x73\x82\xef\x62\xc9\xa8\x08\x22\xef\x4d\x64\x17\x64\xe3\x36\xca\x0b\x13\x65\x3c\x42\x41\x27\xea\x94\x12\x29\x03\x16\x4a\x86\x71\xbe\xb6\x5a\x1d\x98\xc2\xae\x80\x4a\xf0\x22\x3f\x86\x9b\x78\x58\xee\x70\x51\xcb\x51\x73\xc8\xc9\x51\x04\xab\x1b\xf1\x16\x7b\x8a\x5f\x2b\xb0\x71\x37\xca\xc9\xa7\x81\x11\x30\xdb\xa4\xd2\xb4\x7d\x74\xd2\xe7\x67\x96\xe0\x17\x94\x25\xba\xf1\xf3\x7b\x4a\xe7\xee\x3d\x6f\xe0\x37\xca\xcc\x5a\x0e\x81\x62\xd7\xc3\xa8\xbe\x41\x43\x43\xe3\xd3\x9d\xc2\xe4\x8b\x33\xed\xf9\xf9\x27\x69\x15\xa3\xd9\x0a\x78\xb1\xa8\xc4\x56\xab\x16\xc9\xc2\xe5\xb1\x42\x9f\x3d\xba\xae\xb4\x34\x8e\x8f\x95\x98\x34\x23\xb1\x30\x7b\x3b\x1b\x28\x2a\x19\x90\xe8\xe8\x97\x5e\xa1\x01\x6c\x4d\xf5\x5d\x94\xc1\x7d\x7b\xb0\x05\x32\xa8\x18\x48\x2b\xc0\xcb\x93\x9d\xd6\x81\x03\xdc\x06\x3c\x4f\xe7\x94\x13\xab\x77\xc0\x83\xab\x88\x0a\xc8\x59\x76\x75\x3c\xe6\xf3\xa7\x81\xb2\xcf\x7f\x43\xcd\xa1\xf7\xb8\xc0\xbf\x94\xa5\x64\x79\x0b\x19\x28\x48\xce\x6c\x9f\x6c\x04\x5d\x9a\xbc\x58\x83\x7f\x1f\x4f\x65\x95\x4a\xf7\xa4\x1d\xc1\xec\xa1\x2a\xaa\x99\x1c\x48\xc9\x26\xec\xdc\x13\x6e\xa5\x94\x49\x37\x2d\x97\x0a\xdb\x8d\xd7\x30\xb3\xc2\x54\x08\x1b\x1e\xcf\xe4\xc3\xb1\xca\xdf\xcf\x4f\xb0\xfc\x0f\xcf\xbc\xd8\x2e\xaa\xfc\x79\x98\x96\x49\x41\xd9\xba\x4c\x1e\x5b\x4e\x1f\x1b\xad\x41\x81\x77\x3c\x5a\xe3\xe8\x8b\x9d\x6a\x13\x4c\xab\xce\x6e\x4b\x6c\x96\x0f\xa2\x51\xbe\x5f\xed\x69\x16\x2c\x70\xc2\x36\xaa\x5b\xde\x52\x32\xbf\x0a\x48\x00\x1a\x02\x4e\x49\x24\x2f\xfc\x0b\x78\x64\x18\x25\x5e\x6f\x30\xb8\x9b\x6d\xaf\x9a\xb8\x18\x60\x8a\x29\xe9\xda\x06\xfa\x8c\x7c\xa1\x60\xfb\xa3\x28\x5c\x26\x10\x30\xb3\x96\x03\x2f\x98\x7c\xba\x09\x91\x9d\xf6\x7a\xf9\x20\x4d\x0b\x25\x1c\xfa\x5e\xa0\x4e\x59\x05\xa7\xcc\xc2\x7c\x69\xaa\x5a\xdb\xc2\x26\xa3\xcf\x83\xee\x3b\xc6\xd7\xd8\x33\x57\x27\x88\x7c\x73\x73\x90\x99\xcd\x0b\x1c\x2d\xf4\xc7\x64\xd6\xe9\x47\xdb\xef\x38\x0c\x7b\x6e\xb3\x95\x08\xfe\x79\xf3\xce\x73\xca\x37\x38\xdf\x0d\x9e\x10\xc4\xef\x68\x94\xa5\xa3\x2c\x32\x85\x65\xb3\x1d\x94\x69\x47\xe8\xa4\xe3\xd7\x8a\xc5\x86\x82\x37\xe3\x88\x82\xce\x0f\x0e\x7b\x07\x00\xa8\xc2\x05\xda\xde\x57\xd4\x2f\x72\xaa\x9a\xc3\xf4\x11\x4d\xad\x9b\x40\x4e\x20\x21\xbd\xac\x8e\xfc\x0b\x14\x0e\x10\x20\xdf\x40\x04\xc1\x6f\xbc\xaa\xb2\xd6\x37\x82\x09\x7b\x77\xf0\xc8\x7e\x1c\xf8\xf3\xff\x82\x8a\xca\xa7\x02\x65\x1b\x76\x7d\xac\xc0\x8f\x0f\x4f\x98\xba\x1e\x9e\x69\x57\xc7\x0b\xa8\xc5\xee\x10\xfd\x53\xfc\x12\x5f\x4c\x80\x24\xab\x0a\x29\xb3\xc6\xc9\x66\x20\x29\xfe\x89\x32\x47\xf9\x89\x02\xc5\xe5\x6b\xf1\x8a\xcd\x0b\x71\x66\x42\x82\xf4\x83\xc0\xc3\x18\x7e\xa0\x96\x65\x68\xf2\xc1\x43\xf4\x7d\xb1\x64\x7f\x9f\xc0\x5f\x42\xf5\xa3\x37\xc0\x34\xf7\x47\xf8\x92\x80\x54\xfd\x19\x62\x2c\x4e\x36\x1e\xb7\xba\xc5\xe7\xd9\x37\xbb\x3a\x3e\x6c\xdc\x52\xd2\x54\x4c\xba\x72\x16\x94\xce\xb2\xfb\x7d\x85\x3c\x6e\x51\xc7\x48\xfc\x3d\xa4\xbb\xe4\x30\xbd\x7c\x92\x8b\x01\x84\x47\x29\xbe\x33\xd1\xc3\x3f\x30\xdb\x4e\xd2\x6c\xd5\xf6\x23\x93\x70\x97\x48\x90\xf8\x28\x70\x04\x8b\xdf\xc0\xa3\x32\x4b\x69\x99\x74\x91\x71\x01\xc7\x73\x4e\x29\xdf\x9e\xd3\x1c\x06\xfc\xa0\xef\xc4\x9c\x51\xe2\xa3\x67\x1a\xbc\x58\xdb\x65\x92\x99\x15\xa7\x40\xe5\x80\x2a\xda\x06\xbc\x09\xb9\xd5\xb5\xc3\x52\xd2\x13\xd1\x0b\xd0\xe2\x01\x4d\xee\xb9\x5d\x93\x55\x05\x92\x9e\xf4\xb3\xac\x18\x5f\xec\xdc\x51\x5d\xa4\x72\xb3\x3c\x1f\xff\x38\x50\xc3\xf2\x8f\x95\xc3\xd5\xc8\xac\xed\x6f\x39\xdb\xa8\x69\x74\xf3\xb1\x75\x58\xdf\x95\x79\x76\x44\x3e\x14\xce\x5d\xf5\xc4\x59\x12\x98\x9e\x38\x4e\xfe\x4b\xb4\xa7\xd0\xe1\xba\x30\xae\x0d\x7a\x1b\xfa\x39\x71\xda\x27\x9b\x71\x5e\x08\xa2\x4c\xd8\xf2\xba\x99\xae\xc1\x6f\xe2\xd8\x26\x45\xba\x2a\x37\x00\x3b\x95\xdd\x4c\xf8\xa2\xd1\xb1\x61\x54\x1d\x33\x65\x3e\x55\x2d\x5d\xed\x51\x0d\xa0\x36\x77\xb2\x30\x97\x3b\xa3\xaa\xf8\x6e\x04\xac\xa5\x73\x6e\x85\x13\x08\xfb\x1b\xe1\xcf\x3a\x70\xf9\xe1\x19\x77\xf8\x48\x0b\xae\x9f\x76\xf3\x29\x95\x3b\x9f\xac\xb1\xe3\x6a\xb6\x01\x0d\x9f\x7a\xa9\x8c\x63\x5b\x44\x3c\xcf\xc7\x56\x7e\x6d\xec\xd9\xbc\xaf\xb9\xa9\xdd\x92\x4d\xc8\x0d\xb8\xab\x35\xf5\x61\x4a\xcd\xaf\x3b\x6a\x94\x1a\x86\x59\xc9\xd6\xbd\x4c\x3d\xa7\x6f\x25\x34\xf4\x06\x78\x43\x8f\x85\x27\xb7\x29\x7f\xd8\xbe\x3a\xfe\x2c\x1f\xd1\x7e\x95\x9d\x92\xed\xdc\x34\x1a\xdc\x8a\xb2\x73\x51\x81\xa0\x6a\x28\xcc\x6b\x13\x8f\xec\xe9\x76\x66\x42\x3b\x48\xb3\x5c\x2b\x44\x9d\x52\x18\xdf\x53\x5a\x5a\x37\x1d\x9a\x64\x8f\x07\x24\xfe\x58\xcb\xc4\x61\xe6\xe3\xb4\xae\x17\x17\xbc\x9c\xd2\x2f\x7f\x85\x0f\x8a\xef\x36\xf9\x19\xac\x46\x90\x19\x52\x26\x11\x0a\xe3\xc6\x98\x39\xf1\xa1\x97\x6c\xda\x86\x83\x54\x80\xc9\xc8\x75\xde\x57\xb6\xa3\xef\xab\x78\x9d\xd9\xbc\xd8\xa3\x74\xb8\x91\xc8\x21\x4a\xb6\x70\x77\x90\x99\x61\xd6\x88\xe5\xd7\x82\xcf\x20\x1b\x48\x28\x2d\x95\x28\x4b\x93\xbd\xaa\x27\x71\x42\x5b\x37\x9c\xe7\x9e\x9a\x90\x17\x3d\x54\x15\xd6\xdb\xfc\x3a\x50\x2a\x2b\x27\x5c\x9c\xce\x47\x91\x8d\x57\xd2\x3e\x34\x0f\x1d\x8c\x4c\x91\x75\x27\xb5\xfb\xbe\x3a\xdb\x8e\x09\x15\x56\xed\x09\x44\xc0\xd3\x88\x3b\x7c\xe1\xf0\x36\x99\x25\xd4\x9e\x59\x8a\xd9\x33\x0f\x2d\xf6\x8f\xe9\x73\x21\x11\x84\x53\x15\x52\x80\x2b\x2a\x4c\x9b\xa5\x74\xc5\x32\xe4\x09\xff\xda\xea\x78\xcc\xcc\x47\x4a\xdf\xec\x7d\xe2\x61\xa0\x28\xdf\x54\x70\x65\x86\x7c\x88\xce\xb8\x12\xa3\xbf\x39\xf6\x52\x8c\xd7\x71\xc6\x49\xef\x7e\x67\xe6\x35\x7b\xa8\x3d\x48\xb3\x22\x0a\xcb\xb8\x28\x33\xa6\xa8\x20\xdb\x7a\x2d\xf0\x59\xd8\x6b\xaa\x7f\xf4\xdc\x81\xaf\xb4\x94\xdf\xf0\x8e\x69\x85\x32\x54\x1b\xa4\x79\xa1\x9a\xdc\x37\x55\x93\xfb\xa6\x12\xa1\x1b\x44\x5d\x6b\x56\xcd\x1a\x0b\x95\x3b\xce\xe3\x82\xb3\x4f\x3a\xd7\x3c\x41\xaa\x92\x45\x93\x75\x99\xc1\xe4\xa6\x13\xee\x04\x06\x12\x52\x9a\x9b\xd5\x07\x61\x05\x03\x4d\xa8\xfa\xc1\xd8\xbb\xb4\x17\x36\xa3\x11\x3e\x7e\x6c\x5f\xc7\x5b\xf7\x01\xc3\x84\x7b\x71\x16\xed\x7e\xe9\x84\xaa\x3c\xe3\x5a\xa0\xa9\xd8\xba\x7d\x4d\x92\xea\x39\x6e\x1b\x4e\xe2\xf7\x29\xd3\xe3\xd7\x81\xaf\x91\x07\xd6\x74\x89\x00\xca\x3f\x2d\x50\x30\x2f\xb7\xbd\xd5\x3c\xa5\xcd\x8a\x01\x84\x95\x59\xe4\x51\x8b\x55\x9c\xd6\x4a\xb6\xc3\x51\x9a\x15\xdc\x58\x78\x56\x8c\xb7\xe8\xd9\x88\x09\x97\x22\x9c\x57\x4b\x23\xb6\x60\x92\x88\xc4\x89\x5f\xdc\xe7\x34\x31\x30\x50\x88\xb3\x5d\xeb\x4a\x13\x65\xac\x54\xaa\x14\xee\x7d\x97\x32\xb8\xef\x8a\xc1\xbd\xa8\xc3\x56\xbf\x22\xb2\xb1\x4d\x03\xb0\x9e\x89\xe3\xda\xa8\x99\xe5\x83\xf8\x42\xcd\xa5\x66\x9e\xfb\xb2\x9a\xdd\xdd\xd6\xb3\xbb\xdb\x0d\x70\x89\xf6\xd0\xe6\x79\x96\x3f\xc3\x47\x34\xbe\xdb\x75\x6d\xf5\x70\xbd\x89\x5d\x19\x9b\x25\x53\xa0\xaf\x28\xb2\xaa\xf4\x2b\xa2\xab\xaa\x19\x10\x94\xd6\xec\x51\x72\xce\xc2\x13\x00\x5d\x82\x65\x83\x70\x30\xa3\xd7\x27\x0e\x7f\x7e\x11\x6c\x34\x11\xcd\xf2\x32\x2f\x4c\x94\x70\x22\xc7\x28\x17\x9c\x61\x02\x79\x69\xc0\x58\x7c\xb1\x6d\xba\x2f\x9b\x50\xa0\x38\x4d\xa6\x40\xbe\xc6\xeb\x19\x30\x87\x67\x5d\x37\xde\xfb\x68\xee\x82\xea\x12\x32\xb9\x4b\x48\x20\xf9\xa7\xe8\x79\xa2\x31\xb0\x35\xf1\x19\x88\x06\x10\xf5\x4d\x66\x0b\x9e\xb3\x22\xa1\x3f\x8a\xbc\x86\x2f\x74\xe3\xf8\x85\x69\xaf\x54\x00\x08\xa2\x68\x5b\xfa\x8e\x06\x3f\x69\xe4\x60\xfb\x3a\x1a\x7b\x00\x3c\x84\xab\xc6\xee\x28\xb0\x22\x73\x39\xc4\x5e\x67\x67\xb8\xfc\x52\x3b\x0f\x23\x9b\x14\x51\x4f\xd1\x00\x99\x79\x47\x77\x4c\x58\x78\x7e\x9c\xbe\x46\x8a\xc3\x7b\xa8\x36\x61\x24\x01\x62\x86\xb4\x6d\xe8\x64\x11\x8c\x81\x57\xd8\x47\xa1\x82\x5e\xfe\x71\x15\x56\x63\x6b\xb2\x64\x5a\xdb\x6c\xff\x08\x0b\x46\xea\x23\x8f\xa9\x6f\x75\x3c\xb3\xb5\xb5\x2e\xd9\x56\x62\xc2\xaf\xdb\x38\x89\x96\xa7\x7c\xe7\x7b\x37\x15\x39\x58\x7f\xdb\xa4\x4f\x40\x79\xc2\x97\x1e\xed\xf8\x61\x0c\x53\x62\xf6\xfa\xf1\xf1\x1d\x25\xdd\x76\x07\xdf\x43\x78\x10\x9a\x14\x31\xf6\xb0\x95\x13\x14\x30\x64\x48\xed\xb5\x76\x4c\x31\xb0\x43\x43\xd9\x4a\x6d\xb0\xe3\x68\xe3\x73\x73\x82\xb6\xd5\xd6\x48\xa9\x34\x52\xf1\xdd\xa1\xfb\xc8\xaf\x27\x70\x30\xb3\x87\xda\x45\x3a\x52\x1d\xc5\x6d\x05\x33\xd9\x6e\xca\x1b\xf3\xe5\x2a\x7b\xad\xde\x5f\x04\xa8\x5b\xf3\x5e\x98\xda\x1b\xe4\xd0\xa8\xd1\xf0\xfe\x91\xc6\x9e\xcf\x4f\xb7\x94\xbc\xad\xc9\x73\x93\xe7\xec\xca\x4a\x6b\xdd\x95\x4e\xd5\x5a\x97\xd2\xc9\x6f\xb8\x32\x37\x08\xeb\x78\x38\x70\x2f\xe5\xd7\x4d\x79\x5f\x41\xb5\x1c\xdd\x49\x00\x64\xb6\x15\xbd\x99\x83\x24\x2a\xe1\x6b\xe3\x27\x7d\x50\xb2\x19\xd6\x74\xc1\xdc\x6d\x31\x5b\xf0\x93\xbc\xab\x5a\x9f\xed\x62\xf0\x80\xc7\xf1\x99\xbd\x7e\x56\x7c\x63\xac\x2a\x2f\x3e\x83\x84\x4a\xa4\xd5\xe2\x4f\xd0\x3b\xa3\xb3\xbe\xbf\x43\x67\xbd\x4c\xaa\x1a\xca\xc6\x30\x1d\x45\xd2\xfa\x67\x0f\x46\x7a\x14\xe2\xc7\x38\x09\x79\x2a\xd2\xb8\x8b\x38\x85\xc6\xc4\xc3\xa4\x6d\x82\x6f\xa5\x55\x66\x3f\x1d\x2b\xc0\xf6\x6b\xb4\xce\x84\xd0\xf2\x50\xe4\x5b\x13\x28\x4d\x84\x8b\xc3\x04\x44\xf1\xc3\xf6\xa3\x11\xd8\x8b\x14\xb6\x4b\xf7\x90\x69\x17\xb4\xa7\x11\xcd\x2f\xd3\xf2\x07\x2d\xe4\xc3\x40\xa0\xb5\x3d\x50\x2f\x6a\xb6\x95\xd2\xa2\x80\x58\x32\x6a\x81\xeb\xf8\xb3\x92\xe8\x3c\xae\x1c\xab\xc3\xb4\x9f\x44\x5f\x67\xdd\x29\xe5\xc1\x3b\xeb\xea\xbb\x9d\xfd\xd1\xb9\x39\x78\xee\x99\xd8\xfd\x9e\x70\x1a\x14\xbf\x41\x13\xcc\xe2\xd8\xf6\x53\xf6\x58\x46\xff\x12\x8b\x91\x5f\xab\x62\xdc\xc4\xf1\x63\xf4\xe4\xb1\x55\x76\xad\x57\x35\x37\x92\xdc\x8d\xb1\xc2\xa9\xee\x57\x9c\x96\x87\xd7\x15\x71\xf9\x2c\x60\xe2\x28\xf3\xef\xd1\x4d\x43\x9c\x7a\x88\x54\xb7\xf0\x9d\xee\x29\xa3\x58\x90\x36\x9c\xf9\xbc\xb7\x53\x18\x69\x04\x1a\x43\x75\x59\x9d\x4f\x55\x53\x9f\x12\x46\x16\x2d\xd6\xef\x52\xb8\xc2\xff\xff\x1d\xcd\x0d\xbb\xa2\xe4\xd2\xca\x24\x2a\x06\x69\x4c\x86\xbc\x10\x07\xe1\x36\xf9\x63\x9e\x2f\xd2\xb3\x19\x6c\xe4\x35\xfa\xbd\xba\x2b\x02\x9d\xf7\x67\x44\x1a\x47\x2b\xd2\xbf\xc5\xbf\xfe\xae\xea\xb1\xfe\xee\x44\x6c\x7a\xea\xa9\x76\xaf\x4c\x88\xd8\xb9\x4d\xdd\x8a\xed\x4b\x3a\xc3\x18\x98\x24\xb1\xd0\x56\x74\x2e\x3d\x9e\x76\xf4\x0d\x84\x56\x66\xfc\x06\x0a\x4b\xf7\x8d\xb1\x5f\xb6\x47\x15\x79\x9b\x7c\xad\xe3\xb5\x07\xe8\xee\xb9\x11\x8f\x9b\x55\xa0\x37\xc9\x2e\x64\x8a\x24\x7d\x07\x0f\x02\xc3\x86\x93\x63\xc5\xbf\x3b\x49\xb8\x6c\x46\x46\xd2\x3c\x1e\xb3\xf9\x5d\x00\x2d\xb8\x6d\xfa\x9c\x34\x30\xff\x25\x96\x8d\x68\xe9\x35\xd0\x7e\x7a\x65\xe6\x28\xbf\x22\x4b\xed\x1b\x42\xf7\x53\x1a\x25\xad\x13\xfa\x23\x68\x42\x5c\x77\xe9\x7f\x1e\xc5\x31\xe6\xbd\x54\x38\xfd\xb3\xff\xac\xa3\x98\x68\x5b\x2a\xff\xdf\x1e\xbb\x6e\xfe\xd1\xc7\xd7\x1b\x06\x95\x26\x4b\xcb\xa4\x4b\x38\x76\xd4\xc0\x30\xe4\x12\xd0\xac\x6f\x34\xa1\xdb\x2b\xc5\xbd\xb7\x4d\x34\x61\x11\xad\x10\xde\xf6\x3e\x5a\x7f\xe2\x67\x51\xdd\x66\x80\x49\xde\x47\x3d\xca\x64\x3d\x2c\x6b\xfe\x97\xb1\x4a\x49\xe8\xfd\x5d\x7a\xe2\x7c\x79\xe0\xa7\x03\xa0\xf2\x29\xcc\xac\xc4\x25\xc3\xeb\xa1\xc7\xb6\x1f\xe5\xb1\x29\x52\xee\xdf\xa2\xa6\xba\xad\x5c\xf6\x6e\x4f\xa4\x47\x2f\xbd\xd4\xee\x46\xb9\x19\x8d\xac\xc9\x8c\xac\x7d\xd4\x46\x1b\x4a\x8b\x60\x43\xd5\xc1\xa4\x45\xa3\x8d\x56\xef\x69\xb2\x22\x94\xa2\x01\x4f\xfa\x89\x9a\x2a\x5e\x1a\xeb\x7c\xae\x6b\xed\x50\xb3\xf6\xb1\xd4\xf0\xe4\xef\x2a\x26\xc8\xb9\x09\x28\x01\xa5\xbf\x61\x5a\x26\x45\xb6\x36\xb4\x7c\xd8\x37\x29\x34\x3c\xa2\x70\x37\x36\x0b\xed\x0e\x64\x9a\x47\x98\xd5\x8c\x35\x92\x22\xfd\x9c\x12\x2e\xb8\xc5\x9d\x0c\x08\xfb\xb3\x5b\x95\xd3\x7a\x74\x23\xa2\x0f\xb1\x40\x11\x82\x4f\x23\x04\x21\x7a\x6e\x51\x57\x1c\x0f\x6e\x2f\x74\x7a\xb0\x5b\x7f\x1d\xbd\x6f\x61\xf1\x57\x09\x1c\xce\xd6\xf3\x90\xbd\x72\x5c\x55\xdf\x59\x3a\xaa\x10\x5e\x48\xe4\xa4\x47\x48\xab\x09\xdb\xe3\x2e\xad\x20\x61\x63\x7a\xb1\x60\xf6\x31\x42\x20\xfe\x41\xe3\xa8\xcf\x44\x49\xbc\x86\xdb\x24\xe9\x8a\xa7\x84\x9f\x56\xb1\x74\x94\x59\x37\x15\xaf\x56\x38\xf2\xbc\x6b\x2a\xe7\xbb\xa6\xe4\x56\xec\x91\x11\x4d\x2d\xf6\x51\x6c\x41\x37\xeb\x16\xee\xa4\xb8\x8b\x56\x7f\x06\x89\xe3\x35\xfa\xf8\xfc\x1a\x0d\x22\x1c\x30\xdf\xd5\x68\x93\x3b\x64\x1b\x8b\xed\x79\xc2\x4d\x96\xbb\xbe\x81\x86\x73\xf9\x1e\x1d\x18\x48\xce\x2f\xe0\x7e\x8b\x1f\xe6\x64\x41\x38\xdb\x36\x71\x9a\xa0\xa6\xe5\xb0\x43\x3d\x27\x09\x41\x35\xa0\x46\xcf\x60\x8b\x35\x11\xe2\x7d\x21\x3b\x48\x47\x7b\x3d\xb2\xe8\x98\x52\x48\x85\x46\x37\xea\xae\xfd\x14\xe9\xa4\x3f\xa6\x66\x13\x9c\xbf\xe1\x2c\xfb\x61\xe0\x0b\x8a\x97\xd3\x28\x29\xf6\xd3\x92\x43\xda\x36\x85\xa3\x98\xbb\x4c\xf4\x77\x9c\x9f\x4c\xf5\x16\x98\x9a\xfd\x33\x0a\x47\x48\xb6\x4f\xaa\x11\xd0\x29\x44\x7d\x7c\x02\x76\xda\xc6\x5a\xbc\x59\x73\x00\xb4\x06\x98\x31\xd1\x3a\x6f\x39\x15\x92\x26\x37\xde\x83\x6d\xd3\xcf\xac\x30\x18\x45\x89\x52\xd9\x64\x71\xf1\x29\xe6\x61\xf2\x14\x47\x69\x1c\xe5\x83\x29\x85\x8d\xfd\x74\xec\x8b\x63\x0a\x2f\xa4\xec\xe5\x86\x56\x26\x5c\x26\x6c\x4b\xf5\xac\x19\x56\x46\x5b\x53\x20\x66\xbe\x6f\x6b\x8b\x01\xab\x53\x36\xfa\xa3\x34\x18\xc9\xa0\x16\xb4\x3c\xc6\x51\x70\x05\x87\x5d\x68\x20\x02\xb5\xf3\x32\x5c\xe6\x56\x87\x08\x40\xd6\x48\xea\x8f\xab\x3e\xd3\x90\x95\x50\x1f\xa4\xf5\x24\xc5\x63\x15\x0e\x64\xc8\xac\xe0\x90\x40\xfb\x20\x80\x80\x52\xc5\x16\x19\x3a\xe4\xc0\xba\x1c\x81\xe5\xe8\x58\x15\x29\x53\x1d\x35\x61\xde\x82\xc6\xb2\xb2\xd8\x10\xdd\xe3\x3b\xba\x0c\xff\x9b\x89\x5e\xeb\xfc\x7c\xdb\x66\x69\x97\xdb\xa7\xb8\x0b\xf7\x14\x2e\xe1\xa6\x5e\x4d\x6f\xb8\xf9\xef\x28\x2d\x33\x81\x87\x30\x64\x6f\xac\x30\x93\x37\x54\x6f\x79\x68\x4d\x41\x83\x13\x24\x12\xc0\x48\xe2\xbb\x5d\x53\x48\xc8\xd3\x13\x67\xc3\xe1\x99\x17\xab\xd3\x2c\x4a\xc2\x98\x7a\x2a\x74\xe7\xd0\x31\xf8\x50\xcd\x72\x3f\x04\x6c\xa1\x3e\xe7\x5b\x7d\xa6\xa5\x14\x9d\x41\xe2\xe0\xd7\xda\x62\x27\xca\xc2\x18\x30\x2f\x04\x3a\xbe\x59\x6c\xa2\x86\x80\x85\x18\x05\x93\x00\x91\x62\xd9\xb9\x3f\x66\x0f\xb5\x97\x4c\xb2\xec\xd0\x80\x08\x11\x97\xb5\x48\x27\x7d\x62\xb1\xb1\x99\x00\xdc\x1c\x68\x87\xd9\x5a\x5e\x98\x98\xd6\x33\x72\x2e\xdc\x1d\x7e\xad\x40\xc9\xd4\xd7\x9d\x9a\x74\x22\xc1\xc2\xff\xfe\xd8\x37\xdb\xce\xaa\xb5\x39\xca\xd2\x51\x55\x64\xc2\xa7\xcd\x9f\x88\xbe\x9b\xcf\x64\x75\xfe\x07\xe4\x34\xc2\x2c\xfd\x2c\x3a\x54\x92\x66\xc5\x80\x8e\x7e\x67\x86\xe9\xd4\x25\x8f\xd5\xc4\x44\x54\x95\x96\x59\x13\x53\x76\x85\x0e\xab\x43\xf4\x39\x20\xc4\xf1\x09\x0c\xf3\xec\xa1\x76\x37\xca\xec\x54\xb5\x93\x44\xc0\xb6\xe5\xfc\xfa\x1e\xe8\xf8\x81\xe1\xf4\x7a\x83\xc5\x9a\x1d\x2e\x65\x26\x94\x35\xe4\x1a\x84\xd5\xd7\x95\x06\xe1\xce\xfa\xec\x1f\xb6\x5f\x36\xe1\x72\x9e\x82\x7b\xca\x5c\x22\x37\x9d\x76\xc5\xce\x85\x9a\x73\x58\x13\x4a\x27\x1f\xb8\x2e\x09\x32\xc4\x1b\x4a\x91\xe7\x86\xdb\x51\x43\x63\xf3\x22\x4b\x5b\x0a\xb6\x19\xd4\x74\xd7\x1b\x00\xcb\x51\x52\x98\xa4\x1f\x89\xf5\x14\x8b\xc5\x29\xcb\x9c\x49\x3b\x2d\x6e\xdc\x53\xf7\x43\x2b\x8f\x6d\x8d\x6b\x58\x63\xdf\x99\xa0\x1d\xd8\xb7\x49\x49\x88\x79\x07\xba\xdc\xc0\xfa\xe0\x0b\xc5\xb3\xcd\x57\x6d\xd7\x26\x14\xbe\x91\x1d\xa3\x52\xe1\xd7\xde\x28\x48\xfa\x8d\x7c\x6b\xb0\xea\xb6\xa8\x9b\xc9\xaf\xd5\xd1\x3b\x8c\x70\x92\xa3\x5d\xcb\x03\x5b\xbe\xd0\x6a\xbc\xb1\xc9\xf3\x28\x04\x20\x9c\xad\xb7\x71\x13\xb5\x0f\xb7\xa3\xc3\x3b\x04\x45\x53\x02\xf1\x2c\x94\xad\xf1\xe9\x78\xdf\x6b\x01\xc2\x0b\x93\x56\x7e\xb3\xed\xae\x2d\x8b\x3c\x1c\xc0\xc1\x08\x0d\x84\x7b\xc8\xf9\xf8\x62\xac\x50\x5e\x4b\x36\x63\x71\x23\x69\xcc\xd2\x4f\xf2\xc5\xc4\x82\x64\xad\x76\xf2\x7d\x04\x17\x7d\xde\x63\xa3\x16\x1d\x4e\x4a\x75\xde\x13\x47\x51\xc1\xdd\x67\xa3\x1e\xbe\x98\xa8\x9c\xe6\xe7\x09\x9c\x24\xbb\x04\x9f\xf8\x5d\x05\x10\x7b\x57\x61\x8e\xd9\xad\xc9\xc4\xfb\xf0\x17\x70\x53\xa6\x80\x9a\x43\xd4\xb8\xa9\x32\xa4\xff\x9d\xee\x3c\x56\xd7\x35\xfa\xb8\xd2\xda\x56\xe0\x9b\x9b\xb8\x01\x98\xb4\x35\x0e\x55\x7b\xd5\x52\xcc\xa6\x3c\x6a\x95\xc9\xfb\x0e\x3d\xeb\xd8\x25\x53\x9d\x27\xd5\xac\xd4\x57\x44\x4a\xa8\xe3\x24\x84\x81\x71\xce\xb1\x3a\x24\x36\xf8\x8d\x26\x65\xd0\x30\x8b\x46\xa3\xd8\xe1\x88\xa5\xaa\xae\xde\x4f\x8a\x6a\xbf\x12\x47\xb1\x01\x7a\x5b\xd1\x39\xf5\x20\x60\x72\x60\x5f\x45\xb8\x34\xee\x66\xe5\x90\xa1\xa3\x68\xc7\x7d\xaa\x24\x48\xf6\x75\xf4\xce\xde\x81\xa5\x9c\x9b\x6b\x1f\x98\x7d\xdc\x4b\x0e\xb7\x3a\xaa\xb1\xf6\x07\x63\x65\x60\x7f\x0e\xb9\x82\xd8\xc3\x28\xb6\xff\x4d\x4a\x91\x65\xc0\xad\x38\x3c\xf7\x77\x5c\x5d\xbe\xff\xd2\xd8\x4b\xf7\xdf\xa3\x92\x44\x12\x21\xfa\xd8\x02\x0d\xa1\x47\x89\xaa\xf6\xaf\x28\x01\x72\xd2\xcc\x55\xd6\x82\xb2\xee\x44\xa0\xb4\x9d\x45\x68\x56\x1c\xff\x7d\x07\xb5\xb5\xae\x65\x94\x28\x44\xc8\x58\x43\x8d\xb0\xbb\xd6\xdc\x47\x1f\xd9\xad\xac\xea\xbd\x45\x7c\x95\xfe\xaa\x48\x5b\xe8\x7d\x46\x59\x34\xee\x12\xd0\x19\x28\xfb\x30\x36\xc7\x37\xdb\x85\x7c\x5c\xe2\x8d\x07\xae\xbd\xa3\xd4\x2a\x47\x51\x7f\x5a\x29\x04\x5d\xc0\x7a\x42\x8b\xf2\xe4\x58\x23\x2e\x55\xef\xf2\xa4\x9a\x0b\x66\x36\x4c\xb3\x6e\x94\xf4\xf7\x68\xf6\x01\xde\x46\x6c\x6c\xaa\xcf\xe7\x44\xbc\xdd\x86\xfa\x7d\x9a\x54\x08\x2f\xe0\x91\x5a\x1b\x23\x4d\x1e\xa8\x42\x31\x3b\x25\xe0\xc8\xc3\x6a\xba\x43\xcf\x11\xb5\xe8\x1b\xf4\xa5\x50\xd7\xfe\x04\x37\x0e\xdf\x76\x5b\x51\x20\x8f\x06\x1e\x3b\x72\x52\xeb\x6c\x1c\xc5\x33\x95\x07\x47\x0b\x0a\x07\x33\x6b\x3a\x60\xb4\xf3\xfd\x06\xbb\xeb\xd9\xb6\x4d\x56\x6c\x9c\x8e\x6c\x8d\x13\x01\x44\x89\x78\xfb\x4b\x9f\x36\xcc\xd0\x89\x47\x46\xf5\x91\x16\x04\xfd\xa8\x51\xf8\x29\x4e\x73\x5b\x20\x9a\xa1\xe7\x78\x5d\x59\x50\x5c\xaf\x32\x12\x39\xb4\x6c\x52\x44\x80\x9d\x1c\x9e\x11\x1b\xd9\x40\x01\x5f\x2f\x2a\x67\xed\x77\x70\x17\xe5\xb4\x75\xfe\x1f\x66\x38\xb2\xa6\xdc\x53\xbd\x03\xa3\x83\x79\x45\xab\xc9\xd6\x41\xf7\x4f\xd5\x07\xc1\x28\xf1\x2f\x03\x95\x27\xb5\x3a\x0d\x92\xae\x79\x62\xfa\x1c\x15\x44\x84\xbd\xd6\x64\x9a\x77\x52\xdc\x0d\x64\xc5\x83\xed\x7e\x2c\x6d\x63\xee\x01\x07\x8a\xa7\xb3\x51\x6b\x98\xa4\x4b\x39\x50\x25\xe8\xf4\x01\x13\x8b\x0d\x05\x4c\xac\x90\xcc\x6a\xaa\x8f\x5a\xb0\x57\xa1\x78\xf3\x38\x1a\x0e\x2d\x44\x17\xb4\xde\x95\xb8\x45\x49\xe7\x6f\x60\x57\xa5\xb0\x14\xad\x4c\xff\x98\xce\xeb\x9a\x67\x53\x9d\x6e\x26\x1f\x4e\xf9\x19\xc6\xf5\x1a\xf3\xc6\x1f\x30\xef\xd7\xbe\x5e\x96\xdb\xfb\xb4\xc9\x0f\x3e\xb9\xb3\xbd\x98\x3d\xc4\x41\x06\x3e\xb1\x4e\x97\xa4\x5a\xd0\xd8\x34\x1b\x9a\x70\xbc\x10\x78\x64\xe2\x75\x84\x32\x9c\x76\x6f\x8d\x7d\xe6\xfe\x27\x2a\x8d\xf9\xa5\xf2\x08\x65\x06\x68\x5b\x70\x37\x88\x2f\x1a\x80\x81\xb3\xa4\xf1\x5d\x2d\x4c\xd5\xc7\x83\x25\x00\xbf\x6e\x48\xef\x0e\x52\xfb\x93\x89\x77\xb3\x9c\xa0\x5d\xc3\x5a\xe6\x0b\x45\xf0\xca\x6d\x58\x66\xb6\x3b\xe5\xb1\x10\x67\xe8\xfd\x1d\xd0\xd5\x11\x8a\x2e\xba\x92\xbe\x6b\xb2\xe5\x78\xad\x6e\xa0\xe6\x85\x67\xd4\xa4\xf9\x56\xb0\xb3\x32\x7b\x6e\xbe\xbd\xb4\xdc\xf2\x43\x87\xdf\xd0\x72\x88\xbf\xa1\x3b\xb0\x50\xd3\x8b\x92\xfe\xb4\x47\x85\xfe\x31\x8e\x24\x2c\x85\x9b\x4a\x11\xf1\x7d\xa5\x2a\xb1\xd5\xc4\xe6\xb1\x6b\x12\x5f\xdc\x21\xa2\x1c\xe4\x9b\xbc\x92\x7b\x51\x66\x35\xb2\xf4\xac\xd6\xbf\x0c\x1a\x0c\x71\x16\x17\x5a\xb5\xf3\xdd\x37\x39\xb6\x6a\x46\x8a\xd1\xf2\xf2\xde\xd6\x57\x05\x4f\xf9\xb6\x22\xb7\xdd\x51\xb2\xaa\x1f\xd3\x37\x12\xdb\xd2\xea\xe9\x48\x57\x8e\x6e\x98\xb4\xe5\x7c\x57\x14\x6c\xcb\xbd\xb4\xb1\x9d\xbe\x9a\xdb\x11\xe7\x91\x05\x3b\xda\x81\xa3\x0a\xdd\x4f\xc7\x1c\x4e\xfc\x3d\x38\x66\x27\x65\x93\xfb\x69\x94\xf4\x1f\xf6\xca\xfa\x77\xd4\x79\xc3\x09\x1c\x0e\xa5\x6f\x04\x94\x51\x21\x4f\xf8\x11\xce\x5c\x27\xf3\xe8\x18\x4f\xb7\x68\xd8\x83\xf0\x79\x3d\x50\x89\x09\xbc\xdc\x70\xe6\xde\x52\xa3\xad\x87\x61\x7f\xc0\x96\x67\xeb\xb4\x1d\xc5\xff\xac\xfa\x2a\xce\xe4\x6d\x71\xe6\x20\xa7\x35\x1f\xa8\x35\x4e\x82\x64\x79\xa1\x2c\x61\xde\x51\xce\xd7\xef\x34\xcf\x3b\x93\x24\xb2\x7f\x9b\xe4\x96\x40\x34\xab\x32\x16\xde\x78\x48\xab\xaf\x06\xca\xd7\xe9\x13\x95\xbc\xb1\x33\x20\x76\xc6\x9d\xc0\xc3\x3d\xb7\x26\x34\xdc\x1c\x1a\x32\x33\x4a\x08\x14\x08\x8b\x6f\x69\x9c\xd9\xb7\x7c\x9b\xad\x8c\x63\xd6\xa1\x17\x17\x36\xe5\x06\x3b\xdd\x51\xba\x63\xb7\x54\xf3\xff\xe5\x74\x90\x80\xd4\x2b\xc1\x4a\x09\x17\xfd\x89\x22\xb1\xe7\x65\xdf\x64\xd3\x5e\x93\xf0\xaa\x82\xbf\xbe\x11\x28\x03\x6f\x24\xfd\x82\xdb\x6f\x16\x9c\x4c\x73\x09\xf7\x2c\x7b\x41\xbf\x53\x53\xcc\xc3\x8e\xf8\xad\x06\x24\xf6\x62\xbb\x1c\x8d\xd8\x78\x1a\x9f\x05\x0e\x82\xfc\x7a\x62\xce\xba\xf0\xfc\xc1\x76\xba\xf4\xb2\xa5\x5c\x48\xea\xa1\xda\xda\x15\xea\x98\x47\x5d\xad\x0e\x6c\x31\xb0\xd9\x43\x9e\xcd\xcb\x2a\x50\x8e\xd1\x3e\x37\xc7\x5f\xfe\xa6\x1a\x21\xdd\xd2\x16\x04\xef\xe8\x62\x06\xd2\x68\x38\xaf\x3f\x45\xeb\x9e\xb3\x25\x85\x98\x38\x8a\xc4\x8b\x45\x49\x69\x2f\x88\x89\x16\xcd\xe7\x91\x73\xbe\x86\x75\x84\xe6\xf0\xff\x5c\x55\x01\x58\xe4\x2b\x36\x5b\x1d\xd8\x78\x48\x09\x64\xf5\xe3\x4e\x86\xdb\x81\xcf\xff\xae\x36\xb8\x7b\x64\xbd\xf5\xcb\x5f\xe1\x64\xf7\x3d\x65\xa6\x7d\xcf\xad\xa9\xb8\x1c\x8e\xea\x7c\xbc\x8b\x81\xe2\xe3\x4d\x0a\x9d\xcc\xcf\xb7\x97\x22\x3e\x77\x90\xbb\xa1\xf1\xc6\xaf\x9b\x7a\xab\x6b\x69\xc9\x6c\x13\xc4\xa3\x37\xb5\x68\xf9\x9b\xaa\x0d\xb1\x54\x66\xd6\x94\x61\x66\x8a\x28\x24\x91\x5f\xcc\x31\x5e\x55\x32\xb7\xaf\xaa\x6a\x60\x98\xae\xd8\x07\x69\x59\xa2\x17\xf5\x60\xc7\xaf\x97\xb7\x28\x7c\x21\xb4\x30\xc3\x0e\xc7\xf6\xfd\x64\x44\x26\xa9\xbd\xdf\x73\x7b\xa1\xc8\x8a\x8d\xb5\x1b\x23\x52\xe4\x06\x37\xb5\x9e\xd3\xd5\xb1\xe2\x42\x7f\xea\xbb\xf3\xbf\xf4\x28\x8d\x07\xd0\xda\xda\x3d\xa1\xb2\x43\xb6\xfe\x44\xb6\xb3\x99\xac\x4f\x3c\xaf\xcb\x81\x62\x11\x5c\x56\x79\xc4\xa8\x84\x6c\x07\x36\x34\x92\x34\x2c\xc7\x4d\xac\x21\x19\x5e\xa8\xb6\x4c\x91\xc6\x36\x51\xd2\x89\x2c\x26\x85\x6a\x19\x84\x54\xfe\x07\x2c\x75\xfe\x87\x9a\x74\x62\x94\x66\x0f\x2a\x39\xd8\x16\xea\x22\x64\xb1\x37\xe8\x53\xe0\x4e\xfc\x73\x2d\xe5\x76\x5b\x3b\x2e\xfe\x3b\xc5\xe5\xff\x21\x91\xe7\xf0\xec\x78\xf0\x2c\xc9\x36\x2d\x71\x9c\x4a\x57\x68\x83\xa1\xc0\xff\x09\xdd\x54\x81\x0d\x2b\xb9\xfe\xb7\x5c\x16\x1e\x9b\x51\x91\x8e\x72\xed\x2f\xc6\x2a\x00\x1e\x36\xe4\x39\x2f\x5e\x30\x44\xcd\x01\xfd\xc1\xad\x86\x0d\x26\x36\xd9\x90\xba\x5a\xe2\x69\xe0\xc5\x99\xb7\x94\x4a\xe5\xb0\x97\x66\x5e\xc0\x40\x74\xd8\x5b\x4e\x80\xeb\x62\xd3\x08\xb4\x6d\x12\xb1\x68\x03\x9c\x81\xc0\x7b\x2f\x6e\x5f\x52\x7d\xb5\xd8\x94\x99\x45\x7b\x18\x07\xca\xc7\xf4\x09\xf8\xb5\xaa\xfa\x72\x9b\x98\x02\x1a\x81\xc2\x3e\xa3\x9b\x81\x0e\x0d\x37\x15\xdd\x4c\xd8\x11\xc3\x37\xd4\x93\xe1\xe6\x1e\xff\xc6\x44\x92\xf9\xd2\x4b\xed\x32\x19\x54\x0b\x96\xc3\x38\x3e\xc4\x3d\x45\x6e\x80\x8f\xa3\x24\x58\x4f\x28\x46\x44\x8f\x61\x19\xf9\x1e\x25\xcf\xfd\x1a\xfd\xaa\x68\xf2\xa8\x39\xd9\x19\xc2\x5e\x3b\xa5\x70\xa7\x72\x7c\x5a\x15\x02\x8b\xbf\x90\x03\xbb\x8e\x3f\xcd\xfe\x87\x04\xf2\x59\x7c\x74\x5d\xbb\xd7\xec\xa5\x65\x8e\xf4\xe4\xac\x6e\x60\x62\x28\x21\x31\xf5\x31\x35\x1a\x4d\xbb\x65\x58\xe4\x0f\xe1\x5d\x9c\x20\x81\x03\x09\x5e\x56\xe7\xe0\x63\x08\x13\x48\x85\x36\xc7\xf5\x3b\x73\x60\xd6\xf9\x1f\x54\xeb\xd9\x91\x5e\x0e\x7b\x2c\x02\xdd\x0f\x6d\x0d\x22\xfd\x53\xac\x85\xb1\x1a\x37\xff\x53\xdc\x23\x01\x01\x37\x74\xf2\x8a\xa8\x88\x25\x78\x8b\xb4\x3b\x7d\x3c\xbe\x70\x07\x47\x66\xfb\x51\x5e\x64\x1e\x0f\x27\x92\x0d\x7e\xd8\x7f\xf4\x33\xb5\x79\x7a\x11\xe8\x82\xca\x6a\x99\xa9\x19\x7c\xd1\x69\x30\x7f\xce\xec\xa8\x5c\x8a\xa3\xd0\xb8\xe3\x58\xe4\x19\xe8\x1b\x4a\x4d\x21\x19\x56\xd4\x8d\xed\x5e\xfc\x1c\xc6\x66\xe7\x94\x19\xfe\xe3\x1d\x0f\xfa\xbc\x81\x5b\x2e\x33\x61\xbf\x3b\xce\xe0\xd6\x49\x84\xdc\x19\x80\x17\x67\xda\xc3\x34\x89\x8a\x34\x93\xaf\xb2\x7d\x97\x30\x3d\x77\xd5\xa8\x28\x49\xb3\xa1\x89\xa7\xb4\x7a\x9d\x5a\xb2\x63\x6f\x23\x7c\xcd\xb1\x6a\x4c\x92\x94\x10\x6d\x53\xe0\xb2\x1b\x0a\xd4\xcf\xfa\x65\x48\x65\x8f\x2b\x4a\x77\xd7\x0e\x4d\xd2\xcd\x5b\xd5\xbb\xd6\x00\x59\x7c\xa1\xe0\x89\x89\x19\x12\x3a\xfc\x45\x37\x15\xa6\x3f\xc6\x17\xf4\xc7\x30\xac\xbd\x88\x74\x5c\xfc\xb0\xe9\xed\xd8\xac\x24\xf0\x2a\x10\x48\xed\xc5\xc4\xa4\x01\xe6\x13\xda\xa4\x10\x9a\x02\x7e\x8c\xb9\x22\x7c\xa1\x6d\x7f\x22\xc8\x63\xf8\x66\x26\x06\x27\x88\xeb\xaf\xd0\xfd\x43\xd2\x78\xb2\x09\x50\xe4\xe4\x09\xbd\x24\xa1\xd2\x2f\x7e\xbd\x21\xb7\x6c\x77\xa3\xb0\x30\x85\xa5\xd2\x54\x4d\x77\x17\x6a\x28\x0b\x91\x27\x79\x5c\x6b\xe2\x47\x49\x31\x88\x78\x9a\x8c\xaa\xeb\xb6\xea\x7c\xdd\x6e\xf4\x30\x1f\x9a\x3e\xe1\x48\x99\x8c\x29\xa3\x13\xdf\x97\xd3\x9e\xa1\xfd\x2c\x5d\x55\x86\x8e\x80\xac\x20\x22\xa0\x87\x2c\x2e\xd2\x93\x93\x88\x17\xab\x62\x34\x2f\x68\xed\x39\x37\x6c\x57\xda\x01\x56\xb0\xbd\x39\x81\xc1\x5c\x9c\x69\xe7\x16\x88\x78\xbc\xf7\xfb\x38\xf1\xf9\x62\xa2\xdf\xf0\xd4\x53\x54\x29\x45\x5e\x05\x8d\xa9\x4a\xf4\x8d\x84\xb6\xd4\x00\xd8\x97\x7e\x43\xcb\x09\xd0\x70\x33\x9d\x2f\x1a\xe5\x89\x63\x6b\x33\x85\xf6\xda\xdf\xea\xa8\x9e\x14\x06\x1a\x32\xc3\xf4\x8d\xe0\xa3\x4d\xe3\xeb\xbe\x29\xfb\x5c\xaa\xbb\xf4\xdc\x3f\x82\x26\x0e\xed\x52\x5a\x16\xd1\xd7\x4a\x74\x55\x70\x47\x5f\x57\x1e\x74\xaf\x2b\x38\xc2\x92\xc9\x6d\x6c\xf3\x5c\x89\x64\xbe\xa7\x44\x32\xdf\x73\x6a\x11\x61\x6a\xb3\x90\x42\xe8\xe1\x19\x77\xc2\xa8\xd3\x66\xe2\x26\x1c\x38\xd0\x8e\x6d\x31\x80\xa9\xf6\x8b\xae\xa7\xe9\xc7\x13\x50\x70\x41\x9a\x7a\x51\xd1\x7a\x6d\x5e\x44\x43\x53\xd8\xee\x83\x4a\x8b\xe2\xb8\xea\x8a\x5f\x0f\xb4\x70\x35\x13\xa6\xc5\x9e\xbe\xba\xb1\x18\x3d\x9e\x08\x5a\xbf\x24\xbf\x7e\x33\x50\x4d\x5b\x8e\xe0\x4e\x48\xce\xf5\xb8\x58\x8e\x0f\xe5\xf6\x5f\x8c\xc9\x14\x12\x67\xee\x35\xaa\x56\xe4\x96\x3b\x44\x9f\x71\x02\xb4\x28\x6a\xde\xc0\x1b\xf0\x85\xca\xc4\xba\xe9\x6a\x52\x94\x59\x32\xad\xa8\x8a\x6c\xf3\xce\x17\x58\xbb\xca\x98\x64\xd6\x49\x61\xf8\x19\xf7\xd0\x0e\xd3\xcc\x24\xdd\x92\x1d\xf4\x1d\x64\xdb\xc3\xb7\x1b\xa1\x2d\x79\x61\xfa\xd2\x30\x63\x59\x17\xba\x9f\x22\xf1\xd2\x30\xab\x89\x92\xc2\xf6\x25\x10\x8a\x66\x71\x4b\x89\x19\xfb\xe6\xf2\xc0\x0c\x97\x32\x1b\x0e\x10\xca\xc4\xc5\x4b\x95\xf1\x1f\x29\x78\x55\x98\x0e\x47\x44\x20\x6e\x39\x45\xc9\xd3\x4a\xf4\xf4\xf4\xce\xb1\xcf\xe1\x99\xf6\xe2\xcc\x17\x28\x9a\xa3\xb5\xf0\xe7\x0c\xf3\x66\x39\xfe\xb1\xe2\x8a\xa0\x2d\x89\x45\x7e\x77\xac\x5c\xcd\x6e\xeb\x56\x0d\xbb\x87\xe3\x7b\x3c\xb0\xee\xf5\xa5\x2f\x51\xdf\xc6\x75\x43\x16\x66\x0f\x39\xe8\x71\xeb\xcb\xbf\xc2\xcb\xe2\xff\x21\x83\x4d\xe4\xf1\xdf\x47\xdd\xca\x98\x47\x05\x0b\xdb\xd5\x69\xbd\xb0\xe0\xdc\xfc\xfd\x32\xdf\x46\x06\x80\x7f\xf8\x06\x25\x4d\x00\x87\xbc\x87\xe4\x08\x25\xed\x9d\xa0\x75\xe8\x79\x39\xe6\x71\xf8\x30\xf5\x16\x3d\x58\xd4\x20\x2d\x6d\xda\x0f\x18\x9d\x70\xec\xb1\x3d\xf0\x79\xff\x4f\xea\x5d\xe2\x18\x9a\xee\x78\xf3\x9b\x63\x0d\xa1\xe6\x60\xbb\x5b\xc6\x78\xe2\x8e\xf4\x57\xdd\xdd\xcf\x12\x5d\x3d\x3c\x03\x03\xfc\x5e\x14\xee\xf1\xec\xb7\x87\x08\x20\x86\x9b\xc2\x48\x49\xa8\xa3\xbe\x43\x77\x02\x5f\xfe\xe6\x58\xb5\x93\xbd\x75\x60\x55\x27\x7c\xad\xc4\x10\x93\x69\x3e\x0a\x25\xf9\x83\xc0\x77\xc3\xae\x38\xd2\xf3\x6a\x94\x74\x99\xad\xe5\xc9\xc3\x5b\x4a\x62\x6f\x92\xcf\x76\xe0\x00\x33\x71\xa7\x3d\x41\x9b\x3b\x75\x48\xa4\x31\x29\x03\x29\x19\xd4\x15\xb1\x4d\xf3\x69\xb9\x7d\xd9\x4c\x51\x47\xce\x75\x44\x1d\x06\x07\x62\x14\x82\x6a\x6c\x82\x28\xc4\xd1\x92\xcd\x0c\x68\x14\xc8\x65\xd0\x58\xaa\xf1\x1a\xc4\x1e\x63\x27\x0a\xf6\xd0\xf3\xb4\x3d\x49\xb2\xae\x34\x31\x60\x0b\xf8\x80\xb7\xb5\xc2\xff\x6d\x17\xa9\xc2\x81\xc9\x71\x8a\xa3\x57\x81\x42\x81\x5f\xaf\xfb\x2e\xeb\x4a\x64\x04\x6c\x21\x28\x00\x05\x0b\x9a\x58\x32\x2f\xbd\xd4\x26\x10\x23\x94\xcb\x45\x2d\xd3\x6f\x42\xa0\x6b\xd1\x6d\x03\x5a\x66\xfb\x52\xd3\xc3\x58\x25\x0a\x93\xf6\x11\x3f\x86\x9d\x22\x38\x32\x25\xbf\x3c\x8c\xf2\xbc\x3a\x54\x7c\xbf\x17\x3b\x0c\x1b\x09\x02\x2e\x28\x85\x9b\x96\xf8\xc2\xc1\xb6\x19\xc1\xcd\x42\x0e\x2e\xba\xd5\xd8\x20\x47\x79\xeb\x20\xb6\xbc\x3a\xd1\x00\xfa\x52\x7b\x95\x3c\xc6\xaa\xdf\x00\x94\xf0\x56\xe0\xed\xd4\x4e\x8f\xc9\x13\x18\xf9\xc7\x46\x83\x60\xcc\xb3\xd0\x19\xec\x47\x24\xf7\xe9\x9a\x92\x48\x40\xf8\xb5\xab\x5b\x08\x05\xb5\x54\xe6\x85\xcd\xf2\x69\xed\xfa\xff\x6f\xf0\x88\x71\x64\xbd\xa3\xa0\x6c\x17\x35\x00\xf3\x44\x83\x03\xd9\xb3\xed\x51\x16\x85\x22\x7f\x22\x62\xbb\x3e\xad\xf9\x9f\xb4\x7b\xdf\x30\x15\x19\x46\x19\xe1\xdc\xa1\x6a\x8e\x5f\x37\xc0\x37\x5e\xa4\xa9\x06\x79\x58\xd4\xf0\x40\x68\x25\xc8\xea\xf0\x10\x0b\x13\x87\xe9\x20\x8d\xa3\x90\x7e\x78\x9b\x76\xfa\xf6\x25\x5d\x26\x64\x26\x2c\x63\x83\x75\x81\x8f\x78\x13\xfa\x94\x7c\x81\x07\x84\x2a\x0a\x2e\x0f\x51\xd2\x8f\xd7\xf6\xf9\x99\x03\x64\xc3\x04\x6f\xe4\x47\xde\xec\xd6\xe6\x6c\xc4\x3d\x17\xec\xcf\xc9\x06\xcf\xf9\x98\x79\xb3\x8b\xbb\x4a\x5e\xb8\xba\x8f\xac\x01\xae\xe4\x40\x5e\xac\x3b\x52\x6a\xf7\x7c\x61\x35\x39\x78\x4c\x5c\x8a\xfa\x9d\x1c\xf4\xc7\x74\x0a\x70\xac\x51\xfb\x2f\x7f\x66\xd4\xaa\x29\x79\x8c\xb5\xc8\x47\xe0\x87\xf5\xc5\x4a\x8e\x54\x43\x1c\x62\x14\xe2\xe5\x02\x3d\x0e\xfe\x07\xdc\x06\x19\xe9\x3f\xa4\xe0\xb3\x4f\x3d\xf5\x05\xcf\x62\xba\x1f\x56\xb8\xe8\x52\x9d\xc3\x31\x24\x0a\xad\x4a\xb3\x7d\x2b\xa8\xee\x1d\x9b\xdf\x2a\x2f\xf5\x93\xd4\xd9\x40\x40\x87\xcc\x2f\x7a\x5c\x1f\xd3\x8a\x72\x56\xdb\x07\x9c\x23\x04\x9f\xf1\xca\xeb\xe4\x45\x6e\x8c\xec\xa6\x1e\xa6\x43\x3c\xff\xe2\x0b\x1e\xf4\x50\x9d\xa0\xb8\xe7\xec\x24\x85\xc6\xa2\x80\xe2\xf1\xe1\xef\x61\x01\xe1\x1b\xef\x5a\x57\xbe\x2c\xbb\x3a\xad\xaf\xca\x74\xe8\x6f\xe8\x94\x67\xba\xa2\x12\x74\xe1\xfb\x85\x43\xe2\x2a\x56\x07\xda\xa6\xac\x49\x80\x13\xfc\x32\xf2\x0d\xfc\xce\x65\xca\x1e\xd8\x92\xb0\xa9\x95\xb1\x12\xd9\x55\xe1\x7f\x09\x43\x5a\xa5\x6a\xe7\x1a\xfa\xca\x07\xe9\xd4\xc3\xe6\xe4\x65\x8b\xa3\x5a\xd6\xb0\xab\xd1\x87\x4b\x65\xec\x98\x12\x38\x9d\x00\x2e\xe5\xd7\x13\x1f\xe8\xe9\xba\x26\x2f\x32\x38\x10\xb1\xf8\xb5\x2a\x81\x97\x4c\xb7\x6f\x39\x48\x38\xec\x9a\xd7\x58\x7e\xaf\xf1\xa3\x87\x86\x1d\x65\x30\xc1\xde\xd0\x0a\x28\x1b\x13\x95\xf2\xdc\x5c\x7b\x64\x93\x5c\xba\x37\x68\x48\x70\xa8\xe3\x0b\xc5\x6e\x27\xbe\x99\x49\xa8\x48\x76\xba\x12\x37\x14\x36\x95\xf7\xba\xd4\x0e\x6e\x3f\xda\x38\xb2\x2b\x76\x7f\xcb\xb1\xc7\xef\x5f\x57\xee\xd1\xc7\x75\x33\xed\x67\x40\x27\x94\xa0\xeb\x01\x52\x6f\x28\xb1\x53\x1e\xe3\x89\x60\xa1\x97\x07\xdb\xd3\x69\xc2\xe2\xe5\xa3\xcc\xe2\x19\x39\x7a\xb4\xa7\x4a\xbb\x22\x2c\xcd\xba\xc6\x43\x85\x45\x11\xb6\xe5\x94\xaa\x37\x34\x7a\xdc\x64\xf1\xda\xc3\xb4\x29\xd8\x7c\x10\x27\x1d\x32\x8c\x4f\x70\x1b\xd8\xec\x9c\x88\x07\xdc\xda\x0e\x3c\xcf\xe5\x3b\x2a\x75\x3d\x1e\x28\xf1\x31\x54\x0f\x28\x99\x2f\x23\x6f\xc2\x71\xf4\x1a\x20\x67\xf2\x60\xab\x1d\xcd\xfe\xae\xf4\x29\x31\x75\x07\x47\x17\xd9\xfc\x19\x2c\x17\xf4\x8e\x36\x9a\xe4\x8c\x33\x9b\x97\x59\x5f\xc8\xe3\x0c\x56\x56\xe2\x9f\xa7\x6a\x00\x88\xb0\x04\x7a\x4e\xdc\xd6\x5a\x4a\x0b\xad\xfa\xab\x72\xcf\xe4\x8e\x92\xa7\x64\x52\x93\xa5\xe0\x9d\xcc\x17\x9d\x07\xfd\xcc\xc5\xf0\x8e\x13\xe6\x9f\x07\x22\x8f\xd4\x24\xa7\x18\xa4\x59\x5a\xf6\x07\x4b\x19\xf7\x0c\x9a\xda\x0c\x3e\x54\x3f\x95\xf1\x20\x07\x11\xe2\x13\xdc\x4e\xe7\xb3\x52\x3d\x25\x49\x50\xbd\x10\xef\xef\x8f\xd5\x48\xf6\x83\xb1\xcf\x41\xb0\x1c\xf1\x0b\x57\x95\x82\xf1\x77\xe9\xdb\x8b\x2e\x0e\xad\x0a\x21\x49\x53\x30\x47\x77\xec\x6d\x8a\xcd\xc0\xd5\x4f\xad\x2b\x30\x64\x16\x15\x05\xc9\x2a\x56\x1f\x01\x69\x31\x60\xaf\xfc\xba\xc9\xa0\xba\x5b\x0e\x87\x6b\xea\xbe\x9e\x54\x9d\xc1\x93\x6e\x08\xb7\x3a\xb0\x56\x52\x77\x59\x05\xf4\x89\xf8\x62\xa2\x8d\xb3\xf0\xfc\xc1\xf6\xd0\x66\xe1\xc0\xd4\xdc\x2a\x2f\x2a\xb7\xca\x8b\x6e\x5b\x47\xc3\xaa\x60\x8e\x15\x22\xe3\x96\x12\x53\xbd\xa5\xb2\xf9\x7f\xf4\xb3\xff\xa8\xe5\x87\x47\xdc\x22\xe0\x8b\x8e\xff\xb1\xd0\x40\xea\x1c\x77\xfb\x2e\x1d\x13\x22\x22\xe6\xcf\xbb\x4d\xd5\xce\x48\xb3\xbe\x21\xea\xec\x94\x47\x8e\xc3\xfb\x09\x07\xd2\x1f\xd2\x3d\x47\x2a\xbe\xa1\x3a\x33\x51\x92\x17\x51\x12\xe2\x3b\x72\x77\x83\xbe\xa3\x74\x3a\x04\x69\xbc\x6a\x0a\x9b\x85\x69\x9c\x66\x3a\x40\xe2\x38\x90\x68\xe9\xbf\x40\x99\xa7\x8a\x15\xf3\xca\x58\xe5\xb2\xaf\x28\x7c\x67\x9e\x66\x85\x24\x8a\x35\x01\x18\xa9\x05\x1b\x1a\x86\x3d\x93\x87\xd4\x30\x14\x96\x80\x00\xb0\xfc\xf8\x4e\x0b\xc3\x5e\xa9\x6d\x5c\xf3\x0c\x0b\x9d\x22\x4a\xfe\x47\x3e\xb4\xf9\xaa\x46\x67\x4a\xc2\xc1\x1e\x3f\xed\x7c\x95\x56\x3f\xfa\x67\x1f\xd0\xbd\x44\x19\x7a\x5a\xb9\xc2\x9c\xd6\x5a\x19\xbb\x3a\xb2\x3a\x7a\x99\x25\xeb\x5f\x5f\x84\x3d\xd0\xf1\x61\x6a\x1f\x0e\x00\x9c\x93\xc7\x94\xa1\x58\x38\xb0\xc3\x28\x34\x71\xbe\xaf\xca\x6a\x90\x20\x7d\x5b\xff\x85\xbf\xa2\x8f\x24\x24\x3c\xcf\x57\x3d\x83\x87\xa2\x60\x57\x82\x66\x40\x8b\x14\x63\xf2\x5d\x1d\x65\xbe\x37\xb2\x36\x1c\x90\xa9\x93\x83\x7e\x39\xd1\x86\x8b\x0d\x8d\xc7\x36\x05\x4b\x36\x76\x44\x49\xc1\xce\x23\x42\x58\x53\xf3\xcd\xc9\x06\x38\xe8\x8a\x83\x28\xee\xee\x64\x15\x1f\x74\xac\x62\x6f\xb1\x9b\xd8\xb2\xc8\x88\xdf\xcd\x5a\x2f\xa0\xeb\xde\x55\xce\xd8\x77\x1b\x31\x91\xdd\x74\x35\x21\xd7\xe5\x96\x8f\x37\xb7\x94\x43\xd4\x2d\x2d\x47\x61\x92\x65\xd3\xf2\xde\x4c\x67\xb4\xec\xf4\x19\x85\x71\x8c\x92\x2e\xe9\x0b\x00\x25\x22\x1f\xbd\xe5\x14\x19\x8f\x8e\x95\x96\xdf\x5f\x4d\xe4\x3d\xe4\xd9\x65\x4d\x5d\xf4\xe5\x7c\xa0\x2c\x8e\xbd\xf5\x54\x66\xf3\xa8\x9f\x28\xb6\xc0\x09\x15\x55\x4e\x34\x89\xb8\xf9\x0f\x47\x1f\x02\x69\x22\xe4\x33\x90\xa3\xd4\xec\xa3\x4f\x39\x48\x68\xd7\x2e\x71\xc6\xef\x38\x2c\xd5\xb7\x17\xda\x8a\xc2\x22\x0e\x4d\x1c\xdb\x6c\xaf\x27\x1f\xed\x55\xc2\x58\x0f\xaf\x2b\xca\xfa\x3b\x5a\x38\xf6\x9d\xb1\x6a\x7b\x60\x26\x20\xde\x24\x3b\x9f\xdc\xdc\xdc\x22\x7d\xf3\x38\x92\xd3\x18\x7f\xe8\xa7\x6a\xec\xf0\xd3\xa6\x9a\xbb\x9d\xdb\x68\xa9\x55\x03\x98\xd4\xc8\x18\x8f\xbb\xc3\x38\x4c\x93\x3c\xca\x69\x2c\x42\x9f\xb1\x21\xb4\x4e\xa4\x94\x55\xe1\x19\x5b\x90\xd5\xfd\x90\xc2\x0f\x2c\x3e\x13\x7e\x44\x79\xae\xcb\x8d\x91\xf2\xdc\x0d\x94\xb9\xc6\xdd\x89\xd6\x4d\x75\xf8\x14\x65\x36\x4c\x23\x4c\xaa\x45\x41\x48\xf1\xe5\xb6\x1c\xec\x73\xc9\x24\xcb\xf9\xb4\xcf\x94\x8e\x8d\x35\xde\x6a\x3f\xb6\x25\x40\x5a\xd7\x75\x9b\xef\x91\x75\xbf\xfa\xf3\x55\x3b\xc2\x11\x80\x93\xf6\x2c\x42\x08\x5f\x34\x62\x2a\x47\x6e\x40\xef\x1a\xdb\x67\x95\x78\xda\x59\xd7\x61\xe8\x46\x2b\x51\x1e\xad\xd8\xc4\xe6\xbc\xe8\x75\x27\x4b\xe0\x02\xbe\x1c\x37\xab\x26\xeb\xb2\x94\x03\x1e\x46\x0b\xa3\x68\xbe\x58\x7f\x5c\x1d\x5e\x52\x8d\x13\x5c\x18\x77\xe6\x0c\x96\x1a\x5f\x04\xbe\xab\xf6\x16\x00\x56\x4e\x78\xc3\xcd\x7e\x3e\x52\xa4\xaa\xd0\x66\x05\x51\x7e\xf7\x55\x4b\x1c\xeb\x95\x38\x99\x2f\xca\xb4\x91\x38\xff\xd2\xf0\xf5\xca\xba\x77\xd0\x5b\x15\x1c\x75\xf5\xee\x80\x35\x70\xe1\x21\x6e\xd7\xde\xda\xbd\x6b\xd6\xf2\x47\xb4\xf7\x09\xee\x08\xce\x1b\xb6\xc8\x13\xcd\x6e\x6f\x21\xfd\x76\xa0\x58\xd1\x14\xa6\x6b\x70\x7c\x20\xd5\x30\xf9\x01\xcc\xf2\x12\x7d\x60\x1c\xd1\x57\x91\xd0\xe9\xe6\xbc\xd8\xb2\x2a\x69\xe6\xf3\x48\xaf\xc5\x34\x92\x3e\xbe\x40\x47\x7d\xf7\xf0\xfa\x44\x6f\xe6\xb9\xf9\x76\x62\xfb\x69\x11\xd1\xe1\x8c\x58\xad\x59\xfb\x02\xb4\xae\x61\x61\xb2\xee\x3e\x5f\x8f\xb0\x66\x88\xae\x79\x10\x55\x2f\x61\xb2\x82\x4c\xe9\xb8\x16\xc3\x60\x59\x4c\xfe\x97\x40\x65\x04\xef\x3b\x3c\x49\x75\x10\xf4\x33\xe3\x67\xec\xb8\x33\xbf\xad\xc0\xa8\xbf\xad\xda\x2e\x3d\x1a\x52\xef\xa3\x8f\xe2\x3a\xea\x55\xb2\xa8\x9d\x58\x98\xb2\x4d\x55\xbb\x32\x9f\x3b\x58\xe7\x08\xf0\xaf\xe3\x86\x4a\xd4\xd0\x59\x46\xd7\xe6\x9f\xf3\x92\xb8\x5b\x84\xd3\xc0\xbd\x66\xba\x04\xd2\xb7\x3b\x63\xd5\x21\xe3\xf6\x00\xba\x96\x6f\x62\x80\x84\x74\xed\x56\xe0\x9b\xe2\xaf\xd2\xa2\x61\xc1\x96\x40\x09\x67\xb4\x00\x12\xc2\xf7\xbe\x1e\x78\xd9\xa9\xab\x98\x8e\xe3\xa3\x3c\xd4\xc1\xd2\x74\xb7\xbc\xba\x6f\xa8\x33\xc1\xd9\x06\x50\xf9\xaa\x5a\xb3\xff\x2f\xdd\x0c\xfc\xf5\x87\xd6\x69\xb3\xe1\xac\xd2\xb8\x9a\x5e\x6c\x56\xd2\x6c\x5a\xa1\xbf\xe0\x76\x00\xe5\x8c\x4d\xb4\x34\x44\x1e\xbd\xe5\xcc\x75\x26\x03\xf2\xdc\x5c\x7b\x68\x5e\x4e\x01\x61\xc4\xc2\xfd\xb5\xb1\xc2\x48\xfd\x9a\x8a\x29\x45\x5a\x18\x12\x86\x75\x92\x28\xaf\x28\xd9\x80\x57\x94\x52\x68\xdc\xbd\xcf\x73\xe7\xee\x61\x39\xe2\x16\x3c\xb8\xee\x33\x87\x6f\x6b\xf9\x35\xc8\x35\xd1\x1f\x7d\xb6\x4d\x5e\xd2\xa2\x21\xa2\xd0\xfd\xdb\x7a\x82\xfe\x2e\x56\x8a\x28\x41\x3d\xae\x92\x8b\x82\xa0\x32\xb6\x0b\x5d\x35\xa4\x6a\x57\xc7\x5a\x26\xeb\x2a\xd6\xb8\x06\x48\x63\x95\x7d\xa2\x24\xb3\xbe\xa3\x94\x1e\x42\x93\x24\x29\x6b\x42\xc8\x49\xa2\x4e\x15\x95\x04\x99\x30\xea\x42\x37\x09\xb1\x16\xe0\x70\x00\xc5\x79\x6a\x89\x83\x64\xb3\x69\x80\xdd\xb5\xb1\x59\x93\xae\x01\x63\xae\x03\x8d\xbf\xde\x79\xcc\x2d\xce\xb4\xf3\xd5\xa8\x08\x07\x75\x9f\x1f\xa6\x67\xf3\x45\xe0\x6b\x9c\xc2\x66\x59\x9a\x45\xf9\x70\x5a\x5b\x9c\x8e\x5b\x5a\x55\xca\x41\xe1\x58\x70\x42\x66\x8a\xbe\x34\x89\x92\xe2\x61\x0f\xba\xdf\xd3\xf1\x10\xa1\x9b\x38\xf5\x10\xdb\x59\x78\xba\x66\x38\x89\x48\xbb\x1d\xa8\x77\x9e\x5a\xaf\x76\x99\xc4\x4d\x3f\x9b\x63\x50\x2c\x9d\xa0\x7f\xf6\xd8\x7a\x6b\x7e\x7e\xfb\xef\x75\x54\xef\xee\x6d\xae\x3c\x5c\x07\xb8\x5a\xf6\xee\x18\x78\x6e\xde\x89\xd8\xfa\xe7\x38\x34\xbd\xc8\x70\x17\x0c\xbd\xd8\x13\x4a\xb8\xec\x84\x32\xfd\xc8\xd3\x28\xae\x72\x40\xef\xfb\x79\x46\x29\xca\x7d\x32\xf6\x7e\x75\xdb\x9a\x6c\x97\xa5\x61\xc1\x90\x60\xf6\x11\xd5\x96\x64\x67\x1c\x22\xc7\xae\xd8\x6c\x6d\x29\xed\xae\x61\x91\x0a\xb2\x9f\x3e\x18\x6a\xbc\x63\x5a\xb1\x61\x73\xec\xf9\x25\xf7\x75\x3c\xb8\x6d\x52\x41\xaf\xca\x2b\xca\x24\x4e\x55\xa4\x16\xfb\xc3\xea\xd7\xc4\xf0\xd0\xe3\xa9\x57\xd3\x2c\x43\x1f\x1e\x47\xda\x29\xd5\xfd\xb8\x07\xd5\x72\x76\x5f\xa1\x85\x88\xd7\x47\xe9\xfe\xa2\x36\xb9\xa7\xad\x21\xc6\xdc\x0f\x16\xc3\x96\x9d\xb9\xfb\x17\xdb\x7f\xff\x2b\xff\x64\xe1\x2b\x5f\x9e\x27\x75\x78\xec\xc6\x4d\x45\x68\x07\xe1\x1f\xcf\x77\x4b\xf5\x5e\x86\xc5\x50\x0f\x9d\xd8\x6d\x8f\x2f\x82\xfb\xa4\x4c\x1c\xc2\xb8\x1c\xc7\xee\x9b\x5a\xe3\x09\x27\xa1\xd0\x9e\xb5\xd8\xea\x0f\x27\x58\xfb\xcf\xcd\xb7\xf3\x74\xca\x7b\xe5\x02\x5a\xa7\x4d\xba\x05\xa2\xf4\x59\xea\xc1\xc3\x34\x29\xfa\xe9\xd0\x32\xd9\x09\x2b\xf4\x1c\x96\x02\x5f\xb8\xc6\x56\x61\xc2\xa2\x2a\x52\x55\x9e\x0e\x1c\x94\x67\x45\xb9\x45\x39\x8a\x23\xce\xb7\xc5\xc6\xb2\xfa\x25\x7e\xdd\xa4\x05\x30\x34\x89\xe9\x5b\xf4\x1b\x24\x6b\xa3\x4f\x21\x7a\x69\x35\xa3\x85\x28\x67\x48\x7c\xcb\x0d\xf1\xb7\x14\x0e\xe4\x6e\x6d\xfc\xb5\x33\x75\x91\xef\xbe\x54\xd5\xb5\xec\xb4\x87\x00\xb4\x1d\x78\xa1\x23\x94\xc5\xf8\xeb\x17\x15\xf2\x29\x4a\x56\x6c\x5e\x0c\x6d\x52\x3c\x42\xe7\x1a\xb0\xcb\xf7\x90\x6f\x22\xfa\xb1\xcc\x0d\x26\x0a\x7c\x33\x9d\xaf\xb7\xb7\x3d\xa7\x75\x2e\x0d\xaa\x96\x33\x61\x61\xb0\xbb\x1b\x2a\x55\x0b\x1b\xb3\x4f\x7c\x24\x24\xea\x1f\xd4\x32\xff\x73\xba\xab\xc7\xda\xda\x78\x2a\xbb\xd6\x3d\x95\xec\x4f\x79\xcd\x23\x68\xbe\xb5\xd3\x5a\xa4\x2a\xab\x9e\xd9\xdb\x52\x4e\xf2\x55\x84\x45\x1c\xf9\x23\x05\x20\xbc\x41\x47\x3f\xbb\x12\x6b\x63\x4d\x7e\x62\xa2\xf0\xe4\x26\xf0\x50\xbf\x9e\x52\x45\xf0\xd5\x40\x09\x8f\x83\x83\x2c\xe0\xd5\x9a\x0f\xcf\x70\xd4\xa2\xfb\x2a\xba\xa0\x1a\x4b\xe8\xb9\x07\xb1\xc9\x3d\x6c\x0e\x69\x0b\x14\x53\x70\x73\x30\x32\x16\x39\x10\xdf\x0e\x2b\x93\xe5\x84\x3c\x09\x15\x1f\x79\xac\x86\xc0\x27\x03\x0f\xc2\x4d\xd2\xc4\x16\x03\xe0\x9a\xe8\x89\xe0\xa4\xdf\xdd\xa9\xa2\x03\xbf\x5e\x6f\x0a\x71\xcb\x51\x37\x31\x23\x47\x0a\x40\x6f\xe6\x2c\x7d\x11\x7e\xad\xda\x40\xb9\x8d\x41\xba\xa0\x6d\xc0\x87\x0b\x2d\x19\x39\x68\x3e\xa7\x60\xc1\x32\xb7\xf6\x5c\x46\x7c\x6b\xb1\x33\xa7\x87\x21\x14\x77\xe9\x33\xf4\x33\x6b\x13\xf1\x79\x95\x61\xb7\x2a\x14\xee\x04\x8a\xce\x32\x39\x9e\x7f\x6e\x9e\x20\xe0\xa0\xb2\xa9\x1c\x65\xc1\x81\xf1\xfc\x29\x35\x09\x92\x98\x3d\xd4\x1e\x95\x5f\xff\x3a\x17\x92\xa8\x46\x2e\x2b\xa1\xb1\xcb\x4a\xb2\x23\x36\x4b\x36\x9e\x52\x6a\x6c\x47\x35\x56\xf5\x9a\xb2\x04\x3a\xaf\x96\xc2\x52\x6a\xb2\xee\x53\xb9\x52\xa9\xbc\x34\x56\x02\xff\x97\x1a\x85\x79\x47\x59\x34\x04\x40\x04\x0b\x12\x44\xe6\x9a\x46\x2f\x32\xad\xdb\x13\xe3\xfb\xc3\x33\xed\x1e\xdb\x79\x89\x18\x93\xff\x3a\x27\x26\x32\xa7\xa7\xdb\x85\x35\xe1\xc0\xb5\x33\x9d\x24\xb1\xeb\xff\x7e\xa2\x5c\x48\xdf\x56\xc6\x87\xcb\x69\x48\x7a\xf0\x7c\x64\xdc\x08\xd4\xf9\x71\x63\xa2\x68\x77\xd6\xcb\xcb\x51\xda\xf2\xbc\xbd\x0d\xad\xbc\xb1\xa1\xf2\xa4\xd8\xf6\xa7\xab\x1f\x73\x50\x6a\x77\x8c\x9c\x55\x5e\x63\x67\xeb\xb3\x61\xd9\xdf\x5f\x2b\x4d\x1c\x15\x6b\x74\x03\xd1\xa1\xbc\xa7\x74\x65\xff\xfd\x58\xf5\x21\x3c\x53\xa6\x67\x88\x2e\x46\xff\xc6\x2a\x73\x54\xc3\x88\xe2\x9c\x4f\x85\xe2\xb4\x4c\xfa\x58\x31\x38\x6e\x4f\x60\xc1\xf1\x45\xb3\xbf\x41\x9a\x5b\x0f\xca\xc4\x04\xf8\x96\x52\x42\xbd\x15\x48\xb9\x28\xac\xc9\x54\x74\x2b\x24\x15\xf5\xe5\xc8\xd1\x89\x3f\x71\xe0\x40\x3b\x2f\x4c\x56\xc4\xa2\xe7\x23\x7a\xee\x2d\xa5\xf3\xfe\x59\xfa\x2f\x3d\x1b\x47\x47\x94\x06\xd3\x79\xad\xc1\x74\x7e\xa2\xf4\x79\xba\x9d\xa7\x2b\x91\x2d\xb4\x7b\x6c\xa0\x52\xb5\xad\x89\xac\xe0\xe9\x76\xf7\x1f\x2c\xa9\x66\x2b\x2f\x61\xbe\x98\xa8\xe4\x17\x9e\x3f\xd8\x2e\x93\x5e\x16\xd9\xa4\xcb\x7e\x33\x28\x4a\xcf\x28\xbe\xc6\x99\xa6\x84\xbe\x5a\xc9\xd6\xe1\x15\xb1\x7e\x6b\xbe\x4f\xc7\x27\x10\x23\x2f\xbd\x84\x8c\xb2\x6b\xf0\x97\xd0\xaa\x80\x14\x26\xbf\x56\xf1\x70\xd5\xc4\x71\xba\xca\xbb\xe5\xc5\xba\x8c\x0a\x4e\x66\x3e\xeb\x84\x80\xf9\x98\x72\x6a\xcf\x8b\x72\x58\x7d\xb6\xea\xfc\x70\x32\x99\xf3\xf3\xf2\x5a\x41\x29\x8b\x41\x3a\x1c\xe5\x69\x82\xd5\x82\x42\xef\xa8\x1a\xc5\x1d\x6d\xe8\x38\xb7\xbb\xe5\x28\x46\xff\x15\x5f\x1f\xcd\x20\x1e\x92\xf0\xc5\xd8\x37\x80\x56\xed\x52\x4e\x3b\x11\x85\x20\xca\x6a\x7e\xad\x8d\xf1\xa9\x1f\x05\xdf\x51\x04\x81\x13\xc1\x67\x0d\xfc\xbc\xef\xe8\x89\x26\xf3\x72\x93\x2d\x9b\x24\x37\xbc\xac\x71\xa4\x73\x77\x8d\x2f\xd6\x9b\x24\xea\xbb\x96\xb4\xa3\x6a\x26\x29\x2c\xc8\xcf\x17\x4d\xd8\x4e\x5b\x66\xe9\xc8\x9a\x04\xd9\x14\x1a\x3c\xd0\xde\x40\x16\x04\x4d\x0e\x06\x72\x37\x48\xe3\xb7\xbb\xb6\x30\x91\x97\x0a\x11\xa8\x62\xf5\x5b\xd2\x08\xf1\x21\x61\x60\x4d\x5c\x0c\xf6\x29\x95\x2e\xc9\x94\x01\x12\x78\x5d\x89\x47\xfc\x24\x50\x62\xd5\x5c\xdb\xa1\xf6\x62\x92\x0f\xca\xdf\xab\xaa\x86\xfb\xc7\xb7\x1b\xf1\xd7\x24\xde\x4f\x3e\xe7\xda\x80\x04\x59\xf2\x0d\xc4\x24\xe0\x54\xf8\xa4\x12\xc6\xa4\x4f\xed\xb6\x26\xa6\xd1\xd5\xfb\x66\x36\x2f\x63\xb7\x8e\x04\xbd\xac\x5a\x4a\x17\xb5\xf2\x60\x1a\x47\x05\x84\xbc\xa7\x69\x69\xb3\xb6\x85\x22\x24\xdc\x00\x10\xd2\x89\x5e\x1c\x38\x20\xff\xa0\x14\xf4\x42\xb3\xc4\x99\x7c\xa3\x23\xf5\xc4\x88\x74\x71\xe1\x8b\xed\x24\x1d\x46\x09\xeb\x6d\xe1\x6b\x03\x95\xc8\xaf\xd7\x77\xe4\x93\xb3\x87\xda\x07\x66\xf7\xeb\x0e\x26\xe1\x64\x50\x71\xbd\x41\xd1\xde\xc9\x56\x3a\x90\xdb\x2d\x3c\x14\xfe\xa1\xb1\xd2\x62\x44\x9f\x15\x3b\xf2\xa5\xb1\xaa\xbe\xd4\xb7\xa2\xe3\x1f\x42\x72\x8e\xf1\xe5\xea\xd1\xd6\x3a\x75\xe6\x50\x8b\x4d\x77\xe8\xc3\x20\x63\xfe\x08\xe3\x0b\xb4\x1f\xff\x15\xee\x04\xfc\xb6\xff\x6e\xc7\x4f\x64\xee\x70\xca\x8d\x4a\x17\xfc\x2b\xd4\x0a\x0f\x01\x99\xc1\xbe\x93\xca\x08\xe0\xd6\xd8\x9b\x76\x4c\xce\x9d\x0f\x1c\xa8\xfe\xbb\x3c\x8a\x4d\x08\xf0\x1e\x10\x54\xd8\xe5\xfc\x5a\x49\x08\x90\x8e\x8f\xe2\x0d\x03\xa4\x28\x84\x46\x35\x91\x6b\x92\xab\x6f\x9b\xee\xcb\x25\xea\x16\x7a\x7e\x28\xcb\x7f\xaa\xf8\x67\x93\x73\x96\xb9\xb9\x76\x46\xea\xda\xf8\xde\xf8\xab\xaf\x05\x8a\x37\x80\x96\xbb\xb4\x32\xd4\x90\xd1\x66\x2b\x96\xe2\xdd\x36\x91\xb7\xb6\xcf\xaa\xa9\x1a\x4b\x4e\x19\xf8\xfb\xa3\x7e\xfa\xde\xd8\x73\xa7\x36\xd5\xe4\xeb\x4c\x83\x4d\xf2\xc1\xf6\x28\x8d\xaa\x70\xed\x47\x5d\x5b\xca\xf2\xa5\xde\x73\xce\x23\x12\xa4\x9d\xe5\x11\xee\x27\x68\x7b\xb2\xae\x1e\x15\x32\x28\x4a\xaf\x6a\x08\xe4\x26\x81\xcb\x9c\xf8\x9e\x1b\x7a\x6c\x62\x9d\x48\xfd\x54\x3d\x67\x1c\x74\x1f\xa1\x4d\x84\xcc\xfb\x74\xc3\x98\xab\x6d\x93\xc2\x66\xa3\x2c\xca\x35\x85\xe2\xaf\x71\x90\xf3\x85\x4a\x63\x0b\x7b\xa4\x28\x33\xdb\x52\x38\x98\xa3\x6a\xe0\x72\xb4\x09\xf3\x95\x17\x69\x26\xc3\x40\xcc\xfe\xaf\x28\x81\xca\x63\x5a\x88\xfb\x54\xa3\x08\x46\x3e\x70\x67\xad\x24\xbc\xa7\xc7\x8a\x71\x78\x5d\x01\xa0\x75\xaf\xaa\x4c\x7a\x26\xca\xd8\xd2\x44\xe4\x5c\xe9\x6e\x0a\x1e\x56\x09\x19\xd3\x47\x72\xa2\xc6\xd5\x4d\x13\xf5\xa3\x86\x3c\xce\x0e\xd3\x2a\x33\x33\x70\x3e\x40\x81\xf2\x29\xe2\xb9\x33\xdd\x50\x58\xd5\xc7\xdd\x94\xac\x28\x62\xdb\xcf\xd2\x72\xc4\xa7\x1f\x10\x43\x58\x58\xfc\xba\xd9\xd2\x21\x1d\x8e\xca\xc2\x93\x8a\x91\xce\x72\x47\x9d\x2f\x9a\xd0\xc6\x43\x5b\x25\x2a\x0a\x4e\xf4\x37\x0a\x4e\xf4\x37\x4d\x7e\xd2\x79\x0a\x97\xf4\x05\xe7\xf8\xe5\xa7\x2d\x5e\x37\x24\x2f\xb2\x74\x19\x2b\x06\x2d\x4c\x10\x97\xf9\xb5\xe2\x2a\x0f\xed\x91\x28\x4c\x71\x66\x37\x69\x01\x4f\xd6\x2d\xf3\x6d\xf3\x8c\x42\x87\x9d\x09\xd4\xc9\x7d\x46\x29\xd2\x2c\x99\x32\x8e\x6c\x49\xdf\xcd\x1d\xa2\x5e\x45\xe8\xa2\x9e\xa7\x95\x79\x91\x0e\x6d\x06\x14\x03\x56\xf5\x4d\x25\x4f\xf7\x29\x92\x23\x4c\x26\xf6\x61\xe4\x81\x6e\xdc\x1d\x1c\x9f\x02\xb3\xa0\x3d\x2a\xf9\x64\xb5\x47\xa5\x25\xe3\xf5\xda\xbf\x9e\x1b\x42\x0e\x89\x59\x4c\xb5\xc4\xc4\x45\xe6\x51\x25\x08\x1d\xe5\xa5\xa8\x92\xe0\x0d\x77\x77\xd4\xdc\x80\xce\x2c\x69\x2a\xd9\x6c\x95\x40\x49\x09\x55\xd4\x32\x5c\x53\xa3\xb9\x3f\xa2\x9b\xcf\xae\x46\x8a\x67\xdc\x4b\xab\xa7\x0f\x49\x0b\x9e\xed\x40\xd5\xc3\xb5\x6d\xdc\xe8\x69\x8f\x3a\x30\x6f\xe1\x3e\x22\x68\x5c\x1a\x6b\xb1\xc7\xea\x7c\xa7\xda\xc2\xe9\x66\xed\x21\xb1\x53\x7e\x5d\x63\x98\x0f\x6c\xf7\x31\xba\x7b\xdc\xa4\x0c\x3c\x30\xf6\xad\x00\x0d\x1f\x59\x05\xb4\x73\x10\x0f\x2e\x13\x89\x03\x9f\xe3\x5b\x63\xb5\x49\xfe\xd3\x58\xf5\x69\x2e\x62\x98\x25\x58\x21\xba\x17\x58\x22\xf7\x94\x96\xe4\x75\x25\xab\xbb\xa9\xf0\x71\x57\xd1\x14\x63\x0f\x73\x00\x68\xdd\xe2\x7c\x4e\xd4\x27\x59\xed\x0f\x55\x25\xd8\x56\x00\xcb\x6f\x07\x3b\x59\x0a\x52\x42\x95\x49\x14\xc3\xf8\xd7\xdb\xf7\x40\xdf\x49\x76\x5c\xf5\xf6\x42\x65\x57\xb4\xe7\xe7\x99\x58\x8a\x85\x06\x0d\x4c\xd6\xaf\xc3\xc3\x00\xc4\xfb\x53\xf5\x3b\x69\x96\x4e\xf9\xf3\xe8\x32\x7d\x6d\x04\x39\x08\xe8\x73\x90\xbb\xeb\xda\xa4\x43\x93\x65\x91\xe9\x6b\xca\xc3\x3d\x45\x79\xf0\x25\xf0\x90\x78\x83\xd3\x14\x61\x71\x5b\x1e\x5a\xf7\x74\xa8\x27\x3b\x1e\x52\x3b\x0d\xec\x98\xb4\xdc\x9e\x94\xe8\x50\x8e\x6c\x16\xa6\x49\xb7\x0c\x8b\x34\xa3\xd3\x14\x9b\x12\x83\x3a\x44\xd9\x6b\x8a\x77\xf2\x8d\xf1\x93\x3b\xa9\x50\xb3\x55\xe8\xff\xbc\x2a\xe0\x38\x45\x96\xf6\xb5\x4f\x72\x58\x52\x43\xe4\x46\xab\x3b\x8c\x8c\x80\x75\x9c\x04\x41\x54\x2d\x3f\x14\x18\x7b\xe8\xeb\x08\x3a\x46\xf5\x44\x5b\x64\xb5\x24\x40\x3f\x62\xbc\x60\x91\xbc\x83\x15\x83\x12\xfa\x01\xcc\xa9\xb5\xe4\x3e\xba\x08\xfb\xa9\xeb\x26\xe9\x3d\x22\x35\xfe\xe5\x44\xa0\x48\x6c\x3c\x47\xc6\x26\x84\xa2\x30\x8b\xa7\xd0\x22\xc3\x67\x7c\x4b\x1f\xc1\x3c\xbb\x15\x24\xaf\x2f\xcb\xe0\x7d\x42\x48\x18\xe1\x21\xb7\x9c\xf9\xd4\xee\x75\x22\x76\x39\xd9\xa0\xea\xf6\x89\x7f\x88\x3f\xb7\x76\xd3\x06\x16\x5c\x81\x1f\x57\xb2\x09\xeb\x7d\x7e\x34\xc5\x35\x2d\x0b\xd5\x8e\xeb\x8e\x75\xce\x1d\xec\x93\xc0\x4f\x36\xce\x68\xf5\x62\x74\x93\x9c\x80\x5a\x15\x4a\x51\x31\xbe\x42\x59\x0d\x96\xfe\xed\x26\x5a\x68\x2f\x8a\xa5\xee\xc3\x0e\x3c\x1d\x28\xbf\xe2\xd3\x75\xc4\x9c\x19\x4d\x69\x66\xcb\x25\x7c\x04\x24\x53\x7f\x30\x6e\x29\xf3\x80\xcf\x6a\x84\xe4\x69\x62\x91\x8c\xe2\x33\x71\x9f\x82\x2f\xb4\x28\x67\x17\x5b\x10\x0d\x82\xe3\x9a\x5e\xf3\x4e\x50\x1b\x0f\xee\x3c\x68\x0f\xcc\x12\xfb\x7a\x4a\x0d\x7e\xb6\x94\x4d\xdd\x3d\xa5\xfb\xaa\xfb\x0e\x19\x2c\xf7\x99\x8e\x81\x04\xe5\x8c\x02\xfb\xb2\x74\xb4\xe3\xa2\xb8\x5a\xe4\x8c\x32\x1f\xc9\x6c\x5e\x18\x7a\x0f\x27\x58\xc0\x04\x3b\xbe\x58\x57\x45\xc7\x11\xa4\x67\x62\xee\xab\x8e\xdf\xcc\x52\x52\xe6\x41\x8e\xf0\x88\xc0\x7c\xec\x9b\xb8\x65\xb2\xde\xfd\x91\x94\x45\xdd\xd8\xae\xa1\x5a\x40\xc0\x87\x63\x14\x6e\x21\x80\x8c\x82\xbb\x14\x70\xd1\x28\x72\xf2\x07\x18\x5d\x33\x69\x94\x2f\xf4\xcc\xd1\xae\x3a\x33\x36\xc4\x6d\xa8\x0f\xf2\xeb\xea\x98\x76\x07\x70\xf1\x70\x4b\xd9\xb4\xd1\xf7\x77\xfe\x70\xbf\xfc\x15\xd1\xa6\xa7\xc5\x2c\x8d\xeb\x6a\x99\xba\xe6\xb7\x93\x0f\x61\x89\x6f\x6d\xfb\x81\xd0\xf0\x43\x2d\xf3\xf0\x0d\xca\x37\x9c\xb1\x9e\x73\x71\x62\xf5\x7f\x7c\x42\x4e\xe8\x64\x34\x49\x0f\x93\xb3\x4b\xb5\xe9\xbb\x65\x1c\x5b\x4e\xd2\x30\xd8\xe1\xb9\x38\x5f\x28\xf5\xa3\x61\x94\x99\x30\xe6\x7c\x1d\xe7\xd1\x4d\x4d\xdc\xbd\xd9\xe0\x46\xdb\xce\xd3\xa1\x1d\xa4\xab\x34\xbf\x43\x68\x07\x33\x11\x63\xf7\xd7\xc6\xca\x34\x78\x52\xca\x78\x71\x46\x59\xe8\x4c\x2b\xa2\xc6\x96\xba\x01\x1c\x3c\xdc\x80\x7f\x6e\x8e\xc7\x23\xb7\xb4\x8f\x52\x9a\xe4\x69\x1c\x75\x8d\xf8\x2a\x23\x8d\x62\x42\x3a\x5f\xa0\x2d\x89\x65\x62\x8b\x2c\x75\x80\xd5\x96\x6a\xfe\xff\xb9\x1a\xe4\xfc\xf9\x4e\xc1\xb7\xc5\x99\xf6\xc2\xec\xa1\x96\x47\x03\xea\x31\xed\xa6\x1b\x16\x25\x24\xe8\x89\x72\x18\x70\x98\x53\x58\xe3\x7c\xb1\xf3\x6d\x9f\x7a\xaa\xca\x65\xf7\x78\x94\x0e\x4b\x62\x70\x47\x30\xf0\xb5\xee\x95\xb1\x6f\x6d\xbe\x4f\xeb\x8d\x7f\x41\x4d\x6f\x0b\xf6\x2b\x10\xb9\xc5\xba\xbe\xc8\x0e\xe5\x44\x64\x01\x7f\xa5\x7b\x14\x7c\x9a\x20\xf3\x78\x37\xf0\xe9\x6a\x99\x43\x87\x13\x81\x8a\x5b\xbe\x7c\x11\x78\x64\x26\x7e\xc8\xf9\x03\x79\x31\xba\xa6\x51\x4a\x6c\x8a\xc2\x66\x3b\xf0\x11\xce\xcc\xfe\xd1\x8e\xff\x7b\xd3\xeb\x74\x42\x4b\x7e\xbc\xb3\xd2\x7a\x61\x71\xa6\x6d\x86\x36\x8b\x42\x83\xa2\x9a\x71\xc6\xba\xec\xb9\xa0\x04\x34\x72\x6a\x96\xfb\x82\x17\x7c\x34\x11\x33\x6c\xd0\x86\xcb\x4c\x94\x4b\x68\x41\x5b\xea\x13\xa5\xcb\xfa\x89\x17\xf4\x4e\x93\xbc\xa8\xd2\xba\xea\xd3\x4a\xc8\xf0\xb7\xfd\x6a\xa0\x12\xe6\x8f\x1a\x60\x29\x0b\xed\x51\x66\x8b\x62\x8d\xb6\x14\xf2\xb2\x37\xc6\x75\xf7\x00\x2f\xb7\xa3\xce\xe0\xfc\x6b\xa5\xc9\xaa\x48\xbd\x38\x23\x4c\x6a\x8a\xf6\xae\x15\xec\x4c\x34\x6e\xa9\x05\xa5\xd1\x34\x45\x16\x55\x5f\x50\x1b\x0a\x68\x73\x82\x06\x6d\xf6\x7e\xd4\xd3\x9d\x98\xad\x40\x83\x25\x1e\x53\xbe\x54\xbd\xcc\xe6\x61\xda\xf2\xbd\x92\x53\xca\xb2\xf3\xd4\xf8\x01\x4f\x54\xea\x3d\x4a\x6b\x01\xd9\xd3\x07\x41\xeb\xcb\xbf\xc2\x67\xf0\x0d\xad\x5e\x7a\x46\x41\x4e\xb0\xa8\xd9\xec\x1d\xa3\x66\x0c\xdb\x3e\x50\x9a\x94\x27\x02\x0d\x95\xf8\x00\x81\x94\x0e\xfa\xff\xe2\xf1\x75\x45\x00\xd2\xd9\xce\xa7\xa8\x15\xd0\xe0\x7e\x82\xf2\x35\x56\x6e\xa5\x24\x04\xc5\xd0\x14\x12\x3c\x1c\x87\xdb\xd4\xa8\xc4\x2f\xdc\xa8\x15\x43\xf9\x28\x4d\xba\x0c\xe8\x12\xd9\x4b\x9f\x91\xff\x86\x6a\xfa\x1b\x32\xe4\x47\x23\x7f\xc1\xd3\xee\x3d\xf1\xed\x82\x86\x37\x17\x99\x89\x78\xfa\x8b\xb6\x31\x40\x55\xfc\x7a\x62\x1d\x57\x9b\x24\x8e\x6d\x95\xd8\xbb\x34\xf0\x24\x55\x3e\x42\x46\x69\x62\x65\x87\x65\x94\x53\x3c\xd3\x26\x67\xf3\xca\xc4\xba\x81\xf5\x30\x4a\x0b\x9b\x14\x91\x93\x31\x64\x79\x24\xfa\x74\x22\x95\xa4\x73\x31\x93\xc5\xf7\xe9\x71\x42\xf5\x73\x4e\x1f\xbd\xfa\xf2\x58\xbb\x9f\x82\xa7\x28\x62\xe9\x4a\x5b\x71\x4b\x4f\x88\x18\x0c\xa5\x7e\x4c\x59\x10\x3f\x37\xef\xb4\xc4\x7c\x03\x68\xd5\xc4\x85\xcd\x5a\xda\x10\x74\x6a\x5d\x25\x26\x53\x9d\x9d\x11\xe7\xab\xb3\xed\x55\xd3\xef\x47\xf9\x80\x87\xa7\x1a\x6d\x29\xd0\x49\x3f\xa0\x11\x8f\x3a\x04\x1d\x04\xa4\x53\x88\xbb\x7c\xd1\xc4\x5b\x88\x92\x9e\x10\x7a\x18\xc6\x41\x1b\x47\x20\x1d\x3b\x5b\x22\x07\x66\xdb\x69\xaf\x37\xa5\xbe\x22\x25\x1f\xce\x04\xf2\x17\x5f\xe0\x72\xf9\x2d\x07\xa5\x4f\x0a\x8c\xe5\xc4\xa8\x9e\xbe\xb3\x68\xc2\x6a\xa1\x51\x93\x14\x39\x21\x2b\x94\x03\xaf\xa8\xe3\xdd\xd6\xac\x8d\xdb\x0a\x44\xf7\x40\xc7\x7f\x96\x1b\xb4\x6d\x04\x07\xa8\x04\x83\xd2\x74\xc4\xa8\x19\x31\x56\xf7\xd4\x98\xdb\x3e\xb5\x1b\xa4\x09\x06\x6e\xd8\x79\xfb\x3a\xbe\x25\xb1\x6f\x5d\x91\x90\xd3\x32\x09\x6d\x4b\xa9\x59\x1c\xd7\x04\x93\xe3\x8e\x04\x9a\xa4\x2b\x51\x01\xd2\xb9\x9b\xf7\x6f\xa8\x1c\x70\x43\x65\x8b\x69\xaf\x67\x33\xea\xc2\x4a\xdb\x05\x9a\x2d\xe2\x6e\xeb\xa9\x66\x1f\xd1\x12\x67\x4f\x24\x2a\x05\xb7\xa1\xce\xb7\xbd\x19\x28\x9d\xf2\x33\x34\x3b\x60\x0e\x1e\x02\x0d\x9e\xd2\xc7\x4d\x55\xcd\x28\x8a\x63\x06\x9f\xb8\xa6\x66\xb5\x72\x90\x41\xe3\x7e\x49\xe7\xf8\x21\xa5\xf2\x6b\x97\x69\x53\x21\xad\xdc\xd4\x85\x25\x73\x7f\xc4\x5a\xb9\x5a\x25\xca\x62\x6a\xd6\x9b\xd5\x57\xc5\xa4\x93\xde\xf3\xba\x7f\xff\x96\x52\x34\x24\x09\x7f\x46\x5f\x59\xc6\x10\x1e\x70\x12\xa6\x49\x3f\xb3\x79\x3e\x34\x6c\x46\x8f\xcd\xcd\xbe\x25\x7c\x31\xd9\x8a\x9c\x6d\x17\x99\xe9\x4a\x15\x27\xb3\x46\xf5\x3b\xc7\xc6\x9e\x1a\xd1\xb5\xbd\x28\x89\x0a\xcb\x7b\x50\xdc\x39\xaa\x15\xc8\xaf\x27\xb6\xd5\xc2\xf3\x07\x61\x60\x82\xc9\x3d\x32\x8a\xed\xb1\x4f\x1b\xb7\x15\x86\x33\xb3\x7d\x43\xf2\xec\x54\xbd\x88\x48\x9a\x3a\xa3\xc0\x51\x92\xfe\xd0\xa4\xba\xc0\x42\xbb\x67\xc8\x22\xaf\xa5\xe8\x8c\x68\x27\xf3\x6b\x07\xfb\xce\xcb\x7e\xdf\xe6\x3c\xc7\x9f\x50\x53\x17\x2d\x4e\x7f\x60\xa7\x61\x58\x66\xe8\x0b\x36\x81\x84\x55\x6e\x50\x58\x93\x25\xec\xbb\x22\x9e\x64\xd5\xc6\xe4\xd7\xaa\xdb\x58\x64\xd5\xed\x5c\x9b\xf2\xe0\x33\x16\x87\xc5\xdd\x3c\xa7\xbc\x8b\x36\x83\x87\x14\xbb\xd3\x24\xe8\xe0\x09\x6f\xa7\xe5\x44\x00\xd0\x42\xc1\x91\xb4\x17\x8c\x79\x86\xa2\xa0\x53\x82\x26\xc6\x5d\x3a\xeb\x51\x7b\x6f\x8f\x15\xf1\xf1\x1a\xad\x34\xdc\xf9\xb3\x63\xaf\x01\x7a\x91\xc2\x09\x7b\xd4\xd1\x8c\x0a\x45\x07\x0c\x26\x51\x5a\xef\x42\xd2\x88\xcf\xfb\xb9\x8e\x4a\xa3\xde\x54\xd2\xf7\x97\x71\x8e\x80\x0f\x7c\x65\xac\xc0\x74\x0f\xac\x7b\x89\xc7\x24\x2f\xb2\x32\x2c\xea\xea\x7a\xe7\x15\xbf\xf2\x7c\xd3\xcc\x64\x18\xe5\xdc\xdd\x6a\x29\x19\x8a\x2d\x55\x65\x68\x05\xda\xa1\x2d\xb2\x28\x84\x72\x09\x2a\xa8\x9b\xba\xab\x7c\xb3\x29\x36\x84\x65\xb6\xb2\xa6\xf0\x5f\x40\x70\x08\xde\xa8\x49\xe4\x3a\x8e\x96\x01\x15\xc2\x63\x78\x7d\xec\xe7\xc1\x57\xe8\x66\x0b\x3f\xd2\x01\x5d\xd2\x8c\x74\x1d\x54\xda\xa8\x9a\x2a\x57\x55\x24\xfc\x03\xc4\x08\xf4\x51\x5b\x9d\xc7\x14\xe4\xb0\x6b\x97\xa8\x3a\x3b\x3c\x53\xd3\x0c\x97\xf4\xbb\xe1\x9b\x95\x49\x54\x37\x1a\xde\xd4\x38\xc4\x4d\x75\xb8\x0e\x4d\x9e\x9b\x90\xbd\xcc\x1d\xac\xd3\x2b\xdf\x57\xa5\xe2\xcf\xed\x68\x92\xd3\x9c\xbe\xe6\x26\x38\x3f\xef\x44\xcf\x3d\xc4\x7d\xc5\x0e\xec\xd0\x26\x45\x15\x60\x9c\x07\xea\x16\x74\x90\x24\x19\xfa\x19\x47\x80\xeb\x46\x39\xb4\x3e\xa2\x34\x89\xf2\x21\x9d\x2c\x0e\xf0\x52\x2d\x32\x69\xbe\xe8\xee\x77\x51\xb2\x2c\x05\x16\x36\x73\xca\xf9\x62\xfc\xd9\x07\xd9\xce\xea\x74\xa1\xca\xd6\xa6\x3d\xf6\xea\x04\x9a\xe5\x78\x23\x58\x0f\x08\x1e\x83\x36\x1e\xff\x83\x5e\x7f\x40\xb0\x3e\x50\x7d\x53\xe1\xb7\xee\xd0\x6a\x24\x9d\x44\xd2\x24\xd9\xbb\x5e\x6d\x46\xd1\x3a\x55\xd4\x4a\xa8\xbf\x08\xab\x9d\x3e\xb2\xcb\xd1\xaa\xec\x4d\x24\x51\x5b\x5e\x51\x49\xbb\x95\xbd\xa9\xad\x7d\x4a\x1b\xc7\x98\x32\xc9\xfe\x66\x9e\x09\x5f\x74\x3c\xac\xc0\x26\x2b\x51\x96\x26\x6e\x3c\x2c\x3a\xb4\x2d\x27\xd5\x75\xbb\x61\x12\xdb\x8e\xa3\x61\xe4\x76\xb5\x8c\xcf\x3d\x93\xe7\x5f\x29\x35\xc8\x15\x9b\x25\xce\x40\xc9\x1d\x8a\xd5\x27\x97\xb3\xd3\x37\xfc\x7e\xe1\x88\x99\xf2\x62\x7f\xff\x69\xac\x8a\xea\x0b\x7f\xab\xb4\xde\x73\x55\xd6\xb7\xe4\xc4\xc0\x50\x23\xa1\x09\xc0\xaf\x1b\x37\x75\x62\xe5\x3b\x88\xe9\xa6\x47\xda\x9d\x73\x5c\x42\x7b\x24\x1c\x98\xa4\x6f\x1d\x13\x4e\x0c\x9a\x5a\x4a\x78\x74\xe7\xc8\x62\xf6\x50\xdb\x8c\x46\x59\x3a\xca\x22\xaf\x17\x2a\x82\x44\xd5\x2f\x4a\x65\xba\xf3\x17\x0f\xcf\xcc\x57\x25\x8a\x4d\xfa\xc5\xc0\x3a\x81\x06\xf4\x81\xdf\x54\x72\x1b\x6f\x2a\x81\x86\xc4\xae\xd8\x6c\x7f\x6b\x6e\x6e\x1b\x02\xf8\xdc\xfa\x46\xc1\x81\x53\xe0\x26\x05\x0e\x74\x95\xde\x55\xb0\xab\x8f\xb0\x3d\x50\x52\xdd\xd6\x7c\x88\xdb\x74\xb8\x48\xbc\x55\x69\x5d\x59\xf4\x22\xe8\x1e\xe1\x71\xbc\xab\xed\x6f\x7e\x9f\x6e\x21\xb2\xf3\x0f\x03\xdf\x3b\x88\x6d\x52\xd0\xa4\x82\x55\x51\x94\xc8\x3d\x84\xa1\x24\xbb\x7f\x4c\x29\xe3\x10\x4d\x26\xdb\xa3\x48\x77\x17\xd5\x19\x79\x53\xe1\x25\x8e\x69\x35\xf6\x73\x74\x9a\x09\x0c\xdc\x63\xb1\xfa\x99\x01\xdc\xdd\x49\xc6\xcc\xcd\xc9\x6b\x9d\xb6\x67\xb6\xc7\x14\x09\xb4\x8b\xdf\x1f\x2b\xda\xdd\xfb\xea\x04\x1f\x99\x78\xa8\x7e\x0e\xa2\x99\xfc\x5a\x31\x18\xc2\x81\x0d\x97\x5b\x5e\xe5\x77\x43\xcb\x80\x6a\xe5\xe9\x22\xb3\xa6\x58\xc3\x20\xde\x75\x6c\x1d\x3e\x82\xe7\x03\xb2\x87\x1e\xd7\xa4\x8e\xc2\x86\x85\x80\x12\x11\xbf\x19\xd0\xcb\x17\x5a\xa8\x97\x49\x9d\x68\x1e\x0a\xad\xad\xba\x63\x1c\x4a\x68\xa5\x60\x20\x76\x59\x49\x3a\xfd\xaf\x4e\x3b\x24\x1f\x45\x59\xb5\xfd\xa7\x6b\x29\x78\xf5\x93\x35\xb4\x19\xb0\xc9\x2c\x40\x83\xa2\x7d\x6b\xfc\x79\xdd\x7f\x74\x61\x3f\xa7\x08\x0c\xf4\xc2\x16\xc6\x4a\x7c\x81\xdf\x66\xbb\x9d\x40\x69\xf3\xff\xa4\x11\x65\x9c\xc6\x11\x0b\x62\xa1\x37\x71\x9b\x1e\x09\xbf\x56\xda\x5f\x90\x56\xc6\x2a\x96\x56\xad\xdf\xda\x1f\xe0\x81\xa3\xb1\x7a\xd9\x31\xc7\x96\x4c\xc2\x05\x05\x77\x16\x71\xe8\x88\x28\x59\xcb\x09\x31\x9c\x1a\x2b\x7b\x8e\x7e\x66\xe9\x30\xcc\xa9\xc3\x88\x94\xee\xaa\x5a\x29\x28\x1e\xb6\x4f\x6a\x74\xeb\x8d\xb1\x5f\x55\x5b\x5a\xe7\xfd\xc3\x26\x10\x1e\xf7\xf0\x04\xbc\x80\x0f\xc7\x0e\x66\x7c\xd1\x80\x51\x5f\x68\xe7\xcb\x76\xe4\x99\x1d\x38\x7b\x3e\xa6\x1c\x97\x5f\x37\xc9\xf4\x8d\x4c\xb8\x6c\x9c\x2e\x80\x08\xf2\xd2\x8d\x40\x60\xba\x11\x78\xdf\x96\xda\xf0\x60\x64\x6d\x37\xa7\x18\xe0\x0e\x33\x87\x95\x00\x65\x5f\x06\x70\x3e\x6c\xac\xd8\x22\x9d\x52\x2c\xc3\xdf\xa8\xf9\xb7\xd1\x42\x91\xf4\xe3\xb1\xba\x4b\x6f\x66\xbb\x24\xed\x20\xff\xac\x32\x15\xfc\x1e\xb2\xd5\xbb\xf4\x86\xe2\x6c\x48\x7f\x49\x42\x9e\x4f\x95\x7a\x51\x52\x86\x86\xbb\x39\xac\xc5\xa8\x30\x01\x67\xdd\x0a\xc9\xac\x41\xe0\x70\x76\xa6\xae\xad\x7b\xdc\x0d\x8a\x33\x13\xc5\x59\x6a\xba\x7b\x3c\x2a\x05\x62\x11\x35\x25\x2e\x4c\x06\x44\x46\x8e\xdd\xc4\xc7\x4a\xe5\x7e\x4b\x29\x83\x54\x7b\x29\x4a\x4a\x58\x0d\xcf\x7b\x11\x70\x57\x9e\xb1\x24\x36\x6e\xf6\x5f\xe0\x2f\x60\x2e\x76\x19\xd1\x1b\xfd\xa5\x93\x0a\x5f\xb7\xaf\xa3\xe4\x97\x4e\x07\x1a\xa4\x14\xdb\x23\x50\x5f\xe7\xf3\x7e\x53\x4f\xb1\x36\x03\xaf\x73\x33\xfa\x07\xfd\xea\x58\x72\xe6\x57\xde\x16\x69\xba\x53\x45\x9c\x5a\xd3\x48\x38\x12\xf8\xc6\xc2\x92\xa0\x4f\xe7\x88\x29\x8b\x02\x7d\xfd\x81\x52\x8c\x7d\x23\xf0\xf4\x81\xd5\x34\xed\xae\xf1\x46\x70\x03\x95\xea\xdd\xf9\xc2\xe9\x18\xf6\xa2\xa5\xea\x68\xa9\xee\x8a\xd0\xac\x5a\xce\xdc\x14\x32\x4f\x58\xc3\x7c\xb4\x20\x08\xfe\x11\x8a\x7b\xc1\xf9\xbb\x88\x18\xa6\x45\x38\x90\xf2\x1b\x15\xe2\x1f\xea\xc9\xf7\x1f\xaa\xf2\x98\x74\x6a\xaa\x7a\x02\x83\x34\xcd\x6a\xe3\xd7\x1a\x05\x5f\x1e\x29\x99\xa4\xe5\xca\x08\x35\xc3\x0a\xee\x77\x6f\xbb\xbc\x87\x02\x08\xa2\xe3\x2b\xf8\x9c\x4e\x12\x64\x7e\x5e\x8b\x9b\xcd\x3a\xc7\x0b\x85\xc4\xda\x50\xa7\xf5\xc8\x44\xdd\xfb\xaa\xa5\xb4\x7d\x49\xcb\x81\x06\x3b\x6d\xb9\xb6\x2f\x29\x05\xb8\x5b\xf0\xef\xc6\xcf\x5e\xa7\xc5\xe7\xe8\x29\xfe\xff\xd3\xd9\x8c\x30\x79\xd9\xb1\x53\xaa\xa7\x66\x93\xcf\x2c\xc8\x1a\x30\xe8\x51\x12\xc6\x65\x57\x64\xef\x14\xca\xd7\x23\xb2\x75\xab\x74\x18\xaf\x81\x53\x02\x9e\xef\x5d\x9c\x24\xc8\x93\xd0\xbf\x16\x08\xa5\x5f\x4a\xf9\x2a\xed\xe6\x45\xd1\xc8\x38\x4b\xcb\x57\xa4\xe9\x1b\x06\x7b\xbd\x34\x5b\x35\x59\x77\xaa\xfa\x15\x87\x53\x73\xe0\x14\x8c\x10\xb0\x47\x4e\xaa\xe4\x6d\x98\xae\xd8\x9c\x08\xc9\xb5\x27\x24\x96\xf0\xf4\x84\x84\x91\xab\x99\x71\x63\xd5\x19\x3b\x51\xb3\x62\x68\xed\xe4\xda\x3b\xa3\x81\xc5\x19\xb7\x70\x94\xa3\x5b\xb9\x34\x34\x59\x94\xd8\x69\x6d\xe0\x19\xa8\x6e\x30\xcc\x40\x9d\xb3\xa7\x2f\x4e\x36\x9a\xbc\xe4\xec\x70\x60\x32\x34\x48\x9d\xa5\xa2\xa7\xe2\xfc\xc1\xc4\x48\x74\x71\x46\xec\xcf\x68\x10\x83\xbb\x70\x5c\x77\x47\x37\xd5\x66\x3f\x89\x02\x0d\xb1\x72\x97\xd2\xd4\xca\x6d\x78\x7f\xeb\xf0\x4c\xb5\x62\x17\x67\xb6\x2f\x21\x96\x63\x01\x72\x4b\x83\x2f\x3a\xad\xe7\xe6\x21\x11\xc9\xe2\x1c\x7f\x14\xa8\x54\x88\xd0\x23\x0b\xb0\x95\x10\xfc\xe7\x25\x5a\x21\xfc\xc3\x5a\xb7\x75\x29\xc7\xcc\x4a\x77\xe0\x91\xd8\xb3\x93\x06\xfa\x23\x37\x9a\x98\x8f\x85\xc9\x73\xa7\x57\xe5\x1c\x35\xbc\x5c\x86\x6b\xe2\x52\x67\xef\x41\x85\x9a\xbb\x31\x56\xf3\xe6\xdb\x81\xea\xfb\x00\x9a\x8e\xfe\x0e\x7a\xbd\x94\xc7\xfd\x97\x5f\xec\x78\xbe\x66\x2d\xa5\x9a\x5a\x77\xdf\xec\x6b\x4f\xae\x57\xeb\x5b\xb0\xfa\x0a\x16\xb8\x31\xd6\x40\xe0\x4d\x85\x20\x3b\xad\xb0\xab\x79\x61\xba\x51\x39\x54\x62\x79\x68\x68\x39\x48\x89\x47\x6f\x6c\x36\x98\x15\xb5\xb3\x74\xa9\xcc\xb1\x6c\xd0\xd1\x42\xee\xc6\xaf\x27\x62\x00\x40\xd4\xdd\x51\x6c\x40\x4a\x43\x07\x0f\x5e\x98\x22\x5a\x56\xd3\x89\x79\x58\x05\xe0\xa8\xb0\x84\x55\x44\x67\xe1\x2f\x03\x25\x69\xf3\xab\xd4\x2e\x73\x74\xc5\x2a\xa2\xe1\x1f\x4e\x62\x45\x88\x73\xbc\x87\xc1\x9d\x0e\xb4\x69\xc8\xf8\xff\x37\xc9\xae\x64\xe4\xcb\xdf\x6d\x39\xfd\x26\x7e\x08\x58\x37\x7f\x41\x41\x14\x31\xf1\xb7\x98\xab\x29\x90\x8a\xd6\x0b\x5e\xa0\xa8\x75\x60\x96\xd7\xf0\x29\x35\xd3\xff\x34\x50\xf8\x88\xb3\x14\x5e\x9d\x7c\xee\x61\x89\xcd\xd7\x34\xd5\x98\x25\x62\x90\xbc\x5c\x25\xd8\x85\x98\x20\xd0\xa6\xc1\x7c\xe0\x13\x85\xc0\x9c\x26\x07\x24\x84\xc8\x1f\xa2\x25\x2e\xd4\x52\xea\x8f\x0a\x7e\x55\xa3\x67\x6f\xe1\x7e\x89\x3a\x58\xeb\xa9\xa7\x5c\xbd\x47\x03\x47\x91\x6e\x57\xfc\x8b\x93\x24\x9b\xcd\xfa\xc8\x41\xeb\xab\xf2\xf0\xc6\xda\x67\xf3\x3b\x63\xef\x18\x7c\x0e\xcd\x11\xd1\x15\x54\x16\xa7\x99\x81\xc8\x01\x32\x59\x48\x78\x88\xec\x94\xb2\x1b\xd9\xd0\xdc\xfb\xb4\x6b\x73\x48\x78\x49\x71\x4e\x9f\x4d\x70\x42\xbe\xf2\xbc\x1e\x3c\xa1\x9a\xdd\xae\xcd\x49\xeb\x90\xc1\x7a\xda\xe1\x15\x46\x16\xac\xab\xa1\x86\xc7\xab\x66\xc5\xe6\x94\x05\x22\xff\x3c\x89\x3b\xeb\x9a\xad\x4e\x8a\xe2\xce\xd8\x8b\x5a\xfc\x0e\x3d\x16\xae\xad\x82\xfb\x64\x99\x3d\xc3\xbe\x2b\x0e\xfc\xe7\x40\xc0\x6f\xd3\x2f\xe0\x76\xb1\x26\x91\xc8\xcf\x78\x1e\xcb\x2d\xba\xa9\x02\xca\xa0\xb5\x09\xf4\xc8\x14\x1a\xc0\xb8\x8d\x2d\x8a\x16\x2c\x59\x8a\x65\x87\x1a\xe5\x32\x2d\x22\x7c\xf0\xbf\xc0\x13\x45\xcd\x7a\x17\xa7\x14\xba\x8f\x27\x7d\xf2\x95\x66\xc5\x5a\xab\x5a\xcf\x22\x31\xdc\x72\x4a\x8b\x27\xea\x33\xce\x34\x47\x07\x04\x8b\x0a\x86\x26\xfc\xba\x66\x16\x68\x6c\xd2\xa2\xc5\xe0\xd0\x59\x0a\xb6\xe5\xe7\x2b\x65\x92\x97\xa3\xaa\x04\x06\x64\xfe\x45\x6e\xd2\x5d\xa8\xf9\x9b\x51\x10\x41\xa8\xda\x9e\x08\x55\x87\x67\xda\xab\x51\xb8\x6c\xb3\x96\x2a\x23\x40\x1b\x13\x0e\xa1\x2f\xfd\x89\x69\xbc\xc7\xc7\xb1\xbb\x78\xc4\xac\xd1\xa7\xc8\xac\xf0\xca\x45\xbc\x65\xd9\x48\x51\x87\x70\x1e\x01\x71\x39\xac\xa9\x21\x6f\x28\x35\x64\xdd\x46\xf8\x5a\x99\x16\x36\x07\x4d\x08\x07\xd0\xa9\xb1\x4f\xa7\x36\x51\xfe\xf0\x3f\x04\x3e\xe7\xda\xd4\x4c\x2b\x93\x74\x63\x3b\x5d\x05\x13\x1c\x47\x57\xc6\xde\xeb\x72\x83\x56\x14\x8a\xb8\xb7\xe8\xc9\x23\xc8\xdc\x99\xa0\x0f\x1d\x9e\x79\xb1\x9d\xd9\xd8\x1c\x71\xcc\x57\x81\x5b\x55\x7f\x96\x5d\xe8\xe9\x9c\x42\x4d\x33\x49\x68\x23\x9d\xed\x95\xd4\x8b\x0d\x21\x52\x0d\x54\x32\x35\x68\x12\x60\x5b\xcd\xa2\x82\x07\xa4\x58\xa2\x40\xaa\xf1\x6b\x5d\x96\x16\x36\xb3\xe9\x1e\xdf\xf0\x7c\x1d\x47\x9f\x33\x80\x74\x5f\xef\x43\x9c\x06\xa2\xe8\xe2\xdb\xa5\xaf\x07\xba\x17\x43\x6a\x09\xae\x51\x8e\x64\x0d\xa5\x18\xbf\x56\xbd\x34\x7c\x4a\xdc\x19\x2c\x6a\x40\x55\x70\x48\xb4\x3a\xbe\xde\xbc\xab\xa4\x08\x40\x83\x5b\xb1\x79\x81\x16\xb8\xc3\x17\x78\xf6\x20\x83\xdb\x70\x28\x20\x92\xf3\x6b\x85\xdb\x5f\x32\xb1\x49\xf0\x51\xab\xa5\xd2\x54\x29\xab\x71\x41\x94\x44\x79\x91\xad\xed\xf5\x5d\xcf\xbb\xd8\x34\x62\x12\xaf\x0e\x15\x20\x2a\x90\x88\xbf\x85\x70\x82\x84\xf8\x04\xd2\x4a\xbe\x50\x33\x34\xb1\x04\x56\x8a\x7c\x1b\xda\x89\x75\x4b\x49\xc0\x70\x86\x8c\x0d\x8a\x5e\x35\xb2\x96\xd6\x84\x51\xfb\xdc\x5c\xbb\x1c\x71\x52\x3e\xe3\xd8\x37\x1e\x10\x06\xc1\x39\xf1\x11\x7c\x42\xf5\x00\xd3\x7c\x64\xc3\x22\x5a\xe1\x3e\x19\x52\x0a\x3e\x3b\xb0\x4d\x11\x64\x71\xa8\x9c\x57\xef\x79\xc3\x97\x85\x85\x56\xbe\xc1\x72\xbf\x11\x28\x42\xce\x0d\xd5\xb5\x78\xb9\xec\xf7\x63\x11\xca\x94\x1a\x46\xb3\x2f\xfe\xf3\x26\x6e\x1e\x64\x29\xa2\xbe\x51\x54\x66\x54\xcb\x18\xaa\xf3\x6b\xd5\x52\xe9\x99\xd0\xee\xf7\xd8\xf0\x93\x0a\x36\x72\x06\x23\x1a\xe9\xb8\xd3\x7a\x72\xb6\x5c\x2e\x35\x67\x81\x72\x11\x21\x6a\xf9\xdf\x40\xb0\x97\xb3\xbc\x49\xbe\xaf\x9f\xa6\x68\xd1\x63\x9d\x7c\xa0\x74\x65\x3f\x18\x3f\xa8\x98\x15\xd9\x17\xe8\xbd\x9c\x73\xe4\xa2\xf2\xa7\x70\xeb\xf3\x3c\x90\x2d\x32\xdb\xc4\x09\x28\x66\xd3\x6a\x12\x7e\x0e\x0b\x15\x59\x29\x33\x5e\x10\x88\x76\x75\x68\xe9\xb3\x78\x1c\xed\x13\x74\x41\xf7\xaf\x57\x09\x0b\xbf\x73\xe0\x1b\xd7\xbb\xd6\x09\xb6\xee\x44\x36\xbe\xfc\x2b\xae\x53\x51\xa5\x48\x62\x59\x52\xdd\x14\xa0\x39\xa6\xa0\xc4\x85\x73\xf9\x56\xa0\x8a\xd0\xab\xd8\xa3\x62\x32\xe4\x8d\xdf\x99\xe9\x8c\x93\x09\xad\x40\xfc\xfa\x65\x4a\x01\xf1\xff\xf7\x77\x7c\x33\xe4\x63\x54\xfb\x22\x2e\xaf\x74\x96\x4e\x22\x66\xe1\x64\xde\x3d\x61\x98\x5d\x3d\x92\x61\x94\x14\x53\x3a\x79\x40\x0e\x2d\xde\x62\x74\xb3\xa4\x26\xac\xa9\xba\xd9\x44\xe3\x72\x2e\x68\x5c\xce\x85\x89\x93\xc0\x09\xcf\x44\xf1\xb2\x52\x69\x38\x1a\xa8\xd2\xf0\xa8\xa2\x1f\x95\x49\x9e\x96\x09\x94\x6e\x91\x7f\xeb\x22\xf0\x47\x63\x4f\x51\xbf\xac\x8c\xe1\xbb\x36\x8c\xf2\x6a\x23\x90\x56\x20\x1a\xb3\x1f\x6a\x55\xae\x0b\x35\x38\xf0\xd8\x83\xd0\x21\xa0\x89\x5d\xa9\xbb\xe5\x55\xd8\x5b\x31\x0c\x17\xe3\xde\x4a\xa0\x0a\xa8\x57\xc6\x4f\xaa\xdc\x82\xc7\xa4\x9e\x48\x86\x94\xf5\x3a\xee\x22\x5f\xa8\x51\xdd\x70\xad\x3a\x7e\xd6\xa6\x15\xe1\x01\x7a\x36\x98\xac\x70\x4c\xe5\x0b\x5a\x9d\xa2\xe9\xfd\xb0\x92\x28\x29\x78\xce\x8c\xcd\xb2\x9b\x94\x5f\x58\xa8\x5b\x29\x20\x5e\xc4\x57\xc7\x66\xbb\x3d\x41\x6d\xff\x52\x3b\x0f\x07\x69\x6c\xb2\x7c\x10\x8d\xe8\x09\xb1\x48\x85\xea\xcc\x9e\xf3\x62\xf0\x45\x96\x86\x51\x5a\xe2\xbe\xc8\x09\x50\x7d\x40\x7e\xad\x90\x7c\x45\x16\xf5\xfb\x36\x63\xd9\x62\x24\xa5\xf7\x6a\xde\x6e\xde\x17\xf6\x42\x43\xcb\x79\xbe\x1d\x9a\x51\x54\x30\x01\x59\x47\x7d\x7e\xdd\xa0\x5d\xb9\xd0\x8e\xcd\x92\x77\xa9\x63\x22\x1a\xc0\x96\xfc\xba\x69\xae\xd9\x4d\x13\xcf\xec\x17\x88\x99\x9e\x4e\x35\xb4\x3b\x48\x65\x34\x53\xc2\x9a\x18\x0c\x8a\xb4\xf5\x43\x8e\x68\x96\xd1\x81\x5d\x6d\x12\x24\xe3\xdf\xc7\xae\xc5\xa6\xfb\xb6\xea\xd1\x5d\x55\x0a\x41\x5e\xb1\xdd\xac\xa4\x51\x77\x07\x51\xfe\xb2\xea\x53\x5e\xf6\x06\xb7\x65\x41\xdc\xe2\x21\x4d\x38\x1c\xd5\xe9\x8a\x92\xf4\xe3\xfa\x5e\x90\x20\x92\x62\x92\x4a\xcc\xb4\x9f\x53\xa0\xe8\xa1\xa5\xf4\xd0\xdf\xa1\x6c\x04\x55\x01\x13\x93\xd0\xd8\x22\xb5\xce\x9d\x46\x1c\xcc\x12\x60\x79\xcc\x9a\x54\xe6\xc3\x4a\x1d\x73\x25\xea\xee\xf5\x3b\xeb\xcf\xc6\x3e\xab\x63\x8b\x5f\x9c\x5f\xa7\x95\x6b\xf9\xdb\xf5\xa6\xa5\xe2\x75\x9d\x57\x65\x99\x2d\xb3\xb4\x9b\xc6\xd5\x7a\xae\x99\xf9\xe0\x7b\x0b\x37\xa0\x29\x5f\x0d\xd3\xe1\x28\xb6\x05\xa3\xe1\x5c\xf6\xe1\x64\xbf\xb7\x82\x27\x77\x2a\x72\xd3\xe1\xcb\x44\x58\xd4\x56\x6c\x96\xeb\x34\xba\x9d\xdf\xeb\x27\x6a\xc4\x7c\x41\x5b\x0f\xbc\xa5\xfa\x4a\x3f\xfb\x73\x30\xad\xc5\x9e\xf8\x14\x3f\x26\x42\x46\x0a\xd4\x35\xdd\x69\xda\x2d\x79\x91\x45\xcb\xe2\x9b\xc2\xe4\x2e\x6a\x0b\x08\xd1\x4b\xf5\x79\xcb\xe1\x08\xa0\x59\x71\x7c\xf4\x71\x64\x73\x22\x44\x2c\x3c\x7f\xb0\x6d\x8f\x8c\x62\x18\x07\x78\x36\x0a\x53\x16\xf8\x42\xb1\x51\xf2\x6a\x3b\x01\xdb\x8e\xec\x93\x49\x98\x7c\x31\xa1\x43\x31\x37\xd7\xce\x6c\x51\x66\x5e\xc2\x05\x28\xa1\x4b\xca\xd6\xeb\x52\xad\x3c\xec\xdb\xfc\xef\x54\x67\xb0\xc3\x91\x3e\xe7\xbd\xf4\xe8\x7b\x31\x7c\x5b\x95\xb7\xbf\x47\x0d\x1e\xd6\x4a\xa5\x93\x1d\x2d\xdd\x6d\x2c\x38\x6e\xb5\x06\x4a\x94\xe1\xaa\x92\x52\xc4\xb1\x8b\x73\x62\x1f\xf4\x2f\xa5\x39\x5b\x9d\xcd\x58\xbb\xbf\xcd\x33\x0c\xf4\x02\x4e\x62\x9f\xab\x8f\x35\xeb\x27\xba\x55\x06\x20\xc0\xc7\xea\x19\x21\xb1\x38\x41\x65\x07\x42\xe5\x65\xad\x4d\x75\x5d\xcf\xf4\x37\x91\x6f\x21\xe2\xee\xa1\xda\x5c\x5c\xe7\x69\x8b\x20\x31\xf9\x60\xfc\x98\x87\x8a\x0f\x47\x65\x12\x15\x6b\x78\xe6\x2e\xbb\x71\x99\xf5\x45\x55\x02\x8e\x7a\xd1\xd7\x41\x83\x91\x7f\x9d\xc6\x44\x88\x2f\xd6\xfd\x7a\xcd\xc2\xc1\x3e\xcf\x60\x79\x54\x9b\xbb\xfe\xdf\x38\x7d\x71\x84\x3d\xa8\x34\xd1\xd9\x69\x14\x79\xf5\x23\xeb\x8a\xeb\xf1\xbf\x04\xda\x42\xf6\xbe\x75\x19\xae\x85\x26\x2b\x5a\x2a\x7e\xa2\x52\x11\x1a\x75\x03\x24\x32\x2b\x93\xb4\xd7\x6b\xf9\x06\xcb\x51\x25\x31\x78\x74\x22\xfe\xcf\x1e\x6a\xa7\x4b\x79\x58\x32\x24\x0a\xe1\xea\xd3\xc0\x07\xd0\x4f\x1b\xa8\x07\xcf\xb6\x97\xec\x20\xe2\x44\xc5\x99\xae\x2e\xce\x70\x69\x78\x9a\x56\x24\xe2\xe4\x8d\x06\x15\x90\x76\x94\x44\x0a\xf1\x2d\xa2\x77\x2d\xa5\x86\xa7\xb4\x3b\xa2\x95\x28\x7e\xc0\x83\xd0\x40\xf7\x44\xce\xb8\x6b\x5d\x99\xd8\xff\x14\x37\x1d\x65\xd4\x1d\xe5\x9f\x79\x3b\xd0\x50\x32\xd5\xe1\xde\xd3\x51\x4a\x16\x5b\x63\xef\x64\xc7\x2e\x60\x22\x5d\x4b\x8f\x09\x1d\x8b\x5d\x1d\x39\x99\x12\x1b\xf5\x07\x4b\x29\x4c\xef\x91\xf5\x7e\xc2\xc9\xb8\x63\x08\x38\x20\x28\xd4\x21\x19\x39\xd7\x24\x58\x91\x99\x51\xd4\xb5\x40\x24\xfd\xe2\x0b\x4e\xab\xdb\x1f\x3e\x9b\x2e\x0b\xb1\x47\x42\x6b\xbb\xae\xb7\x80\x3c\x11\x83\x7c\xa4\x7b\x68\x17\x09\x91\xef\x11\xf7\x6b\xa3\x34\x2f\x33\x4b\xa0\x03\x36\xbf\x52\x1e\xe6\xff\x17\x7d\x5a\x76\xd9\x41\x1c\x17\x30\xc2\x63\x8e\xb1\x93\x47\x7d\x95\x2a\x88\x42\x3d\x3d\x03\x91\xae\x97\x93\x7f\x94\x8a\x07\xce\x2c\xe7\x1e\x5c\x05\xf3\x45\x13\x04\x72\x54\x15\x75\x61\xd4\x95\x30\x8e\x07\x03\x7c\x1e\xbf\xf6\x3a\x7b\x36\x4b\x5f\xae\x09\x45\xfd\xb1\x16\x75\xf9\xe3\xa6\x66\x7b\x2f\x33\xa1\x48\x04\x39\x63\x5e\x05\x0a\x52\x52\xdd\xdd\x95\x28\xe7\x69\xaf\x10\x49\x14\xb2\xe4\x4c\x83\x46\xd2\x7c\xbb\x17\x25\x24\xe6\xcf\xb7\x07\x0b\x11\x4d\x3e\x7e\x5d\x03\xf3\x0d\x92\x9a\x63\x1b\x3b\xdb\x4b\x1f\x74\xe7\x19\xf7\x74\x75\x48\xb0\x68\x90\xdf\x9c\x4c\xf4\x13\x9b\xf1\x86\x85\xd5\x8d\x72\x33\x1a\x59\x93\xf1\x1f\x43\x53\x92\xe7\x27\x7c\xa1\xba\x2c\x5f\x2b\xd3\xc2\x30\x38\xe5\xf0\x0c\x47\xa3\xa9\x8e\xea\x13\x6e\x28\x96\xf4\x69\x25\xf7\xb3\x31\xfe\x2c\xd9\x4d\x96\xce\x5e\x8a\xb1\xf6\x10\x22\xa7\x3a\x1e\x82\x70\x93\xde\x06\x09\xdd\xf7\xf4\xe0\xfa\xac\x06\x46\x55\x1f\x2c\xb5\x0c\x80\x74\x60\xc2\xea\x83\x69\x64\x05\x92\x8c\x63\xb4\xfd\xf9\xb5\xea\x70\x00\x32\xd0\xb7\x49\x88\xd0\x83\x5c\xe3\x9c\xca\xc5\xcf\x35\x19\xb1\xe6\x69\x49\x3e\x17\x4e\x14\x9f\x6d\x77\x90\xc5\xf2\xc1\x23\xb0\xfa\xbf\x45\x67\x8a\x57\x86\x83\x3c\x54\xef\x21\x02\x73\xb2\xbd\xd3\x62\x60\xb3\xd5\x28\x87\x97\x12\xca\xff\xc7\x30\xca\x13\xf5\x6f\x8a\x73\xdc\x0c\x50\x78\xbc\xe9\x75\x8d\x52\xc5\x7d\x74\xd4\xec\xc3\x33\xae\x2b\xe2\xac\xcc\x37\xbf\xd8\x79\x44\x8b\x09\xe6\x45\xdd\x70\x9b\xd5\x3c\xf9\xa2\x09\xed\x47\xed\x22\x32\x99\xcb\x58\x4d\x0d\x35\xc3\x35\xfa\x23\xfc\x7a\x62\x2d\xcf\xcd\x2d\xb6\x57\x4c\x16\x59\xd6\xd1\x43\x57\x82\xb5\xa3\xb9\xed\x38\x56\x9b\x5e\xc1\x30\xe2\x74\xd5\x15\x55\xac\xdc\xae\xd2\x24\x44\xf7\xed\x49\x49\xed\xea\x19\x98\x6c\xc8\x82\x08\x38\x71\x2f\xe8\xb6\xc4\x71\xe4\xd7\x68\x77\xbc\xa9\x06\x7c\xd1\x70\x94\xe6\x2c\xda\x8f\x15\x72\x05\xd9\x08\x5f\x34\x8a\xd3\xd8\xa2\xa8\x16\xbb\x43\xa3\xb3\x29\x11\x6e\xe4\x31\xc5\xc3\xbe\xa8\x44\xda\xce\x2a\xbd\xcb\xb8\x0c\x33\x38\x47\x53\xb2\x85\x66\x18\xcd\x78\xe5\xb5\xea\x68\xa6\x23\x9b\x91\x30\x3d\xe9\x05\xb3\x21\x02\xbd\x31\x72\xa1\xfd\x1d\xa5\x33\xf0\x06\x12\x3e\xbe\x50\x8a\xb6\x60\xca\xc9\x6c\xae\x66\x97\xbc\x73\x45\x57\xb1\x28\x4f\xe3\xd2\x41\x3c\x5d\x5b\x49\xf5\x98\xd6\xfd\xf8\xc1\xf4\xfa\x03\x93\x44\x79\x61\x58\xac\x5b\x24\x47\x7d\x7f\xfe\x64\x3d\xc1\x8d\xed\x1e\x5f\x2a\xb3\x12\xa3\xdb\xab\x73\x73\xcc\x31\xf8\xc9\x58\x75\xd7\xd9\x48\x0f\xc8\xd7\xcb\x0d\x59\xc7\x42\xfb\x6b\xa5\xc9\x0a\x5b\x40\x9a\x4e\x9c\x42\x14\x9a\xed\x54\x0d\x3d\x31\x60\x82\xaa\x78\xd8\xd2\x87\xe0\x8b\x40\x97\x73\x85\x70\x92\x1d\xf5\x60\x51\x10\x29\xef\x22\xdd\xe0\x7f\xa0\x56\x01\xff\xc3\xc4\x07\x7c\x61\xf6\x90\xd8\xcc\x73\xa8\x96\x4c\x55\xa7\xad\x4d\xb5\x78\x68\xca\x5c\x8e\x4c\x16\x61\xa1\x3b\x2b\x82\x2c\x4f\x28\x70\xa9\xed\x46\xa1\x19\xb2\x3f\xc8\xac\x53\x6a\xf3\xea\xc9\x1a\x60\x15\xc5\xb1\xed\x57\x69\x1a\xcd\xf8\x04\xe2\xa9\xf8\x44\x9b\x81\x5f\x33\xe7\x94\xcf\xc0\x6a\x9a\x15\x83\xb5\x29\xea\xc2\xb9\x6a\xd0\x67\x7a\x63\x3f\x7c\xfd\xa6\x8a\xf0\x4e\x2b\x51\x99\x8b\xbf\xa2\x10\xd0\xaf\x34\x8d\x3c\x86\x26\xeb\x47\x89\x92\x99\xba\xa8\x35\x2e\x26\xd5\xf7\x0e\x1c\x68\x57\xe7\x61\x1c\x93\xc5\x9d\x43\x6b\x7c\xa2\xb2\xcf\xef\x20\x30\x0b\x01\x43\x55\xa8\x3f\xff\xf3\x2d\x9f\x5a\x41\x20\x9d\x5f\x2b\x02\xc3\x88\x98\xca\x00\x4d\x3e\xcb\xe5\xe7\x9f\xd2\xdb\x23\xd4\xdc\x54\xc4\xbc\xdb\xaa\x2c\x8d\xcd\x6a\xbe\x57\xd9\x18\x6f\x28\xd5\x7b\x56\xc8\x13\x99\x34\xe5\x5c\x0c\x62\xb9\xe8\x2a\x78\xd9\x9c\x23\x4a\x9c\xa1\xca\x01\xd0\xae\xf1\x94\x0d\xc2\x2b\x7a\xfa\xc6\xcf\x3a\x43\xc2\x70\x50\xf7\x1e\xad\x59\xd3\x7a\xeb\x93\x2a\xab\x48\xa3\xc4\x39\xf2\x20\x18\xef\x5d\xf7\xf3\xe2\xcf\x77\xd4\x44\x75\xcf\xba\xe7\xd4\xd7\x20\xe2\xf4\x95\x17\x78\xdb\xde\x18\xab\x85\xff\x2a\x56\x9a\xa0\x4e\x55\x5f\x3f\x50\xa5\xd6\xd5\x40\x11\xad\xaf\x6a\x71\x5c\x93\x2f\xdb\x02\x3d\x51\xa4\xe7\x2c\xe4\xce\x17\xba\x61\xfc\x09\x05\x15\xe1\x32\x2b\x4b\xaf\xdf\xd1\xda\x38\x5d\x7b\x7f\x75\xd3\x94\x9e\x62\xcd\x85\x6f\x81\x2f\xde\x57\xaa\x39\x50\xad\x43\x22\xcd\x82\x50\x28\x5c\x21\x2b\x8d\x83\xe8\x18\xbe\x35\x2b\x57\x20\xce\xb8\x8d\x79\x78\xc6\x45\x4b\xff\xdd\x5e\x4e\x07\x49\x9e\x26\xd3\xbe\xc6\x41\x91\x27\x6a\xac\xd5\x7b\x23\x95\xdf\x44\xb1\xcd\x17\x6a\xf4\xc4\xaa\x1f\xc0\x02\x8a\xc4\x9e\x12\xec\x78\x15\xb1\x55\x8b\xec\x8b\x3a\x42\xf5\x97\x64\xf1\xed\xe4\x7a\xcf\xcd\xb5\xe3\x7f\xfc\xf3\x3f\x4f\x3a\xf2\xd8\xf9\xb7\x02\xa5\xb7\xf4\x81\x32\xd5\xf8\x64\xa2\xb0\x3c\x70\x80\x55\xb5\x38\x98\xe1\x28\xfb\x4d\x9d\x11\xfe\xe6\x04\xa8\xe8\x69\x56\xa4\x92\xe4\x0a\x6d\x96\x5f\x1f\x2b\xf5\xad\x5f\x57\x06\x97\x44\x84\xee\x0f\x0a\x9b\xb4\x7c\xe7\x01\x01\x50\x90\x42\x0d\x05\x6b\x98\xae\xd8\xcc\xf4\x05\xeb\x88\xc9\x00\x9f\x1d\x7c\x31\xf1\xc1\x0e\x1c\x68\x8f\x32\xf2\x47\xa4\xe8\xc4\x78\x1a\xa5\xeb\x78\x72\x82\x9e\xf1\x74\xf5\x1b\x5f\xaf\x8b\x07\x7c\xa0\x57\xfb\x07\x8d\xb6\xb6\x5d\x1b\x53\xd5\x88\x66\x0d\x06\xa8\xfc\x7a\x02\x02\x5d\xc5\xbf\x7e\x3f\xb3\x7d\x53\xc8\xb7\x91\x4e\x3b\x7d\x1b\xe9\xc1\x4b\xff\xe1\xa9\xff\xee\xbf\xce\xb5\xc3\xc6\x2e\x8a\x7a\xfc\xba\x33\xd9\x1a\x98\x6d\xc7\x51\x95\xfd\x90\x48\x05\x82\xd7\x7b\x81\x36\x5c\xd6\x84\x36\xda\x29\x00\xde\xdc\xa5\x29\x8f\x48\x99\x34\xc9\xd5\x0d\xcb\x24\x0a\xa3\x91\x89\xa7\x15\x34\xf5\x3d\x0c\xc3\x04\xbf\xd5\x72\x2e\xab\x28\x88\x85\x4d\xb4\xf3\x91\x2e\xce\xb4\xad\xc9\x86\x26\x5b\xe6\x5c\x52\xfc\xef\xe8\x5e\x4b\x5b\x90\x9e\x02\x4a\xa0\x6b\x4d\x6d\x8c\x95\x34\x2e\x93\xc2\x64\xc8\x62\xd1\x92\xb8\x12\xb8\xf4\xfa\xf7\x4e\x2a\x23\xb7\xe3\xe3\x9f\xa9\x43\xa4\x7e\xe9\xa0\x14\x48\x2d\xc5\x84\x3b\x8b\x4f\xc0\x17\x13\xdb\x6b\xf6\x50\x3b\xb6\x79\xbe\x57\xe1\x5c\x19\xd9\x80\x89\xe5\xa7\xb0\xdb\x40\xde\x0c\x7c\x35\xce\x8c\x7b\x4a\xe2\xe0\x8e\xf2\xbc\xde\x5d\x53\x57\xcb\x42\xfb\xa0\xf6\xdb\x6a\x2d\x2e\x6c\x6f\xea\xb9\xdc\x05\x4c\xef\x9c\x12\x86\xd3\x06\x60\x0d\x44\x87\x35\xaf\x9e\x90\xc3\x50\xb8\xde\xcd\x7b\x8a\xff\x7b\x5d\x8b\x19\x5f\x09\x14\xcc\xec\x27\x2a\x13\x25\x0f\x19\x47\x1d\xcd\xac\x29\x40\x0f\xf2\xf8\xc3\x0f\x01\xdf\xe2\x8b\x26\x6d\xe0\x97\x6d\x3a\x32\x59\x17\x54\x55\x64\x8e\xd7\x82\x1d\x3d\x39\x69\xcf\x9e\x54\xf9\x48\x6e\x92\xee\x6a\xc4\x4a\xe4\xe2\x1a\xe9\xa7\x39\x1b\x6a\xa4\x95\x45\x2b\x91\xcd\x0c\x11\xff\xf0\x17\xbe\x1d\x78\x66\xf1\xb7\xab\x8d\x2e\xb9\x70\x97\x31\x05\x48\xef\x5b\xca\x99\xcc\x0f\x50\xce\x36\x69\x68\xd8\x15\x36\x4d\xc3\xe6\x81\x38\x1b\xbf\x0e\x3e\xaf\x51\xf1\xbd\xa8\x5f\x66\x20\x60\xa9\x3c\x1e\x78\x56\x7e\x5d\xed\x6f\xe1\x9f\xad\x42\x59\x0e\xe7\xe2\x6d\x9a\xe8\x32\xbb\x96\xc2\x22\x12\xa4\xd7\x94\x72\x52\xb8\xcc\x85\x94\xa4\xe4\x14\x46\x84\x7b\x42\xcb\x45\x7c\x0b\xfc\xf1\x59\xc4\xf6\x51\xf2\x77\x17\x18\x84\x3a\x7f\x69\xbe\xbc\x08\xf8\xa9\xa0\x88\x59\xbe\x5d\x5c\x5d\xab\xbb\x09\x20\xe8\x83\x1d\x9f\xad\x6e\x68\x31\xbf\x7f\xad\xbd\xac\xc0\x25\xc6\x38\xe9\x0a\x01\x0a\xb1\xa7\xde\xa0\xdb\x86\xa3\xe9\x51\xf4\xff\x70\x54\xbf\x33\xd6\x01\xc8\x53\xc4\x99\x11\x20\x7a\x5a\x9e\xe3\x92\x97\xc3\xa1\xcd\x7a\x69\xbc\x5c\xd7\xf9\x99\x9f\x77\x90\xb2\xcf\x6b\xb6\x52\x1c\xf5\xb8\x4e\x9b\x52\xec\xbb\x37\xe9\xf3\xa0\x7c\x65\x73\x01\x11\x45\x56\xfc\xfc\x32\x2a\x1e\xac\x22\x3c\x52\x94\x1f\x68\x52\x2d\xd3\xd7\x70\xc3\xef\x51\x3b\x1d\x25\xe2\x71\xfa\x28\x18\xec\x9f\xc3\xbe\x75\xa2\x60\x8b\xe2\x1a\x8e\xf1\x25\x9b\x37\x05\x93\x5c\x72\xdc\x8f\x6f\x63\x43\xe3\xc1\x4c\x75\xfc\xc2\xbb\x33\x71\x86\xcf\xcd\xb5\xd3\xb2\xc8\xa3\x2e\xb2\x6b\xbc\xf3\x9f\x29\xc4\x03\x49\xe4\xf2\x0c\xee\x54\x63\x99\xd6\x8d\xf2\x51\x6c\xd6\xf8\x74\x12\x49\x0a\x35\xcf\x3a\xa1\xd8\x93\xf3\x07\xbe\xdc\xf2\x63\x71\x2e\x41\xc5\x67\xcc\x37\xf4\x7a\x71\x75\xe8\xe7\xb4\x41\x95\xc8\x81\xa4\x0b\x9b\xb5\xce\x5c\x59\xac\x4d\xfb\x69\xfd\x1f\xe8\x04\xe6\x5f\x2b\xbd\x63\xdd\x09\x3b\x3f\xf1\x4d\x5e\x7a\xa9\xbd\x66\xb2\x6e\x5e\x44\xe1\xf2\x94\xb7\xaf\xfe\x6b\xc5\xae\xc5\x20\x53\x18\xcb\x0d\xba\xa9\x71\x0a\xc9\xc4\x05\x2f\xcb\x24\xf2\x59\xb3\x8f\x75\xfc\x10\x7a\x8a\x40\xcc\x62\x10\xf1\x39\x95\xec\x98\x22\xaa\x3e\x01\xdd\x22\xd4\xc9\x18\x88\xf2\x6b\xd5\xf9\xeb\xa5\x59\xcf\x46\x45\x99\x59\x9a\x6a\x08\x19\x8a\x6e\x12\x3e\x3a\xeb\xeb\x61\x70\x73\x49\x21\x43\xcf\xd3\x22\x42\xa5\x73\x9d\x8a\x3b\x9c\xc7\x53\x1d\x4f\xef\xfd\x58\xc1\xc5\x78\xd8\xe8\x5c\x4c\x58\xb2\xab\x7a\xc7\x6d\x64\x2f\x00\x7e\x9c\x6e\xa2\xbc\x16\x36\xf7\xb8\x38\x14\x30\xd7\x15\xb5\xf3\xba\x8b\x53\xc3\xb4\xb0\x7a\x7a\x7e\x52\x4d\xcf\x4f\x2a\xd0\x45\x6e\x49\x7e\xf4\x01\xda\x53\x6c\x4b\x84\x47\xee\xac\xc4\x0f\xcf\x78\xe7\xbe\x5f\x7c\xc1\xdb\x46\xbb\xa4\xf8\xb8\x26\x0e\xc0\xab\x0e\x61\xe8\x8a\x1a\xce\xf1\xb1\xc8\x1c\x07\xea\x12\x68\x17\x24\x8e\xb3\xaa\x6e\x2b\x4c\xd6\xb7\x05\x53\xba\x18\x03\x8d\x7d\xe0\xc8\xd0\x1e\x8c\x89\x9b\x80\x52\xe3\xc4\x58\x71\xba\x26\xe9\x0a\xf3\xf3\x6d\x1b\x77\x3d\x5e\x03\x53\x1b\x16\x9c\xe2\x8b\xb1\x3f\x20\x66\x23\x2a\x1c\x5d\xa9\x53\xfd\x14\x5f\x4c\xb4\xf6\x60\x80\x4b\x92\xc4\x38\x7b\x9c\xba\xcc\xbc\x16\xd3\x71\x38\xe2\x28\x8f\x92\xfe\x7e\xfa\x49\x61\x8c\xd1\xfb\x63\x82\x09\xdd\x56\x41\x28\xfa\x69\x38\x70\x71\x98\x24\xdc\x09\xd4\x8c\x61\x4b\xa9\x36\x5f\x41\x38\x43\xc8\xdc\xbd\xae\x30\xfb\x65\xb6\x42\x67\xaf\x2b\xc3\x79\xc0\xc8\x17\x13\x62\x39\xc4\xfd\xb6\xb4\x89\xb1\xf8\x77\x01\xde\x84\xa8\xfd\x91\x1a\x1f\xdf\xae\xe9\x2a\xae\x98\xe1\x28\x4a\x60\x36\x02\x08\xcf\x74\x47\xa9\x20\xbf\x35\xf6\x1f\x16\x7e\x1d\x52\xbf\xd5\x82\x51\x7e\x04\x2d\x6f\x04\x1d\xe8\x2e\x30\x1e\x1f\xc9\x2f\x02\xc8\x5d\x65\x94\xfc\x1f\x54\xcf\x67\x68\xc2\x70\x10\x99\x2c\x8d\x0d\x06\xa0\x0e\xaf\xe1\xb1\x1b\x0d\x62\x4e\xd5\x89\x35\xb2\x59\xbc\xd6\xd2\x5b\x61\xec\xf1\xba\x5b\xc1\xe7\xea\x09\xed\x4b\x2f\xb5\xbf\xf4\x84\x3f\x5c\xef\xd5\xcd\xd1\x9c\x99\xe4\x25\x82\xbb\xe3\x0e\x9c\xc6\x3a\x15\xf8\x24\xdd\x54\xbe\xa0\x30\x82\x6f\x76\x94\x25\xb9\x1c\x7e\xf8\xf0\x8c\x90\x1d\xc6\x94\x51\xb8\x62\xf9\x17\x5f\xe0\x6d\x87\xf1\x9f\xa8\x27\x52\xa8\xa8\x2d\x2f\x1c\xb1\x8f\xac\x53\x40\x13\x2b\xc7\x2a\xf1\xe1\x94\x10\xfb\x1f\x39\xf5\x99\x71\xeb\xab\xb3\xce\x93\x13\x3b\x46\x24\x69\xe8\x86\x22\x1b\x3e\x3e\x51\xb4\xbc\xf4\x52\x7b\xb4\x96\x99\xa1\x02\xb0\x38\x97\x0b\xe5\x66\xf1\x44\x43\x63\xc4\x4e\xab\x76\x34\xef\x79\xbe\x50\xdd\x63\x80\x1d\xf9\xb5\x9b\x8c\x41\x25\x49\xf6\x36\x4f\x97\xc7\xb5\x51\xf3\xa4\x77\xc1\xfc\xfc\xe7\xe8\x03\xe2\x19\xbd\x86\x85\x25\x11\x89\x1e\x12\x06\x53\x53\xeb\xf4\x95\x45\x23\x9d\x9e\x18\x7e\x67\x17\xdb\x6a\xa2\x4d\x78\x3f\x9d\x4e\xce\xd6\xcb\xfb\x25\xaf\xe3\x01\xe0\x59\xde\x53\xd6\x15\xf7\x00\x18\x10\xc3\x04\x02\x1c\x8a\x31\x42\xf5\x30\xd1\x3c\x3b\x3d\xf6\xfd\x9c\x0f\x34\xab\x0f\x12\x74\x6c\x26\x1e\x28\x3b\x0f\xae\x4c\x10\xf7\x27\xb5\xe4\x0f\xcf\xbc\xd8\x2e\xe0\x62\xee\x04\x1a\xd1\xa1\xd3\xc8\x60\x7c\xc4\x63\x0d\x98\xab\x67\x5d\x94\xd6\x53\x3f\x6e\x9b\x49\x98\xfe\x2c\x5c\x60\x58\x2e\x19\xd5\xba\xe4\x1e\x33\x5f\x4c\x84\xed\xe7\xe6\x21\x41\xc1\xf5\xb8\x0c\x8e\x14\x33\x6c\xcb\x0d\x89\xfb\xd1\x70\x18\x85\xcb\x4c\xa2\x14\x9d\x6e\x5f\xf4\x6c\xa9\x4e\x59\x2f\xca\x07\xe4\x89\x37\x37\xc7\xfb\x8a\x25\x1b\xf9\x42\xc1\xee\x96\xd2\xa4\x9b\x3f\x8c\x07\x0d\xb0\x1d\x3b\x89\x8a\xe0\x04\xdd\x78\xfc\x89\x3b\x14\xbc\x9d\xb1\xd2\xe2\x0c\x57\x15\x7b\x3a\x4a\x7c\xe1\x2d\x05\x1b\x03\xfd\x11\x19\xe7\x03\x08\x94\x58\xf3\x0f\x75\xbc\xbe\xc3\xae\x75\x85\xa0\xf8\x7e\xe0\x6d\x8a\x77\xaf\x7b\x25\x55\xe6\x12\xa0\x75\xf8\xbf\x05\x9a\x24\x9d\xae\x44\xe2\xc1\x2c\x04\x9a\x96\x33\x1a\x3d\xde\x28\x9b\x93\xa5\x23\x26\x7e\x0b\x53\x55\x49\xb0\xde\xae\xb1\xd7\x76\xea\xdb\x91\xe1\x96\xc9\x6c\x52\x0c\x08\x03\xec\x52\xbf\xb7\xc7\x4a\x17\xef\x6d\x35\x79\x8e\xab\xd5\x04\xde\xe6\xbc\x63\x47\xf9\x91\x07\x37\x11\x71\xbb\x27\xa1\x19\xd5\xdf\x1b\x98\x2c\x8b\xf2\x96\x02\xa6\xb3\x6f\x1d\x5f\xa8\x9a\x2c\x0a\x97\x1f\xa1\xfb\x2c\x92\x80\xf4\x4b\x6e\x40\x7b\xd8\x13\x27\xf1\xc8\xb1\x9e\x6f\x29\xd1\xac\x53\x3a\x68\x1f\xc5\xe3\x07\x00\x08\x11\x1c\xd3\x0e\xbe\x63\x08\xb4\x9f\x6a\x2a\xde\x15\xec\x7a\xde\xb7\x94\x2c\xb1\x48\xae\x66\x3f\x22\xbb\x12\xff\x49\x9f\x75\xdf\xdf\x51\xc4\x55\x13\xa7\xb0\x94\xc7\x2f\x69\xe4\xec\xe4\x01\xb7\x38\xd3\x1e\x9a\xc2\x66\x51\xcd\xe1\x71\x4b\x49\x01\x4d\x1a\xba\xcd\xcf\x1f\x6c\x8f\xa2\x82\x1b\x02\xdc\x72\xc2\xad\x95\xfe\x93\x47\x81\xf5\xd3\xb8\x6b\x93\xbd\xca\x2d\xf4\x9b\x63\xbf\x07\xd6\xf1\x18\x1d\x3c\x4f\x45\x0e\xe5\x1d\xb9\x3e\x56\x4c\x87\x5d\x13\x38\xe6\xa7\xab\x47\xdd\x65\x10\x8d\x53\x30\xf4\xd9\xd9\x56\xa3\xfc\x4b\x5e\xd6\xd4\x8f\xce\xa8\xaf\xac\x19\x22\xdd\x28\xb3\x61\xb1\x8f\x9e\x2e\x1a\xd0\x50\x6f\x12\x73\xb4\xea\x49\xa1\x0f\xc2\x0d\x73\xbe\xd0\x68\x78\xda\x1b\xdb\xec\x7c\xcc\x6f\xa2\x26\x67\x26\x8e\x8a\xb4\xa5\xa0\x89\xda\x60\xe5\x8c\x76\x0a\x0c\x07\xab\x76\x34\xb2\x70\xba\x13\x4e\x94\xd2\x6b\xdd\x41\x8a\x8a\x7b\xfb\x3d\x6f\xa7\x45\xb5\x91\x2c\xd0\x6a\x4d\xe2\xbc\xba\xa9\xd0\x81\x60\xaa\xa0\x9b\x31\x45\x05\x88\x08\x11\x28\x7f\xaf\x5f\x0b\x94\x70\xfc\xaf\x35\xf9\xc7\x74\x33\xc3\xa3\x28\x57\x39\xf8\x74\x49\x01\xd2\xba\x36\x8c\x4d\x56\x45\xa1\x5f\xfe\x4a\xcd\xc4\x89\x5f\xd7\xbe\x4d\x91\xe6\x7b\x68\x19\xb0\x33\x7b\xdd\x0e\x8d\xd6\x97\xf3\x6c\x5f\x94\x81\x33\xd1\x7d\xb9\x8d\x77\x79\xfc\xff\x6f\x4a\xd2\x47\x69\x56\xf4\xd2\x38\x4a\xf9\x38\xc1\x37\x7e\x2d\xf0\xdf\xfe\xb5\x49\xfb\x7e\xfa\xc5\x41\xb4\x94\xa5\x9c\x5e\x70\xbe\x80\x87\x21\xc9\xc3\xce\x28\x38\x37\x57\x55\x97\x7d\x5b\xc0\x57\x5f\x8f\x97\x94\xff\xeb\x56\x53\x16\xda\x8d\xf2\x51\xe9\x3a\xd5\xac\xaa\x37\x56\x5c\xbb\xa3\xce\x99\x2f\x8c\xad\xc9\x60\x93\x70\xd0\x69\x27\xd0\xfa\x45\x82\xb6\xa7\xe3\x83\xfe\xb6\x12\xaa\xc9\xa3\xae\xc5\x98\x88\xc1\xc7\xca\x78\x73\x0b\xcf\x1c\x47\x1d\x72\x74\x41\x28\xd3\xca\x60\xdb\xc4\xe0\x09\xa9\x39\x4d\x52\xf6\x4c\x58\x55\xd1\x99\x38\x09\xe1\x40\xfb\x54\x4b\x01\xfe\x08\xf7\x8b\xe1\x23\xca\x23\x21\xb7\xd9\xda\xb4\x47\x41\xfe\x07\xfa\x8b\x48\xf6\x91\xd2\x22\x16\x70\x6f\x4c\xf0\xe9\x0d\xac\x7c\x9b\x14\x59\x24\xb7\x0d\xcb\x8a\x3b\x3a\x7c\xe1\x74\x98\x7b\x4b\xd1\x94\x67\x04\xd4\x7c\x68\x6f\x72\xd8\xe7\x50\xaf\xa6\x47\x3c\xfa\xa3\xbb\xe6\x5c\x28\xe6\xfd\xd0\xc9\x0b\x9c\xef\xee\xb4\x5c\xc3\x78\xf7\x3a\x05\x07\x51\x93\x7d\x44\x6b\xbe\x45\x26\xc1\xc0\x14\xc9\x3c\x83\xc5\xb4\x08\x3c\x52\xc6\x9f\xd6\x66\xf4\x4b\x09\xc2\xb7\x3c\x39\xfa\xf0\xf2\x84\x1a\x6e\x4b\x66\x57\x4d\xd6\xe5\xdb\xe2\xa4\x37\xbd\xbe\xc3\xf1\x86\xe1\xcf\xc1\xfa\x49\x51\x13\xbf\x94\x8a\xd6\xc3\x15\x7b\x26\x8e\xf3\xbd\x9e\xc5\xba\x6b\xdd\xe7\x77\xef\xd1\x8c\x43\x68\x1f\xde\x82\x92\x9b\x5b\x98\x70\x6d\xe3\x4b\xa0\x6c\xdd\x70\xe4\xd1\xa5\xd8\xb0\x9b\x12\x8e\xe4\x3b\x4a\xdd\xf9\xce\xc4\x9c\xe0\xb9\xf9\xf6\x92\xcd\x8b\x69\xef\x45\x44\x03\xc7\xed\x77\x70\xdc\xa2\xa2\xde\x0d\x56\x0f\x92\xf4\xcb\x4e\xa9\x65\xa9\xcc\xa3\xc4\xe6\xf9\x34\x1e\x3e\x77\xea\xd4\x4a\x04\xa0\x55\x16\x9f\xaa\xa7\x76\xab\x86\x5b\xda\xeb\x45\x21\xef\x2b\xf7\x2d\xab\x54\x43\xb8\xc9\x4a\xad\x1f\xd2\x5c\xae\x17\xe2\x25\xbb\xdc\xce\x58\x2a\x87\x23\xe1\x9e\xa2\x37\x84\x80\xc9\xaf\x27\x22\x87\xa8\x22\x91\x44\xa2\x03\xc2\xb0\xf7\xab\x48\xae\x78\xd4\x6f\x2f\xb3\x49\x38\xb8\xaf\xe5\x9c\x73\x77\x75\xd4\x40\x97\xed\xc6\xf0\xb7\xbe\xa3\x98\x11\xac\x0a\xe1\x42\xd9\xe2\x8c\x6f\xcc\x54\x0b\x4c\x54\x33\x94\xd9\xca\xa9\xc0\x2b\x62\xd5\xa5\x6d\x47\x11\x70\xc7\xcf\xfa\x3f\xe4\xbe\xe0\x77\x94\x37\x6a\x6c\xf2\xe2\x71\xfa\x39\x74\x84\xa0\xbf\x80\x23\x60\x3b\x50\x1a\xd3\x1f\x29\x32\xf0\x35\x3a\xec\x70\x1e\x70\x06\xcd\xf9\xb7\xca\xa0\xdf\x67\xf8\x2a\x1e\xe6\x25\xad\x3f\x7e\x5d\xd3\x0f\xae\x21\x5f\xc1\xbb\x3d\xdc\xa1\x1a\x1a\xf7\x74\x9b\xea\xf1\xed\xb3\x38\xf1\x5d\x82\xe1\x68\xdc\xff\x07\xe2\xb1\x73\x4f\x9f\x3d\xc4\xd3\xd3\xfd\x1d\x3f\x33\xe7\x12\x53\x96\x43\x43\x46\xfe\x72\x1a\x09\x76\x12\x8b\xf7\x46\xa0\x26\x94\x37\x6a\x9e\x9a\x99\x1d\xa4\x65\xce\xbc\x06\xc0\x7c\xae\x28\xc3\xec\x2b\x63\x3f\x39\x49\x43\x6b\x92\xb4\x9f\x99\xd1\x20\x0a\x71\x4a\x09\x73\xb6\xa5\x18\xb5\x4a\x40\xd8\x66\x51\xda\xdd\x87\xee\x04\xba\x1e\x60\x0c\x03\xca\xf8\xe6\x58\x67\x93\xd5\x59\x8f\xfe\xfb\x86\xe2\x27\xdd\x4f\x07\x35\x1a\xa0\x9f\x40\x93\x9c\xdf\x28\xf0\x6b\x3f\x73\xc8\x41\x81\x3d\xfa\x39\xe7\xc5\x09\x47\xd4\xc3\x33\xed\x62\x45\xf9\xf1\x9c\x0a\x14\x9b\xed\x94\x12\x7b\x35\x59\x11\x85\xb1\xdd\xeb\x1b\x41\x6f\x60\x41\x33\x9f\x2f\x50\x7f\xf2\x23\x2c\x00\x51\xb2\x50\x25\xf5\xa6\xce\xf8\xb4\x28\x51\x62\x92\x50\x44\x89\x98\xee\xad\x91\xd4\xef\x29\x46\xc9\xd7\x4a\xa8\xd9\x56\xe9\x01\x09\xc9\xa0\xbe\xf9\x13\x85\xe2\xfc\x90\xbe\x33\x0e\xe2\x63\x35\xb0\x58\x66\xc1\xdc\x72\xe0\x98\xea\x6f\x88\xb9\xa0\xaf\x75\xca\xd8\xd0\x39\x87\x24\x85\xf9\x82\xe2\xda\xe2\x69\x70\xe7\x34\x4b\xda\x0c\x47\x31\xeb\x70\xa3\xb0\x3c\xa1\x54\x73\x4e\x34\x45\x9d\xbc\xcc\x56\xec\x9a\x85\xcc\x95\x3c\x21\x15\x3e\xfe\x0d\xf6\x0e\x8e\xa8\x29\x45\xbf\x3b\x86\xad\x21\x60\xef\x27\x14\xbb\x8f\xb4\xeb\xaa\xdb\x83\x03\x12\xf1\xfc\x9e\x82\xac\x9c\xa0\x6c\x1c\x0b\x6a\x4a\x41\x3a\x4d\xb7\xeb\xa6\x4d\x72\xbc\xb7\x9c\x17\x0a\xb8\xe1\xdc\x30\x54\x15\x68\xd7\xf6\x6c\x92\x5b\x52\x42\xf2\x12\x5c\xd5\x96\x44\x90\x79\x1d\x4f\x5f\x28\xc0\x4a\xc5\x0a\x34\x1f\x4c\x9f\xc8\xfd\xe5\x59\x57\x80\x6a\xd4\x03\xdd\x4f\xce\x30\x38\xe4\x20\xa9\xfe\x77\x0d\x44\xf8\x76\x94\xf4\xd2\x30\xcd\x46\x1a\xf5\x3c\x56\x53\x9e\xc9\xb4\xf1\xf0\xcc\x82\x9f\x41\x39\xab\x0c\x80\x7c\xb1\x33\xd9\x22\x40\x8e\x36\x3f\x04\xb1\x47\xaa\x3d\x0d\x18\xfe\xdc\x5c\x23\x0c\x5f\x99\x76\x5b\x93\x17\x8f\xd0\xcd\x10\x38\x34\xdd\x33\xe4\x37\xef\x50\xf8\x45\x9f\xe2\x4f\xa9\x21\xb5\x8d\x99\x09\x36\x22\xdb\x01\x20\xa9\xb9\x3c\xf6\xc7\x24\x08\xd6\x78\xc3\x7d\x30\x5b\x12\x61\xc9\x6a\x67\xc8\x8a\xa5\x2f\x20\x5e\x8a\xd5\xb7\x14\x5f\x69\xba\xed\x18\x56\xfd\x5e\xb0\xfb\x8b\xc2\x09\xa0\xd4\x03\x8f\xe9\x47\x41\x1d\x10\x9d\x99\x15\x0c\xd5\x7d\x25\x7b\xbc\x36\xdb\x68\xf4\x47\xcd\x2c\xed\x5a\x35\x91\xde\x52\x7a\x16\x55\xf6\xe5\x85\x74\x49\x2c\x24\x2a\x4a\xf8\x1b\xb6\xbc\xb9\xd5\x86\x32\x8e\xd8\x50\xcf\x21\x1d\x15\xd1\x90\x26\x57\x64\x43\x85\x1f\xb8\xa1\xf0\xa2\x9b\xc4\x67\xc2\x46\xfc\x73\x1c\x37\xc8\x85\xa6\x3b\x0a\xdf\x7a\x53\x6d\x92\x1b\x4e\xaf\x0e\x0e\x7f\x5e\x58\x55\x7b\x0e\x3b\xba\xc4\xc0\x9a\x95\xa8\xfa\x7e\x94\x30\xe1\x91\xde\x54\xfc\xcd\x9b\x4d\x6b\xb5\xba\x27\xd1\x0e\x5f\xca\x5b\xca\xc0\x82\x67\x15\x88\x95\xf7\xaf\x7b\x68\x43\x95\x00\x87\x85\xe0\x32\x25\x48\x9d\x0d\x6a\x6a\x95\x3e\x5f\xc9\xd2\x70\xd9\x32\x2d\x48\x3c\x12\x5a\xde\x2f\x61\x02\xfe\x7c\x78\xe6\xc5\xf6\x92\x2c\x6a\xcc\xc9\x6e\xab\x99\xd9\xed\x89\xd6\xf5\xec\x21\xd2\xb1\x2e\xe3\xc2\xf1\x4c\xb0\x08\xf7\x76\x3c\x82\x63\x37\x81\xfd\x90\xfe\x9f\x6a\x72\xb4\x1c\x99\xcc\x10\x82\x14\x9f\x94\xc7\x51\x0a\x00\xb4\xa1\x64\x45\xbb\x69\x3f\x9f\x56\x0a\x94\x67\xb0\x47\x05\x22\xd7\x72\xc6\x15\xbb\xe8\x23\xa0\x32\x98\xd4\x3e\x38\x3c\xf3\x6c\x7b\xd5\xe4\xac\xd5\x2f\x0b\x93\x0e\x56\xbf\x32\x27\xef\x0e\xac\x54\x5a\x3e\xba\x63\x88\xc7\xaf\x5d\x1e\xba\x1c\x25\xd2\x70\x61\x01\xcc\xc0\x13\xd0\x26\xdb\xc3\x4f\xb7\xf3\x70\x60\xbb\xe5\x84\xd5\xb3\x22\x3c\x5c\x70\x07\x7d\x37\x0d\x8b\x14\x20\x4d\x9c\x1c\xff\x42\x9d\xf3\xff\xa2\x36\x14\x8a\x12\xfb\x44\xeb\xa9\xa7\xbc\x9d\xca\xe1\x19\x07\x64\x47\x44\x45\xc7\x9a\x27\x44\x18\x4e\x71\x5a\x26\x53\x2e\x5a\x68\xbc\x14\x3b\xde\x1b\x96\x1b\x0c\x28\xc3\xde\xa6\x61\x0d\x06\x8c\x9c\x3d\x8b\x15\x0b\x45\x26\xe7\x6f\xe3\x86\x57\x0c\xeb\xc1\x1f\xd9\x45\xac\x6c\x2e\x92\x11\xb2\x70\x20\x9c\xa4\x58\xc6\x3a\x61\x38\x10\xc4\xb5\x5c\xc5\xaf\x1f\x8d\x3d\xb0\xe2\x47\x18\x3e\xa3\xae\xbf\xee\xf6\x72\x91\x72\x8b\x5b\x4e\x20\x7d\x1c\x4d\xec\x83\x17\x66\x0f\xb5\x13\x7b\x04\x4c\x0e\x44\x7f\x16\x27\x50\xfc\x01\xef\x7f\x35\xd9\x00\x5c\x68\xe7\xa1\xc9\x34\x6c\x87\x7d\x11\x45\xfe\x61\x12\x9e\x77\xb0\x9d\xae\x26\x53\x8a\x9a\x76\x4b\x35\x9c\xcf\x23\xe1\x12\x0a\x5d\x43\x42\xc1\x07\x19\xd7\x3e\x4e\x84\xd9\x0b\x32\x6b\xfb\x34\x93\x65\xe4\xc5\xe8\x02\xce\x87\x4a\x0d\xfa\xc3\x26\x5b\x2d\x9b\x14\x54\xfb\x30\xb5\x55\xa8\x78\xb4\x36\x04\xad\xed\xdb\xe7\x2b\x69\x6c\x8a\x28\xb6\xfb\x15\x8d\x05\x29\x11\xc6\x6e\x3f\xa6\x33\x16\x29\xc5\x1d\xe5\x3b\x88\xd6\x8b\x44\x2a\xfa\xca\xdc\xc8\x40\xfb\xd8\x61\xdf\xaa\xf5\x29\xd8\x37\x25\x93\x92\x66\x89\xcd\x20\x6d\x85\x35\x03\x80\x0e\xcb\xf5\x8e\x3d\x02\x7a\x7b\x82\x98\x25\xa3\x96\x25\x9b\xf1\x4a\x41\x44\x39\xa7\x27\x62\x3a\x4f\x7c\x6e\xf1\xab\x2d\x3f\x49\xbf\xa1\xc7\x55\xfe\x08\x19\xac\x8d\xec\x94\x3a\xf9\x31\x25\x02\x28\x1e\x6e\x4f\x48\x40\xff\xc6\x0d\x64\xc8\xf9\x30\x5a\xc1\x83\x3c\xe8\x11\x24\x0e\xaa\xb9\xd1\xd4\xfe\x4a\xd2\x55\xd3\x35\x6b\x0c\xb7\x42\xfe\x75\x95\xbe\x2f\x30\xd2\x88\x85\xe8\x28\x9c\x75\x7f\x2b\x1f\xa5\x05\xe1\x5d\x5a\x3a\xcc\x78\xd2\xfc\x05\x55\x78\xfe\xec\x97\xe7\x67\x7f\xee\x67\x3f\x47\x61\x02\x07\x25\xb7\xa3\x85\xb8\xee\xbb\xed\x17\x55\x7b\xfe\x58\xa0\x4c\x74\xe0\x70\x89\x58\x74\x2b\x98\x3a\xf8\x4f\xbe\xca\x6b\xe7\x6a\x50\x05\x29\xb6\x0e\x0b\x94\x7e\xdf\x51\xa2\xfa\x3a\x9a\xf9\xa2\x02\x3c\xbb\x73\x99\x59\x67\x08\x05\x32\x5d\x44\x3e\x8a\xb5\x85\xa1\xc1\x1f\x62\x03\x0b\xe7\x5e\xb1\xc3\xb6\x09\xd1\x25\xdf\xe3\x21\x15\x3e\x57\x22\xa5\xf5\xf0\xee\xd8\xb7\x33\xde\x0d\x7c\x97\xd6\x94\xdd\xc8\x26\xa1\xdd\x4f\x81\x07\xdd\xc6\x56\x67\x27\x61\x86\xff\x3f\x3a\x5b\xe8\x17\x00\xd6\xe3\xba\x02\xae\x65\x73\x42\x6b\x5c\x5e\xc2\x1e\xe3\x0b\xe7\xec\x31\x4c\xcb\xa4\x30\x51\x52\xa4\x48\x78\xc5\x05\xb5\x7a\x47\x11\x59\x6b\x60\x4e\xe6\x23\x1b\x46\x26\x8e\x20\x25\xb8\x7d\x96\x1a\xef\x67\x15\x0a\x80\xec\x06\x4c\xe8\x31\x37\x72\xef\xe9\x53\xb0\xc9\xbb\x9a\x33\x5d\x51\x43\xbf\x51\x14\xa7\xc5\xb4\xee\x5b\x50\xec\xe7\x0b\x7c\x29\x25\xf0\xf7\xa2\xfb\x97\x07\x5c\xe0\x78\x2a\xff\xc2\xa4\xcd\xa7\xbb\x43\x07\xc4\x65\x70\x93\xaa\x64\xae\x2c\xf0\x5e\x88\xd2\xf7\x34\xce\xef\x2c\xa6\xfe\x8c\xb1\x0d\xfc\x50\xed\xa1\x0e\x9d\xf3\x38\xae\xee\xeb\x28\xa7\x80\xdd\xa8\x46\x50\x04\x7d\x87\x8e\x4b\xe4\xcb\x14\xb1\xee\xfd\xea\xa3\x20\xd8\xf1\xd8\x62\xec\xb5\x9c\xbf\x87\x55\x8b\x03\x05\x4f\x1f\x92\x76\xfb\xc9\xd3\x80\x61\xad\x84\x2f\xc4\x9f\x6d\x51\xbf\x13\xdd\xc4\x6d\x80\xef\xdd\x08\x74\x6e\xee\xde\xaf\x3e\xb1\x8e\x85\x8c\xbe\xca\x2e\xed\x72\x72\x11\xe6\xb0\x22\xe1\x4e\xc1\x10\xd9\xd5\xb9\x71\xeb\xcb\xbf\xc2\xa0\x83\x47\x3b\x0d\x2c\xcf\xbe\x89\x57\x4c\x02\xe8\x78\x75\xa3\x64\x27\xfb\xf4\x77\x4b\x9d\x13\x00\xd2\x72\x07\x05\x7b\xe5\x55\x95\x6a\xbc\xaa\x46\x15\x19\x71\x7e\x2d\xe4\x5d\xb1\x2f\xd1\xe2\xc0\xc3\xbb\x4c\x7b\x00\xcd\xba\x56\xc7\x27\xa8\xa1\xc9\x04\x7c\x85\xac\x42\x0f\x80\xcf\x36\xe0\xde\xcb\x64\x64\x22\xa6\x0b\x8b\xdb\x4d\xcb\xc9\xee\x4d\x02\xa1\x0f\xcf\xcc\xb6\x0b\x6b\x5a\xbe\x7b\x85\x26\x8d\xa8\x1d\xed\x84\xf0\x7c\xa9\xdd\xb5\xe1\x33\x94\xb8\x41\xb6\xe9\x9c\xf6\x59\x38\xd7\xe0\x58\xb9\xd0\x2e\xa2\xa1\x05\xab\x11\x8a\xbf\xdb\x97\x26\x90\x41\x4f\xb7\x47\x69\x0e\xca\xb6\xab\x32\x55\x61\xb1\xf3\x7b\xbe\xf4\x52\x3b\x8c\xd3\x1c\xd0\x48\x04\xd5\x6f\xd1\x49\x86\xe6\x00\xa4\x9e\x05\x69\xd2\xc0\x43\x95\x2c\x55\x39\xaf\x78\x9f\xd3\x8b\x4a\xca\x18\x5f\xf6\xc0\x2c\x83\x43\x6e\x2a\xd0\xc8\x4d\x57\xe2\x2c\x9b\x2c\x2f\x4c\x17\xa7\x04\xfe\x91\x11\x08\x7c\xa1\x66\x75\x2f\x5b\x93\xe4\xfb\xaa\x3f\xe6\x6c\xcb\xab\x75\x26\xc1\x15\x6b\x1a\x69\xcc\x2d\xa5\x37\x83\x89\x1e\x62\xfb\x19\xed\x4d\xc7\xc4\x38\xbe\x68\x84\x81\x2e\x95\x51\xec\x91\x33\x42\x13\x54\x94\xc1\x06\x12\xf6\x2c\xf9\x8c\xae\x0e\x6c\x86\xd2\xdf\xe5\xf2\x75\x37\xb2\x79\xd7\x38\xd1\x06\xa8\xc3\x51\x81\xd4\x5e\x1f\x77\xfc\x3a\xd0\xbe\x30\x61\x6c\xf2\x3c\xea\x45\xd8\x6d\xd2\xb1\x83\x98\x35\xbf\x6e\x58\xe2\xa4\x68\xcb\x7d\x3c\x34\xc1\xaf\xe1\x8e\xf0\x45\x93\x44\x70\xdf\x66\x43\x23\x0a\x67\x1c\x25\x70\xf2\x4a\xc8\x98\xe0\x77\xcc\xb6\x87\x65\x1e\xa6\x2b\x51\x61\x05\x03\xc4\xb5\x00\x1e\x99\x14\x06\x32\x36\x5b\x35\xb1\x37\x9d\x12\xa4\xb8\x92\x62\xdc\x08\x1e\x54\x65\x6a\x82\xa7\xe1\x1a\x99\xf3\x22\xcf\xbb\x11\xf8\xea\x5d\x45\x23\x1d\x80\xaa\x1f\x96\xc0\xe4\x0c\x83\x6c\x1c\xa7\xab\x53\xca\x15\x8d\xb6\x3d\xfb\x65\xa8\x79\xf0\x8f\x27\xd2\x23\xc9\xec\x06\x86\x07\xa4\x38\x96\x81\x5b\xc0\x96\x78\x15\x27\x95\xb3\x7b\x78\xce\xfb\xfc\x28\xab\xaa\x63\x4d\x27\xea\x92\x8d\xd3\xa4\x1f\x25\x7d\x0e\x93\x22\x38\x59\x53\xa2\x94\xb1\x9f\xed\xf5\x20\x9b\x97\xd8\x3c\x57\xca\x2f\x80\x9c\x0a\xb3\x60\xe7\x58\x74\xe1\xf9\x83\xed\x51\xb9\x14\x47\xa1\xbb\x55\x6e\xbc\x57\x2d\x12\x49\x91\x55\x6b\xce\x24\x7d\xf6\x22\x5e\xf0\x80\x28\x0f\x8e\x9a\x98\xbc\xce\xcf\xb7\x47\x65\x1c\x0e\xb2\xa8\x28\xbb\xec\xd8\x2b\x3e\xc2\x7e\x4e\xfd\xc3\x26\x9e\x49\xcf\xe4\x4b\x2d\xdf\x30\xdd\xd4\x23\xde\x4d\x45\xa8\x5a\x2b\xfb\x69\x1e\x9b\x95\xc8\x68\x55\x08\x26\x2c\xca\x92\x6d\xda\xa9\x24\xec\x11\xb9\xd5\xcd\x35\x10\x3d\x72\xa9\x87\xee\xe3\x1f\x2f\x47\x8f\xd0\x4a\x86\xcc\x35\x96\xf0\xcd\x9f\xe9\xb8\xec\xf6\xef\x3f\xba\xae\xb4\x25\xee\x51\x48\x45\x56\xbd\x77\xbd\x3a\xb8\xa8\xe5\xf6\x3f\x3c\x85\xd6\x10\x32\x82\x0b\x63\x3f\x7c\xc7\xf8\x1f\xf7\xf0\xc9\x75\x7a\xdc\x68\x7d\x5d\xd7\xc2\x49\x2c\x36\x82\x65\x7a\x49\x19\x64\x7f\x9e\x1c\x3f\x51\x22\xbc\x8f\x05\x02\x70\xcb\xa7\x0a\x0f\x92\x8e\x8a\x28\x4d\x80\xa7\xc0\x74\xeb\x18\x25\x3e\x62\x53\xeb\x73\xd0\x57\xe8\xad\x9d\x6a\x70\xf5\x01\x70\xc0\xbe\x15\x28\xcc\x33\x55\x1c\xdb\x9f\x34\x09\xb5\x22\xcd\xc3\x46\x65\xd0\x79\xe0\xc1\xda\x7f\xed\xf6\x5e\x98\x26\x49\x64\x39\x46\x38\xff\x50\x4f\xe1\xf6\x9d\x89\xbc\xc8\xd2\x2a\x71\xac\xd2\x13\x11\xe4\x6f\x39\x6d\xa8\x3d\x1d\x15\x05\xef\x8c\x9f\xf0\x1c\x51\x62\xbf\xd9\xdc\x81\xe3\x18\xe7\x55\xc3\x7c\x49\x1c\xca\x6d\x58\x66\xb6\xbb\xd7\x87\x94\xb7\xb1\x86\xd0\x2f\xbd\x83\xfe\xb8\x12\x63\x94\xee\xce\x23\xd4\x45\x47\x21\xf7\x87\x63\x15\x1c\xcf\x3b\x28\x78\x68\xb2\x34\x56\xe6\xeb\x97\xb4\xf9\xfa\x25\x85\xb8\x8e\xd3\xa5\xa5\xb5\x28\x2f\xf6\x78\x5f\x64\x98\xff\x23\xd9\x3c\x8a\xa4\x1d\xa7\xca\xfb\x5e\x48\xe1\xf7\x8e\xe2\x0d\x99\x2d\xe1\xee\xb0\xe9\xa6\x23\xc9\xb3\x90\x36\xb2\xe8\x00\x5f\xa8\x8e\x27\x75\xdd\xbb\x26\x29\xf2\x7d\xaa\x9e\x56\x82\xaf\x47\xc6\xfe\xf4\x3d\x4f\x4b\x44\xf4\xbf\x14\xe8\xea\xa6\x9e\xf5\x9c\x43\x2f\x05\x50\x82\xcf\x06\x21\x16\x69\xfd\x80\x39\x1f\x34\xde\xc3\xdc\x76\x4d\x32\xa5\xd8\xf2\xff\x52\xb1\xdb\xe0\x88\x20\x4b\x43\xea\x50\xa7\x81\xb7\x47\xcb\x2e\x8c\xd5\x64\xff\x8e\xca\x15\xae\xe0\x71\xf3\xce\xc3\xb7\x12\x5c\x5d\x83\x6a\x51\x96\x1e\x59\x4a\xb3\xb4\xe5\xb9\x6c\x17\xf5\x78\xe9\xa2\x9a\xd3\x21\x85\x6d\xf9\x0c\xf7\x23\x7c\x45\x19\x6d\xf9\xbc\x35\xb7\x61\x9a\x74\xf7\x7b\x93\xf2\x93\x4a\x9c\x6d\x80\xfc\xdc\xd9\x19\x55\x99\xbb\xd8\x19\x79\x12\xcf\xab\xc1\xa4\x59\x8e\x18\x56\x2b\x54\xe2\x5f\xaa\x7c\x1c\xba\x04\xd9\x3e\x7f\x58\x7c\xa1\xe3\xa3\xf3\xc3\xeb\x1e\x8f\xf2\xb1\x22\xcf\xdc\x51\x34\xfa\x4d\xad\xe7\xc2\x03\x67\x69\x69\x39\xbb\x09\x6b\x96\x6d\x46\x33\x30\x84\xa7\x27\x50\xf4\x60\xd4\xf6\xf7\x68\x17\xa1\xb7\xbd\x7b\xdd\x71\xbd\xe2\x74\x2d\x47\xf3\xca\x15\x8c\x1e\x5e\x73\x5b\xab\xdf\x4e\xb6\xcb\x0e\xcc\xb6\xc9\x6b\xaf\xab\xbc\x58\x4f\x62\xfd\xf3\x85\x1a\x6b\x8f\xca\x78\xb4\x57\xe1\x79\x39\x4f\x43\x80\x7e\x6f\xac\x6c\x82\x30\x66\x40\xef\xe7\xb7\xb4\x97\xef\x3f\x1f\x7b\xc2\xd3\x87\x0d\x15\xc0\xc0\xac\x58\xe5\x2c\xcd\xe8\x6d\xbe\x08\x3c\x57\xcb\x1b\x91\x91\x9b\xa7\xbb\x2d\x28\x35\xd9\x6b\x52\x13\x63\x4e\x37\x79\x12\xae\x66\xe4\x7f\xf5\xc2\x82\x83\xdf\x78\x84\xd7\x45\x45\x86\xa9\x2a\xf3\x32\x5b\x72\x83\x3a\xec\xfc\x5b\x2a\x62\xff\xae\x72\x6a\xbe\x3d\x6e\x37\x74\x18\xbd\xab\x3d\x07\x7e\x89\x6d\x6c\xea\xce\x17\x4d\x28\x48\x7b\x64\x64\x43\xc7\xe2\x47\x7a\x86\xc9\x20\xfa\x8b\x57\xb1\x2b\x45\xba\xe4\x61\xdd\xce\xca\x92\x3d\xfe\x53\x9e\xd6\x80\xbc\x2b\x84\x99\x47\xc1\xca\x79\xa7\xa8\xff\xf9\xa0\xf1\x60\xa3\x32\x6b\xcf\xf9\x4d\x09\x51\xb0\xee\xc3\x40\x6f\x86\x6d\x77\x43\xed\xf1\x81\x19\x8d\x6c\xb2\x97\x0a\x6e\x59\x5d\x1e\xe5\x78\x82\x2a\x74\x59\x82\xd5\x47\x40\xf9\xcf\x47\x0c\xd6\xc0\xf7\xf0\x4c\x85\x71\xf8\xb0\xc2\xb2\x14\x36\x79\x58\xfb\x44\x54\xab\x08\x3b\xf5\xea\x58\xd9\xaa\xde\x19\xab\x6e\xc1\x76\xa0\xd8\xd5\xf0\xa5\x40\x46\x77\x03\xa5\xbd\xa3\xd6\x79\xfa\xca\x19\x9c\x2f\x4c\x8e\x08\x3c\x6f\xe4\x47\x81\xd7\x14\x81\x02\x8a\x18\x32\xd1\x16\x76\xf6\x37\xd5\xc3\x96\x14\xdb\xd3\xc0\xe0\xfc\xb5\x83\x84\x70\x45\x11\xd1\xae\x38\xf0\x4f\x61\xa2\x78\xc9\x54\x0b\x77\x51\x50\xfe\xaf\x8d\x3d\x2e\xe6\xb5\x26\x59\xad\xdc\x86\x99\x45\x4f\xdd\x89\x28\x7b\xf0\xc4\x35\x65\x11\xf6\x6e\x23\x50\x27\x4b\x49\x62\x67\x0f\x39\x82\x5d\x52\xed\xe4\x0d\xa0\x95\xdc\x85\xd7\x93\x7e\xd0\xe7\x7e\xbf\x75\x6e\x22\xb1\x96\x93\x6d\xd5\x78\x4d\x45\xf4\xde\xaf\x28\x2b\xc9\x2b\x0e\x5b\x95\x95\x99\x89\xe9\xc8\x47\x27\x75\x53\x55\x99\x77\x95\xfd\xd2\x96\x0e\xac\xdf\x52\x2a\x6b\x0f\x77\x26\x1b\x03\xb9\x8d\x63\xb0\x38\xf0\x31\x3f\xa4\x45\x83\xc5\xb5\x0f\xf0\x22\x94\x62\x37\xc6\x4a\xc4\x6e\x4b\xf3\x8f\xd3\xa1\x5d\x4a\xbb\x6b\x7b\xbc\x51\x06\x60\x58\xb8\xcb\xef\xd2\x59\x80\x5c\xf2\x16\xda\x54\xfc\x0f\x68\x3b\x09\xaf\x50\x49\x68\x55\x65\x2b\x7b\x06\x8b\xc8\xe7\x35\xed\x54\x77\x2d\x78\x42\xd1\x97\x20\xee\xb4\x14\x5b\x1c\xdf\xec\xeb\x0b\xe0\x16\x76\x33\x64\x9e\xb0\xcd\xc1\x74\x63\xd3\x9d\x40\xe5\xcd\x1b\x13\xd9\xff\xdc\x5c\x3b\xcc\xa2\x22\x0a\xa3\x5c\xa4\x1e\x9c\xbf\x98\xe2\x89\x7e\x5e\xe1\x03\xab\x23\x3c\xea\x45\xa1\xe1\x21\x26\xfe\xfe\x0d\x05\x10\xb9\xe1\x08\x30\x45\x56\xe6\x2e\xa2\xe1\x1f\x2f\x2b\xe7\x12\x9e\xb9\xe0\x29\x6e\x37\xcc\x4a\x67\xdb\xdd\x74\x35\xd9\xef\x3a\x5e\x5f\x7a\x94\x4e\x60\xdc\xcf\x27\x3b\x4a\x26\xf7\xde\x58\xa9\x85\x23\x25\x66\x89\xcd\xb1\x47\x40\x4e\x77\x94\x0e\x32\x54\xb5\xa5\xab\xe7\x2b\xbb\x51\xbe\x16\x3a\xd4\x11\xa0\x06\x27\x15\xec\xe0\xe4\x04\x3b\xf4\xd0\xf3\xed\xd8\x9a\x2e\x55\xce\x32\x3a\xf3\xe8\x82\xcb\xca\x01\xd0\x67\x00\x4b\xd1\xb2\xdb\x0f\x4d\xba\xf7\x1e\xc5\x68\x22\x12\xef\xab\x96\x91\xd3\x8b\x79\x6e\xde\x95\x1e\x9f\x31\x2e\x8e\x14\x33\xd3\x01\x3f\xdc\x03\xdd\x9c\x70\xfd\x9c\x3d\x44\x6b\x3c\xcb\x8d\x1e\x34\x63\x87\x03\xf3\x89\xe8\x77\x53\xf1\x9c\x8e\xab\x71\x54\xbe\x36\x1c\x15\xe9\x30\x87\x57\xa6\x40\xcc\x3c\x0e\x75\x3b\xf0\x0d\xed\x7b\xca\x10\xe4\xa3\x40\xf9\xb7\x7c\xd4\x40\xda\x38\xd8\x36\x71\x91\xf6\x6d\x31\xa8\x12\xa6\xd9\x43\x5a\xd4\x7f\x81\x8b\x50\xfc\xb9\x6b\xae\x46\xca\x6c\xd7\xda\x61\x4b\xb3\xf3\x3c\x64\xf2\xd4\x44\x06\xfb\x34\xd9\xa7\xc5\x26\x01\x2b\x44\x5a\x4e\xca\xa9\xe4\xa2\xb2\x94\x5b\x31\xa0\x36\x28\x83\xab\x05\xe7\x82\xe5\x29\xe9\xb6\xd7\x8b\xc2\x08\xea\x76\xae\xa3\xc2\x02\x52\xa2\x83\xdb\x20\xad\x71\xb0\x3d\x34\x7d\xf3\xf5\x28\x91\x62\x10\x39\xd4\x29\xed\xb5\x7b\x2a\xf8\x2c\x79\xbf\xaa\x72\x09\x9d\x10\xbf\x8c\x42\x3f\x18\x2b\x8b\x9b\x0f\xdc\xf9\xd2\x5f\xcb\x8c\x5f\x24\xac\xfa\xa3\x86\x94\x37\x9a\x94\x0f\xfa\x26\x11\x2f\xdd\x46\xf6\x8c\x62\x0a\x94\x4b\x79\xd4\x8d\x2c\x8b\x2f\x39\xc6\xf9\xdc\x9c\xcc\x66\x94\x55\xd2\xb6\x6a\x98\xae\x8a\xae\xa2\xa0\xf5\x6b\x04\xe0\x9d\x0f\xef\x4b\x3b\x34\x67\x18\xa4\x10\xf8\x93\xee\x98\x62\xd9\x94\x36\x7f\xb8\x5a\x31\xf8\xab\xfc\x8c\x71\x06\xed\x5b\xf7\x68\xb7\xef\x8d\xfd\x90\xe7\x21\x00\x7f\x44\xbd\x4f\xb3\x6f\xae\x10\xcd\x51\x6a\x42\x3a\x60\x68\xfb\xff\xd3\x2f\x50\xe3\x0b\x81\xe9\x4f\xfc\xe1\xfe\xcc\xdf\x07\x9e\x52\x8e\x36\x6f\xfe\xf7\x97\xff\xb0\x53\x17\xe6\xf7\x4d\xa7\xad\x46\x87\xde\xcc\xc2\x78\xc1\xe1\xa3\xf0\x9e\xa8\x91\xf8\xb5\xb2\xfc\x0b\xab\x6a\xda\x66\x6c\xe5\x8d\x20\x75\x12\x4b\x97\x2f\xd4\xd8\x75\x14\xf1\x60\x0a\x87\x22\xf2\x44\x1c\x6e\x60\xac\xe3\x6c\xfb\x89\x86\x5a\x67\x26\x09\x15\xa4\xe5\xad\xa0\xa6\x2c\xbd\x73\x5b\x1f\x9e\x59\x68\xaf\x46\x5d\x9b\x8f\x32\x0a\x9c\x4e\x2f\x09\xe1\x45\xb9\x39\xf8\xa8\xab\x39\x1b\xa3\xaa\x48\xe3\x07\xee\x46\x57\xde\x6e\xa7\x41\xe5\xb0\x5d\x64\x69\xb9\x14\x8b\x36\x9b\x13\x8c\x9f\xf7\x82\xf1\x4d\x42\x37\x64\x88\x3b\x14\xa3\x56\x07\x0f\xf4\xa9\x87\xe0\xf2\xe5\xdc\x69\x98\xeb\x47\x49\x01\x23\x61\xfe\xc0\x42\xa8\xa7\x07\xce\x17\xaa\x63\xfb\x72\x5a\x66\x89\x89\xa3\x7c\x38\xe5\x61\xe5\x67\x14\xdc\xe9\xb5\x40\xad\x5a\xaf\x03\x96\x18\x40\xba\x5c\x03\x53\xad\x4b\xaf\x44\xf6\xc5\xc9\x2d\xbd\x14\x01\x68\x6b\xb3\xff\xfe\xbf\x42\x2e\x50\xe7\xcd\xcc\xcd\xb9\x9d\xe8\xad\x8c\x93\x34\xe1\x5c\x44\x89\x93\xc9\x81\x81\x3c\x53\xd3\x4a\x90\x79\xef\xe9\xa8\x41\xeb\x75\x25\xaa\x31\x30\x86\xc2\xd0\x8b\xdb\x68\x07\x6d\x5f\x52\x0a\x5b\x4c\x14\x7c\x50\xf5\x89\x20\xaa\x27\xec\x69\x3a\x41\x90\xb5\x6f\x20\x85\x17\x3d\x0f\xfa\x73\x6a\x36\x2d\x90\xf7\xb7\x29\x59\x41\xdf\x63\xba\xe3\x7b\x7c\x97\xa9\x8e\xe7\xb7\x42\x0a\x8f\x7a\x16\xe8\x35\x66\x3a\x6a\x16\xeb\x37\x27\x8a\x5b\x2a\x9c\x86\x1c\x23\xc5\xd9\x53\x09\xd6\xfe\xd0\x15\x6e\x89\x59\x8a\xf2\x30\xad\x05\xfa\x0b\x3a\xd0\x5f\x50\x26\x89\xbd\x32\x4b\x48\x12\x62\x4f\x15\xa6\x38\x01\xac\x13\x3d\xdc\x40\x14\x8a\x66\xce\x79\xc9\xe5\xba\x9b\xca\xe1\x24\xb1\xc5\xfd\x54\xb0\x20\xca\xad\x8f\xfd\xf8\x4e\xd3\xfa\x6e\x2a\xb2\xc1\xb4\xc6\x49\xfe\x31\xa2\x07\x5b\x3b\x28\xd7\xef\xab\x28\xa9\xf8\x6d\xb5\xcf\xe5\xed\xc0\xcf\xfc\x8e\x05\xde\xb6\x62\x68\xa9\x38\xe8\x95\xa4\x42\xed\x2c\x79\x01\x93\xe0\xd7\xe3\x07\x7d\x63\x30\xc2\x98\x0c\x8f\x0c\x90\x41\x7e\xad\xf9\x94\x66\x88\xad\x2e\x9e\xbe\x8a\xa6\x73\xaa\xa1\x09\xfe\x6c\x7b\x29\x0a\xd7\x42\x0f\x0f\xc3\x3c\x0d\xa3\x4c\x7e\xad\x94\xe5\x43\x93\xac\x18\x98\x09\x2b\x25\x40\x69\x19\x00\x0b\x82\x3d\x77\xb5\x89\xfc\x12\xa7\x6b\x26\x86\x0c\xfa\x8b\x35\x83\x21\x91\xf8\x6f\xe8\xb2\x41\xaa\xe3\xc8\x94\x07\xf6\x42\xff\x0d\xf3\xfa\xef\xd6\x95\x6f\x65\x8d\x0d\x0c\x4d\x4e\xf0\x95\xc4\x6a\xbc\xa5\x2c\xc8\x9d\xc9\xa3\xc9\x59\x02\x16\xc7\x0e\xb0\xaf\x42\xb6\xae\xa9\x7e\x7a\x35\x51\x52\xed\x82\xd7\x83\xd2\xa5\xb8\xa6\x25\xf8\xae\xa9\x9d\x5c\x3e\x93\x3f\x93\x3f\xc3\x92\xee\x00\xc2\x71\x13\x8a\x2f\x94\x04\xe3\x72\xba\x04\x6c\x17\x0e\x1e\x9e\x11\xf3\x45\x20\x18\x8d\x91\xcd\xbc\x4d\x92\xb7\x1b\x80\x00\x03\x26\xff\x8f\x52\x37\x0d\x4f\xf0\x3e\x90\x91\x59\xe4\x35\x78\xa2\xce\xbd\x3f\xf4\x7c\x55\x71\x3c\xec\x33\x4a\x30\x44\x58\xea\x17\xc5\x16\x82\xda\x4f\x55\xed\xfa\x3e\x2a\x6c\x51\x1e\xa0\x3d\xc5\x3f\x05\xac\xa3\x64\x70\xfe\x80\xda\x45\xc0\x04\x64\x27\xd7\x10\x66\x84\xdf\xdd\x9a\x9f\xdf\xde\xbd\x0e\x1a\x83\xe3\x0c\xf8\xa0\xc9\x6c\x35\xc0\x18\x7e\xa4\x85\xf5\x93\xbc\x30\x49\x08\x72\xc5\x36\x1d\xed\xb3\xdb\x27\x9d\x74\xdc\x52\x9a\x74\xa7\xab\x0f\x20\xde\x23\x6e\xad\x3d\x04\xf1\x1a\x60\xe0\x1e\xc5\xfd\x11\x9c\x80\x6f\xe9\xd8\x23\x85\x4d\xba\x7b\x3d\xa1\x02\x68\x36\x29\xa7\xe9\x19\x22\x26\xf1\xa9\x2d\xa2\xd1\x2d\x27\x83\x0b\xc9\x55\xfe\x21\x45\xf8\x09\xab\x25\x6a\x1f\xf0\xf9\xda\x15\x42\x58\x70\x5d\xa6\xf0\x3b\x60\x95\x23\x8f\xfc\x46\xa0\x34\xce\xae\xab\x22\xe0\x18\xd6\x93\xb8\x00\xb5\x0e\x1c\x70\x8a\x54\x5a\x1f\x55\xed\x3b\xb6\x63\xc2\xd1\x7e\x51\x81\x8e\xba\x69\xbe\x9c\x86\x51\xcc\xdc\x41\x50\x7c\xbe\x57\x77\xa2\xad\x7e\x13\x47\xff\x65\x75\xb7\x40\x6d\xc3\xe6\x66\x19\x7e\xdd\x7c\x3e\xdd\x98\x6a\x98\x38\x4d\xfa\x79\x84\xd1\xa0\xf7\xab\xaf\x3e\xb5\x04\x05\x9f\x6f\x0d\xd3\x23\x11\xdb\x37\xa3\xc3\x75\x55\x89\x0c\x5f\x75\xdd\x94\x74\x64\x13\x56\xe9\xc6\xb4\x10\x13\x59\x77\x70\x56\x9f\x09\x54\x80\x4b\xe3\x96\xa2\xda\xee\xcc\x38\x9f\x9b\x6f\x97\x49\xcf\x0c\xa3\x38\x32\x59\x54\x20\x4a\x63\x11\x9e\x0c\xd4\x8a\xd4\x44\x42\x13\x86\x36\xcf\x1f\xf2\x70\xd4\x5d\xeb\x4a\xc4\x8f\x2d\x64\xd1\x96\xb8\xa1\xc0\x31\x0f\x76\x14\x2f\xe9\x9b\x78\x73\xb4\xfa\xde\xa3\x23\x8a\x9b\x08\x9c\x76\xf1\xbf\x04\x0a\xac\xb2\xa9\x3d\x44\xbf\x39\x56\xaa\xe4\xec\x58\xcc\xcd\x42\x3a\x8c\x44\x4a\xae\x41\x51\xd0\x24\x49\x5a\x26\xa1\xed\x4e\x53\x7e\xe1\x58\xbe\x1e\x4e\x0e\xb8\xa5\x80\xe0\xe9\x23\x20\x0b\x9c\xea\xc8\xbe\x5b\x8d\x32\xc8\x27\x23\x48\x43\x8a\x43\x9b\x7d\x09\x1e\xa3\xfa\x6a\xea\xa4\x12\xb1\x9e\x5b\x4d\xcd\x86\x74\x10\xa5\x14\x6e\x1d\x52\x56\xcd\x18\x5c\x68\x8c\x92\xc2\xf6\x33\x47\x56\x59\xe0\xa3\x61\x43\xf5\xbe\xef\x2a\x8b\xcf\x49\xe3\xa3\x43\xcf\xbb\x2a\x83\xb4\xba\x5c\x6b\xe5\xb0\x67\x38\x28\x13\xe7\x62\x2d\x8e\xf2\x01\x9f\xe0\x62\xd1\x4d\x9f\x8c\x2f\x34\x8a\xd4\xe4\x51\x92\xe6\xd3\x1e\x2d\xfa\x0e\xdd\x0d\x40\x0a\x37\xd4\x34\xe5\x1d\xa4\x6d\xfc\x0f\x6a\x3c\xc8\x59\x61\xd6\x52\xeb\x08\xdf\x4d\x5a\x5d\x3b\xdb\xa3\x0b\xcf\x1f\x6c\x2f\x65\x91\x81\xcd\xb7\x43\xb6\xf9\xa1\xc5\xf9\x06\xfa\xca\x8b\xed\x30\x2d\x93\xc2\x66\x84\x61\x61\x89\x5a\x85\x73\x3b\x83\x6c\x07\x44\xa0\x77\x1b\xa0\x26\xe1\xc0\x5a\x66\x8b\x3a\xe6\x82\x1b\x63\xdc\x9c\xc8\x0d\x16\x16\x17\xda\x2b\x26\x2e\xd1\x33\x5b\x70\x7d\x23\x5a\x76\xce\xfe\xa0\x5a\x6a\xac\x51\x3b\x81\xd7\x39\x30\x4b\x6c\xb2\x38\xb6\x0c\xb2\x05\x36\x18\xfd\x39\x7e\xdd\x80\xbb\x6f\xaf\x9a\x6c\x28\x95\x37\xcb\xf0\x04\x7e\xb0\xfc\xf1\xc4\x42\x7c\xba\x5d\xa4\x05\x13\x71\x71\xf8\x7d\x9f\xee\x0b\xbf\x56\x0a\xea\x66\x68\xb3\x28\x34\x49\xfe\x00\x7d\x25\xec\xa4\x7f\x3b\x56\x82\x7f\xd7\xc7\x35\x5e\x9c\x9e\x32\x30\x88\x1d\xfb\x67\xf7\xba\x1a\x0b\xdc\x0d\xbc\x1f\xd9\x0f\xeb\x80\x9a\x6a\x89\x62\x70\xfe\xed\xb1\x1e\x78\x55\xb7\x00\x6f\xfb\x9a\x4a\x4b\x42\x13\xf7\x4d\xc6\xea\x4a\x0c\xac\x53\xe0\xd7\x46\x5d\xf9\x41\x9a\x74\x8d\x80\x7a\x70\xc2\xb0\x64\x07\x5f\xf8\x61\xed\x20\x4a\xa0\x77\x29\x3a\xd3\xea\xc7\x80\x26\xfd\x4c\x05\xaf\xe7\x0f\xb6\xf3\x51\xe4\x4c\x64\xc4\x59\x50\x5b\x21\xfa\x8c\xe9\xeb\x51\x55\x82\x3b\xfb\xed\x77\x69\x33\xf0\x6b\xf5\x6d\xa3\x64\x25\x8d\x57\xec\xde\xea\x27\x5d\xe7\xd1\xf1\x7c\xf7\x80\x43\x8a\xb8\xb8\xab\xe3\xb9\x62\xbf\x49\x1b\x14\x69\xc2\xed\xb1\xe7\xc5\xef\x5a\x9f\x5c\xf3\xdd\x2c\x5a\x81\x39\x9f\xd7\xe6\xa8\xfe\x84\x8c\x6c\x1a\x6c\x97\x72\x6b\xab\xd5\x17\x0b\x4b\x51\x8b\xec\x89\xba\x8e\xcf\x19\xca\x51\x75\x50\xee\x69\x29\x13\x88\x5a\xc5\xe3\xd2\x81\xdd\x9d\x9d\xd5\x92\xd0\x39\x76\x7e\xea\xe7\xe6\xdb\x4b\x71\x34\x62\x78\x37\x9e\xce\x4d\xa4\x5e\x02\x6a\xa4\x05\x2b\xef\x25\xbd\xc6\x41\xd4\xed\xda\x84\x34\x0a\xb1\xca\xf6\xad\x7b\x09\x91\x17\x3e\x47\x77\x10\x01\xf0\x2a\x38\xa5\x02\xba\xfb\x2c\x0c\x40\x3a\xb2\xe1\xb4\xd2\xdb\xdc\x0e\xfc\xf9\x71\x52\x0d\xb7\x71\x7e\xc8\xe9\xe3\x1b\x8f\xa3\xc1\x5a\x1e\x85\x91\x58\x06\xe2\x07\xce\x6a\x4f\xd9\xb3\x4a\x85\xa7\x9f\xae\xd8\xcc\x31\xce\x9a\xe0\x9b\x9f\x85\xe2\xef\x45\x59\x5e\xec\xf1\xbb\x7f\x2f\x21\xcf\x9d\x9a\xf0\x2f\xc9\x11\xb6\x87\x90\xba\x6e\x0e\x57\x7d\x0c\xf1\x16\x9f\x04\xcc\xcc\xb6\xa3\x3c\x2f\xad\x26\x8a\xd3\x0e\x11\xd2\xb8\xf4\x2e\x87\x51\x12\x0d\xa3\x38\x56\xdc\x31\x76\x45\x14\x7d\xfa\x9d\x54\xdc\xa7\xdb\x6b\x36\x27\xd3\x13\x29\x91\xe8\x1b\x3b\x50\xef\x2f\x7f\x85\x53\x6c\x7c\x5e\x31\x1a\xde\x39\xe2\x95\x6f\x1f\x97\x47\xca\xcc\xf9\x0f\x62\xf4\x74\x02\xdf\x8e\x2f\x5c\x00\x58\xb2\xb9\x05\x66\x1b\xdb\xed\x2a\x81\xec\x85\xf0\xa8\x88\xbd\xdf\x52\x5d\xc7\x5d\x9d\x9d\x37\xe7\xe9\xf6\x28\xb6\xdd\xbe\x0c\x53\x1c\x39\x50\x11\xe6\xe8\x06\x60\x8b\x5e\x57\xa6\x14\xbd\xcc\x76\xab\x08\x0c\xdf\x4b\xd1\x49\xa0\xcf\x2a\x0a\x0a\x4a\x58\xbf\x9b\xb6\x3c\x04\xeb\x75\x25\x96\xff\xba\x12\x9d\x30\x49\x18\x49\xe7\x11\x1f\x98\x75\xfb\xf8\x42\x51\x33\x97\x9e\x31\xcf\x14\xbc\xab\x31\x9e\xfe\x8f\xf8\xdb\x7c\x11\x68\x36\x40\xf2\x4c\x4b\xe5\xd4\x27\x02\xcf\xa6\x3c\xa1\x64\x22\xbb\x76\x05\x82\x06\x0e\x9f\x74\x47\x57\x51\x1f\x05\xca\x6b\x77\xac\x19\x38\x94\x5a\x32\x08\x47\x99\xb5\x27\x26\x67\xb2\x5f\x8d\x0a\xc4\x17\xca\x83\x98\x86\x2a\x54\x4e\x57\x41\x52\xcb\xb6\xf2\xeb\xb1\xef\xed\x64\x59\xba\x5a\x63\xc6\x6f\x68\x66\xfc\x46\x03\x99\x7e\xa1\x9d\xa7\x31\x3d\xde\x59\xa7\xba\x40\x9f\x4a\x96\x44\xcb\x69\x72\xdd\x51\x68\xd9\xd5\xa8\x18\x44\xc9\x1e\xaf\xca\xfb\x31\x1e\x05\x1a\xa7\x67\xd5\x0a\x79\x25\xf0\xce\x8a\xdb\xb4\xc9\x45\xc9\x6a\xa7\x2c\x8d\x2c\x73\x33\x1a\xc5\x0e\x5b\xcb\xfa\xb5\xd8\x67\x22\x66\xdb\x00\xae\x1d\x64\x11\xa3\x3b\x54\xf6\xb2\xf0\x99\x46\x69\xf3\xf3\xda\x39\x42\x28\x47\x35\x10\xcd\xce\x3f\x52\x65\x49\x43\x13\x43\x07\x52\x7c\xab\x29\x11\x73\xa2\x94\x4e\x35\xee\xa6\x5a\xdc\xb1\x29\xf6\x7a\x12\xc8\x35\xad\x7b\x7c\x93\x4e\x0d\x4c\xef\x59\x96\x41\x7c\x2b\xaa\x3f\x22\xb0\x21\x1f\x7f\xbf\x30\xe1\x7d\xb8\x38\x43\x92\xf6\x49\x5f\x28\x62\x0e\xec\x3a\xef\x69\xa4\x8e\x84\x34\xb0\xe1\xf2\x52\x9a\x2e\xb7\x6a\x12\x0b\x2d\xaf\xbe\xd1\x34\xa0\x2f\x32\x13\x25\x6e\x3c\xe7\x4c\x07\xdd\xb6\x06\x8d\x1d\xe4\xa7\xeb\x4d\x50\x2d\xc7\x37\xf0\xa7\xdc\xa6\x76\x11\x68\x12\x11\x8e\xad\x15\xe4\xf3\x82\x17\xe3\xa9\xde\x40\xee\xf6\x84\x51\xe3\xe2\x42\xbb\x6b\x47\x36\xe9\x52\xeb\x5c\xa3\xea\xe7\xe6\xb8\xe6\x41\x8a\x85\x33\xf3\x1d\x25\x81\x17\xa6\xc3\xa5\x28\xb1\x88\x72\xc8\x08\xaf\x8d\xfd\x27\xfc\x1f\xb1\x37\xd1\xc2\xb9\xee\x6e\x27\x99\x93\xa2\x01\x52\x7d\x30\x84\x72\x4c\x43\xf8\xb5\xc2\xf9\xd8\xd8\x86\x45\x95\x92\xc6\xad\xba\x1c\x62\xf5\xce\x7c\x31\xb1\xe6\x9e\x9b\x6f\x5b\x58\x2b\x2d\xce\xf0\xd3\x84\x67\x2f\xbf\x5e\x7f\xd2\x4f\x90\x31\xdc\x37\x05\x73\x16\xf8\x41\xb5\x3a\xaa\x45\xd8\x9a\x30\x9f\x3c\xf4\x7c\x3b\x1f\xc5\x51\x41\xe3\xd7\x1d\x5a\x2d\xcf\x7e\xba\xee\x1b\xa3\xd3\x1d\xad\xb9\x90\x0e\x92\xbd\x7e\x8b\x1f\xd3\x69\xf5\x49\x3c\x25\xbe\xd0\xc3\x2e\xd0\x54\xd9\x11\x52\xe1\xea\xde\x69\x82\x1f\x17\x26\x5f\xc6\x6d\x45\x99\x83\x81\x10\xbf\x76\xbd\x86\x70\x60\x11\x45\xc5\xf7\xf1\xa4\x6a\x49\x4c\x9a\x71\x1f\x9e\x59\x68\x17\x03\x53\x90\xc4\x12\x93\xb2\xd0\xc9\x47\x53\xe9\xd8\xd8\xb3\xcd\x91\xdd\x01\xa9\xb4\xad\xc0\x7a\x23\x9b\x55\x7f\x95\x6e\x31\x6e\xd6\xfb\x63\x95\x60\xbc\xaf\x7e\xb4\x2c\xa2\x38\x2a\xd6\xf6\xe1\x1c\x42\x0b\xe0\xac\xf6\xd5\x80\xa6\x13\x1a\xdd\x5a\x04\xe7\x13\x04\x2f\x7c\x5b\x70\x9f\xf1\x43\x57\xea\x4e\x98\x3b\x5b\x26\x12\x41\x47\x36\xcb\xd3\xc4\xc4\xd3\x1e\x2d\x78\x41\x69\x0c\xdf\x4f\x41\x5d\x24\xda\xe9\x1d\xf1\x43\x37\x9a\x48\xed\x2c\xc1\xc5\x83\x24\x34\xfb\xf9\xd8\xe7\x8b\x46\x83\x2f\x9b\xf4\x8d\x4b\x1c\x10\x53\xc1\x8c\xc4\xd1\xfa\xb1\xee\xdf\x4d\x5a\x0c\x3f\x07\x47\xd7\x90\x8f\x48\x1c\x2b\x20\xa8\xf1\xeb\x89\x87\x5b\xed\x7f\x4b\x22\x49\x87\x67\x9a\xd1\xb6\x9e\xd2\xd6\xb5\xa6\x18\x40\x59\x9b\x85\xcc\x95\x5b\x2d\xda\x52\xd8\x92\x0b\xe8\xad\xa2\x7b\x72\x5a\xb5\xfa\x17\x7f\x61\x46\xf1\x70\xee\x6a\x53\xdb\xbb\xaa\x67\x96\x9a\x65\x2b\x42\x60\x88\xf3\xf7\x82\x9a\x99\x9e\xea\x0d\x5f\x6a\xe2\xff\x8e\xb2\x34\xb4\xb6\x5b\xf3\xf3\xdd\x50\xbc\x08\xef\x88\x38\x32\x49\x14\x2e\xa3\x9d\x0e\x7c\x26\x1c\x64\xd1\x09\xc5\xac\x45\x94\x77\x6a\x02\x10\x61\x8a\xf1\xfd\x54\xb5\x5a\x80\xb8\x40\xba\x28\xde\xfd\xd5\x22\x45\x50\x7c\x65\xfc\x64\xbd\x7d\x5d\x65\xcf\x2f\x2c\xce\x28\x73\x73\x44\x76\x99\x36\xab\x5e\x0d\xf4\x22\x6a\xa6\xd1\x1f\x28\xcf\x83\x0f\x94\x12\x8f\x4d\x56\xa2\x2c\x4d\x86\x36\x29\x4c\xcc\x16\xc3\xae\xbb\xe3\x1d\x72\xa1\xbc\x4c\x13\x82\x10\x1d\x77\x14\xe6\x1b\xba\xda\xdd\xfe\xcc\xa2\x27\x31\xb9\x69\x29\x91\xa3\x7a\x2b\x41\x6e\x6b\x55\xab\xe4\x66\xb5\x3e\x35\xd1\xdd\x52\xa5\x61\x30\x32\xb1\xd5\xad\xa8\xc0\x17\x62\xe7\x55\x76\x9a\xd9\x28\x1c\x4c\x29\xd3\x84\x4b\x63\xe5\x90\xb2\xab\x53\x53\x95\x7a\xc8\x25\x77\xc3\x1d\xa8\x7e\xe4\xc9\xfc\x7a\xa2\x55\xf2\xc2\xec\xa1\x76\x5a\x1d\x69\x55\xfd\xc7\x50\x4a\x25\xee\x07\xbf\x15\x74\xff\xa6\xd6\x7d\x62\x47\x7d\x20\x6e\xdf\x72\xd1\x12\xa8\x4e\x1e\x92\x1c\x4c\x4e\xa0\xd7\xca\xaf\x15\x96\x69\xc9\xda\x1e\x35\x75\x16\x65\xf6\x05\x53\x14\x7e\xdd\xa8\x4a\xd9\x8b\xb2\xa1\xe2\xad\x9f\x53\x90\x90\x73\xe3\xfb\xdd\x22\x7a\x99\x3a\x62\x4e\x02\xc4\x35\x70\xff\xbd\xee\xe5\x5c\x50\x4f\x24\xb3\x26\x6b\x79\x14\x10\x82\x2c\xbf\x6e\xb2\x13\x1b\x54\xd5\x4e\x6d\x5e\xcf\x62\xc2\x7c\xe1\xb0\xed\x6b\x69\x3e\x88\x06\x51\x0e\xfd\x5e\x86\x6f\xe2\x53\x08\x96\x53\x9e\x5c\xb1\x36\x4c\x2c\xc6\x87\x78\xdc\x1c\x2d\xf8\xa2\xc1\xea\x53\xf5\x35\x17\x67\x1a\x17\x93\xf4\x7a\xbb\xe9\xc8\x4e\x29\xdb\xa6\x8f\x54\x03\xe6\x9a\x9a\x63\x6c\xd4\x25\x93\xaa\xb3\xb5\x3a\xf6\x10\x85\x7e\xac\xba\xc2\x3f\x9e\x34\xc0\x5e\x5c\xf8\x22\x69\xb8\x0c\x97\x78\xc8\x2f\xc2\x3b\x2d\xa5\xc8\xe3\x0c\xdb\xc3\x2c\x1a\xa6\xc9\x5a\x4b\x0f\x16\x7d\x4b\x6f\xab\xe1\x84\x59\x68\x67\x76\xc5\x9a\x98\x93\x3d\x67\x47\xa4\xbc\x89\x26\x1a\x8e\x87\x9e\xaf\xd2\xd2\x24\xef\xa5\x19\x30\x57\x4e\x62\x5f\x27\xb6\x3b\xc7\xe4\xb3\x87\xda\x49\xfa\xcc\x74\xb5\xf2\x31\xd2\xf9\x2e\x9e\x04\x3e\x5b\x6b\xdd\x3f\xa2\xdb\xaa\x4b\x3d\xc9\xe3\x9c\x9f\x6f\x1b\xb2\xa9\x6d\x69\x41\xc8\x6a\xcd\x88\x10\xa1\xbe\xdb\x45\xf4\xff\x71\xf6\xa7\x31\x92\x9c\xe9\x7d\x20\xde\x9d\x59\xdd\x4d\x36\xbb\x79\x0c\x39\x63\x59\xc6\xdf\x4e\x49\x83\x3f\xb5\x5e\x2e\x61\xef\x02\x0b\x43\x58\x6c\xa4\xaa\x6a\xc4\x61\xed\xa8\x59\xa8\xee\x69\xca\xc4\x7e\xe0\x9b\x91\x6f\x65\x06\x2b\x32\x22\x19\x47\x15\x8b\xdf\xf6\x80\xb1\x30\x16\x0b\xaf\x0d\xaf\x85\x35\x60\xc8\x80\xac\xb5\xe5\x4b\xc7\xda\xf2\x21\x39\x4b\x9a\x11\x47\x23\x69\x66\x78\x0c\xc9\xe1\xdd\xf7\x51\x7d\xdf\x27\xab\x17\xf1\xfc\x9e\xe7\x7d\x9f\xac\x88\xde\x0f\x0b\x0c\x30\x91\xec\xca\x23\xde\x78\x8f\xe7\xf8\x1d\xc9\x23\x0a\x44\xcd\x46\x85\x62\xb1\x59\x7d\x8f\x93\x19\x73\x8a\x41\x1f\x68\x05\xf2\x4b\xba\xe7\x03\x79\x4a\xfe\xab\x29\x61\xb2\x87\xe5\x53\x05\xe5\x6a\xbc\x75\xa0\x5c\x85\x68\x8a\xaf\x6b\xe1\xd7\x73\x9d\x71\x19\xe7\xb6\xed\x6b\x40\x37\x15\xe6\x1e\xda\x0b\x48\x68\x8f\xbb\x89\xd8\x33\x5c\xc6\x45\x8e\x76\x4b\x43\x0a\x6e\xa9\x4a\x60\x31\x24\x2f\xd5\xdd\xbe\x5c\x76\x4b\x61\x25\xd9\xbf\x03\xad\x8e\x1d\xdd\x29\x48\xae\xc3\xf9\x5c\x55\x3a\x9c\xc7\x27\x3e\x51\x2e\xb2\xa8\x57\x92\xbe\x90\x02\x82\x4c\xc1\x45\x1e\x56\x58\xc9\xd7\xa2\x55\xeb\xbb\xf0\xe0\xb7\x7c\xa6\x64\xe2\x3e\xab\x6d\x5a\xaf\xbe\xda\x21\x9a\x69\x6b\x9a\x8b\xfe\x8d\x5f\x71\xde\x4f\xdb\xa7\xec\x8b\x07\x3a\xaf\x95\x6f\x14\x66\x4c\x04\x60\x27\xd8\xf2\x1f\x74\xac\x77\x45\x69\xf6\xa9\xad\x3f\xcd\x46\x26\xa1\xc7\x21\x05\x66\x1a\x26\xee\xa2\x05\x3e\x2a\xaa\xa7\x52\x07\x0e\x74\xf2\x11\xd1\x4b\x5a\x4a\xfd\x05\x69\xbd\x88\xb4\x68\x65\x99\xb4\x48\x5b\x4a\xeb\xfa\x0a\xe6\x21\xbf\x68\xf8\xf4\x83\x9d\xb4\x2c\x62\x5b\x20\xa3\x04\xc2\xf6\xaa\x92\xfe\xbf\xea\x90\x27\x59\xd9\x8b\x42\x33\xa2\x2d\xad\xb1\x1e\xe4\xcb\x89\x51\xdf\x92\x98\x41\x04\x78\x17\xe6\xc9\x15\x65\x71\x7d\x65\xaa\x14\x11\xe7\x69\xb2\xcb\xf7\x72\xdf\xd1\x4e\xca\x7f\x10\xe8\xda\x2e\x97\x43\x30\x2d\xff\x40\xad\xbd\xe3\x4d\x87\x41\x94\x40\x43\x8c\x44\x8c\xab\x07\x83\x10\xfe\xd7\x03\x6f\x9b\xbd\xe9\x76\xf9\x32\x11\x68\xf5\x22\x87\x8b\xbf\x81\xc9\xc7\x2f\x9a\xd0\x15\x79\x99\x8d\xe3\x12\xdb\x08\x40\x2d\x3f\x54\xda\x80\x3f\x0c\x3c\xf4\xc9\xc6\xd2\x7a\x15\x06\x66\x4b\x51\x33\x7d\x03\xf4\xb5\x72\xd4\x13\x45\x5f\x11\x4a\x6e\x39\xc1\xca\xb3\xb5\x7d\x94\xac\x2d\x0a\x9b\x91\x19\x3b\xfd\x76\x57\xb7\x76\x1a\xdf\x67\x6b\xb4\xd2\x2a\x8f\x22\xc0\x6f\xdf\x66\xdb\x85\xef\x3d\x48\xe1\x92\x5a\x9b\x3d\x13\x92\x86\x2a\x3d\x4f\xe5\xd7\x2f\x0b\xec\x5e\x6d\xb9\x1c\x7a\xa9\x33\xb6\x89\x2d\x32\x53\x20\xa4\xe7\xfe\xe7\x94\xcd\xc9\x57\x7d\xe8\x35\x4c\x8b\x14\x2a\x9a\xc8\xcd\x70\x1e\x32\x45\x89\x5f\x28\x14\x89\xcd\x0b\xd3\xab\x0e\x59\xdb\xdf\x4d\x21\xbe\x6c\xe3\x7e\xa3\xbb\x41\xcf\x1c\xed\x9d\x2b\x24\x58\xc2\xd7\x98\x5f\x78\xae\x58\x49\x5c\x1d\x57\xfb\xdc\x9a\x29\x42\xfa\x6c\x9f\xff\x0a\x4d\x9e\x36\xb4\xbf\xf6\x24\xc2\x3c\xe6\x6f\xe9\x92\x2c\x34\xf1\xf1\xf1\xff\x16\x13\x16\x95\xbe\x29\x43\xa3\xcc\x52\x80\x40\xef\xe3\x80\x28\xd0\xad\xe1\x86\x5c\xa2\x9f\x59\xd3\x5f\x2e\xd1\x3e\x13\x0f\x05\xbf\xc9\x7f\xaa\x88\x70\xb6\x4f\x68\x02\x0f\xfb\x61\x66\x21\xbf\x98\x32\x92\xec\x97\xe1\xb6\x88\x71\xa2\x0a\xfb\x97\x54\x5e\x7b\x8a\x7e\x21\x5f\xab\x88\x71\x90\x95\xa3\x91\x49\xb0\xf1\x60\x85\x33\x3b\x8b\x5f\x4c\x9d\xa7\xa1\xc9\xf6\x55\x4f\x03\x69\xdd\xb5\xe9\x0e\x58\x35\x53\x00\xcc\xba\xa3\xc4\x75\x18\x45\xe6\x50\x90\x0b\x0b\x07\x9d\x30\x9e\xd2\x2f\xc5\x2a\x17\x90\x50\x6b\x6e\xce\x79\xe0\x2b\x7a\xf1\x39\xe2\xed\x4a\xed\xb5\xe5\x2c\x5c\xbe\x54\x92\x29\x20\x7f\x29\xc5\x2a\xe0\xe7\xf9\xba\xb6\x8d\x56\x73\x3d\xb3\xab\x26\x8a\x95\x80\x3d\xf0\xff\x7c\xdd\xd0\x3c\x3d\xd0\x79\xd3\x8c\x97\x2d\x8b\xab\x89\xcc\xa8\x02\xfd\xe9\xcc\xa4\x5f\xa2\x7e\xf7\x8a\x57\xe4\xf7\x6d\x51\xb4\xb0\x11\xf8\xdc\x56\x78\xb3\x91\x2d\x4c\x1c\xb7\x15\xdb\x1c\x65\x1b\x69\xee\xaa\x81\xaf\x7b\x59\x12\xe0\x6c\xcd\x66\xbb\x34\xe1\xc1\x37\xe4\x36\x51\x3a\xc5\x5c\x78\xa6\xeb\xc3\xfd\x1b\xc8\xb8\xf1\x0c\x77\x6e\x34\x61\xd2\xcc\xb8\x28\x59\x84\xcb\x41\x98\x94\x77\x45\xad\x07\xbf\xb4\xd8\x49\xc7\x5c\xc1\x98\x17\x48\x42\x30\x85\x4f\x68\xf8\x9a\xe5\xa8\x70\x74\x7e\x11\xa5\xf6\x95\xc4\xe3\x0d\x81\xec\xc1\x4e\x68\x93\xc2\x7b\xaf\x88\x4f\x14\x3d\x20\x7e\xd1\xe4\x23\x69\x92\xa4\x8c\x8a\x48\xf2\x0e\xb4\xe9\xcf\x2b\xf4\x6d\x95\x47\x4f\xa5\xdd\xaf\xbe\xda\x79\xee\x2f\xd2\xdd\x20\x6e\x62\x35\x21\x04\x04\x5b\x44\x76\x93\x60\xb3\xca\xc2\xd8\xaf\x51\x05\x6e\xad\x2e\xc5\x2d\xd2\xe1\x23\xb4\xb9\x30\x7e\x89\xe5\x2a\x53\x95\x96\x8a\xcc\x61\x1a\x32\x94\x36\x77\x53\xbe\xcd\xdd\xc2\x89\xd7\xf8\x06\xde\xd2\xe5\x15\x73\x73\x82\xd6\x9c\xc2\x2c\x7f\x88\x34\x9e\x79\xb5\xc8\xb0\x98\x00\x15\x78\x27\xd3\x6b\x98\xcd\x28\x5a\x7c\x65\xa3\xf5\xcb\xf3\x6e\x73\x68\x7d\xfb\x9b\xae\x43\x41\xcb\x0c\xef\xc6\x4c\x46\x98\xb8\xaf\xab\x22\x72\xd0\x3f\xb8\xab\xac\xab\x79\xb1\x49\x12\xdb\x7f\xa4\xba\x19\x2e\xb7\xe3\xd7\x60\x62\x72\xef\x10\x33\xf3\x1a\xdf\x02\xbf\xa2\x12\x09\x7b\x2f\x05\x9e\x20\x04\x18\xa0\x63\xfc\x2e\xbe\x74\x50\x3e\x4b\x15\x43\x0a\x1b\x0e\x93\xe8\xf5\xd2\xee\x9e\x2a\x69\xd3\xa0\xa0\x55\x82\xda\x0d\xcb\xc0\x6b\x8e\x20\x5b\x65\x22\x65\x81\x04\xe3\xc3\xc0\x27\xd5\x1e\x31\x5c\x1f\xdb\x6c\xc6\xd3\xa4\x8e\x6a\xb1\x4c\x80\x89\x30\x42\x0f\x94\xdd\xf4\xa6\x6a\xed\x7a\xb3\xb6\x19\xef\x2f\x80\x12\x99\x58\xc9\xd0\x3d\x68\x8f\x19\xfe\xa3\x29\x1f\x83\xc8\x3e\x3f\x53\x3d\x5a\x04\xaa\x1b\xca\xae\xe7\x1d\x15\xa1\xfc\x1b\x3c\x72\x0c\xe5\x9f\x07\xdb\xaa\x4d\x55\xae\x78\x78\x76\x71\x8f\xf2\xe0\xc3\xf9\x38\x75\x14\xb0\xd2\x2e\x3f\x2d\x7c\x2e\x08\x60\x52\x08\x6c\x39\x25\x00\x92\x64\xdf\x3a\xe2\x42\xed\x2c\x0a\x87\x12\x09\x21\x2e\x3d\x37\xf1\x01\xeb\xb9\xc0\x47\x5a\xb2\xf9\x7a\x8c\xcc\xb6\xcd\xd7\x1f\x91\x71\xd4\x5b\x37\x49\x3e\xe3\xc7\xec\x5c\xa0\x64\x60\xf0\x0d\x72\xad\x24\x61\xce\x29\xa8\x53\xcf\x24\x6f\xbc\x5e\xa6\x05\xcb\xce\x49\x94\x46\xdf\x88\x12\xe6\x1d\xbe\x61\xd1\x8f\xf2\xb5\xca\x41\x19\xb7\x7d\xca\x74\x0f\x58\x35\xad\xef\x26\x07\x9b\x52\x19\x4f\x57\xed\x6e\x2f\xf7\xf6\xfd\xa0\x5a\x7c\xac\x5b\x11\xa8\x66\xe1\x51\xec\x16\x80\x38\x1e\xc5\x06\xc1\x2f\x26\xbe\xe6\xf3\xfd\x26\x23\xbf\x35\x13\x7b\x3a\x5a\x13\x96\xaa\x4e\x99\x22\x83\xac\xd5\x69\x12\xc6\x7b\xda\xa1\xfc\x3d\xc5\x0e\x5b\x4f\xcb\x2c\xb7\xf1\x32\x1d\xa9\x90\x6c\xb8\xa4\x44\x3d\x3d\x5c\xb9\x8a\x04\x7b\xf0\xf0\x17\xf3\x9b\x33\x13\x25\x0f\xfd\xa1\x2a\x5b\x33\x61\x98\xff\x4a\x9d\xf8\x99\x19\x5b\xb0\xf1\x90\xf7\x7c\x4c\xb7\x82\xc3\x96\x75\xe2\xb1\x29\x7a\xc6\x18\xf0\xad\x2d\x65\xef\xff\x43\x5a\x83\x62\x7f\xde\xa0\xa8\x1a\x47\x23\xeb\x95\xfd\x9a\xf4\x6b\x1b\xf2\xbf\x9e\xc9\xb6\x93\x7f\x4f\x4f\xa1\xc9\x94\xaf\x83\x19\xdb\xa2\x88\x14\xf0\x87\x77\x40\x7e\xa1\x04\x4d\xa2\x41\x92\x66\x76\x57\x35\x47\x44\x35\xb2\x3a\x05\x44\x34\x52\x95\x69\xe1\xa8\x82\xd8\xf9\xac\x52\xf5\xba\x3b\xf1\xdd\xb1\x51\x94\xc7\xd6\x90\xdc\x53\xf5\x07\xd2\xf5\x6d\x29\x07\x53\xc5\xdc\xb0\x36\x6f\xab\xfa\x02\x04\xf7\x10\xe3\x1f\xc3\x58\xcb\x1c\x74\xcf\x38\x8e\x46\x23\x9b\xcd\xd0\x63\x75\xc1\x9e\x8a\xaf\x94\x8b\xd6\x8e\xae\xc7\x3a\x1d\x6b\xc0\x74\x94\x9c\xbf\xe3\x34\x39\x8f\x49\x8f\xd6\xc1\xff\xa9\xa0\xb3\xda\xfc\x76\x34\xd6\xb2\x1e\xe7\xb4\x98\xfa\x0e\x1c\x53\xf4\x3b\xfe\x97\xbf\xdc\x55\xea\xe5\x17\x14\xd9\xf7\xff\x07\xf1\x19\x7c\xcb\xbb\x9a\x76\xfa\x23\x15\xb5\x8f\xcc\x8a\xcd\xf2\xc7\x94\x3e\x02\xb5\xdc\xf0\x11\xdf\xa7\x05\x89\x72\x0a\x03\xdc\x70\xbc\x3c\xc0\x66\x24\x4d\x08\x9f\xf4\x7c\x84\xed\x85\xc5\x1e\x14\x8f\xfb\x02\x0e\x11\x96\x95\x05\xc2\xc1\x69\xcc\x7a\x7f\xb8\x33\xc1\xf6\x06\x15\x59\xa9\x67\xe3\xb4\x4a\xea\xd6\xa2\xbe\x9d\xf1\x9e\x8a\x6c\xf7\xaf\x1d\x31\xb1\x60\xe0\x08\x8a\x4d\xe1\x8a\x2a\x87\x93\xbf\x71\xf5\x4f\x38\x6d\xee\xea\xd6\x58\x5d\xd1\x78\x61\xa1\x93\x17\x59\x19\x16\x65\xc6\xf8\x41\x84\x15\x47\x54\x47\xf8\x88\xb6\x4e\x5d\x8b\x8a\x90\xca\x66\xde\x4c\xff\x0c\x1d\xf9\x22\x49\xf7\x84\x4f\xfc\x09\x96\xd4\xaa\x11\xc5\xf9\x45\x03\xc2\xb3\x63\x8a\xc2\x90\xea\xaa\x52\x59\x47\x78\xc9\xd7\x2a\xa7\xcf\x4c\x94\xdb\x7c\xb7\x52\x57\xc2\xb1\x8f\xd3\xf3\x9e\x0a\xde\x3f\x0f\x94\xea\xd2\xce\x2e\x3d\x24\x6c\xfa\xec\x58\x09\x74\xc2\xa6\xe2\x54\xc5\x69\x91\xab\xa4\xe3\xbe\x4a\x3a\xee\x37\xf5\xe5\x87\x65\xd2\x77\x39\x3f\xa6\xcc\x7d\x4a\x88\xf8\x5a\xa5\xc0\xf6\x8d\x71\x9a\x15\x9c\x19\xa2\xde\x7a\x5b\x3b\x91\x81\xdf\xc4\x26\x8b\x81\x2a\x71\x9e\x6e\x0a\xc7\xfb\xd1\x20\x2a\x44\x4a\xda\x85\x81\xae\x3a\x74\xa1\x36\xca\x2f\x1e\xa0\x1a\x45\x61\xa6\xc8\x8a\x3b\x95\x62\xea\xce\x0d\x0f\xbc\x0f\x6d\x1c\x97\xb1\xc9\x5a\x53\x3a\xa3\xf8\x55\x22\x3a\xda\xd4\x4e\x1e\x47\x03\x0e\xdb\x1d\x35\xc8\xd3\x84\x9a\x20\xaf\xb9\xcd\x56\xa3\x10\x3b\x88\xa8\x60\xb7\x9c\x3a\xee\xaf\x2b\x41\xbf\x7a\x26\xb3\x34\xdb\x29\xc8\x0d\x02\x5d\x55\x2c\xcc\xeb\x4a\x82\xfa\xef\x4f\x94\x1a\xe7\xb5\xa6\x53\xf7\x4d\x1b\xc7\x24\x21\x56\xfd\x64\xf1\x09\xa3\xbb\x14\x07\x31\xc5\xa6\x5d\xb3\x16\x7e\xeb\x0f\x93\x59\xdc\xfe\x03\xab\xec\x2c\x33\x7d\xee\x82\x61\xb7\xc3\xb4\xe6\xeb\x26\x84\xc3\xd0\x8c\xc7\xeb\x48\x4e\x51\x5e\xc0\xea\xc7\x31\x08\x9d\x72\x04\x71\xda\x81\xa8\x17\xc5\x71\x94\x26\x4f\x6b\x9c\x0c\xcd\x77\x29\xa8\x54\xe3\xe8\x92\xa3\x6a\xee\x0b\x77\xae\x0a\x42\x71\x2e\x5f\x09\x94\x91\xc9\x3b\x00\x02\xb0\x63\x38\x9d\x65\xe2\x1e\x4e\xc3\x83\xda\xdf\x4d\x25\x8d\x72\x59\x31\xe1\x2e\x63\xe5\xb1\xba\x1c\x8e\x04\xd7\xa4\xfc\xf6\x37\xf9\x66\x2e\x2a\x37\xe0\xdb\x38\x04\x90\xe0\xfd\x09\x98\x8c\xf8\x89\x57\xa9\x35\x27\xd9\x84\x52\x19\xbe\xdc\xa4\xbe\x61\x93\x42\xc8\x11\xa8\x78\x82\xc2\xc6\xd7\x4e\x58\x36\x5f\x1f\x8d\x4d\x31\xb4\x52\x53\x75\x40\x47\xe5\x8e\xe3\xa9\xbb\x85\x8d\xed\x20\x33\x66\xb9\xed\xf7\xde\x07\x8a\xf4\x76\x43\x49\xa4\xd6\x9b\xf7\x07\x0e\x74\xd6\xd2\x5e\x8f\x71\x28\x18\xeb\x76\xd7\x43\x9d\xda\x35\xf8\xee\xc2\x42\x27\xb3\xb9\x48\x65\x61\x37\x66\x38\x16\xbf\x50\x5b\xd6\x6b\x69\x0c\xb7\x4e\x31\x73\x68\x39\x3d\x14\xd6\xff\xc6\xf4\x7c\xaf\xb1\x5c\x1d\xa7\xe1\x8a\xec\x5f\xbc\x1d\x06\xca\x4e\xbd\xbe\xe8\xaa\x2c\x6a\x14\xbd\x21\xef\x41\xdc\xfb\x25\x7d\x29\x5f\x7b\xe1\x65\x02\x28\x46\x79\xd1\x56\x16\x19\x17\x55\xcd\x64\x46\xf1\x9e\xee\x4e\x9e\x12\x60\xa9\x49\x88\x4a\xb5\xce\xcb\x92\x75\x73\xe8\xd9\x88\x86\x8e\x2f\xa5\x02\x6b\x2b\x3b\xa1\xa8\x7b\xf9\x6c\xb1\xf1\xbc\x19\x5a\x93\x41\xcc\xd0\xe3\xcd\x4f\x22\x11\xe0\x17\x13\x65\xcc\xf7\x66\x21\x70\x60\x66\x60\x63\x16\x3a\xe5\x39\xb7\xeb\xce\x74\x7d\x0f\xf0\x93\x46\xc4\x5c\x26\x22\x15\x40\xbc\x31\xb5\x02\xa3\x71\x6f\xa2\xa4\x9b\x6f\x54\xc9\x1e\xbe\xbe\x3f\x8a\x12\xd2\x2b\x26\x8a\x9d\x8b\x66\x56\x9e\x81\x6c\x0a\x8e\xf8\x33\x35\x3f\x68\x30\xc8\xf6\x6e\x34\x40\xe4\xc2\x61\x14\xfb\xfe\x8e\x33\x22\x70\x76\x15\xe7\x6a\x3d\xb0\x6a\x65\xad\x4b\x45\x86\xc3\xf8\x40\x87\xf4\xf5\xb8\x70\x2d\xa2\x62\xd1\xd6\x06\xe8\xc4\x1b\xb5\xb6\x61\x15\x83\xa4\x7d\xc3\x1f\x8a\x85\x7f\x59\x69\x5b\x90\xbe\xac\x83\x40\x14\xc3\x32\x8f\x4c\x2e\xd4\x68\xad\xbb\x27\xb2\xff\x4d\x25\x28\x9b\xf4\xd3\x2c\x67\xad\x47\x65\xa6\x36\xef\x0a\x57\xdb\xfb\x84\x2f\x1e\xe8\xe4\x65\x2f\xcd\xfa\x51\x62\x9c\x6e\x0a\xb6\x38\xf0\x46\x1c\xcd\xb0\xfa\x14\x1c\x34\x17\x5c\xe3\xcf\x0c\xa2\x31\xa6\x3b\xb3\xd9\x14\x42\xe0\xbc\x6e\x5c\x7e\x59\xdb\xbd\x5e\x7d\xb5\xd3\x33\xbd\xc8\xe9\x94\x22\xeb\x3d\xae\xeb\x09\xc7\x5d\xb6\x14\xc6\xa6\xec\x43\xdb\x5e\x1c\x8f\x55\x66\xf2\xb9\xca\xcc\x87\x26\x5e\xad\x9e\x5c\xb5\x9d\x3b\x21\x51\x47\xb7\xfe\xc1\x64\x9b\xfb\xf1\xcb\xf3\x87\x3a\xbf\xb0\xa7\x9a\xa2\x0e\x5d\xe3\x54\x78\x37\x95\x8e\xca\x29\x84\xb6\x42\x90\x6c\x39\xc3\xaa\x33\x13\xb5\x6b\xfd\xc9\x44\x31\x33\x4f\xd5\x50\x19\x73\x73\x9d\x41\x66\xd6\xdb\xde\x52\xfe\x94\xea\x42\xdd\x0b\x7c\xc9\xda\xb7\xd4\xc3\x34\x2f\xe2\x48\xf0\x9d\x20\x9b\xa2\xe2\xc9\xd7\x0d\xdc\x86\xa5\xce\x38\x4b\x07\x99\xd4\x2f\x5d\xa0\xe1\x67\xbc\xca\x4e\xbe\xf1\x8b\x87\xda\x1e\x4b\x81\x74\x0d\xad\x25\xf6\x84\xc7\xb1\xb6\x7f\x43\x31\x9d\x97\x97\xe1\xda\x8e\x64\x7a\x17\x38\x9c\xa8\xc0\x42\x32\xc9\x95\x00\x5d\x15\xf3\xb1\xae\x4a\xaa\x51\x45\x77\x78\x9d\x45\x51\xe9\xbc\x87\x6a\x10\xaa\x33\x8f\xd6\x00\xe9\xd5\x0c\xef\xa5\x69\xb5\xc3\x56\x0f\x03\xbf\xf2\x6a\xa0\x8c\xec\xde\xd3\xa2\xb4\x0e\x0f\x3f\x8a\x62\x93\x30\x0e\x0b\x15\x28\xa8\x50\x0a\xe5\x43\x25\x3a\xb7\x3d\x70\x83\x05\xa0\x97\x66\x71\x9c\x5e\xfe\xca\x86\x3b\x5a\x2f\x7f\xa5\xdb\xb0\x8e\xa2\x84\xc6\xc7\xe3\xd4\x45\x9e\xcf\xa3\x1d\xcf\x37\xe9\xe4\xf5\xec\x30\x4a\xfa\x6d\x9f\xa0\x21\xec\xc1\xee\x7b\x61\xe2\x49\xb4\xa7\x6b\x65\x67\xb8\x97\x94\x7d\xe7\x1d\x23\x32\xf1\x1e\x26\x5f\xb7\xbf\x9d\x9b\xeb\x8c\xca\xb8\x88\xc8\xde\xaa\x3a\x04\x64\xce\xb5\x9c\x6b\xb7\x16\x0c\x1f\x59\xd3\x4f\xd7\xc0\x64\x90\x70\xbb\xfa\x7d\x1c\x80\x6a\x38\xcb\xe7\x38\xb5\xd1\x37\xf9\xce\x64\xaf\x0b\xb0\xbf\x4e\xe5\x2f\x27\xee\xe7\x95\x10\x21\x00\x8f\x1c\xf5\x81\x32\x8a\x7a\x55\x81\xef\xc3\x38\x1a\xf5\x6c\xff\x11\x7a\xe8\x4a\xc8\xf9\x95\xe9\x1a\x24\x02\x41\x76\xae\x13\x2c\x3e\x1e\x3a\x22\xa8\x7f\x85\xba\x84\x03\x56\x3b\x99\xaf\xab\xd8\x22\xf9\xa3\x9b\x88\x3a\x61\x6a\xe0\x06\xb4\xc4\xa1\xe0\xa7\xf4\x76\xbe\xae\x81\x2f\x08\x35\x13\x25\x45\x15\x0f\x38\x81\x4d\x11\xc4\x68\x29\x55\xcf\xfd\x8a\xc1\x9b\x60\x7f\x43\x4b\x05\xad\x39\xbe\x56\xe9\xe0\x6a\x5a\xd8\x0c\x16\x93\x88\xf3\x81\x1b\x91\x0a\x17\xdd\x3b\xff\x03\x65\xff\x12\x79\xd3\x4f\x97\x90\x9c\x36\x47\x29\x84\xc9\xc1\xdb\x8f\xf2\x30\x8b\x46\xd5\x31\x20\xb6\x2a\x58\xc5\x0f\x54\x3a\xfe\x40\x71\x18\x46\x51\x82\x4a\x14\x80\x32\x7f\xa8\x40\x33\x7f\x38\xd1\xee\x46\x61\x35\x0c\xab\x16\xe4\x4b\xac\x73\xa6\x19\x38\x4b\xd7\x6a\xf8\xc5\xd2\x95\xa6\x24\xff\x99\x42\xd2\xaf\x30\xf3\xc5\x4d\x00\xaf\x52\xdd\x68\x1e\x9b\xdb\x6a\xfc\x43\x00\x59\xb0\xdb\xa2\x52\xef\x0c\x51\xb5\x33\x9a\x2a\x46\xad\xe7\x85\x05\xd1\x66\x8a\x86\xab\x70\x25\x6a\x10\xd2\xb5\x04\xac\x10\x6d\x69\x25\xf5\x4c\x9a\xa3\xc8\xac\xce\x05\x9a\xb8\xc7\x93\x54\x1a\x28\xfe\x26\xe7\x17\x0f\xb5\x14\x01\xf9\x4f\x69\x16\xf0\xb5\xe2\xde\x03\x53\x6f\xb9\x67\x2a\xa0\x6a\x55\x42\xd9\x7c\x28\xda\x65\x6c\x32\x43\x3e\x13\x2d\x5f\xfa\xb8\xaf\x5b\x2d\xf7\x83\x29\xdd\x9b\x12\xad\xa9\x6a\x24\x98\xc4\x4d\xb7\x28\x84\xee\xc7\x7c\xf9\xe9\x79\x3e\xc8\xa7\xbc\x64\x45\xa6\x76\x7b\x30\x3e\x37\xd7\x89\xa3\x65\x2f\x06\x05\x8c\xc9\x3b\x81\x87\xb9\xbc\x53\x37\x20\x7e\xe9\x60\x67\x39\x1a\x94\x99\x44\x66\xcd\xa8\x03\x07\xc0\x96\xd2\x8c\x82\xbe\x5c\xa5\xd3\x89\xaf\x1b\x5a\x26\x8b\x9d\x34\x5b\xb1\x23\x32\x3c\xc0\x96\x76\x4c\xd7\xf5\xc1\x9a\xc6\xc6\x7c\x43\xf5\x4a\xc7\xb1\x59\xb7\xfd\x47\xab\xcf\x46\xb3\xf3\x0f\x26\x3a\x23\xa4\x25\x8a\x93\xaf\x0d\x2f\x0a\x04\xf6\xef\x07\x5e\xc2\xe2\x92\x32\xe7\xc3\x4e\xcc\x2c\x11\x4a\x46\x25\x3d\xaf\x7e\x17\x0a\x4b\xad\x5a\xa4\x4b\x64\x8d\x68\xec\x23\x5d\x14\x72\xb6\x54\x51\x67\x6b\xf2\xb3\x0f\x99\x16\x61\x3a\x1a\xdb\x22\x72\x65\x35\xc9\x10\xe9\xe6\x25\x45\xdc\x1e\x69\x1c\x9e\x7d\xa1\x63\x7a\x04\x50\x8a\x5b\xfa\x78\x3d\xaf\xb0\xda\x75\x43\xb2\xf9\x43\x9d\xb5\x61\x1a\x23\xb8\x77\x40\xfc\xea\x81\xa2\xf4\x79\x05\x7d\x47\x54\x06\x3f\x50\xd1\xfd\x8e\xae\x1c\xce\xaf\xd9\xb5\x28\x1f\xb2\x49\x2d\x92\x65\x30\x15\x11\x94\xa1\xce\x83\x1d\xee\x3d\x8d\x07\xbe\xae\x05\xe4\xc6\x06\x16\x03\x3e\xcb\x85\xf6\xa9\x78\x90\x4f\x6d\x75\xb0\x6d\xc0\xcc\x39\x36\x45\x90\xa4\x8f\xc7\xb2\xfb\x9d\x29\xa8\x42\x64\xb3\xc7\x95\xdd\xe1\x31\xcd\xed\x9c\x41\x36\xe3\x2c\x44\x96\x66\x39\x0a\x7c\xa4\xab\xe5\xf7\xf9\xfc\x12\xad\x20\x05\x50\xbb\x85\x33\x4b\x4a\xb2\x2d\x27\x23\xb7\x39\x25\xb2\x10\x78\x7f\x95\x13\x8a\x8b\x75\x51\xc9\x05\xee\xdd\x98\xf2\x65\xf5\x22\x90\xe3\x2c\x2d\x2c\x95\xd0\xb0\xf3\x22\xc3\xfc\x42\x3b\xbe\x7f\xa1\xca\x06\x23\x13\x47\x83\xc4\x24\xc5\x6e\xfa\x99\x22\x94\xe0\x01\xdf\x47\x34\xaa\xe3\x9f\xd1\x50\xe3\x11\xb1\xb0\x3e\x32\x63\x88\x24\xf2\x1f\x29\xdc\x74\x99\xf4\x6d\xb6\xbf\xf5\x4b\x2f\x8b\x91\xe1\xc4\x5b\x5c\xfc\x5b\x6c\xe6\x1a\xa1\x25\x32\xbf\xd5\xea\xc1\xc3\xb9\xce\x5b\x30\x8a\xe3\x47\x27\x4a\x3e\x0a\x5d\x14\x6d\xbd\xeb\x18\x17\xd5\xd0\xe0\x0b\x2f\x07\xad\x6f\x7f\x93\xa3\x87\x4d\x6d\xda\xfc\x13\x4c\x01\x61\x75\xf9\x69\xb3\x2e\x88\x70\x34\xc2\x58\xcf\x9d\x5f\x34\xe1\x40\x7e\xe6\x9b\x7f\x73\xf1\x9b\xdf\x38\xb0\xc7\x57\x2c\xd9\x07\x09\x05\x9d\x1f\x04\x4a\x15\xe7\x02\xed\x45\xe8\x81\x3c\xae\xac\xd6\x50\xaa\x47\x31\xe9\x29\x12\xa7\x17\x90\x76\x93\x06\x48\x15\xb3\x66\xc4\x62\xf2\xab\xfe\xbc\xf6\x51\x3b\xaf\x90\x79\x7d\xbb\x6a\xe3\x74\x1c\x25\x83\x19\xf5\xab\x8e\x62\x5e\xf3\x0b\xdd\x4b\xb9\x84\xa2\x9c\xb0\xa9\x1f\xc6\xeb\x5d\xb3\x71\xcc\xee\x7f\x18\xf6\xbd\x5d\xc5\x94\xbd\x35\x21\x4f\x29\x77\xd3\x2f\x1e\x70\xd7\x7e\x2d\x87\xc3\x6c\x3d\x8f\xd1\xe2\x79\xc5\x49\x1f\x56\x7f\x2b\xca\x87\x9e\xd7\xf9\x23\x5d\x6d\xfe\x91\x02\x22\x0d\xd3\x32\x8f\x92\xc1\x6e\x4c\x13\xf1\xa5\xf4\x58\x59\xa4\x7d\x0a\x14\x24\x66\x47\x1f\x62\x36\x60\xfa\xed\xc6\x02\xc6\xf7\x5e\x57\xbe\x93\x2b\xf6\x71\x55\x86\xbf\x48\xed\x04\x17\x04\x0b\x34\x7f\xfe\x2f\xa1\xd7\x83\x0d\x6f\xf7\x46\xf5\xfc\x9c\x20\x63\xb5\x7a\x50\xf3\x68\x75\x7d\x9c\xf1\x1c\xbe\x50\x54\x2d\xa6\x15\x4a\xab\xf1\xc7\xbc\xc6\x92\xc7\xf4\xbd\x1a\x28\x1b\xa8\x3b\x13\x1f\x28\x82\x8a\x8c\x07\xb6\xaf\x76\xc2\xbc\xfa\x6a\x15\xcd\x0d\xd7\x08\x76\xed\x44\x69\xe0\x82\xc8\xd7\x0f\x95\xe3\x15\x18\xab\x42\xab\x3e\x14\xd2\xda\x80\xdc\x4e\x0d\x03\xc4\x71\x03\x37\x79\x2d\xf3\x2b\x65\xfa\x3c\x2a\xf3\x61\x96\xa6\x23\x6c\x59\xf8\xc4\x23\xfa\xe3\x8f\x28\x49\x0f\x9b\x87\x66\xec\x54\xb3\x5d\xee\xa4\xac\xb7\x5c\x1a\x1e\xdb\x55\x9b\x71\x51\x53\x7b\x7e\x4b\x48\xe8\x88\x38\xe9\xaa\xcd\x8a\xf5\x5d\xfe\xd4\x82\xbd\x35\xce\x00\x56\x4e\x01\x14\xe1\xa8\x92\x97\x61\x0d\x16\x01\x68\x37\x54\x0e\xc6\x69\x99\xb5\x7d\x43\x8f\x21\x72\x20\x5e\xde\xa6\x6d\x1e\x6b\xfe\xc4\x54\xf3\x28\xe9\xa7\x50\xf5\x93\x82\xba\x12\x04\x04\x9e\x4b\xac\xdc\x7d\x10\xfa\xf2\xc1\x85\x96\x9a\x52\x90\x51\xe2\x6b\xd7\x53\x35\xc9\x3a\xe4\x89\x1d\x16\x0f\x00\x2f\xe4\x78\x58\x36\x74\x9c\x2f\x3d\xd9\xf5\x1b\xd5\x3d\x45\x67\x3d\xe5\x71\x17\x76\x64\x22\x80\x78\xb1\x87\x3d\xb2\xe1\x19\xfc\x9f\x2a\xe0\xd2\x69\xdc\x34\x26\x0d\xc4\x78\xb7\x2e\xab\xbe\x40\x9e\x96\xc5\xd0\x8c\x50\x1e\xc0\xf6\x01\x55\x31\x00\xf6\x58\x36\x4a\x06\xb0\xde\x9f\x79\xa1\x0a\x8f\xb7\x89\x97\x5d\x52\xe2\x65\x97\x26\x53\xf8\x38\x42\x9b\x2e\xcd\x7a\xac\xa3\xe2\xfa\x3f\xa1\xe0\x3e\x62\x24\x2d\x27\x14\x4b\xf7\xf0\x8b\x1a\x28\x6c\x61\xa1\x33\x8e\xc6\xf9\xeb\xa5\x35\xcc\x82\xd4\xdb\x84\x94\xff\x7c\xab\x2d\x2f\x98\xf7\xe9\x34\xca\x4f\x29\xac\xdd\xa9\x5a\xec\xfd\xcb\x30\x4a\xea\x1b\x08\xc5\xe2\xc9\xb4\x69\xc8\xf9\xba\xeb\x8f\xdd\xa1\x35\xab\xeb\x8f\x78\x8e\xef\xbf\xc3\xc6\x07\xc4\xfa\x4e\xd0\x96\xb1\x5f\x3c\xc0\xbe\x8a\x30\x06\x1a\xf0\xe2\x92\x89\xc5\x8a\xd2\xc2\x0e\x44\xc0\x2e\xa0\x3e\x20\x62\x7d\xf5\x24\x61\xfe\x50\x27\x1c\x9a\xcc\x71\x72\x9a\xa8\x27\x0d\x38\x89\x30\x4d\x06\x69\x4c\x1a\x38\x0b\x0b\xde\x0b\xb5\xfa\x71\x62\x86\x54\x77\x14\x7b\xa5\x13\x5b\xae\x2b\x89\x14\x00\x3d\x31\xb1\x72\xf0\xd6\x01\x5f\xea\xe2\xd9\xdc\xa1\x96\xa7\xdc\x9d\x0a\x54\x25\xa9\x5e\xfe\x5b\x58\x58\xea\xa4\x25\x12\x2f\x1c\x1c\x5f\x28\xcb\xcc\x2f\x94\x20\x6d\x96\x56\x81\xc3\xd2\xac\xcb\x6f\x5b\xca\xc2\xaa\x81\x2f\x9b\x58\xe9\x9e\xa0\x5b\xc9\x0a\x71\xfc\xa2\x89\xd7\x59\x26\xcb\x26\x12\x6e\x31\x4b\xcb\x07\xbe\x61\x73\x56\xe1\x0a\xd6\xb2\xa8\xb0\x39\x71\x36\xb0\x3d\xed\xd8\xf0\xb9\x30\xaf\x48\xd4\xf8\xc0\xfc\xe7\x7f\x50\x8a\x90\x4c\xec\xe0\x3f\x6a\xaa\xaf\xd8\x51\x68\x99\x48\x8d\xb0\xff\x94\xd2\xd3\x3b\xe5\xed\xaa\xac\x89\x8b\x21\xb7\x0b\xc5\xe7\xa4\x7a\x32\xd8\x75\xbe\xa7\xab\x7a\xb5\xaf\x99\x9b\xef\x84\x26\xcb\xd6\xf1\x90\xd1\x3f\xbf\xa5\x80\x76\xc7\xb1\x2a\x3d\x63\xcf\xad\xaf\xb1\x8d\xe3\x96\x82\x80\xa3\x80\x22\x78\x70\x45\x0b\x3d\xf4\x37\xe9\xe1\x02\xbd\xcd\xfa\x14\xfc\xa2\xd6\x1f\x59\x58\xe8\x0c\x62\xc3\x25\x5a\xb1\x15\xf1\x75\x9d\x73\x4a\x01\xbd\x9f\x99\x91\x29\xa2\x37\x19\xf5\xe0\x04\xee\x7e\x0b\xdf\xc0\x2f\x54\xc5\x8c\x7d\x63\xf7\x57\xa7\x02\x8a\xa1\xff\x3a\x50\x7a\xde\x20\xc5\xa3\xdd\x7a\x8c\xa6\x20\xd6\xfd\x8d\x40\xf5\x61\x6f\x4e\x3c\x01\x07\xc0\x00\x87\xb3\xf3\xba\x15\xef\x52\x7c\x8d\xf4\xe4\x28\x8e\x30\x7e\x37\x7a\x9a\x52\xe5\x56\xea\x16\xef\x06\x4a\x91\xf8\x3e\x50\x67\x92\x30\xe5\x7f\x99\x7e\x25\x0a\xbb\xc8\x7c\x11\xc9\xdc\x0b\xbc\x05\xe1\x15\x05\xed\x7e\x1c\x55\x65\xc8\xbd\x9d\x50\x3a\x57\xbb\x36\xaa\x4c\xc1\x3d\x64\x17\x05\xff\x98\x92\x03\x94\x53\x6f\x4c\x5a\xcf\x3e\xcb\xa7\x01\x9b\xc2\x83\x4f\xc9\xfe\x55\x28\xe3\xb7\xb5\x82\xe3\x65\x14\x9b\x99\xf9\x4e\x8c\x1f\xec\x77\xfb\xbb\x4a\x1a\x6f\xdf\x06\x21\x3f\xf9\x93\x61\x58\x89\x7b\xfa\x49\x30\x25\xd3\x40\xc3\x2d\xb8\xf4\x6a\xb8\xf1\x28\x6f\x6a\x89\xaf\x77\x68\x21\xd1\xd6\x33\xf9\x1a\xfb\x47\x22\x92\x69\xc1\x3f\x12\x29\xe0\x2d\xc2\xfd\xe2\x57\xee\x84\x15\x26\xb6\xae\x5b\xd8\x0b\x58\x4d\x3a\xf0\xce\xe9\x97\x02\x88\x3e\x4a\x38\xf6\x94\x52\xdc\xef\x97\x79\x91\xad\xef\xa5\x61\xc0\x04\x3a\x4e\x83\x28\xf0\x46\x1f\x31\x32\x6e\xd5\xb1\xc3\x5c\xde\xbd\x0b\x41\x3c\x56\x66\xbb\xeb\x2b\x93\x07\x9e\xe2\xbb\x40\xae\x7e\x59\xfb\x0d\xff\x91\x62\x0b\xde\x53\xb9\x65\x66\x0b\x13\xc5\x36\xcb\x77\x79\x0a\xe2\x27\xe8\xd9\x03\x71\xc7\x8e\xd6\xc8\x74\xcf\x28\xf2\xd6\xfb\x34\xbf\xf9\x8f\x54\x39\x31\x4c\x45\x22\xa6\x31\xe9\xf1\xa7\x6b\x9a\x11\xcf\xa5\xad\x32\xec\xc0\x63\x61\xb1\xe5\xe1\xab\xfe\x49\x6d\x8d\xcf\xcd\x75\x8a\x61\x94\xf5\x67\x3c\xac\x6d\xa6\xeb\x9f\xf3\x79\x95\xaa\x01\xb3\x20\x91\x94\xe2\xfe\x0c\x52\x69\x5d\xe0\x03\xde\x0f\x54\xee\xf5\xbe\x8e\x6c\xc7\x53\x5b\xd1\x41\x8d\x27\xdf\xad\x77\xe0\xdd\x1b\xba\x4a\x91\xbc\x69\xda\xbe\x0c\x75\x9a\x00\x0b\x9c\x89\x4f\x34\x00\xa6\x96\xbe\x51\x67\xd5\xc4\xb1\x4d\x1c\xd3\xdf\x95\xa4\x1d\xb0\xf8\x7b\x58\x4a\x22\xdd\xe0\x37\xd5\x95\xf5\x38\x7a\x63\xc6\x1b\x88\x1e\xc3\x06\xc5\x2f\xd4\x06\xc5\xb0\x26\x7e\xa1\xce\xa5\xd8\x9a\x41\x09\x28\x8d\x98\xc5\xb4\x94\x0d\xbe\x6f\x66\xbc\xf7\x50\x12\xf8\x28\x1a\x73\x68\x21\xed\x51\xba\x63\x69\x9c\xfa\x03\x79\x9c\x82\x0a\xf1\x8a\xf7\x61\xac\xee\x57\xdc\xa6\x7c\x10\x53\x27\x9c\x2f\x2c\x74\xd2\x30\x2c\xc7\x86\x84\xf9\x9d\x21\xc2\x77\x15\x70\xe1\xbb\xb5\xac\xe9\xc5\x03\x1d\x93\x14\x51\x18\x8d\x8d\x13\x5f\x90\xba\x85\x07\xf8\x1d\x55\x5a\x03\x99\xe9\x47\x69\xdb\x0f\xdb\x5b\x81\xe2\xc1\x9d\xe4\x74\x49\x70\xf2\x5f\x73\x37\xb6\x92\xa4\x6b\x24\xf2\x64\x7a\x5c\xab\x68\xb2\x84\x6d\x6a\x3b\xd9\x70\x65\x28\x2c\x21\x9c\x99\xc7\xb4\xf8\xe2\xb1\x5a\x34\xf7\xe2\x01\x89\xcf\x5b\x1e\x45\xb4\xb3\xab\x30\x1b\x3b\x37\x1a\x32\x3f\x9b\x90\x83\xd8\xe2\x34\xa9\x13\xc7\xc2\x03\x55\x95\x7f\xba\xeb\x19\xe4\x57\xa8\x36\x24\x5c\x62\x49\xc1\x07\x69\x06\xcc\x21\xf6\x9a\x53\x81\x36\xbf\xfb\x48\x55\x86\x4f\x69\x23\xbc\x8f\xa6\x80\xec\xf9\x4a\xbe\x9f\x26\xaa\x68\x57\x54\xef\xc2\x1f\x9e\xa5\xb3\x90\x8d\x93\x68\x87\x44\x09\xe1\x0b\x65\x30\x08\xb5\x79\x87\xbc\xf2\x00\x88\xef\x4c\x94\x8a\xcc\xbf\x40\x11\x45\xd0\x90\x6d\xef\xb7\xfe\x9e\x46\x6d\xdc\xc3\x99\x85\x70\xf3\x2d\xda\xe7\xe4\x4c\xf7\xeb\x6c\x90\x59\x53\xec\xd1\x8a\xdc\x3e\x1b\x45\x69\x58\x8c\xb5\xe8\xd7\x88\x47\x38\x71\x42\x50\xc3\xe0\xad\x55\xb2\x4b\x05\xa2\x76\x5a\x38\xc3\x28\xe9\x2b\x8f\x21\xac\x91\x77\x15\xa7\xe0\x5d\xb5\xa3\xe5\x85\x59\x47\x89\x10\x12\xae\x77\x27\x7e\x4f\xff\x5d\x95\xad\x3d\x08\x7c\x04\xfc\xa1\xf2\x3a\x98\xb9\x1b\x28\x6a\xe5\xdd\xda\xe4\x7c\xf5\xd5\x4e\x5e\xf6\xfb\x36\xe1\xe8\x56\xb2\x06\x7a\xa6\x92\x36\xd4\x45\xa4\x86\x26\x71\x0e\xad\x6c\xd5\x14\x28\xb3\x7a\xe5\x30\x33\xb4\x99\x8d\x12\x9a\x49\xd8\xe4\x80\xe1\x47\x19\x1a\x0d\x74\x5c\x5f\xc6\x73\xc4\xe1\x73\xac\x09\x9d\x3d\x4a\x93\x62\x18\xaf\xb7\x7d\x75\xea\x92\x6a\xfc\xdd\x54\x78\x8f\x4f\x5c\x63\x7a\x64\x92\xc4\x66\xd8\x70\xd9\x38\x7d\xe2\xc1\x42\x77\x10\x61\x48\xf3\xc2\x6f\x10\x49\x9a\x8d\x08\x8e\x29\x82\x43\x27\x34\x6d\xe8\x84\x2a\x08\x7f\xa4\x7d\x04\x3f\x52\x73\xc9\x9a\xac\x18\x92\xb2\x03\x26\x03\x14\xac\xf8\x5a\xb5\x43\xec\xf2\x72\x9a\x15\xbb\xbd\x2f\x3c\x99\x38\x6c\x5d\x56\xb4\xd5\x99\x0d\x7f\xdc\x7d\x36\x51\x5b\x30\xcb\x28\xa0\x4c\x7d\x5b\x19\xd5\x66\x99\x49\x30\x91\x75\x13\x1a\xc1\xd3\x6e\x00\x5c\x1d\x61\xbe\x5a\x16\xa8\x0c\x43\x30\x09\x85\xb2\x3d\x1b\xd5\x12\xc1\xf7\x1f\xc1\x84\x42\x25\xe2\xae\x12\x87\xe9\x59\x53\xa0\x53\xc9\xad\x3a\xaa\xd3\x49\xdb\xce\x97\x28\xc0\x66\x94\xf8\xb6\x01\x0a\x19\x47\xaf\x97\x69\xd6\x56\x38\xad\xd3\xca\x2a\xe3\xba\x82\x90\x1c\x69\x82\x6a\x86\x26\x2b\xd2\x34\x41\x21\x06\x7d\xee\x2f\x02\x8d\x94\xf9\x42\x31\x8a\x48\x31\x36\x8b\x6c\xbe\xc7\x07\x14\x3b\x11\x1a\x63\x56\xec\x82\x0d\x88\x13\x06\x77\x55\xb8\xcb\x81\xd6\x74\xac\x46\xd7\xd1\x49\x97\x66\x1d\x5d\xa7\xc6\xc4\x39\xd8\x39\x3c\x7b\x00\x1b\x21\xe2\xea\xcb\xca\x8f\x0a\x4f\x46\xba\x32\x4a\xb4\x1f\xde\x39\xe2\xcb\x42\x53\x51\x75\xc5\x44\xdc\xfb\x1a\xa2\x5f\x3c\xbf\x4d\x8a\xb1\x9d\x3d\xec\xc2\xc2\xd6\x09\xfa\x95\xf8\xd7\xeb\x81\x62\x1a\x5c\xd4\x50\xcd\xc2\x01\x68\xa2\x3c\x8d\xab\x43\x74\x46\x95\x4f\x2f\xe9\xe6\xef\x65\xb5\xca\xae\x05\x2a\xf2\xdf\x54\x95\xc2\x70\x98\x66\x45\x2c\x2c\x42\x8e\xfd\x02\xd5\xc4\x3e\xa3\xe6\xd0\x20\x2e\x91\x8f\xbf\xe0\x10\x0a\xd5\x57\x08\x49\xaa\x49\xce\xc2\x44\x6b\x26\xb1\xcc\x2d\xe0\x10\x66\xe2\x51\x86\xd7\x34\xaa\xe1\x5d\x77\x6f\x6b\x43\x53\xd8\x55\x9b\xed\xf5\x30\x1f\x2d\x44\xb7\x6b\xc3\xc3\xd7\xdb\x64\x36\x23\x9e\x32\xf4\xe4\x68\x26\x1e\x79\x16\x27\x30\x1e\xe3\x16\x95\x6d\x90\x1e\x1d\xa7\x81\x76\x42\xd6\x2f\x6b\x03\xd2\x97\x17\x1d\xe1\x72\xfb\xdd\x3c\xd7\x59\x1b\x46\xf9\xb8\x76\x1c\x1c\x53\xc7\xc1\xb1\x86\x56\x22\x5a\x90\x31\x8f\xf1\x81\x2d\x00\x77\xb7\x2e\x4f\x69\x97\x14\x26\xdb\x43\xbf\x1d\x07\xd8\xbb\x34\xa1\x50\x04\xfe\x78\xe2\xd9\x28\xef\x62\xb8\x1c\x9c\xd7\xe1\x17\x4e\x2b\xb7\x97\x93\xfa\xfc\x3d\xa7\xba\xeb\x63\x13\xae\xac\xa5\x69\x9f\x4e\x0f\x94\xfb\x6f\xd0\xd9\xce\xd7\x81\x77\x86\xe8\xa7\x45\xab\x0a\x98\x65\x30\x5a\x8a\x95\xea\xfb\x40\x26\x5f\xc9\x15\x26\x7a\xa2\x30\xd1\x13\x85\x94\x30\x61\x11\xad\x12\x15\x74\x97\x37\x0b\xb9\x82\x43\x5e\x9a\x06\xca\xd6\x0c\x76\x76\x4e\xe0\xd2\xbb\x90\x5c\x0b\x3c\xd3\x3d\x4a\x9c\x3d\x35\x8a\xdc\xee\x18\x3f\x2c\x3b\xf7\x09\xef\xeb\x68\x32\xbb\x5c\xc6\x14\x45\xa2\x72\xf3\x65\xdd\x1d\x47\x1c\xba\x1c\x4e\xca\x8e\x9c\xcd\x2d\x5a\x60\x00\x3c\xf1\xb5\x0a\xd8\x33\xbb\x9c\x66\x23\xb4\x68\x30\x29\x99\x11\xc0\x2f\xf0\xf9\x8a\x88\x39\xef\xb0\x3a\x0d\xf5\xf0\xe5\x28\x66\x3a\x9c\xcb\xc4\x1c\x5f\x1d\xa2\x84\xec\x01\xa2\xd2\xc8\x7c\x18\x8d\x47\x36\x29\xf2\x3d\xf4\x46\xf1\xd8\xa6\xc9\x82\x1a\x02\x38\xe4\xce\x03\x7e\x49\xb4\x65\xc0\xf4\x47\x60\x02\xcc\x31\xc2\x8f\xab\x34\xeb\x84\x66\xd8\x60\xe2\xbe\x1c\x25\x68\xaf\x1d\x6e\xae\xe6\x35\x81\xba\x8b\x61\x14\x0a\x2c\x52\xa6\xa7\x76\xdc\x0f\x7c\x69\x68\x64\x92\x72\xd9\x84\x45\x59\x2d\xb7\x47\x54\xe7\xf7\xef\xe0\xae\xa4\xec\x50\x7d\xbd\x48\x86\xe3\x83\xc5\xe0\xdd\xd3\x4e\xe0\x94\xef\x34\xe1\xfd\x8e\x7c\x81\x06\x42\x9a\x06\x9e\x26\x13\xa6\xc9\xaa\x25\x5f\xa4\x6a\x6f\x71\xe2\x95\x4e\x0a\xf5\xa2\xca\xb7\x13\xcb\x02\x8b\xd8\x5c\x3e\x51\xb9\xda\x55\x2a\xf4\x20\x18\x3c\xa3\x1c\x0b\xcb\x64\x39\xc2\x7e\xe0\xb5\x31\xef\xab\x82\xf1\x7d\x05\xfb\xac\x52\xac\x8c\x71\x2a\xc8\x42\xa1\xa6\xc2\xd7\xb5\xde\xe7\xe1\xd9\xf9\x8e\x4d\x5e\x4b\xd7\x29\xef\x99\xb6\x75\xf2\x1d\x1e\xd7\xfe\xe9\x65\x65\x94\xbb\x0d\xcd\xd9\x31\x3a\xeb\xe9\x93\x0d\x08\xa4\xc5\x4e\x34\x22\x0e\x0c\x16\x9e\x72\x15\x39\xe8\x5c\x45\x1a\xf8\xe0\x61\x9a\x14\x51\x52\xe2\xc0\x12\xa6\xe5\x83\x40\xf1\xf0\x79\x17\x40\x72\xfb\x1d\xd5\xd6\xdb\x54\x1c\xce\xa1\xcd\x7a\x5a\x6b\x92\xcf\x5b\x7e\xa1\x2c\x3f\xf5\x4e\x8d\x60\xe1\x0f\x68\x4e\xf0\xb5\x66\xde\x95\x49\x41\x38\x3e\xb1\xd4\xf0\xfb\xcf\x6f\xe2\xec\x55\x86\x1c\x2f\x38\xff\x5a\x25\x14\x9d\x66\x2b\x66\x9c\xc6\x11\xd4\xe6\x70\x16\xb3\xb8\x3c\xfb\xcb\xe0\xd6\x90\x92\xdc\x51\xaa\xd1\x23\x93\xe5\x43\x13\xc7\x2d\x8f\x2e\xfd\x42\x27\xeb\x5f\xd4\xd8\x66\x0e\xf0\x94\xd9\x30\x4a\xcb\x7c\x66\xca\x8c\xb9\xe5\xcc\xb5\xb0\xc5\xc9\x19\xa2\xda\x73\x9f\xf9\x10\x62\x44\xcc\x53\xde\xe4\x90\xfc\xdc\x0b\x14\x02\xf6\x5e\x63\x86\xbc\x1a\x25\x85\x19\xa0\x0b\x81\x5d\xe4\xef\x2a\x39\x8c\xbf\xbb\x5d\x4d\x6f\x69\xf6\x60\x15\x59\x69\x72\x02\xa3\xae\xa5\x42\xb2\x5f\xb9\xab\x71\xe5\x43\xdc\x55\x14\x13\xf9\x0e\xb6\x4e\xfc\xb2\xe3\x0d\x33\xff\x95\x0e\x35\x33\xcd\x40\xd2\x1d\xfc\x69\x7b\xc3\x23\x32\xda\x5d\x49\xed\x62\xfb\x46\x94\x0c\x0a\x86\x05\xe1\x54\x60\x52\x0c\xbf\xa8\x25\xfa\xd5\xd4\x1f\xa7\x79\x61\x70\x92\x20\x82\xf8\x47\xb4\x70\x9d\xd1\x95\x2f\xa9\x9e\xd7\xa6\x71\xe9\x68\x5c\x16\x36\xcb\xf7\x79\xcc\xd2\x75\x78\x6d\xe3\xec\x3d\x8d\x1b\x65\x3f\x6c\x8a\x51\x31\xcd\xa8\xab\xf4\x8a\x73\x56\xa3\x09\x88\x5b\x39\x4d\xa5\x63\xb0\x31\xae\x4f\x3c\x46\x91\x8f\x7f\x36\x71\x01\x93\x99\xbf\x24\x50\x5a\xb5\xff\x62\x32\x95\x37\x6e\x3f\x88\x5e\x3c\xd0\xc9\xed\x1b\x68\x0b\x3b\xa9\x36\x65\x47\xa1\xe9\x99\x85\xe8\x1f\xe2\xa8\x39\x43\x47\x07\x5f\xd7\x06\x71\x61\xa1\x33\xb0\x99\xa8\xe0\x8a\x3d\x3b\xc7\xb8\x52\x84\x7a\xdc\x63\x37\xab\x71\xa3\x8c\x8b\xdb\x22\x0a\xa2\xb4\x0b\x58\x23\xd1\xb4\xf4\xa0\xfe\xdb\x14\xd5\x08\x10\x54\xb1\xc9\x2f\x4d\xb4\x44\x76\x28\xc8\xbe\x46\x41\xb2\x06\xe9\x8f\xa1\x35\x19\x57\x04\x81\x2a\xba\xac\xe6\xfd\xef\x60\xdc\x85\xe5\x2a\x6b\x2c\x2f\x45\xf8\x79\xaa\x8e\xeb\xb4\x6a\x54\xe7\x39\x0c\x63\x13\x8d\x54\x40\xc5\x94\x2b\xc1\x4c\xd5\x63\xcb\xc5\x6a\x17\x28\x0a\x07\xa3\xc7\xa3\xfd\xf3\xc0\xa7\x79\x7f\xde\x44\x77\x1c\xa7\x51\x52\x38\x05\x4f\xd4\xa8\x98\x0d\xe3\x74\x4c\x7c\xca\xb1\xa3\xab\xdc\x09\x09\xb2\xdf\x72\x6a\x08\x80\xf3\xf2\xb5\x02\x35\x85\xc3\xc8\x2e\x3f\xe6\x15\xa5\xfe\xd1\x44\x3d\xec\xab\x1a\x25\xfa\x27\xb8\x47\xb4\xe1\xb7\xf8\x0c\x17\x99\x74\x9a\xee\x18\x27\x90\x36\xb0\x74\x40\x6f\xc5\xc1\xba\x45\xc7\x21\x42\x80\x3b\x13\xa5\xb9\xf1\xc9\x44\x83\x10\x1b\x7c\x0c\xf3\x74\x64\x8b\x68\x84\xea\xa0\x54\x39\xfd\x21\xbf\x35\x55\x1f\xb3\x89\xa1\x12\x3d\x03\xf6\xb8\xd2\x8f\x0d\x0c\xf2\x84\x2c\xaa\x1c\xf8\x7e\x22\x17\xb1\x91\x1e\xed\xe9\x7a\x71\xaf\x5e\x9c\x86\x2b\xc4\x7d\x15\xd0\xd3\x2d\x0a\x64\xf8\x1a\xb7\x2d\x1e\x61\x2d\x51\x03\x3d\xce\x7a\xe1\x22\xa6\x3e\x25\xb3\xee\x8b\x14\x6b\x51\xdf\xc6\xeb\x7b\xaa\x51\x91\x0a\x4f\xb5\x1a\xf0\x1c\xfe\xd5\xc4\x07\x4c\x47\x03\xcf\x26\xbc\xad\xc0\x00\xe7\x50\x69\x41\x6d\xe1\x92\x2a\xab\x7d\x5c\x17\xa1\x79\xe9\x60\x27\x33\xe3\xa8\xaf\x3a\xd2\x1f\x29\xbb\xb3\xba\x37\x43\xf5\x8e\x71\x99\x84\x5e\xbb\x4f\xfc\x8b\x5b\x4e\x5d\x6d\xb3\x91\x81\x69\x92\xc4\x71\x6a\xb0\xb9\xb0\xd7\x09\xbf\x70\x47\x7f\x1e\xf5\xed\x9a\x59\x47\xb1\x03\xa9\x00\x03\xaf\xd0\x9d\xd8\x52\x22\x06\xf0\x4b\x62\xb0\x8e\x6a\x8e\xb0\x75\x24\x09\x01\xe0\x08\x3d\x86\xb9\x85\x53\x99\x55\x82\x50\x07\x3d\xae\x18\xbf\xf7\x54\xe5\x71\x87\x66\x96\x14\xf6\xc9\xb6\xf7\xd6\x47\x02\x2b\x26\x1e\x6a\xeb\xbb\x8e\x47\x8c\xf9\xb3\x07\x7e\xa9\x88\x4f\xf7\xa2\x29\x86\x9f\xfd\xef\xc1\x2d\x11\x33\x6c\x7f\xbe\x3d\xde\xc5\x00\xa1\x76\xfa\xf9\xc4\xc3\x4d\x9e\xea\x6a\x7a\x3d\x1a\xa2\x38\x57\x61\x37\x81\x81\xba\xab\xb4\x1a\xae\x43\xe7\xc5\xb1\xfb\xbd\x7a\x68\x13\x69\xb8\x63\x7a\x25\xbb\xf3\x48\x1d\x6b\x8a\xd4\xdc\x48\x33\x36\x11\xef\x8b\xd8\x9e\x3f\x51\x54\x9e\x4f\xea\x86\x3e\xd5\x64\xb3\x61\x9a\xc1\xe6\x14\xb1\xfd\x2e\x54\xc8\xa4\xb7\x5c\x7d\x3d\x96\xc4\xfd\x5a\x80\xf0\xe2\x81\x4e\x14\xc7\x25\x31\x01\xf0\x43\xc5\x3e\xb3\xba\x7f\xbe\xd6\x51\x5d\x96\x0e\xa3\x5e\xc4\x25\x96\x57\x78\x81\x9f\x99\x6c\x0b\x4f\x44\x1a\x55\x17\x38\xcf\x4c\xe1\x65\xcd\xba\x51\xb1\xd2\xef\x4c\x03\x6b\x9f\x54\xaa\xae\x23\x13\x25\x39\xea\x00\x1c\x43\x06\x1e\x56\x04\xf7\x6d\x17\x5b\x7a\x27\xdf\x4f\xe8\x8b\x51\x4a\xda\x07\x49\x30\xb1\x2a\x69\xcd\xcd\xf3\x24\x7d\xa0\xd0\x53\xa3\x28\xb1\x19\x8b\x04\x0b\x44\xc0\xe3\x60\x8f\x37\x38\x9b\x2f\x91\x6e\x75\x32\x60\x02\xd0\x16\xa9\x78\x6d\x9d\x50\x29\x93\x29\x86\xb1\x2d\xaa\xf4\xce\xdb\xe2\x7e\xaa\x05\xe6\x3f\xf5\x48\x32\x9b\x55\x99\xfb\x2e\xa5\xa9\x80\x2a\x2d\x50\x35\xc0\x38\x63\x6a\xce\x6c\x68\x3e\x41\xe0\x01\x53\xe7\x26\x8f\xb9\xb5\x75\x30\x7d\x14\x0d\x5f\xe7\x74\xe3\x1e\xed\x75\xd2\x6a\xc2\x74\xde\x0c\x5a\xdf\x3a\xc8\x23\x73\x44\x2d\xd9\x4b\xca\xaf\xf3\x3d\xd5\x2c\x79\x8a\xa0\x88\x48\x83\x98\x32\x8f\x7f\xe0\x36\xa3\x54\x55\xb9\xbd\x84\xf5\xc3\xee\x30\xfc\x42\x31\x0e\x46\x69\x56\x0c\xcc\xc0\xee\x51\x36\x16\x97\xb4\x6e\xe3\xfb\xf8\x0a\x31\xe0\xae\xb7\x70\x74\xb8\x89\x1a\xc4\x1e\x25\x98\x70\xd2\x6d\x7f\xcb\xd6\x14\x65\x26\xda\x75\xe8\xe0\xfe\x31\xbe\x09\x69\xe9\x7d\xec\xef\x82\xfc\xaa\x9e\xe4\x65\xd5\x61\xcd\x56\x51\xb6\x77\xd2\xc8\x8e\x4e\x74\x44\x39\x40\xdd\x56\x8c\x7a\x33\x46\x40\x01\xaa\x97\xd4\x10\xab\x43\x07\xef\xbb\x3b\x51\x56\x79\x41\x9d\x62\x3a\x4a\x11\xf4\x60\xdb\xbc\xa5\xbd\x5f\x6e\x35\x80\x7b\x0f\x76\x62\x9b\x0c\x8a\xa1\x4d\x38\x71\xc1\x06\x79\x19\xf7\xc8\x2f\x54\x11\x39\xed\x91\x3a\x01\xce\x1b\x59\x28\xef\x2b\x3e\xf9\xfb\x2e\x04\x23\xda\x39\x9b\x61\xa0\x38\x04\x09\x75\x51\x95\xf7\x12\x2a\x9b\xca\x00\xb6\x17\x15\xbb\x5b\xbf\xf4\xb2\x10\x18\xb0\x23\x09\xe3\x41\xe1\xdc\xd8\xa0\x12\x0f\xf2\x62\xb0\xf3\xeb\xfc\xe8\xff\x25\x8d\x31\x60\x68\xe7\x27\x3a\xea\x78\x3e\x64\x17\x17\x4c\xe1\x53\x6a\x77\x3e\xe5\x48\xf0\xa3\x32\x8e\x8a\x68\xec\x22\x33\x14\x73\x4e\xaa\x8e\xd3\xc9\x89\x97\xf5\xc8\xa3\x41\x22\xd1\xa8\xeb\xd0\x2f\x2c\xc8\x75\x2d\xdf\x77\x7a\xbb\xe9\x78\xc6\x37\x22\x67\x08\x80\x0d\x3c\xc3\x3f\x98\x28\x35\xca\x2d\xda\xa5\x70\xf3\xc7\x1d\x85\x3c\x49\x8b\x68\x79\xdd\x1d\xf9\xec\xb8\x43\x43\x2b\xee\x3b\x0d\xa8\x71\x93\xac\x23\x3e\x3b\x3c\xeb\x53\x8b\x25\x77\xad\xdc\x64\x56\xcd\xc0\x64\x11\xfb\x17\x88\x5b\x0b\xfd\x2a\x7e\xe1\xec\x3b\x07\x23\xc3\x24\x70\xd4\x7c\x6f\x4e\xd9\x9b\x7b\x72\xe3\xaf\xd2\x7d\xe0\xb9\x9d\xab\x91\x8b\xe1\x1b\x9e\xa7\x71\xa9\x78\x70\x2c\x3b\x18\xf8\xd6\xad\xa6\xa3\x96\xfd\x1c\x2e\xcf\xe8\x00\x3d\xd2\xf5\x25\xd5\x47\x36\x3c\x05\xf1\x06\xf6\x4c\x9e\x23\x88\x39\x50\xb1\x68\x39\x92\x48\xcf\x0e\x4d\xbc\xdc\xf6\x47\x03\xab\xcc\x60\xb7\x00\x67\x42\xa8\x40\x4e\x2a\xa8\xcc\x0b\x13\xc1\x6f\x1f\x27\x27\x4a\xc6\x7c\xad\x42\x77\xd3\x2f\x63\x76\x9f\x10\x49\x71\x25\xce\xf5\x51\x63\x56\xdc\x23\x55\x2a\x0e\xce\xb0\x02\xf9\x98\xe3\x17\xaa\xe2\x91\xd9\x71\xd9\x8b\xa3\xb0\xa5\x4a\xd9\x60\x48\xf2\xb5\x1a\xb4\xc4\x64\x2d\x65\x92\x48\x77\x26\xf9\x99\x5f\x7f\x76\x04\xf5\x07\xec\x30\x50\xd6\xe1\xeb\x8d\x86\xbc\xd6\xae\x5a\x78\xfc\xa0\x35\x00\xf5\x02\x84\xc4\x7f\x38\x25\x68\x49\x63\x20\xae\x68\x53\x5d\x96\x06\x5e\x7d\x11\x8e\xc6\xf4\x2b\x1a\x55\x80\xbd\x35\x01\x09\x7c\xc7\x65\x68\x99\xa9\xc6\xe5\xd6\xa9\xd2\xeb\x76\xb4\xc0\xe2\xd2\x62\xe7\xd9\xfe\x2e\xa5\x02\x4e\xd6\x68\xaf\xf8\x86\x7b\x15\xa8\x39\x9f\x4e\xdf\xef\xfe\x8c\x14\xce\x30\x49\xf6\x75\xbf\x3a\xdd\x57\xb3\x19\x6d\xdb\x78\xd4\x52\x18\xd4\x4a\xcd\x0d\x10\xd4\xe5\xac\xac\x36\xc8\x1c\x2b\x0d\x03\x78\x55\x29\xe6\x5f\x55\x85\x01\x53\x0e\xca\xbc\xa0\x44\x44\x54\x8b\xa7\x6a\x84\x4a\xb9\xeb\x9c\xca\x19\xee\x04\xd3\x65\xc5\x2a\x1a\xe2\xf7\xab\x14\xbf\x5d\x7b\xb2\x24\xfa\xbb\x0a\x3a\x93\xe0\x7c\x3c\x24\xe9\xb7\x34\x3a\xef\xbc\x32\x89\x37\x03\x22\x94\x93\xcf\x92\xb3\x12\x3e\x3b\xf1\x67\xff\x59\x8f\x95\x8f\x12\x0b\xdf\x68\xa7\xbd\x76\x5a\x59\x4d\x73\xf5\x47\xee\xc2\xf3\x8d\x0a\x13\x0e\xd7\x43\x93\xf5\x23\xad\xab\x7f\x49\x89\xd4\x5d\x0a\xf6\xba\xbf\x7e\x75\xf7\x94\x4e\x3f\xd6\x94\xab\x57\xbb\x2a\xcb\x8f\x03\x7a\xe8\x38\x35\x50\x50\x40\x97\xe4\x33\xc4\xf6\xfc\x0f\x4d\xb0\x9d\x5e\xd9\x1f\x58\x78\xe3\x38\x90\x28\xc0\x1c\x80\x96\xbf\x3f\x6d\xe5\xe9\x1a\x22\x26\x8b\x96\x97\x77\xa9\x9c\x76\xf7\x86\xef\xcf\x7f\xa5\x5b\xa3\xbb\x63\x27\x3d\x31\xc5\x89\x97\xb1\x84\x30\x43\x06\x3b\x47\x9c\xf5\x5f\x2a\x78\xd5\xee\xae\x16\xd4\x7e\x5c\x4d\x5c\x93\x17\x88\x90\x71\x10\xfd\xf1\xc4\x1f\x79\x20\xd1\xf0\x7f\x57\xb6\x3c\x57\x95\x56\x09\xab\x46\x00\xfb\xf7\x23\xe4\xd0\xa8\x8e\x5d\x0b\x3c\x63\x26\x4d\x06\xa9\x30\xe8\x10\x07\x40\x1a\x85\xaf\x15\x74\x00\xd5\xc6\x6a\xe6\x08\xbe\x97\x7e\x9c\x00\x7c\x9f\x51\x8a\xc2\x83\x32\x26\xa0\x2b\x58\xce\xdc\x2d\x0e\x3c\x3b\xf2\x1c\x6a\x80\x38\x13\x2e\x63\xbe\x3a\x21\x14\xc7\x30\x3e\x8b\x20\x82\xdf\x52\x2b\xb4\xb3\xbb\x79\x9a\x47\x05\x78\x88\xa8\xe1\xb0\x25\x80\xd8\x51\x2b\xde\xf6\x3f\x55\x36\xcc\x47\x55\x51\x7c\x90\xda\x7c\x77\xeb\x1b\xbf\xc2\xc1\x37\x9c\xa1\xf9\x3a\x50\x9d\xd5\x33\x34\xd0\x4a\x27\xed\x05\xde\xc6\x50\x2f\xe4\x6b\x55\xc0\xcf\x87\x65\xa2\xea\xa7\xc7\x74\x85\x9d\xd9\x22\x08\x6f\xaf\x2b\x54\x5d\x6c\x57\xd9\xd5\x4c\x7a\x14\xf4\x2e\x69\x52\xb8\x82\x76\x92\x97\xbe\xea\x2f\xd0\x22\x0f\x9e\x7e\x4f\x29\xac\xf7\x6c\x36\x00\xd3\xf8\x85\x2d\x5a\x3f\x5b\xbe\x14\xb7\x5a\x45\x13\xc5\xfa\x2e\xc5\x16\x39\xa2\x9a\x7f\x8f\x68\x11\xd6\x5b\x34\x32\x4e\xdc\xce\x0d\xf9\x55\x85\x51\xc9\x0b\xb3\xbc\xcc\x8e\x49\x78\xa4\x1f\x2a\x33\xb9\xc7\xe9\xc4\x72\xd6\x09\x73\xf3\x7e\x37\x76\x6a\xb6\x67\x30\x32\xcc\x76\xc1\xdd\x63\x27\xbc\xae\x96\x47\x6e\xa3\x81\x6d\x57\x39\x0f\xde\x75\x9e\x4a\x3f\x18\xdb\x2f\x55\xfd\xf6\xa2\x96\x3c\x4c\x4c\x18\xa5\x2d\x0f\x84\x6e\x75\x55\xb3\xa0\xb5\xa1\xb6\xca\xa2\xc8\x4c\xe8\xb0\xda\xd8\xe8\xb0\x27\xf1\xb5\x03\x4e\x15\x99\x59\xb5\xb1\x17\x0d\xe6\x6d\x41\x03\x70\xde\xd9\x2e\x59\xb2\xb0\xd0\x39\x3c\xfb\x15\x5f\xab\x82\x92\x01\x6a\x1c\x9f\x06\xaa\x95\xb5\xa3\x5b\xcd\x4b\xec\x28\xd8\x45\x11\x53\xfd\x11\x4e\x6c\x24\x20\x57\x09\xdf\x82\x0d\xe0\x32\x97\x15\x45\xae\xcd\xa7\x53\xc7\x48\xf2\x49\x38\x95\xb4\x74\x01\x0e\xfb\x3f\x26\xaa\x39\xc7\x60\x3e\x69\x49\x57\x13\x1e\xcf\xfb\x07\x81\x72\x8f\xfb\x42\xc3\xaa\x2e\x51\xe6\xe9\xc4\x14\x35\x77\xb0\xee\x8c\x62\xca\x22\x1d\x19\x11\xb1\xc2\x1c\x3b\xa1\xc9\x97\x27\x1a\xdb\x70\x23\x6b\x41\x34\xaf\xfe\x50\x36\xd8\x6a\xcc\xf8\xba\x26\xff\x33\x37\xd7\xc9\x87\xe9\x1a\x89\x57\xe3\x6f\xee\x68\x51\x2f\xf4\x2b\xb5\x2e\xc0\x54\x17\x46\xda\xd1\x4f\x2a\xba\x7e\x3a\xca\xd3\x64\x0f\x59\xe4\x13\x32\xfe\xc0\xd6\x4d\xa5\xf3\x7e\x7b\xa2\xbc\xe5\x3f\xc0\x0d\x21\x30\xfb\xb1\x5e\x34\x4a\x81\xe8\x9a\x42\x7e\x2e\x9b\xa4\x0c\xd1\xf9\x44\x9c\x03\x4f\x0d\xbe\x56\x11\x65\x3e\xb4\x71\x3c\x4e\x0b\x8d\x71\xe3\xee\x9b\x08\x83\x6e\x8f\xa8\xaa\x53\x30\x05\x6c\x15\xe5\x89\x23\x81\xd2\xb3\x3e\x32\x95\x84\x65\x16\xab\x83\x41\xa6\xb4\x9d\x08\xe0\xd4\xef\x97\x2b\x89\x5d\xdb\xad\xea\xb3\x8c\xa4\xc5\x2d\xc2\x2a\x48\x72\xfb\xea\x2e\xf0\x5c\x91\x19\xbb\x68\xc5\xf5\xf6\x2f\x2a\x17\xbf\xcc\xae\x46\xab\x22\x8c\xe5\x84\x76\xfd\x21\x7c\x4e\x65\x59\x59\x31\x5c\xb3\x79\x41\x8c\x33\xb1\x38\xa6\xb2\x21\xb6\xa4\xbb\x0a\x0c\x87\xde\x37\x8e\x3e\x9e\xdf\xa8\x5d\x1d\x51\xa4\xc3\x22\xb3\xa6\x18\xd9\xa4\x98\x51\xdb\xed\x59\xe5\xe8\x0c\x37\x1e\x24\x1e\x40\xea\x23\xad\x3a\x35\xd9\xeb\x6e\xe0\xb9\x9f\xa5\xe9\x8f\x35\x7a\x97\xc1\xf9\x5c\x45\xa0\x45\x8a\xa8\xfa\xa9\x8d\x9d\x5f\xf7\x49\x90\x6f\xf8\x2f\xd2\x8e\x28\xc1\x48\x15\xcf\xa2\x7a\xc2\x28\x46\x07\xf1\x7a\xf6\x59\x47\x21\xab\x7e\x07\xd6\xf4\x2e\x58\x08\x3b\xf5\xda\xc3\xb3\x5c\x71\x3a\x0f\x24\xa8\xf3\xf4\x5d\x9a\x5d\x12\x67\xec\x6e\xeb\xdb\xdf\xe4\x8d\xe3\x5d\xd2\xd5\xc3\x38\x7f\x18\x78\x81\xe6\xd3\x01\xc1\x86\xa4\xc3\x54\x2d\x75\x20\xe6\x8e\x21\x4f\x40\x78\xb1\x63\xa3\xa5\xb4\xb8\x68\x6f\xc2\x8b\xe3\x13\x8f\x5f\xfa\x13\x88\x02\xa0\x99\x71\x04\xfb\x09\xa6\xf8\x9f\xa9\x93\x79\x67\x97\xa2\x3d\x45\xcb\x95\xdc\xe2\x4b\x30\x37\xb0\x52\xff\x0c\x5b\x18\x60\x1b\xb7\x02\x8f\xdb\xdd\x81\xe8\x8c\x15\xeb\xa9\x12\xc6\xde\x91\x13\x0d\xc7\xb8\xd2\xe4\x94\x99\xd9\x70\x25\x16\xcd\x25\x54\x13\x2f\x29\x97\xaa\x4b\x81\x47\xfa\xf4\xd2\x2c\x4b\xd7\xa2\x64\x90\xb7\x3d\xb2\x82\xdb\xfa\xa8\xc8\x81\x71\x83\x48\xf5\xec\xe4\x31\x4f\xcd\x88\x5a\x9a\x4c\xc7\xe9\x93\xd4\xc9\xf6\x2b\x2d\xdf\x10\xf2\xbc\x9a\xba\x8c\x87\x75\x57\x83\xe6\xee\x2a\xbb\xbb\x57\x55\x4f\xe6\xa4\x3a\xf9\x7a\x65\xba\x2e\xa5\x10\x41\x7a\xfb\x7e\xe7\x31\x85\xc2\x88\x92\x3c\xca\xa9\x62\xe9\x32\x25\x1e\x37\x4c\x81\x3b\xc1\x94\x23\x4f\x4b\x49\x15\xd2\x7d\x08\x30\xab\x89\x39\x97\x99\xb5\x96\x67\xe9\x6f\x2a\xf4\xe7\xa6\xd6\x30\xce\x6c\x3f\x0a\x21\xbf\x84\x93\xf9\xc6\xc4\x1f\xd9\x37\x6a\x66\x26\xa4\xd4\x63\xe2\xd8\x0e\x6c\x9f\xf1\xc2\xe2\x1a\x5b\x7d\x84\xd8\xc9\x7a\xb8\xc4\x1b\x63\xb3\x6e\xb3\x5d\x1e\x06\x71\x43\xa9\x16\xb1\x12\x80\x53\xe3\xa9\xe6\xb8\x6a\xaf\x1e\x54\x91\x3a\x07\xd0\xcb\xcb\x51\xc8\x5d\x61\xa5\x2c\x20\x34\xe7\xcd\xa6\x79\x96\x17\x69\x36\x72\xad\x4c\x84\xf4\x67\x55\x15\xeb\xac\xab\x78\x11\x5e\xf7\xf5\x92\x5c\x08\x5b\xce\xe7\xe2\x88\x66\xab\x5f\x55\x56\xac\x27\x9a\xc4\xd1\x7e\x9e\xc2\x24\x81\xd2\xb7\xdc\xc1\x8f\xe8\x00\xf7\x53\xb7\x43\x98\x9b\xa7\x53\xc1\x1b\xc4\x20\x26\x60\x9b\x63\x7e\xd1\xc4\xf3\x2e\xab\xa7\xac\x3c\x5e\x68\x30\xc4\xfc\x65\x3b\xc4\xe3\xf0\xec\x0b\xe4\xd0\x17\x9a\xb1\x09\xa3\x82\xfd\x50\xb0\xaa\x11\x6f\xf1\xb5\x07\xaa\xaf\x8f\xab\x3f\xcf\xfa\x6d\x1d\x6f\x9d\x54\xfd\x10\xc6\xfe\xe3\x27\x6a\xc2\x90\xc9\x62\x02\xbf\x60\x17\x86\x41\x2c\x76\xc2\xbb\x2a\x0f\xfc\x2b\x4f\x76\xa7\xc4\x55\x75\xdb\xc2\x84\x45\x9a\xb5\x7d\xb4\xbf\xa7\xeb\x13\x9c\xdb\x13\xd5\x66\xb8\x51\x5b\x00\x55\x18\xd3\x2f\x53\x1c\x6e\xd8\xa5\x2f\xaa\x4e\xe0\x45\x05\x0d\x49\xd2\xd5\xe7\x1f\xa5\x15\x8e\x65\xf6\xbb\x1a\x08\x76\x93\xde\x84\x5a\x22\x73\xc1\xa5\x1b\xa9\xfc\x7f\x80\x6c\x42\xb6\xc9\x60\x08\x51\xb2\xd1\x69\x36\x54\x3d\x31\x52\xed\x0d\xbf\x06\x5f\x2f\xa3\x70\xc5\xa2\x22\xe5\x6c\x61\xab\xb9\x2a\x4d\x8c\x27\x55\xff\xdb\x64\x64\x6e\xa4\xb6\x85\x89\x66\x7b\x4c\x35\x97\x47\xe5\xe8\x91\x29\xd5\x26\xcf\xf7\xdb\x4b\x5d\x08\xe6\xe3\x20\xbe\x55\x2a\x84\x07\xe5\x45\xe0\x5d\x6e\xcf\x21\x09\x43\xb4\x76\x5b\xa9\xb9\xd6\x09\xd9\xd5\x3c\xcb\xa3\x5e\xec\x35\x34\x5d\x0d\x53\x79\xec\x69\xaf\xf2\x7e\xf6\xa6\x7d\xad\xa5\x08\x43\x9b\x5a\x9c\x79\x53\x3b\x8b\x67\x51\xb2\x62\x33\xd5\xaa\xbb\xa5\xa4\x3f\x3f\xd3\x16\x75\x4d\xf6\x79\x9d\xd5\x08\xf0\x66\xcc\x7d\xce\x02\xb0\xcc\x24\x25\x68\x6a\x10\xf6\x52\x93\x89\xaf\xa8\x10\x66\x7d\xf6\x7f\xc9\xa9\x93\x92\x88\x72\x54\x94\x85\xdd\xe5\x8b\x20\xbf\xa7\xf9\x91\x9b\x14\x2d\xc8\x31\xa3\xd9\xc0\x34\x3a\x02\xb7\x6f\x82\x21\xf5\x62\x3b\x8a\xf2\xa1\xd0\xbb\xa5\xab\xdd\x72\xac\xbe\xcd\x9a\xc9\x2d\x04\xef\xd2\x65\x0b\xbf\x63\x58\x1b\x20\xe8\x39\x36\x51\x2b\x0f\xfa\x9e\x98\xb5\xb7\x02\x5f\x6c\x23\xb3\xff\x7c\x7f\x4b\x29\x46\x55\x13\x07\xf5\xae\x23\xb4\xbf\x71\x08\x85\xd3\x58\x9a\x04\x74\x5f\x4e\x45\xa0\x0a\x1e\x70\xaa\x7f\xa8\x6a\x67\xc0\xcc\x63\x7b\xdc\x9a\xe8\x2e\x27\x0d\x97\x58\xa1\x50\x0c\xc5\xd8\x54\x2c\x2e\x94\x1b\x38\xfd\x91\x0a\xbe\x6c\x59\x7d\xbb\x6c\x13\xa7\x53\x84\x3f\x3d\x81\xb9\xcb\x2f\x9c\x21\xf2\xa0\xcc\x4a\x18\x4d\x70\xb3\x6b\x32\x65\x26\x4a\xd3\x51\xe2\x4e\xfa\x62\x6c\x7f\xad\xae\xf2\x26\xc9\x4c\x9f\x54\xa0\x10\xc9\x02\xdc\xf0\x05\x22\x06\x59\x1e\x2d\x27\xe2\x7f\x5e\x59\x36\x7c\xa1\xf2\xeb\x61\x9a\xa4\x59\x6b\xaa\x00\xa3\xeb\x37\x2a\xe1\x1f\x9a\x18\x28\x31\x0c\x21\x60\xb6\xd8\x27\x78\x4b\x14\x1f\x64\x15\xe9\x47\x29\x1c\x49\x94\x14\x0c\x3d\x2c\x61\x16\x54\x9f\xc7\xff\x80\xa1\x97\x22\x52\x5d\x50\x72\xb1\x93\x95\x0e\x62\x2a\x6c\x1a\x25\x98\x7a\xc9\x97\xf5\xb2\x75\x97\x44\xca\x79\x49\x77\x28\xf6\x7f\x0e\x45\x8d\x3d\x0d\x1e\x05\xce\x22\x46\xcb\x86\x1c\x10\x60\xed\xd9\x29\x70\xbb\xb5\xd9\x1e\x45\xdc\xfd\x7b\x74\x1f\x68\x17\xdd\xc4\xf3\x42\xcc\xb6\xab\xab\x7a\x5d\x18\x31\xc4\xcb\xad\x0d\x55\xa7\x83\xb2\x22\x7f\x54\x2d\xee\xa1\xfa\x57\x3a\xb6\x90\xd9\x6d\x79\x2e\x0b\x74\xad\xf9\xda\xeb\xaf\xa6\x65\x56\x60\x6a\x21\x36\xbe\x87\x87\x03\xd4\xe6\x8e\x0d\x35\xb5\x58\x1a\x89\x96\xc7\xdf\xfe\x4a\x77\x7b\x1b\xb3\xca\xad\xd3\x19\x8f\xb7\xd8\xab\x81\x09\x97\xa6\xec\x73\x7c\x6d\xf9\x46\xa3\x72\x78\x9a\xf4\x8d\xf2\x81\xe2\x7a\x0c\xbf\xa8\x79\x47\x2d\x2c\x54\xef\xb0\x39\xcb\x65\x37\xd9\x67\x7c\xc5\x77\xde\x73\x1b\x96\x5e\x9d\x0e\x47\xe1\x71\x05\x5a\xf1\xde\x97\x85\x19\x73\x7f\x15\x78\xd2\x2b\x38\x6f\xf9\x85\xd3\x20\x1d\x9a\xbc\xb0\xe0\xa0\xa8\xd2\x9c\x24\x24\xff\x5c\xc1\x9a\xd9\xcb\x40\x4a\xd9\x8f\x2b\x21\x4e\x5b\xe4\x2d\x0f\x58\xba\x84\x8d\x48\x8c\x06\x7c\xa3\x67\x6d\xb8\xfe\xa8\x5b\x47\xe5\x93\x5d\x85\xdb\xff\x43\x24\x5e\x7a\x93\x14\xdf\x6b\x35\xa9\x1e\x65\xdc\x96\xec\xc8\xb4\x20\xf8\x03\x68\x7b\x16\x6c\x55\xb5\xf9\x61\x5f\x3b\xa5\x5a\x63\x79\x61\xa3\x44\xab\x79\xdf\x56\x3e\x0b\xb7\xd5\x4a\x7e\x2d\x1a\xd9\xc4\xbe\x49\x0f\x04\x8a\x3b\xdc\x8e\xe4\x17\xae\x60\x99\xd9\xd0\x46\xab\xb6\xbf\xdb\xa3\xac\x2e\x23\x53\x84\xa2\x01\xb6\x5b\xa4\x03\xf7\x27\x0a\x1b\xc4\x3e\x83\x48\xaa\xef\x07\x53\x26\x87\x5a\x62\xb7\x1c\xc9\x11\x2a\xc9\xbb\x92\x57\x3b\x5b\x8b\xc7\x96\x66\x3b\xb1\x5d\x2e\x48\xa8\xcb\xa9\x0c\x3b\x66\xe9\x45\x05\x8f\x00\x39\x18\x55\x34\xd6\x89\xc7\xae\x7b\x03\xfc\x96\x13\x3a\xeb\xdb\xd1\xd4\x87\x1b\x46\x99\xfd\x7f\x93\x81\xe1\x9b\xc8\xca\x51\xcf\x6b\xff\xb1\x49\xbc\x32\x64\x3a\xef\x18\x1b\xcb\x26\x8e\xd3\xb5\x76\x4b\x79\x66\x7a\xa2\xc3\xff\xa8\x6a\x1f\xef\x4c\x45\x5f\xe6\x0d\xd3\x52\xb6\xbc\x67\x03\xa5\x26\x5e\x8d\xd0\x36\x8a\xd8\xe2\xc1\x2a\x7f\x68\xa9\x18\x93\x9d\x70\xa4\x06\xba\x5f\xf5\xfa\xd2\xb1\x02\x1a\x6d\x51\xb1\x91\xaf\x9b\x9c\x1d\xaa\x88\x24\x74\x61\x03\x7b\xcb\x04\xbe\xd6\xaa\xc5\x8c\x0a\xb3\xfe\x68\xf5\x64\x40\x6b\x80\x16\x13\x0a\x6d\x77\xb5\x91\xf7\x2d\x94\x36\xf0\x7e\xb8\x17\x39\x01\x30\x67\x6f\x86\x90\x1b\xc3\x79\x1d\x73\x09\x58\xe2\x07\xd3\x63\xd1\x20\x76\x49\x12\xef\xc2\x21\x77\x91\xc7\xe1\x59\xbe\x7e\xa0\xce\xc7\xa6\x30\xef\x60\x27\x1f\x97\x99\x0b\xf3\x18\x50\xa0\xc4\x12\xfe\x41\xd3\x0e\x49\x36\x91\x6d\xe5\x21\x80\xda\x19\x1e\x34\xfa\xbf\x48\x90\x6e\x4c\xfc\xc3\x18\x59\xc3\x2c\x37\xf1\x64\xd3\x06\x6d\x2a\x72\x65\x79\x40\xfc\x22\x7c\xfe\x07\xea\xc8\xfa\xc0\x2d\xde\x74\x79\x39\x1f\xa6\x99\x25\x72\x22\x9a\xc6\x57\x31\xdc\x52\xdf\xa8\x86\x1b\x05\xcf\xfb\x54\xf5\x13\xcd\xed\xd6\x2f\xcf\xf3\x7e\xfb\xa1\xc2\xc6\xc0\x3a\x04\x10\xd7\xdd\x35\x91\xe8\x85\x05\x0a\x62\x64\x76\xa0\x72\xf5\xa9\xa2\x39\x7e\x3a\x51\xa5\xfa\xf0\xf5\xd2\x30\x26\x47\xbb\x39\x57\x3f\x0e\x9d\x45\x18\xe0\x8b\x8e\x58\x13\xc0\xc1\x84\xd4\x26\x36\x3d\xe1\x23\x09\xb5\xc7\xf7\xcb\xef\x04\x1e\x29\x74\xdc\xad\xc3\xdc\x54\x11\x45\x9b\xd6\x2b\x90\xbc\x3f\x4d\xcf\x04\x5b\xda\x4f\x6d\xf8\xd6\xf1\x89\x9a\x40\xc0\xd2\x6c\xc7\x64\x03\x9b\x14\x51\x12\x19\xf4\x19\x70\x84\xfe\x9e\xd6\x00\xfe\x3d\x15\x45\xc6\x11\xd1\x20\x38\xf1\x95\xde\x4b\xcb\x09\x3b\xed\x01\x86\x0c\x13\xfa\xc9\xae\xa2\xc3\x45\xc5\x30\xa2\x07\x5d\xdd\x9c\xee\xb0\xf2\xb5\x36\x8d\x4c\xf3\x30\x5d\x6b\xf9\xc6\x01\xd4\x1c\xa5\x51\xe1\x97\xe5\x8b\x07\x5e\xd8\xeb\x29\x51\x77\x68\xc5\x63\xf4\xbf\x00\xd5\xd0\x65\x32\xde\x7b\xe0\x03\x9a\x0f\xa8\x14\x03\xef\x4b\x3b\xf9\xc2\x4f\x75\x5b\xdf\x92\x0c\xf5\xb8\x4a\x5d\xf7\x6d\x28\xd1\x8b\x9f\xde\x50\xfb\x62\xa7\xeb\x75\x6b\x9f\x7d\xf6\xab\x34\x83\x51\x8b\xbc\x12\x68\x5e\x70\xa0\xc4\x09\xae\x29\xc7\x80\x6b\xf4\x7b\x71\xa8\x6c\x4e\xa6\xad\x18\xab\x23\x19\x1b\x01\xa6\x0e\x22\xe5\x9f\x50\x34\xc3\x1c\x27\x1a\x13\xdc\xd3\x0f\x83\x6d\x34\xaf\xea\x47\xba\x64\xd5\x05\xd7\x37\xb0\xdb\xa0\xde\xf0\x63\xcd\x21\x3a\x4a\xa5\x5e\xb1\x4e\xa1\x62\xad\x33\xa4\xf3\x4e\x6f\x5f\xd2\x2e\xe6\x86\x6e\x6e\xde\xb1\xad\x3d\xf0\xef\x6a\x03\x1b\x69\xb1\x13\xa6\xa6\x8a\x83\x18\x26\xe7\xf2\x0a\x2f\x41\x72\x52\xc1\x2a\xb9\xdd\x28\x50\x3b\x25\x58\x9c\x8e\xa8\xe4\x89\x03\x44\xbc\xf5\xa8\x56\x2b\x60\x6a\x8f\x91\x8c\x92\x22\x8b\x42\x01\x9f\x3a\x15\x04\x65\x10\xd5\xa4\x14\x66\xdf\x08\xcb\xdc\x81\xf5\xf1\x7b\xb8\xde\xe8\xdc\xee\x5c\xf8\x76\x5a\xe7\x20\x69\xf9\xa6\x99\xf1\xee\xeb\x6c\x7a\x86\x24\xe4\x6d\x7a\xd2\x2e\x62\x5b\x74\x54\x92\xba\x8f\xeb\xfc\xa1\xce\x72\xf9\xe6\x9b\xae\x32\xe7\x3c\x76\xbd\xdf\xae\x22\xb7\x85\xe9\xa8\x17\x25\xb2\x4b\xb9\x90\xd7\x1b\xda\xb8\xd8\x7b\x4c\xfa\x1c\x2d\xa5\x0f\xf8\x99\x12\xa5\xfc\x2c\x90\xa8\x35\xb1\xd9\x6a\x5a\xe6\x89\xcd\x73\xaa\xd9\x09\xb8\xac\xe5\x68\x91\x57\xf5\x9d\x1d\xd9\xce\x3f\x3a\x3c\x3b\x5f\x9d\xd8\xcf\xf8\xd8\x1c\x90\x04\xf1\x13\x52\x20\xf2\xf3\xdc\x9d\x70\x0d\x8d\xb9\x39\x67\x56\xaa\x9a\xf3\x6f\xe9\x43\xf5\xa4\x92\xc6\x3e\x8d\x55\x26\x47\x57\x6b\xc9\x53\x5a\x7c\x80\xf7\x2e\x45\x9a\x8e\xcc\xe7\xec\x13\xef\x4c\x94\x97\xfd\x49\x4c\x79\x87\xe5\x73\xb0\xad\x4b\x78\x58\x58\x71\x9f\x06\x4a\xe2\xf6\x9f\x22\x0a\x43\x7c\xc1\x3d\x7e\x54\xc4\x7c\xbe\x33\x2a\x9d\x73\x54\xb3\xe5\xb6\x43\x40\xbc\xb1\x4e\xdd\xf1\xea\x43\x44\x33\xb2\x1a\x40\xd1\x92\x6c\xd0\xde\xef\xdb\x30\xea\xbb\x8d\x5f\x2c\xe6\x7d\xcd\xe7\x82\x62\x20\xde\x70\x87\xa8\xb7\x6f\x56\x96\xcd\x6a\x6a\x4d\x87\x6a\xe1\xca\xe3\xd5\xa0\x0a\x89\x57\xf9\x1f\x5f\x44\xd2\x80\xbd\xeb\x94\x82\xf5\xdf\x40\x92\x8f\xf2\xc5\xbf\xc5\x80\xb1\x1c\x11\x71\xf0\xf1\x50\x58\xee\xdf\x89\x04\x38\x84\xcf\x2d\x05\x80\x6d\x21\xe3\xc0\xb9\x02\xc9\x6d\xe7\x86\xf3\xa2\x54\x3f\x19\x87\x8a\xd6\xc5\x3d\x95\x14\x0c\xcc\x7a\x9c\x66\x60\x5f\x0b\xa4\xcf\x13\x12\x5b\x1b\x0d\xa4\x87\x32\xe9\xa5\x19\x4e\x41\x24\xbf\xf8\x35\x7c\xdd\x24\x40\xdd\xab\x22\xc8\xd6\x94\x5b\x47\xf5\x0e\xbe\xae\xbd\x63\x69\xb6\xf3\x33\x7f\xf3\x1b\xbf\xb8\xd4\xaa\x16\x04\x73\xa4\x30\xaa\x42\x98\x7a\x66\xfb\x62\xea\x2c\xcd\x2e\xa9\xfe\xff\x59\x05\xdd\xd2\xf1\x69\x6c\x8b\x7d\x5e\x1e\x9c\xe9\x03\x28\x29\xb4\x36\x14\xc0\xe0\x42\xa0\x6d\x85\xcf\x6b\x19\x96\x89\x7a\xbc\x1f\xe3\xa0\xc0\x1a\xf8\x8e\x82\x0b\xee\x21\xf6\x02\xbe\x7e\x0f\x85\x19\x88\x88\x39\x3b\x54\xf2\x07\xaf\xf0\xea\xbf\xaf\x34\x5b\xc6\xcf\x8f\x9e\xa7\xcc\x53\xa4\x3b\xab\xaf\xe7\x6b\x55\x7b\x1e\x99\x88\xd7\x02\x56\x17\x37\xe7\xf9\x45\xf0\x8c\xe7\xcd\x47\xb9\xc9\x46\x66\x24\xe8\x3e\xdd\x11\x92\x32\xc9\x53\x0a\xcd\x34\x1a\xa7\x65\xd2\x57\xde\x55\xb7\x95\x77\xd5\xed\x46\xa5\xf8\x7c\x3d\xb1\xd9\x00\xc9\xbe\xdb\x1e\x3c\xec\xb7\x69\x65\x56\x81\x60\x16\xa5\x99\x72\xae\xfa\x3e\xee\x80\x5f\x34\xc1\x88\xd2\x5e\x8e\x62\x24\x7d\x13\x96\xcf\x29\x65\xd0\x72\xca\xe5\x99\xf6\x8d\x30\x2e\x49\x63\x66\x71\xfe\xd0\xd6\xe5\x09\xcb\x1c\x3c\xad\x6d\x7f\x6c\x36\xce\xa2\xdc\xee\xc6\xfe\x2a\x2e\x16\xd5\xa7\x61\xaf\xbc\xad\xd0\x29\xd7\xb5\x75\xd5\x45\x65\xf0\x78\x5e\xd3\x58\xcf\x36\xea\x3e\x83\x96\x1e\xd9\x6c\x46\x89\x14\x5e\x84\x5e\x0d\x92\xbf\x3b\x4a\xcb\x6d\x6f\x57\x99\x67\x9f\x9e\xec\x53\x52\x09\xeb\x8f\xfb\x3e\xd0\x35\x6d\x33\xc1\xa8\x7d\x86\x9f\x68\x8e\x3d\xc4\x07\x70\x5e\xfc\x84\xd8\x99\x08\x18\xd8\x41\x16\x9b\xd6\x51\x55\x3d\xbe\x4a\xd1\x8b\x50\x97\x7d\x03\xe5\x37\x74\xa6\xff\x3e\x4e\x1e\x6c\xf8\xbf\x1f\x78\x5a\xfe\x97\x74\x8a\xb1\x07\x9b\x6a\x56\xf6\x52\x4b\x55\xc4\xb9\x39\xde\xa9\x6e\xd2\x81\xc3\xd7\xb8\x15\x04\x6f\xec\x49\xc1\x2f\x6a\xb1\x38\xf5\x10\xf3\x32\x0c\x6d\x9e\xa7\x99\xd2\x73\xfc\x50\xe9\x39\x7e\x38\x25\x28\x99\xb2\xa4\x3a\xb6\xc5\x8f\x03\xe5\x18\xf6\xf1\xe4\x69\x29\x7a\x98\x70\xc5\x16\x96\xf8\xd9\x54\x23\xc5\xe1\xc9\xbc\x37\xec\xc7\x4f\x6c\xb8\xf9\xfd\x8f\xbe\xda\x6d\xaa\xf4\xa7\x71\xdf\xc2\xbb\xe4\xa0\xb7\x11\x58\x58\x70\x1d\xaa\x86\x30\xa6\x67\x43\x43\x24\xa5\xa5\x59\x3e\x33\x4f\xd0\xc6\xcd\xd7\xc1\x53\xbe\x4e\x36\xb6\x45\x49\x91\x9a\x63\x02\x1c\x45\x85\x89\x5f\xa8\x2c\x3f\x37\xb1\x7d\xd4\x77\x9b\x17\x27\x2a\x4a\x02\xb6\x1e\x30\xff\x0b\x28\x54\x3b\x4c\x8d\xaf\x92\xf1\x2c\x72\xa0\x6f\x0f\x46\x38\x0f\x94\x27\x33\xc5\x02\x25\x76\x73\xa1\x46\xd3\x39\x3c\xbb\xd8\x29\x6c\x52\x70\xe5\xf3\xf0\xac\x57\x60\x74\xed\xe5\x53\x4d\x2b\x3d\x4a\x56\xa3\x3c\x22\x9d\x34\x87\x9d\x05\xd5\x40\x5a\x87\xdb\x4d\x37\xaa\xf1\x0f\xd3\x38\xcd\x62\x9b\xe7\xce\x4f\x9e\x59\x9b\xf4\x14\x84\xc1\xa9\xdc\x62\x6d\xfe\x14\x4d\x6b\xcc\xd8\xfd\xda\x5c\x69\x1f\x6d\xe2\x98\xe2\x3b\x90\xd0\x20\x86\x3a\x4e\xb2\x7d\x8e\x79\x25\x2e\x85\xbf\xfa\x24\x11\xe8\x90\xd3\xb5\x37\xaa\xa9\xce\x6a\x30\x60\xb9\xc9\xa7\xd2\x18\x53\x24\xf2\x8b\x5f\x87\xa3\xba\x12\x2a\x7e\x05\x01\xc2\xdf\xfa\x4b\x5d\x25\x1c\xf1\xdf\xfe\xa5\xae\xa7\x18\xfc\x45\x6f\xd2\xfa\x57\x7e\x06\x35\x68\xdc\xd7\x16\x2d\x3d\x5c\x1f\x9b\xf8\xe0\x2a\x0f\x63\x3b\xe3\xe1\xf7\xbb\xba\x9e\x56\x75\x49\xef\x21\xcc\xdf\x92\x86\xa7\x24\xb3\xaf\x97\x51\x52\x94\xe3\xea\x33\xdc\xde\xf3\xa5\x62\x49\x9c\xc2\xcf\xc6\x6d\xbf\x43\xbb\x8d\x58\x42\xb9\xdc\x7b\x98\x26\x76\x5d\xdb\x63\x69\xfe\xf3\xb9\xc0\xff\x9d\x59\xb1\xc0\x61\x62\x37\xb9\x83\x6d\x06\xbb\xd7\x8c\xe2\x60\xe9\x03\x2b\x8e\x42\x9b\xe4\x56\x90\xfe\xb2\xb0\x15\x5c\xf8\xe3\x86\x5e\xc4\xc1\x4e\x68\xaa\xa8\xa4\xfa\xbd\x5c\x26\xd1\x0a\x6f\x57\x9b\x4a\x3c\x79\x1c\x8d\xd6\x55\xf9\x1e\xf9\xb6\xf4\x41\x6b\xfb\x41\xb5\x53\x0d\xa2\x7e\x7f\x5d\x41\x29\x8e\x29\x28\xc5\xb1\xda\xb1\x58\x6d\x07\x99\x35\xc5\xb0\x4a\x6b\xbc\x9a\xff\x7b\x0a\x2b\xfc\x9e\x3a\xc2\xfa\x96\xd4\x66\xd2\x24\x07\x0a\x04\x15\x1b\x4e\xe3\x1d\x95\xe4\xdb\xdf\xf4\xb0\x44\x25\x27\xa7\x74\x0b\xb4\x91\x4b\x62\x56\xcc\x9b\xa6\x48\x5b\x2d\x6d\x47\xe7\x91\x9d\xc7\x1a\x12\xd7\x83\xae\x64\x8c\xfa\x94\xd8\xbf\xd1\x57\x48\xc5\x76\xfb\x46\x5e\xed\x0c\xcb\x16\xce\xbf\x0c\x06\xe1\xbe\x44\xa0\xe4\x2d\xeb\xe2\x71\x2f\xcf\x1f\xea\x8c\xc8\x96\x6c\x69\xf6\xa0\xf3\x8e\xa6\x1d\x17\xdb\x20\xc3\x07\x65\xcb\x55\x95\x4f\x42\xa1\x39\x16\xfa\x79\xca\x36\xc5\xc3\x9d\x7e\x2b\x22\xb9\x73\x8a\x84\xc2\x25\x6d\xfe\x87\x46\xf9\xbb\xc2\x24\x7d\xd2\x66\xf4\x88\x5e\xd5\xdd\x7d\x6f\xf2\x55\x05\xeb\xcf\xa2\xb0\x8c\xc9\x18\x79\x86\x36\x14\x4c\xb6\x4d\x65\x75\x7a\x42\x75\xf9\xb8\x3b\xcf\x95\x04\x97\x9d\xc4\xa6\x1c\x0c\xe3\x29\xde\xcc\x39\xad\x1e\x7a\xae\x89\xaa\x3c\xce\x22\x5b\x0d\x5a\x35\x4e\xa2\x82\x5f\x7d\x13\x10\x05\xa7\xa6\xaa\x9b\x72\xe4\x98\xfe\xaa\x21\x55\x0d\xee\xb9\x20\x88\x65\xea\x0d\xbf\x68\x5c\x5a\xcb\x69\x16\x42\xfd\x11\x0d\xac\x3b\x38\xa6\x50\xab\x04\xda\x4a\xf5\xb0\x7d\x99\xc9\x43\xa6\x8b\xcc\xf4\xcd\x7a\x5b\xed\x48\xef\xaa\xf2\xd9\xdb\xf4\xd3\xb1\xe5\x1c\xd5\x16\x03\x6f\x44\x79\x11\x25\x03\x52\xae\xe3\xcd\x9a\x32\x44\x66\xcf\x04\xbe\x81\xfd\xb7\x91\xcb\xba\x1d\xdd\x01\x76\x91\x36\x39\xba\x8d\x57\x59\xbf\xa4\xaa\x26\x7d\x3b\xce\x6c\x9e\x5b\x3c\x75\xb4\x3f\x3f\xa3\x4f\xe7\xeb\xa6\x93\x7e\x14\x25\xd1\xa8\x1c\xa1\x2f\x85\x9b\x3a\xa5\xb0\xd9\x37\x95\x90\xee\xdf\x47\x4a\x88\x6c\xe2\xb4\xaa\x03\xf7\xa2\x7e\x95\xce\x92\xa4\xe3\xd6\x4e\x65\x9f\x8e\x72\x39\xde\x00\x3d\x66\xc7\xca\xad\x3e\x49\x80\x97\x7e\x0c\xaf\x37\xa9\x60\x00\x9c\x85\x93\x13\xbb\x38\x77\xb2\xf9\x85\x56\x69\x15\x81\x18\x51\x19\xab\x86\x4d\xd4\xc7\x7c\x77\xba\x9f\x45\xab\x76\x37\x7d\x06\x98\x9e\x5b\x8a\x04\x01\x2f\x1e\xa4\x43\x50\x9a\x16\x15\x4f\x5a\x75\x4e\x25\xd7\xe1\xcb\xce\x36\x30\xbd\x3a\x71\x9a\x0c\x5c\x2f\x06\x41\xf9\x19\xa5\xfe\x77\x46\x21\xf5\xf2\xb5\x68\xd0\xd2\x1e\x4f\x0a\xc9\x7b\x09\xa1\x36\x47\x06\xff\x7f\x76\x26\x91\x0d\x46\x53\x3f\x7c\x36\x74\x24\xf0\xf4\x43\x16\xab\x00\x4e\xe0\x48\xa0\x52\x99\x7b\x4d\x0b\x32\x23\x8d\x23\x3a\xec\x30\x00\xb0\x17\xc7\xb6\xbd\x85\xb0\x13\x91\xd8\xfe\xee\x3e\xd7\x77\x8a\x46\x63\x5a\xf6\xce\xb8\xd6\xe5\xea\x27\x55\x4f\x70\x98\x96\xb9\xdd\x3f\x55\xdd\x79\xf1\x80\xa7\xa4\x56\x0f\x03\x35\xbb\x5b\xa8\x43\xa0\x3c\x7a\x59\x49\xbc\xa0\xc7\x07\x9c\xc0\xaf\xe1\x69\x20\x64\xf8\x1e\x86\x4c\x20\x09\xbe\xfd\xbc\xf7\xf8\x14\x2d\xe8\x7d\xec\xa8\x58\x47\x3b\x10\x01\x21\x91\x38\xa5\x69\x12\xbb\x95\x31\x78\x51\x66\x49\xba\x6a\x33\x82\x69\x62\xb2\x80\xfa\xef\xac\x67\x17\x16\x78\x86\xd5\xf5\xfe\xab\x6d\x67\x90\x8c\x01\x19\x10\xe5\xbd\xea\xcd\xa2\xc5\xed\x73\x91\x38\x5a\xe5\x8a\x90\xcc\x6b\x96\xed\x16\xb5\x35\x5f\x0c\x39\xda\x68\x0c\x6e\xb2\x81\x2d\x5a\x9e\x62\x72\x84\x86\x57\x9c\x7f\x14\x3a\xcc\xae\x3e\xff\xf0\x4d\xfa\x61\xe6\x2d\x83\x38\xed\x99\x58\xf1\x64\x58\x5c\x12\x64\xd8\x9f\xd0\x4d\x89\x8c\x38\x7d\xa0\x30\x05\x14\xe1\x24\xea\xdb\x0c\x2e\x3f\x5b\x97\x27\x8a\x66\x4d\xc5\x88\xad\xcb\x55\xa4\xb8\x75\xb9\x41\x47\xe9\x40\x47\xf6\xb5\xb6\xf7\xc0\xdf\x06\xa7\x6a\xd8\x36\x7a\xd6\x8e\x05\x34\x23\xe4\x2f\x9a\x58\x42\xf8\xf2\x35\xbc\x71\x99\xe5\xa5\xa5\xac\xdc\x19\x39\xb4\xbc\xa9\x83\x03\x6b\x8e\x4c\xf6\x46\x94\x83\x83\x2d\x0d\x41\x15\x86\x34\x56\xa5\x8b\x61\x44\x6a\xad\x1e\x72\xf0\x91\x92\x03\xe6\x84\x1b\x4b\xf2\x46\x6d\x49\x2e\xcd\x76\x48\x78\x8a\xb5\x74\x1c\xf3\xc5\x55\x27\xfe\xbd\x16\xf5\x3a\xef\x10\x28\xaf\xa5\x43\x93\x24\xa6\xa5\x85\xde\x7e\xa4\x0d\x13\x7f\xd4\xa4\xda\x53\x64\x26\x4a\xe8\x87\x62\xda\x7c\x97\xbe\xc8\x21\xbf\xab\xd5\x22\x0d\x9f\xed\xf1\x16\x05\xa2\xe9\xaa\x75\xbd\x28\xc1\x24\xd0\x77\x0a\x5a\xc1\x1f\x8a\xcb\x26\x4a\x40\xac\x73\xfe\x23\xb7\xa6\x90\x89\x3e\xf7\xff\x93\x26\x12\xe9\xb2\x60\x56\x5c\xd8\x34\x37\x2f\xd7\x8e\xc2\x3c\x2e\x85\xf8\x2e\x52\x8b\xaa\x3b\x37\x51\x98\xb0\xdc\xda\x11\x43\x0b\x10\x95\x22\xac\x97\x8e\x27\x0d\x31\x6a\x39\xc7\xf0\xbc\x94\xdd\xfe\x01\xc7\x73\xf7\x4c\xd9\xef\x3a\x6c\x48\x2f\x32\x79\x5b\xe9\x55\xdf\xd3\xf8\x96\x40\x89\x4c\x9f\x0d\xbc\x24\xb7\x09\xc3\x74\x34\x8e\xa3\x9c\xb4\x5f\x5a\x4e\x14\xfd\x62\xa0\x58\x22\x17\x9b\x58\xa7\xd5\x4e\x95\x47\x83\x21\x0a\xd7\xd8\x47\xae\x29\x47\xdc\x6b\x8a\x0a\x9e\xd9\x38\x1a\x44\x69\x02\x71\x3a\xf1\xb5\xf6\x0c\x93\x0b\xb5\xd9\xf8\x22\x4d\x91\x70\x85\x07\xd5\x99\x2f\xaa\xc6\xf5\xd3\xaa\x64\x97\x84\x71\x99\x0b\x07\x4a\x6c\x8a\xe8\x96\xf9\x85\x5a\x81\x51\xb2\x6a\xf3\xe2\x51\xca\x2f\xb0\xcb\x4d\xe9\xe4\xfd\xb3\x89\xa7\x85\xdc\x42\x18\xc2\x7f\x15\x78\x94\x1f\x80\x7c\x82\x45\x53\x10\x74\xed\xf1\xc1\x5d\x01\x91\x7d\x79\x42\x0d\x87\xc9\xd3\x64\xb7\xdf\x19\xaf\x29\x0d\x81\x19\x94\xbf\x10\x2b\xfe\xa7\x89\x6a\x78\xff\xa7\xc0\x57\x71\x76\x01\x05\x25\x27\xc3\x76\xe4\xe2\x73\x9d\x30\x1d\x8d\xca\x24\x0a\xc1\x6e\x9c\x51\x3a\x39\x3f\xc2\xdd\x62\x60\xb4\xb6\xcc\x94\xcd\xf5\x45\xa5\x51\xda\xb3\x71\x64\x57\x6d\xbe\xdb\x3f\xdd\x1f\x91\x43\x03\x82\x80\xeb\x9a\x5f\xf1\x23\xdc\x34\xff\x8b\x52\x33\xba\x38\x69\x7d\xe3\x57\xdc\xee\xf5\x33\x0f\xd9\xfc\x6d\x98\x26\xe9\x28\x22\x83\x7e\x4f\x45\xe7\xc2\x0c\xbf\x08\x9e\x50\x1a\x9b\x36\x8e\x59\xfd\x56\xa4\x50\x3d\x48\x6b\x73\xf2\x98\xa7\x4e\x12\x1e\x4a\xcc\x47\x98\xe8\x8c\xf5\x70\x54\x91\x7c\x3e\x56\xbc\xa7\x3a\x35\x80\xcc\x79\x57\xd0\x2a\x44\x5e\x77\x16\x63\xc6\x2f\x9a\x0b\x39\x85\xcd\x7a\x26\x59\x51\x90\x4a\x40\x65\xf8\x5a\xd1\x1f\x0b\x9b\x65\x5c\xd4\xc3\xe6\xc0\x52\xbc\xfc\x42\x15\x6e\x0e\x1d\xe6\xb5\x4e\xad\xeb\x6f\x3d\xd9\xf5\x98\xa7\xcb\xba\x20\xfb\xc8\x86\x96\x4e\x8d\xb9\xb3\x87\x94\xfd\x77\x14\xfa\xee\x77\x02\x4f\xfb\x58\x1e\xa9\x1c\x7f\x2b\x50\xef\xd8\x6a\x14\x9b\x1a\x44\xd2\xbe\x02\x8a\xe1\x1f\x2b\x53\xc3\x7f\x5c\x3b\x64\xab\xfc\x35\xb7\x85\xe8\x1b\x4b\x15\xfb\x2d\xbd\xf5\xbd\xa5\x18\x67\x51\x42\x14\x6d\xa7\xda\x3e\x43\x55\x26\xbe\x56\xde\x51\x26\x36\xd9\xa8\x35\x65\x17\x33\x65\x04\xe3\x41\xc6\x71\x6c\xc3\x42\x8e\x6b\x99\x29\x53\x53\xe8\x09\x57\x3c\x62\x3f\x0e\xfa\x58\x3c\x05\x08\xb2\x8a\xe0\x2c\x7d\x85\xc4\xc8\x1e\xea\x61\xd9\x9a\x3b\x5c\x6f\x7b\xe6\xdd\x07\x34\x2e\xc8\xf5\x6e\x68\x9d\xfb\xcb\x35\x52\xe0\x81\x03\x9d\x5e\x9c\xae\xb5\x15\xac\x0d\x82\xd9\x68\xf5\xdd\xa4\x80\x4b\xf0\x43\xf5\x94\xe0\x20\x93\x63\x5a\x4a\x9d\x60\x53\xc9\xe2\x6d\xd6\x8a\x87\xb2\xfe\x58\x19\x2f\xe3\x56\xb1\xe4\x8d\x34\xa3\x24\x27\x54\x87\x59\x95\xfb\xe7\xa4\x26\xc0\xdc\x4b\xdc\x16\xc2\xb3\xeb\x28\x9a\x22\xf2\x42\x70\x2d\x3a\x91\xb4\xad\xf2\x3f\x50\x47\x16\x07\x0d\x0a\x01\xfc\xee\xba\xa7\xd2\x1c\x19\x57\xaf\xb5\x3d\xc4\xea\xe4\x94\x7a\x28\x3d\x0c\xb1\xbb\xfb\x9a\x92\xa2\xe8\x99\x2c\x33\x79\x4e\x1d\x20\xba\x2f\xd1\x6e\xf3\x19\xeb\x59\x55\x03\x1a\x97\xd9\x38\xcd\x6d\x8e\xa6\x29\x10\x7c\x77\x14\x1c\xeb\x8c\xf2\xab\xd8\x54\x62\x51\x09\x36\x5b\x02\xaf\x03\x52\xf2\x63\x2d\x3e\xf9\x5d\xed\x79\x8e\x8a\x8d\x90\x42\x15\x94\xf6\xb8\xe2\xa7\x8f\xa2\x3c\xaf\xfe\x37\x1e\x47\x33\x2d\xb7\xab\x42\xf2\x07\x30\xe3\xf3\x4a\x4d\xec\x88\xc6\x1f\x9f\xaf\xcd\xa9\x2a\xc0\x8b\x0d\xaa\x26\x2c\x52\xa6\xb4\xd3\xeb\xdd\xe3\x5f\xe8\x94\x45\x14\x93\x44\x34\xe6\x21\xf6\x80\x4d\x5d\x5e\x83\xc9\xb5\x34\x7b\x1b\xe2\xbc\xb1\x35\x2b\xdb\x0d\x94\xd5\x19\xfe\xa4\xeb\x56\x15\x59\x29\x7d\x2d\xc7\xfc\x7e\x44\xfe\x75\x57\xeb\x5b\x07\x3d\xc6\x67\x61\xc1\x8b\xac\x39\xfa\x37\x1f\xf7\xc8\xaa\xbe\x84\x8d\x27\x16\xcb\xdb\xb5\x89\x54\xc5\xf9\xc3\x34\xee\x93\xf3\xb2\xd8\xc6\x79\x08\xfd\x55\xba\x29\xb4\xee\x8e\xea\xfa\x59\x38\x1a\xb7\x95\x2a\x2b\x9f\x4a\x48\x05\xef\x2b\x50\xe8\xae\x6e\x03\x02\x7a\x6d\x18\x8d\xf2\x28\x34\x31\x17\xfb\xb8\x58\x49\xb7\x23\x85\x4b\xd9\xa3\x8a\x61\x9a\xa5\xe5\x60\x18\xaf\xcf\xd4\x12\x33\xe4\x73\xbb\xbb\xba\x7b\x49\xeb\x4c\xf4\x16\x1a\xe2\x65\xca\x87\xe9\x8e\x75\x9b\x4c\xd5\x08\x1e\xed\xfa\x2e\xc3\xce\x0d\x89\x28\x43\x13\x8f\xda\x3e\xdb\xfe\x97\x81\xaf\x12\xdd\x55\x1d\xe6\x7b\xaa\x3e\x93\x97\xd9\x2a\x09\x7e\xb8\x89\x05\x29\x17\xc1\x9c\x28\x91\x82\xbb\x5a\xfd\xcc\xac\x44\xc9\x60\x17\xcd\x5f\xc1\xe8\x3c\xec\xb8\xac\x06\x01\x01\xd1\xe7\x14\x85\x61\xbb\xf8\x49\xed\x68\x7a\xae\xd3\x4b\xd7\x8c\xc8\xa0\x8a\x56\xb7\x42\x92\xb7\x37\xb6\x0f\xd5\xdc\x5c\xc7\x54\xfb\x9f\x21\x2b\xf7\xc3\xb3\x9c\x45\x9d\x54\xea\x3d\x77\xa7\xa8\x7a\x0d\x1c\x99\xb1\xc9\x4c\x1c\xdb\x78\xc6\xaf\x33\x4e\x68\xf0\xa6\xcf\x15\xcb\x9a\x85\x64\x05\xfc\xa9\xa1\x6d\x7d\x1b\xe7\xc4\xa9\x14\x1f\xfd\x96\x13\xa9\xbd\x3f\xf1\x5e\x25\xa8\xdc\xe1\xd4\x64\xf5\x49\x94\x05\x2f\x28\x2e\x76\x68\xb2\x34\x8e\x12\x3a\x45\xb7\xe0\xbf\xbe\x75\x3f\xd8\xaf\x47\xdf\xee\xa3\x9e\x16\x1e\xee\xd6\x44\xc9\xdd\xcd\x80\xa5\xea\xcc\xa3\x1d\xc6\xf7\xc4\x44\x89\x99\xb5\x37\xd4\x3c\x51\x5b\xe5\x09\x6a\x73\x2a\x25\x5e\x41\x87\x32\x80\x9e\x9b\xb1\x74\x47\xd0\x74\x78\xa4\xeb\xa5\xf5\xef\x4f\x7e\xae\xf6\x50\x0b\x1b\xdb\xe9\xe0\x16\xdb\x0b\x76\xcf\x73\x0a\x8b\x71\x6e\x4a\xf0\xaf\xca\x51\x3d\x65\xe6\x6f\x61\x26\xf2\x8b\x29\x3c\x4b\xb6\x9e\xb7\x54\xf9\x8d\x9d\xfa\xf8\x45\x53\xd1\x30\x4f\xc3\xc8\x16\x5c\xac\x75\x4b\xd5\xcd\xb9\xcf\x03\x85\x4b\xf8\xd4\x8b\x5e\x45\xcb\x05\xcd\x31\x11\x80\xf6\xdd\xca\x1d\xb4\x64\x50\xa5\xbe\xa3\x98\xdf\x83\x34\xeb\x99\x70\x68\x57\x77\xb5\xe6\xe6\x5c\x55\x16\xdd\xfb\x29\x8a\xae\xdc\x16\xdd\x06\x53\x81\x26\x53\xbc\xa0\x7a\xe9\x63\xbe\xba\xc8\x9c\x28\x2e\x16\xec\x75\x25\xf8\x7d\x3d\xd0\xfa\xc2\x2b\xb6\x1c\xb7\x94\x04\xe3\xa7\x1a\x4c\xf2\x69\x53\x20\x6c\x13\x56\x38\x6a\x6d\xe7\xa7\x08\x20\x43\x03\xd6\xb8\x10\x8b\xaa\x82\x2c\x37\xfa\x0a\xa1\xcc\x3e\xb3\x5d\xd1\xba\x73\x78\xf6\x95\x9f\xaa\xa6\x9b\x78\x92\x78\x06\xc9\x67\xc8\x4a\x24\xa9\xf2\x55\xd7\xef\x04\xca\x51\xee\x2b\x68\x7f\x32\xf0\x91\x62\x2c\x8c\xd7\x93\x1b\x74\x5a\x8b\x1a\x5c\xeb\xdb\xdf\xe4\x32\xe1\xc7\xa8\xa2\xe3\xb1\x5d\x85\xae\xb3\x63\xc5\xff\xd2\xcb\x5a\x44\x46\x98\xa5\xdf\x41\x01\xd1\x41\x07\x1c\x4a\xe4\xa9\x6e\x75\x1c\x09\x17\x57\x2b\x7b\x22\x0b\x15\x5b\xfa\xb6\x33\xd5\x7d\xfd\x2f\x76\x7d\xcb\x74\xf7\xae\x0d\x45\xc4\x7b\x84\xd6\xa3\xab\x2a\x54\xe7\x83\xdc\x70\x95\xb8\xe1\x77\xbd\x57\x7b\x4c\x73\xf3\x64\x05\x56\x1d\xc6\x45\x5b\x25\xc5\xa8\x23\xa1\x25\x05\xad\x04\x01\xbe\xf9\x9e\xc0\x72\x1a\xc7\xc4\x33\xdf\xd3\x9e\xb2\xfd\x75\x95\x0e\xb8\x74\xe2\xc6\xff\x5c\x6f\x1e\xec\xc9\x83\x71\x67\xff\x64\xe4\x69\xd7\x94\x69\xdd\x4c\xb7\x1e\x5f\x2c\x76\x9e\xfd\xaf\xff\x1a\x78\xed\xce\x3b\xa4\xfa\x5c\xd1\x46\x54\x28\xe2\x1b\x6a\x7a\xe5\x61\x56\x16\x51\x02\x4b\x5a\x11\x1c\xa5\x67\x24\x8a\xa3\xdb\xd9\xc2\x4b\xb3\x9d\xd5\xfc\xf9\x96\xc7\x67\xc2\x29\x51\x28\x0d\x0d\x36\xa9\x03\xc1\x94\x72\x31\x40\x3b\xd9\xd7\x9d\x18\xa8\xab\x67\x8d\x14\x91\x9a\x20\x4a\x1e\x45\x1c\xf6\xdb\x8a\x1b\xf1\x8e\x26\x9d\x5e\x9f\x0a\xaf\x1e\x9f\xa6\x22\xee\xf7\x20\xe8\x2f\x26\xdb\x30\x8e\xf3\x9c\xf4\x1e\x85\x74\x01\x7e\xe7\x1d\xec\x20\x5c\x60\x05\x30\x85\x69\xf3\xa8\xa2\xbb\xb6\xca\x92\x4c\xb6\xe3\xd0\xb6\x40\xce\xc2\x07\x9f\x88\xa7\xf8\x5e\xc1\x1d\x3a\xb9\xf1\xee\x53\x98\xeb\xaa\xec\x20\xcc\xd6\x41\x62\xe3\x38\xca\x55\x67\x91\x0d\x20\x85\x44\x5a\xdf\x8c\x0f\x76\x7a\x99\x5d\xb3\x19\xce\x04\x14\x3e\x51\x07\xe7\x6b\xd5\xc4\x2a\x6c\x38\x4c\xa2\xd7\x4b\xa0\x03\xdc\x86\xf4\xe2\x01\x6f\x49\xf8\xb2\xa3\x1f\xe1\x1e\xbd\x55\x83\x32\x8b\x2c\xb3\xe4\x51\x65\x7f\x78\x7e\xfa\xc0\x98\x3e\x4a\xaa\x85\xec\x94\x74\xbc\x5f\xd8\x44\xb1\x77\x21\xc1\x88\xfc\xe6\x81\xf7\xe3\x0c\xae\x69\xb0\xfd\xb9\xda\x0c\xaa\x82\xda\x70\x68\x39\xdc\x61\x5a\x5e\xa0\x8e\xc6\x4b\x0a\x1b\x36\x4e\xb3\x02\x06\xf6\x8b\x3c\x59\x4e\x2b\x3b\x99\xb6\x82\x48\x9c\xa6\x01\xc1\x2e\x7a\x61\xe2\x35\xe0\xcd\x28\x4d\xfa\xb4\x7e\x9a\xec\x68\xfc\x20\x67\x36\x4c\x07\x49\xf4\xa6\xdd\xa5\x60\xab\x00\x96\x39\x49\x62\x2f\x8d\x7f\x61\xda\xa5\x94\x36\x57\x69\x66\x48\x13\xa8\x67\x8a\x70\x38\x33\x15\x9d\x39\x55\x48\x28\xa7\x72\x6c\x81\x14\xe5\x98\x8a\xe0\x87\x65\xc6\x9a\x2d\x0e\x9c\xa4\x1c\xf2\xfc\xf1\x46\x88\x24\x18\x69\x32\x57\x4a\x11\x1f\xdf\xd3\xd0\x8a\xff\x30\x51\x62\x43\x77\xdc\x08\x8f\xa2\x7e\x12\x0d\x86\x70\xb0\xc0\xee\xf7\x55\x65\x19\xb8\x9b\x0c\xc9\xd0\x02\xbd\x3b\xd5\xa0\x9c\x7c\xcd\x95\x29\x46\x23\x9b\x85\x91\x89\xa3\x37\x5d\x73\xaf\x49\x24\xb2\xa1\x21\x38\xc8\x4c\xe2\xe8\x3b\xb8\xbb\xff\x18\xa8\x49\xf9\x1f\x55\xae\x9b\x5b\x93\x11\xbd\xc9\x57\x35\xae\x2b\x55\xad\xeb\x0a\x2b\x3b\xce\xec\xd8\x64\x56\x53\x6d\x3f\x51\xdb\xcd\x27\x35\xc2\x0a\xec\xb1\xf3\x22\x2b\x59\xa0\xca\xed\x86\xa7\xb5\x02\x01\x29\x01\x39\x1b\x16\x3b\x1a\xc7\xe9\x3a\xc0\x9a\xae\x8b\x0d\xf2\x20\x5f\x37\x04\x2f\x2f\x74\x96\x4d\x36\x72\x65\x0b\x51\x65\xa0\x2f\x11\x59\x86\x87\x79\x76\xf4\x6d\x18\x47\x89\x03\xf3\x8b\x57\xb8\xda\x40\x98\x9a\x81\xa8\xea\x62\x93\x86\xb5\xc9\x8b\xb4\x64\xe2\xb4\xab\x60\x90\x20\xb3\x5c\x2b\xc6\xfe\xc8\x0c\x97\xd3\xf2\x4d\x35\x1c\x37\x82\x29\x41\x06\x0f\x5d\x35\xf9\x38\xca\x38\xca\xf5\x45\xb5\xdf\x0e\x7c\xb1\xed\xb7\x1b\x36\x82\x57\x3a\x79\xe9\xe6\x8c\x80\xd2\xab\xb7\xf0\xb5\xda\x63\xc7\x59\xda\x33\xbd\x78\x7d\x3f\xed\xda\x2c\xca\x8c\x78\x01\x67\xdb\x15\x0d\x00\x39\x4e\x68\x1a\x47\x98\x72\x2c\x86\xfb\x13\x0f\x23\xda\x41\x4d\x79\x04\x2b\x33\x8a\xf6\x05\x37\x7e\x2c\xf3\x77\x08\x63\xc9\x9f\x83\x03\x47\xf4\xa0\x69\x31\xb0\x9b\xfe\x44\xc9\x43\x5e\x9d\x7c\x65\x9b\x5e\xc8\x62\xe7\xe7\x51\xdf\x92\xe3\xa9\xfa\x5e\xe9\x05\xfa\xd1\x7e\xcd\xae\xd9\x38\x5b\xc7\x5e\x87\x58\xfb\x7d\x35\x9b\xa0\xe7\x36\x05\x1c\xc5\x7d\xdc\x55\x0d\x86\x2a\x1d\xc3\x63\xc0\x98\x72\x71\x47\x95\x22\x7e\x3c\xf9\xd9\x87\x4c\x2f\xd3\x5f\xb5\x59\x01\x43\x9f\x96\x93\x73\x44\xb8\xcf\xd7\xda\x6b\xc5\x8c\xb1\x14\xb5\xb9\xb0\xa8\xcd\x35\x44\x19\x99\x5d\x7d\xbe\xad\x7b\x84\x9e\x62\x7c\x54\x4b\x00\xdf\x76\x20\xb3\xd7\x6c\x5e\xc5\xe0\xb4\xcf\x3a\x47\x49\x07\x9d\x38\x37\x95\x0a\x85\x36\x45\xa4\x81\x00\xf7\x7a\xa0\x8a\x67\x47\x71\xcc\x61\x85\x9c\x9a\x7c\x55\x29\xf8\xe4\xd5\x72\xca\x63\x93\x30\xd5\x9d\x43\x3e\x65\x10\xf1\xe7\x6a\x07\x0a\xcb\x2c\xb3\x49\xb8\xce\x82\xe1\xce\x44\xca\x71\xf3\xdf\x9e\x28\xef\x3f\x00\x0e\xb1\x39\xed\xee\x7a\x5d\x63\x18\x2a\x20\x06\x61\x4a\x00\xa2\x84\x5b\x08\xfd\xf9\x63\xb5\xe0\xcd\xe5\xda\xde\xf9\xea\xab\x9d\x30\x8e\x6c\x22\x16\x63\xaa\x2f\x22\x33\xf4\x73\x75\xb6\x8d\x33\x9b\xdb\xc4\xd9\xfd\xb9\x30\xa9\x9a\x22\x68\x27\x6c\xaa\xd6\xc2\xa6\xb2\xf5\xbf\xa0\xe2\xe6\x5e\x96\xa6\x2b\xa4\xf6\xe1\x71\x41\x17\xb4\xe9\xcd\x05\x55\x11\xcc\xc7\x16\x67\x82\x58\x36\x39\x40\xf6\xe1\x59\xd7\xba\xd3\x40\xc0\x77\xf5\x69\xf5\x6e\x0d\x9f\xfa\x5c\x27\x2f\x7b\x79\xd4\x57\x87\x8c\x53\xc6\xf0\xde\x0f\xaa\x17\x64\xf3\x22\x1a\x99\xc2\x92\xc6\x0f\x32\xf6\x33\x78\x3e\x4c\x78\xa1\x6d\x41\x56\xb3\xd4\xf7\x18\x01\x9e\x0c\x66\x14\x14\xf4\x22\xce\x4e\x44\x4d\xa8\x9f\xe1\x19\xff\x15\x3a\x2a\x51\x64\x7b\xa6\x89\x5b\xdf\xcb\xd2\x9e\xcd\x06\x53\x47\x39\xee\x53\xce\xf5\x86\x82\x7a\x9c\xe6\xc5\x0c\x6d\x73\x42\xa3\xa0\x59\x82\x14\xe4\xa8\x62\x2f\x5c\xd2\x8a\x26\x37\x83\x87\x2d\xec\xbc\xb0\x36\x46\xe1\xaa\xad\xb4\x19\x20\x6c\x8a\xdf\xf1\x00\x1b\x0a\xb8\x0b\x9b\x4a\x8a\x66\x2d\x2a\x86\x69\x59\xf0\x94\xc7\x28\xdf\xd7\x42\x9d\x08\x38\xb0\x5d\xfd\x00\x71\x90\xb4\x27\x95\xa0\x1e\x8e\x45\x7c\x2f\xd4\xfb\x04\x1e\x42\x73\x9e\x3f\x57\xf3\xd2\xbe\x13\x78\xf9\x8d\x9e\xc9\xed\x08\x93\xbd\xfa\x03\x57\x5f\x75\x14\xf2\x8b\x4d\x86\x71\xe8\xdd\xb4\x54\x60\xcf\x5a\x22\xd2\x12\x69\xf2\xa5\x4b\x33\xbb\x2a\x98\x4e\x17\x2f\x2e\xcd\xaa\x86\xcb\x7f\xee\x8d\xb6\x57\x6d\x3e\x53\xcd\x2e\xf1\xa2\xa5\xd9\xc5\x2f\x94\xb4\xef\x0d\x85\xd9\xbb\x51\xc3\xc9\x57\xb9\xa1\x29\x8a\x2c\xea\x95\x85\xe0\xf7\x64\x1d\x2a\x15\x49\x6d\xd2\x12\xa6\xc9\x9a\x59\xa7\x26\x38\x8e\x2c\x94\xa5\xf8\xba\x49\x40\xaa\x88\xc6\x18\xbb\xa6\x96\xb6\x3a\x64\x6d\x6c\xfa\xd6\x94\x08\xc8\x30\xb6\x9f\x6b\x4d\xf1\xcf\x95\x2d\xd5\xaa\x4d\xec\x9b\xa5\x8d\x0d\xc7\x23\x4a\x59\x48\xe8\xa5\x57\x69\x27\x41\x05\xe2\xdd\x86\x00\x70\x91\xb3\x92\x96\x2f\x2f\xfd\x60\xa2\xce\xbf\x1f\xd4\x22\xa8\xa5\xd9\x4e\x34\x48\xd2\x6c\x9b\xeb\xdc\xff\x4e\x43\xcc\xd7\x9e\xde\x1b\xe5\xa1\xc9\xfa\xb6\x4f\xe5\x2b\x95\xc1\x1c\xf0\x32\xe3\xd5\xbd\xa1\xac\x79\x45\x29\xc6\x8e\xcc\x6b\x69\xf6\x54\xb5\x41\x60\xa3\xde\xd9\x55\x6c\x22\xf6\x65\x45\x54\x70\x1b\x51\x31\x56\xea\x7f\x44\xb2\x89\x6f\x3a\x8e\x35\x85\x6e\xf3\x1d\xda\xf7\xf0\x57\xff\x7c\xe2\x28\x59\xbf\xfb\xf4\x86\xde\x84\x21\x0c\x28\x20\xa4\xea\xf9\xa2\xec\x08\xa2\x9f\xe8\xb5\xd0\x22\xe3\x7f\x40\x04\xc4\xdf\x8e\xa1\x03\x46\xec\xf3\xc0\x3b\xf4\x6a\x5e\xd4\x4c\xf7\x69\xcd\x37\x0a\x4b\x62\xe9\xb4\x95\x66\xc0\xf7\x15\x11\x02\xfd\x7e\x2c\xe8\x5b\x2a\x56\xc9\xad\x0f\x94\x91\x6a\x7e\xa2\x4a\x00\x75\xf7\x15\x12\x1c\x35\x59\x94\xa0\xd2\xc0\x6e\x0e\x5a\xd3\xf3\x7c\x13\xf8\xa6\x97\x99\x01\x2f\x09\x4e\xec\x02\x1f\x8d\x5c\x50\x65\x79\x33\xa8\x0e\xe6\xbd\xfe\xe7\x3c\xa0\xea\x11\x10\x29\x9f\x04\xbe\x11\xcb\xbb\x2f\x2a\x2d\x5f\xe2\x00\xda\x62\xe5\x61\x71\x06\xa0\x2d\x89\xdf\xaa\xa4\x01\xd8\xc3\x47\x7d\xce\x41\x7e\x0a\x37\xdc\x8c\x2b\x93\xd0\x24\x49\xc4\x9d\x13\x59\x60\x1e\x9a\x74\xa1\x99\x26\x63\xfb\x51\x91\x66\x91\x89\x1f\xda\x7a\x57\xc8\x48\x1b\xc7\x4f\xf8\x2e\x33\x17\x1a\x10\xad\x9c\xc7\x74\x70\xb6\xfd\x3e\x22\x62\x5e\x89\x78\xf8\xab\x1f\x7f\x52\x87\xf4\xbf\x47\x0b\x16\x68\xb6\x4f\x95\x5d\xc2\x6e\xda\xe5\x51\xe8\xbd\x42\x07\x27\xc6\xe4\x26\x4b\x9f\x21\x5a\x66\x8f\x3d\x24\xfe\x0f\x10\x8f\xa3\xd2\xce\x11\x32\xca\x38\x57\x6a\xdd\x08\x39\xa9\xd2\xe5\x65\xe2\xd3\xb1\xec\x34\x7e\x99\x68\x50\x37\x7b\x3c\xf4\xd2\xfe\x7a\xdb\xdb\xca\xa3\x4e\x8b\xe4\xfd\xae\xf2\xbf\x39\x35\xf1\x8a\xea\x7d\xdb\xaf\xf2\xbc\x5e\x6c\xa7\x4c\x28\x4f\x2a\x67\xe1\x93\x6a\xa3\x1f\x46\xc8\x51\xab\x21\x43\x89\xe5\x18\x7e\x18\xbf\xa8\x45\xbb\x87\x5e\xaa\x42\x45\x90\x68\xb4\xdc\x89\xc8\xa0\x34\xa9\xf1\x12\xc7\xa1\x3a\x78\xaa\xb9\x87\xc6\x12\x0a\x1d\x7c\x5d\xab\x20\xfd\x02\x40\xdf\xa1\x98\x2f\xe3\x08\xdd\xa2\x7b\xe0\x6b\x6f\x13\x3e\x34\x90\x9e\xf3\x66\x15\xa4\x72\x2a\xc6\x15\x3e\x73\xee\xdb\xb0\x0a\x13\xb8\x9a\x2d\x1c\x4d\xa5\x4c\x7f\x56\x6d\x02\x45\x9a\xa5\x49\x91\x12\xd8\x06\x55\xa0\xef\x03\xd1\xef\xd4\x84\x55\xf7\x97\xe6\x22\x16\xc1\x47\x13\x85\xf1\x12\x8d\x7a\x21\xe5\x3e\x53\x93\x75\x7e\x79\xf1\xeb\x7b\x3c\xec\xfe\x7c\xa0\x28\xef\x7f\x97\x72\x22\x27\xdb\xe3\xfc\x1d\x6e\x68\xd2\x04\x2b\xa3\xf3\x0b\xfa\x85\x5b\x37\x9b\x0e\xff\x81\x4d\x4a\xda\xa1\x1e\x82\x14\xff\x9a\xf2\x60\x25\xb0\x4c\x56\x8e\x0b\x46\x96\x37\x61\x7a\x64\xf8\x07\x26\x4a\x28\xe3\xf7\xd0\xfc\x77\x34\x34\xff\x9d\xa6\x0e\x78\x61\xe3\x98\x66\x90\xa3\x1e\x57\x23\xcb\x2f\xb6\x4b\x52\x1e\x9e\xed\xcc\xcd\xfd\x05\x6f\x5b\x88\xc2\x0b\x1e\xc3\x8d\x60\xca\xff\xe7\x45\x09\x24\xc5\x85\x8e\xb1\xdb\x81\xc2\x6f\x1d\xc3\x97\x39\x96\x87\xa2\x3e\xe9\x99\xcf\x72\x25\xe8\x9f\xdd\xc5\x3e\xe4\xaa\xf0\x4e\x12\x00\x29\x37\xdb\xef\x42\xc5\x02\xdb\xc0\x71\x44\x63\xc8\x77\xf6\x74\x95\x5e\xc4\x75\x65\x1b\xf7\x47\x38\x52\xf1\x59\x5b\xd8\x9b\x01\x89\x3e\x8a\x99\x80\xaf\x3f\x82\xd0\x13\x33\xfa\x1a\x21\xb8\x58\xae\x96\x9a\x20\xa2\x1b\xb8\x3d\xab\x90\x8d\x27\x4a\xfa\xf6\x0d\x68\x93\x61\xf1\x3c\xb2\xe1\x77\xe2\xfd\x94\xbd\x09\xd4\x4a\x1d\x82\xe2\x8a\xe2\xd9\x4e\x53\xc8\x3b\x1f\x4e\xac\x65\x29\x32\x8a\x57\x5c\xba\x4c\x23\x8c\x1e\xdc\x59\x48\x3e\x48\xf2\x5c\x7d\x1c\xff\x43\x03\x88\xfe\x60\x67\x39\x5e\x17\x4c\x90\x58\x92\x2b\x0c\xfa\x71\x97\x3f\x0f\x4c\xd2\x1f\x46\x1c\x9c\x89\x46\x46\x35\x17\x14\x54\x4d\xf0\x2c\xd7\x1b\x25\xc2\xcd\xf2\xb2\x89\x32\xc6\xe4\x89\xf8\x01\x3e\x0f\x83\xbb\xbf\xab\xbc\x00\x98\xd6\x8c\x05\xdf\xde\x68\x62\x1f\xc3\xeb\x9a\xc3\x78\x01\xc9\xb5\x94\xc4\x8c\xc7\x8d\x0d\x62\xfb\x48\xcb\x19\x28\xdc\xd2\xd3\x73\x73\xa2\xca\xc1\x28\x01\x8b\x7f\x37\xfd\x02\xd7\xb1\xfa\xe5\x79\xc7\xf9\xf2\x12\x12\x60\x69\x8b\x25\xea\x53\xaa\xfe\x9b\x17\x06\xae\xcd\x32\x44\x68\x20\xf1\xb5\xd3\x41\xdb\xce\xd2\xc6\x39\x8c\x20\x9f\xaf\x27\x7b\xf9\x6f\x87\x69\xb1\x47\x8d\xca\x6d\xfa\x4d\x22\xff\x5d\xfd\x26\xad\xf0\x46\xeb\x72\xe7\x93\x1b\x4a\xfa\xea\x3c\xf2\x23\x09\xad\xdd\x86\xfa\xdf\xfc\x54\x77\xfb\x9e\xf1\x5c\xa7\x18\xda\x8c\xc5\x76\x24\xd5\xac\xd6\x01\xc5\x3a\x3f\xf3\x8c\xaf\x76\xfd\xdc\x93\xca\x5b\xd0\x16\xe1\x8c\x27\xa1\xb4\x49\xbe\x1a\x11\x24\x12\x1f\x27\x61\xa2\x35\x13\xeb\x95\xbc\x79\xc2\x74\xaf\x4c\xd5\xd9\x55\x06\xbd\xa9\xdc\xe1\x47\x21\xfa\xdb\xa8\x37\xbe\xad\xa0\x11\x6f\xbb\x34\xdc\x15\x2c\x00\x68\xc3\xb0\xde\x51\xa5\x41\xee\x5d\x60\x28\x4f\xd7\xa0\x24\x73\x73\xe4\xb5\xab\xec\x1c\x30\x9e\xbf\x4f\xb3\x8d\xaf\x95\xad\x84\x79\x7e\x20\x76\xae\xd0\x26\x7a\x47\xcb\x2c\xbe\x53\x17\x0b\xad\xa2\xb6\x24\x75\x09\x9b\x0b\xc0\xab\xc1\x97\x5c\x40\x1a\xe8\xf9\x4a\xc4\x18\x48\x76\x34\x0b\x3c\x90\xfa\x0a\x3d\x53\x2e\x5a\x6a\x64\x57\x16\xa5\x59\x54\xac\xb7\x75\x1b\x69\xe2\xe1\x9c\xe8\xbc\x63\x3d\x5c\x76\xe1\xe7\xd0\x9a\x3e\x95\x88\xf9\x5e\x44\xcf\x42\x59\x47\x9d\x6a\x28\x4a\x77\x96\xa3\xc1\xb0\x70\xe5\x01\xac\x8d\x2b\x5a\x08\xf7\xfb\x93\x96\xf2\x6c\xd8\x1e\xa9\x3f\xd7\x09\x4d\x1c\xdb\x3e\x01\x85\x1d\x79\x48\xf1\x41\xe8\x59\x89\xc5\x29\x6d\xd4\x53\xc9\x98\xe8\xb0\x78\x8c\xfc\x15\x05\x8b\x27\xfc\x76\x1a\x73\x97\x00\xe9\x35\x47\x9a\xfc\xa2\x41\x0f\xf5\x85\x4e\x94\xd8\x37\xc6\x71\x14\x9a\x5e\x0c\x4b\x3a\x94\x7a\x6e\xe3\xb6\x30\xc5\x2f\x7a\xbd\xa4\x3f\x3d\xda\xe8\x36\x1a\xda\x38\x2e\x63\x93\xb5\x15\x17\x89\xc6\x02\x15\xbf\x2d\xc5\xbb\xbf\xa8\x7d\xd2\xd2\x78\x95\x23\x03\xf1\xd5\x52\x31\xcf\x05\x8f\xdb\x4c\x8b\x68\xd5\x14\x56\xd7\x87\xdf\xc7\xbd\xf1\x0b\x55\x8b\xc9\x5f\x2f\x6d\x1c\x0e\xe9\x53\x19\x89\x13\x68\x49\xb6\x3a\xc1\xaf\x33\x34\x49\x9f\x55\xbc\x9c\x3a\x62\xf5\xe1\x88\xea\x7f\x1f\x63\xc1\xb0\x4d\xa5\xea\x6c\x57\xd6\xb1\xf0\x70\x00\x6e\xe0\xa0\xd7\x42\xa2\xa2\xed\x2a\x33\x6f\xd5\x84\x66\x35\x8a\x99\x05\xee\x9e\x7b\x75\xcf\xfc\x42\x45\xd4\xa1\xc9\x4c\x91\x43\x0f\x08\x4d\xb3\xcf\xd1\xb2\xe5\x17\x2e\x72\xea\xd9\xa1\x71\x64\x55\x84\x30\xa7\x74\x39\xe2\x54\xb0\x2d\x10\x9a\x3f\xd4\x79\xf6\xd9\x47\xd4\x9a\xd9\xb9\xe1\x03\x62\x94\xaa\xc4\x36\x9c\x3e\x46\xf5\xf8\x17\x7d\xf5\x77\x69\x76\x8b\x1d\x1d\x90\x9b\xb2\xff\x8d\x90\xfc\x7c\xb3\xba\xda\x01\xfa\x8f\x60\xad\x21\xf4\x80\x4c\x8d\x94\xb0\x5a\x5a\x86\xb7\xba\x41\xe1\x35\x54\x8f\x8d\xaf\x69\xff\x83\x74\xc5\x07\x13\x6f\x05\xf4\x41\xa0\x84\xc7\x6e\xa8\xd2\xc4\xd0\x9a\x0c\xed\x3a\xdc\xd5\x1f\x05\x6a\x5d\x20\x0b\xe7\x7f\x98\xa8\x35\xf2\x89\xdb\x23\xc2\x68\x35\x8a\x23\xc3\x7d\x1a\x6c\xef\x67\xb5\x74\xd5\x59\xc5\x1d\xec\x47\x83\xbc\xad\xba\xe9\x4c\x29\x75\x3c\x9f\xea\x09\x62\x8f\xbc\xa1\xe1\xa5\x76\x64\x73\x6e\x87\x23\xbc\x3b\xa1\x84\x82\x4e\x28\x77\xc5\x30\xb3\x76\x4c\x7c\xd7\x2a\x60\x44\xd4\x03\x81\x30\xc8\x6d\x7c\x9f\x46\x87\x2d\xcf\xdd\xa9\x6a\x47\xb9\xa2\x0e\x5d\x50\xf6\xe5\x17\xa6\xd3\xfb\xa7\x54\xf7\xbb\x5f\x86\x51\x32\xd8\xad\x16\x3c\xa6\x00\x92\x5a\xd6\xca\xe5\x17\x88\xce\xc4\x69\x86\x76\x78\x91\xa6\x55\x94\x84\x23\x53\xb0\xad\x3c\x4a\x66\x50\x25\xc5\xcf\xfd\x31\x62\x55\x7e\x41\x1b\x8d\x73\x53\xaa\x86\x4d\x72\xdc\xc7\x55\x9b\x9f\x62\xa3\xea\x47\x61\x77\xf9\x09\x1e\x2d\xbf\xa8\xad\xef\xf9\x43\x9d\xb1\xcd\xa2\x98\xe3\x29\x27\x44\xec\x35\xbb\x15\xc5\xad\x57\x8a\x4a\xb7\xec\xa0\x2d\xa7\x97\x79\x67\xf2\x68\x54\x1d\xb9\xcb\x7f\xbd\xf3\x37\xf6\xb4\xe6\x64\x4c\x7e\x8a\x42\x06\xa9\x61\x2a\x9a\xcd\x0f\x27\x4a\x01\x6e\xdf\x86\xc7\x18\xdf\x56\x5d\xa0\xbd\x1b\x0a\x8b\xfe\xa5\x8a\xec\xac\x19\xed\xd5\x25\x70\xc5\x16\x7c\x77\xe2\xd8\x01\x7f\xe7\x99\xae\x02\x7b\x3c\x50\x26\xa6\x33\x5d\x55\x05\xde\xbb\x41\x83\x29\x4a\x84\xf4\xdc\x84\x4f\x4c\x79\x8b\x18\x91\xd2\x43\x14\xec\xf7\xb6\x5d\xe3\xc5\x03\x9d\x5f\x7a\xb9\xe5\xc9\x6d\x9f\x2b\x2a\xf2\xe7\xaa\x55\x5e\x44\x03\x51\xf5\x70\xda\x28\x8e\x48\x77\x53\x29\x3d\x2f\x9b\x24\x5c\xd7\xe8\xb1\x40\xab\xb7\xd7\xce\xcf\x85\x85\x4e\x3e\x32\x19\xa8\x09\x90\x62\xbb\xa1\x54\x75\x6f\x34\xc4\x5b\x9d\x30\x1d\xb9\xd8\x46\x62\x2c\x25\x32\xb6\x59\xab\x32\xbc\x78\xa0\x13\x25\x2c\xb5\xe3\x9f\xd8\xc5\x29\xc7\x48\xb7\x9d\xf7\x6c\x31\x5c\x4e\x33\x08\xac\x49\x09\xe6\xd7\x03\x3f\x89\x7f\xbd\x76\x5a\xbe\x3c\x7f\xa8\x63\x7a\x26\xe9\xa7\x09\xc3\xb0\xf1\x4b\x6e\x06\x5e\x31\xe0\xdc\x44\x01\xbf\x8f\x38\x42\xd8\x28\x4a\x0a\xc2\x30\x88\xac\x8a\x32\x7a\x12\x85\x27\x09\xcb\x7c\x0d\xe3\x1f\xbb\x2d\x6d\x6c\x8b\x2c\x0d\xd3\x6c\xcc\x61\x0f\x42\x10\xc6\x67\xf1\x8b\x06\xc1\x93\x17\xaa\xe5\x53\x94\x39\x6d\x55\x5e\xc7\x0c\x33\x5d\x89\x9a\x49\x8b\xbb\x6f\xc7\x45\xae\x28\x35\x08\xf9\xf9\xba\xf6\x50\xe7\x0f\x75\xf2\xb2\x1a\x41\x5f\xba\xbd\x1e\xf8\x8a\x88\x36\xde\x0a\xe3\x68\x9c\x53\x39\x1f\xe7\xf2\xa7\xe8\x53\xf1\x0b\x47\x08\xb1\x6f\x0c\x4d\x99\x7b\xfd\x65\x91\x64\xf7\x64\xab\xcd\x5a\xa0\xba\x34\xdb\x19\x64\x66\x34\x32\xd3\x64\x1d\x8f\x75\xbb\xb6\x8d\x9e\x66\xc7\x45\x69\x62\x44\xb5\xce\x19\xc5\x57\x5c\xee\x6a\xaf\xcf\x38\x4e\xd7\xf6\xd2\x13\x15\x63\x30\xfa\x4b\xcc\xda\x29\x59\x9a\xff\x8d\x92\x1d\xc9\x70\xf1\x94\xa4\x6d\x45\x0b\xd8\xa9\xe6\x3b\x96\xc4\x0f\x08\x90\x8b\x45\x78\x5f\x31\xee\xff\x09\xe9\xea\xf1\x7f\x6f\x2a\xe3\x30\xf3\x9e\xf8\x2c\xa8\x34\xfc\x68\xa2\x44\x61\xbe\x47\x53\x08\x28\xd4\x4f\x6a\xe3\x55\xcd\x8a\x30\x4e\x73\x9b\xcd\x28\xac\x3a\xfa\x2b\xc8\x1f\x67\x20\xcd\xed\x60\xc6\x0e\xec\x70\x47\x6b\x19\x51\x61\x80\x9e\x22\xe3\x6c\x29\x95\x14\xcc\xed\xd3\xca\x01\xb0\x17\x25\xe9\x5a\x54\xbc\x89\x21\x77\x9a\xc0\x8b\x2f\x1d\x74\x9a\xc0\x8f\xf2\x8f\x33\x49\xdb\xd7\x78\x76\x52\x06\x20\xb9\xa4\x52\xd7\xf6\xd9\x67\x92\x66\x30\xa1\x63\xb4\xff\x46\xeb\xe5\x45\x87\xf4\xf4\xb8\xdf\xeb\x44\x14\x75\xa4\xc2\xb9\x39\xc4\x9e\x93\xa7\xbb\x75\x2f\xef\xce\xa8\xcc\x87\x59\x9a\x8e\xa4\x22\xaa\xc4\x07\xe6\x9d\xf8\x40\xc3\x06\x37\x36\xb1\x24\xfe\xd8\xd2\xdf\x51\x04\xb6\x77\xd4\xf1\xf0\x57\xff\xfb\xbf\xda\x26\x52\x84\x20\xfb\x7c\x10\xb5\xa9\x34\x00\x4f\xbb\xdd\x63\x55\x6a\x30\x08\x5f\x90\x51\xf1\x75\x93\x0a\x01\x1b\x9f\xb5\x95\x59\xd2\x25\x85\x09\xc3\x22\xc5\x50\xbe\xa3\x0e\xd0\x61\x34\x18\xee\xaf\xa6\x01\x06\xf0\x3b\x14\x99\x20\x02\xa1\xee\xd0\x0b\x9c\x60\x7d\x8c\xa3\x06\x15\x89\x23\xba\xb8\xde\xee\x7a\x02\xd1\x75\xc4\x1b\x38\x9d\x40\x21\xc0\x0e\xf7\xdb\x18\x49\x20\xe1\x48\xba\x7e\xd1\x51\xa4\x29\xa0\xc0\xfb\x6f\x32\x9a\x9a\x5f\xd1\x3d\x23\xc1\xb9\x39\x65\x3f\x96\x2f\xaf\x6b\x13\x0d\xe5\x8e\xb2\xa9\xcf\xa4\x3a\x5c\x7c\x71\x69\xb1\x53\xe6\x76\xb9\x8c\xdb\x1e\xd9\x77\x94\xea\x7a\x52\xac\xa9\x3e\x17\x79\xd4\x6d\x85\xb8\x7e\xcd\x44\x31\x1f\x31\x2c\x7d\x1f\x28\x90\xdb\xa6\x7a\xd2\x7d\xb3\xd2\xa6\xb5\xc4\xa3\x40\x32\x2f\x8e\x64\xe7\x01\xce\x97\x95\x47\x54\x1e\x46\x36\x29\xa2\xbc\xc8\x77\xa9\x91\xe5\xaa\xee\xc6\x14\xa7\xb5\x7a\x56\xae\xc0\xe6\xa5\xda\xcf\x7a\x09\x51\x62\x91\xcf\xf8\xf0\x83\xf9\xf3\x28\x45\xdf\x42\x10\xe8\x9c\x98\xaa\xc7\x25\x06\x63\xce\x8c\x3e\x8b\x12\xe1\x6d\x20\x04\x39\xa1\x7c\x8f\x4e\x68\x3b\xdb\x71\x3a\x70\xca\x47\xd8\x20\xbf\xc0\x3d\xf2\x8b\xa9\x58\xb2\x64\xc2\x38\xa6\xc4\x35\x35\x3d\xae\x35\x58\x86\x1c\xe8\xd8\x37\xc6\x36\xc9\x85\xfe\x2d\x78\xfb\x96\xa2\x6b\x3f\xe1\x7f\x71\x11\xad\x44\x49\x4b\xdb\x49\x6e\x03\xb9\xf9\x0a\x67\x2f\xb3\x6b\x84\x85\xa8\x96\xad\xdb\x2c\x1c\x17\x13\xb5\x37\x44\xd3\x10\x94\xc2\x61\x78\xa1\x16\xb0\xfc\x42\x27\xcd\x4c\x32\x10\x61\x57\xd9\x27\x5a\x4a\xbd\xa4\xbe\x67\x1c\xec\x14\x43\x53\xd0\xb9\x88\x26\x0e\x68\x34\x7c\xed\xba\x1b\x69\x2f\x8e\x06\x3c\xe3\x1c\x28\xa5\x7a\x5a\x02\x4a\xf1\x6b\x78\xcd\xe4\x43\x7a\x58\x38\x3e\xde\x52\x82\x06\x6f\xb9\x87\x9a\x99\x71\xd4\x8f\xd7\x67\x5c\xcf\xf4\xc4\x57\xe8\x3e\x51\x84\xdb\xa2\xfb\x44\x31\xf4\xbc\xa6\x63\x3f\x50\x48\x99\xd8\x46\x79\x99\xd9\x78\x5d\x49\x50\xe3\x6e\xa5\xde\xe7\x0f\xff\x5e\x5c\x2e\x2f\x23\x17\x6e\x72\x54\x7f\x5c\x61\x3d\x49\x4b\xbb\xda\x5c\xd8\x4a\x66\xe2\xa3\x96\xfb\x81\x32\x68\xba\xec\xee\x25\x8e\x12\x0f\xfb\xc0\xf9\xb5\x53\x39\x5c\xdf\x55\xa9\xd3\x51\x55\x0b\x2d\x32\x6b\xaa\x1b\x68\x4d\x55\x7e\x5b\x4e\x4d\xe5\x44\x43\x34\x35\xdf\xc9\xd3\xb8\x4f\xb2\x7c\x3a\xbe\x0c\xb4\x6b\xfd\xe4\xa7\xa7\x03\x6f\x2a\xa3\x71\x0d\x7e\xaf\xe2\x30\xfe\x21\x71\x12\xb8\x46\x03\x9c\x36\xc2\xb8\xf3\x88\x71\x05\x4b\x44\xf7\x8c\x72\xfb\x15\x7a\x96\xa8\x44\xbf\xad\xca\x3a\x3b\x37\x34\xfa\x28\xf0\xe7\x38\x07\x2b\x6c\xa8\xea\x36\x85\x55\x9b\x17\xb6\xbf\x5b\x81\x2a\x81\x7f\x16\x1a\x81\x47\x7b\xfd\x04\xbb\x0a\xa6\x05\x74\x2b\x9d\x03\xa4\x7f\xec\x8f\xd7\x0e\x51\xe9\x39\x84\x69\x2c\x8d\x77\x47\xbb\x74\xd9\xd3\x4d\xfd\x3c\xaf\xab\x4d\x33\x1a\xc3\x73\x08\xf9\xe8\x51\xc5\xf1\x65\x58\x82\x08\x1c\xd3\x07\x63\x16\x71\x6f\x46\x94\x3b\xb6\xa3\x5f\xab\xad\x3e\x4c\x93\x22\x4a\x4a\x22\xfd\x29\x09\x7f\x88\xd0\xf3\x75\xed\xa1\x1f\x38\xb0\x48\xae\x20\x69\x92\xd8\x18\x5d\x02\x6c\xdf\xbf\x81\x44\x0c\xcd\xb8\xd3\x5a\x61\x82\x0b\x77\x02\x34\x9a\x92\xe7\x8d\x0b\x68\x6d\xe1\x7c\x41\xb5\x86\xaf\x37\x14\xde\xf1\x73\x2d\xff\xf6\x79\x63\x37\x75\x99\x94\xd9\x72\x34\x74\x10\x03\x8a\xe5\x1e\x0e\x81\xa3\x9a\xe1\x75\xbb\x76\xf8\x3d\x47\x9a\xad\x88\xe1\xaa\xef\x12\xe1\x0e\x5d\x47\x7b\x18\x31\x19\xb0\x60\x2b\x5b\x9d\xe8\x08\x68\x7d\x81\x06\xce\xd1\xd8\x66\xcb\x69\x36\x62\xcb\x2b\x41\x07\x56\xdf\x87\xa1\xba\x4f\x87\xa3\xb0\x09\x9b\xc4\x1b\xcb\x24\x49\x8b\x28\xe4\x8d\x50\x69\x3e\x8a\x7e\xc8\xc5\x26\xcd\x90\x55\x23\x12\xf6\xce\x1f\xc7\xc9\x05\x4f\xdb\x8c\x95\x59\x41\x42\x45\xdc\xa2\x0b\x54\x37\x93\x4d\x2f\x50\x4c\x40\x5f\x43\xc4\xcc\xab\xdb\x76\x72\x5d\x9e\xc4\x4f\x77\x23\xbe\xfc\xea\x37\xee\xda\x50\x28\x75\x76\xdb\xc6\x99\xf2\x08\x3c\x2c\xd9\x00\x16\x53\x40\xe4\xb8\x94\x1d\x9e\x67\xea\x8e\xa3\x70\xc5\xfa\x64\x09\x47\xf7\x47\x13\x8f\xe7\xff\x48\x79\xc3\x98\x6c\xb4\xab\xb5\xb0\xb0\xc5\xf1\x1a\xd6\xd0\x97\xba\xc7\x70\x47\x73\xe2\x31\xac\xfc\x0f\xdb\x15\xc3\x17\x5f\x3a\x58\x3d\x90\x96\x12\x72\x86\xa9\x85\xf8\x51\xfa\xc5\xfc\xa6\xed\x3f\xa1\x66\xf6\xcd\x89\x2f\x74\xfe\xd4\x5f\x87\x14\x13\xe2\xb3\xc7\x37\xaa\x10\xdd\x0d\x98\x17\x3a\xd8\xbd\x51\x45\x64\xc8\x8c\x80\xea\xa2\xe6\xc6\x3f\xfd\x99\x0d\x5f\x19\xde\xbb\x51\x1d\xa1\x02\x65\xac\x7e\x09\x0a\xd6\x8f\x73\x07\xd8\x21\x33\x5d\x9c\xf8\x14\x6a\x2f\x44\x6d\xfa\x2f\x9f\xed\x52\x26\x24\xd9\x17\x3d\x77\x2c\x82\x67\x6a\xbc\x54\x2a\x4c\xd0\x4e\x22\xad\x1b\x1c\x8e\xff\x5e\x61\x2b\x3e\xc2\xb0\xb2\x73\xbc\x77\x92\x2a\x47\xd5\xf9\x56\xfd\x3c\xce\xa7\x68\xc4\x51\x68\x06\x8b\x18\x09\xf1\x53\x1b\xdb\x35\x39\x16\x16\xaa\x6f\x85\x13\x7f\x9a\x38\xe2\x32\x4a\x6f\xe7\x15\x21\xf5\xbc\x12\xb8\x0f\xd3\x30\x1d\x29\x47\x4c\xa6\x77\xf0\x8b\x26\xc2\xec\x28\xea\xe7\xd1\x9b\x52\x8e\x16\xaa\x68\xcb\xf9\xf0\x9f\x53\xe0\xb8\x5e\x66\xcd\xca\xb2\xc9\x0b\x2a\x54\xa2\xef\x03\x8f\x63\x57\xcd\xf4\x98\x86\xef\x36\x10\xd2\x17\x3b\xa3\x32\x1c\xe2\xb8\x97\xe7\xee\xfb\x0e\x77\x03\xef\xa5\x73\xaa\xf6\x5b\x29\x74\xb2\x71\x2c\x47\x31\x5b\x6c\xd0\x40\x88\xdd\x46\x83\xb3\x3f\x4b\x9a\x48\x4f\x4b\x11\x35\x0f\x2a\x2f\x55\x0f\x00\xcf\xe2\x5d\x5e\xb8\x9c\xc9\xa3\xac\x56\xc6\x9b\x2d\xb8\x71\x6d\x88\xa7\xf2\xdf\x4d\x34\x93\xc5\x2f\x85\x97\xbe\x35\xdf\x52\x4c\xc0\x40\xeb\xf9\xd5\x15\x3b\x5f\x3a\xd8\x79\xad\x4c\x44\x94\x1a\x5b\x24\x40\x36\x7c\xad\x82\xb1\xb5\xa8\x48\x6c\x9e\xdb\x9c\x3e\x5f\xc8\xe7\xca\xba\xee\xc2\xb4\x4a\x7c\x3e\xdc\x57\xad\x29\xc4\xa5\xf7\x14\x6d\xf9\x22\xe5\xc6\x62\xa2\x5c\xed\x60\xf2\x65\x6d\xef\x70\x7d\x1f\x0b\x04\xeb\x68\xc7\x86\x3f\x31\x58\x6f\x9e\xff\x2a\xf0\xe2\xb2\xff\x03\x88\x08\x7c\x24\x52\x9d\x00\x93\xf0\x24\x62\x27\xd4\x8b\x4e\x34\xf5\x38\x57\xd3\xb8\x4c\x0a\x93\x21\xce\x64\x1d\xe9\x69\x51\xe9\xa7\x54\xb9\xa6\x1c\x45\x09\x64\x0d\x5f\x71\xb2\x59\x0a\x09\x76\x36\x50\x52\xa6\xc7\x95\x94\xe9\xf1\xed\xa8\x9c\xb9\xf9\x6a\x86\x3e\x31\x05\x0c\xa5\x01\x15\x05\x10\x55\x32\xbf\xa0\xcb\x47\x3c\x54\xc8\x8f\xc6\x90\x27\x96\x4e\x77\xeb\xd5\x57\xb7\xe0\xb3\x06\x8a\xd1\xe7\x41\xeb\xd9\x67\xe5\x5f\x15\x95\xf3\x1e\x6e\x10\x55\xa2\x47\x59\x7e\x57\xf9\x76\x8b\xb4\xe0\x4d\xa5\x02\xb0\x87\xb6\x43\xac\xa3\x3b\x4d\x6a\x39\x2b\x89\x05\x52\x9c\xcd\x48\x26\x6a\x8d\x03\xcb\x8b\x00\xf4\x6a\xe0\xfd\xb1\x92\xbe\x1d\x49\xad\x13\x47\xd1\xed\x40\x59\x47\x72\xb1\x53\x44\xff\x94\x67\x6a\x3e\x7c\x8c\xfe\xc9\x31\x78\x16\x1d\x23\xe0\x3d\xe5\x5e\x70\x5b\xeb\xa3\xde\x0b\x94\x39\xf3\x85\x69\xf2\x5f\xf5\x9d\x8c\xc0\x9b\xa8\xa2\xdb\xb1\x40\x63\x3f\x4e\xd4\xc2\x58\x14\xed\x76\x76\x95\xec\x7e\x9c\x3f\xee\xe7\xe2\xd6\x44\xcd\x87\x73\x54\x24\x12\x93\x30\xba\x67\xfa\xf9\xff\xd3\xcf\x76\x75\xff\xeb\x31\x9c\x1c\x18\x8e\x7d\x1b\x54\xc8\x11\x37\xc2\xea\xce\xf0\x08\x9e\x21\xd2\x2f\x2a\x02\x97\xb1\x14\x9d\x4a\x88\xeb\xf7\x6c\x69\x79\x20\x20\x60\x29\xa1\xdb\xff\x73\x50\x66\xa6\x8e\xd4\xaf\xfe\x67\x5d\xc1\x65\x68\x0a\x92\x6a\x67\x7d\xa6\x9c\x58\x3e\xab\x3d\xfa\xb9\xb9\x4e\x9c\x1a\x49\x87\x9d\xdf\x4c\xf5\xc5\xfc\x42\x35\x91\xc6\x69\x1c\x85\x91\xcd\xf7\x4c\x29\x93\x38\x47\x89\x99\xae\xce\x2e\x5a\x07\xa6\xfc\x7d\x85\xde\x75\x56\x1d\xb3\xe0\x19\x0b\x7d\x5e\xa9\xd5\x98\x22\x5d\x81\xb0\xaf\xb0\x05\xe9\x17\x89\xbb\x99\x93\x61\x2e\xcc\x98\x3b\xae\xd8\x95\x4e\x2b\xb2\xec\x69\xa5\x9b\x50\x44\x36\xdf\xe5\x25\x90\xd9\xf1\x8d\x5f\x28\x65\xd3\x13\x4a\xdd\xfe\x13\x7c\x27\xce\xec\xba\xb5\x77\x95\xf0\x51\x53\x4d\xce\x43\xd4\x31\xbe\x17\xf8\x1e\xc6\xf7\x54\xf1\xfc\xcd\x34\xa1\x50\xec\x65\xe7\x62\x7a\x91\x6e\x5e\x44\xac\x1b\xb8\x13\x65\x61\x86\x26\x11\x28\x03\x87\x2f\x58\x60\x12\xcb\x34\x29\x1c\x2f\x5b\x93\xe5\xe9\x88\x5b\xea\xa8\x89\x9d\x52\xf5\xb1\x53\x5e\xd8\xa0\x5c\xcf\x67\x54\xec\xbb\x0f\x21\xa6\x14\x24\x3c\x09\xe8\x2e\x61\xc8\x64\x86\x3e\x4c\x0e\x12\x65\x63\x50\x07\x70\xe0\x5f\x0e\x94\x2d\xc8\xe5\x06\x25\xcc\x0e\x22\x04\x17\x08\x9c\x09\x3c\xe1\xff\xef\xd1\x0f\x10\x43\xa2\x87\x7d\x69\x51\x66\x2b\xac\xd8\x8d\xa0\xf9\x9a\x56\x34\xbc\xd6\xa8\x49\x38\x4c\xb3\x22\x2f\xd8\x5c\x0e\xb9\xe3\xdb\xf4\xc5\x7c\xdd\xf4\x30\xb8\x89\xd0\xf6\x35\x80\xab\x4a\xd1\xe8\x07\x13\xe5\xc3\x73\x41\xd1\x77\xa1\xf2\xdb\xf6\x33\x8c\xe5\x26\x51\xb4\x78\x54\x71\x47\x9e\xd8\xd8\xa7\x20\xce\x66\x46\x3f\x0a\x3a\x08\xa6\x54\x6e\x59\xc8\x07\xf3\x58\x54\x7d\x74\x23\xa3\x4c\x72\xeb\xe2\x9f\x29\x1b\x29\x59\xd6\xbe\x09\x9d\xae\x25\x36\xcb\x87\xd1\x78\x4f\x75\xbe\x63\x69\x32\xa1\xdc\x99\x36\x54\xdf\x83\x28\xec\x8e\xc6\xf8\x51\x8f\x82\xdf\xa1\x8a\x0e\x33\x28\x3a\x88\xe5\x99\x10\x82\xa3\xe5\x88\x31\x63\x8d\xea\x93\x4f\x28\x84\xb2\x29\x86\xb9\x0a\x4e\x3f\xd3\xc1\xe9\x67\x4d\xbd\xbd\x30\xb6\x59\x14\x32\x82\x5c\xac\x3f\x3d\x32\xb5\xb5\xa1\xc0\xf2\xcb\x99\x89\xfa\x2d\xed\x33\x35\xd1\x0e\x54\x41\x43\x81\xe0\xeb\x8e\x7e\x25\xeb\x1d\x8f\x10\x68\x10\xbe\xae\x31\x57\xab\x30\x36\x62\xab\xe4\x6a\x5f\x66\x30\xa2\xeb\x6e\x7b\xd1\xe8\x8f\xf5\x0e\xf7\xf7\x54\x09\xb2\x30\x2b\x36\x5d\x5e\x6e\x29\x1c\xd8\x69\x1c\xac\xfc\x42\xf9\xac\x15\x65\x96\xd8\xac\xad\xbd\xf5\x8f\xab\x1d\x91\x83\x4a\x94\x14\x3e\x6c\x9a\xe5\xe3\xcc\x8e\x22\x9b\xcd\x68\x76\x4c\xb5\x30\x5c\x16\xe7\xe4\xe1\x6f\x07\xca\x09\xe3\x76\x6d\x69\xd3\x88\x8d\xcd\x34\xe7\x46\x09\x0d\x5f\x50\x49\xe0\x7f\xf1\xed\x31\x3d\xe9\x46\x2e\x70\x83\x69\x62\x9c\xae\x79\xa9\x37\x2c\x39\x52\x7c\xdc\x62\x4c\x1c\x82\xca\x7f\xa3\x7c\xc6\xec\x1b\x69\x16\x46\xf9\xa8\xad\xe4\x0f\x3f\xa4\x81\x61\xfe\x42\xa0\xc0\xb7\x75\x2e\xd5\xe2\xd2\x62\x67\x98\x8e\xf1\xe0\x5f\xf1\x16\x53\xbe\x56\x7e\x52\x41\x46\x12\x6b\xfb\x8f\xb6\x94\x4c\x3a\x0d\x14\xa3\xf3\x11\x61\x3a\xa8\xfe\x8b\x07\xfc\xd0\xce\x39\x75\xf1\xc0\x07\x07\x9b\xc1\x94\xa5\xb3\x67\xde\xdd\xa5\x68\x46\xaa\x7a\xfe\xe8\x5c\x4e\x73\x11\x6e\x41\xd0\x0e\x8e\x38\x5f\x37\xc5\xd0\xa1\xc9\xa2\x5e\xcf\x9a\xa4\xa5\xf0\xb0\x9b\x81\x4e\x8d\x37\x15\x1a\x6d\x64\x92\xbe\x29\x2c\xda\xb5\x82\x10\xa9\x6e\x44\xcc\x41\x1b\x25\xdd\x6d\x61\xde\xd0\x36\x88\xe7\x94\xb3\xd5\x1d\xa5\x96\x79\x4a\xbb\x0b\x99\x92\xc5\xe7\x51\xf4\x80\x2d\x21\x6e\xff\xb6\xc6\x9d\x61\x5a\x23\x56\xad\xf7\xa1\xe7\xe6\x3b\x26\x5f\xc1\x7c\x11\x9b\xd1\x6b\x08\x6f\x51\x75\xc0\x2e\x0c\x10\xc3\x96\xeb\x1d\x86\xfd\x50\xa1\x5b\x2f\xe9\x90\x88\x4c\x75\xbd\x3f\x33\x26\x39\xa3\xad\x15\x3f\xe7\xac\xc2\xf9\x8c\xb3\x74\x44\xcc\xe2\x99\x9a\xc3\x25\x9a\x5b\x0f\x02\x7f\x73\x08\x02\xd1\x9e\x7e\xaf\xb6\x4c\x5f\x3c\xd0\x31\x59\x56\x1d\xf2\xf8\xe2\xa6\xda\x9c\x0b\x90\x12\x6b\x56\x90\x1c\xb1\x2d\x21\xfd\x99\x58\x14\xee\x57\xde\xc0\xe9\x68\xc6\xf3\x41\x2f\x4e\x54\xf0\xc0\x25\x6c\x2c\x9b\xd3\xf4\x3b\xf9\xba\x36\x9d\x0e\xcf\x52\x53\x3c\x34\x42\x0b\x50\xde\xd9\x07\x9c\x77\xb6\xce\x36\x07\xf1\xfa\xe3\xd5\xf7\x22\x57\xfa\xe3\xc0\xab\x02\x41\x46\xd1\x49\x39\x2e\xcd\x6a\x65\x11\x81\x35\xdc\x57\x22\x5f\x3b\x74\xe8\xfd\x3f\x4f\x14\x7c\xec\x4b\x25\xf9\xf6\xe4\x86\x12\x3f\x7f\x5b\x13\x9f\x7e\x8c\x5f\x89\x45\xd8\xea\x56\x67\xae\xdb\xb9\xaa\x75\x8f\xa0\xee\xce\x54\xa3\x2a\x1b\xa4\x28\xb2\x22\xc6\xff\x32\x98\x0e\xf8\x95\x15\xb9\x3f\x7e\xd6\xb2\x68\x30\x2c\x14\x26\x91\x5d\xb3\xd1\x83\x9b\xe9\x6a\x39\x32\x5f\xae\x29\x32\xcb\xbd\x20\x21\x72\x78\x4e\xdb\xb9\x89\x96\x39\x19\x99\x6c\x65\xc6\xb7\x50\xa0\xfc\xc7\xd7\x10\x3e\x92\x7a\x08\x35\x16\xa4\x20\xd2\x54\x63\x88\xa3\xdc\xc9\x53\x80\xa2\x07\x55\x3f\xbe\x56\x78\x5d\x26\xe3\xb0\x12\x23\x36\xaf\xbb\x4a\xe2\x0b\xf3\x46\x8c\x1a\x9b\xc4\x49\x97\xa3\x8c\x60\x70\x52\xa2\x98\xd9\x50\xf4\xc1\x7f\x4d\x6f\xc7\x24\x69\x77\x9f\x56\xf8\xbc\x3c\xcc\x2c\xf8\xfe\x55\x68\xed\x04\xf3\xdc\x02\xaa\x37\xe3\xab\x43\xb9\x67\xc2\x15\xaa\x91\x39\xc6\xb7\x33\xda\xde\x54\xf2\xe4\xfd\x32\x2f\xb2\x75\x7a\x54\xec\x1a\x85\xbd\x46\xd0\xf3\x9a\xfc\xe5\xc3\xbe\x7c\x7d\x34\x36\xc5\x10\x51\x29\xde\x07\x2d\x52\xbe\x56\x56\xaf\xa3\xd1\x3a\x23\xd6\x59\x73\x6a\xe2\x79\x66\xef\x63\x5a\xb0\x18\x5d\x2d\x92\x5d\x58\x58\xea\xe4\xe5\xd8\x5b\x93\x39\x43\x45\xa7\xf7\x77\x52\xe9\xfd\x8d\xa2\x84\xf8\xb5\xd5\x5f\x62\xed\xfc\x7a\xe0\xe5\xeb\x7f\xbd\x01\xd3\x9c\xdb\xcc\x89\x8c\x6b\xc0\x8f\xd3\x32\xac\x56\x1b\x62\xe1\x1f\x37\x54\xe4\x5f\x21\xa2\xc0\x20\xb3\x52\x4f\xe3\x41\x53\x9a\xb3\x75\x24\xf5\xfc\x21\xb2\x34\xe6\xa2\x82\x88\xf5\x92\x25\xf6\x19\x7c\xa1\x28\xfd\x3f\xe5\x1e\x52\x68\x93\x22\x5a\x95\x6f\x61\xa3\x92\x89\x52\x45\xdd\x54\xe8\xd1\x7e\x35\x4b\x77\xf9\x96\xf7\x4d\x2c\x02\x9c\xc2\xdf\xc1\x0e\x20\xac\xf3\xea\x87\xf2\x5f\x61\xdd\x30\xed\xa7\x09\x41\x3e\x8e\x60\x10\x83\x62\x3b\x83\x25\x83\x96\xf2\xf4\xaf\x23\x6d\x08\xa2\xbf\x0d\xcd\xf4\xa7\xea\x30\xfc\xd3\x5a\x9c\xbb\x34\xbb\xd4\x29\xaa\xdd\x83\x2b\xbc\xac\xe9\xa0\x3c\xa3\xb4\xe1\x3a\x19\xf9\x23\xc1\x43\xc4\x79\x13\x90\x4c\x06\x3f\x2b\x6d\xf2\x23\xd4\x8f\x90\x63\xcb\x55\x78\x86\xd6\x8c\x9d\x17\x0b\x0e\xe1\x96\x12\xc7\xd9\xb9\xe1\xfb\xd7\x93\xc6\x9e\x4c\x98\x8e\x46\x51\xe1\x68\x0c\x58\xfe\x7f\x34\xd1\x35\x4b\x05\x72\x3c\xab\xb6\xbb\xd8\x9a\xbc\xa0\x7b\x14\xe3\x03\x7f\xee\xdc\x6a\x54\x52\xc9\xca\xac\x8a\xfe\x5d\x6e\x72\x5a\x77\x47\x4f\x2b\x08\x45\x99\xf4\x6d\x46\x82\xb8\xd0\x38\x60\x1f\x0c\x95\xfa\x5f\x9b\xd6\xe3\xf3\x78\xef\xb7\x6b\xdc\xf2\x43\x2f\x75\x7a\xe6\xbf\xa2\xa3\x13\xe1\xe3\x5b\x13\x6f\xc6\x75\x53\x83\xde\x77\x10\x4e\x14\x73\x6b\x5f\xb7\x89\x1d\x14\x9a\x71\x54\x70\x06\x83\xc3\xe6\xb8\xaa\x26\x1c\x9f\x3c\x53\x0f\xd8\x8b\xd5\x96\x2f\x53\xde\xc1\xe6\xc4\x2f\x54\x24\x65\x93\x7e\x3e\x83\xbd\x0a\x19\x54\x1b\x10\x52\xe7\xcd\xe1\xe0\x15\x5c\x3f\x13\x4f\xfe\xed\x73\xf6\x97\xe7\x85\x72\xaa\x4c\x25\xce\x28\x41\x88\x33\xb5\xdd\xf6\xd0\x4b\x9d\x22\x2d\x4c\xdc\xf6\xc5\xe7\xcf\x68\x44\xc5\xfe\xd1\xe3\xb0\xde\x6a\xf0\x79\x78\xa1\x93\x2e\x2f\xfb\x70\x1f\xeb\x14\xe4\x0f\xd5\x3e\x9b\xe7\xf0\xed\xf2\xc4\xd3\x6c\xc2\x5e\xfe\x98\xe7\x60\xb0\x3d\x12\x50\xdc\xcc\xc6\xc5\xc3\xfe\xb3\x89\x97\x68\x66\x91\x70\x2c\x84\x1f\x4c\xbc\x52\xe6\x0f\x08\xf8\x83\x78\xe8\x51\xd5\x8b\x81\xb1\x0d\x0b\xdb\x22\x4c\x40\xdb\xfb\x1e\x36\x20\x94\x18\x2f\x4f\x74\xcc\x60\xb2\xfe\x57\xab\x4f\xc6\x91\x0c\xb8\x15\x92\xd4\x53\xca\xed\xe0\x49\xb2\xc6\x71\xbd\xb7\x25\x71\x28\x7a\xac\xab\xfa\xcc\x57\x89\xe5\x8d\x3b\xfc\x1e\xd2\x49\x4c\xb6\x2b\x13\x05\xa3\xde\xb5\x41\xa9\x2e\xbe\xe3\x73\x24\x6e\xa8\xd2\xdd\xd6\x0e\x27\x5c\x6e\xc7\xe1\xf3\x25\xf6\x45\x94\x0d\x67\xba\xaa\xa8\xc3\x10\x04\xc7\x0f\x9f\x3f\xc4\x6d\x8e\x1b\x9c\x33\x60\xf2\xbc\x8d\x9a\x01\xea\x01\xd7\x68\x8c\x91\x4c\xec\x21\x14\x9e\x00\xda\x9e\xd4\x11\x84\xcd\x72\x54\xf3\x9a\xf6\xcf\xaf\xe9\x14\xa4\x5c\x36\x61\x51\x66\x36\xcb\x09\xa6\x82\x61\x86\x28\x35\x52\xba\xdf\x0e\x7c\x7a\xf7\xdb\xb8\x4b\xfe\x23\x45\x60\x0c\xb3\xd4\x59\x23\xa1\x18\x78\x5b\x35\x69\x6f\x2b\x61\x88\x61\x35\x05\xa3\x02\x9a\x13\xce\xe5\xe5\x45\xc7\xf0\xa9\x45\x34\x73\x73\x9d\x62\x68\x23\x09\xd2\x5d\xe8\x5a\xed\xbf\x22\x8a\xf7\xb8\x03\xf0\x95\xa2\x02\x36\xef\x74\x41\xfc\x11\x75\xaa\xf6\xe1\xe4\x2f\xdf\x4b\x57\x2d\x41\xd3\x84\xa1\xe6\x3b\x62\xc8\xf9\x84\x1c\xe9\xb0\x30\xa6\x67\xe3\xd8\xb4\x7c\x59\x8d\xb3\x1a\x89\xcb\x1b\xf8\x33\xa1\x19\x8f\x6d\x9f\xea\x01\xce\xe9\xab\x7a\xfa\xa8\x21\x60\x7b\x12\xb9\x1d\x15\x7d\xff\xdf\x8a\x5a\x66\x07\x03\xf8\x11\x70\x31\x58\x9b\xa6\x9d\xa6\xf9\x8b\xcd\xf2\x84\xa2\x6e\xdf\xd5\xf0\x84\x8b\x5a\x2a\xf5\xae\xa2\x59\x90\xd4\x40\x32\x68\xeb\x47\xe6\x01\x8a\xe7\x26\xde\xe4\xf0\xa4\xa2\x78\xa7\x63\x2a\xc5\xec\xa1\x6f\x90\x5b\x9f\xba\xc1\x2a\xda\xb8\x4c\x99\xfa\xd6\xe5\xea\x47\xc1\x94\x55\x94\x04\xfe\x0e\xe5\x28\xfc\xc7\x81\xf7\x4c\x1b\x64\xa6\x28\xa3\x22\x2d\xf3\x78\xbd\x45\xe1\x82\x94\x3a\x68\x25\x49\x2a\xe1\xfb\x72\x23\x53\x98\x41\x9a\xf5\xc5\x91\x65\x4a\x3f\x44\xcc\xde\xfd\x64\x8d\x92\xbc\x9a\xf0\x2d\x8f\xce\xdc\x09\x86\x01\xbf\xe8\x6e\x0f\x10\x97\x66\xab\xe0\x28\xb3\x26\x97\xdd\x13\x87\x18\xdd\x13\x1f\xa5\x0c\x31\x60\x7a\xb0\xaa\x23\xc0\x85\x0d\x21\x15\xbb\xb0\x61\x7f\x11\x4b\xb6\xfd\xca\xd6\x30\xb1\x8f\xd3\x1f\x22\xe2\xbe\xa7\x15\x50\xae\xd3\x06\xa1\xd4\x55\x05\x33\xba\x8b\x8e\x43\xac\xc9\x63\x93\x29\x75\x11\x6f\xdb\xf2\xbf\x06\x5e\x37\x8a\x5d\xdb\xf1\x0f\xb7\xb1\x57\x31\x1f\x96\x1e\x1f\xca\x2d\xb7\xd1\x26\x72\x52\x89\x5a\x82\xc0\xcb\x42\x4e\x7c\xa3\x9a\xcb\x7a\x92\xb9\x08\xc9\xbe\xe5\xec\x49\xfe\x5d\xe0\xb3\x98\x7a\x27\xf6\xc0\x81\x8e\x35\x99\xa7\x59\x6a\xc5\x6e\x49\x40\x9e\x52\x02\xf7\xc0\xc6\xec\xf2\x5d\xe9\x4f\x28\xf4\x92\xae\xac\x47\x67\x3c\xc0\xed\x62\x6b\xfd\x97\x81\x97\x21\x3c\xd5\x24\x6b\x37\xb6\x59\x5e\xe5\x6a\x5c\x5e\x75\x02\x16\xae\xee\xfc\xa9\xaa\xae\x2e\x9b\xd5\xb4\xda\x98\x5e\x76\x82\xcf\x68\xc4\xf0\xf5\xd4\x61\xd5\x87\xb7\x81\x00\xe6\xce\x4c\x99\xc4\xb6\x9c\x00\xd1\x0f\xa7\xb2\x62\xf3\x26\x7c\x20\x50\x18\x66\x6d\x25\x7e\xa1\xb5\xc4\xcb\xdc\x96\xa3\x36\x80\xbc\x02\x76\x9b\xca\x30\x3c\x04\xec\x37\xb7\x33\xdd\xe6\xe6\x3b\xf3\x87\x9e\x6c\x39\x51\xde\xdd\x1b\x74\x3f\x88\x24\x36\x95\xeb\x0b\x8b\x59\xb3\xd5\x38\x9f\x51\x1c\x70\xa8\x5c\x04\xc5\x18\x36\xe6\xc0\x1e\x05\xbc\xfc\xff\x35\x51\x9a\xfa\xdc\x93\x03\xcc\xee\xfc\x44\x05\xee\xb7\x03\x65\xcf\x7a\x1f\x6b\x1e\x2b\xf3\x24\x74\xf3\xd8\x77\x94\x76\x3c\xa9\x23\xd1\x11\xc9\xda\x5c\xee\x38\x28\x93\xb1\x35\xa1\x55\xd5\xa7\xf7\x02\x55\x7d\x7a\xcf\xc5\xe7\xcb\x26\x2a\x86\xcb\x65\x5c\xd7\x8a\x67\xf1\xca\xae\xa7\x5b\xdc\x6f\xea\xbe\xf4\xca\x18\xd1\x26\x6f\xb4\xc1\xd4\xae\xbb\x3d\x92\x5b\x5c\x5a\xec\x8c\xd2\x55\xd8\x25\xb2\xea\x00\xee\x80\x75\x51\x14\x26\x83\x69\x35\x2c\x41\xab\xb4\x47\xc6\x59\x3a\x8c\x7a\x51\x41\x9a\x3b\xd5\xe8\xb1\xf4\x36\xfd\x6c\xd4\x4a\xee\x28\xb7\xff\xab\x2a\x8a\x7d\xcd\x24\xcf\xef\x72\x08\x9f\x9f\xbf\xaa\x85\x8c\x2e\x2a\xa1\xc5\x1d\x5d\xef\xde\x7b\x51\x47\x7a\x97\x6a\x5d\xa4\xa5\xd9\x4e\x19\x17\x99\x59\x8d\xd2\xd8\x62\xe9\x20\x64\x42\x73\x87\xaf\xbd\x9e\x92\x8d\xab\xe4\x0b\x8a\x6e\xa2\xb5\xb1\x67\xc3\x07\xa3\xfb\xbb\xbe\xb9\xc1\x81\x29\x33\x30\x94\x19\x2a\xe5\xc4\x24\xe7\xf5\x48\x35\x60\x3c\x4b\x03\x5f\x2c\xe0\xea\xa4\x68\x0e\xb6\x9c\xa8\x2e\x84\x7c\xc4\x60\xdd\xe3\x82\xd9\xa8\xce\x4d\xe4\xc3\xb3\x4e\xfb\x58\x19\x2d\xa7\xcb\x68\xb5\x21\x0b\x63\x2f\x20\xe7\x38\x56\x3d\x79\x04\x33\x3b\xbb\x0e\x59\xbc\xbc\xdc\xa3\xaa\x93\x03\xba\xc3\x15\x96\xaf\xa7\xd1\x8b\xa1\x7d\xba\xfa\x75\x4e\x68\x63\x49\x96\xee\x31\x2e\x93\x20\x62\x6e\x6f\xa8\x92\xee\x09\xcd\x35\x3a\x83\x24\x1b\xf5\xb7\xcf\x34\x2a\xee\x5d\x55\x1c\x3d\xa2\x9b\x18\x33\xdd\x6a\xf3\x14\xb2\x9f\xa2\x18\x6a\xb7\xce\x1f\xa0\x02\xcf\x05\xe6\xc0\x8b\xfa\x7c\x0a\x2a\x36\x26\x29\x73\x1e\xa5\xb7\x47\x6b\x1e\x3b\xf1\x3f\x9b\x28\xef\xc5\xe3\x74\x9e\xe1\xd7\x5f\x57\xc7\xc8\x38\x8d\x72\x6e\xf1\x56\x1f\xd3\x48\x2e\xf3\xcf\x22\x8e\x56\xed\xee\x2a\xb2\xb8\x4e\x1b\x15\xf0\x1a\x2c\x82\xed\x2d\x70\xbd\xfc\x5e\xf5\x9b\xb1\x38\x76\x75\x7d\xbe\x74\x51\xb5\x7e\xe2\x34\x19\xd8\xec\x31\x35\x2f\xcf\x01\xbd\x80\x40\xff\xbe\xd2\x60\x42\xb9\x1e\x63\xbe\x83\x80\x08\xe8\x98\x9c\xa4\x56\x3e\xb7\x8d\x68\x98\x70\xe8\xdd\xc2\x30\xe1\xb8\x7a\x4f\xa7\x0f\x90\x02\x44\xd9\x8c\x49\xf6\xfc\xdd\x53\xc7\x41\x2f\x4d\xf6\xd0\x40\x38\xc5\x30\xe5\xfd\xa3\x0a\xb8\x1f\xd0\xf4\x46\x94\xb5\x11\x28\x4d\x4c\xb8\x53\xf1\x3f\x28\xe2\xce\x07\x35\xe2\x3b\x09\x6d\x42\xc7\x96\xb4\x0f\xda\x0a\xf8\x4b\x96\x82\x92\x41\x6e\xf8\x18\xe8\x9c\xe2\x2d\x15\x59\x14\xae\xe0\x11\xe2\xe1\x5f\x53\x02\xc8\xd7\x9a\x1c\x3b\x4c\xff\x35\xe6\xa4\x79\xb4\xde\x5d\x44\x27\xfc\x42\x9d\x78\x51\xb2\x2c\x0e\x4c\x4d\xc2\x48\x3e\x50\xe8\xa7\x6b\xc9\x1a\x79\xf5\x3a\xbb\x85\xbb\x34\x3a\x7c\xdd\x00\x79\xeb\x84\x26\x4b\xa2\x55\xae\x1f\x60\xb6\xff\xa6\xd6\x94\xfc\x4d\x3d\x5d\x4c\x61\xab\x30\xd5\x03\x29\x35\x3c\xf5\x62\x2d\x8b\x7f\xae\x53\xd8\x24\x89\x40\x3b\xc6\x7c\xde\x0a\x14\x2b\xfd\xe2\xb4\x60\xf6\x3e\xa5\x5a\xfc\x06\x9d\x17\x1c\x90\x61\x60\x5c\x6b\xd1\xb7\x19\x27\x3e\x70\x3f\xad\xaa\xd9\xe1\xd0\x24\xa1\xdd\xa3\xe8\x94\x9f\x07\x5a\xcc\x81\xf6\x3a\xf1\x59\xf7\xed\xfc\xbb\x81\x5a\x78\x1f\x4c\x14\x2f\x94\xa5\x7d\xa4\xd7\xa8\x92\x89\x34\x29\xec\x1b\x85\xf2\xfe\xfe\x87\x81\x2f\xd8\xfc\xc3\x26\x9b\xdc\x2c\x2d\x0b\xd1\x4b\xc2\x96\x78\x57\x6d\x8f\x77\x9b\xde\xb2\x9c\x59\x38\xf1\xb9\xc4\xf6\x81\xaa\x6c\x3f\x50\xa7\x5d\x68\xe3\xb8\xad\x2a\x9a\x2c\xbe\x8e\x82\xc0\x9f\x69\x98\x58\x6d\x11\x78\x51\x9f\xc2\x66\x89\x89\xd1\xd8\x63\xee\x0e\x7d\x9d\xf0\x78\x9e\x50\xde\x8b\x65\x5c\xac\xb7\x94\x36\x04\xaa\x8a\x7c\xdd\xa4\x2f\x19\x5b\x33\x28\xed\xb4\xb4\xa7\xc2\x36\xd6\xe6\xd0\x8b\x07\x3a\x39\xc9\x52\x7b\xbc\xce\x17\x81\xef\x4e\x7f\xa1\x2a\x97\x59\x5a\x0e\x84\x2c\x84\xe3\x8a\x8f\x38\x7e\xa1\xd5\xc9\xd2\x38\xb6\x19\x42\x20\x2d\x26\x83\x94\xe6\x9e\xc2\xc0\x9d\x52\x10\xb4\xb8\x9f\xb6\x5b\x73\x73\x2e\x30\xc0\x57\x21\x65\x39\xa1\xdb\x31\x77\x35\xde\xad\xb0\x49\x9f\x95\x4c\x70\x68\x3c\x0d\x9c\x83\x92\x29\x7d\x85\x7d\xde\xfe\x42\xd7\xbb\x00\x8c\x0d\x76\x14\x16\x6b\xd1\x0f\xf2\x74\x13\x53\x68\xd5\x66\xb1\x19\x53\x61\x43\x72\x84\x69\x91\x95\xea\xc3\xa0\x18\x73\x53\x19\x78\x9f\x9b\xd2\x31\x1b\xa7\x79\x54\xec\x9a\x2a\xfe\x56\x43\x21\x49\x6e\xcb\x29\x41\x7c\xa0\x1b\xee\xf7\x78\x24\x10\x57\xdc\x0d\x9e\x9e\x72\x77\x0b\x0d\xd0\x2c\xde\x3f\x79\xd2\x9a\x9b\xdb\x82\xbc\x22\x9a\xda\xb7\x02\xcf\xed\x34\xe3\x71\x96\x1a\xd2\x2c\x57\xea\xc2\xbf\x3f\xf1\x39\xff\xef\xd7\x94\xbf\x16\x16\x3a\xc5\xd0\xac\xb5\x6a\x93\x9d\xaf\x6b\xb5\xf7\x85\x85\x4e\x9a\x45\x83\x28\xe1\x8d\x0f\x1b\xc0\x96\xe2\x85\x6c\x39\xfc\x89\xed\xf7\x23\x8b\x39\x3e\x95\x62\x08\x49\xfd\x71\x85\x40\x63\x47\xcb\x87\x58\xcb\xfa\xbf\x8c\xd3\x32\x92\xe2\x2a\xb2\xd9\xff\x84\x07\x8c\xe6\xf4\x6f\x4c\x7c\xfb\xfd\xa2\x56\x27\xaf\xc3\xa1\xaa\x25\x95\xa6\x7c\xfa\x00\x8a\x82\xf5\xc1\xd7\x4d\xa7\x0f\xec\xec\x5d\xf6\x89\x89\xfe\xae\x9a\xf4\xef\x6a\xae\xad\x65\x0d\xf9\x3e\x64\xf6\x90\x91\x81\x65\xc1\xd7\x4a\x18\xc9\x18\x92\xed\x5d\xdc\x42\x36\xb4\x75\xd9\xb5\xad\x12\x93\x0f\x4b\x33\xe3\xab\x66\x1f\x6b\xfe\x5c\xab\x4b\x61\x9c\x74\x78\x94\x3d\xca\x85\x49\x83\x59\x47\x6c\x38\x64\xd2\x08\x30\xbe\xd6\x0b\x36\x4a\xdb\xbe\xf2\xc1\x75\x5a\xe9\x7e\xaa\x4d\x37\xf0\x26\x3c\x84\x9c\x59\xb5\x19\x6c\xde\x10\x3d\xa2\x7d\x81\x44\x9a\x6d\x58\x54\xc2\x22\xbb\x46\x0b\xe5\x71\xe4\xc3\x97\x54\x2d\x2b\x89\x42\xe6\x84\x89\xce\x1c\x55\x56\xf9\x85\x9b\x67\x66\x3c\x8e\xd7\x95\xb5\x3b\x4c\x1f\xf9\xd8\x9c\xea\x85\x4f\x94\x81\xee\x97\x4a\xe0\x1c\xb6\x1b\xc2\x5b\x51\xab\xf8\xc8\xe4\x31\xaf\xc2\x97\xef\xa3\x61\x10\xee\x38\x26\x21\xbe\xf2\x8e\x2e\xe6\x5e\x50\x35\xe6\x2d\x55\xad\xbf\xad\x15\x13\xde\x42\x98\x8b\x7e\x20\x1e\x03\x3e\x0a\x55\x14\x20\x93\x4e\x07\xca\x2c\xfb\x2d\xfc\x7a\x31\x82\xaf\x7e\x31\x02\xe3\xfb\xb5\x12\xc5\x73\x08\xcb\xa2\xb0\x10\x92\x26\xa2\xb9\x33\xa4\x53\xcf\xd7\x4d\x85\x0d\x3a\xc3\x56\x23\xbb\xc6\xfb\x2e\xf0\x36\xbb\x41\xf5\x12\x69\x21\x5f\x5d\xdc\xaa\x2d\x12\x39\x0c\x97\xad\x65\x3e\x14\x6e\xf7\x36\x46\x15\x1b\x1d\xb8\xe4\x02\xec\x91\x74\xcf\x54\xbf\x16\x0e\xa7\xd5\x23\x97\xe9\xa0\xe7\x46\x03\xbf\x7a\xb1\x93\xdb\x90\x2c\x37\xb4\x9e\x86\xe3\x5c\x7a\x71\x9f\x30\x2b\xc3\xc8\xc4\x68\xd0\x09\x24\x48\xc9\xbc\xdd\x55\xa9\xfc\x49\x25\x0c\xb0\xb7\xeb\x73\xc9\x41\x94\xc5\xcb\x59\x64\xab\xaf\x73\x72\x26\xc7\x69\x87\xe5\x6b\x55\x41\xec\x5b\x3a\xe5\x5b\x55\x98\x2f\x5c\xed\xea\xa1\xf1\x75\xad\xc3\x7c\xe0\x40\x27\x2d\x0b\x52\x6f\x64\x0c\x00\x74\x45\x19\x67\xc5\x2f\x6a\x5b\xf8\x73\xd0\xdb\xa4\x0e\x91\x23\xff\x1f\xf0\xe4\xff\x06\x80\x50\x35\x35\x56\x30\x2f\xb0\x6d\xb6\x37\x3c\xbe\xa7\xdd\xdd\xe7\x91\x5c\x06\x4d\x41\x27\x7d\xfe\xa2\x97\x3e\xdf\xe7\xf8\xab\x71\xbc\xbe\x9b\xa6\xa6\x08\x08\xf8\x0e\xde\x11\x1d\x11\xeb\x4a\xc1\x66\xe0\x42\xed\xf7\x7e\x6e\xc3\xe7\x18\x3f\xdd\xf5\x69\xdb\x6b\x65\x7f\xbd\xa5\x20\x8b\x13\x92\xb3\x13\x1f\xe9\x86\x16\x00\x0c\xce\xe9\x17\xe3\x5e\x6e\x07\xfe\x1e\x6f\x7b\xc6\x6d\x49\x85\xec\x99\x69\xb2\xfb\x76\xf3\x0e\x34\x33\x6e\x29\xb9\x8b\x9b\x4d\xa7\x61\x4e\x9e\xc5\xdc\x0a\xc5\xa3\xbd\xa9\x50\x3f\x37\x6b\xbf\xf3\xd0\x4b\x84\x74\x08\x31\xfe\x4d\x84\x2d\xed\xc4\x93\x98\x30\x4a\xcb\x5c\x59\xf5\xa1\xed\x22\x85\xb7\x87\x49\xdb\x2e\xa7\x80\x15\xa2\xa9\x7a\x8c\xa6\x28\x50\x2e\x97\x55\x23\x65\x06\x86\x30\xec\xf8\xe0\x4e\x9c\xd7\x4b\xdb\xb3\x21\x96\x2f\x06\xef\xaa\x12\x7a\xba\x48\x1f\xc6\xae\xff\x2a\x89\xca\x0b\x41\xc3\x57\xe3\xea\xb0\x55\x6e\xfb\xab\x4b\x2e\x2f\x2e\x2d\x76\x32\x97\xc4\xbb\xba\xb7\xdf\x49\x4f\xd6\x9a\xb0\x04\x2f\x6b\x79\x24\xc5\x11\xba\x1b\x11\x5d\x69\x00\x6f\xf5\x52\x65\xa9\x8b\xc8\xe3\x3d\xa5\xeb\xf0\x5e\x20\x78\xfe\x91\xc9\xf2\xe1\x88\x44\x46\xa6\xcd\x52\x7c\xa5\xe8\x42\x0d\xaa\x5a\x7d\x41\x96\x9a\x7e\x68\x72\x2f\xf2\x80\xa4\x11\x7a\xf7\x68\x26\x63\xc3\x93\x43\xc8\x03\x57\xf2\xc2\x8e\xa2\x90\x26\x02\xda\xe2\xbf\xa5\xdc\x1d\x7f\x4b\x9d\xc7\x73\xbf\x78\xa0\xad\x31\x59\xd5\x3b\xf0\x68\x3f\xd0\xaa\xc5\x27\x94\x01\x53\x6c\xc6\x04\xba\x56\x38\x20\x85\x0a\xa8\x43\xe0\x65\xe6\x94\xe3\xb6\x37\x30\xf9\x60\xe2\xc5\xb1\x58\xb9\x19\x25\xf2\xf7\x1f\x0a\x11\x7f\xcd\xac\x9b\x6c\x45\xa9\x94\x7e\xa2\x91\x01\x75\x09\x94\xa5\xd9\x8e\xc9\xf3\x72\x64\xfb\xd3\xec\x33\xfa\xb1\x78\x13\xd0\x08\x52\xa9\xd2\xb6\x45\x83\x21\xa7\x2d\xa2\xee\x48\x5f\x25\xf2\x8e\x0d\x12\xce\x63\x93\x15\x11\xaf\x56\x66\xd5\x07\x1e\x64\x7e\x5e\x61\x08\xa5\xac\xc1\x80\x21\xb1\xda\xf3\x85\x4f\x10\x06\x85\xf8\xd4\x70\x5b\x63\x13\x25\xcb\x25\xbe\x4b\xb4\xce\x68\x2b\x17\x15\x34\x0d\xac\x5a\x5e\x8e\xc2\x2a\x27\x6c\xfb\x9e\xf4\xed\x49\x4b\x49\x83\x28\xa3\xa3\x2f\x1b\xc5\xcb\x4d\x1e\x85\xca\xe3\x0a\xa9\x27\x5f\x2b\xb0\xfa\xaa\x49\xfa\x36\xe9\xd9\x0c\xc6\xff\x82\xf8\xc7\x30\xa2\x34\xc6\x4d\x31\xe4\x77\x77\x1a\x77\xbd\xb1\x4d\x9c\xea\x0d\x26\xe2\x6d\x5d\x9e\xbf\xab\xb8\xe5\x8f\x76\x75\xe1\x72\x1c\x0d\x66\xd4\x79\xc6\x25\x49\xa7\x43\xe3\x8f\x3d\x90\x43\xe4\x48\xf9\x8a\xe3\xa0\x44\xa3\x32\x36\x0e\xe6\x8f\x82\x6a\xbb\xeb\x73\x96\xf7\xf0\x3b\x10\x26\xed\x54\x11\xf6\x2f\x1a\xb4\x49\x90\x30\xef\xe8\x2a\x51\xb0\x1d\x1b\x0d\x12\x32\x24\xd2\x4b\x03\x8a\x4e\xfc\xf5\x89\xa2\x57\x5c\x57\x8d\xd1\x28\x8e\xed\xc0\x30\x78\x56\xdc\x73\xa8\x23\x21\x1b\x2b\x85\x7a\x82\x16\xad\x56\x97\xa0\x48\x1b\xf0\x2d\xe1\x72\x48\x67\xb9\x2a\x15\xbb\xba\x71\xb0\x7d\x3b\x7c\xbe\xd3\x33\xa3\xb6\x2f\x6a\xfd\x11\xfe\xdc\xd9\x00\x7f\xfb\x9b\xdc\xc1\xbb\xac\xb2\x2d\x78\xc3\x6b\xd8\x3a\x0f\x06\xbf\xa8\x69\xe9\xce\x1f\xea\xd8\x91\xcd\x06\xd2\xfd\xc5\x9c\xdf\xc2\x40\x63\x7e\x3e\xd6\xf5\x75\x95\x5b\xb5\x53\xa9\x8a\x39\xd6\x33\x13\x96\x39\xfa\x2c\x38\x5b\x19\x7b\xce\x2f\x14\x44\xfd\x5b\xf3\x73\x2d\x85\x46\xfc\x42\x09\x77\x7c\xa1\xd5\xfc\x6c\x56\x98\x28\x11\x33\x60\xa7\x7d\x56\xfd\x2a\xa1\xc0\xfa\x24\xfc\x0a\xcd\x27\x51\x7c\x76\x86\x6d\x66\x2d\x71\xf9\x1c\x26\xfc\x17\x4a\x39\xe3\x8b\xc9\x57\x25\x68\xb0\x2c\x12\x6b\x9c\x13\x81\x74\xd8\xab\xef\x10\xea\xd5\x13\x8a\x55\x92\x44\x69\xb6\xa7\xe5\xcc\xc5\xb9\x65\x85\x52\x3a\xcb\x9d\x2a\x28\xcb\x22\x17\xd6\xd1\x98\xc7\x5f\xdd\xc2\xea\x90\xe6\x8a\x6e\xb4\x6c\x0f\x2b\x5e\x3c\xd0\x19\x9a\x35\x13\xb1\x02\xf3\xd6\x4f\x10\x38\x03\x80\x74\x4d\x63\xb6\xcf\x35\xe0\xdc\x1c\xbd\x10\xb1\xb7\x20\x95\xa6\x18\x85\x7e\x0b\x59\xb3\x66\x05\x1c\x57\xcc\x79\x10\xe8\xb0\xe6\xf9\x7a\xaa\xa3\x4b\x5f\xce\x2f\x6a\x5f\xfe\x1c\x97\x7a\x1c\xf2\x55\x7c\xed\xfc\xd6\xb2\x19\xf8\x8e\x16\x3b\xe6\x20\xe8\xac\xd6\x98\x43\x0f\x2d\xcd\xf2\x54\xfa\x88\x10\xfd\x48\xe0\xce\x63\x3a\x20\xb4\x3a\xad\x1c\x04\x77\x6c\x50\xde\xcc\xef\x56\xa6\xc0\x79\xd4\x8b\xc9\x75\x88\xde\x88\x49\x75\x4e\x45\x0c\xe7\xb4\xdd\x6b\xe9\xe0\xff\x8c\xf0\x51\x8a\x1f\xb7\xeb\xd8\xf8\xb9\xea\xff\x05\xe1\xc7\xd8\x0b\xb4\x2b\xc5\xd9\xaf\xe5\x0c\x6e\x2f\xd4\xf2\xb3\x85\x85\xea\xa4\xb4\xec\xd7\xee\xb3\xba\x5f\x53\x16\xb9\xbf\x16\x78\xa4\xc0\x20\x5d\x17\xb0\x03\xa6\xe7\x94\x6a\xcb\xfd\xa9\x7e\x52\x34\xb6\xbb\xbd\x87\x04\xe2\x15\xee\xd4\xd0\x86\x85\x53\xff\x81\xb6\x6d\x3f\xc3\xcd\x5d\xa9\x1e\x78\x66\xe2\x49\x55\xc8\xea\xdb\xe5\x28\x89\x50\xfe\xae\x76\x41\x56\x50\xa2\x0f\x15\x35\xa5\x69\x5d\xcb\x7c\x1f\xcd\x41\x51\x52\x6c\x39\x1f\xd9\x5f\xc3\x94\xc6\xee\xc3\x58\x2a\x6c\xa4\x6d\xc8\x32\x22\x1d\xde\xd5\x55\x1d\x74\xdc\x09\xd2\xce\x7d\x4a\x58\x9d\x88\x36\xcc\xff\x65\xaa\x2d\xd1\xad\xf9\xc3\x41\x1c\x01\x20\x76\xff\xc6\x13\x0a\x0b\x95\x15\x43\x60\x7a\xd0\x20\x7a\x9f\xa6\x14\x5f\xd7\x9e\x18\x11\x04\xc5\xfe\x95\x26\xd4\xd6\xe5\x6a\x77\xd9\x6a\x2c\x47\x85\x69\x86\xed\x11\x2b\x8e\x99\xcc\xfc\x42\x49\xf8\xe4\x69\x6c\x32\xac\x15\x3c\x16\xe2\xe3\xc8\xb5\xa3\x54\x64\x69\xa2\x26\x09\x9f\xe9\xfc\xc2\xab\x19\x65\xe1\xd0\x64\x7d\xa8\x5b\x49\x66\xea\xb7\x68\x70\x4c\x71\x2e\x80\x9b\x2e\x9a\xe8\xd5\x50\x02\x6d\xf6\x51\xa3\x26\x8a\x89\x62\x27\x59\x2e\xe6\xca\xde\xa6\x7d\xca\xce\xb4\xdf\xa7\x06\xf5\x63\xfe\x68\xb9\xaa\xa5\x0b\xae\x4e\xb4\x18\x45\xf5\x19\xd8\xdc\x3f\x9d\xa8\xae\xe1\xc9\x69\xc6\x88\x6f\xb3\xbd\x3f\xed\x8c\xda\x72\xba\x10\xd0\x7a\x45\x7c\xf4\xbb\x9a\xd4\x7c\x52\xf3\x7b\x48\xd9\x65\x3a\x53\x73\x5d\xad\xba\x9b\xd6\xab\xaf\x76\x4c\xcc\xb4\x45\xc1\x95\xa8\xcd\x41\x41\x80\x3f\xdd\x2e\xe3\x71\x78\xf6\x95\xce\xcb\xf3\x87\xbe\x56\xdd\xab\x83\x0f\x57\x93\x9a\x8d\x61\xd1\x48\x41\x09\xe6\x16\xee\x1c\x79\xc6\xaf\x52\x1f\x11\xb1\x0f\xcc\x17\x24\x95\xa0\x7b\x42\x67\xfa\x23\x9a\xdc\xb8\xd9\x4f\xa8\x95\x8d\xff\x7e\x47\x69\x3a\x1d\xc1\x4e\x24\xa7\x1a\x16\xb7\xea\xac\x4a\x87\x8d\x85\x88\x10\x04\xef\xdc\xa0\x95\x02\xb4\xc5\x1f\x52\x81\x00\xc1\xc7\x91\x40\x21\xd9\x8f\xaa\x12\xe9\x4e\xf8\xa6\xe3\xc7\x0f\xb1\x23\x01\x9b\xf9\x76\xe0\x5b\x57\x0f\x26\xb4\x47\xca\xb1\xea\x29\xc8\x65\x18\xa6\x4a\xe3\xf2\xbc\xd2\xb8\x3c\xaf\x2c\xc1\x4d\x92\x26\xeb\x23\x56\x34\x7f\x85\xff\xe0\x32\x06\x51\x55\xf9\xe7\x79\x03\x39\xee\xca\x19\x61\x66\xde\x5c\xdf\xa5\xcb\x19\x98\x1b\x08\x22\x6e\x20\x42\xc5\xe0\x81\x5b\x8d\x0f\x00\x14\x41\x04\x45\xb7\x6f\xfc\x87\x67\x17\x3b\xb9\xb5\x23\x8a\xb8\x31\x56\x8c\x90\x65\x42\xdd\x44\x33\xf2\x9a\x84\xc1\x4d\x48\x26\xe1\x5c\xda\x17\x87\x58\x3f\xcf\x2e\x4c\x63\x5e\x87\xa9\x92\xed\x06\xde\x4e\x4a\x5e\xde\x90\x30\x23\xbf\x78\xcb\xf6\x9c\xce\x28\xa3\x4d\xdb\x24\x5f\x6f\xf8\x1c\xc5\xf5\x17\x60\x6f\x2b\x31\x26\x0d\x95\xb0\xd3\x9f\x6e\x30\xe4\x6b\x7b\x03\x84\x77\x94\x03\xfe\x77\x15\xbf\xec\xd3\x3a\x45\x65\x69\xf1\xeb\x55\x6a\xbd\x46\xcf\x9a\xa5\x06\x15\xfe\xf1\x66\x53\x10\x53\x98\x61\x54\x44\x2c\x66\xe7\xf8\x80\xfe\xc4\xd2\xe9\xf1\xc8\xbe\x11\x85\x28\x72\x8b\x82\x1f\xcd\x14\x41\x9e\xd3\x38\xe3\xfa\x54\xa3\x5a\x21\x09\xfe\xf4\x75\xfb\x80\x21\x28\xfc\xa2\x76\x4b\xcf\xd3\x80\x67\x7d\x09\xbd\x81\xab\x61\xef\x48\x7e\xa1\x5a\x84\xbd\x2c\xea\x31\x58\x16\x3b\x3b\x1e\x37\x5f\x37\x3a\xd0\x45\x03\x69\xcb\x08\x2e\xc0\x63\x65\xce\xa9\x26\x4a\x3f\x33\x23\x33\xa3\x08\x7a\x67\x03\x85\xb8\x64\x55\x09\x7e\x31\x51\xb2\xfc\xda\x8d\x87\xce\x75\x09\xd9\x64\x11\xf9\xf5\x70\x5c\x77\x06\xc8\x1b\x31\x4d\x58\xe4\xdd\xe5\x41\x0b\x0b\x5a\x9e\x64\xd1\x75\x7b\x1a\x3a\x99\x45\x96\x96\x38\x4b\xb0\x03\x4e\x79\xfa\x7c\xd4\x20\xab\xda\x49\xc7\xd6\x07\xf6\x42\x51\x50\x74\x05\xd7\x68\xc4\xa8\xd9\xfe\x2e\x1a\x0f\x69\xc6\xd2\x78\x48\xfa\x56\xad\x07\x14\x08\x3e\x9d\xa8\x5d\xed\x9e\x96\x9c\xbd\x58\x2b\x88\xcc\xcd\x81\xfb\xb0\x96\x66\x2b\xec\x09\xe7\x84\xcc\x3d\x94\x0a\x21\x1f\x7a\xcb\x77\xb5\x68\x7d\xba\x6a\xb3\x62\x46\x5b\x14\x6a\x43\x30\xf6\xe7\x77\x21\x9a\x0f\xd7\x54\x1e\x75\xf0\xbf\xfb\x25\xa5\x15\xb9\x2d\x02\x68\x12\x76\x34\xcb\xcb\x51\x1c\x89\x41\xbb\x04\xdf\x2a\x10\x6f\x10\xfd\x3f\x08\x2b\x0e\xba\x3f\x71\x74\xa3\x45\x81\x7e\xe7\xe7\x81\x8f\x14\x4e\xd6\xb4\xe0\x90\x66\x13\xed\x6b\x8d\x4a\xb7\xce\x18\x18\x4c\x6f\xbe\x56\xe1\x39\x39\x17\x4a\xbd\xd5\xd9\xc1\x2b\x9f\xf2\x26\xb3\x10\xc3\x75\x61\xef\x55\x5c\xed\x49\xd2\x26\xd4\xa6\xcf\x89\x29\xd2\x2c\xdf\x45\x87\x0f\xb2\xd9\x3b\x74\x2a\xb9\xc2\x48\x75\x44\xf2\x3f\xa8\x0c\xe5\x94\x76\xc8\x7d\x2b\xf0\x80\x8c\x51\xf6\xfc\x57\xe9\x69\x23\x11\xdb\xb3\xe1\x21\xe4\xfb\x89\x5a\xb0\xd5\x86\x9a\x2b\x8a\x1e\xbb\xbb\xd5\x39\x2d\x26\x5c\xad\x97\x85\xc0\xfd\x11\x3a\x5f\x8e\x8d\xeb\xd4\xeb\x8f\x52\x70\x24\x01\xb9\x46\x6e\x4f\x7c\x13\xe4\xbe\xaa\x5a\x31\x55\x01\xcd\x6d\x06\xf9\x22\xd9\xbc\x86\xad\x1c\x49\xe2\x2d\x00\x7b\xd1\x37\x86\x9c\x8d\xc0\x3b\xbc\x20\xe5\xa7\xa8\x72\x3c\xc9\x25\xf9\x2a\xac\xc0\x6d\xec\xdc\x68\xfd\xf2\xbc\x2b\x17\xeb\x93\x69\x1c\xaf\x3f\xa5\xac\xe1\x2e\x69\x8c\xf2\x3b\xa8\x93\x38\x24\xd0\x37\x7e\xc5\x89\x11\x55\xf7\xe2\x40\xbb\x4b\xb3\x5c\x8d\xbb\x4a\xed\x2c\x87\x4d\x71\x48\xb1\xef\x62\x71\x60\x51\x1d\x9b\xa8\xea\x32\x7a\x13\xd2\xf0\x69\xbf\xbc\x34\xbb\x75\x86\x46\x53\x64\x96\x68\x70\x40\xce\xb9\x10\x54\xcf\x42\x2c\x19\xaa\xe7\x26\xb8\x24\xaf\x69\x76\xd5\x07\xd2\x65\x11\x9b\x75\x36\x2f\x42\x26\xff\x36\xbe\x59\xb0\xcc\x4a\x35\x1f\x3c\x16\x89\x2f\x1a\xaa\x25\xa3\xea\xb0\x17\xa1\x61\x3c\xe8\xfb\x8a\x76\x76\x5f\x59\x61\x47\x49\x75\xd4\x52\xe5\x1d\x5b\x3a\xeb\x20\xe9\x86\x1b\x4b\x81\x89\x42\x52\xcb\x09\x57\xdd\xac\xed\x5a\xf3\x87\x3a\x7d\x9b\x45\xab\x86\x49\x7e\x1e\x15\x7d\x12\x9b\x22\xbf\xa8\xf7\x5f\xe6\x3b\x7d\x5b\x6d\xa6\x6a\x9b\x46\x62\x22\xce\x13\xdb\x8b\x5d\x0b\x0b\x9d\x61\x54\xec\x52\xca\x17\x5a\x26\xba\x05\x7e\x31\xde\x7c\x14\x5b\x0a\x6b\x34\x4f\x94\x0d\xd4\x4f\x14\x8b\xad\x9f\x45\x0c\xba\xc4\xbe\x71\x55\xdd\x29\x9b\x08\x48\x6e\x5d\x8f\xd0\x3a\x45\x39\x4a\x33\x28\xa3\x62\x09\x7d\xa0\xc0\x04\x1f\xd4\x8e\xf3\x2a\x1b\x57\x1c\x44\x84\x25\x00\x6c\xf2\xb5\xe2\xeb\x8e\x8c\x98\x03\x55\xbf\x1c\xc0\x17\x36\x37\xe3\x17\x0a\x1b\x95\x99\x7e\x64\x92\x02\xac\x06\x27\x77\x56\xad\x34\xd1\x34\x6b\x30\xbc\x1e\xa6\x23\x6c\x9f\xce\xae\xd6\x2d\xd9\x8b\xaa\xa5\xfe\xec\xdf\xf8\x6b\xb9\x6a\xfc\xc1\x74\x89\xaf\xfd\x91\x68\x47\x51\x62\x84\x16\x8a\xc5\xc9\xd2\x5d\x48\xbd\xee\x63\x3e\x49\xd8\xd3\xc4\x46\x8d\x92\xbc\x8c\x3d\xdd\x12\x7f\xfa\x25\x6d\x44\x7c\xad\xfa\x5c\xcb\x26\x29\x4c\x1e\xbd\x89\x3d\x9a\x75\x19\x68\xc9\x89\x46\xc3\xf6\x35\x32\x37\x57\x45\xea\x23\x32\x25\xf0\xac\x83\x8f\x91\xa7\xf0\x8b\xe0\x69\x29\xf2\x45\x39\x0c\x6f\x5d\x8b\x46\xdb\x64\x20\x1e\x47\x8f\x81\xe7\x8d\x16\x8a\x5b\xe2\x5a\x64\x53\x6f\x55\x19\xd2\x27\x45\x14\x46\x63\x92\x6a\xa0\x5d\x4c\xe8\x4f\xde\x6e\x65\xb3\x56\xb5\xa7\xf6\xd7\x2a\x9f\x65\xa8\x8f\x9d\xa7\xe7\xc6\xd7\x0d\x04\xbd\x57\x3c\x23\x70\xfe\x10\x1f\x2a\x67\xe9\x36\xf8\x7a\x8a\xee\x1f\x25\x2b\x24\xa2\x89\x39\x86\x5e\x19\x76\xa0\x1d\xdd\xea\xfd\x42\xf6\xaa\x46\x1d\x09\xce\x71\xa8\x83\xb9\xb0\xb0\x5a\x0d\x8e\xa5\x59\x65\x7a\x28\x98\x9d\xd4\x6e\x17\xe7\xa6\x9a\x07\x3f\x51\x52\x19\x77\x95\x2d\x31\x5c\xf2\xb8\xaa\x83\xa9\xcf\x6f\x70\x36\x10\xa1\xc9\xec\x72\x49\x7a\x8a\x0e\x1c\x79\x99\x3e\x8e\xaf\x95\x84\x66\x68\xb2\x7d\x34\x09\xd1\x9c\x82\x64\x3e\x8e\x8b\x9b\x14\x72\x28\x29\x2b\x09\xe4\x6f\x2a\xdd\xf5\xdb\x2a\x25\x7d\x74\x43\xf9\x37\xde\xc3\x56\x83\xc3\xe3\xa6\x36\x59\xbe\x84\x0d\x10\x2d\x83\x4f\x74\xe6\x7a\x64\xe2\x8d\x87\x55\xb2\x3a\x34\xd9\x0a\x03\x29\x30\xea\x00\x2c\x62\xc2\x21\x7c\x10\x3e\x78\x93\xf3\x5e\x95\x31\x72\x06\x80\x94\x9e\x39\xd9\xfc\x62\xaa\x6c\x56\xf4\x9f\xdf\xad\xee\xf4\x5d\x0d\x51\x17\xcf\x4b\x24\x02\x33\x94\xa9\xa2\x06\x72\x76\xd2\xfa\x96\xe4\xf8\x9b\x93\xa9\xd5\xbe\xd7\x2d\xce\x5f\x78\xa6\x0a\x31\xb0\x41\x5f\xe1\x8f\x92\x62\xbc\x92\x4b\xd9\xa9\x80\xf9\xd7\x94\xdb\x0b\xfb\xa7\x20\x30\x60\x08\x8c\x70\x31\xe9\x47\x22\x14\x79\x30\x51\x50\x97\xab\x13\xe5\x57\x08\xaa\x9d\x43\x68\xb9\xde\xe4\x45\xb8\x3b\xe2\xed\xb0\x2f\xc6\xb7\x5f\x09\xbc\x41\x2b\xc7\x31\x8e\x9b\x52\xcd\x67\xe7\xe3\x33\x37\xc7\x60\xd6\x8f\x27\x60\xc5\xe0\x3d\xa7\x03\xa5\xa9\x78\x49\xe5\x3c\x99\x65\x91\x27\x07\x5a\x05\xc0\x89\xaf\x37\xbe\x36\x5d\xd2\xa9\x46\xaa\x73\x78\xf6\x05\x14\xd7\x9c\xdd\x87\xb7\x80\xbd\x17\x28\x10\xf7\x25\x2f\xa7\xfa\xf3\x62\x7b\x28\x52\xa9\x4d\xd8\x35\xc2\x7c\x38\xca\x3c\x18\x19\x7c\xed\xcd\x97\x32\x9b\x17\xa3\x34\x29\x30\x09\x1d\xe5\xad\x1a\x85\x06\xfe\xdb\x7d\xb5\xbe\xd2\x22\x44\x6e\x8b\xfe\x11\x58\xc7\x7c\x5d\xdb\x8d\x5f\x3c\x40\xf2\xd2\x99\xe9\xa3\xee\x80\x85\x7d\x66\xa2\x56\xf9\x19\xf4\xba\x38\xf7\x2e\xb2\x74\x9c\xc6\x51\xe1\xa4\xf0\x04\x86\x4f\xef\x10\x26\xd7\xc3\xc0\x45\x69\xff\xff\x23\xc1\x7a\x7b\xfa\xf1\xff\x50\xf6\xaf\x31\x92\x5c\x59\x7e\x18\xce\xce\xaa\x7e\xb1\xc9\x61\x37\xc9\x99\xd9\x95\xb4\x52\xea\xff\x1f\x89\x10\x40\x11\x90\x61\x19\xde\x85\x81\x48\x74\xd5\x0e\xb7\x1b\x3b\xc5\x46\x75\x2f\xb9\xa2\x3f\x98\x37\x23\x6f\x65\x06\x2b\x32\x22\x19\x8f\x2a\x16\xfd\xc5\x80\x0d\xd9\x9f\x0c\x08\x16\x20\x0b\xb0\x61\x49\x90\xbc\x5a\x6b\x17\xf6\xae\xb5\x0f\x43\xbb\x9b\x35\x3b\xef\x1d\xce\x0c\x39\x24\x87\x64\x93\xc3\xe9\x77\xb3\xdf\xcf\xea\x77\x57\x1b\x71\x7e\xe7\xdc\x7b\xa2\x22\x68\xd8\x9f\x18\xc1\xae\xcc\x8c\xc7\xbd\xe7\xf9\x3b\xbf\x1f\x49\xe1\xa6\xe3\x71\x3a\x88\x8a\xc8\xc9\xd8\xa1\x56\xc8\xcc\x66\x7c\xd2\xb4\xdd\xfb\xbb\x63\x1b\x17\xb9\x06\x0d\x5f\xa6\xca\x9a\x13\xc1\x76\x8b\xf0\x77\x9c\x49\x00\x5f\xd0\xac\x87\xfa\x6e\x23\x4c\x0c\x57\x20\x60\x6e\x9d\xa0\x80\x83\xd9\x6d\x5b\x97\xcf\xf7\xd3\x24\x89\x80\x1c\xa9\x91\x92\x0b\x33\x51\xcb\x55\xf6\x6d\x6e\x0b\x02\x85\x8b\x14\x44\x65\xed\x65\x50\x53\x81\xca\xff\x82\x0c\x12\xf6\xe9\x63\x0a\xf4\x94\xd9\x61\x19\x57\x69\x11\xab\x03\x0a\x4c\xce\xb7\xc0\x50\x98\x41\x3e\x7b\x54\x05\x32\xf6\x4d\x1a\x3e\x9a\xf1\x39\xe8\x21\xfa\x4b\x87\xcc\xad\x76\x3c\x73\x13\x7a\xdd\xa3\x34\xc9\x23\x5b\x66\x08\x95\x50\x0d\xc4\xc3\xe0\xe3\x66\x35\xe6\xa5\xc3\xd4\x92\xb2\x1c\xbd\xb1\x3d\x53\x82\xfd\xe7\xa7\x7e\xf1\xd9\x37\x27\x36\x8b\x6c\x12\x32\x04\x48\xaa\xb9\x77\x95\xe8\xcb\x39\x6d\x8c\x2e\xab\xe6\xcf\xb7\x1a\x4b\xff\xb9\xe7\xba\x51\x12\x96\x59\x26\xb5\x10\x20\x31\x6e\xea\xf9\xdc\x9b\x6d\xdd\xba\x81\x9d\x94\x05\xc8\x82\x50\x4e\x00\xe7\x24\x1f\xeb\x72\xff\xc4\xda\xc1\x6e\x25\x58\x77\x66\xaa\xa4\xec\xce\xc0\xa0\x38\xa0\xc4\xe2\x7e\x5e\x34\x37\x35\xe1\x3c\x00\x46\x4c\x8e\x4c\x09\x0f\xff\x91\xa2\xb1\xc7\x16\x47\xa8\xf0\xfd\x46\x79\xe0\xe0\xc1\x2e\x08\xbf\x4d\x9f\xd9\x30\x84\xac\x4e\xcf\x60\xb9\x08\x32\x34\xc9\xc0\xc4\xdc\x4e\x64\xfd\xb2\xba\x98\x59\xb3\x66\x33\x0f\x4e\x43\x7e\x8e\x4c\xd4\xa6\x80\x47\x47\x55\x77\x75\xd5\x24\x85\x1d\xa8\x59\x07\xee\xfb\xa2\x6d\xfb\x30\xf0\x79\x13\x26\x5f\x91\x6e\x4e\x5b\x98\x8f\xbb\xfd\x52\x98\x70\xdc\x68\xf7\x01\x41\xfb\xeb\x55\x7e\xaf\x45\xb4\xf6\x70\x37\xb3\x6f\x94\x51\x86\x29\x3d\x05\x5d\x91\x51\x7c\x4c\xc1\xc8\x88\x82\x1a\x93\xfa\xc0\x55\x9c\xf3\xc4\x4c\x38\x6f\x44\xa4\x04\xc9\x04\x87\x06\x5d\xdc\xcf\x5b\x8e\xe7\x76\x45\x7f\xba\x69\xcc\x84\xd6\x9d\xa8\x81\xd8\x98\x21\x7d\xe1\x31\x0e\x3e\xa9\xa1\x5c\xaa\x17\x95\x0d\x72\x8d\x5d\xbf\x1a\x28\x28\x43\x87\xd0\x79\xae\xcb\xea\xd0\x70\x9c\x9f\x21\x32\x3b\xdf\x02\x41\xed\x97\x99\x35\x65\x98\x99\x10\xf1\x1c\x2b\xfe\xa8\x16\xcc\xef\x36\x1c\xdb\xcb\xfb\xbb\x71\xb4\x6c\xb7\x57\x37\x2d\x40\xa5\xea\x6d\x50\x46\x78\xe6\x69\x05\x32\x98\xa5\x51\x2a\x98\x7f\x1e\x39\x13\x8b\xe8\x2b\x8f\xa3\xb5\x89\xcd\x42\x93\x0d\x14\x73\xf4\x3d\x8a\x14\xf8\x98\xc6\x43\x91\xe2\x1f\x53\x73\xda\x37\xb4\xee\xb4\xd6\x72\xcf\x8b\x2c\x4d\x86\xa3\x34\x1e\x70\x6a\x2c\x4a\x54\x1d\x47\x70\x7b\x59\x15\xf1\x88\xa2\x13\xf9\x96\x03\x24\x78\x7e\x6e\xb5\xc7\xc1\x1d\x83\x20\x44\xd8\x0d\xab\xfb\x6b\xa3\x39\xab\x2e\x5f\x46\xf8\x7c\x75\xbe\x5f\x05\x04\x79\x91\x26\x8c\x98\x16\x4a\x2b\xaa\x1b\xf1\x89\x22\xe6\x09\x47\x69\x0e\x65\x87\x36\x29\xe9\xea\x69\x49\xec\x58\xfd\x9c\x9b\xb8\xa8\x02\x2e\x40\xda\x2e\x04\x5e\x35\x33\xb1\x4b\x51\xb1\x5b\xb1\x3e\xdc\xc2\x4a\x75\x10\xde\xea\xed\x08\xcf\x33\x6d\x0e\x54\x60\x66\xe9\x7d\xa2\xc6\xf4\x60\xfa\x05\x04\xf6\xbb\x68\x37\x48\x71\xb3\x8a\xd9\x64\x0a\xb3\xa5\x4e\xbc\x9a\x66\xcb\x6c\x74\x84\x8e\x9d\xbe\x56\xf8\xd8\x1f\x77\x0f\xe0\xb5\xc7\x55\xe7\x0b\x4f\x89\x79\x39\xa6\x9d\xe7\x9e\xe3\xbe\xcc\x6e\x50\x89\xa3\x4a\xfd\xbe\x22\x44\x3f\x45\x6f\x01\x91\xcd\x3b\x74\xb1\xa2\xd6\x49\x3b\x47\xa6\x50\x55\x26\x71\x7e\xda\x79\xe5\x10\x37\x02\x4f\x04\xb2\xf7\x5f\xb7\x76\x22\x34\x95\x8e\xbd\xd7\xf3\xf6\x71\x85\xf9\x8b\x00\x01\x95\xe3\x1b\x97\x99\xa8\xa0\x38\x86\x33\xa6\x1e\xe5\x13\xf7\xa2\xf2\x22\x75\xf4\x12\x6a\xd8\x5a\xea\x5d\x98\x5f\x46\x42\x72\x4f\x0b\x10\x5d\x6b\xe4\xa1\x73\x73\xd0\x4a\x8d\x52\xf4\x3a\x91\xd5\x5d\x53\xa4\x63\x28\x2c\xf0\x58\xac\x6a\xf6\x86\x65\x5c\x94\x99\xd5\x35\x88\xcb\x35\x51\x5b\x1f\x81\xf6\x27\x21\xdb\x30\xec\xc3\x9b\x7a\x53\xde\xac\xa1\x17\xfa\x35\x59\xf4\x2d\x54\x44\x4a\x5f\xc8\xe4\x23\x79\x52\xd8\x83\x6f\x6b\x4c\xd7\xdb\x6a\x64\x34\x5a\x32\xc2\xec\x89\x2b\xbb\x8a\xf7\x82\x47\xf5\x4d\x7c\x8c\x89\x12\x55\x01\x79\xd5\x84\xa3\x22\xb6\x19\x5f\xb8\x63\x7f\xaf\xfe\x5a\xd8\xdf\xf7\xa9\xc8\x6a\x9c\xae\xc8\x05\x01\x96\x82\x52\x3e\x1f\xab\x3f\xad\x1c\x2a\xa9\xfa\x57\x6b\x4d\xc4\xf1\x3b\x8e\x6f\xe0\xa2\xca\x52\x8a\xac\xcc\x0b\x6b\x39\x40\x46\x12\xf6\x1e\x2e\x01\xc1\xdd\x31\xbc\x75\x44\x64\xd7\xb1\x48\xf1\x04\xde\x57\x95\xa2\xcc\x4c\x2c\xc9\xa4\x0a\xeb\xbc\x4f\xeb\x51\xd5\x40\x33\xe3\x41\xc3\x2b\xbe\xf6\x5a\x77\x29\x36\x45\x61\xb3\x35\x5a\x6a\x12\x10\x75\x74\xb2\xe6\x66\xd2\x3e\xc4\xdc\x2c\x82\xe6\xdf\x6b\xa3\x9a\x1d\xc6\x26\x4f\xd2\xbc\x20\xdd\x70\x9e\xf9\x99\xaa\x81\x7f\xae\x74\x3a\x05\x19\x67\x2d\x1e\xb6\xd1\x99\x16\x26\x2f\x22\x8b\x65\x8b\x50\xe4\x14\xae\x40\x70\xed\x64\xac\x84\x07\xb1\xc9\xb8\xf8\x6a\xd7\x4c\x26\x26\xb3\x49\x81\x30\x05\x3b\x1a\x68\x25\x3e\x6e\xc0\x02\x16\x88\x05\x19\x04\xc8\x00\x38\x1c\x53\x73\xd1\xc7\xda\x26\x17\xad\xc9\x62\xa1\x86\x85\x01\xd9\xc4\x95\x91\x61\xfa\xc9\x57\x7b\xaa\x7b\x86\xeb\x47\xe4\xb3\x6d\x7d\x9f\xc6\xcf\x0f\xc7\xee\x42\x51\xb2\xbf\x1a\x28\x1e\xb9\xab\x80\x57\xf3\x5a\xa4\x46\x58\x11\xa5\x09\x62\x11\xee\x78\xc0\x7e\xaa\xf6\xc7\xa2\xbb\x4d\x0f\x75\xaa\x2b\xeb\x0c\xa3\x70\x3b\x16\x1f\xcc\x6e\x8d\x84\xf9\x94\x9a\x1b\x5d\xd7\xaa\xe7\x7f\x30\x55\xa8\xeb\x3f\x6a\x55\x4a\xb4\x59\x3a\x90\xf0\x10\x35\xd6\xeb\xaa\x25\x7c\x5d\x2d\xde\xa5\x32\x19\xec\xa6\xef\x43\x4a\x7c\x55\xdb\xe5\x47\x0a\x2f\xf5\x5a\xdd\x41\x76\x1c\xa3\xd1\xbb\x81\x67\x52\xb9\xc2\x55\x0f\x19\xd7\xad\x3b\x58\x0f\x54\x3c\xdb\xd8\x0b\x8e\x37\xdb\x4c\xa8\x41\x86\xc7\x75\x4b\xe9\xd6\x62\x9a\x0f\x3e\xf0\x98\x1a\x8d\x8e\x0a\x3b\xce\x77\xf9\xa1\xa6\x2b\x4a\xa1\xf5\x7b\xd8\xc0\xa8\x7c\xdd\x46\xd6\x28\xd5\x0a\xe5\x72\x4e\x4c\x75\xfb\xd7\x2b\x1a\x70\xf5\x0d\xee\xf5\x82\x1f\xd7\x4b\xec\x78\x4d\x8f\x5b\x1e\xa7\xe7\x84\xca\x15\x52\x3c\x91\xfe\xfe\xb2\x5a\x36\x51\xb2\x62\xf3\xc2\x61\x7d\xd0\x1e\xb8\xaf\x10\x49\xf7\xa7\x52\x87\x1d\xd9\x71\x9a\x65\x23\x33\x14\xf4\xae\x96\xb5\x15\xce\x5c\x55\xc1\xfd\xcb\xe9\x1e\x6f\xd5\xd2\xbf\xe9\x1b\x4f\x3b\xc1\x90\x25\x72\x55\xf4\x00\x70\xf2\xd3\x40\xf5\x90\x58\xfa\x05\x1e\x63\xdf\xba\xa2\x7c\xbe\x4f\x75\x24\x94\x05\x8e\xe1\x27\xb1\x0a\x4f\x53\xd3\xcd\x21\x3b\xe7\xe6\x38\xec\xda\x98\x6a\xb0\xdb\xb7\x03\x05\x54\x3e\x86\xde\x9c\x73\xbd\x9e\xd4\xe3\x26\x31\x89\x63\x13\xbc\x3d\xf5\x04\x63\x67\x89\x18\x70\xf3\x14\x26\xfd\x71\x15\xb7\xa8\x97\xc5\x32\xd4\xac\xb6\x88\x5d\x82\x92\x30\xbe\xf1\x67\x14\xb0\xe2\x13\x7f\x4a\x79\x1c\x56\xd1\x63\x0a\xb0\x77\x1c\x38\x1e\x56\xad\x45\xe3\x00\x2b\x97\x5b\x61\x14\x34\xef\xdb\x4b\x32\x3d\x58\x5c\x7f\xa2\xe8\x30\xfe\x48\x63\x01\x36\x55\x36\xbf\x62\xb3\x3c\x4a\x93\x1d\xaa\x66\x5e\x93\xad\xa0\x57\x8e\xee\x34\x17\x47\xf9\x2d\xf2\xee\x71\x08\xe5\xea\x69\xc3\x11\x9c\x54\x68\xc5\x91\x89\x63\x76\x9b\xdc\xf3\xd1\x3d\xfe\xe3\x0d\xa8\x74\x15\xfc\x0c\xec\x8c\xae\x8e\x56\x4f\xd8\x71\x1f\x79\x07\x7d\xaf\x56\x13\x7f\xeb\xad\xad\x78\xe1\x6a\xf5\x48\xf7\x58\x75\x92\x61\x29\xe5\x1f\xda\x60\xab\xe3\x49\x6c\x1d\x6c\x55\xfc\x37\x7d\x4a\x1c\x78\x1b\x9b\xf0\x64\x12\x47\x76\x30\xab\xea\x6e\xa7\x02\x5f\xbc\xe4\x8e\x28\xff\x83\xda\xc1\x57\x1a\xc3\x27\xaf\x2c\xee\xef\x46\xd5\x35\x8c\x15\x7a\x56\xa2\x1e\x05\x75\xd0\xba\x90\x34\x11\x48\x5e\x85\xa5\xad\xa6\xba\xcc\xa2\x5b\xfd\xb4\xea\x50\x8e\xbc\x53\x33\xef\x89\x8d\xf7\xd4\x86\xe8\xaa\x0f\xb9\x2a\xbc\x23\xc8\xbb\x8d\x75\xe4\x98\xb8\xab\x95\x27\x08\x8f\xea\xab\x85\x2f\xad\xda\x88\x52\xb7\xa7\x67\x02\x47\xbc\x93\xf2\x3b\x58\x90\x3f\x57\xe2\x08\xb7\xd0\x86\x10\x0e\x3d\xc5\xef\x45\x81\x70\x5a\x72\x62\x06\xdf\xf8\x79\xe0\x01\x47\x9f\xb7\xe8\x37\x74\xdf\x28\x4d\x56\xd8\x8c\xa5\x13\x59\xf0\x4c\x6d\xb8\xcf\x14\x17\xf7\x92\xed\x67\xa5\xc9\xd6\x66\x6b\x34\x6e\x6a\x6a\x19\x45\x58\xd5\xd9\x9e\x77\x15\xd9\xa7\xd5\xac\x78\xe5\x68\xab\x50\x8e\x9e\x0f\x62\x98\x6f\xc2\x0d\xf1\x89\x1a\xea\xb6\x49\x98\x96\x99\x19\x56\x61\xbb\xd3\xb2\x38\x0f\x3f\x8c\x0d\xc5\x30\x41\x3e\x99\xaa\x11\xbd\xe0\x59\x87\x5d\x1f\x46\x79\x51\x13\x2b\x71\x2f\xdc\x11\x7e\x5d\x51\xd8\xa3\x3c\x4e\x57\xe3\x35\xc4\x01\xae\x52\xe8\x83\xac\xd3\x8a\x77\x81\x99\x02\x04\x37\xb3\x35\xf4\x39\xf2\x52\x77\x40\x65\xae\xc5\xfd\xad\x03\x55\x2d\xbd\xef\x41\x5a\x12\x02\xbb\xa3\x3a\x75\x9b\x4a\x55\x6b\x53\x95\x81\x26\x91\xcd\x42\x4c\xfc\xc1\x4e\xa3\x8d\xc7\xc7\x8d\x12\xc9\xfc\x91\xee\xeb\x69\x99\x25\x26\x8e\xf2\x82\x07\xaf\xa4\xd8\xdc\xf1\x14\x62\x2d\x18\x92\x85\xee\x24\xcd\x04\x7e\x27\x02\xe8\xbe\x9b\xd4\x04\x2d\x2d\x2c\x74\xfb\xd6\x64\x39\x71\x95\x4a\x5e\xad\x1a\xe8\x7f\x4e\x59\x23\xfc\xd4\xbb\x78\xb8\x40\x11\x6f\x38\xc1\x90\x81\x91\xe1\x23\x2c\xa9\x5f\x60\x49\x89\x1a\x27\xed\x28\xa6\xc6\x71\x09\x65\x95\x27\xa0\x05\x8e\x12\xcb\xc3\x1a\x63\x01\x7d\x9e\xd9\x6c\x54\x8f\x33\x8d\x93\xed\x5a\x24\x1b\x7d\x51\xa7\x06\xeb\xd8\x06\xae\x28\x00\xd5\x05\xcd\x65\x79\xa9\x55\xab\xd1\x24\xe1\x88\xaa\x51\x4a\x03\x15\x70\x20\xaf\x75\xef\xe4\x8e\x4d\x96\x45\x8c\xb9\x47\x60\xf2\x5e\xe0\x91\xb6\xef\xa9\x12\x8c\x29\x8b\x51\x9a\x51\xbd\x7e\x56\xfd\xf9\x5d\xa5\x2d\x0a\xd9\x3d\x6c\xe0\x1f\x6b\xd1\x8b\x9a\xf8\x50\x1a\xee\xf4\xe5\x24\x26\x1d\xaf\x09\x8b\xa3\x95\xc6\x40\x73\x9c\x5c\x57\xb9\xea\x9e\x9e\x12\x97\x5a\x07\x76\x45\xca\x17\x5b\x9d\xd5\xf3\xdd\xb1\x59\x66\x8d\x18\xa9\xb0\x56\xef\x9f\x8f\x7d\xdd\xd4\x9a\x7e\x96\xa6\xe8\xec\x20\xe8\x7e\xa0\xbb\x28\x0f\x74\x71\x29\x7a\xa3\x8c\x06\x6a\xed\x7f\x40\x9b\x9f\x8f\x1b\x78\x85\xc5\xfd\xdd\x7c\x64\x26\xac\x40\x2c\x3a\x3b\x33\x5e\xc3\x13\x0f\x5c\xf0\xdd\xb4\x54\xb0\x22\x8f\x6b\xa6\x9c\x0c\x12\xaf\x74\x81\x68\xe3\x7d\x84\xf0\x9e\x4f\xda\x94\xde\x98\xcc\x42\x5c\x94\x48\x86\x56\xd7\xc1\xc7\x0d\xdf\xb6\xb0\x70\xb8\x3b\x36\xd9\xb2\x2d\x26\xb1\xb0\xb3\x61\x71\xbe\x1d\xf8\x59\xd6\xb7\x55\xda\x3b\x2a\x93\x41\x56\xdd\xdd\x9c\xcc\x96\x6d\xc3\x0b\xd2\x64\x29\x48\x73\x4f\xe1\xee\x50\xc7\x3c\xd1\x46\xf9\xbf\x1a\x15\x9e\x48\x43\xc4\x2d\x3b\x5e\xe8\x52\x85\x45\xab\x69\xb6\x4c\xe0\x44\xc7\xc0\x87\x42\x3e\x1f\x4f\x7d\xf5\x25\x4b\x97\x2d\x28\x7d\xa4\xa0\x44\xeb\xa1\x26\x7c\x87\x7f\xb9\xd9\xb0\x8b\xa0\x6c\x4f\x4c\xc2\xcf\x02\x9b\xf0\x87\xca\xcd\xff\x50\x21\x7b\xc3\x34\x01\xe0\x21\xe5\xea\x23\x33\xe8\xd1\x9a\x13\x36\xbd\x27\x7d\xd7\x5d\x5e\xa8\x20\xe2\x3a\x4a\x84\xae\xe9\x34\x0f\x11\x57\x79\x14\x5a\xa9\x5c\x49\x0c\x4a\x77\x20\xc9\x98\x2a\xd6\x5c\xd6\x7c\xa0\xfd\x3c\x2c\x33\xab\x7a\x42\xff\x62\xda\xd1\x2a\xd2\xbf\xf5\x1b\xbc\x84\x2f\x69\x86\x1a\xe3\x54\x72\x11\x9b\x5f\xae\x35\xf6\x14\xe1\xc2\xd3\x3d\x5f\x07\x7b\x7c\xbd\x4e\x30\xee\xe6\x5b\x9a\xf4\xe0\x47\x5e\xea\x0e\xb3\x74\x55\x2a\x2c\x8a\x0a\xd5\x31\xf4\x05\x1e\x68\x34\x8c\x56\x6c\xbe\x9d\x76\x3c\x62\xcf\x07\x14\xc1\x49\xad\xdd\x9b\xb8\xce\xba\xaa\x1a\x31\xca\x96\x4f\x5a\xd4\x1c\x5e\x25\xa9\x09\xaf\x01\xc0\xa0\x28\xba\x3b\x01\x48\xf9\x8b\x18\xdb\x38\x4e\x67\xbc\x32\xdb\x1d\x84\x4f\x68\x2f\x1c\xc7\xda\x12\xc0\xa9\x37\x9f\x35\x02\x3e\x45\x1a\xe9\xd5\xda\x1e\x69\xdc\x52\x34\x48\xa2\xe1\xa8\xa0\x88\x11\x31\x1e\x98\x1b\x35\xa2\x16\x3d\xb3\x9f\x57\xd6\xa7\xb7\x75\x1f\x4b\x02\x3c\x2a\x93\xa1\x08\x07\x8a\x78\x18\x5d\xae\xa8\x87\xb5\xb0\xe1\xe2\x61\xa8\xde\x01\xd4\x71\xf8\x58\xf9\xaf\x7f\xf4\x77\x17\x67\xab\x54\x0d\xc1\xd6\x51\x1a\x7b\x44\x62\x03\xd9\x19\x6c\xf4\x9b\x7a\x38\xf8\x31\xc5\x33\x30\xb2\x99\x7d\xa2\x7a\xeb\x4e\x14\x6e\x6b\x14\x87\x05\x79\x1c\xb9\x25\x9e\xd2\x06\x55\x80\xdd\x64\x75\x15\xbd\x09\x58\x91\xf8\x5b\x4e\xe1\x05\xc0\x2a\x6e\xd2\x85\xc3\xd9\xff\xf3\xa9\x67\xee\xf8\x14\x2b\x02\xd7\xcd\xef\x4f\x24\x92\xbe\xe4\xc1\x4b\xc3\x92\x1f\x83\xdb\xc6\x7e\x4b\xb7\x16\x85\xed\x9b\x93\x34\xa7\x32\x2b\x7d\x3f\xb6\x0c\x53\xc6\xf1\x89\x53\x75\x8b\x89\x32\x08\x6d\x6c\x35\xe8\x7a\xd8\xad\x06\x3f\x0d\xc9\x93\xbc\xd8\x02\x65\xdf\x72\x8f\x56\x54\xd8\x95\x88\xc0\xa5\xa0\x05\x0d\x1d\xa6\xe3\x71\x99\x44\x6f\x94\xac\x8d\xc9\xf9\x66\xbd\xee\xe3\x0d\x7a\xb5\x48\x4d\x81\x0c\x4f\x8f\x6a\xe3\x31\xfe\x5f\x81\x8e\xc2\x55\x94\x9e\x97\x61\x68\xed\x80\x6f\x5d\x68\x81\x34\x47\x90\xc3\x85\xe5\x45\x66\xcd\x38\x8e\x12\x87\x0b\xc3\x9b\xc0\x38\x31\x87\x63\x6a\xea\xe9\xaa\x07\x56\xa4\xe3\x89\x49\x22\xcb\xe8\x1e\xa4\x49\xf7\x02\x95\xb0\x8a\x26\xa9\x0c\x1b\xf9\x3d\x15\x8e\x4c\x54\x45\x45\xbb\xab\x35\xe1\xf4\x6e\xaa\xfd\x8e\xda\xfb\x29\x3d\x67\xff\x88\xbf\x46\x46\xdb\x2a\xef\xc6\x90\x60\xd5\x96\x06\x7f\x8d\xa3\x39\xf5\x5a\x9f\xa7\xe9\xed\x21\x21\xdb\x68\xd9\x63\x87\xba\xc3\xcc\xda\x84\x6a\x53\x22\x53\xd3\x71\xb3\xf6\xb7\x03\xbf\xf7\x4e\x2b\x2a\xe5\x32\xc9\x2d\xb1\x2a\x50\xd7\x14\x55\x07\xb4\xcf\x51\x1f\xbe\xaa\xa0\x4d\xc7\xd4\x3e\x1d\xf7\xf3\x9d\x9d\x85\x85\xcd\xc7\x81\xb7\x42\x48\x03\xa1\x48\xa9\xab\x7b\xae\x44\x56\xf5\x64\x1c\x07\x6e\x0a\x25\xf4\x7d\x3d\xc5\x7f\xa4\xb5\xed\x47\xe5\xd8\x24\xb3\x3e\x42\xbb\xa3\x67\x6c\x8e\x4f\x3b\x8a\x0b\x44\xa9\x49\x1d\x77\xc1\x73\x31\xb2\x4b\xc5\x76\xa5\x83\xcc\xd5\x1c\x37\xb1\xe0\xe2\xfd\x7d\x3d\x5f\x0e\x7b\x44\xf6\x46\x3a\x49\x2d\xb5\xdf\x38\xcd\x2d\x2d\x78\xfc\x1e\xcb\x5f\xf1\x49\x1b\xef\xeb\xd7\xba\x89\xd5\xa4\x75\xdb\x54\xdf\x73\xdb\x7a\x5b\xe3\x1c\x09\x5b\x47\x95\x0e\x2e\xaa\x61\xb3\x8b\x4a\x47\x37\x36\xc9\x60\x4f\x75\x31\x40\xf8\xdd\x53\x48\xad\x87\x24\x32\xeb\x88\x5b\xaa\x8b\x54\x1a\x40\x4e\xc4\x5f\x41\x38\xa4\x2a\x26\xea\xae\x3e\x16\x65\xce\x7f\x7c\xfe\x3d\x10\xb1\xa3\xc6\x7f\xaa\xae\x01\xdb\x92\x30\xe6\x23\xb3\xda\xf1\x3e\xef\x8a\x8e\xe0\xb5\x9c\xf5\x7f\xfa\xab\xfb\xb1\xc9\x65\x1c\x4b\x65\x24\xe7\x5a\xc4\xe1\x0e\xb3\x80\xcb\x78\x22\x28\x83\x79\x5f\x42\xac\x6e\x90\x4f\x94\x56\x9f\x53\x57\xdf\x41\x7f\x80\xc5\x78\x5c\x89\xa6\xf2\x10\x22\x3c\x30\xcb\xec\xb2\xf4\x20\x3d\x0d\xcd\x78\x2e\xb6\xea\x59\xc5\xf2\x16\x15\x11\x23\xad\xfd\x18\x08\xea\xa1\x7c\xdc\x26\x21\x9a\xdb\x38\x26\x7d\x4d\x86\x02\xa0\xb8\x02\x62\xd0\x13\x35\x00\xa9\x86\x94\xf9\xe5\xff\xc7\x0e\x71\x19\x8d\xc7\x76\x10\x99\x02\xf8\x05\x4d\x7e\x84\x31\x4d\x44\x53\x58\xaa\x5c\x40\x15\x72\x0d\xad\x1c\x96\x43\x17\x00\xc5\x51\xec\x7e\xe6\x0f\x09\x3c\xf0\xe8\xd6\x54\xc9\x80\x3e\xa6\x32\xb1\x25\x56\xd4\x81\xc3\x99\x55\x04\x69\xb3\xeb\x8f\x0b\x98\xee\xb5\xd7\xba\x9d\xe7\x9e\xe3\x6d\x06\x3d\x32\x04\x7f\xdb\xc8\x26\x22\x71\xbb\x47\x18\x53\xb8\xa0\x1b\x5c\x44\x75\x95\xbd\x57\x24\x5c\x64\x31\x79\x19\x56\xe9\x1c\x79\xc9\xd5\xeb\xa8\x20\x0b\x2b\xf3\x01\x95\x13\xf1\x7b\xdf\x47\xbf\x09\x7f\xb5\x81\x82\x0b\x3c\xfb\x55\xe4\x7d\x82\x6d\x50\x0e\xe0\xb4\x9e\x99\xbc\x8a\x1d\x80\x4a\xde\x2f\x68\x65\x08\x1e\xb0\x32\x1e\x28\x6d\xf1\x78\x22\x60\xa8\xff\x81\xe2\x0b\x7c\xba\xd3\xf3\xb5\x82\xfb\x81\xd2\xc6\xf9\xe9\x54\xe1\xfa\x6f\xa0\x86\x84\x7f\xd9\xb3\xae\x10\x71\x14\x9a\x71\x87\xfa\xca\xb4\xf3\x0d\x29\x89\x5f\xd5\x42\x7c\xdf\x9d\x7a\x23\xf3\x73\x2a\x2d\x23\x8b\xfa\x1c\xc5\x26\x6c\x3f\xd9\xf0\x52\x50\x50\xc4\xee\xa3\x74\x35\x4b\xd3\x31\xe8\xdf\x04\x7c\x5b\x7d\x0d\xfc\xe8\x77\x60\x8b\x9d\x2a\xb7\xa3\xd8\xfd\x0e\x2c\x8d\xe8\xce\xf8\x4c\x61\x25\x0a\x8b\x34\x5b\xa3\x74\x15\x7d\x0f\x9e\x99\x44\x8e\x04\xb1\x6b\x46\x33\xaf\xab\x61\xb6\x99\xde\x53\x8a\x60\xd6\x0c\xaa\x48\xdd\x13\xcb\xf0\x20\xad\x53\x81\x76\x00\x04\x48\xa3\x88\x38\x42\x0d\x9a\xd6\x12\x9b\x8e\x6c\x96\x4a\x7e\xe8\x82\x13\x1f\xa8\xb4\x8a\x1a\x16\x59\x19\x43\xc9\xc5\x89\xf6\x7a\x01\x5f\x07\xbe\x37\x59\x6e\x13\x82\x4e\x29\x25\x0b\x55\xc5\xf1\xfa\x9e\x05\xf1\x78\xd0\xbd\x49\x14\x4d\x9f\x91\xf8\xda\x87\x1c\xfd\xcc\xae\xd8\xa2\x88\x3a\x1e\x47\x72\x5a\x6b\xaf\x9c\x56\x6c\x26\x79\x99\x4d\xe2\x32\x9f\xf5\x61\xdf\x15\x4d\x1c\x74\xc2\x5b\x87\xe4\x04\xd6\x8f\xf0\x80\xb6\x30\x8d\x8d\x6c\xd6\x67\x7c\x3b\xc6\x60\x2e\x28\x7a\xff\x0b\x5a\xe7\xb0\x8c\x8b\x68\x12\x33\xbf\xa9\xcc\x57\xd7\xf2\x63\x6f\x30\x06\x51\xba\xbb\xda\x9c\x02\xfa\xf7\xb3\x39\x97\x68\xd7\xc0\x2c\x9e\x55\x7c\x14\x4f\xa0\x14\xe0\x60\xc0\x9e\xd2\xf3\xa6\x92\xfe\xe0\x39\x44\x89\x4b\xb1\xd4\x25\x19\xf5\xf6\x6e\x90\xa5\x13\x5a\xe5\x32\x2f\x4f\x4f\x01\x27\x97\x6b\x72\xad\x64\x01\x60\x09\x6f\x61\xab\xf2\x5f\x39\x3d\xad\x38\x2a\xa2\x21\x15\x66\x67\x7c\xc9\x87\xb9\x7e\xc5\x5f\x78\x58\xe6\xc5\x5a\x21\xbe\x2c\x46\xbb\x71\x8d\x58\x43\xbb\x7b\x5e\xce\xed\xe7\xb0\x4b\x0e\xe4\x5b\x2d\x12\xfc\xf6\x3d\x4d\xe6\x08\x4d\x29\xec\xd6\x1b\xf4\x43\x30\x06\xdb\x7a\x1e\x42\xbf\x11\x28\xc5\xc5\x26\xc7\x01\x71\xa0\x85\x25\x2a\x72\x33\x1a\x74\x30\xb3\xae\x82\xb6\x9f\xeb\x41\xdc\x9d\xbd\x2d\x0a\xef\x07\x0f\x2e\x76\x8f\xbc\xb4\x5d\x51\x96\x5c\x0a\x7c\xef\xf3\x43\xdd\x33\x42\xab\x4b\x18\xa9\xab\xcb\x67\x22\xcc\x75\xbf\x86\xcb\x24\x5a\x4a\xb3\x31\xc4\x91\xe1\xd5\xee\xeb\x69\xfa\xfb\xaa\xb4\xb0\x92\x16\xe8\xc6\x38\xa1\xd8\xa9\x97\xae\xc0\x8f\x61\x81\xcf\xac\x57\x8e\x46\x94\x54\xa4\x48\xbb\x6a\xe2\x78\xc6\x6f\x2b\x84\x6a\xb8\xe5\x0d\x5d\x33\xbf\x34\xfd\xdb\xcd\xed\x11\x8d\x27\x59\xba\x12\xe5\xb4\x00\xb6\xce\x34\x2a\xfd\x8c\x96\x9d\x35\x36\xaf\xa7\x22\x77\x83\xf5\xfe\x88\xb6\x16\x1f\xbb\x05\x96\x97\xfd\x38\x1a\x13\x5f\x2b\x2d\x2a\xd6\xa6\x55\x08\x8c\x2b\xce\xf4\xf8\xd9\x4a\xd5\x05\xab\x16\x82\x5c\x47\x93\x7b\xd0\xc4\x69\x32\xdc\xae\xe4\x7c\x61\xf3\xe1\xf1\xcf\x4c\x6b\xe4\xaf\x3e\x59\x78\x9a\xc6\x20\x11\x6e\xfd\x4a\xaf\x45\x42\xb4\x88\xc6\x36\xdf\x51\xfd\x11\xee\xe7\xb6\x56\x7c\xde\x4e\xee\x10\xf8\xb4\x3f\x98\xfa\xa9\xb8\xcb\x84\xe8\x17\xf2\x34\x9f\x55\xfc\x41\xa3\x0f\x40\x3a\xac\x85\xc9\x8b\x2c\x9d\x8c\xa2\x70\x46\x95\xdf\xcf\x29\xfa\x9d\x1b\x4a\xb0\xe2\x63\xa5\x75\x95\x8f\xec\xd3\xd5\xd7\x3b\x56\xde\x03\x0b\xae\x21\x85\x0d\x00\xbf\x8d\x7c\x15\xc6\x80\xab\xc5\x8e\x0a\xbf\x8a\x27\x9c\xc6\x74\xb5\x4c\x85\xe7\xab\x32\x60\x42\x7c\xa1\x38\x2d\xf6\x52\x3f\x0c\xa1\xc5\xbb\xe4\x9e\x79\x6e\x42\xd1\x0f\x9d\xc0\x3e\x77\xec\x4a\x95\x59\xe2\x30\x15\x51\x03\xaa\xad\x8f\xf5\xaa\x98\x83\x15\x3a\x60\x27\xe0\x5a\xae\xe1\x29\x33\x3f\x82\x42\x0b\x52\x0d\x68\x87\x67\xd8\xb9\xaf\x94\x11\x66\xa8\x8f\x8c\x0b\xdb\x98\xfa\xa4\xe5\x52\x6d\xe6\x10\x3f\x23\x6c\x53\x8e\xf2\xb3\x1c\x44\x36\x09\x6d\x3e\xeb\x47\x2a\x59\x8c\x08\x43\x1a\x3b\x7a\xb5\x26\xac\x92\xbd\xf9\x61\x1b\xe3\xda\xc8\x4c\x26\x56\x48\x8c\x24\xf7\xa9\x8d\x3e\x68\xfb\x39\x8a\x26\x4f\x91\x61\x81\xf9\x3c\x4a\x17\x0f\xaf\x80\xa9\x23\x74\x42\x37\xb5\xf4\xe2\x75\x2a\xf4\xd5\x4a\xb6\x82\x2d\x54\x39\xd2\xb7\x29\x0e\x75\xed\xfb\x03\x82\x48\xfa\x01\x1c\x8c\xa3\x26\xaa\xde\xbb\xf0\xbb\xd4\xe9\x60\x5d\xfe\xdc\xe9\x55\xef\xba\xf6\x00\x44\x0c\x49\x51\x9b\xfd\xfd\xff\x68\x56\x8d\x7b\x02\x8e\x0a\x1f\xfd\xaf\xe8\xbb\x90\x7a\x5d\x57\xe8\x81\x77\x54\xf3\xa5\x30\xe1\x72\xcc\x4c\xcd\xc2\x64\xef\x81\xbe\xff\x9b\xfe\xa1\x49\x81\x39\x79\x97\x72\x55\x9e\x54\x84\xd8\xf5\xd0\xca\x8f\xa7\x7e\x5d\x32\xcd\xa4\x6c\x97\x66\x73\x64\xc9\x2c\x5b\x4a\x68\x70\xcf\xdf\xd6\x08\x6a\x86\x77\xc1\xba\xfc\x44\x0d\x10\x22\x51\xc0\xb6\xb9\xe1\x30\x26\xe1\x28\x8b\xf2\x22\x32\x09\xc9\x87\x39\x2c\x18\x83\x09\x04\x21\xe1\xc5\x5f\x06\x99\xcd\x73\x55\xfc\x3e\xa3\x8a\xdf\x67\xa6\x9e\xc7\xc8\x14\x45\x66\x42\xa7\x3c\x80\x64\xeb\xa8\x92\x67\x3d\xda\x42\x83\xd3\xcd\x88\xfd\x48\x7a\x99\x42\x6a\xd9\x71\xa2\xa3\xa7\x5d\x26\x56\x8e\xfb\x99\x8d\x63\xc3\x15\x25\x29\x7b\xa8\x28\x6c\xea\xbb\x95\x27\x6b\x33\xd5\x36\x49\xb0\xe2\xdd\xc6\xab\xbe\x41\x36\x9e\xc7\x83\x85\x69\x5c\x8e\xfb\x91\xd9\xee\xeb\xd3\xcc\x91\x2d\x05\x52\x3d\x27\xb6\xab\xa7\xf0\x53\x67\xd4\x34\xca\x63\xeb\x12\x80\xc6\xd6\x64\x09\x8c\x3f\xbc\xdf\x35\x6a\x6a\xa2\xb3\x4f\xfa\xc0\x52\xa0\xe3\xc8\xd4\xd9\x69\xc5\xb4\xdb\x32\xb2\xb2\x64\x92\x70\x8d\xea\x7e\x08\xef\xaf\xd7\x44\x4c\x95\x84\xe5\x0f\x54\x39\xbc\x5f\xae\x59\xd0\xad\x21\x1e\x38\xab\xc9\x7d\x79\x8e\x4f\x3a\x25\xd5\x57\xa3\xa1\x87\xe0\x51\x6a\x31\xd5\xde\xc6\xc4\x08\x17\x63\x65\x2d\x6b\xb3\x61\xc7\xf9\x93\x74\xcf\xd8\x94\xff\x27\x05\x2a\xa8\x8d\x3f\x22\xe7\xa7\xf1\x30\xb0\x69\x0f\x14\xe0\x8b\x79\xb0\x61\x42\x4e\xc2\x48\x62\xdb\xde\x0c\x54\xff\x4e\xd3\xb7\x5d\xc2\x7e\xe0\xea\x43\xa0\xf4\x51\xee\x07\x1e\x66\x7b\x1b\x4b\x5c\x24\xf2\x5a\x94\x21\x09\x3f\xd7\xf1\x82\x99\x9f\xaa\x94\xe7\xd3\x46\x60\x77\xe4\xa5\x6e\x98\x26\xf9\x24\x02\x82\xdf\xd5\xc7\x21\x43\xc2\xc7\xaa\x1f\x19\x0d\x93\x34\xe3\x1e\xa7\x03\x63\x2e\x0a\xdf\xcd\xb9\x06\x16\x66\xfe\x48\xb7\x9c\x0c\x9c\x76\x35\x8c\x6d\x67\x5d\x71\xc0\x75\x7a\x12\x99\x4c\xcc\x5a\x96\xc6\x92\x14\xb5\xb5\xec\xf7\xb8\x35\xb9\x02\xd8\x29\x52\x5c\xb0\x57\x08\x45\x99\xaa\xd5\x9c\xa7\xa5\x2a\xc4\x09\xb2\xa2\x07\x59\x14\x43\x3b\x13\x8d\xbe\x5d\x58\xc4\x82\x38\xef\x38\x9d\xbf\x99\xf5\xad\x05\xee\x83\x07\xbb\x83\x28\xb3\x55\xce\x2a\x04\xa3\xae\x7f\xb3\xe0\x07\xdc\x95\x2e\x58\x5c\x46\x03\xd6\x41\x13\xf0\x58\xf5\x29\xd7\xd3\x72\xf8\xf4\x53\x6a\x13\x2f\x59\x93\xe5\xe9\x98\x9f\xb3\x0b\xad\x54\xe0\x58\x1b\x00\xce\xf2\x27\xfc\xfb\x7e\x1f\xab\x0d\xbb\x90\xc1\x60\x82\x8f\xac\xbe\x41\xe4\x19\xfc\xb0\x04\x47\x14\x35\xc9\x4b\xa1\xfb\xec\x7c\x43\x58\xb9\x3e\x0c\x3c\x80\x99\x65\xc1\x1d\x6b\x95\x47\x3e\x6f\x5b\xef\xb8\x22\x60\xa7\xb7\x35\x94\xfc\xb5\x6e\x6c\xfa\x69\x46\xc6\x95\x95\xd7\x34\x1c\xe8\x8c\xae\xf0\xdb\x41\x19\xb2\x51\x7d\x95\xbd\x04\x8f\xa7\xf3\x89\x9f\x64\x0f\xb3\x68\x3c\x91\x7e\x9a\x68\x6f\xd3\x15\x8a\x2a\xb7\xff\xde\xd5\x28\x49\x6c\xb1\x4c\xf4\x6e\x9b\x84\xf7\x3e\xb4\x79\xd5\xf5\x49\x46\x65\xbe\x8c\x8e\xc7\xa1\xd6\x61\x7f\xef\x24\xa3\x14\x2b\xda\x49\xb8\x3b\xf6\xca\xb6\x52\xc2\x61\xde\x96\x4a\x74\x05\x4c\x8f\x7c\xec\x09\x8a\xab\xcb\x33\x93\x34\x8e\x72\x05\x56\xe2\x46\xa8\xf4\x28\x5b\xba\xef\xc4\xcb\x0c\xb8\x8b\x83\x7d\x81\x4c\x42\xe8\xe3\xb7\x2e\xe5\x97\xf7\xbf\x28\x3d\x7b\x97\x63\xb4\x4d\x7b\x3d\xeb\x71\x38\xa3\x28\x8e\x26\x93\x28\xb1\xa4\xf4\x28\xdd\x8b\x9f\x07\x42\x46\xa9\x11\xee\xf4\xf8\x85\xf5\x93\x5e\x8c\x44\xac\x1a\xfb\x4e\xbf\x8a\x22\xe8\x1f\x37\x62\xbd\x83\x07\xbb\x49\x99\xe5\xe2\x8d\x51\x11\x62\xfc\x18\x9f\xb4\x50\x3c\xcc\x77\xa3\xcc\xf0\xfd\x88\xac\x7b\x4d\xd9\x60\xeb\xd3\x9b\x3f\xd2\xcd\xd3\x15\x9b\x59\xa2\xb5\x38\x78\x90\x13\xdb\xdb\xaa\x68\x7e\xbb\x75\x86\x89\xe0\xea\x8b\x87\xfc\x10\x7a\x43\x6a\x0b\x69\x4a\xa7\xa6\xa8\xe5\x97\xd0\xaf\xfe\xea\x3f\x54\x25\xd1\xb3\x04\xab\xe3\xe3\xc6\x2b\xa6\x86\xc1\x20\x8b\xdc\x24\x81\xc4\x0b\x6a\x20\xee\x4a\xa0\xa8\x0a\xc6\x51\xb1\xb6\x12\xc5\xb1\x9b\x11\x73\xb8\xe6\xea\x59\x88\x3e\x51\x0b\x79\xa5\x35\x59\xbc\x36\xe3\xa5\x83\xb8\x40\xe3\x84\x46\x54\xfd\xab\x65\x36\x27\x2e\x89\x55\xd3\x4b\x93\x1c\x0b\x7c\xf5\xed\x98\x9a\x49\x4b\x27\x93\x34\xb1\x49\xc1\x8a\x20\x78\x9f\x9f\xa2\xca\xc2\x27\x9a\x05\x36\x5a\x89\xe2\x88\x0a\xfa\xaf\x38\x40\xeb\x8d\xa9\x07\xb7\xde\x50\xec\xa1\x61\x3a\x1e\x9b\x64\xe0\xd0\xca\x68\x82\xcc\x50\xd2\xce\xc7\xeb\x1e\x2d\x49\xfd\x20\xe6\x33\xe7\x60\x14\xcf\x48\x22\x53\x05\x44\xb3\x26\x0b\x2d\x08\xae\x10\x3c\xde\x51\xda\x8d\x27\x6b\x6b\x5e\x99\xb2\x55\x6b\x97\x6d\x32\xc8\x3b\x1e\x9d\xfd\x89\xee\x32\x7f\xd2\x58\x5d\x47\x5e\xea\xae\x8e\x4c\x41\xfe\x18\x45\xcc\x4d\x2a\x6d\xf3\xb1\x8a\xd5\xd3\xb4\xd8\xe5\xa7\x1c\x1e\x87\x5d\x46\x32\x79\x81\x16\x14\x3c\xd9\x43\xf8\x01\x37\x10\xb7\xb8\x9f\xc3\xc1\xa3\x30\xa9\x62\x24\xaa\x1f\x84\xb3\x05\x8b\x07\xbe\xe9\x7e\xb0\xc7\x3b\xb4\x17\x60\x1d\x25\x7f\x54\x66\xf6\x93\xc6\xd6\xfa\xb5\xee\xc4\x66\xa1\x4d\x0a\x33\x04\xa2\x45\xa4\x40\x55\x99\xe8\x62\x0b\xf8\xe4\x70\x37\x4c\xcb\x24\x8c\x62\x7e\x2f\x4c\x94\x3b\x55\x44\x46\xb7\x15\xd7\xb1\x59\x49\xa3\xc1\x2e\xda\x09\xb0\x5a\x67\x15\x05\xc3\x69\x58\x1f\x49\x88\x28\x1d\x43\xde\x89\x1e\x08\xd7\xbc\x51\x39\x02\x54\xeb\x9d\xa9\x62\xe4\xbd\xae\x30\x7c\x1f\x37\x4c\xfb\xf3\xdd\xa5\x32\x2b\x46\x3c\xee\xed\xaa\xcf\xd5\x8f\x30\x8f\x13\x85\x47\xd2\x30\xd7\x24\x97\x5f\x84\xa2\xe0\xd1\x9e\x19\x45\xc5\xf2\xbe\xd2\x3e\xbd\x16\xa8\x29\x9f\xcf\xd5\x1c\x64\x66\x89\x4e\xcc\x0e\x14\x9b\xde\x79\x35\x3a\x71\xbe\x0d\x1a\xdb\x2f\xa3\x78\x10\xb9\x3d\xcb\xec\xda\xf8\x09\xa1\xda\xde\xab\x80\xaa\x45\x54\xc4\x78\x95\xb8\x8b\x0b\x28\x7f\xf2\x89\x5a\xf4\x51\x0e\x69\x64\x0a\xd3\x44\xc8\xbc\xe3\xc8\x00\x39\x4c\x93\x7f\x50\xe9\xfb\xe7\x8a\x70\x85\x08\xa9\x6d\x12\xba\x1e\x3c\xde\x22\x5a\x5e\x28\xa3\x62\x07\x0a\xab\xb2\x6f\x13\x9b\x7e\x3f\xb2\xb3\xbe\x84\xf2\x10\xcb\x80\xc9\x85\xd4\x9c\xd2\x43\x55\x5e\xbc\xdb\x48\xef\x0e\xbd\x74\xb8\x5b\xa4\x65\x95\x6e\x76\x7c\xbe\x7d\x54\x0d\xc1\x1d\x55\xaf\x60\x10\xe5\x93\xd8\xac\xd9\xc1\x8c\x26\xac\xbf\xa3\x10\xc3\x27\xe1\xc9\xa5\x5c\xe8\x5b\x2b\x61\x99\x15\x26\x72\x22\x06\x32\x60\x47\xdb\x8b\x4f\x14\x6c\x22\x33\x71\x1c\xd9\x9c\xe0\xc2\x68\x88\x5c\x83\x45\xe1\x13\x9d\x16\x71\x03\x48\xd0\x0d\xcf\x6e\xe5\xaf\x38\xdc\x3d\x78\xf0\xaf\xfb\xfd\x72\x2e\xa0\x01\x50\xb4\xbd\x3f\xa4\x00\x90\xb9\x34\xf0\xaa\xe1\xf4\xff\xe7\x40\x39\xd8\xf7\x02\x8f\xf4\xf8\x80\x28\xbd\xfc\x2c\xe9\xfc\x11\x99\x8d\xa4\xc6\x33\x12\xd6\xef\xa0\x34\x06\x3f\x72\x4a\x8b\x7a\xde\x00\xca\x86\xeb\xf1\xf4\x9a\x00\x72\xf8\x23\x58\x30\xb4\x5d\xff\xa9\x9e\x86\xba\x40\xa6\xd1\xed\x30\xc5\x24\xdc\x99\x9b\xe3\x22\xdd\x3a\xb6\x37\x12\xca\xfb\x34\xfc\x89\x4a\x20\xc2\x11\x35\x7a\xfd\x2a\x87\xe3\xef\x70\x91\x4f\xba\xc1\xaa\xf0\xb3\xa9\x66\x32\x98\x5a\x03\x5f\xfc\x88\x82\x6a\xa1\x71\x97\x90\x8e\x54\xc3\x22\x08\x59\x76\x1c\x5b\xc1\x67\xb4\x28\xf8\x58\x2d\xf9\x95\x6a\x8f\xc5\xe0\x1f\x9f\xf1\xca\x71\xe0\x27\x10\x41\x5f\xd5\xf4\x49\x4b\x50\x7b\xd6\x48\xf5\x6b\xdc\xfb\x7e\xfa\x62\x10\x71\x1a\x86\x4a\xe0\x63\xeb\x8a\xfc\xe2\xb1\x9e\xee\x58\xdb\xa5\xa5\x28\x8c\xac\xf0\x53\xe1\x4f\xce\xe2\xad\xf1\x49\x5b\x4e\x4f\xb1\x03\x81\x55\x51\xfd\xba\xa9\x24\x5f\x6f\xb6\xc4\x50\xaf\x76\x07\x25\xa8\x43\xf1\xd0\xae\x2b\xee\xee\x1f\xe0\x91\x4b\x70\xf5\xb4\x2f\xe6\xd8\x2c\x0f\x53\x87\x7b\xc2\xcb\x3e\x45\xef\x84\x8f\x55\xd5\x2b\x2b\x93\x74\x69\x49\x31\xac\x71\x99\x8a\x4f\x1a\x38\x8b\x43\x8b\x87\xba\x6b\x36\x8e\x85\xf4\xd3\xe1\x8b\xfd\x16\xfa\x71\xf0\xb8\x7b\xa2\xff\x25\xd5\x34\xb1\x3f\x81\x99\x40\x92\xf7\xbd\xe6\x00\x1c\xdc\xd6\x46\x0b\xdd\xd3\x7c\xd7\x24\xc5\x28\x33\x6f\x2a\xaa\x97\xf3\x8a\xea\xe5\x7c\x75\xf3\x7a\xcf\x2e\xee\xef\x3e\xff\x15\x8f\xf2\xfc\xef\x40\xe7\x24\xef\xa5\x5a\x83\x70\xad\xc7\xb0\xf3\x05\x50\x56\xdd\xd0\xe6\x0e\x4a\xd0\x70\x95\x0f\xd1\xb0\xe6\x8c\x90\x17\xbc\x00\xf8\x15\xcf\x45\xa1\xea\xa1\xe0\x2d\x40\x6f\xef\x1a\x1c\x1d\xac\xdc\x29\xac\x0e\xe1\xdd\x51\xe3\xe0\x67\x15\x43\x29\xd3\xee\xc0\x8e\x7f\x14\x78\x40\x1f\x93\x19\x69\x36\x68\xa1\x8d\x25\xb3\x03\x7b\x04\xaa\x6a\xe0\x82\x59\x6d\x4a\x66\x63\x7d\x88\x52\xbd\x3b\x2d\x41\x57\x7d\x97\xe4\xd0\x3e\x68\x98\x90\x1c\x5d\xf5\x30\x18\x3f\x49\xc6\x46\xb0\x94\x5f\x24\x7c\x92\x56\xbe\x5e\x3a\x60\x0e\xa4\xef\xb3\xd2\x6b\xba\xbb\xf8\x41\x0b\xfc\xf3\x50\x77\x92\x55\x5b\x9c\xa5\x81\x50\x61\xe1\x01\x43\x3e\x51\xed\xf1\x22\x8b\x26\xb1\x1d\xcc\xd2\xd3\xc4\xb5\xdd\xd1\xb3\x43\xdf\x56\x2e\xf5\xdb\x30\x8a\xfc\x57\xae\xda\x31\x89\x85\xea\x13\xe6\xf2\x46\xe0\xbb\x5d\x37\x5a\x53\x55\xd3\x4f\x4b\x64\x36\x78\x67\xb7\x95\x90\xe8\x06\x2d\x2f\xd8\xa1\x2f\xa1\x6e\x22\x14\x0e\x6d\xa9\x58\x5e\x30\x1f\x32\x8a\x2b\xd7\x95\x52\xd0\x03\x25\xc2\x7c\xb2\x85\x54\xfd\x50\x77\x64\x69\xaf\x57\x86\xd0\x4f\x90\x5e\xaa\xb1\x37\x3a\x4c\xfd\xc0\x16\x60\x2d\xa6\x87\xc3\x6c\x8c\x35\x95\xf9\xbd\x9a\x41\x70\xc5\x66\xcc\xc6\x81\x6d\xc9\x61\x0c\x96\x25\x36\x32\x1f\xeb\x98\xf3\x82\x6f\xb8\xd9\x89\xc9\x48\xef\x75\x07\x96\x82\xd3\x80\x5c\xdc\xef\xe1\x15\x9e\xb0\x4d\x4f\x6c\x5e\x56\xdd\xac\xf3\x78\xf1\x40\x96\xec\xee\x3d\xa5\xc4\x6a\xcb\x7e\x01\x0d\x24\x99\xd1\xed\x38\xce\xa5\x2a\x89\xf4\xea\x51\xbc\xda\x65\x14\xb0\xfa\x55\x3e\x6e\xd8\x9a\xd7\x5e\xeb\x66\x76\x6c\xc7\xfd\x2a\x5e\x75\xec\xe9\xb3\xaa\xd9\x7a\x5e\x21\xe8\x59\xd7\x4b\x92\x2d\xa7\xac\x45\xea\xa0\x1c\x30\xc2\x56\x9f\x56\xb5\xa1\xd3\x2a\x1e\xc2\xf4\x42\x54\xac\xed\xf0\xc8\xe9\x6d\xaa\xdb\x8a\x38\x1d\x29\x73\x07\xbd\x33\xb8\xe2\x4d\x7a\x90\x78\x5e\xd7\x69\xc9\xf1\x87\xeb\x34\xfd\x2b\x36\xee\x68\xba\x22\xfa\x3a\x41\xef\x3f\xdd\x94\x93\x78\x92\x82\x0b\xc6\x4a\xd1\x7e\x17\x7d\x3a\xa5\xaf\x74\x9d\x2b\xe4\x48\xa9\xde\x51\xe0\xca\xef\x4d\xfd\x3b\x60\xee\x1f\x05\xa4\x93\xbf\x3a\x89\x84\x59\x84\x2b\xab\x8b\xc7\x16\xf9\xc3\xa9\x02\xea\xa2\xfc\x23\x8c\xd9\x8a\xe7\xf7\x76\x03\x55\x2b\xb6\x67\x50\xa5\xcb\x25\x6d\x65\x67\x0a\xbc\x56\xe1\x1d\xdd\xc1\xf9\xf5\xdf\x84\x73\x74\x00\x67\x3d\xcc\xb6\xd5\xe7\xbd\x32\x7f\xa4\xbb\x6a\xa3\xe1\x88\xea\x94\xf3\xdc\x9f\x61\x3c\x81\xa4\x34\x5a\x14\xd8\x6f\xa5\x61\x56\xc5\x1f\xf9\x8c\xcf\xf1\xd1\x0e\x45\xb7\x84\xa7\x5a\x00\xa2\xba\x18\x28\x7e\xf7\x49\x34\x80\x32\x9b\xf0\xdc\xa8\x16\xf7\x15\xd5\x96\xda\xa1\x54\x1e\x2f\xbb\x18\xc0\x64\xc3\x14\xba\x5a\x0c\x69\x96\xd1\x29\x2d\x8a\xce\x44\xb9\xb8\x92\x9f\x2a\x60\xab\x1d\x94\x21\xeb\xbb\xcc\xcd\xb9\xd6\x69\xb5\x40\x05\xed\xb7\x57\x85\x57\xab\x71\x94\x0c\x49\x77\x52\x2b\xa7\xa2\x99\xc8\x58\x2e\x64\xf1\x40\xf0\x73\x54\x18\xf8\x54\xff\xc2\x54\x8d\x48\xfe\x09\x9e\x08\x1a\x09\x77\xd5\x45\x2d\xdb\xb5\xc4\xe6\x91\x49\x66\xd4\x3c\x1e\xd7\x3b\x61\x4f\xee\xd3\x83\x15\xf7\xea\x5d\x44\xdf\x16\xab\xd6\x26\x7b\x15\x89\xf4\xed\xa9\x82\xfa\x06\xbe\x9e\x7d\x1b\x61\x0c\x23\x5a\x11\x12\x73\xe8\x8b\xec\x01\x3b\xf8\x2e\x47\x02\xd8\x7e\x67\x60\x1a\xb1\x1b\x9e\xe8\x79\x4e\xe5\x3b\x0a\x1c\xcf\x6f\x1a\x91\xc6\x13\x28\xef\x8b\xb6\x74\xc7\x69\x9a\xde\x9a\xfa\xd8\xe3\x76\xe0\xd1\x01\x77\xb4\xd4\xc1\x9d\xb6\x71\xc1\xd0\x66\x76\x9c\x26\x68\xf6\xc1\x6a\xdd\x0d\xfc\x58\xc2\xdd\x36\xee\x2d\x53\x14\x42\x9f\x87\x42\x35\xd2\x09\x3e\xd6\xa9\x2a\xf4\x30\xcb\x8e\xea\x06\x9d\x57\x48\xe7\xf3\x6d\xf5\x99\x7c\x92\xa2\x3e\x23\xba\x69\x7e\x78\xe2\x74\xdb\xe0\xc9\xc0\x86\x71\x94\x60\x24\x06\xee\x13\xd5\x16\xac\xcf\x59\x18\x3f\xa1\x1b\xd8\xa7\x80\x2b\x55\x2e\x10\xeb\xea\xc9\x31\xd5\xed\x38\xe6\x27\x8f\x26\x51\x15\xe9\x52\xba\x0d\x20\xdd\xce\x9e\x2f\x2e\x5e\x51\xf6\x94\x75\xc5\xe5\xc4\x0f\x14\x69\x91\xbb\x9d\x8a\xb6\x96\x67\xbf\xf8\x64\xea\x75\xf9\xfe\xb5\x52\x5b\x02\xa4\x9c\xf9\x16\x68\x37\xf1\xdf\xe8\x7e\xc2\x79\xd7\x09\xed\x97\x79\x1e\xd9\x4c\xd0\x75\xac\x17\x89\x55\x24\xe2\x91\x4f\x2a\x72\xf9\x84\x85\xe3\x44\x9e\x54\x4d\x39\xdc\x53\x1a\x68\x67\x1b\x8f\xfe\x79\xd2\x7e\xce\xd2\x81\x9d\x51\xc4\x9e\x67\xb1\x13\xd0\xa7\x40\x4b\x0e\x3e\xf3\xb8\x2a\xf7\xd9\xbc\x30\x85\xdd\xe3\xc5\xf1\x8e\x93\x27\x42\xc1\xe8\x27\xb5\x42\x2a\x99\x47\x24\x81\x1b\x53\xc5\x46\x7f\x41\x31\x2a\xee\x24\xda\x6f\x26\x4c\x57\xba\x08\xc7\x34\x0e\x71\x16\x7b\x47\x50\xb2\x0a\x45\xfd\xb1\x1a\x83\xb3\xc9\x30\x4a\xaa\xf4\xdf\x75\xb1\xff\x31\x5e\xaa\x83\x64\xba\x56\xf7\x3f\x46\x8c\x2e\xe4\xa6\x5b\x57\xf2\xa1\x97\x0e\x77\xe3\x74\x75\xc6\xd7\x46\xaf\xe2\x9b\xa4\xfc\x5f\x7d\x93\x20\x3a\x74\xd3\x29\x2f\x93\x9d\x30\x13\xa8\xbd\xec\x00\xc3\x39\x7c\xeb\x9f\x05\x7e\x3e\x8b\xe9\xb6\x5d\x7a\xef\xf1\x49\x37\xb0\xed\x15\x75\xb6\xc8\x63\xed\x58\xf7\x49\x6b\x6c\x0d\x48\x55\xd0\xcb\x3d\x8f\xc5\xc8\x27\x6a\xa7\x14\x59\x19\x2e\x3b\xf6\x65\x04\xe0\xdf\x51\x63\xc8\xdf\xa9\x51\xa9\x26\x51\x3e\x4b\x0f\xc6\x95\x65\x3c\x5f\xf9\x49\x85\xb1\xfa\x61\xa0\x14\xe4\x9a\x70\x94\x85\x85\xee\x38\x8a\xad\x94\x37\x45\x15\x42\xcd\xf8\x10\xb5\xa8\xa0\x2e\xd3\x32\x0b\x01\x33\x9f\xf7\xfa\x3f\x5e\x23\x99\x5b\xc0\x5a\xec\x0a\xff\xb0\xa1\xab\x2d\xe0\xcd\xe2\x07\xdd\x08\xf1\xa8\x43\x69\xe2\xd4\xc9\xc8\x3b\x89\x25\x47\xe1\x74\x45\xb1\x74\x56\xb6\x2f\xc9\xa3\xa5\x35\x91\x07\x71\x5a\x7b\xae\x92\x31\xb3\xee\xab\x6a\x61\x66\x0d\x54\x68\xa5\xe5\xef\x31\xef\x67\xd5\x9d\xbe\x6e\x42\x9a\x00\xd2\x58\x03\x2e\x7d\xf1\x49\x1b\x7f\x4e\x98\x96\x13\xa4\xdd\x4e\x1e\x4c\x29\x14\x6c\xcd\x2f\x9e\x27\xee\x1b\x28\x4a\x4a\xf1\xea\xb1\x9e\x5f\xaf\x67\xb5\x52\xc7\x86\x1a\x6f\x8d\xd3\x64\x58\x44\x63\xd8\x62\xd7\x8c\xf3\x02\xfa\xb8\x4e\xec\x86\x5b\x6d\xf4\x42\xab\x36\x5e\x32\x2c\xe3\xc4\x08\x2b\x62\x14\x11\xb4\xd5\x3e\x57\xab\x98\x64\x55\xa2\xc0\x69\x49\x95\x7b\x1f\x3c\xb8\xb9\xa3\xd7\xc0\x0d\xbf\x74\xb8\xbb\x12\x0d\x53\x1e\xb5\xc2\x2f\xe3\xe6\xf9\x58\x91\x44\x99\x95\x48\x55\x87\x24\xfb\x55\x44\x94\x17\x1b\x0e\xf4\xd7\xba\x99\x2d\x4c\xe4\xe7\xed\x85\x3f\xa3\xe3\x08\x37\x6b\x82\x67\x69\x56\xa4\xc2\xd9\x8a\xb4\x96\xb9\xb0\xf8\xc4\xe5\x96\x7d\x93\x4b\x19\x46\xd4\x8f\xe8\x0e\x44\x27\xad\x99\xfe\xce\x33\xbb\x1e\xb3\x1e\x61\x1b\xb3\x47\xc2\x3e\xdd\x4e\x21\x86\xfb\x07\xcf\x03\x71\x4e\xbd\xc2\x25\x9b\x0d\x4b\xca\x0c\x0f\x1e\x3c\xec\x8c\x81\xb6\x12\xcd\x76\x27\xfc\xfc\x24\xdb\xca\xe6\xf1\xb1\x2a\x3a\x7d\xac\x07\x8d\xd2\x64\x60\x80\xb8\x72\x1d\xbe\xea\xe1\x09\x0b\x42\x75\x99\x62\x56\x7d\x71\xee\x8c\x6a\xf0\xf5\xa3\xc1\x9e\x8e\xd3\x7a\x3b\xa7\x7b\x82\x18\xf2\x92\xac\x91\x9e\x20\xc2\xff\x73\x9a\x6b\xe8\x3e\x6d\x75\x0e\x9e\x02\x5f\xf4\x66\x5a\x46\x18\x8a\xc7\x7b\x0a\x38\x72\x5b\x69\x67\x31\x9b\x19\xfc\xf6\x4e\x25\x92\xb9\xf0\xe2\x61\x26\x0e\x43\x30\xb4\xa1\xc1\x44\xe0\x21\x14\xd2\x70\xba\x18\xfe\xab\x26\xde\xfd\xa5\xc3\xdd\xd0\x44\x19\xb4\x9a\x50\x42\xdf\x08\xd4\xdc\xd6\x86\x7a\x9c\xaf\x9b\x89\x49\x9e\xa5\xf7\xc5\x03\xfc\xe4\x76\x29\x81\xb2\x7b\xd7\xfd\xe3\x38\x1b\x68\xb6\xe0\x93\xf4\x56\xb1\x33\x67\xa1\x43\x85\x65\xfe\xaf\xf5\x58\xc4\xcf\x11\x89\x03\xef\x34\x43\xb4\xe7\xc8\x02\xfe\x0c\xf5\x26\xa9\x51\x50\x35\x53\xc0\x33\x74\xa1\x4c\xb6\x44\x6f\x13\xc1\xc5\x7d\x78\x18\x54\xd2\x1f\x62\x69\x22\x45\xbd\xa1\x05\x83\xee\x05\x1e\x5b\xf2\x29\x55\x1f\x51\x31\xf8\xb7\xb4\x18\x60\xb7\xff\x7c\xaa\x38\xc7\x7f\xa8\x32\xd2\x32\x21\x38\xb5\x60\x92\x25\x26\xf5\x33\x35\x5f\x26\x43\x86\xfb\x61\x30\x37\x2c\xfe\x8e\xf5\xad\x9b\x6a\x6e\xae\x3b\xb0\x4b\xd6\xcb\xc0\x0b\x4f\xb0\x12\x68\xb9\xac\x48\xa7\xe2\x74\x62\xdf\xea\x50\xe5\x4f\x06\x24\xd4\xf7\x5f\x6c\x91\x5f\xef\xae\x66\x66\xe2\x00\x16\x58\xcd\x3c\xe0\xc6\x27\xca\xf4\x4f\x4c\xb5\xcf\x06\x84\x9d\x47\x24\xc7\xea\x47\xe8\xea\x5e\x44\xcd\x51\x57\xb5\xdd\x44\xef\xdc\xbc\xab\x70\xfb\xc5\x9a\x58\x83\x4a\x8d\xf3\x7e\x6e\x58\x09\x64\x86\x5c\x97\x5c\x57\x56\xfb\x67\x2d\xde\xe5\x50\x77\x60\xd6\x6a\xb3\xec\x60\x29\x43\xa0\xc3\xce\x09\x38\x94\x9b\x2e\x4c\x9d\xd8\x6c\x62\x8b\xd2\x00\x2e\x24\x7d\xb4\x8e\x63\xdb\x7f\xa0\xf8\x2b\xae\xb8\xc1\x51\xfb\x26\x39\xd5\x15\x78\x08\x44\x7f\xb7\xa6\x1e\xa2\x79\x4b\x01\xaa\xfa\x65\x36\xb4\x19\x64\xb8\xf1\xaf\x77\x74\xb1\x08\xe5\x56\x51\xd6\x69\xc2\x91\x16\x5d\x7b\x41\x5e\x0f\x3f\x66\xdd\x49\x6f\x6b\xb1\x1e\xea\x16\x36\xb6\x55\xb4\x3f\xa3\xf4\x5d\x2e\x2b\x6e\xa4\xdb\xd8\x20\xd8\x07\xc7\x1d\xf6\x12\x52\x87\x36\xcb\x47\xd1\x04\xd8\x7b\x04\xc7\xa0\x7c\xe1\xe3\xc0\x47\xd1\x45\x99\x0d\x23\xb4\x1d\x44\x16\x52\x71\x16\x5f\x68\xb8\xf5\xb9\xb9\x6e\x5c\x26\xe1\x88\x9e\x5d\x1b\x09\xa2\x8e\x42\x4d\x54\x50\x10\xcc\x5b\x9a\xe2\x73\x27\x84\xf4\x8a\x6b\x05\x5d\x0c\x54\x7d\x46\x63\x6a\xc7\x51\xb2\x5d\x95\x09\xee\x05\x9a\x0d\x92\x59\x3a\xe1\x7d\x80\x41\x17\xa6\x69\x5f\x64\xfb\x83\xda\x54\x4d\xff\x75\x1b\x16\x2a\x2e\xd8\x0c\x7c\x2d\x63\xb3\xd9\x5c\x5c\x3c\xd4\x5d\x8e\x92\xa5\x34\x5e\xee\x28\xc0\x23\x67\x37\xa2\x61\xe9\xd3\xa0\xa1\x35\xd9\x0e\xba\x5c\xb7\x80\x9d\x86\x30\x26\xa5\x50\xa3\xb8\x1d\xa8\x6c\xf2\xed\x1a\xca\x97\xbe\x59\x06\x7f\x95\x8e\x6d\x91\x66\x36\xff\x92\x47\xb2\x3f\xc4\xfa\xc1\xfd\x6e\x5b\x57\x0c\xe2\xa8\xdf\xa1\x7b\xb6\x9b\xcc\x36\xea\x3b\x3c\x0b\x2f\x1d\xfe\xea\x4d\xa0\xc8\x77\x12\x26\xd8\x35\xeb\x1c\x66\x83\xa1\xd5\x58\xf5\xbb\xf5\xbc\xef\x59\xb2\xad\xf0\x68\x0f\xa9\x68\x20\x12\xd1\x95\x99\xc6\xdf\x9c\x54\x8c\x57\x28\x43\xed\xa2\x37\xee\x94\xa5\x0e\x38\x95\x29\x5c\x00\x6c\xc6\x8f\x02\x45\x50\xcd\x53\xd8\x8c\xfa\xe6\xf2\x91\xc3\x80\xbb\xe9\xc3\x07\x8a\xf1\xea\x82\x5a\x3d\xff\x20\x2f\x66\x14\xdf\xdc\x15\xc5\x4e\x03\xff\x8e\xd8\xf3\xfe\x54\xa3\x4d\xd2\x72\x38\x7a\x9c\xf6\x8d\x88\xec\xa8\xa9\x25\x30\x65\xc1\xe1\x1f\x45\x58\x20\x4c\x3e\xe4\x87\xf0\x1a\xef\xa8\x12\xfe\x97\xc8\x40\xe0\x13\x0f\xc8\xf9\xe3\xa6\xb7\x21\x1f\x73\xb3\xda\x8e\x0e\xfe\xb1\xf5\xad\xb5\xf6\xc5\xfd\xdd\xbc\x14\xb1\x6f\x04\x88\xb8\xa1\x6f\x05\x1e\x0e\xf5\xad\x1a\x1a\x39\x36\xfd\x4e\x43\xd6\x40\x28\xcc\x5a\x06\x59\x96\xa2\x6c\x5c\x59\xb9\xea\x1e\x90\xe2\xdd\x51\xe5\xf1\xe3\x0a\xab\xdb\x14\x3d\xae\x82\xc6\xd7\xd3\x88\xd5\x70\xa5\x5e\xe5\x2b\xbd\x27\xa6\x7b\x7c\xe1\x33\xdf\x59\xad\xaf\x1a\x6d\x3e\x16\xdb\x0e\x1a\xad\x70\xb4\xfd\x8e\x95\xe6\x0a\x75\x89\x11\x05\x80\x87\xdb\x51\xf9\xc9\x4c\xcc\xea\x5f\x53\x85\xf9\xcc\x16\x65\x96\x3c\x3e\xe3\x15\xad\x20\x56\xa5\x69\xc5\x9d\xbe\xac\x9f\x64\x78\x6f\xea\xe5\x14\xef\xa8\x61\x2f\xf0\xb1\x33\x51\xcf\x54\x09\xc7\xf3\x28\x93\x40\xfe\xe8\x61\x63\x6b\x5e\x6b\x08\x84\x2f\x2c\x74\x87\x29\x9c\xa4\x00\xbb\xaa\x5f\xc3\x8b\xfb\x1f\x10\x07\x60\xc3\xf2\xb6\x16\x7d\x41\xdf\x0d\xcb\x8b\xb5\xd8\x6e\x57\xa3\x28\xd0\xe4\x75\x31\xd8\x01\x81\x9f\x9c\xd4\x09\xeb\x6d\x3d\xe5\xfe\xf3\x36\xb9\xc2\x28\x09\xeb\x9a\x45\x9b\x5a\x4f\xaf\x69\x12\xe7\x8f\x74\x07\x51\xb2\x1c\x09\x27\x88\xc3\x46\x57\x3e\x4a\x86\xc6\x9e\xf1\x63\x4f\x69\x36\x88\x12\x53\x30\xe1\x31\xc2\xbc\x9f\xe2\x39\x62\x1f\xc0\xef\xca\x54\x3b\x5d\x3b\xd3\xd0\x36\xb2\x93\xc5\xfd\xc2\xad\x2e\xbe\x54\x24\x1b\x3a\x4a\x40\x72\x9f\x9b\x41\x30\x49\x68\xe3\x38\xcd\x66\x14\x49\xd7\x45\xd8\x34\x67\xec\x16\x16\x36\x1f\xb8\xc2\xf7\xaa\x89\x9d\x9a\x24\x0c\xd0\x03\x5c\x2a\x9f\xa8\x1c\xac\x9f\xe6\x45\x9a\x00\xd3\xe4\x2c\x9a\x43\x64\x7f\x1e\x28\xde\xb9\x07\x53\xc5\x4e\xf7\x40\x29\xde\xb0\xd8\x8b\x78\x76\x3d\x3b\x12\x28\x3e\xb7\x66\x66\x3d\x7f\xa4\x72\x08\xe1\x72\xc7\xbb\xbc\xbf\x98\xaa\xd7\xf6\x17\x8d\x2d\xfe\xf2\xfe\x57\x41\xdf\xa3\xe7\x4b\x6e\x2a\xe7\x77\xb3\xf1\xa6\x8f\xbc\xc4\x93\x71\x2c\x9b\x88\x97\x7b\x17\x37\x03\x2f\x02\xe1\x15\x69\x2b\x79\x3f\x6b\x06\x2b\x51\xce\x2c\x4b\xce\x9a\xb8\x7a\xda\xa9\xa9\xea\xe5\x5d\x54\x35\xf6\x30\x4d\x96\xb2\x34\x29\xf2\x0e\x86\xc6\x79\xbe\x99\x78\x3a\xdd\xb0\x73\x2b\xf0\xb2\x6f\xe2\x38\x45\x1f\x52\x31\x88\x2f\x2c\x28\x86\x42\xfc\x75\x5a\x16\x49\x39\xee\xdb\x0c\x65\x89\x79\xbe\x3c\x96\xd2\xd2\xa2\x87\x62\x7d\xf6\xea\xc9\x8d\x28\x31\x18\x53\x11\x89\xed\xea\x2f\xa5\x45\xd5\x32\xa0\x3c\xb0\xb1\x59\xe3\x12\x2a\xee\xf7\xfb\xca\x6d\x7d\xdf\x35\x4c\x06\x51\x4e\xca\xb2\xa2\xed\x4f\x8b\xe8\xe6\x3e\x15\x3e\xdf\xc7\x43\x43\x22\xb2\x63\xfd\x8b\xb0\x69\xf6\x4d\x13\x16\x31\x74\xa9\x84\x27\xd6\x53\xc7\x5d\x08\x5a\xc0\x45\xcf\x3d\x37\x5b\x93\x7a\x50\xa2\x1b\x20\x32\x74\xcd\xc6\xca\x7b\xc3\x4c\xdd\x56\xf5\x8e\x81\x5d\x8a\xc0\x88\xe5\x69\xe9\xd4\xc8\x5d\x53\xe8\x7e\xfe\x48\xd7\x64\x59\x3a\x34\xec\x31\x50\x56\x40\x27\x89\x8f\x1b\x2e\x50\xee\x8f\x64\x38\xe8\x0d\x20\x1b\xfa\xbd\x40\xa5\x46\xbf\xa7\xd4\xf1\xed\x8a\x89\x4b\x57\x87\x79\x91\x31\x2e\xdf\xa7\x45\xc1\xc7\x8a\x3c\x61\x35\x4a\x72\x82\x69\x6a\xa8\xaf\x13\xea\x3b\x78\xd0\x0b\xea\x1f\x10\x67\x40\xfe\xfb\x55\x69\xaa\x69\xab\x72\x45\x73\xd5\x9d\x57\x73\xac\xbe\x45\x9b\x8f\xd2\x4c\x36\xe3\xe6\x3b\xd5\x7a\xdb\x7c\xa7\xad\xad\x92\xd9\xd8\xae\x98\xa4\x80\x05\x63\x9a\x58\x25\x91\xd0\xe9\xf9\x66\xd7\xb6\xf5\xad\x0b\xf0\x95\xf9\x23\x55\xf8\x2a\x2c\x3c\x35\x49\x42\xb9\xb9\xad\xdb\xe9\xc0\x42\x37\x4a\xf2\x28\xf7\xa2\x71\x08\x5f\x8f\x2a\x31\x8f\xa3\x6d\x10\xed\xbe\x8d\xdf\xea\xdb\x6c\x28\xd8\x0b\x8c\x85\xa3\xde\x57\xa3\x10\x61\x15\x68\x55\x2c\x9a\x54\xe9\x84\xa0\xaf\xa4\x2b\x46\xbf\x2d\x76\xd2\x27\xe6\x79\x1a\x0b\xd3\xbe\x93\x24\xd9\xc4\x9a\xe5\x13\x47\xa9\x36\x29\x33\xcb\x68\x27\xb4\xd7\xd0\x01\xe4\xe3\xb6\xed\x9a\x4f\xd2\x65\xcb\x1d\x3e\x37\xa0\x5f\xed\x0d\x64\xad\x08\x89\x64\x7c\x7d\x6b\x06\xfb\xdc\x73\xdd\x62\x64\x8a\x19\x1f\xd7\x7e\xa4\x64\xf3\x37\xb1\x7d\x80\x38\xea\xf4\x7e\x49\x81\xf6\x4d\x36\x36\xa1\x2d\x8b\x28\x34\x71\xbe\xa3\xe3\x04\xf0\xee\x04\x35\xf6\x08\xc5\x14\x20\x43\x7e\x3c\xd4\xae\x0a\x4f\x0c\x2d\xe3\xc9\xd7\x56\xe4\x2e\x02\x24\xf1\x04\x52\x5e\xa1\x8f\x09\xb1\x75\x9b\xe2\x5d\x66\x43\x4b\x19\xb3\x0b\xfc\xcf\xe9\x81\xa8\x26\x87\xcc\xdc\x5c\x77\x29\x4a\x06\x8a\x73\xe7\x5a\xa0\x06\x15\xaf\x4d\x7d\x0b\x61\x29\x36\x43\xe0\x47\xf1\x70\xf5\xc4\x1d\xc6\x71\x10\xb9\x9e\x6d\x81\xa8\xbd\xd8\x4d\x13\x3b\x43\x2e\x02\x6b\xfa\x03\xfa\x30\x9a\x5b\x8f\x51\xfe\x83\xbe\xe5\x83\xc0\xeb\x74\xf0\xc0\x7f\x9a\x31\x7e\xd9\xcd\x41\x54\x61\xbf\x00\xc4\xdb\xf8\x47\x63\x07\xaf\x75\xb1\xe5\xc1\x83\x0e\x7f\xb9\xc5\xba\xce\x1f\xa9\xbc\xd3\x93\x14\x1a\x01\x48\x70\x1a\xf5\x52\x18\x51\x9e\xcd\x43\xd8\x06\xe0\x94\x44\x5d\xaa\x13\xc6\xbb\x86\xf5\x55\x03\x8f\xee\x39\x4f\x39\x83\xa8\xd4\x77\x9c\xf6\xd3\x55\xb2\x71\x2a\x77\x11\xa4\xe1\x75\x44\xac\xa8\x6f\x32\x22\x02\x91\x70\x13\xfa\x37\x7f\xa4\x5b\xa4\x71\xac\x07\x05\x3e\x57\xfc\xbf\x4d\xf1\xb1\xb9\x39\xd0\x1a\x9b\xc2\xc2\x58\x21\xd9\xd8\xa6\x5c\x98\x6e\x71\xdc\x68\xcc\x9f\x1e\x79\xa9\xdb\x37\x59\x67\x2b\x16\x89\x8f\xdd\x2c\xd1\x98\xe4\x3e\xad\x28\x8f\x21\x60\xbf\x8e\x9d\x02\x9b\xf8\x30\xf0\x49\x02\x57\xce\x90\x75\x7b\x01\xaf\x74\x62\x13\x3b\xd8\xa9\xa8\x9a\xf9\x5d\xb8\x5e\x8c\x9b\xfc\x65\x94\x05\x4c\xec\x99\x69\x8d\x86\xd5\xd5\x3d\x2f\xe8\xbe\xfd\x8c\x1b\xac\xce\xcd\x92\x1d\x96\x26\xc3\x1e\x90\xa9\xd7\x8e\x1a\x87\x6d\x6a\x76\xbe\xd8\x5d\xca\xec\x1b\xa5\x4d\xc2\x35\x3c\x7c\xd8\x51\xd4\x7d\xf8\x38\xf8\xb2\x33\x87\xe9\x8a\xcd\x42\x33\x31\x61\x54\xac\x81\x88\x95\x09\x88\xa6\x7e\x26\x16\xec\x52\xa8\xce\x7c\x5a\x53\x62\xaf\x69\xea\x44\xe3\x32\x26\x16\x24\xe8\x77\x39\x5f\xe6\x81\xbc\x57\x1a\xf4\xdf\xc4\xbf\x0d\x05\x1b\x19\x0c\xed\x38\x56\xbc\xef\xe3\xa9\xc8\xd8\x5f\xf5\x0c\xd0\x2a\xe2\x79\x3e\x69\x32\xfa\x29\x92\x38\xea\xdb\x8c\x34\xe0\xaa\x6f\x41\x49\x01\xb6\x80\x8f\x95\xd3\xe8\x9b\x2c\x8b\x1c\xcc\x09\xf1\xca\x79\x5d\x65\x3e\x3f\x15\xe6\xe5\x28\x59\x49\xe3\x32\x29\x4c\x16\xb1\x3f\x70\x84\x50\x8a\x63\x70\xeb\xbb\xa8\x7c\x5a\x19\xc7\x83\xf4\xad\xea\x57\x5a\xea\x4e\x22\xd8\xda\x9c\xf6\x3a\x8c\x11\x46\x71\x69\x6e\x06\xbe\x7a\x3f\x32\x03\xef\x1b\xa3\x6f\x94\xd6\xe4\x51\xcc\xc2\xec\x32\xc6\x5d\x3d\x2e\x14\x6e\x58\xc1\x18\x7e\x53\xeb\x9c\x4c\xd2\xc2\x14\xa9\x45\x44\xca\xc2\x6f\x35\x11\x38\xd9\x34\x6b\x69\x99\x0c\xad\x54\x12\xa5\xc6\xe9\xeb\x12\xe7\x55\x09\xea\x84\x63\xb6\x19\xa4\x49\x62\x3a\x2a\xe5\xbc\xa0\xc8\xe5\x2f\xa8\x9a\xc9\x24\x4d\xa2\x2a\x49\x38\xb0\xe0\x70\x95\x95\x69\x42\xec\xbd\x41\xdb\x51\x6c\xd9\x56\x3b\xb3\xb8\xbf\x1b\x47\x4b\x05\xac\xb0\xd8\x38\xc5\xe4\x72\x66\xfa\xb8\xd4\x6c\x27\xe9\xac\xaa\x68\xc0\x2d\xe0\x99\xbc\x4f\xe1\x9a\x04\xef\xaa\x3d\xf3\xa8\x91\x07\x55\x21\x51\x18\xa7\x25\x27\x79\xe2\x31\x94\x64\xf3\x07\x6d\x62\xcc\xf9\x28\x9a\xd0\x24\x86\xa8\xdb\xc9\x74\xb3\xef\xab\x9c\x0d\xfc\x1b\xed\x9b\xdc\x56\x29\xc9\x2e\xac\x1a\xc6\x57\x4d\x7d\x78\xb3\xa9\x15\x38\x2f\x4e\xd5\xb5\x5c\x02\xd0\x07\x15\xc0\x4b\x14\x7f\xc3\x7a\xb3\x53\x50\x13\x50\x0e\xf5\x18\x3c\xa3\x47\xab\x26\x26\x8b\xf2\x34\x99\xf1\x6b\x7b\xaa\x26\xe5\x6a\xb3\x76\x57\x14\x4c\x69\x60\x4d\xec\x70\xea\x02\x91\xa7\xcd\x2f\xf3\xe2\x9a\x66\x2a\x9a\xac\x99\x6c\x50\xc3\x3f\xd2\xb5\x0a\x16\xd2\xff\xad\x7d\x33\xb4\x76\xe0\xb8\x1d\x19\x57\xa8\x58\xfc\x40\xd6\x23\xa3\xe4\xbe\x98\xba\x3a\x32\xc5\xd3\x8a\x3f\x87\x27\x52\xf8\xc9\x04\x4a\xe8\xea\x26\x0c\x0d\xbc\x30\xcb\x79\xa2\x48\x33\x83\xc2\x28\x4f\x0c\xd0\x9e\x02\x9a\x61\x8f\x42\x49\xef\x5a\xef\xcc\xcd\x79\x71\x95\x43\x2f\x1d\xe6\x7f\xf8\x84\x6e\x49\xaa\x11\xd5\x92\x46\x52\xf8\x48\x29\x94\xcc\xac\x13\xb6\xdb\xd1\xb0\x57\x6f\x12\x09\xf1\x39\x5a\xf8\x72\xbf\x4a\x9e\x1a\x34\xb5\x48\x59\x3a\x0d\xde\x95\x2a\xd6\xaa\x6e\x7d\x96\x6e\x5d\x74\x17\x3c\xe5\xea\xc7\x53\xbf\xcf\x8e\xd3\x64\x85\x10\x20\x79\xf8\x49\x1e\x15\x48\x25\xbf\xfe\x0a\x27\x0d\xbf\x20\x2e\x0c\x98\x5f\x30\x5e\xe1\x16\x9b\xe2\x3a\xaf\xbd\xd6\x2d\x93\x91\x99\x4c\xc4\x56\x8a\xd2\x98\xea\xc6\x35\x83\xe7\x6a\x5f\x8d\xad\x81\xcc\xcd\xab\x6e\xc4\x9f\xde\x8b\xb0\x24\x37\x29\x13\x17\xba\x61\x99\x17\xe9\x58\xe1\xea\x8f\x06\xba\xe3\xd4\x42\x0a\x1d\x8e\xcc\xa4\xb0\xd9\x76\x8f\x07\xb8\xa2\x40\x24\x33\x3d\x25\x1d\x7e\x59\xb9\xeb\xb3\x1a\x8a\xf9\x5d\xa5\x58\x90\xd9\x49\x46\x0d\xb1\x19\x25\xce\x77\x42\xe9\x2c\x3d\xa6\xf4\xd1\xee\x34\x8c\xc3\x2b\x8b\xfb\xbb\xe9\xd2\xd2\xa4\x2c\x8a\x2d\x6c\xf9\xf7\xa6\x3a\x71\x6c\x33\x7c\x36\x81\x2a\xa7\x60\xa6\x3a\x8a\xc6\x57\x31\x7f\x6f\x04\x1e\x53\x6b\x86\x36\x19\x18\xb4\x75\xf0\x66\xc1\xf6\xc0\xc7\x6a\x96\x64\xd5\xc8\xe5\x60\xaf\x7f\x12\x78\xe4\xc5\x27\xaa\xe8\xc2\xc2\x71\x55\x3e\x50\x7d\x29\x32\xd5\x6b\x5a\x8f\x83\x22\x75\x9f\x7e\xa5\x1d\xcd\x85\xd2\x51\x24\x45\xfb\x54\x96\xb6\x54\x54\x21\x16\x2d\xa0\x76\xf6\x34\x07\x66\x88\xde\xec\xd4\x5b\xc0\xd5\x6b\x10\x4a\xdf\x96\x5e\x67\xce\xdc\xe7\x0d\x2d\x21\x3e\xf6\xe0\x87\x2a\x4d\xdc\x41\x3b\x12\xd6\xe0\x57\x7a\xbe\x4d\x05\x65\x0b\xda\x52\x2f\xff\x5d\x94\xe2\x69\x43\xdc\xf8\xda\xba\x8f\x66\xf6\x82\x25\x42\xa8\x50\x1d\xb8\x3c\x2a\x4a\x2d\xe3\xa0\x3a\xd9\x12\x51\xff\x59\x5b\x44\x3d\x28\xe3\x58\x75\x1c\x8f\xa9\x8e\xe3\xb1\xc6\x02\xa9\xfe\xde\xe6\xcb\xaa\xcb\x76\x4c\x75\xd9\x8e\x29\xe2\xf0\x32\x17\xe6\x60\xb8\xc3\x6d\x3d\x45\x88\x77\x73\xea\xe1\xbe\x8a\xf0\xcc\xd0\x98\x8e\x0b\x9f\xf0\x7c\x8e\xe3\x0e\xf8\x44\xeb\x53\x86\x59\xd4\xef\xc7\xfc\x3e\x9d\x34\x89\x97\x29\x69\x6c\xd4\x97\xf7\x77\x07\x36\x8c\xb6\x08\x45\x31\x89\x0f\x9f\xd4\xf0\x5e\x26\x1b\x43\xd1\x43\x28\xe4\x14\x23\x03\x48\xea\x59\xcc\x3c\xf0\xfd\xd6\x6f\xba\x50\xa5\x1f\xa7\xab\xc9\x0e\x6d\x6d\xa6\xaa\x23\xf6\x04\xe2\x4d\xd6\xc1\x22\xfb\x29\xc5\x62\x45\x68\x05\xd1\x32\x19\x24\x68\x21\xee\x0f\x63\xbb\x62\x33\x94\xf1\x31\x3f\x77\x5b\xd1\x79\x02\x16\xc3\x73\x33\xb8\x4f\x99\x1d\xf1\x55\xfc\x38\x4d\x97\x41\xea\x87\x05\x76\xce\xeb\x6a\x2e\x9d\xa0\xa0\x89\x8f\xe9\xe1\xf2\xdf\xe8\xed\x5f\x0e\xa2\x02\xd1\x31\xfc\xc7\xb1\xc0\xd7\xc2\x8e\xa9\xe8\x38\x1f\x45\x4b\x10\xda\xf7\x08\x93\x8b\x8a\x5b\x12\x75\x19\xac\xd5\xeb\x2a\x94\x5b\x35\xc5\x48\x2a\x20\xe8\xde\x30\x38\x00\xf9\xe4\xf1\xa9\xe2\x1a\x3c\xab\x78\x5f\xc2\x51\x64\x97\x1e\x47\xb8\x83\x47\xf8\xe1\xd4\xa3\x5b\x81\x11\x11\xef\x47\x1e\x96\x79\xbe\x14\xc6\x9f\x01\x0b\x42\x84\x32\xe3\x45\x81\xbf\x15\x68\x7a\x18\xba\x36\x09\x42\x95\x7e\x8f\x86\x85\xaf\x44\x59\x21\x04\xd7\x2e\x3c\xf1\xe3\x19\x0d\xf0\x11\x15\x91\xe1\x8b\x88\x1f\xdd\x69\x33\x22\xcc\xe4\xe3\x1a\xa9\x47\x9a\x65\x58\xda\x92\x1d\xab\xab\xff\xbc\xc5\xd7\x91\x64\x5d\x2c\x68\x2c\x95\x8d\xc9\x84\xd4\xa7\x6d\xdc\x2c\x23\x93\x0c\x96\xca\x58\x69\x77\xec\x22\x23\xc6\xc7\xeb\x6a\x20\xc5\xae\x44\x42\xcd\xa2\x41\xaf\xd2\x70\xf2\xc5\x4e\x54\xc5\xbc\x20\x89\x9a\xf3\x69\x96\xd7\x17\x16\xba\x13\xa2\x5c\x0a\x65\x2b\xe3\xa7\xaf\xea\x3a\xf1\x55\x55\xcb\x19\x64\xe5\x70\x8f\x22\xf2\x65\x98\x0b\x92\x81\x7f\x42\x7e\xd5\xe9\xe8\x7b\x26\x5b\x8c\x1e\x23\x6a\xc7\x6a\x71\x04\x84\x2a\xb4\xf7\xc5\x8f\x33\x9a\x0e\xf1\x47\xe4\x02\xb1\xd7\xff\xfb\xa9\x8a\xe5\x2f\x29\xcf\x15\x17\x83\x17\x70\x03\xa8\xc1\xbd\x83\x3f\xe4\x93\xc0\xf3\xca\x0d\x59\x25\x0e\xb7\xf6\x5d\x8a\xfb\x1c\x6b\xeb\xe2\x7e\xb7\x2b\x3d\x3e\xdd\x16\xa3\xb5\xd8\x26\x56\x49\xd2\xff\x07\xdc\x35\x9f\xf8\x3a\xbf\x5d\x31\xc4\x04\x22\xe1\x30\xc3\x93\xa6\x1e\x36\x0f\xa5\x64\x54\x2c\x76\xab\x99\x4f\xfb\x66\x91\x99\x41\xe4\x2b\xda\x4c\xbe\x18\x74\x14\x11\xa3\x07\x11\x2d\xa5\xc3\x21\xc6\x3e\x10\xf2\x20\xdd\xc3\xd7\x7e\x42\xa4\xba\x92\xe0\xb7\xc8\xda\xf7\xd3\x62\x44\x2d\x04\xc4\xd7\x3f\xa6\xcf\xf2\xb1\xb3\xb9\x61\x9a\xc6\xec\x77\x44\x2f\x43\x49\x4f\x80\x14\x52\x16\xdf\xd3\x2e\x13\xb7\x4b\x82\x84\x52\xcc\xfc\xa0\x45\xe6\xe3\x56\x81\xe7\x30\x4d\x08\x63\xee\x65\x21\xb6\xf5\x14\xed\x05\x91\xf4\x1d\xde\xbc\xda\x3a\xa6\xb6\x9a\x66\xf1\x60\x35\x1a\x58\x60\x01\x30\x88\xfc\x90\x91\x24\x8e\x2f\xd1\xb5\xae\xcf\x2b\xc7\xb7\x9a\x45\xc3\x91\xeb\xca\xc0\x69\xa0\xa4\x85\xba\x14\xeb\xda\x88\x36\xe4\xd3\x6a\x8f\x85\x69\x36\x10\xd9\x61\x3d\xe9\x21\x25\x6d\x29\x4e\x2c\x95\xc9\xc0\x8c\x6d\x52\x98\x98\x79\x69\x51\x3d\xb9\x45\x8b\x8d\x8f\xdb\xca\xf4\x71\xf4\x46\x69\x97\x22\xd9\x96\x6e\x60\xcb\x0f\x6f\xb5\x54\x4b\xe7\xbb\x63\x5b\xcc\xd4\x0a\x4b\xf4\x69\x04\xc9\x77\xd5\xa7\x4f\xaa\xc5\x34\x4a\xfb\xfd\x35\x20\x60\x50\xa0\xdd\x08\x14\x07\xde\x86\x12\x40\x1e\xdb\x62\x94\x0e\xa2\xd0\xc4\x58\xdf\xce\x37\x3a\xb8\x39\xd6\x37\x8a\x6b\xff\xde\x95\xf5\x46\x51\x5e\xa4\x19\x8b\x41\xf1\x6e\x0b\xbc\x3f\xbe\xe2\xd0\x4d\xc3\x94\x02\x91\xb5\xa1\xe8\xf3\x38\x4d\x62\x27\xbd\x77\x69\xfa\xe5\x7a\x1d\xb6\x4a\x34\x5e\xde\xff\xe2\x6e\xdf\x6c\x62\x00\x8e\x9b\x85\xf5\x78\x27\x50\x6d\x32\x5d\x01\xed\x7d\x99\x76\xf0\x7b\xe0\x32\xd5\x1b\xe0\x54\x8f\x4d\x95\x79\x3b\x1d\xf8\xe2\xd2\xb6\xf5\x7d\xbe\xb9\x57\x44\x09\xda\x72\xae\xff\xf0\x43\x25\xbf\xf6\x43\x45\x95\x61\x4d\x56\x8c\x66\xc9\x45\x62\x89\x61\x23\xe1\x22\x88\x61\x59\x1a\xc6\x60\xf5\xe6\x7f\xe8\xb5\x01\xc8\x86\x65\x94\x24\x36\x97\xe2\x15\x96\x3a\x27\x42\x7c\x12\xa8\x6e\x79\x1c\xdb\x64\x68\xf3\x1d\x9e\x4e\x03\x90\x31\x3c\x25\x60\x40\x84\x84\x5f\xe9\x34\xf1\x10\x04\xec\xf2\x89\x40\x2b\x71\x2a\xb7\x50\xd8\x38\xde\xe1\xeb\xbf\x1b\xf4\x98\x61\xf1\xee\xa3\x35\x82\x32\xc3\x55\x35\x8e\x74\x94\xd2\x5b\xfc\xfc\x8d\xa9\x07\xbf\x5f\x56\xe9\x5b\x5e\x65\x6f\xcb\x55\x68\x8a\x9e\xb1\x63\x39\x3f\xe4\x08\x50\x6f\x35\xaa\x40\x07\x0f\x76\x33\x3b\x36\x51\xd2\x51\xd0\x0b\x54\x66\x45\x6c\xc9\x8b\xbf\x4d\xb2\x34\x9f\xb0\xa6\x5d\x75\xd7\xf8\x8b\x0f\xa6\x2a\x8c\xf9\xc0\x11\xd1\xc6\xa9\x19\xcc\xa8\x52\xf2\x59\xac\x2d\x94\x2f\xcf\xa9\xb1\x8f\x3b\x0a\xdc\xd5\xb7\x6b\x69\x32\x40\xf9\x16\xb9\x20\x64\x25\x60\x56\xc0\xb0\x88\xe6\xd6\xad\xa9\x92\x74\xac\xeb\xbd\xda\x24\xea\xd4\x48\x36\x6b\xf4\x9b\x5f\xf5\x91\xe1\xc4\x86\xd1\x52\x84\x09\xbb\xfc\xff\xbd\x29\x10\x7c\xd4\xda\xc4\xe6\x33\x4a\x8e\x3c\x50\xf3\x9d\x47\x15\x40\xf6\x44\x5b\x08\x3d\x49\x73\x61\x9a\x13\xd4\x80\x52\x6a\x3c\xdd\x48\x82\x7e\xad\x5b\xe6\x26\xca\x3a\x0d\xc4\xb3\x40\xa1\xb5\x48\x4e\x1c\x57\x77\xb4\xd3\x8f\x6d\x32\xc4\x0a\x0d\xb4\x73\xaa\x57\xbf\x0d\x79\x9d\x22\xae\x58\xd0\x6c\xd1\x52\xc1\xb9\x36\xf5\x82\x79\xa7\xdb\x34\x25\x06\xce\xfa\x22\x8c\x38\xa5\x63\x8a\x53\x81\x46\x36\x90\xe8\x4a\x5e\x74\x14\x9d\xe3\x79\xad\x3b\x73\x5e\xc1\xd2\x57\x4c\xbc\x5b\x95\x51\x38\x4b\x41\x0b\xec\xa9\x75\xdf\x21\xb9\x37\xdd\xaa\x32\x80\xbd\xb2\xb7\x57\xaf\x24\x3b\x70\xcc\x2f\xd3\xd4\x88\xc0\x41\x95\x76\xd3\xf5\xe9\x1e\x1f\xcd\xc4\xb3\xda\xd4\x11\x01\xdb\x29\xa6\x10\x63\xd9\x08\xd1\xd8\x6f\x01\xaa\x39\x0c\x3f\xef\x16\x44\x03\x67\x74\x68\xd0\xd4\x8c\x5f\x58\xe8\xf6\xa3\x38\x96\xd6\x31\x2e\xf0\xe3\x40\x25\x67\xc7\x03\x3d\x0b\xb2\xd5\xd8\x7d\x63\xde\x93\xd8\x76\x1a\x24\xb6\x42\xaa\xd4\x62\x05\xe2\x68\x1c\xc9\x95\xba\x38\x5e\xb5\xbc\x1a\x0b\xf2\xb5\xd7\xba\x23\xb3\x62\x67\x7c\x75\xfe\x26\x1c\x80\xe0\xfe\xab\x37\x22\x53\x03\xcf\xaa\x70\x60\x52\xf6\xe3\x28\x34\x49\xbe\xdd\x97\x44\x2e\x70\x0c\x22\x0c\x85\xf4\xcb\x22\x61\xe2\x83\xf2\xfb\xf4\x6a\xf9\xff\x37\x52\x97\x03\x0b\x5d\x1b\x16\xe9\x24\x36\xf9\x38\x0a\x6b\xf1\xff\xd4\x9b\xd2\xcb\xc1\x1e\xf1\x86\xaf\x2c\xee\xff\x4a\xe7\xd7\x7f\x9b\x7b\xda\x97\x03\xcd\x17\x7b\x7d\xaa\xb8\x1c\x66\xc8\x53\xe3\x78\x83\x96\x1a\xda\xca\xb7\xc8\xf1\xa0\xad\x7d\x13\xe0\x1c\xa5\xe3\x2e\x92\xae\xf7\x15\x21\xfc\xef\x02\x1e\x06\x8b\xf1\xef\xb0\xc5\x40\x19\xbb\xa1\x29\x41\x1f\x4e\x95\x90\xc8\x36\x1a\x12\xc0\xe2\x66\x4d\x1f\xe4\xd3\xf7\x80\xb4\x44\x60\xf0\x3d\x0a\x65\xb1\xec\x7f\x10\x28\x42\x92\x4f\x94\xfa\x20\xe7\x2a\x98\x8e\xde\xa4\x8c\x42\x92\x85\xce\x37\xbc\xbc\x8a\x43\x81\x45\xc3\x61\xcc\x2c\x62\x22\xc4\xe7\xf5\x02\xb8\xc6\x0b\x77\xd7\x9c\x85\x9d\x9b\xef\x02\xf2\xc6\x32\x5b\x02\x4a\xed\x78\x46\x26\x57\x85\x99\x64\x96\xd8\x64\xa4\x98\xe5\x78\x78\x9c\xf0\xc8\xf9\x46\x40\x2b\x40\x18\x53\xa4\x09\xd8\x7a\x51\xdb\xe9\xf4\x14\xaf\xc5\x69\x0a\x50\x1c\xcb\xd8\x82\xaa\x17\x1f\x70\xf0\x17\x95\x1b\x0d\x6c\xb2\xd6\x51\xec\xf4\x27\xf0\x22\xf9\x44\x29\xb1\x98\xe1\x30\xb3\x43\x53\xd8\x3a\x7d\x9f\xaf\x2c\x5e\x50\x7a\x07\x85\x49\x86\x51\x3f\x66\x52\x45\x84\x3a\x57\xe0\x36\xf9\x44\x49\xac\x86\x69\x99\xe4\xd6\x4f\x40\x09\x3b\xb3\xc7\xeb\xf8\xfa\x1b\xb1\x38\x59\x93\xd7\x19\x25\x3b\xb4\x5c\xf9\xb8\x27\x2f\x73\xcd\xc6\x71\xba\x3a\xeb\x2b\xde\x20\xd8\x07\x8e\x6a\x0f\x42\x17\xa4\xf7\x67\x15\x87\xd7\xed\x2a\x84\xc4\x1d\x2f\xa5\x19\x49\xfb\x2a\x04\x3f\x17\xdc\xa7\x3e\xb4\x3f\x5a\x2b\x0d\x14\x66\xed\x71\x35\xa8\x7f\x8c\xf6\x0e\x16\xcc\x93\x64\x81\xe1\x95\x31\x1d\x81\xdc\xf6\x62\xe0\x39\x6b\x77\x52\x05\x12\x21\xd4\x13\x98\xa8\x41\xcc\x70\x5e\x0b\x54\x1d\x83\xe3\xe5\xa9\x58\xda\x92\xc8\xab\x6b\xec\x3a\xd6\xe4\x69\xb2\x53\x69\x38\x7d\x93\xee\x12\x6d\xf3\x53\x81\x6a\xd0\xbe\x8f\x37\xc3\x7f\x15\x28\x94\xdf\xfb\xd8\xe3\x52\x43\xf4\x31\xec\x7b\xc1\x97\x7d\xfb\x28\xca\xbd\xd8\x21\x4c\x0a\xbc\xc4\x19\xdd\xa9\x39\xd3\x56\x5f\x58\x2a\xb3\x24\xca\x47\x52\x81\x77\x60\x01\x17\x7f\x6c\x68\x9a\x9c\x8f\x5a\x26\x88\x47\x51\x3e\x31\x09\x67\x0f\x88\x11\x6f\x06\x8a\x46\xe8\x66\x33\x23\x98\xef\x1e\x5a\x3c\xf4\xd5\xea\x65\xc0\x5b\xcf\xae\xe3\xa2\xe1\xa2\x1e\x83\x07\xe5\xd1\x0a\x8a\x1c\x84\x68\xc8\xbf\xcb\xf3\x4a\x1c\xe1\x24\x44\x6b\xa4\x1c\x4a\x2f\x4d\xd8\xd8\xc9\x5c\xb9\xa1\xb4\x5f\xff\x6d\x19\xa3\x9a\x2a\x8c\x28\x31\xee\x7a\xda\x60\x05\x4c\x06\x1f\x32\xc2\xbf\xdd\xeb\xbe\xdc\xce\x1b\x1e\xa9\xf7\xb6\x1e\xa2\x5f\xaf\x3a\x75\xc8\x13\x07\x78\x2f\xfa\x23\xb2\x7d\x6e\x96\xdb\xc3\x05\xb6\xf5\xe8\x15\xc3\xc7\xdc\x24\x35\x1c\x81\x7a\xd5\x6a\x5e\xe5\xe4\x29\xba\x35\xfc\xea\x1d\x94\xf2\x70\xd3\x3f\xc3\x92\x41\xd9\x66\x76\xdd\x83\x7a\x41\x0f\x02\xe3\x39\xbb\xae\xb4\xea\x6e\x20\xee\xc7\x5f\xcd\xf4\x94\x7c\xc1\x63\x3d\xc5\xb7\xf1\x83\x40\xb3\xc0\x7b\x60\x21\xab\x02\xc2\xf1\x6e\xef\xa9\xe7\xff\x63\x7a\x64\xd8\x19\x1f\x07\x35\xaa\xa1\x66\xe4\x71\xa8\x6b\x57\x6c\x56\x43\x89\xd1\x27\x04\x26\xf6\x94\x2a\xa9\x64\x43\x5b\xec\x54\x72\x28\x8f\xb0\x33\xb0\x67\x1e\xe1\xad\xe1\x7a\x3e\xd7\xfa\x1e\xc0\x96\xf3\x44\x03\xae\x1a\xce\xf7\x26\xf6\x1c\xe2\xd0\x4b\x35\x00\x7f\x36\x1c\x75\x7c\xdf\xe9\x7d\x7c\x9d\x10\x08\xfb\xb4\xaa\x9f\x0e\xd6\xb0\xbd\x19\xde\x4c\xbd\x45\x0c\x7d\x5d\xd2\xd4\x91\x88\x0f\x59\x21\x8b\x20\xf5\xfc\x47\xd0\x24\xd0\x9b\x0e\xeb\x63\x7b\x83\x1c\xf8\xc0\x42\x37\x11\x5a\x24\xfc\xfd\x05\x35\x5d\x75\xa1\xe1\xaa\x5e\x99\x3f\xd2\x1d\x96\x26\x33\x49\x61\x2d\xaa\x07\x32\x4e\xe0\x15\xf0\xff\xc9\xf1\x46\x14\x49\x38\x2b\x4b\x8d\xae\x6c\x0d\x5d\x29\x34\x7d\x4f\x2b\x55\xbc\xd3\xc1\x97\xd4\x70\x8c\x49\x06\x44\x3a\xae\x15\x92\x5d\x1e\xb4\xe0\x55\xd2\x03\xc5\xee\x01\x88\x05\x1a\x9a\x0f\xc9\xfc\x22\xbe\x38\x46\xeb\x8d\x8f\x1b\x50\xb8\x03\x0b\xdd\xa2\xb2\xaa\x65\xc6\xf8\x1c\xd8\xef\x75\x25\x5b\xb0\xde\x52\xfd\x9d\xef\x9a\x81\x0f\x35\x65\x2a\xb5\x46\xa0\xa6\x9a\x6c\x66\x2d\x7f\x86\xae\x14\x26\xe0\xae\x6e\x86\xec\x5a\xf7\x24\x19\x77\xa7\xd8\xf6\x02\xcf\x50\xf9\xdf\xad\xa9\x9f\xfc\xf9\x28\xf0\x30\x82\x4e\xaf\xd6\x52\xaf\xcc\x11\x0f\x3a\x04\x1e\x50\x71\x11\xed\x3f\x98\x83\x8f\x38\x42\x44\x39\x17\x03\x75\x58\x3b\x4f\xa1\x04\x87\xa6\xf8\xd9\xa9\xa2\xea\x9a\x7a\x3a\xa1\x07\x48\xc5\x5d\x30\xf2\xb2\xd0\x93\xcc\xd4\x85\x81\x3d\x7a\xc2\x0c\x5e\x37\xa1\x95\x56\x32\x1a\x0f\xbf\x3f\x55\x5d\x88\xdf\x0f\x7c\x3d\xd1\x0c\x56\x6c\x56\x58\x86\x12\x33\x53\x77\x8d\xb5\x5b\xd0\x58\x4b\xb1\xc9\x47\x7d\xc3\xa8\x79\xa7\xa3\xe4\xa6\x12\x4e\x04\x1e\xea\xbd\x94\x66\x45\x99\x70\xe4\xe2\xb8\x0e\x9d\xbe\xcc\x25\xd5\x6a\xc8\xd3\xb1\x1d\x55\x11\x86\x33\x4c\x77\x03\x35\xd7\xce\xe5\x16\xf4\x41\x30\xaf\x23\xad\xd3\x96\x48\x5e\xe1\xc0\x3b\x8a\x2e\xf5\x27\x8a\xf0\xf9\x27\xd3\x67\x1a\x64\x73\x8b\x87\x76\x7b\xb8\xd7\x75\x45\xfa\xf1\x5d\x20\x38\xe0\x3d\xd0\xd4\xc6\xae\xfb\x39\x2d\x09\x50\x82\x1f\x0f\x94\x27\xb8\x09\xae\x3a\x8c\x22\x71\x1b\x98\x3f\x1e\xd4\x5a\x32\xbb\xa3\x2a\x7e\x5d\xfa\x07\xdd\xdf\xf8\xeb\x95\xbb\x10\xd5\x56\xfa\x1b\x07\xcb\xf9\xfa\x2b\x6c\x7e\x30\x09\x87\x8b\xda\x05\xc8\x04\xde\xcf\xe7\x53\x3d\x98\x4f\xcc\x96\x58\x9b\x3b\x31\x42\xed\x48\x32\x7c\x9d\x19\x5c\x40\x40\x43\x3c\x52\x32\x0e\xbb\xd7\x5d\x79\x7e\xf9\xcb\x70\x34\xac\x46\xbc\xee\x83\xab\x99\x5e\xe7\x37\x0f\x3b\x1e\x97\x2a\xfc\x87\xff\xbd\xa0\xf4\x63\x76\xaf\x2b\x76\xd0\x99\x67\xe1\x8c\x90\xaf\x6c\x23\xc7\x86\xb8\xe8\x4b\xeb\xdb\xbe\xc6\xb7\xf7\x14\x9c\x31\xe0\xb3\xcf\xb3\x33\xc6\x02\xd8\x45\xae\x75\xb3\x83\xbd\x02\x03\xfc\x57\x30\xba\xa2\x0e\x4a\xc9\x11\xde\xee\x6d\x15\x3f\x4f\x88\x97\x37\x05\xe7\x35\xf3\x94\xc1\x80\x09\x69\x59\x8b\x71\x9a\xc4\x26\xf1\x5a\x17\xe8\x2c\x7d\x7b\xea\x9b\xc8\xdf\xf6\xac\xec\x36\x29\xaa\x8c\x99\xe8\x1d\xf1\xa0\x78\x52\x45\x8f\xeb\x63\x73\xcf\xf6\xb6\xfe\xd4\xf3\x55\xd2\x90\x96\x89\x6b\x0b\xb1\x62\xc3\x54\x8d\x25\xde\x69\x18\xc2\x03\x0b\xdd\xbe\x8d\x5e\x77\xd7\x27\x34\xfe\xca\xe3\xce\xf4\xfc\x36\x2c\x27\x79\x68\x62\xad\xb5\x7d\x56\x29\x7b\x9d\x6d\x04\x93\x92\x1c\x2d\x0b\xb3\x34\xa2\x0e\xa6\xad\xe1\x13\x37\xed\x93\xd9\x38\x92\x69\x1f\xe9\x53\x2a\xa6\x97\x93\x2d\x84\x16\xc8\xe2\xe9\x85\x20\xba\x83\xca\x38\x1f\xeb\xf1\x83\x71\x34\xcc\xa8\xc4\x36\xeb\x41\x47\xef\xc1\xef\xf1\x09\xb6\x93\xb0\x9c\x2a\xbc\xc7\xa5\x46\xd5\xe1\xf9\x6e\x98\x95\x36\x56\x0a\x0d\x97\x61\x63\x04\xd0\xe3\x6b\x47\xc6\xe0\xf2\x1c\xef\x84\xe7\x4d\xbb\x18\x3c\xa3\x5c\x66\x56\x86\x85\x88\x13\xcf\x7b\x52\x4b\x4f\x70\xa9\x79\xb5\x29\xdb\x9a\xd1\x20\xbd\x69\x8d\xfd\x98\x6e\x05\x4d\xa8\xab\x6a\x1e\x16\x68\x11\x07\x08\xe5\xd8\x87\x4f\x3c\xdd\x58\x34\x1c\x15\xdc\xb9\x64\x28\x4c\xa0\x61\x31\x4a\x6c\xdf\x16\x85\xcd\x9a\x62\x0d\x28\xd7\xa1\xcb\x80\x47\xf2\x40\x6b\x92\xa4\x6f\x5a\x56\x78\xc0\x4f\xbf\x49\x2b\x1b\x65\x7a\x7c\x01\x2a\x13\x17\xfc\xde\x98\x60\x17\xe1\x53\x8e\x25\xd3\x4d\x40\x9c\xa1\x4f\x31\xd3\xae\xba\xc0\xd7\x89\x21\x18\x9f\x82\xb1\xfb\x4c\xe9\xf9\xff\x05\x1c\xb4\xac\xb5\x27\xdc\x30\x88\x59\x06\xa1\xbb\xbc\x34\x7f\x4f\xf7\x95\xd7\x69\xee\xf7\xf9\x23\xdd\x49\x96\x16\x69\x98\xa2\x43\x0c\xbb\xfb\xa9\xf2\xe4\x9f\xb6\x0a\x9c\x57\x09\x74\xc9\x33\x79\x9b\x57\xf1\xf6\x58\x93\x5d\x81\xf1\x08\xdf\x3f\xbf\x79\x15\xe3\x8c\x52\x0b\x1f\xa7\x90\x49\x43\xb2\xe6\x98\x7c\x5d\xf1\xf1\x9c\x2a\x5d\xfb\xbd\x56\x64\x51\x1c\xe7\x1d\x7d\x33\xaa\x81\x7b\xae\x65\x5e\x6d\xa1\x1b\x97\xe1\x32\xc7\x7f\x70\x54\xdf\xa1\xaf\xe6\x63\x35\xe6\x9b\xd9\x62\xa7\x07\x62\x70\x52\xcf\xec\xd3\x1a\x3d\x7f\x27\xf0\x9a\x22\x77\x38\xaa\x41\xf6\x77\x6b\xea\x1b\xec\xdb\x91\x8a\x49\x2f\xa9\x85\x5e\x26\xcc\xca\xdc\x51\x59\xba\xe8\xe0\xe0\x41\x17\x1d\x28\x15\x8a\x72\xbc\x4b\xd5\x52\x76\xac\xab\xf6\x08\x18\xdc\xf9\x02\x02\xdf\xe5\xf9\x15\x92\x23\x70\x00\x91\xb9\x39\x0f\x4b\x77\xca\xbe\x97\xb4\x24\xc8\x6d\x37\x57\xd4\x37\xc9\xb2\xcd\xf2\xed\xaa\xd1\x29\x12\xd8\x70\x66\xfb\x7a\x0a\x71\xf0\xef\xe9\x02\xe0\x48\x1f\x2a\x39\xa0\x4b\x0a\x48\x92\xa4\x85\xed\x4b\xaf\x8d\x21\xf1\x70\x42\x82\x8f\xf7\xe0\x91\xd8\x64\x43\x8b\x62\xbd\x20\x53\xab\x07\x2e\x90\x1a\x27\xd6\x67\xf3\xe2\x49\x8d\x8c\x3d\x06\x46\x6b\xde\x84\x53\x1f\xc8\xed\xeb\x91\x9f\x14\xb4\x3a\x3d\x6f\x81\x04\xa9\x21\xcd\x63\x14\x5c\x60\x5d\xdc\x9f\x2a\x51\xb7\x3d\xeb\x14\xec\xe2\x41\x40\x07\x07\x3f\x72\x83\xc2\x1f\xd4\x4b\x3e\x9a\x7a\xdf\xfd\xdf\xfe\x31\xbd\x07\x04\xab\xdb\xbf\x50\x47\x7f\xc9\xaa\x4a\x15\xcc\x1e\x70\x49\x7c\xdc\x4a\xe7\x10\xc6\x26\xcf\xa3\x10\x7a\x0a\x50\x36\x39\xbc\x79\xb5\x0d\xf7\x55\x98\x09\x7c\x1e\x4b\x52\x28\x06\xf5\x8b\xd3\xad\xb3\xc5\xcf\x77\xc3\x71\xae\x68\x45\xce\x4c\x15\x4b\xde\x99\x96\xe4\xea\x45\xcf\x23\x87\x15\xcc\x84\xc2\x81\xaf\x13\x5e\x6a\xea\x1d\xcf\xd3\x88\xb8\x6a\xcf\x9e\x55\x70\xa9\xb3\xaa\x0f\x63\xc3\x34\x49\xc7\x51\xf8\x4c\x8d\x30\xaf\xe3\x46\x07\x59\x53\x09\xb1\xcf\x07\x4a\x1b\x79\x66\x1d\x61\x93\x54\xff\xab\x4d\xe0\x32\xfd\x6a\x19\xb8\x0a\x62\xf5\x82\xa5\x82\x48\x01\xaa\x2b\x9b\x54\x6f\x5b\x54\x0b\xaa\x37\xcc\xc5\x6b\xdd\x94\x3c\x49\x6b\x52\x66\x0b\x54\x94\xf4\xdf\x04\xfe\xe6\x1e\xc1\xbd\x22\x34\xbc\x32\x55\x4c\x98\xd7\x90\xf2\xf3\x45\x2a\x7d\xc3\xea\x99\x79\xa6\x7f\x10\x84\xe7\xa3\x68\x92\x03\xd6\x26\x09\x36\xee\x51\xa4\x55\x7d\x05\xf1\x9e\x02\x07\xdc\x73\xfb\xd9\x84\xa1\x9d\x14\x39\xd5\x79\x11\x85\xff\x25\x7c\xa8\x2b\xc6\x39\x0a\x32\x60\xc5\x51\x70\x38\x09\xeb\x20\x84\xda\x02\xa1\x9f\x98\x17\xea\x94\xe5\x6a\xc8\xb8\x09\xb5\xac\x4c\x70\x5e\x58\x33\xa0\x42\xf6\xe6\xd5\x00\x52\x3c\x2a\xf5\x09\x4d\x32\x88\x42\xca\x92\x5e\xdc\xa4\xfc\x71\xf3\x73\xbf\xcb\xd3\x0c\x83\x21\x78\xec\x10\xc7\x97\x47\x55\xc5\xfc\x52\xaa\xf6\x03\x6b\x76\x6f\x4f\xb5\x06\x2e\x35\xda\x44\x07\x0f\x76\xc7\x66\x2d\xcd\x66\x14\x66\xf1\x06\xad\x20\x69\xf4\xfa\xe0\xf0\x87\x2d\x42\x70\x87\xbb\x99\x1d\x7a\xd8\x66\x4d\x3e\x45\xc6\x7d\x5b\x5a\x5a\x92\x94\x89\xc5\x77\x73\x0d\x07\x0f\xca\x71\x1b\xa1\x64\xe5\x99\x69\x4a\xfe\xe5\xfd\x9c\x62\x03\xac\xc7\xc7\x53\x4d\x22\x6d\xc2\x65\xab\xe5\x8a\x2e\x28\xb9\xa2\x0b\xad\xed\x32\x4b\xa4\x80\x0e\x15\x7e\x49\x79\x5d\x48\x61\xc2\x4f\xdc\x6e\x34\x28\x5e\xde\x7f\xa8\xeb\x74\x28\xea\x0a\xea\x0b\x8e\x6c\xd5\x07\x8a\x26\x0c\x4b\x10\x29\xd3\x5f\x3b\x32\xf7\x85\x05\x47\xe6\xde\xc4\xe8\x1e\xea\x56\xf9\x7b\x66\xb9\x10\x2c\xf9\x84\x1e\x8b\x6d\x5c\x97\x53\xd7\x18\xc0\xd7\xb8\x19\x43\x4f\x2d\x7d\xae\x6d\xea\xac\xba\x95\xdc\x0a\xae\x4e\x50\x63\x64\x16\x84\x9b\x40\xa9\xa3\x25\x79\x34\xb0\x34\x63\x89\xd0\x15\x96\x09\x75\x1b\x14\x7e\xdc\x12\xad\xcf\xa2\xce\xbb\x18\xb1\x72\xc8\xfc\x01\x37\x9c\x12\x47\x18\x4a\xc6\x0b\xc0\xb0\x3b\x1f\x4f\x3d\x19\xc2\xc4\x66\x63\x93\x2d\xbb\xde\x28\xf3\xbe\xc3\x20\x0a\x09\x7c\x73\x1b\xbe\xd8\x9d\x8c\x7c\xb3\x03\x85\xf4\x0e\x3a\xd8\x7c\xd2\x18\x22\x38\xb0\x40\x0a\x14\x6b\xea\x49\x3e\xd6\x53\x4f\xf2\xb1\xf5\x16\xc6\xd4\xa1\xf0\x53\x61\x07\x3d\x22\xaf\xca\xc7\xc1\x56\xdd\x5c\xb0\x01\x26\x85\xcd\xc2\x32\x2e\xca\x6c\x8b\x6e\xae\x2e\xba\xaa\x08\xa1\x6f\x68\x74\x17\xcb\x02\x78\xed\x19\x5c\x17\x9f\xac\xfb\x21\x86\x7e\x99\x2d\xa5\xd9\x80\x30\x6c\x4c\x43\x8b\x94\x49\xf7\xb5\x98\xda\x5e\x41\xb6\xaa\x94\x34\x2b\x18\xdb\xe1\xc9\x86\xfc\xe2\xbd\x18\xf8\x4a\x5b\x95\x02\x77\xb6\x14\x0b\x0f\x39\xd0\x84\x9b\xe3\x9b\xc4\x3c\x50\x51\x59\xba\x47\xeb\x3e\x8a\x9d\x25\x11\x5c\xe1\x48\x77\x1a\x61\x66\x98\x44\x4b\x51\x28\x55\x29\x44\x55\x0f\x03\x1f\x61\x3d\x54\xbd\xe1\xd5\x28\x19\xe4\xa3\xc8\xc6\x03\xe8\xf7\x23\x2f\xf9\x90\x36\x31\x1f\x07\xaa\x6a\xc8\x88\x12\x3e\xd1\x8e\x77\x3c\x89\xd3\x35\x3b\xe8\x68\x71\xf8\x2b\x9a\xe7\xff\x4a\x8b\x31\x58\xe8\xda\xb8\xcc\xe5\xcd\xb7\x95\x75\x5b\x14\x18\xbe\x56\x25\x48\x19\x3e\xc2\xfb\x88\x3e\x22\x7b\x4a\x32\x1b\x3b\x0e\x2d\xb7\x0a\xa5\xff\xe3\xa1\x05\x67\x1a\x41\xff\xf3\xdd\xa5\xcc\x24\xcb\xac\x6e\x85\xca\xec\xed\x40\xe5\x67\x53\xd5\xdd\xd6\x5a\x6f\xa3\x32\xe9\x68\x8b\x44\x6f\x51\x4c\x55\x4b\x91\x24\x4a\x96\x62\x53\x08\x33\x25\xdc\xe4\x1d\xc5\x43\xc2\xf4\x1d\xa2\xb7\xb2\x35\x0c\x5c\x58\xe8\x92\xc0\xc5\xb2\xb5\x13\x17\x06\x4a\x01\xcc\xe7\x61\xcd\xbd\xec\x6c\x5c\x3a\xd3\x39\xf2\x12\x4f\x10\x3d\x0a\x7c\x4b\xe9\x41\x6d\x4a\x45\x13\xca\x12\x6c\x32\x57\xa9\x7d\xa1\xa6\x3a\x0b\x55\x3c\x0e\xd3\x78\xb0\xc3\xe3\x8c\xee\xe1\x56\x9c\x12\x82\xa7\x32\xba\x1f\x68\xf1\x97\xa9\xef\xf5\x33\xde\x04\x25\xa1\xf3\x0a\x06\x38\xb0\x26\xe6\xaa\xac\x10\x2f\x53\xff\x42\x18\x99\xdb\x94\x33\xf2\x14\x5b\x5e\x91\x1d\x61\xe0\x4b\x28\x80\x9e\x56\x18\x72\x03\xfd\xf2\x8e\xd2\x03\x46\x49\x42\xea\x38\xcd\x15\x93\xd9\x49\x9a\x89\x41\xc5\x77\x6e\x22\xcd\xe6\x13\x15\xaf\x4c\x6c\x16\xa5\x03\xd6\xc6\x13\x8d\xb4\x6a\x03\x6b\x0a\x56\x40\x6b\x3a\x3d\xca\x3b\x45\x77\x95\x36\x91\x60\x11\x7c\x5b\xff\x17\x35\x2e\x85\x46\xc4\xf1\x7c\xe5\x3d\x75\xe4\x20\xd6\x4a\xd1\xdf\x9c\x72\x64\x39\x99\xcd\xa3\x61\xc2\x73\x25\xd8\xc3\x4a\xb4\xdd\x9d\x38\xd5\x5c\x1b\x2e\x8f\x68\xb6\xd8\xed\xa8\x13\x53\xd5\x6a\x3d\xe1\xfe\x30\x2f\xec\xaa\xc9\x0a\xc5\xc6\x72\x4c\x6b\x79\x48\x26\x2c\x85\x78\xdd\x85\x4a\x87\x11\x89\xa2\xd5\x18\x19\x85\xcb\xed\x4b\x0e\xf3\x36\x24\xc0\xa7\x7f\xab\x37\x03\xcd\x66\xed\xf3\x8a\x0f\x54\xd0\x93\xa5\x83\xa1\x9b\x3f\xc1\x4e\x00\x47\x37\x1f\xd7\xae\x63\x60\x93\x27\x29\xee\x86\x4b\x39\x4b\x15\x60\x4e\xf8\x02\x84\xd4\xfc\x2f\x9a\xc3\xf6\x36\x85\xfa\x78\xd1\xc7\x28\x9f\xc0\x1d\xf3\x0b\x60\x85\x07\x38\x15\xe4\x88\x1b\x81\xaa\xd0\x21\x13\x15\x9e\x11\x5f\x2f\xbf\xcf\x19\xb5\xfb\x2b\x37\xce\xf1\x50\x75\x0b\x63\x53\x8c\x2c\xd3\x0b\x48\x8c\x46\xeb\x9a\x4f\x14\xaa\xc2\x35\xc9\xe8\x15\x21\x10\xf8\x5c\x51\x7b\x9d\xc5\xfa\xc3\x6f\xfc\x4b\x65\xf7\x06\x91\x25\xfe\x52\xe0\xf7\xb8\x40\xef\x26\xb3\xe6\xe6\xb5\x2a\xb6\xd4\x38\xef\x06\x9d\xdf\x54\xb4\x60\x8b\x02\x21\xbd\xac\x81\x4f\xec\x08\x51\x96\xdf\xd9\xf3\x1a\x3a\x67\xa8\x51\x86\xff\x0f\x63\x8e\x7c\xfc\x43\x55\x2d\xcc\x4c\x66\xe3\xb5\xed\x1d\xad\x88\xbe\x55\x30\xd6\x81\xd2\x17\x25\x89\xff\x9c\xae\x05\x13\x29\x57\x15\x2d\x69\x66\xcd\x00\x76\x4f\x76\xac\xde\xbe\xaa\x0b\x38\x30\x2b\xd1\x60\x3b\x5e\x0d\x32\xfb\xeb\x0a\x75\x73\x45\xb1\xa6\xfc\xef\xb4\x3c\xf9\x18\x5f\x87\x74\xf4\x3b\xda\x58\x64\xe9\x4a\x9a\x17\x33\x1d\xc5\xc7\xe1\x41\xe0\x68\x64\x89\x4c\x5d\x33\x02\x3e\x8c\xb9\x2c\xde\xf7\x78\x3f\x47\xb1\xec\xf8\x44\x71\x49\x2d\xa5\x59\x68\xf3\x5d\x8a\xf1\x9c\xfb\x28\x7c\x82\x36\xbb\x73\xe8\xd5\xbb\x44\x13\xf4\x47\x81\x97\x33\x39\x4d\x2b\x14\xfe\xe0\x14\xf5\xe2\x84\x13\xbb\xe3\x88\x52\x2e\xab\x16\x57\x18\x93\x18\xd4\x2e\xe5\x02\x6f\x4d\x15\x3f\x07\xe4\x18\x5d\xe9\xf3\x80\xd3\xf7\x44\x6e\x09\xef\x7c\x85\x76\x98\x83\x0a\x56\xcb\x5b\xe8\xf6\x95\xd0\xe1\x95\xe9\x1e\x7e\x40\xdd\x43\xf3\x47\x88\x00\x0e\xbd\x91\x5f\x04\x9e\xa9\x1a\x3c\x45\xf8\xf4\x0f\xe8\x49\x0b\x6e\xb3\x86\x8c\xf0\xbd\x90\x4b\x4a\xd2\x7d\x56\x0d\xc2\x2c\x65\x36\x0f\x0d\xc6\xb4\xf1\xfb\x37\x54\x51\xe7\x46\x9b\x8a\x69\xe5\x79\x86\x42\x75\xaf\x70\xad\xf3\x4e\x27\xcd\x71\xca\x98\x7c\x24\xe2\xa5\x8e\x7a\xc3\x41\x94\x6e\x35\x1c\xd4\x6b\xaf\x75\xf3\x28\x19\x46\xc9\xac\xea\x77\x6c\x57\x7a\x2e\x27\x14\x5d\xea\x07\x58\x8b\xe8\x04\xdd\xd7\x5a\x79\x93\x2c\x8a\xb1\x94\x50\xe3\xbc\x8e\xa5\xc4\x27\x8a\xc8\xa8\x30\x39\x0b\x76\x02\xab\xc7\x42\xc0\x7c\xa2\x54\x35\xfb\x76\x18\x25\x5c\x15\x07\x84\x05\x7a\xaa\x00\xec\x9d\x53\x4c\x89\xa7\x5b\x33\xe9\x61\x56\x8e\xfb\xb1\x9d\x55\x02\xc8\xa0\x42\x05\x64\xe7\x1a\x7d\x01\x9e\xca\x47\x53\x1f\x24\x9f\x6d\x24\xd8\x73\x73\x95\x5f\xce\xa3\xdc\x35\x71\xb1\x79\x01\xfd\xe2\x63\x97\x68\x3d\x67\xc7\x3b\xab\x75\x22\xe1\xa4\x92\x5a\x04\x9b\x99\xa4\x6f\x8a\x43\xe0\x32\xa2\x14\x3c\xac\x9f\x91\x5d\xc4\x6b\xdd\x98\xaa\x5a\xce\xce\x9e\xab\xc7\xc7\xd1\x18\x93\x18\x6d\x38\xca\x27\x15\x64\x2d\x23\x02\xb8\x57\xd9\x94\x6c\xc0\xcc\x39\x4e\xa2\xea\xd2\x64\xd4\xc9\xeb\x76\x22\xca\x60\x7d\x41\x58\x6c\x45\x27\x79\xc8\x43\x78\x9c\x66\xc2\x5d\x97\x88\xa4\x65\xe1\x29\x8a\xc4\x67\xfd\x48\xa9\x46\x3f\x52\x45\xbc\xfb\xca\x19\xd9\x37\x27\x36\x2c\xc8\x24\xa3\x03\x79\x19\x0f\xc8\x09\xba\xbc\x2c\xa3\x8b\xcc\x12\xca\x02\x28\x81\x07\x8d\x5c\x6e\x84\xeb\x34\x83\x92\x17\x75\x54\xdc\x1d\x85\x8a\xbb\xd3\xa8\x3e\xce\xcd\x75\xc3\x34\x59\xb1\x99\xef\x70\x23\xf0\xc5\x2e\xe2\xe3\xb6\xce\x78\x66\xc3\x74\x3c\xb6\xc9\x80\xe9\xbf\xd8\xe5\x4d\xb5\xfb\xfb\x8a\x9a\x93\x2c\xd2\x7e\x94\x0e\x33\x33\x19\xad\x71\x30\xe5\xba\xad\xde\xde\x9f\x76\xfd\x89\x15\x13\x0a\x1d\x19\xdc\xa1\x2e\xc8\xdf\x52\x1a\xcb\x39\x15\xbd\x12\xb3\x12\x19\xfa\x6b\x44\xd9\x67\x02\x1f\x71\x9f\x71\x25\xb0\x7e\x99\x8f\xd4\x2c\xe1\x6d\x4d\x77\x79\xbb\x91\x55\x1c\x58\xa0\x5a\x46\xbf\xcc\x06\xd6\x41\x0d\x81\x13\x42\xbb\x89\x8f\xdb\x08\x79\xff\x3f\x28\xa6\x6f\x4d\xfc\x5f\x39\xd4\x1d\x11\xa0\xb3\xfa\x80\x60\x82\xfd\xcf\x5d\x56\xab\x28\x5f\x1b\xf7\xd3\x18\x8c\x20\xa8\xd1\xbd\xcb\xb1\x23\x9f\x35\x48\x7d\x88\x43\x05\x55\x08\xae\xa5\x06\x7e\xba\xed\x8a\xe3\x27\x59\x89\xb2\x61\x94\x44\x66\xc6\x0f\xfe\x6d\xd0\x2d\xcb\x96\x51\xa5\x8b\x66\xb1\xe3\x95\xc5\xfd\xdd\xdc\xc6\xdc\x91\x42\x65\xf7\xb4\x42\x79\xc2\xb0\x49\x13\xc0\xe3\x4c\x56\x47\x51\xe6\x98\xc4\x38\xdb\x51\x30\xf3\xf3\xee\xf2\x26\x59\x14\x42\x82\xb5\xda\xec\x4a\x57\xf2\xb0\x93\x13\xf2\x82\x0d\x79\xd9\xcf\x8b\xa8\x28\xab\x15\x4e\xf9\x3c\xba\x4a\x9f\x51\xdd\x88\x8f\x15\x0b\xdd\x1d\xa5\xc0\x78\xc7\xfd\xe2\x92\x29\x0a\xbf\x08\x5c\xb9\xb6\xda\xb2\x52\xae\xfd\x5b\x4d\x37\x36\x88\xf2\x30\xb3\xd4\x9e\x63\xf4\x31\x2e\xef\x2a\xdd\x15\x1f\x37\x4a\xfb\x87\x16\x0f\x75\x87\xb6\x98\xf5\x8c\xa4\x17\xe0\x72\x01\x85\xbc\x4a\x31\x86\x23\xcf\xf4\x74\xe9\x3e\x01\xb0\x6f\x86\x91\xcb\xa6\x1d\x50\xef\xe0\x41\xb6\x22\x5c\x4c\x87\xfd\xfd\x63\x35\x2c\x56\x65\x6e\x4b\x69\x1c\xa5\x79\x47\x71\x0b\xc2\xaf\x4b\x5f\x5c\x67\x01\xcb\x36\xd9\xeb\xa6\xf6\xbf\x72\x09\x7a\x86\xf8\x3d\x30\x33\x21\x48\xd8\xd9\xd3\xc0\x2c\xba\x77\xe0\x11\x7e\x06\x47\xc0\x39\x3e\xe2\x18\x74\x66\x19\x60\x8e\x65\x8c\x1e\x28\x5c\xe6\xae\x75\x15\x06\x3c\xa4\x66\x1c\xac\x2b\xc4\x02\x36\xaf\x52\x99\x06\x8d\xe0\x3f\xa7\xac\x44\x58\x0f\xa9\x65\x81\x67\x7e\x07\xcf\x13\xff\xb2\x11\x7c\x49\xf1\x64\x9a\x31\x86\x34\x35\x45\x0c\x23\x4a\xa7\x2a\xd9\xba\xad\xa6\x4d\xdf\x28\x4d\x56\xd8\x0c\xe2\x32\xe8\x72\xee\xea\xf9\x22\x38\x8b\x86\xba\xcb\xf0\x92\xb0\xbf\xef\x0c\x53\x9e\x2e\x15\xbb\x54\x37\x0c\x6b\x59\x78\x5e\xe8\xf3\x48\x75\x2e\x29\xca\x94\xbb\x53\x3f\x4d\xfa\x37\x15\xef\xe0\x3d\x82\xf9\x60\xd7\x7e\x50\x2b\x37\xb5\xa9\x97\x17\x65\x96\xf0\x46\x12\x85\x44\x85\x5a\xfb\x76\x23\x3a\x5b\xdc\xdf\x9d\x98\xcc\x26\x05\x8f\x9a\x0a\x49\x91\x9a\x34\xb8\xa0\x68\x4c\x7f\xaa\x2a\x81\xa3\x28\x19\xd8\x71\x54\x8c\x6a\x95\x49\x8f\xa0\xbd\xd2\x88\xd6\x8e\xbc\xd4\x8d\x86\x49\x54\x80\xe5\x0e\xd1\xf7\x29\xfa\x76\x3e\x56\x6c\xa0\x83\xcc\xac\x3a\x35\x1b\xf8\x4e\x30\xa4\xf1\xb1\xc3\xa8\x25\x76\x98\x16\x91\x12\xf1\x17\x32\x2d\xc5\xba\x7d\xa5\xad\x81\xc0\x4c\x27\x98\x5a\x75\x64\x9e\x8e\x49\xec\xa1\x6a\xc0\x6d\xef\xb9\x64\x3f\x5d\xeb\x5b\x93\xcc\xb8\x88\xf7\x3f\x79\x86\xa2\x4d\x4a\x12\xfe\xf6\xde\xf5\x5a\x54\xa2\x07\x11\x20\x3f\x42\x8b\x11\x51\x01\x62\x09\x35\x8e\xff\xa2\x2b\x69\xd7\x18\xde\x4b\xe4\x48\x28\x95\x80\x57\x00\x3b\x0c\xca\xda\xc2\x3f\xe3\x87\xa1\x0a\x9b\x65\x69\x16\xe5\xe3\xce\x56\x31\x46\x3e\xae\x6d\x7a\xfb\x16\xd2\x62\xd8\xf2\xdd\x3d\xff\x36\x38\x13\x84\x99\xea\xb8\x71\x4b\x33\x99\xc4\xa6\xf4\x54\xd9\xf8\xe0\x71\xa5\x2d\x76\x5c\x47\x46\xa4\xd4\x84\x1e\x9d\x50\x7c\xd3\x8b\x41\x50\xc9\x7c\x40\x7c\x42\x4b\x81\xff\x4a\xd1\xca\x4f\xa2\x70\xd9\xa2\xab\x24\x45\x95\xb7\xd9\x31\x0a\x57\xf5\xd6\x95\xf6\xdc\x73\xdd\x91\x8d\x9d\x64\x83\xcc\x6f\x93\xb1\x91\xc1\x6e\x6f\x27\x72\x1b\xbd\x85\x35\x29\x11\x6d\x75\x33\x7c\xac\x0a\x09\x89\x79\x8b\xb0\x19\xe8\x1e\x23\xf9\xbe\x05\xd3\xc6\x27\x5f\xc0\x08\x99\xdb\x2a\x98\xef\x78\x8c\xde\x67\x08\x03\x05\xc3\xf2\x8c\xa2\x19\x18\x94\x21\xd5\xa8\xea\xa2\x0f\x5a\xff\x48\xcb\x69\x2b\xfd\xa1\x93\x5a\xb7\xaf\x8c\xe3\x28\x1f\xcd\xfa\x80\xeb\x0e\x2d\x6d\x51\x43\x53\x05\x8b\x2b\x81\x2f\x52\xdc\x51\xd4\x77\xb9\x29\xa2\x7c\xc9\x84\x45\x9a\xad\x21\xdb\x43\x1c\xdd\xc1\xc8\x04\x9f\x38\x32\xbe\x49\x66\xc3\x28\x8f\x98\x18\x0b\x35\x87\x8f\x70\xd9\x22\x70\xe5\xd3\x97\x8d\x46\xb0\x4b\x3a\xe3\xd1\x70\x84\xc5\xce\x01\x3f\xdd\x9c\xa3\x2c\x5f\xdc\xef\x74\xf6\x5b\x6b\xe6\xa3\xb4\xb0\xc0\xe9\xf0\x54\x91\x9a\x2b\x38\xaf\xb0\x63\x85\xcd\xc6\xe0\xcc\x9e\xf1\xb8\xf1\x07\xf0\x21\xc0\x44\x7d\x53\x69\x1d\xdc\x53\x79\x62\x9e\x96\xc9\xa0\xa3\xf8\xf3\x8f\xd5\x60\x12\x4a\xe0\x31\x8b\x96\xb8\x30\x8f\x5a\xf5\x29\x55\xb7\x3e\xd5\x16\xb6\x57\x61\x0d\xf1\x12\x16\x0a\xfd\x76\x5f\xe1\xb4\xee\x7b\x46\x9a\x2c\x5d\x15\xce\x59\x19\xb7\xf6\xfa\xe3\xb7\xa7\xdd\x86\x89\x3f\xdc\xcd\xd3\xc9\x28\xca\x8b\x28\xf4\x1c\xd5\x1a\x0c\x25\x00\x36\x6f\x44\x26\x26\x33\xf1\xda\x5b\x9c\x0d\x60\x81\x61\xb4\x87\x8f\x03\x55\x58\x4e\xcb\xa4\xc8\x22\x9b\xef\x50\x06\x63\x37\x0d\x52\xc2\x33\xd2\x5c\xf5\x8b\x32\xe8\x1c\xf8\x32\xf0\x9d\x40\xa1\xf5\xaf\xab\x09\xd2\x47\x5e\x81\x24\x8d\xf2\xd4\x23\x2e\x11\x74\xfc\x15\x3d\x4e\x3e\x56\xbe\x9b\x88\xb1\x53\x0e\xce\xe0\xbb\xd7\xb1\x3f\xf9\x44\x15\xf7\x7e\xf5\x1f\xfe\xc3\x4e\x5d\x75\x73\xce\x25\x6c\x4a\x81\x38\x33\x51\xd2\x4f\x57\xa9\x4c\x8b\x8b\xe6\x08\x80\x4f\x7a\xcf\xba\xa9\xa9\xcc\xd2\xce\x8d\x6d\x9e\xab\x3e\xdf\x27\x8a\xac\xf9\x13\xc5\x55\xd3\xb7\x43\x93\x6c\xf7\x61\xf4\x86\x66\x83\x03\xc8\x18\x31\xf5\x57\xd7\x15\x54\x79\x5f\x4f\xab\x85\xb7\xe4\x38\x63\x93\xbf\x51\xda\xcc\x0c\x84\x1d\x11\x65\x25\x26\x05\xe7\x13\x45\x2f\x9d\x59\x13\x02\x47\x79\x60\xc1\xf7\x60\xb7\xc0\x85\x54\x29\xd7\xd5\x75\x1b\x81\xee\xf3\xdd\xc4\x8c\x25\x4c\x95\x29\x6c\xef\xef\x18\xfc\x29\xec\xaf\x0d\xc2\xae\x43\x5d\x7a\x70\x64\x69\x18\xd4\x8c\x27\x22\x08\x67\x5f\x5c\x31\x51\xd6\x2f\x19\x85\x85\xbc\x4b\x34\x93\x64\x4a\xce\x27\x00\x60\x1b\x17\x99\xda\xea\x1d\xc3\xec\x35\x65\x66\x0f\x1e\xec\x86\x69\x3a\xb1\x99\x29\xea\xfd\xba\x2b\x35\x91\x9b\x16\x75\x87\x71\xda\x8f\x62\x3b\xe3\x77\x12\x78\xa3\x01\x3d\xdb\xa4\xf8\x0d\x6d\xf9\x26\xb3\xf3\xcb\xfb\xd9\x72\x5a\x66\xa7\x90\x8a\x98\x7f\x05\x57\x40\xac\x5b\xff\x49\x33\xab\x07\x51\x70\xf3\x52\xcd\xee\x68\x9a\x14\xa5\xab\x13\xe8\xc1\xb5\x95\xc8\xae\xee\xd2\xad\xe1\x9e\x1e\x43\x00\xf9\x2d\x53\x49\xd7\x62\x3a\x7a\x89\x5a\x4f\x54\xf8\xa6\xc9\x1e\x09\xc0\x4d\x8d\xbd\x9f\x98\x7a\xfa\xc4\x71\x3a\xb0\x8c\x76\x50\x8b\xe1\x34\xca\x34\xd2\x98\xf0\x6b\x33\x4c\x13\xc2\xe7\x74\x54\x9d\x59\xb5\x87\xea\x33\x1d\xc9\xf2\x0c\x2d\x17\xd1\x68\xf3\x13\x47\x9f\x20\x6a\x46\x9d\xe5\xa7\xca\x5c\x0c\xd6\x12\x33\x66\xc8\xd8\xbc\x4b\xce\x7c\x63\xe0\x42\x03\x0d\x76\x60\xa1\x6b\x5e\xa0\xcb\x11\xa5\x24\x2d\x9b\xa4\xac\x4b\x56\x32\x1d\x0a\x32\x0f\xe4\x6b\x92\x61\x57\x9f\x47\xe4\xf2\x69\x2b\x7b\x7b\x3f\x2f\x32\x13\xc2\x13\xb0\xf8\xa5\x6a\xdd\x7c\xac\x69\x68\xa2\x6c\x9c\x3f\x55\xbd\x2b\x97\xdc\x39\xd1\xbc\x3d\xb0\x1b\xb8\x36\x60\x33\x91\x2f\xa1\x3e\x0a\x8f\xff\x53\x74\x29\x6b\x6d\x09\x47\xd5\xe8\x45\xd7\x3f\xa3\xc7\xc9\x7c\xa9\x94\x40\xa2\x6f\x73\x93\x72\x32\x7c\xd5\x19\xad\x62\x2b\x53\x2d\x4e\x80\xd9\x4b\xb3\x7f\xa6\x01\x19\xcd\x71\xc3\x83\x07\xbb\xac\x6d\xdc\xf1\x20\x60\xc6\xa9\xf0\x89\xa3\x83\x30\x71\xbc\x36\xe3\xa3\xaa\x13\x4a\x76\xf3\x57\xc8\x50\xd2\x16\xdc\xd6\x6d\x50\xb7\x1f\x79\xa9\x9b\xaf\x46\x45\x38\x52\x8c\x30\x08\x3f\x05\x34\x22\x01\x7f\x61\xe2\xe5\x2d\xcc\x83\x6f\x07\x3a\x12\x6d\x21\x19\x9e\xef\x46\x49\x98\x61\x82\xd6\x03\x67\x99\xff\x81\x4f\x14\x3f\x45\x48\x03\xb0\x8a\x9d\xfd\x9e\xa6\x68\xbd\xf7\x85\x33\xca\x7d\x6b\x59\x26\x0a\x8e\x82\x39\xcc\xf9\x44\x05\xd0\x85\x35\xe1\xc8\x66\x35\xfe\x0a\x7a\x54\x52\x0c\x95\xd2\xec\x30\x32\x49\x41\x0c\x0f\x8e\x03\xdb\x93\xf6\x23\x42\x72\x8a\xc5\xaf\x38\x1d\xa3\x0b\x8a\xf8\x6c\x47\x4f\x4d\x20\x32\x07\x02\x6a\xde\xc7\xdd\x5b\x7b\xfd\x85\xf0\x05\x7a\x6b\xae\x1f\xae\xb4\x46\xa6\x8a\x07\xf3\x91\xc2\xba\x67\xd6\xf0\x00\xab\x34\xab\x3b\x4e\x11\xf8\x41\xad\x34\xdd\x42\x24\xd1\x2f\x63\xd6\xeb\x41\xc9\xe4\x5d\xa5\xd5\xf5\xae\xc2\x78\x44\x09\x89\x14\x33\x57\xa3\x14\xca\x15\xad\xf7\xc5\x16\xb0\xd8\xe1\x6e\x1c\x09\x3e\x4a\x84\xf7\x6b\x71\xaf\x0f\x20\x27\x69\xca\x28\x6d\x6e\xca\x05\x3e\x58\xfe\xbc\x96\x96\xe5\x06\x91\x97\x1b\x1c\x5c\xdc\xef\xbc\x91\x4f\x92\xc7\x26\x7b\x33\x62\xa5\x18\x1e\x8c\xd4\xe1\xce\xe7\x4a\xe4\xd9\x26\x83\x34\xcb\x39\x9e\x53\x75\x28\x67\xf7\x5c\x0f\x60\xc9\x0c\xb6\xd0\x1c\x78\xa6\xa9\x06\xe4\x82\x24\x6e\xf2\x32\x8e\x58\x1c\xc4\x51\xe1\x2d\x2c\xc8\x71\x95\xa9\xeb\x81\xaa\xaf\x75\xe7\x8f\xcc\xf8\x52\x39\x62\x39\xee\x77\x91\x83\x96\xe8\xa6\x05\x8d\x96\xd9\xbc\x8c\xeb\x14\x27\x8f\x34\xc5\x89\x5e\x31\x26\x2d\x31\xdb\x83\xb2\x13\xca\x94\x7c\xdc\x56\x07\xc9\xd3\xb1\x1d\x18\x80\x63\xc4\xf3\xfa\xe6\xd1\xa5\xa9\xea\x25\xfc\xe1\xd4\xf3\x99\x95\xb9\xd9\x5e\x19\x41\xe4\x26\xdf\x9a\x2a\x7e\xe1\xe3\xf8\x0c\x0f\xed\x91\xd9\x44\x52\xc1\x7c\x1d\x32\xcd\xd7\x48\x86\x16\x0f\x75\x97\x93\x74\x35\xa1\x6b\x91\xd7\x40\xdf\x25\xb4\x0e\xd5\x7d\x21\x22\xfc\x50\xbd\xe4\x41\x94\x9b\x2c\x33\x6b\x7a\xad\x5f\x52\xca\xdc\x97\x54\xf9\xc6\xe4\x2c\x43\x01\xd6\x6a\xd8\xf6\x3f\x85\xa1\x46\x8d\xe5\x98\x1a\x57\x39\x3a\xf5\x89\x5e\x5a\xa4\xc5\xda\x04\x65\x03\xdc\x35\x38\x5c\xb1\x83\xb9\xda\xc5\xa4\x1b\x6d\x8a\xc1\x93\x88\x46\x63\x34\xb2\x82\xee\x47\x50\x16\xae\x1d\x93\x0d\x4d\x12\xe5\x63\x66\xd1\xc1\x15\xb2\x94\x0c\x62\x7f\xac\x4d\xe6\x3a\x6c\xb4\x35\xc4\x4e\x8e\x4c\x9e\x9b\xa4\xe3\x85\x41\x79\x7a\x58\xa0\x55\xde\x6b\x4f\xcc\xda\xe3\x4e\x80\xe1\xef\xed\xed\xf9\x22\xeb\xe3\x18\x78\x63\x49\xf8\xa9\xf7\x86\xa7\xe0\xf5\x1c\x89\x93\xd3\x01\xdb\x8e\xd6\x20\x02\x3f\x8c\x04\x3b\x31\xa7\xea\x0e\x5c\xed\xdd\xb7\x5f\xb7\xb9\x6c\xda\x24\x18\xfe\xca\x54\x6d\xe6\x7e\xa0\x8c\x80\x36\x93\x67\x5d\x6a\x38\xa6\x47\x46\x0f\x56\x98\x68\xd5\x9c\xf4\x27\xc1\xb3\x7a\xa5\xc8\x24\xe4\x6c\x8d\xbe\x80\x6e\x53\x58\x0a\xfc\x40\x14\xe6\x6c\xf8\xb8\x4d\xe8\x6a\xb4\xd6\xcf\x58\xe6\x50\x28\xff\x7d\xde\xf3\x98\x93\x06\x28\x46\x51\xb2\x9c\x6f\xa7\x9f\x24\x84\xf1\xd5\xaf\x12\x65\x03\x9c\xf6\x43\xfc\x3c\xd0\xd7\x18\x1a\xa9\xe9\x44\x09\x7c\xde\x0d\x47\xbe\xf2\xb7\x68\xbb\x11\xec\xe6\x0f\x9e\x26\x4a\x13\xb4\xfe\xf6\xac\x7b\x0d\xc1\xff\xfc\x99\x75\x6a\x44\xba\x22\xb0\x73\xf9\x9b\x98\x88\x84\x27\x7f\xba\xa7\x6a\xd1\xf7\x49\xd0\x98\xc2\x87\x6f\x42\x8b\x14\x41\xce\x57\xd6\x95\x13\xbf\x45\x03\x8e\x98\xe6\x79\x1c\xcc\xc8\x32\x22\x44\x6f\x55\xe8\x00\xe9\x6e\xf1\xe2\xae\x61\x83\x89\x2e\x84\x2f\xc5\xef\xee\xcd\x1c\xfe\x47\xdf\xf0\xb5\xc7\xdf\xfa\x0d\x3e\x66\x22\x02\x5a\x46\x27\x9e\xa3\xd9\x15\x14\x25\x7f\x41\x6b\x4a\x3a\x58\x0a\x1c\xb0\x6f\x5d\x03\x68\x3a\x3d\xda\xdf\x58\xa0\x33\x6a\xbe\x92\x47\x51\x65\xf7\x78\x22\xc8\xd9\xf5\xce\x6f\xca\x52\xff\x99\x1a\x8a\x79\x76\x9d\x8a\xee\x78\xc0\x8f\x88\x6a\x41\xea\xb6\xde\x04\x4d\xcc\x72\x94\x17\x26\xf9\xe2\xe9\x9d\xad\x49\xeb\xc1\x83\xdd\x7e\x99\x47\x89\xcd\xf3\x38\x5a\x46\x1a\xa5\x39\xf4\x91\x79\x80\x2c\x5c\xe8\x04\x5d\x39\xd6\x66\x2b\x51\x68\x77\xd3\xb3\x77\x0c\xc7\xd5\xb3\xf7\xa4\xaf\x3e\x98\xa9\xe1\xd6\xaa\x55\xa0\x81\x27\x74\xf8\x5f\x75\x31\x35\xed\xb4\xf1\x1c\x19\xc7\x13\xe8\x54\xc8\x3f\xb4\x0c\xef\x17\x51\xb2\x36\xe3\xc1\x4a\x77\xf1\x73\xa2\xd1\xe7\x8b\xfb\xdb\x7a\x4f\xb9\x92\x01\x84\xca\x61\xdf\x34\x4a\x0e\x55\x2b\x60\x44\x50\x79\x6f\x62\x1f\xe6\xe6\xba\xfd\xcc\xbc\x65\x93\x8e\x9a\x55\xfa\x90\xee\x8b\x8f\x03\x95\x28\xc4\x69\x3a\x98\xad\x23\xd1\xaa\xb4\x41\xf7\xe5\xa4\xf8\xe1\x07\x56\xcf\xfb\x30\xd8\xda\xb1\x1b\xd8\xd3\x3d\x65\x3c\xe7\x33\x8a\x99\xec\x4c\x0b\x4b\xa4\x1f\x88\x1c\xd4\x28\x08\xe9\x99\x0a\x07\xa1\xea\x84\x96\xe3\x71\x54\x28\xdd\x8b\x8f\x03\xaf\x18\x75\x1c\x36\x4d\xb5\x99\x5e\x94\xbf\x52\xfc\x0a\x37\x5b\xf8\xa8\x16\xbb\xf9\x88\x66\x7f\x1c\xae\x16\x75\x39\x3e\x6e\x13\x6e\xcc\x6d\x98\x26\x83\x1d\x5e\x57\x92\xc5\x34\x65\x44\x58\x11\x54\x33\x2e\x96\x25\x4b\x68\xc9\x63\xb5\x60\x70\x12\x1d\x9f\x9d\xeb\xbe\x3f\x97\xd8\x68\x38\xea\xa7\x65\x56\xe3\xf2\x3a\xaf\xb9\xbc\xce\x4f\xff\xce\x17\x38\xb5\xca\xd5\x4f\x26\x69\x94\x14\x2e\x79\x60\x7e\x4d\x44\x80\x42\xb6\xd9\x64\x73\x71\x72\x50\x4a\x30\x80\xdf\x84\x74\x4b\x54\x5e\x5d\x98\xb5\xdd\x35\xb2\x9d\x1a\x47\xce\x17\x31\xef\xd0\x57\x3b\xa4\x9c\xa6\xde\xd1\x94\x3c\xae\xa7\x0f\x71\x4a\xcf\xaf\x23\xc9\x2d\x29\x72\x6a\x3e\x66\x26\x48\xe3\x93\xb6\x68\x74\x62\x8a\xc2\x66\xf0\x81\x78\xaf\xc8\xeb\xf8\xb8\x16\x64\x87\xa1\xe9\xf8\x35\xc6\xf8\x01\x3e\x51\xf8\xb1\x30\x36\xe3\xf1\x9a\xe6\x22\x3f\x85\x45\x20\xef\xbd\x59\x09\x9b\x44\x26\x81\x2a\xb8\xa0\x0a\x14\xc2\xc0\xdd\x20\xe9\xb1\x98\x58\xe0\xa8\xd8\xb5\xdf\xd3\x74\x74\xdf\xd3\x69\x22\xea\xbe\xb5\x9d\xea\xaa\x6b\x57\x1a\x95\xa5\xd7\x5e\xab\x7c\xe4\xd8\x54\x9b\x8e\xfa\x00\x28\x47\xb1\x12\x8f\xd0\xcf\xd4\x20\x77\x2e\xa8\xf9\x5c\xb5\x93\xf2\x32\xcb\x6c\x32\x90\xf4\x51\x82\x7a\x7a\x00\x12\xed\x6f\xc5\x25\x54\x59\x41\x86\x67\x2b\x71\xa0\x82\x5e\x5d\x70\x14\xf2\xd1\xc0\x8c\x52\x4a\x05\x45\xe1\xb9\xe3\x28\x47\x39\xe5\xc7\x46\xbb\x1d\x3c\xee\x2c\xfe\x9b\x3b\x5d\x01\xf9\xd6\xdf\x80\xb9\xc6\x9e\x83\xf6\xbb\x0c\x2e\xd3\xd5\x4a\x09\x8e\xbe\x8a\x7b\xd1\x53\x3f\xa0\x76\x49\x31\x9f\x7f\x56\x6b\xbb\x45\x26\xf9\x52\xf5\x77\x5a\x5a\x09\x11\xdb\x76\x30\xe9\x60\x3b\x9f\xc3\x84\x9b\xaa\x63\xcd\x3b\x6d\x11\x45\x71\xf4\x03\xf8\x24\x99\x18\xed\x38\xa2\xd4\xbb\x5c\xba\x03\x98\x9e\x44\xaa\x30\xba\x28\x24\x94\x1d\x84\x15\x0e\xa0\x5f\x45\x3b\x2a\x04\x3c\xec\xb0\x1e\x9e\xc9\xd8\x14\x54\x3d\xc2\x20\x96\xb2\x55\xb0\x2b\x62\xb8\xfc\xd0\x8e\x89\xab\xfc\x95\xdc\x2e\xf7\xfa\x7a\x1e\x1a\xc6\x50\x66\x18\xb2\xfb\x9a\xa8\x72\x64\xa3\xec\x59\x2d\x7f\x5c\x45\x23\x8e\x76\xfc\xeb\xaf\x78\x3d\xbc\xea\x9a\x99\xdd\x84\xde\x10\x7e\x65\x76\xbd\x32\x18\x88\x32\xbe\x8b\xe5\xc4\x02\xf2\x53\xf5\x18\xef\x6b\x22\xea\xbb\xe8\x16\xa2\x2e\xb2\x0d\xaf\x5e\xf1\x97\x08\x6c\xf3\x21\x02\x1b\xca\x26\x36\xbf\xdc\xab\xcc\x0f\x03\xd2\x68\xc3\x00\x9b\xf4\xf4\xba\x82\xd6\xed\xee\xf9\x86\x34\xac\x75\xad\xf4\x0e\x8f\xd2\xa1\xf0\x12\xaf\xe5\xa7\x2d\x75\x80\x43\xdd\xe5\x91\x49\xd0\xa5\x74\x9a\x0c\x0e\xe3\xd9\x2c\x1c\x13\x87\xff\xd8\x24\x03\x12\x7c\x00\x7c\x12\xc5\x5b\x3e\x0e\x3c\x2c\xea\x75\x5b\x14\xd2\x07\xf1\x5d\x92\xe3\x2a\x3f\x3d\xae\x54\x80\x4d\xfe\x84\x23\x07\xfc\xe5\xbf\x4b\x0f\x40\xf0\x06\xf4\x9c\x05\x4d\x5d\xbd\x0c\x5a\x79\x27\x7e\xb9\xe7\x51\x73\x4f\xaf\x2b\xb2\x84\x1d\xeb\x2a\x8e\x7b\xa4\x0a\x3d\x1b\xb4\x8d\x44\x21\x84\x46\x14\x31\x73\xeb\x40\xa9\x8a\xfb\xf5\x92\xd6\xc7\x47\x33\x9c\x6e\x1a\xd9\x2c\x68\xf3\xf8\xb8\xa1\x81\x35\x37\xd7\xcd\x0d\x6a\xe3\x58\xbb\xa7\x03\x45\x6f\xd4\x06\x0e\x3e\xc4\x59\x06\x56\xbf\xc8\x88\x57\xbf\x21\xfa\xe2\x4a\xf8\x3b\x4e\x57\xe3\xb5\x1d\xb4\xc9\x04\x8f\xe9\x6f\xf2\xb4\x1a\xb0\x46\x0d\x46\x73\x27\xf3\xdf\x20\xa2\xe7\x0f\xb7\x4c\xda\x77\x97\x88\xb5\xa0\xa3\xe4\x2b\x58\x9d\x9e\x4f\xda\x78\x46\xa4\x52\xde\xf1\x73\x23\x28\x60\xf0\xb1\x8a\xb8\x57\x4c\x02\x15\x34\x98\x12\xb4\x3a\x1e\x20\x0a\xe0\x13\x75\xc3\x63\x53\x8c\x6c\x36\xeb\xf1\x25\x50\x84\xe1\xe3\xa9\x1e\xa6\x85\x6d\xfb\xa2\xbe\xc7\xcb\xfb\xbb\x79\x61\x33\x9b\x2a\x56\xb8\xab\x8a\xc3\xe1\x6a\x23\xd0\x3f\xb0\xd0\xed\x9b\x70\x79\x62\x07\xc6\x8f\x77\xa3\x84\xf8\x3b\x81\x47\xe6\xfc\x4e\x23\x91\x3f\xb4\x58\xbd\xd2\xcc\x1a\x07\xda\x3a\xe4\xfd\x4a\xf5\x20\xc5\xaf\xb4\x05\x70\x51\xbc\xc2\x69\x34\xb6\xee\x19\x45\xff\x70\x37\xd0\x02\x4b\x5b\x67\xf0\xa8\xab\x4c\x42\x1e\xc3\xcc\x0c\x4a\x79\x1b\xc2\xca\xdd\x71\x62\x95\x1b\x5a\x49\x9e\x43\x57\x1d\xe4\x56\x06\x50\x16\x11\xad\x02\x06\x71\x2b\x84\x09\x37\x56\xe0\x50\xef\xa9\xc0\x3d\x31\xcb\x16\x43\x7a\x70\x91\xd7\xea\x51\xf7\x9c\xcc\x2a\x1f\x6d\x53\x44\x89\x06\x31\xae\x19\x2b\x0d\x05\x1d\x3e\x6e\x13\xff\x21\xbe\x56\x59\xaa\x8c\xd9\x57\x36\xf3\x3b\x0d\xab\xf7\xf2\xfe\x79\x52\xfb\x23\x1f\x8e\xe8\x11\x38\x26\xd8\xfb\x99\x9e\x67\xd0\xad\x15\x23\xc7\x36\x1b\xf2\x12\x70\xe2\x7f\x80\xe1\x0b\x0b\xa8\x03\x07\x96\x59\x5e\x8a\xd9\x53\x35\x93\x17\xdd\xbc\xc3\x56\xa4\x1e\x49\x25\x0d\xa2\xc2\x66\x99\x49\xac\x49\xd4\x16\xba\x31\x55\x60\x9f\x1b\xaa\x13\x44\xe0\xd7\x2c\xe4\x9e\x0d\x2e\xfe\x28\xfb\x66\x84\x0d\xb7\xe0\x88\x24\x01\xf5\x0d\xe2\x7c\xc2\x23\x14\x8b\xfb\x79\xfc\x07\x42\x0a\x7c\xdc\xc6\xd1\x23\x88\x2b\x7c\xbf\x93\x92\xd4\x35\x57\xba\x0e\x7c\xc5\x3d\x87\x2b\x98\x8c\x32\x93\x5b\x25\xcf\xfb\x76\xe0\x43\xe3\xb7\x6b\xa1\xed\xb0\x5c\xdb\xae\x48\x61\xe1\x89\x50\x2e\xfa\x05\xd8\x91\xa4\xd1\x58\x59\xaf\xcd\xab\x4a\x7c\xf2\x58\xdb\x36\x0a\xe3\xd4\x8d\x5b\x68\xa6\x4a\x3e\x56\x35\xe9\x62\x14\xd9\x2c\x5b\x9b\x51\xc9\xd0\xdd\xc0\xe7\xee\x17\xa8\x1d\x2a\x5c\x0a\x7b\xb5\xbe\x86\xc9\xa2\x94\x64\x11\x84\x05\xdd\x17\x86\xae\x28\x68\x82\x29\x8a\x34\x4b\xec\x5a\xbe\xc3\x77\x7b\xee\x4f\xd5\x74\xc7\xfb\xb5\x7e\x22\xbc\x05\x73\x42\xea\x38\xe3\x62\xa0\xb0\x65\x17\xd5\xa5\x8c\xcc\x64\x62\x93\x9c\x2e\xc5\x49\x0b\x38\x40\x50\xb3\xf1\xbd\xb0\x50\xfd\x17\xef\x45\xa6\xf1\xe9\x72\xf8\xa4\xf1\x3c\x17\x16\xba\x45\x99\x24\x96\xf5\x3f\x85\xb7\xd6\x77\x39\x2f\xf8\xd9\x58\x66\x91\xca\x35\x7f\xec\x65\xcd\x1f\x7b\xb9\x85\x74\xb1\x4a\x9d\xe4\x23\x78\x0c\xef\x4e\xd5\x20\xd8\xbb\x6a\xe5\x0f\xd3\x78\xd0\xb7\x19\xb0\x02\x22\xcf\xac\x38\xd5\xce\xd6\x64\x84\xec\xa0\xa0\x9a\xb4\x06\x32\x4b\xf7\xaf\xb3\xb0\xb0\xf9\xce\x17\x36\xab\x6c\x9e\x9b\xac\xa3\x1a\x54\x90\x1e\x91\x46\x91\xd4\x19\xc6\x51\x3c\xb0\xab\x6b\xaa\x6d\x86\xa6\x1e\x1f\xb7\x48\x2e\xbc\xda\x5d\x15\xa2\x79\xc7\xc3\xe6\xe8\x1c\x4e\x34\x94\x1d\x16\x16\xba\xe3\x32\x8f\xc2\xc8\x48\x78\x0c\xbb\xca\xa9\x3c\x9f\xd4\xf8\x66\x4d\x1f\x0a\x6a\x2e\x3f\xf7\x22\x4b\xe7\x1d\xc6\xaf\x4c\x68\xea\xdf\xf9\x35\x84\x1a\x40\xf0\xf0\xb1\xbb\xc9\xd0\xe4\xd5\x26\x01\xd6\x01\x68\x5b\xf8\x02\x3e\x76\xa3\x85\x45\x99\x8d\xd3\x88\x91\xd7\xe8\xd3\x3c\x54\x73\xd9\xd0\x44\x12\x26\xcd\x56\x52\x94\x34\x09\x6d\x26\x8c\x0c\x28\x7a\x1e\xd3\x7d\xda\x63\x2e\x17\x1b\x99\x64\xb0\x36\xe3\x0a\x4e\x7f\xeb\xd9\x9e\xf7\x99\xfb\xd6\x15\xa8\xe3\x4c\x1b\x67\x4f\x66\x07\x65\x68\x07\x94\x68\xa2\xfe\xbd\xa7\xa7\xa8\xca\x36\x95\xde\xe6\x9f\x4e\xd5\xa0\xfd\xad\x86\x4b\x59\xdc\x4f\x0c\x90\x05\x01\x52\x40\x42\xf1\x73\xfa\x34\x1f\x2b\x6e\x84\x77\x68\xfd\xf1\x71\x3d\xb3\xb7\xf9\x57\xc8\xed\x02\xa5\x73\x42\x29\x34\xee\xa4\x12\xaa\x68\x47\xd1\x82\x14\x4c\x3b\x19\x4c\x91\x1d\x55\x79\xc7\x06\x5a\x80\x9c\x5d\x10\x7d\xab\x6b\x42\x2e\x4a\xf3\xf9\x2a\xe2\x40\xe1\x14\x57\x8b\xe4\xba\x36\x41\x3b\xa0\x31\xe1\x48\x5e\x16\x0f\x39\x18\x7d\xbd\x48\x7d\x60\xc1\x29\x6e\xc3\x4f\xf0\x00\x49\xa0\xd0\x40\x1b\x53\x25\x19\x74\x7d\xea\x91\x0b\xbb\x28\x57\x91\x91\x93\xea\xe9\xf1\x4c\xa1\xf3\x25\x6f\x94\xb6\x94\x91\x2c\xe4\x90\x3f\x54\x12\x36\x3f\x54\x40\x25\x42\xbd\x6d\xf7\xf1\x37\xa3\x3b\xb4\x92\x02\x2e\x1a\x99\x13\xba\xbd\x1d\xca\xee\xa4\x1d\xea\x5b\xd1\xa6\x2c\xca\x71\x92\x2b\x75\x71\xd8\x56\x3e\x6e\x6b\x85\x7d\xad\x5b\xbe\xb0\xfc\x82\xb2\x4f\x57\xb4\x7d\x6a\x72\xce\xbe\xbc\xff\x50\x37\x96\x60\xcd\x95\x2a\x5d\xa1\xea\x96\x0a\x86\x4d\x9e\xdb\x0c\x38\x0b\x99\xfe\xf4\xf5\xa0\x7f\xa9\x7a\x89\x61\x9a\xc6\xd8\xd7\xc2\x03\xab\x6a\x90\xcd\xa6\xf0\xfc\x91\xee\x1b\xa5\x59\xb6\x4a\x58\x81\x15\x35\x25\x29\xde\xfa\x89\xd7\x5e\xeb\xe6\xe5\x50\x2c\xa4\x0c\xb8\x7b\xd0\xe0\x45\xa5\x98\x51\x98\x89\xcd\x09\x70\x47\xdf\x2f\x6f\xd6\xd7\x8a\x9b\x0a\x00\x95\x99\x5c\xb6\x76\x42\x69\x14\xab\x97\x2b\x18\xfe\x45\x17\x6e\x25\x26\xcb\x4c\x91\x6a\x49\x88\x0f\x02\x9f\x10\x7d\xa0\x1a\x88\x2c\x15\x9d\x61\x14\x95\xb5\xd2\xa7\x9a\xd8\x27\xf0\x83\xad\xff\x4a\x8b\xc0\xdc\xae\x0d\x8e\x3e\xa9\x7a\x07\x79\xf1\xa5\xca\x8d\x5c\x0c\xd4\x7c\x26\xf8\xbd\x1d\x15\x9e\x2f\x0a\xfd\x9c\x37\x86\xa3\x14\x71\xd5\xb0\x0b\x7a\x96\xe3\x0e\xb8\xa3\x81\xcc\xfa\xa7\x53\xaf\x1f\x8f\x84\x1e\x99\xc0\xc7\x74\xad\x68\x04\xbd\x4f\x63\xb3\x4c\xc6\x0f\xa3\xc0\x1f\x26\x97\x85\x9a\xd2\xc5\x16\xfd\x8d\xc3\xdd\xb1\x2d\x0c\x30\xa8\x32\x44\xd1\x71\x14\x60\x97\xd4\x68\xc6\xd0\x26\x16\xfc\x85\xa4\x57\x00\x58\x1e\xe2\x46\x35\x6c\x3c\xef\x35\xbe\xbc\x82\xcb\x09\xc5\x5d\xb3\x31\x7d\xb6\x49\x56\xba\xff\xf0\x0e\xef\x00\xff\x50\x0d\x6e\x70\x91\x17\xd1\xef\x9f\xe0\x11\xe3\xed\xfc\x54\xe5\x44\xef\x06\x2a\x28\xb9\xa2\x12\xf7\x70\x44\x38\xec\x8e\x12\x7d\x00\x08\x43\x2c\xe6\x13\x6e\x0d\x25\xe1\x9a\x2a\xac\xde\xd7\x85\xd5\xfb\xb5\x78\x22\xb6\xf9\x2f\xd1\x75\xc8\xe4\x78\xf5\xe4\xd1\x71\xbe\x49\x57\x8e\x05\xbd\x6f\xdd\xab\x8e\xbc\x4b\x49\x0f\xab\xc6\x52\x03\x0e\x76\xf9\x1c\xaf\x06\xec\xc9\x63\x9a\x7e\xfb\x3c\x96\x03\x7c\x01\x23\x7d\xb9\xdb\xa2\xa4\x66\x77\xa0\xb0\xc7\xc1\x7f\xe0\x1b\x8b\xff\x60\x9b\xe6\x02\xbf\x83\xd1\x13\x26\x28\x59\x57\x48\x91\x63\x58\x2b\xac\xc0\x4e\xc8\x28\x3c\xc5\x1b\x4a\x9f\x6f\x57\xad\x83\xa7\xa8\xf4\xae\x62\x99\xca\xa0\x87\x6a\x8a\xc2\xfb\x30\xa3\x57\x23\x98\x9c\x9b\xa3\x59\x6a\x4e\x12\x61\x2d\x6e\xd6\xeb\x0b\xf4\x84\x45\xde\x56\x8d\x7e\x9b\x09\xf3\xea\x38\x72\x36\x37\x71\xf7\xc7\xca\x4a\xf6\x33\xb3\x6c\x73\x4a\xf1\x10\xae\xdd\x0d\x6a\x0c\x16\x1d\xc7\x63\x7a\xb6\x6d\x24\x25\x1f\x5b\x1e\x9e\x83\x3b\x60\x6e\x39\x6c\xa3\x8f\xa6\x0a\xe5\x52\x5b\x1a\x23\x33\x78\xd6\x33\xe4\x6c\x04\x7a\xaf\x33\xb1\x18\x16\xef\xa6\x82\x25\x3f\xa2\x05\x81\x84\x08\xf2\x2d\x70\x47\xff\x1c\x0f\x17\x5e\xf3\x8a\x9e\x04\xbd\x83\x21\x55\x04\xb4\x77\x90\x1f\x60\xd5\x70\x0b\x19\x8b\x63\x7b\xaf\x5a\x75\xc8\x64\xbf\xaf\x9c\xc4\xae\x9e\x62\x49\xbf\x5a\xe3\x4e\xd3\xd3\x50\xb7\x34\x6a\xe1\x2a\xd6\x16\x9e\xc6\x76\xea\x9b\xe0\x17\x99\xa8\x15\xf7\x78\x5a\x0d\x1e\x44\x49\x61\x89\x06\x02\x21\x23\x5c\xef\x69\xbc\x57\x3e\x51\xe0\xce\x25\x22\xbb\xa1\x84\x94\x69\xe1\x7b\x9a\x22\x5e\x60\x58\x13\x6b\x96\x67\x6a\x04\x1b\x1d\x47\xd2\xf8\x5d\x7a\xa6\x58\xc9\xd7\x1a\x30\x63\x89\xe9\x57\x6d\x1c\xa6\x63\x74\x17\x60\x6e\xb8\x80\x84\xe2\x36\xa4\x73\xe1\x0b\x98\x8d\x5a\xb8\x0a\xdb\x62\xd5\xd5\x34\x1d\xac\x46\x5c\x0e\x6d\xd3\xbf\xf5\x1e\xb0\xfa\xd3\x70\x54\x86\xcb\x39\x48\x53\xb1\x37\x78\x59\x3a\x51\x53\x05\x9f\xda\xa7\x3c\x39\x30\xa5\x33\x7a\xec\x9d\xee\x16\x9b\x98\x0b\x67\xa2\x59\xea\xb3\xc2\x89\x21\x19\x63\x88\xa4\x0b\xa7\x5f\x6d\x7e\xb0\xa3\x08\xfe\x6a\xb3\x84\x2d\x25\x00\xa6\x08\xa5\x1c\x53\x66\x3c\x3c\x6c\xe3\x8a\xcb\xff\xca\xa4\xcc\x4b\xc0\x1c\x5d\x95\xed\x81\x7a\x2a\x27\x69\x91\x63\x23\xcc\xf4\x9e\x55\xaa\x5a\xdc\xfa\x61\x62\x31\x84\x85\xdf\x52\x71\xf0\xb7\x34\x59\x88\x5d\x35\xd9\x20\x9f\xf1\xa1\xf5\xc5\xa9\xea\x0e\x3e\x54\xea\x91\x57\x74\x64\x58\x54\x21\x85\xc2\xfa\xa2\x8f\xec\xe5\xb3\xc4\x71\x98\x64\x68\x07\xdb\x7d\x18\xc1\xbd\x71\x60\x63\x18\xd9\x84\x32\xcb\x03\x55\x59\xbd\xa4\xb5\x26\xef\x07\x5b\x34\x26\x16\x16\x28\x38\xfc\x0a\x6d\x39\xac\xda\x13\xe8\x35\x38\xa8\x72\xf5\x22\x81\x7b\x90\x3e\x0b\xc3\xb7\x2a\xdb\xdc\x53\xa0\xa2\xef\x4f\x7d\x0f\xea\x5d\xd8\x00\x07\xb4\x72\x85\x52\x8e\x6d\x9c\x4b\xa8\x76\x37\x6a\x37\x00\x42\x0b\xcf\xbb\x9a\x8a\xfa\x60\xaa\x18\x20\xef\xd3\x2a\x83\x3d\xba\x8d\x64\xc1\x69\x60\xce\xcd\x73\x16\xc1\x5c\x38\x32\xa9\x55\xed\x5b\x18\xee\xbb\x41\x2d\x6d\xa9\x16\x2f\x2c\x35\x14\x34\xd9\x07\xba\x75\xd3\x4f\x63\xaa\xce\xd6\xf4\xb3\x00\x37\xe4\x63\x17\xf2\xf5\xd3\x32\x09\x5d\xde\x8a\x5f\xc3\x7d\xf3\xb1\x72\x19\x65\x52\x44\xf1\x13\x74\xeb\xe2\x5a\xab\x6b\xc7\xad\xbf\x33\xf5\x65\xca\xd3\x53\x65\x49\xcf\xab\x65\x37\x4b\x2c\xe2\xe8\x1f\xdf\x0a\x14\x63\x07\x0b\x99\x22\x2d\xfc\x8c\x2a\x46\x60\xa8\xf8\x7d\xad\xe2\xfa\x00\xce\x10\x0f\xee\x3c\xbf\x55\xd4\xde\xdf\x75\xf3\x97\xaf\x9b\x35\x1e\x67\x44\xe6\xfd\xf1\x54\x8f\x51\x6f\xd4\x23\xf1\xad\xc5\xe6\xf9\x23\xdd\xd0\x14\x36\x9b\x44\x71\x6c\x32\xda\x76\x68\x48\xde\x50\x5c\xe8\x1b\x5a\xe5\x6f\xb6\x45\x1d\xf0\xb0\x8c\x19\x21\x1a\x64\x32\x76\x7a\xfe\x42\xcc\x2e\x57\x3b\x28\x59\x86\x5a\x5a\xf1\x1d\xa7\xcc\x52\x67\x0b\x1a\x0e\xf3\x1d\x75\x2d\xca\x39\x51\xc4\x3d\xa5\x58\x48\x58\x96\x0b\xfb\xe9\xb2\x66\x5f\x05\x09\x26\x23\xfc\x1d\x19\xf3\x38\x4a\xd2\x2c\x2a\x10\xb1\x61\x79\x3e\xd2\xc0\xdd\x47\xb5\x62\x48\x52\x44\x80\xcb\xc3\xb1\x7d\x4a\x2f\x8a\x8f\x1b\xc5\x9f\xea\x59\xa2\xb2\x1a\x31\x81\x91\x5b\x04\xae\x8b\xbd\x03\xc1\x15\x7c\xcd\x7b\x6d\xaa\x76\x99\x19\x0e\x65\x21\xc3\x64\xa0\x86\xcf\xc7\xee\x46\x8a\x34\xf3\x08\x13\xd1\xad\xa4\x4f\x09\xd9\x70\x3b\x57\x99\x19\xa7\x25\x32\x52\xae\xee\x6a\x81\x81\xe6\xe8\xe8\xcb\xfb\xe7\xbb\xf6\xcd\x49\x9a\x81\x7b\x12\xc6\x01\x28\x56\x3e\x6e\x1b\x2d\xa9\x75\x65\x7d\x6b\x1a\x25\x79\x3e\x76\xc5\xa4\x30\x4d\x18\x9c\x89\x4d\x89\x4a\xdf\x13\x3d\x0f\x11\x7f\xa2\x01\x69\xaf\x5c\x68\x6e\xed\x32\xaf\x7c\x44\x6a\x00\x66\x22\x70\xbd\x0a\xfb\x85\x6b\xbc\xac\xe3\x3b\x5b\x79\x71\x56\x97\x76\x60\xd5\xc5\xfd\xbc\xaf\x8e\xc3\x56\x61\xd9\x74\x7a\xce\x88\xfd\x32\x70\x71\xac\x70\xa3\x71\x71\x4f\x51\xf2\x2f\xc2\x9e\x0a\xea\xca\xd6\x8d\xf7\xa1\xe6\x8e\x3e\xd3\xa6\x93\x9b\xa7\x32\x00\x2c\x22\x1e\xde\x8e\x5c\x71\x95\x8c\xea\xe2\x07\x6b\x80\x14\xa2\xb1\xc2\xb5\x3c\x61\x50\xf6\x38\xd5\x3d\x3d\xdf\x45\xd8\xc0\xe3\x10\x92\x62\xd5\xc1\x89\x96\x8a\xff\x27\xf6\x69\xd9\xb7\x76\x30\xb4\xcc\x87\xe4\x48\xde\xdc\xac\xdc\xc3\x40\x53\x3f\x55\x1f\x77\x5c\x51\x5e\xd1\xf6\xbc\x2a\x8c\x2c\x99\x28\x2e\x33\x90\xbd\xd6\xc2\x12\xc9\xdd\xb6\xae\xdd\x5f\x23\xba\x92\x91\x2f\xf4\x72\xea\x4b\x1b\x12\xb5\xa6\xa6\x66\x8c\xaf\x09\x16\x29\x60\xb5\x9b\x17\x55\xeb\xed\x7b\x53\xc5\x4c\x70\x46\xe5\xfa\x93\x34\x5e\xb3\x95\x43\xd1\xe3\x80\x6a\x0e\xf5\xc6\x17\xd6\x7d\x63\xbb\x1a\xa1\x4e\xa1\x78\xb0\x44\xf5\xf5\x72\xa0\xb9\x43\x5d\x77\x9b\x11\x7f\x35\xf4\x9f\x8c\x7b\xe7\x65\x96\xa5\x25\x01\x83\x66\xd4\xd0\x34\xc8\x71\x9c\xb4\xaf\x7b\x5d\xe7\x1c\x36\x16\xc4\x1f\x14\x84\x20\x0a\x00\x10\x44\x9e\x14\xdd\x38\x8c\xfb\xf1\x5a\x79\xdd\x8f\x53\xfd\x9d\xbd\x3d\x3f\x9b\x34\x4a\xf3\x49\x54\x98\x78\x56\x69\x98\xa0\xda\x8b\x60\xf4\xdf\xa8\xbe\xd9\xbf\xc1\x3d\xf3\x1f\xb9\x5b\x29\x93\x55\x93\x11\x33\x19\x0f\xcd\xc1\x75\x42\x68\x0d\x7f\xcc\x45\x54\x04\x92\xd7\x5b\x98\x82\xba\x61\x16\x79\x37\x83\xfc\xe4\x1d\x35\x55\xf0\x8e\xd7\xf0\x37\x59\xca\xe8\x04\x78\xa0\x8b\xb4\x52\xf8\x58\x21\x3b\x72\x98\x36\x47\x7a\x73\x52\x63\x88\x4f\x3a\x45\x5b\xbb\x62\xb3\xb5\xd5\x91\xcd\x2c\x95\x30\x90\xda\xec\x55\xa3\x45\x6c\x6f\x24\x4e\xa5\x07\x0c\xe3\xc3\x3a\x18\x82\x5e\xfe\x22\xdc\xf6\x30\xb3\x36\xe4\x31\x5a\xc7\xce\xa5\xd1\x15\xfb\xb6\x88\xc8\x86\x05\xa5\x99\x78\x74\xa7\xf1\x8b\x88\x14\xee\xa9\xc0\xf4\xb2\x92\xcd\xa5\xba\x5e\x75\xf9\x9c\x32\xaa\xd1\xa6\x7b\x8a\xca\xc4\x9a\xac\x5a\x9c\xf9\x1e\x3f\x67\xfb\x1d\x4e\x48\x61\x5b\x19\x16\x07\x3a\xee\xf7\x11\x86\xba\x22\xd8\x01\x49\xd2\x58\x80\xd1\xa9\x0e\x69\xb6\xbf\x8e\xcc\x94\xfd\xfe\x5e\xbc\x73\x38\xdf\xd3\x3a\x2a\xda\x85\x8c\x14\x11\xe8\x4c\xaf\xe9\x98\xba\x13\x93\xe7\x66\x88\xba\x23\x7a\xc9\x1f\x51\x61\x8b\x8f\x1b\x2d\x79\x72\xd0\x44\xda\x9b\x99\x7e\x95\x2a\x38\xc6\x00\xc8\xe2\xf2\xf1\xfa\x17\x32\xb5\xa7\x99\x8d\x86\x98\xf9\xc6\x63\xdf\xa5\x46\x1f\x6f\x69\x31\xd9\xfb\xd3\xad\x8d\xda\xd7\x5e\xeb\xda\xbc\x30\xfd\x38\xca\x47\x00\x31\x7e\xfd\x95\x4d\x42\x64\x6e\x9e\x0a\x9e\xd1\xfd\x3e\x52\xbe\xb3\x34\x12\xaf\x08\xf8\x0e\x08\x99\xcd\x35\x62\x19\x46\xac\x37\x03\x01\x26\x31\xeb\x9e\xb3\x88\x72\xe8\xd8\x86\x45\x69\xe2\x7c\xd6\x2b\x36\x5d\xc5\x13\x76\x8c\x51\x5e\x9e\x87\xa1\x4b\xfc\x67\x6a\x87\x84\x23\x33\x61\x2f\x2e\x60\x97\xea\x01\xf0\x71\x2b\x25\xf4\xaa\x8d\x97\x4c\xc6\x1a\x1f\xa2\xcd\xeb\xb1\xfd\x77\xd5\xec\xf3\xa5\xc6\x83\x7a\x79\xff\xab\xdd\x30\xcd\x32\x9b\x4f\x52\x30\x34\x29\x7e\x33\xc5\x69\x70\x42\xe1\x06\x26\x59\xf4\xd6\x18\x8e\x81\x19\xdb\x11\xf6\x0a\x7d\xfb\xe3\x7e\x9c\x63\x7b\x95\x59\x20\xbc\x7e\x4a\x73\xbb\x5c\x54\x0d\x05\xd4\xf6\xb1\x63\x99\xe5\x02\xbb\xfc\x5e\x1b\x14\x7a\x10\x4d\x10\x50\xa9\x39\x30\x37\x14\xd6\x22\xbf\x32\x89\x4d\xc2\x71\x0b\xaa\x93\x7b\x7b\x0a\x04\x4b\x24\x31\x0b\x44\x8d\xae\x40\x44\xb9\x4d\x20\x4b\x81\xbd\x05\xc9\x01\x37\xf5\xe0\xa5\xad\x2e\xd1\xe2\x40\xb5\x86\x9b\xec\x2e\x7e\x76\x55\xb9\xab\x78\xd5\x4c\xae\xd6\x88\xdf\x0e\xbd\x74\xb8\x7a\x50\x44\xcd\xc0\xa3\xc1\x18\xa5\x3c\xa5\xa8\x7f\x4e\xb5\x99\xe7\xbc\xb0\x63\x0f\x9c\x46\x48\xb9\xa1\xdc\x04\x38\xe9\x6a\xb4\xef\x4b\x20\x43\x56\x28\x65\xee\x54\x0b\x84\xf5\x2b\xfe\x31\xa4\x71\x14\xae\x8d\xd2\x78\x60\x33\x7e\x7e\x48\xdf\x5f\x23\xdf\xc6\x95\x6a\xfa\x39\xd1\x37\x68\x21\x7d\x4f\xac\x1d\xd4\x38\x63\x2e\x6a\xce\x98\x8b\x6d\xed\xbe\xa1\x4d\xb3\x61\x64\x18\x72\x54\x03\x6c\xf2\x49\xf0\xcc\x56\x49\xc8\xee\xc1\x83\xbb\x3d\x5c\xe1\xf7\x34\x5b\xe7\xef\x22\xab\x73\x34\xab\x1a\xe5\x58\xbd\x56\x37\x87\xfd\xb2\xd0\x9e\x82\xda\x52\x14\xd4\x2a\xb3\xa5\x9b\x58\x30\x77\xb7\xd4\x3c\x6e\x3a\x36\x3b\xd4\xd0\xcf\x63\x04\xf8\xc3\xca\x91\xc2\x31\x00\x11\x27\x6b\xb8\x1e\x3f\xa6\xb6\x89\xa5\x83\x45\xff\x97\xda\x85\x98\x2c\xeb\x28\x45\x9a\xab\x8a\x80\xf3\xaa\x8b\x3e\x56\xa2\x3c\x2a\x78\xee\x05\x97\x70\x0f\x76\xc7\xf5\x1e\xab\x6f\x67\xa8\x3f\x7d\x03\x8c\x04\x83\x92\xb1\xbf\x2f\x6b\xd4\x66\x9e\x97\x63\x08\x25\xa3\xdf\xfa\x0b\x14\x32\x19\xa9\x09\x30\x8d\x94\x9f\xb7\xe6\xa7\xd5\x7a\x8e\xcb\x4c\xc1\xc0\x61\x2f\x6f\x2a\x52\xc0\x9b\xad\x60\x9f\x7e\x9a\xf1\x68\x07\xd3\x44\x07\x7e\x44\x4d\x53\x46\xaf\x0e\xd6\x66\x7d\xba\x7c\x89\xaa\x54\x42\xc5\xa1\xf6\xf9\x9f\x28\xda\xd0\x87\xb5\x3c\x33\x8f\x38\xb4\x82\x83\xbd\x89\x07\xc4\x27\x74\x99\x3c\xdc\x1d\xf8\x19\x8d\x4f\x54\x9d\x2f\x1a\x4f\xb2\x74\x62\xb3\x8e\x72\xcc\x20\xcf\xe3\x63\xe5\x61\xc2\x34\x19\x44\x94\x9a\xed\x50\x63\x46\x3c\x96\xae\x74\x14\xa4\xf1\xf4\x48\x45\x4e\xdc\x4d\x77\x74\xf7\xae\x84\x7a\xa6\x61\xc6\xe9\xa9\xa7\xc9\x90\xf4\x14\x65\x87\x03\x21\x03\x1e\x17\x3e\x6e\x58\xd4\xaf\xbf\xd2\x1d\xa7\x55\x6e\x50\x6d\x12\x27\xab\x50\x25\x65\x32\x8e\xe2\xcb\x94\x2b\x26\x0c\xa3\xc4\xc2\xde\x38\x59\x62\x47\x76\x88\x0a\xa0\x0c\x55\x6c\x5d\x17\x8b\xfb\x49\x82\xd8\xac\x38\xc6\x3a\xc4\x2a\x67\x03\x4f\xb0\x78\xb6\x2d\x8b\x0e\x4d\x62\x06\x11\x63\xad\x84\x8e\x86\x56\xae\xf0\xd4\x3c\xed\xc1\x5f\x21\xa9\x17\x44\x61\x07\xcc\xc2\xd2\xf1\xd6\xed\x6f\x45\xc0\x31\x8e\x92\x68\x5c\x8e\xb1\x4c\xe5\xe6\xfd\x70\x45\x13\xf8\xfe\xf2\xfe\xee\xd8\x24\x03\x03\xe2\x9a\xea\x4b\x1d\x33\xa4\x87\x90\xd5\xd6\xda\xf2\x5a\xba\x8b\xee\x56\x8c\xa4\x77\x2b\xa7\xb5\x29\xe4\xe1\x5a\xf8\x95\x0f\x38\x00\x74\xa3\x42\xae\xac\x85\xa1\x12\xe4\x7b\x0f\xa8\x48\x23\x3a\x2b\x12\x8b\xa7\xcb\xb1\x79\xa1\xd3\x99\x9b\xf3\x60\xd9\xea\x8b\x25\x80\xf0\xf5\xb6\x55\x93\x25\xc8\x9e\xa0\x84\xc1\xf4\x8a\x7c\xa2\x1e\xea\x24\x8b\x56\xa2\xd8\x0e\xe1\x9c\x70\x1f\xdf\x57\x86\xff\xfb\x5a\x3c\xed\xcd\x22\x2b\x73\xc1\x87\xbf\xc8\x96\x13\xd0\x63\x3e\x0e\x9e\x55\xe9\x80\x0d\x23\x13\x47\x6f\xd9\x01\x51\x83\x0a\xb1\x38\xed\x14\x96\x47\x9e\x2a\x96\xdb\x9f\x62\xa7\x60\x97\x41\x67\x1d\x6d\x97\x29\x99\x72\xc7\x51\xfe\xf2\x7e\x2e\x5a\xde\xae\xbd\x8b\x15\xbb\x46\x0c\xb6\xc2\xbd\xaa\xca\xed\xe7\xe8\x0a\x81\x21\xe1\xdf\x07\xac\xf9\x91\x96\x4e\x7c\x44\x3f\xa3\x78\x5c\x5f\xe5\x9d\xfa\x40\x0d\x7a\x2e\xfe\xd6\x8b\x1d\xcf\x8d\x7b\x45\x25\xee\x57\x82\x5f\xaa\x3b\xae\x03\x0b\x12\xed\xfe\xf5\x2a\x4e\x42\x68\xf4\x0e\x7c\x14\x82\x26\xee\x35\xc2\x60\x6f\x5b\xef\xbc\x22\x8a\x70\xc7\x00\xe9\x10\x55\x58\x55\x89\x9b\xed\xd5\x66\xf7\xbc\x9c\xf1\xbb\xea\xea\xef\x29\x92\xc5\xd3\x08\x4c\xd1\x3f\xef\xf4\x3a\xbf\xfe\xdb\x8e\x99\x8f\x1e\x37\x3c\xc7\x5f\xe9\xde\xe4\x46\x8d\x82\xe1\xc3\x40\x91\x5c\x5f\x63\x52\x6f\xb8\xe2\x07\x81\x22\x5e\x3c\xa5\xc6\xbd\xf7\xad\x2b\x54\xdd\xef\x51\x48\x21\x20\x3e\xaa\xba\xc3\x1a\x5f\xa7\x4e\x27\xee\x05\xb2\xa8\xc8\x05\xcf\x04\x0a\x9c\x32\xa3\xa0\x4a\xdb\x10\xdc\x31\xec\xa5\x51\xf1\x5b\x58\x38\xdc\xcd\x6d\xbc\xc2\x16\x68\x2f\xaf\x1e\x45\xba\xf3\x17\x6a\x90\x75\x6c\x72\x2a\xd6\x56\x99\x62\xe7\x1b\xb2\xd5\x58\x64\x58\x58\xfa\xbc\xdb\xec\xdb\xb5\x94\xc5\x6c\xf1\x26\x3f\x0a\xfc\xe8\x32\x44\x21\x1c\x11\x41\xf5\x50\x58\xbb\x3c\x50\x57\x7c\x5a\xcf\x67\xfc\x54\x71\x5d\x9f\x6c\xd8\xd3\x2a\xc3\xa9\xd2\xe4\x7e\x3a\x60\x40\xa4\x30\xd9\xd5\xa0\x87\x3e\x0e\xbd\x17\xf8\xe0\x2e\xb3\x2b\x69\x5c\x32\xdd\xe4\x76\x45\xad\x74\x5d\x4b\x8e\xfd\xd7\x9f\x6b\x3a\xfe\x9f\xd1\xdd\x38\x62\x2f\xc7\x5a\xd8\x3e\x63\x3e\x48\xcb\x3e\x52\x66\x47\xe0\xe8\xc7\x56\x6f\xa0\x0a\x8a\x40\xe6\xbc\x4a\x86\x27\x99\x1d\x47\xe5\x18\x39\x14\x16\x21\xa2\x00\x74\xa1\xae\xd2\x25\x08\x96\x9e\xbe\x03\x8b\x4e\xcb\x9e\x95\x49\x98\x8e\xc7\x29\x87\x12\x48\x0c\x18\x33\xc5\x27\x0e\x4d\x50\x98\x64\x39\xdf\x5e\x2d\x2b\x55\x03\x10\x6e\xc2\x7d\x94\x96\xa0\x4f\x80\x8d\x2f\xda\x95\xf4\xf6\xa4\x13\xd5\x54\x9a\xec\xdb\x51\x94\x0c\x66\x3c\x48\xe9\x76\xa0\x56\xdb\x67\x53\xaf\x90\x71\x45\xcd\xfa\xe7\x36\xdc\x5e\x7d\x04\xab\x90\x89\x37\x25\xb6\xa8\x3e\xbf\xc9\x89\x84\x02\x2a\xbb\xe0\xa3\x91\x17\x12\xb6\xa9\x6f\x47\x26\x5e\xea\xb8\x91\xa6\x95\x1f\xd3\xf3\xe3\xe3\xe9\x13\x0a\x57\x6b\x7f\x89\xec\x8c\x12\x97\x97\xf6\xd6\x3e\xaa\xa7\xe3\xf9\x3f\x09\xad\x71\x07\x84\xa9\xd6\x0d\x12\x81\xed\x14\xf4\xc2\x4c\xcd\x00\xb8\x80\x37\xf3\xcd\x40\xbd\xa6\x67\xd6\x15\x20\xe3\xfd\x40\x51\xcb\x6f\x23\xa3\xe5\x34\x3f\x2b\x4b\x83\xf0\xee\x3e\x39\x39\x06\xfa\x04\xd5\x2e\x94\x7a\x6d\x5d\x1f\xce\x95\x94\x66\x01\xb5\x80\xbb\x7c\x82\x3a\x42\x80\xdb\xbc\xc3\x36\x8b\xfa\x5c\xff\xd9\x5e\xc2\x4a\x60\x97\x30\x3c\xc2\xb5\xaa\x25\x2b\x78\x6f\xef\x3a\xd9\x22\x3c\xb0\xdd\x3d\xd5\x3e\x6b\x02\x6f\x5f\xde\xbf\xd0\xcd\x4c\x61\x99\x51\x00\x65\x35\x96\x75\xc0\x32\xf8\x84\x2f\x40\x04\x85\xbd\x02\xbf\x59\x2a\x6c\x26\x3a\x21\xf4\x22\xe0\xae\x4f\x06\x3e\xf7\x3f\xe9\x9a\x6a\xe9\x8a\xcd\xe2\x34\x5d\x26\x1b\xb6\xf9\x0e\x3d\xe0\xcd\x77\xd4\x2e\x1a\x46\xc9\xd0\x66\x20\x42\x7a\xb1\x75\x52\x71\x6b\xda\x45\xd3\xa8\x71\xec\x92\x49\xd8\xa9\xbb\x53\x5f\xf8\x44\x71\x5e\x26\x89\x5a\x6a\x3d\x11\x09\x0a\xa5\xe3\x89\x49\xd6\x14\xdf\xcc\x65\x25\x94\x76\xb9\xed\x77\xc3\xd8\x9a\x84\xa7\x28\x9c\x94\x4f\xf5\xa0\x61\x90\xee\xa8\x96\xd5\xc9\x3a\xbb\xe4\x70\x6d\x57\xf5\xaa\xb0\x1a\x6f\x50\x2a\xce\xc7\xe8\x93\x22\xe9\xfa\x77\xb4\xdf\xe0\xcc\x75\x59\xe4\x78\xe0\x9d\xe9\x1d\xed\x72\xf1\x8b\xc8\x8a\xbe\xab\xe6\xa4\x40\x6b\x90\x99\x21\xb0\x71\x9b\xeb\xa4\x9a\xb6\xde\xb0\x7e\x07\x16\xba\x6f\x95\x59\xc4\xf4\x39\x30\x78\x1c\xb0\xf2\x49\xa3\x69\x3f\x7f\xa4\x5b\xd8\x37\x8b\x88\x27\x2a\x64\x7f\xf9\x46\x56\x73\xfc\x64\x61\xe1\x10\xf1\xd6\xac\xa9\x19\x8c\x3f\xc3\xaf\xf0\x49\xe3\x23\x47\x5e\x62\xa1\x12\x0a\x4f\x98\xaa\x56\x55\xe8\xbd\xac\x69\x6c\x0a\x9b\x3d\x59\x9f\x38\xac\xb6\x34\xf6\xfa\x13\x3d\x1f\x3b\x3c\x86\xdd\x26\xf3\xe5\x10\x46\xc4\xfb\x83\x0b\xd9\x46\xf0\x2a\x3c\xd9\x4d\xba\x23\x84\xb8\xbf\x82\x19\x39\xa7\x70\x7f\x40\x00\x1c\xdf\x9b\x2a\x42\xcf\xb3\x53\xd7\xfd\x9e\xff\x7b\x3d\x55\xd9\x7d\xa4\x1b\x08\x99\x5d\xb2\x59\x66\x07\xb3\x7e\xca\xf4\x18\x7d\xa3\xd3\xa8\xac\x96\x03\x32\x20\x74\x5a\xf9\x58\xa5\x02\xd1\x98\xc4\x68\xb6\xfb\xa7\xf9\xa9\x66\xd3\x7d\x7c\x5d\x0d\x83\xfe\x04\x96\x0b\x8e\x0d\x18\x53\xfc\x55\x53\x78\xff\xc8\x4b\xdd\x49\xcc\x23\x66\xc8\x51\x37\x15\x75\xe4\xe6\xb4\x8e\x4a\x4a\x9e\x56\xf8\xb1\xbb\x04\x58\xc3\x2d\x3c\xb6\xee\x07\x5f\xb6\xc3\x28\x01\xc9\x76\x0f\xa1\x17\x9e\xef\xd3\x14\x08\xa1\x56\x79\x2d\xf0\x84\x15\x80\xb5\xc1\x0a\x5e\x0f\xd4\x98\x0a\x72\x2f\x41\x08\xc2\x3a\xe1\x85\xdf\x55\x4c\x6f\xef\x11\xff\x35\xb6\xe3\x65\x92\x9d\x47\x16\xcf\x65\x0b\xbc\x36\xa6\x18\x44\x44\xc6\x44\x2a\x40\x55\x7f\x80\x10\x10\x05\xc8\x1b\x8d\xcc\xb5\x5a\xc8\xb1\xe9\xa7\x04\x0d\x8d\xac\x4c\xae\x20\xe8\xdc\xd5\xab\x11\xbe\xd0\xa5\x23\x7e\xdc\xb6\xbe\x05\xb3\x41\x1e\x6f\xf1\x10\x0d\x6e\xa0\xf0\xf1\xf1\x54\x21\xcb\x1f\x90\x8b\xc0\xcd\x5d\x0b\xb4\x89\xd6\x70\xdb\x6f\xd7\xa9\x0c\x15\x6b\x40\x98\x59\x9b\x10\x7c\x08\x01\xf4\x4d\x15\x4c\x37\xf9\x00\x5e\xde\x7f\xa8\x5b\x64\x91\xb4\xfa\x1c\xbf\x9c\x82\xa6\xea\xb1\xae\x6c\xc5\xae\x11\xd2\x49\xb8\x29\xe8\x2a\x50\x6e\xfb\x5c\xeb\x89\x80\xb7\x84\xff\x41\x45\xaa\x36\x29\x46\x65\x1e\x99\x9c\x09\xed\xa4\x71\x4c\xb7\x26\x9d\xe3\xad\x11\xe4\xf3\xdd\x32\x21\xa2\x65\x07\xe5\x90\x61\x75\x0f\x5a\xbe\x1d\x28\x94\x52\x6c\xf2\x22\x0a\xf1\xa7\xac\xfc\x01\xef\x2e\x32\x20\x2d\x7d\x56\xcf\x5f\x25\x04\x90\x4a\xa9\xe3\x42\x0d\x27\x64\xe2\xca\x36\xd1\xdf\xaa\x86\xa6\x10\xf1\x5e\x6c\x35\x81\x7d\x93\x47\x18\xc8\x6f\xcd\x76\xfd\xa0\xfd\xeb\xe5\x78\x62\x07\xd4\x84\x90\xb6\x9c\x6a\x66\x02\x8e\x2d\xfb\xf0\x85\x4e\x47\x91\xe8\xd3\x17\xca\x50\x8a\x67\x2f\x30\xe3\x68\xb0\x4b\xc5\x60\x6f\xc3\xea\x01\x60\xb7\xa1\xda\x84\x3b\x08\x21\x27\x9c\x09\x0a\x95\x79\x31\x50\xc4\x6f\x88\xd4\x79\xde\x4e\x33\x26\x5c\x68\x99\x8e\x9c\xef\x92\x00\xcc\x8c\x1f\xbc\xfa\x10\xdb\x4f\x98\x76\xaa\xdb\xc4\x8a\x79\x7b\xea\x91\xe6\xe5\x0b\xf9\x0b\xcf\x54\x4b\x18\xe1\xd4\x2d\x2a\x35\x71\x2d\x90\x2c\x01\xee\xf2\x33\xec\x5e\x18\x98\xab\xaa\xc0\x73\x0d\xc6\x06\xb9\xf8\x4d\x04\x89\x8a\x3b\x41\x1a\x1d\x77\x29\x64\xc3\xc7\x4f\x4c\x6b\x88\x5f\xba\x61\xe8\xff\xdc\xd4\xd4\xf2\x9b\x20\x84\xc7\xd6\xbe\x8a\x7b\x51\x19\xec\x61\xb6\x57\xf7\xb5\x74\x32\xc8\x44\x64\x7a\xdc\xf5\x73\x57\x9f\x59\xaf\x22\x3b\xe1\x14\xf7\x2b\x20\x33\xc9\xb2\x1d\xec\xf4\x38\xa2\x5d\xbd\x1a\x58\x87\x2e\x54\xe2\xf2\x6d\x5f\x63\xcf\xfb\x09\x3d\x4b\xc4\xa2\x90\xbc\xc5\x37\x5f\xa7\x9b\x64\x2d\xda\x2a\x94\x16\x80\xe4\xc8\x50\x71\x52\xc6\x13\xfc\x70\x00\x70\x47\x7c\x3c\xdd\xc2\xe2\xe6\x36\xf2\x60\x10\x41\xd6\x1f\x99\xfd\x19\xca\x8c\x35\x62\x11\x2e\xe8\xbe\xa2\x59\xed\x97\x51\x3c\x88\x92\xe1\x1e\x58\x4e\xf8\x82\x6f\xd3\x1f\xc3\xaa\x6d\x43\xe4\x2a\xb4\xd8\x95\x05\x77\x93\xa1\xd5\x13\xe0\x19\x0f\xba\x23\x0c\x55\x1f\x57\xaa\x27\x27\x95\x3e\x29\xd7\x13\x84\x53\x5b\x01\x60\xde\xa5\xe7\xc4\x22\xed\x0d\x16\xe2\xc5\xfd\x8b\xdd\x09\x49\x87\x08\x0b\x31\x42\x8e\x7f\xa6\xc2\x8f\x7f\xd6\x68\xd6\x2e\x2c\x74\xa3\x64\xc5\x26\x70\x0c\x1d\xe5\x46\x18\x85\xc1\x27\x5f\x08\x22\xcd\xd3\xb2\x18\x99\x31\xbb\x14\x27\x1b\xe7\x82\x53\xa6\x43\x40\x49\x7f\xb3\xc5\xc0\x1c\xee\x66\xd1\x70\x54\xd0\x84\x8a\x74\x78\xab\xfb\x44\xd1\xa8\x83\x88\x04\x37\xfd\x3f\x2a\xdc\xd0\x09\x5d\x41\x3a\xe7\x02\xf7\xd0\x64\xd9\x1a\x31\xb5\xbb\x1a\xde\x31\x85\x8e\x3f\x8d\xed\x21\xeb\x6b\xaf\x0a\xf7\xc3\x74\x2c\x0f\x40\xe1\xed\x7d\x87\x77\xab\x69\x9f\x3f\xd2\x1d\x66\x66\x62\x57\xa2\x04\x0d\x5b\x86\xbb\x51\xec\x21\xd0\x37\xb5\xea\xb2\x72\x02\x9e\x17\xee\x9b\xab\x91\xce\xb3\x0d\x8f\x2d\x4f\x57\xba\xbb\x3b\xaa\x75\x5d\x53\x20\x90\xa4\xdb\x0b\xf4\xfd\x52\xcf\x35\xa1\xff\xfe\x63\xeb\x0a\x10\x71\x49\x21\x17\x8f\xbb\x96\x46\x99\x4c\x4c\x04\xd4\xb9\x34\x1d\x3a\x0b\x35\x5e\xb3\x79\x37\x10\xdb\x22\xfb\x9b\x97\xf9\x24\x0a\x23\x82\x5e\x2d\x0a\xcc\x1b\xeb\x98\x8f\x6b\x70\xf0\x32\xa1\x1a\xc8\x61\x57\x9e\xf1\x29\x07\x88\x0c\x6a\xc4\x24\xfc\x47\x81\xe2\x3a\xb9\xac\xca\xaa\x4b\xb1\xb5\x05\x32\x2f\xd7\x25\x3f\x78\xd0\x75\xc9\x5b\x64\x56\xe2\x14\x33\xdd\xb8\xb4\xc7\xd7\x7d\x15\xfd\x36\x2c\x21\xac\xcc\x71\xba\x14\x64\xbf\xbb\x29\x7b\x95\xe9\x3c\x3f\xe5\x52\xbe\x90\xbc\x50\x0f\x39\xe8\x51\xf9\x98\xc3\x0d\x25\x93\xc4\xd9\xae\x8e\x53\x86\xc7\xee\x47\x99\x13\x64\xdc\x78\x89\xc7\xc9\x6a\x49\xd5\x87\x1e\x00\x56\x2b\x7a\x9f\x6a\x6a\xea\xb0\x9b\xb1\xf7\x33\x35\x9f\xd6\xea\xaf\x23\x53\xfc\x8d\xea\x43\xec\x99\xd0\x47\xa2\x6f\xfb\x93\x67\x51\x0e\x44\x9d\xf0\xab\x3d\x35\x64\xbb\x97\x8a\x9e\x78\xf3\x3f\xa4\x15\x25\x7c\xf2\x94\xb4\xcb\x20\x27\x3d\x28\x56\x3f\xe0\x48\x16\x81\xdf\x67\x53\x2d\x32\xf8\x09\xdd\x26\x3e\xf4\xbf\x2a\xc6\x8a\xe5\xaf\xf6\x94\x1c\xf9\x6d\x25\x73\xc9\x34\xbc\x78\x32\xdf\xc2\x7c\x33\xe2\x9d\xfb\x68\x2b\xa0\x3a\x70\x53\x6b\xf0\x6d\x07\xb7\x87\x54\x14\x7d\x0d\xee\x67\x28\x6e\x0a\x95\x09\x65\x9d\xb8\xe7\xf7\x89\xe3\x04\x5f\x7c\x96\x4c\xb4\x8c\x5b\xf8\xc1\x9d\x33\x9a\x7e\xac\x43\xc1\x3e\x2c\xe0\x6d\x70\xcd\x89\x58\xf3\x56\x3b\x3a\x37\xd7\x35\xd9\x30\x65\xea\x5b\xf4\x72\xf1\x4b\xbf\xe0\x47\x85\x8c\x87\x7b\x10\x08\x42\x9a\x34\x24\x07\x0f\xd2\x20\x27\xa3\x13\x58\x86\x90\x6e\x4e\x24\x09\xbd\xb3\x2d\xcc\x72\x94\x0c\x77\x57\xaf\x0b\xc1\xce\xff\x81\xf0\x08\x35\x9a\xf7\x68\x89\xe0\xc1\x3f\xbd\xee\x73\xbf\xa7\xd0\xfd\xf7\xa4\x41\x8c\x04\x78\x63\x5f\xcf\xd7\xfa\x35\x54\x91\xdf\xbb\x80\xc6\xb6\x9a\x41\xa2\xdd\x4e\xf2\x34\x2b\x22\xa3\x79\x47\x8f\xaa\x42\xf4\x51\x37\x11\xbb\x54\xbe\xf5\x96\x1b\x9d\x15\x39\xed\x8e\xd2\xd9\xde\xea\x66\x2a\xaf\x86\xaa\x4d\xb4\x62\x19\xe1\xe2\x06\x0f\xfd\x10\x62\x0b\x87\x93\xc9\x97\x25\xe6\x86\x35\xfe\x11\x6c\x1a\x9f\x34\xfc\xe7\xc2\x42\x37\x37\x85\x8d\xe3\xa8\x90\xc1\x4a\x54\x2c\xd1\x93\xe6\x63\x67\x3e\x97\x32\x9b\x84\xa3\x1d\x78\xb7\x9c\x78\x05\xdb\xbe\xe6\x08\x7a\x5c\x1b\xfa\xbf\x78\x66\xdd\xc5\x43\x07\xff\x7f\x88\x87\x60\x97\x77\x2b\xda\xac\x3b\xad\x44\x28\x63\x93\x2d\x2f\x9b\x4e\x65\x88\x1c\xcb\x82\x4f\x37\xce\xa8\xd2\xe6\xc4\x02\xce\xca\x0a\xa6\xaa\x75\x74\xac\x46\x8c\x54\xd8\xf1\x33\x1d\xa7\xcc\x3e\xdb\x53\x65\xc4\xbb\xd8\x2b\xd8\x07\x3c\x4a\x03\xb8\xc9\x31\xae\xaa\xe1\x0b\xdf\x41\xb6\x04\xcf\x0b\xdb\x05\x43\x7e\x7f\xaa\x7a\xd1\x8c\x57\xe1\x02\x3c\xcd\xf5\xa0\x9c\xf1\x1d\x5a\x73\x30\x3c\x1b\x4a\xf6\x89\x89\xff\x5c\x63\x79\x51\x82\xa3\xdb\x64\x91\x18\x18\x01\x63\x0b\x33\x8e\x19\x2d\x06\x6d\x05\x8a\xae\x0f\x45\x10\xc0\x54\x77\xaf\x0b\x5e\xcf\x8e\x27\x23\x93\x47\x6f\x49\xeb\xd6\xa1\xbd\x7c\x55\xf6\xfd\xc6\xaa\x38\xb0\x40\xd4\x25\x76\x9c\x26\xc5\xa8\x53\xef\x66\x39\x1a\xa8\x73\x08\x6b\x38\xc7\x62\x70\x0b\xd1\xd0\xb3\xc2\x29\xf6\xe7\x3b\x53\x35\x6c\xf4\x4e\xa3\x42\xb5\xb0\xd0\xed\x47\x54\x20\xd4\xc9\x56\xa0\x6a\x95\x4d\xc9\xa0\xc5\xfd\x5d\x13\x3a\xb8\xab\x34\xe7\xe8\x67\xa4\x73\xd0\x02\xea\xce\xed\xc4\x88\x6a\xfd\xe2\x7e\x47\x30\xd5\x71\xf2\x62\xe7\x6a\x74\x0a\xe3\xb1\x09\x97\x51\xb4\xc4\xb2\x01\xb3\x28\x77\x5b\x95\x26\xd8\xd5\x36\x3a\xf4\xbe\x09\x97\xf3\x22\x9d\xd0\xac\x0c\x5e\xfb\x37\xe9\xfd\xf0\xb1\xca\x7e\xfb\x26\x09\xd3\x6c\x02\xcf\x2e\xda\x61\x1e\xa1\x73\x51\x53\x0c\xda\x8c\x9e\x6e\xb5\x62\x19\xd1\x47\xc9\xa6\xa0\xfb\x04\xe5\xbb\x3a\xb2\x89\x9f\x8a\xff\x5f\x38\x78\x82\x29\xbc\x06\x93\x0e\x5b\xfc\x58\xef\x19\xf5\x0e\x97\xe2\xca\xe2\x24\xc3\x1d\x7e\xe2\x62\xd7\xba\x4a\x25\x09\x38\xb4\xc9\x59\x94\xd0\xaa\x2a\x5d\x8e\x5b\x48\xe3\x84\x7c\x75\xeb\x3b\x78\x65\xfe\x88\x5f\x28\x88\x39\x61\x96\x2e\x61\x13\xf0\x89\x6a\x10\x9b\xa4\x88\x56\x22\xd2\x91\x5f\x14\x31\xc2\x3f\xa5\xd7\xc0\xc7\x0a\x81\xb4\x1a\x65\xb6\x30\x13\xba\x6d\x07\x92\xab\x6e\xdb\x49\x9e\xce\xcd\x3b\x36\x0c\xdf\x54\x2d\xca\xc9\x4c\x8d\xf8\xbf\xe3\x08\x7e\x6f\xd1\x2f\x09\x35\xdb\x33\x8a\x08\x26\x1a\x62\x0e\x56\xcd\x8b\x02\x6e\x2d\x4d\xa3\x16\x8e\xbf\x55\x4b\x24\x46\x9d\xba\xc0\xf6\xc2\x82\x83\x55\x37\x81\x58\x87\xba\x99\x25\x84\x28\xfd\x0e\xf2\x36\x56\x25\xe3\x93\x16\x79\xe9\xbc\x1c\x0e\x6d\xee\xe0\xb9\x52\xeb\xa9\x15\x73\x3d\xc4\xf5\x42\xc3\xb5\x1d\x79\xc9\xe5\x46\xa8\x2e\x0a\x59\x5b\x47\x09\xf6\xb5\x90\xad\x0c\x6d\x52\x70\x99\xb9\x0d\x1e\xf2\x65\x85\x99\x66\x2d\xbc\x34\xc9\xc9\x8f\x0b\x19\x20\xcc\x2d\x92\x83\x6b\xda\xaa\x62\xde\x12\xd8\x33\xe8\x00\x20\x85\xbf\xa9\x38\x6b\x1e\x04\x9e\xcb\xe6\x41\xf5\xae\x37\xf9\xf5\xcb\xf4\x54\x1b\x5f\x95\x89\x92\xd8\x24\x48\x07\x1c\xa6\x71\x61\xc1\xcf\x78\xf9\x8a\xd2\xc9\x86\x49\x39\x78\x50\x84\x8f\xfa\x7c\xdf\x22\x35\xee\x5b\x98\x9b\xd3\x2d\xc5\xc4\x6a\x0f\xbc\xbc\xff\xd0\x76\x55\x13\xf8\xc5\xd4\xa7\xad\x1f\xaa\xb4\xf5\xc3\xa9\x9a\x89\x38\x8e\xac\x40\xc8\xe6\xb6\xca\xe5\xcc\xcd\x53\x77\x32\xc9\xd3\x38\x1a\x18\xe1\x1a\x47\x86\xc3\xa5\x34\x3e\x51\x73\x51\x85\x79\x93\xe5\x84\xb0\x9a\xce\xab\x94\xe4\xd4\xb4\x0a\x8e\x91\x1f\xdc\x56\xd5\xec\xd7\x4d\x3e\xae\x52\x3f\xda\xe8\x92\x32\x77\x1c\xa1\xdb\x39\x2f\x9e\x69\x8b\x54\x32\x4b\x54\x85\xb8\x44\xc5\x27\x0a\x44\x5f\x98\x70\x99\x39\xde\xf1\x2d\xac\x09\xc0\x27\x8d\x24\x9c\x0a\xb2\xae\xb2\xbb\xa6\xc8\x25\x6f\x2b\x72\xc9\xdb\x5a\x59\xca\x64\x61\x6c\xb8\x9b\x2d\x72\x2b\xf4\x40\x45\x14\x9a\x1e\x11\xa2\x9d\xf7\xda\xa8\x60\x63\x43\x9c\x5a\x4e\x9c\x1c\x15\xe8\xe3\xba\x1c\x7d\xbc\x0d\xd4\x93\x56\x7b\x7e\x35\xca\x6d\xc7\x4b\xe0\x5c\x56\x84\x63\x97\xa7\xf5\xc9\xf2\xb5\x5d\x3e\x4e\x61\xf6\x05\x09\x48\xb1\x3d\x10\xaa\x62\x82\x52\xb7\xe2\xa5\xf7\x44\x37\x22\xa5\x3b\xc5\x6e\x08\x3b\x2d\x64\x26\x6d\x05\x89\x49\x6c\x42\x86\x2f\x30\xa6\xb7\xc6\x24\xaf\xe5\xbe\x26\x36\x19\x58\x9a\x97\x77\x5c\xe3\x1b\x8a\xb1\x7d\xa3\x11\xd0\x12\xaf\x27\x43\x51\x65\x6a\x8b\x67\x20\xd6\xd5\x6c\xc9\x36\x27\x59\x17\x9b\xa2\x88\x42\x94\x18\xe0\x4f\x7e\x4c\x1b\x9c\x8f\xdb\xfa\x7d\xfd\xd8\x8e\xa3\x1c\xc2\x7e\xc8\x1b\x4e\x2a\x66\xf3\x93\x81\xe3\xdf\x1e\xff\x0d\xbf\x4a\x90\xf8\xb1\xc2\x38\x45\x75\xb0\x17\x0f\x28\x53\x92\xd1\x6b\x24\x7a\x6e\xe4\x75\xfe\x88\x6b\xb3\x54\x51\x1d\xfa\x22\xb3\xeb\x94\x75\x0a\xc7\x3b\x65\x70\x28\xe0\xdc\x21\xf2\x15\x47\x4d\xfd\xf5\x57\x38\x18\xba\xa3\x1a\x3c\x77\x91\xff\xd1\xe6\xfb\x8f\x9f\xa6\xb9\x6d\x58\x90\xf3\x14\x44\x72\xc9\x14\xcb\x0d\x57\x7e\x0d\x16\x01\x3f\xf1\x6f\x51\x3e\x43\x49\x64\x3b\xc8\xb3\x11\x9d\xec\x02\xad\x2d\x6a\x69\x3c\x3e\x84\x2a\xe5\x8d\x40\x4d\x8c\xec\xa1\x36\x39\xfc\xde\x8f\x03\x35\x86\xf8\xae\xaf\x8f\x6c\xdf\xd7\x53\x70\x90\xff\xff\xba\xd2\xde\xf9\x9f\xfe\xda\x3a\x59\x04\xc1\x78\x35\x13\x93\x51\xda\x4f\x73\xcc\x21\xa3\x76\x78\x4f\xeb\x1c\x63\xda\x08\x6e\xfb\x14\x9e\x1d\x1c\xd7\xbf\xa8\xde\xb4\x9b\x7b\x28\x93\xc2\x66\x4a\x2a\x70\x6e\xce\x93\x25\xf8\x04\xf3\x7c\xa0\xf4\xdd\x26\xc6\xd3\x1b\x09\x31\x85\x6f\x79\x5d\x56\xdd\xbe\x37\x4a\x13\x47\x4b\xc2\x2a\x0a\xd3\x07\x95\x70\xd4\xf7\x20\xc4\x24\x33\x61\x5a\x96\x68\x18\xa5\xc9\x8c\x2a\x47\x5f\x53\xc3\xfd\x3f\xd1\x5d\xc7\x8d\x40\x49\x69\x91\x92\x8b\x52\xd4\x83\x24\x2f\x1f\xbb\xf9\xc0\x28\xaf\x3c\x14\xcf\x30\xc1\x86\x9f\xd4\xf4\xa6\x27\xd5\x57\x92\xfc\xc2\xac\x1f\x2b\x38\x17\xe8\x8a\x8d\x62\x15\x7f\x30\xf5\xb8\xf3\x47\xb5\x8a\xd5\x60\xfc\x02\xe2\x06\x7e\xfb\x6a\x3a\x96\x29\xac\xa5\x39\xd9\x42\xe9\x50\x44\xe3\xbe\xcd\x66\x7c\x13\xf8\x77\x60\xf2\x51\xae\x38\x5f\xe3\x0a\x53\xe4\x8e\x65\x6e\xcb\xf1\x76\x35\xe4\x73\x8c\x43\x01\xc4\x0e\xbf\xa0\xcf\x01\xc3\x75\x52\xd3\x07\x60\xc2\x1b\x76\xf4\xaf\x54\xad\x2a\x4e\x57\xec\x76\x55\xd2\xdc\x08\x54\x6f\xe4\x98\x66\x3c\x62\x29\x54\x6c\x81\xa3\x7a\xb4\xef\xa8\xf2\x79\xd6\xe4\x91\xcd\x8b\x0e\xed\x2a\x79\xb2\x1d\x47\x91\x75\x4e\x41\xfc\x63\x6b\x26\x94\xca\x2c\xca\xd0\xc2\x29\x7a\xd4\x7c\x5c\xa3\x5c\xec\x13\xe5\xe2\xcb\xfb\xbd\x08\x75\x75\x6b\x4e\xca\xca\x0d\xa4\x68\xd8\x00\x8b\x9b\x8b\x52\xf5\xd6\x6d\x36\x37\xd7\x1d\x98\xc2\x6c\xf7\x82\xa0\xe7\x6a\xfd\x80\xc0\x17\x38\xf0\xad\x22\xb9\x42\xdf\x2a\x51\xcf\xd6\x4a\xe2\x6b\xaf\x75\xf3\x65\xb0\xc4\xa3\x0a\x05\xe9\x1a\xd7\x3b\xf8\xad\xdf\x70\x9d\xde\x2f\xa9\x97\x10\x2e\xe7\x24\x40\x27\x6c\x74\x14\xf8\x4a\x00\x5e\x5b\x73\xb6\xdf\xe9\x28\xfd\x45\x4f\x5a\xf1\x91\x6a\x46\x0c\x33\x93\xb8\x11\x03\x18\x3a\x0c\x43\xf0\xb1\xd6\xb1\x8a\x86\xa8\x45\x39\x94\x6e\x6d\x3e\xc4\xa1\x8e\x1e\x34\xb2\xd1\x43\x2f\x1d\xee\x86\x51\x16\xb2\x5a\x26\xfe\xec\x2f\x03\x15\xb8\xfc\xa5\xea\xaf\x16\x59\x19\x2e\xe7\x7b\x94\xd4\x0e\x6b\x2b\xa2\x90\xf8\x87\xf4\x53\xff\x37\x5f\x7f\x1a\x23\x49\x7a\x9f\x89\xe1\xdd\x59\xd5\xe7\x9c\x9c\x83\x14\xff\xcb\xbf\x9d\x12\x64\x0f\x6c\x8f\x06\x96\x0c\xc3\x00\xbf\x44\xaa\xaa\xc8\x61\x17\x34\x35\x8d\xea\x56\x8f\x76\x60\xc0\x7c\x2b\xf3\xad\xca\x98\x8a\x8c\x48\x46\x44\x56\x4d\xf1\x93\xb1\x58\x7f\x33\x0c\x1b\x5e\x18\xb2\x60\x2c\x76\x8d\x35\x65\x4b\x5a\xad\x24\xca\x2b\x69\x29\x31\x8b\xc7\x88\x97\x48\x0e\x87\x73\xf7\x90\xd3\xf7\x7d\x5f\xd5\x67\xb5\x11\xef\xf3\xfb\xbd\xef\x93\x95\x31\xfa\x32\x88\x98\xae\xcc\x8c\xe3\x7d\x7f\xe7\xf3\x7b\x1e\xd8\xf7\x77\xdc\xee\x23\x51\xa2\x19\x3f\x09\x4f\xbd\xe4\xbf\x27\x85\xe4\x1f\x38\x6f\x84\x1f\x3d\x16\x7d\x32\x91\x5e\x68\xbb\x1d\xab\x1b\x7a\x58\xcc\xad\xed\x64\x3d\x52\x23\x7b\x8f\xd4\xc8\xde\xab\x89\x04\xf6\x37\x97\x4c\xa9\xa1\x1b\x6c\xf5\x5f\x32\x7b\xfd\x5f\x12\x74\x25\x89\xbf\x32\xa8\x02\x4e\xcd\x85\x64\x94\xd5\x39\x36\x1d\x6b\xe5\x42\x4c\x5b\xf4\xbc\xf1\xb4\x24\x42\x57\x85\x30\xf7\xe8\x34\xfc\x1c\x9f\x47\x9a\x71\x63\x83\x5e\x1e\x15\xd6\xeb\x1e\x01\xb4\xee\x8d\xd4\x84\x7b\xd9\xc2\x04\x0b\x90\x52\xfe\x72\x07\x2f\x40\x65\x83\x3f\x45\x29\x70\x95\x12\xd8\xce\xce\xc0\xac\x00\x82\x11\xb4\x11\x84\xb9\x0c\xfb\x64\xfb\x7a\x70\x07\xb7\x68\x12\x4a\xa6\x80\xb4\xa3\xa0\x93\x87\x1d\xdb\xcb\xda\x55\xd6\xd8\x9e\xf0\x50\xb9\x5b\x9f\x6b\x85\x00\xe5\x1e\x99\x9f\x27\x3e\xed\x95\x6b\x5f\xb3\x8b\x8b\x36\x2f\xb2\x54\x09\xd7\x51\xfb\x3b\xc5\x1a\x6e\xa7\x28\x39\x4d\xb3\x74\x35\xcb\x97\x61\x84\xa6\x02\x29\x97\xa7\xd9\xb9\x50\x43\x47\xe8\x4c\xa6\xb3\xdb\xa8\x08\x41\xc3\xc1\x4b\x2e\x78\xc0\xc6\x46\x1d\x8c\xbe\x18\x2c\x0c\xf2\x05\x83\x82\x83\x9f\xb2\xf5\xac\xbf\xe7\xd9\x01\xbe\x57\xc7\xaf\xdb\xcf\xb3\xa5\xdc\xf4\x7a\xc6\x61\x00\x02\x2c\xe3\x32\xe1\xb0\x2f\x93\xe9\x4c\xed\xaa\x33\xc7\xd5\x72\x81\x8b\x00\x9a\x47\x8e\xa3\xe0\x09\x3a\xb6\xfd\xc2\x6e\x6a\xe8\xed\x68\x51\x98\x70\x7f\xc8\x65\x4c\x54\xb6\x94\x64\xb5\xe1\x55\x60\x6e\x46\x24\x82\x7f\x8a\x76\xb1\x60\x6d\x95\x9d\x79\x6b\x8d\xea\xb9\xe7\x9a\x5f\x19\xc4\x3a\x91\xa0\x38\x86\xea\xe3\x0a\x70\xd8\x5a\x4c\x77\xad\xcc\xd1\x79\x2d\x95\x38\xad\x2e\x47\xa5\x4f\x1f\x23\x95\xcf\x14\x1c\x0c\x70\xb6\xf7\xa2\x90\x47\xde\xa3\x34\xcf\x59\x00\xe7\x91\x7c\xfc\xb3\x6f\xce\xc7\x3f\x35\xc6\xde\x93\x37\xfa\x46\x5a\x90\x0e\xc4\xcb\x84\xbd\xd9\xde\xaa\xd1\x84\xed\x0f\xf2\x76\xd7\x14\x3e\xe6\x42\x7b\xe3\x26\x11\xdb\xdc\x1c\xb3\xba\xd5\xde\xee\xb9\x4c\xa9\x11\x12\xfd\xb3\x28\x33\xc9\x49\x5d\x23\xb2\x6d\x4a\x48\x91\x34\x68\x00\xc8\x3d\x04\x1d\x06\x0a\xd3\x8f\x4b\xb9\x91\x67\x8a\x64\x0d\x26\x4a\x8e\x09\xe3\x9b\x2d\x2e\xc6\xed\xd8\x24\x7b\x69\x38\x0a\xc1\x29\x1e\x06\x98\x1c\x61\x52\xb6\xa1\xb5\x84\x8a\xeb\x45\x57\x96\x45\x60\xf2\x10\x97\x2e\x9f\x70\x2f\x5d\xc7\x19\xab\x47\xaf\xf2\x11\xee\x19\xcb\xa7\xb9\xbd\xb9\xbb\xf5\x89\x6d\xe7\x24\x5b\x55\x41\x6e\x58\x8d\x87\x34\xb8\x75\x09\xd1\x0c\x0a\x59\x57\xea\xba\x2c\x34\xb2\x88\x8b\x78\x37\xa2\xfd\x76\x9c\xb8\x14\xc7\x19\x24\x5c\xbd\xa4\x1c\xe4\xea\x19\x54\xce\x82\xb5\x2d\x6a\xbc\x09\xfc\xb6\x7c\x06\x88\x88\x37\x22\x22\x70\x7a\x83\xfc\x69\x6e\xcd\x92\x49\xf7\x12\x4b\x89\x88\xf0\x22\xbc\x78\x64\x9d\x66\x8c\x91\x6f\xe2\x1f\x24\x95\x90\xb9\x8e\x28\x0c\xb5\xa0\x40\x34\x82\x0a\x56\x5e\x26\xce\xa6\xdf\xa3\x56\x71\xa3\xb5\xd5\xc4\xcd\xce\x36\xed\x20\xcf\xfa\xca\xca\xec\xcc\xff\xfe\xa7\x5a\x21\x66\xda\xff\xd4\x7a\x0d\x01\x7c\x2f\x2e\x1b\xcc\xee\xf6\x36\x3b\xd1\xb7\xb7\x8e\x1a\x4e\xcf\x34\xa7\xa7\x9f\xa8\x5c\x0a\x62\x35\xe8\xd9\x6a\x25\xa8\xba\x0d\x04\x74\x32\x74\x87\xa8\xe2\xaa\xf3\xfe\xd8\x9a\xdb\xd7\xc9\xa9\xfd\x11\x2a\xb1\x4a\x27\x40\xc0\x2a\xc9\x47\x90\x6a\x6d\xc2\xe7\xaa\x32\x87\x8b\xd0\x04\x6a\xdd\x0a\x7e\xf5\x47\x34\x87\x7e\xdf\xd5\x14\x84\x74\x68\x18\xa8\x08\xc7\x4b\x9e\x87\xa6\x9a\x8b\x71\x6a\xd2\x36\x4b\x88\x9f\xa2\xe5\x7a\x8a\xde\x7c\xe2\xd8\x52\x26\xc3\x3e\xbe\x85\xae\x1e\xe2\x4d\xb8\x57\xa5\xed\xaf\x9e\x85\x12\xe1\xd5\xb8\xa3\xbe\xed\x74\x12\x8d\x13\x91\x4f\xdc\x45\x3b\x41\x4e\x68\x0c\x72\xc9\xe4\x6b\x30\xd0\x68\x35\x9c\x27\x25\x83\x3a\x64\x6c\xb3\xe8\xba\xb0\xd6\x2d\x66\x3f\x46\x54\xbd\x0f\x5d\x7b\xe3\x25\xa0\x57\x9b\x6d\x33\x28\x1d\x64\xc0\x59\x05\x4f\xf0\x31\x3b\xab\xc7\xc4\xa8\x01\x8e\xc5\xe4\x09\xaf\x03\xfa\xdb\x27\x58\x35\xed\x8e\x7b\xe1\xf0\xa5\x02\x14\xf0\xea\x70\xd5\x3b\xf6\xe8\x6e\x3f\xe5\x20\x90\x3f\x84\x23\x82\x91\x93\xcf\x13\xea\x07\x44\x4d\x98\x08\xf9\x18\x45\x02\xd1\x28\x06\x80\x59\x95\x18\xaa\x17\xae\xbf\x1e\x14\xc9\xde\x24\x50\xda\x9e\xf5\xad\x76\x67\xff\xfc\xfe\x2a\x85\x5a\x9b\x68\xbc\x34\x13\x68\xa3\xfd\xfc\x0a\x9a\x5e\xda\xc4\x19\x53\x58\x9e\x3a\xd0\xec\xc6\x65\x83\x66\xb5\x46\xf9\xfa\x6b\x0a\x41\xb9\x29\x4b\xaf\x5d\xa0\xe5\x2b\x1a\x55\x67\x02\x93\xdc\x42\xbf\x7d\x7e\x4a\xa4\x97\x4f\x30\xef\x23\x3e\x06\x2f\x71\x67\xa4\x65\x53\x2c\xdb\xb2\x70\xa9\xb6\x27\x90\x9f\xf7\x64\xf2\xd8\x7c\x30\xf9\x1f\xb9\xab\x95\xe3\x9a\xa8\xf6\x45\xe8\x7f\xab\x55\xad\x65\xf9\xde\xfa\x44\x3f\xdf\xcc\x6d\xdf\x9a\xa4\x11\xa8\x06\x7f\x34\x0c\x21\xcb\x8f\x2a\xdb\x22\x15\x93\x2d\x34\x09\x68\x01\xed\x72\x61\xa7\x1c\xd7\x70\xf2\x54\xcb\x7c\x50\x8a\x98\x3f\x2e\xa2\x01\x05\x1e\xac\xa9\x4b\xcc\x8b\x8a\xf4\x1c\x05\xaa\x73\x34\xcb\xea\x15\x1e\x42\x28\x79\x9a\x14\xbb\x4e\x8f\x55\x59\x5d\x59\xb7\x5c\xcd\x9c\x3e\x54\x83\x32\xbb\x88\x32\x3e\x92\x8c\xe9\x67\x45\x19\xf7\x4d\xba\xbc\x2c\xe4\x4e\xc8\xe9\x81\xc6\x91\x63\x4f\xfc\x91\xdb\x38\x2d\xca\x20\x24\xef\xa9\x7d\xc2\xb8\xd0\xa9\x31\x6b\x02\x26\xa8\x7e\x56\xd8\x1c\xa5\xe3\x71\x82\xbf\x87\x23\xa9\xf0\xd6\x2f\xf8\xf2\x97\x9b\xed\x64\x50\x94\x5a\x36\xde\xbc\x12\x41\x2c\x87\x68\x19\xf2\x41\x07\x64\x84\xb0\xf5\x0f\x49\x61\x4a\x10\xc4\x04\x14\x7f\x51\xd6\xfd\x29\x9a\x75\x5c\xcc\xf2\x45\x1b\x97\xc6\x75\x21\x66\x0e\x06\x6c\xb5\x97\x04\x1d\x27\xa8\x52\xb1\x0e\x78\x34\x69\x71\x91\x10\xf1\xf9\xb1\xb8\xf0\xf9\xe6\x6a\x0c\x63\xf9\x6a\x18\x23\x08\x23\x05\x63\x31\xdd\xf4\x4c\x33\xb7\x5f\x19\xf8\xba\x89\xb7\x20\x3e\x25\xbe\x48\x30\xe3\x05\xd3\x5e\x5e\x72\x14\x39\x85\x5b\xd4\x5e\x92\xbb\x5a\x74\x2a\xdc\x1d\xf6\x9f\x58\xc9\xc7\xe1\x5e\xe1\x8d\xee\xb1\x5c\x91\xd4\x36\x71\x71\x0f\x9c\xcb\x80\x05\x44\xf7\x1c\x35\x71\xd0\x18\xf8\xe1\xc8\xea\x77\xbd\xa7\xde\x42\xf1\x36\xe7\x91\x3d\xe1\xed\xdc\x06\xcc\x68\x04\x72\xa3\x44\x15\x01\xd8\x78\x8c\x35\xc6\xdf\x19\xeb\x89\x4e\x4f\x37\x4b\x9b\xd8\x7e\x37\x4b\x85\x19\x59\x3d\x11\x31\x75\x9c\x1f\x29\xd1\xe5\x0b\x6b\x0d\xaa\x19\x1c\x23\x02\xd4\x63\x54\x96\xec\x9b\x35\xd1\xc9\xd4\xde\xcf\x61\x77\xef\x42\x7a\xea\x5c\x84\x12\xa0\x92\x7c\xe0\xe1\x1a\x42\x88\x03\xcd\xc5\x78\x69\xe0\xc1\xdc\xf0\xf8\x67\x59\xc2\xf6\x2c\xd5\x04\xaa\xd7\x1e\x17\x31\x6a\x02\x33\x07\x03\x7e\x7a\x7f\x38\x21\xf9\xe2\x4e\x5c\x98\xa5\xdc\x5a\x58\x1b\xa5\x21\xad\x5e\x06\x4a\x5e\xd2\x36\x92\x7f\x70\xab\x5a\xfe\xc1\x4f\xdb\xf5\xac\x49\x8b\xbd\x5c\x33\x84\x23\xf7\xe4\x98\x41\x7b\xe5\x32\xb7\x96\xde\x19\x06\xd5\x68\x99\xcd\xd5\x9c\x97\xf0\xc8\xe7\x86\xbc\xc5\x09\xd9\xf5\x39\xe6\x1d\xd9\xb5\x5e\x3b\x29\x97\x9a\x3c\xcf\x56\xdd\x2e\xd3\xe5\xd4\x20\x52\x1f\x6d\x77\xa4\x66\x69\xc9\xcf\x48\x21\x00\xfc\xba\xfb\x59\x26\x88\x10\x18\x82\x2f\x29\x74\xb3\x5e\x96\x64\x4b\xd9\xa0\x98\x08\x10\xd9\xdb\x44\xd7\x27\xe3\xe9\x5a\x52\xd1\xcf\xf5\xb2\x34\x2e\xb3\xbc\x5a\x1d\xc1\x90\x3d\xe1\x02\x3e\xac\x5f\x89\x54\xf1\xf8\xd6\x91\x55\xc0\x5b\x3c\xba\xbe\x35\x6b\xad\x72\x37\xc4\x79\xb1\xcd\xd1\xe5\x42\xb9\xf7\x12\x0f\xbf\x5e\xf2\xd0\x84\x25\x6b\x20\xe4\x03\xbf\x82\x7c\x4d\xf5\x66\x47\x46\x7a\xdd\x5b\x43\xae\x7d\xbd\x26\x2e\x68\xae\x9a\x64\xd9\x19\x0b\xd1\x18\xc0\x6b\x56\xc1\x81\x9a\x6e\x6d\x3b\x1b\xa4\x85\xf5\x50\x13\x3c\xa3\x5b\x1c\x1b\x8e\xeb\x55\xce\x1c\x6c\xbe\x66\x57\xe3\xa2\x0b\x07\xa0\xe3\xbf\xe1\x59\xdd\xa7\x84\xf0\xe7\x75\x7d\xff\x4e\xd6\x2e\xb3\x5c\xab\x37\xe8\xb0\x7c\x13\x6b\x5a\x4e\x6a\x3a\xff\x07\x2a\xd7\xbd\x18\xe7\x3d\x57\x94\xc1\xbc\xe4\x08\x4a\xe2\x1e\x91\x5e\x04\x56\x46\x5b\xb6\x5f\xc0\x3e\xd2\xee\x22\xc9\x3f\xb9\x2d\x01\xf3\xf8\x63\x17\xee\xc1\x22\xde\x1b\xaf\x22\xcf\x38\x68\xb0\x2b\x19\x20\x9d\x38\xe7\x2c\xa8\x1c\x8f\x18\xa3\xfe\x60\xa1\x41\x60\xf7\x77\x48\x87\xea\x1d\x1a\x5d\x4f\x07\xfd\x1d\xa1\xd4\xf5\x00\xd6\x59\x6b\x9e\x34\xfd\x88\x80\xcb\x07\xbe\xa1\xb9\xfa\x77\xb5\x66\x09\x3a\x49\x50\xbf\xf6\x8d\x51\xdf\x88\x07\x25\x89\xe6\x40\x75\xe2\xa7\xdd\x01\xca\x96\xe8\x35\x49\xe8\x27\x27\x35\x53\x2d\x71\xda\x89\x57\xe2\xce\xa0\x8a\xbc\x66\x67\x37\xd1\x8e\xdb\x1c\xc7\xff\x4c\x4f\x37\x4d\x6a\x92\xb5\xaf\xaa\xc5\x54\x80\xbc\x33\x31\x8a\x71\x27\xa6\x64\x37\x22\x66\xd2\x72\x77\x00\xf4\x6e\xf2\x28\xd1\x25\x04\x02\x2a\x40\x43\xd2\x08\x52\xc3\x92\x7f\x61\xd8\xd4\xd5\x61\xa8\x70\x3c\xe0\xa5\x73\x36\x7a\x9c\x68\x7b\x16\x6c\x3e\xe9\x3e\x25\x8b\x8c\x44\xba\x37\x86\x01\xc8\x00\xb4\x28\xa2\xf7\x71\xc2\xec\xb9\xb9\x66\x99\xf5\xe3\x76\x23\xf0\xd1\x5f\x20\x3e\x89\xf1\x09\x9b\xe7\x9b\xf9\x00\xd4\x79\xb4\xfb\xc0\x4b\x24\xc7\xb5\xbc\x44\xed\x7c\xe0\x04\x6b\x47\x98\x85\xc2\xef\x40\x31\x01\x35\xbc\x8f\xeb\xf6\x22\x4a\xfb\x05\x2b\xd8\x6c\x9d\x9d\xf2\x2d\xee\x24\x5b\xd3\xd7\xa7\x1a\x2a\x0d\xaf\x36\x38\x0e\x85\xad\x22\x79\x87\xd5\x31\x6e\xb7\x13\x72\xe4\x32\x45\x62\x97\x47\xc6\xc9\xe3\x3c\x5b\x33\x09\x97\xb3\x4f\xbb\xe6\x87\x1c\x47\x9f\xf6\xc1\xeb\x08\xba\x4e\xa6\x0e\x44\xbd\x1b\xeb\xc4\x03\x05\xab\x75\xa2\xfd\xba\x11\x3d\x98\x65\xfb\x69\x02\x0b\xca\x88\x8a\x50\x51\xa0\x27\xa6\x0d\x67\x82\x97\x1d\x25\x08\x54\xc3\x69\xf2\xc1\xcb\xec\x6c\xe1\x1a\x90\x0f\xdc\x90\x06\x39\x92\xa6\xb3\x11\x89\x8b\x9f\x25\x96\xb3\x1f\x20\x60\x42\x24\x05\x8d\x66\x54\x62\x77\xac\x07\x0a\x03\x59\xaa\xda\x77\xd8\xfe\xeb\x1e\xb8\x12\xea\xf0\xa2\x3a\x82\x7a\xf6\xfd\x61\x58\x74\xc2\x63\x0c\x83\x77\x1d\xdb\x8d\x18\x6f\x02\xcd\xa1\x33\x39\xb8\xaa\x6d\xad\x30\x63\x63\x8b\x85\xc9\xd0\xf0\x94\x98\x4e\x17\x7d\xf5\xfb\x2a\xbb\x13\xf4\x09\x4e\x47\x4f\x8d\x51\x3c\x7f\x7e\xaf\xfb\x65\x54\x6c\xff\x39\x6e\x08\x7d\x6e\x68\x16\xa8\x09\xa7\xee\x07\xe6\x62\x70\x7b\x17\x59\x1e\xf8\x22\xa1\x3a\x3f\x40\x28\xea\x45\xb0\xaa\xc7\x2c\x1f\x91\x7a\x16\x4a\x8e\x27\x6b\xb1\x64\x8b\x20\xa0\x84\xb9\x56\xfc\x4a\xf5\xe5\x0a\x5f\xa9\x49\xa5\x59\x98\x16\x65\xa6\x9d\xad\x00\x40\xde\xb9\x1e\x46\xc0\xe2\x45\x83\x51\x6b\x16\xda\xc2\x64\xe8\x99\x51\x4a\xec\xba\xce\xce\x4a\x9c\x25\x3a\xc0\x83\x10\xec\x1b\x94\x2b\x7e\x83\x54\xd8\x8a\xb5\xb4\x93\x67\x3d\xd4\x72\x05\x6c\x11\xa4\xb0\xd7\x2f\x11\x54\xbc\x1f\x27\x45\x96\xa2\xdc\x89\x85\x7a\xce\x15\x2d\x94\xcb\xd8\x5d\x15\x1e\xff\x9f\x8f\x99\x1b\x17\xbd\x01\xee\xdc\x08\x03\x9e\x27\x23\x92\xec\x3c\x59\x9b\xce\xf7\xcc\xeb\x8e\xfa\xa7\xfa\x90\x32\x93\x35\x68\x04\x9d\xe9\xbd\xec\x33\x44\xf7\xb8\xdd\x8d\xf3\xa9\xaf\xdf\xfe\xeb\x41\x25\xb4\xca\x9f\xd8\x89\x2b\xc4\x99\x64\x04\xdf\x13\x72\x14\xbf\x82\xaa\xad\x8e\x75\xf6\x99\xf5\x6a\xdf\xe2\x01\xbc\x8b\x6d\xe0\x4a\x1d\x83\xa7\x5a\xbe\x13\xb5\xb2\xc7\x41\x4e\xbc\x0c\xed\xfc\x94\xb2\x86\xbd\x25\x1e\x06\xc1\x27\x86\xb1\x50\xe5\x3e\x8a\x88\x1e\x11\xda\x79\x98\x10\x7c\xd9\xbb\x70\xa4\xf8\xb6\xeb\x30\x07\xd8\x79\x2c\xc0\x39\xd9\x7a\x24\xc4\xef\xa0\x02\x95\x21\xa7\x88\x07\x9e\x9e\xd9\xba\xbd\x0e\x34\x0f\x4d\x3d\xd5\xf0\x1a\x4a\x37\xa2\x10\xa7\x7c\x18\x8d\x28\xb1\xf9\xde\xfa\xae\x56\x88\x10\x7e\x8a\x67\x83\x52\xc9\x4e\x30\x4a\xe0\xb7\x6e\x70\x07\x5e\xe2\x42\xbc\xb5\x8f\xd0\x30\x54\x08\x8f\xbb\x21\x7c\xc1\x03\x62\x09\xdf\xbb\xee\x1e\x88\xb2\xe9\x37\xbe\xf0\x7b\xa1\xa2\x16\xf8\xbf\xa1\x9d\xa0\xa8\x05\xf7\xfe\x01\xa9\xf8\xd3\x21\xa9\x77\xbc\x49\x2d\xbd\xd5\x3c\x4b\x97\x3a\x99\x78\xcb\x39\x1f\xcf\x93\xf8\x62\xad\xaa\x74\xcf\xac\x65\x39\x62\x95\xda\x02\x8c\xa7\x5d\x77\xa3\x68\x3e\x53\x87\xdd\x39\x4a\x78\xd6\xa3\x35\xac\x6a\x73\xae\x19\xd1\x08\x58\xfe\xf7\x49\x8f\xe0\xfd\x68\x2b\x40\x71\xe6\x60\xd3\x74\x7a\x71\x1a\x17\x65\xee\xbc\x18\xca\xae\x5e\x43\xc6\x13\x3e\x9f\x89\x82\x24\xec\x8b\x90\x59\x46\x8a\x79\x8f\x67\x48\x2e\x39\x18\x15\x22\xf0\x33\x81\x66\xb7\x9b\xf5\x93\x78\x31\x50\x50\xab\xa8\x7d\x80\xe9\xde\xa1\x41\xdb\x8e\x35\xc9\x63\xce\x93\x20\x10\x97\x14\xd0\x8b\xf6\x54\xef\x0c\xfd\xd0\x0b\xc8\x2d\xf0\x66\xb7\xad\xbb\xf7\xa4\x9c\xef\x9c\x8a\xbb\xdd\x01\xb4\x90\x90\x40\x61\x77\xdc\x19\x86\x79\x95\xfb\x68\x0e\xc9\x17\x0f\xc3\x10\x94\x6c\x14\x65\x99\x6f\x84\xdf\x18\xb3\xcc\xfb\xe7\xf7\x37\x17\x4d\x9c\xeb\x4c\x89\x0a\x30\x54\x3f\xaf\xed\x6e\x52\x3d\xce\x63\x93\x38\x35\x78\x4c\xf1\x7e\xe0\x7e\x54\x8e\xa3\x11\xaa\xbe\x50\x67\xbf\x4e\x74\x75\xdf\x60\xc9\x88\x77\xc7\x4a\x43\x9f\x27\xa2\x37\x25\x08\x27\x56\x87\x23\x64\xbd\x17\xad\xb4\x90\x42\x01\x12\xa2\xf3\xaa\xb1\x11\xae\xda\x2c\xa5\x76\x55\xb2\x26\xec\xaf\x9f\xc3\xac\xc8\xc9\x78\xc5\x69\x1a\x10\x2e\x81\x17\x0a\xe8\x28\xa2\x2c\x34\xa8\x3b\x14\xfd\xd8\x2e\x59\x69\x73\x22\x20\x3f\x42\xf0\xab\x73\x3c\xec\x7d\x93\xf2\x98\x7d\x2b\x6b\x0d\xf2\x00\xea\x76\x95\xcb\x62\xeb\x36\xd9\x37\x27\xa8\xca\xc6\xa1\xa9\x4d\x17\xa9\x6e\x8e\xc7\xc2\x95\xff\x4b\xb2\x4c\x20\xa2\xb0\x3e\x3f\x24\x8c\xda\x0f\xeb\x52\x97\x38\x5b\x35\x8d\x00\x1f\xbc\xc8\x94\x12\x17\xa9\xba\xd2\x36\xc5\xc0\x24\xe5\x1a\x6b\xe9\x49\x13\x57\x4e\x7c\x15\xa5\xe8\x0f\x3a\xc0\xbe\x29\x0b\x7f\xd8\x36\x27\x99\xfb\xe9\x2e\x15\xd0\x7b\x99\x23\x19\xde\x15\x3a\x41\x1b\x11\x8d\xbe\xbe\xcf\xc5\x03\xb4\xbf\x91\x42\xff\x82\xc1\x60\x70\x24\xaa\x1e\x10\x90\xea\xdb\x5a\x01\x4f\x54\xc6\x3d\x5b\x7c\x8a\x8c\x06\xd4\x03\xd0\x78\xbc\x02\x93\x2c\xae\x88\x3b\x1e\x77\x88\xd7\x60\xa7\x9b\x6d\x54\x5a\x3b\x17\x8b\x2a\xe8\xdf\x2d\x57\x6c\xe2\x91\x7a\x13\xa6\x70\x74\x0a\xaa\xba\x7c\x04\xa6\x13\x2d\x22\x1f\xda\xd1\xe2\xb0\x2c\x0a\x43\xf9\x8d\xf5\xca\x07\x08\x00\x28\xa2\x31\xc0\xcb\xce\x67\xc1\xa5\x6e\xf8\xba\x8c\xe9\xbc\x36\x28\xa4\x8e\xeb\x25\x7b\x91\x9f\x68\xc7\xa6\x8e\x10\xab\x48\xb2\xa5\x02\x15\x70\x95\xb7\x73\x4f\x43\x4e\xfc\x14\x5a\xd1\x76\x50\x48\xd4\x98\x04\x07\x48\xa4\xae\x48\xbd\xd1\x66\x3a\x3f\xfc\xb5\x4f\xe8\x40\xf7\x73\x9b\x38\xee\xee\x1c\xe0\x5f\x84\x18\x12\x16\xc9\x89\x67\x7b\xc9\x6d\x62\x5e\x77\x2e\xa2\x96\xa2\x95\xb8\x2c\xb1\x4a\x63\x9d\x1c\x82\x91\xbf\x1d\x85\x78\x72\x7c\x52\x6c\x76\xb6\x69\xd3\xea\x61\x15\x2c\xc8\x7b\x09\x3f\xa1\x7a\x01\x75\xf8\x2e\xb3\x98\x9b\xb8\x43\xd2\x09\x28\x7c\x2b\x49\xdc\x13\xfe\xe2\x97\xe3\xd4\x49\x11\x1f\x9a\x92\x50\x0c\xa8\x3f\x39\xa6\x4e\x44\x9c\x96\x36\x75\x9c\x67\x49\xc3\x2d\x2b\x54\xf0\x84\xcf\x4b\x4e\x28\xdf\xcf\x6d\xdb\xc6\x2b\xae\xfe\xe6\x61\x39\x52\x73\x93\x13\xd8\x4f\x64\xb2\x52\x8c\x94\x93\x51\x91\xcf\xf6\xda\xee\x6a\x89\xf9\x90\xc3\x4f\x90\x5f\x84\x33\x41\xff\xf4\x4a\x44\x62\x24\xff\xc6\xbd\x67\xdc\x04\xa2\x17\x84\x9c\x12\x0a\x21\x16\x39\x86\xdf\x94\x93\x1a\x93\xf5\x6a\xb3\x72\x3f\x92\x1f\xeb\xf4\x4f\x80\xac\xdc\x22\x0e\xeb\x5e\xd6\x89\x17\xe3\xb6\x03\x89\x15\x3b\xc2\xee\xb8\x11\x11\x5d\x32\xc8\x6e\xb0\xe9\xc4\xce\x6b\xa6\x4d\x49\xd8\xe5\xad\xd1\xe0\x4b\x33\x55\x6a\xb3\x3b\xa4\x24\x97\xf0\xcc\x85\x7e\x2f\x1a\x65\x2b\x3f\xa4\x4d\x3e\x68\x90\x8a\x36\x50\xc4\x18\xac\x40\x48\x73\x0e\x3e\x5f\xad\x52\x9d\x4a\xf7\x60\x41\x27\x5e\x80\xb5\xfe\x25\x4d\x85\xfd\x92\xc6\x0f\x8a\x32\x8f\x97\x6d\x31\x19\x0a\xf5\x23\xd2\x5a\xd7\xa8\x32\xf7\x0b\x2e\x43\xff\xa8\x06\x29\xd3\x5c\xb0\x6e\xc4\xda\xf5\x1e\x95\x56\x32\x10\xbf\x4d\xb8\xd6\x9e\x1f\xd6\xf3\xe3\x31\x27\x86\xa1\xd9\x62\x8a\xc2\xf6\x16\x92\xb5\x9e\x00\x1a\x50\x0c\x7f\xc0\x1a\x52\xe3\xf5\x53\x35\x00\x65\xae\x18\x7b\x00\x10\x37\x19\x35\xbb\x49\xec\xf6\xbd\x41\xd1\x1e\xa8\x18\x8d\x98\x18\xc2\x55\x61\x82\x01\xab\xe5\xed\x91\x4a\xc5\xeb\xca\xf8\x2f\x09\x88\xfb\x90\x26\x23\xe4\x79\x06\x69\xc7\xa4\x68\x9d\x79\x7a\xcf\xb0\x82\x51\x0b\xf2\xb3\x81\x61\x35\x8f\xd7\x78\xa7\xa7\x9b\x8b\x59\xbe\x64\xc1\x2a\x88\xf0\xed\x2e\x33\xd5\x5d\xa4\x16\xf5\x29\x16\x17\xcc\x07\xbd\x85\x04\xac\x1a\xda\x00\xad\x2e\xd6\xf3\xea\xce\xeb\xc8\xf1\x9d\x1a\xbd\xe3\x03\xcd\x7e\x36\xc8\x61\xf0\x60\x8e\x21\x39\x24\xc7\xde\x10\x15\xcb\x71\x8e\xc1\x06\x1f\xd5\x6c\xa7\xcc\x6d\xfb\xba\x67\x81\x48\x6c\x1e\xb7\x25\x95\x02\xda\x03\x7f\x28\xc7\x7e\x26\xb4\x6b\xd2\x4e\xdc\x36\xfd\xbe\xed\xec\x64\x6a\x0f\x84\x40\x78\xd4\x9b\x43\x22\xee\x01\xa0\x5d\xbb\x48\x24\x32\x3b\x89\x32\x92\x32\x87\x86\xe8\x2d\x37\x71\xb5\x46\xa7\xa7\xbd\xfe\x6a\xc3\xb3\x86\x6c\x92\x32\x09\x68\x10\x94\x64\x3d\x04\x5a\xcb\x59\xd6\xf0\x83\x07\xff\xc3\x36\xfc\x8c\x9c\xac\x3f\x13\xda\xdb\x8b\xb6\x23\x9a\x94\x0d\x12\x71\x83\xa1\xd6\x5d\x10\x7a\xc0\x7d\x6b\x4a\xdb\x49\xd6\x1c\x97\x93\x17\x86\xad\x36\x1c\x82\xca\xf3\xb8\x69\x25\x1d\xab\x2e\xd3\xf7\x2d\x0f\x69\x21\x1d\xad\x7e\xf7\xe9\x4f\x3d\xdb\xaa\xb3\x0b\xfd\xe0\x67\x7d\x8d\xca\x53\x65\x80\xef\x4e\xa7\x27\xc7\xcb\x88\xaf\x56\xe6\x62\xb0\xb4\xe4\xfb\x14\x7e\xa2\xa4\xfa\x3e\xad\x78\x8c\x5b\xe4\xca\x20\xfb\xc4\x47\x66\x9c\xa8\x37\x71\x9e\x2a\x8f\xb9\x5d\x32\x79\x47\xad\x37\x96\xd1\x5d\x62\x70\xbc\xeb\x1b\x0a\xc5\x20\x2d\xd0\xf9\xc0\xfa\xde\xb5\xce\x8a\x86\x02\x75\xd5\xa8\x32\xbc\xfd\x24\x2e\x20\x56\xf7\x62\x80\x47\xf8\x12\x08\xfc\x04\xa2\xa5\x1f\xd5\x4d\x12\x3a\xbc\x3d\xa0\x80\xc0\x3c\xdd\x81\x37\x92\x93\xb1\x8f\xcc\xce\x36\x13\xd3\x2f\x33\x19\xe4\x64\x80\x0d\x98\xda\xa1\x03\xa0\xa2\xeb\xa1\xdc\x57\x98\x72\x57\x65\x22\xbd\x75\x9a\xdf\xef\xdb\x05\xd5\xfb\x86\xf7\x94\x59\x69\xbc\xb1\x2b\xee\xe5\xcb\x1f\x8d\x9a\x33\xff\x56\xaf\x44\xbf\x12\xe8\x30\xba\x26\x4f\xb2\xb2\xb4\xc5\x4a\x9c\x24\xb6\x31\xa6\xbd\xa7\x05\xfe\x67\xfd\x22\x2d\xe3\x34\x5b\x48\x4c\x51\x66\x3d\x33\xc9\x8c\xef\x23\x5c\xee\x61\x05\xa3\x22\xa7\x84\xef\x61\x1a\xc4\x76\x96\x6c\x67\x67\x75\x4f\x60\x4f\x6a\xac\x57\xdb\xd1\xeb\x3c\x56\x4f\xd4\x43\x5e\x2a\xbb\xa9\xbc\x6f\x81\x96\xe8\xd1\x56\x10\xf4\xbc\x5e\x97\xdc\xf4\xac\x2d\x05\x4f\xe8\xb5\x48\x3c\xbd\x8f\x70\x77\xe8\x50\x4f\xb8\xb0\xc5\x2c\x59\x2e\x26\xaa\x0b\xc3\x32\x02\xf4\x96\xd9\xcf\xb0\xd1\xb6\xb5\x6a\x24\x8a\xdd\xdc\xdf\x04\xa3\xf7\x50\x13\xc3\x55\x9e\xe6\xc4\xed\x1e\xe5\x29\x45\x3b\xb6\x69\x5b\x9a\xcc\x88\xe7\x51\x0c\x41\x1e\xfe\x11\x91\x49\xde\x62\xbd\x96\x1f\x8d\xf2\xb9\x24\xe5\x13\x55\x0e\xe1\x3b\xe0\xf3\x53\x6a\x3b\x4f\x30\xb5\xd6\x65\x1e\x32\x99\x6c\x51\x04\x39\x0c\x02\xe1\x42\x77\x8f\x07\xf7\x0f\xcc\x06\x06\x2d\x20\x1c\x63\x20\x19\xc1\xdf\xf7\x22\xd2\xf5\x3d\x81\x57\x28\xbf\xc1\x02\xdd\x02\x7e\x50\x31\xb1\xea\x7d\x6a\xfc\x5a\xd3\xb8\x59\xed\x66\x12\xc4\xd4\x11\x6f\x8c\x68\x50\xc6\x45\x59\xd9\xd9\x2a\x1e\x53\xd6\x31\x62\x20\xab\x2d\x3a\x67\x7d\xa8\x87\xe1\x85\x21\xc6\x96\x4a\x8e\x9c\x50\x41\xd4\x64\x4e\x6c\x60\x3f\x73\x16\x1f\xd8\xbc\x32\x0c\x41\xea\x1d\x49\xb8\xfd\x13\x0c\xea\x08\x8c\xeb\x5b\x34\x71\x0e\x56\x7c\x40\x8e\x91\x79\x2a\xa3\x17\x31\xf4\xdf\x8d\x08\x1d\xfe\x80\xbc\xdc\x3d\x52\x9d\xbb\xe2\x53\xe4\xc5\x3c\xfb\x2a\xd0\xc6\xea\xee\xdd\x8f\xc8\x49\x10\xf7\xb2\x50\x86\xf1\x54\x20\xe8\x72\xcb\xb1\x77\xec\xa5\x05\x45\xde\x24\xe9\x57\x89\xae\x24\xb0\x40\x28\xe8\x90\xfd\x0f\x60\xe3\x4f\xfb\xf7\x62\xd3\xd2\xf5\x87\x52\x3b\xc8\x25\x15\x52\x5d\x45\x77\x6f\x2a\x34\x1c\xf6\x5f\xc7\x8d\x77\x34\x02\xaf\x0b\xd5\x5b\x43\xd8\xd1\x4f\x8c\xeb\xd0\xed\x18\x65\x8c\x77\xb6\x10\xe9\xd5\xdd\x61\x18\x82\xda\xed\x8c\x10\x3c\x81\x28\xc2\xe2\x1f\x1e\xfa\x49\xb6\x7e\x9e\xf5\xe2\x42\xe7\xd2\x65\x1a\x87\x84\x10\x84\x7d\x09\xe6\xfb\x2f\x7d\xda\xba\x6a\x8a\xa0\xf8\x00\xaf\x81\x9d\x2b\xc7\x24\x49\x98\x40\xae\x0f\xdf\x00\x4d\x1f\x14\xb6\x6e\xe0\xab\xe1\xd7\x1f\xb0\x20\x45\x6e\x16\x4d\x89\x25\xad\x4d\xe0\x6a\x49\x6b\x0f\x58\x81\x74\x71\xba\x98\x18\x61\xb5\x0e\x20\xe0\x37\xdf\xa2\x69\xf1\xb7\x7c\x71\x29\xb7\xa5\x89\x15\x67\x8d\xfd\xf9\xd0\xd9\x45\x6f\x1c\x78\xc6\x41\xab\xb0\xb6\x33\xa8\x72\x24\x71\xfa\x04\x37\x79\x91\xb4\x64\xb7\x16\xde\x06\xfd\xc9\x90\x85\x43\x7f\x59\x01\x39\x95\x7d\x55\x5c\x45\x18\x3b\xb8\x19\xd1\x2e\x89\x93\x84\x5b\xa9\xd0\x9b\x42\xba\xfa\x73\xf7\x62\x60\x42\x1e\x8e\x36\x12\x13\xeb\x6c\x20\xf2\xf2\x2b\x23\x92\xdf\xcc\x7a\x76\x05\xb7\x89\xb4\xec\xad\x21\x99\x7b\xb7\xaa\xd1\x49\x9b\x18\x19\x9a\x45\xd6\xeb\x29\x30\xf6\xcd\xb1\xba\xa9\xe2\x51\x8e\xb8\x2b\xf3\x8a\xf6\x41\xf6\xf4\x81\x74\x2a\xa4\x53\x42\xf3\xc8\x42\x2f\xa8\x7c\x1a\x81\x5f\x62\xb5\x1b\x97\xb6\x5a\x60\xf0\xcb\xca\xbc\x1d\xd0\x3a\xe7\x82\x72\x58\xb5\xcd\xd2\x76\x57\xa3\x26\xac\xa5\xef\x90\xe4\xf0\x77\x68\xa4\x3d\x31\x0b\x36\x91\x08\x48\xe7\xdf\x1a\x34\x25\x1f\x6a\xeb\x77\xc6\x4a\x2d\xb3\xb3\xcd\x62\xd0\xcf\xcd\x0a\x04\x27\xaa\x1c\xaa\x11\x6a\xb1\x88\x4a\x15\x0d\x55\x83\x7f\xce\xed\x62\x9c\xfa\xf8\x53\x87\xb0\xaa\x2f\xf0\x24\x8a\x3e\x30\x0a\xb1\x71\x15\xa7\x98\x76\xe9\x14\x79\x42\x4c\x27\x7c\x38\xe8\xdc\xa9\xe4\x8c\x2a\x6a\x3c\x4e\x2a\xc3\x69\x09\xa9\x6d\x3c\x62\x70\xcf\xe9\xb4\x47\x23\xa8\xad\xd3\x10\x79\x08\xc6\x77\x54\x99\x2c\xde\xe7\x89\x21\x11\xea\x5e\x26\x9d\xf6\xaf\xb9\x8b\xf6\x10\x05\xaf\xde\x79\x82\xc6\x34\x4d\x9c\xf7\xb3\x1c\x49\x9c\xda\xcc\x6a\xd5\xa9\x86\x78\xf5\x29\xd8\x8c\x9b\x51\xe8\x5b\xf6\x4d\xdc\xd9\x13\x54\xb9\xd0\xda\xf5\x0c\x9d\xd5\xb2\x51\x72\x04\xd2\x34\x93\xa2\x84\xa7\x90\x39\x34\xa5\xff\x40\x18\xca\xab\xd4\x3b\xbf\xcc\xd5\x9d\xbb\xd4\x83\xc8\xe3\x62\x79\x27\x01\x17\xef\xa1\xe7\x2c\x9a\x3a\xc3\x7a\xdc\xfb\xe9\x88\xc8\x31\xfe\x8c\x8c\xe1\x37\xc8\xca\x57\xa9\x20\x1a\xb7\x98\x82\x7c\x1f\x97\x20\x27\xd1\xaf\xd6\x4c\x1f\x41\xab\xab\x88\x17\x62\x5f\x45\x17\x58\x4e\x14\x60\x3d\x17\x6b\x68\x0e\x5e\x6c\xe6\xa6\x6f\x0b\x2b\x2c\x0e\xbe\xc8\x19\x94\x20\x7d\x8f\xa6\x93\xdb\xa2\xe8\x39\x12\x2f\xf7\xa6\x14\xb6\x43\x55\xc9\xdb\x04\x4c\xdf\xde\x52\xa7\xda\x8d\x97\xba\x36\x7f\x34\x68\x07\x81\x4c\x0e\x25\xe9\xc7\x1d\xb7\x1d\x02\xe5\x4f\xa3\x90\xe5\xbc\xed\x7f\xf9\x59\xe6\x56\xff\x2f\x5a\xc4\x12\x7f\x97\xb0\x51\x7b\xd6\x69\xa2\x5a\xfc\x90\x97\xc1\xe4\xa0\x79\xbf\x2f\xdb\x5e\x14\xcc\x83\x0e\xcd\x3e\x49\x0a\xf5\x71\xba\x90\xad\x36\x82\x95\x43\xd4\xa7\xa0\x82\xa0\xed\xd8\x5e\x96\xf2\xa2\x66\xad\x24\xe4\x73\x76\xac\x02\x73\xf0\xe5\xa6\x5d\x31\xc9\x40\xa6\x2d\x3d\xef\xf3\x2f\xdd\xe3\x92\xe3\xda\x52\x9d\xeb\xef\x39\x0e\x6b\xec\xa0\x0d\xa2\x5f\xdf\x24\xc0\xd4\x33\x2d\xe2\xa2\x7e\xc0\xa2\xfb\xd9\xa0\xb4\x6e\xaa\xd8\x4f\x1b\x54\xcf\x4b\x73\x17\xca\x63\x86\x21\x17\x39\x46\x58\x96\x9b\x63\x24\x1e\x55\x70\x68\xd3\xd2\xe6\xfd\xdc\xa1\xdf\x61\x5b\xe0\xae\x6f\x73\x53\xea\x36\x81\x72\xda\x49\x9c\xda\x62\x37\xfe\x56\x45\x13\x1a\x5e\x09\x5f\xc2\x31\xe5\x66\x70\x37\xe3\x73\x84\xf9\x29\x6f\xdf\xa9\x3c\xfe\x0c\x52\x58\x9d\xf6\x27\xb5\x93\x4b\x35\x73\x92\x33\xcd\xb6\x11\xed\x70\xb8\xbf\x53\x44\xae\x7b\x8a\x48\x81\x73\x5b\xd9\xff\x1d\xee\x72\xd0\xcb\xb8\x30\xa4\x79\xc5\xf7\x18\x70\x73\x0c\xde\x49\x4e\x86\x24\x7d\x7d\x23\x1a\xe7\xb4\x3e\xd0\xec\x99\x74\xb0\x68\xda\x4e\x35\x18\xd2\x7c\x8a\x26\x75\x1f\x55\xf6\x4a\xf7\xdb\x08\xa4\xef\xd5\x91\xfc\xb4\xb3\xb4\x28\xab\xb5\xea\x96\x92\x30\x41\xba\x57\xa9\xac\x90\x35\x13\x60\x85\x35\x6e\x14\x35\x50\xe2\x4b\x34\xa3\x23\x44\xe3\xa2\x15\xab\x26\x4f\xf5\x42\x35\xab\x20\x16\x46\x81\x11\x23\xe0\xba\xbf\x55\x2f\xfd\x95\xfd\xd5\x42\x39\x80\x50\x4a\x13\x22\x62\x4c\xbb\x43\x21\xcb\x65\x1a\x8d\x5c\x8d\x97\x84\x26\x0b\xb1\xd3\x69\xb7\x03\xe5\x78\x0c\xf0\x38\xe7\xa4\xed\x51\x60\x13\x7b\x3d\x62\xbb\x43\x86\x12\x67\x85\xe3\xf9\xf5\x6a\xbc\x1e\x66\xf1\xef\x84\xe4\xce\x8b\x09\x1f\x52\x29\xe2\x9b\xe2\x37\xf1\xeb\x4f\xd2\xc8\xef\x67\xd7\x89\x95\xfd\x38\xf1\x29\x9b\x76\x89\x6a\x31\xaa\x87\x88\x1e\x71\x7c\x9a\x10\x18\x50\x1d\x40\xbd\x79\x7c\xf8\xfb\xe0\xcb\x55\xc8\xdd\x56\xa3\x8c\x94\xe2\xfc\x30\xb0\x33\x9c\x1f\x0b\x1f\x66\x67\x75\x5e\x5c\x10\x6c\xd2\x18\x77\x4f\x59\x9b\xe4\x35\x68\xc7\x8e\xed\x99\xb4\x33\xda\x0e\x10\xb4\xa3\x8e\xb0\xd6\x30\x78\x77\x6d\x15\x7a\xd3\xea\x21\x5d\x82\x71\x8a\xa9\xe7\x9b\xbd\xd8\xa1\xfe\x29\x18\xfa\x11\xa5\x0f\x3f\xaa\x61\xf9\x3d\xd0\x2c\xaa\xa8\x6d\xa9\x74\x7c\x68\x7e\x5e\x49\xf6\xa2\x4f\x90\x7d\xe6\xf2\xfb\x54\x5f\xee\x66\x83\x42\x5b\x34\xd8\x60\xdf\xa6\x3e\xd1\xb6\x75\xa2\x42\xb9\x12\x51\xad\xef\xc2\xb8\x10\xe3\xfc\xfe\x5f\x6f\x16\x55\xe8\x38\xf0\x63\x49\xc8\xca\xa0\xd5\x27\xc7\x14\x97\xb6\xb3\xb4\x9d\x0c\x3a\x56\x34\x3b\x60\xd0\xae\x90\x9d\xbf\x42\xc4\x08\x65\x15\x2a\x26\xf2\x96\x45\x61\x20\x6a\x90\xda\x80\x4f\x4b\x93\x6c\x55\x85\xbc\x05\x26\x4f\x14\x5d\xe7\xb9\x61\x61\xcb\x05\xd3\xc6\x70\x31\x38\x55\x3f\x72\x86\x5d\x8e\x83\x78\xb9\x79\x3d\xcc\xfe\x63\x7d\x5c\x83\x6b\x90\x93\xb1\xd7\xfe\xca\xcc\xc1\x66\xdf\x96\x30\x07\x3a\x41\x17\x6a\x2f\xdb\xdc\xee\x40\xdd\xed\x36\xf9\xd4\x7e\xee\x54\x40\xa0\xa5\x0a\xbf\x70\x37\xe2\x56\x35\x09\x8a\xde\xc5\x15\xc8\xbf\x10\x3d\xca\x4a\x9c\x0f\xc4\x2a\x28\x76\x8f\x41\xad\x75\x00\x63\x17\xad\xe8\x3b\x83\x2b\x11\xf6\x06\x39\x09\x49\xdf\xa0\xd7\x4f\x6c\x67\x32\x30\x07\xc8\xd8\x25\x42\xfe\x93\xee\x26\x91\xa8\x08\xfd\x80\x86\x6c\x54\xff\xf8\x8d\xdf\x6a\x04\xfc\xb3\xb0\x23\xc8\x49\x5d\xf9\xcd\x0d\x98\xbb\xee\x03\xe2\xc5\xfb\x04\x78\x16\x44\x80\x32\x9e\xd6\x7c\xda\x74\x06\x09\x10\x77\x88\x63\x37\x88\x0a\x71\x83\x81\x18\x9d\xc4\xae\x51\x4f\xe1\x66\x44\x1a\x79\x37\x29\xa4\x57\x62\x1e\x4c\x8e\xcd\x04\xba\x8a\xea\x5d\x07\xba\x0a\x2d\xf7\xdf\x71\x36\x59\x8e\xeb\x32\x99\x2a\xa0\x4f\x4c\x2a\x62\xca\xda\xe3\x09\x98\xe4\x4b\x84\x73\xc8\xed\x8a\x35\xc9\xe8\x74\xd7\xbb\x3c\xdd\xf5\xae\xcf\xe4\xfa\xb6\x28\xe2\x5e\x75\x99\xa8\x96\x88\x22\x15\x93\x84\x9c\x61\x81\x86\x72\xd0\x8f\x3b\xe4\xf1\xce\xf3\xd0\x2c\x13\xd9\xac\xc5\x36\xe9\x14\x8f\xd0\x20\xe6\x61\x24\xae\xb0\xfc\xf7\xa2\x40\x51\xfc\x36\xe5\xc0\xdb\xd6\xc3\x70\xc7\x0e\x0c\xf1\xca\xa7\x81\xfc\x53\x8e\xe8\x50\xc9\xbd\x49\x33\x1e\xf7\xdd\x1a\x96\x6f\xc5\x3d\x68\x18\x1b\x16\x56\x61\xed\xde\xe0\xe5\x27\x09\xc8\x7b\x97\x46\x19\x76\xaf\x93\xdc\xf5\xd3\x82\xf0\x55\x04\x58\x80\x51\xdc\xc5\xf2\x55\xac\x60\x75\x23\x78\xb9\x52\x84\xc4\x1b\x95\x22\x10\x56\xc9\xc3\xe8\x69\x6a\x96\x2f\x26\x03\x9b\xb6\xab\x77\x35\x3f\x75\x40\x30\xa2\x17\x50\xda\x94\x93\x5a\x65\x02\xa7\x40\xd9\x08\x59\xa6\xe8\x04\xc8\x49\x90\x0c\xcf\xad\x81\x2d\xf4\x13\xfb\x61\x7a\x7f\xe8\x27\x23\x6d\x5e\xa2\x2b\x6d\x0b\xa9\x70\x01\x9e\xb5\x0b\x01\x21\x2a\xe3\x68\x55\xf0\xb8\xac\x28\x96\xb1\x20\xfe\xae\x75\x26\x10\xf9\xca\x20\xce\x6d\xb1\x23\x78\x0a\xa9\x05\x7b\x8e\x78\x5f\x2f\x78\x88\xb8\x4f\xfe\xc1\xcd\x55\x6b\x81\x48\x2d\xb6\x1d\x2c\x28\xc7\x03\xd6\xc7\xbf\x66\x29\xc5\x7f\x3d\x52\x9b\x2e\x0c\xd4\x8b\x3d\xe3\xc7\xdc\x9c\x67\xfc\xa0\x24\x79\xd5\x16\x0e\x3d\xeb\x85\x00\xde\x72\xdb\x50\x8e\x6b\xa5\x30\xfa\xdd\x38\x41\x37\x4e\xb1\xca\x0c\x5c\x26\x4f\xe4\xf4\x62\xb3\x1c\xac\x8e\x58\xaa\xf7\xa2\xd1\x61\xe2\xea\x8e\x91\x59\x89\xd2\x9e\x78\x64\xbc\x4b\x9f\xb6\x7b\x92\x59\xd1\x07\x92\x8f\x0c\x83\x6e\xeb\xa9\x61\x20\x6b\xab\x9d\xdc\xcc\xda\xed\x41\xdf\x48\x19\xd6\xf7\x57\x67\x67\x7d\x7f\x95\x00\x72\x71\xcf\x16\x10\xd3\xc4\x13\xfb\x88\x5c\xd2\x87\x28\xa3\x8a\xae\x0d\x27\xd1\x8f\xbb\xc2\x3e\xca\x9c\x08\xc5\xe0\xc9\x8f\x3a\x70\xa2\xe2\xdf\x47\xb2\x90\x80\x67\xfa\xca\xc0\xc9\x4d\x3f\xf7\x5c\x00\xdd\xee\x7f\xf9\x80\x1f\xc5\x1c\xa7\xc9\x3d\xd0\x2c\x92\x30\xbf\x2a\x64\x00\x78\xba\xca\x0c\x30\x0e\x91\x99\x6f\xae\xba\x01\xe7\x46\x80\x0d\x7f\x9f\x68\x6c\xbf\x3f\xc2\xc3\x54\xb6\xbb\xbb\xa9\x4c\x21\x2a\x22\x08\x35\xd1\xc0\xf3\x5a\x23\x81\xeb\xed\x28\x4a\x21\x98\x82\x44\x2c\x85\x4f\x5c\x75\x86\x49\xfe\x3f\x0b\xfa\xb0\x04\x7e\x7b\xad\x9d\xc4\x6d\x93\x20\x1e\x80\xcb\x96\x14\x48\x71\x2c\x01\x30\xfc\x5e\xd8\x17\x69\xa9\x05\x0a\xfc\xd8\x4d\xfa\xe1\x9b\x94\xb8\xf6\xb2\x41\x5a\x4e\x86\x80\xf1\xa6\x5b\x41\x22\xf3\x49\xc1\xe3\xcd\x28\x90\xdf\x1c\x19\x4b\xfc\xbe\xfc\xe5\x66\x9e\x19\x50\x65\x62\xd5\x9f\x24\x86\xb7\x21\xd6\x84\x54\xd4\xc6\x96\xe2\xf3\xcd\x15\xbb\x64\x03\xac\x0b\x9b\x1f\x46\x5f\x8e\x3d\x10\x7a\x31\x31\x7d\x77\x57\xe8\x4e\x20\x8c\x93\xe3\xfa\x89\xb6\xb4\x34\x71\x98\xa3\x11\x45\x44\xf7\x31\x55\x47\x0c\x6c\xd9\x8b\x1d\xd3\x08\x7d\x88\x73\x58\x3b\x72\x42\xce\xe2\x37\x7e\xf3\xbf\x72\xd7\xc0\x26\x50\x8e\x01\xfd\x44\x78\xbc\xd6\xcf\xca\xae\x2d\xe2\xaf\x4a\xe4\x89\x74\x1c\xcd\x71\x39\x1e\xcb\x06\x67\x67\x9b\x25\x96\xa3\xbf\xaf\x23\xc4\xe3\x71\x84\xf6\xc7\xc2\x0b\xe6\x05\x19\xfb\x87\x99\x05\x6d\x9f\x1c\x0f\xc3\xb8\x69\x3f\x4b\xe2\x32\x6e\xc7\x26\x75\x5b\xf8\x55\x79\x43\x12\xff\x08\x33\x0a\xd1\xb5\xc9\x9e\x91\xbf\x82\x0d\x46\x3e\xf4\x31\x6c\x8d\x9c\x44\x44\xcd\x07\x8b\xa4\x3b\xbd\x86\xe6\xb3\x9f\x67\x49\x96\x2e\x55\x79\x6e\xd0\x2b\x90\x3c\x17\x39\xc2\x9b\xc4\xa4\x77\x9d\x82\xd2\xd2\x2c\xdb\xc2\x75\x69\x11\x79\x1d\x1d\x11\x67\xab\x1e\x26\x42\xe9\x53\xc4\x01\xf2\x01\xca\xb2\x2a\x29\xc3\xfa\x32\x23\x2e\xa1\x5d\xbe\xf0\x48\xb5\x66\x79\x8e\x15\x97\x76\x7d\x48\x8d\xe8\x5d\xae\xcd\x8b\xf5\xf2\x13\xd6\x97\x1f\x6d\x69\xa2\xde\xe5\x41\x53\x1e\x40\xb5\x6d\x9d\x65\x2b\x23\x22\x53\x16\x18\xad\xca\xe5\x3d\xcb\xc2\x54\xfd\x3c\xae\xd2\x2b\xd5\x12\x44\x9b\xe0\x3e\x51\x0d\xdd\x1f\x11\x0a\xce\x7a\x59\x95\x68\x80\xcc\xc9\xcf\x43\x56\xdf\xae\xe1\x2e\x9c\x38\x92\x61\x01\xef\xeb\x34\x4c\x28\x7e\x5f\xe4\x2e\xda\x49\xbc\x62\x39\x21\x4a\x8a\xd3\x9e\x40\xd2\xbe\x6e\xdb\x83\x32\x5e\xb1\xbb\xdc\x9f\x62\xf5\xed\x5e\x0f\x15\xf4\x5f\x59\x27\x76\xab\xbd\xad\x30\xad\xb9\x7d\x3d\xb8\xd8\xcd\x50\x25\xfa\x97\xff\x09\x6a\x6c\x8a\x56\xdb\xda\xd2\x79\xbe\x29\x99\xaa\xd7\xaf\xf3\xc1\xcb\x59\xe7\x56\x60\xa3\xee\x12\xd4\xa6\x93\xc7\x2b\xd6\x51\x76\x6b\xb5\xa7\xe1\xb9\x03\xdf\x47\x4b\x05\x45\xb8\xe3\x64\xfc\xee\x63\xd5\x78\xfd\x91\x50\xce\x3b\xe6\x4b\xb5\x6d\xd3\x8f\x4b\x93\x84\x48\x59\x24\xcf\xf1\xd1\xa0\x7f\x2e\x91\x45\x6f\x10\x58\x9f\xe0\x28\x20\x2e\x27\xc7\xad\x27\x7d\x7b\xac\x8a\x13\x32\x91\x88\xf6\x44\x0c\xd5\x77\x2a\x11\x43\x4d\xdf\xbf\x58\xb5\x06\x6e\x4c\x40\x6f\x64\xe4\xc6\x6b\x12\xae\xea\x69\xc9\x5f\x7a\xe6\x5d\xcf\x18\x79\x89\x6a\xe5\x5d\xd3\xef\x83\x20\x43\x1b\x15\x41\x83\xed\x1c\xb5\x18\x5c\x5b\xa7\xfa\xca\xea\x62\x99\xea\x4c\x8e\x7d\x33\xaf\x1b\x77\xec\x42\x36\x48\x01\x33\x15\x39\x15\x42\xd4\x07\x98\xa9\xce\x34\x82\x11\x1a\x71\x3c\x07\xe5\x67\x86\x3c\xd3\xe8\xee\x05\xe9\xc4\xd7\x49\xf3\x7f\x57\x8b\x88\x25\x63\x9b\xe7\x46\xea\xa9\x18\x07\xfa\x7f\xf0\x7e\xe5\xc4\x37\x4c\x7b\x71\x51\xec\x22\x64\xe8\x3f\xe7\xf9\xd7\xfb\x51\x90\xd8\xfd\xa6\xdb\xed\xaa\x64\x1b\x4a\x84\x3f\x43\x26\x84\xa0\x1d\xa4\x90\xf8\xf0\xc4\x7a\x9d\x8c\xfc\x52\x37\x2b\xca\x05\xd0\x61\x4c\x10\x37\xf7\x25\xd9\xbb\xa2\xc5\x3a\x92\xc4\xf8\xe5\x55\x66\x45\x37\x5e\x30\x8d\xd0\xd4\x95\x6e\xa3\x9c\x10\x01\x41\x61\x13\xaf\x9c\x31\x11\x34\xb6\xaf\x47\xa1\x2b\x75\xdd\xa7\x0b\xdd\x38\xf5\xd5\x67\x91\x80\xc6\xf7\xaa\x1e\x74\x80\xed\xae\xd9\xea\xd2\x3b\x66\xed\x71\x9a\xe8\x13\x45\x16\x58\x83\x8b\x2c\xe9\xf2\x80\x8a\xa9\xe8\x3e\xf9\x4c\xce\x33\x85\x3d\x70\xd5\x6b\x14\xd5\xff\x21\x22\x42\x85\x0f\xdc\x84\x36\x75\xc5\x34\x86\xbc\x4e\x88\x74\x90\x8f\x60\xa7\x5f\x70\xeb\x44\x63\x72\xf7\x08\xb5\x91\x4a\xa4\x9c\xd6\xe6\x6b\x8d\xd1\xa7\x5d\x7d\x85\xaa\xe0\x7e\x12\xef\x98\x69\xb7\xf3\x81\x6e\x25\x60\x2f\xe4\x56\xe5\x84\xa6\xee\x56\xe3\xc2\xf1\x4d\xce\x4f\x79\x9e\x8c\x46\xe0\xcc\x18\xd3\x7c\x72\x30\xee\xc4\x0d\x20\xa5\x3d\x1d\x01\x44\x68\x89\xae\xa5\x1c\xd7\x49\x9b\xae\xc6\x69\x27\x5b\x95\x8a\x96\x82\xff\xab\xcf\xe8\x4c\x5a\x68\xc8\x76\xe3\x7e\x3f\xb6\x8d\x51\xdc\x90\xbb\x03\xe5\x17\x7c\x34\x54\xbf\xe2\x54\x54\xfe\x3d\x73\xd8\xfe\xf9\xfd\x7a\x42\x14\x1b\x26\x4f\xb3\xa4\x33\x89\x2f\xc5\x74\x17\xe0\x3a\x9a\xd3\x06\x8d\xe0\x0b\x2c\x88\x76\x6c\xc4\x4b\xc7\xb6\x47\x3a\x02\x67\x99\x7f\x28\x34\x8b\x4c\xc7\xf6\x4b\xb9\x53\xdf\x06\x9d\x0b\xe3\x82\x35\xb2\x1a\xa2\xbb\x0b\x83\x2c\xf0\x2c\x77\x75\x0a\xd5\x52\x63\xd5\x89\x8b\x32\x4e\x12\x45\x66\x88\xaa\x45\x14\xc0\x30\x52\xf2\x52\x72\xfd\x2d\xcc\x65\xb3\xb3\xcd\xf9\xa9\x4f\xbb\x2d\x81\x20\xe4\x9e\x33\x1d\xc2\x34\xe0\xfa\x67\xf0\x76\xdf\x66\x95\xbf\xb7\xd0\x4c\x53\x24\x1d\x49\x95\x1f\x65\x6c\xf4\x0f\x1d\x0f\xbd\xc8\x74\xba\xb0\x67\xf3\xc8\x30\x34\x8c\xaf\xb8\x7d\x85\x08\x09\x57\xec\xb5\x50\xe6\xb5\x92\xf1\x16\xa1\xf6\xaf\xba\x9e\x94\x1f\xac\xac\x9e\x34\x4c\xee\xff\x88\xd8\x4f\x08\x63\xa3\xc6\x17\x7e\xcf\x2b\x49\xba\xe7\x87\x5c\xfe\x3d\x3c\x08\xe5\x65\x72\x99\x8f\x92\xa2\x06\x76\xe5\x77\x6b\x09\x0e\x17\x6d\xe2\x06\xe6\x7c\xe7\x0d\x03\x2c\x72\x5c\x4b\xa7\xec\xea\x69\x2e\x1a\xd0\x0e\x47\xc8\x65\x45\x07\x02\xe6\xe5\xa4\xaf\x6b\x60\xb4\xc0\xe6\x45\x37\x46\x26\xe1\xb1\x6e\x9e\x14\x89\x99\x72\x6d\xbf\xd8\x1b\xf0\xeb\x28\xae\x39\xbf\xf3\xfb\x4f\xaf\x87\xc8\x51\x0d\xb4\xe7\x26\xf6\x63\x66\xa7\x19\x4c\xf5\x54\x2b\x38\xf1\xa5\x5f\x6d\x51\xfc\xbd\x13\x65\x2d\xe0\x3f\x65\xcc\x52\x6d\x7f\x8d\xca\x5a\x9c\x24\x03\x37\x27\x88\xee\x28\xcc\xe9\x69\x38\x1b\x39\x21\xa7\x5c\xd8\x7c\x25\x6e\xdb\xc7\xab\x3f\xf5\x60\xba\x30\x01\xb4\xe1\xde\x0c\x02\xe7\x46\x8b\x7c\x0b\xa4\x34\x65\x69\x0e\x09\x94\xb4\x03\xa0\x14\x2c\xba\x9b\x11\x0d\x14\xdc\xa4\x21\xf4\xab\xdc\x26\x46\x74\xee\xb9\x67\xe6\xf7\xfb\xf9\xa1\xb0\xc6\x9e\x7f\xaa\x45\xc2\x96\xff\x10\x8d\xd0\xce\xda\xde\x82\xcd\x1b\x41\x5a\x18\x4e\x42\xf9\x8b\x19\x7f\x13\x9b\xd2\x29\xc0\x23\x59\xfe\x53\x01\xc4\x79\xe7\x3c\x3f\xe5\x73\x71\xb5\x1d\x79\x96\x9a\x04\x91\x08\x16\xfb\x19\x5e\xf9\x67\xc6\xa2\xad\x83\x2f\x37\xbb\x66\x90\x42\x5a\x09\x7e\x0a\x2c\xf0\x72\x3c\x0c\xf0\x85\x7e\x96\x09\x7f\x81\x4a\x52\xb9\x87\xa2\x5a\x55\x5b\x3b\x21\xea\x4f\x92\x01\xc8\x3e\x3d\x64\x56\x7c\xae\x9c\x90\xcf\x5d\x89\xed\x2a\x08\xc1\x08\x69\x77\xca\xbd\x39\x39\xae\x0b\x16\x17\x8d\x8a\x13\x30\x52\x57\xa1\xbd\x41\x9e\xbe\xd3\x6f\x37\x58\xa7\xec\x02\xeb\x5c\x8f\xf7\xac\x66\x0e\x36\xcb\xae\x29\xdd\x0c\x0b\x6c\xd5\x4d\x67\x8b\x10\xfd\x6d\xc0\x1e\x00\x42\xbd\xb3\x15\x72\x62\xbc\x95\x20\xe8\x27\xa9\xc5\x52\x56\xc6\x05\x42\x5a\x2c\xa2\x0f\xdd\x26\x95\xe3\xb1\x2c\xd3\x3f\x3b\xbb\x12\x37\x02\x9a\x4c\xc8\xe0\xe5\x64\x5c\x73\x67\x7e\xaa\x69\xd2\x34\x1b\xa0\xe0\x1a\xa2\xa1\xe3\x43\xc2\x47\x8e\x0b\x87\x83\x8c\xcd\x17\x2d\xbc\x1a\xbe\x1f\x54\x39\x4b\x34\xbb\x0b\xd6\xe6\x3b\xdc\x96\xc3\x23\xfe\x31\x95\x4a\x7f\x12\x51\x50\xf9\xdf\xbb\xe0\x05\xe6\xf3\xfb\xac\x68\xf2\x7d\x1a\x4f\x29\x73\x93\x16\x6d\x93\x9a\x8e\x69\x84\x3d\x0d\x72\x10\xe5\x19\xad\xe3\xce\xed\x66\x45\x5f\x68\xd0\x9c\x9f\x51\x14\x72\xe8\xd7\x5e\xa6\x01\x83\xe9\x99\xe9\x4f\x56\xf7\x0d\x25\x4d\x9d\x95\xd9\x19\xba\xb6\x3f\x85\x13\xf0\x54\x5f\x1e\xa2\x39\x49\x7a\xbc\x52\x0b\x57\xda\x57\xf7\xed\xf2\xf1\xb1\x5e\xcc\xf4\x74\x73\x31\x4e\x7a\x82\xbc\x42\xbc\x20\x03\x42\x3a\x2a\xd7\x20\x9a\x06\xaa\x6e\x99\x52\xc4\xe0\x11\xea\x09\x72\x59\x4e\xa2\xad\x73\xba\xb3\xb3\xcd\xf6\xa0\x9c\x18\x4d\xa1\x03\xd7\x3f\x9a\xff\x4a\x27\x50\x07\xe6\x35\x9d\xac\xef\x33\x2a\x84\x9d\xa2\xee\x25\x27\xbe\x31\x68\x5f\x37\xbd\xbe\x67\x5a\xc1\x0c\xc5\x1b\xcc\x66\xf7\x06\x8d\xd1\x74\x72\xc7\xfe\xd9\x08\xad\xa1\x77\x9c\x09\x95\xe3\x28\xfc\x65\x91\xe5\x4b\xdd\x41\x6f\x04\x64\x34\x32\xe2\x35\x9e\x07\x56\xb1\xab\x0d\x57\x0d\xa3\x01\x11\x21\x39\x5e\xdf\xba\x67\x1c\xce\x23\xeb\xf5\x6d\x22\x0d\xa5\x19\xef\xb1\xa9\x64\x7d\x82\x16\x93\x5d\x2d\x1e\x09\xec\xb2\xff\x4d\xb3\xc5\xc5\x08\xfc\x18\x62\xff\xed\xeb\x3e\x68\xfb\xfc\x93\x70\x8a\xa8\xff\xef\x59\x1f\x2d\x37\xcd\x4f\x49\xf4\x72\x8d\x15\x0f\x2e\xba\xf0\x05\x7b\xe9\x7d\xe2\xff\xf8\xec\xb3\xec\x6d\xf7\xac\x3f\x15\x9e\x58\xa2\xb3\xfd\xd5\x0f\xc3\xbf\x1d\x71\x1e\x51\x8e\x87\xac\x48\xb1\xac\x03\x98\xda\x60\xa3\x66\x1b\xd5\xcb\x8b\x5e\x5c\x76\x27\x02\xa8\x00\x0a\x46\x28\x08\x0c\xb9\xe6\x73\x9c\x90\x6e\x65\x6c\x3b\x93\x08\xab\xe1\x1e\x3e\x74\x1d\x2d\xe5\x8a\x72\xd1\xa0\xfc\x83\x73\xa6\x4a\x28\x45\xb4\xfe\x59\x6f\x57\xe3\xa5\x19\x2d\x41\x0d\xb9\x64\x4b\x92\xcf\xd2\x70\x64\xc9\x55\x4f\xa5\xb2\x4f\x6c\xf2\x77\xfe\xa3\x16\x6d\xf8\xbd\xeb\xe1\xde\x5e\x33\x3d\x5b\x3c\x32\xae\xeb\x8b\x31\x86\x33\xd8\xfb\x08\xe3\x45\x8e\x45\x85\x4a\xdc\x02\x20\x50\xcb\x8b\x82\x0d\xfb\xb6\x33\xeb\xf8\x87\xab\x23\x84\xbb\xe4\xad\xdf\x88\xa8\x76\x79\x16\x8b\x5a\x3b\x43\x75\x20\xa0\x62\xb0\xd0\xce\x7a\xbd\xb8\x2c\xad\x75\xc5\x73\x8c\x97\x4b\x3d\xe0\x41\x14\xf8\x2e\x46\xc5\x59\x8b\xbe\x81\xdf\x45\x2d\xfe\x61\x44\xca\x70\x0f\xc7\x2c\xd3\xcc\xc1\x66\x12\x07\x1e\x63\x3f\x17\x35\x17\x18\x78\xb7\xe2\x08\x5f\x9a\x69\x16\x83\x3c\xb7\xfd\x32\x76\xa4\xb7\x09\x44\xc4\x90\xd5\xfe\xc0\xdd\xb1\x1c\x53\xf7\xd6\x81\x4e\x7a\x02\x57\xc4\x6d\x4b\x8c\x22\x27\xa1\xca\x04\x90\xe7\x0e\x86\xa2\x5e\x26\x72\xf1\xab\x51\x90\x50\xbc\x4c\x01\xb6\x7c\x1d\x0a\x1d\x77\x29\x7a\x2c\xf3\x6c\xb0\x80\xc1\x9c\x57\xe5\x3b\x2e\x47\xe4\x27\x03\x72\x31\x4e\x57\x6c\x51\x56\x39\xaa\x30\xa3\x6a\x87\x07\xd7\xe2\x89\x97\x03\x3a\x4c\x2a\x14\xca\x5f\xe1\xef\x21\x29\x6d\xae\xd9\x16\xc2\xb8\x6f\x0e\x03\xa8\x19\xc4\x1e\x9b\x67\xa8\xfe\xd9\xee\x9a\x3c\x0e\xe3\xd1\x4a\x57\x12\x20\xfc\x37\x7c\xb0\x97\x66\xbd\x41\x6e\x26\x19\x7a\x19\x00\x43\x1b\x24\x82\x70\x9c\xdb\xf8\x0f\x22\xbd\x4b\xb3\xe4\x30\xc7\xe5\x20\xb7\x93\x04\xe0\x3e\x47\xe2\xd6\x68\xa3\x01\x65\x2f\x6d\x5e\x2c\xe2\x89\x56\x8d\xcb\x59\xb0\x5c\xb6\xfb\x53\xf7\x7e\x94\xf0\x24\x60\x07\x0c\xda\xb1\xb1\x49\xe0\x32\x7c\x91\x2f\x14\xfc\x6a\xf1\x3d\x60\x02\x0d\x94\x5b\x98\xe3\xbb\x4c\xac\x2c\xd5\x0b\xfc\x0d\xdf\x7b\x8e\xcb\xd8\x24\xc9\xda\x04\xa5\x20\xf7\x87\x01\x48\x22\xf1\x2b\x7c\xf0\xe4\xd8\x70\xdf\xa1\xa9\x66\xcf\xa4\x66\x49\x96\x8b\x87\x24\x1c\x0a\x93\xa6\x4f\x10\x3f\x6d\xb2\xd6\x2f\x48\x5f\x0d\x5d\x04\x74\xf8\x00\xb6\x10\x35\xd1\x31\x46\x8d\x83\x2f\x37\xf3\x01\x80\x79\x28\x7f\xdc\x64\x86\xf3\x9b\xa1\x78\xb8\x6a\x4d\x60\x3b\x41\x92\x08\xd1\x2b\x39\x26\x1f\x75\xf0\x4b\x5f\xd8\xc9\x5d\xe9\xb0\x42\xae\xba\x20\x16\xbe\xe3\xb3\x94\xc3\xfd\xa1\xac\x5f\xac\x80\x89\x75\x18\x6f\xfd\xa7\x10\x45\x17\xcb\x52\x67\x03\x6e\x67\x13\xcf\x50\x4e\x46\xe6\xd5\xad\x29\x1e\x73\xff\xe8\xdb\x82\x41\xa8\x0a\xdc\x4c\xaa\x8a\x1a\x6a\xb1\xef\x42\x19\x4b\xfe\x08\xde\x50\xba\xb4\x11\x01\xa7\xf7\xb6\x5c\xf4\xad\x02\x54\x0d\xcf\x3e\xf5\x67\xae\x0f\x89\x0c\x55\x46\xf9\xd0\x0b\x80\x2f\x46\x50\xf6\xf1\x28\x33\x41\xa8\x66\xa5\xd6\x38\xbe\xd5\x20\x24\x72\xd8\x3d\x5f\x39\xf6\x7b\xda\xd1\x7c\x2c\xa0\x4b\xae\xae\xa2\xe1\x25\xad\xce\x0c\x99\xef\x34\xb7\xed\x32\x59\xdb\xe1\x0a\x0e\xda\x77\x27\x66\xfb\x9f\xe1\x1e\x61\x5d\xb6\xb5\x08\x83\xfe\x16\xc5\xdf\x0f\xc8\x1f\xe7\x59\x92\x14\x54\x59\x10\xb9\x65\xb5\x7c\x21\x7e\x32\xfd\xbe\x35\x39\x48\x3e\x50\xce\xba\x1d\x8d\x92\x92\xfb\x59\xb3\xe3\xa4\x8c\x05\xa8\xe8\xa0\x5d\x02\xb1\xe1\x61\x20\xd5\xcb\x93\x93\x4f\x9c\x17\xef\x99\xb5\x05\x3b\x41\xf1\x2f\x1a\x23\x00\xaf\xec\x71\x11\xb3\x1a\xda\xbd\xda\x05\x35\x28\xf3\x7a\x1c\x61\xb0\xdc\x17\x6a\x08\xd6\xf7\x57\xc1\xda\x42\x9c\x6a\x88\xa7\x93\x01\x6c\x51\xc7\xf9\x8b\x9a\xa6\x88\x3b\xc0\x41\x28\xa4\x2e\x64\xd5\x57\x7c\x21\x3f\xb5\x6d\x5b\x14\xda\x6c\xf6\x5c\xbf\xc1\xe6\x9d\x1d\xdb\xbc\x87\xa6\x9a\x85\x35\x44\x31\x7a\x84\xe0\x3a\xdc\xe2\x2c\xba\x26\xb7\x4f\x56\xab\x5e\xc6\xe0\xb1\x9e\xd1\x6b\x3d\x42\x33\x80\x3b\x89\x1f\xef\xb2\x0b\x01\x45\xcb\x2a\x62\x02\x64\x10\x3e\x2a\xbe\x9f\xa8\xac\xee\x47\x44\x3f\x25\x16\x0e\xfa\x4a\xdf\xa7\x66\xe3\xf6\x96\x63\x61\x91\x42\x02\x66\x13\x45\x2e\x30\x22\x31\xa5\xbf\x46\x9c\xa3\xbc\xa0\xee\x49\x20\x2b\xbb\xc6\xe3\xdb\x42\x2d\xe0\xfe\xea\x0f\x9e\x44\xb0\x25\x27\xeb\x9f\xa2\xbe\x9e\x2d\x30\x96\x59\x5d\xa0\x54\xf9\xb0\xfc\x11\xe4\xbd\x47\x91\xe5\x7b\x58\xaa\x5a\x0b\xf4\xd5\x0d\x5b\x64\x89\xcc\xd0\xa9\x62\xa4\xfb\x06\xa4\x9f\x7f\x15\x05\x62\xf6\xbf\xc2\xbd\xab\xc8\xe4\xd6\x45\xf1\xca\xfe\x5f\x77\x44\xd4\x13\x61\x00\x0b\xe1\x84\xaa\xec\x84\xf6\xfd\x61\x8f\xfb\xcb\x56\x6c\xbe\x10\x77\x1a\x34\xb7\xf8\x90\xb1\xd7\x23\xf3\x6f\x2b\xd9\xb2\xed\x4c\x52\xf7\x48\x5a\xc4\xaa\x82\x5f\xfd\x00\xa9\xcb\xcc\xe8\x5f\x45\xc1\x51\xf6\x6c\x27\x2e\x05\x74\xf9\xc5\x57\x3c\x41\x74\x83\x98\xa3\xeb\xf8\x0d\xf2\xec\xab\x16\xaf\xc4\xd7\xa6\x43\x9d\xba\x6e\x7b\x74\x72\xb3\x9a\x36\x68\x15\x9d\x23\x4a\xa2\x51\xfd\x2e\x53\xd8\x67\xaa\x6f\x43\xc2\xf2\x21\x6e\x09\x8b\x05\x31\x0a\x6c\xc4\xed\x61\xa0\x9c\xde\x70\x6a\xf9\x08\x44\x4e\xbb\x3c\x40\x31\x9f\xee\x39\xea\x18\x7a\x75\x87\xaa\x18\xd6\x98\x9e\xf6\x2a\x3c\x6e\x21\x78\x8f\x5d\xd9\x7d\x64\x33\xeb\x9c\x46\x08\x15\x88\x8a\x2f\xbb\xa7\x8e\x75\x00\x3a\x03\x18\xc0\x47\x5b\x3c\xca\x00\x64\x8b\xd7\xc9\x39\x34\x15\x66\xd6\x7c\xa9\x77\xa2\x05\x47\x88\x2d\xb4\x49\xab\xfe\x37\x7e\xeb\x37\xdd\x23\xc6\xbd\x9c\x71\xf7\x28\xc7\xe4\x52\x96\x63\xc8\x9d\xce\x6b\x05\xee\x84\x5b\x64\x72\x3c\x56\xc9\x9f\x9f\x6a\xae\xc6\xc4\x95\x0a\xdf\x77\x82\x14\x9d\x4e\xd4\xe8\xc0\x67\x8b\x8b\x36\x07\xaa\x86\x45\x47\x11\x12\x7d\xc7\x45\x2c\x3a\x1a\xf6\x04\x91\x39\x15\xed\x6c\x75\x2f\x61\x8e\xcf\x71\xad\x43\x38\x31\x34\x34\x73\xcf\x4d\xfe\x65\x18\x9a\x85\x97\x08\xa6\x7c\xce\x19\x2b\xb8\x5b\x4c\x79\xcb\xb1\xb3\xb5\xf0\xb6\xdb\x5b\xd5\xa3\x95\xe3\xf5\x90\x2f\x2e\xf4\xdb\x06\x60\x5d\xdc\xe5\x77\xdd\x67\xe4\x98\xb0\xca\x90\x8e\x42\x52\xe3\x39\xde\x7d\x0e\x70\xdd\x77\x3b\x17\xe3\xa2\x2b\xad\x1a\x0f\x5d\xf4\x78\xd7\x5d\xad\x10\x9a\xdd\x63\xe2\xea\x77\x99\x7a\x12\xca\xca\x05\x40\x52\x28\xf0\x1e\x46\x44\x01\x9b\xed\x10\xda\x9b\x27\x60\x3b\xbd\x76\x8a\xbf\xae\xf3\xee\x0e\xb0\xd2\x7e\x82\xc5\x29\x7f\xe4\x02\x30\xf9\x07\x6f\x2f\xb2\x05\x27\xf7\xdd\x99\x1c\xed\xfe\xf9\x95\xbb\xc9\x32\x72\xef\xc2\x46\x2b\x54\x31\x70\x13\xf5\xe2\xa2\x63\x7b\xd6\xa4\x59\x4e\x92\x52\x37\x48\x52\xea\x46\x9d\xb6\x52\xc7\x26\x71\xbb\xca\xdf\x64\xd4\x1e\x7d\x86\xb3\xa3\xa1\x72\x98\x99\xba\xe3\xaf\xba\xe8\x66\xfd\xbe\x52\x8b\xa3\x64\xf5\x69\x22\x28\xd8\x89\x7c\x41\xf8\xb2\x01\xd3\x40\x09\x70\x0f\xf9\x85\x76\x65\x55\xcd\x12\x48\x6e\xf0\x6c\x2f\x80\x24\x4c\x4e\x60\xe1\xfd\x6a\x9e\x9d\xd5\xe3\x68\x0b\x41\xd0\xbe\xb9\xe6\xec\xec\xfc\x67\x5c\xa8\x82\x62\xc5\xf7\x98\xda\xe8\xbe\xd0\x66\x7a\x33\xea\x4b\xc6\xbf\x18\x92\x74\xf1\x87\x24\x1a\x78\x09\x36\xc6\xd3\xf4\x57\x11\x91\x8a\x54\x55\xef\x57\xb9\xe0\x68\xc6\xe5\x5b\xd8\x38\x0a\x34\x0e\x69\xdb\xad\xa8\x31\x3d\xbd\x29\xb7\xe6\x71\xdb\x95\x71\xc3\xbe\xfa\x2e\x56\x17\x7c\xce\x86\x6b\x85\x79\x49\xb0\x99\x83\xc1\x61\xce\xcd\xb9\xfc\xff\x10\x35\x80\xab\xa5\x01\x8f\x7d\x1f\xb1\xad\x12\x24\x54\x3b\x12\xb1\xe5\xc3\x1a\x8a\xeb\xa5\x81\xc9\x4d\x5a\x5a\x61\xd5\xda\x3c\x81\x19\xfc\x13\x51\x80\x91\x2d\x2f\xe7\xf0\x0b\x5a\x8c\x6d\x78\x1e\x36\x1e\xc7\x2c\x56\x4d\xaf\xaf\x80\x28\xcf\x83\x19\xa8\x44\xee\x4b\xf0\x82\x75\x71\x83\xf6\x99\x59\xc8\x4d\x11\xaf\x58\x17\xa6\x7a\x3f\x3c\x17\x88\x6f\x43\xa7\xfb\x5b\xb5\x2c\xcf\x08\x07\xe1\x92\x7d\x72\xe1\x27\x65\xce\x51\xad\x99\xc0\x63\x93\x01\xe0\xca\x7c\x3f\xa2\x75\xe2\x89\x84\xc2\x5b\xbd\xe8\x73\xe6\xc4\x2e\xc5\x45\x42\x2c\x34\xea\x57\xb9\x17\xfc\x89\x9a\x5e\xe5\x20\x4d\x6d\x67\x22\xe4\xc5\x3f\x19\x21\x9e\xa1\xcc\xea\xda\x88\xca\x42\x61\x4d\xde\xee\xda\xbc\xd8\xc9\x66\x9e\x5a\x23\x22\x68\xca\x3c\xd7\x34\x42\x35\x23\xb9\xd2\xc3\x51\x91\xd8\x47\x09\x14\xd3\x79\x8a\xd8\xb9\x37\xb1\x4a\x61\xa8\x37\xb1\x89\xb4\x78\x11\xf8\x7d\x7f\x55\xa6\x2f\xb1\x7e\xaf\x38\x17\x0a\x47\xb9\x6d\xbd\xf1\xbb\x5f\x92\xdf\xfc\x60\x18\x00\x25\x0f\xf1\x80\xb1\xc6\xef\xc9\x7e\x54\x08\x7b\x88\xe1\x3f\xc2\x4e\x13\x4d\x41\xe4\x1e\x48\x1c\xbe\x83\x47\x84\x4a\xd1\x7f\xec\x32\x0a\x60\x47\xff\x5f\x67\x8e\xcf\x38\x64\x35\xa2\x2a\xf8\x1a\x69\xdd\x8c\x71\x94\xce\x4f\x35\x8b\x76\x37\xcb\x92\x76\x37\x4e\x3a\xb9\x85\xa6\xef\xe6\x2d\x27\xdf\x8c\xc7\x0b\x43\xa0\x2a\x38\x35\xec\x5c\xce\x72\x69\x26\xa2\x4d\x99\xea\x2e\xb4\x5b\x53\x07\xec\x1d\xf4\xbb\x36\x41\x08\xb9\x29\xd5\x9f\x13\xc4\x5d\xb2\x30\x28\x4b\x85\x4b\xe9\x78\x1a\x41\xf0\xc7\xa5\xda\x1c\xb7\xd4\x20\x2f\x06\xd0\x74\x44\x10\xb9\xad\x45\x65\xd1\xab\x43\x2e\x05\x84\xd8\xa4\x13\x17\x3d\x99\xb0\x42\x10\xf4\xe1\x30\x44\x7d\x1f\x12\x92\x64\x31\x4e\x6c\xb1\x83\x60\x88\x1b\xb0\x32\x8a\x9f\xae\x5c\xe0\xe6\x15\xf7\x61\xe1\x43\xe5\xb7\x74\xad\x8e\xae\xd6\xa6\x4b\x0e\x8b\xf3\x89\x75\x1c\x92\x5c\x8e\x3b\x5b\x18\x96\x90\x2e\xe1\x21\x6f\x77\xbd\x37\x01\xc3\x0d\x9f\x65\x06\x93\xc5\x38\xef\x49\xf0\x4c\x5c\xee\xd5\x43\x52\xd2\x37\x2e\xad\x04\x1a\x27\x55\xdf\x0d\xf9\xf1\xbd\x91\x09\xc1\x30\xa9\x14\xa7\x1d\xfb\xba\x15\xad\x2f\xfc\xe9\x46\x44\x04\x7e\x1b\x3e\xcd\x2d\x4c\x67\xa7\xbb\x57\x84\xc1\xa0\x9a\x54\x42\xb4\xf0\xe5\x8f\xb7\x1a\xc4\x8a\xef\xbe\xc9\xb3\xe6\xce\x07\x3c\xf2\xa7\x48\x8f\x1a\xdd\xe4\x5d\x54\x90\xfe\x16\x73\x8d\x7f\xcb\x7d\xd0\x8f\x6f\x86\xce\xbc\x90\xa4\x7b\x75\xf2\x69\x65\xb8\xdc\x20\xc2\x82\x0d\xe2\x59\x29\xe2\x36\x24\x38\xa4\x90\x85\x65\xa9\x55\xad\xa7\xe9\xa1\xac\x80\x20\x11\xb4\x23\xca\x67\xd1\x20\x5d\x95\x47\x89\x94\x61\x6d\x37\x0d\x0d\x6c\x47\x61\x07\x1b\x18\x52\x3e\x58\x71\x28\x5b\x69\xab\x99\xba\x5a\xdb\x5a\xa1\x6d\x78\x63\x84\x14\xe2\xfc\x70\xe2\x15\x5f\x58\xfa\xda\x70\x94\xda\x27\x79\xcc\x3d\x5c\x9a\x65\x51\xbb\x0b\x20\x0f\xf2\xfd\x5f\x44\x81\x54\x4f\xe8\xe6\xfd\x20\xb2\xd7\x30\x7e\x93\x8c\xed\xa6\xcb\x5c\x10\x4d\x3e\xda\x72\x3b\x46\xb1\x6d\x0d\x4f\xf7\x7c\x66\x74\x72\x87\x0a\x68\x32\xab\x28\xec\x30\x94\x6c\xe4\xe5\x57\x51\x56\xc1\xbb\xbb\x1d\xf1\xb8\xe5\x90\xd1\x63\x0a\x75\x73\xad\xa0\xdd\xd5\xad\xc0\x70\x4e\x38\x05\x5b\x82\x04\xa8\x52\xe1\x99\x61\xe8\xfc\x43\x60\xd7\xdd\x7b\xfb\x99\x56\xc0\x87\x3c\x09\x1c\x2b\xee\x71\x12\x46\x5f\xdf\xe5\xa7\x48\xd7\x29\x5d\xce\x07\xfd\x92\xea\x39\x67\x88\x26\x92\xeb\x62\x5d\xd3\x8b\x93\x52\x76\x26\xee\xfd\x08\x1c\x98\x9c\x44\x81\x2e\x7c\xc9\xec\x6c\xcc\xce\x6e\x3e\xd6\x0a\xcd\xf3\xbb\x4c\x24\x47\x08\xa1\xbf\x1c\x12\xcb\xe4\xbb\xcc\x20\x5c\x67\x8b\xf7\x37\x17\xab\xcb\x00\x16\x14\xb0\xbc\x8f\x86\x44\x32\xf4\x51\x2d\xb4\xc7\x21\x70\x25\x59\x86\x81\x43\x4a\x27\xc7\x35\x85\xeb\xfd\x4e\x4b\xa4\x6d\x48\x19\x06\x56\xfa\x1e\x57\xe5\xef\xd5\x8a\x70\x5a\x5b\x7a\xbb\x24\xaa\xe8\x34\x9f\xfb\xee\x88\xf6\xfc\x13\x34\x14\xb5\x6c\x95\x1f\x08\xf8\x06\x79\xe5\x72\x32\x52\xa7\xed\x98\x1c\xb6\x5d\x87\x70\x70\x89\x4a\x5a\xde\xf0\xc4\x10\x77\xdc\x7d\x7a\x01\xf3\xea\xd2\xe5\x8f\xc6\x1e\x94\x1b\x39\x77\x02\xfe\xce\x62\x88\xcc\xa8\xfb\xfc\x3f\x22\x39\xba\x90\xad\x06\x10\x9b\x40\x86\xdc\xdd\x2a\x7c\x28\x18\xa3\x24\x2b\xac\x83\x66\x68\x09\xab\xe1\x85\x41\x26\x1c\xdf\xa7\x67\x74\xf0\xb0\x93\x5b\xcc\xa1\xc5\x03\x73\x5f\xfc\xed\xf9\x89\x00\xde\xbb\x4b\xf2\xce\x17\xb9\x1c\x79\x86\x3e\xd2\x8d\xd3\x3d\xd5\x47\x44\x64\x05\x7b\x58\xef\x8c\x30\xc8\xc0\x16\xa3\x6d\x2b\xec\x03\x30\x1a\xf7\xa9\xcb\x0f\x71\x69\x8f\xec\xf4\x38\xa5\x5d\xa8\x56\xe0\x81\xff\x82\x94\xab\xdb\xb9\x35\xbd\x58\x30\x35\x3a\x7e\x10\x3a\xb4\x97\xc7\xb0\x2c\xd5\xeb\x18\xe4\x0b\x8d\x80\x26\x3d\x1c\x05\xbc\xd8\x61\x3f\x6a\x53\x9a\x81\x23\x8f\x98\x9d\x95\x3e\xd6\x51\xd6\xfd\x82\xd8\xaa\xe0\xf6\x70\x97\x0a\xe2\xab\x41\x24\x26\xd6\x74\xb2\xc5\x45\x2a\xa5\x1e\xa5\x21\xa1\xa3\x7e\xb5\x2e\x0e\xf2\xc1\xb2\x59\x35\x18\xfb\xd7\x99\xed\xd0\x0a\xfa\x09\x83\x29\xc7\x63\x89\xe9\xe9\x66\x3f\x31\x45\x19\xb7\x1b\x01\x81\xbb\xcd\x25\xa1\x72\xbc\xbe\x35\x18\x3f\x34\xb5\xbf\x69\x5f\x6f\x5b\xdb\xc1\x4c\x42\xa8\x5a\x9d\x20\x58\xf3\x89\x11\x0e\xc5\x15\x47\xe1\x4b\xf8\x9d\x4b\x84\xdf\xb9\x34\x56\x53\x9b\x9f\x6a\x2e\x24\x83\xb4\x9c\x08\x48\xfd\xb3\x11\xd1\x0e\x9d\xa2\xd7\xf5\x57\x63\xe5\x74\xc7\xb8\x9b\xb7\xbb\x71\x69\xdb\x00\x66\xa9\xba\x76\x08\x49\xce\x53\x7c\xd6\x35\x69\x67\x0d\xd8\x05\xa9\x1b\xa3\x40\xa0\x45\x64\x9a\x08\x4c\x96\x62\x07\xc8\xae\x22\x6a\x24\x0e\x97\x88\x2e\x0d\x8d\x2a\xec\xf6\xa3\x63\x85\xa6\x2a\xd2\xec\x9a\x0e\x88\x2e\x94\x2c\x40\x62\x3f\xe7\xb7\xbc\x02\x7f\x75\xa3\xb0\xa1\x9b\x11\x6d\x52\x2a\xb4\x67\xfd\xee\x5a\x69\x85\x36\xcb\xc7\x3b\x81\x85\x55\x08\x10\x81\xb4\xde\x20\xf8\x5c\x51\x5a\xeb\x42\xb5\x11\x6c\xe5\xbc\x8e\xbb\x3e\x70\xaf\x05\xdb\xf2\x3a\x55\xbb\x16\xf3\xb8\x63\xd6\x1e\xa5\x3a\xeb\x3d\x26\x42\xc4\x43\x40\x75\xe5\x1a\x1c\xbd\x17\xaa\xaf\xae\x43\x85\xcd\xdc\x52\xf4\x0d\xbe\x43\x53\x23\xfa\x25\xc4\xd7\x33\xe7\x2d\x7c\x40\x37\xbc\xe1\x70\x2e\x88\x5a\x1f\xba\x6d\x2e\x3a\xeb\x63\x6b\xda\x19\xfe\xbc\x3d\xc8\xd7\xb8\x47\x1e\x85\xf8\xfa\x0c\x19\x83\x5e\x96\x96\xb9\xd5\x56\xaa\x50\xe0\x45\xa1\x49\xce\xc0\xe8\x7e\xbc\x6c\x62\x03\xdf\x25\x50\x58\x44\x12\x8a\x8b\x25\xae\xa2\xac\xbd\xec\x28\x5d\x7d\x05\xb0\x7a\x28\x08\xa6\xfe\x3d\xc6\x17\xb9\x04\x28\xff\x10\x3d\x4e\x4c\x05\xb1\xed\xec\x71\x79\x1c\x41\x70\x49\xa1\xdf\x37\x83\x20\x98\x80\x5d\x37\xe9\x8c\x37\xea\x2d\x82\x44\x46\x00\x78\x13\xed\x43\xf9\x2a\x3c\x63\xf9\x17\xf7\x60\x94\x85\x3b\xdc\x6c\x36\x28\xfb\x83\x72\x57\xf0\xcd\xb7\x68\x9a\xe1\xa8\x83\xdc\x23\xf8\x7d\x13\x8e\x01\xc6\xf8\x17\x68\x3c\xc8\x09\x96\xb2\x27\x58\xf5\x04\x4d\x3f\x65\x3c\x50\x3b\x9b\x0c\x52\x9c\xc7\xc5\x7d\x8a\x00\xce\x30\xbc\x40\x51\x1c\x43\xff\x66\x57\x6b\x2b\xd0\x43\x4b\x04\x9d\xb8\x28\xf3\xb8\x8d\x28\x0a\x71\xed\xdb\xdc\x79\x79\x3b\x7a\x66\xab\x09\x9c\x69\xfe\xb7\xff\xf9\xc4\x68\xa7\xe6\xc0\x3f\x7d\xc9\x77\x6a\x1a\xa4\x59\xa7\xe1\x61\xba\x96\xda\xd7\x51\xbf\x10\xb8\x71\xc4\xd0\xe3\x31\x95\xb8\xe9\xe6\x42\x56\x76\x27\xaa\x05\xa1\x2c\x87\x6e\xeb\x7a\xca\xb1\x99\x83\x32\x30\xf5\x4b\x66\x47\x1a\x14\x45\x6c\xd2\xc9\xd0\x30\xb8\xc4\x48\x44\x19\xb0\xf5\x64\xee\x01\x88\x71\x3a\xe0\x27\x52\x93\xac\x15\xe5\x8e\x06\xc9\xc2\x56\x4b\x07\x58\x20\x61\xd2\xd4\xb7\xd5\xf0\xa4\x18\x8d\x16\x01\x2e\x2e\x05\xe6\x33\xd3\x37\x6d\x37\xb6\x3c\x49\xd4\xf1\x10\xaa\x96\x63\x7c\x23\x92\xe0\xbb\x11\x63\xa1\xef\x0e\xc3\x60\x7b\xd9\xb5\xbd\xc2\x26\x2b\xb6\x78\x2c\x0c\x3c\x88\x2a\xb7\x36\xc3\x99\xc9\x1d\x3b\x46\x9a\xd4\x30\x74\x12\x4d\x23\xe3\xf1\x90\xaf\x79\x55\xcf\x3e\x46\x22\x51\x77\x68\x8a\x44\xc8\xde\x91\x9f\x3d\xa4\x5c\x6d\x07\x34\xe6\x11\xc5\x3d\x1c\x12\x4a\xe0\x70\xdd\x3c\x45\x7b\x50\x94\x59\xaf\xd8\xe1\x6e\x17\x49\xe6\x2d\x59\xbb\x5e\xa9\x21\x88\x8d\x41\x31\x12\xc6\x0b\x6e\x08\x85\xdc\x33\x7e\x45\x15\x26\xed\x08\x56\x46\xa1\xdf\x4c\x37\x5d\x22\x69\x43\x5b\xf8\x3c\x4b\x97\x7d\x50\x37\xd0\x5d\x7d\xdb\x6a\x2c\x72\x4c\xc2\xdd\xe2\x7e\x56\x79\x5c\x88\xb2\x22\xee\xd8\x82\x66\x5d\x6f\x51\xc8\x78\x8b\x7c\xdf\x62\x96\x2f\xc4\x1d\xe1\x04\xc1\xce\xbf\xeb\xcc\xb3\x1c\x53\x65\x64\x31\xce\x7b\xc9\x9a\x5b\x73\xca\xc1\xe9\x5e\x19\x5e\xf3\xd7\x50\x14\xd6\xa0\x34\x54\x8b\x05\xb0\x20\x27\x11\xc7\x0f\x45\xb9\x26\xf8\xc2\x57\xc5\x50\x6c\x6b\x91\x6c\xdc\xb6\x31\x61\xe6\x7d\x73\x20\x2c\x94\x12\x89\x67\xd4\xf0\xa3\xea\xe3\x94\x55\xfb\xe6\x9a\xb9\x11\x28\x34\x3a\x1d\x77\x88\xe5\xe3\x4e\x20\x4d\x48\xe2\xbe\x78\x5e\x4f\x5e\x12\xe6\xd1\x6e\x47\x44\x79\x38\xae\xfe\x77\xf0\xe5\x66\x11\x2e\x4b\x75\x57\xaa\xa5\xaa\xb2\x2b\xa1\x06\xe3\xb8\x04\x8a\xac\xdf\xf5\x33\x60\xda\x46\xaf\x2e\x11\x99\xf4\x79\xa2\x0c\xfc\x1a\x93\xc0\x98\xf6\xb2\x59\xb2\xbb\x9c\x35\xc6\x95\xfd\x09\xec\xb4\x9c\xb8\x60\xd4\xb7\xb9\x49\xda\xc5\x5d\x8c\x9f\x06\x9d\x9d\xf5\x13\x57\xd5\x0f\xc1\x65\x1c\x1f\xc3\x8e\xee\x9b\x73\xf3\xd5\xb9\x29\x4a\x37\x5d\x09\xbb\x86\x25\xe7\x22\x81\xaf\x3d\xd9\x72\x0e\x08\xf0\xd9\x8b\x0c\xdb\xc0\xae\x95\xc5\x3c\x24\xdd\xbd\x4b\xc3\x7f\xe2\xef\xa7\x13\xdb\xb2\xbb\x96\x14\x65\x9c\x2c\xd8\xa2\xcc\xb3\xc4\x95\xeb\xd0\x07\x38\x39\x24\x69\xb0\xbb\x23\xa2\xb1\xc1\x23\x2f\x65\xc9\xe2\xae\xd0\xc2\x97\xc2\x01\xfe\xee\x2e\x07\x97\x77\xd1\xcd\x80\x39\xbe\xc6\xe3\x61\x82\x15\xc1\xd6\xfd\x6b\xd9\x9f\x28\xd7\x9f\xa7\x67\x6f\xd3\xa5\x24\x2e\xba\xbb\x42\x30\x7c\xc6\x6d\x14\x94\xd4\x6f\x38\x63\xaf\x3d\x22\xee\x6f\xb3\x18\xcc\x11\x02\x0e\x5e\x47\xdb\x16\x06\x76\x5b\xeb\x19\x2a\x76\x16\x71\xea\x28\x02\x09\x41\x20\x6a\x44\x72\x3c\xf6\xa6\x66\x67\x0f\x8c\x4e\x3b\xc1\x5c\x42\x28\x5e\x8e\xc7\x3e\xf4\x7c\x73\xd5\x24\x49\xdf\xf4\x6d\x3e\xe1\x16\x91\xd4\x77\xa8\x2b\x78\x93\x6a\x3d\x17\x08\x77\xed\x94\x72\x5c\x8e\xa0\xca\x4d\xa4\xe2\xc4\x80\xd5\x35\x0b\x1f\xcc\xe2\x00\x2a\x2a\x14\x68\xb6\x8f\x0e\xb7\x48\x08\x1e\x9a\x6a\x7e\x7e\x67\x83\x38\xbb\x98\x4e\x27\x0a\x19\x1e\x1a\x8a\xa8\x01\x3c\x70\xaf\x40\x2a\xba\xae\xa3\x0e\xb3\xf8\x37\x23\x55\xae\xae\x59\x05\x38\x5e\x15\xec\x1a\x24\x6d\x17\x70\x42\x6e\x82\x48\x68\x9d\x3c\xe9\x4d\xf5\x22\x75\x2e\x9d\xc8\x84\xd7\xda\x59\xaf\xc1\x78\xd9\x6b\x8c\xdc\xbc\x36\x86\x42\x3f\xf8\x72\xd3\x24\x58\xe9\x70\x2a\x1b\x68\x2c\xa0\x8e\x7b\xdb\xb9\x35\x9d\x54\xa5\x21\x67\x9b\xb4\xb3\x06\x29\xfc\x9e\x66\xde\xfe\xd3\xbe\x36\x64\xdb\xdd\x0c\xa5\x0b\x95\x07\x75\x9f\xc1\x02\xbc\x15\x51\xba\x7d\x84\xa7\x32\xb8\x74\x71\x89\x40\xcb\x49\x56\xa0\x62\x26\xe9\x03\xe9\xa7\x5d\x75\xf5\x51\xf4\xb5\x7e\x3a\xd2\x13\x24\x8b\x7c\x8a\x5a\x82\x77\x86\x34\x2a\xfe\xd3\xe1\x48\xe3\xb1\x4e\x39\xfe\x2b\x83\xb8\x48\x5c\x5a\xe3\x95\x6a\x84\x0f\x18\xab\x13\x2b\x15\xab\x6e\x3c\x61\x70\x03\x1c\xed\x3c\x2b\xd0\x37\x80\x9b\xde\xa0\x56\xc4\x46\x1d\x27\xd4\xb2\xb5\x7d\x29\x12\x89\x63\x8f\xc2\xa7\xcf\x93\xa8\xcb\x6b\x83\x3c\x2e\xfa\xf9\xa0\x63\xd3\xb6\x75\x0c\xae\xc8\xd8\xde\x74\x37\xac\x21\xa0\xdb\xe3\xd8\xb5\x57\x23\x1a\x2e\x7c\x17\x61\xbc\x9c\xd4\x0d\x2f\xae\x66\xb9\xab\x57\x61\x61\xe9\xac\x13\x11\x7b\xfd\xe9\x18\xcc\x65\x76\xb6\x59\xf4\x63\x25\x88\x03\x39\x2a\x2a\x37\x72\x4c\xe6\x6c\xc1\xb4\x97\x93\x0c\x4d\x6a\xd4\xf6\x21\x3a\x28\xc7\xee\x26\x60\xd6\x41\x08\x2b\xc7\x63\x4f\xb9\x4a\xea\x33\x53\xf8\xf1\x02\x64\xb5\xe7\x69\xda\xee\xfc\x98\x4f\x9e\x9d\x6d\xa6\xd6\x76\x58\xe9\xe8\x06\x29\x1d\xdd\xa8\x35\x6f\x5d\x93\xaf\x78\x85\xbe\xba\xf6\x62\x50\xcd\x7b\xb9\x0b\x12\x75\x1a\x69\x3a\x10\x06\xfc\x7e\xf7\x4b\x12\xd9\x3d\xda\xe2\x96\xa8\x7b\xb2\xea\xe1\xb6\xf4\xd0\xa7\xa7\x9b\xf3\x53\xf3\x7b\x42\x58\xf9\xe7\x78\x7d\xca\x2e\xe4\x0c\x0a\x42\xba\x7f\xc1\xf8\x4c\x94\xcd\xb5\xc0\x1d\x94\xba\x8f\x23\xcd\x46\xde\x86\xa1\x19\xe5\x54\x25\x2f\x35\xbe\x2c\x66\x0e\x36\x17\x06\xf9\x92\x2d\x0a\x52\xe4\x94\x09\x3b\x39\x19\x2b\x73\x1d\x9a\x6a\x5a\x53\x94\x82\x62\x40\x86\x70\x0b\x61\xf8\x88\xd4\x1b\xaa\x36\xc7\x86\x7b\xe4\xf3\xcd\xe7\x7f\x8d\x70\x45\xd2\x77\x91\xfc\x3f\x72\x4d\x04\x5c\xfe\xdf\x39\x7b\x85\xf0\xee\x2f\xf0\xa8\x95\x11\xb6\xca\x26\x51\xb5\x3b\x16\x39\x0b\xe7\x7b\x03\x5f\xf8\x3d\x79\x90\x0f\x9c\x01\xd7\x9e\x0f\xae\x51\x86\x56\xd9\xe6\xdf\x8a\xb6\xff\xba\x1f\xde\x6c\x3c\xf7\x5c\xa8\xb4\x54\xef\x59\xa4\x44\xa2\x10\x40\xfd\x08\xcf\x11\xc1\xcf\xb5\x28\x20\x8d\x6e\x31\xef\xe8\x2f\x61\x4c\xb4\xb3\x40\xa3\x2d\xdf\xc7\x6c\x2e\x8a\xe9\x28\xf1\xe1\x9d\xfc\x7d\x14\x4a\xb7\xc7\x9d\xfd\x83\xf9\x39\x3d\x6c\xbc\x34\xe3\xc3\xff\xc6\x2b\x3a\xd7\x7b\x12\x50\x18\x8d\x4e\x03\xc5\xd5\x5f\xa1\x9b\x0b\x34\xd0\x49\xb1\x85\x58\xb0\x47\x98\x85\xe0\x7f\x46\x8a\x8f\x64\xeb\x94\x5b\xbd\xb8\x93\x23\x54\x96\xba\x38\x8e\x78\x9b\x69\x16\x7d\x6b\xdb\x5d\x84\xa4\x1e\xf2\x1c\x7a\x9e\xd1\x23\xde\x94\x7d\xf5\x85\x06\x6b\x7a\x10\xa9\xc8\xd9\x3a\x4e\x4d\x0d\x34\x82\xba\xe8\x3b\x78\x90\x72\x32\x66\x23\x9e\x6f\xb6\xbb\x59\x16\xb8\x31\xa4\xc4\x47\x7e\xfc\xaf\x86\x5b\xa7\x28\xaa\x95\x40\x44\xaf\x5b\x74\x5d\x0e\x53\xfe\x7e\xd8\x27\xb2\x69\x96\x56\x56\x73\x0b\x50\x0c\xd5\x63\xdd\x90\x75\x75\xcf\x38\x2d\xe3\x5e\xdc\x09\x5c\x19\x75\xbc\x69\x8f\xfa\x72\xf0\xeb\x16\xf4\xaf\x3a\x1c\xe3\x9e\xb0\x8e\xaa\x6c\x35\x5d\xf3\x53\x07\x9a\xbf\xfa\xa5\x7f\xba\xff\x4b\x5f\x98\x73\x6e\x0c\xa9\xef\x83\x61\x40\x73\x9c\x77\xcb\x48\x8b\x69\x01\x7d\x60\x3a\x1d\x67\x9d\x71\x01\x1b\x54\xb4\x7f\x37\x0a\x3d\xc4\x9f\xbb\x4f\x4b\xe0\x39\x36\x43\xbd\x6f\xae\x59\xc4\xbd\x7e\x62\x79\xe6\xed\x2c\x11\x1e\x23\xae\xc6\x57\x9d\x1f\x06\x0e\x8d\xb2\x6b\xf3\x5e\xe6\xac\x0c\xae\x0c\xc5\x59\x39\xae\x67\x5d\x4f\xed\xaa\x7f\xf4\x3a\x22\x49\xe3\x92\x41\x7a\xb2\x34\x9d\x78\xd0\xfb\x64\xe2\xd3\x3a\xe1\xf3\x1e\x44\x10\xd0\xf4\x41\x4e\xf0\xee\xa8\x3a\xfb\xec\xac\x54\x7a\xc6\xc9\x50\xe6\xa7\xaa\xdd\xe0\x28\xb7\x01\x93\x85\x19\x3c\xc1\x8a\x42\xb7\x23\xdf\xe6\x3b\x8e\x31\x4f\xec\xf8\x7f\xef\xaf\x7b\x29\x4e\x92\x58\x82\x72\x54\x91\x3f\x66\x8a\xc9\x8f\xa3\xa7\x69\x9e\x39\x31\xe0\xdf\xd8\x11\xd8\x66\x4f\xe3\xe7\x14\xde\x1a\x78\x51\x1e\x69\x05\xca\xa8\xab\x8c\x5b\xde\xb9\x1e\xd2\xe5\x8e\xed\x0f\xdc\x00\x4c\x58\x07\x50\x5b\x53\x21\xa5\xa7\x47\x32\x6b\x93\x97\x36\x07\x85\x2e\xa0\xed\x77\x87\xe4\x9f\x1f\x46\x21\xb8\xfe\xc3\x21\x71\x1b\xbc\x39\x12\x2c\xf7\xb3\xf4\x11\xf7\x8f\x5a\x9f\xa4\xca\xdf\x65\xb7\xf0\x3c\xb4\x72\xdf\x9c\x4f\x2f\x49\xf5\xe1\xaa\x33\x97\xac\x14\xa0\xd2\x08\x61\x35\x5d\x1b\x92\xa6\xe5\x47\x60\x7f\x97\xaf\xa2\xca\xcf\xdf\x8f\xbd\xd4\xff\xcc\x61\x35\xe2\xa2\xd0\x32\xaf\x17\x1d\x0b\x02\x64\x5c\x23\xb7\x05\x38\x77\xdc\x3d\x88\xa3\x87\x1b\x57\xaf\x5f\xd7\xa5\xec\xe7\xb6\x88\x3b\x36\x2d\x8b\x51\xc9\x9d\x88\x40\x51\xd2\x8d\x11\x05\xf6\xba\xbe\x47\x3f\xcf\x06\x9d\x89\x00\x69\xb8\xe3\x1e\x18\x42\xdf\xe3\x78\xaa\x0a\xed\x0a\x7b\xd0\x76\xe2\x2a\x05\xe1\xf1\xec\x33\x3c\x9e\x7d\x86\x10\x32\x26\x2d\x56\xab\x68\x31\x24\x8c\xef\x39\x23\xa1\xbc\x71\xe3\x43\x03\xaf\x36\xdb\x5d\xdb\x83\x5a\x5a\x00\x5d\x13\x79\xc8\xe5\xb1\x1b\x79\xbe\x69\xd2\xb5\x55\xb3\xe6\x94\x8b\xd4\x3d\x55\x1e\x49\x15\xf6\xaa\x5f\xfc\x24\x39\xe6\xca\x14\x41\x82\xa8\x41\x34\xd1\xa7\xa8\xd2\x71\x6a\xa8\xb2\x66\x1d\xdb\x03\x37\x77\x18\x6b\xf2\x2e\x37\x8c\x6f\x8d\xdd\x54\xf5\xbe\xfc\x36\x61\x99\x9c\x77\xf0\xb6\xe4\x84\xf5\xaf\xca\x17\x26\x43\xa9\x52\x5a\x19\x88\x46\x1a\x22\xf4\x85\x98\x54\x12\xa7\x80\x9b\x20\x3a\x82\x2c\xfd\x1c\x91\xfb\x09\x48\x5f\x72\x4f\xf7\x9e\x01\x7e\x6d\x60\x90\x45\x08\xd0\x86\xc4\x19\xf0\x6d\x82\x18\x4d\xae\x87\x2e\xfe\x75\xc4\x59\xaa\x0d\xe7\xac\x87\xc2\xbc\xab\xd8\x4a\x79\x8a\x5c\xac\xc2\xb0\x72\x15\x23\x41\x54\xe1\x05\xbd\xa8\xd4\x83\x7b\xc3\x83\xbc\x83\x10\x03\xd5\x90\x8f\x18\x7a\x71\x04\xf1\x15\x36\x20\x26\xfd\x05\x79\xe2\x42\x2a\x64\xaf\xc7\x51\xc6\xc5\xfa\x15\x0d\x45\x84\xb9\xff\xab\x53\x00\x47\x54\xf0\x06\x36\x36\x7a\x57\x47\x11\x9e\x89\xc8\x91\x83\xa7\xe1\xdd\x5c\x47\x54\x84\xa8\xe6\x17\x2e\x62\xc6\x26\xf9\x7a\x4d\x4e\xd0\x2c\xac\x59\xc8\xb3\x0c\xf4\xa0\x1a\x7b\x51\x31\xe7\x8c\x1f\x91\x58\x8d\xd3\x54\xab\x1c\xd8\xa6\x1f\xd1\xb0\xa8\xb0\xde\xab\x77\x24\x74\x4f\x26\x6c\x84\xb0\x47\x17\x29\x20\xb8\x18\xf8\x93\xb2\x85\x4c\x2a\xe7\x00\x5c\x48\xdd\xc9\x97\x42\xfd\x10\xd4\x09\x44\x95\x3a\x2e\xfb\x34\xe5\xf6\xfd\xac\x88\x4b\x95\xd6\xc1\x33\xfe\x18\x57\x25\x27\xc4\x8d\x5d\x0c\x8a\xbe\x05\xd9\x78\xf5\x48\x91\xb1\xa1\xa9\x2e\xc7\xb5\x33\x42\x1d\x5b\x9a\xd8\x13\x04\x23\x14\xbf\x46\x90\x9d\x6b\xbe\x84\xd0\xce\x4d\x7f\x82\xc8\xfa\x51\xdb\x46\x23\x13\x6e\x52\xc3\xd6\xba\x6e\xe8\xa2\xc1\xdc\x9e\x36\x3e\xc3\x67\x2f\x10\x63\xc2\xe2\xc0\x26\x13\x24\xc8\x40\x7d\xa4\xe3\x24\x95\x77\x81\x38\xe1\x8b\x6c\x90\xa0\xcf\xea\x89\x02\x3d\xee\x76\xa2\xe5\x16\x8e\x2e\x75\xca\xc1\x4e\xd0\xf0\xf2\xfb\x23\x8a\x0e\x7e\x3a\xdf\x13\xc3\xcf\x07\x62\x78\x42\x73\x0f\x92\x8e\x88\xf1\x79\xd8\x92\x27\x06\xba\x4c\xbd\xb5\x55\x93\x3b\xe0\xcc\xec\xac\x94\x6f\x4e\x06\xa0\xc3\xff\x7e\x72\x8c\xa5\xe3\x95\xf9\xa9\x66\x6f\xd0\xee\x4e\x04\x00\x02\x82\x02\x94\xde\x6f\x38\xfb\x0d\xb4\xf7\x9b\xb5\x2a\x89\xae\x36\x1b\x2f\x0c\x84\x24\x46\x6d\x18\xd9\x33\xea\x88\x96\x36\xcf\x63\x47\x66\x31\x37\x27\xf5\xfb\xa3\x88\x5c\xe5\x24\x60\x79\x63\xe3\xe4\x4f\x62\x7d\x3c\x3a\xb1\xe0\x76\x8f\x8e\x32\x84\x6f\x4e\x4c\xba\x34\x30\x4b\x76\x8f\xfb\x63\x81\x88\xbb\x87\xee\xdb\x51\x01\x27\x75\x9b\x18\xa1\x6e\x91\x71\xdc\x05\xb6\x08\xb9\x5d\x98\x3a\x19\xa7\x8f\x78\xb4\xbe\x32\x7b\xda\x2e\xa9\x11\x31\x28\x06\xd2\x1d\x11\xde\x11\xd2\x27\x1c\x55\x72\xeb\xf5\x8d\x13\x61\xdf\xa7\x4b\x03\x05\x5c\x39\x8e\x42\x9d\x64\xd5\xda\x65\x9b\x76\x76\x53\x58\x02\x9d\x68\x34\x7a\x6f\x53\xe4\x23\x4d\x28\x19\xc0\xc4\xc3\xd5\x69\x4c\x82\x6b\x9c\x72\x66\x4d\x5a\xec\xee\x02\x91\xd0\xdd\x27\xc3\xd3\x8e\xcb\xb5\xbd\xe1\xa5\x5e\x1b\x8e\x8a\x44\x11\x27\xe8\x90\x04\x14\x30\xab\xe5\x39\x8a\x66\x67\x3d\x99\x77\xc0\xd5\x3c\x60\xe4\xf3\x03\x78\x35\xac\xd0\x1f\xc0\x74\x6a\x5a\x51\x53\x47\x58\xb1\xb9\xcc\x0d\xe3\xbb\xb8\x61\xff\x80\x76\xcf\xe3\x2d\x9a\xf8\xea\x0c\xda\xaa\x90\xa8\xd0\x3c\x2e\x69\x89\xb0\x29\x1c\xe1\x35\x7a\x47\xcb\x59\x99\x2d\x0c\x96\x63\x18\x39\x05\x58\x05\xb1\xca\x93\x81\x83\xdf\x1a\x87\x02\x9f\x24\xb0\xcc\xef\xcb\x8f\xe0\xcd\xc8\x7d\x6a\x23\x97\xd8\xed\xce\x8d\xf9\x95\x99\x83\xcd\x15\x93\xba\xe5\x8f\xf6\x8c\xa6\x2f\xf8\x42\x94\x41\x45\xf7\x02\x45\xb1\x6d\xad\xd0\x24\x6b\x67\x0b\x83\x3c\x25\xd9\x80\xcd\x88\x98\x86\x36\x6b\x14\x55\x9a\x49\xbc\x62\x27\x03\xf6\x1d\x2c\x82\x1e\x10\x30\x3d\xe3\x27\x21\x02\x24\xf1\xe4\x90\x7f\x31\xcf\x52\x83\x5a\x9a\x22\x96\xa9\x5b\xfb\xa1\x27\x39\xcb\x16\x84\x29\x17\x39\x14\x4c\x32\xe4\x06\x94\x47\xb5\xe1\x89\x6e\xae\xd2\x7c\x51\x6a\x96\x96\x5c\x62\x57\x45\x09\x08\x78\xbf\x47\x65\xd4\xef\xd5\x78\x81\x66\x99\x67\xfd\x89\x80\xc9\x43\x15\xd8\xeb\xdb\x7f\xf1\x15\xb9\xc1\x7b\x75\x0c\x43\xfd\x24\x13\x55\x0c\x00\xce\x40\xa6\x23\xc7\x54\xb6\x28\x57\x26\x43\x53\xf3\xdb\x5c\x34\xb9\x25\x2d\x6a\x3f\x50\x12\x98\x64\xde\x66\xe0\x4f\xba\x64\x13\x2b\xd3\x03\xd8\x42\xe7\x51\xb1\x45\x46\x70\x92\x4a\xb9\x27\x29\x93\x11\x7d\x7d\x25\x80\x08\x3d\x9d\x71\xfa\x95\x83\x2f\x37\x17\x93\x4c\x46\xd4\x43\x64\x72\x61\x48\x73\x3f\xcc\x4f\x68\x7b\xfd\x72\xcd\x4d\xc6\x79\x39\x2d\x4f\xef\x76\x8e\xf0\xdf\xb6\xec\xa6\x71\xbb\x11\x66\x33\x91\x82\xe9\xdc\xdf\xb8\xbb\x68\x96\xb6\xd7\xb7\xb9\x29\x07\x39\x7c\x80\xd6\xa1\x1b\x9e\xfc\xec\xdd\x1a\xcc\xd5\x8b\x4d\xd3\x37\x79\xd9\xb5\x71\x07\x80\x6e\x05\x53\x54\x5f\x21\xc7\xc0\x5e\xe8\x62\xec\x67\x50\x23\xde\xe9\x1e\x3a\xe2\x3d\x69\xe5\x79\x0a\x3e\x0f\x4e\xbe\x8b\x27\x59\x27\x2e\xef\xcc\x94\x7c\x3c\x7a\x96\x82\x9f\x85\x2c\xef\xc4\xa9\x53\x70\x74\xdf\xea\x87\x92\xaa\x0f\xa8\xfb\xa1\x89\xef\x41\xd9\xad\xb2\x88\x80\x1c\xb9\xc2\x57\x73\x65\xbc\x6f\xf0\xf2\x81\xa6\x7d\xbd\x6f\xf3\x92\x34\x41\x8f\x93\x26\xe8\xf1\xd1\xd9\xcf\x25\xfb\x99\x6a\x97\x2a\x6f\xb9\xdb\x25\x08\x9f\xb7\xb7\x08\xbc\x75\x12\x31\xaf\x72\xaf\x07\x68\xe6\x11\x17\xcb\xfb\xe5\x17\xd2\x8c\x5b\xee\x41\x09\x7e\x73\xdd\x79\x5f\x0f\x08\xaf\x9e\x1a\xc2\xe7\xdd\xeb\x34\x91\x03\xa4\x90\x4c\xeb\x82\x36\x40\x9b\x77\xee\xed\xa1\x17\x2a\xfc\x04\x5e\x6f\xf3\x15\x2f\xa4\xfe\x4d\x12\x00\xfd\x94\x1b\x15\x81\xb1\xdd\xe6\x04\x13\x94\x56\xcd\x39\x23\x4f\x28\xef\xe5\x5c\x77\xaf\xb3\xc6\xe9\x65\x76\x27\xdf\x19\x99\x38\x2a\x54\x60\x6d\x97\xab\x0a\x4b\x4d\x1c\x6e\x0d\xaf\x1f\x3d\x6a\x2d\x96\x8f\x30\xcb\xf9\x3e\xf6\x45\x07\x1d\x53\x19\x17\x77\x47\xca\xe0\x3c\x92\x9e\x25\xe5\x1e\xd2\x48\xbc\xc8\xdd\x80\x73\x11\x4d\x5a\xdf\x74\x65\x69\x5f\xc2\xf5\x62\xfc\x87\x31\x5d\x76\xdf\xfd\x1c\x16\xcd\x9f\xb8\xd5\xe0\xb9\x84\xbc\x84\xca\xd5\xb1\x20\xef\xd0\x54\xb3\x30\x7e\x10\x75\xa4\x5f\xe0\x67\x00\x7c\x77\xe5\x6f\x3c\xe6\x74\xc5\xa6\x9d\x2c\x9f\x08\x28\x0a\x28\x86\x7b\x29\xaf\x2f\xbe\xe2\xa7\xa3\x34\x68\x2f\xb3\x32\x83\xd5\xfc\xc7\x69\x34\xf3\xa5\x81\x15\x91\x59\x1a\x61\xd7\xaa\x3b\xd8\x4c\x36\xaf\xb8\x9b\xc5\x02\x7b\x03\x0b\xd7\xbd\xe2\xbf\xfb\x54\x8b\xcc\xa7\x72\x29\xf8\x51\xb1\x2b\x14\x6f\x9d\x27\x94\xfb\x26\xc7\x5e\x0e\x62\x83\x27\x32\xe7\xa3\xf7\x06\xa9\x4c\x90\x1c\xd6\x2d\x0a\xd8\xdb\xd9\xa0\x2f\x3c\x0a\x02\x11\x6e\x05\x58\xf0\x5d\xe7\x29\xb5\x9b\xec\x49\xb8\x7a\x0b\x59\x27\xd6\x94\x47\x27\xf4\xdc\xf7\xeb\xe8\x5e\x4d\x25\x73\x29\x5e\xb1\x66\xd5\x20\x92\x47\x46\x05\xbc\x98\x1c\x0f\x99\x0e\x79\xd1\x24\x6d\x4b\x0d\x46\xb9\x7c\x39\xa9\x13\x7d\x5a\x1a\xa8\x04\x91\x87\x69\xfb\x5e\xd9\xb8\x03\xa9\x32\x2a\x37\xca\xac\x77\xa1\xfc\x0c\x24\xf4\x76\xc5\x67\x6e\xc5\x7f\x9a\xa8\x98\x87\x4e\xef\x86\x8e\xcc\xfe\xa7\x08\x47\x78\x99\x48\x3c\x04\x72\x06\xcf\x3f\x39\x86\xba\x39\xf8\xb2\xc3\xfa\xda\xd5\x09\x12\x06\x41\x5e\x87\xd9\xf0\xab\x6e\x57\xa2\x6a\xb4\xad\x15\x4a\x96\xb6\xd7\xef\x9a\x22\x16\x0d\x27\x65\x2b\x6c\x78\xf1\xe0\x53\x35\x15\xa6\xd2\x24\xcb\x60\x06\xd2\x87\x28\x15\x51\xdf\xf2\xf5\x09\xeb\x09\x5a\x55\x8e\xf0\x38\xcf\x52\xe7\x11\x6b\x69\x33\x9e\x22\x27\xe5\x75\xdf\xe6\xe6\x3c\xf3\x53\x83\x28\xa1\xb6\xbe\xb5\x97\x66\x9a\x6e\x3e\x2d\x80\x53\xee\x21\xa6\x90\x93\xb1\x7c\x7b\xe6\x60\x33\x35\x79\x9e\xad\xda\xa2\x04\xae\x18\x35\xe2\x3b\xc4\xe1\x77\x81\x88\x87\x4f\x0d\x55\xfd\xbc\x5f\xac\xb5\xbb\x99\x03\xf8\x95\x71\xdb\x95\x0c\xe1\x04\xd1\x79\x47\xe5\xef\xed\x61\x28\x1f\xb2\x6a\x55\x27\x4b\x5d\x13\x23\x70\x7a\xdc\x20\x4e\x8f\x1b\x54\x22\x76\xa4\x0d\xd9\xc0\x29\x11\x78\x72\xd0\xeb\xc4\xb0\x7f\xbd\x0e\xbe\xde\x1e\x94\xd9\xa0\x84\x2f\x1d\x91\x38\x57\x76\xc1\x71\x75\xed\xfd\xcd\xc5\x41\xda\xc1\xb6\x85\x2b\x42\xdb\x15\xfe\x6a\xd7\xfa\xc8\x66\x0c\xc0\x91\x85\x0c\xfd\x25\xbc\x91\x8f\xb1\x67\xe5\x84\x26\xa5\x3a\x66\xed\x11\xa2\x9b\xda\xd3\xf2\xc9\xf7\x67\x9f\x6e\x05\x30\xff\x71\xd7\x78\x53\x71\x8d\xea\x26\x91\xa8\x3c\x74\x49\x1f\x7c\xc1\x35\x9e\x18\x3e\x82\x35\x27\x27\xce\x19\xc0\xa5\x0b\x8c\x08\xa6\xea\x1e\xe3\x3c\x26\xd7\x9f\xe2\xda\x42\x26\x43\x70\xc1\x2d\x9d\x22\xbe\xf6\x53\x63\xb5\xcb\x57\x66\x0e\x36\x07\xe9\x8a\x8d\x3d\x22\x8e\x26\x27\xfc\x18\x05\xc9\xb6\x26\x56\x49\xe9\x91\x4d\xcb\x30\x8b\x9c\x44\x4f\x05\x83\x9b\x9b\xc5\xb2\xe8\x61\x3c\x47\x43\xaa\x9f\x45\x14\x9e\xfd\x8c\x08\xa2\xb2\x7c\xc9\xa4\xf1\x57\xad\xbc\x32\x45\xa1\x33\x6a\xf1\x0c\x15\xef\x6f\xd5\xea\xe5\x24\xb1\x30\x4c\xbd\x3a\x42\xc1\xe5\x61\x9f\xac\x8b\x44\x9e\x21\x8f\x7b\x71\x2a\xf5\x68\xb8\x23\xc4\x49\x72\x1c\x7d\x26\xc4\x10\x5d\x93\xf7\x4c\xdb\x0e\xca\xb8\x6d\x12\x84\x9a\xc8\xee\x30\xe5\x20\xad\x9b\x88\x7c\xfd\x6d\xfc\xac\x0a\x73\x04\x2c\xf8\x77\xf0\x84\xe5\xe3\xeb\xe3\x28\xa9\x25\x53\x76\x6d\xe8\x40\xc2\xe6\x81\x7c\x5a\x8e\xc7\xec\xd8\xdc\x5c\x73\xd5\xac\xc8\x08\xb9\x2f\x67\xba\xab\x91\x13\x9e\x6e\xcd\x92\x6c\xa9\x4a\xe1\xaa\xeb\x83\x23\xbd\x45\xbc\x83\xb7\x68\xe6\xa2\x17\xb7\xbb\xf1\x92\x49\xd1\xc5\x12\x1d\xe2\x88\x08\xab\xce\xa1\x06\xa1\x9d\xfd\x6a\x0b\xa9\x5a\xf1\x53\x2c\x40\x95\xe5\x3d\x49\x49\x0e\x8c\xc8\x33\x2b\xd7\xc8\xf8\x5b\x6d\xf6\x4d\x51\x58\xa1\xe8\xc4\x2a\x46\xff\x49\x34\x6d\xb0\x31\x10\x3e\x1d\x89\x9e\xde\xc2\xdc\x66\xb4\xf4\x04\x7b\x77\x03\x59\xb1\x9c\x0c\xf7\xc4\xcd\x7e\x6e\x17\x7f\xb3\xb9\xf8\x39\x07\xd2\x46\x0e\x2f\x65\x20\x6c\xaf\x2b\x4c\x01\xbf\x17\x53\x84\x40\xb5\xdc\x0e\x69\xc3\x6f\x3d\xd5\x72\x15\x56\x01\x37\xba\x5d\x8f\x05\x78\xcf\xed\x7a\x04\x43\x0d\x18\x1d\xd8\xee\xc9\x56\x20\x0d\xd8\xde\x22\x2a\xa8\xbd\xad\x20\xf0\xf1\x38\x98\x81\x7c\x85\x7c\x7e\xea\xc0\xe6\x15\xd9\x13\x18\x51\x7a\x7a\xdd\x59\x79\xac\xae\x1d\x88\xfb\x11\x21\x4f\xb4\x48\x85\xf3\xb2\x8b\xab\x44\x04\x0f\xeb\x01\x69\xfa\xde\x56\x60\x25\xd8\x83\x58\x1f\x8d\x14\x61\xb9\xc6\x47\x7e\xc3\xc9\x49\x60\xd1\xed\x76\xe1\xb9\x66\xb8\x8d\xdf\xfd\x92\xc7\x2c\x56\xd1\x21\x16\xc0\xfd\x61\xe3\x77\x0e\x78\x1d\xa1\x4f\x9a\xbf\x4f\xe2\xb4\x9d\x25\xf0\x86\x9e\x7b\xa7\xfa\x51\xed\x09\x05\x7b\x1b\xe7\x05\x09\x67\x5d\x8b\x82\x70\xd6\x35\x1f\x88\x16\x36\x59\x6c\xb8\xd7\x80\x5a\x09\x84\xa1\xe4\x78\xcc\x53\x3a\x41\x9c\x9e\x0d\x0b\xa4\x8e\xdd\xc5\xc3\xa9\x13\xdb\x2f\x61\x57\x7c\x14\x73\x48\xb5\xff\x7e\x88\x7d\xac\x38\xb5\x9a\xba\x4e\xcf\x94\x36\x8f\x4d\x32\x11\x92\x57\x80\x9e\x70\x0b\x1f\x46\x4c\x81\x5b\x87\xae\xea\x65\x65\x96\x6b\x23\x10\x26\xf9\x6a\x34\x82\x3e\x0d\xdc\x07\x7f\x46\x14\x24\x0b\x71\xb6\x94\x1b\x07\xf9\x6d\x50\x7f\xe4\x3a\xf1\x76\x5c\xaf\xd5\x07\x5e\xc8\x33\xd3\x69\x9b\xa2\x94\x02\x34\xb2\xa3\x77\x5c\xce\x20\xc7\x3e\xd8\x8d\xd3\xd7\x08\x27\xe1\x75\x4b\x67\x67\xbd\x6e\xe9\x33\x5b\x41\x96\x2f\x36\x0f\xbe\xfc\xa8\x5b\x9e\x3a\x13\x10\x6a\x4f\x77\x22\xea\xcf\xff\x1c\xc5\x5f\x24\x04\xbf\x40\x42\x74\xcd\x3d\x7b\x19\x95\x76\xeb\x1a\x45\xc5\xff\x85\x09\xd5\x3e\x72\x4b\x04\x15\xe6\x53\xce\xdb\xb2\xd2\xbe\x32\xdc\x4f\xb0\xdc\x55\x9d\xb8\x76\x3b\x5b\xb1\xa9\x4a\x99\xe1\x0f\x31\xd4\x24\xc7\x63\x95\x0b\x07\x1f\x11\x5e\x74\xed\x05\x22\x82\x94\x21\x4d\x39\xa9\xc5\x6b\x98\x9e\xf9\xaa\x03\xb8\x78\x82\x40\xa9\xf8\xe8\x0c\x40\x0d\x4b\xe8\x6b\xd6\x68\x58\xaf\x13\x4c\x01\xe2\xb1\x51\x57\x22\x5b\x88\x53\xa7\x1b\xb5\xf9\x66\xf5\x8c\x36\xdf\x1c\x7e\x9a\x0c\xf4\x8a\x2d\xca\x78\xc9\xf5\x3f\x5d\x91\x0b\xe8\xae\x7b\xee\xc5\x7b\x12\x10\x12\xc6\xa1\x96\xea\xd7\x68\xbf\x2e\x66\xf9\xe7\xdc\xc3\x45\xb6\xb8\x81\x06\x14\x2a\x5a\x1b\x54\xb1\xbd\x89\x22\x00\x12\xde\xc7\x9d\x2d\x92\x97\xe9\x5a\x78\xe8\x59\x9e\x1c\x12\xd8\xfb\x07\xae\x03\xa8\x9c\x15\x95\x99\xf1\xd2\xc6\x41\xec\xef\x0c\x96\x0d\x6a\x08\xc2\x6c\xb1\x79\xc4\x01\xc6\x60\x8a\xbf\x85\xc2\x36\x3e\x7a\xcf\x35\x02\x61\x0f\xdf\x72\x78\x2a\x05\x84\x54\x0b\x0d\xbb\xea\x7d\x2e\xf3\xbd\x39\x24\xb9\xc6\x2b\x24\x6d\xf7\x4b\x38\x23\x38\xb3\x1b\x11\xe9\x5a\xde\x46\x51\x04\xff\x72\x7b\xc8\xac\xae\x37\x51\x93\x83\x87\x99\x5c\x27\xdc\xc3\xcf\x29\x0a\x39\x16\x85\xf9\xfb\xc9\xb1\x29\xca\xb9\xb9\xca\xb9\x56\xbb\xd0\x42\xca\xc3\x6b\xb9\xbe\x1d\x85\xa9\xee\xb7\xa9\x7b\xb2\x98\x0d\xd2\x4e\x9c\x2e\xed\xc2\xa5\xc8\x25\x0f\xb7\xf8\x8c\xa9\x70\xec\x03\xff\xeb\xee\x39\x62\x61\xfc\x98\x27\x99\x27\x50\x52\x57\xab\x48\xea\xaa\xe5\xda\xce\x10\x54\x23\x03\x44\xd9\x6a\xa2\x45\x15\x21\xb4\x0e\x80\xc7\x00\xfb\x8d\xcf\x4e\x89\x2b\xf7\x72\x34\x32\x6e\x57\x98\xb4\xcc\x1a\xee\x6d\xd6\xf2\x52\x8f\x17\x46\x5e\x0c\xd3\x53\xda\x6d\xae\x6e\x08\x4d\xa3\x8f\xa2\x11\xc9\xd3\xad\xdb\x7b\xdf\x5c\x73\x21\x31\xed\xe5\xa2\xcc\x52\x3b\x11\x4a\x73\x72\x85\x80\x43\xdd\xc3\xf2\x40\x94\xb0\xc3\xcb\xe8\x17\x83\x4e\xc7\x62\xfc\x0a\xbf\xfb\xf4\x3a\x01\xa9\x2f\xf3\x80\x0f\x38\x35\xdc\xca\xb3\x9f\x6d\x11\xfd\x73\x69\x7a\x7d\x94\x8d\x59\x97\x51\xc7\x13\xaa\x67\xac\x52\x52\x0d\xaf\x44\xb5\x1d\xcf\x58\x88\x71\x99\xa1\xef\x7c\x8d\xb2\xdd\x81\xe6\x62\x96\x24\xd9\xaa\xaf\xd7\x63\x29\xc2\xea\xa1\x2b\x84\xe0\x18\x06\xf8\xca\x98\xac\x8c\xa3\x55\x49\xcd\xe2\x62\x9c\xc4\x48\x0a\xfd\xf4\xef\x4d\xa4\x3a\x72\x52\x67\x3b\x9b\x95\xf9\xe9\x69\x8d\x55\x81\x94\x47\x46\x47\x4a\xc6\x89\x00\xe6\x00\xbf\xc0\x84\xa6\x28\x36\x45\x01\xf5\xf6\x71\x1d\x34\xc6\xc4\x3d\x65\x02\x46\xd0\x72\x97\x58\x31\x04\xf8\x8f\x94\xf4\x2c\x75\x3d\xca\xdc\x74\x6c\x67\x32\x44\x53\x60\x69\x80\xd3\x41\xf4\x2c\xc7\xee\xcd\xc8\xdf\x8c\xa8\xce\x0c\xda\xe5\xde\x6a\xc1\x09\x33\x93\xfb\x55\x44\x78\x9b\x54\xde\xbb\x0d\x0b\x85\xbf\x39\x1f\x91\xee\xe3\x06\x5e\x21\x9a\x7a\xbf\xe4\xbc\xf0\xbc\x0b\x3c\x3d\xe3\x53\xb5\x4c\x7c\x1b\xc4\xf7\x74\xc7\x39\xeb\xf6\xcd\x35\xfb\xd6\x2c\x4f\x50\x9a\x70\x91\xfa\xa8\xd0\x21\xc4\x32\xff\x98\xb9\xc8\xe3\x8e\x2d\xdc\x54\xaa\xea\x4f\x57\x77\xa5\xf2\xd3\xe4\xb7\x2e\xd3\x17\x8c\x17\x9a\x66\x67\x9b\xaf\x99\xbe\x49\x6d\x61\xdd\xe4\x05\x16\xf0\x7d\xe7\x71\xb4\xbb\xe1\xae\x0c\x65\xa2\x93\x3c\x0e\x71\x73\x24\x16\x86\xd0\x1f\x5e\xe0\x06\xe5\x77\x89\x59\x2d\x06\x71\x09\xfd\x78\xdc\x1f\x24\x32\x65\xdf\x38\x8f\xa2\xd4\xe6\x34\x81\x77\x86\x0d\xf3\x71\x52\x7c\xbf\x01\x4c\x89\x6e\x3b\xc2\xca\xc5\x85\x59\xca\x2d\x94\x1b\x46\xb0\xbe\x72\x32\x56\xa8\xd8\x37\xd7\x8c\x3b\xd6\x88\x07\xaf\xb5\x60\x0a\x4e\x5a\x88\xb3\xd2\xb6\xbb\x69\x95\xb5\xad\xed\x0a\x9e\x61\x2f\xf6\x37\x2b\xb8\x62\xdd\x6e\x6c\x21\x46\x77\x5c\x65\xd2\xa1\xc2\xb5\x7f\xe8\xc2\x27\xad\x4f\xd4\xc1\xfa\x2b\x2f\x21\x7b\x11\xc9\x51\x17\x06\x52\x4e\x6a\xf2\xb5\xfd\xcd\x76\xe6\x75\xeb\x94\x4c\x88\x99\x85\xe8\x79\x65\x2b\x36\x2f\xac\x0f\x94\xd0\x70\x94\xce\xac\x9c\x10\x37\x5d\xe6\xfa\x48\x82\x44\x04\x0b\x02\xd4\x51\xe4\x98\x20\x1b\xfd\x4c\xba\x28\x78\xad\x52\x68\x94\x13\x22\x30\x5d\x18\x08\x29\x02\xcc\x38\xc4\x7a\xe4\x78\x94\xa4\xa6\x83\x78\x48\xa8\x59\x48\xf4\x14\x19\x9e\xaa\xd4\xb8\x85\xa1\xfa\x35\xfa\x3b\x55\x9a\x91\x14\x3b\x1b\x81\x03\x74\x48\x05\x14\x01\xf2\xe2\x8d\x08\x61\x2b\xcf\x19\x10\xb9\xa7\x1f\xcf\xad\x49\xfc\x0f\x34\x4d\x92\xc0\x02\x2a\xc8\xb0\xda\x42\x8a\x31\xac\x19\x22\x5e\xf4\x22\x0b\x08\x94\xae\xc3\xb0\xc8\x89\x8f\xef\x7b\x71\x1a\x17\x65\xbe\x36\x41\x7d\x95\xeb\x24\x17\xb9\xe9\xfa\x48\x70\x69\x27\xa8\x28\xb8\x60\xf2\x5c\x79\x31\xd0\xc1\x81\x2e\x9b\x1c\x07\x58\xae\xa0\xf3\xc2\xa0\xdd\x5b\xd8\x00\x72\x32\xf2\x1e\x3a\xb1\x45\x0d\x02\x90\xa7\x23\xcc\x89\x7b\x8a\xc6\x72\x30\x8b\x2b\xa2\x92\xc4\xfc\xdb\xcf\xf2\x76\xb7\x11\x56\xfd\xa5\x61\xa8\x53\x5e\x1a\x4b\x85\x2a\xcb\x98\xdb\xa2\x9d\xc7\x7d\x2f\xb6\xaf\xb4\xd5\x61\xa5\x7c\x5c\xd3\xf6\x9c\xa9\x6c\x41\x3f\xb1\xc6\x6b\xd8\xc3\x96\x35\xd6\xc3\xec\x74\xa3\x15\x80\xbb\x9d\xb8\x68\x67\x83\xdc\x2c\x59\x22\x1b\x3b\xee\xde\xa0\x1c\xfb\x3c\x77\x29\x4e\x54\x16\x40\x5b\x4b\x01\x5b\x73\x91\xa0\x4e\x36\x29\xc0\xe3\xa8\x0c\x5b\xd5\xb7\x69\xa8\xe5\xae\x49\xd9\x8f\x43\xc7\xe4\xed\x5a\x6a\x9e\x7e\x9e\xf9\xa2\x12\x89\xd0\x1d\xf0\x22\x74\x5b\x5d\xf9\xf4\x34\x3c\x65\xcf\xe4\xcb\x02\xc2\x40\x73\xef\xf8\x90\x4c\x01\x46\x9c\x94\x96\x73\xeb\x77\xcc\x1c\x74\x78\x99\x3c\xeb\xc5\x05\x2c\x2a\xa2\x41\x60\xd8\xe5\x38\x7a\x82\x2a\x88\x1d\x9b\x17\x3b\x42\x0d\xfa\x56\x44\x2e\x10\xa0\x6d\x54\x82\xaf\x10\x49\xf9\x09\x5a\x00\xb7\x98\x0a\xb1\xf3\xda\xa0\x28\x6d\x67\x17\x95\xaa\x76\xb4\xa8\x82\x08\x39\x40\x54\x4e\x8e\x92\x06\xf5\x8f\xb1\x51\xbd\x5e\xd2\xbe\xd0\xaf\xae\xde\x85\xf6\xbe\xb6\x2e\xb5\xe9\x99\x66\x6f\x90\x94\x71\x3f\xb1\x83\xc2\xe6\x34\x1f\x75\x83\xa9\xc7\x44\x68\x1e\xc8\x19\x00\x82\x50\x40\x9c\x6c\x79\x81\xf5\x2c\x2d\xb2\x04\x63\x05\x93\xd4\xfb\x17\xf5\x78\x14\x1f\x77\xac\x93\x28\xcb\x5e\xb7\x28\x21\x95\xf5\xa9\x31\x25\x81\x2a\xe6\x1d\xac\x4d\x12\xe4\x9b\xcd\xf9\x61\x5c\x9d\x16\x8d\xab\x2f\xd2\x15\xa2\xe6\xaf\x1f\x27\x89\x41\x1d\xa1\x4e\x0c\x94\xeb\x83\x1d\xe8\xc2\xbb\x55\xeb\x35\x7f\xaa\x1f\x53\x51\xd5\xea\x71\xaa\x9a\x8f\x5b\x56\xf2\x0f\x35\x06\x71\x7f\xf3\xb5\xac\x50\xe1\x41\x9d\x87\x26\x82\xd9\x73\xfe\x02\x17\xec\x52\x9c\x0a\x94\x12\x61\xb2\x90\x07\x28\x6f\xa8\xfb\x25\x58\x9c\xc7\x5a\xc4\x17\x30\x5e\x4e\x9f\x39\xd8\x4c\xb3\xbc\xec\xba\xd1\xa7\x80\xb4\x47\xce\x83\x64\x58\x94\x3f\xd0\x40\x66\xdc\x75\x2f\x2b\xca\x64\x6d\x22\x8c\xd7\x5c\x27\x15\x6a\xe9\x2a\x21\x24\x7b\xbb\x86\x77\xb8\x28\x4d\x2e\x55\x52\x2c\xc4\x77\x78\x26\x59\x28\x99\x55\xbf\xbf\x66\xc0\xab\xb2\x57\x0e\xd2\xe7\x27\x77\x01\xb9\x94\xe3\x31\x1b\x37\x73\xd0\x51\xdd\xc4\x6d\xd3\xef\xdb\xce\x0e\x2e\xd4\x8b\x55\xd6\x42\xa7\x5b\x69\xc8\xbb\x51\x93\x43\xee\xb2\xc9\x7d\xb2\x23\x9e\x63\x22\x1f\x14\xa5\x52\xca\x20\xc7\xb8\x86\x10\xca\x13\xa7\x7b\x16\x9f\x9b\xd1\x33\x44\x5c\x8b\xf0\x20\x5e\x81\xad\x50\x24\x6e\x63\x3a\x8c\x47\x85\xd8\xb5\xfa\x4f\x81\xfc\x86\x25\xc9\x51\x5e\xfe\x9f\x22\xc6\x2a\x86\xf7\x93\xc4\x8b\xa5\x05\x9a\x1e\xb9\xdd\x2d\x58\x51\x15\x81\x0f\x4f\x6e\x5b\xeb\x71\xbf\x19\x7b\x7d\xd3\x2e\x27\xdd\x4f\xb1\x30\x8e\xbb\xb5\x7f\xf5\x94\x6b\x16\x21\x2e\x91\x9e\x14\xae\x67\x1c\xcd\x3f\x37\xd7\x4c\xcc\x9a\xcd\x27\x42\x22\xf6\xbf\xe1\xa5\x2a\xeb\x5f\xb0\x41\x47\xc9\x0b\xb4\x5d\x3d\x60\x5e\xc9\x40\x31\x3c\x2e\xc7\x23\x64\xce\xd6\x94\x09\x20\x40\x28\x95\x41\xac\x48\x8e\xa9\xf7\xbc\x6a\x3a\x1d\x0f\x61\xf5\x14\xc1\x01\x45\x79\x21\xda\x22\x53\x39\x3f\xd5\x7c\x65\xff\x1e\x12\x4f\xc5\xfb\x64\xd0\xad\x96\x96\x48\xdc\x43\x34\xb0\x61\x4c\xf6\x62\x11\x21\x73\xbc\xc8\xdc\x44\xdb\x5c\xb9\xdc\xab\x34\xee\xf3\x63\x22\x23\x53\xe3\x26\x4e\x27\x03\x93\xc0\x9d\x11\x21\x72\x7c\x9b\x32\x87\xbb\xdf\x81\x85\xd9\xf0\xf5\xdf\x6a\x4d\xae\x4d\x10\xcd\xe6\x05\x82\x00\xdf\x65\xbe\x21\xcf\xaa\xb4\x68\x16\x72\x67\xcc\xdc\x6a\x84\xcb\x00\x8a\x44\x8e\x6b\x75\xbe\xf2\x6c\xc1\xe6\xa5\x00\x00\x91\xe3\x3c\x88\x58\x22\xf7\x12\x53\x31\xd5\xfa\x5d\x53\x14\x59\xbb\xca\xbc\xb5\x5e\x8c\x27\x78\x32\x22\x3a\xe0\xd3\x2c\x43\xf8\x27\xc4\x71\xbf\x60\xf2\xa5\x20\x6b\x3f\xc7\xe1\xea\xcc\x27\xf2\xe9\xce\xce\x36\x4d\xdb\x2d\xf4\x74\x4d\x79\xb9\xb8\xa2\xa3\xe1\xc7\x78\xae\x70\xa0\x59\xfa\xa0\x15\xf5\xf3\xed\xad\x30\xf3\xbd\x7d\x7d\xab\x2b\x42\x2b\x78\x27\x71\x5d\xde\xe4\x7e\xb8\x40\x9d\x48\x00\xf2\x80\xc0\x98\x40\xd1\x8c\xa7\x86\x81\x04\x34\x18\x9f\x69\x85\x2a\x55\x36\x28\x9f\x75\x0b\xd3\x97\xbc\x0e\x29\x15\xd7\x23\xeb\xae\x0f\x83\xa2\xe7\x3b\x81\xe7\xef\xfe\x53\xeb\xd4\x14\xd8\x01\x1c\xd2\xa6\x60\x24\xf0\x35\xf7\x40\x7c\xe9\x79\x08\x66\x0e\x7a\xbc\x49\x65\x9a\x10\x6c\x6f\x60\x0d\xca\x90\x82\xdb\xa1\x0e\x76\xf8\xc4\x73\x2d\x5f\xdf\x3e\xf3\x6b\xad\xa0\x49\x0f\xbb\x01\xc3\xb3\xbb\x15\xaa\x23\x33\x9f\x85\x5f\xc7\x23\xdf\x8e\xe6\x90\xc7\x45\x85\x09\xd4\x49\xcc\x84\xa0\xda\xb4\x9f\x25\xf8\x9e\x1c\x83\x61\x54\xaf\x69\x21\xc9\xb2\x0e\xa9\xf6\x7d\x1d\x3b\x48\x67\x24\x1e\xa3\x69\x27\x6d\x23\xfb\x36\xd2\xfe\x97\x55\xed\xfc\xee\x58\xd4\xb3\x6f\x0e\xa2\x83\x55\xbe\xe6\x2b\x4e\x8a\xb8\x0c\xa3\xc6\x88\x70\x61\xf4\x4e\xd5\x0d\x1b\xb6\xbb\xd6\x16\xf6\x13\xb9\x2e\x83\x35\xec\xdb\x04\x7d\x5e\x3f\xc8\x5b\xdd\xba\x36\x2a\x6a\x50\x33\x71\x92\x88\xa9\x93\x21\xbf\x88\x8a\x9c\x97\xe8\x9b\x97\xe3\xb4\xb3\xa7\xba\x00\x65\xf2\x74\x2f\xc2\x23\x49\x7d\x27\x5f\xb8\x9a\x88\x10\x44\x0b\xe8\xca\xcb\x3d\x02\xe8\xf1\x0f\x63\x9f\x96\x0d\x6f\x60\x61\xcb\x17\x0c\x03\x2e\x35\x2e\x9b\x61\xa2\xea\x81\x5b\xbe\x88\x20\x27\x40\x12\xea\xe7\xb3\x5e\xd2\xca\xd6\x1d\xd4\x95\xf0\x83\x37\x51\xd5\x80\xdb\xdb\x83\x86\xa6\x50\x29\xb5\x02\x81\xf4\xbd\x88\x74\x46\x6f\xbb\xfb\xd2\xf0\xb2\x31\x3d\xad\x12\xc6\x6e\x6d\xab\x26\x48\x75\xe9\xd8\x86\xdb\x5b\x54\x15\xd8\x70\xf1\x30\x02\xa9\x2b\xa4\x9c\xbf\x3e\x0c\x82\x7e\x1b\x57\x87\x34\x8c\xb2\x67\x9d\x04\x12\x4e\xb9\x7e\xa3\xb0\xb9\x21\xd2\xd7\xf6\x6d\xe3\x77\x0e\x04\x72\xd5\x6a\xf7\x61\x07\xdc\x01\xdd\x85\x2f\x2a\xcd\x4f\x1d\xf0\x90\x18\xd7\xfe\x55\x09\x7a\xf7\xe6\xf0\xe8\x6e\xb9\x99\x6a\xf8\x9d\x0d\x57\x28\x92\xb9\x74\xac\x6b\x38\xb4\x47\x04\x80\x88\x0e\xc5\x49\x40\x31\xd1\xbb\xb8\xb9\x45\x85\xa9\x7c\x12\x7f\x8a\x67\x83\xbe\x0a\x5a\x21\xdb\xd7\xdd\x13\x17\x4a\x1b\x61\xe3\x26\x82\x9b\x19\x5f\x73\x21\xed\xa5\x1f\x53\xb9\x07\xf3\xfc\xf0\x7e\x57\x87\x23\x73\x41\xd5\x75\xa3\x33\xb2\x89\x97\x8c\x8d\xf1\x5d\xd8\x4b\xc5\x76\x13\x61\x4c\x23\xa8\x25\xfe\x07\x48\x1f\xea\x0c\x01\xf1\x14\x1f\x19\xab\x66\x7d\xf9\xcb\x6e\x80\xd7\x36\x1a\x5f\xf8\x3d\xad\x24\xba\x5b\xd4\xaa\x62\xc8\xaf\xe2\xb4\xb4\x79\x6a\x92\x3d\x34\x84\x79\x22\x22\xda\x8a\xe3\x24\xb8\xf0\x0f\x04\xc5\x14\xf5\x34\xbc\x86\x0b\xae\x45\xa3\x2d\x83\x50\xfb\x78\x80\xeb\x94\x4f\x8f\x94\x9f\x46\x15\xc0\xdb\xdd\xc7\xdc\x9a\x42\x27\xf6\x1c\xc1\xed\xb6\xb5\xaa\xf5\x25\xcc\x01\x23\x16\x3d\x22\x18\xef\x99\x61\x28\x46\xed\x86\x33\xc0\xc9\x45\xf2\xf5\x23\x38\x37\xa1\xeb\x06\x57\xc1\x87\x2c\xa7\xf0\x60\x18\x64\x4b\xc0\x9b\x0a\xb7\x76\x93\xda\x36\xab\xdd\xb8\x5c\xcc\x72\xb1\xb1\x58\xd7\xe7\x23\x9a\xb5\x3f\x4f\x71\x8f\x1b\x67\xc4\x5f\xea\x50\x98\xbb\x0f\x65\x73\x1d\x79\x12\x39\x34\x5f\x85\x12\x93\x68\x8f\x4e\x51\x94\x98\xdb\xa5\xb8\x27\x72\x36\xc8\x89\x3f\x24\xf8\xc6\x87\xf4\x97\x6d\xd3\x8f\x4b\x93\x3c\x49\xd3\x28\xe0\x9e\x47\x0a\x22\x09\x16\x76\xff\x39\xb8\x26\x55\xec\x72\x17\x0c\xb0\xc1\x75\x31\x89\x98\xfe\xb9\x88\xc0\x11\xbd\xd7\x37\x68\x56\xfa\xae\x5b\x1f\x28\x94\xdc\x24\x44\xdd\x3d\xd8\x37\x2f\x0b\x36\x73\x50\xff\xc8\xad\x1b\x49\xd8\xb1\xea\x46\xc4\xf5\x55\x8b\x95\x9a\x25\xf7\xa2\xcf\x11\xb6\x24\xc9\xf2\x6c\x31\x19\x64\x79\xd6\x36\xf9\x82\xa3\xd7\x0e\x29\x6d\x44\xa9\xee\x90\x15\x95\x33\x95\x2a\x08\x54\x49\xe8\xda\xc8\x31\x4d\x72\x2f\xc6\xa9\x49\xdb\xb1\x49\xfe\xd1\x2e\x72\x5d\x2b\xa4\x68\xe7\xa6\x3f\x42\xe6\x8e\x3a\x92\xa2\x9a\x9f\x1e\xe3\x18\xf9\xe2\x2b\x4e\xd1\xc8\x53\x1b\x11\xff\xd1\xd6\xfc\x76\x7a\xba\xf9\x95\x81\x9b\xf1\x96\x89\x33\xa5\xc5\x0f\x55\xab\xcb\x9f\xa8\x48\xd6\xb5\xed\xc4\x4c\x10\x35\xe6\x71\xb7\x22\xf0\x7a\x2e\xb0\x44\xc5\xed\xb1\x6e\xbc\x03\x02\x95\x95\xcd\xd0\x82\x1a\xdc\xce\x35\x16\x86\xbf\x46\x93\x0a\x89\x59\x5d\xb3\xf9\x64\xe3\xb9\xe7\x58\xd0\x41\x09\xdf\x44\x66\x4b\xfe\x65\xa4\xbd\x4d\x79\x43\xcf\x0a\xa7\x0d\x2c\xcc\x5d\xee\x0e\xdc\xad\x45\x7a\x64\x69\x11\xdb\x41\xde\x18\x21\x15\xe7\x11\xbe\xad\x21\xed\xcc\x41\xaf\x59\x26\x93\x87\x11\x71\x8b\x5f\xa0\x31\xbf\x62\xb0\xe0\x68\x83\x3d\x38\x58\xd8\x11\xe5\xe4\x13\x61\x36\x4b\x55\x26\x62\x93\x86\xf3\x84\x30\x3b\x52\x07\x91\x13\x02\xf7\x65\xed\xf2\x85\x47\x42\xfc\x2e\x39\x98\x06\x24\xf0\x49\xd2\x29\xc1\xde\x40\xf1\x6e\x97\x73\x3d\x8a\x82\xa7\x72\xf6\x39\xd6\xa4\xfd\xe3\x61\x10\xb6\x47\x66\x80\x55\x76\x7d\x18\x10\x4f\xdb\x60\x43\xe5\xd3\x34\xa0\x92\x15\x66\xd9\xb8\x9b\x47\x0d\x0f\xbd\x36\x39\xae\xe3\xaf\x2e\x62\xdb\xb3\xa9\xee\x1e\x65\x9e\x72\x97\x23\x27\x75\xef\xa2\x9f\x83\x7c\xa2\x8e\x1d\x68\xbc\x5f\x79\xa0\x59\xd8\x15\x9b\x9b\xb4\x8d\x66\xb0\x24\xf2\x2d\xee\x5d\xf9\xd2\xda\x9f\x6c\x0e\x99\x39\xd7\xb8\xf6\xbb\x1b\x69\x47\x78\x01\xf3\xa8\xa5\xe8\xea\x81\x0a\x3b\xaa\xaf\x94\x77\x6c\x95\xc9\x02\x9e\xef\x2a\x20\x43\x69\x17\x20\x70\xd9\xbb\x5e\x3d\x5f\x55\xdc\x7d\xcc\x8f\x09\xaf\x9a\x1c\x1d\x4b\x24\x46\x13\xa3\x00\x55\xee\x54\x85\xa4\xf0\x06\xc9\x91\x94\xb1\x6d\xe0\xd5\x23\x69\x7a\x1f\x83\xdf\x72\x42\xc5\x75\xb3\x64\xd3\x92\x81\x7a\xef\xba\xe7\xe7\xcb\x09\x1e\x6b\x7f\x7e\xc8\xa3\x3b\x69\x19\xa7\x03\xe3\x91\x9b\x9e\x48\xdf\x0b\x96\xdf\x86\xc7\x55\x4e\x57\xc2\xf8\x65\xfd\xb5\x3c\x5e\xea\x96\x02\x78\x05\x34\xe9\x28\x4f\x74\x1c\xa5\x71\xe7\x2d\x83\xab\xa2\x3c\x46\x45\x68\xee\xe5\x49\xe1\xb9\x03\xd6\x36\xac\x81\x6b\x80\x18\xc9\x09\x11\x8b\xd8\x80\x93\xf7\x80\x80\xea\x82\xe4\xa4\x06\x9f\x7c\xc0\xcd\xdf\xb9\xb5\x86\x2c\x4a\x50\x03\x72\x52\x83\x46\x7a\xd5\x2f\x1a\xf8\x0f\x80\x2e\xfe\x96\x78\x56\xff\xb6\xc6\x6a\xee\x6f\x2e\xe6\xf6\x2b\x03\x57\x04\xf2\xc5\xc4\x8f\xa2\x60\xd4\x3e\xa2\x1c\xa6\x88\x3b\x56\x2a\x79\x58\x46\x47\x01\xdc\x41\x2f\xee\x04\x49\x02\xde\x89\x68\xca\xe3\x68\x44\x8f\xb3\xb6\x25\x98\x66\x2b\x16\x96\x14\xcf\xee\x94\xb3\xb8\x72\x5c\x5b\xbb\x5d\x34\x3d\xd1\x11\x52\xb8\x79\xc8\x3e\xcf\x87\x62\x61\x96\x24\x71\x3a\x8e\x47\xde\xef\xf1\xc8\xda\xc5\xea\xc6\x4b\xdd\x55\xb3\x56\x4c\x84\x16\x94\x94\x0b\xb4\x3f\xe0\xd6\x2d\x42\xa3\x2b\x84\xda\x2f\xb2\x9e\x5d\xad\x82\xda\x49\xaa\x1d\x6f\x73\x06\x0f\x7f\xfc\x21\xeb\xdc\x8f\x34\xda\x43\xb4\xbb\x12\x17\x8e\xe8\x76\x82\x3a\x6c\x17\x49\x45\xe4\xcf\x69\xa2\xf5\xb2\xaf\x4b\x27\x4e\x9d\x7d\x92\x75\x95\x49\x7d\x06\x4d\x48\x9f\xcd\x54\x5f\xac\xc2\xff\x5b\x31\x19\xcf\x37\x8b\x41\xdf\xe6\x55\xcc\x9d\x76\x14\x1f\x04\xc0\xd3\x0f\x49\x5c\x90\x31\x3b\x49\x62\x76\x55\x6f\x15\x91\xd0\x69\xc2\xec\x3c\xdb\xe2\xf1\x37\x77\xe1\xa2\x39\x34\x24\x06\x16\x99\x28\xc3\xde\x17\xb6\x65\xe4\x26\xd7\x47\x86\xe1\x07\x00\xa3\xc9\xbd\x1f\x8e\xc2\x73\x38\x4c\x9d\x81\x3c\x1b\x94\x71\x6a\x93\x35\x4c\xe5\x0a\x54\x92\xc8\x4c\x2e\xd7\x92\x72\xf4\xb3\x24\xf1\x18\x46\x2d\x34\x87\x49\x8d\x23\x2c\x0e\x6b\xdb\x49\x9c\x5a\x11\x86\xf1\x4a\x64\xd5\x65\xeb\xbc\x25\x36\x06\xb2\xb0\xf7\xdd\x03\x51\x1e\xfc\x2a\x6e\x47\x49\xf8\x48\x44\x75\xf6\xfb\x34\x31\xb0\x96\x0d\x3e\x5d\xfd\x19\xb6\xcf\xf1\x91\xa9\x5e\xc0\x68\x51\x8c\xf9\xf2\x90\xa6\x6d\x8e\xb9\xa7\x0b\x43\x8b\x41\x71\x04\xcc\xd7\x5c\xdf\x1e\xee\xfb\x89\x16\xe1\xb7\xef\x63\xbf\x7a\xa6\x9c\xf9\x29\x49\xaa\xcf\x30\x18\xed\xc2\x70\x94\xe6\xf8\x15\x0d\x22\x36\xdd\x46\x46\x8f\xf9\x06\x48\x40\x3c\xf7\xa5\x67\x14\xf8\x1b\x04\xd5\x32\x07\x1e\x51\x2c\x7b\x8c\xf9\xa4\x2f\x0f\x49\xcf\xfe\x18\xc9\x09\x09\x09\x1d\x3a\x46\xd7\xc7\x5c\xf7\xf3\xcd\x32\x1b\xe4\xb1\x83\x10\x04\xf5\xb4\xe3\x78\xae\xda\x0b\xdd\xea\xb9\x9f\x77\x8c\x06\x6e\xa7\x20\x8e\xff\xb1\xfb\x41\xaf\x0e\xe7\xa1\x40\xd7\x23\x02\x5a\x1c\xf7\x4e\x72\xd1\xa6\xa9\x4d\x78\xf8\x77\x83\x86\x7f\xc7\x39\x1e\xe7\xe6\x9a\x5d\x33\x48\x3d\x71\x57\x2d\xad\xcf\xaf\x7d\x42\x40\xd6\xb1\x2b\xa6\x28\x49\xb4\x0c\x2f\x02\x3d\x75\x39\x8e\xea\x82\x8d\xca\x7f\x99\x78\x4b\x00\x7c\x86\x03\xe0\x33\x23\xcd\x72\x5b\x80\xa2\x44\x06\x41\xdd\xde\xd2\xa1\xd0\xa7\x28\x13\x97\xae\x5b\x23\xa8\x84\x62\xe9\x68\xfc\x1a\x58\x09\x3a\xd9\x60\x29\x31\x05\xb3\x61\x81\xc8\x1d\x26\x0f\x55\x37\x89\xed\x29\x78\xfb\xca\x20\x6e\x2f\x4b\x39\x5a\x23\x00\x62\x6d\xf8\x67\x70\x26\xca\xaf\x50\x43\xf5\xd8\xce\xcd\xaa\xa7\x10\x01\xc0\xea\x0c\x16\x9b\x9c\x10\x05\x7c\x91\xac\xed\xad\xee\x44\xf4\x78\x87\xd4\xa8\x7e\x10\x24\x75\x8e\x3f\x82\x4a\x29\x2a\x2c\x0f\xb9\xc2\x72\x6b\x38\x2a\xeb\x36\x3f\x85\xb2\x96\xfd\xaf\x5b\xe4\xf4\x90\xe0\xbb\x05\xf9\xc2\x93\xae\x5c\xe2\xee\xec\xbf\xfb\xec\xfa\xd6\x4e\xd9\xec\x6c\x33\xb7\xf6\x75\xd3\x8b\x83\x96\x28\x2e\x0e\xad\x03\x39\xae\x63\x77\xb6\xaf\xc7\x05\x44\x27\x14\xbe\x57\x19\x01\xd5\xb8\xdf\x9a\x80\x1c\x9a\x6a\xae\x76\x4d\x59\x85\xa4\x2e\xde\x43\xbb\x16\xa1\xb6\x67\x02\xdc\x47\x15\xca\xca\x0a\x68\xf1\x48\x5d\xea\x6b\x76\xd5\x26\xf9\xda\xce\x80\x72\x16\xd6\x1c\xd5\x36\x21\xea\x12\x81\x4b\xe9\xb0\x4e\x43\x99\x82\xff\x40\xf8\x99\xf5\xaf\xc2\xcb\xe9\x65\x3d\x04\x88\x5e\xa6\x74\x6e\x4e\xe2\xd2\xab\x51\x20\x21\x79\x33\xf0\x63\x0f\xf2\xb4\xd8\x19\x70\x71\x50\x69\x13\x6b\x2b\xb5\x02\x04\x32\x47\x58\xc9\x69\x3b\x5e\x95\xaf\x08\x1e\x9a\xf2\x4a\x1a\x5b\x1f\xf3\x4b\x33\xc0\x2a\xb8\xc7\x8c\x48\xfa\x12\xb1\x43\x5d\x1a\x29\xa8\x98\xa4\xd8\xed\xcc\x9f\xee\xa3\x86\xa7\x65\xbe\x85\x55\xcc\x42\x4e\xd8\x21\xc7\xc4\xd8\xcb\xbf\xb8\xad\x85\x0b\xbb\x4b\x9c\x61\x6f\xc3\x2c\x62\x92\xe3\x01\x81\x5c\x17\x4c\x52\x25\x18\x45\xa3\x31\x3d\x2d\xdf\xf1\x5d\x92\x59\xfa\x6e\xdd\x24\xd4\x01\xc7\x9f\x3b\x51\x65\xf5\xa8\x54\xff\x11\x8f\x5e\x6f\x46\xa4\x17\xf3\x60\x18\xc6\x9b\x8a\xbe\x6d\xc7\x8b\x95\x35\x00\x63\x59\xb5\x3e\x14\xf8\x17\xa6\x8d\x3f\x8e\x42\x60\xb3\x64\x92\x24\x5b\x35\x6b\x0d\x9a\x16\x01\x2c\x41\xf1\x28\xcf\x50\xf1\x08\xaa\xd3\x25\x70\x97\x2f\x8a\x0b\xb9\x42\xf9\xf1\x1d\x62\x12\x39\x56\x87\x08\x19\xa4\xb6\x33\x68\x07\xc6\x44\x04\x3c\xa7\x49\x83\xee\x74\x14\x3a\xb6\xab\x26\x49\x6c\x39\x11\xe8\x9c\x24\x4e\xd2\x46\x10\x4d\xfc\xde\x8f\x46\x28\x7a\x12\xb1\x71\x3e\x1d\xf3\x89\xe7\x19\x22\xdc\xff\xbe\x77\x20\xc9\x5a\x15\x58\x35\x02\x1e\x43\x68\x9b\xe5\x64\xac\x56\x70\x68\x6a\xa6\xd9\x4e\xac\x49\x07\xfd\xc9\x00\xb5\xbc\x0b\xd7\xea\x31\x98\xb3\xb3\xe2\xbe\x4f\x0c\x89\xfe\xe4\xef\x46\x8d\x7c\x8e\xb4\x58\xd3\x31\xda\x91\xef\x8f\xe5\x03\xfb\xe6\x9a\xcb\x89\x8d\xd3\x55\x87\x8f\x23\x8e\x1a\x9a\x51\xbb\x4c\x2c\x34\x2b\x71\xbb\x8c\x7b\xc5\x04\x07\xe2\x44\x9f\xf9\x87\xee\x59\x48\xed\xb4\x8e\x4c\xb8\xcc\xe2\xc0\x0d\xae\xe4\x4d\xd5\x67\xe4\xb8\x8e\xd0\xb1\x67\xf2\x64\x21\x93\x3c\x5c\x43\x69\x77\x7d\x72\x12\x6d\x35\xb0\xd3\xd3\xcd\xbe\xcd\xab\xc5\x8b\xf6\x3f\x11\x46\x36\x88\x48\xf2\xd9\xad\x63\x28\xaf\x36\x67\x67\x0f\x34\x82\x4a\xb9\xe0\x14\xb5\xdc\x51\x53\xdf\x19\xbc\x50\xbc\x50\xbc\x90\xbf\x30\x41\x03\x98\x77\x23\xd2\x39\x3b\x45\x90\xbd\x71\xf8\xb8\x46\x00\x0b\x36\x4e\x97\x76\xb8\x8f\x21\x6b\x7a\x17\x95\x4d\x78\xce\x46\x2b\xe8\x11\x5e\x40\x03\x43\xc0\xe9\x6e\xac\x0a\x6f\xe9\xf8\x48\xd3\xad\x2c\x76\x04\x14\xe2\xc7\xc3\x40\x92\x76\x93\xc5\x59\xaa\x7f\x98\xda\x94\x6e\xae\x92\x7d\x3d\x43\x83\xee\xbd\x5e\xd6\x01\x01\x53\x98\x7c\x10\x1e\x6f\x6d\xfe\xfa\x88\xc9\x04\xbe\xd3\xba\x44\x3a\xfc\x5d\x15\x80\x3b\xf8\x3f\xc3\x1f\xb0\x96\x26\xd6\xc3\xd6\x7f\x0a\x4d\x2a\x54\xe4\xfe\x09\xfa\x93\xf0\x3f\x3b\x5d\x3d\x05\x25\xcf\x8d\x11\x0a\x3c\xd3\x31\x32\xbf\x80\x6a\xfc\x47\x1c\x80\x5d\x67\x92\x85\xf3\xee\x57\xb5\x0e\x4d\x2c\x70\xbf\x88\x08\x77\x7f\x8b\x59\xdc\x8e\x44\x23\x72\x15\xd6\x47\xa4\x70\x51\x17\xc8\x5d\x5d\x20\x78\x44\x3f\x2e\xdb\xdd\x2a\xe5\x98\x9f\x12\x07\xfc\x13\xf7\x97\x72\xec\x8b\x06\x5d\x93\xf7\x16\x07\x09\xcc\x18\x12\xa8\x33\x94\x4c\x31\xc9\x62\xd1\xcb\xca\xae\xa8\xb7\xc1\x9c\x7f\xe8\xa2\x12\x39\x26\xa8\x73\x37\xeb\xd9\xc4\xa4\x1d\xa9\xd7\xa8\x5c\xae\x4b\x0a\x14\xee\x30\x5e\x59\x68\xb6\xf3\x41\x6f\x21\x6c\x54\x41\x1c\x8d\xa0\x8f\xea\x38\x2a\x75\xf8\x3d\x6e\x4b\x95\xcd\x8b\x59\x86\x0a\xe6\x91\x1a\xf7\xd4\x5c\x30\xc5\xb2\x85\x01\x42\x7e\x20\x75\x42\x39\xa1\x35\x89\x89\xa4\x9e\x4d\xcb\x62\x8f\x5b\x12\x5a\xc0\xac\x96\x3b\x1c\xf4\xee\x16\x0b\x65\x9f\x74\xcd\x2e\xac\x22\x2c\x2f\xb4\x24\x8f\x31\x18\xfa\x67\xee\x41\x23\xf9\xba\x13\x51\xea\x8c\x86\x26\x42\xd4\xf7\x48\xd6\xa4\xec\x66\x85\x7d\x34\xd4\xca\x76\xae\x93\x3a\xfb\x19\x90\x4c\xab\x32\x45\xf5\x0d\x48\xd3\x6e\x39\x37\x8d\x5a\xe6\x9e\xf5\xea\x8a\x11\xdd\x3f\xea\x36\x38\x00\x1d\x6f\x21\x81\x62\xe5\x3c\x6c\xf0\x9d\x88\x4f\xfd\x34\x40\xb5\x09\xd1\x80\x7a\x04\x93\x9d\x40\x51\xdd\x1a\x8b\x67\x66\x67\x9b\x89\x19\x2c\x75\xdd\xe3\x15\xa1\x6a\x62\xf1\x18\xa7\x45\xaf\xec\xb4\x49\x97\x1b\xa4\x14\x76\x81\x02\x93\x0b\xa4\x39\x50\xf4\x4c\x92\xec\x22\x58\xfc\xbf\x73\x7f\xa8\xc4\x98\x34\x4d\x71\x89\x22\xa3\x75\x6c\x38\xe5\x52\xa3\xf6\xae\x60\xbd\x95\xc1\x9e\xc0\x18\x4b\x71\x83\x51\xf0\xee\xc1\x28\x22\xfe\x59\x5a\x1e\xa5\xcd\x7b\xb6\x13\x2b\xd0\x06\x7d\x9f\xef\xb9\x30\x42\x8e\xc7\xac\xb0\x23\xe8\x2f\xbb\x71\x1a\x2c\x98\x68\x99\x12\xaa\xf9\x1c\x4d\xb2\xbb\xba\x9b\xc9\x3b\xc5\x5e\xf7\xa2\x3d\x6b\x55\xa0\xed\x73\x2f\xda\xf7\x4f\x0e\x4d\x89\xe5\x3a\x39\x24\xf5\x32\xc9\x31\xd0\x74\x92\xc9\x39\x84\x70\xac\xd6\x0b\x09\x5d\xa4\x42\x37\x51\xf7\x44\xe8\xbe\x39\xa6\x9a\xac\xde\xc4\x03\x0e\x27\xc3\x58\x27\x48\x05\x59\xfd\xc2\xb3\xee\x84\xea\xd8\x24\x91\xaa\xb4\x4d\x69\x92\x4c\xc8\xb6\x3c\x7b\xe9\xfc\x54\x60\x2f\xfd\x24\x8d\xac\xa2\x6b\x3b\x9d\x2d\x14\xc9\x98\x86\x67\x52\x63\xb8\xb6\xeb\x2c\x25\x6c\x02\xe4\x03\x0f\x05\x24\x1b\xa8\x65\xca\xa4\x36\x16\xf9\x39\x4f\xb5\x9d\xdb\x76\x3e\x88\x3d\x40\x10\xcf\x69\xa7\xfb\x35\xb8\x91\xeb\x78\xe4\xb0\xf4\x77\x78\x45\x2d\x8a\xf9\xd6\x82\x48\x40\x1c\x9c\xa1\x4a\x9d\x63\xab\xac\x52\xec\x86\xa7\x0b\x91\xae\xa9\x32\xe7\x85\x80\xd6\x2e\x2e\xc6\xed\xd8\xa6\x65\xb2\xd6\x60\x9a\x23\x44\x71\xca\x79\x44\xe3\x6a\x26\x6f\x67\x85\x2d\x30\xae\xa6\x3a\x2d\x8d\xe7\x9e\xd3\xe3\xb1\xba\xc6\xbe\xb9\x66\xa2\xb3\xef\x78\xb1\x37\x81\xb7\xf5\xad\xa5\x2f\xbe\x22\x45\x91\x06\x11\xa0\x38\x76\xd2\x64\x0d\x98\x37\xac\xe7\xfb\x9c\x9d\x5c\x10\x78\x81\x9c\x31\x27\xec\x7d\xe6\x6e\x34\x7d\x91\xf7\xf3\xa2\x26\x77\x68\x5d\x4d\xb6\x42\x24\x77\x71\xc8\x9c\xc0\x6b\x0b\x59\x67\x6d\x92\x8a\x14\x17\x88\x6d\xe8\x03\xd2\x78\xf8\x20\x0a\x58\xcd\x0b\x54\x88\x5e\x30\x2a\x0a\xc6\x41\x37\x6e\xf4\x01\x79\xc9\x0b\x6e\xf6\x00\xa6\xe8\x1e\xe1\xd8\x40\xd5\xe5\x69\x31\x3d\x1f\xbf\x67\xe4\xbc\x46\x2b\x63\xdf\x6f\xff\xce\x44\x08\xdc\xbf\x1e\x85\x21\xb2\x9d\xeb\x44\xfb\xb3\xa3\xc5\xa1\x47\x62\xf3\x47\xe0\x77\x60\xd3\x6f\x62\x91\xc8\x90\x12\x7c\x0a\x1c\x0c\x98\x75\x15\x0f\xee\x2c\xa1\x54\x3a\x86\x54\xfd\x81\x70\x9e\xb6\xdd\x42\x03\xb9\xd1\x1a\x9d\xe3\xda\xa7\x50\x43\x99\x93\x56\xe2\x84\xd0\x66\x36\x65\x69\x7b\xfd\x52\x96\xb0\xe7\x57\xf6\x9a\x39\x97\x47\xa9\xb6\x6d\xba\xb7\xfa\x37\xc1\x0c\x47\xc4\xc9\x7d\x02\xeb\x18\xb0\x8b\x8f\x89\x2b\xf8\x3f\xb8\xcb\x50\xdb\xde\xf0\x0a\x5e\x17\x9c\xef\x55\x3a\x6a\xc2\x1c\x7d\xcc\xb4\x26\x7f\x1d\x51\x61\xf0\x12\x75\x82\x16\xe3\x74\xd9\x26\x45\x69\x63\x01\x2d\xe0\x25\x88\xde\x8c\x9c\x8c\x15\xc6\xf6\xcd\x11\xe4\x11\x9f\x53\x36\x3a\xf7\x80\x94\xa6\xae\xae\xa0\xd6\x4f\x06\xbd\x9e\xf5\xc9\xa4\xac\xa9\x21\xf9\xf6\x0b\x14\x04\xe6\x18\x67\xc0\xdf\x7a\x26\x0a\x0f\x1b\x66\x26\xf4\x8e\xcd\xe3\x15\x97\x45\xbb\x95\x05\xff\x28\x37\xa2\x88\x5a\xa2\x45\xbf\x5e\x4b\x60\x63\x73\x34\x0c\x66\x02\xf6\xbf\xba\x3b\xe5\x68\x0e\xb3\x21\x75\x73\x9c\xcd\x65\xbb\x96\xda\x22\x36\xbe\x05\x0a\xef\x79\x87\x0b\xa0\x77\x42\x0b\xcb\x9a\xa5\xca\x87\xba\x15\x29\xfd\x89\x28\x08\x2d\x5c\x1c\x59\x33\x65\x19\xbb\xb5\xe5\x51\x97\x41\xb8\x61\x9c\x68\x61\x7a\xa6\xd9\xee\x66\xed\x2c\x31\x02\x2e\x47\x5f\x0e\x9c\xc6\x72\x1c\x94\x10\x6d\x3c\x32\x01\xb3\x41\x06\x6e\xa3\x96\xf2\x65\xc9\x94\x99\xde\xa1\xa7\x9c\x0b\xa4\x3f\x17\x82\x76\x61\x67\x25\x2e\x14\xb6\xec\xb1\x99\xd5\x03\x55\x58\x0f\x6f\xef\x6c\x90\x3f\x4d\x58\x7a\x70\x45\xe3\x3d\x6f\x46\x84\x1c\x3b\x03\xb0\x97\x82\x81\xdc\x9a\xc7\x2f\x83\xbd\xc7\x13\xb5\x57\x3b\x09\x36\xe0\xdb\xae\x5d\x80\x64\xe8\x2a\xbc\x95\x72\xda\x8c\x6c\xb1\x99\x83\x92\x4c\x49\x9f\x1f\x86\x76\xc7\x7a\xf5\x44\x46\x86\x79\x89\x7c\x58\xb3\x1a\xa8\x78\xfa\xbe\xbd\x7b\x3a\x7a\x29\xc1\x2a\xec\x6e\x05\x92\x84\x73\xe4\xd7\x8a\xae\x59\xb6\x45\xdf\x9a\xdc\xba\x34\x06\xde\x09\x25\x20\x39\x8e\xbc\x96\x7e\x5c\x36\x88\x75\x04\x43\x46\x4a\x36\xe8\x47\x9f\x2b\x87\xbd\x46\x7d\x9e\xeb\xd4\xef\xba\x5e\xd7\xb5\x3c\xd0\x5c\x1c\x94\x83\xdc\x8f\x06\xa2\x2b\xfd\xb7\xdc\xa2\x1e\xef\x76\xbe\x32\x3f\xd5\xb4\xaf\xb7\xe3\x10\x57\xe0\xc1\xfe\xd2\xfd\x9a\xd2\x2d\x85\xba\xfe\x49\xf8\x5b\xe9\x5d\x2f\xe5\xb6\x28\x9c\x76\xc2\xce\xc0\xb7\x75\x14\xe1\xb9\x76\xe6\x1a\x81\x93\x1b\x9b\x59\x27\xa2\xc9\xde\x9f\x8d\x42\x9e\x70\x8c\x1a\xca\x71\xba\x18\xa7\x71\x19\xef\x18\xb1\x6d\xb8\xbd\x91\x19\x70\xc4\xc9\xf7\x48\x17\x62\x63\x18\xc4\x9a\x37\x7c\x0a\x5e\x58\x93\xe8\x08\xb3\x24\x39\x51\x80\x03\xfe\x8c\xe9\x85\x7e\x3e\x86\xbc\x9d\x9d\x1d\x19\x14\x82\x51\x53\x6e\x5a\x26\xaa\xf5\x3f\x97\xba\x46\xfb\x0e\xe6\x5a\xbc\xc3\x58\xb6\x5b\x51\xe3\x77\xbf\xe4\x5b\xab\xd5\x32\x50\xe1\x1c\xf7\x75\x8a\xc1\x24\xb0\xb9\x9f\xa4\x87\xd9\x41\x7b\xe9\x03\xe9\xb3\xc9\x19\x35\x1f\x4c\xbb\x6d\xfb\x65\x31\x11\x82\xe5\x8f\x9c\x89\x52\x69\xdd\xd0\x5e\xfe\x90\x52\xb7\x05\x93\xa7\xa8\x67\xf8\x68\x78\x76\x56\x8f\x6b\xd5\x02\x4a\xb3\xb6\x45\xcf\xee\x36\xe9\xd9\xdd\xa6\xb6\x64\xd1\xee\xda\xce\x20\xb1\x9d\xdd\xee\xf1\x69\x31\x2d\x28\x73\xcb\x03\x42\x41\x4f\xf8\x11\x80\x3e\xd9\xde\x62\x60\xca\xf6\x75\x12\xa8\x41\x85\x04\xe1\x23\x06\xf9\xb1\x16\x37\xc6\xc2\xc3\xd9\xd9\xe6\x52\x0a\xa6\x78\x95\x06\x24\x9a\x8a\x33\x43\xa5\xd6\xae\xb2\xe8\xb4\xcc\xf2\xd8\x0a\x59\x31\xde\xd8\xb6\x75\xd2\x47\xdc\xed\xa2\x39\x2f\x07\x55\x7d\x0d\xfa\xdb\x7f\x31\x96\x61\x4e\x4f\x57\xef\x4e\x1a\x13\x0a\x26\xa4\xf6\xf9\x38\x0f\x2c\x74\xf7\xe3\x32\x36\xbe\x42\x87\xa7\x79\x8a\x66\x8c\x4e\x51\x49\xab\xf3\x5a\x6c\x1a\x61\x14\xe0\xdf\x46\xc4\xb1\xf3\x6f\x47\x9c\x51\xbb\x03\x3a\x5a\xed\x09\x8f\x70\xe9\x6c\xb5\x10\x3e\x67\xc9\x56\xc5\x13\x20\x98\x12\x50\xa9\x9c\xd4\x0d\xcb\xa6\xd6\x76\x26\x1b\x2f\xa9\x60\xce\xdd\x28\x08\x4e\xdf\x44\x72\xae\x94\xdb\x0d\xe2\x41\x7f\x9a\xf2\x8a\xc1\x72\xcf\xbe\x16\x9b\x14\xe6\xd2\x2b\x9b\x84\xc6\xf8\xe5\x1a\x2a\x9e\x03\xc0\xc7\x2f\xda\x3c\xd7\x61\x5d\x44\x7c\xdf\x86\xc9\x91\x93\xc0\x49\x9d\xf5\x4c\x99\xa9\x9b\x53\xa8\x56\xc0\x26\x39\x35\x61\xaf\x32\xd0\xef\xc6\x45\xe9\x9a\x7f\x1d\x27\xcd\x0c\xa7\x04\x20\xb1\x36\x99\xdc\x05\x8a\xed\x84\xb7\x42\xc0\xfa\x01\x51\xb6\x02\x33\x88\x72\xd4\x1f\x44\x23\xf0\x80\xad\x6f\x60\x7e\xaa\x4a\x83\x96\x6d\xb0\xd1\x88\x30\xfe\xaf\x28\x94\x02\x51\xae\xd0\x7a\x55\x98\xf0\x2c\x92\x6c\x55\x58\x06\x55\x0d\x25\xd4\x38\x2e\x8f\x54\x06\xdb\x71\xb2\x07\x1b\x0c\xa5\x20\xa0\x45\xb1\xeb\xef\x0f\x49\x8c\x50\x30\x7d\x88\xc8\xaf\x46\xc4\xd0\x75\x11\x65\x1d\xcf\xe5\x5c\xe5\x6c\xfe\x5f\x02\xeb\xb5\x30\x9f\xa9\x4a\xf6\xe3\x64\xae\x72\x4d\xdd\x94\x2c\x36\x80\x6a\xbf\x1d\x11\x78\x92\x96\x49\x6e\x17\x6d\x6e\xd3\x36\x36\xaa\x0e\x02\x9e\x24\xb5\xa4\xcb\xb8\x46\xf9\x07\xae\x0b\x8d\x2f\xf7\xd9\xd9\x66\x9e\x65\xbd\x1e\x4d\x03\x01\x57\x2b\x14\xfc\xb0\xc9\xb2\xf8\xd1\x85\xfb\xe3\x9a\x32\xfe\x81\xa6\x35\x45\x6c\xf3\x49\x1a\x7d\xbc\x84\x90\x46\x45\x06\x42\x7a\xb1\x81\x20\x08\xfd\xb1\x7b\x14\x7e\xf5\xe2\xea\x79\x84\x65\x26\xd3\x5e\x78\x8a\xa2\x73\xa2\x19\x62\x1d\x17\x93\x69\x7f\x65\x10\x7b\x98\x15\xb6\x1e\x9c\xa4\x1c\xd3\xa8\x5e\x91\xad\xda\x32\x6b\x30\x69\xaf\x7b\x6a\x4a\x98\xbf\xb5\x96\x71\x68\x6a\x54\xf3\x6b\x82\xea\x36\x1b\xc4\xfc\xb0\x9d\x58\xfe\x4e\x11\x71\x52\x61\x53\xe1\x16\x8e\x47\xe4\x8f\x2f\xb9\x58\x4f\xad\x62\x4d\x83\x64\x81\x1b\x24\x75\x5a\x33\x21\xaf\x2b\x06\xed\xb6\xb5\x8e\x7d\xc4\x0b\x9c\x8b\x76\x33\x3d\x50\x3f\x65\xe8\x10\x1b\xf2\x57\x23\x06\xb3\xb0\x66\xa7\xfb\x43\xe5\x22\x6e\xb0\x1a\x61\xf5\x94\xe0\x5c\xdf\x46\x74\x29\x27\x34\x68\xf0\x01\xb6\x8c\x9c\x50\xa7\x32\x37\xed\x18\xf3\x5c\x87\xa6\x3c\x5d\x47\xc3\x73\xbb\x9f\x1c\x6b\xdc\x84\x7e\x48\x3b\xeb\xd9\x89\xd0\x80\x3d\x16\x91\xe2\x13\x88\x90\xa5\xa1\xf8\x2d\x9f\xb2\x2c\x24\x26\x5d\xb6\x25\x7a\x53\xf8\x58\xa3\x15\x26\xc9\xc0\xcb\xa0\x20\x40\xb6\x0d\x2b\x36\x77\xcc\xd9\x1e\x3b\xfe\x85\xdf\xf3\x1e\xa8\x11\x64\x49\x38\xed\xfc\x1e\xf6\x0b\x96\xcf\x55\xac\x70\xa1\x2b\xc3\x0e\xc4\xe7\x37\x59\xd0\xe5\x03\xc7\xc6\x82\x2a\xf8\x47\x84\x0b\x03\xc8\x46\x61\x2a\xce\xc6\x48\xa3\x3e\x62\x84\xc4\x65\x6c\x30\xbc\xcd\xdd\x98\x7f\xc4\x70\xc6\x9b\xb0\x38\xf0\x31\xc7\x22\xa2\xd6\x3a\xeb\x12\x70\x71\xdb\x14\xe8\x5e\x74\xcf\x42\xab\xac\x24\x3e\xb6\xc7\x65\x13\x28\x56\xbe\xe3\xb0\x05\xb8\xdf\x1d\x2d\x4f\xef\x6c\x93\xc4\x01\xc1\xd0\x82\x7a\x02\x64\x23\x7e\x8c\x30\x88\xb5\xec\x6e\x85\xc8\x5f\x54\x35\x74\x5c\x33\x48\x14\x5f\x1c\x01\x79\x07\x8a\x09\xbb\x64\x16\xd6\x4a\x51\x8b\x53\x34\x19\xbd\xcb\x28\x14\xb2\x4e\xf9\xac\x22\x4e\x3b\x83\x36\x56\x0d\x8a\x3a\x3b\x51\x2b\xe1\x3e\x93\x92\x4d\x68\xba\xf2\xda\x0b\x2b\x08\x36\x15\xbe\x14\x86\x08\x2e\x91\xfd\xe8\x9b\xdc\xa6\xe5\x8e\x11\x2a\xf9\x50\x5e\x16\x18\x1e\x12\xa7\xb7\x86\xac\xb4\x18\x8d\x30\x55\x79\x98\xa2\xed\x99\x38\x75\x84\xff\xaf\xe2\x95\xfc\xf4\xd3\x2d\x0a\x9d\xaf\xb9\x7b\xc5\xc4\xd0\x1d\x7c\x39\x01\xfe\xf6\x87\x21\x72\x1f\x2b\x5d\xf2\xdb\xa0\x6f\x72\xd3\xc9\x5e\x9f\x20\x24\x04\x34\x86\x90\x93\xde\x22\x51\x7a\xf6\xa5\xfd\x3c\x6e\xdb\xe2\xb1\x6a\xbd\xa0\xe0\xfa\x78\x8b\x88\xec\xff\x4f\x94\x7e\x94\x57\xc7\xad\x77\x81\xa1\xc1\xf7\x61\x59\x0b\xdc\x4c\x83\xc6\x50\x97\x7b\x9b\x54\x01\x3e\x74\xb9\x28\x3e\xdd\x68\x85\x6e\x2b\x26\x7f\x3d\x77\x5f\xf5\xa8\xe1\xc7\xee\x60\x85\xe2\x9d\x6e\x1f\x23\x46\x9d\x9d\x6d\x2e\x26\x59\x16\x80\xb0\x08\xbb\x0f\x0f\x43\xef\xe4\x70\x0d\x1f\xfa\x8b\x4e\xc6\x1e\xd6\x42\x3b\xd6\x61\xd4\x7e\xc3\x79\x30\x9d\x84\x0a\x35\x9f\xd4\xc6\x65\xd7\xc1\x69\xa6\x7c\x29\x80\x64\x65\x20\x63\x20\xc7\xa4\x38\x3c\xae\x50\xf4\xe5\x2f\x37\x4d\xbe\x80\x1c\x58\x4b\xf4\x44\xc9\x38\x8e\x10\x78\x69\xa6\x69\xd2\x34\x1b\x38\x6a\x94\xf9\x29\x19\x2b\x3a\xeb\x1e\xa6\x1c\x7b\xe9\x1c\x65\xb0\x8d\x85\x02\xcb\x93\x07\x86\x0e\x4a\x6d\xdb\xa7\x9d\x15\x2f\x8c\x08\x96\x09\xe2\x51\x4e\x08\x54\xf5\xc2\x4b\x2f\x34\x02\x54\x47\xc2\x56\x39\xa1\x3f\x7b\xf1\x4b\x07\x27\xc2\xb6\xbd\x89\x0b\x40\x1a\x78\x78\x84\xcb\xf7\x02\xcd\x56\x2f\xc4\x2a\x36\x07\x23\xf1\x33\x26\x53\xfb\x19\x4d\x27\xac\x64\xa5\xdd\xe5\x56\x1c\x23\x24\x34\x12\x70\x1b\x00\x7b\xff\x9e\x9b\xa4\xf2\x74\xd7\xbe\xec\xf0\x0d\x4c\x7d\xc0\x1d\xed\x80\x4d\x55\x1e\x06\x76\x91\x79\x8c\x31\x7f\x3c\xba\xef\x8d\x34\x9f\xdc\x92\x53\xc9\xd2\xa7\x89\x4c\x77\x10\x27\x89\x89\x73\x3b\x49\xcd\x2e\x29\xf9\x8d\x18\x3f\x94\x72\x31\x5e\xa6\xf5\x89\x50\x25\x28\x92\xc1\xd2\x52\x5c\x74\x1d\x2a\x44\x5a\x9a\xf8\x9c\x8c\xc9\x44\xd4\x72\x47\xf6\xa4\x0f\xa3\x66\x1a\x8f\xb8\xa5\xf0\x5d\x3f\x70\x9f\x90\xe3\x1a\xd2\xf7\x66\x51\x5a\xd3\x71\x75\x73\xdf\xdd\xba\x4c\x88\x8f\xf1\xe1\x9e\xcf\x37\x5f\xcb\x06\x79\xb5\xf8\x7c\x83\xdc\x2b\x0c\x84\xa0\x95\xb8\x99\x96\xed\x88\x50\xcd\x19\xae\xe9\x8c\x74\xbd\x93\xb8\xdf\xb7\x9d\x49\x72\x38\x23\x05\x12\x7c\xbf\xea\x97\x06\xa0\xc7\xa5\x21\xf5\x2b\xfb\x49\x5c\xee\x0c\x3c\x06\x08\x10\x80\xce\xdd\xb6\x4e\x33\xcc\x0f\x91\x4e\xc9\x09\x51\x7c\x62\x1a\x5b\x81\xa4\xa1\x7b\x65\x1c\x4d\xc5\x64\xb5\x1b\x89\x5b\xc4\x13\x8d\x38\x73\xe2\xf5\x88\xf7\xcd\xe9\x31\x49\xbd\x17\x71\xb2\x62\xf3\x35\x4a\x67\x8e\x13\x95\xd4\xf1\xe8\x09\x2e\x33\x64\x59\xb2\x33\x60\x05\x77\xac\x07\xbc\x13\x66\x6f\x14\xba\x43\x00\x16\x51\x3d\x57\x96\x4a\xec\x30\x65\x4a\x1a\x07\xd0\x16\xdd\x6c\x75\x82\x52\xd3\x3b\x23\x0a\x89\xee\x51\xe9\xa0\x56\x0d\x30\x06\x4c\x5e\x06\xc5\x19\x3c\xad\xab\x6e\xe3\x01\xa8\xf7\x26\xcf\x01\xdd\x1c\x2b\xe4\x4e\x4f\x37\x4d\x6e\x7a\x71\x87\xa8\x9a\xdf\x72\x2f\x41\x8e\x89\x28\x1c\xbc\xce\xb1\xaa\xb0\xc0\x69\x7e\xcb\xc5\x57\x72\x3c\xf6\xf5\xcf\x3d\xd7\x6c\x9b\xc4\xe3\x47\x95\xbe\x99\x80\x84\xb7\x3d\x6f\x43\x36\x28\x97\x08\x63\xeb\x67\xd3\xe8\xfe\xa9\xcf\xd4\xce\xd2\x15\xeb\x46\xd7\x77\xfa\xa1\x9c\xe8\x1d\x77\x31\x78\x8a\xe7\x87\xa4\x01\xb2\x45\xf8\xcc\x3d\x12\xf9\x08\x89\x2f\x9d\x8f\x1e\x25\x24\x1a\x7b\x8c\x9b\xa4\x4e\x72\xb3\x5e\x35\xd4\xcd\x43\x84\x82\x5e\x1d\x01\x5f\x40\xfe\x26\x36\x2e\x06\xb9\xc5\xe0\xcd\x7e\xd9\xe1\x77\x48\x62\x09\x1c\x08\xb0\xa9\xc7\xeb\xc8\x30\x21\x68\x06\x0e\xe5\xc0\x0f\x49\x25\x90\x71\x54\xd8\xa1\xa9\xe6\xa2\xb5\x89\x76\x70\xf1\xfc\x6f\xb8\x98\x58\xf0\xe5\x5c\x65\xb8\x3e\x36\x4e\x72\x68\xaa\xd9\xb1\x8b\xd6\xa0\xfa\x84\x92\x3c\x3c\xb9\x1c\xf3\xc6\x29\x4d\xda\x29\x76\x54\x96\x56\xf2\x5e\xb7\x2f\x51\x1e\xbb\xe0\x2e\x13\x9d\xab\x13\xc4\x08\x75\x0d\xe1\x8e\xfc\xd1\xd8\xef\xcf\x1c\x6c\x26\x71\xba\xac\x4f\x18\xbb\xf5\x0e\x01\x2c\xee\x78\xd7\xd6\xee\xc6\x42\x2e\x8d\x30\xfc\x28\x76\x81\x9c\xd4\xf1\x18\x74\x07\xc5\xb2\xcd\x11\xa1\xa2\x17\x08\xe4\xbc\x1c\x8f\x6d\x5b\xa7\x7b\xd8\x03\x1a\x0d\x69\xc3\xf1\xe1\xd8\x74\x06\xd2\xd8\x3b\xc4\x09\x63\x06\x65\xf6\xa8\xfb\x90\x8c\x92\x0c\x89\xf8\xe2\xb4\xcb\x59\x11\xa2\x63\x00\x01\xb9\xe8\xcf\x49\xc0\x60\x03\xde\x16\xb3\xca\x17\x86\x41\xb0\xe7\x8d\x88\xab\x2e\x17\x09\xda\xf9\x00\xbe\x57\x3e\x82\x41\x2a\x84\xd6\x7f\x03\x20\x32\x90\xdc\x27\x68\x9e\xcc\x16\x7d\x11\x8d\x42\x56\x22\x34\x98\x72\x42\x5a\x4b\x7d\xe3\x60\xab\x12\x45\xe0\x8b\xbe\x8b\x87\x2d\x27\x14\xa3\xa4\x46\x28\x54\x95\x1a\x9c\x50\x13\xb0\x9f\xc2\x08\x3d\x0c\x40\x8e\x8b\xd1\x48\xdc\x16\x6a\x91\x27\xd9\xd9\x24\xa6\xe8\x4e\x90\x02\xf8\x09\xc2\xc0\xfc\xab\x28\xcc\x2f\x1d\x8f\x9e\xa2\xba\xe0\x8a\x4d\xb2\xbe\xcd\x1d\xbc\x97\x26\xf1\x0e\x78\xce\x48\x1a\x48\x4d\xe2\x1e\x70\xca\x48\x59\xd0\xd8\x90\xe3\x7a\x2c\x65\x6a\x07\x2b\x36\x9f\x20\xf0\x13\x00\x98\x3a\xc6\x55\xed\x07\x4d\x12\x89\x8e\xce\x26\xf1\x0a\xb4\x07\x02\xa5\xc4\x69\x12\xe9\x3d\x4d\xa9\x04\xfa\xa2\xd8\x0e\x4a\x74\xe3\x1e\x91\x32\xdd\x50\x85\x20\xeb\xd8\x3c\x6e\x2f\x3b\xa7\x07\x6c\xc7\x87\x0c\xf4\xf8\xd0\xa7\x35\xb6\xd7\xcf\x56\xab\xad\x50\xbd\x71\x2f\xa0\x57\xbd\x36\x39\xa9\xa3\xd2\x5c\x89\x4b\x91\x71\xc0\x92\x3d\x4c\xa5\x94\xc3\x04\x2f\xc8\xd2\xb6\x7d\xdc\x2d\x3a\xbc\x9c\x13\x2e\x6f\x16\xa2\x45\x42\x09\xbc\xc9\x48\x36\x59\xb3\x4a\x16\xeb\xae\xc5\xe3\x86\x5e\x51\x91\xa5\xb7\x89\xe5\xed\x0f\xf0\x1e\x25\x4f\x94\x9d\x81\x33\x74\x6a\x80\x24\xfa\x9e\x0b\x31\x50\x81\x39\x85\xac\x5f\x7e\xc4\x39\x12\x8c\xe6\xdc\xa6\x46\x48\x9c\x24\xd9\x52\xdc\x46\xb0\xe5\x1d\xa0\xcf\x20\xbf\x15\x29\x5a\xc6\xa9\xbb\xc6\x59\xaa\xc2\x36\x1a\x52\xbb\x57\xc5\x02\xa8\xc8\xda\xee\xd3\xb4\xf1\x62\x6e\xd3\x76\x77\x22\xa0\x27\x6e\x51\x48\x73\x8a\xec\xed\xa9\xb1\xd6\xd2\xa1\xa9\x99\x66\x69\xd3\x52\x94\xc8\x1d\xa5\x94\x4e\x45\x56\xdf\xa1\x43\x91\x21\x3b\x2e\xe3\xdc\x76\x76\x06\x0c\x86\xc0\xc2\xd4\xa0\x87\x49\xdf\x0b\x4c\x60\xf0\x17\x88\xd9\x44\xa6\xd8\x85\xfc\xca\x87\x5f\x47\x2d\x5c\xc4\xb6\x17\xdb\xd4\x68\x4b\x51\x69\xbb\xa8\x98\x75\x32\x0a\x01\x9e\x9b\xef\x01\xac\xd6\x93\x27\x54\xcf\x5b\x6a\xc8\xee\xb1\x61\xd1\xa2\x3b\x24\xc7\x9c\x40\x9d\x1d\x7b\x34\xaf\xcc\x4f\x31\x6b\x1a\xf6\x0c\xec\xe3\x61\xaa\xa7\x1f\xae\x93\xa2\xef\xd8\xbe\xc9\xcb\xd1\xfa\xe7\x06\x9e\x87\x9c\x44\xcc\x3a\x96\xd8\xd7\x77\x93\xd8\x05\xb2\x70\x44\x1b\xc8\x9b\xdc\x13\xfd\xf3\x7f\xd2\x0a\xf3\xa3\x52\xf2\x52\x38\x43\xa0\x1b\x12\x96\x61\x2d\x98\x11\x62\xf6\xfe\x96\xca\x5a\xf2\x58\xb5\xfc\x61\xfd\xa5\x23\xed\x9d\x84\x7f\x92\x5a\xe8\xf2\x93\xbe\x5e\x4f\x6d\xe7\x7a\x68\x7d\xbd\xe5\x16\x19\x76\xd5\x47\xf0\xc9\x78\x3a\x0f\x41\xd8\x80\x22\x0b\x86\xad\x71\xc9\x32\x8c\xe6\x47\x57\xab\xcb\x54\x19\x26\xae\xcb\x90\x10\xf7\x82\x4d\x77\x91\x80\xc8\x6d\x38\x00\xad\x0f\xb8\x0f\xa1\xb4\xf6\x03\x49\x5f\xe5\xcc\x6d\x06\xf8\x06\x10\xee\xcb\xe7\x69\xf4\xe1\x64\x1d\x39\xe0\xa2\x05\x9d\xaa\x64\x4a\x08\x92\xbe\x46\x01\xd3\xd7\x08\x48\xd5\x8b\x93\x24\xce\xd2\x5d\xc4\xfc\x87\xb1\x68\x05\xfd\x34\xe6\xa8\x46\x5a\xd9\x0d\xcf\x1b\x3b\x2d\xc3\xd0\xbf\xf5\xe9\x56\x80\x29\x3f\xe2\x30\xa8\x8a\xe4\x56\x23\x01\xee\xae\x24\x2e\xba\x34\x15\x7d\x97\x58\xed\xef\x8e\x05\xfc\x0e\x41\x99\xc7\x2b\x46\xb9\x91\xb4\xe0\xd5\x20\x5d\x96\xfa\x0f\x0d\x42\xb9\x1b\xee\xf4\x3b\xc3\xe0\x5a\xbf\x33\x42\x49\x92\x1b\xb9\x75\xc5\x7f\xe0\x0d\x28\xfd\x23\x67\x7c\x0d\xcf\xfc\xb2\xbd\x45\x7b\xea\xbc\x7b\x10\x3a\x8f\x57\xbd\x32\x58\xdc\xd3\x75\x84\xe0\x0b\xa6\x23\x69\x2f\x16\xfd\x37\x49\xc3\xe2\x9b\xde\x2f\xb9\x51\x21\xaf\xc5\x81\x02\x99\x30\x32\x29\x5f\x1b\xcd\x52\x1c\xaf\x13\xb4\x59\xc8\xad\x59\x96\xce\x90\x62\x4f\xaa\x1b\x20\xf8\xd1\xab\xfe\x06\x82\x02\x65\xcf\x96\x79\xd6\xcf\x92\xb8\x44\x0f\x51\x8b\x1a\xc7\x91\xc8\xe8\x74\x7c\x4d\xef\x72\xc1\x1a\x0c\xc1\xf8\x82\xdc\xdc\xdc\x28\xb5\x10\x3c\xf5\xcd\x71\xf0\xce\x74\x33\xb7\x6d\x87\xa6\x03\xaf\x9b\xd2\xd6\x54\x8f\x46\x8e\xc7\x22\x7c\x37\xef\x56\x0e\xf2\x54\x98\x5f\x45\xf6\x61\x44\x0b\xdf\xdd\x30\x8c\xee\x03\x9a\x92\x4d\xbf\x1a\xe3\xd6\x90\x0a\x9c\x85\x97\x95\x93\xb1\x1f\x9a\x39\xd8\xec\x0f\xf2\x7e\x56\xc8\xa4\x38\xca\x62\x77\xdc\xed\xc9\x71\x5d\x50\x64\xe2\x3c\x89\x53\xed\x91\x7a\x18\xe6\xdc\x9c\x87\x61\x2a\x95\x6a\xd1\x8d\xfb\x0b\x83\x38\xa9\x6e\x3f\xc8\x61\xcc\x7f\xa6\x15\xaa\x7e\x10\x2e\xd4\x9e\x68\x44\xf8\xf9\xc7\xd6\xbd\x1b\xb6\x79\x31\x30\x9d\x2d\x1a\x29\x50\x31\x52\x03\x5b\x33\xf4\x58\x76\xf3\x6c\xb0\xd4\x9d\x08\x93\xc6\xa7\x08\x7d\xf9\x96\x33\xa8\x1a\x0c\x85\x8a\xe5\x42\x3e\x28\xba\xea\x25\xb0\x0a\x31\x59\x27\xc7\xf5\xfb\xb2\x6d\x73\xe5\x3a\x51\xdc\x7e\xf5\x19\x05\xf4\x7b\xc6\x6c\x87\x01\x99\xc4\xe2\x17\xdd\x3e\x14\xb2\x61\xf2\xa1\x4a\xa3\xd3\x2a\xc4\x4d\xb1\x67\xfd\x49\x5f\xb5\x6f\xdb\xb4\x8a\x0c\x26\x82\xf5\xfa\x15\xf7\x40\x9d\xa9\xbe\xfb\xcc\x3a\xb5\xb4\xce\x73\x4d\x7e\xb0\x90\xc4\xed\x47\x1b\x7e\x94\xbb\xc4\xc2\x17\xae\x1e\x04\x03\x8a\x4b\x09\xcf\x09\xc2\x19\xca\xf2\xe9\xae\x55\xb4\x3e\x87\xfe\x47\xbf\xfa\x6f\x22\xd2\xe2\xbd\x8c\x7c\x04\x15\xf8\xe3\xc3\x20\x0e\xf1\x0f\xb8\x23\x7c\xfc\xc7\x78\xd7\xc8\x2f\xfe\xb2\x6e\x13\x14\x83\x7e\x3f\xcb\x4b\x77\x9f\x98\xf7\xfb\x3e\xa9\x28\x80\xf8\x47\x61\x1b\x4f\x10\x43\x75\x69\xca\x6c\x47\xb8\xb6\x7f\x11\x11\xcd\xcb\x25\x42\xa7\x22\x9a\x82\x53\xfe\x7b\xb7\x1a\xe4\x98\xe6\xf3\x7a\xd9\x8a\x28\x82\x04\xbf\x4a\x6d\xe8\xb7\xc6\xae\x7b\x7a\xba\xb9\x38\xc8\xcb\xae\xcd\x77\x3a\x8f\xe2\xe7\x33\x2a\xff\x0b\xd3\x0e\x70\x37\x96\xc6\x0d\x16\x73\x71\x5f\x8c\x6d\xf1\x4b\xd7\xfc\x82\x83\x3c\xfb\x89\x93\xd0\x84\x4b\x99\x20\x01\x5a\xe9\xa2\x50\x94\xf7\xaa\x47\x3a\x06\x88\x48\x32\xc8\x2d\x7c\x37\xde\xd4\x8f\x58\x12\xf0\x47\x2e\xa2\x17\xde\x8a\x88\x7a\x90\xce\x38\xa0\xba\x81\x9a\xbf\xe7\xb6\xd8\x37\xe7\x07\x66\x3f\xc3\x94\x21\x8b\x79\x96\x96\x3a\x11\x59\xbd\x72\xe1\xf1\xa2\xce\xe6\x46\x8d\x9c\x4f\x33\x4e\x0b\x9b\x8f\x55\x62\xdc\x92\xfd\x24\x71\x92\x2a\x4c\x2d\x6d\x1b\xa3\x1b\x23\xe8\x29\x39\xa1\x34\xf6\xc0\x4b\xbf\x8b\x3a\x01\x1a\xe8\x7f\x24\xde\x51\xce\x28\x3d\xeb\x64\xa9\x49\x44\x56\x0f\x0d\x4c\xf5\xa4\xa8\xdf\x33\x03\xeb\x79\x42\xc4\x25\x66\x21\xcb\x0d\xde\x4e\x83\xa4\x40\x90\x54\x69\xd8\x11\xea\xba\x8b\xf1\x8a\x7d\xc2\xa1\x21\xb1\xa8\xff\xcc\x65\x42\x40\x2d\xde\xc4\xc6\x83\x09\xda\xbe\x4e\x00\xcd\x23\xc3\x20\x37\xcf\x85\xa3\x53\x11\xa9\x1a\xfc\x10\xa9\x97\x97\x1f\x99\xd6\xbe\xac\x68\x61\x60\x2d\x8a\x46\xa2\x97\xc7\x26\x31\x99\xea\x45\xe3\x4a\x8e\xba\x17\x8d\x78\xe8\x7d\x24\x94\x98\xf1\xbc\x16\x79\xb5\x2f\x93\xd8\x62\x07\x35\x67\xae\x72\x1e\x87\x61\x03\x3f\x55\xe6\x03\x9e\xe3\xee\xb2\x44\xc5\xde\x93\xb5\x77\x6d\x51\x34\x18\xa4\x42\xf4\x62\x97\x89\xee\xab\x6d\x06\x65\x9c\x0d\x8a\x64\xcd\x39\x6a\xe5\x85\x20\xb9\x5c\xd8\x7b\x04\xf0\xd7\xc9\xde\xaf\x5a\xd3\xcf\xd2\xc2\x45\x4a\xa0\x1e\x7d\x71\xf3\x0a\xb1\xd3\x23\x3c\x45\x99\x4d\x4a\x5b\xa8\x85\x7d\xcb\x5d\xb0\x54\x8d\xdc\x56\x50\x51\xa7\xc7\x39\xe6\x30\x09\xe6\x80\x11\xdd\xa0\x44\x2d\xc7\x34\x78\x06\xc1\x7d\x40\x44\xe6\x46\xa4\x4d\xd0\x81\x7d\x83\xa8\xff\xdf\x18\x52\x49\xff\x63\x06\xf8\xf5\xfb\xd6\x24\x4e\x24\x98\x78\xab\xab\x47\xaf\x31\x78\xc3\xb3\xee\x0a\xca\x57\x4e\x50\x8e\x52\xcd\xdc\x9a\x4e\x57\x95\xf1\xef\x18\x49\x47\x88\x18\x12\xc3\x32\x2a\xd3\x1b\x52\x5b\xd0\xca\x21\x31\xdf\xd9\xaa\x1b\xe1\x35\xe9\x52\x60\xfe\x81\x5f\xd8\xb6\x1e\x80\xcd\xdb\x5a\x8f\xd2\xf0\x47\xba\x37\xf4\x5e\x30\x04\xa1\xf2\xa5\xee\xc2\x04\xc6\xc8\x0a\x85\xff\x2c\x8c\xd4\xff\xff\x7e\xea\x7a\xad\x9b\x37\xb0\xe2\xb5\x5d\x42\x64\x6a\xe7\x25\x43\xf1\x9a\x70\xd5\x53\x44\x92\x7f\xd3\x97\x24\x4d\x6f\x21\x41\xcb\x1c\xb6\x4e\xc6\x0b\x74\x36\xbe\xe1\xa9\xaf\xee\xd7\xcd\xa2\x14\x0a\xb7\x40\xe1\x0e\x2d\x02\x6c\xbe\x33\xa3\xd3\x4d\x4f\x52\x29\xc9\x11\xab\xec\xa6\xf1\x88\xeb\x2c\x0a\x2e\x24\xda\xc8\x40\x31\x1c\x2f\xff\x10\x85\x6e\xc8\x55\x3c\x22\x8f\xfa\x9a\xd7\x3d\x74\x95\xc8\x0d\x8e\x11\xc1\xf7\x22\x02\xbc\xea\x43\x32\xf2\xe7\xae\x55\xc7\xff\xc8\xdd\x0e\x5c\x63\xa0\xf1\xd2\x4c\x88\xbf\x83\xfc\xc8\x85\xe8\x59\x86\x9f\xc6\x1d\x9b\x82\xb1\xd8\x3d\x05\x0f\xbc\xde\x3f\xef\x4f\xb8\xd0\x18\xbf\x3e\x49\x19\xe4\x43\x7e\x59\xa7\x87\x81\x86\xe6\x0c\xb5\xeb\x8f\x6c\x15\xcb\x9b\x39\x58\x79\x85\xc7\xaa\xad\x0a\x93\xbb\x67\x9d\x94\xb1\x0e\x47\x44\xda\x89\x9a\x04\x02\xb1\x7b\x54\xab\x3b\x3e\x5a\xd0\xa6\x4b\x07\xf1\x1d\xda\x61\x40\xfd\xc1\x34\x7c\x10\x91\xaa\x90\xb4\x3c\xb5\xee\xe7\x2c\x3c\xd6\xd8\xe9\x21\x85\x08\xe3\x34\x4e\x33\x07\xab\x14\x6e\x79\xeb\xd4\xac\x2f\xba\x5f\xa8\x03\x96\x76\xb2\xc1\x82\x48\x2d\xc2\x96\x7e\xdd\x39\x08\xe9\xa0\xb2\xa2\xc3\xb9\xb1\x54\xe7\xd0\xd4\xab\xcd\x6e\x5c\x32\xfc\x28\x22\xb2\xd4\x93\x5e\x4a\x67\x90\x76\x6c\x3e\x28\xe3\x24\xfe\xaa\x6e\x5e\xd8\x0e\x3c\x42\x39\xa6\x55\xb2\x9a\xc7\x25\x8c\xdb\xab\x3e\x10\x73\xdf\xac\x93\x1d\x34\xe5\xe1\xf8\x75\xe5\x8f\xa8\xa0\xd6\xb1\x8b\x56\xf1\x07\x08\x66\xbe\x37\x0c\xc5\xd7\xb3\xd4\x00\x3a\x4e\xb3\x49\x2f\xfc\xe6\x6f\x35\x88\xc2\x1e\x4b\x48\xb9\x5e\x6a\x62\xce\x8e\xed\x5b\xaf\xd8\xe3\x5f\xb2\x87\x10\x5f\x24\xf0\x72\x15\x9b\x2e\x66\x49\x9c\xed\x0c\x33\x2c\xff\x92\x2b\xcf\x3f\x19\x12\x87\xc6\xef\x53\x95\xe3\xff\x66\x68\xd4\x71\x96\x12\xb9\x50\xc7\xdb\x58\x94\x06\xb2\xfb\x58\x08\xda\x18\x0b\x51\xc4\xf9\x28\xa0\x8d\x4c\x6f\x47\x83\xe9\xed\xaa\xfb\xf0\xc2\x1a\xaf\x30\x7d\x6f\x75\x09\x9e\xbd\x85\xda\xc2\x63\x65\x97\x97\x66\x1c\x89\x57\x19\xf7\x64\xb0\x5d\x61\x97\x61\x82\xe6\xf2\x18\x10\xbc\x4a\x9b\x73\x11\xaa\xf6\x99\xf3\xb7\x87\x44\x7e\xfc\xed\x50\x6e\xcb\x4d\xd1\x55\x73\x83\xf1\xa7\xdb\xcc\x3e\x7e\x9b\xe0\xe8\x45\xd7\xe4\x60\xe5\x11\xa5\xb1\x11\xd5\xb1\xe0\x0b\xdb\x71\xd2\xce\xf2\x7e\x83\x74\xaa\x99\x74\xfe\xc2\x58\xf7\x68\xff\xfc\xfe\xe6\xaa\x49\x53\xd0\xb8\xea\xc8\x06\x09\x96\x7c\x4c\xee\xba\x34\xa5\x8d\x8b\x6e\xdc\x08\x3d\x56\x41\xfa\xca\xc9\x58\x40\xbb\xff\xe5\x03\xcd\xa5\xdc\xe9\xc2\x35\x46\x20\x10\xd5\x37\xa8\x21\x24\xae\x53\xe3\x49\x44\x82\xff\xfe\x19\x29\x12\xfd\xac\x0e\x7c\x10\xf7\x58\x69\x06\x8b\xe3\x5e\x44\xab\xe6\x5e\x5d\x0d\xa0\x18\x2c\x14\x71\x47\x56\x97\x96\x1e\x1b\x5e\x6f\xe3\x2c\x15\x9a\xab\x35\x5f\xec\x26\xf2\xcb\x4b\xc4\xf2\xae\x83\x32\x28\xdf\x39\x97\xf3\xe2\x26\x60\x68\x78\x8f\xf7\xb9\x7c\x3d\x64\x06\x5e\xbc\x6d\x84\x37\xcf\xb6\xc6\xc1\x47\xcd\x05\x9b\x64\xab\x6e\x8e\x52\x67\x4a\x03\x28\xe0\x96\x6b\x7e\x2a\x45\xc3\x13\x14\x31\x2c\xa5\x71\x3a\x11\xca\x56\xd2\xdb\xd3\xc9\x08\xc6\x04\x13\x45\xd3\x00\xfd\xd8\x51\x15\x9a\xa0\x7d\x5f\x47\x5b\xea\xc6\xa8\xe3\x0c\x5a\x4d\x88\x02\x05\x3d\x20\x27\xb5\xe2\xa8\x4b\xb9\xe9\x0c\x8c\x90\x29\xfa\xa9\x6f\x0f\xed\xbf\xe4\x67\x84\x16\x6c\xe9\xe4\x1f\x50\x24\x91\x98\xdd\x0f\x56\xf9\xf6\xc3\x09\x97\x6a\xa3\x45\x76\x18\x4f\xd4\x33\x0b\xf9\xf8\x0c\xf3\xd1\xa8\x0a\xdf\xc7\x76\x44\x96\x29\xc3\xd2\x42\x34\xbe\x4e\x38\xec\xb4\x68\x67\x52\xf3\x07\x98\xf5\xda\x90\xe8\x3b\xae\x91\x6c\xe9\x0b\x2f\xbc\xf0\x28\x81\x82\x3e\x76\x9d\x50\xa5\x70\x21\x9c\x27\xea\x30\x88\xc1\xfe\x0f\x17\xa6\x78\x05\xba\x99\x83\x12\x4c\x9d\x1d\x92\x6a\xf7\x76\xc7\x44\x80\xda\xd7\xbd\x91\x26\x23\x5a\x9a\x42\x14\x44\xa0\x70\x01\x65\x23\x42\xbc\x3e\x52\x65\xcf\x5f\xcb\x39\xef\xbd\xcc\xb3\x0b\xdf\x21\xda\x77\x55\x8a\xd6\x21\xbb\x50\xbf\xdb\x44\x2f\x76\x64\x1e\x13\xa8\xd7\x0b\x35\x3c\x7a\x07\x9a\xfd\xc4\xa4\x81\xbb\x8a\xd7\x9f\xce\xec\x04\x48\x44\x6a\x97\x92\x78\x09\x8a\x5e\x9e\x96\x06\x51\xb5\xbe\xcd\x3a\xc5\xe1\x38\xed\x0c\x8a\x32\x8f\x4d\x22\x55\x43\x69\x15\x0c\x09\x26\x79\x1f\x39\x21\x3a\x2d\x81\x62\x24\x31\x5e\xf3\x54\x59\xa3\x1b\x5e\xae\xfa\x3a\x55\x17\xbb\xa6\xf3\x2b\x18\x7c\xf6\xe8\xdb\xea\x7e\x90\x11\xfc\x2d\xdc\x8b\xe2\xf7\x42\x7b\x07\x13\x63\x88\x9e\x80\x5f\xc4\xff\xff\x36\x9e\xbb\x47\x93\x54\x31\x96\x62\xe3\xab\x25\x81\xa0\xec\x88\xe4\xda\x58\x45\xd7\x87\xa4\x8d\x70\xc6\xad\x16\xe9\xae\x21\x1f\x91\x3e\x06\x82\x2c\x25\xc1\x75\x37\x2d\xdc\xf8\xd8\x3b\x78\x90\x17\x22\xda\xe3\x13\xeb\xee\x95\xfa\xe1\x4a\x3f\xef\x34\xd1\x6a\x4c\x4f\x7b\xd9\x12\x37\xba\x48\xdc\xbc\x3a\x09\xfa\x3d\x87\x82\xd6\x95\x42\xac\xd9\x6f\x8e\x81\xb6\x5d\x7b\xaf\x9b\x39\xe7\x28\x05\x73\x0f\xf8\xf2\xae\xec\xb2\x7f\x3b\xed\xcc\xe4\xa2\xdf\x85\x30\x0c\x59\x83\x1c\x8f\xd5\xc7\x3f\xdf\xfc\xd5\x99\x7d\x2f\xee\x3b\x78\xa0\x41\xfd\x3c\x3c\x69\x4d\x6c\xb6\xae\xd0\xca\xf3\x41\xb4\x14\xc1\xdc\xfe\x51\x05\x05\xe5\xf6\x79\x34\x14\x75\x06\x0b\x6e\xb5\x88\x90\x80\xbb\x6c\x15\x15\x08\xf1\xbe\xb2\x3e\x68\x8c\xa8\x0c\x68\xa7\x99\x01\xed\xf4\x48\xc7\xe2\x4b\x5f\x98\xfb\xff\x07\x45\xf4\xe1\x70\xab\x60\x9a\xb6\x34\xef\x13\x94\x62\x5b\x0b\x4b\x12\x4b\xfc\xd8\x90\xa6\xe6\x31\x07\x8e\x95\xd3\x58\x77\x0b\x84\x1b\x78\x3a\xa0\xe7\x5e\xbc\x96\xe6\x5c\x2e\x82\x4a\xc5\x8d\x21\xe9\x15\xe0\xa2\x55\xd8\x26\x94\x2a\x4e\x63\x9a\x15\xfb\xf8\x21\x56\x31\x2a\x25\x77\x64\xe5\xe2\x32\x45\xbc\x1e\xdb\xe3\x8e\x1b\xbb\xd7\x84\x82\x46\xfd\x00\x67\x87\x29\x11\xdd\x32\x5c\xa5\x08\x82\xa2\x2a\x7f\x12\x0d\x3c\xf8\x96\x47\xd6\xc3\x5a\xbd\x84\x69\x5a\xdf\xf3\xab\xde\x25\x3c\xec\x7b\xa4\xe1\x7d\xcb\x0d\xe3\xe2\x85\x7d\x73\xe4\xf9\x17\xd9\xeb\xee\xc5\x8e\xc8\xa2\xeb\x1a\x7a\x9c\xd8\x05\x1c\xdb\xe1\xcc\xc1\x20\x8d\x12\x26\x14\x2f\x8f\x4d\x8a\x3b\x35\x3f\x81\x69\x48\xb6\xe0\x87\xcd\x02\x82\x70\x14\x41\x9a\xa5\xd9\x64\xf5\x8c\x5c\xfe\xfd\xf9\x67\x5b\x61\xf9\xef\x5c\x0f\x40\x10\x81\x00\xc3\x9e\xdc\x1d\x43\x74\x1d\x7c\xb9\xb9\x68\x8d\x0c\x96\x60\xaa\x02\xb9\x1a\x30\xad\x72\x3c\x06\x84\x98\x9d\x6d\x2e\xc6\xb9\xf6\x37\x74\xce\xce\xad\xc5\xf1\x41\xbb\xae\x4d\x3a\x4f\xd2\xeb\x38\xca\x32\x10\xc0\x45\xc0\x2a\xa0\x5a\xea\xd9\xe4\xaa\xaf\x46\x71\xe1\xaa\xf0\x82\x4b\xea\x4f\xf2\xe3\x7f\x0c\xc1\x0d\x4f\xae\x55\xad\x2d\x80\x2c\x98\x68\xf4\x87\xc8\x9f\xd1\xb5\xbd\x43\x36\xf1\x02\xa9\xc2\x7f\x03\x7e\x12\x86\xef\x0c\xf7\x92\xb1\xc9\x14\xf9\xb0\x35\x25\x9c\x9f\x6a\x16\xdd\xac\x4f\x01\xf7\xd7\xc9\x4a\x7d\xbd\x4e\x40\xe9\xff\xe3\xec\x4f\x63\x24\x39\xcf\x3c\x31\xbc\x3b\xab\xaa\xbb\xd9\x14\xc9\x26\x45\x72\x76\xb4\xf8\x63\x73\xfe\xb3\x36\x61\x80\xe6\x78\xc7\xf0\x81\xf9\xe0\xc8\xa9\xae\x11\xd5\x65\xa9\x58\xe8\x6e\x35\x77\xe8\x05\xcc\xb7\x22\xdf\xca\x0c\x56\x64\x44\x2a\x8e\x2a\x16\xe1\x05\x06\x0b\xc3\x30\x0c\xc3\xc7\x62\x6d\xaf\x0d\xcf\x81\x85\xb1\xb3\x0b\x8c\x67\x56\xbb\xd2\x1c\xd2\x8e\xb2\x24\x51\x1a\x9d\x23\xb6\x78\x8b\x67\xdf\x47\x75\xf5\x7d\x1f\xd5\x46\x3c\xbf\xe7\x79\xdf\x27\x2a\xa3\xc7\x80\xbf\x65\x76\x57\x55\x46\x46\xbc\xef\xf3\x3e\xc7\xef\x18\x96\x49\x94\xf7\xe9\x48\xa1\x5b\x81\xdc\x0b\x53\x25\x7e\xad\x70\xbf\x79\x95\x39\xa1\x8e\x6c\x39\x63\x8d\xaf\xd1\x05\xf2\x6b\x85\xbb\x5a\x88\x8a\xbc\xe5\xd1\xa8\x50\x58\x12\xc5\x1d\xa9\x81\x16\x4c\x8f\x8f\x40\x51\x29\x55\x74\xb5\xbb\x4a\x1a\xe2\x72\x83\x76\xaa\x9f\x6d\x55\x7f\xc0\x65\x22\x9e\x84\x7a\x46\xa5\x8a\x0b\x69\x9a\x45\x79\xbf\xa5\xa6\x1a\xdb\x68\x75\x4a\xf7\xea\x11\xaf\xa4\x97\xb2\x86\xb8\xe8\x37\x2b\x88\x3e\x46\x45\x62\xd5\xec\xb9\x83\x27\x95\xac\xca\x57\x4a\x93\x14\xd1\x22\x16\x31\x5b\x59\x05\x3e\x88\x9d\x77\x0d\xaa\x6e\x16\x2d\x5b\xe0\xb3\xd8\xe1\xc9\x3b\x79\xfe\xf8\x69\x1a\x60\xeb\xbe\x80\x73\xf0\x96\x70\xfe\xf5\xcf\x76\x6a\xae\xda\x5b\xbb\x58\x55\x1d\x93\xa4\xf4\xac\x9a\xa4\x85\xb6\xde\x51\x1a\x8e\xf5\xfa\x69\x5e\x4c\x50\x68\x12\xc9\x83\x96\xd3\xcf\xbe\xa8\xd0\xd1\xef\x36\x61\x24\x57\xcb\x5e\x9a\xc7\x66\x39\x32\x2d\x05\x20\x39\xaf\x99\x30\xe7\x03\xcf\x00\xec\xd9\xc4\x42\x1a\xa7\xe5\x31\x85\x17\x68\x5b\x48\xfb\xab\x21\x4e\xd8\x57\xc3\xb8\xcc\x19\x6f\xe3\x6f\x31\xc5\x66\xb9\xdd\xe3\x38\x9d\xf9\x2a\x5b\x4b\x89\x95\x2b\xc9\x9d\x13\x31\x72\x5f\x6a\x5d\x3d\xc6\x7c\x90\xa6\x45\x9f\x3f\x43\xf4\x00\x6b\x2a\xdd\x35\x61\xf7\x65\x9b\xc0\xdb\x55\xcf\x1b\x2e\x69\xba\xe1\x25\xd5\x21\x19\x98\x2c\xef\x1b\x25\x4b\xb8\xae\xe6\x96\xeb\x8e\xcc\x1c\xda\xa4\xc8\x8c\x6a\xdd\x30\xe7\x5b\x35\x2f\x7f\xa1\x16\xb9\xd2\xe9\x7d\x89\x81\x1d\xb7\x35\xca\xe3\xb6\x12\x88\xb7\x65\x96\x46\x79\x5e\x82\x7d\x39\xc3\xe1\xf2\xfb\x78\x54\xa8\xee\x3e\xc2\x01\xed\xa8\x81\x4e\x52\x77\x5b\xe7\x31\x65\xa6\x67\xba\xcc\x03\x64\x85\x27\x5a\x64\xa2\xf6\x24\xa9\xd1\x6a\x5a\x16\x7d\x0e\xd3\x5a\x00\x4c\x5c\xef\x3d\x55\x97\x48\xc0\xcb\x36\x2f\x22\x3a\xb9\x9c\xc4\x20\x72\x17\x7e\x3d\xa6\xd0\xb4\x77\x6f\xf5\x10\x7a\x99\x29\xca\xd8\x63\x82\x95\x89\x9e\x63\x26\x38\x92\x7f\x44\x12\xa7\xf4\x09\x38\x0e\x7f\xa6\x99\xa2\x3f\x1b\x3b\x1b\x69\x7f\x2c\x44\x36\x49\x22\x46\xde\x35\x81\xff\x1f\x8b\xd4\x48\xc9\x2d\x35\xa1\x8f\xb4\x94\x4d\xa6\x02\xa0\xd9\x2a\xa3\xc3\x3c\x01\xbd\x6a\x14\x97\x4e\xa9\xaf\xba\x7c\xfe\x8f\xa0\xa5\x54\x58\x65\xd0\x3c\xcc\xd2\x45\x9b\xe7\x12\x0b\xf1\xf8\xd8\xb7\x96\xdf\x8c\xbc\x7f\xa4\x38\xd8\x45\x7c\x7f\x81\xb8\xbd\xab\x54\x79\xee\x36\x40\x99\xe7\x59\xc4\xa0\xa5\x5b\xbb\xf4\xd5\xa5\xcd\xdb\x80\x01\x32\x71\x6c\x7b\xb6\x0e\x36\xf9\x58\x81\x4d\x3e\x56\x47\x41\x88\xf1\x3f\x32\x84\x9f\x8f\x54\x0e\x79\x55\x53\xa6\x2e\x28\xd4\x50\x3e\x4c\x4b\xf7\xad\x05\xd1\x40\x7b\x54\xa0\x0e\x5b\x3b\x00\xcf\xb6\x57\x68\xb0\xef\x88\xaf\x28\x41\x3f\xa1\xfb\x8d\x08\xcb\x88\x3c\xd4\x37\x37\x15\x41\x6a\x21\x65\x85\xf5\xd9\x59\x4e\x0e\x6e\xab\x44\xe1\x76\x53\x40\x6d\xdb\x24\x25\x7d\x3a\x07\xa2\xb8\x18\x78\xd1\xbc\x8b\x0e\x8a\x5f\x05\xc2\x1e\x4e\x56\x37\xe7\x3e\x8f\xed\x27\xec\xbd\xad\xd1\x7d\xef\xde\x76\xba\x92\x50\x74\x42\x09\x7f\x25\xf0\xce\x51\x57\x54\x5f\xf5\xcb\x07\x7e\xb3\xe5\xe7\xf2\x77\x75\xa7\xf3\x6e\xa3\x8b\x42\xde\x27\x09\xfa\x9a\x7c\xf3\x39\x25\xdf\x7c\xce\xf3\x52\xcb\x38\x8e\x84\xac\x8f\x9c\xef\x9a\x9a\x40\x5f\x73\xdf\x2f\x8e\xbe\x52\xda\xc5\x48\xf6\x25\xaa\xb2\xab\x81\x9f\xd4\x5f\x1d\xf9\x9a\x25\x2a\xf2\x27\xb5\xf1\x35\x52\x68\xa4\x3d\xbb\xd6\xbc\x72\xf7\x0d\x8f\xa4\xff\x65\x3a\x0a\x9f\xe7\x61\xe2\xee\x0e\x25\x63\x78\xb4\x8f\x76\xaa\x0a\x40\x74\x76\xab\x4f\xa4\x36\xf4\xff\xf8\x2b\x6b\x55\x6a\xcd\xea\x89\x40\x52\x01\x62\x75\x93\x0e\x20\xfc\xc2\x5d\x4d\xfd\xde\xb9\xe6\x67\xb6\x57\x35\x05\xe6\x31\x92\xbd\x42\x8c\xdd\xb6\x56\xa5\x0e\xe8\x50\xdc\x0b\x14\x37\xf4\xd1\x8e\x02\x4b\x7d\x80\x3d\x4d\xed\xb7\xbf\xfa\x6c\xa7\xf5\xc5\x03\x4e\x2b\xc9\x23\xea\xed\x32\x24\xbd\x1e\x90\xe2\xfb\xe2\x2d\xcd\x56\x09\x44\x81\x8d\xf8\x01\xad\x03\x94\x1f\x3f\xc4\xce\xe1\xff\xa0\x22\x89\x95\xea\x14\x20\xe0\x62\x13\xf0\x7f\x39\x02\xd5\xc1\xfb\x15\x28\x1d\x9b\x0f\x1c\xa2\x2e\xaa\x0e\xa8\xbc\x30\x05\x30\x2e\x50\x2e\xfd\xa9\xf6\x78\xfc\x0b\x05\x1e\x78\x3b\xf0\x6d\xd3\x32\xc9\x57\xc8\xf4\xa1\xa5\x64\xf1\x60\x38\x29\x02\x5d\x8f\x69\x9d\xb5\x15\xb3\x3a\x49\x69\xb5\x24\x91\xf4\x64\x74\x76\x29\x90\x06\x15\x2e\xcf\x36\xa1\x15\x18\xf1\xcd\x91\xcc\x71\xfc\xab\x47\xc5\x6f\x1e\x68\x30\x94\x97\xd9\xb2\x5d\x65\xd3\x52\x2c\xcf\xe3\xda\xa6\x14\x68\x1c\x19\x40\x34\xcc\x7c\x4c\xd6\x2b\xad\x9a\xda\x5c\xd3\x16\x77\xd7\xd4\xed\x59\x89\xf2\x30\x4d\xf2\x28\x51\xd2\xa1\x1f\x6b\xe9\xd0\x8f\xb7\x7a\xcf\x56\x5b\xf7\x37\x58\x09\x02\xc7\xea\xad\x40\x33\x72\x70\x1c\x30\xaf\x7a\xa4\x64\x68\x0e\xd3\x18\xc7\x11\x45\x1d\x0d\x06\x64\x40\x9c\xb8\x37\x71\x57\x41\x61\x45\x27\x9c\xa7\x39\xe3\xb0\x9a\x19\xf2\xd1\x1f\x94\x03\x45\x7d\x43\xe2\xcc\xaf\xc7\xd6\xdb\xbe\xb9\x76\x66\x73\x13\xdb\x09\x6f\xe3\x80\x92\x48\x06\xc2\xbe\x33\xed\xc1\x0b\x61\x66\xcd\x92\x1a\x01\x9c\x0a\x14\xca\xed\xd4\xe8\x97\x7d\x13\xa4\x1f\x99\xe2\x1f\xfc\x5a\xd7\xac\xfe\x83\x5f\x1b\xa4\xaf\x40\x6e\xd9\xb5\x8f\xbc\x4e\x57\xd3\x58\x6f\x60\x4d\xc2\x4a\x32\x68\x7f\xfd\x2b\x8d\x90\xe0\xc2\xdf\x19\x3d\x39\x35\xaf\xed\x1d\xb5\x43\x6c\x96\xb8\xb6\x1d\x03\x0f\x02\xdf\x7e\x3e\x53\xd7\xb8\x7e\xc5\xb4\x54\x45\xc4\xe6\x5d\x92\xb3\x2b\x7a\x81\x35\x61\x91\x66\xac\x5c\x8e\x0b\xb8\x19\x78\x91\xab\x9b\xea\x04\xf8\x3c\xdc\xd1\x0f\x38\x86\xbe\xea\x4a\x83\x26\x88\x10\x75\x0d\xab\x02\x33\x9f\x71\x4d\xf2\xb9\xb9\xb6\x19\x0e\xd3\xea\x0b\xc9\x99\x8b\x11\xca\x49\xed\x70\x70\x32\x68\x10\x9f\x3e\x34\xfd\x3c\xb1\xc6\xb0\xb0\xb6\x53\x9f\x0e\x8d\xe0\xf3\xa8\x76\x1d\xaa\xb9\xda\xe1\xd2\x1a\xac\x16\x03\xb8\x36\xff\xcb\xc8\xb7\x39\x77\x39\xb0\x21\xdb\x60\xa7\x30\x34\x17\x64\xfb\xb5\x91\x6e\xe6\xfc\x61\xa0\xa4\xf2\xd7\x49\x63\x8d\xa1\x39\x9d\xf1\x1c\xe7\xf9\x36\x38\xd0\xc4\x05\x90\x5e\x47\x75\xad\x35\x8f\x3d\x24\x70\xa7\x14\x1e\x28\x2f\x07\x48\x81\xd9\x0f\x44\xa5\x45\x17\x94\x74\x06\x99\x32\x11\x7d\xb0\xca\x20\xab\x0d\xb5\x79\x9c\x4a\x8a\xcd\xe3\xee\x48\x0d\xfb\x26\xe9\xd9\x7c\x47\x6b\x76\x76\xf3\xa2\x46\xf9\x7c\x10\xa8\xd9\xf2\x67\x3b\xaa\xb0\xf8\x40\xd9\x61\xdf\x43\x3c\x01\x88\x6f\x73\x2c\x25\x7b\x71\xfe\xef\xb6\xcd\xc0\x66\x51\x68\x12\x75\xb6\x1c\xd3\x5d\x47\x2d\xb7\xbd\x90\x26\x29\x49\xeb\x8b\x42\x8d\xcf\xd0\x6e\xe3\x77\xd0\xc0\x3a\xad\xe6\x61\x50\x00\x70\xaa\xdf\x40\x3b\x9c\xab\xb9\xfe\x54\x7f\x05\x43\x81\xaf\x8f\x49\x00\x78\xa8\x88\x67\x0a\xdb\xaf\x94\x8e\x07\xf9\xbc\x08\xa5\x2a\x5a\xc2\x59\x85\x9d\xcc\x6c\x2f\x4a\x11\x35\xb9\x13\x4c\x3f\x28\x5d\x61\x07\xef\xb4\x79\x58\x5a\x7a\xd0\x08\x18\xef\x52\xe4\x73\x22\x64\xee\x0a\xef\x29\x4d\xe0\x05\x9b\x65\xab\x58\xf9\x48\xc1\xaf\x6a\x11\xaa\xab\x23\x2f\xe6\xbc\x98\x95\x79\x91\xb1\x2c\xa2\x4b\xd1\x2e\xd4\x14\x5b\x95\xa2\xcf\x31\xaf\x71\x90\x45\xcb\x26\x5c\x45\x9e\xe4\x88\xf0\x0e\xe5\x7b\x46\xc1\x27\x57\x4c\x5c\xa5\xa3\x58\xed\x9c\xc7\x06\x0a\x45\xfe\xc9\xd8\x0e\xae\xb6\xa2\xc9\xf3\x28\x2f\x0c\x87\x23\x7e\x3a\x41\xed\x51\xc9\x30\xab\x6b\x56\x27\x54\x44\xb8\xca\x5d\x52\x34\xe3\xe0\x81\x21\x97\xdf\xd0\x0c\x28\xe3\x22\x1a\x98\xc2\x72\xf2\xef\xf0\xff\x0e\x16\xfa\xcf\x9b\x8c\xdf\x97\x92\x2a\xab\xad\x29\x5b\xd5\xda\x90\x0d\xde\xfc\x43\x9b\x0d\xa2\x3c\x8f\x84\x9a\xd9\x5c\x96\xf9\x54\xa2\x67\x63\xe8\xe5\x34\x09\x1b\xf8\xa8\x69\xa2\xc1\x43\x0a\x55\x83\xb5\x8f\x93\xe2\x31\x24\x98\x22\xfa\xab\x3c\x54\x6e\xaa\xef\xc7\x61\x11\xb1\x63\x8a\x7a\xbf\x42\x8d\xae\x6e\x48\x4d\x91\x56\xe4\xec\x3f\xab\x11\x62\x71\xc4\x6e\x18\x2e\x09\xbb\xa7\x4c\xa3\xee\x8d\x8d\x95\x67\x67\xdb\xc3\x7e\x66\x72\x41\xb0\x2b\x15\xa5\xe7\x1b\xaa\xa7\x15\x13\x81\xce\xbb\x7f\x9a\x63\xf7\x59\xe5\x7d\x04\x2d\x13\x9c\x79\xc7\x69\x7d\x6c\x42\xf4\x54\xac\xfa\x5a\x7b\xf7\x6e\x9e\xd3\xf8\x8d\x83\xcf\xa9\xd1\xc7\x86\x36\x82\xdd\x18\x7b\x6c\x55\x6d\x14\x25\xdd\x68\x39\xea\x96\x88\x85\xe2\xc0\x7c\x54\x19\x60\x1f\x6d\x34\x52\x37\x43\x93\x31\x38\x4b\x20\xa0\x8a\x1e\x06\xf2\x83\xb0\x34\x1e\x57\x49\x80\x0d\x97\xd2\xb2\x50\x06\x59\xc7\x95\x73\xf6\xf1\x46\x21\x26\x19\x8c\x50\x9c\xe0\xbf\x5f\xc3\x0f\xd6\x40\x86\xfe\x74\x1e\xc6\xa6\x3a\xf6\x85\x7f\x85\x0d\xcf\x74\x09\x7e\x53\xef\xa1\x2f\xe4\x3b\x94\x3a\xf7\x79\x25\x54\x74\x11\x4d\x27\x6d\xc8\x8e\xed\xcd\x63\x6b\xf6\xe0\xe5\xbd\x29\xd5\x7e\x83\x31\x8f\x4d\xba\x69\x96\x5b\x97\x89\x60\xd8\xf2\xdd\xc0\x73\xd1\xbe\xab\xc2\x28\x11\x65\x56\x51\x23\x33\x0a\x7c\xe4\x79\x32\x68\xf2\x60\x42\x73\xa6\x61\x1b\x1f\xa0\xc5\x85\xc7\xca\xde\x5b\x41\xeb\x45\xf7\xba\x71\xe5\x66\x76\xd9\x26\x05\x27\x16\x4e\x01\xc2\xf9\xbd\xbf\x7e\xee\x81\x1e\x13\x66\xd9\x66\xab\x13\xbe\xae\x46\xf7\x04\x48\x39\x56\x14\x45\xf8\xbf\xad\xce\x94\xcc\x76\x6d\x1e\xf5\xd8\xa1\xd6\x39\x38\x3b\x99\x94\x0d\xf4\xf7\xea\x22\x13\x83\xd5\x49\x4c\x00\x00\x80\xda\xd1\xd1\x23\x98\x96\x53\xf4\x3e\x57\x73\x44\x19\x3d\x51\x4f\x88\x5e\x9c\x6f\xff\x06\x6e\x0d\x32\x11\x00\xe4\xf8\xb5\x13\x3a\xe9\x46\x68\x82\x95\x19\xa2\x9a\x98\x49\xb5\xc4\x7e\xe9\x93\xf5\x26\xbf\x01\x34\x1c\xa6\x34\x3c\x58\x11\xb5\x1e\xeb\x78\x23\xbe\x3b\xf4\xa7\x90\x25\x41\xf0\x14\x8d\xe4\x53\x5b\x71\x79\xff\x1e\xb5\xbe\x26\xab\x8c\x84\x1f\x08\xaa\xae\xd3\xec\xb1\xd1\x72\xfa\xf9\xa7\x83\xcf\xba\xac\x97\xae\xbe\x67\x8a\x14\x96\x74\xc2\xf6\x53\xcc\x3f\x2d\x77\x97\xc6\x84\x85\x99\x77\x21\x07\xb3\x36\x7e\xdd\x14\xf5\xf3\x41\x54\xf4\xf3\x34\x89\x0c\x84\x87\x85\x25\xd8\x72\x8c\x5f\x86\x04\x89\xd0\x85\xa2\xfc\x46\x79\x18\xa7\x08\x93\xfb\xe6\xfc\xb8\xc1\xcd\xf3\xee\x8e\xcd\xed\xab\x0f\x54\x0c\x99\x09\x0f\xe5\x38\x87\x33\x9d\x8d\x34\x94\xfe\xfc\xf5\x31\xa0\xd5\xcc\x41\x5a\xaa\xa6\x67\x09\xf8\x85\x3c\xe7\x4d\x35\x19\xb9\xab\x15\x8b\xb9\x93\x85\x4e\xcd\x9f\xe3\x53\x04\xbd\xd3\x14\xab\x6c\x99\xa5\x43\xcb\x77\x03\xe7\xc9\x0d\xdc\x01\x2c\xd6\x09\x6a\x84\xe0\xcf\x55\x79\x90\x47\x31\xd8\xee\x23\xde\xa8\xe9\xae\x02\x4f\xec\x5c\xa3\x49\x00\x96\xe6\x0d\xd4\x3a\x35\x6b\x76\x24\x3e\xdc\xa1\x61\x1d\x18\x85\x48\xf8\xea\xc8\x0b\x17\x3c\xd5\x51\x84\x94\x5b\x34\x96\x45\x2c\x39\x8a\xa4\x9f\x25\xc9\x69\x21\x3a\x45\x99\xfd\xd3\xee\xd3\xc7\xe6\x5d\x87\xa6\xdb\x3d\x13\xa1\x03\x86\x6f\x78\x47\x71\xa0\xef\x34\xc5\x18\x46\x5e\x40\x68\x42\x18\x1b\x74\x8b\xf8\x8d\x32\x54\x7a\xad\xcc\xa2\xb0\x0f\x52\x36\x4e\x93\x5b\x81\x62\x86\x8c\x8f\xf3\xc9\xca\xb3\x4c\xba\xc2\x19\x72\x8e\x19\xd5\xd7\x46\xe7\x0c\x32\xf2\x18\x52\x70\x23\x0e\xcf\xfa\x46\x53\x49\x3c\x34\x89\x19\x98\x09\xed\xfa\xf2\xd6\x48\x63\x4a\xe9\x0f\x48\xf3\xaf\x89\x60\x51\xa5\xef\xe4\x77\x5d\x4b\xd9\x65\x06\xdb\x80\x8e\xea\x5a\xd3\x8d\xa3\x04\x7d\x1f\xb4\x50\x8e\xaa\xde\xca\xd1\x91\x66\xf3\x87\x31\xa5\xf9\x93\xb4\x32\x5d\x52\xe8\x80\x30\x30\xdf\x15\x6b\x39\xe5\x13\x70\xb6\x21\x2f\xa5\x06\x40\x14\x47\x72\x38\xb9\xa1\x8e\x9f\x9b\x05\x0f\xa2\xd6\x24\x69\x62\x8b\xbe\x8d\x6d\x9e\x4f\xfa\x26\x14\x17\xb3\xdc\x97\x51\xf8\xd3\xc7\x60\xb8\x23\x51\x5b\x15\x3b\x26\x41\xff\x55\x80\x81\x2d\xa7\xd0\xa2\xbd\xcd\xcd\x82\x29\xe8\x14\x9d\xf0\x68\x93\xaf\xd1\x73\x61\x5c\x11\xdd\x30\x69\xa7\xa8\xdf\x2b\x49\xb1\x54\x1c\xc1\x84\xcf\xa9\x84\x72\xdf\xe0\x43\x5c\xe0\x6b\x0d\x0d\xf5\xdc\x86\x69\x95\x91\xa0\x33\x88\x93\xea\xbe\x3a\xb5\xee\x8f\xbc\xb6\x75\x34\x60\xbb\x90\x78\x75\x87\xe2\x03\x7c\x88\x6c\x89\xdf\x68\x73\xdb\x0d\x64\x8a\x32\xc4\xf6\xf4\xa1\x0b\xd8\x89\x22\xad\xf6\x20\x77\x8e\xa5\x28\xcb\xc3\x7e\x22\xaa\x1e\xf8\x1a\x10\x19\xe0\xd7\x63\x73\x9b\xea\xc9\x17\x36\xec\x27\x69\x9c\xf6\x22\xa7\x81\x2d\x52\xfe\xf4\x77\x44\xcb\xbf\x71\x60\xb9\xe0\xb8\xfb\xc8\x2d\x0e\xe3\xdb\x89\xc3\xb9\x0f\xc7\x57\xc7\x4e\xcb\x99\x83\xed\xc5\x28\x0f\x79\x98\x23\xec\x2f\xdf\x6e\x3b\xab\xb0\xac\x59\x99\x71\xc9\xee\x20\xb5\x8a\xab\xa5\xf3\xcc\x7c\xc5\xda\xa1\x8c\x34\xd1\xb2\xba\x8d\x22\x97\xdf\xa8\x7a\x72\x90\x26\x76\xf5\x11\x35\x9d\xba\x37\xf2\x08\xbb\xd3\x5a\xd3\xec\x5d\x6e\x6a\x48\x70\xab\x96\xa9\xf8\x15\x29\x3d\xeb\xab\x88\xc4\x22\x4a\x5e\xe7\x05\xcd\x33\x86\xf8\x0c\x42\x12\xc6\x16\x67\x35\xfe\xfd\x13\xbd\x00\x6e\x29\x93\xab\x8f\x9b\x52\x0d\xb3\x50\x3a\x95\x79\xa6\x69\x07\x3e\xf1\x3a\x3b\x76\x48\xa1\xcb\x17\xf5\x3c\xbc\x0e\x9b\xeb\x3b\x6a\xa3\x7d\xa7\xb1\x66\xcd\xec\x72\x64\x3d\x1e\x17\x07\x27\x0e\x1a\x7e\xdd\x94\xf0\x46\x71\x5c\xe6\x51\x9a\x90\xaf\xa4\xd3\xdf\x43\xeb\x8d\x5f\x8f\xad\x47\xd2\x63\x8f\x12\x4a\xbc\x0a\xe9\x23\x88\x68\x88\x92\xb4\xd9\x08\x1e\x51\xf8\xe5\x05\xc3\xeb\x16\x08\x0e\x1e\xfb\xf2\x9b\xa6\xae\x62\x91\x95\xf1\xea\x84\x42\xfb\xbe\x39\xf2\x58\x89\xab\x8a\x75\x56\x8b\x4f\x51\x97\x87\xb5\xa8\xe5\xae\x04\xca\x9d\xe8\x82\x9e\x91\x31\xeb\x44\x06\xea\x4e\xc0\xde\x16\x0f\x7b\xd3\x27\x36\xe9\xc1\x0a\xde\x85\x8a\xd6\x89\xb3\x7b\xe2\x04\x60\xab\xa8\x7d\x5a\x20\x64\x08\x59\xc2\xcb\x2c\x80\x0c\x0b\xb8\xf3\x09\x0d\x7a\x7d\x14\xb0\x76\x6c\xa8\x6d\x6b\x35\x38\xf2\xd6\x27\xfd\x6c\xbb\x6b\x33\xdb\xc3\x00\x77\x42\x59\x42\x7d\xaa\x94\xb3\xbf\xaf\x81\xb0\x6f\xab\xf2\xf3\x0b\xbf\x79\x60\x42\xe1\x94\xef\x05\x5a\x13\x01\x8f\x0e\x31\xb9\xc9\xb6\xbb\x5d\x64\xc6\x99\x6b\x33\x5a\x4c\x9b\x37\x9d\x52\x1b\xdc\x24\x45\xd4\x4d\x0b\x4b\x61\x7c\xf3\x9c\x32\x0b\xb9\xab\x46\xdf\x4a\xf5\xcf\x46\x09\x46\xfd\x72\x46\xd2\xc5\xf0\x9b\x26\x18\x8f\x35\xf9\xea\xa4\x6e\x02\x57\x77\x7a\x13\x96\x69\xa0\x8d\x7e\x3f\xf0\x3a\x89\xb7\x9a\xcc\xfd\x97\xec\xea\x94\xfa\xce\x9b\x8a\x07\xcf\xb2\x01\xae\xca\x77\x97\x7f\x9d\xa0\x6e\x38\x3d\xcf\xa8\x3b\x5b\x94\xf9\x0e\x4f\x98\xd9\xd0\x32\xd9\xe7\x95\x94\xf5\x44\x47\x9b\x97\x50\x82\xc7\x3f\x34\xf2\x13\xd3\xb3\x23\x5d\x81\x2d\x46\x49\x55\xb9\xd1\xf5\xe0\x1a\x7e\x4e\x3f\xcb\x98\x55\x7c\x92\xe0\x5e\xfc\x49\xea\x5c\xa0\x68\xea\x85\x0f\xb9\x8b\x35\x8b\x3c\xe5\x1d\xc4\x44\x51\xbe\xf7\xc9\xcc\x3b\xd8\x99\xa2\xa4\xa7\x70\x92\xdd\x1c\x40\xe3\x9a\xa2\x06\x8f\x51\x70\x1d\xc8\x64\x7e\x34\xf2\xa7\xfb\x75\x05\x97\xe5\x49\x21\xb2\xb1\x49\x2a\xb3\xd8\xdf\x75\xec\x09\x93\x3e\xe6\x20\x9f\xa8\xea\x0d\xe4\xc6\x7f\xac\x59\x1d\x9f\xe8\xe8\xf1\xc1\x58\x25\x22\x87\x6d\x98\x59\x2a\xae\x54\x4f\x01\xc4\x2f\x7e\xed\x90\x08\x8b\x99\xcd\xfb\x03\x83\x50\x86\xa7\xcb\x01\x8a\xdf\x8c\x7e\xe5\x01\x1f\xb1\x10\x65\x83\x28\xe9\xf5\xcd\xa0\xe5\xbd\x4a\x59\x2a\x44\x14\xc1\x1b\x66\x5c\x8b\x69\x58\xe6\x53\x5e\xba\x69\x1b\x88\x77\x08\x9c\x4c\x8f\x15\xdf\x1a\xdf\x88\xb8\xe0\x95\x5a\xfe\xde\xcd\x26\xae\x36\xc1\xa5\x32\xd0\x5a\x30\x47\xf8\x04\xb7\x8d\xdf\xa8\x02\x2f\xb3\x03\x3b\x58\x00\x5d\xb1\x4a\x5c\x84\x90\x45\xd5\x8c\x64\xcf\xe3\xd4\xc9\xf9\x76\x66\xbb\x13\xda\xf5\x01\x5e\x8a\x98\x99\x5d\x0e\x14\x5b\xee\x2d\x85\x14\x5a\x89\xb2\xa2\x1f\xf3\xa4\xae\xc9\x7a\xbd\x61\x7f\x2e\x98\x02\x07\x27\xa2\x05\xf2\x7a\x7e\xdd\xe0\xa0\x5a\xe5\x72\x65\x22\x9a\xa7\xb2\xb0\x5a\xca\x44\x78\x6b\x4c\x23\xd3\x8b\x32\xe1\xdf\x70\x6d\x25\xa7\x2d\x7c\x7e\xec\x58\x7a\xe6\x99\x76\xd1\xb7\x03\xab\xcc\x48\x7f\xa0\x0c\xaf\x7f\xa0\x6a\xa3\x85\x48\xf0\x01\x2f\x31\x24\xe8\x30\xa4\x81\xf9\xcd\xb8\xea\xe1\x4c\xbb\x1f\xf5\xfa\x36\x9b\xa2\x83\x49\xfe\xa2\x86\x03\x33\xdc\x41\x54\x18\xab\x0f\xe6\xc1\x07\x76\x16\x56\xc6\xa6\x7a\xca\x24\x10\x12\x85\x91\x49\x26\x7d\x14\xba\x84\xf3\x01\xdb\xf8\xb0\xae\x9a\x2f\xe1\x5c\xe2\xff\x71\x4c\x99\x81\xcd\x22\x69\x52\x20\x53\xe4\x15\xce\x6f\xd4\xd7\xce\x6d\x98\xb1\x97\xa3\xe3\x55\x79\x69\x7b\x07\x2c\xea\xc5\x69\x9e\xaf\x4e\x79\xfc\xde\x05\x4d\xd7\xbf\xe0\x09\x74\xff\x68\x0f\x95\x48\x28\x28\xb9\x5e\xc1\x1d\x3c\xd3\x54\x9c\x0d\xcd\x60\xe8\x29\xb8\xc8\xb2\xae\x2a\x52\xe8\x55\x4f\xeb\xee\xdb\x78\x71\x87\xab\xdb\x7e\xe9\xf1\x35\x2f\xc7\xfc\xc2\x4f\x47\x0e\x78\xf5\xf9\x5f\x46\xcc\x46\x13\xe8\x7f\x43\x08\x15\xdc\x35\x41\x55\x65\xb3\x8c\xcf\xca\x5e\x6a\x0f\x4c\x16\xf1\x18\x49\xba\x1f\xf4\x15\xc4\x53\x74\xeb\x06\x3b\xf8\x02\xd1\xaa\x94\xe1\x2a\xfa\xca\xf2\x46\x3b\xd8\x95\xaf\xb5\x34\x59\x8c\xfe\xae\xb0\xc8\x7c\x9b\x35\xb6\x0b\x26\xb1\x39\x9b\xaa\x88\x2d\xb0\x2f\x41\xc7\x5d\x81\xe7\x5f\x38\x00\xa7\x71\x97\x4c\x62\xa3\x83\xc0\xcd\xaf\x15\x37\x0d\x06\xfd\x83\x96\x72\x9e\xf9\xbe\xb2\xd8\xf9\xbe\xc2\x28\xc4\xe5\xc2\x52\xc4\xa3\x0b\xb4\xbd\x8f\x04\x5a\x3d\xe4\xc8\x58\xc4\xf9\xd2\x4c\xbb\x6f\xe3\x21\xdd\x10\xc7\xf7\x55\x40\xc8\x06\xb4\x33\x81\x97\x68\xb9\xb3\xf2\x28\x05\x1a\xdc\x71\x04\x04\x9c\x40\xef\x6a\xb1\x9b\x71\x81\xa2\x43\xd3\xcf\xb7\x17\x4d\xd1\xf7\xf2\x3e\xe2\x2e\xad\x22\x2a\x97\x5f\x48\x03\x7f\xaa\x3a\x46\x59\xc9\x02\x4a\x32\xc2\xad\x3e\x97\x5f\x8f\x65\xfd\x55\xe4\xb6\xa1\x1d\x92\x1b\x4a\x5d\x49\xce\x05\xa3\x71\x73\x1a\x52\x7b\x4c\xb3\x50\x56\x3b\x0f\x60\xf1\xad\x64\x1a\xfb\x98\x6b\x95\x9a\x78\x35\x8f\x30\x28\x11\x94\x80\x2f\xbf\x2e\xab\x9c\x63\x10\x0e\xc8\xa5\x77\xa2\xa5\xc4\xab\x28\x26\x21\x3f\xe1\x46\x85\x18\x88\x3d\xa8\xd2\xed\xa7\x43\xbb\x58\xc6\x3c\xda\x02\x89\xe0\x86\xf6\xae\xba\xa1\xe2\x54\x91\x45\xbd\x1e\x2b\x0c\xee\x17\xcb\xb1\xaf\xd3\xd7\xe7\xd7\x2e\x18\x2d\x9a\x38\x4e\x4b\x3e\x1a\xa4\x97\xdf\x72\x72\x02\x1b\x6e\x87\x67\x91\xc3\xbd\x21\x47\xe6\xce\x2c\xbf\x19\x79\x32\x7e\x6e\x59\x30\x1d\x9d\xb7\xb7\x03\x05\xb1\xfe\x54\x5b\xc8\xac\x8f\xad\xb7\x67\xab\x8f\x71\x1b\xc5\xd9\xeb\x39\x95\xc4\x0b\x8a\x85\xde\x8b\x6d\x92\x68\x28\xf6\x86\xf6\x03\xda\x78\x60\x1a\x53\xd8\xa4\xeb\xb0\x38\x68\x4c\x73\x76\xc2\x6f\x9a\x54\x55\xf3\x34\x5e\x76\xd7\x05\x06\xd8\x49\x45\x67\x3e\x39\x2e\xfc\xf3\xc2\x81\x76\x61\xb2\x9e\x95\xf9\x42\xcd\x85\x8a\xdf\x04\xbe\xd4\x5a\x4c\xb3\xc1\x04\xad\x04\x19\xaf\xf8\xf3\xf9\x6b\x58\x2f\x82\xc9\x1f\xe7\x76\xce\x1f\xa8\x41\x25\x6b\x75\xf6\x78\x16\x0c\x10\x74\x6c\x27\x6a\x6e\x03\x9e\xaa\xb9\x8e\xa8\x2c\x44\x95\x71\x42\x59\xbb\x6b\x07\x69\x42\xd3\x66\x59\x12\xee\xc0\xf3\xd0\x87\xf1\x32\x74\x6e\xae\x1d\x5b\xd3\xad\x73\xd6\xd1\xd5\x90\x7c\xa9\x49\x5a\x7e\xa1\x8c\x63\x05\x5c\x3e\x05\x62\x88\x4c\x32\x04\xf0\x47\xfa\x16\x1e\xff\x8a\x84\x7e\x5b\xc7\x53\x03\xb7\xad\x79\x6f\x83\x9e\xcd\x21\xda\xa5\x60\x4b\xf3\xde\x8d\xa6\xfa\xfb\x6c\xbe\xd2\xe8\xd8\x92\xf7\xa3\xac\xf8\x9b\xfc\x10\xd5\xb9\x92\xe5\x8f\x54\x1f\x84\x16\x28\xc9\x62\x0b\x19\xe6\xde\xa8\x35\x73\x70\xf3\x22\x7e\x93\x32\xe3\xc3\xbf\x0e\x94\x05\xf6\xd4\xdf\x5a\x43\xa0\x44\xa3\xe5\x99\x8e\xe7\xaa\x02\x17\x48\xc5\xc6\x17\x7f\x75\x4d\x59\x0b\x7c\x86\x20\x86\x62\xbc\x4a\x71\x4c\x1b\x36\xa0\x75\xf8\xf4\x9a\x32\xb3\x7b\xac\xb3\xf5\xf9\xee\x9b\x6b\x17\x76\x40\x40\x97\xd2\x11\x5d\xb4\x05\x9a\x78\x3e\x7b\x19\x8a\xd0\x64\x55\x70\x6a\xf9\xf6\xeb\x49\x8d\x59\x3a\xd9\x44\x00\xff\x95\x2f\xfc\xf6\xfc\x17\x7e\x6b\x6e\x4f\xf5\x3b\xd0\x79\xba\x88\x6c\x59\xca\x41\x3f\xca\x3e\xb7\xa7\xa3\x54\x9a\x3e\x56\x4b\xf5\x4a\xe0\x89\x6c\x68\x68\xb8\xd8\xe4\x6d\x26\x6f\x8e\x5a\xfb\xe6\x04\xda\x22\x2e\x04\xb4\xd5\x54\xf3\x41\x20\xd9\x57\x68\x28\x23\xd9\x05\x1e\x00\xa2\x3f\x9b\xdf\xe2\x03\x2e\x8f\x34\xaf\x5f\x8e\x85\x61\x3a\x2c\x63\x6a\xfe\x38\xc5\x82\x1b\x6a\x42\x30\xde\x73\x7f\xb6\xbd\x98\x45\x36\xe9\xca\x99\x88\x94\x73\x02\x83\x0b\x3c\x2d\xa4\x38\x9b\x9b\x5e\xbc\xf5\xd5\xa2\xaa\x36\xa8\x12\xad\x01\x3d\x59\xdf\x89\xa2\x37\xbe\xc0\x0f\xe8\x96\x08\xfb\x4e\x35\x49\xee\xbb\x0e\x4d\x61\x86\x13\x9e\x2e\x84\xfa\xd2\xf1\xa0\xf6\x3b\x0e\x88\x6a\x0a\x55\x65\xf0\x4e\xff\xd4\x5e\xc7\xde\x91\x49\x9e\x22\x15\x20\xfe\x00\x76\x7d\x5e\x53\xf6\x77\xe1\x7a\x71\x18\x9e\xe1\x9b\x2c\x50\x58\xdd\x1d\x0f\xfb\x93\x1a\x5e\xa1\x72\x32\x6e\x86\x8a\xb0\x2d\x95\x02\x22\x79\xdb\x10\x1f\xdb\x44\x3c\x70\xd3\x71\xe4\xff\xdf\xd1\xf4\xd7\xef\x34\xfc\xda\x01\xc2\x4f\x55\xa1\x82\xbe\x22\x9a\x19\x3f\x04\x7f\x14\xfc\x66\x40\x52\x50\x74\x8e\xa7\x14\x87\xa6\xe7\xdb\xcb\x26\x2e\x25\x48\xe2\x02\x79\x6b\xf0\x9b\xe0\x61\x6f\x95\x0b\x17\x08\x4c\x94\x27\x35\x26\x7c\x72\xed\x41\x83\xe8\x85\xb2\x08\x99\x63\xe4\x10\x06\x1e\x6d\xa0\xa0\xe4\x45\x99\x2d\x44\x89\x45\xe7\x03\x85\x06\x60\xf1\xe2\xd4\xdf\x9a\xf3\xfd\x96\xdd\xee\x19\x04\x34\x37\x14\xd4\x97\x92\x96\x3a\x37\x6a\x3d\xf3\x8c\x63\xf5\xb5\xbe\xfc\x05\xc1\x27\x02\x3e\x28\xdc\xbf\x46\x34\x45\xd2\xcb\x56\x29\x1d\x42\x1a\x7e\x1b\x9b\x15\xab\xee\xf4\x48\xc9\x47\x6f\x34\xfe\x7e\x5e\x98\xac\x00\x77\x41\x6d\x60\xcf\x4a\xf2\x02\x3c\xd7\x47\xca\xbf\xe8\xe1\xce\x1e\xd5\x08\x22\xbb\x2b\x1a\x24\x6d\xb2\x65\x99\xd6\x80\x13\xbd\x47\xdf\x46\xba\xae\x58\xd8\xaf\xd9\xc5\xc5\x28\xb3\x71\xcc\x7a\x8a\x00\x39\x5e\xc7\xd7\xe0\x37\xca\x76\x4c\xb1\xd8\x14\x47\xe4\x88\x32\x8b\x38\xf2\x00\xe5\x05\x28\x52\xbb\xeb\xb9\x50\x83\xb4\x35\xd4\xec\x5d\x33\x30\x3d\x77\x04\x62\x59\x22\x66\xf3\xeb\x91\xe2\x6f\x2c\xa7\xde\xa2\x5d\xb0\x6a\x0a\xb7\x56\xe3\x7e\xda\x28\x7b\xb2\x3a\x59\x04\xca\xad\x8c\xd1\x1e\x82\x61\xbe\xa0\xd7\xab\x9b\x0f\xd0\xed\x54\xa7\xca\x3d\xc5\x95\xc0\xe7\x9e\x4f\xd0\xe1\x85\x0a\xe5\x97\x34\xf1\xf5\x0e\x55\x16\x58\x9b\x93\x6b\x4a\x38\xf6\x5f\xe0\x01\xe1\x78\xbe\x45\x88\x4a\x49\xf2\x94\x36\xd4\xff\x4d\x0d\x40\x8c\x3d\xb9\xe3\xe9\x10\x8a\xf3\x33\x07\x11\xe1\x36\x9f\xea\x28\x47\xa1\xed\x1d\x2d\xec\xa7\xa0\x7e\xad\x4e\x75\x0a\x88\x8c\x9f\xa0\x3f\x57\x4c\x61\xb3\x95\x34\x5b\xca\xa7\x14\x22\xef\x0f\x46\x9a\x84\xce\x6a\x15\x14\xcc\xfe\xb3\x3d\x6b\x7e\xea\xfe\x4b\xf5\x20\xed\x1d\x86\x8a\x42\x3c\x3b\x50\x2d\x3f\xd2\xf1\x58\xe7\x47\x9c\xb2\x63\x91\x59\x93\x97\xd9\xaa\x84\x30\x6c\x5b\x8e\xfc\xfc\x66\xcd\xcf\x4a\xb9\x02\xb0\x5d\xc2\x5a\x61\x9f\xdd\x54\xa2\x16\x97\x30\xb6\x41\xda\x85\xd2\x05\xfb\xf7\xe2\xc8\x63\xf9\x0f\xeb\x2a\xf8\x98\x92\x45\xcb\x53\x03\xeb\xf2\x43\xd3\x1c\x08\x59\xb2\x1b\xbd\x84\x0d\xe5\xce\x3b\xee\x86\xf1\xf2\xcb\xed\xa1\x59\x9d\x54\x89\xd0\x05\xa5\x78\x7d\x97\x16\x81\x3c\x45\x8f\x93\xfb\x7e\x63\xf7\x6c\x55\xf2\x13\xf4\x2e\x7f\x3c\xaa\x02\x11\xbf\x76\xb8\x96\xdc\x26\x39\xe1\x22\x79\xee\x06\x9e\xf6\xbb\xb4\xd1\xf9\x75\x93\x5e\x4a\x37\x8b\x86\x43\xb7\x43\x64\xd2\xa0\xa6\x0e\x4d\x13\x74\x6a\x19\xd6\x14\x82\xce\x68\xdb\xc3\x33\x5a\x80\xb8\xcc\xba\xa9\x04\x6f\xf4\xa7\xde\x0b\x7c\xf7\xeb\x3d\x2f\x2b\x16\x85\xfd\x68\x42\xe1\x65\x39\x8b\xc4\x52\xfd\xd7\x58\x70\x38\xbf\xb7\xab\x18\x17\xa6\x83\x01\x69\xc4\x54\x0f\xda\x0d\x50\xf6\x09\x96\xe7\x42\xb0\x05\x74\x43\xc3\xcd\x67\x1f\xa6\xd3\x0d\x1d\xdd\xaf\x62\x7b\xa1\x29\xb6\x9d\xf2\x4f\x2c\xdf\xb3\x41\x4d\x0e\x86\x6e\x10\xa0\xd0\x1b\x4a\xc9\x68\xd7\x1a\xb5\x42\xf9\x6f\xe9\xc2\xef\xbb\x8a\x01\x79\x8b\x08\xe7\x82\xa4\xa3\xb4\x8c\xed\xbe\x9a\xee\x6f\x1c\x2d\x09\xbc\x53\xbe\x86\x87\x2a\x5d\x50\x45\x68\x91\xa6\xbb\x15\x9a\xe5\xd3\x91\x23\xc2\xfd\xb3\x3d\xb4\xeb\xf1\xe4\xef\x50\xc0\x72\x92\x11\xfb\xa7\x79\xb7\x6e\x47\x9b\x0a\x3b\xfc\x26\xee\x03\x12\x53\x9e\x81\xe1\x84\xfd\x50\x3d\xb0\x89\x35\xad\xd6\xac\x1e\x34\x69\x39\xf3\xfc\xdc\x5d\xb4\xc3\x54\x8d\xb7\x4a\xe6\xe6\xe0\xa7\x9d\x66\x3c\xb0\x73\xe8\x74\x67\xc9\x53\x63\xb4\x3d\xb0\x67\xc0\x85\x1e\xdf\x2f\xce\x92\x35\xf0\xfa\xcd\x26\xc8\x4a\xdf\x66\x51\x61\xd8\x29\x5c\x65\x4a\xf3\x2e\x53\xf2\x64\xff\x6e\x1a\x25\xbd\x87\xbc\xce\xd9\x4d\x35\x0f\x38\x82\xac\x4c\xa6\x8d\xb4\x0c\x19\x47\x18\xa8\x31\x0b\x97\x29\x92\xf9\xfa\x26\xca\xd4\x9a\x12\x2a\x7a\x93\xd2\x72\x81\x21\x36\x8c\xd3\x42\x9b\x14\x36\x23\x73\x69\x44\xfd\x8f\x14\x40\xe2\x3d\xe0\x68\x5c\x1a\x53\x2d\x32\x1c\x58\x27\x47\x2a\xb5\xdb\xd6\x69\x29\x15\x88\x86\xc7\x62\x93\x22\x2a\x62\xd9\xdf\xb8\xe4\xd3\xda\xd5\xff\xb4\x2b\x05\xc2\xd4\x84\x7d\xc7\xf9\x73\xbd\x7d\xe7\x23\x00\x6b\x00\x21\xf4\x34\xe0\x2e\x6c\x9e\x57\x1f\xc7\x31\x0b\x4b\xe0\x5b\x4a\x3f\xf1\x5b\x4a\x4d\x74\x68\xc3\xd0\x74\xa3\x38\x4e\x6d\x8e\x0f\xc4\x5a\x3d\xa2\x66\xbc\x48\xed\x85\x75\xbc\x35\x98\xee\x9b\x6b\x2f\x94\x19\xda\xda\xd8\x31\x6f\x8c\x7c\x74\xbf\x8a\xbb\x84\xef\xc8\x9a\xc4\x82\x66\xf1\xb4\xb0\xa1\x35\xa1\xa5\x29\x0c\x2b\x14\xd0\x74\x0f\x47\x0c\x16\x06\x1e\xec\x45\x8d\x11\xfb\x00\xb7\x4f\x66\xcf\x0a\xd0\x9a\xa5\x0b\xb1\x1d\xe4\xbb\xfd\xcc\xe1\xbd\x40\xb5\x18\x8f\x69\xb5\x96\x4f\xb1\xbc\x70\x6c\x40\xdb\xd0\xb9\x98\x1d\x12\x7e\x0f\x10\x09\xbc\x08\xd4\x88\x6e\x07\xc2\x29\xb6\x23\x24\xef\x05\xb3\xe6\xd9\xcb\xac\x17\x9d\x96\xc5\x0e\x65\x03\x05\x42\xa0\x1c\x3e\x38\x99\x85\xb2\xe8\x81\x09\x0c\xa8\x55\x36\xa0\x22\x48\x79\x6c\x2b\xf2\xb1\xca\x6f\xe7\xe6\xfe\x7f\x3e\x88\xfe\x39\x65\x35\x22\x91\xdc\xfa\x92\x48\xae\xac\x07\x4a\x2b\x10\x39\x2f\x9e\xf9\x89\x60\xe2\xc0\x6f\x7f\x49\x98\x8c\x5a\x6f\x11\xfa\xa5\xa2\xd6\x8c\x6d\x27\x02\xa2\x4a\x39\xef\x9e\xee\x1b\xfd\x02\xa7\x0b\x32\xa1\x8b\x2c\x46\x21\xfa\x7b\xd4\xaf\x47\xdc\xff\x0b\xec\x30\x31\x3e\x51\x26\x2e\x7f\x49\xf1\xdd\x69\xe7\x3b\x03\x03\x48\x5e\x38\x81\xfd\xea\xa4\xc0\x3d\x79\x93\xd4\x72\x70\x9e\x9d\xd5\xde\xfe\xd7\xf1\x90\xb9\x3b\x4c\xfb\x07\x47\xd3\x9b\xb5\x9a\x23\xd0\x08\xe8\x0d\x7a\xe6\x48\x4b\x76\x10\xeb\x11\xd3\xe2\x3f\xd4\x52\xab\x2e\x19\x1b\x44\xdd\x15\x6b\x97\x5a\xbe\x33\x0f\x5b\x61\xd9\xbe\x52\x34\x47\x71\x4c\xe4\x43\xfc\x2d\x40\xbd\xd8\xc9\x92\x2e\x0b\x95\xf1\x39\x65\x19\x91\x14\xf6\xd5\x62\x42\xd9\x12\x00\xf6\x83\x2c\xf8\x9e\xfa\x2e\x17\xd4\x4c\xe2\x3f\x78\xe9\xef\x83\x66\x84\x40\xff\x4b\x1d\x35\xbb\xb8\xa8\x9a\xd9\xb7\x69\x8d\xe0\x0b\xef\x5e\x7b\x42\xd9\xe6\x0d\x16\x4c\xd6\xad\xea\x8e\xea\x17\x9d\x83\xbe\xf3\x10\x3c\x33\x16\x49\xf7\xee\x6d\xe7\x7d\x33\x64\x2f\x61\x25\x07\xf8\x12\xdf\x2c\xd6\x0e\x13\xdb\x92\x2d\x40\xe3\xdf\x68\xef\x9f\x9f\x54\xe2\x81\xef\xe3\x91\x21\xa4\x9e\x50\x10\x6e\x68\x40\xf1\x0f\x05\x4f\x2a\x1f\xff\xc2\xf6\x84\xc5\xe2\xc0\x07\xac\x03\x2f\xb8\xcc\xea\xcf\xa0\x3b\xb9\xa1\x00\x53\xa1\xc9\xd2\x78\xc2\xf7\x8a\x8f\x29\xed\x09\x1e\x75\x61\xe9\x9f\x1e\x1b\x16\xce\xce\x8a\x25\x8b\x9a\x3f\x3c\x46\x5a\xb3\x98\x5a\x3d\xd5\xf1\x63\xe3\x6b\x6a\x58\xb3\x50\x66\x0b\x26\x59\xe2\xee\x8d\x68\x25\xd0\x1d\xc2\x1b\xa6\x76\x63\x54\x71\x7b\x2c\xec\xce\x1c\xa4\xc6\xaf\xe6\x85\x62\x61\xf0\x6b\x35\x79\x0a\xd3\xb8\xbb\x62\xe3\xb8\x55\x97\x97\x56\xac\xac\x63\x0a\x21\xb4\x62\x93\x82\x22\x27\xf2\x85\xeb\xe8\x20\xa3\x42\x7e\x13\xa4\x32\x11\x42\xf0\xb9\xfa\x45\x6d\xca\x44\x97\x81\x74\xed\x4e\xa0\x58\x52\xd7\x94\xa1\xce\x9f\xd2\xc2\x73\x52\x49\x73\x73\x07\x36\xc7\x25\xad\x24\x1b\x19\x2e\x46\xaf\x89\x59\x12\x62\xff\x05\x45\xe8\xf9\x7d\xb4\xb9\x2e\x8e\x75\x80\xab\x4a\x38\xa6\xf1\x8f\x9b\x43\x5f\x54\x73\xe8\x8b\x8a\xc0\x92\x97\xd9\x10\xf3\x83\x29\xd5\x2f\x3c\xcb\x71\x99\x3d\xcf\x28\xec\xa0\x23\x7c\x24\xf0\x0c\xc1\x77\x29\x20\xf0\xbf\x6b\x47\xbc\x34\x1f\xd8\x22\x0a\xf3\x89\x1a\x63\x44\x59\x4a\xdf\x52\x08\xd9\xed\x9d\x86\x93\x3c\x36\x49\x37\x8f\xa3\x2e\x08\xcb\x28\x56\xc1\x86\xc6\x57\x47\xd3\x0c\xa1\xf3\x4f\x1a\x86\x0f\xcf\xb7\xbb\x76\x40\x48\xd1\x43\x22\x90\x88\x4c\x82\x5f\xbb\xa9\x54\x66\x63\xbb\x6c\x92\x62\x52\x39\xce\xfd\x59\xf5\xc7\x37\x77\xd1\xfa\xe5\x1a\x61\xcd\xd3\xc3\x4e\xa9\x24\x22\x4c\x93\x3c\x8d\xa3\xae\x29\x6c\x97\x01\xc5\x58\xb6\x97\x95\x11\xd6\x49\xe5\xe9\xcb\x44\x07\xfe\xa1\xc0\xdf\xb3\x15\x6b\x96\x6c\x22\x9c\x20\x36\xa4\x55\xce\x77\xc7\x94\xf8\x46\x4a\x32\xfe\x65\x42\x5e\xf9\x28\xb5\xd0\x3e\xc0\x01\xca\xaf\x55\x43\xfd\xa0\x65\xb9\x75\x84\x86\xeb\x94\x18\x0a\xfd\xc9\x77\x19\x4e\xa8\x67\x98\xa7\x65\xd1\x5f\xb1\x79\xc1\xfb\x14\x4f\xfc\x94\x02\xb1\xbe\x3d\xd2\x55\x98\xca\x69\x06\x69\xd7\xc6\x0f\xd1\x7f\x8a\x19\x01\xed\x05\xc0\x71\x6e\xe2\xdc\x44\xee\xfb\x61\xe0\x99\xe4\xd7\x34\x16\xec\x62\xe0\xc5\xa5\x3e\x54\xcc\xc9\x6b\x68\x5b\xf1\x9f\x52\xf8\xf4\xf3\x2a\xc2\xe4\x85\x25\xa4\x87\xe2\xf5\xb3\xee\xae\xf8\x97\x36\xa0\xd4\xfb\xe9\xc0\x92\x7b\xa6\x03\xba\x38\xff\x8d\x53\x81\x2f\xe3\x50\xf7\x4b\xbe\xf2\x64\x03\xcc\x21\xdf\xd5\x72\xea\xcb\x27\x28\x52\xf0\x71\xaf\x82\xd4\x5d\xad\xdb\x7a\x15\xb7\x07\x07\xd6\x76\xc0\x70\xd0\x31\xdf\xac\x19\x9d\x56\x9b\x4d\xd0\x7e\xbe\xaf\x10\xc6\xd6\x64\xf1\xea\x54\x95\xe6\x38\xc5\xee\xea\x4f\x88\x08\x77\x1d\xd5\x30\x27\x3e\x5b\xf7\x6b\x1e\x8c\xbe\x08\xec\x47\xf9\x13\x9e\xad\x7d\x0f\x17\x8a\xef\xfb\x29\xda\xb8\xc2\x33\xa4\xfc\x03\xc7\x1d\x27\x96\x58\xaa\xef\xd2\x92\x42\x07\xfd\x1d\x0e\x24\x62\xf5\xad\x24\xbb\xea\x35\xac\xbf\x62\x7c\x51\xf6\x0f\x1d\x79\x36\x44\x1f\xeb\x43\x0e\x31\x5a\xf6\x78\xc3\x7d\x5f\x64\xca\xe7\x94\x8b\xf3\x67\x3a\x14\xc2\xc1\x4f\x39\x8d\x23\x19\x41\x78\x7c\x60\xf9\x6c\xdb\x14\x85\x1d\x0c\x65\x46\xa5\xf5\xbf\xf9\xb5\xe2\x12\x5b\x93\x17\x04\xdd\x90\xf9\x97\x1f\xf6\x73\x83\x8d\x47\x92\xf4\x8d\x25\x70\x78\xe9\x8f\x53\x81\x92\xf2\xda\xd1\x51\x7c\xc6\xa5\xb2\xa5\x7d\xd9\x7e\x54\x83\xb5\x29\xb7\xd6\xa4\xcc\x72\xf1\xac\x14\x62\x98\x27\xca\x9d\xae\xc3\x60\x25\xda\x19\x48\x5a\x02\x0e\x22\x5a\x35\xf4\x93\xa2\x68\xf3\xd9\x1a\x45\x37\x2f\x6c\x66\xbb\x53\xbe\x36\x80\xf1\x39\x9a\x39\x77\xd0\x0f\xe3\xff\xc0\xb7\x76\x07\xa4\x73\x48\x3b\xfd\xc0\xa1\xf2\x2b\x76\xc5\xc6\x55\xbd\x5e\x2d\x2a\xb7\xc8\xe7\xe6\x36\x99\x01\x21\xea\x9c\x4d\x43\x86\xa1\x2d\x7b\x36\x2d\x5a\x7a\x0e\xc2\x88\x20\x31\xbc\xdd\x9a\xb0\xbc\x48\xc0\xfc\x4c\xf0\x0d\x82\x07\x52\xd8\xa0\xb1\x4f\xda\xbb\xb7\x5d\x26\xe8\x09\xb5\x94\x4f\xf7\x79\x85\x2e\x3c\xef\xee\xed\xa2\xcd\xb2\xf2\xb5\xd7\x22\xe5\x95\xf1\xa6\xf6\xca\x78\x73\xec\x94\xc7\xb4\x64\x30\xb0\x49\x61\x98\xee\x82\x7a\x64\x83\xae\x8a\x5f\x8f\x31\xdc\x0e\xbe\xd0\x2e\x31\x80\x72\x2d\xee\xfd\xd3\x1c\x6a\xb7\x51\x9f\x06\x34\x94\xcb\x2e\x47\xa7\x33\x2a\x5e\x9d\xd4\x3a\xb7\xf4\x4b\x28\x65\x70\xd2\xc9\xd0\xa9\xe5\x34\xee\x6e\x8c\x76\xbb\x30\xf3\x0f\x77\x79\xf1\xfb\x4f\x6a\x08\x22\x4a\x80\x30\x4a\xbd\xcd\x75\x84\xdb\xc8\xce\xd7\xe5\x26\xd5\xb5\x62\xc5\x42\xb9\x14\xaa\x2d\xe0\x65\x45\x05\xa0\xc1\x42\x31\x8c\xd3\xdc\x92\xdd\x39\xea\xea\xdd\x1d\x8f\x01\xbb\xac\x9a\x9d\x57\x11\xa9\xb0\xa3\xd6\x9b\xa0\x89\x0b\x51\x17\x20\x06\x0f\x2d\x58\xd7\xd0\x82\x75\x0f\xf0\x00\xa4\x12\x47\x2b\x0e\xb8\x4f\x55\xd7\xea\xd3\x26\xdc\xd7\xa2\x89\xb2\x44\xcc\x35\xf0\x30\x4e\x6b\xc7\xcf\xd3\xca\x04\x47\xe4\x8d\x27\x3d\xc3\x09\xcf\x03\x89\xfe\xd7\x95\xb3\xc6\xd7\x11\xcc\xf9\x87\x02\xef\xbe\xa5\x52\x0f\x48\x47\x0a\xc9\xde\x0b\xc2\x9e\x0d\x3c\x8f\x3e\xb4\x49\x41\xc7\x9b\x33\x42\x75\x10\x26\x3c\x7e\x3c\x72\x76\x77\x41\x62\x75\x43\x8d\xab\x4d\x66\x16\xaa\xc0\xa1\x71\x97\xdc\x93\xe2\x37\x4a\xd7\x36\x2e\x96\x91\xb3\x62\x21\xfe\x11\x5d\x13\x9f\xd3\x81\x6f\x97\x9c\x73\x53\x82\x9e\x4d\xaa\x84\x51\x38\x00\xb2\xb5\xd4\x36\x53\x25\xde\xbf\x5f\x0e\xa9\x67\xe5\x30\xcc\xb3\xb3\x72\x2a\xd4\xdb\x7d\xfb\xa7\x5d\xb1\x48\x57\xe3\xea\x2b\xaf\x41\xfe\xb3\xb1\x6a\x6e\x7e\xff\x7c\x3b\xec\xb3\x85\xd7\x0c\x3f\xbc\xbb\x78\x0a\xfc\x46\x9d\x03\x61\xba\x92\xd3\xbc\x15\xb7\x95\xa7\xb4\x48\x32\x4f\x8d\x34\x68\x8b\x27\xe6\x22\x4c\xa4\xf5\x93\x13\x33\xd8\xa1\x1a\xd2\x9c\x23\x0a\x98\x0a\x7f\x04\x4d\x39\x1e\x19\x38\x03\x39\x67\xd9\xc9\xf5\x26\x0e\x9d\xa9\x8e\x6f\xa4\xa6\x59\xb7\x0a\xe1\x9c\x9c\x02\x01\x70\x6a\xec\x79\x48\x0e\x45\x1f\xcc\x3f\xa4\x18\x30\x2b\x69\x96\x43\x31\x5b\xac\x97\x15\x0e\x13\x8d\x0b\x37\x5c\xaa\x82\xb9\x50\xad\x69\xff\xb0\xaf\x1b\xae\x1c\xfd\x4b\xa8\x98\xe1\x24\xbe\xa7\x8f\x65\xde\x8f\x22\xe4\xe7\xbf\xc6\x30\x36\xab\x36\x63\x13\x1c\x67\x44\x7c\x68\xda\x49\x52\x56\x39\x97\x8c\xb9\x7d\x13\x16\xbd\x51\x34\xff\xae\x2b\x1b\x99\x30\x4e\xcb\xa2\x46\xbf\x45\x6b\x48\x73\x71\xb1\x46\xaf\xd6\xba\xb3\xde\xe7\xe3\x94\x92\xc2\xb2\xdd\x42\xf3\x9a\x95\xe4\x05\x21\x64\x37\xdf\x50\x30\x64\xa7\x5c\xdd\x72\xe2\x80\x70\x54\xe6\xd7\xaa\x07\x1e\x96\x71\x51\x66\x76\x52\x67\x50\xb7\xbd\xde\xce\xff\x01\x5c\xaa\xa0\xe7\x14\x0d\xe9\x5a\xe3\x91\xc9\xf6\xf5\x13\x6a\x88\xb4\xae\x0f\xed\x53\x08\xa0\x38\x75\x6e\x05\xda\x30\x65\x31\x0a\xa3\x62\x52\x51\xb6\x3e\x18\x29\xcf\xcf\x6f\x6a\xcf\xcf\x6f\xa2\x13\x26\x0a\x54\xe3\x59\x56\xb7\x4c\xbb\x56\xc6\x4a\xb8\xc7\xc7\x55\x4c\x38\xae\x36\x57\x46\x05\xdc\xec\xac\xb3\x9a\x54\x0d\x89\x73\x5a\xdc\x8a\xda\x1f\xc2\x46\xc1\x4e\xb9\xae\xec\x96\xde\x0a\x14\xb3\xeb\xae\x13\x17\x59\x34\x49\x62\xf1\x01\x4e\x8d\xba\xfa\x39\x19\xe6\x7a\x99\xd4\xdc\x0c\xec\xc3\x34\x10\x45\x9b\x84\xf5\xa0\x90\x08\x6f\x06\x4a\xc9\x11\xf2\xfd\xc8\x7c\x6e\x6b\xea\xce\xbb\xe8\xea\x08\x39\xcf\x1f\xb2\xc8\x0a\x51\x16\xff\x98\x0a\x33\xfe\x0c\x65\x85\xb2\xa3\xa3\x86\x4a\x6f\x36\x51\xb6\x6c\x0e\x19\x0f\x1e\xed\x35\x29\x89\xfa\x00\xfa\x45\xb9\x55\x48\xb2\xef\x2b\x09\x57\xee\x33\x0b\x97\x7f\xeb\x1c\x72\x76\xb6\x3d\x4c\x87\x13\x5a\x6f\x7a\xa4\xc8\x9c\xaa\x27\xe7\x1b\x84\x2b\x51\xbc\x98\x41\xdb\x48\x16\xe8\x24\xbe\x0f\x23\xf6\xe9\x66\xe0\x08\xde\xbe\xa6\xba\xd5\xa7\x54\x95\x93\x2e\xdb\x2c\x36\x43\x0c\xfe\x44\xf2\x55\x77\x90\x4e\x36\x9d\xf8\x45\x9f\x0c\x33\x26\xd4\xb4\xe1\x36\x45\x0d\xd4\x33\x3f\xa8\x4b\x67\x7a\xcd\x96\xc5\x28\x21\x19\xda\xea\x21\x63\x12\xf0\x96\xe2\xcf\xbf\xa5\xe0\xc4\x0b\xd5\x1a\xcd\x1f\xae\xaa\x14\x1e\xe6\xa9\x74\x88\xed\x5f\x91\x5a\xa3\x0b\x80\x66\x09\x57\x55\x28\x84\x7e\x14\xa8\x4e\xe3\x86\x12\x60\xfe\xca\xdf\x56\x93\x9d\x9d\x84\x52\x13\x47\x11\xba\x6e\xfe\x75\x25\x77\xad\x79\x68\x7d\x13\x65\x48\x60\x84\x35\xdd\x52\x74\x6a\xff\x5d\xe3\xa8\x28\x62\xfb\x68\x15\xd9\x00\xc3\x98\xe8\x78\x65\xbd\xa3\x81\x4e\x07\x02\xe5\xe4\xbe\x49\x1d\x67\x3c\xf7\xdd\x74\x9d\x0e\xe4\xa5\xbc\xa3\xab\x7b\x81\xfd\x0a\x45\x45\x1e\x6c\x8c\x7c\x53\xf3\x7e\xcd\xa6\x29\x50\x95\x30\xdb\xfa\xe2\xf8\x38\xcc\x0f\x5b\x49\x5b\x3b\x21\xdf\xa8\xb0\x93\xaa\x00\x3c\x4e\xcd\x36\xc6\x50\xf0\xe9\xc9\xff\x43\xb7\x4a\xd0\x15\x4f\x2a\x6a\x48\x1c\x47\x49\x0f\xd9\xdb\xcc\x41\xd1\x97\xa6\x6f\x22\x5a\xd3\x0f\xa2\x35\x0f\xb3\x34\x1f\xda\x90\x70\xd3\xbe\xec\x3d\xef\xf5\x7f\xff\xa3\xf3\xca\xe2\xc6\x74\xfb\x36\xa7\x69\x77\xcb\x69\xb0\xdc\x57\xf2\xf3\xf7\x11\xfd\x78\x9f\x3e\x93\xff\x6d\x0a\x2d\x48\x6e\xee\xd1\x1d\xc7\x32\xd9\x03\x21\x45\x19\x2e\x52\x25\x8e\xea\x93\xc5\x4e\x64\x74\x5e\x7d\x61\x3c\xa4\x5d\x18\xb5\xb2\x4f\x57\xf5\xdd\xee\xfd\xce\x9e\x35\x95\x89\xdf\xa6\x41\x03\xee\xfd\x66\xa0\x24\x98\xb7\x77\x70\x13\x41\xed\xdb\xd6\xa9\xc9\x7c\xb6\x66\x67\xef\xfd\xce\x93\x6b\x9e\x6d\xf1\x08\xa6\xc0\x0e\x16\xed\xfa\x6f\x3f\x83\xa3\x00\x2e\xe0\x38\x55\xff\xc2\x37\xa6\x75\x85\xf4\xbe\xd5\xa1\x83\xd8\x69\x12\xcf\xef\x9f\xe7\x51\x14\x83\x66\x78\x02\x4a\x20\x46\x07\xba\x73\xe8\x96\xef\x11\xac\x4a\xf0\xbb\xad\x17\xe5\x97\x5b\x9d\x2d\x3a\x7c\xcf\x55\x89\x5e\x4b\xe3\xb1\x6a\x18\xac\x06\xa5\x24\x11\x30\x62\xba\xa9\xcc\x2b\xd4\xec\x62\xac\x52\x7b\xb6\xbd\x18\xbd\xaa\x1d\x7e\x82\x1a\x37\xd9\x87\x91\x7e\xd9\xb3\x31\x6b\x56\x61\x56\xf1\x07\x98\x04\xf3\x9b\x26\xd7\x58\x09\xf9\x2d\x4f\x1a\xe4\xd4\x56\x46\x04\x8f\x38\xbc\x4c\x66\xba\xd0\x33\x44\xc8\x7d\x4f\x6b\xaa\xbf\xa7\x8e\xfa\x22\x4b\x8b\x82\xf4\x4d\xe7\xbd\x39\xe7\x3e\x6f\xce\xe9\x0c\x54\x16\x92\x9a\x81\xc9\x39\x6d\x60\x72\x4e\x0d\xbb\x09\xf5\x8b\xf3\x02\x50\xec\x5f\xa8\xdc\xea\xa2\x22\xaf\x1f\x1b\x6b\x13\x54\xb7\x3c\x8d\x57\xc3\x34\x49\x07\x51\x28\x18\x1e\x54\x60\xa7\x75\xef\xf1\xf4\x18\xdc\x1a\x0e\xb2\x69\x92\x97\xb1\xd7\x90\xc5\xce\xd9\x49\x49\x13\xf2\xe4\xed\x34\xad\x90\x9c\xd8\xe7\x73\xbd\x74\xa8\x05\x81\xd7\x3d\x0e\xe2\xff\xef\x9d\xa1\xb2\x34\x5c\x02\xfd\x13\x5f\x80\x69\x6e\x32\x94\x6d\x39\xcf\xfe\x56\xc7\x97\x5a\xeb\x2a\xbb\x59\x28\xf3\xd5\x29\x25\x33\x8b\x05\xc8\xc0\xa1\x91\x6f\xce\x41\xf5\x05\xcf\xf4\xc8\x48\x71\x5f\x8f\xa9\x49\x47\x5e\x86\xa1\xb5\x5d\x02\x59\x79\x94\x84\xc7\x2a\x9e\xa0\x3f\x82\xe8\xc9\x35\x1e\xe6\xac\x10\xc7\xe5\xff\x18\x17\x80\x7a\xe1\x40\x3b\x4a\x92\x74\xd9\xb8\x00\x87\xaa\xeb\x13\x65\xfb\xfa\x49\x53\x3b\x35\x4c\x07\x58\x71\xce\x89\xdb\xeb\x3d\x35\x5a\xba\xa4\x8b\x55\x96\xc9\x96\xbf\x62\x09\xee\x01\x8f\x5e\xce\xd6\x64\x4a\x4e\xd8\x29\x12\x6a\xcc\xc7\x38\xfc\x7c\xbe\x1d\x47\xb9\x13\x9c\x16\x1b\x32\x05\x32\xda\x50\x27\x67\x95\xed\xed\xae\x6e\x17\x3a\xbe\x2c\xce\x8d\x88\xb4\xa9\xe6\x96\x0c\x7a\x47\x2f\xff\x63\x9d\x4b\x5c\x51\x5e\xc5\xd7\x47\xaa\x41\x0f\xec\x2b\xca\xa3\x4b\x81\x42\x24\x9d\xd4\xbc\xb2\x6d\x9d\x3d\x8e\xa4\x66\x06\x69\xf5\x7d\x27\x54\xbb\xf0\xda\xc8\x73\xe3\x01\xd6\xe7\xe6\xfc\xe8\x61\xe5\x31\xf4\xb4\x5f\x5a\x57\xb5\x67\xe5\x11\x9c\x16\x78\x73\x8f\x8f\x55\xe7\x41\x59\xc5\x5e\x84\x85\x8b\x88\xca\x68\x1c\x43\x85\x1f\x57\xc7\xc0\x72\x2c\xee\x35\x22\x3d\x6f\xe2\xd0\xc1\x25\x9d\xc0\xa8\x4c\xd1\xcc\x67\xdc\x94\x9a\x22\xb8\x60\x82\xaa\x20\x83\x7c\xe8\x04\x45\x70\x88\x67\x6d\xa8\x2e\xe9\x7d\xdc\x54\x97\x69\xba\x2e\xc7\x51\xec\x03\x84\x11\x8c\x72\xf1\x4c\x76\xe2\x60\xc4\x93\xfb\xd3\xc0\xd3\x94\xef\xab\x74\x3e\x33\x99\x85\xec\x21\x3a\xc3\xdb\x69\x87\x22\x35\x3a\xa2\xd2\x24\xb6\x9e\x40\x8f\xfa\x16\xa7\x12\x72\x01\x4d\xae\x55\x5d\x6b\x62\xe9\x61\x34\xb9\xa9\xf9\x71\x41\x37\xca\xb3\x72\x08\x43\x32\xaf\xf7\x0b\x2f\x58\x7e\xdd\x34\x71\x25\x61\x5a\x5e\xfa\x8a\xb1\x32\xef\x4e\xbc\x06\x9e\xba\x59\x31\x55\x9c\x99\x77\xcd\x3b\x2f\x5e\xbd\x93\xba\x85\xae\x77\x72\x68\x9a\x1f\xf1\x91\x91\x12\x30\xb8\xa0\x04\x13\xbb\x51\x1e\xa6\x45\xdf\x7e\xa5\xd4\xd9\xce\x59\x64\x0b\xfc\xa6\x91\x10\x57\xc6\x52\x9a\x68\x57\x0e\x31\xe7\xf4\x2c\x2c\x28\x52\x0d\x6c\x52\xec\xd6\xcd\x13\xa0\x8c\xc4\xd3\xa0\xfa\x55\x7c\xe1\x1d\x48\x36\xf0\x84\x4e\x8c\xb4\x9c\x3c\xdd\x78\xe4\xe4\x57\x34\x97\xff\xd1\x35\x65\x93\xcd\x4c\x1a\x7c\xc8\x95\x40\x69\x04\xff\x85\xd3\x3c\x8f\x9f\x1b\x02\x64\x8e\xfb\xc4\xd3\x69\x7e\xb3\xa6\x7c\xce\x2c\xba\xcb\x7e\x06\xfc\x6f\x02\xef\x4a\xf0\x6f\xc6\x85\x51\x5e\x38\xd0\x5e\x34\x51\x2c\x51\x49\x04\x74\x94\xcd\xf0\x79\x05\x46\x7f\x25\x8d\x92\x22\x46\x97\x18\xc7\xd7\x11\x2d\x2d\x77\x24\xf0\x3a\x5d\xe0\x50\x4d\xd1\xf7\xc4\xa9\x7b\x1e\xad\x7a\x24\x7a\xaf\x2b\x49\x4b\xc4\x12\x31\xcd\xaa\x56\x03\xff\xcc\xd8\x53\x9c\xdf\x3f\xdf\xce\xad\x65\x27\x10\xec\x55\x4c\x03\xd4\x78\x65\x86\x7b\x33\xe3\x04\xc3\x43\xd3\xcf\x93\x91\x89\x3b\x47\xf8\x07\x03\xdf\x49\x3a\xef\x6c\xee\xc9\x0e\xb3\x17\x91\xcb\x3f\x0e\x6f\x29\x2a\x3d\x85\x18\x9d\x7b\x61\x93\xca\x6f\x8a\x0f\xd4\xa2\xc9\xec\x44\x95\x2f\xcb\x91\x53\xfd\x22\x6a\xcc\x5b\xf4\x54\xc4\x4c\xdd\xe7\x3e\x79\x34\x88\x62\x93\x4d\x61\xdd\x39\x53\x3d\x1f\x39\xaf\xd0\xb5\x8a\x16\xa7\x27\x6d\xbc\x49\xf1\x47\x86\xcc\x8f\xa9\x05\x31\x30\x49\x97\xfc\xe1\x51\xf6\x7f\x06\xd5\xad\x93\xc6\xf6\x54\xa3\x4f\xb0\x8b\x01\x29\xc0\xae\x94\x38\x53\x5d\x2c\x4e\x95\xaf\x2a\x54\xfa\x67\x10\xe7\x50\x4f\x3d\xbc\xa6\x44\xbb\xee\x07\xb5\x1c\xb0\xda\xf8\xe8\x39\xc2\x2a\x0c\x61\x7b\xf7\x5a\x43\xf8\xfa\x7f\x1f\x0e\x35\x20\x1f\x17\x4c\x58\xd8\x2c\x32\x13\x8a\x17\x82\x19\xa9\x58\xb2\xfa\x3b\xff\x81\x2a\xdb\x32\x1b\x71\xe8\xc3\xd5\x3d\x44\x5f\x9a\x5f\x8f\x51\x37\xaa\x04\xa1\x1b\xe5\x43\x9b\xe5\xb2\x5d\x5c\x85\x50\xdd\x52\x71\x2d\x51\x02\xa2\xd4\x74\xd0\x7e\x1c\x47\xb1\xb3\xa4\xcf\xd6\x00\x3a\x58\xb4\x5d\x85\xfd\x6c\x3a\x0f\x24\xa3\x5e\x8e\x92\x2d\x06\x25\x2c\xfc\xce\x6f\x1c\x03\x74\x31\x33\x03\xe8\xd7\xba\x73\xbe\xba\x08\x3c\x68\xa0\x53\xd1\x78\xb9\xdd\x40\xae\x9d\xaf\xb2\x28\xf7\x39\xf8\x03\x37\x95\x11\xdc\xcd\x60\xab\x30\xce\xcb\x2f\xb7\xed\x60\xc1\x64\x99\xc9\x73\x27\x21\xe9\x92\x6d\x9f\x78\x3b\xef\x12\xb6\xd6\x1f\xa4\x99\xdd\xd1\xda\x37\xb7\x79\x5c\x7f\x8d\x1b\x6a\x94\x7a\x18\x47\x3c\xf8\x47\x87\x31\xc1\x11\x4c\x5b\x75\xb7\x90\x34\x7c\xa6\xb3\xf5\xc9\xcd\x1c\xa4\x11\xda\xb2\xf5\x34\x43\x2c\x4d\xc8\xc0\xf1\xeb\x9a\x26\xaf\x49\xc2\x7e\x94\x93\x88\x84\xab\xad\x90\x80\xc8\x8c\x6b\x2c\x36\xbd\x70\xa0\xbd\x60\x0b\x43\xc3\x50\xb1\xdd\x68\x89\x4b\xcf\x7f\xce\x09\xaf\x0c\xff\x1b\x64\x0a\xa3\x2a\x30\x51\x8e\xcb\xa7\x14\x2b\x01\xd3\x35\x8a\x2a\x70\x03\xc5\x35\xb6\xa6\xeb\xbe\x17\x4b\xca\x28\x90\x2a\x19\x0a\x8b\x3a\x72\x6c\xc3\x22\x4b\x07\xa6\x97\xd8\x22\x9f\xf0\x29\xdc\x91\x91\x9e\xf0\x28\x49\x85\x2b\xce\x39\x24\x4c\x93\x6e\x19\x52\xe4\x3c\xe4\x8d\x27\x7c\x34\x38\xaf\x3a\xe5\x19\xe5\x20\x03\xba\x77\x88\x55\xc7\x55\xdc\x3a\xae\x03\x9e\x89\x97\x05\xb3\x8c\x08\xc7\x32\x7b\xfc\x46\x7b\xd6\xa4\x79\x11\xc5\x76\xa7\x82\xc2\x8f\x54\x9f\x77\x3d\x50\xbd\xe1\x75\x0a\x59\x98\x28\x9c\x54\x8a\x36\xbb\x3a\xaa\x0b\xcb\xea\xe6\xd2\xcf\xf2\x08\xe0\x38\x1d\x2c\x44\x10\xe2\x11\x85\x79\xba\x26\x7e\xe3\x6e\xc9\xa0\xcc\x81\xb6\x68\x29\xbb\xad\x33\x5a\x62\xf6\xcc\x58\x02\xb5\x8f\x14\x84\x96\x2d\x80\x88\x48\x57\xfe\x38\x50\x44\x30\xa6\x67\xcb\xba\x76\x52\x11\x2c\x3b\xe4\x3b\xab\xbb\x3b\xaa\x9b\xb9\x7b\xad\xa9\x9e\xc9\x6c\x98\x66\x5d\x74\x5a\x67\x74\xda\x3a\x57\x13\x21\x16\x59\x8d\xcf\x2a\xb9\x84\x5e\x84\xca\x5e\x1f\x7d\x88\xa3\xdc\x19\x0b\xfc\xf0\x60\x3c\x28\x57\x91\x3c\xca\xc2\xcc\x2c\x82\x53\xa9\x29\x8e\xfc\xfa\x81\xdd\xac\x30\x1d\x70\x8f\x83\xbf\x2e\x00\x60\xdf\xc6\x4d\xe2\x37\x5b\xf1\xb7\x7b\x67\xda\x87\xa6\x19\xc2\xc8\xf4\xf5\x91\x9f\x42\xe3\x6b\xb2\x74\x1e\x5d\x84\xc8\xcb\xd6\x9c\x99\x72\x1b\x96\xd5\xfe\x9b\xf0\xf0\x1a\xd0\x5a\x70\x60\x9d\x1e\x29\x96\xf4\x85\xb1\x2d\x2c\xd7\xbf\x18\x47\xd4\xef\xad\xae\x96\xed\x11\x46\xbe\x37\x8b\x78\x86\x95\x74\x5b\x49\x74\x27\x26\xef\x9a\xaf\x4c\x7a\xbf\x87\x23\xda\xef\xe1\x88\x96\x5b\xbb\x32\xf2\x2d\x8b\x2b\x6a\xd7\xb1\x85\x0e\x35\x94\x9c\xc5\x4d\x55\xcf\x8b\xc5\xcd\x1e\x55\x9a\x25\x25\x69\xc4\x38\x25\x7a\x8e\x4f\xe2\xd6\xd3\x94\x79\x55\x49\x3c\x9d\x96\xf8\x26\x67\x14\xae\xe8\x4c\xe0\x49\x2f\x99\x74\xf6\x79\xb6\x10\x78\x32\xde\x6d\x6d\x50\x3d\x2e\xf5\x3c\x73\xb0\x1d\xda\xac\x88\x16\xa3\x50\x7a\x4a\xe2\x49\xda\x52\x5a\x4f\x4d\xd7\x36\x8c\xcd\x2a\xc1\x11\xd0\x25\x3a\xa9\x27\x7d\x1f\x2a\x24\xc8\x1b\x63\xbf\xfd\xf2\xcb\xed\x3c\x8e\x06\x00\xf9\xe1\x0c\xbf\xaa\x84\xcc\x00\x9e\x41\xda\xfe\xd6\xd8\x33\x67\xae\x29\x44\xe0\xac\x1e\x6b\x1d\x53\xa9\x21\xb4\x5e\xb1\x16\xfe\x6c\xe4\x47\x9a\x24\x2f\xa2\xce\x79\x94\x9d\xe2\x81\xeb\xe1\x50\xd1\xc0\x4c\x91\xf8\xff\x39\xac\x40\x66\x68\x05\x24\xaa\x1b\xa8\xfa\xf0\x08\xd7\x87\x92\x3f\x7b\x28\x9d\x45\x0b\x0b\x75\x9b\x18\x92\x68\x15\xb2\xbb\xa3\xa7\x15\x34\xc0\x4b\xf2\xe6\xc4\x57\xc6\x96\xba\x14\xd4\x9a\x0d\xad\xbd\x7b\xb9\xb1\x7e\x5c\x7b\x09\x1c\x47\x03\x5d\xa8\x60\x7e\x87\x95\x89\x59\x36\x51\x0c\xb7\x98\xfd\xd3\x5e\x1e\x7c\x9f\xe7\x56\x7a\xf6\xa5\x7d\x75\x18\xc3\x1d\x80\xbb\x6e\x92\x2d\xd3\xf7\xe5\x37\xae\x13\x36\x88\xe2\xae\x12\x67\x84\x3d\x2d\xbf\x1e\x2b\x48\x5f\x7e\xb9\xbd\x18\x25\x5d\x5a\x60\x0e\x26\x72\x68\xda\x79\x32\x78\x85\xfd\x74\x31\x2a\xb8\xef\xc1\xf4\x8f\x91\x12\xcf\xb8\xad\xf2\xb2\xef\xa9\x4e\x6a\x98\x0e\x6c\x17\x4c\x59\xd4\xb2\x80\x3e\xa3\x46\xe1\xbe\xa7\x28\x6a\xf9\x08\x90\x97\xc3\x61\xbc\xba\x93\x6e\x31\x7e\x94\xdd\xac\xc0\x02\x78\x9d\xba\xcd\x1a\x39\x81\xde\xce\xeb\x18\xfd\xa1\x0d\x79\x11\x87\x07\xbf\xa1\x65\x27\x63\x10\x07\x36\x8d\x7a\x51\xd7\xf9\xce\x3b\xee\xad\x4b\x90\x6b\x5f\x7f\x39\xea\xa5\x3c\xfb\xc5\x30\xe6\x47\xda\xe7\xf5\x98\x8a\x65\xdc\x0d\x15\x2f\x48\x77\x44\x12\xfb\x71\x5c\x42\xc7\x81\xf3\xb5\x84\x4e\x9e\x56\x45\x57\x57\x6d\xfc\x13\x6a\xe3\x9f\x50\xed\xb1\xc5\xd8\xac\x80\x20\x27\xe6\x75\xd5\x22\x12\xef\x3a\x6f\x6d\x6e\xb6\x7e\x34\x00\xb8\xc2\x11\xf0\x8d\xd0\x22\x4d\xe3\x49\xa5\xb6\x7a\x54\x69\x13\x7f\x3b\xf0\xed\xc0\xf7\xb0\xdd\xb8\x7b\xe6\xa8\x7e\xab\xc6\x2c\x98\x89\xd6\x97\xbf\xc0\xfd\xbf\x8f\x47\xfe\x3b\x70\x42\x83\x03\xfd\x6a\xb3\x59\xdc\xaa\x35\x59\x9c\x32\xf0\x56\x94\x59\xfc\x40\xeb\x9c\x6b\xa3\xe7\x51\x5e\xc6\x82\xce\xab\xc9\xec\xf1\x1b\xb5\x83\x56\xfa\x51\x16\xaf\x44\x49\x17\x4a\x68\xce\x71\xc4\xbb\x8f\xb8\xeb\x8f\xad\xcd\x56\x09\x43\x82\xea\xe7\xb1\x8e\x52\x1d\xbf\xa0\x46\x65\xd0\x13\x45\x2c\xbd\x3a\xaa\x65\x7c\x61\xc1\xa6\x64\xf8\x13\x0c\xe4\xe0\x37\x6a\xd2\xd5\x8d\x16\x17\x6d\x66\x93\xd0\x32\x36\xdb\x39\x33\xb9\x8e\xc0\x15\xe5\xb0\xf1\x76\xf0\x84\xc2\x1b\x0d\x16\xa0\x24\xac\x39\x79\x54\x14\xa8\x8c\x70\x46\x33\xfe\x1c\xfd\x4f\xcd\x9e\x6d\x8c\x2c\x9d\xb9\x80\x0a\xad\xf4\x73\x2d\x04\x7e\x4a\xa1\x97\x4d\x36\xd8\xa9\xd4\xec\x2e\xaa\x0b\x3c\xe1\x65\xba\x5a\x90\x6d\x46\xd2\xf1\x04\xa6\x48\x1a\x1f\x87\x74\x69\x73\xa4\x4a\xe5\x09\xa7\x6e\x92\xdb\xaf\x94\x16\xad\x67\xc1\x83\xd4\xe9\x25\x6e\xaa\x9a\x32\x0e\x02\x9f\x09\xaa\x0b\x2a\xdd\x1f\x07\x5e\x0b\x7d\x0d\xd9\x31\xfa\x5b\x1b\x8a\xd7\x6e\xe2\xc8\x26\xe4\x6e\x39\x59\xed\x1a\x99\xc6\xd1\x9f\x74\x6a\x65\x0e\x90\xc3\xbd\x26\x9c\x8c\x3f\x57\x47\x4a\x37\x0d\xcb\xaa\xbe\xcb\xe9\xaf\x20\x2b\x3c\x8b\x1e\x0f\xbf\x19\xd5\xe8\x07\xca\xbe\xe5\x9a\x52\x87\x2e\x93\xdc\x16\x05\x75\xa0\xaa\x5f\x95\x8e\x62\xf5\x37\xa5\xa1\xa8\x19\xed\x8b\xb6\xbb\x43\x6b\x84\x04\x75\x2d\x38\xad\xd5\xe4\xcf\x89\x1f\x8f\x6a\xa8\x7d\x85\xe6\x7f\xc4\xc5\xa9\x38\x4e\x57\x5a\x3e\x64\xa3\xd1\xc2\xaf\xeb\x2a\x1a\xc8\x0f\x31\x82\xfe\xc7\xac\x51\x52\xfd\x30\x26\x4f\x17\x75\x03\x20\x02\xdd\x7a\x9f\xf0\x0c\xc0\x8c\xc6\x89\x71\xab\x26\xde\x2a\x53\xad\x30\x12\x1d\x6f\xe7\x2a\xe4\x4c\x2e\x6e\x6b\x21\x87\xa9\xce\xd6\xc2\x5b\x12\x50\x5b\xf4\x09\xc6\x36\xe1\xf9\x0d\xd7\x55\x9e\xff\x0b\xed\x0d\x76\x5e\x0d\x83\x96\x8d\xe8\xa3\xa1\x17\x86\x32\x9f\x5f\x3f\xa0\x35\x50\x92\x9e\x8e\x6f\xbb\x70\x1b\x96\xdf\x28\xd5\x27\x98\x2f\xb7\x9c\x46\x22\x0a\x42\x7e\xdd\x90\x57\xd5\xbc\x27\x69\x21\xf3\xf4\x2a\xf0\x3c\xfd\x6f\xad\x8f\xcd\x48\x29\x9a\xa6\xd5\x19\x27\xf0\x1e\xa6\x6d\x05\xfe\x36\x8e\x77\x87\x0f\x4d\xbf\x44\xd8\xc9\x96\x6f\x25\x9e\x53\x47\xf6\xb9\xb1\xb9\xe0\xde\x99\xf6\xc0\x16\x59\x4a\x88\x7b\x53\x1b\xc6\x8e\x34\x91\x6c\x6b\xe6\xf1\x2c\xe9\x1a\x27\x13\xbe\x25\x72\xbd\xe6\xf4\x59\xab\x4e\x9b\xb4\x25\x4c\xaf\xe7\xfa\x91\x8c\xb2\xa6\x0b\x45\xa6\xfb\x93\x5a\xc4\xd8\x0a\x9c\x99\x9b\x6b\xa7\x8b\x8b\x24\xd0\x8a\x03\x70\x82\x94\x1e\xb0\x9c\x74\x8e\xfa\x09\xae\x43\xa4\xbb\xaa\xbc\x43\xa2\x48\xb5\x8f\xd0\x89\xfb\x58\x35\x7b\x17\x52\xb2\x14\xad\xfe\x1a\x2b\xa9\x52\x52\x27\xaa\xaa\x0d\x8c\xdc\x45\x6b\xb2\x3c\x1d\xd8\x96\x92\xce\xc5\xac\x50\x44\x63\x1a\x4a\xca\xd8\x86\x45\x99\xd9\x0c\x52\xfb\x18\x9a\x5d\xa3\xeb\xe6\xd7\x35\xed\x8b\x68\x90\x3f\x44\xf7\x09\x00\xf4\x5b\x74\x6f\xf0\x65\x2f\x6a\xfb\xb2\xdb\x14\xcb\x11\x9a\x41\xe2\x42\x68\x99\x44\xfc\x66\xf5\xae\x40\x8d\xd6\xbe\x0a\x48\x80\x08\xaa\xd0\x57\xc0\xe6\xff\x54\xb5\x36\xfa\x26\xeb\x92\x06\xcd\x8b\xfb\xa7\xf9\x5e\xae\x6b\x62\x3e\x54\xef\x01\x19\xb8\xd5\xa8\xbb\x37\xcc\xec\x20\x2a\x07\xad\x2a\xd1\xd6\xa8\x40\x39\x1e\x1e\xad\x21\xfa\xf2\xc7\x94\xfb\xe5\x61\x05\x7b\x11\xec\x04\x90\x9d\x47\xd1\x37\x73\x87\x74\x75\x41\xe8\xcb\x5c\x55\x5d\xa3\xa9\xb5\xd6\xe7\x5f\xe4\x2f\xf5\x93\x91\xb7\x64\x65\x30\x8e\xdb\x23\x33\x07\x9d\x6b\x0b\xdd\x06\x74\xf1\xcf\x10\x48\x11\x57\x82\x40\x8a\x01\x01\xab\xf2\x21\xa9\x79\x83\xd6\x08\x5f\x6e\xd3\xe3\x5e\xb1\x76\xc9\x25\x45\x42\xf8\xf0\xec\xc9\xab\x2a\xe3\x1e\xa6\xb1\x49\xba\x53\xea\xa4\x62\x73\x47\xa4\x05\xe0\xbe\x09\x37\xcf\x0f\x25\xa1\x2c\x88\xb3\xe0\x48\x93\xfa\xf6\x72\x64\x57\x38\xbe\x09\xa3\x49\xb1\x9b\x34\xa1\xd0\xc4\x71\x9a\x26\xd4\x9c\x12\xac\xad\xaf\xd2\x19\x73\xa1\xde\x48\x2c\xe2\x42\xd5\xc1\x73\x5f\x54\xd6\xf0\xd5\xb5\x01\x30\x30\x6e\x51\xf1\x6c\x7b\x60\xb2\x25\x0b\x64\xc1\xdc\xdc\x81\x4d\x26\x09\x53\xe3\xf1\xe8\xe3\x6b\xae\x09\x79\xf4\xa9\x31\xf7\xba\xfd\xd3\xc4\xde\x72\xf3\x6b\xdc\x8b\x93\xea\x1e\x69\x2f\xfc\x3c\x45\x06\x2d\x4b\xf5\x84\xc6\xda\x9e\x18\x3d\x19\x6d\xad\x19\xb7\x68\xb6\x43\x6e\x4f\xec\xff\x1e\x57\x04\x29\x53\xe5\x81\x39\x4e\x73\x94\xed\xbf\x08\x94\xe9\x2b\x50\x1a\xe8\x5d\x5c\x0b\x94\xaf\x22\xef\x38\xb7\x06\x1d\x51\xe8\x9a\x3a\xcc\x96\x1c\x9b\x10\xb1\xf5\x7e\xe0\x25\xb5\xce\x2b\x29\xeb\x1f\x29\xdc\x27\x56\x24\x3e\x5d\x73\xb9\x16\xa3\xbc\x6f\x59\x08\x02\xd9\x24\xbc\x10\xf9\xf5\xda\x63\x0a\xa1\x5e\x54\x25\x3d\x7d\x7d\x3c\xe0\x8f\x75\x1a\xfc\xf1\x58\x5f\x65\x76\xb6\xdd\xb5\x0b\x72\x86\x72\x3b\x4d\x61\x71\xcf\xab\x45\x4e\xd3\xb7\x9c\xba\x1c\xd8\x73\x77\xd4\x01\x8d\x8a\x57\xc6\xb6\xe3\xcd\xc0\x76\xde\x8f\x06\x03\x2f\x0a\x2b\xe2\xc4\x2a\x97\x7a\x4b\xf1\x50\x17\xcb\x57\x22\xaa\x1a\x30\x63\x84\x20\x01\xbf\x1e\x2b\x61\x0e\x4d\xcf\x90\xb1\x79\x94\x84\xd2\xfb\x11\x55\x5d\x1f\x51\x8e\x63\xdd\xe0\x46\xbc\xd3\x44\x60\x5e\x31\x71\x6c\x8b\x96\x1f\x01\x9f\x51\x54\xb1\x33\xae\xa4\x5c\x30\xe1\x12\x79\x39\xb4\x3c\x6d\x06\x9c\x40\x7e\xad\x16\x6f\x91\x95\x96\xd2\x53\x34\x62\xb6\x91\xfd\x2e\xe2\xe0\x6d\x95\x11\xbc\xa3\xe6\x12\xff\x62\xec\xd0\xae\x8e\xab\x2a\x33\xa7\x47\xe4\x4e\x79\x05\xbf\x92\x24\xb2\x5f\x0e\x4c\x62\x26\x3c\xbf\x6c\x53\x8d\x89\xcf\x6b\x51\x9e\x1d\x9d\xa7\x55\x5b\x64\x91\x98\x94\x64\xbf\x01\x34\x8f\xf8\x9e\xd3\xad\xd4\x7e\x5e\x28\xff\x6f\x8d\x14\x4f\x7f\x43\x41\xa7\x06\x26\x8a\x6d\xc6\x65\x95\x00\x87\xe8\x8f\xb0\xc8\x51\xa0\xd4\x51\x5e\x1e\x7f\x06\x33\xed\xbc\xac\x16\x09\xd7\x97\x38\x16\x98\x09\xc5\x6f\x5c\xc9\xb8\x98\x66\x3d\x90\x15\xc5\x81\xab\xba\x40\x01\xed\xb6\x9c\x78\xde\x07\x75\xd5\x08\xcd\x39\x88\xed\xca\x44\x6b\xff\xfc\xe6\xd4\x9a\x87\x08\x02\x24\x84\x62\x79\xf7\xd8\x90\xa5\x4a\x3a\x0b\x1b\xb3\x0d\x9c\x4c\xd9\x15\xc7\x72\x43\x7b\x6d\x5a\xcb\x9c\x06\x76\x0c\xa2\x27\x8e\x9f\x63\x1d\x25\x41\x8b\xf8\x53\x05\xd8\x51\xfe\xf7\x91\x4a\x3c\x7f\x5f\xf9\xa2\xdb\x64\x39\xca\x52\xb2\x6a\x9d\x20\x48\x36\x0a\xe5\x2b\xea\xef\xc0\x9c\x4e\x9a\x60\x8f\xab\xa7\x1d\x2d\x46\x19\x62\xc4\x9c\x76\x08\x71\x90\x3c\xc5\x79\x08\xfb\x26\x4a\x76\xd0\x95\x8a\x9b\x73\xf5\x09\x0e\xc0\xbd\x4f\x59\x8a\x39\x5e\x27\x8f\x23\x31\xbd\x67\xd4\xb6\xc4\xbd\xf1\xf0\xb3\xbf\x9d\xaf\x98\x21\x6d\x25\x01\xe0\xf8\x7c\xf2\x5c\xa3\xb8\x5e\xd7\x2e\xdb\x38\x1d\x62\xa8\x80\x8c\x71\xbd\x26\xd7\x41\x0f\x07\x6b\xf8\x46\x43\xdd\x40\xde\x47\x2e\x8b\x75\x33\x66\x05\x81\xf7\x13\xf6\x1b\x5a\x79\xdf\x0c\x27\x3d\x4c\xfb\x8e\x82\xb7\x7e\x6b\xa4\xc6\xaa\x27\xc7\xe0\xe3\x7e\x16\x2e\xea\xa7\x5d\xa5\x37\xf0\x5d\x6c\x33\x21\x4e\xb6\x9c\x1d\xe8\xe9\x40\xd3\xc9\x93\x45\xb2\x08\x69\x29\x10\xc3\xb9\x91\x07\x2b\x9c\x53\xbd\xfc\xcc\x24\x3d\x09\x84\x08\xad\x77\x47\x7e\x9e\xdd\xea\xa8\xe4\xf3\xe8\x48\x0b\x3f\x95\xc3\x98\x8b\x24\xd4\xad\x20\xbd\xf3\x6b\x6d\x38\x99\x15\x8f\x79\x69\xa0\xc7\xe9\x30\x92\x8e\x28\xdd\x09\x34\x1d\xae\x50\x1a\x86\xbb\x72\x17\xbb\x98\x2d\x10\x02\x3f\xc3\x9b\xe2\xec\x10\xef\x6e\x23\x8d\x70\x6e\x12\x9f\x7f\xd1\xa3\x17\x9c\xfb\xdf\xa9\x40\x2d\xaa\x29\xa8\xb0\x60\x4d\xde\xa2\x24\x42\x69\x7c\xb3\xa8\xed\xdf\x79\x6a\x4d\xc9\xc5\xbe\xd7\x48\x96\x0f\xfb\x76\x45\x4e\x27\x74\x50\x2e\xe2\xb1\xf2\x1b\x0d\x11\x85\xa8\xcb\x67\xfc\xe9\x72\x11\x61\x0e\x31\x0f\x48\x1d\x14\xb8\x7f\x5d\x3b\xd3\xe9\x8a\x80\x21\xbe\x8a\x91\x8a\x53\x3e\x73\x59\xc0\x7b\xf8\x54\x91\xe4\x27\xa4\x1a\x3a\x79\x6f\x03\x9b\xc6\x6f\x02\x2f\x35\x77\x5e\x87\xc8\x9f\xa8\x47\xda\x8d\xc2\x25\x9b\xe4\x1a\x8c\x55\x57\x28\xf7\x8b\x06\x29\xec\x64\x55\x6c\x89\x58\x97\x57\xfb\x5e\x57\xfb\x1b\x93\x37\x64\xb9\xb7\xc7\x2a\xe7\x17\x61\x73\x3a\xb4\x45\x69\x0a\xa6\x99\x62\x46\x73\x84\xfe\x1e\xbf\x56\x8e\x7a\x65\x12\x47\x4b\x76\x87\xef\x3c\xbe\x81\xef\xec\x6a\xd2\xea\x3b\xf3\x1b\xad\xb7\x7c\x02\xc3\x86\xcd\xdb\x35\x86\xc1\xd8\xa1\x52\xd5\xd6\x05\xb0\xbf\x0f\xc8\x87\x75\x67\xce\xc4\x8f\x56\x57\x89\xa2\xeb\x31\x5e\x9a\x4e\xd2\xa6\xfa\x25\x9c\xde\xfc\x28\xf1\xf4\x1e\x5d\xf3\x20\xd3\x47\x51\xb5\xc9\x69\x50\x83\xa2\xd2\x12\x14\xfd\x30\x55\xc7\xa0\x7d\x83\x65\xd1\x82\xbd\x8d\xc3\xa3\x39\x97\xf1\x4f\x03\x1d\x6e\x15\x7d\xf7\x4a\xd3\x8c\x37\xcc\x6c\x37\xc2\xec\x53\x84\x7c\xd5\x40\xd0\x63\x33\xaa\x34\xbc\x3b\xa9\x22\xe9\xb6\xba\x17\x5a\x75\xf9\x38\x3a\x4f\xa9\x10\xf2\x4e\xb3\xc3\x55\x3f\x5d\x58\x58\x6d\xa9\xe8\xf7\x9e\x82\x00\xbf\xd7\x94\x7b\x26\x66\xe0\x9c\xb4\x10\x27\xbe\xa1\x55\x50\xbe\x31\x36\xa2\xab\x52\xbd\x32\x21\xff\x4d\x12\x0e\x76\xd8\x65\x80\x6b\x65\x36\xfa\x58\x4d\x1a\x20\x81\xc7\x87\x54\x4d\x14\x41\xc5\xa5\xd7\xd7\xdb\x57\xe9\x2f\x00\xce\xfb\xae\x82\x0a\x5f\x18\x3d\xec\x9b\x85\xc3\xa7\xe9\x96\x60\x15\xff\x90\xd0\x98\x68\xd8\x7f\x8b\xc6\x23\x88\x2f\xa7\x51\x54\xa1\x44\x61\x6e\x1f\xf0\x04\x3f\x54\x20\xdd\xff\xf4\x71\x04\x62\x94\xac\x8f\xc0\xc0\x10\x15\x33\x4b\x23\x20\xcb\xbe\x15\xb4\x9e\x79\xc6\xb3\x5e\xaa\x8b\xc7\x35\x4e\x76\xbc\x47\x38\xfa\xbb\x0e\x0f\x7b\x48\x04\x78\xef\x42\xc3\x12\x97\x38\xa2\x6f\x85\xac\x71\x13\x81\x96\x7b\x3d\x0a\x64\xfc\xd4\x5a\xeb\xc5\xf9\x4d\x80\x74\x29\xf5\xfb\x74\x0f\xa4\x2f\xf9\x0a\x18\x2d\x2b\xa8\x51\xdf\x03\x18\xa4\xcb\x11\x60\x6d\x22\x01\xef\x2b\x82\x46\x9b\xd7\x61\x96\xd2\xc4\x3b\x15\x51\x75\x27\x8c\xe6\xbb\x8c\xa7\x9b\x5a\x73\x44\x1d\xae\x4a\x63\x9b\x69\xa6\x71\xe0\x29\xe0\xa7\xd5\x0a\xe8\xd9\x6c\x60\x92\x1d\xca\x81\x6a\x5d\x79\x7b\x42\x12\x1b\xcf\xf3\x7d\xb5\x86\x88\xe8\xf3\xd2\x26\x0f\xb4\xc4\x3b\x7c\x6b\x5d\x33\x3b\xdb\x8e\xed\xab\x51\xd2\x2b\x98\x11\x21\x96\xfe\x8a\x5e\xab\xdb\xf8\x5f\x30\x8c\x85\xc0\x3e\xbe\x15\x50\x73\x06\x9f\x8e\xcc\x53\xcc\xf6\x3c\x5f\x26\xcc\x4c\xb8\xd4\x4d\x57\x80\x49\x43\xf0\xbf\xa1\x88\x54\x37\xc6\xae\x8a\x06\xd2\x59\xda\xcb\x6c\x8e\x72\xcd\x1d\xc1\x3e\x6b\x7d\x9f\x58\x99\xd7\x35\x14\x66\x18\x9b\xbc\x0f\x70\x25\x82\x14\x66\xc8\xfc\x5a\x81\xfa\x4c\x16\xf6\x99\x34\xc8\xb1\x41\x89\x55\x9f\x52\xa1\x3d\x4a\x0a\x13\xd6\xa2\x90\x52\xce\xb9\xe0\x44\x65\xfb\x36\x5b\x88\xc2\xa8\x8b\x43\x80\xf2\xa0\xa7\xf6\x20\x71\x74\xf0\xff\xbd\x33\x0e\x5a\x43\xdf\xc2\x65\xeb\x4a\x1c\x44\xe1\x51\xc6\x15\x84\xbf\x34\xd3\xb6\x03\x9b\xf5\xac\x72\x08\x02\x53\x91\x5f\x8f\x01\xc9\xb0\x44\x17\xa3\xc2\x2c\x44\xb1\x38\xda\xe0\x73\xdf\x56\xe2\x04\x6f\x37\x62\xed\x49\x38\x9a\x81\xa2\x4c\xdf\x42\x64\xc3\xed\x3f\x8c\x45\x8e\x13\xff\xd5\xb1\x7a\x79\xdf\x5c\xdb\x0e\xa3\xc4\xc4\x5e\x7b\x1a\x10\x00\x06\xe2\xf3\x1b\x05\x8d\x0d\xab\x84\x04\xe9\x8b\xdc\x03\x4c\x1a\xf8\xb5\xca\x25\xa3\x24\xcc\xac\xc9\x59\xd3\x42\xc4\xa9\x7c\xa4\x46\x25\x85\xac\xe7\x27\xb4\x25\xf8\x67\x70\xcd\xd8\xd1\x97\xdc\xd3\xeb\x46\xb9\x51\x52\x01\xb8\x9b\xdf\x08\xfc\x9d\xfd\xc6\xe8\xf1\xad\x6a\x5f\xbf\x41\x96\x52\x42\x95\xf1\x1b\x87\x1d\xa5\x58\xa2\x67\xac\xeb\xb4\x6f\xae\x6d\x62\x78\x8d\xb7\xfc\xa0\xeb\x2d\x75\xbd\xe4\x76\xa4\x38\xbb\xf8\x51\x97\xd0\x42\xbe\x8f\x5f\x37\x01\xc5\x07\x66\xc9\xe2\x38\x74\x7a\xf4\xd5\x13\xc4\xa8\xfb\x53\xc5\xe4\x02\x11\x70\xf3\x8d\x06\x17\xc0\x99\xf6\xb0\x5c\x88\xa3\x5c\xf6\x08\x1f\x0a\x38\x4c\xe5\x84\x68\xf0\x38\x58\x88\x86\x3c\x7c\x56\x72\xc9\x33\xce\xbb\xdd\x97\x65\xa6\x9b\x2e\x58\x5e\x16\x62\x70\x4c\xf7\x4d\xbc\x8d\x9d\x8d\xde\x22\x3b\x6a\xb8\x56\xba\xeb\xf8\xf2\x7c\x0a\x33\xb6\xdb\x0d\xe7\xec\x7c\xdb\xbe\x3a\xb4\x49\xd7\x88\x59\x3d\xaa\x76\x86\x87\xf1\x9b\xb1\x6f\x7f\xf0\x85\x76\x99\x2c\xc4\x51\xb2\xe4\x0a\x2c\x20\x88\xb0\x53\x91\x2f\x61\xf2\x24\x08\xb3\x26\xff\x20\x9b\x95\xcb\x82\xc2\xc5\x2e\xbb\xaf\x8d\xc0\xee\xab\xf0\x58\xf4\x33\x6b\x0a\x2b\x82\xb5\xae\xab\xb6\x6f\xce\x41\x06\xbc\x9e\x4b\x62\x96\xa9\x45\xc8\xd1\x9a\x67\xea\xb8\x15\x32\x60\x57\x0b\x28\x0a\x0b\xd8\x42\xbb\xb9\x00\x4f\x23\xf9\xcd\x18\xe8\x6d\xdf\x5c\x7b\xa5\x1f\x15\x85\x59\x12\x6b\x51\x84\xde\x9f\xab\x96\xda\xcf\x9b\x96\xf5\x2b\xb6\x88\xa3\x84\xcf\x33\xdc\x99\xa3\xca\x27\xe4\xe8\xd8\x30\xa5\x5a\x66\x26\xa7\x58\x06\x5c\xd9\xd5\x91\x77\x88\xbe\xaa\x66\x23\xc3\x34\x2f\x60\x08\xfa\x92\x83\xcc\x2a\x21\xf9\x9b\x0a\x8f\xbc\x64\x16\xca\xf8\xc1\x9a\x7f\x0e\xd6\x60\xca\x30\x2d\x51\x27\x36\x09\x28\xb8\x0e\x4d\x1c\x85\x4b\x13\x7e\xaa\x7e\xab\x26\x1b\xa5\xe0\x1a\xa7\x6a\x4a\x10\x71\x9c\x3f\xa9\x10\x3c\xe7\x02\xe5\xdf\xfc\x46\x40\x93\x0f\x39\x92\x7c\x3f\x85\x51\x8f\xc8\xde\xd6\x81\xd3\xc5\xa2\xbf\x15\x78\xff\x8b\x77\xa9\x66\x42\x0e\x7b\x56\x83\x37\xf9\xb1\x22\xfb\xda\xb6\xe6\x95\x35\xee\x53\x09\x8b\x31\x21\x0b\xb5\xa3\x70\xfe\x0e\x32\x31\x04\x62\x34\x6d\x04\x16\xa5\x9b\xcf\x18\x76\xb0\xa1\x1c\xa3\xa3\x44\x87\xd4\x1f\x8b\xf7\xd9\x5f\x4c\x8e\xdd\x06\x5c\xb6\x59\x30\x49\x37\x15\xae\x3e\x3e\x96\x45\xb3\xf8\x4d\xc3\xb0\x2f\x8e\x06\x11\x9b\x10\xa8\xaf\x20\x48\x1b\x10\xec\x04\xf5\xea\x8f\x92\xa1\x59\x1d\x58\xa8\xc1\x3d\xef\xdc\x81\xe9\xf7\xb4\x57\x2d\xff\x87\xae\xf7\x7d\x59\x31\x28\xb3\x25\x76\x4b\xc4\xe1\x87\xed\xcf\xf2\x3a\x94\x2a\xe3\x36\xfe\x5c\xf5\x97\x4d\xd7\x0e\x8b\x5c\xcd\xc0\x37\x02\x45\x08\xdb\xa8\xd1\x82\x6d\x38\xa5\x98\x34\x47\x40\xb7\xc2\x9b\x6d\xc4\x64\xe2\xff\xc0\x43\x16\xb6\x81\xcb\x69\x5f\xbe\xd2\x84\x7d\x8f\xa3\xd0\x26\xb9\x0b\x5c\x8e\x59\xeb\xc8\x2c\xd0\x0b\x43\x43\xe2\xd2\x58\xec\xdb\x3f\xdd\xce\x6c\x6e\x93\xc2\xa1\xce\x51\xcf\x62\xc4\xca\xaf\x9b\x5c\x78\xda\x26\x0c\x4b\x06\xf5\xcf\x70\x23\xe8\x88\xee\x0a\x1d\x69\xa0\x92\x20\x3e\x87\x85\xed\x52\x53\x0a\xb7\xf9\x0a\x1e\x87\x13\x7e\x3e\x34\xbd\x79\xb1\x56\xc4\x05\xda\xd4\x32\xb4\xd1\x72\x15\x72\x5c\xc1\x7b\x1e\x7b\x8d\xdf\xa8\xe9\xf9\x72\xd4\x8b\x50\x6d\x09\xe5\xc0\xa3\x15\xcf\x37\xf8\x57\xcc\xb4\x73\x93\x74\x33\xd3\xf2\x3d\xd9\xd3\xba\x2d\x76\x5a\xb9\x22\x90\xdb\x74\x0a\x4e\x8c\x93\x17\x02\x52\x5f\x70\x64\x3e\x81\xfe\xf2\x81\xdf\xda\xa1\xf8\xe0\x7c\x8a\xc9\x74\x13\xfb\x0b\x87\xf5\xb9\xd1\xf6\xbf\xeb\x54\x3d\x7c\xb0\x7f\xa8\xe3\x21\xe3\x7f\xea\x42\x55\x3e\x8c\xa3\xe2\x21\xfa\xc3\xc8\x23\x18\x8e\x82\x13\x04\xd6\x75\x28\x95\x26\xb5\xf3\x00\x23\x7c\xf0\x81\x9b\x14\x68\xd0\xe8\x3f\x47\x99\x82\x78\x66\x55\x9f\x8e\x7f\xdf\xd9\x51\x92\xc1\xa7\x1e\x68\x4f\x5d\x98\x57\x87\xa4\xf5\xa2\x19\x25\xb7\xb1\xc8\x85\x9d\xad\xda\x69\x27\x55\x6e\x40\x34\x83\x9d\x7e\x46\x73\x82\x02\x18\x9e\xe8\xbf\xa6\x2b\xc4\xa5\xc3\x5b\x0f\x38\xac\x3b\xb4\x21\x19\xe6\x37\xaa\x3d\x65\x87\x6a\xfb\x91\x02\xfa\xda\xb8\x6b\xb3\x78\x15\x63\x70\xe7\xc5\xe1\xcf\xd0\xdb\xa3\x47\x94\xae\x40\x0e\xc4\x7e\x63\x65\xe4\x57\x58\xde\x37\x19\x24\x8d\xb0\xd5\xde\xa4\x6b\xe5\xe2\x96\xee\xa0\x08\x4f\x50\x31\xaa\x8d\x2d\xe4\x7c\xa2\xc7\x27\xc2\xc4\x0f\x32\x3e\x29\x6c\x9c\x42\xa4\x16\x25\xd8\xba\xa6\x81\x73\xb5\xc7\xce\xb5\x2a\x95\x24\x39\x47\x82\x82\x52\x9c\x76\x42\x3d\xd5\x61\x24\x42\x3d\x32\x85\x31\x8b\x8b\x36\x2c\xa8\xe3\x80\x7d\xc8\x82\x45\x8c\xc5\x25\x36\x92\x96\xe9\x13\x52\x82\x22\x2b\x80\xc4\x5a\xa5\xca\x2f\xce\x1c\xfc\x5c\xcb\x79\x27\x6d\xd2\xc3\x44\x0a\xb9\x86\x43\x4e\x8c\xb2\xb1\xf4\x81\x3d\xba\x45\x02\x00\x2a\x72\xcf\x88\x44\x10\x6e\x9e\x9b\xf6\xfa\xc5\xf5\x73\x4d\x01\x78\x8b\xa0\xb5\x38\x00\x6f\xa8\xb4\xe2\x53\xac\x40\x81\x4f\x57\x67\xa9\x70\xf3\x29\x60\x2a\x8b\x1d\x21\xac\xfe\x15\x9e\x0a\xb2\x18\x20\x0e\xc4\xb4\xd8\xfb\xd7\xff\xe3\x80\x9a\x14\x8e\x92\x3c\x3b\x7b\xc0\x59\xb8\xe2\x86\x63\x2d\xdf\xc0\x0d\x77\xb2\x99\x8e\x62\xb1\x89\x8e\xa1\x38\xbd\x56\xab\x19\x03\xff\x1f\xe2\xd6\x23\x93\xd8\xd6\xf9\x6c\xed\x11\x45\x69\xc2\x04\x03\x07\x09\x47\x6d\xe9\x94\x32\x14\xcb\xc8\xb9\x28\x7d\xa5\x34\x71\x0c\xac\x37\x8e\x75\xcc\x26\xd1\x7f\xe6\x3c\x02\xf5\xd2\x2d\x85\x4f\x5c\xc8\xd2\x05\x9b\x41\xf1\xc8\xf5\xf0\xbc\xa0\xfe\x85\xc0\x2b\x86\x0f\x6d\x36\xb0\x3c\xc6\x56\x83\xff\x9a\xac\xa9\x13\x69\x4b\xd3\x78\x0b\xf7\xe6\xb8\x32\x68\x3d\xee\x16\x65\xd7\x56\xb9\x3c\x8a\x01\x70\x79\xb8\x8e\xc6\xea\x45\x46\x8e\xdb\x74\x5a\xe5\xcb\x9a\xf7\xbe\x7f\xda\x21\x74\x15\x5a\x77\xec\x64\x7a\x71\xe6\x20\xe9\x56\x67\x69\xcc\xf3\x7d\x44\xf1\x73\x1a\x1a\x3c\xee\x69\x7b\x68\xba\x3d\x28\xc3\xfe\xa4\xd7\xb3\x7a\x77\xe4\xe3\xe9\x65\xac\x3c\xb1\x9b\xf4\xbc\xc3\x1f\xd7\x06\x7a\xb6\xd7\x9b\xd4\x52\xad\x57\x46\x1e\xe7\xbd\xa1\xa6\x6f\x1b\xba\x19\x7a\xc5\xdd\xcd\xd8\xda\x81\x49\xc4\x53\x8b\xa9\xe2\x23\x2d\x26\x34\x52\xb2\xda\x37\x15\x7c\xb7\x5f\x66\xc5\x24\x25\x84\x50\x14\x60\x20\x01\x32\x97\xf7\xe9\x2a\xf8\x35\x15\x26\xfc\x43\xcd\xaa\x8e\x59\xfa\x8a\x0d\x39\x6b\x13\xfd\xf4\x96\x63\xcc\x5f\x53\x88\xe4\xb7\x47\x5a\xa0\xca\x0e\x2d\xd3\xae\xf9\x00\xc4\xa6\x94\xd3\xb0\x01\xcd\x15\x9a\xc2\xc4\x69\x4f\x41\x3e\x6f\x28\x00\xd7\xb8\xeb\x58\x75\x79\x49\xf4\xaa\x74\x19\x1c\xd0\xb1\xda\x40\xfc\x46\xf5\xba\xca\x7c\x75\x87\x72\x56\x53\xd3\x98\xdf\x3f\xe9\xb1\xc5\x13\x9f\xeb\xf8\xd1\x79\x6b\x4d\xa5\x8c\x77\x46\x4a\x39\xf9\xec\xd8\xc5\x10\x1a\x6d\xd5\x2d\x7e\x9c\x58\x27\x55\x5e\x72\xd2\x3d\x57\x66\x25\x4f\xf9\x33\xf9\x5e\xa0\x0c\x64\xbf\x8e\x4b\x63\x9d\xac\x9a\x21\xf7\xc8\x37\x0a\x8f\x8d\x9e\xaa\x77\x31\x66\x67\x0f\xb4\x0f\x4d\xbf\x84\x81\x11\x8a\x5c\x0c\xc9\xf9\xb5\x52\x71\x5f\x26\x05\x51\x85\xb4\xe1\xa9\x38\x3e\xf2\x53\xc5\xff\x3d\x8a\xbb\x89\x2c\xe9\xb8\x82\x05\xbc\x11\x3c\xa1\xea\xd2\xbc\xc8\xa2\x90\x73\x65\xa0\x39\xef\x2b\x2e\xc0\xfd\xa6\xb2\x9c\x44\x36\x33\xa8\x4b\x1c\x52\x79\x8a\x63\x89\x9c\x6b\x9a\x23\x64\x55\xd5\x31\x50\x24\xc4\xd7\xb5\x9e\xe3\xeb\x9e\x76\x13\xc7\x55\xb9\xbe\x7f\x5a\xe8\x27\x23\x25\x8b\x78\x4c\x9d\xf3\x0b\x29\x69\x45\xb9\x6a\xf8\x72\xa0\x48\x70\xe4\x6c\xe8\xb5\xfd\xbd\xc0\xe6\x6d\xd4\x51\xf8\xa9\x75\x45\xad\xdd\xd9\x51\xcf\xee\x9c\xb2\xf0\x7a\x07\xfd\x6d\x4c\xa1\xef\x22\x2d\x46\x7b\x9c\xd5\x81\xf8\x6f\x29\xc9\x93\xe5\xfc\xb9\xc9\xd6\xdc\xdc\xe6\x7b\x0a\x31\x74\x56\xf5\xd5\x0f\xd7\x6a\xd6\x07\xea\x95\x77\xed\x82\xb0\x87\x00\x97\x38\x82\xb3\x95\xdf\x34\x36\xb5\x42\xd3\xb5\x03\xa6\xfc\x61\x27\x7d\x3b\xf0\x58\xe2\x6f\xab\xfc\xae\x40\x0d\xb8\x7f\xde\xe7\x46\x4a\x29\x58\x7a\x72\x71\xb4\x60\x95\x1c\x1c\x52\xa7\x9f\x28\xd6\x06\xbb\x8f\x08\x89\xbe\x49\x73\x34\xcd\x0b\x0c\x0e\xd9\xec\x7d\x54\x73\x7e\x6f\x18\xab\xf7\x4d\x56\x94\x35\x0e\x01\x33\x69\xf9\x8d\x02\x26\xdb\x57\x0b\x9b\x14\x13\xbe\x6f\x77\x0e\x0f\x18\xd4\x1e\x98\x7e\x08\x62\xd9\x67\x61\x51\x2f\x49\xd9\x9c\xd6\x69\x78\x06\x1e\x96\xb2\xa1\x50\xdd\x89\x0d\x6d\x9e\x9b\x6c\x75\x87\x92\x86\x80\x2a\xa1\x88\x32\xb7\x1c\x7b\x03\x42\xdb\x02\x93\xa9\xfe\x38\xff\xfb\xc8\x8f\xf8\xdf\x09\xfc\x20\x7f\x60\xe2\xc5\x32\x09\x59\xb9\xc2\xa1\x3a\xaf\xea\xc1\xc5\x55\xd5\x2f\xe7\xd1\xaa\x5a\xcf\xc7\x31\xd5\x74\x83\x56\xa7\x61\x09\xf3\x01\x31\x48\xaa\x73\xeb\xb2\xde\x2a\x89\xa5\x22\x3d\x41\x99\xcb\x22\x6b\x9a\xdc\x7b\x86\x76\x81\x8c\x52\x3d\xa7\x32\xb7\x43\x93\x71\x5e\x51\xa5\x51\x0e\xe9\x3e\xe7\x91\xee\x0d\x4f\x35\xb3\xb1\xb7\x6b\x15\x1b\x65\x5a\x0a\xe2\xa3\xec\x12\x5f\x12\x01\x03\x35\xc0\xb9\x68\xb8\x61\xe2\x55\xe5\x1a\xf8\x36\x42\x3b\xdb\xbd\x34\x39\xc2\xf7\x4c\xd6\xb5\x68\xd2\x49\xf3\xd9\xcf\xff\xaf\x39\xa9\x83\x30\x1d\x0c\xc5\xa5\x6b\xc2\x47\x9f\x0b\xfa\xb0\x39\xaf\xb0\x52\x9b\x4e\xa9\x98\xc0\x68\x8e\x48\xcf\x94\x32\x65\x0f\xfd\xb1\x52\xb8\x2f\x93\xcc\x86\x69\x2f\x21\x2b\x3e\x0f\x64\x47\x53\x8f\x5f\x8f\x41\xb4\x0f\xbe\xd0\xae\xee\x36\x71\x09\xa5\xdf\xe8\x6c\x0f\x0f\xf9\x2b\x6d\x68\x7f\xe6\xd6\x2c\xa4\x59\x62\x75\xf5\x1c\xf8\xfe\xfc\xe9\x86\x66\x60\x7b\x58\xc2\x98\x16\x49\xf4\x5f\x06\x4a\xa0\x6c\xbd\x66\xd5\xbd\xf5\xf3\xf6\x4f\xef\x6f\x2f\x9b\x2c\xb2\x3c\xe0\x60\xa4\xb5\x2a\x15\xc7\x87\x77\xfb\xe6\x44\x8c\xd0\x1b\x9d\x21\xab\x3c\xa6\xd8\xe2\xc7\x6a\x6d\xbd\x28\x5c\xdd\xad\x04\x6b\xd8\x9b\x4f\x30\x6f\x7a\x4e\x4c\x91\x09\xfb\xe4\x32\x16\x8a\x18\x73\xd0\x97\xe2\xff\x51\x36\x88\xd7\x68\xc5\xf3\x0f\x8d\x94\xd0\xd5\x5f\x82\x9b\x23\x4a\xc0\xa2\x96\x19\xc6\x26\xcf\xb3\x34\x1d\x20\xbe\xa1\x4a\xfb\xe3\x91\xd2\x4f\xfa\xe3\x26\xe1\x19\x0c\x12\x27\xb5\xfa\xef\x3a\xc2\x96\x10\x98\xfd\x12\x5d\x0f\x54\xa6\x78\xde\xd3\xa7\x86\x69\xba\x84\x69\xb4\x0c\x97\x95\x81\xf6\x43\x94\x0a\xb9\xd1\x94\xc3\x56\xbe\x83\xed\x2d\x6d\x99\x26\x84\x03\x01\xb0\x91\xde\x4b\x3e\xa0\x94\x03\xaf\x8c\x94\x34\xfd\x29\xa7\x38\x4c\xa0\xa2\xc2\x14\x51\x3e\xd1\xfa\xfc\x8b\x7c\x4a\x00\x00\x80\xc8\x74\x54\x9f\xc1\x37\xf5\xac\xb0\xb0\xa4\xa3\x5a\x9d\x43\xe8\x1b\xdc\x56\x2c\xa6\xef\xd0\x99\x24\xd4\x43\x1f\xc4\xf2\xf2\x35\x93\x24\x16\xa1\x44\xe8\x77\x7e\x5f\x7c\xd2\xe0\xe2\x3c\x4f\x98\x42\xea\x34\x80\xe5\xb2\x79\x51\x89\x9e\xbe\x52\xe6\x45\x14\x5a\xf0\xcb\x14\x7d\xff\x80\xa3\xef\x6f\xad\x4e\x9e\x79\xa6\x6d\xbb\x51\x91\x66\xa2\xb2\x85\x59\xd0\xa5\xc0\xcf\x88\xc6\xfd\xa7\xf7\xee\x6d\x0f\xd2\x65\x89\x15\xe8\x44\x1f\xd7\x50\xc6\xe3\xaa\x43\xf5\x9b\xcf\xbf\x30\xa1\x9c\x94\x5e\xaf\x6b\x62\xb4\x9c\x9d\xc6\xd9\xba\xfc\x71\x64\x76\xfa\x31\xd8\xb1\x40\x65\xff\x38\xb5\xa4\xe1\xa1\xfc\x21\xfe\x09\xfe\x34\xea\x74\x04\x15\xc1\x19\x61\x8d\xe2\x14\x3b\xaa\x5a\xbb\x36\x61\x9a\x9c\xeb\x18\xfe\x50\x49\x50\xfc\xb0\xc9\x20\x2d\xb7\x26\x0b\xfb\x88\xea\xda\x76\x51\x47\x75\xe9\xe5\x2a\xb5\xe8\xff\x4b\xdd\x92\x2c\x2f\x1e\x57\x80\xf0\xb5\x6a\x75\x30\x2a\x5a\x6b\xe6\x4d\x75\x6a\x76\xac\x74\x42\xe2\x26\x3e\xd1\xa1\xfa\x1e\xa5\xc0\x66\xa0\x20\x5a\x48\x60\x51\x54\x6e\xd2\x2d\x10\xb7\x2c\x5d\x07\xbe\xeb\x2d\x89\xcf\x3e\x85\x8c\x91\xd2\x98\xff\x72\x0f\xd1\x0c\x50\x7c\xf0\x5e\x16\xa5\x0b\x7a\x02\xe8\xc7\x6c\x5f\x6b\x7d\x51\xd4\xa7\xa9\x83\xf7\x92\xd3\x65\x68\xc0\xec\x87\x71\x5a\x76\xa1\xab\xcc\x04\xb9\x91\x37\xfb\x3a\xa6\x6d\x6a\x6f\x28\xf3\xdc\x33\x8a\xf0\x79\xc6\xe5\x71\x65\x12\x5b\x93\xf7\x79\x85\x8b\x05\x43\xcd\x9b\xc1\x83\xbd\x06\x65\x1c\x47\x0c\xf6\x42\xe2\x08\x51\x2f\x7e\xbd\xe6\x19\x7c\x99\x61\x8c\xb8\xb4\x7d\xab\x5f\x91\xf0\xa2\x60\x7e\x5d\x62\xb0\xcc\xf3\x57\xbf\xab\x5a\x83\x8f\xaf\x69\xd2\xe7\xc8\x8f\xb9\xff\x8b\xbf\x8d\xfb\x4b\x99\xe5\x8d\x5f\x25\x28\x8a\xe4\x3c\x0e\xf0\xbc\xf3\x69\x74\x51\xd1\xbd\xd9\x09\x05\x4e\x51\x35\xf4\x9f\x3f\x30\xf9\x0e\xdf\x7c\xbf\xa0\xc0\xdc\x6c\xbd\x5b\x53\x66\x40\x37\xe6\x44\xcd\x7b\x7b\x37\x31\x8c\x10\xd3\xff\x07\x05\xc5\xcc\x8b\xcc\x26\xbd\xa2\x6f\x65\xa0\x82\x6f\x88\x51\x34\xbf\x56\x8c\xc5\xcc\xa2\xe0\x12\xe5\x68\xec\xbf\x89\x8e\x9a\x07\x01\x4a\x80\xe4\xf8\xc6\x58\x77\xe3\xe0\x0b\xed\x9e\x89\x92\x09\x2f\x3f\xa9\x35\xb5\xaf\x28\xd3\x8a\xaf\x35\x08\x03\xb6\x87\x99\xcd\x73\x98\xaa\x57\x37\x5a\x54\x66\x15\x15\xfc\x72\x23\xc9\xc9\xc4\x85\x47\xdc\xa3\x77\xf4\x29\x36\x29\xbf\x19\x4b\xe3\xab\xac\xc5\x16\x99\x35\xc0\xc1\x63\xdc\xfa\xd3\xc0\x23\x1f\xc6\xe5\x0f\xf6\xee\x6d\x27\x55\x79\x3d\xa1\x54\xee\x10\x22\xf0\x44\x91\xa8\x62\x5b\x5e\x56\x48\xe4\xbc\xa8\x6a\xcb\xc5\x45\x2a\x66\x30\x3b\x3b\xab\xe6\x68\x67\x95\xf2\x71\x99\x2c\xc6\x66\x69\x15\x13\x5e\x84\xd2\x2b\x94\xbf\xf3\x6b\x57\x6a\x27\x69\xb6\x92\xa6\x6c\xf4\x83\xbf\xb3\x8d\xdc\xdb\x30\xf5\xf9\x48\xf1\x4a\x6f\xd7\x74\x82\x0d\x65\x31\x8c\xf7\x99\xdf\xbc\xa8\xf0\x43\xdd\x34\x2c\xd2\x8c\xce\x6c\x16\xa0\x0c\x94\xf7\xe3\x91\x91\x87\x4e\xbd\xa7\x10\x64\x9f\x04\xad\x2f\x49\xdb\x75\xdc\x36\x71\xef\x4c\xdb\x3c\x37\x78\x6e\xd2\xf7\x72\xa6\xd6\x6a\x74\x80\xfd\xd3\xbc\xd1\x1e\xee\x28\xc9\x85\x8b\xea\xf6\x15\x99\x49\xf2\x45\x9e\x18\x83\x42\xf4\xbb\x81\xa7\x13\xfd\xae\xaa\x9b\xaa\xed\x44\xeb\xa0\xb5\x57\xb8\xc9\x1f\xe9\x71\xfa\x47\x63\xcf\x74\x6e\x6e\xbe\x9d\xc7\xe5\xa0\xa6\xe2\xa7\xa8\x72\xeb\xde\x56\x63\x45\x35\x61\x78\x28\x43\x97\x21\x03\x1a\x51\x48\xf0\x46\x76\x1a\xe7\x8d\x62\x7d\xaa\xe3\xa7\x83\x77\xd5\x85\x2f\xc4\x65\x06\x06\xeb\xec\x2c\x1f\x12\x97\x15\x24\xb2\x05\x6b\x1b\x84\x84\xcb\xa3\x2d\x9e\x72\x7b\xf7\xb6\x9f\x53\x14\x8d\xbf\xc2\x37\xe6\x37\x4e\x8e\xa0\x88\x0a\x93\x10\xc9\x6d\x76\x96\x8f\xcf\xed\xf4\x28\xf8\x75\x47\x8f\x56\x6c\x89\xdb\xed\xe0\x91\x73\xce\x96\xe6\xbc\x02\xd8\x58\x92\xf1\x74\x23\x54\x27\xb9\xe6\xeb\x35\xd5\x41\xbd\x85\xbf\x22\x85\xdc\xe3\xea\xac\x2e\xa2\x82\xd9\xa7\x1e\x5b\xdf\x72\x66\x1f\xe7\x1d\x23\x65\xc9\x14\x7d\x9b\x45\x5c\x30\x08\x77\x45\xcd\x4e\xc7\x65\x80\x48\x38\x24\x36\xd1\x60\x42\xa1\xa9\x60\xd5\xeb\xb0\xe5\x4e\xa6\xe6\x5a\xc3\xf8\x71\xa6\x9d\x97\xd9\xa2\x09\x25\xba\xb0\x33\x5b\xe0\x41\x61\x17\x1a\x56\x55\x7b\x31\x36\xc3\x5c\x25\x5e\x17\x6a\xd6\x4c\x0d\xee\x30\xf3\xed\x85\x28\x0d\xfb\x76\x10\xe5\xe2\x74\xa3\x2d\x0e\x84\xad\xd9\xf0\x51\x61\xea\x3a\xd0\x9c\x46\x63\x05\x4b\x4e\xbd\x35\xf4\x3d\xf3\x0c\x95\x93\xb1\x65\xcc\x8c\xe6\x74\x8b\x3f\xa5\x9f\xe4\x9d\x6b\x92\xd0\x12\xc7\x76\xb7\x21\x58\xc3\xa5\xa6\xe7\xe2\xc3\x9a\xc9\xf3\x72\x60\xf5\xed\xf8\x40\xe5\xa1\x1f\xa8\x29\xda\x42\x9c\xae\xec\xa2\xab\x72\x8a\x4d\xd5\x9f\xc7\x36\x80\xfb\x33\xbf\x46\x78\xe7\x9f\xc2\x58\x04\x27\xc4\xa7\x98\xab\xf0\x9b\x91\x2a\xa5\x80\xf7\xe2\xd7\x63\xb7\xe5\xe0\x0b\xa4\x1b\xeb\xa6\xe2\x68\x6f\xdc\x55\x8a\x1d\x10\xf7\x15\x21\xaf\xad\x75\x70\x55\x9d\x84\x66\x18\x15\x86\xac\xec\x11\x02\x44\xbe\x8b\xae\x02\x91\x02\x3a\x8a\xd8\xe4\xa7\x1b\x21\x75\xc3\xd8\x2f\x37\xb1\xb0\xa3\x6f\x2b\xb2\x83\x4d\x4f\x64\x68\x6d\x37\x1d\xd8\x82\x03\xa5\x4c\x30\x68\x73\x48\xa6\xe9\x33\x8e\xdc\x24\x3b\x5b\xce\xc4\xf3\x71\xd2\xe3\xab\xe1\xe6\x91\xf0\x4c\x74\xbc\x3f\xee\x69\x65\x42\xfe\xd0\x9a\x52\x03\xe0\xda\x55\x06\x59\x0d\xfd\xf7\xbe\xc9\x8b\x28\x5e\x55\x84\xad\xeb\x81\x86\x64\x54\x7f\x18\x9d\xbd\x63\xa3\xa7\x35\x15\xa4\xc8\xaa\xf2\x3b\x8f\x4c\x3c\xa5\xb5\x6b\x8f\x63\x33\xa1\xe7\x79\x52\xc9\x32\x7c\x53\x35\xbe\xd8\x21\x8a\x7f\xc3\x15\x53\xdd\x68\x40\x82\xff\x82\x06\xc7\x6a\xfd\xb6\x5a\xfd\xcc\xba\x10\x17\xae\x96\x33\xfb\x3a\x33\x7a\x42\x83\x0a\x56\xc3\x58\x2c\xfc\x90\xb8\x1d\x53\x4e\x27\xc7\xc6\x4a\x8c\x97\x5f\x6e\x17\x7d\x3b\x90\x56\x25\xee\xfc\xb5\xc0\x37\x1e\xd7\xb1\xa4\xd9\xb4\xba\xc9\x16\x7e\x60\xc2\x56\x6b\xab\xf2\x82\x0c\x24\xb6\x86\xae\x97\x5f\x6e\xdb\x6e\xa9\x9a\x32\x38\x11\x3e\x51\x26\x58\x9f\xd4\xe6\x2a\xb9\xcd\x6c\x81\x38\xe2\xa0\x68\xf3\x2f\x1c\x70\x50\xb4\x87\x1d\x94\x3e\x4e\x5b\x7e\x8c\xc6\x08\x27\x01\x31\x79\x19\xa2\x28\x8e\x4b\xb0\x80\x18\xb2\x86\x3f\x74\x86\x94\xda\xf9\xb5\xca\x7d\x56\x18\x5c\xa9\x70\x54\xf8\xcb\x02\xaa\x6a\xc2\x8e\x26\xbd\x28\xb1\x1e\x3b\x8a\xe1\x24\xe3\x37\xf9\x4d\xe3\x99\x9f\xae\x08\x66\x55\x8c\xe5\x95\x51\xe1\x5b\x4a\x0a\xf1\xab\x0d\x84\xf1\x39\x5a\x9a\x04\xf8\x75\x16\xc6\x60\xdf\xf2\x6b\x45\x4c\x19\x66\xe9\x20\xca\x2d\x89\x3b\x49\x2d\xd5\x52\x22\x99\xea\xe0\xfc\x00\xb3\x3f\x54\xda\xd0\x43\x63\xa5\x3a\x05\x50\x19\x9a\xc4\xc6\x13\x8a\x6e\x0f\xc0\x91\x33\xde\x72\xa8\x63\x6f\xc6\xbb\xd2\x4f\xa7\xaa\x5b\x4e\xd1\x76\x0a\x63\x28\x67\xc7\x53\x7d\xa2\x14\x44\xd5\x1f\x02\xe5\x84\x0f\x55\x9c\x90\x3b\xd7\x1e\xab\x51\xa7\xd2\x64\xca\x6b\xa0\x5e\xd0\xca\xa6\x37\x94\x96\xc7\x8d\x91\x22\x5b\xdc\x18\xf9\x0e\xdf\x44\xc7\x63\xf6\x62\x43\x3a\x44\xf4\x27\x50\xc8\x00\xab\xc5\xaf\xfd\x30\x3a\x0f\xd3\xac\xc8\x6b\xf6\x94\xc7\xf4\x58\xff\x66\x0d\x98\xe7\xb2\xe4\x28\xec\x57\x67\xa3\x37\xcd\xd8\x62\xd2\xe6\x2d\xcf\xfe\xee\xe7\x94\x2e\xef\x59\x60\xde\x30\x6c\x39\x4e\xf3\x7f\xbc\x7e\x9d\xf0\xd9\xac\x10\x3b\x6a\x7d\xf9\x0b\x4e\xcd\x96\x9e\x08\x56\x1c\x10\xf5\x9c\xf1\x5d\x27\x18\x04\x25\x0a\xff\x68\xcf\x1a\xed\x27\xa9\x83\xb5\x58\xc0\xc9\x40\x99\x33\xec\xea\x78\x50\xe7\xcf\xe9\x7e\xe0\x87\xe0\xfe\x81\x4e\x22\x17\x45\x6e\x6a\xe4\x49\x36\xc7\xa9\x3b\x80\xa8\x70\x06\x80\x03\x71\x7b\xa3\x2c\x12\x47\xd2\x93\xa0\x61\x28\x01\x1f\x61\xfc\x3c\x0a\xe8\x8e\x78\xe7\xb7\x9c\x7e\xcf\xeb\x64\xeb\x86\xb6\xc1\x3d\xb2\x74\xc0\x82\xbe\x38\xa2\x36\x10\xc3\x1d\x14\xb7\x79\x10\xc5\x4b\x54\xd7\x82\x55\xf0\x21\x3e\x45\xe8\x15\xf4\x29\xc2\xf6\xf0\x79\xc3\x04\x90\x05\x6c\x1f\x4e\xc5\x26\x9a\x6d\xd7\x5d\xb3\xa0\xb0\x61\x3f\x89\xbe\x52\xda\x1d\x8a\x3d\xf2\x6d\x3c\x33\x47\xa8\x73\xc3\x8d\xf3\x28\xda\x31\x4c\x38\x3d\xf2\x73\xf7\x0b\xca\x23\xf6\xd1\x8e\x56\xb4\x28\x0b\xfb\x28\xdd\x1e\x59\x50\xd5\x0a\x90\x0c\xcc\x8f\x4a\x1e\x59\x53\xb3\x82\xb3\xb8\xbb\x58\x02\x77\x94\xf9\xf4\x65\x42\xa7\xf1\x90\x9a\xc5\xe4\x03\x85\x5e\x87\xe4\x3f\x72\x83\xdd\x1d\x25\xee\xf0\x2f\x11\xc6\xd0\xff\x11\xb7\x3d\x34\x9d\x8e\x53\x74\xc0\x59\xfc\xce\x58\x6d\x3b\x73\xb0\xfd\x4a\x54\x14\xc2\xa4\x47\x1d\x0e\x4c\x0a\xbf\x5e\x6b\x90\x2a\x30\x71\x98\xf6\x53\x86\xc5\x62\x8d\x1e\xd6\xb9\xc0\x61\x77\x84\x66\x36\x4f\xe3\x92\x46\x11\x74\x03\x9c\xcd\x88\xeb\xa7\x7e\x8c\x4b\x67\xc9\x64\x25\x95\x55\x26\x51\x92\x0f\xa3\x8c\xbb\x11\x98\x38\xaf\xe3\xc0\xe5\x37\x35\x15\x22\x93\x98\x56\xb5\xea\x10\x96\x36\x34\x2d\x6e\xc3\x6d\xf3\x74\x21\x0f\xcb\xcc\x4e\x3a\xf0\xf6\xd1\x27\xa8\x1d\xe3\x9c\x84\x5d\x94\x7e\x72\xcd\xef\xa0\xf7\x9a\xa8\xf1\x89\x21\x66\x28\xee\x35\x4b\x1c\xe2\x26\x88\xde\xa1\x3f\x31\x97\xac\x1d\x46\x49\x6f\x67\xb5\x38\xa4\xfc\xa0\x1f\xe5\x39\xba\x77\x0b\xf9\x87\x70\xef\xc2\x3a\x9e\x24\x73\x1f\x57\xbc\x54\x0b\x01\xcb\xe9\xe8\xc8\x0b\x66\xdc\x6c\xa2\x03\x31\xda\xc4\x03\x61\xf0\x05\x4f\xa8\x6a\xf8\x84\xca\xf1\xca\x57\xa9\x4e\xda\x24\xe7\x8d\x4d\x0d\x2e\x9c\x7b\xee\x0b\x2d\x5f\xfa\x9d\xd5\x5f\xf0\xac\x8b\xb9\xe0\x1d\x31\x63\xc9\xd1\x12\xab\x28\x25\x84\xc5\x66\x1e\x09\x53\x9d\x22\x96\x05\x62\x14\x9e\x92\x80\xff\x69\x63\xf7\x35\x49\x8b\x62\x75\x42\x01\x81\xfe\x68\xe4\x7f\x1d\xce\xe8\x02\x57\xf2\x93\xec\x64\xb5\x24\x82\x05\xba\x1e\x67\x46\x4a\xd9\x8a\x30\x7d\x9b\x77\xc7\xc0\xc2\x04\x7f\x4d\x96\x26\xe8\x9b\x38\xfc\xa8\x9b\xca\x5c\x47\xf5\x00\xee\xc0\x47\x0d\x57\x3a\xdf\xee\x47\x71\x2c\x4b\x04\x9f\x75\x13\xcf\x9d\xdf\xb8\x38\xb5\xd2\x8f\x06\x79\x14\xf2\x8d\x40\x16\x7d\x5b\x41\xfc\x6e\xab\x39\x6e\x66\x87\xc0\xd4\xb6\x7c\x9b\xe5\x0d\x05\xe7\x7c\x43\x01\x4e\x5e\xe8\x76\x81\xb9\xc7\x31\xb9\x4e\x38\x30\x7e\xdd\x04\xf7\x4d\x87\x16\xf3\x50\xe4\x0d\x38\x3e\xef\xd1\x1f\xc7\x30\xf6\x33\x54\xd8\x88\xd6\x85\xb7\x76\x5c\x8e\x72\xda\x7d\xdc\x6a\x56\xc6\xe6\x67\x95\xc0\xc8\x4a\xdf\x5a\x97\x09\x23\x62\xbe\x83\x68\xc7\x6f\x9a\xea\xe3\x7c\x98\x59\x48\x81\x32\xfa\x58\x29\xc7\xfe\xf9\x48\xe1\x83\xcf\xb8\x0e\x46\x1e\x66\xd6\x0c\x24\x5d\x90\x49\xae\x32\xd7\x3a\x3b\x06\x86\xa4\xea\xdf\x24\xa1\xcd\xd2\x92\x15\x39\x91\xf9\xc0\x3e\x97\x5f\x2b\xac\x70\x94\x2c\xc6\xa6\x60\x76\x0a\xca\xd3\x53\x8a\x1b\x7e\xaa\x01\xc9\xe4\x1c\xd0\x5b\x9e\x74\x72\x84\xbe\x0d\xbf\x1e\xab\x14\x67\x0e\xb6\x4d\x62\xf3\xa2\x6f\x0b\x37\x69\x45\xfc\x67\x26\x0c\xbf\x69\xe0\xed\x1c\x68\xcb\x54\x43\x5c\xbc\x69\x21\xf0\x9b\xb1\xee\xc7\xb3\x6d\x9b\xbc\x92\xae\x0a\xe2\x9a\x91\xa0\x0a\x56\xb2\xae\xa2\xc2\x74\xf4\x9a\x32\x1c\x38\xa3\x0d\x07\xce\x34\xde\x59\x9b\x84\x69\x99\x91\xaa\xf4\xa1\x69\xd7\xd9\x54\xe2\xf6\x67\xb5\x79\x9a\xc9\x97\x6c\x41\x73\x7d\x4c\x08\x80\x31\xc7\x18\x77\xfb\x9a\xaa\xd5\xae\x52\x9e\x21\xd8\x4d\xdf\x96\x5a\x48\xd3\x44\xd8\x40\x8d\xdf\xde\x87\xe6\xc5\xcc\x76\xbb\x91\xfc\xb0\x2b\xc2\xab\x1f\x16\x11\x6d\xd5\x9f\x1d\x9a\x2c\x67\x47\x26\x49\xbb\x2e\x2b\xe5\x9a\xcb\x35\x2c\xf9\x6a\x92\xc6\xdd\xbf\xd1\xa0\xa8\xe1\x6c\x05\xb6\x80\x2b\x3f\xec\x54\xc8\xf5\x0a\x30\x42\xa1\xd9\x6f\x36\xad\xb1\x7e\x1a\x77\xa3\xa4\x57\xff\xdc\x2d\x48\xc3\x06\x54\xd3\xa2\xc9\x06\xdc\x10\x70\xdd\x5a\x6f\xeb\xd3\x28\xcf\xf6\x8a\x49\x9e\x6b\xf9\xb9\xed\x77\xb5\x50\xe3\x77\xc7\x6a\xb0\xbd\x7b\x3d\x99\x40\xad\xff\x33\xd8\xff\xfc\x46\x35\x3a\x97\xd3\x41\xe4\xb4\x94\x38\xd0\xff\x57\x9a\xbb\x70\x5a\x03\x59\x4f\x37\x6f\xb7\xc1\x30\xb6\xc0\xb3\xbe\xe4\x00\x82\xd5\x15\x63\x20\xfc\x51\xa0\xb4\xaf\xd6\x5c\xf4\x30\x64\xdb\x16\xf3\x11\xe3\x60\x1b\xce\xa8\xe8\x56\x4d\x01\xf5\x61\xe5\x0f\xf5\x88\x9f\xb6\x9d\xe4\xa1\x8b\xeb\x27\x39\xb5\xc3\x1b\x14\x84\x95\xd3\xe6\x4b\xbc\xcc\xd9\xe5\x14\xa7\xcb\x55\x3d\x2d\x47\x6e\x2d\x86\x81\x74\xd1\xc8\x1c\xae\xa0\xee\x16\xfa\x85\x12\x3b\xfe\xa4\x5a\x96\x9b\x60\x40\xc9\x67\x8d\xf9\x58\xcf\xb4\xed\x57\x4a\xb2\xff\xd4\xcc\x25\xd4\x69\x42\x63\xd2\x39\xd6\x20\x0a\x9f\xa4\xd3\x50\x8c\x24\x09\x35\x83\x22\xe7\x7d\x5c\x3d\x76\x18\xee\x32\xa0\x08\xb7\x02\x05\xb7\xbe\x53\x17\x32\xa8\x4e\x64\xd6\x14\x1d\x29\x01\xbd\xff\x9a\xce\x0f\xac\x3d\xd6\x99\xd2\x38\x57\xee\x8a\x33\x43\x88\x3f\x9e\x6e\x11\x32\xe0\x89\x35\xcd\x02\xaf\x8b\x25\x54\xc7\x3e\xc6\xf3\xe7\x94\xa7\xe2\x25\x0d\x6a\x3b\x11\xa8\xa1\xf6\x3c\x56\x19\x2e\x72\x5b\xe7\x09\xad\x28\x3c\x34\x09\x65\xb6\x5e\x4b\xf6\xa6\x82\x50\x01\xc3\x24\x9a\x62\x92\x11\x97\xc3\xaa\xce\x44\xc6\xed\xeb\xd0\x40\xdf\x7e\x41\x46\x84\x7d\x2b\x89\xb9\x84\x17\x0f\x86\xb8\x3c\xda\xed\xdb\x27\xbb\x5b\x5f\x9a\x71\xbc\x45\x9f\xef\x7f\x0b\xd7\x8e\xba\xe5\xb3\x54\x2a\xe2\x4b\x6d\x62\xd9\x39\xef\xaa\x43\x22\x50\x0a\x3f\x05\x87\xec\xad\x9e\x1b\x6e\x23\x1a\x9a\xd8\x28\x97\x6b\xea\xb6\xd5\xd1\xa3\x67\x82\x65\x58\x90\xba\x30\x22\x18\x52\x92\x4f\x55\x2c\xe1\xde\x15\xba\x9a\x6f\x69\xba\x43\x4c\x18\x41\x6f\x11\xa2\xba\x75\xe3\xa7\xe9\xa1\xe9\xe7\xdb\xdd\xcc\x2c\x3a\xf7\x2e\xc0\xa8\xce\x28\x48\x95\xcf\x07\xba\x51\x3e\x2c\x0b\xe9\xe3\xe0\xab\x7e\xaa\x96\xe8\x06\xd6\x2e\x50\xaa\xe3\xfa\x38\x55\xb0\x33\xdd\x41\x54\x70\xef\xdc\x81\x10\x94\x8c\x89\x4a\xa6\x93\xe2\x31\x3f\x9a\x9e\xec\x54\xbb\x1d\xf7\xea\xab\x5a\xad\x7e\x1b\x1a\xa3\x18\x72\xb0\x62\x0b\xf2\xaa\xed\x1d\x6f\xf7\xc4\xb0\x6c\xe4\xb3\x8f\x77\x5c\x87\xa0\xc5\x84\x3e\x2c\xaf\xef\xd3\xea\x15\x47\x50\x8d\xc6\xc1\x86\x41\x2d\x89\x21\x0e\xd5\xf1\x8f\x7f\x0e\x9a\x1c\x6a\xb2\xff\x12\xdf\xea\x3b\x35\xf9\xd1\x6c\x15\x63\x7b\x2c\x89\x4b\xf8\x02\x62\xbe\x54\x27\xdf\x54\x3b\x8b\xeb\xbb\x40\x8b\xd8\xca\x72\x5e\xb0\x8b\x69\x66\x1f\xad\xae\x01\xf5\xfb\xd3\x6b\xf4\x15\xd8\x6d\x56\xa1\x16\x20\xe2\x43\xa5\xed\xea\xdf\x43\x9d\x8b\x36\xcc\x3d\xdc\x0d\x26\x17\xa1\x25\x85\x32\x7a\x92\xca\x35\xfa\x95\x5f\x7e\xaa\x53\x95\x4d\x0e\x63\xed\xad\xdd\xee\xd3\xee\x74\xb3\x36\x57\xde\xa3\x01\xb5\x79\x1b\xf1\x53\x54\x87\x3c\xd8\x6d\xd8\x8f\x62\xd3\xb5\xf1\xb0\x1f\x19\x6d\xf7\x50\x67\x93\x37\x39\xc7\x98\xbc\xb0\x89\x6f\x3a\xe2\xc6\xbd\xab\xef\xe2\xbb\xaa\xe4\x85\x9f\x07\xc1\x11\x3d\x5a\x08\x6c\x25\x7e\x3d\x46\xc8\x27\x54\x6a\x92\xdb\x0c\x94\x04\xe9\x7b\x21\x46\x6c\xeb\x28\xfb\x70\xd6\x98\x45\x30\xb8\x55\x43\xda\x0c\xf2\xe7\x26\x55\x15\xfe\x48\xa7\xf5\xa2\x77\xcd\xd6\x04\xcd\x75\x52\x1f\x12\x41\x8e\x66\x6c\x74\x4f\xb0\xf0\x22\x89\x45\xdb\x9d\xdf\x04\x9a\x9d\x3f\x18\x9a\x8c\x05\xfa\x9d\x4c\xd6\xec\xec\xfe\x4d\x84\x30\xac\xd9\x13\x8d\x75\x55\x16\x39\x4b\x63\xb4\x54\x4e\x06\xaa\xbf\x72\x52\x4d\x0c\xf3\xd5\xcc\x84\x65\x6e\x79\x28\x80\xe3\xe5\x22\x1e\x80\x6c\xdd\xea\x5e\xb3\xea\x0c\x0e\x5d\x24\x23\xf7\xa9\x9b\x27\x72\x34\x4d\x32\x5d\xf0\x04\x72\xd4\x12\x78\xd9\x8a\xf8\x91\xf4\xc0\xad\xc9\x8b\x47\xaa\x02\xf3\x53\x3c\x00\xf4\xb1\x26\x3b\x3e\xa5\x9d\xa0\xf5\x2a\xde\xf7\x8a\x25\xf1\x43\x2d\xb6\x74\x1c\xcb\x1d\x92\x38\x38\xae\xf0\xa7\x46\xf8\xee\x0e\xab\x5f\x7d\x35\xf4\x93\x76\x53\x6f\x03\xa7\xd1\xf5\x91\x6e\x22\x5e\x56\xf5\xe2\xc4\x9a\x4f\xbd\xe3\x28\xb1\xe5\x50\xa9\x6a\x5c\x52\xaa\x1a\x97\x1a\x34\xa2\xe6\xdb\x79\x49\xdc\x8c\x96\xf8\x8f\x7f\xee\xbe\x06\x5a\xde\x50\x06\xc9\x1f\xd6\xfa\x35\x71\x6c\x48\xf7\xd6\x81\xaf\xe7\x9c\xf9\xe4\xe5\xda\x50\x51\x41\x9b\x3e\x44\x94\xe1\x5f\x51\xc2\xcd\xdf\x1b\x9b\x76\xee\xdd\xdb\xee\x66\x29\x5b\xe3\x28\x6b\x2d\xe7\xb3\x15\x6c\x65\x1a\x56\x0b\xeb\x95\x32\x8b\xf2\x61\x56\x76\x6d\x12\xb2\xf0\x32\x62\xf2\x19\x35\xfb\x3d\xa3\xa8\xe4\xa1\x19\xd8\xcc\xb4\xd4\x74\xf4\xb6\x26\xcc\xdd\xd6\x60\x63\x93\x44\x05\x66\x2c\xf4\x13\x4d\x96\xc0\x0a\x8f\xc4\xd2\xd7\xc0\x4e\x1e\x1b\x79\x5d\x8a\x63\x0d\x15\xd6\x3c\x71\xda\x87\x04\x84\xa7\xfb\x85\xb3\x96\xbd\xdb\xf9\x8d\x3a\x6b\x17\x8d\x50\x25\xf0\xcc\x6e\x29\x8c\xea\x2d\x3d\x8e\x4d\x12\x13\x5b\x96\x04\x16\xdd\x2b\x35\x6a\x59\x6f\x98\x32\x1f\x68\xe7\x69\xcc\xa8\x20\x2c\xca\xbb\x23\x25\x56\xba\x1d\x10\x21\xf6\x96\x1b\x2b\x5c\xab\x82\x3f\x4a\x96\x94\xd0\x25\xc9\xb2\xc8\xeb\xb1\xcf\xdb\x37\xd7\xce\xfb\x46\x54\x8b\xb9\x48\x52\xfd\xc5\xb3\x63\x95\xee\xcc\xc1\xf6\x30\xea\xe5\x6c\xb5\x22\x80\xc0\x96\xe3\x6f\x1f\x55\xf8\xb1\x38\x4a\xc2\x34\x86\x38\x34\xfe\x77\x33\xf0\xc4\x57\xae\x45\x91\x6c\xfd\x75\xe0\x67\x1f\x59\x39\x20\x05\x9f\xea\x16\xa0\xe1\xc4\xf5\x27\xbf\x51\x0b\x28\xb3\x83\x54\x44\xc1\xd0\xd3\x40\x77\x94\x5f\x3b\x70\x36\xe1\x9d\x5c\x3b\x0f\x03\x1d\x0c\xd1\xf9\x75\xa3\xfd\xce\xcc\x23\x74\x5b\x30\xa0\x64\x21\x70\xf4\x85\xaf\xab\x29\xd4\x45\x35\x67\x7a\x13\xd9\x3a\x8a\x98\xeb\x88\x39\x48\xa7\x2e\x21\xce\x20\xf9\x7e\x87\x4e\x25\x01\xf0\x21\x11\x17\xc8\x2f\x02\x0d\x53\xea\x50\xde\x21\xd2\x1c\x47\xce\x82\x5c\xfc\x9b\x14\xc2\xf8\x2f\xa8\x5b\xde\x33\x71\x9c\x32\x64\x4f\xb6\xaa\x52\xf2\x18\x07\x19\x38\x93\x9f\x34\x8e\xd3\x15\xc2\x93\x01\x4b\x08\xd8\x2e\x4e\x9e\x4b\xb4\x81\xc4\x33\xb6\xa9\x9a\xed\xa5\x29\x41\x14\x67\x6a\x5e\xbb\xa2\x64\xa5\x1a\x42\x1f\x60\x35\x3b\x95\x47\x27\xc4\xbc\xa9\x1a\x6f\x69\x12\x4d\x28\x1e\x36\x94\x11\x71\x29\x67\x68\x32\x24\x4a\xd5\xe3\x53\xfd\x03\xb0\xf3\xe4\xa1\x33\x32\xa2\x5d\x90\xfe\xd1\xc1\x5b\x0a\x22\xf5\x29\xe3\x0a\x3f\xfb\xa7\xdb\xd1\x60\x50\x26\x50\x05\x45\x0b\xef\x82\x76\x31\xfa\xa9\x6a\x9d\xde\xa1\xf3\x0b\x0f\xfb\x88\x46\xa5\x0d\xad\xed\x4a\xd5\x8e\x58\x72\x4b\xc1\xba\x6e\x39\xca\xf8\x82\x35\x59\x8e\x7c\x11\x53\xe3\x09\x3a\x80\xb0\xd5\x0f\x6b\x0d\xca\x4b\x1a\xea\xfe\xe7\x23\xcd\xd7\xf1\x08\x8f\x38\xcd\x8b\xdd\x55\xc2\x21\x7f\xa0\xfa\x4c\x99\x9b\xd2\xef\xb3\x0c\x9c\xae\x47\xbe\x4d\x33\x2d\xdc\xdd\x4d\x9e\x84\x48\x67\xca\x3f\x50\xd4\x39\x02\x11\xa3\x55\x29\x42\x97\x4a\xd5\xe1\x96\xdb\x7d\x64\x01\x18\x85\xa9\x92\x3d\xb9\xa0\x55\x03\xb5\xf0\x77\xdf\x64\x5d\xa4\x05\xdc\x27\xd6\x65\xfd\xf5\xa6\x11\x0c\x8c\x39\x39\xa1\xd1\x2a\x6c\xde\xd6\xde\x8d\x88\x7b\x99\x19\x4c\x2a\x9a\xec\x25\x22\x26\x23\x36\xfd\x42\x9f\xea\x94\x60\x20\x5b\x38\xaf\x7c\xf4\x88\x1e\x52\x44\x45\x9a\x11\x90\x55\x14\x16\xfb\xea\xe6\x9c\x0f\x6a\xee\x25\xbe\xd1\xf7\x3e\xc2\x01\xfa\x62\xef\x60\x4f\x88\xec\x8b\x9f\xbe\xdd\x0c\xb6\x58\xa1\xf8\x51\xe2\x3b\xaa\x8d\xdd\xb5\xa6\x5b\xa5\x1b\x39\xf4\x75\x41\x7d\xfb\x11\x0e\x78\xf1\x20\xa8\xd6\x85\x78\x13\x28\x0d\xbc\x1f\xe9\xfe\x1d\xe9\x19\x81\x5b\x86\xec\xee\xa6\x82\x8e\xde\x74\x80\xb0\xbc\x1c\xda\x2c\xb4\x5d\x0e\xb5\x82\x17\xa3\x3d\x26\xd9\x67\x43\x0b\x89\x7e\x2d\x62\xbd\x1b\x04\xab\x2b\xca\x24\xe2\x8a\x2a\x96\xfa\x26\x5e\x04\x9d\x03\x1d\xe0\x5b\x94\x3f\xba\x01\xe2\x21\xe1\x8e\x5c\x53\x3d\x19\xb6\xe0\xe0\xff\x08\xfc\x81\x7c\x2c\x50\xa9\xfb\x55\xad\xc6\x73\x9c\xb6\x81\xf3\xf1\xf4\x80\xaf\x06\xfe\xf0\x7c\xfb\x19\x3b\x00\xb5\x09\x21\x8a\x0c\xaa\xe4\x75\x63\x18\x5c\x4e\xd1\x2f\x9b\xf3\xf8\x53\x47\xb2\xfe\x3f\x47\x4a\xfe\x52\x05\xbb\x9e\xed\x3e\x36\xe1\x1c\x35\x7f\xef\x39\x2a\x79\xf1\xc4\x4f\x8e\xbc\xee\xdf\xaf\x3c\xbe\x56\x1d\x1a\xd8\xc1\x67\x15\x72\xfa\x3a\xb5\x71\x79\xbc\x3d\x52\xb4\xe6\x1a\x65\x72\x07\xec\x4c\xe1\x39\xba\x67\xcd\x8b\xe9\x3f\x4c\x9b\x99\xb6\xfc\x57\xff\xce\x9a\xae\xd0\x47\x9e\x37\xf3\xc6\xaf\x11\x40\x09\x5f\xe4\x61\xc2\xdb\xe3\xd1\x4c\x2a\xaf\xde\x61\x59\x50\xcb\xd1\x7f\xe5\xb7\xd0\x96\x12\x64\x5e\xcb\x09\x12\x5c\x75\x1d\x9d\x34\x33\xc9\x2b\x76\x50\x26\xdd\x29\xef\xbe\x76\x44\xc7\xa4\x16\x25\xf8\x0e\xd3\x32\xe7\x47\x23\xad\x2f\x7f\x41\x4b\x2b\x78\x77\xfc\xe1\xaa\xc9\xba\x93\x4a\x8f\xf0\x2e\x1d\xb8\xee\xf0\x75\x33\xae\xbb\x81\xb7\x7a\x79\x27\x78\xd2\xa3\x3f\x32\xdb\x8d\xc0\xc7\x9b\x6c\x3d\xf3\x0c\xff\xf4\x4f\x94\x64\xf5\x25\xc5\xab\xbb\x04\x57\x3a\xfe\x21\x27\x96\xb5\xd8\x37\x93\xba\x8d\xf9\x9e\xa2\xf3\x68\x31\xfd\x4b\xba\xf5\x3b\xd1\xf1\x63\xa1\xac\x78\xad\xa5\xa4\xf5\xdf\x19\xf9\x96\xd8\x3b\xce\x28\x6c\x31\x36\xbd\x49\x05\x22\x67\xa1\x11\x89\x1f\x2d\xe7\x74\x84\x98\x86\x34\xe3\x64\x03\x28\x7c\xbe\x1d\x9a\x2c\x8b\x78\x14\x29\xad\xbd\xa3\x41\xdd\xa1\x5b\x1d\x6c\xfd\x14\x6c\x2d\xfc\x00\xb2\xfb\xf7\xb5\xa9\xe1\xfb\x9a\xe0\x93\x86\x11\x35\x93\xbd\x38\xc6\x0f\xa8\x1e\x46\x70\xdc\x50\xd6\xf7\xa7\x5c\xc4\x8e\x4d\xb8\xe4\xb2\x36\x64\x30\x68\x86\xf1\x6b\x85\x13\x03\x3f\x93\x6c\xc0\xf6\x4f\x1f\xf0\x82\x67\xb3\xb3\xee\x4d\x13\x33\xae\xb0\x26\xec\xdb\x4c\x2a\x7f\x64\x98\xf7\x02\x71\x20\xa8\x2e\x56\xa0\x2a\x4d\xbc\xba\x30\x33\x03\x92\x33\x73\x77\xf9\x7b\xaa\x85\xf6\x3d\xd7\xbd\x29\x9f\xcb\x9f\x33\xcf\xd1\xce\x60\x8f\xa5\x40\x9d\x42\x6f\x06\xba\xc1\x71\x41\x69\x91\xb1\x74\x83\x78\x09\x31\x85\x98\x16\xad\xd0\x89\x75\x2b\xc2\x88\xa7\xbd\x88\x3e\xe2\xef\x22\xc5\xbe\x8b\xa0\x28\x56\x46\xaa\x17\x6b\xf2\xc2\x24\xb6\x6b\x5a\x9a\x12\x58\x13\xd7\x71\xfd\xd7\x84\x84\x5a\xdc\x88\x13\x3b\xfb\xbe\xd2\xe1\xfa\xc1\xc8\x9f\x25\x77\xd5\x6a\xe1\xc3\x37\xdf\x49\x4b\x15\x3d\xe4\x0f\x03\x35\x47\x86\xe3\x99\x18\xb6\xe2\xc2\x35\xe9\x13\xec\xdd\x9b\x23\xe5\xfc\xc9\xe2\x53\x50\x17\xf8\x40\x15\x5e\x5d\x5b\x05\xe2\x5c\x4d\xd9\x30\xbb\xe7\xd7\x1e\xab\xbd\x92\x0e\xd3\x88\xb5\x95\xd8\x12\x54\x09\x16\x9c\x52\xe7\x53\x91\x45\x83\x09\x7d\x34\x1f\xd1\xc0\x20\x9e\x37\x48\x10\xf6\x70\xa7\x7f\x77\x8f\x6e\x1c\x5c\x55\x85\xe2\xcf\x90\x01\xa0\x9e\xb8\x8a\x93\x1b\xfd\xe5\xcb\x9e\x5c\xf4\x0a\xab\x1c\x20\x8f\x3d\x8e\xf4\x4a\x2c\xd4\x5a\x5f\xf4\xde\x9d\xd5\x61\x89\x32\xf8\xee\xa8\xa6\x35\xa5\x66\x34\xe7\x10\xa6\x98\xce\x4e\xb7\x1b\x3f\xc5\x50\x20\x2c\xc6\xcf\x51\x98\x40\xaa\xb0\x6b\x4d\x21\xac\xde\x69\x1a\x79\x0f\x89\xc2\x28\xe3\x74\x6e\x89\xd3\xb7\x94\xf6\xb8\xc4\xa9\xc4\x64\xab\x93\xd5\x65\x22\x7a\xdf\x04\x62\x0a\x0b\xe1\xa2\x12\xb4\xba\xad\x94\x72\xd7\x6b\x61\x3d\xb3\x5d\x32\xd3\x73\xd4\xcc\x0b\x35\x5b\x9f\x9a\x70\x87\x09\x8b\xc7\x7c\x03\xbc\xb5\xe6\xf9\xd8\x37\x29\xb1\x40\x35\xcd\x1e\x2f\xc8\x64\x59\x2b\x82\x6b\x37\xc5\x82\x9f\xe8\xd4\xd5\x29\x3c\xa0\xe1\x2c\x8a\x3a\xfc\xfe\x5f\x52\x78\xc6\x24\xe3\xba\x9e\xda\xdc\x40\x12\x27\xd3\x53\x7a\xd2\x48\x80\x5a\xd4\x77\x05\xcc\xe6\xdb\x23\xa5\x3a\xfd\xd7\x6a\x14\x0a\xc7\x41\xcb\x74\x6f\x25\x64\x26\xed\x3b\xe8\xfa\x69\xdd\x6f\xfe\x77\x75\xf7\xba\xe9\x20\x4a\xb8\x79\x22\xd5\xcb\x47\xb4\xce\xf8\x75\x63\x2b\xa2\x6f\x96\x81\xf6\x51\x42\x3c\x33\xae\xed\xed\x39\x92\xef\x07\xaa\x28\xba\xd5\x30\x1d\x8f\x06\xc3\x2c\x5d\xb6\x54\x5e\xa2\x1d\x76\x2d\x50\xe3\xb6\x77\xe9\xaa\xe5\x64\x7c\x7c\x4b\xba\x6d\xf9\x40\xc2\x88\xe6\xaf\x15\x02\xf1\xaf\x1d\x04\x04\xc6\xc0\xc2\xec\x40\xe2\x7e\x79\xa4\x9c\xb1\x7f\xa8\x0c\x34\xcf\x57\x4b\x45\xea\x0d\x6b\xb2\x02\xb7\x16\x17\xc6\x0a\x6f\x62\x4f\x44\xdf\x18\x3b\xfe\x8e\x8a\x21\x3f\x54\x50\xd1\x30\x0d\x53\xc4\x4e\x3c\xc9\xc3\x0a\xe0\x79\x58\x69\xba\x54\x47\x00\x68\x8f\x12\xb1\x5a\x4e\xb3\x1f\xf9\x00\x33\x2f\xb5\x28\x4c\xab\xf3\xb4\xba\x1d\x49\x9e\xc6\x51\x57\x59\xd2\xc8\x21\xed\x61\x4f\x47\xdd\x8e\xcb\x97\x22\x2e\x83\x39\xae\xe0\x96\xe3\x3c\xfb\xf9\x48\xb9\x3a\xa3\x49\x24\xab\xa2\x69\x58\xb4\x90\x96\x49\xf8\x37\xba\xc4\x2b\x55\x85\xaa\x66\x26\x79\x5b\x2f\x0b\xa2\xcc\x63\x9b\x89\x0e\x43\x1b\x16\x26\x2c\x63\x83\x29\x3a\x4b\x1f\xd2\x1d\x12\x19\xc4\xad\xd7\x35\xff\xc2\x81\x76\xd8\xaf\x0a\x18\x2e\xfe\x9c\xda\xac\x57\x9e\x6d\xd2\x15\x6f\xa7\x43\xd0\xf4\x5c\x11\x7e\x41\x77\xfa\xb6\x04\x92\x64\xf5\x6f\x21\x84\xcb\x58\x8c\xee\xbb\xa8\x7a\xd3\xfd\xc0\x18\xec\xc6\x48\xb1\xb8\x2e\x51\x94\x71\xd3\xd1\x2f\x29\xaf\xa4\x2a\x16\x20\xb8\xef\x5e\xab\x52\x7d\x24\xeb\x3f\x0b\x54\x5c\x39\x8a\xb8\xe2\xd0\x49\x9f\x7f\x51\x30\x76\x10\xac\x52\x7a\x5b\x22\x0f\xf1\x46\xa0\x65\xde\xa9\x8c\x17\x12\x2b\x7d\x37\x11\x48\xdb\x2a\x16\x86\x86\xfb\xa7\x14\x0a\x40\xb5\x9b\xe8\xd4\xbb\x03\xde\xac\x03\x76\x20\x3c\x00\xc4\xec\x1c\xe7\xf5\x04\xcd\xdc\x70\xb5\x53\x6b\xe3\x95\xd4\x4b\xed\x55\x5b\x10\xb7\x1b\x1f\xb7\x1d\x0d\x19\x1e\x57\xd3\x67\x23\x64\x6d\x5f\x6b\x1a\x58\x2c\x44\x71\xcc\x85\xae\x60\xce\xf0\x48\x6a\xd5\x2d\xda\x56\xdb\x71\x96\x21\x73\xb8\xd7\x28\xf2\x53\x64\xe9\x92\xd5\x5e\xb9\x5b\x1c\x44\x1d\x68\x3a\x2d\x76\x28\x82\x20\x9a\x55\x38\x05\xe0\xf1\xab\x39\xd8\xd8\xc6\xbb\x31\x94\x13\x96\x8e\xb2\x75\xdb\xd1\x19\x8f\x8a\xb9\x2d\x64\x27\xbf\xc4\xbb\x6f\x63\xa4\x24\x6e\x37\x5c\xfd\x6d\xba\xcb\x69\x68\x0a\x29\xf7\xe5\xc6\xd1\xf7\xc6\x15\xc1\xa8\x53\x70\xec\x1a\xd0\x3a\x7a\xd8\x7d\xa3\xe5\xa8\xe5\x43\xd8\xfb\xb5\xde\xc4\xd6\xae\xf8\xec\x2c\x29\x32\x64\x11\x7a\x57\xee\xb7\xb4\xfb\xd9\x15\x6d\x87\x68\xca\xb8\x20\x63\x48\x84\xd1\x3b\x8a\x7e\xbc\xa1\x12\xfd\x33\x4a\xc6\x64\x29\xea\x26\x6c\xd5\x82\x42\xea\x84\x16\xb6\x39\xa1\x00\x72\x43\x93\x4e\x56\xcb\xc7\xb9\xfb\xba\x51\xd1\x87\xca\xe3\xed\x43\x7a\x2a\xc2\xc8\xf1\xc7\xc8\x42\xc6\x2d\x38\x5a\x75\xee\xe1\x78\x56\x0a\x99\x89\x3a\xe0\x7f\x91\x45\x26\x0b\xfb\xe8\x70\xa3\x97\x85\x6a\x8f\x5f\x37\x75\x3a\x56\xaa\xd2\xc9\xe9\xce\x8b\x36\xb9\x82\xec\xeb\x85\x95\x47\xd8\x0c\x88\x28\x37\xa8\xab\x20\x63\xaa\xea\x1b\xe0\x70\x3b\xeb\xc5\x24\xa3\x57\x8b\xd5\x89\xd6\xcc\xc1\xcd\x8b\xd4\xfd\x44\xcf\xfa\x0e\x6e\x16\xce\xba\xf1\x76\x44\xb5\x71\xe2\x32\xe9\x72\x79\xe6\x34\x6a\xab\xdf\xe1\x37\x0e\x82\x6a\xba\xcb\x55\x18\x9d\xf4\x25\x2d\xd8\x0e\xd8\x6d\xad\x8e\x17\x3d\x3b\x41\x17\x20\xfe\x13\x0d\xdd\x38\x56\x1e\xe5\xc2\xd7\x05\x91\xea\x46\x60\x87\xad\xd3\x5f\x76\x12\xd6\x9e\x40\xb2\xad\x23\xd5\x52\x2f\x4e\xd3\x01\xec\xa6\x61\x6c\xb0\x07\xc3\x72\x1c\x9b\xeb\x6a\x28\xf6\xd0\x9a\x7f\xca\xbd\x98\xb1\xd8\x14\x86\xd1\x98\x3b\xad\x6c\x50\x4e\x6b\x6d\xa9\x74\x65\x57\x75\xa7\x45\xbb\x55\x69\x5a\xdf\x1b\xf9\x16\xe8\x1e\xfa\xe6\x58\xb8\x98\xc5\x39\x27\x18\x6f\x19\xc7\x1a\x7f\x28\x7f\x76\x74\xea\xcc\x3c\x79\xe4\xbf\xf2\x85\xdf\x9e\xff\xc2\x6f\xcd\xfd\x12\x05\x69\x67\x31\xe4\xa8\x8d\x68\x1e\xb3\x33\xa3\xb6\x33\xbd\x1e\xf8\x41\xfb\x3d\xba\xf7\x62\x8c\xa9\x27\xcb\x57\xb4\x92\xe7\x15\xed\x52\x7b\x0c\x5f\x0d\xf3\x90\xf7\x10\x30\xb0\xec\xb6\x83\xeb\x2a\x5a\x97\xd5\x7a\xd4\xe5\x16\xd2\xe0\x56\x87\xc2\x91\x50\x74\x34\xb8\x11\x07\x83\x00\x49\xab\xd3\x8e\xef\x1f\x6a\x6e\x20\x54\x8e\x6b\x5f\x91\x75\xd4\x1f\x02\x39\x6b\xed\xdd\xeb\x2a\xf3\xea\x59\xe0\x8b\x9d\xae\x49\x78\xa6\x3c\x67\x63\x69\x6f\xba\x4b\x22\xf3\xad\xcc\xff\xbb\x03\x98\xb1\x1e\x9a\x76\xbb\xcd\x13\x74\x1a\xb9\x9c\x31\x39\x8b\xf8\xc0\x7d\x2a\x50\xa5\xc4\x29\x57\xb7\x67\x51\xbe\x24\x59\x0f\xee\xc8\x9f\x8e\xd4\x84\xe7\x4f\x1b\x54\xab\x0e\xb4\x17\xa3\x6c\x20\x48\x50\x35\xfc\x91\x0e\xc1\x25\x15\x01\xf3\xc2\x0c\x86\x4c\xc8\xc5\xb4\xef\x34\xfe\x3e\xbf\x69\xa0\xd9\xb6\x5f\xb1\x79\x61\x33\x1c\x1a\x02\x46\xae\xbe\x88\x80\x94\x9b\x98\x8e\x5d\x3b\x2c\x8b\xd5\x9d\x4a\xde\xe3\xcf\x78\x01\xb1\x8e\xa7\x12\x6f\xdd\x4d\x23\xc6\xcd\x73\x78\x74\xce\xe8\xc3\x75\x5d\xce\x61\x49\x49\x85\xf6\xa4\xca\x83\x93\x22\xaa\x6a\x41\x13\xef\xf0\x3f\x8e\x90\x86\xe2\xe7\x9a\x9e\x45\x81\x3f\xc3\x61\x45\x69\x29\x9e\xc0\xca\xe2\xdf\x50\x7d\x8a\x85\x34\xcb\x52\x82\xca\xfb\x6c\x75\x43\x09\xe4\x6d\x80\x13\x57\xa7\x9a\xe6\x29\xe5\x79\x62\xf5\x58\x5d\x8b\xe8\xd5\xef\x51\x5e\xbe\x49\x6c\x12\x7e\xce\x0a\x4a\x30\x23\x6f\x9a\x38\x71\x03\x13\x25\x8b\x99\x19\xc0\x3d\x19\x7b\xf7\x24\x6d\x51\x19\xec\xf9\x94\xfe\x9a\x2a\x03\xb2\x28\x34\x13\x2a\x74\x63\xcc\x83\x86\x29\x84\x81\x91\x61\x5d\x56\xa8\xa8\xe7\x7e\xfd\x3f\x6c\x79\xf2\x01\x66\x60\xc2\xba\x68\x82\x6e\x96\xf1\x30\x23\xa3\x7f\x2f\x1a\xf2\x81\xce\x16\x4e\xe8\x46\x44\x83\xfe\xcf\x4c\x3b\xae\xee\x34\x5a\xd9\x32\x99\xa4\x78\x21\xca\x68\x14\x70\x50\x16\xde\x1b\xbb\x84\x2a\xe3\xab\x2a\xb2\x65\x9b\x11\x17\x15\xe4\xad\xb3\x23\xdd\xe3\xab\xbe\x34\x9a\xd9\x37\x95\x76\x33\x15\x8a\x43\x12\x03\xf6\x96\x57\xe0\xfc\x49\x49\xf0\xb8\x8b\xe2\xe2\xfa\x8d\x52\x08\x8f\xea\x9f\x2a\xfb\xcb\x7f\xaa\xa4\xe8\x7b\x59\xba\x92\x40\x51\xd3\xc9\x0f\x54\xd1\x08\x29\x24\x9a\x0e\x8e\x98\x5b\xdd\x35\xfe\x8f\xa6\x01\xb8\xe9\xd9\x84\xbb\x65\xec\x25\xa6\x64\xbc\x2f\xd4\x3a\x72\xe9\x4a\x3c\x51\xd3\xa5\xad\xee\xa1\x88\x1a\xb7\x9c\xf0\xfa\xed\xc0\x97\xea\xe9\xe2\xa2\xcd\xa2\xa4\xa7\x18\x5d\x5f\x0b\x14\xc7\x8f\x55\xab\x9c\x40\xe4\x6f\xfd\x7d\x3e\xc6\xbe\xa7\xc8\x50\xdf\x41\x1e\x89\x0c\xf5\x0f\x1b\x75\x41\x17\xa3\xa2\xd8\xd2\x5c\x3d\x37\xd2\x73\xe3\x3d\x6a\xcc\x6e\x42\xb2\x2d\x70\xc6\x93\x2c\xcf\xcc\x6f\x94\xc0\x6b\x58\x0e\xca\x98\xd0\x54\x13\x4a\x73\xff\x53\x25\x3c\x39\xb5\xa6\x48\x70\xdb\x3b\x4d\x8d\x68\x56\x12\xef\xb6\x54\x19\xc4\x1b\x92\xdf\x04\xda\x90\xa9\x2c\xc2\x3e\x4e\x7d\x24\x36\x47\x29\xdf\xe4\xd7\x63\xa0\xaf\x99\x83\xa4\x77\x19\x25\xbd\xd2\x5b\x6a\xe0\x1c\xdd\x8e\x16\x10\xbf\x19\xcb\xd8\x67\x0e\xb6\x33\x5b\x98\x28\x9e\x74\x50\xc0\xff\xf9\xa1\x35\x55\xac\x9f\xf5\xdb\xf7\x57\x9f\xec\xd4\x06\xdd\xb5\x2a\x9e\x06\xa2\x4c\x18\x76\xfc\x05\x86\xe7\xf1\x1b\x75\xf7\x7b\x51\x3c\x48\x33\x56\xb9\xc2\xe9\xc7\xba\xd2\xfc\x66\x2c\x0f\xdb\xbb\x97\xa6\x20\x43\x3e\xba\x40\x8a\xab\x42\xba\xb4\x06\xc2\x74\x60\x1f\xf2\x98\x6c\x2d\xc0\xff\x14\x79\x8f\xa1\x2f\x37\xb5\xa6\xd4\x0e\x8e\x8e\xd4\x50\x0d\xb0\x57\x24\xc4\x38\x30\x9c\x94\xb0\x9f\x58\xec\x7c\x0a\x9d\x33\xc4\xb3\x4d\xd5\x22\xc8\x6d\x58\x66\x51\xb1\x0a\x13\x25\xad\xa5\x82\x38\xca\x6b\x44\x20\x25\xf4\x27\x1d\xd6\xc4\xf5\xd7\x6f\x68\xd6\xfd\x9d\x60\x2b\xfd\x43\xa0\x0d\x26\x29\xfa\x69\x82\x74\x1e\xe8\x09\x16\x0d\xe7\x37\x8d\xe1\xcb\x14\x85\x1d\x0c\xd1\x19\x46\x37\x1d\xd3\x3f\x7e\x3d\xd2\x54\x96\x30\x2e\xbb\x36\x9f\xf4\x5d\x9f\x2b\xd8\x7d\x35\xe8\x19\x7a\x01\xe7\x95\x5f\xcc\xba\x6a\x43\x15\x36\x8e\xf3\xa9\x2a\x8b\x12\x68\x83\x17\xae\xb9\x48\x45\xbb\x0c\xba\x3c\x27\x85\x49\x2c\x42\xdf\xf1\xa7\x45\xd8\xb7\x0f\xf9\x2f\xfb\x59\xc2\x73\xb3\x4f\x78\xa0\x4c\x90\x8e\x8d\xb4\xbe\xbc\x22\xf9\x32\x83\x03\x59\xdf\xc3\xec\x59\x87\xb9\x13\xa0\x3e\x38\x38\xf6\x74\xaa\x92\xe4\xb8\x62\x8e\x0c\x4d\xb6\x94\x2b\x8d\x45\x46\x3b\x89\x82\x9d\xca\x7b\xac\xc9\xd3\x64\x77\xcb\xf5\x32\xa0\xe9\x23\xdd\x40\x85\xdd\x38\x8d\xd4\x56\x86\xc2\x74\xf9\xc2\x06\xf1\xde\xd4\x40\x24\x30\x4e\x18\x41\x96\x7f\x83\xbe\x23\xbe\x3c\xab\x19\x48\xeb\xd7\x1f\xff\xb1\x35\x8e\x57\x81\xbe\xd1\x45\x3d\xfe\xb8\xa8\x4a\xc9\xa2\x5f\x66\x79\xd7\xac\x4e\xb5\x9c\x8f\xc9\x06\x2e\x4a\x9c\x47\x5a\x4e\x40\x9e\xc1\x9b\x58\xb7\x70\xa8\xc4\x89\x7f\xb1\xc9\xe9\x61\x98\xe6\x51\x15\x11\x38\x20\x49\x8d\xa0\x3d\x49\x6b\x8d\xa9\x67\xe2\x98\xda\xa9\xfc\xc8\xb4\xd1\xc2\xf5\x91\xd7\x33\x1d\x6f\xec\xee\x9b\x6b\xe7\x43\xd1\x76\xc1\x38\xf6\x43\xa5\x1b\xff\x61\xe0\x31\x24\x89\x79\x25\x6a\xe9\x42\xe3\x82\xb2\xb0\x1e\x77\xb4\x27\xcf\xbe\x61\x15\x22\x5f\x6d\xf9\x21\xc2\x6e\xea\x4c\xf0\xeb\xb5\xad\xbf\x33\x3b\xeb\xcc\x09\x10\xc2\x91\x3c\x71\x6f\x8b\xdf\xb8\xca\xed\x95\x34\x4a\xe0\x40\xa6\x08\xd9\x07\x38\x71\xbd\x31\x52\xdd\xf8\x5d\x1d\xc9\x13\xc4\xcf\x07\x82\xc9\x32\x38\xfb\x4e\xe0\xe9\xfc\xbf\x08\x14\xb9\x0d\x15\x17\x16\xc9\x25\x9d\x03\xaf\xeb\x8a\x23\xec\x47\x76\xd9\x4e\xaa\x88\x78\x5e\x25\x1e\x3f\x18\xf9\xed\xf7\x4d\x94\x63\xcc\x27\x1e\x2b\xd3\xf7\x4f\xb7\x17\x4d\x2c\xba\x32\xc0\xf7\xac\x63\x05\xf3\x1b\xcf\xac\x89\xb2\x61\x9a\x09\xd2\x85\xcb\x28\x35\x7a\x3b\x3d\x7a\xca\x13\x87\x87\x69\x92\x47\xca\x66\x4c\x56\xbd\x3f\x6f\x36\xc6\x20\x0f\x33\x07\xdb\x79\xe9\xe4\xca\xd1\xda\x63\x14\x74\x4d\x62\x1e\x27\xdf\x25\xaf\xd3\x0a\x93\x70\x0f\x83\x43\xa3\x90\x5f\xbb\x1e\x7d\x5a\x16\x79\x3f\x4a\x44\x74\xcc\x91\xe4\xf6\x89\xa1\xe5\xba\x9a\x17\x86\x7d\x93\xf5\xa2\xa4\xb7\x93\x52\x36\xa7\x7b\xe7\x14\x8f\x28\x63\xdb\x9c\x58\xab\x42\x26\x5b\x87\x06\x1e\xda\x01\x12\xb6\xb0\x4e\xe9\x01\xe0\xa2\xef\x78\x6d\x76\x33\x58\xb0\x59\x51\x27\x7a\x69\x82\xd9\x39\x87\x5f\xca\xfb\x51\x6e\xa3\x6e\x3a\xe1\x51\xac\x80\x70\xd5\x7e\x4b\x6c\xa9\xb6\x20\x09\xab\x54\xeb\xe5\x97\x77\x55\x8b\x0a\x6b\x00\x12\x0a\xf8\x16\x37\xb1\xf2\xbc\xfd\xc3\x0b\x42\x3d\xb8\x31\x6a\x3d\xf3\x8c\xbc\xc6\xe6\x16\x6a\x94\x67\xa2\x9c\xd3\x42\x75\x13\x6b\xbe\xc6\xe8\x96\x39\x26\x72\x8c\x04\x09\x3c\xe6\xed\x98\xea\x75\x55\x2b\xcf\x84\x11\x79\x2f\x29\x05\xe4\x5a\xa2\xaf\x55\x6b\xf3\x30\x2b\x87\x65\x4c\x1c\xcf\x6a\x55\x08\x4a\xd1\x9f\x09\xeb\x63\x24\x4c\xea\xd2\xa7\x65\x52\x64\xab\x79\xc4\xa6\xa9\xe2\x33\xda\x72\x0a\x29\x57\xd4\xa3\x1f\x98\x2c\x8b\x4c\x8f\x41\xa9\x5a\x3d\x4a\x9c\x89\xc7\x73\xc6\x03\xed\xcc\x26\x5d\xaf\x4d\x87\x05\xc5\xe6\xc1\xfc\xa6\xca\x7e\x38\x78\xfe\xc7\xbf\x3e\x51\x95\x50\x9c\xcb\xd4\x36\x85\xc2\xcc\x34\x69\xdb\xb6\x5f\x49\x97\xa2\xa4\x17\x73\x9b\x49\xc6\x44\xd5\xed\xe3\xd7\x2a\x35\xed\xc5\xe9\x82\x89\x1f\x52\x3e\xf1\x1f\x8f\x1c\x79\x7e\xe1\x72\xa0\xf4\xf6\xd6\x6a\xda\x5f\x5a\xa9\xfe\xe3\x1a\x0e\xef\x04\x52\x0b\xd1\x08\x6b\x39\xaf\xc9\x33\x78\x6c\x32\x42\xfe\x8c\x9f\x70\x99\x42\xe1\x17\x79\x64\x81\xa7\x35\xa1\x34\x4a\xae\x8c\x6a\x92\xe6\x0d\xea\xc3\x03\xd3\x4b\x6c\x11\x85\x00\xee\x1f\x9a\xe6\x7a\xe9\xbb\xf4\xe5\xf9\x75\xe0\x11\x19\xf0\xa6\xa6\xb5\x52\x6d\x61\x1e\xbd\xa9\xbc\xe6\xbc\xe2\x33\x64\x69\x59\x54\x67\x12\x1d\xf6\x58\x7a\x57\xf4\x3a\xbc\x32\x26\xd3\x33\x73\xb0\x1d\x9b\x15\xaa\xbd\x45\x21\xa5\xe5\x04\xef\xbe\x8f\x8d\x21\xa2\xad\x5b\x7f\xf7\xd9\xf6\x30\x36\xf8\x0e\x22\x6e\x47\x37\x5c\x20\x8d\xbe\xf1\x3c\x18\xf6\x81\x23\x12\x5b\x8d\x31\xf4\x2a\xf2\xba\x7f\x46\xdf\x8b\x5f\x8f\xd5\x8c\x87\xa6\xdb\x99\x1d\x9a\x88\x17\x27\xfa\x9d\x87\x03\x6f\xf3\x71\x58\x79\x5c\x2e\x64\x69\x12\xe6\x1a\x01\xfe\xe1\x48\x99\xbe\xe3\x6b\xe2\xd4\xbf\xae\xd8\xb5\x5d\x1b\x9b\x15\x93\x31\xee\x1e\xa1\xef\xf7\x02\x0d\x00\xf9\x3d\x87\xab\x59\x8c\xd3\x15\x87\xe1\x40\x62\x09\x74\x10\xee\xde\xff\xaa\xfc\xca\x5b\x6b\xfe\xca\xba\x65\xb2\x14\x25\xad\x2a\x30\x89\xae\x3a\x45\x2c\x7e\x33\xb6\x5b\x66\x67\xdb\x49\xba\x6c\x63\x39\x1c\x44\x75\xd9\x8f\x3d\x8f\x29\x70\xa6\x1d\x44\x36\x9b\xf4\x7d\xa8\x4b\x6a\x26\x75\xa1\x66\x9d\x42\x8b\x04\x15\xca\xa7\x63\xe5\x9d\x64\xfd\x64\x55\x16\x25\xbd\x6d\x0d\x34\xe1\xb0\xaf\x0c\xcd\x71\xce\x81\xa2\x87\x05\xf0\x11\xb6\x02\x3e\x61\x53\x19\x8a\x11\xe4\x49\xbb\x4a\x6d\x39\x30\x24\xe5\x58\xb1\x24\xa0\x37\x30\x89\x52\xf7\xfb\x39\x7d\x6f\x7e\xdd\x94\x07\x64\x66\xc8\x3e\xee\xa8\xe1\xd9\x1f\x1a\xd9\xd6\xb5\x40\x39\x59\x6c\xb8\x9c\x60\x31\x0d\x4b\x6f\x30\x86\x48\x70\x4d\x29\xb0\x9f\x57\xdd\xf6\xf7\xdc\x49\x1c\x56\xc9\x41\xd7\x66\xf9\xa4\x12\xb0\x3b\x89\x8f\x43\x4f\x86\xc5\x5c\x90\xc2\x4c\x72\x09\x20\x9d\xdf\x06\x1c\x48\x91\x99\x65\xeb\x05\x33\x84\x9d\xec\x03\xeb\x19\xed\x0b\x9f\xa5\x10\x7b\x9e\x39\xc8\xf1\xe6\x1a\x50\x11\x02\x34\xa9\xf6\x92\x24\x9c\x0d\x9e\x9a\x0b\x65\xb8\x44\x21\x4d\xb4\x66\x68\xaf\xe0\x21\xf0\x68\x51\xa9\xd2\xcd\xb8\x9e\xf0\x18\xa9\x7a\xa6\x3d\x28\xe3\x22\x5a\xb5\x26\xa3\xfb\x8e\x9e\x0f\x0e\x68\xa4\x86\x5c\xf4\x0a\xe4\x41\xe1\x94\xc3\xc5\x10\xbd\x69\xe6\x84\xd1\x2f\x79\x7e\x98\xab\x2c\x96\xdd\xd3\xa1\x34\xe5\xbf\xdf\xa3\x34\xb9\x1f\xa2\x01\xb0\x80\x5c\x7d\x41\x92\xa4\x83\x28\xb1\x0f\xa6\x73\xca\x73\x4c\xd2\x64\x39\x75\x98\x4b\x27\x80\x58\x7d\x18\x92\x47\xec\x1b\x94\xe9\xf7\x5d\x3e\x13\x9a\x61\x51\xba\xa3\x12\x2b\xf2\x1b\x81\x32\x29\xfd\x86\x1a\xbd\xf5\xa3\x62\x57\x55\xa7\x39\x4f\x61\x47\x27\x39\x42\x6d\x48\x74\xa8\x6e\x6a\x3c\xf3\x07\x78\x9a\x5c\xd6\x2b\x17\x65\xd8\x1a\xe2\x91\xbf\x1f\xf8\x23\xe4\x03\x25\x9d\x1a\x66\x86\x15\x02\x9c\xbb\x86\x3a\x97\xc6\xaa\x99\x6a\xed\x45\x83\xaa\xfa\xf6\x3e\x35\xba\x76\xd8\xdd\xd1\x82\x76\x0c\x8e\x44\xdf\xe4\xb6\x0a\xba\x83\x28\x5e\xb2\xc9\x14\xfd\x22\xd2\xc9\x5f\x8c\xd4\xa8\x95\xbb\xf2\x4e\x47\xcf\x9d\xe1\x10\xee\x63\x38\x9b\x9a\xf7\x0c\xb3\xb4\x5b\x86\x76\xa7\x6f\x56\x80\x4f\x81\x00\xfb\xdf\x68\x66\xc8\x3d\x9c\x73\xfc\x46\x19\x0c\x4d\xae\xf9\xb3\xf2\x9d\x91\xb6\x6e\x1a\x3b\xd0\xaa\x03\x26\xea\x2a\xad\x99\xbb\x4a\xad\xec\xae\x2b\x9f\xc2\x34\x4e\x93\x29\xdf\xb7\xdc\xdd\xf1\x24\x1e\x2e\xfa\x9d\x41\xdd\xa1\x69\xfd\x1f\x07\x9c\x9b\x5b\x03\x0c\xd2\x74\xd3\xa1\x97\x3d\x71\xfe\x02\x0e\x88\x73\x52\x21\xeb\xff\x55\x8d\xc6\x96\xc7\xab\x7b\xe8\x59\xb3\xf9\x12\xee\x39\x26\xe6\xbb\xe8\xd6\x62\xa9\x4d\x82\x70\xeb\x4c\xb5\xaa\xe5\x85\xa0\x06\xd8\x20\xae\x94\x7b\x71\x42\x58\x50\x21\xf1\x87\x68\x80\xed\x84\xec\xb7\xf8\x8d\xd1\xe1\x25\xa4\x77\x7a\x22\x0e\x03\x3f\xe7\x2d\xd9\xe9\xe9\x08\x20\xbe\xe5\xd4\x14\x1f\x5f\x53\x87\xf2\xa9\xb1\x7c\x69\xdf\x1c\xf9\x18\x53\x05\x16\x39\x66\x29\x0a\xb5\xeb\x0a\x47\x81\xc5\xba\xf9\xa9\xb6\xad\x5c\xb6\x19\x3b\xa5\x38\x46\xd6\xe7\x5f\x74\x8c\x2c\xbf\x55\xf2\xc2\x0e\xc8\x72\x99\x8d\xce\x70\x5f\x9c\xeb\x59\xf5\xf5\xf9\x43\x54\xfb\xf5\xbf\xa5\x2f\xc7\x4e\xc9\xae\x99\x0e\xfc\x8d\x77\x4e\x17\xff\xcd\xea\x11\x88\x52\xfc\x53\xee\x0a\xcb\x24\x2f\xc3\xd0\xe6\x39\x59\xe6\x3b\x4b\x26\x3c\x0b\x81\xf1\x35\x0c\x87\x07\x51\x9e\x4b\xd3\x13\xb7\x77\x43\xdd\xea\x0d\x35\x24\x19\x1a\xb6\x59\x46\x77\xeb\x96\x52\x87\xbc\xe5\x85\x6a\x0a\xc3\x6a\xbe\x2e\x69\x78\x13\xd1\xcf\x35\xce\x66\x67\x37\x4f\x8f\x9e\x76\x7f\x36\xcd\x7a\x26\x89\x5e\xa3\xd6\x6b\xbe\xc3\x33\x1d\x8e\xab\x01\xe6\x9b\xc8\x1d\xc5\x07\xaf\xda\x08\xd8\x2d\xb0\x16\x60\xe9\x42\xd2\x65\xe3\x5f\x18\x23\x8f\xed\x6d\xcf\xce\xee\x7f\xb8\xfa\x4d\xac\xae\x3f\x42\xca\xc2\x02\xb0\x74\x97\x10\x9d\x2e\x61\x75\xe1\x04\x98\xea\x28\x74\xd5\x2f\x68\x03\x8b\x1a\x9e\xf2\x74\xd8\xd0\x72\x9b\xe7\xd4\x7c\xfb\x55\x68\x35\x88\x43\x25\xad\x74\x7e\xa3\xe4\x61\xf2\xaf\x94\xd1\xc2\x42\xab\x26\x68\xb2\x25\x87\x71\x82\xd0\xfd\x34\x4b\xcb\x5e\xbf\xa5\x8c\x1f\xa0\x66\xc4\xaf\xc7\xd4\x75\x67\x67\xdb\x59\xd4\xeb\x17\x7d\x53\xd5\x62\x2d\x7f\x64\x61\x21\x49\xda\xdc\x40\x7d\xee\xda\x81\x49\xba\xca\xec\xff\xed\x91\x07\x4b\xbf\x1d\x6c\xb9\xc1\xcf\x3c\x53\x95\x7c\xbb\xfd\x38\x89\xbd\xe7\x58\xf9\xba\x43\xfb\xc0\xf9\xf9\xec\x9b\xf3\xf8\x10\xff\xef\x23\xc5\x17\x5a\x57\x06\x2a\xf7\x18\x5b\xe4\x6a\xf2\x2a\xf0\x63\x81\xde\x41\xed\x84\x2d\xbf\xbd\xd3\x44\x00\x59\x30\x19\xd4\x96\x70\xe0\x7d\x6d\xe4\x7b\x79\x9f\x60\x11\xc8\xe3\x55\xf6\xb8\x65\x96\x97\x11\xf4\xd1\x95\x94\xde\xbc\xbc\xd1\x36\x47\x71\xf4\x6a\x94\xb5\x14\x26\x0b\xd0\x5f\xb9\xcb\xda\xab\x3c\x24\x7e\xd0\x94\xef\x0f\x6d\xc7\x30\x1f\x89\xe1\x8f\x02\xa5\x30\xa1\xa5\xb3\x41\x23\x17\x73\xc9\x26\xed\x36\x86\xcf\x29\x15\x69\x36\x19\xe3\x37\x6a\x96\xb5\x6c\x58\x17\x55\xd1\x90\xff\xad\xe6\x65\xff\x5b\x45\x84\xf9\xe2\x6f\xbe\xa8\x0c\x63\x1e\x06\x90\x8b\xdf\xac\xf9\x7a\xd6\x24\xab\x8f\x28\x7b\xc2\xc7\xd7\x3c\xb9\x88\xc9\xd3\x78\xc2\x6c\x58\x82\x2d\xf0\x19\xb8\x2c\x08\x91\xaa\xba\xd5\x52\x6a\xb7\x9c\x5f\x48\xab\xa3\x1a\xb6\x13\x10\x6e\xac\x51\xa7\xd1\x21\x85\x85\x3d\x9a\x0a\xa0\x23\xb1\x33\x2a\x61\xfe\x70\x13\xce\xaa\x02\x3c\x4e\xf3\x5d\x8a\x02\xfc\x27\xd8\x6f\xd2\xd1\xc6\x6a\xc3\x16\x3e\x8e\xe8\x25\x61\xa5\xfa\x62\xd8\xe7\xe0\x98\x22\xfe\xb1\x72\x84\x80\x45\xaa\x6b\xc1\xba\xd7\x23\x80\xa5\x08\x73\x6f\xe7\x0e\xe7\xb5\x1e\xbd\xb1\x68\x2f\x8b\xf2\x18\x38\x1b\x1c\xa6\xc8\x51\x84\xb4\xef\x49\xf2\x34\xd3\x94\x4a\xdd\x14\x36\x7f\xb4\xfa\x3f\xa0\x5c\x0e\xe3\x71\xb2\xd8\xd2\x48\x8d\xd0\xdf\x18\x29\xbc\xe9\x6d\x15\x3c\x5f\xa7\x9b\x86\xc4\x71\x1b\xa9\x72\xe0\x06\x5e\xa1\xe7\x22\xd6\x9e\x74\x2b\x10\xd5\x77\xad\x29\x0f\x96\x3b\x88\x99\x02\x84\xf6\x45\xd5\xe5\x40\x69\x8e\xde\x0a\xb4\x61\x46\x83\x56\xd4\xfe\xaa\x0c\x59\xe9\x02\x35\xe2\x1c\xc9\xaa\xdf\x11\x47\xb2\x71\xa2\x38\x11\x52\xe2\x32\x2f\x78\xae\x8d\x93\xf1\x54\xa0\xc4\x44\x3e\x56\x1a\x77\x6f\x8c\x55\x1c\xd4\x21\x5f\x30\x85\x53\xb0\x41\xa5\x07\x5b\x0d\x7e\x3d\xe6\x01\x5f\xc5\x15\x62\xd2\x2d\xc4\xab\x2d\xa5\x99\x7f\x41\x35\x5e\x2e\x8c\x5d\x2d\x7d\x54\x55\xe8\x15\x86\x09\x0e\x72\xe6\xb7\x9c\x2c\xb6\x8e\xf6\x99\xed\x45\x02\x2c\x91\x0c\xff\xdb\x23\x25\x93\xf6\x6d\x65\x18\x68\xba\x36\x49\x43\x93\x01\x8d\x2f\x76\x18\xf4\x9b\xfc\x46\x4d\x11\xf2\x38\x5d\xd9\xe1\xa9\x4f\x6f\xd2\x59\xae\x06\xae\xe2\x33\x86\x86\x08\x96\x0b\xe4\x61\x44\xf7\x5d\xa9\x86\xdc\x52\x83\xd1\xc4\x14\x65\x66\x62\xce\xad\xb0\x39\x59\xc2\x01\x51\xf6\x3b\x58\xf7\xc8\x88\x3e\x1a\x9b\x57\x90\x60\xd8\x30\xcd\xc8\xf2\xfa\x90\xcc\xf6\xd8\x9a\x1c\x9b\xed\x23\xa5\x5f\x77\x09\x25\x12\xfa\x68\x7f\xe5\x93\x6a\x13\x47\x8b\x2d\xbf\x3f\xb7\x88\xa5\x6d\x7d\x2e\x24\x5f\x9e\x26\xa1\xcd\x5c\x10\x45\xac\xbd\xab\x30\xd2\x77\x55\xdb\xd5\x26\x05\x89\x16\x26\x62\x16\xe0\xb4\x5c\xf7\xb9\xd7\x8a\x40\x1b\xaf\x26\x61\x7f\x87\x52\xfa\x62\xde\x8f\xf4\x59\xb5\x08\x8e\x1f\xcc\xfc\x22\xf0\x9a\x98\xe8\xd1\x3d\x68\xe7\x1c\x9a\x6e\xe7\x54\xd4\x72\xa6\xc8\xb4\x68\x65\x39\x77\xc1\x8d\x99\xbb\x65\xb1\xaa\x92\xb3\x29\xca\xe8\xd1\x6f\x01\x70\x07\x7b\xf5\x4e\x83\x34\xc6\x4c\x7b\x21\x33\xaf\x45\xf0\x54\xe2\x09\xcb\x48\x91\x6c\xce\x07\x4f\x28\x31\x94\x38\x4d\xa2\x5c\x04\x86\xc4\x6e\x85\x2e\x4f\x7c\x58\x9c\x61\x96\x4d\xa2\x34\x9b\x50\xa9\xc9\xc8\x53\xf9\x37\x11\x41\x64\x7c\x27\x44\xbe\x81\x4d\x26\x54\x2f\x1a\x02\x1b\x98\xf4\xb2\x3f\x2f\xca\x97\x87\xc6\xd0\xcb\xcf\x56\x85\xe0\x72\xd4\xb5\x93\xd5\x2d\x45\x09\xf5\x96\xd2\xda\xbd\x88\xb2\x19\x0d\xfc\x8f\x14\x83\xfc\x8a\xe2\x6e\xc4\xa6\x4c\xc2\xbe\xed\xee\xd0\x83\x58\x40\x0d\x24\xf1\xaf\x2e\x48\xf2\x7e\x7f\x20\xbc\x1d\x78\x3c\xee\xdb\xb8\x1d\xfc\xcb\x63\x4f\xf5\xd9\x76\x94\x2c\xa6\xc0\xad\x79\x96\xd8\x49\x6c\x05\x61\xbf\x36\x39\xcd\xa7\xcf\x74\x57\x56\x39\xd7\x43\x48\x3e\xac\x8d\x22\x0e\x37\xc2\xd1\x88\xa2\xcf\xe8\x24\xfc\x1c\x83\xce\x31\x32\xba\x31\x62\xcf\x94\x06\xf7\xc0\x7c\x90\x2e\x6d\xb1\x88\xbb\xa0\x66\xd2\x17\x6a\xae\xa6\x99\x0d\xab\x92\x66\x87\x92\xe3\xfc\x33\xfa\x61\x70\xe2\x37\x46\xaa\x01\x82\x06\x28\x1e\xd1\x4d\xda\x01\x2c\x7b\x8f\xaf\x23\x3a\x45\x8f\x3a\xb6\x7e\xbc\x68\xf2\x82\x16\x12\x9b\x59\x8f\x14\x1a\x01\x6c\x64\xc1\x3d\x79\xa9\x66\x6b\xf2\x62\x37\x3d\x73\x5c\xef\xbb\x0a\xd2\xc8\xb4\x7c\xd6\xa8\x09\x14\xf9\xf0\xf6\x48\xb9\x1b\xe1\xb0\xd0\xb4\x11\x7c\xb3\x5b\x5a\x78\xed\x0f\x70\xfc\x39\xbd\x1b\x67\xbd\x33\x2e\x76\x39\x37\x47\x66\x64\x2d\x6f\x37\xc4\x5d\x6e\x41\xf9\xca\x57\xce\xcc\xea\x42\x99\xc1\x73\x48\xcc\xd7\xb1\x24\x91\x3d\x9c\xd3\x59\xc6\xad\x07\xda\x99\xd2\x6e\x45\x58\x40\xd2\x80\x7b\xc5\xfd\xdc\x3a\xe7\xd2\x21\xa0\xe3\x74\xc8\xf3\x20\x3c\xad\x93\xca\x32\xec\xa4\x83\xc9\x2f\x98\x70\x29\x2f\x48\x28\x73\xff\xb4\x38\x82\xd1\x6e\x15\x77\x30\x9f\xc7\xe4\x2b\xd6\x80\x98\x8e\x8d\x03\x60\x3b\xbf\x56\xd9\x5b\x66\x87\x10\x65\xc0\x61\xff\x4d\x24\x35\x28\x72\xaf\x2b\x1f\x23\x48\x51\xb3\x58\x60\xe0\xe7\x41\x1f\xb8\x72\x75\x60\x5e\x8d\x42\x93\xa1\x7f\x8c\x24\xeb\xba\x16\x14\xbf\x3e\xd6\xcb\xae\xce\x8a\x28\x09\xd3\x64\xd9\x26\x91\x90\xec\x10\x33\x7f\x4c\x1f\xcd\xaf\x95\xb9\x50\x1e\xf6\xcb\xf8\xb5\x96\xaf\x67\x3e\x09\x7c\x82\xfb\x89\x52\x10\xb0\xaf\x0e\x6d\x92\x47\xcb\x76\xa7\x77\x1e\xdf\x46\x7c\x34\xb7\xcc\xe6\xe6\x78\x65\xb2\x5b\xb6\x08\xaa\x53\xba\x23\xce\x62\x3e\xff\x3a\x3a\xaa\xd9\x9c\x6c\x3d\xf8\x66\x0e\xb6\x57\x4c\x61\xb3\x95\x34\x5b\xe2\xbd\xcf\x6b\x15\xeb\xde\x1d\x3e\x5e\x43\x2f\x78\x58\x11\xd8\x9e\xf4\x5b\x0d\xb4\x6d\x94\xee\x1f\x82\x12\x23\x10\x89\xea\xcb\xa0\x6a\x84\x05\x9f\x13\x90\xa9\x36\x10\xbe\x25\x4f\xf5\x91\xbe\x82\x82\x87\xf2\x41\x78\xb8\x6c\x96\x3c\x52\x24\x95\x7f\x12\x28\x5f\x46\x96\xad\x67\x98\x66\xd0\x7a\x51\xe6\x2d\xe7\xb5\x22\x3d\x66\xd3\x40\xc0\xaf\x05\x35\x52\xbf\xa7\xab\xdc\x0b\x26\x5e\xdc\x3f\xbd\x79\x9a\xda\x09\x82\x70\x54\xf5\xc1\x05\xc7\xf3\x5e\xb2\x36\x99\xf2\x47\x15\xf0\x24\xf8\x23\x4c\x50\xc4\x7f\x5c\xc5\x65\x6b\x45\x42\x24\x96\x67\xd5\xe0\xd7\x2c\xe4\x69\x36\x04\x00\x6d\xef\x5e\xde\x87\xef\x2a\x4b\x80\x77\x95\xc8\xce\x42\x9a\x39\x25\x51\x9c\x99\x98\x27\x73\x17\x38\x70\x38\xfd\x3f\xbf\xdc\x24\xa1\xd2\x4d\xcb\x85\x18\xab\x0c\x85\xd9\xdb\x23\xc7\xbc\xfa\xef\x9e\xee\x68\xad\xfa\x91\x8a\x8c\x38\x97\xb1\x16\x5b\x6b\x5e\xa8\xff\x1b\x58\x65\x32\x4e\xdc\x1a\xcd\xe6\x5f\x38\xd0\x1e\x96\x28\xa6\xb9\x77\x8b\xb4\x4d\x1a\xb9\x0d\x49\x60\x51\x1b\x1d\xbb\x04\xd4\x27\xa3\x0f\x54\xcd\xe9\xa6\xaf\xd9\x84\x13\x21\x56\xcd\xae\x29\x68\x6f\xbd\x1d\xc8\xff\xd3\x57\x35\xf4\xfc\x8e\xa2\x01\xde\x09\xb4\x52\x75\xaf\x8c\x4d\x16\xb3\x4b\x19\xf2\x37\xb8\x33\xf3\xeb\x1a\xe3\x39\x8c\xba\xb6\x3b\xa5\x68\xc4\xdb\xd7\x3c\x20\xed\xab\x0a\x34\xc0\x0c\x29\xcc\x3a\x2e\xf2\x92\x97\x07\xd0\x78\xc1\x79\x61\xb8\xf0\x10\x35\x75\x7f\xda\x9f\x19\x3b\xe0\xe5\xde\xa4\xec\xf1\x08\xd8\xc2\x79\x52\x6b\xc0\x2c\x68\xaa\xd3\x52\x2a\x0e\x6a\x52\xbb\xa1\x08\xfd\xc3\xcc\x0e\x0d\xcc\x99\x0f\x4d\x8b\x87\xa9\x92\xf0\x3c\x3f\x96\x1d\xec\x9f\x6e\x47\x71\x6c\x7b\xac\x03\xee\xac\xe6\xf6\x3b\xdb\xb9\x06\x6a\xe3\x4c\x3b\xb6\xc6\x71\x9c\xd0\x6d\x60\x35\x55\x7e\x33\x36\x72\x98\x9d\x6d\x2f\x94\x51\x5c\x60\xb9\xb0\x92\x10\x3d\x17\x51\x15\x7a\x54\x29\x7b\x77\x6d\xca\x05\x0a\xc2\xd2\x47\x23\xd5\x60\x3d\xa6\xce\xef\x4b\x6e\xab\xf7\xd3\xbc\xd8\xe5\xa5\x81\xd7\x47\xaa\x6f\x83\xf8\x48\xbf\xfd\xef\x3c\x8e\x76\xb6\x2b\x3b\x3c\xde\x16\xcf\x9e\x99\x81\xd4\x21\x72\x90\xb4\xea\x6e\xa3\x0c\xbf\x19\xf8\x8e\xee\x20\xed\x36\x39\x0b\x83\x0d\xcf\xaf\x47\x4f\xf0\xf5\x91\xe1\x4c\x44\x29\x37\xfd\x2c\x62\xdc\x6d\xfa\x59\x7e\xad\x98\xf3\x5d\x6b\x92\xba\x46\xc4\x48\x6b\x44\x34\x4d\x74\xc2\xac\xb4\x78\x88\x52\xa7\xea\xfa\x75\x8f\x1b\x19\xa7\x43\x1b\xc7\xb2\x6f\xd1\x4f\xe0\x54\x89\xdf\x34\xfd\xf1\xbc\xb0\x66\xa9\xe5\xbb\x11\x30\xfe\xe5\xd7\xea\x80\x1c\x66\x36\x8f\xba\x36\x29\x1e\x53\x24\xf1\xdf\x55\x5a\xb3\xbb\x3a\x34\x40\x40\x9a\xf4\xb3\x40\x29\x37\xad\xd3\x76\x03\xd4\xfe\xb0\x02\xfe\x71\x69\x89\x32\x62\x47\xc7\xcf\xff\x8f\x50\x59\xe6\x9e\xdd\xcc\x41\x37\x39\x51\x4c\xbe\x8b\xda\x26\x50\x6c\x4d\x24\x2b\xf1\xfc\xb4\x6b\xb8\x03\x82\x7f\xf4\x74\x1a\x93\x47\x26\xa1\x6e\x0f\xcb\x38\x75\x9c\xea\xe7\xff\xce\xcf\x04\xe5\xc1\x6d\xa5\x78\x24\x49\x74\x64\x62\xc4\x21\x9c\xfb\xef\xd3\x7a\xe7\xd7\x63\xc3\x0f\xef\x5c\x0f\xaf\xa3\x96\x53\xc0\x67\x04\x99\x14\x8d\x7e\x95\x2c\x44\x71\xbc\x9b\xce\x58\x34\x03\x2e\x05\xca\x0f\xe1\x92\x62\x0b\x9c\x55\xd3\x37\x78\xec\x20\x71\xd8\x49\x07\x39\xf6\xc2\x3d\xba\xff\x48\x8e\x8e\xd1\xf2\x47\x7c\xfb\x93\x40\x49\x93\x7f\x1f\x13\x12\x00\xb1\x8e\x36\x9d\x5c\x43\x53\x58\xee\x9d\xe0\xf4\xc0\x12\xe7\xd7\x6e\x3b\xd0\x54\x23\xcf\xa3\xe1\x30\x6a\x79\xcc\x3e\x67\xc3\xfc\x46\xb5\x43\xfa\x69\x6c\xa7\x54\x39\x79\x1b\x3a\xd0\x92\x0b\x6d\x99\xe4\xce\xd5\x5c\x83\x58\x1f\x7a\x6c\xfe\xb7\x6f\xae\xdd\xb3\x30\x57\x44\xcd\x71\x53\xd5\x1f\x37\x5d\x3d\x3e\x88\x12\xbb\x8b\x3e\x0d\x05\x39\x40\x0f\xf8\x80\x8b\xba\x5d\xca\x8f\x09\xd9\x1f\x5a\x5a\x4e\xb2\xa3\x5a\x5c\xce\x18\x7e\xef\x5e\x8e\xe3\x47\x31\x7d\x10\x6a\xb8\x4b\xdc\x87\xe9\x12\xc3\x24\xb1\x1d\x36\x94\xcf\xce\x79\x05\xea\xba\x8e\x55\x0b\x10\xdd\xee\x8e\x2b\xb3\x4c\x96\xa5\xe9\x40\xc1\x28\xce\xaa\x8e\xdf\xd9\xad\x93\x97\xf9\xfd\xf3\xed\xd9\xd9\x87\x3c\x99\xe8\x0c\x30\x75\xce\xbd\xbb\xda\xa3\xfc\x66\xe4\x45\x12\x37\x14\x2d\xfa\xba\xf6\x61\xfe\x1d\x6c\x39\xe9\x86\x79\x17\x4d\xf4\x48\x90\x0d\x7d\x30\x8e\xbf\x9f\x69\x9b\x2c\x8b\x96\x05\xea\xe8\x06\x8e\x7e\x90\xb2\xd1\x6c\x8d\x1c\xa6\x3c\x05\x11\xe4\x6b\xcb\xa9\x65\x35\xce\x4d\x86\x59\xf4\x9a\xd0\xdf\x1d\xc4\xd3\xc3\x3d\xc7\x0e\x3c\xd9\x99\x03\x83\x0a\x0c\x31\x15\xc4\x59\x07\x97\x9c\x73\xf6\x91\xd7\x35\x44\x3d\x33\x11\xcc\xec\xf0\xc7\x31\xa1\xc1\xc8\x9d\x95\x5c\xc4\xc9\xda\x1f\xb9\xb7\x02\x9f\x78\x1c\xa7\x3b\x2e\x20\x92\xea\x8e\x0b\x29\xf5\x49\x6d\xe3\x55\x58\x08\x2f\x3d\xf0\x36\x6c\x4d\xf9\x66\x67\xdb\x8b\x52\x56\x89\xfc\x7b\xcb\xd9\x60\x5d\xad\xf1\x71\xca\x64\xb5\x46\xd1\xad\xf1\x04\xb7\x86\x31\xc0\x0a\xc9\x25\x70\x20\x81\x00\x63\x32\x4c\x70\xf9\xb5\x17\x5c\x88\xa3\xe1\xa4\x12\x45\x60\xf9\x2e\x7e\x13\xa8\x2a\x07\x54\x28\x7e\x3d\x96\x41\xed\xdd\xdb\xce\x6c\x37\x15\x48\xba\xa2\x52\x3e\x2f\x6f\x6a\xc2\xf2\x76\x11\xfd\x47\x54\x34\x67\x94\x39\xe4\x19\x05\xce\xef\x95\x36\x07\xce\x13\xc2\x5f\xb8\x49\xfc\x7a\x6c\x09\x3f\xdb\x36\xdd\x57\xca\xdc\x09\x84\x0b\x4f\x4f\x6d\xff\x13\x0d\xe9\xd4\x4b\xed\xa1\xc9\x8b\x32\xd3\x20\xa9\xd3\x0a\x2b\x7b\xda\x75\x13\x16\x52\xe3\xff\xba\xe0\x9e\x7d\x7d\x3b\x6e\xbe\x08\x62\xd0\x20\xed\x2a\x9c\x91\x18\xfa\xf9\xb6\xa8\x56\x56\xdb\xb7\xf7\x85\x29\x45\x30\xde\xd3\xa9\x99\x0a\xa8\xae\xd1\x25\x25\xa7\x76\x93\x76\xb9\xe8\xd6\x6e\x5d\x6b\x2f\xbf\x4c\x16\x11\x93\x7e\x68\xc0\x36\x5e\xec\xc7\x44\x59\xae\x1c\x00\x1e\x8e\x31\xb1\xe6\x1b\xed\x26\xcb\x2c\xbe\x79\x75\xda\x89\x78\x0d\xd5\xd4\xd2\xd4\xf1\x48\xa0\x05\x9b\xd8\xc5\xa8\xd8\xe1\x6b\xf4\x23\x74\x7d\xfc\x5a\x89\x9a\x5c\x25\x90\x80\x8b\x54\x4e\xb7\xfc\x5f\x8e\x94\x57\xd2\x0d\x35\x21\x34\x59\x11\x2d\x92\xb9\xde\xec\x2c\x6f\xe3\xd7\x03\xbf\xa5\x5f\x57\xcc\x4b\xf8\xfd\x3a\x06\x3d\xf2\x94\xe3\x88\xd8\xfc\x66\xeb\x88\xf6\xe0\x0b\xed\x43\xd3\xf3\x64\xe9\x80\x12\x44\xbb\x27\xdd\x50\x12\xb3\xff\x9c\xea\x67\xa7\x26\xed\x8a\xf1\x53\x14\x93\x90\xf9\x5c\xa6\x33\x5c\x1a\xbf\xf4\x7d\x10\x52\xfe\x27\x9c\x3a\x82\x47\xa2\x74\x18\x35\xdb\xcd\x40\x2d\xac\x63\x54\x7e\x3b\xe3\x0b\x67\x27\xfe\x9f\x1c\x6e\xe0\x06\xcf\xb7\x97\xec\xb0\x00\x7d\x57\x8a\x2e\xfa\x48\xa9\xba\x94\x0f\x7d\x16\x21\x9a\x20\xd3\xfe\x94\xbe\x16\xbf\x0e\x7e\xf5\x41\x75\x51\x59\xb8\x90\x32\xa1\xf0\xb7\x0a\x30\xc3\x31\x18\x5f\xeb\x70\x93\x88\x45\x91\x99\xae\xc4\x7d\x31\x2e\x6b\x39\x0b\x87\xdb\x75\x6f\xaf\xc1\x70\x17\x7d\x1b\xb4\xfa\xcf\xe3\xce\xb8\xc9\x60\xb5\x7a\xd1\x8d\x3e\x49\xb7\xdf\xa9\xff\x79\x2c\xd4\x49\x8a\xdc\xc8\x7a\x8f\x72\xcf\x4f\xa2\x9a\x2f\x00\xb6\x77\xfc\xba\x4d\xc9\xb1\x38\xa5\x6c\xd3\x6d\x8d\xcf\xbf\xc8\xa1\xf6\x9a\xea\x8f\x35\x7a\x59\xc7\x36\x67\xa5\x30\xed\x33\xe7\x7c\x1d\x9d\x6e\x2f\x2a\x51\x64\x16\xdf\xa6\x6c\x04\x0b\xec\x0e\xda\x35\x38\xa8\xb6\x81\xe9\x8e\x6d\x3f\xde\x54\x9e\x39\x48\xd2\xab\x51\xde\x6f\xf9\x86\x11\x04\x1f\xf8\x75\xd3\x51\xdd\xb3\xc6\x75\x0c\xb8\x2b\x84\xd8\x28\x2d\xa2\x06\x91\x9b\x15\xb3\x6c\x63\xb2\x89\xcf\x35\xb6\xfd\x74\xe0\xd3\xa0\xd3\x63\x6d\xb3\x6a\x41\x46\x49\x98\x59\x93\x0b\x62\x15\xdf\xfd\x06\xa1\x5b\x2e\x8e\x14\xcf\xfc\x23\x6f\x8e\x9d\xa5\xc3\x09\xcf\x8f\xba\x40\x37\x1f\x8b\x03\xf2\x5c\x22\x09\xe6\x1f\xd9\xc0\x66\x59\x14\xc7\x24\x2b\x8e\x93\x69\x7b\xe7\xff\xdb\x18\x09\xa0\x82\xd6\xda\x1e\x2d\x31\x17\x25\xbd\x7c\xc2\x8f\x8d\x91\x07\x6a\xa6\x34\x92\x81\x9b\x4d\x0e\xf2\x61\x3a\xc0\x01\x7c\x48\x96\x27\x48\x45\xfc\x7a\xed\x11\xcf\x7b\x29\xe3\x62\xca\x5f\xcf\x37\x68\x53\x39\xfd\x96\x43\x22\x77\x75\x06\x79\x1d\x7a\xf5\x97\x50\x08\xa8\xe2\xdd\x9b\x94\x44\xe1\xa4\x26\xe7\x07\x1e\x92\x76\x4b\x99\x92\xdf\xaa\x91\xf6\x15\xde\x88\xe6\xaf\x59\x29\x4a\x92\x9f\x7f\xd1\xb9\x4d\xd2\x9d\x95\x31\x44\x75\xcb\x91\x2f\x9d\xd0\x28\xbc\xcd\x06\x66\x22\xd9\x84\x98\xa2\x6e\xe6\x79\x4d\xf1\x8f\xaf\x29\x17\x20\x33\x1c\x66\xe9\xb2\x89\x77\x69\xdd\xae\xa0\xde\x64\xdb\x3f\xed\x80\xe5\x0a\xd0\x76\x89\xaa\x56\x1c\x64\xd7\x91\x79\x60\x8e\x84\x81\xbb\xd0\xfb\x7c\x18\xbf\x3a\x36\xe8\xdc\x3f\xbd\xdf\x1b\x97\xb7\x7c\x93\xf0\x2c\xad\x3f\x7e\xad\x8a\x79\xd3\x1b\x98\x22\x0a\x27\x7c\x81\x7d\x51\x69\xcd\x70\x7b\x03\x0b\xf3\x9d\xf1\x98\xb1\xb7\x3d\x48\x33\xae\x34\x1c\x59\xa9\x8a\x01\x38\xcd\xd0\xcd\x76\x0d\xd6\x2a\x1e\x08\xeb\xd4\x37\xd1\x06\x61\x6f\x25\xe2\xd4\x85\xe9\x8e\xca\x85\xe6\xa8\xea\x9f\xf6\xb2\xa8\x1b\xa7\xe1\x12\x93\xf5\x70\xe4\x1c\x0d\x94\x5b\xf2\xd1\xc6\xfc\x25\xb7\x45\x11\x73\x32\xf9\x20\x36\xea\x63\xaa\x29\x93\x17\xf1\x2a\xf1\x4a\x71\x13\xb6\xaf\x29\x96\xd8\x8f\x75\xc1\xf6\xe3\x91\x57\x2a\x19\x27\x2e\xef\x9b\x63\xc8\x3b\xc2\x8e\x24\xd2\x2a\xa9\x6e\x30\x4a\x27\x43\x0d\xa2\x24\x72\x43\x4d\x1c\x9e\xab\x5f\x13\x7f\x68\xcd\x3f\xc8\xa3\x9e\xc8\x6a\xb9\xec\x7a\x9f\xcf\xae\xd5\xe8\x21\x31\x61\x51\xdd\x84\x9d\x4a\xe9\xe4\x63\x8d\xdc\xfb\x58\x51\x8a\xae\xe0\xbc\x12\xa1\x22\xdf\xb3\x38\x83\x4d\x24\xa8\x16\x65\x0b\x32\x6e\xd6\x54\xdd\x7c\xaa\xd3\x63\x8c\x62\x45\x23\x59\xd1\xaf\xb8\xe6\x75\x12\x0b\x6e\x11\x4c\xfc\x3f\x8c\xfd\x69\x90\x24\x67\x7a\x1f\x86\xcf\x54\x77\xcf\x81\xc1\x00\x18\x1c\x7b\xe8\x08\xd6\xf2\xbf\x41\x48\x22\xfe\x90\xc5\x50\x30\x1c\xf2\x87\x2c\xce\xf4\x12\x3b\x1d\xda\x46\x47\xcf\x2c\xb0\x44\x30\xc2\x78\x2b\xeb\xed\xaa\x44\x67\x65\x16\x32\xb3\xba\xd1\xb0\xfd\xc5\x61\x3b\xfc\xc1\xa1\x08\x2b\x1c\x92\xe9\x83\xa6\x24\x9a\xa4\xc4\x90\xb5\x64\xec\xf2\x92\x97\xd9\xdc\x03\x7b\x11\xbb\x38\x16\xe7\x2c\x80\xb9\xef\xa3\xe7\x9e\xe9\x99\xe9\x71\xe4\xf3\x7b\x9e\xf7\x7d\xaa\x2b\xc1\xd0\x27\x64\x62\xba\xaa\xf2\x78\xdf\xe7\xfc\x3d\xbf\x5f\xeb\x31\xd5\x0d\xea\x0e\x63\xc2\x49\x6e\x57\x31\xc1\x29\x8d\x12\x0c\x3c\x42\xee\x83\x60\x84\x57\x8c\xee\x03\xbf\x0c\x44\x26\x4a\x47\xf7\x4a\xed\xc6\xeb\xa6\x28\x30\x75\x6e\xb3\xc6\x08\x19\xa4\x8f\xb0\x8f\xab\x09\x55\xfb\x4a\x41\x9c\xcb\x93\xde\x31\xaf\x2a\x42\xba\x0b\x04\xda\x96\xae\x04\x5d\x91\x68\x7e\x6e\xc6\x9d\x50\x05\x24\x33\xf1\xca\xab\x62\x6d\x5c\xd1\xd2\x81\xca\x8f\xa9\x70\xbb\x6d\x20\x3b\x87\x71\x90\x47\x5a\xaa\xcd\x81\x59\x0e\xdd\x70\x87\x35\xb9\x5f\xd7\x25\xea\x44\xa4\x45\xbe\x60\x3b\x14\x1e\xc1\x7a\xdf\xd6\x54\x6b\xe8\xd5\xa2\x8c\x73\x56\x4f\x35\x24\x66\xd8\xed\x15\x0d\x4d\xf8\x1c\x78\xec\xf1\x71\xd5\x54\x1f\xc4\x66\x25\x5d\x58\xc8\x1b\x55\x64\x09\xb0\xde\xef\x2a\xa4\xfa\xef\x2a\x5e\x93\xcc\x92\x92\x79\x48\xbb\x76\x7e\xaf\xd4\xf8\xd4\xf4\x5a\xdd\x7a\x23\x2d\xba\x57\xa4\xb0\xcc\x62\x23\xa5\xca\x5a\xca\xb1\x31\xa1\x27\x9f\x6c\xe6\x85\x49\x3a\x5c\x35\x40\x44\xf0\x8d\x40\x85\x0a\xdf\x18\x7b\x5e\x07\x9f\x6d\x76\xec\x92\x8d\xd3\x81\x94\xca\x99\x60\x16\x3f\x25\x6c\xb3\x9b\x7f\x6a\x66\xa6\x99\x17\x69\xe6\x24\x58\x79\x54\x5d\x2b\xe1\x1e\x77\xa9\x5a\x18\x9b\xbc\x67\x59\x94\x02\x8d\xa5\xd3\xa5\x22\xa1\xe0\x41\x67\x6c\xdd\xf5\xe0\x33\x0a\xc5\x9b\xc5\x91\xa9\x76\xba\xc9\x46\x40\xfd\xb7\x69\x0d\xf0\xf1\x48\x2e\xdb\x4e\x79\x28\x05\x30\x91\x33\x30\xe2\x88\xdd\x50\xa9\xe5\x7f\x08\x54\x50\x77\x45\x51\xea\xf4\xa3\x4e\x0c\x14\xd3\x33\x22\x1a\x1d\xf8\xba\xd8\xc5\x1a\xb2\x93\x2a\x6f\xa7\x55\xe3\x81\xe8\x57\xe9\xfa\xf8\x58\x8d\x83\x2d\xf0\x50\x86\xd0\x79\x34\xdc\x24\xe7\x3f\x77\x4f\xab\xca\xef\x8c\xe0\xa8\x5d\xd7\x66\xd6\x77\x6d\xc6\x71\xa3\xd3\xd5\x72\x4c\x14\x8b\xf0\x37\x15\x8b\xf0\x37\xc7\x3e\xf0\xfc\xf4\xc1\x66\x4a\x12\x2b\xd5\x0b\x41\x26\xb4\x4a\x3b\x8c\x8f\x6b\xe0\x1d\x48\xe1\x84\x52\x43\x48\x06\xe8\xbd\xf1\x49\xe0\x7b\xde\x49\x3b\x52\x72\x05\x97\x02\x45\x79\x78\xc9\x95\xf6\xc2\x2c\x45\x90\x3e\xab\x85\x4a\x24\x2a\x3c\xa6\xea\x7c\xec\x18\x85\xc0\x41\x91\x79\x9e\x24\xc3\x89\x6f\x3e\xa6\x9a\xe9\x97\x95\x59\x59\xb4\xd9\xc3\xb4\x08\xc8\x03\xfc\xe9\x2f\xb4\xbc\x90\xc1\x51\xca\x0b\x9d\x56\x97\xb0\x02\xfd\xb3\xbf\x8d\xae\x22\x9c\xd4\x3a\xe9\xe0\x63\xad\x1d\xd1\x08\xbf\x4b\x88\x03\x70\xb2\x15\x69\xbc\xd4\x15\x15\x3f\x0f\x44\x5b\xf1\x2e\xfe\xce\xaa\x02\x98\x32\x84\x18\xef\xff\x01\xa2\x98\x85\x5d\xbd\xc6\x29\x12\x82\x43\x52\x08\xfa\x15\x55\x82\x97\x3d\x27\x84\x57\xf4\x2d\x32\x9f\xf2\xe8\x68\x1a\xfd\xf7\x9b\xb3\xb3\xbb\x7c\xb7\xed\x3a\x71\xbd\x8b\x0a\x2b\xdd\x8b\x14\xea\x54\x1e\x8a\x8e\x0f\x4a\x18\x17\x28\xea\x65\x11\xab\x40\x11\x75\x30\x15\x84\xf0\xa3\xd3\xdd\x23\x04\xb9\x8e\xf6\x36\x7f\x5e\x85\xb9\x77\x3c\xf2\xde\xc4\x36\x97\xf1\x36\x37\x1a\xe9\x49\x84\x2f\x29\x4b\xcb\xdc\xaf\x34\x7d\x2f\x44\x29\x3f\x29\xb7\x7e\x91\x8d\x32\x28\xda\x38\xef\xc5\x77\x20\x76\xc7\x20\x3e\xa2\xb4\xeb\xaa\xa5\x96\x5b\xdb\xcf\x09\xfb\x0d\x57\x8a\x22\xb6\xab\x20\xed\x9f\xf5\x63\x61\x1e\x0e\x7a\xa8\x54\x74\xa9\xa3\xbc\xd8\xef\x92\xd9\x47\x5d\x6d\x9d\x20\xbc\xb8\xb0\xbb\x5a\x68\x8c\x92\x87\x8d\x37\xca\x47\xfd\xf0\x05\x01\xc9\x22\xd1\x52\x96\x21\x09\x7a\xa8\xf0\x4c\x37\xb4\xd6\xe4\x21\xd5\x11\xcb\xd3\xa4\x3b\xa5\x98\x31\x2e\xe3\xe2\xe0\x2a\x6f\xaa\x92\xe4\x23\x74\x6b\x8a\x96\x68\xda\x91\x57\xf9\xe7\x61\xfa\x69\xd2\x65\x9a\x69\xa7\x6e\xe7\xe9\x47\xa6\xa8\x15\x88\xb8\xb9\xd1\xf2\xc0\xdb\xbb\x48\x91\xe1\xfc\x6f\xd2\xb3\xc6\x95\x5e\xd7\x0a\x2d\x5b\x81\xa5\x77\xc5\x74\xff\x7a\xc0\x04\x82\xca\xda\x76\xd0\xb5\x00\xbb\xb8\x81\x32\x0c\x4b\xf3\xb5\x94\xde\x02\x8a\x35\x70\x20\xab\xb0\xdf\x22\x73\xa7\x34\x9d\xd6\xc7\xac\xd7\xfe\xd9\x66\x24\x38\x56\x37\x06\xfa\x16\xfd\x3e\x1f\x2b\xc8\x79\x2f\xaa\x16\xa6\x89\x81\x30\x11\xd1\x18\xe5\x52\xae\x2a\xc4\xf7\x96\x96\x7f\x2b\x26\x8e\x41\xeb\xe1\x08\xee\x3c\xe6\x98\xf9\xae\x9c\xba\x88\xbb\x8a\xbb\xb8\x0d\x89\x20\x55\xc6\x3b\xcc\x72\x57\x30\x73\x5d\x41\x1f\x31\x6c\xae\x97\x3d\xb7\xf7\x99\xe6\xf4\xc1\x87\xaa\xe0\x8c\x53\x69\x55\x8c\x79\x4b\x31\xbe\xff\xb7\x58\x07\xd8\x17\x8c\x71\x77\x62\xd0\xd5\xeb\x91\x39\x21\xac\x08\xb4\x92\x26\x56\xbd\x0c\x1e\xbf\x52\xbc\x93\x23\x81\xca\xed\xee\xc1\x20\xb2\x3d\x85\x7d\xc0\xc6\xdc\x4d\x8b\x88\x1b\x9a\xa5\x8f\x2c\x6f\x39\x5c\xe5\xc0\xa6\x83\xd8\x6e\xaf\xae\x79\x04\xb5\x8b\x27\xf3\xff\x6b\x79\xaa\xda\x3f\xfa\x2c\x6b\x2c\xc2\x58\x61\xfb\xa2\x1f\x75\xbf\xf4\x68\xcf\x06\xcd\x46\xc2\x5c\x8c\xf7\xfa\x41\x35\x12\x57\xc6\x94\xde\xb3\x50\xda\x2a\x24\xc6\xf9\x31\x38\xd5\xc1\x67\x9b\x83\x2c\x5d\x88\x0a\xa3\x88\x31\xb0\x68\x4f\x07\x9e\xac\xf8\xb4\xaa\xf0\x25\x29\x6a\x74\xa2\x8f\x49\xcf\x04\xc0\x80\x0b\x8a\x8d\xe2\xdb\x2a\xbb\x89\x92\x22\x8b\x42\x03\x21\x90\xe9\x51\x92\x18\xbc\xb5\x77\xb4\x6f\x2c\x1f\x8f\x94\x54\x50\x18\x99\x38\x7a\x55\xc8\xbe\xb1\xf8\xae\xe3\xb5\x38\x6e\x1e\x0f\x44\x42\x64\xc3\x7f\x55\xcb\x45\xb8\x44\xa5\x66\xaa\xbb\x8c\x70\xa6\x3b\x5f\xec\xdf\xf1\x2d\x87\x3f\x18\xc4\xd6\x4c\x29\x97\xbd\x41\x4b\xd1\x55\x51\x36\x55\x54\x60\x2d\xdf\xf7\x13\x0a\x5b\xf7\xb4\xfc\x03\x8c\xa3\x64\xbb\xaf\xc7\xa0\xe7\xc0\x29\x10\x5e\x96\x3a\x11\xf2\x2b\x28\xef\xe1\x7a\xcf\x8d\x8c\xe3\x5c\x2a\x35\x69\xb3\xeb\xbb\x84\x29\xc7\xfc\x02\x17\xc0\x67\x04\x30\xb0\xb9\x58\xb0\x7f\xb6\x69\x8a\x5f\x82\x31\x81\x91\x1c\x61\xcc\x3d\x5f\xa7\x2c\xdd\xb6\x3d\xb3\x24\x79\x10\x1c\x07\x0f\x4c\xf3\x49\xa0\x75\x00\x17\x0a\xdb\xd9\xe6\x73\x85\xef\x97\x3e\xb4\xb9\x10\x28\x00\x21\x22\x5a\x45\xe7\x7c\x80\x2d\xd6\x1f\xd1\x7a\x94\x22\x8d\x23\x2e\x1d\x0c\x62\xbb\xcd\x23\x46\x5f\x53\x4b\x70\x43\x8f\xb6\x5e\x54\x18\xb2\xa9\x47\xb9\xef\x81\xbf\x3b\xa9\x5d\xaf\x6a\x34\x10\xc1\x77\x4e\x33\xd9\xf0\x03\xe7\xf4\x98\xe5\x1b\x8a\x20\xef\xf2\x58\x59\x6a\xdf\x3e\x19\x78\x1d\xe1\x76\xb9\x1a\xa8\x72\xcc\x55\xd7\x2f\x1f\x98\xac\x88\xc2\x68\xc0\x5b\x44\xca\x70\x5a\x28\x1f\xd1\x14\xb6\xe3\xe3\x2d\x9d\x1f\xa4\xc3\xec\x33\x6a\xd8\xe8\x2c\x86\x38\x61\x26\x6e\x94\x8e\x65\xe5\xbf\xd9\xd3\x22\xaa\x55\xf8\x97\x2b\x81\x0e\xc8\x4e\x50\x10\x85\x1f\xba\x89\x20\x0a\x15\xd5\xeb\xe4\xfd\xb1\x6a\xae\x91\xc9\xc5\x1e\xdd\x0d\x8b\x29\x55\x87\x86\x23\x36\x6e\x80\xee\xd9\xa9\x93\x57\xee\x4d\xca\x64\x74\x67\x30\x6b\xdf\x09\x3c\x93\xc1\x24\xd2\x62\x38\x41\x68\xca\x62\xc2\xe8\xb3\x18\x5e\x45\x3b\x65\x3b\xc6\x51\xc5\x44\x28\x71\x67\x96\xd8\x42\xc4\xbd\x85\xcc\x3a\x0a\xaa\xb7\x03\xdf\xea\x5b\x32\xc3\x18\xed\x4a\x91\x7c\x52\xf5\xff\x1f\xd5\xa0\xed\x9f\x69\xb6\x2d\xd8\x59\x9c\x22\x35\x34\xdf\xf8\x58\xd5\x17\x5e\x32\x03\x93\xd8\xdc\x3e\xe6\xa1\x10\x0f\xb4\xaa\x07\xea\x64\xf2\xaa\x47\x22\x79\x3a\x9e\x3b\xcc\xc8\x95\x40\x09\x18\xe9\xf1\xb3\xc6\x2a\x3d\x5f\xe0\x10\xd6\xe1\x91\x98\x7d\x68\xd5\x0b\x5b\x30\xb2\x07\x65\xe2\x8f\xf1\xde\xb8\x6f\xa1\xa4\x43\xb6\xaf\x2a\x20\xcb\xc7\xb4\x20\xb0\xee\x2f\x2a\x8a\xd3\x89\x55\xc5\xae\xb1\xab\xe5\xb9\x77\x3f\x44\x50\x84\xb5\xb1\x15\x53\x47\xc2\xc2\xee\xf7\x77\x94\xe7\x43\x9b\x29\x30\xee\xb1\x40\xa9\xb3\x1d\x53\xd3\xff\x0b\x20\x46\x72\xc8\xb2\x07\xa9\x0c\xc9\xc7\xab\x52\xb8\x88\x92\x85\x2c\x4a\xba\xb2\x79\xdc\x13\xaa\x7e\x5d\x40\x2f\xe2\x67\x17\x6c\xdf\xc4\x56\xd5\x04\x6f\x07\x2a\x71\x39\xa9\x47\x65\x90\x11\x89\xb0\x9b\xcf\x90\x07\xb6\xb0\x59\x4e\x75\x56\xec\x9b\x5b\x4a\xb3\xe5\x38\xb5\xca\x58\xd8\xb9\x8e\x7e\x36\xef\xa5\x9d\x0e\xc8\xf4\x10\x9c\x9c\x54\x74\x09\x27\xc7\x68\x5a\x66\x66\x9a\x21\x73\xfa\x0b\xeb\x8f\x2a\x9c\x5d\x1d\x4b\xc7\x67\x66\xe6\xd1\xdc\x6a\x78\x1a\xae\x13\x0a\xd2\x70\x42\xf1\x48\xd8\xce\xb2\xc9\x3a\x39\xab\xd3\x62\xa9\x9e\x28\x95\xe3\x62\xea\x27\x54\xd3\x27\x28\x86\xe1\xe3\x96\x2a\xb3\x8f\x07\x9c\xf3\x7b\x9b\x26\x59\x21\xd2\x45\xcf\xf9\xf7\x97\x74\x15\x7c\x5c\x07\x23\x1d\x26\x36\xe9\xb8\xd6\xb4\x8c\x23\x35\x1c\xcb\xda\xcf\x46\x0b\x1d\x06\x03\xc8\x3a\xf9\xe5\x63\x6a\xd6\x88\xc2\xc5\xe6\x71\x0e\x18\xcb\x43\xa5\x9a\x54\x79\x47\x81\x75\xa3\xa4\x32\xc3\x0d\x8f\xf2\x7a\x57\x5d\xf6\xbb\xce\x06\x87\x69\xbf\x6f\x92\x8e\x83\x35\x20\xdf\xb8\x8f\x77\xc3\x27\xae\xb0\xb6\x30\x4c\x12\xd5\x74\x67\xc4\x94\x2a\x7e\x1c\x55\x79\xd1\x4b\xd6\xc4\xe9\x30\x8f\x57\x26\x3d\x82\xf1\x9e\xae\x0c\x30\x93\x09\x0a\xcf\x87\x34\xf5\xf6\xa5\xa0\xc6\x53\x2f\xc4\xe6\x69\xba\x44\x24\xdd\x9c\x83\xf0\xc9\xc8\x10\x10\xcb\x4e\x4c\xf9\xde\x37\xcf\x83\x8a\xc6\xa7\x22\xb3\x7c\x57\x4f\x51\xaf\x01\x24\xc4\xff\xe2\x58\x5c\x3a\x51\x5e\x64\x26\x2c\x84\xcb\x19\x26\xe2\x8f\x03\x85\xca\xfa\x63\x4f\xa9\x93\xe6\x79\x14\x73\xd5\x07\xdf\xf4\xb1\xaa\x3b\x7d\xec\xfe\x70\x39\xb3\x46\xfa\x06\xae\x8e\x50\x7d\xbd\xcc\x2b\xfb\xb6\x7b\x94\x84\x66\x60\x48\x5f\xca\xcd\xf8\x1e\x53\x93\xd4\xc7\x14\xef\xea\x42\x36\xac\xae\xb6\xe0\x6f\xe6\x5e\xad\xd2\x4a\x39\xaa\x6a\x64\xf6\x95\x70\x98\x43\x8d\x85\xdb\x4e\xc1\x58\x63\x00\x09\xed\xdb\x6e\xe0\x85\x49\x43\x1a\x0a\xba\x4b\xc1\x8b\xc0\x78\x6b\x36\x44\x1e\x75\x13\x13\x8f\x8a\xea\x9e\xd3\x52\x1b\xe7\xc6\x9a\x46\xa4\xc8\xdd\x1f\x98\x2c\xca\x53\x1e\xba\x92\x49\x64\x6f\x03\xd0\x2a\x17\x25\x33\xdd\xaf\x1b\x76\x99\xae\x09\x57\xbf\x9d\xb6\x3c\x76\xec\xa3\x64\x7a\xb1\x7b\x4e\x29\x24\xd2\xa5\xb1\x92\xea\x73\x7b\xa7\x9b\xf9\x30\x1b\x64\x11\x77\x5c\xa7\x1d\xc3\x14\xdd\x08\x43\x29\x94\xf6\xe7\x44\xcb\x11\xab\x9a\x0c\x23\x6b\xf8\xc0\x75\x3d\x3c\x74\x5d\xbd\xda\xb4\x1d\x47\x5d\x53\x14\x29\xfd\x31\xca\x76\x5f\x0f\x3c\xb2\xf1\xeb\xe3\x45\xbf\xb9\xe6\x82\xb5\x42\x14\xc8\xf3\xc2\x81\x22\xa9\x3e\x5e\x57\x4b\xef\x9b\x84\x52\xe7\x15\x5e\x99\x30\x18\x30\xa8\x7c\x5c\xd3\x70\x98\x6f\xb6\xa3\x8e\x13\x2d\x75\x44\x7d\x8e\x8d\xe6\x5c\x5d\x47\x3c\x8e\x92\x45\xa9\x2f\x8a\x2c\x95\x2a\x80\x5c\xaa\x61\x6d\x6b\xb6\xab\xcd\xd0\x49\x97\xa1\x11\x0c\x4f\x0b\x21\x70\x18\x8e\x63\xe5\x84\xd6\xaf\x56\xbb\xdd\x66\x45\xb4\x10\x59\x70\x9e\x30\x18\x20\xd0\xc0\x80\x9a\x2b\xec\x90\xe3\xd3\x4e\xf6\xa2\x76\xb2\x17\x15\x58\x2a\xac\x1c\x0b\x6d\x10\x04\x4d\x98\xb3\x76\x0a\x52\xaa\x97\xe8\x43\x68\x9b\xbc\x94\xae\x88\x7e\xbb\x14\xf7\x7c\xb3\xec\xb4\x56\xb3\xb6\x03\x53\x6d\x56\xee\xee\x21\xb2\xbc\xac\x66\x9a\xf0\x7b\x58\x76\xa7\x34\x7b\xfc\x55\x55\x19\xed\x59\xd3\xd0\x90\xa6\x75\xac\x36\x3e\x71\xa9\xb9\x7d\xc5\xf6\x07\xc5\x76\x9f\x2a\x80\x82\x08\xaf\xe5\x7e\xa9\x46\x50\x99\x49\x09\x8b\xfa\x0c\x5d\xc2\x48\xae\x06\xb0\x18\xe1\xf8\x36\xd6\xc6\x8c\xf5\xf4\xc1\x66\x3b\x95\x85\xe6\x78\x1f\xd4\xa0\xe5\x6e\xb7\x49\xfa\x83\x61\x3e\xe1\xfb\x64\x10\x0b\x71\xec\x3d\x5e\xcb\xe0\x9c\xfb\x4c\xdb\x64\xb1\x45\xc6\x0e\xe4\x89\x14\x38\xf8\x4c\xe5\xec\xf9\x30\x9e\x18\x81\xa9\xe9\xe1\x77\x7a\xc6\x88\xbe\x6f\x8d\xe5\x31\x33\x33\xcd\xd8\x9a\x2c\x91\x95\x8f\x28\xe2\x16\xbe\x80\x4f\x94\xd8\x72\x66\x97\x2a\x13\xa1\x1b\x1b\x17\x34\x5b\xd1\x05\x15\x36\x87\xc3\x98\x86\x95\x21\xd5\x28\xfd\x51\xba\x55\x44\x07\xb7\x14\x2c\xe3\x86\xca\xeb\xce\x8e\x44\x0d\x4b\x76\x65\x24\xdc\xb9\xa0\x08\x40\x0e\x97\x23\x00\x83\xea\x9a\xd1\x92\x44\xd9\x4f\x58\x9c\x7d\x1c\xdb\xce\x00\xca\x98\x3e\xc8\x04\x17\xb7\x91\xf2\x61\x01\x6d\x50\xb8\x21\x7c\x65\xe3\xfd\xe1\x03\x80\x17\x98\xb0\x27\xb8\x14\x66\x1b\xa7\x97\xe9\x4a\x7e\x3e\x57\x7b\x37\x78\x54\xed\xaf\xdc\xc6\xa9\xe1\xf1\x7b\x20\x81\xee\x07\x8a\x52\xf1\xbe\xa3\xa6\x09\xd3\x38\xb6\xdd\xc8\x14\x9a\x10\xe6\x8c\x22\x84\x39\x53\x63\xc1\xe7\xaa\x40\x88\xaa\x30\xfc\x7a\x44\x22\x40\xa1\x8c\x2f\xf8\x81\x86\x24\x4c\xb3\xcc\x86\x05\xd3\xce\xb3\x0a\x21\xae\x47\x24\x09\x9f\x18\x2d\xd8\xcd\xef\x3d\xd0\x9c\x7b\xf6\xc0\x94\xb7\xdf\x73\xb4\x61\x24\xf6\xd6\xc5\x9f\xd2\xc3\xac\x2f\x52\x7c\x2d\x52\xc1\x6a\x2f\x0f\xdb\x0d\x8d\x09\xf5\xe3\xd8\x1a\x1e\x9b\x0f\xdb\xe4\x1e\xc3\x82\x45\x23\xe0\xdb\x99\xa2\x89\x4f\xea\x36\x66\x16\xe5\x8b\x13\x0a\xd3\x8d\x6c\x08\xbb\x7e\x8b\xa2\xbe\x1b\xc7\x3a\x1d\x7c\xb6\x99\xd9\xbe\x89\x30\xf7\x89\xde\x2e\xe5\x68\xb3\x1b\x6b\xa5\x86\xa7\xaa\x61\xa4\x28\x6f\x9b\x04\x54\x76\xcc\xd6\x4a\xaf\x0b\x73\x68\x17\x35\xac\x7d\x7c\x4c\xf0\xb9\xbd\x2f\x34\x5f\x1a\xe6\x6c\xdd\x55\xa8\x38\xa9\x88\x3e\x26\xc7\x20\x0e\x73\xf3\x73\x4d\x33\x30\x59\x81\x92\x82\x97\x6c\x72\x41\x72\xe9\x8b\x60\xd7\x15\x47\x67\x66\x17\xd2\xac\x3f\xa5\xb9\x87\x83\x31\xa5\x04\x07\x64\x75\xd0\xf3\x8b\x5a\x92\xfe\xa6\x33\x53\xf9\xc0\xba\xfe\x2d\xfe\xed\x08\xbe\x8d\x4f\xca\xcf\xa8\xf9\x92\x34\x8e\x16\x1c\x0f\xfc\xbc\x70\x1a\xc3\x67\xf0\xb1\xab\x71\x55\xb9\xe4\x6e\xdf\x77\xff\xc3\xd2\xfb\xa0\x47\x56\x15\x5d\xe1\xdf\x05\x89\x10\x32\x86\xcf\x6a\xf2\xde\x1f\x6b\xef\x70\x9a\x22\x20\xd8\xc1\xa9\x55\xb5\xef\x6e\x63\x9c\x92\x5b\x4c\x8a\x21\xfc\x07\xaa\x02\x74\xa9\x54\xaa\xd3\xa8\x48\x6e\x1c\x1f\x23\xbb\xa8\x76\xa1\x54\x0b\xd8\x4f\x89\x4c\xb9\xef\xae\x8e\xc7\xfc\xd3\x07\x9b\x26\x6b\xaf\xf0\x27\x46\xc2\x75\x89\xd0\x37\x17\x76\xe7\x9e\x3d\xd0\xec\xaf\xe4\x04\x7c\xa8\x52\x8f\x86\x17\xd0\x1c\xf5\xc0\x9a\x3b\xa2\xdb\xe5\x8c\x66\x8e\x0b\x0c\x98\x73\xe0\xe3\x1a\xde\x83\xd9\xe6\x60\xd8\x8e\xa3\x50\x49\xfd\x41\xf9\x94\x8f\x35\x3f\xf4\x60\x60\x4d\x06\x52\x3a\xfc\xf6\xcf\x14\x70\xe5\xdf\xd2\xa3\x94\x14\xa6\xe1\x84\x96\x3e\x54\x08\xa3\x34\x8b\xba\x51\x82\x78\xde\x8d\x2a\xdd\x0a\xf4\xf8\xd6\x58\x88\x38\x33\xd3\x2c\xb2\xa1\x50\xd3\xfa\xc9\x22\x37\x65\xe4\x59\x10\xc2\xcc\xda\x64\x9b\x9f\x98\x01\xaf\x1f\x05\x5d\xbf\xfa\x78\xcb\xc7\x24\x9c\x34\x09\x67\x83\x36\x33\xb4\x82\x10\x94\xdc\xae\x15\xc3\x8e\xd3\x21\x6f\x60\x5d\x30\xe7\xe3\xb1\xd7\x3e\x33\xd3\x6c\x1b\x21\x95\x60\x44\x1a\xbd\x3b\x41\xa7\xd5\x88\xbb\xb4\x7f\x65\xc2\xf7\xad\xd0\x5e\x41\x0c\xc9\xb4\x0c\xc0\xd7\x5c\x55\x71\xdd\x30\x1f\x9a\x78\x62\xf3\xd4\xb7\x9a\x4b\x3b\xe0\x34\x75\xc6\x0d\xd3\x2c\x2b\x96\x0d\x98\xef\x80\x79\x33\xa9\x9c\x28\x1c\x9a\x8a\xfc\xd7\x76\x86\x31\xde\x1e\x62\x8f\x63\x3a\x10\x39\xa6\xea\xc5\x0b\x84\x3f\xd8\xe5\xc1\x74\xaf\x05\xa3\x4a\x4b\x7e\x0e\xf9\x3c\x3d\x75\xee\x96\x70\x04\x84\xd2\xcb\x46\xa9\x74\xaf\x8e\xd3\xb3\x40\x1f\xa4\xd1\x9a\x9c\x9b\x9f\xfb\x22\x7f\x41\x81\x8b\xc0\x7b\x3b\x82\x00\x04\xc6\xf2\xba\x96\x26\x3c\x3f\x82\x20\xee\x44\xe9\x83\xca\x9f\x9d\x28\x47\xf8\xc9\x55\x71\xf4\x02\x75\x9e\x1d\x8b\x6a\xf5\x4b\x62\x89\x71\xad\x78\xea\xf0\xde\x78\x6d\x5b\x5a\x9e\xa0\xeb\x46\xa0\x38\x17\x6f\xc1\x70\xe2\x89\x6c\x5b\xa5\xb4\x4e\x3a\x94\xbe\x7f\xb2\xb5\xb5\xb9\xe2\x34\x3b\xdb\xec\x0d\xfb\x0d\xba\x44\x16\x97\x2e\x3d\x8e\xf0\x82\xf2\xb9\x2b\xb6\xb3\x9b\x1e\x80\xd3\xc7\xad\x7e\x10\x91\xe7\x1d\x5c\xbd\xa0\x79\x1b\xfb\xf6\x71\x77\x9c\x93\x40\xf2\xe0\xbf\xfa\xf7\xfd\x24\xeb\xf7\x3e\x0f\x33\x4c\x5b\xed\x97\x7f\xb1\xa5\x38\x49\xb7\xad\x7a\xa2\xe0\xa9\x55\x2f\x95\x78\x03\x9b\x8b\xeb\x9e\xf4\x66\xb1\xb5\x77\xae\x7a\x74\xe0\xe5\x11\xd6\xff\x34\xc9\x1f\xd7\x92\x00\xf4\xbc\x71\x67\x47\xf0\x88\x37\xd6\x68\x3d\xc2\xcc\x1f\x47\xea\x80\x4e\xdb\x04\xca\xac\xe8\x57\xdc\xd2\xd4\xe1\x08\xf5\x45\xe0\xb2\xe1\xc4\x90\xdf\xd6\x08\x87\xa3\x41\xe3\x4b\x5f\x73\x7d\x6e\x0f\xec\xde\x28\xb5\xca\x50\xe0\x25\x5e\x3f\x42\x25\x17\x05\xc8\xab\xa5\x17\xd4\xbd\x1e\xf8\x6e\xe4\x0f\x03\x35\x06\xc1\x4c\x4a\xdc\xe8\x44\xf8\x85\x4a\xc1\xf6\xd6\xe6\x58\x7d\xff\x6c\x95\xd8\x64\x61\x94\x5b\xc5\xa4\x04\x91\x0e\x3e\x56\x40\xdc\xc4\x46\xdd\x5e\x3b\xcd\x7a\x69\xda\xc9\x27\xa8\x50\xcf\x9c\xf3\x81\xef\x02\x4d\xac\xfa\x60\x6e\x1c\x87\x5c\xa5\x37\x26\xeb\x9a\x08\xfc\x85\xfc\x67\xa5\xfe\x48\x4d\x5f\x64\x21\x4a\x58\xa1\xd4\x03\x4f\x8e\x61\x65\xf3\x49\x8d\xdf\x7c\x06\x71\x84\xab\xb8\x21\x3a\xff\x40\x71\x25\x7e\x30\x56\x9a\xad\x02\xa0\xbe\x75\x0d\x51\xc5\x57\x3d\xfd\xa9\x95\x0e\x19\x49\x20\x4e\x2f\xad\x28\xf6\x9e\x36\x85\xef\x8d\x64\x20\xc3\x18\x81\xaa\x63\x96\xf7\x2c\xf3\xaa\xc2\xf4\xf2\x30\xe5\xd0\xfb\x19\xaf\xab\xe0\x58\x89\x6f\x28\x8c\x72\xde\xb3\x31\xea\xd1\x6e\x68\xef\x5e\xe0\x21\x0b\x1c\x67\x49\x7f\x77\x8f\x92\x10\xe9\xf6\x6d\x52\xc5\xc1\xd5\xfa\x41\x5d\xe7\x6d\xac\x1f\x3e\x51\x88\x0b\x93\x59\x33\xe1\x11\xfd\x0d\x92\x44\xc1\x52\x86\xdb\x40\xb0\xb7\xb3\x6e\x95\xe5\xe9\xb0\xe8\xd9\x0c\x6f\x1d\x2b\xeb\x8f\xb1\x79\xf8\xc4\xd5\x49\xf3\x22\x4b\xfb\x56\xd8\x70\xe4\x2a\x14\x2b\xcc\xdb\xca\xf8\x7c\xe5\x97\x7e\x6d\xa2\xf1\xfc\x9c\x13\xaa\xad\x3e\x82\xaa\x25\x0b\x3b\xe2\x52\xcf\x94\x0f\x6a\xd5\x9c\x49\x56\xa6\x27\x31\x48\xdd\xbb\x07\x04\x9c\x8f\x55\x32\x3c\x28\x56\xa0\x19\xea\xe0\x40\x6e\x2e\x14\xcd\x08\x61\xbb\xab\xf6\x8d\x50\x9e\xee\x76\x41\xa7\x59\x94\xea\x27\x80\x04\xd7\xb5\xb8\xe0\xf5\xc0\x57\x34\x7a\x69\xdf\xa6\xcb\x09\xd5\x57\x2a\x2b\x03\x0b\x07\x5d\x2d\x3e\x1e\x5b\xb2\xfb\x67\x9b\xbd\xa8\xdb\xb3\xd9\x04\xbd\x43\xe0\x52\x76\x51\xf4\x81\xca\xc7\xb6\x55\x45\xbe\x7a\xbc\xf4\x33\xb4\x6d\x6b\x93\xc7\x3c\xf1\x68\x63\x55\x61\x8b\x3e\xa6\xbc\x15\x8f\x75\x9d\xd0\xae\xb0\xc2\x6b\x64\xbf\x90\x6c\x9f\xd7\x72\x7f\xf7\x30\xbc\x08\xbf\xfc\x10\x78\xe7\x90\xe7\xdc\x2d\xa9\x89\x28\x93\x01\x74\x95\x4e\x71\xdd\x51\x0c\x7c\x84\xf7\x85\x4b\x79\x03\x7b\x1b\x51\xd5\x55\xb2\x86\x58\x5b\x37\xd9\x03\xe2\x33\xac\x34\x25\xcf\x91\x62\x6e\xe6\x0a\xa5\x95\x80\x36\xe0\x1a\xb4\x14\x95\xb0\x98\xa7\x14\x84\xde\xe1\x06\x44\x9d\x37\xae\x28\xc6\x66\xd3\xc9\x77\x68\x4a\x34\x3d\xe9\xf6\x53\xe4\xa5\x40\x6f\x6c\xd0\x4d\xc0\x53\xb0\xeb\xc5\x13\x61\xd1\x0f\x8e\xfa\x02\xc5\x47\x32\x41\x8d\x59\x4c\x84\x5c\x09\x3c\xaf\x51\x3b\x4a\x68\xa0\x4d\x24\x3f\x19\x7c\xc5\x27\x8e\xa0\xa7\x63\xfb\x69\x98\x99\x10\xcd\x01\x7c\x25\xfa\xbe\x28\x67\xec\xa0\x97\x8f\x68\x95\xb9\x0a\xe0\x64\xde\x55\xd3\x68\xa0\xd4\xa2\x1a\x8d\xa3\xe8\x80\x5e\x3b\x1f\xeb\x9a\xdc\x2b\x45\x66\xfb\x16\xd1\x00\x1c\xed\x56\xcd\x9f\xb8\x75\xb5\xc6\xcc\xdb\xa4\x1b\x47\x79\x8f\xc2\x44\xbc\xee\xef\x28\xac\xfc\x21\x0d\x0e\x3c\x3a\x36\x40\xf6\xe2\x8b\xc4\x28\xc1\x81\xac\x04\x1d\xbe\x5f\x37\x3e\xf8\x3b\x33\xd3\xb4\x45\x2f\xa9\x12\x8b\x99\x19\x61\xe1\x0c\x1a\x8a\x91\xd3\xa3\xec\x17\xd2\xb4\x68\x9b\x38\x06\xd5\xb2\x14\xc9\x1a\x6e\xf8\xf3\xa6\x92\xc3\x3d\x5e\x87\x4a\x0e\xd3\x24\x1f\xf6\xa5\x62\x83\x25\x47\xa6\x79\xe3\xbc\x9e\xe7\x3b\xac\xeb\x69\x26\x9e\xf2\x63\x10\x4c\x4c\xc5\x01\x02\x2d\x70\x98\xad\x0b\x9a\xc6\x07\xae\x14\x6b\xae\xd1\xf2\x60\xb5\xc2\x10\xcd\x76\xb5\x5b\x91\xff\x1c\x51\x45\xcf\xbb\x0a\xf5\x7a\xa1\xf4\xf0\x09\xae\xa2\x0b\xd3\xe1\xc3\xbe\xae\x19\x0e\x5d\x81\x07\xbd\xfd\xab\x0a\xae\x38\xde\x5c\x9c\x3e\xd8\xec\xa7\x95\x31\x6f\x28\xa6\x01\xa4\x3e\x32\xdf\x2a\x5f\x9e\xd8\x2e\x54\xec\x7c\x6b\x14\xe2\x8c\xbc\x75\xa8\x8c\x83\xd8\xf6\x58\x4d\xad\x79\xae\x99\x10\xa6\xd8\x3f\x05\x9e\xf2\xe0\x13\xa5\x93\x61\xc2\x97\x87\x11\x86\x2b\x3d\x17\x14\xd2\x56\xc1\x5a\x3b\x06\x2e\x3b\x88\x6d\x61\x27\x46\xc8\xe4\x5c\x02\x7a\x93\x3e\x03\xbc\xc6\x95\x1a\x76\x94\xf9\x66\x1c\x2d\xda\x18\xbd\x5b\x38\x24\xc8\xd8\xf0\xb1\x43\x77\x2e\xd9\xa4\x63\x8b\xc2\xa8\xae\xed\x25\x85\x76\xbf\xa4\xfc\xbc\xe9\xa7\xc3\xa4\x78\x60\xf4\xca\xdd\xcc\x27\xeb\xa0\xc9\x6d\xf8\x02\x0c\x2e\x15\xf5\x83\x35\x0d\xaa\xba\xa3\x18\x16\x40\x13\x8a\x84\x6e\x15\x8b\x93\xff\xa8\x54\xf1\xd3\xb8\x48\xcb\x73\x7b\xe7\x9a\xf6\x95\x41\xea\x4a\xb3\x80\xf4\x43\x83\x90\x8f\x55\x2d\x3a\x59\x32\xbc\x59\xf1\x1c\x30\x8d\xc6\xc7\x81\x57\x6d\x36\x39\x44\x07\x9c\x40\x55\x65\xb3\x91\x6e\x6d\x04\x7e\xb0\xed\x0e\x5d\x35\x97\xd0\x35\x65\x66\xbf\x3d\x8c\xab\x50\x90\x9a\x79\xf8\xf7\x8f\x02\xff\xb7\x1f\xd5\x8c\x60\x67\x36\x4c\xb3\x0e\x74\x38\x5f\xe0\xcc\xec\xff\x45\x9e\x07\x7b\x79\x44\xd1\xf1\x9f\x50\x5d\xe0\xd8\x16\x85\xcd\xb6\x2b\x59\xab\x0f\xe1\xb8\xf9\x04\x1e\xcf\xd5\xe6\xf6\xcf\xea\x56\xe4\x0b\xec\xbd\x6e\x12\x1c\x06\x8d\x98\x53\xa5\x72\x6b\x37\x35\x59\x79\xbc\x6c\x56\x10\xbc\x49\x37\xdd\xf7\x89\x2e\x91\xfb\x95\x71\x61\x9d\xc7\xf4\x6d\xe7\x11\x9f\xdc\x1f\x42\xdc\x86\x20\xef\xb0\x1a\xfc\xdd\xd2\xaa\x2e\x01\xee\x66\x12\x98\x18\x20\x7a\xfe\x27\x5c\x8f\x68\x9c\x4d\x78\xd9\xc6\xf7\x90\x8f\x4a\x62\x03\x47\x88\x5d\x77\x3d\x50\xbe\x1d\x84\x1a\x32\x12\xa9\x74\x82\x7e\x4a\xd9\x89\x60\x39\xc8\xa7\x89\x3d\xad\xde\x32\xa2\x94\x9f\xc1\x0a\xe2\x27\x7f\x3a\xf6\xea\xc0\xfe\x4e\x22\x33\xaa\x21\x7c\xa5\xf4\x55\x83\x2b\x75\x28\xd7\xd0\x0c\xa2\x82\xeb\x13\x42\xa3\xd7\x70\x8a\x9c\x0d\x0d\x6d\x39\xa9\xde\x76\x98\x45\x7d\xd0\x29\x4a\x29\xe3\xbe\x0a\x6a\x8f\x68\x42\x8b\x1b\x23\xb1\x7c\x5c\x80\x25\x18\x71\x1f\x13\x37\xf2\xc9\x58\x81\x66\x7e\x6f\xb3\x6f\x3a\x8c\x6a\x44\x56\xb6\x4d\xeb\xf8\x43\x72\x40\xaa\x35\x75\x60\x44\x8c\x67\x52\xc9\x46\x29\x9c\xc8\x6c\xfa\xf5\x11\x97\xe7\xa6\x29\x8a\xd8\x24\x85\x99\x54\x0c\x17\x1f\xa9\xf7\x70\x5e\xa1\x7a\xde\xd6\xe4\x46\xeb\xba\xf7\x12\x15\x51\x98\x66\x03\xd2\x2f\x65\x92\x57\x5a\xdb\x42\xf8\xfa\x98\x04\xf0\xc3\x6c\xc9\x46\x31\x6f\xd3\xd9\x59\x07\xc5\x69\x38\xde\xb5\xb3\x75\xee\x7b\x60\xf2\x9c\x1b\xef\x2e\x71\xae\x9e\x92\x38\xc9\x1a\x71\x80\x28\x29\x6c\xb6\x14\xd9\x65\x97\xe4\x81\xda\xee\x0d\xfa\x2d\x3e\x56\x35\xf5\x70\x25\x8c\xa3\xa4\x8b\xf6\x91\xd3\x52\x72\xb4\x07\xf7\x94\x44\x2e\xb8\x49\xd0\x80\xf9\xf3\xb1\xa0\x1b\xcc\xc7\x51\x7f\xd0\xf0\x04\x72\x98\xcd\x97\xe2\x4e\xdd\xb8\x49\xcf\xc4\x0b\x64\xb8\xb0\x61\xd0\x8d\xe7\xe3\xb1\x10\xe8\xe0\xb3\xcd\x6e\x6c\x4d\xa2\x7e\xe1\x5b\xea\x17\xbe\x35\x52\x5b\x2a\x6c\xb2\xa7\xfa\x3b\x87\x75\xad\x36\x9c\x93\xdf\xf3\x59\x28\x13\x42\xc3\x7e\x7f\x97\x30\xe6\x1b\xcc\xf8\x8c\x64\xe1\x58\xe0\xe5\x32\x1e\x82\xad\x80\xaf\xde\xb9\xea\xfb\x32\x0f\x51\xce\x23\xc3\x54\xa3\xc4\x3b\x33\x33\x5c\xfc\xe5\xba\x0c\x13\x2d\x8d\xb2\xf0\x90\xa1\x92\xfc\x89\x5e\x06\x9a\xa2\xcc\x80\x22\x18\x4f\xc5\x9d\x90\x12\xa6\x77\x04\x06\x76\x26\x50\xdc\xe6\x67\x54\x55\x7a\x39\x8a\x17\x32\x01\x1d\x08\x23\xbf\x47\x8a\xdc\xc6\x0a\x97\xce\x84\xaa\x37\x77\x4d\x94\xe4\xc5\x23\x5e\x72\xe0\xb4\x62\x0f\xdf\x8e\x88\x17\xcf\x91\x1f\x2a\x7c\x2f\xf3\x4b\xc1\xc6\xdf\x84\xb7\x76\x8c\x71\xce\x43\x83\x8c\x59\xa4\x8e\xe9\xa6\xf9\x47\xb8\x02\x09\xaf\xb2\x16\x10\xf0\xdf\xb5\x08\xe6\x9e\x3d\x20\x34\x0d\x81\xe2\xbd\x42\x25\x5c\x30\x59\xf4\x3c\x31\x2f\xf1\x27\x48\x41\xb0\x7f\xd7\x82\xcf\x2a\xd6\x7b\x1b\x56\xa9\x35\xe9\x8f\x81\x17\x86\xc7\x79\xc8\x64\xc8\x68\xcf\x1e\xc5\x9a\xd1\x33\x4b\x51\x0a\x88\x1e\x5e\x3c\x0a\xbd\x7c\xac\x25\x15\x89\x25\x7f\x9b\x4a\x91\x39\xba\x40\xa0\xd2\x40\x21\x19\x16\xae\xc1\xc0\x75\x84\x41\xbb\x68\x29\x69\x5d\x4c\x84\x83\xa7\xc6\x2a\xd5\x4f\x35\x8b\x74\xd0\xf0\x0d\x1b\x40\xde\xf9\x78\xd5\x07\xda\xff\xf8\xff\xff\x9f\x29\xf9\xa7\xbb\x8a\xd0\xe1\x3c\x39\x52\x39\x76\xb8\xe7\x61\xd8\x7b\x90\xae\x1c\xc1\x20\x8f\x51\xa0\xc6\x7a\x5f\xd5\xe7\xc1\xeb\x09\x9f\xfc\x30\x45\xe6\x94\x19\xf6\x1f\x5b\x75\xb3\x89\x77\xfe\x1e\xd5\x61\xc5\x37\x2a\x34\x36\x0f\xb7\xf3\x3c\xc8\x2a\x65\xc4\x64\x9f\x0e\x36\x5b\x13\x07\x7e\xe3\x2b\x32\x49\x50\xaa\x72\xdd\x9d\xb1\x7e\x71\x15\x94\x2d\x90\x38\x84\x17\x0f\x40\x01\xe6\x8e\x1a\x27\xbd\x33\x06\x08\xfa\xca\x74\x15\xf5\x0e\xb3\xb0\x67\x72\x60\x02\x85\x12\x52\x51\xe2\x36\xc6\xea\x36\x95\xbb\xe9\xa6\x9d\x8e\xcd\x73\x74\x43\xb4\x12\x0d\x1f\x2b\x6e\x23\x93\x59\x93\x6f\xa7\x5d\x22\x62\xb5\xb4\x30\x9d\x8c\x6d\x75\xb9\x70\x4d\xc8\x02\xc4\x36\xf8\x6a\xe3\x59\x35\x0c\xbf\x1e\x28\xa8\xea\x35\xa5\x34\x3b\xc8\xd2\x97\x6c\x58\x90\x3a\x2f\x32\x8e\x06\x40\xa6\x48\xa1\x2e\x73\xb8\x82\x02\xfa\xeb\xd8\x8f\x02\x8b\xf0\x45\xce\x29\x2c\x4a\xf4\xe5\x26\x31\xeb\xc6\xd5\x07\x2d\x36\xfa\xbb\x30\x63\x28\xf0\x7c\x38\x66\xd6\x89\x45\x24\xe5\x85\x89\xac\xed\x35\x55\x78\x7b\x4d\x65\xd1\xf9\x20\xca\xa2\x22\x9f\xaa\x1e\xbf\x33\x84\xd5\x0f\x09\x6f\xbe\x97\x0a\x78\x4f\xcf\x14\x22\x24\x40\x8c\xfc\xa0\x13\x64\x8d\x92\x70\xd8\x6f\xa3\x76\x57\x5d\xa0\x03\x86\x55\x0f\x42\x80\x61\xfe\xdd\x74\xd3\xb4\x93\xef\xf4\x24\x7a\x5b\x09\xf4\x8c\x85\x7d\x42\x01\xeb\x1b\x2d\x45\xdf\x79\x56\x91\x84\xdc\xc1\xdb\x10\xb5\x42\x25\xad\x88\xfe\x26\xca\x10\x3b\x68\xfd\xc3\x01\x90\x94\xa6\x2b\x35\xc5\xf1\x76\x2f\x5b\x75\x81\x5a\xca\x82\xef\xa8\x3c\x22\x37\x0f\x02\x25\x8d\xca\xda\x43\xb8\x71\xa4\x72\x80\x1c\xdc\x46\x41\x49\xfa\x0d\x0f\x2b\x92\x44\x3b\x20\xa6\x4f\x90\xc1\x92\x6c\x4d\x4d\x65\x82\x54\xf2\x86\xfd\x86\xbf\x39\x10\x1b\xf0\xf1\x58\x31\x63\x66\xa6\xd9\xb6\xa1\x19\xe6\x76\xca\xf3\x53\x5e\x56\x79\xe2\x71\xd5\x1e\xbc\x89\x52\xbc\x56\x0e\x93\xca\x53\xcd\xf7\xda\x41\x94\xa7\xac\xe7\xe9\x4a\xe9\xbf\xfe\xbc\x93\x72\xfd\xb4\x5a\x73\x98\x86\xa9\x69\xa8\x6c\xe2\x8c\xd2\xb6\x38\xa3\x4a\x4a\x7d\xcb\x18\x76\x04\x43\xef\xab\xc0\xe8\x7d\x9f\xbe\xa5\xc8\x68\xe7\x05\xa8\xf5\x96\x9e\x51\x7b\x4b\xf5\xf9\x07\xf1\x30\xe9\xda\x49\x05\x8b\x41\xdd\x04\x2d\x09\x5d\x75\x3c\x47\xc6\x16\xfd\x8c\x71\x43\xe6\x55\xc5\x93\x21\x13\x23\x20\xbf\x7d\x3f\x50\x59\xf0\xfb\x9e\x01\xaf\x48\xb3\x3e\xc2\x36\x27\xed\x3d\x2b\x8d\xf4\xfb\xaa\x5c\xc1\xd0\x21\x78\xfd\x1f\xa8\x62\x67\x96\xc6\xf1\x0e\x8f\x20\x39\x89\xd7\x84\x2f\xbb\x02\x9f\xe9\x58\x4d\xaa\xc7\x8a\x65\xf7\xbe\xae\x22\xf3\x77\x4b\x9f\x9b\x6c\x1b\x7f\x01\x36\x32\x10\xef\x9f\xb8\xe7\x3a\x88\xf2\x82\x99\x40\xf9\x61\x05\x23\xcd\xd1\x9a\xb5\xc9\x7c\xb5\x4a\x13\xef\x94\xd2\xc4\x3b\xa5\xaa\xf1\x7d\x9b\xe7\x28\xf9\xa2\xc2\x78\x5d\x51\x54\xbf\xa7\xe9\xaa\x2e\xe9\x7a\xbf\x89\x4d\x16\xd9\x1c\xd5\x6c\xd5\x1c\x70\xcc\xd1\x81\x6f\x9a\x5d\x52\xa4\xdf\xe3\x84\x71\xfb\xa6\x9b\x61\x3a\x58\x19\x99\xd0\x2e\x75\xad\x43\x9e\x42\x3a\x2c\xc2\x6c\x65\x4a\x31\xe2\x5f\x54\xd5\xd9\x87\x5a\xbe\x09\x86\x98\xdb\x29\x34\x69\x74\xc4\x38\x90\x60\xae\x99\x17\x66\xd1\x8e\x80\x85\xc1\x37\x2c\x43\xea\x6a\x96\xc8\x0c\x28\x78\x70\xc1\x29\xe8\x7b\xf8\xd8\x65\x2e\x45\x66\x92\xdc\xc9\x6b\x39\xfd\xa1\x9f\xe1\x69\xf2\x49\x0d\x9d\xcc\x9c\xd8\x07\xda\x42\x68\xa9\x82\xfd\x9e\x8f\x83\x47\xdd\x58\x7b\x3b\x2a\x32\x93\x45\xf1\xca\x84\x0f\xe0\x20\xb1\x75\x5e\x09\xbc\xad\xaa\x32\x75\x98\xe6\x92\xba\xb1\x60\xb1\x7a\x7c\xef\x97\x6a\xe0\xe5\xfd\x40\x11\x82\x9f\xaf\x65\xe5\xca\xac\x01\xb4\xd6\x81\x4b\xd5\x42\xa9\xd5\xf0\x6f\x1b\x9f\xc9\x49\x2d\x5b\x2b\x50\x6c\x6e\xbc\xbd\xf8\x62\x33\xef\x99\x0e\x69\xa3\x2a\x41\x83\x0b\xf0\xc3\x22\x38\xf3\xb8\xc2\xff\x39\x7e\x1f\x04\x34\xb0\xfe\x47\xb0\xd9\xf8\xa4\x2e\x3b\xca\x7b\x69\x06\x36\x23\xc4\x6a\xaf\x07\x1e\x91\xf0\xba\x43\xa5\x15\x51\xbf\x6d\xb3\x18\x84\x10\xbe\x33\xcd\x83\x99\x32\xf5\x5e\x37\xcc\xb3\x30\x4c\x3a\xa3\x0a\x4d\x8d\x91\x29\xe0\xdd\x8a\xdb\xc2\xc4\x0f\x51\xa4\x0e\xbb\xd5\x40\xaa\x80\x48\xf8\x48\xa0\xea\xae\xdf\x09\x94\xe8\xd2\x69\x25\x5b\x70\x65\x84\xbe\x8a\x4c\x0b\x7f\xbc\xf4\x24\xdc\xdf\xd5\x17\xfd\x53\x55\xb4\x7c\x93\x53\x08\xec\xd5\x63\xf0\xce\x42\xf4\x45\x6b\x82\x2f\x6c\x55\xcd\xae\xff\xd7\x63\x35\x3f\xa2\x4c\x2c\x86\x5e\x53\x05\x51\xd3\x35\xb8\x7e\x3e\x51\xe9\xf4\x42\xd4\x1d\x66\x36\xdf\x59\x39\x73\x11\xd9\xae\x56\xbd\xf0\xda\x54\x8e\x5d\xcf\x10\xe1\x22\x8e\xc3\x7d\xe3\xf6\x58\x69\x14\xe9\xdf\x95\xd2\x67\x69\xf7\x46\xf9\xa4\x3c\x9a\xf9\xa6\xda\x1a\xdd\xcc\x9a\x62\x47\xe5\x68\x9c\x60\x9b\x2f\x0f\xdf\x09\xb4\xe0\xaa\x62\x36\x78\xe8\x75\x34\xa1\xe0\x31\x98\x03\x83\x4f\x28\x9b\xdd\xc0\xdc\x9a\xe0\xac\x1e\x55\x76\x64\xb9\x6f\x16\x6d\x96\x13\x60\x11\x3d\xf9\xc9\x55\x95\xdc\xac\x2b\x7a\xac\xd7\xf1\xd8\x78\x2e\x51\xd9\xd5\x1d\x63\xb8\xbb\xe7\xf6\x56\x1e\x2e\xb6\x2c\xf1\xe5\x60\xbf\xaa\x06\x58\x83\xf1\x8f\x92\x25\x9b\x17\x8e\x07\x69\x64\x06\x54\x08\x72\xfc\xcb\xaa\x52\x68\x5b\xb0\xb2\x31\x9e\xd0\x27\x8a\x20\xe8\x93\x3a\x21\xfb\x28\x33\xe8\xd8\x3a\x65\xad\xea\xc3\x02\x9b\xf7\x54\x17\x5d\x33\x68\x8c\xbb\x50\x3e\x71\xee\xd0\x26\xa6\x1d\x63\x60\x02\xd1\x22\x63\x55\xb9\x99\xd7\xf2\x23\x81\x8f\x8c\x69\xc0\x3c\xf9\x24\xc3\xc1\x68\xc3\x0b\xbf\x08\x7d\x5c\x08\x46\xc6\x91\xf1\x73\x07\x9a\x2f\x45\x2c\x13\xe5\x0a\xe2\xa0\xc1\x16\x20\x90\x9f\x7b\xe8\xa5\x59\x6e\x27\xfc\x23\xbf\x89\xcd\xa6\xc9\xda\x05\x9e\xf4\x98\xea\x8c\x11\x78\x82\x4c\x9d\x33\xf7\x47\x03\x4f\xb4\x78\xb4\x2e\xea\x0b\x4d\x5e\x38\x31\x80\x11\x7a\x72\xcc\x81\xbc\x46\x97\x88\x2c\xf2\xa4\xf3\x1d\x79\x95\xf7\xe5\xd6\xba\x5a\x17\x72\xfc\xe3\x4a\x13\xec\xb8\x62\xa6\x4c\xdb\xb9\xcd\x96\xb8\x8d\x0e\x3f\xf3\x23\x8a\xc9\xf8\x18\x12\x98\x9c\x34\x3f\xf9\xe4\x13\x3a\x4d\x0a\x7c\x3c\x0a\xb2\x0c\x29\xdb\xd1\x03\x67\xf1\xc6\xd2\x6f\xf5\xd3\xd4\xc8\x11\x39\x13\x9f\x5f\xfe\x84\x2c\x1c\x62\xa4\xf7\x4b\x5f\xb2\x3f\xa3\xb2\xd5\xab\x30\x07\xb2\xd9\x68\xcf\x20\x47\x59\xd3\xb4\x00\xf7\x74\xae\x74\x19\x75\x22\xbc\x1b\x9e\x3e\x45\x19\x72\x3d\x50\x99\xe0\x91\xa0\xf1\x95\x69\x8f\xd5\xdd\xb7\xcf\x95\x8d\x55\xf7\xed\xea\x26\xa9\x42\xa9\x6a\x0c\xb2\xb4\x6d\xda\x1c\x16\x8b\x22\x09\x7d\x4e\x1a\x86\x9b\xd7\xe8\xf3\xd3\x07\x89\xd3\x9e\x87\x17\x60\xf9\x50\xf6\xe1\xe3\xcd\xc4\x24\x4f\x37\xbf\xfa\x65\xa5\x37\xfb\x6d\x22\x3e\xe5\xe3\xc0\x43\x16\x8a\x94\xb8\x27\x5f\x10\xd1\x5f\x0a\xd8\x36\x78\x37\x4a\x19\xae\xba\x55\x94\x90\xfe\x37\x54\x8d\xa4\x31\x54\xbd\x1a\xe4\x26\x57\xd1\x22\x97\xb2\xb1\x47\x02\x9f\x52\x53\x15\x68\x08\x46\x4b\x36\xdf\x41\xb7\xe1\x84\x77\x35\x1e\xdd\x8f\xcd\x1d\xa1\x4e\x15\x7a\xe4\xd7\xc8\x4c\x73\xf5\x83\xd6\x10\x4a\x2a\xe7\xf5\xb8\x12\x83\x1f\x98\x89\x4c\x4d\x54\xf6\x88\x7d\x89\xba\x43\xe8\x1b\x5d\xa2\x7d\xe4\xd2\x09\xd7\x4f\x02\x23\x1a\xff\xff\x1a\x3d\x25\xf2\xc7\x91\xe3\xdb\xc2\x43\x39\x19\xa8\x3e\xce\xc9\xd2\xab\x38\x67\x36\x26\x4a\x5f\x57\x7a\xba\x47\x57\xce\xc7\x9a\xc4\xdd\x0e\x4c\x56\xf4\x25\xe5\x9e\x96\x92\x05\xec\x84\xd4\x2f\x7c\x4b\x92\x62\x8e\xd0\x0c\x50\x70\xe1\xf9\x59\x58\x3c\x19\xa6\xdd\x9c\x16\xbd\xf8\x62\x73\x98\x2c\xa4\x59\x31\x4c\x04\xa9\xef\x28\xf4\x3c\x9d\x9e\x2b\xeb\xf7\x86\x49\x27\xb3\x9d\x6d\xca\x3d\x37\x56\x55\xbc\xb2\x9d\xd8\x1f\x50\xba\xf8\xbb\x2d\x8f\xb5\xb8\x8f\x17\x08\xfb\x0c\x6c\xb6\xc8\x34\xf9\x26\xb3\x5d\xaa\x1c\x0b\xed\x40\x97\xbc\xf8\x02\xe8\x39\xd5\xbe\x1c\x44\x71\x5a\xe4\x0f\xd0\x0a\x45\x52\x7e\x1a\xd6\x4c\xc0\xb9\x6a\x4a\xf9\xb8\x1a\x2f\xfa\x28\xf0\x81\x03\xcf\xed\xf3\xc7\x03\x1f\xf3\x9c\x57\x9c\x7c\x6f\x2a\x54\x1d\x98\x6d\x25\x98\xf3\x16\x19\xf3\x7b\x5d\x29\x15\x8b\x14\x37\xdd\xb0\x88\x74\xd7\xa4\x32\x79\x0f\xec\x07\xa3\x29\x0a\x1f\xbb\x54\x06\x7d\xef\x49\x25\x9d\x0f\xa2\x63\xa0\x3f\x6e\x21\x6e\xd3\x09\x39\xaa\x4b\x0f\x8d\xa9\x9c\xce\xef\x6d\x16\xbd\x28\x59\xa4\x96\x1f\xec\x23\xc0\xe4\x70\x8c\x4c\x28\x8b\xed\x76\x7b\x8c\x04\xf7\xb9\xbd\x52\xcd\xed\x9a\x78\xc9\x24\x7e\xad\xc3\x7f\xbc\x5b\xfa\x99\xc2\x77\xc7\x48\x09\x29\xca\x23\x02\x3e\x22\x08\x87\xf5\xc3\x6e\x62\xc4\x2f\x9f\xac\x2a\x12\x45\x93\xd1\x04\xa5\x22\xb0\xd5\x03\x92\x5f\xfc\xd4\x32\x45\x52\x39\x21\xc2\x00\x70\x9d\x4a\x49\x68\x1c\x70\xb4\x1e\xfe\x87\x32\x93\x74\x41\xdc\x71\xc0\x89\x82\xd0\xb3\x70\xf0\xa1\xca\xf0\x33\xb6\x85\x4c\xab\xe0\x5c\xe4\x1d\x15\x26\x2f\x9c\x54\x34\x16\xeb\x6d\xfc\x9a\x68\x65\x2a\x04\xff\x61\xad\x65\x55\xac\xc4\x76\xaa\x7a\x9d\xf8\x2d\x9e\x09\x17\x26\x2e\x55\x7c\x3f\x4c\x37\x8f\x04\xe8\x8e\x66\x14\xba\x1a\x3c\xa1\x30\x3a\x09\xad\x45\x7a\xc8\x7a\x30\x74\x84\x86\x7d\x73\xd0\x32\x7d\xb0\xb9\x10\x65\x39\x89\xff\x4e\xf8\x01\xcd\x35\xc5\x10\x8c\x1d\x81\x55\xf6\xbd\xcd\x03\x35\x44\xe9\x32\x33\x03\x5e\x45\xc7\x45\x5f\x6d\x46\x46\xc2\x29\xcc\x00\xf1\x55\x4d\x6f\xac\xa1\x5b\x24\xe2\x4b\xde\x10\x5e\xd2\x6c\x90\xe3\xc9\x21\x51\x2a\xbe\x3c\x8c\xa8\xd5\x32\xc6\xde\x04\xe3\xc2\x55\x43\xf8\xe6\x93\x75\xaa\x69\x26\x5f\xe4\x95\x21\xe3\xf2\xd5\x4b\xe5\xe3\x1a\x9e\xb9\x67\x9a\x05\x86\x79\x9d\x00\x1d\xfa\x6e\x7c\xac\xfa\x17\x4b\x51\x15\x51\x87\x76\xca\x67\x56\x3f\xc3\xcb\x82\xf9\xfd\xd7\xf4\x16\x79\xc3\xe9\xbc\xec\x67\x30\x58\x32\xb3\x58\xc3\x41\x9c\x59\x48\x7d\xd3\x85\xcc\xcc\xf0\xca\xfa\x39\x3d\x5b\x3e\x1e\x7b\xb3\x55\xc6\x3a\xb0\x61\xb5\xef\xb0\x91\x5c\xab\xd2\x55\xe7\xde\xa8\x23\x59\xe9\xd8\xf0\xe9\x49\xac\x66\x47\x3e\xa9\x8a\x8a\x3e\x2d\xbf\xaa\x15\x61\x76\xb6\x3c\x5c\xbf\x5a\x4c\x8b\x98\xe8\x71\x7a\xb7\x0e\xc5\xc9\x12\xaf\x9b\x27\x65\xda\x26\xcf\xa7\x14\x9f\xd4\x49\x35\xce\x0c\x99\x1e\x17\x56\x3d\xb7\xd7\xf5\x6c\xe8\x02\x60\x77\x6e\x28\x70\x4e\xdb\x16\xbd\x85\x34\xeb\xe2\xad\x71\x11\x97\xde\x9a\x14\x74\x7d\x8a\x65\xfb\x83\x38\x5d\xb1\x36\x7f\x88\xac\x2c\x8a\x2e\x5b\xc0\x1d\x22\x49\x9e\x47\x0e\xbf\x8f\x17\x8a\xd6\xfe\x5f\xeb\x12\x03\xdc\x1a\xd6\x11\x8f\x67\xb2\xd7\xd1\xb6\xf5\xcf\x29\xc4\x60\xfc\x04\x45\xc7\x1c\x10\x69\x6c\x2a\x94\xff\xd0\xd1\x3f\x43\xf7\x8e\xc7\x78\x85\xc2\x4b\xf4\x27\x8e\x96\x4f\xb8\xdb\x65\xae\x36\x44\x0a\x1e\x8c\x85\xad\x27\xf8\xf0\x1a\xb9\x02\x42\xa9\x30\xb2\x08\x15\x99\x3b\x14\x3f\xf3\x71\xf9\x85\xba\x04\xa7\x6f\x8a\x9e\x25\xce\xdf\x88\x99\xe4\x1c\xdd\x83\x13\x99\x18\x9f\x4e\x9e\x3e\xe8\xc0\xd1\x00\xc1\xe1\x45\x5c\x57\x44\x0b\x18\xa5\x14\xa6\x39\x65\xa1\xd3\x58\x2a\x3b\x23\x43\x5c\x7c\x32\x96\x86\x11\xf3\x74\x36\x48\x33\x59\xf7\x8e\x82\xc5\xa7\xcd\xe7\xeb\xe6\x97\x3a\xe9\x32\xb4\xda\x04\x74\x51\x45\x0b\x4e\x39\x62\x56\x69\xba\x38\x61\x84\x1b\x8a\xa1\xfb\xe7\xaa\x56\xba\x92\x76\x23\x4a\xd0\x44\x12\x4f\x0d\x94\x8f\xdb\xe0\xfd\xb3\xcd\x3c\x24\x79\x61\x71\xab\x0e\x12\xe0\xe1\x01\x1e\x40\x97\xc4\x26\xeb\xca\x5f\xba\xd2\x87\xa2\xfa\x55\x6d\x90\x61\x0c\xa9\xff\x11\xb2\x5c\x21\x44\xab\x41\xf6\x9a\x76\x3e\xcc\xd8\xbc\x62\xf7\x9f\x51\x56\x0b\xaa\x8c\x18\x89\xb8\xa2\x61\x0e\x69\x52\x64\x69\xfc\x50\x75\xc7\xa8\x87\x31\x31\xa3\x13\x39\x70\xd3\x52\xeb\x9a\xba\xe7\x44\x30\xc2\xff\xd4\x98\x57\x3b\x60\x7e\xaf\x1b\xea\x52\x15\x9b\xe3\x7a\x88\xe5\x14\xca\x2a\x88\x52\xaf\x04\x8a\x66\x57\x0f\xca\xad\x2b\x92\x8e\x6d\xa8\x47\xa1\x15\x7f\x47\x4d\x18\xc5\xe9\xb2\x05\xf9\x2e\xe0\x4c\x48\x3f\xf8\x18\x05\x17\x38\xc0\x0b\x1a\x29\x3c\xee\x2f\xf6\xcf\x36\x0b\x22\x9a\x99\x18\x21\x34\xf1\x1e\x61\x23\xf0\x45\xe1\x8b\x8a\x6f\xb1\x13\xe5\x61\x9c\xe6\x76\x9b\x56\xd6\x0b\x5c\xa3\xf7\xbf\xe0\xe1\x3d\x55\x17\x39\xa0\xe9\x04\x9e\x71\x6c\x72\x0d\xc7\x1d\xf1\x6e\x4d\x95\x71\x96\x19\x9f\x69\x3b\x39\x99\x05\x4f\x89\x53\xee\x8c\x9a\x83\xcc\x2e\xfc\xa3\xe6\xec\xe7\x1b\xff\xf4\x80\xa3\xdb\xae\x0c\x0f\x6e\xe6\x2c\x1e\x3a\x16\xc4\x1d\x32\x61\x00\xf2\xc0\x4a\x63\x2f\xaf\x95\x6a\x02\x62\x0f\x70\xde\x48\xd3\xa6\x88\x1b\x08\x2e\xfe\xbe\x02\x54\x3c\xfa\x14\x64\xd1\x1c\x8a\xd8\x3f\x86\x7b\xb8\x75\x82\x9a\xfc\x57\x7b\x68\x08\xc0\x65\xf5\xfb\xf6\xb1\xc9\xdd\xdd\xaa\x52\x59\x04\x92\x10\x2a\xc0\x37\x35\x00\x8a\x96\x99\x4b\xdf\x90\xdc\x86\xb9\x1a\x69\x7c\x79\x80\xfd\x1a\x31\x8f\xca\x74\xda\xd6\x2f\xba\xe9\x53\x5f\x91\x11\xaa\x50\xf0\x96\x3e\xd1\xa2\x78\x06\xb9\xf2\x65\x2d\xdd\xd5\x35\x51\xb2\xa7\x5a\xd5\xc0\xb5\xaf\xc1\x13\x00\x37\xb1\xa6\xc0\x07\x7b\xb4\x52\xfa\x09\x54\x21\xf0\xb4\x7f\x84\xa7\xcd\x27\x94\xa6\xc0\xdf\x8a\x2c\x0a\x66\x07\x98\x67\x1d\x1b\x1b\xc4\x55\xf8\xc8\x43\x2d\xff\xec\xee\xf0\x4c\x3d\x9c\xea\x65\x45\xb1\xbc\xa3\xa5\x18\xb5\xaf\x03\x60\x83\xdb\x39\xa3\xe6\x47\x77\xac\xaa\x97\x3a\x8e\x34\xdb\x37\xdd\xec\x59\x17\x08\xc3\x4b\xfd\xa4\x54\xea\xaf\x1f\x8e\x66\x81\xbe\x02\x90\xd8\x6e\x1c\x75\x23\x89\xb2\x10\x5d\x7c\xa4\x68\x83\x3f\x1a\x33\x99\xb3\x60\x1c\xc9\xa2\x5c\x1a\x32\x12\xf2\xa9\xda\xcc\xc9\x3a\xa2\x92\xcc\xe6\x45\x16\x85\x85\xe0\x75\xe0\x10\x0e\xe3\x01\x62\x35\xbc\x47\x3f\xcd\x62\xe4\x2e\x17\xeb\x90\x34\xd4\xa4\xaa\x6e\xb3\xf8\x96\x0c\x4a\xf8\x32\xdf\x06\x96\x2f\x8f\xcd\x29\x9a\x1d\xb3\x64\xa2\x98\xa2\xb8\xbf\x81\x6e\xc1\xdb\xa4\x74\x71\xb7\x2f\x0d\xec\x02\x88\x43\x84\xa8\x68\x5d\xe0\xed\x1f\x81\x51\x14\x5c\x73\xf5\xf6\x61\x1a\x30\x77\x88\x32\xd9\x31\x6a\x81\x4b\x57\xa0\xba\x41\xf4\x70\xb6\xb5\xaa\xe5\x2e\xba\xa6\x1e\x6b\xb7\xb3\x35\xc2\xca\xdf\xf0\x3f\xad\xe9\x86\xce\xa9\x04\xfe\xd5\xd4\x16\x32\x32\x3c\x02\xba\xe7\x93\xe0\x71\x25\x4d\xd3\xce\xc3\x2c\x6a\xdb\x8c\x01\x90\xd8\xe9\xa7\xd4\xc0\x39\xc4\x9a\x78\x30\x74\xd5\xff\xca\x72\x2f\x0a\x7b\x8f\xa9\x1b\xfe\x44\x73\x23\xde\x00\x8d\x29\x97\x8a\xfc\x16\xdb\xfd\x19\xd4\x29\x50\x10\x3f\xa7\x94\xb3\x6e\x05\x6a\x9a\xf2\x93\xc0\xf3\x01\xaf\x97\x9a\x80\xef\x11\x00\xd9\xb0\x28\x6e\x90\x41\x47\xc9\x7b\x0a\xbb\x5f\xa0\x55\x0a\xe0\xca\x28\x24\xfa\xab\x2f\x3f\x42\x7c\x65\xf4\x57\x7f\xf0\x08\xd9\x30\xc7\xd7\x57\x2d\x28\x44\x69\xf7\x54\xc9\xf2\x48\xe0\x6b\x29\x5b\x5b\xde\xa8\x10\x16\x7f\x17\x19\x12\x98\xf9\x2b\x4a\x11\x8a\xa7\xfa\xb4\x42\x89\xe3\x8d\x55\x62\x12\x48\xc0\xb0\x45\x4f\xa2\x78\x27\x9d\xa0\xea\xfe\xb9\x28\x8c\x47\xa9\x66\x98\xa5\x5c\xb2\x8a\x15\x20\xd3\xe6\x7b\x54\xd6\x9e\x74\x30\xfc\x3c\xbf\xd7\xf1\x79\x7a\xa7\x7a\x5e\x8d\x27\x44\xfd\x7c\x37\x9e\x2f\x22\xbe\x09\xf4\x65\xa4\x6e\x49\xf7\x27\xbd\x58\xdd\x63\xad\x1e\x8a\x53\x8a\xa8\xae\x42\xa0\x4b\xd5\x85\xa3\xcf\x74\x5c\x59\xd6\xc9\x55\xdf\x52\xfe\x5b\x70\xfe\xf8\xbd\xbb\xba\x9d\xce\x3d\x2b\x7c\xef\xdf\xa6\x85\xbf\xf1\x85\xd6\x66\xfc\x27\xa5\xba\x66\x61\x21\xea\x98\xa5\xa8\x60\xb3\xc3\xa0\x1f\x25\x93\xf4\xba\x8a\xcc\xc5\xd8\x54\x39\xf9\x83\x13\x5a\x33\x8b\x16\x1d\x56\xfd\xf5\x72\x34\x72\x71\x72\x36\x13\x60\x43\x04\xe1\xdd\x61\xcd\x7b\x0d\x0f\xc7\xe2\x96\xb8\x78\xdc\xd6\xbb\xda\xc4\x43\xe0\x00\x85\xee\x1f\xd3\x92\x75\x33\xbe\x9e\xcc\x72\x5d\xed\xe0\xc5\x24\x2d\xf2\xff\xb4\xe0\xaf\x2e\x51\xce\xec\x52\x08\x68\x32\xd6\xf6\x31\xdd\xec\x3d\x36\xe6\x30\x9e\xa2\x29\xc2\x85\x29\x55\xf5\xbd\x00\xdf\x23\xca\xe4\x1e\x29\xbb\xa5\xa5\x38\x93\x5e\x29\x55\x0c\xf9\x7a\x39\x4a\x34\xf9\xaa\x9a\xf3\x7c\x31\xf0\x73\x9e\x2f\xba\xae\x3b\x45\xab\x51\x7b\x58\xb8\x64\x04\x3b\xf9\x0d\x05\x68\x00\xd5\x3d\xcc\xc8\x75\xc5\xd1\xd8\x4e\x33\x9b\x50\x82\x8f\xb5\x86\xda\x08\x02\x58\x6e\xdb\x3b\x59\xf5\xea\x1a\xf1\x2f\xa7\xc9\xae\x22\x4c\xba\xae\x47\xc8\xd3\xac\x6f\xb3\x5d\x74\x6b\x30\xae\x97\x03\x65\x0e\xaf\xe2\x69\x48\xa3\xc0\x83\x49\xce\x96\x5e\x59\xf9\xdf\x91\xcd\x80\xcd\xdc\xd2\x52\x53\x1c\xea\x6e\xce\x95\x18\x26\xe7\x6f\x42\x9d\xc9\x81\xb9\xab\x30\x48\xb4\x2b\x1f\x8d\xc6\x9b\xe4\x9e\x75\xeb\x98\xf2\x54\xc7\x1c\x56\x26\x4e\x57\x18\xfd\x0e\x6f\x8d\x31\x11\x94\xb1\x38\x45\x97\x2a\x6d\x9d\x4c\x52\x15\x6e\xda\x2c\x93\xe1\x26\x06\xbe\x69\x40\x35\x6c\x17\xcf\x4b\xd4\xf4\xb7\x0e\x34\x33\xdb\x8d\xfa\xec\x54\xa5\x08\xd5\x70\x7a\x35\xe3\x39\xe2\xf4\xc1\x66\xd8\xb3\x4b\x59\x1a\xdb\x82\x03\x16\xe9\x1c\x78\x87\xfb\xfb\xa5\x02\x87\x5d\x18\x8b\x25\xe8\xda\x87\xed\x38\xca\x7b\x7f\xe3\xa0\xb0\x8f\x73\x20\xaf\x65\x62\x66\xd9\x73\xae\x75\x5e\xa4\x55\x27\x5a\x7e\xf3\xbc\x5d\x7a\xf8\xda\x65\xd5\x01\xac\xde\x4b\x94\x17\x22\x6b\x21\x38\xb6\xea\x71\x09\x40\x4d\xb1\xae\xf7\xac\xcd\x08\x01\x8e\xc2\xf0\x15\x5a\x88\x7c\xac\x78\xe8\x08\x88\x42\xaa\x31\x84\x16\xe4\x08\x80\x6c\x27\x0b\x18\xc3\x60\xc1\xcb\xa0\x73\xca\x91\x27\x7c\x81\x84\xa1\xe3\x00\xd2\x17\x9a\xfd\x34\x89\x8a\x34\x93\x24\x9e\x47\xa0\xe8\x8a\x65\x1c\xca\xdf\x5e\x95\x07\xa5\xc3\xcc\x74\x91\xbb\x03\xdb\x73\x4c\x8d\x95\x1d\x0b\x3c\xf0\xba\x93\x32\xd7\xc6\xfc\x9c\x53\x62\x52\xaa\x4c\xc1\xe3\x91\xfb\x52\x34\x73\x1d\xb0\x84\xe3\x00\xd5\x24\x3f\x57\xea\xfa\xd1\x72\x54\x84\x3d\x19\xa2\x15\x59\x4e\x5a\x9f\xa2\xd7\xe9\x8d\xfc\x30\x21\xc1\x61\xa2\xbe\x99\x50\xb0\x4e\x56\xdb\x90\x10\xd6\x7b\x08\xcd\x06\x96\x99\x64\x97\xc7\x7f\x4f\x12\xe4\xd7\x4d\xeb\x3b\x44\x50\xa3\xe5\x71\x14\x4f\xfd\xad\x96\x92\xa1\xba\xad\x69\xae\x8e\x52\xef\x94\xad\x96\x62\x3c\x58\x62\x87\x2a\x19\x5c\xc3\xc9\x4c\x73\xc0\x82\x16\x60\x15\x66\xc9\x4d\xad\xa4\xc3\xa4\xfb\x80\x52\x93\xbb\x55\x6a\xcd\xf1\xed\xb4\x04\x90\x49\x4d\x21\xd7\x87\x39\xba\x01\x67\x86\xd8\x62\xa3\xf4\xb2\x64\x6b\x81\x57\x04\x47\x39\x05\xcd\xb5\xab\xe5\x68\x1e\x36\x2f\x09\xda\x95\xd2\x4f\x71\x65\x51\x3a\x51\xdd\x9a\x68\x04\x78\x62\xf5\x6b\x58\x7f\xb0\x14\x87\x1d\xfd\x54\x62\xbb\x69\x11\x99\x42\xac\x0a\x2c\xdf\x6d\x15\x2a\x9d\x2e\x55\x7f\xee\xac\x17\xb8\x34\x79\x9e\xa6\x9a\xd9\xee\x16\x5d\xb8\xc3\xc7\x57\x77\xc7\x11\x9a\x4a\xf5\xf2\x5e\xd4\x37\x6a\x94\x84\x83\x13\x3e\x41\x6b\x95\xdf\xf8\x3f\xf9\x8c\xe2\x3a\xe2\xf0\x0f\x10\xb4\x9b\x1a\xb9\xb3\x9b\x28\x27\xf0\x62\x58\xa4\x0e\xc6\xe0\x8f\x28\x06\x42\x06\x7d\x0a\x91\x9c\x63\xc2\xf9\xf5\xe7\x7d\xcd\xd6\x41\xa6\xf7\xb4\x3c\x64\xee\xe9\x3d\x2d\xdf\x3e\xfd\x59\xd9\xf8\xd2\xd7\x5c\xbd\x15\xaf\xd7\x51\x3a\xf8\x60\xe5\xa6\x62\x0b\x38\x55\x8e\x18\x93\x79\xe9\x6b\x80\x6c\x5c\x24\x66\x29\x70\x74\xd5\x9b\x2a\x6c\xc1\x1a\x7a\x0b\x59\x8b\xa3\x9a\xaf\x7c\x2f\xf6\xea\xb6\x55\x29\x6f\x2d\xc4\xf6\x95\x88\x60\x1b\xae\xe8\x7c\x6f\x44\x0a\x86\x9e\x11\xde\xa1\x16\xc2\xeb\xd8\xa5\x28\xe6\x8f\x21\x45\x3e\xa1\xa2\xf4\x1f\x94\x4a\xb9\xe1\xdc\x18\xba\xeb\x29\x82\x6b\xda\x11\xe2\x9b\xdb\x7a\x78\xf1\x76\x5d\xb1\xac\xc8\x22\x61\xf6\xc6\x9d\x37\x5a\xde\xb6\xfc\x98\x8a\x13\xf8\xff\x40\xf9\xc8\x04\x88\x9a\x59\xf9\x4b\x5a\xc9\xc8\x88\x8f\x94\x1a\x20\xd1\x31\x13\x6a\x61\xdf\xdd\x8c\x98\x9e\xe6\xb8\xdc\xaf\x78\x66\x4e\x4b\xb3\x9c\x8b\xf7\x48\xfb\xee\x04\x23\xad\xad\xc6\xac\xd7\xbb\x57\xb3\x70\x77\x4a\x3f\x97\xd6\x1d\xda\x5c\x88\xca\x1c\x6d\x6d\xf5\x8b\x7c\xa2\x3a\xe8\xed\xa8\xdb\xb5\xd9\x14\x6d\x60\x66\xd8\x45\x6c\xe1\x58\xef\xab\x37\xec\x58\xef\x9d\xba\x37\xb3\x09\x33\x8e\xb4\x96\x4a\x23\x1d\x16\x34\x77\x30\xe1\x03\xdd\x13\x4a\xbe\xf7\x78\xa9\xb8\xeb\xfe\xa5\x2a\xe7\xf7\xd3\xac\xe8\x9a\x2e\x06\xeb\x9e\x71\x14\xa0\x1e\xfe\x31\xa5\x06\x40\xee\x28\x57\x19\x9b\xc2\x66\xbb\x35\x29\x10\xfd\x02\xaa\x56\xbb\xb8\xda\xc2\xa2\x1e\x81\xe7\x17\xde\xa9\x24\x0d\xb9\xe5\xcf\x1f\xc1\x90\x0c\xe2\xe5\xc9\x96\x1f\xa9\xdc\x49\xa6\x13\x91\xc9\xc3\x8a\x57\xa6\x41\xc5\x29\xfc\xcd\xba\x9e\x9d\x3e\x87\x5d\x83\x78\x6d\xad\x7c\x42\x2f\x79\x1b\xa7\x03\x45\xa8\x21\x41\x57\xf5\x0b\x7c\x5c\x27\x10\x96\xd9\x65\x93\x79\xa2\x12\xa9\xb9\x35\xfc\x14\xff\xd8\x9c\x23\x25\x3f\x24\xe3\x3b\xa1\x0a\x6a\x3f\xa1\x75\x89\xce\x0c\xe6\xed\x10\xa0\x1e\x55\xd3\x51\x06\xe9\xcf\x14\x3d\x1b\x14\x8f\x2e\x90\x49\xe5\xc8\x02\xae\x89\x25\xe0\x61\x77\xf8\xaf\x94\x38\xd2\xf9\xba\x41\x88\x76\x6c\x72\x80\xcd\x91\xfc\xe0\x0a\xf8\x58\x5d\x41\x66\x97\x6c\x96\xdb\x86\xaa\x16\xbf\xab\x94\xe2\xde\x0d\x7c\xcd\xa5\x18\x26\x56\x2f\xfd\x4b\x81\x86\x81\xa8\xe1\x44\x22\xc3\x1c\x05\x03\xff\x44\xa9\xb7\xff\xa4\x66\x92\x9b\x14\x1a\x1c\xc2\x13\x56\xe2\x26\xb6\x16\x9f\xb8\x1a\xbf\xac\x7e\xf4\xa5\x25\x38\xf7\xf2\xab\x70\xbf\x48\x7d\xef\x8f\x6e\x85\xcd\x11\x18\xbd\xb8\x74\x58\x90\xa6\x3b\xc0\x75\x48\x35\x4e\x28\xc9\xbb\x13\x6a\x07\xa5\x0b\x0b\x36\xc9\xa3\x25\x74\x1a\x85\x79\xc3\x8d\x1f\x5d\x38\x5f\xad\x40\x41\x62\x90\x28\xc0\x30\x36\x59\xbc\xf2\x80\x1f\x24\xdd\xdd\xf2\xdd\xd2\xc6\x6a\x65\x07\x91\xde\x5d\xc7\xbb\x46\x80\xc2\x84\x29\x8e\x8e\xeb\xb9\xbd\xa3\xc8\x5d\x04\x28\x1b\xb8\x3b\xb8\x25\xf0\x9d\xf0\x77\x05\x8a\xed\xe2\xe6\xc8\x80\x6c\xd6\x5f\x99\xf0\xd8\xbe\x3b\xaa\x0c\xf2\x5d\xec\x2b\xa0\xb5\x6e\xbb\x6c\xa7\x13\x91\xcc\x16\x49\x29\x28\x3e\x1d\x1e\x6e\xc1\x7d\xa0\x36\x26\xa2\x0f\x92\xfb\xb4\x33\x62\x3f\xab\x3e\x83\x6a\x1f\x84\xdc\xf9\x58\x99\x97\x41\x4c\x03\xd7\xcf\x7b\x42\x04\xdf\xc7\xfd\x2e\x9e\x04\x5e\xe0\x95\x31\x73\x38\xbf\xb7\x59\x6d\xf1\x28\x4d\x24\x20\x65\xbd\xe8\x40\x51\x28\xfc\x55\x3d\xb9\xef\x22\x91\xd5\xba\x89\xb4\xe3\xa5\x9f\xb6\x44\x77\x09\x57\xfa\x2d\x25\xe1\x7c\x47\xcd\x28\xe7\xd5\xce\xb1\xdb\x54\x0d\xf9\x8c\x86\x36\x7c\x57\x71\xef\xed\x24\x39\x01\x87\xcb\xdf\x27\xd4\xd8\x1f\x8d\xc0\xbe\xfc\x57\x43\x0b\x79\xb2\xb1\x7f\x96\x29\x71\x20\x8a\x2b\x28\xd7\x9b\xb0\xa5\x7c\xe2\x47\xff\xda\xc3\xa4\x23\x92\x42\x88\xcf\xd6\x55\x21\x7b\x7d\x64\x5c\xdd\x64\x51\xc3\x17\x40\x19\xe3\xc2\x27\x75\x83\xdc\x40\xac\x82\xae\x96\x07\x95\xd5\x5b\x3a\xaf\x98\x02\xdb\xb1\xed\x93\xf4\xb0\x33\x22\x1f\x97\x5a\xc1\xa0\x8e\x86\x8a\xc9\x4a\x27\x46\x38\x2b\xfd\x54\xe4\xbf\x52\xc2\xe3\x75\xe3\x07\x62\xed\xe9\x8e\x5c\xc7\x6c\x66\xc6\xe9\xa5\x3c\xac\x78\x66\x92\x4e\x4a\x35\xc2\xd9\x51\xb8\x81\x30\x80\xd3\xa5\x22\x50\xfc\x80\xe3\x3e\x6e\xaf\xd1\x37\xb2\xa6\x2f\x5d\x10\x3e\x32\xb1\xaa\x26\xa3\x0f\x05\xde\x2e\x23\x14\x67\x6d\xf6\x40\xe5\xdf\x8d\x96\x0f\x0e\xcf\xab\xd4\x2a\x5f\xb6\x96\x86\x09\xe1\x46\x04\x5b\xa5\x26\x0b\x2f\x29\xce\xf0\x3b\x41\xb3\x0e\xcd\x9a\x75\xa2\x74\xc9\xe4\xa1\x9b\x5c\x91\xf9\x33\xdf\xe9\x3b\xe7\xb6\x68\x91\x0e\xbb\xbd\x6d\x28\x80\x88\x96\x46\xc3\xcd\xd9\x63\xb4\x18\x5e\x0f\x32\xa5\xae\xf8\xb4\x7f\x76\x54\x58\x4e\x18\x81\x6a\x5a\xc7\x3d\xb3\x64\x61\x39\x90\xc7\x40\x63\x07\x95\x37\x5e\x77\x08\xde\xee\x8d\xad\x8c\x7d\xfb\x64\x50\x0f\x66\x04\xce\xf4\xa4\xd6\x85\x39\x59\x43\x6b\x39\x0d\x3d\x0b\x76\x26\x30\xbb\xc7\x94\xca\xef\xb1\x9a\x59\xfe\xb9\x66\xbe\x92\x17\xb6\xcf\x15\x0f\x44\x90\xa8\x78\x30\x25\x02\x56\x06\xd6\xfb\xf1\xb1\x28\x79\xee\xd9\x03\xcd\xbc\xe0\x47\xae\xa5\xbc\x85\xc9\x5b\x31\x0b\xa5\x99\x05\xb3\x90\x93\x2c\x76\xc8\xef\x71\x64\xcf\xf4\xc1\xe6\x42\x9a\xd9\xd0\xe4\xd0\x6d\x42\x61\xfb\xda\xe6\x31\x2b\x31\x35\xef\xaa\xcc\xd0\xe6\x6d\xba\x1c\xd0\x78\x9c\x81\x3b\xe5\x13\xa7\x09\x30\x4c\x18\xe5\xd1\x69\xa8\xc0\xf3\x9b\x81\xef\x36\x7d\xb3\xee\xad\x2e\x58\x93\x61\xbb\x22\xe1\x39\xaf\xca\x89\x5f\xa7\x35\xc4\x91\x8f\xe2\x8f\x24\xb3\x96\x4d\x78\x8c\xcd\x0f\x82\x51\x94\xdf\xcc\x0c\x77\x03\x4f\x6b\xae\x03\x43\x28\x07\x33\xe5\xeb\x7a\x7f\x51\xaa\xbb\xc7\x7b\xe1\x64\xb0\xf4\x7e\xfb\xcf\xd5\x54\xf6\x5f\xe8\xc9\xf2\x25\x9b\x99\xae\x7d\x40\x69\x0d\xde\x25\x0f\x8b\x28\xfd\x9e\x22\x20\xb9\x4f\x04\x5b\x9a\x1f\x8b\xe2\xc6\x3f\xe4\xac\x11\x56\x62\xdb\xaa\x62\xe6\xe4\xc4\x0d\xb9\xf8\xf1\xc0\x6b\x51\xdf\x23\xb3\x8f\xf0\x77\xbc\xf9\x3c\x3b\xdb\xcc\x07\x26\x73\xd4\x64\x22\x71\xa2\x8c\xfe\x5f\x79\x52\xb6\x95\x24\x1d\x14\x51\x28\xed\x44\x98\x86\xad\xb8\x26\x56\x7d\x29\x55\x17\xe2\xae\x42\x23\x70\x31\x0b\x3b\x03\xd9\xdf\xc7\xb4\x94\xf8\xd8\x21\xf7\xfa\x51\x3f\x0a\x79\xdb\xb1\xf3\x45\xfa\x22\x9e\xb8\xc6\xa5\x16\x36\xe9\x30\xc6\x9d\x9f\x86\xd2\x04\x1e\x87\x76\x54\x9b\x8e\xd1\x11\xfc\x43\x78\x3c\xcc\xd5\xc5\x27\x6a\x9a\x3c\x8d\x9f\x6e\x28\x15\xb1\x0b\xc1\x28\x6f\xf8\xf8\x88\x55\x73\xb9\x17\xc5\x20\x17\x42\x4b\x6e\x1b\xca\x31\xb2\x6f\x1a\x4e\xba\xe6\x9e\x52\xc7\x0d\x7b\x26\xe9\xd8\x38\x62\x66\xfd\x67\x9c\x94\xa3\x2f\x1b\x5c\xac\xa9\xd6\x6a\xd5\xda\x11\x8f\xd2\x50\x9a\x12\xda\x05\xc7\x26\xdf\x8e\x3b\xc0\x16\x7a\x83\xae\x07\xf0\xa9\xc3\x70\xf1\xb0\x36\xdf\xa0\x74\x19\xfb\xe9\x9a\x96\x5d\xbb\xa0\x19\x8c\xb1\x0f\x30\x1c\x70\xab\x56\x2e\x3a\x2f\xec\x92\x75\x28\x53\x19\x18\x56\xbe\xf9\xec\x18\xaf\x07\x15\x72\x4d\x56\x24\x36\xcb\x7b\xd1\x80\x57\x1c\x2e\x0b\x94\x19\x82\xd7\xa2\xaf\x11\xbe\xee\xf1\x0e\xc8\x5c\xb3\x9b\xa5\xcb\x3c\x53\xe3\xc2\x41\x17\x64\x5d\x18\xbb\xe0\x83\xcf\x36\x43\x9b\x2d\x45\xa1\x89\x95\x70\x0e\x46\xeb\xc5\x01\x3a\x25\x8f\x1e\xa1\x7e\x50\xce\xc2\xae\xc4\x28\x23\xcc\x38\xb7\x9c\x65\x76\x41\x97\x12\x4c\xe7\x01\xdc\x92\x90\x9f\xf9\x61\x8f\xed\x58\x2b\x48\x92\x2f\x6b\xb9\x80\xd3\x81\x42\x74\x9e\x2c\x7d\x55\x98\xc9\x34\x1c\x18\xc4\xab\x12\xfe\x50\x31\x98\xfc\x10\x30\x1f\xf6\x24\x63\xdb\x62\x66\x86\x29\x36\x23\x91\xc7\xc6\xde\x44\xd5\x9e\x8f\x95\x7d\x64\x4a\xa5\x0e\xa9\x80\x8b\x9e\xf5\xc8\xd0\x99\x82\xab\x06\xbe\x86\x7a\x4c\xb5\x6e\xc2\x38\x5a\x58\x68\xf8\xb6\xce\x05\x3d\x55\x70\x61\x44\xa0\x61\x79\xca\xc3\xa4\x8f\x97\x1a\x87\xe0\x91\xf5\x7f\x5c\x2a\xf5\x28\x56\x74\x84\x7b\x3a\xeb\x40\x8d\xd9\x30\xc9\xb7\x35\x1c\xef\x34\xa3\x8f\x50\x0f\x5d\xc7\xe7\x81\xa2\xdf\xf0\x86\xf7\x97\xef\x97\x7e\x56\x36\xfa\x0c\xec\x04\x92\xbb\xa9\x3a\xfe\xf4\x2f\x36\xd3\x7e\x12\x35\x1a\x9a\xfc\xb9\xba\x2f\x3e\x51\x9c\x26\x85\xcd\xb2\xa8\x48\xb3\x15\x24\xc2\x88\x93\x7e\xbf\xf4\xf1\xd3\xef\xbb\xc5\xb6\x68\x57\xdc\x90\x02\x93\x98\xd0\xaa\x11\x42\x13\xf9\xbb\x7c\x60\xcd\xa2\xcd\xb6\x55\x8f\x45\xca\xaa\x58\x6b\x9a\xc3\x17\x1e\x93\xb7\xbb\x0b\xaf\x1c\xc9\xc7\x27\xb8\x60\x3c\xd6\x5a\x8e\xf8\x2f\x36\x33\xcb\x72\x54\x70\x60\xe7\x54\x49\x72\x7c\xac\x79\x76\x56\xab\x7a\xcc\x7a\x76\xd4\xea\xf7\x85\x1d\xd5\xb3\xf3\x2d\xda\x95\xb0\x47\x04\xb1\xfb\x67\x1d\x36\x6e\x44\x62\x7e\x73\x6c\x50\x05\x42\x03\x9e\x54\x73\x52\xa3\xda\x68\xcb\xf3\xe9\x9b\xcc\xb7\x11\x64\x4e\x99\xaa\xa3\x92\x28\x3d\x36\x0a\xa7\x9e\x3e\xd8\x9c\x9f\xdb\x39\xba\x5d\xc9\xd0\x62\x23\x1e\xd5\xf3\x4d\x4a\x22\xea\xa2\x66\x5d\xfe\x93\x40\xe1\xd5\xee\xa3\x42\xec\xe8\xcf\xaa\xe7\x81\x58\xe4\xda\x08\x12\x4d\xf1\x52\xa5\x29\x4b\x71\xbf\xe0\x66\x61\xe8\xdb\x65\x00\x66\xbc\xc7\x33\xdb\x8c\xfa\x83\x58\x0b\x37\x60\xa1\xbc\xa3\x58\x70\xde\x51\x41\x92\x35\x59\xc2\x52\x8b\x88\x69\x18\xbc\x07\xbf\xcb\xf9\x89\x33\x2a\xae\xaa\xf4\x96\xca\x0c\xde\x81\x19\xe2\x8f\xd7\x01\xbd\x97\x4d\xbc\xd8\xd0\xa4\x8f\xa5\xa2\x14\x39\x5a\x33\xc6\x33\xd7\x4c\x80\x9e\x47\xe5\x95\xd5\x97\x4b\xcd\x1e\xc3\x6e\x1b\x28\x88\x75\x17\x48\x74\x6c\xbb\x48\xb1\x3e\x99\x55\x91\x6e\x5c\x18\x16\x37\xaf\x68\x62\x47\xe9\xd3\x8a\x73\x21\xd9\x7b\x7a\xea\xe0\xbd\x3a\xd7\x1b\xc5\x31\x8b\x45\x35\x94\xfe\x22\x76\x02\x1f\xd7\x8e\x54\x56\x01\xbf\x12\xc0\x57\x2c\xdc\x50\x82\x60\x0b\x14\x48\xbe\x94\x98\xbe\xed\x90\xfa\x27\xda\x58\x2c\x13\xcc\xc8\xa6\xc0\x73\x87\xad\xff\x42\xcb\x5b\xd3\x47\x56\x47\x35\xec\x5c\xef\x0e\x65\x2b\x54\x70\xc7\xe3\x97\xa7\x9a\x9d\x61\x11\x49\x1d\x4d\x97\x46\xa4\xe1\xb2\x5b\x15\x76\x96\xed\x1e\x42\x44\x30\x59\x58\xe9\x90\xfb\xb7\x1e\xa7\xce\x29\x0a\x1b\x67\x61\x40\x19\xa1\x48\x30\x1a\x9e\x23\x0b\x14\x7d\x01\x17\x32\x04\xc7\x48\xaf\x5c\x8a\x08\x8d\xaf\x4c\xbb\x02\x00\xdd\x2f\x5a\xf7\x4c\x2f\xe3\xa4\xec\x9f\x77\x2a\x87\x1b\xd4\x16\x41\x16\xf9\xaf\x4a\x4f\x95\x06\x2a\x15\xc7\x27\xee\xe6\x30\x18\x1e\x8b\xd8\xf5\xca\xd8\x5a\x24\x98\x5a\x67\x18\xba\x30\x0b\xa9\x27\x56\x15\x1f\x97\x5a\x71\x6c\x09\xf5\xa1\x86\xfa\xf7\x40\xe5\xac\x17\xea\x86\x42\x4d\x18\x66\x43\xe9\x5c\x3b\xc0\x88\x03\xdd\x9f\x52\x65\xbe\x2a\x2c\xa2\x41\x43\xe2\x32\x9b\x7b\xf6\x80\x58\x71\x32\x47\xae\x73\xee\xf8\x2d\xcf\xc3\xfb\x8b\xa9\xff\x9c\x77\x41\x55\x76\xd4\x89\xf2\x22\xcd\x0a\xba\xb9\xca\x36\x21\xc9\x5e\x87\x5d\xe4\x93\x1a\x69\x82\x67\xaa\x90\x81\x47\x1d\xeb\xc4\xad\x6a\x87\xcb\x43\x1b\x39\xfd\x57\x35\x7f\x20\x4a\xcc\xb7\xd5\x38\xce\x20\x5d\x64\xd9\x06\x2c\xa3\xa3\x8a\x9c\xed\xa8\x4b\x4c\x48\xcc\x75\xc5\x64\x9d\x86\x9f\x43\xb8\x34\xc2\x99\xaf\xfa\xd3\x79\xcf\xc6\x31\x09\xf9\x8a\xb4\xd4\x8d\xc0\x93\x9e\x7c\x58\xfa\x68\xe6\x92\x7a\xda\x55\xa4\x67\xc2\xc2\x66\xd1\xab\x3c\x3d\x8d\xec\x08\x78\x7e\x3e\xae\xab\x87\x87\x71\x1a\x2e\x36\xb4\x57\x68\x38\x41\x41\xcf\xcd\x47\xe9\x88\x91\x2e\x11\xca\x12\x3b\x5a\x8a\x27\xe4\xfb\x6a\x72\xfd\x8c\x86\xf0\x6c\x59\x75\xea\x3e\x36\x8e\x87\x71\x1a\x09\xc7\x81\x63\x1c\xf3\xec\x63\xe5\xe6\x30\x7b\x66\xa6\x39\xac\x72\xa7\xe5\x2c\xa2\x77\xdf\xd0\xd4\x77\xee\xa9\x5f\x0c\x1e\x73\xb0\x92\xa4\x9b\x17\x46\xcd\x0c\xa0\xd2\x05\x79\x38\x88\xe4\x7e\xb6\xe5\x63\x82\x6d\xab\x7e\x3e\xbc\x93\x3d\x8d\xa2\x25\xba\x7f\xa7\x95\xfa\x2b\xd8\xc7\xa4\x7b\xa6\x5b\x69\x10\xa5\xe5\x4f\xd0\x7b\xe2\x4f\x8c\x6c\x35\x2a\xd6\x54\x4b\xd7\x47\xc1\x47\x03\x05\xd2\x3d\xea\x6a\x95\x9d\x28\x59\x8c\x6c\x5e\x60\x95\x0b\x8c\xc4\x37\xf2\x2e\x28\x68\xc8\xc0\x66\x8c\xea\xd0\x00\x53\xd6\x36\xe0\x13\x7a\x9b\xb0\x2b\x47\xf5\xb8\x88\x6e\xb6\x10\x41\x01\xe3\x4b\xa4\xad\x48\x3b\x86\x4f\x02\x35\xb5\x07\xbd\x02\x3e\x6e\xf9\x00\x60\xd0\xb3\xb1\x49\x60\x17\x50\xf2\xff\x39\x30\x82\x7c\x32\x22\x6d\xf0\xa5\x5f\x9b\xdf\xa3\x60\x4f\x1c\xe4\xc9\x94\x05\xdd\xb9\xcc\x58\xaa\x31\xdc\x49\x40\xc2\x11\xd4\xfc\x3f\x70\xfe\xa8\x96\xdd\x2f\xd5\xab\x66\x6e\x3a\x81\x53\xf8\xfe\xc7\x21\xd5\x03\xbf\x5e\xfa\xe9\xa0\x6b\x34\x5e\x83\xc8\xe7\x23\xf6\xdc\xa8\xb6\xac\x2a\xf5\x9a\x1f\xab\xa4\xf8\x76\x40\x6c\x68\x28\x8f\x5f\x09\x94\xa4\xed\x51\x15\x3a\x33\x4b\x4e\xbc\xb2\xcd\xd7\x83\x51\x1f\x1d\x21\xd6\x1a\x21\xdb\x03\x6c\x0f\xf5\x11\x35\x18\xf7\x02\xa7\xe9\xf7\x54\xd7\xa9\x6f\x92\x95\x87\xbd\x76\xf2\xfb\x88\x6d\x10\xe8\x30\xe7\x38\x2e\xf0\x5a\xa0\x66\x1a\x99\x5c\x43\xa8\x9f\x3d\x5c\xe0\x2d\xad\xf8\xb2\x0d\xc0\x55\x41\x44\xfb\xc2\xd4\x36\xbc\x03\xe4\xe2\x0f\xb7\x7c\x2c\xfb\x43\x7e\x70\xe8\xb3\xbc\xa3\xc4\xbb\xbf\x8f\x4e\x24\xf6\x0b\x23\x2f\x10\x3e\x9c\x56\x58\x08\xd2\x33\xa0\xb4\x07\x7d\x3c\x10\xe7\x21\xa9\xbb\x46\x97\x89\xeb\x87\x4c\x30\x1f\xb7\x14\x52\xf8\xed\x52\x31\xbe\x9e\x54\x1d\xee\xc2\x24\x1e\x26\x2e\x59\xa2\xff\xf2\x8b\xea\x22\x08\x8c\x4c\xd3\x3c\x8e\xc7\x58\x61\x6e\xab\x8b\x10\x7a\x1d\x95\x05\xa2\x7f\x2f\x5f\xf6\xd8\x08\x8c\xd3\x0c\x33\x83\xdd\x39\xcd\xb6\x7c\x23\x18\xad\x14\xa8\x79\x9c\x8d\x52\x15\x52\x0f\x8f\xc0\x3f\x20\x44\xe4\x70\xa7\xb3\xb3\x8e\x61\x6a\xac\xca\xfb\xfc\xf4\xc1\x66\x51\x65\xfd\x45\x43\x8d\x90\x9d\x08\x14\x5e\xf0\xc4\x58\x70\x59\xe5\x26\x61\x2a\x8d\x51\x1e\x94\x53\x43\x96\xa7\x1c\x0e\x32\x5d\xb2\x59\x68\x06\x26\x8c\x8a\x15\x14\xaf\x15\xfa\xd6\x71\xef\x94\xbe\x5a\xb0\x11\x3c\xae\xe8\xea\x97\x6c\x56\x10\x13\xc5\x94\x42\x3a\x1e\x0e\x14\xe0\xff\x2d\xa5\x87\x76\x71\x5c\x1d\x02\x31\xe1\x99\x91\x7a\x51\x2a\x5a\x94\xa8\xf1\x70\x19\x9c\x4f\x94\x67\xed\x59\x13\x17\x3d\x8c\xae\xe9\x21\x1b\x3e\x1e\x03\xeb\xcd\xcc\x1c\x68\xda\x44\x23\xcb\x10\x94\x6d\x28\x4c\xc1\x46\x0d\x27\xf5\x33\xcd\x5e\x9a\x17\x11\x8f\x5d\x22\x41\xc7\xa0\x0b\x1f\xbb\x36\x43\x94\xd8\x01\x37\x77\x04\x98\xaa\x4a\xf3\xe7\x94\xf9\xb9\xac\xa6\xc7\xfb\x26\xec\x45\x49\x94\xf3\xe0\x1e\x76\xd6\xcf\x95\x8b\xfa\xb9\xc6\x4c\x2f\x2e\x36\x46\x4b\xf7\x8a\x3a\xf7\xbc\xa2\xe2\xc8\xfb\x69\x5a\xf4\xe2\x15\xa2\x3e\x91\xf4\x4b\x5d\xda\xd5\xc0\x0f\x91\xd7\x76\xd6\x93\x28\xec\x61\x97\xb9\xca\xb7\x93\x14\x3b\x3f\xe6\xd9\xab\x04\x30\x1f\x76\xbb\x36\xe7\xe1\xe3\xea\x05\x3a\xd9\xb8\xea\x05\xf2\xc9\x18\x16\xe1\xb9\xbd\x73\x4d\x93\xe7\xb6\x4f\xbc\x17\x8e\xd7\x0d\x19\x80\x30\x74\x3c\xe8\x91\x41\xb6\x98\x50\x38\x74\xd0\xf7\x30\x03\x59\xe0\x0d\xce\x99\xb1\xce\xc5\xfe\xd9\x66\x5e\x98\x2e\x2b\xd7\x6b\x86\x3f\x4c\x0f\xbd\x49\xdf\x84\x84\xe5\x93\x4f\x25\xc1\x6b\x9b\x5c\x72\x79\xd1\x5b\x52\x7b\xfe\xfc\x58\x62\xfc\xe2\x8b\x20\x0c\xb6\xb9\x0b\x78\x64\x1e\xb0\xe1\x68\x4d\x2f\x95\x8f\x6f\x9e\xa3\x8b\xa3\xa4\xbb\xbd\x7a\xe0\xb0\xcd\xe7\x61\x0e\x99\x90\x5b\x93\xd0\x6e\x23\xc8\x08\xde\x69\x83\x21\x2a\x70\xbd\xc0\x66\x61\xbb\x1d\x2d\x7d\x32\xf7\x46\xa0\xdb\x84\x69\x6e\x13\x04\x70\xf2\x4b\xd5\x35\xf2\xb1\xaa\x3c\xda\xfe\x28\xbd\xc1\x45\x45\xff\x7f\x31\xf8\x9c\x8a\x8e\x0a\x9b\x21\x89\x36\x71\xbc\x82\x18\x49\x20\x1f\xe4\x3a\x04\xd9\x51\xa3\x3b\x6c\x5f\x09\x23\x0f\xc9\x46\x53\xf4\xf6\x08\x41\x93\x4f\x24\x5f\xf7\x0a\xce\x26\x0f\xe5\xe2\x60\x12\x77\xb4\x7c\x7f\x64\xc7\xea\xa3\x1a\x59\x4a\x03\xaf\xa0\x3d\xc7\x96\xc7\x98\x1f\x42\xa0\x2b\x08\x06\x79\x98\xad\x7c\x7c\xb4\x30\xb3\x7f\xb6\xb2\x06\x9f\xf5\x20\xce\x7f\x1f\x34\x9e\x97\xe9\x83\xdb\xa5\xa7\x94\xbc\x0b\xac\x17\xf2\x8b\x13\x8a\x31\xe0\xaf\x02\x25\x91\xfa\x1e\xde\xa9\x1b\xf5\x70\x32\xb5\x8c\xfc\x41\xc1\x70\x07\x81\xf5\x00\x0e\x3c\xa1\x58\xd9\x4f\xa3\xec\xca\x3f\x0e\x7f\x80\x10\xe3\xb7\x11\x65\xa1\xf2\x70\x26\x50\xd0\x9a\x9b\x08\x3e\xe0\xae\x61\x61\x00\xaa\xf8\x4e\xa9\x3a\xb1\xdf\xa1\x32\xbc\xf8\x74\x34\x4d\xf9\x56\x10\x94\xb0\xe0\x24\x35\x8d\x44\xf5\x92\x72\x72\x86\x07\xa8\x21\x9f\x97\x86\x9d\x28\x64\x69\x3f\xfa\xac\x44\xf8\xf4\x1c\x24\xf4\xff\x34\xa6\xc6\xde\xb0\x6f\x12\xc8\xff\x08\x50\xc8\x3f\xa5\x8b\xba\xf7\xb3\x11\x48\xbd\xb5\x43\xdc\x8e\xf3\x73\xde\x25\x78\xf7\xa0\x2a\xc1\x79\x68\x12\x03\x2b\x85\x8a\xd9\xef\x95\xaa\x7c\xf6\x7b\xc1\x66\x6d\xb2\x83\xcf\x36\xbb\x09\x1a\xef\xa8\x10\xbc\xa1\xcb\x05\x6f\xd4\x74\x02\x5e\x68\xe6\x66\x69\x89\x34\x7c\x04\xf3\xf6\x36\x5d\xbe\x03\x96\x54\xcf\x03\x1b\x0d\xc9\x09\x70\x62\x1b\x6a\x76\x77\x18\xc6\xcc\xb8\x89\xd8\x1d\xe2\x1c\x7c\xdc\xf2\x93\xa3\xb9\x35\xed\x2c\x4d\x17\x1b\x9e\xc8\x86\x5b\xce\x52\x21\xd2\x25\x94\xb6\x7d\xd0\x0f\x47\x3e\xd8\xaa\xde\xb6\xf3\x6a\x5f\xfa\x9a\x47\x76\x4e\x1f\xe4\x60\x72\x5d\x69\xd7\xed\x58\x9d\x78\x7e\x7e\xaf\x47\xde\x56\x37\x21\x03\x9f\x1e\x90\xf1\x3b\x58\x69\xc2\x48\xaa\x8a\x91\x93\xab\x8d\xaf\x4c\x7b\x49\x55\x97\xcd\x5e\x77\x52\x33\x2f\xd9\x85\x05\x9b\xe5\x4c\x87\x88\x3a\xdb\x51\x7c\x05\x9f\x8c\xd9\xf6\xe7\xf6\x56\xff\x15\x78\x97\x14\x29\x75\xc5\x72\x6c\x90\x5d\xd6\x58\x61\x63\xbb\x14\x09\xfb\xe2\xc6\x06\xd9\xd6\x8d\x0d\x4f\x63\x1f\x86\x00\x79\x55\xf7\x83\x70\xfa\x64\xa0\x62\xeb\x93\x5a\x96\xd7\x2e\x98\x38\x86\x8c\x92\xe3\xb9\xde\xef\x79\xae\x6b\x4a\x73\xb9\x59\x80\x52\x09\x1c\x12\x34\x18\x30\x57\xc2\xa4\xd0\x32\xba\x5e\xd3\x30\x1f\x98\xcc\x24\x69\xd4\x51\x96\xef\x88\x42\x74\x1d\x51\x71\xc3\xb3\xbf\x76\x80\xe3\x06\xd4\xfd\x6e\x94\xaa\xc0\x79\x63\xcc\x29\x3f\x45\x7e\xc8\x44\x89\x2b\x3f\x61\xa1\x1e\x57\xaa\x06\xc7\xcb\x07\x9c\x1f\x79\xea\x17\xe9\xf9\x70\xec\x4e\x10\x74\xc4\xdc\x6f\x50\xed\x8d\xd9\x03\x55\x1e\xf4\xcf\x02\x5a\x46\x8e\x4e\xcc\x11\x99\xfd\x28\x68\x7c\xf5\xcb\x1e\x2f\xfe\xbc\x88\x43\x5d\xa1\x8a\x1c\x8c\xe5\xeb\xb4\x4e\x11\xbc\xff\x1c\xf9\x08\x12\xaa\x3f\x2d\x47\x32\x39\xd8\x2e\x2e\xe2\x06\x1e\xa6\xf8\x9a\x06\x73\xfc\x15\x2d\x6e\x7c\xd9\x69\xf0\x82\xe9\xca\x35\x02\x82\xf7\x4a\x6f\x52\xde\x42\x46\x2a\xb4\x2c\xb4\x03\x78\xd5\x07\x6a\x26\xf8\xa1\xeb\x1a\xfa\xfa\x6d\x6c\x47\x11\x2f\x6f\x38\xb1\xe6\xc3\xa5\xca\x7c\xdf\x26\xd3\x8b\x37\xfe\x0d\x64\xce\x48\xda\x8e\x82\x45\x8b\x53\x30\x58\x7b\x20\x9c\xaf\xc2\xda\xfb\xa7\x3a\x7d\x90\xeb\x17\xd7\xca\xad\x5f\x14\x54\x2a\x92\x77\x58\xf1\xcb\x63\x91\x31\x85\x60\x59\x3f\x2f\xb2\x94\x07\x34\x58\x50\xa3\x54\x2d\xff\x9f\xd6\x45\x54\xd4\x78\xa6\x8e\x1c\x1a\x3c\x0f\xb4\x18\xc6\xd5\x70\x3c\x91\xd7\x69\x96\x5a\x26\xd8\x75\x99\x82\xe8\x3a\x77\x7a\x50\xc8\x7d\x6d\x12\xef\xc2\x45\xc0\x30\x7d\x5f\x95\x62\x3e\x08\x14\xa2\x81\x93\x03\x29\xa2\x6a\x5e\x21\x00\x19\x78\x44\x4b\x77\x93\xcf\x38\xcc\x5f\xd8\x33\x71\x6c\x93\xae\x8b\x38\xe0\x0d\x2f\xab\x8a\x2d\xb0\x41\x30\xd9\xdb\x56\xeb\x36\x70\x91\x0e\x68\x03\x3b\xd2\x1c\x85\xc7\xa2\xfb\xc1\xaf\x7e\x6f\x14\x96\x96\x3c\xdd\xa8\x36\x86\x32\x28\x73\xce\xa0\x28\xb1\xfc\xb4\x4f\xba\x41\x44\xb7\xf5\x0c\xfb\xcb\x5b\x8a\x49\x65\xb2\xe5\xc7\x20\x3e\xa4\x55\xc5\xc7\xa5\x1a\xd0\x9d\x62\xf6\x7b\x96\xab\x1c\xf3\x55\x82\xca\x60\x23\x87\x6d\x71\x46\x17\x8f\xcf\xd4\x09\x52\xa5\x0b\x0b\x79\x2f\xcd\x80\x3b\x60\xa1\x70\x72\x70\x00\xfa\xaf\x29\x21\xa4\xe3\x0a\x36\x4b\xe5\x29\xcb\xb9\x29\x4f\x98\x2b\x0c\x9c\x96\xcd\x33\x49\xe7\xef\xfa\x61\xda\xdf\x7e\x84\x5c\x95\x13\xd3\xa9\x76\x07\x6a\xcd\xdf\x2d\x1b\x4f\x3e\xc9\x3f\x75\x18\x4b\x1d\x6d\x3b\x28\x4b\x60\x3d\x6c\x27\xc7\x23\xfd\x51\x9d\x43\x3d\xc0\x3a\xab\x4e\x8b\xbf\xda\x6a\x70\xc6\x17\x03\x1f\x7d\x5d\x0d\x54\x59\x8e\x79\xb7\xf0\x75\x3c\x99\xc8\x03\x78\xc4\x72\x8e\xfd\xbc\x07\xce\x52\xec\x25\x3d\x51\xd4\xaa\x2f\xa3\xa5\x87\xd4\xe3\xe1\x55\xc5\x94\xb1\xc5\xd7\x36\xff\xfb\xa9\x55\x5f\x5c\xbf\x41\x96\x94\x3b\x38\xd8\x1c\x88\xbe\x59\x86\x09\x17\xfc\x16\x3d\x75\x34\x4e\x3e\x43\x70\x4c\x79\x12\x64\x19\x64\xe2\xc4\x33\xd0\x5c\x52\xe2\xa0\xff\xbb\x82\x37\xf6\x86\x49\xd7\x64\x2b\xdb\xab\xbf\x74\x9a\x50\xde\x8d\x5f\x26\xab\x29\x1d\x76\xdd\xef\x3d\x41\x6b\x60\x7c\x00\x11\x88\x74\x5c\xd9\x3d\xd7\x69\xaa\x76\x20\x17\x90\x85\x81\xdd\x57\x47\xc7\x2b\xdc\x55\x0e\xbf\x30\x4c\x50\xa3\x77\x82\x6b\x5e\x7c\xad\x8e\x57\xa5\x6d\xe2\x22\xea\xa7\x99\x55\xa4\xd8\xdf\xd7\x2a\xfb\xdf\x1f\x1b\x4b\x3d\xf8\x6c\x73\xd9\x44\x18\x7b\x74\xe2\x58\xaa\x8e\x24\x8c\x5b\x79\x18\x61\xea\x2b\xa4\x5c\xc7\x57\xc9\x2e\x29\x18\xe2\x25\x3d\xda\x66\xc3\xcc\x9a\x9c\x0d\x8e\xd0\x9e\x30\x81\xa4\x94\x73\x7c\xd8\x73\xb1\xdc\x2c\x98\x3d\xcb\xec\x05\xc3\xb0\x18\x66\xce\x39\xc3\x31\x5d\x51\xe5\x8f\x2b\x4a\xb2\xbf\x63\xc3\xa8\x63\x3b\xf1\xca\xd4\x48\x8d\xda\xcf\x41\x1d\xd7\xa3\x3e\x87\x4a\x8f\x9d\xf8\x71\x39\x52\xe2\x56\x59\xaa\x19\x14\xd1\x92\xa1\x5c\xcd\x17\x18\xb8\xce\xac\x95\xc2\x44\xbc\xb2\x86\x5b\xb5\x17\xe5\xb9\x80\x59\x5c\x96\xea\x6a\x54\xdf\x47\x2a\x26\x48\x14\x1d\x64\x15\x85\xcd\x68\x60\x0e\x17\xfc\x00\xc1\x4c\xa5\x66\xaf\x00\x06\xc7\x91\xfb\xc0\x08\xbe\x47\xb7\x85\xea\xd6\x06\x9e\x37\x02\x60\xcc\xe2\xc0\x7f\x3e\xb4\xea\xeb\x01\x67\x60\x61\x04\xed\x4d\x97\x29\xd4\xfb\x64\x08\x50\x42\x3d\xae\x44\x22\xc2\x34\x4b\xe8\x89\xcc\x4b\x40\x01\x50\x0a\x62\xbb\x3f\x2b\xd5\x28\xdd\x9a\x42\xea\xf5\x4c\xdb\x66\x31\xcf\x1c\x88\x46\xb7\x12\xc9\xb8\x58\x8b\xfd\x6c\xd3\x38\xe5\xa4\xf2\xfe\x3c\x6b\xc3\xa3\x55\x6a\x12\x01\x82\x24\x78\x8b\x77\x15\xf4\x2d\x19\x16\x08\x3e\x9d\xa2\xf9\xaf\x3f\xef\xf4\xc4\x1a\x33\x33\x1b\xab\x8e\xf9\x82\xd0\x11\x8c\x8c\xc7\x2e\xd8\x82\x6e\x2f\x8c\x26\xe4\x1f\xa5\xc3\xbb\x47\xe7\x7f\x5d\x47\x16\xec\x48\x3d\x3c\xc1\x87\xeb\xa9\xb5\x87\xd5\x5b\x5d\x30\xc5\x84\x0e\x80\x1b\x8e\x46\xf6\xae\xa6\x68\xb8\xe4\xea\xc1\xed\x28\xed\xdb\x0e\xc0\x53\x33\x33\x42\x48\x11\x78\x24\xdc\xb9\x6a\xf3\xf9\x7a\xa5\x49\x0a\xd3\xb5\x79\xc3\x8b\x2f\x7f\x40\xb1\xa7\x30\x83\x8e\xd7\x0c\x9b\xa6\xdb\xcd\x6c\x17\x3a\xbb\x7e\xda\xff\x5b\x74\x17\x7c\xec\x2e\xc7\xeb\xa4\x4c\x4c\x6c\xd6\x49\x71\x35\x10\x45\x0b\xa2\xe0\x4d\xf9\xc0\x86\x95\x21\xd9\x5e\x2d\x6c\x3c\x9d\x23\xa5\x92\x97\xda\xaa\x3a\x35\xbb\x55\x79\x83\xea\x78\x1b\x3c\x6a\xee\xa4\x42\x75\x1f\xfe\x41\xc5\x76\xba\xfc\xf0\xc8\xba\xa2\x0f\xa1\x7d\xbd\x1e\x28\x25\xd6\xbb\xf0\x16\x70\x62\xf7\xb0\x6e\xe1\xc4\x7e\x46\x76\x1f\x7f\x75\x12\x3e\x0c\x83\x2b\xb8\x49\x29\xf2\xf9\x36\xf7\x04\x11\x5d\x08\x9f\x9f\x92\x2c\xb8\xa4\x9b\xef\xd0\xb9\xe1\x89\x3e\x7a\x7d\x28\x5f\x5c\x25\x4f\x85\xd8\x72\x72\x4c\x2b\x86\x60\x41\x0b\xc3\x62\x98\x59\x05\xea\x6a\xd0\x26\x96\x6a\xbe\x2c\xb0\xd0\x24\xa1\xcd\xd2\x21\xab\xca\x30\x4d\x0e\x5d\xb4\x50\xe6\x28\x76\xd1\x61\x36\x90\x0d\x29\xfc\x73\xf4\xe0\xa4\x53\xeb\x45\x08\x87\xdd\x5e\x81\xb9\x26\x84\x57\x1b\x4a\x0c\x0d\x44\x9d\x68\x38\x5c\x85\x05\xa1\x80\xe1\xf3\x7b\x68\xbb\xe0\x2d\xec\x5a\xad\x21\xb6\x89\x12\xf2\x13\x16\x85\x2a\xa5\x5f\xfe\x02\xdb\x8f\x8b\x23\x33\xb6\x35\xf9\x5b\xc7\x0e\x32\x9b\xe7\x2e\xb4\xc5\xc7\x4e\xd2\x0d\x23\xc3\x07\xd9\x9a\xc0\xdb\xe5\x8e\xf2\x5e\xba\x2c\xf4\xae\x14\x52\xbc\xfc\x44\x4b\x0d\x43\xb1\x60\xaf\x34\xd1\xe8\x8a\xb0\xd0\x18\x21\x24\xd7\xda\x50\x7c\xff\x7a\x30\xa7\x97\xbe\x32\xa9\xf4\xcb\x54\x2f\xe8\x04\x56\x07\x9c\xe6\x31\x4d\xdf\x7b\x4c\x8d\xa3\x14\x3d\xdb\xe7\xc7\x22\xa3\x71\x9b\x76\x8c\x04\x52\xa3\x8a\x79\x0b\x69\xf6\xb9\x2a\x80\x72\x41\x8a\xa3\x8d\xba\x43\x23\xb0\x8a\x6d\x7a\xda\x83\x3d\xab\x6f\x83\x85\x7b\x1f\x5b\x02\xd1\xdb\x7d\x4a\x07\xb1\x71\x7e\x42\x8f\x11\x63\x4b\xbb\x5a\x4a\x67\x32\x50\xd2\xb5\xdf\x0e\x34\x91\xcc\xb7\xb1\x71\x98\x28\x94\xac\xae\x70\xb8\x51\xf0\x2a\x0a\x26\x14\x88\xe2\x23\xff\x9c\x32\x20\xa7\xaf\xee\xc1\x7b\xe7\x74\x1b\xf8\x2d\xf8\x2c\x64\xa3\x5f\x2f\x3d\x4e\xe7\xd5\x2b\x0a\x9e\x4b\x5d\xbf\x17\x1c\xf8\xba\x31\x7d\x70\x63\x15\x2f\x8f\xa9\x76\x5a\xde\x64\x0c\xe2\x74\xa2\xda\x82\x42\x4c\x49\x0f\x81\x57\x77\xe0\x07\x17\x4f\x2a\x64\x57\x1c\xf5\xa3\x22\x27\x64\x97\x98\xeb\x86\xa6\x03\xff\xd2\xd7\x1c\x4c\xa2\xba\x26\xa1\x06\x57\xbd\x66\x9e\x48\xe7\x93\x5a\x45\xc2\x65\x6b\x16\x6d\x42\xb1\x07\x9c\x1f\xf3\x84\xe3\xd9\xdf\xc6\x52\x12\x82\xc9\xf1\x28\xb2\xd9\xc9\xd2\x01\x1b\x74\x99\xaf\xf6\xb3\x37\x67\xc7\xc2\xc8\xbf\xdf\x8c\x92\x22\x4b\x3b\xc3\x90\xd5\x02\x61\x94\x79\x80\x9c\x4f\x82\x47\x35\x95\x1b\x91\xbe\xe4\x93\x7e\xa8\xea\x66\xa0\x66\xe4\x01\x97\xe6\x7f\x50\xcf\xe7\xac\x4b\x4e\xf3\x61\xbb\x4a\xff\x4c\x28\x53\x21\xd8\x80\xac\xe7\xc9\x27\x63\xfd\x86\xd9\xd9\xb9\xe6\xb2\x29\x6c\x16\xa6\x31\xc3\xd1\x94\xb1\x77\x96\x7f\x2c\x9f\x7b\xf2\x49\x52\xeb\x6a\xc7\x51\x88\x5f\x73\x99\x82\xeb\x20\x9e\x1b\x2b\x8a\x3e\xd5\x5c\x88\xb2\x3e\xed\x45\x54\x43\x26\x54\x9b\x97\x2b\x4c\x52\x4b\xf7\x20\x9b\x8e\xc9\xda\x2b\x9f\x1a\xc0\x4b\x62\x90\x45\xdd\xa8\xb3\xcd\x43\x3b\x6e\x63\x35\xa3\x98\x73\x51\x65\xe8\x8f\xb7\xd4\x3c\x3e\x63\x30\xa5\x6d\x5c\x2d\x0f\x18\x83\x35\xd5\xca\x0d\xd3\x61\x52\x64\x2b\x7d\x0b\xf0\x1d\x02\x85\x4b\x9a\xd2\xea\xd2\x26\x4a\x57\xf2\xfe\x3e\x95\xc1\xc2\x15\x12\x69\x3f\x88\xf2\x92\xe5\x89\x03\x14\xc2\xdf\xc4\xea\xe0\x13\x85\x2e\x36\x9d\x95\x07\x1b\x8e\xd8\xe1\xbb\x81\x72\x1f\x17\x35\xa4\xf8\x18\xdd\x26\x3d\x98\xa7\x7f\x51\x31\x49\xfd\x00\xc4\x00\xae\x55\xeb\xe7\x4f\x8f\x96\xbe\x1b\x84\xd9\x59\x84\x1d\x0f\x83\xa1\x4a\x88\x01\xe8\x22\x71\xab\x0f\xae\x92\x95\x11\xc7\xe6\x2b\xe4\xfd\x28\xb6\xf9\x03\x7e\x00\x05\x34\x70\xf8\xcd\x3f\x81\xe1\x47\x32\x7a\x3b\xa8\x6c\xa9\xb0\x8d\xd1\xef\x38\x1f\x55\x59\x33\xfe\xab\x52\x71\xfc\x1c\xa1\x4b\xc3\x90\xc9\xdf\xa1\x60\x06\x11\xdf\xee\x55\xa5\x7f\xf0\xc3\xda\xbe\x76\x3f\x2d\xd2\xac\x41\x15\x38\x59\x5a\x0d\x27\x24\x7a\x69\xcc\x11\xce\xcc\x34\xab\x9d\xd0\x6f\x47\x26\x61\x54\xbf\xd0\x26\xf8\x5b\x43\xaa\x02\x9f\x76\xca\xc3\xbc\x5e\x8a\x92\xb4\xfa\x39\xc5\x27\x00\xd9\x5e\xac\xc8\xff\x80\xb5\x86\x58\xe8\x68\x4d\x8c\x2e\x1a\xe6\x13\xbe\xb8\xbf\x0e\xc3\xa4\x61\x91\xc2\xbd\x50\x27\x07\xd3\x37\x49\x64\xc2\x86\x9e\x81\xf6\x60\xea\xf3\x35\xf8\xd5\x03\x8c\x2a\xe5\x48\x1d\xce\x8e\x7b\x40\x2e\x8a\xf0\xe2\x49\xdf\x57\x32\x5b\x2b\x91\x8d\x3b\xf9\x4e\x2a\xa0\xc2\x4f\x5c\xa4\x8a\x03\xd6\xcc\x89\x52\x09\xbe\x5e\x22\x67\x24\xa3\x6d\x78\xaa\x6e\x7a\xc8\x35\x28\xee\x6b\x99\x20\x68\x38\x63\x91\x30\x40\x40\x86\x3c\x5d\x6f\x37\xcd\xba\xe9\x64\xc3\x8b\x66\xe8\x10\x00\x5e\x1e\x8e\x91\x79\xc2\xd0\x6b\x3b\xae\xf4\xb6\x16\xd3\x2c\x6a\xa8\x11\xbc\x73\x6a\x2e\xe7\x9c\x0b\xd2\xfb\x51\x12\x81\x79\x6e\x02\x75\x1f\x8d\x40\x43\x81\x98\xdb\x0d\x5c\xea\x19\x5b\x54\xd2\x3b\xf8\xcd\x7f\xf0\x9b\xff\xa0\x41\x0f\x0c\xa1\xc8\x29\x85\x5a\x3d\x35\x96\xba\x3f\xb7\xf7\x85\xa6\x4d\x0a\x9b\x49\x5d\xdd\x27\xe0\xdc\xde\x95\xf8\xd7\x63\x8a\x17\xac\xc1\x38\x1c\xca\x7d\x24\xcc\xb3\x71\x1c\xcf\x0f\xd6\xe3\x1b\x6e\xbd\x0e\x62\x33\xcc\x23\xa1\x87\xc6\x16\x84\x57\xe3\xe3\x1a\xc2\xae\xe9\x66\x92\x3a\xc0\x36\xfb\x78\xba\x09\xf1\xf7\x35\xb8\xfa\xd0\xf4\x6d\x66\x98\x23\x0c\x6f\x94\x4b\x50\x32\x9a\xe7\x7f\xf3\xa4\x22\x3e\xec\x0e\x4d\x46\x65\x08\x74\x02\x85\x75\xa5\xe1\x78\x61\xcf\x6a\x6c\x49\xb7\x9b\x19\x29\x30\x38\x0d\xdf\x8b\x8a\xbc\xe2\xa7\x78\x66\x22\xae\xb0\x4b\x65\xe1\x34\xba\xc1\xd4\x7e\xa5\x9f\x8a\xe0\x02\x16\x1e\x25\x57\xf3\x64\xa9\x61\x11\xa3\x01\x3a\xd1\x52\xba\x8f\xa6\x88\x48\x93\xc0\xa7\x57\xdc\x58\xe2\x93\x9a\x71\xac\xb9\x66\xcf\x86\x8b\x8d\xc6\x57\xbf\xec\x24\x8d\x3d\x98\x63\x1c\xd6\x7a\xf0\xd9\x66\x3b\x4b\x0d\xd0\xa4\x52\x9c\x19\x61\xf4\xf1\x7a\x10\x04\xf2\x05\x8b\x3e\x3d\x16\x0c\xe0\x01\xb3\x84\xe0\x0d\xe8\xaa\x4f\x73\xf3\x4f\x35\xab\x97\x17\x85\x46\xf8\xe1\x61\xd6\xae\x73\x78\xca\x67\x75\xf2\xfb\x79\x0c\x59\x7c\x67\xca\xa0\x7b\xc6\xc7\x5e\x7e\xce\x26\x89\x85\x77\x87\x13\x7e\x2d\x50\x1e\xf9\xb5\x52\xb3\x1e\xf5\x27\x2b\xc7\x21\x2a\x97\x74\x39\x32\x3f\x56\x7d\x1e\xd1\x1b\xb3\xb6\xc0\x3b\xde\x50\xb0\x19\x13\x92\x1f\x8f\x92\x2e\x41\xbc\x60\x86\xb7\xb4\x9c\x63\xf9\xe5\xdb\xba\x67\x78\x43\x55\x22\x79\xc8\x49\xe4\x39\x6b\xda\x1a\xc3\xc1\xc0\x66\x68\x26\xc2\x7c\x01\x15\xc1\xc7\xb5\x73\x03\x4b\x51\x58\x44\xfd\xbc\xa1\x82\x9e\x43\xf8\x1d\x3e\x09\x3e\xad\x03\xb9\x64\x92\x8e\x4d\xda\x36\x43\xeb\x45\x14\x6d\x14\x35\xcb\xa9\x31\xe7\xf2\x54\xb3\x3f\xcc\x3a\xd6\x31\xa6\x21\x8b\x06\x4b\x8f\xd2\xe0\x9a\xe6\x78\xc1\x63\x97\x47\x58\x04\xa4\xa0\xf5\x75\x5d\x35\xfb\xfa\x66\xd8\xc3\xdc\xfc\x5c\xf3\xab\x5f\x6e\xa8\xae\xcb\x59\x35\x03\x75\x36\xf0\x94\xd7\x71\x64\xf3\xed\xb4\x2b\xdd\xe4\xa1\x7b\x1b\x10\xdd\x75\x00\x16\xcf\x66\x82\xa2\x1f\xaa\xca\xdb\x51\x53\x42\xc1\xfb\x1a\xd5\xde\xff\x06\xdd\xc2\x9e\xe9\x9b\xc5\xa1\x69\x78\x2c\xc7\x56\x04\x49\x7c\xb2\xea\x71\x08\x0b\xb1\xc9\x7b\xb4\x82\x01\xb2\x42\x0c\xc0\xb9\x13\x9f\xb8\x67\x14\xf5\x47\x68\xca\x61\x48\xde\x0d\xfc\x88\x31\xf6\x1b\xb0\x99\x53\xab\x35\x8d\xd9\x34\x09\xd3\xae\x4d\x50\x71\x16\xf0\x41\x95\xe6\x09\x28\xa1\x6e\x30\xdb\x64\xe9\x30\xe9\x50\x37\xc5\x6d\xeb\xf9\xbd\x5c\xe6\xb9\x8e\xf5\x20\x51\x80\x62\x23\xb4\x19\xa2\x4e\xa5\xfa\x35\xbf\xd7\x95\x2d\x5d\xf9\x23\x8d\x63\x0b\xc6\x5b\x2f\x00\xc5\x55\x4d\x18\x8e\x2b\x81\xd2\x7f\xfd\xc1\x48\xb7\x2a\xcf\xed\x76\xaf\x7c\xc2\x3c\xf5\x2c\x98\x5b\xfa\xa1\x8b\x8f\xd5\x04\xde\xd6\xd6\xc8\xf4\x54\x75\xef\xa8\xd0\x62\x96\x4e\x60\x09\x8f\xbb\xfb\x88\x92\xbc\x88\x8a\x21\xf1\xcf\x51\x92\x89\x48\xff\x64\xa0\x26\x29\xdf\xd1\xc5\xb3\x77\xa8\x34\xe4\x7a\xb8\xfb\x67\xdd\x7a\xf2\xc5\x02\xdb\x19\x12\x4c\xdf\x81\xd8\x18\x5a\xc3\x27\x75\x84\x4e\x79\xe1\x4b\x7d\x42\xb7\xa3\xc0\x6c\x6b\x4a\xdd\x6c\x58\x64\x36\xec\x15\xdc\x57\x07\xd6\x97\xf1\x78\x7c\xe2\x50\x29\xcb\x69\xda\x99\xa2\x3b\x81\x23\xfb\x50\x3d\xaa\x87\x5b\xa3\x72\x96\x2e\x2f\x44\x51\x4c\xda\xdc\x75\xfc\x85\xa9\x29\x0a\x13\xc5\x23\x97\x7b\x56\x11\xe8\xfa\x6c\xb2\x9d\x26\x9d\x5e\x1a\x77\x6c\xc6\xf4\xc5\xb8\xc2\x75\x9d\x4d\x02\x35\x25\x59\x45\xf5\xdb\x08\x19\x0f\xd5\xc4\xa6\x2f\x34\xe3\x28\x59\xdc\x1c\x39\xd0\xeb\x91\xd0\xc1\x97\xd3\x56\x68\x04\x82\xfc\x9b\xac\xcb\xea\x97\x64\xbd\x4a\x60\x66\x93\x8e\x49\xba\x64\xd4\xaa\x3f\x75\x2c\xc7\xbe\x2a\xb4\x9b\xf2\x4b\x78\xe9\xa9\xd5\x4d\xc2\x56\xcf\xcf\x35\x9f\xd6\x8a\x70\x17\x14\xb1\xd6\x38\x99\xd1\xbe\xe9\x66\xd1\xcb\xd2\x61\xb7\xd7\xf0\x03\xf7\x88\x78\xf9\xb8\x66\xf4\x7b\xae\x69\x3a\x1d\xc1\xff\x09\xa8\x9c\xae\x8f\x4f\x82\x27\x34\x90\xaf\x43\x74\x8a\xdc\xa5\x99\xf3\x0c\x15\x9e\xad\x62\x0c\x67\x58\x45\xfd\x4e\x0d\xab\xe1\x07\x87\x5f\x57\x9c\x32\xaf\xab\xa1\x01\x93\x24\xe9\x30\x09\x49\xc4\x6a\xfa\xa0\x27\xf7\xf5\xb9\xf2\x8f\xd4\xb4\xd7\x8f\xa8\x64\x23\x14\x0c\x3e\xc7\x05\x33\xa2\xed\x6c\xa7\xc7\xc7\xfa\x6a\x9a\x7e\xe2\x5d\xb2\xc5\xa2\x5c\x5b\x2d\x0d\xb0\x3d\x62\x96\x01\x69\xc6\xf5\x40\x69\xe5\x02\x97\x09\xd7\x77\xcf\x59\x21\x24\x27\xce\xb2\x62\x99\x3f\xd8\xf2\x21\xe0\x86\x82\xaf\x3c\x31\x26\x8a\x3c\x3b\xdb\xec\xd0\x2b\x43\x4c\x0c\x37\xb1\x4e\x97\x03\x67\x7e\x1c\x4e\x4f\x72\x91\xf1\x08\xfc\x99\xa6\xcd\x0b\x43\x84\x9d\xae\x79\x56\x97\x2b\x6c\x7e\x2d\xfb\xf6\x51\xda\xd0\x8f\x5e\x75\x17\x0f\x53\xac\x01\x3b\x48\xce\x44\xd1\xdd\x47\x3a\xbf\xf9\x0f\x7f\xa5\xa1\x09\x02\xaa\x35\x26\xc4\x01\x8f\x29\xe9\xae\x76\x9a\x19\xcc\xe6\xfa\x15\x7f\x39\x50\x49\xd0\x65\x45\xa2\xe2\xb3\xda\xea\xcd\x28\xbe\x32\x21\x12\xbd\x4d\xef\x5a\x82\x01\x5f\x7e\xe9\x87\xa1\x59\x46\xdb\x48\x86\x72\x1b\x8e\x2d\xf7\x30\xcc\x17\x3a\x78\x77\x46\xf8\x00\xef\x04\x4f\x28\x09\x42\xf2\x90\xc5\x30\xe3\xba\x08\xe3\xc4\xe8\x9b\x04\x33\xb6\x29\x8c\x98\x99\x99\x6f\xee\x9f\xdd\x85\xaf\x44\xee\x76\x4d\x01\xf2\xb9\x37\xa0\x24\x56\x04\x2d\xf3\xed\x40\x69\x05\x9f\xd5\xfc\x88\x87\x90\x02\xa0\x5a\x0b\x6b\xa9\x67\xc8\xe9\x19\xff\x97\x7b\x94\x66\xff\x4f\xc8\x24\xf8\xb2\xb4\x77\x71\xb6\xcf\x0a\xd3\x7a\xcc\x0e\xc1\xed\xbf\x26\x53\xe8\xa6\x1a\x5d\x6a\xf1\x97\xaa\x7b\x43\x7c\x13\x0b\x36\x9b\x68\xcc\xef\xdd\xc0\x22\x16\xda\x56\xba\x2d\x54\xb8\x09\xdb\x20\x09\x4e\x3b\x9c\x50\xa4\xf5\x17\x01\x63\x82\xe3\xbf\xa1\x35\xec\x0f\xd5\x81\xb3\x4d\x96\x19\x20\xdf\x51\xb8\x39\xa4\xa4\x72\x0e\x8d\x0e\xcd\x2f\xc6\x36\x47\xbd\xdc\xa9\xea\xb8\x24\xf5\x66\xa0\x00\x9d\x67\x46\xea\xf4\x99\xed\x7c\xce\x8b\x20\x10\x19\xe4\x0b\x1b\x57\xc8\xe7\x32\x19\x16\xd5\xc0\x85\x17\xc9\xd7\x73\x3e\x83\xb9\x46\xa7\xbb\x5a\xf9\x72\x84\x4a\x3b\x5b\x23\xc0\x54\x9f\xa5\xee\x00\xb5\x08\xea\xbd\x93\xab\x1e\x32\x77\x0f\x4f\x05\xdb\xeb\x06\xde\x36\x8c\xcd\xc3\xba\xad\x84\x2e\x35\xd7\x03\x02\x2d\xad\xf8\x36\x40\x54\x4e\x78\xb8\xda\x4b\x88\x95\xaf\x53\x0c\x8b\xb0\xf3\x08\x56\x18\x5e\xf7\x83\x10\xa1\x70\x95\x8e\x7d\x4e\x13\x9f\x5e\x2b\xd6\xc7\xee\x16\x55\xcd\x90\xb0\x5f\xab\x0b\x4e\x3b\xa6\x6f\xba\xb6\x33\xa9\x22\xc0\xd2\x87\xea\x53\x58\x95\xc8\xb7\xa6\x56\x15\xcb\xe4\x09\x05\x91\x6a\x67\x51\x11\xe5\xbd\xdd\x4a\x39\xf6\x42\x30\xaa\xf3\xe8\x20\xbc\xbc\x17\x60\x07\xef\x2a\x66\x9a\x35\x0a\x3c\x61\xae\x5f\x2f\x15\x77\xd8\x05\x2d\x42\x8b\x50\xdd\x8d\x9c\x55\x6e\x00\x5b\xe9\xa4\x7a\x4e\x2c\x1e\x81\xc4\xec\x0f\x4a\x85\xda\xb8\x57\x47\xaf\xfc\xf2\xd0\x64\x85\xcd\x62\x30\xb1\x21\x28\x9f\x68\xf9\xd9\x44\xc4\x8e\xbc\xaf\x9d\x8f\xe8\x66\xa6\x33\xac\x62\xb0\x09\x45\x8b\x7a\x55\x73\xd4\x62\x06\x5c\x50\xc0\x0f\xb8\xc7\xf5\x05\x88\xb5\xbb\xb6\xd0\x57\xbf\xcc\xa1\xed\x61\x85\xb5\x67\xde\x49\xa9\xbb\xa8\xbc\x35\x8c\x98\xd7\xd0\xe9\xd1\xeb\x66\xa5\x0f\xaa\xae\xa9\xa9\x2d\x12\xf9\xc1\x82\x73\xf0\x23\x5f\x39\x3a\x5c\xa7\x5f\x96\x0f\xac\x0d\x1d\x5d\x34\xd3\x5a\x96\xaa\xb5\x7c\x62\x0c\x68\x37\x33\xd3\x0c\x33\x13\x2e\xc2\x31\x38\x55\x0e\x85\x9f\x1a\xe1\x3f\x37\x09\x93\x7d\xe0\xda\x51\xc3\xc7\xba\x6d\xe8\xd2\xd9\x3a\xed\x66\xd7\xdf\xac\xae\x00\x6e\xe9\xb6\x12\x1d\x5a\x87\x03\x42\x15\xf0\x8f\x02\xcd\x4d\x4c\x37\xe0\x48\x97\xaa\xdb\x46\x14\x34\xae\xac\x34\x3b\xdb\x1c\x98\xbc\x20\x6a\x23\xa4\xb4\xac\xc1\x8c\xee\xd1\x59\x65\x55\x3f\xc6\x12\xc5\x02\xff\x1f\x94\xec\xd8\xf8\x74\xef\xf4\xc1\x66\x3b\xb3\x66\xd1\x79\x72\xcd\xf9\xca\xc7\x63\x3d\x8b\x7d\xfb\x9a\xb6\x9b\x4e\x78\x15\x15\xae\x6c\xea\x56\x95\xa0\x72\xbc\x0b\x1f\x26\x96\x1a\xf3\x6e\x35\x38\x0e\xc2\x91\x8a\x30\x7c\x98\xe3\x09\xf6\x43\x97\xaf\xd3\x8d\x38\x8d\x66\x4f\xf5\x37\xd1\x72\xa3\x6d\x6e\xb6\x7f\xd2\x93\x0d\xff\x1b\x7c\x09\x0a\xe2\x18\xa2\x43\x3d\xe3\x96\xe2\x29\x3b\x5d\x8e\x54\x45\xec\xa0\x30\x49\x68\x27\xb4\xf3\xbe\x3d\xa2\x2f\xa2\x24\xd3\x8e\x8e\x4d\xf2\x48\x59\xc2\x9a\xbc\xb0\x59\x32\xd5\xd8\xb7\x6f\x54\x2f\x93\x69\x28\xe8\xbe\xe1\xa1\x21\xee\x84\xcd\xc9\xd2\xd4\x78\x9c\x4f\x8c\xb5\xec\x67\x67\x9b\xb9\x25\x46\x0c\xde\x00\x30\x05\xef\x06\xca\x17\xbe\xab\x52\x07\x1a\x39\xcf\xff\xd3\x18\x7d\x1f\x73\x90\xed\xc5\x24\x5d\x8e\x6d\xa7\x2b\x89\x9c\x2a\x28\xbb\x92\x5f\xa0\x54\x18\x63\x33\x60\xf6\x54\xb4\x84\xf1\x23\x7c\xac\x99\xba\xed\x32\x64\x37\xe0\x2a\xee\xe2\x0b\xdd\x40\x86\xe2\xc7\x0a\x7c\x67\xe9\x3d\x05\x86\x65\x42\x61\x7c\xf3\x2f\x62\x0f\x08\xd5\x92\x1f\xaf\x5a\xd7\xa6\x55\xb0\x8a\x2e\x7a\x74\x80\x80\xab\x8e\x64\x66\xc1\x0e\x35\x24\x6e\x4d\xaf\xb0\xb5\x4d\xe2\x08\x9d\x49\x3f\x72\x79\x13\xee\x99\x4f\x82\x4f\xab\x1b\xef\x76\x49\x64\x51\xa4\xfd\x49\xc5\x37\x7d\x51\x2f\x89\x93\x8a\xb4\x68\xab\xa2\xff\x3c\x32\x96\x49\x91\x14\xa9\x8d\xb2\x9c\x96\x3a\xec\xed\x5f\xc0\xde\x8a\xc6\x57\xf5\x55\xb0\xfd\x97\x81\x7d\x16\x06\x17\x15\xc9\x46\x61\xef\x69\x60\x2f\x60\x54\xca\xc0\xcf\x3f\x9c\x52\x30\x3a\x26\x93\xe2\x3f\x52\x18\xd5\xa3\x63\xa3\x27\x20\xeb\xea\x0f\x6c\x11\x09\x9d\x87\x53\xd2\xf3\xaa\x7a\xa5\x67\xb9\xcb\xd3\x28\x9e\xf4\x25\xa5\x4b\xba\x5e\x81\xc1\x49\x61\x81\xd2\x35\x1a\x37\x20\xbe\x6c\xed\x62\x9c\x72\x33\x80\xfd\xcb\x88\xaf\xa9\x9b\x41\x9a\xfd\x3c\x99\x3b\x69\x00\xa8\x8e\xe1\x25\x02\x5b\xc3\x2b\xfc\xcf\x81\x92\x0b\x3b\x4d\xe0\x60\x60\xbb\xbe\x87\xe5\xe1\x38\x99\xbf\xf4\x35\xf6\x93\xe0\x6f\xc0\xe2\xfa\x43\x45\x0d\xfa\x0e\xc5\xe9\x32\x5d\x54\x45\x44\xf8\xfb\xd3\x8c\xb0\x07\xb8\xfb\x3d\x2c\x26\x97\xe1\xcf\xcf\x39\x44\xa1\x6e\x31\x06\x8a\x3b\x98\x99\xc1\xd1\x3f\x5f\x2f\x55\x01\xea\x06\x56\x03\x52\x71\x20\x7a\x10\xb7\x61\x04\x0c\xf9\xce\x0d\xea\x3c\x22\xb0\x38\x8f\x11\x24\x01\xfb\x63\xcf\x60\x9b\x1e\x45\x14\x89\xed\x74\x5d\x69\x5c\x87\x43\xc0\xc6\x5c\x44\xea\xc8\x5b\xce\xa8\xc2\x99\x89\xa3\x82\xc7\x43\x1c\xcc\x99\x1e\x20\x9f\xd4\xa9\x41\x4b\x42\xdd\xf0\x58\xde\x53\x3a\xfa\x3c\x55\xdb\xbb\x33\x0b\x0b\x26\xca\x50\xa1\xe4\x59\xfa\x72\x64\xb0\xfe\x89\xf1\x94\xea\xb9\xbd\x73\x3b\xaa\xb7\x06\x3f\x7c\x41\x93\xd3\x7f\x44\xef\x40\xc6\x04\xbc\x04\xe0\x21\xe5\x0c\xde\xc6\x55\xb9\xe2\x55\xf5\xd0\xa5\x78\xe5\x31\x7b\xdf\x54\x45\xde\x9e\x35\x9d\x49\x3f\x23\x78\x97\xd7\x00\xcb\x9b\x61\xaf\x8a\xd6\x99\x1f\x16\xb9\x3b\x36\xfc\x72\xf0\x59\xa2\xcc\x6c\x78\x1c\x31\x4b\xf3\xf3\x49\x1d\xcf\x9d\x19\x98\xac\x98\xac\xee\x4a\x88\xdc\xe8\x82\x25\xe5\xf6\x1a\xb5\x17\x80\xb0\x91\xa4\x4d\x67\x7a\x51\xb2\xb2\x5d\x85\x18\xaf\xe1\x9e\x65\xcc\xa8\xe1\x34\x14\x4f\x8f\x2a\xd1\x2a\x16\xa1\x2d\xab\x9a\x9c\x09\x2d\x07\x59\xf5\x23\xa2\xd0\x04\xd2\x35\xf1\x94\xbf\xae\x23\x8a\x49\xec\xa6\xb2\xb1\x1f\xea\xbe\xf9\x87\xd8\x15\x28\xb0\x5e\x54\x85\x04\x1b\xf6\x98\x49\x4f\xd4\x49\xaa\x6f\xc0\x37\xdf\xa1\x30\x1f\x90\xd6\x33\xd8\x89\xb0\xbe\x67\x94\x55\x66\xee\x22\xe5\xce\x3d\xd1\xa1\x0c\x3c\xd9\x57\x06\x71\x9a\x21\x08\xc1\xf5\x6c\x6d\xe9\x3e\x35\xed\x25\xed\x8c\x00\xfd\x18\x2f\x50\x92\x29\x35\xfd\x81\x89\xba\x09\xc7\xc8\x22\xb3\x41\x3f\x2c\xfa\x1b\xb2\xd3\x16\x86\x71\x6c\xb3\x82\x77\x9a\x50\x3f\x69\x1e\xa8\xe0\x73\xa3\xeb\xff\x2b\xd3\x12\xad\x4c\x29\x05\x12\xad\x79\x7a\x41\x91\x65\xfd\x80\xac\x1b\x1f\x07\x5e\x5e\xf5\x8e\x56\xaf\x22\x30\x69\xc6\x83\x64\xb0\x4b\xe7\x95\x0e\x8d\x26\x00\x4e\x4c\xb1\x6c\x73\x29\xff\x22\x20\xe1\xc9\x22\x3e\x51\x18\xdf\xca\xc6\x4b\xcf\x57\x90\xa9\xd5\x65\x0a\x62\x75\x9c\x14\x29\x34\xc3\x5c\xea\xab\xa8\x0d\xb3\x05\xe1\x93\x9a\x29\x9e\xe9\x66\x3e\xcc\x0b\x13\xb9\xf6\x8e\x00\x29\xe8\x73\x7c\x52\xc7\x7d\x78\xa0\xf2\x79\x7d\x9b\x85\x91\x89\x15\x85\xd5\x75\x45\x61\x75\xbd\x66\x3f\x1e\xa0\x71\xe8\x86\x0f\xc8\xce\xd3\x63\xe5\xe3\xda\x2e\xe2\xc0\xda\xce\x8a\x12\x99\xff\x3d\x25\x32\xff\x7b\x6a\xa9\x17\xd6\x50\x8c\xee\xc8\x81\x3d\x05\xde\x29\xa5\xc8\x7e\x53\x05\x67\xdd\x88\xa3\x3d\x61\x7c\xf4\xdf\x7c\x36\xd8\xc9\xd7\x10\xdb\x06\x8d\x64\x38\xc4\xb4\x67\x38\xbc\x38\xf6\x12\x2a\x8b\xd3\x8f\xf2\x1c\x14\xec\xa2\x2f\xd2\x70\xaa\x27\x77\x15\x57\xd2\x25\xcd\x5c\xfd\xe6\xd8\x66\x90\xa8\xba\x6f\x58\x9f\x02\x4b\x1a\x82\x5a\x8e\x4d\xb0\xba\x18\x3c\xbd\x0d\x5d\xe3\x2d\x8a\xcc\x84\x20\x4b\xf2\x42\x0e\xff\x21\xd0\x50\x14\x1f\x31\x17\xd1\xc0\xe4\x46\x49\x70\xbd\x1d\xf8\xa2\xd7\xdb\xea\x6b\x33\xdb\x37\xd9\xa2\x57\x22\xc4\x55\xbc\xa5\xae\xe8\x2d\x15\x6c\x99\xbe\xe9\x01\x37\x8d\xbd\x7f\x13\xa3\x72\x7c\x52\xa7\xa5\x5b\x7d\xfb\x84\x6f\x73\x30\xf4\xc5\x09\xe8\xce\xcc\xb8\x8a\x47\x4d\xf9\x64\x21\x4d\x63\x62\xd7\x76\xdd\x7b\x88\x55\xf2\xf1\xd8\xda\xda\xb7\xaf\xd9\x55\x0b\x5f\x7c\x3d\x2d\x7c\x3e\xa9\xeb\xa0\xb4\x4d\x1c\xa7\x85\xc8\x12\x31\xdb\x28\xad\x7a\x61\x1e\xad\x59\xc4\xdd\x38\x2a\x5e\x5d\xf9\xd4\x4f\x28\x92\xa5\x25\x82\xbe\x3b\x82\x35\x0c\x91\xc8\x64\xb5\xd2\x00\x33\xfd\x28\x5e\x99\xf2\x9d\x9f\x73\xe0\x21\x12\xa2\x9f\xea\x1b\x10\xd8\xac\x6b\x62\xc7\x33\x81\x6a\x4c\x1d\x55\x23\x56\x0b\x99\x7d\x79\x48\x3f\xfd\xe4\x93\x6c\xe4\xae\xe2\x1b\xf9\xc4\x85\x9f\xc3\xbc\x67\xfd\x18\x89\x26\x15\xe4\x63\xcf\x8f\x9f\x86\xc3\xbe\x4d\x0a\x93\xe1\xce\xb1\x42\x30\x3c\xcf\xc7\x63\xf5\xfa\xe9\x83\xcd\x65\x93\x9b\x22\x04\x4b\xba\x00\xee\xe9\x16\x04\x71\xbf\x79\xe1\xcc\xcc\x34\x07\x26\x1a\xb1\x7b\x18\xa6\x91\xfe\x98\x87\xfb\xe4\x83\xb4\xa0\x64\x46\x8c\xe8\x68\xc1\x46\x91\x75\x8c\xa8\x55\x8e\x9b\xda\x6a\x11\x2c\xe7\xba\xc3\x7d\x51\xcd\xd2\x5d\xac\x2b\xc0\xd2\x68\x7a\xc3\x8f\xad\xdd\x56\x35\xdf\xdb\xda\x8e\x0d\xb1\x00\x46\xe0\x89\x7c\x32\xd6\x7e\xac\x0c\xe4\x62\x14\xc7\x39\x86\x83\xa4\xb6\xaa\x8a\x93\x77\x03\x9f\x4b\x5e\x50\xbe\x88\x70\x45\xb6\x33\xa5\x99\x92\xef\x28\xaa\xb8\xbf\x0a\x7c\xa4\xf0\x4e\xe0\x29\x9a\x3f\xd6\x5a\x81\x77\xc6\x2a\x2c\x73\xf3\x73\xcd\xb6\x8d\x23\xbb\x64\xc9\x1a\x23\x32\xfc\x19\x32\x0e\x59\xfb\x1e\x2a\x7e\xf9\x68\x9d\xc4\xf8\x42\x94\x24\xb2\x95\x19\x18\x18\xa8\x49\x98\x8b\x8a\xb6\x79\x40\x0a\xd8\x10\xd7\x73\x92\x87\xd5\x9f\xc2\x9b\x7f\x44\x05\x2b\xd4\xc8\xaf\x29\xcd\x7e\x84\x38\xfc\x01\x35\x8f\xd3\x49\xe3\xd8\x64\xe0\x21\x12\xd5\x4e\x5a\x23\x22\x89\x57\x3d\x08\x16\x82\x0e\x3c\x22\x9f\xc7\x31\x59\x23\x17\x75\x55\xd1\x3d\xdd\xfc\xca\x0e\x3e\x5b\x3d\xfb\x28\x44\x1c\x8b\x7e\x17\x24\xf2\xf8\x58\x8f\xd4\x99\x6c\x39\x4d\x91\x13\xc8\xc5\xea\x3b\x55\x81\x5e\xd4\x6f\x28\x76\xc0\xb3\x9a\xea\xe0\x6c\x5d\x51\xb1\x9f\x26\xd6\x6d\x4d\xd4\x43\xde\xd6\xc5\x91\xb7\x1d\x93\x47\xda\x4f\xa2\xf6\x10\x5d\x1b\x56\x23\x54\xad\xba\xeb\x75\xa5\xbb\xb6\x15\xa5\x4b\x71\x94\xbe\x5c\x77\x71\x73\x9b\x67\x7e\x6f\xf3\xf9\xe9\x83\x0f\x56\x5f\xc9\x98\x60\x22\x28\x41\x22\x39\x45\x42\x20\xc2\x83\x4e\x0e\xc4\x29\x11\x55\xef\x05\x49\xcc\x1d\xac\x2f\xf0\xde\x3f\xde\x52\xe6\xe2\x87\x14\xce\x39\xd1\xbc\xcd\x62\xbb\x94\xde\xfc\xea\x13\x2d\x45\xb1\x35\xd9\x52\x22\xdc\xb7\x80\x46\x53\x77\xf7\xf7\x9a\x86\x7c\x9a\xa3\x57\x73\x23\xab\xe7\x95\x94\x7b\xd7\xe4\xed\x86\xe2\xed\x65\x90\xae\xb0\x1a\xd5\x10\x2b\xf6\x0c\xf5\x5d\xf0\x12\x47\xaa\x67\x82\x20\xf6\xc0\xcb\xbe\x29\x86\x19\x82\x02\x74\x66\xb1\x7e\x90\x28\x32\xec\x59\x38\x63\x7e\xf1\x53\xc2\x0a\x9a\x1e\x32\x71\xf4\xaa\x00\x82\x9c\x86\xba\x03\xb9\x32\x36\x06\x68\xe4\xeb\xb5\x32\x8c\x79\x91\xa5\x7d\xbb\xc2\xdc\xe6\xa8\xa3\xf0\x32\xe2\x13\xa7\x4e\x53\x64\x66\x30\x88\x98\xab\x5f\xd4\x29\x55\x8e\x84\xfe\x2f\x3c\xff\x96\x31\x3e\xdf\xe9\x83\xcd\x6c\xd8\x16\x16\x2f\xbe\xd3\xc0\xe7\xca\xb7\x75\x1e\xb5\x64\xb3\x4e\x9c\x2e\xe5\x8b\xf4\xa6\xb0\xa8\x20\x62\xc8\xc7\x75\x0a\xec\xf9\xb0\xd3\x61\xa9\x1b\x17\x9a\xfa\x30\x75\x2c\x19\x9d\xdf\xdb\x5c\xee\x19\x28\x4d\xe9\x4a\x0a\xcf\xcc\xe9\xb1\xfa\xd3\xaa\x09\x3b\x88\x4d\x68\xdd\x7c\x9b\x68\x9a\x55\x97\x26\x43\x78\x35\x12\x23\x59\xda\x6e\x3b\x97\xeb\xd4\xa4\x5c\x4f\x6e\xbc\xce\x3d\x33\x53\x59\xb2\x4e\x36\xec\xf3\x36\x44\xbe\x8b\x01\x6b\x3e\x2e\x1f\xaf\xa1\x87\x00\xcf\x18\x0a\xbd\x6c\xd4\xf8\x44\xeb\x43\x16\x69\x66\x1f\xf0\xe3\x53\xa8\xdc\x49\xb2\x50\x3d\x72\x66\x4c\x53\xdc\x3b\xdc\xaf\xc0\xeb\x65\x9a\x70\x06\x9a\xaf\x6e\x96\xb5\x44\x79\xe6\x16\xca\x33\x0a\x9b\x36\x2b\x09\x6e\xa0\x9e\x27\x46\x2c\xb2\x9c\x62\x21\xa4\x73\x57\xa9\x01\x05\xff\x72\x12\xc6\x58\x66\x6c\x15\x91\x21\x50\x00\x48\xac\x4f\x8c\x30\x19\x0f\x93\x62\x65\xb4\xb5\x4b\x9b\x52\x58\x51\x1b\x4e\x3a\xea\xe3\x40\x69\x03\x7f\xac\x56\xe0\x30\x2e\xa2\xbe\x29\x6c\xbc\x02\xe8\x0c\x6a\x57\x77\xe9\xd9\x60\xbd\x1e\x03\xd2\x9d\xff\x81\x16\x00\xff\x83\x4a\x01\x8b\x2a\x86\x0f\xf3\x49\x3f\xed\x80\x46\xb1\x53\xd1\x98\x17\x46\xb2\x1f\xa8\x59\xb1\xdf\xba\xe0\xc8\xda\xf2\xe1\x60\x10\xd3\x72\xe3\x71\x47\xb9\x6e\x75\x0f\x75\x2c\xc8\xbd\x61\x56\x4c\xf9\x99\xab\xd7\x4b\x95\xce\xb0\x40\x25\x0b\x0f\xab\xd9\xb5\x2d\x68\x4a\xa2\x1f\xdf\x68\x39\x56\xf0\xa8\xc8\x43\x26\x5d\x13\x00\xa0\x0f\x07\xcf\xaa\x2a\x82\x09\x8b\x78\x85\x66\x87\x1c\x82\xdb\x35\x4d\xee\x29\xc6\xe2\x4b\xee\x33\xdd\x2c\xf2\x02\x7c\x22\x64\xda\xf0\xa2\xa6\x0e\x17\xfd\xf2\xd0\xac\x54\x69\xd4\xfc\x5e\x37\x36\xe2\x67\x08\x7e\x0e\x33\x84\x56\xc2\x0d\x07\x2e\xaa\xb6\x77\x9e\xda\x25\x9b\x4d\x2a\xbe\xfb\x73\xa8\x94\x08\xe2\xc7\x27\x4d\xe8\x53\xe2\xd5\x9c\xf0\xe3\x7e\xe9\xb0\xdb\x1b\x21\x2a\x3e\xa7\xe6\xed\xcf\xd5\x62\xb4\x4c\x16\xb5\xdb\xd6\x4d\x1f\x88\xdc\xa9\xdf\xbb\xe7\xb5\x20\xd5\x55\xd5\xbc\xef\x44\x39\x75\x72\x1a\xa8\xb0\xc1\x2e\x9d\x42\x85\x8d\x4f\x94\xf8\xa1\x7d\x65\x60\xb3\x82\x73\x55\xc7\xab\xe2\xa0\x91\xd0\x52\x47\x19\xe8\xba\xc6\xe4\x6e\x5d\xf5\xb8\x8e\x81\x4d\x92\x7c\x25\x5e\x32\x49\x04\x25\x4b\xc7\x57\x5e\xfd\xbd\x44\xe0\x0f\x29\x8c\x53\x9c\x3e\xcd\x05\x10\x51\x8d\xa3\x3f\x15\x39\xb9\x87\x35\xed\xef\x92\x8d\x89\xed\x03\x4f\x9b\x2b\x49\xb8\xed\x09\x80\x06\xb8\x88\xa9\x28\xc3\xef\xa0\xc5\xc2\xbc\x2f\xba\xff\x7c\x98\x6a\x0d\xaa\xb3\xf3\x8c\xe3\xd9\x51\x35\xd0\xd7\xc7\x22\xb6\xa7\xaa\x57\x92\x45\xb2\xce\x50\x53\x60\x0d\x36\x3e\x51\xd5\xce\x6c\x58\xf4\x1a\x55\xd0\x82\x12\xec\x1b\xba\x1e\xfb\x46\x9d\xc4\x93\x35\x3c\x03\x3e\x3b\xcb\x06\x0c\x43\x51\xc2\x9a\x46\x17\x8a\x7f\xb8\x59\x3b\xe0\x62\xe3\x8e\x60\x8f\x71\x3f\x57\x55\x6a\x71\x55\x25\xfa\x26\x36\xf9\x22\x4b\x44\x32\x96\x59\x0d\x59\xfc\xaf\x8a\xac\xff\x82\xcb\xf7\xf2\x81\x89\xbd\xe8\x5f\xad\x6c\x55\x0d\xea\xed\x80\xaf\xd4\x0a\xc4\x9f\x5e\x17\x9f\x8c\xc5\x8c\xcf\xcf\x35\x17\x13\xbb\x8c\xe8\xc7\xd1\xc7\x56\x0f\x58\xe8\x63\x6b\x1a\x42\x71\x94\x74\xab\xc8\xc3\x89\x26\xbd\x8d\xa5\x24\xcc\x38\x23\x60\x1b\x86\x6f\x55\xef\x59\x68\xed\x1b\x6e\xe4\xf8\x92\x7a\x7f\xfd\x74\xc9\x4e\xfa\xa1\x34\x58\x5c\x04\x6e\x3c\xa0\xc6\x28\x32\x2d\x2e\x74\x45\x59\xed\x24\xb2\x31\x51\xe4\x79\x9a\x82\x8f\x15\x8f\xe5\xc7\xaa\x44\x12\xf6\x86\x49\xb7\xe1\x69\xb3\x3e\x44\xd8\xc0\x27\x6a\x2f\xe4\x51\x7f\xc0\x3c\xb2\xb0\x5f\x3b\x56\x7d\x8a\xcf\xc1\x06\x4c\xca\x55\xea\xce\x88\x84\x46\x65\x9e\xd0\xcf\xbd\x1f\x78\x45\x94\xab\x2e\x47\x37\x03\x30\xf0\x4b\xb7\x02\xc4\x27\x98\x4a\xe1\x63\x95\x64\x3c\xfd\x9f\xff\x63\xd5\x75\x5a\xa3\x64\x48\x40\xae\x9b\xdf\xe8\xbe\x7d\xcd\x76\x9a\xf6\xd5\x12\x40\x12\x20\x5d\xc0\xcf\x78\xb2\x89\x28\x0f\x33\x3b\x20\x5d\x8f\x91\xf8\xf7\x1c\xed\x57\xc9\xbc\x3c\x77\x59\xcf\x24\x49\xba\x64\xb5\xb4\x03\x57\xa6\x45\xb0\x54\xa9\x38\xd2\x40\x48\x3e\xe5\x61\x2f\xdb\xa9\x36\xcd\x91\xcb\xaa\xe2\x65\x3c\x4d\x61\x03\xde\x3a\xcf\x86\x22\xa1\x3b\x17\x68\xf5\xcc\x85\x28\x89\x8a\x68\xc9\xc6\x2b\x6c\xc6\x44\xe0\x50\x21\x92\xce\x6b\x42\xbb\x74\x98\x25\x26\x26\xb6\x4e\x2a\xd9\x23\x50\x7a\x13\x9c\x50\x7c\xe2\xc9\xc3\x96\x4d\x54\x8c\x62\xed\x19\x97\x2f\xe4\xe9\xbb\xbc\x2d\xfd\xe2\x76\x55\xf3\xb8\x8c\x4b\x66\xd8\x05\xbd\x79\xe9\x1c\xf9\xe8\x02\x33\x6c\x9c\x4e\xd1\xfb\x70\xea\x0f\xd5\x6f\xb0\xbe\xac\xc2\x79\x66\x16\x39\x42\xc3\x3b\xad\x3b\x2a\xf4\xbc\x53\xe7\xc0\x8c\xcd\xd2\x7c\x60\x2a\x37\xa4\xd8\xc2\xb9\x92\x21\x8c\xd6\x35\x52\xa1\xcd\x7c\x18\x39\x24\xb5\x44\xac\x64\xcc\x25\x64\x55\x72\x2b\x85\x99\x50\xc8\xdd\x13\xc4\xf5\x85\x80\x92\xa9\x0d\x45\x7f\x7b\x73\x29\x66\xdf\x3e\x10\xca\xd3\x1d\xb1\x3c\xfc\xa8\x56\xbc\x8f\x2e\xa3\x64\xc9\x56\xd1\x6e\xbe\x87\xac\x2b\xd6\x09\xcb\x4e\x30\xfd\x5a\xa9\x3a\xa3\xbc\x6a\x84\x1d\xc0\xb7\xbc\x26\x5a\xe3\x99\x2b\xc2\x8d\xbb\xdc\xab\x17\xf6\x69\x8f\xa9\xba\xa6\x45\xf2\xa8\x8c\x21\x08\x24\x0f\xdf\xdc\xd2\xf2\xd9\xd0\xd5\x52\x31\xeb\xdd\x2a\x3d\xa5\xd0\x04\xb8\x9c\x61\x2b\x26\x81\xb2\xc7\x56\x38\x17\x3c\xe0\xaa\x7a\xe8\x21\xd6\x8e\x92\x78\x3e\x0c\x02\xcf\x74\xd2\xe5\x84\x95\x7e\xdd\x08\x67\xf5\x9d\x7c\xe2\x12\xbe\xb6\xed\x99\xa5\x28\xcd\x08\xd0\x86\xd7\x0e\x15\x5b\x06\x98\x94\x3e\x75\x3a\x87\x6f\x90\x3a\x67\x0d\x6c\xa7\x9f\x26\x45\xb5\x16\x27\x54\x69\xeb\xac\x9a\xbf\x3b\x89\x4b\x46\x40\x77\xcb\xa1\xe8\x8b\x61\x02\xbe\x12\xec\xb3\xfb\xa3\x70\x1b\x1d\x52\x8e\x67\xb7\x07\x9a\x61\x66\x3b\xa0\x9d\x57\xe0\xe3\x53\x8a\xaa\xe2\x94\x8a\x6c\x12\x6b\x3b\x39\x97\xd3\x5c\x8b\xce\x93\xc6\x1c\x09\x7c\xcb\xff\xaa\xa2\x02\x61\x86\x4c\x24\x02\x27\x15\xdc\x33\x89\x7a\x30\x86\xdc\x82\xa7\xe5\x20\xed\xf8\x9a\xf4\x38\x31\x79\xc7\xbc\xdc\xd0\x55\x72\x55\x3a\x3c\xa1\x1c\x54\x68\x88\x2c\x76\x4a\x05\xa5\x37\x03\xa5\xe9\xfb\x81\x6a\x12\x7e\x4f\x91\xc2\x6c\x20\xfe\xe2\x49\x63\xf7\x9e\xf3\x38\x1a\x0c\x1c\xc8\x59\xc8\xaa\xfc\xab\x41\x49\x01\x3b\xe4\xad\x52\x9b\x96\xd8\x13\x56\x48\x98\xe9\x17\x61\x59\xaa\x10\xf2\xaa\x17\x0f\x5a\xe9\xb7\x53\x99\x5f\x70\xa5\x57\x97\x4f\x5c\x1c\xe9\xdc\x0e\x93\x45\x24\x60\xcc\xa1\xac\x07\x00\xff\x5d\xa0\x88\xe0\x7e\xa4\x30\x59\x57\xf5\x82\x8f\xb2\x7e\x94\x74\x7b\xa6\x8f\x6a\x8e\x44\xc6\x2a\x05\xba\x51\x83\xc8\x77\xad\x5c\xb1\xe4\x5c\x21\xa0\x0b\x95\x6a\x41\x4d\x45\x21\x4e\x73\x94\x75\xd0\x24\x39\x55\x7a\x46\xfe\x3b\x94\xae\x0a\x2e\xf4\x11\x05\xdf\x82\x50\xb2\x8f\x1e\x8f\x94\x8a\xac\xe1\x84\xb2\x16\x3f\x09\x54\x4f\xec\x5f\x06\x2a\xc6\x1c\xeb\xf0\xa1\xae\x5c\x14\x51\xde\x4b\x48\xd2\xc9\xc5\x93\xe8\x8f\xf2\x71\x9d\x36\x59\x9c\x4a\x3c\xe1\x3c\xff\x9a\x52\x7c\x5d\x53\x9c\x07\x0b\xd6\x80\x93\x8a\xe2\x2d\x06\x65\xb7\x94\x26\xf5\x39\x8f\xca\xfe\xe4\xa7\x30\x9b\x52\x16\xff\xb4\xd9\xb8\x81\xcd\x42\x4b\x9c\x3d\x0d\x5f\xed\x63\xbe\x76\x3e\x51\x01\x58\x6e\x16\x6c\x36\xa1\x48\x73\xae\x29\xe8\x23\x5a\x15\x02\x0e\xda\xec\xe8\x5e\x7c\x51\xe8\xab\xe5\x25\x8b\x8e\x93\x9a\xe1\xbf\x50\x8a\x85\x5d\xb1\xc9\x0e\x18\x07\x87\x86\x73\x74\x17\xef\x29\x71\xc6\x07\x88\x82\x0d\xbd\xca\x4b\xd8\x70\xa2\x2c\xdf\x70\x5c\xdf\x37\x4a\xcf\x52\xc7\x55\x42\xc4\x2d\x93\xad\xcd\x8b\x71\xff\xec\x48\x37\xd0\xaf\x7f\x40\xef\x85\x3f\x58\x31\x1e\xdb\xce\x30\x74\xba\x30\x78\x2a\x7f\xa6\x14\x00\xfe\x4c\xcb\x9f\xd3\x0a\xf7\x1d\x5c\x46\xe1\xf3\x89\x1a\x7c\x82\xd6\x51\x4e\x3d\x46\x78\x28\x30\x78\xf2\xb1\xcb\xb9\x07\x99\xcd\xa3\x8e\x4d\x42\x09\xae\x78\x1e\x5d\x77\x80\xce\x28\x6a\xaf\x05\x1e\xd0\x73\x6a\xac\x27\x94\x1e\xf9\x09\x97\xfe\x27\xa6\x8a\xd8\x14\x06\xe5\xb4\x1a\xa9\xf8\x29\x3d\x7d\x84\x99\xc0\x0a\x89\x22\x9b\x17\x06\x20\x50\xe1\x84\x67\x4a\x60\x62\x74\xa7\x43\xa5\x18\x9a\x54\x90\xb2\xf7\xd9\x79\x94\x0e\x78\x3a\x1e\x2b\xd8\x09\xfa\x3b\xcc\x16\x57\xda\x64\x83\xd5\x09\x9d\x9a\x28\xa6\xd1\x09\x7a\xd7\x6e\xe2\xc0\x2d\xd5\x0b\x5e\x5b\x3a\xcd\x44\x8c\x1c\x46\xef\x90\xa2\x45\x3f\xa4\xdb\xb3\x9d\x7e\xc4\xba\x21\x58\x54\xe8\x35\x3a\x86\x89\xb9\x67\xa5\x28\x00\x98\x0c\xff\xc3\x18\xfa\x13\xd2\x01\x09\x11\xfb\xcb\x28\x39\xfc\xf3\x15\xba\x40\x3e\x1e\x2b\x37\xfe\xbd\x66\xfe\x4b\x31\xd9\x7e\xa0\xf9\x6e\x05\x0d\x45\x9a\x40\x0f\x44\x66\x01\xfd\x45\x2f\x98\xa5\x14\x4a\xb2\x82\xda\xf1\xae\xea\xc2\xc8\xc8\xaa\x89\x23\x16\x65\xe6\xe2\x01\x9e\xb1\x54\x12\xea\xc0\x54\x61\xcf\x24\x5d\xd9\xcc\x0c\x4c\x2e\xd5\xe0\x56\x15\x7b\x4b\x5e\xf1\x9b\xff\xa0\xa1\x00\x24\xaf\xc3\xe4\xf2\x89\x5b\x76\x79\x91\x45\x8b\x16\xd8\x21\xc1\xe6\x54\xeb\x61\x03\x68\x7b\xc4\x6d\x3b\x57\x3d\x95\x2d\xa3\x0b\xd0\xa3\xba\x5f\x7a\xa8\xe3\x45\xe5\x4f\x7f\xa1\xf5\x69\xec\xd7\xb9\x49\x3a\x19\xa6\x5b\x95\x14\xcc\x9c\xeb\x55\xf8\x46\xe8\x42\x66\xed\x83\x2a\xf7\xf9\x39\x3c\x9a\x54\xf8\xfc\xcc\x1c\xe3\x28\xb0\x53\xee\x50\x42\x86\xb7\x72\x59\x15\x77\x41\x47\x23\x05\xa6\xea\x76\x50\x28\xba\x85\xa8\x82\xbf\x89\xc8\xe5\x79\xc2\x00\x41\x8f\x80\xad\x68\x8f\xe0\x42\xfe\xba\x86\x17\x7b\xba\x39\xc8\x52\xee\x27\xe2\x07\x79\x70\x4c\xe6\x06\xab\x5f\x94\x85\xa3\x54\xf9\xd3\x74\x71\xb7\x56\x70\xbe\x48\x57\x80\x6e\xc3\x54\xcb\x27\x31\xac\x55\x26\x14\xac\x7e\x48\x9d\x69\x9b\x11\xeb\x1d\x0b\x34\x3b\xcd\x88\xc2\x2a\xf6\x32\xc2\xda\x5d\x98\xf3\x70\x02\x0e\xfb\x05\xa0\xba\x6b\x55\x8d\xca\x21\xa0\x07\xeb\xf0\xcf\x5d\x14\xbe\x14\xe5\x93\x7e\x48\xe5\xfe\x88\x3e\x6a\xf5\x0b\x70\xe3\xef\xd2\x97\xca\xff\xdf\x6c\xef\x89\xe1\xac\x1f\xc5\x11\x9a\x7b\x33\x33\x7e\xe8\xcd\x0f\xc0\xa9\x64\x3a\x4c\xe3\x98\x08\xee\x26\xbc\x44\xe8\x09\x85\x3f\x3e\xe1\x62\xe9\x95\x74\x98\xed\xa0\x67\x00\xc7\x73\x9b\x99\xde\x11\x9f\x7c\x86\x1e\xa8\xcc\xfe\xe8\x38\xa7\xb1\x6f\xdf\xa8\xe0\x8d\x54\xe0\x2a\x13\x2c\x59\x5a\xf5\xd0\xa5\x80\xbb\x39\x35\xa4\x8e\xe9\x42\x9a\x71\xcb\x94\xeb\xb0\x6a\x42\xe3\x5c\xa9\x45\x77\xc2\x22\x5a\x88\x2c\xac\x04\xd0\xd1\xa7\xf5\x0c\xef\xe9\xb1\xc1\x93\xfd\xb3\xcd\x7e\xd4\xc9\x87\xfd\x3e\x6b\x30\x63\xaf\xae\x61\xe6\x1c\x6f\xf2\x3b\xb8\x74\xe0\x56\xbd\x4c\x78\x27\x33\x7d\x11\xc5\xc2\x1e\x79\x4f\xcf\x9d\x6c\x57\x34\x0b\xc7\x75\x29\x72\xaa\x0e\xf9\xd0\xb5\x89\xcd\x0c\x6c\x22\x5e\xef\x0d\xe2\x54\xbc\xa1\xd1\x6f\xdb\x5a\x3b\xa3\xca\x4d\x2e\xfc\xa3\xe6\x57\x3f\xef\x7b\xc1\x5b\x69\x96\x0d\x4f\x93\x01\xf5\xb4\x36\xff\xe3\x2f\xb5\x3c\xdb\xe6\x9d\x92\x90\x4c\x6e\x5e\xf7\xab\x5f\xe6\x00\xf0\x1a\x43\x32\x45\x9f\xb5\x5a\x84\x6e\x26\xa1\xba\x1d\x67\x91\xf6\x4b\x97\xef\xf1\x96\x8a\x9a\x76\x12\x83\x2d\x7a\xe1\x77\x83\xad\x5f\x74\x3c\x5a\xb4\x17\x84\xf0\x91\xf6\xbc\x63\x7b\xfb\xd2\xd7\x3c\x43\x8d\xef\xb9\xc1\x90\x4a\xf4\xa7\x2c\xe7\x5d\x5a\x47\x6e\xf4\x68\xdf\xb4\x43\xbe\xeb\x22\xc3\x76\x44\x8f\xd8\xa4\x23\x02\xf1\xff\xb1\x54\xca\xaf\xb7\xc6\xa2\xb9\x7d\x64\x64\xc2\xd8\x10\x23\x83\xe7\xa8\xfb\x44\x2d\xb3\x4f\xd4\xa0\xd5\xcb\xc3\x28\x5c\x8c\x57\x76\x34\x1c\xad\xd3\x55\x25\x65\xf7\x73\x32\x94\x80\x1d\x4c\x10\xd9\x28\x6b\x09\x96\xbe\x03\xb1\xae\x58\x88\xce\x69\x12\xb9\x4d\x83\x2e\x0f\xb9\x16\x46\x64\x5d\xa8\x29\xe9\x27\x7d\x4c\xf2\x52\xef\x26\x89\xaf\x03\xb1\x02\x76\xe4\x65\x3c\x57\x3e\x09\x54\x60\x93\x99\xce\xca\x84\x1a\x79\xf8\xef\xd4\xf0\xef\xc5\x72\x04\xf6\xed\x03\x9b\xc1\xd3\xe0\xf0\x62\xf9\x86\x52\x75\xcc\xaf\xd0\x2d\x62\x9f\xdc\x77\x03\x16\x83\x2c\x0a\x6d\x38\x2c\x7c\x10\x2a\x1c\x6c\x1e\x18\x70\x76\xac\x26\x44\xb4\x6d\x26\xeb\x33\x51\x2e\xde\xc2\x29\x54\x3b\xf9\x44\x35\xdd\x7a\x36\x8e\xc2\x74\x50\x54\x9b\xd8\x99\xbd\xef\x96\xde\x6b\x7c\xa4\xb2\x89\x63\x63\x51\xd6\x73\x7b\x9b\x61\xba\x6c\xb2\x4e\x0c\xb3\x29\x95\x61\x4f\xc7\x76\x69\x0c\xfb\xff\x7c\x95\x27\x0d\x07\xc4\x9b\xc8\xd0\x6d\x6c\xae\x7f\xa1\x67\x92\xfe\xc5\x18\xe7\xda\xfc\xde\x79\x56\x07\xf3\xda\x25\x80\x4f\x81\xc1\x94\x99\x12\x02\x6f\x52\x3d\xd7\x44\xcf\x2c\x17\xbd\x2a\xc8\xa3\x37\xc0\xf3\x80\x2d\x1f\x75\x7d\x5b\x8b\xef\x4d\xac\x6a\x19\x87\xe1\x60\x0f\x3d\x3b\x99\xf9\xc6\xce\x51\xca\xc2\xcf\x38\x6a\x4f\xd7\x4f\xf9\xed\x3d\x84\xc0\x18\x11\xb6\x44\x07\x66\x0b\x59\x16\x1c\xef\x40\x37\x06\x27\x8d\x96\xef\x73\x5e\xc7\xc2\x43\x08\xb0\x13\x80\x02\xe6\x8e\xd5\x55\xa3\x07\x5a\x5e\xb9\x66\xcb\xaa\x8f\x8c\xd7\xb4\xcc\xc8\x16\x8a\x94\x60\xb1\x6e\x50\x81\x0b\x61\x86\xe7\x2a\x19\x90\x0a\x44\x62\xe3\x1d\xae\xc1\xb9\xf2\x18\xbc\x3b\xac\x16\x03\x45\xa4\xb4\x5d\x59\x40\x96\x5f\x53\x44\xc2\x7f\x1a\x28\x5d\x2b\x56\xf9\xc0\xa5\x7d\x81\x6e\x19\x7e\xea\x70\xa9\x9a\x8b\x59\xb6\x32\x31\x12\xb2\xfa\x18\x0c\x6d\x34\xe1\x45\xd8\x1c\xdd\xbc\xf8\x62\xb3\x1b\xa7\x6d\x96\xf2\xc6\xef\x7f\xa2\xae\xe5\x93\x31\x6f\xb5\x6f\x1f\x29\x2d\x44\xc9\xd0\x76\x08\x72\x8d\x4d\xf8\x81\x66\xe6\x00\xe4\x14\x11\xfb\x06\xb2\x13\x26\x11\x56\x60\xb8\x62\x98\x2d\x50\x4c\x25\x84\x35\xf4\x68\x60\x7a\xaf\x07\xca\xcc\x1c\x52\x54\x8d\x9d\x34\xed\x8b\x11\xd2\x65\x34\x11\x61\xdd\x9c\x96\xcf\xce\xce\x35\x33\x22\x16\xad\x62\xf2\x2a\x0b\x03\x52\x0d\x7e\xe3\x86\x5a\xed\x0d\x05\x0c\x3c\xeb\xe5\x9b\x32\x93\x2c\x4e\xe8\x7e\x7e\xc3\x91\x18\xad\x8f\x34\xac\x3e\x15\xe8\xc2\xfb\x53\x5a\x1c\x52\x0f\xd3\xc5\x31\x85\x71\xed\xdb\x2a\x0d\x70\x25\x6f\x19\x0a\xd4\xe3\x64\x9b\x07\x04\xe7\xf7\x36\xc3\x21\x51\xba\x8a\x7f\x39\x8e\x97\x81\xa5\x05\x4e\x3e\x8c\x0b\x30\x5b\x28\x2a\x47\x57\xc8\x4b\x88\x70\xd2\xa7\x4d\xd5\x15\xbd\xc8\x2e\xc9\x6c\xab\x40\xc4\x68\x4d\x22\xa8\xe2\xf9\x76\x49\x44\xea\x26\x41\x7b\x26\x65\x80\x20\x9a\xe9\x27\x34\x38\xfa\x4f\x4b\x0f\xde\x3c\xed\xa0\xf5\x84\xe9\x8f\x0a\xdb\x99\xf0\xf8\xf3\xef\x93\x69\x1f\x29\x62\xa3\xea\x70\xc5\x7d\xac\x9f\x2e\x45\x36\x2f\x58\x76\x1b\x70\x84\xdf\x0a\x14\x02\xf5\xb7\x14\xbd\x57\x3f\x5d\x22\x6c\x42\xde\xf0\x7c\xac\x3c\xd1\xc1\x27\x0a\xe8\x17\xf6\x4c\xbf\x2d\xad\x78\x25\xec\x7f\xc0\x2f\xc3\xf9\xbd\x5e\x0b\x78\xd6\x2f\x4f\xcf\xb6\xb8\x14\x19\x42\xf6\x21\x38\xbb\x45\xa6\x1d\xbd\x10\xc6\xcb\x71\xdc\xc1\xc1\xfd\x08\xd3\x9a\x88\xa7\x79\x78\xf1\x9b\x41\x1d\x5b\xc4\xcb\x43\x08\x9a\x19\xc9\x85\x11\xa6\x40\x06\x85\x8f\x4b\xdd\x6d\xcc\x8b\x27\x68\x4d\x88\x22\x45\xe3\xc9\x27\x1d\xa7\xa4\xd7\x19\xf9\x06\x9e\x0b\xea\xdb\xeb\xba\x4d\x78\xb7\x54\xa5\xf8\xff\x31\xf0\x8e\xf2\x3d\x82\x9b\x48\x4b\x4c\x71\x77\xbd\x19\x34\xbe\x32\xcd\xf7\xfa\x76\x95\x13\x6d\x5c\x53\x00\xde\xb5\xd2\x5b\xd9\x6b\x28\x03\x20\xfa\x9b\x5c\xad\xa2\x2e\x89\xe4\x11\x30\xc2\x74\xac\x97\x0d\x45\x4e\x4c\x31\x1f\xff\x03\xc9\xb1\x28\xa2\xf5\x17\xf8\xcd\x4e\xb6\x14\x48\xf3\x9b\x23\xf3\x86\x51\xb2\xb8\xab\xba\x3e\x11\x1b\x50\x31\xe0\x35\xa4\x8d\xc8\xe6\xd6\x03\x25\x87\x01\xdb\x05\x74\x17\xa4\x44\x5c\x0c\xef\x29\xa3\x0f\xe9\x0c\xee\x36\x3d\x5c\x44\xa0\x6b\xb4\x76\x34\x19\x8e\xc0\x3a\x75\xb5\x7a\x90\x66\x85\xed\xec\xac\x3e\x86\x7f\x3e\xcb\x0e\xd4\xa9\x63\xcd\x0b\x6a\xf1\x5b\x1a\x3f\xfc\x89\x92\x04\x3e\x59\xfa\xb0\xe9\x1e\x86\x76\xa4\xe5\x52\x3d\x75\xa4\x5c\x6f\x6a\x01\xd7\xf7\xc7\x5c\xc6\xcc\x4c\x73\x21\x36\x8b\x36\x57\x0c\xd6\xdc\x5c\xe3\x13\xb7\x1d\x07\x26\x33\xb1\xed\x9a\x18\xb1\x20\xb7\x33\x15\xf3\xc3\x39\xd5\xf8\xee\xa4\x69\x46\x25\x32\xd4\x48\x00\xeb\x77\xb4\x1b\xfb\xa5\x24\xf2\x3e\xee\x0d\x2e\xf9\x98\x17\x00\x07\xd9\x9b\x93\x66\xe1\x1e\x12\x9f\x28\xe1\xfc\xc4\x64\x59\xba\x1c\x33\x67\x09\x6e\xb2\x41\x54\xe5\x7c\xdc\x6a\x7e\x8a\x25\x5c\x48\xd3\xa2\x17\xb1\xfa\xc3\x1c\x67\xcf\x4c\x6d\xc8\x27\x2a\x1c\x74\x9c\x38\xf9\x83\x7e\xa4\xe0\x16\x36\x8b\xd0\xb2\xd1\x8a\x54\xaa\x9a\x07\x9c\xaa\x66\xb5\x02\x9d\x4e\x73\xb5\xff\x05\xbd\x5e\x2d\xc7\x8d\x35\xac\x37\x44\xb9\x65\xe0\x4d\xe4\x56\x0a\x7d\x9c\x34\x90\xd2\xc2\xe1\xb5\x22\xf5\xa7\xcd\x3e\x64\xfa\x60\x33\x33\xcb\xf4\x46\xb9\xc2\xa8\x90\x5e\xef\x8c\xf5\x0a\x9e\xa2\x59\x09\x18\x4e\x19\xdd\x53\xb0\x97\x8f\xc6\xda\xf1\xcf\xed\x6d\x2e\x47\x5d\x7c\x60\x84\x05\x56\x78\x21\x36\x87\xa8\x54\x47\xa0\x46\x69\xf5\x4b\xaa\xfd\x3b\x2a\xb4\x5e\xa7\xf2\x12\x86\xc3\xcc\x75\x3e\x70\x41\x8c\x96\xe1\x13\xd5\x9f\x5f\x8a\xec\x32\x33\x4c\x4d\xb3\x2b\xbc\x05\x84\x15\xd2\x91\xdf\xc5\x0b\xe3\x7f\xa1\x4e\x36\xff\x43\x9d\xb8\x50\xdf\xbc\xc4\xe5\x41\xe4\xcf\x8c\x60\xe5\x93\xd5\x9a\xc9\xfe\xe5\x34\x41\x1f\x0c\x40\xa2\x37\x4b\x55\x07\xbb\xab\x68\x6e\x6e\x69\xb8\xcf\xb1\xc0\x07\x6b\xc7\x74\x70\x64\x07\x36\xe9\xe8\x6c\xea\x30\xed\x35\x7c\x37\x9a\x5b\x42\x02\xe9\x53\x30\x33\xec\x44\xe9\x36\x3f\xe7\xf1\x33\x85\x54\xbd\x41\x36\x5c\xd2\x17\xfa\x62\xc1\xf8\x35\x9c\x34\x09\x2b\xb5\xc8\x3f\x48\x5f\xce\xc6\x76\xc9\xb8\x8c\x11\x93\xd1\xdf\xc3\x6d\xf0\x89\xea\x09\x2e\x26\xc3\x4e\x9e\x26\x84\xa2\xc4\xa5\xaf\xd1\x4f\x3b\x4d\x3c\x67\xdb\x4e\xa8\x98\x0d\xa5\x28\xa1\xab\xf3\x23\xce\xcb\x84\xde\x9f\x3e\xe8\xa7\x5f\xe7\xfc\x49\xa0\xe8\x8f\xd3\xf6\x36\xba\x76\x61\xfc\xf5\x69\xcc\x8d\x40\x0d\xfb\x5f\xa4\x72\x99\x90\x07\x6b\x12\x1c\x55\x62\xbe\xa1\x74\x0b\x16\x73\x21\xd9\x18\x21\xc3\xe3\x93\xb1\x1a\xe3\x3f\x69\x2e\xa4\x99\x8d\xba\x98\x23\xe0\x42\x0e\x3e\x02\xbf\xfa\x03\x3d\x8a\x7b\x88\xf7\xb2\x48\x1c\xaa\x3e\x8a\x1a\x25\x18\x64\x36\x8c\x44\x60\x8e\x39\x49\xe0\xbf\x84\xa0\xa4\xc6\xb0\x47\x79\x6c\x58\xab\xc6\x91\x4c\xb9\x46\xc5\x39\x85\x4c\x48\x87\x45\x1e\x75\x6c\x86\x1d\x0d\x5f\x09\x14\x38\x1f\xd7\x61\x82\x7b\x26\xe9\xf4\x6c\x8c\x44\x15\x6f\xf0\x86\x02\x81\xdc\x70\x19\x4d\x66\x92\x4e\xda\xa7\x87\x81\x0e\xcd\x16\x94\x94\x14\xfd\xb4\x48\xb7\x1d\xd3\xf3\xfc\x68\xf5\x22\x2b\xdb\xd5\x7a\x74\x13\xd9\x51\x9a\xf5\xe9\x97\x65\x14\x9c\xbe\x92\x4f\xc6\x0c\xe2\xfe\xd9\x66\x3b\xea\x34\x34\x6a\x58\x31\xe0\x9d\x56\x8c\x2a\x79\x2f\x5d\x7e\xa4\xe1\xe8\x52\xd7\x4a\x35\x35\xf6\x6d\x58\x45\xc4\x19\x0c\x84\x40\xbd\xf2\x1d\x5a\xba\x58\x10\x4c\x6a\x24\xe0\x34\x5a\x91\x52\x69\xa2\xd7\x87\xfb\xbe\x46\x39\x27\xc2\x84\x29\xc5\x5b\xfe\x9a\x16\x82\x5c\x87\x6b\x40\x8d\xe7\x2c\xe2\x27\x54\x42\x01\x78\x40\xf0\xf2\x23\x5a\xd0\x78\x68\x6b\x23\x0c\xe4\x35\xe3\x14\x73\xcd\x3c\x8d\x79\x39\x4b\xb6\xa3\x12\xe9\x0b\x4a\xa4\xb2\x30\xc9\x22\x63\xa8\x5c\xf9\xd5\x03\xd4\x55\xeb\x35\x1f\xf6\xfb\x20\x9a\xab\xfe\x1d\xd9\xfd\x77\xb1\xb3\xf8\xa4\x86\xc2\x6f\xba\xd9\x8b\x3a\x1d\x9b\x60\x60\x40\x58\xe2\x3d\xe2\xe0\x08\xea\x7d\x88\x32\x3f\xa8\x6b\x70\xe7\xd6\x22\x9b\xc3\x13\xbd\x3b\x42\x8b\xee\x95\x3a\xcf\x8e\x44\x84\x85\x1d\x4c\x7a\x42\xeb\xdf\xa1\xe2\x1f\xf6\x10\x04\xf7\x90\x73\x3f\xd0\xf2\x31\xec\xee\xd5\x1a\x55\x5d\xfb\x4a\x18\x0f\xf3\x68\x29\x2a\x56\xa8\x74\x02\xa4\x02\xcf\x80\x39\x16\x8f\x99\x19\x37\x03\xbb\x79\x49\x3e\xb7\xb7\x99\x0d\xc1\x9e\x06\x93\xb7\xa6\xbd\xc5\xc6\xc8\xa0\x95\xaf\x95\xfd\xd3\x83\xbf\xa1\xf4\x48\xd7\x15\x8b\xff\x25\x6d\x94\x4e\x38\x4c\x5e\xdf\xbe\xfa\x6a\xda\x8d\xd2\x2c\x49\x1b\x3e\xae\xe6\x0c\x85\x4f\x1c\xf8\xc2\x86\xb1\x0d\x8b\x28\x54\x44\xb0\x37\x4b\x0f\xa2\xb8\x19\x68\x60\x7b\xb2\xc0\xb5\x31\x11\x1e\xd1\x93\x22\xa5\x47\x10\x5c\xf8\x54\x8a\x97\x30\x4d\x42\x19\xb7\x42\x45\x01\x5c\x7c\x0e\xa0\x5b\x5d\x23\x42\xfc\xab\x04\xc9\x12\xd1\x0e\x5a\x59\x32\xef\x58\xb7\xb2\x98\x2d\x78\xc2\x0b\x93\x9d\x55\xde\xe0\xac\x92\x5a\xe9\xad\xb4\xb3\xa8\x33\xa9\x15\x6b\x70\x23\xb2\x8a\x35\xf9\x1a\x99\x6d\x59\xd1\x9b\x17\xc5\xcc\x0c\xc6\xe0\x06\x59\x94\x4b\x86\x2d\x8a\x7f\xca\xd7\xfe\x56\xa9\x04\x33\xce\x06\x8f\xcb\x7b\x8a\xf2\x61\x52\x99\xe0\x22\x4d\xd9\xc9\x22\x4c\xb9\xa6\x90\x5f\xd7\x14\x12\xbc\xcf\xea\x4b\xa2\xe3\x81\x47\x47\x2f\xea\xee\xe7\x5a\x0e\x22\x71\xfd\x0b\xab\x6a\x4c\x61\x9c\x50\x7b\xff\x2c\xec\x69\x54\x28\x45\xfb\x8f\x95\xa2\xfd\xc7\x2e\x04\xe8\x66\x66\x30\x70\x00\x79\x19\x47\x56\x0a\x14\x87\x95\xed\x58\xc8\x6c\xde\xdb\xee\x0d\xf4\x6a\xa9\xb4\x9b\x8e\xe3\x81\x88\x00\x89\xd2\xa9\xbc\xa8\xa6\xaa\x6e\x8d\xca\x82\x29\xc8\xef\xc5\xba\x31\x83\xbe\x59\x44\x57\x0f\x46\xf1\xae\x26\xfc\xc7\x50\x09\x12\xe6\xf7\x55\xbf\x8a\x24\x99\x42\xdb\xd9\xa6\x87\xe8\xcf\x62\x9a\x02\xb1\xd5\x3d\x1d\x3f\x5e\x29\x7d\xc8\x78\x25\x50\x9c\xdc\xf7\x02\x35\x77\x3f\x5e\x7a\x7e\x5e\xa8\xa2\x78\x59\xc0\xab\xde\xd1\x84\x95\x2c\xe5\x21\xf7\xf7\x39\xef\x90\xd2\x61\xd2\xf9\xcd\x7f\x58\x3d\xfc\x5e\x14\x72\xe5\x45\xe0\x49\xd5\xf3\xc5\x7a\xdc\xa2\x83\x53\xcf\xa6\x90\x17\x76\xd0\x13\x1b\xeb\x88\x40\x3c\x74\xf2\x8e\x56\xa9\xbd\x54\x7a\x38\xe8\x93\xf9\xe7\x91\x94\xa3\x3a\x76\x37\x50\x48\xbf\x9d\xa8\xcf\xc2\xca\x6d\x23\x88\x89\x6c\x46\x32\xd9\x4e\x31\x6a\x7e\x2f\x87\x59\x0f\xae\xaa\x9f\xd9\x49\x33\x3a\x9c\x52\x6b\x7e\xc2\x2d\xab\xf4\xac\xe1\x79\x1f\x5f\xf5\x55\xb2\xab\x58\x3c\x30\x34\x0d\x6a\x81\xc0\x47\x08\x71\x38\x6d\x8f\x5d\x8f\xb6\x7c\x91\xed\x8e\x1e\x89\xb9\x88\x56\x15\x5e\xdc\xff\x42\x41\x10\x2c\xc1\x2d\x7a\xa1\x40\x7a\x6e\x6d\x35\xbe\xfa\x65\xbe\x92\x8f\x90\xa6\x21\xd4\xfe\x80\xdc\x2b\x5c\xf8\xee\x96\x22\xa8\x64\xaa\x3e\x7c\xfc\x3e\xa8\xfe\xd0\x55\xdd\xbe\x5a\x87\x00\x1c\x64\x69\xe8\x6b\xfb\xb5\x70\x47\xc5\x89\x9a\xe5\x36\x31\x71\xae\xe8\xf7\x2f\x68\x2a\x55\xda\x42\x1b\x57\x82\x5d\xce\x94\xbd\xf8\x62\xb3\x32\x92\xec\x4d\x02\x45\x1f\xce\x19\x26\x80\x2c\xb7\xa9\x71\x8d\xf4\x1b\xc8\x15\x6e\x6e\x04\x8a\x26\xe7\x90\x56\xdb\xc7\x9d\x39\x96\xd5\xea\x1d\xa1\x36\xff\x6f\xd5\x50\xc7\x47\x14\xe1\x63\xb3\x37\x5a\x8d\x2f\x7d\x8d\x43\xa3\xab\xfc\x8a\x14\x36\xf3\x19\xfe\xb3\x35\x9a\x71\x43\x43\x0f\x6c\xdb\x70\xca\x2f\xea\x29\x87\x35\xee\x26\x2a\x56\xb3\x69\x6e\xbb\xbf\xa6\xea\x1f\xd7\x47\xa4\x73\x11\x1a\xa3\x5a\xc5\x4d\x03\x5c\xcd\x65\xa2\x29\xc1\x7d\xfd\xa0\x6c\x1c\x7c\x96\x6f\xeb\x02\xa5\x49\x52\xbd\xa7\x35\x89\xdb\xba\x4a\xda\x9e\x28\xde\xdd\x2d\xe9\x7d\xb3\x0c\x2f\x16\x18\x9e\xe9\x3d\x18\x34\x59\x3c\xd5\x42\x42\x6b\x7e\x2d\xd0\x08\xc2\xa4\x9b\xa2\x1d\x08\x74\xc0\x15\x58\x0d\x3e\x51\xba\xab\x45\x66\x4d\x3e\xcc\x18\x94\xee\x46\xa8\xfd\x38\xb5\x32\x61\x0b\x02\x98\xf4\xb9\xe1\x89\x11\xf8\x2a\xde\x3d\x4c\xd3\xd6\x3a\x44\x57\x3e\x6c\xe7\x51\x07\x45\x6a\xc5\x32\xdf\x70\x7c\xe9\x9a\xef\xdb\x0c\x8a\x78\x65\x82\x5e\x02\xf3\x76\x53\xe9\x8b\x89\xfb\x60\xd1\x10\x0b\x8d\xb7\x27\xa8\x0a\x10\x9a\x18\x1c\x1f\x78\xbe\x27\xd4\x12\x1a\x67\x62\x20\xb9\xc9\x97\x87\x11\x8b\x67\x32\x3d\x69\xe9\xfb\xa1\x37\xea\xc0\x86\x99\x0d\xd3\x6e\x12\xbd\xea\xaa\xa6\xfc\x58\x02\xfd\x88\x6a\x68\x48\x9a\x26\x7c\x79\x18\xe5\xa0\x5b\xfa\x1b\xe0\xf8\xfe\xe1\xf7\xc3\x6e\x66\xbb\x69\x46\x35\xa4\x0d\x9a\x88\xdc\x58\xab\x43\x1c\x77\xd2\xe5\xa4\x48\x97\x13\x35\x20\x8d\xa1\x4b\x81\x76\xf8\x10\x6f\xff\xb4\x48\x65\x73\x49\x5e\x2b\x10\x9c\x55\x74\x35\x59\x12\xe5\x3d\x0b\x32\x24\xd8\xe2\x7b\xba\x3b\x73\x56\xd3\xff\xf3\x9a\xe6\x6d\xab\xc4\x88\xda\x99\x89\x92\xb0\x17\x71\x1e\x27\x8c\x7e\x6a\x03\x9e\xae\x45\xd7\xdb\xe4\xa5\x74\x25\xd7\x5a\x4d\x5c\x5c\x95\x3a\x97\x22\x46\xb1\xc5\xee\xea\x8d\xd1\x8e\x38\xfb\x0b\x2d\x3d\xaf\x85\xf0\x12\x5e\xeb\x21\xea\xc8\xe1\x47\x6f\xe1\xe2\x11\x77\xb2\xf9\x67\xd8\x90\x1e\xce\xb8\xae\x38\xb3\x76\x01\x8c\x8e\x1a\xe3\xe4\xea\x08\xdb\x07\x2d\x4b\xf4\x49\x76\xb5\xc8\x80\xa1\x85\x76\xac\xf4\xba\x7f\x8d\xd5\xcd\xeb\xb5\x72\xdb\x0b\xd6\xc6\x7c\x9b\x32\x7d\x4e\x5f\x26\xe3\xe7\x2a\x89\x5e\x58\x20\x2e\x0b\x86\xd5\x71\x89\x3f\x50\x98\xb8\xf3\xaa\x03\xd1\x36\x45\xd4\x4e\x0b\x0a\x58\x50\x6e\xdc\x0a\xaf\x8a\x28\xf1\x87\xa5\xef\x46\xdd\xf7\x51\x5f\x94\x85\x43\x4c\x70\x8a\x7a\x84\x72\x47\x2c\x0c\xe2\x78\xee\x9d\x6d\x3c\xa1\x8a\x29\x59\xda\xd1\x53\xcf\x37\x61\x82\xf8\xe4\x53\x71\xb0\x79\x1a\x47\x1d\x93\x09\x08\x0e\xbe\x9b\x17\x26\x9f\xd4\xcd\xec\xe4\xa2\xe7\x0d\xc7\x7f\xac\x54\x80\x9f\x63\x9f\x2a\x6b\xf3\xd2\xb0\x83\x9f\x19\x21\x36\xe4\x13\x95\x82\x0c\xd2\x34\x63\x64\x0e\xd7\xea\x69\x35\x48\xdd\xbe\x96\x34\x3e\x35\x1d\x09\x60\xb9\x3c\xae\x12\xad\x37\x15\x9e\x3c\x2f\xb2\xa8\x43\xca\x2b\x1e\x02\x82\x62\xa5\x6c\x28\x17\x16\x53\xc7\x15\x25\x68\x91\xa9\x3c\x5c\xfa\x0e\xf4\x61\x87\x79\xb2\xc9\xd2\x0a\xcd\x2f\x20\x5f\x6d\xb4\x94\x62\x21\xc6\x53\x45\x05\xd0\x6f\x8a\x93\x5e\x2f\xd5\x44\x49\xbc\x32\xa9\xd4\xb6\x4e\x96\x1e\xa6\x03\x05\x54\x01\xfa\xd0\x4e\x10\x92\xac\xcd\x89\xca\x73\x7b\x9b\xc3\xc4\xbe\x32\x88\x15\x61\x8d\x63\xa4\x70\x19\xf4\xb9\x9a\xc9\xc5\x2a\x55\xea\x0a\x73\xa6\x38\x51\xba\x20\x3e\x51\x95\xf9\x4e\x94\x33\x20\xff\xb9\xbd\x22\xa6\x80\x7d\x88\xac\xf3\x96\xd6\xec\x51\xf4\xbb\x66\x18\xa7\x94\x40\xc1\x4c\x00\x78\xce\xc4\x61\xf0\xcf\x97\x35\x26\x61\x9c\x65\x7d\x66\xa6\xfa\x6d\x33\x18\xa4\x51\xe2\xa8\x75\xf4\xf0\x00\x1f\x3b\x4b\xda\x36\x59\xda\xb7\x05\x7b\x5b\xdc\xc9\x61\x15\xff\x1c\xae\x23\x08\xea\x0f\x17\x16\x62\xfe\x88\xe0\xde\xf5\x9c\x65\x0d\x29\xc3\x92\x09\xc3\x88\x45\x39\x10\x22\xbf\xaf\xa8\xbd\xde\x2f\x3d\x1e\xd4\x3e\xad\x92\xb1\x5b\x1a\x92\x7d\xab\x9e\x3e\xcb\xd3\xae\xb2\xeb\x60\xfa\x31\xcd\x5e\x72\xa1\x8e\x24\x29\x49\x0b\xad\x12\x82\xb2\x03\x1f\x8f\xc1\x9a\xaa\xcc\xda\xb4\x3b\xc3\xb0\x60\xaf\x83\x3f\x3c\xa9\x7a\x86\x8f\x3d\xb2\xea\x77\xee\xe3\x84\xc3\x10\xe2\x4c\x95\x73\x47\x59\x1e\xf6\x54\x65\xfd\x64\xe0\x51\x6a\x27\xc7\x72\xbb\xe7\xf6\x12\x6d\x15\xfd\x22\xe2\xbe\xfb\x08\xc4\x94\x52\xf3\x68\xe1\x01\x11\xf9\xce\xd6\xe6\x6f\xda\x3f\xdb\xec\x58\x3b\xa0\x5f\x16\x7c\x7d\x75\x89\x02\xaf\xaf\x79\x69\x9d\x74\xd8\x76\x39\x2f\x17\x79\xb0\xbd\xa4\xe2\xe3\x87\xf3\xa2\x2a\xfd\x8f\xd3\x81\xa8\x52\xf3\x50\x96\x02\x16\x9c\x19\x15\x08\x78\x7c\x64\xd6\x3a\x8b\xda\xc3\x22\x45\x4d\x85\xd5\x6e\x15\x5e\xec\x3d\x8d\xdb\xfb\xc3\x5a\x74\xd3\x30\x89\x53\xb0\x34\x0b\xcc\xea\x64\xe0\xa7\x65\xc6\x25\xde\x28\x69\xce\xc2\x5e\x75\x7b\xd5\xf3\x94\x01\x6b\x45\xf3\x76\x49\xdd\x5e\x6c\xbb\x51\x1e\x1b\x27\x77\x8b\xaa\x19\x63\x1f\xf8\xc4\xed\xe3\x4e\x9a\xf5\x23\x52\x13\x68\x38\x2e\x0f\x8e\x10\x64\x48\xaa\x66\x57\xe5\xfd\x74\xd1\x61\x98\xa4\x78\xe2\x2d\xe6\x86\x22\xf8\xbf\xe2\x4a\x5c\x99\x0d\x0b\x93\x74\x87\xb1\xc9\x14\x9d\xe6\x0f\x55\x68\xf0\xc3\xf2\xb1\xcd\xcc\x95\xcd\xe9\x83\x9f\xa7\x00\x1e\x1c\x4d\xa7\x02\x17\xa1\xbc\x74\x18\xab\x0b\xa1\xf6\x11\x54\x73\xdd\xcc\xf7\x3e\x89\x70\xde\xe3\xbc\x06\x50\x8c\x35\xe4\x48\x8e\x9b\xac\xba\x7e\x21\xfa\xa5\x78\x03\x41\xfe\xe1\x40\x91\x56\x5f\x57\xee\x8a\x1b\x8f\x88\x77\x7e\x8a\x57\x8d\x35\xb0\x16\x78\x24\xe0\x5d\x0d\xcb\xb9\x41\x69\x29\xda\x28\x37\x29\xad\x11\x17\x49\x79\x9c\xb4\x88\x29\xf3\x75\xb4\x5e\xbe\xef\x70\x1f\xc6\x18\x3d\x41\xf0\x42\x22\xbe\xfd\x6b\x2a\x4c\x8b\x84\x54\xb5\x3d\x78\x52\x11\xd5\x6b\x19\x44\x97\xa7\xef\x04\x2d\x6c\x67\x5b\xf5\x0c\xf1\x25\x87\x35\x34\x85\xf5\xdd\xc9\xad\x3c\xfc\x59\x72\x54\xd8\x1a\x0f\xaf\xaa\x72\xc8\x25\x3d\x27\xe8\xdd\x6b\x95\x0b\x79\xa0\x1f\x6c\xe5\x1b\xca\x6e\xbe\x51\x3e\xe0\xdf\xea\x17\x94\x5a\xc5\xef\x53\x76\x29\x5c\x54\xf4\x4c\xb0\x8a\xae\x8c\x12\xc5\xd0\x03\xc2\x47\xde\xd3\x5c\xdc\xef\xe1\xc5\x21\x6f\xbc\x4e\x49\x33\xc2\xc9\x3f\xa6\x37\x82\x9a\xfc\xbb\xa5\x22\x3a\xfc\x00\x6b\xc5\x71\x95\xef\x9b\xe6\x12\xa8\x16\xa7\xbe\x42\xaf\x0a\x99\xe2\xb7\x50\xd1\x87\x6d\xd8\xda\xd2\x1c\xf3\x41\x95\x43\xe2\xf7\xd6\x29\xdf\x41\xbf\xeb\x1a\xd6\x26\x82\xe7\xc6\x6a\x95\x66\x23\xda\x5f\x0f\xb4\x84\x1c\xeb\x0e\x70\x60\xdb\x42\x06\xad\xc0\x58\xcf\xe8\xaa\xda\x0b\x92\x35\x07\x6a\xea\xff\x36\xad\x2e\x04\x96\x97\x90\x5b\x3b\x21\x2a\x27\xb7\x79\x98\xaa\xb2\x08\x38\xd7\x08\x6b\x22\x0d\xb2\x86\x63\xd9\x7f\x37\xf0\xc4\x22\x6f\xa8\x69\x9f\xb6\x49\x16\x73\xb0\x59\x4b\x2c\x5b\x3d\x56\xc4\xf5\xff\x17\xf6\x09\xc2\x86\xa3\x81\x9a\x63\x40\x73\x5f\x80\xae\x0d\x47\x93\xbd\x07\xd1\xbf\x28\x47\xaa\x81\xbe\x2b\xdc\x60\x83\x33\x7f\xa3\x54\xd2\xe2\x97\xd4\xf2\x3e\xac\x6a\x2f\x0b\x99\xb5\x9d\xb4\x9f\x8f\x08\xa2\xa9\x89\x56\xc5\xe1\x3b\x48\x0b\xc5\x72\x73\x4b\xa1\xec\x6f\x95\x23\x7a\xbc\x61\x9c\xe6\xb6\x03\xa2\x50\x99\x7d\xf2\xb3\x4e\x87\x35\x29\xca\x9f\x29\x55\x9b\x6d\xb4\x5d\xb0\x3c\x1b\x75\x8a\x34\xc3\x24\x8c\x2d\x5b\x3e\xd6\x24\x08\x1a\x4a\x9f\x60\x8f\xab\x04\x9a\x6e\x97\x12\x14\x58\x57\xc1\xfb\xf8\x24\x14\xb2\xee\xb0\x34\x1b\x2a\x55\x59\x36\x71\x65\x94\x1f\xa8\xfe\xd5\xd1\x27\xee\x17\x27\xff\x03\x0d\x1f\xbb\x18\xf8\x06\x22\xfb\x11\x16\x83\x85\x09\x10\x65\x58\xda\x27\x02\x49\xa9\xde\x01\x1e\xd9\x9f\xc0\xc4\xc0\x24\xdf\xa4\x2d\xc7\x3f\xa2\x9e\x78\xd4\xee\xa3\xc1\x0f\xfb\xfc\x21\xbe\x99\x4f\x14\xe1\xd4\x07\x58\x36\x7c\x32\x06\x65\x9b\xdf\x4b\x90\xb1\xce\x04\x5d\x8b\x52\xe8\x10\xee\x56\x9e\xe3\x96\xbd\xa1\xd4\xd9\xb3\x28\xb4\xf9\x63\xb4\x11\x1d\xb4\xb9\xba\x6e\x98\xf2\x6b\xb4\x73\x30\x45\xf4\x7f\x97\x8a\x6d\x1a\x75\x0b\x21\xd9\xa6\x2f\x47\x2a\xf4\x53\xec\x2f\x94\xe4\x98\x09\x42\x77\xef\x11\xe1\xa3\x6e\x37\x82\x06\x41\xe2\x08\xdc\xa3\x93\xd2\xab\x36\x3e\x5f\x16\xec\x11\x4f\xfc\x05\xca\x29\x4d\x51\x64\x26\x40\x3c\xda\x84\xb8\xe0\xad\x6a\x4a\xf1\x10\x36\xa1\x48\x1b\x79\x98\xc5\xb2\x09\x7b\x85\x8d\x91\x06\x28\x9b\x2a\x9a\xa0\x57\x6a\x48\x3c\x0e\x34\x4d\x1c\x2d\xda\x49\x25\xe3\x7a\x8a\xde\x3c\x1c\xe3\x64\xcb\x7b\xf6\xb3\x9a\xc1\x4a\x33\xcc\x24\x5d\xd3\x45\xac\x32\xcf\xa6\xed\x0a\x4c\x16\x9f\xd4\xb0\xa9\x1f\xa0\xad\x97\x2e\x59\x07\x21\x91\xbe\x9f\xa2\x17\xfa\x1d\xd5\x68\x37\x59\xf4\x6a\x9a\x18\x78\x1b\x21\xe3\x56\x04\x39\xa3\x5a\x17\x0b\x21\x67\xfb\x12\xf6\xeb\x31\xd8\x9a\x8e\x7c\xdb\xf6\xa2\xa4\x33\xe1\x31\xfc\xb7\x15\x99\x2c\x98\xbb\x10\xac\x4d\xb6\x3c\x10\x24\x49\xb3\xbe\x89\x77\x78\x35\x31\x66\x98\x11\x91\xcd\x6a\x55\xc1\x01\x9d\x28\xbd\x3e\xc6\xc3\xb4\x9b\xe1\x8b\x26\x08\x75\x8d\x65\x74\x06\x35\x7a\x37\x37\xe8\xf8\x8d\xb6\xb4\xfc\x96\xef\xa7\xc4\x22\xb3\xcb\x03\x94\x8f\x2b\x6a\x6a\x6e\x06\x38\x1a\x13\xdd\x98\x51\xda\x54\xac\xe0\xe5\xf8\x3a\xe6\x45\x0c\x13\x06\xca\x71\xea\x54\x6f\x85\x31\xd9\x2d\x3f\x1b\x78\x9a\x9e\x06\x7f\xa0\xdc\xa3\x9a\xd2\x85\x8d\xf2\x9e\x20\x32\x44\xd8\x53\x75\xbd\x5f\x53\xe5\x8e\x41\x94\xe4\x8a\x01\xf5\x96\x62\x40\xbd\x55\x57\x9f\x6c\xe6\x89\x19\x8c\xc0\x63\x6f\x92\xff\x12\x7e\x6e\x1d\xf9\x2b\x16\xfe\x61\x6e\x3b\xbb\xfc\xe0\x09\xc0\xec\xbc\xb9\xb1\xef\x90\xc7\x7e\xa0\xe6\xdc\x20\xa9\x86\x70\xe9\x0a\xbe\x18\xeb\x9f\xf5\x85\x11\x22\xb0\x6e\x35\x56\xc5\x35\x85\x90\x39\x5b\x7a\x44\xcd\xd9\x40\x95\x9f\xaf\xd7\xb5\x9a\x4d\x0c\x1a\x70\x6c\xf9\x3b\x6a\xf4\xe6\x52\xe9\xa1\x35\x53\x60\x96\x40\x8e\x01\xde\x16\x74\x97\x4e\x2b\x84\xd1\x42\x14\xdb\xce\xce\xea\x43\xf0\xbc\x9c\x64\x02\x4a\xf1\xbe\x1a\x78\xbb\xb8\x89\x20\xcd\x4b\xb7\x96\x0a\xd4\xb4\x11\x8c\xaa\x20\xe3\xb5\x72\x3c\x16\x28\xa7\xbe\x3e\x56\x57\xdd\x3f\xdb\xb4\xc3\x2c\x1d\x58\x93\x4c\x8c\xa2\x99\x1c\x34\x8a\xe5\x76\xe0\x4b\xdf\x54\x42\x70\x5d\x93\x75\xa4\x6a\x8e\x38\xe1\xae\xae\x4e\x31\x4e\x0f\xc6\x7f\x5b\xcb\xe3\x43\x06\xc3\xbc\xb7\x9d\x8c\x8e\x2b\x07\x56\xe6\x48\xca\x81\x7e\x9c\xbd\xd1\xaa\x9e\x31\xd6\xf2\x6e\x00\x5e\x5c\xd7\x6e\x7e\xce\xfb\x38\x4f\x36\x50\x67\x30\x32\xcf\xb6\xa6\x99\x54\xa5\x0d\xb0\xcb\x15\x59\xf3\xf4\xc1\xea\xf7\xf0\x14\xbf\x00\x0a\x4a\x01\x57\x57\x8b\x11\x46\x69\xdb\xaa\xaa\x84\x5e\x53\xf4\x2d\x0f\x90\x85\x90\x2b\xa7\x5b\x82\x43\x39\x0e\xd7\xe6\x94\xae\x3c\x41\xff\x76\xea\xef\x51\x20\x78\xa0\x49\xc6\x86\x5a\xf5\x7b\x1f\x5d\x55\xd6\x61\x5d\x6d\x92\xd8\xb4\x31\xb3\x8d\x88\x15\xf8\x3b\x3e\x1e\x9b\x3c\x9c\x3e\xd8\x8c\x4d\xb8\x18\x0f\x73\x19\xc1\x81\x77\x5d\x57\xb2\xbf\x67\x11\x47\xc0\x73\x9d\xd9\xcc\x04\xfa\xfc\x5c\x65\xff\x77\xd0\x0d\xc3\xd6\xa0\x46\x26\x1c\x9a\x8d\xfd\xb3\x1b\x6b\x7a\xd4\x16\xe2\x05\x1b\xc0\xef\xc2\x20\x7d\x47\x71\xdb\x31\xda\x1e\x7d\xd3\x9b\x6a\x6c\xbc\x3d\x2c\x0a\x9b\x21\xed\x76\xd5\x23\x87\xd5\x3e\xac\xf0\xd9\x6d\x93\x00\x67\x8b\xe6\x05\x7a\x2c\x7c\xac\xfc\x6b\xd1\xb3\x99\x8d\x12\xf8\x57\x56\x1f\x0a\x54\x01\xec\x9c\x22\x18\xcc\xac\x89\xe3\x15\xc2\x11\x23\x58\x7f\x08\xb8\x24\x34\xc1\x8f\xaa\xd9\xc9\xfb\xb8\x7e\x94\x18\xaf\xe0\x4d\xc2\x12\xfd\x9f\x8a\x3f\x7a\x52\xcb\xa7\xed\x54\x0a\xa0\xc7\xf1\xa8\xe0\x05\xff\x5c\x99\xd8\x15\x6b\xb2\x27\xaa\xd5\x83\xf8\xe5\x06\x22\x10\x3c\xa6\xcb\xd4\x14\x74\xb8\x8a\x6a\x25\x31\xae\x2a\xf0\xf4\x48\xaf\xe1\x35\xa2\x5d\xf5\x7f\xa8\x01\x10\x2e\xf5\x23\x42\xd8\x8d\x35\x8d\xcb\x5f\xc3\xf6\x44\xf2\x8b\xab\xc4\x0a\xe5\xba\x3f\x5c\xe3\x14\x56\x3b\x3e\xbf\x95\xda\xc6\x92\x5e\x38\xbd\xd6\x7f\xff\x48\xab\xca\xd3\x64\xa2\x4e\xeb\x04\x6c\x5d\xf5\xf0\xfe\xa3\xc1\x48\xcd\x47\xc3\x45\x90\x50\x48\x55\x78\xd3\x22\x7c\x6e\xef\x5c\x73\xdf\xf4\x76\x15\xfc\x5e\x45\x5a\xc9\x99\x15\x3d\x79\x84\x3a\x3f\x26\xa3\xec\x32\x2e\xcf\x0a\xf4\x07\x7a\xee\x7a\x72\x55\x43\x7f\xd7\x15\xbb\x08\xad\x42\x93\x84\x36\x27\x52\x6a\x6c\x91\x2d\xab\x3e\x6d\x81\x21\xe0\x63\xf0\x61\xf2\x1f\xb5\x6a\x68\x93\xf3\xc2\x64\x0e\xef\x29\x96\x8b\x1e\x82\x98\x2b\xc9\x2c\xda\x51\x1a\xf6\x6c\x3f\xca\x8b\x11\x60\x2f\xae\xf3\xd3\xa0\xbd\x44\x4d\x18\xdb\xa4\xc3\xd3\x1d\x42\x70\xdc\x70\xdc\xf4\xe3\x64\x4b\x95\x7f\x5e\xa0\xf6\xa1\x57\xcf\x0a\xd4\x5c\x4d\xed\x8f\xf4\x0c\x94\x0f\x68\xc1\x30\xa0\x2a\xf0\xa1\xd1\x85\x31\xcb\x23\x6d\x08\x93\x2f\xda\xce\x94\x0a\x13\x19\xb6\xc8\x83\xa9\x64\x25\x46\x9a\x6b\xb4\x33\x7e\xe3\x31\x35\x0b\xfe\x6f\x9c\xc3\x31\x0b\x85\xcd\x96\x4d\xd6\x21\xec\x19\x5a\x26\xd0\xbb\x45\x35\xfa\xae\x2a\xc0\x70\x70\x0f\xcf\xfb\xf3\xfa\x9e\xa8\xe9\x44\x3c\xc7\xc8\x81\x9c\x72\x0b\x1e\xfc\x65\x97\x6c\x16\x9b\xdc\x97\x4f\xb0\x64\xd1\x74\xe3\x63\x25\x69\x3e\xc8\xd2\x5e\xd4\x06\x63\x58\xb5\x46\xb1\x23\x4f\xd3\x66\xe1\x63\x85\x4f\x1e\x98\x70\xd1\x66\x93\xd5\x3f\xca\x74\xab\x2a\x54\x03\xc8\xc3\xc7\x70\xc2\x32\xf7\xea\xc7\xa3\xd2\x76\x1c\x75\x49\x73\x74\x42\x4d\xa9\x62\x2a\x8b\x2b\x27\xd8\x77\xb0\x91\xe3\x3d\x9d\xf9\xbd\xcd\x41\x6c\xba\x43\xac\xd3\x17\x74\xbf\xcf\x0d\x97\x8c\x95\xbd\x9f\x6a\x2e\x0c\x93\x6e\xd4\x50\xd2\xc3\xa0\x4f\xe7\x63\x95\xb7\x47\x49\x68\x13\x92\xc2\xa5\x3f\x86\x7f\x44\x35\x87\x8f\x55\xea\x10\x25\xf9\x30\x8e\x20\x8c\xcf\x83\xd9\x40\x8b\x20\x82\x3e\xad\x1a\xe5\xf7\xea\x00\x4c\x85\xad\x76\xd0\x73\x7b\xfd\x18\xbb\xeb\x92\x8f\xd3\x78\x90\x54\x74\x16\xf9\x6a\x29\xc6\x07\xae\x96\x7e\x7c\x00\x37\x25\x71\x59\x1d\xe1\xb2\xe4\x46\xdc\xd1\x71\x04\xb5\x8a\x16\x44\xb5\xc4\x5e\xb2\x26\x4e\x87\xf9\x0a\x96\x92\x53\xde\x74\x41\xe2\x79\x37\xbe\xb1\x80\xb9\x0a\xaf\xe2\x08\xb1\x7e\x59\x19\x1e\x4d\x50\xdd\xc2\x00\xdf\xa7\xc5\x02\xf9\x58\x31\xe5\x89\x7e\x34\xfa\xab\x7e\x10\x1b\x30\x78\x3e\x56\x2d\x86\x2c\x8d\x63\xdb\x99\x54\x46\xfb\x18\xbc\x0c\x62\xc9\x8f\xe1\x8b\xf8\xa4\x54\xc5\xfd\x63\xea\x85\x2e\x45\x4b\x11\x0d\xf0\x7e\x65\xda\x6b\xd7\x79\x80\xc3\x25\x47\x6a\xde\xb1\x79\x91\xfd\x7f\x8c\xfd\x7b\x8c\x24\xd9\x75\x26\x86\x77\x67\x55\x75\xf7\x0c\x67\x86\x3d\x2f\x92\x92\x7e\xd8\x4d\xed\xf2\x67\xda\xd8\x59\x1a\xfe\x67\x61\xf3\x9f\xc8\xad\x2a\x8a\xec\xb2\x58\x6c\xf4\xb4\x7a\xa4\x81\xbd\x98\x5b\x91\x37\x33\x63\x2a\x32\x22\x19\x8f\xaa\xa9\x81\x0d\x18\x32\x6c\x18\x82\x60\x40\x30\xbc\x02\xd6\xeb\x85\x2c\xaf\x29\x79\xd7\xf6\xae\x1e\xab\xdd\x95\xa8\xcd\x14\x49\x71\x28\x3e\xe7\x41\xce\x70\x5e\x3d\xfd\x7e\x77\x57\xbf\xdf\x5d\x6d\xc4\xf9\xce\xb9\xf7\x64\x45\x8c\x57\xff\x0c\x22\xa6\x2b\x33\x23\xee\xe3\xdc\xf3\xf8\xce\xf7\xa5\x1b\x78\x63\xa7\x13\xa7\x8c\x94\xa2\x3b\x06\x47\x50\x35\xc2\x88\x56\xce\x69\x07\x0b\xfe\x20\x96\xfe\xc9\x69\xe1\xb4\x5e\xef\x49\x55\xb6\xbc\x45\x2f\xb0\x75\x37\x50\x30\x43\x1c\xb6\xf0\xaa\xbf\x0d\xb7\x14\x86\x6b\x0b\x21\x9f\xf0\xb7\xc3\xdf\x9e\xa2\x76\x17\x7a\x2e\x25\x63\x78\x8d\x0c\x1c\xce\xac\x0f\x95\x2c\xe1\x9e\x09\x9d\x1c\xa2\x8f\x53\xbd\x25\x9c\xf5\x99\x8e\x22\xae\x79\xb4\xa3\x78\xf7\x8e\xe8\x10\xf1\xb0\x72\x36\x3e\x51\x83\x49\xbd\xf4\x52\x7b\x90\xa6\xdd\x75\x12\xf7\x9e\x51\x13\x0d\x72\x3a\x25\x10\x2a\x4c\xc9\x57\x95\x13\x3c\xff\x45\xcc\xb8\x8b\x90\x0e\xcd\x3b\xf6\x25\x85\x06\xfc\x50\x47\x2c\x67\x9a\x76\xc6\xf3\xed\xae\x1d\x95\x45\x64\x73\x0e\x33\x31\x90\x23\x18\x32\xbe\x69\x54\xa4\xe9\xc5\xa2\xcf\xcd\x82\x45\x81\x7a\xf7\x53\xe3\xff\xa0\xa1\xa1\x32\x2d\x93\xc2\x66\x99\x5d\x4b\x63\xd2\x9f\x17\x1e\x7d\x8c\x3d\x78\xc9\xf9\xba\xb1\x75\x67\x63\x05\x6a\x49\x32\xa3\x5e\x11\x1f\x59\x15\xcd\x51\x2c\xbc\xec\xf5\x7e\xf5\xe5\x76\x1c\xad\xd8\xcc\xc4\xad\x69\x7e\x6a\x17\x79\x5c\xd4\xb8\x17\xe4\x07\x72\x25\x4a\x76\x5b\xb1\x92\xde\x56\xe8\x8f\xaf\xfc\xfd\x65\x15\x64\x5d\xc7\x08\xb2\x62\x9b\xaa\x36\xde\x55\xad\x9c\xf6\x15\xee\x81\xdf\xad\xe8\x22\x2e\xea\x94\xd7\x09\x9a\x5a\xf8\xb5\x60\x59\x72\x14\xca\xee\xa7\x2e\x07\x0a\xb9\xfe\x40\x29\x79\xde\x72\x78\x67\xb3\x92\x13\x99\xd5\x8c\xf7\x07\xde\x55\xfd\x7e\x50\x1a\x17\xca\x2e\x77\xa8\xbe\x62\xb3\x30\xca\xcd\x4a\xcc\xdd\xc7\x48\x27\xdc\x54\x1f\xc4\x62\x45\x1d\xfd\xb8\xcb\xc0\x66\xb6\x88\x32\xea\x51\x9d\xf1\xdb\xe9\xba\x02\x89\x33\x6e\x0b\x0f\xf2\x30\xf8\xb4\x16\xdb\x8e\x4d\xe5\xdd\x11\x7b\x26\x33\x84\x08\x30\x5e\x03\x38\x03\x0f\xb6\xe0\x72\x0a\xff\x95\xb2\x40\xc4\x7a\x84\x3c\x34\x7e\x16\x07\x0d\xc7\xdf\x81\xaa\x30\xc1\xb8\x63\x34\x7f\x77\xac\x30\x5f\x17\x6a\xed\x52\x8b\x07\xdb\x83\x34\x63\xbe\x39\xfc\xfe\x1d\x18\x36\xfc\xc6\x59\xc5\xae\x38\x53\x03\xa1\x89\xcb\xb5\x66\xe2\xd2\xaa\xae\x0e\xa6\x3b\xe6\x9b\xe0\xd3\xee\x1d\xbe\x56\x46\x49\x51\x2d\x91\xa4\x20\xc9\x28\x57\xc1\xd9\x49\x51\x37\x5f\x4f\x1e\x57\x29\xcb\x78\x95\xd2\x6e\xf0\x78\x67\x27\x9e\x57\xe2\x01\xf9\x37\xcc\x82\xee\x38\x26\x8a\x41\x4a\x52\xef\x2b\x99\xed\xce\x29\x88\x5a\xa0\x40\xe9\x77\x30\x58\x08\x61\x77\x4f\x94\x37\x17\xa8\x04\xf5\xd5\x26\x59\x93\xcf\xb6\x4d\x12\x0d\x39\xb2\xc7\xf1\x09\xca\x6f\xbe\x9e\xf8\x5c\x5c\x6c\x57\x4c\x92\x26\xb4\x66\x60\xa7\xaf\x05\xbe\xdb\xe4\xdd\xb1\x82\x9d\x9e\x53\xbe\xd5\xc0\x9a\xb8\x18\x74\x37\xc0\xdf\xa5\x64\xe6\x7d\x37\x50\x53\x9b\x4c\x3a\x5c\xd1\xed\x9d\xa7\xb5\x40\xcb\x69\xd5\x6a\x67\x42\xb2\x5b\x44\xa8\x8d\x7c\x00\x37\xb5\x39\xa7\xf1\xc0\x3c\x07\x81\x47\xe9\x71\x91\x87\xbf\x83\xef\xc3\x2c\xfc\x21\xed\x62\x38\x52\x6f\x28\x39\xef\xcb\x81\x87\x69\x70\x5b\x81\xb8\x9f\x02\xa5\x89\xd3\xc4\xce\xfa\x52\x3f\x12\x9f\x2c\xbe\x38\x9e\x42\x9d\x57\x3f\x87\x7d\x7f\xad\xb6\x6a\x0f\x7e\xb5\x9d\xc7\x51\x17\x4c\x40\xa2\xc5\xad\xd5\xf2\x7c\x4b\xdb\xc8\x14\x59\x9a\x70\x37\x8c\x2b\x94\x57\x03\x25\x85\x72\xef\x19\xf7\x2b\x9f\x2a\x51\xe4\x3f\x87\xc7\xbe\xad\x01\xf6\x19\x91\xdd\x75\xc5\x82\xf2\x39\x3b\x9c\xad\x22\x51\xf1\x65\xaa\x4f\x20\x69\xc8\xa8\x6a\x80\x14\x40\x38\x8c\xa3\xef\x94\x72\xce\x06\x69\x3e\x8a\x0a\x13\xef\xd6\x08\x17\x3f\xd7\x0f\xe0\xe3\xc0\x96\x7d\x6b\xac\xe4\xed\x91\x50\xc1\x52\xe5\x96\x0b\xd8\xfb\x07\xf0\x06\xd8\x97\x6c\x08\x43\x9e\x27\x70\x84\x68\xb3\xb8\xda\xd3\x3e\xad\x8d\xcd\x7e\xbe\x59\x25\xf4\x86\x6a\x8e\x15\xf2\xae\x53\x94\x08\x10\xda\x55\xdf\x74\x73\x41\x39\x7f\xd4\xa0\xc0\xd4\x94\xbb\x54\xde\xe2\x0e\xa1\x97\x75\xcb\x02\x9c\x8f\x1f\xd2\x93\x03\x8e\xc9\xf9\x06\xe6\x66\x16\xac\x7c\x93\xca\x4c\x9c\x86\x78\x13\xd7\x2f\xef\xf4\xf1\x36\xa7\x92\xfe\x89\xed\x7e\x9a\x86\x06\xd1\x1f\x7f\xb5\xf4\xf9\xb4\x5e\x10\x6a\xc8\x02\xce\x19\x52\xc2\x9f\x24\x8b\x83\x65\xfc\x78\x47\xd9\xec\x67\x91\x6d\x43\x76\x6b\x17\x83\x23\x11\x63\x32\x86\x1b\xa3\xf9\x04\x92\x19\x58\x50\xdf\x21\x57\x0f\x49\xe9\x37\x03\xcf\xce\x0b\x92\x6b\x6c\xbb\x3b\x28\x15\xc3\x4c\xdc\x43\xd6\x01\xcb\x0e\x2c\xe4\xf0\x62\x9e\xed\x28\x6d\x9f\x63\x63\xd5\x71\xf1\x7d\x15\x4a\xec\x9e\x50\xa1\xda\x51\x01\x2c\x2c\xfa\x95\x2d\x59\xc7\x5f\x7b\x76\x42\xa6\x48\x9a\xb0\xbd\xad\xb0\x49\x2f\xb2\x31\x87\x68\x30\x16\xd8\xe2\x7c\x5d\x83\x70\x01\xcc\x42\xf8\xbb\xa8\x17\x31\x2e\x19\x7e\x02\x27\x62\xf8\x46\x67\x17\x23\xa6\xf6\x90\x82\xaa\xc7\x3f\xfe\x55\xa0\xfb\x61\xbd\x89\x8c\x92\x35\x93\x45\x66\x45\xb0\x7b\xac\x23\xa3\xda\xc0\xce\x2b\x50\x96\x19\x3e\xa2\xfc\xd1\x2b\x88\x92\x1c\xb3\xa8\x4b\xb1\xbe\x49\xfb\x1b\x05\x7a\xc8\xeb\xc1\xd7\xbd\x31\x56\x42\xe6\xf7\x54\xdd\x05\x5a\x32\x52\xe8\xa0\x85\xc5\xc2\x0c\x35\x84\xe4\xd2\x52\xbb\x6f\x62\x20\x8c\x60\xd5\x81\x11\x01\x1f\x04\x5f\xab\x44\xe2\xd0\x64\xab\xb6\xa0\x2a\xbb\x30\xae\xee\x9c\xd0\x72\x13\xf1\xd1\x6a\xe9\x20\xb8\x3e\xa3\x1e\xe9\x75\xa5\xd0\xca\x42\x1c\xfc\xe9\x8e\x6a\x3f\xf9\xc3\xc0\x47\x08\x77\xe8\x25\x38\x8c\xd0\xf8\x8a\xb7\x61\x45\x10\xeb\xd4\x63\xf1\x43\xf3\x95\x2f\x69\x67\x3d\x46\x80\x79\x81\xb1\x9e\xc1\x5a\x07\x9f\xef\x2e\x02\x38\xae\x9b\x35\xe9\x04\xb4\xf3\x22\x65\x7c\x1d\x7e\xfc\xa6\x7e\x92\x9b\x0a\x9c\xb8\x66\x07\x51\x18\xdb\x7c\x4e\x2d\xa6\xdb\x1a\xfc\x71\x1a\xc7\x0e\x12\x81\x20\x93\x71\xea\x8f\xbf\xf4\x82\x63\x24\x7b\x46\x91\x7b\x17\xd5\x6a\x4d\x13\x38\xd0\x8e\xa7\x50\xd5\xf7\x4e\xd7\xb0\x7b\x87\xe6\xf7\xb7\xcd\x68\x94\xa5\xa3\x2c\x32\x05\x3c\x1f\x7c\xf5\xef\xd3\x0c\xf0\x75\x13\x0d\xcb\x20\x1d\x8a\x4c\x83\x8e\xd1\xf8\xba\x96\x2e\x38\x30\x7f\x40\xba\xe3\x5b\x0a\x75\xca\x39\x59\xa1\x51\x53\xbb\xc9\xf6\x8a\x3d\xea\x0f\xdf\x0f\x7c\x62\xe2\x4a\xa0\x8a\x7c\xfb\x15\x7e\xf6\xdd\xc0\x7b\x30\xe0\xf3\x67\x0a\xc8\xc0\x97\x9e\x5a\x04\xf2\xe6\x9a\xb2\x6a\x21\x2d\x06\x36\x0d\x33\x13\x6e\x68\x8a\x63\xe0\x51\xf9\xba\x46\x2a\xb0\xbc\xdc\xce\xcb\x91\xcd\xd6\xa2\xdc\xed\x87\x26\xa4\xbf\x44\xe9\x65\x12\x5b\x93\x0f\x66\x55\x52\x78\x0b\x69\x50\x66\x2f\x19\x7b\x54\xd1\x09\xdd\x8b\xae\x68\x20\x6d\x1c\xd9\x56\xb5\x02\xb8\x7f\x26\xf0\x54\x16\x67\x54\xa9\x3a\x4b\xf3\x3c\x4a\x22\xe2\x5f\x84\xcd\x45\x73\xaa\xe8\xe3\x56\x9f\xe2\xff\x4f\xa6\x83\xff\x7f\xa0\xd7\x53\xdf\x26\x51\x5a\xe6\x95\x71\xf2\x5c\x12\x47\xd4\x11\x79\x64\xea\x54\x4a\xb9\xc5\x1a\x11\xde\x2e\x98\x75\x27\x84\xe4\x1c\xd8\xb3\x98\x3c\x61\x01\x56\xbc\x3b\x97\x54\x6e\x0f\x32\x80\xa4\xbd\x2f\xfb\xc1\x13\x0c\x9f\x86\xcb\xe9\xba\x13\xaa\xaf\x80\xb9\x84\x84\xbb\x00\xd0\xbd\x1d\xaa\xbe\x8d\xb3\x4c\x3e\x14\x9e\x0a\x92\xeb\x60\xed\x76\x6e\xa3\x57\x4b\x6e\xfc\x70\xa3\xbd\xb4\xe4\x46\xbb\x41\x2d\x75\x98\x26\x16\xb1\x33\x10\x01\x3f\x80\xb7\xce\x37\x4d\x54\x90\x5d\x1b\x47\x6b\x36\x9b\xf1\xc2\xed\xa0\xc6\x86\x0b\x84\x89\x92\x74\x5c\x43\xf2\x31\x36\x65\x7f\xc0\xa4\xc5\xaa\x44\xe6\x74\xd6\x6b\xef\xb5\xb0\xd0\xe6\x84\x2c\xb2\x76\x38\xaa\x1f\x2a\xdc\xf5\x23\xaa\x6e\x7f\x6d\x8a\x5a\x73\x38\x32\x99\x45\xc8\x8d\x80\xe8\xb2\x42\x77\x5e\x56\xc3\x1d\xdb\xa2\x60\x1a\x8c\xfd\x5b\x97\x61\xc9\xe0\x7c\x5e\xa7\xb4\x10\xca\x5e\x8b\xf2\xff\x1c\xc2\xbc\x6b\x93\x48\xd0\xdd\x30\x59\x7b\x3a\x8a\x31\x6d\xcf\xc4\x7b\xab\x69\x6e\xf7\x56\xab\xc3\xe5\x16\x16\x16\x1d\xa6\x8a\x66\x19\x03\xf0\x09\x0a\xc7\xb8\xac\x3d\x51\x30\xae\x77\xe9\xe4\x71\x4c\xf0\xd5\xd3\xe0\x3d\x1e\x41\x99\x07\xde\xd4\x0c\x17\x3b\x80\x24\xe3\xa5\x46\x47\xd4\xcc\xde\x09\x8d\x9f\xc8\x94\x57\x13\x00\xaf\xe5\xe9\x8e\x5b\xa9\x8f\x3f\xa3\xe2\xf0\x59\xb4\x20\xd2\x5a\xf8\xe5\x27\x27\xfe\xb0\x7b\xaa\xf3\x98\x12\x03\xc9\x3f\x53\xbd\x8a\x88\x37\xd0\x83\x49\x43\x61\xe5\xd9\xa1\x7a\x82\x28\x0a\x51\xe6\x53\x18\x22\x1c\x7d\xff\x8a\xab\x1e\x88\x4a\x5a\x13\xa4\xda\xf0\x6d\x57\x90\x8f\x80\xd9\xbc\x89\x6a\x1a\x06\xe0\x2e\x2d\x33\x9c\xb0\xbb\x27\xbe\x87\x8f\x5f\x18\xbf\xb3\x1b\x7d\x2b\xf0\x13\x5a\x13\x8f\xaa\xdf\x81\x13\xdd\xa9\xb7\x78\xf5\xa9\x9d\x9d\x6a\x8a\x5c\x2d\xad\xb2\x74\xf0\x39\x5b\x20\xb6\x84\x19\xd9\x85\x91\x04\x68\xab\xa5\x4a\xa4\x87\xc9\xc9\x14\xb6\x03\x9f\x55\x3a\x4c\xfd\x6d\x42\x68\xf7\xb8\xca\x52\x8c\x36\x66\xbd\x01\x78\x1d\xe7\xb5\x00\x08\x7c\x2c\xb2\x43\xe3\x1b\xae\x6c\xaf\x98\x2d\x2f\xb7\x97\x96\x9e\x57\x02\x8e\x1f\x20\xcc\xe2\xc2\x23\x1c\x24\xa7\x67\xeb\x62\x21\xce\xf9\x23\xb0\xe4\x35\x8f\xcd\xf5\xe1\x58\xe9\x00\x7d\x63\xec\x6b\x7a\x40\xd6\x22\xf4\xf8\x4e\xa0\x9c\x53\xf0\xe9\x8a\x4d\xa6\x01\x85\x6f\x77\x6e\x4a\x0f\xa0\x6f\xbb\x4f\xd0\x38\xc2\x5b\x67\xe7\x59\xf4\x82\x94\xc2\x11\x08\x47\x60\x5e\xd0\xbd\x8a\x45\x30\x33\xf1\x6d\xd6\x97\x88\x91\x54\x0e\x62\x32\xb0\x0e\xdf\xe3\xda\x68\xaf\x68\x95\x81\x19\x02\x99\x00\xcc\x8b\x60\x85\xa5\x9b\x91\xfa\x45\x88\x04\xa1\x1e\x0c\xd7\x5d\x4d\x26\x6e\x60\xf3\x1c\x51\xb9\xdb\x27\x9c\x37\x92\x86\x10\x7f\xa6\xad\x5b\xd0\xa3\xab\x09\x40\x01\x5b\xe0\x9b\x0d\xa2\x4a\x2b\x51\x21\xe5\x7b\x4c\x13\x68\xd2\x34\x7c\x13\x2f\x73\xca\xa5\xd7\xa2\x24\x1f\x59\xc4\x7a\x2d\x25\xa4\xf5\xa1\xc2\x0c\x7d\x38\x95\x19\xef\x1a\x94\x5c\x60\x0a\xee\xab\x4a\x0e\xdb\x62\x98\xff\x33\x4a\xc1\xa9\x8a\x25\x49\x73\xc7\x43\xcb\x6f\x2a\x92\xc3\x9b\x2a\xcf\x31\xca\xa2\xb5\xca\x2b\xa9\xfe\x95\xbb\x73\xe8\x17\xa4\x53\x67\xaf\xd2\x6e\xcf\xf3\xc8\xa0\xad\x01\xe6\x8b\xa9\x73\xf9\xa6\xf3\xac\xee\x8d\x49\x57\x6c\x37\xb2\x49\x68\x67\x69\x5b\x33\x2f\x90\xa6\x88\xde\x54\xd2\x20\x80\x86\x09\x79\x50\x03\x4d\x52\x5e\x18\x35\x64\xae\x21\xc5\x37\xa7\x4c\xcb\x3d\xa7\x65\x0e\xc8\x3f\xd2\x24\x24\x93\xe0\x6e\x26\x7b\x95\x17\x42\xbc\x30\x2d\xc4\xd3\x80\x4c\x34\x31\xca\x17\x51\x61\x92\xa8\x1c\x2a\x69\xe6\x63\x81\x4f\x1e\x1e\x53\xb8\x5f\xbb\x66\xba\x9c\x92\x62\x34\x5b\xe0\x75\x29\x8e\xd6\x0e\xd9\xe7\xda\x79\x6c\xad\x0f\x78\x04\xa8\x59\xfd\x10\x5f\x07\x0d\xf4\x57\xb6\xdf\x6f\xa9\xfe\xa2\x4b\x4a\x33\xe2\x92\x92\xb8\x1b\x99\x0d\xe2\x0c\x44\x84\x84\x38\x03\x59\x4f\x80\x37\x80\x51\x61\xac\x0e\xed\x62\xec\xb1\xd9\x89\x67\xef\xbf\xa1\x40\x3f\x5c\x03\xe1\x2f\x82\xe9\x80\x61\xc6\xaa\x41\x97\x04\x6b\x97\xf3\x57\xe1\xfc\xe0\xfe\x80\x1a\x84\x71\xdf\x72\x3b\x5d\xb3\x59\x2f\x4e\xd7\xdd\x18\x88\x12\x9f\x77\x8e\x4f\x4f\x19\x26\x33\xcc\x09\x2d\x88\x5f\x3b\xcb\xa0\x06\x51\xd9\xf0\x98\xe9\x19\x84\x76\xc2\x98\x4f\x63\x00\xd3\x78\x7d\xac\x3a\xfc\xf7\xe0\xe4\x81\xbf\x77\x5f\xe5\xec\x2f\xb9\x4d\x4b\xd4\x15\xfd\x2c\x2d\x93\xee\xac\x37\xb0\x57\x55\x7f\xda\x49\x44\x1a\x1a\x27\x09\x8b\x7c\x53\x25\xce\x56\xd2\x24\x89\xec\x8c\xea\x77\x65\xca\x3d\x47\x1c\xe5\x5a\x3a\xfe\xed\xd4\x1b\xc7\xb6\x78\x82\x1e\xd2\x19\xed\xfd\x5f\x75\xbd\x63\x48\x9c\x20\x0f\x04\x04\x9d\x34\xd1\x28\x6a\x66\x4e\x4c\xe2\x40\x7e\x04\xc4\x6c\x5c\x37\xc3\xcb\x3c\x82\x79\xc2\x99\x74\x46\x81\x96\xef\x8f\x3d\x8e\xef\x08\x39\x42\x92\xb6\x6b\x39\xa6\xbe\xc3\xe4\xa0\x20\xfb\xb3\xb7\xa3\x2a\xee\x65\x16\x0e\x0c\x85\x2f\xde\xfc\x30\x97\x91\xc0\x20\xa5\x58\x11\x9a\xc2\xf6\xd3\x8c\xf9\x95\xf5\x3e\x40\x46\xe2\xd6\x94\x2c\xdc\x33\xdb\x98\x5a\x2a\x53\xc3\x0e\x38\x1f\x19\x08\x04\xe4\xfc\x68\xe8\x0d\x5b\x37\x6b\x16\x3f\x06\x77\xe6\x2c\x22\x73\x4d\xd4\x81\xe1\xba\xaf\x50\x28\xa1\x4d\xf2\x34\xcb\x07\xd1\xe8\x63\x59\xde\xf4\xc4\xd9\x6c\x88\x9f\x90\xb5\x5a\x7d\x08\xa7\xe6\x9f\x60\x46\x44\x3e\xb7\x21\x06\x1e\x99\x62\xc0\xef\xe4\x58\x67\xab\xef\x92\x0e\xf6\x67\x14\x4a\x8a\xea\xdc\x54\xb3\xa9\xce\x59\xe6\x0a\xa7\x3d\xe9\x62\xb2\x03\xa2\x46\xf0\x47\x4d\xad\x49\xa9\x59\x75\x6c\x5a\xae\xb7\xa6\x7a\x40\xbe\x09\x9e\x56\x8e\x10\x31\xea\x56\x46\xb6\x9a\x76\xb8\x7f\x47\x15\x34\xfd\xa8\x13\x75\xe8\x19\xea\x2e\x6b\x39\x1a\x9f\x7b\x9a\x2b\xf7\xde\xf8\x19\xe5\xff\x27\x6b\x95\x7f\x9e\x84\xbc\x41\x44\x95\xd4\xbf\xc3\x3d\xa5\xa4\x7d\xbe\x49\x1c\x72\xc5\x46\x2f\x4b\x47\x24\x5e\xf5\xb8\xd6\xc6\x38\xee\x0a\xda\xa3\xd8\x6c\xa4\xbd\xde\x8c\x0f\x36\xaf\x2a\xa5\x9e\x93\x63\x45\x02\xf7\x61\x43\x2d\x71\xb1\x3d\xb4\xc3\x15\xce\x35\x48\xb5\x8f\xc5\x1f\xf8\x46\xb1\x86\x0f\xa3\x98\xc9\x07\xa5\x77\xdc\xa7\x5b\x36\x55\x57\xc6\xc0\x9a\x6e\x4c\x0d\x94\x4e\xee\x82\x35\x9f\xf9\xa6\xe9\x95\x4d\x92\x94\xdc\xb6\xbc\x45\xc6\x64\xff\xd6\xe5\xb1\x47\x2e\x39\x41\x26\x5f\x43\xe4\x92\x38\xdf\xd4\xd6\xdd\xc2\x42\x3b\xcd\xcd\xaa\x69\xa9\xca\xc2\xf1\xc0\x57\x17\x8f\xd7\xfc\xa0\xc5\x83\xed\x5e\x96\xbe\xca\x72\xd0\x70\x4a\x01\xfe\xe5\x6b\xc7\x4f\x3c\xb0\x49\xc6\xb9\x48\x41\x5d\xab\xa9\x3e\x51\xcb\x80\x54\x7b\xc0\x66\xf0\x97\x64\xaf\x72\xab\x97\xe2\x83\xbf\xa3\x28\x25\x4f\xd7\x9e\x6e\x79\xb9\x3d\xb2\x66\x75\x5a\x5b\x8a\x5b\x1c\x25\xf3\xe2\xa9\xf0\xc2\x5e\xb8\x0d\xf0\xae\xfa\x5f\x9b\x64\x50\x72\x33\x1c\xb9\x92\x38\x3c\xb1\x23\x58\x3e\x7c\xa3\x74\x7d\x06\x69\xaf\x37\x34\x09\xd8\x25\x98\x16\x77\xac\x30\x15\xdc\x44\x82\x05\x79\x42\xc1\x48\xd6\xd3\x32\xee\x3e\xe6\x55\xdb\x7b\x97\x00\xca\x83\x91\x7c\x9f\x0e\x6e\xd7\x95\xe5\xb8\x23\xe0\x8b\xc2\x84\xdd\x84\x80\x22\xbe\xfa\x67\xf0\xa0\x85\xdf\x42\xf5\xa4\x60\x69\xc2\x8e\x9f\x20\xdf\x00\x61\x13\xa5\xf9\x24\xac\x86\xc5\xba\xee\x79\x53\x6d\x62\x8b\x8c\xf2\x7b\x7f\x4d\x76\xbd\x83\x5f\x6d\x87\xa9\xcd\x42\x11\xbe\x72\x19\x5a\x07\x17\x3d\x33\x5d\x91\x48\x3f\xbf\x5b\x51\xc4\x7f\x5d\x0f\x30\xdc\x19\xb8\x17\xad\x8e\x12\x44\xf8\xfe\xd8\x07\xc4\x3f\xe0\x9a\x0c\x26\xfc\x8a\xf2\xa1\x6f\x8c\xb5\x10\x80\x08\xac\xb1\x04\x0a\x26\x47\x14\xb6\x35\x8d\x65\x03\x9d\xe6\xa0\x1c\xb2\xa7\x8e\x33\xf4\xdb\xf4\x3a\x30\x07\x3f\x0e\x14\x95\xc0\x9f\xb8\xfd\x90\x66\x2b\x51\x81\x65\x0d\xff\x10\xe7\x03\x0c\xcf\x3d\x2a\x43\x48\xde\x5c\x0c\xea\x68\x90\x16\x29\xbb\xc1\x30\x0b\x33\x4a\xd6\x70\xa6\xd6\x41\xf5\x42\xe5\x2c\xbe\x12\x5a\x2c\x51\x2f\x16\x4a\xc3\x29\x41\x50\x13\xd0\xa3\x6f\xa2\x84\x7c\x1d\x26\x49\x0f\x7c\xc7\xef\x8f\xc6\x4a\x83\xe6\x27\x4a\x85\xee\xb8\xca\x45\x52\xf3\x11\xf6\x9c\xf8\x29\xbe\xe4\xa7\x7b\x31\xec\x2b\x45\x66\x87\x56\x21\xa7\xb7\x14\x72\x7a\x4b\xe1\x26\x7a\xb6\x6b\x33\x13\xc7\x8c\xa6\x03\xe8\xfd\x5d\xc5\x1b\xf3\x2e\x5e\x4b\x92\x5b\x75\xc3\xbd\x9f\x55\x0b\x78\x00\x71\xee\x03\x94\xc9\xd7\xb5\xa6\xf0\xe7\xda\x2b\xf6\x6b\xa5\x35\xc5\x40\x5e\x07\x91\xe7\x51\x6c\x06\xbe\x69\x48\x48\xb7\xbb\xe9\x30\x4a\xaa\x6d\x41\xa3\x25\xd4\x6c\xb4\xa4\x04\xdf\xdd\x68\x51\xd6\xad\x97\xe9\x16\xd9\x71\x2d\x9d\xde\x84\xa3\xef\x99\x8c\xf2\xe5\xd5\x5b\x09\x3d\x4a\xcb\xd1\xce\x9d\x73\xc8\xb5\x3c\x4c\x47\x76\x56\x75\x34\x63\xc5\x21\xee\x84\x56\xa9\x13\x20\xf5\xbc\x4d\xaf\x34\x85\x64\x26\xcf\xa3\xbe\x23\x58\x00\xf0\xf8\x38\x26\x80\x6f\x54\xf0\x98\x8f\xd2\x94\x6c\xb0\x8f\xef\x4f\x05\x3a\x3c\x56\xfd\x17\xa5\x8d\xf3\x19\x8f\x93\x7d\x23\xf0\x1e\xfd\x27\x26\x64\xac\xe0\x2e\x3f\xd2\x79\x42\xa5\xd7\xa3\xa4\xbf\xcb\x83\x33\x5e\x1b\x2b\xdf\x77\x33\xf0\xc4\xfd\xdf\x1d\x7b\x30\x35\x60\x2c\x48\xfe\x31\x9f\x96\x60\x9e\x15\xd1\x5b\xf9\xb5\xd2\x30\x4a\x8a\xf5\x45\x03\xa5\x4d\x73\x41\x25\x1d\xd6\x8b\xc1\x8c\x37\x61\x4f\x2a\x8a\x7e\xe6\x07\x83\xf9\x3a\xa5\xbe\x3d\x1c\x98\x08\x00\x61\xcc\x14\x1a\xda\xf9\x5a\xe1\xfd\xba\x36\x59\xe3\x38\x55\xfa\x54\x95\x18\xc8\xdb\xce\x16\xc7\xb6\x72\x03\xfb\xb6\xbb\xc7\x8b\xb4\x3e\xf2\xa9\x89\x22\xd8\xd7\x45\xe5\x53\x4a\x4c\xe6\x33\x94\xca\x94\x64\x0d\x0d\xb3\x4c\xa3\x37\xd1\x17\x94\xfa\xdb\xde\x4e\x83\x23\x60\xc2\x30\xcd\xba\x58\x60\x92\x65\x53\x94\xd3\x30\xf1\xec\x65\xa9\x6d\xf7\xae\xe6\xae\x87\x3c\x1a\xda\xe0\x44\x42\x88\x9e\x87\x6f\x6a\x65\xc3\xe5\xe5\xfd\x14\x44\x0e\x4c\x29\xcc\x9f\x48\x57\x9e\x54\xda\x9c\x27\x6b\xde\xd3\x4b\x2f\xb5\xd3\x91\xca\x2a\x00\xf4\x72\x96\xcc\x2e\x5f\x3b\x3c\x46\x37\x02\xda\x52\xf8\x33\x60\xcc\x44\xe8\x87\x5e\x57\x52\xc5\x5e\x28\xec\xdc\xd3\x1d\xdf\x1b\x51\x39\xd7\x8f\x7a\xf0\xe7\xf1\x40\x85\xe4\x3f\x81\x41\x15\x0d\x72\x0f\xa6\xb8\xaa\x72\x07\x3f\xd5\xdd\xed\x9b\x48\x3e\xe2\x3c\x7b\x4b\x4b\x8d\xbe\x15\xa8\x94\x36\x27\xbb\x90\x61\xbd\x15\x6c\xc7\x25\x2d\x2d\xb5\xf3\xc2\xda\x78\x68\x56\x99\xea\x43\xb1\xcf\xcb\x41\x7f\x46\x25\x37\x56\x93\x74\x1d\xb4\xc7\x48\x75\x22\x99\x2f\x2a\x93\x5e\x5b\x9c\x25\xc7\xf8\x66\xac\xd4\xe3\x5b\x93\xa9\xae\xe1\x22\x82\xad\xab\x1e\xd9\x71\xb0\x7a\x39\xac\x9a\x77\x7a\x68\x7e\xb9\x6d\x4d\x0e\x57\x03\xdb\x04\x69\x20\xbe\x76\xe7\x64\x5e\xc6\xbd\x92\x0d\x22\x5a\xa5\x8e\xd3\x17\xf3\x75\xc3\x17\x03\x38\x46\x1b\x58\xa0\xe3\xbe\xab\xfd\x14\x95\x45\x61\xec\xcf\x7a\x41\xf0\xa4\x88\xc2\x68\x64\x0a\xc1\x72\x8a\x42\xa3\xaf\xe3\xb4\x10\x6a\xeb\xda\x82\x09\xed\xe3\x9a\x13\x16\xb3\xa7\x6a\x00\x2f\x72\xc4\xbb\x49\x5b\x55\xaa\x3b\xaa\x49\x02\xdd\x25\xe2\x0c\xf9\x96\x6c\xe8\x71\xd2\x0a\xbd\xfa\x0b\x48\xd5\x60\xed\xb4\x26\x4a\x09\xe2\x09\xca\x75\x63\x77\xb2\x64\x0c\xa0\xa2\x8f\x70\x39\x82\xd1\x81\x1f\xdb\x39\x90\x99\x6e\x94\xce\x7a\x07\xbc\x85\x84\xb7\xa0\xae\x7c\xcb\xc7\x79\x8d\x84\x39\xa6\xab\xc9\x80\x3e\x6c\x50\xca\x67\x69\x49\x30\x29\xc7\x95\x27\x7f\xbc\x51\x3b\x31\x2f\xd2\x70\x75\x90\x92\x86\xbf\x3f\x3e\xce\x29\x75\x4e\xaf\x01\x65\xba\xc3\x28\x13\xbf\x87\x3d\x6c\x5d\xf1\x68\x24\x8c\xc9\x0b\x3b\x9a\xf1\xb5\xe9\x2d\x85\xbf\x46\x37\xbd\xe8\xb1\x7d\x52\x9d\x3d\xc4\x23\xec\x93\xc0\xe7\xa6\xba\xaa\x7c\xb6\xd1\x26\xfd\xca\x0a\xec\xa6\x07\x62\xf6\x22\xfa\x7e\x18\xb6\x1b\x81\xa2\x01\xe3\x9d\xcb\xf2\xa7\x81\x6f\xd9\x7a\x9f\xe6\x18\x2e\x3a\x03\x85\x45\x23\x75\xfb\x21\xfd\xd2\x4b\xed\xd0\x64\x49\xb4\x06\x49\x03\xe1\xd1\xba\xa7\x04\xf8\xee\x39\x39\x3d\x3b\x0c\x5b\xbe\xdc\xb6\x4d\xcc\xca\x43\x3c\xd3\xac\x4f\x82\x2f\x2d\x4f\xec\x7b\x49\x43\x56\x2e\xb9\xe1\xef\x46\x79\x1c\xad\xb2\xf7\x23\x88\xf2\xea\x8c\x91\xa2\x6d\xbd\x26\xfa\xa5\x76\x5e\x76\xbb\x1c\x48\x32\x78\x93\xc6\x52\x80\x9c\x4f\xb9\xdd\xfd\xd7\x90\xa9\xd1\x11\xc4\xc8\x16\xb3\xad\xcf\x7d\xce\x75\x5d\x53\xf8\x84\x33\x8d\x65\x3b\xf8\x5f\xe8\x09\xf9\x1f\x1a\x7c\xc1\x28\x29\xb2\xb4\x5b\x86\x16\xfa\xa6\x92\x25\x57\x18\xbe\xdf\xc4\x9c\x88\x38\x4a\xdd\x57\x3b\x40\x2c\x30\x1c\xcd\x02\xc0\xf3\xc6\xd8\x07\x1d\xf0\x00\xe0\xf6\xbf\xe7\x10\x66\x85\x01\xf7\xb4\x34\xab\xfb\xba\x84\x97\x83\xad\x0e\xce\x28\x09\x5d\x1a\x15\xb1\xca\x23\x13\x9f\x6d\x78\x44\xa5\xe6\x4c\xbf\x9f\xd9\xbe\x29\xaa\x88\x67\x61\xc1\x43\x65\x17\x0f\xb2\x61\x41\xf8\x28\x20\x5f\x5f\x31\xc8\x2d\x09\x62\x3f\xd6\x3a\x20\x82\x15\x20\x7a\xc1\x4f\xfc\x1e\x6a\x3b\x92\x05\xa9\xbe\x4e\x14\x21\x95\xe2\xdb\x78\x4a\x8b\x86\x66\x8d\xb5\xb4\xc6\x1a\x9e\x48\x31\xab\xcb\xae\xec\xf7\xdf\xa5\xeb\xfa\xd8\xfc\x88\x6c\x6f\x3b\x47\xd7\x66\xeb\x11\x82\x4b\xee\x74\x1c\x2b\x21\x8e\x6f\xa9\xa0\x3c\x2f\x57\x86\x51\x81\xc6\x4d\xe1\x5f\xae\x9e\x94\xaf\x15\x82\xf1\xcb\x51\x81\xc5\x2c\x3d\x35\xf4\x8d\xd2\x54\xd3\x34\xd1\x95\x37\x06\x32\x48\x66\xde\x54\x79\x94\xcd\x86\x4c\xc5\xf3\x6d\x6b\x32\x84\x37\xfb\xbd\xf6\xa5\xa3\xf0\x00\x8d\x3a\xcc\xdc\xfd\x9a\x44\xec\xd2\x52\x3b\x31\xad\x29\xca\x4f\xc7\xb2\x71\x51\xb9\x9c\xd6\x64\x09\x5e\x17\x68\x42\x40\x9b\xf8\xba\x29\x33\xb8\x62\xe3\x7e\x64\xb0\x29\x71\x1a\xde\x0d\x14\xc7\xf3\x5d\xe5\xbb\xe5\x45\x66\x92\x3e\xaf\x6d\x47\x75\x52\x6d\x2f\xd5\x8a\x22\xf4\xa0\x1f\x68\x0d\x84\x81\x4d\x9e\x6e\x7d\x65\xd1\x39\x01\x38\x89\x44\x0a\xd8\x63\xdd\xee\x8d\x7d\x87\xf9\x9d\xc0\xb7\x36\x3e\xc0\xb6\x83\xc7\xc1\xc0\x65\x38\x71\x27\x03\xad\x05\xef\x71\xf5\x4c\xd5\xca\x11\x8e\x9a\x99\x16\x82\x0c\xdc\x30\x7b\x04\xc3\x04\x89\xf7\x95\x1b\x6c\xc9\x5a\x6f\xfd\x6c\xac\xca\x1b\xac\x9c\x0d\x3c\xd6\xfd\xc0\x13\x07\x9f\xc5\xae\xc0\x39\xf2\xcf\x15\xa7\x6d\x37\x7d\x92\xfe\x05\x58\x9e\xa3\xaa\xfd\xa6\xff\xec\x44\x95\x06\xc0\xec\x46\x93\x94\x7f\x7a\xe2\x09\x38\xee\xf1\x40\xc1\xe6\x3d\xc4\xbe\x40\xa5\x70\x8e\x10\x99\xf0\x36\x5f\xa3\x31\x60\x72\x6a\x55\x69\xbc\x02\xd3\x2d\x3d\x54\xb4\xdf\xf8\x51\x50\xcf\xc0\x14\xef\x24\x22\x1e\xc9\xed\x2a\xa9\x09\x56\x26\x42\x43\xcf\x4e\x2f\x9e\xf9\x0f\xfe\x4e\x47\x8e\x81\x30\x33\xeb\x2e\x9c\x75\xec\x1e\xd5\xaf\x4a\x35\xc0\xbb\x05\x6b\x06\x6a\xe8\x96\xc5\xaf\x71\x4e\xdf\x52\x7a\x62\xb7\xc6\xcf\x46\xca\x7e\xe5\x79\xb4\x66\xa1\xb9\xae\xcc\x86\x77\xfa\x8f\x2a\xd1\x8e\x75\xbb\x92\x17\xcc\xa7\xc8\xf1\xae\xd6\xfc\xbf\x17\x78\xaa\xcb\xc4\x86\x36\xcf\x4d\xb6\x31\xa7\xfa\xf3\x4f\x8d\xbd\x35\xc1\x9e\x11\x01\xa1\xea\xf7\x44\x59\xc8\x17\x7e\xea\xd2\xac\x0b\x8b\xed\x38\x1a\x46\xae\xeb\x54\xe3\xb9\xf9\xda\x67\xa8\x07\x1b\x39\xd1\x61\xfb\xe0\xe9\xb2\x4a\x46\xde\x0d\x54\x01\xab\xde\x18\xba\xbc\xdc\xee\xda\x51\x9a\x47\x05\x73\x3d\x30\x7c\x63\xac\x00\xc0\x57\x14\x7c\x7a\x53\x03\x71\x06\x42\xb8\xeb\xa2\xe9\x4d\xbd\x7c\x1f\x4e\x15\xd3\x7d\x88\xba\x6a\x6d\x52\x59\x09\x87\xc2\x98\xeb\x78\xdd\xf5\xb9\xc9\x54\xd3\x61\x56\xf9\xf0\xdd\x3d\x4a\x46\xec\x34\x23\x4b\x90\x95\x38\x4a\xf0\x19\xc7\xdd\xe5\x70\xf0\xb7\x34\xd3\xe9\x05\x95\xac\x7c\xa2\xe3\x9b\x1c\x8e\x06\x8a\x43\xf2\xee\x54\x39\x26\x4d\xb8\xeb\x9c\x2b\x3e\xc1\x54\xf9\xc7\xab\xfd\xc5\x91\x4d\x5a\x4a\xea\x00\xc5\x0d\xbe\xae\xc5\x9f\xcf\x01\xe4\x68\xc2\x81\xe5\x09\xc3\x8a\x79\x5b\x11\xbd\x9c\x87\xe5\x83\xd7\x75\xcd\xb5\x61\x60\xa5\x45\x85\x97\x9e\xc1\xbb\x9d\xd1\xfc\x62\x67\x14\xb2\x33\x0d\x43\x03\xb7\x67\xf1\xa0\xef\x11\x76\x7b\xa5\x4e\x31\xbc\x78\xb0\x3d\xca\xa2\xa1\xc9\x36\x66\x3c\x24\xf9\xaa\xaa\xbd\xbf\x35\x9e\x4a\x67\x3c\xea\x26\xf4\x0b\x9f\x52\x2e\xca\xc5\x80\x78\xc4\xa4\xbb\xda\xab\x9e\xbd\x07\x43\xc1\x55\x60\x4d\x3b\xf3\xdf\xc0\x52\xb0\xc8\x23\x59\x43\xf1\x11\xe9\x2c\x77\x9c\x48\x55\x24\xcb\xde\x03\x49\x49\x49\x63\x2b\xcd\x35\x12\x86\x6f\x04\xbe\xa1\xe5\x23\xcd\x90\xfb\x63\x02\xeb\x88\x70\x96\xc2\x48\x3e\x54\x35\xb9\x16\x07\x36\x38\xab\x1f\xa5\x4e\x16\x18\xc9\x09\x6d\x6a\x24\x69\x6e\x72\xe7\xa0\xd0\x17\xd3\x74\xa0\xac\x7a\x9f\xfc\x22\xf6\x85\x94\xf3\xd0\x33\x49\xcf\x64\xc8\x5d\x4a\x41\xa7\x1a\x1a\x29\xf4\x3c\xad\x04\xe4\xbb\x64\xae\xb8\x12\x8a\xa2\x1a\xab\x11\xf2\x8d\x8a\x14\x86\x51\x1c\x47\x69\xf2\x69\x95\x35\x62\x89\x1f\x64\xae\x8e\xd3\xf3\x88\x8e\x44\xb5\x57\xb0\xc1\x77\x41\x4f\x0e\x7b\xee\x06\x52\x5a\x4c\x18\xdc\xf1\x47\xd3\xe7\x9e\xec\x78\x4e\x9d\xa3\x04\xcc\x81\xef\x79\x13\xef\x0c\xf7\xf7\x07\x63\xa5\x52\x7a\x45\xf5\x6b\x20\xe1\x8c\x3f\xfa\x09\x4a\x09\xf0\x83\x77\x13\xf6\x15\x87\xc9\x0e\x1c\xa2\xa8\x72\x70\x97\x33\x9c\xbf\x9d\x13\x25\xab\xfa\x80\x96\x05\xd3\xa7\x62\xfa\x98\xef\x8d\xce\x79\x57\x8b\x5d\x58\x74\x55\x18\xdd\x77\x7f\x5c\xfb\x1e\x65\x3e\xb2\x09\xef\x22\x89\xda\xe9\x77\xf9\xc6\xd9\xd6\xd0\x50\x1f\x22\xdc\x2c\x38\x06\x4f\xd0\x3b\x31\x0a\x49\x77\x89\xcc\x4d\x7c\x81\x6e\x25\x4e\xc3\x55\x76\xaf\x5f\xe4\x3c\x29\x6b\x5f\xf0\x4d\x2d\x0d\x5c\x79\x81\xbf\xf8\xe5\x5f\xdb\xff\xe5\x2f\x2e\xcf\xf9\x2d\x37\xdb\x51\xc2\x16\x08\x2b\x45\x00\x56\xe1\xcb\x02\x9d\x45\x53\xf1\xe6\x9a\xcd\xa2\xde\x46\x4b\xc5\x1f\x53\x88\x1d\x6d\xef\xa2\x61\xfe\x68\xcb\x11\x84\x83\x16\x07\x87\x35\x9a\x69\xf1\xc2\xaf\x8d\xd5\x29\x7e\x12\x6b\x00\x80\xf6\xeb\x68\xab\x10\x7b\xab\x20\xad\x57\xb1\x3a\xb0\x57\x18\x31\x8d\x71\x06\x27\x07\x40\x05\xa7\x6a\x4e\xee\x17\xda\x2b\xb1\x49\x56\x6d\x31\xa3\xda\x3d\x5a\x1d\x7f\x84\xe2\x21\x25\xc7\xae\x63\xb8\x57\x73\xd3\xf2\x24\x4b\xa7\x14\x6f\xd1\x29\x25\x66\xf5\xf9\xcf\x7f\x9e\x98\x80\x14\xee\xed\x4b\x02\x6b\x54\x68\x82\x2b\xaa\x6c\x74\x81\xbc\x42\x69\xfd\xf3\x7b\xb6\x4c\x7a\x84\x34\x85\x69\xfe\xd2\x94\x5c\xad\x58\x35\x41\x2f\xa4\x65\xd1\x25\x23\xae\x52\xe8\x81\x22\x54\xa9\x17\x16\x16\x16\x28\x01\x46\x3a\x89\x2d\x9f\xf5\x3d\xa7\x9b\xee\xce\xb9\x7c\x56\x61\x13\xc7\xec\x2c\xc9\x4d\xfa\x7a\xc9\x6e\xfa\x04\xfa\x9a\xc9\x19\x46\x8b\x57\x3d\xae\x72\x18\xbe\x42\x53\xd8\x24\xb1\x61\x4a\xe7\x88\xfc\x9b\xea\x85\xab\xd3\x57\x57\xe1\x49\x61\x46\x36\x2f\xb2\x0d\x00\xf3\x9d\x96\xa8\x02\x42\xd4\x6b\x2e\x2f\xb6\xf3\xb2\xdf\x97\xde\x7f\x9c\x3f\x1f\x80\x44\x85\x6f\x9a\xb8\xeb\xf2\x41\x9a\xae\xd2\x27\xa4\x32\x49\x6f\xcb\x37\x8e\x72\x7a\x68\x33\x3b\x47\xdf\x25\xe7\x57\xcb\x75\xec\x02\x59\xe8\x58\xe7\x3c\xea\xef\x8a\xa2\x49\x7e\xaa\xd3\xc4\x66\x9f\x45\x14\xe3\xaa\x41\x3c\xad\x06\xf1\xb4\xce\x56\x97\xd9\x0a\x9b\x04\x29\x25\x20\x03\xc6\xd7\x0d\x44\xb6\xfb\x9f\x6f\xa7\xa4\x48\x09\x4b\x86\x6d\xf7\xa1\xde\x83\x1f\xd6\x06\x9f\xd8\xfc\x8a\x68\xcd\xa7\x1a\x61\xb1\x11\x17\x08\x3e\x40\xd1\x97\xfc\x6e\x43\x7a\x45\x74\xd0\xa8\x51\xd4\xf1\x09\xbb\xae\xde\xaf\x8f\x7d\x90\x70\x59\xf1\xe2\x96\x49\xb4\x66\xb3\x1c\x1c\xe0\xd5\x43\x32\xa5\x2c\x2c\x9f\xf0\xcb\x36\x0c\xe3\xd0\x24\xa6\x2f\x9e\x24\x6b\xde\x8c\x55\x6a\xe2\xb1\x8e\xb7\x14\x3b\x54\x82\x74\x7d\x35\x9f\xf5\xd3\x78\x98\xd5\x53\x45\x0e\x56\xc9\x87\xed\xe8\xd0\x71\x27\xb8\xb6\x06\xc4\xfc\x28\x36\x1b\xec\x02\x0b\xeb\x61\xb5\x28\xb0\x58\x58\xa7\x0e\xa1\xcc\x61\x9d\xa8\x33\x55\xa4\x90\xcc\xd1\xd9\x26\x05\x69\x85\x7c\x43\x97\x02\x1c\x10\xf6\x13\x30\x0c\xef\xd0\x92\x93\x72\xf6\xf6\xfc\xe9\xc2\x42\xdb\x0e\xa3\x7e\x46\x31\x4e\xcb\xe3\x5a\x2e\xaa\xde\x09\x1d\xa9\xaf\x98\xc2\xe6\xb3\x6a\xe1\x6e\x6a\xbd\x5f\xc1\xbd\x39\x58\x6b\xf5\x7c\x52\xc3\x68\x20\x55\xc9\x23\x25\x28\x2f\x4e\x77\xf5\x10\x7c\xed\x2c\x83\x4d\xba\x69\x96\x73\xe2\x8e\x0b\xbb\x78\x7b\xa9\xf2\x7a\x47\x79\x14\x9b\xe4\x49\xfa\x46\xe9\x8b\x55\xd5\xec\x7b\xe8\x3e\x51\x88\x61\x49\xfe\x9d\x0e\x7c\x68\x80\xdd\x88\x13\xaa\x35\x51\x8d\xc5\xe7\x2a\xb3\xcc\x5d\x8e\x98\xfc\xcb\x48\x95\x63\xe9\xb3\x47\x03\xe7\xe9\x11\x30\xed\x02\x8c\x7d\x82\x47\x06\x8e\xd3\x7d\x9a\x71\x6c\xac\x9f\x2a\x51\xba\x63\x74\x02\x0a\xc8\xa7\xf2\x30\x30\x87\x1f\x29\x11\xaa\x5e\xcf\x5a\xd6\x4e\x42\x9e\xe0\x04\x4d\xb0\xc0\x98\x7d\xd6\xee\x71\x4a\xcd\x20\x55\x7f\x59\x47\x59\x8c\xbb\x13\xcc\xe8\x33\x4a\xfe\xb2\xb0\xd9\x30\x4a\x9c\xf1\x70\x82\x91\xae\xcf\xf3\x64\x53\x95\x82\x7a\x52\x5b\xaa\xa9\x94\xc6\x47\x1a\x4c\xb7\x67\xb4\x5f\x7a\x89\x74\xa3\xe8\xef\x31\x86\x2c\xb9\xc7\x37\xb5\x5f\x58\x5e\x6e\xaf\x67\x29\xda\x37\x04\x54\x88\xd6\x39\x8e\xa7\x54\xa3\xcc\x79\xe5\x94\x64\xf6\x65\x1b\x16\x2d\x9f\xac\x02\x2e\x80\xaf\x15\xa1\xd7\x28\xb3\x85\x79\x05\xdd\x21\x48\xe0\x5d\x1f\xab\xaa\xf0\x6f\x28\x5f\xe6\xba\x4a\x10\xbd\x6a\x33\x08\xbc\xb1\x8a\x3d\xfd\x99\x28\xda\xfb\xfe\xa5\x4c\xcc\x1b\x1c\x93\x07\x63\x8f\x2a\x80\xe4\x9d\x70\x4b\x7b\x6b\xf3\xfc\xc2\x3e\x98\x35\xf8\xaa\xa8\xff\xf1\xb5\xe3\x37\x92\x98\x95\x6d\x09\xdc\x8e\xab\x81\xe2\x6f\x38\x4b\x4f\x84\x1d\xf2\x50\x81\x4a\xd6\xa2\x82\xf5\xea\xa5\x9c\xaa\x6b\xab\x53\xf2\x39\xe9\x70\x84\xa5\x20\xdd\xee\xb4\x19\xf8\x46\x09\x43\x0c\xa3\xc4\x66\x39\x71\x62\x20\xd5\x84\xfe\x6b\x2e\x40\xd2\x73\xb0\x4d\xa3\x6d\x26\x1c\xae\xdb\x5d\xb1\x7d\xcb\xd5\x29\x9b\x15\x28\x5d\xe0\x81\xd8\xa8\xf3\x4d\x23\xcf\x69\x5e\xa4\x31\x1b\x07\x91\x67\xa5\xe7\xe4\x1b\xc5\xc4\x30\xb4\x26\xc9\xf7\x78\x81\x39\x4e\xac\x39\x78\x8c\x13\x64\xfe\x73\xa5\xa2\xcd\x5c\x8f\x30\x1a\x0f\xa6\x19\x23\xb4\xea\x3f\x76\x25\xfc\xe9\x9d\x9d\x8f\xd3\xda\x58\x29\xf3\x41\xcb\x67\xa7\x6f\xe1\xfb\xf8\xc6\xa3\x22\x0a\xcb\x3d\x52\x30\x5c\xac\x9a\x2a\x9a\x72\x1e\x8b\xad\x58\x32\x62\x1b\x16\x59\x9a\x44\x61\xbe\xbb\xfa\x20\x96\xe2\xdb\xfc\x58\xae\x97\xd2\x89\x42\x6f\x05\xbe\xaf\xf2\x84\xa2\xcb\xe6\xb6\x1d\x4c\xf2\xdb\x81\xf2\xc0\x1e\x2a\xa6\x9e\x70\x60\x0a\x6b\xca\x96\x82\x99\xe2\x4f\xc5\x05\xfb\x38\x09\xc2\x41\x5a\xe6\xae\x19\x0b\x15\xd8\x5b\xaa\x0e\x3a\xa5\xeb\xf6\x76\xed\x00\x7d\x61\xff\x67\xdb\x83\xa8\x3f\x50\xf8\xcd\x3f\xc3\x08\xf2\x4d\xf0\xac\x2f\xf6\x84\x59\x44\x78\x17\x01\x75\x49\xa9\xc5\x1f\x31\xf5\x76\xb1\xe7\xda\x61\x19\x17\x65\xc6\x44\x11\x28\x64\xfd\x28\xf0\xc8\x86\x1f\x29\x60\x48\x62\xd7\xe3\x0d\xe2\x7e\x13\x60\x3c\xc5\xb7\x4e\x0d\x77\xdf\xb2\xa6\x39\x7e\xd1\x29\xe0\x6e\x5f\x1b\x44\x4f\x31\xb0\x66\x2d\x92\x0e\x53\x67\x53\xbc\x7d\x71\xb0\xe4\xea\x84\x2b\x6c\x26\x7a\x1d\x08\x4c\x40\xa5\xa8\xa5\xca\x84\x9c\xf5\x6a\xf0\x94\xea\xa8\xb6\x59\x14\x9a\xc4\x90\x59\x44\x26\xf8\x43\x7a\x4e\xbe\xae\x21\xfb\x2b\xc7\x57\xaa\x0c\x22\x5e\x59\x7d\x56\x54\x2d\xbd\xd5\xca\x8b\x8d\x3d\xaa\xdf\x0c\x2e\x04\xc5\xb2\xff\xe4\x69\x15\xcb\x7e\x44\x75\x6b\xe6\xe0\x1f\x2b\xf5\xa4\x4b\x48\xe9\x09\xd5\x6b\xf5\x23\x70\x90\xae\xe0\xd5\x10\xf2\xdd\x9f\xce\x9e\x95\xf9\x63\x2a\xd0\xdb\x43\x75\x64\x57\x51\xf3\xcd\x41\xdf\xa7\xd3\x14\xa7\xef\x7f\x8f\xe3\x06\xa9\x0a\x88\xcd\xc3\xb8\x1f\x1b\x7b\xbc\xc9\xb1\xc0\xb7\x1b\x5c\x54\x14\x37\xbf\x8e\x9c\x87\x93\xad\xf7\x5c\xd3\xdc\xff\xc9\xdc\x49\x13\x47\xcc\x95\xa6\xdd\x9c\xf9\x63\x90\x29\xd9\xdd\x51\x24\x16\xaf\x29\xd4\x28\xd7\xa6\x59\x78\x41\x1d\x50\x3d\x13\xc7\x36\x99\xf3\xc8\xe6\xb3\xe4\x34\x20\x1d\x80\x66\x08\xdd\xe3\x8f\x2c\xca\x1b\x8a\x03\xe4\x6c\x13\x7b\x4c\x61\x93\x02\x96\x48\x50\x2c\xbe\xf0\x7b\xde\x25\xb5\xc3\x74\x38\x2c\x93\x08\x59\xf0\x7c\x97\x7e\x11\x64\x5d\xb0\x2b\xc0\x7b\xe4\xd4\x1c\xaa\x31\x72\x4a\x52\xd5\xdb\xc2\x17\x7b\x74\xa2\xd8\x9c\x5e\x52\x19\x5e\xbb\x61\x57\xb2\x74\x9d\x89\xc6\x1c\xe5\xb9\x93\x3a\xbd\xe4\xa2\xda\x0d\x6b\xb2\xd8\xd9\x0f\xcc\x2e\xd8\xf5\x60\xc9\x10\xb8\x0b\x05\x8e\x4f\xf1\x8e\xd2\x62\x94\x96\x59\x16\xd1\xca\x77\x20\x79\x1f\x27\xd6\xa2\x61\x2a\xee\x8f\xa2\xcc\x67\xc7\x91\xeb\xfb\x68\xec\xd1\x26\x1f\x35\x50\xdd\x11\x22\x85\xfa\x90\x1d\x99\x88\x6b\xa2\xfc\x6f\xb7\xa6\x5a\x06\x54\xe3\xea\x47\xda\x85\x8d\xe2\x58\x29\xa6\x00\x6e\x26\x75\x59\xef\xe0\xac\xa6\x55\xa0\xa7\x88\xab\x98\xb0\x49\xf8\xdf\xeb\x8f\xb6\x92\xa6\x39\x04\xb0\x58\xa5\x50\x11\x21\x9c\xd2\x00\xe4\xb7\x14\x50\x6e\xcd\xe6\xb9\x8d\x73\x0c\x38\x4e\xf7\x63\xaa\x2d\x04\x58\x67\xc1\x00\x39\x5c\xb5\xc9\x86\xdc\xd7\xea\x7a\xab\x9c\x2a\x46\x9d\x9b\x92\x34\xf1\x46\xa3\x38\x62\x10\x85\xe8\xa0\x29\xfd\x8b\x33\xb5\x0f\x2d\x2c\xc8\x87\xf8\x97\x84\xa3\x85\x56\x1c\xdf\xd4\x0c\xda\x73\xed\x6e\x19\x33\x71\x1c\xf6\xfd\x25\x25\x04\x75\xc9\xf5\x09\x14\x59\x14\xae\x72\xeb\x87\x6e\xea\x46\xf9\x12\x3d\xcb\x82\x9e\x93\x23\x38\xed\xf5\xa2\x30\x32\x71\x37\x45\x5f\x96\x24\xaa\xb1\x6b\x44\xf3\xe6\x09\x75\x88\x5a\x33\x6a\x69\x8c\x71\xcb\x51\xd5\x9e\x51\x0d\x25\x38\xda\xab\xaf\xe6\x62\x81\x53\xc7\x3a\xe4\x19\x31\x1b\x74\x66\x75\x07\x05\xa2\x68\xee\x56\xe5\x9b\x86\xde\xaf\x30\xcd\x8b\x72\x28\x2b\x1e\xe7\xf3\xd9\x40\x11\x52\x9c\x55\x86\xc9\xf4\x33\x5b\x0d\xfe\x0b\x8b\x07\x3d\x87\xcb\x3e\xcf\xe1\xf2\x94\xc3\x00\x3a\x1d\x1b\x70\x01\xb8\x1e\x3b\x47\x7a\xf1\x67\x34\xb8\x00\x10\x5c\xd5\x24\x54\x3b\x6b\xa0\xbe\x85\x85\x76\x31\x10\x6b\x21\xaa\x58\x1c\x0d\xf3\x8d\x62\x00\x8e\xd3\x14\x54\x38\x5c\x38\x54\xa9\xe2\x9b\x34\xf1\x8e\x31\xcf\x93\x77\xbd\xd1\x50\x3b\x6f\xaf\x94\x19\x31\x5f\xb9\x04\xcc\xf7\x55\x02\xe6\xfb\x35\xf3\x51\x39\xa6\x2c\xb7\x3c\xd5\x86\xff\x23\xcd\xd1\xfe\xa3\x9a\x3f\xbb\x78\x90\x95\x86\x29\x45\xe1\xd4\xc6\x5d\x57\xc8\x27\xd1\x3b\x4c\xa1\xf9\xea\xde\x8e\xcf\x10\x98\xd8\x64\x61\xca\x35\x22\x66\xcb\xc0\x98\x08\x75\xc6\xf6\x5e\x06\xe7\x91\x12\xad\x68\xcb\xd7\x13\xa6\x1a\x52\xb7\x31\xf1\x14\x1b\x9f\xa4\x97\x11\x5e\x64\xda\xa1\xc2\x9e\xd2\x7a\x41\x3c\xe3\xb3\xd3\x41\x26\x3d\xb3\xc3\x2c\x39\x71\xa6\x19\x34\x52\xf3\xc7\x51\x1c\x10\x0e\x67\x35\xb7\x47\x28\x2e\x76\x74\x95\x4b\x4b\x6c\x33\x77\x02\xe5\x85\x83\xe6\x1e\xec\x17\x56\xf6\x96\xea\x22\x64\xee\x60\xdc\xec\x50\x23\xd6\x8f\x56\x56\xd2\x84\xe3\x27\x6e\x56\x0b\x54\x03\xec\x4f\x35\x45\xfc\xa5\x86\x09\x6e\x17\xd1\xd0\x16\xd0\xbc\xf4\xd2\x9d\xb4\x2a\xa4\x3b\xca\x37\x3e\xae\x47\x71\x1c\x99\x61\x3e\xe7\xcb\x64\x17\xb5\xc9\x3d\x0d\x04\x10\xe7\x03\x15\x8b\x34\x32\x13\x42\xdc\xdc\x70\x90\x87\x99\x09\x57\xe9\x58\x93\x5f\xd5\x4f\xb3\x9d\xe9\x87\x7c\xcd\x6e\x14\x9b\x51\xd4\xf5\x35\x3e\x01\xf5\x7b\xa4\xcf\xa5\x86\x50\xff\xc5\x76\x31\x30\xc5\xae\xea\xa7\x50\x37\x9b\x9b\x38\xba\x86\x5f\x7c\xaa\xd3\x72\x08\xa6\xcb\x5a\x36\x89\x5b\x1b\x31\xa8\x67\x91\xbf\x87\x4d\xff\x59\xd3\xeb\xac\xa7\x59\x5e\xcc\x90\x2f\x08\xe2\x81\xa7\xc8\xb7\xc0\x69\x33\x37\x69\x29\x86\x2d\x1f\x8c\xe7\x69\xdc\x7d\x5c\xb3\xc9\x63\xc9\x21\x80\x9b\x51\x74\xd5\x20\x12\x60\x94\x20\x30\x88\x8e\xe0\xd0\xbd\xfb\x9b\x6a\xc1\x01\x43\x00\x9f\xf6\x0e\x36\x14\xaa\xe9\x5b\x54\xa6\xc2\x3f\xdc\x1b\xab\x1e\xb2\xc7\x34\x9b\xfb\x91\x40\x37\xc8\xd5\xf6\xe0\xe2\x41\x50\xc2\x96\x89\xcf\x84\x39\x66\x7b\xe7\x5d\x5d\x52\x32\xdf\xa3\x28\x4e\x8b\x59\x5a\xb3\x62\x72\x35\x87\x56\xe0\x5f\x15\xb6\x58\x78\x31\xfc\x58\xa5\xdd\xae\x38\x72\x98\xa0\xbb\x18\x2c\xf1\x15\x7d\xd7\xdc\x59\xec\x42\xe4\x01\x4f\xea\xba\x12\x27\x87\xb1\x8d\x8f\x7e\xac\x8a\xa5\x8f\x49\xc9\x9f\x71\x7c\xa4\xae\x35\xf8\xb0\x02\xe7\xf5\x3d\x6b\x34\xdc\x89\x2b\x63\xdf\x47\x72\xa5\xb6\x1c\x9f\x6b\x87\x83\xb2\x6f\x44\x96\x02\x67\xf1\x3f\xc4\x73\xf1\x4d\x43\x7f\x94\xd0\xe8\x31\xc2\x5a\x8a\x97\xba\x92\xe9\x5c\x80\x2a\x54\x9d\x16\xa2\x43\xe1\x42\xe8\x6d\x9b\x50\xdf\xe2\x31\xce\xa8\xf1\x61\x0d\x3a\xdd\x6b\xc7\x94\xd6\xc1\xe3\xca\xb6\x86\x7c\x4e\x08\xdc\xc5\x27\x21\xeb\x4d\xda\x07\xe6\xdb\x83\x34\x2f\xa2\x18\x89\x34\x6e\xec\x9d\x6a\xf2\xf5\x4b\xa6\x9b\x45\xc9\x2a\xe2\x4a\xac\xd0\x6b\xa8\x91\xf2\xcd\xf8\x53\x9a\xf2\x64\x18\x11\x88\x91\x00\x2f\x8b\x07\x5d\x26\x9b\xf2\xa6\xd2\x65\x5d\x97\x29\x7c\xb1\xdd\xb5\x61\xec\xd5\x2d\x39\x71\x49\xef\x20\x49\xcc\x26\x0a\x38\x93\x4d\xc1\x41\xfe\x67\xac\x31\x6e\x76\xa2\x75\x22\xe1\x6d\x1d\xe2\xd0\x8d\xc2\xc2\x8c\x06\x69\x22\x12\x8c\xa2\x04\xaa\xb4\xdc\x8e\xb8\x12\x6b\xf5\x1f\xb7\xbe\x74\xcb\x9e\x28\xb5\x79\xb7\x6c\x25\x33\xeb\xb1\xd2\x99\x3c\xa7\x74\x26\xcf\xd5\x4c\xd6\x73\xd4\x98\x24\x2f\xce\x4d\xd4\x9a\x0f\xfb\x72\x83\x27\x4e\xb5\xb3\x19\x05\xd2\xfc\xaf\xc8\x17\x51\xd9\x02\x09\x8b\x2f\x37\x35\xdb\xf7\x2c\x8e\x1c\x87\xab\x73\x8e\xe9\x45\xb7\xa1\xc2\x34\x29\xb2\x34\x7e\x04\x63\xe3\x2a\x85\x07\xe6\xf9\x44\x6b\x21\x41\x8d\x74\xf3\x35\x0c\x9a\x00\x38\x69\x16\x38\xa0\x9a\x38\xa6\x97\xff\xfc\x31\x45\x98\xd9\xea\x28\xd6\x19\xc0\x08\x71\x76\x9d\x56\xa9\xc6\xf5\x01\x1d\x4d\x8e\x14\xf8\xa2\x22\x4d\xbf\x58\x23\xc3\x5c\x3c\xd8\xce\x8a\x50\xb1\x89\x7d\x47\xb3\x89\x7d\x47\x71\x57\x01\xf3\x9b\x0f\xd1\xc4\xea\x34\x6e\xfc\xe1\xe5\xd2\xa4\x43\x13\x46\x49\x91\x72\xce\x4d\x52\x10\xf4\xb5\x7c\x53\x33\x12\x62\xbc\x12\xbb\x4e\xb9\x1d\xc7\xe5\xaf\x28\x9d\xfc\x30\x5e\xd2\x60\x95\xab\x2a\xd7\x38\x30\x59\xb6\xa1\x64\x1b\xd9\x25\xe2\x9b\xe0\x59\x9f\xa8\x36\x45\xd4\xe3\x08\x7b\x46\x25\x5a\xd0\x0b\x83\xc8\xfe\xae\x6e\x8f\xab\x03\x35\x9f\x23\x71\xb7\x6a\xcf\x6a\x94\xe2\xdb\xf8\x45\xbe\x71\x3b\xa1\xc8\x52\x07\x69\xc6\xa2\x39\xa9\x80\x99\x27\x15\xb0\x36\x1c\x98\xac\x6f\xf3\x47\xaa\xbf\x14\x06\x4e\x4f\x9c\x73\x74\xec\x79\x9b\xde\xd0\x42\x93\x7c\x1a\x62\x48\xee\xa3\x42\x84\x70\x0c\x6d\x02\x48\xb1\x9e\x45\xe1\x4d\xc8\x3c\x7d\x03\xe4\xff\x3e\xf6\xcd\xed\x6c\xad\xa9\x95\xca\xe5\x34\xcf\x29\x16\x1a\xb0\x50\x4a\x53\x5a\xf5\x70\x28\xeb\x41\xab\x91\xaf\x03\x95\x0e\x3b\xa7\x01\x1a\x54\x4f\xe9\xfe\xb5\x85\x6f\xb7\xdb\xa0\xc5\x83\xed\xb4\x18\xd8\x6c\x3d\xca\xed\x4c\xf5\x4c\x70\x4c\x90\x0c\xc1\x8e\x7b\x30\xf6\xd0\xfd\x29\x4d\x9f\x92\x8a\x97\x95\x19\x96\xe6\x33\x45\x3d\xe9\x35\x88\x7b\x59\x5a\x0c\xb0\x8c\xb8\x6f\x94\x46\x4a\x7a\x48\x1b\x9e\x88\x32\xe8\xc6\x89\x06\x63\xf3\xb0\x00\x10\xdf\x04\xbe\x3c\x91\x97\x3d\xe6\xe5\x47\x1e\xe4\xbc\xca\x89\x9c\x1f\xb7\x3f\x66\x6b\x6c\x98\xbc\x1c\x46\xe1\x80\x3f\x2a\x70\x44\xb5\xdc\x4e\x4d\xd1\xf4\x17\x36\xe9\xa2\x8f\x95\xf9\xe9\xc6\xfe\x85\x7e\xa0\x45\xad\x2f\x2b\xcc\x63\x2f\x8d\xc1\xc1\xb1\x8b\x16\x0a\x76\xf6\x9c\xaa\x99\xec\x45\x17\x19\xdc\x93\x3f\x50\x45\xbb\x1b\x81\x6a\x7c\xff\x17\x63\xa5\x4a\xf7\x86\x82\x4a\x91\xdf\x6c\xbb\xbc\x65\x30\x34\x3b\x14\x28\xe9\xf7\x74\x05\xf8\xef\x67\x43\x12\x5e\x40\xda\xf0\x98\x22\xd2\x41\xfd\xc9\xb1\xd5\xfb\x4e\xf6\x3f\xad\x1d\x15\x04\x3d\x30\x0c\xb8\x92\x56\x57\xdd\xf7\xaa\x88\x52\x86\x51\x1c\x15\x26\xdb\x78\x5c\x4d\xce\xf1\xc0\xfb\xa2\x6f\x70\x56\x41\x38\x30\x15\x91\x3c\x12\x73\x30\x9a\x7b\x51\xbf\xc4\xb8\xdc\x0a\xbc\x6c\xc6\xbb\x87\x03\x4f\xe2\xcc\xa4\xc3\xfc\x5d\x81\xf7\x50\x58\x6b\x0c\x7f\x05\x24\x19\x7f\x02\x89\x50\x01\x3d\x79\xc4\x6c\x66\xc3\xb4\x9f\x40\xd1\x9f\x7e\x1a\x49\xdc\x3b\x84\xa3\xe3\x6b\xd7\x44\xf0\xb2\x19\xce\x68\xa2\x0a\x25\x6c\xf8\x4d\x15\xc5\x5c\x9d\x96\x80\x8b\xc2\xbd\x8a\x70\x69\x47\x67\x4a\x88\x42\xd3\x81\x9d\x05\x7e\x98\xb9\xab\x10\xab\xf2\x87\xb0\x74\x1c\x42\xce\x45\x34\x6c\xce\x71\xac\x5d\x03\x28\xc4\x71\x5f\x39\xd0\xc0\x55\x5d\x08\x3b\x46\x74\xb0\xaa\xf3\xe4\x4b\x9a\x4f\x68\xeb\x32\x22\x1e\xa7\xde\x70\xc8\xa9\x75\x29\xa8\xaa\xc9\x73\xa6\x0d\x65\xe9\x8d\xff\xe1\xc9\x89\x62\x25\xd0\xf2\x46\xb7\x15\x03\xe2\xcf\x34\x3d\x3e\x23\x19\x10\x66\xdf\x19\x7b\x7e\x85\xab\x34\x94\x2e\x7b\x7f\x68\x9e\x0b\x73\xf7\xb1\x1c\x00\x39\x9a\xeb\xa8\xb2\x4f\x9d\x59\x80\x1a\xe4\x89\x64\x83\x95\x39\x04\x44\xe4\xe9\x6f\x2f\x06\xdb\x1b\x00\xaa\x63\x09\x55\x2c\x84\xe5\x40\x29\x60\x27\xde\x52\x6c\x45\xf5\xe0\xfa\xe0\x57\xdb\x65\x51\xed\x80\xc8\xe2\x8c\x17\x00\x0d\xfd\xb6\xe0\xdd\x3f\xe5\x6b\x9a\x65\x9c\xd8\xcc\xac\x54\x1f\x01\xc9\x94\x43\xa3\x2c\x08\xdf\xce\x39\xed\xe2\x59\x93\xe4\xb3\xba\x43\x4e\x31\x79\x00\x4f\xcc\x6c\x1f\x5a\x81\xe7\xbd\x26\xbd\xea\xa2\x1c\xae\xc4\x52\x86\xc5\xd6\xba\x0f\xfb\x83\xd3\x00\x51\x8c\xd4\xd2\x1b\xc0\xb0\xeb\x96\xb0\x1d\x2d\x8f\x7b\x39\xac\x9b\xf3\x0f\x7f\x4c\x07\x44\x64\x7b\x1c\xc4\xc0\x00\xbe\xab\x78\x49\xde\x75\xf9\xfb\x3c\x1c\xa4\x69\x1c\x0e\xa2\xb8\x9b\xd9\x64\xa6\xf5\x2b\x5f\xf6\xc2\x9d\xcb\xcb\xbe\x45\x74\x79\xf9\xf9\xad\x9b\x4d\x9a\x27\xc3\x28\x2f\xb2\x92\x95\x86\x50\xa3\x83\xb7\xc7\xd7\x2a\xc7\xfe\xb5\xd2\x64\x85\xcd\xe2\x8d\x39\x4f\x5d\x07\xae\x5d\xbe\xae\xc6\x58\x38\x1b\x70\xa6\x3e\xc4\x12\x14\xe7\x62\xaf\x2a\x9b\x57\xce\x47\x17\x75\xf0\xa6\x17\xac\xdb\xd6\xfd\x95\xbb\x59\x20\x1b\xe9\x36\xf6\x0b\xfb\x5d\xdc\xe5\xbf\x9c\x9b\x6c\x77\xb3\xfa\x18\x73\x94\xa8\xe6\x8b\xdb\x34\x38\x7c\x8d\x60\x49\x65\x00\xf6\x6f\x5d\x56\x9a\x68\xc7\x54\x0d\xac\x88\x37\x1e\x27\x00\x90\xa2\xc8\x7b\x91\x57\x18\x83\x30\x80\x87\x61\xa2\x32\x8c\xe1\x8f\x15\x99\xf1\xcc\x44\x01\xea\x1e\xa7\x6c\x07\xd2\x2b\x3f\x37\xa9\x3d\x06\x67\xfa\xd1\x56\x01\x8e\xa6\xbf\x47\x49\x18\x98\xe8\xf3\x6c\x0b\x9d\x28\x9d\x83\x71\xcc\xb8\xf2\x54\x61\xa2\xa4\x50\x39\xcd\xcd\xa9\xee\xc2\xc7\x5d\x93\xdd\xc8\x44\x99\x42\x40\xdd\x54\x47\x04\xf8\x54\x85\x00\x5d\xe5\xda\xea\x11\xdf\xe2\xc1\x76\x12\x1a\xe9\x5d\x67\x51\x46\x18\x5c\x51\x68\xfc\xb8\x4c\x42\x6e\x47\x26\x33\x85\x8d\x37\xd8\x5b\x93\x36\x01\x6f\xe6\x76\x62\x4c\x91\x28\x7a\xa4\x26\x79\xb0\xb0\x50\x59\xb0\xbc\x8c\x7d\xa6\x05\x56\x09\x2d\xe0\x7c\x5d\x8b\xb6\x96\x96\xda\x1b\xe5\x6a\x4b\xb5\x30\x1f\x57\x0c\xc3\xc7\x9b\x70\x4d\xa3\xd8\x6c\xb8\x12\x15\x5c\x95\x13\x4a\xc1\x08\xf5\x44\xe4\x49\xef\xd4\x6c\xe6\xf2\xf2\xfe\xb6\x99\x69\xb9\x13\xe3\x88\x92\xac\xbb\x0d\xbb\x00\x24\xc9\x8e\x9a\x94\x4b\xb5\x5b\xd3\xae\xc5\x30\xb5\x3c\xc9\xfc\x74\xfc\xba\xfd\x81\xbf\xb2\xd8\x1e\xa6\x49\x54\xa4\x19\x19\x5a\x81\x91\x2a\x92\x59\xbd\x75\x58\x87\x64\x4f\xcb\x29\x30\xb3\x8a\x36\x1e\xea\x7d\xf8\x0b\x4e\x4f\xe9\x80\xa8\x99\x5e\x25\xdf\x1c\x3e\xc9\x8e\x8e\xa7\x22\xe5\x2d\x82\xd1\x38\xaa\xfb\xb2\xdf\x50\x12\xa4\x5d\xdb\x8b\xc2\xa8\xe0\x52\x03\xbc\x08\x50\xc5\xf2\x75\x2d\xc4\x3e\x30\xdf\x5e\x31\x95\x57\x7e\x68\xde\x9d\xff\xbe\xb2\x74\x7f\xaa\xed\xf3\xe3\xbc\xdc\xcc\xc6\x65\x58\x98\xa4\x50\x02\x53\x67\x14\xf8\xeb\xf5\xa9\x38\x52\xd5\x1c\x4c\x6c\x5f\xa1\xdd\x02\x8c\xd7\x9f\x07\x53\xd4\xc0\x34\x5c\xfc\x2f\x63\x9f\x4f\xda\xac\xd5\x02\x0e\xcc\xb7\xa1\x61\x3d\xa3\xb0\x9c\x0f\x02\xdf\x05\xc3\xce\x23\xfc\xdc\x4d\xc5\x4b\xf2\x72\x99\x2b\x1e\x77\x87\xea\xde\xe7\xdb\xfe\x3c\x27\x7b\x98\x66\x19\xe8\x8c\x5a\x53\xea\x0a\x3e\x5e\x9e\x26\x10\x33\xeb\xf9\x1e\xdd\xdf\x4e\x8f\xc0\xc9\x5d\xcc\x3e\xb7\x02\xc3\xef\x71\x5a\x35\x4e\x83\xe1\x15\x7a\x10\xd7\x9b\xbd\x78\x50\xda\xe2\xc6\x5a\x96\xaa\x11\xb8\xde\x4b\x43\x9f\x92\x03\x14\x1f\x78\x53\xbe\x56\x82\x39\x7d\x3b\xaa\x0e\x90\x82\x8d\x8d\xd3\x7d\xf6\x39\xe2\x1f\x3b\x8e\x0a\xfb\xca\x28\xcd\xbc\x59\x70\x51\xa6\x03\x5f\xd4\x77\x0d\xac\x09\xd1\x42\x54\x4b\x0c\x0e\xec\x5b\x81\x6a\x6a\x7f\x4b\xe5\x41\x72\x13\xdb\x1c\x4e\x2b\x6c\xd5\x7b\x63\x05\x36\x7f\x3b\x50\x04\xc0\x0c\x30\xc2\xb0\xed\x98\x78\xbd\x8e\xdf\x0a\x74\x6c\xcf\xc2\xb8\x68\x35\xdc\x83\x42\x08\x76\x1d\x63\x9a\x00\x23\xb8\x4e\xbe\x29\x8c\x2b\x8f\x2f\x66\xe7\x1b\x4a\x73\xf3\x9a\xae\x7a\x9c\x54\x5d\xb1\x67\x14\x15\xcb\x0f\x03\x5f\x90\xda\x52\xc1\xdd\xa8\x3a\x41\xb8\x89\x0d\x8b\xeb\x61\xa0\x88\xba\x1e\xd6\xb2\x3c\xcf\xb5\x63\x5b\x9d\x39\xae\x53\xea\x37\xb5\x8c\xc9\x6f\x06\xba\xe7\x24\x29\x0b\x2b\xe8\x09\x6e\xef\xc0\x4b\xe0\xed\xfe\x29\x2d\x52\xbe\xc6\xb8\x49\x13\x48\x03\xc8\xb9\xbd\x66\x8b\xd4\xa2\x1a\x8a\xae\x27\xde\x3f\x7c\xa3\x70\x32\x23\x5b\x64\x69\x6c\x53\xa6\x53\x43\x71\xe8\x2a\x21\x57\xf8\xda\xf5\x38\xdb\x18\x20\x23\xd9\xa5\xf0\xa6\xaf\x2a\xb5\x85\xbb\x5a\x87\xe0\xa8\x43\x32\x64\xa6\xfb\xea\xc6\x30\x4a\x5a\x9a\xe2\xe0\x9c\x0e\x86\xcf\xa9\x70\xb0\x9f\x95\x5d\x9f\x1f\x77\xd9\x34\xaf\x15\x55\xcb\x09\x1d\x9a\xff\x52\xdb\x84\x99\xe4\x01\x1c\xc1\xb1\x6a\xe1\x0c\x9e\x52\x94\x70\x49\x94\x83\xc3\xda\x67\x4f\x99\xdd\x0f\xeb\x0a\xed\x4b\x7c\x4d\x0b\x83\xff\xa8\x96\x0e\xde\xb7\xdc\x0e\xb3\x68\x34\x8a\xa5\x8c\x89\x5c\x3f\x44\x30\xe4\x48\x51\x6b\xb1\x11\x27\x9d\x58\x23\x2a\x79\x1c\xd1\x04\x4a\x25\xe7\x8e\x4b\xf0\x51\x9a\xd3\xe4\x45\x3e\x5d\x19\xa7\xbf\x95\xd2\xf8\x27\x1d\x8e\xb8\x40\x44\xa1\xc4\x7a\x6f\x68\x7c\xe1\x8d\x5a\xb9\x8c\x72\xfa\xe5\x0a\x25\xc6\x8b\xc2\x32\xcc\x50\x77\x01\xf3\xb5\x6a\x7a\x1f\xae\x54\xe6\x97\x01\xd5\x0e\x39\xe9\xc9\x2e\xcf\xd5\x68\x4f\x88\x2f\x66\x54\x9d\xdc\x6e\x8a\x91\x82\x80\x62\x25\x5f\x4f\x9e\x51\x8d\x20\x5d\x9b\x15\x06\xbd\x3f\xd5\xf3\xb3\x1a\x17\x92\x48\x22\xcd\xe5\xa8\x47\xa2\xcc\x26\xfc\xd6\x22\x75\xa7\x4e\x21\xdd\xaa\x11\xe5\xb1\x19\xb6\x54\xf1\xec\x98\xe2\xb4\x3d\xe6\xd8\x67\xc2\x34\x2f\x3e\xe1\xf1\x42\xad\x89\xe7\x2a\xbc\x42\xe6\xdd\x91\xc2\x54\xbf\x29\x99\x45\x72\xb4\x2f\x28\xf6\x9e\x1f\xd0\x97\x23\xb9\xcc\xf4\x20\x98\xdf\x6b\x48\x21\xa2\x7e\x72\x31\x50\x49\x08\x66\x64\x66\xad\x22\x34\x07\x16\xa6\xdf\x5e\x58\x6c\x03\x95\x8f\x2f\xf8\x5f\x28\xf0\x43\xb2\xf5\x0a\x19\x41\xf8\x1e\x3f\x47\x4f\x8a\xeb\xf7\xc7\xad\x2f\xfe\x2a\xa7\xfd\xae\x50\xd7\x9e\x30\x64\xd3\x53\x0b\xa8\x9d\x1e\xcb\xc5\xe1\x2f\x48\xeb\xf5\xf9\xf1\xce\xcf\xb2\x3b\xf1\x3a\x4a\xd7\xc8\x67\xdd\xc5\x03\xe2\x03\x37\x11\x3c\x88\xe6\xb8\xd2\x35\x24\xf4\xa5\x93\xba\x5d\x76\x32\xa7\x3f\x42\xa9\x45\x48\x0b\x29\x81\x81\xed\x7a\x95\x0f\x00\x34\x63\xdd\xc5\xf1\x8a\xd5\x37\x43\x6e\xbf\x48\xe6\xf9\xb2\xc9\xc9\x80\xa2\x11\xec\x83\xf7\x83\xd6\xc2\x82\x57\xa3\xad\xa6\x18\xb0\xf1\xe3\x53\x30\x56\xdf\x47\x7c\x05\x88\x3c\xe0\x56\xb8\x93\x1b\x2b\x98\xc5\xfd\x1c\x61\x97\x0b\x07\x3f\x42\x92\x45\x9a\x09\xb7\x5b\x61\xf1\xac\xca\xc1\x0c\x26\x4b\xf7\x92\xe3\x2c\x3b\xaa\xed\xf8\xcd\x1a\x01\x23\xba\x77\x08\x67\x53\x9d\x22\xaa\xb5\xee\xb6\xc2\xb0\xde\x76\xbb\xb1\x4c\xd2\x95\xdc\x66\x6b\xec\x0a\xe1\x5d\x18\xd0\xc2\x37\x8d\x42\x4b\xa3\xea\x90\xda\x98\xf1\x41\xef\x47\xaa\xf4\xf7\xfe\xd8\x23\xb2\xff\x4f\xb7\x27\x86\x51\xc8\x2e\x14\xb7\xbb\x77\xbc\xc3\x39\x37\x69\xa0\x63\xab\xde\xc3\x66\x72\x70\x20\x14\x3f\xac\x14\xe0\x7e\x5d\x77\x18\x7d\x54\x8b\x14\x5e\x7a\xa9\xdd\x4f\xc9\xc1\x15\x4c\x12\x8d\x9c\x30\x05\x56\xeb\x4b\x8e\xf1\x06\x6c\x10\x62\x3a\xce\x20\x34\xf1\x5f\x4b\x43\xf0\x4a\x96\x9a\x6e\x48\xfd\x27\x02\x39\x95\xea\xa5\xca\x3e\xfc\x05\xa6\x0d\x3f\x78\x57\xa1\xd4\xca\x64\xcd\x46\x31\x7e\x46\x53\x76\x89\x20\xf7\x54\x73\x60\x9a\x53\x9a\x1f\x46\x85\x39\x35\xf8\x26\x50\x5a\x31\x9b\x58\xfb\x58\x7e\x17\x83\xa9\xbe\x4c\x25\x86\xa5\xd1\x7f\x31\x94\x1e\x67\x55\x72\x9f\x39\x57\x90\x33\x05\xeb\x9c\x53\x7c\xdf\x27\x39\xfb\xbb\x8a\x0c\xc0\x56\x8e\xce\x88\x38\x19\x5b\x1e\xee\x08\x7b\xc6\xd7\x6e\xdd\x0d\xa2\xfe\x20\x66\xfa\x76\xdf\x32\xcb\x89\x1d\xbe\xd1\x10\x4f\xca\x75\xcf\x79\xd5\x96\x7f\x1d\x28\x7a\xc8\xb7\x08\xef\xc9\x25\x94\xb1\xa2\xa6\x7a\x4b\xc9\x22\x6c\x06\x5a\xa3\x7c\x98\xae\xd9\x19\x9f\xf6\x3b\xa5\x13\xee\x81\xca\xd3\x1f\xd6\x49\x31\x93\x5b\xb0\x49\x4b\x78\xd1\x52\x52\xd6\x4a\x81\x9b\x3b\x8c\xc4\x94\x34\x88\xbc\x85\xb1\x65\x7e\x0e\x11\xcd\xab\x06\x89\xaf\x6b\xc1\xda\xf2\x72\x7b\x3d\x42\x3e\x4e\xd4\xbb\x5a\x1d\x85\x6a\x78\x67\xac\x1b\xfc\xb5\xdc\x47\x0d\x14\xf8\x5c\xdb\xc4\xb1\xed\xdb\x2e\x47\xc0\x2e\x11\xe4\x09\x6e\x15\x28\x27\x4a\xd6\x22\x92\x06\xa9\x9e\x4e\xea\x79\x9e\x96\x98\xbb\x84\xa5\x8a\x5f\xef\x24\xfc\x52\x7b\x94\x95\x5d\xcb\x11\x22\x0e\x8c\x2b\xdb\xf9\xf0\x85\x46\x7e\xa2\x12\x45\x2b\x69\x31\x57\x6d\x50\x1c\xc0\xdc\x92\x83\x97\x65\xda\x6b\x17\x1f\x39\x82\xb6\x8f\x54\x67\xdd\xf7\x95\x10\x5d\x61\x63\x0b\xb2\x53\xa7\x20\xfd\xc1\xd8\x2b\x48\x7f\xa0\x08\x63\x8a\x74\x9d\x84\x9f\xb0\x73\x1e\x68\x2f\xe9\xb8\x6e\x3f\x55\xb9\xf7\x9f\x39\xee\xde\x35\x93\x74\x6d\xb2\x62\x33\x74\x21\xc2\xfc\x71\x85\x8c\x6f\x82\x4f\x49\x77\xca\x70\x94\xa5\x6b\x51\x6e\x58\xa0\x49\xb7\x09\x28\x00\xae\xf3\x50\x5e\x4e\x63\xe7\x41\xc3\xf9\xc5\x8a\x85\xe7\xc8\x7d\x27\x30\x2e\xb7\x03\x0d\xee\xcb\xf3\x47\xe8\x24\xc3\xe2\x60\x40\x99\xea\x02\x91\x1c\xff\x6f\x63\xb3\x0b\x74\xa3\xe5\x08\xed\x9e\x22\x2b\x2d\x2a\xad\x74\x7a\x21\xc7\x7f\x5d\xb1\xd0\xfc\x74\xac\xe8\x4d\x4f\x37\xa9\x9e\x67\x36\x2f\x36\x62\x79\x05\x99\xfd\xea\x67\x30\x34\x37\x74\xbf\xda\x3b\x8d\x95\xa1\x75\x93\x70\x0f\x32\x92\xfb\x13\x9a\x05\x18\x96\xeb\xb4\x7f\xc4\xa7\xf0\xe9\x98\x97\x0d\xf5\x7f\xcf\x54\x8f\x2a\x84\x36\x95\xad\x60\x7c\x7d\xe0\x19\x9a\xbe\xad\xea\x9e\x94\x1e\x08\x2d\xa4\x7b\x9d\xb4\xa2\xef\x50\xc0\x41\xe0\xa8\x2a\x15\xeb\x86\x78\xd2\xb9\x4d\x4c\x91\x66\x4c\x2e\xa1\x98\xdb\xf6\xbb\xc6\x38\x1c\x15\xf8\xc2\xba\xde\xfd\xbe\xe5\xf6\x28\xb3\x43\x52\x30\xd8\x26\x25\xc1\xd7\x0e\xc8\x10\x85\x96\x16\x9d\x62\x83\x07\xdd\x94\xbc\xa4\x2e\x0e\xe5\x29\x77\xff\xb9\xca\xf6\xd2\x12\xfb\xcf\x57\x51\x0d\xc2\xe9\x70\x7d\xec\xab\x76\x77\xf8\x59\x31\x53\xd7\x02\x15\x8e\xfe\x40\xb9\x91\xb7\x08\x15\xe6\x46\xc5\xf5\x34\xdd\xc4\x3a\x83\x51\x9f\xe2\xbe\x3f\xa1\xb9\xbe\x77\x10\x90\xcc\xb5\x37\x2c\x2c\x70\x51\xee\x22\xbc\x2c\x7e\x2c\x25\x8d\xfa\x10\xec\x0f\x5b\x47\xa6\xce\xc8\xae\xcd\x9e\xf5\x54\x83\x60\x60\x81\x0b\x7b\x0b\xdd\x27\x58\xca\x6f\x06\x95\x3f\x2b\x1c\x18\x78\x3f\x3c\xd4\x94\x6a\xe8\x09\x58\x72\xf8\x1b\x80\xbd\x31\x6e\x1f\x87\x04\xb3\x7e\x21\x41\x01\x9f\xfb\x6d\xc4\x18\xb0\x14\x97\xe1\x47\x3a\xf9\xcb\x5f\x7a\x81\xff\xe1\x07\x63\xd5\x89\x06\xc1\x60\xbc\xe1\x8e\x49\xb5\x3e\x1d\xf2\xda\x31\x7f\xfe\x09\x6d\x16\xe9\x69\x54\x14\x47\x77\xc6\x4a\x86\x07\x6a\x97\x22\x1c\xec\xb3\x3d\x65\x5c\x44\x43\x53\x58\x34\xc8\x02\x35\x77\x0a\x62\x02\xd8\xcd\x8c\x25\x77\xd9\xa8\x43\xf3\xce\x4a\xc0\x13\xe5\x3f\xd3\xfd\x75\xe5\x70\x45\x32\x15\x38\xb9\x76\x91\xad\xe0\xeb\x89\x3f\x46\xd2\x78\x63\x38\x8a\x42\x6e\x5f\x40\x26\xf9\x75\x5a\x79\x7c\x3d\x95\x40\xcb\x4a\xa8\xef\x61\x72\xee\xd2\x4a\xc2\xe2\x79\x3b\xf0\x63\xf0\xfb\xf4\xa6\xc2\xed\xb9\xdd\x0d\x5e\x58\xf8\xf7\xf4\x7b\xc1\x0b\x7c\x73\xac\x01\x3b\xdb\xfb\xbd\x84\x60\x58\xe9\x2a\x5e\x99\x96\x00\xd8\xa6\x14\x54\x1d\x78\x4b\x4b\x8f\xe1\x17\xf0\x6a\x3f\x0b\x14\xcb\xd5\xe9\xf1\x34\x61\x4c\x35\x6f\xd8\x54\x70\xd2\xa4\x7b\x40\x51\x80\x9e\x57\x75\xb7\x5b\x8a\x59\x6f\x16\x20\x4a\x27\xde\xa8\x4d\x71\xb5\x16\x15\xf1\xad\x90\x88\x5f\x57\xe7\xab\x35\xe5\x23\xba\xae\xcf\x27\x88\xab\x33\x57\xcb\x0b\x79\xa3\x9f\xe0\xf5\x99\x16\x04\x8f\x86\xbc\xcd\xa3\xb4\x61\x85\x34\xd1\x0f\x18\xa3\x22\x61\xa4\x71\x54\x62\xcf\xec\xa9\xa9\x9c\x56\x4e\x7e\x5a\x66\x58\x17\xac\x13\x3f\xf6\x65\xe4\x6f\xd7\x02\xa4\x7d\xcb\xed\xd8\x46\xb9\xa8\xb0\xe1\xc4\x03\x7b\x27\x5f\x2b\xaf\x76\x98\x26\xe4\x96\x83\x47\x07\x05\x70\x1e\x5c\xac\xed\x3b\x81\x07\x50\x6e\x2a\xf0\xc9\x7a\xd4\xb5\x28\xe7\x08\x6a\x94\x36\x87\xc3\x93\x7a\x36\x78\xe6\x2d\xe3\x1b\x35\xc0\xa3\xc8\xfe\x7f\xc8\x4d\x48\x92\xa0\x1c\xc5\x96\x1d\x60\x78\x13\xa8\x66\xf0\xb5\xa2\x71\x1d\x95\x71\xcc\xc9\x36\x51\xa3\xad\x4c\x83\xc8\xd7\x6e\xcf\xca\x1c\x9a\x5f\x04\xb8\x3e\x21\x9a\x77\xc4\x76\x42\x9d\x41\x8f\x2f\x8e\x4c\x03\xc1\x6c\x62\xfb\x71\xd4\xb7\x49\x48\x6f\xb0\x75\xa1\x5a\x9a\x5b\x17\x5c\x18\x97\x8f\xca\x6c\xd6\x4b\x04\xa2\xa1\x48\x00\x83\x0a\xe6\x7b\x5e\xc1\xb3\x4e\x4c\xb5\x13\xa7\x6b\xb6\xbb\xab\x32\xa5\xd8\x92\xa7\x02\x55\x30\x3f\xa9\x1a\x63\x6f\x06\x3e\xb9\x33\x37\x99\xc6\x61\xbb\xc3\x69\x67\xa7\x0e\x38\x2c\xd2\xa4\x5f\xb2\x16\x3a\x92\x97\xdf\x52\x0c\x9a\x57\x02\xdf\xdc\x77\x51\x55\x25\xf2\x92\xf9\x23\xd8\x3b\xa1\x39\x13\x4f\xa5\x81\x9b\xa1\xc8\xcc\x68\x24\x1e\x0d\x6b\x0f\x2a\xb9\xf3\xe3\xb4\x29\xc5\xda\x7b\xb1\xa3\x7c\x3d\x4a\xfa\xe8\x05\xc6\x2b\xff\x74\xac\x74\x02\xbe\xa3\xb8\xd0\x6e\x4c\x91\xa4\x7a\xad\x71\x6a\x38\x8b\x46\x26\x76\xc9\xba\x2f\x6d\x11\x3f\xd4\xd6\x55\x3f\x4b\x65\xd6\x6b\xd5\x7a\x62\xf9\xba\x16\x60\xfc\x47\xed\x7c\x94\x96\x85\xc6\xd7\x9e\xc5\x99\xc6\x37\xba\xdf\xc9\x64\x51\x5a\xe6\x73\x0a\x89\x7a\x8a\xe6\x03\xb6\xe8\xc1\xd8\x9f\x5f\xcc\x9d\xee\x68\x32\xf7\x69\x16\x16\xdf\x56\x1f\x0a\x97\x31\x5e\x9b\xb1\xd3\x7c\xd3\x24\x39\xeb\xf8\xc8\x68\x5d\xc3\xd0\x9c\xc0\xda\xe3\x1b\x47\x37\x62\xf2\x55\x52\x68\x16\x0d\x9c\x87\x34\x2b\x4e\xc0\xbf\x7a\x3c\xf8\x7f\x9f\x41\x58\xe1\xd0\x71\x1e\x93\x49\x23\xc7\xe8\x78\x25\x0a\x56\xd8\x8c\xf4\x4b\x79\x01\xe0\xe4\x7c\x7b\xaa\x3e\x4c\xbf\xcb\xe2\x10\x4d\x7d\xfb\x43\x6b\xb8\xba\xcc\x04\x84\xf8\x84\xb0\x11\xd6\x9d\xe0\xc5\x76\x2f\x36\xec\xe9\x39\x4d\x1f\xe7\xe0\x5c\x6c\x60\x80\x69\xe7\x25\xf1\xae\xa6\x19\xb6\x83\xd6\x2d\x82\x23\x89\x54\xbc\xf0\x6b\x78\x0b\xb6\x94\x42\x3b\xdf\x25\xa4\xab\x49\xc1\xd9\xcb\x1a\x48\x38\xa1\x7e\x4f\x69\x2e\x99\x61\x9a\x15\xd1\xab\x53\x06\xe7\x8c\x36\x38\x67\xc6\x8f\xf9\xc2\x5a\x64\xf0\x4c\x22\xcf\xe9\xcb\xcc\xd0\x45\x71\x7e\x8c\x27\xf8\x59\x37\xf9\x20\x4a\xfa\x45\x9a\x3c\xe1\x31\x62\x1f\xa9\x82\xd9\xf1\x29\x24\xf6\x58\xa5\xf6\x8f\xe9\x18\x65\x73\xec\x61\x3e\x97\x34\xc3\xc9\x2d\x5d\xf2\xb8\x35\x56\x5d\x5e\x33\x80\xbe\xe1\x28\x86\xc7\x06\x87\x11\x79\x7b\xd5\x0a\x26\xf5\x89\x53\xe4\x2f\xe2\x47\x7e\xa4\xce\x25\x52\x0f\xef\xa5\xd9\x90\xf2\x19\x4e\x0f\xcc\x75\xe0\x72\xe3\x23\x93\x4d\x2b\x09\x5b\x66\xfb\x12\x16\x6a\x09\x3c\x8b\x81\xcd\xac\xe9\x15\x36\xdb\xe5\xbb\x72\xcf\x7a\x41\xa8\xff\xee\x6f\x77\x7c\x41\xf2\xe7\xe1\x80\x0b\xb6\xd0\x17\x07\xf9\x64\xc4\x97\xdf\x1d\x7b\x09\x4a\x93\x15\xb3\x3a\xce\x57\x52\xcc\x9c\xe8\x90\x04\x80\xcf\x00\x9e\x6f\xe6\x0a\x4e\xd3\xc4\x66\x33\xe4\xb9\xe0\x8c\xbb\xad\xa2\xa7\xe3\x4a\x32\xf0\x82\x2a\xa9\x0f\x4c\x1e\x75\xa3\x70\x46\xf7\xd6\x4e\x89\x5d\xbf\x35\xa5\x8f\x53\x8b\x3e\xa9\xa3\xc7\x74\xd7\x22\x1c\x68\x9e\xa6\xd8\x53\x16\xd7\x8a\x43\x0b\x8b\x24\x55\x0d\x51\x1d\x49\x36\xfc\x98\xfc\x77\xbe\x76\x8e\xf0\xc8\x14\x85\xcd\x1c\xc0\x5d\x80\xce\xaa\xb5\xec\xea\xd8\xd7\x91\xc2\x74\x38\x22\xb5\x08\xe0\xa1\xd8\x9f\x9f\x72\x0f\xe8\x93\xdc\xe0\xef\x40\xc9\xb9\x29\xa2\x9c\x39\xc4\x70\x74\x21\x74\xe3\xeb\x5a\xc0\x4c\x4a\xb2\x54\x77\x74\x41\xd5\x74\x73\x86\xf7\xce\x37\xd2\xd5\x74\x60\x86\xe8\x79\x97\x6e\x3f\x5f\xe4\x3c\xd2\xa4\x94\xd1\xcb\x22\x9b\x50\x0e\xc9\xe5\x94\x77\x50\x73\x39\x5f\x4f\xb6\x0f\x28\xe5\xbc\xd2\x7c\x5a\xd4\xe7\xfb\xba\xc1\xeb\xfb\x53\xd8\xf0\xbc\x90\xae\x05\xc1\x4a\xa8\x52\xdb\xc5\xc0\x97\x8e\x57\x32\x6b\x56\x3f\x51\xbd\x25\x4c\xf7\x11\xb0\x13\xc2\xc7\x7e\x1d\x09\x0b\xbe\xa1\x3d\xeb\xf0\x26\xfb\x04\x6c\x3b\xd3\x51\x56\xe2\x94\x12\xbe\x85\x08\x25\xe7\x27\x10\x85\x4a\x61\x4b\xd5\xf1\xd9\x41\x66\xa5\xf1\x26\x7d\xdd\x62\x90\xa5\x65\x7f\x30\xe3\x2b\xca\xe7\xd5\x29\x0f\x9c\x06\x6a\x85\x77\x55\xc5\x31\x5d\xb3\x59\x98\x0e\x99\x18\x4c\xc2\x6a\x95\x65\xdc\xac\x4d\xfa\xfe\xaf\x3e\xdf\x2e\x4c\x2c\x23\x87\x40\x8c\xbb\x9e\xf9\xa6\x99\xee\x6b\xdd\x6c\xb8\xc2\x1a\x2b\xcd\xaa\x36\xa7\x93\x0a\x69\x12\x9a\xc2\xc4\x1b\xb9\xc0\x06\x60\x01\xd9\x34\xf2\xcd\xc4\xd7\x89\xbb\x51\x0e\x24\x1e\x80\x29\x30\x85\xa7\xe8\x85\xf9\x5a\xe1\x8d\xbf\x56\x9a\x38\xea\xc1\x59\xc7\x2c\xbd\x0e\xf3\x22\x8d\x96\xde\xee\x5c\x6b\x54\x8a\xe9\x67\x4a\x92\x50\xd2\x5a\x2d\x47\x25\xf2\xdb\xb5\x03\xb5\x1a\xaf\x30\xe5\xa6\x55\x57\x77\xf2\x88\x13\xcd\xa1\x5d\x66\x7d\x9b\x21\x67\xea\x5a\xc9\x1c\xf5\xfd\xe6\xf8\x6f\x7d\x4c\x25\x27\x4a\xba\xd1\x5a\xd4\x2d\x4d\xcc\x7e\xbe\x3b\x14\xab\x11\x93\x43\xb1\x41\x07\x3a\xb3\xfd\x32\x36\xd8\xbf\x0e\x2e\xe4\x0a\xcc\x17\x5d\x22\x7d\x25\x36\xe1\x2a\xc9\xcc\xcf\x78\xdf\x93\x4f\x6b\xd5\x7c\x27\x3d\xcd\x73\x4d\xec\x69\x59\x3a\x24\x61\x04\x05\x3a\x40\xe5\x51\x92\x3c\xf5\x06\x9d\xbe\x59\x5f\xdd\x50\x34\x61\x97\xa7\x3c\x5f\xda\xd6\x70\x5c\xdf\x53\x1e\x76\x3f\x33\x1b\xb3\x4a\x86\xf6\xf0\xf8\x63\xf9\x0c\x74\x1d\xa0\xa9\x80\x9e\xa7\x65\x31\xb0\x26\x2f\x14\x3b\xf0\x87\x9a\x1d\xb8\x4e\xd5\xb1\xb4\xd4\x1e\x1a\x14\x9d\xa7\x12\x72\x7c\xa3\x1a\xc2\xfa\x66\x08\x25\x7e\x21\x5d\xfb\x08\x7b\x1c\x9b\xf4\xcc\x58\xb5\x70\x81\xa7\x19\xb6\xe3\x7a\xa0\xea\x51\xaf\x8d\x3d\x84\xc8\x2f\x02\x0e\xba\x91\x09\xbf\x81\xe4\x10\x4e\xdc\x1d\x13\x5f\x0d\xbf\x3d\xf6\xcd\x12\x3b\x50\xf6\x15\x8c\x01\xfd\x34\xbc\x81\xbb\x63\x95\x54\xc7\x03\x62\x8e\x27\x5a\xee\xe6\xcc\x94\xab\x9d\x47\x7d\x28\x5e\x69\xad\x3e\x04\xfa\x7f\x3c\x56\x1a\x7a\x67\x9b\x20\x07\xb9\xed\xf2\xf8\xb9\x08\xe9\xc0\xbc\x8b\x90\x9e\x99\x7a\x5d\x26\xc4\x20\xa0\x1e\x52\x8d\x47\x91\xef\x10\x92\x91\x6a\xd8\x10\xff\x1c\x55\xd6\x9c\xca\x05\x94\xa8\xc7\xd3\xe3\x20\xe2\xeb\x1a\x2c\xe0\xc0\x7c\xdb\x26\x5d\x93\xf4\x85\xf1\x51\x30\xa9\xaf\xab\x44\xd1\xeb\x0d\xb6\xa2\x6d\x93\x97\x53\xdf\x94\x86\x00\xe5\x98\x42\xf0\x1c\x6b\x06\x15\x27\xb6\x17\x71\x0e\x1a\xbc\x43\xac\x95\x2a\x40\x0a\x8f\x7d\xbb\xad\x3c\xe9\xc4\xbe\xa2\x84\xd6\x78\x6f\xf2\x4d\x15\xa8\xf0\x9f\xfd\xbd\xff\x84\xd6\x32\xf3\x9e\x93\x3f\x28\x1c\xe8\x92\x56\xee\x95\x49\x62\x1d\x37\x37\x8e\xaf\x7f\x83\x55\xc7\x37\x4d\x2f\x3b\x28\x93\x6e\x66\xbb\x38\x48\x94\x81\x78\xde\x35\x03\x6f\xdf\xdf\x5f\x59\x6c\xf7\x4c\x14\xd3\x89\xe5\x04\xd5\x5d\x44\xf4\x90\x41\xbe\xb5\x6e\xdd\x03\xf3\xcf\x8b\x83\xe3\xec\xb0\x20\x89\xaa\x57\x13\x20\x51\x03\x63\x41\x2f\xf6\x27\x10\x2b\x97\x06\xbe\x5b\xf3\x88\x4a\x65\x0a\x47\xcf\x5e\x6c\x25\x3c\x1e\xb7\xd0\xe3\xf9\xae\x00\x54\x20\xe5\x6b\x3a\xdd\x31\x5d\x3f\x0c\x14\x9f\x15\x92\x7c\x2c\xb0\x49\x1b\x81\xc9\x70\x02\xa5\xfe\xce\x02\xc8\x18\x5d\xd6\x09\x94\x42\xbc\x66\x97\xa8\x46\x0a\x53\xba\x8b\xd0\x9b\x78\x55\x56\x1c\x00\x78\x66\xe7\x84\xf2\xcf\x70\xf3\x4e\x2b\x6a\x91\x3d\x13\xf1\xf2\x06\xb6\x57\x44\xe2\x21\x4f\x51\x08\x48\xfb\x4f\xcb\x51\xed\x7c\x53\xb5\x81\x55\x06\xab\x48\xc3\xa8\x6b\x67\x94\x48\xd1\x5d\x5d\xa6\xd0\x3c\xcf\x27\x54\x3a\xa2\xda\x3d\xb1\x14\xae\x61\x4c\xd8\xd7\x72\xa4\xc2\x5e\x11\xe6\xaa\x12\x5e\x4c\xa3\xf8\x29\x7c\x8a\xb3\xdb\x14\xf8\xa3\x60\x77\xab\x1a\x8f\xad\xd9\x8e\x0a\x35\xae\x2b\x0a\xcf\x3d\x13\xcf\xd5\xf3\x40\xc1\x31\x9e\xec\x78\xba\xdb\x5b\xa8\x61\x8b\x94\x37\x0d\x02\x30\xf1\xb7\x30\xd7\xd2\x09\x46\xd3\xeb\xf8\xf0\xfd\xc1\xc3\xf2\xc1\x58\x05\x8f\x4e\xb6\x09\xf3\x48\xa4\xff\x13\xb8\x8b\xc0\xb8\xdc\xd6\xef\x7a\x4e\xb9\x26\x23\x43\xbc\xf5\x5a\x18\x62\xac\x2b\xe5\x0d\xc1\xfd\xf3\xe0\x02\x50\x41\xf7\x39\x32\x80\x5b\x3f\xd7\xf1\xca\xd9\x57\x09\xde\x89\x14\xea\xcc\x44\xf7\xfe\x61\x64\x65\xee\x9a\xb0\x6b\xa3\xd8\x84\x38\xf3\xb1\x06\x6f\x04\x8a\xa6\x85\x06\x9b\xb5\x23\x1b\xb8\xe6\xf7\xb7\x87\x26\x1c\x44\xec\x33\xc0\xbf\x62\x78\x04\x96\xfd\x29\x7e\x00\x71\x84\xbc\x5b\x4a\x5d\xc5\x04\x15\xd0\x5d\x8f\x34\xee\x70\xda\x7e\x87\x8a\x07\x52\x28\x53\x3c\x07\xbf\x33\x7e\xd6\xab\x28\x64\x66\x68\x8a\x28\x14\x8a\xd2\xe7\x3d\x97\x8f\xe7\xf5\xa9\x47\x65\x0b\xed\x15\x0b\xfd\x76\xdd\xac\x5a\x4d\x20\xf3\x57\xea\x02\xe5\xce\x4e\x1d\x5a\x99\x26\x5c\xf7\x46\x02\x78\x67\xc7\x43\x73\x76\x2a\x95\xf1\x55\x93\x99\x74\xd5\xce\x7d\x5c\x3b\x8e\x2a\xc4\x1f\x19\xeb\xfe\x1d\x7a\x15\xfe\x87\x5a\x28\x50\xb9\x9b\xe9\xab\x26\x5b\x95\xed\x86\x04\x0a\x03\xf7\xa6\xbc\x75\xb1\x50\x4f\xb8\x0e\x03\xd3\x25\xf0\xe1\x14\x54\xb1\x5a\x5b\x80\x28\x9d\xd7\xa8\x07\x06\x98\x0a\x93\x63\x13\x25\x60\x38\x10\xfe\x3c\x04\x9a\x97\x61\xd2\xd1\xd7\x21\x8c\xbf\xcf\x6a\x1c\x80\xcd\x8b\x88\xc4\x67\xa6\xba\x21\x14\xa7\xd7\xa6\xa6\x9b\x58\x8d\xba\x34\xcc\x98\x49\xe8\xb3\xf0\x75\x6d\x58\x96\x96\xda\xf9\xc6\x70\x25\x15\x0f\x99\x07\x59\x99\xba\x4b\x8a\xe9\x35\xcc\xa2\x70\xd5\x82\xa5\x49\x64\x43\xab\xbf\x44\xb5\x08\x0c\x5f\x92\xf2\x6c\xf8\xa5\x38\x4d\xfa\xae\xf7\x40\xab\xfe\x23\x6b\x72\x4f\x39\xf5\xe7\x1b\x45\x1a\x36\xf2\x22\x1d\x45\xa6\xe5\x2b\x5d\xac\xaf\x21\xa7\x82\xdf\x2a\x66\xcd\x44\xb1\x59\x89\xed\x23\xad\x85\x05\xdf\x00\x50\xc5\x91\xc8\x42\x3d\xa0\x43\x1e\xbf\xbc\x63\xe2\xbb\x85\x4f\xe2\x1b\xf9\x13\x81\xea\xfa\xfb\xc3\x60\xaa\xe1\xb6\x7a\x08\xc4\x10\xb7\x81\x84\x83\x29\x99\x75\x5a\x1e\xf9\xc0\x66\x2b\xb6\x98\x42\xae\x8f\x15\x72\x3d\x78\x7a\x7b\x05\xeb\xc5\xf6\x17\x88\x49\x4d\x30\xe7\xd5\x1f\x03\x02\x04\x26\x35\x38\x73\x67\x71\x12\xc2\xda\xdc\x56\xe9\x8b\x6b\x81\x06\x5e\x50\x66\x8a\xbd\x15\x2c\xc7\x1f\x28\xb5\xbd\x97\x7f\xa0\x1b\x6d\x6d\xb4\xa2\x85\x29\xd9\xa6\xf0\x4d\xa3\xac\xdc\x8a\xe1\x84\xbd\x30\x82\x28\x01\xae\x26\xed\xdf\xfd\x6d\x13\x65\xeb\x66\x43\xba\xc0\x11\x8b\xbf\x15\x28\x9d\x21\x4d\xec\x95\x96\x45\x66\xfa\x10\x77\x86\x45\xf9\x63\x5a\x93\x7c\xdd\xb4\xba\x4c\x9e\xdb\x4c\xa0\xb6\x4e\xb0\xc5\x83\xc7\xaf\x34\xba\xd5\xeb\x42\x5c\xcd\x55\x42\x1a\x4e\xa9\x18\xfa\x7e\xdf\xa1\x49\x06\xa6\x28\x4c\xb2\xcb\x4f\xe0\x6b\x81\x3a\xf1\x7e\x83\xac\xbe\xd0\x63\x29\x8c\xe6\x49\x3c\x03\x16\xda\x49\x9d\x2d\x3b\x56\xf3\xa9\x09\xab\x31\x2a\x57\xe2\xca\xc7\x6a\xf9\xec\xdc\x3b\x18\x26\xbe\x71\xc0\x94\x72\xb4\x6e\xb2\xee\x9c\x67\x91\x7d\x9c\xdc\x1f\x64\x43\xa1\x5b\x86\x45\x72\x53\x01\xf7\x7e\x97\x9c\x1f\xc4\x5d\xc7\x6a\xbd\x8d\x07\xe6\x5d\x2b\x25\x2f\x1d\xc4\x0c\xdf\x19\x2b\x45\xe1\xef\x38\x16\x12\x53\x45\xaf\x39\x51\xc8\x62\xea\xff\xc7\xb1\xaf\xdc\x31\x7a\x19\x36\xfc\xc6\xc7\x76\x4f\xd9\x57\x46\x36\x8b\xa4\xe4\xe5\x7c\x73\xed\xa8\xbb\x37\x5e\x31\xf1\xab\x26\x54\xc5\x3d\xe6\x25\x94\xfe\x70\xf9\xbb\x21\xf1\x79\xed\xae\x46\x06\x2d\x57\xff\x96\x9e\x0b\x67\x21\x77\xaf\x22\xf7\xbb\xa7\xe3\x8f\xd2\xd7\xc6\xca\x06\xfe\xfa\x58\x11\x26\x03\x1f\x01\x87\xe3\x1d\x57\xe7\xe9\xd9\x95\xcf\xcf\xa1\x6d\x50\x41\xdd\x50\xd9\xc7\xcf\xa2\xcb\x48\x00\xca\x0a\xb5\xf0\x89\x8e\x3c\x6a\xd7\x0c\x4d\xdf\xce\x91\x4d\x74\xdc\x38\xae\xb6\x7b\x29\x50\x08\xf0\x7f\x31\xf6\x29\x54\x9c\x89\x80\x85\xdd\x6c\xf4\x32\xb8\x44\xa6\x55\x78\x1f\x04\x4a\x85\xf7\x81\xaa\x0b\x86\x26\x2f\x4d\x4c\xc1\x29\x1e\x9c\xbb\x65\xb8\xdc\xaf\x3a\xca\xeb\x12\xe8\x95\x35\xe8\xa7\x71\xaf\xe5\xf7\xe7\x05\xd5\x8e\x5c\xe7\x01\x38\x30\xdf\xa6\x35\x9e\x0f\xa4\x7e\x83\xd7\xd0\xec\xec\x6c\x81\xb0\x4c\xef\xab\x30\x3a\x4b\x57\x4a\x26\xc7\x77\xa2\x9d\xd5\x5f\xf2\x4d\xa3\xea\x38\x61\x23\x65\x24\xa6\x84\x47\x85\x04\xd8\xe3\x28\x49\x72\xc8\xb0\xce\x69\x35\x27\x80\x78\x22\x43\xc0\xd7\x1d\x95\x9a\x0a\x4d\xd2\x35\xf1\x1c\x6d\x78\x44\xe3\x20\xde\x95\x16\x5f\x9a\x3e\xfe\x07\x25\xc6\x75\x4d\xc9\x70\xd6\x3b\x77\xc1\x34\xb5\x2a\x19\x13\xcc\xfe\x98\x06\x95\xaf\x55\x56\x30\x1a\x56\xfb\x87\x13\x69\x0e\x5d\xe6\x0b\xed\x7e\x57\x0c\x36\x56\xb2\xa8\x3b\xa7\x6c\xc9\xe6\x36\x5f\x77\x2a\xc3\x59\xfd\x9c\xd3\x26\x5a\x5e\x76\xfc\x53\x3e\x63\x90\x66\xab\x76\x38\xa3\x74\x48\x20\xf4\x0a\x28\x02\xa3\x74\x38\xd1\xaa\x5a\x67\x4c\x99\x17\x59\x64\x34\xb9\x17\x77\x0c\xf1\x4d\xa3\x98\x42\xda\xeb\xe5\x83\x34\xb3\xb3\xe4\x72\x8a\x50\x58\x35\xa2\xd8\x10\x68\x01\x91\x90\xc5\xc3\xfc\xdf\x52\xd9\x76\x76\xbc\xf3\xdd\x2d\x27\x91\x05\x26\x5c\xc4\xfa\x73\x13\x85\x17\x04\x2a\x84\xff\xa1\xe3\x2d\xce\x1f\xe1\xf4\xe5\x4f\x07\x53\xcc\xce\xbe\xe7\x3b\x5a\x09\xff\x8b\xff\xb8\x9b\x26\x69\x7f\x50\x4a\x4a\xd8\xa5\xc5\xab\x1f\x91\xb4\xb8\xd7\x8a\x84\x9f\x27\xcb\x14\xe5\xb7\x6b\xf4\x52\x7c\xdd\x10\x89\x2c\x56\xd1\x51\x01\x87\x88\x1d\xaa\xc0\x63\x56\xce\xab\x57\xcf\x6d\xb6\x16\x85\x36\x7f\xa2\x5a\x9c\x0c\x4e\xa6\x6d\x8d\x3c\xe5\x2c\x08\x77\x64\xc5\x28\x21\xd8\xf3\x48\x1d\x49\x9b\xba\xc7\xad\x9e\xa6\xf8\xc9\xad\xf3\xca\xf7\x17\x3d\x06\x05\x95\xfc\x3a\x42\x04\x85\x4e\xf9\x92\x44\xba\xaa\x86\xf2\x10\x86\x89\x3f\x42\xbd\x00\x38\x4f\xee\x2a\x80\x68\xfa\xf9\x15\x45\x59\x73\x34\xf0\x60\xd1\xa3\x5a\x06\x20\x36\xe1\xea\xac\xaa\xbe\xff\xc9\x58\x65\x3d\xff\x84\xf6\x9d\x13\x37\x70\x2d\x4a\x27\xdd\x11\xf3\x6a\x9a\x48\x6b\x90\xd0\xc4\xd3\xe7\xf1\x99\x0f\x03\xbf\xcb\x7e\xac\x8a\x26\xfd\xcc\xac\x59\xd0\x58\xb9\x44\xfb\xb2\x4f\xb4\x6f\xcf\xf1\x7c\xa1\xfa\x00\x1f\x78\x0e\x1a\xe2\x93\xd2\x75\x9b\x79\x68\x7e\x3f\xe3\xb0\x65\x81\x60\x65\x9e\xd4\x28\xe0\x93\xae\x2e\xd6\x8d\x5e\x7d\xb5\x5a\xe8\x39\xb9\xea\x30\x39\x60\xb2\xc6\x16\xbb\xab\x38\x1b\xbe\xab\xaa\xa3\xeb\x26\x8e\x47\x66\x34\x15\xe4\x9d\x56\x03\xfd\xa1\xce\x6d\xbf\xb1\x4d\x33\x94\x83\x49\x07\x4b\x50\x22\x9d\x2a\x1f\xd7\x47\xdd\x8a\x5b\x69\x02\x1f\xd0\x5c\x1b\x3f\xab\x2a\x75\x71\x9a\x44\x26\x8e\x72\xe6\x5b\x17\xf0\x84\x42\x87\x9f\x53\x3d\x8c\xbd\xd8\xac\x33\x65\x02\x2b\x63\x06\x5e\xcd\x64\x4a\x89\xe7\x2e\x1d\xae\xfc\x0f\xc1\xd3\xfa\x17\x63\x6b\xfa\xa5\xcd\x67\x55\x9f\xef\x0d\x25\xa6\x77\x8f\x9e\x15\xc7\x23\x33\xa3\x63\x55\xdf\x71\x91\xe2\x2a\x84\x50\x68\xf0\xa4\x59\x9f\xbe\x0d\x5e\xc4\x0c\xf9\x1a\x5e\xf9\xd5\x0f\x5e\x66\x8a\xb9\x2a\x1c\x41\x24\x0d\xe2\x0a\x97\xa6\x5f\x76\x5a\xb4\x28\x7b\xc0\x29\x82\x8c\x28\x37\x21\x35\x12\x04\x87\x26\x31\x5d\x91\xa2\x14\xee\x0c\xd5\xea\x75\xc9\x23\x66\x07\x26\x1b\xd9\xbc\xa0\x07\x17\x02\x10\x8f\xeb\x3a\xa3\xe3\xa6\x7b\x81\x4f\x36\x0f\x6d\x16\x0e\x4c\xd2\x25\x8a\x21\x57\x0a\xe0\x14\x96\x0e\xf0\x30\x18\xf7\xa7\xba\x18\xb3\x9e\x0d\x8b\x78\x63\x56\x09\x87\xa1\x16\xeb\x68\xbb\x1c\xf4\x83\xcf\x78\x01\xae\x3e\x23\xd5\xdf\x34\xcf\xa3\x15\x61\xe2\x50\xbe\xdb\x9b\x2a\x7e\x7d\xb3\x89\x1c\xd3\x94\x45\x3a\x74\xe0\x2c\x47\x90\x5e\x3d\x89\x84\x77\x1e\x2b\xd1\x4f\xb9\x60\xcc\xbc\xfc\x48\x3b\xe3\xef\x8e\xa3\xbb\x0a\xf0\xbf\x7b\x35\x2c\x98\x63\x08\x28\x87\x51\x91\x0e\xd3\x99\xd6\x2f\x3f\xef\x03\x48\x17\xb8\xb1\x96\x10\x23\x7e\x55\x60\xd6\x13\xbd\x7b\xa4\x62\x3f\xa0\x22\x38\x5f\x6b\x2e\x2c\x10\xe3\xb6\x14\xa2\x2e\xf0\x32\x59\xcd\xda\xa9\xeb\x69\x56\x0c\x76\x79\x8f\x0b\x82\x0f\xc8\xb5\x72\x57\xa8\x68\xac\xd0\x19\x07\x53\x76\x6e\xec\x11\xf2\xc7\x55\x7d\xe0\x8c\x4b\x93\x87\xa6\x1b\xc5\xb1\x09\x69\x2d\x21\xed\xa0\x25\x29\x39\x02\xc2\x22\x3b\xa7\xea\x53\x23\x92\x95\x75\x4e\x3a\x5c\x48\xbe\xae\x2f\xef\x03\xfb\x3f\xdb\xee\xdb\xa4\x8c\x12\xc4\x88\x8c\xb2\xa4\x79\x17\xc4\xe5\x76\x47\x95\x28\x08\xd6\x64\xa5\x68\x40\x85\x60\x28\xfc\x88\x76\x33\xf0\xe6\x55\x91\x8d\x80\x1b\x7d\x89\xfe\x84\x6a\x7e\x35\xa1\xe9\xda\x61\x14\xce\x2a\x92\xba\x0b\x70\x0b\xe0\x13\xf1\xf9\xc1\x37\xdc\x27\x27\x7e\x4a\x7d\x66\xda\x51\x9e\x97\xf2\x90\x12\xaa\xab\x9c\xd2\x0f\xc6\xcf\x4e\xa7\x0d\x2a\x5f\xff\x85\xfd\x9f\xd5\x47\xde\x25\x85\x06\x39\xae\x4a\xb7\xc7\x35\x0b\xd6\xa5\x5a\x3f\xa9\xac\x56\x52\x22\xb2\xc2\x7e\x28\xd0\x08\x3c\xf8\x54\x1a\x57\x5a\xb4\xb7\x93\x14\x00\xf5\x91\x14\xa6\x9f\x26\x51\x2e\xc5\x4d\xd7\xdd\x57\x7d\x54\x3a\x77\xbc\x45\xb0\xc3\x15\x53\x14\x31\x37\x41\xa3\xe6\x76\x03\x6f\xce\x37\x0d\x0e\xd0\xfe\x76\x5e\x10\x8b\xf4\xa1\x79\x07\x97\x9b\x02\xd2\x6d\x4f\x43\x2e\x2f\xb7\xc3\x12\xbc\xd6\x38\xde\x41\xd2\xc6\xd7\x0d\xc8\x99\xc5\xb6\xc9\x37\xe2\x72\x88\x6e\x02\x29\x89\xb4\x1c\x6d\xce\x2d\x45\xf2\x76\xa9\x56\x95\x39\x34\xcf\x5c\x87\x6b\x36\xcb\xf9\x80\x44\xfa\x19\xe0\x5c\xbe\x56\x5d\x13\xdd\x28\x59\x8d\x84\xf9\x17\xa9\xc8\x0b\x70\x39\x85\xb9\x4b\x35\x6b\xe8\xbe\xaa\xb0\xf2\x8e\xf3\x56\xeb\x8b\xbf\xca\xbb\xb8\x45\xa0\x10\xbe\x9e\x7c\x1c\x91\x44\xbf\x34\x99\x49\x0a\xcb\xd5\x0b\xd8\xd8\x0b\x2a\xa0\x65\x80\x01\xd2\x9b\xb7\x54\x6f\x4f\xcf\x84\x36\x8e\x7a\xdc\xe8\x88\x11\x78\x5b\x8d\xc6\xdb\x4d\x1c\x2b\x61\x1a\x77\xe9\xac\x80\x3f\xf5\x50\xe1\xb7\x18\xf1\x25\xb8\xb2\xc7\x14\xf0\x2c\xdb\xe5\x53\xd3\x7f\x45\x1f\xe1\x00\x20\x50\xaa\x6e\xd7\x60\xc0\x9d\x9a\xa8\x2b\xe3\x72\x38\x24\xac\x2c\x0d\x15\xed\x28\x59\x4b\x23\xaf\x05\xee\x44\xef\xbc\x00\x5e\x53\x4a\xeb\xf9\x76\x38\x28\xb3\x70\xa0\x68\xe1\x27\xf8\x29\xbe\x69\x66\xd0\x2e\x47\x31\x8e\x4b\xc7\xdd\xa5\x89\x0c\x7e\xe9\x05\x77\xe8\x09\x13\xd9\x28\xe2\x24\x22\x42\xf0\x37\x55\x38\xfe\x66\x13\xb4\x31\x25\x89\x6e\x5a\x40\x4e\x8e\x54\x69\x93\x36\xa5\x56\x4d\xaf\x3a\x8d\xa7\x38\x39\x18\x49\xc0\x37\xaa\x20\x63\xfa\x26\x4a\xf2\xe2\x49\x8a\x0b\x78\xbd\x60\xe8\xe1\x17\xb6\x26\xbe\x4f\xe4\xa4\x6e\x15\xbc\x31\xf6\xbd\xbc\x9b\x8a\xc1\xe2\x3a\xa8\xcc\x9c\x94\x7f\xe5\x45\xcb\x5c\xeb\xee\x97\x8b\x0a\x39\x09\x73\x8c\xc0\xfa\x7f\xd2\x29\xdb\xd3\x81\xe2\x30\x67\xe2\x24\xd8\x8f\xd9\x8e\x2a\xd6\xce\x76\x2a\x7f\xcb\xd1\xde\x1e\x10\x4e\x88\x7b\x4d\x68\x63\xe4\x68\xa6\x22\x33\x68\x4f\xf2\xb5\xca\xbb\x86\x69\x42\x4a\xcb\x90\xfe\x70\x61\xea\xb2\xe0\x14\x76\x40\xcf\x53\x60\x84\xd5\x4b\xc0\x54\x5d\xa3\x70\x0a\xb5\xb4\xeb\xba\x42\x7c\x5a\xf3\x3c\x7e\x8b\x86\x0d\x75\x87\xb7\xb0\xf8\x91\x14\x9e\xe2\x1b\x3f\x4f\x27\x33\xa2\x94\xa7\x80\xb0\xe2\xef\xd2\x49\xdf\x28\x5c\x05\x90\x18\xf1\xc1\x43\x45\x61\x35\xad\xb1\xa6\x1a\x85\x36\x55\x07\xe2\x94\x0c\x72\x54\x44\x61\x9a\xb1\x22\x93\x9c\xc0\x0a\x83\x7b\xdd\x89\xf8\x56\x9e\x5f\x9a\x0d\x4d\x12\x3a\x51\x3f\x60\x11\xae\x69\x2c\xfa\x35\x18\x0f\x19\x53\x46\xd3\x53\xb2\x76\xf1\xa0\x08\x0f\x01\x6f\x2a\x2a\x44\x4f\x78\xb7\xd0\x53\x15\xc0\xd1\x40\x69\x82\xaf\x55\xb3\x41\x99\xf5\xb9\xa8\x32\xa5\xed\x29\xf9\x5d\x1f\xb6\xfc\xa7\x7f\xf7\x3f\x6b\x55\x0b\x06\xf0\x7a\xb0\xeb\xf3\xb5\x02\x1b\xf4\x4c\xa6\x60\xa5\xcc\x5a\x27\x38\x49\xbf\xde\x2f\xa9\xc0\xfb\x9a\x6e\x4b\xf9\x6e\x93\x4c\x7d\x9e\x52\x07\x1d\x66\x16\x40\x3f\xe4\xa7\x61\x9f\xa4\x24\xba\x3d\x97\x7c\x68\x7e\x79\x7b\x2a\x17\x65\x9a\x63\x4a\x41\xfb\x58\xa0\x89\xc7\x2c\xc9\xab\x55\x7b\xc1\x21\x54\x1c\x47\xd2\x05\x45\x08\x98\x17\x19\x89\x88\x2f\x8b\x68\x3c\x74\x36\xf8\x5a\x51\x36\x77\x6d\x92\x8a\xca\x51\x8e\xc2\x3a\x0e\x4d\x24\x57\xe0\x3e\x7c\x0b\x1b\x1e\xb3\x78\x56\xd5\x29\x4d\xb8\x9a\xa4\xeb\xb1\xed\xf6\x85\xc1\x0e\x4b\x9d\xf1\x36\x2e\x2a\x73\xf2\x91\xc7\xd5\x54\xc4\x51\xf8\x28\x16\x97\x8b\x67\x9c\x57\x71\x72\x1a\x42\xe8\x41\x87\x7f\x8b\xd2\xbc\x4e\xee\xbc\xfa\x49\xd1\x6e\x53\xed\x75\xf8\x79\xec\xda\xc7\x90\x32\x02\x28\x08\x93\x83\x5a\x94\xe6\xe7\x1c\xd9\xfc\xd1\xea\x8b\x85\x51\x44\x53\xce\xd3\xaf\xc3\x37\xdc\x83\x1c\x0c\xb9\x98\xbf\xda\xee\x78\xb6\xb2\x7f\xfe\xff\xef\xd4\xb6\xa0\x24\x3f\x5d\x67\xc1\xdc\x2f\x4e\x94\xd3\xbe\x6b\xa2\x82\x61\xcf\x38\x1c\x9b\xa4\x9b\xc7\xa4\xfa\xe6\xf8\x31\x90\x55\x86\x0d\x00\x79\xb0\x88\x9b\x6d\x97\xc9\x5a\x5a\x6a\xf7\x2b\x47\x26\x19\xda\xa4\xe0\xc6\x59\x71\x78\xab\xef\x10\xa7\xd6\x47\xd5\xd6\x64\xc5\xe0\x6b\xa5\x59\xb5\xe0\x49\x05\x88\x0b\x6e\x3a\xd0\xaa\x5b\x63\x95\x01\xfe\xa6\x42\x85\x5c\x23\x00\x37\xab\x98\xe0\x14\xc1\x12\xb9\xa6\x66\xf9\x97\x16\x72\xa4\x33\x29\x07\xf8\x85\x4f\x23\xb3\xcf\xda\xc7\xec\xb1\xa2\x11\x92\xd5\x13\xe8\x1b\xfe\xef\x9f\xa7\x58\x07\xd5\xf6\xab\x53\xfd\x6f\x71\xf1\xf9\xd6\xb4\x22\x0a\x7d\xbd\x1c\xa3\x3e\xcd\x14\xc6\xe5\xca\x94\x3c\xc3\x09\x3d\xad\xb7\x54\xef\xfb\xf9\xda\x38\xc2\x29\x0c\xe3\x32\x8f\xd6\x2c\xe3\x78\xa5\x19\xaf\x1a\x7f\x69\xd2\xf3\xaa\x3b\x59\x14\xda\x5d\xaa\x1e\x71\x9d\xdf\x8d\xef\x82\x29\x89\x52\xd7\xc4\x74\x42\xc9\x3d\x9c\x98\xca\xed\xaa\x6d\x6f\xba\x6b\x95\x29\x46\xa7\xb2\xcb\xe6\xf9\x6c\xec\x29\x00\x7a\x30\x73\x5b\xaa\x55\x0e\x7c\x06\x5a\xad\x48\x72\x84\xb4\x9f\x5d\xb9\xbe\x3a\xee\x14\xbc\xfa\x45\xa7\xe9\xe3\x33\xc2\x2b\x71\x99\x14\xa2\x1b\x0c\x7b\x79\x4b\x29\xa1\xdd\x6a\x00\xce\x2e\xb7\x8b\x2c\x5a\x93\xb4\xb7\xdb\xa5\xae\x93\xfe\x7c\xf0\xa9\xed\xd5\xd5\x45\xf2\xd9\x1e\xab\x76\xa2\x48\x91\x61\x14\x85\xfa\x8e\x1e\x15\xae\x0a\x73\x00\x61\x8d\x5e\xd5\x2c\xbd\x37\x68\x5d\x62\x97\xdd\xa3\x81\x87\x27\xfb\x97\x34\x75\xc8\xd3\x20\xe6\xc2\x90\xb1\xdc\x84\x6e\xbc\x14\xaf\x47\x85\xcf\xae\xa6\xf4\x72\x1a\x25\xbb\x15\x19\xce\x59\xad\x20\x77\x9e\x1c\x28\x00\x8c\x76\x77\xa6\x34\x91\x68\xf1\xc1\x0c\x11\x19\xec\xd6\x05\x45\x37\x71\x4e\xa5\xf8\x9c\x3e\x2d\x5c\x4a\x37\x72\x7e\x14\x9d\xd0\x5f\x98\x96\x59\x31\xa3\xd5\x18\x7e\xa6\x54\x0f\x38\x2e\x40\x54\xba\x63\xa2\xb6\xc6\xab\x36\x1c\x68\xc0\xed\x07\xaa\x56\xfe\x81\xfb\xf6\x81\x8d\x92\x57\x75\x9f\x9e\x2e\xe5\x6d\x06\x8f\xf9\xa6\x2d\xce\x81\x00\x2d\xc1\x34\x42\x7c\xd3\x2c\xe1\x99\x6c\x50\xbc\x20\x4c\x55\xbe\x13\x64\x8a\xb9\x81\xa3\x61\xa9\xea\xb5\x9c\xa8\xf6\x0d\x82\x06\x48\x73\xa5\x6f\xc6\xc8\xad\x7d\xbc\x9a\x64\xfc\xd5\x35\x1a\x60\xac\xd0\x9d\x54\xf7\xc0\x91\xb0\xb3\xa3\xb0\x3c\xf7\xc7\x8a\x34\xfd\x6d\x62\xe8\xc1\x9e\x3d\x06\x9f\x55\xe8\xe8\xbc\xd8\xf3\x91\x40\xf7\x86\x6e\x01\x6f\x05\x9f\x77\xe7\xc4\x87\xf2\x57\xe0\x71\x8b\x10\xba\xaa\x12\x6e\xd6\xca\xca\x87\xe6\x5f\x6c\x0f\x4d\x94\xf4\x32\x33\xe4\x24\xb5\x1c\x84\xea\x50\x6c\xa2\x29\x5c\x4f\xb3\xd5\x19\xcf\xbc\xc8\xcb\x0c\x37\x58\x33\x98\x87\xab\x0d\x32\x02\x45\x49\xea\x42\x9e\xd2\xeb\x92\xee\x08\xba\x54\x83\xa2\x1c\xfc\x2a\x8a\x6f\x16\xd1\xbc\xae\x42\x89\xd5\x9a\x6a\x2f\xcd\x8b\x2c\x2d\xf3\x16\xb9\x80\x28\x16\x00\x44\xca\xd7\xb5\x50\xbc\x72\xa5\x46\x36\x8c\x4c\xec\x9a\xa4\x70\xba\x5c\xd6\xba\x1c\x97\xa7\x3a\xf6\xd3\xdc\x3e\xab\x38\x4f\x8f\x8e\x55\xea\xef\x21\x16\x22\x06\xe3\x7d\xda\xfd\xc8\x07\xdf\x0a\x3c\xaf\xaf\x60\xb9\xe0\x8b\x3f\xda\xa1\x6c\xa1\x2b\x93\x54\xf6\x06\xee\xc9\x9b\xf0\xe5\xf1\xa1\xab\x88\x87\x60\x7c\x2e\x63\xcc\x55\x01\xf7\x45\x4e\xc2\xdc\x1c\x4f\x73\xea\x1c\x9a\x67\x5f\xfb\x26\x8c\x17\xeb\xd0\xd3\xa0\xd0\x98\xff\xc6\x93\x14\x99\x39\x7e\xba\xc5\x83\x1c\xa0\xec\x9d\x78\xf0\xec\x77\xe1\x54\x53\x64\xf3\xf5\xbd\x90\x8c\x16\xd1\x6d\xa7\x3f\x36\xc8\xca\xbc\x98\xf3\xb4\x29\x17\x75\x52\x82\x19\xce\x11\x71\x9c\x57\x7b\xff\x08\x8e\x71\xac\xf9\xff\xab\x89\xf8\xa7\x17\x65\x76\x68\x12\x34\xdb\xc2\xc1\x9b\x9d\x78\x14\xcc\x6c\x47\xc3\xa2\xf2\xc2\xc4\x31\x14\x34\xe9\x07\x85\x77\xbe\xe5\x39\xe8\xa7\xf0\xd7\x3d\x9b\x74\x1f\x69\xb9\x86\x59\x56\x69\xc6\xd6\xe2\x88\x4b\xa4\x8a\x15\x73\xf5\x85\xb1\xe7\xa9\xd8\x81\x20\x0b\x25\xa3\xb9\x8e\xef\xdd\x9b\xa1\x81\x15\xb6\x1e\x9a\x23\xfe\xaa\xda\x32\x5f\x3c\xd8\x1e\xa4\x45\x61\xf3\xa2\x45\xb3\x8c\x13\x03\x85\x3e\xbe\x6e\x90\x50\xa0\x86\x7a\x9c\x90\x8b\x6c\x28\x7e\x82\x83\x85\x6f\x9c\x59\x1d\x5a\x5b\x30\x56\x0d\x5f\x87\x7a\xb4\x2a\xab\xef\xf7\xbb\xb9\x7a\x67\x69\xe1\x6c\x52\x8c\x71\x45\x57\xdf\x71\x87\xf1\x85\xeb\xf8\x11\x91\x86\x39\x31\x6f\x17\x32\xde\x53\x1c\x8c\x59\xb4\x66\xdd\xd9\xae\x3b\x20\xc5\x0e\x48\x96\xa3\x17\x86\xe4\x95\x4e\x35\xe2\x23\xa6\xdf\xd9\xc1\x2e\x92\xb0\xcf\x7f\x7b\x31\x48\xcb\xfe\xa0\xd8\xd3\x72\x3c\x1d\xcc\x0b\x28\xb2\xca\x8a\xb2\xf0\x3a\x0d\x84\xf0\x7c\xe2\x1b\x05\x68\xdc\x72\x3c\x72\xef\x69\xc5\xe1\x4d\xdd\x1e\x7c\x6e\xaa\x64\x53\xc4\xf6\xe9\xea\xfb\x70\xfa\x33\x0d\x1c\xdf\x50\xb4\x80\x20\xf2\x06\x19\x03\xf7\x6d\xd5\x57\x23\x41\xc5\x5c\x49\x58\x8b\xb7\x50\x25\xe5\x7f\x21\xc7\x00\xa9\xbf\x27\x20\xa9\x86\x8d\x75\x4b\x67\x64\xe6\x28\xd8\xc0\x92\x63\xb3\x20\x31\x3e\xd9\x95\x29\xca\x78\x6c\x39\x39\x5a\xdc\xc2\x5e\x5a\x62\x27\x05\xe4\x26\x9c\x46\x43\x49\x43\x3a\xcc\x69\x91\x49\x67\x9a\x17\xe4\xce\xcb\xbc\x30\x51\x02\x81\xb1\xc5\x83\xde\x39\x3a\x20\xe0\xe2\x7a\xba\x96\x52\x66\x89\x7d\xa5\x50\x15\xc0\xf3\xf4\xb2\x7c\xad\xbe\x3f\x8b\xfa\x83\x62\x60\x92\x2e\xb7\x27\xe3\xa5\x4f\x8f\x7d\x7e\xea\xb4\x0b\xf8\x87\x5c\x76\xa3\xa1\x42\x06\x05\xec\xa0\x78\x6d\x14\x3b\x05\x90\xd3\xd0\x23\x36\xca\x54\xee\x0f\x0b\xe7\x8c\xe2\xb7\x39\x53\xc3\x23\x7c\xa1\x5d\xd8\x70\x90\xa4\x71\xda\x07\xa1\x3b\x7b\xfa\xc1\x14\x79\x44\x43\x66\xce\xc4\xd1\x1a\x62\x2f\x91\x62\x6e\xb9\xd6\x78\x00\x12\xe1\x1d\xbc\xed\xfa\x4b\xed\x9a\x4d\x8a\x92\xa0\xba\xd5\xd0\x36\x62\x3f\xf7\x2a\xe7\x2e\xac\x02\x34\xcd\x21\xf9\x8e\xf6\x0d\xde\x51\x25\xeb\x38\x4a\x6c\xbe\xcb\x1b\xcb\x0f\x68\x98\xa4\x4a\xaa\xf6\xcd\x29\xda\x37\x2e\xf1\xef\xe3\x38\xe4\xe0\x70\x02\xdc\x50\xf4\xb6\xbd\x28\x21\x70\xcf\xac\x13\x60\xe3\xfe\x29\x47\xf9\xbc\xe0\x54\xeb\xc7\xaa\xc7\xaa\x96\xcb\x5c\x5a\x6a\xc7\xd4\x67\x44\x96\x12\x60\x20\xb4\xf9\xf3\xb5\x82\x30\xe5\x69\x2c\xb1\x14\xbb\xf0\x4a\xa7\xce\x93\x03\x75\xd3\xb0\x48\x45\x41\x59\x4c\x90\x32\x47\x4d\x58\x1c\x34\x5c\x4a\xb2\x4a\x08\x90\x94\xf1\x9c\xb8\xa5\x38\xa8\x86\x5f\xec\x34\xe6\xf2\xa6\x16\xb6\xb8\x39\xd6\x1a\x1f\x65\xe5\x8d\xb4\x74\xa6\x3f\x50\x44\x42\x17\xd4\xdf\x66\xd5\x3a\x28\x2d\x72\xae\xd8\xa7\x17\x03\xc5\xea\x7f\x89\x4e\x73\x84\x7a\xbb\xe0\x65\x60\xcf\x7e\x7b\xec\xc9\x8d\x39\x06\x14\x6a\x74\xdd\xa8\xc8\xed\x50\xc0\x2f\x6e\x05\xe4\x02\xc0\xf6\xbe\x85\x63\x06\x5e\x15\x17\xe0\x85\x6c\xa7\x9a\x3b\xac\x11\x50\x27\xb0\xe8\x3d\xcc\x14\xd3\xb9\xa3\x0f\x01\x5e\xce\x1f\x92\xcb\x8c\xa5\xff\x28\xb9\xcc\xd8\x61\x8f\xa9\xb6\xc5\x51\x66\xc2\x22\x0a\x51\x87\x77\x49\x7b\xd8\x34\x6c\xfc\x1b\x4a\xe4\x56\x13\x47\xdf\xf0\x0d\xbb\xc5\x46\x65\x10\x66\x15\xf8\x6a\x53\x37\x9a\xff\x76\xd0\xda\x46\x35\x21\x1d\x8b\x0d\x5d\x4e\xd1\x90\x9a\xf8\xa9\x05\xc1\x61\x73\xaf\xe8\xfe\xaf\x1a\x11\xe4\xd2\x52\x3b\x33\xf9\x6a\x1a\x27\xd1\x6a\xba\xf6\xf1\x70\x45\x9f\x52\xeb\x99\x6c\x68\x99\x8b\x05\x2e\x35\xd6\x39\x5f\xd7\x9e\x0b\x95\x94\xd8\x8c\xbc\x5e\x39\x5e\xe1\xde\x14\x05\x77\xcb\x11\xb4\x9d\x57\x71\x4c\x92\x0d\x5b\xaa\xb3\x86\xfb\x21\x45\xfd\xe6\xe3\xa4\x38\xd7\xc9\x24\xb7\x3c\xde\xfb\x4d\xbc\x0c\xdf\x04\xcf\xf8\x52\x6e\x5a\xd9\x63\xd6\x36\xdf\x27\x6a\x15\xe0\x61\xe5\xeb\x1a\x1b\xcd\xf2\x72\x7b\x60\xe3\x11\x11\xbf\x48\x5b\x90\x5a\x46\x67\xc9\x4e\x60\x8f\x32\x3f\x35\x52\x46\xf5\xc8\xa3\xda\xb0\x69\x8a\x2a\x22\x67\x1b\xf1\xa0\x92\x7a\x94\x55\xb2\x92\x96\x94\x83\x9e\x92\xc8\xa9\xb6\x94\x74\xa3\x6e\x37\x47\x0b\x0b\xed\xae\x1d\x15\x1c\xdb\x36\x49\x21\x36\x95\x0f\x21\x99\x8a\xc3\x05\xcf\xfc\xa6\xc2\x6e\xd6\xe1\x09\xa4\xed\x3c\x88\x46\x23\x41\x26\x63\xbf\x1e\x56\xb2\x06\x87\x55\x32\x36\x4c\x87\x23\xf3\xb5\x59\x0f\x9c\x38\x0f\x5f\x82\xd9\x40\x95\x00\xd0\xfb\x9a\x9d\xf0\xbc\xee\x76\x4e\xc2\xb4\x6f\x13\x9b\x93\xa4\x18\xb6\x05\x57\x7f\x54\xe4\xe6\x3d\xb6\x6a\x4e\xf9\xaf\x94\xa3\xd7\xb5\x50\xdc\xf5\xcb\x16\xc5\x40\x91\xcb\x7f\x5a\x91\xbd\x84\xa1\xcd\xf3\x5e\x19\x3f\xa2\xf6\xe1\xd8\x4b\xfe\xb4\x3a\x8a\x10\xeb\x14\xde\x87\x6f\x02\xd5\x28\x79\x8d\x9e\x04\xf1\x0f\x17\x1b\x9c\x62\xdc\x81\x79\xa9\x31\xdf\x41\x34\xc5\x37\xa0\xfc\xe6\x65\x5a\xf6\x07\xab\xd6\x8e\xf2\xc8\x22\xe2\x10\xf6\x06\x58\x46\xbe\x53\xb5\xfe\x9c\x18\x7d\xfa\x1b\x8f\xd2\x6f\xc1\xcd\xb9\x33\xf6\x76\xec\x0c\x59\x23\x26\x9f\x0f\x94\xe7\xf6\x0e\x6d\x66\x84\x87\xef\xe2\x15\xf8\xd3\x81\x66\xa5\x1f\x7b\xed\x81\xdb\xe3\xe9\xfc\x80\x53\x92\x38\xa6\x0e\x5a\xb3\x62\x0b\x5f\xea\x70\xf1\xde\xb2\xd4\x13\x2e\x34\xb1\x01\x3a\x42\x30\xbc\x25\xcb\x64\x06\x0a\x14\x71\xf4\x63\x71\x2c\xa3\x32\x09\x07\xdb\xda\xbc\xd9\xeb\x91\x44\x92\xcf\xea\x21\xe2\xca\x35\xed\xec\x05\x55\xc1\xbb\xd0\x90\xd5\xfb\x52\x3b\x8c\xa3\xe1\x8a\x1c\xa0\x30\x2d\x10\xcf\xe3\x6b\x25\x45\xbe\x66\x8b\x74\x17\x7d\xb9\xa3\xa7\x3d\x24\x31\xf8\xcc\xa4\xa5\x9a\xf5\x68\x8c\xf9\x1f\x3a\x1e\x0a\xff\x4d\x9c\xa0\xfc\xe9\xc0\xf7\xe5\x15\x99\xe9\xda\xee\x9c\xee\x46\xa7\xdf\x41\xe6\xed\x49\x25\xf3\x05\xaa\x3e\x4e\x20\x62\x20\x10\x03\xec\x76\x7d\x85\x79\x99\x65\x96\x1d\x0e\x34\x92\x20\xdc\xe0\x6b\x4d\x0c\x56\x48\xb6\xcd\x89\x7a\xff\xb2\x84\xb5\x67\xb4\x08\xe2\xfd\x26\xf1\xd0\x61\xda\x8d\x7a\x8e\x40\xdc\x71\x84\x54\x1b\x49\x78\x41\xe4\x91\x1c\xd2\x6d\xd9\xc9\x8c\xfe\x6b\xf5\x4c\x1c\x34\x88\x86\x3f\x1e\x09\x2e\xc4\xce\x1a\x59\xe2\x81\xf9\x76\x68\xb2\x2c\x92\x22\x93\x28\x17\x2a\xfe\xc6\x8f\x14\x3c\x73\x2d\xb2\xeb\x39\xa0\x06\x48\x95\xa3\x76\xa4\x4a\x23\x8b\x4e\x2b\xdd\x6f\xbc\x22\x8b\x86\x43\xc7\x27\x8e\x3f\xfe\xc7\xca\xc5\xff\xc7\x35\x17\x7d\xf1\x60\x7b\x94\xd9\xd0\x76\x2d\xb3\xfc\xb0\xfe\x7f\xe0\x77\xeb\x11\xfd\x03\xe6\x15\x34\xd6\xd1\xe0\x61\x81\xde\x54\x40\xee\xdb\x58\x43\x7c\x13\xa8\x25\x7d\xb3\x96\xde\xaf\x0c\x78\xd7\xae\x99\xbc\x50\x94\xe9\x70\x57\x90\x27\xe4\xeb\xce\x36\x06\xbb\xea\x73\x2f\xec\xc7\x9f\x0b\x63\x44\xcb\xf1\xfb\x5d\x74\xd9\x97\x8d\xc8\xc6\xdd\x7c\x97\x82\x18\xdd\x57\x60\x07\x3e\xc3\x44\x0e\x95\x9e\x94\x4c\xf0\x97\x9f\xea\x4c\xc1\x20\x5a\x8e\x53\xf8\x5e\x93\xfc\xa9\xd7\xb2\x40\xb6\x74\x2f\xf2\xcd\x7c\x33\x69\xe2\x47\x5a\x8f\x72\xab\xc0\x86\xc0\x60\x8a\x4f\x58\xc7\xee\x2c\x23\xc8\x9b\xf1\x85\x7c\x60\x1a\x9d\x7a\x97\xdb\x30\xef\x35\x50\xa5\x3d\xdf\xce\x6c\xdf\x40\x37\xb5\xa5\x59\x52\x7d\xde\xfe\x9c\x72\xb0\xba\xd6\x14\x83\x5c\xcb\x83\x7d\xa8\x7e\xec\xc3\xda\x08\x7c\x65\xb1\x0d\xa6\x3b\x17\x9e\x40\xa9\x99\xaf\x3b\xca\x08\x47\xf1\xd0\x26\x45\x3e\xcd\xd3\xeb\xc8\x55\x01\x1b\x85\xb5\xa8\x3b\x57\xd4\x0f\x18\x65\x61\x19\x7b\xbd\x6b\xe0\xd9\x19\xda\xc2\x37\xea\xc0\x5f\x4d\xd2\x75\x49\xac\x3a\xde\x8c\x05\xc7\xdd\x0e\xd6\x79\xfa\xcb\xff\xfa\x31\xfa\x3e\x64\xa2\x1e\x9d\x28\xbd\x64\x4e\x64\xc2\x77\xbf\x4f\xeb\x9c\x31\x05\xbc\xdb\x45\xc6\x86\xf8\xcd\xd0\xf9\x8c\x94\x0f\xb3\x10\x8a\xb4\x8d\x47\x7d\xee\x44\xd4\x01\xe7\xfe\x2d\x5a\x90\xd8\x9b\xd0\xb3\xc1\x96\x3b\xd1\x94\xf4\xa3\x9e\x3e\x96\x23\x45\xcc\x01\xa1\x47\xbe\x76\xeb\x1e\xc0\xb8\x59\xd5\xf0\xf7\x06\x5e\x83\xe1\xdc\xb4\xa2\x91\x9b\x65\xcc\x04\x32\x9d\x77\x1d\x21\x59\x6c\xd7\x22\x9a\x51\x27\xad\xec\xf5\xf4\x8e\x37\x69\xd9\xae\x8f\x46\x2d\x5f\x5f\xfe\xd6\x58\x75\xab\x7d\x4b\xa9\x41\x86\x83\x2c\xca\x8b\xc8\x24\xb3\x5e\xe9\xfc\x67\x9a\x4f\xec\x9c\xa2\x7a\x3d\xa7\x09\x8c\xa7\x44\x96\x6d\xa2\x9c\xa7\xc3\xca\x79\x3a\xac\xd8\x08\x8b\xcc\x84\x18\x2b\x46\x4d\xe1\xd4\x11\x08\x95\x47\xa2\x88\xda\x33\x15\xf4\x15\x2b\xba\xbb\x51\x74\xa2\xc4\x19\x21\x55\x76\x2c\xf1\x27\x50\x2a\x41\x78\xb9\x6b\xe2\x61\x27\x9b\xdb\x90\xcb\x1b\xbb\xa7\x58\x45\x5a\x8e\xd4\xe2\x48\x50\x63\x18\x11\xe6\xfc\x6a\x45\xe0\x0c\xbe\x4d\x81\x2b\x5f\x63\x7c\x45\x7d\xfb\x93\x4a\xf4\x38\x5d\xb5\xc9\x2e\x5f\x1b\x3d\x41\x0b\xc4\x81\x65\x3c\xcc\x04\x49\x2d\xfe\x23\x58\x42\xc7\xd9\x78\x68\x5e\x3e\xa1\xec\x42\x68\x2a\x43\x37\x47\x4f\x2a\xc2\xef\xd5\x77\x63\x23\xbf\xa7\xfb\x13\xd1\x1b\xc8\xe2\xab\x81\xea\x64\x78\xa0\xfa\xd3\xb2\xcc\xc6\x33\xba\x48\xe6\xb3\x36\xf0\x14\x25\xa2\xf3\x20\x14\xaa\x7a\xb4\x34\x25\xf1\x3b\x1a\x86\xf2\x4e\x2d\x0e\x39\x30\xdf\xee\x46\x09\x9a\xa7\xf6\xbb\xc3\x9d\x5e\x01\x2f\x78\x1b\xb6\x43\x86\xe1\x09\xdd\xe7\x55\xb0\x92\xb7\x86\x54\x49\xc7\x4b\x53\xd7\x41\x3f\x4a\xfa\x36\xe3\xf4\x93\xa8\xaa\xf8\xcc\xe1\xc7\x60\x73\xc3\x38\x2d\x06\x96\x29\x98\x91\x2e\xb8\x1e\x68\x88\xb8\x8f\xce\x7e\xda\xd0\xec\xb0\x38\x1d\x01\x61\xb7\x9f\x54\xa7\xe1\xc9\xc6\x74\xb5\x34\x4f\xb6\x14\xb7\xcc\x39\x4e\x7a\x4a\xc6\x68\xfb\xe7\xbc\x6c\x6c\xcc\x02\x2a\x58\xc9\x97\x74\x55\xe8\x92\x0a\x02\x28\xc3\x16\xb1\x50\x6a\x63\x58\xff\x71\x9d\x8e\x7f\x2d\xde\x7d\xc5\x3b\x1a\xc5\x29\x83\x2b\x31\x41\x6f\x68\xf6\xd3\x37\x6a\x65\x3e\x0a\x1c\xd3\x10\x6d\x13\xad\x29\xa9\x1c\x35\x5f\x0e\x87\x95\x97\x2b\xb9\xfd\x5a\x69\x93\x22\xde\x98\x51\xed\x0c\x20\x15\x15\x0c\x85\x87\x1b\xdd\x68\x82\x73\x5a\x9b\x86\x8a\x95\x86\x2d\x24\xdf\x28\xfa\xfe\x61\x14\xdb\x7c\x66\x3b\xba\x1f\xa8\x9b\x2b\x1a\xe4\xbb\xa3\x26\x46\xe1\xfa\x44\x87\x3c\xaf\x2c\xa7\x40\xab\x41\xa4\x15\x1a\x8e\x95\xf5\x28\x49\xb6\x21\x3a\xef\xa9\x76\x93\x7b\xaa\x7d\xc4\x44\x43\x76\xf7\x51\xe9\xc2\xf2\xe4\xaa\x01\x5e\x09\x35\xfb\xbb\x08\xd7\xa6\x30\x02\x68\x73\xbc\xdd\x10\xcd\x54\x1e\x28\xe9\x7b\xb4\x14\x5b\x89\xea\xcf\xda\x74\x55\xff\xc2\x84\x2c\xe3\xc7\xb4\xac\xf4\x00\x42\xd1\xba\x1d\xba\x4b\x1a\x20\x26\x2b\x88\x88\x54\x5c\x4c\xa9\x97\xbd\x3b\x56\x6a\xbb\xef\x06\x5a\xe7\x2b\x29\xcc\xee\xca\xf2\xa2\x90\x73\x3f\x50\x00\xa7\xe3\x81\x42\x03\x1c\x67\x27\x80\x9b\x4e\xc6\xca\x23\x3d\xaa\xba\x8a\xdf\xa3\x57\x11\xea\xd8\xa6\x16\xd4\x7c\x54\x12\x39\x9f\x2f\x8e\xb3\x62\x8d\xa0\xb3\xeb\x55\xe3\x2e\xe5\xaf\x7d\xa7\xd2\xf7\x74\xd7\xec\xf7\x6a\x80\xda\xa5\xa5\xf6\x4a\xe6\xd5\x46\x61\x9c\xd1\x55\xc4\xd7\xea\x44\x94\x4e\x49\x40\xf5\x61\xa0\x59\x76\x98\x4b\x82\xaa\x03\x95\x8b\x2d\x52\x2b\xd4\xbd\x49\x49\x61\x87\xa3\x34\x33\xd9\xc6\xac\xe7\x52\xb9\x86\x08\x01\xee\xee\x29\x38\x26\x02\x6c\x68\x39\x42\xce\xdd\x4d\x14\x60\x2b\x65\x14\x77\x5d\x1e\x0f\xcf\x8d\x5a\x3f\xc2\xbd\xdd\x4a\xb3\xfb\xb4\xef\x3e\x8e\xcd\xe7\x67\x74\xf7\x82\x47\x66\xbe\x8f\x41\x13\xb6\x74\xe5\xa8\x44\x7d\x93\xd9\xa2\xc0\x8a\x74\xd5\x4e\xcf\x65\xb1\x19\x78\x62\x9b\x6e\x44\x12\x30\x09\xc8\xf8\x05\x56\xf5\x3d\x0c\x98\x50\x45\xd2\x20\x09\x25\xb7\x97\x0a\xfd\x9e\x26\xa4\xb0\x49\x77\x97\xef\x00\xb9\x35\x56\x5e\xc6\x87\x9a\x5a\xf0\x43\x18\x02\x06\x5e\xb0\xdd\xd6\xa2\xd6\x88\xd4\xaf\xaa\xaa\x6e\x98\x0e\x57\x4c\x31\x25\x14\x33\xf6\x25\xde\x4d\x57\x15\x2d\x52\x47\x71\x81\x90\xe9\xb6\x6a\xc0\xbd\xed\xf1\x71\x69\x9a\x5b\x6f\x35\xa4\xbf\xcb\x27\x6f\xee\xd4\x72\xbd\xfb\x96\xdb\xa6\xfb\x72\x5a\x02\x15\xa7\x05\xdc\x02\xd5\xb9\xe5\xc9\x6b\x8b\x2c\x2d\x57\x62\x9b\xa7\x43\x3b\xeb\x5d\x4b\x74\xdf\xc0\x94\x20\x9a\xc3\x2a\x3c\xae\x59\x8f\x2e\xd6\x2c\xf0\xc2\x42\xdb\x64\xc3\xa9\xc5\xbf\xa9\xbc\x14\xcd\xab\x5d\xd8\x6c\x98\xef\xa1\xd7\x42\xfd\x6f\x3f\xbd\x16\x32\xc5\xac\x00\x21\x9e\x2d\x25\xcc\x84\x1e\x73\xc6\xeb\x3b\x7e\x4b\x69\x53\xfc\xa9\x06\x26\x5d\x53\x3a\xab\xa7\xb4\x0f\xba\x6e\x95\x81\x72\xcb\x44\x51\x8d\x6e\x77\xba\xf7\x2d\xb7\xbb\xa6\x50\xbc\x0f\x3f\xc1\xef\xf0\x8d\xeb\x65\x2e\xf3\x32\x37\x31\xc5\x5c\xae\xd5\xde\xf5\x01\x81\xbc\x5a\xb2\x42\xae\xd3\x9e\x42\x40\xda\xb2\xe0\xec\x7d\x77\xac\x60\xf1\x8f\xd1\x0c\xc0\x30\xc3\xdd\xc5\x39\xf1\xbe\xca\x18\x96\x89\x29\x8b\x41\x9a\x11\x80\x44\x6d\xd6\x4d\x8d\xc4\xd5\xc8\x25\xb3\x4e\x29\x55\x1c\xa0\xc7\x01\x30\xe3\x1b\x7a\x44\xb8\xba\xd7\x55\xe5\xed\x7a\x53\xaa\x3f\xb3\x5d\x6b\x87\xa8\xb5\x3a\x8a\x94\x8f\x94\x3e\xd9\x47\x4d\x8d\x44\x99\x89\x5c\x0c\xcf\xd0\x49\x4c\xb3\xe0\x28\x3d\x08\x30\x4a\xa2\x22\x32\xf1\x2e\x45\xb8\xca\x35\x46\xb8\xab\xc7\x34\xed\xd3\x9f\xd2\xdb\xa2\xd8\x3c\x03\x41\x47\x78\xaa\xe7\x15\x7f\xe3\x9f\x05\x9f\xf2\x28\xd0\xa4\xb0\x59\x61\x22\xda\x21\x88\xdf\x44\x38\x49\xeb\x0b\x7e\x5d\x2b\xe3\x1f\xd7\x15\xc8\xaf\x7b\xba\xdd\xf4\x95\x28\xf4\x75\x57\xe1\x50\xd3\x84\x6a\x0a\x95\x0e\x19\x82\x28\xdc\x5d\xc5\xc7\x58\x71\xcc\xfc\x2f\x7d\x93\xfe\x81\x6f\xa9\x46\x70\xce\xe4\x09\xb3\x73\xcb\xf1\xf2\xfc\x04\x15\x7c\x38\xd6\x77\x83\xed\x99\x9f\xc5\x83\xcc\x15\x6b\xc2\x22\xe5\x88\x16\x81\x1e\x0a\xbd\x7c\x3d\x51\x92\xb5\xe6\x95\x75\x1b\xc7\x9c\xf6\x63\x56\xae\xb1\xea\x60\x60\x37\x14\xb9\xe8\x5d\x1d\x9f\x6e\xef\xa1\xe8\xdd\xf2\x39\x4f\x80\xaa\x45\x38\xe1\xe3\xca\x38\xa1\x49\x42\x9b\xb5\xf4\xe4\x2a\x20\xd7\xb1\x5a\x53\x58\xe5\x55\xae\x44\x69\x3f\x33\xa3\x41\x14\x72\x1e\x53\xf1\x70\xed\x77\xeb\x7e\x0a\x38\x65\x0a\xf8\x94\xa8\xf7\xfc\x8c\x06\x1a\x33\xf0\x33\xaa\x73\xc3\x07\x39\xa3\x68\x01\x46\x59\x5a\xd8\xb0\x40\x4b\x02\x0e\x3e\x12\xe5\xe6\x35\x70\x37\xd0\x85\x05\x05\x9a\x3f\x81\xb5\xc9\xfc\x64\xcd\xe1\x88\x09\xc3\xb4\x64\xeb\x2c\x24\xc1\x1e\xbd\x73\xb5\xb1\xdd\x7a\x2d\x4a\x63\xc7\x4a\x82\x34\xcc\xbb\x8a\xb7\xf8\xdd\xa9\xea\x6c\x68\xa3\x35\xbb\x9b\xde\x58\x18\xf4\x68\xab\xe1\x80\xb9\x0b\x2b\xce\x37\x14\xfd\x62\x6d\x31\xd1\xbb\xeb\xa7\x5c\x3c\x28\xff\x30\x56\xc2\x04\xff\x26\xf0\x87\x69\x5c\x66\x0c\xe1\x73\x28\x5c\x47\x61\x7e\x49\x35\x2c\x64\x29\xa8\x6a\xf0\x2f\x77\xa9\xaf\x08\x47\xf3\x9f\x8e\x7d\x2c\xff\xf4\xc4\x0b\x79\x5c\xd0\x3e\xcb\x03\xdd\xa6\xf9\xe9\x8e\xc2\x7d\x8c\x6c\x58\x98\x90\xe8\x51\xe9\xd9\xa7\xf8\x3a\xa4\xf9\xd4\x47\x9c\xc5\x20\xb3\xf6\x93\x74\xa0\x08\xbf\xd2\xb6\x7a\x9b\x20\x7e\xef\x60\xc4\xb8\xf8\x87\x11\xdb\xcb\x74\x17\xd5\x53\x3a\x42\x14\x6f\x3f\x4e\x63\x3b\x3a\xad\x35\x07\x2b\xb8\xa4\x39\x43\x3f\xd0\x5b\xe8\xa7\xf4\xf6\xc8\x8e\x7e\x43\x31\x01\xff\x1f\x63\x2f\xab\xf0\x07\xb0\x11\x70\x9f\x7e\xec\xce\x8f\x30\xca\xc2\xd8\xce\xa8\x3e\xe3\x6f\x8e\x7d\xe6\xf1\x0f\xc7\xca\xab\xfc\xbe\xc7\xa6\x94\x49\xd7\x24\xc0\x7c\x00\xc3\x07\xd9\x4c\x1c\x3a\x3b\x26\x0a\xd4\x7d\x49\x35\x43\x16\x36\x49\x6c\x9e\xa3\x2b\xef\x4b\x0e\x1a\xda\x52\x6c\x20\xaa\x68\x7b\x42\x01\x67\xd2\x95\x97\x49\x31\x39\x2a\x36\x60\x6a\x31\xba\x80\x0e\x8b\x9b\xab\x3a\x7a\xef\x07\x8a\xe3\xf4\xa7\xb5\x73\x64\xf1\x60\xfb\xe5\x32\x89\x52\x88\xe8\xc2\x0d\x47\x3e\x90\xaf\xd5\x69\x9f\xd9\xc2\x64\x5d\x0b\xf6\x31\x64\x22\x2e\xa8\x44\xcd\x05\xe7\x66\x25\x69\xb6\x6e\xfb\xd2\x9a\xce\x0c\x8d\x9d\x29\xba\xc6\x26\xaa\xe4\x28\xc9\x4b\xc7\xe3\xe2\xd2\x3a\xee\xd4\xbf\xa0\x1b\x7b\x92\x28\x4d\x48\x0a\x1a\x4b\xf8\xee\x58\xb9\xb0\x20\x9a\x21\xf3\xfa\x4f\xfe\x36\xed\x00\x44\x5a\xdf\x81\x67\x2a\x99\x02\x9a\x68\x00\x24\x3f\xd1\xf1\x30\xaa\xe7\xfe\x06\xa3\xd1\xb0\x9d\x67\x3a\xdb\x87\xec\x85\xfd\xed\xd8\x84\xab\x78\x50\x91\x0f\x67\x84\x24\xdf\x28\x7a\xb7\x6e\x94\x17\x51\x12\x82\x71\xc6\x83\x28\x10\xde\x4a\xa3\xbe\x37\xfb\xf6\x15\x1b\x96\x05\xb4\xc3\x99\x96\x0c\xf5\x51\x46\xde\x8d\x3d\xe7\xd1\x83\x46\xce\xe5\xbe\xa4\x5a\x5d\x74\xa7\xf9\x05\xf6\x4e\xe5\x19\x45\x77\xdd\xd9\x27\xdf\xfb\x5d\x8b\xc4\x9e\xab\x02\xb1\x22\xca\x07\xf4\xe5\x00\x1d\x70\x1a\x96\x6f\x54\x81\xad\x1c\x0d\xa2\x38\x6e\x79\x1e\x39\x24\x1d\xf8\xfa\x63\x53\x00\xfd\x74\x34\xe3\x57\xcc\x79\x9d\x6b\xd4\x58\xd8\x9b\x2a\xe2\x19\x65\x76\xcd\xc4\xa4\x82\x77\x60\xde\xb5\x9d\x7b\xf0\xcf\x7b\x63\x1f\x07\x5c\x57\x76\x2b\x4e\x43\xf8\x43\x62\xd0\xcf\xe0\x98\x01\xe0\x07\x87\x11\xec\xce\x49\x52\xb3\xe4\x76\x9e\x60\xca\x5d\x6f\x39\xe6\x8a\xbb\x53\x5d\x26\xbd\x1e\xdc\x97\x29\x99\x22\xbe\x51\xe6\xc6\x57\x8f\x10\x2f\x1f\xc5\x9e\xe7\x9b\xa9\xfe\x89\x14\xe5\x03\x25\xb2\x30\x25\xaf\xe3\xf7\xe8\x28\x4b\x7b\x69\x99\x74\xb5\x9a\xf8\xa9\x40\x65\x1b\x54\x51\x2c\xb3\xbd\x28\x71\x71\xa9\xf4\x58\x79\x48\xc2\x4d\x05\xac\xab\x2b\x95\xee\x5b\x16\x2d\xb7\x19\x0f\xc4\x02\x4b\x8f\x92\x6d\x14\x35\xd5\xcb\xaa\x0e\x9a\xdb\xe4\x51\x05\x7a\xfe\x5f\xc7\x1e\xf9\xb0\x03\x55\x0c\xa7\x21\xe2\xcb\x39\xa0\x84\x95\x2e\x49\xec\x50\x78\xb2\x80\xf6\xe3\x5c\x99\x85\xbf\xca\x8a\x31\xba\x2f\xf8\x1d\x4c\x1d\x0e\x96\x5f\xe8\x7c\x5c\x0e\x2f\x36\xb9\xcd\xf2\x30\x1d\x59\x95\x83\xe7\x26\x0d\x91\xa1\xa8\x93\xd3\x3d\xdf\x36\x59\x35\xea\xd4\xc9\x87\xc3\xe7\x08\xed\x26\x64\x05\x76\x74\x3c\xaa\xe6\x76\x63\x66\x93\x38\x23\xa3\x54\x8a\xf6\xd8\x28\xdc\x1d\xcf\x37\xba\x90\x1c\x47\x14\x5b\xe2\xd8\xd8\xdb\xf1\xc7\xdc\x43\x3c\x29\x56\xf1\xcd\x29\x3d\xae\xba\x78\xc3\xf2\x72\x3b\x2d\x8b\x5e\x9c\xae\xe7\x33\xad\xaf\x2c\x3a\x62\x4c\xd5\x34\x7a\x45\xab\xaf\x1d\x6e\x8a\xe6\x32\xb3\xde\xf2\xfd\xde\x67\x15\xff\xce\xd9\x29\x02\xb2\x64\xcd\xe4\x2d\x8d\x15\xf7\x49\x93\x23\xb5\xb5\xf5\x05\xc7\x44\xdc\xf2\xce\x0c\x5b\x1b\xbe\x99\xde\xcb\xab\x80\xf9\xc0\x03\xbd\x4c\x38\x0b\xbe\x56\x1d\xb1\xfd\x34\xb1\x7b\x1c\xd6\x60\x6b\x2f\x91\xc5\xa2\x0a\x75\x4f\x3b\x47\xe7\xe9\xf3\xac\xab\x45\x55\x41\x44\x54\x8f\xd3\x40\x23\x16\x7a\x08\xab\x2c\x60\x1a\xaf\xd4\xf7\xd3\xc0\x2b\xaa\xf4\x6c\x5e\xa4\x69\x22\x69\x6e\xa6\xff\xa6\x37\x17\x2a\xf0\x06\x2d\x87\x2c\x4d\x57\x23\x9c\x00\x98\x91\xeb\xb4\xc0\xe1\x1f\x81\x55\x55\x20\x35\x82\x7a\x1c\x65\x76\x64\x32\xce\x71\xc2\x7f\x7d\x86\x7a\x1d\xe1\xfa\x1d\xd1\x50\x72\x64\x9e\x30\x45\x77\x34\xe2\xf8\x7c\x6d\x65\x2e\x2d\xb5\x8b\x74\x3d\xc9\x07\xd1\x88\x73\x10\x88\x3e\xae\x28\xb8\xcb\x15\xb5\x2e\xcd\xd0\xcc\xe9\x7e\x88\x6b\x63\x55\xc5\x04\xac\x0f\xbd\x35\xb7\x14\xad\xe8\xd5\x40\xf9\x48\x55\x04\xc4\x39\x5b\x5e\x00\xf9\x5c\x6b\x61\x81\xfd\x20\x92\xbb\xdd\x7a\x9d\x97\x35\x6c\x01\x4b\x96\x2a\x30\xac\xe8\xc8\xdc\x53\x66\x71\x18\xe5\x5d\x6b\xbb\xf9\x8c\x4f\xc3\xa0\x81\x0a\xb3\x0c\xdc\x31\x7c\xb6\x3b\xcd\x54\xe8\x22\xbf\x4b\xe7\x8c\x08\xe6\x57\x43\xac\xc5\x52\xd9\x19\x51\x8d\x2c\x79\xd4\x4f\x8c\x23\x0d\xc2\x56\xc6\xaf\xc1\x69\x7a\x5d\x1f\xa1\x9b\x2e\xfd\x11\x25\xe1\x40\x3c\x21\x18\x43\x9e\x2a\xbe\x69\x60\xe9\xdb\xdf\xee\xc5\x9c\x59\x61\xe9\xc5\xc0\x2b\xfd\x4d\x63\xdb\xb3\xc8\x20\x47\x8a\x74\xf8\x4e\xf2\x91\x74\x11\x0c\x96\xee\xb7\xe8\xe4\x83\x87\x74\xcb\xa5\xda\xe2\xb4\x9f\xf2\x6a\xc0\x40\x7e\xa0\x98\x3b\x3f\xa8\xa1\xa2\x29\xbd\xb1\x62\x41\x3e\x88\xef\x02\x2d\x35\x96\x26\x3b\x6e\x58\x81\xaf\x4d\x1f\x64\x23\xaa\x4b\x7d\xec\xa1\x57\x97\xce\xae\xa2\x27\x1a\x37\xed\x34\xea\xea\xa1\x2e\xf3\x98\xb2\x88\xd2\x32\x47\xe3\x2a\xea\xf7\x68\x7f\x44\x50\x76\x41\xd5\xf5\xb7\x34\xfd\x19\x5a\x7a\xf9\x9a\x62\x3d\xfe\x80\x82\x2e\xd9\x70\x90\x2a\x0a\x08\xe4\xab\xdc\x42\x71\xea\x28\x47\xc6\x2e\x7f\x99\x59\xa9\xa6\x21\x7b\x87\x23\x03\xd8\xa0\x23\x63\x25\xf5\x75\x7b\xca\xd3\xf8\xfc\xe0\xf3\x64\x5a\x50\x27\xe1\x03\x8f\x6f\x5c\x8c\x62\xe2\x7e\x64\x45\x6e\x7b\xea\x68\x14\x65\xb5\x29\x91\xcf\xbe\x7d\x52\xa1\x80\x31\x26\xa8\xea\x3c\xd0\x72\x53\x3f\x01\x2b\xae\x62\xa9\x16\xac\xde\x7b\xd4\x36\xe9\xba\xc8\x1c\x8b\xdc\x7b\x9a\xc7\x81\xb9\xd7\x85\x1f\x5a\x03\x21\x29\x3a\xe3\x36\xba\xb1\x46\xb1\x5d\x1c\x2b\x08\x3f\x13\x42\x23\x8b\xf7\x67\x63\x25\xbe\x0b\x1b\x89\xcc\xd9\x69\x1a\x6e\x44\xc9\xdf\x09\x3c\xab\x62\x3f\xb3\x86\x9a\x74\xaa\x1f\xc6\x71\x89\x23\x89\xaf\xc7\xcf\x6c\x67\xe1\x79\xbe\xbd\xb0\xf8\x2c\x2d\x56\x07\x4e\x78\xc1\xc5\xf3\xd7\x48\xce\x9f\xfd\x72\x5a\x20\x94\x18\x99\x61\x76\x06\xb8\xdf\x3b\x00\x7b\x94\x60\x04\x6f\x86\x10\xe0\x1c\xba\x70\x11\xbf\x3d\x86\x68\x04\xc5\xe7\xbf\x1c\xab\x96\xc6\x39\x1a\x27\xec\xce\x2b\x18\x72\x66\x2d\x24\x4e\x3d\xfc\xfe\xbb\x74\x7c\x31\x6b\x22\x0d\xbf\x16\x0b\x47\x98\x7c\x94\xbc\x13\x24\xd4\x1e\x20\x1f\xcc\xb0\x46\x1a\x2f\x14\x80\x4e\xc1\x25\x86\xb1\x63\x46\x4d\x9c\x3c\xef\xd7\xb2\x98\xe2\x3f\xad\x64\x91\x81\x0a\x86\x08\xd4\xfa\x2c\xe6\x6b\x3a\xa5\x7c\xa7\x49\x79\xc4\x8c\x46\x69\x94\x38\xa4\x0c\xc2\x39\xa4\x4f\xf9\x5a\x65\xff\xa2\xae\x4d\x8a\xa8\xb7\x41\x7d\x6a\x98\x60\x14\x00\x05\xe9\x4c\x03\xe7\x54\x0d\x97\x96\x44\x1c\x94\x56\xb4\x08\x85\x3e\xe6\x30\xe5\xe9\x88\x01\x12\xd8\xcf\x57\x03\x45\x43\xc0\xe1\x1d\xde\xe9\x47\xb5\x3c\xfd\xa1\xf9\xc5\xf6\x20\xca\x5b\x90\x73\xc5\xf1\xc3\x65\x4f\xbe\x71\x64\x2f\xfd\x34\x01\xb4\x4b\xe3\x26\xb0\xa3\xee\xe2\x89\x25\x9b\x5c\xbd\xd6\x54\x6c\x82\x8d\xf3\x48\xc7\x83\x67\x4e\x37\x91\xdd\x98\xa4\x88\x8a\xac\x64\xba\x37\x18\x83\xcb\x34\xdf\x88\x21\xdf\x18\xfb\xed\x71\x43\x1d\x55\x99\x8d\x92\x5e\x9a\x85\xb6\xa5\x44\xf7\xee\x06\x8a\xa8\xf5\xae\xca\x89\xc5\xd6\x8c\x84\x4e\x42\xf7\x48\xf2\xb5\x22\x2e\x5a\xa9\x1c\x1a\xdb\x9a\xe2\xaf\x9a\xe2\xa9\xda\xee\x97\xbe\xf4\x52\x3b\xb3\x5f\x2b\x23\x97\x0b\xc0\xb1\x7a\x4a\x91\x7c\xe8\x22\x04\x15\xec\x99\x63\x77\xd1\x8d\xf7\x94\x41\xa9\xbe\x04\xb6\x14\x7c\xda\x18\x7b\xee\xfb\x86\x4b\xf2\xc3\xe0\xa9\xed\x0d\xe5\xed\xff\xb0\xa5\x0e\x87\xd7\x69\xd8\x44\x3c\x49\x65\xe2\x72\xfb\x94\xe7\xf3\xbb\x1a\x4c\x2b\x6b\xb5\x3c\xc5\xb7\x56\xe1\xe6\xba\xcf\x94\xf2\x2b\xbe\xe0\x13\x93\x99\x17\x0e\xcc\xbb\x62\x17\x59\x0c\xec\xe5\x4f\x77\x54\xac\xf8\xee\xb8\xf5\x2b\x5f\x9e\x6a\x61\x44\x26\x76\x6b\xec\x2b\x71\x77\x28\x2b\x88\xff\x7f\x1b\x06\x06\xb1\xd4\x27\x3b\xca\x8e\x5d\x21\x14\xaa\xa0\xb8\x5b\x2f\x08\xe2\xff\x3d\xac\x46\x1c\xd3\x73\x4a\x71\xb8\x5f\x02\x96\x37\xe3\x71\x34\xc8\x66\xa0\x70\xf4\xcf\x82\x29\x02\xda\x6d\xa3\xfa\x85\xf6\xc2\xe2\x27\x55\x5f\x9d\x6e\xdb\xb8\x32\x56\x14\x22\x1f\x92\xe5\x62\x72\x95\x40\xb9\x1b\x7f\x8c\xd1\x42\x38\xfd\x2f\x31\xa8\x68\x8c\x3f\x02\x34\x2c\x7f\x1e\xc7\x88\x53\xb1\xab\x36\xb6\x66\x1a\x47\xfa\xfd\xff\x51\x24\xa5\x57\xa6\x7a\xfc\x94\x90\xe9\x5f\xd2\x79\xc6\x0c\x1a\x5a\xb7\xca\xc6\x31\xd3\xa8\xed\x67\xee\x92\x5b\x0a\x13\xc9\x34\x0b\x70\x01\x4e\x4c\x1d\xdb\x76\x94\x3f\x52\xd9\x59\x69\xb3\x9c\xf1\x42\xd8\xdf\x1c\xab\xf6\xbe\x37\x15\xdd\xd6\x55\x42\x52\xb1\xa3\x88\x31\xf0\x72\xe2\xfb\x1d\xd7\x70\xf5\xfb\x98\xe5\x16\x10\x9d\xc2\xb7\x55\xef\x5d\x78\xb1\x4d\xdb\x9d\x37\x99\x68\xeb\xb4\x1c\x73\xe8\xed\x9a\x97\x79\xf0\xab\x6d\xd3\x4d\x47\x50\x08\xc0\x0c\xc3\xe4\x3a\x32\x48\x27\xb7\x76\x41\xe5\x2f\xb2\x92\xa0\x1a\xbb\x7c\xe6\xe8\x1d\xd5\x56\x71\x33\xf0\x2c\x49\x3b\x26\x3e\x79\xce\xec\xee\x53\x70\x1d\x21\xae\xf1\xf9\xb5\xc1\xc6\xc8\x66\x85\x4d\x72\xea\x13\xf6\x84\x49\x27\x31\xa8\x22\xc5\xfe\xb8\x0a\xca\x6c\xbc\xdb\x97\x46\x4f\x6b\xb2\x98\x6f\x90\x72\x39\xf6\xde\x3d\x05\x25\xbe\x4a\x2f\xc6\x1f\x08\x3c\xd7\xcb\x37\xc6\x5e\x88\x41\xab\x13\xac\xd8\x62\x10\xdb\x81\x1d\xb6\x34\xfa\x40\xb1\x0a\x1d\x77\x15\xaf\x7c\x75\x23\x0f\x33\x33\x92\xae\x3e\x78\x5a\xaf\x29\x61\xd4\xd7\x9c\xeb\xbd\x92\x66\xec\xdc\x22\x2b\xc6\xc5\x5b\xbe\x19\xfb\xb2\x79\x2f\xb6\xb6\xc8\x21\x0c\xc7\xec\xe4\xe4\xa9\x0a\x53\xf9\xd3\x1a\x37\x5b\xad\xe1\x41\xc4\xd4\x4e\x18\xe0\x23\x58\xba\x7c\x53\xab\x19\x1d\x9a\x6f\x77\x6d\x5e\x98\x95\x28\x8e\x5e\x15\x4b\x80\x5c\xce\x0d\x4d\x88\xaa\x19\xbf\x77\xd6\xf2\xa8\xcb\xcb\xed\x7c\x60\x49\x7b\xb9\x7a\x71\x61\x7d\x55\xe7\x44\x9d\x8c\xfc\xb9\x76\x9e\x96\xd4\x74\xe0\x3f\x72\x37\x50\x1f\xb9\xab\x39\x82\xba\x1b\xb3\xd4\xdf\xae\xa9\x4a\x61\x32\x7f\x47\x2f\xa7\x13\x8a\x3e\xff\xb6\x6a\xbf\x28\x4c\x14\x63\xc4\x9d\x8f\x78\x46\xf9\x88\x75\x69\xb9\x85\x85\x76\x5e\x10\xaa\x62\xc6\x57\xa1\x6f\x61\x81\xc1\x05\x3d\x0c\x83\x8e\x07\x7a\x58\x2b\x30\x2e\x2d\xb5\x43\x33\x8a\x0a\x82\x78\x31\xad\x22\x36\xf6\x39\x85\x67\x38\xa7\x56\x5a\x5e\x64\x65\x58\x94\x99\x9d\x53\x56\xf1\x8c\x2a\x7c\x3c\xd1\x51\x7d\x2a\x8c\x22\xc4\x69\x7e\x5d\x41\x36\x2f\x4c\x29\xaa\x91\x02\x70\x94\xf4\x89\x47\x1b\x95\xbc\x0f\x14\xe5\xea\x6d\xda\xb0\xa8\xad\x01\xfd\xeb\x18\x88\x5d\xa7\x30\x43\x77\x05\x2f\x4d\x0f\x87\x4f\x5f\x76\x2e\x57\x18\xad\x45\xf1\xcc\xd4\x71\xd7\xf2\x74\xd8\xba\x07\xf6\xfb\x0e\x15\x13\xa7\x6b\x76\x37\x2d\x4e\xa6\xc9\xc5\xe8\xc2\xaa\xc0\xf1\x47\x68\xb6\x67\xa2\xd0\x20\xd7\x15\x7b\x02\x58\x9c\x24\x66\xf3\x45\xc7\x56\xa7\x81\xc8\xbe\xc8\xa2\x3e\x14\xd0\x7c\x34\xc7\x1a\x75\xc2\xee\x57\x87\x7c\xef\x7f\xbe\xdd\x8b\x12\x93\x50\xf7\xa7\xee\x65\xd4\xf8\xfc\xe0\x33\x1e\xb7\x94\x58\xa2\xe7\x8b\xd6\x6c\x42\xc4\x5b\x3e\x7a\x55\x84\xa7\x17\x94\xeb\x9b\xd9\x9e\xcd\xe4\xa9\x60\x8a\xce\xe8\x4e\xf0\x33\xba\xf5\x90\xd4\xbf\x28\x8b\x22\xcf\xdf\x72\xe2\x4f\x67\xb0\x77\x30\x97\xc8\x7a\x8b\x4e\x95\xab\xa1\xfc\x83\x53\xaa\xf0\xb2\x92\xa5\xeb\x09\x27\x79\xb4\x4a\x32\xfc\x9d\xb3\x94\x31\xc0\x64\x72\xba\x0e\x66\x61\x17\xce\x22\x9c\xf3\xef\xb8\x15\x30\x8c\x42\x0e\x60\x61\x30\x4e\x69\x51\x86\x3a\xad\xf6\xa1\xf9\x7f\x0f\x92\x4e\x71\x98\x0d\xd2\xac\xe0\xa3\x19\x05\x3c\x54\x52\x91\x77\x63\x5f\x4c\x64\x63\x14\x07\x79\x66\x9f\xa5\x1d\x8a\x23\xfc\x33\x9d\xca\x1f\x72\x72\x2d\xfb\x96\xb7\x3e\x43\xbc\x82\x70\x1e\xf8\x69\x29\x91\xf3\x17\xcf\x4c\x34\x57\x02\x06\x48\x96\x68\x35\x28\xd8\x22\x47\xc7\xd5\x3c\x08\xe5\x9a\x22\x45\x7f\xa4\x43\xbe\x0f\xb6\xc8\x2f\x76\xfc\xda\xfd\xcd\xff\xdf\xc4\x69\x2a\xfd\xa3\xbf\xd9\xf1\xae\xcb\xb9\x40\xe5\xd0\x99\x1b\x13\x33\xf2\xd4\x64\x7b\xd0\x87\x53\xf0\xaf\xc8\xd3\xc3\x5c\x5f\xf0\x75\xd2\xdf\xff\x79\x24\xdd\x71\xd0\x3e\x3e\xf1\x65\x9c\xfe\xc0\xbc\x6a\xb1\x84\x5d\xef\xa1\x47\xd4\x9f\xd7\x22\x5e\x51\xb8\x6a\xb3\x9c\xda\x41\x9d\x9a\x4e\x75\xfa\x48\x0d\x4b\x8e\xbb\x68\x08\x56\xe7\xd8\x12\x50\x07\x47\xd7\x55\x18\x0b\x78\x71\x17\xd4\xa1\xb1\xab\xe3\x61\xa4\xa7\x9b\xba\x58\xc2\xb2\x40\x4e\x0f\xdd\xd0\x5b\xf0\xf3\x84\xc5\x55\x71\x14\xcd\x74\x9e\x50\xcd\x40\xc9\x2a\x27\x5b\x90\x60\xbd\x4f\x4b\x03\x83\xd4\xea\xe8\x0e\xa2\x7a\x8e\x69\x7f\x7b\xdd\x14\x79\xca\x1c\x26\xac\x09\xa2\xe8\xc0\x36\x55\x1a\x28\x4e\xd3\xd5\xc7\x5b\x8e\x11\xea\x6d\x2d\x65\x71\x1e\xd3\x87\x47\xfd\x49\x50\x2d\x1e\xd1\x46\xc3\xe2\xd1\x48\x6a\x51\x5b\xa4\x35\x82\xdf\xb9\x02\x67\x97\x6f\xc8\x0f\x41\x34\xf1\x10\x63\x20\xf4\x0b\xf4\x9a\x2c\xdf\x1c\xf8\x12\xca\x15\xcc\x24\xff\x88\xcb\x3b\xf6\x32\x9b\xbc\x8a\xe2\x15\x13\x42\x07\x5e\xa7\xf0\x9c\x63\xe6\x1e\xda\x6e\x54\xd8\x2c\x33\x89\xe5\x14\x3d\x9e\xe3\xda\x58\x8d\xca\xb5\x5a\xa1\xa4\x3a\xf1\x8b\xcc\x16\xe1\x80\x4a\x83\x8e\x65\xc0\x91\x69\x9d\x08\xb6\xa5\x5d\x16\x16\xdb\xfb\xbf\xfa\x3c\x15\x7a\x85\x50\x4f\x39\xfc\xb7\x69\x37\x61\x07\x7c\x88\x2c\x06\xec\xfa\x19\x34\x88\xf2\x8d\x82\x2d\xcd\xaa\x9d\xf5\xd8\x7b\x08\xab\xb1\x74\xae\x7a\xf6\x1b\x88\x60\xd1\x1f\x62\x43\x9d\x54\xcd\x54\x37\x14\x71\x75\x9d\x54\xe5\xa5\x97\xda\x85\xc9\x0b\x1b\x8b\x1d\x87\x29\x83\x65\xe5\xeb\x5a\x8a\xf4\xd0\xfc\xfe\xf6\xc0\x64\xa8\xab\xc3\xa7\xff\x67\xf4\x2b\x7c\x8d\x0f\xa0\xfa\xbf\x66\xb3\xf5\x81\x8d\x87\x51\xd2\x67\x36\x04\x39\x29\x68\xe4\xe5\xa8\x78\xdc\x17\x06\x7a\x36\x43\xfb\x03\xbe\x0d\x66\x10\x09\xa9\xdd\x24\x8b\xc7\xff\x1f\xeb\x11\xe9\x24\x6e\x0e\x11\x12\x42\x39\x7c\x57\x07\x26\x99\x51\x84\xaf\xa8\xf6\x09\x5a\xba\xb2\x72\x72\xad\xa0\x67\x71\x6c\xfb\xc2\x46\x26\xf0\xab\x96\xa2\xb6\x57\xfc\x5b\x51\x36\xe7\x2b\xb7\xc7\x02\xd5\xbe\xc8\xd5\x3b\x1c\xed\x7f\xae\x12\x38\xaf\x6b\xa6\xfe\xb3\x4a\x36\x65\x94\xc6\x51\x11\x85\x30\x49\x8e\x17\xb2\x32\x49\xc2\x87\xd5\x80\xd4\xb5\x61\x9a\xa4\x43\x76\xbc\x84\xc7\x5d\xd1\xb3\x6e\x06\x5a\x6d\x3c\xe9\x45\xd9\xd0\x76\x49\x87\x55\xda\x3e\xaa\x27\x83\x03\xf3\x17\x81\x6a\x9f\x3f\x55\x5b\xd8\x0b\xed\xa5\xa5\xe7\x67\x69\x99\x22\xe2\x9c\xed\xd0\x02\x16\x56\x39\x1f\x97\xc2\x04\xc0\x3a\x1f\x53\x4c\x6f\x03\x9b\xad\x44\xa1\x90\x3d\x22\x96\x02\x0e\x0d\x4e\xc0\x6d\x15\x0b\x7a\xfd\x8b\xd8\xf6\x6d\x02\x97\x16\x83\x76\x94\x26\x91\xaf\x9b\x1a\x8a\xe3\xa8\x67\x8b\x88\xe9\xe7\x5d\x72\xdc\x41\xdf\x2e\x28\x92\xf7\x35\x9b\x6d\x3c\xe2\xdd\x81\xd9\x89\xd2\x19\x3b\x4e\xb3\x86\xd7\xf8\x87\xe4\x35\xc2\xae\xef\xa4\xd3\x4a\xb7\x64\x22\x7f\x77\x9f\xa2\x6e\xb8\xda\xaf\xc3\xcb\x63\x96\x2e\x6c\x5b\xf6\xdd\x6b\x6d\x5d\x0b\x0b\xed\x61\x3a\x6a\x79\x2a\xe2\xd3\xb4\xdc\x44\xd4\xa4\x41\xc1\x9e\x14\x6b\x37\x98\x97\x6c\x8a\xf0\x4a\xda\x34\x7d\xad\x31\x1f\xd8\xcc\xce\xaa\xe6\x57\x06\x27\xca\x8d\xaf\x10\x6e\xea\x26\x9f\xcd\xed\xf9\xe4\x2a\xfa\x5e\x5a\xfa\x24\xbd\x16\x53\xc9\xe1\x8b\xe0\x6c\xfc\x14\x61\x14\xec\xf6\x9b\xaa\x40\xae\x75\x37\xbe\x47\x51\xa9\xe3\x29\x38\x20\x18\xa8\x8b\x38\x01\x10\xe9\x4c\xe0\xea\x20\x33\x0e\xd9\x00\x18\xcc\x1f\x52\x3e\x01\xd5\xd4\xef\x63\xad\xba\x9e\x67\x77\x32\xff\x53\x02\x5d\xc1\x8b\x3f\x45\x27\xfa\xd6\x09\x77\x58\xa4\x65\xd1\x8d\xb8\x4b\x09\xeb\xe7\x01\xb8\x85\xf0\x3d\xff\x52\xcb\xd1\x6d\x79\xd6\xc1\x38\x62\xa4\x9e\x44\x5f\x3a\x14\x53\x40\xfc\x61\x94\x44\x61\x3a\x1c\x95\x24\xb5\xef\x4b\xcc\x63\x55\x62\x6e\xca\x1d\x0e\xcd\xcb\xd6\x45\x4f\x18\x91\x5b\x1a\x22\x76\x2b\xf8\x04\x7f\xa8\xfd\xfc\xaf\x7d\x05\x20\x2a\xbc\xed\xe5\x40\xd1\xd9\x9d\x53\xb4\x31\xe7\x74\xbf\xe1\xe5\x5a\xd1\x76\xdf\x32\x41\x9e\x0c\x0e\x4e\x8c\xfb\x11\x4d\x32\x56\xd7\xab\xa4\xf6\x09\x33\x2c\x2d\x08\x2e\x11\x14\x9c\xd6\x11\xc2\xe9\xda\xca\xfe\x42\x7b\x7d\x60\x0a\x44\xf5\x8e\xeb\xd7\xe5\xeb\x8e\x29\x4c\x5a\x1e\x85\x2c\xf7\x85\x2d\x83\x24\xcd\x14\x2c\x03\x0e\x96\xd6\xc0\xa3\x6e\x16\x9f\x7c\xc7\x51\x72\x44\xc1\xae\x8f\x34\xea\xfe\x65\xd6\xc4\x51\xb1\xa1\xb0\x4d\xe7\xb4\x0a\x89\xe6\xf0\x21\xe9\x99\x1c\xbb\x87\x1b\x98\xc7\xfa\x6d\x60\xe4\xa5\xb5\xb9\x5a\xdc\xf2\x9a\x4f\x2b\x10\x5a\x2f\xb6\x21\x58\xe1\x2a\x07\xc8\xc1\x56\x3c\x4d\x70\x43\xdc\xb0\xbf\xfd\x72\x34\x6c\xb5\xa6\x1b\xfe\xf7\xbb\xfe\x5a\x7f\x6c\xd8\xe1\x28\x4e\x37\x6c\x46\xf1\x92\x10\x64\x57\x9b\x46\xd8\x45\xc8\x05\x83\x0f\x7d\x59\x75\xb9\x5d\x44\x60\x8f\xc4\xeb\x43\x4d\xb1\xd9\x1f\x90\xa7\x8b\x1c\xee\x5f\x61\x85\xf1\xcd\xd8\x77\x56\xa1\xee\xca\xd7\x0d\xd4\x52\xfb\xdb\x2b\x69\x31\x68\x55\x4f\x25\x2a\xda\xbe\xb0\x76\x4c\xa5\xa3\x6d\x3f\xa5\xe4\x83\x93\xe3\xa8\x76\xa7\xe3\x41\x77\xf8\x8b\xbb\x6e\x17\x87\x03\x13\x65\x54\x06\x7d\x91\xfd\xd4\xc3\x81\xe7\x26\xfe\x3b\x4f\x74\x7c\xe8\x8c\x70\x19\xc9\x8b\x07\xf8\x66\x11\x82\xae\x9e\x5e\xf8\x3c\xbc\x03\x3c\xb4\x39\x57\x9a\x11\xe5\x70\xfa\x43\x18\x75\xab\x71\x85\x27\x77\x02\xae\x2d\xa6\xfe\xfe\x34\xd4\xd8\xe6\x7b\x15\x47\xe3\xbf\x1a\xab\xac\x16\x62\x79\x1c\x93\x3b\x90\xe8\xc0\x03\x3d\x1c\x2b\xf7\xfe\xea\x14\x9b\x2e\x1c\x20\xf2\x2a\xd6\x3f\xd5\xa9\x06\x14\xcf\xf6\x36\x5e\xc8\xb1\x95\x2c\x1e\x64\xf3\xff\x50\x57\x55\xbf\x39\xf6\x4d\x30\x6f\x8e\x29\x77\x21\xe4\xc1\x1e\x0d\xb6\x05\xcb\x07\x7f\x1e\x7c\x2a\xf0\x09\x1e\x34\xd1\x4f\x99\x38\x4c\x07\x29\xec\xc0\x54\xbe\x44\x72\xeb\x4f\x29\xe6\x9d\x3c\x22\x24\xa1\xe2\xae\x60\x60\x00\x42\x84\x9f\x8d\x55\x8b\xf9\x49\x1c\x94\xb0\x5a\xa8\x41\x23\xdc\xf8\x46\x93\x66\x5f\x59\x28\xa5\x9d\xfd\x2e\xed\xa4\xb1\x90\x8d\x10\xa2\x95\x34\xce\x0b\x2a\x2f\x57\x2b\x08\x65\x25\x3e\x14\xf9\xa6\x11\x13\x10\xf5\xa3\xee\xac\x4f\xd7\x30\x99\xba\x53\x18\xf2\x7c\xe6\x98\x2f\xa9\xbd\x6f\x27\x50\xaf\xfc\x13\x53\x6d\xec\xad\xbb\x95\x03\xba\x75\xb7\x66\xa3\x98\xe2\x29\x5d\x13\x35\x42\x8c\xd4\x96\xa2\xc0\xe7\x21\x14\xf9\x85\x06\x5e\xa0\xaf\x95\xae\xe7\x12\xe7\xed\xe1\xc0\x27\xb0\x0f\x6b\x09\xdd\xb4\x72\xff\xb3\x19\xfa\x42\x44\x0c\x67\xc7\x53\xf5\x34\xd5\xab\xe9\x08\x3b\x46\x9c\xbf\xae\xc1\x8d\xf9\x26\x50\x64\x23\x7d\x62\xbe\xaa\x26\x16\x1e\xf4\x4f\xe9\x1b\x51\xdd\xba\xab\x90\x15\xb7\xb5\x04\x62\x5d\xf9\xe4\xb9\xf6\x28\x4b\x87\xbe\x83\x04\x51\xd0\x4d\x7c\x88\x6f\x02\x0f\x3b\x06\x41\xbf\xa7\x56\x15\x50\x9d\x3f\xbc\xde\x69\x02\x64\xbc\x9c\xae\xb8\x50\x08\xb1\xc1\x69\x45\xdb\x76\x5a\x65\x5e\x0e\xa6\xc3\x39\x0f\x91\xe1\x0e\x37\x04\xb1\x7b\x3a\xd5\x66\x94\x9e\x4a\xda\x73\xe2\xf4\xa0\xe0\x2a\xb0\x1a\xa9\xb1\xe6\x9f\x1f\xb5\x54\x98\xb2\xc9\x8b\x58\x82\x93\x26\xf9\xc1\x9e\x25\x49\x51\x1e\x0c\xe4\x30\x4f\x8e\x15\x0f\xd0\x49\x15\x23\x97\xc3\xd1\xc6\x8c\xe7\x1b\xff\xbb\xe7\x54\xd1\xe4\xb2\xe2\x9a\xfc\x5e\x6d\xbf\x1c\x98\x6f\xa7\x61\x58\x66\xee\x97\x84\xc8\x87\x7e\x49\x18\x7e\x7c\x22\x7f\x25\xb3\xa6\x18\x90\x41\x47\xed\xf9\x2a\xac\x14\xfe\x72\x47\x47\x15\x67\xbd\xdc\x97\x80\xfa\xe0\xda\x30\x4f\xe5\x58\x89\xb7\xed\xa6\x28\xc1\x9d\x6e\x0a\xfa\xb7\xfd\xe4\xdc\xb7\xdc\x0e\xd3\x5c\x38\xd3\xe1\xb0\x73\xe7\x10\xdf\x68\x8a\x3e\xb3\x11\x25\xfd\x4f\x90\x7d\x76\x64\x9d\xbe\xff\xe1\x5e\xa0\x30\x76\xf7\x54\x7e\xf1\x3d\xf2\x63\x71\xdc\x3c\x20\xaf\x54\x7a\x63\x7c\xa1\x10\x54\xdc\xc2\x1c\xe3\x25\x71\x71\x06\x3b\x80\x60\x75\x88\x60\x2b\x5c\x55\x25\x9f\xf5\x28\x47\x96\x11\x16\xf3\xb4\x6a\x51\x38\xad\x02\xaa\xca\xfb\x89\x86\x36\x29\x60\x27\x00\xb3\x00\x73\x2b\x6c\xc6\x19\x4c\x93\x40\x9d\xb6\x0f\xd6\xc1\xaf\xb6\x73\x6b\x57\x29\x8c\x10\x20\xb8\x4f\x68\x5f\x74\xf3\x93\x95\xb6\x57\x0a\xe3\x23\x23\xf4\xd4\xc6\x3d\xe2\xcc\xc2\xc0\x9a\x6e\xe5\x55\x2a\xd3\x88\x54\x04\x5f\x6b\x9e\x03\x3a\xc5\x5b\x0a\xb8\x73\x49\x09\x1f\x5d\xaa\xc3\x59\xda\x87\xe6\x97\x9f\xa2\xd3\x58\xb4\x8d\x68\x61\x21\x70\xbb\x33\xf6\xe2\x98\x0f\x30\x87\x53\x2b\x4e\xc4\x1c\x14\x5d\xe1\xc3\xc0\x0b\x77\x00\xab\x2b\x38\x66\xac\x1d\x9c\x42\x3f\x41\x5c\x83\x04\xd1\x13\x1d\x8f\x66\xd9\x49\x60\x4c\xf8\x52\x57\x74\x97\xf9\x1f\x51\x60\x23\x4e\x56\xcb\x31\x2c\x30\x58\x02\x1b\xf0\x18\x66\x1e\x00\xc7\x6f\x07\xaa\x25\xee\xac\xde\x4c\x65\x1c\xdb\x82\x3a\xf6\x50\xf5\x38\x12\x78\xc4\x3b\x38\x49\x1c\x00\xf4\x57\xbe\x2c\x7f\x53\xdb\xc3\x2f\x2c\x1e\xac\x86\x9b\xa4\x45\x68\x68\xd4\x53\x8b\x54\xdc\x95\x5a\x69\x87\x24\xb2\xbb\x6b\x36\x2b\x22\xcf\xe9\x87\x9d\x7b\x53\xd1\xc9\x73\x33\x8b\x38\x6c\x8a\x2d\x20\x8d\x4d\xa6\x14\xb9\x7f\x34\x56\xa7\xd1\x8f\x1c\x05\x4a\xcf\x24\xf9\x2e\x8c\xb8\x2e\x71\x88\xeb\xef\xcb\xf4\x9c\x2a\xc5\x3e\xbd\xac\x25\x37\x3e\xdd\xd1\xbe\xb1\xaa\x3a\x74\x6d\x6c\xfb\xa6\xb0\x2a\xe1\xf7\x91\x4e\xf8\x7d\xe4\x4c\x64\xb1\x6e\x93\x62\x63\x46\xe3\x92\xf5\x46\xa8\x62\x4a\x8c\xee\xee\x8e\x9f\x9e\x34\xee\x0a\x20\xcb\xf1\xde\x28\x87\x5d\x11\x6b\x9a\x92\x86\xd0\x73\xd0\xa0\xbd\x00\x6b\xfd\xfe\xd8\xe3\x6b\x8f\x36\x09\x89\xe7\x45\x96\xae\x8a\x02\x9b\xd0\x2b\xb7\x54\x0f\xa0\x17\x40\x0c\x89\x86\xdc\x44\x49\x91\xd3\xae\xc6\xe4\xde\xc1\x56\xe1\x1b\x55\x30\xcc\xd2\xae\xcd\xa2\x70\x95\x96\x98\x90\x0a\x2b\x81\x84\xf3\x8a\xc7\xe9\x23\x32\x7a\xc8\xce\xd4\x6b\xa3\x87\xe6\xbf\xd4\x36\x23\x93\x15\x2d\xbf\xfa\x4f\xaa\x38\xa4\xae\xf4\xbf\x78\xb0\x3d\xb4\x59\xdf\xe1\xfc\x9a\x54\x16\x9d\x17\x11\x0e\x4c\xcf\x66\x6c\xd5\x05\x8b\xa8\x1a\x8e\x8e\x34\xe0\x4b\x5f\x6c\x8f\xe2\x2a\xc2\x3d\x34\xef\xa7\x47\x75\x7a\xd5\x49\xe9\x17\xdb\xc3\x32\x21\x0e\x83\x58\xa5\x7b\x8f\x28\xb2\x8a\x23\x0d\x4a\xc0\xfb\x1d\x57\x57\xcb\xe7\xfe\x39\x5c\x93\xf3\xc7\x43\xba\x07\x29\x10\xa2\x62\xb8\x8e\x06\x3e\xfb\x54\x4f\x66\x7d\xee\x73\xed\x7e\x94\xae\x99\x24\x89\xf0\x21\xc5\xb4\x2a\x2a\x63\x75\x06\xe1\xa5\xa5\x03\xed\x22\x33\x6b\x36\x6e\x29\xe0\x16\xba\x2a\xf9\x5a\xa1\xa8\x56\x6c\x31\xe8\xa5\x59\x1f\x2d\xf8\x48\x1b\xb6\x08\xb6\xc7\xd7\x35\x86\xb5\x7d\xcb\x04\x3e\x1b\x59\xf8\xc3\x4c\x6a\x04\xa7\xd1\xe5\x59\x5d\x06\xeb\xf7\x34\xa0\xf5\xf5\xc6\x74\xd6\x28\x36\x89\xa3\x8f\x71\xfa\xfd\xde\x26\x1e\xd5\x5c\x8a\xb7\x74\x72\xab\x28\xbb\xd8\xb5\xd2\x38\x4f\x7f\x28\xda\x20\xf4\x15\x88\x76\xde\x75\xf9\xc4\xdc\xbe\x52\x72\x99\xd3\x45\xb2\x3e\xaa\x55\x98\x84\x62\x90\x0e\x4d\xae\x62\xf0\x29\x55\xcc\xe3\x4d\x75\x54\xe9\xeb\xac\x3c\x5e\xac\x55\x81\x6b\x93\xf5\x84\x67\x83\x8e\x15\x98\x96\x77\x75\x02\xe5\x9e\x52\x41\x09\xcd\x70\x64\x4d\xa9\x93\x3d\x47\xe0\x8e\xb8\xfe\xa2\x29\x19\x00\xbf\x1e\x8e\x3a\x42\x95\x32\x41\x72\x80\x3c\x04\x8f\x6a\x44\xc1\x48\x54\x81\xe9\xf7\xf1\x0f\x77\xc6\x9f\x70\x81\xdb\xe7\x3e\xf7\x0b\xfe\x29\x1f\xa5\x90\xda\x79\xef\x0b\x8b\x5a\x3e\x59\x34\x82\x5b\x13\x82\x2e\x20\x51\x7f\x87\xea\x43\x98\xbd\x1f\xa2\xd0\x21\xcd\x28\x0e\x6b\x2a\x89\x34\xf8\x51\x8c\x0e\x75\xf5\xa9\x03\xf3\x0e\x08\xa4\x45\x51\x1e\x04\xad\x2f\xfe\xaa\x97\x15\xa8\xdc\x01\x0e\x5a\x02\x9f\xd5\xbe\x8b\xd3\x15\xd0\xf3\x2b\x63\xa5\xbb\xc5\xb2\x06\xa2\x07\x56\xd9\x2a\x69\xaa\x56\x35\xda\x1d\x9d\xea\x38\x45\x3a\x68\x2b\x80\xcb\xee\xa8\x33\x3e\xf7\x39\x3e\x0a\xae\x02\x1d\x0c\xe8\xe9\xce\x49\xeb\x97\x5e\x70\x4c\xb9\x94\x54\xc4\xcf\x03\x20\x24\xfd\x41\x3e\x6f\xd3\xcb\xc0\x75\x83\xf2\x04\x77\xc5\xe2\x54\x73\xed\xa3\x9e\x66\x5c\xf5\x68\x24\xe9\x9a\x19\xda\x22\x8b\x5e\x61\x73\x08\x08\x05\x6b\x19\xf0\xcd\x14\x78\x6b\x64\x13\x02\x46\x20\x95\xbd\x4b\x41\x72\x7f\x8b\xc6\x19\x89\x02\x38\xb5\x48\x7d\xff\x58\xf9\x30\xd0\x97\xc1\x19\x7c\x17\x01\xba\xf0\xd5\x49\xeb\xc3\x8a\x05\xa0\x91\x2a\x9b\x5b\x97\x71\x50\x63\x8e\x99\x96\x1a\xdb\xf3\x6a\xa3\xf9\x1c\x86\xfd\xcc\xf6\x53\xf2\x15\xb6\xa0\x7d\xb1\x75\x59\x79\x41\xf6\x95\x51\x9a\x15\x7b\x94\xf7\x20\x4a\x4a\xae\x93\xd4\x2d\xa9\xcb\x0a\xa6\x75\x0e\x05\x5d\x1c\x92\x80\x1c\x72\x59\x99\x12\x1c\xfc\xff\x03\x75\xaa\xde\x57\xdd\xdf\x71\x9a\x16\x42\xaa\xd4\x44\xe4\xe1\xa4\x8a\xad\xc9\xd3\xc4\xc4\x33\x8a\x16\xe6\x92\xa2\xc6\xbd\xae\x4e\xea\x9d\x13\x4f\xff\x51\x86\x83\x5d\x4a\xbc\xe1\x2f\xc6\xae\x3f\xea\xbf\x7c\x72\x32\x45\x1f\xe0\x93\x71\x20\xef\x12\x99\x28\x87\xb4\xf8\x83\xbd\x1d\x6f\x38\x46\x36\x8b\xd2\x6e\x3e\x43\xef\xce\x2d\x12\xe3\x29\xde\x73\x27\x3e\xa3\xdb\x3e\x46\x59\xfa\xb2\x17\x5c\x84\x8d\xf9\x36\x3d\x3a\x5f\xd7\x93\x0c\x8b\x20\xc0\x6b\x4d\x3f\xac\x22\x41\x50\x78\x3a\x33\x8a\xba\xf1\xc6\x6e\x15\x8d\xdc\x85\x75\xe6\x1b\x7a\x7b\xc4\x74\x5b\xf4\xb4\xec\x68\x6a\x7d\x93\x4d\x8a\xa8\xb4\x07\x8a\xc5\x5e\xe7\x6d\xdd\xb7\xdc\x1e\x56\xd1\xb1\x73\x5b\xe1\x59\xde\x9f\xaa\x7a\xb7\x1c\x23\xe2\xd9\x5a\x80\x7d\xf0\xab\x02\x88\x61\x64\x94\x90\x93\x91\xc1\x81\x4d\xff\x48\x35\xba\xdf\x6c\xaa\x1c\x5b\x93\xf9\x66\x45\x27\x8c\xb5\x8d\xd3\x49\xe8\x08\x9e\xd2\x64\xf5\xf8\x61\x2a\x04\xa2\xe9\x66\x12\xf8\x06\x9c\x49\x03\xac\xe0\xf9\xb6\x11\x0a\x6d\x27\xe4\xe8\xe0\xc4\x97\x6a\x27\xd5\xa1\xf9\xe5\xb6\x4d\x8a\x41\x99\x47\x26\x1f\x2a\x95\xe6\xf7\x95\x4a\xf3\xfb\x9a\xd3\xd9\xc4\xb1\xed\x3e\xa6\xda\xd9\xae\x05\xbe\x7d\xfb\x3c\x8e\x1f\xc9\x8b\x79\x0e\xe4\x63\x34\x63\x3a\xfd\x8b\xf3\xe4\x0d\xdd\xca\x7c\x92\x93\x1d\xa2\x87\x4f\xc3\x05\xab\x07\xd2\x5c\x9c\x9a\xbb\x3b\x8a\x8b\x1c\x2e\x33\x8e\x6c\x62\xaf\x10\xdb\x58\x86\xb1\x35\xd9\x9c\x27\x11\x60\x38\x38\x42\xbb\x8b\x1a\x3f\x7d\x92\x8d\x88\x12\xd6\x58\x96\xbf\x6b\x48\xc8\xbf\xd8\xb6\x7d\x58\x03\xc9\x0c\xb7\x1c\x25\xd7\xe1\x26\xe7\xb6\x6b\x7b\x65\x12\x16\x2a\xa6\x40\xab\x3f\x8e\xce\x1b\x40\x43\x08\xe8\xd8\xbb\x34\x44\xfd\x45\x81\x36\x6c\xc9\x31\xd5\xdb\x7e\xac\x56\xc8\x59\x58\x68\xe7\xd1\x70\x14\xdb\x19\x3a\x63\x71\x16\x81\xd0\x11\x16\xfb\xba\xa2\xf7\x7a\xbf\xc6\x0c\x5b\xf9\xe0\x69\x52\xf4\xd3\xb8\x17\xd9\xcc\xaa\x68\x6d\x96\xce\x33\xbe\xee\x3c\xa6\x58\x3e\x5e\xa1\x32\x0d\xf2\xb2\xb7\xa7\xc0\x16\xd5\xa7\xd1\x0b\x70\x5a\xd5\xd3\xcd\x88\x72\x99\x2d\xef\x7d\x9e\x53\x90\xf6\x73\xae\x07\xdf\xbe\x12\x0e\xaa\x23\x11\x52\xff\x0c\x7b\xc2\x84\x61\xa1\x3c\x0c\x94\x7c\xa5\x96\x56\x8c\x5e\x8e\x68\x62\xa6\x84\x5a\xf8\xa6\x36\x93\xfb\x96\xdb\xfd\x8c\x4b\x2b\xce\x5a\x2f\x2c\xba\xb6\x0b\x7d\x70\xa6\x69\x77\xaf\xea\x00\xd9\xa4\x38\x50\xd8\x50\xab\xe5\xcc\x02\x88\x81\xea\xab\xbf\x43\xf6\x1a\xf9\x20\xf2\xb4\xb6\x4e\xd0\x20\xa1\x94\xf7\x43\xc5\x10\xce\xc8\x51\x3c\xe8\x1c\xf7\xf0\x4b\x11\x4b\x11\x68\xbf\x0e\xb5\x7b\xa1\x9e\x20\x97\x0b\xb9\xa4\xdb\x88\xd5\xe0\xb4\x5c\x9d\x62\x4e\x54\x59\xd1\xbb\x4d\xb0\xcf\x28\x09\xe3\xb2\x8b\xa6\x4d\xb8\x6c\x3b\xa1\x55\x88\x4a\x11\x38\x21\x24\x08\x94\x29\x2a\x06\x36\xb3\xbd\x34\x23\xf1\xc4\x45\xc7\xb0\x4d\xce\x96\x3b\x00\x34\x62\x4b\x5a\x38\x56\x9f\xe9\x28\x74\xca\x45\xa5\xd8\x73\x6b\xaa\xcf\xcf\xc6\x1b\x9f\xa1\x57\xc2\xa0\xb4\xd0\x8c\xc4\xf5\x1b\xed\x55\x7d\x12\xce\xa6\x4a\x41\x48\x63\xd2\x65\x25\x76\xf5\x1e\x86\x51\x22\x4b\xda\xe1\x28\xdf\x7c\xa0\x5a\xe1\xf7\x4e\x2a\x2b\xa5\x19\xdc\xb1\xab\x77\x61\x40\x9c\xd0\xe0\xe2\x41\x0e\x36\x6f\x02\xac\x23\x26\x9d\x5e\x9f\x0e\xf1\xff\xad\x0d\x48\x04\x1c\xa7\x6b\x9c\xec\xe5\x87\x0c\x54\x43\xce\xdb\x0a\x5e\x73\x38\x50\x8d\xc0\x81\x5a\x6e\x37\xc8\xc4\x62\xd6\xef\x05\xba\x33\x7a\x4b\x39\xbe\xaf\xfd\x8d\xc9\xd3\x8a\xb9\xb3\x88\xfa\xa6\x48\x33\x84\x2d\x58\x85\xff\x4e\xb5\x0f\xfc\xbb\xc6\x5c\x72\x5e\x66\x6b\x76\x43\x32\xbc\x78\x2c\x16\x27\xe6\x9b\x49\x43\x23\xf5\x30\x8c\x54\x2b\xdf\xa5\xf1\x14\x17\x62\x1d\xbc\xbf\xdc\x1e\x44\xdd\xae\x05\xfa\xaa\x09\x7d\xd0\x70\x8a\x17\x51\x61\x92\xa8\xc4\x11\x05\x2b\x70\x47\x35\x40\xdc\x51\x4d\x35\xdd\xc8\x0c\xd3\xa4\x9b\xa3\xd2\x80\xf5\x73\x15\x4b\x06\x3b\x16\x12\x98\xfc\x0f\x70\x51\xf9\x1f\xb4\xcc\x7e\x94\x67\xe5\xa8\xa0\x02\xa8\x4b\x33\xee\x5f\x3c\x38\x9d\x32\x13\xe6\x97\x96\xff\x07\xed\x39\x46\x09\x34\xc3\xaa\x9f\xc0\x79\x75\x4a\xd1\x5e\x7f\xf7\x94\xb2\xf6\x3d\xea\x19\xaa\xd6\x1f\x42\xc0\xdd\x1d\x9f\x70\xd9\x3d\xd9\x9e\xa2\x58\x58\x68\x9b\xa1\x29\x6c\x99\x09\xad\x05\x8b\x9d\x04\xfe\x2c\xfa\x4e\x93\x5e\x74\x3f\x4b\xd7\x9d\x2b\x82\x38\xae\xa5\x08\xa0\x2e\x2b\xa9\xac\x6b\x8a\xe6\xd6\x0c\x4d\x99\x21\xbe\x86\x8d\xb8\x12\xb4\x14\x59\x0d\xbd\x93\x80\xb4\x1c\x80\xcb\x64\x8e\x25\x42\xd2\x1f\x3a\x2f\xe2\x8f\x92\x41\x39\x98\x51\x84\x0b\x37\x39\xd0\x12\x00\x43\xcb\x71\xab\x1e\xad\xf9\x9e\x4b\x4b\xed\x9e\x13\xff\x70\xe5\x77\xf7\x68\x75\x0e\xd8\x43\xf3\x44\x59\x30\x04\x61\x94\x1b\x2c\x08\x42\x48\x39\xd5\x83\x86\xc9\xb1\xdd\x5d\x2d\x02\xc4\x49\x6f\xc0\x90\xb8\xb6\xb1\x6d\x72\xf1\x4c\x5b\x3d\x56\xcd\xa6\x67\x14\x0f\xff\x1b\xd3\x88\x1b\x1f\x03\xe6\x89\x19\xb9\x9e\x34\xa7\xe4\x7f\x60\xde\x51\x36\x6d\x2f\x1e\x1e\x9a\x6f\x97\xa3\xdd\x5e\xd3\x01\x0a\x62\x82\xd6\x26\x13\xb1\x05\x32\x01\x9c\x03\x4f\xa8\x72\xf3\x5f\x8e\xa7\x6a\x28\x6e\x13\x3e\x1c\x7b\xa1\x14\xca\x03\x15\x05\x88\xdd\x5c\xa6\x19\x69\x4d\x09\x80\x1b\x6a\xa3\x23\x93\x44\x60\x5d\xc5\xf1\xbf\x09\x68\x1e\xdf\x28\xb2\x18\x72\x34\x98\x23\xcc\xe5\xfb\x3c\x07\xeb\xf8\x19\xef\x71\xc6\xd5\x3a\xb2\x05\x55\x31\xb5\x62\xab\xd6\x78\xad\xeb\xd8\xbe\xc8\xd4\xd7\xe9\x68\x50\x39\xd0\x0e\xf5\x7f\x01\xd6\x89\x6f\x54\xaf\x1f\xc1\xe5\xbb\xaa\x29\x10\xa9\x07\x51\x36\xae\x5b\xcb\x76\x98\x0e\x87\x36\x09\x45\x12\x62\x8a\x67\x45\x20\x9f\xae\xf2\x96\x66\xfd\xb4\x98\x51\x49\x77\xae\xad\x32\x45\x66\xa0\xca\xb8\xff\x28\x10\x46\xc6\xc4\x46\xfd\xc1\x4a\x4a\xe1\x8b\x37\x76\xb7\x02\xd5\x79\x86\x3a\x26\x06\xf8\x81\xa2\x69\xa2\x14\x2c\xf1\x3e\xaa\x5e\xe3\x4d\xc5\x32\xab\x72\xaa\x83\x68\x34\x12\x9b\x0f\xef\x84\x6d\x3e\xdf\xd4\x28\xf5\x0f\x7e\x15\xad\x8b\x34\x7d\xb0\x1c\xdf\x0d\xbc\x15\xf9\xae\x9a\xe8\x61\x94\x44\xc3\x12\x5e\x16\x0e\xfd\x37\xe8\x2f\xf9\x7a\xca\xcb\xca\x6d\x3c\xa7\x52\xfb\xaf\x6b\x31\x03\xe8\x0f\x23\x8e\xf9\x51\xe0\x73\xe6\xe8\xfa\xc5\x61\x73\x4a\xe9\x12\x87\xe9\x68\x03\xe2\x5c\x1a\x41\x22\x0a\xff\xdb\x5f\xe8\xa5\x97\xda\xc5\x20\x4a\x56\x95\x17\xc4\xac\xa9\xc8\x16\x01\xad\x21\x81\xb3\x0c\x5c\xd4\x4f\xd2\xcc\x76\x67\x55\xdd\x83\x23\x20\x05\x60\x13\x48\xc3\xac\xa2\x4a\x7d\xa0\x38\x48\x7b\xa6\x7c\x85\xd6\xa7\x3c\x5b\xcb\x89\x3e\x6d\x36\xf1\x1a\xe7\x83\x14\xa1\x84\x50\x14\xeb\x56\x18\xfa\x3d\xa1\xa7\xf5\x7d\x8f\xc4\xab\xc3\x40\x07\x89\x87\x80\x2d\xe6\x6b\x55\xa2\xe0\x36\x66\x82\x86\x22\xf8\xda\xd1\xa1\x7d\x07\x73\x06\xee\x09\x69\x1d\x17\x6c\x7c\x68\x63\xbb\x92\x99\x42\xea\x4a\x9c\x8f\xd1\x7e\xfa\x79\xcd\x9a\x9e\x96\x59\x6e\x31\x6e\xa8\x4f\x5e\x08\xb4\x96\x07\x7e\x04\x7b\xf4\x04\xa1\x73\xf9\x5a\xd1\x27\xe5\xa1\x4d\x0c\x11\xcf\xd4\x52\x65\x7c\x3d\x7e\x7a\xba\x72\xb8\x6f\xb9\xbd\xbc\xfc\x37\xe9\x5d\x18\xb7\x3a\x69\x2d\x2c\xf0\x70\xbd\x89\x30\x4c\x20\x12\x4a\x19\xa3\x45\x35\x7c\x81\xde\x7a\x93\x7a\x74\x4c\x9e\x27\xdc\x48\x01\xea\xe0\x23\x3f\x46\xa2\x53\x51\x98\x08\x53\x3b\x4b\x18\xa2\xbd\x62\x53\x23\x25\x00\xcf\xc1\x58\x6d\xc2\xaf\x74\x9a\x94\x5f\xfc\xd5\xad\xc7\x26\xad\x17\xf6\xb3\xab\x7c\x07\x61\x06\x32\xec\x77\x02\x8f\xdc\x1b\x8d\xbd\x62\xc5\xce\x09\xb9\x2b\xac\xf2\xc3\x1e\xa8\xe0\x7b\x5b\xbf\xf2\x65\xc7\x85\xe0\xbb\xb8\x6f\x92\xc7\x8c\xd0\xf1\x32\x9c\x79\xac\x5d\x94\x38\xb9\xd7\x94\xe6\x03\x43\xbc\x13\xa1\x38\x50\x99\x27\xc7\x3b\x3f\xcb\xf8\x28\x66\x79\xc7\xe1\xc5\xe8\x50\xe1\xc1\xf0\xe9\xbc\xf5\x6a\xa1\x65\x33\x9a\x8f\xc3\x03\x9c\x6e\xc1\xbd\x83\xd7\x79\xd5\x8b\xe4\x65\xff\x2f\x65\x6f\x1a\x23\x47\x9a\xa6\x87\x91\x59\x55\x64\x37\xd9\xf7\x31\x23\x09\xb2\x95\x92\x06\x1e\x09\x6e\xb4\x56\x30\x64\x18\xeb\x1f\x91\x2a\xd6\xa2\x87\x04\xa6\xa6\x40\x72\x39\xab\x86\x60\xf0\xcb\xc8\x2f\x33\xa3\x2b\x32\x22\x27\x22\xb2\x8a\xd5\xf6\x0f\xdb\xf0\x2f\xff\x90\xe1\x6b\xd7\x0b\x19\xf0\xae\x57\x96\x25\x8d\xf7\x3e\xb4\x33\xeb\x75\xe6\x1c\x3b\xbb\x33\xd3\xab\x99\x69\xf6\x7d\xf3\x26\xab\xc8\xe2\x7d\x93\x45\x23\xde\xe7\x7d\xbf\xef\x8d\xca\xe8\x85\xfd\xab\x23\x9a\x95\x99\x71\x7c\xc7\x7b\x3c\x07\xc4\x25\x67\x15\x9b\xe3\x14\xf6\x64\x3c\x9b\xc7\x27\xbe\x09\xf0\x1c\x4d\x39\x2c\x77\xe7\xd4\xf0\x1b\x44\xe0\x74\x1e\x9c\x67\x90\xae\x36\xff\x81\x0d\x0f\x6a\x5d\x3b\x50\x7f\x43\xda\x71\x4a\xf7\x76\x77\x50\x21\x5c\x88\x7f\x1e\x46\x9c\xa7\x5d\xa3\x43\x9e\x0d\x15\xf2\x6c\xd4\xd9\x4e\x36\x73\x6b\x0a\x11\x4f\x72\x86\x70\xca\x1d\xae\xa6\x52\xda\xcc\xec\x30\xcd\x0a\x17\xc7\xe1\xd1\x6e\x28\xc6\x36\x1e\x1e\x5b\xd4\x6b\x76\x65\x16\x75\xcc\xda\x93\xe5\xb5\xb3\xaf\xc9\x58\x59\x24\x9c\x55\x1e\xea\x68\xfc\xe0\xd9\xfd\x73\x8c\x05\x0c\xc7\x1f\x61\x91\x91\xe2\x85\xaf\xb8\xce\x20\x47\x03\x3b\xeb\x23\x2d\x08\x7f\x26\xf0\x1e\xb4\xd7\x11\x11\x40\xef\x61\x6e\xa2\x76\xf4\x0f\x31\x03\xf9\x57\xd4\x4c\x6f\x9b\x6c\x39\xef\x98\xd8\x36\xb6\xc7\x9f\x7c\x5c\x97\x30\x44\x49\x27\xca\x6c\x08\x55\x19\xa1\xeb\x97\x9f\x17\x1e\xff\x74\xd7\x6f\xb1\x7c\x17\x19\x5c\xa4\x7c\xe7\xf9\xdd\x71\xc5\x2d\xeb\x09\x01\xe0\x96\x2f\xec\x05\xba\x49\x6c\xe1\x7b\x5a\x8d\x2f\x7f\xd9\x59\xda\x95\x0f\x12\xe3\xe9\xb4\x32\x53\x07\xa5\x09\x35\xa0\x8f\x29\xf2\x42\x99\x69\xef\x84\x56\x05\x96\x1e\xa2\x35\x46\x76\x03\xdd\x3c\x9a\x69\x95\x53\x4f\xa8\x15\x0d\x87\x25\x7c\x53\x17\x47\x77\xc0\x97\x95\x1d\x57\xb5\xe5\x30\x5e\x1c\xa0\x79\x8f\x4d\x14\xb5\x73\xae\xa5\x80\x89\x6f\x06\xca\xe3\xfd\x61\xc5\x10\x93\xc6\x3f\x56\x84\x9f\x55\x84\x57\x92\xa8\x3f\xab\x30\x74\x1b\x63\x45\x10\xba\xa5\x01\x75\x1b\x0a\xca\x77\x6b\x6a\x77\x3b\x38\xdf\xec\x8f\xb2\x82\x7a\x89\x0e\x9b\x7a\x64\x7e\x61\xeb\x34\x45\xb7\x5c\xd8\xc7\xa6\x8a\x57\x7f\x6e\x6a\x4a\x91\xa8\x6a\xec\x54\x9f\xf0\x4c\xf0\xb3\x7c\x5c\x97\x43\x84\x59\x2a\x9f\x10\x47\xef\x86\x77\xf7\xd6\x2c\x3b\xd4\xf7\x0f\x55\xbc\xd9\xf1\x48\x1e\x6f\x79\x34\xdb\xae\xa9\x8c\xed\xe0\x7c\xd3\x0c\xda\x11\x14\xff\xd0\x8d\xd5\x92\x4a\x7c\xac\x44\xf1\xdb\xb6\x37\x4a\x76\x79\x1f\xcb\x75\x25\x4d\x03\x82\x37\xf6\x8d\x3b\x74\x09\x28\x0e\xfc\xf6\xd8\x13\x15\x7e\x30\xf6\xed\xa6\x0b\x8e\x07\xd3\x36\xaf\x19\x15\x9f\xef\x00\x60\x82\x4f\x26\xd3\x09\xe3\x52\xb3\x97\x16\x85\x4d\x10\x39\x60\x97\xf9\x1d\xfa\x75\x3e\xae\xab\x98\x9b\x6c\x90\x17\x59\xca\xe1\xbd\x2b\xab\x7a\x11\xcd\xcb\x35\x6a\xf9\x07\x9b\xab\xc4\xa8\xf6\x0b\x0a\xcb\xbe\x0a\x71\xde\xc7\x94\x26\x89\x06\x26\xce\xe7\xf4\xbe\xa2\x00\xc2\x57\xd4\xf5\xfd\x1a\xf1\xac\xc4\xaa\xa8\x9c\x32\x52\xb5\xd3\xe3\xb7\x3d\xca\x1f\xf3\x65\xc0\x2b\xf4\xe4\xb0\xe8\x63\x32\xf2\xb1\x16\x7e\xde\xe4\x99\xa9\x0a\xdf\xaf\x70\xd2\xf9\x7f\xa9\x6e\xc9\x67\x54\x29\xc4\x60\xbd\xad\xb2\x0d\x93\x17\xa3\xc2\x2a\xd0\xfd\x3d\x75\xd1\xf7\x34\xf0\xdc\x66\xcb\x65\x5a\xb2\x7f\xd1\xfb\xa2\xb8\x10\xe4\x92\x76\x00\x4c\xbb\x05\x71\x70\x69\xad\x16\x5d\x34\xdf\x39\xdc\x98\xaa\xc4\x2c\x7d\xed\x50\xd3\x0e\x86\x11\x97\x7b\xb1\x62\x80\xea\xcf\xc7\x0a\x62\x1f\x25\x21\xa9\xd6\xe4\x73\xca\x99\x8e\xed\xc6\xf8\x44\x95\xe2\xef\x2a\x66\xdc\x79\x6d\x20\xbf\x5e\xe3\xe4\xb2\xd0\x24\xa0\x8a\x2c\xbb\x02\x4a\x56\x98\xe8\x4b\x9e\x44\x5d\x06\xe9\x14\x5c\x39\x95\x7e\x1f\xb6\xa1\xd7\xc1\x0a\x82\x75\xde\x34\x7d\x6b\x84\x80\x8f\x8c\x81\x99\x5a\x7c\x52\x23\x8e\x43\xe3\x7f\x46\x81\x29\xa9\x16\x28\xf3\x6d\x57\xcb\x93\x17\x7f\xb5\xc6\x47\xec\x55\xe0\x12\x68\x1a\xb0\xc8\x77\xa0\xf4\xe6\xcf\xeb\xd2\x75\x9a\x3c\x43\x3f\x83\x1d\xe4\x11\x8a\x4d\xe2\xfb\x43\x37\xe9\xec\xd1\x0e\xce\xf3\xf2\xcc\x22\xbd\xf4\xb2\xd2\x17\x29\x24\x71\xa6\x04\xfb\xf6\x69\x42\x8e\xa0\x64\xe7\x26\x8a\x57\x8c\x0e\x0d\xda\x60\x60\xc0\x2b\xba\x37\x57\xa0\x7f\xf7\x8b\x13\x0c\x74\x8c\xed\x3d\xbe\x67\x7c\xfe\x3f\x6c\x29\x88\xe4\xec\xc4\xb7\x34\xae\x4f\xe9\xd0\x1d\x38\xd0\xcc\xd7\xd8\xcb\xa9\x43\xa9\xac\x48\x63\x2a\x2b\x0b\xa6\xf8\x23\x14\xbc\x35\x35\x50\x68\x65\x27\x1c\x57\x52\x28\x1c\xd7\x7d\xd5\xcb\xbb\x5f\xeb\xdc\x6f\xda\x96\x40\x2d\xae\x3e\x73\x4d\x4f\xe4\x6b\xda\x6e\x34\xeb\x50\xcf\x8d\xb5\x8d\x31\xf8\x50\x1f\x63\x75\xd5\xb1\x47\x26\x9e\xd5\xd8\x69\x80\xea\xf6\x7a\x35\x9b\x7b\x63\x1f\x6c\xec\x42\x28\x2e\x34\x28\x9a\xa0\x08\x94\xbf\x4f\xdf\x87\x2d\xf9\xbb\x9a\x61\xf0\x7d\x8a\x1a\x00\x11\x83\x7c\x0a\x42\x31\x76\x77\x12\xb8\x2d\x3d\x30\x84\x0a\x6c\x67\x2c\x6a\xc9\xdb\x43\xa2\x7d\xfb\x9a\xc6\x66\x69\x3b\x0a\x79\x9f\x63\xa4\xc9\xd8\xc3\xa0\xef\x2b\x2e\xc6\xcf\xfd\xdc\xcf\xcd\xf9\x7a\xcc\x17\x27\xe5\x2a\x46\xb3\x64\xe9\x6f\xb5\x94\xfe\x5a\x63\xa2\xc4\xc0\x4f\x2b\xed\x86\xab\xca\xce\xbb\x93\x59\x33\x98\xad\xb8\xc2\x55\x60\x7a\xe5\x7a\x26\xf5\x92\xf2\xae\xa5\x90\x22\x2d\x72\x93\x53\x09\xc7\x01\xd3\x18\xaa\xc2\x27\xea\xa2\xdb\xe9\x32\x65\xc6\x88\xa3\x1e\x6a\xe9\xd3\xf7\x31\xd1\x65\x6d\xa8\x80\x22\xa2\x70\xd6\xd7\x92\x7e\x43\x7b\x86\xfe\x0a\x2f\xf2\xe2\xc1\xac\xa2\xd5\xdf\x50\x4a\x16\x76\x94\xa5\xed\x34\xe9\xc0\x46\x08\x1d\x19\xd0\x19\x91\xa2\xf1\xc6\x81\xa9\xe9\x0b\xa4\x3d\x63\x63\xe6\x7a\x61\x68\xdc\xd1\x26\x68\x77\xea\xb8\x5a\x36\x2e\xd3\xf8\x19\xcd\x6c\xb8\x11\x28\x78\x34\xb7\xbc\x84\xf6\xef\xb7\xcc\x22\x8d\x62\x01\x31\x48\x49\x5c\x57\xc1\xd5\xcd\x1c\x23\x49\x9a\x15\xdb\xf0\x89\x3e\xb4\x81\x44\x14\xc4\x77\xa8\x07\x26\xeb\x51\x75\x0e\x29\x0f\x82\xdc\x9f\xd2\x17\xf3\xb1\xd3\x4b\xe8\xdb\x38\x3a\x86\x91\xe7\xfa\xee\xbe\x07\xaf\x0a\x37\x51\x66\xbe\x81\xaf\xc3\x0b\xfe\x81\x2a\xf6\xfc\x40\x5f\x67\x52\xa4\xa3\xcc\xf4\xf8\xb7\x91\x36\x80\x63\xc8\xc7\x0a\x44\xd5\xb1\x79\xd4\x4b\xf2\x86\xc7\xec\x9c\x46\x47\x80\x4f\x3c\x00\x7d\x68\x33\x23\x0c\xbc\x3a\x60\x9e\x12\x07\xb3\x71\x64\xbb\x33\x0a\x5a\xf2\x80\x86\x2f\x42\xb9\x1f\xd3\xa4\x15\x9f\x5f\x0f\x39\x2b\x8a\xd8\xee\xa6\x89\x2e\xd2\xe3\x34\x6d\x05\x86\xea\x8b\x39\x0c\x01\x72\x22\xf6\x5a\x90\xb8\x5c\xe8\x01\xa9\x7a\x9e\x86\x19\xd6\xf6\xf3\x4a\x09\x45\xc0\x28\xf1\x5a\x43\x69\xed\x1d\x57\xf5\xdb\xe3\x0a\xe3\x55\xac\xd2\xf4\x72\x2e\x80\x4e\x77\x70\xbd\x8e\x6a\x3c\x30\x59\x98\xe6\x56\x86\xa1\x78\x29\x2a\xda\x12\x17\x59\x05\x34\xeb\xdf\x43\x9a\x85\xa0\x8b\xbb\x9e\x14\x7e\x4d\x74\x21\xa4\xbf\x98\xd9\x7c\x94\xf5\xc4\xb5\xc6\x81\x48\x5d\x5e\x70\x46\x09\x38\xe4\x05\x61\x12\xe8\x3b\x85\x2b\x4a\x3f\xcf\x27\x6a\x16\x64\x96\x4d\x5e\xcb\xe7\x8f\x69\xb6\xae\x14\x4d\xef\x60\x3d\xc5\xe6\x78\xb6\x86\x77\x12\xa6\x49\x68\x3b\x52\xe4\x92\xe4\x96\x6e\x9c\x4f\xc6\xcf\x2b\xb9\xfb\x38\xea\x11\x1c\x74\xc6\x21\x7a\x3e\xbe\xa3\xbc\x22\x60\x61\x86\x02\xe3\xc9\xb1\x60\xf5\x86\x51\xaf\xb7\xd6\x36\xe1\xb2\x6b\x9e\x38\x12\xb2\x8b\xf3\x4f\x4d\x2d\xef\x65\x14\xc5\x2a\xe7\x33\x1a\x25\x87\xfa\xbe\x74\xfd\xe9\xb1\x20\x8e\xb9\xa9\x2c\xd0\xc2\xcc\xf2\xf3\x13\x05\x7f\xff\x53\xe3\xa9\x74\xe9\xa5\x66\x94\xf4\x6c\x0e\x25\x2d\xa9\x41\x29\x58\xf1\xa5\x4a\xea\x3f\xf5\x14\x69\x1b\x8f\x56\xc8\x84\xc4\x75\x23\xaf\x29\x9f\x99\x6b\xaa\xf8\x9f\x87\xfd\xd8\xe6\xe4\xf3\x87\x71\xec\xc4\x80\x16\x9d\x8b\xd4\xc6\x54\x67\x7f\xdf\xbe\x66\xbe\x2c\xf4\x5e\x2e\xef\xe9\x48\x58\xd7\x68\xaf\x05\x7f\x37\xaa\xd7\x83\xcc\xfb\xd1\xb0\xea\x7f\xa5\x9d\xa2\x11\xd2\xb3\xce\x35\xe6\xe5\x47\x95\x0e\x76\xc7\x46\x8d\x4a\x3f\x5c\x69\xca\x5c\x9e\x9a\x56\xd4\x88\xcf\xcb\x58\x1c\xe1\x11\x46\x05\x73\x9a\x30\xa9\x88\x80\xb0\xb8\xf5\x40\xc5\xfc\xcb\xe9\xeb\x51\x92\x2f\x47\x0d\x4f\x47\x7c\x8b\xe6\x13\x1f\x2b\x22\x49\x61\x86\xf6\xb1\xf2\xcf\x10\x6c\x9c\x44\xdf\x13\x05\x7e\x66\xd8\x20\xf2\x00\x91\x1d\x55\x1c\x84\x27\xf8\xb2\x3f\x40\x4d\x12\x0b\xd5\x39\x20\x11\x04\x59\x42\x0f\x1a\x2d\xf1\xbf\x70\x78\xfe\x55\xdb\x86\xc0\x89\xa0\x9c\xe8\x47\x84\xc8\x4c\x53\x10\xf8\x9b\x13\xea\x85\x77\xa2\xbc\xc8\xa2\xf6\x48\xf0\x67\x3c\x53\x68\xff\x91\x59\xf3\x84\xee\x52\xfd\x35\x5a\xc6\xb1\xe6\xb2\x14\x36\x38\xdc\x3b\x88\x20\x89\xfc\xf7\x3e\x65\x61\x4e\x5d\xcd\xab\x8f\x6c\x28\xea\x23\xe0\x90\x48\x0f\xd9\x55\x01\x2b\xc1\x9b\xa4\x90\x2a\x88\x1a\x15\xa3\x52\x60\xb6\x35\xa1\x00\x06\x63\xf7\xdf\x91\x6e\xa1\x38\xca\x52\x7d\x18\xba\x38\xff\x03\xdd\x01\x8e\xff\xeb\x40\x19\x34\xdd\xad\xea\xf9\x60\xee\x3a\x13\xf0\xf2\x21\x0b\x25\xdd\xc3\xac\x2e\x03\x69\x80\x10\x8c\xad\xc2\xb1\x39\x7f\x27\x50\xd0\x8d\xf7\x00\x7b\x44\x98\xf5\xa8\xc6\xe0\xb7\xcc\xbb\x92\x7c\x98\x66\x8e\x39\x8d\xf2\xc2\x75\xed\x77\x72\x5d\x35\x95\x44\x64\x82\x92\x40\xc5\xd9\x2f\x7f\x46\xc3\x2e\xf9\x1f\xca\x18\x76\xeb\x1e\x6d\x84\x68\x94\x9f\x54\x45\xd8\xe5\x2c\x4d\xd8\xbb\x03\xe5\xd1\x53\xaa\x54\x7a\xaa\x0e\xdf\x94\xa5\xb4\xce\xd3\x85\xe2\x11\x7f\xa4\x79\xfa\x1f\x29\x70\x7d\x98\x66\x09\xc5\xaf\x18\x61\x0c\xf7\xc2\x43\xfe\xfd\x40\x73\x6a\x6f\x68\xad\xd4\x13\x81\xd7\x96\xbd\x3c\xde\x6e\x6e\x28\x0b\xc3\xb2\x29\xfa\x16\x51\x8f\x2f\x88\x5d\x50\x06\x3c\xd3\x30\xc2\x7d\xfb\x9a\x61\x9a\x0f\x6c\x11\x85\xb2\x6d\x62\xd0\x71\x75\x0c\x97\xf9\x31\x2e\x53\x96\x51\xcf\xce\x88\x4d\xd2\xeb\xa6\x59\x67\xa6\x1c\xd2\xce\xf2\xc2\xed\x86\x77\x15\x01\x48\x0b\x98\x14\x69\xb9\x35\xae\xcd\xa8\x8c\xb5\x41\x69\x1a\xf6\x86\x27\xd1\xe4\xe3\x4a\xae\xa3\x20\x0e\x0d\xd3\x45\xa5\xc1\x58\xd1\xbf\x9a\x2e\x61\x1f\x6a\x76\x63\x93\xf7\x1b\xaa\xd3\x7b\x0e\x9f\x11\x08\xd8\xe7\x79\xf6\x77\xa2\x1c\x94\xd3\x86\x13\xef\xba\x1d\xcc\x1c\xfa\x27\x5f\xad\x6a\x17\x88\x89\xb2\x6b\xbb\x25\x9d\x51\x28\x96\xc0\xaa\xc6\xb0\xe4\x25\x74\x16\x9d\x17\xfb\x7f\x51\xd7\xb9\xed\x98\xac\x68\xa7\x14\x88\x78\x46\x67\xa0\x78\x97\xe7\x54\x43\xac\x13\x11\xf7\xbf\xa1\x90\x8a\x68\x33\x89\xc6\xc9\x76\x44\xcc\xc1\xf9\xa6\xe9\x40\x92\x83\xf5\xbb\x54\xb9\x6e\x53\x35\x0b\xfa\x66\x75\x79\xc7\x8b\xde\xae\x1b\x12\xc2\x64\xd9\xfd\xf9\x5d\x5b\xdf\xa3\x2f\x32\xd3\x21\x4e\xb5\x89\x67\x7d\x0d\x91\xf1\x84\x58\x1c\xc0\x37\x14\x1b\x06\xb5\x6a\x9c\x55\xdc\x9f\x4e\xb4\x12\x51\xc0\x4f\x59\x2a\xeb\x06\x05\xbe\x61\x7b\x66\xea\x0e\x17\x0e\x37\xbb\x05\xfa\xfc\x88\x8b\xff\x6c\xac\x98\x2c\x7f\xa6\x6a\xf7\x66\xd5\x64\x90\x86\x53\xb8\x97\x4f\x68\x8b\x11\x03\x69\x65\x16\x62\x13\xdb\x8d\x8a\xbd\xb4\x3c\x8a\xac\x52\xc3\xb9\x28\x70\x59\x19\xc1\xcc\xf7\xc6\xaa\x07\x76\x9f\x11\x23\x78\xc4\x0c\xbf\x70\xaa\x4b\xe5\x22\x2a\xaa\x8e\xb4\x24\xf3\x9f\x05\xda\x0c\x88\xae\x1f\x95\xfc\xbb\x4a\xb5\x66\x73\xaa\x8c\xb4\x70\xb8\xf9\x8d\x51\x64\x0b\xe5\x36\xf6\xae\x02\xe8\xbf\xab\xcc\x5b\xf3\xd5\x34\x63\x65\x4f\xc4\xa2\x2c\x97\xca\x27\x55\xd0\x75\x68\x73\xb6\x7b\x16\x05\xac\x6f\x62\x1c\x23\xd7\xff\x8b\xb1\x07\xeb\x5f\x50\x12\x4b\xec\x03\x2d\xa0\xc5\xe7\xa6\x44\xa8\xfe\xde\x8c\x2f\x4b\x03\x53\x22\x22\xd1\xbe\x26\x7e\x6a\xaa\xf2\xf5\xf7\xa8\x81\x62\xb8\x2f\x85\x68\x80\x79\x56\x7c\xa2\x18\xd6\x71\xf4\x8d\x51\xd4\x71\x76\x8a\x8b\x9f\x83\x01\x97\x14\xa0\x67\x92\xe8\x75\xdb\x79\xac\x0c\x54\x58\x44\x0c\xd4\x68\x99\x21\x55\xf7\x2e\x9f\x49\x7c\x87\x76\x5a\x21\x3b\x55\x6c\xbd\xe8\x67\xe9\x66\xbe\x8e\xae\x1f\xe2\xb3\xc6\xc4\x97\x21\xac\xe9\xd9\x8c\x17\x5f\xb1\x97\x53\x6a\x11\x37\x55\xe3\xfd\x9c\xea\x9d\xb7\xb3\xb4\x5c\xee\xf3\xdd\x7e\x7d\xd7\xd6\xd4\xff\x1a\xe1\x04\x9e\xef\x5b\x63\xa5\xb1\x01\x91\x08\x94\xcd\x6e\x05\x6a\xab\xb8\xa4\xba\x19\xef\x4d\x3d\xf9\xaf\x1f\x9c\x6f\x0e\xd8\x6f\x9d\xc7\x63\x75\x70\xd6\xec\x2d\xdd\x28\x2f\x77\x24\x49\x4c\xa4\x1f\xa8\x12\xc8\x0d\x57\x4d\xe9\xd8\x30\xcd\x30\x1b\xc5\x00\xb4\xa1\x9c\x41\xa7\x13\x8b\xa5\xa6\x89\x4d\x36\xa8\x2a\x5a\xa3\xd8\xcb\xc7\x53\xd5\xfc\x85\xc3\x65\x56\xe6\xa2\x0a\x61\x27\xfa\x34\xe8\xad\x3a\x7d\xde\x8c\xd2\xd5\xf2\xd9\xb0\x19\x52\xa0\x8d\x91\x6a\xf4\x1b\x4c\xd1\x8f\xad\xc3\x1c\x60\x5c\x72\xd3\x80\x4f\xdc\x5d\x77\xa3\xd8\x76\x76\x7b\x75\x11\xb8\x05\x3b\xb3\x9e\x72\x28\x61\x2a\x3c\x8d\x96\x36\xf5\x27\x7f\xf9\x19\xd4\xd4\xb0\x46\xa0\xf6\x87\xf8\xe4\x19\xe8\x0e\xca\x80\x55\x66\x26\x1d\x0f\x82\x60\xca\x1a\x76\x78\xe1\xaf\xd5\x14\x75\xfa\x66\x38\x64\x34\xa4\xcb\x30\x8e\x48\xfb\xf0\xa2\x03\x03\xa9\xed\x81\x06\x07\xbe\x11\xad\x20\x3e\x9e\xca\xd5\x8e\x1e\x6d\xc6\x86\x76\xd8\x83\xf3\xfc\xe8\xaf\x54\xb8\x0f\x8a\x4b\xf8\x87\x75\x68\x93\xae\x09\x21\xd2\x25\x6a\x7d\xaa\x7c\x7c\x4f\xc9\x0c\x9d\x54\xb5\x87\xc2\xc6\xb6\xdc\x51\xd2\x64\xaf\xdf\x96\x76\x4f\xbc\xc0\xe2\x56\xa0\x7c\xde\x7f\x48\xd3\x04\xdd\x92\xf3\x9a\x88\x7c\x81\xa6\x09\xe6\xcf\xce\x96\x32\xb4\xfe\x03\xc5\x5f\x64\xa5\x68\xfc\xc3\x0d\x2c\xaf\x28\xd6\x71\x6d\x5c\x84\xb3\xfd\xae\xdb\x1d\x01\x66\x24\x0a\x47\xbf\x86\x70\x9c\x65\x40\xd5\xd3\xf9\xb7\x98\x77\xce\xa9\xfc\xc8\xbc\x6b\x2a\xa9\x8e\x3a\x05\x83\x73\x8a\xa3\x78\x57\x6d\x9d\x3c\xb4\xf8\x1f\x94\x53\xf0\x56\x05\x14\x51\xdb\x8c\x2e\x57\x55\xdb\x8d\x64\x12\xf1\x0a\x1e\xe8\xd5\xdc\x6f\x20\xbd\x74\xc5\x66\x49\x2a\x5a\x26\xd8\x30\x4f\xe1\x71\xf2\x89\x63\x03\x76\xec\x00\xe4\xe0\x6d\x61\x3f\xfb\x4a\xf3\xc9\x54\xfd\x7d\xe1\x30\xf4\xf0\xa3\xa4\x27\x31\xac\x4b\x00\x54\x9f\x6e\xac\xf4\xb8\x1e\x4c\x35\x02\x16\x0e\x37\xc9\x08\x3f\xef\xbb\xf2\x06\xd2\xb2\xf7\x95\x90\xe5\xfb\xde\x1c\xd9\x0c\x2d\x8b\x41\x38\x37\x83\xf2\xb7\xb0\x6d\xa0\x32\xef\xda\x62\x6e\x1e\x4c\xcf\xb2\xc5\xc5\xa6\x3d\x66\x07\xc3\x82\xc6\x32\x86\xec\xbd\xed\x8a\x67\x87\xf8\xb9\x6a\x39\xea\xce\xa8\x88\x6c\x3e\x5b\xee\x3b\xe2\xf3\xeb\x01\xdb\x9b\x0a\xa2\x02\x1c\x9a\x18\x03\x4f\x93\x80\x0e\x11\x0b\x88\xb3\x5a\x6c\xdd\x3f\xd2\xda\x2d\x3f\x52\x8a\x08\xb6\x13\x15\x69\x06\x48\xac\x68\x90\x69\x54\x58\xc3\x49\x3a\x5e\x52\xd3\x2e\xb3\xbd\x51\x6c\xc8\xdd\x55\xc1\xae\x7e\x4c\x7f\x2d\x35\x49\x5f\x9d\xb2\x79\x68\x62\x06\x88\xfb\xf9\xa7\x89\xa5\xd3\x22\xd1\xc4\x40\x5f\x73\xee\x88\xec\x86\x12\xa8\xdc\xaa\xd6\x88\x29\x34\x83\xa1\xa1\xf2\xab\xa2\x77\x3f\x54\xf4\xee\x87\x9f\x9b\x6a\x75\x6d\xc7\x66\x62\x20\xb7\xe4\xba\xf9\x7e\xb7\x7f\x77\xa3\x52\xe4\x5e\x35\x59\x87\x3b\xa0\xa2\x22\xea\x63\xe7\x0d\x07\x57\x1b\x66\x36\x0f\xb3\xa8\x6d\x3b\xb3\x0d\x27\xa7\x7e\x1f\xab\x07\xa2\x7a\xe8\x31\xb3\x77\x53\xa0\xc4\xd9\x6f\xd6\xed\xbf\xc3\xcc\x0e\x47\x71\x1e\x21\x9f\xc0\xc3\x9e\x41\x09\x81\x4f\x26\xdb\x47\xe4\xc1\xf9\x66\xd7\xc4\xb1\x74\xd6\x1d\x7c\xed\xe0\xbc\x83\xaf\x3d\xa3\x3c\x23\x61\x14\x46\x89\x36\x3b\x27\x50\x83\x48\x5c\x14\x74\x3f\x23\x0a\xfb\xcf\x6b\xc0\x72\x99\x33\xf2\x0a\x4f\xa9\xb8\x00\x9e\x95\xc7\xc7\x29\xe2\xd2\xb2\x68\x51\xa0\x1c\x83\xee\x22\x16\x03\x76\x6d\x57\x4b\xe1\x31\xef\x71\xa9\x02\x65\x91\x37\xc7\x5e\xe3\xe4\x13\x40\xdc\xb0\x8c\x9c\xc2\x52\x8f\x60\x7a\x8e\xe6\xab\x94\x96\xe8\xa1\x02\x07\xb4\x97\x1a\x91\x20\xf1\xdd\x1a\xfb\x1a\xf5\x23\xbc\x12\x7c\x2f\xcc\xc7\x19\x59\x49\x05\x1d\xac\x9e\xd3\xbb\xde\x91\xf9\xa6\x3d\x56\x64\x86\xc0\xbc\x8e\x63\xe7\xf9\x76\x53\xc1\xc7\xe2\x62\xf9\xdf\xa2\x3f\xe3\xfb\xf1\x40\xc2\x73\x55\x85\xe6\xb6\x58\xbc\xd7\x10\xfc\x06\x51\x9e\xbb\xf5\x8c\x5d\x07\x69\xe0\x89\x03\xa1\xf2\x12\xb6\x59\xdf\x0c\xf3\x27\x15\xed\xe0\xd2\xd8\x4b\x47\xb2\xe3\x22\x7b\x28\x20\xb6\xc4\x0f\x6f\xa2\xe8\xc3\x27\xda\x27\xf5\x0e\x0d\x05\xd4\xf5\xde\x54\x2c\x2f\x5d\x50\x79\x17\x69\x90\x48\xce\x51\x29\x4f\x34\xe7\xfc\x63\xdd\x89\x3d\x53\x3a\xf0\x35\x63\x16\xa2\xfb\x15\x84\x77\xf9\x83\x02\xf0\x7e\x5a\xa9\xf3\xe7\x51\x06\x7f\x45\xc0\x20\x11\x0e\x8b\xfb\xa6\xc7\x7d\xdf\xac\x53\xca\x0f\x8d\x33\x73\xc1\x23\x84\xf3\x0b\x1f\x2b\x94\x4c\x5e\x58\xc6\xf1\x23\x50\x78\x43\x81\xff\xdf\xa8\xe9\xc8\xbf\xd2\x2c\x97\x2f\x04\x50\x0c\x6b\x52\x1e\x3d\xeb\x6a\x39\x0d\xd3\xc1\x30\x26\xfd\x0c\x82\xc2\xba\x7d\xa2\x9c\x82\xd8\x27\xce\xd3\xb0\xc0\xab\xaa\x0a\xbf\x25\x36\x7f\x51\x0d\x6f\x66\xb4\xe3\x2f\x77\x60\x16\x71\xe2\x4a\x5d\x77\xe7\xa1\xeb\x84\x3f\xff\x6d\xa0\x6d\xb7\xcf\xa8\xc8\xf3\x11\x8a\x82\x82\x23\xa6\x31\x81\xd8\xfd\x11\x46\x0b\x80\x56\xbb\x48\xec\x1b\x7b\xe6\x05\x4c\x75\x11\x17\xa2\x2c\x1f\x7f\x75\x8a\xd4\x62\x1c\x52\xc5\x01\xa9\xaf\x60\xd6\x62\x13\x7f\x8f\x06\x08\x8a\xc3\x4c\x97\xc1\x96\x77\x87\x90\xa0\x88\x01\xce\x00\x00\x83\xf9\xf2\xbb\x5a\x8d\x7d\x6a\x14\x91\x94\xb2\x5d\x95\xd8\x43\x1e\xac\x26\x03\x6d\x8f\x1a\x08\xf2\x48\xbb\x5b\x04\xf9\xea\x43\x9e\x1e\x5e\xc3\x64\xcc\xac\xc9\x73\x9b\xe7\x2e\x54\x76\x4b\xa6\x83\xd8\x78\x9d\xe1\xb5\xd1\x70\x18\x01\x1d\x50\x47\x72\xd0\x92\xd8\x09\x94\xbf\xf1\x58\x26\xf4\x58\xb0\xed\x5d\x55\x8e\x6b\x13\x5d\x6b\xbc\xea\x81\x57\x23\x16\x88\x41\xec\xfc\x81\x2a\x09\x7d\xa0\x84\x84\x7b\x23\xde\x10\x18\xd1\x8d\xe5\x40\xe0\xdd\xca\xd0\x38\x4d\x07\xb6\x60\x41\x1b\xad\xaf\xca\xc7\x81\xff\xd3\xbe\x25\x22\x4e\xae\x84\x48\x4f\xe8\xc2\xda\x89\x5a\x60\x50\x2f\xb3\x36\x91\x38\x8f\x8b\x6c\x5a\x6a\xe7\x7e\xa0\x65\x48\x5c\x06\x64\xd8\xe0\x99\x6e\x15\x65\x6c\xb6\x4f\xe6\x13\xe5\xc6\xc3\xcc\xc3\xce\x6e\x25\x90\x7c\x81\x00\x87\xe8\x67\x5e\x54\x6b\xd9\xec\xc4\x43\x52\xfe\x21\x93\xe3\x04\xb4\x5c\xbd\xc6\x86\xa3\x83\x9f\xaf\xdd\xaa\xd3\xc2\x26\x45\xc4\x8b\x06\xf7\x3f\xe8\x87\xa4\x17\xb2\x3d\x0b\x7a\xa9\xd9\x35\xc7\x44\x74\x07\x6d\xf6\xcd\x40\x79\xc6\x6d\x4e\x2d\x33\x2f\x35\x13\x1b\x95\x69\xc1\x6c\xb9\xf7\x22\xbe\xdb\x52\x34\xd1\xef\x05\x3e\x7c\xba\x8a\x7d\x50\x04\xde\x7c\x09\x3b\x5d\x4d\xf2\x39\x6f\xfc\x8f\xd2\x34\xde\xd8\xc7\xd8\xa2\x05\xd8\xdc\x50\x4a\xd6\x2a\xf4\x39\x57\xe3\xf6\xda\x5c\xb5\x8a\x95\xc5\x06\x74\x2a\x44\xfa\x93\xa9\xbd\xf4\xeb\x24\xca\xb2\xc6\x79\x05\x07\xe1\x18\x95\x12\x91\xfb\xa0\x32\x4a\x68\xd5\xb4\x05\xaf\xdd\x08\xc7\x2b\x49\xd0\xf4\xe6\x7b\xe0\x00\x71\x2f\x7a\x6a\x15\xbf\x81\x17\xcc\x27\x53\x64\xe5\x45\xb2\x5b\xcb\x6c\x18\x79\xb5\x1d\xf4\x5f\x3e\x51\x7d\xc4\x4f\x54\x11\x47\x86\xe5\x93\xbe\x04\x71\x83\xd6\x3b\xe4\x46\x97\x95\x34\xf1\x03\xac\x7d\x20\x22\xdc\x40\x0b\x45\xf1\x46\x17\x1c\x00\x56\xb1\xd0\x37\x29\x7e\x72\xb6\x68\x4e\x9c\x98\x1b\xd1\xec\x8b\x38\xf1\x26\x76\x00\xf1\x89\x34\x5b\xf9\x66\x41\x07\x3d\x1b\xec\x75\x68\x96\x7f\xfc\xd5\xb9\xaa\xb8\x85\x22\x2e\xbd\x47\x3f\x82\x21\xff\x16\x62\x01\x90\x5e\x67\x94\x5b\xf5\x86\xca\x0f\x87\x26\x5c\x36\x3d\xf7\xe6\x91\xa7\xfc\x0b\xba\x6d\x3e\x56\x30\xa8\x6c\x94\x17\x31\x96\x8c\x83\xf3\x9e\x4a\x7e\x70\x49\x8e\x15\x16\x33\x36\xab\x6b\x36\xcb\x9f\x50\x64\xfd\xcb\xca\xae\x62\x37\xf2\x73\x29\x5e\xfb\xe6\xc3\x4e\x54\x50\x78\xa6\x8f\x55\xdc\x71\x7b\xec\x9d\x2b\x4e\x60\xb7\x93\x3a\x38\x3d\x72\x71\xb9\xa2\x28\x53\x78\x5c\xe5\xbb\xe4\x8f\xd0\xa3\x41\xcf\xf2\xbc\x8a\x14\xd2\x4e\x87\x75\xeb\x5c\xac\xbd\xdf\x53\x45\x6a\xca\x51\x6b\x91\x8d\x3b\x33\xfe\x9d\x3d\xa7\x7c\x2d\x9f\x98\x28\xb5\x9c\x69\x9a\xce\x81\x03\xcd\xbe\x89\xbb\x73\xde\xf6\x0a\x79\x48\x45\x09\xc5\xf1\xd8\xb4\x53\x8e\xb3\x48\x3f\xa1\x46\xef\x9a\xc9\x3a\xab\x69\xb6\xac\xed\x46\x54\xea\x79\xb6\x02\x3a\x80\xc7\xbe\x85\x7a\x3c\x7e\x63\x66\xe2\x29\x7c\x33\xad\x27\x3c\xb6\xf4\x1f\xfd\x47\x68\xa2\x20\x01\xfa\x14\xd7\x85\xdf\xbf\xad\xb8\xc2\x55\x2e\xfc\xc0\xa0\xf2\x8f\x0c\xf4\x0c\x5e\x1d\x9f\xa8\x81\x91\x76\xd6\xf2\xdc\x42\xe8\x9f\x15\x9b\x83\x8a\x7c\xb3\xb3\x91\x1a\xb5\xf3\x22\x2a\xc4\x3a\xde\x3d\x16\x07\x22\x7a\xa0\x62\xba\xf3\xe3\x2f\x4c\xab\x91\x97\xb3\x84\xde\x2c\x1a\xe5\x88\x64\xf8\x78\x2a\x96\x90\xd4\xf2\x98\xcd\xd2\x63\xb3\xca\x68\x11\xb2\x05\x15\x7b\x78\xfc\xfe\x0c\x11\x80\x04\x2e\x52\x63\x7c\xd4\xb7\xa6\xf3\x8d\x91\xc9\x0a\xb6\x54\x7b\x95\x19\x31\x5c\xac\xc0\xb7\x80\x50\x01\xc8\xc2\xe3\xad\x67\xb5\x0d\x92\x89\x7a\xfd\xe2\x31\x5a\xba\x1d\x00\xb3\x9c\xd2\x4e\x76\xd4\xf5\xa8\xe1\x83\x21\x3d\xaa\x72\x46\x72\x88\x37\xf6\xde\xbe\xff\x92\xc2\x32\x21\x52\xd2\x4e\x01\xae\xe7\x23\x35\x1b\xba\x99\xcd\xfb\xc0\xb5\x3a\x5b\xd5\x72\x72\x89\xc5\x8f\x5f\x27\xbf\x5f\xb3\xbd\xbd\x66\x57\x6d\x9c\xad\x61\x4f\xa8\xe3\xd7\xd5\xc0\x30\x57\xa2\xac\x17\x25\x7f\x85\xc4\x5b\xcd\x67\xa2\x24\x8f\x3a\x36\x83\x5c\xb6\x18\xc5\x36\xbc\x69\x6c\xad\xf2\xd6\x30\x5f\x0b\xfb\x69\x9c\xf6\xd6\x1a\xe5\x83\x70\xab\xb2\xab\x19\x6e\x06\x3a\x06\xe9\xa6\xd9\x80\x55\xc0\xc4\xeb\xb4\x1c\x3e\x7c\x3c\xf9\x82\x62\x14\xc6\xb1\x69\xa7\x19\x20\x3d\xca\xd6\x72\x43\xb5\x62\x6f\xd2\x2d\x01\xde\xfb\x99\xa2\x77\x87\xb1\x89\x06\xe4\xb1\xee\x42\x8e\x85\xc3\x3c\x6b\x4e\x20\xa9\x10\x25\xad\xa7\x95\xc0\x53\x56\xa4\xc9\xac\xb7\x8c\xb8\xa5\xe8\x6d\xd7\x95\x19\xf7\x75\xec\xfb\xfc\x47\xae\x51\x4a\x70\xa5\x8c\xfd\x40\x30\xc8\x3f\x50\xcf\xe1\x56\x25\xd0\x7d\x56\xf5\x15\xd3\x51\x3b\xb6\x39\xa1\x22\x1d\x9e\x78\x51\x6c\x38\xee\x55\xc4\xf3\x14\xb2\xf1\xdb\x9e\xfa\xdd\x8d\x5e\xe7\xb6\x2e\xda\xce\xff\x9b\x44\xeb\xaa\x32\x55\x6b\x83\xdc\xb5\x59\x11\xc5\x08\x6b\xd9\xff\x21\xa8\x7a\x41\x38\x1b\x5c\x5b\xe4\x7b\xcb\x6d\x57\x9a\x83\xe5\x6c\x10\xe0\xa3\xb2\x27\x5a\xd7\x46\x94\x17\x02\x25\x4d\x76\x1c\x17\xcf\xd5\x40\x95\xef\x9f\x51\x88\x3f\x16\x74\xc6\x0e\xb4\xb3\xe5\x7d\xa9\x67\x68\x98\x08\xca\xca\xb7\x8b\x8b\xc8\x66\x89\x05\x57\x1e\x31\xef\xef\xa9\x76\xdd\xba\xee\xa1\x9d\x57\x66\x80\x83\x28\xcf\x2c\xeb\xd8\xd3\xdd\x8b\x91\x6d\xf9\x3d\x7c\xac\xca\x08\xfd\x74\xd5\xae\xd8\xec\x29\x8f\xcf\xf9\xfe\x36\x71\xb5\x83\xf3\x42\xfe\xa0\x8d\x0e\x63\xe3\x1e\x9c\x8f\xf9\x8f\xb4\xd2\xcd\x09\x84\x3d\x58\x29\xf6\xb4\x54\x6f\xfd\x8d\xc0\xfb\xb9\x9f\xc7\x50\xc5\xbd\xcc\x4e\x3c\xc4\xf1\x1c\x96\x3a\x71\x50\xf3\xa0\xc4\x6b\x78\x17\xc8\x31\x6f\xe0\xfd\xf1\x46\x52\xa4\xff\x5e\x39\x41\x39\x8a\x41\x5e\x2a\xdc\x54\x7a\x67\x02\xc2\x2d\x7f\x06\xc8\x17\x36\xfc\x15\xf1\xea\x32\x50\xc0\x86\xfc\x51\xa0\x10\x61\x3b\x5b\x68\x07\x23\x9e\x38\xa3\xeb\xfb\x7f\x16\xa8\x0e\xd9\xa3\xf1\xce\x2f\xf1\x9e\xfc\x53\xa5\xed\x7c\x53\xd7\xb3\xcf\xe3\x89\xe1\xb9\xfc\x3a\xd6\x65\xa0\x35\x9e\x9c\x78\x31\xad\x0b\x5c\x0d\xc3\x7e\x79\x23\x50\x86\x84\x13\x3c\x32\x0c\x39\x68\x07\x23\x3d\x61\xe1\x78\x6c\xfd\x6f\x12\x25\xd3\xb5\x36\x97\x9c\x6b\x27\xa4\x33\xc5\x6d\xd3\xab\x51\xbc\x88\xc0\x0a\x55\x9f\x7b\xca\xf6\xff\x32\x15\xfc\x90\x4d\xbd\x4d\x65\x32\xc1\x05\xb8\xa2\xfa\x9a\x94\x70\xc4\xbb\x9c\x9e\x1d\x9f\x28\x5c\x60\x3f\xcd\x8b\x7c\xb6\xf1\xd5\x05\x87\x05\xf4\x45\x98\x9b\xaa\xbe\x75\x53\x73\x7b\xc6\x35\x56\x0b\xcd\x61\x96\x12\x66\x03\x3b\x46\x8d\xe0\xda\xc5\xa9\x5d\xe6\xe8\xd1\x66\xde\x37\x43\xf9\x0c\x03\x79\x34\x5c\x66\x1a\x79\x71\xf4\x68\xb3\x18\x9a\x86\x72\xaf\x59\xa7\x7c\x52\x9c\xe4\xeb\xea\x7e\xc6\xd9\x38\x3a\x77\xef\xf2\x27\xa4\xb8\x3d\xad\x98\xd5\x1c\x25\x1e\xd5\xd0\x70\x26\x77\xe0\x53\xf3\xf1\xd4\x95\x1d\xfe\x5a\xb3\xc7\xd6\x2e\x4e\x5f\xba\xbc\x4a\x69\xf2\xd5\x3c\xb3\x3c\x1e\xf5\x7a\x51\xde\x6f\x54\xe4\xe5\xcb\x1f\x11\xeb\x2b\xbf\x9d\x9b\x41\x9a\xf4\x1e\xc7\x18\xc4\xde\x78\xaf\xa2\x0b\x40\x63\x58\x10\x99\x0a\xaf\x7a\x57\x3b\xde\xb2\x36\x25\x0b\x6a\x63\xa6\x21\xd8\xbe\x8d\x01\xcd\x94\x9b\xc0\x2f\xce\xb3\x93\x6d\xea\xcc\x5f\x5d\x68\x1e\x99\x7f\xa5\xe1\x4d\x56\x37\x14\x91\x6e\xc3\xfb\x27\xa6\x2b\x36\xdb\xe5\xf1\x76\xdc\x57\x64\x9f\xf9\xc0\x07\x33\x80\x07\xe3\xf8\xac\xd6\x80\x42\x13\x5d\xfc\x4e\x74\x7c\x1a\xa6\x39\xc2\x3a\xac\x12\x27\x51\x8e\x66\x98\x2d\xa6\x7f\x45\x9c\x42\xa6\xcd\xf3\x6a\x09\x1f\xb4\x6d\x16\x9b\xa4\xd3\xf8\x5c\x87\x9c\xe9\x9a\xf3\x42\xd3\x66\x0c\x1c\x17\xb4\xba\xe2\x29\xfc\x40\x11\x22\x86\xd1\xd0\xe6\x33\x0d\xb7\x11\xcd\xb6\x68\xc2\x8b\x81\xa9\xcf\x51\x1e\x29\x30\x49\x67\x54\x84\xc4\xb2\x5c\x72\xfa\x2e\xf4\x52\x70\x2f\xc7\x95\x08\xd9\x0f\x34\xfa\xea\xb8\xd3\x27\xa4\xaa\xd8\x28\xb3\x9a\x94\x17\x28\x97\xa3\xcb\x0a\x9c\x97\xd8\xbc\x88\x2d\xa6\x05\xba\xdf\x2c\xc6\xc0\x27\x53\xb3\x95\x94\xa5\xcb\xe5\xa2\x42\xa2\x1c\xab\xec\xe2\xf2\x94\x17\xeb\x81\x03\x04\xe5\xca\x8b\x2c\x22\xd7\x50\x20\xc8\x64\x2c\xfa\xc6\xcc\xb9\xca\xeb\x8d\xcd\xb1\x86\x2a\x39\xab\x61\x7e\x59\x9b\x3d\xa6\xa3\x04\xe2\x69\xd8\x83\x51\xe5\xe5\x63\xd5\x59\x61\xe0\x0d\x21\x63\x11\x15\xbd\xa9\xe0\x10\xdf\x0b\x14\x31\x16\xfe\xdb\xcc\x96\xa2\x3d\x15\x6c\x92\x2d\x4a\x38\x1d\x58\x4e\x01\x93\x31\x9f\x04\x1c\xec\xc5\x58\xf3\x51\x58\xfe\x68\x77\x84\xb0\x93\x3d\x5e\x2b\x6e\xc4\x02\xc6\x93\xbb\x45\x6d\xf1\xa2\xaa\x33\x5e\xac\x5b\xcd\x46\x49\x27\xea\xcc\xf8\x29\xb3\x8e\x37\x00\x30\xff\x59\x6c\xc5\xc2\x35\xd9\x1e\x7d\x49\x62\x64\xda\x44\x06\x70\x58\x69\xbf\x37\x6c\xa8\x2e\x7a\x9c\xe6\xc5\x9c\x96\xad\xc0\xe2\x23\xc4\x24\x5f\x86\x81\xf1\x3f\x96\x9b\xc7\x5b\xca\x30\x69\x66\x8a\x6e\x7a\xf4\x68\x33\xb1\xa3\x22\xe3\x70\x1c\x73\xe0\x42\xe0\xf5\x06\x2e\x8c\xbf\xa8\xb0\xfc\xf9\x30\x4d\xf2\xa8\x1d\x47\x71\xb1\x46\xad\x1e\x61\x66\x36\x9c\x94\xcf\xa6\x8a\xa6\x0b\x88\x54\x7a\xcc\x02\xfe\x50\x44\x16\x6a\xe8\x82\x59\x3a\xea\xf5\xe9\x9b\x5d\x61\xc3\xab\x7a\x6b\xf1\x6c\xd3\x89\x42\xc3\xdc\x55\x26\xb3\x2b\x79\x9a\x0f\x15\x59\x61\x94\x24\x46\x64\xfd\x10\xac\x5e\x57\xb5\x8b\xeb\x6e\x81\x24\x80\x3c\x35\xab\x31\xc8\xee\xe8\x58\xf5\x83\x40\x23\xe7\xa7\x87\xc1\x21\xe5\xb6\x24\x25\xb8\x32\x54\x92\x0a\x9c\xd4\xa4\x7b\xa3\x82\xcd\x24\x11\x60\x22\xd1\x76\xb5\x9a\x45\x4f\x1f\xf6\x13\x26\x5f\xcb\x0b\x3b\xc8\xf7\xe2\x75\x63\x82\xee\x02\x3a\x03\x61\xcd\x63\x2d\x8a\xdd\xd0\xa1\xff\x88\xbe\xd1\x35\x16\x7d\xe3\x83\xb9\x08\x4e\xb0\xee\x88\x28\xed\x40\xe9\x11\xe3\xad\x01\xae\x25\xd6\xf1\x7f\x86\x2d\x42\x74\x23\xcb\x87\x26\xa1\xa7\x6e\xbd\xac\x1a\x21\x40\x20\x30\x7c\xa3\x22\x22\x4f\x3f\x2a\x24\x45\x0f\x8e\xcf\x6d\x91\xef\x56\xae\xbf\x27\x83\x8a\x20\x8b\xb3\xb1\x3c\x1d\x28\x5f\xf2\xbb\x58\x7f\xf9\x24\xa8\xba\x15\xb9\x66\xe3\xf5\xed\x90\xbc\x85\xc3\xcd\xbf\xdf\xa8\x22\x1a\xca\x4f\x4a\x65\xf5\xc5\xea\x5f\x2f\x1d\x5c\x6a\x1e\x38\x70\x90\xd6\x6c\xc9\x5e\x95\x94\xf7\xe6\x54\x89\x5b\x66\x71\x98\x76\x40\xf4\x46\xe4\xca\xf2\xd2\x7c\x52\xab\xbe\x6b\xf2\xdc\x0e\xda\xf1\xda\xac\x0f\xec\xbe\x35\xf6\x8c\x01\xde\x7d\x59\xc6\xa4\xc2\x7e\xfe\x70\xea\x2a\xca\xed\xa0\x93\x0e\xa2\x84\x34\xf7\x8f\xcc\x3b\x2e\x0e\x5d\xbb\xb0\x74\x3c\x73\x2f\x09\xd7\x1e\xa7\x7f\xc2\x0a\x2d\xb2\xbe\x68\xb9\xa3\xb8\x21\xff\xa2\xdc\xed\x7e\x38\xf6\x5c\xe5\x3d\x13\x95\x5a\x3e\x89\xf2\x1c\x3e\xfe\x28\xf0\xa3\xeb\xba\xa7\x28\xfe\xe3\xbf\xd3\xfa\x82\xef\xca\x9a\xac\x20\xbd\x77\x8f\x61\x74\x62\x76\xe5\xef\x89\x98\x9d\x24\xb8\x59\x14\x52\x79\xdf\x15\x04\x9f\x9c\x28\x42\xc3\x8b\x2d\x4f\xb3\xdb\x44\x30\x2f\x84\x6a\x55\x81\x89\x32\xc4\xb6\xaf\x78\x7f\x0c\x17\xdb\x4d\x5b\x3c\x1e\x99\x5f\x6c\x0e\x4d\x94\xc8\xa6\xc1\x2d\x48\x1a\xa8\xd2\x8e\xac\xc9\xa7\xfb\x26\xe9\x38\xd0\xbc\x54\x6f\xe9\x96\xa4\xac\x5b\x07\x55\xe9\xa7\x71\xcc\xea\x4e\xaa\xf4\xbd\xe4\x4a\x35\x35\x40\xb1\xb6\x69\x63\xbd\x92\x1d\x4c\x11\xab\xbf\xab\x82\x93\x2b\x75\x90\xa0\xcc\x0e\x4c\xb6\x6c\xda\x15\x63\x91\xf3\xca\x58\x64\xba\x95\x53\xc6\x5b\xd1\x60\x60\x33\x67\x03\x24\x0e\x60\x0d\xe7\x5a\xfb\x89\x2b\x48\x0c\xa2\x5e\xbf\x58\x9b\xf3\x2e\x04\xf7\x75\x5a\x77\x41\x59\x3c\x20\x77\x45\x94\xf7\xee\xb8\x52\x2d\xa8\x31\x57\x32\x71\x9c\xae\xce\x78\x66\xc6\x8e\x96\xb2\x14\x84\x15\x09\x56\xf6\x8f\x5d\x23\x30\x8a\xe3\x97\x1b\x5c\x0d\x69\xec\x5f\xdc\xba\x52\xc3\xe5\x7a\xa5\xd9\xb7\x66\x25\xb2\xd9\x0c\xa5\x88\xc8\x90\x21\x5a\x8c\x91\xff\xad\xb1\x5a\x64\xef\xa9\xd0\xb5\x63\x7b\x36\x21\xc8\x0c\x0a\x91\xda\x9d\x1c\x09\xe5\xdd\xc0\xef\x4c\xd3\x34\x8b\x23\xf3\xcd\xdc\x1a\xa1\xd3\xa1\x35\xc0\xab\x1e\x9f\xd4\xea\x46\x76\xd2\xd5\x64\xd5\x64\x1d\xc2\x19\x62\xad\x64\x59\x67\x64\xae\x97\x95\xb3\xc5\x19\x55\x6a\x22\x1f\x75\xc2\x13\x1d\x9c\xf7\x45\x70\x5f\x10\x57\x64\x86\x61\x4c\x5c\x81\x86\x6f\x43\xf0\xdc\xe4\x13\x25\x2c\xd4\xb3\x49\x51\xb5\x98\xf5\x12\xd9\xff\xf0\x62\xa0\x0a\xe0\xab\x06\x4b\xb1\x2a\x22\xc8\xc6\xf1\x91\xea\x9e\xd8\xa4\x9b\x66\xa1\xf0\x67\xeb\x63\x31\xd9\xdf\xc9\x78\x23\x2a\x46\x00\xe6\xd3\x07\x10\x14\x9d\x46\x6c\xc8\x27\x75\x76\xa5\xf2\x14\x67\x3d\xf6\x08\x90\x19\x2c\x64\xb0\x4a\x96\xf2\xb9\xce\x85\x94\x9a\x7c\x3e\xb4\x61\xd4\x8d\xc2\xdd\xb4\xb2\xb0\x48\xb2\x72\xee\x3a\x4d\x97\x8d\x18\xe6\x36\x76\x30\x57\x21\x75\x6b\x3d\x43\xb0\x71\x72\x0d\x4f\x05\x5b\xdb\x9f\xbb\xe2\x62\x7b\xd4\x8b\x6d\x0e\xca\xb3\x17\xae\x99\x77\xbd\x6a\x0f\xf5\x79\x6b\x0a\xde\x78\xe0\x40\xd3\xc6\x36\x2c\x32\xa8\x30\x3a\x0f\xd8\x93\xca\x9a\xec\x64\x0d\xe2\xf7\x50\x79\x90\x45\x62\x87\x06\x20\x3b\x84\x8d\xc5\xe0\x52\x43\xea\xa6\x46\xf7\x81\x03\xcd\x30\x1d\x0d\xb9\xbe\x28\xc6\x0b\x0d\x6f\xc2\x50\x0f\x56\xc8\x46\xe1\xf2\x8c\x92\x74\x64\xf0\x26\x0a\x8f\x40\x75\x02\x1e\xf1\x56\x4d\xab\xf2\x50\xd3\xd5\xf5\x64\xa5\x62\x63\x5d\x5c\xab\xb8\xec\xd6\xd9\x96\x64\x2f\x67\x2f\x37\x3c\x01\xe2\x9b\x63\xa5\xbb\xfd\x4d\x05\xe6\xcb\xac\xc9\x32\x93\xf4\x6c\xae\x70\x0c\x1b\xda\xb4\xca\xa7\xde\xed\x6c\x14\x22\x0a\x56\x12\xdc\x2e\xae\x9a\x7a\x00\xe5\x65\x0c\xac\x81\x66\x8d\x0b\xa4\xe8\x91\x4b\x50\x35\xbd\x34\xbf\xda\x1c\x25\x71\xb4\x6c\x79\x12\x62\xe4\xdd\xa2\xe1\xc1\xc7\x53\x6c\x34\x22\x40\x52\x2d\xbe\x20\xee\xf9\x81\x03\x02\x27\xa3\x31\x21\xd0\xb2\x67\xdd\x82\x9e\x17\x66\xd9\x26\x31\xbb\x99\x49\xc2\xe9\x1b\x5d\x24\xc8\xb9\x75\x65\xbb\x08\xdc\xbe\x7d\xcd\x85\xc3\x4f\x78\x27\xc4\x1f\x61\x67\xc3\x86\xb1\xa9\x0d\xc8\xbf\x49\x75\x47\x89\x80\x15\x1f\xe7\x9b\xc8\xeb\x9c\xdd\xa2\x1b\x7d\xec\x85\x86\xaa\x3e\xfb\xda\x8b\x2c\x3c\x05\xe3\xae\x20\xeb\x48\x39\x3f\xae\x50\xc6\x9d\x32\x40\xb4\x62\x93\x0a\x8a\xfc\x02\xde\x92\x38\x43\xd5\xc9\xa0\x66\x26\x41\x63\x0e\x63\x11\x39\x18\x1f\x7b\x84\xfa\x28\x0b\xfb\x26\xb7\xbb\x7c\xe1\x18\x8a\x69\x00\x05\xbe\xd0\x52\x3e\xef\x78\x9a\xac\xcd\x3e\xae\xd8\x6a\x97\xcf\x8f\xc1\xb2\x15\xe0\x93\xed\x22\x09\xaa\xf0\xd9\xf8\xa4\x0e\x38\xd7\x36\x79\xee\x32\x7f\xd7\xbd\x5b\xf4\xdd\x3b\x9f\x78\x84\x23\x1b\xc7\x86\x51\xb1\x62\xd0\xea\x31\x90\xb7\x02\xdf\xec\x99\x16\x72\xc1\xd2\xc1\x5c\x1c\x94\x65\xb9\xcf\xcf\x27\x15\xe0\x57\xd2\x8d\x3a\x36\x09\x2d\x32\x28\xd9\x8a\xbc\xd8\xea\x7a\xe5\x9e\xbb\x36\x7b\x4e\xd9\x97\xbc\x4b\x7f\xe8\x12\x98\xaf\xfb\x8d\x0d\x85\x28\xce\x3e\xc6\x0a\x81\xbe\x84\x12\x31\x56\xcb\x7b\x98\xb6\xd8\x37\xaf\x07\x53\xba\x42\xd8\xee\xee\x68\xda\xe8\x06\xa2\x01\xec\xbb\xff\x0b\x19\x93\x48\x8e\x83\x38\x1a\xe1\xcc\x46\x65\xa1\xac\xa8\xdf\x39\x2f\xb4\xdb\x64\xd7\x22\xbe\xea\xe5\x6b\xe6\x01\xac\x84\x0f\x5e\x2b\x83\xae\xb5\xdd\x15\xea\x9c\xf7\xb8\x46\x18\xcb\x7c\xab\x40\xed\x23\xcc\xb6\x91\x0c\x4b\x35\x58\xff\x38\x50\xf2\x11\x57\xc6\x7f\x5d\xad\x6b\x9c\xe3\x3b\x7f\x4f\xcf\x2e\x62\x16\x37\x9f\x4c\x63\x98\x0e\x2e\x7d\xa9\x99\xa5\xe1\x32\x3a\x31\x4a\xc2\x4c\x9e\xed\x6f\x8f\x7d\x1c\x7d\x51\x55\x36\xd2\x55\x0b\x1c\x2f\xd6\x84\x7b\x2a\xa0\xbc\xa7\x74\x3b\x57\x5f\x36\x2f\x57\x8d\x43\x1b\xce\x58\xe7\xb2\x46\xe6\xdb\xa4\x5c\xfa\xc3\xbe\xc2\x1c\x02\x5d\xcc\xc7\x93\xa7\x55\xbb\x2e\x1e\x75\x6c\x43\xe9\x45\xb2\x1d\xa9\xcc\xbb\x3a\x03\x26\x52\xfd\x47\xb3\x4d\x5a\xa4\x34\x1c\x50\xd5\x03\xb6\x49\x1a\x92\xca\x15\xd3\x64\x9d\x7e\x1a\x43\x15\xb4\x1c\x7d\x4e\xf7\xcc\x1f\xab\xe8\xab\x0d\xd9\x45\x54\xf7\x44\x13\xb7\xfc\x49\xd1\xca\x75\x02\x4d\x26\xea\xcc\xd2\x6b\xc2\xa8\x9f\x6d\x79\x68\xcd\x07\x58\x5e\x05\xba\xee\x7b\xcc\xd7\xbc\x27\x53\x91\x26\x96\x8b\x12\xc8\x36\x30\x6a\x9d\xc1\x8b\xab\x25\xfd\xea\x54\x54\xb1\x70\xb8\xd9\x1b\x99\xcc\x24\x85\xb5\x1d\x7a\x1e\x98\x1e\xb3\x28\x23\xe0\x63\x37\x15\x81\xe2\xda\x54\x75\x7f\xff\x62\x73\x58\x8e\xee\x70\x54\x38\xac\x0c\xa6\x35\xc0\xb4\x7c\xec\xfd\x10\x6d\x1c\xd9\x15\x51\x00\x96\x24\xcf\x67\xa5\xa7\x94\x45\x55\x98\x45\x03\x3b\xa3\xfc\x99\x78\x4d\xc7\xa6\xf0\x48\x59\x35\xec\x6a\x3d\xad\xe8\x67\x6b\x82\x57\x55\xfd\x09\x87\xb7\xaf\xcb\xa6\xa2\x24\x2a\x22\xbf\x8d\xb2\x47\x11\x7d\xbf\xf8\x15\xd5\xc9\x24\x95\x29\x12\xf7\x85\xb0\x2e\x40\x47\x8d\x8f\x55\x21\x6d\xc5\xc4\x23\xdb\x99\x6b\xec\x5b\x70\x04\x28\x5f\xc2\x82\x52\x2e\xea\x54\xa0\x18\x62\xb6\xdd\x57\x3e\xcb\xd3\xee\x15\x65\xc8\x40\x4d\x95\x19\xbf\x78\xa0\xd9\x8a\x37\x75\x8b\xae\x1e\x9d\xca\x0b\x75\x85\xcf\x30\x1e\xb5\xb9\xf6\x8c\xb1\xbe\xa5\x1a\xf1\x5b\xaa\xb2\x4d\xed\x7b\xfe\x4b\x5c\x31\xae\x8c\x8f\x55\x50\x65\x8a\x22\x23\xdc\x98\xa5\x46\x05\xf6\xc1\x8f\xb5\xd5\x32\x64\x71\xb8\x06\x82\xa5\x4e\x54\xb5\x95\x10\xc1\x69\xda\x2d\x31\x83\xbf\x57\xd7\xe8\xe9\x9a\xbc\x68\x9b\x98\x3d\xda\x34\x86\x4a\x4a\x8d\xaa\x0b\x10\x15\x61\x1f\xcb\xa0\x43\x78\x94\x23\x4a\xd2\xf4\xa7\x95\xa8\x7a\x46\x69\x9c\xeb\xc4\xf0\x96\xc3\x27\x6a\x60\x9a\x4e\x3a\x2c\x40\x9a\x70\xd9\x7e\xb9\x80\xc8\x0f\xd4\x10\x81\xba\x26\xcc\xa3\x81\x34\xea\xb1\x0b\x6c\xa8\x16\xea\x86\x9b\x21\x61\xdf\x0c\xda\x36\xcb\x67\x2b\x6e\xcc\x58\xd5\x44\x0e\x61\x1b\x0f\x47\xd2\x9a\x3f\x73\xde\xc1\x2c\x87\x02\xd0\x05\x8b\x64\x2b\xc8\x1e\x52\x46\xf4\x9e\x2f\xd4\xc8\xb6\xac\x44\x69\x6c\x8b\xc2\x34\x94\x55\xed\xf9\xb1\xca\xc6\xce\xd7\x44\xdf\xcd\xdc\x26\x39\x8a\x57\x22\x19\xda\xf0\xf2\xa1\xb5\xc8\x93\xcc\x16\x51\x66\x9d\xc9\x9a\xec\x53\x9e\x38\x7a\x46\x3b\x92\xdc\xa9\x81\x39\x1f\x6a\x76\x6c\x5e\x64\xe9\x9a\xa4\x38\x88\x7b\x61\x1d\x25\xc5\x36\xc5\x49\xbc\xa8\x52\xff\x9e\x4d\x7b\x99\x19\xf6\xb9\x07\x25\xc6\xf7\x3e\xf3\xfd\xcc\x47\x81\x66\x30\xb4\x59\xb5\x2c\x74\x63\xec\x51\x07\x37\x02\x5f\x1a\x33\x9d\x41\x94\x44\x44\x17\x4b\x59\x84\x45\xf1\x74\xdd\x12\xa0\xe8\x4b\xc3\xcc\xf4\x46\x2c\x8e\xe0\x24\x85\x5c\x41\x6c\xdd\x6d\x15\x69\x6c\x7b\x94\xf8\x3b\xf0\xaa\x36\x3e\x7e\x5a\x05\x64\x65\xca\x36\x53\xae\x37\xe8\x5d\xdc\xd2\xba\xda\xef\x57\x26\x80\x42\xcd\x51\x22\x6e\x12\x86\xbf\x40\x0d\x00\x69\x29\xa2\xc7\x06\x9a\x11\x28\xb8\xdd\x1c\x7b\x1e\x7e\x3e\xcc\xac\xe9\xe4\x7d\x6b\x8b\x7c\xb7\x2f\x68\xfc\xb1\xf2\xaf\xbd\x3b\xd6\xe2\x22\x34\x75\x80\xeb\x79\x5b\x09\xba\xad\x8f\x3d\xfe\x6f\x27\x50\xff\xa2\xe3\xfa\x05\xdf\xa8\x22\xce\x7b\x18\x99\xcc\xc5\x37\xc2\xb6\x2e\xbf\x49\xc8\xd6\x9f\x47\x90\x22\x99\xf7\xbe\x65\xe6\x91\x94\x03\x2a\x7d\x52\x8f\x60\x6f\x9b\xdc\xee\x56\x96\xeb\xac\x08\x8b\x3d\x78\xb6\xa5\xeb\xca\x98\xa0\xce\x22\xff\xab\x0b\xbe\x4a\x70\x64\xde\x91\x2a\x2b\x79\x50\x4d\x29\x89\xd7\x20\xa5\x52\x57\x95\x37\x7f\x4a\x79\x5d\x65\x79\xf1\x34\x7d\x1f\x5a\xce\x9c\x3e\x61\xc9\xaf\xd0\x6d\x6f\x28\x2b\x5d\x52\x63\x5c\xe0\x85\xe4\x7f\x0f\x94\xef\x15\x8b\xd2\x68\x91\x78\xee\x82\x91\xa2\xa7\xb0\xaf\xb5\xbd\xf6\xf5\xb1\x27\x3a\xa0\xf8\x88\x19\xfc\x90\xe2\x60\x36\x5c\x09\x94\x2b\x0d\xeb\xb5\x49\x2b\x7d\xfb\x03\xf8\xc5\xaf\x94\x39\x47\x87\x0b\xa9\x98\xb0\xa7\x03\x35\x7b\x6b\x8b\x40\xe5\x36\xd8\x11\x38\x34\x87\x4a\x78\xd0\x12\x37\xd5\x54\x35\xd6\x4c\xb2\x6c\xed\x8c\x8a\xa9\xa1\xc7\x8f\xae\xc2\x19\xd5\xb9\xdc\xf0\xe8\xb0\xcc\x84\xcb\xb2\xce\xe8\x16\x27\xc8\x5a\xff\x52\x4f\xef\x3b\x15\x04\x68\xc7\xbe\xde\xf0\x5e\x68\x27\x54\x50\x76\x22\xa8\x91\x8a\x28\x22\x40\xb4\x81\xe6\xd9\xa9\x4c\x27\x77\x4e\x9e\xdf\xee\x76\x66\x62\x11\xc3\x16\xc0\x9a\xd2\x37\xf8\xc0\x65\xc8\x7d\x93\xc5\x76\xd0\x00\xce\xa7\x22\x3a\xc6\x27\x35\x3a\xa3\xaf\x36\x07\x51\xd2\x71\xa6\xee\x58\x31\xae\x2a\x0c\xe2\x55\xed\xbe\xd5\x4e\x47\xc5\x8b\xe5\xb0\xc1\x63\x7f\x48\x1d\x34\xb7\x3f\x96\x03\x4d\x94\x34\x70\x11\xd8\xf9\x7f\x17\x25\x63\x3e\x51\x72\x6e\x1f\x61\x3c\x4b\xf9\xb6\x5c\x19\x70\xdc\x20\xa6\x0e\x36\xb5\x93\x81\x17\x0d\xd9\x72\x2e\x1e\x4a\x3c\xf2\x4e\x05\x8f\xae\xa0\x90\x77\xc0\x0e\x63\xf2\xe2\xa4\x22\x05\x49\x9b\xb9\x58\xab\x28\x4d\xc4\x5f\xc7\xb0\x42\xb9\xed\x1d\x25\x46\xf6\x7b\x81\xca\x93\x37\xeb\xaa\xfd\xd6\xe4\x05\x40\x16\x02\x59\x6a\x28\xcd\x66\x9f\x08\x71\x99\x12\x4f\x6a\xb6\xa5\x34\x47\xd2\xd5\xa4\x18\x65\xc9\xac\x5f\x4e\x3e\xc2\xd4\xc0\x48\xbc\x12\x94\x8f\x1b\xd3\xe4\xb3\xf1\x36\x94\x02\xbe\xe2\x1b\x23\x93\x14\x51\x17\x8a\x01\xda\x6e\xf1\xaf\xb8\xee\xff\xef\x1d\xcf\xe9\x18\x73\xa9\x19\x15\x16\x06\x44\x02\x08\xa1\xeb\x92\xc8\x45\xeb\x61\x14\x7d\xec\xc5\xac\xbe\xc7\x4e\x79\xb8\x0f\xb1\xcd\xfb\x82\x92\x51\x4c\x46\x5d\x13\xc2\xa7\x70\xaf\xb7\x01\x38\x4e\x63\xb3\xf2\x61\xa7\x67\x54\xbe\x53\x47\xcb\x29\xc7\x84\xdb\x73\xbc\xea\x51\xe0\x59\x95\xf7\x02\x05\x04\xd0\xef\x7a\x7d\xac\x5a\x0c\xcc\xff\x15\x61\xc9\xa7\x2a\x66\xfe\xcb\x8f\x37\x9c\x37\xd0\xef\x6a\xa5\x3c\xc0\xd6\x71\xbc\x93\x44\x68\xb1\xc1\xc2\x18\x0f\x04\xe6\x8b\x28\x7e\xe0\x1f\x4e\xe2\xf2\xf9\x13\x13\x45\x5f\xf8\x04\x97\xc9\x7f\xa6\x0c\x72\xcc\x08\x52\x37\x0d\xdf\xc2\xb9\x40\xa4\x0b\x31\x53\xf1\xbd\xc4\xe5\xb5\xb4\xe1\x33\x30\x46\x64\xf0\x89\xd2\x8f\x4c\xd2\xac\xe8\x97\x6b\x6d\x43\x11\x39\x00\xab\x17\x77\xa6\x1a\x91\xb6\xae\x89\x12\x9f\x1a\x32\xb5\x47\x81\x63\xb7\x82\x17\x15\x8d\xa2\xdc\xdc\xf3\x6f\x8c\x6c\x8c\x22\x84\xc8\x97\x6a\x5f\xb2\x86\x13\x81\xbf\x3a\xa5\x63\x77\x70\xbe\xd9\xcd\xac\xad\xec\x9f\x63\xb5\x7f\xa2\x68\xc1\xb7\x6d\x5e\x86\x8b\xa8\xf4\x07\xb6\x05\x56\x87\xb4\xb6\xaf\x50\xbf\xae\xd2\x5e\x88\x01\x06\xe6\x08\xfe\xe8\x5c\x8d\x20\xc1\x2b\xa4\x1b\x10\x66\xde\xad\x00\x23\xeb\x3d\x8c\x19\x3e\x51\xf1\x68\x1e\x66\x66\xd0\x8e\x39\x6e\x97\x32\xe0\x55\xe5\x8c\xbe\xa1\xd4\xd3\x7f\xa8\x4a\x26\x85\x4d\x4c\x18\xa5\x23\xac\xd3\xe8\xa3\x03\x93\xcb\xc7\x53\x97\x87\xc8\x59\xf4\x85\x15\x4d\xe4\xc4\xd8\x77\x6c\xae\x04\xca\x13\x7a\xda\x1c\xbf\x9c\xe1\xbd\x28\xa6\x76\x94\x62\x77\x40\x93\x93\x8f\xa7\xf6\xde\x83\x65\x9e\x10\x0a\xaa\x0a\x4b\x01\x00\xfb\x7c\xac\xc0\xd8\xa3\x2c\xb2\x19\xf2\x2c\x67\xc1\xea\x71\xc6\x35\x92\xe8\xcd\x81\xc9\x96\x2d\xab\x71\x21\xc6\x01\x10\x9b\x8f\x7d\xbd\x38\xb3\x36\x64\xff\xd5\xda\x60\x5a\x34\x44\xd6\x4c\x5e\x64\xaf\xdb\x41\xbe\xcc\x36\xe2\xce\x0f\x7d\xbf\xcb\x36\x15\x1b\x71\x60\x2c\xc4\x17\xa4\xa4\xac\x74\x02\x2f\x62\xd9\x41\xfd\x07\xc6\xb2\x7c\x5c\x63\xf9\xb6\xd0\x0c\x4d\xd6\x66\xaa\x16\x57\x1d\x55\x75\xe1\x62\xa5\x2f\x1e\xdb\xce\x2e\x3f\x7a\x41\x44\xc1\xe0\xd9\xd3\x52\xb4\x32\xe4\xed\x48\x8a\x8e\x8f\x55\x8f\x8a\xef\x1d\x9d\xe3\x07\x0a\x34\x5d\xa4\xa3\x5e\x9f\x4b\x1c\x8e\xab\x5e\xce\x63\xe9\x34\x4c\x97\x8d\x9b\x59\x94\x2f\x53\x51\x02\x04\xad\xcd\xf1\x94\xc9\x2d\xe2\xaa\x47\x53\x29\xe4\xbe\x7d\x4d\xd3\xe9\x58\xaa\x86\x2d\x70\xde\xf8\x03\xda\xe0\x5d\x0b\x4f\xe9\xe9\x04\x1e\xef\xa6\x71\x6c\x61\x3f\x8a\x63\xb5\x9c\xfd\x44\xc5\xa5\x3f\xa9\x8a\x3f\x44\x79\x51\xe6\x74\x98\x6c\x02\x1e\x56\x95\x02\xcc\x36\x6c\x8e\x77\x6a\xf0\x05\xaf\x36\x07\xd6\xfa\xb5\x8d\x01\x3c\xf4\x21\x01\xf3\xf8\xf5\x38\x4a\x56\x4c\xc7\x15\x04\x99\xbb\xae\x7d\xf8\xdf\xf3\x9a\xb7\x24\xdf\x39\x47\x4f\x41\xc8\x06\xca\xa6\x71\x13\x9b\x81\x08\xfa\x79\xce\x00\x7b\x13\xb0\xc0\x40\x0d\x64\xe5\x50\xd3\x7e\x63\xa4\xac\xab\x84\x8b\xab\x2a\xe3\x57\x5d\xb4\x90\x0f\xad\x0d\xfb\x82\x26\x76\x8f\xa7\xbc\x0e\x3e\x09\x2a\xb4\x89\x61\x31\xeb\x8b\x57\x8f\xb5\x3c\x5b\x97\x5b\x8c\xbc\x80\x56\xef\xc4\xe3\xbc\xda\x23\xb2\xfc\xd5\xb6\x09\x13\x45\x3f\x9e\xd4\xa8\xaa\xc6\x26\xef\x33\x32\x4c\xc1\x27\x17\x5c\x61\x56\x05\x4f\x99\xe9\x7a\xa0\x8a\x8a\x2f\x17\x1c\xd8\x70\x7b\x18\xfe\xf3\xcd\x76\x9a\x74\x94\x9a\x2e\x93\xc2\x65\xfb\xf4\xae\xe2\x59\xd4\x89\xc2\x51\x5c\xae\xbe\x34\x92\x1c\x29\x5a\x49\x0c\xfa\xdc\x7c\xcd\xc6\x71\xba\x4a\xdf\xeb\x4a\x3b\xe5\xa7\xa4\xe5\x51\x07\x4e\x1b\xa4\x2b\x76\xc6\xb7\xbd\xce\xa9\x6e\xd2\x0d\x0d\xf2\xda\xd1\x9a\xbe\x8b\x41\x9a\x17\xb0\xf5\x92\xc7\x42\x38\x0e\x79\x60\x7e\x0f\x49\xbb\x94\x55\xc7\x39\x69\x10\x81\x8b\xb0\x87\x28\x1b\xc2\xa4\x52\x62\x0d\x37\x71\xd1\x82\x8f\x2b\x17\xb6\xad\x2b\xb4\x4d\xa3\x6c\xc0\xee\xd3\x08\x4d\x6f\x60\x98\x63\xd4\xfc\x29\x4d\x68\x04\x45\x37\x39\x9b\x44\xef\x07\x8b\x03\xbb\x7c\x3a\x3c\x67\x61\x50\x99\x16\x4b\x16\xcf\x8e\xbb\xac\xe4\xc2\xb6\x02\xcd\xa9\x25\xc2\x72\x9a\xe4\x04\x7d\x10\x97\xc5\xf2\x4e\xa4\x4d\xb3\x7d\x2e\x1f\x38\xd0\xec\x44\xf9\x70\xe4\x94\xa8\x98\x32\x89\xbb\x10\xfe\x64\x0d\xab\x96\x5c\xc2\x56\xb3\xa8\x28\x6c\x42\x97\xe9\xec\xa8\x3c\x9f\x01\x55\x61\xe0\xd6\x7f\x47\x15\x56\x87\xb1\x59\xb3\x19\xf5\x15\x31\x1d\xa0\x80\x8f\x85\xfb\x36\xd0\xe4\x6e\xb7\x71\x78\xae\x07\xca\x85\x9c\xb9\x31\xa2\x27\xed\x65\x47\x87\x36\x2b\x46\x79\x1e\x71\xd9\x16\x0b\x3b\x4a\x39\x7c\xac\xc8\xab\xc3\xbe\x4d\xd2\x81\x4d\x4c\x43\x11\xda\x3e\xa5\x07\xcd\xc7\xaa\xa9\x68\x25\xaa\xfc\x9c\x2a\x66\x8d\x5a\x57\x94\x60\x19\x29\xaf\x04\x5d\x21\xa0\x16\xf8\x58\x59\x66\x0c\x6d\x36\x28\x1f\x25\x1b\xc4\xb9\xf6\x98\x2b\x06\x5c\xe4\x01\xc3\xff\xa2\xac\xbd\xa7\xd3\xd7\x32\x3a\xe9\xd8\x30\x22\x35\xe2\x86\x33\xd7\xc0\x08\x72\xa9\xb2\xf7\x06\xb8\xe1\x7d\xe9\x0b\x9b\x45\xb1\xfd\x2b\xec\x6d\xfc\xe6\x9b\xa5\xa6\xc3\x09\x12\xea\x59\x80\x46\x61\x31\xbd\xaf\xe8\xa9\x97\x90\x5d\xe1\x21\x26\x85\xcd\x0a\x13\x25\x03\x9b\x14\xc0\x9d\xe0\x2e\x50\xff\xc7\x44\xe1\xc2\x39\x86\xec\xb7\xb5\x92\xfe\x65\xe5\x91\xcf\xb2\xc4\x15\xad\x27\x56\xc4\x98\x8a\xd7\x9c\x8a\x68\xfc\x5a\x63\x8a\x60\xc5\x27\x2a\x85\xc9\x0b\xb3\x96\xcf\x54\x0a\x29\xbe\x64\xf6\x28\xf0\xfd\xf0\x2b\x8a\x64\xd6\x36\x09\xcb\x4f\x39\xaa\x5e\x79\x49\x7c\x82\x24\x08\x45\xb2\xf7\xb1\xfe\xf2\x49\xbd\xea\x75\x99\x45\x75\x34\x28\x33\xf0\x19\xd5\xfb\x75\x4e\x46\xcd\x74\xe8\x70\x00\xec\xea\x83\x10\x4c\x2c\x7e\x6a\x51\x71\x49\x37\xf6\xd2\x5e\x00\xaf\x5d\x56\x76\x59\xda\x5c\x73\x94\x74\xd3\xac\x17\xad\x08\xb4\x49\x16\x8a\xf2\x1a\x65\x9d\x70\x45\x78\xdb\xc9\xd2\x70\x59\x01\xa8\xd7\x15\x80\x7a\x5d\xc5\x59\xa4\x8f\x19\x03\x93\xed\xc8\x31\xfb\x1d\x51\x46\x25\x61\x04\xbf\xef\x50\xf8\xec\xa0\xd3\x1b\x6a\xab\xd9\x98\xc2\x89\x1c\x99\x5f\x6a\xda\x24\x84\xf4\x7f\x47\xe1\xe7\x39\x1b\xe7\x13\x35\x0d\xd3\x41\x94\xa4\xa3\x3c\x86\x26\x05\x17\x04\x03\x4f\xd3\xd8\x74\x21\x7a\x39\xfa\x57\x0d\x72\x35\xe4\x33\x77\x34\xf7\x56\x69\xa9\x9e\x73\x68\xfe\x74\xc5\x66\x99\x35\x61\x21\x8f\x90\x75\x2c\x30\x17\x45\xd4\xa2\xa6\xdf\xd6\xb1\xc3\x34\x8f\x8a\x19\xc5\x07\x3c\xad\x84\x47\xef\xa8\xbe\xed\x45\x2d\x30\x98\x43\x1e\xd6\xa7\xc9\xac\xbc\xcf\x27\x4a\xb0\x64\x68\xed\x32\xa5\x25\x08\xa1\xee\x61\x06\xf2\x49\x05\xc2\x30\x1c\x02\x11\xc4\xe8\x7d\xdd\x1a\xd1\x16\xa9\xa4\x86\x0e\x88\x11\xe2\x8c\x3b\x98\x0e\x7c\xa2\xed\x8d\x8a\xc2\x84\x30\x26\x96\x2a\x59\xc3\xf1\x4e\xeb\x94\xf5\x45\x0b\x44\x77\x24\x3e\x50\x78\x87\x0f\x94\x6c\x6e\x62\x8a\x94\xb8\xa9\x4e\x0d\xa3\xc2\x83\x71\xc3\xf8\xe3\x71\x85\x07\x53\x67\xbe\x37\xca\x7a\xb2\x47\xb2\x61\x5a\xa0\xe2\xfb\x73\x0a\x57\xc7\xe6\xf5\x9d\xc7\x7c\x7d\x1f\xf7\x24\x88\xb9\xc6\xd7\x97\xb8\x70\x00\xce\x19\x62\xe6\xd3\x58\xe9\xf8\x1f\xc6\x5e\x4f\xe1\x0e\xed\xe0\x0e\xcc\xe1\x35\xf3\x2e\x2a\x20\x23\x39\xa7\xf0\xf5\x49\x03\x43\x77\x33\x94\x5a\xc4\xe1\x23\xbb\xe9\x4b\x68\xdc\xfe\xdd\x67\xd9\xb4\x07\x1b\xee\x87\x63\xdf\xa7\xbc\xac\xe0\x6e\x7f\x87\x4a\x8f\x78\x58\x58\xe8\xb1\xe8\x3f\xc4\x2a\x8c\x42\xf2\xf9\x3a\x77\xbd\x6e\xac\x53\x05\xcc\x89\xb9\x89\x6f\xd4\xcf\xb5\x7c\x1f\x26\xb3\xc3\xd8\x84\x8c\xa9\xc0\xf4\x3c\xa7\x5c\x09\xce\x29\xc2\x61\xdb\x24\xcb\xf9\x53\xf4\xc4\x50\x93\x3b\x1e\x78\x31\x8d\xfb\x98\x52\x6c\x2a\xa1\x3c\xb6\xce\x8f\x2b\x31\xa0\xaf\xe0\xcc\xb6\xbc\x10\x00\x0b\x6d\x23\xb5\x38\xc7\x1b\x2f\x16\x80\x4f\xc6\x95\x80\xb2\x7c\x26\xe8\xc3\x73\xb5\x14\x69\xed\x2c\xc9\x77\x48\xec\x41\x23\x4b\x40\x8b\xdb\xc3\xd4\x97\x88\x7f\x31\x53\x8e\x08\xdc\x06\x2c\x44\x05\xc4\x41\xf7\x87\x4e\xd0\x4d\x07\xcb\x1b\x46\x45\xd8\xd7\x4c\xed\x4d\x65\x65\xf2\xa0\x22\x2e\x5e\x27\x16\x49\x1a\xb5\xab\x51\x0e\xb7\x66\x59\xba\xd5\x32\xae\xb2\xfa\x76\xda\x9e\x51\x05\xe2\x33\x0a\x19\xf0\xc6\xd8\x0f\xa2\xdf\xb8\x38\x35\x65\x5e\x6a\xae\x46\x45\x3f\x2b\x03\xfe\x03\x07\x1c\xb8\x9b\x3e\xc2\x27\x2e\xeb\x33\x59\x6f\x54\xe6\xf1\x2e\x9d\xe3\x6c\x06\xbf\xf3\xb7\x90\xc8\x23\x3a\x7e\x6a\xa2\xd4\x0e\x2e\x57\xe5\x6c\xca\xaf\x96\x6d\x4b\xd9\xb9\xac\x25\x66\x10\x85\x33\x8a\xe6\x87\xc2\x27\x80\xb2\x4f\x51\x29\x0b\xfd\xe0\xdd\x13\x79\xc2\x79\x3f\x4a\xb0\xcc\x61\x55\xfd\x29\xbd\x69\x3e\x56\xad\xa8\xc2\x1e\x33\xf9\x9e\xf2\x31\x62\xa8\x3d\xa4\x5e\x1f\xf2\x53\xb6\x3a\x77\x16\x65\xbe\xc6\x32\x43\x85\x4f\xc0\xae\x4e\xa8\xba\x0e\x2f\x42\xa8\x06\x35\x5a\x4a\xf2\xaa\x81\xdb\x46\x6c\x75\x4e\xd9\x90\xfc\xd4\x95\x6b\x42\x42\xef\xc7\xce\xe0\x1c\x59\xd5\xa6\x42\x48\x6f\x4e\x21\x4e\x5d\x58\x64\x43\xd3\x91\xa8\xaf\x36\xe7\x73\x7a\xea\x83\x01\x5a\xdd\xae\x14\x89\x9a\x0b\x1f\xd7\xe9\x9b\xb7\x47\x28\xbb\x8b\x25\x2c\xdd\x09\x9f\x28\x61\xe8\xbc\x6f\x96\x6d\x3e\xb4\x26\xb3\x5c\x33\x44\xb1\x84\x69\xa7\x7c\xa2\x6a\xb7\x07\xa3\x94\xff\x10\x3d\x81\xef\x8f\x95\x88\xeb\xf7\x55\x34\x57\xf4\x6d\x94\xbd\x40\xf3\x16\x81\xf0\x35\xe4\x28\x9c\x97\xa0\x4d\x82\x25\xf8\x9a\x92\x5a\xb8\x1a\x28\x4a\xe3\x03\x54\x1e\xd8\x39\x29\x50\xc0\xc2\x3b\xd4\xf1\xc4\xe6\xfd\x48\x95\x68\x61\x11\x21\x94\x04\x7a\xb1\x62\xff\x4b\x65\x3d\x34\x87\x1b\x2d\x9f\xdf\x6c\x55\x1c\xa4\x2e\x63\x09\xc3\x97\x3d\x8e\x86\x2b\x67\x98\x94\x47\x02\x0b\x4c\xbc\x00\xa7\x8e\x57\x06\x51\xf0\x2d\x78\x66\xa2\x98\xc9\x3b\x5b\xdb\x8b\x55\x65\x4c\x91\xa6\xa8\x6e\x39\x22\xad\xcb\x7a\x36\xea\x42\xd2\xa6\x3d\x36\x24\x8f\xd4\x23\xf3\x0c\x6d\xbe\x83\x4c\x98\x4f\x74\x59\x40\x40\xcc\x4c\xae\x95\xa0\xcb\x4f\xf0\xeb\x2a\x55\x60\xdd\x11\x0c\xf4\xeb\x2a\x95\xcb\xa3\xa4\x67\x86\x69\x66\x67\xf4\x6b\x2e\x82\x4a\xe9\xb2\xa1\x64\xc3\x7d\x39\x3d\xb6\x3d\x13\x47\xaf\x1b\x97\xb0\x09\xf4\xaf\x02\x0a\xf4\x63\x69\xa5\x63\x66\xb5\x74\x04\xbd\x5f\x64\x9a\xb3\x2d\xaf\x5c\x50\x95\x53\xfd\x3c\xab\x82\x22\x1d\xa4\x59\xc6\x95\x0e\x09\x69\x54\x6f\xeb\xac\x22\x35\x0c\xa2\x24\x0a\x4d\x96\x2b\x0f\xa9\xfb\x4a\x51\xe2\xbe\x0a\xd1\xf2\xc2\x0e\x77\xd3\x13\x17\xba\x51\x79\xc5\x92\xc9\xf8\x1c\x9f\x81\x94\x22\x0a\x57\x8e\x09\x65\xf9\xbd\xc0\x0b\x29\xfb\x17\x89\x64\x47\x9d\x47\xd0\x4a\x14\x92\x42\x6c\xc3\xb9\xc9\xeb\x34\xe8\x92\xca\xa3\x4d\x92\x8c\x08\x74\x39\xa3\xda\x0a\x1f\x8e\x3d\x9f\x01\x62\x24\x98\x30\x57\xc6\xcf\xb8\x6c\xd3\xf4\x7a\x52\x87\xf4\xd6\xd0\xe5\xc7\x18\x9f\x1a\x28\x14\xce\xe9\x3a\xfc\x5a\xd7\x64\x83\x28\xe9\x15\x5c\x2e\x16\x89\x2e\x85\x7d\x9f\x16\x98\x29\xd3\x82\xa8\xe3\x2c\xce\x70\xb5\x6c\x0c\xcd\x27\x15\x16\xf1\x97\x33\xfb\x04\x8d\x39\x54\x86\x3e\x1a\x2b\xc3\xef\x53\x2a\xe8\xbf\x81\xbe\x2a\x32\x97\x6b\x81\x62\xa9\xff\x84\x5e\x15\x36\x99\x19\x92\x82\x70\x4a\x12\x47\xc4\x83\x15\x7b\x38\xeb\x73\x60\x4a\x28\x53\xe1\x45\xe7\x01\x52\xbe\x4f\x01\xa5\x6e\x4f\xe9\xf6\x2f\x36\x6d\x5e\x44\x03\x9f\xd2\xe1\x2b\x50\x93\xe4\xe3\x89\xe0\xe2\x3b\x34\x4d\x73\x51\x45\xc3\x0f\x34\x40\x87\xe3\x93\xd6\x5e\x37\x1b\xd3\x7e\xa3\xf1\x8b\x5f\xe1\xc8\xf0\xc7\x98\x84\x7c\xa2\x34\x90\xa3\x04\xde\x9c\x0b\x87\xf9\x2b\x74\x56\x74\x47\x71\x43\xfb\xe9\x70\x39\x4a\xa4\x3d\x84\x1d\x93\x4d\x03\xf8\xa4\xce\x4e\xac\x1f\xf5\xfa\xab\xa4\x30\xb7\xe8\x7c\xdc\xcf\x28\xa1\x9b\x33\x15\xec\x41\x9a\x0e\x76\xab\xe8\x74\x8b\x9e\x1d\xeb\x44\xa9\x40\xe6\x8e\x96\x07\xdb\xc2\xd3\xd6\xc6\x29\xa2\x3b\xe6\xbd\x99\x1f\x28\xbb\xb8\xb0\x6f\xcd\x10\x96\x53\x4b\x4e\x22\xcc\x5f\xd1\x25\xc5\x5c\x34\x45\x34\xa3\x5c\xed\x20\x49\x8d\x67\x78\x9b\xa3\x4c\xcc\xad\x0b\x75\xed\xc4\x8e\x2d\x4c\x14\xcb\x64\x41\x5b\xfe\xa1\x42\xa8\x5e\xd4\x4a\x36\x9b\xf5\x3e\xd7\x85\xcd\xa2\x94\xaf\x55\xcf\x52\x3e\x9e\xaa\x24\xed\x5f\x24\x6d\x53\x13\xba\x01\xe5\x4a\xfd\x07\x0e\xb8\x52\xbf\x82\x1c\xa6\xaf\xdb\x84\x94\x08\x19\x8c\x86\xb9\x22\xce\x11\x1e\xa4\x89\x1e\x86\xe0\xa0\x54\x54\x78\x56\x7d\xdb\x30\x36\x89\xdd\xed\x5f\x1a\xd4\xef\x10\xcc\x20\xe1\x93\x2e\x12\x5d\x9a\x0e\x0a\xd9\xb4\x41\xf9\x69\x9f\x47\x11\x57\x7a\x50\x75\xde\x34\xed\x4c\xe4\xaa\xc1\x97\x66\x1a\x2b\x9f\xb8\x48\x8b\x1e\x63\x39\xcf\x04\x65\x08\x1c\xc0\x1e\xca\x69\xb0\x83\xfc\x35\x7a\xb5\x50\x08\xda\xb5\x5d\xf7\xa2\x5c\x5b\x7f\xe1\x97\x76\x2b\x78\x39\xaa\x9c\x88\xd9\x4f\xa8\x4e\x38\x0b\xb0\x22\x84\xbc\x3e\x9e\x22\xc9\x61\x27\xfa\xd9\xd8\x93\x4f\x2e\x29\xa6\xf2\x90\x68\xf7\xae\x7f\x75\x2b\x50\xf2\x7a\xc7\x55\x2d\xf0\x86\x96\x2d\x3a\x0e\x3c\x27\xc2\x8e\xef\xa8\x2e\x45\x77\x14\x77\xa9\xbf\xe4\xc4\x82\x2e\xd1\x7c\x12\x5f\x84\xa7\x1d\x1f\x25\x5d\x31\x49\xc2\x3d\x43\x86\x7c\x04\x0a\xca\x7c\xe9\x73\xc3\xd0\x61\x16\x85\xf4\x50\xcb\x4f\xba\xce\x61\xf9\x84\x85\xfb\xa0\x29\x2b\xd3\x14\x91\xa5\x43\x80\xe2\x34\xbc\x35\xfd\xd9\x40\xa1\xb9\x54\x1d\x12\x18\xc5\x7c\xd8\x87\x0e\x87\x43\xdb\x6f\xd2\xdf\xf3\xb1\xc2\x31\xe7\x36\x5b\xb1\x9d\x39\x1f\x4c\x9f\xc4\x62\x8f\x18\xf2\xbc\x82\xb7\x7f\x0f\x4b\x23\x9e\xf9\x59\x2c\xe4\xfc\x57\x53\xd3\xeb\xe0\x7c\x19\x55\xc5\x69\xe4\x3a\xd1\x18\xb7\xd7\x54\x1f\xf9\xcf\x69\xd0\x7b\x40\x8b\xbb\xa2\xc4\x0c\x87\x8c\x19\x11\xfb\xff\xf2\x2a\x04\x62\x37\xdd\x9f\x5c\x6a\xa6\x06\xb9\x41\xc5\x2f\x45\x6c\x51\x6a\x3a\x03\x70\xe6\x16\x51\xb5\xba\x72\xf0\xf6\x9e\xcd\xfe\xc5\x66\xd1\x8f\xd8\xb5\x51\xa4\x55\x55\x9e\x78\x3e\x78\x41\x61\x3f\x53\x12\x20\x4c\x93\x7c\x97\xa2\xc2\x3e\x1c\xfb\xd7\xb7\xae\x5e\xdf\xfa\xd8\xb7\xcd\xe1\x64\xc1\x79\x56\xa0\x2c\xfa\xfe\x4b\xd5\x65\xe8\xbe\x6c\x5e\x4e\x5f\x6e\x78\xaa\x22\xb8\xc5\x7c\xec\x4c\x66\xcc\x70\x58\xe6\x4d\xcb\xe8\x33\x61\xf7\x3e\xad\xa0\x31\x48\x70\x18\xbe\xa2\xf5\xd2\xf2\x28\x2f\x08\x93\x24\xb9\x83\x22\xac\xcf\xb4\x54\xb3\xf3\x8f\x15\x22\x7d\xef\xa4\x06\x22\x6d\x42\xd2\x7c\xe3\x1a\xa5\x78\xda\x96\x17\x2e\xc6\x44\x35\xb6\x85\xae\x6e\xf0\x0c\x8b\x29\x51\x1e\x83\x0a\xd6\x55\x7a\x6e\xe2\x74\xed\xab\xad\x51\x2f\x49\x33\x6e\x1c\xba\x06\x8b\x07\x8f\x4f\x6d\x1a\x84\x2b\x28\x37\x0d\x1b\xeb\xee\x2d\xc6\x3b\x1f\x07\x3e\x9e\xe8\x46\x61\x64\x93\xb0\x02\xb3\x52\x9d\xe4\xcd\xcf\x15\x58\xec\xda\x55\x19\x65\x7c\xd1\x08\x98\xd5\x1d\xb8\x06\x42\x14\xf6\xed\x80\xe3\x06\x14\x75\xb8\xf6\xc2\x27\x75\x18\xf4\xfe\xda\xd0\x66\xa1\xc9\x3a\xfc\x39\x56\xfb\xd2\x52\xa2\xbe\xa7\x9b\xae\xd8\x6c\x94\x23\xfd\x17\x13\xbd\xf2\x71\x4a\x51\xac\x06\xbc\x9a\x45\x2b\x26\xe6\xa8\x44\x94\x45\x68\x66\xca\x6e\x3c\xed\x16\xde\xec\xa5\x29\xd8\xbb\x28\x2b\xec\x6a\x95\xab\xa9\x2e\xaa\xa3\x40\x01\xa4\x29\x62\xd9\x73\x53\x2f\xe8\xe0\x3c\x11\xe2\xa3\x44\x78\x25\x48\x25\xcf\xe2\xd7\xf9\xa4\xee\x53\x79\x68\x0a\xef\xab\x21\x4d\x94\xf2\x72\x44\x5d\xa2\x12\x49\x75\x8b\x19\x85\xb8\x63\x64\x03\x16\x01\x80\x34\xf1\x53\x37\x14\xa6\x7a\x98\x0e\xd1\x1a\xf6\xcc\xb0\x4d\x35\xb5\x37\x03\x05\xb6\x30\x59\xcf\x16\xa8\x16\xcb\xfa\x45\xaf\x46\x16\x36\xe5\xdb\x6c\xf3\x5d\x3e\x3f\x7a\x01\x98\x5e\xd7\xe5\x73\xce\x35\x9f\xa1\x2c\x89\x46\x1b\x4f\x46\x6c\xcd\x2f\xb4\x2a\x26\x58\x4a\x69\xc9\x8c\xe2\xb4\xa1\x8a\xd4\xc0\xf5\xf2\xb1\x5a\x79\xbb\x51\x36\x40\xc0\xb7\xe0\xe5\x4a\x3c\x57\xb7\xf6\x65\xa7\x09\xeb\x15\x38\x19\x7f\xef\x10\x35\xb5\x2d\x1c\x3d\xca\x26\xc4\x2e\xc2\xc0\xa2\x72\x5b\xd1\xe5\xde\xd1\x41\x93\x8e\x47\xc9\xe1\x16\x34\xc9\x57\x5c\xc5\x4a\x57\xb2\xea\xdc\x12\x4d\x94\x4b\x6d\xdb\xf1\xf9\x1c\x4e\x6d\xd3\x7b\x61\x94\xaf\xd4\xe9\x5e\x2c\x39\x92\x8d\xaa\x54\x5c\xd0\xc2\xa1\x71\x9a\x99\x86\x6a\x87\xe3\x5b\x65\x0c\xd5\x9a\xb6\x77\xd3\xa4\x63\xa5\x6f\x8f\x35\xfd\xb4\x02\x43\x9c\x56\xb9\x33\x35\x0e\x96\x6d\xc6\xc8\x5e\x40\x64\x61\x8b\xc1\xc7\xd5\x3f\x8e\x8a\x51\x07\x95\x2b\x94\x71\x1e\x57\x74\xb3\xc7\x27\xbe\xb2\x6c\x8e\x45\xe9\x40\xb9\x5f\x9f\x55\xee\xd7\xd3\x73\xe9\xc0\x81\xe6\xaa\x29\x42\x3f\x97\x50\x43\xfe\x3e\x7d\x88\x8f\x55\x18\x15\xa6\xa3\x24\x8c\xc8\x54\xe8\x15\xce\xbe\xd7\x2b\xaa\xe4\x1f\x8d\x15\xae\xf2\xbb\xf4\xc6\xf9\xcf\xf0\xc6\x25\xb2\xad\x43\x97\xf5\x8d\x23\x6a\x70\xa5\x4b\xc3\xd8\xae\xd5\xed\xd6\xaf\x8d\x06\xed\x54\x6d\x3b\x6f\x07\x9e\xb9\xf0\x76\x85\x21\x11\xc7\xa6\x67\xf3\x59\x5f\x72\xfd\x70\xec\xfd\xb7\x58\xcc\x02\x0f\x13\x84\x51\x54\x44\xcf\x78\x76\x4f\x66\x3b\x51\x9b\x69\x40\x4e\xf0\xcd\x21\x99\xa6\x8b\x4e\x65\x9e\xde\xb6\xfd\x28\x81\xb2\x32\xc2\xf0\xdf\x1a\x2b\x2a\x2e\xa0\x0d\xa0\xf6\x5f\x99\x9a\x46\x65\x00\x13\xf6\x6d\x67\x14\xb3\x51\x2e\xcb\x23\x55\xc8\x97\xca\x6d\x41\x3b\x8e\xf6\xe2\xb4\x6d\x8f\xe1\x51\x22\x8c\xbf\x89\xf4\x8a\x4f\x94\x1f\x5f\x6e\x62\x93\xad\x0d\xd8\x95\x4b\x5c\xfe\x94\x14\xd6\xbb\xca\x9d\x73\x98\xa5\x83\x61\xc1\x5e\x32\xa8\x6b\x5c\x41\xc4\x2d\x2b\x89\x2f\x9a\xc0\xbb\x5b\x16\x15\xbd\x1c\x2f\x47\xc9\x2e\xbd\x75\x8d\x2b\xbb\x5a\xe0\x77\xdc\x2d\xa4\xb6\xa8\x64\xcd\x4c\x1a\x5f\xfe\xb2\x1c\xb7\x7c\xfc\xbf\xa5\x02\x84\x6e\x3a\x4a\x3a\xdc\x7f\xa9\x8d\x12\x6b\xa2\xee\xe6\x68\xd8\x31\xac\xc8\x0c\x44\x34\x13\x2a\xb4\x97\x9b\x6c\x9e\x2a\x80\x0d\x0d\x42\x91\x25\xef\x57\xb5\xdf\x79\x57\xd5\xe9\x40\xb8\x0e\x30\xef\xb4\x0c\x6b\x08\x34\xc4\x41\x79\x7d\xa7\x45\xdf\xb6\xd7\xc8\x8f\xc9\x91\x9a\xdd\x56\xfa\x48\xe1\xa5\x1f\xd1\x30\xe2\xbf\xa9\x9b\xe0\xc3\x0c\x48\xde\x19\xb5\x59\xa2\x15\x82\x2f\x00\x51\x54\xbc\x47\xb7\x3f\xa2\xaf\x2f\x35\x0b\x6b\x3c\xa0\x0c\xfb\xd0\x05\x4c\x4d\x3e\x19\x57\x04\x1a\xf2\x34\x31\xed\xd8\xee\xd6\xc5\x91\x5b\x8a\x91\xbd\xb7\xe5\xe3\xaf\xdd\x13\xdf\x28\xbc\x45\x9d\x45\xd4\x49\x19\x80\x89\xc9\xf1\x99\xae\x8d\x5f\xd4\xfc\xa5\x7e\x9a\x15\x61\x3a\x80\x82\xbb\x93\xc7\x63\x37\x30\x3e\x09\xfe\xba\x6b\x29\x47\x49\x68\x8b\x34\xf9\xa7\xff\x20\xb1\xab\xc3\x34\x2b\x94\x13\xf8\x55\xad\xec\x79\xd5\x45\x85\x83\xb4\x48\xb3\x70\x2d\x8c\xa5\xac\x8f\x7d\x82\x89\x47\x7c\x52\x43\x75\x5c\x6a\x0e\xa3\x70\xd9\xba\x12\x91\x40\x62\x34\x3e\xc6\xd1\xc3\x0a\x6b\xb2\xff\xff\x2b\xd3\xf4\x82\xd3\x6c\xa7\x45\xe1\x68\x48\xe2\x8d\xe8\x2b\x24\x1b\x75\x6a\x0a\xf9\x68\x68\x33\x5a\x60\x40\x6c\x69\xb4\x94\xe5\xc2\x86\x2a\x99\xde\xae\x95\xfc\xe8\x58\x54\x65\x4c\xc1\x6c\x6e\xa1\x03\xfb\xba\xf5\x29\x5d\x06\x4e\xb3\x62\xce\x93\x8c\x4e\x8e\xd5\xed\xfd\x08\xfc\x0f\x11\xc0\xf3\xdb\x16\xda\xcc\x2c\x8b\xae\x5a\x23\xab\x26\xef\xbf\xac\x6c\x4f\x96\xc6\xca\x84\x60\xc9\x35\xe8\x56\x23\x1b\x77\x78\xf4\xa2\xd3\xc1\x4e\x85\x7c\xa2\xc5\xab\xfb\x36\x5c\x9e\xf5\x66\x37\xeb\x68\xaf\x38\x93\xde\xf2\xb9\x4a\x1d\x98\x26\x00\x9f\xa8\x08\x66\x60\x8b\x2c\x0a\x73\x25\x5d\x05\x21\x1a\x71\x5c\xdb\xfe\xda\x48\x14\x6a\x25\xca\x2d\x93\xc9\x11\xb5\x3c\x50\xba\x23\x63\x9a\xf8\xa2\xfc\x48\x3f\x2b\xe4\x5b\xd5\x6e\x18\x65\xc3\xac\xfc\x16\xaa\x5e\xe2\xb9\x7d\xa2\xc8\x60\x9f\xa0\x77\x8b\x10\x21\x5c\x4e\xd2\xd5\xd8\x76\x48\x46\x65\xe1\xb0\xfb\xba\xf2\xcf\xf9\xb8\x0e\xc8\x91\xa4\xab\x7d\x9b\xd9\x19\x6f\x51\x0e\xc9\x00\x0c\xd5\xb3\x9a\xf2\xb9\x59\x91\xaa\x4b\xbb\xc5\xae\xf2\x77\xb0\x31\x3f\xac\xfa\xa8\x21\xfe\xc1\x0a\x0b\x87\x0e\x34\x8a\xae\x29\xef\x10\x88\x0c\xf2\xc7\xc7\x1a\x2f\x57\x64\x69\x6c\x47\x20\xab\xb0\x70\x7d\xa0\xc4\x1f\xd7\x15\xc2\xb8\x0c\xa2\x42\x0e\xb7\xb0\xd2\x9f\x85\x48\x36\x9f\xa8\xfa\xae\x89\x4d\xbe\x6c\x12\xc5\x89\x7d\x27\xf0\x55\xe6\x77\xea\x4c\x14\xf2\xc2\x64\xa8\xdd\x20\xdc\xdd\x18\x7b\x35\xb8\x8d\xcf\x65\x35\xae\xf6\xd3\xd8\xe6\x26\xb6\x0d\xba\x12\xac\x77\x80\xba\xf1\x71\x55\x75\x24\x4b\x1b\x9e\x1d\xc0\x7e\x33\x7c\x32\xf1\xb3\xec\x35\xdb\xed\xa2\x56\xab\x59\xa9\x15\x15\x1c\x4c\xcd\xab\x95\x6f\x37\x45\x1f\x10\x30\xd1\x8f\xf2\x6d\x1d\x26\x29\xa2\x21\x70\x5b\x0d\xe8\x27\x26\x0a\x0a\x6c\xa2\x38\x1d\x15\xb3\x2a\x7b\x7b\x53\x61\xdf\xc1\xd0\xe5\xe3\xb1\xca\xf7\xde\x54\xf0\xee\xf6\x28\x8f\x12\x9b\xe7\x36\x87\x59\x0e\xb6\x89\x5b\x63\xe5\x7a\xfd\xc7\x74\x37\xec\x35\x80\xe4\x48\x20\xeb\x1e\xa2\x8a\x48\x9a\xa5\xea\xf1\x63\x4c\x52\xaf\x15\x12\x18\xa0\x99\xc0\x42\x02\xe2\x26\xe5\x89\x85\x17\x54\x74\x15\x7f\x39\xb5\x51\x3c\x83\x81\x84\x61\xb6\x49\x4e\x04\x18\x47\x5b\x5a\x19\xf5\xb2\x6b\x17\x0d\x33\xbb\xa2\x94\x91\xf0\x18\xde\xc3\x95\xf1\xc9\xd4\x95\xed\x5f\x6c\x16\x6b\x43\xbb\x9a\x45\xa2\x57\xc0\xda\x80\x4a\xe3\x75\x73\x6a\x45\x39\xfc\xb5\x66\x98\x8d\x06\x14\xac\x1e\x99\xe7\x0d\xf8\x0d\x55\x73\x7a\xc3\x5d\xd4\x6b\xa3\x24\x2c\x28\x24\xf1\xed\x1b\x06\xde\xf0\x49\x0d\x5f\x7c\xa1\xdc\x67\xfa\xe4\xf8\x23\xf4\xba\x72\x72\x63\xa8\xef\x6c\xd1\x22\x8e\x38\xed\x96\x8a\x70\xcf\x4f\x25\x96\xfb\x17\x9b\x5d\x33\x3a\x86\x81\x8a\xcd\x9d\xa8\xc0\x5b\x88\x71\xa5\x91\xec\xc4\xbc\xfb\x91\xed\xd2\x75\xe2\xd1\x3e\xd4\xcf\xf9\xa1\x22\xcb\xd9\xbc\x88\xd2\x64\xb7\x07\x6e\x30\xb3\x52\x2b\xa4\xe1\xad\x32\x82\x5e\x52\xba\xf2\x8e\xa0\x8e\xf0\x36\xb6\x22\x54\x3e\xdf\x1b\xab\xf6\xf5\x96\xc2\xd4\x32\x94\x6b\x0f\xb6\x78\x11\x32\x56\xc2\x99\x9f\xa2\xaa\x05\x5f\xa3\x33\x81\xf7\x38\x3a\xa3\xf5\x39\x77\xb5\x7c\x82\x7b\x31\x50\x52\x9b\x9f\xaa\x15\x90\x91\x4a\x02\xd7\x52\xea\x24\xd3\x8a\x30\x18\xd0\x23\x37\xd6\xc4\x6f\xa1\xfc\x36\x3e\x9e\x1a\x6a\x94\xbe\x0e\xd2\x81\x4d\x8a\xd1\x00\x01\xaa\xdb\x15\x16\xfd\xae\xf0\x84\x8a\xe3\xff\x73\xf2\x18\x42\xdf\xf3\x84\xf2\xd8\xbe\x1c\xf8\xc9\xf0\x09\x4a\xc8\x00\x04\xdd\x07\x65\xd4\x6d\xf0\xce\xe2\xf1\xd7\x02\x05\x07\x02\x35\x14\x99\xca\x6d\xfd\x38\x36\xc6\xde\x87\xec\x7b\x34\xb2\x98\x26\xad\x2d\xa7\xd9\x65\x0a\x2f\xeb\x0d\x57\x15\xcb\xc3\x7e\x1a\x9b\x0c\x1d\x7d\xe4\x62\xf0\xd7\x40\xab\xec\x19\x4a\x28\xf0\xa1\x19\x54\x65\xc4\xec\xb4\x86\x29\x33\x34\xf1\x40\x4d\x98\xf3\x74\xbf\x7c\xac\xd0\x47\x69\xb7\xfb\x8c\xe7\xb0\xdd\xe5\x34\x47\x04\xce\x1a\x4e\xff\x8d\x7f\x90\x3d\x81\x02\x0f\xa6\xfa\x13\x8d\x62\xf9\x53\x9a\x64\x62\x05\x3a\xe3\x2d\xfa\x1b\x2d\xaf\x95\x7f\x16\x19\x93\x30\xd8\x67\xbc\xcd\xe7\x0e\x28\x6f\xe3\x5a\x3e\xc5\x60\xc2\x24\xfd\x77\x4a\xc0\xf7\x6a\xa0\x94\x39\x36\x30\x7a\xd1\xee\x7b\x57\xe5\x26\x03\x9b\xe7\xa6\x67\x77\x53\x0f\x01\x59\xe2\x55\xa4\x81\x7c\xa2\x7d\x9a\xce\xe2\x2a\xf0\x2d\xa8\x7c\xbb\xee\x42\x79\x11\xa2\x97\xea\xd9\x94\x67\x5d\x60\xdc\x37\x06\xd4\x0f\x6f\x82\xe7\x1b\x44\xd9\x28\xc9\xe7\x14\x2e\x69\x27\x23\x01\xb1\x63\xdc\x41\xc3\x4c\x36\xd1\x86\x93\xcd\xf8\x8e\x7a\xed\xbf\x5f\xc9\x4b\x5f\x8f\x2c\xdc\x92\x95\x84\xc5\x21\xa7\x97\xd6\x70\x06\x52\x1f\xa9\xd8\xec\x11\xbd\xfb\xcf\xeb\x7b\x96\x01\x72\x98\x66\x99\x0d\x59\xf8\x4b\x9a\x71\xba\x4b\xf7\x94\x2a\x24\xc6\xcb\xf9\x5e\xba\x6e\x66\x56\x04\x7e\xa7\xfb\x6c\xac\x91\x4a\xca\x6a\xe2\xfb\x41\x45\xf2\xd4\xf3\x1c\xbf\x19\x54\xd1\x66\x2e\x7b\xfc\x26\xbd\x71\x67\x80\xb3\x70\xb8\xca\x98\x44\xc1\xe6\x4a\xb0\xc7\xbd\xf0\xff\xf4\x39\xbf\xe1\x7f\x86\x9f\x43\x77\xe1\xba\x92\x00\xbb\x4f\x3f\x2d\xa0\xf9\x32\x62\x97\x5f\xa0\x6f\x45\x80\x37\xd7\x6a\x7c\x75\xc1\xc5\xb2\xe5\x3b\xe7\x18\x57\x83\xc7\x78\x78\x8b\xe9\x17\x5e\xab\x13\x72\x28\x07\x1d\x16\xcb\x5b\x58\x5c\x44\xf3\xa3\xbc\x41\xe5\xc5\xfa\xaa\x57\x07\x2c\x9f\x28\x6b\x75\x8e\x3d\x04\xbf\xd1\x2a\xdf\x9d\xb4\x46\x64\x4b\xec\x8f\xb2\x2c\x0a\x0d\x3b\x20\xca\xed\xd0\x05\xb1\x05\x9a\x62\x7b\xcc\xd2\xba\x81\x4a\xc1\x74\x68\x5f\x46\x85\xd6\xf4\x44\x19\xd8\x79\x5e\xe8\xd6\xa2\xaf\x0d\xa7\x22\xd6\x23\x46\xfa\x0d\xe7\x12\x77\xab\xd6\xdf\x33\xef\xdb\x18\x1b\x22\x86\x3c\x2a\x8d\x7c\x5c\xd7\x73\x49\xd2\x82\x59\x8e\x98\x74\xe0\x23\x21\xe1\xf8\x6f\x31\x67\x11\x2f\x82\xce\x20\x2d\x76\xb7\x01\x67\x26\x4a\x66\x15\x9e\xf2\x92\x66\x6d\xd3\x8f\x57\xca\xdf\x28\x1f\x5e\x1b\x57\x00\xb2\x26\x72\x45\x3e\x64\x7d\x67\xb1\x07\xf3\x89\x0e\xd7\xe3\xb4\x5b\x70\x94\xe5\x7c\xa0\x1c\x80\x69\xa7\x5a\xb1\xa7\x9b\x26\x2e\xbc\x26\x26\x84\x2f\x06\x3c\xc4\x95\x61\x64\x09\x62\x0d\x2b\xf7\x1f\xd4\x2a\xc4\xc6\x29\xb5\x76\xca\x6f\x70\x3e\x40\xe5\x98\x93\xf6\x93\xc7\x8e\xbc\x3e\xca\xa2\xb0\x3f\x47\xff\xca\x29\x3a\x9a\xac\x92\xaf\xd3\x97\xf0\x0e\x89\x35\x11\x08\x62\xc0\x34\x30\x87\xee\xd6\x79\x91\xb3\xd0\x29\x97\x01\xd1\x89\xfc\x0c\xdf\x80\x25\xed\x92\x02\x31\xbe\xaf\xcb\x61\x51\x62\xe2\x78\x8d\x30\x08\xac\x0a\x4d\x51\xb1\xe4\xbd\xe5\xa7\x30\xa6\x6f\x04\x95\x37\xd2\x70\x2e\x64\xd7\x68\x82\x63\x07\x3a\xa3\x33\x87\x0d\x2f\x64\x96\x1a\x07\x82\x42\xc3\x08\x42\xf8\x8e\x01\x59\xbe\x5e\x56\xab\x6e\x3d\xed\x50\x08\x1d\xdb\x76\x01\x0a\x3a\x20\x0d\x82\x20\xf0\x71\xab\x4e\xad\x39\xb3\xc3\x34\xe3\x5e\x0e\x42\xd9\xc6\xa4\xe2\xb3\xd4\x70\xca\x65\x7b\x5a\x4f\x28\x05\xb8\xe4\x79\x7a\x15\xd8\x6f\xaf\x68\x57\x6d\x64\x96\x08\x62\xb8\xb9\x82\x15\xff\x31\x28\xb1\x60\x9e\xfe\x1f\x63\x92\x37\x74\x7d\x00\x87\x93\x64\x32\x0c\x40\x50\x57\xc6\x7e\x99\xbc\x83\xcd\x13\x01\x32\xfc\x83\x24\x40\x2e\x27\x9d\xf8\xd9\x29\x51\x6b\xac\xd6\xd2\x92\x57\xb5\xba\xf7\x2b\xf6\x31\xe0\x97\x61\xe0\xff\xaf\xc0\x83\x8b\xb1\x8c\xf7\x6e\x9f\x56\x91\x2e\x1f\x9f\x49\x0a\x1b\xa7\x43\x2e\xd4\x70\x58\x31\x56\xb0\xd9\x3f\xd5\xfd\x6d\x53\x64\x69\x12\xbd\x4e\x80\x28\xdf\x94\x08\x94\x2a\xf9\x25\x95\x14\xe5\x85\x35\x9d\xb5\x72\xcd\xdc\xc2\xf3\xdd\xba\xa2\x3c\x04\x58\xc2\x90\x4f\x02\xe1\x08\xb6\x47\x39\x5e\x26\xbe\x0f\x9a\xe5\xd8\x17\xb7\x14\x2b\xe4\xb4\xa2\x44\x14\xe2\x74\x0b\x44\x3b\x7e\x84\x8f\xd5\x62\x1a\xc7\xd1\x8c\x56\xbc\xb9\xac\xe2\xad\x4d\x2d\x0c\x30\xcd\x66\x7e\xa9\x49\xc0\xbe\x8e\x16\xb4\xd8\x08\x94\xa0\x85\x97\xfc\x62\x15\x2a\x31\x8f\xc5\x0b\x7e\x37\x50\x41\xe6\xa6\x2e\x8a\x9c\x0c\x5e\x90\xb2\xe2\x28\x2e\xa2\xc4\x28\xe5\x64\xa9\x6e\xf9\x45\xff\xbc\x36\xef\x80\x97\x36\xf4\x0b\x05\x95\x5b\x0e\x5c\x11\x10\xf7\x77\xbe\x96\x66\x73\x0a\x63\xba\x63\xe2\x67\xf9\x93\xb4\x66\x62\xf1\xbb\xa2\x6b\x65\xbf\x13\x28\x65\xfe\xe9\xca\xe2\x81\x03\xcd\xcc\x86\xde\x3e\x88\x75\x54\x02\x05\x4a\x7f\x47\x15\x65\x42\xab\x90\x5a\xaf\x8a\x0b\x3b\x64\x31\xc4\x92\xdd\x17\xd2\x43\x93\xad\x94\xc9\xed\xc2\x61\xde\x53\xff\x94\x6e\x8c\x8f\x15\xa0\x36\x36\xc7\x0c\xfb\x3d\xba\x72\xd8\x71\xfa\x5b\xe1\xbd\xd4\x18\x16\xe6\xfd\x68\x48\x64\x1e\xd1\x19\x12\x1b\x22\x4f\xed\xbc\x38\x05\xfb\xfe\xfa\xc1\xf9\x66\x92\xd2\x25\xb1\xfc\x2a\x2d\x9b\x22\xc5\xaa\x30\x1a\x16\xaa\x92\x5e\x84\xea\xe3\xa0\xa1\x14\xf4\x6a\x34\x96\x7b\x36\x1b\x30\x4c\x4b\x5c\xb9\xe9\xe3\x22\xdb\xb9\x9d\x05\xb6\xf4\xb5\x43\x4d\xd3\x59\xb1\x59\x11\xe5\xbc\x03\xa0\xe3\x84\x22\x0c\xb2\x2c\x8e\xf4\xd1\x78\xf9\xac\x4e\x0e\xa6\xdc\x9b\xe8\x47\xb1\x52\xc1\x33\x89\x8f\xb5\xa5\x5b\xdf\x9a\xc2\x66\x73\xbe\xfb\xf7\x11\xc6\x09\x1a\x7a\x73\x2d\x5a\x7c\x9c\x76\x4e\xb9\xf8\xf0\x89\x2a\x33\xef\x9c\xa8\xb7\x3b\x0a\x97\xd3\x74\xc6\x87\x13\x3b\x5a\xbe\xe6\xce\x71\x02\x16\xec\xab\x35\x14\xbf\xa5\xa6\x29\x0a\x9b\x38\xb6\x94\xc3\x50\x7b\x95\xf6\x42\x71\xec\x4c\xd6\x1b\x95\x09\x6c\x8e\xfe\x24\xb2\xa0\xef\x06\xaa\x42\x74\x43\xbd\xf7\xcf\x14\x3f\x68\x6e\xa2\xda\x19\xf7\xa7\xd4\x11\x0e\x7f\xad\x19\xda\x38\x56\x12\x83\x97\x95\x6b\xcf\x65\x9f\x65\x16\x59\x34\xb4\x95\x30\xee\x7c\xc5\xd2\xb3\x0e\xa8\x5c\x98\xa4\x17\x0b\x00\x42\xe4\xfc\x2b\x3a\xff\xdb\xc7\x04\xe1\x5a\xe2\x21\x69\x36\x42\xe1\x7a\x8b\x28\xf7\x5b\x13\x05\x0a\x4f\x46\xf9\xe3\x3e\x38\x9d\x9b\xf8\x24\x6f\x07\xed\x40\x48\x72\x76\x4f\x1a\xfb\xf6\xf1\x03\x79\x0a\x95\x7f\x3c\x84\xb7\x11\x0f\xaa\x72\x85\x10\x65\x41\x8e\x05\x04\x18\xcc\x67\x60\xe8\xcf\x57\xbd\xa9\xe2\xb5\x3d\x65\x26\x8b\x15\xfc\x3c\x02\x72\x87\xf4\x72\xcf\xf1\x1c\x0d\x44\xec\x3e\x6f\x63\x93\x00\x42\xae\x31\xa1\xb5\x8e\x3f\x3e\xf6\xc5\xbc\xdb\x4a\x77\xee\x03\x9a\xfe\x20\xb3\x73\xa9\x00\xa3\xe2\x56\xf0\xbc\x1b\x15\xaf\xa5\xa3\x2c\x81\xed\x52\xc3\x51\xb6\xaf\x69\x12\xc4\x35\xd5\xd7\xeb\xa5\xe5\x88\xc3\xca\x25\x66\x84\x4a\x46\xe9\xac\xeb\x0c\x15\x7d\x32\xcd\x49\x47\x05\x21\xaf\x10\x44\xde\xa0\x1c\x48\xcc\x97\xca\x1c\x48\x04\x82\x9e\x56\x2d\x90\xd8\xc6\xb4\x53\xba\x3e\xb2\xd2\x88\xdc\x0c\xbc\x2c\x02\x0b\xa0\x4a\x9d\xef\x29\x6d\xa1\x28\x51\x29\xaa\x06\xf0\x72\xe0\xe3\x5a\x81\xf5\x15\xc3\xf7\x8f\x5a\x0a\x30\x9b\x7c\xec\x22\xfc\xee\xc8\xca\x1a\x0f\x9e\x26\xd7\x02\xf9\x64\x6a\x5e\xbc\xd4\xcc\x07\x36\x8e\x95\x9b\xed\xc6\x58\xa1\x73\xaf\x2b\xba\xf8\x3b\x53\xd3\x9b\x76\x95\x15\x33\x18\x3a\xec\x81\x26\xbc\xf1\xf1\xd4\x5e\xb4\x6f\x5f\xb3\x13\xe5\xce\x3b\x52\x77\x33\x45\x02\xce\xf5\xee\x4c\xd6\x2b\x23\xe0\x88\x51\x1c\x40\x42\x63\x8b\xe5\x63\xb7\x93\x93\x4a\x57\x34\xb0\x33\x3e\x82\xdc\xa1\x76\xcb\x3b\x54\xdf\xc5\xff\xff\x54\xe1\xb9\xd2\xac\xb0\x3d\x93\x2b\xbb\x0d\x6e\xd8\x89\x43\xbe\x8f\x68\xcf\xab\x6b\xfc\x19\x95\x1a\x51\x7e\xd9\x74\x4f\xbf\x5c\x7a\xd9\x13\xdf\xc9\x5a\x79\x89\x2b\x1d\x0d\x8c\x0a\xea\xe7\x96\x63\x0d\xd7\xf4\x28\xf0\x82\x7e\x30\x05\xc6\xb4\xbf\x35\xb5\x17\x1c\x9c\x6f\xc6\xa6\xc7\x2f\x59\x14\x2d\x29\x38\x16\xad\x4b\x0d\x9a\x7d\x2d\x2a\xf2\x51\x43\x21\x5a\xcf\x57\x94\x03\xf5\x84\xcf\xcd\x00\xd0\x57\x0c\x84\xfb\x9c\x5c\x39\x17\x70\x07\xc8\x59\xd7\xed\x40\xb3\x96\xbf\xd0\xf8\xc5\xaf\x54\xa9\x2b\x22\xe9\xed\xe3\xd9\x62\xac\xd4\xe0\xb8\x17\xc1\x55\x3c\x2a\xc0\xa0\xac\x75\x73\xac\xd0\xbf\x67\x82\xc6\x97\xbf\xec\x2c\x33\xe8\xa5\x00\x7c\xfc\x13\x65\x79\x04\x4d\x3c\xd9\xcf\xca\x97\x82\x81\x71\x6f\xac\x1a\x84\x73\x2d\x0a\x5d\x94\x15\xc7\xab\xae\xbe\x4d\x2b\x96\x80\x88\xcb\xe7\x8e\x48\xf6\x51\xe0\x05\x31\xe7\x26\xfa\x49\xdc\x55\x76\xd6\xbb\x27\x35\xdd\x7a\x3b\x1a\xf6\xd3\x4c\xc6\x2c\x07\x8e\xaa\x19\x7a\x52\x29\xdf\x0e\x33\x5b\xb0\x23\x98\x4b\x4d\x7c\x9a\xa2\xd1\x04\xa3\x30\xb4\x8c\xdb\x40\xc0\xf6\x5b\xca\x40\x80\xd7\x19\x84\x03\xbf\x4c\x43\x9d\xc7\x66\xf0\xbc\xc2\xbb\xda\x95\x88\xd8\xe5\x73\x9e\x1d\x7e\x53\xf1\xff\xe0\xbe\x8a\xfb\x7f\x38\xf6\xa0\xa7\xcf\x02\x2f\x01\xf8\x50\x55\xcf\x57\xa2\x3c\xa2\x0c\xb0\x7c\xb3\x22\xdf\x54\x7e\x85\x44\xec\x35\x32\x51\xdd\xd8\x0c\x64\x7f\xe5\xa2\x30\xbd\x41\x29\x10\x4b\xe1\x70\x94\x44\x05\xb5\x71\xb1\xf8\xa0\xd4\xcb\x00\xdd\x0a\xda\x41\x51\xa5\xde\x51\x6b\xf4\x6a\x99\x2a\x75\x58\xc9\xd7\xf9\x90\x1f\x14\xfa\xfa\x1d\xba\x4e\x3e\xc6\x77\x48\x42\xe7\x99\xe1\x2b\x69\x3c\x1a\x58\xac\x6c\xe8\x2a\xa0\xa1\xc4\xc7\x6a\x39\x7f\xdd\x20\xaa\x95\x57\x00\x53\x2e\x3e\xae\x72\x42\x62\xa8\x12\x20\x9b\x3f\x4e\xb7\xc2\xc7\x9a\xd7\x69\x8e\xd9\x7c\xce\x13\x09\xa0\xc5\x24\xcb\x1f\x5d\x10\xb6\x8a\x1f\x6a\xe9\xd1\x4b\x6a\x0f\xf9\x61\x1d\x39\xc7\x0c\x87\xd6\x64\x6e\xb5\x66\x29\x20\xc5\x8d\x9a\x6e\x45\x2d\x2e\x36\x3b\x59\x94\x2c\x73\xf7\x4a\xfc\x11\xb4\x59\x42\x15\x1a\x64\x3b\x2f\x96\xbb\x26\x66\xd4\x5d\xcc\x67\xa9\x81\x95\xd3\x13\xd3\x96\x65\xf8\xf1\xd6\xd9\xcc\x13\x19\xf1\xce\x89\xc2\x9f\x09\x34\x0d\xf7\x77\x5d\x55\xab\x36\x14\xb5\x62\x57\x8b\xe2\x58\xe0\x55\x4f\xa0\x45\x21\xda\x0a\x3b\xbf\xe4\x89\xe5\x47\xe6\x1d\x4d\xa7\x7c\x55\xa8\x92\x72\x44\xcc\x1f\xc6\x8d\x61\xa2\xef\x9c\x78\x04\xf4\xdb\x34\x05\xd0\xb9\xb8\xae\x0c\x82\x6e\x63\xe5\x95\x82\x1f\xbd\x0c\xd9\xfa\x9f\x54\x68\xff\x74\x08\xb1\x11\x3f\x12\xe7\xdd\x25\xfa\xae\xe0\x2e\xac\x53\xce\x5c\x62\xdf\x82\x6f\x9c\x38\xc6\xfb\xec\x44\x21\x57\x6e\xd6\x08\x33\x13\x36\x9c\xd2\xd3\x0a\x3f\x04\xa6\xee\x88\x72\x40\xc8\x12\xbb\x0e\x8f\x9e\x78\x2d\xed\x27\x15\x9c\x05\x73\x63\xf8\xa4\x52\xeb\x5c\xde\xeb\x41\x2e\x4f\xb4\x3c\x86\xe3\xb1\x96\xda\xab\xaf\x8c\x2b\x92\x86\x6e\xb4\xff\xc7\xcf\x21\x5e\x47\xf6\xb3\xa3\xa5\x1a\xce\xeb\x08\x40\x00\x6a\xdf\xa2\x27\xc5\x7e\x0f\x0a\x42\x70\x09\x8b\x38\x3e\x7e\x67\x6a\xa1\x59\x38\xdc\x5c\x35\xd1\x8a\xcd\x66\xa8\xea\x83\xd4\xe1\xec\xd8\x37\xde\x2f\x29\x63\xf0\x1f\xd7\x18\xa4\xbe\x42\x28\x6c\x5a\x80\x50\x76\xfe\x29\x0d\x19\x8c\x12\xc0\xad\xd0\x98\x38\xad\x8a\xd6\x1f\x4e\xed\xd5\x47\x8f\x36\x49\x47\x85\x1e\x82\x74\x7e\xca\xc7\xc6\xc7\x35\x6f\x6f\xa9\x59\x64\x26\xc9\x87\x69\x06\x70\xbf\x48\xd2\x60\x22\x08\xce\xa6\xe1\xc5\x6a\x30\x64\xf9\x1f\xa6\x02\xbc\x7d\x0b\xcd\x8c\xb4\xea\x9d\xae\xbb\x36\xd8\x7a\xa8\x14\x65\x37\xea\xb4\xea\xc9\x40\x51\xeb\xea\xcd\xb5\x2a\x2a\x62\xbe\x18\x89\xc5\x07\x2f\x64\x5d\x2b\x0b\x99\xd5\x38\x5d\xcd\x97\xa3\x46\x65\xa3\x76\xa0\x93\xdf\x9b\xfa\x59\xd2\x3e\x8d\x3a\x76\xd6\x67\xbb\x77\x54\x77\x9e\xad\x6a\xd1\x8d\x40\xf6\x21\xbd\x16\xd5\x88\xb1\x49\xf2\xf2\xec\x14\xa0\x18\xf3\x14\x39\xa4\x88\x75\xd0\x38\x44\xcd\xfd\x41\x1d\xb6\x07\x62\xbf\x88\x2b\x39\x69\xa1\x54\xed\x33\x8d\x87\xfd\x23\x05\xce\x39\x16\xff\xd3\x7f\xd0\x31\x85\x09\xd3\xc1\xb0\xa1\x00\x47\xeb\x1a\x70\xb4\x5e\x23\xe0\x77\xa8\x39\x0c\x79\x6b\x64\x93\x1e\x4d\x2c\xb8\x38\x75\x71\x47\x8f\x36\xcd\xc0\xbc\x1e\x25\xbd\x59\x9a\xe7\x52\xaf\x2d\xef\x0e\x91\xd2\x8e\x96\xda\xdd\xc7\x6a\x6d\xfb\x4b\xed\xb2\x53\x8e\x35\x9e\xf5\xe2\xac\xa2\xf4\x72\x6f\xd7\xe4\xbc\xaf\x36\x3b\x36\xcc\x6c\x45\xb3\x9f\x35\x02\x25\x2b\x54\x78\xf5\x51\x92\x08\x7f\x03\x13\x08\x61\x31\x1f\x2b\x74\x6a\x37\x8b\x6c\xd2\x89\xd7\x68\xb4\x22\x3f\xbd\x85\x8d\xc2\x05\xc6\x6e\x99\xb9\x38\x75\x59\x2f\x35\x47\x85\x33\x5f\xf1\xed\xa7\xd3\x01\xad\x01\x7c\xa2\x8a\x0d\xc4\xa3\x5b\x89\xec\xea\x2e\x5f\x4a\xf9\x04\xef\x48\x04\x0b\x66\xbc\xbb\x22\xc3\x64\x51\xa8\x5c\x57\x23\xe8\x86\xce\xf1\xd6\x5d\x25\xc1\x24\xbd\x51\x94\xf7\x1b\x1a\x19\xd0\x50\x32\x39\xdb\x67\xfe\xc1\xf9\xe6\x28\x01\xc7\x5d\x8a\x25\x0e\x13\xe3\x25\x1d\x15\x69\x01\x3e\xe5\xc5\xe3\xf4\xea\x91\xc0\x5f\x54\xe2\x29\x57\x95\xe0\xd1\x93\x2d\x0f\x23\x7b\x67\xec\x5d\x53\xde\xa5\xb5\x08\xd8\x15\x08\xfa\x88\x23\x62\xb9\x53\x23\xf8\x3d\xa7\x85\xd7\x2f\x2a\x53\x99\x34\x89\xd7\xbe\x40\xb7\x2e\x12\x53\xe5\x97\xa1\xdc\xf0\xf1\xd8\xf7\x24\x1f\x2a\x67\x0d\x90\x49\xb0\x35\x3c\x08\x94\x13\xd0\x95\x71\xc5\x53\xde\xf7\x46\x99\x27\x8e\x6d\x6b\x07\x89\xc0\xc8\x72\x05\xcd\xe9\x3b\x28\xa7\x3b\xdc\x73\x19\x8b\x02\x5c\xbd\x7b\x42\x61\x81\x80\xa0\x69\xa3\xc6\xbd\x5e\x43\x8c\xe0\xba\xd8\xe5\x60\x11\xe1\x43\x82\x8d\x88\xb2\x59\xf9\xd8\x9c\x4c\x83\x57\x9a\xbc\xa5\xfc\x07\xde\xc4\x4e\xc4\x14\xd3\x1a\x87\xdb\x66\xc7\xb6\x47\xa8\x78\x73\x8e\x14\x28\x18\xee\x19\x55\xf0\xe9\xf4\xd6\x68\xcd\xc3\xcd\x02\x15\xe0\xb6\xbb\xf2\x59\x49\x40\xd9\x70\x5a\x43\xeb\x75\xa5\xc2\xd1\xcb\xcb\x2f\x23\x93\x63\x6f\x13\xfa\x00\x12\x5a\xc0\x78\xb1\x26\xbe\xa9\x74\xa0\xfb\x86\x0c\x2a\x0b\x1b\x25\x5c\x0b\x97\xfd\x4d\x59\xba\x5f\xd0\x22\x27\xb7\xdd\x50\x77\x79\x80\xe7\x02\x7e\x88\x77\xc8\x27\x53\x6b\xdd\xd7\x17\x0e\x37\x19\x6f\xba\xe0\xb0\x5a\xf4\xdd\x02\xd6\xaa\x49\x1d\x86\x69\x5e\x70\xad\x1d\x51\xd1\x55\x95\x39\x5c\xad\xc0\x15\xb3\x15\xbb\x97\xae\x1b\x8b\xc8\x79\x1a\x9a\x02\xb9\xc7\xed\xc9\x59\xc3\xc9\xab\x9f\x1b\x6b\x55\x2e\xbc\x24\xfe\xbc\x9e\xe2\xf7\x54\x6b\xf5\x14\x26\x87\x44\x72\xb4\x54\x21\x3b\x38\x43\x01\x86\xd8\x2d\xd5\xb4\x72\xbb\xe5\xea\xa9\x4c\x60\xce\x2b\x92\x8c\xe7\xb4\xd9\x63\xe4\xef\x93\x26\xbc\xa4\xd5\x29\x5c\xd6\x4b\x2a\x16\x26\x11\x99\x5d\x47\x26\x77\x1f\x3a\x55\x67\x70\x16\xa6\xc3\x35\x97\x1b\x60\xee\xa2\x0f\xc8\xc7\x53\x12\x97\x2f\x35\x6d\xef\x3f\xe8\xd1\x16\x20\x22\xb3\x2a\xda\xab\x13\x3e\x78\xb5\x19\xc6\xa9\x73\x41\x65\x1d\x3d\x8d\xf6\x3c\x59\x29\x65\xaf\xe5\x36\xee\x36\x94\x71\xc1\x4d\x5a\x3f\xc4\x1d\xe9\x79\x4d\xa7\x1d\x11\x0c\x0e\xcc\x01\x8d\xbd\x10\x85\x4b\x2f\x3f\xb5\xff\x50\x95\x69\xa4\xc4\xfe\xa6\x49\x41\x47\xe6\x9b\xab\xd6\xc4\x45\x3f\x2a\x33\xa0\xaf\x2f\xf9\xc2\xb7\xf7\xad\xba\xec\xb9\x9c\x9d\xd7\x46\x79\xc1\x1d\x85\x43\xba\x76\xe1\xbc\x3f\x55\xed\x29\x5f\x8e\x48\x74\x57\x55\x19\x95\xb8\xf1\x6d\xad\x95\xf6\xc9\xd8\xc7\xab\xb7\xc7\x9a\x63\x9d\xc6\xb3\x8a\x6a\x05\xb9\x03\x6d\x65\x8b\x3c\xe1\x04\xde\x8c\x84\x67\x3e\x58\xc9\xfb\x76\xc5\x64\x9d\xc4\x74\x5e\x07\x72\x12\x51\xd9\x49\xcc\x05\x3e\x09\xfe\xf6\x74\xe4\x51\xf4\xa3\xac\x58\xcb\xd3\x81\x25\x1e\x1f\x32\x0d\xac\xfe\xf7\xc7\x8d\xaa\x8d\x99\x88\xb4\xcc\xb6\x6a\x74\x05\x86\x69\x9e\x47\xed\x78\x0d\x26\xb0\x22\xa0\xe4\x7d\x6a\x81\x7b\xc1\xfe\xf1\xa8\x22\x23\xfe\x5a\xa6\x74\x80\xee\x6a\x40\xff\xb4\xc1\x05\xc6\xb7\x1b\xde\x75\x3e\xf6\x7a\x01\x19\x98\xb5\xe7\x54\x75\x76\x77\xcb\xd3\x62\xb6\xc6\x8d\x5f\xf8\x25\x5e\x59\xdf\xa4\xb8\x14\x2b\xf9\x5f\xe2\x35\x4b\xd9\x53\x8d\xf0\x4d\x2c\x0c\x1c\x61\x04\x1e\x51\xf9\xfc\xc4\x7b\x65\xbf\xe9\xfb\x11\xe9\x33\xa4\xf9\x82\xe4\xf6\x5f\x61\x21\xc2\xab\x3f\xce\x8b\x17\xea\x1d\x6c\xf0\x81\x42\xce\x0c\xf1\x37\xb1\x4e\xf3\xdb\x46\x80\xf5\x43\x5d\x2f\xb8\x4f\x0f\x13\xbb\xd8\x67\x75\x6d\x42\x93\x11\x97\x14\xe3\x57\x9a\xc4\x0d\x67\xe6\x7b\x49\xc5\x75\xb1\x29\x6c\x5e\x3c\xe6\x8b\xb8\xb7\xb1\x15\x4a\xa9\x44\xf9\x56\x6d\xb3\x84\xa4\x0b\xc2\x1b\x05\x3f\xc1\xa9\xd9\x96\x4f\x50\xca\x6c\xf4\xd0\x64\xfa\xea\x97\x13\x75\x0c\x40\x2c\x22\x74\x59\xa1\x13\x7b\xdb\xfb\x71\x25\x3a\xd9\xbe\x33\x53\x5f\x2e\x1b\xac\x35\x54\xac\xfb\xb6\xf7\xdc\xfe\xaf\xde\xae\x23\x74\x95\xa1\x72\x66\x22\xe6\x8a\xa2\x1e\xf5\x3e\xb6\x48\x3e\xf1\x5a\xd2\x66\x40\xee\xad\x4e\x93\x1a\x50\x7b\xf1\x41\x9e\x0e\xaa\x9b\x6b\xe9\x28\x2b\x57\x3c\xe5\x02\x78\x07\x91\x0a\x4e\x66\x5a\xde\xa4\xf9\x92\xaa\x75\x15\x51\x11\x5b\xee\xc3\x4b\x83\x5b\xa9\x4c\x6f\x68\x82\xfa\x51\x85\xcf\x21\x7b\xff\x5d\xbe\x16\x78\x5f\x15\xef\xb8\xa2\x28\xbd\x06\x0c\x3b\xe9\x36\x78\x6e\x22\x36\x08\xe0\xb7\xb6\x82\xe7\x94\x5e\x41\x52\xd8\x24\xb4\xc4\xac\x17\x5d\x68\x08\x70\x08\x7f\xb4\xfc\x2d\x3e\xc6\x10\x17\xb6\xb0\xea\xa5\x9c\x55\x8d\xa6\x53\x0e\x74\xb0\x6c\xd7\xf6\xf8\x79\x77\x01\x91\x9d\xb3\xca\xf2\xfe\x79\x97\x7c\xf1\xfe\xda\xbf\xdf\xaa\xc8\x22\x37\xbc\xd6\x1b\xc6\x99\xac\x35\xe5\x95\x30\x56\x91\xdf\xe8\xdc\xc4\xab\xa5\xfd\x6c\x8a\x41\x73\x64\x7e\xa1\x69\xbb\x5d\x4b\xe6\x6b\xcc\xb1\x65\x8f\x8e\x8a\x5f\x87\x53\xb8\x35\x49\x54\x18\x56\x35\xc2\xda\x0e\x37\x03\x3e\x9e\xd4\x60\x98\xda\x59\xba\x2c\x7d\x05\xad\x80\xc8\xc7\x15\x06\x40\x7f\xd4\x99\xf3\xa5\x2a\x16\xf1\xe2\xf8\x46\x61\x11\x2f\x2a\xe6\xe3\x5d\x7a\x15\xfc\x01\x27\xc5\x0b\x3d\x7f\x61\xc5\x33\x2a\x4f\xe9\x4c\x9c\x52\xc8\x29\x3b\xe8\x13\x75\xc2\x75\x7d\x2e\x04\x9e\xae\xa0\xeb\x4b\x1d\x6b\x8a\xfe\x2e\xba\x26\x3c\xd0\x1f\x8e\x7d\x80\xb1\x03\x86\xae\xd2\x54\xf1\xb4\x32\xae\xd8\xbb\x13\xbd\xb5\x7a\x74\x81\xc9\x7a\x36\x29\x22\x11\x53\x96\x0d\x5d\x99\x2c\x6f\x56\xbd\x50\xa3\x63\x33\x7e\x42\xde\xa1\x78\x4d\xc4\x9d\x3d\x13\xed\x5c\x1d\x9b\xba\x18\xb1\x3a\x9f\x84\x63\x4a\xb3\xe7\xb2\xba\xdd\xae\xc9\x06\x39\x25\xb3\x22\x6c\x46\x63\x0d\xbb\xea\x3d\xfa\x45\xc0\x29\xd6\x95\xce\x6d\x98\x0e\x86\xb6\x20\xad\x67\xd4\x0c\xb9\x02\x8e\xf8\x18\x70\xc6\xf7\xa9\x94\xed\xb4\xda\x0f\xce\xf3\xa2\x79\x53\x2d\xd5\x65\xb2\xb4\x8f\xef\xe2\xba\x32\x4b\xda\x33\xd9\xbe\x12\xfe\x7c\xd3\xc4\x6d\x1b\x31\x2c\x0b\x55\xa2\x0d\xa5\x40\xf1\x31\x0d\x10\x91\x1f\xf7\x19\x68\x1b\xac\xc2\x19\xa5\xfb\x43\xaa\x81\xce\x14\x85\x76\x71\xe4\x71\xf7\x74\xff\x74\x60\x63\xb6\x5b\xc6\xa7\xa0\x4a\xcd\xc7\x35\x18\xdc\x32\xae\x32\xa1\xe0\x86\x50\xba\xba\xaf\xca\x58\xf7\xd5\x30\xe8\xa5\x59\xbb\xbc\xac\x15\x20\x8b\x01\xcd\x22\x5b\xcd\x57\x18\xa9\x7a\x8e\x7c\x63\x19\x70\x86\xb5\x11\x20\xaf\x4b\x81\x52\x2f\xfe\x65\xdf\x59\x8c\xf2\x22\xb3\x39\xc7\x74\xa8\x5f\xff\xca\xd8\x13\x1c\x7e\x45\x9b\xcf\x98\x2c\x5b\xab\x88\x3c\xdc\x0c\x14\x53\xf6\xa6\xa3\xb2\xaf\x46\x71\xc7\x66\x09\x19\x3c\x39\x67\xa4\x5b\x2a\x7a\x9b\x46\x8c\x92\xc3\x43\xd8\x97\x29\x29\x50\x6b\xbf\x78\x9c\x9d\x2a\xa5\x95\x7b\x5c\x5f\x84\x9c\x45\x4c\xbe\xa1\x64\x82\xa7\xad\x01\x0f\x41\x59\x3d\x0f\x53\x76\xb8\x14\x8b\xf9\x72\x0c\x38\x1b\x84\x72\xa0\x20\x04\xba\xa5\x2a\x5f\xda\x45\xa6\xe1\x61\x5d\x0c\x10\x15\x4b\x19\x2d\x10\x1c\x39\x64\x88\x88\x9f\xd3\x9f\x8a\xfa\xb9\x34\x56\x09\xc4\xb9\x77\x5b\x6b\x51\x5a\x80\x3b\x27\x6e\xf4\xfc\x37\x7f\x73\xa2\x1c\xf6\x36\x68\x67\xd8\xfa\x02\x1a\xba\x58\xee\x7f\x9b\xc6\x24\x2e\xe5\x0e\x2a\x10\xb4\x8a\xfe\xe1\xdf\x68\x29\xde\xfa\xd6\xd8\x63\x3e\x1e\x54\x6d\x34\x9e\x74\x2c\x95\xd4\x69\xd6\xe3\xab\x4f\x69\xd9\xd6\x53\x75\xc1\x55\xd8\xb7\x03\x42\x31\x68\xbd\x1f\x87\x23\xf2\xe2\xce\x3d\x9b\xd8\xcc\xc4\x8f\xa9\x1d\xfd\x9c\x52\x85\xdf\x8d\xbd\x0c\xcb\xc8\x16\xf6\x2a\x84\xff\x7b\xa8\x66\xe0\x6c\x39\x9d\x31\xc9\x71\xe5\x73\x75\x1f\x5b\xa4\x18\x7e\xd6\xd4\xa1\xe2\xa8\x88\x7a\xd0\x2e\x54\x22\x6e\x68\x54\x88\xa9\xfa\xf3\xae\x7c\xd8\x8e\xa3\xd0\xf8\x14\x75\xeb\x34\x80\xfe\xa7\x6b\x5d\x30\x06\x26\x4a\x0a\x13\x25\x33\xf4\x66\x98\x82\xa9\x4a\x6f\x02\x4c\xbe\xad\x6a\xb9\x03\x93\xe7\x2f\x53\x98\x82\xe5\xe8\xcc\x58\x79\xdd\x5e\x56\x0d\xfa\x5b\x4a\x5f\xe7\x31\x6c\x26\x6c\xd5\x81\x05\x5a\x7c\x3b\x6a\x16\x98\x22\xed\xd9\x82\xfc\x56\xb4\xbc\x94\xf3\xd8\x22\x49\x5a\x51\x8e\x33\xf9\x17\x28\xee\xa6\x91\xf8\xde\x73\x58\xf1\x30\x14\xff\x4f\xea\x65\x63\x04\x7c\x4a\x9c\x57\x54\x12\xaf\xe1\x46\x2b\x12\x6f\x0e\xc6\x21\x4a\x1c\x3f\xff\xec\x84\x82\x3d\xbc\x99\x27\x5b\xaa\xd6\xf2\x90\x03\x30\xe7\x9f\xe1\x15\x2b\x37\xf0\x34\xf0\x21\xf4\x78\xf0\x3c\x5f\x68\x29\x9b\x54\xf4\x4e\x30\x18\x9e\x9e\x28\x8f\xa3\xbb\x34\x4a\x50\x71\x3a\x8d\x01\xcc\xa6\xa5\x14\x7a\xb9\x1e\xd5\xbe\x7d\x3c\xc4\xae\x50\xfa\x23\x36\xd9\x0d\xc7\xb1\xda\x39\x95\xdb\x95\x8b\x8f\x35\x59\x1c\xd9\x8c\xc4\x2d\x9d\x0a\x64\x79\xf1\x18\xd5\xe8\x43\x21\x42\x3f\x83\x38\x0e\xf3\xec\xf6\xd4\xb6\xfb\xf3\x65\xf0\x10\x57\x44\x42\xd8\xa5\x5b\xfc\xe8\xf4\x88\x79\xbd\x63\x66\x14\x0e\x03\x48\x10\x95\x8d\x79\xd3\x95\xed\xab\xec\xe1\xaf\x35\x87\xf1\x28\xe9\x01\xf1\x8f\xe0\x00\x88\x13\x3e\x56\x43\xa1\x1b\x41\xe0\x4c\x1c\x1a\x55\x7d\x9f\x63\x16\xf7\x79\xe7\x72\x7a\x3a\x50\x72\x8a\x7f\x54\x6b\x58\x0b\x77\x41\x49\x55\xb1\x83\x7f\xa8\x62\x92\x0f\x7d\xbd\xa1\x9d\x99\x9c\x10\x95\x2a\x68\x3e\xa9\xb8\x85\x27\x2b\x89\xd3\xaa\x19\xce\x2a\x07\x9b\x8b\xca\xd6\xfa\x33\x5d\xe6\x05\xcf\x93\xff\x68\xaa\x8c\xb3\x6f\x5f\xd3\x0e\x86\x71\xba\x56\x51\x23\x07\x26\x4c\x56\x49\x45\xc4\xed\xac\x44\xb9\xcd\xf0\x36\xd0\x2a\xfa\x53\xfa\x7a\x41\x43\x97\xd7\x80\xf2\xc0\x95\xba\xf6\xcb\x20\xea\xac\xda\xbc\x98\xa1\x2a\x2f\xbe\x1e\x88\x58\xf6\x3a\xd4\x9e\x69\x3f\xa9\xd3\x6c\x34\x9d\xbe\x05\x2f\x74\x71\xd1\x1b\x4e\xba\x48\xf8\x2f\xaa\xa4\xe1\x2c\x4c\x13\xde\xbf\xc1\x98\xbb\x8e\x1f\xe0\x13\x85\x0e\xe8\x99\x38\x96\x15\x12\x75\x0f\x24\xca\x7c\xac\xf0\x6b\xce\xe9\x3b\x27\x4a\xa3\x73\xa2\x73\x80\x9a\x1b\x04\x5c\x11\x00\x02\x2d\x2e\xcc\x60\xa2\x6d\x0e\xb5\x65\xf8\x56\x61\x9e\xff\x4e\xa0\xaa\x2a\xb7\x14\x70\x20\x86\x12\x53\xf9\x0d\x2e\x3b\xf2\xda\x43\x17\x94\xec\x7d\x9a\x0d\xfb\x06\xca\x9b\xf5\x9c\x26\xe7\xd5\x6b\x06\x96\x38\x4d\xc2\x3d\xdb\x40\x98\x84\x28\xf3\x7d\x65\x0f\xf9\x43\x5c\x95\x70\x7c\xd5\xda\xce\x14\x32\x84\x59\xb7\xc7\xba\x65\x81\x82\x3b\x7f\x41\x45\xd6\xb1\x1c\x4f\xfc\x8b\x5c\xf6\xc0\x2b\xbf\x39\x95\xca\xef\x5f\x6c\x0e\xac\x49\x2a\xbb\x31\xe7\x75\x52\xae\xdb\xbe\xcd\x1d\xfe\x1a\x02\x6d\xb6\x8a\x2f\x2f\x08\x4b\xc5\x4d\x15\xf8\xde\x54\x48\x9d\x3c\xea\x25\x60\xf8\x2f\x79\x4f\xcb\x83\xd2\x78\x45\xba\x22\x96\x9b\x0d\xa7\xf1\x33\x2d\x39\x76\x64\xfe\x15\x92\x32\x26\x38\x30\x46\x4f\x9d\x52\x99\x53\x02\x4f\x47\x45\x7f\x37\x81\xf2\xc7\xdb\xe0\xf0\x4e\xed\x71\xaf\xea\xf2\x3d\x3d\x51\x28\x54\x5c\x15\xa2\x8b\xc7\x5b\xca\x6c\xe4\x47\x2e\xcd\x4b\x57\x6c\x56\x46\x88\x04\x36\x41\x25\x6a\x5d\x73\x39\x3f\xa0\xaf\xc0\xcd\xbc\xa9\xb8\xfd\x6f\x04\x4a\x9b\xe6\xd2\x58\x57\x85\x7a\x69\x39\x2d\xca\x65\x06\x8b\xdc\x49\x2c\xec\x7c\xe2\x1b\x64\x79\x3e\x1a\xd8\xce\x9c\x02\xe9\x43\x73\x02\xb8\x8c\x6f\x07\xaa\x0b\x74\x2d\xd0\x2b\x0d\x02\x05\x51\x1d\x55\x26\x86\x96\x7b\x62\xd1\x8a\x9d\x53\xe8\x5e\x9a\x38\x68\x3a\x7d\x9f\x0a\x76\x7c\x8c\x11\x82\xd8\xe1\xbd\xb1\x4f\xc8\x6f\xb9\xa7\x63\x12\x13\xaf\xe5\x51\x3e\xa7\xf1\x9d\x2a\xca\x78\x8a\xf6\x15\x27\x96\x5f\x3e\x60\x71\x89\xa3\xef\x96\x4f\x6c\xdf\xcc\x0e\x1c\x68\x0e\x46\x09\xab\xb1\xa2\xd9\x84\xea\x90\xa0\xeb\x1b\xce\xd8\xe7\x91\x36\x76\x88\xe3\x9e\xed\x94\xb1\xf5\x2f\xfc\x92\x00\xc7\x69\x85\x10\x10\xb9\xef\x25\x1d\xf9\xc7\xbf\xa4\xb4\x51\xde\xd5\xda\x28\xef\xd6\xf8\xcd\x2e\x50\x9a\x10\xa7\x62\xd4\xe5\x00\xb0\x4e\x1d\x7c\xbd\xb6\x9c\x8f\x59\x81\xcf\xf0\x0b\xc1\x7b\x93\xb7\x53\x73\xe7\x71\xd4\xc5\x62\x0c\x46\xe9\x55\x2d\xb0\x7e\x55\x41\x0b\x5f\xb7\x59\x3a\xe3\x31\x26\xb8\x18\xc4\x9f\x3f\x51\x2e\xc1\xba\x10\x11\x93\x7f\x1b\x7d\x88\xa9\xc0\x88\xfd\xf1\xa9\xbb\xac\x54\xc1\xac\x6b\xf5\x60\xbb\x51\x1c\x0d\xa3\x24\x7d\xcc\x83\xcb\xcf\x2b\xa8\xd7\xdb\x48\x24\x4e\x6b\x09\x05\xce\xe5\x51\x83\x81\xff\xbf\x6b\x03\x1d\x38\x70\x70\x0b\x56\xfa\x08\xdf\xce\x29\xc6\x41\x3f\x8a\x0b\xb7\xc5\x00\xe9\x73\x5e\xb3\xed\xce\x2b\x5d\xeb\xcc\x16\xf0\x66\x43\x6d\x1c\x0b\x2b\x46\x2a\xfe\xf8\xde\x58\xd5\x9c\x77\xb4\x44\x21\x96\x14\x61\x56\xa2\xdc\x2d\x6d\x0e\x50\xe9\x1a\x02\x67\xea\xa2\xe0\x7e\x9a\x0f\x23\xea\xb1\x39\x28\xc7\x27\xf4\xa4\x85\x0a\xee\x73\xff\x3c\x4a\xd6\x4c\xd6\x99\x51\x15\x8a\x6b\x63\x9f\xbd\x6e\xaa\xa7\xf7\x67\x53\xc5\xf8\x23\xf3\xcd\xcc\x86\x69\x86\xbc\x94\xcb\xd4\xf4\xbc\xa4\x64\x3d\x15\x4b\x1e\x5c\x6a\xf6\x47\x49\x27\xb3\x1d\x32\x57\x77\xad\x7d\x5f\x56\x3e\xa3\x07\xde\x8d\x0a\x28\x6d\x14\x77\x67\x68\x41\xd2\xfb\x34\x76\x52\x46\x71\xa0\x1a\x70\xbb\x82\x87\x35\x03\xfb\xbc\x87\xe7\x3d\x0c\x94\xa1\xd7\xee\x89\x42\x25\xdc\xa3\xde\x35\x0a\xd5\xe7\x10\xf6\x09\x1a\x87\x7e\x94\xe5\xc3\xb5\x39\x34\x9b\x43\xe2\x23\xe7\xb0\x3e\xe2\x33\xb7\xb4\x37\xde\x5b\xe8\x6d\xa3\x4f\xfd\x00\xd5\x7e\x0c\xb2\x87\x94\x5c\x48\x50\x52\x3e\x39\x2e\x61\x68\x28\xdd\x69\x5a\xf8\x50\xcd\xfe\x9f\x69\xb3\xc2\x7b\xbc\xa2\xb6\x05\x74\x33\xf1\xd8\x1f\xaa\xd2\x55\x3f\x1d\x65\xf9\xac\x47\x98\xfe\x06\x8a\xf6\xa2\x2b\x42\x57\xcc\xff\x32\xf6\x25\xe0\x8b\xce\x3c\x2e\x5c\x35\x3c\xc6\xf9\xed\x8c\x2b\xaf\x6a\x9b\x24\xf1\x81\x03\x87\x9a\xfb\xf6\xed\xf5\x20\x47\x26\x7f\xa3\x7a\xfa\x63\x45\xfe\x66\xc1\x07\xc7\xb2\xf0\x29\xce\x65\x6d\x07\xf0\x99\xee\x09\x20\x04\x72\xca\xaa\x8b\xa2\x35\xfc\xe3\x71\x95\x93\x52\xbe\x2c\xd9\xda\x75\xd8\x1c\x47\x05\x56\x38\x11\x94\xf5\x2c\xce\x69\x4d\x5d\xcf\x72\x64\xb2\x8f\x93\xac\x2c\xaf\x1b\x49\x2b\xa7\xe0\xd8\x43\xe6\x5a\xce\xd3\xc9\x42\xa7\xaa\x7c\x0c\x52\xba\x2f\xaf\x56\x74\x76\x7c\xf0\xb6\x9a\x66\xcb\xb6\xb3\xdb\xc3\xd3\x4e\x53\x18\x86\x3c\x04\x9a\xfb\xd8\x55\xe0\xef\x80\xe1\x70\x47\xa5\x10\xd7\xc7\x15\xa8\x62\xc3\x99\x41\x5d\x0d\x5e\xf4\x20\xaa\xcc\x24\xb9\x81\x42\xee\x9c\xd2\x72\xc1\x56\x85\x2f\x65\x6b\x09\xe7\xc6\xf4\xb9\xd9\xd9\x0b\x9e\x06\x16\x7d\x63\x14\x75\x8c\xb3\x48\x46\x0c\xf1\x3e\x0d\x56\x3e\x9e\xda\x6b\x0e\x1c\x38\xd8\x8c\xa3\x65\xa9\x2b\x61\x16\x81\xd4\xc5\xc7\x75\x82\xe3\xb6\x33\x0a\xbd\x16\xbd\x8c\x3d\x0f\x7d\xf4\xe2\x80\x2b\x26\x34\xce\x16\xcb\x79\xb4\x7b\x39\xc5\x8b\x2e\x6c\xb1\x71\x64\x92\x22\x6a\xa8\x46\xc1\xd6\x15\xcf\x1f\x22\xfc\x0e\x57\xe8\x50\xaa\xba\xa4\xa0\xcb\xd3\xa2\x4c\xfb\xf6\x35\xdb\x69\xc7\xf6\x4c\x3e\x53\xbe\x41\xe5\xbd\xb1\xa4\x21\xf5\x87\x9c\x17\xd6\xb3\x8e\x7f\x5b\xc6\xaf\xb1\x2d\x74\xdb\xf6\x9a\x42\xc3\x5f\x73\xe5\x24\x38\xfb\xe7\xd8\x44\x58\x8e\x07\xab\x99\x10\xb7\xe8\x1d\x0a\x3e\x68\xba\x26\xb8\xd4\x5c\xed\x47\xf9\xd0\x7a\xe8\xb0\x83\x41\x39\x1e\xe7\x7a\x9d\x62\x9e\x09\xc3\x74\x44\xd2\x75\x68\x52\xa3\x4a\x7d\x42\x71\x09\xb0\x69\x48\x88\x41\x6b\x84\x10\xfc\xfc\x3e\xb8\x9c\xad\x8d\xc2\xfe\x72\xba\x42\xfb\x85\xd2\xa9\x14\x22\xf8\x47\x2a\xb1\x21\x31\xd1\xce\xe3\x1e\x28\x70\x61\xec\x75\xfd\x78\x5d\xd1\x31\xb4\x76\x82\x67\xb5\x19\x2c\x6f\x58\x89\x4e\xa3\x5e\xc1\x27\x41\x63\xe1\xf0\xd6\x79\xad\x2b\x71\x67\xea\x95\x92\x10\x4b\x96\xa6\x05\x67\xe5\x8e\xe6\xe0\x52\xad\x75\xc7\x18\xc9\x0b\x13\x8b\xc2\x9c\x53\x1c\x57\xf2\xe3\x35\x4e\xcb\x07\xc9\xdb\x8c\x57\x24\x2c\xee\x68\xb7\xf0\xf1\x58\x0b\xfe\xf7\xf7\x78\x30\xe0\xa7\x4a\xd9\xfd\xd9\x96\xea\x26\xdd\x56\x12\xdf\x3f\xa1\x87\x85\x44\xe0\x09\x2d\xcd\xf4\xd4\x44\x05\x29\x1f\xd1\x96\x23\xbd\x8b\x6d\x4e\x13\x4b\x5c\x38\xfd\xa8\xc6\xfa\xba\x39\x48\x93\x74\x98\xc6\x0e\xa3\x87\x5d\xf8\x06\xe2\x7b\x3e\xf1\x7a\x05\xe5\x26\xd4\x50\xfc\xf0\x9b\xf4\x10\x85\xb9\xa0\x54\x4d\xe3\x51\x41\x02\x4b\x07\x97\x1c\xda\xb1\xbc\x0f\xe1\x35\xb8\x92\xb3\x29\x48\xc1\x69\x46\xd5\x7a\x2f\xaa\x84\xef\x2e\x76\x17\x09\x91\x2a\x0a\x68\x2b\x2f\xef\xf5\xea\x35\x9a\x8d\x5c\x29\x6f\x33\x06\x9c\xf7\x6f\x3c\x1a\xa4\x04\x30\x23\x05\xc3\xf8\xd3\xb1\xf7\x56\x3e\x3e\xae\x0c\x49\x45\xeb\xf9\x3d\x8c\x33\x31\xed\xd7\x5d\x3a\xed\xff\x10\x85\xa6\x97\xce\x29\x94\xcc\x85\xb1\x36\x30\xba\x4a\xbc\xdd\xad\x2b\xf4\xe8\x38\xb7\xd2\xe8\x8e\x4d\xb7\xa4\x80\xaa\x69\x88\x7e\xe9\x15\x9d\x1e\xd0\x2a\x2b\xd2\x8d\xf4\x33\xa2\xc2\x4d\xd7\x2a\xff\xa2\xb5\x5b\x3c\x80\x89\x80\xcc\xf9\xaa\x35\x19\xba\x4b\xd8\xae\xfe\x95\x66\x13\xd1\x73\x41\x77\x69\x5a\x80\xa5\x4c\x97\xff\xf6\x57\xfe\xc9\xd2\x57\x7e\x61\x71\x4f\x19\xf2\x48\x35\x8c\x2e\x50\x44\x15\xb5\xc7\xfb\x79\x1a\x81\x98\x0b\x7f\xa8\xb0\xf5\xdf\xa5\x9f\x41\x94\xf4\x1d\x2d\x8f\x7a\x15\x41\x96\xc8\x25\x2a\x99\x81\x7f\x86\x4d\x12\xe0\x86\x87\xc1\x5e\xdf\xf8\x5a\xfb\x1b\x14\x8b\x81\x03\xf0\x36\x06\x2f\xae\x6c\x8f\x16\x0a\x40\x3d\xd7\x95\xb7\x97\x16\x0e\xf3\x06\x77\x1d\xcc\x5b\x36\xd3\x27\xa0\xbf\x00\x27\xe9\x62\x9c\xe7\xba\xeb\x20\xc3\xfe\x5e\x5b\x34\xa0\xb2\x7c\x43\xc3\x2c\x76\xb5\x68\x28\xa1\x29\x76\x09\x23\x51\xc2\x3c\xc5\x0f\x7f\x66\xa2\x32\xae\xfb\x81\x2a\xbb\x7e\x4a\x83\xcc\x41\xff\xcb\x41\xc2\x96\xe1\xe3\xc6\x97\xbf\xec\xc2\x67\x62\x29\x88\x2a\xa1\xcf\x7c\xce\x51\xc9\x06\x4f\xf5\xcf\xa9\x64\x8c\xe5\xee\x9d\x8a\x00\x0c\xe3\x3e\x31\x29\x1e\xf3\x39\x4b\x1a\x46\x69\x9c\xf6\xa2\xbc\x98\xf1\xd5\xd2\x9f\x6a\x36\x22\x26\x9d\x50\xc8\xdc\x22\x11\xf5\xfa\xc5\xac\x1f\x43\xa8\x86\x60\x67\x83\x38\x29\xbe\xea\x3d\x0a\x99\x05\xdd\x30\x5d\x96\x59\x6a\x46\x59\x16\x15\x3e\x5e\xc0\xf4\x80\xa6\x05\x1f\xb7\xa6\x99\x02\x8b\xcd\xa8\xc3\xa2\xc2\x62\xcb\x58\xfe\xa6\xc8\x7c\xd5\xec\xf7\xdd\xcc\xda\xd7\xc5\xb1\x45\xe0\xfd\x1a\xd0\x5f\xd3\xf8\x6b\xc7\x5e\x5a\x59\xa0\x47\xf4\x7a\xf8\x64\xaa\x24\x76\x70\xbe\x49\xa2\x73\x14\x4c\xe2\xc1\x7f\x46\x33\x80\x8f\xc7\x2f\x46\x2a\xc8\x2b\x27\x29\x07\x64\x8e\x41\xb4\x63\xa2\x1a\x97\x3b\xa6\xaa\xfb\x8b\x8b\xcd\x7c\x2d\xe9\x64\xe9\x00\xc9\xbc\x78\x9f\x6b\x64\xec\x17\xbc\xcf\x94\x49\x46\x5d\x43\x10\xbd\x0c\x55\x50\xf6\x0f\xa3\xb8\x55\x66\x28\x0d\x65\x94\x65\x39\xb5\x43\x8a\x01\x94\x3f\x06\xfc\x9b\xd4\x62\xe1\x3f\xc2\x9c\xe2\x8f\xbb\x78\xc7\x84\xe1\x28\xb7\x1d\x40\x4f\xc4\x2f\x9f\x1e\x1d\xe6\xcf\x7d\x15\xbf\xee\x22\x5a\x75\x85\xcd\x8e\xac\x6a\x47\x0b\x83\x16\x71\xf4\x67\x53\xad\xd5\x72\x23\x1e\x9a\xa8\xf2\x4e\xd6\xf5\x3b\x59\x57\x7e\x60\x26\x49\xd2\x51\x12\xda\x81\x4d\x8a\x39\x5f\xe3\x3c\xaf\x0d\x5e\xd6\x89\xee\x28\xc6\x89\x0d\x27\x56\xf5\x2f\x30\xdd\xf8\x1f\x02\xff\x4c\xed\xb1\x22\x33\x69\xd6\x89\x12\x93\xad\xa1\xae\xef\xd0\x73\x07\x0e\x70\x78\xf2\x03\x9a\xd1\xce\x59\xf7\xe0\xbc\xfc\x7f\x27\xd1\x35\x1c\xe5\x7d\x12\x74\x75\xc1\x8f\xb7\x52\x67\x1d\x5e\xa7\x87\xe9\x92\x91\xdb\x2a\x25\x7b\x5f\x45\x1c\x69\x6e\x88\xa2\x88\x30\xe1\x0f\x70\x7f\x58\x19\xef\x06\x7a\x87\xf8\x6c\xac\x02\xd0\xcb\x95\x6c\xbd\x6d\xe0\x43\x81\x5f\xfa\x7d\x95\x02\xfd\xbe\x52\x22\xea\xa4\x83\x28\x31\x0c\x09\x40\x56\x7e\x9a\xee\x8f\x8f\x55\x59\xbf\x18\xd9\xbc\x63\xd6\xf6\xf8\x7d\x1e\x6f\x1d\xa1\x10\xaf\xa0\x98\xe1\xdf\x0d\x94\xda\x34\xe4\xea\x50\x9a\xbe\xaa\x94\x61\x1e\x57\x40\x95\x2f\x72\x24\x85\xc8\x96\x7d\x12\x45\x23\xa8\x1c\xdb\xd2\x6a\x79\xce\x75\xbd\xd3\xbc\x88\x8a\xd1\xb6\xe6\x31\x2b\x66\xf1\x49\xa5\x0e\x61\x57\x3b\x9a\x2f\x89\x55\x50\xba\x87\xb5\x9c\xec\x72\x3a\xbb\x50\x9d\x2b\x66\xaa\x7b\xfb\x93\xc0\xeb\xd2\x87\x69\xd2\x19\x09\x9e\xcd\xa9\xce\x79\xb3\xb8\xcd\x3a\x3d\x23\x93\x1c\x8b\xac\xe7\x59\x38\x52\xdb\xe2\xa2\x6b\x62\x6c\xc7\x0a\x97\xeb\x6b\x92\x92\x85\x97\x34\x48\xca\x87\x2b\x3b\x8a\x2f\x2c\xf5\xec\x20\x6f\xa7\xcb\xb3\xaa\x0c\xf2\x46\x45\xe1\x86\x06\x37\x32\xdd\x6b\x4a\xd2\x75\xbd\x32\x86\xb2\xa8\x40\x0e\x26\x22\x80\xb4\xc9\xf1\x49\x9d\x7e\x28\x25\x53\x8c\x31\x71\x54\xbb\x0b\xca\x25\xea\x42\x25\x1a\x4c\xa2\x63\xb3\xfe\xef\xae\x06\x6a\x0c\x5c\xd5\xbc\x5c\xbd\x8a\x6d\x4c\x35\xfb\xc8\x3d\x83\xe4\x2e\x65\x6d\x47\xee\x73\x5a\x89\x5c\x9c\xae\x51\xb5\x5a\x6c\x26\x69\x56\xf4\x2b\x56\xf0\x4a\x47\x6f\x5a\x43\xfc\xe0\xbc\x40\x93\xf9\x77\x64\x9c\xf9\x12\xf1\x34\xfd\xeb\xef\x35\xed\xb1\xd0\x0e\x0b\x45\xfc\xbc\xa4\x94\x5d\x2e\x05\x3e\xfe\xee\x44\xb9\x35\x39\x89\xef\x79\x93\x5e\x0d\x55\xe5\x54\x02\x28\xbb\x9d\x13\x0d\x65\xc3\x95\x73\xf4\x5c\x07\x8b\xcc\xac\xe9\x76\xa3\x6c\xd0\xf0\xe5\x21\xee\x1a\x89\x33\xda\xe7\x39\x21\xe6\x90\x32\x8f\x55\xcd\x60\x53\x97\xe1\xa6\x07\xb7\x73\x24\x8d\xc2\x65\x94\x0c\xd1\x1a\x27\x59\x53\xae\x1a\xbc\xad\x57\xb5\x69\xed\xce\xf2\xf5\xc4\x51\x51\xc4\x56\x69\x72\xff\x6b\x84\x92\x8e\x81\x77\x50\x36\xe5\x2b\xc1\x13\xba\x75\x32\x5b\x2e\x19\x82\x20\xc1\x03\x14\x14\x1d\x3d\x40\x07\xaf\x73\x9b\xd6\xa9\xe0\x59\xa5\x9e\x9f\x0d\x4c\x1c\xaf\x35\x68\xb4\x23\xd6\x47\x0f\x88\x8f\x6b\xf8\x86\x87\x50\x2d\x0e\x6d\x87\xe9\x18\x4a\x90\x66\xc9\x35\x19\xfc\x0a\xff\x9f\xfc\xa3\x9f\x53\xd8\xc5\x4d\x25\x91\xb1\x59\x53\xe7\x7d\xb5\x09\x5f\x21\xba\x7b\xe9\xf8\xf9\x8e\xaf\x77\x0b\x6f\x9b\x70\xb9\x93\xa5\xc3\x86\x8f\x51\xa0\xf3\xca\xc7\x0a\x63\x15\xc6\x23\x96\x10\x42\x65\x16\x99\x11\x1f\xd7\x49\xa9\xae\x44\xe4\x1d\xc1\x69\xb6\x64\xad\x1e\x72\xb6\xee\xfa\xe9\x71\x9a\x0e\x49\xcf\xb9\xa1\x48\x3d\x1b\x5a\xf8\x6d\x43\x95\x25\x5c\xa3\x7e\x8f\x1a\xc2\x3f\x18\xfb\x4d\xe8\x2f\x94\xc2\xd3\x5f\x28\x5b\xcd\x4b\x5a\xce\xf8\x5a\xa0\x3a\xef\x5b\x78\xec\x88\xa7\x8f\xe3\x87\x5d\x01\xb5\x5c\xcd\xc1\xa8\x81\x7d\x02\x8b\xdb\x4e\xa1\xf3\x17\x17\x97\xca\xf5\x6c\x30\x4a\x04\x99\xc3\x94\x1e\xa0\xc3\x6f\x6b\x07\xd3\xdb\x18\xcc\x78\xca\xfd\xf1\x13\x9e\x18\x30\x4a\x58\xff\x1f\xe1\x33\xe7\x16\x48\xed\xff\x6f\xba\x19\x71\x35\xa0\x9b\x41\x8c\xc0\xca\x0e\x7c\x82\x04\xd1\x41\x51\xbd\x84\xef\xae\x89\x72\xf6\xe8\x9b\x28\x1b\x98\x84\x45\x78\x91\x3e\xc0\xc9\x16\x69\xf0\x1d\xcc\x1d\x5c\xfc\x19\x7a\xbc\x48\xf5\xde\x43\x31\x07\x59\x18\xa0\x8f\x80\xeb\x9c\x19\xab\xd0\xef\x64\xa0\x89\x05\xb8\x77\x89\x93\x3c\x75\xf6\x93\x17\xa6\x62\xfb\xc3\x5f\x6b\x46\x1d\xd3\x4f\x69\xdd\x91\x92\x80\x22\x19\x9c\x71\x62\x60\xe9\x8a\xcd\xf2\xbe\xe9\xa4\xab\x6e\xd7\x65\x43\x04\x15\x0e\x4f\x2b\x79\xec\x5f\x6c\x8e\xba\x29\x9b\xd4\xb2\x92\x2c\x14\x7c\xb4\xf5\x38\xc2\x51\x16\xfd\x06\x84\x6b\x1a\x1d\xf3\xf5\x25\x82\x5c\x37\x54\x9b\x9e\x75\xfb\xf8\x44\x91\x65\x32\xcb\xa0\xad\x64\x0e\x8f\x9c\x7b\xc2\xba\x5e\xfb\x23\x7a\xc1\x2c\xfa\x1b\x78\x52\xda\x45\x2a\x5c\x48\x77\xf0\xf3\xd6\xdd\x61\x96\xb6\x4d\x9b\xd1\xd0\xa2\xf2\xa0\xf0\xe4\xb5\x1b\x54\x94\xe4\x43\x2f\x2d\x89\x5c\x0e\x66\xac\x7c\x5c\xe7\x0e\xd9\x5f\x1b\xa6\x61\x16\xe5\x6b\x68\xa5\x62\xb1\xfd\xa1\x2a\x74\xbd\xa5\x50\x0d\xff\x4f\x65\x0b\x5f\x89\xcc\x2e\x0f\xde\xb9\x48\x10\x0c\x4c\xe1\x4d\xca\x14\xa5\xd9\xdc\x70\x9a\xcb\x67\x48\x04\x80\xff\x66\xac\x08\x76\x27\x5d\xc5\x6a\x90\xf6\x46\x31\x96\x5f\xe9\x32\x7a\xc8\xf4\x86\x2b\x13\xb7\x23\xc2\x1d\x78\x55\xad\x39\xe8\x17\x8b\x45\xab\xb2\xaa\xbf\x3b\x55\x8f\x5d\x38\xdc\x1c\x25\x9d\x28\x67\x2a\x95\x22\x3c\x04\x4a\xa3\x4f\x7b\x90\x93\xc9\x5f\x66\x67\x69\xd3\x14\x26\xa7\xaa\x4d\x9e\xc5\x14\x11\xec\x47\xc3\xff\x95\xf2\x99\x31\x83\x61\x4c\x22\x96\x80\x97\xa0\x48\x70\x3d\xf0\x05\x83\xeb\x0e\x1b\x99\x66\x26\xe9\x59\x1e\x5d\xd8\xe6\x4f\x28\xf2\xfd\x75\x95\x3c\x9c\xd1\x52\x7e\xa0\x90\x8a\x31\xf9\xf6\xfb\x26\xfa\xd8\x36\xcc\x06\x22\x80\x6b\xca\x27\xf5\x5a\xf0\x79\xa3\xd2\x0c\x87\x26\x8e\xc5\xa5\x01\xc3\x03\x7d\x13\x01\xe9\xfb\xc1\x06\xaa\x05\xcb\x62\xd5\xb5\x16\x48\x2d\x31\xe2\x76\x84\xf4\xde\xca\xcf\x08\x94\xd8\xb3\x9a\xc3\x51\x5e\xa4\x03\x9b\x3d\x4e\x35\x1f\x17\x18\x96\x0f\x11\xab\xe9\x45\x45\x87\xbe\x4a\x5b\x06\xff\x7f\xb5\x47\xed\x80\x4c\x85\xd2\x68\x52\x2c\x87\x7d\x0b\xae\x5b\xab\xec\x10\x3e\xa9\x11\xf3\x28\x37\x86\x78\x34\x60\x79\x2c\x71\x58\x68\x28\xeb\x05\xc5\xbf\x1b\x65\x83\x34\x8a\x31\x1f\x99\x74\xad\xa9\x24\x17\x15\x48\xa8\x6b\xb2\xd0\x52\x74\xaf\x53\x27\x31\x2d\x79\x4e\x05\x8a\x19\x2c\x17\x69\x51\x85\xfe\x0a\xea\x12\x7c\x0c\xd5\x0c\x67\xb6\xf6\x45\x1a\xb2\xd8\x9d\x8e\x05\xde\xd6\xe3\x24\x39\xcd\x88\x7a\x1b\x0d\x65\xae\x93\x69\xbe\xd9\x0e\xaa\xdd\xa0\x6d\x3e\xd7\xf2\x93\x7d\x0f\x51\x3a\x10\x13\x81\xce\x85\x0f\xff\x73\x54\xdf\x44\xc9\xbe\xea\xeb\xa5\x88\xe1\xcf\x4c\xbc\x60\xf3\xd3\x4d\x22\x5e\xa1\x9a\x30\x47\xf5\x26\x94\x0c\x00\xea\x42\x8d\x19\x9a\x2d\x5b\xbb\x5a\xf4\xd6\x9d\x33\x8b\x93\x03\x7f\x84\x26\x83\xd2\x67\xa6\xde\x52\x39\x5e\x58\x73\x44\x7b\x3b\x5f\x54\x1a\x3c\xab\x66\xd9\x0e\x4c\x02\x92\x24\x57\x8a\xe9\x79\x4a\xd5\x58\xeb\xff\xa4\x04\x3b\xb2\xac\xae\xa7\xfb\x12\xce\x06\xc0\xf9\x7e\xe2\x0d\xca\x08\xa1\x7d\x45\x86\x48\xcd\xe2\x0d\xf3\x05\x99\x95\x2c\x19\x15\xf8\x0c\xe9\xd2\xf8\x85\x1a\xbe\xfb\x90\x04\xb0\x5c\x6a\xe1\x3a\x36\x0f\x15\x62\x67\xd7\x54\xe5\x89\xd4\x39\x46\x45\x1e\x75\x10\x61\xa3\x8d\x0a\x3a\x85\x68\x76\x96\x9f\x17\x3e\x51\x0d\x25\xbb\x1b\xf5\xfa\x05\x9a\x00\x4e\xfa\x69\x51\xc4\x78\xaf\x07\x0a\x20\x7a\x5c\xa1\x44\x48\x86\xd2\x66\x88\x3d\x5d\x74\xbd\x7f\xd1\x45\xd7\x35\xa9\x72\x6f\x64\xb3\xac\x8c\x3f\x67\xb4\x24\xc1\xd8\xa3\x23\xee\x2a\x41\x75\xef\x74\xd7\x89\x86\x71\x3a\x30\x45\x14\xd2\x02\x83\x31\xf8\xb3\xc0\xb3\x3b\x7e\x56\x55\x15\x1a\x0a\xe9\x80\x91\xbc\xda\x01\xe2\xb4\x9a\x7f\x99\xed\xc6\xa4\x30\x40\x55\x28\xa8\x5c\x3e\x42\x72\x2c\x8d\x4e\x5f\x5d\xd8\xd1\x52\xd4\xb8\x3f\xc4\x9a\x23\xbd\x51\x8f\x14\x18\x92\x50\xa8\xae\x49\x94\x93\x4b\x6a\x15\xce\x6b\xbd\x6f\x62\x96\x62\xf6\xd6\xe2\x68\x6f\xf3\xb1\xdb\x3d\x56\x8d\x67\x93\x63\x3c\xb0\xbe\x3e\x9f\x4c\x0d\x88\xfd\x8b\xcd\xd0\x14\xb6\x97\x66\x4c\xe6\x73\xf5\x17\xe5\x68\xe0\x75\x8b\xbb\x51\x12\x89\x13\xb6\xc8\x5d\xab\x68\x07\x0b\x08\xe6\xe8\x5c\x4b\x79\x15\xf5\xa3\x21\x5e\x3d\x8a\x77\x40\x57\xf0\xf1\x54\xea\xf3\x52\x33\x4c\x93\x22\x4b\x63\xd5\xcd\x3f\xae\x0a\x68\xc7\x6b\x9d\xcc\xf2\xc2\x14\x96\xf5\x56\x50\xee\xb8\xca\x59\x20\x16\x9e\x27\xf1\x46\xf0\x12\xde\x0a\x54\xcf\x67\xd7\xe4\xf3\x0c\xcb\x68\x5e\x02\xa7\x03\xad\x92\x75\x25\x3a\xa5\x9f\xd1\xf7\xa6\x26\xf6\x91\xf9\x25\xd7\x7c\xa1\x1f\x96\xbb\xf5\x18\x8a\x9b\x14\x2b\x39\x7b\x18\xa7\x8c\xb6\x3e\xf6\x3a\x8a\x9b\x5a\x81\xf4\x1e\x0d\x0f\xa5\x9d\xf0\x0a\x7f\xfa\x86\x12\xaf\x60\xd1\x09\xcc\xab\x7f\x33\x15\xed\x1e\xfe\x5a\x33\x24\x07\x87\x23\xc2\x09\xf8\x4d\x25\xb4\xf7\x9b\x0a\x28\x31\x4a\x62\x9b\xe7\xbb\xca\x25\xde\x49\x8f\x1c\x9c\x77\xd2\x23\x1e\xbd\x87\x77\xe3\xa0\x3a\x3e\x3d\x3b\xaf\xb3\x8f\xfb\xb5\x70\x8f\x4e\x94\x9b\x5e\x66\x59\x95\xb9\xce\xd7\xb6\xc6\x8a\xa9\x97\x8d\x06\x03\x06\xe0\x32\xbc\x52\xa5\x23\xff\xd9\x9b\x35\xbf\xd4\x2c\x32\xb3\x62\x7d\xf0\xc3\x4c\x50\x05\xb5\xba\xe4\x26\x11\x8c\xfe\x30\xc8\x5d\xcb\xd2\x81\x9e\xe1\xcf\x22\x6a\xb3\x35\xf3\xc9\xd8\x2c\xed\xc6\x69\xa1\x00\x5a\x15\x52\xf1\x09\xdd\x81\x5c\x2b\xf3\xcc\x78\xd7\xf6\xee\x28\xd6\x62\xf6\xe2\xc3\xfe\x08\x2f\x3e\xec\xaf\xdf\xaf\x34\x34\xe9\x42\x85\xc3\xa9\x64\xef\xfa\x36\xcb\x2c\xa2\x05\xa9\x4e\xfa\x06\xf5\xf4\x8a\x4b\x26\xdc\x50\xe8\x95\xa4\x17\x21\xd3\x87\xf8\x05\xe7\x97\xea\x83\xf7\x5b\x5a\x2f\x31\x4b\xa9\x46\xa6\xe9\xae\xa7\x74\xe6\x72\x6a\xec\x61\xdd\x36\x09\xd3\x51\x66\x7a\x5c\x8c\xc0\x62\x7a\x22\xf0\x0b\xeb\x89\xb1\x16\xe3\xce\x8a\x28\x8c\x86\x86\xf1\x1a\x28\x5a\x7e\xa2\x0a\x98\x9f\xb8\x77\x47\x81\x7d\xa1\x81\x98\xb7\x54\x23\xf3\x56\xe0\x09\x08\x9d\xb4\x68\x28\xf5\x12\x60\x16\xf9\x58\x5b\x1d\x16\xb8\x4a\xc7\x0d\x39\xab\xf8\x80\x67\x55\xd2\x9f\xd8\xd5\x27\xe9\x67\x01\x3d\xb9\x1d\x28\xb3\xcb\x07\x0a\x25\xf0\x29\xc5\x9c\xec\xa6\x10\x68\x9c\x17\x03\xd0\x10\x81\x3e\xa0\xeb\x41\x64\xf7\x91\xe6\xb1\xcf\x4d\x54\x5f\x81\x11\xf6\x02\x1f\xf5\x19\xf3\x35\xdd\x58\x7f\xa0\x43\xa4\x37\x9c\x4e\x60\x6e\x58\xf2\x13\x63\x87\xb5\xfc\xd0\x65\x3d\x41\xa3\x0d\xd3\x78\x47\xcb\x6f\x82\xdd\xb4\xdc\x8a\xa2\xa4\xb7\x5b\x31\xa1\x76\x22\x36\x43\xc5\xf9\xb4\x32\x08\x81\xa4\xa1\x18\xd2\x7b\x55\xc8\x4f\x95\x80\x70\x63\xa2\xa4\x43\x36\xb4\xa4\x4b\xb6\xb6\xab\x22\xe3\xe6\x08\xdc\x67\xc6\x0a\xf2\x00\x0c\x02\x96\xe1\x27\x5b\x3e\x63\xbc\x3e\x56\x9e\xd4\xbf\x55\xab\xaf\x3c\x4c\x0b\xae\x58\x95\x4f\x14\xaf\xf4\x8f\x34\x91\xf1\x8f\x6a\x02\xa0\xa5\x66\xcf\xc4\x86\x06\x04\xaa\x27\x1f\xe3\x51\xf3\x49\x05\xce\xdd\x36\x05\x96\x01\xee\x84\xd1\xa3\x91\xae\x98\xb7\x8d\xd4\x06\x5c\x8a\x5c\xdd\x50\x5a\xd1\x53\xec\xc4\x83\x4b\x5f\x6a\xf6\x47\xd0\x48\x72\x1d\x34\x3f\x33\xa7\x21\xc7\x8b\x8b\x0c\x1b\x67\x30\x93\x0c\x33\xba\x77\x89\x23\xca\xd7\x25\x54\x9f\xba\xe5\xba\x30\x51\x9c\xba\x42\x03\xc2\xa9\x6f\x69\x55\xfc\x6f\xb9\xd1\xb5\xfa\xf2\x6b\x2f\x53\x8c\xe9\x74\x91\x5c\x94\xc8\x89\x2b\x8a\x7b\x77\x82\xe7\x5c\x78\x61\xbb\xb0\x21\x47\x23\xa1\xce\xce\xb8\x86\xa4\x92\xdb\xc4\x14\x69\x26\x50\x20\xac\x08\x37\x10\xc5\xf1\x49\x6d\xa1\x59\xb2\xb9\xf2\xef\x9c\x91\x99\xcb\xe6\x36\x9d\x18\xc1\x4a\x14\x16\xd1\x60\xd6\x63\x9c\x76\x28\x45\x0b\x68\xd8\x89\xd5\x63\x39\x5c\x99\x08\x50\xb7\x33\x0c\xd2\x11\x31\xf8\xd4\xc6\xf5\x81\x22\x3c\x7c\x50\xa7\xdc\xd3\x1e\xad\x49\xb5\x03\xf3\xf7\x79\xfa\x75\xcc\x9d\x87\x58\x31\x50\x19\x7d\x6c\xf2\xa4\xc7\xd9\x1d\x8b\x10\x57\xba\x1d\x55\x41\x3a\xbd\xb8\x62\x37\x4d\x3a\x18\x0d\x80\x39\x9d\x52\xb2\x27\xef\x8f\x95\x48\xf4\x15\xc5\xe6\xe8\xa6\xd9\x80\xf1\x99\xae\xde\xed\x2d\x42\x3e\x54\xb8\xf7\x5b\xc1\xf6\xcc\xe5\xe8\xd1\xa6\x59\x9d\x51\x28\x2d\x00\x80\x51\x93\xdc\x52\x9a\x51\x3f\xad\x69\xdd\xbc\xda\x34\x71\xb4\x6c\x69\xc7\x40\xf0\x09\x25\x4b\x3e\x1e\x7b\x98\xa4\xc9\x73\x3b\x68\x93\xe9\x31\x2a\x2e\x75\x5e\xf0\x5f\x74\x7f\x1e\x25\x85\x8d\xcb\xd8\x7e\x64\x62\x56\x50\x73\xc8\xd3\x32\xa9\x15\x4c\x96\xdf\x80\x6f\x05\xca\x36\x33\x5a\x89\x42\xc4\x2f\x28\x3b\x61\xa8\xf3\x71\xe0\x73\xa0\x4e\x64\x06\x69\xd2\xc9\x77\x95\xe1\x9d\x74\xde\xbc\x31\xd1\x6c\x4b\x15\x08\xb8\x70\x8b\x07\x03\x3f\x4c\xa7\x9e\xbc\x5f\xa4\x02\xee\xd7\x74\xd6\x9b\xe1\x28\x6b\xe7\xca\x2e\x6f\x5d\x8b\x42\xac\xab\x0d\x30\xec\x84\xba\x13\x80\x9d\x44\x42\x5b\xef\x39\x31\xca\x2d\xb4\x62\xb8\x64\x42\xd3\x51\xca\x27\x35\x6c\xa2\x6e\x94\xe5\xc0\x94\xe0\x4d\xa2\x1c\x84\xf5\x79\x17\xb1\xcf\x90\x14\x31\xfb\x0c\x41\xd5\xad\xa9\xa6\xe7\xd1\xa3\xe5\xd0\x2f\xc7\xfd\xd6\x7b\x6a\x47\x01\x60\x1b\x29\xdf\xfa\x94\x36\xfc\x7e\x28\x31\x65\x65\x8a\x5a\x4d\x83\x90\x50\xcb\x65\x57\x5c\x25\xa3\x01\x2a\x3a\xa2\xa0\x4d\x8f\x4b\xa4\xb5\xb7\x6b\x56\x48\x41\x2c\x34\x83\xa1\x35\xa3\x59\x75\x35\x9c\x6d\x38\xd3\x49\xb7\xdc\x71\x9f\x00\x15\xf9\xc7\x5b\x35\xaa\x63\xed\xd1\xeb\xaf\x37\x74\xdc\xe7\x0b\xaf\xda\x96\x3f\xb6\xab\x9d\xc4\xe6\xbc\x80\x4b\x95\x42\xb5\xcd\x6f\x2b\xdb\xfb\x69\x89\x9a\xc5\xc5\xe6\xd0\x66\x83\xa8\xe0\x2f\x40\x03\xf9\x91\xf2\x9c\x66\xa4\xb5\x90\x96\xbf\xe0\x83\x9b\x34\xe9\xd8\x41\x1a\x66\x48\xab\x95\x08\xaf\x1a\x35\xc7\x95\xb8\xd2\x6b\xa3\x64\xf9\x71\xfa\x15\x80\x60\x50\x9e\xc4\x55\x5e\x0f\xb6\xe1\xc8\x25\x3d\x7d\x1f\x83\x9e\x3f\x31\x56\x14\xee\x1f\x8f\x3d\xc3\xe7\xca\x58\xa9\x0b\x9d\xc0\x0a\x88\x8a\xe4\xb5\x1a\x2f\x62\x14\x70\x3b\x82\x5b\x44\xfc\x81\x86\x87\x14\x0e\x54\xfc\xd1\xa8\x4b\x90\x87\x71\x5a\x78\x4c\x00\xca\x60\xd8\xca\xf9\xb8\x4e\x46\xac\x97\x99\xce\x48\x22\x56\x54\x84\xaf\x29\xee\xe6\x35\xd5\xb6\xef\x58\x23\x89\x89\x22\x8c\xab\x20\x6a\xfb\xdc\x40\x7a\x3a\x4b\xd6\x07\x63\x1f\x25\x7c\x4a\xf0\x1e\xb6\x48\x0a\x94\x86\xdb\xc5\x9a\x30\xe6\x50\x73\x18\x9b\x64\xd6\x07\x99\x6c\x24\xa8\xd0\xe8\x0b\x4e\x41\x88\xde\x04\xc6\xdb\x29\xb7\x2f\x66\xca\xd0\x93\x05\x02\x54\xc8\xf2\xdb\x4a\xb4\xa2\x1d\xf5\x7a\x36\x7b\xac\x1c\x01\xc2\x6d\xa2\xaf\x17\x89\x37\xfa\x0a\xe5\xea\xbe\xe4\x78\x42\xe5\x5a\x87\x50\x6c\x1d\x31\x1f\x82\x27\xae\xd1\x60\x25\xbf\x8d\x0b\xc7\xb6\xfd\x40\xf5\x18\x9d\x3f\x2e\xed\x9e\x8e\xd6\xe7\xe2\xda\x07\x98\x97\x18\x06\x73\x53\x3d\xac\x85\xc3\xcd\x4e\x66\xcd\xa0\xe1\x4b\xac\x10\x9a\xe3\xe3\x9a\x96\xed\x42\xb3\x58\x8d\x58\xef\x54\x04\x8e\x3c\xb9\xf1\x66\xa0\xb0\x71\xd3\xa1\x4c\x39\x3d\xb3\x34\xb4\x56\xec\x9a\x31\xf4\x99\x82\xc1\x27\x53\x5d\xe8\xa3\x47\xcb\x4f\x91\xf7\x3b\x37\x8d\x84\x64\xe8\x81\x5a\x6f\xa8\x7e\xc6\x6a\x9f\xc8\xfa\x8f\x51\xb1\x1b\xb1\x22\x9e\x09\x76\xbc\x0f\x02\x55\xfd\xfa\x2c\xd0\x86\x61\xbc\xbe\x71\x4a\x82\x79\x27\x3a\xd0\x9e\x54\x7c\x9b\x8a\x1a\x9c\xf2\x2b\xc1\xa4\xb6\xed\x45\x09\x0d\x01\x34\x32\x2e\x10\xc8\x11\x9f\x41\x19\xde\x31\x4e\xca\x0d\x5b\x33\xf4\x9c\x57\xfc\xfe\xc5\x6a\xc4\x81\x4b\xfe\xb6\x4e\x32\xef\x07\x5e\xac\x2e\x31\xb3\x8d\xc3\x5f\xe3\x51\xb2\x8b\x4a\xcd\x2e\x0f\x76\xde\xbe\xa8\x5e\x4a\x51\xc3\x3f\xa7\xa1\x4d\x3a\x51\xd2\x43\xb9\x17\x71\xdf\xc9\xb1\x8f\x4a\xef\x8c\xbd\x88\x06\x90\x9f\x7c\xac\xe4\x58\x76\xb6\x7c\x01\xb9\x1d\x65\x83\x28\xe9\xf5\x0d\xbc\x33\x11\xb2\x9c\xc3\x00\xe4\x93\x1a\xec\xe2\x21\xa9\x10\x3a\x2c\x15\xe0\xea\x7c\xac\x8a\x35\xaf\x8d\x92\x28\x65\xa6\x38\x56\x56\xb4\x1e\xd9\x5e\x0b\xf3\x4d\x44\x51\x6b\x30\x3c\xbd\x38\x2a\x0a\x5b\x2e\xef\xa8\x7b\x00\xba\xda\xa0\x17\xcb\xd3\x8c\xdf\xbf\xd8\x3d\x56\xfa\x81\xb6\xf3\x2c\xdd\x0a\x7e\xe1\x13\x94\xdf\xf1\xa4\xfe\x0d\x30\xd4\xf7\xc6\x0a\xb8\x72\x15\x93\x19\x3f\x82\x00\x01\x5f\xfb\x78\xf9\x83\x5b\xdc\x2a\x41\xc5\xfe\x1a\x06\x04\x42\xe4\xf5\xc0\xbb\x26\xde\xa7\xc7\x8e\x5d\x72\x27\x41\x87\x11\xc4\xde\xc4\x10\xc6\x9c\x13\x27\x06\x54\xd6\x3e\x01\x5e\x99\x2f\x0c\x19\x3a\xd6\x4b\xf8\x6d\xe3\x0b\x9e\xaa\x73\x26\x18\x66\xe9\x30\xcd\x65\x1b\x41\xc2\xfe\x97\xe5\xcb\x16\x25\x0e\xb1\x43\xad\x89\x49\xc4\x95\xd7\xed\x21\x18\xb8\x90\xee\xe1\x63\x35\xf4\xda\x26\xcb\x84\x4f\xc3\x20\x3f\x1a\xfb\x02\xf8\x7b\xc1\xcb\xf0\x76\x2c\xe1\x7e\x43\x13\xcf\xea\x8a\x0d\x6b\x57\x89\xe5\x84\xaf\xef\xcd\x6a\x93\xb7\xb3\x95\x3a\xb8\x5d\x86\x65\x8e\xe3\x35\xb9\x3d\xfa\x21\x1a\x6e\x58\x60\xdf\xa1\x81\xcf\x3e\xe7\x78\xd2\x58\xb9\x1b\x13\xca\xb7\xd1\x13\xe0\x9e\x8b\xe6\xd2\x89\x51\xa5\x5e\xc6\x6b\xaa\xa6\x2c\xdb\x29\x1b\x8b\x93\xdc\xf2\xf2\x5b\x75\xea\xfc\x79\x3f\x5d\xcd\xd2\x74\xc0\xa9\xbc\xb3\xda\x71\x53\x4d\x47\xb4\x45\x34\xb0\xcf\x2a\xf8\xc3\x43\x14\xf1\xb1\x57\xc2\x2b\x88\xd5\xcd\x09\x38\xee\xc4\xae\xcb\xdb\xc3\xfa\xb3\x0b\x8f\x11\xe1\xdd\xc3\x71\xa5\x4c\x7d\x70\x9e\xbb\x2a\xba\xf0\xc4\x3c\x07\x4c\x8f\x93\xaa\x88\xfc\x42\x4b\x09\xda\xee\x98\x28\x3f\xb8\x9f\x8d\x15\xec\xf6\x04\x15\x4f\xd0\x69\x62\x75\x40\xbc\x8e\xb3\x40\xb8\xe2\xda\x1f\xd4\x96\x58\xa3\x24\x1c\x65\x99\xf0\xef\xb1\x34\xb1\x3c\x33\x9f\xd0\xf5\xa8\xd2\xca\x82\x13\x62\xad\x89\x55\xcb\xfc\x42\xe9\x91\x6f\x2a\x3d\xf2\x69\xb2\xf6\xe1\xaf\x35\x07\x51\x02\xa9\x6b\x1e\x74\xca\x16\xe7\xec\x58\x75\x37\x09\x93\x5a\xb0\x0a\x29\x36\x26\x24\xda\x7c\x3c\x55\xa4\x5f\x38\xdc\xb4\xc7\xd2\xac\x1d\x15\x86\x0b\x06\x22\x99\xe4\x99\x55\x67\xa7\x82\xe0\x23\xf3\xaf\x34\xc3\x74\xd4\xeb\x57\x54\x61\x37\x94\x2a\xec\xc6\xf8\xf3\xfc\xea\x61\x79\xed\x5a\x02\x88\x99\xef\x29\xc2\x39\xa3\x62\xc4\x42\xd7\x09\xd7\x8d\xb2\x61\x16\xe5\x96\xa2\x2d\x64\x45\x2c\x89\x8d\x15\xf0\xd3\xb1\x4f\x4e\x38\x59\x10\xcd\xea\x9a\x04\xaf\x63\xa2\x6c\x8d\x9e\x12\x8a\xff\xe7\x95\xcb\xfc\x79\xa5\x1e\x9f\x93\x93\x5f\xc6\x30\x07\xf7\xb6\xfc\x9b\x53\xa5\xaa\x6e\x99\xff\xf2\x94\x93\xf6\x93\xc6\xcd\xba\x16\x10\x05\x1a\x44\x88\xf3\xf5\xf6\x93\xbc\x33\x60\xb6\x5f\xd3\x90\xaf\xfb\x4a\x59\xa6\x9d\x99\xa4\xa3\xb4\x1f\x4f\x68\xa5\xc0\x13\x4a\x86\xac\x6f\x06\xc3\xbc\x1f\x65\x8c\x89\x64\x60\x0a\x16\x21\xd1\x21\xf2\x4d\xe4\xff\xee\x8a\x1a\xbe\xb0\xe4\x15\xe5\xa2\xed\x68\x86\x85\xc3\x4d\x93\xe7\x26\xcf\xd9\x7d\xb0\xe1\x53\xd9\x6f\xa9\xfc\xf0\x5b\x6a\x85\xb5\x26\x2b\xfa\x83\x74\x85\x68\x78\xe5\x7d\x71\x9f\x59\xc5\xe7\xd0\x20\xc4\x3c\xbf\x46\xad\x1b\xc1\x3e\xd4\xb8\x67\x5b\x93\x17\xc0\xe7\xa2\xa8\x70\x5a\xf9\x44\x42\x71\xde\xb5\xd5\xf6\x2f\x6e\x7d\xa6\x28\xfd\xab\xe9\x32\xca\x83\xec\x19\x8d\xa8\x47\x0c\xa4\xeb\x04\x06\x06\x65\x1a\xbc\x36\x53\xae\x48\xa0\x47\x5c\x57\xc1\xc3\x25\xa8\x63\x02\xcd\x75\x5c\xd5\x84\x62\xd3\xed\x62\x20\xc8\x24\x55\xac\xe1\xb3\x8e\x3a\x62\xa2\x0e\x6b\xb2\xe0\xfb\x4e\x68\xc0\x1a\x73\x8c\x68\x3b\xfd\x93\x17\x98\x0d\x20\xa5\x4c\xed\x26\xe8\xc3\x0b\xb6\x8e\x17\xdb\x5d\x1f\xc5\xe7\x76\xc5\x66\x10\x64\xf6\xc9\x21\xc2\x20\x3e\xf6\x8d\x9b\xd8\x24\x85\xf4\x2e\xa4\xa6\xa6\xd8\x4e\x3b\xf4\xee\x77\xaf\xa6\x24\xfc\x4a\x19\x6f\x25\x85\x14\xdc\x9c\x25\x97\x73\x16\xfe\x29\x36\x56\xe9\x14\xfb\x09\x14\xe5\x71\x39\xba\xf1\xd3\x15\xc7\x58\x3e\xa9\x61\x23\x36\x89\xe0\x99\x6b\xa3\x48\xd6\x0f\x11\x9c\xe5\x73\x1a\x24\x57\x98\x6e\x97\xeb\x6e\xe2\x0f\xef\xd5\x7d\xd9\x54\x57\xdc\xb2\xeb\xbc\x31\x4c\xdb\x24\x9d\xd4\x49\x4e\x60\x93\xfa\x2e\x1e\x3b\x9f\x28\xac\x6a\x94\x2f\x3f\x46\xd7\x82\xd8\xf7\x9a\x6e\xb0\xdd\x19\x7b\x69\x89\x5b\x63\x2f\xfe\xf8\xc9\xd8\x17\x36\x1f\x60\xc7\x43\x58\x77\x06\x59\x1d\x0f\x36\x7a\x9e\x88\x20\x1e\x6f\x3d\xab\x28\xd3\xa3\xc1\xd0\x0a\xf3\x53\xf2\x9d\x86\xb3\xad\xb9\xac\x5c\x36\xcd\xa8\x90\x16\xbf\xeb\x3e\xa3\x60\x2e\x30\x61\xc5\xe4\x1c\x44\x33\x55\x14\xa4\xa3\x1f\xde\xa3\x8c\x59\xd0\x6a\x3e\x61\x35\x54\x0a\xdc\xab\x9d\x21\xe8\xcb\x91\xba\xdc\x0f\x54\x6d\x0e\x1e\xc1\x78\x16\x57\x08\xe4\xc6\x3e\xab\x81\xc2\xf7\x33\x22\x98\xbd\x96\xb1\x92\x89\x1d\xab\xcf\x23\xce\xa1\xf5\x20\x8e\xcc\xaa\xf1\x3b\x33\xa9\x13\x1b\x74\x26\x0c\xfc\xc8\x5c\x91\xf3\xc0\x01\x57\xe4\x54\xbe\x48\x51\xdb\x82\x1e\xa6\x64\x56\x5e\x75\x27\x7e\x3f\x79\x30\xb5\xeb\x1f\x3d\xda\x7c\x6d\x94\x17\x33\x1e\x65\x72\x57\x09\xbc\x5d\xd0\x9b\xde\x05\x07\xe7\x6b\x67\x69\xfe\x72\x43\xef\x0c\x5b\x58\xb2\xf8\x44\xd5\xb5\x44\x48\x67\xc6\x5b\x2a\xa0\x04\x86\xb0\xe8\x92\x12\x3a\x7d\x57\xdd\x51\x66\xbb\x5c\x9a\xac\x83\x44\x7c\x1e\x3c\xbd\x5c\x81\xe9\x4e\x10\x57\xdc\x53\x24\xea\xb3\x81\xf2\x4f\xda\x0c\xf4\x2f\x19\x09\x2d\x5d\xc6\x7a\x70\x5e\x8e\x83\xe7\xd5\x22\x5d\xee\x8e\x03\xea\x60\x1c\x11\x6d\xe0\x0f\xc7\xaa\x38\xfc\xa1\x92\x5c\x31\x49\x34\x30\xf1\xac\xcf\x18\xef\x28\x21\x9b\x3b\x94\x20\xa3\x46\x37\x43\xa2\xd6\x7c\x3c\x11\x24\x64\x1c\xb5\x6d\x56\xac\xcd\x69\x08\x18\x3d\x61\x87\x0d\x73\x25\xc8\x47\x81\x9e\x54\xe3\x8a\xe6\xea\x93\x0a\x46\x0e\x4d\xa1\x05\x9e\xf4\x4f\x40\x01\x46\x55\x66\x44\x03\xe1\xee\xd8\x63\xf7\x7e\x17\xaf\x15\xb3\xeb\x6a\x9d\xa9\x42\xe7\xe5\xf0\x65\x45\x3f\x7f\x43\xd3\xcf\xdf\xf0\xa2\xcf\x61\xba\x1a\x73\x69\x12\xd5\xb8\xbb\x5a\x37\x04\xb5\x17\x31\xac\xaf\xc9\x01\x46\xc9\x6a\xa4\xea\x74\xce\xd6\xc3\x23\xe6\x15\xf6\xab\x6f\xb2\x76\x2a\xee\xb5\x4e\x6c\xc0\xc1\x55\x2f\x39\xb8\x69\x98\x66\x99\x0d\x8b\xdd\x0d\xa7\x59\xfa\x10\x0f\x42\x58\x8a\x4a\x50\x09\xe2\x0e\x58\x17\xee\xe8\xdc\xe8\xcf\x95\x72\xe6\x27\x40\x5e\xb3\x79\xf9\x54\xdd\x9b\xaa\xc1\xb9\xb2\x3e\x39\x5d\xf1\x82\x56\x8e\xc0\xe5\xee\x2e\x29\xe5\xab\xde\x53\xdb\x13\x89\x02\x5f\x8e\x2d\xfa\x76\xed\xaf\xd1\xb2\x23\x4a\xc0\x0d\x87\x0d\x84\xd7\xbe\xa4\xaf\x9e\xb0\x3c\x07\x12\x23\x2f\xf3\x41\xe3\x17\x7e\x89\xe1\x80\xf7\xc6\xda\xdb\x89\xc6\x0b\x66\x42\x83\x6a\x2c\x6c\x06\x4a\xb7\xcc\x32\xbb\xe0\x1a\xb2\x95\x54\xa0\xd8\x3a\x13\xc5\x0d\x79\x88\x05\x89\x49\x87\x63\xfd\xea\x91\x4d\x0a\x98\xbf\xb1\x4f\x7e\x90\x3d\xd2\x98\xe9\x88\xbd\x99\xed\x36\x90\xdc\xd3\x8d\xfc\x4f\x2f\xb6\x28\xd6\x71\x42\xcc\xfb\xf6\xf9\x3a\xd2\xc1\xf9\x43\x8e\xe4\x8a\xc5\x8a\x09\xcc\xae\x2d\xe9\xe0\x07\x4c\x98\xc3\x08\x41\x04\xc2\xc7\x63\x6f\xb7\x9e\xa4\xd9\x5e\x7a\x24\xd8\xec\xee\x8e\x95\xf8\x07\x06\xa3\x14\xc4\x95\x59\x11\x2f\xf6\xec\xe1\x42\x35\x0e\x99\xaa\xb8\x26\x71\x77\x29\x2f\xdd\x45\xa0\x0b\x87\x19\x21\x88\x40\x00\xb5\x38\x68\xe1\x03\xab\xd1\x68\x49\x33\xb6\x6b\x6d\x3e\xa3\x14\x09\x76\xb6\x3c\xbe\x90\xe3\x14\x34\xa4\xee\xd4\xcd\xac\x22\xb3\x26\x1f\x65\xe2\xba\x2a\x1e\xf8\xe5\x0f\xf1\xb1\x82\xc8\x17\x99\xe9\x76\xa3\x70\x19\x2c\x5d\xe9\xf6\xcc\xa0\xb9\xc5\x27\x13\x81\xb6\x8d\x12\x13\x17\x65\x8e\x32\xeb\xa1\x1f\xec\x68\x86\x07\xf0\xa1\x66\xec\x61\xac\x89\x6a\x8b\x47\x93\x98\xbc\x28\xd3\x12\x31\x6b\x47\x32\x7c\x9a\x6a\x26\x7c\xac\xad\x81\x0b\xcb\xb5\x12\xac\x25\x6f\x56\x5c\x5e\xb5\x90\xe6\x65\x4d\x56\xda\xd9\x52\x11\x45\xbc\xa6\x94\x87\x4f\x2a\xed\xa6\x93\x0a\xbb\x6c\xf3\xd0\xc4\xa6\x10\xee\x0c\x22\x75\x2e\xf9\xf1\x49\xe0\x8b\x12\xaf\xdb\x2c\x6d\x78\x9c\xf7\xce\x96\x32\x8f\xdb\x39\xf1\xe3\x6b\x68\xd6\x9e\xf4\xe5\xc6\x0d\xad\x45\xf2\xee\xb8\xf1\x55\x21\x9d\x63\x48\x88\xa0\x93\xea\x70\x1c\x27\x68\xad\x72\x82\x93\x86\xf7\x3d\xa5\xe2\xb6\x4e\x85\x0f\x54\x7f\xce\x61\x79\x67\x8e\xbd\x32\x2a\x3a\x81\x85\x8c\xab\xc3\x6a\xb3\xd9\x35\x55\x3f\xdb\xbf\xd8\xec\x98\xc2\xb4\x4d\x6e\x15\xe7\x14\x0c\x0f\xd1\x9f\x7d\x41\xd1\x67\xda\x79\xd4\x21\xf3\x7d\x8c\x59\x59\xf4\xcb\x8f\x62\x75\xfd\x9d\xb1\x47\x52\x5c\x74\x39\x49\x6a\x96\xad\xc0\x00\xf0\xe4\x3e\xd6\x1e\x7c\x1f\x07\x3e\xcb\x49\x87\x36\xd9\x5d\xce\x20\xcc\x9a\x7b\xb8\x17\xc4\x1b\x1f\xd3\x75\xe1\xbe\x20\x77\x8f\x8d\xee\xbf\x57\xf8\xb7\x47\x63\x4f\x23\x83\x70\x07\xe2\xfc\x9b\x2e\x53\x6e\xa7\x59\xe6\x41\x9b\x28\x36\x6b\xc7\xd0\x9b\x3a\x35\xb6\x3d\x93\xec\xf1\xb0\xf9\x2b\x34\x76\x31\x1d\x2e\xa9\xe2\xc0\xfb\xf4\x94\x9d\xf6\xdb\x81\x03\x87\x5c\x51\x8c\xc6\xad\x18\x96\x94\x2f\x09\x49\xf0\x1b\x81\x6a\x5a\x9d\xa6\xd7\x8a\xaa\xe0\xb7\xf5\x02\x7b\x71\xfc\x78\xd4\x1c\x66\xb6\xfb\x0f\x9b\xf9\xdf\x6c\x38\x86\xf9\x1e\x14\xa7\x98\x9f\x4b\x9a\xe8\x58\xd0\x4f\x53\x91\x1f\xfb\xd9\xd3\x93\x72\x67\x50\xe4\xa1\x57\x5c\x47\xa5\xe1\xfc\xa4\x9e\xd1\xce\x94\x4f\xb4\x94\x9e\xd5\xdf\x27\x3c\x39\x7a\x4b\x8f\xb7\x68\x9f\x40\x24\xd9\x80\x33\x25\x2a\xf6\x30\xb1\x13\xab\xed\xf2\x2e\xf0\x7a\x76\x4f\xfc\x22\xf4\x05\xaa\x23\xb3\xf1\x00\x22\x17\xfc\xc4\x2c\x96\x7f\xe4\xc0\xbf\xc9\x2b\x2a\xd0\x2a\x5f\x9a\x34\xbe\x2e\x4b\xdf\x3b\x68\xf6\xb3\x5b\x01\xea\x33\x80\x69\xed\xc2\x8a\x84\xc4\xe6\x09\x80\x9d\x04\x3a\x5a\xbe\x28\x2c\x4f\x4f\x4e\x94\x1e\xfa\xb3\x50\x10\xc6\x2e\xf7\x20\x68\xfc\xe2\x57\x5c\xa1\xa3\x4e\xd5\xb2\x13\xad\x44\xb9\xd7\x81\xbe\xc2\x85\xe5\x67\x55\xf1\x24\x4a\x7a\x94\x97\xba\x1d\xe4\x67\xd8\xe2\x90\x48\xfd\x40\xf9\xc6\x7c\xdb\xb1\xf9\xfb\xd6\x78\x2b\x4b\xc4\xbb\x0f\x54\xbf\xe3\xa1\x2a\x7a\xff\x76\x8d\x3d\xc3\xab\x4d\x33\x1c\x66\xe9\x30\x8b\xa8\x91\xe9\xf6\x18\x54\x94\xf9\x78\x2a\x5b\x38\x70\xa0\xd9\x33\x51\x32\xe3\xf1\x74\x8c\x63\xc4\x34\x66\x6d\x2b\x64\x8c\x1a\x40\x97\xa7\xc9\x2e\xc5\xe0\xbb\x8f\x70\x80\xeb\x9f\x58\xe7\xb4\x86\x07\xb6\x92\x13\x48\x33\x1d\xe8\x5a\x71\x25\x75\x45\xdd\x66\x89\xc9\x3a\x5c\x19\xc0\x4b\xb9\x87\xa5\x01\x3f\xb6\x03\x23\x1d\xb7\xf4\x81\xaa\xff\xac\xa6\xd9\x72\x0e\x7d\x07\xc8\x30\x61\xac\x00\x9d\x27\x9d\x49\xbf\xfe\x7f\x80\x15\x55\x2c\xf7\xea\xec\x19\x33\x6b\x18\x5b\xea\xb4\xc6\x0f\x1c\xc0\x72\xfe\xe4\xb3\x2d\xb5\xd6\xee\x99\xf8\x1d\x27\xef\x9b\x46\x43\xb9\x69\x2b\xfc\xd4\xf9\x3a\xda\x66\x66\x92\x65\xf7\xe2\xf1\x3b\x7b\x89\xd0\x81\x24\xe4\x59\xaa\x34\x21\xcc\x3b\xef\x32\xb6\x30\x33\x79\x7f\x4e\x6b\xde\x8e\x7d\xc1\x72\xae\xe5\x09\x75\xbf\x8e\x96\x8c\xe0\x66\xe9\xa5\xc9\x3a\xb4\xfd\x62\x5e\x6a\xe6\xfd\x74\x38\x24\x5f\xa7\xf2\x11\x63\x44\xbc\xa7\x8d\xe3\xde\x2b\x87\x90\xeb\x85\x87\x69\x02\x4b\x2a\xf1\xf8\x52\x01\xdd\xab\xce\x4c\x4d\xb4\xf2\xba\xd1\xb1\x86\x5f\x40\x98\xc5\x25\xc8\x88\x1a\xd0\x5c\xb3\x1d\x49\x7b\x55\x6f\x75\x52\x8f\xda\x5e\x31\x24\xcc\x9b\x0d\xfb\x09\xb5\x59\x04\x3a\x87\xc5\x8e\x01\x0a\x88\xcc\xdf\xd3\x5e\x6f\x97\x02\xbf\x5f\xbf\xf6\x32\x94\xb7\x18\xf0\xa9\x8d\x2f\x37\x95\xce\x31\x11\x89\x87\xe5\x7e\xa1\x1b\x4c\x40\x61\x62\xe2\xde\x09\x2a\x2d\x79\x3f\xb8\x33\x13\xc7\x51\x19\x41\x2d\x1c\xe6\x8a\xd5\x55\x50\xbc\xf9\x84\x52\x55\x50\xb3\xbe\xa5\xf4\x82\xbe\xa5\x6a\x7e\x2b\x36\x5b\xdb\x5b\x3e\x07\xd5\x3e\x92\xa2\xd0\xa6\xa2\x08\x9f\x1a\x2b\x4e\x3e\x2a\x79\x70\x00\x78\xbe\xe5\xea\xe7\xab\x2f\x4e\x68\x1d\xc5\xbb\x7d\xa0\xed\xca\x77\x4e\x5c\xf9\x61\xe1\x8b\x2d\x45\x77\xf9\x18\x4f\x4f\x44\x40\xeb\xba\x18\x65\xda\xbe\x6a\xb2\x0e\x80\x56\xbc\x0d\xd1\x15\xc8\x96\x54\x17\x74\xd8\x30\xea\xb8\x8c\x50\x90\x91\x1a\x32\x29\x34\xd4\x55\x6b\x8a\xbe\xcd\xda\xb0\xa1\xf7\x8b\x2c\x74\x3f\xf9\x78\x8a\x88\xb3\x70\xb8\xf9\x65\xa6\x1c\x60\xe9\xe5\x0a\xa3\x10\x63\xa8\x37\xc3\xcc\x01\x4a\x5b\xb0\x62\xbc\xa3\x60\xd3\x26\x2e\x93\x78\x43\x95\x54\x2c\x6f\xb7\x95\x62\xfa\x9d\x71\xa5\x56\x3c\x75\xef\x48\x63\x6e\x04\x28\x16\xab\xc5\xe3\x84\x4b\x5f\x32\xdb\x1b\xc5\xa0\x32\x73\xdc\xcb\x4a\xe0\xe0\x43\x88\xa8\x92\x2f\x85\xff\x2a\xbe\x07\xc1\xd5\x9e\x89\x53\xa3\x32\x85\x8d\xe3\xa8\x60\x30\x34\x76\x9d\x1f\x8f\x15\x1f\xfa\xc7\x15\xe9\x8d\xb5\xc4\x6a\x3b\x3c\x14\x67\x04\xd7\xe1\x65\x1b\xf3\x22\xcd\xd0\x18\x41\xc2\x74\x6a\xec\x97\x29\x58\x99\xe1\x33\x3b\xc1\xee\xc5\xee\x7a\x46\x45\x8b\xa3\x64\xd5\x64\xa4\x11\x4e\xcd\x85\xad\x09\x39\xcc\x4e\xea\x24\xf5\xc2\x34\x29\xa2\x64\xe4\x16\x46\xa6\x5b\x28\x40\xff\x3d\xed\xd2\xb8\xa1\x6d\x7a\x8e\x15\x99\x01\x58\x1d\xd0\xb0\x13\x14\xa2\xf1\xb1\x4a\x2f\xfa\x06\xcf\x07\xdf\x77\x6b\xac\xc0\xf9\xb7\xa6\x86\xe8\x4b\xcd\x28\x09\xcb\xe4\x4a\x30\xc8\xc2\xb8\x51\xec\x9b\x3a\xe5\x8b\x30\x4d\x56\x22\x6f\x76\xca\xf8\x44\x9a\xdc\x82\x55\xac\x69\x43\xdb\xd8\xb4\xd3\xcc\xf8\x12\x09\x56\xf3\xef\xd0\xaf\xf1\xf1\x14\xec\xf2\x25\xd2\x65\x8c\x0c\x71\x19\x97\xb6\xae\x94\xaf\x67\xeb\xca\x54\x5f\xea\xc8\xfc\x42\x33\x1f\x8e\x58\xd3\xdd\x41\xe9\xca\x57\x26\x50\x3a\x5f\x8d\x48\x5e\x7e\xed\xe5\x5d\x8a\xa7\x7b\x5d\x91\x8e\xc1\x45\xab\x38\x55\x8b\x0a\x0b\x3d\x21\x91\xd1\xd4\xeb\xa8\xc3\x1c\xdb\x63\x51\x31\xa7\x38\x48\x8f\x4f\x7c\xad\xf7\xb9\xd6\xce\x2f\x55\x8a\x42\xe0\xc8\xc1\x2a\x5c\x2c\x05\x5e\xf4\x79\x56\x96\xf6\x32\x33\xa0\x22\x33\xd5\x25\x31\x39\x7e\x36\xf6\xac\x83\x1b\x58\x91\xa5\xaf\xe1\x7b\x99\xe4\x55\x12\x9a\x38\xdf\xe5\xcd\x78\xdf\xab\xe8\xb0\xdf\xa6\x2c\x0c\x8d\x88\x07\x98\xd6\xfc\x67\x54\x42\xe6\x7f\x08\x94\x09\xdb\x6d\x55\x9e\xee\x98\x38\xe6\x61\xe6\x8c\x21\xca\xbf\xe4\x13\xc5\x43\xcd\x47\x64\x4d\xda\xd0\xf1\x46\x85\x5d\xa3\x62\x24\x72\x50\xab\xd8\xff\xbe\xa5\x0b\x75\x6f\xa9\x7a\x68\x27\xca\x97\xf3\x39\x2f\x9b\xfa\x53\x84\x67\x18\x43\x97\x94\x02\x0b\x60\x32\xfc\x47\xf4\xa4\xc5\xb8\xd2\x49\x90\x65\x26\x5c\xa6\xe7\x84\x3d\xf8\x5a\xe0\x6d\x44\x60\x56\x80\x0c\xe0\x24\x62\x48\xf1\x28\xf4\x5d\x90\x9f\x8d\xb5\x0a\x95\x7a\x48\x96\x78\x45\x9e\x46\x8f\xc2\xb8\x94\x12\x94\x14\x85\x59\x49\x33\xd3\x8e\xed\x2c\x85\xec\xa8\x77\xdd\xd0\xca\x12\x6f\xa1\xcc\xc4\xff\x82\x25\x99\xff\xc5\x89\xf5\x0d\xfb\x36\x49\x07\x36\x49\x93\x19\xc5\xcf\xd0\xb2\x6b\x88\xb6\x45\xf2\xef\x69\x85\x3e\x0e\xfb\xe5\xf6\xed\xf0\x58\x3f\x42\x32\x87\x5f\xf8\x28\xf0\xb5\x6a\x16\x45\xe6\x7f\xa8\xac\x81\x61\xb9\x89\x44\x49\xb1\x36\xab\x4c\x7c\x98\x0a\xe6\x2c\xcc\x0e\xce\x7b\x37\xb9\xfd\x8b\xce\x1b\xee\x19\x05\xd2\x2a\x56\xad\x4d\x9e\xf6\xc8\x93\xc7\x26\x4a\x54\xef\x63\x6d\x45\xc0\x15\x36\xc6\xe2\xe8\xfa\x72\xa3\xa5\xb0\x61\xeb\xca\xc2\xf8\xe9\x96\x72\x43\x3f\xad\x15\x9e\xcf\x8f\x3d\x48\xf8\x2e\x8d\x13\x51\x24\x54\x08\xa9\xab\xb4\x1d\x20\xaa\x79\x1f\x6f\x41\xcc\x2f\xca\xdb\x11\xf9\x61\xb7\x61\x11\x93\x20\xea\x32\x0f\x94\xd5\xf0\xf1\x85\x22\x8d\x2f\xb5\xe7\x41\x94\xc7\xe5\xfe\xe1\x1c\x96\x2f\xe2\x56\x45\x32\x47\x92\xfa\xc4\x94\x49\x3d\x03\xed\x58\x59\x8f\x5e\xab\xa8\xec\xd5\x24\x43\xaf\xd9\x55\x29\x4a\x60\xb9\x3b\x1e\x28\x59\xce\xe3\x8a\xb7\x9a\xa7\x59\xc7\x66\x4c\x8c\xaf\xd3\xe5\xaa\xc8\x34\xc5\x6b\x2f\x96\x63\x46\xfa\x7f\x5e\x5f\xa1\x81\xdc\x13\x15\x22\xf6\x82\xc4\x13\xfc\x1f\x69\xd3\xc2\x7a\xb8\x45\x8f\xd9\xad\xad\xe5\xbb\xc0\xa2\x70\x6a\xac\xdd\x23\x28\x92\xe4\x62\x2d\x5d\x0b\xc6\x05\xa3\xb7\x31\x2e\x76\x4d\xb4\xfe\xc8\x06\x88\xf4\x08\x66\x2e\x69\x8d\xe3\xf3\x81\x5a\x87\xfe\x44\xf7\xf0\x1f\x43\x52\x2d\xa6\x03\x34\x7e\x10\x7e\x5e\xd1\x66\x30\x20\xa5\x6b\xfb\x7a\x8c\x86\x9b\x75\xc0\xdf\xb6\xed\x9b\x95\x28\xcd\x66\x3c\x5c\xf9\x26\xdd\x01\x6b\xdf\xe3\xca\x04\xd8\xb9\x7d\xdf\x5b\xf8\x7f\x19\x7b\xb3\xe0\x4a\xb2\xf4\x3c\xac\xea\x02\xa8\xaa\xae\xde\x97\xe1\x8c\x48\x85\x78\xc7\x1a\xc7\x48\xa1\x66\x5b\x16\xed\xb0\x83\x2f\x79\x09\x60\xd8\x53\x88\x19\x34\x02\x55\x53\x2d\x76\xf8\xa1\x0f\xf2\x1e\xdc\x9b\x8d\xbc\x99\x77\x32\xf3\x02\x8d\xb6\x1f\xfc\xe0\x50\xd8\x11\xf6\x83\x83\x94\x15\x21\x3b\x42\x32\x69\xd1\x62\xd0\x34\x29\x2e\xc3\x6d\x86\x17\xcd\xe1\x70\x36\xce\xb0\xf7\x7d\xa9\x7d\x47\xed\xfb\x82\x72\xe4\xff\xfd\xff\x39\x7f\x22\xb3\x1d\x7a\xbb\xd9\x5d\xb8\x4b\xe6\x39\xff\xf9\x97\x6f\x39\xd0\x2e\xd2\x2c\x92\xb6\xa9\x50\xb1\xe9\x57\x8b\x07\x28\x7e\x35\x12\xae\x1b\xb5\x23\x71\x66\xb6\xbd\x1c\x5b\xcb\x2c\x33\x56\xdd\xa2\x78\x20\x0a\x5c\xb2\xfa\x7a\xac\xc0\xaa\x74\x61\x3c\x0d\xfd\xac\xab\xcf\xd6\xd2\x2c\x67\x6f\x66\xfc\x84\x7b\xf4\x6e\x68\x3c\xed\xdd\xf0\x88\xab\xa7\x1f\xeb\xb4\x9e\x5f\xe0\x26\xce\x07\xe3\xd6\xd7\x24\x09\x7d\x87\x0e\x3e\x84\x26\x6e\xef\x23\x23\x9d\xd8\x68\x7d\xe3\xab\x4e\x9b\x80\x4c\xdf\x9d\xab\x63\xb9\x32\x10\x6a\xff\x21\xba\x2a\x42\x54\x74\x83\x9b\x41\xe4\x64\x7f\xb0\x61\xf8\x41\xf3\x85\x82\x3a\x0f\xd0\x48\x9e\xf2\x33\x37\xf6\x8b\x14\xf5\xad\xf2\xf9\x80\xa2\xcb\x51\x04\x10\xad\xfb\xca\x75\xf2\x56\x13\xb5\x69\xcd\x9a\x15\x9b\x70\x7d\x86\xdd\xcd\x09\x2e\x23\xe3\xb5\xb6\xc1\x31\xe5\x9b\x5f\x16\xf8\x51\xd2\xcb\x5b\x14\xe7\xe4\x74\xa6\xd6\x93\x1c\xbc\x52\x6b\x9a\x2c\x6c\x29\x05\xac\x23\x3c\x2f\xe0\x2b\x2d\x9a\x67\x0d\x00\x7c\x33\x33\xde\x97\xdd\xd3\xc1\x37\x9b\xac\x76\xa2\xa4\xb0\x89\x73\x74\x93\x71\x9e\x1a\xed\xd5\x00\x04\xb3\x07\xda\x79\x04\x9f\x54\xdf\x46\x0d\x54\x7b\xb5\x16\x8c\x16\xa7\xdb\xcb\xb1\x61\x76\xa4\x13\x3f\x77\xa2\x51\xc7\xdc\xa1\xbc\x6a\xb3\x9e\x96\xa6\xe4\x61\xb6\xcc\x8e\x1a\x44\x36\xd7\x23\x1b\x77\xf9\xf6\x8b\x95\x12\x2d\x16\xb1\xaa\x55\x1a\x33\xaf\x2b\x52\x3d\x9f\x5b\xf1\xfa\x54\xf9\xe4\x91\xea\xe3\xd0\xc4\x29\xc7\x39\x10\x2e\x2e\x2a\x23\x37\x50\xe5\x91\xf1\x9c\x52\xa7\x39\x09\xf1\x96\xd5\xce\x83\xca\xb5\xe0\x30\x65\x55\x88\x01\x20\x28\x09\x27\x59\x9d\xf2\x37\x71\xec\xf2\x5f\x8c\xab\x6e\x35\x4a\x08\xc7\xa3\xfd\xbe\x3b\x56\x7a\x45\x6c\x55\xcd\xef\x15\x54\x0a\xe5\x86\xe7\x4d\x29\x3c\xa3\x5a\x64\xc6\x80\xd4\x8c\x5f\xbb\xed\xb5\x92\x66\xd6\xa0\x26\x45\x44\xf8\x42\x47\x29\x56\x7c\x61\x63\xfb\x53\x7e\xba\x3d\x4c\x33\x9b\x4f\xb4\xbe\xf2\xcf\x7d\x8b\xc9\xed\x1e\x76\x59\x90\xdf\xef\x47\xd7\x79\x1a\x47\x5d\x93\x45\xc5\x3a\xd6\x07\x7a\xb5\x2c\xcb\xc9\x17\xb5\x9d\xb7\x6f\xbe\x9d\xa7\xeb\x4b\x96\xc9\xd8\xc8\xba\xdf\x54\xee\xad\x6f\x36\xfa\x2a\x16\xf6\xe5\x42\xa5\xaf\x40\x70\xf1\x6b\x8d\xf2\x28\xca\xec\x90\xca\x9c\xf2\x59\x3a\xba\x40\xf9\x98\x64\x28\xed\x84\x4b\x93\xf5\x41\x9a\xd9\x5d\x6a\xcc\xf4\xef\xf4\xa9\x76\x61\xac\x84\xdd\x8e\xd0\x1a\xa0\x90\x78\xfd\xc9\x8e\x9f\x66\xde\x55\x33\xad\x5b\x2e\xee\xc6\x26\x5c\x61\xa7\x4e\x65\x0d\x2b\x96\x3a\xb7\x2a\xd2\xab\xda\xa2\x7c\x34\x1c\xa6\x59\x31\x59\xbe\xbd\x8b\xac\x5e\xe4\xef\x56\xa0\x00\xd1\xb7\x54\x27\xa3\x2e\x5c\x0e\xe6\x65\xbc\xc2\xc9\xb9\xb3\x4a\x9a\xf7\x49\x8f\xef\xe5\x84\xe9\x1a\x7c\x53\xd1\x61\x6d\x75\x94\x35\x20\xfa\x49\x0c\xd0\xf9\x4c\x09\x2a\x13\x16\xd1\x6a\xb9\x0e\x3c\xaa\xff\x8e\x2e\x45\xee\x54\x7c\x83\xf2\xa8\x97\xb0\x87\x61\xf9\xef\x25\x63\xf2\x15\xd6\xb9\x06\x41\xcb\xf6\xc0\x60\xe4\x87\xc5\x7e\x87\x36\xb3\x70\x10\xe9\x41\x39\x42\xe2\xe2\xb4\x43\x35\xf9\xba\x26\x36\x59\xcf\xc6\xeb\x2c\x93\x24\x49\x2d\xdd\x1d\x84\xf8\xbf\xa5\x27\x89\xf6\xc8\x96\x9a\xe7\xbc\x85\x47\xc0\xd2\x32\xaa\x6e\x1f\xc5\x4b\x2d\xc5\x2b\x42\x9d\x27\x8d\xf6\x26\x16\xb0\x08\xd8\xce\x3a\xf8\x51\x45\xa6\xb0\x41\xcf\x04\x7a\xb3\xb4\xe7\xbd\x77\x11\x90\x37\x32\xc9\x6a\xe0\xe4\xa3\x07\xbf\x6a\xf9\xc3\x50\x7a\x9e\xa7\x44\x8e\x5f\x37\x1a\x05\x99\x02\x0a\x2f\x08\x41\x6f\xaa\x9f\x73\x9a\xee\x29\x5e\x5f\xfa\x4c\x15\xc7\x7e\x9a\x17\x9a\xa8\x79\x93\x1e\x91\x08\x73\xd1\xf9\x88\x5d\x76\xbc\x6a\x17\x93\x47\x08\x1f\xc2\xa8\x50\xc2\x07\x9b\x0a\x90\xd0\x33\x03\xfb\x80\xe2\x9b\x6f\x52\x1b\xd6\xd1\x49\x3c\xf2\x1d\xad\x66\x64\x29\x47\x28\x8c\x23\x55\x80\x5d\xa3\x78\x68\x29\x6e\x17\xb8\xae\x62\xf9\xe0\x65\x8f\x26\x37\xfc\xa1\xcf\xc6\x7a\x39\xdd\x21\xec\xc0\xef\x29\x77\xf7\x8f\xc6\xaa\xb0\x3f\xaa\x18\x9c\x79\x3f\x1a\xae\x73\x13\xf2\x59\x1e\xa5\x5f\xa4\x5b\xcb\xaf\x1d\x6c\xa4\x1b\xe5\xd9\x68\x58\x4c\x78\xfd\x3b\x40\xa6\x58\x44\x01\x01\x44\x84\xda\x94\xde\x55\x66\x06\x03\xcc\xb1\x9d\xe3\x8c\xe2\xbd\x5c\x54\xa9\xd4\x30\x4b\x97\xa3\x82\x4c\xc2\xe5\xcc\xb8\x86\xd0\x28\x58\x91\x96\x13\xc7\xf9\x29\x3d\x3c\x87\xa6\x5a\x9c\xe6\xa5\xc3\xb0\x74\x64\xda\x27\x74\x06\x03\x2c\x5e\x4b\xf1\xfa\xa9\xc9\x28\xaf\x6b\x9d\xd0\xf9\xf9\x76\x37\xc5\xf1\xef\x48\xb0\x07\xa7\x9d\x4c\xbd\x32\xf1\xff\x17\x4d\x87\x48\x98\x0e\xd7\x5d\x5b\x8a\xe7\x44\xb4\x6b\x65\x66\xe4\x72\x60\x1b\xc7\xf9\x94\xe7\xde\x9d\xa3\xd2\x0f\x49\xe2\xa6\xd6\xa0\xde\xab\x55\x53\x8f\x8e\x27\xf6\xff\xea\xd7\xdd\x3f\xf3\x8d\x8c\x41\x9a\x14\xfd\x27\xca\x55\xe5\xd6\x6b\x79\x64\x88\x8f\xb3\xb2\xa9\x9a\xda\x50\x3d\xe4\xcb\x95\x03\x80\xc6\xbf\xac\x08\x3f\x56\x1c\xde\x05\x44\x04\xf4\x2f\x4e\xe0\xd9\xa0\xb3\x83\x7b\x29\x04\x4f\xa5\x07\xe1\xcb\xe0\xe7\x31\xa3\x71\xd6\xec\x3e\xff\x7a\x90\xb6\x07\x0a\x9f\xfb\x81\x52\x86\x3c\x15\xf8\xfa\x58\xd8\x3a\x82\xcf\xf0\x03\x89\x25\xcb\x00\x64\x14\x75\x6c\x5e\xc9\x17\xea\xe4\xfe\x71\xa0\x1a\x69\x3f\x6e\xe2\x0c\xb1\x4a\x8f\x03\x8e\xe3\x74\x00\x30\x86\x5f\xfb\x46\xef\x28\xcf\x23\x93\x4c\xaa\x76\x31\xb2\x2a\xf4\x63\x50\xcc\x89\x74\xa3\x32\x5c\xbb\x50\x03\x71\x1f\x9c\x7e\x01\x36\xcb\xe1\x48\xa1\xbd\x64\x3d\xb7\x9c\x3e\xc8\x89\xc6\x31\x82\x19\x0e\xad\x89\xab\x18\xd8\xf3\x95\x71\x87\xeb\xe8\xc4\x36\x1d\x44\x49\x2e\x95\x19\x9e\xd0\x09\x3d\xc0\x39\xe1\x84\xc0\xd7\xcc\x8a\x45\xa1\x28\x02\x92\xdb\xb0\x77\x5e\x87\x7f\x7b\x63\x76\x71\xba\x3d\x4a\x48\x55\x32\xef\xcb\xf7\xc2\x42\xc5\x69\xcd\xaf\x95\x54\x6d\xd1\x8f\x12\x02\x7e\xf9\x7b\x86\x7b\xc9\xaf\x1b\x3d\xea\xf2\x22\x8b\x86\x43\xf9\x00\x07\x15\x55\x85\x9e\xee\x1a\x66\xc3\x78\xc4\x15\x9d\x64\x18\x34\xcb\x90\xd4\xe3\x67\xfc\x0e\x8a\xc2\xbe\x8d\x4d\xd2\xb3\x71\x2a\x6d\x0e\x67\x4f\xe9\x4b\xae\x73\x55\xce\x75\xd2\x05\x01\x07\xa1\xea\x2a\xc1\x70\x1d\xcb\x7e\x66\x56\xb8\x79\xb4\xa0\x05\xa8\x8c\xf7\x46\x84\x7e\xab\x62\xe3\x4b\xbb\x09\x30\xf4\xe3\x7e\x9a\xfa\xbf\xdc\x09\x3c\xc8\x8d\x35\x1b\x45\x55\x4f\x11\x5a\xbf\x8f\x13\x06\xfb\xff\x96\xe6\xa2\xbe\x8b\x91\x23\xfe\xcf\x15\x2d\x22\x8a\x3a\x55\xbb\x62\x21\x5d\xd9\xbd\xe1\x4f\xb8\x65\xd3\x45\x46\xc4\xf2\x3d\x8a\x8f\xf9\x56\xed\xc4\x9e\x99\x69\xaf\x45\x19\x1c\x07\xf0\x79\xc7\xd5\x9c\xfe\xb8\x3a\x38\xd7\x4c\x8f\x79\x11\x82\x10\x53\x08\x69\x7a\x9e\x28\xef\xd1\x22\x75\x4a\xc3\x4e\x58\xe1\x98\xd6\x0b\x87\x8e\xd2\x84\x7f\x87\xfb\xaa\x99\x75\x6b\xac\xa4\x79\xdf\x69\x32\xfb\x5d\xce\x6c\x12\xf6\x89\x03\xcf\xa0\xc7\xf1\xce\x2f\xf9\xd9\xb1\x9b\x17\xb3\x4e\xb5\xe8\x7d\xe8\x95\xb0\x9e\x66\x14\xcd\x31\x71\x61\x39\x1b\x97\xe3\xb8\xe6\x3d\x74\x12\xb0\xbe\x09\x4e\x3b\xbb\x75\xae\x89\x40\xdb\xb5\xcb\x36\x73\xfa\x24\xd8\xa5\xdc\xa6\xe7\x8b\x06\x98\xc3\xb3\x98\xee\x74\x23\xc7\x09\x41\xd0\x3b\xaa\xa2\xe1\xd1\x4a\x96\x63\x72\xfb\x44\x19\xf4\x45\x5a\x9f\xd6\x09\xd2\x8f\xa3\x81\xca\x0d\x18\xc5\x88\x1c\xec\xbe\x56\xc3\x7a\x1b\xab\x4e\x32\xdb\xf2\xd7\x61\x2f\xbc\x46\x8b\x96\xf1\xf4\xb4\xfe\xd1\xdf\xc1\x93\x41\xa6\xfb\xa9\xf2\xa3\x79\x43\xd7\x14\x1f\xd3\x4e\x40\x5a\x31\xb9\xa1\xa4\xe9\x0e\x61\xc5\x63\x69\xdc\x27\xd9\x46\x6c\xfb\x0f\x03\x65\x29\xcd\x9c\x12\xc9\x9a\x1b\xca\xfc\xe5\xcc\x9a\x15\x6e\x89\xb1\xa3\x38\x7d\x17\x00\xcd\xe0\xdb\x88\x0d\xf7\x3f\xd6\x0a\xbf\x99\x19\x62\xde\x71\x58\x41\xc6\xc2\x32\xcd\x7c\xa1\x2d\x63\x8b\xa8\x37\x30\xad\x96\x53\x4b\xfd\x09\x61\x68\xf8\xb5\x93\xc6\x1b\xd8\x2c\xec\x1b\x47\xa2\x40\x86\xc1\xec\x60\xbe\x50\x84\xf0\x30\x75\x3a\xb9\x2a\x54\x07\x1e\xda\xab\xf1\xf2\xc3\x34\x2f\x30\xf0\x73\x43\xb9\x99\x59\x37\x94\xf3\xf5\xd6\x20\x4a\xba\x18\x66\x09\x8a\xbf\xfc\x1b\x24\x3e\x27\x94\x0c\xf7\x45\xd4\x35\x22\x5d\xee\xc3\x14\xcc\x89\xf9\x0f\x14\x28\x6c\xd5\x66\xdd\x48\x03\xe0\xd8\xdf\x10\xeb\xe1\xb4\x76\x49\x3d\xa2\x88\xd6\xfd\x28\x29\x90\xd8\x62\x41\xa1\x25\x84\x05\xc5\xf0\x03\xe9\xe6\x6f\x3f\x27\xf6\xff\xea\xd7\x99\xe3\x26\x4f\x09\x9d\xb4\x8b\x81\x6a\x9a\x5f\xac\xed\xbb\x17\x5f\x6c\xe7\xc5\x28\x49\xdc\x5c\x55\x4c\xf7\x5a\xce\x22\x0c\xe6\x53\xf8\x42\x8d\xc2\x14\x00\x31\xe0\x53\xb7\x5a\x94\xbb\x6d\xb5\x36\xb6\x17\x8e\xa4\xe3\x96\xf2\x29\xe3\xb0\x48\x6e\x2f\x9c\x51\x78\xca\x65\x6b\x8b\xdd\x74\xf3\x04\xe7\x0f\x49\x52\xa0\xc0\x8e\x2b\xe5\xce\x57\x69\x16\x87\xf0\xf0\x49\x65\x46\xa5\x60\x63\xc7\x55\x9f\xec\x7a\x2d\x83\x25\x47\x64\x2f\x59\x28\xdd\xee\x96\x93\x09\xf2\x20\x9b\x7c\x38\x12\x3b\x39\x60\x3c\x4e\xd3\x0e\xdc\x3a\xa5\x85\xf3\xfe\xad\x1a\x0f\xa5\xab\x36\x8b\x01\xf2\xc7\xbd\xe4\x8e\xbe\xd8\xa1\xd1\x6f\x54\xda\xe8\xf3\xee\x88\xf4\x65\xde\x0f\xc7\xdb\x4c\x23\x9f\x9f\x3d\xd0\x3e\x38\xbd\xcb\x73\x5a\x58\x6f\x1c\xfb\xf8\x32\xed\x63\xbc\x27\x6c\xb4\x59\x76\x35\xf0\xf3\xb8\xdd\x9d\xf2\x4e\x31\xea\xa1\x06\xf8\x5c\x9c\x66\x47\x2c\x09\xc5\xc8\xd6\xd9\x73\x95\x2f\x14\x56\xd6\x94\xfb\x52\x52\x1a\x07\xaf\x29\x7f\x19\x5f\xd4\x34\x30\x66\x66\xda\x26\xca\x26\x3c\x6c\xf8\x34\x7d\x69\x19\xaf\x79\x08\xc5\x6d\x0f\xe4\xce\x6c\x37\x0a\x0b\xb3\xc4\x2d\x53\x2c\x8c\x13\x0a\x0f\x72\x42\x21\xee\xf2\x22\x4a\x12\x5b\x70\xfb\x1e\x29\xeb\x1d\x0a\xd4\xfc\xba\xd6\xc5\x9d\x9b\x2b\x83\x81\xcd\xc8\x6a\xdf\xab\x4f\xbd\xa3\x84\xea\xde\x71\xcd\xe4\x62\x15\xd3\x61\x7c\xc9\x6f\xd3\x17\xc6\x69\x70\x71\xdc\x3a\xf0\x9c\x2c\x0e\xfa\x40\xf6\xca\x1a\x7b\x02\xe2\xd7\x1e\xeb\x28\xf4\xda\xbd\xda\x8e\x5a\x58\x5c\x68\x77\xd3\xd1\x92\x48\xbd\xe0\xf9\xdd\x08\x5a\x5f\x9f\xe5\x60\xc2\x49\x2f\xaa\x85\xc3\x2a\xee\xad\x44\x71\x9c\xb7\x7c\x25\x71\x5c\x09\x0e\x1d\x0f\xf6\xba\x0d\xf6\xa5\xa7\xe8\x0d\xb0\x0c\xb7\xd0\x04\xc3\xc9\x33\x85\x93\xc7\x19\x03\x95\x89\x23\x36\xe8\x75\x3a\x9f\x9c\xbe\xfb\xa2\xc8\xbb\x30\xfc\x8e\x87\x14\x9e\x50\xfb\x2b\x8f\x6d\x54\x06\x02\x73\x73\xfb\x75\x6e\xb6\xe0\x71\xad\x33\xea\x77\x79\x2f\x52\x14\xa1\x48\xba\x38\x88\xa1\x9b\x7e\x8c\x90\xf4\xd2\x62\x28\xb3\x4f\x71\x2a\x51\x34\xba\xeb\x63\xcf\xd3\x3e\x8b\x63\x1d\xd9\x88\x2f\xf3\x07\x26\x8b\x12\x2b\x94\x43\xa5\xc9\x27\x7d\xa4\x4d\x0d\xd5\x7b\x4d\x69\xbe\x51\x77\x30\xb7\xdd\x98\xe5\xd7\x85\x13\xdb\x72\x0e\x40\x80\x47\xe3\x06\xd5\x55\xdf\xcb\x9c\x7e\x39\x25\xb3\xa6\x96\x92\xe2\x03\x5b\x84\x5f\x57\x72\x96\x95\x95\xb4\x02\x8d\xfe\x4e\xa0\xa0\xd1\xdf\x71\xf1\xc9\x0c\xa2\x3c\x9f\xf4\x0c\xbd\xbb\x4a\xac\x87\x29\x40\x32\x77\x57\x78\x8c\x43\xb5\x8c\xb6\x3c\x14\xfa\x23\x10\xce\xd0\x34\xb8\x8e\xbf\x16\x90\xbf\xc7\xba\x1f\x57\xf4\x89\x55\x03\xa6\x10\xde\xf6\x98\xf6\xcc\x3b\xd6\xd4\x38\x78\x29\x5d\x8a\x2d\x7f\x61\x9c\x4f\x4f\x02\x04\xea\x6a\x4c\x67\x68\xb6\x07\x03\x2f\x11\xd8\xf9\x4c\xe3\x93\xbe\xcd\x4c\xc1\x89\xa0\x80\x6b\xe9\x2f\xf9\xa2\xf6\x35\x7e\xa9\x4c\x8b\xf2\xbe\x28\x92\x22\xff\x65\x6b\x6e\xbe\xa8\x6d\x50\xf2\x1a\x5a\xb5\x19\x03\xe2\xb1\xae\xde\xa1\x87\xc7\xaf\x5d\x8e\x63\x5f\x2e\x53\x9c\x9e\x48\x4f\xf0\x18\x22\xf0\xbc\x61\x86\xeb\x89\xf7\xe7\xe3\xaa\x15\xcc\x33\x06\xbf\x26\x20\x73\x29\xf2\xac\x75\xd6\x70\xbb\xe8\x67\xe9\xa8\xd7\xdf\xe5\x2b\xaf\xf3\xd4\xdf\x90\x60\xea\xa5\x48\x70\xa6\xe3\xde\xe2\xac\xe7\x04\x9f\x02\x06\x6a\xdf\xd7\x15\x68\xc4\x14\xd9\x28\xa1\xf5\x80\xc8\x70\x29\xf0\x20\xd4\x63\xb4\x07\x41\x7c\xfb\xa4\x51\xfa\xed\x9b\xa3\xa8\x60\x15\x7e\xed\x60\x8b\xb8\x7d\x51\xd1\x81\x37\xb5\xd0\xc8\xe6\xf6\x83\xaf\xdc\x36\x5f\x9f\xa5\xbc\xd2\x59\x1f\x2f\xf8\x0b\x2d\x48\x10\xc5\x51\xcf\xca\xdd\xc3\x61\x78\x45\x19\x91\x5c\x69\x32\x62\xe0\xf9\x26\x6f\x49\x06\x4d\x2a\xb9\x87\xa3\xb5\x3e\xca\xd3\xed\x25\x93\xac\x98\x81\xcd\xa2\xd0\x60\xbc\x28\xf9\x26\x76\xab\x64\x9c\x0d\x44\xb1\xe5\xbe\x41\x8b\x16\xdf\xfe\x06\xff\x05\xa2\xd7\x7b\x0a\x7a\x72\x49\x05\x9e\x61\x96\x16\xd0\x91\x7f\xc0\xef\xcd\xbb\x63\x25\xec\x0f\xd0\x0e\x4f\xcc\x15\x8d\xeb\x45\x8c\xbb\x58\xb8\x4f\x3b\x37\x9e\x1d\x7b\x0a\xe0\x22\xb0\xa0\xb8\xff\x93\xc0\xc4\xf3\xfb\x06\x0f\x6b\x46\x65\xbc\xd7\xaf\x13\x46\xf7\x32\x0c\x2b\x50\xa7\xe7\xb7\x14\x47\xfc\x28\x8a\x26\xfe\x13\x5a\x72\x48\x58\xb6\x34\x53\xe7\x46\xe0\xcd\x8e\xde\x52\x6b\x17\x88\x49\x41\x8a\x6f\x7f\x0e\x33\xb3\xed\x9e\xc9\x7a\x26\x29\x46\x86\x21\x3c\x9a\xea\x8f\xc3\xe5\xb2\xaa\x15\x8e\xd6\x7a\xa0\x73\x73\xed\x61\x38\xa1\x2a\xd8\x4f\x54\xea\xfd\x09\x92\x77\x51\x75\x7e\x54\x83\xc5\x6c\xce\x50\x49\x47\xf3\x72\xf8\xf6\xcd\x46\xdb\x21\x06\x32\x22\x24\x2c\x54\x29\xe0\x58\x2f\x6f\xe2\xe3\x98\xe1\xa5\x5b\xd8\xa6\x18\x65\x5d\xb3\x4e\x84\x46\xe1\x24\x95\xa5\x15\x92\x0c\x78\xc4\xb8\xa2\xdb\x15\x26\x8c\xda\xe7\x7f\x14\x54\x48\x4c\x5e\xc3\xff\x7a\x2d\x4d\x23\xdb\x04\xa8\x3e\xa0\x15\xcd\xc7\x30\x5f\xa8\x71\xd9\xf2\x28\x2b\xfa\x36\x7b\xc8\xcb\xcb\xec\xa0\x14\x53\x3c\xaa\xcb\xef\x22\x1d\x6c\xa5\xbe\xf2\xbe\xa2\xc7\x90\x94\xec\x0b\xce\x14\x9b\xbe\x31\x3a\x20\x57\x69\x4d\x60\x8a\xb9\xb3\xa3\x34\x78\x6e\x2a\x37\xd5\x3f\xc7\x0d\x74\x31\xbf\xbc\xb5\xd2\xfb\xf6\x83\xa2\xac\x58\xdf\x5d\x7e\x2f\xdd\x23\x60\x01\xdd\x40\xf9\x82\x6c\x69\xd1\xbf\xf3\xb4\x8b\x84\x0b\xef\xa1\xb6\xad\xce\x36\x26\xae\x67\xb4\xad\x98\x4a\x0c\x41\x88\x97\x80\xf2\x84\x07\xcf\x25\x79\x68\x12\xd3\x35\x93\xca\x8b\xa8\xd5\x29\x3f\x8e\x5b\x02\x63\xed\x5f\x84\xa5\x25\xaf\xbd\x7c\x41\x61\xa8\x37\xa8\xd3\x98\xb3\x0a\x2b\x72\x56\xfd\xfe\xe7\x7e\x79\xbe\xe5\xc7\x26\x9b\xda\x83\x64\xb3\x36\x28\x9b\x3d\xd0\xce\xd7\xa2\x65\xc8\xb3\xb0\x0d\x8e\xa2\x9b\x9e\xab\x75\x63\xe6\xe7\x89\x6f\x99\xd8\x2c\x27\xcd\x78\xba\xa3\x8d\x03\x36\xe7\xbc\xbb\xbc\x1c\xc5\x11\x94\x63\x9c\xce\xd1\x3d\xfc\x5b\xbe\x50\xd5\xd4\xc0\x16\x26\x66\x8f\x5e\x2d\x68\xc9\x8e\x4e\x9a\xa1\x7e\x0c\x25\x91\x68\x46\xd2\x72\xc0\xa2\x39\xa3\x8c\x0d\xf2\xb0\x9f\xc6\x26\xc3\xc8\x15\x5d\x9f\x9f\x8e\x55\xb3\xe5\xac\x12\xaf\x3c\xda\x64\x63\x64\x4d\x5e\xf0\x1c\x53\xc4\x37\x95\xdc\x36\x74\xa9\x1c\x8a\xc1\xb5\x5a\x18\x18\x27\x3e\x8f\xfe\x49\xf6\x22\x69\x87\x48\x53\xf2\x53\xc5\xf2\xf9\x54\xcd\x78\xc2\x34\xcb\x46\xc3\xa2\x45\xb3\x3c\x44\xf8\xdf\x0f\x14\x74\xff\xf7\x3f\x33\x45\x8a\x12\xd8\x30\xb6\xf4\x62\x52\x24\xf0\x4d\xd5\xc8\xc9\x6c\x1e\xf1\x68\x98\x6f\x1e\x7d\x1d\xb9\x91\x0d\xde\xab\xb6\xdb\xb3\x0c\xf3\x57\x7c\x75\xd7\xef\x54\xbf\x35\x1b\x25\x2b\x36\x6e\xb5\xbe\xf2\xcf\xf9\xce\x03\x3c\xca\xaf\x9b\xcc\x2b\xfa\x26\x96\x5e\x91\x9a\x19\x49\x5c\xdb\x54\x86\x72\x51\x12\xaa\xbe\xe8\xb5\x40\xe5\x8e\x67\x55\x79\xfc\xf1\xf8\x73\xd5\x04\x63\x71\x7a\xb1\x7d\x70\xfa\xd9\x96\x9f\xd1\xdc\x50\x40\xb5\xba\xfb\xd4\xec\x81\xf6\xd0\xda\x15\xba\x41\xa0\x57\xbf\x46\x37\x88\x5f\xd7\x7a\x34\x07\x9e\x13\xf1\x0b\xc9\x32\x44\xd5\xad\xa2\x1b\xa4\x71\xbd\x94\xd0\x4d\x78\x74\x19\x86\x05\x22\xc5\x5c\xc6\x55\x1c\x51\xb7\x9b\x50\x74\xa2\x7b\x86\xcf\xc2\x9c\xfa\x3d\x1c\x2e\x7c\x31\xf6\x8e\x98\xa6\xcb\x4d\x54\xba\xc3\x72\x8a\x50\x01\xc8\x17\x4d\x32\x28\x79\x91\xb1\xa8\xa9\xa8\xf8\x9d\xac\xd8\x4f\xf8\x08\xfb\x5a\xd5\xec\x34\x32\xbb\x14\xad\x90\x47\x33\x88\xe5\x57\x2b\xf3\xaf\x3d\x94\x92\xa0\x93\xbd\x5b\xf9\xcc\x40\x53\x90\x95\x21\x15\x0e\x36\x4a\xba\xa3\xd0\xe6\x93\x94\x6e\x70\x08\xa7\xa5\x85\xa3\xe5\xb8\x82\x1f\xe3\x06\x4a\x98\x6f\x54\x9b\x32\xd9\xd0\x16\x55\x65\x6f\xa7\x06\xef\x5d\x3e\x86\x59\xfa\x12\xd9\x8b\x50\x8a\xcc\x19\x9d\x96\x96\xbb\x88\xe3\x09\xa9\xc5\x64\xa3\xa9\x70\xdf\xc6\x85\x83\x7b\x33\x36\x4a\x49\xc2\x9e\x6a\xd4\x85\xa9\x24\x13\xb3\x5c\x45\xfd\x75\xa0\x5c\x24\x20\x52\x8d\x6a\xe0\x88\x52\x85\x8d\x92\x30\x4d\x7a\xd9\x28\x2a\xb8\x75\xb7\xe0\x21\xe0\xfb\x84\x52\xb0\xa9\x24\xa9\x86\x29\x81\xb3\x4c\xbc\xdb\xe7\xd4\xc7\x95\x33\x0b\x4b\x89\x8b\x37\xb9\x3a\x1c\x6f\xd1\x3d\x63\xd7\x59\x3c\x68\x76\xcd\x0f\xbc\xb4\xc2\x3b\x15\xca\x5f\x1c\xd9\x55\xc2\x18\x08\x40\xe4\x12\x60\x0b\xb8\xf8\x3e\xd8\x9e\x7c\x01\x49\x16\x0c\x31\xce\x51\x7b\xdc\x95\x4b\x8b\x0a\xf5\x50\xae\x6a\x7e\x2f\x65\x23\x09\xa2\x2b\xd8\x70\x77\xc6\x8f\x28\xb9\x5e\x93\x17\x0f\xd3\xea\x17\x6f\x1d\x35\x03\xbe\x88\x53\x02\xa0\xf2\xdf\xd0\x2e\x62\xe7\xd5\xdd\x13\x2b\x50\x90\x28\x78\x3d\xf0\xdf\xd0\x36\x66\xef\x43\xb4\xf1\xf9\x9d\xb5\x84\xf1\x0d\x9a\x27\xa0\x32\xdb\xd5\xf1\xc0\xba\x2d\x20\x7b\xf1\x6b\xee\x57\xa7\x73\xdd\xf5\xdd\xaa\x41\xce\xd0\x49\x01\x62\x6a\xc7\x82\x5b\x6a\x44\xf3\x09\xbe\x02\x8e\xcb\x3b\x4a\x96\xb6\xd5\x51\x59\xd9\x69\x75\x34\x0c\x47\xaf\xbc\xc2\xad\x38\x2c\x3a\xac\x55\x7e\xad\x5a\xec\x45\x9a\x59\x42\x44\x60\xc5\xdc\xa2\xfb\xc3\xaf\xc7\x4f\x56\xe3\xef\xd3\x65\x89\xf7\xa8\xaa\x3a\xa6\x3a\xca\x3c\x9e\x8d\xdd\xf1\x70\x5f\x1b\x7b\x82\xf2\x9d\xc0\x77\xf6\xa6\x36\x68\x35\x20\xfc\x4c\x10\xc3\x17\x1d\x88\x3f\xad\xf8\xb2\xa2\x33\x82\xbe\xcd\x25\x3c\x4c\x19\xd7\x29\xf0\x1f\xab\x52\xf0\x74\x92\x86\x18\x62\xf9\x59\xfe\x70\x11\x9e\xa7\xfb\x8d\xca\xaa\xde\x60\x2f\x53\xfe\x25\x6b\xb2\x28\xef\x13\x9a\x0c\x08\x0b\x96\x1e\x11\x10\x50\xcb\xd9\x3e\xa3\xb7\x82\xf4\xe3\xdd\x06\xb0\xe6\x42\x7b\x60\x8a\xb0\x8f\x0d\x2b\x82\xba\x1e\x85\x74\x4c\xf1\x47\x56\x4d\x6f\x64\x63\x20\x02\xb7\x2e\x12\x84\x61\xeb\x62\xed\x4c\x22\x33\x82\x22\x83\x47\xae\xef\x29\x7f\x07\x1b\x58\xda\x4d\xdb\x8f\xe3\xa7\xdb\x99\x1d\x9a\x28\xa3\x5e\xa3\xf3\xfd\x72\x5f\xe3\xaa\xaa\x59\xfb\x36\x8f\xd8\x64\xbd\x32\x61\xd6\xa0\xde\x73\xca\x99\x79\xb8\x9e\x99\x41\xd4\xcd\x5b\x8a\x26\x12\x28\xb4\xd1\xeb\x4d\xec\x30\x33\xca\x8b\xcc\xc4\x11\x63\x2d\x85\x10\xa5\x30\x25\xaf\x6a\xf3\xe7\xcc\x96\x95\x14\x96\x2f\xda\x90\xac\xa0\xcc\x17\x6a\x9e\x1e\xa6\x49\x1e\xe5\x85\xf6\x94\x3e\xa9\x3c\xa5\xeb\xca\xaf\x65\x25\x99\x8e\x92\x2e\x47\x72\xae\xef\x14\x93\xe2\x82\x6a\x54\x97\x19\x56\x77\x64\x39\xe7\x13\x6c\x72\xcb\xd9\xf6\x1e\x51\x88\xca\x30\x1d\x0c\xa2\xa2\xb0\xf6\x21\xe5\x6e\x73\x12\xd1\xcf\x8d\xc3\x94\x10\x1e\xed\x5c\x36\x38\x1b\xfb\x62\x96\xfb\xf8\xa2\x7f\x41\x1f\xcc\xe0\x8d\x40\x71\x14\x17\x54\x90\xbc\x12\xf8\x46\xc2\xc2\xb8\xea\xc1\xe3\x8c\x3d\x76\x6e\x3c\xa2\xe6\x6a\x79\x91\x4f\xf8\x80\xf0\x7f\x8d\x15\xb3\x05\xcc\x40\xd1\xff\x7b\xd2\xb1\x38\xc2\x2c\xcd\xd7\xf3\xc2\x0e\x04\x8a\xe0\x0c\x58\xe7\x95\x81\xaa\x3e\xe8\x97\x49\xa2\x83\xee\x06\xfb\x94\xd0\x6d\x16\xcf\x12\x45\xec\x4b\x7b\xd8\x31\x02\x8c\x6d\x39\x5f\xfd\x33\x5a\x74\x3a\x4b\xf3\xa1\x0d\x8b\x7c\x97\x47\x43\xb2\x84\x2d\x8a\xf1\x6b\x63\x4f\x8f\x42\xfe\xc1\xff\x1d\x47\x00\x4e\x59\x36\x56\x17\x7a\x8b\xd0\x4f\x56\xa3\x5e\x99\xcd\xf1\xb2\xc0\xb3\x80\xfc\x08\xbf\x0e\x7c\xa5\x53\x44\x71\x61\xbb\x93\x55\x8c\xfa\x67\xaa\xa3\x56\x70\xed\xf5\x5e\xf3\x0b\xed\x9c\xad\x23\xfd\xb4\xed\xcf\xb5\x04\xf4\x9f\x37\x60\x24\xcb\xf2\xb4\x6b\x3f\x53\xa1\xcd\x49\x4e\x64\x3f\x4f\xb7\x47\x4a\x42\x92\x0b\x06\xa5\x07\xc3\x9f\x16\x38\x48\x48\x01\x1f\x20\xa5\x5f\x67\x30\xba\xb8\x50\xc1\x38\x13\xec\xe8\xfb\x3f\x8b\x0a\x1f\x71\xf6\x91\x4e\xeb\x6b\xfb\x35\x46\x5b\x60\x3f\x53\x9d\xd6\x8b\x2f\x96\x1f\x24\x78\xee\x3f\xfc\x7c\xa7\xf5\x2b\xcf\xbb\xf5\x4a\x28\x83\xdd\x1d\x55\x81\x3e\x82\xa3\x04\x1f\xc8\xaa\xb1\x0a\x81\x28\x8d\xea\xc7\x3a\x3b\xbf\xe4\x30\x75\x74\x63\xa9\xc9\x79\xfb\x9f\x6c\xd0\x40\x51\xcc\x42\xe8\xb8\x74\x8e\x22\xdf\xf8\x2a\x6f\x6d\x96\x41\x42\x7a\xfe\x48\xc7\xa3\x12\xd1\xe4\x44\xec\xbf\x4f\x33\x4b\x1c\x5d\xb0\x1d\x41\x8e\xb2\x67\xa3\xf5\x75\xaf\xa4\xad\xcb\xf9\xcf\x6f\x10\x04\x0e\x15\xf1\x4f\x1a\x7d\x6d\xba\x36\x47\x1d\xe2\x74\x54\x17\xa7\x9d\x8e\xea\x13\x0e\xd8\x68\x7a\x49\x9a\x17\x51\x28\x53\x0f\x54\x2a\xef\x61\xc5\xca\x18\x9b\x7e\x36\xba\x76\x97\xdc\xdf\x26\x76\x94\x11\x91\x3e\x67\x05\x04\x01\x71\x7b\xd4\xf5\x8d\xc0\x43\xfc\x3f\x6d\xb2\x97\xe8\xda\xb8\x80\xfb\x8e\x23\x0b\x95\x1f\x25\x76\x96\x8f\x57\x40\x4c\x59\x94\xb3\x6c\x24\xdb\x6d\x04\x1e\xfb\x78\xc6\xed\xaa\x6e\x1a\x8e\x06\x36\x29\x26\x7c\xd1\xc1\x96\xbb\xac\x44\x11\xf8\x6c\x75\x72\xe3\x11\xe5\x1f\x59\xd8\xec\x01\x25\x7e\x87\xb4\x97\x93\x54\xdc\x0f\x76\x5b\xc6\x56\xe1\xa4\xc9\x03\x33\xd7\xd1\x2b\x15\xfb\x2b\xfa\xa6\xd8\x06\xbb\x20\x05\xec\x5a\x46\xae\x64\xd9\xd9\x24\xae\x33\x1c\x25\x61\xdf\x61\xe1\x84\xad\xee\x21\xbf\xc7\x6b\xbb\xf3\x97\xda\xf9\xfa\x60\x29\x8d\x27\xb4\x8d\x31\x62\x1a\xbe\xe5\x44\x47\x39\x4b\xdd\xac\x15\x36\x24\x8e\x1f\xad\xba\xcf\x44\xb7\x12\x3d\x59\x7e\x5d\x9b\x93\xcc\xcc\xb4\x6d\xd2\x8b\xa3\xbc\x3f\x51\xee\x61\x51\x0f\xf4\x38\x25\x5e\x36\x22\xeb\xbe\xfd\x87\x3a\x7c\x7a\x17\x82\xc2\xc8\x96\xff\x5f\xfc\x11\x5f\x34\x51\x2d\x06\x51\x37\x89\x7a\x7d\x34\xa1\xb0\xcc\xee\xa9\x25\x77\x2f\xa8\x37\xa1\x16\xda\xcb\x69\x66\x43\x93\x7b\x84\xa1\xd6\xc5\xe6\xd7\x2a\x97\x2d\xa2\x81\x65\xf3\xf8\x2d\xb4\x38\xb7\x2e\xba\x99\x5a\x37\x5d\x65\x10\x21\x22\xec\x8f\x74\xb8\xfd\x11\x40\x0b\x4e\xb3\x5e\x4d\x85\x61\x7d\xca\xa7\x34\x49\xa3\xcb\x89\x8d\x70\xa3\xd5\xec\x71\x54\xdc\xd6\x78\x9a\xa3\xd5\xac\xde\x76\x1f\xf7\xc2\x62\x27\x39\x38\x70\xc9\x83\x0c\x00\x31\x64\xa2\xa3\xfa\x23\x77\x28\x47\x76\xda\x55\xe5\xd7\x91\x5e\x9f\xd2\xf7\xc4\xc2\xc7\xae\xbd\xa3\x55\x0a\x30\x2f\x42\x75\x7c\x42\xb3\x57\x99\xc0\xcd\x8c\x43\x95\x0a\x6f\xd1\x0d\xc6\x49\xcd\x83\x64\xfe\x0b\xa4\x19\x48\x14\xee\xe3\x77\x22\xb5\xdc\x5b\xb3\x54\xf9\xa5\x76\x91\x59\xc1\xb0\x08\x1a\x45\x65\x3c\x67\x83\x27\xaa\x55\xc3\xcc\x4c\xfb\xe9\x9f\xa3\x5f\x87\x12\xea\x48\xa0\x94\xb1\x1e\xdd\xa8\x9a\x52\x7f\xe3\xab\x15\x3a\x9d\xdb\x6e\xb3\x07\x9c\xa0\x36\xdd\x02\x04\x46\xc6\xee\xa2\x1a\xdb\x49\x22\x4a\x78\x6e\x57\x35\x86\x91\x51\x88\xe8\xdf\xfe\xe9\x58\x6b\x71\x94\x0f\x0d\x7b\xf2\x12\x6a\x36\x67\xb8\xeb\xd1\x89\xd7\xbc\xdc\xd7\xd7\x1e\xc3\x9c\x1c\xdb\x6b\x57\xa7\x3c\x10\x58\x86\x4f\x7b\x5c\xff\x05\xd6\x20\x9e\xdf\xc7\x20\xbc\x01\x84\x77\x8d\xce\x13\xc1\x33\x7b\xf0\xf9\xdd\x40\x0b\xeb\xde\x56\x5e\x59\x3b\x3a\x65\xc5\xcc\x85\x14\xb9\x0b\xe3\x2e\xea\x74\xae\xa0\x1d\x48\xb7\x02\x30\x96\xc3\x8a\xbc\x78\x58\x35\xf5\x96\xb3\xc8\xb2\x62\xb8\x0c\x15\x3c\x8a\xb2\xee\x13\x34\x37\xd7\x4e\x97\x97\x89\x3d\x8d\xaa\xee\x72\x25\xaf\x29\x6f\x0b\xab\x39\xd0\x4f\x11\x4d\x45\xa7\xa1\x69\x06\xc3\x94\x87\xbd\xca\xff\x75\xc1\xf9\xbf\x3e\xaa\x35\x14\x07\xb6\xaa\x4e\x5b\xc1\x5e\x3e\xac\xe4\xbc\x6c\xf2\x24\x3d\x04\xc6\xf4\xe1\xac\x77\x89\xa3\x32\x61\x2c\x17\x8d\x34\x87\x55\x99\xcd\xbb\x0b\xb7\x77\x62\xa3\x0a\xf8\xf1\x3e\xc8\xff\xbb\x16\x46\x3c\xad\x32\xf7\x7b\x4a\xb6\xe4\x30\x56\x0d\x42\xec\x6d\xf4\x40\xd8\x3a\x0f\xab\x1c\x33\x29\x1e\x8b\x08\x7a\x94\x7e\x26\xee\xdc\x7d\x5a\x82\x02\x13\x2e\xef\xb4\xf4\x26\xfc\xb1\x74\xdb\x91\x59\x87\x66\xdd\xb5\xa0\x00\xe9\xfd\x7f\x78\xe1\xf0\x95\xca\xa9\x17\x0f\xcc\x7c\xf6\x98\xbd\xe1\x49\x17\xd6\x68\xe8\x1e\x8a\x28\x81\xdd\x3d\xee\xe6\xe5\x43\x9b\x74\x09\xe5\xa3\x44\x86\xa0\xf9\x20\x0c\x2b\xff\x15\x6c\x32\x52\x28\xdd\xcb\x0a\xa5\x7b\xd9\xc9\x4a\x0c\x63\xf1\x8a\xc4\xd1\x76\x49\x0d\xe8\x2e\x05\x5e\xcb\xc4\x84\x7d\xdb\xdd\xa5\x44\x0a\x27\x30\xdf\xc1\xd8\x6a\x67\xa7\x42\x88\xf4\xf5\xfa\x35\x44\x08\x04\x82\x93\x4a\x22\xee\x8e\xa2\xf8\xc7\xd1\x80\x4b\x60\xa6\xa2\x39\xd2\x93\x17\x59\x44\xa7\x59\x96\xbb\xef\x65\x27\xe9\xda\x53\x2d\xa7\x01\xbf\x03\xe9\xb4\x68\x0d\x78\xbb\xe7\x33\xb4\x1a\x71\xfa\x5e\x56\xd0\xd3\x9f\xe0\x33\x80\x4a\xb9\xa8\x1a\x25\x18\xfd\x01\x2d\xcc\xe2\xc5\x02\x20\xa3\x05\x8f\xe5\x7b\x11\x2b\x16\x47\xda\x39\x3e\x77\x80\x14\x3a\xad\xb8\x33\x0c\xd3\x65\x13\x49\x2c\x53\xcc\x3d\x8e\x23\xd3\xe6\x77\x43\x6c\x95\xe9\x9b\xc6\x0b\x8f\x15\xd1\x9a\x8f\x4e\x31\x46\xfa\xac\x49\x46\x3f\xcd\x87\x51\x61\xe2\x09\x1f\x8b\xee\x54\xf8\x0b\x65\x30\x13\xef\xc1\x47\x34\x69\xb8\xe8\xef\xf2\x15\xfc\x0d\x14\x0b\xa7\xd0\x53\x14\xb0\x1c\xfd\x04\x67\x58\xee\xf4\x0a\x5f\xc3\x9d\xc2\x63\xba\xa0\xdc\xa0\x4d\xbe\x42\x3a\x10\xd3\xbe\xbc\x71\x64\xde\x53\xca\xec\xe4\x2f\xb1\x39\x59\xc6\xac\x01\xa6\xbb\xd0\x0e\xb3\x51\xd7\x4e\x68\xe7\x71\x7a\x2f\xdd\x79\x12\x3a\x6b\xa3\x8b\x51\x5a\x98\x98\x3a\x6e\x48\xff\x21\x71\xc6\xaf\xb5\x7d\xad\xc9\x2c\x6d\x76\xd5\x57\x45\x4c\x91\x26\xab\xdf\x68\x45\xc1\x33\x4a\x84\x66\xb4\x0e\xb5\xeb\x3a\x4a\xa1\xbb\x15\xc1\x80\xf1\x53\x4a\xcf\xa3\xb0\x59\x94\x66\xa6\xb0\x93\xe5\x01\x85\x10\xc6\x3e\x8f\x7c\x81\xcf\x16\xe9\x1d\x3f\x37\xb8\xae\xcf\x97\x34\xb3\x79\xd1\xf2\x4d\x87\x4d\xe5\x1f\xb0\xa9\xf4\xe8\x46\xf9\xcb\x93\x1e\x42\xf1\x27\x63\x25\x4c\x8c\x66\x06\xa2\xe0\xf1\x80\x3a\xbc\x58\xf8\x77\x2b\x29\x97\x49\x56\x1e\x57\x88\x8e\xbd\x74\x4c\xe2\x67\xe2\x79\x60\x17\x5c\x42\x5e\x85\xb8\xf7\x0e\xe5\x17\x4e\xaa\xdc\x71\xdf\xfe\x37\xac\x2d\xfe\x4c\xe4\x58\xa8\x3d\xef\x8f\xfd\xac\xe9\x3f\x50\x22\x86\xd1\xe1\x89\x40\xcb\xdd\xed\xd1\xa1\x88\x61\x19\x5c\x51\x40\x7b\x01\x71\xe9\xdd\x40\xc1\x1d\x2f\x29\xfe\xc5\x16\x05\x7e\x01\xc3\x36\x21\x78\x6d\xec\x67\x52\x48\x7d\x7e\xa0\x26\x59\x3f\xf0\x16\xbd\xa3\x6c\x09\xff\xee\x05\x6e\xb3\x9c\xc6\x33\xe7\x0b\x7f\x92\xc4\xe9\x9a\xd0\x1e\x25\xfb\x56\x8b\xeb\x6c\x43\x9f\x62\xb6\x9d\xd9\x65\xdf\x38\x93\x62\xae\x2c\xeb\xf9\xb5\x6a\x86\x8d\x92\x51\xce\x8e\x8f\x73\x73\x9c\xd2\x4d\x52\x96\x8d\x93\x8a\x41\x31\xf2\xc0\x1a\x26\x77\x6b\x36\x46\xe8\xc0\x2e\xbf\x1f\x78\x05\xca\xfb\x5a\xb9\xe4\xd7\x34\xae\x74\xb4\xf4\x92\x0d\x8b\x5c\x53\xa1\xce\x2a\x4e\xfa\x69\xda\xe9\x15\xd1\x3b\xfe\x47\x81\xb2\x44\xb6\xe5\x22\xce\xd2\x95\xc8\xb4\x3c\xd7\x17\x33\x2a\x81\x7a\x37\x54\x42\x45\x3f\x1d\xe5\xe2\xc2\x81\xb8\xbd\x73\xa3\xdc\x4c\xfc\xba\xb3\x3d\x18\x2c\x2c\x2e\xb4\x7b\x23\x9b\x63\xbc\xad\x1a\x55\x0b\xdc\x49\xb8\x42\xdf\x1c\xdb\x6f\xc3\x55\xd4\x22\xaa\x30\xa1\xbb\xb5\x9c\x08\xe3\x76\x22\xa9\x93\xf2\x56\x89\xd9\xd9\xb5\x2c\x2a\xe0\xa0\x86\x08\x75\x57\xb1\x30\xb8\x02\xc1\x29\x7e\x51\xcb\x34\x46\xd4\x9d\x4a\x6c\x9e\xb7\x94\xed\xef\x4f\x91\x1f\xf1\x85\x0a\x46\x2b\x11\x23\xa7\x90\x3a\xdd\xc1\x7d\x96\x3b\xa7\xb2\x8a\x26\x0f\x8f\xa5\x68\xc5\x4e\x78\xc2\xf2\xa7\xe3\x8a\xd2\xbf\x6f\xd2\xde\xa8\x79\x41\x51\x5f\x77\x20\x96\x4d\x54\x8f\xb2\xd9\xaa\x6a\x3a\xbe\xef\xea\xc6\xb4\x6b\x5d\xc7\xdb\xe9\xb1\x94\xdf\x5a\xc4\x7f\xe5\x7e\xbf\x64\x8b\x38\x4a\xb8\xc6\x44\x98\x46\x07\x98\x5f\x37\x41\xd5\xf2\x22\x8b\x56\x5c\x75\x8b\x84\xfd\x13\x0a\x25\xfc\xba\x49\x70\xa2\x6b\x92\x28\xef\xb7\x14\xa1\x0d\x27\x9b\xf0\xaa\x1a\x60\x8e\xb9\xcd\x56\xc9\x13\xcf\xa5\x5f\xc7\xf4\x0d\xdb\x52\x8a\x28\x93\xb5\x42\x6e\x66\xa6\x5d\xa4\x59\x42\x77\x5b\x44\x35\x3d\xd3\xed\x9a\x32\x5b\x3b\x53\x25\xe8\x2c\xa3\xef\xc8\x07\x69\xa0\x74\xab\x2f\xd4\x4e\xbc\x99\x99\x76\x16\xad\x12\x6a\xbb\x5c\x05\x58\xa0\x6f\xe8\xd5\xfa\x86\x53\xc6\x58\x32\x6e\x16\x8e\x3e\x0f\x7b\x95\xf1\x85\x12\x39\xeb\xdb\x70\x85\xce\x0f\xd6\x1c\xc1\x77\xc0\x03\xb9\x4c\x73\x20\x69\x78\x7a\x91\x8f\xba\x51\x23\x8d\x56\xb2\x74\x4d\x59\x06\xff\x48\x5b\x71\xfc\x28\xd0\xb2\x60\x03\xd3\xb3\xbb\x95\x63\xdd\x1b\x81\xe7\xa9\x9d\x53\xba\x5f\x6f\x8e\x55\x50\xfd\xbe\xf2\x37\x61\xb5\x1d\x1c\x26\x6c\x34\xc5\x17\x0d\xc4\xa9\xd9\xf6\x28\x49\x6c\x68\xf3\xdc\x64\xeb\xb8\x79\xae\xee\x9a\x9b\x73\x7d\xe6\x87\x2b\xcc\xa9\xcf\x55\x49\xc2\x4e\xf0\x62\x57\x47\x95\x3c\x9c\xa3\x2a\x85\x51\xc9\x15\x78\x54\xeb\xa4\x57\xbf\xf1\x55\xfe\x7b\xd0\x68\x90\x8f\x8d\xa9\x62\xc1\x5f\x9f\xd6\x22\x1d\x97\x51\x0b\xb9\x56\xb3\xd7\xf8\x60\xf5\x00\xe9\x42\xd2\x2d\xc6\xc5\xbb\x7c\x8e\x22\xa5\x07\xab\x03\x15\x71\x8b\xfa\xc5\x38\x13\x3f\x46\xca\x8b\x38\x05\x8d\x11\x27\x57\xec\xbf\x2f\x01\xd5\xf1\xbd\xde\x0e\x7c\x27\x71\x39\x8a\x59\xf5\x49\xce\x40\x1f\x0e\x4e\x37\x61\x87\xc3\x74\x30\x34\xa1\xee\x68\xed\xec\xf8\xf5\xbe\x73\xa3\x01\x87\x65\x86\x43\x0c\xf2\x44\xaa\x1a\xc0\x27\x7e\x5d\xd1\xe1\x7d\xb9\xa5\xfc\xe6\x19\xc0\x2f\xe2\x71\x8d\x52\x26\x83\xa5\x28\x81\xc1\x98\x74\xa8\x3e\xa4\xdb\xa4\x25\xc0\x20\x0e\x75\xbf\xaa\x7f\x5e\x97\x11\x7c\xa1\x3d\x14\x83\x0e\xcc\x9d\x20\x55\x8f\x77\xba\xa8\x6a\xe7\xcb\x63\xef\xae\x18\x9a\x61\x94\x17\x99\x49\x20\xa1\x2e\xc2\x04\x4a\x54\xff\xb8\x2a\xf9\xfe\xab\xa2\xdf\xf2\x29\xdf\x93\x1d\xff\x4c\x9e\x74\x6a\x97\xa3\x24\x62\xae\x98\x42\x2c\xdf\xc2\x5e\x17\x7c\x1c\xfd\x5c\x84\xb4\x53\xe3\x8a\x41\x56\x94\xf4\x26\xfd\x39\xf0\x7b\x63\xd5\xa1\xbc\x89\xe5\x28\xb5\x70\xcb\xf9\xda\xdd\x0e\x9e\x54\x23\xbd\xd5\x34\x1e\x95\xc5\xde\x44\xa5\xbb\xed\x63\xe8\xef\x57\x78\xef\x0e\x0b\xd7\x1d\x44\x49\x04\xca\xb2\x12\xc5\xd5\xd0\x1f\xe7\x49\x66\x56\x57\xa3\x32\x11\xa6\x8d\x86\xda\x0e\xe4\x01\x7e\xdd\xc4\xdf\xcb\x0b\x93\xc0\xa5\x45\x70\xed\xb4\x9e\x30\xa0\xbb\x49\x9f\x23\xbb\xa1\xc1\xd9\xef\x25\x33\x34\x09\x61\x5d\xcb\xdf\x84\xb4\x10\x2a\x05\xfc\xba\x49\x4a\xda\x44\x5d\x99\xe5\x89\xb3\x3a\xfd\x39\x5f\xd4\x56\xd0\x81\xe7\xda\x26\x8e\xcb\x80\xe9\x94\x17\x90\xe0\xf3\x6b\x95\x04\x3c\x9b\x76\x27\x54\x17\xf2\x46\xc5\x03\xae\xfc\x13\xa4\x8c\x47\x6b\x94\x6d\x0a\xca\x76\x18\x85\x36\x29\x44\xe0\xdd\xf9\x6a\x28\xd1\xa4\x86\x4e\x7d\x9e\x0e\xec\x52\xda\x85\xb6\x8a\x13\xac\x50\x72\x17\xf2\x7c\xc8\xf2\x29\x8d\xbb\xa4\x8b\x84\x9a\xfc\x36\xa5\xe0\x68\xb3\x9d\x54\xb4\x37\xc8\xea\x22\x4c\xef\xed\xa8\x96\xce\x55\x35\xaf\x4e\x43\xb8\x00\xd2\x7d\xc1\x71\x7d\x07\x89\x1c\x5f\xa8\x1b\x93\xf5\x44\x2a\x16\xb9\x3f\x2b\x69\x39\x52\xb6\x23\x81\x6d\xe9\x5e\xd9\xc5\x26\x8d\x00\xfb\xcd\x51\x79\xb4\x5a\xf6\xce\x40\x0b\x0c\xb9\x09\xbf\x76\x75\x41\xd7\x2e\x47\x09\x8e\x6d\xd4\xfd\x60\x74\xf1\x6b\x55\x75\xf2\xe0\x61\x52\x0d\x0b\xc0\x51\x60\x30\xba\xb2\xd5\x04\x94\x46\x40\xea\xdb\x9f\xc7\x81\xe7\xca\xdb\x62\x72\xa2\xfd\x1e\x9c\x76\x4d\x39\xb5\xc0\xce\x2b\xf4\xd2\x37\x47\x26\x2b\x6c\x16\xaf\xef\xd6\x35\x3a\x85\x4a\xa1\x8f\xd1\x7d\xe2\x59\x76\x47\x6f\x5d\x6e\x7b\xa0\x95\x7d\x48\xb9\x9e\x5c\x51\x9d\xba\x1f\xaa\x16\xc3\x52\x9a\xe6\xe4\x3a\xb3\x75\x11\x51\x07\x45\xdd\x1b\x88\x3a\x88\x47\x3b\x30\x50\x64\xa7\x82\xc0\xbf\xe9\x44\x07\x64\x47\xe7\x61\x70\x70\xba\x01\xb6\x51\x06\xdb\xcc\x6a\x13\x32\xa7\x10\xaa\xb8\x25\x5e\xa3\x7a\xc9\x64\x3d\x13\x25\x62\x4d\x8a\x34\xf1\xba\xf2\x73\xbc\xee\x25\xe1\x0a\x32\xe7\xa2\xdb\x21\xa8\x56\xcf\x82\xf0\x76\x82\xbd\x6c\x64\x63\x79\x43\xe9\x10\x51\x80\xe4\x8b\x0a\x59\x3c\x8e\xba\x7b\x29\xa1\xc7\x4a\xbc\x84\x72\xdf\x35\x23\x1d\xd6\x03\x6a\x4a\x58\x01\xcc\x8f\x76\x44\x74\x6f\xc6\xc0\x26\xb4\x12\x55\x7c\xef\xeb\x0d\xcc\x6f\x6e\xaa\xec\xf2\xbc\xda\x49\xfd\xf5\x41\xba\x16\x15\xaf\x4c\x78\xab\x4f\x6c\x7b\xa9\x82\xca\x25\xc7\x3e\xb7\xca\x8d\xd8\xbe\x4c\x7f\x20\xd2\x22\x2d\x67\xf4\xf4\x09\x71\x5f\xb0\xad\xaf\x05\x1a\xf4\x62\xe2\xa2\x1f\x9a\x8c\xfb\x98\xba\x57\x22\xd1\xbc\x69\xda\x65\xb2\x5e\x94\x70\x75\xd1\x74\xd2\xfb\xb4\x23\xef\xa7\x43\xd9\xe9\x72\xf3\x3d\x56\x78\xac\x36\x3a\xa3\x4b\x81\x62\xba\xa3\xd1\xf0\xe9\x2f\xa8\x62\xf2\x82\x2a\x06\x2e\x34\x55\x3f\x61\xda\x4b\xd2\xbc\x8c\x9b\x11\x7e\x94\x30\x43\x5a\xf3\x9e\x7d\xd2\x58\xac\x44\x45\xd8\xaf\x0a\x8d\xa0\xe9\xe6\x54\xfa\x1a\x6e\x45\x37\x0d\x8b\x4c\x62\x8a\x94\x28\xaa\x5c\xa9\x55\x02\x73\x73\xd4\x66\x0a\xe1\xde\xc5\x9e\xf8\xc8\x82\xc5\x20\xff\x11\x6d\x21\x95\xf7\x27\x34\xd5\x91\xde\x5b\x0e\x40\x5f\x17\x1f\x1a\x3f\xe4\xe1\xd0\x06\x6b\x1d\xa5\x34\x9a\x60\xfc\x5a\x75\x26\x96\x09\x5b\xe4\x8a\x33\x94\x7b\xff\x4a\x71\xc6\xff\x95\x17\x25\xec\x19\xae\xb2\x71\xfb\x60\x93\x55\xb1\x23\x45\xd7\xaf\x6e\xeb\x76\x70\xba\xbd\x4c\xf8\x2b\xbf\xf7\x94\xf4\xf8\x39\xc5\x51\x59\x89\xe2\xb8\xcc\x84\x1c\x5f\x8b\xe5\x51\x91\xc5\xc0\xf6\x0a\x87\xe5\xc9\x86\xd6\xd0\xfe\x76\xdf\xc6\x43\x21\xab\x08\x9f\xc9\x37\xda\xff\x8f\xb1\x46\x7d\xd6\xca\xce\xf2\xd4\xb4\x26\x8b\xf1\x18\x1d\xcb\x53\xb1\x2b\x14\x72\xb7\x17\x0d\x06\x51\xb8\x42\xbf\x09\x87\xe0\x1b\xf4\x9b\xf8\xf5\x76\xb4\x36\x9d\xe4\x07\x9e\x7b\x90\x22\x81\xd2\x52\x16\x75\xae\x0d\xad\x85\xbe\xa5\xdc\x57\x40\x1a\x95\x1c\x86\x72\x28\xc5\xab\x95\xaf\x09\xe5\x31\xfc\x05\x3c\xc0\x04\xfc\xa2\xfa\x18\x2f\xa2\xd7\x2d\xbf\x45\xc6\x09\xb9\x2d\x0a\x27\xab\x89\x29\x1f\x17\x64\x7c\xa1\xf2\xdf\x6e\x94\xe7\x69\xbc\xea\x08\xf8\x68\x41\x5d\xab\x3c\x97\x96\x33\x06\x3b\xa2\xbd\x90\xfb\x76\xf0\xb0\x9f\x38\x3f\x44\xc9\x36\x46\x3d\x0f\x61\xec\x24\x2e\xb7\x4a\xde\x73\x67\xc7\xcf\xef\x01\xa0\xdf\xba\x8e\x5f\x84\xcd\x08\x3f\x78\xaa\x40\x7f\xe3\xf1\x0d\xc5\x5c\x99\xea\xa8\x4a\xee\x53\xda\x22\xd2\x6a\xf3\xe9\x2c\x17\x5f\x38\xef\xee\xd6\xca\x4e\x69\xdd\x0f\xfb\xa9\x4d\x22\x04\x55\x71\xb2\xa8\x64\x73\xca\x52\xa0\xde\xc6\x59\x9c\x6e\xf7\x32\xb3\x44\xfb\x1c\x25\xe7\x5d\xfc\x35\x5f\x68\xc5\x95\x34\x5b\x79\x48\x81\x07\x6f\xd1\x83\x04\xe2\x03\x2a\x2b\xb8\xad\x34\x78\xdc\x9a\xda\x68\xcd\xcc\xc8\x2f\x19\x2b\x9d\x19\xa6\x75\x88\x84\x80\x92\xa1\x3b\x86\xa2\x14\x2d\xbf\x9f\xc0\x97\x15\xdf\xbb\xd5\x51\xf0\x63\xaa\x23\xf9\x1f\xd5\x1a\x2d\xe5\x59\xde\x35\xd9\x4a\xbc\x3e\x51\xa1\x6e\x2f\xca\x3c\x0d\xd2\x52\xb8\x37\xb7\xd4\x86\x19\x98\xc4\xf4\x58\xd3\x1f\xa9\xd6\xa6\xa2\x9c\x6c\xaa\x29\x52\x37\xea\x3e\xa8\xfc\xa9\xf7\x6c\xf8\x81\x37\xa6\x45\xd4\x68\xfe\xb7\xff\x09\xe6\x88\xc8\xee\xd0\xdd\xa1\x26\xfc\xe8\x73\x1d\xe5\x6c\xb1\x03\x64\x5c\xa6\xc3\xa9\xc2\xe6\xc9\x0d\x65\x40\x7d\x47\xd9\x69\xef\xd9\xf0\xdc\xf1\xbf\x6a\x6a\xc6\x26\xd6\x64\x93\x8a\x07\x88\x10\x83\x6a\xe6\xc1\x8e\x0f\xb4\x98\x69\x63\x53\x9e\x54\x9b\x28\xb1\x6b\x39\xd9\xbf\xe6\x88\xba\xe2\xe2\x5c\xfe\x25\xbf\x56\x49\xe8\x9a\xb5\x2b\x36\xe9\xa2\xdb\x82\x87\x7a\x55\x19\x09\x5c\xa7\x0f\x11\x58\x10\xb5\x2c\xb0\x29\xef\xd1\x48\xc9\x85\x5b\xe7\x3d\x72\x04\xcb\x4f\xac\xfb\x9c\x83\x8f\x49\xba\x11\xf7\x06\x10\x9f\xc0\xce\xe4\xd7\x5a\xf0\xc2\x64\x83\x09\x9d\x86\xd0\x37\xc3\x56\xfe\x71\xe0\x41\xd6\x7f\xa4\x7d\x4e\xcb\x4a\x29\xc7\x4d\x13\xa4\x10\x0e\x13\x8d\x21\xc2\x3d\x87\xb6\x16\xbf\x56\xb7\x2d\xca\xd2\x24\x0a\x4d\x1c\xaf\xb7\x14\x6b\xf2\xa3\xb1\x82\x0f\x7d\xf4\x99\x50\x9e\xdc\x9a\x09\x6d\x62\xeb\x2b\xc8\x3b\x7a\x18\x3c\xd5\xf1\xdf\x39\x1e\x2d\xad\x44\x49\x4b\x29\xca\xf1\x61\x20\x7a\x2f\x35\x66\xe7\x8c\xb8\x2c\x6c\x53\x0b\xab\x0a\x33\x3c\xae\x3c\x68\x86\x69\x1e\x15\x10\x41\x10\x83\x2c\xcf\x6f\x3e\xd7\xa0\x3f\xbc\xd0\x5e\x2e\x8b\x69\x26\xf0\x3a\x66\xb1\x06\xac\xba\x94\x37\x4e\xd3\x41\x64\xb3\xa9\xf2\x00\x71\x2b\xd5\xd5\x46\xe7\xf5\xb0\x13\xbd\x0f\x74\x30\xfe\x25\x1a\x4c\xa2\x80\xf3\x59\xba\x8d\xab\x51\x68\xf1\x40\xb1\xf2\x77\x76\x94\x18\x0e\xcc\xfb\x75\xa9\x2a\xc3\x62\x37\x9c\xc9\x6c\x37\x2a\xa6\xe8\x44\xc2\xe0\xe8\x94\xea\xd1\xc1\x90\xdd\xf9\x81\x7a\x73\x80\x43\x41\xc5\xa8\x6d\x7b\xcc\x9e\x9b\x6b\x27\x29\x49\xb1\x7b\xdf\x6d\x67\x07\xef\x4a\x89\x13\xb5\x5d\xbd\xb0\xb8\x50\xae\xd1\x49\x8f\x3f\xf8\x8b\x71\xc5\xea\x70\xf6\x00\x1f\x49\x7f\x0d\x1a\x37\x0f\xac\x1b\x9e\xd0\xfe\x76\xba\xbc\x9c\xdb\x02\x0b\x47\xda\xb5\x95\x46\x6e\x43\x5f\xb8\xc8\x4c\x58\x66\x9d\xde\x3e\xf2\x82\x66\x62\x5e\x50\xba\x7a\x6b\xc3\x21\xfd\x2e\x56\xc7\xc7\xdd\x11\xa9\xfc\x7a\xef\x14\xa0\xf0\xae\xcd\xcc\x12\xbb\x09\xe2\x91\xe3\x11\xf1\xeb\xe6\x0e\x02\xe9\xed\x72\x62\x20\x86\x2a\x74\xfb\xc5\x69\xa5\xde\x7b\x79\x16\x76\xa1\x36\x9b\xa0\x45\x24\x1d\x27\x4f\x3a\x3b\x86\x65\x27\x79\x63\xfd\x1d\x16\xda\xab\x51\x52\x18\x96\x85\x96\xcc\xc5\xc7\xed\x17\x1b\xb4\x4b\xf7\xb7\x33\xdb\x33\x99\x13\x81\x91\x1d\x4a\x77\x50\xf6\xae\xf0\x9f\xe2\xa8\xb0\x19\xc2\x88\x37\x7a\x00\xc4\x44\x9a\xa2\x15\xa1\xd1\x81\xdd\xa3\x44\xf8\x95\x53\x15\x7b\xe6\x54\x40\x95\xda\x21\x45\xc4\xf4\xbd\x6f\xf3\x1f\x04\x7e\x21\x5d\x44\xdc\x04\x2e\x6e\x4f\xc7\xbb\xe8\x14\x59\x4a\xc2\xb8\x98\x4d\xe1\xae\x5d\xd4\x94\x20\xd4\x74\x3c\x2d\x6d\xc6\x50\x8f\x5e\x31\x49\x02\xca\x00\x88\x6e\x9f\x62\x99\xf0\x85\xf2\x83\x1a\xa4\x49\x3a\x4c\x49\x12\xa9\xe5\x9c\xc6\x18\x1f\xc9\x17\x8d\xcc\x8e\xa2\x1f\x25\x2b\x2a\xab\xb9\x19\x28\x10\xc0\x4d\x15\xe4\x48\xaf\x88\x3a\xad\x2e\xe1\x3b\xaa\x74\xb7\xaf\x22\x75\x41\xa8\xd8\xaa\x10\xf7\x87\xcf\x50\x6f\x13\x13\x86\xf3\x15\x52\x6e\xe0\x51\x26\x7f\xa5\xa5\x3b\xee\xaa\x0f\xb6\x49\xcf\xc6\x2b\x36\x99\xf2\x2d\xd8\x8f\xe9\x83\x59\xe5\x86\x5a\xe4\x08\x31\x9f\xd2\x06\xc7\xad\x3e\xa7\x7c\x41\x5e\x57\xb6\xf8\xdd\x51\x19\x1f\x5c\xf2\x78\x9c\x32\x11\xe1\xb2\x2b\x0f\xbe\x73\x28\xfd\xf9\xa2\x59\x4e\xc5\x10\x03\x9d\x40\x9c\xe2\x67\x16\x78\xfd\xe1\xfa\x70\x66\x71\xba\x6d\x7a\x99\xb5\x53\x4a\xe5\x8d\x8c\xfb\xf5\xe0\xe2\x05\xaf\xb4\x7e\xd0\xa3\xa5\xe8\xee\x0a\xfe\x40\xdd\xdd\x28\x05\x34\x41\x30\x7e\xe5\x9b\x09\xd6\xab\x49\x16\x63\x20\xca\xc0\x4e\xa0\x32\xf0\xc3\xec\x13\x4d\x45\xf1\xb2\x45\x8f\x78\xc2\xb7\x8b\x6e\xd0\xfd\xc7\xb7\xf9\x63\x3c\x37\xa9\xcb\xf7\xf2\x1b\xb4\x0f\x4e\x7f\x11\x99\x81\x23\x52\xf9\xae\xe7\xee\xce\xce\x2f\xc9\x63\x22\xf1\x22\xd4\x75\xff\xb3\x92\x8e\xfa\x1d\x02\x15\x02\xe9\x73\x93\xbc\x84\x71\xcc\xff\x44\x2b\x92\x01\x1d\x89\xb1\xd1\x49\x8c\x1d\x70\x3e\x7d\x17\xc7\x8b\xe4\xa7\x14\xea\xb1\xf1\xdf\xa4\x3a\x0c\xa9\xd5\x9f\x61\xda\x2b\xca\x23\x54\x94\xa1\x56\x7a\x3f\x40\x3f\x0c\xe0\x38\xe8\x6a\xe2\x20\xbd\x15\x90\xd9\x01\x5a\xfa\x47\xa9\x5b\x88\x26\xd0\x09\x1a\xd1\xb9\x41\x98\x6f\x73\x3f\xbc\xa1\xe0\x12\x47\xf1\x84\x91\xf3\xed\xdc\xf0\x0c\x99\x23\x40\xff\x60\xdc\xf7\x37\x3a\xa6\xb0\x08\x38\x95\x37\x5b\x8f\x91\xff\x24\x92\xe8\xdf\xa2\x28\xe4\x84\x46\x16\xe5\x21\x30\x88\x0c\x69\xdd\xef\xa3\x3c\xc0\xfc\xe9\x1d\x5a\xec\xe8\x3d\xee\xa9\xe9\xc0\xcf\x1e\x68\xaf\xba\x06\x3f\x76\xc4\x35\xb5\xd1\xae\xd5\xfa\x33\xf3\xf3\x6d\x13\x86\x36\xb6\x99\x07\x72\xe0\xa4\xfd\x11\x42\x36\x5f\xb8\xf9\xb4\x8d\xbb\xd2\xfe\xc6\x41\x77\x45\xc9\xaa\x5d\xf1\xd2\xec\x51\x3c\x90\x06\x70\x13\x50\xc1\xb7\x54\x4c\x1c\xad\x58\x3d\x48\x3c\xab\x19\x2b\x67\x1b\x84\x4d\x9f\x6d\x53\xff\xd2\x55\xbe\xd8\x6b\xb0\xd9\x70\xdc\x0a\x25\x84\xe9\x64\xd8\xac\x29\x58\xc7\x10\x25\xd5\x43\x1d\xdf\x87\xbd\x35\xd6\x4b\xfd\xbe\x22\x38\xbf\x34\xea\x46\x30\xc3\xf2\xe4\x8d\x33\x58\x76\x02\x13\xa9\x93\xf7\x16\xda\x43\x13\xae\xc8\xd1\x89\x6c\xee\xed\xc0\x67\x76\x6f\xd7\x02\xcb\x3f\x6a\xe7\x45\x9a\x58\xf0\xd7\x64\x54\xaa\x4c\x63\xce\xaa\xf2\x34\x37\xab\x56\x39\x8e\xbd\x56\xa1\x4b\x37\xcc\x70\x96\xac\x11\x2f\x46\x51\x23\xa5\x77\x16\x99\xd2\x86\x3f\xe9\x66\xa3\x64\x05\x42\x62\x68\xd2\x7c\x30\xf6\x23\x8b\x6b\x8a\xde\xbe\xd9\xc4\xb9\x1f\xc6\x26\x02\xa5\x8e\x2d\x3b\x2b\xf6\x9d\x4d\xb9\xb4\xc9\x73\x5b\xc8\xd4\x07\x67\xd3\x0d\xcd\x28\xb9\xe1\xb9\x43\xff\x94\xb0\x60\xf8\xee\x93\x1d\xa5\xc4\x7f\x6a\xdc\x52\x16\x2a\xf4\xc7\x38\x98\xea\xf6\x15\xb3\x07\xda\xb9\x5d\xb5\x19\x30\x0a\xae\xa7\x35\xef\xc3\xb8\x5f\xad\x27\x6a\x00\xe4\xf9\xf9\xf6\x6a\x94\xb7\xca\x30\xe4\x48\x26\x4e\x9b\xfd\x8c\xd2\xfd\x23\x0f\x55\x87\x15\x3a\x59\x81\xb5\x3c\xea\x06\x78\x5d\xe5\xeb\x26\x38\xa7\x96\x53\xfe\x3c\xeb\x30\xa9\x83\xb4\xc8\x35\x6d\xed\x34\x05\x42\xc9\x94\x9e\x72\x69\xcb\xd0\x66\xe1\x28\xf7\xde\xb2\x9c\x3d\xfc\x96\x32\x30\xfd\x2d\xa5\xe7\x1f\xa6\x49\x2f\x4e\x07\x14\x02\x60\x78\xca\xf6\x5b\x4a\x4d\x7c\x4b\xe5\x8d\xef\x69\xc3\xbc\x0b\x0d\xfc\xf7\xf9\x76\x6e\x60\x52\xa2\x14\xf9\x7c\xc7\xf1\x76\x03\x13\x73\x3f\x19\x3f\x44\x4b\x23\xbe\x61\x68\x79\x7e\x4a\x31\x83\x5f\x8f\x1f\x74\xdf\xd8\x86\x53\xb4\x19\xb1\x8d\xb1\xdb\xf1\xfa\x30\x82\x33\x2a\x14\x48\x02\x22\x29\xbc\xa2\xcd\x3a\x0f\xd7\xfa\xa2\x8b\xd3\xed\x25\x31\x25\x43\x3d\x7e\x93\x1a\x29\x5e\xa9\x5e\xda\x3f\xa7\x95\x96\xc9\x75\x9d\x09\x21\x17\xc4\x88\xe8\xa4\x82\x37\xad\x46\x59\x31\x82\x8d\xa8\xc4\x61\xf4\x80\x25\x2f\x51\xfe\xa5\x27\xb5\xca\x88\x0d\x47\x59\x54\xac\xef\x51\xb0\xec\x4b\xca\x34\x61\x3c\x56\x7d\xbf\x3f\x53\xc2\x5a\xec\xbb\x2e\xdd\x8e\x96\x73\x20\x03\xa0\x54\xb1\xd7\x04\x91\x7a\xa9\xb6\x3f\xf6\xcd\xb7\x07\x26\x5b\xe1\x51\x38\xa2\xfb\xeb\x38\x11\x50\x63\xfe\x11\xea\x28\xe4\x7a\x3f\x50\x02\xc3\xf9\x30\xb2\x3d\x1b\x4f\x94\x7b\x14\x77\xe9\x14\xfe\x29\xea\xb4\x8f\xe9\xfb\xa0\x9d\x74\xa5\x16\xdc\x17\xa7\xf7\xb7\x97\xa2\xa2\x80\x23\x96\xdb\x81\xd0\x0f\xe1\xd7\x4d\x01\xae\x6b\x2d\xd3\x72\x31\x84\x39\xad\x25\x6a\x4e\x37\x64\x51\xb3\xed\x81\x35\x09\xdb\xe2\x68\x1a\x1a\xbf\xae\x78\xc5\x85\x70\x85\xda\x5d\xde\x7b\xd1\xb4\xa0\x7b\x8f\x7f\x7c\x27\xf0\xb8\x4e\x16\x93\x77\x7c\x42\x3f\x29\xb8\xa2\xf0\x31\x27\xb5\x45\xf9\x66\xc3\x0e\x7a\xa1\x1d\xa6\xab\x36\xe3\xca\x55\x16\x8a\x26\x91\x4a\xf4\x18\x66\x69\x3f\x5a\x8a\x8a\x96\x52\x8d\x60\x90\x8b\x68\xef\x34\xd8\x42\x96\x6f\xbe\x94\x59\xd3\x2d\xfa\x88\x10\xc0\x22\xe1\x0c\xe5\xd7\x8a\x57\xd7\x4b\xd3\xee\xba\x35\x40\x18\xc8\xde\xa2\xcf\xe0\x8b\xc0\x4f\x3b\x4c\x92\xa8\x23\x8c\x19\x0e\x7c\xd1\x18\xf9\xfb\xc6\x4b\x86\x62\x64\xf7\xba\x9e\xdf\xbd\x1e\xf8\x70\x2a\x73\x1d\xb6\x6c\x50\x31\xe5\x23\x25\x6c\x94\x17\xd6\x74\x31\xb0\x45\x0b\xe3\xca\xd8\x8b\x07\x60\x44\xbb\x75\x51\x29\xa5\x71\x79\xef\x32\xcd\xf2\x8b\x48\x2b\xb4\xcc\x5a\xa5\xb5\x23\x01\x76\x25\x49\xd7\x62\xdb\xed\x59\xa7\x2a\x8a\x16\x38\x08\x18\xfc\x5a\xcd\x90\x4d\x18\x92\x0d\x48\x6f\x17\x4e\x37\x51\xf9\x6a\x39\x6b\xfb\xcf\xa9\x9e\x0f\x37\x6f\x90\x1f\x5e\xd4\xe6\xbb\xbf\xa9\x36\xff\x3f\xd8\xa8\x9b\x76\xc6\xe9\x9a\xcd\x44\xd2\x03\x2c\x94\xbb\xf4\x27\x15\x25\x47\x41\x48\x3d\xa5\xe4\xc5\x57\x6d\x6c\x93\x5e\xd1\x47\xf2\xc1\x0c\x90\xc0\xf3\x68\xee\xbb\x8a\xbd\x30\x59\xcf\x7a\x82\x1c\xb6\x24\x70\x48\xfc\xba\x86\x43\x5a\x9c\x6e\x0f\xa2\x97\xe5\x09\x23\x8b\x05\xb8\x9c\x5f\xab\x5a\xa8\x9f\xc6\xeb\x13\x94\xbc\x6a\xe1\x2c\xe4\xa0\x27\x2a\xb3\x30\x75\x7b\x87\x54\xc3\x45\xdd\x49\xe5\x03\xb4\x83\xe4\xb0\xc4\xaa\x95\x96\xaa\xe3\xe0\x7a\x0e\xd4\x66\x05\xba\x1d\xdb\xee\xe7\x68\xc3\xa2\x43\xfd\x1b\x81\x67\x61\x5d\xe3\x16\x29\x72\x2c\x58\x26\xe0\xa1\xfc\x3d\xa0\xd6\xf0\x1c\xaf\x83\xf6\x80\x55\x07\x6f\x7a\xfc\xfd\x2e\x9a\x9e\x88\x1a\xbb\xe7\xee\xde\x42\x0c\x77\xa1\xd1\x9d\xb1\x8c\xe9\x00\xcf\x88\x67\x0a\x58\x93\x57\x58\xd4\x58\xb0\xa7\x34\x8a\x99\xea\x50\xe5\x84\x68\xfc\x9a\x16\x71\x3f\x13\x28\x33\xa7\xf3\x18\x3b\xe1\xe3\x76\x92\x09\x12\x4a\xaa\x87\x37\x94\xf4\xf3\x1f\xb9\x04\xa6\x1f\xf5\xfa\xd0\x95\xc6\xa3\x42\xff\x10\x68\xaf\x87\x37\xbc\xcd\xed\xe8\x89\x8e\x7f\x86\xf9\x33\xe1\x33\x2d\x35\x95\x81\x88\xb6\x40\x0b\x1a\x3c\x72\x06\x26\x8c\x92\x22\xcd\xfb\xca\x0d\x8f\x9b\x24\x7c\xe1\x42\xc0\x2b\x26\x2a\x0c\xb2\x52\x3e\x81\xa9\xc2\x16\x5a\xa9\x42\xa6\xec\xec\xc8\xb4\x34\x33\x6b\x93\x74\xff\x70\x8a\x81\x8b\x4f\x8f\xe8\xbb\x4f\x75\xfc\xb8\x7f\x37\x86\x10\xd2\x95\xae\x0f\x0d\xdb\xcf\x2f\x4e\xef\xf1\x4b\xe2\x27\xbc\x24\x9c\x66\x44\xf9\xd7\x38\x04\xae\x05\x6a\x64\xfd\x2a\x1e\x9e\xe0\xa1\x3d\x37\xf2\x0f\x30\x5e\xc3\xa7\x9f\xa0\xb6\x07\xf7\x3b\x03\x2f\x83\x92\xa4\xab\xcf\xd0\x51\xaa\xfd\x4c\x31\xd3\x78\x1b\x3f\x57\x9c\x5f\xb6\x47\xf9\xf2\x8c\xeb\x46\x39\x9d\x23\xb2\xf9\xa4\x35\xe9\xcf\xf4\xd3\x15\xa1\x88\x24\xb7\x49\x3e\xca\x77\x6b\x12\xc1\x75\x65\x4c\xfc\x5d\xfc\x16\x71\x48\x2d\x7f\x0b\x6b\x68\xe3\xb7\x70\x12\xa3\x31\xa4\xb7\x74\xb1\x7f\xb8\x09\x2e\xd4\xb7\x83\x28\x1f\xf6\x29\x17\x77\xf6\x3e\xef\xd3\x77\x04\x7e\xf0\xdd\xb1\x47\x06\xfe\x9f\x0e\xf7\x16\xa6\x65\x8a\x59\x58\x9e\x7e\x91\xc3\xf8\x5f\x43\xef\x11\x95\xfd\xde\x8e\x5f\xb8\x93\xb5\xa8\x44\xec\x05\x23\xbe\xf0\xca\xbd\xc2\x0b\x8d\x34\x14\xd7\x03\x13\xc5\x0a\x96\xfb\x01\xfe\x40\x0a\xa4\x47\xd4\xfc\x70\x60\x93\x3d\x74\xb3\x04\x98\xa8\x21\x85\xe5\xc6\x63\x58\x10\x05\x19\x07\x59\xf6\x53\xb4\x0f\x54\x23\xe5\x86\x9a\x15\x7c\x30\x56\x32\x6f\x4d\x4d\xdb\x17\x40\xbb\x94\x22\x1d\x8f\xe4\x9a\xc2\x03\x5e\xab\x04\xbd\x34\x89\x60\x66\x8e\x1a\x88\x0d\x3c\xf4\x11\xc5\xff\x63\xac\xa2\xeb\xa6\xab\xf3\x07\x69\xd7\x3a\x6b\x15\xac\x6b\x26\x75\xf1\x85\x4a\x84\xd7\xb2\x32\xb3\x4b\xa6\xbc\xb6\x34\xeb\x7d\x23\x52\x9d\xd7\x91\xf9\x1a\x35\x43\xf8\x5f\xd1\x5a\x10\x56\xbd\x4f\x90\xcb\xcf\xa6\x9a\x05\xcb\x55\x44\xac\x7c\x6c\x06\xe3\x1b\x11\xee\xc3\x40\x69\xa5\x5d\x0d\xfe\xd3\xcf\x18\xa5\x84\x69\x1c\x1b\x6a\x4a\x47\xaf\xc0\x33\x40\x40\x9c\x27\x14\x83\xea\x84\x06\x6d\x8d\xb2\x84\x1d\x99\x30\xc0\x05\xe9\xd4\xe1\xd2\xdc\x79\xc0\x15\xa9\xab\x28\x64\x7a\xda\xbe\xea\x07\xa6\xd7\x2e\xd7\x9a\xc8\x8b\xd3\xed\x7c\xd4\xeb\xd9\x5c\x00\x5b\x4e\x19\xb1\x3c\x77\x04\x5b\xe0\x97\x9e\x21\x01\x04\x7f\x13\x6e\x29\x88\xe3\x2d\xf5\xef\x46\xd9\x92\x49\x1e\x52\x0d\x14\xf4\x3d\x05\x65\x4f\x07\x21\xce\xa2\x43\xd8\xf5\x6c\x87\x8a\x9d\x8e\xf7\x3b\x3a\xae\xb9\xad\xf0\xff\x08\x3c\x77\x64\x53\x19\x22\x9c\xab\x1a\xaf\x78\x0a\x38\x18\xb2\xe2\xe7\xe2\xb1\x46\x66\xd9\x3e\xe0\x67\x56\xcc\x61\x92\xfb\xe9\x62\xe1\xdf\xfd\x3d\x24\x4d\x4e\x09\xde\xe9\x99\xde\xa5\x12\x19\xc1\x81\xeb\x10\x55\x94\x48\x58\x7e\x2b\x50\x38\x80\x33\x81\x2f\x34\x57\x47\x13\x8a\xe7\x76\x41\xb5\xd2\x30\xa6\x43\x6a\x78\xa5\x96\xc1\x3f\xdd\xce\xec\xc0\x0e\x96\x18\x94\xab\x84\xa8\x5e\x70\xf5\x97\xde\x85\x45\xbc\xfe\x05\xfa\x69\xf8\xd6\xdc\x89\x67\xda\xa8\x8e\xad\x13\x94\xd7\x48\x0d\x8f\x85\x8f\x10\x7c\x9d\x86\xcc\x1c\x06\x69\xf7\xb0\x1c\x09\x3d\x7f\x27\x9c\xb1\xb0\xb8\xe0\xba\xeb\x5e\xa7\xe4\x95\x43\xc8\x0c\x44\xfa\x94\x42\x07\xfd\x8f\x5f\x7f\x6c\x43\xcd\x71\x2e\x06\x4a\x26\xab\x45\x49\x8d\xeb\x08\x2d\x4e\x73\xb7\x65\x17\x1e\x06\xca\xe5\x1b\x74\xfa\x3b\x65\xee\x7d\x1c\x85\x9e\xf9\xc2\x86\x02\x21\xbf\xc5\x39\x8d\xf4\x93\x15\x37\x0e\xa5\x1f\x56\xcf\xe7\x41\xca\x47\xca\xf1\xf9\x8e\xbe\x81\xb9\x89\x1f\xa1\xff\x09\x90\xf2\xe1\x0a\xf1\x9b\x72\x23\x66\x74\xea\x1f\xbd\x13\x6d\x5d\xe7\x9d\x36\x2f\x2e\xf6\x97\x10\xc2\x04\xd3\xeb\x2d\xa2\xdf\xa2\x05\x8f\x15\xf4\x91\xca\x47\x99\x92\x8b\x77\xba\x8c\x07\x26\x14\x52\xba\x97\xfc\xb5\x02\xc5\x5c\x3c\xa4\x98\xbe\x79\xd4\x4b\x68\x54\x9a\x14\xe8\x69\x6a\x13\x52\x34\x28\x5b\x94\xab\x88\x4a\xbd\x9a\x5c\x67\xe0\x41\x21\x8a\xbb\x8e\xfc\xdc\x1c\x83\x19\x51\x71\xfe\x26\xed\x09\x71\x0e\x71\x5a\xb2\x7d\x53\x84\x7d\x9b\x45\xf9\x40\x39\xbf\x32\xda\x9a\x2f\x14\xd9\x24\x4f\xc3\x15\x0b\x02\x02\x1a\xe6\x57\x15\xec\xf6\xaa\xaa\xc0\x96\x63\xb3\x9a\x66\x28\x49\x71\x47\x5f\xc5\x0d\xe2\x8b\x5a\x1d\xb8\xf0\xdc\xfe\xb6\xc9\xc2\x82\x7d\xbb\x65\x45\x2b\xdf\xad\xeb\x4a\xa1\x2c\xb3\xcb\xb1\x0d\x8b\x49\x85\x8a\xac\xe0\xdd\xcb\x2d\x82\x15\x77\x0f\x5d\x7c\xbe\xa8\xba\x16\x9a\x6c\x97\x9f\xb4\x7c\xa8\x5b\xad\x47\xf5\x3c\x04\xd1\x04\x0d\xf7\xf3\x63\x65\x8e\x77\x5d\x41\xff\x6e\x28\x0f\x97\xa2\x3c\x10\xa6\xb4\xab\x1d\x7d\x21\x76\x16\xac\xc4\xfa\xf2\xf3\xb1\xb1\xae\x2a\xc6\xc8\xd5\x5a\x2e\xe7\x54\x50\x06\x5d\xd3\x8f\xd5\x74\xf0\x88\x86\x41\x1c\x09\x1e\x53\x6c\x82\x81\x89\xe4\x5c\x72\x7e\x13\xce\x56\x9c\x95\x6a\xa4\x76\x6e\x39\x3d\xb3\x8d\xb1\xce\xc1\x68\x8b\xca\xb4\xb5\x9e\x41\xed\x6f\xe7\xd6\xae\xa0\x47\x21\x46\xad\xe5\x4f\x15\xb0\xc0\xf6\xa7\xfc\xe2\x8b\xed\xa1\xcd\x96\xe5\xd1\x89\x96\xa8\xd2\xe9\xda\x52\x7f\xcf\x56\x7c\xb8\x57\xc7\x9a\x3a\x54\x45\x34\x70\x95\xa8\xcc\x0e\xfc\x92\xaf\x8f\x0e\x88\xb7\x92\x25\xcb\x91\x8d\x41\x87\x74\x7e\xeb\x6a\x44\xac\x18\x26\x7d\x93\xc5\xa6\x30\x2c\x65\xeb\xe4\xfc\x5c\xff\x4a\xbb\x38\x76\xa3\x7c\x18\x9b\x75\xfc\x53\x86\xe3\x28\x5f\x86\x0d\xaf\xf9\x69\xb3\x7c\x64\xba\x96\x5d\x3a\x64\x38\x42\xcf\x03\x15\xc3\xeb\x14\xbc\x50\xa4\x1d\xaf\xdd\xf6\xb9\xb9\xfd\xed\x35\x6e\x5d\x89\x05\xe1\x59\x85\x39\x3c\x5b\xfb\x8b\xa7\xdb\x4b\xa3\x70\x25\x86\xd3\x18\x97\xff\x81\x42\x5c\x9d\x76\x39\xf5\x6a\x1a\x9b\x22\x8a\xc5\x07\x96\xdd\x83\x11\x32\xc5\x4a\xd8\xe7\x73\x43\xc2\x17\xe4\xad\xf2\xdb\x22\x3b\x3f\x8c\xfd\xc1\x17\xae\x47\x15\xc6\x11\xc1\x85\xa8\x92\x44\xb2\x3c\xd9\x51\xa6\x6b\x17\x14\x31\xfa\x56\x0d\x48\x42\x78\x4d\x93\x97\x21\xd2\x8d\x94\x44\xd2\xa5\xe5\x04\x15\xce\xaa\xa4\x21\x89\xd7\x1f\x9e\xf0\x0e\x87\xad\x0d\x57\x74\xfd\xee\x7f\xd1\xf1\xa3\x5a\x96\x0e\x17\x69\xaf\xf2\xee\x60\xcb\x3f\xb0\x51\x1e\x9f\xca\x5a\x60\xd6\xb9\x54\xd3\x18\x52\x6e\x34\x3d\x01\x51\xd3\xa4\x07\x88\x33\xeb\x21\x00\xdd\x18\x18\x49\x4c\x0d\x44\xa0\xc7\x3a\x8e\x1c\xf8\xc3\xc7\x6a\x1d\x9c\xd9\x03\xed\x3c\xcc\xa2\x21\x0b\x65\x89\xf0\x69\xcb\xd9\xe3\x20\xe7\x40\x0c\xdd\xac\x04\xb3\x7e\x5a\xec\xf2\x30\x9f\xcb\x8a\x01\x51\xf1\x7e\xde\xac\x0e\x94\xca\x5f\x89\xf2\xf3\xc8\xd8\x13\x05\x7f\x5c\x17\x71\x9a\x25\xc5\x6a\x9b\xa1\xb3\x87\x83\x6d\xb2\xa3\xa4\x77\x27\x6b\xb6\x4d\x07\x9e\x6b\x8f\x72\x50\x66\xb1\x03\x20\x44\x8a\xef\x71\xaf\x22\xe0\xa5\xa9\xc0\x26\x59\x89\x92\x1e\x6b\x63\xbb\xae\xb5\x4b\x00\xb5\x2b\xf7\x55\x8a\x67\xe8\x90\xb0\x28\x04\x96\xc2\x44\xa7\x61\xe3\xe7\xa1\x4d\x4c\x16\xa5\xac\x59\x8b\xbc\x99\x09\x80\x7c\xa1\x20\xee\xaf\xd8\x6c\x17\xfd\x3b\x87\xec\x9e\x9b\xe3\x84\xe6\x3e\xed\x4e\x89\x96\x2a\xe7\xe5\x4a\x17\x6f\x76\x4d\xe9\x76\xef\xea\x28\xe4\xdc\x60\x58\xd6\x2c\xd1\x2a\x76\x23\x46\x94\x3f\x55\xbe\x7d\x9a\xb1\x9c\xd9\xec\x21\x65\x6c\x71\x1a\x8f\x12\xc0\x29\x3e\xa4\x59\xa8\x80\x7b\x11\x2e\x31\xfe\x95\xe7\xbd\x04\x8a\x9b\x69\xed\xe9\x50\x2a\x42\x4f\xfc\x7f\xf8\x22\x94\x49\x24\xff\x72\x3d\x91\x99\xbd\x1b\xca\x35\x71\xef\x86\x77\x74\x3d\x31\xd6\xce\x91\x0e\xb2\x3c\xca\x96\x4d\x68\x27\xfd\x11\xf7\x7b\x38\x73\x99\x54\x15\xe8\xc1\x9f\xaf\x81\x6f\x34\x19\xca\x17\x99\xb8\x6e\xbf\xc0\x89\xec\x6b\xd8\x63\xf2\x05\xd4\xea\xbd\xe0\xe1\x92\x69\xdc\xe5\xfc\x87\x27\x57\xff\xf4\xf1\x8e\xef\xca\x3e\xb2\xe1\x79\x95\xcc\x44\x04\x24\xe0\x86\x22\x63\x16\xd9\x28\x5c\x99\xa4\x04\xd2\x49\x94\x39\x53\x9e\xc9\x0d\xba\x6f\xfc\x3f\x14\x5f\x6e\xb2\xa3\x95\x82\xd2\x51\xaf\xff\x88\x22\x94\x02\x33\x8c\x85\xf2\x9a\xba\x0d\xdf\x1b\x2b\x49\xa6\xb3\xda\xef\x73\xec\x4d\x69\xef\x61\x41\x63\xaf\x1f\x1f\xab\xd6\xe9\xdf\xe0\xf6\x62\x3f\xdc\x81\x5f\x19\x66\x40\xb7\x02\x65\xde\xf9\x7d\x7a\x5a\x18\xe4\xbd\x41\xf1\x40\xd8\x0c\xad\x6f\x7c\x95\x81\xd6\x67\xb4\x37\x11\x41\xcf\xcb\x00\xbb\xdb\xa3\xf4\xdf\x0a\xca\x9a\x82\xd1\xe4\xba\x46\xda\x42\x8a\xae\x45\x4a\x19\xb5\x81\x1f\x87\x38\xb8\xb3\xa3\xcc\x15\x76\x6e\x38\xd1\x1c\x13\xe5\xe5\x26\xf7\x69\xda\x1d\xbc\x1d\x16\xe0\xc3\x1d\x1f\x64\xee\xaa\x09\x1e\xcb\xcd\xb3\x8a\x8c\x4a\x07\x97\x6c\xdc\x8b\x46\x83\x49\x65\x32\x31\xd1\x51\xb1\xf9\x82\xf6\x06\x3c\x31\xd6\x86\x48\x75\xa2\xed\xc1\xe9\x85\xb6\xe9\x8e\x62\x99\xb4\x0a\xcd\x43\x51\xb0\x2e\x34\x59\x79\x96\x9b\x80\xb6\xb4\x68\xa2\xb6\x94\xb9\x6d\x53\xea\xb4\x62\xed\xb0\xe5\x77\xd7\xe5\x40\xad\xf4\xcb\x63\x27\x6f\x6a\x92\xd1\xb2\x09\x8b\x51\x66\xb9\xbf\x8d\x58\xc0\x3c\x3e\x65\x66\x2b\x72\x46\x17\x15\x24\xed\x0d\x95\xbc\xc7\x69\xd2\xb3\xd9\x1e\x5a\x22\x38\xc0\x58\xf7\x03\x55\xfa\xce\x8d\x8a\x67\x04\xd5\x3c\xd8\x27\x3f\x54\x67\xc3\x59\xdc\x07\x06\x80\x6a\xe3\x64\x4c\xcf\x90\xd2\x9d\x1a\x6b\x79\xbb\x51\xfe\x90\x47\x90\xf2\xe4\x0b\xbd\x2c\x8c\x58\x11\xc1\x41\x9f\xc6\xba\x9c\xa4\x2d\x8b\xf7\xbd\xa7\x3d\xcb\x26\x08\x2c\x24\x0b\x99\xbe\x0a\x86\x55\x68\x03\xe3\x09\xef\xe8\x28\x5d\xe6\xc9\x8e\x77\x03\x3f\x83\xfd\x81\xdc\xed\x56\x13\xab\xd9\x64\x45\x94\x57\x8b\x90\x23\xf4\x20\xf9\x75\x03\x79\x68\xb1\xbd\x1c\x5b\x96\x7a\x47\xfb\xfd\x9c\xe2\xd6\xd7\xf1\x63\xfb\xe6\x31\xa7\x99\xa8\xc8\x13\x28\x1e\xf9\x1d\xb4\x5e\x64\x1e\xfc\x59\x98\xdf\xb5\xbe\x4d\x26\x08\xc7\x84\x84\x6a\x87\xda\x35\xdc\x49\x43\xf7\xf4\x52\xed\x2d\x16\xa7\xdb\x4b\x36\x09\xfb\x03\x93\x41\xfb\x93\x67\x2d\xf4\xbd\xeb\xf2\x1c\x71\x94\x74\x73\x8b\x8c\x50\xb9\x55\x38\x70\x6c\xf0\x39\x6f\x0c\xec\x57\x6b\x36\xe9\x93\x3d\x48\x70\x8a\x8f\x9a\x62\xd8\x55\x0c\x24\x6a\xb7\xea\xe0\xf4\x7c\x3b\x25\x33\xa6\xc5\x69\x71\x1e\xa5\xc3\x57\x5c\x48\x05\x17\xb1\x4c\xc6\xf7\xde\xb5\x53\x99\x50\xde\x50\xda\x8d\x13\x2a\x5c\xf7\x62\x93\x84\x68\x38\x63\x9d\x71\xac\x72\x73\x0e\x47\x5c\xbc\xa2\x3a\xe4\x39\x13\xbd\x59\x77\x19\x67\xd4\x21\xac\x50\xbe\x50\xc3\xac\xe1\xfa\x60\xd0\x52\x7a\xf6\x67\xf1\x0f\xe5\x60\xac\xff\xdc\xd9\xf6\xc0\x74\x99\xf9\x27\x94\x23\xfa\x7b\xbe\x50\xbb\x79\x69\xb4\x6e\x33\x4c\xa4\x45\xc7\x53\x61\xff\xcf\x2a\x3f\x52\x30\xf1\xf9\xbf\xe3\xed\xd0\xa6\xf9\x00\x21\x04\xbb\x01\x03\x39\x1c\xad\x1f\x2a\xeb\xa0\x6e\x94\x53\xe6\x87\x7a\x56\x94\xcb\x11\x2a\x10\x89\x8e\xeb\x53\x19\x32\xe4\xcc\xa3\x0a\x34\x58\x5c\x75\x1e\xbb\x99\x59\x63\x1c\x96\x96\x84\xc0\xca\xbb\xa7\x9c\xb3\xea\xb2\x1d\x0b\x8b\x0b\xed\x97\x46\x83\x21\x44\xa2\xc5\x75\x98\x6e\x2b\x7e\xed\x1b\xc8\x91\x10\xdd\x2f\xb9\xb9\x51\x91\xae\xac\x8f\xa6\xca\xe3\x55\x94\xe6\xe9\xbb\x21\x46\xdc\x47\x50\x43\x1c\xfc\xc9\xd8\xa5\xe8\xfb\xfe\x96\x26\x75\xa2\xbc\xfe\xb0\x2b\x92\xd6\x5c\xd5\xe9\x30\xc6\xae\x4f\xfe\x91\xc7\xf5\x2c\x2f\xc7\x51\x28\x5d\x5b\xe4\xac\xb7\xb5\x5d\xd0\x6d\x0d\xf6\x60\x33\xd5\x96\xd2\xf2\xd4\x4a\x19\x67\x83\xa7\xb4\x0c\x79\x17\x96\x0a\xa8\x36\x1d\x95\xdd\x31\x78\x6f\x34\x32\xf2\x56\xa2\x6e\x62\x86\x2d\xc5\x57\xde\x54\x9a\x19\x9b\x35\x94\xc4\xd3\xed\xae\x0d\xa3\xae\x4c\x94\xb1\x4d\xd9\x2d\x1b\x33\xb0\xe3\xe3\x2a\xa6\xcf\x7b\x3e\xc4\x71\xae\x27\xfa\x37\x94\x33\xf4\x0d\x05\x16\x18\x8e\x96\x5a\x6a\x3e\xf4\x36\xfd\x33\x7e\x5d\xc3\x2d\x1c\x9c\x7e\xa1\xdd\xb7\xd9\x52\x54\x7e\x29\x3e\x9e\x9d\xee\x5a\x99\x06\x89\xee\x9a\xdf\xb0\xe2\xb1\x9e\x93\xb0\x19\xba\x88\x3f\xa0\x18\xc2\xaf\x1b\xcc\xab\xda\xa9\x41\x58\x74\x1a\x2a\x73\x73\xf2\x5a\x09\xbc\x67\xe9\x52\xea\xf8\xce\x58\x48\x87\x95\x7f\xf7\x61\xa5\x11\x38\x1c\x39\x78\x17\x82\x0d\x40\x39\xfc\x3a\xf0\x5f\xd7\x24\x49\x3a\x4a\x42\xdb\x25\x98\xbb\xab\xed\x9d\x38\xe0\x69\xca\xc7\x30\x39\xba\x39\xf6\xcd\xd0\x6b\xec\xb3\x88\xbd\x76\x0a\x55\x38\x1e\xeb\x61\x7d\x1a\x51\x1e\xc8\xce\x68\x81\x9f\xa0\xa7\x4b\x79\x61\xc2\xd8\x82\xfd\x82\x10\x78\x53\x4d\xe8\x6f\x06\x7e\xe8\x96\x94\x49\x7a\x21\xc6\x84\x62\xdb\xda\x72\x76\x69\x67\xc6\x6a\xb1\x5c\x53\x0e\xf6\xc3\x2c\x5d\x8d\xba\x15\xbd\xa2\xdb\x4a\xaf\xe8\x76\x23\x11\x24\x1f\xae\xa3\x8b\xc8\x27\xf8\xd8\x83\x5f\xcf\x28\x7c\x0a\xe9\x90\xb1\x07\x8d\x84\x9f\x73\x4a\x7e\xef\x5c\x85\x46\x90\x66\xa1\xb6\x8e\xfe\x2d\xa0\x8e\x05\x23\xd7\x74\x0a\x15\x51\x8c\xe6\x85\xfc\x46\x8f\x19\xbe\x48\x55\x34\x02\xe3\x4f\x6b\xbf\xe1\xe0\x74\x7b\xd9\x96\x37\xab\xa2\x05\x3a\x2f\x72\xe4\x17\xb1\x99\x44\x96\xd1\x1f\x1d\x89\x35\xf1\x84\x8a\x64\x62\x09\x82\xda\xef\xa6\x3e\xdf\x5b\x1d\x59\x68\xa3\x24\x1f\x52\x83\xc4\xd1\xb9\x59\xd2\x5a\xe4\x27\x9b\x60\xaa\x39\x7c\x01\x5b\x7e\x48\x74\x49\x5b\x59\x5c\x52\x22\x31\x76\x15\x73\x25\x39\x05\x3c\x81\xe5\xbc\xd2\x31\xc9\xed\xd0\x64\xa6\xb0\xf1\xfa\xa4\xe7\x14\x7e\x6f\xac\xc4\x75\x2e\xe8\x99\xe7\xd8\x93\x10\xbf\xe7\xb6\xcc\x9a\x51\x32\xd3\xce\xb2\xd7\xdb\xf7\xaa\xf6\xf7\x52\x94\x75\x43\xd3\xb3\x5a\x7c\xf4\xba\x8a\xc7\xd7\x15\x92\xb7\x6b\x46\x34\x19\x9d\xf4\x23\x85\xf7\x18\x25\xce\x2e\x4f\x88\x23\xce\xf2\xc9\xcd\xad\xde\xdb\x6e\x39\xf2\x8f\xdb\x0b\xcf\xed\xc7\x13\x92\x82\x96\xbe\x00\x1a\x30\x47\x34\xa7\x5a\xe9\x10\xc6\xd6\x74\x6d\xb6\xc7\x8f\xfe\x76\x80\x38\x29\x2e\xdb\xba\x0d\x46\xcb\x1e\x0d\x0d\x3e\xa0\xf0\xbc\x2f\xd0\xa1\x84\xca\x02\x70\x00\x40\x03\xde\xc5\x17\xc0\x71\x7e\x5e\x13\xcb\xcd\x28\x2e\x62\x52\x49\x2b\x3f\x0b\x3d\x09\xb4\x95\xf8\x75\x20\xbd\xc9\xbc\x9f\x66\x45\x5e\xa4\x60\x35\x89\x74\xa5\x57\x7c\x7d\xad\x49\x47\x2b\x4c\xfb\x36\x11\xe4\xae\xf8\xc8\xd3\xe3\xe6\x0b\x65\xc5\xd6\x8d\x32\x1b\x16\x53\x8a\xe1\xce\xc5\x19\xa6\x48\xef\x2a\xee\xe1\x4e\x45\x4b\xfe\x0b\x8d\x06\xf1\xc8\xd9\x62\x94\x2d\x45\x89\xd5\xa7\x20\xbf\x9d\x20\x4f\x1e\x57\xde\x5e\x79\x51\xa6\x7c\x0f\x68\xcd\x65\x8a\x87\x40\x0b\x5c\x1a\x2b\xb1\xd7\x3b\x81\x02\x37\xbe\x87\x47\x81\x1b\x0b\xb5\x34\x55\x0c\x09\x1d\x8b\x0b\x1b\x2c\x86\xbf\x0b\x7c\xfb\xf4\xef\xd4\x29\xbf\x9c\x99\x64\x25\x8e\x92\x09\x4d\xb8\xfc\x61\xe0\x27\x89\xdf\xd7\x14\xb2\xff\x75\xfc\x0f\xb7\xdd\xed\xe7\x17\xc4\xd0\xfa\xbf\xf9\xcf\x4c\x77\x35\x0d\x09\x5f\xec\x28\xe6\x6f\x8e\x55\x6f\xeb\x4d\x45\x5c\x8d\xed\x2a\x4d\xe9\xcb\x50\xc5\x7d\x65\x7a\xaa\xd2\x63\x76\x08\xbb\xd8\xda\xe1\x14\xbd\x09\x56\x1e\xa0\x8d\x28\xb8\x3e\x50\xfe\x22\x1f\x8c\x55\x60\x81\xe2\x32\x9e\xa0\x4f\x93\x5e\x4a\xa3\x44\x52\x07\x34\xe4\x77\x76\xaa\x46\x3c\x73\x73\x4e\x52\x46\xf9\xde\xc6\xa3\xae\x13\x7a\x71\x62\x7b\xde\xbc\x11\x0e\x3c\x8e\xa7\x3b\x37\xc7\x7d\xd2\x63\x15\x7b\xcd\x34\x67\xb2\x11\x82\xc0\x44\x47\xe1\x9e\x4e\xeb\x31\x30\xa6\x7e\xc8\xdd\xf9\x41\xcb\x04\xb1\x3e\xd3\x0d\xd3\xc1\x30\x72\xfc\x7c\x94\xdb\xdf\x0e\x14\x92\xfe\xdb\xb5\x10\xbb\xf0\xdc\xfe\xf6\x30\x36\x49\xc2\x48\x5a\x96\x45\xc7\xed\xab\xe4\xf8\x62\xb1\x2a\xb7\x22\xec\xdb\xd5\x2c\x8d\x6d\xc1\x8b\x05\x03\xc8\x73\x4a\xa8\xf0\xff\xc6\xbb\xb0\x41\xa6\xcf\x37\xd2\x25\x9b\x81\xe8\x20\x10\xac\x7b\x81\xb6\x04\x61\xd1\x5c\x01\xac\xd6\x7f\xa7\x89\xb2\xa5\x34\x4b\xec\xa4\xaf\xa3\x18\x95\xe8\xc6\x92\xdf\xf8\x2a\x6f\x88\x13\x6a\x6c\x7a\xb8\x91\x9e\x36\x1c\xc5\x31\x37\xf5\x58\x70\x0e\xb7\x8c\x79\x78\x4a\xdb\xef\x82\xea\x7d\xfe\x72\x0f\x75\x9f\x30\xac\xd4\x99\xa4\x1d\x1f\xba\x11\x9c\xe4\x94\xa4\x34\x8b\xf0\x48\xd7\xe9\xc9\x3a\x90\xeb\x1f\xe3\x01\x22\xb6\xbc\x89\xf1\x30\x5f\xa8\x21\x66\x86\x69\xa7\x82\x83\x1e\x0e\x14\x50\xf4\xb0\x56\x54\x30\xe0\x4a\x08\x1a\xeb\xd0\x78\xbb\xea\x2b\x92\xb1\x6b\x15\x69\x9b\x5e\xda\x9d\xa2\x68\xe4\xee\xea\xec\x01\x6e\x54\x62\x04\x84\xde\xc6\x55\xc0\x82\xd0\x90\x65\x0e\x3d\x5f\x74\x54\x7a\x15\x25\xc3\x34\xe2\xf1\x88\xc8\x79\xf9\x56\xe5\xb1\x5a\x5e\xb3\x38\x0d\xdd\x32\x28\xb8\x09\xb7\x9c\x7e\xa0\x6b\xf8\x95\x77\xc9\xc9\x9e\x3b\x2b\x9f\xab\x4d\x83\xbd\x3c\x8d\x57\x25\xf9\x10\x8f\x1e\x1f\xcc\x2f\xba\x7e\xf1\x9a\x8d\xc3\x74\x60\x77\xd3\xcf\xc0\x5d\xb9\x44\xef\xcd\x54\xf9\xc0\x23\x90\x8f\x61\x63\xa0\x83\x7a\x17\xb1\x4d\xd2\x21\x1f\x3c\x1e\xc4\xca\x44\x14\x6f\x66\xb1\xc6\xd1\x92\xcd\x58\x1d\x07\x4d\xe1\xcd\x40\x4d\x68\xaa\x50\x8c\xb5\x2e\x2f\x56\x77\xa0\x94\x69\x36\xce\x3f\x78\x4d\x62\x8a\xfe\x57\x4d\xee\xcc\x4b\xc3\xb0\xa5\x54\x4a\xde\xe0\x7d\xc7\x57\x63\x41\x10\x93\x86\x58\x61\x22\x1a\x68\xf1\xfe\x96\x09\x93\x47\x05\x9f\xd2\x42\x24\x77\x55\xc3\x33\x4e\x43\xaf\xe2\xc9\xd5\x40\xe0\x79\x9c\x37\xab\x82\xc4\xf1\xf2\xde\xf2\xfe\x72\x46\x3e\xf6\x89\xde\x85\x6a\xaa\x5e\xae\x38\xa4\x12\xd7\x68\x18\xed\x30\x2f\xce\xfd\x1b\xa0\x3c\xe1\xcd\xd1\x4d\xc2\x42\x64\xe9\x78\x74\xef\xd8\xaa\x4f\xfc\xe8\x3f\x4b\x86\x9b\x24\xdb\x73\xcb\x89\xc3\x16\x04\x42\xb7\xea\xeb\x74\x66\xa6\xdd\xb7\x6b\x52\x70\x60\x35\xfe\x0e\xfd\x0a\x56\x30\x1f\x57\x9c\xd0\x1d\x4f\xed\xe5\x97\x53\x39\x67\xd9\x11\x79\xec\x2b\x8f\x77\xf4\xad\xbd\xd8\x24\x28\xb7\x1c\x5b\x83\x7a\x88\x31\xbf\x63\x0f\x77\xbd\x76\xa8\x41\x8b\x63\xbe\xfc\x45\x69\x86\x0d\x88\x7e\xe1\x19\xc5\xcb\x3c\xa3\x64\x42\x0b\x9b\x17\x0f\x28\x97\xaf\x93\x3a\x4d\x3f\xa9\xa4\x46\x60\x74\x8c\x74\xf4\x0e\x7d\x7d\x1c\x19\x97\xb4\x55\xc0\x27\x63\xe5\x5b\xf1\x09\x9a\x3a\xfc\xe7\x81\x17\x24\x3a\xd6\xa0\x19\xde\xce\x46\xb1\x5b\x47\x68\xd5\x21\xab\xe7\xd7\x0d\x0e\x32\x61\x36\x4a\xc2\xfe\x54\xcb\x89\x3b\x7e\xbf\xa2\x61\x31\xf6\x99\xf5\x29\xd5\x5b\x98\xc4\xe4\x89\xa5\x31\x1a\xe4\xc7\xdb\xcb\x69\x16\xb2\x91\x9c\xc2\x1b\x3a\xf0\x61\x13\x29\x7e\xdd\x0c\x4c\x61\x98\x5a\x8d\xd2\xff\xc7\xf8\x32\x7c\xd1\x44\xf2\x89\xd3\x9c\x43\xba\xc3\x3d\x95\x77\x92\x2f\x94\xb8\xae\x49\x6c\xc1\x5c\x24\x44\xa6\xd7\xf1\xde\x7c\x51\x09\xe4\x69\x91\x3f\x54\xee\x18\xfc\xbe\x1f\x72\xad\x86\xdd\x70\x04\xc9\x0b\x4e\xef\x89\x8e\xaf\x49\xa7\x3a\x5e\x2d\xe4\x87\xa4\x56\xed\x14\xce\x3c\xa6\x94\x3b\xa4\x28\xb3\xdf\xa7\xba\xc9\xcd\x8d\x9c\x51\x93\x56\x75\x98\x00\x42\x0e\x99\x65\x7d\xba\x51\xa6\x23\x61\x6c\xf2\x1c\xea\x22\x38\x78\xd0\x61\xe0\xd7\xaa\x08\xcd\xfb\xe9\xda\xc3\xf4\xed\x5d\xf7\x61\x71\x5a\xcb\xdc\xcc\xf2\xcf\xba\x19\xa8\x61\xfe\xa5\xb1\x67\xfe\xfc\x35\x1d\x63\x38\x5a\x99\xa9\x87\x6e\xda\x8f\x35\x2d\x64\xcf\x86\xae\x1d\x10\xc9\x9c\x89\x86\xcf\x45\x3f\xac\xc0\x96\x29\xfa\xa0\x03\xf9\xbd\xda\x83\x9e\x9f\x6f\xc7\x91\xcd\x27\x95\x3d\x01\x27\x30\xd8\x0c\xf0\xc9\x17\x83\xce\xf2\x57\x09\xa9\xa5\xde\x73\x7a\x96\x1a\x38\x4b\x71\x14\x1a\x54\xc9\x32\x89\xd6\x24\x38\x35\x4a\x0c\x47\x4b\x51\xa8\xa4\x1e\x6f\xd0\xfd\xe0\xd7\xd5\xce\xea\x30\x4b\xcb\x92\x7a\x9f\x7b\x4f\x8a\xbb\xf2\xfe\xbe\x6e\xed\xd9\xa4\x6b\xb2\x01\x56\x3a\x72\xe9\x3b\x0a\xdb\x75\x47\x91\x95\x4c\x48\xdc\x58\xdb\x25\x94\x2d\x43\xe8\xd0\x0f\x12\x3c\x5d\xd5\x3e\xa1\x7c\xbc\x48\x11\x0e\x55\x64\xac\x1b\x64\xd2\xb2\x28\xec\x0b\xac\x98\x79\x95\xf4\x2d\x84\x63\xf9\x98\x1a\x26\xae\x96\x07\xee\x43\x1e\xc3\x0b\x9e\x34\x92\x01\xa8\xd9\xf0\x7f\x87\xf1\x90\x28\x30\xd1\xd7\x51\x2e\xcd\x7e\xc8\xe0\x47\x48\x47\xab\xa6\x80\xb4\xf4\x70\x71\x89\xb0\x86\x78\xaf\xeb\x81\x72\x67\xbb\xaa\x33\xde\x3f\x53\x4a\x48\xe9\x30\x4a\xa2\x34\xd9\xa5\x22\x20\x3a\xe1\xe8\x26\xc3\x43\x98\xed\xf9\xe8\x5b\x0b\x8f\xa2\xbc\xbb\xfc\x3a\x50\xf3\xf2\x0b\xba\xd8\x1b\x25\xdc\x5a\x59\x9c\xde\x3a\x57\xfe\xc5\x56\x3d\x8e\xcd\xcf\x8b\x53\x24\x57\x15\x38\xd4\xd8\x82\x8e\x2f\x6a\x34\xef\x32\xa9\x09\x47\xc5\xa4\xb3\xb1\xfb\x45\xee\xec\xf3\xbe\x57\xfa\x92\xa7\x75\x23\xe1\xac\x2b\x12\x06\x11\xf1\x43\x27\x7c\x79\xf7\x23\xba\xc5\x08\x6f\x9b\x5a\x88\xe7\x84\x72\x3a\x1c\xd8\x6c\x25\x37\x03\x9b\xb5\xd4\xc0\x16\x30\x1c\xe9\x59\xfb\x14\xfe\xc0\x57\xf6\x33\x90\x03\x4f\x61\x2b\x50\x3e\x2e\x3f\x47\xa1\x50\x27\x3d\x48\x2e\x77\x6e\x78\xfd\xba\x5f\xff\x99\x0d\xcf\x84\x18\x58\x53\x30\x81\x4a\xec\x4a\x14\xb3\xe5\x0c\x42\x90\xb4\xd8\x34\xc6\x43\x19\x10\x32\xb0\x8f\xff\xde\xfb\xdb\xd9\x9e\x4d\x34\x03\x1e\xf9\x1a\x3b\x5e\xf2\x85\xca\xbf\xf2\xc2\x64\x64\x7b\xaa\xe6\xa2\x5e\x69\xeb\x6c\xad\x0b\x38\x37\xd7\x36\x24\x3c\xe6\xf5\x65\x03\xe5\x11\x71\x54\x35\x48\x42\x13\xe5\xb9\x9d\x28\x8f\x03\x07\x4b\x75\x79\x19\xe7\x09\x88\x7a\x7f\xac\x22\x75\x9c\xae\x81\xa6\xe3\x30\x6a\xae\xb8\xff\x0e\xfd\x3d\x18\x54\x47\xd4\xc3\xe9\x99\x21\xd9\x8e\xe0\xe1\x9f\x51\x9d\xeb\x07\xb0\xf6\x5c\xb7\xc9\xad\x8a\x6b\x15\x19\x49\x1b\x2f\x53\x81\x26\xae\x1d\x2d\x47\x41\x3f\xa5\x16\x4c\x98\x66\x43\xf2\xef\xd8\xeb\x81\x3b\x3b\x90\x0d\xe0\x29\x6c\x61\x9f\xca\x9e\xd7\x5e\x7d\xb4\xc4\x44\x67\x4d\x25\x98\x10\x7e\x15\x61\xa6\xf2\x8b\xa3\x2a\xd8\x03\x78\xb0\x1c\x64\x5e\xf4\xf6\x68\x4d\x1f\x6a\x7e\x7e\x7f\xbb\x6b\x57\x6d\x9c\x0e\xc5\x77\xde\x29\x1c\x95\xcf\x5c\xd0\x8c\x0a\x8b\x63\xf2\x07\xca\xa7\x82\x3d\xb1\x03\xad\x0c\xfc\x9e\x77\x80\xaa\xd6\x28\x4b\x14\x30\x87\x14\x3c\x68\xed\x67\x3a\x8a\xcd\xfe\x18\x1f\x79\xa8\xdd\xf7\x54\x70\x5d\x2d\xa7\x78\xf8\x64\x8d\xb5\x72\x70\xba\x3d\x8c\x0d\x8f\x44\x9d\x15\x9c\x97\xec\x2c\xef\xbc\x6b\x78\x95\xf5\x58\x9a\xad\x4f\xfa\xa5\xc9\xc4\x24\xa6\xb5\x2b\x52\xed\x09\x5a\x25\xfc\x8f\x54\x77\x75\x2d\x8b\x0a\x3f\xef\x44\xc8\x66\x1a\x30\x5f\xa8\xfe\x70\xdf\xe4\x4f\x29\x61\xfc\x47\x36\xd4\x84\xe6\x28\xa6\xda\xf8\xa3\x7b\x38\x90\x1c\xad\xf5\xe0\x34\x0f\x84\xdf\x09\x94\x99\x21\x46\xb7\x48\x0a\x2e\xd2\xe0\x03\xe4\x8d\xbf\x1c\x2b\xb1\x88\xdf\x0c\x3c\xc9\xee\x4a\xa0\x08\x37\xb7\x68\x91\x88\x75\x0b\xdd\x7a\x88\x84\x4c\x00\xcd\x83\x42\xa2\x05\x77\x4f\x61\x16\x2b\x9e\xf2\x17\xe9\x99\x48\x21\xea\x01\x99\xbb\x37\xbc\xb7\xf6\x0f\xe8\xbc\xc1\x13\x3d\x19\x78\x8f\xf4\x61\xbe\x1e\xf6\x9d\xe3\x83\x62\x0a\xef\xa0\x53\x90\x5f\x77\x7c\x7f\xee\xa5\x51\x5e\x44\xa1\xe5\x1e\xaa\x08\xde\xa8\xd4\xef\x75\x75\x66\x2d\x65\x51\xb7\x67\x31\x01\x95\x6c\xc8\xc3\x3f\xb9\x59\x26\x3c\x17\xcf\xe4\x23\xf7\xe7\x4a\x0f\xc7\x13\x60\x6b\xa3\xb6\xc5\xe9\xf6\xd0\x14\x59\x9a\x44\xaf\xb8\x02\x01\x75\x38\xc0\xb2\xfc\xba\x89\xce\x95\x7f\x73\x64\x96\x96\x7c\x5d\xa1\xa9\xf8\xc2\x16\xf6\x4a\x77\x79\xd4\x65\xb8\x05\xe2\x0d\x6b\x3e\xf0\xc5\xf8\x8b\x9f\x51\x3c\x0e\x6c\xd8\x37\x49\xf4\x4a\x45\xaa\xfd\x12\xad\x05\x07\x99\x2a\xdf\x47\x00\xce\x4f\xba\x11\x49\xd7\x66\x24\x8a\xcd\x9d\x12\x20\x9d\x5f\x55\xe6\xfe\xaf\xba\x56\x45\x37\x5a\x2d\xab\x12\x8d\x8c\x57\x7a\x78\x67\xc6\x15\x03\x60\x9a\x6d\x81\x3f\x8b\x36\x35\xff\x12\xbe\x50\xce\xe6\x4b\xe9\x7a\xde\x6a\x7d\xf9\xcb\xfc\xf0\x8e\x63\xfc\xc4\x17\x4d\x6e\x1a\x61\xdf\x9a\xa1\x68\x14\x09\xb6\xd6\x3f\xfd\xc3\x0a\xab\x11\x8e\x8a\x72\xbf\x12\x2e\x00\x79\xef\x5b\x58\x0f\xe2\x35\x51\xde\x21\xe4\xe6\x87\xd4\xf6\x82\x18\x23\x4b\xd2\x28\x50\xce\x59\xdd\xa9\xfb\x8d\xda\xd3\x2e\x93\xe3\xc2\x86\xfd\x24\xfa\xe6\x08\xb7\x89\x61\xf2\x81\x86\xcc\xd7\x9d\x36\xdb\x51\xe2\xce\x05\x3e\x71\x25\x71\xa9\x54\x2f\xdb\x73\xd0\xb2\x2c\x1f\x39\x03\x6e\x96\xaa\x53\x44\xaa\x53\x9a\x82\x10\xc5\x84\x31\x9b\x9b\x73\x12\x64\x1e\x79\xff\x9e\xee\xbf\xbe\x3b\x56\xcc\x1b\x8e\x01\x18\xf7\x1e\x0b\xbc\x51\xd7\x30\xcd\xb8\x81\x2e\x76\x1a\x3e\x62\xbe\xe9\xb6\xd9\x5a\x66\xc3\x15\xb5\x60\xce\x53\xdc\x12\xf1\x3d\x0f\xcf\x37\x49\x34\xa0\xf1\xbd\xb7\x1d\x53\xe4\x71\x92\x79\x95\x32\x21\x5d\x4b\x72\xda\x85\x13\x8a\x3d\x74\x0d\x0f\x06\xe7\x32\xba\x04\x22\xf9\xa9\x54\x62\xe2\x74\x6d\x52\x65\xd4\x57\x82\xed\x2b\x19\x8d\x91\x4b\x95\x4c\x5b\xa5\xf1\xcb\x51\x92\x90\x73\xab\x6a\x5c\x97\xbf\xda\x05\x6e\x27\x02\x73\x2b\xf0\x84\xb8\xf0\x15\x1b\xf6\x5b\xca\x32\x90\x3a\x4b\xa2\xd8\xed\xef\xc1\x28\x59\x4e\xe3\x2e\x3a\xb7\x8e\x3d\xa0\xa4\x06\x9f\x52\x84\xfe\x72\xa5\xf4\xca\x24\x79\x4a\x75\xdb\x21\xa5\xe9\x6c\xb3\x1c\x5d\x12\x3d\x2e\xfe\x37\x63\x2f\xcc\xb2\xa3\xf3\xb0\x4a\xfc\x2d\xc2\x8e\x8b\x9a\x7e\x41\x7c\xea\xe7\x61\x43\x1b\x46\xcb\x91\xed\x4e\xb6\xe6\xe6\xb6\x98\x3f\x86\xe5\x04\x38\xb3\xb8\xf7\xd0\x0a\xe2\x0e\x7e\x93\xee\x6c\xdf\xc6\x00\xfb\x09\xdf\xcc\x83\x4c\xde\xaa\xd5\x9c\xfb\xe6\xdb\xa1\x29\x6c\x36\x8c\xe2\xd8\x64\x9f\xad\x6a\xd1\x60\xc8\xb5\x96\x66\x59\x24\x03\x0a\xa7\x3d\xe5\x4d\x89\xcf\x05\x3f\x23\xb3\xb3\xcc\x74\x6d\x37\xca\x8b\x34\x2b\x44\x8c\x1d\xc1\x00\x84\x31\x7e\x5d\x41\x99\x27\xb6\x78\xc0\x4f\xbe\x79\x8c\xe0\x2c\x02\x1d\x77\x9d\x93\x23\x6e\xd5\x06\xbe\x1d\xf0\x16\xbe\x3f\x76\x1a\x43\x48\xd9\xd8\x83\x9e\xbc\x34\x77\xe9\xdb\xf3\xfb\x36\x22\x59\x72\x1b\x77\xd3\x01\x25\x41\x22\xa3\x47\x47\xbf\x08\xec\x69\xf8\xa1\x7d\x66\x8a\xbe\x0e\x7a\x0d\x37\x14\x9a\x63\xab\x3a\xef\x51\xf7\xf6\x3e\x2d\x59\xc1\xb5\xd4\x85\x1c\x17\xda\xa1\x35\xb9\x8d\x6d\x9e\x8b\x76\xa1\xf3\x90\x70\x33\x8b\xb3\x15\xd0\x81\x49\x8a\x27\x95\x6d\x00\x13\x70\x90\x97\x7f\xa0\xac\xe5\x5e\x1d\xfb\x76\xd6\x49\x15\xe5\x79\x24\x89\x5b\xc4\x99\x0e\x6a\xf5\x5b\xc8\xa6\xf0\xc0\x6e\x83\xba\x87\xe3\xff\xa7\x81\x3a\x81\xff\x96\xbe\x1a\x26\xcd\x4f\x6d\xd0\x99\xe3\x24\xcc\x67\x66\x39\xcf\xb8\xc7\xbd\x2b\xe4\x05\x27\xc7\xca\xd7\x72\x07\xb1\xfd\x5c\x94\xf4\xed\xd3\x63\x48\x7f\xf9\x23\xc7\xde\x8c\xee\xb2\x12\xd0\xb7\x61\x6c\x89\xde\xa5\x24\x27\xcf\xe2\xbb\x8a\x1d\x9a\x3f\x4e\xbb\x36\x8f\x7a\x89\xb5\xe2\x25\xe6\x9a\x8b\xae\x35\xfe\x9e\x1e\x7d\x5d\x6a\x72\xad\xea\x65\xe9\x9a\x34\x2b\xf0\x03\x5e\x53\xf3\xfc\xd7\x9a\xfa\x1b\x2b\x70\x8c\xa6\xfb\x8c\x4e\xfa\x31\xa5\x8e\x78\x2c\x78\x90\xff\xa4\xbd\x38\xbd\xf8\x98\xcf\x82\xb8\x9c\x41\xaa\x79\x5f\x89\x57\xee\x46\x6f\x43\x3a\x86\x7e\x80\xb2\x80\x40\xe2\x4c\x12\xf6\x09\x42\xf1\x5a\xa0\x36\xc8\x3b\xf4\xe1\xee\xf5\xaf\x3c\xaf\x69\xe2\xc2\xab\xbb\x37\x56\x60\xd7\xf7\xe9\x49\x4a\x45\x47\x0b\x4c\x4c\x26\x70\x23\x19\x1f\x89\x65\x81\xcd\x32\x59\xf3\x16\x27\xd5\x4a\xe2\xa1\x30\xc6\x4a\x00\x43\x1e\xd3\x70\x4c\x15\x92\x23\x1b\x43\xa1\x08\x4b\xeb\x9c\x76\xe0\x39\x4d\x3f\x1a\x3d\xdc\xbf\x55\x85\xd1\x39\xa5\x74\xb1\x1b\x6a\x45\xb2\xd9\xe8\xe7\xb8\x7f\xe5\x40\x63\xaf\x06\xbe\xce\x28\xcc\x12\xa1\x3d\x91\xcf\xc3\xc2\xc5\x75\xaf\xe7\xe6\xdc\x0c\xae\x5e\xf4\x95\x27\x89\x2d\x94\x6d\xba\x73\xd1\x75\x1e\xe8\xa7\x55\x0e\x31\x8c\x6c\x68\x73\x52\xbe\xc4\x9d\x63\x96\x20\xee\xdc\x2d\xc5\x34\xc7\x94\x04\x4b\xe0\xbb\x8a\x42\x36\x4c\xb3\x62\x39\x8d\x99\x76\x32\xeb\x5b\x5b\xaa\xe6\x6d\x62\x7c\x47\x49\x18\x47\x89\x24\x47\x58\xe6\x10\xae\xe0\xd7\x4d\xc1\x3f\xb3\xe5\xc7\x71\xd7\x53\x9c\x25\xf1\xe0\x9d\x41\xaa\xa7\xdb\x1f\x09\xb4\xa3\x49\x13\x42\x7d\x39\xcd\x06\x4a\x0f\x99\x9b\xb1\x7c\x51\x9b\x0d\x94\x7f\x11\x2e\x87\xcc\xaf\xa9\x1c\x11\xe2\xcb\xb2\xd7\x8d\xbf\xa2\x56\x4b\x19\xa0\xd1\x8a\xe1\x8b\xe0\xc9\x9a\x4b\xf7\xc1\xe9\x47\x95\x1b\xca\xf9\x40\xf1\x7c\xa7\xc8\xc9\x90\x61\x6f\x08\x27\x68\x2f\xdd\xd0\xa4\x35\x5e\xf0\x08\x57\x87\xb4\x80\xc2\x7d\xfc\x26\x64\xbe\x2d\xea\xc8\x63\xb5\x1e\x0a\x3c\x2e\x60\x17\x91\x60\xe8\x3e\x7d\xf9\xf3\x24\xea\x82\xf0\x88\x07\x82\x1e\xdd\x23\xe0\x92\x21\x9e\x33\xca\x13\x83\xb2\x2b\x4e\xbe\xad\x30\xc9\x0a\xc0\x15\x15\xdb\x00\x5d\x20\xa1\x4d\xf7\x48\xc7\x63\x9d\x6e\xea\xfe\xdd\x87\x95\xe3\xd8\x8e\x58\xa0\x00\x31\xf1\x72\xc5\xde\xfd\x72\xed\x01\xcd\xcd\xb5\xfb\x69\x96\x6b\x2d\xdb\xbb\xb8\x65\x1a\xf4\xcc\x22\x67\x63\xc9\x13\x86\x7d\x93\x0d\x4c\x68\x47\x45\x59\xcc\x4a\x44\xc6\xad\xbc\xaa\xbb\x32\x97\xf1\x18\x71\xfb\xbe\x3d\xf6\xf5\x2a\x30\x3f\x5a\xd3\xf6\x5b\x81\x4f\xcb\xbf\xd5\xc0\xc0\x98\x6d\xaf\x45\x71\x97\x15\xc0\x9a\x2a\xb4\xed\x93\xd7\xe7\x17\xda\x03\x5b\x4c\x28\x50\x1f\x07\x12\x51\xdc\xa1\x7b\x88\xed\x79\x4b\xd9\xad\x74\xed\x32\xe0\x6f\xdc\xe0\x10\x72\x13\xfd\x73\xbe\x50\xf0\xcc\x3c\xec\xdb\xee\x08\x40\x1a\xef\xd7\xef\xc3\xe2\xa9\xc6\xdf\x62\x96\x52\x93\xc1\x48\x43\xb7\xf4\x90\x87\xdf\x55\xaa\x12\x97\x55\x54\xed\xdb\xfc\xe1\x8a\xd0\x07\x9d\xb1\xce\x41\x6c\x71\xda\xbb\xee\xed\x9b\xf7\x72\x91\xe5\x0d\xa0\xb0\xf8\xc0\xcf\xd3\x71\x5d\xc1\x64\xd2\xef\x7f\xf3\x31\xe2\x23\xe2\xb4\x7e\x98\xfa\x11\x20\xe4\xff\x83\x0d\x45\x99\xd9\x81\xde\x0d\x25\x05\xff\xf5\x3f\xe9\x68\x27\x04\x65\x12\xad\xfd\xa3\xbe\xf2\xfc\x7e\x25\xf6\xf9\x53\x2c\x06\xbe\x50\x1a\xc7\x66\xc9\x66\x19\x0b\x82\x3b\x17\x05\xc0\xe5\xc4\xa8\xa2\x09\x43\x32\x30\xd9\x4a\x3e\xa1\xd5\xd3\xe9\xfb\xe1\xfd\x6f\x62\xaf\x0b\x89\xaa\xe1\x64\x2f\x22\x10\xd7\x5d\xc1\x7f\x1c\x2b\x97\x2f\xd4\xcf\xf8\x67\xbf\xf0\x8b\x8a\xfc\x71\x93\x66\x37\xfc\xba\x32\xbb\x29\xcb\xfd\x04\x46\x5d\x28\x29\x59\x1f\x05\x87\x08\x70\xcc\x7c\x20\x6a\xc0\xf4\xdb\x81\xef\x74\x2f\x38\x3f\x97\x7c\x34\x00\x42\xd4\x31\xce\x9d\x64\xdf\xaf\x8f\xfd\xd1\xb4\x89\x2d\xcd\x7f\x32\xb4\x59\x98\x26\xdd\x51\x58\xa4\x59\xb5\x86\x5a\xfc\x6c\x06\x76\x79\x2f\x33\x33\xf4\xfe\x6a\x08\xcd\x3f\xd2\x7d\xf1\x1f\xd5\xce\x96\x7f\xe4\xd4\x2c\x26\x14\x61\x83\xa5\x16\xdd\x0c\xf2\xa0\x68\xb4\xdf\x6c\x0a\x3d\x2b\x26\x79\x29\x52\xd8\xdf\xf3\x94\xd1\xf0\xeb\x4a\xa6\x1c\x16\xf9\x13\xad\x99\x19\x66\x79\x6c\x02\x7f\x21\xde\xd2\x94\xea\x72\xd9\x1a\x28\x2f\xa7\x37\x34\xff\x96\x64\x42\x64\xac\xf5\xd7\xaa\x33\xcd\x1a\xcc\xe8\x67\x9c\xa0\xda\x5c\xac\x00\xc8\xcc\xfb\x35\xf0\x7b\x79\x8d\xe1\xc1\x61\x12\x34\x41\xdb\x09\xb9\x08\x9c\xa0\x91\x72\xa1\x49\x09\xa2\x14\x9c\x2b\xf0\x6f\x0e\x53\x05\x51\x11\x71\x43\xd1\xf1\x03\x77\x0a\x0e\x4d\xb6\xdb\x17\xe4\x77\x29\x77\x73\xa0\x58\xa7\x44\x08\xb1\x20\xcc\x49\x18\x66\xe1\x86\x26\x8e\x2a\x3f\xb1\xe1\xa9\x99\x47\x95\x34\x5a\x6e\x4d\xc6\xd9\x8e\xe6\xb2\xf9\x96\xd9\x05\xb7\x06\x97\xe0\xf4\x21\x09\xf6\x54\xc7\x4f\x45\x59\xf1\x1c\x79\x2c\x0c\xda\x70\xd3\xa1\x80\x80\xa0\xb4\xa5\x52\xe5\xbd\x1d\x45\x02\xbc\x4e\x3f\xcc\xf1\xa7\xcb\xfb\x8f\xa7\xfe\x09\x7e\x0d\x62\xe2\xee\x0d\x05\x81\xd0\x71\x25\x8a\x57\x76\x79\x42\xe2\x4d\x05\x10\x7d\x94\x9c\x38\x11\xe1\x5f\xa3\x5b\x0f\xb2\xee\xef\x8e\xd5\x98\x89\xc7\xb4\x38\xd5\x2e\x8d\x7d\x7b\xbc\x37\x32\x99\x49\x0a\x0b\xfc\xa4\xc8\x1a\xa9\x06\xf2\xa6\x1a\xf8\x0c\x47\xe1\x4a\xc4\xfa\x64\xb8\x27\xb7\xe9\x11\xf1\x6b\x25\xfe\x30\x30\x2f\xa5\xd9\x43\xe5\x5b\xf2\xcc\x1c\x55\x2e\x76\xcc\x24\xee\x8b\x68\x7b\xd3\x87\xb9\xc6\x97\xd7\xaf\xd9\xd2\xae\x34\x9f\x04\xad\xaf\xcf\x7a\x7d\x5b\x17\x0c\xd8\xa0\x5f\x3a\x1b\xde\x11\xe7\x5c\xa0\x84\x40\x4e\x29\xd1\xde\x89\xa6\x69\xc2\x52\x3a\x4a\x38\xcb\x74\xc2\x5b\x5e\x00\xa2\xa9\x35\x31\xb4\x79\x1e\x0d\x98\x26\xe7\x72\x24\x7c\x10\xbf\x0e\xda\x0d\x61\x67\xc9\x26\x76\x39\x0a\x23\x83\x06\x45\xf9\x73\x1d\x2b\xc1\x73\xe7\xd4\x93\x4f\x07\x91\xc2\xd2\x9c\xd7\x62\x20\xe7\x9b\x5c\x23\x7b\x69\x8c\x6e\x30\x6a\xf8\x1b\xba\x44\x3c\x5c\x01\x64\xd7\x3b\x92\x0b\xed\xcc\xe6\x11\xb3\x6a\x74\xc7\x5e\x6f\xc5\x0b\x4d\x82\x12\x89\xc9\x32\x45\x08\xc2\x32\x45\x93\x9c\x5f\x37\x69\x0f\xc7\xd1\x60\x18\x01\xee\x82\x47\x8b\xea\x8a\x5f\xab\x16\xdc\xd0\x66\x79\x94\xe3\xe8\x42\x78\x46\xe7\x8e\x5f\x7b\x55\x09\x26\xba\x74\xa7\x3c\xfa\x9f\xb1\x20\x08\x83\x5b\x58\x2f\xd4\x14\xfe\xda\xdf\xef\xf8\x95\xbc\xa5\xa1\x95\x67\x9b\x7d\x2f\x07\x66\x30\x30\x71\x64\x70\x68\x8b\xcb\x82\x27\x6d\xd5\x0f\xdd\x03\xcf\xb5\x8b\x74\x38\x8c\xa1\x00\x80\x74\xe1\x4a\x65\xc2\xec\x71\xff\x6f\xd7\x40\x7b\x33\x33\xed\xcc\xa2\x0b\x40\xdb\x13\xf1\xf5\xb7\x03\x1f\x6b\x7f\x7b\xfc\xa8\x37\x65\x23\xc1\x58\x2a\xd3\x9c\x3d\xbf\xb7\xfc\xdb\x1c\xfb\xf3\xfc\x1d\xdd\x44\xf9\xce\x76\x8d\xbf\xb2\xf0\x9d\x9f\xdf\xff\x78\x6b\x51\x3a\x49\x17\x14\xc0\xf8\x36\x81\x33\x18\x91\x1c\x54\xa4\x77\x55\xa5\x7d\x38\x50\x2a\xe1\x13\x14\xa1\x9c\x74\x4c\xf9\xd1\x20\x70\xb4\x90\x6b\xa1\xc9\x0e\x13\x63\xdc\x8a\x89\x8e\xef\x9c\x1f\x19\x97\xa7\x20\xa3\xed\x10\x82\xf9\x33\xd4\x59\x7b\x46\xf5\x3a\xff\x3b\x8d\xc9\x79\x0b\xe7\x26\x0e\xd1\xef\x28\xc4\xec\x90\x5c\xf5\x32\xde\x82\xf2\x04\xd4\xd3\x50\x43\xcf\x5e\x04\x40\x27\x96\xff\x3d\xa5\x24\x75\x4f\xcd\xfd\x4c\x56\x4c\x2a\xd5\x65\x9e\x7a\x8a\x49\xcc\x67\x0d\xc9\x1b\x88\x57\xa3\x1c\x53\x04\x54\xab\xe7\x10\x20\xf9\xc2\x1d\x54\xdd\x51\x8a\xaf\x8e\xb3\x46\x9f\x3b\x5b\xb5\xcc\x65\xf6\x40\x7b\xc9\xf4\xcd\xc0\x48\xe1\x82\x6f\xff\x68\xc7\xff\x12\x96\x65\xc3\x12\xdd\x53\xeb\x86\xcc\xcf\x8b\x07\x26\xdf\x31\xdc\xde\x43\xda\x1b\xed\x90\x82\x02\x87\x36\x8e\x95\x25\xd3\x31\x25\xd7\x7f\x5e\xa1\x56\xdf\x08\x9e\xaa\xc1\xae\x97\x22\xb4\x61\xb9\x4e\xc1\xf7\x92\xa2\xa5\x82\x37\x4b\x57\x1e\x2d\xd7\x0c\x26\x3c\x87\x54\xda\xff\x3f\xdd\x20\x10\xb1\x3c\x49\x55\x1d\xde\x45\xea\x84\x24\xfb\x3a\x19\x1d\x38\xfa\x53\xf9\xb3\x00\x72\xb9\x1d\xa8\x5e\xde\x65\xac\x65\xc7\xd1\x74\x83\xd6\x3b\x2c\xd7\xc5\x8a\x7b\x63\x8f\xcb\x82\x62\x20\x7a\x56\x9f\x60\xb0\x85\xba\xfe\x54\xa0\x18\xb3\xa7\x82\x47\xd5\x5c\x25\x96\x93\x15\x5f\xf4\xd0\x58\x7d\xeb\x43\x4d\x86\x05\x65\x68\x18\x0c\x0b\x2f\x6f\xde\xa4\x01\xe5\xbb\x89\x34\xf3\x5b\x23\xf5\x62\x87\xde\x7a\x93\x42\x11\xbf\x76\x7c\x92\xb0\x6f\x4d\xf1\xff\x3b\xb8\x6c\xa0\x52\xdb\xd8\x2c\xd1\x24\x6b\xc2\xbb\x0f\xdf\xa3\x5b\x22\x23\xe6\x96\x13\x0f\x7a\xbf\x49\x2b\xbf\x1b\xe5\x2b\xdc\xb1\x47\xf8\x62\x95\x16\xbe\x08\xb4\x91\x24\xb6\xa3\x13\x1f\xf7\x72\xa7\xd7\x1b\x52\xfd\xb6\x09\xc3\x6c\x24\x4d\x24\x55\x8d\xcc\xba\x5e\x5d\xc3\xd7\xc9\xfb\xe9\x1a\x23\xa0\xa1\x48\xf2\x89\xde\xcf\xa0\x56\x09\x0a\xaa\x8e\x29\x5f\x6c\x87\xe9\x70\xbd\x3a\x0b\x74\xbd\x8c\xf3\x6a\x0a\xfa\x92\x09\x57\x5a\xea\x8d\xcf\x69\x6b\xa9\x73\x6e\x02\x23\xce\x25\xcc\x17\x46\xba\xfb\x6e\x45\xc8\xde\x6b\x52\xbf\xa5\x28\xa8\x4b\xe9\xcb\x96\x55\xb8\xb8\x90\x00\x16\x7b\x8b\x68\xc9\xfb\xb7\x36\xc6\xdb\x01\x90\x62\x3e\xa8\xa4\xcc\x6d\xb1\x44\x5f\xb3\xdc\x06\x88\xdc\x9f\xa0\xfb\xc4\x17\x4a\x06\x72\x10\x86\x66\x4d\x4d\xca\xd8\xb4\x17\xb7\x10\x1c\x6c\xdc\xf4\x43\x4d\x92\x00\xbd\xc8\x09\x4e\x88\x7f\x9c\xa7\xb9\x68\xff\xea\x95\x15\x33\x59\x1e\x2a\x0c\x8a\xc7\xd1\xa3\x75\x1a\x9c\xa8\xfc\xbc\xf3\x53\x64\x8f\x2d\x19\xa5\x91\xd2\xb3\x85\xa5\xef\xe2\xb4\x93\xac\x2d\x03\x0a\xbf\x56\xb2\x20\x83\x34\x29\x6c\x37\xca\xd3\x64\xc2\xef\x98\x93\x2a\xa8\x1f\xc5\x82\xc2\xf8\xe0\xda\xd8\xb3\x94\x97\x63\xfb\x72\xb4\x44\x62\x52\xa4\xaa\x8f\xe9\xd8\xa9\xb1\xf2\x8c\xbc\xa4\xaa\xe1\x53\x63\x05\xde\xf9\x14\x82\x08\x7c\x41\x2b\x08\x11\xfe\xa3\x2a\x99\xae\x37\xb2\x53\xa4\x51\x26\x7c\x2f\x6d\x1a\xfe\x07\x1a\x40\x04\xfb\x69\xf4\x4c\x38\x33\x14\x12\x8d\x87\x51\xd9\x75\x2c\x19\xe1\xf6\x60\xb6\x8c\x02\x65\x12\x47\x36\x83\x74\x34\xe9\xe7\x94\x32\x02\xbe\xad\x27\xc6\x66\x68\xb3\xdd\xf4\x57\x08\xd4\xa7\x10\xa8\xf1\x4b\x58\x6b\x16\x71\x01\x7d\x72\x0d\xc5\x42\x34\xbf\x34\x56\x2e\xa9\x9c\x41\x20\xaa\xdc\x6f\xca\x45\xa3\xc1\xc0\x76\x23\xe2\x84\xcd\xcd\xf1\x78\x71\x97\x97\x9c\xda\xb7\x6b\x43\xe6\xd4\x49\xb4\xb2\x02\xdf\x7c\x25\x91\xe2\x3d\xe7\xbd\x83\xf1\x20\x55\xa1\x79\x43\x09\xb1\x6e\x54\x5a\x91\x45\x64\x5a\xaa\xe6\x43\x8e\x2a\xe8\x53\x61\x84\x99\xe1\xd0\x9a\x8c\xe4\x3c\x71\xaa\x1d\x1d\xfb\x12\xe8\xbf\x7d\x9c\xba\xaf\x88\x66\x5b\x63\x45\xd0\x21\x40\xfc\xbd\xff\xfe\x89\x8e\x97\x61\xbc\xad\x07\x53\xe7\xb0\x72\xf4\x04\x40\x74\xbf\x1a\x62\x62\x18\x5b\x93\x8c\x86\xda\x17\xe3\x6f\xc6\x3e\x9c\xfc\x4d\x63\x5f\x7b\x40\x0a\x1f\x07\x85\xea\x4e\xae\x9f\xf2\x5a\x25\xa2\xc3\x78\x94\xf4\xc0\x9a\x42\x80\x80\x05\x65\x05\xcf\xea\x94\x4f\x66\xfc\xcc\x43\x25\x67\x59\x3a\x4c\x73\xdb\xdd\x4b\x31\xea\x22\x22\x3c\x33\x70\x68\xda\x5d\x19\x01\x39\x74\x53\xb9\x05\x84\xa7\xa3\x04\x23\xfe\x64\xec\x19\x7b\x67\x70\x4b\x59\x3c\x69\x4c\x26\xe3\xb8\xfd\xe8\x76\xbc\xa9\x72\x98\xbe\xc9\xba\x7b\xe9\x13\x50\x07\xbe\x8e\xc3\xdb\x55\x2a\x0e\xa3\x07\x75\x15\x11\x6d\x51\xe2\xc9\x7f\x4b\x51\x19\x49\x37\x0c\x71\x91\x11\xbf\xa1\x55\x6e\xb0\xd2\x91\x44\x5f\x21\xf5\x52\xf9\xef\xdb\x66\x00\xf3\xf3\xed\xaf\xcf\x92\x5c\x90\x80\x3d\x5b\x8e\x04\xf7\x27\x94\x97\x08\xfb\xc3\x73\xdd\x8f\x21\x84\x48\xb3\x69\x7b\x7d\xf2\xe2\x8b\xed\x25\x8b\xb2\x61\x51\xc6\x72\xac\x67\x23\xc3\x49\xcf\x71\x60\x0e\x90\xfc\x7e\x75\x40\xc4\x51\xc8\xf9\xc2\xbc\xf7\x79\x9f\xf7\xe2\xce\xea\x3c\xca\xa2\x70\x85\x6a\x14\xfc\xc8\x3f\x57\xd2\x09\x18\x9a\x22\x84\x5e\x52\x53\xa5\x93\x0a\xcc\x31\x30\xd9\xca\x84\xaf\x4c\x90\x8e\xe1\x31\x5f\x53\x10\xd1\x9d\x1d\xd5\x92\x5d\xdc\xbf\xdb\xb7\x42\xbe\xfe\xc5\x8e\x77\xc4\xf9\xe6\xdf\x67\x00\x22\x42\xd8\xc3\x1d\xbf\xc9\x6f\xe3\x2e\xe8\x02\x08\xc7\x02\x5c\x4c\xd9\x1d\x6b\xac\xc7\x71\xbd\x96\xc6\x92\x55\xd0\xd9\x8f\x28\xf1\xd0\xd8\x80\x79\x8d\x36\x0d\xd3\x30\xf9\x42\x99\x0d\x7c\x38\xf6\x88\xf8\x0f\xd5\xcd\x8e\xed\x72\x41\xa5\xf0\xc1\x69\xc7\x72\x2e\x3f\x97\x5f\x2b\xe1\x15\xb3\xf2\x4a\xba\x9b\x96\x3b\x0b\x70\x22\xd6\xa2\x2f\x30\xb9\xe1\xbb\x33\x87\xe9\x2e\xa2\xbe\xfb\x36\xbd\x19\xda\x62\xf7\x68\x7b\xa2\x2b\x3f\xd9\xf1\x55\xeb\xfd\xc0\x6f\xf6\x35\x93\x65\x16\x8c\x80\x8a\xb3\x00\x5f\xa8\x2a\x6a\x29\x4a\xd0\x37\x15\x5d\xca\x6d\x30\x3f\x8f\x3e\x3a\xd2\xe0\xd7\x3f\xdb\x4e\xc3\x70\x34\x8c\x44\x30\xb2\x91\x71\x55\x7e\x45\xa9\xfb\x7c\x9b\xba\xe8\x73\x6b\xa2\x5c\x37\xec\x83\xa6\x84\x9d\x0e\x3b\xdd\x47\x31\x11\x91\x5c\x91\x5b\xda\xca\x56\xea\xdc\xf8\x41\xf7\xb6\x69\xf2\xb3\xe5\x9b\x60\x9f\x30\x21\x51\xcc\x21\xb5\x37\x01\xdb\x2a\x8a\xad\x9d\x02\x53\x6f\x8d\xd5\x18\x8c\x23\x13\x96\xfc\xb5\xb1\xaf\xb2\x4f\xc2\xf4\x8d\x15\x5b\xa8\x64\xc1\x9e\x7f\x97\x2a\x63\x74\x71\x2f\xab\x99\xf7\x09\x2c\x5d\x71\x18\xf7\x35\xed\x3d\xe2\xd7\xb8\xcd\x5c\x96\x38\xa2\xde\x40\x3b\x1b\xd1\xec\x5b\xb4\xf0\x44\xdc\x15\x0f\x09\xff\xe7\x22\x42\x2c\x32\x01\x6e\xe8\xe3\x74\xe3\xb2\x0a\x6d\x10\x2c\x15\x74\xa7\x3f\xa6\xee\x32\x36\xe8\x2d\x64\xd0\xa8\xaa\xb6\xa8\xa1\x27\x63\x0c\xef\xc2\x94\x87\x66\x68\x7b\x29\x0a\x10\x4f\x1f\x81\x1e\x0e\xbf\xae\xa5\x8e\xb3\x07\xda\x45\x54\xb0\xd3\x12\x3a\x02\x57\xe9\x0f\xf8\xb5\xeb\x0f\xad\x9a\x24\x4c\x47\xab\x36\xe3\xbe\xbf\x33\xa9\xf3\x4e\x11\x7f\x53\xa9\x31\x47\xb1\x05\x2b\x02\xb7\x99\x1a\xaf\x5b\x77\xb1\xb9\xa5\x4d\x45\xf7\x01\xdd\xd2\x7f\xa7\xcc\x72\xaf\x06\x4a\xd2\xe5\xb4\xca\xc9\xfb\x51\x1c\xe7\xe0\x9b\x4a\x66\xeb\x03\xf6\x7b\xf8\xab\x0a\xe7\x5e\x72\xe1\xfa\x99\xbc\xd0\xce\xa2\x50\x5c\xf0\x85\xc9\xdc\x72\xce\xa4\xe7\xb4\x15\xc4\x5d\x35\xc2\xeb\x5a\x1a\xac\x67\x3c\xa6\x46\x3d\xba\x41\xdb\x9d\x5f\xab\x88\xc3\xde\x09\x53\xf4\x5d\x04\x84\x42\x8b\x55\x2c\x9b\xd5\x73\x7d\x47\x65\x1e\xe0\x30\x21\x47\xbf\xdc\xe4\x57\x94\xdb\x6c\x15\x05\x23\xfa\x49\xec\xf0\x51\xf1\x6f\x92\x21\xf1\xcf\x78\xd4\x60\x5c\xd8\x2c\x21\xf5\xc8\x78\xbd\xe5\xfd\x4b\x59\xf0\x85\x2f\x02\x01\xbb\xa6\x59\xcf\x24\xd1\x2b\xac\x8c\x52\xde\x0f\x2e\xdf\x15\xdc\xe1\x8e\x8a\xd0\x5d\x9b\x24\xeb\x4a\x92\xee\x8c\x1e\x80\xd4\x0d\x7e\x9f\x9f\x3d\x50\xa6\x74\x99\x0d\x23\x8f\xe3\x14\x1a\x2e\xfd\x02\xbe\xa8\xa1\xef\x09\x40\x95\x26\xcb\x23\xef\xce\x2c\x88\xa1\xf2\x1e\xca\x3c\xd9\x0d\x4a\xfe\xcb\x5f\x24\x33\x1f\xc7\xd7\x72\xf7\xb6\xa5\x91\x66\x6f\xd3\x53\x14\xc5\x8c\xf2\x8d\x24\x89\xf6\x12\x70\x0c\x48\x90\x77\x52\xe3\x80\xcc\xe6\x39\x18\x7f\x8e\xfd\xf3\x23\x0a\x2d\xfc\xda\xed\xa4\x30\xb3\xb6\x8c\xc6\x6c\xb2\x28\x13\x2c\x3d\xd9\xda\xfe\xc0\x9f\x5f\x68\xdb\xe4\xa5\x74\x1d\x01\x1c\x31\x8c\xd5\x63\x5d\xdb\xc5\x0f\x0f\x4f\xbb\x8f\xea\xa6\xe4\x3c\x25\xf7\x48\xa3\x1b\xf9\x75\xc3\xce\xa0\x0c\x37\xa3\x6a\x0d\xc9\x1e\x60\x9f\xa2\x7d\xe0\xb3\xa5\xf7\xb4\x65\x52\xd4\x8d\x59\xe2\x0d\x6c\xd3\x0b\x88\xdd\x7c\xd1\xd0\xac\x5a\x2f\x33\xe2\x99\x19\xde\xfe\x0f\x50\x72\xce\xaf\x37\x94\x54\x55\x3a\x18\xc6\x51\x58\xae\x0f\x38\xb6\xa1\x7e\x62\x20\x23\xc2\xc5\x7b\x8c\x5b\x40\xe0\xe5\xba\x08\xa7\xe8\xa7\x48\xbc\xf8\x8f\x02\x57\x48\xc4\x4b\x36\x2b\x14\x8e\x81\xb7\x3b\xaa\x40\x46\xca\x89\x88\x4b\x13\xa0\xda\xd8\xdc\x64\x32\x02\x45\x83\xea\x2d\x8d\x42\x79\xcb\x23\x40\xa3\x5e\x62\x8a\x51\x86\xcd\x8a\x55\xf7\x9e\x32\x25\xba\x5e\x01\x01\x39\x47\xed\x7e\xb4\x6a\x72\x26\x3f\x31\x94\xba\x3a\x95\xd2\xe4\x02\xc5\x59\x7d\x90\xc6\x8c\xf2\x8f\x9a\x14\x91\xd2\xb5\x44\xd9\xf7\x9e\x0c\x54\x18\x7b\x6d\xec\x05\x7d\x3f\x69\x1a\x83\x87\x26\x2f\xcf\x0a\x55\x78\x82\x13\x2d\xac\x21\x0f\xd7\xeb\xa7\x71\x1c\xf5\x58\xac\xa9\x51\x82\x41\xd9\x16\x9b\x28\xc9\x8b\xcc\x9a\x01\xc0\x7d\x68\x79\x9c\x50\x1e\x02\x4f\x9d\x50\x1d\x8c\x6f\xac\x59\x04\x23\xe1\x34\xb5\x9c\x84\x4d\x5d\xed\xf0\x79\x92\xec\xd6\xfc\x38\x7c\x57\xb4\x47\xf8\xb5\x1a\x97\x2c\x91\x7c\x56\x0e\x2d\x06\x1c\xca\x50\x72\x05\x7e\xeb\x2c\x75\x39\xf0\x13\xfe\xb0\x01\x98\xbe\xd0\x36\xa1\x73\xf7\x6a\x29\x37\xe4\xf3\x15\x43\x80\xda\x9a\x9a\x99\x21\x69\x1f\xb7\x53\x85\x82\xd8\x72\x6a\x49\xd7\x6b\x33\x8e\x7d\xf3\xed\xdc\x9a\x3c\x4d\x58\x98\x00\x91\x00\xa5\x0d\xbf\x56\xf1\x69\xc9\x0e\x52\x93\x48\x6a\x00\xf8\xcd\x0e\xc5\x26\xde\xb1\xe1\xd3\x3e\xfb\xcd\x51\x54\x30\x0a\x58\xec\x4f\x18\xca\xc9\x17\xb5\x09\xd8\xec\x81\x76\x94\x14\x36\xb3\x80\x5a\xd3\x87\x30\x91\x22\xf0\xdc\xa4\xe3\x4d\xf2\x3f\xc3\x2c\x5d\x8e\x90\x95\xbb\x81\x8b\x13\x2c\xdb\x54\x83\x07\x98\x7d\x67\x8c\x97\x95\x3a\xc2\x63\xc8\x4f\xd7\x7a\xbd\x33\x33\xed\x30\x36\x49\xd7\xe6\x45\x94\x60\x07\x6a\x8e\x26\x7e\x0c\x0a\x35\xb6\xec\x6a\x70\x96\x6c\xaf\x46\x5d\x9b\x16\x66\xc8\x3a\x41\xee\x84\x52\xaa\x11\x0d\x27\xd4\xb3\xa4\x75\x16\x25\x23\x89\x5c\x22\x1c\xa8\x48\x49\xb8\xa7\x38\x65\x34\x08\xff\xa6\x96\xf5\x3a\x51\x83\x9a\x1e\x78\xae\x3d\x4a\x56\x6d\x14\x2b\x3b\xbd\xb7\x02\x3f\x4f\xae\x23\xc2\x85\xf6\xb2\x94\x5a\xe7\x7a\x8b\xf8\x06\x3f\x01\x1c\x80\x3f\xd1\x54\xfc\x33\xaa\xc7\x4e\x0b\x62\x1d\xcd\x50\x46\x62\xc3\xc7\x03\xd9\x2d\xc4\xbf\xd9\x83\x4c\xcd\xe8\x4e\x2b\xec\xfc\x11\x55\xcf\xfc\xf2\xec\x57\x38\xf1\x72\x6e\x13\x6e\xf4\x76\x27\x50\xfa\x24\xf5\x69\x62\xb9\x51\xa2\x41\x54\x50\x4e\x22\x33\x19\x44\xac\x33\x9a\xd2\xf0\x67\x55\x55\x81\xc7\x95\x5b\x70\x6c\xb3\x5e\xc4\x02\x6e\xc2\x01\xa4\xbf\xe4\x8b\xa6\xc0\xc7\xa5\x3e\x3d\x47\x8d\xef\x43\xda\x7f\x16\xa7\x0c\x5f\x50\x81\xc4\xff\x48\x45\x96\x30\x8e\x06\x22\x33\xca\xa2\xe0\x28\x4f\xd0\xd8\x00\x99\x8e\xc9\x8a\x63\x1f\x1c\x87\x7d\x9b\xa4\x03\x9b\x30\xd5\x16\x51\x1e\xd9\x09\x4e\xfb\x8f\xc7\xaa\x7e\xba\xa9\x8e\xe4\x41\x54\x6e\xf7\x5d\xda\xa0\x47\x1b\xe9\x04\x2a\x41\x3e\x3c\x56\x39\xf5\x61\x3d\x65\x0d\x94\x66\xc1\x66\x6d\x73\x2c\x3c\xb7\x9f\x68\x82\x79\x91\x66\x39\xbb\x28\xa1\xc3\xce\xe5\xa5\x18\x07\xb6\x9c\x46\x35\x9f\xdc\xa8\xfd\x7e\xac\x16\x85\x79\x19\x9d\x42\xb6\x88\xc7\x3f\x13\xbf\x78\x0f\x06\x0c\xfb\x26\x29\x60\xac\xb4\xdf\x21\xec\xaa\xba\xe2\xbe\x06\x89\xb2\xa2\x85\x82\x92\x73\x61\x4c\xa7\x24\x31\xae\xfb\x1c\xc4\x66\x28\xe2\x65\xe8\x30\x5f\x0b\x3c\xc3\xe6\x9a\xea\xb3\x45\x83\xe1\x28\xce\xa1\x10\x20\x32\x34\xc7\x03\x65\xe2\x84\xdf\xcc\xff\x43\xc3\x07\x2f\x34\x31\xb4\x44\xe1\x49\xa9\xab\x9e\x50\x38\x7e\x56\x3b\x90\xa3\xeb\x11\x55\x60\x64\xc3\x67\x9e\xa4\x47\x8c\x87\x07\x4b\x1d\x94\xdc\x77\xb5\x6f\x5e\xe0\x3d\xce\xa0\x9a\x8c\xce\xd1\x6d\x64\x91\x68\xd3\xed\xd8\x28\xf7\x2b\x4e\xdc\xdb\xa8\x53\x9c\xa6\xa9\xeb\xc0\x9d\x40\xc5\x2b\xc3\x19\x65\xe7\x73\x94\x72\x43\x84\xb6\x96\xf6\x53\x2a\xc6\x0a\x5f\x77\x9a\x0b\x63\xa1\x1b\x95\xf7\x1a\xcd\x4e\x4e\x62\xf1\x5d\xee\x50\x89\x8e\xb2\x95\x7b\x92\x52\x72\x3e\xa4\x64\x93\x5e\x7e\x48\xc1\xb0\x7f\x12\x78\x3c\xc4\x29\x25\xbb\xfc\x2d\xa4\x12\x5c\x7d\xd3\xb7\x74\xf6\xfa\x4e\x30\x9d\x39\x38\xe8\x6c\x1c\xa7\x52\xc0\x39\x9a\x38\x2e\xc7\x45\x4c\x6d\xc5\x4b\x4f\x8d\x9f\xee\x06\x8a\x00\xb4\x73\x43\xd2\xbf\xcc\xae\x9a\xc1\xd0\xc5\x5c\x49\x7e\x7c\xa7\xe8\xdf\x28\xdd\x5c\x2d\xd9\xd0\xb5\xc3\x34\x8f\x18\xf5\x8a\x0f\x9f\xea\x78\xbe\xed\x94\x3a\xae\x5f\x8a\x7a\xbd\xb8\xfc\x88\x96\x43\x78\x7e\xa4\xf4\x05\xae\x06\x9e\x1f\xab\x45\x64\x96\x46\xbd\x1c\x68\x62\xf4\x8e\xae\xab\x6e\x0d\x7a\xb4\xe2\x9c\x42\xbf\x59\xb8\x82\xe5\x9b\x71\xa6\xad\xc6\x3c\x61\x9a\x84\x36\x43\x7e\x31\x7b\xc0\x8f\x28\x16\xfc\x45\x13\x9c\x3e\xb4\x71\x3c\x8a\xd3\xa8\xcb\xb3\x2b\xd1\x8d\xd1\x88\x7c\xdf\x31\xcb\xa2\x5e\xca\x14\x49\xe9\xcb\xb5\x1c\xd7\xf9\x88\x42\x0c\xc7\x69\x4a\x2e\x10\xf4\x9e\x18\xe6\xf0\xb2\xc5\x4f\xda\x0a\x3c\xf3\xe7\x28\x7a\x3e\xb2\xc5\xfd\x84\xfd\x44\x2d\x99\x9c\x9b\x6b\x9b\x24\x91\xdc\xa8\x7c\x6f\x2c\xdc\x23\x78\xf6\x7c\x51\x4b\xee\x66\x0f\xb4\xb3\x51\x62\xd6\x0c\x34\x53\xb0\x5e\xf6\x28\x04\x4d\x1d\x34\x30\x7b\xa0\x3d\xcc\xa2\xc4\xcf\x92\x05\x18\xe9\x0b\x87\x9b\x8a\x65\x6d\xa2\x2c\x8e\x12\x9b\xd3\x9c\x0c\xe7\xfa\xbb\x41\x55\x78\xc5\x89\x7d\xb0\x05\x23\x76\xc9\x21\x85\xba\xe2\xe7\xcc\xa6\x93\x95\x5e\xce\x33\xf9\x33\x4f\x7a\x65\xd7\x4f\x02\x2f\x95\x7d\xc7\xcb\x41\xad\x3d\xb9\x41\x22\x79\xd8\x02\x77\x70\x26\x0a\x0b\x4c\xf1\xa7\x6f\x29\xd3\x95\x4b\x81\x62\xf2\x5f\xa5\x78\x85\x45\x7b\x04\xe9\x95\x1b\x2e\x95\x5b\x13\x4b\x78\x4b\x0b\x35\x5c\x24\x10\xa8\x28\x37\x97\xeb\x1f\x79\xdc\x75\xec\x53\x19\x47\xd1\xad\xc0\x60\xe1\x2a\x3a\x71\x78\xc4\x17\x51\xfd\x60\xcf\x00\x55\xcd\xa8\x4c\x45\x47\x34\xdd\x18\x72\x15\x6a\xd2\x58\x7e\x1d\xbe\x80\x00\xb0\xeb\x0d\x19\x80\x93\x61\x6a\xc3\x5e\xde\x08\x92\xde\xd8\x5b\xfe\xb5\x1d\xd2\x14\x95\x0e\x76\x94\xbe\xff\x12\x55\x33\x5b\x3d\x29\x8c\xc1\x51\xf7\x67\xa3\xc4\x0c\xac\x37\x3c\x76\xf4\x11\x5f\x45\xaa\x11\xe2\x92\x35\x61\x9f\xcb\x48\x39\x08\xb4\xbe\xa5\x12\xa3\xbc\xa0\x84\x10\xde\xc6\x9e\x10\xc9\xf4\x47\xd5\xe9\x4b\x82\x82\xaa\xd1\x76\x93\x2a\x22\x74\x46\x4f\x8e\x3d\x5c\xe9\x8c\xaa\xd8\x06\xc3\x11\x85\x31\x61\xd7\xa9\xea\xed\xd3\xe0\x01\xfe\x5d\xd1\xf2\x84\x37\x99\xb8\xad\xdc\xc8\xb9\x36\x97\xc2\xbf\xa1\x19\x16\x5b\x93\x25\x13\x6a\xee\x0a\x49\x00\x69\x71\xd0\x33\xc6\x6f\xf9\x58\xc5\xbf\xd1\x33\x2b\xcf\x4c\x95\x87\x0c\x92\x2e\x18\x68\xf1\xeb\xb1\xaf\x29\x77\x92\x61\x9e\x73\x8f\x99\x17\xf5\xf8\xba\x67\xdf\xc1\xe9\x76\x3e\x5a\x8a\x23\xd6\xd9\x69\x72\xa0\x17\xa0\xc8\x5a\x3f\x1d\xfa\x53\x81\xbb\x76\x1b\x1e\xb5\x4d\x43\xd7\xad\xf7\xaa\xc9\x4c\x9c\x3f\xec\x47\x9f\xad\x8e\xaa\xc7\xde\xc4\x36\x12\x67\xa4\xf2\x3e\x22\xa6\x43\xe9\x82\x5f\x2b\xd4\xf1\x69\x6c\x09\x71\x82\xf1\xad\xd7\x07\x41\x43\xc1\x4f\xfc\x5d\x8d\x80\xfc\x18\x1b\xda\x21\x4c\x7c\x69\xf8\xa6\xe2\x2c\xfe\xa1\xeb\xb1\x84\xb1\x19\x0c\xd6\x81\xeb\x12\xd2\x97\x32\x7f\xfd\x48\x29\x7d\xc1\x05\x0e\x67\xfd\xf7\xb5\x7d\xcd\xaa\xdd\x5b\x57\x65\x01\x40\xe7\xb1\x8e\x77\xd1\xe1\x0d\x89\xa5\xb3\x35\xd6\x37\x5c\x79\xd4\x5f\xd0\x08\xef\xab\x63\x2f\x85\xf5\x58\xc7\x4f\x3f\x1e\x27\x42\x03\x52\xa0\x9d\x4a\x60\xa1\xc8\xa2\xd5\xc8\xc4\x15\xef\x28\x6c\x2b\x91\xcf\x79\x54\xb7\x41\x8b\x7c\x44\xab\x59\x8c\xfa\xca\x0f\xc0\x0c\x1f\x27\xab\x18\xf0\x6f\x3f\x61\x66\x66\xb7\xcd\xe0\xdd\x78\xdf\x75\x2b\xea\x3b\x60\xdf\x7c\x7b\xe8\x24\x2c\xd1\x61\xe0\xe6\x09\x5f\xb8\xb6\x52\x37\x33\x03\xc3\x47\x17\xce\xf3\x2b\xb4\xa2\xf9\xb5\xf3\x43\x58\xb7\xa6\x3f\xd1\xfa\xc6\x57\xf9\x7f\x4c\x55\xe4\x45\x68\x4d\xa0\xc1\x70\xb7\xe1\x4c\x2f\x2b\x82\x7c\x94\x99\x24\xa4\x06\xc8\x0b\x5b\x40\xaf\x6f\x5d\x74\xb8\xf5\x70\x90\x2b\xee\xc6\x89\x4a\xa5\xd6\x64\xaa\x11\x8f\x56\xec\x9a\xc9\x06\x2d\xcf\x3b\x41\x86\xc0\xaf\x9b\x7c\x76\xbb\x91\x2d\xb8\x20\x01\xa2\xea\xb8\x22\xbf\x9d\xd6\xb6\xae\xf8\x78\xdc\xa9\xad\x26\x21\xb0\xe5\x28\xb6\x58\xc6\x4e\x55\xdf\x11\x31\x5f\x54\xed\xaf\x1b\x81\x9f\x04\x1f\xab\x3d\xa4\x17\x5f\x6c\x9b\x6c\x20\x51\x5b\x98\xdb\x1e\x66\xf1\x56\xad\x79\x31\x7b\xa0\x5d\x64\x26\xc9\xe3\x51\x28\x62\x13\xb2\x8f\x5a\xce\xb6\xfe\x58\xad\x9a\xd8\x37\xdf\x0e\xd3\xd1\x30\x96\x14\x85\x2d\x58\x15\xbd\xfa\x90\xb6\x6e\x8f\x8a\x7e\x37\x33\x6b\xa4\x25\xb0\x38\xed\x78\xe2\xe5\xe2\x15\x9a\xb8\xc6\x69\x44\x8c\x82\x53\xb4\x0f\xc7\x01\x51\xfc\x96\xbc\x6f\xe3\xc2\x66\xac\x21\x8b\x93\xef\xac\x02\x6b\xdc\x79\x7f\xac\xee\xc3\x55\x0d\xca\x49\x73\x9b\xf1\x8c\x07\xbb\xe7\x94\x02\xd0\xdd\x0d\xfc\xd0\xfb\xba\xf2\xb6\x7c\x3f\x10\x29\x26\x93\x24\xd1\xaa\xcd\x72\x93\x21\xdb\x42\xce\x71\x47\x61\x62\xee\x04\x0f\xab\xfa\xc9\xc4\x93\x3e\xc3\x3e\x3f\x56\xce\x4a\x3f\x56\xf2\x36\xe7\x91\x74\xf0\xff\x50\x75\x60\xcf\x2c\x65\x91\x8d\x0d\x51\x8b\x44\xa2\xc0\xcf\x71\xb8\x2a\x10\x97\x9d\xa6\xfa\x79\x60\xb2\x15\x65\x88\xef\x4c\x96\x9c\xae\xd6\xf9\x86\xe6\x52\x3b\x23\x35\x03\x6f\xcc\x8d\xdc\xee\xd7\x14\x48\xe9\xd7\x6a\x00\xd9\xc5\xe9\x76\x6e\x80\x19\x47\xc3\x0c\x32\x4f\xfc\xba\x71\xca\x94\xc6\x3c\x65\x92\x84\xbe\xfc\x63\x00\xb1\x0e\x55\xd4\xcd\xb5\xcc\x56\x9e\xb7\x94\x38\x2b\xc0\x05\x22\x5f\xdb\xa4\x20\x1f\xf6\x4d\xd6\x13\xcd\x01\x0e\x2c\x81\xc2\x94\xde\xf5\x29\x53\xb4\xbc\x6c\x33\x77\x6e\x62\x07\x5f\x52\x60\x32\x0d\x37\xf8\xb3\xca\xe9\xb9\xca\xe2\x7b\x8a\xed\xb3\xe0\xa0\xb4\x7e\xf2\xbf\x64\xc2\x95\xbd\x1e\x06\x7a\x4f\xe9\xb5\x4c\x6e\x54\xf4\x1b\x7d\x0e\xdc\xda\x50\xf2\xd2\x47\xb0\x84\xd0\x9a\x67\x93\x42\xae\x29\x91\x88\x70\xe0\x40\x82\x8a\xe9\xf2\x71\x3a\x99\x91\x43\x7d\xaa\x60\x34\x36\x1f\xf2\x98\x91\x5b\x72\x14\x79\xa4\x3d\xe7\xcf\xc9\xe7\x6c\x97\x3b\x61\x78\xf4\x70\x87\xa0\x6a\xf9\xc4\x63\x1d\x05\xcc\x7a\xd0\xd5\xa5\x4b\x99\x49\x8a\xe5\x34\xeb\xaa\x49\x31\x37\xe8\xf9\xc2\x49\x92\x2c\x65\xd1\x12\x1a\xba\x18\x35\xb2\xf4\x18\x5f\x34\x4d\x94\xb3\x51\x2c\xb2\xac\x7c\xf6\xb2\x0e\x0c\x5f\xa8\xfd\x93\x0e\x8b\x68\x10\xe5\x6c\x73\x03\x86\x13\x9c\x23\xf8\x75\xf0\xb0\xc2\xe1\x46\x2f\xb7\x94\xd3\xca\x25\xef\xdf\xfc\x5c\x23\x85\x3f\x1b\x0d\x52\xc1\xa9\xa3\xc6\x39\xa7\x58\xb9\xe7\xc6\x15\x57\xbd\x34\xcf\xa3\x25\xf6\xb8\x14\x91\x56\xad\xd8\xaa\x00\xc1\xbd\x2c\xb2\xab\x74\xc0\xb5\x9c\x56\xf2\x55\x65\xeb\x76\x55\x15\xc6\xe5\x61\xc8\xde\x12\xad\x79\xe5\x9c\xe3\x90\x34\x97\xb4\xed\x7b\x3f\x2d\x6c\x8c\x96\x1d\xe0\x64\xff\x22\xf0\xc1\x04\xd0\x59\xe5\xca\x28\xd9\xff\x87\x4a\x61\x9f\xb3\x65\x41\x51\xf9\x0c\x66\x60\x12\xd3\xb3\xf9\xa4\xb7\x8c\xbd\x89\x92\x18\x3d\x12\x86\x3e\xf0\x05\xbd\x21\xff\xab\x5a\x92\x32\x3f\xdf\xb6\xab\x26\x1e\x99\x42\xce\x18\x24\x95\x9b\xc8\xb6\xf8\x42\xb1\x64\xa1\x97\x14\x52\xd5\xec\x31\x55\x67\xd4\xc8\x53\xf7\x25\x4c\x6c\x92\x29\xa5\x62\xff\xfa\x58\x9b\x39\x5e\x44\xe6\x8a\x50\x8e\x89\x3d\xbf\x0e\xfc\xc3\x38\xa5\x09\x30\xd9\x28\xcf\x23\x43\x77\x5f\x29\xf1\x2e\xb8\x87\x2c\xd3\xee\xd8\xe4\x61\xb4\x1a\xa5\xa3\x9c\x89\xc3\xa8\xc2\xce\xaa\x66\xcd\x59\x27\xed\x34\xb4\xd9\xf2\x68\x00\x2a\xb4\x78\x05\xf9\xef\xf2\x2a\x15\x42\x22\x36\xd7\x10\x58\x97\x46\x19\x4b\x5d\xeb\x11\x2b\xbf\x56\xf7\x22\x4b\x63\x5e\x0e\x68\x9e\x7d\xac\xc4\xdd\xfe\x0a\xdd\x15\x11\x01\x50\xd3\x51\xdc\x16\xa6\xdb\x8e\x95\x10\xe4\x96\xf2\x6c\x59\x8e\x12\x53\x3e\x93\xac\xa5\xa8\x17\xc7\x34\x88\xfa\x58\x65\xf6\x92\xc3\x02\xa2\xe5\x64\x5e\x78\xba\xcf\x17\x8d\xac\xdb\xa5\xd8\x0c\x2c\x9d\xaf\xc0\x2a\x41\x9e\x4f\x48\xb3\xe5\x4e\x43\xcf\xfc\x43\xa4\x06\xa8\x1c\x77\x74\xb6\xa1\xf7\xbe\x3e\xdb\x7e\x7e\x81\xd0\x7b\xdc\xb5\xa3\x9b\x85\xec\x64\x13\x05\x33\x8e\x24\xb4\xf3\x10\x6d\xaf\xe9\xce\xe4\x87\x4e\xbf\xcb\x24\x85\xe9\xa5\x09\xd8\x67\x74\x67\x64\x5c\xdd\x72\x42\xc9\x17\xd4\x79\x50\x26\x08\x6a\xba\x76\x42\x67\xbf\xf5\x64\x95\xd4\xea\x4d\x56\x24\xe5\x5d\xf5\x42\x1c\xd7\x15\xa9\xe1\x7a\xc3\x76\x5a\x68\xf7\x4c\xd1\xf7\x87\x39\x36\xde\x19\xb4\x43\xf9\xc2\x9d\x81\xf9\x5a\xb4\x6a\xbd\x3a\x1a\xfa\x06\x1f\x2b\x7b\xc8\x8f\x15\x7f\x33\xb3\xc3\x2c\xed\x8e\x42\x3b\xa1\x70\xde\x9a\x3a\x75\x4b\x21\x72\x8f\x35\x96\x23\x49\x98\x59\x93\xcb\x57\x43\xdf\x7e\x27\x88\x61\x7c\xd1\xa9\x17\x01\x0b\xed\x3c\x1d\xd8\x22\x1a\xc8\xb1\xee\xd4\x9f\xc4\x48\xf7\x17\x4e\xd4\x72\xed\xd9\x03\xed\xe5\xd8\xe8\x4c\xf7\x50\xe0\x33\x5d\x3d\x4b\x19\x8e\xb2\x61\xca\x5c\x1f\xd4\xb0\x27\x74\x0b\xee\x44\x93\xb2\x7a\x59\x51\x21\x90\x28\x35\x8a\x59\xa7\x46\xe1\x36\x76\x66\x73\x9b\x68\x65\x54\xd0\x5d\x29\x4b\xfa\xad\x2f\x74\x3c\x38\xf3\xf3\x1b\xca\x06\x42\x8f\x6c\xec\xcb\x7d\x33\xca\x1d\x45\x1d\x58\x91\xbf\xc4\x17\xe4\x0b\x17\x47\xc2\x6c\x94\xf7\x59\x84\x4e\x2b\xb3\x09\x0b\x45\x39\x3b\x7c\x54\x43\x6c\xcf\xcd\x2d\xb6\xf3\x22\x23\xda\x61\xcb\xef\x09\x24\xa0\x3e\x7b\xf7\x92\x9b\x66\x65\xbd\xa5\x9a\xb9\xaf\x06\xaa\x12\x7c\xb5\x69\x28\x9d\x9b\x28\x29\xe2\x75\x1a\x5a\xb1\xb5\xbf\xea\x57\xef\xec\xf8\xe9\x7e\x1d\x27\x71\x70\xfa\xd9\xb6\xc9\xc8\x21\xa0\x3c\x73\xb0\x58\xae\x51\x43\x02\x67\xf6\x7d\x2d\x3c\x49\x2b\x83\x7e\xe8\xcf\x3d\xde\xf1\x07\xe2\x5a\x9a\xad\xf0\x90\x05\x79\xea\x35\x35\x81\xe7\xbe\xa0\x74\xa3\xcb\x47\x86\xc9\xda\x61\x07\xbf\x18\x66\x69\x68\x2d\x77\xcb\x94\xa2\x55\xf9\x77\xa2\x68\xd5\xa0\x26\x1e\xe5\xb9\xe3\xbd\xa0\xbb\xf8\xaf\x03\x8f\xeb\xf9\xd7\xea\x58\x5d\x36\x61\x91\x66\x0c\x18\x40\x59\xff\x7b\x38\xa2\x9c\x97\xe0\x3e\x87\xe0\xae\x94\x52\x79\x94\xc0\x5d\x5d\x5a\x2a\xbe\x2d\x7a\xbf\x72\x92\x8e\xf5\x19\xab\x7d\x8a\xef\x23\x42\x08\xcf\xa7\x41\x9f\x9d\x84\x66\x59\xd0\xc5\x99\x33\x95\xdf\x54\xec\x08\x94\x02\x17\x88\x70\xe8\x0b\xbf\xd7\x84\x7a\xb1\x83\xd4\xe5\x31\x0c\x79\x0d\x3c\xbd\xf1\xdb\x0d\xd2\xd7\xb3\xed\x34\x8b\x7a\x51\x62\x62\xa8\x5c\xcd\x3b\xd8\x62\xf9\xb4\x85\x25\xef\x91\xc0\x59\xca\xff\x0c\x6f\xc9\x7d\x1d\xbe\x50\x63\xaf\x2c\xca\x57\x72\xf8\x2b\xb3\x8f\x1c\x25\x2c\xd8\x97\x17\x75\x87\xf3\x4e\x45\xc6\x85\x16\x1f\x06\x85\x77\xc6\x3b\xbf\xe4\x58\xd1\x0d\x91\x68\x35\x2d\x38\x68\xb2\x5f\xec\xd8\x87\x25\x00\xd2\x91\xc8\x5f\x76\x3d\x3d\x91\x6b\x9e\xf4\x9d\xa5\xbf\x08\x54\xaf\xfd\x9c\x62\xe8\x62\x08\xc5\xff\xa8\x52\xa7\x24\x36\x26\xff\x5c\x94\xea\x93\xb4\xc3\xd0\x69\xfd\xc1\x58\x41\x6b\x5f\xc3\x3b\xbb\x21\x9a\x6b\x79\x1d\xd5\xc2\x19\x17\xf5\x10\x60\x47\x03\x35\x71\xa1\x6d\x13\x72\x63\xd3\xc6\x67\x0c\xd2\xe4\x8b\xa6\x71\x46\xcf\x26\x45\x2c\x16\xa4\x6e\x2f\x96\x09\x88\xc3\xb1\xba\x34\xfb\x66\x03\x47\x6c\xa1\x6d\xf2\x72\x5b\xfb\x11\xe1\x75\x65\x5d\xf5\xdb\x78\xec\x8e\x7f\x5f\x2e\x5e\x34\xfa\x26\x3a\xce\x68\x28\x35\x43\x4e\x3e\xd9\xdc\x57\xb1\x89\x37\x5d\xc3\x6b\x29\x03\xef\xb2\xa2\xcf\xeb\x79\x60\x17\x9a\xf6\x7e\x1c\xad\x58\xce\x00\x71\x46\xb6\xa8\xfd\xc5\xaf\x6b\xa6\xeb\xfb\xe6\xdb\x99\x09\xcb\x12\x46\xe1\xfd\x69\x81\x08\x5c\xb8\xfe\x19\xb3\xed\x61\x16\xa5\x19\xbe\xbf\x13\x43\x54\x34\x04\x1f\x5f\x7a\x36\x1b\x98\x24\x07\x84\x14\x13\xd8\xdd\xd4\x91\x46\xaa\xf7\x2a\x32\x27\xfc\x8f\x23\x81\xb2\x3c\xb8\x8b\x85\xc0\xfd\x74\x55\xbd\x0c\xd2\x84\x1c\x39\xd7\x79\x2e\xc0\xc2\xe3\x55\x15\x72\x05\x0c\xea\x54\x80\x0e\x5e\xd6\xfb\xb2\xd3\x25\xca\xad\x5d\xd9\xe5\x15\xe8\xee\x28\x27\x5f\x06\x6a\x23\x30\x42\x65\x40\xd9\x8d\xbe\xe0\x60\xbc\xf4\xbe\x00\xe2\xff\x65\x6d\xc1\x1c\x78\xae\x2c\x38\xba\xa8\xcd\x30\xfd\x3a\xaf\x40\xca\x9a\xff\x52\x64\x51\x5e\x94\x47\xbd\x0a\x79\xdc\x78\x12\x51\xbd\xc7\x54\xa3\x96\x04\x9c\x1f\x56\xfb\xea\xa6\x46\x55\x9e\x09\x5a\x5f\x13\x89\x65\x06\x34\xb0\xb1\x4a\xe0\xe7\x0b\x27\x91\x81\xe2\xe0\x41\x10\x47\xb1\x7d\x05\xcb\x98\xdf\x17\xf5\xbe\x93\x58\x99\x77\x4e\x24\x34\xf4\xe2\xcf\xa0\x35\xc0\xce\xd9\x74\x6e\x88\x02\xb9\x92\x25\x35\x59\x62\xb1\x3a\x71\x8a\x62\x68\xcf\xaf\x3b\xf5\xfe\xe5\xfe\xf6\x92\x2d\x26\x34\xe1\x5b\x81\x5d\x58\xd8\x08\x33\xbf\x1b\xb5\x7c\xf6\xe0\x74\x7b\x60\x58\xee\xcc\xb7\x4c\x8f\x8e\x55\xf7\x45\xf3\x14\xbe\xc6\x04\x46\xb9\x95\x9e\x5c\xc1\x44\x24\xdc\x98\x4f\x6b\xa0\xd3\x2f\x7f\xb9\xfd\x52\x1a\xae\xf0\x86\x66\x04\xb6\xe2\xf6\xd5\x31\x39\x65\x0c\x89\xa3\x55\xb1\x68\x40\x6e\xbd\xa3\x83\x15\x2d\x22\xa8\x4a\xec\xe4\xdd\xb1\x92\x20\xf2\xf1\x61\x79\x94\x74\xab\xb0\x8b\xdb\x8a\xed\xcf\x38\xea\xba\xa6\x2a\x9b\x24\x44\x49\x8f\x05\xe5\xf1\x9c\x26\x3a\x1e\xff\xfa\x2e\xbd\x0f\xc2\x16\x13\xac\xf1\x25\xef\xe2\x6b\xf1\x85\x76\x69\xbf\xd5\x70\x82\x92\xc8\x69\x56\x8c\x12\x19\x08\x30\x31\x2b\xf0\xec\x9d\x3f\x69\xbc\x39\xe4\x87\xc2\x5d\x21\xf4\xaf\xde\x50\xcf\x83\xf5\x17\x11\x6e\x2e\xd7\x12\x4b\x81\x8b\x2d\x5b\x93\x4d\x6a\x86\xb4\xb2\x6c\xdc\xd1\x51\x74\xb4\x37\x68\xb5\x0a\x9d\xb1\x21\x91\x1c\x58\xd5\xe3\x44\x73\x0c\x77\x8b\x5f\x6f\x48\x2c\x49\x9e\x59\x7d\x66\xa2\xe2\xbd\xee\x71\x1c\x67\xf4\xe4\xf0\x5e\x45\x5b\x77\x94\xa1\x7f\xcd\x46\x27\x8a\x0f\xf5\xbe\xf2\xf0\x83\x92\x58\xf9\xc0\xfd\x19\x00\x8e\x1b\x46\x67\x5a\x47\xea\x93\x06\x72\x72\xfb\x9b\xa3\x28\x5c\x69\x69\x15\x82\x96\x72\xf3\x6b\x50\x2d\xd9\x0f\x7d\x63\xd2\xf2\x76\x3d\x31\xd6\xb2\xd1\x7d\xb4\x0b\xaa\x7e\x08\x4d\x61\x7b\x29\xa9\x9c\xb8\x3e\xde\x36\x80\xf8\xf6\x6d\x4e\x8a\xaf\x19\x93\x12\x65\x22\xa5\x67\x55\x92\xa4\xe4\x45\x79\x22\xca\x92\x17\xb8\x99\x27\x9b\xdf\xc1\xd9\x2f\x42\x0c\xb2\x4f\xd2\x51\x91\xdb\x02\x6f\x2f\xb9\x99\x4f\x03\x4f\xd5\x16\x10\xb5\x75\xd3\x55\xeb\xb1\xe7\x40\x07\x6e\x6a\xad\x84\xcd\xe0\x29\xd5\x77\x4d\x56\xcc\xc0\x66\x51\x68\xf0\x29\x2e\x7b\xf6\xae\xdc\xaa\x15\xb8\x3c\x7a\x29\x02\xba\xc3\x19\xaa\xba\x11\x26\x94\x64\x2b\xba\x54\x2c\x75\x46\x51\x5b\x64\xcf\x3e\x73\xcd\x8f\x2c\xc6\x7c\x42\xb6\xd2\xcc\xab\xda\x56\xdb\x47\x92\x90\xd1\x0a\x6a\x51\xc7\x2e\x9c\x9b\x73\x33\x4b\x0f\xe9\x59\xb3\x59\xd1\xb7\xd1\x00\x67\x93\xa0\x63\xe9\x57\x08\x3c\xd6\x2f\xe9\xe5\xc8\xc6\x6c\xd8\x8f\xf4\xef\x50\x50\x41\x10\x4d\x78\x7f\xc9\x43\x7a\xf8\x5f\x03\x25\x7b\xc5\xf3\x2e\xd4\xe4\xbd\x34\x10\xb8\xae\xe2\xc0\xda\xd0\x40\x05\xec\x71\x97\xea\xe6\xff\x31\x05\x1e\x84\xbb\x2b\x4a\x4f\xf5\x11\x58\x27\x88\x40\x0e\xe5\x82\x74\x31\xf8\xd9\x8e\xff\x90\xc9\x0d\x0f\x48\x4e\xd7\x12\x9b\xe5\xfd\x68\xa8\x5b\xbf\xcc\xcb\xe5\x8b\x86\x82\xb7\xdd\x4d\x57\x6d\x61\xa2\x98\xfb\x0a\x58\xb5\x57\x70\x17\xf9\xc2\xbb\x51\xf6\x59\x23\x40\x88\xa1\x1f\x04\x9e\x3f\xa9\xdb\xae\xbd\x68\xd5\x02\x5f\xa9\xa0\x30\xcf\x0a\x11\x54\x65\xfb\x2f\xd6\x01\xcc\xb3\x9c\xa2\x4d\xf8\xce\xd8\x84\xa2\x4c\xdf\xac\xd8\xfc\x34\x84\xea\xb6\xe9\x65\xd6\x76\x27\x95\x1f\x11\xcb\x48\xe1\x88\x80\x6a\x2d\x46\x9d\xac\xc3\x87\x79\x5a\x99\x0c\x3b\xe7\x84\x74\xed\x21\x6f\xe3\xf9\x5d\x95\x4b\xb6\x3a\x1a\x47\xe7\x31\x89\x0f\xd2\xfc\x1c\x25\xd8\x25\xea\x9b\xf1\x6b\x1e\x6b\xb3\x37\x9a\x16\xbe\xdc\xbd\xe1\x37\xd6\x11\x7c\x45\x61\x5b\xfb\x59\x31\x57\xab\x18\xdd\xd5\xf5\x2e\x64\x35\x8e\x9e\x59\x79\x06\x27\x0b\x0a\xa2\x3f\xad\xc0\xe0\x7c\xc7\x90\x4d\x0c\x90\xd7\x5f\x6b\x48\xd7\x17\x44\x81\xca\x4b\xab\xb0\xcc\xb6\xb0\x99\x1a\xc2\x38\xf1\xa0\x5a\xbe\xe3\x87\x91\xae\x58\xf8\x36\xfc\x41\x66\xa2\x1c\xe9\xa7\xb8\x46\xd0\xcf\xe7\x8b\xc6\x03\x38\x33\x49\xcf\x4e\xa8\x03\x4b\xee\x2c\x06\x48\x3f\xd4\x20\xa2\xba\x8e\x06\xa9\x26\xa5\xa3\x82\x98\x97\x02\xad\x50\x30\x0b\x2d\x73\x95\x66\x7b\xfc\x7a\x3b\x15\x68\xbb\x1e\xba\xab\xe8\x4f\xef\xea\xa8\x74\xe8\x0e\x6e\x2b\x60\x1e\xd7\xf8\x8b\x39\xfd\x5d\x8f\x49\x39\xa6\xa0\x1d\x27\xd5\x67\xce\x2e\xcc\x4c\x68\x55\x70\x35\x76\xbb\x82\xb7\x06\xd8\x72\x47\xe7\x71\x65\xd5\x9e\xf7\xcb\x23\x81\x00\x82\x6e\x04\xe0\x0e\xb8\x33\xb5\xec\xa7\xac\xc2\x4d\x48\xb3\x13\x41\x49\x89\x63\x9f\x07\x6c\xf0\x56\xc5\xe2\xad\xbb\x4e\xed\x9b\x6f\x0f\xa2\x22\x1f\x45\x2d\x65\x44\xc0\xd3\x3f\xbe\x68\xb2\x54\x1a\x58\x93\x8f\x32\x69\x5e\x0a\x24\x8e\xde\x82\x2f\x1a\xc1\x81\xcb\xcb\x51\xd7\xac\x46\x68\xc6\x71\xfd\x1a\x78\x2c\x50\xdd\x5c\xf2\xe9\xf6\x70\x94\x85\x7d\xdf\x5f\xc5\x1a\x64\xd9\x06\xbe\xa8\x0e\xe0\xe3\xf5\x47\xbd\x0e\xfc\x14\x67\xbc\x68\xae\x71\x3f\x0c\xbb\xe8\x43\x4c\x77\x9c\x8e\x6e\xb9\x5e\xc5\xef\xcf\xcf\x91\x26\xc8\x8d\x04\xd9\xcf\x55\xdc\x4a\xb4\x0e\xa0\x77\x81\x10\x34\x85\x4e\x27\xd6\xd4\x0d\x35\x1b\xfa\x16\x14\x7a\x9c\x93\x8e\x63\x91\xbf\x8b\x72\x47\x54\xac\x94\x1c\xcd\x7f\x70\x00\x21\x3a\xe1\xf2\xdd\x7e\xbe\x75\x0e\x69\xb2\xe0\xa7\xfd\xdc\xe2\x3c\x0f\x31\x85\x0c\x5b\xfe\x7e\xdc\xd1\x93\x3c\x1b\xe2\xff\x43\xe1\x1d\x53\x84\xdb\x6a\xb5\xfe\xc2\x7f\xfe\xcf\xa6\x94\xee\xe4\xbd\xb1\x6a\x10\x1d\x55\x5d\x2f\x00\x81\x9c\x02\xcf\xcc\x2c\x97\x55\x6f\xab\x44\x25\xb3\x26\x16\x4a\xa4\x27\xd6\xbe\xab\x10\x4c\xef\xd6\x36\x73\x19\xa5\xd2\xa4\x48\xd5\x20\x01\x06\x60\xfc\xba\xd1\x59\xd1\x86\x26\x8e\xd5\x80\xf1\x1c\x1e\x21\x5f\x80\x50\x87\x53\x6e\x7d\x30\x34\x45\xdf\x8a\x9e\x1e\x52\x75\x78\x6a\xf1\x6b\x35\x53\x5e\x8b\x62\x1e\xb6\xa2\xf1\x7a\x04\xf1\x82\x2f\x1a\x23\x59\x91\x16\xd0\xb4\x93\x4e\x16\x9c\xb5\xf9\xf5\x86\xee\x5e\x65\xd1\x90\x2b\x22\x1c\xa4\x3b\x61\x4f\xae\x5b\x68\x4a\xc7\x41\xb8\x34\x08\x53\x48\xc7\xaf\x68\x05\xf3\x1d\x1b\xf5\xc4\x72\x7f\x3b\x5f\x23\x05\x32\xde\x31\x08\x34\xdc\x2a\xe4\x0b\x55\x1a\xf4\xb2\x74\x2d\x9f\xf4\x4d\xe7\xc3\xea\x6c\x44\x85\xea\xd4\xe8\xf6\xcd\x3b\x3b\x42\x97\x41\x14\x66\x30\x24\x45\x3c\x67\x0a\xb5\x38\xed\x1f\xa1\x73\x9d\xbd\x85\x59\x9c\x80\x7f\x5a\xde\x0e\xb1\x56\x14\x1c\x78\xae\x1d\x25\xcb\x99\xc9\x8b\x6c\x14\xc2\x8b\xc4\x9d\x3d\x10\x03\xe5\xd7\xb5\x73\x68\xdf\x7c\x7b\xcd\x38\x5c\x8f\x13\xc4\x54\x45\x44\xe3\x42\x8a\xf2\x15\xdc\xab\x59\xa1\xa9\x07\x4a\xf9\xf1\x5b\x8a\x23\x96\xd9\xb2\x1e\x16\x33\x87\x26\xe8\x59\x45\x66\x35\xb6\x7b\x75\xae\x80\x25\xed\x90\xdf\x9e\x5e\xf3\x03\x4d\xaf\xf9\xc1\x58\x49\xab\xbe\xa5\x66\xb6\x6f\x8d\x95\x99\xec\xdb\x38\xc2\xf9\x02\xa3\x3c\x81\x91\xd3\x0f\xe6\x8f\x6c\x02\x4d\x85\x69\x52\x64\x69\x1c\x3b\x98\x08\x9a\xbf\x27\x15\xd1\x12\x3d\x2d\x04\x80\x5d\x1b\xdb\xb9\xa9\xf3\xf3\x6d\xc1\xa3\x0b\x10\x57\x35\x91\x8f\x2a\xd8\x40\xf9\x51\x36\x71\xb1\x40\x98\x4e\xea\x5e\x1f\x51\x96\x67\x85\x35\x03\x8d\xe7\x87\x15\x3c\xbf\x6e\xe4\x38\x3b\xf6\x00\x6a\x28\x64\x97\xef\x28\x7b\x8d\x77\x14\x36\xb7\x67\x93\x08\xf9\xfd\xfe\x8a\xa8\xbc\x54\x0c\x0a\xf9\x6f\xe2\x18\xa5\x85\x90\xec\x14\xe1\x8e\xbe\x94\xbc\x56\x3c\xfc\x4d\xd5\xa7\x1f\x2d\xa7\x34\xd5\x45\x2a\xc9\x33\x09\x77\x51\x3e\x2c\xbe\x50\x09\xe7\xa6\xfa\xaa\xab\x26\x1c\x8d\x06\xff\x71\xce\x4b\xfe\x53\xbf\xbc\x6a\x77\xf9\xf1\xf7\x79\xcd\xd7\xb8\x85\xf5\x02\xe5\xea\x2f\x50\x9b\x51\xcc\xb3\x95\xce\xf3\x79\x25\x67\x73\xbb\x02\xe2\xc2\xf4\x75\xd2\x37\x58\x38\x41\x62\x38\x01\x27\x48\x38\x73\x59\x9c\x5d\xb2\x73\xbf\x7d\x62\x93\x74\x49\x84\x81\x78\xcd\xa2\xf0\x55\x7e\x17\x91\xfe\xf2\x28\xa9\xd5\xb4\xb0\x93\xe5\xd1\x8b\x85\x7c\x93\xf6\x0e\xbf\x56\xf5\x2b\x3b\x8c\x88\xd3\x5d\xa3\xd3\x42\x31\xea\x3a\x34\x38\x72\xf0\xf7\x95\xd1\xe9\xfb\x4d\xc3\x8d\x25\x5b\x48\x2f\x42\xfc\x90\x55\x01\xf5\x3b\xb5\xc8\x43\xbb\x6a\x95\xd9\xbc\xd2\x63\x57\x89\xf9\xa6\xeb\x2f\xd8\x97\x87\xb1\x97\x3a\xc4\x03\xbd\x34\x56\x05\xef\x25\x3f\x9a\x33\x99\xe9\x65\x66\xd8\x57\xef\x0a\xb2\x28\xbf\x56\x0b\x66\xad\x1f\x25\x9c\xb1\xe3\x78\x46\x58\xe2\xd7\x63\xcf\xb6\xc9\x87\x69\x92\x4b\x57\x50\x7c\x45\x95\x84\xd6\x39\x5d\x9e\x40\xda\x4a\x94\x66\xb6\x87\x81\xd9\x03\xed\x3c\x55\x0a\xf2\xaf\xd3\x09\xc1\xaf\x55\x76\xf1\x75\x9b\x4c\xa8\x31\x1a\xb4\x9d\x30\xac\xe4\x1e\x19\x52\xad\x07\x36\x1a\xb8\xa5\x66\xb0\x14\xad\x9a\x58\x8c\xcf\xd9\xb9\x90\xde\x42\x5c\x0c\xeb\xde\x9d\xcf\xb6\x07\xd2\x8c\x11\x95\x1d\x7a\xfa\x42\x4b\x7a\x5c\x81\x3c\xf2\xfe\x52\xba\x16\x7f\x76\x63\x68\xfb\x89\xb1\xf0\xdc\xfe\x76\x3e\x24\x87\x40\xad\xb4\x53\xfe\x0c\x51\xda\x69\x32\xd4\xe9\x5a\xc3\x2c\x09\xcf\xdd\xf4\x1d\xe3\xaa\x93\x4d\xba\x92\x2a\x23\xda\x0b\xd5\x16\x8d\xc7\x90\xae\x59\xb3\x92\x10\xe4\xc4\xb9\x4c\x42\xde\x81\x5f\x6b\xaf\xae\xcc\x26\x61\x1f\x52\x69\xc0\x88\xa0\xa7\x25\x0a\x6d\xf4\x09\x5c\x42\x2b\xac\xdd\xa3\x9c\x3d\x4b\x71\xed\xa3\xe0\x9d\x71\x45\x84\xc8\x33\x8b\xf2\x35\x1b\x93\x7e\xbf\xb2\xd8\xae\x18\x66\x2b\xa6\x69\xd6\x1b\x0d\x6c\x22\x9e\xa3\x8e\x78\xec\x94\x02\x6f\xa2\x4d\x22\x24\x15\x4f\x34\xbc\x43\xd1\x00\xc9\xc4\x45\xaa\xcd\xf9\x75\x2d\x00\xbc\xf8\x62\x7b\xad\x6f\x0a\x5b\xee\x4d\x8a\xbb\x68\xc8\xdd\x55\x73\xd9\xbb\x9f\xd9\x11\xea\xa7\x71\xd7\xe9\xb8\xa2\xd7\x71\x4a\x6b\xa8\x9c\x1a\xeb\x0e\xeb\x0a\x58\xf1\xb3\x6a\x60\x2f\x8f\x1a\x6e\x47\x08\xcb\x75\xbf\xa5\x7d\xf3\xed\x61\x6c\xd6\x25\xad\x40\x10\xe5\x2a\x93\x2f\xd4\x7c\x03\xaa\x48\x34\xaf\x10\x60\x6a\xf9\x41\x7a\xd0\x89\x73\xfb\x56\xf0\x39\x35\xf5\x31\x49\x3e\x84\x11\xd5\x94\x57\xfa\x98\xd2\x8e\xd1\x6f\xd2\x8a\x40\x24\x3e\xaf\x3a\x0c\x57\xf4\x58\xf5\x07\xb5\x04\xf8\xf9\x32\xff\x4d\x7a\x23\x9e\x28\x21\xd1\xc2\xda\xe6\xd7\x0e\x3a\x92\x99\x28\x5e\x33\xeb\xe4\x6d\x8e\xfa\xe8\x91\x8e\xea\x92\xb0\x91\x1e\x2b\x20\x8e\xfd\xe1\x77\x6d\xac\x41\xcd\x0d\x0a\xa1\x61\x1a\xc7\x66\xe8\x6a\x44\x71\x34\xa6\xa7\xe1\x4d\xd7\x74\xc6\x6b\xb3\x7c\xc2\x57\x49\x97\xb0\x44\x45\x58\x5e\xb9\x6f\x7a\xa0\xc4\x5a\x6a\x97\x6c\x2f\x65\x37\x74\x74\x98\x80\x4a\xe3\xd7\x5a\x81\x61\xf1\x57\x27\x3c\x84\xe8\x7b\x6a\x58\xc8\xe6\xbb\xd8\x83\xad\x4e\x85\xbe\x12\xe6\x20\xaa\x62\x02\x71\x19\xe5\xa9\xb8\x87\x2a\x19\x96\xc3\x98\x24\xb3\x55\x67\xa0\x4c\x8d\xaf\x6a\xd5\x8f\x07\x59\x80\x0c\x4f\x74\x57\x47\x79\xf9\x12\x96\x51\x3c\x46\x36\x68\x71\x22\x1b\x78\xa4\xa3\x4c\xb3\xee\xa2\x78\xe5\xb7\xa6\xb0\x80\x07\x75\x4a\x29\x8e\x5e\x0d\x88\xd3\xe6\x5c\x8d\xcb\xfb\x88\xf8\x73\x5d\x41\xae\x18\x6c\x06\x82\xda\x6d\x7a\x9c\xd8\xe2\x0f\x6c\xc8\xc1\xb8\x6e\x06\x26\x0a\xfb\xf0\xad\x91\x35\xa0\x5a\x83\x27\x55\x7e\x56\xa4\x49\xbe\x9b\xfe\x9f\xe3\x2e\x38\xda\x11\x33\xe6\x50\x82\x7c\x80\x9b\xc8\x17\xf4\xb9\xd8\x51\xd7\xe9\x47\xf3\x6b\x1c\x79\x78\xe0\xef\xbb\x96\xfe\x30\x8d\xa3\x70\x7d\x52\xdb\xfb\xbc\xa6\x96\x35\x9c\xe6\x05\x5a\x43\x5f\x86\x81\x75\x63\x2f\x86\x34\xcc\x4c\x58\x48\x57\x79\xbf\xeb\x00\x7a\x4a\xc9\x66\xb0\x1d\x89\x75\x70\x7a\xb6\x3d\x1a\x4e\x79\x2b\xb1\x1d\x9d\x72\x7f\x4b\xcd\x43\xeb\x00\x6d\x0a\x74\x79\x70\x2e\x40\x82\x07\xe3\x8a\xdb\x4d\x11\xa6\xe8\xa7\xa3\x5e\xbf\x98\xf4\xcf\x04\x1c\x79\x7c\x67\x96\x8a\x03\xa6\xe2\x07\xb8\x1f\xd2\x66\xa8\x77\x7f\xf6\xc3\x30\x53\x8c\xd9\xb0\x74\xe0\xde\xcd\xaf\xdd\xae\x89\xca\xfc\x3f\x8f\x56\xed\x94\xaa\x5a\x8f\xb0\x88\x99\x32\x83\x11\xfd\x90\x93\x4a\xb7\xe5\x01\x35\x2d\x3c\xab\xca\x84\xe5\xcc\xe6\xfd\x49\x95\xf7\xdd\x04\xf3\x0a\x09\xcc\x16\x9e\x3f\x5f\xe0\xbd\xf9\x9f\x35\x1c\xcc\x0b\xed\x75\xea\xb2\x4c\x28\xc9\x96\xfb\xb4\x70\x65\xbe\x52\x99\x41\x3d\xac\x1a\xca\xc3\x9c\x7a\x8f\x58\xc7\xb7\x95\x2b\x5b\xbd\x2d\xbf\x8f\x44\x7f\xb3\xa2\xb0\x4c\xd2\x61\xd6\x3a\xbe\xaa\x50\xd8\x9b\x60\x20\x45\xdf\x24\xc4\x94\xe4\x47\x1e\xa8\xe9\xc4\x19\x75\xec\xf2\xf8\x70\xaf\x07\x2f\x73\x4f\x4a\x10\x00\xca\x96\xe3\x37\x70\x76\x7b\xb1\xb6\xe7\xf6\x3b\xf7\xfc\x96\x53\x0b\x9b\xec\x28\x66\xda\x47\x74\xc8\x72\x9b\x13\x2d\x6f\x07\xe4\x70\x69\xe6\x71\xa7\x76\x37\x48\xbb\x36\x23\xf3\xd8\x96\xd2\xb5\xfc\xf7\x63\xdf\x15\xf9\xf7\x4a\x3c\x23\xb3\x71\x64\x97\xa7\xb4\x25\xd0\x58\x0d\xd2\x6e\x42\x93\x40\x26\x32\xda\x46\x28\x50\x7e\x44\x47\x14\xc1\x0c\xa2\x7c\x13\x15\x9a\xdf\xcc\x0c\x47\xac\xeb\x54\x4a\x09\xb9\xa9\x2e\x07\xb8\xd0\x0e\x4d\x66\x1d\x96\xd7\x89\x56\x28\x90\x87\x52\xea\x98\x9e\x6e\x79\x67\x88\x53\x58\x2d\x7c\xa1\x91\x85\x65\x69\xab\xac\x13\x3e\x56\x1e\x10\x9b\x5a\xc7\xf8\x93\x86\x0e\xc5\x42\x3b\x4b\x4d\x97\x5b\xad\x38\xb8\xcf\x68\x95\xad\x33\xb5\xf5\xf6\xb4\x1a\xc0\xb7\x94\x5b\xf1\x99\x40\x8f\x4a\xfc\x89\xb8\x1a\x25\x85\xe9\xe1\x64\x73\x90\x10\xe5\x59\xe0\xb6\x73\x9c\xa6\xb9\x8d\xad\x59\x9e\x50\xab\x06\x1d\x42\xe9\x30\xd2\xdf\x89\xdf\xd5\xe3\x5a\xfe\xcb\x14\xa4\xe9\xe5\x25\xed\x38\x89\xe4\x8b\x5a\xee\x36\x37\xc7\xf4\x77\xb6\xe8\x6c\xb2\xcf\xf0\x7d\xbb\x22\x5a\x5e\x6e\x79\x52\xd0\x11\x95\x09\x1f\x69\x88\x61\x0b\xed\x74\x79\xd9\x6b\xcf\xf1\xfc\x7c\x3b\x76\x52\xf4\x44\x80\x02\x66\x35\x78\xfc\x44\x9c\xc5\xf7\x9b\x06\x56\xdf\x1c\xa5\x0e\xf9\x8f\x65\xfb\x53\xac\x54\xbe\x50\x77\x7e\x98\xd9\xc2\x26\xdd\x09\x15\x1d\xd9\x96\x5d\xd6\x5a\xcb\xd9\xc6\xd7\xef\xd0\xc1\xe9\xf9\xf6\x52\x9a\x95\x91\x7d\xc2\x9f\x80\xd8\xc5\xac\x14\xa8\xc8\x45\xdf\x53\xac\x8b\x61\x96\xe6\x43\x9b\x45\x05\x90\x32\x62\xc8\x52\xfe\x63\x71\x6a\xf1\x75\x7b\xb9\xd6\x79\x52\xbd\x30\x7b\xc0\x59\xf7\xb6\xfc\x6b\xd5\x84\x88\xbb\x43\x3a\x64\x54\x69\x3b\xeb\xe1\x4d\x07\xc5\xd5\xeb\xad\xb1\xc2\x31\x1e\xab\x20\xfc\xfa\x4b\x29\x56\x89\xe3\xe6\xbb\x86\xcb\x69\x05\xd3\x4a\x6c\x68\xf3\xdc\x64\xeb\x53\x4a\xea\xe4\x24\x42\x2a\xf3\x41\x54\x2b\x73\xa2\x43\x67\x84\x63\x28\xee\xf3\xd0\x19\x0f\x35\xa6\x25\x3a\xa1\x84\x8b\xcf\xa3\x32\x67\xe2\x2c\xa5\x40\x32\x82\xdb\xde\xb6\x74\xe3\x71\xd0\x06\x4c\x3c\xe1\xd9\xca\xc0\x01\xbb\x46\x6c\xf9\xac\x01\x59\xbe\x3e\xfe\xf9\xcf\x7c\x9b\x38\x1a\x46\x49\xda\x52\xe7\x0f\x94\x73\x24\xc3\x16\x42\x9f\x90\xea\x53\x26\xf4\xe1\x61\x23\xc2\xf0\xeb\x06\x84\xdd\xb3\xed\xa5\x51\xb7\xbb\xde\x52\x7e\x85\x28\xbd\x64\xf0\xd4\x80\x6f\xcd\xd2\x70\xc5\x29\x3b\x88\x5a\x0d\xf2\x23\x91\x2e\xa9\xaf\xd0\x85\xb6\xc9\xfb\x66\x60\xc1\xab\x73\x4c\xeb\xc5\x69\x17\x9a\x1f\x53\x27\xc1\x37\x47\x36\xd7\x50\xed\xe3\x8a\x68\x79\x5c\xa1\xfe\x06\xe1\x8a\x4d\x12\xa3\x63\x22\x6b\x45\xf2\x85\xd2\x49\x4f\x87\x43\x9b\xf4\x6d\x34\x80\x5b\xe9\x7e\xce\xbe\xf9\x41\xf0\x85\xd2\x9d\xed\xaf\x2f\x65\x11\x10\xe7\x6c\x8a\xa5\x6c\x39\x58\xb6\x8f\xc5\xfe\x14\x11\x62\x2d\x8a\xe3\x2f\xa8\x48\xfe\x08\x59\x93\x08\xa6\xb2\xfc\xbd\x48\xa4\x61\xa8\x88\x93\xf8\x2a\x76\x87\xcc\xdb\x95\x1c\xda\x75\xda\x5d\x68\x98\x3c\x81\x26\x09\x46\x01\xf7\x95\x58\x49\x6b\x43\xc3\xb9\x5e\x0d\x90\x55\xb9\x96\xe5\xf3\xa2\xc1\x7a\x77\xec\x47\x83\x3b\x3a\x14\xb9\xc5\xed\xb0\x3c\x16\xf1\x1d\x4f\x22\x55\x56\x5e\x36\x42\x7f\xdf\x42\xf2\x4e\xab\xf7\xab\x4f\x10\x09\x1f\x63\x74\x3e\x7f\xb1\xa7\xae\x8d\x95\x67\xc8\xce\x0d\x8a\x14\x6e\xaa\xee\x72\xd3\x33\xa8\x5d\x70\xfa\xee\xed\xb8\xca\xd0\xf6\x4c\x26\x47\x1c\x12\xf1\x4d\x5d\x86\x6d\xea\x7d\x4f\xb3\x25\x13\xe3\xb8\xc2\xd0\x82\x5b\xa2\x7c\x51\x5b\x85\xfb\xe6\xdb\x6b\x99\x19\xfa\x46\xb1\x13\xfc\x76\x30\xc3\xba\x41\xe7\xcc\x0c\x50\xee\xd4\xca\x40\x29\x8c\xcc\x90\x5f\xd7\x0e\x15\x1a\x49\x2f\x9b\x28\x16\xf4\x10\x42\xf8\x95\x8a\x56\x82\x12\xea\x38\xef\xf0\xa1\xcb\xd6\xc6\x7b\xca\x8f\x41\x38\x7c\xbc\xe3\x33\x85\x7b\x63\x85\xc8\xd0\xa2\xe4\xec\xf4\x05\x2c\x2b\x80\xa3\x9c\xbe\x22\x66\x09\xdf\x93\x9e\x8a\xf4\x69\x94\x5d\x70\x9c\x7e\x73\x64\x93\xa2\x45\xe5\x9b\xd3\x2c\x2b\xb7\x87\x54\xe3\x5e\xe1\x63\x98\x46\x49\xf1\x60\xf9\xa5\x1c\x32\xcb\xcf\xe6\xef\x62\xb4\x23\x3b\x82\x7e\xb9\x38\x4a\x79\x10\xde\x51\x3a\x5b\xd0\xb8\xdc\xb5\x51\x26\xce\x9c\x59\xaa\x94\xe4\x2f\x69\xa4\x28\xe3\xb9\x0a\x8d\xad\x42\x5e\x79\x42\x9b\x37\x2d\xa7\xc4\x1a\xf7\x7d\x6f\xc8\xf4\xf0\xeb\x5a\x73\x70\x7e\xbe\x4d\x91\x92\xde\x10\x1f\x75\x52\x11\x4a\x4e\x36\x19\x76\x24\xa9\x3b\x16\x80\xe0\x63\xbc\x22\x82\xfb\x6d\x0e\x81\x28\xe8\x76\x76\xea\x21\x70\xb6\xfd\xc5\xaf\xfe\xea\xc2\x57\xbf\x32\xbf\x57\x89\xb9\xb0\x0f\xbe\xa2\x4d\x39\xf0\xec\xd8\x63\xf5\xe1\x6d\x82\x30\xfe\x36\x21\x61\x91\x6b\xe3\x8c\x47\x48\xd8\xb3\xa1\xba\x8f\xc7\xb1\x73\xc5\x38\x86\x1e\xa8\x68\xa2\x35\x94\x25\x3d\x9b\xd8\xcc\x8b\xcb\x72\xcf\x3e\x50\x8a\xd9\x27\xb6\xa1\xef\x0d\x6e\x9d\x0b\x6c\xde\x4f\xbe\xc9\x49\x66\x68\xb2\x22\x0a\xa3\xa1\x61\x02\x0e\xeb\xde\x55\x34\xf0\xea\x83\x9d\x17\xda\x45\x16\x8d\x06\x43\x37\xc3\x74\xd2\x68\xde\xe2\xb7\xde\x66\x9d\x3d\x40\x4c\x69\xca\x69\x5c\x42\x8a\xa9\x16\xbf\xae\x6d\x59\xc2\xef\x86\x7d\x5b\x88\xf6\x37\xaa\xe9\x37\xc7\xca\x28\x84\x3a\xe9\x5b\x87\x54\xaf\x6f\x90\xa6\xe5\xc9\x59\xc6\x51\x94\x57\x3f\x0a\x94\x37\xed\x8f\xc6\xbe\xef\xb6\x46\xc2\x8a\xbd\x7e\x3a\xca\x59\x22\x41\x46\x18\x0a\x34\x7a\x52\x69\x24\xdc\xa7\x2d\x80\x80\x7e\xa5\x09\x71\x66\x93\xa8\x37\x30\x6a\x8e\x7d\x4d\xcd\xb1\xaf\x29\x69\xf2\xa5\xd8\x1a\x1a\x02\x7b\x42\xd6\x39\x45\x02\x39\x37\xf6\x05\x98\x49\xf2\x35\x9b\x4d\x2a\x28\xc7\x26\x1d\x3f\x48\x21\x2f\x6b\x58\xc7\x26\xc5\x72\xfe\x1f\x4d\x9e\x64\xa6\xfb\xd2\x88\x25\xe4\x91\xe2\x5c\x55\x94\xf8\xab\xdb\x7d\x07\x9e\x5f\x68\x7f\xf9\xcb\xb8\xf3\x22\x97\x44\x51\x0d\x5d\x2f\x8e\x96\x2c\xf7\x5d\x5b\x27\xcf\x93\x08\x54\x99\xc7\x86\xa2\x5d\x2a\xd2\xfd\xaa\xf5\x7f\x56\xf1\x57\xc9\x46\x88\x80\xa3\xdc\xd6\x41\x5c\xdd\xd3\x51\x33\xc1\x3f\x54\x18\x89\xf3\x9a\x05\xbf\xb3\xc9\xec\xa2\x58\x1f\x52\x7b\xc7\xe7\x36\x57\x15\x97\xf1\xaa\x02\xad\xc6\x51\x11\xf5\xe8\xe8\x9a\xf0\x4c\xdb\xdb\xda\x71\xe4\x9e\x9a\x4a\xd5\xe1\x33\xe5\xae\xe8\x46\xaf\xbc\xb2\xee\xc6\xb6\x0e\xed\xe1\xe1\x83\x14\x2d\x64\x6b\x56\x9c\x8c\x6d\xfe\x04\xdd\x21\xc9\xee\xbd\xd4\xe7\x79\xb2\xbd\xc0\x9d\xe0\x99\x21\xee\xf8\x26\x8e\x03\x41\x9b\xab\xce\xd3\x89\x40\x59\xb5\x3c\xd8\xd1\xf4\xe3\x53\xe8\x07\x3a\x91\xf0\xe7\xdd\x08\x6f\x0b\x4f\x45\x4a\x0d\xba\xb3\xa8\xa8\x90\xa7\xb3\x79\x40\xc7\x63\x6f\x26\x37\x94\x38\xf1\x1e\xa5\xfe\xf3\x96\xf2\xfe\xbc\x89\x83\x02\x27\xdc\x95\x5a\x3e\xbd\x4d\x72\x96\xd7\x89\x33\x72\xf4\x04\x9b\x73\x0d\x47\xc5\x42\x3b\x33\x7c\x54\x70\x03\x30\xa8\xb6\x03\x1b\x98\xdf\xa6\xdb\x25\xa5\x6b\xfe\x24\x11\xb1\x53\xd3\xf2\x7f\x13\x7c\xde\x75\x32\xd3\x57\xd2\xc4\x76\xed\x30\xb6\xc2\x1c\xdb\x3a\x16\xb4\x7e\xe5\xf9\xad\x63\xb5\x71\xdb\xbe\xf9\xb6\xf9\x52\x6b\xe7\x97\x9c\x18\x18\x7d\x2f\xbe\xd0\x53\x74\x33\x64\xff\x64\xb4\xa3\xce\x28\xef\xa5\x33\x75\xe5\xec\xd9\x03\xed\xd4\x86\x4c\xff\xab\xb0\x4d\x3e\x4b\x1b\xbe\x5c\x89\x6b\x36\x8e\xe9\x33\x90\xe3\xbc\xa9\xda\x23\x6f\x8e\x3f\x27\xb3\xce\x6c\xbd\xe8\x67\xe9\x30\x8d\x6c\x11\x25\x88\xe4\x22\x75\xe2\x1b\xe7\x67\xd5\x48\x68\x10\x25\x69\x19\xc0\x09\x51\xc2\x16\xc8\x78\xbe\x4e\x8e\xcd\x29\x59\xc2\x96\x9e\x45\x83\xf4\x8c\x6c\x47\x8d\x82\xf4\x74\x7b\xc9\xc6\xbd\x68\x34\x50\xc2\x95\x3c\x7a\xe4\x8b\x8d\x06\xbb\xcb\xee\x68\xb0\x44\x1b\x9b\x27\x66\xf4\x79\x32\x3d\xab\x31\x81\x67\xda\x79\x6c\xca\xaa\x44\xb2\x3f\x14\x22\xef\x6c\x37\xc7\x9d\xe5\x1d\x7e\x4d\x4d\x6f\x61\xfd\xbb\x47\x79\x97\xb6\x36\xd4\xd0\x45\x8b\xb6\xc3\x42\x1d\x59\xfa\x47\x63\x95\x7f\x33\x3f\x49\xb9\x37\xcb\x44\xef\xf6\x58\x43\x11\x1a\xc0\x7c\x51\x12\xc6\x23\x37\x22\x07\x16\x69\x17\x18\xcc\x7c\xd1\xd9\x1e\xfa\xc8\x41\x7f\x35\x8d\x57\x2d\xb8\xa7\x0c\xa9\xa3\xd3\x01\xa0\x94\xe3\x1a\xa2\x07\xfc\x28\x7e\xf8\x7d\xa7\xa2\xd4\xff\xff\x18\xfb\xd7\x20\x49\xae\xeb\x4e\x0c\x9f\xa9\xee\x1e\x00\x33\x83\xd7\x00\x24\xb5\xfa\xeb\xbf\x5b\xab\xa5\x17\xde\x10\x16\xd6\xca\x8e\x70\x84\x3e\x38\x6b\x7b\x9a\x04\x67\xd6\x6c\x4c\xf4\x8c\x30\x14\xc3\x1f\x70\x2b\xeb\x76\x55\xa2\xb3\x32\x8b\xf9\xe8\x9e\x46\xf8\x83\xc3\xde\x0f\x1b\x0e\x87\xed\xb0\xbd\xde\x70\x30\x56\x1b\x5e\xc9\xd6\x6a\x1d\x92\x97\x7a\x58\x0f\x4a\x5b\x25\x82\xa4\x48\x8a\x24\xde\x6f\x02\x98\xc1\xbc\xdf\xef\xf7\x4c\xc3\x91\xe7\x77\xce\xbd\x27\xbb\x12\x0a\x7f\x41\x64\x62\xba\xaa\x32\xef\xe3\xdc\xf3\xf8\x9d\xdf\x2f\x1d\x71\x21\x1a\x41\x27\xe3\xe0\xb4\x17\x84\xa8\x81\xcd\x12\xce\xd7\x13\x8a\xd7\x2f\x1f\x65\x51\xb2\xc2\xa1\x00\x7a\x84\x7e\x42\x87\x1c\x5f\xab\x0c\x69\x75\x2c\x45\xa1\x9d\xf3\xf4\xdf\xb7\xe1\x2a\x89\xee\x95\xf7\xb9\x21\xe1\xe1\x3a\x3a\xf6\x08\x54\xf1\xf6\x54\x47\xf6\xee\xdd\x6d\x9b\xf4\xe4\x34\x11\x85\x2a\x7a\x0b\x47\x0a\x56\x4d\x04\x0a\x41\xac\xe7\xcc\x12\x9a\x9f\x59\x76\x4c\xcb\x22\x8f\x7a\x76\xce\x27\x8a\x1f\xe8\x78\xe6\xa4\x57\xb5\xa2\x04\x08\x4f\x24\x57\xb1\x29\x7b\x23\xb9\x47\x2a\x4d\x0e\x6d\xd2\x52\xfc\xe8\x5b\x3a\x95\x9f\xc1\xd7\x4d\x2d\x7b\xdd\xf4\xa5\x6a\x8b\xe3\xc5\x10\x11\x1c\xd6\x92\x0f\x87\x15\x3f\x39\x55\x16\x73\x12\x00\x54\xa8\x24\x60\x5b\xf8\x5a\x15\x30\xed\xa1\x91\x49\x7a\x28\xdf\xb0\xca\xbd\x8e\x36\x2f\x28\x95\x98\xab\x81\x8f\x95\x3f\x41\x1a\x98\x6f\x54\x49\x8d\x35\xf2\x85\xb7\x46\x69\x33\x97\xd9\x6a\xb4\x9a\x42\x89\xe2\x59\xd7\xfe\xa9\x5a\x41\x9b\xc8\xb4\xf2\xf5\xe1\xa8\x48\x87\x9c\xe5\xc0\xb7\x9e\x41\x56\x89\x6f\x5c\x43\x6b\x92\x26\xb9\x4d\x72\x3b\xeb\x57\xea\x09\xf8\x2f\xd2\x44\xe4\xdb\xbf\xd1\xf3\x07\xeb\xf1\x03\x17\xf8\x75\x4d\xbc\x82\x22\x0a\x1b\x85\xc0\x97\x86\xb4\x33\x67\x42\xd3\xb3\xc3\x28\xa4\x75\x2e\xa4\x65\x8a\x97\xeb\x84\xb2\xa1\x6b\x83\x34\x45\xa4\x5b\x3d\xb3\x83\x9e\xba\x94\xe0\x39\x0d\x1b\xb1\x26\x2e\x06\x98\x35\xc4\xf4\x28\xc0\xf0\x75\xe0\x53\xea\x83\xa8\x3f\x88\xd7\x67\x14\xc3\x35\x28\x08\xe1\xd8\xcd\x4e\x94\x4e\xfb\x94\x63\x7e\xe0\xb9\xf6\x28\x5d\xb5\x59\x01\xed\x0b\x41\xaf\x68\x54\xcb\x2e\xc5\xeb\x9a\x8f\xac\xa3\x48\xc7\xfa\x7f\x83\x36\x24\x5f\x6b\x06\x67\x9b\xf5\xa5\x59\x09\x91\xe9\x49\xc5\xee\x7e\x45\x95\x29\x37\x5c\xcf\x43\xe5\x0a\x24\xdb\x7d\x25\xe2\x12\xb9\x3f\xcc\x66\x34\xf6\xe7\xc3\x75\xb8\x66\xf0\x5d\x7e\x11\x75\x6a\x95\x7c\x17\x7a\x94\x8d\xb1\x57\x2d\x43\xbc\x8b\x51\xde\xd0\x00\x89\x8f\x89\xee\x44\xd2\xfd\x4d\xf0\x90\xc2\x24\x2b\x42\xa2\x09\x63\xa1\x49\x28\xa6\xad\xf6\xde\xbd\xed\xcc\x2e\x13\x81\xb5\x6e\x19\x03\x81\x35\x5f\x4f\x1d\xdc\x07\x9e\x6b\x67\x36\x36\x87\xb0\xb4\xdd\x27\x9e\x9f\x77\x9f\xf0\xe6\xd2\xe4\x95\xa3\x6c\x14\x0e\xe5\x37\xf5\x19\xfb\x9b\x53\xb1\xc9\xc1\xa5\xf9\x36\xa1\xc4\x5a\xad\x2f\x7d\x8d\x73\x14\x27\x69\xde\xf8\xda\xe5\x59\x81\x4e\x45\x75\x45\xd8\xbc\xe8\x89\x84\xce\x6b\x9a\x28\x61\xb1\x6d\x13\x64\xb9\xdd\xf1\x7f\x52\xc9\x80\xdd\x52\x3a\x00\x67\xa6\x82\xbc\xaf\x2e\xb4\x47\x69\x5e\x8c\xa8\x76\xef\x14\x44\xcf\xd3\xb3\xf1\xb5\xd7\x69\x8a\x12\x4a\x76\xc8\x61\x88\x8d\xf0\x81\xda\x14\x1f\x34\xf6\x72\x8d\x62\x53\x44\x49\x39\x6c\x29\xd1\xa8\x0b\x0a\xca\x72\x41\xb1\xfd\x80\xa6\x1f\x92\x17\x0e\x71\x81\xa6\x2c\xbc\xda\xb7\x31\xd2\x12\xa8\x4d\xe5\x99\x9e\xdb\x4f\x6d\x6a\x09\x57\x6c\xe4\x64\x57\xa7\xbc\x5b\xed\xdf\x28\xc9\x51\x73\xed\x56\xc0\xe4\xf2\xb5\x9a\xee\xcc\x8e\x4c\x94\x31\x80\x45\x40\xd1\xd5\x08\x6c\x20\x9d\x22\xc4\x78\x8f\x68\x33\x93\xdb\x07\xf5\x41\xa9\x08\xbb\xbe\x87\x09\xc5\xef\x5c\x09\x94\xfe\xc6\x75\xce\x96\x08\xf7\x68\xf5\xe5\xd8\x63\xff\x93\x22\xda\x3f\x1f\xe8\x8e\x64\x6f\x2e\x6d\x5e\x50\x89\x13\x91\xcb\xfb\x3a\x83\x7b\x6f\xec\x51\xff\x3f\xd3\xb5\x1b\x24\x5f\xc9\xa9\xf8\x7b\x9f\xeb\x50\x74\x02\x59\x90\x5f\xe8\xa8\xb6\xf7\xd6\xc4\xbb\x10\x5b\xa9\x8f\x07\xc7\xf4\xdf\x9a\x50\x10\x84\xbc\xcf\x96\x29\x3f\xa8\x72\x13\xb3\xf5\x44\x8a\x85\xf8\x79\xe0\x9b\xf9\xfa\x33\x3b\x7c\xd6\x84\x81\x8f\x8b\x65\xf5\xca\xd9\x66\x4f\xe3\x57\xdb\xa6\x8b\x76\x17\xc1\x55\x6d\x25\x4f\x90\xaf\xa7\xfc\xd7\x3d\x8b\xed\x81\x89\x97\x77\xd0\x2b\x4a\xf7\x43\xe5\xfb\x48\xa4\x48\x56\x03\xf0\x05\x30\x82\x8a\xcb\x54\x3d\x3b\x72\x49\xb3\xf0\x01\x5d\x3d\x6c\xdf\xc2\x01\xfe\x97\x87\xa9\x92\x23\x34\x72\xaa\xa4\x77\x5e\x51\xab\xb0\x3b\x27\xe0\xe7\xcf\x79\x02\xab\x10\xaa\x35\xf9\x80\xab\x02\x4e\x0d\xcd\x1f\x22\x0d\xa1\xd5\xfe\xb6\x29\x0a\xca\x69\xcc\xa8\x76\x8b\xa3\xaa\x45\xe6\x23\xdd\xdb\x73\x59\x55\x1f\x43\x93\x98\x5e\x64\x92\x07\x15\x39\xc8\x55\x32\xfc\x98\x7d\x24\x76\xd9\x01\x09\x14\x71\x2c\x36\x81\x77\x4d\x1c\x5c\xf8\x26\x85\xa0\x70\x53\x58\x98\x91\xbf\xd6\x15\x66\xa8\xb1\x35\x0a\x89\xdb\xa3\xfa\x20\x67\x7d\x31\xcf\x92\x02\x9e\x52\x48\x5f\x68\x2f\xcd\xef\x6f\xf9\x6a\xde\x79\x7a\x3f\xbe\x6e\x42\x76\x64\x69\xaf\x6f\xb3\xbc\x26\x18\x71\x0c\xfb\x0f\xce\xd7\x69\x0d\xa3\xb9\x39\xa5\x4c\x22\xeb\xb1\x9a\x13\x93\xac\xcf\xba\x5a\x47\xfa\xb8\xa2\x35\xbd\xaf\xb5\xf7\x6e\x8f\x55\xdd\xe5\x82\x16\x8f\xc8\x32\x9b\x57\xc6\xb3\xf5\x55\x11\x0f\x7d\x35\x50\x4a\xa2\xaf\x4e\x0b\xd1\x2f\xb4\xd3\x51\x65\x9a\x39\x41\x88\x65\x84\x7a\x2b\x5f\x3b\x44\x4e\x31\xc8\xa2\x55\xd8\x70\xd9\x26\xb4\xbc\x65\x03\xf9\x62\xcc\x8b\x69\x94\x3c\x50\x4f\x65\x54\xd3\x88\x25\x7e\x17\xc6\x85\xff\x45\x69\x6b\x73\x43\x3c\xe7\x78\x31\x4f\x92\xf0\xf5\x78\xc6\xf3\xca\x2f\x4b\xe1\xaa\x00\xb4\xee\xc4\x16\x9c\x78\xd0\x74\x51\x61\x69\xbe\x1d\x5b\x9b\xad\xcf\xf8\x94\xdf\x0f\xe9\x09\x10\xaa\x11\xaf\xdc\xc6\xe1\xa6\xac\xf5\xca\xc0\xb0\xc6\x18\xef\x66\x52\xdc\x93\x9d\xbd\xf9\x34\x5e\x9a\x6f\xaf\x19\x7f\x8c\xc1\x4b\xbc\x37\x56\x1a\x3b\xf7\x1a\x8e\xd9\x7d\x55\x40\x65\x0d\x6a\x5f\x28\xde\xf0\x06\x70\x7a\x3b\xae\x58\x7c\xa4\xa1\xf2\xbd\xbf\x3d\x4a\x89\xc9\xc6\x17\xc8\x71\xcc\xf2\xb5\xe7\xe8\x8a\x86\x65\x6c\x0a\xd9\xc9\x18\xfe\x9b\x2a\x93\xc5\xa9\x3f\x44\x36\x27\xa6\x56\xcd\xc2\x81\x76\x37\x4e\xc3\x15\xd3\xb3\xf8\x06\xe4\x92\x8f\x2b\xf6\xb7\x3b\x34\x0f\x22\x63\xf9\x50\xd4\x1e\x65\x76\xf9\x1f\xb5\xd3\x5f\xa8\x76\x3d\xfd\xf9\xbb\x9f\xef\x28\x79\x99\xd7\x02\x4a\xe8\xa2\x2a\x71\x09\x12\x86\x18\x82\x9d\x14\x7d\xa1\xe3\x7b\x7b\x47\xd1\x75\x5c\x0d\xb4\xa2\xc7\x2f\x4c\x5a\xbf\xf6\x15\x07\x80\xf2\x89\xc3\xd1\x3f\x98\x78\x31\xc5\x0b\x94\xdf\xc5\x6b\x5d\xc3\xd0\xc2\x05\x39\x12\x28\x46\xa3\xd3\xc8\xbc\x31\x09\xb2\xe2\xa6\x67\x92\x0d\xa7\x7c\xff\xe5\x83\xbc\x09\x7f\x0f\x35\x3a\xc9\xe2\x55\xab\x15\xf5\xca\x93\xe3\x99\x83\x8e\xca\xff\x2c\x6c\x38\x86\xfb\x3e\x50\x53\xe0\x87\xbd\x3d\xae\x76\x2c\x1e\x7e\x07\x6d\x7b\xd8\xbf\xeb\x94\x08\x06\xb8\x74\x83\x02\x4c\x8c\xf4\x13\x38\x3f\xb0\xcc\x19\x72\x87\xd1\xba\x3a\xd5\xa8\x51\xad\x8b\xc4\xa6\xa3\xc1\x7a\x61\x99\x6a\x86\x33\xeb\xf5\x34\xbb\x82\x2b\xa7\x65\x56\x0c\x30\xb3\x4e\x88\xd4\x65\xb9\x2f\x6a\xb5\x90\x4f\xa7\xec\xd9\xd2\x7c\xbb\x67\x87\x69\x02\xa1\xa5\xbc\x55\x43\x81\xd2\x20\x0b\x3e\xd4\x4b\xa0\xf7\x6c\x56\x99\x69\x72\x2f\x11\xe5\xc1\xa5\x64\x31\x60\x95\x40\x39\xd2\xc8\x02\x66\xa9\x9b\x66\xd6\x87\x7b\x5c\xbe\x62\x02\x56\x78\x52\x97\x14\x19\xe3\x55\x07\x8a\x2d\xca\x61\x37\xb6\x39\x19\x04\x64\xbc\x8e\xe3\x29\xf1\xb2\xac\x13\x02\x87\xe7\x8e\xa3\xe9\xcb\x0b\x93\xf4\x4c\xd6\x8b\x5e\x62\x6e\x34\x9c\xcb\xac\xcc\x26\x82\x68\x2d\xa7\x64\x75\x4e\x55\xd9\x8b\xb4\x44\x61\x60\x49\x90\xf7\x28\xce\xf1\x75\x53\x56\x9f\xb0\x90\x88\xc8\x30\x5b\x37\x03\x35\x75\x37\x9d\xfb\xdc\x8b\x4c\x3f\x49\x89\x3b\xd0\xa7\xac\x5e\x57\x09\xc8\xd7\x6b\x59\xe9\xac\xcf\x74\x6b\x38\x3a\x99\x8a\x91\x6f\x54\x48\x3b\x8a\x46\x36\x8e\x12\x0b\x35\x0e\x71\x3b\x7c\xb3\xc3\xa7\x2a\x14\xbd\xc2\x0e\xa6\x24\x21\x68\x23\xe2\xc7\x7f\xe4\x06\xbd\x0f\x84\xd8\xac\xef\xfe\xbd\x8d\x3f\x64\xa4\xcd\xd8\x7b\x47\xff\x0c\x94\x76\x38\xe9\xb7\x4d\xfc\x22\x45\x57\xfb\x43\xd5\x56\xc3\xee\xba\x8d\x93\x0e\xd1\xf1\x39\x6c\x6e\xa7\x25\xe4\xcf\x92\x6b\x0a\xcf\xf2\xd6\xd8\xf7\x59\x31\x17\x16\xeb\xa8\x91\xab\x21\x90\x78\x85\x24\xba\xe0\xb2\x0f\x4c\x1a\xba\xae\x6a\x41\xef\x04\xaa\xac\xf9\xce\x54\xc1\x64\x69\xbe\x3d\x1a\x44\x71\x34\x1a\x45\x0c\x63\x46\xda\xee\x26\x3e\xc6\x37\x6e\x32\xc9\x49\x33\x8e\x5b\x1b\xe7\xe5\x69\xc5\x29\x7b\x3a\xd8\xa5\x44\x20\x28\xc1\xc6\x3c\x38\x8e\x4f\x42\x75\x31\x34\x1d\x85\xe9\xaa\x9c\x50\x48\xfa\xbd\xab\xd8\x16\xdf\x55\x7c\x86\x43\x53\x14\x03\xbb\xd6\xf2\x30\x9a\x63\xba\x8b\xfa\x98\xdf\xca\x71\xba\x16\x0e\x4c\x86\x47\xd6\x8a\x5b\x7c\xdd\xc4\xd6\x55\x79\x87\xae\xb0\xe9\x7a\xc8\x9c\x67\xfe\xb6\x73\x40\xf2\xf5\x61\x37\x8d\x6b\xb5\xa3\x33\xde\x5f\xfe\x15\xb4\xc7\x62\x96\xef\x8c\x55\x81\x63\x9a\x22\xf6\x69\x6e\xc5\xf1\x8a\x76\x30\x4a\x27\x55\x22\xfd\xa4\x22\x60\xa0\x86\x7c\xfe\x61\x94\xfc\xdf\x1c\xfb\x3a\x13\xf8\xd6\xf8\xff\xeb\xfe\xd0\x8d\xa6\x72\xf6\x72\x94\xe5\xc5\x9c\x6f\x80\x40\x97\xa7\x02\x9a\x2f\xb8\x39\xab\x16\x21\xce\xca\xc7\x3a\xb5\xa6\xca\xcd\xef\x43\xd8\x07\x13\xc7\xb6\x2f\x13\x8a\x33\xe3\x6d\xa5\x53\xff\xb6\x72\x14\xd3\xb2\xc8\xa2\xfe\xa0\x68\x29\x33\x09\x38\x86\x10\x6c\xf9\x77\xa7\xf2\xfb\x4e\xfa\x79\x40\x6b\xae\x68\x1e\xe6\x8f\x79\xbf\x63\xdf\xdc\x0e\xbc\x74\xd3\xdb\xf4\x5e\x98\x8e\x39\x1c\xf5\x8e\x06\xd5\x1d\xe8\x68\x2c\x13\x39\x56\x9f\xa3\xbb\xa1\x99\x25\x8f\x61\x6b\xa2\xe1\xe8\xc2\xb8\xf5\xa5\xaf\x89\x67\xd2\x24\x0f\x4a\xe2\x23\xb3\x8a\x7c\x85\x41\xab\xf4\x24\x4f\x63\x91\xd4\x4e\x32\xd4\x70\xb6\x4c\x7c\xbc\x92\x94\xc3\x2e\xd1\x9d\x56\x6f\x80\xbc\xc3\x59\x95\x83\x38\x3b\x95\x0f\xda\xbd\x1b\xdb\xd5\x16\xa0\xdc\x75\x6c\xdf\xcf\xcf\x73\x6c\x04\xb9\x2c\xc0\x69\xee\x2a\x9a\xdb\x30\x8b\x86\x51\x62\x62\xf4\x43\xb0\x84\x15\x8d\x1c\xd0\x05\x77\x6b\xfe\xec\x93\x0a\xab\x55\x97\x31\x60\x47\xe2\x38\x8c\x15\xdf\x34\xfa\x02\xf9\x7a\xbc\x5a\x45\x09\x19\xd4\x2c\x99\x59\x08\x73\x2a\x34\x43\x8f\x6a\xe8\x6c\x56\xbc\x44\x2f\x85\xaa\xdb\x1d\x2c\x70\x69\x7e\xa1\x11\x94\x65\xd9\xc0\xe8\xde\x8d\xd0\x56\x03\x83\xfb\xa1\xee\xd8\xfc\xd0\x99\x0d\x22\xf9\x1b\xda\x04\x92\xa7\xf0\x2c\x6e\x93\xe7\x2a\x62\x86\xbe\x5b\xea\xa8\x02\x9d\xc6\xd6\xf4\xe6\xbc\xfb\xbe\x9d\xc2\x62\x21\x91\xa5\xa5\x0d\x07\xfd\x03\x1a\x50\x80\x32\xb6\x4d\xbc\x40\xf8\x79\x54\x14\x38\x5d\xdd\xad\x4e\xf5\x22\xaa\x3c\x91\x87\x68\x48\x81\x34\x3a\x1d\xb4\x9e\x9f\xdf\xb8\x14\x78\xa8\xc5\xd6\x89\x5a\x9c\xdf\x05\x70\x4b\xb4\x00\xc8\x15\x13\xbc\x25\xcd\x05\x7f\x0b\x8d\xd4\xc6\x29\x42\xeb\x6c\x5c\x52\x1c\xca\xb1\x65\xea\x77\xa7\x73\xe3\x7a\x88\x2e\xba\xa4\x5d\x3e\xb2\x6b\xce\x56\x71\x57\x7a\xe0\x57\xc9\xd9\xa9\xc3\xc6\x11\x99\x24\xe2\x39\x60\xc3\x9d\xd3\x0c\xca\xe7\x54\x23\x3a\x25\x0f\x77\xd2\x46\x63\xe5\xc5\x40\xe9\x91\x32\x3b\x87\xee\xf7\xa8\x69\x1f\x39\xb8\x53\xe5\xc4\xe3\x08\x9e\xc5\x28\x39\x9a\xac\xa5\x79\xaf\xf5\xb0\x47\xe4\x99\x8f\x04\x9e\x2b\xf0\xbd\x80\x7c\x65\x07\xb6\x74\x0e\xe0\xc7\xca\x37\x2d\xac\xe9\x9b\x84\xca\x48\x4e\x24\xe0\xf9\x79\x1e\xfe\xc9\x58\x0b\x06\xa8\xcd\xcd\x40\x52\x6e\x37\xd2\x9d\x59\x03\xe0\x77\xbb\x44\x6e\x5c\xf9\xf0\xb2\x75\xaa\x67\x94\x3d\xa5\x21\x38\x2f\xf5\x0c\x39\x9a\x42\x4b\x44\xbf\xa2\xd0\xf1\x5f\x67\x2b\xf9\x76\xa0\x4c\x66\x75\x86\xfd\x92\x7f\x03\xe6\xb4\x56\xf9\x01\x97\x2c\x50\x72\x4d\x9a\x99\x8b\xb4\xd3\x80\xf9\x47\x09\x05\x71\xc7\x27\x64\x3e\xd1\x31\x70\xc5\x6d\xa7\xae\x89\x4d\x12\x3a\xa0\x02\xe6\x1a\x62\xaa\x08\xc1\x91\x68\xc7\x81\xf5\x63\x75\x2c\xe4\x45\x96\x26\xa4\x8a\xbb\x34\xcf\xe6\x16\xda\x2a\x7c\x3d\xd5\x8a\xfe\x1f\xb6\x47\xd5\x5f\xef\x59\xf4\xd2\x5b\x5f\x3e\x28\xd7\x1a\x0d\x63\xb3\x15\x1b\xdb\xf5\x19\xd5\x76\x0b\xa8\x01\xa0\x6a\x2c\xb2\x2f\xda\x1b\x0d\xfd\xbd\x79\x61\xb2\x15\x95\x97\xd9\x36\xf1\x79\x99\x6d\x1d\xef\xaa\xc4\xd6\xac\xba\x37\xe7\xa0\x2f\xf0\x7e\x0b\x44\x39\x60\x09\x7e\x16\x6c\x82\xc3\x2c\xcd\xb7\x0f\x3c\xb7\x9d\xb6\x33\x52\x68\xd7\x91\xe0\x00\xe2\xe9\x2e\xf6\x36\xaa\xa0\x00\x23\xd3\x12\xfe\xdd\xbf\xdd\xf1\x29\x5a\xb0\x02\xd6\xc8\x0b\x35\xcf\x2e\xce\x4c\xae\x6d\xe0\x6b\x77\x4e\x7c\x50\x7f\x5a\x63\xeb\xe2\x72\x38\xb4\x05\x1f\x42\xf2\xef\x34\x4c\x7c\xa3\xca\x43\xa3\x2c\xca\xd3\x04\xc5\x5c\xec\xd1\xf7\xc6\x6a\xc3\xbe\x17\x28\x59\x02\x6e\xb0\x13\xba\x89\xa9\x78\x6a\xa1\xbd\x1c\x57\xbe\x41\x4e\x99\x1e\x4c\xc9\x79\x7d\xac\x9c\x57\x40\xe0\x9e\x5d\x8d\x42\x4b\x5c\xb7\xa2\x47\x78\x0a\x91\x3c\xd3\x9c\xe8\x88\xe8\xaf\x83\xd6\x53\x4f\xd5\x30\xb9\x8e\xf3\xd4\x8b\x3a\x1d\x9f\xe2\xd9\x59\x9a\x6f\xdb\x43\xa6\xdf\xd7\x48\x39\xcd\x03\x2a\xee\x4b\xa3\x16\x6b\x7f\x50\xac\xd9\xea\xbf\xb3\xaa\xa3\x02\x9f\x83\x71\x01\xc4\x0f\xf9\xc0\x13\x9a\x73\xfb\xd8\xf8\x0b\x5a\x3e\x30\x2f\xa2\xa2\x04\xf4\x15\x9e\xaa\x23\x66\xf7\x9a\xe2\x0d\xdd\x23\xfb\xdb\xa6\x97\x8e\x40\x70\x09\x77\xe4\x8a\xaa\xa6\x1d\xd5\xb4\x20\x87\x9b\x62\xdb\x9e\x1d\xd9\x44\xa0\xb9\x62\xb5\x95\xae\xe3\xb9\x29\xc8\x0d\xf9\x82\x3d\x12\x99\x89\x96\x23\x19\x30\x1c\x49\x28\x2f\xf2\xb5\x6f\x0c\xb5\xa1\x8d\x56\xed\xac\x67\xe8\xfa\x14\x1e\x17\xdc\x8e\xed\x8a\x5f\xf6\x71\xe8\x6f\x49\xde\x6b\xb3\x1f\xba\x70\xa0\x5d\x26\x99\x8d\xfd\x44\x69\x85\x55\xbe\x0e\x7e\xf1\x33\xce\xaa\xea\x08\x0e\xb3\xa8\xeb\x0e\x3a\x26\x86\x0c\x54\xa9\xf5\x75\x57\x8d\x30\x19\xab\x26\x88\x52\x9b\xc7\xf9\x7e\x5c\x13\xaa\x5c\x86\x1c\x9d\x8f\xe8\xd8\x68\x8b\x80\xa3\x84\x17\x71\x54\x14\xb1\xdd\xe9\x05\x36\x66\x08\x00\xb5\x71\x09\x56\x00\xd6\xf7\xba\xcf\x22\xec\xf9\x22\x7a\xb4\xf0\xc7\xef\x2a\xe8\x20\x9b\x74\xe4\x1a\xd8\xb6\x89\xe2\x45\xf5\x18\x74\xf6\xfd\xf7\x3f\x4f\x2b\x0f\x43\xf9\x79\x1c\x96\xd8\x02\x9f\x6a\xad\x8b\x33\x63\x3f\x4d\x45\x66\x0d\x96\x92\x80\x2d\xea\xa4\xb8\x8b\x9e\x55\x4c\xc7\xf9\x43\x9b\x30\x13\x0a\x66\xfe\x3a\xb2\x23\xf8\x53\x70\x8d\xe0\x51\x67\x26\xaa\x17\xf0\xa2\x62\xa3\xe0\x1e\x4d\x07\x2b\xf3\x1e\xe0\x65\xf2\x71\x39\x30\x08\x54\xd1\xf5\x2a\x96\x10\x0c\xd0\xe5\xcf\x4c\x7b\x0f\xd2\xa1\x5d\x86\xbf\x2e\xf6\x9f\xa1\xec\x28\x8a\xfe\x4c\x33\xad\x60\xaf\x62\x90\x8e\xd4\xe5\x73\x40\x38\x20\x0c\xaa\xdf\x52\x5d\x4a\xdf\x02\x31\xea\x26\x7c\x85\x4a\x19\x73\xd3\x14\xdf\xa8\x53\x8b\xbb\xfa\x70\xf8\x62\x20\xd0\xf4\x89\xa5\x78\x89\x4c\x3a\x02\xdb\xfb\x95\x4f\xe1\x3d\xc9\x34\xeb\x45\x89\x11\xe3\x8d\x38\xef\xb1\x89\x8f\xf9\x1e\xeb\xa8\x5f\x31\x87\xa2\x61\xf4\x12\xcb\xd6\x33\x11\x1f\x3d\xbf\x90\xf2\x3d\x52\x7b\x22\x86\x46\x38\x7c\x8c\x2f\x01\x06\xba\xb1\x29\xed\xc6\x76\x48\x14\x1e\x8e\x66\xe2\xa0\xbf\x51\x75\x7a\x24\x44\xf8\xba\xb1\xdd\x34\xb3\xae\xec\x23\xb9\x57\xce\x4b\x0b\x48\x9e\xe6\x9d\x1b\x2c\xa6\xe4\x16\x28\x38\x8a\x53\xaa\xb9\x1a\x25\x7a\x75\x55\x89\x5e\x5d\x0d\xb4\x24\x4d\x2f\x42\x38\xd0\x52\x99\x38\x06\xbd\xcb\x6b\xab\x4a\x68\x66\xc3\x15\x45\xff\x0b\x5d\x2c\xbe\x6e\x64\xfd\x27\xb6\xbc\x1a\xb4\x99\xbb\x1d\xf8\x46\x0d\x78\x98\x86\xa9\xd1\xf5\x2e\xf4\x9c\x23\x07\x76\x44\xb3\x13\x37\x9e\x5b\xae\xff\x96\x6b\x50\x2c\xf1\x4b\x4f\x28\x72\xbf\x1e\xe7\x3f\x8c\x0e\x15\xf6\xa1\xca\x83\x62\x65\x5f\x72\x42\x9d\x52\x97\xf7\x2d\x2f\x50\x5a\x18\x14\x56\xef\x8e\x15\x1f\xe9\x59\x9d\xf6\xf8\xb1\x66\xe4\x44\x76\x1f\x5e\xe3\x47\xc8\x56\x23\x7e\x39\x55\xe7\x0b\x5a\x05\x5f\x10\xe7\x3a\x60\x22\xb8\x92\x28\x14\xd2\xaa\x3a\x7e\xaf\xee\xf1\x6e\x1e\x01\x82\x49\x0c\xa3\x24\xca\x43\x61\x10\x71\xec\x5f\x9e\x09\x4c\x15\x0a\xcb\x24\x4c\x87\x43\xa6\x2b\x42\x76\xf3\x7e\xe0\xd3\x9e\xf7\x9b\xd2\x47\x1a\x03\x8c\xb1\x82\xb6\x32\x5f\x2b\xa0\x75\xbf\x4c\x12\x4e\xbc\x0a\xf6\xb1\x9a\x14\xc1\x44\x4e\xa1\xcb\x16\xda\x89\x29\xa0\xfa\xed\x08\xec\x74\x05\xc8\x47\xc9\xdd\xb4\x27\x74\xb8\x42\x31\xda\x72\x74\xfc\xd3\xec\x89\xcf\xcf\x2f\xb4\x8b\x81\x60\x32\xa5\x21\xa1\xfa\x34\x5f\x07\x9f\xd5\x97\xd6\xb3\x71\x75\xb2\xaf\xb7\xaa\xc3\xc6\xd5\x95\xfd\x03\x2a\xde\x35\x93\xe7\xe5\x70\x04\xb1\xd7\x19\x2f\xdb\x72\x4b\xcb\xb6\xdc\x9a\xda\xef\x7b\x16\x49\x6c\x2a\x73\x07\xb8\x83\x6b\xb8\x74\xef\xf9\xe9\xf4\xd3\x73\xfb\xdb\xf6\xd0\x28\xcd\xcb\xcc\x6a\x2a\x97\x8b\x8a\xca\xe5\x62\xb0\x4b\x79\x8d\x74\x26\x67\x5c\x8e\x40\xf0\xf8\x81\x22\xcf\xf8\x60\xca\x93\x7a\xba\x9d\xa7\xeb\x5d\x09\x95\x05\xd5\xe1\xb3\xdc\x8d\x32\x46\x6b\x83\x28\x66\x95\x04\x29\x81\xf9\x2e\x9a\x93\x64\xbe\x91\x1b\xbb\xa3\xc4\x1b\xf2\x32\x2a\x72\x92\xf3\x61\x26\x11\x9a\xca\x1a\x5d\x93\x50\x8c\x28\x22\x88\xeb\x6a\x4f\x4f\x3b\x72\xfb\x96\xf6\x09\x63\x9e\x2a\xc0\x9c\xd7\x1a\xf7\xe7\x15\x58\x92\xba\x36\x62\x3b\xa7\xd1\xce\xcc\x0c\x24\x85\x28\x9f\x4d\x3a\xaf\x2c\xd2\xe5\x40\xb1\x8f\xcd\x4d\x1e\xf3\x3b\xdb\x0c\x6d\x66\x72\x74\x90\x22\x5a\xbd\xa6\xea\x7d\xd7\x14\x27\x4f\x65\xb3\xb2\xc4\xc4\x88\x26\x44\xb0\x8a\x7e\x1c\xed\xa6\x1b\x81\x87\xfe\xbc\x49\xd0\x2a\xa1\xe1\xf9\x7b\x9f\x59\xdb\x4e\x72\x4b\xfd\x4e\xb1\x6e\x78\xe5\x83\x57\xea\xcc\xd3\x53\x3e\x34\x49\xcf\x14\x50\xf8\xe3\x96\x3d\xea\x06\x01\x9f\xa7\xe4\x76\x7c\x18\xb4\xc6\x12\x96\x9e\x1a\xeb\x98\x62\x70\x3b\xe6\x5b\x4d\xd3\xbc\x28\x87\x96\xea\x0f\x48\xf6\xde\x55\x6d\x03\xbf\x07\x7f\xcf\x55\x83\xb4\x8b\x35\xa5\x90\xb8\xb4\xaf\x5a\xf9\x04\x39\xef\xb5\x54\x4b\x18\xd3\xc5\x49\x52\xb8\xa9\xad\xbc\xcc\xfa\xd2\xff\xcc\xbf\xc5\x05\x4d\xe0\x76\xbe\x83\x23\x16\xe9\x43\x44\xef\xf0\xbf\x98\xb2\x17\x31\xd5\xe5\xe9\x75\xbf\xd0\x36\xdd\x74\x95\x37\xa2\x4b\xa0\xed\x91\x5c\xd1\x45\xb5\xd6\x7b\x26\x8a\xd7\xc9\x49\xc0\xf9\xf1\x32\xb2\x66\x88\xdd\x3e\x19\xfb\x56\x8c\x4f\xe8\x28\xe2\x3f\x52\xa5\xa1\xbe\xc9\xd3\x58\xca\x19\xcc\x47\x3c\x56\x1c\x3d\xc7\xa6\xde\xfc\x85\x17\xda\x5d\xbb\x9c\x66\x96\xd2\x06\x7c\x06\x05\x4e\x5d\xe7\x9b\xa7\xc6\x4f\xd6\xa3\xf2\xca\xb8\x7c\xe9\x6b\xad\x9a\x4b\xdc\x72\x1c\xf8\x67\x02\x81\xbb\x0f\xac\xc9\x8a\x6a\x05\x44\x49\x9f\x97\x19\xf7\xdd\xd1\x66\xf1\x34\x5a\xbf\xa4\x58\xf2\x87\x23\x93\x50\x4f\x6d\x75\x20\xa2\xb6\x0a\x60\x0f\x5f\x37\x10\x3c\xee\x6b\x77\xcb\x08\xcc\x44\x98\x2e\x64\x33\x8f\x04\x2a\xb5\x79\xa4\xc1\x8f\x6a\x47\x09\x9a\xe5\xe0\x4e\x08\x7f\x4b\xcb\xb1\x80\xfc\xa9\x6e\x47\xbd\x32\xf6\x9b\x37\x21\xcf\x29\x26\xc5\x5b\x31\x06\xd5\xeb\xb9\xcc\xb2\x2a\x50\x3f\xaa\xf2\x4c\x04\x05\xa1\xa7\xc2\x39\x7e\x58\x71\x48\x1e\x6e\x7a\xc2\xdc\x8e\x4c\x26\x4c\xfe\xc2\x1a\xef\x53\x93\x67\x55\x49\x28\x8c\xa3\x61\x17\xb4\xd0\xcf\xd6\xd4\xa7\xa5\x69\xd5\x07\x0f\x2d\x04\x40\x48\xd1\xdd\x98\xc2\x3d\xbc\xf0\x42\x7b\xc5\xae\x3b\xc2\x07\xa7\xfb\xe5\x35\xc0\x1c\x9c\x6e\xcd\x9a\x8c\x3b\xc5\x90\xf1\xbd\x11\x28\x3b\x8d\x6d\x8b\xb0\xf8\x67\xaa\xf5\xc7\x14\x05\xf1\xc0\x30\x3d\x1f\xce\x8b\x13\x68\x94\x11\x54\x0e\x15\xfc\xf9\x06\x85\x79\x66\xd9\x0f\x3c\xb8\xf8\x23\x5d\xcc\x3c\x31\x65\xae\x16\x0e\xb4\x87\xb6\xc8\xb8\xf6\x2a\x28\x73\xfa\x08\xdf\x4c\xbd\xfa\xee\xdd\x6d\x93\x85\xa6\x27\x4d\xdd\xc2\xc9\x49\x6f\x28\x8c\x9e\x4e\x93\xdb\xda\x15\x9b\xf4\xf8\xfd\xf1\xac\x1f\x68\xb1\x06\xac\x25\x99\x2a\x45\xc0\x6c\x88\x22\x7d\xbf\x23\x38\xa8\xc6\x0c\xcb\xef\xb1\x8e\x57\x7b\x06\xa2\x13\x69\xac\x2b\x75\x64\x8f\x8f\x79\x5a\x53\x5d\x58\x7b\x16\xdb\xf9\xc8\x86\x11\x7b\x60\xf8\xf9\x93\x6a\xd5\x9c\x6c\x10\x61\x6e\xe7\xe5\xc8\x66\xab\x51\x9e\x82\xb3\x0f\xa1\xf8\x8f\x74\x5c\xfe\x23\xb0\xbd\xf0\x3b\x74\x9f\xe1\xcd\x86\x2a\x29\xfb\xb9\x7c\xe3\x12\x19\x20\xe7\x12\x2c\x96\x43\x60\x54\xef\x8e\xf5\x32\xd3\x51\xd8\xe1\x3b\x0e\x2a\x56\xb3\x04\xbe\x6d\x88\x55\x41\x45\x5b\xd1\x47\x57\xb9\x35\x79\x9a\xe4\x74\x7e\xa0\x5a\x71\x13\x55\x00\x09\xff\x3d\x0e\xe6\x7d\xb2\xbc\x02\xbf\xf2\x12\x1d\x03\x9b\x75\xa3\x30\xea\x59\x86\xc7\x63\x6e\xde\x56\xac\xc6\x6f\x8f\x95\xfc\x40\x9a\xf4\x84\x0e\xcd\xbb\xc3\xb3\x1d\xef\x26\xcf\x3a\x26\xa7\x2c\x0d\x57\x90\x37\xdc\xbb\xd7\x15\x94\x94\x3c\xcf\x09\x25\x9b\x18\x25\xab\x36\x2f\xd2\xec\xa1\x6a\xba\x37\x2e\xd1\x62\x57\xee\x86\x70\x2a\x9d\xe6\xde\x76\xfe\x27\x9a\x5c\x01\xb4\x72\x8a\xa4\xf2\x47\x85\xcc\xc8\x7b\xe2\xd7\x02\x45\x33\xf1\x66\x43\x53\xdd\xb3\xed\x1e\xd1\xe5\xf3\xe3\x8a\xe4\x99\xd6\x3f\x1b\x6f\x77\x2b\x39\x9e\xa1\x53\xc0\x91\xca\x38\xd4\xc1\x3d\xb2\x03\x9f\xd5\x64\x55\x05\x09\x83\xc8\x82\x9f\x04\xa9\xba\xfb\x81\xca\xe1\xdd\x77\x29\xa0\x30\x1d\xd8\x44\xec\x3a\x56\xff\x86\x06\x86\x6e\xa8\x6d\x15\x15\xf9\xa3\xf4\x9c\x00\xb2\x3f\x42\x79\x5c\x49\x0a\xaa\x80\xe9\xe9\x8e\x52\xf2\xaa\x4c\xb8\x3c\x26\xad\x34\x94\xae\xff\x7e\x87\x5e\x4c\xd1\x64\x4b\xdb\xe3\x1d\x4d\xc4\x4c\x08\x52\x91\xaa\x54\xd4\xed\x8f\x4e\xaa\xd7\x87\xc1\xb8\x3b\xf6\xab\xf2\xa2\xef\x80\x58\xfb\xb9\x89\xe2\x30\xbb\x5f\x1d\xb2\x1c\x71\x2d\x9b\x61\x14\x47\xbe\x71\x97\x39\x41\xf0\xda\x42\x10\xe2\x0b\x30\x09\xc9\xd5\xa1\xed\x08\x09\x96\x23\x8a\x42\x9c\x5d\x3a\xe9\xf0\xa9\x1e\x8b\xff\x48\x95\xed\xd2\x35\xcb\x21\x09\xf2\xe1\x27\x75\x41\xf9\xa4\xa2\x26\x4a\xac\xc9\xe2\xf5\x1d\xbe\xf1\xeb\x9f\x69\x34\xe3\x39\x74\xbe\x63\xa5\x4d\xe8\x21\xf0\x5b\x5b\x3b\x9e\xc2\x9d\x01\x3c\x40\x0f\xdd\xa5\x07\x92\x0c\x46\x35\x5f\x88\xf8\x1f\xec\x28\x3a\x60\xae\xee\x09\xad\x9c\x87\xe6\xcc\x4d\x36\x2f\xac\xbd\x7b\xdb\x79\x61\x59\x8f\x43\x98\x3b\x6a\xfd\x41\x0d\x3d\xab\x79\x61\x3c\x31\x90\x6b\xd2\x75\x4b\xf9\x9a\x3a\x64\xf3\x6f\x94\xd6\xbe\x64\xe1\xb5\x73\x84\x4f\xef\x29\xd1\xbe\x37\x49\x10\xa9\xee\x11\xe9\x12\x60\xc5\xa0\x4e\x47\x8c\x8d\x62\x2a\x12\x06\xa7\x82\xed\xfc\x50\xed\x2f\x7d\x6d\x47\x15\x0c\xd7\x8a\x77\x30\x12\x37\x54\xa7\xdf\x07\xe4\x36\x48\x75\x52\x9d\x3e\x77\x03\x2f\xaa\x05\x79\x59\x04\x08\xaf\x6e\x26\xec\x50\xf5\xc1\x5a\x7d\x51\x97\x14\x77\xf8\x00\xe4\x99\x19\x8f\xe4\x42\x39\x54\x98\x8e\xe8\xe3\x30\x33\xef\xa9\x1c\x6f\x98\x96\x59\x61\xf3\x75\xdd\xd3\x40\xcf\x20\xfd\x0d\x5e\xa0\x3b\x27\xa2\x58\x36\xf3\xf0\x2f\xee\xe2\x41\xf8\x46\x65\x96\x06\x66\x35\x0d\xe1\xad\x49\xb2\xdd\x7b\x28\xe7\xc7\x4a\xfc\xe4\x5e\x63\x2b\x53\x5c\xf6\xfb\x51\x3e\xd0\xfe\x40\xe0\xa1\xed\xc7\x55\x93\xd8\x28\x25\x9e\x66\x13\x3f\xe8\xe1\xb0\xc8\x61\x2a\x93\x20\x02\xbc\x47\x15\xc9\xf7\xad\xc0\xb3\x93\x7d\x12\x28\x30\x17\xf7\x23\x0a\x1a\xaa\x9a\x66\xe9\xd5\x14\x6f\xaa\x67\x92\x10\x70\x05\xc4\x72\xa7\xc6\x5e\x35\xec\x22\xb2\xb7\x5c\xb7\xa9\xa5\x5a\x8b\x41\xbe\xad\x7a\x4a\x14\x70\x77\x76\x3c\x10\x9b\xc9\x59\x84\xd1\xc3\x43\x69\xb8\x9b\x51\x7a\xf2\xaa\xb3\x42\xb2\x5a\x9b\xb7\xd4\xd3\xed\xae\xed\xb3\x26\xde\xd7\xb5\xa2\xf7\x7e\xa7\xe8\xdd\xb0\xa7\x4c\xb2\x3e\x4c\x33\x3b\xe3\xfb\xf4\x6e\x29\x24\xcf\x4d\x4d\x74\xf5\x7f\x4c\x9d\x42\x2f\xbc\xd0\x0e\xd3\xd1\x3a\x01\x62\x66\x5a\x5f\x5d\xa8\xc9\xd0\x8a\x6f\xa4\xac\xe1\x1d\xd5\x2e\xe5\xe0\x1b\xc0\xc6\x61\xf0\x78\x41\xc1\x63\x02\x74\x52\x8e\xde\xd6\x66\x22\x22\x39\xa0\x1f\x12\x3c\x62\x3a\xd3\x3a\xf0\x1c\x87\xf6\x9f\xd2\xe2\xc7\xec\xde\xd3\xda\x76\xdf\x57\x24\x87\xdd\xd4\x64\xbd\x2c\x4d\x87\x34\x95\xd8\xfb\x80\x4f\xc2\xd3\x67\x28\x1c\xb6\xd3\x51\x95\x65\x60\x79\xb9\x59\xdf\xb8\xc1\x39\x86\x26\x65\x08\xcf\xdd\x78\x4e\xc5\x8f\x61\x1a\xa7\x09\xc2\x5e\x0c\xf5\xcb\x63\x1f\x53\xbf\xac\x92\x0a\x03\xaa\xc1\x59\x90\xe9\xb9\x1d\xea\x88\x73\x2f\x78\xa0\x43\x94\xac\x10\x79\xdc\xde\xbd\x1e\xb1\x50\xad\x2a\xb4\xaa\xdd\xa5\x49\x41\x35\x60\xb6\xa3\x1b\x68\xba\x82\x36\xf5\xb4\xcb\x2d\x45\xc7\x2c\x8b\x9e\x6a\x88\x73\x0a\x8d\x04\x3a\x4c\x29\x53\x29\xb4\xf5\x13\xe4\x5d\x21\x1a\xbb\xa6\x59\xa3\x3c\x65\xd5\xd0\x94\x99\xb5\x48\x49\x89\x4a\xaa\x72\xf8\xcf\xab\x01\x08\x07\x51\xb8\x52\xf9\x16\xd5\xaf\xb1\x02\x62\xe0\xab\xf0\xf7\x94\x63\xf1\x2b\xbf\xfc\xcb\x73\xd5\x16\x81\x2b\xfe\x10\xfa\xfb\x2b\x17\xcb\xf1\x16\x9c\xa2\x57\x43\x40\xc5\x6d\xa1\x30\xd5\x67\x1b\x59\x0c\xc3\x34\x7f\x86\x7d\x62\xd8\x2e\xb0\x53\xa9\xd2\xee\x3e\x17\xee\x34\x6c\xae\xa1\x29\x0a\xc7\xc3\xcb\x31\xa7\x3e\xe5\x4e\x4c\xed\xa8\x3d\x8b\xed\xac\x72\xeb\x12\x01\x24\x8a\x12\x9c\x22\x4e\xf8\x63\xc5\xd7\x1e\x71\x5a\x4f\xad\xc2\x7d\x6e\xb5\x29\x58\x96\xed\x9b\x82\xc8\x2c\xab\xaf\x11\x2e\x55\xdf\x5a\xa9\x99\xc9\x11\xe5\x60\x1e\xa8\xac\x25\x93\x32\xd3\xa9\xe5\xbb\xf3\x32\x06\x6c\x52\x71\x8b\x79\x68\xa6\xe6\x7b\x0e\xd3\xa4\x57\x32\xd5\xc5\x3e\xc7\xb8\xda\x72\x4c\x2a\xe7\x15\x98\x66\x60\xb3\x34\x61\x37\x12\x08\xb8\xd9\x8e\xc2\xa0\xce\x4e\xfc\x6c\x7f\xe9\x1f\x2f\xcd\xf8\xe2\x05\xb4\x3c\x95\x17\x29\x2d\x32\xd7\xa7\xe2\xf5\xbd\x7b\xdb\x26\x2e\xa2\xa2\xec\x01\xdf\xd3\x94\xec\xf0\x39\x84\x51\x16\x0d\x4d\xb6\xae\x65\x03\x2e\xaa\x56\x5f\x8f\xc6\x5e\x8d\xb2\x32\xb6\x09\x83\x86\xb0\xfc\xff\x0c\xd3\xcd\x37\x4d\xe8\xc3\xea\x64\x35\xdd\x98\xd1\xd0\x48\x34\xdd\xae\xbb\xf1\xaa\x05\xe4\xb8\x2b\xe2\xc6\x51\x5e\x10\xd9\xaa\x30\x7e\x78\x78\xc6\x0d\x85\x1f\x7c\x12\xb8\x7f\xf8\x64\xac\x8f\x22\x1b\x6e\x9a\xf6\x66\xbf\x44\xa4\x11\x08\x0f\xf7\x79\x49\x77\x57\x15\x3c\xae\x66\x36\x0f\x4d\x16\xda\x78\x9d\x9c\xda\x8d\x1b\x48\x06\x48\x56\x56\xa7\x98\xab\x45\x82\x5c\xe2\x61\xb5\x2c\x47\x59\xba\x5a\x05\x72\xdb\xc8\x87\xc7\x46\xe2\xe6\x02\xc7\x45\xed\xbe\xe4\x41\xac\x03\x2c\x99\xf7\xc6\x5a\x72\x09\xd4\x8a\x12\x44\x4d\xc7\x4a\x0b\xed\x32\xe9\xd9\x2c\x2c\x8b\x5a\xdd\x20\x50\x75\x83\x9a\x4f\x14\x97\xc3\x6e\x64\xd0\x73\x85\xe1\xbd\x12\x78\x96\x2b\x00\x58\x61\xf7\x3e\xc0\xd3\x8a\xcc\x26\x0d\x99\xf4\x7e\xb4\x5c\x13\xef\x15\xf2\x85\x19\x39\x4d\x15\x28\x41\x51\x6f\x2e\xee\xee\xdd\xbb\xdf\x13\xf1\x71\x2e\x0e\x29\xce\x9f\x28\x30\xf0\x4f\xa6\xf0\x82\x7b\xf7\xb6\xbb\x86\x1b\xe5\x45\xf3\xbd\xe5\x34\xdc\x8e\x05\xfa\xed\x58\xbc\x4f\xd5\x49\xe9\xab\x25\x15\xe5\xec\x7d\xd9\x8d\xed\xac\x3a\x8f\x91\x2e\xc3\x9f\x3d\xe6\x31\x51\x8f\x3f\x39\x69\x7d\xf9\x20\x17\x34\xef\x2a\xd1\xd0\x78\xd5\x3e\xe4\x78\x13\x87\x8f\x51\x05\x9a\xe5\xbe\x94\xe9\x79\x78\xf2\xd9\xd4\x0b\xae\xd3\x9f\x9d\x2a\x10\x9e\x6c\xef\x68\xc5\xd5\xb1\x52\xf0\x38\xdb\xc0\x93\xf4\xf5\x76\x99\x50\xeb\x74\x4b\xd1\x56\x61\x5d\x89\x48\xcf\x93\x8a\x30\x52\x92\x2b\x12\xca\x3a\x1a\x7e\xc5\xc9\xdf\x20\x56\xf6\x6c\xdb\x78\x31\x16\x60\xf1\x89\x22\x5c\x28\x30\x1f\x99\xf8\x2a\xad\x89\xe3\x34\x34\x0e\x72\x2e\xa9\xab\x96\xd2\xa2\x91\x18\xd3\x94\xc5\x20\xcd\x9c\x2a\x91\xa3\x1f\x3f\x41\x7f\x2d\x0b\x4d\x0d\x79\xc4\x22\x8b\xd8\x6b\x00\x8a\xf1\xf5\x44\x83\xca\xc2\x74\x18\x25\xfd\x6d\x5e\x9b\xe3\x2f\x6b\xfe\x35\xa5\x64\xb0\x05\xaf\xe8\x1e\x99\x2d\x13\xbd\x52\x54\x26\x49\xe9\x37\x97\x59\x9f\x2b\x47\x70\x1b\xff\x88\x96\x0d\x0a\x9d\xe8\xc9\x85\x6b\x7d\xcd\xab\x0c\x0f\xd2\xb5\x1d\xd5\x4a\xc1\xfc\xee\xe8\x78\x24\x18\x03\x23\x00\x1d\x43\xdd\x05\xe6\xe5\xb6\xa6\x10\xe1\xfe\x0b\x18\x80\xcb\x63\x75\x5e\xdc\x22\x57\x09\x09\xa5\x6d\x08\x4f\xc5\x65\xa7\x15\x85\x44\xc3\xa3\x1d\xcf\x12\x7c\x71\x0a\x16\x74\xe0\xb9\x76\x99\x8c\x32\x1b\xda\x9e\x4d\x24\x3d\x84\x85\xfc\x21\xb2\x34\x7c\xa3\x0a\xa6\x83\xc8\xed\x31\xfc\xf8\xeb\x8a\xdc\xed\xf5\xe6\xe0\xd6\x0e\x5d\x8a\x1b\xe5\xcf\xc3\x63\x8f\x35\xa8\x89\xa2\xdc\x54\xfd\x0b\xd4\xbb\x90\x99\x75\xf6\x32\x70\x02\xfc\x56\xe0\x4f\x83\xdf\xaa\xc5\x20\xc6\xc6\xdb\x7d\x8d\xf7\x06\x26\x57\xe9\xf4\x48\x7a\xea\x9e\x72\xbe\xdf\xa7\xec\x89\xa8\xab\xf8\xf0\xf6\x6a\xa0\xa8\xd9\xef\x05\xad\xdd\xbb\xe5\x1f\xc8\xde\xe1\x59\xb7\x77\x54\x00\xd0\x9a\x3c\xaa\x78\x6f\x8b\xd8\xe6\xa4\x19\x87\xb3\xed\x2d\x64\x25\xf8\x46\xad\xea\x15\x5b\x3c\xec\xb1\xdc\x80\x60\xe2\x69\x7e\x81\xd8\x40\x6a\x1c\xee\x8c\x8e\xa7\xe8\x0e\xb3\x7b\x44\x53\x61\xcf\x10\xd2\x59\xfa\x14\x34\xd1\xfc\xf7\x31\xc2\x4e\xb8\xea\xcb\x07\x9d\x33\xa0\xca\x49\x17\x14\x50\x96\x8f\x53\x34\x7a\xb5\x6a\x72\x59\xbd\xec\x19\x64\x9b\xc5\x96\xd1\xb3\x21\xc4\x38\x8c\x1f\x92\xea\xa7\xe3\x52\x2c\x93\xde\x8e\xea\xa9\x39\x56\xa2\x05\xbe\x71\x69\xac\x14\x6d\x3f\x1d\xab\xee\x65\x85\xda\x7a\x64\xe2\xa2\xa3\xff\xe4\xff\x8f\x86\x01\x64\x6d\x99\x8d\xc7\x6d\xd8\xea\x21\x70\xcc\xa2\x23\x52\x44\x75\xd5\x4e\xde\xde\x51\x9a\xdb\xe6\x90\x27\xfe\xc2\x23\xc0\x02\x88\x02\x0d\x7d\x0e\x5f\x32\x33\xd5\x62\xfe\xfc\x7c\x75\xc0\x7b\x09\x1b\x3c\x12\x43\xc8\xf8\x66\x1a\x3a\xb0\xbb\x3d\x4a\xb3\x95\x4d\x52\xb1\x9e\xd6\xfc\x33\xeb\xfb\x43\x13\x9b\xf5\x3c\x32\xad\xd6\xaf\x7d\xc5\x2b\x91\x7b\xe7\xeb\x4c\x03\xa4\x7f\x5f\xdb\x86\x69\x92\x0e\xa3\x30\x6f\x29\x5f\xfe\x1a\x57\x13\xc5\x21\xf1\x38\x93\x24\x3a\x94\x26\x73\xaa\x5c\x05\x0d\x0b\xac\x99\xa3\xe3\x3a\x51\x94\x63\x8f\xc3\x62\xe4\x3f\x6a\x12\xa6\x5f\x35\x71\x29\x95\x8c\x26\x18\x53\x93\x22\x61\x6f\xb5\x3a\x44\xe4\x53\xc2\x0b\x56\x7d\x4a\x68\xc1\xa6\x35\xa7\x17\xdb\x6b\xb6\x97\xd8\xbc\xe7\xcc\x05\x16\xf2\x75\xdd\x99\x70\xdd\x05\x69\xb6\xb7\x06\x72\x53\x2f\xaa\x37\x8b\x8a\x14\xdf\x74\x9a\x0e\xc2\x81\x35\x59\x8f\xf2\x09\x70\x1b\x98\x2f\xd2\xa5\xd3\x16\x17\x9d\x0a\x49\x43\x56\x30\xb3\xc3\x28\x9c\xd1\x54\x0b\x27\xd5\x48\x72\x80\x03\xe3\x75\x47\xa1\xb6\xf2\x92\xd8\xf4\x28\x48\x46\x79\xf3\x1a\xf9\x59\x7c\xdd\x14\x67\x25\x51\x68\x32\xd3\x2f\x01\x85\x14\x1e\x28\xb5\x13\x3e\x50\x34\x13\xf9\xc8\x9a\x15\x86\x77\x4b\x02\x46\x41\x8c\x9c\xd3\x34\x4a\xd3\x38\xd7\xf5\xe3\x7a\xaf\x81\x72\x02\x46\x23\x93\x51\x59\x9f\x01\x43\x82\x85\xa4\xc1\x72\xf8\x04\x8f\x55\xd0\xdc\x2d\xef\x2a\xbd\xa9\xe5\x32\x8e\x67\x94\xee\x01\x48\xcd\x91\x9d\xbd\xac\xd8\x73\x0e\x37\x2a\x00\x52\x3b\x26\x85\x70\xe2\x0c\xd1\xee\x94\x33\xc7\x0b\xa0\xf4\x1c\x52\x08\xeb\xfb\x1d\xa5\x20\x32\xad\x8b\xb8\xb8\x08\xc6\x75\xd2\xcb\xd2\x1c\x33\x7c\xad\x19\xe6\x49\xca\xb7\xa5\xd4\x7b\xd5\xa6\x7d\x3f\xd8\xee\xe2\xb0\xff\xe0\x0b\x4a\x41\xb8\x35\x99\xd9\xff\xeb\x5f\x95\x90\x02\x00\x3d\x11\x50\xac\xe6\x1d\x36\xf2\x3a\x9c\x04\x1c\x44\xbf\x43\xfe\x24\x85\xfe\x76\x17\x75\x01\x6f\xe0\x90\x43\x34\x7f\x3f\x50\x2c\xc6\xf7\x94\xa2\xfa\xad\xa0\xf5\x9f\x8b\x0e\xe5\x6f\x2b\xad\x08\xa6\x6d\x86\xcb\x74\x1d\x4f\x8d\x61\xbf\x4e\x58\x7e\x29\x27\x2a\x1e\x86\x5b\x81\xa2\xa2\xf8\x5d\x5a\x40\x38\xd3\x8e\x02\x10\x03\x90\xd9\x1d\xd5\xd9\x71\x9a\x88\x8e\x91\x56\xb9\x83\x4a\x19\xf7\x3a\x33\x85\x32\x86\xe3\x92\xaa\x8f\x65\x36\x2f\xb2\xc8\x8b\xa1\x3b\xde\x42\xcf\x25\x75\x56\x25\xe8\xfe\x6f\x85\x02\x79\xb1\xda\x0e\xd9\x4e\xad\x29\x83\xe3\x07\xbd\xb8\x73\x38\xca\xb9\x0b\x3b\xd0\x94\x48\x34\x35\x8e\xc0\xde\xc9\x2d\x73\x33\x1a\x32\x35\x97\x14\x4c\xe9\xdb\xc8\xb8\x62\x54\xaf\x92\x7f\x21\x0c\xbd\x78\x2f\x11\xf5\xf2\x95\xd1\x0f\x54\x4c\x1e\x5b\xd3\xb3\x59\xbe\x93\xbe\x04\x2d\x16\xcc\x5e\xc6\x37\x74\x50\x62\x75\x9e\x54\xd4\x54\x57\x35\x4d\xe4\x4f\x74\x8f\x02\xa8\xd3\x90\x38\xda\xca\xc4\x90\x70\xdd\xef\x63\xe4\xe0\x96\x1c\x51\xcd\x68\x0f\xe1\x70\xc5\xf2\xa9\xe1\x87\x9a\xc1\xa0\xe0\x3b\xb7\x2d\x4d\xe2\x40\xcf\x26\x84\x0e\x3e\x3b\x58\x8e\x72\x5b\x90\x6b\x84\x01\x3e\x3d\xf6\x24\xc4\xa7\x15\x7a\x8e\x72\x83\x4c\x83\x05\x1b\xf3\xca\xd8\xa7\x11\x5e\x51\xc1\x58\x66\xed\xc3\xf4\xee\x72\x3a\x28\xc6\xa6\xbb\x9a\x3e\xe2\x91\x89\xca\x96\x5e\xa3\x71\x44\x09\xe8\x66\x4d\x3f\xfa\x9e\x3a\x94\x41\xa2\x85\x76\xa7\xf7\x02\xcf\xdb\x7f\x1e\xdb\x0f\x5b\x19\xfd\x23\x94\x61\xff\x83\x5d\xe4\xb6\xe1\xff\x3f\xae\x95\x94\x76\x74\x1e\x73\xf5\xc4\x32\x29\xb2\x48\xe8\x8b\x05\xbe\x42\xcf\x26\x18\x52\x5d\xac\xbe\xde\xc4\xaa\x6b\xb2\x2c\x5a\x15\x0d\x1b\x61\x12\xf0\xc0\xf7\xb3\x53\xce\xc4\x9e\xc5\xf6\xd0\x24\xe5\xb2\x09\x8b\x32\x93\x3e\x6b\x91\xeb\x52\x14\x2c\x1f\x60\x4d\x48\x6b\xb8\x2f\xfe\x9d\x73\xd9\x20\xc7\x5e\x37\xa3\xfa\xb3\xcf\x6b\x2a\xd1\x9b\x81\xd2\xc5\x3c\xa2\x1a\x58\x4c\x37\x8d\x23\xf8\x5d\xae\x2b\xef\x35\x7c\x52\xd1\x04\x89\x0a\xde\x89\x29\x25\x9e\xa5\xf9\x76\xba\x96\x6c\xa3\xbf\x11\x2e\x26\x87\xf6\xf8\xe5\xc7\x48\x96\x47\xb9\x84\x22\x28\xc0\xd0\x05\x6e\x2b\x0f\x3c\x24\x73\x76\xe2\x7b\xee\xd6\x9e\x79\x51\x00\x05\xc2\xff\xa4\x28\xae\x2f\x29\x63\x12\x66\x51\x1e\x31\x4d\x22\x0c\x00\xb7\xf5\x88\x40\x95\x3a\xe9\x8e\xa0\x82\xc6\x7f\xa6\x9a\x3c\x97\xd3\xb4\xc8\x0b\x3b\xca\x5b\xa8\xa3\xc3\x10\xbd\x0a\x4a\x3d\xbe\x51\xb4\x8a\xe9\x68\x94\xe6\x51\x01\xaa\x15\x91\x91\xf6\xe0\xfe\x63\x53\x3c\x88\x95\xc7\x61\xa2\xe4\xb3\x5b\xd1\xfd\x0e\xda\x6f\xd1\xe7\x01\xab\xf2\x18\xdb\x08\x6d\x50\xdd\x30\x7a\x67\x6a\xeb\xe4\x09\x95\x06\x1d\x0e\xcb\x24\xca\x0b\x20\x11\x10\x36\xb1\xf0\x3b\xdf\x4c\x81\xfd\x77\xef\x86\x00\x4f\x4e\x45\x00\x76\xa4\xb1\x22\x8e\x8f\x3d\x00\xea\xb8\xb2\x09\xc3\x32\x0f\x63\xe4\x20\xe1\xb2\x1f\x55\x5c\xd7\x47\xbd\x48\x63\x1a\xaf\xa3\x99\x55\xa5\x7e\x6b\x19\xb1\x06\x41\xfc\x7c\x60\x32\x0e\x80\xb1\x61\xaf\x8c\x15\x75\xc0\x95\x46\x01\x41\xe2\x3e\x5a\xa9\x27\x5a\x3d\xc2\xcc\x81\x74\x46\x19\xc1\x27\xd9\x79\x12\xa6\x0b\x5f\x8a\xba\x58\x93\x5b\x58\x2e\x29\x10\x57\x02\x7a\x5a\x58\xef\x31\x95\xed\x1a\x45\x24\x99\xa6\x68\xd6\xb4\xe3\x42\x53\x85\x7a\xdc\xd5\xe0\x09\x05\xb3\x1d\x99\x8c\x80\xf4\x8f\x68\x57\xf4\xdb\x34\x3e\x68\x67\x39\x39\x56\x1a\x3e\x6f\x63\xd1\x48\x8e\x96\x8c\x83\xab\x26\x56\x2b\x1b\xd9\xb1\xd3\xf4\xe6\x2c\x98\x43\x5b\x12\x87\x0f\x5b\x02\x16\x28\x55\x4e\xfc\x61\x1c\xf9\x22\xb1\x43\xfb\x53\x34\xce\xaa\x17\x96\xc6\x6e\xa5\x86\x77\xbf\x49\x16\x74\xc5\xda\x64\xc6\x97\xbf\x99\x6d\xc3\x31\x5f\xb9\x2c\xc5\x19\x57\x4d\x5b\x7b\x06\x8d\x25\xdc\x39\x49\x7c\x96\xae\x05\xcc\x39\x98\xd7\x03\xa5\x92\x72\xd1\x25\x74\x92\x34\xe7\x14\x10\x9e\xfc\x8c\xc2\xb7\x21\xf0\x94\x26\xcc\x26\x8a\xde\x72\x94\x26\x2d\xef\x02\x41\x49\x83\xaf\x55\xe2\xc3\x26\xfd\x28\xb1\x16\xb0\x36\x81\x67\xa0\xe9\xdb\x41\x6f\xab\x87\x13\x81\xc1\x1a\x7f\x47\x3a\xda\x41\x9f\x42\xec\x7a\x7b\xac\x60\xfd\xc7\xf0\x4e\xf8\x8e\x19\x32\x96\x42\x5b\x43\xde\x9b\x74\xb2\xfb\x33\xef\x4f\xe9\x09\x61\x8d\x8e\x91\x2f\x83\xd7\xbe\xa5\x9a\xec\x66\x26\x1e\xe9\xf0\x7d\x4a\x2e\xc0\xd8\x6d\xd4\xfa\x8d\x4c\x62\xb7\xb7\xbe\xba\xe0\xd8\x63\x55\x96\x12\x2f\x83\x94\xce\x9b\x98\x3f\xbe\xa9\xdc\xaa\x8d\x4b\x81\x8a\x01\x3e\xe5\xa3\xda\x11\x8e\x2c\x7a\x29\x2b\x9f\x55\x70\x84\x24\x2a\x9a\x18\x98\x55\xfb\x39\xcf\xb6\x76\x03\xeb\x0f\x75\xe9\x6f\x8f\x15\x27\xdb\xa7\x75\x1c\x59\x35\x00\xf4\x0b\xff\xe3\x13\x13\xd5\x22\x75\x4c\x05\x20\xcc\xa7\x85\x53\xff\x16\xf9\xb5\xf0\x31\x41\xe9\x8a\x5d\xfe\x07\xf0\x0b\x95\xda\xdf\x92\xa3\xe3\xaa\x96\x04\xc0\x9a\x0f\x40\xa5\xc3\xad\xfe\x6a\x30\x08\x61\xf5\x72\xbb\x43\x27\x83\xe0\x69\x75\xbf\x60\xeb\xd7\xbe\xc2\x58\xa4\x13\x14\xb4\x3b\x6d\x6b\xb7\x9a\x99\xfc\x0f\xf6\x6f\x6b\x67\x97\x2e\x60\x31\xd1\x70\x35\x34\x0e\xa1\xbf\xc7\x23\xf4\xa7\x03\xa0\xfd\xed\x2c\x35\x43\x38\x7b\x42\x56\x43\x03\xf0\x59\x6c\x35\x0b\x07\xda\xf6\x50\x28\x60\x4e\xec\x35\x24\x70\xf9\xba\x09\x44\x13\x9b\x82\xa3\x52\x5e\xe6\x64\x3c\x64\xc9\x37\xb5\xf0\x2c\x97\x90\x26\x77\x38\x13\xf0\xb0\xf3\x75\xe3\x8b\x54\x3f\x32\x47\x0b\xc1\x71\x31\xba\x71\xfd\x36\x45\x55\x42\x63\xe0\xdd\xa5\x9d\x1d\x25\x2b\x3f\xdd\x2c\x41\x7d\xc9\xd6\xf4\x22\xae\x71\x60\x25\xbc\x16\x78\xc0\xc7\x6b\x2a\xed\xd2\x4d\xd3\x95\x7c\x9b\xaf\xc0\xcc\x92\x0e\x07\xd0\x8e\xb7\xc8\x34\x71\xe1\x0b\x16\x52\xcb\x04\x3a\xaf\xcf\x91\x2f\xde\x52\x08\x00\x9b\x17\xa6\x1b\x47\xf9\x60\x1b\x2d\x1b\x64\xbc\xb7\x28\x11\xfc\x3f\x61\xfc\x9e\x94\x01\xfc\xa9\xfa\x0e\xf6\xa0\xab\x8f\xed\x5e\x70\xc4\xa4\x9f\xc5\x28\x30\xb0\x59\xf1\xd2\x26\x8c\xfd\x97\x0f\x3a\x8c\x7d\x23\x71\x7e\x15\x33\xe4\xb9\xc5\xc1\xef\x34\x4a\x5d\x2b\xc6\xd9\x40\x00\x78\x90\xba\x26\x4e\x07\x47\x10\xb7\x70\x80\x57\xf6\x5b\x74\xd8\x30\xe9\x1f\x21\x57\x65\x27\xd0\x0e\xc3\x59\x7c\xb4\x4e\xbc\x1f\x2f\xab\xa4\xeb\x75\x75\x28\xfd\xd6\x58\xe5\x08\x00\x77\x82\x2d\x3b\x47\x66\x00\x26\xf5\x32\x3c\x64\xf8\xed\x6f\x53\x4c\x0e\x63\x79\x93\x36\x1f\x02\x84\x3f\x82\xd1\x12\x8e\x40\x7a\x47\x45\x9e\xbe\xcf\xcb\x69\x56\xe6\xd9\x09\xf7\x3d\x2f\x80\xac\x0d\x0f\xf1\xad\xa2\xde\x58\x48\xb3\x94\x6b\xf5\x75\xe7\x5a\x79\x1f\xf6\x45\x13\xc5\x9a\x64\xf8\x12\xac\x1c\xdf\x34\x6d\xcc\x65\x53\x79\x4a\xb3\xde\xef\x39\x87\x81\x43\x79\xed\x96\xca\x85\x1c\x45\xed\x04\x21\xfe\xbf\x6c\x4a\x8c\x0c\xcb\x62\x53\x27\x62\x8d\xb5\x7b\x7a\x15\x2c\xb6\xf3\x22\x5a\x8e\x45\x66\xd7\x29\xa4\x28\xb9\x14\x95\xa9\x2a\x4c\xd2\xa7\x6a\xb2\xa7\xf4\x52\x41\xdc\x91\x7a\x0e\xb8\x81\x7c\x33\x4c\x63\x38\x78\x0c\xb6\xa9\x01\x6f\x36\xaf\x6c\xda\xc6\x59\xd9\xef\x7b\x4d\x7e\xf8\xbd\x73\x9d\x96\xd2\x73\x77\x91\xdf\x7f\x7c\x77\x33\x6f\x64\x65\x5f\x9e\x9f\x7f\xf6\xf1\x6a\x51\x60\x45\x5d\x1a\x7b\x89\xe0\x23\x78\x4b\xa7\x95\x54\x4d\x2e\xa6\x9e\x3d\x23\xb8\x62\x97\xd1\x96\x87\x9b\x37\x88\xe6\xc6\xe9\x60\xf8\xe6\x87\xef\x07\xfe\x1c\x7c\x35\x50\x49\x4d\xce\xce\x63\x47\xa1\x76\x51\xf3\xf1\xe0\xd6\xb1\xf2\x83\x10\xbd\xb4\x9c\xdc\xe7\xcf\x02\x55\x57\x7a\x93\x26\x13\x3b\xed\x53\x55\xea\x66\x85\xb0\x9c\x12\xa3\x42\x8e\xec\xdb\x5a\xff\x7c\xac\x1c\xc8\x26\x65\x99\xb6\x8d\x09\x2f\xe5\x82\x00\x47\x54\xec\x30\xab\x27\x1d\xc9\x5a\x94\xf4\x22\x12\x09\x14\x30\x82\xf4\xb8\xd1\x00\x0a\x30\x4e\x35\xc7\x46\x87\xd0\xef\x20\xc8\xdb\x23\x34\x54\x52\x3e\x69\x50\x37\x67\x04\x94\xf3\xd7\x71\x46\x1f\x56\x4a\x03\x5a\x77\x26\x2f\xa2\x38\x7e\xd4\xeb\xf0\xde\xc2\xee\xc6\x7c\xdf\x09\x7c\x91\xfb\x34\x06\x1c\xab\xfa\x8a\x2a\x62\xbd\x19\xf8\x8e\xd7\xeb\xe4\x3e\xb9\xb6\xcd\x6a\x19\xc0\xfe\xdc\x82\x05\x41\x8e\xf1\x12\xd6\x84\x93\x22\xaf\xd6\x01\x96\xf1\x25\xac\x23\x54\x8d\x7e\x48\x36\x0b\x8f\x75\x4c\x0b\xb1\x5d\xc0\xd2\x13\x32\xc8\x46\xcd\xac\x3c\xea\x27\x06\x18\x56\x27\x11\xef\xdc\xcf\x2b\x8a\xb9\x24\x4e\x0d\x13\x2b\x89\xc8\x99\x7a\x1e\x24\xb9\xa4\xc1\x95\x46\x86\xff\x4a\x15\x14\xf3\x38\x5d\x63\x9d\x7c\x24\x00\x3f\x51\xcd\x75\x9f\x4c\x9d\xf4\x7b\xf7\x72\x07\x2d\x3a\x52\xe0\xe8\xfd\x8e\xea\x77\xfb\x1d\xc5\x88\xd4\xb3\x85\xcd\xa2\x94\xfa\x57\x68\x38\x1d\x43\x4b\xf5\x90\xc2\xd0\xb2\x39\xcb\xf0\x34\x29\x08\x50\x86\x57\xe4\xd2\x68\xf2\xf8\xa6\x49\x03\x68\xbd\x1c\x8d\x22\xac\x48\x87\x51\x75\xbe\xce\x34\xd1\xda\xf3\xf3\xa0\x0f\xa3\x60\x40\xb4\xf2\x7c\x33\x6e\x5d\xe0\x69\x98\xae\xd0\xdf\x61\x75\xdf\xc6\x9e\xe4\x1b\x05\xc2\xce\x4d\x92\x97\xd1\x36\x9a\x5b\xec\x52\xf0\xf0\x32\x7b\x83\xe2\xe7\x69\x75\xd4\x58\xbc\xad\x48\x37\xb8\xf4\x2c\x2b\xa3\xa9\xa5\x73\x68\xb2\x2c\x22\x61\x52\xb7\x34\xce\xa9\xa5\xd1\x40\x8d\x4d\x12\x6c\x51\x2c\x00\x3e\x27\xf7\xb8\x28\x4a\xb8\x97\xc6\xea\x99\xef\x07\xde\x39\x2a\xd2\x43\x11\xe2\x25\x1c\xd5\xad\x89\x62\xa0\x68\xb9\xba\x7c\x9a\x9b\x15\xa3\xc8\x34\x4e\x28\x26\x8f\x9b\xb0\x3e\x30\x67\x5b\x3b\x6a\xb4\xa2\x22\x4c\x87\xad\x6a\xbf\x09\x79\xb9\xc2\xcc\x9d\x6c\x3a\x3f\x52\x23\xa7\x1b\xd2\x95\x30\x25\x7c\xad\x0a\x20\xdd\x32\x8f\x12\xd2\x9b\x79\x98\x36\xaa\x80\x92\xaa\xed\x28\x20\x40\x3f\xef\x77\x54\x28\x04\x7d\x6e\x27\xf7\x5a\xed\x65\xa4\xc5\x0e\x63\xd2\x51\x65\xbd\x82\x2d\x8f\x59\xe2\x90\xdc\x35\x8f\x56\x13\xcb\xff\x82\x0d\x27\x1c\x42\xba\x6c\x55\x1d\x49\x7c\x5d\x23\x8c\xb1\x85\x39\x44\xc8\x09\x57\x65\xd4\x9c\xc2\x95\xa7\x23\x7a\x32\x2d\xc7\x9d\xb5\x81\xd8\xb1\x86\xaf\x90\xba\x64\x03\x15\x48\x68\xb2\x34\x8e\x12\x23\x0d\x39\x88\x27\x01\xa1\xc1\xea\x7c\x47\x23\xff\x1f\x9e\xec\x70\x9b\xf9\xa9\xde\x76\x0d\x89\x27\x44\x96\x43\x07\x2e\xcd\xbb\x1b\x8c\x15\xd9\x99\xef\x3d\xd1\xd1\x80\xd2\x6a\x06\xf0\xde\x48\xa3\xc3\x34\xcf\xa2\xae\xec\x38\x84\x1c\x33\xec\xbf\xc6\xe9\x89\xe4\xc5\x59\xb5\xd5\x4c\x58\x44\x69\xb2\x9d\x3c\x6b\xc7\x47\xea\x02\x84\xff\x0a\x0e\x22\x36\xc4\x0d\x25\x6e\x71\x39\xf0\xf1\xdc\x7f\x73\x85\x1c\x6b\xfe\x74\xa0\x49\xca\x5a\x4e\x19\xf2\x5a\xa0\x38\x74\xae\x04\x4a\x95\xe2\x5b\x9f\x01\xea\x8c\x25\x85\x59\x03\x72\x0a\x47\x8f\xf4\x36\x85\x03\x33\xec\xda\x2c\x36\x11\xf3\x17\xc3\x41\x7c\x57\xc5\xb4\xef\xba\x0a\x59\x37\x35\x85\x93\x2a\x81\xa7\xcb\x9c\x43\x7c\xa3\x68\x1a\x86\x69\x91\x66\xe1\x7a\x18\x73\xa7\x29\x16\xec\x8f\xf1\xe7\x7c\xe3\x60\xb7\x69\xaf\xc7\x31\x12\x4a\xe6\xf7\xe8\xe7\xf9\x5a\xa5\x3e\x6d\xcf\xc6\x43\x93\x20\x95\x29\x7c\x57\xb5\x14\x8e\x82\x5e\x64\xe9\x68\xb0\xae\x24\x12\x4e\x2a\xaa\xde\x93\x2a\x87\x3b\x8c\xb2\x2c\xcd\x54\xd9\xaf\xde\xf7\xbf\x79\x74\xf7\x2c\xb6\x97\x63\x33\xfc\x9b\x50\x95\x0e\xb6\x12\x46\xce\x3b\x91\xb3\xa0\xc6\x33\xa4\x74\x41\xd2\x6c\x65\xcd\xda\x15\xea\xdc\xc7\x46\x45\x61\x93\xaf\x6b\x61\x4b\x2f\x83\x06\x13\x16\x33\x1b\x4d\x24\xe9\x3e\xa2\x97\x84\x8b\x75\x53\x35\x47\xbc\x43\x2b\x5e\x58\x9d\xd4\xa1\x1d\xe5\xa0\xd5\x63\xff\x0f\xde\x05\x02\xa7\x1b\xca\x9a\x1f\xd6\x02\xde\xd1\xaa\x89\x73\xca\x13\x8b\xe2\x58\xcb\x51\x9e\x9d\xa0\x55\x8e\x09\x86\x6c\x0f\x5f\xab\xce\x09\x2a\x1b\xcc\xd2\x9e\xc1\x7a\x84\x42\xa6\xe3\x25\x75\xc4\xb8\x5b\x49\x8e\x55\x98\x78\x94\xa3\x50\x7d\x41\x42\x54\x0d\xd2\x90\x50\xbd\x9e\xc0\xb4\xfd\x2a\x2c\xe3\x22\x1a\x9a\xc2\xc6\xeb\x73\x3e\x3b\x77\x46\x65\x35\xce\xd2\x7e\xc3\x20\x7f\x88\x10\x8c\xff\x01\xa6\x95\xc9\xa0\x03\x89\xc1\x06\x69\x1c\x79\x64\x01\x9e\xfe\x35\x1a\x67\xbe\x6e\xe2\xa0\x18\x99\x22\x8b\x52\xad\x9c\x7b\x44\x0b\x1a\xa9\x9a\x58\x96\x0a\x5b\x09\x6a\x83\x6f\x92\x31\xe1\x6b\x45\xa1\x3e\x4c\xf3\xe2\xb1\x96\x8b\x17\xef\x52\x7e\x40\x28\x37\xc9\x52\xb8\x1a\xe1\x9e\x45\x9f\xcd\xaa\x2c\xb2\x74\xd4\x28\xb6\x5e\x68\xdb\xe1\x05\x78\x43\x0b\x03\xbe\x26\x35\xbd\xa4\x10\xc1\x33\x13\x25\xc4\x7c\x42\x87\x10\xc7\xb1\x84\x60\x37\x7f\xae\x43\x43\x8a\x93\xfe\xe4\xd8\x6b\x92\x5d\x87\xdf\x85\xb8\xf5\x92\xda\xb6\xb1\x29\x7b\x36\x43\x5e\x16\xf9\xd0\x99\x8e\xa7\xf3\x03\x6a\x1f\x07\x2d\xcc\xa3\xd4\x09\x36\x7b\x62\xe4\x6c\xd8\x98\x7d\x43\xbd\xb4\xc4\x5b\xf6\x6d\x1a\xf6\x90\x0d\xcb\x22\x5a\xb5\x0f\xb6\x1c\xd9\xd7\x19\x18\x5c\xd4\x0b\x67\x68\x1d\x22\x50\x7f\x99\x06\x0b\x4b\x8d\x65\xca\x30\xbe\x4f\x10\xea\x4a\xb5\x32\x3d\xeb\xe9\xbb\x97\xe6\x79\x45\x3f\x30\x11\x63\x3a\x28\x7b\x3d\x89\x61\x11\x1f\x9d\xd2\x74\x99\x5b\x81\xac\x44\x34\x70\x53\xd1\x0e\xe5\xe9\xd0\x16\x11\xd3\x13\x30\x40\x27\xf0\xd0\xdb\xe3\xe3\x69\x9e\x63\xbe\x51\xeb\x27\x4c\xe3\x68\x46\x35\x0d\xdd\xac\x49\x10\xa9\x76\x9c\x23\x53\xf6\xef\xcb\x07\xdb\xb1\xc9\xb9\xa4\xc2\x78\x31\xa5\xf2\x70\x61\x6a\x26\xf6\xee\x25\xcd\x75\xc3\xf0\x23\x21\x4c\xa5\xf5\x23\x79\x66\x4d\x19\xd7\x4d\x33\x33\xe0\xb3\x8b\xa9\x1f\xc7\x6a\x39\xbc\xe7\xb2\x41\xc4\x12\xcd\xb5\x53\x18\xdf\xeb\x94\x00\x85\xc1\x61\xa2\x01\x6c\xed\x4f\xa7\x3c\x75\xf0\xa0\xd9\x9c\x51\x58\x58\x14\x67\x55\xb3\xbc\xd7\xd5\x67\xac\xb2\xcd\x1e\xac\x9d\xcd\x9e\x2a\x6d\xec\xa2\x94\xc7\xda\xf0\x20\x44\xae\x89\x16\x39\x56\x01\x98\x45\x5d\x30\xee\x0b\xbe\x17\xea\x3b\xae\xc1\xdd\xcc\xd3\xe5\x62\xa6\xd6\x02\xea\x67\x8b\x1b\x50\xa5\xeb\xcc\x97\xf2\xac\x1d\x3e\xe4\xab\x82\x33\x13\xfa\xbc\x52\x66\x10\x9f\x1d\x60\x47\xd5\x9f\xb2\xdf\xff\x8a\x73\x4d\xd1\x78\xa0\x2a\xde\x42\xb5\xc4\x4d\x77\xb4\xb8\xff\xf2\xe7\x3a\x7e\x1f\xf7\xb3\x68\xc4\xd2\x0b\x0c\xaa\xeb\xf8\x0a\xdd\x96\x89\x2a\x71\x48\x7a\xf2\x41\x7a\x42\xc5\xb8\x24\xad\x80\x80\x0d\x0b\xfb\x12\x99\x1a\x4c\x31\xf3\x8e\xe0\xaf\xd8\x6b\x97\x18\x15\xeb\x07\xaf\xf5\x9e\x02\xb3\x7f\x5b\x9d\x0e\x69\x09\xf6\x3f\x26\xe2\x82\xbf\xf1\x53\xe5\x7b\xfc\x54\x55\xd9\x56\x12\x5a\x6f\x2d\xa5\xc8\x44\x23\x27\xea\x4c\xbb\x14\x4e\x2b\x1b\x65\x51\x2e\x65\x7d\x47\x71\xba\x28\x3b\x11\x9d\xd4\x48\x21\xfc\x9b\x06\x2d\x95\x7d\xed\x2c\x0a\x07\xc3\x34\xe9\xb5\xb4\x7a\x27\x03\xc3\x04\x06\xb7\x53\xd1\x94\xda\x5f\x24\x72\x54\x44\x3d\xd7\x40\x5e\x00\xdb\x0e\xdb\x00\x27\xf2\xbf\x86\x70\x82\x70\xab\xd2\x34\xe2\x48\xfc\x64\xdc\x3a\x28\x55\xf1\xbf\x20\xf7\x9e\xe1\x23\x58\x5d\xf0\xef\xcf\xe1\x00\xc1\x1a\xba\x13\xb4\xbe\xba\xe0\xd9\x6b\x2b\x0f\x5c\x40\xad\xc8\x26\x23\xcf\xfc\x18\x65\xb1\x81\x21\x98\xa1\x1d\xa0\xd4\xc9\x9f\xf5\x9f\xaf\x02\x07\x64\x07\xee\x8c\x15\xd8\xef\xbb\x63\x4f\xee\xc2\x8c\x27\x58\xcf\x6f\x62\x81\x60\x9a\x2e\x51\xb2\x04\x81\xcf\x5d\xca\x8c\x31\x93\x26\xaf\x02\x04\x97\xff\x16\x4b\x07\xa5\xaa\x0f\x14\x83\xc4\x71\x42\xf5\x22\xbf\x74\x9d\x80\x50\x80\xc8\x9c\xc2\x19\x05\xf8\xdb\xe1\x71\xeb\xa9\xa7\xf8\x38\xf8\xef\x02\xc5\x05\xfb\x73\x1d\x9f\x82\xbf\x8a\x12\xbf\xf0\x78\x7a\x35\x89\xff\x33\xa8\x0c\x13\x27\x87\x15\x62\x65\xaf\x01\x99\x95\xeb\x86\xad\x46\x9b\x6f\x1a\xa5\x3d\x13\x6b\x90\x2a\xd0\x02\x88\x92\x62\x7d\x52\x07\x70\xbd\x28\xac\x36\x96\x55\xa1\x36\xaa\xae\x35\x85\x3a\xf1\x44\x25\x1e\x50\x72\xfc\x74\x32\x61\xcb\x5f\x55\x3a\x99\x6c\x57\x59\xb9\x4d\x75\x35\xf5\x6c\x5c\x98\x39\x45\xd9\x74\x57\x57\x0f\x2e\x8f\x7d\x69\x96\x79\x2d\x19\x38\xaa\xa4\xa1\x6e\x35\x35\xca\xda\x9c\x08\x74\xc0\xb4\x25\x25\xe3\x96\x93\x9b\x3d\xec\x9b\x39\x4c\xd2\xb7\x0f\xd0\x03\x60\x08\x2f\x07\x5a\x51\x42\xb7\xc4\x5f\x56\x85\xb6\x97\x6b\x6d\x36\x3f\x1c\xfb\x0e\x84\xff\x55\x2b\xa9\xfb\xbe\xbe\x82\x70\x0a\xd9\xac\x87\x43\xec\x98\x78\x6d\x0a\x64\x82\xe1\x2b\x5c\xc7\x01\x40\x46\xef\xaf\x3f\xdf\xd1\x9a\xa2\x09\x49\x7f\x79\xed\xd7\x40\xb1\x87\xe8\x46\x1d\x02\x0c\xd8\xbc\x78\xc2\xab\xd7\xcd\xd1\x9e\x92\x7d\x50\x6d\x56\x00\x6f\x7e\xa8\x0a\x20\x2c\x71\x01\x9b\xf7\x7f\x61\xe3\x62\x22\x1e\x9c\x28\xba\xaf\x56\xa7\x5a\xfa\x4c\x8f\x1c\x78\x31\xcd\x7f\x81\x15\x8e\x59\xe1\x5e\x54\xf0\x2a\x3c\x4c\xae\x90\x23\x31\xae\xc6\x57\x74\x13\xfd\xfc\x7c\x17\x13\xcc\xe2\x9d\x9a\xee\xf2\x34\x46\x04\x53\xb2\xd5\x53\x87\xfe\xc6\x2e\xd4\xd2\x60\x1d\xae\x4e\xad\x83\xa5\xf9\x36\xd1\x5b\x4a\x81\x00\xc5\xcf\x57\xe1\x66\xf1\x8d\x16\xbd\x24\xaa\xe2\x81\xa4\xf9\x25\x34\xa1\xf7\x90\x98\x45\x09\x50\xc5\x69\x5e\xb9\x12\x2d\xaf\xcc\xc2\x38\x67\xbe\x71\x81\xea\xaa\xe9\x97\x24\xaa\x2a\x4d\x8b\x84\xbe\x7c\x76\xe3\x94\xda\x20\x9f\xeb\x78\xcf\x68\x47\x03\x43\xd0\xfe\x76\x39\xca\xab\x97\x19\x52\x9e\x1c\xc3\x0a\xb2\x0e\x94\x5a\xd8\x02\x4a\x7e\x54\x14\x1f\xfa\x59\xd9\xeb\x13\x7b\x11\xce\x15\xd7\x96\xbd\x24\x09\x41\xec\x6f\x59\x86\x0d\x43\x38\x28\x93\x5e\x66\x05\xed\x8c\xbd\x7d\x1a\x8b\x9c\x6f\xc6\x5f\x50\x5e\x71\x98\x95\x45\x44\x63\x1e\x43\x1c\x52\x64\xc6\x69\xaa\x44\x8c\x5c\x9e\x6f\x98\x26\x85\xed\x45\x39\x37\xf1\xe0\x30\xe1\x70\x82\x6f\xa6\xd2\x40\x07\x9e\x6b\xe7\x65\x18\x56\xdb\x1b\x66\xcd\x29\xa7\x2a\xca\x04\xd5\x64\x59\xc6\xc4\x75\x34\xab\x7c\xb6\x8b\x81\xdf\x63\xff\xe4\xa2\xa2\xae\x3e\xa6\x2d\xdc\x51\xd5\x6c\xbb\x9c\x12\x7c\x94\xd5\x4d\x9c\x94\x98\x27\xf2\x3a\xeb\xe6\x7b\x18\xc5\x71\x0e\x2c\x3c\x02\xaa\xad\x60\xb8\x15\xf7\x1a\x96\x83\xff\x09\x5c\x12\x38\x3b\x6e\x29\x8a\x9b\xa3\x35\xae\x9a\x3c\x7d\xd2\x57\x9b\x36\xc6\xaa\xf1\x08\x72\x3e\x48\x3b\x3e\x38\xf1\x55\x53\x6e\x39\x94\x1a\x9f\x4b\x12\xfe\xe4\x89\x8e\xe2\xf6\xe7\x32\x92\xe8\x58\x2a\x2a\xed\xd6\x84\xfc\x01\x55\x30\x14\xc5\xec\x9d\x93\xea\xb0\x84\xef\x7c\x92\xb6\x3f\x50\x10\x37\x83\xca\x1d\x70\x05\x15\x55\x98\x1c\xfb\x02\xf5\xb5\x40\xb3\x43\x78\x3a\xfe\x47\x3a\xaa\xb1\xf3\x54\xbd\x5f\xe0\xb3\x1a\x1b\xec\xd0\x66\x7d\x57\x5e\x83\x09\xbb\xab\xc4\x4c\xb6\x22\xd0\xe2\xb3\xdb\xd5\x80\x1c\x73\x5c\x28\x3d\x02\x2c\xc5\x43\xa3\x2f\xb2\x3c\x0e\x0d\x96\xa5\xc3\x94\x20\x87\x98\x36\x94\x7e\x38\x2f\x8c\x58\xbc\x85\x11\xc5\xd6\x3b\xed\x2c\x7e\x15\x27\x14\xe9\x88\xd6\x35\x6c\x2d\x4c\x17\x5f\x4f\x7c\x99\xa1\x1b\xa7\x69\x4f\xed\x6e\x81\x1c\x78\xc0\x2a\x62\x0c\x26\xdb\x50\xc9\xa2\xbe\x4d\x6c\x11\x85\x28\x7c\x39\xc4\x74\x35\x92\x7c\xa3\x8a\xbb\xe1\x20\x1d\x6d\xe2\x79\x5d\x5c\xd4\x3c\xaf\x4e\x81\x39\x36\xf9\x00\xc4\x2d\x5c\xba\x45\xf9\x47\xea\xb8\x0d\x6c\x5b\xf9\x20\x0d\x57\x6c\x6f\xd6\xb7\xb7\xff\xd9\x58\xf3\x77\xab\xce\xa4\x0b\xba\x31\xf4\x7e\x03\x8b\x5d\x3b\xb3\x71\x64\x97\xc9\x93\x40\x39\x76\x03\x3e\x81\x83\x1a\x28\xec\x8f\x00\xab\x46\x26\x17\x44\x9a\x40\x2e\x68\x55\x38\x3f\xda\xad\xff\x2f\x74\x1c\x49\xdc\xff\xef\x6f\x77\x14\x72\xfe\x14\x1c\x52\x38\x1e\x2c\xe3\x8f\xb5\xc3\xb3\x8d\xe1\x67\x42\x03\x1c\x66\xb3\x13\x5f\xbb\x83\x67\x8f\x23\x12\xda\x9f\xcc\x29\x30\xa9\xf1\x38\xd1\x4e\x82\x37\x7d\xbe\x49\x41\x27\x8b\xf2\x15\x48\xf6\xa9\x4a\xaf\x2b\xb5\xd2\x56\x12\x45\x40\x1f\x5e\x6d\xe9\x4c\xfb\x7d\xfb\x58\xd2\xdd\x4d\xe3\xc7\x63\x9f\xa2\xfc\x38\x78\x58\x97\x88\xd6\x89\xa2\x1a\xae\xe6\x6c\x87\xfc\x51\x38\xd9\x5b\x70\xc2\xe2\x6d\x7f\x3a\xf6\x5d\x58\x1b\x38\xc6\xf9\xaf\x00\x8d\xd6\x42\x47\xfc\x57\x4a\xb0\xea\x94\xa6\x6d\x39\xab\x73\x86\x9f\x50\x04\xee\x58\x4e\x1d\x45\xc4\x5f\x69\xb9\x9c\x35\x93\xd9\x5a\xa5\x50\x1f\xe3\x58\x60\xf0\x03\xb6\x75\x94\x43\x7c\x59\x91\xb6\x11\xe3\xba\x21\xc2\x48\xc5\x8f\xf5\x1b\x8a\xa6\xf1\x37\x14\xd6\x38\x8c\xb2\xb0\x8c\x99\x1c\x4e\x34\xc5\x0f\x2b\x7e\xe1\x9b\xaa\x71\xf1\x42\x8d\x70\x36\xca\xd2\x75\xae\x7e\x3a\xba\xb3\x25\xaf\x70\xb8\xb9\x6a\x5c\xed\x9f\x35\x6b\x0b\x62\x1b\x9c\x99\xea\xa6\x77\x6e\xb8\xe2\xde\x6a\x40\xeb\xf6\xcb\x75\x44\xce\x0c\x7e\xc6\x32\x15\x24\x74\x93\xb8\x7d\x39\xd2\xa4\xac\x2c\x75\x8e\x49\x12\xdd\xf3\xcd\xa8\x5b\xaa\x12\x0c\xb2\x28\xa7\x0a\xaa\xd0\x11\x60\xc7\xbd\xa3\xbb\x09\xdf\x99\xfa\xe8\xf3\xf3\x8b\x20\x47\x18\x0e\x7d\xad\x1e\x27\xc7\x07\xf4\x6e\x7c\xad\x52\xbe\x86\x84\x23\x68\xf8\x1d\x75\xde\xde\xbd\x8e\x3a\xcf\x83\xa1\x49\xca\x9a\xc4\x87\x5a\x4e\x23\xea\xb4\x6a\x0b\x3f\xad\xa6\x67\x18\x25\x69\x16\x15\xeb\xd4\x81\x2d\x6a\x6e\x95\x43\x8b\x9d\x04\xab\x2b\xb4\x46\xd5\xd9\x2a\x7b\xd5\xbb\x49\xdf\xa1\xd0\x51\xac\x31\x1d\xc6\x2c\xf6\x88\xdd\xcd\xdf\xaa\x14\x03\xff\xdd\x77\x82\xcd\x3a\x17\x84\x6a\x9b\xf1\xc1\x2d\xc0\x4b\x48\xe8\x7c\x44\x3f\xc0\x2c\x0d\x53\x26\x72\xcf\x62\xdb\xc4\x5d\xe9\x7b\x46\x98\xcd\xee\x36\xdf\x04\x9e\x18\x6b\x98\xd6\xa8\x8f\xb9\xe5\x93\x6f\xa6\xd8\x95\xf7\x2c\xb6\x97\xd3\x32\xe9\x19\xc7\xf1\xfb\x75\x0e\x65\xff\x1d\xd6\x13\xdf\x4c\xe1\x99\xe9\x83\x59\xe8\x48\xa8\xa4\x67\xc5\x03\xb2\x2e\x4e\xf9\x96\x4f\x93\x53\x15\x9a\x5c\xea\xa2\x08\xb9\xb9\x6c\xc8\x37\x4d\xde\x5f\x6c\x57\x6d\x66\xfa\x16\xfd\x59\x48\xeb\x00\x2b\xc0\xd7\xcd\x43\x16\xd9\x84\xb3\x2b\x48\xc7\x71\xa8\xe9\x22\x30\x27\x68\x73\xaa\x09\xe9\x94\xd9\x3c\x65\x11\x32\xad\x2d\x25\xa5\xce\x86\x01\x19\x46\x49\x34\xe4\xde\x30\x07\x8e\x71\x2e\xc6\x27\x4d\x39\x4f\x6b\xf2\xa8\x5a\xf2\xde\xbf\x43\xfa\x59\x70\x04\xd3\xf0\x97\x85\xf6\xda\x20\x1a\xe5\x66\xcd\xf6\x14\x8b\x3f\x97\x64\x58\xfa\x52\x75\xcb\xfd\x65\x13\xe0\xb0\x32\x03\x31\xb5\xbb\x39\x4b\x78\x46\x87\x6f\x67\x1a\xb3\x0a\x3d\x53\x18\xf0\xb7\xb3\xc4\x25\x56\x08\xc3\xe2\xaa\xe1\xdc\xd8\xda\xd9\xa5\x62\xd2\xe5\x98\x9c\x2e\xe2\x41\x16\x49\x2e\x9f\xd3\xba\x81\xe0\x13\x37\x38\xdb\xe0\xcb\xdf\x52\x7c\xbb\xe7\x5c\xce\x81\x78\x2b\x0a\xe3\x88\x7d\x70\x0e\x3c\x30\xf1\x98\xfd\x07\x3a\xea\x0b\x0f\x35\x92\x5f\xa4\xab\x36\x1b\x90\x3a\xaa\x43\x5e\x5f\xd3\xf9\x07\x6c\x7a\xa0\x26\xdf\x6a\x22\xea\xfd\x62\xbb\x67\x87\xd6\x24\x69\xa6\x19\x26\x4e\x29\x86\x89\x53\x1a\x90\x20\xdc\x8c\x22\x1b\xf4\x71\xa0\xc8\x91\x3e\xae\xa1\x36\x32\x9b\xec\xf0\x34\x58\xaf\x8c\x6b\x40\x3a\xcf\x32\x7f\x13\x16\x47\xda\xd1\x15\x58\x13\x8c\xb6\x78\xf6\xad\xf0\x50\xb1\x04\xae\xe2\x47\x91\x86\x7e\x47\x3b\xb2\xdf\xa3\x04\x07\x52\x3d\xef\xd7\x32\x72\x67\x5c\xfe\xbc\x9b\x66\x3d\x18\xe5\x7d\xbe\x16\xee\x12\x44\x77\x14\x59\x78\x98\x0e\x47\xb6\x88\x8a\x68\x15\xe9\x24\xf7\x1b\x5f\x3e\xc8\xc5\xa9\x53\x4a\xe8\xe4\xa8\x52\x3b\x30\xa3\x51\x66\xc3\x88\x8c\x10\x79\x42\x42\x4c\xa6\xcb\xc6\x38\xfe\x35\x67\x8e\x30\x7e\xea\xae\x17\x9b\x99\x82\xeb\xb4\x2e\xb6\xa8\xbe\x44\x26\x67\xf3\xb6\x5d\x9a\xaf\xee\x4c\x9c\xf6\x51\x78\x10\x16\x65\x7f\x96\x1c\x57\xdd\x76\x6b\x69\xb6\x62\xb3\x7c\xa7\x47\x92\x5d\x46\xd6\x04\x51\xe6\x51\x5d\xd5\xba\xa2\xfa\x86\x7e\x86\x43\x83\xff\x2a\xd0\xfd\x12\xe4\xe0\x89\xd2\x5e\x4d\x08\xca\x53\x8b\x33\x2d\xad\x03\x23\x79\xc3\xfc\x6e\xa0\x11\xcf\x0d\x6a\x91\xd1\x70\x94\xe6\x79\xd4\x8d\xd1\x09\xa4\xf9\xc4\xf8\xda\xb7\xdd\x9b\xf2\xd0\x8c\x4a\xab\x1e\xae\xfe\x6a\x03\xbb\x51\x28\xbc\x36\xfb\x21\x07\x9e\x6b\xf7\xd3\x54\xf7\xc1\x9c\x0b\xb4\x87\xec\x23\x97\x51\x54\x90\x64\x29\xbd\xbb\xc3\xb8\x55\xbf\x26\xc7\xb7\x4f\x78\x0e\x6d\xf1\xa0\x82\x8b\x6f\x9d\xf8\x8e\xc4\x73\x38\x2c\xb0\x98\xb7\x4d\x54\x59\x07\x6a\x4e\x4e\xa9\xc0\xf5\x15\x6d\xe8\x4a\xc4\xcf\x77\x94\x9b\xff\xb9\x4e\x03\x73\x7d\xcf\x0c\x4d\xdf\x1d\x6b\x8c\xa0\xa3\xf1\x12\x34\x9d\x50\x92\x74\x6d\x62\x97\xa3\x30\x32\x59\x24\x81\x25\xce\x99\xfb\x8a\x84\xe7\xbe\x4b\x3c\x2e\x5b\xe9\x1b\x76\x31\xba\xea\x7d\x6a\x02\xa8\x9b\x30\x4b\xf3\xbc\x55\xc3\x8f\xee\x71\xd7\x8e\xb1\x36\x36\x65\x7f\x20\x8c\x2b\x0e\x6b\xf0\xbc\x6f\x2c\x6a\x60\xf7\x26\xa2\xba\x59\xcf\x5e\xd9\x52\x28\x55\xf4\x02\xc3\x8c\xfe\x09\x56\xb4\x64\xb7\x77\x2a\x8d\xac\xde\x0e\x25\xb1\xc2\xbb\x4c\xa2\x3f\x4d\x3a\x7f\x0a\x76\x1e\x2d\xc4\x57\x54\x37\x3f\xa0\x0b\xcc\x3b\xa8\x1a\x11\x98\x69\x56\x4c\x06\x3d\x00\x73\x96\x01\xaf\x24\xf1\x80\xaf\x59\x9c\x98\xc2\x5f\x91\xec\x51\xd2\xaf\x39\xac\x27\xb5\xc3\x7a\x52\xad\xb7\x28\x8e\x1f\xc3\x1f\xc2\xfa\x7e\x8c\xfd\x26\x62\x52\xd5\xa3\xe1\x31\x7f\x4a\x1a\xcb\x38\x38\x40\xce\x22\xb9\x20\x1a\x0b\x66\x02\x45\xf6\x87\x4b\x18\x34\x98\x4e\x3e\xc5\x57\x6b\x8f\x8c\x55\xd1\xfb\xac\x97\xe9\xfc\x1a\xb7\x40\x61\xf9\x3c\x38\xa1\x92\x8d\xa4\xd4\xaa\x37\xc6\x49\xf5\x1a\x6c\x23\x36\x05\xa8\x3c\x30\xdc\x3b\xa6\xd8\x27\xf6\x2c\xb6\x0b\xb3\x62\xd3\xe5\x65\x02\xcf\xc0\xed\xfd\x50\x09\x22\x7f\xa8\x2a\xeb\x61\x5a\x8e\xd2\x64\xa6\xb5\xdb\xc9\xde\xd1\x8c\xa1\x08\xf9\x11\xbd\x0c\x66\xf2\xa3\xf1\x4e\x67\x16\x87\x65\x8f\x80\x1e\x18\x30\x28\xe2\x62\xfd\x0c\xc6\x0a\xa2\x7b\x56\xb1\xa2\x5d\x9d\x72\x31\xf6\xee\x6d\xe7\x6b\x51\x2e\x40\x2f\x6e\x95\x51\x8a\x16\x5c\xc4\x84\x1b\x7e\x67\x0a\x85\xf9\xd5\x85\x76\xba\x06\xf8\x9f\xec\x10\x1d\xaf\xf9\x73\xaa\x6f\xb2\x9e\x4d\x6c\xe1\xa4\xac\x05\xe2\x5c\x8d\x0e\x5f\x2b\xb5\x40\x22\x06\xc8\xe7\x7c\x63\xd3\xb9\xc0\x57\xea\xb9\x76\xae\x85\xe8\x65\x07\xaa\xde\xa9\x3f\x6c\xc2\x07\xe5\x69\x6c\x32\xc5\x3d\xf5\x81\x2a\x09\x7c\x50\x53\xd2\xce\xf3\x28\x26\x82\x33\x9c\xa8\x50\x5b\x42\x72\xfc\xb6\xf6\x0d\x80\x7b\x90\x62\x8d\x2a\xdc\xdd\x68\x90\xc2\x00\xb9\x5e\x8d\xab\xfa\x62\x50\x8b\x45\xd5\xfe\x48\xf2\x47\xe8\xeb\xf0\x74\x3b\x27\xea\x38\x9a\x9b\x78\x6b\xf1\xc4\x44\xe7\xcc\x1e\xea\xb4\x0e\x2a\xb5\xb4\xe7\xe7\x79\x15\xed\x44\x95\x19\x01\xf6\x31\x5d\x90\x9d\x9b\xb8\x98\x6b\xf4\x8b\xd8\x45\x94\x62\xf8\xc2\x2f\x75\x94\x16\xeb\xd3\x1d\x78\x2a\xee\x45\xab\x7d\xe4\xf2\x3e\x7b\x04\xd7\xab\xcf\xed\x30\x36\x65\x2f\x4a\x67\xbc\xf5\xe5\x7c\x8f\xd4\x41\xaa\xdf\x65\x4b\x36\x55\x55\x20\x76\x88\xb2\xfb\xa2\x0d\x8b\x19\x0f\xa7\x38\xaf\xb0\x97\x7f\x00\x7b\x21\xa9\xbb\x1d\x2e\xf1\xb8\x62\x15\x9c\xe7\x2d\xed\x7a\xbd\xa5\x12\xd6\xdd\xcc\xda\x9e\xd4\x2c\xa4\xae\xa7\x8b\x7c\x8d\x62\x86\x03\xcb\xd5\x37\x06\x08\xa8\xec\xe1\x2b\xba\x25\xed\xa4\xee\xdc\x4d\x59\x78\x4e\x70\xf7\x9a\xd1\xf1\xbc\xcb\x64\x96\x09\x53\x97\xec\x5e\x70\xcf\xde\x72\xfa\x84\x68\xc5\x62\x9a\xe4\x89\x2f\xed\x91\xc8\xef\x0e\xc5\x9c\xf4\x1d\x24\x85\xb9\x1f\x5c\x49\x4e\x6e\x9d\xd4\xe8\x68\xaa\xa5\xa1\x3a\xd8\x64\x99\x5d\xd7\x6a\xda\x1f\x8c\xbd\x98\xe6\x23\x0a\xeb\x83\x9e\x2d\x56\x0a\x57\x8a\x5d\x97\xa7\xe2\x9e\xdd\xbb\xdb\x76\xd5\xc4\xa5\xe1\xa6\x68\x81\xc2\x29\xa6\xba\x8f\x74\x43\x54\x62\xb3\xbe\x2d\xa2\x70\xc6\x23\x1f\xbe\x85\x71\x45\x72\xec\x44\xa0\x6b\x95\x9b\xcf\x9f\x6a\xd1\x98\x84\x39\xae\x6b\x21\x3b\x37\x4d\x51\x0a\x02\x30\xab\x2d\xf4\x3e\x78\x04\x9d\x58\xea\x65\xa6\xdf\x17\x51\x7a\xc4\x46\x97\x14\xfb\xde\xcf\x02\x4d\xf8\x8f\xf5\x0c\xbf\xe8\x68\x13\x5d\xbe\x09\xbf\x51\x9a\x28\x71\xa9\x18\xd7\x44\xe4\x1a\x79\x2f\x36\xc1\xd2\x4c\x18\xc6\x26\xe2\xf6\x3d\x21\x97\xf3\x10\xaf\xb3\x81\x42\x32\x1a\x53\x84\x83\xa8\xa5\xfa\x71\xce\x29\xe4\xef\xb9\x26\xa5\x65\x13\x39\xaa\x2f\x9c\x78\xb0\x6e\x08\x00\xd8\x13\x40\x90\x7f\xc3\xf3\xbb\x16\xd4\xd3\x81\x58\x14\xbe\xef\x47\x70\xb0\xa5\xe9\xd3\x73\x86\xdf\x74\xfe\xd7\xd0\x64\x49\xd4\xd2\xb0\x0d\x9a\x0e\xc1\x73\x34\x14\xc2\x20\x22\x26\xe3\x25\x5a\x16\xb5\xa4\x66\xfb\x33\x4a\x15\x6b\x36\xca\x97\x23\x1b\xf7\xc0\x79\x80\x23\xff\x36\xf6\x83\x98\xa7\x96\xe2\x4f\xd5\x91\xe0\x7f\xf1\x1f\xc1\xe7\x03\x72\x97\x6b\x63\x7c\xa3\x88\xcd\x87\xe9\x6a\x94\xf4\xe7\x3c\x63\xfc\xc3\x1d\x55\xdc\x40\x34\x88\xc1\x39\xa3\x98\x1e\x2e\x93\x37\x23\x10\xed\x86\xb4\x47\x3e\x4c\xd3\x62\xa0\x32\x48\x5b\x69\x42\xf8\x7a\xa2\x34\xd3\x06\x51\x38\xc0\x76\x47\x5c\x73\x9f\xa0\x0c\x58\x9b\x2c\x92\x80\xd2\xd2\xf9\x71\x8d\x9d\xd3\x29\x95\xdf\x0b\x94\xd8\xcd\x29\xd5\x22\x3c\x0b\xdb\x5f\x63\x8a\xc0\x8a\xb8\x12\x28\x71\x19\x46\xdf\xc1\x06\xdf\x0d\xb4\xd6\x7c\xd2\xb3\xb1\xc1\x42\x14\x5c\xa4\xc6\x4b\x36\x55\x34\x84\xd7\xc8\x9d\xad\x2c\x10\xc1\x37\xaa\xb1\x2c\x2d\x8b\xd8\xac\xa3\x3b\x55\x70\xa0\xad\x45\x0f\x16\x6d\x18\xd5\x9e\x4d\x22\xce\x10\xc3\xd8\x02\xdb\xc9\xd7\x0a\xb8\xb7\x6e\x86\xa6\x30\x89\x6d\xd5\xfb\x96\x6b\x4d\xca\x0a\x16\x75\x88\xb5\xe1\x66\x37\x81\x9f\x84\x1c\xfb\x18\x40\x33\x0a\x2f\x25\xce\xbc\x17\xdc\x1f\x99\xcc\xc4\xb1\x8d\x59\x15\x04\x86\xe6\x4a\xa0\xb0\xab\x3f\x1c\xd7\xb8\x90\x14\x23\x6c\x14\xae\xc4\x16\xba\xe3\x92\xd4\xa8\xde\x11\xe9\x64\x88\x89\x30\x52\x72\x8a\xe0\x73\x71\x91\x48\x2a\xb2\x82\x99\x20\xe8\xc7\x9d\x08\x72\xf5\xe3\x12\xef\x36\x7c\x52\xc8\x59\x5f\x72\x91\x9a\xdb\xfa\x4e\xfd\xfb\xd3\xa6\xac\x79\x11\x31\x23\x84\x43\xf6\x7a\x94\xaf\x92\x17\x58\xb6\x71\xfc\x80\xf7\x07\xef\x2b\x8b\xf7\x38\x6a\x48\x88\x48\xce\x29\x97\xef\x61\xac\x5a\x04\xcf\x77\x34\xea\xec\x2a\x4e\x73\x78\xdb\x33\x9d\x46\x89\xbb\xd0\x46\xab\xa6\x1b\x33\x1a\x0e\xde\x2f\x0b\x0f\xf0\xcd\xa4\x89\xd2\xb3\x6b\x88\xeb\x1a\x63\x20\xd0\x4c\xff\x0d\xe7\x34\x3f\xe2\x28\x2d\x38\x69\xfe\xbc\xc8\x98\xce\xa0\xdc\xc3\x37\x13\x3f\x00\xb9\x8d\x97\x15\x8a\x8d\x72\x01\x72\x1d\xe8\x33\x3f\x2b\x06\x73\x8a\xd8\x1a\x3c\x39\x08\xff\x0f\x8f\x15\xa1\x0d\xd0\x38\xe8\x39\x14\x5a\x21\xe9\x94\x78\x4c\xfb\x10\xa6\x1b\xaf\x2b\xd1\x7c\xb8\x74\x82\x07\x6b\xa2\x59\x23\xd5\x71\x0a\x6d\x60\xf2\x4f\x07\xad\x2f\x7d\x4d\xae\xa7\x2c\x74\x35\x68\x90\x2c\x89\xfa\x4a\x44\x41\xe2\xc8\xea\x21\x25\x0c\x55\x82\x15\x69\x41\xb6\xf6\x4b\x5f\xe3\xa2\xce\x19\xd5\xdc\xf8\xaf\x94\x08\x1a\x4c\xad\x12\x0c\x7f\x96\x23\xbc\x26\xa0\xd6\xb3\xed\x30\x4d\x63\x1c\x63\x4e\x8b\xdb\x15\xc3\xd0\x68\x2c\x9a\xf0\x3b\x9c\x0f\xf7\x54\x6f\x1b\x7d\x02\x4f\xf9\x00\x16\x1d\xf2\x81\xb7\x28\x3c\xc5\x89\xb6\xb3\xa3\x92\x49\x77\xc0\xbd\xc1\x9d\xdc\x8a\x3c\xdf\x33\xf9\x87\x29\xf5\x37\xb9\x88\x89\x71\x30\x7c\xd3\x20\x73\xfd\xfc\xfc\x93\x14\x8d\x4b\x63\x33\x9d\x6d\xd2\x1e\xeb\x03\xd5\xab\xb0\x40\xb0\xa2\x47\x15\x08\xfe\x6a\x5d\xaa\x9d\x5e\x43\x3a\xf2\xe8\x30\x87\xe1\x00\xcd\xa2\x40\xb5\x3c\x02\xf3\x8e\xd6\x46\x67\x72\x54\x00\x99\x1e\x06\x76\x09\x28\xbc\x2b\x5a\x1f\xee\x38\x4e\x0f\xee\x71\x54\x42\x1e\x0f\x10\x58\x8a\x29\x15\xb0\x25\x30\xb5\xaf\x13\xe4\xd1\x35\x00\x2f\x1c\xe0\x32\xc5\x05\x4d\xef\x33\xb0\xe1\x0a\x84\x7c\x44\x46\x9a\xd2\xb2\x5a\x52\x17\x23\xff\x03\x3c\x0c\xdf\xb8\x38\xa1\xcc\x2d\xe4\x10\x70\xe0\xdd\x1d\xab\x63\xed\x62\x8d\x5a\x5e\xf7\x2f\xd0\x80\xe1\x80\x7f\x1c\x76\x42\x10\x4e\x8f\x6a\x33\x96\x26\x38\xa8\x70\xca\xfe\x4c\xd3\x90\xfd\x6c\xaa\xd6\xe2\xfa\xf3\xcb\x3e\x20\xf1\xc0\x76\x71\xe4\xcd\x37\x4d\x3d\xb9\xc3\x28\x8f\xad\x71\x41\x0c\x6c\xc1\x15\x25\x49\x72\x45\x45\x21\x2f\x46\xf9\x1c\xcd\xb0\xeb\xbf\x5b\xf4\x1d\xfd\x9e\xc4\xf8\x3f\x7b\x7c\xe2\x83\xf9\x33\x1a\x45\xf3\xbd\x9f\xef\x78\x98\xc3\xc8\x64\xc5\xae\x96\xa3\x16\xbc\x8b\x95\x84\x8c\xc9\x5d\x9a\x32\x51\xa0\xf0\x50\x0b\x0e\xaf\x10\x20\xbd\x01\x37\x44\xa4\x63\xaa\x31\x46\x59\xe8\x4d\xf2\x23\x9d\xbe\x8c\xf7\x6a\x4f\x05\x4a\xb7\xe3\x1c\x16\xb8\xe4\x06\x54\x99\xf3\x62\x9d\x8c\xb7\xe5\x48\x8a\xfe\x37\x72\xfe\x01\x6b\x3d\x0e\x34\x28\x92\xa0\x37\x11\xcc\xf2\xcf\xd3\x3e\x15\x15\x1e\xef\xdd\x64\x69\xd9\x1f\x30\xd3\xb8\x8f\xb4\xaa\xa7\x13\xf6\x19\xef\x59\x82\xfa\x41\xa6\x60\x97\xeb\x2a\x08\x57\xf2\x02\xe4\xd7\xf4\x41\x6c\xa9\x2b\x6a\x7b\x5d\x51\x3f\x58\x0c\xb2\x68\xb9\x00\x75\x90\x24\xba\xab\xb1\xc4\x6f\xb3\xb4\xb6\x34\x7d\xfb\x89\x29\x06\xa6\xf8\x3b\xf4\xf5\xa2\xce\x58\xbd\x35\xaa\xab\x77\xb9\xda\x20\xbc\xa6\xb4\x61\xe0\x25\xbf\xc6\x41\x29\xf2\x3c\xb7\xa8\x7c\x80\xc5\xf1\x0a\x6d\x46\x61\xf1\xf3\x4f\xc0\xac\x05\xb0\x17\x33\x93\xca\x06\xe2\xed\xef\xc2\x28\x21\xb6\xfc\x7f\x08\xf3\xcb\x5d\x21\x00\x4b\x21\x84\x7c\x70\xa2\x76\xcf\x0d\xb4\x06\x62\xf9\xb4\x08\x3a\x22\x25\x5a\x85\x7f\xb8\x47\xeb\x0a\x16\x78\x67\xc7\xb7\x7d\x6c\x99\x28\x8e\xc3\x7b\xe4\x6a\x23\x5b\x80\x74\x1b\x00\x6e\x5b\x26\x34\xe3\xf8\xbd\xb9\x89\x92\x52\x85\x4a\xba\xd8\x3d\x95\xe0\x7b\x75\xec\xf3\xb9\x3b\x3a\xb4\xde\xf0\x1b\xcc\x49\x0d\x1b\x7c\x83\xf0\xc3\x0a\x7c\x21\x7c\x3d\x87\x1b\x18\x5f\x89\x84\x2b\x2a\x0a\x2b\x15\x2a\x69\x59\x50\x6b\xf6\xbc\xab\x02\x8d\x4a\x9b\x15\x69\x4b\xb3\x01\x72\xaf\x20\xdf\x04\x9a\xdd\x4b\x94\x3a\x5b\x8a\xcb\x11\xe9\x6e\xbe\x76\xa1\xdc\x8a\xb5\x23\xb7\x0a\xa5\x3d\x58\x65\x84\xce\xf9\xf4\x79\x9a\x85\x76\x87\x22\x3d\x15\xf4\xbe\x68\xba\xb7\x1c\x77\xe9\xa3\x38\xfa\x78\x0d\x68\x43\x09\xbe\x16\x98\xf3\x57\x75\x81\x1b\xb4\x70\xf0\xd6\x3e\xae\xb5\x41\xd3\x84\x72\x57\xed\x58\xe1\x96\x2f\x6b\xac\x60\x6c\x0f\x51\x89\x85\x7e\x4a\x8e\x6c\xfa\x7a\xbe\x69\x8a\x09\x4c\xe4\xb9\x22\x10\x5e\xbd\xa7\x34\x39\x8e\x69\x8e\x06\x05\x6a\x19\x65\x69\xaf\xa4\x7e\x52\x02\x34\x20\xd5\x76\x35\xd0\x0e\xd5\xc7\x4a\xf5\xe7\x7e\xa0\x08\x29\xdf\xc7\xdb\x60\x2c\x4e\x60\x0f\xe0\x38\x01\xc5\x3c\x23\x4f\x54\xae\xe7\xd5\x40\xb1\x01\x4f\x93\xd7\x1c\x5c\x38\xd0\x8e\xc0\x08\x54\x4b\x24\x8e\x55\xb6\xe0\xa2\x96\xba\x89\x4d\x9e\x67\x29\x3b\x1a\x28\xec\x21\x6b\xc3\xd7\x8d\x6d\xaa\x45\x96\x72\x1d\x9f\xb5\x78\x14\x57\x24\xab\x23\x0a\x92\x60\xb3\xc7\xff\xfc\xfc\xbe\x76\x6c\xfa\x2d\x95\x49\xe2\x2c\xa7\x58\x9e\xa6\xcc\xe8\x72\x75\x22\xe3\x85\x9c\x94\x51\xf5\x19\x39\x7a\x1b\x88\x8b\x73\x6b\xdd\x64\xba\x76\x3b\xe7\xcb\x9d\xa4\xe5\x25\xe8\x53\xef\xee\x2e\x67\xd6\xae\x99\xf5\x7a\xaf\xac\x1f\x8e\xd3\xc1\xdf\x9d\x1e\x8e\xfd\xed\x17\xcb\x2c\xca\x47\x59\xd9\x73\x7d\xa3\x8e\x57\xca\x37\xe7\xbe\xaa\x82\x4a\xbb\x1a\xd1\xdf\x3e\xa4\xb6\xd9\x31\xd8\x46\x94\x7b\x37\xb0\x49\x5c\x88\xee\x3c\x39\x70\x06\x0a\x2f\x0f\x2d\x25\xfe\x07\x1c\x74\xee\xaf\x5c\xd3\xf2\xcd\xc0\x8b\xcd\x6d\xe9\xc8\x89\x93\xd9\x51\x9a\xe7\x50\xb8\xf5\x3e\xe6\x15\x7c\x09\xdf\xe8\xf6\xb5\x2a\x18\x8f\x92\xfe\x36\x55\xb0\x39\xab\xa4\x6e\x58\x19\x97\x7b\xd5\x51\x82\x75\x0e\x84\xd7\xfa\x3f\x8d\x69\x13\x01\xdd\x06\xf5\x93\xbc\x30\xa3\x78\x53\xfc\x74\x4c\xc5\x4f\xd3\xda\xb3\x8b\x8b\x44\x6a\x10\x0e\xb0\xa6\x98\x4c\x26\xf0\xd5\x94\x23\x9e\x2b\xd8\x9a\x38\xea\x27\x2a\xdb\x78\x41\xa9\x15\x4c\x93\x52\x55\x5f\xdd\x35\x84\xab\x54\x14\xc7\x3f\xc0\xbb\x2a\x15\x80\x7d\x5e\xf1\xa1\x7a\x57\x04\x9c\xff\x8b\xab\x07\x86\x51\x1c\xa6\xd9\x48\xe5\x90\x58\x51\x8f\x6f\x54\xbb\x52\x91\x16\x24\xae\xa1\xd4\x9d\xe0\x70\x4a\x23\xb2\xb7\x71\xab\x51\x1a\x13\xcb\xb6\x8a\x90\xe8\xad\x25\x5a\x9a\x7e\x9b\x7d\xed\x51\x1a\x47\xe1\xfa\x8c\x2e\x07\xbe\xaa\x23\x24\xad\x09\x73\x42\xf7\x5a\x72\xa2\xb6\xee\x73\x28\x60\x3e\xaa\xd2\x72\x10\x3d\xa2\x9a\xa9\x0d\x57\xba\x1d\xb2\xdc\x33\x79\x9e\x0e\x76\x48\xfc\xf2\xfc\xfc\xbe\xbf\x43\xc7\x28\x87\x70\xe4\x65\xe0\xeb\xde\x0b\x14\xe8\xf0\x38\xf5\xcc\xe2\x78\xfd\x84\x19\xb0\x60\x84\x3e\xa8\xa9\xd8\x8d\x3d\x68\xe7\xaf\xc8\xcf\xc0\x21\x0e\xb9\x13\x96\xc0\x1b\x6f\xaa\x45\x56\x67\x23\xdc\xbe\x0f\x11\x9e\x21\xbc\x7e\x13\xce\x10\x80\x03\x7f\x8e\x2e\x2d\x1c\x46\xf7\xe1\xe7\x08\xa5\x6d\x75\xd8\x23\xc8\x39\x1c\x28\x51\xa4\xbb\x8a\xa0\xe3\x8f\xc9\xee\x30\x27\x15\xe0\xae\x78\xc8\xb3\x9a\x44\xef\x0e\xbc\x4e\x1c\x25\x7f\x41\xa8\x6e\x27\xc2\xe7\xe4\x0e\x7e\x34\xde\xfa\x45\x2f\x9a\x58\xcd\x04\x0e\xde\x6b\xd4\xe2\xe5\xaa\xc0\xbe\xe9\xe1\xb7\xb1\x54\x51\x3f\xb8\xa9\x50\x76\x97\x08\x12\xce\x38\x97\x29\xcf\x64\xef\x5e\x40\x4e\x0a\x1b\xc7\x46\xa1\xaf\x4e\xd4\xd7\x8a\x4e\x98\xf6\xa3\x58\xf1\x88\x62\x8f\x09\x3f\x5b\x03\x1d\x4c\x98\x95\x24\x35\x4b\xd3\x8c\x67\x45\x95\x96\xaf\xa7\x30\x22\x4f\x13\xc6\x61\xdd\x1a\x86\xc1\x88\xb6\xaa\x42\x4c\xbd\x3d\x55\x80\x5e\x5c\x6c\x77\x4d\x9f\x71\x01\xd2\x21\x42\x4b\x46\x7a\x47\x9a\x8e\xba\xb5\x28\xb1\xfa\xc1\x7e\x9b\x16\x96\x0c\xe8\xe6\xdf\x78\xba\x5d\x44\xc2\x42\xda\x98\x9e\xf6\x3b\x7d\x10\x0d\x73\x1b\x2f\xef\xa4\x7f\x46\x5a\x76\x4b\xc7\x8b\xf8\x5e\x1b\xfb\x7c\x06\xe2\x07\x44\x27\xb3\x60\x11\x74\x90\x14\x07\xbc\x9a\x21\xb1\x1a\x0e\x38\x02\xd5\xee\x70\x0f\xf3\x84\xe0\xff\x2e\xaf\xf9\x1a\x06\x98\x2b\xc3\xb4\xb3\x24\xc5\xa7\xd0\xe8\xe5\x28\xb3\x43\x3e\xaa\x18\xf3\x41\x9b\x1d\x31\x15\xf3\x56\xd7\x58\xd3\xe0\x24\x01\x78\xc2\x10\x32\x6c\x7b\xac\x62\xa0\xf0\x91\xfa\x3d\x8c\x83\x0e\x9b\xeb\xc7\x81\x22\x32\xd6\x3c\x0b\x26\x59\x2f\x06\x51\xd2\x27\x0f\x0b\x55\xf9\x23\x8a\x10\x96\xeb\xf8\x9c\xf8\x50\x5c\xde\x47\xc7\x5e\xe5\x92\x31\xf4\xc2\x59\xdc\x72\xf4\x35\xef\xeb\xad\x77\x25\x50\xbe\xf7\x6b\xaa\x37\xa9\x17\xe5\xa3\xd8\x9a\x9c\x75\x41\x04\x7b\x52\x7d\xbf\x60\x52\x7c\x45\x3b\xb3\x95\x33\x6f\x93\x9e\xed\xcd\xd1\xaf\x0a\x4f\xd7\x26\x80\xe0\xb3\xae\x58\xe4\xe1\xf9\x3f\x52\x89\xe8\xe3\x53\xbb\x71\xdf\x73\xfb\xdb\xdd\x2c\x8a\xe3\xc8\x24\x45\xcb\xf7\x30\xbe\x12\xf8\x92\xc2\x2b\x2e\xae\x2c\x4c\x38\x58\x0f\x4d\xd6\x13\xf1\x1d\x2d\xe3\xc8\xd7\xc1\x93\x1e\xe2\x1d\xc7\xa4\xc6\x96\x26\xf9\x43\xbe\x0e\xbe\x55\x47\x44\x2c\x99\xc0\x37\x0a\x12\xfd\x89\xf6\xfb\x2e\x90\x45\xc1\xc2\xdc\xda\x51\x04\x06\x77\x75\x87\xfd\x0f\x03\x2f\xd8\x72\xb9\x49\xa4\x0e\xfa\xa7\xbc\x65\x11\x83\x5f\xc2\xfc\xf0\x4d\x83\xb3\x48\xec\xdc\x36\x9b\xf1\xb2\x97\x27\xc7\x75\x19\x47\x9f\x98\x9a\x46\xc4\x12\x39\xa6\x5d\x8e\x6d\x58\xcc\x28\x15\x9e\xeb\xf4\xa2\xae\xf1\xdb\x2b\x29\xbd\xa7\x8f\xba\x22\x0d\x57\x1e\x57\xa2\xcc\xaf\x63\xac\x30\xdf\xdb\x27\x8a\x50\x85\xcf\x07\xcc\xc0\x1b\x0a\xde\xf3\x6f\x30\x8a\x88\x7b\xc6\x8a\xa0\xe3\x8e\xae\xbd\xbe\x4c\xcb\x0e\xb1\x15\x7a\x22\x99\xa7\x10\xc1\xa7\x4c\x6c\x35\xba\x2e\xf1\xe1\x19\xb7\x67\x3b\x9e\x08\xe8\xb2\x52\xb2\xfa\x17\x63\xc5\xa8\xca\x55\x7c\xa9\x4b\x49\xd0\x57\xed\xc2\x95\x1d\xaa\x4e\xf7\x09\x1d\x68\xd8\xf0\x0f\x52\xe0\x2d\x45\x6e\x7a\x5e\x1c\x87\x5f\xe8\x54\x27\x30\x06\x05\x34\x1e\x42\x67\xe1\x0d\x1b\x27\xd9\x60\x21\x0e\x63\xe4\x1c\x9d\xe9\xd2\x3c\xe3\x05\x37\x10\xc4\x89\x67\xe4\xb7\xe7\x72\x6c\xf2\x41\xe5\xab\xc1\x1f\x72\x42\xfc\x8b\x4e\x94\xdf\x35\x14\x0d\xd3\xd8\x52\x63\x01\xfd\xa5\xeb\x69\x74\x65\xa6\xad\x93\x06\x7a\x69\x7b\xa8\xc8\x0c\x07\x3d\xb0\xd6\x38\x41\x5d\x41\x6d\x51\x88\x80\x8f\x68\x9c\x86\x89\x1f\xf6\xed\xf8\x48\x6a\x0a\x08\xac\x7a\x29\x24\x42\x18\x10\xe7\xf4\xbc\xaa\x57\x47\x01\x60\x07\xe5\x5a\x11\x38\x3e\x8d\x9c\x22\x7a\x4d\x9f\x98\x78\x5c\x2c\x3a\x44\x36\x2e\x8d\xa7\x44\x5b\x85\xda\x88\x26\x9f\x91\x27\x58\x60\x18\xff\x07\x3a\xbe\x82\x9b\x59\x5b\x88\xb2\x18\x03\xb2\x35\x7c\x7e\x9a\x64\x8d\x74\xdd\x50\x9e\xe3\xbc\x5b\xe0\x4f\x23\xd5\x76\x9b\x46\xde\x9f\x47\x42\xe9\xb8\xea\xe1\x38\xae\x50\xa7\xbd\x68\x79\x39\x0a\xcb\xb8\x88\x2c\x93\xb3\x3b\x18\xc1\x92\xb0\xbd\x9c\xd7\x24\x08\x75\xe2\x32\xad\xcb\x59\x66\xe1\xc0\x82\xec\x86\xd5\x31\xf1\x39\x98\xa7\x13\xaa\xb4\xc9\xb8\x1c\xb8\x27\x5b\x55\xb3\x6f\x18\xa7\xb9\xed\x6d\xf3\xe5\xf2\x1b\x81\x12\x26\xf8\x50\x71\x94\x7d\x3a\x56\x8d\x99\x1f\xea\x4c\xa6\xb8\x98\x4c\xe8\x1b\x7c\x41\x9f\xaa\x36\x0b\xd3\xe1\xa8\x24\x66\xf1\x6a\x47\x72\xae\x80\xa6\x51\xf2\x06\xde\x03\xef\xda\x38\x4d\x04\x07\xf9\x75\x5f\xf8\x5f\xf2\xbd\xc3\x9e\x28\x24\x33\xa1\xdd\xe6\x9b\x93\xfe\x28\xf0\xe5\x9b\x97\x03\xdd\x06\x4a\x9f\x87\x8d\x3b\x0e\xcb\x8a\x4f\x1c\x0f\xd4\x2b\x1d\x57\x6e\xcb\x28\x0a\x8b\x32\x63\xce\x5d\x98\xa6\xad\xd0\x39\x87\x49\xbd\x3a\xf6\xa9\x8e\xeb\xf4\xed\xb0\x0d\xef\xd2\x78\x71\x37\xf1\x54\xe0\x77\xe0\xb9\x76\xb7\x8c\xe2\x9e\x8b\xd8\x59\x63\xa3\xa6\x25\xd7\x72\x0c\x81\x3f\x74\xe4\xaa\x3d\x3b\x24\x8d\x65\x6c\x4c\xd8\x0b\xc8\xcc\xc0\x01\x06\xa5\x37\xf6\xc9\x69\xa5\x08\xbf\xbc\x1c\x25\x33\xea\x58\x61\x83\xe3\xd2\xfa\x8e\x81\xe3\x56\x8d\x04\x3b\xcb\x9f\xa9\xe9\xc8\x33\x09\x88\xf4\x18\x3d\xac\xa4\x6b\xe3\x75\x9a\x54\xb1\x0f\x64\x4d\xf9\x46\x63\xc9\xe2\x32\xcb\x50\x5d\x83\x0b\xc4\xf5\x74\xbe\x19\x3f\x59\xf3\x3f\x4c\x16\x55\x7b\xa3\xa5\xc1\xc2\x1e\xfa\x7d\x61\xac\x3b\xca\xc2\x2f\xb6\x7c\x37\xdc\x27\x74\x60\xf0\xb5\x1b\x86\xfc\x1b\xa5\xc9\x2c\x71\x52\x89\x08\x8c\xd2\xfe\x1e\xfb\xee\xa9\x87\x26\xbe\x4b\x80\x4b\x0f\xe2\xda\x4f\x2b\x39\x2d\xb8\xce\x00\x9b\x68\xf9\x8f\x93\x0a\x0f\x75\xd2\x1d\x28\x6b\x03\x13\xae\xcc\xf8\x7d\xba\x8d\x0c\x31\xca\xe3\x9f\xd2\xfa\x81\x17\x7b\x4a\xd5\x77\x46\xb1\xe9\x97\x16\x18\x15\x38\x80\xef\x2b\x31\xce\x33\xba\x5a\x73\xd5\x81\xa9\x07\xe9\x1a\x82\x92\xa6\xc6\x98\x27\x14\xc5\xce\x70\x18\x11\xbd\x7e\xab\xf5\xd4\x53\xbe\x82\x5f\x85\x83\x52\xb4\x9f\x2e\xfb\x2e\xb4\x07\x26\xeb\xd9\xbc\x68\x51\x74\xc8\xd4\xf2\x8a\x52\xff\x8c\x6a\xa4\x0b\x33\x93\x0f\xc0\x66\x29\x8e\x32\x6d\x20\xbe\x69\xa8\xe6\x2c\xfa\x86\x9b\x19\xbf\x54\xa6\xf4\xa0\x17\xdc\x7e\x7d\x42\xe5\xfc\xd3\xb2\x3f\x28\x96\x4b\x20\x9d\x25\x8d\xec\xf1\xd0\xe7\x15\x19\xaa\xc9\xaa\x71\xad\x96\x2d\xd3\xc7\x62\xd9\xea\xba\x2f\x72\xa1\x37\x1a\x24\xbe\xc9\x35\xc8\x67\xfc\xde\x3b\x47\x1f\x10\x26\x7f\x25\x0b\x72\x2f\xf8\xe2\x67\x94\xb9\xa2\x24\x2f\xa2\xa2\xac\x3c\x50\x86\x66\x23\x0f\xcb\x2a\x60\x7c\x33\xde\x2e\x80\x6f\x93\xcd\x29\xe5\x18\x14\x10\x51\x5b\xf9\x6e\xa0\x78\x23\xe0\x5e\x63\x79\x3c\xd4\xf1\x90\xc1\xfb\x0d\xc2\x53\x18\x04\x4e\x36\xba\x8e\x89\x25\xd7\xa1\xa1\x6c\x61\xd7\x9a\x2c\xca\x07\x73\x0a\x03\x8d\x06\x0e\xa9\x74\x56\x1f\x93\xb8\x97\x56\x2b\x6a\x2d\x3f\x41\xaa\x81\x3f\xd1\x24\x5d\xbe\x9c\xa6\xc5\x20\x8a\x63\x76\x38\xe0\x41\xde\xa5\xf5\x84\x9d\x7a\xa1\xd6\x6d\xa6\x00\x20\x43\x33\x1a\x09\xdf\x8d\x6b\xae\x77\x0c\x3e\x17\x1d\x23\x5a\x5e\xd8\x2c\x8d\x84\x53\x80\xb3\xd1\x4a\x5e\xff\xfd\xa9\xc7\x72\xa5\x48\xa2\x67\x70\xe4\x8b\xa7\x03\xc5\x8d\x7d\xda\xc9\x83\x2e\x67\xd0\x06\x67\x16\x02\x87\xd6\x3f\xa3\xb4\xb6\x34\x77\x65\x1c\xe5\x24\x9b\xe1\x5c\xd6\xab\xaa\x25\xf1\xea\x54\x07\xfa\xf3\xf3\xfb\x88\x63\x23\x8e\xa3\xbe\x4b\xba\x8a\x64\x73\xcb\xcb\x37\x6b\xc2\x40\x10\x65\xd7\xb8\x5a\xe8\xd1\x5d\x1b\xbf\xaf\x46\x62\x37\x09\x21\x4c\x43\x9b\xd8\x8b\x65\xaf\x0a\x4c\x70\x16\x08\xdf\x91\x72\xdd\xcf\x36\xad\xac\xea\xf7\x2d\x08\x51\x34\x62\x91\xaf\xb5\x44\x67\x8a\x39\x5c\x38\xc0\x3b\xe6\x7d\xda\x4a\x7c\x3d\x55\x24\xde\xbb\xb7\x6d\x7b\x65\xe8\x95\x58\x1b\x59\x0b\x35\x96\xa6\xfb\xcc\xac\x88\x2d\x54\xce\x80\x02\xac\x6e\x5c\x52\xf0\x72\x2a\xaa\x3b\xf9\x85\x6c\x64\xb3\x96\x22\x82\x44\x41\x44\x68\xbb\x76\x29\xef\xcb\x24\x3d\x34\x4a\x6c\x2a\x9e\xf0\xb5\xf3\xc4\xe3\x28\xb4\x49\xee\x0e\x7d\xfc\xe8\x86\xef\xb9\x7d\xf9\x71\xda\xac\xa8\x08\xcd\x4e\xbc\x09\x25\xd4\xcc\x2c\x19\x27\xf5\xae\x3e\x2e\xf0\xf8\x8f\x3b\x4a\x6d\xff\x8e\xce\xc0\x1f\x1a\xd9\xb0\xb0\xbd\x07\x31\x85\x8e\x6e\x71\xef\x5e\x76\xca\xaf\x29\x5a\xf9\x37\x75\x4b\xda\x4d\x55\xb2\xda\x4e\xf5\x48\xe0\xef\x37\x28\x4b\x8f\xa3\x98\x83\x61\x61\x69\x52\x90\x9f\xb2\x4b\x35\xbe\xde\x9c\x8f\x52\x4e\x50\x0c\x86\x04\xfd\x3d\xfc\x92\x04\x64\x3e\x89\xfd\x47\x35\x4f\x63\x5c\xeb\xea\xb3\x54\x7d\x6a\xa9\x5e\x4a\x80\x0d\xa5\x73\xac\x41\x75\xa5\x9f\xa5\x6b\x33\x9e\x93\xf8\x72\xa0\xf4\xcf\x5f\x53\x09\xe1\x33\xaa\x36\x92\x9b\x38\x1d\xa6\xc9\xac\x2a\xf9\xcd\x32\x6e\x48\x66\xc8\xf7\x3e\x7d\x5f\x75\x4b\x7d\x5f\x41\xab\x29\x01\x1d\x09\xd0\x1f\xa1\xdf\x6b\x81\x0f\x03\x5f\xab\x51\x66\xe6\xf6\x10\x30\x70\x70\x51\xdf\x0a\x54\x61\xf8\x70\xa0\xd1\x80\x53\xfb\x6d\x69\xbe\x6d\x86\x69\x99\x00\x5c\x85\xe9\xda\x0a\x24\x09\xdf\x4c\x7c\xe4\x31\x28\x87\x26\x89\x0a\x93\x91\x68\xfd\xd2\xbc\xaf\xdb\xb9\x2c\xe4\xc7\xb5\x07\x4b\x57\x9f\x99\xad\x66\x4d\x64\x97\x55\x5f\xdc\x6b\x8a\x00\xe3\x2d\x18\x12\x4c\xa7\x56\x6c\xfa\x95\xff\xf4\x97\x69\xa7\x4a\x0f\x55\xf5\x5d\x92\x5b\xdb\xfc\x26\x07\x17\x0e\xb4\x87\x14\x9d\xd1\xd3\x0b\x83\xaf\x22\x49\x7a\x43\xb9\xfe\x5d\x6a\x23\x75\x6d\x1d\x47\x35\xf2\xfc\x68\xe0\xfd\xe6\x30\xb3\x26\xb7\x33\x9e\x9c\xf9\x03\x9a\x76\x27\xc1\x5a\x99\x02\xd5\x5e\x94\x96\xd9\xae\xd6\x97\x0f\xd6\x97\xa9\xf8\xa0\x94\x92\x74\xbe\xb3\xeb\x61\xba\x8d\x88\x02\xa7\x21\xc4\x0f\x99\x8b\x0e\x49\x98\x1a\xe8\xd4\xd5\x14\xaa\xa3\x11\xd3\xcd\x29\x32\xc1\x1a\x60\xa9\x39\xdf\xc2\x79\x33\x77\xb5\xae\xc1\x79\xca\x62\xc2\x08\xbf\x12\xa8\x1a\xf2\x58\xe5\x7d\xb9\xef\x08\xf6\xe6\x21\x0a\xa5\xa5\x4d\xbf\x46\x77\x5a\xe4\x73\x8a\x69\x1d\x02\xa1\x38\xb5\x6f\x2b\x87\xf3\x4e\xa0\x64\xe9\xd8\xfb\x14\x56\xce\xcd\x49\xad\x03\xcf\xb5\x97\xcb\xac\x18\x54\x07\x51\xf5\xd0\x0e\x0b\xeb\xce\x3d\x68\x8a\x0a\x7d\xb0\x17\x0b\x3b\xe7\xd0\x49\xa9\x59\x91\x93\x07\x0e\x11\x63\x7b\xf9\x66\xe2\xf1\xea\x26\xef\xda\xbc\x48\xf3\x96\xea\x01\x38\x13\xd4\x74\x28\x7c\xd0\x9c\x0f\x6c\x8c\x58\xd4\x15\x9b\x39\x59\xc0\x37\x6a\x91\x2d\x9b\x82\x5d\x13\xe6\x3e\xa2\x17\x00\xab\x16\xa3\xea\x61\xeb\xcf\x39\xd2\x97\x38\xea\xda\x4c\x00\xa2\xd5\x4f\x48\x57\x3f\x8d\x30\xdf\x04\x5a\x2b\x12\x85\x75\x66\xf9\xc3\x7e\xfa\x30\xf0\x7b\xeb\xc3\x26\xd0\xb0\xe9\x96\x79\xb4\x6a\x95\x4e\x0d\xd2\x60\xfe\x10\xfc\x87\x8e\x68\x38\x1a\x92\xb3\x8a\x48\xf8\xaa\x8a\x07\x4e\x06\x0a\x48\xf1\x69\x23\xd3\x1f\xd5\xe9\x5c\x5a\xc3\x75\xeb\x54\x53\x2a\x19\x98\x86\x7c\xa6\x81\x13\x4f\x2f\x24\x99\x7a\x95\xb5\x9f\xfa\x25\xea\x6f\x2e\x32\x86\x71\x39\xc0\x2b\xcc\x92\x74\xc6\xf9\x2c\xb9\x8d\x71\x12\x60\x66\xb4\xf0\x0d\xd6\x26\xd8\xc9\xc5\xa3\xd8\x9c\xcf\x59\x5c\x6c\x0f\xa3\x43\x2d\xa5\xd5\x04\xb7\x99\xaf\xa7\xcc\xd2\xde\xbd\xed\xca\x60\x2e\x2f\xd3\x93\x39\xbe\x86\xdd\x0b\x8a\x25\xc7\x4d\x66\x5a\x16\x51\x62\x91\xd4\x71\x2c\x34\xba\x5b\xd1\x1f\xb6\x70\xd0\x51\x1a\xbd\x59\x33\xba\x2b\xd0\xec\x13\x21\xed\x3b\x81\xef\xcf\x42\xcc\x8f\xd4\xda\x5f\x61\x0b\x4a\x38\xe5\x13\xb4\x2f\xda\xa2\x40\x54\x2e\x70\x75\x7f\x08\x9f\x19\xff\x62\x43\x2a\xb8\x4c\xc2\x34\xe9\x45\x88\x47\x50\x96\xdd\xe7\x3b\xd3\x1d\xc0\xf5\xbc\xb3\xab\x23\x93\x15\x51\xce\xf4\x80\x78\x82\x4b\x0a\x37\x72\x49\x39\x79\xcb\x99\x4d\x5e\x5a\x6f\x91\x13\xe3\x7c\x63\x57\x4d\x38\x53\xcb\x3b\x94\xf9\xfa\x8c\xf7\x84\xce\x29\x2e\xa2\x1b\xd8\x3f\xac\x61\xde\xf9\x2c\xa6\xa6\xe5\xd8\x16\xe1\xc0\x66\x33\xaa\x64\xfb\x36\xed\x0c\x24\x5c\x7f\x40\xcb\x44\x68\xe0\x5c\xbd\x1c\xc0\x36\x3a\x11\x25\x5d\xa7\xda\x27\x8e\xfb\x24\x9f\xc9\x8b\x88\xbb\x9f\x44\xe0\x8a\x36\x83\x60\x05\xc9\xaa\x33\x97\x4f\x63\x4d\xa3\x67\xed\x88\xa2\x85\x19\x9f\xd8\xfc\xe7\xe3\x29\x2d\x04\x99\xed\xe9\x10\xfc\xd9\x76\x6c\x4d\x96\x48\x73\x08\x92\x18\xcc\x92\xc6\x37\xea\x38\x1b\x66\xcf\xfc\x42\x15\xdf\xbb\xf3\xdb\xd3\x93\xce\xa2\x23\x19\xe3\x02\x67\x54\x7a\x4a\x5b\xbb\x77\x4b\xc1\x26\x50\xaf\x77\x2b\x50\x4c\x47\xb7\xa9\x5c\x8b\xc9\x39\x46\x23\x8c\x67\xde\xde\x21\x74\xad\x30\xb9\xab\x2e\x80\xd3\x04\x12\xe6\x6b\x02\x81\x6c\x9c\x53\x1e\xec\x56\x14\x0e\xe0\xcc\xbd\x4f\x1b\x0c\xa9\x92\x59\xaa\xf8\x89\x9a\x7a\xeb\xd7\xbe\xa2\x95\x4a\x24\x93\xfe\xae\x4e\xd7\xf0\x3c\x90\xa7\x75\x6b\x17\x71\x95\xc9\x1b\xe0\x3c\xc1\x08\x5c\x53\x1c\x47\x97\x50\x09\x57\xb9\x69\xa1\x32\x3d\x46\xe1\xad\x30\xe6\x57\xbb\x4a\x1a\x49\x1f\x51\xd2\x32\xa6\x07\xfc\x3c\x7c\xe4\x7f\x1f\xf8\x7e\xd5\x7f\xdf\x24\xd9\x93\xd9\x30\x2b\xa3\xc2\x85\x04\x82\x90\x68\x39\xf2\x85\x6d\x1d\xdf\xe5\x75\xd5\xd7\x25\x0c\x51\x5f\xba\x04\xd3\x4d\xcd\xe1\x7b\x57\x11\x48\xbf\xd1\xd8\x18\x96\x9b\x35\xed\x67\xfe\x04\x08\x52\x0c\x27\xb7\x6f\x60\xfc\xaf\x38\x50\xc7\x9a\x35\x2b\x8e\xce\x04\x8f\xc3\x2c\x55\xc0\xa6\x1d\x1b\x2b\xbd\x98\x2d\x9d\x5a\x99\x28\xc5\x99\x86\x4c\xc5\x29\x85\x08\x3d\x35\xde\x04\xeb\xfe\xf2\xc1\xf6\xd2\x3c\x50\x7b\x0e\x2c\x55\x2d\x3c\x01\x4b\xe9\xaa\xfb\x4b\x26\xa2\xcd\xe3\x7a\x8c\x9c\x1c\xc9\xef\xe1\xc1\x60\x36\xcf\x35\xb1\x12\x48\xfb\x46\x0e\x7e\x15\x8e\x62\x02\x9f\x68\xfc\x44\x05\x78\xa8\x08\x9b\x10\x79\x4b\x07\x7f\xae\x0c\x99\xa0\xb3\x7c\x42\x22\x4a\x48\x4d\x6d\x76\x8a\xd4\x03\x6e\xf5\xe5\xb1\x86\x27\x2b\x76\xf2\x33\xaa\x1d\xbc\x6b\x40\xf2\x58\xeb\x50\xe5\x9b\xa6\x3a\x7f\x98\x0e\xed\x36\xcf\x7c\xc8\x56\xa0\x56\x94\x43\xb4\x71\x04\xbe\x27\x4c\xee\x47\x0a\x66\x78\x14\xa7\x93\xf8\x28\x9f\xa9\xec\x9f\x96\x59\xb2\x89\x9b\x00\x20\x1c\xbe\x76\xa1\x6e\x5e\xa4\x71\xf1\xd2\xd0\xd4\x02\xf4\x1a\x99\x6b\xcd\xe0\x17\x66\x84\x0c\x94\x13\xaa\xaf\x1e\x47\x24\x3f\x1a\x5c\x8b\x9e\x0d\x8d\xe3\x36\x81\xbd\xba\xaa\xc9\x11\xaf\xba\x23\xea\xc5\x74\x05\x49\x19\xc5\xdc\x09\xaf\x5d\x7a\x3a\x84\x1a\x32\x2e\xbb\x59\x14\x9a\xa4\x80\x4f\xc8\x58\x93\xb1\x52\x55\x3a\xa7\xe8\x38\x47\xa6\xf2\x1e\x39\x03\x01\x10\xc6\x47\x1a\x91\xf1\xd1\x54\xce\x70\x69\xbe\xbd\x1c\xc5\xd2\x6d\xc8\xfd\xab\xb4\xbd\xb9\xea\x3a\x56\xaa\x84\xd3\x92\x0e\xa4\xff\x97\xa6\x2b\xb3\x3e\x69\x7d\x3a\x50\x74\x38\x48\x04\x39\x6a\x1c\x7f\x10\x9c\x57\xf9\xb2\xcc\x8e\xe2\x48\xf4\xc8\x9d\x50\xca\xaf\x7d\x45\x2c\x38\x0d\x0c\x4b\x71\x7a\x40\x57\x59\x74\x4d\xb8\x82\xc1\x16\x06\xf0\x96\x23\xa1\x27\x06\x0f\x9e\xc8\x85\x74\x9b\x06\x29\xb1\x9e\x17\x02\x42\x78\x3a\x38\x4b\x19\xbc\x0b\x67\x6b\x86\x70\xf6\xc8\x0b\xdd\x0b\xbc\x67\x73\xb2\xc1\x78\x11\xc7\xdc\x9c\x37\x27\x2d\xdd\x0d\x05\x14\x89\x3b\xba\xab\x9f\x16\x42\xd7\xea\x1d\x01\x00\x3b\x37\xe5\xaa\xee\x5b\xda\xd7\xee\x95\x71\x5c\xf9\x0b\x95\xb5\x81\xc7\xd6\xea\x28\xf2\xff\x2d\x13\x8f\xa5\x7e\x4b\x45\x11\xc3\x32\x2e\xa2\x51\x6c\x67\x94\xf2\x0c\x4a\x37\x38\x8f\x38\x58\x12\x12\x00\x89\x0e\x4c\x18\xa6\xc3\x51\x1c\xe5\x03\xdb\x9b\xa9\xbe\x59\x35\xcd\x0b\xa2\xed\xf7\x69\x3e\xc5\xe3\x52\x45\xd6\x22\x9a\xd1\xcc\xa2\x8a\x89\xee\x2e\x46\x15\x56\x69\xae\xe3\x15\x51\xd6\x4c\x51\xe3\xc2\xe7\x10\x8a\x6f\xa6\xe4\x2c\x7f\xb5\x6d\x7b\xa5\xc9\x7a\x2a\x37\xc0\x31\x24\xdf\x34\x92\x27\x44\xf1\x2a\x00\x53\x42\x07\xa3\xe2\xc4\x0b\x63\xcd\x3c\x9e\x23\x19\x45\xdb\x0c\x18\x78\xa4\xe8\xf9\xba\x91\x3a\x29\x2f\x6c\x56\x85\x20\xb3\x64\x7b\x04\x52\xd6\x72\x34\x39\x00\xe5\xc2\x02\xf2\xc9\xc4\x15\x78\x9d\x8e\xc9\x4c\x58\x44\xa1\x6d\x29\x45\xb2\x3f\xa0\x98\x84\xaf\xc7\x3a\x9a\x0c\xb3\xa8\xcb\x4f\xe9\x38\xde\x1d\x7f\xd0\x59\x77\x18\x77\x3d\x5a\x57\x2a\x53\xca\x7c\x5d\x50\xe5\xaf\x35\x73\x68\xc8\xce\x32\x96\x15\x47\x9c\x7c\x33\x35\xaa\x0b\x07\xda\xc3\xb4\x67\x63\xd5\xc4\x0f\x8e\x07\xbe\x9e\xfa\x00\xe5\x4e\xcc\x0a\x2b\xdb\x73\x4f\x7b\xad\xbf\xdd\x49\xea\xa4\x49\x3f\xb3\x79\x3e\xb4\xc9\x9c\x3a\xd3\xe7\x68\x8f\x2a\x46\xbf\x7d\x1b\x0f\x52\x43\x03\x30\xc5\x67\x39\x2b\x01\x23\x7b\x5f\xf5\xa4\x86\x83\x14\x7d\x80\x3e\x2f\x89\x78\x8a\xaf\xbd\x31\x31\x79\x94\xa4\xf9\xac\xd2\xb8\xdb\xde\xf1\xfb\x99\xdb\x0e\x5c\x1f\xd7\xf3\xf3\xec\x8c\x7d\xac\xd2\x49\x71\x94\x3f\xd0\x72\x9a\x6b\xac\x7c\x8d\xe1\xbe\xa7\xfc\x80\x0b\xfa\x54\x9b\xc3\x92\x17\xf4\x85\x27\x51\x3e\xc9\xef\x84\x08\xfe\xe1\xce\x34\x84\x9b\x84\x4c\x5a\x84\x5e\x74\x10\xcd\xa5\x79\x77\xa3\x96\xf6\x28\x4a\x56\x6c\x56\xa4\x49\x8b\xdc\x48\x17\xf4\xfa\x00\xb8\x16\xe1\x45\xa1\xfd\xbc\xa2\xe9\xb8\xa7\x76\xfc\xfd\xda\x48\xdf\x0c\x14\xf9\xd4\x71\x64\xa3\x14\x4b\xb9\x38\xe0\xd7\xe0\x95\x08\xa8\xa4\xe5\x48\xc1\xde\xa5\xf7\x45\x8e\xf3\x16\xe1\x43\x25\xe5\x54\x39\xb2\x22\xc4\x58\x19\x22\x54\x9c\xdf\xd3\x64\x8e\x4c\x83\x85\x6f\x62\xe9\x2a\x66\x45\x0f\x14\xf9\xd4\x59\xf2\xd5\x5d\xa8\xb9\x47\xb6\xf3\x71\xe0\x3e\xc5\x43\x50\xdc\x34\x57\x15\xd2\xe5\x81\x8e\x62\xa8\x3a\xab\xe6\xba\x4c\x56\xb6\xa9\xf6\x7c\xc8\xd8\x38\x25\xfe\xea\xcb\x80\x1d\x79\x1f\x8f\x2c\x9e\xbf\xdf\x63\x57\xc6\x3e\x4c\x6b\x75\x9a\xa0\xf3\x85\x21\x4a\x5b\xa5\x76\x3e\xf6\x50\x99\xe9\x9e\x4f\x02\x16\xc7\x26\x29\x18\x57\x8c\x57\xfe\x64\xec\x67\x79\xac\xc1\x61\x27\x54\x63\x78\x66\xf3\x34\x5e\x65\x0d\x59\xa6\x70\x84\xb7\x26\x7c\x8e\xb2\x3f\x47\x36\xcf\xa3\x61\x94\x57\x4f\xd6\xd2\x04\x91\x8a\x96\xd7\x17\x7b\xd6\xa2\xb8\x17\xaf\x53\x76\x53\xe4\xb0\x94\xa7\x87\xa6\x50\xa4\x3d\xaf\x2a\xf5\xab\xe5\xcc\x24\xe1\x20\x72\xd6\x0b\xce\xfb\x0c\x80\x37\x7c\x33\xf1\x25\x91\x35\x13\x4b\x83\xba\x2b\x3d\x2b\x3a\xf8\x26\x0a\xa4\xca\x33\x9d\x9b\xf1\x0a\xe7\xb7\xf1\xb2\x22\x31\x40\xbf\x8a\x73\x1f\xc0\x2a\x44\x1d\x33\x13\xd5\x92\xfa\x7b\x53\xa7\xc1\x9e\xc5\x76\xd7\x24\x87\xbe\x51\xa6\x85\x6d\x29\x6b\xf1\xaa\x12\x48\x7d\x75\xec\xb3\xdd\x5d\x93\xac\x64\xe5\xa8\x90\x3c\xbc\x3c\xfe\x27\xb0\x1b\x7c\xe3\x2a\xe7\xeb\x26\x06\x98\x04\x87\x36\x1b\x24\x3c\xcc\xae\x8e\xce\xae\xb5\x1c\xdb\xc7\xb7\xc6\x8a\xc5\x03\x0e\x95\x28\x52\x09\xfa\x60\x10\xe5\xb9\xf8\x7e\x8e\x85\x56\x31\xcf\x6a\xce\x29\x25\xd3\x41\x24\xe0\x51\x58\x20\xac\x64\xaa\x82\xc0\x37\x54\x9e\xf2\x28\x0f\x9b\xad\x46\x4c\xa0\x06\x94\xf2\x7f\xab\x30\x24\xef\x29\xd2\xa0\x77\x1d\x9e\x24\xb3\x3d\xbb\x1c\x25\x40\xac\x0b\xff\x23\x7d\x83\x10\x40\xfa\x35\xd6\x8b\xf2\xa1\x89\x5b\xaa\xb0\xcb\x81\x06\xdf\x34\x95\x00\xbb\x76\x10\x25\xbd\x39\x9a\x67\x58\x9f\xd7\xc7\x1e\xbf\x07\x3d\x79\x24\xee\x3e\x55\x35\xfa\xdf\xc1\x60\x08\x60\x49\xf1\x5b\x13\xda\x58\xe5\x2b\xa0\x6a\xce\xd7\xaa\xe4\x17\x77\xd3\xbc\xa5\x50\x06\x57\x02\x85\x3f\xb8\x32\xde\x4c\x8d\xfa\x74\x3b\x7b\x26\xe2\x1c\x33\xd2\x17\x1c\xab\xf0\x8d\x92\x65\x0f\xcb\x22\x7f\x80\x8c\xb1\xd3\x77\x5a\x92\x50\x13\xa2\xab\x8e\x1c\xc5\x0b\x5c\x71\x39\x1c\x09\x0e\x66\x7c\x71\x87\xf3\xd2\xbc\x03\xe5\x48\xa1\x3f\x79\xe9\x8b\x33\xfe\x80\xba\x38\xde\xfa\x45\xb6\x65\x0c\x6e\x96\xa9\xdf\xdc\x9d\x23\x71\x5a\x66\xfb\x26\xeb\xc5\x96\xc9\xdb\xa4\x85\xb3\xfa\x29\xbe\x76\xab\xdd\xac\x99\xf5\x9d\xbe\xd0\xde\xee\xb8\xa4\xff\xdf\xfd\xdc\xa4\xde\x07\xac\xca\xcc\xd5\xbc\x21\x20\xbd\x07\x1b\xec\x38\x76\x1c\x0c\x15\xea\xd2\xc8\x9d\xfc\x7c\x47\xb7\xa8\x62\x30\x10\x25\x5d\xd0\x40\xe9\x63\x63\x05\xda\x3d\x3b\xb5\xef\xff\x01\xe8\x5b\x09\xa7\x36\x43\x8f\x06\x00\xd4\x07\x63\xd5\x3e\x72\x35\xd0\xcd\xf0\x9b\x03\xd9\x17\x5e\x68\x68\x5e\xc2\x4e\x65\x95\x2c\xbe\x51\xd2\x3f\xbd\x72\x14\x47\x21\xb1\xf6\x2c\x49\x27\xda\xdb\x74\xbe\xf1\xf5\x78\x87\x52\x00\x6d\xd3\xfb\x60\x6c\xbe\x8b\xb1\x81\x3b\x7f\x8b\x72\x46\xae\xcf\x6e\xf7\x6e\x76\x1f\x8e\xf0\x41\x8f\x8f\xb0\x9a\xb5\x74\x0c\x55\x86\x04\x36\xf1\x06\xda\xa5\xf0\x57\x8f\x10\xb3\x15\x8e\x8c\x0b\x81\xd2\xbb\xb9\xa4\x13\x80\x4c\xb7\x01\x40\xd1\x9b\x34\xfb\x28\x67\x3d\xd0\x51\xc5\xd5\x3b\x44\xfd\x2b\xf9\x67\xd5\x92\x78\x18\x4e\x0e\x70\x88\x5b\x98\xf3\x0a\x36\xb1\xd5\xa9\x86\x02\x0f\xf9\xf0\xc4\x83\x5d\xef\x8c\x15\x97\xc1\x46\xb0\xf5\x8b\x1b\x10\xe0\xc1\xd1\xf3\x06\x1c\x01\xa4\xc3\xee\x8d\x3d\x72\xe4\x58\xe0\x09\x01\xa0\x05\x47\x71\xc9\x89\xc7\x27\xad\xa7\x9e\x72\x9d\x79\x1e\x1a\x0a\x39\x4f\xd8\xca\x1f\x23\x61\xc7\x21\xdb\x44\x75\x0b\xbc\xad\x1c\xef\xcc\xae\x5a\x83\xb0\x11\xdb\x96\x65\x10\x5c\xb8\x50\x0d\x21\xeb\xbf\x05\x35\x0f\xb8\x9a\x0d\x11\x86\xf3\x56\x20\x36\x79\xb1\x53\xe9\x1d\x33\x9e\x0e\xc8\xfb\xab\x63\x25\xfb\x7a\xb1\xa6\xdb\x02\x8d\x27\x6c\xfd\x2b\xba\x55\xe2\x2a\x35\x00\x09\x0f\x96\x4b\x3f\x3c\xf1\x18\x61\x8c\x9d\xa8\xaa\x47\xc4\x32\x22\x86\x29\x48\xc7\xaa\xcd\xf9\xae\x4b\xc2\xd8\x43\x23\x93\xf4\x24\xc9\x0c\x3f\xeb\xa1\x89\x4e\xac\x7b\x46\xf3\x03\x8f\x75\x9a\xb8\xb7\x29\xc1\x1f\x46\x23\x53\xa0\x76\x8a\x9c\xe7\x43\x1d\xd5\x7b\x76\x5d\x51\xae\xdf\x73\x27\xcb\x28\x4e\x0b\xcf\x6e\x81\xc8\x1b\x14\x1c\x7c\xdd\x48\x11\x55\x14\x14\xa0\xc9\xc7\x30\x84\x88\xba\xf8\x7a\x2a\x78\x7f\xba\x1d\x66\xa4\xc7\x1d\x2b\x9c\xe0\xfb\x0a\x27\xf8\xbe\x3b\x40\xec\xf2\xb2\x0d\x1d\xea\x57\xe8\x9e\x68\x1c\xf9\x66\xe2\x70\x7a\x66\x3d\xb1\x33\x2a\x9a\x3e\xaa\x68\x48\x3f\x56\xb2\x6a\xe3\x06\x5e\x99\xfd\xed\xc2\xc6\xb6\x9f\x99\x11\xd3\x62\x4a\xeb\x1b\xe7\x56\xf9\x46\x33\xfa\xa0\x18\xf0\x80\xef\x96\xba\xa2\xa4\x39\x2e\x8f\x95\xb5\x7b\x79\xac\x16\x3c\x4a\x3a\xd2\xfa\x4e\xd6\x06\xd6\xf3\xfe\x58\x09\xff\x9e\x6e\x0a\x2c\x5f\x4c\x57\xa4\xd5\xa0\x49\x5f\x5e\xd6\x50\x2f\xca\xa9\xc5\x80\xff\x14\x41\xd2\xab\x81\x87\xba\xbc\x3a\xf6\x45\xcc\xa2\xcc\x12\x93\xa5\x25\x97\xe4\xb9\xd5\x41\xf5\xa0\x5d\x0e\xb6\xfb\x54\xef\xa3\xaa\x49\x17\x2c\xe8\xf8\xa3\xad\x94\xa9\x67\x4e\x27\x58\x37\xc1\x0c\xd1\xaa\xc0\xf6\x41\xde\x11\xbe\xc7\x5b\x30\xb4\x78\xf6\xc3\x14\xd3\x20\x40\x39\xa7\xce\xbc\x93\x64\x74\xa5\x7b\xd4\x69\x32\x7c\xf3\x1c\xb6\x15\x2c\xf3\x0f\xeb\x05\x1f\xaf\x95\x28\x91\xaf\xa4\xa5\xe5\xfc\x5c\x8b\xf2\x67\x5a\xba\xa9\x92\x3e\x2f\xdd\x96\x3e\x8c\xf9\xc7\xbf\xf2\x8f\x66\x7c\x8a\xe3\x38\x3d\x17\xeb\xe7\x13\x1a\x42\x38\x7b\x6b\xa8\x8b\x65\x81\xdf\x02\xce\x76\x56\x13\xb8\x9d\x55\xcc\x3a\x69\x12\xa6\x7d\x9b\xc8\x7c\xc2\x8c\x9c\x1e\xfb\xda\xc9\x69\x95\x03\x29\x4c\x14\xa7\x19\xd7\x99\x05\x71\x4e\x03\x2b\x90\x73\xf1\x28\xb3\x28\x17\xf6\x37\x94\x19\xa0\xb0\xe5\xd4\xf9\x1d\xda\xe0\x1d\x6d\xf7\xb7\x75\x3c\xea\x42\xf3\xfd\x0b\x3b\x21\xad\x65\xbe\x99\x5a\x98\x2f\xbc\xd0\xee\x65\xd6\x0c\x5b\x3e\xa9\x8c\x35\x2e\x91\x8c\xec\xe5\x28\xcf\x4b\x9b\x09\x59\x27\x56\xe2\x77\xc6\xaa\xdd\x16\x1b\x48\x5a\x02\x1a\x30\x64\xdf\x28\x4d\x56\xd8\xac\x0a\x9b\xdc\xce\x7e\xac\xe3\xa1\x24\x73\x13\x4f\x18\x78\xcb\xe9\x1b\x65\x26\xb4\x83\x34\x73\x31\x13\x0a\xba\xc7\x74\x75\xf7\x98\x42\x0e\xf4\x4c\xb6\x32\xab\x5a\xc9\x2e\x05\x4a\x7e\xe7\x94\xea\x2b\xbb\x8d\xb9\x95\x5e\x47\x9f\x61\x34\x45\x91\x66\x89\x6d\x6a\x62\xc5\x78\x6f\xef\xa8\x93\xe0\xc1\xa9\x66\x0e\xd2\xa4\x8a\x46\xb1\x9d\xf5\xb9\x14\x2e\x6c\x09\xb0\xa0\xe5\xb4\xd7\x58\x59\x06\x03\x70\x76\xbc\x19\xed\x0c\x35\x06\x13\xc7\x36\xe9\xcb\x00\xb0\xba\x24\xf6\x8d\x48\x4d\x2a\x31\xa4\x74\x60\x33\x9b\x14\xbc\x90\x11\xf8\xa3\x05\x88\xaf\x35\x06\xa5\x28\x7b\xeb\x44\x64\x03\xc3\x75\x5b\xef\x6b\x26\x34\x60\x26\x68\x1a\x3a\x4c\xee\x75\xb5\xcd\x06\xe9\xea\x8c\x07\x1c\x72\x42\x1e\xb5\x46\x78\x86\x02\xaf\xf6\x28\xe0\x61\xba\x1a\x91\x20\xdb\x02\x7b\x44\xd7\xb4\x54\xc8\xb5\x40\xd1\xe4\x82\x04\x92\xaf\x61\x6e\x79\x0f\x63\x03\x81\xe3\x19\x79\x2f\x6c\xa6\xb7\x14\x61\x5e\x5e\x19\xc6\x9c\x08\xf3\x30\x59\x68\x61\xe1\x5c\x15\x3d\x1d\x90\x37\x0f\x90\x7b\xa5\xaa\x9b\x02\x9c\xda\x32\xd1\x05\xb0\x35\x26\x74\x83\xf3\x7c\x49\x85\x42\x97\xa6\x4e\xc9\xdd\xbb\xdb\xcb\x59\x4a\x98\xd3\xbf\x41\xb3\x74\xf3\x6e\xdc\xf7\xdc\xfe\xf6\x6a\x64\xd7\xc8\xc0\x49\xec\xe8\x4f\xfb\x77\xa7\x98\xd1\xf6\x2c\x82\xae\xd6\x64\xbd\xe8\x25\x46\x6f\x8b\xd7\xef\x0b\x1d\x77\x35\x49\x4d\x53\xa1\x63\x1f\xa1\x6e\x95\xc3\x71\x31\x50\xed\x55\x3f\xc3\x5a\xc3\xcd\x0d\x05\x08\xc9\x47\xd6\x86\x03\x6e\x18\xe0\x2e\x0f\x0c\x9f\xb4\x7c\x34\xa9\xe4\xaf\xda\x6c\x5b\x35\x0f\x18\xfb\x6d\x34\xf6\xb0\xc6\xaf\xd7\x94\x7f\x3c\x98\xe4\x02\x59\x56\x47\x89\xed\x1a\x9b\xde\xae\x91\xd1\x27\xab\x36\x2b\xa2\x6e\x4c\x1d\x07\x1b\x77\xb0\x42\xf0\xa1\xdf\xc7\x53\x71\xd3\x4c\xe0\x4b\x29\x97\x34\x12\xf7\xe2\xd4\xfe\xdb\xbd\xd0\x36\x49\x12\xad\xda\x2c\x37\xdc\x46\xc1\x5b\x35\xf0\x76\x4b\x0b\xbf\x77\xb3\x34\x5d\x61\x6a\x0c\x09\x38\x69\x17\x49\x5c\xaa\x02\xdb\xa8\x58\x7f\xa4\x72\xd6\x85\xca\xc2\xcb\xf4\xdd\xa7\xd3\x12\x7e\xf8\xdc\x44\xa5\xb6\x5e\x0f\x3c\x74\x72\x4b\x47\x39\x29\x77\xc7\x0a\xac\xca\xdc\x5a\x48\x4c\xdd\xab\x4b\x98\xd1\xa0\xe0\xcf\x98\x4a\x18\xef\x7e\x3b\xf0\x5a\xdb\x97\xe1\xe2\x8b\x3e\x07\xad\x04\x79\xc8\x69\xda\xf2\x76\x6e\x63\x0f\x55\x42\xbd\x02\xce\x1b\x5f\xab\x6a\x98\xe9\xa6\x71\x94\x83\x6c\x12\xa6\xeb\xaa\xca\xe2\x5d\x6d\x5a\x2e\x2b\x82\x4d\x42\xc5\xe9\xf0\x58\x31\x25\x1c\x0e\x3c\x25\x75\xf2\xcc\x6a\x6b\x53\x60\xe7\xab\xb8\xe7\xb4\x94\x74\xd4\x1f\x70\xc5\x91\x89\xb9\x03\xdf\x2e\xe6\xb9\x1c\x7a\xa6\xdb\x8d\xc5\x9b\x14\x20\x2d\x8d\x38\xdf\x28\xe2\xa3\x95\x28\xe9\x3d\xa8\xaa\x84\x63\xd5\x7d\x09\x96\x69\x41\xd5\xfb\x7e\xc1\x07\x3b\xaa\x51\xf4\x26\x41\x3f\x74\x2a\x55\xe4\x0b\xe8\x25\x58\xad\xb8\x81\x86\x64\xb1\x9d\x8f\xa2\x58\xf3\x4c\x9e\x57\xed\xbd\xe7\x1b\xe8\x51\x16\xdb\x26\x8e\xa9\x07\x83\x85\x7e\x01\x15\xc1\xd1\xf6\xaf\x69\x15\x20\xd0\xbb\x33\x65\x27\xf6\xee\x6d\xf7\x6c\x28\x4a\x18\x48\xd5\xc0\xf6\xf2\xb5\x72\xb0\xbb\x65\x1c\xdb\x22\x9f\x51\xfc\x33\xc0\x53\x49\xa9\x82\xde\x1e\x41\x5a\x63\x26\x2b\x36\xfd\x7e\xdd\x93\xb9\xa8\x3d\x99\x8b\xc1\xe3\x8a\xc2\x1c\x6d\x6e\x8f\xd2\x1f\x23\x8b\x7c\x1f\x3d\x2f\x38\xc9\xae\x50\xbc\x8b\xa4\xcf\xcf\x18\x8a\x82\x4d\x74\x02\xee\x2e\xff\x99\xd6\x39\xfe\x74\xac\x78\x93\x6f\x07\x5b\xbf\xe8\x69\x7e\xaa\xcd\x85\xff\x7f\x35\xf0\xe7\xc1\xad\xb1\x9a\xd0\x6f\x22\x6b\xaf\x95\x6b\x98\x04\x0f\x6b\x03\x1d\x17\x3f\x41\x80\x2e\x9a\x36\x9b\x8d\x3b\xc1\xf3\x42\x9b\x14\x36\x71\x64\xa2\xf8\x20\x84\x97\xf9\x7a\xd2\x44\xc4\x91\x99\x64\x45\x86\x0f\x79\x8b\x8f\xc6\x2a\xef\xfd\x91\x8a\xd5\x57\x4d\x5c\x32\xf1\x06\x42\x5d\x28\xba\xb3\xca\x5b\xa0\x31\x69\x53\xad\x01\x7b\x16\xff\xbf\x04\x2c\x9b\xa1\x80\x07\x97\xe6\xdb\xbd\x74\xc6\x37\x79\xb0\xb0\x33\x13\x52\x8c\x35\x6c\xce\x03\x5b\xaa\xff\xe4\x2d\x9f\x0f\x3e\x4b\xa7\xb9\x98\xbc\xcd\x29\xc6\x7f\xd0\xee\x5b\x60\xb3\x11\x8d\x1c\xc5\x4f\xf0\x8d\x4a\x5d\x96\xcf\xac\x3c\x33\xa7\xd4\x53\x8e\x4f\x53\x18\x3c\xcb\x4f\x76\x5a\x9d\xa9\xa7\x03\x25\x80\x70\x4b\x0d\xe7\x28\x4b\x57\x19\x7f\x2f\xb2\x07\xf4\x15\x5c\x24\xc2\xba\xd4\xa8\x42\x36\xc0\xc8\x89\xf0\x3f\x4c\xf5\x80\x1d\x24\x4e\xd9\x91\x4d\x7a\xec\x06\x22\x9d\x77\x02\xa7\x0b\xdf\x4c\x03\x3c\x9f\xdb\xdf\x1e\x99\x28\x29\x24\x27\xc1\x5c\xfa\x34\x3b\x38\x39\x98\xe7\x4e\x08\x1f\x36\x4f\xd5\xaf\xb6\x93\x34\xb1\x2d\xb2\x11\xc2\x0a\xe4\x73\x78\xc7\xa6\xb0\x3e\xd5\x73\x8e\x6c\xb6\x9c\x66\x43\x31\x9e\x0c\x0b\xc2\xf2\x13\x8c\x90\xf7\xd2\xfa\x65\x14\x17\x2c\x5e\xca\xea\xe1\x81\xc7\xa2\xbe\x13\x78\xa6\xa1\x8b\x0d\x79\x64\x3b\x4a\x5b\x5a\x89\x82\x76\xba\xa8\x52\x34\x75\xba\x41\x31\xc6\x01\xc0\x9c\x2f\xe7\x9a\x52\xd0\xbc\x8b\xc1\x79\x43\x9d\x5d\x79\x14\xaf\x5a\x76\x02\x18\x32\x38\xf6\x38\xd9\xa3\xc1\xe7\x7d\x0f\x2b\x09\xb0\x44\x31\x37\x53\x3a\x84\xc4\x6d\x5a\xb0\x42\x0d\xdd\x84\x52\x34\x79\x1e\x91\x82\x1d\xfd\x0a\x5e\xe3\x98\x4a\xe2\x1c\xf3\x88\xc8\xc1\x3a\x31\xb6\x52\xfe\x0d\x08\x6e\xce\xac\xf0\xcd\x64\xf3\xf7\xef\xde\xdd\x8e\x12\x13\x86\x65\x66\x42\x26\xa0\x42\x97\xf6\x5f\xd2\x84\xf2\x75\xf0\x39\xdf\xad\x17\x86\x51\xcf\x26\x20\x0c\xd2\x0d\x59\x2d\x25\xbb\xb6\xc3\xfb\x33\x18\x1a\x16\x59\x1a\xab\x22\xce\x35\xd5\x87\x95\x97\xf1\x72\x89\xce\x78\x91\x48\x57\x72\xe9\xea\xeb\x86\x87\xea\xac\xbd\x8a\x7a\xd9\x47\x1f\xcf\x3c\xfb\x4c\x4b\x51\x76\xe0\x47\x85\xbf\xa3\xc1\x99\x58\xa6\xbe\x65\xd7\x00\xca\x84\xf3\xf0\xc6\x8f\x2b\x2b\xfd\xc3\x40\x73\x81\xe1\x58\x70\x70\x00\x97\x71\xbf\xd8\xa8\x1c\x60\xfa\x49\xe5\x10\xb1\x33\x22\xa2\xf9\xf4\x64\x22\x9d\x3a\x0d\x05\xde\xd7\x1e\x0d\x4c\x36\x34\xa1\x2d\x8b\x28\x34\xb1\xe4\xcc\x70\x2c\x73\xdd\x8f\x6f\x54\x71\x24\xb7\xa6\x68\x29\x5a\xaf\xf7\xc9\x71\xe4\xeb\xa9\x44\x99\x54\x2b\xf2\x74\xbd\x6b\x4d\x32\xe3\xa7\x1d\xa8\x28\xc4\x59\x37\x6b\xfa\x49\x8d\xd8\x9d\xbc\x28\x47\x11\xef\x6e\x31\x93\x2d\x45\x49\x23\xf9\x8c\xa2\x0c\xdd\x21\xc4\x5a\xf3\xc8\xc1\x8a\xf0\xbc\x92\x26\x4f\x2b\x27\xd2\x48\xa3\xd1\xd7\x7d\x0b\x5d\xe5\x8a\x4a\x5d\xc6\x47\xae\x36\xcb\x58\x1d\x0e\xfe\xc0\x3b\x5a\x91\xe1\x9d\x29\x04\x5b\xb5\xf3\x57\x53\x9f\xe8\x84\x41\x81\xf3\xc2\xd7\x81\xea\x44\x8a\xa3\xd1\xa8\xb2\xe1\x4b\xf3\x1c\xb3\xdf\x85\xd9\x16\xb5\xd4\x6a\x94\xe1\x40\xfc\x68\xec\x43\x47\x4e\x6b\x8b\x88\xd7\x67\x81\xfa\xba\x26\x8a\xa3\xe5\xe5\x1c\x7b\x57\xa4\x5a\xb5\x6e\xab\x63\xea\xce\xc3\x41\x96\xf6\x6c\x26\xcb\xc1\x35\xe3\xfa\x8d\xde\xdc\xcf\x43\xd4\x30\x35\xa4\xb2\x06\xa8\x9d\x56\x7e\x73\xaf\x17\xb5\x34\x9b\xb7\xc2\x8f\x7d\x5c\x19\x03\xc9\x78\x85\xa1\xc9\x15\x4c\xdd\x2b\x0f\x78\x5f\xfe\xe8\x94\x07\xe3\x70\x8c\xd1\xca\xc0\x44\x71\x0b\x35\x0d\x29\x8f\x29\x44\xda\xc5\x06\x35\x49\xf4\x79\xf7\xa3\xcc\xb7\xed\x0b\x78\xb2\x9a\x36\x49\x0c\x56\xbf\x2f\x35\xf8\x26\x8d\xd4\x5e\xc9\x01\x84\x78\x0a\xda\x0b\xf5\xcc\x6d\xa1\x89\x63\x66\x85\xc0\xcc\x6e\x23\xb6\x24\x21\x74\xa0\xe9\x41\x1e\x99\x61\x83\x92\x20\x9b\xaa\xc2\x2f\xb4\x4d\x2f\x63\xe0\x2e\x8e\xd5\x99\x8e\x4f\xe9\x5d\xd4\x7e\xe5\xcd\x29\xa0\x79\xe5\x50\xd9\xc2\x78\xd8\x22\x23\xdc\x03\x4f\x07\xf1\xca\x58\x55\x3a\x3f\x51\xfd\xc2\x26\x0e\xd3\x41\x1a\xb7\x3c\x55\xe9\xeb\x64\x5c\xf9\x5a\xe5\x8d\x7b\x96\xb0\x56\xd2\x04\x8a\xe8\xe4\x0c\x32\x2f\x7c\x33\xd6\x24\x8e\x36\xeb\xaf\x0b\x90\x8a\x41\x3c\x2a\x1f\x74\xd2\x15\x21\x96\xd3\xac\x1f\xad\xda\x64\x46\xd7\x04\x15\xdf\xc8\x19\xd5\xc7\xb3\x4f\x85\xcd\xa1\xc9\x46\x95\xb7\xb6\x7b\x41\x2b\xd3\xec\xfb\x1b\x7a\x5d\xf6\xb5\xbb\xe5\xba\x84\x86\xe2\x66\xd3\x1a\xf9\x2c\x85\x48\x62\xdb\x42\xaa\xfc\xf9\x79\xce\x3e\xb3\xf4\x12\xdf\x28\xce\xed\xe7\xfe\xc9\x9c\x07\xd6\x7d\x34\x56\x00\xd2\xbb\x8a\x00\xfe\xd1\x8e\xca\x0f\xef\x24\x88\x3c\x2a\x47\xf7\x54\x1f\x74\xd9\xed\xa6\x59\x02\xbc\xa2\x70\x9d\xd0\xf7\xe1\x57\x51\x7c\xe2\x6e\x00\x07\xda\xb2\x49\xdf\xf4\xeb\x52\x82\x77\xb5\x94\xe0\x5d\x75\x08\xee\xfe\xd2\xfe\x39\xda\xb5\xd2\x91\xa3\x5b\x4e\x4f\xe2\x53\xf4\xfd\xdf\x7a\x92\xd6\xa1\xca\xa0\x32\xa7\xdb\xa3\x8f\x4f\x76\x4d\x41\xf6\x7a\x94\x87\x76\x0d\x0c\x95\x65\x73\x2d\x78\x8e\x16\xaa\xc6\x50\xad\x50\xd9\xfd\xcc\xf4\xca\x2a\x64\x71\xe1\xe4\x0d\x32\x9a\x7c\xad\xd2\x20\xd6\x84\x83\x1d\xfa\x89\x99\x5b\xc6\x89\xcb\xb9\xd1\x86\xf4\x23\xce\x98\x07\x3b\x4a\xcd\xe7\x36\xa5\x87\x80\x35\x60\xec\x94\x83\x56\x54\xd3\x8b\x93\x9b\xf1\xa9\xa8\xd9\x7d\x8f\x16\xa2\x50\xfa\xd3\x10\x09\xe0\xce\xaf\x4a\x12\x5b\xe8\xcd\xd6\xd8\x9e\xab\x47\xc0\x7c\x7f\x3c\xd6\x5d\x52\xde\x56\xfc\x99\xea\x4f\x18\xc5\xe9\xba\xd8\x6e\x21\x21\xa7\x1f\xe3\x1b\x45\xb7\x18\xda\xcc\x0e\xd3\x64\x1d\xc9\x6b\xd9\x84\x2d\xa7\xf2\x70\x9a\x7e\x5a\x9d\x16\xbe\xcb\xdc\x27\x7f\xe3\x34\xe9\x17\xd1\xd0\x6e\xf3\xac\xeb\x00\xc3\xe3\x3b\xee\x2a\x06\x1d\x96\xac\x77\x10\x81\xea\xa9\x1c\xa5\xf5\xa2\x93\xdd\x9a\x56\x92\x82\x03\x90\xa6\xbd\x56\xdd\x47\x52\xb4\x57\x81\xef\xdb\xa9\x96\x52\xbe\x19\x93\xee\x1a\xa9\x15\xff\x4c\x66\xd9\xf5\x9d\xf5\x61\xee\x71\x9c\xba\xc0\x82\x43\x19\x8c\xff\x01\x27\x2d\xff\x43\xb0\x99\xf2\x9f\xd2\xe6\x55\xdc\x9c\x91\x24\x8b\xcd\x5a\x3a\xa4\x03\x8e\x88\xaf\x15\x3b\x59\x94\xf4\xca\xbc\xc8\x22\x13\x23\x18\x76\xb9\x47\x47\xce\x00\xc2\x19\xac\xfc\x56\xc7\x2f\x94\x81\x35\x3d\xe1\xf0\xd4\xe9\x34\x41\xed\xf8\xc2\x19\x22\x48\x89\xf8\xe4\x98\x4f\x57\x6d\x96\x47\xfd\x41\x41\xf3\x26\x29\x4b\x9f\xd3\x61\x05\x0a\xf8\xa9\x9c\xa0\x46\x18\x71\x7d\xac\x53\x69\x35\x7e\x63\xd7\x48\x32\x88\x5e\x7a\xc9\xe6\x34\xac\x8e\x81\xbc\x9a\x39\x55\xca\xdb\xe7\x1c\x70\x25\xbb\xb5\xd1\xc4\x61\x4c\x7b\x02\xb2\x58\xcc\x51\xa9\x49\xc8\x8e\xd0\x43\x03\x6c\x34\x33\x05\xfd\x5b\x9a\x6f\x8f\x62\xb3\x6e\xb9\x59\x03\x11\xfe\x1d\xec\x51\x24\x97\xff\x4b\x82\xce\xe2\xe0\xa0\xaa\xc0\xbe\x8d\x77\x1b\x39\x34\xe2\x38\x5d\x63\xf9\x12\x4c\xe4\xcd\x40\xa9\x0e\xc0\x42\xc1\x3f\x3a\xac\x10\x55\x59\xd9\x8d\xab\x91\xd8\x23\xec\x3b\x4c\x6a\xeb\xf8\x06\x96\xa4\x1b\x96\xa9\x6f\x85\x7c\xa0\x69\x0f\x74\x6d\x3f\x02\xd5\x2b\x00\x5f\x57\x61\x5f\xf8\x46\xd9\xe7\xb4\x1c\x6d\x57\x6d\xd0\x81\xea\x4c\xe7\x76\x37\x69\x8c\xd0\x25\x9b\x8b\xea\x9c\x41\x92\x14\x9b\x8b\x11\x7d\x4e\xf4\xe7\xcb\x07\x79\xa3\xdf\x0c\xbc\x68\x26\x97\x6e\x60\x12\x6f\xe8\xda\x8b\x79\x31\xcd\xb6\xe3\x77\x58\xca\x2c\xf0\x61\xc0\x79\xfd\xdd\x1b\x63\x85\x7a\x45\x2d\x47\x88\x67\x55\x21\x66\x03\xa6\x08\xcf\xf9\x29\x4c\x37\x50\xfb\x0c\x30\x55\x44\x46\xfb\x85\x56\x7a\x2a\x34\xdb\xbb\x97\xf0\x0b\x2d\xe5\x04\xc3\x37\xe7\x6b\xb5\x4b\x49\xe3\x3d\x2a\xca\x82\x85\x53\x44\x68\xc1\x37\x44\xfe\x40\x61\xca\xf3\xa1\x8d\x0b\x86\x49\xef\x73\x4d\x25\x2d\x27\x57\x78\x4e\x51\xbc\x65\xb6\x5f\xc6\x26\x8b\x8a\xf5\x56\xad\x74\x52\x7d\x92\x6f\x1a\x1d\x91\xa1\x29\x0a\x08\xe6\x7e\xdd\x81\x26\x14\x80\x42\x15\xcb\x4c\x58\x3c\x52\xad\x04\x0c\xd0\xe3\x1d\xc5\x09\xc5\xe5\x48\xfc\xce\xbf\x24\x9b\xa3\x51\xc5\xd8\x52\x0f\x75\x6a\x42\x99\xd5\x7c\x23\x63\xb7\x45\x2b\x50\xce\xa1\xa1\x0f\x1f\xd9\x36\x21\x4b\x89\x81\x67\xf0\x17\x0e\x80\x1f\x20\x2d\xe5\x48\x5c\x16\x0e\xb8\xae\x2f\x9f\x1b\xff\xfc\x94\x62\x6a\xf5\xc6\x71\x54\x94\x59\x7f\x9d\xad\xaa\x63\x5a\x57\x9d\x08\x4a\x91\x82\x68\x51\x08\x3d\x8e\xcd\xc9\x04\x61\xcc\x2a\xda\xf1\x27\xd2\x15\xc5\xe7\xf3\xcf\x35\x3d\x3b\x8d\x86\xf0\xf8\x7b\x45\xcb\xfb\x53\xee\xfe\xd2\x7c\x3b\x76\xac\x03\x5c\xd1\x0c\x54\x40\x73\x56\xe3\x3a\x4e\x2a\xca\x24\x9b\xbc\x98\xae\x83\x90\x51\x93\x22\x23\x36\x79\x43\x11\x5c\x9f\x68\x70\x2b\x29\x0a\x97\x68\x4b\x25\x1b\x17\x5c\xb2\xb1\x81\x20\x63\x94\xa5\xcb\x58\xee\x8c\x31\xa7\xe1\x13\xbc\xf9\x74\x1c\xd3\x5e\xce\x6c\x3e\x20\x7f\x4a\xb7\x62\xf0\x75\xbd\x16\xd1\x57\xb2\x87\xdf\x21\x99\xee\x77\xb5\x5a\xeb\x61\x95\x3a\x37\xdf\x28\x4d\x16\x95\xc3\x96\x82\x9f\xbf\xae\x2a\x6f\xaf\x4f\xa5\xa9\xaa\x67\x1f\x44\x55\x80\x4c\x30\x56\x57\xaf\xdb\x06\x5f\x98\x6f\x26\x4f\xd6\xfb\x0c\x17\x17\xdb\xfb\x16\x0e\x28\x39\xd2\xd3\x8a\x40\xfb\xb4\x02\xf4\x2f\x47\x89\x49\x42\x42\x41\xb8\x2c\x13\x97\x2f\x5d\x66\xd9\x05\x7f\x3c\x9f\x70\x5b\xae\xa8\x1a\xfe\x28\x4b\xbb\xb1\x1d\xe6\x3b\x69\x4a\xf1\x2d\xd7\x81\x2d\x73\x7c\x31\x0b\x07\x6a\x6c\x55\xa8\x07\x3e\x00\x08\x26\x4e\xb3\xeb\x81\xda\xa0\xd0\x09\xc1\xf5\x75\xb8\x1f\x42\x37\xe3\x3b\x0c\x6f\xd1\xb2\xc5\xc1\xba\x05\xea\xe4\x48\xcd\x5e\xa2\x75\x8b\x73\xfa\xb2\xb2\x08\xfb\x96\x9e\x83\x69\xc2\x70\x03\x1b\xc8\xd7\xc1\x2e\x87\x8d\x5a\xb5\xb1\x4d\xfa\xc5\x80\x73\xec\x48\xbe\x9e\x52\xb2\xe9\xa7\x5c\x73\xcc\xc0\x64\xbd\xf5\x39\x3f\xd0\xe7\x15\x02\xee\x8c\x3e\xd5\x7e\xac\x92\xd9\x5b\x3a\x4a\x98\xf9\x2f\x94\x4d\xb4\xc3\xca\x85\x1d\xda\xa4\x98\xa3\x44\x0c\xf7\x24\x04\xad\xa7\x9e\xf2\xfd\x09\x3e\x32\x3f\xab\x48\x95\x10\xf4\xc2\x67\xd9\x3e\x51\x5e\x75\x31\xa8\x5c\x42\xa5\x23\xf7\x9b\xaa\x7f\xf6\x37\x55\x68\xd0\x8f\x96\x0b\x45\x5d\x77\x98\xc6\x90\xaf\x6b\x6d\x1d\xcb\x45\x48\x4b\x0b\x09\xfc\xd7\x54\x6b\xd3\x6b\x8a\x27\x32\xf5\x55\x4a\x1c\x57\x37\x55\x53\xff\x4d\x15\xbc\x84\x36\x2b\x4c\x94\xec\x50\xfa\xd9\x0a\x2c\xfd\x5e\x50\xc7\x43\xef\x59\x74\x1a\xb2\x4a\x13\xf8\x7b\x63\x0f\x2f\xf8\x89\x6e\x98\xe6\xc6\x75\x04\x7f\x9c\x56\x62\xfa\x46\xb2\x39\x98\xcf\x5b\xe3\x5a\x7b\x53\x13\xd7\x43\xd7\x24\xbd\x34\x99\xd5\x55\xe3\x5a\xa5\xb6\x7a\x62\x44\xda\x97\xc6\xbe\xb6\xfb\x3f\x37\xf6\x7a\x75\xa3\x38\x8e\x52\x11\x87\xc5\x80\xbc\xa1\x3d\xf5\x37\x54\x69\x2f\xab\xbc\xdd\x0c\x02\xb9\xae\xfb\xc4\x93\x1e\x8c\x55\x8b\xe4\x65\x45\xa2\xcc\x9c\x45\xc8\x82\x7c\xac\x92\x11\x86\x74\x02\x88\x12\x4f\x75\xa2\x73\xe3\x0a\xdf\xa8\x84\x95\x89\xe3\xc7\x29\x51\x81\x66\xba\x8f\x74\xe6\x71\xac\x42\x92\xb3\x74\xa4\xc1\x1d\xbb\x3d\x56\x0e\x34\xc3\x74\xe1\xd2\xb3\x97\x82\x25\xfb\x81\x06\xd5\x3c\xa8\x34\x96\x5f\x65\xd7\x0c\xf3\x39\x3b\x51\xd5\xaa\x0f\xc7\x9e\x64\xf8\x3e\xf6\x02\xcb\x6d\xd0\x71\xe6\xb4\xd0\x1c\x03\x3a\x89\x85\x6f\xb0\x06\x0d\x8e\xef\x19\x87\xe0\x5a\xae\xa2\x00\x97\xee\x92\xe4\xac\xea\x28\xfe\xa1\xaa\x4e\x6c\x99\x34\xb1\x23\x46\x49\x21\xc4\x26\x2a\x50\x38\xaf\x8a\xdc\xe7\x95\xbd\xfd\x46\x19\x85\x2b\xab\x91\x5d\x9b\x55\xd5\xc1\x33\x81\xe6\x69\xfd\x4e\xa0\xaa\x88\x9c\x8a\xe6\x7f\x19\x6b\xfd\xb8\x51\xd1\x52\x76\xfa\x18\x8e\x40\xb1\x91\x1a\x47\x13\x85\xc5\x36\x9f\x83\x81\xec\x19\x7c\xce\x5b\xf0\x39\x31\x4f\x7f\x49\xb5\x1c\x5c\xdf\x56\x7c\x3c\xec\x34\x63\x2e\xce\x4f\x1d\xc8\x7b\x16\xdb\xcb\xd1\xa1\x4d\x4a\x47\x3f\x55\x4a\x47\x3f\xd5\x9c\xca\x51\x3f\xc9\xc1\xf1\x27\x4b\xa0\x5a\x35\x0e\xf9\xe9\x65\x8f\x3f\x52\x9d\x40\x60\x1e\xe4\x3f\x6a\x20\x69\x1f\x46\x49\x99\xcf\xb6\x76\xef\x66\x1b\xd9\xa2\xa5\xa4\xd4\x1a\x25\xff\x77\x5c\xe9\x68\x9c\x6c\x24\x82\xa9\x4b\x92\x4a\x9b\x09\x3d\x30\xdf\x34\xd1\x6f\xf5\x4c\xb6\x42\x96\x13\xcb\xef\x0f\xc7\x1e\x89\xf5\x87\x5a\x51\xb4\xcc\x6d\x09\x69\x16\xf4\x13\x6c\x25\xca\x07\xbe\xee\xf8\xc9\xed\x95\x2b\xdc\x43\x85\x7f\xfb\xf3\xb1\xff\xcc\x9f\x37\xf0\x55\x7e\x1d\x54\xdf\xf2\xd8\xd8\x1d\xdf\xc6\x8a\xe0\x9b\x26\xa2\xfe\x28\xc9\x09\x2f\xac\xa8\x94\x90\xdf\x95\xfc\xbf\xe7\x08\xa8\xac\xdf\x9a\xe9\xa7\x09\x88\x2e\x5d\x19\xd9\x6b\x2c\x68\x6e\xbe\xe5\x28\x1f\x08\xb9\x9c\x20\xbb\x5a\x8e\x1e\x6b\x4b\x43\x93\xda\xd7\x51\x97\x9c\x55\x0d\x12\xdf\x1e\xfb\x94\x27\x32\x29\xd8\xbd\x27\x34\x25\xd3\xf9\xda\xc1\x54\x2e\x2f\x3f\xe8\xd9\xe2\x51\xb0\x56\x22\xf9\x42\xb3\x3b\x0e\xbc\x15\x1f\x93\xb7\x2b\x15\x4c\x9f\xa9\x60\xa2\x7f\x3c\xca\x51\x0d\xe8\x3a\x5a\x6f\x71\x4c\x92\x96\xd2\x06\x3b\xab\xf0\x35\x3a\x14\x09\xa3\x74\xce\xbb\x3d\x8c\xdb\x43\x86\xf3\x08\x1e\x8d\x6f\xc8\x23\x41\x90\x70\x1d\xc3\xcb\x47\xbd\x8a\x2a\xcb\x24\x4a\x93\x07\xfc\x81\xc3\x31\x3d\xd2\x08\x6c\x3e\xe0\xa9\xfe\xf9\x58\x81\x38\x39\xdb\xe0\x84\x3b\x3c\x91\xd8\x45\x1a\x10\x34\x2e\x5c\x50\xfd\x48\x61\xd4\xb3\x1c\xf6\x63\x27\xb2\xe3\x02\xdb\x08\xb4\xac\xe4\x3f\x54\x0f\xbe\x89\x3c\x09\xa0\x6b\x74\x75\x4e\x1b\x68\x8b\xa4\xc0\xda\xe0\xdf\xa7\x65\x5e\xd4\xda\x92\x39\xdb\xc5\x37\x6a\x54\xd7\xd2\x74\xd6\x07\xca\xff\x94\xe4\xcb\x1c\x9c\xed\x79\x89\xd6\xee\x61\x1c\x25\x3f\x2e\xb6\x3f\xb1\xe1\x4a\x11\x49\xd2\xd7\xd1\x51\x57\xef\x27\xa8\x61\x8f\x73\xed\x67\xe9\x1a\x36\x17\x8a\x8a\x47\xf1\x48\x7c\xd3\xe4\xb5\x47\x49\x5e\x64\x25\x98\x67\x85\x00\x71\x37\x0e\x68\xbe\xae\x33\xd0\xf5\xa5\x84\x09\x1b\x76\x58\x97\x05\x0f\x6b\x5e\x06\x9b\x14\xd5\x46\xdc\xe6\x75\x40\xd9\x27\x94\x7e\x4b\x6f\x7a\x4f\x28\xc6\xdd\x73\x58\x66\x0a\x17\xe9\x40\x92\x2e\x7f\x38\x2c\xe3\xe5\x34\x03\x72\x5a\xd2\xe5\x8a\x8b\x4c\xf1\x22\x65\x96\x32\x77\x2d\x9f\xe0\xbe\xa6\x14\x4c\xaf\xb9\x8a\x9a\xb1\x59\x9a\x8f\x4c\x68\x55\x44\xca\x7e\xbe\x93\xa2\xad\xec\xb3\x9c\x76\x2d\x27\x96\xcd\xe5\x75\x21\xde\xab\xde\x96\x29\x70\x38\xe1\x2e\xba\x0b\x4a\x47\x2f\xcd\xf2\x02\x22\x22\x8b\xbe\xdb\xc5\x0d\x7e\x23\xdd\x42\x31\x30\x49\x4b\x71\x18\xdc\x20\xa3\xc1\xd7\xaa\x3a\x1f\xa6\x49\x1e\xe5\x85\x4d\x8a\x78\x7d\x4e\xe9\xf8\xde\x08\x14\x3b\x17\x0b\x70\xe0\xa4\x00\xea\x03\x79\x8f\x53\xba\xfd\xf1\x86\x6b\x82\x8d\x92\xe5\x34\x1b\x9a\x42\x28\xce\xb0\x03\x71\xf4\xf1\xb5\xb2\xc1\x65\x62\x86\xaa\xd0\xe8\xf8\xd0\x3c\x37\xda\x94\x91\x5f\x9a\x6f\x77\x53\xc0\x62\xe9\x33\x2e\x9f\x5d\x3d\x8d\x54\x3f\x55\x71\xd2\xac\xef\x54\x0c\x79\xc7\x29\x02\x80\x79\x07\xf4\x0a\x63\xfe\x21\x26\x10\xe5\xb9\xf7\x14\xab\xcc\x2d\x2c\x2b\x41\x49\xfb\x0e\x28\x56\x10\x04\xc4\xf2\x08\x22\x43\x18\x39\xc6\x09\x31\x25\x04\x0d\x3e\x3a\x73\xdf\x84\xe9\xc2\xd4\x5d\x6d\x6a\x92\x2d\x32\x6b\xf2\x32\x73\x19\x7f\xe9\x34\xa2\xd9\x94\x56\xa5\xcd\xb5\xff\xa5\x79\xa2\xde\xce\xd2\x51\x9a\x11\x0f\x18\xab\xd5\x23\x88\x04\x28\x81\xaf\x1b\xe1\xc2\xcb\xd4\x29\xe4\x78\x75\x6f\xd1\x10\xe9\x44\x8e\xd8\x71\xbd\xb9\x63\xbb\x4e\xeb\x5f\xd0\x91\x8a\xe4\xf8\x0f\x31\x96\x9a\xdd\x8d\x51\x39\x63\x45\x62\x75\x4e\xef\xd7\xd9\x4e\x8d\x08\x76\xda\x8d\xa9\xb6\xa7\x76\x63\x58\x21\x57\xd3\xaf\x5c\x54\x55\x93\x22\x33\x65\xb7\x36\x86\x27\xf1\x73\x7c\x33\x85\x42\x7b\xe1\x05\xe2\x5b\x4d\x40\xcd\xe7\x12\x6c\x00\xda\xf3\x75\xb5\xaa\xdc\xfb\x7f\x91\xc8\x35\x91\x6d\x81\x62\x26\x0e\xae\x17\x14\x20\x8b\x8b\x2c\x42\xfa\xe1\x91\xc6\xb9\x89\x6d\x3e\x02\x17\x0d\x0d\x09\xec\xc3\xed\x40\x95\x91\x6e\xab\xe4\x52\xd7\x64\x69\x32\x53\x1d\xa3\xa8\xea\x6c\x21\x52\x57\xe9\x29\xaf\x2d\x0e\xd7\x24\x9a\x96\x49\x4b\xe3\x14\x5f\xc7\xdf\xf1\x4d\xf0\xa4\x42\xf0\x5b\x1b\x0f\xcd\x8a\xcd\x72\xf0\xd5\x0a\x4b\x81\xc7\xdf\x4d\x14\x37\xee\x84\x16\x34\xff\x8d\xaa\xbe\x8c\x62\x13\x12\xd5\xfd\x5c\xe5\xb5\x3a\x3e\xca\x2f\x1f\xdc\x00\xb3\xae\xc3\x5e\xef\xdd\xeb\x24\xe0\x88\xac\xe2\xd8\x67\xf2\x38\x2f\x9b\x08\x84\x6d\x28\xce\xc3\xfa\xe0\xa0\x66\x23\xce\x61\xb3\xe2\xf1\x1b\x95\x04\x25\x9e\xad\x5c\x20\x98\xb3\xd9\x8e\x67\x0e\xa2\x34\xf8\xc6\xab\x63\x4f\x69\x78\x59\x05\x20\x95\x47\x88\x23\x1e\x31\x1f\x5c\x34\xa9\xb8\xb6\x1c\x8f\xc8\xc9\x29\xa3\xb4\x67\xb1\xfd\x77\xbf\xf2\xeb\xfb\xbe\xf2\xa5\xc5\x87\xbd\xb3\x76\x15\xd3\x89\xd5\x79\x54\xb7\x01\x3f\x82\xc4\x0e\x52\xaa\x3f\x4f\xed\x7d\xd2\x15\xd8\x72\xd4\x44\x6f\x13\x00\x74\xe3\x12\x95\x26\x11\x92\xb7\x3a\x0a\xcc\x7a\x7f\xec\x41\x17\x52\xb1\x45\x80\x30\xdb\x21\x50\x28\xbe\x9e\x19\xd5\x90\xf9\xba\x51\x6b\x56\x8a\x87\x9c\x44\x81\xdd\x3a\x89\xdd\xc4\x37\x6a\x37\xd9\x2c\xed\xd9\x99\x3a\x89\x8b\x83\xec\x42\x80\x14\x7b\x7a\x66\xe2\x53\x2f\x03\x52\x09\xad\x4c\x24\x6b\x80\x4c\xbc\xce\xc1\x96\x8e\x42\xca\x14\x26\x89\x2d\x12\xe6\xce\x4c\x54\x43\x25\x48\x3e\xcf\xc3\x1f\xc5\x76\x47\xf5\x14\x1b\x97\xd4\x26\xe3\x4e\x3b\xa7\x63\x7b\x70\x9f\xbb\x56\x6c\x42\xe7\xc7\xc4\x6d\x27\x44\x4d\xd5\xc8\x39\x0b\xb7\x34\xcf\x43\x05\x22\x12\xec\x90\xcf\x51\x1c\x43\xa9\x94\xdb\xff\xb0\xa3\xbc\xcc\xf3\x2a\xbd\x14\x99\xc2\xf0\x26\x73\x24\xf2\xd5\x5f\x8a\xde\xac\xef\xaa\xca\x6d\xb6\x2a\x7e\x19\x0c\x05\xf7\xb0\xf1\xcd\xd4\x1e\xa0\x42\x19\xf7\x82\xc2\x1b\x67\xaf\x34\xa8\x7b\xa8\x4e\x15\xc0\xd0\xba\x9f\xf1\x15\xf7\xfb\x63\xc5\x9e\x72\x3c\xf0\x90\xf0\x2b\x0d\x92\xe8\x0b\xed\xd5\xd4\x19\x57\xa9\xc1\x56\x1f\x91\xe2\xec\x66\x54\xe7\x81\xe7\xda\xa3\xb2\x98\x51\xa2\xc6\x87\x69\x54\xd1\x25\xc0\xfe\x90\x48\xb7\x3e\xaa\x8e\xe3\x78\x25\x4d\xb6\x29\x2c\x0c\x1f\x6e\xac\x5d\xc7\xeb\x58\x94\xec\x5a\x8e\x31\xe6\x06\xcd\x8d\xac\x62\x1a\x47\xfe\xbc\xef\x9d\xcd\x8b\x68\x68\x0a\x9b\xc3\x99\x11\xd1\x3c\x7c\x23\x90\x99\xcc\x52\x46\x6b\xe2\xa1\x5d\x94\x5e\x84\x2f\xf0\x29\x56\x91\x50\xac\x28\x64\xb8\x29\x8b\x28\xad\x62\x71\xc7\x7b\xf2\x2e\x4e\x7e\xec\xbc\x2d\x1d\x3f\xb0\xef\x62\xab\xf1\x3f\x4c\x1a\xa6\x34\x8f\x86\x51\x6c\xa8\x81\x6d\x49\xa8\x33\x36\x94\xf4\x09\x4e\x4b\x2e\xa5\xa9\xf8\x23\x34\x59\x3f\x8a\xe3\x59\x95\x5c\x3a\xca\x2f\x26\xc0\x29\x4f\x6a\xfc\x3d\x32\x6f\x7c\xad\x5a\xb5\x7a\x66\x4d\xf2\x73\x70\x3b\xd1\x6a\xc9\xd7\xaa\xe0\x92\x8f\xa2\xc4\xc4\x18\x45\x87\xb4\xf2\x8d\x9f\x1f\xa3\x9d\x55\x60\x57\xd5\x13\xa3\x44\xf7\x11\xde\x5f\xfe\x41\x81\x73\xe2\x28\x89\xc2\xd6\x66\x1d\xca\x05\xc7\xf9\x3f\xbd\x20\xf7\xb5\xf3\x34\xcb\xd6\x01\x4b\x91\xfa\x10\x4d\x1e\x3b\x59\x4a\xb2\x10\xe7\x2f\x6c\xf6\x91\xa0\x86\x8c\xd9\xa5\x00\x4b\xc4\x42\xbe\xca\x5a\x79\xe8\x36\x43\x56\x96\xaf\x1b\x28\x3b\xbf\x4e\x9d\x01\x26\x59\x57\x94\xf8\x6f\x63\xc1\xf2\x8d\x5a\xdb\x44\xac\x5a\x28\x5e\xd5\x2b\x8a\x57\xf5\xca\x54\xa9\xa9\x5a\x0e\x03\x1b\xc7\xb4\x65\xa5\x53\xa6\xe5\x44\xbc\xbe\x4f\x76\x1f\x09\x92\x63\x8a\x94\xb5\x0a\xdb\x8a\xc1\x4e\xff\x2b\x7f\xa2\x01\x91\xaf\xe3\xf5\x51\xcf\xb8\x41\x5f\x81\x2c\x25\x17\xe9\xe1\xbb\xc3\x7f\xc0\x31\xc2\xdc\x31\xb0\x80\x27\x68\x0f\xc3\xa7\x15\x14\xbb\xb4\xdf\xf9\x82\x24\x40\x0c\xf0\x16\x5f\xc7\x5e\x44\x1a\xe4\x4f\x1a\x32\x59\x99\xaf\x6c\x09\xe7\xb5\x0a\x7d\x5f\x99\x1a\x74\x6a\x7e\x4c\xcb\xae\x83\xaf\x21\x72\xdd\x39\x71\xee\x88\xdd\xd5\xf1\x4d\xbe\x1a\xd1\x99\x16\x03\x9b\x7d\x9e\x3e\xe4\xb2\x6c\x4b\x42\x7a\xfe\x1e\x56\x1c\xac\xc2\xd1\xc0\x07\x5f\x87\x29\x49\xe8\xb8\x3d\x74\xb7\xac\xd3\xb4\xbd\xa6\xba\x91\xce\x62\x19\x22\xcd\x70\x1b\x3c\x9c\xc2\x81\x54\xb9\x68\x58\xac\x57\x00\x85\xe3\x64\x04\x1c\x5f\x84\x1a\x9f\xd2\x56\x05\x8c\x92\x55\x56\x25\xc9\x4e\x1d\x1f\x70\xd5\x2f\x23\xc2\x97\x43\xb0\x7e\x94\x55\xe6\x47\xce\x4a\x9f\x22\xbe\x05\x75\x66\xfe\xfc\x78\x66\xff\xaf\x7f\xd5\x35\x8d\x35\xa4\x38\x6d\x31\xa8\x36\x65\xf5\x92\xe2\x53\x29\xff\x6a\x0a\xff\xfa\xd5\x85\xb6\x35\x7d\x9b\x31\x92\x5b\xea\x0a\xd5\xbb\x48\x85\xc3\x6f\x36\xca\x39\x92\xf4\xab\x4a\xf9\xbd\x89\x89\xe7\x9b\x29\x1f\x8a\x1a\xdc\xcb\x2c\xe1\x10\x1c\x5f\x7a\x43\x85\x62\x37\x6a\x22\x38\x4c\x7a\x8c\x22\x02\x2a\xb5\xf7\x03\x9f\xc8\x67\xbd\x00\x1c\xe6\x37\xd4\x36\xdf\x18\x7b\x86\xbc\xd9\x89\x9c\xd0\x80\xcd\xcb\x92\xc3\xa7\xae\x29\xac\x13\x47\xbb\x52\x3a\x6a\x28\x1b\x7f\xa3\x8c\x0a\x3b\xab\xd9\x74\x7d\xe8\x70\x9d\x66\x49\x58\xa5\xab\xe1\x93\x94\x8e\x3f\xc0\x07\x26\xe9\xb9\x6e\x31\x60\x00\xe1\x66\xf1\xb5\xaa\x2e\xf5\x6c\x16\xb9\x98\x19\x01\xf8\x2d\x9a\x3b\xbe\x9e\x8a\x6e\xa8\x0d\x68\x6d\x90\x7a\xf5\x7e\x84\xe2\x20\xc0\xe2\x6b\x85\x24\xd3\xac\xec\x0b\x1e\xed\x57\xfd\x9c\xf4\x4b\xfb\xd4\x5d\x1e\xc5\xf1\x3a\x65\x02\x51\xb1\x79\x84\x5e\x1c\x45\xa8\x1b\xf8\x10\xa2\x96\x8f\x94\x22\x3d\x43\xf4\x64\x45\x37\x30\x77\x67\xa5\x2f\xb6\xc1\x55\x3b\xa9\x40\xbb\xd3\x11\x1c\x31\x42\x46\x39\x24\x54\x5a\x8e\x06\xff\x6e\xd0\x5a\xaa\x62\x0c\xaf\xb1\x71\x41\x31\x85\xbd\xec\x1a\xe7\xbb\xb1\x09\x57\xf2\x6d\x5a\x6f\x17\x8a\x7b\x8e\x89\xc0\x65\xb9\xb8\x46\x84\xc3\x70\x66\x52\x43\xe9\xd6\x0e\x68\xbf\x5c\x87\x51\x5c\x26\xe9\x6a\x14\x0e\x66\xaa\xe8\x88\xf9\x29\xe8\xa1\xe0\x39\x03\xb9\x00\x4b\x75\x77\xea\xdd\x16\x17\xf7\xb7\x97\xa3\x84\xb8\x27\x75\x3f\xdb\x51\xdd\xcf\x76\x74\xea\x63\xd5\x09\x13\x46\x36\x71\xc7\x12\xe2\xf3\x5b\x8a\xca\x7c\x7a\xad\x1c\x04\xb4\xa0\x40\x1a\xdd\x37\x35\xb1\x30\x36\xdf\xa8\x02\x6f\x98\x26\xa1\x1d\x15\x25\xb3\x79\x30\xd7\x09\xed\x38\xe1\x3d\x99\xe6\x0d\xd9\xdf\x36\xbd\xd5\x34\xf4\x67\x03\x33\x06\x06\x4a\x67\xf0\x63\x2f\xf9\x6f\x32\x93\xae\xa0\x1d\x5e\xe5\x12\xf7\x3b\x4a\xc6\x96\x93\xc0\xfb\x2e\xb1\xb2\x60\x6e\xee\x6a\x9f\xc6\x9a\x3c\x4d\x40\x03\x85\x14\x27\xf2\xf7\x38\x86\x76\x76\x54\xed\x0a\xbd\xc2\x88\x2e\x66\x40\x9b\x82\x34\xef\x31\x05\x5b\x6d\x4d\x14\xbc\xf8\x5f\x4d\x59\xcb\xdd\xbb\xdb\x99\x2d\xca\x4c\x1c\x2e\x07\x9b\xf3\xb9\xe6\xe3\x81\x27\xfb\x8e\xa2\xa8\xe5\xfb\x72\x3f\xd1\xa1\xfa\x27\x0a\x99\xb1\x9c\x96\xd9\x8e\xea\x48\xc3\x61\x0f\x36\x32\xb8\x0e\x33\x13\x9f\x3c\xbf\xa2\x15\x44\xaf\x8f\x15\x46\xe4\x4f\x03\xa5\x57\x71\x12\xbe\x82\x10\xea\x54\x8b\x51\xf2\x94\xd5\x62\x84\xad\x63\x92\x68\x47\x7c\x57\x3d\x18\x4c\xe2\x1d\x15\xfc\xf7\x52\x34\x5e\xe4\xd8\xaf\x6c\xdd\x68\x0d\x88\xa5\x6b\xda\xaf\xf6\x90\xcd\xc2\x28\xb7\x5a\x23\x19\xf4\x5a\x42\x35\xb5\xc3\xbd\xfb\x53\xc3\x87\x7c\xf1\x64\x6b\xc7\xb7\xe4\x7f\xa2\x60\x15\x6f\x50\x95\x14\xe1\x17\xbf\x38\xac\x1b\x7a\xa3\x91\xac\x3a\x35\x56\x15\xfc\x8b\x4a\xa2\xec\xbb\x63\x45\xef\x33\x9d\x85\xa2\x90\x2c\xb4\x71\x6c\x59\xd7\x16\xaf\x76\x45\xbd\xe6\x95\x29\x77\x86\xfa\xe7\x52\xd5\xde\x8c\xd3\xe1\x03\x15\x41\x7f\xa0\x2c\xef\x9a\xc9\xb2\x28\xcd\xf2\x56\xf5\x4e\x0e\x58\xe5\x3c\xdd\x5a\xcf\x6a\x94\x85\x65\x24\x0d\xb2\xfc\x6a\xf4\x36\xc2\x8b\xd2\x52\x44\x62\xd3\x78\xa0\x67\xdb\x69\x14\x73\xa5\x4c\xe0\xfb\xd5\xc2\x17\xe0\xb0\xc7\x04\x47\xc3\x51\x19\x13\x7d\x46\xe5\xd2\x38\xbf\x7f\x8f\xff\xf6\xcd\x1b\x5c\x32\x38\xa3\x2c\x0a\xed\xac\x0a\xf0\xde\x64\xa7\xd2\xf9\x45\xd5\xaf\x63\x13\x01\x4b\x01\x6f\x75\xdb\x14\x68\xec\xf9\xf9\x45\xea\x8b\x8c\x7a\xc8\x55\xe2\x97\xc1\xee\xa0\x9a\x7b\xc5\x97\xba\xe1\x3a\x88\x56\xd3\xc8\x15\xb2\x19\x62\x1a\x78\x18\xf0\x91\xa6\x59\xae\x2c\x75\x11\x51\x1a\xd5\x29\x45\x02\x97\xc2\xd7\x8d\xb3\x3c\xac\x7c\x08\xce\x7a\x0b\xc5\x84\x2f\xf8\x1e\x56\x25\xe3\x2c\x2d\xf9\xbb\xe1\xea\x7f\xa4\xdc\xfe\x8f\x1c\xe1\x70\xe5\x43\x99\xc4\x8c\xd2\x38\x12\xce\x14\xa7\xca\xee\xd9\x1e\xdf\xd4\x1d\x6b\x57\xa7\x0a\xa9\xbb\x77\xb7\x73\x9b\xad\x46\xa1\x93\x02\xc3\x16\xe7\xee\x08\xbe\x69\x12\x81\xe9\xd9\xa1\x49\x7a\x60\x35\x57\xfc\x55\x8e\xcc\x2a\xd0\xf5\xf8\x51\x54\xa8\x5e\x3b\xac\x0d\x91\xc6\xf5\x69\xcf\xc2\xac\x98\x7c\x10\x0d\xcd\xba\x69\x79\x0c\xc2\xcb\x81\xff\xe4\xcb\x0d\x72\xc7\xed\x9c\x04\x99\xe4\x34\xe2\x33\x58\xe7\xd6\xa6\x19\xa6\x96\xf6\x55\x47\xae\x25\x25\x13\x47\xb2\x0e\x80\x1c\x5f\x07\x9a\x60\x9b\x18\x3e\x67\x3c\x42\xf6\x9b\x4a\x3b\x87\xdf\x5a\xba\x18\x34\xc7\x7c\x5e\x98\x28\x01\x16\x59\x62\x54\x98\x64\x96\x0d\x52\xb8\xcb\xeb\x81\xf7\xd3\x2f\x4d\xcd\xd2\x9e\xc5\x76\x3f\x33\x49\x12\x59\x99\x69\x06\x33\x68\x62\x47\xa6\x12\x62\x04\x43\xd3\xba\x0d\xd3\x64\x55\xe5\xc8\x51\x67\xba\xa9\x04\x69\x6e\x2a\x9d\x2f\x43\xcc\x5a\x51\xd2\x9f\x41\x4b\x55\x4d\xdb\x17\x19\x7f\x94\x0e\x50\xd6\xbc\x33\xed\x70\x55\x6b\x9e\xb9\xb4\x69\x3a\x99\x4a\x3b\xf0\x3d\x9c\xd3\xed\xc4\x7b\xf7\xb6\x73\x9b\xe4\x91\xab\x0f\x39\xad\x4b\xaf\x7b\xa9\x1e\x12\x1c\x00\x51\x02\xb2\x05\x51\x7e\x6f\x2d\xfa\x52\xdb\xe6\xa1\xdc\xbb\xb7\x32\x13\xa1\xb5\x22\x1c\xd8\x44\x48\xb6\x83\x3f\xd4\xde\xbb\x77\x69\x97\xdf\xa3\x4c\xa8\x80\x19\xfb\x0b\x04\x10\x30\x5b\xd7\xc6\x4a\x60\xff\x3a\x05\x8f\x12\x62\x2b\xeb\xfb\xdd\xc0\x83\x6e\xdf\xd5\xe7\xe6\x47\x5a\x76\xe1\x14\x9b\x40\x44\x96\x3f\x18\x2b\xda\xb4\xab\x14\x40\xe2\x40\xff\x84\x08\x1d\x9c\xbe\xf4\x1e\x01\x8f\xfd\x90\xe6\x13\x35\xa8\xc3\xc8\x44\x21\xcf\x7d\x07\x11\xa3\x43\xbf\x2e\xcd\x0b\xcb\x7c\x03\x5d\x4b\xbb\x9b\x59\xc3\xf4\xf0\x8e\x08\xd2\x31\x61\x9e\x0b\x76\xd5\xc1\x97\x4f\x3d\xd5\x7e\xfa\xb1\xd6\x57\x17\xf8\xa7\x2e\x28\x2d\x96\x7f\x1a\x28\x4a\xd6\x7b\x53\x32\x25\x22\x14\x7b\x8d\xce\x16\x8c\x13\xc7\xc6\x02\xa0\xaf\x9e\x14\xdf\x85\x14\x22\x5c\xcc\xcb\xc4\xfd\x05\x44\xd8\x8f\xb4\x82\xe3\x7d\xd8\x79\xc6\x6e\xc1\x8e\x61\xf8\xa0\xcc\x8a\xdf\x03\x0e\x85\xb5\x7b\x68\x1b\x6d\x3c\x39\x69\xc0\xb9\xe4\x29\xf7\x12\xe3\x57\xef\x2a\xe4\xdf\x5d\x55\x1a\xe8\x45\x36\xff\xcc\x16\xc0\x5d\x1a\x0c\x44\xe0\xab\x5c\x2b\xdb\x8e\x95\xb2\xed\x54\x82\x64\x69\xbe\x3d\x32\x11\xf3\xad\x6a\x81\x32\xa4\x14\x3e\x1d\x2b\xa8\xe0\x0f\xd4\x09\x79\x5e\xa7\xbd\x1f\xeb\xc8\x69\x37\x4a\xe3\xf5\x51\xae\x1c\x65\xc6\xf1\x63\x50\x1e\xd6\x38\xb0\x23\x2a\xa3\x33\x33\x69\xb0\xbb\x19\xba\x08\x41\x1f\x2c\xaa\x30\xd5\x37\x0b\x4e\xc5\xfb\x22\xc2\x10\x30\xab\xc2\x35\xe4\x32\x5d\x8f\xa5\x33\xbd\xb7\x69\x91\xf3\x75\xa0\x14\x13\xd3\xd0\xc4\x0f\xb4\x94\x5c\xb6\x2a\x03\xbc\x43\x3f\x8c\xb4\xf7\x44\xa9\x27\x1f\x0e\x6a\xba\xb7\x35\x41\xdc\x6a\x95\xf0\x27\x82\x06\x29\xa9\x51\x15\x27\x3a\x47\xe0\xf4\xd8\x97\xd7\x6e\x91\xb1\x96\x34\xbd\x6f\xf0\xbd\xed\xaa\x6b\xb9\x59\xb6\x0f\x2a\xaa\x4e\x20\xe9\xe1\xb4\x32\x5d\x0e\x56\x34\xbf\x04\x03\x35\xbc\x29\x7e\xe5\x6f\x75\x3c\x9a\x0e\xec\x79\xae\x9c\xa7\x15\x25\x14\x3a\x2e\x2e\x87\x8a\xaa\x1f\xdf\x25\x42\x2a\x9b\xfd\xaf\x17\x5e\xa8\x0e\x83\xe5\xb2\x30\x45\x94\x53\xe1\x10\xac\x09\x5b\x3a\x1e\xb1\xc3\x51\x06\x37\xbd\xa9\xa2\xbc\x73\x72\x67\x5b\x5a\x5a\xf7\xa0\xef\x32\xa1\xed\x2b\xf9\x75\x4f\x08\x7c\x52\xe1\x58\xf6\xff\xfd\x7d\xb3\xba\x26\x75\xde\x6b\x66\xee\x86\x50\x12\xd6\xf1\x4d\xd5\x44\xf8\x3f\xdc\x53\x1d\xd4\x03\xcb\x2c\x3b\x0e\x1d\x0b\x9d\x34\x71\x59\x1a\x16\x2c\xc4\x3a\xa5\xcc\x52\xe3\x18\xe7\x1b\x75\xea\x77\xa3\x7e\x5a\x64\xeb\x2d\x45\x83\xf7\x3e\x3d\x17\x5f\xab\x16\x90\x74\x34\x4a\xf3\xa8\xa8\xe1\xd7\xce\xe1\x78\x10\xdb\xd9\x50\xb1\xb6\x5d\x9b\xe4\xdd\x32\xeb\x93\x2d\xa8\xb5\xdd\x09\x4c\x41\x4b\xf9\x45\x31\x13\x35\x3b\x46\x51\x45\xc8\xd3\x70\xd8\x77\xa9\x67\xc4\x81\x92\x50\x9c\x7a\x4b\x79\x9c\xaf\x2a\x85\xcd\xdf\xd7\xc5\x64\xdb\x8f\x92\x87\x5a\x4e\x52\xfb\xfb\xc8\x27\x22\x90\xfd\xb7\x48\xe1\xf3\xcd\x26\xf4\xfa\xd2\x3c\x6f\x96\x47\x48\x5a\x03\x27\xe0\x03\x1d\x6a\x42\x17\x8a\xd0\x6a\xba\x38\xe9\x15\xf8\x22\x5d\x4d\x09\xc0\xae\x6d\xf3\xd9\xd7\x73\x0a\x5c\xbe\x31\xf6\x12\xd1\xf3\x7f\x0b\x91\xb7\xab\xbe\xaa\xfc\x0d\x4d\x2f\xea\xc9\x77\x9a\x68\xd3\xa2\x64\x35\x2a\x64\x19\x70\x53\x66\x50\xeb\xd0\xdc\x6c\x85\x5f\x78\xa1\x9d\x17\xe9\x68\xd6\x37\x59\x31\xdb\xac\x46\x08\xe3\x7d\xef\xd0\x03\xa3\x50\xf4\xbb\x3a\x23\x59\x85\x63\xb1\x29\x6c\x6f\xc6\x67\x21\x6f\xaa\xc4\xe3\x09\x8d\x3b\x3a\xed\x4c\x49\x37\x4e\x31\x1e\xd2\x2d\xd9\x12\xe6\x9c\xbf\xf3\x18\xcc\x35\x4e\xa3\x23\x0a\x30\x39\x37\xf1\x35\xf8\xeb\x18\x0e\xd1\x92\x6b\xa8\x4c\x67\x76\x39\xcd\x86\x79\x4b\x07\x23\xf4\x72\x12\xa5\x68\xf2\x31\x13\x25\xf9\x6c\xad\x35\xb2\xde\x40\xf9\xfc\xbc\xc3\xaf\xd0\xfc\xf0\x4d\x43\x03\x25\x09\x95\x97\x49\x14\x4a\x66\xc0\xe3\x68\x78\x1b\x88\xd6\xc2\x63\x0a\x8b\x60\x0a\x1b\xb3\xe4\x1c\xbc\xad\x3f\xa6\x34\x3c\x5f\x07\x3e\xed\x34\xac\x8e\x1c\xf2\xbf\xe7\x7c\x42\xf7\x62\xa0\x34\xb9\xfe\x77\x9c\x9d\xfc\x2f\xea\xb4\xfb\xeb\xb1\xca\xdd\xbc\x32\xc5\x1b\xb0\x70\x00\xbc\x01\x6b\x19\xc9\x7c\x29\x09\xa9\x6f\xaa\x92\xe8\x37\x1b\x2c\xd0\xfe\x76\xcf\x86\xff\x2f\x65\x7f\x1a\x23\x49\xb6\x9e\x87\xc1\xd3\x59\x55\xbd\x4d\xcf\x3e\x73\x45\x8a\x9f\x84\xa4\x74\xf1\x8d\x61\x8c\x68\xca\xa0\xfd\x43\x7f\x32\x55\x5d\xe4\xbd\x5d\x10\x6b\x1a\xdd\x7d\x7b\xe8\x81\x01\xcf\xa9\xcc\x53\x99\x71\x2b\x32\x22\x19\x11\x59\xd5\x35\x80\x01\x59\xbf\x04\xc1\x30\x6c\x1a\x12\xbc\x08\x10\x2c\x02\x96\x6d\xc9\xa2\x48\x5d\x49\x57\x92\xc9\xcc\xbb\x90\x97\xba\xcb\x70\x96\x3b\x6b\xcf\xd2\x7b\xf7\xf4\xbe\xef\x5d\x6d\xc4\xfb\xbc\xe7\x9c\x27\x2a\x63\x64\xfb\xd7\x44\x4c\x57\x66\xc6\x72\xce\xbb\x3e\xef\xf3\xc4\x51\x82\x4a\x15\x96\xeb\x99\x31\x31\xe3\xc3\xfe\x12\xcf\x9d\x03\x50\x9d\x62\x15\xdb\xa1\x5d\x77\xbf\xeb\x48\x37\x1b\x5e\x37\xec\x02\x0d\xa9\x14\xfd\x74\x94\x9b\xa4\x52\x09\x3e\xd6\xa2\xaf\x3d\xc6\xd2\xe9\x71\x64\x13\xbc\x05\xd2\x38\x7d\xdd\x0f\x79\xb8\x62\xdb\x8a\xe9\x14\x69\xb6\x21\xa5\x6c\xf4\xd4\x2e\x31\xe5\xe0\x35\xaa\xc2\xbe\xd0\x0e\xd3\xc5\x3b\xa6\x24\x69\x16\x0e\x35\xcb\xfd\x90\x41\x7d\x1c\x6d\x1c\x55\xe8\x41\xe1\x03\x35\x27\xaf\xcc\x1b\x50\xa6\xc4\x5f\x36\xd3\xae\x31\xad\x2b\xd6\x14\xa3\x50\xcc\x76\xd8\xc6\x46\x60\x47\xf5\xc3\x2c\x71\xfe\x6b\xbf\x0a\x21\x5b\xf8\xf3\x46\x9b\x3a\x2e\x8d\xc9\x0b\x3c\x15\xa8\x1d\x85\xdd\xf2\x8c\x60\xc4\x4e\x8f\xab\x63\x7f\x87\xe7\xf5\xf8\xc8\x38\x34\x26\x6e\x12\x69\xff\x35\x3c\x7e\x18\x1a\x8d\xde\x50\x6b\xd6\x8e\x04\xc6\xf3\xa0\xd4\xe7\x94\x08\x82\x4e\xe3\xef\xd7\xd4\x7e\xf7\x0b\xbf\x96\x59\xd6\x34\x0b\xb6\xf9\x7f\xc2\x85\xe9\x09\x39\xde\x61\xaa\x3d\x04\x1e\xde\x71\x2f\xbc\x26\x1d\xcb\xac\x59\x59\x89\xb2\x81\x9a\x4b\xd7\x17\xe5\x26\x69\xad\x8d\x8d\x63\xdb\x33\xf1\x4c\x85\xdf\x3a\xb4\x61\x1f\x57\x66\xcd\x69\x7e\x31\xee\xce\x51\x80\x73\x92\xfa\x8d\xba\xca\x10\x9c\x3c\x49\xf4\x64\x58\x71\x28\xbd\x4c\x43\xdc\x4b\x03\x07\xed\xce\xd2\x6e\x2c\x2e\x92\x20\xc8\x81\x79\x2f\x08\xe2\x16\x37\x04\x97\x95\xa5\x03\x89\xde\x8d\xca\xd0\xac\x76\xf7\x14\x5c\x4f\x8c\xce\x57\x2a\xf3\xb8\x47\xa8\xcc\xa3\x31\x9e\x9e\xd4\xf1\xe3\x2e\x9b\x2c\xdb\xa0\x92\xa1\x52\x0e\xbb\x32\x69\xcd\x2d\x0d\xd3\x38\x1e\x79\xb5\x74\x54\xcb\x7e\x42\x8c\x91\x3f\x21\x72\x0d\x23\x22\x4b\xa2\x60\x13\xca\xc6\x97\x89\xe7\xf1\xf2\x78\x4f\xb0\x02\xdd\x1c\xc4\xa9\x5e\x72\xab\xdc\x9c\x9a\xbd\xf1\x5c\xf8\x69\xa6\xc3\xc1\x64\xb0\x23\x5f\x2e\xdf\x19\x36\xd0\x47\x34\xf8\x76\xd9\xbb\xb4\xbe\x19\xc5\x33\x44\x5d\x8b\x85\xef\x85\x22\xf6\x07\x95\xe5\xba\xee\xef\x7a\x9a\x65\x9e\x97\xc3\xcd\xd8\x06\xdc\xe9\xc5\xa9\x58\xfe\xf0\x7c\x73\x43\xa8\x3f\xf6\xfa\x4a\x60\x79\xb5\x8e\xe5\x8f\xb8\x8e\xfa\xa9\x6a\xd6\xe1\xcd\xdf\x69\xd1\x98\xeb\x9d\x31\x2b\x23\x99\xac\x67\xf3\x27\x43\xd2\xf2\x4c\x9b\x64\xb2\x15\x86\x85\x94\xee\x36\x78\x33\x51\x97\x6e\x4c\xc2\x44\x5c\x43\x9c\xb4\xfe\xff\x36\x71\xc0\xcd\x08\x12\xaa\xc2\x0c\xa5\xa4\xfa\xd2\x78\xf0\xe8\x1b\xff\xad\x27\x6b\x61\x9b\xb1\x14\x28\x17\x17\x5d\x29\xb4\x15\xe6\x4d\x8f\x7a\x4c\xcc\x6a\x6c\xa3\x64\x3d\xcd\x18\xb1\xad\xde\xd7\xa1\x26\x03\x22\xbc\xbf\x31\x54\xe2\x51\x7c\x8d\xe2\x11\xf5\x64\xfc\x14\xe9\xe7\x5b\x68\xea\xba\xad\x26\x5f\xf8\x55\xe2\x3b\x07\xe6\x9b\xa6\xd3\xb1\x5d\xd4\xe2\x10\x51\x9d\x91\xab\xd5\xe3\x29\x70\xd1\x2b\xcd\x4e\x06\x79\xc1\xfd\xde\xeb\xb1\x37\xac\x8c\x69\x0e\x6d\x56\x6c\xec\x24\x91\x9a\x2f\xb9\x40\x70\x02\xaf\x07\x41\x3d\xa0\x80\x9e\x84\x6e\x9f\xe3\x94\x9a\x15\xbd\x2c\x04\x0a\xa8\x97\x61\x6b\x7e\xbf\x15\x7c\xff\x51\xcf\x1f\x5e\x8c\xb2\x64\xe7\x56\x7a\x0c\xbc\xc1\x7f\xc2\xb2\xe1\x27\xb0\x9d\xdc\x5f\x11\x49\xc2\x2c\x49\x08\x3e\x1a\x13\x27\xf3\x15\xc2\xf8\xcf\xb5\x43\x05\xbe\x6f\x86\x43\x5b\x86\x3a\xe2\x3d\xdd\xb8\x43\xc3\x13\x6e\x7f\xc0\x23\x81\x8f\x5b\x41\xeb\xe3\x87\xe3\x80\xba\x3b\x3d\xf5\x9c\x25\x38\xec\xce\x05\x13\xa3\x78\x04\x44\xba\x93\x56\x70\x37\x27\xc6\xc4\x12\xf8\xdf\xe0\xc6\xf0\xad\xd7\xbe\xb2\xf8\xdf\xb7\xd1\xba\x69\x04\x81\x23\xe5\x8b\xd1\x13\xe2\x1c\xc9\x6c\x77\x24\x03\xbb\xf2\xef\x18\x49\xc1\xc6\xd8\xbc\x1e\xc2\xe1\x7f\x00\x28\x3d\xee\xf1\x34\x8d\x0f\x44\x09\x70\x5f\xb2\x19\x74\x4c\x5d\x3e\xe6\x46\xd6\xa7\x7b\x09\xcd\x4e\x6c\x4d\xb6\x05\x5a\x87\x72\xbd\x1e\x7b\xf6\xf0\x32\xce\x5c\xc9\xcc\xc0\xaa\xd3\x50\xed\x4f\x5c\x1e\x26\x54\xe1\x26\xaf\xb3\x47\xfe\x84\xac\x49\x1e\x25\x3d\x51\x2d\x0f\x50\x23\x79\xb2\xce\xbb\xba\x82\x7f\x66\x3b\xab\xb1\xcd\xf3\xc4\x89\xc0\xf8\x56\x2a\x95\xe0\x89\x98\x60\x68\x3b\xd1\x4a\xd4\xd9\xd9\xf0\x8c\xb0\x33\x30\x4c\x30\x94\xc7\xe4\x71\x81\xa0\xe6\x23\x59\xec\x4e\x56\x48\xee\x43\x3f\x31\x09\x23\x8e\x1f\xcb\xe2\xf3\x6c\xfb\x07\xe6\xbd\x48\xd3\x34\x0b\xe2\x02\xda\xbe\x41\xcd\x18\xdf\x00\xfb\xa7\xc7\xed\xb0\x4d\x45\xf7\x3b\x03\x04\xec\x75\x3f\x77\x57\x41\x55\x4e\x0f\xa8\x1e\x6c\x42\x98\x40\x10\x1e\x98\x68\x6e\xb4\x29\xe9\xb8\x22\xe8\x1e\xc4\x4d\x37\xc8\x9e\x5c\x65\x2d\xa2\x7b\x61\xf6\x27\xca\x0b\x31\x84\x87\x43\x58\xc0\x36\x8c\x82\x94\x6e\xaa\x65\x78\xa0\x74\x3e\xa6\xa9\xa0\x73\x2c\x54\x1b\xb4\x76\xd7\x6c\x61\x33\x93\xcc\x05\x08\xa4\xb6\xa3\xdc\x48\x6b\xc3\x6b\x46\xdf\x20\x48\xcb\xa6\x74\xab\xb5\x45\x30\xde\x15\x35\x87\x99\x5d\xf9\xab\xcd\x5f\xdb\x49\xdd\x99\x5d\x13\xb9\x16\x05\xbd\x22\xa4\x9a\x9b\x10\x0a\xfe\x86\xb8\x0d\xa9\x2d\xff\xd7\xbf\x20\x96\x05\xe1\xf5\xb3\x6d\x62\x37\xb9\xc2\xc2\x7a\xd7\xfc\x43\xc9\x8b\xcc\x24\x3d\x30\x1a\xe2\x49\xfe\xe2\xa4\x52\xd7\x22\xe1\x23\x64\xc1\x08\xb0\x7f\x99\x01\xfb\xbf\x2b\x2b\x14\x0b\xff\x26\x6b\xaa\x5b\x19\x22\x9d\x0d\x98\xe6\x3f\x12\x73\x84\x9a\xc0\x87\x95\xfa\x20\x69\x84\x1f\xab\x9b\xf9\x28\xb2\xb4\xf0\x9d\x0d\x18\xbd\xcb\x6c\x6c\x2f\xd3\x86\x1b\x0a\x85\x43\x57\xa0\x4d\xe8\xf2\x7e\x01\x2f\xa0\x27\x53\xdd\xfa\x57\x30\x0b\xd3\xb5\x99\x84\x2d\x78\xb9\xdb\xb0\xd6\x60\xfd\xc1\x9f\xe2\xc2\xa9\x90\x54\x75\xfa\x59\xe4\x3a\x6b\x4e\xbf\x42\x9e\x8c\x8b\x95\xea\xf8\xe4\x0a\x93\x60\xb6\x52\xd5\x2f\x5a\x01\x13\x7f\xac\x8e\xe9\xc1\x0a\x1f\xda\x81\x79\x97\x81\x55\xe6\x63\x1a\x5e\x27\xe6\x9f\x51\x4c\x38\x4a\x46\xf9\xc8\x31\xed\x39\x85\x11\x0d\xc4\x9c\x81\x9d\x96\x0a\x68\x76\xa3\x95\x15\x9b\xd9\xa4\xb3\xa5\x7a\x52\xe1\xb7\x9a\x22\xca\x7d\x6d\x7f\xf3\x65\xfd\x7b\xcc\x08\xcc\xb4\xa5\x2a\xab\x27\x53\xfa\x06\x42\xae\x84\x90\xd8\x6f\x17\x15\x45\xd4\x13\x82\x16\xf4\xad\xc9\x8a\x58\x92\xdc\x00\xbb\x84\x2b\xd0\xe3\x5a\x82\x89\x51\xd6\xe9\x9b\xdc\xb1\x40\xb8\x19\x62\xf9\x0a\x9a\x2e\xfe\x86\x6e\x88\xe3\x44\xb0\x74\x7c\x1c\x50\x23\x51\xb6\xa6\x4e\xc2\x05\x82\x5a\x77\xd7\x93\x16\x75\x08\xbc\x84\x34\xba\x2e\xf7\xa8\xef\xf6\x00\x1f\x42\xc1\xe1\x2c\x4f\xc5\x5f\xa8\xab\x3e\x14\x99\x1d\xd8\xa4\x9b\x8e\x72\x55\xb6\xf7\xe6\x2a\x48\x1c\x4e\xbd\xbd\x85\x43\xcd\x2c\x2d\xfa\x79\xa7\x1f\xc5\xdd\x5c\x6b\xaf\x62\x59\x7e\xef\xa5\x36\xd1\x0a\xdc\xa0\x5a\x96\x4e\xe4\x21\x4c\x7f\x6a\xf2\x52\x85\x22\xc7\x66\x6b\x32\xc6\x35\x13\x3a\x9a\x97\x2b\x94\x7d\xe4\xee\x7e\x4c\xc2\xf5\xdf\x8e\x06\x68\x03\x38\xc5\x81\xd0\x0a\xc1\x18\x98\x57\x25\xf0\x6d\x91\xcf\xc7\x21\x0f\x37\x49\x50\x2f\x5a\x5c\xf4\x03\xf7\xe5\x07\x3d\x0f\x65\x19\x04\x01\x84\xf2\x5d\xfa\x64\x91\x59\x53\x0c\xac\x13\x83\x76\x04\x60\x61\xc8\xeb\x34\xc1\x68\xbb\x02\x31\xdd\x49\x85\x20\xb4\x18\xd0\x1b\x41\xed\x12\x01\xda\xfb\xb0\x1d\x4e\x89\x38\x00\xb4\x3f\x0e\xba\x57\x2b\x1f\x48\x95\x0a\xf1\xa7\xce\x7d\xb8\xba\xd3\x74\xf4\xf1\x0d\x29\xe6\x0f\x61\xcd\x16\x34\x7d\x3a\x83\x62\xab\x9e\xd0\x1a\xec\xdb\x6c\x39\x42\x36\x44\x48\xac\xfd\x1e\x89\x55\x19\xb9\x1c\x2c\xcf\x10\x6f\x8c\x26\x2a\xb0\xb7\xb7\x08\xec\xc7\xc0\xc3\x6e\x9a\x0d\x84\x2f\xf8\x80\x13\xc1\x01\xfe\x47\x8f\x27\x14\x6c\xa7\x71\x54\x44\x9d\x7c\x26\x94\x3b\x30\x22\x83\x5e\xd5\xb6\x49\x00\xaa\x7c\x41\xb5\xed\x15\x93\x0d\xc0\x87\x86\x20\xf7\x1e\x25\x8d\xca\xed\x88\x98\x90\x25\x3e\xba\x76\xb9\x40\x17\xcd\x4d\xc3\x94\xd7\xa4\xc7\x54\x31\x8c\xed\x91\xa8\xa3\x69\x32\xe2\x0e\x4c\x0a\xe8\xf1\x94\xfd\xdd\xbb\xb7\xb9\x9c\x45\x9d\x55\x16\x86\xaf\x0c\x3a\x10\x6a\x3d\x8d\xe3\x34\x43\x4d\x01\xcd\x8a\xcf\x64\x2d\xeb\xf1\x14\x3b\xab\xf4\x94\x8a\x2c\xed\xf4\xed\x20\xea\x28\x8c\x75\x5a\xe8\xfb\x12\x99\xe9\xf5\xbe\xb5\x71\x1c\xad\x22\x76\x55\x8a\x95\x56\x83\xe8\x56\x9e\x63\x99\xfa\xd2\x43\xe5\x4f\x4a\xe4\x79\x75\x1c\xcc\xcb\x6c\x19\x85\x6e\x5e\x05\xdb\xd9\x55\x89\xfe\x35\x06\x91\x24\x12\x66\x4d\x79\x69\x94\xd3\x11\x7b\x08\x59\xce\x09\xd4\x00\xf4\x04\x2f\xc4\x9b\x59\xcf\xac\xbc\xd9\xfa\x85\x10\xd1\x8e\x86\x36\xeb\xa4\x49\x77\xd4\x29\x52\x8d\x6c\x55\xb7\x4a\x2e\xcb\x69\x58\x71\x75\x2d\x4b\x46\x9d\x74\x18\x01\xf9\x81\x20\xe2\x67\x54\xb1\xfb\xd9\x38\xa8\x0d\xcb\xac\xc3\x4c\xc0\xc7\x9c\x27\x22\xb3\x2f\x18\xef\x72\xab\x8e\x5f\xae\xe8\x67\xa3\x1c\xf9\xae\x4f\xca\x82\xf8\xc8\x3f\xf1\x81\xfd\x9a\x4d\xec\x9b\x23\x1b\x2b\x29\x29\x62\x29\x1d\xd1\xd5\x13\xe6\xb4\x2c\xdd\xa2\xe7\xd0\x77\xfd\xae\x80\x60\x98\x9e\x09\xdb\xbb\xb7\x19\x0d\x86\x69\x56\xe8\xb8\x39\x5c\xc6\x0d\xae\x39\x00\x60\x81\x6a\xf5\xf1\x32\x0f\xe0\x9e\xfb\x6b\xfb\xbf\xde\x7c\x45\x02\xb3\xca\x58\xa9\x87\x06\x7b\x82\xa6\xf3\x2d\x62\x7a\x51\x9e\x59\x98\x4a\xe5\xb9\xc0\xee\x3a\xc6\xdc\xc7\x47\x3a\x16\x70\x4d\x55\x74\x21\x59\xa3\x69\x15\xc7\xd2\x5f\x77\x37\x12\x33\x10\xd6\x9d\x10\xdd\xcc\xb4\x39\xf0\x99\x99\x04\x9b\x92\x66\x89\x2d\x0a\xcb\xd2\xd2\x5a\x24\x70\x23\xbe\x35\x43\xf2\x85\x59\xdd\x92\x91\x01\xd8\xa9\xc7\x04\xe6\xec\xf4\xa3\x35\xa3\xd8\x72\x27\x2e\x44\xf5\x99\xaa\x62\x73\x61\x60\x3c\x1d\xde\x4f\xfe\xd0\xa1\x90\xa9\x2d\x96\x9a\xac\xfb\x4c\x60\x18\xbd\x8a\xf8\xc0\x0f\xfb\x96\x3e\x00\x3d\xdd\x82\xf9\x77\x9f\x68\x07\x06\xe9\x1b\xad\xd0\xaa\x50\x62\x29\xb8\xd6\x6b\x52\xed\x25\x5e\x40\x17\x5f\xef\x92\x82\x04\x16\xc0\xef\x63\x65\x20\xf8\xfc\xa9\x82\x44\x70\xef\xac\x87\x3c\x37\x09\x35\x9f\xe7\x40\xda\xa6\x1f\xa9\x98\xdc\xa4\x83\xd0\x01\x75\xba\x73\x34\xa1\x3a\x4d\xc8\x2d\x55\xe0\xa2\x1f\x95\x51\xe9\xe1\x79\xaf\x52\xd1\xf0\x33\x9f\xe7\x58\x96\x23\x4b\x4d\x37\xde\x00\x92\xd6\x5b\x37\x1f\x1c\xdf\xc6\x7d\xbb\x39\x13\xb1\x2c\x28\xb8\x7c\x07\x9d\x24\x3d\x19\x53\xa6\xaa\x71\x99\x33\x8f\x9e\x51\x39\x2a\xb3\x2a\x0d\xf9\x1d\x74\x99\xe6\x8c\xef\x52\xf4\x95\xa5\xe5\x96\x0f\xe8\xc4\x2a\x33\x74\xcd\x90\x7c\x1c\xc5\x4a\x36\x83\x9f\x05\x38\x4c\x8f\x3d\x78\x50\x06\x74\xf0\x20\xd1\xc0\xb9\xcf\xac\xf4\xf7\x2b\x18\xb8\x2c\x8d\x21\x8f\x87\x61\xa8\x33\xb8\x43\xa0\xf4\xae\xb7\xa4\x49\xea\x5e\x40\x88\xf7\x1f\x8e\x03\xd4\x00\xb2\x08\x5e\x16\xbc\x7c\x72\xc8\xdd\x4e\x52\x08\x75\x57\x02\x0d\xc5\x23\x60\xc5\xa0\xd2\x73\x5f\xc2\x17\xfc\xf6\x75\x50\x59\xfa\x99\xc4\xc0\x10\x75\xbe\x05\xb4\x97\x5b\x16\xc4\x67\xf2\xa7\x55\x86\x9d\xe4\x4d\xe2\x4c\xb8\x46\xb8\xd2\x6b\x75\x5c\x52\xe9\xa8\x00\xdb\x70\x18\x8d\x39\xdb\x22\x61\xb2\xb3\x1e\x68\x9f\xa7\x9d\x48\xa1\xe2\xa8\xb8\x3f\x33\x21\x06\xcb\x67\x68\x32\xb4\x63\xb2\xb8\x48\xdd\x14\x33\xa2\xce\x3b\xcc\x5b\x7b\x87\xd0\x78\x1d\x93\xd9\x95\x51\x1c\xa3\x6f\x85\x5a\xf3\x97\x82\xc7\xd2\x63\x94\xd9\x7c\xeb\x2d\x48\xd9\x9f\xa6\x72\xe2\xc0\x14\x9d\xbe\xaf\x44\x61\xc3\xde\x97\xf4\x1a\xe1\x0e\xc8\x06\x11\xe6\x5d\xa3\x60\xf8\x51\x1d\x0e\x6d\xbd\x6f\x13\xbb\xa6\xf8\x19\x07\x3d\x93\x31\x54\x87\x49\x0b\x81\xc0\xb7\x47\xdd\x5e\x08\x5d\xbd\x3a\xbb\x27\x35\xbb\x30\x35\x22\xb1\x70\xa8\x99\x58\x93\x2d\xa3\xaf\x80\xcb\x43\xb0\xab\xc7\x14\xc9\x0c\x4d\x62\x06\x06\x96\x15\x9e\x1d\xc5\x04\x3d\xa6\x61\xf0\x61\x96\xf6\x32\x33\x18\xd8\x0c\x74\xaf\x28\x1f\x3d\xac\xf2\x37\x35\x3c\xb5\xed\xbb\x58\x5b\x28\x71\x9e\xae\xe9\x88\xee\x6f\xda\x38\x2a\x43\x7a\xf1\x1b\x9b\x62\x54\x5f\xdf\xbc\x5a\x2b\x20\x36\x30\xab\x8a\x04\x57\xec\x0c\x56\xa7\x03\xd2\xd4\x64\x79\x99\xcd\x0b\x33\xca\x9c\xda\x85\xb2\xf8\xb5\x42\x82\x73\x7d\xbc\xdb\x2f\xa7\x37\x9e\x94\xef\x46\x60\x78\x62\x1c\x6a\xf0\xaa\xad\x2b\xf1\xe8\x07\xcf\x4d\x42\x30\x08\x99\x2f\x45\x20\xe0\x11\xc0\xd5\xfd\x50\x54\x7e\xf1\x9c\xff\x1d\x36\x21\xd2\x03\x78\x03\xa7\x83\xc9\xc3\x24\xf7\x78\x54\xe3\xb1\x6f\x4f\x0a\x5b\xd7\x76\xa2\xb3\xbc\x4b\x9a\x70\x73\x93\xc0\x0d\x8b\x86\x1a\xdc\x56\x03\xcd\x08\x74\x28\x1f\x71\x31\xf6\x16\xa1\x8c\xd3\xf5\xc4\x76\x77\xcb\xaa\x47\x34\x78\x54\xea\x65\xc8\x5d\x8e\x8b\x49\xd1\x63\xe2\x77\x9e\x99\x88\xa3\x73\xd4\xc6\xf2\x60\x00\x32\x7a\x06\xb9\x84\x0b\x19\x1b\x9e\x4c\x0b\x62\xa1\x95\x2a\x13\xac\xcb\x31\x2a\x56\xae\xd9\x7e\xd4\x89\x6d\xbe\xa3\xfc\x59\x27\x7f\x15\x90\x55\x27\xd1\x15\xc2\xab\xc6\x0b\x04\xbe\xe3\x7a\x2b\x70\xc4\x9d\x11\xd3\xa7\x7f\x83\x1f\x72\x5d\x6e\x8e\x3c\xba\x98\x51\xf3\xd1\x31\x78\x22\xf5\x98\x1c\xfe\x7a\x94\xdb\x0c\x8a\xe3\xda\xcc\x82\xcd\x75\x9d\xad\xad\x8b\xf9\xd0\xab\xcd\xbc\x1f\x0d\x87\x52\xca\xf5\x5a\x26\xc7\xc7\xc4\x7b\x78\xbc\x42\x11\xb1\xcc\xd3\xd1\x17\x61\x7f\x9c\xa0\x59\x30\x1d\x77\xc8\xb7\xae\x40\x59\x6c\x7b\x00\x90\x68\x41\x1e\x8b\x76\x06\x95\xc0\x8a\x9e\xa2\xa3\x7c\x92\xfb\x50\x8c\x3d\xe2\x79\x07\xb8\x0f\x51\xc1\xb2\x8d\x11\x8c\x92\x60\x89\x1f\x94\x42\xdf\xc3\x95\x2b\xa7\x2b\x64\x5d\x9b\x47\x3d\x5f\xee\x45\xa8\xf8\x80\x19\xa5\xa6\xa9\x6d\x0f\xcf\xbf\xde\xcc\xe3\x30\xe3\xa3\x74\xd8\xa4\xd6\x7c\x99\xe6\x88\x86\x66\x68\x33\x89\xc2\x1a\x84\xa9\x45\xa0\xeb\x58\x46\xd8\x43\x15\x46\x8b\x5b\x2a\x31\xc8\x9d\xb4\x4f\xeb\x28\xcd\xd6\x23\x6d\xc2\xa2\x8e\x05\x6c\x8e\x1e\x4f\x95\x53\x0e\xcf\x2f\x34\x6d\x52\xf4\x47\x79\x64\x72\xd6\x36\xbd\x4c\xda\xa6\x97\xa7\xec\xd8\xfe\x03\xfb\x65\x12\x50\x00\x20\xb0\x1c\x4f\xb4\x89\xeb\xef\x67\x95\x8e\xb2\x3c\x3d\xc4\x91\xb7\x7c\xf7\x34\x49\x13\xbb\xab\x8c\x17\x11\xd6\x9d\x1a\x57\x95\x93\x7e\xfd\xb7\x3c\x97\x59\x08\x04\xb7\x89\xa5\x70\xd0\xb8\xd0\x08\xbc\x16\x02\xe8\x37\xfe\x72\x9b\x14\x7b\xb4\xd9\x8e\xe5\xd8\x98\x42\x7f\xee\x5b\x6a\x0e\xa2\x38\x2a\x4c\xa5\x6d\x7d\x9e\x26\x5d\xa6\x31\x87\x4b\x4b\x07\x1d\x01\x32\xca\x8e\xfb\x83\x3a\x90\xb7\x35\xdf\x6b\xed\xf1\x2f\xbc\x50\xb3\x0d\xe8\xd2\x29\xe2\x5f\x3e\x55\x37\x1c\x3a\x88\xba\x1b\xd6\x80\x10\x04\x59\x04\xda\x68\x08\xa4\x34\x30\x73\x13\x5c\x5b\xbd\xe5\xde\xbd\xcd\xae\xb5\x43\x9b\x49\x1d\x02\xa1\xea\x79\x6c\x49\xe4\x98\x1f\x8c\x89\xc5\xf1\x46\x5d\x7a\x32\x34\x79\x5e\x25\x2a\x52\x9b\xae\x27\x75\xb9\xe8\xc0\x66\x3d\xd5\xd4\x24\xde\x2f\xb7\x6b\x6f\xd1\x2d\x7f\xe4\x03\xa4\x81\xc9\x56\x6d\xd1\xa0\x0e\xc0\xce\x49\x58\xa9\x3b\xa7\x26\x63\x0e\xcc\x1f\x70\xe4\x23\x22\x19\xe6\xc0\x85\xe5\x43\x47\x6e\xfd\x19\x9e\x0d\x1c\xc9\xbf\x16\x20\xb6\x6a\x51\xcb\xf2\x80\x77\xf8\x49\x4d\x94\x7c\xb0\x69\x55\xec\xc2\x09\x5b\xc9\x6b\xd5\x93\xf2\x03\xa1\x5e\x58\xd8\xc1\x30\x36\x00\x4c\x05\x62\x3b\x1a\x03\x3c\xe3\x33\xef\x51\xd2\xe9\x9b\xa4\xe7\xb1\x8b\x28\x30\xdc\x25\xc2\x19\xf4\xd5\x02\x7a\x41\x7f\x25\xcb\xfc\x80\x84\x9f\xb8\xf6\xdc\x09\x5a\x90\xd4\xb6\x0f\x93\x01\x95\x01\x48\xa3\xd2\x0b\x09\x06\x96\x59\x83\x56\xd2\x51\x22\x35\xdc\x6f\x6c\xde\x87\x35\x71\x4a\x20\x0d\xcf\x2f\x79\x9b\xf4\x0d\x4f\x8d\xbf\xe6\x83\xda\x51\xd2\xfd\xcf\xff\x23\xd1\x0f\xd7\x24\xd9\x71\x5f\x6e\x12\x0c\x73\xd3\x13\xf2\x76\x6d\x16\xa1\xbc\xaa\x85\x73\xf4\x41\x74\x9a\x54\x4f\xda\x75\x3d\xb1\x61\x1a\xfb\xd1\x78\x47\x01\x1b\xea\x17\x6a\x53\x30\x28\x74\x6e\xfc\x97\x6b\x60\xa9\xc9\x5a\x94\xa5\xc9\x40\x64\xb9\xa2\xdc\x8d\xd5\x60\xe3\x28\x76\x59\x4f\x58\xed\x3c\x29\x4c\x16\xa5\x8d\xf0\x8a\x2e\x72\x31\xfd\xa2\x6f\x84\xf5\x4d\xb6\x9c\x66\xfa\xa5\x8e\xb2\xa4\xa2\x2a\x50\x23\x22\x1f\x25\x85\x2d\x63\x39\xa5\xc8\x53\x6a\x66\x44\x5c\x8e\xa7\x39\x94\x6e\xa3\x3c\x33\x36\xde\x4e\xc0\xea\x87\x2c\x39\xae\x84\x37\xae\x39\x40\x04\x9c\x0f\x51\xc9\xc5\xda\xff\x84\x66\xb2\x3f\xa9\xa5\x93\x37\x45\xbf\x41\x82\x29\x3f\x22\xa9\xa7\x1f\x31\x0f\xe2\x6a\xbe\x27\x70\xc8\x5c\x26\xde\xfc\xfd\xff\xa1\x16\x48\x64\x81\x7f\xf2\x9c\x98\x2b\xd4\x6f\x5e\x90\x2d\x8d\x18\xe7\x2f\x4f\xa8\x54\xb0\x1d\xcc\xb0\x30\xf7\xbb\x27\x81\xe2\xe7\x47\x50\x7a\x74\x8e\x27\x08\xb4\x2b\xb9\x80\xe4\x59\x7f\xeb\x2f\xb6\x09\x03\x74\x7f\x2a\x20\xdf\xbb\xd0\xcc\x6d\x62\xa4\x68\x87\x4b\x53\x49\x1a\xbc\x22\xa7\x4f\xe3\x29\x77\xb2\xa8\xb0\x3b\x02\xf6\xe6\x18\x7e\x0a\x21\xd8\x39\x86\x04\x60\xaa\x1d\x1b\x51\xca\x91\xba\x0f\x95\x9d\x87\xc8\xd3\x1d\xc2\xeb\x3e\xa5\x5d\x5d\x6b\xba\xb1\x90\x81\x1f\x98\xd7\x91\x17\xe8\x53\xea\x31\xd5\xe1\x56\xec\x20\x4a\xca\x65\x8b\x38\xa6\x52\xf4\x82\xc3\xfc\x39\x4c\xac\xf6\x82\x49\x46\x27\x5a\x59\xb1\x39\xbb\x9c\x73\x78\xa4\x7a\x32\xd5\x15\x2c\x7d\xf9\x4a\x94\x0d\x62\xe5\x75\x87\x19\xbb\x3d\x0e\x70\xee\x6d\x6d\x12\xff\xf9\x92\x3b\x90\xa6\xb3\x6a\x7a\x5a\xff\xaa\x9b\xd0\x77\xdb\x65\xd9\x14\x45\xec\x6c\x80\x6b\xf3\xc8\xa7\x5c\x9f\x27\xd4\x38\xd6\x4d\x52\xec\x64\xf1\xf4\x87\x72\x29\x58\x50\x9f\xb6\xc2\x50\xc4\x39\xa2\x16\xdd\x1c\x13\xac\xef\xf3\x31\xcd\x93\xdd\x60\x65\xd8\x1d\x92\xb8\x38\x15\x90\x3a\x3e\xd8\xd1\x60\x59\x36\xa7\x83\x12\x12\xac\x90\xa5\xcf\x87\x10\xaf\xdc\xb1\x05\xe7\xba\xa4\x2f\xe7\x26\x15\xc2\xb7\x4d\x68\x86\xfb\x32\xa3\xff\x3e\xd7\xea\x97\xcb\x23\xc4\x4b\xe0\x29\x3f\xd9\xde\x6a\x3f\x84\xf5\xb5\x1b\xad\x45\x90\x0b\xf2\x7b\x14\xd5\x59\xc7\x8c\x5b\x13\xe1\x74\x62\x93\x45\x89\x2d\x66\x2a\x55\xca\x86\x17\x39\xd9\xd5\xa6\xfc\x73\x1b\x86\x87\x5c\x31\x3b\xb3\xf9\x30\x4d\xba\x16\x8e\xe5\x1b\x4e\x0d\x90\x32\xa9\x5b\x34\xda\x92\x63\x1c\xad\x7c\x0c\x5e\x94\xae\x5c\x38\x41\x94\xce\xb9\xfe\x8d\x34\x33\x31\x69\xc7\xdc\xa5\x78\x51\x1d\x1c\x92\x6d\xce\x64\x56\x32\x3b\x42\xb7\x1b\x1f\xfa\x87\xe3\x80\x98\xf8\x87\xc4\xca\x21\x88\x11\x68\x31\x2e\x2e\x3a\xeb\xc1\x94\xba\x57\xc6\x2f\x12\xbe\x3a\xb6\x80\x02\xe7\xf4\xe7\x67\x69\x8e\xee\x6c\xed\x50\x71\x6c\x4d\x97\xe6\x66\x8f\xd2\xdc\xec\x51\x82\x90\x15\x26\x5e\xdd\x51\x5e\xa6\x93\x4c\x2d\x73\x53\x57\xbe\x2d\x6f\x05\x05\xd2\xeb\xe3\x20\xce\xa8\xda\x20\xa8\x66\x6f\x17\x03\x8a\x3a\xdc\xd3\xed\x30\x30\xf5\x74\xfb\x39\x3f\x3f\x5b\xd8\xac\x97\xa5\xa3\x61\xa3\xaa\x8a\x52\x11\x4c\x21\xd8\x75\x3a\xb0\xfd\x74\x5d\x10\x00\x9e\xf1\xda\x97\xe7\xb5\x94\x8e\x95\x71\x8f\x70\xff\xbd\x74\xcd\x66\xe2\x4e\x5f\xa4\x9d\x86\xeb\x76\xb7\x4d\x8a\x00\x9f\xc1\xe6\x60\x51\x7d\xda\x22\xc0\xa5\x92\x47\xc0\xe4\x1d\x85\x11\x40\x65\xee\x6d\x94\xa2\xb5\xfe\x5b\x1a\xc6\x4d\x68\xba\xeb\x08\xa1\x94\xb9\x94\x2e\x5d\x5e\x3d\x1e\xc5\x6c\xbb\xcc\x22\x2a\xaa\x7c\xf8\xa3\xc7\x0c\x59\x44\xba\x00\x04\xc1\xdc\x44\x18\x68\x3c\xb1\x5a\x99\x78\xa0\x14\xf1\x44\xbb\x8c\x1a\x91\xe5\xfe\x4c\xca\xdc\x08\x47\x4f\x92\x00\x63\x66\x13\x13\xe5\xb9\x49\x3a\x76\x36\xd8\xba\x73\x14\x30\x9d\x23\x2f\xf1\x88\x68\xaf\x1e\xd5\x70\xe6\x1e\x14\x96\x78\x4d\x24\x1c\x43\x6d\x58\x4b\xd3\xfa\xb6\xaf\x34\x6d\x27\x4d\xd2\xd0\xa4\xc0\x53\x78\xaf\xc5\x01\xe3\x7b\xe3\x2d\xb2\x12\xfb\x96\xca\xdf\xfa\x0b\x12\x32\xa0\xe7\xf6\x2f\xf1\xb4\xf1\x44\x26\xe3\x6d\x5f\xdf\x9c\xb4\xca\xac\x0b\xe1\xf3\x3b\x58\x07\x3a\x90\xd7\x92\xe7\xe5\xb0\x59\x28\xad\xc2\x55\xfe\x0f\x78\xe9\xa8\x9f\xfd\x69\x8b\x5a\xc8\x18\x5f\xf3\x50\x3d\x8f\xa5\xfd\x9b\x08\x55\xf0\x44\x6e\x49\xc7\xc0\x73\xcf\x94\xd1\x8d\xcb\xd5\x70\x3b\x58\xf9\xd7\x65\xab\x20\xe7\xdd\xde\x6e\xfc\xc6\x6b\xbe\xd6\x1e\x58\x72\xaf\x8f\x49\x9e\xfb\x77\x5a\x04\x91\x56\x02\x08\x45\xa4\xf3\xc0\xea\x5d\xa9\x79\xe2\x52\xde\x43\xed\x5a\x6f\xab\x45\xf0\xe8\xe3\xe3\x00\x34\xbc\x4a\x33\xec\x0f\x5b\x8d\xd7\x5c\xf1\xfd\xc2\x38\xf0\x55\x9c\xa9\x4a\x2e\x98\xec\x85\xf2\xb9\x7a\x6a\x89\xf2\xa9\x7b\xc9\xb9\xf2\x5a\x70\x2f\x57\xd1\x37\x80\x0d\x98\x91\xd6\x34\x82\xa0\xeb\x95\x08\x54\x5d\x06\xfa\xdb\x9b\xf2\xab\x7a\xfd\x32\x48\x0a\xa3\xac\x70\x67\xe7\x8b\xe4\xf6\xf5\x5f\x64\x6d\x61\x81\x5f\x93\xb7\xe2\x46\xbb\x88\x36\x4a\x29\x25\x10\x26\x7d\x8f\xa5\x70\xde\x96\x5d\xa4\x18\x01\x59\xd9\xae\xa8\xde\xd8\xbb\xb0\x79\xd5\x27\x77\x5d\x1b\xbb\x8a\xb0\x03\x47\x07\x41\xb0\x69\xca\x09\x0f\xa5\x1c\xf5\xd2\x06\x21\xaa\x19\xb7\x71\xc5\x87\x38\xa6\x28\x84\x4c\x77\x86\xa0\x34\x9a\x70\xe2\x05\xdc\xc7\xcd\xa0\xae\x3d\xd7\x76\x15\x87\x8d\xb4\x07\xfa\x11\x67\x11\x2a\xda\x70\x35\xdc\x00\xcb\x36\xb1\x2b\x11\xa0\x74\x2e\xfb\x0d\x69\x79\x50\x25\x2b\xd3\x42\x13\x25\x36\xa3\x56\x23\x3c\xac\x03\x24\xd5\xe4\xf9\xc3\x28\x2f\x3c\x31\x85\xa7\x70\xa7\xab\xab\xf9\x4c\x3f\xcd\xa2\x37\x53\x9d\x6e\x71\x92\x8f\xa1\x3c\x36\x2d\xb3\x7b\xe8\xd5\xa6\xe9\x98\xe1\x28\xee\xa4\x3c\x5a\xce\xd3\x9a\x97\x89\xe3\x28\xed\x14\x36\x6e\xf0\x3c\xa3\x0e\x86\xb8\x65\x15\x8a\x6c\x66\x39\x5d\xb3\xbb\x48\x64\x65\x93\xf4\x45\xe7\x26\xe4\x6d\x6f\x8c\xa9\x81\xb9\xad\xdd\xf8\xd6\x37\xd5\x19\xa2\x60\xa2\x01\x74\x8b\x28\x6b\x2e\x90\x42\xd2\x19\xec\x11\x37\x62\xe1\x16\x98\x59\x1e\xe5\x4e\x1e\xcd\xe9\xa1\x34\x3c\x73\xe2\x26\xbc\xbd\xe7\xd8\x26\xc5\xd8\xba\xc9\xb1\xae\xed\x98\xae\xeb\xea\x38\x41\xc4\x06\xf1\xdb\x6e\x0d\x14\xf7\xbf\x7a\xb0\xd9\x4d\x7b\x9c\xff\x82\x38\xd5\x15\xd1\x99\x22\x2c\x2f\x5f\x74\xd2\x6b\x10\x34\x0f\x83\xee\xae\x53\xcb\xd5\x3e\x9b\xd9\x5f\x2a\xad\x05\xd2\xdc\x99\x36\xcd\x79\x7d\x2c\x9b\x1d\x9b\x61\xe7\x24\x78\x18\xcc\xd8\xc0\xa8\x5f\xd5\xbe\x97\xbb\x0e\xbc\x4a\x58\xe7\xed\x6d\xb9\x02\x78\xe1\x9d\xa8\xd6\xe1\x71\xbd\xdb\x22\x8e\xe2\x27\xda\x04\x03\x53\x10\x2d\x2c\xaf\xda\x08\x64\xaa\xb3\x13\x69\xf1\x28\x7b\xb6\x14\x5b\x10\x89\x9d\x61\xa5\x96\xdf\x11\xe0\x27\x1e\xa3\xf6\xb4\xf0\x57\x68\xfc\x29\x8a\x43\x7d\x10\x6c\x36\x0c\x30\x48\x70\x91\x6b\xfe\xff\x04\xbc\x8b\x78\x70\xf7\x24\xb4\xca\xb7\x4b\x3c\x04\x83\xa9\xaa\x76\x08\xc5\x8f\x83\x61\x4e\xbf\xa9\x8e\x16\xa0\x63\x8a\x4e\x5f\x8a\x97\x88\xc4\xff\x04\x46\x0e\x0f\x0a\xd3\x6b\xae\xca\x28\xf7\xec\xb4\xd9\xea\x24\x61\x86\x59\x5a\xa4\x9d\x34\xc6\x6a\x80\xef\x03\xe3\x98\x1e\x4f\x55\xcc\xf6\xee\x6d\x76\xfa\x26\xca\x94\xc1\x13\xa9\x09\x13\xa5\xeb\x92\x75\x7a\x51\x8d\x20\xef\x2d\x8b\xdc\x75\x5e\x9f\xa1\x86\x5e\xb6\x6a\x8b\xe7\xe5\x05\x23\x51\xda\x21\xb3\xab\xc8\x5c\x6e\x10\x70\xf5\xc7\xe2\xe4\x51\xa5\x3c\x2d\xcb\x10\x05\x9f\x87\x63\x6a\x49\x69\xc0\x06\x97\x77\x4c\xb6\x29\xd2\x17\x75\x5f\x08\xfe\x76\xb4\xc3\x74\xed\x09\x26\x26\xff\x11\x37\x0b\xde\x87\xc3\x75\x32\xf1\x04\x6b\x39\x4e\x03\xee\x33\x50\x5f\x73\xfa\x82\xb2\x84\xb4\x1b\xd0\x2e\xdf\xbe\x66\xfa\x2d\x17\xf5\x0a\x34\xc7\xf4\x1c\x47\xbf\x4a\x0c\xb7\x2a\x7a\xc3\xa1\x76\x91\xa5\x47\xe6\xe4\x87\xf1\x4f\x7b\xe4\x2b\xbd\xea\x6e\x78\x6d\xe8\xf9\xb9\x7f\x08\xe5\xcc\x00\x24\xd6\x61\x49\x20\xff\x14\xaf\x4f\x78\xfa\x73\x44\x13\x7a\x9b\xc7\x45\x7e\x40\x1d\xab\x4e\xda\x49\x0d\x11\xb6\x7c\x29\xbe\x51\x8f\x29\xbb\x5e\xb6\x71\x9a\xf4\x94\x8e\x08\xb6\xec\x3e\xf1\xab\xdc\x0f\x50\xa2\x38\xcd\xb7\x4c\x48\x3f\x90\xab\xc7\x85\xfc\xc5\xb6\xcf\x10\x9f\xfa\x85\x09\x8d\x77\x25\xf6\xc5\xf2\x97\xe1\x70\x9e\x14\xcb\xec\xd4\xea\x59\xc5\xe7\x12\x8d\x42\xbe\x84\xc1\x46\x4f\x7a\x7e\x38\x4c\xf4\xc9\xfa\xf1\xa1\xc1\x3e\x87\x53\x53\xc5\x3d\x44\x5f\x8f\x34\x78\x74\x5c\xe1\x12\x72\x69\x9a\xdc\xfe\xca\x06\x80\x2c\x46\xbc\xa1\x1f\xb3\xeb\x52\x69\x20\x2c\xe0\x17\x64\xc1\xe3\x7d\x5d\x18\x73\x63\xa1\xb4\x4d\xf2\x70\x4d\xb3\x1d\x22\xeb\x5b\xde\x97\xac\x44\xbd\x51\x86\x58\x1e\x2b\x7e\x73\x1c\x04\x8d\x26\xd8\x17\x8c\xa4\x07\xec\xfc\xda\x14\xe6\x4e\x88\x6f\xe3\x78\x63\x26\x8c\xd7\x83\x5b\x0f\xf9\xcb\x26\x65\x20\x6f\xd7\x58\x92\xfd\xcd\xb5\x74\x10\x05\xe5\x75\x15\xa8\xa4\x28\xeb\x5c\x2d\x21\x53\xde\x4f\xd7\xfd\x87\x9c\xe1\x6f\x10\xa3\x37\xbd\xf1\xf5\x2e\xa6\x3b\xe0\x45\xfe\x6c\x4c\x40\x69\x45\x6c\xb9\xd1\x97\x86\xe7\x0c\xbe\x34\x66\x8d\xc2\x32\x53\x96\x47\xe5\x09\x7f\x96\x9c\x64\xc9\x4d\x79\xd2\x5e\x7a\xa8\xbc\x1c\x9d\xa9\x27\xbd\xe8\x6f\x7d\x73\x46\xde\x20\x76\xfa\x6d\xf5\x57\x7e\x7c\xc0\xc3\x0e\x8e\xd3\x65\x8f\x92\x7c\x27\x8d\x15\x6d\x92\xec\xe2\x0e\xac\x2e\x49\x33\xfe\xda\x0b\x68\xfd\x48\x44\x7b\xfe\x6b\xc8\x33\x61\xb7\x76\x4c\xb8\x0c\xf8\x6c\x78\x2b\xbf\xf6\xd2\x84\x0c\xfc\xfd\x1a\x4c\xd8\xc1\x66\x77\x3d\xf2\x9c\x95\x4b\x2c\xa0\xb5\xe0\x15\x67\x5e\x9a\xe2\x91\x29\x7f\x0e\x56\xc2\x59\xee\xaf\xa6\x75\x22\xfb\x4e\x9a\x43\x5d\xdb\xcb\x2c\xd0\xc1\xb0\xca\x00\xce\x38\x75\xb2\x30\xb7\x7c\x9a\x26\xdb\x85\x9e\x3e\x6f\x50\x8a\x75\x12\x06\x4e\x4f\x88\x58\x6d\x05\xd2\x84\x3d\xee\x0d\xbf\x4d\x62\x68\x6f\xb7\x5e\x0a\xc4\x8e\xb6\x30\xc3\x32\xfa\xec\x98\x78\x4e\xf6\x29\xee\xfc\xdf\xe2\xcb\xbd\x73\xf2\x6c\x75\xf0\xa1\x28\x5b\x7e\x52\x61\xe8\xae\xc0\x6f\x46\x83\x64\xae\xf1\xf2\xcb\x9e\xfc\x33\x2c\xac\x07\x55\xa9\x91\x86\x17\x2f\x3f\x07\x5a\x66\x87\x0f\x7c\x9a\x22\xad\xae\x3d\xb2\x2b\xa8\x61\xce\xb6\x4b\x83\xa0\x7a\x18\xa4\x0f\xa4\x6c\x92\xc8\x7b\xb6\xb7\x89\x63\xfb\xbf\xc3\x6f\x62\x7f\x3f\x0d\x8f\x04\x2b\x00\xb8\x82\x6b\x35\xcb\x03\xd3\x7f\x60\x86\x48\x33\x34\xcb\x51\x1c\x15\x1b\xb3\x01\x86\x36\x19\x13\xf3\x86\xea\x99\xc3\x00\x21\x72\x77\x08\xb2\x97\xe8\x3e\x8a\x2c\xea\x8d\xa2\xa4\x87\xfe\xa2\x07\x84\xcb\x35\x38\x70\xf8\x0b\xbe\x96\x56\xd8\x2c\x32\x71\xf4\xa6\x5b\xa0\x48\x99\xff\x29\xee\x52\x4f\xa6\x12\x83\xa5\xa5\x66\xde\x31\x49\xd7\xc4\x5a\x94\x75\xe4\xe6\xf2\x3e\xf5\xa4\xe6\x53\x07\x9b\x66\x18\xdb\xa4\x00\xfe\xc8\x39\xbd\xaa\xca\x9b\x57\xc9\xfd\x92\x88\xb5\x8e\xb5\x5e\xf0\xb5\xe0\xac\x63\xe2\x74\x94\xf4\x34\x43\x84\x9d\xfa\x84\xf5\xd2\x3e\x21\x36\xc8\x41\xd4\x01\x8b\x1c\x56\xfe\x3d\x5c\xa2\x9e\x54\x66\x24\xed\x1a\x28\xcc\x97\x1c\xc5\xe8\x3b\x63\x9a\x82\xdf\x8f\x58\xd6\x0f\x2d\x96\xdf\x82\xe4\xe3\xc2\xd4\x68\x45\x69\x57\x33\x1b\x75\xfa\x03\x93\x24\x04\x70\x3e\xcd\x10\xbe\xd3\x15\xe0\x6f\x52\x64\x06\xad\x1d\x8f\x35\xc0\x1b\xd3\xe3\x71\xb5\xa9\x8f\x2a\xb3\x36\x0c\x08\x22\x72\x61\xfc\xf5\xaf\x48\x8e\xbb\x51\xde\xc9\xec\xd0\x24\x9d\xc8\xe5\x2a\x30\xe3\x17\xc4\xdb\xea\xf1\xf8\x6b\x01\x23\xb2\x66\xb3\xbc\x6f\xba\xea\x1e\xf6\xfb\xe0\x1f\x05\x3f\x47\x4a\xfb\x9c\x77\x83\x22\x28\x5a\xae\x08\x96\xe9\xd1\x5b\x76\x63\x06\x5b\x53\xa1\x32\x02\x7e\xd9\x0e\x1a\xa5\xe9\x77\x97\x20\x5e\xdd\x5d\x9b\x6f\x01\xd8\x62\xdd\xda\x64\x26\xe8\xa6\xdd\x24\x99\x1d\xc5\x46\x02\xce\x74\xaa\x6e\xea\x23\x8e\x7e\x7b\x14\x75\x4d\xd0\xfc\x83\x71\x79\x57\xd6\x18\x8a\x2b\x57\x69\x8e\xf5\x2c\x79\xad\x64\xd4\xeb\xa1\xfe\xed\xba\xc3\xf7\xc8\x91\x23\xa6\x06\x62\xe9\x2c\x61\x79\x3a\x7d\x6b\x86\x36\x2f\x80\x8c\xd7\x0d\x2c\x9f\x73\x9b\xd9\x8f\xdc\x65\xd1\x4a\xe1\xc6\x1c\xf0\x45\x4f\xb0\x84\xc5\x13\x93\xad\x13\xa9\x0b\x87\x9a\x83\x62\x40\xa3\x92\xca\x52\xa4\x27\xcc\x98\xe3\x74\xf7\xbe\xa1\x10\x43\xb0\x49\xb8\x59\xf4\x86\x67\x02\x53\x9d\x34\x4f\x34\xe7\xe7\x10\x4e\x4e\x55\x1f\x16\x17\xb5\xb9\x18\xcd\x84\x3e\x24\x1e\x89\x6f\xdf\x87\xea\xdf\x29\x1a\xab\x1f\xfe\xff\x7b\xa2\xd6\xa7\x94\xa4\x52\x96\x73\xf4\xa4\x72\xc3\x2a\x3e\x0c\xe3\xe3\x94\x88\x5d\x9f\x6d\x39\x3d\x62\xf3\x19\x12\xa8\xd9\x23\x5e\x02\x6e\x70\x87\x20\xd2\x80\xfe\x3c\x53\x53\x72\x6f\x16\xe9\xd0\xbc\x39\x53\xda\x74\xa4\x82\x1f\xcb\xcd\xc3\x72\x03\x62\x40\xa4\x18\xba\xcf\xd6\x6c\xf7\xd9\x50\xe4\xda\x33\x09\x14\xf2\x4f\xff\x55\xc9\x1e\x91\xd9\x3e\x3b\x21\xd4\xd2\x53\x00\x6a\x7a\x56\x52\x4f\x8e\xbd\x5b\xae\x56\x10\x68\x7f\xfd\x2f\x4d\x02\x4c\xec\xaf\xfc\x55\x24\xd3\x68\xb0\x7d\x6d\x12\x94\x90\xb6\x4f\x64\xed\x38\x46\x6c\xf1\x1b\xae\xf5\x53\xde\x08\xa2\x8e\x13\x28\x7c\x62\xc3\x3c\x96\x20\x0a\x5d\xbd\x3f\x19\x53\x8b\x6c\xcf\x24\xa8\x3d\x95\x16\xb1\x52\xd4\x28\x7f\xd2\x01\x22\x82\x5e\xe8\x28\x31\xdd\x6f\x8f\xbc\x51\xc2\xed\xa1\x5f\xa4\xc7\xe4\x3e\x57\x4c\x1c\xe7\x3b\xa8\x36\x7f\x52\xab\x07\x7a\x26\xcb\x0e\xeb\xf3\xad\x71\x18\x0e\xb8\x30\x26\xa9\xbb\x3b\xb8\x13\xa4\x77\x0f\x68\x6c\xe0\x42\xe0\x29\x8d\xb2\x5e\x94\x60\x07\x3b\x69\x76\xf9\x06\x5c\xd1\x3f\xa2\x19\x88\x0b\x53\x6c\x3b\x9e\x6f\x75\xb4\x1c\x13\x4b\xb4\x9b\x31\x23\xe4\xfd\x85\xba\xac\x3f\x49\xa3\x1c\xae\xc4\x53\x2c\xee\x0b\x21\x06\xdb\xe7\x38\x4f\x9f\x6d\x78\xb2\xe5\x3d\xa8\x9c\x78\x90\xfb\xc2\x21\xcd\xd6\x14\xc7\x80\x12\xf0\x6e\x4c\x03\xa2\x66\xbc\x6b\x52\xbe\x46\x84\x9b\x0a\x42\x42\x34\xbd\xbd\x1d\x50\x7f\xcf\x60\x3d\xa2\x74\xf3\x27\x92\xf2\xf8\xb6\x48\xb9\x1e\x01\xe6\xbb\x21\x57\xe9\xd4\x12\xf0\x4e\x50\x0c\xbe\x8d\x26\x8b\xd7\xfc\x90\xb9\x98\x71\x50\xc8\xb8\xc3\x3c\x63\x1b\xa3\xa4\x6b\x9c\x52\x1d\xbc\xec\x75\x76\xb9\xd7\x09\x06\xb1\x1e\x15\xfd\x74\x54\x3c\x1b\x88\xc8\x76\xb6\x03\x8c\xe0\x8c\x94\x13\x40\xdf\xf8\x6f\x74\x91\x60\xdf\xfe\x4b\x12\xac\x99\x6d\x13\xc6\xe2\x3a\xac\x03\x16\xc6\xa5\x56\x90\xfa\xd9\x26\x41\x9a\x67\x94\x2b\x1f\x33\x96\xfb\x03\xb1\x2d\x30\x47\x1f\xb2\xae\xc0\x35\x04\x54\x9e\xfd\xc4\x53\x55\xef\x9e\x10\x91\xc2\x2d\xdc\x9a\x5e\x56\x2d\xfb\x77\x5e\x18\x88\xe3\xd3\x58\x89\x56\x03\xf4\x64\x3a\x2c\x38\xb0\xff\xeb\xcd\x95\x34\x2d\xfa\x69\xdc\x25\xe2\xa2\x3f\x43\x3c\xaf\x27\x95\xf2\xbf\x1d\xf6\xe1\x78\x50\x5b\xba\xdb\xa2\x21\x99\xd3\x44\xa9\x70\x71\x6a\xc1\x1e\x7a\xb5\x99\x58\xdb\xdd\x98\x0d\xb3\x31\x1f\x8e\x43\x29\x5a\xe3\x7a\xac\xa4\xf3\x04\x2a\x7a\xe8\xed\x6d\x1c\x25\xab\xf9\x76\xd9\x5d\x84\x19\x70\xd2\x91\x47\xe5\x33\x28\xc5\x5e\x22\x70\x45\x43\x9b\x72\x3a\x4e\x23\x6e\xc1\x41\xdd\x83\x65\xb5\xc5\xc6\xee\x72\x79\xa0\x30\xb3\x29\x77\x22\xa8\xe1\x5f\xfa\xe5\x36\x89\xae\xea\x9c\x15\x21\x01\xf7\x7b\xb2\x4f\x82\x1e\xcd\xc0\xe6\x22\x04\x7a\xd0\x22\x38\xc9\xeb\x40\x46\x62\x23\x3e\x2f\xbb\x0a\xa3\x03\xdb\xda\x84\x86\x4d\xec\x86\x35\x28\xbf\x3b\xe2\x04\x62\x21\x3b\x4d\xe8\x82\x4e\x3f\x1a\xce\x95\xdf\x82\x44\xfc\x26\xf2\x54\xe0\x9d\x1f\x92\xc5\x7a\x44\x1d\x72\x55\xdc\x44\xff\xeb\x93\xa9\x17\xf5\x4a\xd3\xc4\x45\xdf\x9a\x46\x95\x08\x90\x0a\xe7\x41\x22\xc9\xc1\x0d\xb7\xcb\xce\xa5\x5c\xd2\x4f\x71\x84\xc9\xb2\x63\x5f\x6b\x13\xb5\xab\xea\x1c\x61\x21\x60\x4e\x1b\x5e\xe2\xfc\x54\x57\xf1\x95\x66\x5e\x8c\xba\xae\x36\xa6\x2b\x84\xd0\xc6\xd3\xa0\x46\x80\xcc\x53\xe2\xe2\xa9\xa5\x3c\x71\x9d\x94\xa1\xe9\xac\xce\x86\x72\xe5\x55\x24\x00\x1e\x75\xb6\xe4\x9a\x6d\x7f\x46\x23\xdf\x6f\xd7\x4d\x8e\x0d\x05\x1e\x06\x1e\x31\xd4\x38\x8e\x91\x6c\x33\x58\x4a\xd1\x53\xfd\x29\x93\xc5\x87\xd0\xab\x6f\xd7\x63\x5b\x28\x8c\xd0\x77\x62\xff\xc6\x41\xdf\x89\xdd\x1a\x79\x2d\x2e\x36\xd7\x23\xad\xdc\xa3\xea\xf0\x89\x5c\xb0\x1e\xb7\xb6\x4c\xa7\xbd\xf1\x46\x73\xe1\xd0\x8b\x62\x97\xdc\x60\x74\x10\x22\xde\x86\x12\x83\x97\x51\xf8\x8d\xd7\x58\x1a\xd0\xa1\x76\xbe\x3f\x6e\x7c\xeb\x9b\x9e\xf2\x8b\x5a\x06\xef\x8a\x61\x47\x97\xea\xa1\x98\x3b\x37\x1f\x5a\xae\x4f\x98\x85\xbf\x3f\xa6\x19\xe3\x39\x84\x13\x08\x79\x38\xb9\x00\x14\x09\x7e\x60\x7b\x9b\x66\x87\xb4\xa9\x88\x9d\xf4\xc3\x16\x0d\xa1\xaa\x6e\xba\xf3\x96\xe5\x0b\x70\x53\xa7\x0c\x4a\xd9\x39\xa9\xe9\x97\x0c\x4c\xb2\x1a\x25\x30\x80\x6e\xb8\xa4\xe1\x99\x5e\x4e\x4f\xa3\x85\x85\x1c\x5e\xc9\x79\x90\xc0\x5e\xa2\x64\xf6\x52\x45\xdf\x4b\x96\xe0\x5c\x00\x63\x5e\xc6\x4e\x46\x99\x79\x66\x42\x0c\xb9\x5f\xd2\xe8\xd6\x6d\x94\x7e\xf5\x1f\xea\x60\xd1\x1d\x47\x67\xef\xf6\x34\xed\x6f\x6f\x31\x25\xe6\x87\x6c\x97\x43\x3b\x95\x57\x82\xad\x89\x91\x72\xf8\xc0\x5d\xf2\xc4\x61\x43\x76\x4e\x68\x34\x01\xeb\x43\x41\x6e\xed\xdd\x3e\xe7\x4d\x76\x92\xf6\xb1\x0e\x33\x54\x08\xdd\x11\x85\x3f\x20\x55\xca\xb3\x63\x82\x4c\xea\x38\x3d\x7e\xf1\x14\x29\xbb\x9d\xa5\x96\xe4\x34\x94\xf2\xf0\xfc\xeb\x4d\x1b\x15\x7d\x9b\x6d\x2f\xbf\xd8\x6f\xcb\x85\x43\x2e\xfb\x21\x9b\x77\x45\xca\xa6\x9a\x5a\xa0\x85\xec\x44\x5c\x65\x19\x39\x69\xda\x67\x48\xcd\x65\x30\xb4\x19\xf4\xef\xb0\xc2\x55\xfa\x58\x4f\xc6\x84\x52\x51\xad\xf5\x9d\x24\xc1\x0a\x38\x9d\x73\xbd\x61\x09\xdd\x93\x97\xe3\x75\x80\x02\x03\xf0\x1c\xa7\x55\x7b\x24\x82\xf7\xa4\x6c\x3e\xea\xbe\x48\x98\xa1\xbe\x35\x99\xd6\x3c\xf1\x87\xb3\x13\x26\xa1\x94\x67\x0a\xcf\x8c\xd2\xba\xe3\x0c\x76\xd7\x9d\x2e\xc7\x51\x4f\x98\x1d\x05\xdd\x8c\xaa\xd3\x55\x62\x0c\xfa\x3f\x60\x97\x5c\x83\xa8\x4e\x63\xdd\x8c\xe2\x62\x43\x3e\xae\x35\x27\x19\x20\x47\xcb\xf6\xf7\xa8\xa1\xb3\xbd\x1d\xe6\xbc\xba\xd1\x9b\x6f\x46\xc2\x90\x43\xfb\xff\xd8\x38\x8c\xff\x1c\x23\x62\xa1\x4e\x6c\x86\x85\x30\x49\x95\x76\xca\xab\xcb\xee\xf3\x4a\xb3\x3c\xa1\x62\x3a\x40\x2f\x13\x25\xc0\xef\xd1\x88\xc5\xef\x05\xce\x94\xd8\x94\x21\xf6\x0c\x61\xff\xf4\xf1\x63\x0b\x3c\xa4\xa9\xde\x4b\xd4\x8b\x12\x26\x0b\x57\x43\x40\x39\xff\x87\xd8\xc3\x7a\x52\x27\x83\xf3\xed\xd1\x60\x39\xd5\xdc\x10\xf1\x30\x2a\x88\x78\xc8\x57\xf1\x90\x1d\xe1\xf2\xf4\x10\xda\x81\x66\xc7\x0c\xa3\x42\x07\xee\xbc\x2a\xe7\xd2\x92\x3b\xa6\x9c\x70\x69\xdf\x37\xe5\xaf\xe0\x49\x2f\xb0\x5b\xbd\x40\xb0\xfd\xe5\xa8\xfb\x24\x65\x29\x97\x69\x30\xe9\x1e\xb3\xc7\x7f\x0c\x6a\x66\x34\x3b\x3e\x20\x48\xe2\x8f\xc7\x41\x3a\xf5\x63\xac\xb4\x4a\x55\x4a\x29\xad\x24\x98\x76\x2d\xab\x72\x61\x50\x2f\xeb\x75\xf7\xb5\x44\xff\xd0\xc9\xac\x29\xa2\xb5\xa8\xd8\x10\x2a\x03\xdf\x80\xdd\x17\x32\xb2\x9a\xd4\x67\x18\x75\x56\x73\x9e\x23\x39\x05\x17\xe5\x18\xd9\xea\x06\x3c\x06\x69\x66\x67\x1a\x87\xe7\x37\xaf\x22\xad\x83\x15\xdc\x8e\x0e\x10\x3e\xf8\x90\x22\xab\x95\x38\x5d\xa7\x26\xca\x29\x86\x62\x7d\x09\xeb\x85\x3e\xc1\xa7\xb2\x8c\xe1\xf7\x36\xa9\xd0\xd7\x31\x71\xbc\x9b\x94\x63\x2e\xc1\xf7\xa1\x82\x7f\xbf\x55\x91\x36\xf2\x71\x0d\x46\x15\x55\xd6\xad\xc5\xe8\x3a\x0a\x09\x2e\x8e\x03\x51\xe9\x07\x63\xd6\xcb\x3d\x8a\xbe\xb1\xe3\x62\xaf\x89\x8b\x3a\x69\x94\x74\xa2\xae\xf3\x1e\x5e\x87\xd0\xd3\x78\x9e\xf4\x38\x90\x6e\x34\x8c\xd3\x81\x71\xba\xfc\x8a\xf8\x94\x3f\x75\xe8\xcf\x3a\x9e\x9c\x7e\x3a\x80\x2a\x83\x67\x63\xf4\xa5\xfd\x8f\xc7\x34\xbb\xfb\x8e\xef\x58\xf5\xad\xf5\xc2\x58\x44\x06\xe7\x99\xe1\xa8\x30\xb9\x92\x66\x03\xe1\xeb\xd5\xb7\xef\x06\x92\xe4\x0a\xdd\xa4\x92\xdb\xf2\xbd\x98\x5a\x49\x9a\x7d\x12\x01\xc3\x8d\x8a\xac\x6a\x36\x4a\x9e\x0c\xce\xea\x49\x49\x10\x5d\xc5\x88\x10\x9c\xa7\xe5\xd9\xbb\x09\xb6\x60\x38\xef\x52\xf9\x1b\xe2\xaf\x5e\x95\xfa\xc0\x7e\xcf\x4e\x5c\xc6\x54\x70\x3b\x6f\xa1\xac\xe8\xb0\x10\x0c\x9b\xa9\x2b\x17\x2a\x89\x87\x71\x73\xcd\x5c\x17\x73\xde\x2e\xf4\x5a\x96\xed\x4a\x9a\xd9\x5d\x58\x19\x8e\x71\x84\x05\x7a\xca\x9b\xab\x08\x65\x28\xd2\x18\xe9\x03\xca\xdd\x8f\x69\x90\x95\x93\xab\xe3\x12\xdb\x39\x96\x33\xaa\xac\xbd\xcd\x5a\x64\x49\x61\xe3\x74\xb8\x85\x21\xe3\xc0\xbc\x67\xc8\xa8\x81\x6d\x7f\xbd\xb4\xb5\x4e\x00\x02\xb5\xf8\x9b\xd4\x8c\xbe\x39\x85\x5b\x11\x16\x7e\xc5\x86\xeb\x64\xab\xfc\x86\x9b\x72\xad\x31\xcc\x90\xa6\xa0\xb9\xd3\x8b\x34\x77\x3a\x9d\xb4\xbe\xfc\x72\x33\xb6\x6b\x36\x16\x9a\x4a\x44\x18\x27\x49\x03\xe8\xa4\xaf\x03\xd9\x32\x43\x61\xad\x81\x2d\xc4\x09\x5b\xbf\x78\xdf\x52\xf3\xdb\x69\xa4\x9b\x10\xcf\xe4\x3a\x31\x88\x5c\xaf\xf3\xbc\x18\xfe\x68\x84\x48\xf3\x1d\xe2\xd7\x79\x67\x6a\xb3\x1f\x9e\x5f\x28\xb3\xa0\xa8\x97\xf8\x3d\xe0\x67\xb6\xc2\xfc\x56\x90\x52\xcb\xa2\xa4\xa7\x6c\x79\x88\xfd\x7e\x01\x75\x40\x62\x13\x76\x5b\xec\xd9\x49\xc0\x13\xd7\x51\xe5\x2c\x34\xad\xc9\x92\xa8\x57\x99\x2c\xbf\x82\x10\xcc\x69\x08\x71\x7d\xca\xe4\x43\x7a\x10\x57\xe9\x41\x5c\x1d\x33\x3d\xc2\x5a\x9a\xcd\x12\xad\x5e\x8b\x34\xb2\x50\x9e\x43\x20\x34\x8b\xf4\xdb\xf1\x6b\x55\xea\x17\xb9\x81\xe1\x70\x3d\x0f\xf9\x0a\xd7\x0d\x79\xd2\x23\xe0\x32\xd0\x8b\xa0\x79\xa7\xc9\xaf\x9e\xf8\x69\xa0\x4e\x9a\xe4\xc3\xa8\x33\x4a\x47\xc0\x5a\xfb\xae\x5b\xf9\xc7\x7a\x32\xf5\x70\x16\x0e\x35\xbb\x91\x59\xb6\x85\x2b\x1d\xe3\x89\xde\x27\xa2\xeb\x47\xc4\xce\xf3\x03\x1f\xbf\xac\x19\x19\xc9\x96\x5f\xd2\x46\x64\x8b\x9b\x92\xd3\x9d\x0c\x19\x83\x98\x09\x23\xfb\xbb\x68\xc2\xa3\x81\x20\xdf\xad\xfb\x50\x58\x33\xcb\x26\xe9\xa6\xc9\x1c\x8f\x36\xc8\xe6\x87\xe9\x38\x5f\x19\x73\x90\xdd\xa6\x22\xa8\x95\x6e\xae\x5b\x54\x45\x1a\xa6\xef\x1c\x29\x2c\x31\x4d\x5c\xa4\x76\x4a\x1e\x75\x6d\xbe\x3d\x40\xc2\xaf\x04\xa6\xcf\xcb\xcd\x76\x85\x94\x40\x2e\x01\x7c\x3e\xbb\x27\xd4\x12\x9b\x45\xc9\xcc\x55\x2c\xb8\x9d\x15\xa7\x99\x29\x46\x99\x99\x09\xb1\xea\xc9\x0a\xe3\x50\x00\x08\x7c\x49\x83\x11\xb1\x19\xf5\xfa\x71\x84\xc5\x80\x4e\x8c\xd2\x90\xeb\x09\xf9\xfb\xd5\x34\xe9\xed\x22\x8a\xd9\xeb\xe3\x10\xcf\xdf\x16\x2f\xe0\x05\x15\x7d\xa5\xed\x31\xa0\x5d\xf8\x87\x4d\xa4\x25\x88\xc3\x90\x0f\xc3\xcf\xce\x22\x07\x46\x4e\x7f\x1d\x55\x52\xfd\x08\x95\xb0\x96\x5e\xff\xfa\xcc\xb6\xaf\xeb\x47\x1e\xb2\x70\x39\x00\xdc\x61\x6c\xc1\x47\xe5\xe9\x68\xb9\x98\x95\x88\xa1\x22\x8f\xe0\xc6\x73\x82\x3b\xbc\x43\xbb\xeb\xfe\xf8\x19\xda\x00\xa3\x81\xcd\x66\x88\x59\x05\x28\x28\xec\x49\xa8\x2c\xc3\x7a\xdf\xa5\x90\xf5\xaf\xfc\xea\xaf\xcd\x10\x35\xdd\x59\x42\x97\x5d\x26\xda\x86\x07\x74\x73\x89\x2d\x76\xf9\xba\xc6\x1f\x3e\x2f\xa9\x92\x7f\x6a\xa1\x87\xa9\x38\x40\xdf\x47\xf0\x48\xf8\x63\xd4\x20\x9d\x7b\x7e\x12\x12\xe7\x1b\x02\xe9\x43\x6e\xf6\x3d\x84\x27\x48\xa0\x2e\x92\xb6\x86\x89\xcb\xbd\xd7\xb1\xe0\xc3\xf2\x41\x18\x91\x88\x86\x01\xf9\x27\xda\xac\x77\x3a\x18\x44\x45\xe1\xc9\xe8\xb0\xbf\x67\x27\x61\x32\x63\xb6\x5d\x03\xbb\xe9\xc4\x06\x6c\x6c\xae\xcc\x7a\xbd\xa2\x66\x45\x60\x16\x94\xdf\x5d\x97\xa9\x0e\x8e\xdf\x49\xd7\x6c\x36\x13\x7a\x6c\x90\xd4\x83\x29\xfb\x3f\x11\xd3\xba\x98\xfb\x49\x92\x5d\x6c\x6c\xd5\x55\xd1\x63\x7a\x28\xb9\xcd\x22\x25\xbb\x5b\x38\xa4\x85\x4f\x28\x49\xe8\x71\x1d\x4c\x38\x8d\x37\x06\xc3\xa8\xd3\x08\xd3\xd8\xe7\x39\x7d\x38\x5f\x0b\x2d\xce\x46\x3e\x5e\x45\xc6\x7f\xa3\x15\x8a\x72\x37\x98\x83\xbf\x48\x87\x43\xe4\x78\xdf\xd0\x88\x7c\x37\xc1\x0d\x67\x26\xc1\x18\xb2\x48\x4b\x19\x4f\xee\x26\x89\x7a\x15\xa9\x10\x20\xaa\x63\xde\x0a\xed\xed\xe7\xa4\x23\x06\x94\xd1\x3d\x59\x62\x8e\x4f\x87\xca\x67\x6c\x1a\x6f\xa3\x50\x85\xfa\x8f\xf6\x11\x54\xba\x70\x0a\x92\xb0\xb8\xe8\x05\xd1\x67\x08\x75\x78\x89\x0a\xa4\x9b\x84\x25\xbd\x3c\x26\x14\xb9\xc8\x2a\xb0\xad\xfd\xa8\x45\xb6\xf6\xa3\x3a\xb2\x13\x71\xa9\x91\xca\xda\x21\x90\xbd\x4c\xd5\x80\xcb\x53\x6c\x69\xd4\xbd\x37\xcb\x71\x95\xd9\xf3\x3a\xa9\xa8\x5d\x6f\xbd\x44\x66\x66\x50\xde\x93\x04\xaf\x33\xdc\xb0\xb9\x09\x67\xe2\x1c\x08\xb5\x38\x3e\xf7\xf7\x35\x30\x59\xde\x37\xb1\x83\x71\xc3\xec\x5e\x60\x1b\x7c\xa1\x15\x1a\xba\xb9\xd9\x78\x2e\xc4\xb9\x6f\x51\x3f\xf9\xe7\x32\xdd\x00\x63\x00\xd9\x56\xbc\x4d\xf4\xbf\x14\x5b\x3f\x11\x5b\xe8\x8a\x3d\x61\xbd\x7d\x58\xc9\x6a\xe5\xa1\xe2\x1f\x4e\x8e\x69\x16\xe3\x24\xe6\x45\x94\x6a\x18\x09\x2f\x0c\xe1\x35\x5c\x2f\xa6\x1c\x74\xec\x51\xff\x05\x16\xd7\xab\x5a\xfe\xfa\x6f\x85\xb4\xe9\x5b\xdf\xd4\x4a\xca\x6c\x7b\x6b\xd9\x77\xef\xde\xa6\x8d\xa3\x06\x6d\x5f\x8d\x37\xdd\xea\x0b\x25\xc8\xd5\xa8\xe8\xf4\x6d\xd2\x00\x32\x0d\x0e\xff\x6d\x0c\x87\xe8\x09\x73\xe8\x16\x6f\xce\x84\x06\xc9\x51\x51\x57\xf2\x18\x6f\xaf\x5c\x74\x7b\x6a\x97\x2e\x2d\xed\x17\x7b\x80\xa0\x66\xbf\x9f\xea\xe2\x0c\x04\x58\x67\xec\x95\xe3\x95\xf0\x2f\xb1\xc5\xd3\xe5\x2f\x21\x92\x9d\x69\x93\x90\xc9\x47\x68\xa2\x79\x1d\x9e\xf2\x99\x22\xf6\x46\x7c\xe0\xb5\x06\x5c\xb1\xed\x3f\x7e\x0e\x09\xbd\x13\x9f\x2e\xdf\x2e\x32\xae\xfb\xbc\x0d\x6f\xb6\x68\xba\x0b\x3c\xa2\xf0\x01\x37\xc6\x61\xe3\x5e\xe5\x67\xba\x6d\x22\x56\xc5\xf5\xd1\xa7\xc9\xcf\x57\xcc\x40\xea\x0b\xfa\x66\x4f\x93\x74\x12\x9a\xd4\x58\x94\xff\x34\x00\x35\xd3\x75\x93\xa1\xec\xec\xd8\x72\x02\x3a\xee\xe2\x14\xcc\x7a\xff\xab\x07\x9b\x45\xea\x32\x00\xd8\x1f\x58\x37\x3d\xae\x51\x03\xdb\xdf\xec\x99\xac\x6b\x13\x8d\xeb\xb1\x4e\xcf\x6a\xc9\x00\xeb\xf9\xa9\x76\x15\xdd\x1c\x7a\xbb\xb3\x93\x67\x68\x4a\xac\xeb\xc8\xfd\x75\x84\x4c\x6e\x29\x8c\x93\xb9\x1d\x68\xbb\x23\x48\xc7\x98\x18\x78\x41\xbc\x54\x25\x5c\xc1\xd6\xfa\x90\xf2\x96\xe3\x2d\x12\x95\xf9\xd0\x3f\x9b\xc4\x8c\x72\x6b\x66\x48\xcd\x07\x55\x92\x8a\x00\xbb\xce\xf8\xb1\x62\x73\x9a\xd8\xc2\x64\xa2\x9c\x7c\x38\x30\xa8\x7b\xa0\xc3\x7f\x75\xba\x8e\xef\x61\xc5\x0c\x5c\x0c\xef\xc6\x34\x79\x66\x93\x26\x4a\x8a\xbe\x1d\x58\xe2\xb7\xfc\x23\xf9\x6a\x3d\x6e\xf9\x01\x9a\x8d\x84\x52\x75\xa7\xae\x29\x0b\xce\x35\x0b\x6b\x24\x3d\xd2\xa1\xcd\x08\x0f\x84\xf1\x05\xb4\x42\xdc\x38\x6c\xc8\x91\x1e\x4e\xa5\xaa\xfb\x96\x9a\x6b\xa9\xaf\x8b\xa8\x18\x5b\x8b\x26\x5a\x2e\x52\x5f\xa2\x48\x47\xf2\x90\x64\x47\x38\xa2\x07\x52\x04\x3c\x43\x06\x64\x65\x54\x8c\x32\x9b\x3f\x8d\x45\x83\xd5\x79\x5f\xac\xa6\x93\xb3\x0e\x68\x46\xa5\xdf\x83\x99\x40\x45\xb5\x22\xec\xe6\x15\x0a\x82\xca\xfe\x7b\xb2\xe1\x80\xec\xff\x17\x02\x23\xf1\xb1\x68\xf9\x0e\xb0\xd9\xef\x49\xd4\xe2\xba\xf2\x84\x98\xfb\x01\xcc\xac\x72\x49\x48\xa4\xe2\x48\x72\xa8\xfa\x6c\x92\x9e\xcd\xd2\x51\x3e\x2b\x9f\x84\x05\x50\x0d\x48\xd8\xe4\xeb\xb8\x79\x3d\x69\x11\xc3\xc8\xed\xa9\x05\xb3\xb8\xd8\x84\x6c\x32\xed\x86\x2d\xc2\xac\x41\xaf\x2c\x1f\xa4\xab\x36\x43\xdc\xe8\xd8\xc7\x03\x48\xf0\x04\x8f\x79\x9d\xd8\x3a\xe4\xf8\x8a\xa0\x6e\x9f\x29\x1f\x8f\xdb\x9d\xe5\xfd\x69\xef\x5b\xde\x00\x20\x42\x77\xc6\x01\x7d\xff\x3d\xee\x50\x5f\xc0\x9d\xf8\x39\xfe\xf2\xee\x2b\x1c\xc2\x6e\xea\x31\x00\xe8\xbe\xc7\xcb\x00\x20\x0c\xfd\xf5\xd3\x30\xc5\xc8\x57\xcf\x6b\x5b\x0d\x33\x1d\x28\xd3\x20\xfe\xbd\xdd\x22\x76\x90\x9f\xb3\x4a\x95\x90\x3c\xcd\x92\x49\x7d\x8c\x2b\xd2\x93\x0a\xbf\x6c\x99\x05\xe8\xf1\x94\xb3\x39\x30\xdf\x34\xa5\xe5\x74\xd1\x87\xa7\x05\x28\x2f\xdc\xd1\x02\x84\x1a\xe0\x28\x30\x90\x63\xc1\x5e\x23\x84\xdc\x35\xca\x31\xb2\xd1\x60\x26\xd4\x76\xee\x91\x6e\x8b\xa6\x9c\x8e\x69\x33\xec\x8d\xbc\x30\xd9\x9a\xed\x2a\x6f\x33\xec\xc0\x55\x46\x9e\x83\xf0\x15\xcb\xf3\x28\xcd\xce\x1e\xa5\xe5\x99\xd9\x61\x9a\xc9\xc6\x2f\xff\x16\xee\xff\xfd\x16\x31\x35\xa2\xb9\x87\xa2\xe5\x67\x95\xf9\xaa\x74\xdd\x30\x8c\xfb\x1a\xc3\xb8\xaf\x11\x38\x7a\x23\xb2\x31\x0c\xf8\xc2\x21\x6d\x60\x5f\x94\xf0\x56\x8f\xeb\xaa\x07\xd0\xd8\xe4\x6a\x7e\x88\xd9\xa7\x36\xc5\xe1\xf9\xfd\xcd\x7c\xa8\x83\xf5\x6e\xa4\x03\xb5\x35\x37\xb6\xe6\xc5\x2e\x63\xb3\x61\xbb\x3b\x1b\x44\xe3\x24\x57\x0d\x6b\xfe\x5c\x9b\x38\x52\x1e\x4b\x74\xb4\xf9\xd1\x38\xa4\x7b\xa8\x5d\x3a\x29\x7e\x59\xde\xd8\x4b\xf7\xa9\x28\x7e\xb3\x0e\xd4\xd0\x4d\x87\x8e\x36\x05\x6e\xff\x12\xc7\x00\xd3\xa2\x36\xfb\x96\x9a\xcb\x99\x49\x3a\x7d\x07\x4f\xf5\xec\xbc\xbe\x8a\x72\x85\xc6\x5b\xec\x91\x4e\x3c\xea\x5a\x52\xec\xff\xe1\x98\x24\x25\x7f\x38\x25\x80\xf3\xd7\x9a\x45\xdf\x14\x02\x3c\xe6\x31\x3a\x87\x9c\x2f\xdf\x14\xc2\x90\x1f\x63\xe3\xc1\xf0\x7f\xe0\xbd\x4c\x3e\x4c\x93\x3c\xcd\xdc\xda\x76\x1b\xae\xfc\x7d\x3d\xae\x36\x0e\xd7\x36\x76\x05\xf9\x93\x8f\xd1\x8c\x80\x3d\x86\x2f\x07\x16\x01\xe3\x59\xc8\x80\xe6\x26\xe5\x12\x71\x4c\x8c\xe5\xe3\x75\xe3\x2c\x12\xa1\xe9\x37\xb5\xc8\x86\xfd\xce\x98\x78\x50\x4e\x55\x78\xd6\xbf\xad\x85\x37\x4f\xa5\xb0\xff\xd5\x83\x5c\x93\xf0\x6b\xba\x67\xad\x06\xfb\x4e\x85\x50\x4c\x86\x9e\x90\x82\x88\x29\x6c\x1c\x39\x89\x0e\xcf\x1b\x1e\x38\xc4\x09\x32\xfb\x66\x34\xcc\x75\x9e\x55\xc9\x81\xc6\x34\xb6\x71\x91\xbc\xdd\xd0\xe4\xa5\xbb\x23\xf2\xd0\xf3\x24\x8d\x7c\x7e\xbc\x95\xf8\xdd\x25\x44\x36\x8e\xa3\xb4\x40\x92\xea\xc4\xe2\xc9\x81\x05\x1d\x9a\x2c\x1a\xda\x39\xc2\x6b\x9c\x27\x66\x77\x1d\x90\xc4\x4a\x57\x2a\x52\x14\x60\xe0\x64\xf1\x2a\xde\x99\x5a\xdd\x07\xe6\x9b\xeb\xc6\x93\x12\x79\xc9\xa6\xf2\x47\xf4\x64\xca\x88\x1e\x9e\x5f\x6a\x0e\xa2\xdc\xa7\x70\xc8\x80\x2e\x4a\xda\xaa\xc7\xe4\xc6\x0a\x93\x94\x6e\x0c\x55\x64\x05\xe8\xb5\x1a\x44\xf5\xfc\x0c\x09\x6c\x0f\x06\x36\xdb\x11\x00\xac\xef\xc3\x09\x39\xb7\x4c\xb3\x99\x3a\x55\xa3\x31\x1d\x75\x0b\x3f\x27\x69\x36\x4d\x07\x5c\x2b\xe6\x97\xc2\x35\xd9\xd8\x56\xc5\x0a\xff\xfd\x3a\xb6\xae\x36\x49\x09\xca\x7f\xcf\xee\xc9\xf6\xa2\x24\xdf\x1e\x10\x69\xff\x5c\x82\x11\xee\xf1\x39\x16\xf6\xf2\x9b\xf5\x58\x22\x0e\x94\xdc\x34\x9b\x05\xc6\xef\xac\x4f\x60\x63\x29\x85\x27\x3d\x80\x9e\xb1\xa3\xd1\x2c\x72\xc1\x73\xf9\x75\x0a\x25\x1c\x13\x38\xe4\x49\x19\xeb\x73\x81\x71\x1d\x69\x47\x9e\xc6\xfa\xf6\xe0\x42\x4f\xf2\xd4\xfb\xc9\x29\x94\xa0\x87\x9b\xc6\x65\xb0\xbb\x77\xaf\x96\x50\x6f\x21\x76\xd1\x93\xa9\x1f\xda\xbb\xb7\x99\xc7\xe9\xba\xae\x2d\xd4\xbe\xee\xb7\x88\x22\xe7\x7e\x5d\x5f\xa6\x34\x6d\xa2\xb6\xe4\x91\xd1\xbe\x9d\x76\xac\x55\x25\xf5\x5a\x38\xe4\x68\x11\x5a\x1e\x2b\xf6\xc6\x71\x26\x62\xae\x20\xca\x8e\x8e\x89\xd4\x79\x5a\x01\x79\xff\x81\xfd\x4d\xd3\x1d\x44\x6a\x17\x1d\x67\xa2\xc2\x2e\x9c\x2e\x41\xdd\xd3\x1c\xf9\x4a\xb5\xaa\xa8\x90\xf7\x3a\x47\x20\x91\x4e\x3a\xca\x72\xfb\x64\xc0\x78\xdd\x27\xb5\xa6\x7b\xb0\x86\xfa\x0f\x84\x17\x03\x1e\x03\xa1\xed\x39\x59\x59\x5e\x1e\x29\xb0\x5c\x33\xed\xd2\x1d\x10\x40\xa8\x2d\x40\x99\x40\xff\x05\x2f\x0c\xcd\xd1\x5b\xbc\x4b\x33\x3b\x70\xc4\x2f\xa8\xd0\x83\x83\x58\x8f\xfd\x90\x8d\x49\x92\x74\x94\x74\xec\xc0\x56\x28\x58\x27\x15\x19\xa9\xa9\x0c\xb7\x74\xf1\x5d\xdb\xa0\xd6\xca\x31\x1a\x77\x3e\x36\xe5\x3f\xdf\x78\xa3\x39\x30\x47\xa2\x41\xf4\x26\xd2\x62\x80\x4d\x2a\x7a\xe7\xa7\xa9\x97\x76\xa5\x4c\x22\x03\x1f\x91\xc9\x22\x15\x20\x0d\x09\x05\x7a\xcf\x7a\x3c\x7e\x29\xd0\x48\xdb\xae\x5d\x89\x12\xf9\x00\xae\x0f\xbe\xf2\x26\x25\x4c\x37\x6b\x24\x1a\x0f\x36\x57\xd2\x38\x4e\xd7\xdd\x7b\x47\xb0\xa7\xb2\x1f\x7a\x52\x1d\x67\xef\x82\x77\x40\xd7\xa8\x3c\x5c\xb7\x5e\x03\x7e\xa5\x9b\xa5\x32\x89\x36\xe3\xc7\xf2\xbe\x73\x11\x1e\x13\xcb\x02\xd3\x57\x2a\x12\x47\x0b\xab\x6b\x8d\xd3\xed\x76\xcc\x67\x61\x7e\xf7\x21\x01\x64\xba\xe9\x20\x4a\x22\xcf\xb1\xec\x04\x61\xe5\xce\x9d\x54\x6c\x4d\x9a\xbb\x6e\xcd\xaa\xe3\x4e\xc5\xd6\x7d\x48\x88\xc4\x87\x5f\xe9\xda\xfe\x3f\x8d\xba\xf0\xe3\x5a\x5e\xde\xd0\x1e\xb4\xaf\x5c\x7b\x57\x87\xaa\x32\x1e\xc8\x45\x09\x76\xf4\x98\x39\xc0\xaf\xe9\x7c\xad\xa3\xe9\x95\x4b\xc7\x25\x7c\x3a\xae\x68\x5d\x06\xe8\xdc\xa4\xc6\x54\x2e\x08\x28\xa1\x11\x5c\xe8\xdc\x24\xf0\x4d\xcf\xb5\x9f\x0c\xde\xbf\xb3\x5d\x76\x9d\x76\xbd\x05\xd9\xed\xd4\xfc\xca\x4f\x40\x94\xe1\x33\x31\x5a\x6e\x6c\x26\x0c\x79\x7e\xdc\x0a\xbf\xf0\xbf\x4f\x59\x45\x21\xb3\x34\x5d\xe2\xb8\x7d\x40\x1c\xb7\xd3\x3c\xac\xfb\x84\x9f\x3b\x8f\xba\x76\x8e\x28\x90\x2f\x13\xda\x64\xa6\x5d\xd1\xb3\xf3\xc8\xab\xcf\xe5\xd9\x86\x46\xab\xde\x5b\x66\x43\x33\x0e\xf9\xdd\xdd\x16\x25\x7b\x77\xeb\x8a\x12\xa2\x94\x54\x44\x06\x78\x31\x17\xf5\x86\x4a\xc9\xbf\xc3\xeb\xc2\x6f\xd5\x12\x70\x76\xed\x8a\x35\x05\x71\xa7\x20\x5b\xd5\xe3\xa9\x4f\xbc\xe2\x64\x1c\x1b\x34\x33\xa0\x6d\x5a\x3d\xa1\x96\xb5\x35\xb9\x12\x81\xa1\xc6\xf7\x01\x31\x4b\x3e\x26\xc1\xa5\x7b\xe3\x5f\xae\x59\x14\xa3\x24\x5a\xd1\xd8\x21\xca\x07\x0d\xa2\x32\xfb\x80\x92\xd1\x0f\x98\x92\x3b\x33\x6b\x5d\x83\x1a\xa7\x13\x13\x6a\x78\xb9\xc9\x47\xe3\x30\xf9\x7e\x89\xb2\xaf\x4e\x6c\xf2\x3c\xea\x08\xf9\xdd\xd2\x26\xe0\x76\xe8\xf2\x69\x21\x0b\x03\x39\xb3\x75\x72\xfe\xaa\xd7\xa1\x6a\x14\x08\xec\x1f\x72\xe3\xfb\x52\xd5\x53\xee\xf1\x98\x1a\x93\x75\x21\x76\x8f\x02\xf8\x9f\x6b\x57\x9a\xa3\x21\x3a\xda\x2d\xfd\x0c\x24\x5c\x0a\x9c\xf7\xa4\xf5\x9e\xa8\x0e\xfd\x69\x2c\xc1\x87\xf8\x45\xd0\x23\x3e\x3b\xc5\xec\x06\x12\x28\x10\xad\xe9\x10\x19\x5e\xdc\xcf\xe0\x1b\xf5\x84\x55\x7d\x6c\x67\xd5\x66\xb3\x34\xf0\x75\x01\x53\xb1\x1e\x0d\x16\x26\x6f\x38\xc4\x61\x2a\xf6\xc2\x66\x59\x9a\x45\xf9\x40\xb8\xaa\x9d\x76\x46\x79\x67\x1e\xf8\x1f\x84\x5c\x5b\x61\x06\xe1\x5f\x49\x8d\xdb\x51\xf9\xcb\x05\xfa\x39\x9e\xf2\x79\xe1\xb9\x9e\xac\x2b\x1b\xa6\x47\x36\x7a\x36\x21\x81\xee\x8b\xd4\x25\xbd\x48\x0e\xc1\xac\x14\x36\x2b\xcc\x11\x2c\x69\x04\x3b\x7f\x04\xfb\xa5\x27\x3e\xa9\x8b\x47\x47\x46\xd2\x56\xa3\xa9\xfb\xbb\x2d\x4a\x80\xa0\xbd\x0b\x5c\xe9\x25\x62\x66\xcb\x87\xa3\x44\x9b\x2b\xde\xd1\x86\x32\x84\xaa\x98\x3b\xc9\x5e\x9a\x32\x8d\x86\x36\x8e\x12\x2b\xf2\x34\x41\x92\xf9\xf0\xbc\x7a\x65\x94\xd4\x10\xb5\xe2\xb1\x21\xf0\x9a\x9d\x90\x5e\xf5\x5d\x78\x37\x3f\x82\x50\x5a\x69\x3d\xc1\x13\x45\x4c\x8c\x34\x13\xe5\xab\xfb\x63\x22\x05\xd8\x14\xdb\xaa\x03\xd5\x2d\x96\x12\x10\x10\xe4\xd3\xe5\x25\xc0\xb8\xbf\x8d\x9b\x42\xf0\xfd\x16\xd2\x07\x3c\x42\x05\xf5\xe9\x43\x12\x87\xe2\x38\x48\xc9\xc6\x9d\xc0\xfa\x86\xf9\x04\x7c\xcb\x49\xb0\xcb\x55\xbb\x67\xcc\xac\xc4\x5a\xe9\xf2\xad\x23\x7f\xa9\x8c\xc8\xfc\xac\x45\x37\x7a\x67\x2a\xd6\x28\xe3\xcb\x81\x35\xf9\x28\x73\x86\xcd\xf1\x47\x13\x31\xd7\xad\x16\x93\x6a\xf4\x6d\x22\xb3\x89\x6e\x39\x85\x91\x37\x70\xbf\xe1\xb6\xdf\x62\x28\xe9\x13\x53\x78\xe9\xbd\x0b\xcd\x65\x41\xb7\xf7\x88\x29\xea\x2c\xc5\x1f\xd3\xca\xcc\x8b\x8b\xcd\x65\xbb\x26\x6c\x24\x92\x59\x6f\x4a\x17\xe4\xe0\xe6\xd5\xa9\x9b\xda\xbb\xd7\xf7\x2a\xf5\xa6\x10\xac\xea\xca\xd3\x93\x71\x50\xf2\x5d\xb7\x99\xfd\x5a\x19\xfa\x8a\x45\x1a\x3c\x3f\x61\xf6\x2d\x1a\x39\x7a\x0c\x14\x23\xee\xf0\x73\x71\xc2\xb0\x61\xd7\xa9\xc0\xfb\x04\xfa\x31\x28\x47\xee\xd0\x4e\x93\x43\x00\x0a\x44\x02\xce\x5a\xe9\x9e\xe1\xae\x1a\x13\xca\x75\xde\x07\xf8\x02\x27\xf7\x80\x4e\xc2\xc6\xba\x86\xd5\xe0\x27\x13\xf6\xee\x55\x80\xe8\x7d\x99\x6a\xf3\xa8\xa0\xf2\x95\x63\x64\x01\x0a\x8e\x30\xcf\x4f\xb6\x2b\xd0\xc4\x72\x29\x7a\x40\xba\x47\x4d\x83\x24\xd6\xb1\xcd\xbc\x30\x6d\xf8\x5f\x16\xf0\xa9\xab\x00\x35\x5e\x7e\x59\xaf\x0d\x40\x62\xfc\xea\x25\x98\x49\xd7\xac\xfd\x0a\xfa\xec\x18\x8a\x7d\x2e\x6e\x2e\x1f\xba\x8b\xa7\xb7\xc6\x28\xfb\x96\x9a\xd9\x28\xd1\xb7\xe9\x67\x84\xbd\x25\x9a\x06\x7c\x2e\x1c\x6a\x16\x26\xd2\x34\xa2\x4e\x98\xab\x06\xcb\x68\x3a\x1d\x3b\x2c\x04\x4f\x41\xe5\x12\x1d\xa0\xd2\x13\x3f\x61\xd4\xcb\x4c\x77\x64\x0a\xbb\x9d\x34\x4f\x80\x67\xf1\xf7\xe3\xe3\xa1\x3d\xed\x8a\x84\x70\x18\x75\xfd\x08\xdf\xed\x0a\x99\xa1\x2e\x54\x64\xa6\x63\xe1\x97\xd5\x62\x9d\x23\x76\xef\xef\x62\xe9\x28\x05\x08\x51\x23\x8c\x92\xd8\xac\x8b\x6e\x49\xa3\x42\xeb\x20\x7f\xee\x86\x31\x7d\x94\x12\x65\x45\x3f\xe7\x11\x9d\xcb\xad\x00\x17\xb9\x3c\x7e\x9e\xbb\x4b\x69\x26\xcc\x07\xe5\x9a\x71\xff\x1e\xa4\x14\x2e\x93\x6d\x1c\x9a\x8d\x32\x7d\x9b\x2d\xff\x15\x56\x4b\x55\x4a\xf4\xa4\xa6\xd9\xa9\x27\xe3\xaf\x55\xdb\x0c\x8b\x8b\x07\x05\x7d\x39\x17\xf8\xa3\xd4\xf7\xe1\xa5\xff\xad\x2d\x8c\xc1\xa1\x86\x4d\x72\x12\xb7\xa8\x49\xa6\x0c\x90\xe5\xfb\x72\xea\xab\x2c\x8b\x74\x8e\xf5\x5f\xd2\xa4\x88\x92\x91\xab\xb0\x3a\x4e\xc3\x80\xee\xb8\x50\xb7\x44\xdf\xb4\x85\x21\x9d\xf1\xbf\xcd\xbd\x8c\xbf\x3d\x95\xdb\xbf\xfc\x32\x28\xc2\x67\x88\x27\xe3\x7e\x8b\x2a\x65\xba\x91\x51\x69\x39\x4b\xef\x63\x3d\xcd\x72\x9b\x38\x6e\x74\x1f\x8c\xd0\xb0\x30\xa9\x34\xc4\xa6\xb3\xfa\x94\x98\x0d\x6c\x47\x75\xb9\x88\x3e\x2e\xb6\xc8\x58\x7d\x42\x50\xb9\xdf\xc5\x6f\xc3\x01\xa8\x04\xb6\x1f\x9b\x3a\x30\x1f\xf8\xb7\xf6\x05\xfe\x2d\xd2\x06\xfd\xc7\xfa\x64\xf5\x57\xc6\x61\x16\x7a\x0e\x98\x31\x4f\xe6\x5b\xda\x09\x05\x5a\x10\x29\xcb\x72\x1c\x24\x92\xdd\xb8\xb9\x18\x45\x98\xb8\xf7\x81\x35\xd3\x93\x56\x25\x46\xd8\x9a\x2d\x1e\x9e\x2f\xa3\x3e\xc8\x4f\x6a\xde\x1e\x80\x58\x3c\xdd\xdd\x7a\x91\x3b\x1f\xb1\xd1\x3a\x04\x31\xec\xff\x83\x16\x09\x6f\xfe\x03\xa2\x9a\x1a\xa6\x69\x9c\xcf\x04\xbd\xe3\x73\xd4\x61\xac\x72\x20\x84\x96\xf0\x30\x4b\x3b\x36\xcf\x23\x07\xce\x73\x5a\x03\xa1\xe4\xfd\x63\xf6\xfd\x5f\x30\x1c\x09\xbd\x3a\xc4\xd9\xea\x47\x5c\x19\xba\xf4\x09\xc8\x2d\x6e\xc8\xcb\x41\x41\x63\x9b\x10\xae\x62\xfc\xf2\x14\x55\x95\x73\xdb\xc9\x6c\xa1\xc5\x0c\xc7\x6e\x18\xa6\x54\xa6\xcd\xa4\xcb\xbd\x07\x91\x88\x29\x05\x1c\x8b\xe6\xc7\x7a\xe2\xcd\xe4\xb2\xc9\xed\xb2\x89\xe3\xd9\xd2\x72\x00\xbf\xfd\x0e\x0a\x48\xce\x53\x94\x5f\x81\xd8\x6b\x0e\x73\x7e\xa8\x39\xdd\xa9\xe5\x08\xb2\x47\x86\xb6\xe3\xdb\x66\xd8\x33\x77\x99\x68\xe6\x2e\x71\x3a\xc4\x56\x24\x59\xca\xef\xd4\x92\x36\xb5\x03\xcf\x8f\x3d\x5c\xb6\x6f\xa2\x6c\x68\xb3\x5c\xef\x87\x0a\xc2\x5e\xd9\x84\x02\xfa\x32\x5d\x95\x39\x85\xe7\xe4\xa1\x61\x0d\x3e\xc6\x1a\x44\x7e\xf2\x01\xb6\x0b\xf2\xad\x5b\xe3\x40\x6f\x7b\x05\x2f\x94\x49\xd7\xb1\x94\x66\x85\x2f\x1b\xce\xe2\x26\x69\xf1\x3d\x24\x3e\x9d\xa3\x58\x7c\x15\xe1\x07\x6c\xa9\x7f\x85\x4b\x45\xde\xf3\x82\x46\x1c\x58\x70\xb7\x5a\x61\x1c\x6d\x9b\x30\x77\xf9\xde\xf8\x5e\x27\x5b\xa7\x94\x49\xca\xa3\x53\x47\x61\xd3\x8d\x32\xdb\x29\xd2\x6c\x9a\xda\xda\x97\x3e\xc3\x10\xc8\x6d\xef\x60\x44\x41\x75\x63\xbb\x5c\x36\x0b\xed\xfa\xc1\x95\xf2\xdb\x1c\x49\x0f\xf7\xa9\x5b\x15\xf9\x11\x2f\x53\x3d\xd3\x0e\x69\xc5\x8a\xb5\xc5\xce\x60\xfd\x4e\xca\xc3\xc4\x92\x52\x26\x3c\x2f\x94\x13\x98\x76\x2e\xca\x17\xfb\xa6\xd6\x81\x79\xf7\x09\xb2\x9d\x27\x11\xa3\x39\xe0\x53\xdd\x20\x89\x57\xd8\xc4\x0d\x7f\x3a\x0e\x32\x7f\x9f\xb6\x02\x81\xb1\xc9\x44\x0c\x1b\x46\x64\xbf\x1f\x3b\x05\x73\xbb\x1e\x53\x9d\x3f\x37\x83\x61\x6c\xb9\x0a\x02\xdc\x9a\x1e\xb7\x48\xda\x26\xcd\xa5\xa4\x68\xbb\x73\x2c\xa0\x01\x03\xe9\x04\xa9\x24\x6a\x84\x65\xc6\x4c\x0f\x56\xf2\x71\x64\x41\x4e\x0d\x87\xb8\x08\x4c\x21\x1d\xc5\xf2\x49\xc0\x14\xa1\x98\xa6\xc7\xb5\xba\xb3\x9a\x07\x49\x09\x06\x21\xe6\xb6\x49\xa8\x4d\xef\x04\x80\xc7\x8d\x17\x12\x61\x4e\xd6\x33\x49\xf4\x26\xec\x31\x26\xb4\xb1\xf8\xfe\xd9\x38\x20\x88\x8e\x8e\xbf\xb2\x0e\x57\x6e\x3b\xfd\x23\x30\x26\xeb\xa7\x5b\xcc\xb2\x31\x50\x36\x0e\x54\xf5\xee\xd3\x34\xc5\x7d\x12\x8f\x1b\xc5\x2a\x12\x81\x80\x57\x99\x0d\xf5\xc4\xc3\xee\x07\x51\x11\x91\xc2\xf6\xdb\x58\xac\x4e\xce\x9e\x54\x3d\xd3\xc2\x26\x45\x04\x84\x91\x03\x6a\xe8\x20\x8b\x0e\x91\xcb\x4a\x83\x1d\x7c\x00\xdf\x0b\x5f\x7f\x2f\x98\x23\x53\xd8\x6c\x18\xc5\xb1\x8a\xd3\xa0\x8e\xab\x44\x0b\x88\xf6\x77\xb7\x43\x05\xe9\xf1\x38\xd4\x73\x96\x4d\xd6\x33\x51\xa2\x41\x8b\xa3\x1c\x68\x78\xa9\xdf\x4b\x53\x9b\x1b\xd2\xfb\x03\x5f\x70\x87\x41\xf9\x82\xb8\x4b\xbe\xa8\x12\x89\xc5\xa3\x06\x27\x69\x44\xed\x7b\xb6\x32\xb5\x94\x1e\xd9\x90\x2f\x44\xcd\x02\xd0\x50\x3d\xa6\x30\x77\x68\x32\xd3\xb5\xe0\x8c\x74\xce\x89\x45\x40\x4f\x8d\x89\x98\xf5\xf7\xc7\x01\xd9\x05\x27\xe5\x24\x1e\x03\x54\xe2\x3f\xf9\xd5\x7c\xa6\xb4\x6c\xfa\x84\xf1\xe8\x91\x09\xcf\xb6\xa9\x87\x75\x9e\x54\x73\x33\xbb\x2c\x4d\x52\x80\xe9\x3d\xd4\x26\x00\x23\xaf\x53\x49\x68\x68\xb3\x41\x54\xcc\xc8\x26\x42\xe6\x8d\x5a\xb5\x47\x13\x95\xdb\xce\x81\x54\xf8\xc9\x6d\xc4\x96\xc9\xf5\x2e\x62\xcc\x0a\xd9\xc8\x2d\x22\xf0\x7a\xc8\xf2\xb2\xe7\x94\xb7\x4f\xff\x4c\x9f\x8d\xfe\xdb\x16\x82\x0e\x3f\x3a\xf3\xdd\x9a\xb7\xbc\x24\x7c\xf4\x5d\x03\xe4\x97\xc3\xa2\x84\x8c\xe2\x1c\x3d\xc3\x6f\xdb\x42\xb8\x30\x10\x65\xef\x24\x24\xf7\x6d\x56\x55\x38\xcf\x33\xf6\xe7\xc7\x95\x0c\xc0\x2c\xc7\x9a\x18\xe1\x09\xca\xf4\xa0\x82\x98\xd1\x83\x3f\xc6\x44\xa6\xb0\xc5\x70\x7f\xb0\xa6\x7a\x3c\x75\x27\x32\x8d\x95\x17\xa6\xb0\x5d\x29\x44\x39\xa7\xcf\xb1\xef\x4c\x10\xca\x3c\x45\x7c\xf2\x9d\x74\x94\x14\x36\x1b\xa4\x6b\x16\xe6\x98\xc1\x6b\x4e\xe3\x21\x00\x03\xfa\xe9\x28\xdb\x21\xb6\x49\xd9\x39\xe5\x69\xa1\xd0\xfc\xb8\x45\x81\xca\x15\xbc\x07\x94\x43\xce\x11\xc9\xc1\xc3\x31\x91\xf2\xa2\x72\x00\x34\xd9\x97\xd4\x5b\xb1\x47\x86\x26\xe9\x42\x38\x1c\xff\x3a\xab\x1c\x8a\x7a\xd6\xde\xda\x2e\x76\x35\x2f\x6a\xc2\x5f\x21\x6c\xe8\x65\x78\x3f\x38\x36\x05\x32\xe9\x09\x95\x71\x46\x49\x54\xe4\xbb\xe4\x15\x00\x52\xa1\x5c\xd5\x58\x0d\x7f\x2a\x7e\x12\x41\x19\xee\xc8\xe9\x88\xcb\x03\xf1\x1c\x2e\xe5\x15\x78\x89\xd0\x72\x6d\xe3\x6d\x9f\x27\x29\x31\x95\x82\xf9\x2a\xe2\xec\xa5\xa5\xfd\xcd\x34\x8b\xad\x49\x72\x00\xb0\x50\x5b\x79\xae\x4d\x64\xb6\x57\x34\x97\x80\x39\x9d\x63\x2e\xa0\x93\x01\x66\x9e\x07\x3d\x39\xc7\x93\x7f\x97\xc7\x26\xee\x92\xe0\x6f\x54\xe4\x36\x5e\xd9\x5d\xde\x24\x70\xb0\xb7\x60\x8a\x71\x2f\x30\x56\x4a\x9c\x29\x77\x8f\x12\xdf\xec\x84\xe2\xf4\xeb\xf0\x14\x58\x1b\x8f\x70\xf7\xfa\x5d\xe3\x50\xe8\xbd\x58\x51\xb8\xc1\xa3\x70\xb4\xb7\x94\x6c\xc6\x69\x6e\x65\x08\x9d\x62\xff\x16\xf1\x70\xfc\xb8\x46\x4f\xae\x69\x3a\xbf\x3d\x8a\x10\x08\x50\x6b\xee\x03\x26\x6e\xfd\x80\x65\xab\x24\x45\x91\xdb\xc4\x84\xc7\x4f\x88\x43\xf7\x32\xff\xda\xf5\x1a\xe5\xbd\xa6\x89\x4d\xbe\xaa\xda\xd6\x0a\x78\x62\xc2\x88\xa0\xaa\xb5\x92\xd9\xbc\x2f\xe3\x52\x40\x28\x5c\xe4\x7a\x32\xb2\x1b\x59\xd9\xf3\x7f\x4e\xea\x45\x58\xe5\xb7\xf0\xa6\x5c\x2d\x4b\xac\x2b\x1e\xfa\x65\x3f\xf5\x3b\x88\x3a\x59\xba\x6e\xd6\xd0\x2e\xd3\xfa\x49\x8b\x6b\x29\x35\xc4\x27\x79\x3f\x1d\x79\xca\x38\x17\x4c\x50\x27\xfc\x62\x4d\x96\xd1\x34\x1d\xd8\x0a\xcd\x32\x60\xe1\x54\x89\x58\x4f\x48\xe3\x34\x1f\x5a\xdb\x4d\x07\xb6\x28\x73\x8d\xc3\xf3\x4b\x9b\x92\xfc\x6d\x9e\xa3\x2c\x6b\x2d\xb2\x45\x62\x06\xb3\x15\xe1\xaa\x30\x6b\x73\x85\x74\xa9\x2f\x56\x04\x54\xea\xc6\x33\xf3\xc2\xac\xac\x90\x1e\xf9\x45\x8e\x0c\xaa\x9a\x86\x1b\xb6\x78\xb2\xb4\xa6\x70\x4e\x4f\x4c\x88\x55\xe0\x2e\x96\xac\xce\x0b\x4b\x80\xa8\x92\x5f\xad\x50\xc6\x7b\x84\x8b\xc1\x9b\x38\x23\xe0\x00\x18\x9c\x1f\xb4\x68\x7e\x12\xac\x26\xe8\xd3\x1c\x87\x31\xf4\x1c\x95\x8b\x8b\xba\xf5\x3f\x9c\x6a\xdb\xef\x5b\x6a\x9a\x38\x96\x95\xa2\xe4\xa1\x64\xc5\x9f\xc6\xc4\x03\x5a\x32\x98\x3d\x07\xd8\x13\x2d\x4e\x67\xa6\x48\xb1\xe1\xea\xd4\xb3\x5a\x5c\x6c\xf6\x07\x69\xd2\xd3\x6e\x34\x5c\xcd\x59\x7c\x46\x4f\x18\x10\x5b\xc6\x00\x49\x4f\x9e\x17\x42\xae\x6b\x34\xe3\x7b\x9d\x2b\x6e\xff\x5a\x62\xe8\x4d\xa5\xe3\xf1\xed\x56\x3f\x54\xa7\xa4\x97\xc8\xb4\xbe\x50\xa7\xad\x8f\x04\x86\xc6\xc9\x9c\x85\x7e\xe5\xb6\x09\xcb\x93\x4d\x95\xb4\x65\x3a\x33\xcf\xc3\x7c\xbc\xaf\x98\x87\xea\x79\xb5\x1d\xb8\xa1\x1d\x7b\x24\x92\x9f\xd0\xd4\xde\x27\x53\x6b\xfe\xd0\xab\xcd\x8e\x8d\xed\x72\x66\x0a\x2b\x25\x59\xad\x43\xcb\xb7\xbb\x9a\x74\x08\xae\x63\x4c\x43\x07\x4e\xe3\xb3\x72\xf3\x7a\x4c\xc3\xd6\x99\x2d\xa2\xcc\xba\x22\xbc\xab\x8b\xca\x07\x5d\xa1\x97\xe1\xdc\x59\xd1\xb7\xd9\x9e\x32\x7c\xc3\x82\x7d\x9f\x82\xf6\x9b\x78\x01\x88\x91\x50\x82\x42\x20\xa5\xd6\xc2\x0f\x9b\x94\x4f\x11\x91\xf9\x75\x5e\xe2\xf7\x25\xac\x80\x81\x7b\x57\xd6\x10\xde\xc1\xb1\x71\xc0\xcb\x3c\x27\x24\x69\xda\x65\x93\x7b\x47\xc7\xea\x18\x15\xa6\xf2\x32\x32\xcf\x85\x1e\x11\xbf\x02\x05\x3f\x44\xa5\x17\xe4\x47\xf0\x42\x8f\x7b\xd7\xd4\x8b\x92\x9e\x17\x91\x85\x53\xbd\x28\x37\xa0\xc7\x75\xcd\xe9\x81\x01\xac\xad\x5c\x47\xc8\xa6\x4e\x61\xe1\xea\x09\x85\x5b\x83\x28\xb1\x99\x89\xa5\x34\xeb\x36\x24\xc1\xd8\x2f\x90\xdf\xcb\x3b\x59\x34\x2c\xa8\xc8\x81\x76\xab\x03\x1f\x3d\x43\x2f\xae\xcc\x23\xf0\xf3\x8e\x3c\xa8\x41\xa4\x42\xcf\x50\x4d\xf5\xdb\xb6\x53\x34\xc8\x27\x63\x4d\xea\x71\xe0\x6c\x18\x15\x11\x0a\xd3\x41\x29\xf9\x0a\xf1\x88\x5e\xa1\xa9\x58\x02\xcd\x84\xe6\xee\xe5\xca\x74\x59\x1d\xba\x2a\x2f\x46\x2b\x2b\x30\xda\xaf\x33\x1b\xf4\x82\x87\xae\xf2\x80\xb4\xed\x8c\x8a\x68\xcd\x92\x04\x21\x46\x1a\xf4\x78\x42\xd6\xdb\xe6\xb9\x8d\xe1\x9c\x55\x46\x18\x26\xd7\x69\x0a\x3f\x4f\x35\x3d\xdb\x8d\x3a\x4e\x78\x10\x39\x8c\xda\x67\x3d\xe1\xa5\x94\x8e\x7a\x7d\xe0\x6c\x9d\x96\x54\x90\x99\xc1\xb3\xd1\xda\x36\x4d\xe9\x5c\xa6\xe7\x24\xd2\x75\x9d\x2c\x5a\x06\xa9\x3a\x7c\xc6\x7b\x24\xa9\xf5\xde\x38\xf0\xc3\x6b\x5c\xe8\x1e\x66\x8d\x0c\x4b\xc7\x64\xa6\x63\x72\x66\xcc\x1f\x13\xa0\xe0\xcb\x4a\x0d\x2c\x5a\x8b\x62\xdb\xb3\x73\xe5\xaa\x43\x79\x69\x0e\x18\x51\x47\xf0\x1a\xda\x4e\x28\x56\x2a\xe3\xa2\x5c\x91\x7e\x60\x12\x28\x34\xed\x91\xa1\xcd\x22\x2b\x5a\x4f\x07\xe6\x35\x8e\x04\x14\x47\x8f\x71\xf9\x08\xeb\x35\x92\xd2\x13\x7a\x22\xe9\x72\xb9\x1a\x45\x06\xb3\xbc\x8b\x3a\x4a\xb6\x9a\x39\x4e\x91\x0f\xb5\x8a\x64\x80\x2f\xd2\x9a\xb2\xf2\x07\xb6\xd0\x6e\x0c\x51\xbb\x13\x32\xf3\xac\x4a\xb7\xc7\x34\xa0\x7c\xbb\xf5\xb5\x80\x2f\xae\xb0\x09\x87\x72\x29\x7a\xbc\x7a\xdc\x7a\x71\x1a\xa2\x36\x1a\xce\x04\xd9\xb5\x87\x32\xa6\xcd\x8d\x32\xc7\x73\xb6\x15\xe4\xf0\x4a\x33\xb7\x49\xae\x83\x4e\x8d\xca\xa4\xa0\xef\x5d\x7c\xc8\x6e\x6f\xd4\xe9\xd8\x3c\xdf\x25\x16\x83\x32\xa8\x6f\xa8\x49\xbb\xc6\x3e\x16\xb2\x44\x4e\xc7\x29\x54\x97\xff\x58\xea\x33\x6e\x9a\xa3\xbc\x54\x3c\xed\x33\x84\x6d\xc0\x24\x3b\xc2\xe2\xfb\x53\x97\x2d\x1d\xc1\x41\xda\xc9\x4c\xa1\x43\xb8\xf0\x55\x9a\x71\xea\x49\x8d\xa6\x6c\x73\x68\x62\xcb\xbe\x08\x7d\x10\x37\x11\x51\x83\x5d\xea\xf4\xa3\xce\xaa\x4d\x88\x65\x06\x22\x0e\x7a\x1c\x28\x04\x6d\x9e\x1b\xbf\x2c\x90\x00\xab\x67\x77\x59\xa7\xa4\xf0\xae\xc7\x56\xfb\x53\x66\xb0\x6c\xb3\x19\xa2\x80\x53\x16\x32\x47\x72\x11\x72\xab\xfb\xb5\x0a\xe1\xa3\xe1\x30\xcd\x6d\x97\xc4\x9a\x34\xbf\x75\xb4\xcf\x5b\xe7\x60\x45\xa9\x60\xb4\x9c\x66\xdd\x28\x09\x52\xd9\x88\xbe\x81\xef\xd3\x63\xef\x9e\xec\x11\x3b\x18\xfa\xbf\xf4\x04\x0a\x1e\xaa\x79\xa5\x8e\xe7\x28\x2f\x4c\x0f\x64\x3a\x88\x14\x6f\x20\x52\x74\xf9\x6d\x79\xb9\x6e\x54\x33\xd4\xe3\x87\x51\x9c\x16\x62\xaa\x00\x71\xf9\x42\x8c\x81\x0e\x2e\x8a\x1b\xf5\x64\xc0\x1e\x06\xf3\x85\xaf\x26\x67\xb6\x18\x65\x09\x72\x56\x6f\xd2\x4a\xd7\x0f\xa7\xf4\xbf\xe0\xb9\x38\xf0\xaa\x3c\x65\x47\x7c\xd1\xf0\x6a\x14\x3f\x69\x11\x7f\xc4\x51\x6a\xd7\xde\xa7\xe9\x89\x6d\x6d\x22\xdf\x78\x54\x77\xfb\x85\xcd\x1d\xf2\x09\xcb\x66\xdc\x0a\xfc\x75\xda\x55\xd2\x90\xa0\x4e\x95\x06\xf8\x30\xb1\x06\x5e\x06\x69\x71\xd1\xcb\x20\xd5\x2c\x84\xcc\xe6\x76\xb0\x1c\x5b\xea\x31\x3d\xa4\x91\x02\x35\xd4\xae\x20\x51\x37\xba\x9f\x99\xbc\xdf\x08\xf3\x45\xf0\x2f\x8e\x19\x2f\xb0\x06\xdb\x24\x31\xf0\xe6\xbe\xba\x41\xdf\x3c\x35\x2b\xb2\xb8\xd8\x1c\x8e\x0a\x50\x02\x38\x06\x1d\x79\x0f\x48\x26\xe0\x8c\xf4\x78\x4c\x2c\xbc\xe7\xa9\xd9\xb6\x9e\x66\xab\x79\xa1\x93\x6b\xbe\xd6\xf4\x2f\xe5\xa3\x6e\xb2\xce\xf7\xac\x6d\x12\xf5\x92\x39\xcf\xc0\x91\xa0\x9b\x8e\x4a\xdc\xb3\xd2\x45\xf1\xed\x69\x5f\x7d\x6c\x08\x9e\x43\x15\xd3\xa7\x82\xdf\x32\xa5\x32\x49\x47\x9b\x83\xe5\x9d\xa3\xa5\xf3\x25\xa9\x24\x7c\x39\x95\x80\x2f\x2e\xaa\x3a\xb9\x7c\x6e\x26\xe0\x2b\xff\x47\xf6\x99\x37\xc6\xa4\xf0\x76\xa3\x92\x9b\x45\x45\xff\x17\x03\x61\xd2\x17\xb0\x25\x1e\xb3\x73\x60\xfe\x80\x27\x44\x93\xef\x83\xe5\x9e\x99\x50\x9d\x02\x2c\x16\x30\xcc\x37\xc7\x8d\xbf\x71\x90\x08\xd1\xf6\x56\xa6\x92\xb0\x0f\xee\x68\x31\x51\x99\x45\x10\x24\xfa\xe6\x6a\x18\x78\xbf\x4f\x2a\x82\x6f\x08\xc8\x05\xd6\x54\x68\x31\x0f\x68\x03\xea\x1e\xa3\xd0\x3e\x6c\x31\x71\xb0\xf8\x2a\xac\xfe\x5b\xc4\xdf\xd5\x40\xe3\xd7\x91\xa8\x20\x2b\xc2\x3d\x7e\x82\xba\x12\xa2\xed\x53\x52\x36\x53\x65\x83\x16\x11\x4f\x3f\x16\x2f\x83\x67\x79\xa7\x46\xf7\x79\xbf\x4c\x70\xf5\xd3\x51\x8e\x29\x99\xca\xd6\xd0\x93\x16\x79\xbe\x28\xe9\x58\x1d\xa8\x71\xe9\x36\xe7\xe4\x5b\x97\xfa\xd2\x52\xb3\x6f\x74\xd3\x23\x98\x51\x29\x17\x37\x23\x4d\x80\xa7\xf7\x88\x09\x30\xef\x47\x92\x59\x56\xd8\xfe\x2f\xf1\x55\x4d\xc3\xfe\x17\x0e\x35\x13\xbb\x1e\x6f\x90\xc6\xc2\x23\x9a\x35\xdb\xdd\x26\x72\xf7\xa3\x04\xb0\xad\x0d\x8c\xbf\xde\x34\x51\xec\xc7\x77\xb1\x90\x80\xf0\x75\x0c\x4a\xd4\x00\xf1\x6e\xa1\x4c\x01\xb2\xae\x93\x06\x47\xa8\x85\x86\x14\x30\x01\x2a\x56\x8c\x0d\x7a\x99\x7a\xe1\xeb\xa6\xb0\x19\x60\x7b\x30\xe1\x3f\x6a\x11\x81\xc2\x9f\xc8\xe2\xd2\x9c\x8e\xc8\x6d\x3e\x1b\x07\x26\xab\x0b\x98\xae\x7b\x1b\xab\x4a\xbf\x04\x41\x89\x7f\xa7\x87\xe7\x17\x36\xdf\x96\x26\x26\xab\x0b\xe8\x6f\xd4\x34\xab\x96\x9a\x9d\x51\xb6\xec\x09\xa7\x94\x99\x84\x6c\xcc\x19\x6a\x4b\x74\xd3\xae\x88\x66\x78\xa1\xa3\x5b\xb2\x8d\xf4\xb8\x55\x07\x1d\xea\xae\xd9\xac\x88\x82\x3c\x14\xab\xd5\xa9\x74\x32\x03\x3d\xeb\x64\xcb\xd7\xfb\xa6\xc8\x53\xbb\x06\xc4\xa9\x6b\xab\x68\x32\xe7\x8a\xbb\x81\xfa\x06\xa2\xf6\x0e\x7a\xec\xfb\xed\xe9\x68\xa3\xe7\x71\x2b\x28\xc1\xdd\x67\xce\x9d\xfb\xd4\xcc\x58\xcd\xcc\x5a\xe4\x28\x24\x11\x9a\x9d\x62\x74\xc8\xa9\x1a\x3e\x85\x66\x6c\x7b\x7e\x84\x5c\x11\x4d\xf2\x18\x1d\xba\xa9\xd2\x2e\x42\x4d\xac\x5e\x71\xb5\x86\x49\x2c\x4a\xba\x91\x16\x19\x55\x16\x0a\x97\xee\x34\xa2\x6a\x7a\xd3\xd1\x00\x12\xd1\x08\x5f\x50\xad\x69\x00\x04\xaa\x27\xed\xad\x3f\xf4\xda\x81\xf9\xa6\x8d\x97\xd3\x75\xca\xc8\x3f\x25\x1c\xc2\xa7\x5e\xfe\xac\xe8\x4b\x8e\xb6\x32\x42\x28\xad\xb0\x1c\x42\xd3\x5f\x22\x29\xce\x42\xe6\x52\x7d\x7b\x0f\x73\xba\x7a\x4c\xed\x95\x8e\x59\x6e\xd0\x78\x68\x55\xd0\xb0\xae\xf9\x9e\xa9\xfd\x90\x75\x85\x6c\x08\x3b\x47\x8f\x29\x9a\x1f\x25\x9d\xd8\x9a\x6c\x36\x60\x41\x51\x3b\xd3\x63\x21\xba\x40\xad\x43\xdf\xb3\x9e\x50\xea\xdf\xe9\x47\x5d\xdb\xd5\x35\xa1\xea\x5a\x28\xb9\x3b\xa9\xad\xa7\x49\x0e\xef\x4d\xab\xd8\x11\x05\x7a\xca\x2f\x38\xd0\x67\xf8\xc3\xcc\x2c\x47\xfa\x86\x5c\xdd\x35\x5c\xca\xc5\x9a\x55\x76\x50\x93\xb2\x99\x50\x5a\x7c\x07\xe5\x1c\xa5\xaa\x97\x07\xe0\x58\x7a\xeb\x42\xef\x34\x0b\xf4\x72\xe8\x1c\x68\x69\x5c\x4f\x3c\xb2\xd9\x1e\xe9\x1b\x88\x37\x54\x48\x96\xa8\x8f\x10\xd0\x2c\x43\x9b\xe5\x51\x5e\x54\xe6\x19\xef\xb5\x68\x9e\xf1\x5e\x5d\xec\xd5\xcb\x46\x5a\xb1\x85\x25\xb8\x4a\x7d\xfd\xab\x54\xa2\xdf\x30\x59\x37\x6f\x04\xe5\x8d\x6d\x34\x46\xb1\x6d\x52\x03\xf4\xce\x8b\x51\xa7\x93\xca\x37\xd7\x0d\x36\x87\xe7\x6f\x20\x71\xe5\x8b\x74\x47\xa5\x02\x06\x1c\xca\x6d\xb1\xc8\x70\x0b\x57\xa8\x2d\xba\x62\xbb\x36\x43\x0a\x51\x1a\x20\xc4\x03\xdb\x04\x93\xaf\xc7\xed\xb0\xf0\xba\xa3\xc1\x50\x1f\xf7\xeb\x61\x60\x3f\xb4\xff\xbf\x57\x57\xe4\x2a\x32\xd3\xad\x4e\xc0\x2b\x19\x85\x0b\x4b\xe9\xfb\xb3\x68\xcd\x17\xc4\x5c\x29\x45\xfe\xd6\x15\x59\x42\x17\xfc\x4d\x13\x8f\x96\x45\xba\x23\x28\xe5\x7d\x24\x06\x5c\x8f\x5b\x4f\x85\xae\x88\x89\x57\xe1\xab\x5c\x19\xaa\x7c\xfc\x30\xaa\x4f\x4c\xc2\x06\x7e\x34\xa6\xc5\x37\x26\x66\x88\x9d\xe8\x54\x29\x2a\x07\xd6\xca\x47\xa6\x5e\x23\x6b\x8c\x38\x46\x2d\x3a\x46\x8c\x11\x36\x14\x92\x46\xbb\x3a\x23\xab\x31\xad\xda\xd9\xaf\xaa\x7e\xc9\x4f\xe2\x33\xca\xad\xac\x27\xbe\x0b\x93\xd8\x6c\xcd\xce\xca\x03\xf2\x49\x49\x79\x03\xb8\xe8\xd3\x44\x6c\x06\x2c\x01\x4c\xc9\x7d\x70\x4f\xa9\xa1\x1a\x9a\x06\x09\x4e\x01\x4d\xa6\xc7\xdc\x57\xea\xdb\xcc\xbe\x48\x98\x3e\x90\x41\xb8\xde\x04\xec\x88\xe7\xba\x2e\x77\xa3\x9f\x5b\xf2\x75\xaa\x7f\xcb\x93\x9e\xca\x00\x88\xb4\xec\xf3\xd6\xcc\xc1\xff\xec\x37\x7d\xfa\x21\xd7\x83\xd5\x77\x91\x4a\x22\x57\xc1\xdb\x81\x9b\xd3\x58\x16\xa5\xde\x87\xf2\x12\x70\x31\x10\x06\x44\x92\x25\xec\xba\x2e\x82\xba\x22\x81\xa5\x7f\x39\x65\x90\xeb\x79\x6f\xfe\x86\x63\xc9\xbd\x45\xe8\x83\x93\x88\x4c\x70\xbd\xff\x82\x06\x6a\x14\xf2\x93\x37\xc2\x02\x81\x64\x8e\x6b\x73\xb9\xf7\x93\x47\xab\x36\x9f\x61\x21\xf9\x1f\x8c\x09\xc5\xa8\xe0\x33\x47\x6d\x58\xc7\x9f\x36\xb0\xc6\xe5\x2b\x3e\xa4\x64\x0a\x81\xe9\xbe\xd6\xfe\xa6\x49\x8a\x28\x8e\xad\xf3\xf8\x58\xe6\xc7\x79\x86\xe9\xf8\x38\xec\x8d\x28\x5d\x37\xb2\x04\x5d\x91\x87\x3b\x92\xda\xd5\xf0\x40\xc5\xf2\xc5\xea\xdf\x7d\xe5\xbc\xde\xc0\x74\xfa\x51\x82\xb2\x01\x7a\x76\xdb\x64\xf1\x61\x75\x68\x51\x15\xf1\xfd\xb5\x29\xcc\xf8\xcb\x2f\x2b\x3e\x5b\x5c\x02\xac\xed\x23\xee\xc0\x7c\x42\xd4\xe4\xb7\x2b\x51\x48\x64\x92\xa7\xa8\x09\x79\x46\x17\x25\x2a\x17\xa7\x65\x55\x20\x88\x04\x7d\x1b\x3a\xf9\x77\x99\xa3\xec\xe2\x98\x14\xeb\xee\xc9\x4a\xc0\xc6\x7e\x2c\xdb\x17\xe1\xec\x55\x3c\x05\x7c\xe2\x76\x8b\x24\x40\xce\x8a\x34\x01\x30\x57\x3f\x1c\x07\x2c\xd3\x77\x79\x80\xe6\x0b\xa2\xef\x58\x33\xbd\x48\xea\x77\x87\x1d\x44\xed\x81\xfc\xa8\x1e\x53\xf7\x71\x90\x0a\xfb\x6a\x16\xc5\x1b\xd0\xe9\xc6\xae\x7e\x97\x06\xb9\xb5\x08\x8e\x6d\x73\x9d\x5c\x7d\x91\x99\x5e\xd4\xc1\x26\xf7\x59\xf3\xe2\x22\x83\xba\x5d\x0e\xd3\xe9\xa7\x69\x9c\x6f\x97\x3f\xc5\x0d\x02\x3d\x02\x08\xea\xbf\xc3\x7d\x20\x15\xfd\x3e\x31\x78\x2b\xef\x87\x13\xa1\x97\x87\xa8\x27\x53\x8e\xb2\xcc\xa8\xa3\x5e\x04\xd4\x16\xb2\xe2\x0f\xc7\x01\xe1\xf7\x21\xf5\x95\xd6\xd3\x54\xc4\x22\x71\xe9\x9e\x88\xdd\x63\xa2\xae\x6c\x65\xac\x39\x30\x7f\xa0\xb9\xb8\xb8\x3d\x80\x0f\x8f\xb5\x98\x66\x82\x04\xb2\x51\x17\x21\x62\x6c\x22\xbe\xd8\xbb\xe0\xf5\x6b\xc3\x8c\x6f\x5e\x64\x36\xe9\x15\x7d\x9b\x68\xd5\xbf\x56\x66\xef\x49\x1f\x73\x47\xf9\x2f\x85\xc9\xf8\xff\xe2\x45\xb8\x0f\xfc\xde\x03\x5d\x98\xe8\x58\x9d\x1a\x07\x0d\xda\xef\x8c\x49\x0f\xf8\x85\x36\x85\xd4\xbb\x27\x8d\xd7\xf6\x7b\x72\xde\xf2\x3e\xf0\xe9\x9b\x00\x9c\xe0\xe4\xaa\x70\x49\x7a\x3c\xd8\xde\xbd\xfa\xe1\xb3\x3a\xc6\x8a\x9f\x7f\x87\xd0\xb1\xb3\x13\x01\xd6\xa1\x3e\x7d\x55\x22\x04\xec\xd8\xdb\x40\x38\x61\x84\x65\x56\x50\xc5\x4e\x9c\xa4\xf1\xeb\xbf\xe5\xc5\x27\xe5\xb5\xa3\x76\xf2\xe2\x84\x58\x38\x4f\xb7\x48\x84\xea\x43\x98\x6d\xfc\xc8\x7d\xf1\xbc\xb0\x5e\xf7\x08\x02\xfb\x4c\xbb\xb1\x70\x68\x53\x47\x77\x50\xc8\x78\x30\xa6\x31\x9a\xf7\x6b\x64\x59\x86\xb1\x95\xc8\xa2\xe1\x09\x03\x95\x44\x4a\x4f\xa6\x02\xce\xfd\x07\xf6\xab\x7c\xc3\x4c\x18\x61\xfa\x23\x71\x0b\xe8\x05\x7f\x89\xed\x8c\x9b\xb8\x54\x17\x70\x42\xd6\xcf\x92\x7c\xc1\xa9\x16\x93\xc6\xca\x43\x40\x8e\xf4\x41\x8b\x7b\x5d\x83\x74\x39\x8a\xa3\x37\xad\x7a\x03\x34\xe3\xb4\xb4\x80\x97\xf1\x6e\x05\x5a\x3d\x76\x62\x17\x3d\xe3\x0c\xb9\x13\xa8\xa1\xdf\x38\xdf\x62\x80\xdb\x5a\x94\x4b\x79\x2b\x54\x0a\x4e\x88\xe1\x72\xc2\x68\x6e\x14\x37\x95\x72\xb3\x86\xb7\x2a\x7f\x4d\x7f\x78\x66\xaa\x0c\xf6\x8a\xcc\x81\x4a\xaf\xce\x47\xdb\x9e\x36\x83\x68\xd1\x88\x54\x28\x1d\x15\x51\x62\x63\xc0\x03\xeb\x8a\xbf\xc1\xec\x2c\x9b\x2c\x0b\x95\x13\x14\x0a\xee\x30\x13\xdc\x1d\xea\x1f\xdb\xd8\x23\xc3\x17\x02\xc6\x37\x70\x18\xd0\x35\xe4\xa3\x2c\xb3\x49\x57\x3b\xe4\x2e\x1f\xa5\xdc\xd4\xa7\xd3\x2b\x56\x9a\x6c\x85\x80\xcd\x10\x6c\x9c\x20\x98\xc2\x13\x58\xdb\xae\x1f\xe0\x99\x84\x6c\xbc\xa6\x6d\x0c\x6c\xd9\x4d\xf9\x8c\x1e\xd7\x31\xa4\xa5\x2b\x2b\x2e\x55\x86\x17\xbd\x43\xdc\x70\xd3\xc3\xc8\x7b\x17\xa4\x86\xdc\xe9\x37\x48\x74\xf6\x68\x65\x04\x86\x04\x68\xb3\xc8\x26\x5d\xa5\x43\xf5\x93\x7a\xfb\xfc\xd4\x5e\x4d\xa8\xf0\xff\x86\xc3\xe7\x19\x9a\x7e\x88\xf2\x34\x99\x23\x38\x37\x82\x3b\xec\x96\x3f\x26\xa6\xa9\x2b\x0c\xaa\x3f\x8e\x80\x05\xdb\xf8\x5a\x6b\x8b\xc9\x3e\x3c\xbf\xd0\x3c\x30\xff\xe7\x68\x46\xee\x4b\xc2\x65\x01\x11\x0c\x97\xb6\x09\x9b\xe2\xc6\x6c\x48\xdc\xec\xca\xb8\xd2\x0b\x2e\x0d\x0c\xe2\x83\x27\x26\x34\x3a\x74\x82\x4a\x52\x6f\xcb\x83\xf1\x42\xb0\xdf\xfa\xa6\x7e\xd3\x35\x8d\x77\x1c\xd7\x3e\xec\x26\xaa\x97\xf7\xc7\x24\x10\x70\x89\x26\x33\x8e\x03\xe3\x89\x97\x08\xf5\x71\x07\xfe\x91\xc7\x80\x20\xf3\x18\xaa\xbd\x68\x1d\xde\x85\xa1\x47\xc5\xfc\x0e\xd5\xc4\x54\xb6\x5b\x81\x23\xe3\x60\x77\x6f\x53\x7f\x7f\x79\xb4\x11\x25\xbd\xdd\x0d\x2f\x9f\x03\x1a\x46\xad\x2a\xc3\x04\x22\x62\x3b\x2f\xcf\x0f\x2f\xeb\x42\x55\xf5\xa3\xfc\x4d\xc7\x73\x5c\x01\x62\xc9\x5d\x7a\x45\xb5\x03\xf3\x3e\xa0\x21\x81\xb4\x87\x54\xe8\xc8\xad\x63\x55\x05\x9a\x13\x48\xc2\x0a\x29\x04\x3c\xc4\xcf\x5a\x41\x66\x2a\x1e\x8c\x8a\x7e\x23\x04\xed\x9f\x32\xba\xe9\x53\xc6\x32\x14\xa6\x18\xe5\xb3\x15\x40\xbf\x6f\x47\x3d\xa6\x5a\xdb\x19\xfc\x14\x2e\xf6\x7e\x2d\x45\x51\x9a\x15\x7d\xe9\x4b\x61\xa5\xdc\xa3\x79\xe2\x8b\x15\x2f\x1c\xda\x70\x27\x6b\x98\xc9\xbe\xd1\x2c\x1d\x08\x96\x86\xf6\x67\x51\xd6\xd7\x2c\x07\xed\x2a\x5c\xed\x59\x26\xab\xee\x65\x02\xfe\xf3\xb5\xc8\xcf\x5b\xa1\x98\xf9\xf9\x38\xe8\x51\x76\x46\x31\x46\x30\xf0\x7e\x40\xbf\x86\xd4\xe2\x9e\xb8\x78\x44\xc2\x01\xb8\x5e\xa4\xb1\xa8\xab\xa8\x82\xe6\xcf\x9e\x6f\x13\x79\xf3\xae\x49\xf0\x4f\xe8\xcb\x3b\x66\x86\xf2\x36\xbd\xbe\x5f\x20\x17\xfd\x10\x2b\x08\x6b\xf0\xeb\xed\x2d\x13\xa7\x9e\x04\x60\x1c\x3a\xab\xb3\x52\x0f\xc2\x92\xdb\x33\xf1\x80\x98\x34\x8e\x8c\x1f\x3d\xc4\xbe\x39\xcd\xdc\x31\xcc\x91\xe8\xb8\xbc\xf3\x3d\x61\x36\x00\xa2\x71\x28\x89\xbe\x8b\x8b\x42\xf4\xf6\x1e\x1e\xb1\x23\xcb\x2c\xef\xcf\xf7\xe7\xc3\xe8\xca\xef\x62\x4d\xe9\xe4\x09\xa9\x2c\xbe\x2b\x39\x25\x7a\xb3\x4a\xef\xe4\x4c\x0f\x0d\xc0\x29\x0d\xa3\xab\x7c\x4f\x4f\x88\xbc\xde\xec\x65\xe9\xba\x2c\x62\x54\x3f\x4e\x23\xf9\xd6\x93\x29\xb9\xc3\xc5\xc5\x66\x2f\x8b\xec\x9a\x4e\x9e\x7a\x42\x8a\x2b\x15\x76\xed\x3a\xb1\xad\x81\x89\xed\x0c\x2d\xef\x9f\xb7\x78\x82\x2f\xcc\xc7\xbe\x4b\xdb\xf2\xd5\x85\x5f\x6f\x10\xa3\xc1\x2d\x26\x2e\xb8\xd5\xda\xe3\xad\xfa\xb2\x19\xcc\x4a\xf2\xed\x69\xc5\xbf\xf5\x4d\x7d\xdf\x8f\x08\x7d\xff\x31\x1e\x26\x96\xd4\xb1\x2a\xcd\x8a\xcd\x95\x80\xd0\xcd\xf7\xcb\xfd\x78\xbe\x00\xdf\xfe\x3c\xc9\x2f\xff\x52\xeb\x29\x9a\x23\x58\x1b\xcd\x34\x02\x77\x71\x55\x8e\x24\xe0\x20\x1e\x4d\x45\x74\xaf\x34\xd3\xe5\xdc\x66\x6b\x1a\x05\xc2\xee\x3e\xd1\xa6\xba\xf0\x13\x93\xa7\x48\x0e\x2d\xb3\xbb\x83\xcb\x7a\x24\xb6\xda\x15\x0a\xc3\x94\xbf\x62\x59\xdd\xd8\x41\xf9\x82\xe1\x43\xaf\x31\x50\xf2\x3c\xf2\x1c\x3d\x19\x53\xcd\x42\xa5\xb1\x1d\x2d\x77\xe8\xb1\x37\x26\xfc\xdc\xfa\x26\xae\x04\x76\xda\x02\x74\x74\xb3\x5b\x17\x9c\x88\x6c\x46\x5d\xad\x77\x21\xb3\xfc\x88\xea\xab\x1f\x11\xaa\xbd\x93\x0e\xec\x6e\xe2\xa5\xff\x72\xdc\xf8\x4d\xc7\xd1\xf1\x05\xbb\x2e\x5c\x29\x42\xf0\x13\x3c\x01\x7d\xa7\x45\xf3\x6c\xb2\x77\x9c\x48\x2a\x2e\x59\xbf\xb7\x45\xe4\x1f\x5f\x8c\x79\x9a\x3a\x68\xb5\x75\x67\x82\xa1\x41\xff\x06\x81\xd4\xa9\x6a\xa5\x21\x04\x1a\xcb\x59\xba\x6a\xb3\x1d\xe5\xa7\xb0\xae\xaf\x23\x8d\x73\xf1\x36\x55\x03\xd0\xaa\xf2\x1d\x45\x4f\x4f\x7a\x0a\xc3\xc8\x48\x98\x54\x25\xd4\x89\xf3\x3d\x47\x0d\xa0\xf5\x64\xdd\x64\xdd\x1d\xe1\xfe\x74\x52\xd6\x83\x64\x3d\x60\xb6\x41\x12\x75\xf7\xe1\xcb\x1d\xb0\x4f\x8c\x91\x23\xb1\xf1\x58\xc6\xef\xbd\xe8\x2d\xe1\x7a\xd4\x95\x39\x5e\xf4\x8c\x5c\xaa\x12\x50\x97\x77\x88\x61\xe4\xec\xf8\x79\x62\x64\x5a\xb1\x49\xd7\xb8\xe9\x54\x37\x87\x46\xd4\x17\x9f\xd6\x11\xd6\x0f\xcc\x4a\x94\xe6\x51\x83\x48\xd2\xaa\x4c\x4b\x5b\x4d\x8c\xc0\xea\xac\xf6\xf7\xb1\xd4\x1f\xf1\xe0\xc1\xd9\x31\xa1\x95\x15\x5b\x81\x9b\xbf\x49\x08\xc5\x4e\x6a\x3a\x7d\x2b\xea\xda\x4b\x61\x88\x78\xc9\xd5\x91\xb5\xd6\xae\xff\xd0\x0a\x92\x10\x67\xb1\x77\x5c\x13\x6b\x6b\x6f\xa4\xf4\xdc\xd6\xac\x5a\x4f\x2e\xaf\x80\x73\x79\x66\x0e\x7c\x1e\xa6\xe6\x7a\x1b\x83\xc4\xe4\x45\xd4\xc9\x2b\x20\xf6\xf2\x3a\x5c\xaf\x3c\xf4\x3e\x1d\x6e\x35\xb4\x59\x51\x18\x70\xe4\x70\xf5\x73\x29\x9e\x68\xfc\xa0\xcf\xac\xc2\x08\xda\xdb\x4c\xbb\x78\x81\xe2\xf3\x61\x96\xae\x45\x49\xc7\x92\x52\xfd\x8f\xf0\xb7\x7a\x52\x07\x21\x59\xb3\x59\xb4\xb2\x41\x08\x34\x15\x40\x71\xb3\x19\xd3\xa0\x95\xfd\xcd\x7c\x94\xb8\x9a\x23\xf2\xec\x27\xd0\x47\xc6\x0a\x7d\x97\x79\xee\x1f\xd6\xcc\x00\xec\x57\xa8\x10\xec\x0c\x0a\x95\x5f\xca\xb2\xd6\xe3\x3a\x01\xf4\xae\x5d\xb3\x71\x3a\x6c\x10\x4d\x1c\x24\xf3\x9c\x7c\xd8\x33\x34\xb3\x97\x24\x3a\xb4\x87\x54\xf7\xa7\xad\x80\x91\xfb\x29\xee\x08\x25\x94\xa4\xb0\x59\xa2\x18\x37\x9d\x1e\x83\xd3\xde\x84\xd9\xf1\x93\x30\xa1\xb0\x7f\x94\xb0\x46\x1f\x0a\xc2\x00\xd1\xe1\xf7\x7d\xac\x94\xfd\x4a\xf6\x2b\xc4\x60\xfe\x8f\xf1\x38\xf4\x64\x2a\x47\x92\x17\xde\x49\x07\x83\x81\xa2\x56\xe0\xc9\x50\x41\xd4\x63\xda\x02\xfd\xa8\xd7\xb7\x79\x31\x17\x66\xf1\xbe\x87\xf7\xa5\xa0\x39\x6c\x2a\x3c\xc7\x5b\xf4\x4c\x95\x03\xd1\xc5\xe6\x54\x91\x2b\x32\x33\xca\x95\xd5\xde\x4f\xe4\xfa\xa0\xfc\x89\x76\xe0\x4e\xba\xc6\xa9\x5a\x16\xbd\xa9\x31\x86\x57\x4b\x2f\xbf\x41\x4f\xa6\x94\xc0\x0f\xcf\x37\x07\x51\x2e\x0f\x7c\x98\xd9\xa2\xaa\xab\x80\xa6\x84\x9b\x66\x76\x9b\x27\xb7\x66\x39\x75\xfc\xf1\xca\xbe\x26\xc1\xa9\x63\x62\x9b\x0e\x9c\x5f\x6f\xf6\x8d\x7e\x33\x16\xe6\x8d\x31\x31\xe0\xde\x68\x85\xa1\xf9\xd8\x8c\xca\xbc\xdd\x2a\x99\x20\x32\x9b\x2f\x25\xb3\xd3\xe3\x9a\x48\x20\xef\xd8\xc4\x64\x51\x2a\xb5\x19\xc7\x3c\x51\x7e\xdc\x01\x28\x08\x61\x73\xa1\x06\x3b\xf0\x7a\x69\x67\x8a\xbe\x96\x0b\x3c\x76\xff\x80\x77\x0d\x53\x98\xa2\x32\x79\x05\xbf\x98\x7b\x62\x6e\x93\x36\xbc\x4a\xd2\xf9\x40\x3c\x1c\x75\x56\x55\xfb\xcb\x3b\xfc\xf2\x33\xce\xe1\xbf\x44\x58\x12\xbb\x66\xb2\x6e\x62\xba\x6f\x5a\x61\xca\x84\x83\x06\x57\xa3\x1e\x93\x65\xc9\x87\x26\x49\xaa\x1c\x3b\x57\x78\x64\xf3\x0a\x15\x83\xa3\x81\x10\xeb\xf0\x84\x37\x29\x9e\x4e\x13\xc3\x2f\x1c\x02\x81\x48\xd7\x6c\xe8\xa7\x3c\x7a\xc8\xc7\xe6\xf7\xc7\x7b\x88\xd1\xc4\x65\x83\xf0\x23\xca\xfa\xed\xa0\x49\x14\x91\x9f\x24\x24\x46\xde\x8f\x56\x1c\x3d\x81\xc7\x97\x7a\x33\x79\xa1\xce\xc9\xc5\x26\x05\x2f\x9c\x9f\xa5\xba\x49\xd2\x80\xe7\x79\xd0\xfc\x8b\x29\x2b\xb7\xb4\xd4\x1c\xa6\xeb\xd6\x17\x3e\x9c\xed\x27\xfa\xea\x2b\x15\x04\x76\x2f\x31\x89\x8d\xe3\x48\x96\xa3\x6b\x16\x34\x3c\x05\xc8\xc5\xaf\x24\x3b\x5d\x89\xd6\x54\x49\xc5\x4d\xc0\x87\x04\xf4\x91\xe4\xf7\x70\xa4\xdb\xdb\xcf\x6c\xe9\x82\xe2\x69\x28\xdb\x60\x2b\x84\x4d\x9f\xfa\x05\x15\x5b\xd3\x1b\xa9\x61\x84\x99\x73\xb4\xe8\x15\xb8\x17\x0b\x49\xa3\xba\x0b\x48\x99\xfb\xff\x81\x20\x69\xd9\x2c\x6f\xcc\x91\xf2\xef\xad\xca\x50\xcb\x25\x1a\x7a\xbc\x4c\xb3\x7f\xba\xb1\xf4\x8f\x08\xf9\xbe\x12\xe5\x1d\x13\x4b\x39\x1e\x83\x38\xe0\x58\xc7\x4b\x99\x01\xcc\x0c\x35\xd8\x13\x54\xe9\x98\x6d\x07\x0d\x3d\x70\x3f\xf9\x1a\x41\x00\x13\xf6\x4d\xd2\x8d\x3a\x66\x38\x54\xb2\x1a\xc7\xea\x15\xe6\x2d\xee\x53\xf3\xb2\x6b\x0b\x9b\xcd\x06\xb8\xc9\xb6\x36\x61\xa4\x60\x4f\xf5\x1f\x26\x01\x3e\x7d\xc5\xc3\x43\x72\x3b\x88\x4c\x92\x8c\x2a\x48\xeb\x2b\x44\xb9\xf0\xd5\xfc\x19\xeb\x26\x2e\x6c\x36\x43\x8a\xbe\x58\x00\x28\x8f\xdc\x64\x61\xb7\x46\x7b\x0f\x4f\x98\x63\x61\xfa\x91\xc2\x20\x42\x7d\x6e\x6a\x35\x1f\x98\x2f\xa3\xb7\xc2\x73\x29\x23\x25\xb9\xca\xc9\xca\x55\x7a\xcb\x79\x62\x86\xb3\xa5\x29\x75\x37\x42\xab\xe4\x42\xe5\xae\x4a\x73\xee\x44\xd5\xbd\xb8\x44\x3a\x4a\x8a\xd8\x4d\x31\x62\xea\xeb\x0e\x71\x89\xdc\x61\xf9\xe9\x34\x29\x64\xc0\xe4\xc0\xbc\x23\x26\x9e\x41\x47\x56\x4f\xa6\xd0\x0e\x7b\xf7\x36\x97\x6d\x5f\xd4\xb0\x3d\x0c\x6e\xa6\x1d\x04\xa0\x66\x26\x01\x71\xb7\x3c\xca\x45\xd3\xf7\x05\x79\x99\x58\xf2\xd7\xc6\x24\x20\xf8\x77\x5b\x04\x45\x7d\x7a\x42\xe4\x7a\xbb\x51\x20\x41\x15\xe9\x0e\xa9\x67\xdd\x95\xb8\x54\xd9\xbe\x24\x96\xc0\x8e\xd1\x85\x08\xe3\xb2\x13\x53\x6b\xa8\x45\x1c\x45\x9b\xdf\x0f\x47\x94\x2f\x14\x85\xc5\x9d\x32\x67\x84\x63\x38\x7b\xbc\x0b\x30\x68\x79\xcd\xa2\xbd\x7b\x35\xb0\xbe\xd3\x62\xc5\xfb\x3f\x46\x8e\x81\xd8\x79\x28\xdd\x44\x44\x14\xa7\x3d\x85\xc0\x28\x2e\x32\xb3\x16\xa5\xb1\x55\x12\x4a\xdc\xf6\x67\xb2\x4f\x55\x5d\x9a\x00\x05\x6f\x11\x7a\x6f\x25\x4b\x5d\x56\x81\x5d\xa7\x30\x0b\x3d\xa1\x78\x3a\x4f\xe3\xa8\x6b\xb2\xa8\xd8\x90\x21\x10\xf8\xea\x07\x28\xbf\xea\x89\x3c\x3f\xe7\x96\x42\x67\xf1\x0c\xd3\xd8\xfd\x11\x71\x05\x2e\x9b\xdc\xee\x22\x86\xb3\xe3\xe3\x50\x99\x3d\x26\xb5\x19\x87\x99\x22\xc5\x46\x50\x9c\x28\x49\xd6\xb8\xf1\xda\xfe\xa0\x24\x51\x5e\x38\x02\x38\x00\xf8\x1c\xca\x4a\x6e\x4f\xff\xc1\x6b\x92\xf7\xd3\xa1\x95\x0e\xa7\x4b\xd0\x7f\x11\xd1\xb1\x2a\x9d\xc9\x4a\xc6\xea\x9c\x03\xbc\x0c\x2f\x70\xfb\x84\x10\xf6\x97\x09\xe0\x76\x85\x8a\x58\x32\xce\x64\xe2\x78\x43\xea\x95\x2a\x7c\x8a\x74\xd5\xab\xa0\x06\x91\x67\xf9\x29\x27\xf8\xec\xf5\x22\xec\x20\x5f\x4e\x57\xe1\x6a\x9d\xae\x76\x28\xa8\xde\xa6\xc6\x7d\x37\xca\x57\xe7\xca\xef\x43\xb1\x7b\x3b\x8c\x9a\x8e\xb1\x73\x4f\x13\x02\x77\x2a\xec\x80\xc7\xe5\x58\xfd\x6a\xe4\x21\xa3\x64\x25\xcd\x06\x6a\xeb\x98\x86\xc1\x31\xb5\x30\xff\x43\x7f\x94\x80\xd0\x17\xeb\xf4\x6d\xca\xf7\xde\x0e\x73\x58\x99\xed\x46\x85\x30\x8f\x34\xc2\x95\xdc\x18\x53\xc3\xf0\x06\xb9\x8d\x4e\x3a\xca\x8a\x7c\x27\xc5\x53\x0d\x6c\x57\xf8\x84\x13\xe3\x30\x5a\x76\x92\xa3\xf7\x6b\xe3\x30\x0c\x74\x5d\xf7\x12\x56\xe5\xf7\xc7\x01\xf5\x5f\xc9\x65\xdf\x0b\x69\x81\x49\x50\xa7\x80\x23\x38\xc6\xac\x07\xcf\x90\x08\xce\x93\x93\x70\xa1\xa3\xac\x17\x25\xbd\xd9\x50\xd0\xfd\x7b\xb2\xfa\xc1\x7c\xf0\x29\x0d\xd1\x5c\x40\xdc\x83\x32\xc5\xa7\x75\x8d\x21\xb3\x9c\x8e\x8a\xb9\x0a\x55\xdf\xbe\x25\xcf\xd1\x1c\x60\x26\x4f\xb5\x83\x83\x82\xaa\xd7\xe6\x55\xaf\xae\x3e\x34\x59\x1c\x19\xa1\x65\x93\xdf\x83\x21\xd9\xa6\x4c\x41\xcc\x01\xa8\x5a\x1e\xe3\xb0\x7a\x78\xbc\x0a\x9d\xa4\xbc\x1f\x0d\xc1\xaa\x84\x82\xc5\x27\xfa\x48\xf5\x8c\xb2\x8d\x6c\x34\x48\xb3\x1c\x81\x03\x4a\xe8\xca\xbb\x89\xe0\x68\x1b\x78\x93\xf1\x28\x30\x6d\xeb\x49\x7b\xca\xfd\xad\xff\x50\x83\x95\x3d\xd8\x34\x2b\x2b\xb6\x53\xf8\x9e\x23\x36\xe9\x47\x92\x59\xea\xf1\x38\x80\x24\x6c\xd2\x37\x9e\x56\xfc\xf0\x7c\x60\xdd\xf0\xe3\x87\xb7\x30\xd9\xe0\xb6\x8f\x19\x0e\xd3\x48\x26\xc0\xa9\xf9\x29\x85\x2f\xd7\x08\xad\xbb\xa6\x4e\x9a\xac\x44\xd9\xc0\x76\x67\x4a\xdb\xed\x4b\x86\x81\x88\xef\x36\x2f\xb1\x46\x3b\x4c\xb6\xc7\xeb\x66\xb4\x6a\x2d\x8d\x3b\x7e\x8e\x05\xac\x27\xd4\xcc\x5d\x89\x32\x21\xd4\xd2\x01\xdc\xda\x00\x75\x6b\x1c\xf0\xf2\xcb\xa5\x69\x5d\xb5\x4e\x31\x1b\x2d\xb7\x2f\xe5\x89\xeb\xf1\x14\x68\x67\x69\x69\x7f\xd3\x8e\xb2\xb4\x9b\xc6\xb1\xc9\xf2\x8a\xf2\xc5\x05\xc6\xad\x5c\xa8\x91\x77\xdc\xdf\xec\x97\x1e\xb8\x41\xb9\xe5\x19\x5d\x25\x7a\x46\x00\xf9\xc4\x16\x32\x02\x02\x9c\xa1\x17\x75\xd9\xb7\xf4\x95\xa2\x2e\xe5\xc3\xce\xfb\x69\x56\xcc\x84\x88\xf0\x0f\x5a\x5b\xc7\x5a\x95\x99\x64\x0a\x5c\xbf\x77\xa1\x99\x0b\xef\x5e\xf9\x96\xdc\x3c\x6d\xf9\x61\xd4\xfa\xa1\x72\xeb\x34\x1c\x5d\x48\xdd\xe9\x5b\x9b\x29\x47\x05\x2c\xe9\x83\x16\xab\x95\x69\x69\x1a\xed\xb1\x8f\x25\x40\x72\x43\x4e\x7f\xa9\xe6\xf1\x48\x46\xdd\x49\xe3\xd8\xf6\x22\x19\xba\x5e\x5c\x0c\xb8\x36\xaa\x8c\x6d\xcd\x95\x0f\xbd\x2a\x4a\xe3\x8d\x29\xb1\x61\x27\x9a\xed\xb2\xf0\x74\x54\xc4\x78\x05\x3c\xf5\xc9\xe3\xa0\x9e\x7e\xdb\x1a\xcf\xc3\xea\x4a\xfd\xb2\xa7\xf4\xa4\x15\xa6\x34\xcb\x2f\x2d\xe3\xeb\xbc\x2f\xd9\x15\x82\x87\x2f\xf0\xd7\x2e\xa9\x0d\x03\x1f\xb7\xa6\x2a\x76\x0b\x87\xca\x88\xdb\x44\x3e\x20\x75\x95\xd7\x00\xdd\xb9\x40\x18\xc8\x6f\xa7\x71\x31\x17\x78\x24\x51\x9f\xc6\xdb\x6e\xb4\x03\x84\xf6\x89\x49\xc0\xf5\x29\x4b\x9e\x8e\x28\x8e\x99\x33\x4b\x74\xca\x05\x5d\x4e\xf8\xab\xf2\x93\x7a\x3c\x66\x92\xdb\xbc\x30\x15\xda\x67\x3c\x64\xf7\x56\x42\xa3\x51\xe7\xf9\x1d\x86\xdc\x3d\xd3\x7c\x98\xba\x9b\xdc\xef\x0b\xdc\x04\x6d\xbd\x40\x39\xc8\x72\x94\xf4\x2c\x5e\x13\x5c\xd4\xbb\x20\x45\xd4\x13\x6a\x79\x9a\x35\x9b\x8c\x80\x30\x61\xa2\x15\x0d\x0b\x71\xe7\xf0\x31\x57\x89\x05\xaf\x0c\x86\x7b\x3b\xb7\x88\x07\x1e\x0c\x7d\x74\xcf\xf1\x75\x9b\xd3\x38\x18\x14\xa7\x04\x22\xa1\xb9\x4b\xf0\xe4\xcd\x21\x6f\xbb\x87\x18\x06\x79\xca\xf1\xa9\xc6\xd6\xd2\x92\xab\x9c\x0c\x0c\x66\xb9\x75\x00\x9f\x74\x7d\xde\xf5\x51\x6b\x66\xf2\xd5\x34\x4e\xa2\xd5\x74\x8d\xf4\xca\xb5\x3b\xed\x56\x47\xcd\x92\xca\x6c\xb9\x25\xb4\x3a\x83\xce\x28\xa0\xbb\x7a\x3c\x45\x04\x2e\xe3\x70\xb2\x1a\xf2\x41\x85\xff\xb4\xca\x0f\xb8\xcb\x0d\xc5\x8d\xb8\x7e\x22\x4b\xc6\xd5\x52\xb6\x26\xf7\x07\xf6\x37\x97\x6d\x1c\xd9\x35\xef\x98\x54\x0a\x90\x42\x3a\x96\xff\xc9\x87\xe9\xaa\x96\xe3\x1c\xcb\x74\x80\xeb\x9f\xae\x04\x54\xb9\x2d\x76\x31\x50\x19\x59\x00\x16\xc9\x27\x12\x1b\xc3\xfa\xef\x68\xd3\xba\x55\x6e\x22\xa4\x40\xb3\x93\x20\x07\x72\x4d\xde\xb5\x52\x47\xb7\x2a\x53\x77\x9e\xff\x82\x79\xb5\xec\x60\x63\x86\xb8\xdd\x21\xa6\x8c\x88\x08\x1f\xc7\x7a\x38\x49\xcd\xea\x81\x48\x9e\xba\xc5\x71\x8d\x9a\x4b\xb7\x80\x4d\x53\xca\xac\x16\xc9\xe8\x6c\x9f\x50\x5a\x0f\xb6\x3e\x18\xe8\x1d\x92\xfb\x63\x11\xcc\x20\xfc\x56\x08\x1b\xc1\x76\xb6\xa1\x72\x80\xd8\x76\x07\xa2\x5e\x94\x43\x67\xdb\xa5\xad\x77\xb0\x72\x59\xb3\x1e\xe3\xe1\x7d\xce\xd5\x31\xf1\xa3\x3c\x31\x09\x39\x9e\x66\xe3\x2e\x61\x0b\xc5\x06\x6b\xb2\xa2\x3f\x48\xf1\xb6\x4b\xe7\x85\x8c\xe6\x9a\x3c\x44\x3d\xe6\xac\xb7\x6f\xb2\xc2\xf1\xc9\xbb\xa0\x82\x47\xc8\x64\x6d\x31\xee\xc0\x45\x1b\x81\x7b\x23\x1d\xd8\x9e\xa9\x30\x9a\x68\x45\xcf\x91\x98\xd6\x08\xa6\xf5\x4d\xd6\x9d\x25\xec\x05\x15\x43\xae\xa3\x47\xe5\x1b\xff\x5e\x43\xe4\x7d\xd2\x9f\xeb\x2a\xc5\x1f\x4a\x49\x0f\x61\x3f\x30\x84\xfa\x11\x35\xfb\xb7\xb5\xb7\x6e\xce\xd7\x16\x0e\x09\xcd\xb7\xcd\x5c\xdf\x01\xe8\xde\x4b\x2c\xba\x79\x85\x27\x8e\x36\xeb\x26\x8e\xf2\xdf\x1e\x59\xfb\xa6\x25\x6a\xc2\xcb\x52\x50\x76\x8c\xa9\xcf\xd3\xb4\xfd\xca\x8a\xcd\x6c\x52\x88\xa2\x18\xb2\xea\x9d\x6d\x79\x35\xac\x2f\x80\x68\xec\x7e\x25\x2d\x68\x78\xad\xae\x27\xb0\xbe\x70\x83\xc7\xa4\x00\xc5\x8d\x0b\xbf\x6c\x43\x87\xe6\x4a\xa5\xed\x9d\x8e\x56\x67\x1a\xbf\xb9\xa0\xb7\x87\x31\x20\x24\x22\xaa\x0b\xe7\x10\xf9\x5b\x6b\x43\x87\x5e\x6d\x9a\xe1\x30\x4b\x8f\x08\x75\x79\x23\xe0\x12\x6e\xcb\x55\x3b\xd1\xe6\xc0\xdf\x6f\x63\x89\x69\x73\x38\x53\x6d\xfb\xb7\x68\xcc\xf2\x77\x59\x42\xb7\x1f\x13\xc4\xe4\x04\x77\x7b\x4e\x50\x8f\x75\xdd\x64\x83\x58\x59\x92\xeb\x68\xd9\xa7\x99\xa8\x16\x9a\x26\xcf\xd3\x4e\x24\x74\xeb\xdc\xef\xff\x98\xc9\xfd\x3f\x26\x47\x56\xa0\xe0\x2d\xfb\x90\x65\xc4\xf4\xd8\xc3\x81\x06\x26\x4f\x93\x0c\x48\x41\x54\x11\x1f\xc8\xb5\xe8\xf1\x98\xea\x62\x36\x9b\x0b\xa3\x71\x17\xc6\x15\x95\x70\x5f\x72\x57\xd8\x17\x1e\xe4\x09\x92\x2b\x7f\x4c\x2d\xf2\x81\x89\xf1\xa0\x60\x4f\xcf\x52\xa7\xe0\x2c\xf1\x65\x66\xa6\x1b\x75\x4c\x3c\x2b\x25\x2c\x0c\xa1\xfc\x10\xd4\xa1\x7a\x82\x1c\x06\xb9\xe5\x4f\xb0\xcd\xf4\xc4\x7b\x96\xb4\xbf\xbd\xd2\x01\xf7\x29\xf0\x03\xd8\x28\x87\xf8\x6c\x7c\xeb\x9b\x58\xcc\xfb\x5f\x42\x4d\x02\x95\xab\xcb\xac\x06\x7b\x89\x74\xc3\x21\x6c\xb2\x70\xc8\xa9\x79\xb6\x42\xf1\xe3\x84\x4f\x0a\x4d\xb6\x1c\x15\x99\x71\x83\x8e\xca\xc1\x34\x0e\x80\xb1\xd3\x53\xe4\x02\xae\x78\xd9\x49\x93\x22\x33\x19\x18\x6d\x5c\x18\x1a\xe6\x9b\xa6\x09\xdf\xf7\x2d\x35\x87\x91\xed\xfc\xfb\xfa\x0b\xd4\x0f\xb5\x36\x8b\x6d\x9e\x0b\x65\x30\x93\xb5\x02\xb7\x81\x39\x4a\xb8\xb1\xe3\xe3\xb0\x23\xdf\x9f\xca\xc9\x0e\xcf\xbf\xee\x85\x00\x74\x8e\x15\x7b\x12\x43\x71\xf0\x13\x2a\xf2\xe8\xd0\x3c\x75\x04\x75\x9d\x74\x30\x34\x1d\x60\x40\x71\x0d\x0f\x09\x67\x73\x85\xdb\xee\xe7\x38\x8a\xcc\x46\x5d\x3b\x13\xe2\xab\x27\xda\x41\xdb\xe7\x63\xde\x7e\xf7\xb9\x04\x66\x6d\xb6\x8b\xc1\x1f\x58\xbf\xc8\x25\x6e\x60\x59\x60\x5e\xa2\xd1\x0e\x03\x39\x0a\xa5\x74\xf3\x22\x0d\xcf\x59\xf7\xae\x3c\x38\xe2\xd8\x75\xa0\x47\xed\x83\x20\x15\x0d\x34\x3d\x99\xed\xa4\xbd\xc4\x29\x63\x39\xaa\x12\x1a\x1d\xba\x05\xf3\xe2\x92\x1e\x57\x25\xe9\xc4\xa3\xe5\x59\x6a\x68\xa2\x9a\x00\xc0\xd3\x03\x62\x13\xd5\x68\x0e\xdd\xf9\xff\xcb\x17\xd2\xbb\xb6\x70\xbc\x2d\x72\x23\x9e\xbf\x2f\x14\xe0\xee\xd6\xb0\x5a\x36\x73\x3b\x34\x9e\xb4\x0a\x0e\xf7\x0b\x22\x1d\xfb\xc2\xff\x40\x34\x80\x88\xf1\x1a\x86\xaa\xe0\xe3\xaf\xb6\x2a\x1a\x97\xfe\x31\xff\x48\x02\x0f\xa0\x75\xdf\xa2\x1c\xa2\xd3\xcf\xd2\x41\x9a\x8b\x62\xd3\x81\xaf\x1a\x99\x08\xe5\xd1\x81\x4d\x13\xbb\x5d\x9c\x0f\xea\x86\x17\x68\x7c\xfa\x92\x54\x2a\xf5\xff\x4b\x10\xe2\x84\x37\x82\x15\xb8\x24\xfb\xd6\x69\x70\x84\xf1\x07\xd7\xfa\x7e\x32\x00\x1d\xa0\x78\xe6\x9a\x02\x81\x8b\xe2\x24\x61\x2e\x15\x67\xa1\xda\x2d\xcc\x54\xfa\x10\x91\x8f\x52\xb8\x31\x8f\xbb\x4e\xb4\x39\xd2\x69\xee\xfa\x3c\x96\xa7\x07\x4b\xc4\xf9\xc6\xea\x46\x1c\x1d\x69\x84\x5e\xc6\x6d\xd6\xff\xba\x4d\x20\x16\x7b\x44\xf8\xcf\xd7\x40\xf9\xe3\x1b\xe1\xd4\x15\x27\x09\x05\x8c\x9b\x38\x20\xa9\xab\xd9\xda\x3c\x37\x1b\xcc\x85\x27\x7f\xe5\x66\xcf\x9e\xa6\xc2\x95\x49\x3a\x54\x5d\x79\xab\x52\xfd\x0e\xa6\x27\xcd\x22\x1d\xbc\xf1\xe4\x18\xb0\x15\x7a\x3c\xf1\x09\x5e\x7f\x54\x14\x31\xf2\x76\xac\x4f\x94\x10\xf4\xd8\x0f\x97\x76\xa3\x5c\x66\x2f\xf3\x39\x66\x96\x18\x13\xe7\x00\xf3\x6a\x61\x17\x63\xe2\x70\xb7\x90\x59\xb8\x09\xd7\xe0\xc6\x87\x45\x7f\x66\x4a\xf7\x00\x89\xe9\x47\x14\xc8\x9f\xa8\x03\x63\x0c\x63\x01\xc0\xc8\x55\x7b\x89\xc0\xa5\xa0\x0a\x58\xc7\xa9\xa0\x41\x6b\x99\xcc\x2e\x79\x81\x3d\x6d\x0a\xe8\xc9\xd6\x69\x9b\xf2\x63\x07\xf6\xcf\xc9\xcd\xf8\x41\x13\x59\x39\x1e\x28\x14\x58\x31\xde\x69\x85\x06\xc8\xf7\x61\x1d\xd4\x44\x4e\x95\x7d\x0e\xbd\xda\xcc\x64\xc4\xbe\x11\x26\x2b\x3f\x44\x86\xe3\xa6\x82\x6b\xd0\xbd\xc2\x3a\xf3\x95\xc3\x06\x35\x6c\x20\x66\x25\x36\x45\x7a\x24\x4a\xc4\x54\x20\x4e\x56\x4a\x18\x27\x58\xd8\xd8\xc2\xe4\x06\x0f\x14\x04\xc0\x44\x58\x0b\xee\x51\x39\xd6\x69\x28\xea\xc2\x54\x0c\x05\xc1\x1a\xb3\x1c\x47\x79\x5f\xc9\x7e\xc8\xf4\x2e\x78\x9a\xa8\xad\xb1\xfd\xe2\x62\x33\x4e\xd7\x95\x93\x02\x79\xa1\x2a\x42\x23\x92\x65\x8a\x80\x07\x54\x71\x73\x98\x5a\xd1\x3a\x46\x00\xac\x52\x1c\x8e\x68\x56\xc2\x15\x47\x99\x15\xac\xe4\x03\xbc\x20\x27\x9b\xc5\xf3\x8b\x37\x98\xa0\xe1\x38\xe3\xd6\x2a\xbc\xd0\xfd\xa8\xd8\x49\xa2\xc5\xaa\x33\xa6\x84\x7d\xe3\x30\x65\x81\x80\x9c\x14\xaf\x96\xfc\x6a\x0b\x45\xef\x6b\xa4\x5d\xb9\x39\x0e\xd3\x3a\x97\x7c\x04\x99\xd9\x74\x68\x9d\x6e\x8c\xe3\x5c\x97\xdf\x77\x64\xec\x2f\xd0\x98\x4c\x5e\x98\x51\x66\xb4\x48\xec\x6a\xec\x34\xb9\x3b\x2d\x5d\x2a\xb0\xaa\x3e\x64\x15\x91\xf0\xc3\x06\x7f\x87\x11\xfe\xdf\x99\xa2\xcd\x79\xf9\xe5\x66\x62\x0b\xd2\xc3\x84\x04\xb7\xa3\x25\xda\xba\xf0\x0f\xcc\x2b\xe7\x71\x83\x3a\xb7\xca\x6e\xab\x27\xa4\xc0\xb2\x12\x1b\x99\x9a\x29\x7d\x14\x4c\x1c\x04\xd3\xf4\x98\x05\x51\x4c\x94\xdb\xdd\xf2\xae\x51\xad\x3e\x25\xf2\x11\xa4\x42\xed\xa1\xc8\x8c\xe7\x44\x0f\x02\x7e\xe4\x0f\x90\xbe\xeb\xc7\x11\x29\xb8\x10\xa7\xfc\x51\xfd\x2b\x79\xb3\x1e\xf7\xba\x14\xe6\x34\x19\x25\x18\xc7\x91\xce\x28\x11\x57\xd6\x82\x8f\x16\x39\xc7\x8a\x47\xf6\xa9\xf2\x25\xc1\x91\xff\x98\x00\xa6\x3f\x18\x87\x42\x83\x4a\xd0\xa1\x0e\xf4\x0e\x9e\x17\x4c\xe5\x7f\x8b\xe6\xac\xcb\x7b\x29\xa8\xbe\x3e\x26\x78\x85\xb2\xa4\x3a\x45\x88\xf2\x86\x90\x04\xdf\x1d\x07\x7c\xd5\x0c\x2a\x2e\xfa\x5d\xd8\x3a\x80\x86\x4e\x93\x3f\x2d\x2e\x36\xd7\x6c\x2e\xe1\x68\x18\x52\x46\x08\x81\x04\x1e\x8c\x39\xae\x85\x11\xa0\x1f\xa3\x61\xdf\xc6\x5d\x16\x97\x21\xa9\xcb\xbf\xed\x15\x54\x8b\xcc\x24\x39\xab\xb6\x3b\xc0\x47\xc8\xfc\xce\xa0\x64\xe9\xf6\x70\xc8\x26\x07\x26\x0b\xce\x0f\x4e\x48\xc3\x54\x3d\xf1\x34\x08\x71\xd4\xeb\x17\x1e\xb6\x8a\x32\xd0\xdb\xc4\xef\x76\x93\xc9\x25\xae\x52\x72\x19\xdb\x41\xaa\x4c\xf3\x78\xda\x9f\xb7\xe8\xd1\x7f\x5e\x67\x18\x05\xef\x15\x56\xbf\x0b\x72\xae\x8e\x09\xf9\x70\x95\x26\xfa\xb3\x28\xb7\x3b\x03\xa8\x53\x59\x87\x48\xbc\x3e\xb0\x2a\xca\xbb\x75\x7a\x70\xe5\xbb\x45\x5d\xe0\x2d\x79\xb7\x8e\x2e\xb6\xdc\x45\x08\xfa\x8f\x11\x4f\x4e\x63\xb2\x75\x4b\x2f\x1c\x6a\xe6\xab\x88\x45\xb4\x9f\x48\x84\xe1\xd3\x69\xf3\xa1\x57\x81\xfb\xcc\x03\x51\x1f\xbe\xf9\x03\x42\xa4\x7e\x40\x3d\x2c\x8d\xcc\xcb\xc8\x4f\x8a\x31\x6e\x85\x85\x7c\xf8\x38\x86\x1f\x10\xb8\xbd\x57\x93\x0d\x2d\x35\xed\x11\xa5\xbd\x9c\x09\xef\x18\xb0\x1a\x5f\x75\xf2\x43\xbd\x0f\xa6\x5a\x42\x7b\xf7\xca\xb4\xab\x19\xc4\x91\x17\x1f\x42\xda\xf3\x53\xee\x18\xfc\x94\x4a\x47\x07\x7f\xe5\xaf\xcf\x70\xd0\xf8\x87\x63\x06\x18\xd1\xe2\xba\xc6\x1a\x73\xf1\x68\x39\x6f\x70\xdd\xa5\x52\x6b\x09\x26\x23\xef\xcb\x85\xcc\x06\x83\xb2\xab\x4d\x20\x63\xbc\x30\x9d\xc7\x66\x44\xcd\x2d\xda\x58\xbd\x2c\x5d\x2f\xfa\x7b\x48\xbb\xf9\x1c\x25\x98\xc0\x0d\xc0\xab\x9c\xa6\x79\x50\xb4\x94\xd1\xf4\x9f\x6d\x13\x01\xfc\x5d\xc1\x6d\xa8\xb6\x0d\x0f\x02\x40\x13\x15\xd1\x7a\x63\x12\x40\xae\x8a\xda\x86\x7f\xbd\x37\xae\x08\x9c\x6d\x8d\x66\xfe\x5a\x33\x36\xcb\x36\xce\x2b\xc4\xac\x72\xb5\x2e\x80\xac\x51\xbc\xee\xa7\x8e\x20\xb1\x02\x7f\x70\x48\x8a\x00\x29\x5d\x8d\xe2\xd8\x01\x2b\x51\x2f\x51\x04\xad\x9e\x4c\x85\x87\x6f\xbc\xa1\x2c\x51\x40\xfd\x1c\x70\x39\xd3\x5d\x9a\x76\xbc\xeb\x63\xf5\xe5\x51\x16\x6b\x11\x19\xb6\xe7\x4b\x42\xbc\x3d\x90\xa0\xcc\xf1\x51\xd5\xe0\x98\xec\x11\x21\x42\x44\x16\xef\xa7\x75\x42\xf4\xdd\xa2\x41\xc1\x4b\xc4\xfa\x1f\x25\x49\xea\x94\x9f\x82\x78\xd9\x79\x48\x10\xb9\xaa\x7f\xe8\x70\x99\xc4\xc4\x1b\x45\xd4\xf1\x13\x18\x7e\x9a\x7f\xc9\x2b\x79\xdd\xa6\x68\xbc\xe8\xfc\xca\x6c\xe0\xff\x45\x30\x8f\x8e\xea\xcf\xa4\x44\x89\xed\xff\x00\x29\x95\xb3\xf6\x94\x97\x58\x53\x70\xf9\xff\x1e\x95\xff\xef\xd5\x29\x20\x42\xa6\x28\xb1\x31\x96\x00\x53\x76\xeb\x71\xa8\xef\x08\xb1\x67\xb4\xac\x59\x8a\x57\x91\x23\xb0\xcc\xd6\xe7\xfc\xc6\x1b\xaa\xcd\x82\x14\x01\x76\xf2\x03\x62\xa2\xfd\xa0\x8e\x63\x7d\x98\xa5\x83\x28\xd7\x35\x86\x3a\x3e\x40\xa0\x7a\x4c\xaa\x9e\x4e\xd6\x7a\x56\x5e\x23\x1b\x3c\xb8\xe5\x63\x44\x53\x7d\x9e\xc5\x26\xfe\xd7\x10\x5a\xa7\x45\x91\x26\xdb\x99\x6e\xd1\x67\xf4\xed\xbf\xd0\x0e\x71\xa7\xa0\x74\xdc\x43\xff\x04\x2b\xd9\x73\x6d\x07\xc3\x73\xa9\x0e\x75\xd1\x1f\x0d\x22\x0c\x0e\x01\x4b\x04\xa4\x8d\x1e\xd3\x96\x19\x9a\xa2\xb0\x59\x32\x1b\x26\x2e\x75\xcb\x38\x3c\xf5\x96\x26\x8d\x2b\x37\x7f\x42\x4b\xe8\x3f\xfd\xd5\xbf\x4e\x88\x39\x2d\x90\xe8\x09\x59\x52\xbb\x9a\xef\x62\x2d\x49\x8c\x14\xab\x18\x01\x6c\x08\x66\x46\x54\xf3\x01\x68\x8c\x3d\xc0\x9d\x21\xcd\x9f\x11\x69\x47\x2f\xe5\x51\xbe\x2e\x47\x1f\x16\xd0\x47\xb3\x78\x6c\xf8\xf8\xf3\xc4\xe1\x24\x48\x94\xaf\xc9\x0f\xa1\xc9\xf8\x73\x60\xbd\x48\x0a\xe6\xa0\x8e\x00\xee\x92\xdc\x15\xde\xf4\xae\xf0\x26\xc0\xc1\x9f\x80\x9b\x40\x40\x77\x92\x85\x3a\xa0\x1b\xe4\x8a\x09\x72\x05\x70\xba\x57\xa9\xa1\xac\x52\x98\x7e\xda\xd9\x0f\x66\x9e\x1b\x13\x90\xe4\xa8\xb8\x6c\xc7\x87\x27\x61\x1e\xde\xf4\xf1\x71\xb0\x31\xff\x1a\x8f\x19\xb7\xfc\x8e\xd8\x6c\x94\x6d\x3f\x85\xa2\x10\xfa\xf8\x77\x24\xa7\xc0\x6e\xf9\x48\x53\x58\xdc\xe1\x29\x94\x7a\x11\x0c\x5e\xad\x64\x38\x51\x3e\xd8\x43\xbc\xdd\x17\xc5\x53\xa0\x5e\x76\x86\xa5\x1f\xe5\xfd\x21\xca\xd8\x36\x21\x6c\xed\x67\x63\x9a\x05\xb8\xd7\x0a\x2a\x55\x9f\x11\x55\xd0\xb9\x16\xd1\xd8\xdd\x44\x24\x83\x87\xf4\x21\xcf\x3c\x83\xd9\xc6\x91\x56\x4c\x2b\xe3\x7d\xa3\xd9\x4d\x3b\x23\x30\x88\x20\x76\xe1\xb0\x42\x8f\xa9\xa7\x67\x37\xec\x5c\x88\x1c\xe0\x1c\x1d\xd3\x47\x79\x9b\xce\x80\xcb\xc2\xd0\x7f\x20\x6a\xd3\x46\x9b\xd6\x73\x94\xec\xa8\x0e\x07\x86\x70\x02\x9d\x68\xdf\x33\x09\xb9\xe8\x09\x62\xb8\x98\x69\x13\x35\xdc\x26\x49\x86\x5d\xf0\x20\x88\x22\x33\x6b\xd6\x83\x0d\x9c\x73\x60\x4f\xc1\x1b\x2c\x4b\x77\xcb\x3f\xa1\x65\xf8\xa9\x34\x7e\xe4\x5d\x1d\x7a\x1e\xd9\x3f\x16\xc2\x5d\x22\x25\xb9\xc7\x28\x9d\xb7\x5a\xa1\x98\x7f\x4f\x57\x8b\x2b\xba\x87\xb9\x8f\xed\xed\x99\x8a\x32\x67\xb9\xa2\xf1\x4e\x2f\x52\x19\x78\xdd\xe6\xda\xee\x45\x8c\x71\x5e\xbc\x89\x33\xf1\x41\xce\xeb\x0e\xde\xb6\xdb\x83\xa1\xf0\xab\x82\xb2\x28\x51\xdf\x90\x2b\x43\xce\xfc\xd9\x98\x14\x1f\x51\x5c\x76\x85\xae\x1a\x8a\xae\xcc\x96\xc9\xc4\x6c\xf8\xf8\x3d\xaa\xc9\x61\x88\x02\x61\x99\x02\xee\xd4\xc5\x51\xb1\xb2\x93\xa5\xa3\x4e\xbf\x22\xc6\xf5\xb6\x2c\x6a\x37\x15\x45\xce\xb7\x97\x59\x34\xb4\x66\xb7\x28\x4a\xec\xe7\xda\x64\x85\x9e\x65\xc1\x9d\xd4\x72\x7a\x2c\xdb\x95\x54\x29\x3e\x5d\x8c\x4c\x45\xf3\xba\x5e\xe3\xc0\x14\xf9\xa8\x0b\x15\x4f\xd7\x27\x92\x3b\xd3\x93\x3a\x86\xbe\x74\xcd\x66\xb9\x35\xf9\x6c\x40\x23\xed\x69\x53\xa7\x09\x36\xcc\xa9\x81\x35\xbc\x12\xd6\x7d\x1f\x1b\xc5\x51\x0c\xfe\x9e\xd7\x2b\xc3\xad\x58\xdb\xb3\x13\xb2\xe1\x7b\x88\x74\x2d\x1d\x15\x71\x9a\xae\xce\x85\x49\x94\x7f\x26\xb7\xe7\xe4\x4c\x03\x8e\xe9\x02\x31\x34\x9e\x97\x76\x12\x96\xd2\xd9\xa9\x52\xc3\xe2\x62\x33\x5d\xf7\x33\x23\xc8\x04\x1a\x08\x70\xf5\x64\xf2\x2c\xe9\x8d\xe5\xb9\x90\x63\x1c\x9e\xaf\xa8\x02\x62\x41\x3d\x20\x35\xd9\x33\x75\x9a\x32\x2b\x26\x1b\x78\x52\x37\xd8\xbb\xe3\x78\xd8\x7a\x52\x27\x6e\xde\x31\x99\x55\xac\x47\xdd\x14\xd2\x8b\x01\x84\x99\x98\x41\x99\x08\xbf\xa9\x6b\xcf\x19\xce\x30\x17\x7a\xae\x2e\xc2\xca\x35\xb7\xcd\x69\xc1\x2a\xe8\xd3\x01\x91\xb7\xb6\xc5\x0e\xcc\x97\xaf\x22\x2f\x4c\xd2\x8d\x92\x5e\x85\x1a\x13\x17\xe7\x06\x79\xfc\x7c\x86\x44\xf1\x33\x1c\xb8\x93\xc7\x80\x67\x0f\xd9\x8e\xef\x9a\xa6\xa3\xcc\x51\x91\x28\x41\x03\x6d\xc6\x8b\x08\x51\x55\x67\x91\x8a\x3c\xf9\xd0\x26\xdd\xdd\x62\x91\xe1\xee\x10\x64\x2a\xc7\x9d\x54\x08\xe1\xed\x8e\xb3\xb8\x34\x5e\x1e\xea\xb5\x8f\x64\x55\xa1\x5c\xfb\x80\x00\xe7\xef\xc8\xdc\x15\x22\xc3\xcf\x81\xe9\xd0\x7f\x80\xa3\x76\x6c\x3d\x5b\xb7\xcc\xe2\x62\xf9\xdf\x55\x79\xc8\xac\x0c\x7f\x6e\x4c\x5c\x76\xe7\xea\xf4\x5c\x3a\x66\xd9\xc4\x8d\x29\x15\xca\x4a\x85\x48\x9f\x55\xe2\x94\x20\x9c\xd1\x24\x89\xa6\x2b\x0c\xbf\xca\xa2\x7c\x95\xb4\xf2\x11\x82\x3a\xa4\x44\xcd\x02\x89\x92\xc2\xc6\xb1\xed\xa0\x7c\x87\x54\xed\x77\xe4\x32\xf4\xb8\xc6\xac\xec\x6f\x16\x69\x61\x62\xad\x43\x22\xf1\xfb\x39\xee\x56\x4f\xea\xa6\xfb\x3b\xe9\xaa\x25\x11\x3d\xa5\x94\xd2\x93\xaa\xda\x5e\x91\xef\x6c\xbc\xfc\xb2\x9f\xbd\x95\x7b\x85\x5f\xbd\x41\x32\x4f\xe7\xc7\x61\x5e\x14\x34\x36\x9e\x68\x20\x70\x28\x5c\x81\x8d\xd5\x13\x04\x50\xfa\xbd\xad\x30\x2b\xd2\xb7\xa6\xbb\x2b\xac\xbe\xeb\x4c\x50\x05\x42\x15\x15\xf8\x97\x68\x4c\x31\x25\x54\x49\x3e\xd9\x0a\xf2\xd1\x3a\xba\x8a\xa8\xf2\x9c\xf4\xee\x1d\x8e\x52\xd6\x11\x02\xa6\xef\xd6\x0c\x6b\x1d\x6c\xc6\x91\x59\xae\xe6\xb7\x7f\x40\xe0\xcf\x3f\xa0\xb2\xe8\x6f\x8f\x4c\x56\x00\x75\xe0\xc9\xf8\x5b\x5c\x60\x9c\x4a\x04\x0e\xbd\xda\xcc\xd3\x51\xd1\x2f\xed\xdb\xe6\x55\x8a\xdd\x6e\xb6\xa8\x79\xfa\x5e\x40\x52\xc6\x26\xa0\x5e\x81\xaf\xfb\x54\x6b\xe4\x7a\x16\xb2\x18\xbb\x12\x65\x29\x35\x62\xbe\xcb\x25\xb3\xef\xb6\x58\x22\xb1\xb0\x49\xb1\x53\xc2\x4d\x34\x2d\x4e\x22\x44\xd5\x13\xbc\x6b\x44\xd1\x3f\xa7\xf0\x68\x93\x54\x49\x11\x1d\xe9\xdf\xc8\x7a\xf0\x11\x65\x40\x32\x56\xc6\xbd\x2a\x10\x08\x90\x62\x3a\xa4\xf1\xb3\xac\xde\x18\x2d\x9b\x7c\x3b\x55\x56\xde\xa7\x5e\x2f\x48\x80\xf4\x58\xde\xaa\xaf\xaf\x79\xcd\xa7\xf7\x65\x19\x38\x0e\x92\xb0\x2b\xfb\x69\xae\x89\xb1\x53\x56\xa7\xc7\x73\x6e\x6a\xb3\xbc\xd2\x04\x90\x4e\xde\x2d\xbe\x4d\x69\x59\xf5\x64\xbc\xd5\x66\x1f\x9e\x7f\xbd\x34\xda\x43\x9b\x09\x78\xb0\x4b\x18\x88\x3f\x44\x00\xae\x27\x35\x6d\xe7\xd7\x9b\x79\x54\x04\xec\xb9\x0a\x3a\x12\x39\xd2\xc5\xf1\xd6\x39\x5a\x87\x9c\x88\xcd\x3a\x4b\xfb\x20\xd3\x55\x7e\x07\x3d\x09\xbd\xf8\xb4\xb3\x6a\xc3\xcf\x20\x43\xfe\x9b\x94\x2d\xff\xcd\xba\x04\x3e\x33\x34\xf0\x05\x87\xf2\x90\x58\x61\x1f\x4e\x3d\x09\x21\x86\xec\xac\x26\xe9\x7a\x6c\xbb\x3d\x94\x58\xf6\xfb\xed\x1f\xda\x56\x6a\x24\xd0\x66\x7a\x5c\x35\x3f\x03\x33\x5b\x65\x11\xf4\x7d\xa5\x77\xc7\xc1\x3b\xbf\x85\xfb\x74\x12\x13\x7b\xc2\xb6\x49\x2c\x49\xd8\x3d\xd5\x0e\x18\xad\xa7\x26\x35\x42\x35\x83\x34\x89\x8a\x34\x6b\x04\x9a\xfa\xb7\xe9\xa9\xbc\x3d\x0e\x1c\x26\x45\x96\x36\xa8\x62\x74\x9e\x70\x54\xe7\xa7\x84\xc2\xdd\x3b\xb2\x26\x2f\x06\xca\x42\xed\x49\x3c\x02\xbf\x61\x0d\xa0\x7c\x6f\x73\x39\x4e\x3b\xab\x8d\x20\x27\xf1\x27\xf2\x08\xf4\xb8\x2e\xce\x1c\x8e\xe2\x38\x1d\xa1\x14\xee\x00\x52\xe5\x56\x70\xc8\x29\x4f\x14\x1a\x8f\x54\xb7\x81\xf3\x61\x3d\x6e\xbd\xe8\x80\x44\xc3\x32\x4c\x1f\x25\x11\xda\xbb\x87\xe7\x7d\xfd\xbe\xe1\x29\x6c\x3f\xa6\xa0\xbc\x6f\xd6\x4d\x14\x99\x04\x1b\xc6\x25\xaa\x9c\xb5\xb6\x5e\xaa\xf6\x74\x7f\x73\xa1\x5c\x28\x07\x05\x33\xef\xf4\x3f\xcb\xdf\x41\xa5\xf5\x23\xd9\xd2\x6e\x62\xa7\x86\x1d\x2f\xb7\x26\xac\x64\x95\xa0\xa6\xdc\xe3\x64\x95\x35\x7c\x90\xcf\x85\x02\xc2\x79\x64\xb7\x68\xea\xff\xfd\x71\x08\x64\x67\x49\x05\x57\x4b\x3a\x6e\x62\x24\x44\x3f\xcb\x99\x45\xeb\xba\x7e\xea\xe1\x69\x62\x49\x33\x03\x4b\x02\x8c\x58\xc4\x2e\x9f\xa9\x29\x7b\xf5\xd3\x51\xe2\x48\x06\xfd\x6c\x50\xd0\x28\x3b\x46\x0a\x17\x89\x29\x46\x99\x89\x11\x8a\x7a\xd1\x49\xb4\xd1\x5c\x44\x52\x53\x5c\x0d\x13\x76\xc4\x53\xf7\x88\xc9\x8b\x1e\x51\xe9\xb2\x93\x0e\x86\x69\x02\x38\x60\xc0\xa2\x5e\x21\x2c\xea\x15\x66\xe9\x8f\x92\x2e\x18\x43\x55\x96\x15\x2d\xd8\xab\xcc\xd5\x1f\x8a\x6e\x51\xb6\xe6\xdb\x3d\x78\xc6\x60\xfa\xd6\x7e\x3e\x2e\x09\x0e\xa9\x31\x85\x02\x5d\x5c\x6c\x0e\x6c\xd6\xe9\x9b\x44\xa7\x11\x3d\x97\xbd\x0f\x3d\xe7\xda\xa1\x57\xf2\x60\xcc\x02\x72\x83\xd2\xa5\x02\xbd\x8a\xb6\xe4\x67\xdc\x67\xfe\x4c\xa2\x54\xe7\x6a\x1b\x9e\x1e\xee\xd3\xa9\x42\xf8\xc2\xa1\x66\x61\x8e\x44\x34\xe5\x00\x7a\x46\xc7\xb5\xe9\x81\x1d\x03\x60\x74\xcb\xd7\x04\xdf\x01\x08\x0d\x82\xd2\xc6\x44\x02\x12\xe4\x68\xb0\x53\x4e\x69\xa8\x06\x77\xbb\x6a\x87\x3a\x4a\xa9\xf3\x97\xb2\xf4\xdc\x2c\x66\x4d\x77\x65\x94\xa8\x1c\x93\x23\x9c\x47\x85\xf3\x02\x29\xaa\x5d\xa0\xa9\xc2\xcc\xae\x58\x21\x48\xdc\x1e\x8a\x44\xa7\x5b\x41\x08\xfd\xf4\x38\x00\xa8\x67\xa4\xc0\x86\xf6\xbe\x62\xb8\xf0\xa8\xce\xc1\xdb\xc1\xac\x57\xd7\x53\x1c\x9b\x42\xa4\xe5\xc4\x4a\xa0\xd6\xa5\x44\x9c\x7a\x32\x95\x3e\x0a\x2d\xc6\x9a\x55\x68\xa0\xa3\x95\x09\x0f\xfa\x61\x0d\x86\xe1\x40\x73\x65\xa4\x5a\x73\x0e\x45\x1e\x4a\x63\x27\xa7\xfc\xef\xbe\x25\xcf\x68\x88\xe5\xa4\x48\xa5\x71\x40\x43\xdd\x95\x57\xab\x53\x09\x84\x7b\xb0\x49\x2f\x4a\x24\x7b\xf4\x90\x2d\x25\x6b\x72\x6d\x81\xd0\xaa\x5c\xc1\x54\x8c\xfc\x2b\x12\x3f\x05\xbd\xe8\x09\xcd\x3d\x27\x65\x84\x56\xa5\xc6\x38\x4f\x6e\xef\x3c\x49\xb7\xaf\x9b\xbc\x1f\x25\xbd\x22\x4d\xe6\x48\xb3\xea\x01\xe9\x50\xfc\x3d\xf9\x24\x8a\x05\xf7\x69\x0a\xea\x32\x21\xd5\xa7\x01\x96\x0b\x87\x9a\xeb\xd6\xae\xc6\x1b\x52\x8a\x46\x16\xb6\xad\x4d\x16\x4c\xde\x01\x32\xf8\x77\x98\x84\xf1\x12\x3d\x9e\xe5\xcc\x24\x9d\xbe\x27\xed\x42\xa2\xa1\x04\xe3\x2c\x15\xe2\xb5\x6d\x03\x5f\xf3\xc7\xad\x17\xaa\xfe\xe2\xb5\xfd\xcd\x03\xf3\x0d\x89\x5a\x91\xc9\x7e\x88\xa8\x55\x4f\x78\x32\xc7\x69\xc9\x41\x45\xc7\xc9\xd8\x96\x4b\xd7\x55\x8d\x1b\x9e\xea\x23\x20\x3b\x7a\x36\xcd\x7a\x91\x83\xc2\xe3\xce\x54\xeb\x45\x4f\xea\x66\x45\xfe\x1f\xc9\xf6\x42\x10\x1c\x25\x9d\x5f\xd9\x53\x5e\x05\x75\xab\xd4\x56\x3a\xa4\x81\x18\x03\x3c\xec\x07\x63\x6a\x69\x7c\x8e\xa0\x1c\xa5\x3b\x08\x44\xea\x5f\x11\x99\xd8\x04\x25\x5c\xf8\xb5\x7f\xc2\x5b\x72\xae\x4d\x12\xce\x7f\xcc\xcc\xb7\x8f\xc9\x61\x59\x93\x25\xf9\x8e\xa0\x78\x74\x9e\xec\xd4\xc5\xf2\x77\x36\x15\x8e\xe1\xaa\x8b\xe5\x65\xc0\xca\x9f\x12\xf0\x21\x0a\x67\xa0\xde\xd8\x3c\x55\x09\xe8\x8a\x34\x79\x86\x58\x1d\xff\xa0\x15\x34\x01\x4f\x6b\x65\x53\x05\x89\xda\x92\x1f\x2a\x92\x1f\x7b\x09\x49\xe0\x6d\xb9\x55\x25\x36\x26\xd3\xfc\x14\x6a\xdd\x0e\xc9\x47\x5c\x42\x97\xc6\xa1\x11\x7d\x9f\x85\xdf\xc1\x73\xe8\x81\xb3\x21\xa9\x7f\xa2\x4d\xe5\x57\xcc\x04\x00\xb7\x71\xce\x7b\xae\x5e\x56\xba\x69\xcc\x0c\x3b\x7e\xf8\xf2\x62\x7c\x71\x31\x74\x96\xa1\x63\x0b\x57\xe9\xa8\x98\x19\x7e\xcc\x7a\xd8\xa0\x1b\xfa\x25\x80\x0b\xb4\xdb\x5b\x2b\x4a\xb9\x9c\x9a\x80\x94\x00\x4c\x0c\x11\x08\xcb\x00\x22\xe8\x7b\x87\x4c\x7b\x37\xca\xac\x68\x0c\xce\x51\xb5\xf8\xf3\x56\x70\xd4\xa7\xb8\xe5\xf3\x3e\x85\x52\x8f\xc5\x66\x20\xc7\x7f\x38\x55\x40\x13\x92\xca\x91\x8b\x6e\x7d\xb1\x3f\x14\xfe\xc7\x8c\xa4\xe8\xf4\x77\x84\xf2\x0a\x54\x79\xc2\x44\xc2\xbe\xa5\xe0\x9e\x16\x0e\x79\xf7\x44\x95\x72\x65\x74\x47\x2b\xe9\x5d\xe2\x59\xbc\xdd\x0a\x46\x67\x18\x5b\x93\x2b\x93\xd9\xeb\x5e\x02\x8d\x88\x02\xaf\x10\x0f\xb9\x89\xb2\x75\xb3\xe1\xaa\x46\x58\x2a\x3f\x64\xa8\xd5\x0f\x69\x52\x36\xef\x64\x66\xb0\x1c\x6b\xf9\x8f\x24\x04\x02\x3d\xb0\x8f\xb2\x57\xa3\x4c\xe7\x11\x9c\x1c\x7a\x48\x61\x2e\x53\x93\xc0\x1c\x89\x66\x1b\x7b\x17\xdc\xcc\x29\x2f\x9f\xb3\x04\x3c\xba\x53\x89\x2d\xb6\xc0\x23\xcb\x65\xf1\xf2\xcb\x3b\xe4\x16\x49\x5d\x62\x21\x28\x14\x97\xaf\xdc\x51\x79\x92\x25\x41\xe2\x8c\x6d\xa8\x48\x01\xa7\x66\x40\x50\xf9\xa9\x48\xf2\xf0\xfc\xfe\xa6\x19\x0e\xad\xf1\x2a\x32\x9b\x57\x55\xd1\xb2\xa6\xfa\x9b\x17\x36\xb3\xd0\x14\xf1\xaf\x37\x44\x22\x75\xad\xf9\x68\x60\x4a\xb7\xda\x08\x55\x45\x04\x1e\x7a\xec\x31\xd8\x9d\x28\xeb\x8c\x06\x6b\x6e\x08\x1b\xd1\x15\xbe\x5d\x8f\x29\x73\x4b\xec\xfa\x4b\x0d\x4f\x67\x7c\x4f\x3a\x74\xb0\x32\x7f\x56\x4d\xcf\x03\xbe\xfd\xb1\x94\x9a\x10\x7d\xab\xfd\xc0\x8e\x77\xfc\x19\xb0\x20\xe0\x86\x85\xdb\xda\x31\xa1\xe5\xf0\xaf\xa4\xe3\x03\x8b\x75\x0d\x2d\x2c\x25\xd3\x92\xbe\x29\xde\xe6\xb6\x36\x41\xf0\x4f\x08\xe7\xb9\xcb\x11\xca\x1d\x81\xf5\x7d\x57\x8a\xa4\xee\xa5\xc9\x8b\x42\xe4\x75\x74\x0b\xa3\x6e\xc0\x56\x3f\xd1\xae\xce\x58\x96\x8b\x03\xb7\x78\x2f\x80\xd8\x13\xd3\xb5\xbf\x3d\x32\x85\x9d\xf3\x28\x9a\xde\xf3\xd2\x6b\x65\xc0\x34\xf2\xeb\x6d\x32\xed\xe7\xb0\xc9\xf2\x4b\x4e\xde\xd3\x4b\xb5\x9b\x51\x5c\xcc\xc8\xef\x32\x18\x19\xe6\x74\xb3\x45\xf4\x41\x97\xa7\xc2\xdb\xbd\x0b\xcd\xc4\x9a\x4c\x8a\xd1\x3e\x1f\xe4\x01\xec\x7d\x4b\x1e\xfc\x50\x03\x95\x5a\x31\x47\x64\x89\xa1\x2e\x79\x9d\x6a\x94\xd7\x6b\x08\x55\xbf\xd1\x5c\xb1\xb1\x86\xd2\x7e\x0c\x93\x28\xad\x68\x7f\xc6\xf6\x69\x2a\x0f\x3f\x06\x03\xb3\xd3\x1c\x22\x22\x82\x53\x63\x0a\x47\x7e\x34\xa6\xb0\x1e\xf4\xb7\xd8\x8b\x77\x78\xee\x64\xbc\x85\xcb\xb4\x5c\x07\x15\xed\x37\xac\x96\x87\x01\xc3\x71\xf7\xcf\xb7\x43\x7e\xaf\x8d\x3f\xff\x23\xdf\xfa\xa6\x56\x3c\x8f\x51\x08\x66\x92\xbe\x1d\xe5\x36\x9b\xa3\x21\xae\xa3\x04\x7d\x7f\x48\x70\xf1\x99\x36\x8d\x7d\x1d\x95\x2b\xc5\x5a\x0a\xe3\x1c\xfd\x74\x68\x83\xea\x32\xc6\x31\x94\x40\x5d\x4f\x88\x15\xbd\x9f\xe6\xc3\xa8\x30\x71\x8e\x01\x45\xe2\x6a\x71\xeb\xf2\x0c\x89\xc8\x5e\xe0\xf6\x12\xbd\x81\xd7\xfa\xe9\x1c\xa5\x83\x17\x24\xd4\x80\x83\x7f\xae\x1d\x96\xe7\x23\x34\x1b\xbc\x06\x96\x8f\x5a\xbf\xac\x1d\xc1\x81\xf4\x87\x22\x9d\x11\x3f\xa9\x40\x87\xaa\x24\xca\x82\xc3\x2a\x3e\x49\x00\x0d\x3b\x8c\xf2\xb4\x6b\x05\xfa\x83\xf6\xfa\xcf\x00\xfd\xd1\x13\x52\x17\xcd\x85\x4f\x60\xcb\x38\x16\xda\xe8\xa8\x34\x60\x5f\xdc\xa7\x10\xb1\x6f\xe2\x18\x0f\x8b\x27\x56\xb1\xe7\x66\x98\x6a\x79\xa6\x32\xd7\x4a\x9c\x87\xdf\x36\x6e\x12\xce\x99\xba\x93\x2d\x92\xcc\x38\x39\xd5\x80\x10\xee\x8b\xee\x5a\x94\xa7\x9a\x63\x79\xc9\xef\xf2\x99\x3b\xc9\xef\x1a\x00\xf1\x4a\x24\x73\x7d\x01\x93\x0b\x46\x1e\xe7\x66\x42\x5c\x39\x18\x15\x05\x40\x60\x7e\x00\xc9\x97\x5c\xee\xd2\xec\x72\x3a\x2a\x4c\x0f\x75\x3b\x18\xb7\x1f\xb4\x42\x8a\xf9\x83\x3a\x1d\xac\xe5\x34\x71\xf4\x98\x8e\x2d\xa8\xbc\x1c\xd4\x62\x2e\x31\x87\xdd\x94\x63\x2a\x7d\x58\x5e\x98\xac\x40\x75\x12\x7b\xf8\x3a\x3c\x25\xfc\xcc\x25\x12\x72\x7f\xbb\x2a\xff\x32\xcc\x9f\x0c\x48\xfe\x5d\x13\xf9\x06\xc7\x5d\x51\x5e\x00\xa2\xcc\xdf\x67\x8f\xaa\x0c\x17\x0e\x61\x04\x4e\x6f\x3d\x6b\x11\xe1\x0f\x14\x30\xb4\xbc\x39\xae\x50\xcf\x97\x0b\x92\xd5\x74\x5d\x34\xc3\x71\xb6\xb5\x83\x9d\xb2\x0f\x10\x4f\x9c\xc1\x57\x3b\x62\x6a\x9a\x53\x46\x6c\x8c\xd5\xf8\x58\x56\x99\x7e\x82\xe6\x6f\xff\x4c\x5e\x94\xe7\x91\x2f\x2d\x9a\xfb\xa3\xe9\x7a\x79\xe9\x47\x62\xa9\x72\xe0\x1a\x7f\x00\x7b\x06\x73\x7f\x93\x5a\x28\xc8\x22\x1d\x5b\x70\x10\xb6\xee\xa7\x59\x11\x75\x46\xb1\x54\xb6\x1a\xa1\xcc\x78\x9a\x51\x9d\xa7\x59\x74\x61\x63\xb0\x9c\xc6\x51\x3e\x20\xd2\x52\x84\x59\x0e\x5f\xe8\xac\x56\x19\x82\x88\x24\x46\x83\x67\xed\x03\x26\xff\x8a\x4f\x02\x3b\xa6\xbb\x3c\x52\xe4\x8a\xd3\x1e\x96\x9f\xd7\x13\x6e\x83\x96\xab\x67\x47\xb8\x4e\xb8\x28\x3f\x12\x50\x46\x0b\xc8\x71\x8f\xd3\x42\x9a\x11\xa6\x2e\x37\x2a\x10\xf6\x0e\x00\x1d\xb8\x9a\x0f\xeb\x48\x04\xe3\xb4\x13\x10\xcb\xfa\x83\xd8\xd8\xee\xd7\x6b\x02\xa9\x4e\x36\x1a\x08\x5c\xcf\xdf\xe9\x17\x34\x7a\xfb\x45\xa8\x51\x15\x69\x66\x7a\x76\x36\x34\x75\x2e\xe2\xed\x01\x22\x70\x86\x86\xf3\x61\xb9\xdc\xc3\xfe\xc5\x6a\x20\xba\xb8\x78\xd0\x15\xbd\x77\x96\xdf\x85\x3d\xfe\x27\xea\xe7\x78\x90\xcf\x21\x9a\xe5\x57\xf4\xcf\x5a\x01\xc8\xf0\x63\xe6\x51\x3e\x09\x8f\x81\x3c\x4a\xe7\x3b\x5c\xc5\xaf\x66\x80\xa5\x30\x43\x18\x91\x3a\x86\xcc\x40\xfc\x99\x0f\x6d\x27\x32\x71\xa4\xb2\xc9\xa8\x8f\x9c\xa7\x5a\xc9\x79\x9a\xf9\xc8\xd3\x78\xcd\x56\x38\x52\x1a\x34\x9c\x5a\xd3\x57\x5e\x4e\x47\x8e\x1b\xc7\x8d\x77\x97\x9f\x70\x33\xe3\xc4\x80\xb2\x66\xb3\x75\x1b\xf5\xfa\x9a\x2d\xd4\xf1\x6f\x06\x13\x09\x49\x99\x27\xcb\x85\xe6\x66\x9a\xe4\x41\x39\x68\x6c\x79\xf5\x2e\x60\x92\xc5\xe1\x88\xa0\x08\xe5\x72\x1a\x0f\x1d\x84\x1f\x27\xc4\x60\x22\xc7\x3d\x26\x41\x26\x8d\x93\x1e\x0c\xfd\x7d\x3f\x39\xf6\x90\x1a\xd3\x8d\x76\xc0\xfa\x0f\xa3\x4e\x31\xca\xfc\xbc\xb6\x67\x8b\x08\x61\x22\x77\xd3\xfb\xe9\xc0\xe6\x3b\xe4\x0a\x9d\x8c\xbf\x5c\x21\x6c\x13\x44\xbc\xfc\x60\x2c\x95\x9b\x09\x12\x74\x9b\x7a\xbf\x1f\x8e\x43\x02\x7c\x6e\x6a\x4d\x2c\x2d\x35\x97\xa3\xae\xbe\x0d\xc7\x1f\x4b\x95\xb7\x69\xb9\xc7\xa5\x25\xe9\x21\x25\x0e\x1e\xac\x90\x7e\x59\x49\x9e\x24\xa7\xfc\x02\x98\xc3\x6d\x13\x67\x68\x56\xa3\x6e\x52\x66\x46\x80\x93\xe0\xad\x9c\x91\x32\x82\x1e\x4f\x81\xe8\x17\x0e\x35\xe3\x74\x14\xe5\x6b\x51\x1c\x63\xd9\x7a\x46\xba\x20\xf7\x74\x79\xca\xff\xfe\x07\xcd\x5e\x56\x7e\x42\x0d\x02\xf6\x26\xc0\xf6\x7a\x5c\xc7\xf1\x6c\xe2\x78\x94\xd9\x46\x95\xf3\x9e\x98\x48\xea\xea\x0d\x79\x32\x5a\x5e\x76\xcc\x33\x08\x62\x2f\x70\x76\x79\xa1\xf5\xe2\x74\xef\xb4\xa3\x5e\x19\xeb\x5d\xab\x2a\x0e\x8a\x27\xdf\x84\x70\xa9\xca\x48\x32\xc8\x7e\x65\x67\xf9\xac\x90\xf2\xca\xd2\x5e\xd8\xbc\x2a\x66\x15\x40\xbc\xb3\xf0\xa8\x88\x72\xbf\x33\xae\xc0\x36\xe4\x27\xc4\x78\xfd\x97\x7f\xbe\xcd\x5a\x72\x10\x29\x45\xf8\xf3\x80\xb8\x36\x46\x49\xc7\x66\x85\x89\x92\x02\x71\x0f\xaa\x49\x18\x13\xd3\xe3\xa9\xc8\xf1\xc0\x7c\x73\x94\x44\x2b\x51\x56\x5a\x8d\x03\xf3\xf5\x84\x19\xd3\xc0\xa4\xd7\x9b\xcb\xb6\x93\x0e\x30\x97\xea\x99\x76\x0e\xcf\x6b\x77\xf7\x3a\x22\x48\xa7\x3b\x4c\x68\xfa\xed\xed\x97\x08\x78\x5e\xd8\xac\x4c\x76\x45\xd6\xdc\x0f\x17\x7c\x67\x1c\x06\x75\xbf\xe3\x33\xbb\x41\x9a\xd8\xc2\x64\xce\xba\xa1\xee\x09\x8a\x46\x3d\xf6\x93\xd6\x79\xda\x35\x33\x54\x3b\xb8\x46\x88\x2b\x20\x7b\x50\x13\xfa\x8c\xa2\x4c\x9b\xa4\xa3\x5e\x7f\x97\x38\x39\x44\x5b\x77\x68\x96\x05\xf4\xb8\x9e\xa6\x65\x9f\x8b\xa8\x76\xb6\x49\x9f\xe3\x38\x01\x2c\xcf\xe2\x9e\xbd\x0d\xf6\xfa\x79\x8f\xc5\x24\xb9\xd1\xca\xe9\x20\xf4\x00\x40\xc4\xc4\x97\x0d\x08\xa9\x1e\xb7\x02\xd8\xb8\x6b\x92\x0e\x46\xb5\x55\xd3\x1c\x42\x2a\x5e\xa4\xd3\x57\x24\x7e\x80\x35\xe6\xa4\x23\x9e\x21\x65\xcf\xce\x6a\xb9\xb1\xf7\xee\xf5\x48\x89\x86\x9f\x01\x3d\x49\x05\xa8\xdc\x76\xcc\xa8\x33\x72\xa6\x10\xd5\xaa\xbf\xd3\xa2\xd2\xd5\xdf\x99\xb2\x51\x6f\xbc\xd1\xec\x98\x2c\x66\x96\x8c\x5b\x94\x91\xde\x22\x04\x6a\x24\xb3\x4b\x24\x6c\xff\x01\x15\xfb\xa7\xf1\xf4\x4b\x4b\xa2\xd2\xf8\xdb\x23\x58\x17\x94\x29\xc1\x0a\xa4\xc7\x81\x2f\xc9\x9a\x3c\x1f\x65\x50\x1d\xf3\xac\x76\x17\xe8\x36\xaf\x90\x84\xfd\x1f\x52\x6f\xc3\x1e\x19\xda\xac\xf8\x4a\x0c\x5d\x80\xa1\xe6\x26\x59\x95\x9d\xe3\xe4\xb6\xca\x3f\x73\x3a\x5c\xbf\x3c\xdd\x98\xc9\xec\x30\xb3\xb9\x4d\x0a\x19\xb5\x77\xa4\x2f\x1e\xbb\x19\x54\x24\x2e\xb0\xbd\x7c\x77\xaa\xa3\xbe\xb4\xd4\xcc\x3b\x26\xc6\x98\x92\x43\x85\x87\x7c\xf3\xc3\x6a\x26\x5f\x87\xb7\xea\x98\x6c\xa8\x9c\xda\xae\x11\x4a\xc0\xfa\x2b\x35\x74\x77\x07\x9b\xa3\x64\x5d\x04\x3c\x3d\x5b\x04\x7c\xf3\x97\xd4\x44\x7f\xd0\xaa\xb0\x45\xd4\xe4\x59\x45\x3a\xf2\x81\x5f\x45\x7f\x51\x4f\x6a\x4b\xb2\x26\x8f\xba\xd0\xe7\xc5\xa6\x02\x7f\x15\x02\x8a\x77\x05\x7d\x03\x18\xcd\x4c\xbb\x02\xbb\xc8\x36\x50\xa5\xc7\x3e\xd6\xde\x2d\x22\x82\x6b\x95\x9a\x17\x8c\x04\x02\x8a\xe3\x3c\xd3\xf8\x00\x39\x0b\xbe\xfd\x1f\x11\xf1\xfc\x13\x28\x2e\xc0\x23\x3c\x6e\x11\x79\xee\x35\xb9\x1e\x5f\xe7\xf9\x8d\xd7\xd4\xdf\x82\x82\x00\x26\xf2\x87\x62\x2e\x9d\xac\x02\xc1\x74\x51\x50\x71\x0d\x90\xe7\xc3\x24\xaa\x1d\x66\x69\x77\x04\xd1\x5e\x97\x50\xbe\x47\x09\xe5\x7b\x34\xf6\xd5\xcb\x8c\xe8\x99\x7d\xf5\x33\x0e\x9c\x4b\x51\x2f\x11\x19\xb3\xd2\x30\xc1\x94\xa3\x30\xa6\xc7\xed\xd0\x6b\x1e\x66\x76\x10\x8d\x06\xe8\x42\xf9\x41\x57\x8f\xe4\xfc\xa0\x15\x98\xa8\x4f\x55\x34\xb7\x32\x6b\x46\xdb\xc3\x30\x86\xca\x91\xf9\x97\xe7\x85\xa8\x66\x51\x04\x50\x15\x39\x06\x34\xfd\xe9\x98\x99\xd1\x1f\xd4\x61\x01\x6d\x9c\x63\x81\x38\x09\xd0\x86\x9f\x1d\xc6\x8e\x77\x15\xc0\xad\x05\x03\x19\xd2\x92\xc0\x59\xa7\x7a\x5c\x35\x9f\x2a\xfb\x34\x2f\xb5\x62\xb3\x42\x72\x2f\x07\x51\xc2\x26\x3b\x46\x10\xa2\x69\x54\xe4\xc2\xa1\xe6\x30\x4b\x3b\x36\xcf\x53\x84\x52\x30\x11\x97\xc8\x5c\x5c\x22\xe2\x87\xcc\xe6\xa3\xb8\xf0\xdd\x55\x5c\xf9\x2d\x02\x93\xdf\x9a\xda\x9e\xaf\x34\x87\xb6\xc8\xd2\x4e\xdf\x0e\x64\x38\xab\x02\x26\xf7\x63\x3a\x6f\x73\x53\xb6\x33\xca\x3c\x8d\x3b\x76\xfd\x49\x2c\x12\x3d\xa1\xaa\x7e\xd2\x31\x33\x5b\xa7\xb8\x1c\xa2\x8e\xd4\x8d\x6e\x4e\x41\x86\xb4\x34\x95\x8e\x92\xc2\x24\xc5\x56\x76\x9b\x7d\x81\xdd\xe6\x29\xd2\x3f\x8c\xed\x93\xc1\xb4\xcf\x4c\x28\x92\xfe\x18\xc1\x16\x02\xa1\x7f\x83\xda\x25\xfa\x32\x8f\xb1\xb7\x11\xc0\x7e\xbf\x45\x40\x0c\xd0\x19\xc0\x90\xea\x50\xac\xcf\x1d\x7f\xe3\x35\x3d\xe6\x06\x1c\x70\xa7\x9b\x57\x09\x24\x53\x98\x55\x9b\xec\x0c\x74\xe9\xc7\x60\xaa\x9d\x1a\x7e\xb9\xdf\x11\xad\xa3\x97\xa9\xac\x35\xad\xd0\x0a\xd5\x9e\x05\xfe\x08\x02\x60\xf8\xb1\x9f\x8a\x7f\xc7\x66\x9b\x9b\xbc\xc8\x60\x95\x81\xcd\xde\x5c\x16\xff\xb2\x70\x48\x9b\x5a\x9b\xd4\xa3\xdc\xa4\xb6\xcf\x7a\x24\xc8\xea\x06\xca\x30\x9e\x97\xba\x7c\x3c\xc4\x4b\xed\x39\xf9\x93\x34\x8b\x8a\xc8\x2a\x5b\x27\xee\x62\xb3\x45\xda\x94\x58\x6b\x78\x66\x73\x93\xd0\xe9\x39\x31\xde\xd2\xc5\xde\xb7\xd4\x3c\x30\xff\x0b\x8d\xd7\x5c\xc1\xff\x4c\x8b\x88\x04\x40\xd1\x8d\xe1\x9a\xdb\x80\x3f\xe3\x9d\x7e\xcc\x72\xc8\x7f\x97\xd4\x82\xbf\x90\x95\xe5\x85\xed\xca\xeb\x77\xf4\xd4\x95\x2a\x2b\xc5\xdf\x3f\x95\xb8\x0b\x9d\x80\x19\x29\x36\x39\xfd\x38\x3c\x0c\xa7\x58\x47\x83\xee\x97\xc6\x44\x83\xf7\xcf\xd5\x0f\x28\x19\x29\xc6\x96\x9c\x21\xdf\xf6\xf5\x4a\x73\x18\xe9\xe3\xc7\x88\xee\x10\x77\xcd\x49\x67\x09\xb5\x62\x50\xe2\x21\x24\xd2\xb4\xc0\x8b\xa3\x1e\x98\x3f\xe8\xb1\xdf\x35\x72\x92\xe5\x76\xb4\x99\x4f\xd0\x94\x7c\x59\xde\x82\x52\x97\x60\xe5\x02\xfd\xfa\x16\x55\x8d\x30\xc2\xe3\xe6\x11\x10\x98\xbe\x2f\xab\x50\x8f\xa7\xbc\xff\xe2\x62\x73\x68\x36\x8c\x9b\x7b\x64\x4e\x24\x47\x7d\xf4\x2c\x45\xc6\xe0\x36\x09\x48\x55\xec\x27\x27\x93\xb9\xb5\x75\xb1\x6f\xa9\x99\x77\x23\x2a\x7a\x1e\x65\xf1\xc4\xa3\x75\x90\x03\x13\x65\xc2\xc4\x8a\xda\x35\x72\xf7\x8b\x3c\x8e\x78\x8f\x2c\xdf\xf4\x40\xc6\x2b\xcd\x6e\xb4\x16\x79\x9d\x7c\x74\x82\xaf\xe3\x7d\xeb\x49\xa5\xda\x59\xac\xa7\x2f\x94\xcb\x04\x08\xf6\x6d\x6d\x59\x65\x70\x14\x77\x5a\x5c\xe1\xc0\x85\x23\xde\xd8\x36\x61\xca\xa9\x0f\x68\x34\xed\x02\xe5\x73\x6a\x3f\x11\x78\xdf\xc3\x4b\x47\x40\xa6\xb3\x7c\xc8\x0e\x7e\xd2\x0a\x8a\x6d\x10\xc1\x87\xcf\x7a\x1f\x5b\xd0\x37\x35\x0e\xcc\x3b\xe2\x51\xac\x4a\x07\x25\x94\x95\xe5\x30\x8b\x21\x4d\xf9\x1c\x91\xbe\x1b\xd9\xc3\xf2\xd7\x1b\xa3\x8a\x7f\x3f\xea\xf5\xd7\xcd\x46\x23\x78\xeb\x8b\x34\x8c\x7a\xd1\x37\xbf\xcc\xa8\x1b\x15\xb3\xc1\x59\x01\x82\xe6\x54\x22\x03\x12\xe0\xcf\x70\x3d\xb8\x86\xf3\x54\xff\x5e\x4d\x87\x43\x8b\xca\x27\xf6\x93\x56\x3e\xf5\xa4\x4e\x9a\x24\x4a\xf2\x42\xe8\x45\xfc\x08\xca\xb1\x56\x00\x6d\x1c\x23\x8b\x2c\x39\xeb\xb3\xf2\xbc\xd0\x2c\x44\xc5\x11\x61\xc9\x59\x69\x54\x62\xc9\xdd\xc1\xe5\xa1\x3e\x7b\x47\x5e\x96\x6b\xd9\xe1\x95\xaa\x72\x1e\x0b\x23\xbd\x8b\xe7\xed\xf4\xa0\xe5\xd5\x79\xa5\x94\x85\x43\x1a\x70\x3f\xc4\x6a\x41\x4b\xe1\x91\x3c\x11\xf4\x57\x74\x9a\xd9\x23\x5a\x3c\xb3\xf9\x55\xae\x4e\xb5\x08\x64\x74\xc3\x97\x2e\x8b\x34\x89\x7a\xfd\x62\x7b\x69\x39\xbd\x4a\xe3\xaf\xff\x96\x1a\x92\x3f\x1e\x87\x10\x58\x2b\x2a\x0a\x3a\xa1\xe4\xea\x11\x6e\x05\xd7\x35\xdd\x20\x59\x5c\x6c\x16\xe5\x4f\xd8\x44\xcb\x3a\x2e\x26\x6c\x78\xd6\xfa\x0b\x34\x54\xb3\xde\x8f\xde\x7c\x13\x9b\x73\x7f\x50\xaf\x2e\x6f\x1c\x50\xb2\xab\x04\x03\xbd\x4f\xf3\x0f\x2b\x51\xb2\xaa\x19\xa3\x8b\x43\xe4\x7a\x5d\x20\x12\x38\xa5\xd6\xa2\x3c\x2a\xd2\x4c\x4b\x2c\x8c\x41\xc1\x46\x7a\x80\x0f\x22\x26\x3e\x37\x0e\x31\x71\x19\x90\x9a\x62\xa4\xf3\x6b\x4e\x7a\x43\xbe\xc5\x09\x74\xec\xf1\xa9\xa0\x5d\xd1\xe8\xc3\x53\x98\xf9\x2c\xf0\x47\x53\x55\xac\x7d\x4b\xcd\x24\xcd\xd6\x6d\x2f\x32\x89\xcb\x7b\x5d\x17\x9b\xc7\xf8\xc6\x2f\x51\x80\x9e\x17\x59\xd4\x91\x41\xfa\x39\x52\xb2\xa5\x66\xfa\x3b\xe3\x30\xd2\x71\x06\xcb\xd2\xcf\x28\xbc\xe6\xa7\xed\xcf\x4c\xe1\x13\xf6\x2d\x35\x63\xdb\x8b\x0a\x65\xbd\x5c\x5c\xf4\xac\x1e\x8d\xa5\x40\xf7\x11\xa2\xb5\xdf\x5c\xda\xdb\xa8\x88\x56\x31\xb1\xf8\x65\xa2\x76\x88\x92\xae\xb5\xdd\xdd\xd2\x09\xc1\x3a\xd2\xc9\x54\xef\x8d\xbd\xec\xbb\x52\x52\xf9\xd0\xed\xb5\x30\x41\xdc\xf0\xa3\x9b\xbf\x0f\xc7\xaa\x5f\x25\xf1\x9d\xab\x8b\x95\xdb\x06\x26\x02\xd5\x50\x57\x29\x7a\x29\x74\x22\x07\xcb\x65\x72\x99\xe7\x8e\x39\x03\x06\xe9\x2e\x19\xa7\xbb\xb5\x13\x2e\x80\x02\x49\x86\x4f\x10\xa8\xfd\xbe\x7e\x1a\xcc\xd6\x75\x2a\xa0\x0c\x4c\x94\xa8\xcb\xf1\x20\x2a\x5f\x23\xf8\x9f\x99\xf0\xe6\xbc\xef\xbb\x0c\x4c\x2f\x49\xe3\xc8\xe4\x2c\x1a\x72\x03\x2b\x02\x5b\xe3\x86\x1a\x15\x38\xed\x37\x98\xc9\xd8\x5a\x27\xb9\x03\x6c\xd4\xff\x86\xe9\x70\x3d\xa9\x69\xea\x37\x43\x5d\x0e\x66\x0d\x5b\x54\x8f\x7d\x05\x65\xd9\xe4\x4a\xdc\xbf\x44\xa4\x2c\x9e\x2f\xe7\x2c\xbd\xef\xc4\x0c\x63\xab\x62\x51\x4a\xc7\x48\xea\x86\x81\x35\x4e\x44\xd0\x84\xd9\xdf\xeb\x87\x79\xd2\xcb\x2f\x5b\x2f\x11\x06\x25\xea\xf5\x97\xd3\xac\x9f\xa6\xdd\x19\x89\xef\x3c\x4c\xe2\xf0\xbc\x3a\x3b\x65\xc0\x56\xe1\xca\xda\x9a\x57\x37\x5d\xef\xa2\x66\xe9\x67\x79\xbd\xc6\xfc\x79\x32\x14\x79\x3c\xea\xf5\xa2\xbc\x3f\x3b\xcd\xc4\xe5\x88\xc3\x42\x3e\x7c\x05\x0d\x3e\xc7\x2e\xf6\x0c\xe9\xe5\xc6\x69\x02\x61\x40\x47\x98\xf5\x7f\x73\xf6\xa7\x31\x92\x9c\xe9\x7d\x20\xde\x9d\x55\xd5\xd5\x64\xb3\xc9\x66\x93\x9c\x19\xdb\x32\x9c\xb0\xc7\x7f\xca\x06\x45\xc9\x63\xc8\x7f\x69\xbe\x44\xaa\xba\x3c\x34\x1b\x9a\x62\xa3\xba\xd5\x5c\x11\x36\xc0\xc8\xc8\xb7\x32\x83\x15\x19\x91\x8c\xa3\x8a\xc5\x4f\x8b\xfd\x60\x2c\x8c\xfd\xb4\xde\x85\x01\x2f\x60\x2c\xec\x5d\xdb\xa3\x95\xa5\xd5\xe8\xb2\xce\x4c\x8e\xe6\xd0\xcc\x48\x33\xbc\x86\xc7\xf0\xea\xfb\xaa\xee\xea\xfb\xee\xae\x5e\xc4\xf3\x7b\x9e\xf7\x7d\xa2\x22\xb8\x30\xf6\x13\x23\xd8\x95\x99\x11\xef\xf1\xbc\xcf\xf1\x7b\x7e\x3f\xc5\x73\x73\x5e\x67\xc8\x92\x30\xaa\xa4\x48\x30\xae\x7c\xdd\x98\x55\x89\x42\xd3\x35\x69\x4b\xf3\x7e\xad\x6b\xc6\xf5\x7a\x76\x63\x61\xa1\x1d\xf9\x45\x7f\x90\xa9\x1a\x1d\xf3\xdc\xf1\x4d\xa5\x20\x3a\xf2\xe3\xdd\xe5\x1f\x22\xd2\x7c\x17\x67\x13\x12\x58\x57\xd1\x8a\xc6\x8c\x85\xbc\xe9\x61\x85\x50\x49\xe1\x96\xe6\xb1\xc2\x17\x5e\xc2\xec\xe0\x0c\xdc\xd5\x71\xfc\xd7\xbf\xaf\xf8\x12\x6f\xe1\x71\x10\x97\x6f\x68\x42\xa2\xcd\x31\x75\x7e\x79\xaa\xd1\xfc\xcd\xcf\x55\x74\x0a\xfc\xb8\x17\xf6\xa6\x5c\x96\x0a\xe2\x47\x16\x7b\x52\x7e\x87\xa8\x42\x36\x98\xc0\xac\x18\x99\x94\xb4\xc7\xa0\x9b\x02\x9b\x0a\x3a\x48\xbe\xae\x01\x69\x16\xe7\xda\x49\x6c\x66\x2b\x5c\x18\x8b\x73\xe2\x95\x2b\x66\x40\xc6\x9e\xc8\xf1\x57\xba\x0f\xd8\x3e\x9f\x21\x0a\x61\x10\x85\xaa\x36\x1e\x6f\x54\x90\x4c\x93\x1e\x53\xd5\x57\x1a\x07\x85\x23\xcc\x99\x9f\x6e\xd2\x2f\xd8\x8c\xd8\x7a\xb8\x6d\xbd\xb9\xa3\x0c\x7b\x7d\xcb\x94\xbf\x43\x7a\x10\x33\xae\x39\xed\x24\x7e\x07\xc1\x26\xb3\x28\x8b\x58\x1c\x0d\x2c\x72\xde\x17\x3c\xcd\x2b\xed\xe4\xf8\xfd\x55\xdb\x7b\x62\xfb\x06\x54\x43\x81\xa4\xd6\xbb\xc9\x6b\x6b\x80\x73\x58\x40\xaa\x4d\xde\x3c\xda\x71\x18\x54\x26\x88\x16\x7d\x14\xb1\x54\xaf\x24\x03\x3f\xce\x92\xb8\x5a\xb0\xa9\xc8\xed\x39\x07\xcf\x1f\x8d\x22\x83\x92\x1a\x88\x27\x4e\x20\x84\xe6\x9b\xb1\x6a\xc2\xfa\xe1\xd8\x71\xb6\x9c\xc7\xbb\x5b\x59\x69\xa7\x45\xf3\xad\x0a\x76\xcb\xbe\x52\x94\x04\xb3\x64\x88\xed\x02\xb1\xdd\x7f\xbc\x0d\x11\x9c\x33\xe4\xcc\x52\xcb\xb9\x7e\x27\x94\x58\x10\xff\xee\xea\x28\x0e\xb5\x89\x83\x4f\xae\xfa\xa3\x6c\xda\x6d\xf0\x4f\x2a\x2c\xdb\xca\x8d\xdc\xd9\x51\x14\x5e\xe7\xed\xc0\x0f\x8c\x9f\xcf\xaa\x60\x7d\x1b\x95\xdd\xe5\xc1\x1c\xac\xf2\x2e\xc6\xc8\xe6\x31\xca\x31\x12\x6e\x53\x87\x83\x38\x5e\x55\xb7\x73\x49\x87\x7c\x90\x1a\x3f\x37\xb6\xbb\x5d\xb4\x18\xca\xe1\x15\xd0\x8f\x73\x33\x7e\x25\x5e\x23\x06\x62\x5a\x5a\xe3\x2f\x74\x94\x83\x80\x52\x02\x4c\xde\xf5\xb1\x6a\x6a\xdb\xad\x9a\xe3\xc3\x38\x2b\x52\x93\x4e\xeb\xc8\xea\x14\x32\x03\x3a\x6f\xc7\xd7\xaa\x4f\xfc\x94\x6a\xb1\x1c\x9a\x7c\x90\xf4\x00\xc7\xb1\x38\xda\x05\x89\xc2\xdf\xb6\xf9\xae\xcc\xcf\x4d\x14\x85\xb9\x41\x5b\x01\xc7\xfe\x63\x25\xf4\x0b\xd5\x0a\x9c\x53\xbb\x3a\xae\x3b\x03\xb1\x0e\x1c\x08\xb7\x96\xa3\xa4\xdb\x5d\x93\x72\x14\xaa\xf1\x9c\x96\xe0\x1b\x85\x13\x5e\x0e\x83\x65\x6c\x75\xf1\x9f\x5b\xfb\xf7\x6f\xde\x51\x65\x8e\x8d\x26\x9a\xcd\x30\x7e\xb5\x08\x53\xbb\x31\x85\x94\xcd\xc5\xe9\xda\x95\x4b\xcd\x2b\x49\x08\xd0\xb2\xf0\xb4\x94\x7f\xc8\xd7\x6a\x21\x45\xc3\x96\x73\xd8\xd8\x1e\x48\xa0\xe3\xe6\xf6\xd7\x9e\x7b\xa1\xe5\xb4\xfc\x79\x93\x8a\x15\xdb\x6d\xdd\xa1\x34\x1f\xf8\x53\xee\x4c\x54\x4c\x43\x13\xd6\x30\xc3\x8a\xab\x67\x6c\xf7\xef\x27\x6d\x76\x7a\x16\x04\x12\x57\x54\x7f\xca\x15\x25\xb3\xde\x1b\x05\xd3\xe5\x59\xa4\x4a\xf0\x07\x2b\xb0\x05\x29\xc7\x2b\x12\x88\x8d\x5a\x5e\x62\xfe\x50\xbb\x18\xae\x2a\xed\x5c\xa6\xe0\xe3\x1b\xd5\xef\xde\x37\x66\x59\x0a\x33\x88\x1a\xaf\x7b\x2a\xde\xf9\x18\x9f\x93\x3e\x56\x97\xb7\xf4\x23\xff\x59\x85\x0a\x66\xbb\xcb\x37\x4a\x3d\x49\x3b\x4d\x68\x44\x83\x4d\xf8\x0e\x45\x07\x7c\xdd\xc0\x8b\x78\x10\xbd\xd6\x5a\x58\x0a\xf0\x0e\xbe\x56\xe8\xa0\xd4\xc4\xfd\x7c\xc0\xf1\x0e\x8e\x65\x38\x7a\x7c\x3d\x76\x38\x87\x9e\x19\xfa\x71\xcf\xf4\xa6\xdc\x93\xbf\xe3\x94\xb8\x7f\xe5\x0e\x3c\x7a\x46\xce\x7b\x5b\x8f\xf6\xe7\x17\x2c\xb5\x3d\x55\x71\x6d\xd6\xe7\xa2\xa7\x3d\x31\x85\x9d\x4b\x56\x4c\xb6\xcb\xb5\x34\xf3\x74\x22\xc9\x77\x9b\x76\x1a\x8b\x0c\xb1\x23\x2d\x32\xd5\x0a\x4c\x7a\x04\x31\x0a\x7f\x81\xa7\xf8\xb2\x59\x82\x1c\xde\xc0\x65\x05\xcb\xbb\x44\xb5\x09\xab\x53\xad\xb4\x8f\x1a\xd8\x4a\xba\xa9\xe1\x0e\x64\xc7\x45\x70\x46\x73\x11\x9c\x51\xe7\x78\x66\x46\xf9\xb3\x84\x36\xc6\x5a\xe1\xa3\x0f\xa7\xc1\xa7\x9e\x2a\xa4\x9f\xf6\xb4\x28\x05\xc0\xf0\x42\x32\xb3\xd5\xdd\x59\x9c\x6b\x0f\x4d\x30\xf0\xe3\xf0\x75\x49\x09\xe2\x00\x3f\xa9\x98\x30\x19\xaa\x0f\xcb\xf4\x6e\xcd\xed\x2a\xdd\x84\x5e\x98\x05\xc9\x8a\x49\xf1\x25\x2f\x39\x2c\xc6\x96\xd2\xd5\x3c\x5b\xad\x4b\xb5\xe6\xe7\xfd\xfb\x17\x4b\xdb\x19\x66\x4b\x7e\x90\x0b\xa4\x52\xc8\xb7\x9c\x67\xbc\xae\x97\x54\x98\x8d\x8a\x1c\x71\xc6\x81\x4d\x12\xc0\xd8\xfc\x40\x49\x14\x87\x71\x96\x87\x39\xfd\x85\x43\x8d\xf2\x50\x89\xb6\xd7\xe7\x11\xeb\x87\x51\x14\xc6\x49\x98\xa1\x5d\x84\x3d\x52\x45\x3c\x70\x42\xb3\x83\xdd\xf6\xb6\xe2\x58\x20\x8e\x69\xc9\x34\xca\x51\x10\x32\x8d\x5a\x60\x72\xa0\xa2\xf8\xdb\x64\x7d\x1b\x12\xab\x91\xa1\x44\x3c\x1e\xcf\x0a\x6b\x5b\x88\xf3\x75\x25\x61\x7a\xaf\xb6\x9b\xe4\x25\xd7\x8c\x9f\x46\x6b\xe4\x2e\x58\x11\x71\x2b\xdc\xf7\x0e\xde\x10\xab\xed\xe8\xd8\x41\x54\xef\xa8\xf6\xe5\xdc\x7f\x6d\xe4\xaf\x95\x9e\x72\xf9\xec\x4c\x75\xa5\xf0\xba\xda\x13\x0d\x52\x7f\x09\x19\x37\x89\x37\x74\x20\xe2\xb2\x2d\x45\x1c\xae\x98\x34\xe3\xda\x92\x90\x3b\x2b\xa7\xe4\xbc\x02\x44\x45\x45\x1a\x0c\x30\x0a\xf8\x45\xb4\xc3\xe2\x2c\x87\x36\x95\x38\x29\x4a\x9c\x04\x52\xe8\x26\x9d\xd2\xc2\x61\xa7\x94\x47\x76\x55\x47\x09\x9b\x4d\xfc\xd7\x7d\x52\x53\x9a\x6a\x59\x41\x93\x9f\x8c\x5d\xdb\xc5\x05\x55\x75\xbd\xd6\x24\x7b\x46\xd0\x25\x65\x0a\x4f\xeb\x6e\x1d\x34\x4d\x22\xa1\x71\xb6\x19\x63\x55\xc4\x7d\x70\xf7\x49\xea\x99\xab\xc4\xb2\xe2\x1c\x5e\xe3\x6d\x45\x0d\x76\x11\xca\x14\x7c\xf4\xf6\x93\xdd\x14\xc7\x21\x16\xb9\x4c\xb1\x88\xc4\xfc\xf4\xf6\x70\xfb\x3e\xf5\x5c\x03\xe0\x29\x36\x96\xc8\x25\x40\x25\x47\xf4\x65\x55\xac\x7c\x15\x79\x49\xc4\xe8\xdc\x88\xc4\x72\xba\x9e\x83\x3a\x9c\x42\x48\x88\x9f\x24\xb1\x80\xcd\x6b\xf4\xb0\xf2\x10\x92\xaa\xec\x25\xb1\xd3\x8d\x40\xd4\x88\x3e\x2b\xac\x1d\x0e\x49\x00\x14\x7b\x4f\xe1\x49\xfc\xc0\xef\x99\x61\xe8\xb7\x14\xd0\xf9\xac\x8a\x37\xce\x2a\x20\x46\xcf\xc4\x71\x98\x11\x48\x05\x71\xe2\x09\xcf\xa9\x93\x9d\xb0\xde\xdd\x28\xc9\x4d\x9c\x87\x0c\xd8\x15\xb2\xf1\xaa\x78\xb4\x55\x27\x1d\x7b\x2e\x23\x74\xab\xa9\x18\x23\xa9\x3c\x8e\xcf\x30\x93\xa7\xf0\x3a\x4a\x36\xea\x25\x4b\xe3\xb4\x47\xf1\x37\xa6\x81\x30\x0b\x4b\x03\x8e\x8a\x08\xce\xa8\x4e\xf2\x13\x4d\x09\x70\x3f\xcf\xcd\x70\x04\xaf\x12\x3f\x75\x5f\x31\x85\xdf\x6f\xe4\xac\xfd\xff\x40\x83\xb1\x7f\x7f\x3b\x2b\xd2\x15\xb3\xc6\xaf\x68\xf9\xa8\xec\x4f\xc1\xf7\x66\x82\x81\x86\x9a\x4b\x96\x87\x4b\x91\xd4\x6c\xb0\xa3\xb8\xf3\x19\xee\x08\x8c\x32\x4e\xe2\x93\x5b\x1b\xbc\xe6\x0f\xb5\x0f\xcf\xbd\xf4\xa4\x93\x5c\x6b\xa1\xb9\x07\x7f\x7e\x14\x6b\x16\x21\xdc\x59\xa4\x71\x58\xe8\x05\x4b\x93\x65\x71\x3d\x05\x6c\xfa\x50\x43\xd6\x24\x09\x87\x05\x7b\x57\x77\x4a\xbe\x41\x35\x5f\xe1\x5d\x2e\x57\x35\x3c\x07\xa6\xaf\xc7\xd6\xfa\x73\xe4\x94\x84\x01\xaf\x65\xe3\x7f\x80\xdc\x70\xea\x40\x18\x80\xe5\x41\x50\xea\xc1\x57\x9d\xc0\xb9\xc2\xca\xc4\x34\x0c\x08\x53\xd7\xc9\x09\x11\xc5\x55\x41\xb6\xe5\x04\x69\xee\x25\xab\x70\xde\xb9\x55\x48\x85\x94\xe7\xd4\xd1\x1a\x0e\x47\x49\x26\xeb\x0b\x11\x23\x03\x6e\x30\x40\xac\xd0\x25\x0f\xd2\xd0\xbd\x96\x06\xff\xe4\x2b\xbf\xf4\x0b\xaa\xbb\x77\x43\x13\x1a\x6c\x58\xec\x14\x6b\xd9\x5a\xb7\x0e\x29\x13\x46\x2b\xf3\x4d\xd3\xb2\x1a\xfa\xe9\x6b\x04\x61\xb7\xec\x1e\x5c\xa7\x90\xec\xd1\x23\x16\xf8\x65\xe2\x1e\x27\xca\x6c\x0e\xa3\xfc\x43\x69\xd3\xaf\xe1\x3d\xe7\x2d\x5b\x9d\xd5\x30\x3d\xaf\x18\x6e\xcf\xdb\x21\x4d\xcd\x28\xc9\x32\x93\x49\x49\x50\x7a\x98\x5c\x15\xf1\x7b\xf6\x31\xb2\xbc\x58\x5a\xc2\x26\x10\x99\xdf\xd6\x82\xd3\x3e\x2e\x97\xa8\xe4\x67\x76\xdb\x19\x4b\xfb\x61\x4f\x09\x26\xac\x2b\x69\x94\x75\xcf\x31\x52\x07\xc9\xb0\x1b\x42\x8b\x04\x8d\xde\x96\xc1\xd4\x41\x2e\xd6\x6d\x34\x05\x65\x54\x3c\x31\xd3\x66\xc2\xe4\x08\x87\xa6\x3b\x28\x57\x93\xb8\x67\x10\x19\x3a\x92\xf4\xb7\x69\xa1\x8a\x66\x60\x3d\x9d\xbc\xd0\xee\xf9\xb9\xaf\x71\xac\xc8\x9d\x89\x46\x2d\x0d\xbe\xa8\x87\xd5\x67\xf6\x60\x3b\x0d\x57\x2c\x43\x97\xb0\x48\x28\xa5\xc4\x8f\x1b\x80\x5b\x07\xda\x81\x28\xb1\xbe\x64\xd1\xc9\x15\xdc\xb2\x58\xf0\xa4\x9b\x99\x74\xc5\x82\x6a\xb0\x43\xaf\xd1\x2b\xf1\x75\x0d\xbc\xba\x6f\xbe\x3d\xf4\x63\xbf\x6f\x2d\x5f\x93\x5b\xea\x06\x8d\x39\x46\xa2\x35\xaa\x14\x30\x07\xf1\x58\xb1\x61\x5f\xf1\x74\xea\xc7\xc5\xc2\x03\xd3\xdb\x53\x3e\x87\x45\xe6\x96\x53\x29\xb0\x00\x85\xd2\xdb\x3e\x71\x4d\x9d\x37\x11\x37\x59\x1e\x6f\xc7\xfd\xf3\x08\xa1\xab\xb0\x77\x67\x08\x30\x00\x50\x02\x60\xbd\x94\x7e\xf8\x8d\xbf\x37\x71\xfd\x4e\x4f\xfd\x7c\x47\xf1\x34\x3d\x50\x66\x75\xa6\xe3\x18\xde\xbf\xfa\x73\x1d\x32\x41\x16\xc0\xeb\x14\xf4\x1e\x9b\xb4\x2c\x09\x6d\x5d\xce\x83\x00\x3a\x79\xe4\xc7\x79\x18\x28\xcd\x52\x8e\xf8\x91\xa7\xbd\xcf\x91\x8b\x34\xa1\xba\xac\x43\xe4\x07\xcb\xc2\x1e\xd3\xd4\x49\xf0\x98\xc5\xe4\x2e\xe5\xb1\xb0\x0a\x70\xb9\x85\x46\x5b\x4a\x2f\xce\x1d\x1d\x85\x51\x94\xcd\x50\x84\xc7\xf8\x9d\xb1\x6a\xfe\x42\xf0\x26\xff\x50\x8e\x1e\x72\x70\x37\xa8\xc0\x84\xb1\x9f\xea\x38\x3f\x74\xd5\x84\x29\x62\x5b\xd1\xd8\x6f\x3d\xfd\x34\x1f\x3a\x3f\xf0\x5c\x29\xad\x8e\x5c\x12\x67\x7c\xa9\xa0\x3e\x00\xce\x52\xc1\x16\xb0\x5b\x08\x9c\x4a\xab\xe3\x8a\xba\xe7\xb5\x6a\x15\x75\x15\x59\x62\x8d\x20\x29\x52\xbf\x8f\x4a\x0d\xad\x0d\xec\xbb\x63\x60\x02\xe4\x1b\x95\x4e\x08\x92\x55\x50\x86\x63\x2c\xa7\x49\xcc\x8a\xaf\x27\x0d\x1d\x80\x07\xdb\x41\x94\x64\xa2\x80\x21\x2d\x1f\x15\x1c\xb2\x25\xd3\x2c\xbd\x5c\xaa\x51\x22\xbc\xb8\xbb\xc5\xcb\x55\xee\xaf\xdb\x11\x27\x35\x9b\xc5\x6d\x85\x0d\xfb\xe5\x5f\xfe\x0a\x8c\x0a\x22\xd4\xef\x8c\x5d\xde\xe9\x84\x42\xcd\x7e\x5a\x4b\xc9\xec\xdb\xd7\x4e\x43\xf0\xfd\xc0\x7b\xe4\x06\x20\xbe\x69\xea\x7b\xf0\xd3\x21\x1b\x13\x1c\x27\x2c\x2a\xcc\x37\x56\x7e\x21\x2b\xba\x79\x18\xb1\x27\xcf\x49\xda\xb1\x0a\x73\xef\xe9\xbc\xf0\x6c\xe7\x71\x0d\x8d\x0a\xb3\x3c\x5d\x9b\x52\xcd\xff\x4a\x04\xfb\xff\x52\xa8\xfc\xfb\xe7\x9b\xea\xb4\x7e\xef\x95\x22\xcb\x6d\x39\xce\x62\x18\x1c\x9e\xa1\x66\xc6\x64\xa1\xbd\xba\x02\x01\x26\x61\x6b\xa1\x9f\x12\x91\x29\x87\xd7\x64\x7f\x61\xda\x51\xb6\xfe\x99\xa2\x6c\xfd\x33\x4f\x15\x7e\x4f\xe9\x74\x5c\x2d\x03\xf7\xf2\xcb\xed\xa1\x8f\x6a\xc5\xc2\x26\xe0\x45\x9b\x1f\x34\x11\x8a\x2e\x71\x48\x65\xd3\xfb\xe8\x4a\xd4\xf9\x72\x16\xb2\x69\xe0\x30\x7d\xa9\x3d\xf2\xd3\x65\x39\xd7\xa4\x03\xa8\xa5\x48\xcc\xb7\xfe\xe2\xd3\x4f\xb7\x93\xa5\x25\x9b\x7f\x81\xe1\xba\xea\xa9\x9a\xc1\xd5\x4a\x97\xc5\x5a\x6e\x80\x63\x83\xb3\x0a\x32\x14\x44\x42\x60\xdd\x92\x0e\x30\x57\x1f\xbd\xaf\xf0\x53\x96\x15\x4a\xc7\xec\x78\x2b\x64\x6b\xbf\x4f\x1b\x02\x8b\xfb\x6c\x2d\x5c\x20\x01\xcf\x20\x37\x69\xc8\x4d\x7e\xcc\xfd\xa2\xc4\x3e\xce\x37\xa6\x66\xfc\xa5\xa5\x30\x82\x24\x24\xbd\x27\xf2\x17\xac\xe8\xc6\x37\x0d\xad\x17\x0b\xed\x2c\x59\x09\x59\x1a\x07\x0f\xf8\x96\x2e\x40\xbf\xa5\xac\x73\xd7\xef\x86\x92\xbf\xb0\x32\xe8\xe5\xe1\x25\xc7\x92\x4b\xb2\x3e\x1d\x45\x3b\x55\x1b\xd5\x23\x1d\x67\x66\xaf\x8e\x35\xa4\x0f\xf3\x00\xf4\x17\x67\xf6\xe1\x33\x1c\x53\x35\xdf\x1d\x13\xb7\x40\xd0\x1e\x29\x90\x15\x89\x1d\xbb\x45\xb2\xe6\xf3\x26\x11\x02\xc3\x96\xe5\x7a\x3c\xa3\x58\x29\xd3\x22\xcb\x42\x3f\x86\x89\x11\x90\x82\xda\x27\x4a\xdf\xe3\xbf\xd4\xd6\xd2\xd7\x49\x7a\x93\x10\x22\xb6\x15\x10\x30\x6c\xbe\x56\x88\xa2\x51\x38\x32\x2c\x14\x0a\x2b\x7f\x19\xe6\x88\x6f\x1a\xcb\x70\x41\x12\x25\xe9\x74\x45\xde\x10\xe7\x04\x42\xe0\xdf\x1f\xab\xea\xba\xa7\xfa\x2e\x7f\xdf\x7b\xc4\x95\x41\x56\x98\xa6\x49\x6a\x6a\xf4\x08\x38\x5b\xee\x54\x24\x52\xd4\x21\x09\x4b\xef\x20\x72\x8c\x91\xe1\x1b\xa5\x56\xb8\x14\x99\x20\x37\xbd\x69\x25\x28\xf6\x3b\xf8\x05\x20\x3a\xbf\xa5\x24\x40\xce\x68\xf8\x5a\x55\x4e\x28\x37\xd1\x4c\x19\xbd\xc0\xd2\x72\x6e\xdf\x82\x98\x2d\xce\x03\x05\x41\xcc\xc6\x4e\x9a\x78\xe0\x9b\xa6\x26\x8f\x59\xdc\x71\x54\x0c\xbb\x45\xa6\x5a\x94\x98\xba\x92\x6f\xac\x67\xee\xaf\xf8\x21\x72\x4d\x36\x83\x6d\xbb\xc1\xea\xca\x0c\xcf\x2f\xb4\x03\x7f\xd8\x4d\x43\xbf\x55\xd9\xc7\xf4\xd5\xa2\x08\xbd\x57\xa1\x3f\xb2\x9c\x94\x22\x14\xbf\xe0\x55\x4f\xb3\xc2\x36\x74\xd9\x1f\x6c\x8f\x92\xd0\x11\x59\xc1\x2f\x3f\xa7\x9d\x74\xdd\xdb\x98\xf9\xc3\xc2\x44\x8a\x9e\xf6\x98\x6a\x08\x3d\xa6\x17\x5e\xe4\xe7\x5c\x34\x16\x72\x22\x45\xf3\x7b\xbe\x16\xf3\xcb\x81\xd1\x33\x51\xee\x53\xc2\x03\x49\x1c\x24\x17\x2c\x91\xad\xf5\xe5\xfe\x50\x6b\x92\xdd\xad\xa5\xbd\x0e\xcf\xb5\xf3\x22\x96\x97\x92\x3d\xa2\x0a\xb8\x47\xac\x1b\xd7\x37\xb1\x49\xfd\x1c\x9a\x9d\x38\xd6\xaf\x8d\x5d\xdb\xd3\x71\x4f\xe9\x60\xd6\xf1\x7d\x8b\x73\xed\xa5\x24\x5d\x32\x21\x53\xd9\xc0\xd4\x80\xc8\x8a\xaf\x15\xbb\xda\xaa\x9f\x9b\x94\xca\xdc\x2d\x27\xf2\xf8\x89\xa7\xc4\x8a\x5c\x5d\xba\x2f\xcc\x84\xb6\x6e\xeb\x02\xc9\x3a\xef\xf9\xe1\xb9\xf9\x76\xe0\x17\xfd\x41\x3e\xe5\xc2\x3b\x0e\xca\xd0\x68\x75\x59\x39\xb1\x3f\xa8\xb5\xf1\x38\x91\xd7\x72\x21\xdb\x08\x59\xc4\xcb\x95\x6e\xc2\xc9\x06\x6e\xd4\x05\x68\xdf\x85\x01\x0a\x39\xd8\xdb\xad\x89\xdb\xe7\xad\x8e\xa3\x5c\x18\x26\xa9\x3f\xe5\xf2\x0c\x5c\x2d\xb1\x62\x0f\xe5\x42\x17\xfa\xd8\x06\x6f\x69\x2d\x29\xd2\x56\xa5\x9e\xec\x1c\xde\xf3\x8e\x75\x26\x89\x63\x13\x20\x48\x75\xf5\xcb\x73\xaa\xf1\xbc\x5e\x25\x79\x7e\xa1\x9d\x27\xa3\x7e\x5a\xfa\x0f\xae\x25\x06\x20\x44\xbe\xfe\xdc\x65\xbb\x6c\x84\x6e\x03\x07\xc7\x35\x7d\x8a\x5c\xab\xd2\xa6\xa6\xf9\x5e\xd8\x53\x05\x3c\x94\xfe\xea\x4f\x55\xef\xc9\x39\x95\xa0\x3c\x4e\xa1\x00\x70\xec\x15\xd8\xf7\x2c\x74\xae\x2d\x63\x69\x39\x30\x92\x3a\xa8\x52\xfe\xef\x9b\x77\x1d\xba\xa5\xab\x0e\xb7\xe7\x24\x45\xa3\x70\x1a\xaf\x28\xcf\x78\x1b\x38\x0f\xf9\x8f\x34\xf6\xec\xaf\x70\x74\x22\x0b\x77\x45\x81\x3a\xbe\x8d\x89\x84\x5d\xba\xeb\x3d\x14\xb6\x47\xa9\x59\xfa\x47\xed\x67\x67\xca\x67\x47\xde\xe7\xbb\x63\xd7\x2e\x74\x1e\x25\x2f\x3c\xe0\xa5\x0a\x6c\xa6\x7c\x58\xbe\xf6\xb6\xae\xd4\x72\xa5\x13\xf7\x7e\xd1\xcd\x82\x34\xec\x1a\xa0\x6f\x84\x4f\x42\x1d\x03\xe8\x5b\x10\x4f\xdd\x95\xd7\xfd\xf8\xb5\x30\x29\xb2\x16\x05\x97\xc2\x57\x44\x3e\x84\x10\x19\x6d\x8d\x9b\xf6\xef\x2f\xdf\x25\x4d\xfa\x3e\xcb\xd5\xaa\x9e\x36\xd5\x10\xb1\xde\xcc\x8c\xb8\x4a\x45\x51\xc7\x74\x78\x51\x79\x6d\x9a\x94\x3c\x19\xe5\x5c\xcc\x41\xb4\x80\xe2\x29\x5f\x7f\xae\x2c\xf3\x2b\xc6\x8f\x4d\x9e\x1b\x45\xdd\xff\x96\x66\xc4\x7b\x4b\x55\xa9\xd6\x92\x22\xee\xd3\x21\x31\x45\x6b\x40\x6b\xf3\xd9\x86\xdd\x72\xde\xb9\x92\x58\x0b\x6f\x08\xd8\xb5\x36\xa5\x54\x64\x37\x94\x02\x2a\x53\xa1\xa2\x1f\xe2\xa6\xa3\xfa\x1d\xf8\x19\x9a\xfa\xb0\x36\x2e\x2b\xf5\xfe\x77\xb4\x69\x39\xab\xb2\x82\xaf\xf8\x41\xd2\xcd\x92\x78\x5a\x61\xb9\xce\x29\xbd\xf0\x75\x55\x8c\x5d\x1f\x3b\xec\x79\x7d\x5f\x1f\x78\xe1\x60\x3b\xcc\x86\x7e\x18\x85\xb4\xaf\x05\x8e\xa5\xb1\x59\x95\xa6\x34\x46\x28\x3c\xe2\xda\x03\xde\xd7\xe7\xe1\x06\x75\x80\xe0\x74\x00\xb5\x1f\x3c\x5b\x76\x86\xe0\xe4\xa0\x4f\x9f\x95\x5f\x71\xf4\xe1\xe0\xd9\xd6\x21\x4c\xa1\x68\xc2\x2a\xf1\x36\x6e\xb0\xe5\x1f\x01\x90\x92\xbf\x59\xc5\x23\xdb\x27\x0e\xd0\x98\x24\x4b\x33\xaa\xe0\x71\x5e\xa9\x08\xb7\x14\xb7\x2a\x23\xf8\xe1\xb2\xbd\x8b\xed\x2b\x72\x3a\x75\x61\xf7\x97\x08\xa5\x14\x06\xc2\xb0\xae\xc8\x8b\x2c\x4e\xec\xa2\xf6\x65\x93\x60\x39\x14\x27\x13\x99\xc8\xab\xb0\x50\x7c\xd3\xa4\x1e\xd5\x4d\xa2\x72\x19\x52\xd6\x0a\x39\xf1\xeb\x9e\xa2\x56\xd8\x18\xab\x64\xf5\x87\xd6\xf3\x5b\x35\x7e\x94\x0f\x42\x93\x4e\xbb\xe2\xe8\x79\xad\x02\x34\x43\x69\x0b\xac\xbf\xb3\xc4\x41\x24\x26\x6f\xeb\xee\xa1\x45\x11\xf7\xcc\xc8\xc4\x3d\x13\x07\xb0\xf8\x9a\x93\x86\xaf\x2b\xa6\x3b\x16\x98\x97\x78\x93\x2e\xab\xa0\x59\x76\x03\xe3\x67\x70\xce\x45\x1d\xb2\xfc\x3b\x51\x9d\x54\x42\xfe\xf1\xc0\x8f\x03\xae\x29\xf3\x69\x70\x56\xf5\x6c\x9e\xf5\x1e\x57\x2a\xd4\x7e\x1c\x5b\x11\x38\x21\x66\x69\x39\x92\x16\x05\xf1\x84\x3e\x07\xa7\xa1\x05\x6f\xaf\x5c\xe9\xb3\x5a\xf7\xfe\xd9\x57\x9e\x85\xe7\x22\x2f\x8c\x8f\xc9\x50\xb8\xec\xc3\x70\x48\xea\x0a\xae\x54\xbe\xa5\xb1\xae\x81\x34\x61\x94\x26\x99\x09\x8a\x9c\xfb\x03\x99\x3e\xcf\x73\xb0\xcd\x6f\x36\xa4\xee\xda\x7e\x1a\x0c\xc2\xdc\x04\x4c\xb6\x21\xfd\x49\xce\x1d\xf9\x50\xd5\xa6\xd0\x55\x98\xed\xa6\x57\xc0\x71\xdb\x42\x6e\x91\x6f\x26\xb4\x3c\x84\xbf\x5c\x95\xf5\x66\x26\x4e\x52\xf6\x24\x59\x5a\x04\x0c\x0c\xcb\xe0\x64\x11\x55\xe6\xf8\x1f\x3c\x85\x79\xdd\xd6\x71\x45\x39\xf4\xed\x22\x8c\xdb\xd3\x71\x45\x47\x3e\x43\x11\x26\xd6\x53\xbd\x87\xe7\x9e\x6b\x67\x83\x64\xc5\xce\x2a\x72\xb1\xa7\x55\x8f\xe6\x69\x95\xb1\x8d\x97\xd7\x66\x14\xdf\xc7\x5b\x4a\x36\xf7\x53\x25\xf4\x79\x89\x9a\x73\x71\x88\xb3\xb6\x87\xa4\xf4\x9e\x70\x00\x8f\x20\x34\x71\x1e\x66\x79\x36\xeb\x12\x96\x0f\xb4\x0a\x0b\xb0\x92\xdc\x0b\x88\x89\xc6\x7e\x63\x50\x29\xaa\x31\xac\x39\x01\x3c\xee\x09\xea\xe9\x90\x1e\xf4\x06\x66\x8b\x28\x89\xfb\x02\x74\x95\xfc\x3f\x8d\x90\x54\x06\x9c\xe4\xd4\x5a\x52\x3c\x41\xee\x0b\xf2\xcb\x9b\x4a\x48\xf9\xb1\x49\xe9\xb1\xc0\x18\x7e\x36\x56\x7a\x47\x3b\x26\x84\x6a\xc5\x5f\x7d\xe6\x55\x16\xaa\x4b\xbf\xb3\xce\x98\x75\x1e\x6d\x7c\xff\x48\xc7\x35\x29\xdf\xa2\x8c\xaa\xd0\x2b\xa8\xd2\xd7\x03\x5a\x0f\x22\x42\x5d\xba\x29\xc0\x4d\x5c\x82\xc5\x83\x55\x9f\xc1\x9a\x83\x87\x34\xdb\x51\x8e\xd4\xcc\x44\x9d\x66\xb7\x14\x1a\x39\xaf\x04\xa6\xa6\x4f\x20\x51\xe1\x4c\x3f\x4d\x4e\xa1\xc4\x58\xce\xe1\xba\xa6\x30\x4d\x67\xe8\xcb\xb0\x6b\xa1\xd6\x82\x34\xf7\x4c\x47\x4d\xea\x59\x5b\x97\xf1\xbb\x59\x92\x76\xa7\xdc\xf7\x9e\x53\xb8\xe1\x33\x63\x87\x92\xbb\xed\x42\xd7\xbe\x1f\xc6\x3b\xe8\xf9\x2d\xd1\xf4\xa2\x60\x08\x79\xcf\x59\xa4\xb7\xf3\xb9\x8f\xb1\x41\xb1\x62\xf8\x0b\xc2\xa2\xf5\xa9\x4d\x9c\x2c\x19\xd2\x2e\x9e\x52\x90\x40\x68\x54\x49\xb9\xb4\x65\x55\x29\xea\xad\x72\x0b\x0b\xed\x34\x01\x34\xc7\x55\x3b\x37\xbc\x0a\xca\xd5\xc5\xc8\xe6\xb5\x91\x1f\x67\x61\x12\xcf\x96\x0f\x0f\xa7\xf4\x0f\xe8\xfb\xb1\x97\x21\x9c\x82\x71\x84\x6c\x14\x56\xc4\x79\xad\xd6\x70\x8a\x60\x0a\x28\xec\x4b\x5d\x56\x4a\xf2\x0d\x8c\xee\xfd\xd4\x98\x78\x90\x14\x99\xa1\x73\x0b\x4b\xfa\x8a\xa2\xe9\xfe\x36\xb6\x91\xee\xf9\x92\x75\xff\x98\x02\x85\x46\x11\x47\x65\x88\xee\xde\xd1\x18\xd4\x77\x54\xf2\xc5\xa4\x7e\xcb\x9d\xfe\x9c\x2e\x10\x99\x17\x77\x4c\x2d\x25\x69\x1f\xc7\x94\x75\x1f\x16\xed\x75\xcd\x8b\xda\xb7\xaf\x3c\x2f\xc3\x80\xc3\x7a\x87\x8f\x29\xbf\x40\x80\x33\x8d\x72\x36\xd9\x16\x1d\x76\x5b\x56\xbc\xd8\x24\x5c\x3a\x8a\x7c\xf4\x31\x08\xee\x83\x7e\x8c\x6f\x54\x1e\xb0\x67\xfc\xc8\xa4\x2d\x05\x4b\x61\x89\x53\xd1\x58\x73\xe7\x61\x16\x24\x29\xfa\x82\x95\x80\x90\x4d\x5e\xcf\x76\x9c\x13\x72\x15\x13\x21\x3c\x40\xb2\x3e\xa3\xb0\x34\x5c\x9c\xd3\xc4\xcc\x5c\xf3\x54\xef\xee\xb5\x46\x2c\x42\x9e\x0c\xfd\x60\x80\x55\x69\x5d\x12\xdb\x02\x7e\x56\x81\x47\x96\x22\xf3\x1a\x24\x3b\x6d\x62\xe8\x84\xa7\x54\x96\x4f\xd8\xa4\xc0\xaa\x1f\xe7\x0f\x97\xab\x52\xbc\x89\xf2\xd9\x69\x73\x2f\xee\xe9\x58\x72\x80\x7f\xf2\xf8\xa4\x74\x51\xad\xce\x75\x19\xda\x20\x7f\x75\x12\x3e\xa6\x1d\x85\xc5\x39\x0b\xfe\x28\x7f\x1b\xa3\x30\x3d\x51\x8a\x06\x6c\xb2\x68\x44\x9e\xfd\x72\xe7\x11\xc5\x18\xc8\xd9\x95\x26\xc2\x58\x77\x6c\xcd\x3f\xf7\xeb\xb4\x18\x11\x8c\x70\x47\x3b\xdf\xa8\xca\x50\x3e\xf0\xe3\x2f\xd2\x50\x01\xf8\x85\x36\x6b\xec\x3d\xee\xe2\x86\x0d\x63\x35\x67\x04\x5c\x00\x77\xe0\x3d\x67\xc1\x9f\xcd\x6c\xcb\x8a\x3e\xe3\x3f\x79\x8e\x06\xf3\x51\x98\x66\xc9\x27\xa9\xf2\xc9\x39\x25\x71\xf5\xc6\x58\xf5\x62\x4b\xf6\xd3\xb2\x0f\x96\x87\x8c\x6d\x9a\x2e\x6d\xbb\x55\x0c\x78\x7e\xc1\xaa\x5c\xd0\x98\x63\x29\xde\xc0\x12\xd6\x20\x72\x1b\xb6\xd8\x34\xd3\xc3\x08\x0b\x60\x80\x4f\xd0\xc9\x02\x8b\x32\x35\x69\x7d\x7d\x5e\x1a\x6e\x15\xc2\x6d\xe4\xa7\xf9\xda\x43\xca\x1c\x5f\xa7\xd9\x14\x74\x6a\x39\x2e\x80\xe4\xcc\xe0\x00\x12\xa6\x08\x7a\x7f\x61\x85\x52\xcd\x07\xd7\x68\x23\x63\x60\xde\xa3\x87\x14\x95\x71\xd5\xae\x70\xad\xa9\xa3\xeb\xd5\x22\xcc\xc1\x52\x21\xb8\x68\x07\x14\xe2\x78\x5c\x28\x55\x1a\x00\xd3\xab\x26\x8a\x28\xe6\xc5\x4f\x7f\xaa\xf2\x7d\x9f\x36\x09\xa9\x13\x0d\xdb\x40\x65\x5a\x4f\x50\x6a\x83\xaf\x55\xf6\x7f\xc9\x7f\x0d\x7b\xcf\xb6\xb9\xd8\xa4\xe5\x86\x5a\x9f\xbf\xf4\xec\x2f\xe2\xcf\xb0\x40\xde\xa0\xa1\xe7\x6b\x55\x10\xec\x86\x84\x32\x10\xae\x44\xe9\x44\x92\x4c\x46\xcb\x32\x53\x9c\x57\xdf\x3d\xfa\xc5\x7f\x3c\x5b\x7e\x9d\x65\x70\xb4\x47\xda\x65\xd5\x35\xc9\x4d\x18\x38\x14\x41\xd9\x6f\xaf\xad\x3d\x68\x75\x14\xff\xf1\x4f\x9a\xb8\x38\xfc\x38\x0f\xf3\xb4\xc8\xa8\x8a\xb2\x49\xd0\xe8\xcd\x33\x63\xe7\xf3\x0d\xc3\x2c\x48\xe2\x5e\xc1\x5d\x85\xf0\x88\x4f\xc3\xe0\x49\xce\x46\x69\xfd\x5c\x54\x6d\x7e\x81\x9f\x0d\x58\xc4\x04\x2b\xe7\x7b\x63\xc5\x34\xe6\x70\x27\x71\x38\x60\x9d\x72\xa9\x64\xba\xfe\xb7\xdf\xda\x8a\xaa\xb4\xa4\x10\x03\xb3\x84\x74\xa8\xad\xf3\x97\x91\xaf\xa4\x47\x76\x2b\x3e\xba\xa8\xf7\x30\x86\x1d\x7e\xdd\xfb\x4a\x08\xef\x1e\x3c\x49\x4b\x5e\x6a\x35\x53\xef\x20\xde\x45\x54\x7c\x12\xe6\x07\x9b\x74\x27\xed\x2c\x1b\xa2\x59\xb1\xcb\xb3\x78\x00\xfe\xb8\x22\x06\x68\xea\x8e\x6b\x07\x91\x1f\x5a\x88\x0b\x62\x0e\xb6\x2b\x7c\xa3\x4e\xdc\xd5\x41\x12\x99\x87\xcb\x31\xb1\xa9\x4f\xe7\x28\x72\xca\xd0\x36\x27\xda\x0a\xf2\x65\x5a\x12\xd8\x8d\xd7\x30\x45\xe2\x70\xd3\x8f\xc2\xb2\xb3\x4c\x2e\x8c\xe4\x75\x52\x02\xd8\x0e\x8b\xc8\xff\xde\x18\x7f\x2c\xfb\xa9\x9f\x2c\x83\x49\x8a\x09\x7d\xb0\x1a\x71\x2a\xc0\x5a\x01\x8f\x79\xa5\xd6\x88\xf6\xf2\xcb\x6d\x3f\x35\x04\x4b\x85\x73\xb6\xae\x9b\x0e\x21\x05\x00\x54\xd5\xd1\x26\xce\xa4\xcc\xac\x98\x14\x81\x37\x6a\x38\x17\x68\xac\xf9\xba\x02\xe7\x0f\x88\x4b\x61\x5a\x89\xf9\xad\xc3\xf4\x62\x84\x50\xbb\x15\x5e\x7b\x1a\x53\xfe\x07\xe5\x05\xbc\x62\x56\x49\x7e\xf1\xf0\x9c\x33\xbf\x8b\xd2\xb8\x0f\x06\x34\x91\xb5\xaf\x90\xb5\x16\x43\xea\xd4\x00\x16\x02\x7d\xbe\x7c\x3d\x51\x68\x42\x4d\xcd\xa0\xc1\x6d\x23\x7f\x0d\xda\xa6\x4a\x42\x79\x86\x60\x0f\xb2\x3c\x68\x0e\xe1\x1d\xdf\xa5\x99\x46\x5b\xf0\x3d\xd7\xe5\x43\x80\x94\x98\xf3\x9c\xc8\xb4\xdd\xf1\x54\x48\xc6\xa0\x6f\x2c\xf1\xba\x20\xc1\xfe\xfd\x82\x4e\x0d\xb4\x33\xf2\x96\x52\x44\x78\xab\x51\xbd\x30\x18\x84\x66\x49\xba\x46\x6c\xdb\x94\xe5\x32\x61\x5c\x08\xf2\xd0\xdf\xa8\x15\x91\x5f\x7e\xb9\x4d\x5d\xff\xe5\xd4\x4d\xb9\x72\xe9\x31\xdd\xba\x77\xb3\x42\x68\xd4\xa8\xdc\x11\x25\x71\xe8\x47\x53\xaa\xef\x66\x5d\x61\xb9\xaf\xaa\xa6\xe0\x6d\x13\x8b\x95\x2b\xb2\x3c\x54\x54\xac\x36\x5d\x63\x3d\x14\xad\xb0\xd9\x03\x49\x23\x8d\xae\x38\xb2\xae\x3c\xf1\x4e\x45\xe4\xca\x2d\xa7\x60\xb0\x96\x26\x71\x4b\x75\x76\x1d\x57\x9d\x5d\xc7\x2b\xd0\xe0\xa0\x48\xfd\x00\x5e\x2d\x3c\x9f\xa3\x9e\x4b\xd6\x6a\xa9\x9a\xb0\x57\x86\xe5\xcc\x75\x68\xd1\x37\xe5\x4c\xf3\x8d\x56\x2e\x36\xf1\x23\xb4\x21\xe0\xbf\x5c\x1b\xbb\xc4\xf1\xc9\x4a\xab\x2d\x06\x5c\x14\x1b\x5d\x47\xf9\x37\xaa\x70\xae\xf2\xa0\x42\x90\xf0\x8e\xe7\x16\x3c\xfb\xb9\xe2\x54\x5b\x4f\xee\x83\xbf\xa9\x5a\x23\xbf\x3f\x56\x0c\x9c\xdb\x26\x2e\xdf\x1c\x24\xc3\x91\x89\x40\xe4\x22\x8e\xea\xdb\x9f\x78\x4a\xfe\xe3\x93\x3a\x02\x6e\x5f\x3b\x30\x71\x96\x58\x1a\x27\xa0\xff\x8e\x61\xc5\xf3\x8d\xc5\x2d\x9a\xe1\x28\x4a\xd6\x08\x4b\x6d\x5b\x1a\x5d\xc9\x7f\x43\x65\xd0\x06\x7e\xdc\x1b\x98\xa8\x07\xd4\xa2\x75\xfa\x1c\xef\xac\xeb\x35\x2a\xba\xaf\x50\x81\xb9\xa5\xc8\x4f\xb7\x03\xbe\xc6\x37\x9d\xcf\x2b\x04\x75\xfd\x78\x19\x46\x46\x69\x8d\x88\x0f\x72\xcf\x53\xdc\xff\x57\x15\x37\xd6\x28\x35\xfd\xd8\x8f\x79\x8d\x08\x28\x9c\x5e\x44\x50\xe1\x96\x06\x38\x8c\x03\x93\xa2\x5a\x29\x3d\x12\x4e\xb4\xf5\x22\xe5\x60\xa4\xb0\x64\x3f\x13\xa4\xe1\x48\x88\xaa\x50\xc5\x39\xa1\xe4\x48\xb4\xd7\x14\x09\x0f\x00\xf6\xc9\xb6\x89\x3b\x7b\xee\xa8\x12\xcd\x07\x95\xbc\xe8\x6b\x61\x8c\xa6\x2f\x1c\xf5\x57\xc8\xb9\xe1\x6b\xef\x29\x85\x4a\x89\xf3\x34\xec\x16\x79\x98\xc4\xd3\x54\x7c\x41\x41\x4b\x53\xed\x41\xfa\x1c\x63\x77\x01\xc3\x85\xf3\xeb\x6e\x13\xf0\xb7\x6b\xcc\x08\x0d\x21\x07\x5c\xc7\xf1\x82\x63\xe0\x96\xec\xe5\xc0\x64\x21\x08\x19\xad\x0b\xf3\xbe\xa2\xbb\x79\xbf\xb1\x2e\x9e\x9a\x5e\x11\x08\x92\x45\x90\x7a\x34\x27\x02\xd5\xb3\x6c\x05\x69\x18\xf7\x6d\x02\x03\xa6\xed\xaa\xea\x84\x04\x7c\x47\x02\x00\x9d\xe9\x89\xfc\xb5\xdd\xa5\x17\x22\x48\x16\xd8\x5a\xc1\x48\x2b\x8c\x37\x8a\xa9\xd8\xc4\x37\xe8\xab\x51\xe3\xfa\x29\xcc\x83\x2d\xa6\x38\x5c\xf9\x15\x1a\x49\xbe\xc6\x2a\x14\x1c\x36\xad\x64\xe4\x2b\x39\xed\xce\xd2\x2d\xc8\x9a\x58\x80\xe7\x82\x95\x3b\x5d\xb7\x1b\x2e\x0b\x7c\xee\xbc\x9a\xb7\x0c\x20\xaa\xea\x88\x1a\x22\x4e\xfd\x9b\x9e\x66\x7f\x0b\x0c\xb5\xda\xb4\x2a\x75\x11\x5d\x0a\xd1\xe3\x12\x27\xf9\x53\xf4\x60\x96\xe8\xdf\x26\x3b\xef\xd0\xb1\x8d\xc7\x62\x65\x0d\x4b\x2b\x6e\x19\x4a\xae\x20\x00\xc3\x06\xf9\xa6\x57\xed\x85\xb6\x6e\x09\x14\x54\x60\xe8\x5a\x13\x95\xc1\xbb\xee\x51\xb7\x0a\x12\x32\x4f\x4e\x68\x54\x90\xf1\x9c\xea\xd4\x12\x30\x00\x5e\xfe\x14\xb3\x25\xb6\x84\x96\x37\x0c\xfc\x05\x0d\x58\x3c\x86\xd6\x7b\x66\x30\xf0\x54\x1b\xd6\x9f\x7b\xe5\x42\xc0\x3f\xec\xec\xb8\x60\xec\x8a\x02\xbe\xe4\x7e\x18\x51\xf1\xae\x7c\x20\x0c\xb8\x84\xa7\x98\xc1\x89\x3e\x93\xb5\xce\x7d\x38\x84\x6d\xd1\xd2\x0b\xc2\x5b\xec\x0e\xb5\xae\xe9\x33\x81\xc8\x81\x6a\x75\x1e\x8f\xf8\x5b\x9e\x2b\x4e\xd4\x21\x08\xe5\x71\x1d\x25\xfd\x3e\x1f\xa5\x98\x2d\x14\x88\x05\x48\xa3\x62\x98\xbf\x6e\x3a\xee\x93\x6e\x4e\xca\x7f\x30\xfc\x52\x91\x50\xe5\x18\x65\x33\xbb\xe5\xb1\x1d\x12\xde\xca\xf6\x45\x6d\x43\x35\x5c\xd2\xf2\xee\xf5\x7f\xee\x97\x7e\x79\xaa\x3c\xe0\x90\x78\x82\x17\xc7\x56\x4d\x03\x75\x8e\x28\xb7\xa0\x9b\x84\x96\x81\x0c\x5f\xf8\x1d\x72\x20\xf8\x5a\xe9\x15\x66\x45\xbf\x6f\xb2\x9c\xfb\xf7\xf0\x13\x7f\x38\x76\x00\xbb\xcb\x15\x7c\xaf\x36\x9c\x81\xc9\x9e\x72\xad\x3f\xbc\x4b\xe1\x6b\x70\x36\x1e\x2b\xf8\x6d\x55\x69\xfa\x0b\xac\x4d\xf8\x60\x27\xb0\xb4\xb1\xb6\x4e\x29\x1e\x08\x14\x26\x01\x93\x9c\x42\xd2\x03\x37\xdb\x3a\x8a\x45\xf5\xbc\xe7\x9a\x90\x2a\x99\x8d\x0b\x94\x00\x97\x34\x1d\xad\x07\xa1\x5e\xa6\xb5\x87\x6d\x72\x92\xb6\x22\xda\x1b\x77\xd0\x98\xc2\xa9\xfd\x73\xac\x78\xe6\xfd\xf6\x5c\xb8\xf9\x27\x30\x50\x78\xc4\xcb\xd8\x31\xd8\x57\x37\x1a\x98\x27\x0e\xb6\xb3\xdc\x0c\x91\x6d\x44\xd8\x7c\xdb\x73\x59\xaa\xdb\x63\x17\x1a\xfa\xbd\x5e\x36\xab\x38\x1b\xcf\xb0\x21\x95\x2d\x52\x7e\x0a\xe7\xcb\x1b\xb0\x39\xdc\x6d\x83\x48\x4f\xaa\x62\xee\x14\x7a\x63\xec\x20\x0b\xa7\x9a\xc0\x9c\xf9\x20\x4d\x56\x63\x8d\x2e\x82\x51\xe6\xeb\xcf\x55\x02\x36\x19\x08\x8f\x2a\x24\x3d\x17\x78\x0b\x0b\xa4\x59\xc9\x65\xde\x53\x5b\xf8\x85\xaf\xcf\xb5\x14\xf2\xeb\xb4\xa7\xe0\x16\xa7\xc7\x95\x63\x36\x33\xaf\x16\x26\xce\x23\xec\x79\x24\xaa\xd1\x33\xc8\xd7\x4d\x6a\xb6\xb9\xf1\xa5\x53\xa1\xa9\xbe\xd9\x14\x21\xc4\xe5\xca\xcf\xa7\x74\x82\xec\x84\x62\x3b\xfc\x2b\xac\x61\x0e\x0e\x6b\xbf\xf9\xd5\xf6\x52\x12\x45\xc9\x2a\x3d\x24\xb3\x38\xd0\x4f\x0a\xa3\x83\x82\x93\xf9\xb9\x61\x45\xca\xc6\xb7\x6f\xc0\xf2\xa4\x66\xa9\xc8\x6c\x1b\x05\x86\x13\x52\x36\x7c\xad\x08\x01\x47\x69\x32\x4c\x58\x60\x89\x15\x10\xb4\x90\x34\x9c\x0a\xac\xed\x7b\x74\xac\x4a\xb1\x96\x36\x96\x68\x26\x28\x90\x6a\x91\xe5\xcc\x8b\x64\xc9\x4f\xac\x4e\xd4\x9d\x06\xe8\xec\xc1\x76\x90\x86\x79\x18\x90\x58\xac\xaa\xa9\xbd\x39\x56\xf1\xfe\x9b\x0a\x31\x9d\x26\x59\x16\xc6\x21\x16\x04\x2c\xd9\x3d\xaa\xfc\xf1\x75\x13\x27\x61\x9f\x88\x30\xb2\x9c\xcc\xb3\xa0\x37\x94\x00\xd5\x3d\x9c\x5a\x52\x31\x56\xa1\x46\x9e\x50\x9d\x10\x89\x80\x1b\x63\x95\xa7\xbd\x81\x29\x86\xff\xf1\x43\xda\xea\x12\x10\x62\x55\x48\x4c\xdd\xb2\x5a\xb6\xbb\x91\xca\x92\xec\xf4\xd6\x55\xf1\x4c\x7b\xd5\x8f\x96\x65\x18\x54\xb3\x89\xf3\x92\xdc\xba\x78\xb5\xf0\x97\xa1\xf3\x83\x53\xe5\x24\x76\x34\xdf\xa8\xcd\xf3\x2b\x0b\x07\x67\x68\xf9\x60\x03\x30\x81\x13\xa6\x97\x3b\x1f\x30\xbf\x7b\x3b\xba\xd7\x83\x5e\x8e\x72\x9f\x7f\x6b\xaf\x8a\x6b\xcc\x8a\x49\xd7\xf2\x41\x18\xf7\x77\x3a\xd3\x7e\x5a\x09\xf5\x4d\x4f\xc8\x48\xa3\x36\xdf\xea\xa8\xaa\xdf\x1f\x90\x91\x46\xf9\x7b\x63\xac\x00\x92\xef\x7a\x0a\xbf\x0f\x7e\x0e\xb8\x19\x0f\x6a\x28\xf7\xc5\xb9\xf6\x8a\x8f\x44\x1f\xef\x80\xe3\x9e\x6b\xa6\x3e\x6e\x7b\xc6\x8a\x67\xb3\x67\xbb\xd4\xcd\x82\x7e\x56\xd8\xdd\x0b\x8a\x37\x69\x53\xf3\xd7\x5d\xaa\xb8\x60\xe9\x1a\xf4\xe0\x90\x52\x83\xc7\xc0\xd7\x9e\xcb\x6f\x30\x0f\x6e\x36\x55\xae\x6f\xa4\x37\x4e\x8c\x15\x07\xd8\x1d\xaf\x02\x21\x51\xc2\x30\x45\x77\x18\xe6\x36\x44\xc7\xa3\x81\xa2\x95\xaf\x1b\xb9\x88\x48\x08\x50\x25\xca\x2e\xb3\xed\xe4\x3b\x2d\x31\x98\x26\xdd\xc8\x0c\xb3\x87\x9d\xe2\xcb\x5f\xe2\xe8\x14\x8e\x55\xd5\x82\xd3\xa2\x38\x87\xff\x4a\xeb\x52\xd1\x9c\x8a\x5c\xb5\x26\x00\x82\xe7\x29\x6c\x40\x4a\x51\xfb\x0c\xaa\x15\xc8\xe2\x5c\x69\x4a\x61\x67\x79\x1a\x2e\x19\x4d\xb4\x0c\xa3\xc9\xd7\xb5\x4c\x4a\x19\x11\xfb\xb1\xdf\x53\xbc\x7d\x82\x81\x52\x34\xa4\xeb\x4d\x12\x27\x2b\x61\x8f\x65\xfd\xa4\x4c\xe8\x12\x2e\xef\x28\x83\x35\x34\x43\xe1\x41\xb0\x1e\x87\xd5\xbd\x79\xbb\xa1\x43\x77\xbe\x1d\x0e\x47\xa9\xc9\x32\x86\x84\xc0\xef\xdd\x8e\xad\xcd\x37\x13\xd7\xb2\x54\xc4\x3d\x93\xee\x76\x65\xc0\xfb\x1a\x21\x74\x1b\x7e\x21\xaa\x6e\x8f\x77\x14\x32\x1f\xd3\x82\xc3\xfa\x2a\xdc\x05\x5b\x2e\x51\xa4\x7c\x34\x61\x58\x7c\x0f\x4f\x5c\x1d\x1c\xc2\x04\x4c\x94\x84\xdd\x85\xdf\x38\xa7\x91\x1c\xef\x90\xd1\x42\x5c\x7f\xbc\x31\x0f\x96\x0f\xcc\x92\x44\xcf\x2c\xf5\xa7\x05\x6e\x6e\x35\x9d\x3e\xfd\x24\xe9\xad\x19\x3f\xd5\x80\xd8\x8f\x34\xbf\xd3\x47\x2a\x2f\xec\xa7\xc6\xcf\x76\xb8\x96\xfe\x4f\xc8\xaf\xc2\x06\x3a\x43\x13\xc1\xd7\x63\x77\x3a\x32\xf7\xb9\x08\xd7\xa0\xe1\x45\x71\x08\x75\x4b\xef\x38\x89\xa7\x1c\xeb\xd7\x83\x8a\x7a\x5e\xcb\x0a\x30\x6a\x48\x12\x01\x04\x4d\x96\xb7\x74\x67\x02\x7d\x4e\x86\xba\xa9\x3d\x36\x8c\xc3\x61\x31\xa4\x75\x00\xe7\x15\x51\x12\x5f\x2b\x02\xe8\xa5\x22\xee\xf9\x43\x13\xe7\x4c\xb8\x00\x63\x7c\x01\xc6\x98\x6f\x9a\x20\x41\x79\x58\xe9\x06\x87\xb9\x42\x68\xc1\xd7\x35\x27\xed\xd0\x0b\xed\xa5\xd4\x98\xd7\x8d\x4a\xbb\xfd\x91\x4a\xbb\xfd\x91\xad\xa9\x06\x7e\x66\xd8\x85\xd1\xdd\x51\x48\x3b\x70\x0e\x42\xa8\x95\x74\x40\x2b\xf4\xea\xb4\x5e\x51\xa0\x3b\x0d\xb6\x3a\xbe\xa9\x60\x3a\x7e\xe9\x17\xd0\xf9\x66\x7b\xa1\x95\x84\xe2\x13\xda\x11\x59\x0a\x73\xbf\xcb\x9e\x9b\x82\x71\x5b\xfe\x28\xd5\x8b\x9b\x1a\xa2\x9b\xf2\xe3\xc0\x68\xef\x17\xa8\x16\xb8\x28\xcc\x4a\x6d\x3b\x8b\x2d\xba\x18\xc5\x25\xd4\xaf\x6e\x61\x02\xe0\xc8\x5f\x53\x1d\xa3\x37\xab\x24\xc3\x21\x70\x05\xd2\x99\xa6\x0b\x3d\x0e\x78\x2d\xfa\xe1\x53\xb6\xf5\xf3\xdc\x97\x3a\x6e\x6d\x3f\x85\x60\x44\xc0\x7b\x3a\x57\x18\x67\x45\x94\x4b\x40\xc7\xba\xd8\x15\x8d\x6c\xf7\xc7\xbd\xd0\xef\xc7\x89\x0c\xff\x82\x25\x05\xa5\x3d\x21\x9c\xa0\x9f\xd7\xfd\x18\x24\x71\x90\xa4\x68\x76\xc6\x1a\x65\x78\x1c\xdf\xa8\xb4\xc5\xc0\xf8\x3d\x3f\x18\x98\x0c\xce\x43\x25\x20\x42\xae\x18\x2c\x13\x9c\x38\xe5\xc3\x88\x5f\x8e\x82\x2b\x79\xd1\xa6\x1e\x55\x2a\x49\x98\xb4\x4a\xc6\x7a\xc3\xab\x08\x28\x6d\x2d\xba\x3c\xd3\x8e\xc2\x65\x43\xca\x03\x80\x6a\x1c\xd1\x25\x3c\xec\x6b\x38\xa7\x37\x14\xa8\x6d\x47\xc7\x25\x16\xb1\x0a\x04\xea\xe3\x82\xa8\xa5\x30\x1a\xee\xa0\xd1\x44\xd9\x1d\x1c\xfb\xa8\x77\x7e\x4b\x37\xd4\xdf\x60\xd7\x8e\xd9\xe1\xb1\xc2\x70\x78\x81\x11\x45\x42\xd0\x3d\xca\xfe\x17\x59\xe1\x47\xc4\x36\x8f\x62\x30\x97\xe2\x10\xcb\x5d\x50\x02\xdb\xec\xeb\xf1\x3f\xa0\xaa\x25\x42\x2f\xb4\x74\x44\x8a\xd3\xb5\xc1\x9d\xa0\x37\x15\x26\xef\xbd\x8a\xeb\x32\x32\x29\x34\x65\x14\x2b\xbf\xaa\x80\xdf\x1c\x3b\xac\xdd\x45\xfc\x14\xff\x43\x53\x1f\x64\x18\x13\x29\x77\x81\x72\x44\x15\x4b\x62\x51\x4b\x56\xeb\xff\xa8\x42\x84\x2e\xa5\xfe\xd0\x60\x09\xb1\x84\x06\x1d\x3a\x56\x05\xcc\xf9\xe0\x90\xff\xc1\xe9\x77\x46\x77\xa7\xfe\x8e\x4d\x66\x96\x81\x4d\xdf\x48\x62\x12\xd8\xe1\x75\x4d\x39\xb5\x5e\xf3\x20\x08\xbf\x9e\x64\x23\x13\xc8\x39\x06\x4b\x77\x51\x89\x40\x5f\x6c\x4c\x82\xb2\xea\x5c\xab\xa6\x34\xc7\xd7\xb5\xa0\xee\xe9\xa7\xdb\x71\x62\x1b\x00\x2d\x6b\xb8\x8b\x2a\x6f\x2b\xf2\xd3\x55\x3f\x4d\xc3\x24\x45\x4f\x2b\xde\xf3\xee\xd8\xb5\xa9\xfe\x90\x22\x1a\x56\x19\x52\x4c\x40\x08\x6f\x19\xb4\x6b\x45\x38\x55\x61\xca\x89\x20\x65\x83\x30\xcd\x19\x9c\xcc\x39\x08\x5d\xe5\xfe\x13\xcb\x0d\x51\xc4\x23\x93\x2e\x25\x8e\xae\x40\xd8\xcf\x5b\x96\x41\xfa\xb8\xf7\xa4\x54\x1d\xfc\x15\x93\xf5\xd2\x64\x34\xb2\x59\x5f\xec\xad\x1d\x13\x07\xa3\x9b\xed\x28\x32\xec\x37\x6a\x07\xe7\xa1\x17\xa8\x8d\xc1\x8f\x22\x32\xf5\x02\x3e\x75\x99\xa9\xf3\x4d\x41\xfa\xb0\xf4\xb6\xa9\xbe\x00\x5c\x00\x83\x4b\x00\xcf\x38\xa2\x40\x7c\xe7\x95\xd8\x3e\x79\x5f\xd1\x9a\x64\xb3\x70\xb2\xa1\xc4\xcc\xd7\x95\xa3\x2a\x0b\x06\x8a\x29\xf1\xc7\xba\x66\xfe\x63\xcd\x5c\x5b\xa4\x2b\xe1\x8a\xe1\x82\x0a\x9a\xbd\x7f\x03\x21\x24\xdf\x34\xae\x28\xbf\x9b\x14\x71\x2f\xd3\xc7\xe6\x45\xa5\x30\x7b\x51\x29\xad\x8e\xfc\x48\x4e\x66\x1b\xa1\xba\xd0\xf3\x9b\x3a\xd7\x79\x77\xec\x62\xe3\xae\x1f\x2f\x9b\x54\xba\xdb\x61\xb3\xfe\xa3\xa7\xba\xef\xd7\x29\x1a\xaf\x30\xd9\xf2\x5f\x35\x72\x31\xa7\xa6\xef\xa7\x1c\x8f\xa2\x6a\xf5\xd7\x9e\x6b\x34\xaf\x27\x32\x0f\xcf\x91\xcf\x98\x9a\xee\xda\x54\xa5\x5e\x50\x7e\x88\xa5\xad\x15\xfb\x7f\x9d\x74\xb5\x8c\x11\x56\x0d\xf7\xc3\xe2\xd8\xdf\xa6\xf2\xce\xdb\x26\x4a\xe4\xab\x17\x66\x79\xd2\x52\x20\xcf\xa3\x6c\x9d\xf9\x4e\x0d\xe7\x92\x9f\xa1\x3b\x0c\x56\xf3\xdb\x8a\xb7\xeb\x4d\xb2\xa0\xd8\x75\x1f\xd5\xe2\xcd\x7d\xfb\xda\x99\x89\x39\xe9\x2f\x06\xc7\x61\x44\xb9\xec\x8f\x4f\xdf\xad\x45\x3c\xcf\x2f\xb4\xb3\x57\x0b\x3f\xd5\x5d\x55\x68\xa0\xe5\xeb\x89\x5e\x7c\xc9\xd0\x3c\xd5\xb2\xea\xf8\x27\xb1\x59\xf1\xd5\x3b\x80\x64\x02\x34\xe1\x3a\xc2\x37\xa9\x65\xab\x13\xf9\x04\xd9\x56\x24\x1f\xbf\xc7\x83\x01\xf3\xfc\xef\xc8\xaf\xc6\xe2\xfc\xb7\xb4\xe6\x58\xf3\x6c\x42\x8b\x03\x8c\x3f\x8f\x52\xba\x7f\xf3\xa1\x4e\xeb\xeb\xc2\x51\xf5\x19\x92\x86\x28\x14\x9c\x51\x2d\x4c\xef\x52\x84\x21\x2d\x6e\x8a\x31\x62\x56\xc9\x0d\x31\xf3\x0e\xa2\x98\xeb\x38\x2d\x91\x18\xb8\xab\x09\x7e\xbe\x47\x88\x37\xb8\x20\x33\x1d\x95\xb9\xf7\x53\xea\x87\xc4\x16\x67\xfe\x53\x1d\xa9\xe2\x4d\xc1\x3b\x2c\xac\x68\x2e\xf2\x22\x7c\xca\x94\x6b\xac\xe6\x71\x93\x1c\x6a\x4b\x49\xea\x6c\x3d\x35\x0e\xbd\xd0\xee\x85\x99\x9f\x0e\xa5\x7e\x8b\x78\xe7\x8f\xc7\x2a\xa3\xf6\xc7\x8e\x74\x36\x49\x72\x45\xaf\x79\x59\x49\x17\x5c\x56\x65\x58\x6a\xf5\x17\x4b\x04\x4f\x0d\xce\x30\x5f\xab\x86\xe0\x60\x10\x8e\x32\x62\x63\xb5\xd5\x1e\x97\xa7\x39\xa7\x60\xb2\xec\x32\x49\x05\xd0\x61\x14\x9f\x2e\x8d\xeb\xfc\x21\x27\x07\xf2\xbc\x93\x03\xd9\xea\x58\xfd\x6c\x3b\x1f\xf8\xf0\x3d\x45\xdf\xba\xfc\x73\xd1\xbd\xde\x9a\xb3\xdb\xbf\x7f\xb1\x3d\xa2\x6e\x5b\x3f\x8a\xd6\x5a\x55\x87\x60\x71\xce\x3a\x15\xaa\x3d\x37\xec\xf5\x22\x33\xf4\xe3\x29\x57\x0b\xbf\x09\xf3\x8d\x8c\xc4\x11\x9a\x4e\x91\x89\xdf\x65\xf7\x6d\xec\x4f\xa9\xd2\x0d\xdc\x14\xee\xdc\x52\x22\x50\xff\x69\xfc\x88\x3b\xf5\x4c\x3e\x4b\x7f\xc6\x45\x42\xc5\xd7\x7f\x95\xde\x0a\x1f\xb9\x8f\xbc\x85\x45\x80\x2e\x4a\xbe\x6d\xb6\xa3\x58\xe1\x3c\xd7\x79\xf1\x46\x63\x96\x7e\xd5\x64\x2c\x28\x2f\xdd\x3b\x0e\x89\x88\x65\x29\xed\x08\x0d\x7d\x75\xe6\xb5\x41\x18\xf9\xa9\xef\xa2\x3b\x8b\xe0\xb4\xc5\x96\xb3\x2a\xf1\xf9\x4a\xd2\x8d\x4c\xc6\x27\x3a\x36\x1b\x83\x6f\xf8\x46\xc1\x29\x92\xa5\xa5\x30\x30\x69\x36\x53\xbe\xb2\xad\x91\x58\x6c\xf1\x9b\x5a\x3f\x17\x5d\xe9\x88\x88\xff\xb5\xa7\x54\x52\x4e\x39\xac\x01\x09\xbb\xee\x2e\xbf\x00\x29\x3b\x88\x03\x23\x8a\xdb\x8e\x8c\x04\xe5\xa1\x2e\xed\x9d\x28\x21\xe6\xed\x40\xd0\x22\x52\xba\xa6\xa9\x9c\x2f\x38\x31\xd7\x5f\xff\x7b\x1d\x1d\xa8\x8d\x5d\xa9\xfd\x11\xc2\xf2\x52\xe2\xe2\x7f\xf9\x3b\x10\x76\xd1\x29\x39\xdb\x72\x50\x2e\x40\x69\x50\x6b\x70\x5e\xa1\xbd\x14\x84\x65\x60\x66\x73\x6c\x57\x55\x25\x99\x84\xca\x04\x38\x71\xcd\x76\x0a\x64\x83\x90\x40\x13\x8e\x13\x09\xb9\x5c\xbe\x56\x09\x37\xfa\x05\x4a\x05\xfe\xea\x41\xd7\x64\x57\x4e\x13\x07\x93\x18\x55\x71\x4f\xb6\x3e\x23\xd1\xbd\x24\xd1\xda\x70\x14\x06\x12\x11\xe1\xac\x79\x47\xd3\x86\xbc\xa3\x92\xba\xbf\x3a\xff\x2b\x84\xfc\xb0\x9a\x26\xe5\x9f\x09\x09\x70\xc5\xa3\x09\x7d\x04\xc8\xa2\xa5\x50\xce\x21\x12\x46\x67\xc6\x0e\xb9\xfa\xdb\xaa\xa1\xea\x2a\xc1\x4a\xad\x60\xb8\x96\x6e\x78\x5e\x1c\xcd\x13\xb5\xa8\x6e\xdf\x7c\x69\x32\xbb\x45\x6a\x79\xba\x2c\xa4\x46\x45\x89\x0d\x30\xc2\xd4\x50\x98\xd9\x52\x24\xe7\x4c\x0f\xc2\x37\x2a\x50\xcb\x92\xa1\x79\x9c\xd6\x94\x14\x17\xaa\xc7\x57\xf9\xa2\x92\x86\x76\x62\x17\xc7\x75\x26\x96\xa9\x9c\x24\xe5\x52\xee\x7c\x0b\x5b\x10\x62\xe8\x7f\xf1\xc5\x8e\xc3\x57\xde\xa8\x9c\x4e\xae\xdf\xe9\x49\xca\xb7\x61\x41\x4e\x53\x39\x1d\xf3\xdb\x9a\x28\xc2\xf8\xd3\x48\x89\xa2\x7c\xc0\x0c\x4f\x38\x79\x39\x32\x40\xf0\xb8\x39\x7e\x98\x07\x64\x99\xa9\xc8\x78\xad\x28\xc9\xa8\xf3\x4d\xe2\x4c\xcb\x06\xa9\x4b\xb8\xda\xbb\x14\x47\xc3\xae\x89\x2a\xf2\x14\x69\x56\x98\x4c\x71\xf3\xfc\x9f\x34\xaf\x7c\x6d\xe1\x3f\x83\xb5\x51\x12\xa4\x61\xc6\x0c\x16\x02\x71\xb2\xe9\x8c\x57\xde\xf5\x1c\xac\xf5\xcf\x75\x5f\xf1\xaa\x9f\xf6\xb8\x83\x57\xd8\x19\x2a\x88\xda\x27\xb7\x2a\x71\x97\xe6\x73\x37\xfd\x89\x15\x6e\x2a\xa7\x55\x78\xc4\xca\xa1\x65\x2d\x1d\xaf\xce\xdb\x0b\xa7\xe8\x3e\x56\xbd\xd5\x30\x39\x2c\xa1\xfd\xff\x8d\x41\x97\xbd\x51\x3e\x32\x5e\x05\x45\x54\x84\x34\xbb\x26\x8a\xca\xf3\x06\x12\xf7\xc8\x3c\xfc\xd4\x73\xda\x78\x57\x1d\x34\xca\xc4\x61\x92\x0a\x42\x0d\x69\xd6\xcb\xaa\x5f\xf2\xb2\xda\x9d\x49\x18\xcf\xd2\x53\x0b\xa4\x55\x81\x9f\x7e\x4c\x3b\x10\xa5\xdf\xd9\x4e\x15\xc2\xe2\xa4\xfe\xcf\x28\xe6\x4d\xa8\x1c\x09\x45\xf4\x13\x36\xdd\x54\xc4\xb9\x49\x47\x7e\x2a\x81\x2d\xb7\x33\x29\xb4\xf7\x39\x6b\xc0\xd3\xa4\x5b\x64\xf9\x0e\x97\xf8\x62\x1d\x3e\xd1\x36\xa5\x3d\x81\xb8\x6a\x32\x76\x34\x55\x00\xcd\xe1\x2d\x40\x4e\x0b\x23\xf9\x85\xce\x5e\xdd\x87\x38\x4a\x62\x16\xec\x7a\xce\xa6\x32\x54\x5a\xc3\xd3\x7f\xdc\x35\x94\x9d\x05\x6a\x0a\xe0\xba\xf7\x68\xba\xf9\xda\xf5\x5d\x8e\x8c\xbf\x1c\xc6\xfd\x19\xe5\x27\x9c\x18\x2b\x92\x84\x9b\x8a\x89\x77\x67\x47\x9d\x99\x63\x45\x9a\xf4\x83\xb1\x53\x7b\x09\x63\x64\x23\x4a\xf3\x06\xbf\xea\x38\x5e\x5c\x89\x2e\x1c\xb0\xa5\x9c\x96\xe5\x5e\x3f\xa2\x8a\xa0\x53\x9d\x06\x00\x7a\x9e\x26\x05\xb9\x76\x08\x88\xb1\x56\x8f\x28\x3e\x32\xf4\xf8\x8b\x60\x87\x80\xc6\x4d\x14\x19\xae\xa4\x73\xeb\x1e\x9e\x5c\xfa\xf8\x1a\x0a\x99\xc3\x30\xee\x95\x4e\xc0\x54\x4b\x71\x9d\xb9\xa4\x16\x4e\x4f\xc4\x85\x1f\x2a\x04\xbc\x89\x4c\x90\xa7\x49\x1c\x06\xb3\xf4\x73\x56\x6c\xc3\x0a\x13\x7f\xa6\xa1\xf8\x5c\x25\x40\xb0\x79\x0e\x81\xc4\xe6\xa4\xd2\x6a\xa9\x50\x50\xd7\x55\x3e\x3f\xcb\xfd\xb4\xaa\x2c\xcc\xe4\x32\x7c\xe3\x3d\xa9\xd5\x8a\x38\xa7\x94\xcd\xd0\x2c\x48\x76\xcc\x05\xe0\xad\x8e\x2a\x28\x7d\x00\xf7\x8f\xff\x8a\x1e\x1d\xc5\xe1\x99\xc9\xa3\x76\x8a\xa3\xdc\x64\x88\xb6\x80\x0a\xe2\xce\x74\xbe\x19\x57\xd9\x28\x96\x9f\xa4\xaf\xc7\x68\x1d\x83\x3d\xb6\xd8\xb2\x17\x45\x0a\xc1\xbb\x4f\xcb\x13\x4e\x1d\x1a\x5e\xf1\xbb\x77\xf0\x40\xc8\x23\x70\x73\x8e\x75\x67\xad\x1f\xbc\x83\xb4\x1d\x70\xb2\x7e\x48\x40\x27\xde\x66\xf4\x9e\xc2\x5b\xde\xfa\xda\x8b\x56\xcf\x58\x61\x90\xfe\x84\x9a\x2e\x25\xcf\x43\x26\x05\x9f\x9e\x9a\x28\xba\xfb\x77\xc9\xf6\x89\x3e\x88\xce\xe7\x5f\xc6\x3c\xd9\x7e\x96\x72\x98\x61\x1a\x36\x95\x84\x5c\xcf\x44\xa2\xf0\xff\x9c\x25\x63\x71\x29\xe2\x4f\xbc\x2f\xa9\xbc\x7b\x45\xf0\x78\x87\xee\x00\x04\x80\x51\x44\x70\x35\x61\x4d\x39\x7e\xfc\xff\x31\xca\x42\x05\xad\x78\x87\xce\xda\xaa\x44\xb2\x6a\x7a\x3b\xca\x8f\x08\xb8\x8d\xde\x5b\x13\x48\x60\x61\x5e\xc3\xcb\x61\x68\x19\x8a\x07\x41\x89\xc7\xc9\x1a\xc0\xde\x5e\xd4\x79\xde\x24\x89\xa6\x2a\xd8\x52\xfa\x90\xfa\xea\xcd\x3b\xaa\xef\x30\xec\x19\x3f\x42\xed\xa2\x22\xe3\x2e\x27\x8e\x42\x8f\x45\x7e\xb0\xcc\x99\x72\x3c\xcf\x49\xb2\x9c\xf0\x3f\x1e\x78\xaa\x75\xfd\xa4\x3a\x42\xaf\x8c\x2b\xec\xff\x5b\x03\xad\xc5\xb9\xb6\xc9\x72\xbf\x1b\x85\xd4\x84\xa2\x90\xc6\x38\x1e\x64\x55\xcb\xc0\xf5\x42\x16\xb9\xe6\x7e\x1c\xa5\x14\x5b\x77\x1e\x9e\x69\xc7\xa6\x3c\xb1\xbf\x3e\x6f\x4b\x6c\xaa\xdf\xf0\x8c\xe7\x24\x72\x23\xd3\x0f\xb3\x88\x78\x4f\x67\x5d\x3d\x0c\xfa\xf7\x96\x4d\x41\xad\xfe\x8f\xe9\x77\x71\xcc\x1c\xc1\xa2\xb5\x4c\x55\x2e\x87\xf5\xad\xb1\x52\xfb\x3b\xa5\x88\xc9\xfd\xa1\x89\x7b\xa5\x3b\x3d\x53\x3e\x1b\x3c\xa7\x63\x1e\xe6\x86\x7e\x05\x0b\xf8\x07\x0a\xfb\x7b\x15\x2b\x01\xc7\xc2\xd5\x86\x82\xc3\x41\x70\xd0\x49\xa0\xb5\x49\xec\x9c\x9b\x53\x9d\xad\x60\xa5\x85\x85\x03\x10\x26\x0a\x92\xe1\xa8\xc8\x59\x51\xaf\x91\xce\x70\xb7\x65\x66\x28\xf7\xce\x6c\x45\x78\x43\x49\x45\xac\x7b\xee\xb8\x87\xa5\x96\xfe\xf1\x96\x65\xb0\x9e\x02\x5d\x32\x57\x68\xc7\xce\x9f\xbb\x5d\x6b\x1b\x3b\x3c\xb7\x50\xbe\xca\x8c\x6b\x17\xb9\x49\x34\x36\x38\xa2\xa7\x5d\x23\x24\xc3\x81\x25\xc1\x5d\x6e\x27\x98\xee\x6d\x93\x3d\x4a\xb5\x28\xf6\xe3\xd7\x99\x62\x8b\xfb\x5e\x94\x06\xc7\xf1\x4a\x5c\x1d\x3c\xe4\x72\xaf\xb7\x34\xa1\xd4\xbb\x5a\x7f\x80\x21\xee\x56\x79\xc9\xca\x59\x22\x77\xce\x79\x21\x6c\x69\x9c\xae\x97\x34\xde\xe8\x3f\xd0\xd8\x6d\x5e\xb2\xa7\x76\x6c\x56\x83\x64\x68\x5b\x50\x45\xb6\x46\xd1\x5c\xd7\x13\x14\x52\xed\x1a\x25\x51\x18\x18\x74\xbf\x62\x27\x22\xea\x83\x29\x3f\x4e\x46\x1a\x89\x33\x86\x6b\x09\xcd\xe0\x17\x14\xe7\x6f\xbc\x14\xf6\x8b\x94\x56\xff\x94\xcb\xd5\x4e\x75\x5c\x93\xfd\xba\x96\x53\xb9\xad\xb2\xb1\xac\x9c\x30\xab\xbc\xe2\xb1\x4b\xfe\xb1\xb8\x8f\xae\x5e\x59\xd7\xd9\x91\xec\x5c\xd5\x94\xb4\xb7\x2a\x1d\xd7\x0f\x54\x4f\x64\xaf\x88\x45\x09\x0e\xc3\x0d\x4d\x53\xbe\x56\x9a\x40\x7e\x14\x99\x3e\xbd\x4d\x06\x57\x00\x40\x74\x6e\xff\x45\xf9\xeb\x03\x44\x55\x42\x46\xaf\x9d\x7a\x07\xad\x7c\x9b\x0c\x1c\x7f\x00\xfb\x8f\xbf\xaa\x89\xea\x59\xb1\x1c\x56\xfa\xd1\xf8\xa6\x8a\x0c\x5f\x01\x49\x96\x90\x17\xbb\xc2\x2b\xa3\x92\x70\x9c\xbd\xd6\x40\x7d\xf6\x5c\x1b\x19\x92\xf2\x9c\x63\xf3\x8f\x43\x5a\xce\x82\x4a\x7f\x53\xda\x9f\x51\x28\xbd\x8b\x3c\xb8\x56\x56\xc4\xe6\x7e\x6e\x6a\xe6\xc0\xe3\x54\x99\x91\x75\xd8\xa0\xa0\x12\xa4\xa6\x17\x76\xc3\x88\x42\x85\x7d\xfb\x2c\x31\x66\xf9\x7d\x42\x98\xd9\x20\x0f\x14\x13\x85\x59\x28\x2c\x11\xac\xbe\x46\x16\x43\x94\xd8\x54\x9e\x3f\xec\x27\x79\xba\x46\xd6\x09\x99\x8f\x53\xaa\x64\x79\xaa\x66\x01\x0f\xcf\xbd\x64\x2d\xe0\x94\xe2\x57\x78\xa0\x14\xd0\xd6\x15\x0d\xe3\x65\x95\x8b\xec\x25\x49\x0a\xa6\x5f\xa1\x46\x6a\x29\xc1\x95\xba\xc0\x08\xf8\xf6\x8b\x20\x2f\xdc\xaf\x49\xe8\xed\x22\x49\x00\x91\x85\x83\xe4\x71\x25\x1a\xb1\x64\xe2\xcc\x64\x28\xad\xd8\xfc\x9c\x25\x01\xba\x58\x63\xf6\x25\xc0\x23\x43\xec\x07\xe1\xa8\xe5\xe0\x76\xa7\x15\xdb\xd2\x69\x45\x1d\xdd\x35\x4b\x61\x9e\xd3\xc3\xb9\x5c\xd5\x15\xd5\x15\xc1\x95\x52\x14\xb0\xff\xd2\xda\xa2\x22\x8e\xc2\x61\x68\x81\x5b\xb0\x16\xb7\x14\x41\x69\x5d\x7e\x60\x71\xae\xdd\x4b\x56\xe3\x54\xfc\x2b\xa1\xa4\xbb\x4d\xbb\x8a\xaf\x95\x53\xdc\x37\xb1\xc9\xc3\x80\x12\xab\xee\x24\xbf\xa4\x4e\xf2\x4b\x2a\xc9\x3b\xf4\xe3\x9d\xb4\x82\x19\x47\x87\x23\x55\x77\xfd\x0a\x95\x05\x8d\xa6\xb0\x22\x94\x5f\x06\xeb\xf2\x17\xb4\xa1\x61\xb9\x8f\x52\x4a\xce\x76\x71\x3b\x44\xde\x0d\x2d\x1f\x6b\xfc\x51\x12\x53\x4f\xdf\x73\x9c\xfe\x7b\xcf\x73\x03\x70\xa7\xce\xae\x8b\x93\xe0\x7a\x95\x4d\x28\x1f\x3c\xe6\x82\xc9\xf7\xe8\x04\xb3\x5c\x7f\xe5\x94\x88\xbc\x5d\xf9\x74\x96\xc3\x6f\xfe\x90\x4d\xd1\x29\x8a\xb9\xf7\xc6\xae\xd9\x63\x53\x81\xa4\x8f\x8e\x15\xce\x6a\xbb\xd6\x61\xe3\x44\x24\xff\x06\x99\x31\xab\x77\x5a\xbe\x16\xdc\x3b\x86\x2c\xf1\xbf\xc0\x22\xc2\xf6\x3f\x3c\xd9\xba\xe8\xa9\x5d\x2f\x5e\x32\x3d\x93\x3a\x8a\x7d\xdb\x52\xeb\x78\x42\xab\xc5\xc6\x41\x81\x0e\x52\x4c\xcb\x6d\xfc\x84\xa8\x9d\x97\x6f\x2e\x70\xa7\xc7\xac\x7f\xb7\x12\x66\xf2\xf5\x38\xb8\xce\xe8\xde\xe2\x33\x8d\x11\xa3\x89\x72\xc8\x11\xd8\xe5\x74\x4b\x2d\xa7\x5b\xd6\x7b\x8c\x92\x60\x99\xca\x2d\x7a\xfd\xa8\xd2\xcb\x42\xa5\x23\x85\xff\x01\xa8\x31\xce\xd5\x67\x3d\xff\xd5\x7f\xfe\xf3\x60\xc8\x67\x98\x93\x48\x33\x2a\x9d\x81\xb3\x9f\xcb\xe7\x46\xdc\x76\xc6\x07\x99\x28\x37\x48\x91\x01\x94\x66\xa9\x0a\x99\x89\x89\xb3\x70\xc5\xec\x2c\x9f\x58\x44\xc2\xdd\xe1\xfa\x93\xaa\x68\xb2\x8a\x2f\xb9\x15\x03\xe5\x22\x50\x37\x30\x65\x3e\x96\x05\xbc\x5b\x64\x20\x37\xef\x34\x74\xfd\x1f\x70\x3c\xcb\xbc\x36\x39\x2c\xe0\x1b\xcf\x95\x28\x21\xc8\xbb\xc3\x01\x50\x60\x2c\x10\xf0\x5c\xc7\x23\x32\x89\xcd\x58\x85\x25\x50\xa6\xc1\x53\x5d\xa2\x5d\x09\xab\xfc\x51\x95\x4d\x31\xf7\xa7\x75\x6a\x8c\x1c\x4d\x2b\x92\x6b\x69\x63\x8e\xd3\x2b\xf2\x75\xed\x75\x08\x60\x99\xa6\x6b\x9a\xb6\x1b\x8f\x22\x4e\xaf\x0d\x2e\x4c\x17\xf0\x69\x0b\xa3\xb3\xdd\x2d\x90\x91\xd8\x6c\x14\xa8\x88\xfc\xa2\x67\x15\x54\x05\x85\xab\x56\xc3\x85\x26\xb1\x2c\x50\x6a\x2e\x85\x8c\xb0\x44\x4a\xec\x06\xfc\x25\xbe\x51\xe6\x3c\x1c\x0e\x4d\x2f\x24\x1e\xd3\xf9\x43\x0e\x4d\x6f\xe1\x93\x0f\x54\xa7\xec\xf4\xe4\x29\x6d\x3d\xc3\x51\x11\xb9\x1d\x8b\x90\xe5\x86\x0a\x5f\x6e\xd4\xea\x36\xa8\x27\x50\x6c\x10\xf9\x71\x0f\x89\x52\x18\xbf\x23\x1a\x28\xac\xe5\xf2\x6e\x96\xfb\x52\xf5\x85\xa6\x66\x80\xc5\x1b\x9b\x2c\x43\x69\x19\xc6\x88\xe1\xa0\x70\x85\xa1\x14\x83\x33\xe8\xcd\xf1\x2e\x55\xda\xf9\x3b\x04\xb5\xb3\x2c\x31\x0e\xd4\x73\x17\xce\x37\x7e\xf5\x34\x42\x2f\x4c\xd1\x27\x40\x27\x70\x1a\x62\xec\xa8\x19\x2e\x7a\xad\xa7\x9f\xb6\xe5\x0d\x32\x41\xb8\x79\x08\x19\x06\x8c\xc3\xa6\xee\x57\xfb\x2f\xd4\x69\x29\xd9\x8a\xd2\x76\x23\xd4\x61\x16\x2a\xfc\xc3\x75\xc5\xd6\x74\x6f\xec\x44\x8f\x6f\x52\x36\xdd\x56\xcf\x1d\xf5\xe4\x55\x0f\x0a\xf7\x30\x80\xf7\xbd\xed\x5f\xb6\x8c\xb9\xa5\xc3\x85\x7c\x3d\xa2\x6a\x18\xfe\x5b\xb0\xd6\xc0\x34\x6e\xeb\xb4\x5e\xb4\x25\xbc\x89\x43\x79\xdf\xc3\x26\x43\x76\xec\x06\x4e\x35\x14\x68\x6e\xe1\xa4\xc1\x77\x6d\xd2\x49\x83\xd7\xbb\xcc\x85\x73\xfc\xfa\x25\x4f\x49\x4a\x9c\xa7\xcd\x88\x6a\xf2\x54\xe7\x11\x9b\xaf\x88\x4d\x0f\xb1\x3f\x0c\x15\x27\x12\x2b\xbc\x9c\x2c\x83\xe7\xb9\x72\x0a\xe7\xd0\x70\x3e\x9e\xd6\x3a\xc5\x7e\xb8\xea\x43\x3e\x86\xa9\x95\x68\x31\x0b\xcd\x52\xdd\x22\xbd\xd4\xce\x93\x88\x81\xee\x20\xa5\xfa\xf6\x58\x79\x86\xf8\x1d\x11\xad\x69\xc0\x98\x96\x76\x97\x54\x11\x5a\x95\x0a\x9d\xe2\x06\xb9\x50\xf3\xb5\xf7\xef\x6f\x2f\x99\x95\x32\x40\x5e\x14\xd9\xaa\x63\x8a\x32\xe1\x98\xad\xa2\xad\x98\x34\x16\x2e\x5a\xa4\x7d\x36\x68\xb0\xf9\x5a\x71\x6d\x0c\xfd\xd7\xc2\x21\x70\x96\xc8\xc1\x7e\xac\xd8\x39\x3f\xd6\x7c\x1e\x44\xa4\x1b\xf7\x0a\xd2\xa5\xd9\xfc\x00\x31\xe3\x07\x4a\x14\xda\xc4\x7d\xbf\x8f\x3c\x20\x12\x14\x37\x95\x82\xe9\xcd\xda\xcb\x3c\xd3\x0e\xfc\x2c\x8c\x13\x45\x24\xca\xaa\x45\xd2\xa8\xde\xc0\xa3\x1f\x19\xdf\x96\xba\x60\x13\xc1\x3c\xc9\xd7\x93\xad\x96\x63\xdf\x3e\x52\x6c\x19\xa5\x49\xaf\x08\x72\x49\x92\x62\x87\xb0\x0a\x25\xdf\x34\x50\x1c\x1f\x68\xf7\x4d\xd8\x37\xcc\xff\x8b\x63\x8d\xe3\x4e\xbe\x51\x5a\xfd\xab\x61\xcf\x54\x45\x79\x15\xfc\x59\x01\x12\x4c\xdc\x2f\xa2\x25\x16\x8b\x14\x38\x94\xb3\x9b\xa7\x95\xc6\xec\x6f\x7f\x3e\xa4\xd4\x4f\xfb\x61\x84\xd3\x5e\xb5\x71\x1d\xb0\x9a\x15\x0d\xcd\x92\x2c\xc2\xc1\x00\x27\x2d\x44\xbd\x09\x18\x18\xcc\xe1\xef\x7f\x2e\xe9\x70\x90\xfa\xb1\xc1\x82\xd7\x27\x9e\x5a\xb9\x52\xd5\xbb\xeb\x39\xe1\xd6\xa4\x90\x34\x02\x13\xb4\x61\x89\x0b\x5b\x5b\x5d\x15\x2b\x4d\xba\x09\x03\x6d\x9f\xab\xf0\x0b\x89\x2a\x66\xa3\xb4\x7f\x32\x0c\xe3\x4c\x72\x47\x52\x49\xd7\x65\xf5\x1a\xca\xe8\x99\x76\x91\x4a\xf3\x28\xa6\xe9\x34\x36\x2d\xf7\xfd\x7a\x95\x1e\x96\xa6\x1e\xaa\xad\xf2\x03\xc8\x69\x33\xbf\x0e\xdf\x34\xa8\x00\xb5\x5f\x2d\xfc\x32\x50\xd5\xa2\xaf\xb4\xe9\x10\x62\x0f\x2a\x7c\xeb\x1a\xac\x5d\x74\x23\xd7\xb2\xf5\x12\x9f\x25\xdc\x4d\xc4\x37\x2a\x83\x68\xca\xb8\x29\xb6\x40\x87\x79\xce\x4b\x70\x3b\x36\xdf\xa8\x9e\x0c\x3f\xcf\xfd\x60\x79\xd6\xf5\x64\x80\x10\x5a\x75\x44\xbd\xb4\xf9\x26\xd9\x62\xd6\xf4\xf5\x14\x01\x1e\x12\x4d\xc0\xba\xdc\x83\x53\x2d\x0c\x60\x4f\xd6\x11\xc5\xb2\x83\x01\xa7\x61\xaa\x05\xbe\x69\x20\x6d\x3a\xd8\x4e\x62\x90\x95\x59\x79\x8a\x7d\x42\x7e\x72\x4c\x21\x02\x56\xc3\x7c\xd0\x4b\xfd\xd5\x96\x52\x57\x47\x26\x83\xaf\xc7\x4f\x2a\xd9\xfd\x22\x4d\xa2\xa4\x1f\x66\xcc\xa4\x2e\x7c\x71\xf4\x59\x01\x5e\xd7\x43\xfa\xf9\xf6\x92\x1f\xe6\x83\xa5\x82\x41\xb9\x36\xbc\xb3\x34\x9c\x9b\x0a\xfd\x72\x41\x81\x72\x5f\xf7\x57\x0c\xf2\xda\x22\x3a\xe6\x88\xd5\xee\x8e\x77\xf2\x2f\x2c\x4d\x3b\x4e\x96\x13\xaa\xd6\x76\x74\x3c\x75\xf0\xd7\xbf\xce\x4b\xe4\x4d\xaf\xf5\xab\x96\xfd\x50\xf1\x48\x04\x81\xc9\xb2\x04\xf8\x2d\x4b\xea\x6d\x7d\xac\xed\xc0\xb3\x21\xd8\xbc\xa8\x6a\x05\xef\x37\x11\xe3\xf5\xfc\xe1\xa8\xe5\x58\x8a\x4e\x56\x54\x09\x1b\x2c\x73\x19\x3e\x4b\xe3\x17\x6a\x27\xbf\xa9\xd4\x28\x98\x56\x04\x00\x82\x0d\x8b\x2d\x1e\x25\x59\x16\x76\xa3\x35\x7a\x62\x2c\x80\x3b\x63\x67\x0c\x1f\xe9\xb8\xd2\x31\xeb\x31\x49\xa5\xb3\x81\xaa\x5d\xce\xe3\x79\xce\xf8\xdc\x83\x2f\x06\x9f\xfa\x2c\xdc\x03\x39\x00\x95\x76\x89\x3f\xec\x26\xbd\xd0\xe7\xd3\xd2\xb6\xa2\x3e\xef\x5a\x51\x1b\x10\x86\x91\x82\x4f\x30\x30\x7f\xec\x02\xc4\x6b\x0d\x9c\xf5\x07\xda\x99\x1f\x25\xc3\x8a\xd7\x3b\xd5\x51\xee\xde\x54\x83\x22\xd1\x96\xfc\x91\x65\x58\x74\x0d\xfe\xe8\xab\x40\xc0\xfc\xa0\xb1\x9d\x28\xcb\x93\x5e\x7f\xed\xf3\x49\xf1\x94\x0f\x34\x00\x9f\x97\x62\x7b\x28\xe7\x42\x40\x5d\x0e\xe4\x87\xec\x14\xbd\x3c\x1c\x05\xd0\x32\xf2\x75\x45\x89\xd3\xcf\x7e\x86\x7c\x65\xf8\xb7\xe7\xc7\xf0\x37\xb1\x8c\xa7\x27\x0a\x5c\xf8\x01\x66\x4b\xdc\xe8\xf2\x87\x71\x98\xcc\x74\x94\xc6\xe5\x55\xf6\x13\xf1\xf0\x37\x61\x69\x90\x1b\xdd\x3e\xd1\xd5\x7b\x85\x5a\xbb\x4e\xbe\x2c\x26\xf3\x3e\x19\x30\xa4\xd0\x67\x88\xd9\x15\xa6\x7f\xaa\x43\xee\xbd\xe5\xb6\x2a\x1d\x6f\x58\xe0\x19\x10\x35\xc0\x95\x64\x34\x23\xec\xe3\xb6\x4e\xe9\x55\xc3\x97\x9d\xe9\x38\xf7\x1c\x89\x7f\xce\xf5\xc0\x5f\xc6\x2b\xde\x22\x47\x1a\x4b\xfb\xb7\xd1\xfe\x0e\x33\x8c\x66\x6e\xe9\xde\x2c\x8d\x9b\x10\x1b\x92\xaf\x8e\x7c\xed\xec\x44\x31\x88\x7f\x77\x4c\xa1\x05\x7c\xab\x46\x4d\xe9\x2c\x0f\x87\x14\x67\xc5\x7d\x72\x35\x60\x68\xde\xc1\xf3\x60\x4f\x60\xc4\x80\xbf\x98\xea\x38\xe4\x4a\x96\x14\xd1\x52\x11\xc1\x8c\x4a\x2f\x84\x33\x45\x17\x14\xdc\xf3\xd5\x22\x34\x79\x4b\xe1\xe1\x98\x15\x53\x1a\x5a\xf5\x52\x18\x98\x2f\xea\x1e\xdd\x13\xc8\x8f\x59\xd6\xa0\xf2\x3b\x90\xfa\xbd\x8f\x69\x85\x11\x9c\x02\xd4\x0c\x4f\xfc\x89\xe7\x68\x90\xaf\x52\xbf\x0b\x16\xe7\x14\x4c\x1b\x33\x9a\x12\x94\x0a\x51\xc1\xf4\xa4\x9c\x17\x81\x85\x5a\x58\xea\xad\x3d\x13\xd5\x9d\xbb\x9d\x80\x44\x48\xf8\x3e\x4e\xa3\xfc\x80\x60\x46\xa8\x73\x3d\xde\x69\xfd\xda\x3f\x73\x47\xe2\x8b\x0a\xfc\x62\xf9\x4b\x6f\x51\x8d\xd9\x62\x2c\xcb\x05\x8f\xdf\xbf\x3b\x56\x48\x83\xbb\x63\xd5\x78\x76\x54\x65\xed\xa6\x3b\x4d\x5a\x81\x45\x9c\x52\x6b\x9c\x53\xf5\x7c\x63\xec\x1a\x17\xde\x50\x9c\xe8\xe1\x70\x94\x26\x2b\x86\x72\x1e\x2a\xb5\xf1\x1c\x87\xab\x37\x14\x58\xe1\x1e\x7d\x05\x8a\x98\x77\x14\xd0\xe9\x1a\xdc\x08\x6e\xd3\x51\x34\x78\x7d\x13\x1b\x14\xda\xe0\x0a\xfd\x64\xac\x70\x3e\xbf\xa3\xd4\x0f\xff\x15\x12\x3e\x4c\x59\x8b\xf7\x86\x39\xe4\xa6\x01\xa1\x1f\x74\x28\x8a\x13\x35\xa7\xec\xd0\x0b\xed\x81\xf1\x53\x3a\x78\x6c\x9f\x8c\x2a\xff\x36\xb1\x78\xe4\xa9\x3f\x1a\x85\xdc\x67\x8e\xd7\xd7\xf0\xf5\x75\xad\x9d\x79\x65\xfc\x25\x9b\x57\xee\x99\x34\xcb\xfd\xb8\xf7\xcf\x7f\xde\xef\x25\xa3\x5c\xb1\xc0\x82\xdd\x58\x2a\xb4\xae\x5d\x71\xd9\xc4\x79\x11\x2c\xaf\xd1\x86\x42\x92\x80\xb1\xc0\x1c\xf0\x93\xa5\x11\xce\x93\x7a\x8e\x65\xb1\xdd\x4f\xfd\x5e\xe1\x8b\x78\x07\x83\xe1\x3d\xd7\x5d\xf5\xe6\x58\x17\x0a\xd3\xa4\xe8\x0f\xa6\x54\x14\x07\xee\x25\x5d\x95\x87\xf7\x7d\xb2\x52\x63\x89\x97\x59\x17\xd8\xe2\x63\x6d\x15\x64\xa3\x96\xc9\x3f\xb0\x48\x12\xe7\x7e\x96\x99\x21\x71\xc2\x5a\x30\x3b\x16\xb8\x68\x19\x6a\xd6\x96\x81\x1f\x2d\x4d\x3b\xbf\x8a\x13\xbd\x2c\xca\x4c\x6f\x23\xca\xad\x2a\x0a\xae\x9f\xa3\xc4\x43\xe0\x52\xfb\x15\xf5\x00\x01\x11\x6a\x2d\xa0\x22\x30\xcc\x16\x05\xff\x0c\xfa\xef\x82\xec\x6b\x29\x3e\xd8\xc7\x15\x76\x82\xaa\x14\xbd\x29\x2d\x85\x7f\x43\x49\xc3\xea\xa6\xfb\xff\xed\x63\x9b\xf6\x35\xaf\x95\xbe\x14\x13\x67\x6c\xbe\xa9\x59\x0a\x2f\x57\xc4\x31\x9b\xe4\xda\xfc\x7e\x6a\xe4\xad\x2c\x99\xbb\xc3\x84\x9c\xaf\x54\xde\x8a\x74\xa9\xe5\xc6\x12\x48\x32\xbe\xb6\xa0\xa5\xcc\x98\x61\x86\xc4\x23\x52\xf6\x7c\x28\x8a\x5f\xbb\xb5\x02\x2d\x79\x6a\x2b\xb7\x4a\xfc\x21\x34\x65\xba\x03\x4e\xe8\x43\xca\x79\xb6\xd1\x84\x03\x67\xec\x54\x22\x90\xb9\xff\x9a\xc9\x76\x91\x95\x65\x42\x1e\x05\xf1\x03\xc3\xa0\x34\x7d\x92\x7d\x90\x94\x7a\xa5\x63\xdc\xad\xc3\x63\x54\x7e\x90\x16\x1c\x55\x58\x87\x11\x11\xce\x1f\x7a\x49\x9c\x5c\x97\xc7\xae\x6f\x5a\x37\xdd\x85\xc3\x51\x04\x45\xc8\xf2\xdf\x51\xce\xff\x11\x3d\x1b\x5f\x7b\x3a\x81\x9d\xa7\x66\x68\xa2\x35\x4c\x0d\x92\x3b\xeb\x8a\x2b\x62\xbd\x46\x3a\x79\xe0\x85\x83\xed\x22\x6b\xd1\x61\x0d\x47\x94\x71\xc5\x7c\xe3\x88\xaa\xca\x68\x92\x79\x56\xf8\x78\xc5\x1c\x61\x2b\x5c\xc7\xb2\x96\xea\x82\xdb\xe5\xcb\x71\x42\xfa\x9f\x2d\x47\x86\x43\xfb\x4e\xb8\x5a\x1a\x14\xa0\x56\x93\x34\x0d\x39\x83\xa0\xc2\x33\xc9\xfc\xfd\x9e\x4a\x21\x5c\x56\x4d\x91\x02\x65\x2f\xff\x55\xe4\x17\xdd\x2a\x38\xaf\xc9\x12\xc2\xbc\x60\xe8\xc9\xf3\x56\x0d\xcb\x53\xe0\xfd\x1f\x8f\x15\x1d\xf5\x4f\x69\x66\x2c\x9f\x9a\xad\x78\x4c\xa3\xcd\xc5\x8a\x69\x59\xce\x4c\x5d\x7b\xa3\x06\xde\x6e\x92\xfa\xac\x28\xc3\xb2\x30\x9e\x4b\x48\xfd\x9e\xdd\x93\x43\x3f\xf5\xf3\x41\x12\x4f\xbb\xa7\xbe\xa4\x18\x99\x6f\xea\x7c\xce\x19\x78\x17\x52\x2a\x77\xcc\xcf\x61\x6e\xd0\x2b\x0c\xaf\x11\x2e\x2e\x3c\x0a\xd0\x43\x62\x89\x5d\x56\x91\x71\x3f\x4a\x92\x21\x8c\xbe\x34\x1d\x95\x1f\xb2\x64\x2d\xb6\xb2\x77\x5a\xcd\xeb\xd0\x4f\xc3\xdc\x8f\x10\x10\xc1\xb8\x43\x1c\x57\xaa\xe2\xb4\x1e\xe0\xe3\xfc\x65\x93\x90\x4f\xb9\xe9\x97\x01\x1f\x06\xba\xfa\x08\x22\x20\xbe\x71\x9a\xc7\x91\xbf\x92\xa4\x5a\x93\xf8\x82\x22\x7d\xbe\xa9\xe2\xb6\xa3\x76\xb1\xf6\x4c\x9c\x67\x85\x12\x98\xbe\xa5\x0f\xc9\x5b\xb5\x5c\xdd\xa1\x17\xda\x41\x79\x16\xb5\x1c\xd3\xe0\xf7\x3d\x45\xee\xf9\x7d\x75\x3c\x98\xb8\xfc\xcb\x87\x4b\xbf\x0b\xa3\x7f\x06\x2b\xc7\x2a\x0b\xdb\x06\xc7\xfb\x1a\xae\xcc\x9e\x12\x2a\x41\x6f\xc0\x7f\x57\x9c\xec\xcf\x71\x51\xf1\xdf\x78\x4e\x36\xe1\x0c\x8c\x85\x90\xb5\xd3\xf3\x88\x59\xae\x0b\xcd\xcc\x53\xcb\x77\xd8\x33\x69\x55\xa7\xed\x9e\xe7\x36\xc4\x3d\x7d\xfc\xfa\x99\x19\xfa\x71\xab\x02\x50\xd0\x0c\x43\x17\x55\xea\xa1\x17\xa6\x26\xc8\xa3\xb5\xd9\x9a\x0b\x66\xf5\x12\x6c\x82\x67\x13\x2e\xb2\xfd\xc6\x17\x2d\x41\x14\xc2\x4e\x2b\x9b\x55\xfe\x94\xf0\x20\xb8\xee\xca\xd1\x20\x8c\xc2\xd1\x28\x8c\x91\x6a\x45\x95\xea\x87\xb4\x8c\xf9\xba\x36\x7d\x8b\x73\xed\x51\x1a\x26\x9c\xc8\xb4\xe2\xf2\xb6\xde\xb5\x51\x8b\x57\x9f\x29\x7d\x82\x3c\x74\x21\x3d\xcc\xc9\x67\xe5\x62\xdf\x6c\x75\xd4\xda\xbd\x57\x4b\x92\x48\xbe\x30\x4f\xd0\x29\xe8\x78\x17\xe9\x8d\xa4\xc6\xe8\xf6\x57\x9e\xfa\x3d\x93\xee\xa4\x81\x10\x16\x52\xd7\x95\x8b\x70\x0a\x27\xd2\x6d\x2a\x48\xa3\xca\x70\x0a\x13\x8e\x84\x3f\x1b\x65\x24\xdf\xaf\x70\x90\xc8\x77\x63\x57\x18\xfe\xa4\x96\x37\xf8\x6a\x9b\x1a\x55\xa9\xe3\xc9\xf2\xcc\x96\xf3\x86\x93\xed\x3e\xcd\x9b\x60\x22\x6b\xbb\xf4\x85\x83\xed\xa5\x34\x89\x81\xb1\xe1\x8c\x0b\x7d\x42\xb2\x2f\x8e\x3c\xc1\xbc\x16\x44\x45\x16\xae\x08\x98\x9d\xbf\xb3\xf2\xfd\x5b\x17\xed\xfc\xa1\xf6\xd0\xef\xc7\xe1\x52\x18\x18\xfe\x11\x8b\x8e\xb5\x74\x6f\xf7\xd5\x8f\x64\x45\x16\x98\x51\x1e\xb2\x96\xd2\x01\x57\xc1\xb1\xec\x17\x27\x55\x8a\xb0\x5b\x64\x61\x6c\xb2\x6c\x68\x62\x6a\x44\x83\x0b\x01\x16\x14\xbe\xae\xa1\xf5\x2c\xce\x2b\x4d\x96\x28\xdb\xa4\xd4\x16\xb6\x21\x44\xe5\x9b\x8e\xeb\xa0\x0e\x0c\x91\xdb\xc1\x9a\xa9\xfa\xed\x41\x5b\xbf\xad\x23\x25\x47\x42\x39\x04\x83\x79\x9a\xf6\x06\x5f\x2b\xe3\x9c\x27\x71\xbf\x00\xa3\x34\x16\xf3\x0f\x60\x98\x10\x72\x1f\x51\x25\x88\x77\x54\x4b\xb7\x40\xba\x91\x65\x66\x84\x83\xc2\xda\x5f\xab\xa5\x52\xca\xb9\xf6\x53\x17\x91\x89\x04\x5e\xcb\xca\x23\x9f\xab\x65\xa6\x29\x5d\x48\x9c\x63\xb6\xdb\x0c\xa1\xe8\xfb\x64\x73\xf8\xba\xb1\xc9\xcd\xef\xcb\xce\x83\x63\x34\x4b\x65\x0e\xd8\x7e\x2e\x62\xe1\x75\x37\x6b\xe4\x6f\x8b\x73\xe5\xe6\x0d\x52\x4e\xff\x72\xc6\x49\x13\x8f\x0b\x17\x96\xb4\x35\xf8\xfd\x34\x09\x06\x66\x18\x06\xbe\x56\x0b\x05\x5c\x88\xaf\x27\x5b\x9f\x72\xfe\x90\xa2\xfb\x61\x32\x68\xcf\x61\xcd\xea\xda\xd3\x2f\xbf\xdc\xce\x07\x05\x52\xa0\xb6\x60\xfc\xbc\xa3\x5f\x6b\xfc\x7b\x3f\xdf\x41\x76\x01\x15\xe8\xdf\x23\xeb\x8f\xd4\xfa\x15\xaf\x8c\xc5\x05\x68\xe4\xd2\x3a\x0f\x23\xa9\x66\x7b\x8d\x9e\x97\xae\xdd\xd9\x89\x0e\x92\x8a\x38\x7b\xd4\x71\xdf\x5f\xc2\x19\x23\x88\x37\xdd\x71\xa6\x3a\x82\x4f\xc3\x72\x8b\xa6\x31\xfd\x0e\xfc\x9e\x93\x5c\x48\xb5\x5c\x4f\xa5\xbf\x68\xb9\xc8\x16\x5d\xb3\xb4\x02\x3f\x6d\x6c\x21\x44\x7e\xbe\xda\x0b\xc6\x5f\x8c\x43\x5f\xea\x20\x0d\x89\xd7\x2c\xec\xc7\x7e\x44\xbe\x3d\x4e\xc8\x2b\x9a\xc2\xf9\xaf\x90\x73\xe0\x1b\xcf\xa5\xa9\xaf\xd4\x6c\xfe\xe2\x5c\x3b\x8c\x57\x92\x68\xc5\xf4\x40\x1f\x8e\x4c\xf1\x67\x78\x66\xa4\x89\x36\xc6\xea\xe4\x04\x2e\x1f\x6f\x36\xdd\xf9\xbc\x5a\x95\x79\x6d\x10\x76\xc3\x7c\xca\x75\x18\x5c\xc5\xc8\x09\xdf\x61\xb9\x22\x71\x96\x1c\xa9\xeb\xa6\x2d\x1e\xf8\x72\x79\x6e\xaf\x98\x14\x56\xad\xe5\x54\xaf\x3d\x05\xee\xb3\x9e\x4d\x3f\x4a\xba\x7e\x34\xe3\x16\xf1\x79\x5d\x98\xba\xa0\xe8\x15\x66\x88\xa3\x04\x5e\xc5\x67\x78\x2d\x26\x1b\x6e\x48\x2e\x1f\x68\xaf\x0e\x92\x56\xb9\xe0\xa4\xa1\x5e\x51\x3a\xdd\xb6\x1e\x6a\xf2\x5a\xd8\x0b\x5f\x67\xa1\x6f\x58\xf5\x4b\xca\xbd\x38\x4f\x93\x2c\x1d\x3f\x5b\x4d\xde\xe2\x5c\x7b\x68\x72\xb0\xce\xab\x6a\xbb\x44\xb8\x8f\x52\x93\xac\x4e\xa7\x6f\xde\xa8\x84\xfd\xcb\x26\xde\xe5\x82\x3f\xe0\x8d\x2c\xef\xf9\xfc\x21\xfe\xff\x47\xb4\xb2\xd0\x4f\x69\x6d\xc2\x6d\xd8\xd9\x51\x89\xce\xb3\x63\x55\xe7\xbb\x37\x76\x9c\x66\xbb\x90\x38\x83\xef\xfb\x17\x63\x15\xe1\x5c\x54\x2e\xc8\xe5\x0a\x0d\x73\x3a\x4a\x00\xd1\xca\x76\x38\x4b\xc4\xc5\x36\x4e\xe4\xe2\xe7\x24\xab\xab\x94\x45\x54\x1b\x08\x9f\x18\xfc\x71\x25\x33\xd9\x33\xc3\x24\x28\x7f\x21\x40\x9a\x1c\x16\x13\x8d\xc4\xc8\x74\x01\x95\x8f\xb3\xe6\x6e\x25\xfa\x1e\x86\xf9\x2c\xbc\x05\x8c\x08\x08\x85\x31\xaf\xa0\x95\xc2\x69\x06\x08\x05\x82\xb2\xdb\x2a\x40\xbb\x8d\x87\xb2\x35\x8a\x72\x6c\x25\x4d\xf0\xa4\x62\x96\xc8\xd3\xd0\x4f\x83\x81\xcf\x59\x55\xdb\xef\x64\x43\x9e\x13\xde\x17\xaa\xed\x7a\xe5\xe1\x51\x2e\xff\x69\x15\xd5\x80\x4b\x47\xc4\xc4\x94\x24\x01\xa4\x7e\xf8\x5a\x25\x4d\xf2\x41\xe9\x8c\x53\x4d\x89\x1b\x94\x14\x18\x02\xd4\x02\xb0\x33\x4c\xcc\x2c\xb5\x6b\xd7\x56\xf7\x8b\xcf\xfe\xa3\x56\xe5\x23\xfb\xc4\xf3\x3b\x53\x41\x46\xe5\x7e\xb4\x87\x72\xe8\xe2\x52\x4e\x39\xdd\xb6\x4d\x32\xcf\x92\x05\x50\x45\xf2\xf7\xe1\x6b\x59\xaa\x64\x5b\xbb\xdd\xc4\xe3\x20\x3d\x3e\x35\x51\xd0\x2c\x4f\x41\xd2\x2f\xc3\x82\x62\x5e\x8f\x2b\x81\x81\xcb\x1a\x48\xd0\xea\x60\x82\xf1\xa2\x1f\xc2\x9c\xf1\x67\x68\x79\x59\xb2\x58\x07\x47\xff\xcf\xaa\xad\x3b\xcb\xd3\x70\x59\x28\x04\xb0\x3d\x4e\xd2\x0b\xf1\x75\xcd\x55\xd8\x37\xdf\x5e\x31\x69\x2f\x0c\x72\x9c\xe0\x9a\xaf\xdf\xfa\xb1\x0a\x9e\xde\x40\xd5\x62\x04\x21\x75\x78\xae\x22\xd8\x2e\x14\x69\x0e\x77\xb0\x1c\xae\x86\x9f\xaf\xf6\x2a\x1d\xae\x49\x6c\x1e\x6d\x59\x9a\xc1\xa7\x26\x55\xfe\x80\xc3\x73\x6c\xac\xa8\x45\x83\xa3\xab\x2b\x74\x0a\xa1\xeb\xf4\x2b\x1d\x35\x1d\x7c\x6e\xb9\x36\x7e\x8e\x9f\x83\x27\x26\xca\xd4\x3e\x34\x29\x87\x48\xd6\x93\x3a\x37\xef\x83\x92\x1a\xad\x56\x8f\x77\x5c\x11\xf4\xc1\x58\x33\x16\x35\x89\x7b\xad\x86\x11\xaa\xe6\x78\x5a\x64\x43\x85\x1b\xb8\x82\x2a\x6f\xe0\x72\x2c\xdd\xb7\xbc\xa5\xc8\x65\x3e\xf3\xb4\xd4\xc4\x67\x0a\x14\xe3\x47\x61\xb6\xbc\x86\xa4\x8f\xb5\x56\x0e\xf6\x71\x5a\xf1\x03\x64\xc5\x68\x94\xa4\xf9\x1e\x7a\x74\xc4\x7a\x13\xa5\xef\x76\x9b\x8a\x14\xf6\x90\x29\xf7\x07\x6b\xee\x63\x48\xd0\x3d\x73\x1f\x87\xb4\x10\x72\x95\x43\x82\x8c\x01\x54\x92\xe0\x20\xbd\x0f\x17\x85\x9b\x54\xf8\xd9\x11\x4c\x31\xaa\x11\x89\xe7\x4b\x8a\xd2\x09\xa9\x3d\xe6\xd7\xa2\x35\x8b\x2e\xba\x0f\xc6\x4a\x2d\xff\x28\xde\x0d\x2e\xc2\x8c\xc2\xea\x0d\x8c\xdf\x7b\xb5\xf0\xd3\x9c\x38\x0d\x16\x84\x4a\x9b\x3b\xf7\xb1\xb9\xee\x12\x94\x0d\xe1\xce\x29\x95\x0a\x59\x07\xf7\x25\xff\x83\xb7\xa7\x8a\x62\xc8\x06\x24\xd2\x8c\xac\xf9\x9f\xc1\x61\xe7\xbc\x0d\x7d\x07\x9e\x18\xf3\x8b\xd3\x0f\x8e\x1c\x7f\x40\x4d\x95\x3a\xef\xf1\x87\x90\x56\xb1\xc2\x79\xf3\x87\x5c\x45\x62\xc1\xca\xe5\x6e\x8e\x95\xf6\x5f\x23\x5a\x66\x94\x26\x23\x9f\x43\x6c\x80\xd2\x10\x47\xf2\x75\x05\x53\xbc\x92\x04\x53\xaa\xdc\x81\xe0\x55\xbc\x60\x25\x9c\x72\xaf\x62\x30\xc3\x38\x68\x39\x29\xb8\x0f\x55\x36\xff\x43\x5b\xd2\x1f\x99\x74\x89\xf2\x0a\x2d\x95\x8a\xf7\x5c\xe5\xbe\x5e\x07\x3f\x3c\x77\xa0\xdd\x2b\xf0\xdc\x5a\x8f\x8c\xaf\x6b\xf5\x93\x97\x5f\x2e\x3d\x61\x72\xfa\x54\x4f\x3b\xa3\x79\x84\x3c\x4c\xd2\xd0\xd4\xf0\x32\xe3\x22\xaa\xbf\xc0\x9f\x89\x1a\x35\xed\x01\x49\x5d\x63\x7d\x62\xb8\x19\x03\x28\x06\xd8\xf1\xe9\xbe\x52\xf4\xfa\x86\xfb\x19\x2b\x03\xc6\x1a\x63\x00\x50\xda\xfe\x00\xa7\x25\x07\x63\x2f\x65\x00\x7a\x0a\x2c\xb5\x4d\xcd\x80\xe2\xa7\xcb\xa6\x5c\xbc\x3b\xe9\x6b\x60\x8b\xbe\x87\x9a\x2a\xdf\xe8\x0a\x98\x5e\x86\x47\xc6\x8e\xc6\xf1\x82\xa7\x5a\xb5\xd6\x69\x47\xf1\x3f\x28\xee\xe9\x3f\x55\x10\xaf\x62\x94\xe5\x7e\x98\x72\x70\x29\x20\x97\x96\xe5\x8f\x39\xa6\x70\xb4\x43\xbf\xef\xbf\x5e\x06\xe1\x64\xd7\x90\x10\xbf\xa9\xa8\x0e\x8f\xe9\xee\x1b\x2d\xf6\xb5\xff\xd9\xc3\x0a\xeb\xb4\xa1\xb1\x4e\x9a\x30\x37\xa5\x93\x64\x85\xa1\x69\x9a\x5f\x9a\xaf\x6b\x25\xb8\xf9\x43\x6d\x3f\xf5\xbb\x2a\x49\xc1\x11\x15\xdf\x4c\x1e\x57\x3d\xac\xac\x94\x54\x8e\x09\x4c\x2f\xc0\x96\xf0\x35\xc0\x7f\xc9\xd7\x0a\x4c\x74\xbf\xc1\x3c\x13\x7e\x8e\xdb\x70\x10\xa0\x1c\x53\xc1\xca\x31\x55\x72\xee\x86\x51\x94\xed\x6a\x29\x95\x7c\x9a\x5d\x09\x04\x14\x31\x0c\x88\x7e\xb8\xa9\x1e\xb3\x8b\xc3\x02\x74\x78\x58\x49\xff\x61\xac\x38\x64\xcf\xc1\xed\xb0\xbd\xf7\x16\x7e\xcb\x1b\x02\xf3\xf7\xf6\x58\x61\xd3\x3e\x6a\x00\x09\x59\x24\x52\xac\xa1\x83\xc7\x55\xae\xfa\x78\x03\x2c\xaa\x9f\xe4\xe8\x93\x85\x59\xd2\xdd\xbc\x9c\x2d\x46\x14\xfa\x40\x55\x3f\x46\xc6\x0f\x4c\x1e\x0e\x19\x97\x87\x95\x7c\x49\x09\x00\x30\x6f\xab\x20\x54\xa5\x69\xbb\x9b\x26\x71\x90\x30\x87\x01\xfc\xf7\xe9\x8e\x12\xe0\x98\xae\x85\xfb\xfb\xe6\xdb\xd9\x28\x59\x46\x96\x5e\x9a\x12\xe8\xbb\xa5\x75\x41\x42\x30\xc2\xac\x48\x97\xb2\x55\x52\xdf\xbf\x7f\x13\x8a\x9f\x56\x9b\xd2\xfa\x9e\x17\x60\x39\x50\x28\xf8\x12\xaa\x26\x30\xe6\x3b\xf4\x62\x4b\xfd\x61\xe9\xe3\xcf\x28\xc6\x06\x16\x60\x90\xaa\x8a\x43\x0b\x5d\x55\x69\x66\x50\x10\x01\xbb\x70\xb5\x31\xb6\xcb\x0d\xa3\x7f\x70\xea\x6e\x9b\x94\x9e\x0f\x5f\x77\xea\x99\xa9\xbe\x1f\xf2\xc4\x8a\xa0\x4d\xcb\x89\xdb\x34\xb1\x99\x2d\x11\x33\x6f\xf9\xd8\xf0\xdf\xce\x2a\x5f\xee\xac\x05\x43\xf5\x92\x55\xca\x4f\xb7\x5c\x13\x21\xd0\x6b\xe2\x76\x39\x71\x6c\x30\xe1\xed\x50\xfd\xa0\xf7\xe0\x6f\x4b\x95\x57\x05\x91\x50\x83\xa9\x48\x13\x0b\xbc\x4c\xf1\x3d\xd6\xfd\xad\xaf\xb6\x7b\x7e\x8e\x54\xc0\x82\x3b\x84\x2d\x4f\x10\x53\xc5\x63\x58\x3f\x54\xdc\x40\xb7\x55\xc9\x29\x8b\x8d\xbf\x6c\x52\x95\xc6\xfb\x8c\x76\x35\x5f\x5b\x02\x96\x28\x34\x04\x3c\x44\x32\x97\x13\xc5\xac\x8d\x42\x96\x18\xa9\x5c\xd4\x6d\x15\x45\xc9\x3c\x8f\xfa\x9f\xc2\x25\xc5\x0b\x7f\x0a\x6f\x8a\xff\x45\xf5\x6b\x66\x03\x3f\x62\x69\x2f\xbc\xf4\x51\xfa\x6e\xc4\x45\xa7\x14\x90\xfa\x9a\x02\x86\x67\xfe\x92\xc9\xd7\x28\xbf\x68\xe3\xae\xf2\xeb\xf1\x0a\x70\xe4\x85\xa8\xb2\x21\x3b\xd3\xf7\x4d\x14\x06\x34\x00\x00\x2c\x32\x97\x33\xdf\xd4\x10\xbe\x0b\x0b\x65\xcc\x46\x85\xff\xae\x2d\x54\x34\xc9\xb9\x36\xb1\x95\xa7\xc6\xef\xa1\x02\x29\xe4\x54\xe5\x63\xc3\x1f\x3f\xa9\x09\x9c\x6f\xaa\x7e\x19\x3f\x08\xcc\x28\x9f\x26\xc8\x13\x2f\x0c\x20\x58\x6c\x2e\xab\x8c\x97\x6c\x2e\xcb\xfd\x95\x0a\x91\xfa\x7e\xda\x0b\x63\x46\xdf\x4a\x58\xa3\x61\xac\xde\xe7\xa5\x91\x83\x64\x38\xf2\xe3\xd0\xe2\x92\x61\x4c\x38\xb7\x8f\xe8\xf1\x8e\x86\x58\x5c\xa8\x0d\xf2\x33\xed\x30\xcb\x0a\x23\x5a\x12\x4d\x14\x8f\x0d\x47\x5c\x6e\x49\xc4\xe0\x1c\x4f\x53\xe4\x83\xf5\xb7\xb7\xe3\x9a\xad\x36\x75\x20\x58\x8c\x46\x51\x28\xca\xcf\xd6\xa8\xdb\x94\xc6\x71\xd5\xb3\x97\x15\xdd\x34\xc9\x13\x9a\xf8\x46\x38\xb2\x45\x6d\x52\xfa\xce\xe6\x87\x2d\x9a\xc1\x21\x1b\x1a\x25\xcb\xfc\x1c\x9d\xf5\xe5\xdf\x21\x96\x3d\x8d\x53\x89\x6f\x6a\xd9\xbd\xe7\x17\xda\xa5\x71\x21\x42\x7b\xe7\xe8\xbd\xa1\x76\xd4\x1b\xca\xad\x5e\x8e\x93\x3c\x5f\xc3\x71\x0c\x67\xfc\x04\xd6\x01\xdf\x58\x64\x42\x6a\x96\x4c\x3a\xe5\x3a\xd8\xce\x61\x77\x60\xe4\xd1\xf9\x8d\x15\xfb\xa1\x3d\x7b\x72\x63\x62\x69\x14\xc0\x36\xb8\xe7\x39\x70\xef\xbd\x4a\x4e\x2b\xcc\x7d\x3e\x48\xb8\x1e\x33\x76\xae\xd1\x26\x42\x0c\x84\x40\xbf\x83\xbc\x00\x26\xf0\x7a\xb5\x04\xa0\xb2\x8d\x1b\xe3\xbf\xb1\x35\xcb\xb2\x20\x6b\x71\x27\x3d\xb9\x54\xdf\x5a\x56\x54\x76\x07\x4e\x24\xd5\x38\x2f\xb6\xe9\xc1\x58\xf3\x86\xa1\xfd\x09\x06\xf1\xac\xc2\x57\xdc\xc2\xce\x13\x0e\xfd\x47\x95\xc2\x68\xdc\xf3\xd5\x0a\xf9\xae\x5e\x21\xdf\xf5\xbe\xe0\x30\x0e\xb1\xcd\xe6\x03\x0a\x2a\x51\x32\xcb\xbd\x49\x87\xe1\x94\xd3\x76\xd4\xf2\x20\x41\x32\x1c\x26\xf1\x6e\x3c\xab\xf4\x35\x13\x25\x03\x42\x15\x64\x56\x1e\x51\xd9\xae\xf7\xc7\xae\xd8\x32\xa6\x20\x4a\xe2\x07\x7a\x42\x64\xac\x8e\x70\xce\xdb\xb2\x25\x97\x6f\x09\xf7\x81\x89\x8e\xe0\xee\xfd\x10\x01\xbf\xe6\x51\x86\x3b\xf2\x31\xe6\x0c\x8e\xfb\xa7\x0a\xb4\x33\x4a\xc2\x98\x70\xeb\x1a\x80\x44\x5f\x2f\x21\x50\x53\x9f\x47\x98\xb1\xdc\x1b\x23\x1e\x11\x4c\xa1\x00\x0e\x98\xe0\x06\xb6\x08\x7e\xfd\x88\xc3\x15\x14\x51\x9a\xc4\x06\xcd\xbf\x22\x16\x4f\x2f\xca\x37\x76\xb3\x76\xa3\xc2\x8c\xd2\x30\xce\x15\x61\x2d\x2a\xda\xd2\x9b\xee\x80\x06\xab\xc6\x5f\xde\xa1\x1a\x55\xd0\x5e\x6a\x65\xc9\xe7\x0f\x69\x7a\xef\x79\xf9\x23\xc0\x16\x6c\xe0\xa1\x64\xbd\x9c\x2e\x97\x1f\x98\x41\x92\x66\x70\x14\xa4\xaf\x51\xf5\x38\x6e\x69\xb8\x0f\x66\x5c\x48\xcd\x38\x6c\x2b\x32\x5f\x8e\x3f\xc6\xe6\x1a\x76\x13\x6c\xce\xf6\x89\xcb\x1b\x9c\xaf\x44\xad\xab\x83\xe4\x71\xc5\x20\xb6\x1b\x89\x21\xa0\x23\xf7\x02\x07\xc6\xdd\x5d\x98\x75\xab\x1c\x51\x5a\x12\x69\x05\x2e\xdd\x2b\xab\x29\x5b\x8e\xb3\x3d\xae\xac\x03\x07\x5a\x54\xfe\xab\x47\x08\xa0\x29\x2d\x2b\x2d\xcb\x06\xf7\x40\xf7\x3e\x80\x03\x95\x9b\xc1\x28\x09\x60\x15\x66\x4b\xc3\x85\xcc\xd7\x4d\xbc\x25\x8c\xc9\xdd\xb1\xd3\xa1\x7d\xb3\x16\x93\x7c\xb5\xdd\x4d\x8c\xb5\xcb\xcc\x10\x86\xc7\x15\xba\x30\x9d\x04\x18\x85\xbd\x16\xfd\x90\xe4\x8e\xe9\x8d\xf9\x66\xd2\xd4\x5c\x14\x25\x71\xdf\xa4\xd3\x2e\xa3\xfb\x6d\x5d\x69\x41\x79\x03\x19\x85\x77\xe1\xde\xc0\x90\x9e\xb4\xb5\x8e\x81\xf1\xd3\x9c\x21\x47\x2c\xb1\xcd\x06\x09\x2f\x7b\xd7\xab\x30\xdd\x3c\xae\x09\x36\xb2\x30\xcb\xc1\x83\x0d\xe3\x85\x6d\x82\xe1\x7e\x78\xa2\x68\x22\xee\x7b\x4f\x54\x2d\xe6\xe2\x5c\x7b\xdf\xbe\x2f\x96\x7f\x6d\xa5\xe9\xcb\x89\x66\x0d\xc5\xb1\x2b\xc4\x4e\x13\x70\x96\xe9\xdd\xc6\x8a\x6b\x73\x7a\xa2\xda\x65\x4e\x8d\x5d\xe5\xf9\x38\x51\x32\x21\xb1\xfe\x96\xa7\xf8\x6d\xb7\x13\x28\xda\x32\x8d\x95\x5b\x44\x48\x8e\x1d\x99\xdb\xd7\xf6\x60\xfd\xe1\x5f\x38\xa7\x86\xf8\x83\x19\x77\x99\x88\x98\x16\x07\x86\xe8\x3a\xe1\xd0\xec\xb3\x5b\xfa\xb4\x75\xcf\xc9\x9b\x9e\x1d\x93\x6f\x64\xdb\x0c\xcb\x39\x92\x34\x30\x86\x9b\xeb\x79\x58\xe4\x88\x77\xbf\xef\x3d\x61\x1b\xc8\xcb\x78\xc8\xc4\x79\xc8\xc5\x55\x61\x4d\x77\xe8\x8d\xf5\xcf\xc7\x50\xf8\x59\xa6\x7a\xba\xef\xea\x2e\xde\xbb\xea\x28\x19\x26\x2b\x22\x61\x24\xed\x8b\x8a\xcd\xf1\xa2\x62\x96\x58\x4e\x52\xe3\xcf\x94\xb3\x84\xb3\x92\x4e\xd4\xcd\x69\xb0\xe1\x48\xf3\xa7\xea\x9e\x84\x4e\x19\x0b\xc2\xd7\x52\xd5\xf3\x87\xda\xc1\x20\x09\x03\x71\x8a\xac\xdc\x84\xc5\x57\x9e\xab\xbd\xdb\xf3\x0b\x10\x34\xea\x26\x3d\x98\x5c\xc9\x44\xb4\x94\x46\x88\xac\xf1\x20\x19\x8d\x4c\x3a\xab\x6a\x06\xa7\xf5\x79\x0e\xe1\x22\x4c\xb2\x6e\x85\xf8\xdb\x1d\x45\x82\x7c\x93\x4e\x39\xf8\x27\xb7\x14\x2b\xcf\xc6\x96\x2d\x51\x0c\x4d\xfa\x30\xbd\x3a\x73\x6f\xd2\xd2\xd4\x80\x49\xc6\x33\x8f\x1d\xf7\xea\xe8\xac\xa7\x3a\xb7\xc1\x90\x86\x41\xdf\x43\xa9\x6d\xab\x2b\xe0\x52\x54\xb3\x93\xf2\x99\xc5\x4f\x55\x5e\xdf\xd1\x9a\xd3\xf6\xf2\xcb\xa0\x44\x4e\xfd\x35\x74\xb6\x48\xff\x4a\xcb\x52\xe2\xa3\xce\x87\x6f\x3e\xd6\x34\xd6\xb1\x9f\x17\xa9\x85\x1c\x4b\x43\x22\x3d\x8f\x64\xe7\x1b\x1c\xcc\xcc\x8c\x7c\x80\xf2\x2c\x95\xf3\x59\x25\xc7\x78\x76\xac\x8b\x5b\x69\x1e\x06\xe1\x88\xfe\xda\xb6\xcd\x60\x07\x39\x40\xae\xe0\x2e\x7a\xab\x26\xcb\x4d\x1a\x4f\x29\xb6\xbb\x63\x8a\x5c\x79\x5b\xc7\x41\x7f\x6e\xea\x75\x6b\xcc\x28\x9b\x6e\x55\xd4\xbb\x0f\x54\x9c\x70\x09\x64\x5d\x8b\xd5\xf1\x06\xc8\xf1\x81\x76\x1e\x0e\x6d\xb8\x81\x59\x60\x2e\x6d\x11\x6a\xa3\x27\xe3\xd8\xa3\xe1\x1b\xda\x79\x6a\x2c\xa3\x3c\x86\xf0\x33\x5d\xd4\xfa\xac\x09\x63\xfd\xe5\x76\x6a\xd0\xc0\xc7\x5d\xc6\x82\x0b\x9b\x72\x82\x58\x67\x1a\x7a\xdf\xda\xa6\xdf\x97\x87\xd5\x81\xaa\x48\xf6\x2b\x36\xf9\x3b\xde\x5e\xbb\x69\xe2\x3c\xf5\x83\xbc\x60\x8b\x83\x14\xe5\xff\x44\x8b\x93\xaf\x55\x12\x16\x2d\xc5\xb4\xee\xe1\x82\xff\x48\xab\x8b\xff\x68\xfc\x54\xd5\xfe\x3f\xbf\x40\xd5\x94\x59\x07\xff\xfd\x06\x19\x54\x51\xf8\xa0\x91\x80\x0f\xfb\x07\x9a\x28\xe3\x1a\x1b\x4b\xec\xf0\x6d\x1d\xa7\x33\x04\xa5\x5f\x66\x0b\x55\x29\xce\x41\x31\xa4\x13\x4a\xb8\x62\xaa\x4c\xd4\x36\x0d\xfb\x96\x22\x9b\x5b\xf5\x53\xc8\x21\x8b\x17\x5c\x7e\x1e\xce\x3a\x32\x93\x7c\xb8\xaa\x8f\xbc\x62\x72\x98\x58\x01\x5c\xb4\xac\x2e\xe3\x49\xd5\xc7\xba\x14\xa6\xc3\xdd\x74\x10\xc0\x48\x5e\xd3\x90\x01\x56\xb4\xc1\xd9\xf1\x0e\x99\x18\x76\x32\x3d\x45\x4f\x07\xfe\x65\xbc\xff\x76\x64\xdb\x60\xa0\xde\x1f\x3b\x74\xe0\x19\x9d\x6d\x26\xbc\x9d\xcb\x71\x94\xb3\xc2\xbf\xe1\x39\x37\xfa\x08\x0f\x2c\xdc\xb5\x6b\x56\x62\xc2\xcf\xf2\x24\x0e\xb3\x81\xf5\x61\xc4\x37\x2f\xbf\x93\xaf\x3b\x8f\xa9\xec\x48\x68\x22\x6e\xa9\x67\x35\x66\x38\x77\x2c\xc9\x82\x89\xc5\xe1\x7c\x75\x5c\x1e\xed\xda\x6b\x13\xdd\x16\x0d\x89\x7c\xfd\x75\x82\xd6\xd1\xd1\x0b\x67\xe2\x28\xb1\x18\x88\xdf\xeb\xd6\xf1\x2d\x4f\x93\x11\x89\x28\xab\x4b\x01\xb0\x6e\x9c\x54\x93\x5d\x4f\x6c\x19\x92\xa7\x80\xa1\x29\x66\xdf\x6b\x9e\x12\x48\xbb\x66\x1d\xe7\xa0\x48\x53\x96\xa9\xb4\x10\xa4\xf7\x35\x67\xc4\xfb\x4d\xdd\xba\x1a\x36\xcd\x84\xd7\x9e\x7b\xe3\x8d\x86\x06\x80\x03\xed\x6e\x52\x58\xee\x21\xac\x10\xc6\x6c\xf1\x8d\xb7\x35\xfb\xfb\xb5\x17\xdb\x4f\xb3\x45\xb1\x62\xbf\xa5\xa3\x2a\x32\x6a\x0d\x25\x62\x2e\xa4\xb5\x5c\x66\xea\x8c\x22\x3f\x3d\xe3\x4c\xae\x09\x06\x7e\x1c\xbe\x6e\x7a\x33\x6e\x65\x6f\xeb\x28\x2a\xcb\x8f\xb1\x94\x25\x4f\x54\x0e\x8e\x10\x7e\xaa\xe4\xf1\xbb\x8a\x2e\x30\x29\xf2\x28\x8c\x79\x61\xbd\xc4\x93\x7b\x5d\xeb\xc9\x5e\xb7\x45\xa3\xae\x89\x92\xd5\x87\xcb\x2f\x85\xc3\x81\x66\x01\xfa\x81\xef\xfe\xc3\x8e\x42\x93\xe8\x86\x96\xcb\x70\xf2\x14\xba\x5d\xb2\xf2\xbb\xa8\xa3\x4b\xba\xe0\xca\x97\x47\xba\xfc\x51\xea\xe6\xb3\x1d\x2f\xfb\xf7\xf3\xa6\xdb\x3b\x69\x20\x5f\xf0\xbb\x89\xe6\x77\x94\xe6\x2e\x7a\x5b\x21\x60\xdd\x0a\xe6\x9b\x3f\xd4\x76\x64\x43\x64\x97\x30\x2e\x88\xa1\x2b\x65\x18\x14\x26\xee\xd7\xbe\x62\x61\xa1\xfd\x4a\x91\xe5\xe1\xd2\x9a\xdd\x93\xb6\x97\xcc\x09\x03\x69\xca\xb1\x34\x59\x36\x69\xb6\xd3\x35\x65\xdf\x53\x61\xc1\x09\xdd\x2a\xf3\x43\xad\x6a\xb7\x49\x93\x08\x07\xee\x68\x69\x9d\x37\xcf\x6b\xed\xe7\x0d\x4f\x71\xaf\xdf\x18\xef\xb2\x16\xf7\xc0\xbe\x19\xe7\xbf\xf3\x41\x48\xbe\xc9\x8f\xf7\x4c\x1c\xe2\xf4\x6f\x75\xdc\xf3\x6c\xe8\x41\xdb\x70\x2c\xbb\x69\xd2\x63\x05\x22\xdb\xa3\x62\x5b\x7c\x6f\x68\xac\x09\xa0\xac\x88\xeb\x1f\x8c\x55\x4e\xf7\xdd\x5a\x03\xd5\xbe\x7d\x6d\x26\x42\xb5\xd4\x84\x8a\x22\xd4\xe2\x19\x6a\x6c\x1b\x87\xe7\x5e\x6a\x2f\x99\xd2\x0d\x92\x09\x17\xf9\xe5\xf2\x3d\xf8\xba\x86\x40\x3d\x3c\x47\x15\x99\xf2\xb1\x65\x7d\xaa\x86\x9e\x4b\x9e\xc2\x60\xfe\x46\x03\xbb\x7c\xdb\x0f\x5e\x2d\x42\x93\x05\x5c\x58\x15\x5b\xad\x76\xd4\x11\x4f\x4b\x36\x99\x6c\xb0\xa3\x5c\xc2\x72\xb2\x3b\x70\xe2\xc6\x56\x51\xeb\x79\x2b\x93\x4e\x4f\xc4\x37\x2a\x05\xe0\x9a\xc2\x5f\x2d\x92\xdc\x87\x02\x7e\x39\xe6\x08\x62\x8e\x2a\xfd\xc7\x1b\xaa\x04\x7a\x00\x33\xce\xac\x25\x6a\x1d\x9a\xd7\x58\xcb\xc9\xc9\x5d\x83\x20\x5b\xd2\xc9\x7b\x14\x91\x4a\x96\x19\x22\x70\xb5\xfe\xa5\xa7\x1c\xcf\xa6\x06\x3e\xb2\xe0\x45\x6a\x68\x53\x21\x4d\x84\x70\xd4\x72\x5f\x7d\xed\x45\x4b\x0a\xa2\x50\x1a\x69\xbf\xb0\x8d\x5d\xd2\x07\xa7\xf0\xe6\xb7\xc7\x0a\xa7\xd0\x52\x12\x27\xc5\xb0\x0b\x7e\x4a\x6e\x36\x56\xe5\xd0\x75\x25\xf3\x85\x8d\x8d\xef\x2a\x0f\x4a\x3e\x44\x22\xe3\xc7\x76\xfb\x22\xda\x00\x6c\x86\xaf\x3b\x92\xe7\xcc\x06\xe1\x52\x2e\x28\x5e\x4d\x64\x01\xe7\xf4\x87\x98\x49\x1c\x86\x57\x95\xcc\x5e\xb2\x62\xd2\xd7\x8d\x1f\x25\x85\x96\xf0\xdb\x50\x12\x7e\x1b\x4d\x12\x90\xc3\xb0\x17\x87\xfd\x41\x4e\xdd\x31\x00\x73\xec\xe8\x38\xe0\xd7\x05\xe5\xd7\x5c\x40\x00\x23\x36\xab\xc1\xeb\xcc\x8b\x34\x46\x38\x09\xe7\x4b\x73\x69\x5f\x52\x61\x93\x94\xaf\x19\x43\xc7\x3a\xf3\x6a\x40\xf7\xa0\xc7\x1b\x71\x2e\xaa\x72\x38\x5b\x2e\x8f\x15\x63\xff\x8f\xb5\xd7\xf8\xa9\x86\x87\x3e\xd5\x79\x42\x09\xb4\x24\xaf\xc4\xc9\x6a\xb6\x1c\x62\xf0\xb9\x5a\xa4\x04\xdb\xcf\x36\xf1\x02\xf8\x61\x0f\x03\x69\x9b\xaa\x9d\x3a\xd8\xba\xc2\x84\xfb\xf9\x20\x32\x39\x73\x34\x60\xe9\x1d\xa3\x45\xce\xd7\xf6\x44\x1b\x15\x51\x66\x88\xb2\x00\x93\xc7\x55\x35\x64\xc4\x40\x8a\x82\x45\x07\xe5\x02\x51\xe2\x50\xad\x25\x61\xb0\x16\x44\x00\xad\xf3\x21\xe2\xb5\xb6\x30\x9f\xc3\xcc\x7c\x50\x27\x0f\x9b\x6f\x2f\x85\x96\x41\x83\x11\x47\x9a\xd5\x6c\x62\xf3\x9a\x7e\xb7\x57\x04\xb9\xe9\x4d\xbb\xaa\xdd\x93\x1d\x47\xb3\xff\xfe\xd8\x25\x71\x4e\x29\xdb\xf6\xc4\x9e\x89\xf0\x8f\x0d\xfc\xb8\xcf\x0d\x30\xc0\x53\x73\x69\x8e\x6f\x2a\x09\xb0\x3c\x31\x2d\x24\x84\x2d\x02\xf0\x80\x95\x3f\xaa\x77\xc3\x1e\x9e\x9b\x6f\x0f\xfc\x61\x96\xa7\x05\x36\x93\x30\x19\xb7\xc8\x3f\xe5\xeb\x1a\xf1\xfb\x33\x60\x2c\x0a\x5f\xb7\x5b\x10\x50\x91\x9f\x28\x19\xc9\x9f\x58\xdf\x87\xaa\x13\x26\x0e\x84\xaa\x01\xeb\xf3\x12\xe6\x8b\x6f\x94\x11\x0e\x06\xa1\x59\xda\xed\xc4\xfb\x2e\x7b\x5a\xbc\xae\x92\xec\xdf\x4e\x32\x29\xc2\x50\x45\x79\xda\x4a\x5b\xbb\x50\xe7\xbb\x05\x70\x4e\x13\x6f\xef\x24\xf0\x31\xcc\xfb\x6f\x8d\x9d\x4c\xe6\x77\x15\x83\x17\xf7\x8c\x8a\xfc\xa5\xea\xf0\x3b\xdf\x94\x87\x49\x96\x96\xba\xc6\xcf\x55\x59\xe5\x98\x2a\xab\x1c\xdb\xaa\x06\x51\x1e\x8a\x2f\xbf\x4c\x1a\xb9\x70\x0a\x6e\x80\xf5\x80\x01\xb3\x58\x0f\x68\xe9\x3c\x01\xff\x0b\x29\xc6\xab\x04\xbb\x97\x05\x40\xa3\x6a\x4f\x2c\xcb\xde\x7e\x53\xa1\x4c\x6f\x78\x4a\xbf\xe9\x1a\x5a\xfb\x65\x31\x95\x2f\x8e\x48\xed\xa6\xae\xf9\xde\x27\x67\x41\x74\x35\x9b\x7a\xe3\x73\x3f\x32\x9c\x85\x67\x10\x90\xa7\x01\x41\x7a\x5d\xfa\xa3\x1c\x54\xf7\xd2\x29\xa5\xd4\x5d\x24\x5f\x8a\x82\x06\xcb\xbd\x49\xad\x9b\xc2\x4d\x69\xa9\xaa\xb4\x0e\x84\xf9\xc3\x34\x22\x02\x43\xd4\x5a\xbf\xf8\x7a\xa1\x3a\x77\xd0\xca\x3b\x30\xf7\xc2\x5a\xa7\xd0\x7f\x9f\x8d\x15\x93\xc6\x0e\xb0\xef\xc3\x96\x5c\x52\xc4\xeb\xdf\xa4\x17\xe4\xef\xd5\x78\x3a\x93\x06\x32\x14\x00\x00\xbe\x0d\xf7\x8a\x6f\x9a\xd8\x07\xb3\xa4\xc8\x07\xb4\x50\xf0\x3b\x1f\x78\x0a\xfd\x50\x87\xbf\xef\xdf\xdf\x0e\x92\x55\xde\x42\x38\x1b\xff\x0f\x6c\x21\xbe\xf1\x1e\x76\x35\xad\x96\x83\x87\x9d\xd6\x20\xf9\xd3\x4d\x3e\xd2\x28\x4d\xfa\xa4\xea\xcc\x5f\x8e\x3f\xe5\xf2\x1d\xdf\x28\x59\xfe\xa1\x9f\x86\xa6\xa5\x52\x69\x60\x35\x13\xf6\x3f\xc5\x64\x92\xfa\xc1\x32\xd2\xdb\xc8\x57\x3d\x50\x45\x9a\x8b\xba\x1e\x57\x47\xdf\xce\x1f\x6a\xf7\x4c\x16\xa6\xec\xb7\x59\xac\x84\xcb\x0b\xd6\x31\x1e\x0b\x0b\x04\x96\x9c\x52\x71\xca\x55\xa5\xfd\xff\x53\xfc\x22\x0e\xdf\xb3\x8a\x13\x28\x1b\x19\xd3\xdb\x45\x5b\xc2\x0a\x14\xa8\x0e\x81\x96\x25\x31\x60\x40\xb3\xb0\xaf\xd2\xc3\x48\x4e\xd6\x85\xf3\x3f\xc4\x4a\xc2\x1a\xfb\xaf\x9e\x42\xa6\x33\x09\x02\xa7\xdb\x3c\xb7\xbd\xa4\x57\x4e\x16\x7d\x85\x13\xba\x37\x6a\x29\x52\xea\x73\xb4\xf3\x05\xdf\xf7\x98\xca\x8c\x44\x61\xdc\x27\x3d\x69\x44\x1c\x57\xc7\x5a\x1d\x4a\x2f\x82\x75\x45\x75\xf0\x01\x5e\x09\x26\xe6\x0c\xcc\x1b\xec\xf7\x5d\x65\xbf\x83\xd4\x70\xc0\x65\xa5\x46\xae\x6a\x70\xe2\x6d\xe5\x6b\xec\xe8\x34\xe0\xca\x96\xa2\x44\x60\x58\xfc\x8e\xaa\xb6\x7e\x41\xb9\x93\x81\x1f\xf7\x12\x46\xa0\x09\xcc\x9a\x4c\x80\xe0\xaf\x5d\x2e\xb2\x5b\xac\x31\xa8\x05\xee\xcb\x45\x45\xfb\xdb\x44\x73\x70\xa0\x9d\xfa\xbd\x30\x99\x2e\xfd\x58\x8c\xca\x4f\xb5\xb9\xfb\x44\xeb\x21\xbf\xa7\x68\x44\xdf\xa9\x2d\xb4\x97\x5f\x6e\x0f\x92\x21\x3c\x07\x89\x01\x5a\x96\xb6\x9b\xc1\x82\xac\xc7\xab\x60\x62\x66\x69\xc9\x04\x79\xb8\x62\x76\xd2\x40\x08\xab\xb3\x32\xeb\xef\x93\x2d\x16\x69\xb7\x32\x62\xbc\x44\x0b\x0b\x2e\xdf\x37\x55\xa3\xc2\x11\x84\xe6\xb6\x7e\x57\x1e\x7d\x92\xc7\x7b\x44\x55\x3f\x71\x12\x61\x29\x73\x0d\x9e\x6f\xbc\xbd\x5b\xd1\xc0\xa5\x8f\xe2\xb8\xa2\x70\x82\xc2\x96\xaf\x7b\x2a\x89\x02\xa5\x15\xfe\x87\x26\x19\xcb\x6e\x91\xc6\x5c\x89\xc0\x6f\x9d\xf0\x5c\x27\xd0\x89\xcf\xa5\xd3\xeb\xfa\x29\x61\xba\xca\x67\x60\x02\x74\x35\xaa\x1b\x4d\xcc\xe1\xc3\xa4\x67\xd2\x38\xe4\x16\x45\x16\xf2\x56\xf2\xb6\xeb\xb5\x1f\x2b\x0f\x5c\x22\x22\x4d\x86\x61\xc6\x78\x4f\xf1\x2c\x68\xdb\x2a\xa4\xb9\x78\x19\x77\xab\xdc\xc5\xcb\x5f\x86\xcb\x23\x9c\x12\xce\x4f\x3c\xaf\xf7\x63\x92\x06\x06\x39\x03\x38\x5f\x6f\x8f\x5d\x39\xe6\xe1\x8e\xae\xa3\x53\x53\x8b\x24\x3c\x9c\x02\x3f\x98\xdf\x3e\x17\x43\xcd\x26\xb5\x49\x8d\x6c\x94\x86\x71\x10\x8e\x58\xf5\x4d\xc5\xbc\x55\xbe\x2a\x61\xca\xd9\xfa\x0d\x2f\x82\xd4\x79\x25\x8c\x03\x6e\x60\x15\xc4\xbd\x6e\x1c\x72\xa5\x87\x72\xcf\x46\x26\xcb\xc3\x60\x99\xdd\x54\x29\x02\x68\x68\x9b\x82\xc3\x0a\x4f\xf2\x23\xad\xaf\x8b\x3d\xde\xde\xd1\x79\xe9\x69\x9c\xbf\x02\xd2\x77\xf1\xca\x7d\x55\x73\xb9\xa4\x59\x7d\xb0\x73\x84\xe5\x80\x66\x12\x34\x52\x77\x61\xf5\x2d\xb5\xfd\xf3\x0b\x96\xdd\x5f\xc5\x0b\x97\x74\xca\x68\xa6\x53\xd1\xb7\x23\xc6\xdb\x47\x69\x37\xc0\x5a\xf3\x27\x05\xb7\x8e\x07\x67\x72\x29\xcf\xc5\xa0\xb7\x01\x1c\xe0\xcf\xc0\x8a\x21\x38\x00\x6d\x27\x3f\xc7\xa5\xb1\xeb\x2e\xb8\x4d\x9d\x60\xcc\x21\x82\x42\x26\x7f\x42\xe9\x67\xcc\x52\xea\x0e\xd3\x4f\x8a\x6b\xd2\xde\x0e\x3f\x17\x86\xb2\x55\x2b\x76\xcf\x1f\x6a\x67\xc3\xd0\x61\x9c\xd8\x6b\xa6\x07\x16\x0f\xba\x41\xaa\xf1\xbf\x4d\x6c\xcb\x85\xf5\x26\xca\x76\x61\x44\x70\x02\x3f\xdc\x71\x35\x82\x16\x58\xbc\xf0\x0f\xb7\xe1\xcf\x02\xf7\x80\x26\x46\xe1\xab\xa2\xe9\xc3\xae\x9c\x46\x51\x88\x7c\xb4\x7f\xf5\xb3\x1d\x0b\xf8\xf8\xb7\x7f\x17\x92\xf2\x56\x6d\xc3\xd6\x3e\x26\x5a\x03\x4b\x17\x17\xb3\xdc\xa4\x61\x64\x32\x55\xf8\xb9\xa4\xa4\x50\x2f\x79\x0e\x0f\x1e\x0c\xc2\xa8\x37\x48\x12\x4d\xc2\xcc\xa0\x0d\xbe\x69\x12\xbc\x7d\x3d\x4a\xf2\x35\xe6\xc6\x11\x91\x3e\xc7\x5a\xf5\x3f\x8f\x5d\x8a\xed\xb6\x0a\x43\xb3\xbc\xe8\x85\x09\xc3\xd4\x99\x7e\x54\x71\xdb\x9c\x6e\x4c\x0c\x50\x03\x74\xf9\x3b\xd6\x84\xd8\xef\xbe\x58\xed\x6f\xe8\x65\xbb\xd4\x37\xb3\x26\x84\x25\x37\x28\x37\x90\x92\xa5\x3d\xc8\xc2\x7f\x47\xb4\xfc\xf3\xf5\xb1\xaa\x46\xac\x2b\x77\x68\xa6\x53\x1e\xa5\x56\xe8\xcd\x55\x46\xa7\x3b\x0a\xc4\xf5\x63\x5a\x95\x22\xb4\xe0\x02\x7d\xb0\xc1\x9a\xde\x74\x39\x8f\x7c\xce\xf1\x0c\x7a\xaa\xbe\xfe\x89\xe7\xbc\xef\x9f\x36\xe4\x72\x0f\xb4\x83\x30\x0d\x8a\xc8\x97\x64\x24\xac\x2d\x13\x9c\xf2\x4d\x53\xe6\x3e\x2f\xbd\x01\x51\xc5\xa1\x33\x6d\xf3\x7c\x43\xd2\x72\xa1\x4d\xf4\x54\x7e\xda\x53\xf8\x59\x94\x55\xf9\xba\xda\xfe\xf9\x7a\xd2\x52\x64\xea\x37\xe1\xfe\xf1\x8d\x7a\xfb\x5e\x12\xe4\x29\xb1\x47\x58\xad\x24\x96\xbf\x12\xb6\x62\xd7\x5c\x96\x26\x99\xd9\x49\xf3\x06\x8b\xf1\x5d\xb2\x75\x02\x5c\x76\xba\x24\x77\xb4\x60\xca\x25\xb6\x4b\x7c\x37\xfe\xdc\xbe\x77\xda\x46\x30\x9c\x97\xbc\x27\xd4\x6e\x49\xfd\xdc\xf4\x43\xc3\x8a\x07\xd8\xe9\x7f\x3c\x76\x50\x47\x94\xf2\xe0\x39\xb2\x2d\x46\x92\xeb\xa4\x25\xd6\x0f\x92\xc8\xa7\x50\xc4\xa2\x69\x54\xf1\xaf\x42\x96\x15\x2e\x4f\x2b\x44\xdd\x5d\x0c\x1b\xac\xc6\xed\x6a\x11\xc6\x1d\x00\x3f\xd5\xb2\xc1\x51\x12\x2c\x53\xba\x13\x31\x3f\x7a\x34\xf9\x5a\x99\xa7\xa4\xcb\xaa\x38\x56\x78\xde\x7a\x18\xbb\x3a\xee\x7d\x18\x7c\x23\x0c\x6d\xbb\x1d\xe8\x2b\xcc\x88\x7a\x59\x7a\x4d\x15\xc2\xfd\xa2\x7d\xed\xbc\xe8\x1a\x15\x0a\x22\x69\x28\x84\x64\x5f\xac\x30\xf9\xa7\xe1\xd0\xc4\xb9\x1f\x45\x6b\x53\xe5\xc3\x0b\xa2\xd1\x4d\xf0\x36\xb2\xf6\x70\x1b\xfe\xa0\x4a\x59\xb5\x94\xd0\xf9\x2e\x0c\xa4\x4e\x82\x4c\xc3\x2b\x8e\x29\x7c\x4a\x14\xd2\xef\xcc\x1f\x62\x0a\x03\x06\x51\x4b\x0f\xa1\x3a\x94\x36\x6b\x3b\xad\x74\x0a\x7a\x09\xc1\x1f\x39\x26\x93\x79\xa4\x8d\x2f\x13\xec\xcc\x6d\x18\x67\x45\x6a\xd2\x6c\x9a\x82\x17\x2b\x71\xbb\x7f\x3f\xdb\x18\x28\x56\xf0\xf5\x58\x53\x57\x49\xea\x96\xa2\x0e\xd4\x14\x0f\x58\x3c\x52\xcb\x6a\xd3\xbc\x55\x4d\x30\xbc\xfe\x3a\x79\xaf\xc8\xb9\xe2\xcb\xe1\x48\x9f\x56\xf8\xeb\xef\xd0\x01\x2b\xf5\x0a\xd5\xc0\x96\x26\xab\x1c\x4c\xe0\x0f\x8f\x52\xdf\x25\x5f\xd7\x82\xe6\xfd\xfb\xc5\x67\xb6\xc7\xa9\x25\x8e\x76\x96\xbb\x16\x37\x50\x09\xa4\x40\xd9\x4a\xf4\x03\x5a\x8a\x34\x4c\x47\xb7\x0d\x52\x5e\x07\x4a\x9b\xf9\x8a\x71\x0c\xda\x48\xb7\xb7\x50\x45\xe4\x1b\xd5\xab\x91\x9a\x3c\x4c\x05\xc0\x29\xe0\x56\xa7\x8a\xfc\xdd\x0a\x97\x68\x14\x21\x52\x57\x0d\xbe\x0b\x36\x56\x2e\x1f\x12\xee\xd4\x5f\x37\x34\xcc\x1f\xa4\xaa\x69\xb9\x47\xa5\xf5\xb9\x65\x15\x56\xcf\xd6\x22\xfb\x67\xda\xfe\xd0\xa4\x16\x81\x81\x78\x6b\x37\xf6\x1b\xdf\x74\x2c\xee\xc8\xc4\x79\x6a\xf8\x6d\x85\xeb\x83\xfe\x52\xc8\x3e\x1a\x4a\xc5\x7e\x8f\xc4\x34\x54\xf3\xdd\x5d\x5a\x0d\x7c\xad\x98\x04\xfd\xd1\xc8\x4f\x4d\xcc\x47\xa9\xa6\x9d\x10\x94\xa3\xb6\x51\x7e\x6e\xbe\xe0\x5e\xec\x3b\x84\x92\xe3\xc0\x4c\x35\x12\xcf\x12\x69\x25\x47\x82\x48\xba\xc1\x55\x7b\x04\x39\x78\x04\xd7\xdb\x14\xd0\xfd\x2e\xd0\x90\x56\x8f\xd4\x1e\xeb\x0b\x7b\x29\x3f\x69\xe5\x61\x4a\x43\x0d\x77\x69\x13\x7c\x45\x28\x1d\xde\xd2\xa0\xeb\x9f\x50\xa0\x80\x71\xfc\x91\xa7\x7a\x89\xfe\x84\xa2\x0c\xa4\x8a\x4e\x20\xab\x66\x49\x45\xf7\xcd\x73\x54\x79\x85\x33\x71\x78\x45\x16\x7f\xe2\xca\x05\x56\x04\x4e\xfb\xfb\x04\xfb\x01\xc2\xea\x23\xab\x93\x91\x9a\x95\x67\xa7\xd4\xe8\xa9\x56\xf0\xa3\x1a\xc9\x7b\xab\x26\x83\x72\xe0\x85\x83\x65\xc4\x11\x10\x91\x77\x92\x6a\x6e\x9e\x2b\x8a\x9b\xe7\x8a\x82\xf6\x0f\x7d\x10\xa9\xab\x4c\xe6\x4d\x3a\x0b\xe1\x24\x9f\x18\x3b\xd1\x9c\x73\x16\xf4\x1e\x27\xf9\x80\xc0\x10\xce\xbb\xb9\x8d\x93\x11\x49\xff\x47\x69\x5a\x20\xbb\xfd\x54\x67\xcf\x96\x1e\xc6\xec\x31\x1a\xb6\x8a\x66\x2d\xec\xd7\x35\x45\xb9\x82\x13\x19\x3e\xe5\x15\x4c\x0d\xb2\xfb\x2d\xc2\xcf\x4a\x8d\xb6\x9c\x59\xfe\xb0\x6e\x19\x58\xc7\xc9\x87\x78\xf2\x1a\x46\x0d\xb6\x95\x09\x45\xf0\xd4\xdb\x80\x14\x54\xa8\x6c\x99\x9a\x9f\xd0\xd9\xc1\x25\x5e\x2d\x86\x32\xd6\x64\x10\x71\x96\x87\x79\x41\xcd\xed\x0a\x7d\x7c\x49\x0b\x81\x5e\x6a\x62\x5c\xce\xfd\xb4\x6f\x90\xe6\x64\x25\x62\xcf\x45\xd0\xf7\xff\x5f\x98\xf2\x47\x44\xc3\xe6\xb2\x44\x8f\x75\x1c\xa0\xf1\xbe\x6e\x52\xd9\x36\xd1\x74\x87\xdd\x04\xcd\x1b\x42\x50\xe4\xbc\x8f\x3a\x2d\xf8\x3f\x68\xf7\x4c\x6e\xd2\x21\x60\x2b\x8e\x2e\x0b\x67\x34\x5f\x37\x09\xb5\x74\x53\xff\xf5\x30\x42\xce\xa9\xa2\xb6\x26\x56\xc0\xd5\x55\x09\x65\x67\xb2\xd9\x72\xf9\x63\xc3\x02\xa9\xa1\xc9\x05\x60\x13\x8e\x01\xaf\x8a\x38\xe0\x9c\xca\xe2\x1c\xf3\x5c\x0f\xf5\x49\xda\xad\x92\x29\x6a\x00\xb9\x65\x61\xdc\xe7\x86\x1e\x4b\xc4\x5a\xae\x02\x39\xc1\x14\x60\x27\x0d\x63\xe2\x47\xa0\xd7\xc0\xc9\x87\xc8\x99\xaf\x6b\x78\xb8\x85\x85\x83\x9a\xaa\x0a\x69\x53\x1c\xff\x9f\x8e\x5d\xe2\xe0\x86\x57\xc1\x3c\x3e\xb9\x85\xd4\xd3\xef\x46\x9c\x46\xb1\xe2\x22\x8e\x7d\x0a\x13\x26\x8e\x88\xe4\x13\x47\x49\x14\xb1\x1f\xa1\x2a\x4e\x28\x81\xf3\xf5\x78\xb7\x4e\x37\xe7\xf0\x0d\x65\x87\x94\x5b\x07\x53\xf3\x5d\x65\xac\xbf\x8b\xe7\x14\xf1\x76\x37\x67\x69\x42\x44\x7b\x1a\x41\x7e\x5e\x95\xde\xcf\xab\x2e\xac\xa5\x34\xec\xf9\x6b\x3b\x14\x41\x1b\xd3\xb5\xc3\x13\x65\x75\x13\x29\xe5\xd2\x48\xf3\xbf\x60\xa3\x2b\x53\x29\xa8\x84\xed\x93\xbd\x2a\x51\x92\x9a\xa5\x22\x8a\xd6\xa6\x15\xcb\x1e\xe8\x9a\x60\x8b\x5b\x04\x4a\x05\x06\x6f\x5b\x45\x16\x7c\xbc\xb7\x86\xff\xfe\xea\xa3\x8a\xcf\x01\xec\x1c\x56\x1d\xfa\xf0\x1c\x7b\x53\x47\x08\xeb\x85\xf2\xf9\x05\x4f\x91\xb7\x1f\xf7\x14\x9a\x9d\xcd\x33\xb2\x89\x5c\xf1\x82\x3f\xc1\xc0\x5a\x1c\x2e\x7f\x4d\xcb\x15\x08\xb7\x09\x2d\x11\x5a\x86\xef\xec\x99\xd0\x20\xf1\x77\xd1\xfa\xc6\x09\xb2\xa3\xe3\x56\xee\x94\xae\xfd\x87\xf9\x2e\xfa\x5e\xd1\xc5\x72\x35\x50\x16\xdf\x81\xcd\xbb\xc3\x41\x8c\xb4\xff\x96\xef\x68\x95\xc1\x2d\xaf\xcc\xdf\xec\x28\xc8\x16\x1f\xa0\xb0\x2c\xbb\x27\x0e\x62\xfd\x00\xaf\x85\xa3\xf1\x9a\xa7\x0a\xb7\x77\x54\x1c\xd1\x4f\xfd\x6c\xd4\x72\xfe\x3a\x98\x29\xf9\xda\x7a\xa6\x03\xbf\x70\x89\x14\x4c\xfa\x37\x54\x9b\xf5\x37\xc6\x6e\x49\x65\x79\x9a\xc4\xfd\x5d\x4a\xb0\xe7\x2e\x21\x29\x2c\x15\xd2\x3e\xc9\x03\xfe\xa1\xa2\xdb\xe4\xe2\xa8\xa5\xf3\xb4\x80\xc7\x3b\x8a\xef\xfa\x9a\xe7\x40\x06\x97\x88\xe2\x42\xe4\xaf\xd5\xa1\x08\xca\x06\x49\xda\xb9\xfc\x64\x98\x67\x26\x5a\x7a\x44\x11\xd8\x9e\x1b\x6f\xd5\x6b\xb5\xbd\x92\x4e\x29\xfc\x93\xb1\xa2\x43\x43\x6f\xb6\x74\x36\xd0\x24\xc0\x7b\x3d\xaf\xf4\xc8\x38\xd7\xc9\xab\xc6\x53\xbd\xd5\xef\x29\x96\x89\xc7\xc8\x6d\x12\x82\x6d\xa7\xf3\xf7\x4a\xfa\x6c\x4b\x33\x89\xd1\x18\xc9\x9b\xd5\x89\xf6\xcb\xff\x2e\xf7\x7c\x20\xda\x45\xfc\x43\xcd\xfb\x46\xad\xe3\x7b\xdf\xbe\x76\x31\xa2\xb2\x89\x64\x8c\xca\x07\x61\x48\xed\xb8\x02\xdf\x77\x04\xab\x67\x95\xf6\xd3\x7d\x5a\x21\x48\xf1\xec\xed\xec\x55\xe6\xb1\x57\x04\x84\xf9\x71\x6e\xd0\x83\xb1\xab\x05\xbf\x87\x3d\x87\x82\xe5\x7b\x9e\xca\xe6\x3c\x50\x8d\xaf\x7e\xdf\xc4\xc1\xda\xee\x72\x9c\x61\x8e\x19\x33\x28\xbd\x49\xba\x75\x96\xd6\x98\xe4\x8b\xe9\xf4\xc1\x5f\x6d\x87\xe7\x29\x92\xb5\x0e\x10\xff\xd6\xd8\xf5\x5d\x7c\xc8\xae\x9f\x26\x11\x61\x26\x77\xa5\x7e\xfe\x2f\x3d\x97\x66\xbd\xa1\xd5\x6b\xff\xb5\xca\x57\x44\x26\xcb\x1e\x29\xcd\x8e\x95\xe5\x78\x5e\x62\xb1\xcf\x3c\x47\xbe\x0f\xd2\x1a\x54\x05\x00\x3e\x46\x1c\xbd\x0b\x6d\x6b\x92\x5e\x55\xe5\x11\x6e\xae\x84\x99\x7a\x13\xf3\x8a\xb6\xa3\xeb\x30\xc6\x5a\xe6\x11\x6e\xcf\x17\x3b\x8a\xe9\xe9\x8c\x4a\xbb\xa5\x61\xb7\x9b\xc4\xd9\x74\x39\x02\x5c\xfc\xf6\x2a\x1a\x2e\xba\x2a\xde\xb2\x8c\xb4\x7a\x0b\x8d\x4c\x32\x8a\xcc\x13\xe5\x9b\x62\x29\x9c\xa6\x8d\x8a\x4d\xc8\x14\x5d\xf0\x40\x37\xe9\xdb\x98\xb1\x4e\xe7\x3d\xaf\xd0\x0c\x48\x05\xba\xb4\x05\x70\x44\x21\x69\x87\xfc\x77\xab\xe3\x62\xb6\xf7\xc6\x4a\x33\xed\x3b\x98\x64\x98\xda\xdb\xb0\x68\x08\x8d\xaf\x23\xf0\x10\x59\x13\xd5\xa1\x36\x76\x31\x17\x37\x47\xe1\xc7\x5b\x93\x4a\x41\x5e\x0d\x1a\x33\x5c\xf1\x38\xd7\x30\xb3\xff\xa0\xdd\x2d\x32\x54\x09\xa4\xb9\xdf\x01\xc8\xae\x5a\x04\x5c\x6a\xb2\x51\x12\xf7\x4c\x0f\xd9\x97\x0a\x61\x32\x9e\x60\x76\xe2\xc2\x4f\xc6\x33\x62\xa3\x3c\x51\xe3\xe5\x9f\x3f\xd4\x36\x71\x56\x58\x45\x0e\x6b\xb3\x2c\xe7\x39\x96\x00\x1e\x82\x90\xe9\x2e\xe9\x08\x64\x11\x22\x11\x70\x2b\xf2\xf5\xc4\x9d\x4f\xfe\x72\xf6\x90\x92\xf9\x7f\x18\x1b\x48\xc8\xb7\xd4\x06\x04\x8c\x1b\xa1\xf1\xcd\xb1\x3a\x86\x1e\xc6\xba\x03\xe5\xcc\xcf\x50\x1c\x27\x52\xf4\x5a\x3b\x03\xe4\x66\xf4\xf8\x1f\x3f\x31\xd9\x1a\x5a\x97\x21\xbf\x8f\x90\x8a\xde\x64\xed\x67\x3a\x8a\xed\xf0\x89\x89\x6e\xd6\xa6\xc7\xc7\x11\xe6\xe7\x89\x64\x08\xd8\x1c\xe3\x91\xc5\x36\xcb\x29\xd6\x33\x0a\x02\x6b\xfb\x39\x2a\xb2\x39\x52\x20\xf7\x57\xad\x53\x8d\x57\xfa\x40\x53\xea\x7c\xa0\x0c\xd6\x28\xf2\xd7\x4c\x0a\x6d\x56\x3c\xd9\x4f\x95\x3b\xf2\x26\x2d\x0e\x7c\x6a\x6f\x87\xea\x23\x78\x19\x86\x1a\xdb\x58\xb7\x3c\xc0\x2c\x27\xa3\x1d\xe2\xcb\x64\x4a\x70\xe2\xfd\x69\x93\x96\x59\x52\x8c\x4a\x4f\xd6\x29\xb8\x6e\x28\x1a\xa8\xbb\x8a\x15\xe5\x6c\x2d\x56\x99\x3f\xd4\x1e\x86\x41\x9a\x74\xc3\x24\x4a\xfa\x6b\x4a\x20\xe6\xdb\x63\x25\x10\xf3\xed\xaa\xd6\x5a\x18\x9b\x69\xc5\xed\x78\xa5\xaa\x57\xe5\xce\x67\x8e\xde\x44\xf9\x51\xe9\x49\xa5\xc9\x52\x98\xfb\xc4\xaa\xb8\x38\xc7\x38\x58\xe8\xc8\xf3\xb5\x72\x65\xa1\x25\x4d\x6b\x73\x81\x73\x78\x67\x74\xd9\xf2\x87\xba\x5d\x0f\x31\x26\x6c\xf5\xa7\xf4\x28\x7c\xad\x39\x1b\xfe\x0a\x61\x0a\xd2\xf3\xc8\x3b\x02\x92\x71\xd7\x73\xcc\x61\x0f\x3c\x67\x37\x73\xe3\xa7\x42\xd5\x2b\xaa\x99\xae\x6f\x03\x90\x23\x9c\x69\xc7\xc6\x0e\x1f\xd3\x35\xfd\x7e\x18\xf7\xa7\xab\x6a\x4d\x8b\x73\x6c\xee\xee\xa8\x54\x32\x83\x3c\x98\x68\x5a\x79\x52\xe1\x70\xe4\x07\x39\xa5\x2f\x2d\xe4\xe7\x45\x4b\xa6\xf5\xa6\xca\x79\xde\xb0\x08\xe8\xa0\x48\x86\xe0\x46\xc5\xe9\x7e\x4c\x17\x87\x8e\x29\x81\x8d\xe5\x81\x1f\x33\x88\x15\x13\x76\x46\x11\xd2\x5f\xd4\x47\xf5\xbd\x06\x82\xd9\xe7\xda\xa9\xe9\x26\x45\x69\xdf\x5a\x0a\x22\xc2\xf4\x7b\x52\xcc\x6e\xa0\x17\xff\x72\x3b\x5b\x0e\xb9\x64\x04\x38\xf9\x1d\x55\x64\xbd\xac\xa8\xbc\x8e\xab\x58\xaf\x88\xa3\x30\xa3\x34\xec\xe2\x5c\x15\x4e\xc3\x37\xb5\x50\x72\x71\x0e\x05\x69\xc6\xc1\xc2\x98\x7f\xe4\xb9\xa8\xf4\xdf\x57\xf6\xb3\x02\xc7\x44\x49\xc6\x25\x33\xac\x37\xb0\x7f\xf0\xb5\x6d\x10\x1c\x25\xb9\x9f\x27\x0a\x3e\x70\x82\x9c\x5c\x61\x66\x51\x5e\xe6\x29\x45\x04\xfd\xc0\x26\xd6\xb3\xb0\x17\x71\xeb\x37\xfc\xc1\xff\x1d\x43\xce\x37\x35\x69\x9d\xfd\xfb\x17\x99\x55\x31\x5f\x2a\xa2\x96\xeb\x82\xba\xa0\xba\x98\xea\x0e\xe2\xbe\xf9\x76\xe2\x2f\x47\x7e\xdc\x6b\xe9\xd6\xbb\x0a\x34\x7a\xeb\x67\x9e\x5f\x68\x27\x23\xe3\xc0\xc6\x48\xb3\x60\xd1\xf3\xb5\x32\x09\x61\xbc\x62\xb2\x7c\xa6\xb4\x6c\x9b\xec\xc4\x63\x25\x1f\xd7\x0c\xa4\x0a\x0f\xf1\x01\x9d\xfa\x42\xb8\xbe\xd7\xb6\xab\x66\xd4\x3b\x46\x3b\xcd\x42\x7a\xde\xf2\x14\x51\xf2\xa9\x4a\xb7\x42\x25\x15\xbe\xea\xab\x16\xd7\xd3\x1a\x6a\x77\xda\x72\x11\x16\x50\x68\x3b\xc0\x6b\x01\xcd\x7b\x7c\xad\xd8\x36\x52\x03\xe1\xe5\x1d\xaa\xb6\x86\xc4\x9e\x25\x8e\xb5\x9f\xbb\x08\x4f\x01\xfb\x87\xe1\x8a\x56\x6a\xd5\xea\x0e\xb4\x3a\x2e\x20\xce\x02\x52\x8d\x61\x06\x0d\x81\x55\x97\x03\x22\x70\x6b\xf7\xb7\x56\x4c\x9c\x06\x04\x36\xe4\x7e\x55\x02\xc0\xa6\xfc\xd7\xed\x40\x06\x51\x69\xae\x4c\x1e\x66\xf9\x54\x95\x6e\xd1\xd2\x48\x02\x95\xe6\x6a\x02\x3f\x67\x55\x95\x92\x5c\x48\x78\x59\xb5\x95\x7e\x0e\x59\xbb\x6f\xab\xcd\x83\x98\x41\xc8\x19\x1a\x10\x31\xd9\x20\x64\xed\x3c\x6c\x9c\x37\x29\xe7\xca\xd7\x6a\xb4\x45\xda\x86\xd9\x36\x90\x2b\xfc\xf7\x4a\xde\x67\x43\x73\x0c\x72\xa1\x5c\x8a\x4c\xf4\x7a\x42\xd8\xaa\xf2\x57\x9b\x48\xd9\xc3\x7a\xa7\x66\x68\xe2\x5e\x52\x64\x50\x59\xdf\xbc\x41\x9c\x50\x37\x1a\xa5\xd2\xf2\x41\x18\xdb\x63\x5f\x8a\xcb\x15\xe0\x8a\x4e\x8f\x0f\x92\xa8\x8a\x04\x5d\x9c\xb3\x48\xd0\xad\xa9\xba\xfd\xfb\xdb\xc1\xc0\x8f\x22\x13\xf7\x59\x4e\x1a\x2e\x29\xba\xd8\xf8\xda\x22\xbd\xb3\x22\x1b\x84\xe4\x05\x09\x31\x10\xbd\xaa\x90\x92\xd1\xe7\x25\x19\xd7\x80\xb3\x24\x18\x22\xd5\x59\xe1\xd7\xbc\xa5\x7c\x9c\xb7\xc6\xbb\xdc\x19\x95\xb3\xd3\x84\x63\xf2\x8a\x86\x71\xd5\x79\x9a\xe7\x0f\xb5\x47\x7e\x5a\xbe\x03\xcc\x0f\xb2\x17\x9b\x8a\x60\x6e\x73\xbc\xa5\x67\xff\x9f\xfe\x77\xed\x7d\xfb\x66\x69\xce\xb8\x9a\xaa\xa2\x21\x54\x82\xe0\xbd\x7e\xa4\x55\x4b\x51\xfd\xc4\x24\x33\xaf\x0b\x42\xa3\x3f\xa7\x21\xe6\x4f\xd4\x2c\xe4\x33\xed\xd8\x04\x26\xcb\xc2\xdc\x25\xda\x18\xe5\x37\xae\x40\xfe\x1a\x12\xa2\xb9\xbf\x6c\xcd\x9d\x00\xc0\x1c\xb0\x77\x5d\xe5\x00\xfd\x20\x28\x32\xb0\x0a\x4f\xa9\x8a\x11\xf8\x6d\x25\x09\xa9\x96\x2c\xc1\xf7\x79\xc1\x04\x83\xb5\x69\xd7\xc0\xf5\xae\xa7\x85\xce\x54\xeb\xd8\x55\x4f\xb7\x12\x37\xcc\x6f\x17\x28\x53\x4b\x23\xfd\xbd\xb1\xca\x62\x73\x5a\x02\xae\xd4\x25\x75\xe0\x0f\x8c\x9f\xcf\xa8\xdc\xf7\x29\x4f\xc5\x3c\xe8\x9d\x40\x2d\x1a\x31\x02\x5f\x4f\x68\x32\x04\x89\x59\xa9\x60\x5b\x91\x0a\x38\x27\x8c\xd2\xe2\x9b\x46\xa2\xa8\x25\x3f\x44\x4a\xdc\x82\xb2\x6c\xb5\xe7\x27\x98\x68\x64\x43\xaf\x29\x70\xfc\x5a\x52\xe4\x83\x69\x25\xe5\x71\x51\xe5\xf8\x61\x66\xe1\x47\x68\xba\xe8\x7b\x35\x5c\x43\xe9\xec\x26\x71\x96\xa7\xd4\xde\x62\x43\x42\xf4\x38\x49\xaa\xc4\xf5\x7c\xe4\x03\x33\xcc\x4c\xb4\x62\xb2\x87\x1c\x4a\x7e\x03\x58\x12\x54\x3d\x4e\x22\x49\xc4\x37\x63\x97\xca\xbd\xe7\x29\x45\x2f\xc4\xef\x30\x94\xc7\x55\x5a\x61\xc7\x44\x75\x30\x7e\x07\xf3\xc7\xba\xe0\x0d\x69\xeb\x03\x65\x34\x99\xfb\x45\xea\xc7\x39\xeb\x31\x49\x82\x50\x73\xc9\x5e\xad\x92\x0d\xaa\x9a\xcf\xd5\xaa\x38\x22\xd7\x83\xb0\xf4\x2e\xe3\x8c\x15\x17\xd6\xf5\x33\x1c\x55\x47\xc3\xaa\x09\xfb\x83\x0c\xa9\x76\x39\xd2\x69\x30\xa4\x67\xa9\x81\x8d\x70\xa9\x48\xe3\x30\x2f\x52\x9c\x03\x36\x4f\x66\x75\x46\xcf\x57\xac\xa9\xdf\x43\xc3\x08\x02\x06\x64\x20\x60\xf0\xde\xa3\xcf\xe0\xb8\x7a\x87\xce\x11\x21\x06\x90\xfc\x7a\x6c\xfa\x49\x4e\x85\x34\xb0\x92\x60\xbc\x35\x31\xdf\xfd\x8a\xac\xb6\x2b\xb8\xac\xd0\x89\x87\x41\x14\x11\x36\xa5\xa3\x0b\xf3\x8c\x50\xec\xcf\xb0\xbe\x71\x84\x7e\xdf\x73\x19\xbb\xae\xdf\x9b\x55\x34\xbd\xe8\xe5\xe2\x24\x43\x47\xf5\xfd\x5d\xd2\x74\xbb\x1b\xd4\xca\x8c\xf3\xea\x94\xa2\x43\xfa\x0d\xa5\xe2\x78\xbd\x89\x4d\x6b\xe4\x07\xcb\xbe\x95\x7c\x42\x9c\xc7\xc8\x75\x58\x03\x22\xb7\x5e\xd8\xbc\xa4\x30\x20\x99\xbf\xf6\xa8\xa2\x61\x9b\xc2\xe2\xd3\x7c\x8f\x28\x22\x80\x8d\x8c\x13\x54\x54\x3e\x95\x7e\x12\x7a\x72\x80\x95\x7e\x86\xf8\x55\xe0\x8e\x4c\x77\x1c\x91\x35\x77\x43\x22\x1d\xb7\x39\xb6\xe1\xd2\xf6\x3d\x1d\xd5\x53\x38\xd6\x9c\x02\x1b\x55\x5e\x1b\x45\xdd\x7d\x43\x3d\xfd\x57\xfe\xf1\x57\x5a\x8e\x19\xf1\xbc\x6e\x1a\xa8\x2e\xa1\x24\x83\x43\x2d\x62\xad\xf4\x3c\x7c\x53\x33\x08\x8b\x73\xed\x51\x91\x06\x03\x27\xec\xcd\x3c\x2f\x9e\x83\x7c\x9f\x55\x3b\x20\x18\x84\x2b\x7e\xa6\x82\xe4\x13\x3a\x48\x3e\x51\x3b\x55\x48\xb8\xa3\x6f\x4f\x15\x6c\x4a\x34\x8d\xf1\x75\x83\xba\xfb\x73\xc4\x12\x41\x3f\x82\x54\xe4\x3d\x4f\x15\xff\xef\xd5\xfa\xef\x9e\x69\xf7\xcc\xc8\xc4\x16\xd6\x65\xf5\x1e\x5c\x36\xda\xa9\x2f\xf9\xa9\xdf\x0d\x7d\xb6\xd9\x78\xec\xf3\xfa\x1d\xce\x57\x51\xbf\x66\x65\xa6\x5c\x01\x22\xe0\x81\x1e\x2b\xa1\x4c\x57\xfc\x0f\xff\x12\xf3\x26\xe5\x32\x5d\x3b\xb3\x85\xf2\x67\xbf\xf2\xff\xff\x05\x9a\x43\x81\x5a\xbb\xd6\xb0\xf3\x8a\xbb\x6a\x64\x82\x65\x40\x13\x10\xaf\xfe\xc0\x73\x81\xec\x0f\x9a\xaa\xb3\xab\xe0\x79\x24\xb3\xd4\xa4\x83\x23\xbe\x7f\x37\xe9\x93\x3f\x04\x63\xf0\x99\xa7\xd4\xf8\x3f\x43\xe5\x8d\xdf\xfa\xe9\xe1\x4e\x57\x3b\x7d\xb4\xa3\xe9\x88\xc7\x2a\x14\xb9\x47\xe6\xc4\x6e\x20\x5b\xaf\x7f\x1b\x02\x09\x2d\x24\x74\xe5\xc1\x69\xf3\x48\x11\x57\x66\x63\xb8\x96\x86\x7e\x8f\x4e\x71\x1b\xcf\xdb\xe2\x00\x30\x00\xa2\x51\xea\xb6\x42\x94\xbf\xde\x52\x4e\xda\x86\xa7\xfd\xb7\x8d\xca\x66\x78\x7a\xc5\x80\xa8\x53\x08\x2e\xe8\x91\x28\x0d\xfe\xd0\x97\x68\x47\x2a\x78\xc9\x41\xc7\xf0\x62\xeb\x02\x77\xe8\xbd\x84\xc1\xcc\x99\xbb\x38\x59\x7d\x5c\x15\x9b\x6f\x7b\x4a\xb7\xe8\x24\x65\x77\x25\x38\x2a\x03\x62\x4d\x88\x81\xd2\x30\x88\xc6\xe1\x1d\x6d\xe7\x8c\x1e\x52\x88\x70\x7c\x88\x29\xe4\x99\x3d\x1d\x97\xba\xba\x39\x76\x58\xf0\x6f\xe9\x9c\xe3\x45\xcd\x52\xbc\x7d\xe2\x32\x34\xdf\x41\x3e\xcd\x16\x10\x1c\x55\xce\xff\x0a\x53\x09\x3a\x92\x77\x3d\xd5\x16\x7d\x5e\xe5\xca\xc3\xdc\x8f\x42\xc6\xeb\x58\x6e\x53\xa7\x5f\x51\x0e\x87\xf5\x14\x56\x93\xbd\x2a\x93\x30\xdd\xa1\xf6\x43\xf1\x5e\xcb\x47\x12\x6d\x29\xfa\x61\xd1\x51\xc4\x76\xe2\x3f\xf3\xb4\x40\x2d\x84\x5b\xb0\xed\x18\xab\xa1\x98\xa8\x5f\x62\xcb\xfb\x11\xf2\xff\x0c\x75\x51\x14\x80\xdf\xd7\x5d\x3a\x97\x15\xfd\xf1\xc3\x1d\x57\xe2\x3e\xa1\x36\xf0\xac\xee\xb1\xbf\x8e\x88\x96\x3b\x42\x75\xed\x6a\x5b\xa7\x81\x66\x34\x1f\x98\x74\x08\xc0\x02\xec\xf6\x6f\x6a\x16\x9b\xdf\xd4\x78\xab\xb4\x48\xd7\xb0\x76\x6d\x15\xf8\x6b\x2f\xda\x26\x97\x7a\x61\xeb\x60\x3b\xf7\x89\xcd\xc2\x39\xc6\x47\x61\x5c\xf8\xc6\xa5\x52\x48\x69\x9a\x50\xb5\x52\x79\x1f\xbb\x26\xb3\x5d\xba\x7c\xf4\x80\x26\x04\x86\xf1\x42\xcd\x9a\x2e\x94\x06\x25\xcb\x57\x09\xfa\xba\x28\x28\x55\x94\xf4\x25\x85\xe7\x12\x1f\x91\xc9\x32\x96\x5c\x11\xf1\x88\xf2\x60\x94\x78\xdc\x25\x3f\x2e\x69\x10\x4f\x42\xa1\x03\x59\x78\x61\xae\x71\x38\xe0\x7a\x6c\x72\xe8\x85\x76\x11\x9b\x2c\x48\xc8\x7c\x61\xc7\x5e\xd1\x80\xb0\x2b\x9e\x56\x8c\x28\x7a\x6b\x02\x7f\xc3\x21\x83\x0c\x30\x5f\xd7\x90\x6c\x87\xe7\x16\xda\x3d\x7c\x35\xbc\x12\xee\xe1\xe3\x1b\x95\x80\x8b\x4d\xbe\x9a\xa4\xcb\xc0\x3d\x48\x12\x88\x16\x34\x36\xfe\x1f\x29\x2a\xa5\x73\xe3\xbf\x5b\xb7\xd4\x61\x9c\x9b\x34\x48\xe2\x3c\x8c\x09\xfe\xd9\xd2\x69\xf7\x4a\xd7\x84\x35\x90\xd4\xea\x32\xe5\xda\xc7\xa7\xa9\x74\x00\x67\x7f\xd7\x44\x7b\x5c\xd6\x11\x7c\xa5\xe8\xf5\x87\xfc\xfd\x87\xe7\x1c\x4f\xb2\x65\xb3\x39\x61\xff\xd4\xa4\x61\x3e\x20\x66\xe7\x29\xd7\x7f\xf3\x23\x4d\x85\xb9\xa9\xda\x7e\xb6\x77\xdc\x29\x65\x56\x4c\xbc\x17\x3b\x16\x16\xed\x8f\x3d\x55\x27\x38\x32\x56\x4e\xf2\x2d\xcf\xd5\x56\xbf\x4f\x56\xcc\xa2\xd2\x5d\x20\xf6\x36\x06\x52\xd5\x8b\x9f\xab\xe4\x9d\x60\x04\xef\x2b\x99\x92\x63\xe4\x62\x5a\xba\x70\x55\x60\xac\x76\x04\xbb\xdd\x76\x53\x83\x56\x6f\x55\x7b\x85\x69\xca\x2d\x7c\x7f\x51\x98\x77\xce\x29\x6c\x74\x6a\xfa\x45\x44\x40\xb5\x69\x57\x13\x3e\x8a\x4f\xc2\x87\xfd\x14\xaf\x0d\xff\x00\x09\x26\x61\x30\x73\xa0\xd3\x6e\x12\xf5\x4c\xda\x72\x87\x0f\x28\xc3\xf9\xda\x12\xe6\x08\xfe\x5c\x08\xa8\x90\x7f\x9a\xed\xb8\xfe\x0b\x8e\x35\x45\x4f\xbc\xa9\xf3\x63\x60\xac\xb8\x00\x77\xd5\x60\x96\xa4\xc5\xc6\x3d\xd5\xaa\x31\xcb\x11\x10\x78\x38\x71\x51\xa3\xe2\xeb\x89\x53\x21\xc8\x58\x43\xcf\x6a\x80\x3a\x3d\x50\xeb\x69\xf4\x4c\x48\xfd\x76\xa8\x31\xdf\x57\x2c\x76\x17\x35\x65\xc9\x37\x61\xcb\x19\x72\xa2\x68\xe7\xa2\x62\x18\x23\xc2\x43\x2d\x90\x13\x20\x08\xe3\xde\xc7\x19\x82\x7f\x81\xdf\x01\xa8\xc7\xf6\x4e\xdd\x96\x1d\x2c\x67\x2d\x4d\x8a\x11\x6d\x05\x18\xc3\x23\xf8\x36\xbe\xb1\x14\xe0\xe1\x70\x94\x64\x5b\xf2\xbd\x47\x3d\xb7\xd5\x8f\xd6\x4c\x25\x65\xf2\xbb\xe1\x72\x18\x87\xca\xe5\x7e\xc7\x73\xe9\xfb\x77\x9a\xe8\x8f\x03\x13\x21\x67\xc6\xa2\xdc\x0a\x06\x53\xaf\x16\x2c\xce\xb5\x7b\xfe\x90\x28\x7b\xed\x8b\x9e\x1c\x3b\x7c\xcb\x49\xd5\x8e\x9c\xe5\x6b\x11\xa5\x8e\x17\x0f\x54\x04\x52\xb1\x74\x2e\x79\xae\xcb\xf0\xdf\x54\x32\xc7\x4b\x45\xf4\x58\xf9\x8d\x32\x2b\x4e\x92\xf8\x21\xe2\x7e\x94\x94\x54\xcb\x72\x04\x82\x4f\x15\x7f\x0f\x6d\xfc\xcd\x4d\x2d\x6c\x80\x03\x14\x21\xe3\xee\x8e\x62\xb4\x9e\x99\xa8\x28\x83\x69\xc4\x6d\x67\xe9\xfe\xfd\x07\x37\xef\xe9\xdd\xfb\x30\x61\x27\x81\xfb\xb8\xcb\xce\x37\xa6\x6d\xa2\x92\xef\x4b\x26\x2a\x4f\x13\x45\xa2\x86\x21\x95\x15\xb2\x5b\xc9\x58\x87\xbd\x27\x69\xf2\x61\x67\xc1\x4e\x0f\x98\xd4\xf6\x89\x4a\x65\x5c\x70\x48\xb8\x7f\xf1\xb7\x27\xba\xf8\xae\xd4\x1c\x77\x80\x00\x9f\x89\x55\x3d\xb5\x96\x41\x6e\x8a\xd7\x9f\x46\xaf\x16\xc6\xea\x9a\x66\x77\x6c\x75\x5c\x38\x0e\xd9\x39\x34\xc6\xfe\x44\x4b\x2f\xb3\xfb\x8d\xe8\xf0\xa1\x0e\x25\xa2\x60\x2a\xbe\x85\x41\x46\xca\x02\x4c\x9e\x00\x0b\x9d\x61\x4f\x0a\x89\xf7\x47\xe0\x8b\x09\xda\xdf\xb9\x77\x4b\x54\xb9\x4a\xa7\x74\x61\x1a\xef\x2d\xdc\x62\xf4\xcb\xf0\x9b\xee\xaa\x65\x36\x34\x69\x1a\x46\x51\x4b\x35\x0e\x70\x82\x5a\xe8\x86\xea\x20\xf6\x83\xed\x30\x1e\x18\xa0\xae\x1d\xb2\x0c\x19\x23\x59\xc8\x5b\xe1\xc1\xf3\x87\xda\xa9\x01\xb3\x70\x90\xdb\xaa\x3f\xc6\xe8\xa4\xe2\x63\x47\xf5\x51\x20\x97\x4f\x29\x93\xb6\x66\xd2\x81\x6f\x8a\xd2\x43\x51\xa4\xfc\x9f\xd2\x02\x97\x50\xa4\x5c\x01\x58\xec\x37\x6b\xe9\xba\xd2\x35\x58\x22\x29\x4c\xab\x7c\x88\xa5\x25\x91\xbb\x84\x76\x3d\x7f\x15\xca\xc8\x88\xb9\xa6\x3a\x4a\x0f\xf7\xf8\x58\x33\x29\x3b\x67\xfa\x5c\xa5\x1b\x2c\x19\x8d\x98\x2c\x04\x13\x3a\x43\x10\x03\x78\x72\x7f\xa0\x89\x0a\x4f\xe8\xb3\x71\xb3\x86\x84\x17\xec\xad\xff\xe5\xa9\xed\x5f\x96\x66\x48\xa5\xe5\xc3\x24\x22\x18\xad\x0d\x45\x2b\x26\xad\x9f\x3d\x2a\xb5\x5a\x3e\x15\x4b\xd6\xf6\x19\x8d\x14\x92\x56\xd7\x14\x63\x4e\x36\x32\x01\x8e\x45\xee\xc4\x92\x83\x46\x1d\x3a\xb6\xa7\xfc\xbf\x85\x97\xa9\xce\xe9\xd6\x1e\x26\x71\x98\x27\xa9\x8a\x5e\xd7\x15\x72\x68\xbd\x66\x64\x9f\x69\x67\xab\xc2\x44\x2d\x71\x8d\x82\xdf\x70\x9f\x29\xcc\xda\xed\xf1\x2e\xd7\xbc\xb2\xf4\x84\xda\xac\xff\x03\x8a\xe4\x02\xe0\xd0\xdd\x0d\xe5\x10\x55\xb8\x33\xb0\x4b\xa6\x27\x4e\x16\x93\x1b\x39\x31\x4f\x7f\xac\xca\xbb\x77\xb1\x57\x90\xbe\x9b\x86\x3d\xc4\x74\xfc\x00\x8e\x27\xe2\x8e\x2b\x28\x73\x63\xec\x21\x0b\x6b\xd5\x26\xca\x7d\x8f\xb5\x7c\x87\x66\x45\x84\x69\x69\xd5\x21\xcf\x76\x9e\x12\xb0\x68\x0c\xda\xd6\xd1\x4c\x1b\xd7\xc8\xbd\x11\x87\xe5\x71\x0d\x49\x18\x8e\xf2\x68\x6d\x46\xd1\xc2\xfd\x2e\x7d\x8b\xe5\x1f\x2f\x9f\x1b\x53\xfa\x27\x84\x13\x50\xa2\xbd\x0b\xd6\xf8\xd8\x76\xa8\x24\x62\xc1\x3d\x5d\x5a\xe7\xeb\x5a\x7e\x57\xd6\xed\x30\xec\x19\x3f\xcb\xa7\x55\xd2\xe1\x2d\x80\x44\xb4\x7c\x07\x02\x48\xc8\x4d\xc9\xd3\xa9\x12\x83\xe9\xed\x69\x59\x91\x8f\xbf\x3f\x29\x5d\x11\x2b\x12\x58\x8e\x30\x19\xf9\x7f\xf7\x38\x81\x0f\x71\xb8\xcf\x4c\x74\xfa\x93\x65\x88\x31\x5f\x1f\xe1\xf5\x28\xb0\xfc\x5b\xcf\xc2\x9a\x56\x22\x6f\x0c\x38\x13\x98\xc0\x33\x7f\x88\xc2\x70\x54\xa7\x30\x77\xb4\xa9\x9f\xdd\x33\x71\x45\x98\x5f\xfc\x05\x9c\x1f\x96\x46\xcd\x51\x32\x3d\x45\x9b\x1f\xab\xf0\xb1\x8e\xe2\x66\xe7\xb4\xe7\x4e\x57\xe7\xbd\x48\x08\x50\x2c\x86\x53\x78\x3b\xc4\x9d\x7f\x8a\xe8\x1f\x5f\x08\x5f\x14\x2e\xed\x76\x7a\x6d\xfe\xff\xf0\xa5\xb0\xc8\x6e\x7b\x0e\xaf\xf4\x41\xcd\x16\xee\xdb\xd7\xf6\x03\x5b\x53\x12\x12\x5f\x7a\x1d\xbe\xd9\x4a\x56\x5d\x5a\xfd\x67\x1e\xa7\xa7\x10\x82\x2f\xfa\x2c\xeb\xb8\xd3\xca\xb5\x9a\x40\x2f\x56\x52\x4c\x4c\x7d\xf5\xea\x1e\x72\x00\xc4\xb4\x2b\x75\xaa\x59\x00\xb4\xad\xba\x43\x39\x5d\x18\xfa\x72\xb8\x0f\x6c\xc2\xd9\xc1\x04\xa0\xeb\x06\xb1\xeb\x55\xcd\x17\xc3\x50\x38\x78\xd3\x6f\xab\x14\xf0\xe9\x71\x45\xf8\xd5\xe9\x8a\x5f\xd9\x5a\xdc\x7b\xf1\x40\xfb\x6b\x2f\xb6\xaa\x07\xf1\xe2\x9c\x5c\x37\x60\xfb\x0f\xb4\x57\x42\xb3\x9a\xa1\xbe\x0c\xef\xfa\xec\x58\x9d\x16\xef\x7b\x15\x6e\x52\x7a\x0e\xfe\x33\xef\x29\xd5\x9f\x9e\x8c\x88\x0d\x71\xc5\x64\xdb\xdc\x16\xee\xfb\xf9\x80\x24\xd6\xcb\x17\x46\x86\xe0\x24\x0d\x04\x5f\x37\xa1\x9f\x4c\x9c\x0f\x8a\x2c\xf4\xb3\x9c\xa5\x52\x9a\x02\x7e\xe7\x42\xa5\x7e\x6e\x48\xbb\x17\xe9\xd2\x1b\x63\xc5\xed\x34\xf1\x5a\x5f\x9f\xb7\x10\x67\x85\xbf\xbd\x82\xb5\xc8\xd4\x57\x98\x02\xa4\xc2\x91\x5f\xc3\x81\x78\x8f\x7c\x20\xe1\xc7\x50\x60\x03\x4f\x91\xf7\x63\x09\xc1\xbb\xbe\x0b\x7b\x89\xf4\xcf\x3b\xba\xd7\xe8\x94\x4e\x19\xdd\x54\x9a\x9c\x7e\x3f\x35\xa6\xb7\xd3\x35\x86\x9d\xc6\x72\x93\xe6\x7b\x57\xdd\xdf\xc4\x9b\xd9\x7c\x52\xf9\xcc\xb0\xd9\x8c\xc5\x15\x5a\x35\x18\x0e\x9c\xb4\x9f\xe0\x77\x05\xa9\xbc\x47\x95\x8e\x88\x78\x79\xa7\x6a\xbd\x7e\x8b\x16\x1c\x0c\xce\x35\xdd\x6c\xcd\x39\x7b\x24\x20\x67\xf1\x63\x08\x0f\x6e\x29\xed\x2c\xa1\x4f\x12\x38\x81\x0b\x40\xd6\x2d\x82\xcf\xcf\x06\xfe\x90\x01\x43\xba\xd0\x21\x4c\x94\x5b\xcf\xcd\x03\x8b\x07\xda\xdd\x62\x8d\xce\x59\x25\x61\xe5\x18\x64\x1a\x78\x39\xc3\xf8\x95\x22\x0e\xa4\xa7\x48\xfa\x79\xd0\x11\xc9\xd7\x4d\x2d\x2e\xbd\xb4\x5c\xbb\x5b\xba\xe6\x6d\xcb\x30\x63\x1c\x50\x06\x3b\xd9\x44\x2c\x97\x45\x61\x0f\x21\xa2\x15\xa0\xb2\x28\x24\x34\x40\x09\x8b\x2f\xad\x43\x58\x82\x99\x8e\xc4\xb1\xaf\x18\x3f\x46\xe7\x23\x9e\xf1\xe6\x58\xe7\x60\xd7\xf5\x0c\xb4\x3a\x7b\x14\x53\xb9\x9f\x0b\x6e\x45\xba\xda\x1c\x96\xf4\x96\x02\x50\xe5\xc9\xf2\x5a\x41\xb5\x03\xd0\x42\x6c\x07\x1e\x1e\xae\x3b\x23\xc4\xf8\x66\xec\x1c\xc7\x6b\xe3\xd2\x10\x8a\x58\xeb\x13\xb5\x96\xc5\x68\x6d\xa7\xca\x4d\xa1\xbf\x08\x49\xf7\x1d\x1d\xd5\x73\xf6\x53\x6c\x31\xbe\x21\xfb\xa5\x65\x5e\xe1\x05\x4d\xe1\x2c\x62\xfe\x7d\x4f\xc5\x65\x9f\x68\x60\xa7\x1f\xf9\x01\xba\x2a\x11\x46\x9e\x57\x0d\xbc\xe7\x1b\xaa\x37\x07\x88\x43\x91\x62\x50\xe1\xee\x73\x6c\xd3\xff\x59\xd3\x33\x8f\x9d\x3d\x2b\xe2\xac\x08\x02\x93\x65\x4b\x45\x34\xa3\x04\x0a\xee\x29\x82\x75\x16\xc9\xe0\x7f\xa0\x17\xb1\xa4\x82\xe5\xb3\x8b\xd8\x81\x4c\x71\x64\xfc\x15\xb3\xc3\xb9\x8c\x50\xf6\x63\xe2\x53\xaa\xeb\x09\xf4\x9f\x86\x14\x53\x38\x45\x31\x99\x6a\x07\x13\x64\xf8\xef\xd6\x22\xf3\x7d\xfb\xda\xb9\x9f\xe6\x7e\xac\x7a\xbe\xaf\xa8\x9e\xef\x2b\xaa\xc2\x9a\x0d\x12\x93\xcd\xb8\x6c\x1f\xf2\x55\x42\x39\x48\x36\x03\xbf\xff\x23\xbc\x0b\x2f\x43\x7a\x62\xf8\x55\x1f\xdb\x94\x60\xb4\x96\x86\x01\xef\x1c\x44\x6a\x37\x5c\xc9\xe0\x37\x3f\xae\xf4\xb0\x55\x8b\xcb\xab\xc0\xc3\x88\xa9\x72\x55\xdd\x4f\x9a\x84\xd3\x86\x7e\x18\x29\xf2\x03\x2c\x1d\xbe\xb6\x60\xe2\x55\x7f\x6d\x55\x48\x12\x30\xb4\x57\xd5\x30\x5f\xad\x0d\xda\xe1\xb9\x97\xda\xc3\x22\x5d\x5e\x9b\x72\x4e\xd5\x47\x27\x95\xf8\xff\x06\x1d\x02\x9c\x13\x74\xec\xd1\x83\x34\xcc\xf2\xa1\x2f\xc9\x30\xa1\xc4\x71\x80\x03\xc6\x67\xc3\x9b\xbb\xa9\xc9\x90\xfc\xec\x6f\x20\x73\x20\x84\xe9\x8a\xd4\xe8\xbf\xe2\x04\x81\x5d\x87\x7e\x06\x1e\xe3\x61\xf4\x36\x31\xe3\xc5\xc4\xb2\x26\xef\x38\xea\xa9\x08\xe1\x94\x3e\xe4\x3e\x25\x97\x18\xf9\x83\x4f\xc8\xc7\x16\x45\x40\x9a\x2a\xdc\x4c\x4d\x28\xa6\x90\x33\x96\x1c\x5b\x6e\xc2\x45\xbc\x80\x38\x71\x67\xc7\xd9\xc2\x63\xc8\x88\xc0\x23\x18\xe3\x24\x45\x78\x76\x42\x91\x48\xce\x76\x4a\xcb\xc1\xff\x9f\xaa\x0a\xa2\x4a\xa2\x15\x42\x68\xa1\xe0\xf7\x98\xd6\x1b\x19\x61\x48\x4b\x63\xa5\x6d\x9b\xb4\x7e\xed\x9f\xb1\x07\xb3\xa1\x8a\x17\x79\x98\x1a\x00\x6e\xec\x97\xd9\x5e\x2c\xb4\x85\x61\x80\xcf\x6e\xf5\x91\x9e\x69\xef\xdf\xbf\xb8\x9b\xde\x0e\x8b\xfc\x0a\xd8\x29\x35\x39\x8f\x90\x38\x29\x56\xc9\xb3\xf4\x4c\xb6\x65\xc0\x61\x49\x37\xbc\xa9\x17\x2d\xae\x70\x5d\x47\x25\x77\x35\x7b\x27\xc2\x24\xd8\xa0\x4d\xa5\xdb\x3a\x4b\xb0\x7c\xe4\x12\x6f\x8e\x9d\x77\xb4\xab\x26\xbb\xf8\xfc\x42\xbb\x9b\x1a\x7f\x99\x5e\x5a\x0e\x29\x9a\x3f\xdb\x64\x65\x19\x26\x4f\xd5\x4c\xe1\x81\x17\x0e\xb6\xfb\x49\xd2\x9b\x52\xad\x0f\x3f\x54\xe9\xa3\xbf\xa6\x67\x12\x79\x80\x86\xec\xad\xbf\x6a\xb2\x64\x08\xdb\x2b\x9a\xd2\x2d\xa7\x2f\xdd\xd4\xd3\x9a\x16\xb1\x28\xc1\xb1\x80\x14\xb6\x85\xa8\x49\x6d\x3d\xbf\x17\xe7\x48\xe3\x82\x11\x41\x53\x4e\x56\xf1\x63\x55\x2e\xf8\xb8\x86\x32\x9b\x3f\xd4\x8e\x93\x78\x25\x4c\x0b\x30\x41\xda\xe6\x2c\xd4\xdc\xf9\x5a\xc5\x96\xfd\xd4\x8f\xad\x36\x94\x96\xd2\xb5\x05\xb3\x72\x12\xa5\xae\x68\x77\x7d\x5a\xc4\xc1\x20\x34\xe9\x14\x2d\x1e\xec\xb9\x4b\x8a\xef\x6d\x1d\x29\x30\x9c\x5a\xdf\x19\x6b\x5d\xbd\xf2\xd7\x66\x5d\xd5\x6c\xc7\xc4\x9d\x5a\x9b\x58\x19\x70\x09\x7e\x82\x6d\xc7\x37\xb4\x1c\xe0\xc0\xfe\x3e\xad\x4b\x64\xad\xd7\x75\x95\xe7\x1b\x36\x51\x9d\x0d\x92\x1e\xcb\xa8\x20\xb4\x82\x41\xe2\x6b\x65\x83\xfc\xff\x1f\xe3\x1d\x59\xef\x08\x19\x00\x11\x3f\x52\x2c\x4a\xf1\xeb\x3b\x68\xbe\x80\xd2\xdb\x5b\xd1\xc0\xa7\xcf\xb0\x91\xa4\xad\x81\xd8\xe9\x28\xfd\xa6\x65\xe5\x70\xe8\x93\x3a\xb7\xf0\xfc\xa1\xf6\xc0\x44\xd1\xb4\xf2\x78\x81\x39\xc4\x41\x08\x59\x08\xa9\xb7\xd3\x16\xc5\x30\x9f\xb6\x0e\x65\x3f\x4d\xb2\x8c\x39\xfc\x39\x53\xaa\x7a\xe0\x2f\xa8\xc2\x60\xb7\x48\x7b\x26\x46\xca\x8e\x1b\x06\x3c\x45\x35\x74\x86\x66\x11\xa6\xfb\x4e\x85\x08\x30\xcd\xb9\x38\x02\x7b\xfb\xa1\x26\x1c\xfc\xb0\x06\x60\xd9\xbf\x1f\x7c\x21\x45\x2a\x34\x96\xf6\xf9\xcb\x1f\x13\x92\x94\x06\x26\x8f\xd5\x34\x89\x7b\xfd\xc4\x26\xfc\x59\x16\x6d\xec\x72\x46\x1f\xab\x7e\x8d\x15\x33\x30\x43\x72\xc0\xa6\x95\xe4\x13\x0b\xfd\x28\xf1\xf7\x4d\x68\x0d\x6c\x5e\x52\x86\x33\x48\x8a\x60\xd0\xd2\x68\xa3\x0a\x1f\x7c\x8d\x66\x64\x71\x0e\x22\x51\x3d\x63\x39\xd3\x31\x59\xa7\xb1\x6e\xf8\xa6\x02\xd9\xe8\xae\xed\x9d\x72\x52\xba\x9b\x54\x3d\x47\x29\x0e\xe4\x2b\x36\x77\x78\xc0\x52\x4a\xf2\xb9\x62\xdb\xbd\xca\x6d\x80\xf1\x3a\xa9\xfa\xb7\x11\x48\xa3\x68\x70\x83\x96\x1d\x72\x4a\x57\x34\xca\xfd\x34\x1d\x38\xd8\x69\x67\xb1\x27\x61\x2e\xef\x61\xf6\x60\xaa\x3f\x52\x24\x15\x42\x7d\xc9\xbd\x5a\xb0\xfb\x38\x7f\xf6\x80\xe4\x00\x5f\x00\x24\x18\x76\xe1\xfb\x6a\x4c\xa1\xf1\xa0\x93\x6a\x2d\x4b\xee\x7d\x57\x35\xf6\xe6\x61\xd7\xe4\xe4\xf5\xc0\xa5\xb8\xa1\xf3\x80\x37\x1a\x7b\x3a\x80\xe5\xb7\xeb\x82\x5f\x5d\x09\x22\xdf\xb0\x30\xf3\xd2\x6a\xe6\x7e\x37\x29\x2c\x37\x0b\x52\x74\xac\x9a\xc9\x37\x6a\x83\xe7\xc1\x1a\xe3\xec\xc4\xa9\x52\xf2\x86\x90\xb2\xe5\xca\x84\xa7\xd8\xfe\x3e\xac\x65\xcb\x4a\x37\x8a\xb2\xf7\x4b\xb6\xfb\x44\xec\xea\x71\x75\xd4\xd5\x35\xa3\x0e\xcf\x2d\xb4\xfd\xa0\xdc\xc5\xe4\xa1\x73\xe7\xb0\x0a\xb0\x8f\xd3\x24\x49\xe6\xc3\xc5\x01\xc3\x24\xed\xfb\xf1\xac\xa2\xb0\xbc\x0c\xdf\x49\xd3\xf9\xf3\x3f\xd0\x9c\xc1\xb3\x3c\x8a\xb2\x88\x70\x66\x95\xbf\xc9\xff\x00\x7b\x06\xaf\xe6\xba\x92\xad\x0d\x03\xd3\x35\x69\x7f\x4a\xaf\x0f\x1c\xb4\xa8\x81\x00\x15\x24\x95\x6a\xd5\x7e\xea\xc7\xdc\x65\x28\x60\x37\x7a\x56\xc9\x99\x56\x20\x71\x4a\xba\xd7\xb1\x37\x25\xa9\xd1\x1c\xb2\x97\x15\x0f\x23\xa7\x9e\x58\x5c\xaf\x01\xd5\x7b\xb0\x9d\x9b\xb8\x37\xe5\x9e\x0c\xd0\x3f\x21\x92\xa4\xaf\x85\xaf\xfe\x83\x66\xcd\xef\x10\xbd\x1b\xb0\xb7\x9f\x29\xa6\xae\xcf\xd4\xea\x89\xe3\x67\x5b\x95\x22\x5b\xb9\x44\x44\xc0\xab\xde\x16\x97\xa7\xfe\x8a\x89\xa6\x14\xf0\x0a\xa0\x66\xe4\x37\xce\x29\x4b\x77\xad\x52\x0e\x0c\xd3\xe1\xc3\xb4\xf4\x61\x40\xa0\xbd\x8f\x22\xd9\x1b\x9e\x92\x61\xf8\x1f\x55\x5f\x04\xa5\x9b\x37\x2f\x91\x81\x50\x5d\xbb\x32\xf3\xcc\x31\x8f\x4c\x0d\x53\x13\x23\x22\xfc\x80\xa6\x16\x59\xe1\x7b\x8d\xf9\x32\xbf\xef\x87\xf1\x94\x62\xd1\x41\xed\x07\xeb\xee\xaf\xc6\x8a\xb1\xeb\x7c\x6d\x6c\xf7\xef\x6f\xe7\x56\x34\x56\xce\xf2\x96\x55\xa7\x5d\x57\x83\xdb\x37\xd9\xa3\xe5\x9c\xe1\x45\x1f\x9a\x30\x7e\xd4\x91\x12\x4e\xfd\x7d\x4e\xa3\xe3\x7c\x7f\xb2\xa3\xf0\x73\xf7\x35\x70\x9b\xd5\x17\x6d\x81\xba\x1a\x50\x8a\x0e\xc4\xcc\xc4\x86\xfd\xff\xf1\xef\x51\x8a\x5a\xba\x20\xcb\x75\x27\x85\x13\x75\x64\xfe\xc3\x8e\xad\x08\xcd\x3e\xde\x54\xed\x1f\x98\xa5\xdc\x3a\x4b\x48\x9d\x5d\x52\x34\x7a\x5c\x2f\x94\x9a\xc9\x56\xd3\x57\xba\xab\xa9\xf1\x7b\x61\x6c\x58\xf6\x8e\xfb\x09\x95\x90\x7b\xdd\xa5\x28\x97\xbe\x3f\xe2\xa2\x9e\x15\xaa\xde\xbf\xdf\xf2\xfd\xaa\x18\xd8\xa4\x2b\xe8\x76\xb4\x2c\x21\x96\xc5\xff\xa2\xe2\xc8\xa3\xc6\x8d\x30\xee\x53\xb8\x2c\x13\xeb\x12\x3a\x53\x00\xbd\xe0\x35\xee\xf2\x31\x02\x0f\x90\xd1\x89\x02\x61\xdd\x5a\x4f\x94\x12\x43\xcf\xc4\xe1\xeb\x46\xb8\x6a\x61\x07\xae\x68\x8b\xad\x09\x87\x92\xee\x4a\x48\xbe\x71\x39\x76\x2c\xa8\xee\x29\x94\xd5\x39\xeb\xad\xfa\x79\x1e\xe6\x45\xcf\x64\x3b\x54\x68\x0b\xf2\x0a\x5b\x42\x7a\xde\xfd\xff\x72\x61\x6d\x9e\xd0\xfb\x82\x41\x5a\xd2\x69\x56\xc7\xea\x2e\xb6\xc3\x78\x29\x49\x87\x5c\x3d\xc3\x69\xb4\xad\xa3\x90\xa7\xdb\x26\x8f\xab\x82\xde\x8a\xc9\xe9\xd1\x15\x63\xa4\x12\x7c\xb9\xa8\xb3\x55\x7e\x36\x08\x2b\x7c\x33\xba\x39\x4a\xbd\x21\x89\xbc\x9a\x69\xa5\x3d\xcf\xd8\x0c\x4d\x0f\x6a\x9b\xfe\x2d\xde\xe0\xb3\x5a\x74\xf4\xfc\x42\x7b\x14\xfa\x71\xa2\x44\x94\x39\x31\xcc\x37\x0d\x1c\xbe\xa5\xc3\x9d\xe5\xfe\x72\xb2\x12\x06\xa0\x50\x57\x12\x34\x96\xdf\x4d\x61\xc1\x86\x7e\xe0\xa7\x49\x1c\xb6\xdc\x91\xc8\x64\xdc\x7c\xa3\xfa\x52\x0e\xfd\xd3\xf9\x19\x27\x3e\xf1\x03\xb2\x64\x88\xd9\x5f\x1e\xab\x46\x01\x30\x90\xa8\x96\x1a\x81\x3c\x4d\x75\x9a\x5a\x16\xe0\x4c\x94\x9e\x23\x63\xd5\x45\x4e\x1c\xeb\x16\x25\x0b\xe6\xdd\xe4\x3a\x44\x53\x6b\x4e\x54\x0c\xbb\x86\x65\xec\x2d\x21\xb8\xed\x8c\x3a\x57\x43\xa6\x1c\x9e\x83\x7b\x10\x14\x2c\x84\x85\x1a\xfb\x27\xaa\xde\xfe\x49\xd3\xef\x8c\xfc\x94\xa0\xc4\xba\x65\x6e\xcb\xd8\xca\x36\x4d\x8a\x3c\xf2\x57\x79\x29\x32\xed\xba\xce\xc1\x5c\xad\xf6\xc9\xac\x19\x8d\xd9\x3d\x57\xc1\xec\x9e\x6b\xca\xad\x95\xdb\x29\xe0\xc5\x2b\x6e\x73\xcb\x0a\x26\x6c\xd8\x90\xc4\x64\x99\x89\x72\x18\x16\x38\x90\x4c\x78\xcd\x37\x55\xf5\x80\x51\x4e\xb9\x7f\xa1\xea\x23\x77\x18\xb1\xdf\x65\x25\xd5\x7f\x9a\x0a\xbc\xfc\xff\xb1\x2a\x25\x3b\x55\xa1\xe6\x72\xf9\x22\x81\xf4\xf3\xbf\x34\xb1\x56\x27\xf9\xc0\xa4\xab\x21\xab\x97\xc0\x8b\xfe\x54\x49\xe9\x81\xae\x8e\x85\x3f\xe1\x8e\xb3\xdf\x3c\xde\xab\x99\x0c\x48\xba\xb6\x5a\x86\xf3\x74\x19\xce\x8e\x4c\x18\xaf\x84\xb6\x60\x07\x86\x08\xe0\xfa\xf9\x7a\xab\x2a\xc5\x02\x89\x0b\x7e\xa9\x65\x85\x43\x4e\x8d\xb7\x7f\xd9\x26\xa3\x29\xf9\x8a\xd5\xfb\x96\x57\x01\xcc\x93\xbb\x6e\x4b\x59\x0e\x07\xbd\xb3\xa3\xb0\x5e\x2c\x72\x22\x3c\x0d\x34\xa6\x48\x2f\xdc\xf1\x74\x53\x39\xa5\xb7\xf0\x26\x60\xbf\xc6\x16\x41\xfc\x8e\xc3\xe2\x2e\x18\x96\xa5\x2a\x56\x61\x58\x76\x44\x01\x77\x78\x46\x38\x7c\x86\xcd\xc6\xa8\x7f\xd7\x53\x95\x0a\x40\x32\x44\xa8\x83\x4e\x6e\xc5\x34\x22\xdd\x49\x9f\xd0\x44\x71\xa2\x81\x52\x94\x48\xeb\x9f\x44\x8c\xa8\x66\xfa\x67\xdb\x01\xb7\x19\x5b\x22\x5c\xbb\xe0\x7e\x6c\xf3\xa6\x59\x6e\x56\xca\x23\x08\xcf\x28\x47\x89\x6a\x28\x38\x57\xdb\x9e\x2f\xbf\xdc\x4e\x4d\x69\xfe\x5b\xba\x5b\xd2\xa1\x51\xea\x62\xaf\xa5\xc5\x2c\xba\xc3\x30\xb7\xab\xa0\xe9\x53\x5b\x93\x3b\x87\xe7\xda\x7e\x91\x27\xfd\xd4\x1f\x0d\xb8\x73\x7c\xf3\x9a\x52\x28\x7e\x13\x6b\x53\x12\x73\x5f\xfe\x9c\x53\x96\xe8\xd6\xcd\xc0\xc4\x59\xb8\x62\x08\x5d\x8a\x95\x74\x55\x75\xd8\x73\x93\x32\xb3\xe4\xd4\x36\xcd\xc2\x42\x9b\x04\xc7\x9c\x86\x0c\xc2\x5b\x4e\xcc\xf3\x4d\xed\x9c\x7f\x71\x71\xae\xdd\x4b\x7d\x82\xb5\x42\x7b\xf5\x73\x78\x9d\x9c\xa8\x77\x18\xa5\x89\xdf\x63\x6b\x03\xff\x0c\x5b\x85\xaf\xc7\x8e\xe0\x67\x44\x0d\xda\x81\xc9\xa6\x5d\x06\x83\x95\x44\xc5\x15\xa7\x3d\x00\xc7\x77\x9b\x12\x7c\x7c\xc7\xce\x3e\x55\x69\xbb\x6b\x3b\x1c\xda\xf2\xb6\x0e\xa7\xd7\xc9\xb0\x58\x1a\x17\x4b\x97\xf3\xa5\x8e\xd2\x1f\xbb\xa8\x2b\x73\x17\xc7\xed\x86\x40\xaf\x88\x47\xa9\x09\x4c\xaf\x1c\x43\x5e\x00\x22\x94\xe2\xf8\x1a\xce\x79\x5a\x36\x3d\x35\x5f\xa0\xd9\xc5\x01\xb7\xe9\xe9\x56\xe3\xb1\xc5\x31\xfc\xd6\xfb\x9e\xf2\x87\x36\x2a\x0c\x36\xb4\x81\x31\xd5\x0f\x94\x90\x18\xd3\x95\x4a\x1b\x80\x03\xdb\x5f\x1e\x3b\x78\xc6\xfb\xe3\xca\x04\xd0\x36\x47\xa2\x16\x50\x0f\xa6\x62\x18\xab\xc0\xfc\x9e\x86\x1d\x3f\xd2\x51\xa9\xad\xdf\xad\xa4\x18\xbe\xef\x39\x9a\xab\x8f\x01\x28\x11\x79\x05\x1a\x54\x6c\xf3\xc7\x27\x8e\x99\xef\xd4\xd8\x51\xf3\xee\x9a\xd4\x23\x93\x83\xed\x6c\xd5\x44\x11\x16\xa6\x48\xd0\x2b\x9c\xea\x7a\xad\x71\xed\x99\x76\x9c\xa4\xf9\xc0\x10\xa2\xcc\x86\xfa\x6f\x69\xe4\xf7\x5b\xca\x61\x5e\x1d\x88\xa4\x10\xa6\x5f\xf3\x07\x9c\x1f\x3f\xa1\x58\x5c\x57\xe3\x8c\x44\x99\x14\x30\x1d\xa7\x49\x25\xee\x10\xa1\xdb\x86\xae\xd0\x6c\x94\xfa\xab\x91\xc5\xd8\x59\x65\x54\xdb\xfd\x7b\x5f\x65\x5d\x6f\x6e\x65\xa5\x7b\xa6\xfd\xf5\x79\xca\x91\xa3\xa8\x72\x47\x07\x1a\x60\xe8\x47\x9e\x61\x5b\x47\x31\x37\xa7\xc9\x88\x33\xce\x22\x9b\xd7\x72\x12\x7a\x2a\xae\x4f\xfd\xdc\xec\x52\x0c\x76\xef\xd0\xe6\xc0\xc9\x78\x5b\x95\x59\x90\xa1\x81\x5d\x61\xf6\x7f\x61\xd7\x57\xfa\xe3\xb7\xc6\x2e\x5d\xf9\x1d\x72\x50\xb1\xd2\xb7\x01\x87\x85\x67\xbe\x4a\x8b\xcd\xf2\x88\x39\xf2\x92\x07\x8a\x34\x70\x68\xd2\xbe\x49\xa7\x15\xea\x13\xf5\x23\x1c\xe6\x0c\x18\x10\x05\xea\x96\x95\x25\xfb\x7e\x2d\x99\x2e\x06\x33\xf6\x8b\xcc\xf8\xa8\x16\x88\xaa\x8e\x8b\xbc\x6f\x7b\x8a\x0f\xf9\x64\x13\x5d\xc5\x52\x6a\x4c\x2f\xc1\xe9\x60\x19\x2e\x6c\x59\xae\x4e\x9c\xb9\x6f\x5f\x7b\x10\x66\x23\x3f\x0e\x03\x29\xab\xe1\x40\x66\x86\x2f\x40\xfd\xae\x68\x32\xd2\xb7\x55\x49\x33\x2d\xb2\x0c\x4d\x2f\xc8\xd4\xbd\xad\x34\x77\xde\xfe\x5c\x4d\x75\xb3\xda\xeb\x12\x03\x01\xea\x75\x9b\x67\x6a\x79\x8b\xf9\x43\xed\x28\xec\x9a\x48\x15\x31\xd0\x86\x2e\x39\xa4\xdd\x16\x64\x1e\x87\xa6\xb7\x43\x07\x34\x2e\x2c\xf9\x94\xf5\xe8\xb1\xf0\xde\xf2\x54\x8c\xb2\xa1\xba\x52\x00\x9f\x93\x62\x82\x23\xf2\x4e\x97\x66\x34\x53\xc8\x58\xa5\x79\x81\x6c\x10\x1c\x64\xcb\x4a\x8e\x1f\xa7\x45\x23\x7a\xbd\x0e\xb3\xd5\x4d\xfd\x38\xb0\x6a\xa7\x82\x71\x72\x09\x6e\x1d\x22\x8f\x22\x3f\x46\xbd\x07\x85\xb2\xf7\x3c\x07\x34\x78\x4f\x69\x31\xa5\x45\x64\x32\x7a\xf3\x8a\x56\xac\x74\xc0\xd1\xcb\x5a\x49\x8d\x72\xf1\x63\x13\x7f\x8f\x1e\x17\xa7\xed\x65\xa5\x9d\xf0\xdf\xd7\x7a\x62\x7e\xb6\x1d\x3e\x6b\x9e\xa5\xbc\x29\xde\xe8\xc6\xd8\xe9\xe7\xdc\xa8\x2d\xe1\xc5\x39\x4b\xec\x40\xe8\x88\xfd\xfb\x2d\xf4\x43\xc1\x40\x1a\xc4\x79\x0e\xb6\x47\x51\xb2\x96\x21\xbb\x63\x89\x03\xca\xc1\x86\xa7\xc6\x89\x54\x64\xfe\x4e\xd4\x56\xfd\xe2\x81\x76\xd7\xf8\x29\x29\xf1\xaa\x26\x35\x07\x29\xd2\x42\x10\xfe\xb0\x5b\x64\x03\x2b\x5a\x09\x17\xf7\x0e\x7e\x0d\x4f\xc8\xf2\x64\x52\x25\x72\xfc\x19\x95\xb8\x93\x3e\xc0\x92\xf3\x64\x41\x44\x7e\x7e\x6b\x6e\xe4\xd0\x0b\xed\x51\x92\x21\xfb\x6c\xe9\xc5\xed\xb9\xd7\xd0\x4e\xf0\xc2\xc1\x76\x92\xe6\xa6\x6f\xcb\xdc\x68\x31\x79\xa0\x72\xcf\x6c\xca\x45\x0a\xc5\x56\xca\x22\x3f\xcb\x4a\x6f\x47\x51\xb4\xcf\xa8\x1a\xf2\xcc\xff\xc3\xd9\xbf\xc6\x48\x92\x5d\x77\x62\x78\x77\x56\x55\x77\xcf\xb3\xe7\x49\xae\xb0\xfb\x5f\x24\xff\xa0\x31\x2b\x60\x96\xc0\xae\xb1\xf0\x9a\x5f\x22\xdd\x5d\xe4\x70\x7a\xc5\x9a\x42\x77\xb3\x87\x9a\x0f\xc6\xdc\x8c\xbc\x99\x19\xac\xc8\x88\x9c\x88\xc8\xaa\xae\x01\x16\x10\x0c\x41\x30\xf4\x49\xde\x5d\x2f\x0c\xaf\x6c\x4b\x36\xbc\x86\xbc\x4b\x58\xde\x25\x45\x51\xd2\x2a\x8b\xa4\x38\x12\xc9\xa1\x34\x0f\x0e\x39\xef\xe9\xf7\xbb\xab\xdf\xef\xee\x6a\x23\xce\xef\x9c\x7b\x4f\x54\xc4\xd0\x82\x3f\x4d\xc4\x74\x65\x66\xc4\x7d\x9c\x7b\x1e\xbf\xf3\xfb\xd5\xf2\x45\x28\x32\xf4\xa3\x6c\x84\xa8\x92\x8b\x49\xaa\x53\xea\xb0\x82\x2f\x0d\xd3\xa2\xb0\x79\x41\x4c\x3f\x88\x50\xde\x9b\x56\xda\xa7\x6b\x61\x1a\xff\x95\x82\x5e\xc5\xd4\x5d\x31\xe7\x19\x90\xb7\xac\x55\x5b\xc1\x5d\x53\x30\x9a\xf4\x90\xa3\xbf\xaa\x7b\x76\xd6\x6b\xe0\xe0\x97\x5f\x86\x10\x44\x54\xa8\x44\x02\xec\x85\x50\xc2\x3e\xe8\xcb\x70\x7f\x4f\xf1\x9d\x5e\x46\x15\x19\xc1\x30\x00\x88\xe2\x5d\x96\x87\x0a\x4c\x0a\x43\x6a\x71\xe6\xee\x58\x53\x84\xcb\x57\x94\x7b\x38\x4b\x28\x45\xe4\xb5\xff\x27\x78\x46\x82\x14\x03\xf2\xc0\xf5\xd1\x1f\xd8\x25\xd9\x82\xb5\xd2\x67\x82\xa3\x72\x2b\x68\x7d\xe9\xeb\x9c\x37\xfe\x73\xb8\x26\x4e\xd1\x78\xdf\xaf\x7f\x55\x98\x36\xe1\x56\x4a\x07\x97\x4a\x26\xdc\x50\x47\xec\x9b\x1c\xf5\x00\x14\x70\x17\x47\x1f\x3d\x57\xfa\x58\xc7\xa3\xde\x1e\x42\x23\x01\x36\x19\xe7\xb3\xf0\xfc\xa7\x03\xa5\x74\xfe\x77\x30\x43\x78\xe4\xa7\x29\x49\x89\x6e\x87\x02\xbe\x19\x6e\xfe\x95\x32\x25\xd7\x83\xa7\x5c\x17\x4f\xb2\x6c\x33\x66\x09\xc1\xa6\xc1\x2f\x7c\x33\xf0\xc0\x93\x6f\x56\x00\x2a\x99\x1d\xcf\x94\xaf\x22\x12\x8c\xe5\xdf\x61\x73\x7d\x7b\xaa\x18\xf0\x4e\xd7\x42\x16\x39\x5d\xf2\x30\xcd\x24\xdb\x8b\xe7\x61\x75\x3d\xbe\xf1\x7d\xc7\x26\x5b\x5a\x32\xd4\xa3\x84\xb9\xbd\xab\x2b\xbc\x3f\xa2\xb5\xc8\xb4\xb8\x7a\xc3\x9d\xa8\x27\x2a\xe6\xdb\xb9\xcd\x22\x9b\xcf\x6a\x0a\xf5\xd3\x9a\xc7\xf5\xbc\x3a\x30\x1e\xd2\xdd\x1c\xb7\x9d\x58\x68\x2f\x32\x5d\x5b\xd8\x7c\x0e\x5f\x22\x4f\x41\x5f\x02\x2f\x15\x38\x49\x78\xfe\xe8\xa7\x82\x7d\xff\x01\x1e\x8f\x3f\x11\x3c\xe1\x3b\x0a\x42\x53\x14\xbe\x80\x88\x45\xfb\xd3\xa9\x52\xe2\xf9\x69\x8d\xd4\xf1\x8b\x6d\x2a\x62\x1c\x90\x40\xf7\x3c\x8e\x4d\xd4\x08\x4e\x11\x64\x8a\x59\x90\xd4\x59\x34\xc8\xd2\x95\x84\x32\x67\xdc\x53\x10\x28\xa8\xe4\xa5\x4a\xb7\x84\xcf\x9c\xfd\x15\xb2\x01\x82\x64\x6c\x42\x09\xad\x0c\xa3\x18\x4d\x4f\x4e\xe6\xc8\x11\xac\x1f\x73\xab\x8c\x98\xb9\xc3\x68\x6c\x1c\xba\x00\xee\xfe\x2c\x56\xae\xab\x21\x97\x5b\x07\x26\x69\x7b\x2d\x4f\x47\x72\x47\x49\x6e\xb3\x65\x02\xd4\xb6\x7c\xd0\xf2\xe3\xa9\x4a\xcc\xfd\xf8\x53\x3d\xb7\x38\x4d\x7a\x69\x42\x03\x27\x1d\x30\x0a\x56\xcd\x19\x34\xec\xcf\xfb\x2e\xe8\x0c\xd3\xd1\x28\xed\x45\xc5\xaa\x32\x5c\x77\xf0\xa7\x7c\xa3\x94\x89\x7a\x36\x34\xbd\x32\x0e\x6e\x79\x77\xe7\x13\xd8\x00\xbe\x69\x14\x8e\x18\x4d\xe2\x2c\x4d\x98\x61\x0d\x6e\xc4\xc7\x1a\x26\xfb\x71\xcd\x9e\x3e\xbf\x50\x3a\x85\x45\x9a\xad\xce\xf8\x6c\xf0\x9d\x0a\x1b\x44\xa5\x05\x5c\x5c\xa6\x38\x1d\x20\x95\x2b\xe4\xeb\x4a\xe3\xb9\x8e\x54\x99\xdf\x4f\x59\x7e\x46\xaa\x48\xa1\x84\xbe\x58\x1a\xb8\x54\xbb\x7f\x44\xca\x79\x42\x5d\xf8\x67\x48\x3f\x48\x2b\x0f\x4d\x33\xff\x0b\x60\x45\x88\xf1\x50\xf6\x46\xe4\x7a\x57\x5b\x8f\x87\x3a\xca\xab\x51\x26\xe6\x8e\x3a\xee\xfa\x51\x8c\x46\xba\xf9\xfd\xc2\x03\x80\xb8\xd6\x75\x49\x39\xc5\x81\x53\x4d\x98\xea\x28\x31\x3d\xfb\xca\xc4\x14\x96\xb1\x12\xc2\x54\xd0\x72\x84\xe9\xeb\x6e\xf3\x8f\xa3\x22\x1c\x8e\x6c\x02\xb3\x85\x83\xee\xc7\x0a\x0b\xfb\xe3\x7a\xa9\x86\x18\x04\x87\xd1\x78\x95\xa0\x77\x8e\xe9\xf2\x1d\x35\x4f\xef\xd4\x32\xee\x0b\x0b\xed\xe5\x48\x9a\x8e\x39\xb3\x4d\x3f\x23\x59\x6e\x25\x7f\x36\x34\xe4\xc9\xd1\x79\xcf\xe0\x38\xc4\xd9\xce\x07\xde\xbb\x4b\x6c\xa2\xd6\x3f\x3e\xe7\xd0\x97\xa3\x74\x92\x14\x74\xd8\xe3\x28\xf9\x00\xb6\x04\x45\x3f\x94\xa5\xd0\x9e\x31\xc3\x9d\x17\xa2\xe0\xa8\xaa\x3b\xf7\x03\xdf\x37\x14\x4e\xf2\x22\x1d\x09\x93\x21\xc2\xbf\xb7\x69\x8e\x71\x88\x31\xbe\x16\x0f\x7b\xaf\x51\xf1\xd8\x24\x49\x3a\x49\x98\x0d\x71\xde\x69\xd3\x28\x80\x05\xb4\x80\xb0\xb4\x66\xd7\x14\x6b\xb0\xcd\xc7\x36\x2c\x28\x71\xeb\x48\xef\x5e\x74\x8a\xbb\xc7\x95\xfa\xee\x71\x9a\x03\xe1\xbf\xdb\xa9\x5a\xff\xed\x41\xe6\x0c\xfb\xa5\x7d\xfc\x99\x89\x72\xdb\xa3\x81\xd3\x74\xa2\x6e\x74\xbc\x9a\x1f\x04\xae\x31\x88\x8f\xae\x29\xb6\xad\xed\x1d\x45\xcb\x93\x1e\xa4\xdf\x74\x5c\xdf\xbe\x68\xe0\xa9\x03\xc6\xc6\x9d\x9a\xd2\xbb\xd4\x52\x2c\x98\x4f\x46\xae\x30\x97\xe4\xf1\x24\x0f\x05\xf3\xe5\x3a\x0c\x7c\xb7\x41\xe5\x3c\xb7\x71\xc4\xc7\xa2\xd4\x5e\x3c\x29\x10\x4f\x34\xdc\x00\x06\x2f\x4b\xb4\x55\x97\xfb\xda\xd7\xce\x63\x13\x2e\x59\xc7\x4b\x07\x5b\xce\x63\xc8\x37\xb5\x8c\xe9\x81\x5d\xed\x65\x5b\xa4\xf2\x19\xd7\x6b\xe2\x88\x01\xce\x57\xdd\x8f\x32\xf6\xda\xbb\xc8\x0b\x6a\x5d\x29\x2b\xad\x2b\x28\x5b\x66\x4d\x1c\xbd\x6a\xf3\xd9\xd2\x06\x00\xc1\x7d\x9b\xe6\x9f\xaf\x69\x34\x70\xc0\x1f\x0a\x3c\x6c\xe1\x50\xb5\xc4\x1e\xae\x82\xc6\x1f\xae\xce\xcf\xb0\x9a\x04\x8a\x53\x7e\x33\x0a\x9f\xa7\xe8\x9b\x61\x07\x88\x5b\x78\x71\x63\xdb\x9a\x92\x74\xc6\x84\x22\xf5\xf6\x78\xa7\x3c\xa0\x51\xf5\x80\xf8\x31\xd2\x65\x7f\x4d\xbb\x04\xe5\x72\xd6\xd5\x53\x24\x69\xb2\x73\xaf\x2a\x24\xe4\x69\xf8\xf6\xd2\xb1\xdd\xc0\x81\x17\x8d\xc6\x59\xba\x5c\x0e\xac\xd7\x47\xd4\xb4\x29\xeb\xc1\x83\x7e\xc0\x5a\xad\x67\x9e\x71\x75\x1f\xf2\x3b\xa5\xec\xf3\xb8\x3f\x0b\x59\x9a\x93\xb6\x18\x9e\x82\x89\xb9\xd1\xdf\x00\xff\x07\x89\x35\x2c\x7c\xec\x88\x99\xb5\xcd\x4f\x47\x1c\xa1\x29\xa9\xf1\x93\x69\x64\x57\x3a\xf0\x6a\x48\xeb\xca\xd2\x2d\x47\x69\x5c\x9e\xab\x73\x1e\xec\x71\x9b\xc6\xce\x41\x82\x05\x2c\xf0\xff\x7b\xbc\xa3\x2c\xe0\x59\x95\x0c\xad\xab\xa1\xee\xde\xdd\xee\x4e\xf2\x5f\x9a\xb4\x7e\x54\x21\x6b\x8a\x34\xdb\x56\x86\x03\x4e\xd5\xd0\x89\x8b\x9d\xc5\x19\x2f\x6c\xf1\x2d\x97\xc7\xfa\x50\xf7\x31\xfd\x5c\x89\xfc\x7c\xa8\x7b\x75\xa2\x7c\xe9\x21\x55\x39\x87\x89\x94\x04\x22\xc5\x29\xf0\xed\x6e\xa2\xba\xa3\xf2\xd7\x92\x7a\xb9\x45\xe3\x26\x70\x6c\xd5\x19\x78\x41\xa5\xe1\xae\x4c\x7d\x92\x72\x03\xc7\x33\x7f\x2f\x62\x16\xe1\x31\xda\xec\x6f\xfe\x83\x76\x91\xc1\x6b\xe0\xd5\x1c\xa8\xde\xd4\x7a\x51\x93\xf4\x49\x47\xa3\x34\x01\x89\xa5\x63\x2d\x2f\x9f\x90\xaf\x9b\xf4\x19\xcb\x18\x97\x29\x4a\x10\x15\xdd\x9e\xaa\x14\xf7\x96\x8e\x6f\x88\xf9\x58\x71\x2e\xf7\x6c\x1c\x4f\x46\x9c\xa1\xe4\xae\x30\x2d\x35\x72\xb2\x09\xb1\xdb\x4d\xd3\x91\x4b\xa2\xba\x58\xc2\xc9\x3b\x80\xbb\x03\x30\x8f\x56\x2d\xa3\xbc\x67\x0f\x98\x9c\x92\x96\x4f\x23\x1e\xc6\xa9\xc9\x37\xce\xdb\xfa\x86\x19\xb1\xbd\x16\xed\x0e\x1d\xb0\xec\x54\x5c\x28\xd6\xf4\x18\xb1\x88\x3a\xda\x39\xdd\xa5\x78\x0e\x66\x07\x36\xf8\x78\xe0\x51\x5b\x75\x42\xcd\xf2\xe5\xb2\x49\x52\x60\xc3\x0b\xf9\xb0\xdf\x93\x17\xd4\x82\xce\xa3\x24\xb4\x8f\x29\x40\xcc\xb9\xa9\xa6\xdb\xba\x0d\x6f\x5c\xb2\xb9\xf4\x85\x48\xaf\xde\x51\x32\x0f\x60\x15\x10\xea\x02\x58\x2a\x6e\x6c\x44\x84\xcd\x85\xd2\x40\x43\xbe\xca\xa5\xb0\x71\x5d\x49\x94\xde\x46\x9c\x2a\x55\x1c\x9a\x77\x57\x61\x2d\x67\x16\x30\x19\xb0\x31\x61\xfb\x5f\xd7\x72\x29\xfa\x04\x2f\xd2\x91\xc9\x87\xaa\x37\x8a\x63\x2f\xbe\xf1\xfd\x19\xe9\xb2\x05\x4c\xd4\x0b\xf6\xf8\xbc\xdb\xce\x8e\x57\x18\xb8\x5f\xa9\xad\xab\x5e\xec\xc4\x84\xaf\xda\xf8\xff\xa3\x3a\xe2\xe6\xd3\x73\xff\x0b\xed\x28\x8e\x27\x50\x76\x6c\xf9\x73\xe1\x84\x22\xed\x3e\xa1\xa5\x4b\xc6\xd6\xf6\xf2\x96\x96\xa4\x2d\x47\x47\x5a\x5e\x1b\x9d\xd1\xc2\x1e\x2c\x48\x64\x55\xc9\x58\xa1\x33\x8a\xaf\x6b\x21\x3b\xc0\x11\xd0\xa3\x72\xd1\x33\xb6\xe1\x36\x1c\x52\xa2\x4e\xeb\xe1\x5a\x17\x34\xe7\xcf\xba\x82\xaf\xa4\x03\xc6\x1a\x4b\xd6\x1e\x67\x9e\x14\xa8\x4b\xdb\x8a\xf3\xb4\x9e\x42\x9c\xdf\xdf\xee\xad\x26\x26\xe7\x38\x0c\x1b\x15\x0d\x14\x7c\xad\xce\xfe\x38\x2a\x6c\x66\x32\xfc\x29\x0a\xa0\x20\x70\xe5\x6b\x55\x94\x89\x12\x7b\x30\xcd\x4c\x37\x5e\xc5\x21\x20\x60\x2a\x05\x05\xfc\x14\x6a\xf0\xd8\x0e\x78\x1c\x61\x69\x6e\x29\xf9\xab\x5b\xaa\x10\x69\x7a\xcb\x26\x09\x6d\xc6\x36\x0a\xe6\x97\x59\x5e\xf9\xa6\xce\xc7\xb7\x77\xb1\xbd\x92\x4e\x12\x56\xcb\xaf\x7c\x46\xb0\xd2\xf4\xb8\x38\x4c\xfe\x42\xd1\xd2\x95\x87\xc9\x8e\x96\xeb\xe5\xbd\x30\xad\xc0\x8a\x14\xcd\x26\x37\x71\x60\xc6\x8e\x2a\x26\xba\xcb\x34\x29\xe2\xf1\x94\x6b\x4a\x1d\x38\x2f\xb9\x24\xfe\xe6\x53\xe2\xc5\xc5\xf6\xaa\x01\x78\xc6\x01\xd9\x3c\xc7\xf4\x49\x94\xec\x19\xa5\x10\x28\x8f\x62\x64\x88\x12\xb0\x22\x4d\x47\x4f\xc6\x4d\xf1\x6b\xba\x25\xa4\xe1\xac\xe9\x45\xcb\x36\x77\x85\x53\x64\xd0\x3f\x51\x25\xb1\x4f\x1c\x53\xf1\x8a\xa1\xb4\xc1\x81\x5d\x6c\x4e\x7e\xae\x9a\x57\x7f\x3e\xdd\x5c\x9e\x5e\x58\xf8\xdb\xe6\xc6\x24\x42\xec\xa6\x59\x96\xae\x48\xec\x83\x95\xb0\xad\xa3\x5a\xae\x30\x81\x18\xe5\x9b\xce\xab\xca\x27\xdd\xdc\xbe\x32\xb1\x49\xa1\x1a\x1d\x1f\x5d\x53\x75\x24\x92\x78\xbc\xf7\x1b\x4f\x74\xe4\x97\x88\xe1\xb4\x90\x5f\xe2\xee\x32\x7a\x67\xc0\x1d\x40\x0a\x24\xbb\xd1\x13\x27\xa4\x4b\x73\x2a\xfc\xba\xa2\x30\xe3\xeb\xd5\xe4\xb5\x67\x65\x3b\xa9\x9a\x67\x3e\x6e\xdc\x96\x36\xb7\x99\x15\x76\x66\xa1\xeb\x50\x09\x92\x3a\xe6\xf5\xe5\x97\x09\xd6\x3f\x50\xbc\x5a\xd8\x3d\x7c\xed\x3b\x37\xa2\x41\x62\x62\xd4\x78\x40\x84\xc6\x8a\x57\xa8\x4f\xbf\x4e\x1f\x02\x84\xf1\x01\x1a\x68\x34\x56\xed\x44\x98\xc5\x7f\xa4\x04\x46\x72\x9b\x10\xfd\xe9\x3e\xe7\x94\xe0\xa9\x9d\xb0\xca\x8b\x0e\x4f\x74\x3a\xd0\xfe\x4a\xb9\x0b\x84\xfa\x47\xb1\x67\x9c\x25\x57\x8f\xe9\xe1\x6b\xbb\xf8\xd9\x76\xd7\x9a\x70\x28\xe6\xd6\x49\xc4\xe9\xc3\xa4\x81\x8e\x7c\x18\xc5\x31\xbb\xa4\xd2\x58\x4b\x1f\xe1\x1b\xa5\x77\x57\x64\x51\xb8\x14\x73\xcf\x0a\x36\xec\x6f\x4e\x7d\x66\xf6\x37\x15\x3f\x7b\x3a\xec\x9a\x55\x42\x0f\xd2\x1f\x63\x91\x71\x53\x16\xdf\xd4\x92\x4c\x7b\x77\xb5\x4d\x51\xd8\xd1\xb8\x50\xa4\xb8\xa7\x14\x29\xee\x29\xe7\xe9\x24\x36\x5c\x9a\xf5\x01\xf0\x0e\xf8\xe0\xae\xb1\xd5\x25\x17\xd9\xa7\x93\x7d\xfe\xb0\xcb\xad\xc4\x31\x03\xef\x94\x8a\xbe\x08\xb4\x40\x7f\x42\x10\x14\xb2\x07\x4c\x0c\x1c\xa7\x02\x0d\x56\x85\xb6\x15\x41\xb9\xe1\xa6\x67\xc7\x50\xa0\xfc\xd7\x5a\xf9\x7f\xcf\x9e\x76\x6e\x4d\x37\xcd\x12\xab\xd8\xfd\x6f\xa8\xaa\x3e\x33\xa1\x08\x57\xc5\xe6\x82\xd2\xf3\x0b\x44\x1e\xd0\xf2\xb2\xa3\x17\x54\x9b\xf5\x85\x1a\xfa\x79\x61\xa1\x6d\x56\x0c\x32\x79\xf8\x81\xad\x6b\xe5\xb1\x0e\x17\xe2\xda\xd4\x07\xc2\x0f\x77\x74\x20\x5c\x98\x1e\xc5\x43\xee\xe5\xbf\xfc\x22\xfb\x5e\x1b\x8a\xf2\xf3\xa6\x2a\x66\xdd\xa9\x70\x43\x6d\xae\x26\x3e\xdb\x0e\x87\x76\x85\x42\x3b\xc9\xa3\xd3\xa8\x21\xc1\x70\x5f\xf3\x01\x00\x99\x82\xa3\xe8\x23\x15\xa7\xe5\x36\x9c\x64\x51\xb1\xba\x43\x79\x00\xd7\x2b\x20\x4a\x38\x0a\xe0\x8f\xe3\x71\x44\xe1\xe4\xc7\x9a\xb7\x17\x0d\xc5\x70\x2d\x2e\x06\x9b\x59\x34\xf7\x39\x62\xaa\xcd\xd9\xd4\x17\xa9\x2c\x1d\xda\x84\xa3\xba\x79\xd7\x22\xa1\x99\x22\x9a\x08\xb7\xa3\x24\x9c\x8c\xba\x92\x32\x61\x46\x4b\x45\x07\x73\x4b\x61\xd0\x33\xd3\xa5\xcc\x8f\x24\x80\xe9\xc1\x31\x18\x97\x54\x07\x03\xb2\xea\x78\xd5\x3f\xc4\xb6\x87\x03\xbd\x73\xad\x29\x0b\x1c\x0e\xed\x28\x0a\x59\x87\x93\x25\xb1\x82\xaa\xb8\xae\xcf\x53\x7c\x4b\x65\x5e\x9f\xfb\x87\xff\xc5\x8c\x6f\xfc\xbe\xaa\x54\x17\x6f\x6a\xcb\xb1\xad\xe3\x2d\x47\x94\xf4\xec\x41\xcb\x1c\xd9\x4e\x0e\xa5\x1c\x59\x91\x43\xf1\xd0\xea\x22\x33\x3d\x9b\xe5\x3b\x7c\xa2\x96\x49\x00\x1d\xb2\xcf\x77\x7e\xcd\x20\xeb\x01\xfb\x83\x46\x19\xe6\x40\x44\x50\x8b\x4e\xf0\x3b\x3a\x99\x77\x81\xfc\x3e\xc1\x25\x7a\x3f\x3e\x1d\x97\xc7\xee\x76\x85\x40\xe4\x9e\x69\xa7\xec\x79\x40\xf8\xf5\x7f\x82\x1a\x21\x50\x1c\xdf\x53\xbd\xf3\x3b\x61\x87\xf8\xe8\xa0\xe1\x43\xae\x7b\xcb\x9a\x58\xae\x25\x6b\xc7\xdb\x7d\x3c\xc3\xa9\x7d\x04\x44\x37\x15\x52\xe4\x29\xee\x2a\xd0\xbc\xee\xae\x8a\xe4\xdb\xbd\xae\x4d\x15\xc4\xfe\x9a\xd3\xf3\x18\x76\xbf\xd1\xf2\x69\x40\x4e\xce\x8b\x46\xbc\x94\x1a\xba\x59\x14\xc7\x91\x49\x58\x0b\xc3\x45\x6f\x8e\x60\x0a\xfa\x05\x2c\x17\x59\x33\x3b\xbb\x77\x53\x77\x0b\x39\x38\xa8\xae\xf0\xc3\xf0\x4d\x53\x77\x5d\x3f\xcd\xba\x51\xcf\x53\x32\x33\xd0\x40\xe5\x9b\x7f\xa3\x09\xb4\xbc\x1c\xa5\xb1\x17\x2e\xd0\x19\x55\xc9\xb4\xee\x54\x89\xb8\x91\x89\x92\xed\x14\x0c\x4a\x42\x89\x3e\x86\xd1\x83\x34\x26\x36\xcc\x7d\x3a\x67\x85\xef\x89\xd2\x68\x17\xe1\xfa\xfc\x4a\xc7\x57\x20\x66\xd6\xa4\xaf\x6b\x9c\x8e\xd2\x38\x1d\xb8\x82\xba\x93\x37\x70\x8a\x47\xef\xe9\xe6\xfe\xc4\x0c\x58\x0b\x0d\xab\xed\x87\xda\xa1\xfe\x61\xf0\xf4\x26\xca\x98\xf9\xfd\xed\x03\xbb\x16\x68\xa3\xab\x26\x16\xa7\x82\x55\xbe\xee\x06\x32\xe4\xfc\xcf\xb0\x53\xd2\x5c\xe2\xbd\x8e\x5e\x64\x7b\xb3\xbe\x5a\x75\x04\x3f\xcb\x4a\x3c\x30\x1e\x4e\x96\xc7\x85\xc4\x47\x14\x86\xbb\x67\xc7\x69\x26\x8a\x42\x48\x66\x61\xa8\xf8\xba\x16\xec\x49\xc5\xab\x18\xda\x28\x9b\x43\x71\x1b\x3b\xe2\xb3\x1d\xbf\x6d\xb0\x88\x61\xea\x2f\xeb\x84\xfe\x1c\xc1\xeb\x84\x8a\xc2\x1b\x9a\xff\x6a\xe1\x9f\x6d\xdb\xdc\x38\xc0\xbd\x42\x0d\x95\x34\x24\x9d\x7e\x12\x68\xc7\x10\x49\x33\xac\xe0\x7b\xc1\x67\x54\xef\x65\x26\x1a\x74\x89\xb8\x92\x8e\x67\x48\xf1\x5a\x37\xf9\x28\x61\x6c\x72\x07\xdc\x51\x64\xc0\xf3\x8e\xb8\xc1\x4f\x85\x09\x0b\xf0\x3b\x48\x36\x00\x63\xc3\xe3\x11\x6c\x1e\x1b\x64\xc4\xde\x47\xa6\x4d\xda\x31\x1b\xe0\xaf\x84\x17\x5c\xb1\x79\x31\x43\x69\x12\x44\x2e\x47\x14\x41\xe3\x56\x5a\xbf\x18\xd1\x5b\x8a\x50\x6e\x90\x19\xdb\x43\xf3\x97\xe7\x54\xf1\x50\xd4\x5b\x78\x0f\xd1\x88\xf6\x6b\x39\xb6\xcb\x36\x7e\x70\xc6\x2b\xe1\xfe\x8f\x53\x4f\x6e\xff\x6f\xa6\x2a\xfe\x83\x75\x06\x92\x0e\x7d\xd3\x8e\x3d\xdb\x09\x18\xb0\x70\x06\x2c\xe0\x69\xc0\x0c\x5c\x16\xde\x29\xf5\xdd\xc2\xfa\xe6\xbf\xda\x94\x9c\x25\x6b\xd0\x72\x98\xf0\xf5\xc0\xeb\x7d\xad\xd7\xa2\x86\xaf\xce\xb7\xed\xc1\x71\x6c\x22\xe4\xd0\x44\x22\xc7\x63\x7e\xeb\xd4\x84\x07\x76\xb5\xed\x41\x9b\x85\x91\x63\xc0\x47\x90\xf9\x3e\x3d\x20\x5f\xab\xbe\x66\x13\x77\x27\x92\x7c\xd3\xaa\xa7\xa2\xe6\xf0\x98\x6a\x3e\x29\x0a\x9b\xe5\xaa\x9e\x7e\x03\x7b\x12\xa1\xd4\x79\xa5\xef\x73\x44\x5b\x93\xc2\x2c\x59\x5a\x4a\xa8\x18\xff\x08\xe1\xb4\x4b\x4c\x38\x76\xa9\x75\x75\x0a\xde\xd4\xc5\xd3\xdb\x4d\x55\xdd\x74\xd9\x66\xbd\xc9\x26\x32\x01\xb7\xeb\x2f\xe8\xbc\x42\xbf\xb0\x99\xa3\x7f\x16\xaa\x5e\xdf\x1c\x71\xc1\x35\x18\x40\x16\x3c\x07\x61\x8b\x08\x8a\x95\xf3\x23\xec\x82\x34\x4a\xb0\xcd\x58\xa8\xce\xd7\x2a\x57\x1f\x8e\xa9\x37\x1b\x38\x64\xe6\xdb\xe3\x09\xa7\xda\x74\x0f\x22\x5f\x6f\x02\xcc\xb1\x2e\x1e\x96\xa5\x56\xa2\xfb\x98\xfd\x43\xa7\x71\xe8\xc8\x54\xce\xe1\x01\x50\x04\xbe\x58\xc9\x3a\x63\xb4\xe1\xe5\x5c\x9c\x56\x98\xe3\x7c\x45\xfb\xac\xa6\x6e\x8c\x7a\xc3\xf1\x04\x95\xec\x26\x24\x6b\x93\x47\x56\xa4\x93\x2c\xca\x0b\x0e\xc6\x10\xb7\xbf\x36\x55\xc8\xcf\xd7\x02\x39\x8a\xba\x26\x8e\xd3\x34\xf1\x7f\xed\xb0\x8e\x3a\xfd\xb2\xf9\x28\x15\x3b\x3d\xc9\x23\xf4\xc4\xa2\xa4\x02\xdc\x21\xf7\x6c\x4f\x3d\xff\xc2\xeb\x9a\xc4\xf0\x5e\xa0\x55\xb8\x97\xec\x4e\x0a\x5e\xc1\x53\xf1\xbb\x53\x9f\x0a\xbc\x32\x85\x8d\xd3\x70\x79\x64\x46\x66\xc0\xaf\x28\x32\x8a\x1e\xc8\xc9\x5c\xa4\xf0\x34\xef\x92\x35\x11\x11\x4f\x7a\x00\xf8\xe5\xdb\xd6\x54\x92\xec\xe2\xd4\x53\x96\xdc\x54\xf2\xf9\x1f\x12\xf4\x17\xd6\xec\x28\x32\xc2\x30\x20\x37\xa6\x4a\x08\xa1\x0e\x18\x5b\x58\x20\x59\x2e\xe7\x98\x88\x4c\xba\x3f\x7e\xea\xb1\xf3\xee\xf9\x76\xd7\xc6\xe9\xca\x4c\xb5\xfe\xe1\x44\x13\x2f\x28\x1b\x59\xef\x62\xf0\x67\xa6\x29\xb6\xd1\x58\x6a\x89\x14\x18\xcd\x33\xaa\x65\xfa\x9b\x14\xfb\xc3\xf2\x3c\x0d\xbc\x10\xf6\x16\x28\x41\x7d\x53\x9e\xe7\x60\x2f\x0a\xd1\x66\x64\xc6\x7b\x18\x1a\x6d\x90\x61\xff\xbe\xaf\x92\xcc\x68\x0f\xb6\x19\xed\x5f\x39\x85\xc0\x45\xad\xc8\xfa\x1d\x64\x1f\x27\x06\x43\xb3\xa6\x4a\xa4\x7c\x4d\x25\x48\x47\x11\x99\xaf\x7c\xce\xf7\xbc\xf0\x66\x77\xd2\xc3\x8e\x4a\x65\x5d\x73\x6e\xaf\x6b\x65\xee\xab\xc1\xc3\xee\x1b\xa9\x80\xfd\xbc\xe2\x4a\xde\xbb\xcb\x25\x4c\x36\xaf\xfa\xbd\x8b\xed\xbc\x22\x04\x22\xe0\x31\x05\x24\xab\x4d\x4f\xe9\xdd\x0e\x2d\x75\xd6\x70\x5f\xa3\x34\x61\xd0\xc6\x11\x76\xf6\xf2\x77\x71\xec\x20\x07\x86\xe8\xeb\x58\x53\xa1\x84\x98\xbb\x55\x66\xe3\xea\x54\xe9\xc8\x5e\xd5\x8c\x3a\xe9\xc1\x88\x61\x1f\x3a\xd9\xcd\xd7\x8d\x5c\x17\xe9\x68\x3c\x01\x17\x6e\xf9\x29\x65\x4e\x9f\x63\xf7\x0e\x51\x39\x73\x15\x29\x06\xb1\x91\x29\x48\x50\xad\x10\xed\x13\xc7\xa7\xb7\xa0\x74\xfb\x9b\x08\xb4\x57\x4c\x96\x51\xec\xe0\xab\x48\xa7\xa6\x2a\x7d\x7c\x35\xf0\x92\x53\x87\x54\xf5\xb1\xc8\xa2\x31\x03\xda\x90\x3d\xdb\xda\x51\xc2\xe9\x08\x9a\xf0\xa9\x77\x15\x3e\x9e\x7b\xcb\x58\x6e\xa1\x06\x5b\x2d\xad\x67\x5e\x44\xe1\x12\x67\x75\xf0\x21\xc6\xdb\xb9\x7c\xff\xc2\x02\x03\x4d\xfe\x58\x85\x9b\xa1\xc9\x6c\xb9\xda\xfd\x31\xf0\x33\x2c\x4d\xc4\xce\x27\x95\xf6\xf5\xfb\x18\x51\xc9\xf3\x55\x28\x07\xc5\x30\x17\x36\x1c\x26\x51\x18\x99\x84\xb9\xb8\x98\xcc\x24\xf0\x45\xe7\x33\x7c\x00\xc9\x9d\x07\xcd\x8d\xd2\xa4\x60\x54\x93\x23\xdd\xfe\x74\xbe\x74\x4f\x91\x4e\x3f\xa4\x94\x07\x16\x1d\x56\x12\xbf\xa4\x55\x2a\x65\xab\xfa\x88\x69\x29\xea\xf5\x6c\xf6\x00\xf9\x64\x8e\x75\x7f\x33\x30\x1e\xd3\x73\x7c\xaa\xb9\xf9\x31\x1c\xc8\x19\x7f\x4f\xb3\xf5\xde\x25\x5b\x05\xef\xe6\xb0\xa2\xaf\xb8\x86\xed\x2c\xc0\xfa\x4d\x84\x50\xfb\x5f\x68\xef\x5d\x7c\x70\xeb\xe7\x9d\xcb\xe7\xcb\x29\xf7\xe1\x24\x3a\xfc\x84\x43\xe7\xff\x82\x4e\x0b\xc4\x01\x47\xb1\x68\x99\x97\x98\x9c\x6b\x0c\x3e\x0e\x0b\xfe\x00\x0e\x05\x41\x5f\xf8\x5a\xd4\x7f\xeb\xfc\x97\xc4\x2e\xa5\x69\x6e\xb8\xf8\xe4\x94\x0b\x7c\xe9\x05\xce\x3a\x0e\x9f\x6f\xe9\xe0\xe3\x96\x92\x94\xeb\xa5\x93\x01\x55\xcb\xb4\xd6\x31\x5f\x37\xb1\xa8\x92\xb5\x99\xad\xb4\x17\xb4\xbe\xf4\x75\xae\xb8\x80\x83\x47\x48\xb5\x68\xa4\x25\xf6\xf1\x4d\xa0\xfd\x28\xcb\x8b\x21\xc9\x99\x96\x93\xc4\xe8\x78\x40\x2b\x04\x2a\xdf\x90\x89\xea\xd9\x51\x1a\x66\xa6\x10\x98\x29\x8e\xde\xad\x1d\xc5\xd1\xcb\xa2\xff\x2e\x17\xe1\x9c\x3e\x6e\x9b\x16\xd2\x0c\x7f\xf8\x8c\xcd\x6a\x96\x0a\x19\xb8\xe8\xa0\x95\x33\x22\x02\x69\x4e\x2b\x36\x36\xae\x8d\xcf\x69\x02\x69\x95\xa3\xa7\x05\x01\x65\xc7\x99\xcd\x6d\x52\x10\x1a\x73\x46\x21\x90\xc1\xeb\x88\x9c\x0d\xea\xf6\x52\xbd\xd4\xad\x11\x99\x89\xe7\xb4\x67\xeb\x3b\x17\xcf\xe9\x29\xd4\x5a\xa0\x3c\x06\x48\x8c\x1c\x55\xb2\xc7\xbd\xb4\x37\xb0\x59\xde\xf2\x1d\xbb\xe8\x82\x13\x88\x90\x4b\x18\x64\xb6\x17\x85\x05\x95\xfb\xfc\xbf\xa3\x47\x9b\xaf\xd5\x3e\xec\xc6\x46\x7a\xf8\x85\xa4\xd2\xa3\x34\x3e\x09\x7c\x54\xb9\x6a\x4d\xf6\x34\x0d\x00\xb2\x0e\xf7\xe8\xc7\x31\x55\xd7\x79\xcb\xc3\x84\x42\x91\x1c\x5b\xfe\x33\x6b\x8a\x43\xea\x32\x36\x32\x76\xf5\x2d\xf8\x46\xb2\xa2\xca\xb7\x82\x6d\xba\xae\x7a\xdd\x98\x5a\x17\x91\xc9\x13\x04\x6d\x67\x59\x3c\x4a\xa8\x21\x8f\xfe\x08\x46\x0c\x1e\xf4\x83\x74\x22\x22\x20\x9d\x85\xbc\x37\x5e\x7a\x03\x86\x43\xe4\x21\xc8\xf9\xc1\xf7\x5e\x27\x87\x07\x86\xe3\x38\x5c\x0b\xd4\xcb\x5a\x6b\x2a\xd2\xdd\xd0\xba\xda\x3f\xd4\x10\x83\x61\x3a\xce\xe7\xca\xc7\x11\x29\x72\x5f\x4c\x7a\x8d\xbe\x9a\x95\xb1\xa7\xde\x29\x3a\x0a\x5b\xc7\x37\x9b\x9b\x9f\x77\xef\x6e\x2f\xee\x5d\xa4\xb4\xb7\x3b\xff\xcb\x81\x93\x82\x84\x5f\x01\xdb\x3b\xca\xf9\xd9\xb2\xa6\x22\xc1\x53\x81\x6e\x8f\x8a\x6d\xd6\xf2\xed\x41\x67\x15\xa4\xee\xac\xab\x35\x84\x36\x71\x20\x6d\x91\x9d\xe7\x4a\x14\xdf\xa8\x03\x75\x1c\xb1\x6e\x04\x57\x2c\x2a\xd5\x8b\xcd\x27\xf7\xee\xdd\x6d\x86\x54\xf1\x9e\xc3\xc9\xcd\xe2\xc4\x7c\xd3\xd0\x71\xbb\xd8\x9e\x64\x03\x22\xba\xaa\x50\x75\x68\x2f\xa1\x02\x9a\x9b\x74\x8b\x07\x68\x5e\x45\xff\xb2\x1c\x41\x11\xea\xf6\x0f\x7b\x14\xb6\x0c\xc7\xfa\x5f\x63\x5a\xf9\x66\xea\xb1\xe3\xdb\x88\x36\x1b\x79\xb3\x7b\x18\x06\x4e\x0c\x93\x89\x14\x51\xd2\xa7\xdc\xfe\x24\x92\x03\xf2\xb7\xc0\xd0\xb1\x71\x8c\x0c\xd8\xc6\xb1\x5a\xe6\x6a\xcf\x9e\x76\x2f\xca\xc3\x32\x0c\xb6\x6c\x37\x2b\x8a\x24\x7c\xa3\x64\x25\x0a\x33\x62\x47\x52\x02\x3b\x1c\x54\x52\xc6\xf3\xbd\x8c\xf9\xd8\x64\x4b\x73\x3e\xa1\xf1\x26\xb0\x55\xd2\xe3\x5c\xbe\x13\x62\xdd\x6b\x53\x8f\x50\x7f\x13\xa6\x16\xc3\xb3\xa5\x23\x09\x5d\x3b\x18\x78\x0f\xe5\x47\x4f\x21\xcf\x2c\xb2\x81\x3e\xcf\x8c\xec\x26\x16\xff\x29\x5d\x14\xbd\xd4\xd4\xe7\x67\xc2\x30\x9d\x24\xae\xae\x8b\x75\xfc\x73\xc5\xad\xca\x44\xde\xc8\x23\x1d\x55\x83\x60\xf2\xdc\xe6\xbc\x82\x5c\x53\x4a\xb9\x82\x04\x56\xd7\xe4\xff\xc6\x51\x0f\x15\x2e\xae\x0f\xac\x69\x69\x0e\x75\x3c\x3e\xd2\x79\x48\x89\x35\x80\x29\x1c\xaf\xba\x41\xa7\x3d\x22\xcb\xdf\xd7\xd4\x64\xa7\xa7\x9e\xcb\xeb\x2e\xf8\xf9\x59\x4b\x1e\x63\x2e\xa5\x83\xd2\x34\x60\x9c\xdf\x23\x52\x6a\x1c\x8b\xe7\xb0\xf0\x98\x36\x96\xbc\x0b\xaa\x58\xdf\x7c\xaa\xa3\x54\xc5\xee\x60\xb5\xc3\xc3\xd7\x8d\x17\x5b\xb1\xf3\x61\xc1\x2e\x07\x5e\x14\x02\x05\x14\xbc\xd4\xb6\x35\xd5\x30\x7a\xa7\xa9\x51\xd3\xc4\x61\x5a\x93\x4d\xfe\xf2\x8b\x4e\x36\x59\xd5\x83\xec\xab\xec\xad\xe3\x00\x63\x66\x0b\xbe\xa9\x8d\xfd\xe2\x0b\xfb\xc8\x32\x22\xa4\x80\x07\x7c\x68\xea\xbd\xe1\xfa\x27\x0e\xec\x9a\x6f\x8f\xd2\xbc\x98\x25\xa3\x8b\x72\xc6\xb5\xc0\x3f\xd8\x59\x45\x7b\x70\x1a\x7c\x71\x22\x72\xe3\x9f\xf2\xd7\xf6\x7f\x85\xde\x05\x1f\xbf\x11\xa8\xaa\xfa\x8d\x06\x79\xb1\xc5\x76\xda\xef\x47\x02\xfe\xaf\x68\x8d\xf0\x4d\xa0\x75\xe8\x07\xa9\xb0\x24\x08\xb3\x5f\xcb\xab\x02\xd6\x4a\x0f\x0b\x0b\xe5\x62\xb7\x79\x1e\x75\x63\x24\xbb\x18\x48\x1b\x78\xbf\xea\xd4\xd4\xb3\x30\x44\xa3\x49\x1c\xc1\x7f\xc7\xf9\xb3\x45\xe5\xa9\x50\xd5\x94\x34\x55\x4d\x55\x7e\x77\xbb\x67\xe3\x88\xc8\x8e\x5d\xcd\x0e\xbe\x7b\x45\x57\x12\x2e\x46\xbd\xac\x72\x60\xd7\x42\x7b\xfc\x4f\xfe\xf3\x59\xdf\x35\xf1\x7f\x4d\xb5\x46\xa8\x86\x06\x94\xcb\x19\xe7\xeb\x7d\x47\x22\xf0\xca\x84\xb8\x12\x67\x3d\x7d\x05\x8f\x22\x52\x35\x97\x95\x7f\xd3\xc2\x91\xce\xc4\xa8\xb5\x98\xf5\xc5\xf9\xfd\xd4\xc6\x83\x6d\xee\x48\xb6\x9c\x2c\xf1\x71\x65\xeb\x86\x36\x8e\xa5\x3d\x11\x06\xee\x5e\x65\x42\x54\xa7\xc5\xf9\x26\xf5\xec\x7e\x66\x92\x25\x87\x91\x84\xc7\x75\x52\xed\x31\xf4\xd5\x89\x2a\xa5\xca\xf4\xd9\x22\x2a\x5a\x54\x8e\x53\x3d\x87\x8b\xae\xe7\x50\x6a\x5d\x36\xe9\xa5\x99\x97\x71\xc2\x41\x07\x48\x20\x5f\xd7\xca\xd3\x0b\x0b\xed\xdc\x14\x4a\x84\x12\xe5\x12\x98\x8c\xeb\x1a\x5b\xb3\xa5\xd3\x00\xab\x08\x87\xd6\x42\x9a\x44\x13\xda\x0a\x3d\x46\x03\x11\x0c\xc0\xd3\x6e\x0c\xf0\x06\x97\x2b\x0c\x75\x2d\xc7\xa6\xfb\xa3\x26\x45\x28\xd3\xef\xa7\x59\x4f\xf3\xad\x1f\xa5\xe9\xe2\x6b\x75\x40\x86\xe9\xa8\x1b\x25\x04\x34\xda\xe6\x17\xca\x3a\x32\xee\x02\xa3\xa9\x44\x3c\x95\x8d\x58\xd9\xa1\xda\x88\xab\xca\x7c\xcc\x5a\xfe\xaa\xc7\xea\xb8\x5a\x7b\xc7\x91\xcc\x61\x5b\xf1\xcf\x1f\x51\x9a\x49\xc8\x66\x23\xac\xe4\x72\x8c\x94\xa7\xf5\x00\x94\xdf\x25\x8a\xfb\x2a\x3c\xb9\x15\x28\x02\x8c\x1f\xd0\xa0\x73\xa4\x86\xb7\x43\x42\xeb\x35\xbc\x9d\xf3\x3a\x0f\x48\x1a\xe7\x5f\x63\x62\x31\xe3\x7f\x88\x83\x01\x9e\xdf\xff\x51\x03\x52\xec\x7f\xa1\x9d\x91\x04\x97\x73\x26\x2f\x04\x1a\x08\xb5\xd9\x34\xec\xd9\xb3\xb7\x3d\xb2\xa3\x94\x91\x82\xd8\x0e\xa8\x63\xf2\x75\x03\xbb\x57\x19\x44\xe4\x61\x16\x75\x2d\x26\x56\x92\xc9\x8a\xbf\xfe\xfc\x54\x57\xda\xa3\x22\xe2\xfa\xa4\xa0\xb9\x34\xb4\xab\x41\xdb\xff\x25\xe2\x44\x77\x73\xd5\xd4\xb7\xff\x40\x54\x3e\x46\xff\x1f\xb5\x8b\xbf\xaf\xe5\x38\x7f\x65\xcd\x07\xc2\x4f\x75\xe8\xd8\x75\x4c\xb4\x5f\xfa\x3a\xa6\xf3\xf6\xe3\x9d\xf2\xa4\xc5\xd4\xde\xc4\xe8\xba\x2e\x6e\xcf\x4d\x7a\x46\xcb\xd7\x3c\x8a\x54\x2f\xa7\xd8\x31\x6f\xb0\x52\x17\xe9\x08\x47\xd8\xc2\x31\x01\x0a\x09\x88\x74\x60\xa0\xef\x51\x12\x18\xae\xc8\x03\x48\x95\x52\xbb\x40\xf1\xcc\x1a\x25\x9a\x31\xd3\x1f\xc3\xd3\x62\xf9\x7c\xb2\xab\x48\x3c\x3c\x40\xc1\x0d\xca\xd1\x8b\xb4\x4e\x36\x1e\xec\xf8\x14\xf3\x6c\xa7\x3c\x95\x59\x5b\x87\x94\xaa\x91\x36\xda\xe0\xc4\x37\xce\xfb\x9b\x88\x71\xb0\xda\xb6\x74\x54\x8c\xb3\xad\xd3\xda\xbd\x7b\xe3\x14\xb5\x16\xbb\xd6\xfc\x32\x46\x17\x72\x3f\xef\x60\xcf\x74\x1e\x77\x08\xbc\x5e\x62\xf3\x9e\x59\xe5\x1a\x13\x8a\x45\xd7\x60\x57\xf9\x46\x69\x5c\xd9\x83\xa5\x97\xca\x40\x42\x5f\x69\x3a\xae\x99\xf0\x8e\xab\x80\x36\x99\xc4\x71\xd4\x07\x25\x0e\x8e\xe8\x4b\x4a\x26\xf9\x92\x3b\x19\xc3\x38\x1d\x0c\x6c\x6f\xc6\x87\x55\x30\x50\xb2\x0e\x2b\x4d\xa5\x3e\xfa\x0e\xd3\x49\xdc\x7b\x80\x26\xd8\xf1\xfc\x1e\xd8\xc5\x3d\x1c\xdb\x3b\xaa\xb6\xa2\xe3\xe8\x9b\x81\x86\x6d\x4c\x75\x2c\x44\x9d\x0d\x98\x8d\x33\x53\x5d\x83\x2a\x67\x4e\xc8\x30\x7c\xc0\x3c\xb2\x03\xd3\x52\x9e\x31\x6d\x39\xf1\x92\x55\x7f\xdf\x84\x08\x83\x1f\xf6\xcd\x33\xbc\x44\xb1\x16\xde\xa0\xb5\x27\x42\xb4\xaa\x18\x71\x02\x31\x21\x0c\x13\xeb\x8d\xe3\xcf\x3e\x9c\x7a\x74\x04\x57\xec\x9c\x5e\x91\x9b\x65\xa6\x3b\x02\x86\xe3\x52\xa0\x75\x1d\x3f\x9c\x6a\xfc\x64\xa3\x6a\x60\x9a\xd9\x96\x92\x94\x3a\xa1\xea\x87\x27\x54\x4d\xdf\x26\xf9\x24\x8b\x92\xc1\x9c\x12\x66\xf9\x43\xf8\xec\x95\x3a\xac\x63\xad\x70\x85\x8f\x93\x3a\x6c\x39\x5a\x89\xf2\x56\x4d\x3c\xa3\xe1\x89\x9c\xd8\x14\x61\x27\xd5\x3a\x76\xab\x56\x71\x21\x7a\x99\xd8\xe4\x43\xac\x3a\x8c\xf7\xd5\xc0\x8f\xfd\xd5\x06\x62\x88\xc5\x76\xdf\xae\x80\x89\x4e\x72\x9c\xa7\x60\xfc\xf9\xa6\xf6\x33\xcf\xb6\x63\x33\x51\x4c\x1b\xae\xdd\xb5\x1c\x57\x69\x77\xd5\xef\x34\x2c\xf2\x87\xe8\x2f\x91\xc4\xb8\x8a\x0e\x4f\xa4\x63\x21\x59\xea\xb4\x45\xdd\x89\xc5\xba\xeb\x98\xf3\x43\x2a\x5f\x7a\x4d\xdb\xbb\x33\x1a\x1e\x73\x98\x16\x80\x92\x9f\x12\xed\xb6\x9b\x8a\x08\x6b\xb6\xf3\x64\x2d\xa6\x2d\xac\x16\x4d\x7f\x47\xf1\x23\xbc\xa3\x21\x1c\xa6\xdb\x8d\x85\x74\x03\x13\xcc\xc6\x82\x6f\xa6\x9f\x71\xbb\x83\x92\x0d\x85\x89\x92\x91\x4d\x8a\x1d\x1e\xfe\x03\x16\x14\x05\x8b\xd8\x84\x91\x10\xdf\xae\x34\xb6\x82\x97\xf0\x99\xad\xdb\x81\x52\x3b\x3f\xa3\x2b\x4f\x67\x1a\xa8\xad\xf7\xb6\x33\x1b\x4f\xc2\xc2\x30\x20\xae\x49\x6d\xa8\x71\x39\xa4\xa9\x93\x42\x45\x6e\xa7\xd5\x51\xe4\xa8\x3f\xd3\xf9\xc9\x8d\x9a\x87\xfb\x6c\xbb\x18\x66\xd1\x98\x33\xf5\x70\x04\xaf\xaa\xf1\xbf\x4f\x01\x98\x6c\xf2\x9d\x2e\x13\xd9\xa7\x4a\x21\xfc\x34\x94\x50\x77\xd0\x49\x08\xd8\xc3\x93\x1d\xcf\x3a\x72\x57\x85\x6d\xff\xf0\x9f\xfc\xe3\x96\x06\x54\x79\x68\xca\x79\xe5\x9a\xf5\xd3\xac\x6f\x23\x32\x44\x33\x1e\x32\x71\x1a\x6b\x07\x85\x45\x34\xb8\xc2\xab\xbb\xd4\x28\xae\x1f\x47\xc9\x52\xae\x55\xd6\x00\x5d\x96\xca\x85\x77\x17\x86\xa9\x0d\x87\x39\x57\x71\x60\xe6\xc6\x15\x51\x85\xa9\xca\x06\x04\x9b\x92\x63\x7b\x17\x4b\x97\x86\xe6\x0b\xc6\xeb\x23\x6d\xc9\x3e\xd2\x49\x93\xc9\xa8\xcb\x6d\xfb\xb0\xda\xff\x56\x61\xe1\xff\xed\xf4\x09\x05\x3d\xea\x5b\x5a\xe8\x2d\x9f\xbe\xff\x50\xb3\xe8\x7e\x18\x3c\xe9\x13\xde\xc4\xb9\x96\x32\x64\xdb\x55\xb3\x61\xb3\x11\xa7\x9f\x52\x34\xe7\x6f\x28\x22\xa0\xff\x1a\xd4\xcf\xc8\x92\xde\x56\xe5\xa0\x9e\x1d\xa7\x79\x54\x6c\xc3\x59\xee\x52\xa2\x3a\x61\xf7\xbc\xf8\xbb\xdb\xe0\x5b\x48\x1d\xa7\x7c\x62\x9c\x3d\x6f\x2a\x12\xe5\x9b\x53\xbf\x87\xc9\xc1\xcf\xcb\x43\x79\x9b\x52\x5a\x67\x9e\x4f\xbe\x81\x2d\xc0\x8f\xbd\x1d\x28\x75\xa0\x8b\x53\xa5\x0e\x74\x51\x51\x0c\xbd\xad\x1e\x7f\x68\x92\x5e\x5c\xae\x9c\xf9\xfd\x3e\x87\xf3\xa2\x93\x2b\xbc\x4b\x4f\x8f\xd4\xfa\x99\x5a\x4b\xc5\xde\xc5\xb6\xc9\x5b\x1e\x45\x74\x2b\xf0\x2a\x98\xb7\xd4\x24\x85\xe9\x68\x34\x49\xa2\x62\xf5\x81\x8a\xe7\xeb\x84\x10\xff\x7b\xf8\x72\x70\x05\x91\xc8\xc3\xde\x64\x57\x0e\xce\xee\x25\xad\x6f\xc6\x85\x04\x45\x99\xef\xb9\xf4\x4b\xf3\xce\xdf\xa5\x2c\xdc\x24\xe1\x92\x6e\xcb\xb5\xc4\x83\xc0\x50\x34\x0f\x1e\xf6\x3e\x4b\x6e\x1f\xf2\xb0\xba\x73\x14\x36\x4b\xb6\x9f\x96\x16\x7a\x8f\xb7\xad\xb9\xb8\xe3\x1f\x7c\x1e\x56\x04\xfe\xcf\x3d\x4a\x83\x8b\xad\x6e\x39\xce\xc2\x87\x29\x29\x80\x29\x7f\x4f\x07\x84\xb7\x31\x55\xd8\x6e\x8f\x00\xa3\x2a\xa9\x9a\x26\x45\x8f\x91\x79\xd5\xd9\x13\x1c\xa5\x1f\xd0\xcf\xe0\x00\x86\x74\x8e\xd4\xfa\xea\x74\xb2\xa4\xb5\x19\xf5\x85\xd5\xd0\x8b\x98\xaa\x0e\x21\x8f\x63\x2f\x6c\x1c\x17\x26\x26\xde\xd5\x7d\xc0\x3b\x6e\x5c\x0c\x3e\xab\x3a\x1c\xc7\x59\x3a\xc8\xcc\x68\x14\x25\x83\x5c\x75\x3f\x7d\xa8\x62\xa9\x0f\x95\x1e\x75\x36\x19\x0c\xca\x25\x47\x53\x2b\x1d\x8d\x2a\x75\x72\x5b\x57\x06\xcf\xa9\x7a\xd5\xc8\xc6\xdd\x74\x22\xed\xd5\x5c\xf3\x9d\xfa\xaa\xf1\xbb\xc1\xc3\xba\xef\x72\x56\x1f\x98\x1e\xf7\xf3\xc7\x58\x39\x28\x3a\xbf\xab\xc0\x6c\x37\x2a\xc7\xfa\x60\x62\x1f\xf0\x14\xa6\x48\x37\xc2\x6f\x46\xab\x16\x92\x7f\x6f\xd3\xcf\x23\xfd\x30\x83\xe4\x1f\x7f\x19\x9d\xf6\x48\xe0\x7c\xa8\x94\xb3\x8e\xea\xda\xeb\x69\xf8\x0a\x92\x7b\x7f\xd0\xe1\xa1\xba\x33\x3e\xd1\x00\xe7\x53\x50\x74\x8a\x11\xf4\x64\x53\x71\x0e\xe5\xe4\x57\x26\x08\x32\x5d\x61\x50\x71\xb9\x3d\xa1\xc6\x08\x71\x62\xaf\xa5\x90\xd5\x1f\x2b\x5e\xfc\x8f\x1b\x16\xcf\x62\x3b\xb3\x79\x91\x66\x14\x2b\xb4\x7c\xc1\x86\x37\x24\xdf\xb8\xe6\x86\x7e\x6c\x06\x3c\xd5\x4a\xa0\x7e\x1f\xa7\xd0\xb6\x75\xbc\x51\xdd\x50\x76\xcf\x14\x05\x99\xea\x65\x3b\xa7\x38\xde\x6f\x4f\x3d\xad\xc2\x46\xe0\xa1\xcf\x5b\xd7\x7c\x77\x3b\xc2\x0b\xd8\xbc\x13\x81\xa6\x5e\xe8\x4d\x42\xdb\x23\x1d\x2f\xfc\xf6\xbb\x30\x9c\x30\xfb\x17\x95\x0e\x18\x73\xbc\xf2\x5f\x29\xfd\xd9\x3f\xd5\x4c\x3a\x6f\x69\x7b\x31\xc1\x17\x63\x7d\xbc\xa7\x5a\x85\x98\x06\x09\xf9\xaf\x77\xa6\xca\xa9\x41\x07\x81\x84\x27\x34\x40\x42\x3a\xa1\x82\xf3\x3c\x9f\x90\xc9\x72\x08\xb6\x73\x53\x1f\x96\x9c\x53\x72\x07\xc8\xe2\xa1\x43\x0b\xbe\x3a\x2a\x9b\x4a\x15\xf4\x39\x5e\x9a\x3e\x3a\x1b\x9b\x6c\x69\xc5\x20\xb9\x80\xa8\xfa\xfb\xf4\x54\x7c\x5d\x6b\x39\xa3\xbe\x42\xf4\xb3\x91\xc3\xd1\xf2\xe5\x46\x70\x65\xf1\xf5\xd4\xe3\x6e\x56\xd2\xa4\xda\xc2\x5a\x69\x35\xf2\x7a\xc2\x38\x3a\xf8\x5a\xa1\x8b\x32\x3b\x8e\x4d\x48\xb9\x06\x1f\x7c\xc3\x6e\xf3\x75\xcd\x39\x7c\x7e\xa1\x3d\xb4\x26\x2e\x86\xe5\x73\xa2\xd1\x58\x28\x2b\x35\x7f\x65\x93\x80\xc2\x52\x82\xec\xa5\x84\xc8\xdf\xc3\xf4\xf1\x8d\x0a\x10\x0b\x9b\x00\x32\xcd\x14\x08\x08\xd5\xe0\xc2\x5d\x86\x31\x17\x72\x84\x96\x63\x91\xbb\xec\xb2\x8b\xaf\x4c\x4c\x1c\xf5\x9d\xa2\x80\x84\x6b\x6a\x15\x5c\xa9\xe5\xd8\x5f\x5c\x2c\xff\x2b\x80\x95\x8a\x02\x0c\x86\xf3\x7f\x0b\x2a\x03\xdd\xd0\xc2\x3e\x8c\x3c\xa6\x09\x5b\xe7\xd2\xd4\x43\x66\x2e\xb9\x1a\x7b\x77\x92\x51\x4a\xc8\xf5\x04\xfd\x24\xf0\x0e\xe4\x4f\x5c\x63\x60\xaf\xdc\x53\x85\xcb\x90\xa3\x86\x81\x1e\x00\xbe\xd6\xbd\xb5\xfd\xbe\xcd\x1e\x25\x22\x32\x1d\xd0\x20\xa4\xbf\x4e\xbb\x59\x94\x2a\x7c\x3d\xf2\xed\x40\xe1\x93\x2e\x81\x21\x1a\x71\xff\xf5\xa9\x22\x70\xe1\x0e\x17\x70\xb0\x31\x39\x15\x67\x00\x51\x6c\xe0\xcf\xc0\x9b\xc0\x21\xc9\x02\xa9\x30\xc4\xa0\x85\x46\x00\x77\x06\x6c\xde\x42\x6f\xa0\x55\x73\x8b\x22\xca\x4b\xa3\xe7\x77\x20\x56\x94\x6c\xc7\x3a\x55\xce\x62\x3b\x4f\xd9\xe5\x80\x65\xbc\x14\x28\x33\x79\xa9\x56\xd6\xd8\xb3\xa7\x9d\x2f\xd9\x62\x73\x53\x1e\xaa\xbe\x42\x73\xe5\x7d\x9a\x95\xa8\x18\xf6\x32\xbb\x42\x3f\x00\x8c\xfe\x21\x0c\x19\xdf\x68\x3c\xee\xc8\x66\x51\x68\x92\xfc\x91\x96\xd3\x0b\xdd\xd2\x29\x77\x9d\x64\x08\x11\x15\x61\xac\x36\x2a\x24\xe9\x34\xa2\x8e\x7f\xa2\x1c\x51\x4e\x3e\x4c\x95\x68\xc0\x65\xdd\x9e\x78\x7e\x13\xaf\x5f\xb9\xe4\xdc\xbf\x94\xd3\x28\xd9\x0b\xb5\xad\xb9\xab\x19\xce\xd5\x77\x54\x65\x28\x32\x90\x2a\xc6\x3a\x65\x91\x0c\x18\xee\xdf\xa3\x55\x24\xa8\x40\xfa\x4d\xa1\x10\xa2\x71\x40\xf6\x9d\x59\x83\x91\x16\xff\x01\xbf\xa8\xf0\x15\xb5\x1c\x93\xeb\xe1\xe0\x71\xd5\x78\x9d\x4f\x62\x0a\x9e\xbd\xe4\x2c\x7c\x79\xa1\xd7\x68\xe8\x1a\xa5\xaa\x04\x55\x00\x70\x48\x9c\x50\x9c\x29\x28\x63\x8b\xc2\xd5\x93\x4a\xb3\xb2\x67\xb3\x78\xd5\x6d\x4c\x49\x3e\x7b\xbe\x87\x6f\xd5\x7e\x6a\xff\x0b\x74\x34\xe0\x90\x77\xcc\x24\x9e\xa5\x64\xea\x77\x72\x1e\xc5\xab\xc4\x86\x27\x19\x09\x95\x23\x43\xb7\x03\x92\x01\xc7\x2b\xc4\x32\x07\xa3\x82\x88\x69\x18\xe7\x1c\x78\x56\x7c\x26\x3a\xc2\xbe\xbd\x4a\x5f\xc0\xd7\x4a\x30\x21\x36\x2b\xf9\x24\x2a\xc0\x2d\xca\x1d\x4d\x10\x49\xae\x20\x6d\xf9\x06\xdf\xd8\x84\x46\xa0\x01\x91\x8e\x28\xe1\x0f\x8a\x92\x7e\x6c\x46\x23\x53\xa4\x19\x73\x52\x38\x1f\xcd\xb5\x9f\xdd\x54\xea\xa2\x87\x34\x45\xc3\x1f\x35\xb0\x02\x2d\xb6\xc7\x69\x1c\x11\xcb\xf7\x8c\xa2\xfc\x17\x46\x29\x29\x1f\xfb\x93\x71\xa6\xa3\xc1\x97\x4b\xab\x93\x96\x17\x3b\xfa\x01\x79\x84\x7c\x1d\x88\x13\x4d\x59\xfc\x48\x84\x6a\x9d\x64\x70\xf9\x63\x08\xb4\x66\xf9\xc7\xb0\xc4\x1f\xec\xb8\x0e\x63\x9b\x2d\x0b\xf4\xe2\x6f\x53\x32\x98\xdf\xdf\x1e\x59\x93\x4f\x32\x4b\xae\x00\xcc\x1b\xaa\x89\xd2\xaf\x45\xbf\x2a\x08\x12\x6f\xa0\xcd\x8a\xc9\x6c\x85\xd4\xf4\xb7\xe9\x70\x40\x24\x76\x54\xf7\xdf\x1c\xf5\x34\x53\x76\xd2\xb5\x09\x99\x7f\x9c\x5b\xdc\x0b\xcc\x37\x0d\xc5\x83\xb6\x3d\x18\x46\x5e\x16\x0b\x81\xf1\x09\x45\x9e\x7f\xa2\x66\x46\xf7\xec\x69\x93\x9a\x3b\x06\x0f\x19\x34\x90\xf7\x60\xb9\x43\xc4\x15\x16\xef\x9c\xca\x9f\xc4\xcb\x29\x8c\xa8\x03\x4a\xbb\xd7\x39\xab\xa4\x69\x29\xd3\x89\xf0\xc6\xa5\x82\x7d\x9c\x76\x3c\x78\xca\x2f\xeb\xa8\x6b\x33\xa2\x6d\x02\x2e\x57\x36\xb3\x6a\x61\xa9\x77\x00\x51\xef\xe6\x2b\x93\x28\x5b\x05\x06\x4d\xc3\xc6\x60\x04\x19\x28\x20\x22\x79\x9b\x5f\xff\x8b\xed\x6f\xa4\xf9\x70\x62\x28\x89\x2e\x6f\xe9\xd3\xad\x3c\x33\x58\x0f\x37\x94\xd6\x5c\x94\xf4\xa2\x10\x3a\xc3\x8a\x01\x09\x1f\xe5\x6b\xe7\x90\x8c\x4c\x94\x14\x26\x4a\xd8\xbb\xc0\x49\x7a\x2b\x50\x94\x02\xdc\x45\x28\xa9\xda\xcd\xc5\x4f\x12\xfd\x58\x6d\x29\x4c\x07\x12\xcb\x7c\xad\x3a\xbd\x0d\xf5\x10\x86\x96\xb4\xcb\x17\x9c\x0d\xf0\xdd\xf1\xdc\x75\x8b\x9a\xf5\x96\x4e\x85\x00\xe6\x31\xe5\x18\x12\x08\x67\xd6\xa3\x27\x8e\x4c\x3d\xdd\xf6\x11\x92\xb3\x77\xe1\x97\x0f\xc5\x6a\x50\xa5\x03\xbb\x16\xda\x7d\x13\xda\x38\xea\x17\x2d\x45\x02\x73\x56\x2b\x61\xab\xb3\x28\x8d\xf3\xed\xbe\x46\x7a\x52\xb5\x61\xfd\xff\xd1\xd5\x0f\xbf\x8f\x51\xe9\x68\xac\xb8\xa4\x32\xbc\xf7\xa6\xaa\x3a\xfe\x99\x8e\x02\x87\xb7\x3b\x5e\xc8\x38\x9f\x64\xcb\x36\x8a\xe3\x72\xa0\x66\x7d\xf4\x76\x03\xa6\xcc\x29\xef\x3a\x6d\xcd\xd7\x29\xc4\x44\x77\xc4\x56\x47\xc3\xf0\xb7\x50\x28\xda\xec\xe2\x13\xee\x3c\xb3\xc9\xa0\x18\x5a\xdf\xdd\xe0\xdc\x6e\xe7\x13\x9c\x51\x35\xf5\x5e\x66\xcd\x68\xce\x7b\x88\xf7\xb9\x6b\x0d\x71\xdd\x29\xb8\x6d\x80\xb6\x5d\xa7\xb9\xe0\x7f\x50\x15\xd9\x23\xba\x13\x26\x34\x99\x64\xa2\x19\xfb\xa4\x40\x6f\x27\x9b\xda\xd9\xbb\xc6\xfc\xe3\x19\x0d\x98\x56\x7d\x28\xdb\xa8\xd0\x07\x17\xe5\x91\x1a\x41\xc7\xc2\xc2\xbe\x76\xd7\xd0\x38\xcf\x78\x50\x24\x22\x76\x1c\x25\xe8\x38\xe2\x24\xa0\xea\xe0\x1a\xdb\x22\x8b\xec\x6c\xcb\xf9\x8a\x87\x68\xfd\xf1\xb5\xaa\x18\xbd\x3b\xd5\x00\x43\xbf\x92\x4c\x6c\x14\xe9\xe2\x47\xf0\xde\xf9\xa6\xa9\x5a\xdf\xcd\x08\x9f\xa6\x31\x13\x0c\xa8\x13\x86\xbd\x7a\xe3\xfe\x62\x7b\x55\x18\x21\x59\xb3\x64\xea\x33\xee\xaf\xd5\x36\xc3\xcb\x2f\x53\x6b\x40\x6c\x0b\xf1\x3f\x85\x7a\x53\x49\xa4\x5f\xa8\xa1\x65\x9e\x5f\xa0\xa2\x73\xd4\xb3\x89\x53\x30\xc4\x19\xc7\xdd\x0f\x7c\xd3\xd0\x45\xb3\xd8\xee\xa6\xa3\xae\xcd\x60\x1b\x61\x72\xff\xbb\xa9\xf7\x76\xb9\x08\x81\x15\x7f\x4d\x71\x52\xd9\x3c\x64\xa8\xc9\x82\xa3\x1c\x6e\x39\xd2\x93\xd3\x4d\x80\xa9\x38\x22\xc8\x08\x96\x34\x5c\x46\x10\x55\xf3\x75\x13\xbf\x68\xd7\x64\x5d\x66\xfd\x12\xee\x68\x0f\xd0\x63\xcb\x2f\x9e\xa8\xb4\x6c\x8f\x6d\x61\x67\xb5\x8e\xcf\x11\x8c\x02\x3c\xeb\x33\x4a\x6d\xf9\x2a\xbe\x00\x59\xd0\x39\x77\xe8\x8f\x6d\x36\xc9\xed\x8c\xc2\x92\x01\x97\x81\x84\xd0\xe5\x8a\x38\xee\xa3\x2a\x9d\xd3\x2d\x72\xc5\x3a\xbb\xae\xfb\x39\xd6\x55\x72\x3d\x4b\x89\x2b\x69\xe6\xd3\x64\x7a\x15\x59\xd4\x69\x5d\xc6\x39\x5d\x49\x90\x59\x33\x81\xf7\x25\x45\x31\x95\xd7\xb9\xae\x3b\xa8\x99\x5d\x91\x75\xaf\x82\xbf\x53\xad\x09\x3c\xf3\x8c\x74\x36\xcd\x94\xdb\x44\x62\x04\xdf\x6a\x73\x5c\xc3\xe8\xde\x08\x36\x69\x46\xfc\x6a\xfb\xf9\x05\xf2\x82\x91\x7a\x38\xa9\x91\xc9\x27\x83\x87\xdc\xf1\x16\xc2\x09\x76\x7c\x35\x0b\xa2\x65\x75\x49\xd7\xa6\xee\x35\x69\xc7\x64\x76\x39\x8d\x97\x25\x73\x8c\x5a\xe3\x39\x8c\x2d\xdf\x38\x77\x28\x49\xbd\x67\x83\x3c\x2a\xba\x7c\xf8\x7a\x4d\xe1\xcb\xad\x09\x87\x50\xd0\x65\x4c\x21\xe5\x8c\xa5\x93\x81\xde\x42\x67\x49\xc4\x37\x52\x7d\x28\x71\x94\x44\x61\xae\x2b\x44\x8a\x4b\xfc\x3c\x92\xf5\x70\x51\x33\xd3\x8b\xa4\xee\x51\x4e\x45\xa5\xf7\x0f\x36\xfb\xdf\xd1\x90\xe0\x88\xfa\x6e\xe0\x0b\xac\x5b\xc1\x16\x79\x55\x43\xa8\x52\xce\xde\x3e\xc7\x75\xbf\x23\x8a\xd1\xe0\xba\x42\xa7\x9c\x56\xb4\x4f\x4b\x49\xba\x02\xae\x04\x84\x1b\xdf\xa4\xbf\x43\xcd\x08\x0b\x1a\xd3\xb1\x75\x8d\xe2\x2d\x34\xc7\xfd\x47\x0a\xee\x50\xd0\x3a\x4c\xd6\x55\xaa\xcd\xb4\xf0\x78\x13\x2a\x93\xfa\xe5\xfd\xbb\xd9\x83\xc5\x72\x81\xb3\x83\xb3\xf6\x87\x53\x85\x7d\xb8\xe4\x3c\x9f\x22\x32\x89\x49\x46\x36\x99\xd1\x95\x3f\x25\x3e\x7f\x61\xea\xe1\xea\x75\xaa\x2d\x62\x61\x4a\x63\x46\x21\x0a\x2b\xa3\x42\x32\x7f\x8a\x7c\xb2\xe9\xcd\xf9\xc4\x10\x38\xa4\x50\xcf\xb9\x49\xa0\x01\x24\x39\x8f\xe8\x46\x83\x2d\x1d\xcd\xac\x5a\xcb\x1c\x3c\xbf\xd0\xb6\x07\x23\x25\x38\x0b\xac\xc0\x15\xc5\x34\x75\xc5\x61\xfe\xc6\x65\x64\x6b\x26\x08\x2b\xe0\x75\x61\xa8\xf8\xba\xe6\xb7\x53\x8d\x10\xf5\x13\xcc\x3c\x1e\x16\xf2\xcb\x70\x7f\x8e\x28\x55\x88\x6b\x8d\xcd\xb8\x5d\x13\x2e\xcd\x96\xab\x1c\xb3\xbb\x83\x7a\x54\x10\x1c\xa3\x8e\x8f\xe8\xe2\x86\xe2\x6e\xd9\xb6\xa6\x88\xf3\x86\x76\x84\x50\xe8\x39\xb1\x8a\xaa\xdc\x7b\x54\x51\x73\xc4\xd1\x92\x8d\x57\x1f\x2e\x17\x0c\xbe\xfe\xba\x6e\x43\x62\xe4\x31\xdf\x28\x0a\xe1\xfb\x00\x2e\xa0\x4b\x61\x3b\x20\x38\xfc\x79\x2d\xf6\x7f\x4a\xab\x35\xa8\x1e\xab\x5b\x53\xc5\x62\xfa\x16\xd2\x24\xd8\x20\x57\x91\xe5\xc0\x77\xdd\x55\x5b\xa9\x18\x46\x59\x6f\x9b\x47\x2a\x22\x0b\xca\x04\x22\x54\x27\x77\x64\x22\xca\x55\xa2\x3d\xac\xaa\x7f\x3e\x5d\xaf\x1a\xf0\xd3\x74\x04\x6d\x5e\x16\x41\x9b\x7a\xb6\x1f\xd4\x87\xc4\xd9\xfe\x34\x6e\x86\x70\x18\xd9\x3e\xc5\x1c\xa2\x2e\xe8\x23\x16\x3e\xf8\x70\x6e\xbe\x57\x5b\x2d\xfb\x5f\x28\x9d\xc8\x34\x19\xc4\xab\x64\x9b\x51\x99\x3b\xaa\xb8\x4e\x8f\xaa\xc6\xa7\x61\x9a\x2e\x29\x52\x1b\x26\x27\x96\x02\x60\x43\x11\x7f\x5f\x3b\xf9\xc2\xf2\x17\x90\xa7\x55\xca\x2a\xee\xc6\x2d\xf3\xe5\x34\x0e\xab\xda\x90\x27\x95\xa4\x43\xbd\x7e\x22\xaf\x3e\x9a\x24\xd1\x0c\x61\x44\xa5\x08\xd5\x72\x7a\xec\x2c\x25\x22\x25\x98\x27\x95\x45\xa7\x6c\x28\x31\xb1\x95\x2b\x07\x27\x21\x0a\xa8\x7c\xdd\xb0\x2b\xda\xa6\x37\x89\x91\xb6\x47\xd2\xa3\xd5\xf1\x89\xf4\x1b\x64\xf3\x04\x04\xd1\x20\xe4\x36\x48\xe3\x1e\x87\xdf\x70\x28\x36\xf0\x74\x7c\x33\xd5\xf5\x8f\x57\x26\xa4\xbc\x71\xc0\x29\xae\xd3\x9a\x42\x12\xec\x1c\x0d\x0b\x5f\x4f\x5b\x2f\xfa\x68\x56\x03\x05\x0b\x9b\xf4\x72\x9c\xf9\x4e\xdd\x72\x7e\xbf\xa3\xb5\xff\xd4\xb7\x76\x98\xda\x57\x26\x51\x61\x24\x5d\x2c\xe4\x0b\x4a\xac\x6e\xbd\x01\x87\xbd\xd8\x36\xe3\xb1\x8d\x29\x15\xd7\x72\x1c\x2b\x17\x55\xc2\xe0\xa2\x9b\xef\x38\x5d\xb1\x99\xed\xcd\xfa\xf8\x8c\x17\x13\x52\x82\x87\x14\xa8\x9a\xf1\xb8\xb0\xbf\x75\x29\xe6\xe7\x17\xda\xc3\x34\xcb\xf1\x93\x18\x4d\x9c\x6c\x7c\xed\xde\x69\x9c\x66\x45\x3f\x8d\x23\x2c\x32\xd8\x11\xf6\x58\xf8\x66\x73\xd7\xe2\x57\xe7\xdb\xf3\xfb\x29\x47\x88\x30\x08\xf8\x1d\x61\xc3\x28\xb7\x08\xe3\x85\x54\x17\xd0\x30\xed\x76\x57\x67\x10\x55\x21\xc0\xd8\xd2\x69\xa0\x3b\x47\xfd\xea\x92\x06\xb2\x99\xd8\x52\xb8\x0a\x5f\xe2\x03\xb2\x29\x70\xe3\x2f\xd1\x6f\xe1\xfa\x17\xea\x04\xe7\xc8\x15\x36\xed\x6f\x68\x9c\xdd\x41\xe8\x56\xe3\x45\x95\x29\x1d\x45\x89\xcd\x4c\x0c\xd7\x93\x89\x89\x82\x0a\x4b\x51\x43\x4a\xa4\x0c\xdf\xb3\x1e\x2b\xf6\x54\xa8\x11\x60\x58\xef\x57\x3a\xe9\x1b\x71\x6c\x93\xf1\x8c\x4f\xe8\xa0\xda\x05\x8f\xe0\x0a\x19\x1a\x36\xd6\x1e\xa4\xbf\x62\x46\x63\x41\x75\xb9\x9e\x4f\xd7\x09\xf3\x89\x2b\x6b\x8c\x6c\x19\x90\xe4\xc3\x68\xdc\x52\xd9\xfd\x43\xaa\x84\x7c\x28\xd8\x2c\x93\xe7\x74\xa9\x0e\x8e\x4d\x92\x4b\x65\x94\x19\x3a\x34\xe8\xf2\xbc\xaa\x6d\xe5\xc3\x34\xb3\x71\x94\xd8\x4a\x32\xa9\x1c\x64\xd9\x7d\xf5\x64\xc5\x73\x6d\x12\x50\x8f\x5e\x45\xee\x57\x9c\xfb\xf2\x43\xe2\xf5\xd7\x41\x4b\x99\x09\x97\xe4\xcd\x85\x0b\xc8\x27\xa6\x5f\xf7\x40\xa5\xd4\xf4\x56\xcc\x2a\xb8\x46\x84\xab\x45\x81\x7b\xce\xc0\xef\x12\x27\xba\x91\x24\x2c\x4d\x72\x4f\x32\xc1\x89\xce\xa0\x92\xf5\xf4\x4e\x70\x6a\x96\x2c\xd3\x8e\xc2\xd0\x5e\xd4\xa5\xff\x8b\x4d\x4d\x41\xd6\x64\xf1\x2a\x9d\x4a\xe4\xd5\x7d\xee\x49\x72\x22\x90\xaf\x7c\x94\xaa\x38\x62\x57\x7c\x35\x79\x68\x32\x93\xe7\x23\x9b\x70\x82\xa7\x49\xdf\x69\xa7\xa6\x1d\x1e\x44\xcc\x02\x8b\xc4\xcc\xa5\xa9\x62\xeb\xb9\x89\xed\x81\x8a\xf0\x5c\xe7\x49\xb5\xd5\x12\x33\xb0\xe5\xaf\x90\xfe\x37\xbe\xf8\x81\x8e\xe2\xc0\xf9\x6d\xda\x71\xb0\x3f\x77\x31\xae\x2c\x68\x07\xc4\x07\xfc\x3c\xd4\x7a\xdc\x4a\x76\x6d\x70\x47\x14\xa8\x68\x76\x4d\x75\x9c\xdf\xc7\xac\xa0\xa2\xc3\x12\x92\x38\xab\x44\x4d\x56\x84\xf6\x3d\x2b\x3d\xb7\x20\x31\x94\x5a\xe1\x81\x26\x49\x18\x5b\x93\xb5\xd4\x63\x63\xa0\x24\xc7\xae\xc4\x9c\x48\xe5\x7b\x40\x4e\x06\xf2\x64\xd0\x73\x70\x94\xe7\xcf\x0b\x1b\xc4\x6d\x17\x20\x85\x26\x8f\x92\x74\x4e\x55\x63\x38\x43\x20\xe5\xba\x96\xeb\x19\xda\xde\xf1\xbe\x07\x53\xcb\x0a\x7f\xb5\xcf\xc8\x86\xe9\x88\x3a\x3a\xa2\x34\x79\x98\xbe\x54\x38\xdf\xbd\xe7\xf3\xaf\x03\x8f\x78\xfc\x08\x25\x2a\x00\x6f\x41\x1d\x80\x50\xe5\x7b\x74\xe8\x39\x26\x70\x07\xe7\xfe\x1d\x2c\x5d\x67\x00\x1d\x57\x79\x8b\x2a\x67\x42\x56\x43\xa3\xc5\xdf\x14\xa8\xb6\xce\x63\x53\x5f\xb4\x08\xd3\x6c\x9c\x66\xc6\x65\x56\x5c\x3a\xde\xeb\x3e\x5e\x08\x1e\xaf\x9e\x15\x5f\x6c\x3f\x3b\xeb\xe1\x18\x7f\x0e\x8e\x5a\x64\x38\x10\xec\x09\xd1\x7e\x19\x33\x30\x96\xaa\xa9\x2e\x95\xd8\x65\x9b\xcd\xa8\x82\xe7\x35\x55\x70\xd5\x72\x0a\x9f\xa8\x8d\x30\xce\x6c\xbf\x8c\x6b\x5c\xe7\xd6\x47\xaa\xd9\xf6\x23\x15\x75\x59\xd3\x9f\x21\x40\x3a\xfc\xaa\xa3\x34\x89\xf8\x3e\x96\x1b\x14\xd8\xfa\x66\x17\x66\xff\x0b\xed\xb4\xdf\xcf\x2d\xc4\xcd\xb8\x39\x83\x5e\x4c\x1a\x35\x04\x13\x13\x32\xe7\x10\x82\xe5\x53\xaa\xb3\xe6\x94\x22\xeb\x4d\x8a\xcc\x78\xae\x5d\x46\x42\x22\xb1\x26\xb0\x48\x57\x58\x09\xcb\x5f\x9e\x53\xac\x19\xb0\xf0\x00\x8e\xfd\x39\x16\x9c\x13\xe9\x28\xe7\x08\x06\xfc\x1e\x8d\x1c\x56\xca\x4f\xa6\x1e\x86\x69\x0f\x9a\xc1\xc0\x66\xe0\x99\xd2\x02\xe8\xcf\x2f\x54\xc9\x54\xe9\xaf\x07\x36\xcb\x56\x47\x26\xe9\xd9\xcc\x35\x87\x3a\x15\x2d\x8d\x00\xde\xec\x5a\x93\x7a\xaf\x89\x61\x62\x3d\xd3\x24\x63\x18\x45\xbf\x7e\xa7\xc2\x6b\x66\xb9\x05\x0b\x37\x02\x6c\xee\xee\xe0\x1b\x2f\x24\x3c\xe9\xf6\x26\x32\x70\x00\xa5\x9d\x51\x8d\x9d\x67\x1a\x85\xd7\xc1\x90\xe5\x1a\x47\x10\x57\xf0\x75\xed\xcc\xfe\xea\x7c\xb9\x5b\x71\x6c\x49\x36\x43\xf5\x02\x9d\xa8\xe4\xf6\x47\xa4\x0a\xd1\x52\x72\xeb\x2d\xc7\x9c\x7a\x36\xf0\x44\x31\xe3\xe1\x2a\xe9\xd5\x29\x11\x5d\xe6\x61\x82\xf3\xf9\x87\x5a\x45\xea\x47\xd8\xa7\xf0\xcb\xce\x4f\x35\x25\x7b\x21\xe9\x1d\xde\x68\x8a\xa7\x6a\x3a\x7d\xc2\x15\xbb\x90\xe2\x8c\x4c\xbc\x8d\x0c\xb6\x14\xe1\x7c\xe7\x03\x5a\xfd\xd0\xb1\xc4\xfc\xe3\xae\x96\xe9\x23\xa6\x5b\xb4\x86\xa4\x25\xfc\x71\x07\xb4\xcb\x8b\xa8\xbf\xca\xac\x2c\xc2\xd6\x73\x46\xf7\x85\x5c\x54\x34\xd8\xaf\xa9\x68\xaf\x6b\xb3\xcc\x68\xc5\xce\x6a\x3c\x24\x48\xa5\x6f\xd8\x15\x16\xc4\x74\xe2\xef\x4a\xd3\xa5\x09\xbd\x30\x4e\xf3\x62\xce\xe3\x40\x3e\x20\x7c\xb3\x13\xa9\x2d\x7f\x03\x65\xe5\x59\xd0\x67\xc2\x4e\x5d\xe6\x63\x47\x70\xd8\xce\xf8\xa7\x71\x9a\xf1\xb2\x45\xf8\xca\xb9\x46\xbe\x51\x04\x40\x05\x89\x23\x9b\x98\xba\xb1\x3d\x65\x82\x4b\x5d\xaf\x37\x29\x34\x98\xcc\x8c\x22\xec\x3e\xe6\x43\x53\xd0\x39\xcd\x8d\xd6\x8d\x27\x49\x41\x86\x0d\xc9\xb2\x6b\xb4\x4b\xf9\xba\xe6\xad\x1e\xd8\x35\xdf\xee\x93\x2a\x65\xcb\x63\xc1\x4e\x62\x2d\xf1\x4d\x2d\x6e\x99\xdf\xdf\xce\xd3\x30\xc2\x46\xe5\x94\x14\xd2\x50\x33\x58\x15\x70\x71\x98\xd5\x10\x13\x7a\xd5\x21\xca\x32\xd3\x8d\x7a\xaa\xa8\x8a\xde\x1a\xbe\x6e\xa4\xc0\x2f\xdd\xe9\x41\xe9\x15\xb2\xe3\xc5\x54\x2a\x81\x32\x11\x87\x2b\x32\x29\xb1\xf5\x99\x22\x39\x7c\x74\x91\xf8\x31\x7d\x0c\x8c\xa2\xc9\x68\xc6\x23\xf5\x00\x9a\xc4\xa4\x31\x02\x06\xff\x70\x55\x81\x0b\xfb\x26\x2c\xa8\xe4\x3d\xe7\x73\x78\x5b\xd7\x7c\xbe\xe6\xac\x16\xd3\x3a\x3e\xf5\x6d\xde\x4c\xa2\xc1\x04\xb1\x8e\x1a\x83\x54\x26\xf3\xd0\xb8\xee\x73\x14\xbb\x40\x7b\xac\xe8\xa4\xe6\x19\x7e\x7f\xa4\x81\x17\xf4\xb9\x76\x85\x4c\x14\x13\xf2\x11\x79\x65\x7c\xdd\x2c\x16\x92\x84\x36\x93\x2a\x9a\x83\x29\x78\x02\x05\x5d\xbb\x1a\x9b\x24\xca\x87\x2d\xcd\xa1\x1d\x68\x1c\x9e\x5f\xe2\x83\xcc\x24\x93\x58\x5c\x2d\xc4\x95\x6f\xa9\x18\xf3\xad\xcd\x81\xe3\xee\xdd\xed\xdd\xf3\x8f\x29\x3c\x24\x0b\xec\x72\xe3\xd9\xb4\xa5\xb4\xb0\x14\x2f\x1d\x03\x2f\x90\x3e\xdf\x06\xbf\x0f\x4f\xf3\x83\x40\x01\xc4\x1f\x5c\xf3\x89\x42\xe6\xbc\xc1\xcd\xe3\x6b\x9e\xab\xf9\x32\x25\x27\xb1\x51\xde\x54\x2e\xc4\x2d\xb5\x81\x18\xc6\xc6\x00\x98\x60\xeb\xe7\xa5\x0b\x17\x18\x39\x1c\xa9\x6f\xab\x72\xc4\x20\x4e\xbb\x26\xde\xee\x4b\x61\xc7\x35\x2d\x14\x72\x2f\xf0\x73\xf0\x33\x42\x43\xa9\xc0\x5c\x9f\x60\x24\xf8\x46\x4b\x0d\xaf\x37\x70\x51\x2d\xee\x6b\xc7\x51\x51\x70\x1e\x42\x32\x20\xf4\x21\x49\x81\x48\x44\x64\x93\xde\xc4\x15\x23\x11\xa3\xff\xcb\xc0\xc7\xeb\xff\xb2\x31\x1f\x5c\xda\x0a\x5e\xa4\x08\xe4\x1e\xe9\xf8\x5e\x43\xee\x4b\x83\x3f\x3a\xb7\xd6\x10\xe2\x14\xe9\x8a\x8d\x67\x94\x8e\xe4\x9b\xca\x2b\x06\xce\x52\x96\xb8\xc3\x68\x47\xe1\x92\x75\x7e\x0f\x90\x2e\x27\x34\x1d\x4a\x5d\x71\x72\xef\xae\x76\x66\x0b\x13\xe1\x3c\x70\x1c\x13\xaa\xe6\xfa\x84\x06\x97\x02\xae\x48\x6d\x02\x58\x9e\x67\xe0\x4a\xc3\x1b\x86\x01\x05\x6c\xe6\x90\x16\x7b\x30\xa1\xdd\xde\x12\xe9\xd0\x0b\x97\x2a\x8a\xd0\xb4\x7e\x90\x4f\x3c\xac\xa2\xfd\x4b\x28\x7e\xc8\x29\xed\x0d\xc3\x3b\x8a\x7d\xf7\x92\x7b\xf5\x61\x1a\x97\x3b\x3a\x9f\x51\x1b\xe3\x09\x06\xd3\x90\x89\x7a\xf6\xb1\x8e\x0a\x61\x3f\x6e\x58\x0f\xed\x5e\x3a\x8a\x12\xe9\x24\x82\x31\x3e\xa2\x4e\xda\x23\xbe\x9d\x31\xe3\xbe\x94\x3d\x7b\x7c\xc8\xe3\xb4\xe9\x4e\xaa\xfe\xf6\x2c\x5a\x36\x31\x17\x01\x61\x9d\x2e\x23\xd0\x69\xe2\x76\x54\xdd\x69\x97\x3f\x35\xb5\x10\x46\xcb\x11\x41\x4f\x66\xd4\xae\x05\x77\x3d\x8a\x1d\x97\xf5\x12\x3e\x35\xfd\x4c\xd5\x7a\x94\xa7\xc4\xe2\xde\xc5\xcf\xef\x70\xce\xf9\x6f\x3f\x06\x63\xc0\x21\x93\x96\x67\x58\xa3\xbd\x55\x29\x5e\x0a\x86\x46\x45\x59\xc7\x03\x2d\xb7\x72\x1d\xfb\x1b\xeb\x6d\x5d\xc1\xf6\x33\x62\x07\xa6\x56\xc2\xd2\xaa\x38\x45\x9d\x72\x96\x51\x72\xe4\xf0\xce\xb9\x7a\x07\x76\xf1\x22\xfc\x40\x13\xbc\x7f\xa0\x40\x24\xe3\x8c\xf0\xa4\xec\x6b\x3b\x52\xc9\xdd\x92\x17\xff\xdd\x26\xd6\x7c\x22\xa0\x1b\xc8\x2e\x71\xd6\xd9\x3b\xeb\x4d\xb2\xac\xd4\x0d\xc2\x1f\x11\xe9\x70\x7a\x5a\xd1\x14\xf7\xf2\xce\x93\xa4\x7c\x2c\x95\xe2\x64\xb0\x4e\xa0\xe1\x49\x3b\x2b\xef\x10\x15\x0f\xd0\xa8\xa1\x6c\x72\x85\x36\x3a\x06\xf7\x5e\xa0\x2a\x99\xb7\x68\x72\x10\x9a\x1c\x81\xe1\x93\xd6\x77\x85\x89\x3a\x86\x07\xe3\x46\xa6\x6a\x57\x13\x0d\x3d\x7f\x59\x93\xfa\x71\x92\x16\x43\x77\x30\x0a\xe9\x40\xcb\xf1\xa9\x5d\x50\xc9\xc8\xd5\xc8\xc6\xa4\x52\x21\x4c\x4f\x3f\xa5\x17\x74\xb8\x5c\x4f\xbc\x76\x4c\x73\xa7\x1d\xa3\x77\x80\x5b\xbe\x1d\xad\x12\x02\x42\x53\x0d\xb0\xe7\x6a\xee\x57\xb9\x70\x7b\x93\x22\x12\xd7\x46\x4c\x95\xaa\x86\x9d\x74\x1e\x6e\x94\x24\x36\x43\xcb\xaa\x54\x4e\x6a\x02\x4a\x64\x93\xff\xe7\xcf\x76\x7c\x11\xe4\x81\x35\xe6\xf2\xf6\x31\x6d\xd7\xc6\x04\x5e\x44\x71\x7b\x2b\x88\x2f\x94\x05\x97\xa4\xe5\x5f\x2a\x95\xb5\xbf\x9c\x2a\x31\x35\x16\x0b\x15\x1d\x3b\x1f\x91\x99\x81\x4d\x8a\x7c\x87\xcf\xde\x01\x22\x2e\x14\x64\xf4\xb8\xc2\xf1\xac\x38\xbb\x60\x31\x18\xb7\xd9\xc0\xbb\xe0\x04\x9d\x15\x71\x86\x8a\x03\x7b\x36\x8f\x40\x4c\xf9\x92\x2b\x7f\xa8\x98\xfd\x24\x39\x41\x6c\x22\x55\xe6\xe6\x63\xc5\x22\x16\x9b\x70\x69\xce\xf7\x6e\xde\x57\xa0\x50\x68\xbb\xc0\x41\x3d\xac\xc8\x89\x58\xf9\x57\xd0\x12\x0d\x21\x61\x2e\xed\x0d\xc8\xae\x1d\x0b\x54\x5d\xbd\xce\x8a\xb9\x7b\x77\x7b\xd5\x64\x3d\x5e\x09\x0a\x83\xbd\xef\x53\x31\xd8\xa5\x27\x3e\x8c\x12\x34\x0d\x4b\x09\xc7\xa3\xbd\x6f\x2b\x4f\x37\x8c\xcd\xa4\x17\xa5\x04\x29\x93\xe6\x3d\x9a\x0e\x59\xa7\x48\xc0\xbb\x7f\x5a\xdc\xeb\x71\x94\xbe\xd9\x2d\x4a\x86\x36\x8b\xdc\x61\x8c\xb8\x90\xb9\xc9\xf8\x66\xfa\x90\x07\xe9\x15\x9f\x2d\xdf\x5e\x24\x5a\x09\x7a\x2e\x71\x67\x39\x0d\xc2\x9b\x4c\xeb\x0f\x41\xfb\x7d\x62\x22\xc2\x39\xc8\x92\x30\x30\xdb\x37\x02\x95\xa7\x78\xb8\x53\x4e\x95\xe3\xc0\x2a\xa7\x1a\x3b\x74\x0e\x9c\x06\xce\x9d\xd8\xbb\x4b\xc4\x94\xc9\xb9\x03\x32\xf0\x0d\xd4\x32\x11\xdc\xfd\xaf\x3a\x19\x32\x87\x8c\x26\x8c\xd4\x23\xd4\x79\x83\xec\x0e\x90\x45\x00\xbe\x5e\xd2\x25\x56\x96\x0a\xc2\x81\x7e\x07\x66\xcd\xc5\x27\x1e\x00\xb1\x9d\x1c\x50\x66\xd4\x0c\x34\xf4\xf6\x7b\xaa\xf7\x78\x9c\xaf\x86\x43\x21\xd5\xa7\x1d\x5a\xd1\x35\x80\x1b\x7f\x5a\xed\x15\xb8\x26\x52\x4d\xf4\x64\x34\xa7\x75\x9b\xa1\x0a\x8d\xe2\xd8\x86\x4e\xbe\x19\xff\x7c\x52\xc9\x6c\xd4\xf5\xfa\xca\xb0\xa2\x6f\xf2\xc2\x66\x33\xbe\x26\xc5\x0c\x23\xa2\x07\x48\xb3\xc7\xe4\x83\x41\x5d\xd6\x64\xc5\x24\xc5\x9c\xf2\x79\x21\x5c\xef\x44\x61\x9d\xf0\xd1\xc7\x44\x63\x20\xcf\x5c\xbe\x0b\xfe\xe6\x8a\x83\x1e\x15\xa9\xc1\x91\x28\x2d\xb5\xba\xd7\x76\xf3\x0f\xff\x6a\x7b\x68\x96\x99\x25\x04\xa5\x00\xe8\x7d\xf2\xb5\xcb\x0d\xad\x44\xc5\x30\x4b\x57\x68\x44\xe0\x76\x7c\x5f\x2b\xa8\x7d\xdf\xa9\x48\x8c\x22\xe1\xc6\x47\x3a\xf7\x67\x9a\x8c\xe5\x67\x81\x47\xa4\xc4\x76\x10\xe5\x31\x64\xb2\x69\xa5\x80\x37\x04\x90\x51\xbe\x76\x3f\x9f\x2e\xdb\x2c\x36\xe3\xd9\x96\x22\xbe\x2b\xe7\x0e\xd1\xd7\x07\x38\x0e\x91\x9f\xf8\x53\x1d\x39\x5c\xaf\xb3\x66\xce\xb7\x4d\x96\xe6\xfc\x9b\x9c\x6e\xc7\xe2\x96\xdc\xfb\xa7\x55\xc3\xfb\xe5\xa1\x37\xe3\x01\x40\xd7\x95\x26\xeb\xb7\x74\x17\xf3\x35\x5f\x70\x32\x51\xec\x8e\x54\xe6\x33\xad\x70\x9b\x2a\x2c\xa1\xc9\x8b\x6c\x15\x4b\x00\x05\xf2\xad\x80\x1f\x38\x8a\x75\xb7\x06\x50\xc8\x77\x19\x4b\x47\xf7\x5c\x17\x59\xa0\x72\xcc\x6a\xa2\xda\x3c\x45\x4e\xb8\x92\xdb\xf4\xc1\x6b\x37\xb3\xa6\x57\x0c\x31\x3a\xd2\xb9\xa1\xda\x40\x6a\x1d\x53\x07\x76\xb5\x63\x53\x00\x38\x89\x90\xe4\xae\x82\xff\xc0\x9b\x11\xf2\x03\x7f\xb4\x16\xab\x8c\xe4\xc6\x44\xdf\x0e\x5a\x5f\xfb\x0a\x5b\x9a\x7f\xa1\xd2\x7c\xb7\x94\x65\xee\x5b\x1b\x4b\x86\x8e\x9b\xce\x51\x6e\x96\x0e\xf4\xcd\x4f\xf6\xf2\xcb\xed\x15\x33\x60\xa2\x0b\xc7\x93\xe2\xc4\x3e\xeb\x10\xc6\xf9\xfd\xed\x78\xd2\xa5\x06\x99\xa2\x22\x3f\x78\x4e\xc9\x0f\x9e\x6b\x4a\xc7\x4a\x5f\x0d\x6d\x0f\x82\x8f\x9e\x79\x7a\xcd\x33\x5e\x9f\x79\xba\x23\xb5\x62\x53\x14\x36\xe9\x49\x9c\xe1\x04\x60\x5d\xeb\xf2\x59\xa5\x12\x99\x4f\xe2\xc2\x24\x2d\xa5\x2d\x81\x1c\x09\x5f\x7b\x5e\x77\x1b\x5b\x33\x98\x78\x85\x7e\x20\xc8\x10\x37\xf1\xb5\x5a\x68\xdd\x49\x6f\x60\x8b\xed\x34\x76\xdc\x2e\x15\xf8\x2c\xeb\x5f\x92\xad\x54\x6d\x54\x2f\xb9\xbc\x9f\x82\x8a\x7d\x40\x46\x02\x86\xfa\xf5\xa9\x87\x9f\xfd\xbe\xdb\xb1\xe1\x44\x51\x67\x61\x79\xc2\x2b\xe0\xeb\xda\xe8\x1f\x80\x4a\x46\x5e\x06\x99\xfc\x1e\x72\x0e\xf9\x06\x93\x37\x80\x19\x91\x9e\xa0\xfe\x93\xbe\x81\xfc\x34\x95\x6c\x38\x23\x34\xd5\x26\xe8\x2a\x8e\x18\x6c\xda\xcb\x58\x34\x70\x83\x5b\x6b\xad\x17\x17\x35\x8e\x76\x9f\xf4\x7b\x07\x8a\x1e\xe5\x4f\x34\xcd\x10\xb7\x69\x63\xdd\xfe\x98\x06\x8b\x69\x7d\xe8\x18\x65\x56\xdb\x40\x51\xb0\xcc\xae\xd1\x89\x2e\x8c\xc1\xe5\x91\x2c\x52\x75\x0a\xa2\x3c\xbb\xe6\x69\x41\xb7\x80\xdd\x06\xfb\xe1\xbf\x51\x2d\x0b\x77\x36\x0b\xc0\xec\xdd\xb5\xb7\xdc\xe3\xdb\x55\xa9\xee\xae\x56\x6b\x39\x44\x0f\x05\x4c\xc0\x07\x74\xf2\x49\x53\x98\x6a\x06\x05\xf0\xde\x81\x27\x95\xdc\x9a\x4a\x55\xe5\x85\x62\x06\xc2\x96\xfb\x3d\xad\x86\xf5\x7b\x0d\x1c\xe3\xfb\xda\x23\xdb\x8b\x42\xa9\x6e\xe3\x7d\x8e\x04\x2a\x67\xec\xc3\xea\x71\x66\x97\x2d\x8e\xc0\x79\xde\xa1\x00\xbc\xa2\x56\x3a\x83\x38\x15\x1e\xf2\xc3\xaa\xd0\xbf\x73\xcd\x67\xe1\xae\xb9\x8c\xc0\x24\xe9\x9b\x28\x63\x93\x47\x9f\xf9\xc2\x13\x1d\xb7\xe3\xbe\xf0\xc4\x9a\x2a\x71\xa5\x79\xc2\xe8\x5e\x9c\x19\x97\xb5\xb8\xc8\x71\xc5\x14\xf4\x49\x2d\xed\x5a\x5a\x0c\x3e\xc6\xa4\xdb\x06\xe8\x73\xe8\x53\xf2\x22\x99\x56\xf2\x75\x3e\xf8\xeb\x5b\x93\xd9\xde\xac\xe2\x21\x3b\xa9\xe1\x98\x6f\x2b\xba\xe1\x0d\x15\x5e\x9d\x71\x63\x16\x8d\xcc\x80\x06\xd7\x1d\xf0\xa0\xda\xe3\x6b\x2f\x23\x6b\x0d\xe5\x2e\x95\x44\x59\x45\x87\xd5\xdb\xe5\x7f\xf6\xa5\xfd\x34\x55\xc0\x43\xdc\x0b\x14\x39\xf6\x3d\x37\xb8\xe3\x2c\x1d\x97\x01\x31\xa5\xeb\x70\xfe\xdf\x9d\x2a\xe4\xfa\x71\xa0\xfd\x1d\x49\x83\x63\x43\x3a\xf2\x74\x47\x81\x1c\x55\x88\xb1\x5e\x3e\xf6\xc6\x45\x05\x0b\xe8\xda\x6e\x3a\xd6\x45\xb4\x8a\xbe\x6d\x2d\xb2\xa7\x4c\x56\x1e\xe5\x2e\x33\x8c\x3f\x44\x32\x4b\x98\xf0\x94\x78\xc0\x1d\x37\x36\xa3\x74\x52\x0c\xd9\xda\x8b\xba\x07\x3d\xbe\xb4\xaa\x37\x2d\xeb\xcc\x26\xe9\x8a\x13\x90\x87\xb1\x7c\x87\x7e\x8b\xaf\x95\x9f\x93\xd8\x41\x5a\x44\xa6\x70\xb0\x49\xe1\x04\x2e\x5f\x4e\xcb\xdb\x22\xd1\x77\x5c\xd5\x28\x56\xd2\x2c\xee\xed\x80\x29\x43\x16\x91\x51\x02\xa2\x03\xd6\x52\xdc\x28\xf4\x76\x0a\xa3\xb1\x50\x39\xbc\x50\x8b\x66\x9e\x1b\xe6\x30\xc0\x90\x62\x7f\x5d\x0d\x1e\x72\x8b\x60\xff\xae\x59\xef\x6b\x6c\xe9\x54\x59\x6b\xf7\xee\xe2\xa8\xe9\x7d\x0d\x4c\xd5\xed\xde\xdd\x68\xf0\x50\x19\x45\x60\x03\x71\x5f\xae\x1c\x9e\x64\x7c\x25\xcc\xf7\x55\x81\xe3\xb4\x18\xf8\xff\x6b\x3d\xf2\x6d\x8c\x71\x12\x30\x83\xc2\xed\xdf\x50\x88\xbc\x13\xaa\xfe\x36\x83\x46\x4f\xe1\x7b\xab\xbb\xda\xfd\xcc\xc2\x5f\xc1\x4b\x5d\xa3\x3d\x83\x00\xe6\x76\xa0\x92\x4d\x6f\xab\x8d\x31\xe9\x42\x5c\x4e\x52\x92\xb4\x97\xc4\xae\xd2\xf3\xe2\x00\xdc\x89\x1f\x17\x09\x1f\x2f\xff\xfe\x26\x1f\x49\x5a\xe8\x07\x8d\x26\xdb\xd6\x14\x61\xee\x07\xae\x00\xd4\x37\xcb\x69\xb6\x43\xd5\x41\x6e\x2b\x92\x21\xd6\x5f\x47\x73\xe3\x31\x22\xfc\x57\x2d\x5a\x0b\x4e\x15\x58\x75\xc9\x42\xe5\x15\xe1\x18\x93\x8f\xe1\x9d\x8f\x28\xa9\x61\xd3\xef\x47\x71\x44\x00\x05\xbf\x04\xd0\xad\x20\xa4\x4c\x9b\xcf\xed\x67\xdb\xf9\xea\x68\x6c\x8a\xa1\x2d\xa2\xb0\xe5\xcf\xe3\x6f\x07\x1e\xbf\xff\x6d\x45\xfd\x91\x86\x4b\xe3\x28\x46\x0d\x18\x4b\x1e\x99\x5f\xbe\x56\x25\x60\xd3\x27\xa7\x6a\x4e\xf5\x77\x32\x1d\x96\xab\xc9\x7b\x3e\xc6\x33\xba\xc4\x12\xf8\xbd\xf5\x3f\x68\xb2\x74\x9b\x44\x83\x64\xc6\xf3\x3f\x30\xdd\x18\x06\xe8\xaa\x6a\xce\x3d\x5c\x63\xbd\xd8\xbb\x8b\x8a\x40\x34\x3a\x44\xc6\xe8\x30\xbf\x67\x55\x33\xe6\xd9\xda\xe7\xa8\x58\xdf\x4f\xb3\xd1\x44\xa9\xd1\x21\x7d\xce\xd9\x79\xbe\x51\xae\x6e\x79\x74\x45\x89\xdd\x5e\xee\x09\xac\x97\x9b\x78\x50\x6c\x96\x2b\x30\xcb\xf0\x15\xc0\x43\x89\xbd\x76\x83\x9c\x0b\xd6\x00\x0b\x14\x8c\xea\x32\x0d\x0e\x7f\xa0\x16\x7c\x3e\xf3\x4c\x7b\x68\x7a\x55\x63\xab\x12\x66\x81\x57\xf4\xcd\x8a\xa1\x8d\x46\x2d\x45\x5d\xcc\x6d\x56\x32\x07\x35\xc2\xe8\x79\x92\x01\xcb\xcc\xa0\x3c\xe8\xbc\x46\xc5\x06\xed\x77\xc7\x02\x5d\x8e\x09\x66\x64\x46\xad\xd2\xf7\x03\xbf\x6a\xca\x25\x39\x92\x36\x26\x56\x7d\x0b\xd4\xbe\xf1\xcc\x29\xfd\xa8\xd8\x41\x0f\x28\x2a\xf5\xe5\x17\x62\x18\x5a\x48\x39\x4a\x6a\x93\xbe\x4b\xf4\xd7\xca\x51\x84\x3d\x00\x1f\x02\x6c\xcc\x15\x3c\x9b\x43\x34\x7a\x6c\xf8\xba\xa2\xf6\xa2\xc7\xeb\x69\xed\xec\xab\xf4\xab\x7c\xdd\xd4\x87\x34\x32\x79\x9a\x30\xa7\xa7\xf0\xa5\x94\x1f\x11\x22\x15\xb1\x02\x24\x47\x4e\x8b\x0d\x60\x1a\x6e\x55\xe1\x9b\x60\x33\x1b\xd3\xb3\xed\x6e\xc4\x0f\x02\xb3\x03\x0e\x62\xbe\xae\x49\x7a\x1e\xd8\xf5\x5c\x3b\x1a\x8d\xa2\x44\x34\x45\xb9\xae\x13\x78\xc8\x6b\x1d\x73\x5c\xc6\x94\x4b\x49\x1a\xa2\xc9\x9d\x35\xe4\x31\x34\x32\x17\x2d\xa7\xb2\x7b\xb4\x16\x92\xbe\x88\x72\x6a\x11\x25\x13\x61\x4f\x87\x1d\xda\xc0\xaa\xe3\x9b\x40\xb7\xa2\xc7\xcb\x2c\x7d\x0e\x23\xf4\x73\xa4\x2d\xf9\xa6\x16\x92\xee\xde\xdd\xee\xa6\x07\x57\xd1\x3b\x85\x33\xe1\xbc\x0a\x9c\xae\x29\x95\xdc\x77\x2b\xd4\x84\x66\xd9\x7e\x06\xf9\x3d\x47\x13\xe8\x59\xf3\xae\x61\x29\x60\xf1\x7c\x8e\x32\x6b\x4c\x82\x0c\xfb\x8f\xf4\x1d\x67\x89\x85\x2c\xa6\x3c\x07\xe1\x65\xfd\xc7\x40\x79\xb6\xd7\x54\xc9\xe6\xd0\xb4\xaa\x29\xbc\xe8\xd4\x13\xfe\x13\xf6\x39\xb2\xba\x77\xc9\x7b\x47\xc9\x71\x3b\x22\x0a\xe7\x3b\xb9\x26\xd5\xa3\xd4\xf2\x8a\x93\x88\x6b\xbe\x78\xc6\x37\x28\xc0\xc6\xd0\x56\x15\x73\x29\x6a\x42\xc2\xea\xba\x52\x71\xbb\x43\x1b\x94\x7c\xd6\xdf\x79\x72\x4d\x56\x63\x6c\x56\xd1\xa6\xf7\x92\xb3\x93\xfe\xdc\x45\x1f\x9d\x30\xe2\x3e\xaa\x24\x46\x62\xdb\x83\xd8\xae\x10\x79\x6a\xba\x4a\xb0\xad\x21\xf8\xfc\x0e\x7d\x1d\x0a\x21\x9c\x2e\x45\x58\x72\x0f\x83\xcf\x7d\x15\xf4\x9c\x88\xba\xb8\x39\x0d\xb9\x90\xbb\xc1\x66\xeb\x4b\x1a\x29\x69\x96\x4e\x06\xc3\xbe\x29\x3d\xf4\x2f\x7d\xbd\x42\x07\x85\xf1\x04\x16\x47\x7a\x48\x6a\x54\xe8\x7b\x17\xdb\x43\x1b\x33\x47\x32\xe6\xe9\x7d\x0d\x1d\x7f\xbf\x49\x5e\xc9\x4e\xb2\x74\x6c\x4d\x22\xbd\x90\x22\x77\xad\xea\x7c\xbf\xd9\x00\xb7\x69\x77\x53\x12\x20\x50\x1a\x22\xd8\xf1\x22\x28\x22\x59\xca\x34\x0c\x4d\x4e\xfd\x5c\xb4\x71\x61\x4a\x5f\x53\x04\x10\xaf\xa9\xac\x0e\xd2\x67\xab\x0a\x4c\xf5\x49\xe0\xb3\x2c\x9f\xd4\x52\x27\x5f\xa4\x02\x36\x47\x0c\x38\xc2\xcf\x07\x0a\x99\x7d\xbe\x46\x03\xf7\x6c\x3b\x49\xbf\x30\xa3\xa8\xed\x6e\x2b\x7d\x56\x86\xf4\xa2\xd0\x72\xac\xf6\x6b\xfb\x5f\x68\x4f\xbe\x90\x7c\x41\xe9\x2c\x72\xd3\x13\xdf\xd4\xac\xdc\x9e\x3d\xed\x5e\x4a\xd6\x87\x01\x28\xf0\xda\xb0\xf4\x7e\x4b\xa9\x56\x69\x8e\x8d\xb4\x1b\x47\x03\x3e\xbb\xb5\x18\xa1\x52\x17\x7b\xa4\x12\x9a\x51\xa1\xdb\xe1\x07\x4b\xbf\x15\x79\xac\xad\x6b\xfe\x5c\xbe\x1e\x68\xb5\x45\xbb\x6c\x67\xca\x0d\xe8\x78\xb4\x5d\x6f\xd3\x65\xda\x4e\x88\x58\xef\x28\x42\xba\x71\x3c\x19\x75\x5d\x9a\xc4\xc9\x59\xb9\x36\xbc\xd3\xaa\x02\x1f\x91\xbe\x47\x5e\xe4\xdb\x94\x20\x12\xda\xc6\x18\x0e\x3a\x55\x86\x48\x23\xa5\x58\xd8\xd8\x29\x14\x97\xe1\x0d\xb3\x14\xba\x23\x56\xb8\x4e\xf8\xf4\xc0\x01\xf3\x97\x81\x3f\x79\xfe\xb2\x09\xc2\x3f\xb0\x89\xcd\xd8\xed\x13\x40\x9f\xef\xd0\x38\x51\x0b\x98\x0f\xec\xc2\x6b\x2c\x47\x76\x45\x7e\x4a\x24\xc7\x5b\xae\x79\xfc\x82\x02\xc8\x3b\x82\xb2\x99\x96\x12\xc0\x29\x47\x13\xb9\xf4\x63\x34\xca\x02\x04\xf2\x5c\x06\xb1\x59\xcd\x23\xce\xc8\x31\x95\x63\xa0\xa8\x9f\xde\x68\xe0\xd0\x5f\x04\x7d\x41\xb9\x94\x84\x4a\x94\x1e\x50\x30\x6c\x4d\xa0\xab\x30\x4d\x12\x1b\x3a\x1e\x34\xc7\x4b\x5d\xfe\x92\x20\xab\x15\x22\xc0\x46\xe1\x10\xad\x41\x0c\x2b\xa7\x38\x5c\x20\xe6\x9b\x1f\xe9\xd9\x36\xc1\x6f\x67\x74\x9d\x50\x35\x66\x00\x6b\x09\x6b\xf9\x5e\x53\xe3\xf2\x38\x8d\xa3\x7c\xa8\x74\xb7\x19\x1e\x80\xb9\x07\x12\x4b\x18\x41\xb5\xf0\x5e\x1c\x15\x26\x5b\xdd\xa1\x68\xcb\x2e\x61\x24\xf8\x66\xea\xd1\xb9\x47\x2a\xe0\x56\x5a\x7f\x98\x8b\x4f\x2a\x94\x14\x1c\xfc\xf0\x3f\x29\x1a\xcd\x8d\x06\xf2\xdd\x28\xe9\x4d\xe2\x81\xd4\x7a\x39\x8d\x10\x54\x88\x1f\x9f\xf2\xe2\x38\xb6\x67\x47\x63\xee\xb9\x2a\x9f\x11\x52\x54\xe7\x94\x24\xe5\x39\xc5\x54\xc8\x30\x96\x50\x92\x59\x4e\x24\x01\x64\xde\x7c\xad\x76\x5d\x1e\x46\x36\x29\xa2\xbc\x50\x79\x91\x6a\xcf\x88\x22\xd2\xb4\xcc\x5a\xe0\xa8\xfe\xce\xc2\x32\xf1\x8d\xaa\x10\xe6\xe3\x34\xc9\xd3\x8c\x01\xae\xf0\x77\xd9\xea\xf1\x8d\xe2\x2c\x1d\x67\x51\x9a\x45\x85\xe3\x0a\x73\x64\xb0\xaa\xed\x77\x33\x50\x6c\xbe\x7d\x60\xd7\xc3\xda\xaa\xd0\x33\x23\x87\xf9\xd7\xca\x41\x3b\x4b\xf5\x24\xc7\xb8\xeb\x5b\x88\xae\x69\xb7\xe6\xc7\xe4\x1f\x8b\xfc\x04\xb9\x38\x5c\x6f\x44\x91\x0b\xd6\xf0\x10\x56\x89\xb0\x56\x96\x83\x8b\x1a\x21\xb3\x32\x61\x11\xd6\x7b\x3a\x16\x5f\xd8\x47\x9d\xeb\x2d\xdd\x68\x54\x41\xaf\xca\xa9\x67\xba\x79\x51\x7a\xab\x21\x32\x8a\x22\xc5\x52\xfe\x92\xb4\x50\x3f\xe9\xb2\xe2\xc3\x72\x32\x56\x6c\xb6\x84\x0c\x19\x4e\xd0\x4f\xf4\x71\xfa\x89\x42\xeb\x8c\xd3\xac\xa0\xce\xb6\xe7\x78\xd9\x5c\xd7\xae\xc5\x5f\xd1\x9a\xe5\x7f\x40\x8d\x95\xff\x41\xc5\x97\x79\x3a\x89\x19\x8e\xe2\x48\x2b\x76\xcf\x3b\xb4\x82\x2f\xa3\xaf\x98\xd5\x7c\xbb\x87\x42\x20\xfa\x10\x38\x76\xcb\x35\x42\x33\xdf\x0a\x03\xfc\x91\x96\x72\x02\x54\x7b\x77\xb9\x1b\x38\x47\x98\x90\x37\x1d\xd4\x36\x36\xab\x23\x93\xa8\xee\xb5\x13\x0a\x59\x78\xa2\x09\xe5\xd8\x8b\x72\xd3\x95\x37\xc0\x5e\x05\x5c\x82\xaf\x9b\x0a\xeb\xfd\x88\x98\x1b\xd4\xa3\x4d\x55\x65\xed\x27\x53\x9f\xf8\x3d\x13\xf8\xf4\x5e\x6e\x8d\x88\x85\xc2\x87\x02\xf9\xa2\x68\x8f\x94\x5b\x11\x1f\x3a\xa1\x87\xe0\x9e\xe6\xd5\x3e\x51\x61\x22\x08\x97\xa2\x59\xa5\x61\x01\xef\xce\x5d\xbb\xb6\x57\x08\xf9\xcb\xf5\xa3\x95\xfe\xb5\x5c\x33\x3c\xd0\x6b\xbb\x53\xc0\xfb\x6c\xff\xca\x45\x66\xa3\x49\xd2\x4b\x15\xe9\xda\xbb\x58\x58\x7c\xa3\xce\xf8\xbe\xa5\xec\xf0\xa6\x96\x00\x85\x07\x6d\x18\xd5\x61\xea\xb2\x8b\x52\x2b\x68\x39\xfa\xfc\x8f\x95\xb1\x36\xbd\xe5\x28\x2f\x7d\x1a\x18\x58\x94\x1f\x0e\x69\x7e\x97\x43\x95\x10\xa7\xf7\xaa\x85\x40\x98\x33\xdf\xde\x94\x2b\x52\xb9\x68\x90\xa4\xbe\x2b\xc1\xcd\xe5\x9e\x3d\x4e\x31\xbd\x89\x92\x16\x8c\x9d\x2d\x0f\x6c\x3f\x44\x3d\x38\x7c\xad\xe0\x60\xa6\x28\xd2\x2c\xb1\xab\x39\xf1\x27\x0a\x13\xb9\xef\xd1\x79\x47\xb5\xa3\x7c\x27\x50\x11\xef\x77\xa6\x9f\xfb\x94\xe2\x6c\xd7\x24\x4b\xd9\x64\x5c\x84\xab\x33\x2a\xae\x3f\xa6\x10\xb1\x9c\xcd\x06\x82\xea\x72\x23\xc4\xbb\x3b\x59\x75\x69\x5a\x80\x23\xbe\xa3\x12\x75\xc7\x68\xb0\x84\xa2\xc9\x3b\x8b\x48\x67\xb9\x78\x10\xe6\x48\x12\x9e\x7a\xf0\xc7\x36\x26\xae\x18\xf9\x3a\xda\x35\x4e\x67\xf3\x79\xf7\x3b\xe8\x1b\x17\x6d\xce\x4d\x04\xda\x2f\xbf\x0c\x02\xed\x03\x1e\xb0\xec\x5a\xe1\x7e\xff\xa3\xda\xbc\x94\xe1\xf6\x4a\x9a\x52\xf9\xd7\xa5\xac\x8e\xd2\x23\xca\x7e\xdd\x1c\x34\xb9\x16\x68\x9b\x45\x76\x72\x90\xd6\xad\x50\x0c\xa9\x88\xf4\xf5\xc0\x83\x3c\xed\xb2\xcd\x40\x26\x22\x85\x7e\x5f\x6b\x7e\x5b\x93\x31\xfe\x8c\x4c\x9d\x00\x80\x1b\x08\x0c\xf2\x61\x44\x1a\x30\x98\x04\x44\x00\x68\x79\x80\x11\x3a\xaa\xf0\xa9\x1f\x34\x4c\xe2\x02\x77\xfe\xb7\xbc\xf0\xff\x7d\x9a\x37\xbe\x6e\xc0\x96\xed\x6b\x8f\x55\x73\x24\x16\x0b\x53\x33\xf3\x4d\xf0\xb4\x3a\x8b\x53\x82\x32\x22\xf2\x72\x72\x6c\x5c\x9f\x12\xec\xb5\x92\x17\x2c\x4c\xbf\xbf\xcd\x1b\xb7\xab\xc8\x5d\x68\x3b\x20\x94\x3a\x74\xaa\x54\xca\x1d\x30\x46\x57\xd9\x7b\x42\x86\xf4\x56\x13\x7a\x35\x1c\x9a\x24\xb1\x71\xae\xf3\x63\xc8\x4b\x8a\xeb\xe1\xb3\x55\xff\xaf\x9d\x43\x7a\xc9\xf6\xa3\x62\x67\x05\x37\x58\xe5\x49\x77\x71\xf8\x0c\x55\x52\x2b\x32\xcd\x0e\x83\xe8\x89\xa7\x8e\x91\x3d\x80\x13\xf2\x73\x4d\x70\x72\x74\xfa\xa9\x10\x48\x8f\xc1\xb9\x47\xbe\x26\x7f\x1a\x9b\x59\xd8\xa2\x31\x40\x7c\x87\x81\xe4\x5f\xac\x21\x5e\xf6\x2e\xb6\x4d\x1c\xb7\x7c\xb1\xf8\x6f\x40\xf6\xc9\x37\x0d\x2a\x63\x4a\xfd\xb0\x7c\x15\xe9\x7b\xd7\x4d\xf0\xce\x41\x49\xa2\xc1\xb0\x08\xe3\x49\x97\xff\x98\x89\x28\x69\x2a\x84\x94\xd2\x3b\x0c\x2b\x69\xd2\xb3\x19\x29\x45\xa2\x8e\xc1\xd5\x69\x41\x0c\xb6\xfc\x35\xa5\x76\xc5\xd7\xf7\x01\x6c\x9d\x0a\xab\x3c\x3d\xa2\xc1\x50\x89\xe6\xed\xa0\x1c\x20\x8c\xfc\x56\x42\xf2\x8b\x00\x9e\x5f\xa6\xdd\x6c\x22\xba\xcc\xaa\x29\x71\xd1\x71\x61\x29\xbe\x89\xeb\xae\x76\x96\x0f\xcd\xd8\xf6\xe6\x14\xd5\xed\x45\xcc\xb6\xd8\xc8\xf2\x19\xa4\x22\xee\x91\x94\x67\x34\xed\x79\x3d\x3b\x7a\x60\xd7\x4b\xed\x30\x9e\x8c\xf2\x55\xe5\x0f\x5e\x53\x6c\x2c\xd7\x94\xcb\x6d\x0f\x8e\x33\x52\x15\x74\xbd\xe6\xbf\xf6\xd9\x8e\x6b\x42\xff\xb5\xcf\xae\xf9\xc1\x4e\x4c\x96\xa5\x2b\xb3\x4a\x7b\x84\xc9\x9c\xf9\x46\x81\x20\xce\xaa\xec\xc8\x59\xad\x7c\x60\x46\x23\x5b\x14\x8a\x6f\x87\x79\xfb\xf8\x46\x55\xc1\x96\xec\xea\xac\x6e\xc6\x2a\xe7\x58\x3a\x0b\x74\x3f\xa9\xc6\xb0\x9c\x6b\x60\xba\xd8\xd7\xce\x8b\x49\x6f\x75\xc6\x97\xc2\x2f\x22\xa6\xd0\x88\x3b\x9c\x69\xbe\x30\x6c\x5f\xb5\x4b\x11\xb7\x79\x61\x9d\x1c\xd5\xac\xe1\x47\x55\xe3\xe6\x60\x62\x1f\x29\xf7\xde\x06\xf2\x70\x0a\x43\x30\xaf\x95\x46\x24\x23\x70\x6d\xea\xf9\x9a\xef\xd1\x4b\x49\x2b\x4f\xf9\x80\x0c\x60\xe5\xfc\x9e\x4b\xbd\xba\x0c\xf4\xce\x8e\x0a\x87\x38\x1b\x2f\x7c\xd1\x2a\xbe\xbb\x3f\x55\x0d\xcc\x67\x5c\xfd\xc1\x1e\x1c\xc7\x51\x18\x15\xd5\x56\x79\xc7\xdc\x7a\x5e\x51\x7d\x77\x4d\x51\x30\x43\x91\x44\x9a\x6f\x28\x1e\x56\x08\x2e\x02\xa7\x78\x56\xe5\xc9\xec\x41\x1b\x4e\x0a\xc6\x86\xa1\x7e\x00\x06\x7b\xbe\xae\xf0\xa3\xf6\xe3\x55\x42\xf0\x22\xad\x75\x71\xaa\x7b\x28\x68\xf8\x44\x08\x8b\xde\x19\x6f\xc6\x90\x2e\x58\x82\xeb\x15\x81\xbf\xf2\x67\xf8\xff\x57\x71\xcd\x8f\x55\xce\x1e\xc3\xd4\xf7\xae\xf4\xf7\xbc\x70\x9c\x1e\x53\x25\xdc\xdd\xab\x2d\x25\xdc\xf2\x8e\x62\x0b\x7b\x47\x01\x29\xa3\x2c\xb3\x14\x88\x46\xdd\xd8\xe2\xf8\x76\xf2\xbc\xae\xa3\xf3\x7c\x85\x85\xa1\xf5\xe5\x17\x9d\xd0\xb0\x0f\x92\xc7\x59\x1a\xa7\x02\xab\x7f\x8e\x33\xde\x47\x15\x02\xf3\x68\x83\x6e\xf7\x81\x5d\x3b\xcb\xe1\x83\x9f\x85\x8c\x38\xd2\x3b\x17\x15\x58\xfe\x3a\x82\x4d\xe9\xb2\xf2\xb4\xcb\xb7\x69\x5e\x30\x78\xa7\x74\xef\x33\x2c\x10\x4e\x7b\xee\xd0\xc3\x27\xfe\x4a\x43\xf4\x7e\x3a\xd5\x92\xc7\xe7\x28\x08\x46\x3e\xfd\x04\x00\xb8\x58\xb0\x2d\x92\xf5\x42\x64\x75\x25\xa8\x30\x72\x3d\xa6\xa0\x89\xb9\xeb\xc9\xe0\x6d\x04\xa3\xcd\x72\x36\x92\x33\xdd\x6c\xe8\xf6\xee\x6a\xf7\xec\xb2\x8d\xd3\x31\x39\x12\x92\x67\xf5\x25\xd4\xf3\xca\x40\x0f\x6c\x36\xaa\xf0\x24\x1c\xd2\x3c\x09\x87\xd4\x2a\xe9\xc7\x26\x59\xb2\x19\xd2\x4c\xd8\x43\x6f\x4d\xfd\x11\xf3\xd6\x26\x06\xb7\xf8\x29\xaf\x56\x78\x17\xd0\x6b\x3c\xfd\xfb\x18\x3c\x80\xc3\xaf\x05\xbe\x21\xfe\x3a\xad\x02\x41\x3d\xd0\xea\x06\xe3\xe6\xf6\x35\x1a\x21\x29\xe3\xa3\x94\x82\x05\x80\x62\x3d\x73\xb5\xea\xba\xe7\x03\x6b\x34\xc1\x02\x09\x50\x47\x37\xb7\xb6\x21\xae\xdf\xd0\x1c\x80\x2d\xee\xed\xc1\xdd\x7f\x52\xee\xc2\x9b\x00\x18\xf0\x6f\x02\x9e\xcd\x38\x49\x05\x55\xbf\x1c\x78\x58\xf5\xa5\x9a\xc7\xbc\xf8\xc2\xbe\xf6\x8a\xf1\xc4\x97\xd8\x37\x3f\x55\x7b\xe8\xa7\x2e\x08\x1c\x4c\x22\x96\xa8\x71\x82\x8d\x7b\xf6\xb8\x02\xe3\x66\x62\xcd\xd2\x9a\x87\x29\x6f\xba\x9e\x38\x9c\x4e\x12\xd5\x23\x68\x4e\xd7\x0e\x82\x17\x17\xdb\xc5\x10\x02\x3d\xe5\x08\x39\x89\xcc\xf2\x33\x22\x66\xba\x39\x3f\x29\x7e\x7c\x5c\xfa\x24\xec\x8f\xc0\x87\xfc\x2e\x0d\x06\x5f\x37\x55\x21\xc6\x59\x34\xb2\x5a\x0f\x50\xb5\x75\xd7\x49\x3f\xca\x13\x3b\x9f\x8c\xc7\xb1\x43\xee\x21\xfa\x3a\xa5\x48\xe4\x4e\xa9\xe4\x57\x3f\x4a\x06\x68\x7a\xf7\x00\x16\x08\x3b\x88\x07\xe7\x0a\xbf\x93\x30\xb4\xd6\x0d\x95\xf8\x02\xf4\xda\xe2\x0c\x3c\x24\x36\x65\xdf\xaf\x7f\x75\xbb\xdf\x7c\x97\x35\xff\xcc\xb9\x69\xeb\xab\xc2\x95\x71\x52\x51\x4b\x7e\x80\x51\x57\xab\xcf\xa3\x50\x5a\x5f\xfb\x8a\xbb\xde\xfc\xc6\x28\x62\xc6\xb1\x75\x69\x4a\xa5\xd3\xba\x4f\x6e\x7c\x67\xfd\x4a\xf9\xb7\xc9\x8c\x4f\xc1\x31\xac\xc6\xd1\x41\x3a\x00\xc4\x95\xca\x71\x64\x46\xe3\x98\xce\x67\x51\xc1\x45\x64\xcc\xd6\x98\xca\x56\x70\xd7\xae\x28\xca\xfd\x23\x78\x0f\xd7\xa2\xb9\x7b\x5e\xd8\x62\x03\xa5\x43\x7e\x9b\x76\xb4\x7b\xf3\xf2\xb1\xa5\x40\x43\xcb\x9e\xb9\x44\x14\xf8\xf2\xb6\x6e\x4c\xf9\x20\xf0\x15\xfc\x3f\xf2\x78\xe7\x61\x3a\x71\x35\x04\x69\x77\xa2\x4f\x49\x1f\x94\xcc\x6c\x9f\x84\xf9\xa3\x09\x80\x26\x58\x59\x5b\xd6\x94\xea\xe4\x96\xce\xe6\xed\x53\x2e\xb3\xa1\x35\x3d\x56\xab\x65\x04\x31\x80\xc6\xef\x69\x2d\x80\xb7\x69\x3c\x99\xf4\xcc\xb9\x0f\x79\x9a\xd9\xa4\xf4\x15\x5b\xae\xe1\xfd\x8f\xe8\x0f\xf9\x5a\xd3\xb2\x2e\x1b\x95\x37\x63\xa4\x13\xdf\x04\xbe\xeb\x30\xe9\x4d\x32\xc3\x1b\x0b\x87\xe2\x7d\x9d\x60\xbf\xef\x86\x25\x1d\x45\x49\x3a\xe1\x95\x82\xc1\x7c\x57\x0d\xec\xbb\x0a\xf4\x3b\x36\x59\x11\xaf\x42\xb2\xc2\xb5\xa5\xee\xdd\xe5\x6e\x9a\xba\x4d\x4d\x37\x4f\xb3\xee\x4c\xa5\x17\x77\x6f\xb5\xb5\x48\x3a\x02\xeb\x26\x09\x94\x19\x38\xc5\x64\x31\x3b\xc6\x57\x45\xff\x5a\xe9\xbc\x8b\x46\x11\x1a\x24\x36\x35\xa5\x8a\xd4\x73\x93\x4f\x3f\x52\x42\xb5\x38\x84\xef\x57\xaa\x6f\x2d\xa7\xc3\xb4\x3e\x7d\x62\x73\xe3\x62\xfb\x57\xb7\xf9\xf6\xe2\xe3\x81\xe2\x42\x67\xcf\x51\x63\x71\xb0\xc5\x4e\xe0\x2c\xe0\x8f\x28\xdd\x98\x13\x8a\xa5\xde\xe4\xf9\x64\x14\x25\x03\x78\x3f\x4e\x72\xd6\x11\xc4\x71\x2c\xcb\x1b\x40\xd5\x34\x7f\xa3\x29\x81\x6a\xfa\xfd\x78\x22\x58\x0a\x20\xe6\x1f\xec\x78\xf4\xfc\x83\x6b\x0d\x45\x9a\x38\x4a\xac\x81\xbc\xbf\xc6\x86\x09\x82\x4c\x21\x70\x27\x49\xcf\x24\xa1\xe5\x54\x1f\x7c\xfe\x13\x3a\xa9\x75\xa2\xc1\x32\xcf\x6f\xea\x5d\x77\xa1\xa5\x33\x94\xeb\x95\xc6\x25\x7a\x81\xd0\x12\x21\x21\xfc\xa6\x59\x74\x82\x3a\x14\xa5\x3f\x94\xcf\xa9\xc6\xd7\x0b\xec\xf4\xbb\x94\xbc\x63\xca\x9a\xed\xf8\xe1\x0e\x27\x71\x31\xc9\x4c\x8c\x93\x15\xee\xde\x09\x25\x00\x58\xef\x51\x26\x06\x8a\x32\xc4\x63\x06\x05\x29\xec\x7a\xc8\xfc\x8d\xa9\xc2\x16\xcc\x74\x9e\x54\x03\x36\x18\x58\x62\xc3\xa4\x52\x2e\xf2\x69\x97\xc8\x80\x22\x92\x85\xf7\x8c\xe3\xf3\x8e\x82\x6c\x8e\x27\xdd\x98\x4b\x44\xb3\x0a\x2d\x8e\x83\x03\xce\x09\xfc\x75\xe1\x98\x55\xe9\xd6\x73\x4d\x70\x94\x94\x0a\x16\xae\x85\xfe\x04\xd9\x4e\xbe\x6e\xd8\x92\x8b\xed\xc2\xc6\x76\x1c\x85\xa4\xe8\xc7\xf3\x0d\xdb\xce\xd4\x83\x7c\x53\xfb\xac\x6b\x14\x36\x45\xe8\x7b\x39\x85\x83\xac\xe5\xf9\xc8\xa6\x9f\xd6\x62\x3c\x49\x56\xa2\x38\xe6\x1d\x21\x53\x84\xec\x33\x7c\x93\x1b\x15\x70\x9d\xae\xd2\x4c\x7d\x1b\x6c\x1e\x9a\xa4\x17\x25\x66\x39\x32\x49\x4b\x4b\x6d\x30\xdb\x05\xdf\x04\x9e\xa0\x2b\xea\x21\x31\x15\x85\xfc\xf7\x52\xa7\x50\xb6\xf7\x44\x43\xf7\xc9\x42\xdb\x08\xe2\xa9\x89\x26\xa6\xa1\xe5\x3d\x8e\x5e\x99\x30\x45\x08\x00\x5f\xef\xa8\x46\xec\x77\x1a\x04\x98\xf7\x91\xf3\xcd\xb5\x64\x04\x75\xeb\x98\x06\xbe\xd1\x7c\x6e\x76\x5c\x10\x77\xdc\x03\x5e\x6f\xe3\x5f\x28\x6d\x02\xb4\xeb\x88\x49\x6d\x39\x92\xd3\xd3\x30\x69\x30\xdf\xbf\xd0\xc1\xf0\x05\x8e\x54\x60\x32\xdf\x99\x2a\xd9\xcf\x3f\xa1\xb3\x9d\xff\xa1\xaa\x5c\x66\x92\x07\xe9\x0f\xf1\x1d\x8f\x77\xbc\xf5\x63\xd1\x64\x96\xca\xa2\xdd\xa0\x28\x0b\x85\x40\xe1\x8e\xd6\x7f\xbf\x3e\x75\xc9\x9b\x6f\x3f\x06\xb4\xaa\x90\xe2\x57\x92\x99\x2a\xb5\x72\xd2\x1d\x93\x51\xd2\x37\xa3\xf2\xf0\xf3\xc9\x73\x46\xee\x09\x6f\x61\x83\x84\x59\x94\x84\x36\x29\x4f\x98\x19\x5f\xe6\x03\x34\x10\x6e\x10\x63\x97\xe5\xb8\xd9\xbc\x98\xf7\xec\x69\x60\x57\x12\x05\xf7\x9f\xd1\xdb\xf0\x75\xe0\x33\x36\x61\x17\xac\xfe\x72\xce\x63\xd8\xb1\xe8\x5b\x1d\xef\x28\xfc\x1c\xf9\x17\x89\x88\x95\x84\xdd\xb7\x30\x6f\x30\x4b\x57\xf0\x88\x72\x08\x6f\x5e\x56\xfb\x5f\x68\x73\x1c\x40\xc1\x1f\xb2\x2b\x80\xa3\xf0\x75\x23\xb7\x9e\x3d\x38\xb6\x61\xb1\xd9\xcd\x56\xdc\x74\xa7\x6a\x16\x74\xcf\x9e\xf6\xd0\x64\xdd\x94\xaa\x74\x7b\x1d\x7b\xab\xcf\x61\x1d\xd7\xa0\x82\x5b\x35\x5f\x17\x8a\x5f\x76\x94\x26\x0c\xf4\x40\x26\x11\xf2\x2a\x7c\xad\x6a\x9b\x39\x49\xd8\xbb\x4a\x11\xf8\x79\xf9\x7a\xea\xb5\x50\x7c\x5f\xc8\x06\x1a\x96\x37\x8e\x35\xb9\x36\x79\x38\xb4\x23\xf8\x19\xee\xb4\x70\x89\x82\x13\xaa\xcf\x2e\x11\x19\xfb\x4d\xfc\xb4\x7c\xa3\x3c\xac\x70\x68\xa2\x44\xbb\x9d\x77\x54\xb6\xe3\xce\xf4\x33\x15\x57\x2c\x0a\xa3\x31\x0e\x02\x68\x1e\x96\x73\x25\x12\xe3\xad\xbd\xbb\x36\x90\xf6\x91\x44\x99\x4e\x0f\x99\x70\x95\x05\x41\xa5\x8c\xa8\x59\xa9\x59\x79\x4e\x5a\x5d\xfd\xb4\x9f\x54\x55\xb6\x0f\x60\x65\x60\xcb\x8e\xfa\x56\x19\x9b\x41\x1c\xaa\x5c\x79\xae\xd7\xb4\xfc\x4b\x91\xe4\xdf\x8c\xb9\xdc\xb3\x67\xaf\x6f\x6d\x6b\x79\xfb\x5d\x6d\x6c\x6b\x20\x8d\x1b\xc7\x86\x59\x88\x38\xcb\xa5\x68\x83\x2f\x36\x4a\xf2\x12\x45\x6c\x2e\x05\x18\x47\xc5\xe7\xf8\x5b\x6e\x54\x68\x85\xd2\x6f\xd8\xb0\xd8\x4e\xcb\x0f\x0d\xc8\x20\x75\x45\x6e\xb3\x92\xe3\x5f\x0f\x7c\xaf\xeb\xb7\x31\x78\x22\xee\xda\x72\xd4\xbe\x5c\x9e\x40\x66\x79\x6b\x0d\xee\xba\xb8\xb7\xf4\x25\x52\x52\x01\x6c\x29\x63\xc7\x4e\x9e\x44\x55\xbe\x4c\xfd\xca\x24\xb2\x20\x89\xc2\x0f\xff\x70\xea\xfb\xbd\x7e\x58\x03\x1b\x2e\xbe\xb0\xaf\xdd\x2f\x9d\xb4\x91\x4d\x0a\xc6\xe5\x89\xac\x5a\xcb\x4b\xac\x35\xd5\x7b\xfb\x93\x2c\xcd\x14\x2b\xd7\x75\xc5\xca\x75\x5d\xf3\x45\x90\xe0\x04\x10\xf1\xa8\xc2\x9d\xe3\xe3\xc1\xe9\x16\x7a\xf5\x95\xeb\x28\x35\xf1\xdf\xe9\x44\xf5\xef\xbb\x8d\x38\x88\x4d\x9e\xa4\x79\xb1\xdd\x17\xf9\x66\xd6\x5a\x5f\x7e\x91\x7d\xc3\xbf\xdf\xa1\x40\x44\x13\xb1\x54\xb0\x3e\x22\x30\x4a\xdf\xcd\x50\xe0\xa9\x56\x2a\xdc\x5c\x7d\x21\xe6\x9d\x67\x5a\xad\x67\x9e\xe1\x29\x3b\xab\x29\x08\xea\xe7\x75\x19\x38\x14\xe9\x44\x28\xc3\x5c\x96\xc5\x67\x5c\xb4\xd8\x4f\x3a\x06\xf4\x1b\xe9\x33\x88\x74\x62\xbf\xdd\xa5\x99\x73\xd3\x5d\x7e\x17\x0e\x0f\xae\xb4\x21\xb1\xf3\x11\x3d\x3b\x39\x57\xbf\xfe\x64\xc7\xc3\xc0\x59\x92\x5b\x8e\x9b\xcd\x5e\xc8\x9e\x3d\xed\x6f\x98\x57\x5f\xa5\xb3\x0a\x30\x81\xeb\x41\x6d\xa8\x30\xf2\xef\x29\xca\xb9\x57\x26\x76\x22\x45\x25\x80\x74\x8e\xa3\x26\xc6\x37\x15\x08\xf4\x7f\xf9\x4f\xff\x69\xcb\x67\x48\xc0\xc7\x29\x3c\x2b\x3b\x75\xb5\x31\xe9\xe5\x0f\x96\xef\x2a\xfc\x11\xbe\x49\x8b\x55\xed\x98\xba\x0d\x5b\x05\x3b\xed\x63\x9c\x00\x8e\xf3\xc3\x11\x10\xdc\xa1\x01\xc1\x3b\xfd\x45\xa0\xf0\xd9\x1f\xa3\x6e\xc1\x3f\x42\xe1\xa6\x44\xab\x9e\x15\x38\x4f\x27\xc5\xd0\x66\x89\xe2\x92\xdd\xde\x51\xf9\x0b\x05\xb2\xb8\xef\xda\xef\xfb\x26\x8e\x4d\x18\x51\xb8\x5c\x8e\x8c\xf8\x81\x0a\xbb\xa2\x79\x27\x33\x43\xaa\x33\x00\xf2\xce\xad\xf9\x4e\x98\xc3\x58\xf0\x48\xf2\xdf\xe1\x5d\xa2\x75\x7d\x90\x39\x7d\xa2\xe3\x8f\x2e\xbb\x6c\xb3\x87\xbc\x43\x84\x9a\xbc\x24\x2e\x74\xff\x19\x8d\x8a\xa3\x2d\x73\x2d\xc5\x8f\x00\x72\x8d\x65\xf2\x30\xf1\x22\xb8\x1c\x48\xf9\x2a\xc8\x48\xbc\x36\xf5\x1d\x09\x5b\x91\xfd\xc4\xce\x79\x1a\x05\x11\x94\x28\x3e\x54\x00\x03\x93\x59\x33\xe7\x53\x96\x47\xc9\x14\x22\xdb\x7d\x05\x33\x27\x45\xd1\xf2\xe1\x25\x5b\xed\xcf\xc9\x75\x15\x45\x86\x51\x01\x3d\xa0\xf2\xb1\xd9\xce\x4e\x15\x41\xe7\xcf\x9b\xc8\xb2\xc4\x52\x73\x0c\xe6\x22\x76\x47\xb8\xc8\x14\x70\x30\x58\x1b\xc1\xe3\x9b\x63\xb0\x7c\xae\x1c\x0c\x38\x0b\xdf\xc7\xd2\x61\xf2\x7c\x55\x1d\xc2\x7e\xe5\x6b\x1a\x7b\xe6\xa7\xf7\xe9\x40\x3b\x36\x44\xaf\x49\x05\x75\x9c\x18\xa7\xa6\xca\xe6\x9f\x20\x8f\xd8\xa9\xfa\xb9\x24\x08\xf7\x60\xb2\xfe\x88\xca\x05\xdc\x55\x69\x0d\xe9\x4a\x00\x2c\x50\xf8\xe4\xca\xe7\x10\xc5\xfe\x9d\x4a\x06\x6c\x39\x4a\x06\xdb\xbd\xd8\xfd\x7b\x81\x6a\x09\x63\x8a\x24\x11\xba\x2b\xa7\xcb\xb5\xda\x3a\xf2\x94\xf7\xe8\xd5\x91\x01\x5c\x57\x2c\x85\x7f\xa2\x2c\xda\xc8\xc6\x1c\x0e\x89\xed\xd1\x7e\x6f\x2d\x1c\x7a\x71\xb1\xbd\x12\x49\xa7\x27\x16\xd5\x9b\x38\x11\xf8\xa6\x29\xd7\x3b\xf2\x5c\xcd\x70\x01\x4f\xea\x8c\xca\x49\xf5\xd2\x23\x1b\xc7\xe9\xca\x8c\x2f\xc2\x40\x3b\xd2\x6d\x0a\x47\x56\x70\xa9\x82\x21\x48\x73\xb3\x4d\xf9\xc2\xb7\xd9\x11\xe2\x3b\x98\x56\x00\x3d\xde\x87\x51\xe2\x9b\xcd\x69\x18\xcf\x76\xb3\xd3\x7b\x42\xcb\x96\x28\xda\xdd\x84\xae\xab\x0c\xd0\x7a\x0d\xa6\xbe\xb0\xd0\x66\xa1\x01\x20\x1e\x39\x8e\xe3\x1b\xd5\x7b\x36\x8a\x62\x6b\x06\x70\x3c\x61\x34\xb6\x68\xfd\xc8\x2d\xb5\x4c\xce\xcb\x2f\xb7\x87\xe5\x5a\x47\x60\x09\xbf\x8e\xc9\x98\xf8\xa6\x49\x32\x89\x46\x88\x10\xa6\xf4\x50\xd2\x21\xed\x41\x73\x47\x6a\x27\xe8\xee\xf9\xf6\x38\x64\xdb\x88\x1a\xcc\x1d\x05\x19\xbc\x53\xf1\x41\x87\x36\x79\x5c\x81\x62\xff\x3d\x2a\x58\xae\x01\x75\x7e\xbf\xeb\x07\x2c\x97\xa8\x1c\x3b\x0a\xae\xc3\x35\x18\x78\x88\xd7\x35\xf5\xf7\xef\x4f\xbd\xb4\xf6\x15\x6a\x3b\x71\xef\x5c\xee\x6e\xd4\x11\xb7\xac\x79\xf4\xd4\x4d\x84\x4d\x98\xdb\xef\x6b\x19\x67\xda\x62\xc8\xb0\xfd\x15\x0a\x50\xb0\xf3\x3f\xc6\xe4\xa0\x34\x35\xbb\x56\xee\x1c\x3c\xee\xd6\x4e\x43\x8e\x25\x34\x99\xa1\x41\x04\x48\x82\x7d\x12\xbe\x09\x36\xd7\x46\xf6\xee\x6a\xf7\xd3\x6c\x60\x0b\xcf\xd4\x85\x31\x7a\x5d\x01\x3d\x5f\x6f\x08\xc1\xda\xbd\x28\x27\xd5\x39\xde\x32\x6c\x84\x30\x4e\x62\x91\x9e\x52\x36\x65\x90\xa4\x39\x05\xb3\x2d\x35\xae\x55\x5d\x74\x0f\x42\xed\x99\x28\x5b\x45\x14\x03\x5b\xf5\xdd\x40\x09\x27\x7d\xd7\xcb\x28\x00\xf6\x00\xf0\xc5\x22\x3f\xee\xcf\xa6\xaa\xf4\xc9\x55\x7b\xdc\x40\x50\xc2\x1d\x39\xe5\x37\xe2\x90\xbc\xa2\x90\x4d\x51\x1c\x4f\xf2\x42\x44\xbd\x37\x37\x57\x08\xd5\x67\x43\xab\x0b\x17\x31\x39\xec\x13\xa7\x44\x39\x28\x4d\x44\x6c\x5d\x93\x65\x91\x15\xbf\x4e\xc0\x10\x1a\x31\xa1\x31\x54\x93\x7e\xbf\xe2\x00\x4e\x55\x99\xad\x41\x60\xf2\xa5\xf6\x24\xe9\xa7\xb1\x90\x44\xc1\xb9\xe3\xfc\x06\xdf\x38\x46\xdf\x49\xc2\x18\x7e\x69\x1d\xc7\x7a\xbb\xa8\xe2\xb0\x3b\xba\xb9\xfa\xc4\x74\x13\x07\xc3\x81\x5d\x8b\xe5\x4f\x6e\xf7\x59\x5b\xe6\x5d\x63\x89\x25\x1c\x77\x2c\xa1\xa9\xec\x3c\x1a\xe0\xb1\xb5\x4e\x51\x31\x06\x1e\xc5\x35\x8d\x4a\xf9\x49\x45\x14\x2f\x8b\xc6\x05\x18\x18\x24\x0d\xaa\xa4\xb9\x2a\x1c\x1f\x0e\xbd\x39\xcf\x79\xc9\x53\x0a\x8c\x73\x4a\x21\xf7\x86\x36\x4a\x2a\xf4\x8f\x4a\x4d\xee\xa4\x0a\x85\xba\xe5\x17\x92\xab\x85\x45\xfe\xae\x42\xf6\xbe\x15\x38\x22\xf4\x57\x9e\x5a\xf3\x64\xfc\x37\x09\xee\x85\x25\xf8\x48\xa7\x61\x0b\x66\x76\x4c\x65\x20\x37\xf6\x70\x97\x36\x02\x9f\x69\x3b\xa3\xb9\x79\x2e\x35\x32\xc3\x99\x9e\x1d\x4b\x7d\x13\xfb\xfd\xbc\xea\x8c\x38\xef\x8a\xb5\x43\x6b\x96\x57\x1f\xf0\x84\x18\xac\x5c\x0c\xc3\x79\x1e\xae\x37\xd3\x2d\x4c\x5b\x5f\xfb\x8a\x57\xcd\x71\x8e\xd4\xdf\x85\x87\x06\x1b\xc6\x1a\x42\xa8\x93\x01\x68\x8a\x00\x8a\x15\xdd\x44\xc2\xa7\xe9\x91\x33\x2a\xc9\xb2\x3b\x85\x83\x96\x93\x7e\x2c\x7a\x8d\xaf\x60\x4a\x80\x9a\xf5\x2a\xbf\xc2\xa5\xea\x7b\x2d\xc5\x2f\x71\x8e\x0f\x57\xbe\xab\x85\x2a\x2f\x2e\x82\xf0\xc9\x6b\xc0\x5c\xc1\xfe\xe6\x1b\xe5\x29\x66\xf6\x95\x49\x94\x59\x88\x54\x61\x90\xae\x90\x83\x29\xc4\x00\xe5\xa4\x63\xa2\x99\x96\x00\xab\xe1\x36\x5e\x04\x89\xba\x8f\x02\x45\xf0\x91\x1b\x2e\x96\x8b\x00\xab\xc7\xf6\x69\x45\xeb\x7c\x98\x66\x85\x1c\xbe\xf8\x4e\xe0\xb1\xf9\xba\x12\x17\x4d\xe2\xde\x67\xe8\x05\xc8\x65\x37\x4f\x81\xd9\x0c\xbe\xc5\x4d\xe5\xfb\xbc\xfb\x44\xc7\xb3\x8e\xff\x9c\xdc\x44\x49\x63\x60\xc4\x98\x54\x00\x5b\x1d\x4b\x87\x85\xc8\x68\xd3\xfc\xf3\x27\x3b\x65\x6c\xe1\xe4\x5e\xcb\x75\x00\x78\xdd\x76\x72\xf4\x59\x3e\x4a\xf5\x96\x42\x96\x02\xc9\x82\xfb\x01\x49\x09\xe1\x84\x9d\xe9\x38\x9f\xf2\x8b\x9f\xc3\xc8\x09\x54\x5b\x41\xe9\x20\xc3\x4f\x63\xfd\xd9\xcf\x10\xba\x12\xdb\x9c\xd5\xc3\xb1\x53\xee\x22\x99\xcb\xad\xce\xd3\xd6\x97\xbe\xee\xba\x27\x1f\x72\xab\x3e\x4b\x67\x7d\x0e\xae\xd5\x51\xb0\x91\x0f\x81\xae\xa9\xa8\x3a\x4b\x42\x49\x7b\x70\x91\x5d\x79\x10\xa3\xc4\xc7\x77\xa0\xa8\xbe\x99\x6d\x82\x6f\x30\x32\x0c\xdd\xd2\x6d\x7c\xdf\xa7\x1d\x22\xaa\x70\x34\x65\xb0\x0c\x33\xc0\x44\x21\xa8\x80\xdc\x11\x53\xed\x60\xfa\x44\x38\xc0\xe7\x8d\x46\x93\x24\xb7\x31\xe0\xb7\x8e\xf4\xab\xfc\x25\xbe\x69\x10\x61\x6f\x27\x69\x56\x00\x14\x89\xef\x43\xb3\x2b\x9a\x0f\x8e\x28\x5d\xb9\xba\xa6\xf7\xb3\xed\xb8\x3c\x6a\x33\x10\x49\x49\xf4\xec\x3b\x4a\xce\x4e\x9f\x8a\xe4\xb0\x77\xd8\x0e\x4e\xb3\x21\xb8\xbd\x14\xf8\x40\xb7\xae\xf7\xbe\xb0\xb0\xaf\x9d\x58\xeb\x39\xa9\x9b\xe0\x53\x3b\x5d\xd9\xdc\x24\x4b\x31\x9b\x6c\xce\x12\x6a\x22\x8e\x0f\x7e\x89\x2c\x4d\x18\x4f\x36\x8b\xb7\x5d\x56\x86\x92\x65\x9b\xa5\xad\xe9\x49\x55\xee\x85\x8d\x86\xcb\xe3\x49\x58\x68\x76\xc4\xf9\x17\x23\x6b\xe2\x38\x5d\x9d\xf1\x75\xd2\xab\xc1\x26\x9f\x4c\x60\xba\x1f\x2b\x1d\xd5\x30\x1d\x95\xd1\x14\xad\x03\x81\x2a\xb4\x1c\x27\xd1\x2d\x45\x71\xf6\x91\xee\x71\xe4\xf5\x05\x0b\x72\x8d\x26\x54\xce\x5c\xef\xb7\xff\x40\xc9\xfc\x8d\x2c\xbb\x7b\x4e\xfe\xf8\x81\x8e\x2f\xc3\x3f\xa0\xc0\xa2\xac\x00\xd3\x7a\xe6\x19\x76\x97\x99\x58\x51\x0a\x9f\x94\xb4\x12\x6a\xe0\xa6\xaa\x2b\x8d\x98\xf4\x29\xa1\xae\x7c\x9a\x9e\x90\xaf\x95\xa1\x1d\x9b\x22\x8b\xc2\xb4\x5f\xe9\x14\xbe\xa8\xbb\x4e\x2e\x36\xb1\xd2\x76\xd3\xc9\x60\x58\xe0\xdc\x84\xf1\x42\x52\x1f\x3d\x45\x1c\x7b\xc0\xe2\xdc\xaa\xf6\xca\x8c\xc6\x33\x8a\x84\xf9\xae\x12\x96\x9b\xc3\x01\x27\x2e\x64\x5d\x4c\x76\x5f\xdb\xe6\x5d\x2c\x03\x98\x90\x63\x98\x03\xbe\x69\x4c\x1e\xc4\x2c\x12\x53\xad\x5c\xa9\xd2\x57\xcb\xf5\xbb\xd6\xf9\x41\x77\xef\xa6\xb6\xba\x96\x17\xb0\x3a\x3b\x55\xab\xf0\x6c\xf0\x77\xaa\x0d\xb2\x40\xe5\x44\xa4\xda\x5f\xfe\x1e\x0e\xab\x23\x3a\xce\xab\xd3\xc2\x53\x65\x25\xe9\x4d\x1c\x83\x9a\x28\xdd\xd0\x18\x8a\x04\x8e\x17\xfa\x28\x32\x93\xe4\xa1\x49\x4c\xcf\x50\x69\x59\x98\x4e\xbd\xdb\x72\x75\xea\x7b\xd2\x7e\x56\x2b\xa9\x3c\xbf\xd0\x7e\x65\x12\x85\x4b\xcb\x91\x5d\x69\xf9\x78\x95\xd7\xb3\x98\x55\xf1\x50\xf3\x51\x54\x0c\xf3\x34\x89\x0c\x10\x44\xf0\x7b\x6f\x4c\x55\x43\x22\x3e\x08\x63\x71\x5f\xf5\x1e\x95\xb1\xbd\x59\x62\x02\x7e\xf8\x04\x6f\xd0\x6e\x92\x2a\x84\xef\x8c\xb8\x02\x3f\x95\xff\x21\x50\xfd\xf6\xeb\xea\x6c\x0e\xcd\x38\x2a\x4c\x8c\x5e\x29\xfc\x38\x82\x0b\xf9\x72\x1a\x74\x04\x36\x5b\xd6\xea\x05\x82\xb6\x09\x43\x3b\xf6\x41\x17\x1b\xf7\xc0\x67\xa3\xd6\x1d\x91\xe5\x8a\xc9\x58\x6a\x4e\xd8\x2b\x69\xd5\x32\x57\xbd\x02\xb5\x33\x73\x84\xd0\x15\xd6\x99\xe5\x9e\x6b\x9b\xae\x49\x7a\xd4\x54\x55\xba\xa4\x8a\x4d\x48\x60\x91\x8d\x24\xf1\xae\x05\x46\x89\x80\x09\x7b\x01\xdf\x39\xcb\x1c\xa6\x49\x3f\x8e\xc2\x62\x46\xd5\x00\x91\x22\x43\x42\x6e\x9b\xaa\xc1\xde\xad\xf9\xb1\xbb\x77\x43\x8d\x86\x95\xeb\x2a\xea\xac\x38\x38\xde\x9e\xd6\x1a\x03\xd1\x37\xbc\xa5\xd3\xa8\xda\x11\x9b\x04\xca\x6a\xae\xc1\xc8\x0d\xf1\xd5\x40\xbd\xcf\xbb\x8d\xf8\x3f\x53\x86\x73\x8a\xf0\xa2\x4a\x04\xad\x1a\xc5\xb8\x29\xfd\x89\xf2\xa9\xf1\x4b\xf7\x94\x30\xcf\x0e\xe4\x37\xb1\x27\xfe\xcf\xa9\x62\xf2\x41\x43\x03\x3c\x28\x66\x33\x02\x6a\xee\x90\x2e\x7e\x5f\xc2\x5e\x87\x49\xbb\x88\xd4\x82\x4c\x03\xbd\x03\xba\x36\x50\xc1\xc3\x09\x01\x0f\x82\x53\x8d\x53\xd5\xb6\xbc\xad\x53\xba\x47\x0e\x36\xef\x32\xd6\xdb\x90\xb5\x95\xb4\x06\x15\x3c\x1c\x45\x4c\xb9\x9a\xf1\xeb\x75\x70\xfe\xf3\x0b\xed\xa1\x4d\x62\xcb\x58\x6b\x78\x64\x48\x79\xf0\x75\x47\xb6\x30\x19\x8c\xbe\xcd\x32\x04\x3a\xf3\x22\x4d\x33\x55\xfc\xc0\x68\x53\x82\x53\xba\xa1\x6b\x3e\x51\xf9\x39\x45\x72\x7e\x4c\xd7\xe6\x8f\x39\x33\x31\xa6\x89\xc8\xd2\x68\xc9\xcc\xa8\x2a\x50\x8b\x1e\x88\xb2\xad\x5b\x1f\xa3\xfc\x38\x8e\xad\x5f\xe9\x7c\x1a\xcf\xe9\x4a\xe9\x2a\x29\xa6\x57\x28\x39\x0a\xd1\x9b\xac\x77\x13\x86\x91\xf3\x73\x70\xbe\xdf\x53\x67\xfd\xbd\x26\x5c\xcb\xa6\xfa\x98\xe3\x58\xbe\xa0\x9a\xba\xea\xbc\x9c\x0b\x0b\xed\x28\x31\x3d\xfb\xca\x84\x04\x20\x1d\x1f\xdf\x15\x05\x1f\xbb\x52\xc9\x7b\x65\x36\xa5\x50\x15\x34\x58\x6f\x61\xbc\xa4\xe2\x5f\x1a\x6c\x09\x4e\xa8\x20\x82\x9e\x43\xd0\x2e\xf0\x27\x6a\x73\x4d\x45\xf0\x24\xcd\xed\x8c\x22\x27\x3b\xa3\x38\x16\xe0\x4f\xa2\xc1\xe5\x88\xeb\xc1\xed\x47\x26\x0f\x53\x64\x21\x10\x5a\x42\x63\x97\xaf\x11\xd8\x49\x1a\x62\x68\x32\x13\x16\x36\x23\x14\x8c\x23\x6c\x75\xd0\xf7\x3d\x7b\x9c\xf0\x88\xdf\x7f\xbd\x68\x39\xca\xa3\x34\x79\x48\xf1\x91\x5c\x0c\x1c\x77\xcb\x63\x7f\xac\xa5\xd5\x98\xa4\x16\xa1\xca\xa5\x40\x01\x44\x2e\x28\x9a\x43\x54\x47\x98\x59\x97\x41\xdc\x92\x4f\x55\x16\xe1\x4f\xa7\x1e\x50\xfd\xfa\x54\x91\x2a\xab\x9e\x6a\x6b\x88\x37\xff\x45\x47\x10\xbd\x4e\x9b\x53\x8c\xbe\x77\x31\x6d\x6c\xc3\x22\x4b\x93\x28\x64\xbd\x04\xd6\xa4\x0c\xfc\xaa\xff\xf7\xb4\xb8\xf8\x5a\xbb\xaa\xbf\x50\xf5\xaf\xf2\xc8\x30\xdc\xe3\xe3\x28\x53\x5d\xba\x44\xc4\x0a\x44\xef\x4d\xf1\xa4\x7f\x4f\x3d\x75\x3f\x4e\x53\xe0\x77\x5c\xb1\x6d\x7e\x3f\xbf\xe9\x87\xf4\x75\xd8\x59\x27\x38\x72\x14\xb5\x08\x9a\x02\xc7\x21\xe9\x19\xb2\x0f\xc3\x88\x31\xc5\x8d\xc2\x9e\x7f\xa2\xa5\x7f\x8e\xd4\xec\x70\x79\x5a\xc6\x71\xba\x42\xbe\x8f\x83\xfc\xaa\xf2\xd9\xa3\x8a\xc4\x32\x8e\xf3\x56\xf9\xcd\x4e\xd8\xd0\x45\x37\x1a\x9e\x14\x25\xe1\x64\xd4\x25\x15\xc4\x72\x88\x5c\x8f\x75\xb9\x46\xa4\xad\xda\x5b\x9e\x90\xbc\xfe\x6d\xbe\xf2\xf6\x16\x9c\x60\x06\xb8\x68\xb5\xf7\x0a\x74\xf7\x0a\x0f\x0c\x2a\x59\x1b\xaa\xf8\xfd\xdd\x9a\x23\xfb\xfc\x02\xf9\xda\x90\xa6\xdb\xe7\xc8\xb5\xc8\x24\x4b\xf3\x99\xde\x65\xe2\x1c\x84\x66\x34\xde\x7c\x54\x2e\x7a\x8e\xef\x05\x95\x7e\x2b\xa7\x45\x08\xb3\x7d\xcf\x4a\x77\x92\xe7\x51\x69\x32\x59\x53\x55\xa4\xb6\x74\x8f\x2f\x7d\x27\x12\x71\x55\x17\x3a\xcf\xd3\x96\xe6\x65\x64\x0c\x22\xdf\x28\x09\x24\x9b\x97\x07\xb1\xe9\xc1\x6e\x61\xc1\xfe\x4d\xe0\x9d\xa7\xbf\x69\x3a\x7d\xc3\x34\x12\xb8\xa6\x13\xe9\xf2\x82\x5d\xce\xb8\xa4\x2b\x89\x4b\xa0\x36\x26\xbd\x1d\x17\x6f\x3a\x49\xc2\x28\x9e\x6b\x7d\x75\xde\x67\xd5\x3c\xc1\xf3\x9f\x4f\x7d\x35\x0d\x54\x94\x82\x71\xa4\x6f\xc3\x2a\x7a\xab\x96\xc7\xfa\x55\x85\x2c\x2d\x57\x85\x48\x54\xd2\x37\xf3\x8d\x2a\x06\x17\x43\x4b\x5a\x50\xdb\x94\x87\x78\x4c\xe9\x5c\x7e\x17\xc6\x05\xf9\x92\xf3\x4a\xb2\x1c\xf2\xf3\xec\xef\x5f\xa1\xfd\x27\xe9\x92\x8a\xc6\x5d\x91\xa2\xd0\xac\xa5\x8d\x61\xaa\x58\x81\x10\x79\x88\x13\x8a\x65\xd4\xf6\x56\x22\xc1\x27\x8a\x79\x56\x35\x87\x3a\xee\x9f\x98\xdb\xe2\x68\xe0\x94\x62\x04\x01\x5a\xfe\x98\xa0\x44\x1b\x96\xf8\xca\xd0\xba\xee\x5c\xd4\x4c\xce\xa2\x16\xc3\x37\x6e\x4e\x07\x71\x54\xbc\x0a\x5a\x38\x24\xff\xfe\x40\x71\x83\xfe\x41\x13\x01\xed\xd0\xc4\xfd\x32\x42\x72\xa0\x30\x54\x64\x91\xef\xe5\x6b\x17\x02\x8f\x33\xbb\x6c\x62\x29\x37\x61\x66\xaf\x2a\x11\xd4\xab\xce\xf9\x1e\xa6\x23\xb0\x1b\xc0\xab\xe2\xea\x17\xdf\xac\x35\xa8\x87\xd8\x64\x60\x9c\xb0\x0a\x72\x9f\x77\xe0\xa6\xf2\x8d\xaf\xda\x31\xe9\x11\xc5\x10\x48\x76\x21\x86\x40\x49\xf8\x7f\x87\xd7\x85\xc2\xfd\xd6\x35\x45\x67\x91\x4e\xe0\x6d\x60\x76\x18\xf6\xc6\x37\x35\xaf\x7f\xf1\x85\x7d\xed\x30\x33\xe1\x52\x2f\x5d\x41\x3d\xc3\x31\x5a\x78\x76\x0b\x27\x1a\xf2\xca\x24\x1a\x73\xb0\xc1\x3f\xdc\xf1\x7c\x30\xbc\x5b\x60\xcd\xaf\xe8\xd6\xec\x1f\xab\xda\xcd\x38\x1a\x4b\x03\x1c\xce\x8d\x33\xaa\x06\x72\x46\x9d\xd9\x71\x14\xda\x24\xb7\xf9\xac\x57\xb2\xba\x09\xd7\x96\x6f\x68\x42\x90\xc2\x7c\x5f\xa3\x08\xdf\x6f\x2a\x21\x8e\x33\xdb\x8b\xbc\x5c\x01\x80\x10\x6f\x2b\x81\xaa\xb7\x5d\xd5\xc8\x74\x89\x10\x48\x92\xed\xf0\x10\xde\x55\x3d\xe8\x57\xa6\x8a\xa3\xf1\x4c\x2d\xed\xbc\x7b\x37\xb4\x17\x22\x4a\x58\xd0\xcf\x21\x9b\x81\xee\x5c\xbe\xae\x45\xd7\xbb\x77\xb7\xd3\x30\x9c\x64\xc2\x76\x23\xe4\xd2\x9a\x69\xba\x66\x5d\xf6\xbf\xd0\x2e\x1d\xa2\x81\x45\xbd\x03\x8f\x74\x5d\x9f\x54\xd7\x1b\x01\x58\x23\x3b\x4a\x33\xd3\x8d\xe2\xc8\x60\xbb\xe1\x74\xbd\xab\xb4\x9c\xea\xd1\xd7\xc2\x42\xbb\x58\x21\xf6\x60\x7a\x40\xc4\x31\x2c\x1a\xca\x37\x35\x3b\xbd\x67\x0f\xd7\xa5\x5a\x4e\x80\x02\xa7\xb3\xb0\x2a\x7b\xe3\x84\x4c\xcd\x36\x9d\xed\x07\x8a\x1a\x09\xc4\xbf\xa1\x6c\xb4\x6b\x3b\x72\xdb\xf6\x9c\xae\xc3\xdf\xd0\xbc\x35\x4d\x5d\xea\x8b\xed\xcc\xe6\x93\x91\x4c\xae\x64\x14\xbc\x1d\x3d\x8a\x01\xc7\x1a\xbb\xae\xd6\x23\x39\xd6\x51\x9a\xcc\x54\x60\x65\x95\xde\x0f\xbf\x53\xff\xc3\xe6\x4e\xce\x67\xdb\x07\x76\x2d\x3c\xae\xb2\x26\xdc\x19\x0f\x8e\x87\x16\x65\xdd\x31\x24\x77\xe0\x71\x62\x4f\xfd\x35\xd5\x8c\xa5\xd2\xaf\x21\xce\xe7\x15\x15\xcc\x75\x4d\xda\x7c\x5a\xf3\x8d\xdf\x0e\xca\x68\x8e\xe5\xca\xc9\x41\x13\xd8\x4f\xb9\xab\x84\xcb\x5e\xc5\x41\x7f\xa4\x79\xc7\x37\xa6\x5e\xeb\xe6\x0c\x1a\x3e\x59\xf4\x55\xb1\x70\x5e\xab\xe4\xc0\x73\xc3\x4a\xe5\xc8\x54\x7d\xb7\x42\xf7\xdc\x52\xbd\x81\x8f\xe8\x4e\xcc\x62\xbb\xef\xb4\xfb\x83\xc0\xb7\x82\xfc\x75\xa0\x78\x6d\xae\x28\x7d\x3b\xf6\xaa\x9c\x4f\x59\x3e\x33\x7f\x04\xa3\xb4\x71\x4c\x33\x44\x5b\xbb\x94\xcf\x78\xd8\xcc\x1c\x98\xe3\x85\xdb\x91\xbe\x4a\xb8\xd8\x6a\x7d\x8e\x7b\x17\xdb\x26\xcc\xd2\x9c\xcf\x6f\xa7\xf6\xf0\xbc\x57\x7b\x68\xc0\x12\x8f\x26\x79\x18\xeb\xce\x9f\x0b\xaa\xf3\xe7\xc2\xd4\xf7\x7a\x8c\x6d\x06\x19\xf0\x96\xeb\x50\x07\x2c\x8e\xaf\x1b\xe0\xa3\xed\x7c\xd2\xcd\xa3\x9e\xd7\xb0\xc4\x30\xac\x2b\x15\xda\xf5\x4a\x47\x4c\x1c\x47\xcb\x26\xd1\x60\x88\xc3\x58\x7d\x7c\x53\xe3\xba\xdd\xb3\xa7\xbd\x2a\x34\xb2\x08\xb5\xdf\x55\x90\xd6\x77\x2b\x51\xe4\xc8\xd8\x19\x25\x71\x75\x5f\x91\x2b\xae\x53\xc7\xb1\x68\xbf\x3e\xa9\xd8\xc8\xfa\x36\xb3\x49\x58\x3e\x7f\x69\xd0\x51\x98\x07\xfb\x1f\x5f\x07\x1e\xd7\xd5\x35\xb9\xdd\x4e\x13\x86\x75\x0c\x09\x25\x64\x75\xfe\x6f\x05\x6b\xdd\xd2\xf1\xb8\x2e\x2e\x3d\x61\x82\xf8\x60\x42\xdb\xf8\x45\x9d\x3d\x6c\x4a\x0a\xb5\xfb\x86\x3b\x29\xa5\x27\xf9\x38\xc2\x14\x81\x62\xf9\xf7\x18\xc7\x66\x75\x85\x8a\x94\x33\xbe\x37\xe2\x16\x3d\x92\xc0\xcc\x2b\xec\xdf\x3e\x95\x6f\x96\x6d\x32\xb1\xb3\x15\x99\xb7\x96\x52\x60\xf5\x3c\xbb\x68\x65\x14\x29\xd5\x86\x26\x80\xcc\x96\x87\x86\x2b\x8b\x38\xd8\xb5\x02\x5c\xfb\x58\x25\x9b\x8c\xd2\x2c\x9f\xa1\x51\x47\x32\x7a\xcb\x9a\x57\xc4\xdf\x41\x7d\xdc\xc2\x5f\xf6\x98\x5a\x41\x61\x68\xf3\x7c\x9b\x76\x7a\x7d\x55\xfe\x0d\x8c\x35\x9a\x6d\xd6\xb1\x31\x91\x20\xf8\xf1\xd4\xf3\xdb\xfc\x80\x2c\x99\xf0\xac\x7a\x95\xf3\xac\xb0\x80\xf4\x32\xf8\x06\x23\x26\x48\x1c\xc7\xa1\x41\xdc\xc1\xb3\x7e\x94\x7f\x3a\x55\x14\xd1\x73\x1d\xef\x58\xf2\x81\x89\x3c\xcc\x4d\x35\xe4\x39\xf1\x36\x92\xef\xab\x33\xea\x52\x3c\x6e\x39\xa1\x91\x1b\x0d\xa4\x87\x2f\xb5\xc3\x49\x51\x91\xd5\xa6\x9f\x17\x5d\xed\x7a\x2e\x75\x1e\xed\x58\x93\xac\x7c\x6a\xf7\x76\x2c\xfe\xcb\x94\x01\x9a\xa6\xfd\x4d\x7c\x21\x4e\x92\x6b\xce\x17\x59\x19\x46\xe1\xd0\x2e\x4b\x9f\xba\x48\xbd\x7a\x48\xdc\x4d\x05\x80\xcc\x27\xe1\x70\x27\xce\x08\x49\x18\xd1\x2f\x48\xef\xa7\xc7\xf2\x5f\x02\x81\xae\x38\x85\xf4\x50\x70\x83\x40\xc1\x81\xfc\xc1\x55\xac\x7b\x1c\x4b\x57\xe8\xf8\x55\xfc\xe2\x2f\x55\xf5\x9a\x59\x49\x48\xa1\xd1\x1e\x07\x8d\x85\x63\x39\x71\x47\xc9\x09\x5d\xc3\x9f\x43\x5e\x51\x74\xf9\xb4\x70\xc9\xe8\x20\x6d\x2b\x04\xbb\xf0\xbf\x91\x6a\x3f\x43\xad\xf5\xa2\xeb\xd8\x94\x24\x66\x71\x59\xdf\x2e\xc8\xd9\x40\xbe\x69\xe2\xe5\x8a\xa3\x24\x4c\xe3\x44\x35\x65\x9c\xad\xec\x5e\x05\xa7\x9d\xc4\x4b\xdb\xbc\xf3\xc9\xc2\x29\xf0\x60\x7f\xae\xe8\xf6\x2f\x07\x9e\x16\xe1\x7b\x78\x67\xa6\x6e\x98\xfa\x55\xa8\xd9\x0b\x8c\x2d\x12\x43\x68\x49\xfc\xdd\x91\x40\xd1\x06\x9e\x23\x98\x08\xff\x03\xcd\x25\x73\xfb\xa2\xb8\x2d\x9d\x90\x34\x65\x48\x7d\x7c\x27\x50\xed\x92\xb5\x45\xbd\x77\x57\x7b\x29\x89\x0a\x24\x5a\xd9\x43\xd0\x4c\xf8\xc7\xa6\xaa\x66\x76\xcb\x65\x14\xba\x93\x2c\x99\xf5\x42\x6c\xef\xe3\x23\xf8\x91\xd9\x4e\x15\x7d\xe4\xe2\xa2\x4b\x6e\x41\x67\x36\x4c\x47\x23\xcb\xfd\x3c\xc2\xd4\x46\xdf\x21\x14\x6e\x0d\xc0\xff\x41\x94\xc5\xdc\xc8\x8c\xd9\x00\x61\x37\x6b\x29\x2b\x12\x4b\xdd\x3f\x9f\xaf\x26\xc5\xd0\xe6\x11\x8e\x56\xe6\xfa\x57\xa2\xb0\xeb\x4d\x55\xb4\x3c\x8d\x7b\x73\xe5\xa3\xa1\x08\x86\xaa\x9f\x12\xb7\x17\x83\xf1\x1e\x7d\x11\x4b\x09\x4e\x55\x88\xb5\xa3\xe3\x5d\xc6\xa5\x34\x4b\x8b\x28\x1c\x2a\xe7\xb7\x5a\xaf\x56\x25\x28\x93\x85\x69\x6e\x99\xbb\xc2\x65\x40\x7c\x36\xa4\xa1\xe0\x3e\x8e\xad\xc9\xe1\x63\x48\xc1\x43\x33\x24\xfa\xf4\x4a\x94\x2c\xa7\xf1\xb2\xeb\x56\xc4\x94\x82\x9f\x14\xbb\xfe\x07\x2a\x73\xf2\x47\x5a\x1b\xe1\x62\xd3\x4e\xe9\x9b\x70\x12\x17\xab\x2d\x25\x46\x79\x4a\xa1\x9c\x4f\xd5\x00\xb7\xcf\xb6\x0b\x93\x17\x78\x52\xac\x34\xe8\x10\xf0\x75\x43\x72\x67\x5f\x3b\xb3\x31\xb3\xcc\x8a\x3e\x72\x69\x40\xf8\xba\x32\x70\xcb\x36\x8b\xc2\x25\xa5\x48\x7b\x3d\x50\x09\xc3\xeb\x9f\x4a\xdc\x16\xdb\xae\x49\x98\x91\x56\xbc\x3f\xd5\x1f\x74\x22\x78\xd8\x0b\x79\xda\x7c\x8e\xfe\x49\xce\x46\x0f\xfc\x3b\x56\x49\x3a\xb5\xbe\xf6\x15\x47\x12\xe2\x13\xb1\xc7\xd4\x1e\x9f\xe4\x36\xcb\x89\xdf\x4e\x68\xa5\xc9\xb2\x0b\xdf\x34\x6d\x78\xa1\xc3\xa2\x8d\x2d\x7c\x58\x0d\x8c\x5b\x76\x34\x8e\xd3\x55\xc9\x26\x48\x61\xc0\xc3\xd4\x2e\x4c\x3d\xd7\xcd\xaa\x99\x51\xc9\xcc\xef\x6b\x85\x88\x93\x38\x0d\x98\xe8\xc7\x6b\xbe\x44\x71\xcf\xae\x60\x96\x25\xc2\x6f\x79\x7a\xaa\x26\x3a\x6f\x88\x66\x19\x66\xec\x67\x2b\x58\xb1\x88\x0a\x26\x6d\xf2\x9c\x23\x49\xc9\xc0\xaa\x44\xda\x7a\xe0\xd9\xab\x46\x26\x99\x48\x31\x15\x07\xc0\x45\x95\x7f\x63\xcb\x2e\x68\x71\x8f\x7f\x29\xca\xb8\xb8\xc0\xc7\x9c\x6a\x9e\x13\x27\x79\x13\x67\xa3\xb8\xf0\x8f\x3b\xfb\x94\x8f\x95\xac\x21\xda\x51\xe0\x65\xf2\xb5\xf2\xa6\x46\x69\x31\x64\x3c\x27\xec\xf2\x86\x6a\xd2\xde\x50\x8e\x22\xc9\x42\xe5\x45\x14\xd2\x32\x92\x42\xc3\x5f\x28\xcd\x99\x53\x88\xfa\x1c\xb1\x96\xa3\x8f\x3a\xaf\x1b\x75\x15\xcc\x31\xcc\xac\x29\x6c\x8e\x6e\x45\xd4\x04\x19\xa7\x24\x24\xc6\x3e\xad\x52\xef\x17\x27\x29\xc6\xe8\x20\xf3\x45\x4b\x4c\xa3\x64\xd1\x50\x2b\x14\x3e\x04\xff\xca\xac\xd4\x57\x7e\xca\x55\xff\xbd\xb4\x45\x3d\x14\x7a\x96\x64\x81\x9d\x77\x8a\xb8\x60\xb6\xe3\x63\x84\xd9\x1a\x46\xbc\xb4\xc2\x23\x2b\x85\x1d\x64\x69\x41\xe0\xcd\xd7\x9d\x26\xac\xe0\x20\x8b\xc6\xa0\xb2\x12\xa5\x84\x2d\x1d\xc5\xe5\x72\x6b\xea\x0f\x8c\x43\x35\xb4\xf8\xb3\xed\x62\x68\x8a\x6d\xe5\xae\x84\xa7\xfd\xef\x02\xcf\x18\xf5\x17\xb4\x57\x36\xb8\xae\x8a\x2d\xb3\xa3\xe3\x21\x7e\xeb\xd3\xd6\x8b\x8b\xae\x72\x53\xb7\x7d\x43\x1b\x4b\x52\x13\xa9\x7e\xe6\x87\xe4\x1b\xc5\x49\x44\x99\xe2\x9e\x9d\xf3\x0d\x59\xe7\xb4\x0b\x72\x14\x6e\x17\x4c\x36\x13\x3a\xf0\x0d\x4d\x36\x32\x55\x37\x6b\xb8\xae\xbd\xbb\xf6\xb6\xc3\x34\x87\xff\xea\x48\x09\x17\x1c\x41\x61\xf0\x98\xaa\x7c\xf4\x26\x21\x86\xf1\x39\xce\x25\x6f\xed\xf8\x1c\xcc\x2d\x15\x7a\x1d\x57\x5b\xad\x67\xfb\xb1\x0d\xb9\x5c\xc2\x64\xf0\x5a\x8b\xa5\x8e\x2c\x27\x1e\xf1\x34\x8f\x8a\xc8\x73\xb8\x4a\xbd\x88\x4e\x53\xbe\x51\x05\xa7\x57\x26\x51\xc1\xfc\x5b\x92\xe7\xf2\xc9\x85\xf3\x60\x31\x82\x7b\x0b\x19\x78\x56\xa7\xa8\xe5\xbf\xf6\xec\x01\x3a\x9d\xc5\x35\x90\x08\x12\xdc\x94\xaf\x1f\xa2\x1b\x11\x3b\xeb\x98\x8a\x23\xc6\x43\xe3\xce\x69\x84\xb6\xdc\xf7\xc6\x37\xca\xc4\x0d\x86\x69\x5e\xe4\xb3\x34\x10\x8c\x86\xd5\xad\x1b\x80\x6b\x3a\x98\xac\x6f\xf0\x58\x0f\x9e\xd0\x18\xe5\x2c\x5d\xb1\x19\xda\x6d\x10\x3f\xa1\x74\xc9\xd7\x1a\x76\x92\xf6\xc6\x91\x0d\xed\x2f\xa1\x04\x6f\xa2\xce\x5b\x89\x8a\xd2\x47\x39\x20\xc1\xf3\x69\x85\xc7\x38\xad\x0a\x5d\xf9\x24\xa3\xd4\x75\x69\x64\x44\x87\x86\xcc\x0f\xdf\xac\xf9\x8c\x4b\x19\x6b\x65\x0f\x7b\x34\xea\x43\x14\x65\xe2\x44\x3e\x43\x6e\x31\x32\x21\xdb\xd6\x54\x16\x1b\xc4\x65\x18\xc6\x9d\x60\xfe\xc1\x63\xff\x2f\x00\xdd\xf0\xc7\xa7\x0a\xa0\xce\xed\x6b\x82\xc6\x6c\x39\x2a\xcf\xc7\x10\x69\xf1\xe7\x71\xda\x61\x6b\x7f\x50\xcb\xa8\x08\x4b\xd1\x2f\x57\xb3\x6d\xc8\x14\xe4\x91\x10\xc6\x32\x0c\x3d\xf0\xb1\xfa\x4f\x1a\x41\xd8\x63\x9b\x24\x16\xa7\xa3\x93\xb1\x2e\x5f\x40\x28\x01\x9f\x52\xd4\xe7\x36\x9c\x88\xf0\xab\x47\x9c\x72\x46\x8c\x6f\xa6\xaa\x2f\x61\x34\x8e\x3d\x61\xbb\xab\xd7\x1f\x9e\xaa\xe2\xfd\x61\x45\xe9\x92\xd9\x3c\x8d\x97\xb9\x11\x07\xa6\x08\x29\x08\xbe\x6e\xf0\x37\xf3\xb4\x5f\x40\xd8\x64\xd1\xb1\xa0\xd2\xfc\xb3\xae\xa0\xca\x60\xd4\xa3\xb2\x97\x5f\x6e\x17\xf9\x24\x31\xa3\x48\x1d\x39\xb7\x83\x32\x90\x93\x04\x91\x56\x81\xae\xb6\x46\x99\x18\x9b\xc8\xb5\x23\x95\x63\x20\xd6\x97\xd6\x06\x1e\xe1\x2c\x6d\x0c\xbe\x56\xf6\x69\x90\x52\x81\x51\x13\x60\x7c\x12\x28\x25\xfd\x4f\x9a\x90\x83\x63\x38\x28\xf4\x19\x61\x19\x56\xb9\xee\xf3\x6a\xe3\x8d\x6d\x52\x98\x01\xda\xdf\x19\xd5\x72\x55\xf3\x1f\x7c\x47\x8b\x37\x9d\x52\xda\xbd\xef\xab\x32\x5b\x98\x99\x7c\x88\x9f\x83\x8b\xc5\x80\x2d\xbe\xa9\x4a\xfd\xe4\x96\xdb\xe6\x5d\xd8\xee\xbc\xbe\xad\x1d\xc5\x1b\xc1\x0d\xac\x9e\xc5\x5e\x8d\x9b\xe7\xe6\x78\xcb\xf5\x79\xd8\x3c\xb7\x49\x11\x39\x5c\x05\x8b\x67\xd3\xb8\x8a\x90\x76\x05\x58\x3e\x40\x62\xd5\x21\xe5\x5c\x16\xf3\xe3\x40\xf5\x2a\xfc\x71\x53\xb9\x6f\x68\xf2\xdc\x24\x2d\xdf\x1c\xc7\x01\xb7\x60\x16\x1b\x98\x00\xcb\x59\x2c\xaa\x3c\x67\x17\x34\xcf\xd9\x85\xca\xba\xb1\x71\x8a\x62\x15\xab\x54\xc2\x14\x3a\xc9\xca\x4f\x13\x2f\x97\x82\x70\xdf\xc6\x71\x94\x44\x5a\xa8\x60\xaa\xa8\xff\x9b\xdb\xb0\x97\xd3\x28\x64\x6a\x4c\x66\xa4\x57\xc4\x7b\xa7\x6b\xa1\x51\x69\x7b\x24\x88\x63\x7d\x12\xcd\xe1\x77\x5e\x91\xb8\xf6\x4d\x4c\xe8\x62\xed\x1d\xf8\x53\x5c\xb7\x5d\x12\x4b\x0c\xfe\x10\x3e\xc1\x6d\xe5\x1f\xdc\x56\x89\xf1\x91\xc9\xf2\x61\xcb\x37\x32\x9f\x55\x4a\xea\x67\x83\x47\x95\x63\x62\x38\x8a\x85\x9b\x7d\x5a\xfb\xdc\xa7\x95\x55\xb1\x07\xc3\xa8\x10\x71\x07\x11\xd8\x6c\x29\xe1\xcd\xba\x7f\x38\x34\xc9\x40\x5c\x4a\x2c\xd3\x4f\xe0\x9a\xf3\x4d\x13\xc8\xa8\x1d\xe5\xf9\xc4\x2a\x62\xe9\xf7\xa6\x8a\x58\xfa\xbd\xa0\xa2\x20\x51\x10\xb3\x1f\x78\x27\xef\x2a\x26\xf7\xeb\x55\xc6\xed\x2a\x71\x97\xc9\xa2\x78\x75\x4e\x01\x26\x6f\x62\x0b\xc3\x5b\x9f\xe9\x78\xd1\x1a\xd0\x23\x89\x12\xb8\xf7\x1f\xce\x22\x97\x05\xaf\x39\x1b\xad\x22\x49\xce\x48\x63\xe5\x47\xa1\x2f\x11\x99\xc4\xbf\xd0\xda\x9e\xe9\x4a\x8c\x43\x9f\xe1\xf7\xaa\x00\x7d\x44\x25\x67\x33\xdb\x9f\x50\x20\xe5\x76\x2b\x4a\x0d\xb2\x21\x1a\xd2\x63\x2b\x06\x93\x44\xc3\x8c\xc4\xdd\x39\xd5\x92\x71\xae\x41\xc3\xa5\xf4\x4d\x97\x6d\x56\x44\x02\x49\xc5\xfa\xbc\xa5\x92\x3c\x75\xca\xed\x32\x22\xcc\xd2\x74\x29\x5e\x45\x94\x8d\xe0\x8d\xbb\x8c\xf9\xc6\xc1\x2f\x06\x36\x33\x71\x2f\x25\x69\x20\x41\x56\x23\x99\x09\xdc\xf9\x31\x1d\x1e\xde\x56\xd9\xb8\xa2\x48\x67\xd5\xd8\xde\x53\x04\x4e\xc7\x95\x1e\xc0\x19\x32\x7e\x8c\x35\x56\xe5\x11\x7b\x70\x4c\x75\xe6\x39\x5d\x9c\x53\xc0\xeb\xc3\x58\x26\xc8\x8d\x9c\x55\xfa\x27\x5b\x3b\x2a\xef\xa7\xbb\x62\xbb\x69\xba\x24\x74\x5a\xc8\x85\x9d\xa5\xe7\x40\x86\x1c\x89\x4c\x91\x64\xaf\x1c\x73\x71\x82\x63\x4e\x94\x35\xca\x3f\x84\x6b\xd4\xea\x28\x0a\xa9\x93\x3c\x2e\x00\xfe\xbc\x5e\x9b\xad\x3d\x7b\xda\xcb\x69\x3c\x49\x0a\x5a\xc4\x74\xdc\xba\x6e\x47\x1f\xcc\x43\x1e\x1d\x29\x9b\xdb\x8d\x94\xca\x2b\x51\x32\xc8\x5b\xad\xaf\xce\x4b\x6e\x1f\x1f\x97\x44\x7f\x13\x6f\x48\x61\x93\x9e\x28\x6c\xcf\x0b\x4c\x29\x50\xa2\xc4\x9a\x86\x21\x4b\x07\x16\xd8\x65\x71\x9e\x99\xef\x51\xa4\x53\x2b\x9d\xcd\xfe\xb4\xaa\xab\x72\x94\x4f\x1b\x8d\x48\x6e\x77\x46\x51\xfe\x5c\x57\x3c\xa3\xcc\x36\x2c\x76\xc8\x2f\x9f\xfd\xd1\xb8\x55\x69\x17\x2f\x97\x89\xf4\x91\x2b\x46\x00\x33\x36\x61\x54\xac\xce\xf9\x9c\xdc\x2d\x4a\x43\xe3\x00\xe6\xd8\x0c\xcd\x14\x37\x02\x4f\x5f\x75\x2b\x50\x18\xa2\x33\xea\x77\xc7\xe9\x78\x4e\x21\x8f\xaf\x68\x5e\xa9\x93\x2a\x9d\x06\x55\x4a\xc0\x32\x4f\x29\xad\xe7\x73\xee\x9c\xe2\x2e\xec\x99\x4a\xe7\xb5\xb7\x8d\x20\x0f\x80\xf3\x3c\xd7\x11\x28\x47\x61\xf2\x61\x44\x46\xa3\x51\x3a\xd8\xc7\x3b\x83\xcc\x12\x11\x82\x7f\x08\x5a\xc0\xf2\x40\x2a\x3c\x08\xd3\xcc\xe6\xea\x38\xaf\xea\x77\x3c\x51\x2f\x88\x3f\x4e\x06\x08\x49\xd4\x3f\x9b\x2a\xf5\xad\x3f\x0b\x14\xa0\xf9\x14\x3c\x3c\x4d\xa6\x87\xe9\x79\x04\x2a\x82\x2e\x6c\x2c\xc7\x4f\xea\xd3\xe4\xf5\xc2\x97\xfc\xa9\x5a\x47\xb3\xe0\xde\x95\xe0\xd2\xf7\xe6\xb1\xa8\x8f\x88\x58\x79\x13\x72\x98\x5c\x54\xd9\x26\xad\xaf\x7d\x85\xb1\x18\xff\x86\x7c\x7d\xe9\x6d\x2a\xb7\x3a\x7e\xe1\x68\xe9\x93\x4b\x34\xad\x7b\x85\xe9\x5d\x75\x0b\x04\x5f\x37\x64\x0c\x4c\xcf\x71\xb9\x22\x88\xe5\xf6\x7f\xbe\x51\x93\x93\x47\xc9\x20\xb6\xdb\x14\xe3\xe8\x4f\x90\x35\x74\xc1\x9f\x97\xcd\x66\x8d\x69\x47\x07\xec\x49\x67\x15\x20\xa3\xde\xd8\xb5\xff\x85\x76\x61\xcd\x08\x00\x13\xa1\x3b\x55\x3d\x9d\xa7\x82\x07\xf8\x2f\x7b\x66\xb6\x42\x60\xe0\x1b\x56\xde\x0c\xbc\x1d\x46\xe9\x5c\x92\x47\x9b\x33\x31\xf3\xfb\xdb\x99\x29\x14\xed\x06\x98\xac\x44\x93\xf1\x51\xdd\x5c\x12\x15\x15\x3f\x70\xea\x7d\xd4\x0b\x8a\xe4\x7c\x9c\x45\xcb\xa6\xb0\x0f\x79\x01\xd8\x6f\xd2\x40\x6c\x00\x44\x22\xa6\xcd\x73\x54\x7c\x6f\xaa\xea\x56\xf7\x02\xc5\x6e\x7c\x18\xef\xed\x8e\x82\xbd\x8b\xbe\x20\xe5\x74\x34\x6e\x28\x26\x70\x2e\x46\x32\xc8\x78\xb3\x2c\xfd\x8b\x7b\x77\xb5\x0f\xec\x5a\x68\x95\x27\x9e\x98\x39\x65\xf2\x94\xff\x65\xc6\xe3\xd8\xee\x28\x1f\x11\x69\xf9\x13\x40\x98\xc2\x81\x60\xee\x0a\xbe\x99\x2a\x84\xe9\x7b\x4a\x5f\x55\xd3\x85\x1f\x42\x50\x28\x65\xc8\xf2\xd9\xf9\x7b\x6b\x05\x66\x40\xa7\x42\x42\x4f\xc3\xab\x95\x62\x88\x2a\x8c\xf8\x32\x6d\x68\x13\xe1\xea\x91\xa6\x67\x95\x75\x7e\x4b\xb9\x37\x84\x75\x6a\x79\x03\x81\x93\x55\x5c\xff\x06\xee\xa0\x71\x34\xb6\x1a\xab\x74\x46\x99\xb5\x33\x8d\x82\x2e\x45\x66\x7a\x02\x91\xc0\x59\xc9\x5d\xfa\x7c\xd3\x10\xd2\x7b\x0d\x4b\x29\xf4\xdc\xc0\x14\xf2\x8d\xda\x7a\xe1\xd0\x24\xa1\x9d\xab\x90\x24\x95\x6b\x4c\xa4\xd3\xe9\x97\x84\xb9\x56\x49\x8c\xdd\x53\xcc\x90\xdb\x6b\xbd\x3f\xac\x96\xd7\xb7\x99\x95\x81\xc4\xa1\x07\xf7\x8f\xaf\x9b\x6a\x64\x45\xe9\xe5\xb6\xbc\x5f\x89\xee\x6e\xd1\x67\x7f\x4c\x69\x58\x44\xb6\x1f\x23\x07\x01\x13\x74\x4f\x99\xa3\x7b\x1a\x9a\x92\xd9\xdc\x66\xcb\x76\xae\x5c\xe8\x8a\x54\xda\x33\xe2\xb4\xf6\xee\xda\x38\xa7\x05\x69\x7f\x5e\xc1\x6d\x37\xa0\x15\xc6\x26\x31\x79\x9a\x44\xe1\x8c\x6a\xdc\xbb\xad\xa8\x3c\x90\x14\x93\xa6\xf2\x47\xdc\x69\xb5\x6c\xb3\x44\x45\x49\xdf\x54\xbd\x2c\xdf\xd4\xe5\xa0\x34\xc9\x23\x3b\x61\x9c\x34\xb6\xed\x69\x75\x9a\x5e\x24\x5b\x87\x12\xcd\x1b\x4a\xf7\xb2\x17\xe5\x69\xd6\xb3\x59\xcc\xbc\x12\xd2\x8d\xab\xb2\x72\xdf\xaf\x39\x49\x5f\x84\xb0\x94\xd8\x6a\xd8\x85\x1f\xa8\x0a\xdf\x0f\x7c\xc3\xe7\x68\x60\x93\x19\xdf\xf4\x7f\x46\x31\x4e\xb1\xa2\x1d\x5c\x84\xeb\x15\x04\x75\x5c\xac\x3e\x00\x67\x4f\xd0\x27\xb4\x92\x70\xc8\x63\x25\xe1\xc4\x23\x32\x80\x8d\x35\xec\x36\xe6\x7f\x0b\x14\xda\xba\xb5\xa6\x21\xf1\x74\x44\x08\xb1\x39\x8d\x14\x46\xe4\x0f\xab\xf4\x98\x49\xbe\x8d\x3a\x38\x5d\xa0\xf3\xcc\x33\x2e\xd0\x51\xea\xb8\x47\x75\x66\x1c\x66\x58\x0c\x83\xcf\x4a\x1c\x55\x05\x9d\x9e\xed\xdb\xb0\xc8\x69\x38\x04\xaf\xe4\x87\x63\x4b\xc7\xe7\x0d\x2f\x4f\x9f\x54\x49\x96\x6c\x1c\xdb\x83\x14\x2b\xce\xef\x77\xdd\x4e\xe5\xcf\xf1\x75\xcd\x0a\x94\x66\x23\x4b\xbd\x74\x28\x72\x79\x97\x54\x5e\xef\x52\x25\x9b\xb1\xb4\x64\x66\x7c\xd9\x87\x23\x71\x31\x8d\x6a\x45\xfd\xb4\x89\x05\xb0\x6b\x63\x8e\x8d\x04\x6c\x5f\x7a\x0e\x82\xaf\x7f\xdc\x21\x59\xa8\xcf\x93\xd4\x58\xca\xb3\x19\x35\xd0\xb7\xa6\xbe\x36\xfa\x56\xcd\xb3\xa6\xcc\xa1\x29\x83\x7f\x2e\x57\x82\x04\x91\xb3\x11\x7c\x53\xfb\xd4\xfc\xfe\x76\x77\x52\x14\x36\xeb\x9b\x42\x15\xc1\xee\x6a\x7a\x1b\x1c\x38\xa8\x52\x9e\x72\xe2\xe0\x45\x3a\x9a\xf3\x43\xf4\x81\xee\x1a\x07\x44\x48\x14\xac\xa9\x5d\x5f\xaa\x47\xc8\x47\x49\xba\x54\x33\x24\x8c\x63\x13\x96\x9e\x79\xb9\xea\x60\x66\xde\x53\xaa\xaf\x87\xc8\x7b\x12\x5e\x60\xff\xb9\x9e\x29\x4c\xd7\xe4\x56\x1f\x27\xeb\x8a\x4f\x63\x5d\xb1\x55\x92\x37\x00\x27\x15\xc6\x1d\x42\x06\x7c\xad\x22\xf1\x6e\x9c\x86\x04\x5f\xc0\x44\x9e\xf7\x82\x0b\x5f\x79\x9c\x0a\x1d\x58\x4a\x37\x75\xab\xe8\xbd\xe9\x7f\xf6\x29\x25\x64\xd3\x1b\x45\x49\xe4\xe9\x60\x5c\x82\x84\xc5\xe7\xf9\xa6\x29\x06\x1f\xd8\x51\xde\x4d\x97\x34\xc6\xee\xba\xc2\xd8\x5d\x6f\xec\x2a\x8e\x0d\xe0\xe0\xe8\x42\xd8\xda\xd1\x0c\x5c\xf4\x83\x40\x30\x5d\x73\xa1\xc1\x8a\x49\x7c\xa4\xcf\x54\x6c\xf4\x2b\x42\xcb\x56\xcf\xc7\xf4\xec\xc8\x24\xbd\x0a\x5f\x3f\xf3\xf6\x88\x8c\xc8\xe3\xbe\x95\x2e\x27\x25\x98\x9e\x46\x2d\x54\x65\x3f\x37\x2f\xca\xbd\xbb\xf6\xb6\x4d\xbf\xaf\xd8\x59\x81\xe7\x82\x3f\xca\xd7\x2e\x27\x60\xa8\x18\x9b\xab\xe6\x39\x46\x6b\xf2\x4d\x25\x27\xba\x9a\x2e\xcd\x96\xc1\x2a\xd3\xd2\x81\x4b\x42\x73\x32\xca\x3f\xb4\x9c\xd8\xdd\x79\x7f\xc0\x0c\xed\xc8\x32\xb4\x5d\xda\xc4\x55\x2c\xbe\x8d\xd6\x06\x32\xfb\x28\x53\x88\xd7\x22\x8f\x9a\xa4\xd9\x48\xfa\xfc\x60\x59\xcf\x6b\x76\x92\xf3\xbe\xb9\x20\x8d\xa3\xa2\x3b\xc9\xd2\x19\x85\x94\xd3\xeb\xfa\x2d\xcd\xc2\x76\x45\xc1\x38\xcc\xd8\x64\xc5\xd0\x46\xc0\xc1\x09\x21\x4b\x69\x64\xe4\x94\x2f\x1f\xcc\xd5\xc3\xca\xc1\x15\x57\x40\x9a\x0a\xba\x99\x2d\x86\x99\x40\x3b\x05\x04\xd9\x72\xbd\xd5\x5b\xd6\x36\x27\x13\x9e\x5f\x68\x9b\x41\x16\x81\x92\xdc\x92\x75\x74\x60\x07\x97\x8f\xe2\x2a\x06\xec\xd7\x4d\xe5\x7c\x73\x23\xf4\x43\x3e\x68\x3b\xcb\xc9\x0b\x98\x93\x9f\x04\x4a\x32\x8b\x09\x81\xc4\x1a\x95\x2f\x23\xbd\x0e\xa5\x91\xe7\x6b\x5a\x5e\x40\x36\x1e\x9d\x7a\x57\xea\x8f\x71\x22\xa1\xc2\x7b\x13\x73\x87\xa3\x8f\xfb\x5a\xb0\x97\x2f\x29\x0f\xae\x9f\x66\xa1\x54\xf2\x2a\x6d\x50\x62\xbf\x9d\xa0\x7b\xd4\x2f\xf2\x39\xd5\xf6\xc0\x7a\x56\x0e\x17\xe4\x4f\xd0\x37\x02\xdf\x7a\xf1\x06\xbc\x07\x3c\xd2\xa9\x5a\x9a\xe6\xf9\x85\x76\xcf\x52\x70\x12\x2d\x8b\x9b\x2a\x42\x3b\x4a\x53\xf5\x5c\x55\x89\x26\xca\x1e\xf6\x1e\xcc\xdc\x1a\xf5\xe1\xc2\x1c\xb0\x02\x82\x20\xd3\x7d\x0f\xc1\xc9\x8a\x92\xfc\x6d\x1d\xd1\x3c\xb8\xe6\x81\x64\x3b\x50\x37\x90\x7c\x16\x0d\x8b\x28\xbf\xab\x32\xcf\xdb\x9a\x20\xea\x8e\x26\x7c\xdc\xb2\xf6\x69\xac\x1a\x03\x9b\xd8\xa4\xb0\xe1\x10\x44\xf1\xd8\x12\xa7\xa7\x3e\x3a\xb9\x3c\xf5\x88\x00\x26\xb4\x15\xa2\xe5\x87\x3d\x02\x7f\x6c\xc8\x74\xb3\x88\x0d\x59\x78\xa7\x8a\xe9\x15\x32\x2b\x42\x37\x4d\xa8\x99\x83\x63\x85\x48\x68\x62\xd7\x6f\x0a\x26\xd0\xb8\x43\xdb\xdb\xd5\xbe\x54\x21\x4c\xa5\x9c\x43\x33\xe1\xaa\x76\xeb\x4b\x5f\x67\xf3\xfc\xad\xc0\x9b\xea\x6f\xd5\x9c\x87\x03\xbb\x5e\x6a\xaf\x44\xa2\x9d\x0f\x8f\x08\xfc\x97\x7c\xdd\x80\xa8\x2a\x43\xc2\x55\xd5\xf4\xf1\x7d\xac\x7f\x81\xf7\x34\xb4\x40\x99\xf1\x38\x4b\x0f\x46\x23\x69\x0f\x46\x76\x04\xed\xc1\x7c\x3d\x55\x8c\x57\x51\xc1\x48\x7e\xd5\xe5\x2d\xef\x7e\x58\x6b\x17\xde\x54\x0a\xb1\xe5\x79\x9d\x6f\x53\x60\xb2\x40\xc9\x63\x9f\xc7\x57\x70\xef\x36\x4d\x19\x30\xc8\x1b\x53\xa5\x7e\xc8\x6d\xf7\xdc\x7b\x5c\x9b\x40\x04\xa4\xa3\x68\x32\xe2\xf0\x08\xa1\x02\x42\x08\xbe\x56\x20\xc0\xc2\xa6\xbd\x34\x33\x49\xa4\xd8\xbb\x2e\x28\xbd\xe1\x2a\x1b\x75\xcf\x66\x4f\x2b\x99\x84\xab\x14\xd0\xc1\x86\x7e\x4f\xb5\x1b\xbd\x05\x43\x85\x5e\xd7\xdb\x28\x4e\x3b\x13\x56\xee\x14\x06\xa7\x53\x86\x00\x27\xcd\x61\x2a\x7a\x23\x69\xf6\x3a\xef\x47\x55\x1b\x9c\x67\x2b\x36\xa4\xf8\x09\x15\xba\x8f\xe1\xcc\x4b\xdf\x5f\xb9\x80\x04\xcb\xda\x7a\x71\x91\x5b\x19\x0e\x53\x56\x1b\xc3\x78\x0e\x3b\x1b\x01\x01\x2a\x1d\xc2\x7d\x40\x23\x25\x82\xbe\xe4\x87\xe1\x5f\xee\x63\x11\xc3\x00\x3c\xb1\xd6\xfa\xda\x57\xb8\xc2\x71\x6c\xfa\x19\x85\xd8\x4c\xf2\xa8\x67\x95\x93\x83\x34\xd9\x51\x9d\x33\x3b\xea\x4a\x88\x99\x4d\xb3\x81\x49\x7c\x7b\x82\x34\x40\x28\x76\xe0\x0b\xaa\x08\x95\xdb\x1e\x53\x76\x38\xe4\x9c\xeb\xca\xba\xa0\x95\x87\x4e\xa9\xec\xe9\x97\xed\x0a\x01\x65\x05\x42\xa8\xb4\xe0\xd8\x2d\x46\xd2\x65\x76\xcd\x43\x88\x7f\xa5\xe3\xcb\x65\x6f\x00\xf3\x26\xe4\xfa\xe5\xe0\x4a\x99\xc0\x37\x63\x66\x26\xe9\xa5\xa3\x78\x15\x39\x65\x27\x14\xe3\xc8\x40\x2e\xe8\x5e\xa1\xbb\xb5\xf2\x47\x19\xee\x66\xe9\x80\x94\x17\x5b\x8e\xea\xe7\x9c\x42\x56\x9d\x53\x6f\xb4\x5a\x70\x32\x81\xf5\xbf\xe9\x99\x9c\xce\xb2\x13\xfd\xbd\x53\x91\xd1\x50\x75\x85\xcb\x0d\xe5\xc8\xe7\xda\x23\x02\x79\x29\xc2\xac\x13\x28\xd9\x3b\x0d\x69\x87\x40\xbb\xa9\xe4\xdc\x43\x33\x1a\x9b\x68\x90\x40\x79\x58\xa8\x3f\x68\x75\x61\x8b\xfd\x56\x85\x14\x44\x09\x09\xfd\x96\xf3\xdd\xba\x36\xb1\xa6\x18\x92\xc5\x76\x9d\x7e\xcf\x0b\x92\xe8\x0e\xa1\x99\xe1\x5c\x7d\x88\x09\x13\x9e\xc7\x27\x3c\xf6\x7d\x94\xab\x16\x7f\xc7\x09\xb9\x67\x8f\xfb\x5b\x71\x45\xc3\x74\x34\xa6\x6a\xed\xc0\xcb\x4f\xfc\xee\x63\x68\xf3\xe1\x9b\x5a\x37\xe6\xb3\x14\x0c\x2c\xb9\x93\xc0\xb1\x34\xab\x7a\x49\x43\xb3\x79\x6c\x8d\x78\xc7\xbc\x46\x83\x0a\x7e\xbe\xce\xb3\x38\xdf\x36\x71\x6c\x1c\x4e\x53\x78\x08\xcb\x77\x12\x82\xc2\x86\x56\xbb\xd8\x1a\x7f\x4a\x61\x01\x7f\x1c\x78\xe0\xc8\xc7\xce\x75\xcd\xd2\x49\x21\xc8\x37\xec\xfd\x75\xdd\x00\x38\x43\xab\x1e\x38\xac\x1b\x2a\x2c\xeb\x66\x26\x21\x82\xfc\xf2\x39\x10\x1a\xfe\x09\x59\x1f\xbe\x6e\x00\xc9\xf5\x63\xf3\x85\x96\xcf\x15\x7f\xa0\x83\xa4\x0f\x6a\x4d\x44\x07\x76\xb5\xd3\x28\x56\x4c\x76\x6f\xeb\xee\xf3\xb7\xfd\x42\xc9\xa2\x7c\x29\x5e\x9d\xf1\xf8\x26\xd4\x6d\x70\xd4\x7c\xa4\x2a\x6e\xeb\x68\x76\x90\x72\xd9\xb0\xa5\x98\x3c\x7f\x42\xd8\x5b\xc9\x81\x3f\xe5\x97\x72\xb9\x32\x0a\xc2\x99\xed\xf0\xd0\x9e\x6b\xba\xff\xe9\x74\xe0\xbb\xef\xae\xe8\xb6\xda\x93\x2a\x2f\xf5\x56\xa0\x8e\xbc\xdf\x9b\x2a\xe2\x9f\x33\xb0\xf9\x28\x2a\xff\x87\x5a\x44\x35\xbf\xbf\xdd\x33\xbe\x75\xdf\x59\x8e\xd2\x08\x23\x1d\x0b\x40\x08\xec\xfc\x9d\x40\x94\xf9\xbd\xd7\x6d\x62\xea\x5a\x11\xf8\x12\x7d\x8d\x43\x4c\x39\x5e\xae\xeb\x1a\x3c\x34\x19\xdb\x2c\x4a\xb3\xa8\x58\x25\x26\x1f\xd0\x0a\x9c\x26\x93\xc2\xd7\x7a\x88\x4c\x5e\x44\x03\x83\xba\xbd\x03\x02\xa3\x88\xc5\xd7\xae\xe1\x79\x29\x49\x57\x48\xff\x43\x92\xd4\x2d\xc7\x45\x3a\x0b\xca\x54\xd7\xef\xe0\x39\x65\xd8\x55\x02\x25\xcd\xe3\x20\xcf\x42\x6b\x31\xa3\x18\xf1\x06\xe7\x14\x23\x6c\x3e\x34\x99\x1d\xa6\x71\xcf\x66\x68\x85\xe7\x66\x87\x6a\xe3\x43\xf9\x7b\xcc\xa1\x1f\x28\x0d\xcb\x73\xb5\xfe\x94\x7d\x8e\x14\xc4\xc7\x26\x49\x5a\x0c\xa3\x64\xb0\x43\xa9\x61\x9c\x26\xcf\x40\x12\xbf\x2d\xcd\x53\xa5\x38\xce\x5b\xae\x07\xf9\x4f\x68\xe5\x60\xe6\x0e\x2b\x17\xf2\x3a\xea\x4f\x42\x6f\xe4\xf8\x68\xc7\x11\xc8\x22\x68\x53\xa0\xf9\x7f\x1d\xab\x87\x6f\xdc\x38\x27\xa1\x31\x48\x91\x62\x1b\x5c\x0a\xb4\x98\xe3\x4f\x69\x26\xa5\x0e\xf8\xa4\x4a\xac\x31\xc7\x6c\x3e\xa7\xfa\xb2\xe9\xc1\x10\x5a\xef\x80\x49\x44\xe6\xff\xc6\xd4\x93\xb1\xe0\x24\x40\x30\x7a\x5b\x37\x0f\xda\xe8\x55\x92\x57\x52\xb8\xa4\xdb\x1a\x97\x74\x5b\x67\x61\xca\xf1\xcc\x1f\xa0\x9f\x80\xfb\x0e\xef\x12\x83\x3b\x03\x9e\x48\x51\xe8\xf1\xfc\x5a\xbf\xa7\x32\x06\x47\xe1\x9d\x38\x4d\x5d\xdf\xfd\x7f\x81\x5a\x59\x11\x13\x1d\x9b\xfa\xd4\xa1\x76\x3f\xf3\xb1\x4d\x48\x28\xe3\x25\xce\x10\x1c\xd6\xe9\x82\x37\x75\x8e\x44\xc0\x05\xf0\x53\xaf\x06\x4a\xc8\x7c\x6b\x47\xa5\x33\x2e\x90\x83\x05\xcf\x44\xe3\xf8\x57\x4c\x11\x0e\xb7\x95\xdb\x05\x6b\x0e\xba\x3b\xf0\x02\x81\x6f\x46\x46\xfc\x2e\x3d\x2a\x5e\x14\xb2\x46\x48\x2e\x5e\x9a\x2a\x2d\xef\x5b\x4d\xc2\x37\xa6\xd7\x83\xeb\x70\x40\x20\x20\x1b\x0a\x02\xb2\x51\x33\x34\xff\xa0\x1d\x47\x49\xcf\x26\x39\x93\xc3\x20\x93\xb5\x15\xbe\x1f\xc2\xac\x35\xa5\xee\x7b\x53\x37\x3b\x1c\x71\xec\x8c\xcb\x51\xcf\xa6\xa1\xc9\x73\x5b\x14\x0c\x24\x75\xda\xda\x0e\xc2\xb1\xae\xe0\x17\x2f\xec\xdd\xaf\xfd\x0b\xe4\xef\xe1\x9c\xbe\x87\x9f\x40\x81\xfb\x5a\xf0\x2b\xd5\xf2\xd7\xe2\xde\x45\x09\x10\x1f\xa3\xed\x82\xb2\xc1\x74\xaa\x98\x94\xc1\x2f\xe0\x0a\x7c\x7b\x77\xb1\xab\x8b\x11\x96\xfa\xae\x42\x10\x7c\x32\xf5\xc4\x45\xc7\x69\xea\xe0\x73\x1f\xa3\x9d\x8a\xd8\xf8\x22\x78\x09\xf1\xe6\x97\xb5\x2f\xff\x21\x0c\x07\x23\x87\x75\x5c\xbf\x46\xd2\x98\x72\x74\xd3\x1a\xd5\x20\x5e\x9c\xc9\xb7\x15\x1d\xa4\xc9\xf3\x34\x8c\x4c\x21\x5b\x07\x46\xe2\x47\x53\x45\x54\xfd\x23\x77\x04\xf6\xa3\xd0\xf9\xd6\xf0\xa9\x50\xf6\xe4\x6b\x55\xbd\x09\xe3\x34\xb7\xf1\xea\x9c\x6f\xc4\xb8\x4b\x8e\x04\x5b\xd0\x40\x69\x27\xa2\x54\x8e\xd5\x36\x07\x9c\xad\x34\xaa\x37\x16\xbe\xd2\x11\x74\xa4\xb8\x73\x3b\x50\x20\x75\x61\x73\x13\x31\x12\x2f\x07\x65\xb8\xad\xa7\xc2\xba\xca\x37\xaa\x5b\xe1\x73\x5f\xf9\xf5\xc5\xaf\x7c\x69\xe1\xef\x96\x8f\x8a\xac\xcc\x1d\xad\x68\x72\x81\xbc\x41\x24\xb2\xbf\x13\xb4\x9e\x79\x86\xed\xe1\x19\x9a\x4d\x24\x7e\xae\x4d\xbd\xc4\xf4\xa9\xa0\x9c\x0d\x26\x82\x86\x01\xe5\x5d\x05\x27\x15\x21\xe6\x39\xf8\xf8\x78\xe9\x0a\x74\xef\x6d\x6a\x46\x45\x60\x7b\x14\x27\x15\xd6\x15\x93\x83\xe3\xd8\x3a\x8c\x79\x66\x98\x4d\xa0\x5a\x37\xd1\x8a\x2e\x64\x3d\x2a\x53\x0a\x8d\x22\xb8\x12\x6f\x13\x72\x40\x7e\x90\xb2\x91\x78\xc3\x5f\x60\x85\xe3\xe6\xde\x54\x69\x5d\xbf\x4b\x2b\x16\x56\x78\xb6\x83\x31\x67\x96\xc0\x8e\x5f\xbf\x3f\x0b\x28\xeb\x23\xc5\x2d\x9f\xd0\x4a\x57\x92\x4d\x4d\x5e\x3c\x38\x98\x90\xc3\xb4\xa6\x9c\x56\x4b\xf9\x6e\xfc\x0f\x53\x0d\xf5\x5b\x36\x08\x57\xa4\x5c\x4f\xe3\x26\x02\x0c\x75\xc9\xca\xf9\xb6\x8d\x8a\xa1\xcd\x66\xcb\x21\x15\x1d\xa9\x96\x83\x6b\x33\x49\x11\x90\x06\x87\x68\x0b\x0b\x05\xc1\xd3\x9a\x65\x88\x4a\x22\x71\xb4\x04\x05\x40\xd1\xd0\xf7\x36\xf5\x7a\x93\x62\x57\x19\x9b\x4e\xc6\x8a\xa6\x19\x89\x20\xbe\xd6\x69\xff\x34\xe9\x3d\xea\x41\x1d\x6f\xd2\x38\xf3\x00\x62\x6a\x38\x84\xa6\x89\x75\x08\xd9\x72\x61\xe0\x44\x9f\x05\xd2\x9d\x19\x55\x03\xef\x8f\x61\xe9\xb2\x4a\x3f\x32\x70\x02\x56\x28\x5f\x44\x16\x5f\x4b\xa5\xbd\x68\x21\x89\x7a\x74\xb9\xa8\x9d\x4c\x9c\xa7\x25\x6a\xad\x3d\xa1\x41\x95\x43\x43\xba\xe1\x2d\xa7\x84\x7e\x08\xd3\xc2\x37\x9a\x81\x3c\xcd\x58\xfb\x9c\x55\x4d\xc8\x3c\x88\xc2\x49\x83\x76\x58\xdf\x44\xb1\x84\x88\xbc\xdb\x95\x0a\xf5\x6b\x58\xf6\x88\x7d\x8f\x34\x15\xd8\x56\xd2\x6c\xc9\xf1\x96\x62\xdb\x5e\x56\xf4\x50\xd0\x84\xc3\xef\x5f\x56\x8e\xc5\xc8\x9a\xbc\x74\x2c\xb6\x6b\xdd\xc6\x13\x81\xea\xfd\xf8\x78\xaa\xba\x42\x58\x49\x07\x0e\xfb\xfd\xa9\x2f\xee\x5c\x25\x37\x55\x69\xf3\x89\xec\xe3\x89\xa9\x62\xd2\x01\xc4\x54\xc1\x4a\x41\xdf\x26\x18\xe9\xcd\x24\x7c\xc4\x63\x97\x8f\x6d\x18\x99\x38\x7a\x55\x02\x37\x9c\x04\xc0\x63\xf1\xb5\xaf\x85\x10\xad\x88\xe9\xa2\x7e\xfc\x92\xe3\xeb\x2e\x1f\x54\x78\xbc\x2b\x79\x5c\x57\xd8\x95\x62\xb9\x77\x09\xbf\x8f\xb9\xe5\x7f\x08\x7c\xaf\xe1\xeb\x53\xd5\x75\xf2\x8b\x40\xe9\xd1\xfd\x02\xc3\xe3\xc4\xe4\xf6\xec\x71\x7c\xe9\x2d\xff\xff\xeb\xec\x3f\xf4\x9e\x85\x89\x57\x4c\x06\xec\x00\x46\xfb\xaa\x22\x71\xb8\xea\x55\xb0\x6c\x5e\x88\x2f\xf8\x12\x7b\x14\xef\x4e\x95\x7b\xf1\xae\x57\x11\xb6\xe1\xa4\x8c\x3e\x66\x55\x5d\xe0\x2a\x0e\x27\x21\x7e\xf1\xb5\xae\x37\xe8\x79\xc5\x14\x35\x64\x2e\xc7\x99\xed\xd9\xd0\xe6\x79\x0a\xc4\x08\x0e\x0d\x80\xe4\xf8\x3a\xd0\x91\xa1\xed\xfd\x32\x75\x4c\x07\x9b\xb3\xb1\x49\x22\x14\xe5\x61\x9e\x38\xef\x2e\x37\xe5\xd7\x73\x1b\x70\xad\xb8\xfa\xc5\xf6\x60\x62\x32\x93\x14\xd6\xf6\x80\x60\x84\x85\x7c\x6d\xaa\x9c\xf6\x8f\x30\x5f\xb0\x39\x88\x27\xa4\x85\x4d\x91\x2b\xd8\x3c\x8f\xd2\x84\xc8\x15\x24\xaa\xa3\x2f\xe4\x1b\xda\xbf\x08\xdf\xb7\x75\x3c\x69\x27\x33\x88\x89\x2a\x5d\xb9\xe1\x39\x7f\xfa\xa9\x0a\xe7\x26\x4b\xd2\x18\x46\x04\xfb\xe5\x8a\x66\x3a\xbc\x52\xcb\x5f\xbd\xb8\xf8\x79\x39\xb8\xe9\x43\xae\xf7\xd2\xf7\x61\x2a\xf8\x5f\x62\x8a\x28\x5c\x02\x94\x12\x6f\xfc\x9e\x42\xe2\xbe\xd7\xa4\xeb\x5f\x06\xfe\x6e\x5f\x22\x23\xf6\x3b\x2a\x3b\xf6\x3b\x0d\x6d\x8b\xed\x61\x34\x18\xda\x0c\x4d\x48\xf0\xba\x6e\xe2\x8c\xe3\x1b\x65\xf4\xc7\x61\x17\x25\x61\xf8\x43\x87\xe8\x71\xf8\xda\x13\x74\x82\xf2\x96\xf3\x27\x4e\x57\xce\x91\x64\x33\x84\x0b\xe8\xc3\x43\x53\x1f\x35\x53\x8c\xbd\xcc\xc0\xa8\x72\x9a\xb1\x07\xde\x50\x55\x8d\x37\x02\xff\x30\x45\x3a\xe6\x7c\xba\xf3\x93\x5d\x29\x81\xa5\xda\x51\x4e\xfa\xa0\x56\xf9\x7d\x7e\xa1\x1d\xa7\xc9\x60\x4e\x73\xbd\x80\x80\xd5\x01\x0d\x5c\x3a\x1f\x31\x3e\x02\xe4\x07\x69\xb9\xc0\x67\x38\xe4\x8a\xfb\x23\x93\xb0\xa2\x82\x50\x53\xfb\x10\x6d\x7b\x47\x65\xbf\x5b\x6b\x9b\x3b\xe7\xe6\xf7\xb7\xd3\x65\x9b\x09\x14\x16\x76\x00\x79\x3f\x9d\x03\xd4\xd1\x41\x12\x2d\xcd\xf8\xaa\xfc\xd6\x35\x9f\xc0\xda\xa0\xca\x25\xed\x87\x2f\x3e\x06\xa9\x1a\xfa\x91\x28\x29\x0d\x52\x8c\x4e\x26\x8c\x98\xb4\x40\xd3\x30\x23\xc5\x75\x55\xa5\xe9\x3e\xa8\xad\x93\xfd\x2f\xb4\x7b\x26\x5e\x62\x85\x16\xf8\x53\x4c\x1b\xcd\x37\xea\xc4\x0c\x4d\x1c\x33\xdf\x1e\xd6\xdd\x21\x55\x56\xdc\x80\x61\x15\x57\xb1\x1c\x50\xbe\x86\x35\x13\x16\x04\xdf\x23\x72\xa1\x49\x9c\x79\x5f\x3b\x4f\xcc\x18\xf5\x1d\xd7\x8c\x52\xce\xb9\x34\xa3\x78\x16\x8f\x51\x94\xd8\x6d\x9a\xd5\x10\xcf\x2d\xa1\x00\xa6\xce\x05\x09\xbe\xf7\x1c\x22\xb3\xca\x59\x7d\xc9\x01\xc4\x7d\x55\x67\xc5\xc6\xf1\x4e\x45\x5e\xfe\x01\xad\x74\xd6\x6f\x99\x2a\x25\xb9\xab\xe4\xc2\x01\xab\x74\x11\x4e\xb5\x90\x9d\x50\xac\x06\xbb\xc8\xa2\x06\x02\x2c\x69\x7d\xed\x2b\x4e\x63\xbb\xf5\xe2\xa2\x6f\x47\x70\x10\x9d\xdb\x34\xb4\x02\xac\x6f\x39\x46\xa4\xd6\x1a\x0d\x8d\xd0\xa9\xd2\x98\x3b\x06\xa9\x03\xbb\x5c\x70\xd7\x44\xb4\x52\x64\x70\x25\x32\xd5\xb1\xad\x85\x5b\xcf\x37\x51\x12\xa7\x07\x57\x07\x55\x86\xa3\x73\xea\x44\x3a\x17\x3c\x10\x95\xa7\x4e\xff\x1f\xb5\xff\xf1\x03\xf4\x64\x42\x95\xe2\x39\x13\xfe\x1e\x02\x6b\xc9\x38\xb9\x0f\xcf\x7f\x76\x8d\x06\x05\x69\x86\x3b\xe4\x69\xc2\x94\x7f\xae\xa3\xb8\x6d\x1e\x23\x84\xb6\x2b\xa5\xef\x15\xe0\xe0\xfd\xc6\xbe\xc1\x3c\x1a\x24\x42\x8a\x0c\x9b\xc1\x00\x43\x29\x60\xd0\x4f\x62\xbe\x4f\xe9\x56\x04\x1b\x9a\x49\x6e\x1f\x05\x36\x47\x78\xc0\xe8\x8f\xa5\xb3\x55\x61\x0c\x67\x10\x25\xe2\xc9\x8f\xc2\xc4\x20\x14\xfa\x08\xed\xb5\x15\x9a\x10\x78\xd9\x87\x55\xcb\xec\x3d\x45\x0e\x7c\x19\xbe\x30\x7f\x9c\x34\x37\x58\xf9\x12\xe6\x1a\xf8\x10\x9c\x6e\x2c\xfa\x18\x28\xe3\xb3\xa1\x44\xaf\xbb\x51\x3a\xc8\xcc\xb8\x34\xfb\x58\xfd\xa8\x38\x71\x44\xc7\x37\x4d\xae\x69\x3e\x49\xba\x51\x86\x16\x47\x2e\x7e\x69\x2c\xd3\x05\x97\x6b\x0d\xd3\xa4\xb0\xa3\x71\x9a\x99\x6c\x75\x56\xab\x37\x94\x2f\xb7\x01\x12\x75\x9c\xef\x27\x14\xf5\xc3\xcd\xe9\x13\x9a\xcd\x40\xf0\x59\x7b\xf6\x34\x77\x8b\x3d\xa2\x2c\x4e\x3e\x7c\xb0\xb4\x7e\x42\x18\x5c\x6e\x10\x91\x5f\x72\x98\xca\x97\x1c\x96\x9f\xa6\x08\x51\x30\xc0\x71\x8e\xed\xd8\x97\x6e\x03\x45\x58\xf5\xed\x69\x19\x8b\x55\x14\x2c\xf9\x1f\x6a\x67\xfc\xde\x5d\xed\xc9\xb8\xc7\xb9\x5f\x25\x85\xa8\x6a\xe3\xeb\x4d\x5a\xed\x85\xcd\x0b\x45\x6c\xb4\x81\x90\x54\xad\x9c\xbd\xae\xc4\xe5\xcf\xc3\x77\xab\xf5\x9a\x22\x2a\x58\xce\x55\x12\xba\xe5\x9f\x4a\xa2\x57\xb5\x5e\xa4\x09\x15\xd1\x48\x74\x52\x9a\xcf\x69\x80\x34\xb1\x1d\xc6\xe4\x68\xa5\x8d\x61\xea\xbb\x20\xee\x6b\x7c\xc8\xd5\x40\x35\x8d\x1e\x25\xfb\x84\xc5\x79\x3e\x50\x85\x44\x8c\x2f\x5e\xf0\xc1\xaa\xa0\xb7\x7a\xb8\xcc\xda\xb1\x64\xce\x99\xa2\x9c\xb6\xb3\xd0\x95\xfb\x5c\x49\x96\xca\xc9\xeb\x86\xc6\x9d\x99\xaf\xe9\xda\x88\x06\xa9\x30\x56\xc1\x37\x19\x73\x98\xc8\x37\x95\x06\xa2\x01\x0b\xb6\xbb\xc8\xd4\x7d\xe8\xc2\xa7\xb2\xa0\xac\x0c\x6d\x69\x3f\x67\x35\xd3\x5f\xcb\xe9\x57\xa1\xb9\xcd\xe9\x7b\x79\x02\xb9\x9f\x36\x11\xe5\x7d\xbe\x9d\xa7\x83\x81\xee\x88\x46\x05\x45\xd8\xcb\x1a\x9a\x1f\x7b\xa6\x30\x9f\x4e\x31\x22\x00\x9c\xcc\xc4\xe3\xe1\xac\x0f\xcd\x4f\x50\xb1\x07\x27\x15\x3c\x0f\xf8\xec\x5c\x49\x44\xe0\xb2\xa5\xf3\x94\x6a\x02\x40\x1d\x96\x02\xd5\x72\x71\xba\x42\x59\xe9\x47\xe2\x4b\x81\x48\x90\x2f\xad\x03\xe3\x32\x3b\x32\x4e\x36\x52\xd4\xaa\x69\x55\x48\xd7\x88\x2f\x5f\xf4\xd3\xcc\x66\x93\x24\xf9\x7f\x48\xfb\xd7\x18\x49\xae\x33\x3d\x10\xee\xce\xaa\xea\x6e\x36\x2f\x62\x4b\x94\x34\x63\x7f\xf6\xe4\xcc\x08\xa6\x0c\xc8\xfc\xc6\x9f\xfd\xe3\x83\xb1\xd8\xc8\xad\x2a\x89\xd3\x85\x51\xb1\x51\xdd\x43\x8e\x89\x5d\x80\xa7\x32\x4f\x65\x06\x2b\x32\x22\x15\x11\x59\xc5\x22\xfc\xc3\x30\x16\x8b\xfd\xb1\xf0\xae\xe1\x5d\xd8\x58\xc3\xc0\x8e\xc7\x0b\xc3\x6b\xc3\xf6\xec\x78\x76\xbc\x9e\xb1\xb2\x28\xcd\x8c\x24\xcb\x23\x51\x12\x45\x89\xe2\x45\x7d\x6f\xf6\xfd\x7e\xbf\x2d\xe2\x3c\xef\x7b\xce\x13\x95\xc1\xc5\x02\xfb\x8b\x11\xec\xca\xcc\xb8\x9c\xcb\x7b\x79\x2e\xe2\x06\xb3\xcc\xc6\x0f\xca\x07\x78\xbb\x86\x5e\x4b\x45\xcf\x16\x7d\x11\x70\xa9\xe5\x78\x6a\xd7\xfb\x92\x5b\xb0\xf2\x78\x75\xec\x2d\xc1\x98\x67\xe6\x6d\x5f\x02\x2b\xe4\xfe\x54\xc9\x6f\x61\xa1\xfd\x7a\x16\xa7\x65\xdd\x3a\xa2\x9a\x2f\xaa\x70\x16\x5a\xcb\x7b\xab\x05\xf0\xd1\x03\x32\xfd\x36\x6b\x6b\x59\xde\x73\x02\xa2\xe5\xd6\x0c\x39\xda\x8b\xed\x08\xf2\x95\x3f\xc1\x25\xe0\x91\x36\x4a\x09\xad\x9a\xee\xfa\x20\x03\x1e\xc5\x17\x1f\x3c\x21\xfd\x63\xd2\x3e\x4f\x5d\x40\xb8\x19\x8b\x46\x34\x02\xa0\x3b\x93\x50\x31\xbd\x13\x71\x0c\x95\xac\xe3\xb9\x60\x76\xa1\x07\xaa\x05\x7d\x22\x71\x37\x69\xbd\x2d\xb6\xd7\x62\x24\xc3\x9e\xbf\x16\x92\x8d\x4b\x53\xe3\x7e\xf1\x48\x3b\x8f\x37\x62\x9b\x9b\x56\xdd\x3d\x97\xe8\x58\xd3\x54\xe1\x2a\xab\x8d\xbb\xeb\xe3\x51\x2b\x34\xd0\xce\x13\x6f\x73\x9a\x87\xe3\x98\x01\x26\x2f\x6a\xa9\xad\xf0\x02\xe5\x64\xfb\x19\xb2\x34\x49\x8c\x6a\x36\x63\xf1\x3d\xca\x3a\x6d\x47\x1b\x0a\x79\xcb\xed\x55\x5b\x8d\xdb\xb9\x10\x3a\x9d\x45\x5c\xe1\x57\x53\xbf\x4d\x1d\x73\xfb\x36\x0a\xb0\xbb\x41\xc3\x52\x22\x4d\xcd\x59\xb3\x14\x42\xbb\x0a\xb2\xb6\xbc\x1f\xd4\xf7\xa3\xa0\x00\xba\x6a\xd2\x75\x11\xae\x43\x3c\x7c\xd7\x2d\xc9\x58\x0c\x1f\xbb\x02\x88\x4c\x4b\xc4\x0e\xda\x0f\x20\xb5\xb2\xa3\x28\xa3\x22\x8e\x91\xed\x4b\x9f\x64\x00\x52\x21\xff\x40\x34\x26\xbe\x76\x88\x3f\xf7\x6e\x53\x2f\xf1\xd6\x24\x94\x32\x1f\xba\x1b\x45\xc0\xda\xc2\x46\x8c\xbb\x9e\xeb\x10\x04\xf0\xc0\x94\x4b\xc4\xd2\x52\x35\x47\xe2\x9e\xd9\x88\xd5\x74\x0f\x4b\xce\xf1\x88\x1a\xf5\x8d\x1e\x3b\x87\xdb\xb9\x1d\x65\x79\xd9\x22\x55\xb4\x77\xb9\x0a\xfb\x6e\x6d\xe1\x88\x6d\xf9\xa4\xbb\x77\x51\xae\x71\x9b\x8f\x8f\xb6\x0f\x2e\xd7\xcc\x3f\x88\xd2\xaa\x82\x89\xdf\x8f\xa8\x7d\x02\x91\x5d\x62\xad\x28\x8e\x46\x50\x59\xf2\x2f\x6e\x9d\x40\x09\xe0\x87\xe4\x12\x7d\x81\xd2\x63\x58\x7c\x15\xf1\x6a\x62\xf7\x05\x5c\xb5\xa8\x51\xa3\xf4\x2d\x4d\x70\x11\xe5\xc1\xab\x05\xd2\xe7\xa8\x8b\x9a\xbd\x5c\xc2\xca\xbc\x47\x97\xb8\x87\x27\x7e\x36\x11\x19\xdd\x30\xff\x36\xb1\x06\xfc\xdb\xa5\x25\x6f\x35\xe1\x6e\x18\x91\x18\x7a\x92\xda\x48\x6c\xc2\xda\x17\x03\xdb\xeb\x29\x27\x9d\x56\xd3\x17\x7d\xfd\x77\x67\xc1\x50\x77\xd3\x2a\xae\x49\xac\x36\xce\x54\xd8\x22\x94\xe3\x2e\x47\xac\x4f\xd5\x2d\xe3\x6e\x41\x1c\x28\x44\xc3\x3a\xdb\xc2\x72\x96\xc7\x5d\x83\x6f\x54\x08\x91\xbb\x73\x8d\x22\xc2\x9d\x67\xc9\xd6\x70\x14\x77\x5b\x8c\x2f\xfb\x07\x18\x3a\x72\x32\xb5\x0f\x2c\x1e\x69\x77\xf3\x71\x31\x70\xad\x1f\x4c\x06\x0c\x15\x5f\x59\x5a\x50\xc7\x8c\xa0\xa9\x0f\xda\x0b\xed\x57\x88\xb4\x54\x2e\x5c\x2b\x6c\x36\xb5\xc3\xd8\xea\x8a\xa5\xb4\x63\xe6\x20\x4f\xd7\x9c\x00\x9a\xea\x5a\xd5\xdb\x85\xe2\xda\x77\x30\xd7\xe5\x84\x3a\x07\xe3\x14\x22\x68\x43\x9b\x96\x8e\x70\xed\xaf\xc7\x6f\x12\xa8\x40\x0b\xf9\x9a\xca\x43\x5d\x93\xdb\x27\x78\xf0\x92\x35\xb5\xa0\xac\x50\x3b\x99\x73\xbd\x17\x5f\x9f\x5a\x99\x67\x31\x9f\x43\x41\xa7\xcb\xe3\x92\xd1\xaa\xf2\xa9\x59\x50\x2e\xb9\xe1\xc1\x4d\xa3\x41\x56\x22\xab\x91\xd5\x41\xdc\x05\xdd\xc2\xa7\x4e\x83\x3b\x37\x8d\x95\x79\x57\x08\xb2\xf9\x9e\xd0\x65\x7a\x1f\x93\x08\x33\x4a\x4c\x7a\x54\xc0\x31\x5c\x51\x6b\x3b\x18\x02\xa0\x23\x8d\x75\x7c\xa6\x43\x7e\x81\xce\x6b\xb6\xe7\x54\xb0\xbc\xb2\x6b\xc0\x11\x1d\x47\xe2\xaf\x0a\xae\xee\x87\xd4\x7d\xb9\xfa\x42\x6c\x2c\x1f\xbb\x1b\x90\x63\x0f\x7c\xe8\x66\x69\x37\x19\xf7\x34\x58\xc1\x3f\xdf\x61\xf9\xa6\x09\x05\x52\x33\x9d\x06\x24\xdd\x96\x35\x79\xe2\xfb\x0c\x88\x48\x51\x52\xc5\x02\x85\xb7\xac\x06\x0f\x8d\x6d\x2a\x53\xc4\x36\x9f\xad\xcd\xe9\xea\xd1\x89\x66\x14\xe1\xb1\x1e\xf2\x36\x73\x9d\x86\xcc\x30\xcb\xed\x73\xd5\xdf\xb9\xd5\xe3\xda\xa7\x3b\x0c\x3a\xad\x12\x00\x40\x44\xee\x21\x01\x22\xa9\xd8\x17\x25\xbf\x38\xe5\x7a\x82\xbe\xcc\x5b\x3d\x5d\x7c\xe4\x1a\x1e\x00\xd6\xd7\x16\xbc\x1e\x49\x96\x4d\x1d\x94\xf7\xba\xa1\x88\x85\x71\x0e\x30\x05\xbc\xd4\x3b\x98\x20\xb8\x17\x6c\x9f\x98\xcc\x8f\xa3\x9a\x7f\xcb\x0e\x09\xf1\x85\x45\xb9\xfc\x77\x23\xea\x95\xde\x0c\x32\x16\x3f\x6e\x6f\x87\x59\x75\x86\xd9\xde\x36\xe9\x65\xc3\x99\xc0\x78\x3c\xc5\x82\x37\xff\xcc\xed\x23\xca\x05\x6a\x40\xbe\x57\xa1\x74\x69\x53\xe3\xbc\xff\x5e\xae\xb3\xe2\x94\x91\x1d\xd6\x35\x93\x3a\xa5\xbd\x27\x88\x2c\xf0\xb7\x90\xd7\xe2\x81\xbd\x8d\x7d\x01\xcd\xe1\x07\xee\x8e\x1f\x3d\xc0\x73\xd7\x42\x75\x08\x02\x8e\x93\xe7\xc5\x6c\x87\xb8\x1c\x58\x55\xb1\x00\xec\x9e\x62\x66\x2e\x2c\x68\x57\x23\x2c\x69\x78\xaa\xd7\xd9\x22\xe7\x7a\x93\x1a\x78\x2f\xb7\x66\x28\x25\x66\x44\x0c\x8f\x23\x92\x4a\x45\x33\x4a\xcd\x7b\x35\x47\x16\xf7\x6a\x5f\x20\xc7\x0a\xf6\x11\xb1\x96\x3f\xf2\x55\xec\xe2\x6b\x63\xb3\xaa\x9e\x8d\x02\x46\x88\x18\x98\xd0\xd8\xf9\x79\xdd\x8c\x4c\x6a\xc5\x18\x5e\x04\x89\x22\x12\x5a\xf8\x59\x03\x98\xf1\x50\xbb\x58\xdf\xda\x34\x39\x04\x47\x44\xbc\xd8\xed\xa8\x2a\x64\x1c\xe0\x38\x50\xfd\x74\x73\xc1\x8b\x08\xfb\x85\xeb\xfa\x27\xa6\xa4\x90\x55\x2c\xd0\x4a\x50\x4b\xfe\xe0\x51\xfb\x5b\x3f\xf0\x7c\x63\x08\xb3\x3f\x5d\xcd\x3c\xac\x79\x58\x05\x30\x80\x04\x8f\xa6\xfd\x26\x37\x3a\xd1\x4c\x87\xd2\xb8\x8b\x85\xfe\xce\xaf\x38\x42\x9b\x87\xd3\xbd\xac\xed\xe9\xb3\x53\x73\xd8\xa3\xbf\xa9\x08\x78\x79\x52\x13\x85\xaf\x89\x54\x04\x4c\xf1\x2d\xbf\xec\xa7\x59\xba\x11\xe7\x63\xef\x2d\xe2\xa3\x69\xaf\x8c\x7f\x8c\xf6\xfd\x37\x6d\x69\x90\x9f\x79\x70\x54\xb0\x1b\xa8\xe1\x16\x2e\x44\xe4\x57\x7b\xa1\xb9\x84\x58\xe6\xe3\xee\xba\x1b\x20\xea\x75\xcd\xc6\xd7\x24\xe2\x53\xda\xc4\xe6\xa6\x04\x1a\x44\x19\x20\xd5\xd5\x7a\xcf\xcc\xea\x36\x51\x2c\xb8\x44\x08\xe6\xdf\xfc\x8d\xc5\x99\xd6\x57\x17\xe5\xfa\xae\x62\x3d\x50\xc0\x1a\x26\x8c\x12\x17\x77\x5e\xe0\xc1\x65\x95\xeb\x64\x43\x1f\x59\xfa\xe4\x24\x7a\x6e\xaa\x07\x97\x67\x9b\x6e\x05\x42\x21\xe7\x9b\x2c\x6a\x0a\x6e\x10\x8a\x89\x1f\x47\x04\x2c\x54\x5d\xb5\x2c\xdd\xe3\x56\x59\x2f\x5c\xed\x9d\x87\xdf\xa3\xed\xfb\x49\x37\x3c\xb0\x13\xdc\xc5\x03\x03\x08\x7f\x37\xaa\xbc\x72\xd2\x09\x55\x9e\xc1\x78\xe8\xa6\x86\x12\x43\xaa\xef\x52\xc6\x48\x78\x56\xaf\xfc\xfa\xdf\x9c\x75\xb8\x03\x8c\xbc\x39\xac\xf8\xfa\x78\x42\x4d\xec\xc3\x09\xb5\xb4\x6f\xd5\x3d\xbc\x52\xdb\x13\xa8\x17\x06\xbf\x5c\x12\x5b\x34\xc9\x31\x26\xb5\xfc\x55\x83\x7c\x66\xbb\x37\xce\xbd\xe5\x2b\x2a\x06\xe7\x09\xe7\x7e\xbe\xc1\xf5\xf1\x70\xbb\x28\xc9\x4e\x07\x6d\xd8\x9f\xe3\x09\xc9\x49\x53\xc2\xbf\x6e\xd3\xd4\xf6\x50\x22\xc2\xce\x27\xc3\x49\x4e\xbc\xce\x74\x12\xab\x24\x8f\x9a\x0e\xb8\xb1\xe0\x5a\x41\x6f\x7d\xbe\x43\xa2\x2a\x4f\x6f\x87\x92\xd1\x25\xf7\x1a\xd5\xe8\x79\x1a\xf1\xed\xe6\x80\x5f\x51\xf1\x88\xef\xd3\xe3\xbe\xdf\xa4\x3c\xb0\x6a\xba\xeb\xae\x3e\x86\x54\x63\x8e\xd6\x18\x51\x85\x42\xd6\x7a\xd1\x85\x00\x8a\x35\xdc\x99\x22\x2c\x2d\xb5\x6d\x5a\x3a\x2f\xf7\xd4\x8e\xd5\x91\x4a\x7d\x6f\x5a\xc1\x03\x87\xd1\x5e\x03\x93\x27\xfa\x1c\x82\xec\x84\x17\xeb\x70\xd8\x13\x0f\x35\xf0\x38\x8b\x8f\xc8\x16\xf8\x27\xd4\x83\x7c\xdd\x6c\xe9\xce\xe5\x81\xb9\xd5\xb3\x97\x93\xa9\xf7\xf5\xa5\x76\x37\x1b\x77\x07\x5a\x7f\x14\xfc\x2b\xf6\x55\x05\xc3\x7a\xe9\x87\x41\x3e\xee\x4b\xcc\x8e\x64\xfd\x5c\x44\xd5\x9f\x73\xb5\xba\xc0\x46\x2c\x26\xc9\x98\x7c\x27\xb9\x34\x71\xd2\x83\x08\xb2\x0d\x9b\x0f\xcc\x38\x99\x0b\xa9\xc9\xb3\x1d\x1a\x95\x35\xe3\xb1\xc9\x0e\x9a\x3c\x4b\x55\x4c\x59\xed\x2c\xb6\xcb\x41\x36\x2e\x4c\x8a\x7a\x29\xfe\x0e\xea\x78\x72\xec\xef\x6b\x33\x2e\x4b\xed\x37\xab\x0b\x20\xc1\x33\x9a\xb0\x74\xed\xa2\xcc\x72\xcb\x36\x49\x78\x39\xd8\x8b\x51\xc1\xf7\x1a\xe9\x2b\xf3\x92\xa6\x7c\x83\xf2\xb8\x37\xad\x49\x4c\x0a\xe7\x00\xe4\x1d\x77\xd0\x83\xd3\x22\xf7\x4e\xe0\xae\xb8\xe6\xd5\x1e\x72\x5c\xd8\xe7\x5c\x0f\xc6\x3f\xe4\xd0\xd8\xb8\xea\x96\x25\x34\xb5\xae\x4c\x82\x50\x95\xc4\xa4\xa2\x99\x1b\x85\xf2\x39\xc8\x7a\x18\xf4\xd7\x1c\x7a\x4e\x09\xd4\x24\xe6\x25\x18\x79\x4c\xa5\xab\xe8\x1f\xa1\xcd\x74\x07\x05\x77\xf9\x41\x44\x6b\x28\x31\xdd\x06\x0e\xd0\xab\x20\x57\x9b\xae\xd6\x8b\x09\x38\x09\xfe\x93\x62\xa1\xdd\xb3\x40\xc9\xf7\x1a\x19\xbe\x5e\x44\x40\x8f\xbf\xba\x5e\x17\x52\x18\xdb\x27\x69\xb9\x6f\xb9\x65\x5d\x66\x8b\x0c\x1d\xdc\xe8\x4d\xa2\x07\x0b\x54\x8b\x44\x44\xf5\x5f\x90\x22\x7b\x72\xf1\x41\x2d\x40\x3f\xc0\x2a\x25\xf0\x0f\x6c\xd7\x52\x48\xc2\x83\xd2\x3a\xc6\xce\x51\xe3\xc4\xb3\x4c\xb2\x3e\xc3\x02\x4f\xa4\x2f\xf6\x28\x22\x1f\xa8\xcb\x24\x78\x91\xdb\x6c\x64\x9d\x84\x6e\x48\x26\x8e\x46\x61\xba\x3a\xfb\x37\x2f\x43\xd7\x1f\x5b\xe8\x35\x72\xbc\x8d\xf7\xf5\x27\x13\x92\x18\xbb\xec\xd7\xe1\xd7\x5f\xe8\xbd\xd0\xaa\x35\xda\xea\x3d\xb8\x67\x03\xac\xa0\x67\xca\x2c\xdf\x72\x84\x1f\x44\xda\x50\x6d\x76\x21\xd0\x57\x7e\xa1\x13\x7a\xd5\xfb\xb6\x5d\xb2\xa1\x65\x73\xad\xf2\x6f\xe6\xa6\x14\x4e\x87\x47\xfc\x2e\x07\x49\x9f\x4f\x93\x76\xe9\x6a\x36\x4e\xab\x74\xb2\x1a\x14\x02\x2f\x9e\x10\xa5\xf9\x12\xe1\x33\x5b\x1d\x12\xec\x36\x71\xaa\x74\x2e\x6f\xe4\xe3\xd5\x09\x3f\x64\xb5\x8f\x5b\x4d\xbb\x97\xe9\x6d\x20\x63\xf1\x4f\x90\x03\xce\xd6\x76\x78\xd4\x55\x00\x2b\xda\xb0\x35\x82\xbe\x9c\x10\x66\xbd\x9b\x8d\x93\xde\x01\x37\x36\x75\xc5\xae\xc6\x13\x5e\xbb\x24\x31\xc2\x85\xe5\x05\xef\x7d\xc0\x16\xbd\xa0\x94\xc7\x6b\x3d\xdd\xa1\x12\x9b\x08\x8f\x22\x0c\xba\x10\x05\xfb\xe1\xbb\x35\x93\xcf\xdb\x13\xe2\xa2\x3f\x03\x82\x86\x0a\x50\x06\xce\xc8\xb1\x88\xf8\xa9\x07\xb6\x43\x3d\xf1\x09\x97\x23\x22\x0f\xbf\xe5\x32\x3f\x14\x4e\xfe\x53\x28\x00\x24\xd9\xea\xaa\xcd\xc5\xc2\x45\x5a\x9d\x1c\x7f\x5e\x8b\x48\x5b\xee\x7b\xb8\x6a\x15\x73\x6e\xaa\x84\x0f\xb3\x0d\xeb\x46\x1a\x16\xd8\xf7\x31\x57\x04\xa6\x38\x09\x84\x07\x81\xd6\xa8\x07\x6a\x08\xc0\xcc\xa6\x08\xe2\xfb\x3a\x57\x70\x9d\xc2\x73\x16\xcc\x22\x81\x59\x0e\x1f\x2a\xe6\x78\x9b\xd9\xd3\x21\xc4\xc4\x39\x57\x40\x50\xb1\xb9\x80\x1d\x3b\xce\x20\xf8\x69\x4c\x8d\x26\x3d\xab\xb6\x88\x7b\xb6\x00\x60\x0e\x6b\xfe\xac\x13\x4d\x46\xf8\x23\x11\x0f\x2a\x43\x33\x4e\xcc\x45\x33\x90\xa6\x0a\xa6\x9a\xe7\xb5\xb8\x9d\x89\x65\x97\xac\x01\xb0\x71\x9b\xad\x62\x0f\x09\x89\xdc\x94\xe5\xd0\xeb\x0b\x2c\x2c\x06\xbb\xc9\x95\xf9\xd0\x48\xaf\xbe\x4c\x89\x95\x64\x6e\xb2\x7b\x7b\xfa\x82\x5c\xbb\x38\x5e\x8b\x15\x3b\x28\xa5\x31\xbc\x73\xad\x93\x35\x99\xb5\xf5\xac\x49\xac\xef\x79\xa0\xdc\x74\x8f\x2d\xca\xee\xf9\xd5\x63\x90\xad\xae\x6e\xf1\x4a\x05\xeb\x77\x39\x9e\x12\x20\x5f\x5a\x72\xae\xdc\x7d\x62\xb5\x8a\xee\x03\xa1\xa4\x59\xe3\x77\x90\xe5\xf1\x9b\x4e\x5c\xd9\xa3\x09\xfe\x30\x0a\x24\xfb\x3f\xa4\xbc\x6d\xcb\x9a\xfc\xb9\xd0\xb5\xb8\x81\x6d\x49\x1e\x4f\xa7\x7a\xa0\x4a\x69\x21\xc4\xc3\xae\x6d\x1e\x5a\xc7\x26\x64\x51\x26\xc9\xab\xc6\x47\x6e\x72\x78\xb0\xfc\xc1\x60\xb2\x52\x45\x83\x5e\x4e\xc3\x23\x64\x3f\xef\x96\x28\xb0\x1d\xde\xc5\x74\xc0\x28\x7d\xe8\xf6\x71\xcf\xee\x58\x5a\x92\xa2\xf8\xcc\x36\x11\x1f\x1e\x60\x7f\x46\xa7\xfd\x1a\xb6\x71\xd4\xa2\xbe\x3d\x21\x11\xb2\xdf\x45\xba\xac\x74\x96\x86\x28\xba\x28\xed\x08\x14\x38\x2c\x0e\x68\xf4\x79\x4d\x8e\xa5\x25\x99\xef\x6f\x11\x6d\x60\xc3\x54\x1b\x56\xd9\xaa\x45\x9c\x2d\xaf\x63\x76\x81\x90\x4d\xa6\x1f\x8f\x5c\x0f\x5e\x70\x2d\xee\xc1\x28\xc6\xa5\xa1\x9e\x58\x94\x79\x1c\x70\xcb\x18\x25\x67\x88\xbb\x82\x85\x5d\xda\x51\x4d\xd8\xf3\xd5\x71\x6e\xcd\x78\x86\xfc\x1c\xb8\x9f\xff\x7f\x70\xfb\xef\x72\x14\x28\x5a\xc6\x59\x69\xc5\xab\x09\xd2\x6b\xac\xbf\x88\x09\xd5\xdc\x84\xaa\x08\xb7\xa6\x2e\x7d\x69\x69\x45\x09\xf0\x6e\x24\x2a\xe4\xa2\xe5\xfd\xab\x4e\x90\x12\xb0\xc9\xab\x8d\xf2\x80\x7b\x51\xb2\xbb\xb8\x1a\x87\x70\x99\x59\x3a\xf9\x04\x00\x64\xb8\xa0\x63\x44\x14\x82\xde\x23\x2a\x80\x27\x22\x36\x69\xc6\x32\x8d\x6c\x0b\x5e\x81\x5e\x5b\x3b\x54\xcf\x9f\x90\x71\x8d\x1b\x12\x2a\x3a\x76\x9a\x9f\x21\x44\xf4\xf6\x75\x9e\x11\xfc\x47\x8e\x6d\xa3\x02\xc0\xee\x0d\xa9\x12\x0d\xe9\xc8\x13\x53\x7b\x2d\xcb\x6d\xd7\x14\xe5\x3e\xd2\x9c\x3e\x89\x60\x12\x30\xa5\xb3\x11\x67\x9c\xd5\x97\x28\x2e\x35\x78\x34\x09\x00\x49\x95\x49\xc2\x62\xf7\x5d\xf7\x62\xe5\x8b\x1a\xb7\xa3\x22\x89\x05\xdd\x27\x82\x28\x11\x39\x8d\x07\x24\x7a\x9a\x95\x71\x37\x36\xb2\x2c\x23\xd0\x90\xfd\x41\x4e\xa6\xfb\xf4\x8b\xed\xac\x5b\xda\x64\x26\xa4\x77\xe2\x32\x2b\xc1\xb0\x6b\x56\xaa\x15\xa6\xb7\x81\xcd\x4c\x0f\xc0\xe4\xe5\xc0\x03\x58\x5a\x92\x1b\x45\x8c\xeb\x3d\x6f\xaa\x2b\xc5\x6a\x7f\x97\x16\xb1\xcd\xb8\x1c\xfc\x22\x15\x54\x2e\xbb\x27\x85\x05\x09\x7e\x95\x0a\x2d\x71\x7d\x01\x3c\xda\x07\x6e\xf7\x47\x90\xf3\x5f\xe3\xf9\x4b\x4d\x05\x4d\x74\xd4\xc3\xee\xb9\xb7\x88\xbd\x63\xef\x36\xb0\x69\x0a\xd5\x0e\x72\x36\xbf\x8b\xc5\x46\x09\xb3\xd5\xe5\x63\x3a\xed\xee\xb8\xf0\x51\xf1\xdc\xd5\xfd\x7b\x36\x69\x95\xef\x68\xab\x11\xe3\x0e\xa3\xe8\x27\x51\xdd\x41\xd0\xab\x8d\x09\xf3\x0f\xc9\x14\x54\xd2\xb0\xb3\x88\x86\x0c\x42\xc3\xdb\x11\x41\xf7\x9c\x65\xd9\xe1\xa0\x4e\xca\x46\xa2\xc4\x6d\xbd\x5d\xcb\xc6\x4c\xb9\x35\x13\xf8\xc7\xb3\xdb\xad\xe5\xe5\x47\xd7\xf0\xad\x08\xf5\x6e\x45\x3b\xd5\x53\x80\xa8\x19\xc4\xa3\xd5\x71\x9c\xf4\xea\x1a\xd9\x27\x22\x22\x33\x9c\x20\x37\xcd\x24\x4e\xe1\x85\x24\xa5\x65\x8a\x4a\xce\x4f\x85\x0a\x0b\x0b\xd5\x0e\xdb\x4b\xe2\xd4\x8a\xbd\x16\x62\xc8\x07\x51\x3d\x34\xf2\xbd\x23\x16\x2c\x18\xd8\x35\x44\x50\x3e\x0d\xf2\xe0\xbf\x47\xa4\x81\x77\x39\x0c\xca\x78\x75\xcb\xa4\x14\x13\x3f\x8a\x28\x26\x7e\x34\x75\x75\x2f\xcf\xbf\xe8\xd4\x99\xbb\x1e\xe5\xe2\xd5\x36\x3d\xca\x45\x5e\x1f\x1e\xe1\x47\xa4\x96\xee\xda\x0b\xd2\xa3\xc4\x10\x84\x47\xb4\x1c\x53\x95\xda\x55\xd9\x67\x03\xfc\xfe\x89\x4e\x00\x14\x3d\x9a\x90\x86\xde\xa9\x5a\x64\x74\x6a\x12\xec\xa2\xb3\x61\x5c\xa8\x55\xb3\x00\xc9\x18\x82\xb0\x7f\x3b\x20\xa2\x0e\x4c\x95\xdf\x0e\x2e\xb7\xcb\x3c\x1e\x79\x12\x8e\xce\xcb\x96\x97\x4c\xbd\x33\xa1\x5d\x7b\xf7\x54\x77\xac\x5a\x80\x36\x07\xa6\xbb\x2e\xc4\x62\xec\xa3\xc7\xa2\xd6\x2b\xda\x10\x3a\xd6\xd0\x10\xf3\x86\x77\x14\xfb\xa1\x01\xad\xdd\xf9\x30\xa8\x6c\x2a\x9a\x31\x92\x99\x46\x44\x3e\xba\x40\x09\x26\xec\x2d\x5c\x0e\xeb\x5b\xfc\x01\x64\x21\x85\x13\x54\x07\x1f\x4f\x45\x64\xcb\xcb\x87\xab\x47\xb9\x16\x97\xa0\xd1\xd4\xd2\xb9\x95\x79\x3d\x8e\x58\xa8\x3d\x2b\xa1\x24\xc6\x79\x62\x8b\xc4\xcf\x1b\xf8\x4e\xe5\x38\x5f\x35\x29\x09\x72\x7c\x5c\xb3\x3a\xaa\x91\x74\xb2\xa2\x55\xad\x47\x52\x69\xc0\x5d\x6b\xd9\x21\x54\xe9\x36\x09\x2d\x80\x05\xe6\x67\x64\x6f\xf6\x33\x9a\x32\x76\xad\x7c\x26\x8c\x11\x81\x80\x23\xfc\xfb\x0b\x9d\xd6\x6f\xfe\xba\x37\x28\x22\x05\x93\x8f\x27\x24\xb5\xe8\x10\xba\xaf\xca\xf6\x2d\x32\x0f\x28\x1f\x3d\x00\xd9\xd1\xe7\xf5\xa1\x4d\xb8\x1d\x52\xc0\x7f\x78\xa0\xe3\xbb\x97\xf9\xb7\x49\x71\xf5\x32\xf5\x62\x8f\xb9\x50\xee\xd1\x49\x9a\x4c\x49\xd6\x35\x89\x75\x8a\x85\x87\x95\x68\x00\x7c\xaf\xb2\x0e\xf8\xb1\xe5\x7d\x88\x4a\x68\x8d\xb1\xfa\x19\x2d\x31\x4e\xf3\x68\x8a\x41\x66\x87\x66\x7d\x87\x1e\xfd\x1d\xd2\xa3\xbf\xd3\x00\xfb\x7e\xb5\x3d\x30\xf9\x86\x2d\x7c\x01\x1a\x3b\xf5\xfb\x14\x91\xbf\xef\xb5\xd9\xfa\x89\xe9\xc6\x26\x71\x23\x58\x01\xde\x04\xf6\xa6\x20\xbf\x97\xa5\xaa\x83\xa0\xa0\x73\x78\x5f\xc8\x31\xbd\xcb\x6c\x35\x26\xeb\xb8\x4b\xcc\xa6\xbe\x34\xe5\x39\xf4\xf2\x7c\x7b\x9c\xf6\x6c\xbe\x99\x8b\x3d\x42\xe8\x55\x47\x81\x16\x74\x96\xe2\xd9\xd7\xc7\xa9\xa0\x48\xf0\x1a\x11\x5c\xca\xb1\x17\x93\xfb\xda\xd8\x19\xa8\x26\x5b\x7b\xaa\x17\x8e\xf5\x1a\xec\x3b\x37\x59\xfe\xf3\x3f\xd7\x09\xa9\xb0\x43\xc0\x2e\x3e\xba\xe2\x32\x3a\x25\xc1\x7b\x2d\xb1\xff\xe5\xb3\xdb\x0d\x2e\xc0\x79\xdc\x6f\x11\xc1\x0b\x17\xa1\x8e\x01\x3b\xfb\x31\x5f\x6a\x67\xa9\xdd\x1b\xf0\x52\xd7\x49\x21\x0e\x56\xc0\x18\x6c\xb7\x11\x44\x62\x51\xf8\x16\xc6\x2d\x12\xa2\x59\x17\x07\xab\x6f\x86\xbb\x7b\x55\x48\xd1\x3b\x8e\xd3\x81\xcd\x63\xff\xda\xa5\xec\xcf\x9b\x78\x1d\x82\x56\x14\x76\x4f\x70\xfa\x90\x25\x08\x0f\xe4\xa1\xab\x87\xf8\xd8\x7d\x87\x39\x96\x67\x81\x91\xfc\x37\xcd\xe4\x5e\xf1\x54\x10\x4b\x91\x46\x15\x7e\xff\x97\x50\x80\x11\x93\xd9\x49\x4d\xa2\xda\x39\x89\x49\x3e\xa8\x1f\x0d\x80\x12\xd1\xc1\x42\xcf\xf1\x8b\x2c\xf9\xff\x10\xdb\x89\x16\xa0\x5b\x5e\xb5\x67\xd7\xb6\x5f\x4f\x7e\xda\xde\xd6\x01\x9f\x0d\xe3\x52\x6d\xda\x11\x33\xdd\xc7\x75\xc8\x09\xb5\xd6\x47\xd9\x68\x9c\x18\x20\x4a\x58\x5c\x42\xd5\xcc\x49\xd9\x9c\xd9\x95\xe7\x22\xd2\xa5\xe1\x22\xda\x8f\x1b\x20\xe6\x2b\xca\x43\x68\x05\xc9\x36\x54\xa0\xe5\xb8\xb6\x7c\x98\xf5\x4c\xf2\x7d\xa5\xc9\x93\x1e\xe2\x77\x48\x66\x6a\x2d\xb1\x6f\xc4\x1b\x56\x64\xd0\x7c\x9d\xda\xab\x3e\x3a\x63\x12\x25\x42\xc4\x4e\x1d\x08\x68\x2b\xa1\xf9\x44\x61\x0f\x38\x5a\xbb\x82\xf5\x64\x6b\x3f\x35\x98\xfe\xae\x1b\x27\x48\x86\x66\x3a\x55\x96\xe2\x45\x4c\xbd\x34\xf9\x93\xee\x3d\x20\x83\xbb\xc7\x74\x2e\x11\x93\x40\xb0\x09\xa2\x07\xf2\x22\x80\xf3\xb0\xf8\x7f\x80\x5b\xc4\x2b\x7d\x9b\x16\x99\x78\x5d\x72\x05\x24\xa5\x30\xd7\x96\xe3\xda\x25\x3f\x9f\x3e\xdf\x0a\x40\xfb\x1d\x58\xcf\x9d\x81\xa5\x2b\xa0\xc5\x69\xdc\xcd\x86\xa3\x71\x19\xea\x2b\xa4\x5b\x79\x98\x74\x2b\x59\xf1\xba\x6f\x8b\xfd\x6e\xf4\x02\xe1\x7b\x91\xfb\x5f\x77\x27\xa4\xbc\x21\xe2\xb9\x28\x52\x5d\x75\x33\x0a\x4f\x6a\xa6\x43\x28\x0e\xc9\xd1\xe4\xcb\xdc\x73\x16\x03\xfd\x28\x80\x94\x00\xad\x42\x01\xed\x58\x43\x94\xb8\xb8\x43\x51\x14\xe9\xc3\x8c\x0b\xba\xe4\xb8\x13\x8a\xc7\xaf\x67\x85\x1d\x0d\x8a\x2c\x75\xd1\x1a\x8a\x1c\x20\x9a\xab\xa1\x30\x0d\xf3\x4b\x53\xd9\xde\xd2\x52\x7b\xcd\x24\x89\x80\x39\x14\xb8\xeb\x9e\x98\x00\x2d\xeb\xaa\xbc\x3b\xb7\xae\x57\x16\x8f\x28\xe7\x50\xaf\x57\x61\x32\xee\xb9\xa8\xf5\x58\xd8\x09\xf2\x71\x21\x3c\x38\x5c\xd3\xbb\xee\x61\x7a\x21\x84\xaf\xbc\xe2\xfd\x32\x1a\x78\x1a\x6b\x46\x5b\xea\x6a\x13\xd4\x22\xfb\xa0\x9d\x2b\xf8\xcb\xf3\xed\x51\xd7\x6d\x4e\x2a\xb1\x4b\xa5\x36\x6e\xf5\xff\xda\xaf\xfd\xd5\x56\xdd\xeb\x77\x41\xe3\xd3\xcb\x53\x42\x50\x8b\x47\xda\x83\x0c\x78\x07\xc0\x5e\xcf\x91\x70\xf5\xb9\xc9\x53\xfe\xd5\xa4\x2f\xbc\x8e\x2c\x84\xfb\xe0\x0d\x5a\xc7\xf7\x6b\x00\xd8\x71\x1e\x73\x6c\xca\xc4\xf8\x0b\x53\xed\xdc\xe5\xe5\x76\xb1\x69\xa4\x10\xa5\xb5\xe3\xea\x67\xb0\x35\x01\xf9\xa4\x12\x98\xe1\xca\x32\xc3\x06\xb3\x52\xa2\x91\x93\x88\x35\xb5\xe0\x76\x33\xc3\x2e\xdc\x37\x23\x6a\xcd\xc8\xe5\x21\x96\xfd\x68\xa2\x04\x24\xcf\x35\xf7\x61\x10\xf6\x12\x87\xbc\xd7\xe3\x29\x05\xb3\x85\xc5\xb6\xd9\xb0\xb9\xea\x52\xaa\xfd\x6e\x75\xa1\xaa\x98\xa7\xab\xe5\x30\x4b\x6d\x69\xf2\xb8\x28\xa5\x04\xeb\xad\x5f\x43\xa3\xf4\x0c\x99\x2d\x9a\xd5\x71\x61\x91\x8f\x78\xfc\xb0\x97\x11\x43\x33\x50\x57\x8b\x69\x8c\xd0\xb2\x6b\xaf\xf6\x07\xe2\xcf\x20\x2a\x57\x51\x4d\xf2\xaa\xc1\x2b\xa8\x18\x8f\x46\x59\xae\x17\x28\xba\x89\xb8\x40\x15\x51\x0c\x82\xed\x89\x4d\xfb\xe5\x20\x74\xbe\x14\xa9\xc0\x08\x86\xcf\x50\x36\xd8\xb5\x29\x74\x56\x03\xdc\xf6\xf7\xa2\xf0\xe2\x7f\x8f\xb8\x5c\xc5\xd7\xc6\x56\x02\xd2\xea\x9b\xd5\xd1\x2e\x34\x7a\x7e\x46\x54\x83\xd4\x6e\x16\x4f\x11\x2e\x44\x94\xd1\xbd\x63\xce\x2b\x8c\x2e\xf2\xdb\x45\xcd\x41\x5d\x18\x3d\xda\x06\x26\x5f\x5a\x69\x84\x78\xd9\xc7\x83\xea\x44\x77\x2a\xaa\x09\x4a\x54\x97\x89\xad\xf8\x01\x51\x42\x4f\x4f\x2d\x3e\x2e\xc5\xb2\xf9\x5a\x96\x0f\x75\xf1\xd1\x8e\xa1\xbb\x05\x6d\x19\x06\xe7\xe3\x8d\xd8\xec\xa9\x89\x79\x04\xba\xc1\xf1\x5a\x30\xd8\x5a\x58\x08\x85\xbc\x85\xc5\x1a\xf6\x59\xd3\x9d\x26\x58\xd2\x5a\x6c\x93\x9e\x6e\x40\x98\xde\x22\xd8\x2b\x27\x41\x95\xdc\xf6\x1c\xc2\x57\xbd\x01\xaa\x6f\xa6\x76\x7f\xa8\xa3\xe8\xa4\x1a\xa7\x71\xaf\x7a\xeb\x6b\xb1\xf8\xdc\x62\x24\x3f\x64\x56\xca\x71\x02\x0a\x33\x18\x76\xc3\xa6\xe5\x38\xb7\x7b\x09\x68\xbd\x8d\x5f\x41\x74\x7a\x8c\x20\x6f\x6f\x4d\x48\xb5\xe2\x1c\x60\xb2\x8a\xbb\x9b\x32\x06\x40\xa0\xfb\x13\x1f\xc1\x17\x23\x93\xc7\x69\x5f\x34\x0e\x91\xf2\x5d\x20\xbb\xb6\x60\xf3\x53\xe6\xa6\x1b\xf6\x6a\x0c\x1d\x81\x1e\xca\x49\x40\x4e\xac\xbe\x4e\xfb\x21\x30\x92\xf7\x18\x61\x7a\xaf\x69\x91\x2e\xcd\xea\x4c\x6d\x6b\xf1\x5d\xce\xff\x99\x21\x0f\x67\x02\x0c\x3c\x49\x62\x5b\xc8\x62\xa7\x5c\x74\x82\xb5\x3c\x8a\x02\x66\xe7\xbf\xb8\x40\x42\x35\xb9\x19\xc5\x45\xd9\x0a\xa1\x14\xd4\x10\xd5\x11\x27\x84\x1c\x85\x4d\x4d\x99\xe5\xb3\x01\xad\x70\x41\xca\x7a\x0a\x82\x6b\x79\x31\x0e\x59\x5a\x15\x2a\xf7\x14\xb9\x3f\xf6\xf6\x52\xf7\xfc\x1f\x4d\x28\x61\xfc\x47\x98\xae\x5e\x34\xf9\x37\x7f\x5d\x8f\x23\xda\x35\x6f\xb9\x7c\x5a\x35\xa2\xc3\xaa\xf1\x7e\x13\xb5\xb8\x30\xc9\x50\x3a\x4a\xc8\x33\xe0\x80\x27\xc7\x4d\x60\x94\xa2\xcc\x8d\x73\xef\x70\x3f\xc9\xf5\x1f\xb5\x22\x0f\xfa\x3c\xc5\xa6\x19\x8e\xf0\x5e\x3d\x3f\xbc\xba\x37\x65\x81\x7b\x5d\x83\xde\xc0\x16\xce\xcf\xd4\x0f\xa5\x6f\x47\x01\x2e\xfd\xed\x06\x11\xe2\x43\xed\xe1\xb8\x3b\x68\x85\x14\xec\x3b\x2e\x5c\x95\xe3\x1a\x9c\x62\xad\x04\x5b\xcd\x6b\x54\x78\xa9\xc0\xcb\x93\x9d\xd1\xe6\xc1\x65\xd1\x90\x2d\xf3\x71\xb7\xdc\x21\x15\x03\x35\x09\x4d\xf2\x42\x70\xbe\xdd\x54\xab\x8c\xd3\x6a\x5a\x66\x62\x2f\xae\x3e\x64\x2d\x72\xf1\x09\x23\x67\x60\xd7\xd6\x52\xe1\x84\x63\x00\xc2\x11\x5b\x8e\x9b\x4c\x60\x47\xb9\x5d\xb3\xb9\x75\x0d\x7e\xdf\x9a\x3a\x46\x48\x8f\x63\x93\x20\x46\xdd\xcf\xe4\x2d\x20\xe9\xbe\xc7\x2a\xbe\xf7\x1a\xbd\xd1\x4c\xf7\x6b\xe3\x38\xd7\x49\xe9\x31\x4c\x81\xa4\x77\x3e\x80\xdf\xac\x01\x31\x4c\xd2\x06\x0a\x4f\xcf\x51\x59\x6e\x10\x27\x49\x8b\xba\x81\x20\x90\x69\xc0\xb4\x73\xa0\xbd\xf6\x5a\x7b\x23\xce\x12\xe3\xd7\x05\x3c\xe9\x93\xb8\x04\x39\x89\x9e\x0b\x23\xad\x5a\x3b\x87\x36\x2d\x4d\x82\xd6\x86\x17\xc4\xf3\x6a\x7d\x12\xeb\xc9\x35\xf7\xe3\xd2\xa9\x4b\xab\x87\x0a\xa6\xb3\xc8\x34\xca\xc9\xd4\x73\x77\xa3\xc3\x17\xb8\xdd\xc8\xf0\x22\x52\x3e\xa9\xbc\x38\xf9\x95\x86\xad\x23\xcd\xca\xcd\xb8\x1c\x14\xa5\x49\x7b\xae\xfa\xba\x32\x1f\x4c\xbb\x3c\xc4\xfb\xa1\xdb\x36\x81\xea\xbe\xd9\xa8\x7c\xb6\x9a\x1b\x51\x02\x60\xfb\x2f\x65\x78\x36\x22\xa7\x7b\x79\x9c\x78\x23\x74\x64\x3f\x67\x91\x11\xcb\x49\x83\x7d\xae\x49\x56\xad\x10\x0b\xb1\x71\x9f\x72\x57\x26\xc7\x0d\xa6\x1f\xed\x32\x8f\xfb\x7d\xeb\x87\x0c\x66\xae\x6c\xd5\x72\xd2\x54\xd8\x1d\x58\xb7\xa5\xb4\xc8\x74\xe8\x9f\x93\x19\xd7\x3f\x9f\x7a\x07\x8a\x41\x48\x62\xd5\xda\xc5\xcd\xdf\x65\x86\xfd\x5d\xaa\x7e\x7c\x39\x37\xb2\xea\x63\xe6\x9e\x22\xe7\xe5\x19\xd4\x2d\xb4\x7b\xdc\xe0\x4a\x92\x8d\xcb\x62\x94\xad\x5b\x88\x3e\x23\x14\x86\x9e\x07\xf8\x77\x57\xb0\x40\x2b\xd1\x38\x28\x75\x14\xe3\xbe\x11\x39\x50\x6c\xfc\xff\x93\xfb\x94\x1c\x23\xa4\x52\x9b\x38\xaa\xa4\x48\xb9\x5a\x4f\x70\xe1\xfa\x77\xa4\xdb\xee\xb8\x5b\x6f\x00\xa3\xf0\xa2\x24\x3d\xa7\xc9\x98\xe1\x34\x41\x90\xac\xb3\x8b\xce\x52\x27\x1c\xa2\x74\xc9\x53\x68\x82\x7b\x41\x5a\x0f\x13\xbf\x89\x2b\x40\x32\x0a\xee\xa4\x8a\x85\x84\x82\xfd\xdf\x6b\x48\x6d\x91\x18\xb8\x00\x86\xea\x37\xa8\x71\x23\x12\x14\xf5\x43\xd4\xf3\xce\x90\x00\xe1\xd0\xe6\xdd\x78\x6d\x9c\x24\xa8\xc7\xab\x45\x04\xa9\xb8\xc3\x1d\x13\x75\xaa\xbb\x9e\xb4\x35\x4a\x6c\x58\x22\x30\x9a\x21\x77\x27\xc7\x54\x10\xe8\xbb\xee\x32\xf4\xde\x11\xef\x49\x12\x4b\x48\xd1\x20\x9b\xea\x42\x61\x20\x49\x7e\xec\xc2\x57\x39\x9e\x90\xdc\xff\x99\xa9\x09\x5a\x65\x13\x43\xd3\x13\x13\x6c\xec\x45\xe2\xc3\x2c\x27\x3e\x1c\x19\x25\x26\xd5\x7a\x89\x54\xf5\xdc\xf8\xd0\x0a\xdf\x2f\x7f\xc2\xb0\x1f\xe5\x59\x6f\x1c\x04\x18\xa5\x70\x87\x57\xa6\x55\xbc\x40\x6c\x74\x02\xae\xa3\x3c\x2e\x04\x49\xe7\xfd\xa8\x3c\xc3\x58\x34\x08\x14\x34\x45\xf4\xbc\x61\x1a\xaf\x8e\x65\x7c\xa1\x97\xf8\x2f\xdd\xe7\xe4\xb8\x11\xb7\x3f\xb4\x79\x5f\x1a\x3b\x6a\x30\xe7\xbe\x5e\x4e\x26\xbf\xfa\x09\x77\xd5\x33\xa5\x91\x3b\xd3\x10\x4d\xcb\x62\x24\x5c\xe2\xb0\x1e\x8a\x21\xbe\xef\xa3\x52\xd3\xb3\x69\xd6\x35\xa2\x9d\xa1\xdc\xc5\x50\x14\xaf\xfb\x2c\xf7\x07\xe5\x2f\x06\xe6\xb8\xd4\x74\xd0\x76\x3e\x8e\x74\x06\xc4\xbd\x99\x4e\xeb\x95\x60\x31\xd9\xfa\xca\x2b\xc2\x16\xfa\x39\x59\x91\x5e\x71\x43\x03\x0f\x75\x37\x80\x28\xb8\xb8\x87\x32\x71\xdd\x64\xf9\xf8\x40\xc7\xa1\x15\xd0\x95\x3c\xea\xb2\x0f\xfc\xc6\x59\xb4\xa3\x11\x72\x9f\x70\x9a\xb1\x24\xe7\x77\xc8\x4b\x96\x93\xa7\x24\x98\x32\x00\x3e\xec\xd9\xae\x29\xe7\x90\x80\x87\xb0\x55\x59\x5a\x54\xb9\x29\x41\x23\x41\x28\x02\xe8\x17\xee\xdb\xa6\x7e\xde\xa5\x49\x10\x88\x80\x71\x97\x36\xa6\x9f\xab\xcb\xa2\x56\x39\xda\x6f\xfe\x3a\x00\xc7\x5e\xb9\xa8\x7a\xa0\xaa\x5c\xd4\x84\x08\x51\xef\xb2\x00\xa3\x71\x42\x22\x7a\xdc\x24\x4a\x6d\xd2\xbe\x4d\x74\x64\x68\xea\xe4\x9e\x37\xfa\xb1\xa2\xa5\x80\x09\x70\xb1\x41\x8a\x6b\x11\x62\xa4\x33\xa1\x73\x0a\x64\xbc\xdf\x44\xbd\xb2\xcb\x7d\x32\x95\x1b\x98\xe1\x08\x5b\x5a\xf5\x53\x28\xaa\xbe\x33\x21\xad\xd1\x77\x48\xc7\xba\x67\x4b\xa7\x63\x6d\x4a\xcb\xb1\x31\x6a\xe6\xda\x6b\x79\x96\xfe\xbc\xb0\xb9\x85\xd9\x15\x6a\x26\xef\xe2\x7d\xa8\xb6\x1c\xc9\xf8\x05\xe4\x7a\x7f\x90\x15\xa5\xd4\xf3\x90\xd0\x9d\x75\xe1\xbe\xea\xbb\x92\x40\xce\x03\x22\x92\x8c\xf2\x38\xed\xc6\x23\x93\x24\x5b\x8e\x1c\x80\xc4\xee\x5b\x6e\x30\xc8\x71\xc4\x8a\x15\xee\xb7\xe5\x84\x58\xc0\x06\xdb\x88\xb3\x95\x45\x8c\x24\x9b\x05\x96\x5b\x48\x32\x60\x3c\xa1\x93\x16\xec\x8d\x16\x8f\xf8\xd6\xfb\x74\x0d\xa6\x6d\xc7\x79\x36\xb2\xd2\x6f\x97\x2f\xab\x7f\x73\x53\x2c\xe4\x28\x02\xe4\x3b\xf1\xde\x84\x4b\xf1\xef\x55\xb9\x35\x0f\xd6\x85\x85\xf6\xf3\xcf\x3f\xed\x26\x16\x46\x4d\xe9\x52\xbe\x47\x17\x08\x2c\x72\xdf\xdd\x02\xd0\x47\xb0\x5e\xc3\x08\xb9\x8f\x09\x85\xce\xe0\x6c\x87\x94\xa4\xfe\xb7\x49\xd0\x00\x7d\x07\x83\x5f\x21\x3f\x94\x8f\x1f\xc2\x2e\xa0\xcb\x6c\x80\xc1\x7c\xe0\x9e\x93\xfc\x78\x93\x2b\xc3\x30\x2e\x4a\xb3\xae\xe8\x48\x05\xf2\xbb\x7e\xa6\x76\x58\x1a\xa3\xbe\x51\x9e\x39\x8f\x61\xec\x45\x78\xc9\xfb\x3b\x21\xab\xdf\xbf\x3d\xad\x26\xd1\x36\x89\xc1\xea\x8d\x0c\xed\x23\x66\x4f\x7d\x14\x05\x6c\xf2\x6a\xb5\xed\xa6\x2e\x27\x46\xa4\xff\x43\x97\x55\xc9\xb1\x87\x39\xe6\xb6\x1f\x5b\xf4\xec\x9b\xfc\xd5\xb9\x30\x9a\x27\x85\xdb\xfa\x59\x98\x0e\x95\x3e\x14\xf3\xc4\xac\x78\x6a\x1c\x1c\x7a\xe9\x70\x7b\x64\xa5\xe2\xe9\xa5\x29\x82\x4c\xc5\x64\xc7\x8a\x75\x70\xb9\xbd\x32\xbf\xf2\x29\xb7\xd0\xab\x1f\x67\xe8\x53\x3c\xc4\x82\x8c\x68\x05\x1b\xbf\xc8\xd8\xba\x71\xa1\xa0\xb7\xea\x8d\x4b\xa1\x80\x15\x8b\xee\xba\x85\xd6\x63\x5e\x02\x5c\x12\x56\xeb\x22\x29\x35\x21\x4d\x96\x5d\x1d\xf2\x70\x3a\x13\x11\x6f\xfc\x18\x0b\x05\x7e\x34\x21\x2c\xe2\x1f\xf9\xf6\xe2\xc0\x24\x49\xb6\x69\x2d\x42\x01\x7c\x4e\x38\x0e\x72\x42\xc2\x54\xe3\xb4\x6b\xd3\x22\x53\x58\x33\xca\x74\x77\xa2\x9a\x66\x5d\xa8\x9a\x7e\x38\x09\xad\xd1\x3f\xa1\x5a\x7a\xd7\x16\x4f\x79\x52\xf2\x6f\xff\xca\x36\xd1\x0c\x30\xe3\x7d\x65\xc5\xb7\xfe\xff\xe2\xaf\x22\xc8\x76\xdb\xd4\xb9\xbf\xb0\x1d\x48\x03\x4f\x6e\x53\x5c\xfe\xdf\xfc\x6a\x27\x98\x2a\x5c\x61\xdd\xd9\xbd\xdb\x54\xf6\x78\x72\x3b\xa4\xb8\xbf\xb0\x1d\xac\x78\xfe\xab\x5f\xeb\x84\xd8\x7b\x38\x2e\xe2\x2e\x24\x08\xf1\x5e\xc5\xd8\x1a\x3b\xcc\xef\x62\x2e\x7a\x2b\xe9\x50\xc2\x84\x3c\x0f\xb0\x2f\x3f\xfa\x44\xdd\x04\xbb\x61\xf3\xad\x2c\xb5\xb3\x64\x6e\x72\xc5\x7d\x12\xeb\x06\xac\xee\xf0\x1c\x4f\x91\x22\xfb\xd1\x9a\xa1\x76\xe9\xba\xe0\x78\x4f\xa7\x68\x88\xef\xef\x50\xfe\x0a\x11\x12\xe4\x89\x73\xb8\x5b\x8c\x41\x29\x6e\xa2\x2d\xfd\x07\x53\x4b\xea\xca\x7c\xdb\xa6\xce\xf3\x55\x16\x48\x3c\x06\x89\xa6\xe4\xa4\x49\xfb\xaf\xbd\x9a\x67\xeb\x60\x39\x6b\xf0\x44\x8a\x1b\x97\x49\x3f\x7f\xb0\x65\x53\x83\x0a\x35\x52\x9a\x33\xee\xfd\xcb\x71\xd3\x4a\x66\xe2\x5c\x04\x7f\x7d\xd1\x06\x64\x5c\xf5\xbf\x3a\x40\xe9\x7c\xe2\x6a\x82\xb0\xe0\x52\x4e\x65\x08\x18\x7e\x3b\x0a\xa9\xc8\x6f\xbb\xdf\x55\x12\xe6\x01\x1a\xf0\xab\xb1\x91\x05\xf0\xc5\x9a\x21\x8e\x02\x4a\xa9\x3b\x3b\xce\x57\xe3\x62\xa0\x99\x0b\xd2\x3c\xd4\x60\x90\x7e\x88\x3a\x90\xc2\xd8\x1b\xc4\x26\xcb\xdc\xa4\x85\xb3\xee\x10\xf0\x86\x77\x02\x58\x5e\xf6\x16\x01\x0d\xa5\x96\x2f\x54\x47\x79\x2c\x0d\x70\x2c\x24\x67\x59\x20\x6d\x5a\x20\x60\xf1\x48\x15\xcd\x94\xe3\x1c\xb5\x1f\x01\x2d\xb8\xc7\xa3\x00\x86\x50\xf3\x1f\x38\xaf\xc9\x85\x05\x8f\x6a\x21\x84\x0b\x89\x40\x8d\xd3\x78\x2d\xee\x3a\x7c\xf9\x2c\xe9\xb9\x9d\xc1\x88\x91\x13\xae\x35\x70\xba\x1d\x4c\x95\xcb\xc1\x78\xb8\x2a\x7b\x55\x53\x7d\x38\xbc\x1e\xfb\xc6\xc8\xa1\xfe\x67\xa9\x8c\xf2\xa1\xfb\x5b\x94\x31\x6f\x90\xd5\x33\x5e\x1b\x76\x97\x7b\xd4\xc2\x5a\xb3\x25\x18\x7f\x6e\xad\xf4\x18\xc9\x6a\xa7\x96\x13\x1a\x53\xa2\x81\xbb\x45\xc6\xbc\x52\x33\x90\x93\x9d\xf1\xc2\xcb\xf3\x2f\xb6\xbf\x88\x66\xa6\x2a\xb3\x54\x97\x81\x34\xe0\x26\x5d\xea\xc7\x93\xcf\x93\x24\x79\xba\x96\x67\x69\x09\x49\xd0\x56\x80\xa8\xdd\x9f\x84\x7a\xd7\xf4\x46\x7f\x70\xb9\xad\xa5\x21\x8c\x57\xae\xdf\x92\xc5\x9f\x2c\x1f\x7f\xe5\xc8\xcb\x58\x7d\x3c\xf9\xcd\x3b\x83\x3e\xbb\x1d\xd2\xc8\x27\x1c\x7e\x5f\xed\x33\x3f\x89\xcd\x51\x65\xc6\x85\x0a\x36\xa2\x8b\xfd\x30\x22\xb4\xf4\x15\x72\x0d\x38\x47\x40\xab\x61\xb7\x6b\x72\x79\x9e\x08\xa8\x4e\x32\x6f\xe8\x24\x21\x1a\x7a\x79\x3c\x1a\x69\x09\x0a\xcf\xe0\xe7\x54\xff\xfb\xf9\xa4\xb6\x4f\x65\x1b\x36\xf7\xda\xf0\x58\x53\x77\xf4\xfe\x02\x65\x14\xa2\x6d\xda\x20\x7c\x96\x23\xde\xa1\xc9\x91\x64\xe0\x36\x76\x77\x42\xbf\x60\xf7\x76\x43\x2d\x7c\x94\x25\x5b\x23\x81\x96\x22\x84\xbc\x8d\xc7\xe0\xdd\xcb\x96\x97\xbd\xe4\x9a\x96\xae\x5d\x69\x2d\x8b\x0b\xd4\x89\xbd\x6b\xfc\xd2\x92\xe4\xac\x27\xb9\x1b\x71\x77\x6a\x4f\x71\x5a\x1f\x6f\x8c\x6c\xae\xc5\xcb\xb0\x72\x9c\xa7\x95\x63\x5a\x61\x6b\x69\xc9\x01\x31\x65\xaa\x29\xe0\xbd\xe5\x85\xd8\x4e\xb0\xfd\xbc\x29\x06\x31\xf6\x01\x9f\xcf\x06\x1d\x9f\x09\x53\xce\xf2\x38\xc5\xa2\x82\x35\xf2\xce\x84\x16\xcf\x3b\xb4\xfa\xaf\x9a\xee\x7a\xb5\x3c\x57\x3f\xee\x01\x11\x5e\xfa\x08\x49\xaa\x6a\x8d\xb8\x07\xa0\x10\x8c\x50\xb2\xed\xd9\x91\xc9\xcb\xea\xb6\x0b\xe7\x91\xec\x59\xbe\x87\xc2\x49\xf4\x39\x12\x09\x2b\xba\x26\x71\x74\x78\x4d\xc8\xb0\x69\x43\x58\x56\x8e\xe9\x66\x7a\x76\x34\x2e\xb7\xa6\x39\x0f\xea\x1e\xdd\xf2\x8a\x4b\xe7\x48\xa3\xa7\x9b\x65\x79\x2f\x86\x80\x1b\x96\x15\x2d\x44\x10\x56\x87\x45\x4b\x4d\xba\x1e\xa7\xfd\xbd\xc1\xf4\xeb\x8f\x49\xe7\xed\x78\xdd\xa3\x33\x94\x10\x21\xa3\x49\x15\xa2\x20\xc0\xe4\x2e\x58\x97\x24\x3f\xcc\x86\xc3\x38\x75\xb2\x41\xbe\x86\x38\x8b\x6a\x88\x68\x93\x12\x1b\xe4\xa9\x29\xd0\xed\xc2\x42\x15\x70\x98\x32\xb3\xff\xb7\x4c\x6e\x79\x02\xd5\x32\xd4\x33\xa5\x9d\x21\x57\xf8\xa3\x24\xbc\x7c\xdb\x3d\x3a\xd5\xae\x7d\xc6\x53\x9a\x86\x76\x4d\x61\xfc\x28\x1d\x80\x96\x82\x8b\xba\xc9\xae\xab\xa2\x07\x8e\x28\xf0\x03\x42\xa7\x9a\xd1\x28\xd1\xad\x10\x6f\xf4\x38\xbd\xdd\xe3\xc1\x01\xd7\xba\xa6\x70\x15\xa6\x90\x31\xc6\xa2\x97\x3b\xfe\x0c\x49\x7b\x8d\x5c\x89\x30\xd9\x82\x43\x11\xde\x91\x28\xc9\xa2\xc6\x7c\xd7\xbd\x5a\xb4\xbc\x2e\x92\x6a\x41\x37\xb7\xbd\xb8\x7c\xaa\xe5\xa5\xfc\x85\xcb\x80\xb0\x63\xd6\xd1\x0a\xf4\xe9\x90\x99\xe1\x39\xaa\xae\xdd\x65\x0b\x95\xf7\x48\x65\xe3\xdd\xc9\xee\x2f\x04\x3c\x5e\x35\xe2\x85\xf6\x38\x21\x87\xa7\x0f\xc9\x31\x6b\xce\xf1\xeb\xb0\xf7\xcc\x74\x9e\x26\x21\xa4\x71\xc2\x3e\xde\x48\x3b\x74\xc0\x85\xed\x76\x14\x27\x76\xa3\x58\x47\xc5\x1c\x93\xf1\x98\x1b\x83\x72\xdc\x60\xc8\xb7\xd8\xae\xe6\x1a\x44\x88\xbc\x0a\x50\xb5\xb7\x62\xc4\xb4\x5c\x98\x8b\xca\xde\x8f\x70\xd9\xea\x0f\xdc\x04\xfa\xce\xb3\x5e\xdf\xe6\x5a\xc3\xd1\x3d\x89\xf4\xa6\x44\x3b\x5a\x13\x93\x9d\x0b\xde\x2b\x87\xda\x6b\x71\x62\xc5\x77\x14\x21\xb1\xb0\x32\xe5\x84\xf2\xd3\x62\xdc\xeb\x59\x80\xa6\x10\x90\xde\x25\xe4\x2a\xa8\x81\x82\x4d\xe0\x8a\x7d\x37\xcb\x2d\x81\x69\x7f\x1e\x85\x7a\xe2\xb4\x39\xf4\xc2\x62\x35\xa7\x6c\x5a\x2a\x58\x17\xb1\xe1\x43\x32\x84\x7c\xc8\x74\x66\xe7\x0e\xed\x96\x56\xf6\xe2\x51\x71\xae\xe7\x08\xe1\x9f\xbd\x2e\xe5\x7a\xc7\x19\x25\x60\xb5\xca\x5a\x43\x05\x1d\xd2\x84\x00\x01\xe1\xff\xff\xdb\x29\x04\xd1\xe2\x91\x6a\x57\x83\xaf\x9d\xf7\x8f\xf3\xe0\xe9\xe9\xc6\x8f\x53\x6f\xcf\xd6\x8b\xd9\xd0\x10\xfe\x31\x52\x39\xc4\x53\xb3\x1d\x92\x55\xbd\x3d\x21\x53\xf8\x73\xa8\xe6\xef\xd0\x90\x20\x88\xff\xc3\x88\x26\xcf\x43\xbf\x7f\xbe\x6e\x12\x33\xb2\x69\xe6\x1e\xa1\xb8\x2e\xbb\x47\xa8\x0e\xcc\x21\xe8\x49\xec\xd6\x1e\x8c\x1e\x31\xb1\xa4\x2a\xe5\x31\xf2\xe4\xbd\x46\xea\x81\x82\x0f\xc4\x22\xf9\x98\xd9\xad\xcf\x76\x3e\xe5\xc3\xff\xc4\xbc\xe1\x5b\xbd\x08\x75\x1f\xd6\xa0\x16\x21\x3b\x3b\xf1\x89\x86\x05\xab\x59\x9a\xc6\xc8\x6d\x3c\x9e\x86\xb0\x79\x0d\x0c\x82\x43\xed\x35\xd3\x8d\x13\x68\x34\xd1\x73\x15\x84\x88\x9c\x44\x41\x86\xd8\xe9\x92\xa9\xc0\x05\x06\xbd\x50\x37\xe4\x84\xba\x5e\x07\xbf\xbc\x38\x43\x6a\x07\xd2\xf2\xc5\x73\xd8\xd5\x21\x75\x85\xf7\xd9\xdd\x74\xd3\x26\xf0\xef\xf3\xc6\xca\x41\xaf\xed\xcc\x84\x37\xf8\x9d\xb7\xf3\xf2\xfc\xa1\x76\x6e\xe3\x94\x61\xee\x52\x7e\x76\xaf\x43\x4b\xd1\x4d\x80\xdb\x1c\x04\xf9\x16\xe9\x1e\x62\x3f\x93\x63\x92\xfb\x29\x4a\x6b\x54\x59\x4d\x03\xe3\xfb\xcc\x13\x45\x16\xaa\x95\x31\x2e\xfc\x67\xc3\x82\xac\xbd\xaf\x13\xf6\xe8\xf8\x84\x64\xd3\xdf\x76\xf2\xdf\x7e\xa2\xf9\x36\xed\xef\xba\x27\xf8\xe8\x6d\x50\x4c\xd1\x64\xbb\x31\x69\x3d\xff\xbc\x1e\xbb\xc4\x4a\xec\x74\xb0\xa3\xab\x4f\x5e\xcb\xe7\xb0\xe7\xa6\xc0\xf6\x20\x40\xaf\xda\x9c\xcd\x5b\xa4\x2a\x80\x77\xa6\x25\x82\xb0\x4b\xf6\xe2\x62\x94\x18\xb1\x34\xf0\x64\xae\x40\x41\x99\xfe\x95\x2a\x95\xa9\xc2\xdb\xa2\xdc\xca\xad\x44\x78\xbe\xeb\xe0\xd9\x4f\x27\x28\xb8\xef\x1a\x5b\x98\x1c\xf9\xbd\x67\xe4\x7b\x91\xa2\x0b\x9e\x91\x3d\x30\x69\x8c\x81\x26\xdd\xd5\x08\x14\x39\x3c\x88\x3f\x25\x6e\xf9\x47\xc1\xe8\x5f\x54\xa8\x49\xc0\x1d\x89\x8e\x02\xfd\x43\xfd\x30\xb5\x10\x4d\x42\xa4\x74\x8a\xac\xb3\xff\xc3\x84\xf2\x95\x63\x84\xd7\x29\x06\x26\x47\x77\xec\xd1\x51\xa8\xab\x1d\xa5\x21\xde\xcf\x33\x71\xb8\x45\x00\xf3\xd6\x24\x04\x33\x6f\x35\xad\x9f\x03\x9b\x8c\xb8\x4d\x87\xc5\x57\x8e\xa7\x76\xcd\xe5\x65\x91\xee\x9b\x21\xdb\x35\xe9\x89\x68\xb4\x17\x3e\xff\x6f\x27\xc1\xc6\xb6\x6f\xca\x01\xd2\x9e\xc0\x0a\xb9\xee\xaa\x8e\x5a\xc9\x74\x17\x81\x45\xf9\x76\x14\x7a\xd8\x27\x9a\xd4\xe4\x73\xdb\xaf\x32\x8a\x56\xd8\x01\x25\x93\xd7\x5a\x4d\x43\x7d\xe6\xf5\x71\x2f\xee\xc6\x26\x21\xcd\x8d\xdd\xd4\x24\x91\x08\x4e\xd9\x8b\x7e\x59\xf2\x41\xf9\x4c\x08\xfa\xaf\x20\x71\x42\xce\xc8\x12\x07\x1f\x12\xce\x51\x5b\x99\x1b\x76\x4f\xdd\x0e\x62\x69\x49\x9b\x2d\x22\xcc\x2f\x27\x58\x8d\xb0\x6c\x7d\x13\xf5\x51\x39\x99\xd4\x1a\x61\x14\xc2\x25\xb1\x0b\x9a\x0f\x6a\xdb\xf2\x1d\xb7\x67\xe8\x13\xa9\x66\x37\xd6\xf5\xf7\xa7\xd6\x75\x57\x9a\xf1\xb2\xb8\xad\xf0\xbc\x91\x7d\xca\x31\xed\xf0\xab\x59\x51\x8a\x35\x8e\x2a\x59\x31\x24\x78\x27\x97\x49\x4c\x8d\x5d\x8d\x59\x0d\x8e\x49\xb6\xf6\xdb\x04\xa3\x32\xc3\x71\x61\x11\xf7\xa0\x9b\xf0\xb7\x89\x0d\xf0\xb7\xa7\xf2\x7a\xa7\x0a\x9d\x64\xe3\x3c\x2e\x06\x7e\x9a\x21\x8c\xb8\x43\xa8\xaa\x3b\x54\x1b\xd9\xc8\x12\x53\xc6\x89\x9d\x09\x9c\x07\x34\x89\x15\xad\x56\x5d\x31\x76\xc3\x73\xb4\x10\x55\x5b\x92\x55\xf1\x5f\x55\x3d\xe6\x2c\x79\x9a\x0b\x75\xa8\xfa\xd0\x86\x0d\x62\x5c\xda\x4b\x6f\x79\xdd\xd9\x33\x94\xba\xe6\xf1\x46\x15\x81\xfa\xd6\xf5\x7d\x32\x2e\x15\x8e\x1b\x96\xe7\x5d\xdb\xb4\x7b\x9f\xe7\x52\x62\x39\xee\x55\x39\xe6\x4c\x78\x6b\x37\xb9\x33\x83\x65\x0d\x65\x81\x0f\x7c\x1d\xab\x67\xfb\xb9\xb5\x48\x1e\xbd\x96\x95\xaf\x0d\xc3\x3f\x13\xc3\xed\x0e\x2d\x3d\xdd\x41\xbc\x61\xa4\x82\x20\xec\xe5\x49\x08\xdb\xa5\x28\x8e\x35\xba\x35\x45\xad\xfc\xea\x62\xdb\x99\x97\x17\xa5\xcb\x6b\xd0\x12\xfa\x6e\x44\x84\xba\xef\x52\x59\xef\xf5\xac\x78\xa1\x16\x4d\x12\x31\x7b\xda\xf9\xee\x95\xc5\x23\x0e\xb1\x9c\x6c\xcd\x52\x19\xe0\x3c\xab\x2c\x21\xea\xc2\xb2\x2d\x14\x25\x39\x21\x77\x03\x93\xa6\x63\x78\x5c\x2f\x2c\xf8\x74\x87\x34\xea\xcf\xb1\xe9\x68\x96\x17\x82\x84\xf0\xe2\xbe\xd5\xb7\xaa\xb8\x2f\xe1\xb7\x93\x78\x43\x9e\x35\xaa\xe9\xff\x94\x0c\x25\x2f\x51\x14\x3e\xad\xbb\xe1\x1c\xf6\xd5\xb6\xdc\xd7\xda\x6a\x60\xfc\x1a\x16\xb0\x97\x6c\x7d\x8a\x74\xfa\x84\xd4\xab\xab\xb9\x1b\x42\x98\xbc\x77\x38\xd5\x39\x8d\xb7\x80\x81\x20\x36\x85\x40\x8a\xdc\x99\x04\xfe\xa8\x88\x1c\x02\xbc\xf2\x9e\x0b\x23\xf4\x71\x06\x78\x24\xbc\xff\xf1\x08\x9e\xdd\xae\x19\x38\x20\xb6\xd5\x12\x73\x70\x9f\x14\x0c\x30\xb2\xe5\xcf\x4c\x25\xf7\x2b\xf3\x6d\x35\xbd\xaf\xb6\xca\x47\xdb\x78\xab\xd0\xbd\xf8\x29\xde\x24\x4e\xde\x6e\xea\x13\xac\x26\xb1\xab\x60\xa0\xda\x86\x97\x03\x6d\x09\xa6\x4a\x7b\xa5\x05\xaf\x33\xb0\xbb\x43\xbd\x00\xe7\x7d\xdc\x0a\x58\xd3\xdf\xa1\x02\xd3\xef\x50\x4d\x26\x89\xfb\x83\xb2\x68\xed\xe4\xe1\x2c\x7a\x29\xf5\xb0\x1f\xa2\x3e\x1c\x6f\xd8\x27\xdc\xe3\x56\x33\x3d\xb7\x1f\x20\x6f\xbf\x8e\x4d\x46\x6c\xe7\xf1\x8a\xbc\x07\xbd\xe7\x23\xef\xde\x0e\x2a\xc5\x90\xe7\xc6\x50\xba\x8f\x7d\xc6\xc7\xea\xd5\xdb\xc6\xb3\xdf\xdb\xf9\x0c\x69\x52\x74\x07\x71\x69\xbb\x25\x62\x06\xa5\x93\xb6\xc8\xc3\x6a\xe7\x33\xd5\x84\xa0\x58\x5f\x63\x27\xfd\x09\x89\xe5\x5c\xf0\xe0\xc9\x7e\xb5\xfb\xb5\x3c\x17\x77\x37\x5a\x5d\xd8\x44\x9f\x71\xab\x0c\x30\xcd\x9f\xdf\x66\x13\x77\xfe\xae\xa7\x5c\x43\x0d\x9f\xf8\xe5\xce\x01\x0e\x12\x5d\x21\xb5\x15\xf2\x51\x94\xfd\xf4\x3b\xa6\x36\xbc\x97\x0e\xb7\x8b\xad\xb4\x17\x77\x61\x04\x5b\x0d\x4d\x6e\x4f\x69\x50\x4a\x90\x2a\x9b\xda\x32\xee\xee\x77\xaf\xc1\xb3\xe4\xab\x1b\xf0\x14\xc2\x57\x16\x8f\xc8\x78\xf9\x17\x13\xe6\x3a\x53\xb4\xfa\x11\x55\x78\x9e\x40\x3f\x14\xf3\x71\xef\x76\x4d\xe4\x2b\x58\x10\x9d\x76\x8b\xaa\xee\x31\x4d\xc5\x86\xec\xf9\xf5\xb8\xbb\x1e\xb7\x6a\x06\x3a\x9f\x20\x4a\xd6\xb3\xd5\xf2\x93\x6f\xed\x0b\x6b\xce\xbd\x1a\x0d\xb8\xfa\x61\x4f\x48\x62\xaa\xb0\x2f\xf3\x09\x89\xce\x57\xba\x42\xd1\xf8\x66\x44\xba\xff\x17\x6a\x1d\xef\x51\xdc\x27\xa0\x3f\xe0\xb0\x35\xef\x79\x69\x04\xfb\x54\xd9\x75\x35\x63\xa1\x83\x23\x98\x44\xf6\x2f\xc7\x53\x6f\x74\x79\xf9\xb0\x6c\xd1\xa9\x8f\x03\x14\xe7\x1a\x20\x1c\x4d\x7d\xc0\x76\xcf\x76\x73\x2b\x9c\x5e\x64\xd2\x3f\x26\x37\xac\x26\xde\x64\xbb\x18\x66\x59\x39\x10\x4c\xa6\xd7\x7c\xf4\xc9\xc5\xb4\x8e\xea\xf2\x72\x3b\x37\x71\xd0\x0c\x56\x7b\xb1\x00\x53\x3d\x35\x05\x68\xf5\xb2\xbb\x26\x4f\xc1\xa4\xc2\x20\xfa\x1e\x53\x95\xbe\xc7\xb4\x7b\x47\x19\x55\x7e\x69\x13\xa1\x9a\xdf\xc9\x5a\xb7\x3b\xcb\x32\x95\x6e\xe9\x11\x7c\x57\x27\xe4\x1e\x67\xd9\x8a\xe5\x38\x31\x50\xd6\xd7\x73\x57\xcb\xc6\x1e\x02\xc3\x54\x39\x26\xe8\xcf\x20\x1e\x16\x36\x59\xdb\xef\xea\x7e\x42\x1b\x74\xd9\x23\xa6\xe6\xf9\x28\x30\x47\x6e\x4c\x82\x42\xdd\x69\x17\xbb\xca\xdf\xb8\xd9\xa4\xe2\x85\xa1\x42\xf7\x4d\x8c\xc4\x9a\x23\x86\x9c\xb8\xb1\x8b\x0a\xd8\xe3\xa9\xf7\xe7\x00\xeb\x69\xd6\xd5\x12\xb3\xd7\x5b\xa1\x09\xe4\x7e\x12\x1b\xf4\x3d\x02\x16\x14\xa5\xb5\xc9\xd0\xac\x4b\xa5\xb0\xd1\x4e\xaa\xba\x39\x5f\xf6\x22\x4d\xfa\x67\x3c\x39\xc3\xe4\x43\xed\xbe\x62\x38\x43\x8f\x0f\x2f\x69\xb6\x13\x1c\xe2\x8f\x37\x0d\x57\x40\x1b\xdc\xc4\xc0\x6e\x7a\x82\x85\x08\x4e\x78\x6f\x9e\xe1\x56\xa9\x1a\xf6\xa8\x02\x21\x1b\x93\xe3\x26\x18\x7f\x6e\xbb\xd9\x70\x68\x53\x14\x9b\xb1\xa5\x7c\x14\x91\xdb\xc5\x0e\x5e\xdc\x5a\xdc\x05\xca\x6a\x79\x59\x76\x5d\xf1\x2e\x07\x45\x5b\x04\x12\x74\xd7\x09\x7a\x75\xfb\x3b\x7a\x8d\xd9\xa8\xd4\x2a\xa7\x50\xae\xb0\x45\x2a\xff\xea\xd9\x40\xb1\xd9\xb0\x89\x4b\x18\xfd\xc4\x04\x2b\x01\x0b\xd4\xd9\x09\x15\xdc\x44\xa2\x0b\x7d\xb2\x56\xa7\xee\xc9\x51\xfc\xf9\x40\x9d\x38\xb0\xed\xb6\x45\x8c\xa6\x1f\x71\x1b\xf0\x1d\x57\xec\x50\x74\x97\xbb\x24\x2c\x6b\x0f\x26\x84\xa1\x14\xd3\x7e\xd4\x4f\x66\x3a\x55\x9c\x88\x77\xb8\x5b\x2c\xa2\xb1\xd0\xcf\x6d\xbb\x94\xcf\x1b\x18\x54\xbb\xba\x28\xd1\x44\x81\x0a\x7b\xc0\x11\x98\x01\x09\xf9\x76\x14\xe2\x90\x27\x3b\xb5\xb0\xad\x1a\x1c\x88\x3f\x45\xb1\x09\x59\xc0\xcc\x76\x6b\x61\x51\x56\xe8\x2b\x13\x94\x25\x10\x39\xdc\x07\x20\x0d\xe5\x86\xf3\x50\x93\xd7\x84\xce\xcd\x6c\x5c\xca\xe7\xdc\x6e\xfc\x68\xf7\x36\x79\xc1\xde\x74\xd5\x1c\xdc\xc4\x1d\xe2\xdb\x3f\xa0\x89\xba\xab\x13\x22\xe6\x3c\x1b\x9a\xb4\x8c\xbb\x33\xa1\x90\xf2\xc7\xd8\xfd\xa4\x0e\x35\x09\x1d\xde\x9b\xd1\x4e\xd4\xef\xd2\x52\xbb\xc8\xc6\x69\xef\xbf\xfc\xff\x3a\xfb\x85\xb8\x5b\x53\x63\x7a\x44\x25\xe4\x47\x8d\x84\xb5\xcd\x38\x2d\xbd\x13\x5d\xa3\xc5\x06\x79\xbb\x96\xd6\xe6\xd5\x1c\xac\x7e\xc0\x33\xe2\xbc\x92\x30\x72\x1e\x8c\x8b\xdb\x44\x40\x8c\x87\xa3\x3c\xdb\xf0\xe5\x53\x75\x56\x98\x09\x46\xf5\xa0\xf1\xe2\xd1\xdc\x6b\xf2\x89\x80\x28\x28\x26\x3f\x5e\x10\xf8\x14\x2a\xe3\x43\x6c\x95\x81\xaf\x3b\xac\xe5\x26\xed\x9a\xd8\xeb\x06\xea\x20\x75\x77\x27\x27\x64\xc9\x94\xdb\x78\xb8\x3a\xce\x0b\xd9\x08\x24\x23\x8b\x38\x3b\x6b\x68\xb1\x16\x5d\x23\x42\xd3\xb8\x96\x0f\xe8\xba\x3e\xa0\x6c\xac\x6f\xe2\x74\x5f\xf5\x5d\x2a\x1d\xef\x66\x84\xaa\x0f\x54\x23\x03\xc0\x8c\x9f\x51\x0d\x15\x65\x11\x51\xb4\x8b\x48\x32\x48\x82\x51\xf9\xf4\x24\xf4\x74\xbf\xdf\x44\x44\x35\x65\xe2\x06\x58\x2b\x84\xbc\xe7\xd8\x80\xe7\x9c\x5f\x64\xbb\x59\x92\x38\x4f\xb0\xe5\x65\x02\x36\x07\x90\x73\x33\xb6\x2e\x4b\xb2\x16\x89\x5e\xd7\x25\xed\xa8\xdf\x1e\x67\xa9\xf5\x43\x4d\x89\x72\x24\x86\x10\xa0\xef\x6b\x79\x6c\xd3\x9e\x03\x91\x22\x9d\x7e\xec\xe6\x8e\x88\x72\x61\x81\x44\x4d\xf5\xef\x4c\x6a\x02\xeb\xa1\x44\xf8\xe9\xce\x01\xea\xf0\x81\x3f\xe8\xf0\x54\xaa\x2d\x46\x36\x16\xa2\x04\x2a\xff\x12\x05\xa3\xf3\xef\x47\x24\x57\xff\xfd\x1a\x0e\xbe\x56\x38\x8e\x4b\x69\x9e\xd7\xa2\x6f\x0d\xa9\x3f\xe5\x97\xe3\x71\x35\x83\x64\x34\xe2\xc6\xc4\x77\x55\x4e\x26\x3b\xf0\x25\xaf\xbd\xd6\x5e\x58\x7c\xa2\xba\x6a\x14\x8a\x21\xb8\xe0\x61\x03\xd5\x45\x63\x83\x87\xc0\x9d\x4a\xa3\xf1\xaa\x8e\x8c\x55\x97\xf8\x00\xc4\xf8\xc0\xad\x4c\xaa\xaa\x45\x10\xfa\x93\x24\xe6\x5a\x0c\xb3\x75\x8b\xb4\xcf\xdb\x2f\x86\x54\x1e\xa2\x36\xf2\x0f\x18\x91\xf2\x0f\x9f\x48\xc9\x29\xec\x86\x4d\x67\xaa\x45\x17\xe3\x55\xe4\x24\x3c\x12\x6e\x69\x49\x56\x84\x3b\xd4\xf2\x5d\xcb\xf2\x2a\x09\x62\x5b\xe2\x5b\x98\xf1\x72\xc2\x0a\x81\x69\xdf\x26\xd9\x0c\x96\x72\xec\xed\xe7\x21\xc9\x82\xdb\xbe\x13\x85\xfa\xd5\x29\xea\x1c\x7d\xc5\xe4\x73\xc1\x59\xfe\x1c\x3f\xc2\x1f\x90\x81\xa0\xe8\xba\xca\x5f\x4d\x98\xc4\xf1\x09\xaa\x8c\x99\x27\xc3\x8a\x11\x43\x14\x4a\x55\x67\xe9\x02\xbe\x7c\xf8\xc8\x9c\xbb\x27\x34\x76\xcf\x72\x29\x75\x76\x9b\x8c\x12\xc0\x2e\xc0\xe5\x80\x66\x84\x21\x30\x3b\x95\xf6\xbf\x3c\x7f\xa8\xbd\x39\x88\xdf\x7c\xd3\xd6\x54\x37\x4e\x11\x9a\xf5\xd4\x94\xc8\xc2\x2b\xce\xf6\x30\x25\x84\xc7\xf1\x28\x20\xe2\x8e\x4f\xbd\x59\x57\x49\xee\xda\x78\xc3\x0b\xee\x4b\x4f\xc3\x7d\x4a\xfb\x1b\xcf\x50\x7e\xbf\x01\x05\xf8\xc5\xc0\xa4\xa9\xc6\xb1\xae\x17\xd5\x76\xee\x6b\x22\x9e\x44\x0b\x52\x82\x72\x4e\x49\xb5\x68\xb8\x35\xe7\x6e\x0d\x73\xed\x3a\xe2\x0c\x0d\x8a\x5a\x5e\xf9\x54\x0c\x90\x54\xa7\xa0\xe5\x0d\x50\xcf\xf9\x60\x69\x9c\x6e\x82\x04\x87\xf1\x8e\x87\xfd\x9c\x0b\x31\x71\x6d\x90\x7c\xc6\x26\xf3\x0f\x6b\xea\xd2\x9e\xd3\x6d\x7b\x25\x3a\x1d\xa2\x30\x5b\x6b\x53\xb6\x54\xc6\xe8\xeb\xff\xba\x81\xad\xfa\x62\xbb\x18\xc7\x42\x99\x55\x09\xd9\x40\xab\xb8\xec\xe3\xd3\x24\x5e\x07\x22\xee\x55\x29\x03\x0b\xb3\x17\x15\xdb\x7f\x47\x50\xba\x7f\xc7\x0c\xe9\x0b\xec\x75\x63\xd2\x62\x1c\x53\x1b\x1b\x46\xd0\x72\x1c\x7d\x3e\x94\xdf\x8b\xad\xee\x20\x33\xa9\x49\xb6\x74\xfb\xf0\x59\xdb\x72\x50\xf0\x6f\x4a\xaf\xcb\x3c\x1b\x55\xb1\x08\x16\x7b\x95\xd2\xa8\x69\x6c\x7c\x96\xbc\xc7\x57\x8b\xb8\x17\x9b\x3c\x56\xb0\x1f\xde\xfa\x31\xe2\x6c\xff\x47\x62\xd4\x9d\xc4\xc4\x43\x4c\xfe\x1f\x1a\xbc\x2d\x57\xc7\x49\xdf\x27\x8d\xa2\xdb\x47\x97\x7c\x79\xf2\xe9\xfa\x3a\xfb\xc5\xf6\xc2\x82\x23\x65\x23\xfa\xfd\xa6\x1b\x79\x72\xcc\x4a\x1d\x7f\x10\x85\x5a\xde\x1f\x50\x99\x63\x94\x67\xab\x89\x1d\xee\xa3\x28\xfc\x7e\x44\xee\x15\x0f\x50\xe6\x00\xa9\x06\xa5\x33\x85\x17\x56\xbf\x8a\x68\x61\xd6\xc9\x4e\x23\xce\xdb\xef\x90\x13\xbe\x09\xe1\x95\x08\x2f\x91\x54\x83\x4d\x7b\x85\xc3\xd7\xab\x91\x6a\xf5\x55\x6a\x5b\x19\x78\x80\xc3\x6e\x77\x60\x8b\xd4\x6e\xb5\x6a\x2e\x4c\xd5\x1f\xcb\x71\x13\xd4\xb0\x1b\x97\x71\x37\xcb\x41\xdb\x55\x21\x1f\x56\xf5\xa9\xd5\x4c\xc7\x6f\xd8\x9a\x51\x30\x65\x79\x51\xe8\xa1\xa7\xd9\x66\x5a\x6f\xfc\x3e\x26\xab\xf7\xc7\x53\x2d\x49\x70\x98\x0b\xa8\x1e\x08\x84\x42\x2f\x39\x14\x84\x2e\xf9\x5e\xa0\xe9\xd9\x51\x89\xe0\x94\x24\xb9\x97\x6b\x92\xc0\xe8\xf1\xdc\xa3\xd2\xf2\x30\x2b\xb3\x1c\xa3\x4e\xfd\xde\x67\x82\xfb\xf4\x07\x93\xd0\xb2\xba\x84\x09\x25\xff\x30\x15\x4d\xa3\x1d\x14\xf7\x44\x94\x43\x86\xf0\x84\xc0\x82\xc7\xa6\x75\xf2\x5f\x3a\xdc\x7e\xdd\xa4\x2f\xb4\x42\x46\xf3\xd6\x84\xc8\x95\x6f\x35\x18\x5b\xb6\x7b\x76\x68\xaa\x77\x4f\x3e\xca\x17\x9d\xda\xac\x1c\x4f\x3e\x4b\x24\xd0\x74\x2d\xce\x87\x82\x55\xab\xde\x3f\x68\x28\x68\xd7\xc8\x31\xa1\x30\x87\x36\xef\x0e\x4c\x5a\xce\x56\x59\x19\x8b\xcf\xe3\x4f\xf7\x75\x02\x86\x42\x42\x48\xbc\x84\x1b\x34\xe0\xca\xb8\xbb\x6e\xab\x8d\x8f\xe5\x8b\x20\x09\x2c\xc7\x53\xbc\x12\x27\xa9\x33\xb2\xae\x8f\xab\x22\x03\x6e\x57\xf0\xd2\xa9\xd5\xad\xe2\xdd\x7d\x4c\x8c\xf1\x22\x1b\xda\x4f\x53\x25\x6c\x8f\x64\x90\x98\x68\x73\xdb\x41\x40\x79\x1f\x5c\x3d\xb1\x60\xef\x03\xba\x01\x69\xd1\x0f\x5d\xba\xa6\x5d\x33\xf7\x86\x11\x82\x7c\x10\x11\xf4\xe8\x23\xcc\x60\x2f\x1e\xf3\xe5\xdf\x92\x2d\xe7\x44\xc4\x9e\x61\x21\x62\xdd\xbf\x4d\xbe\xf4\x70\xb8\x70\x87\x7f\xf8\x69\x87\xbe\x25\x72\x85\xda\xc3\xde\x71\x13\x18\x41\xa8\xf4\xaa\x50\x11\xb8\xd5\xc0\xa4\x7d\xd5\x03\xe0\xf1\x94\xd1\x80\xbd\xea\x2e\x40\x8e\x9b\xb2\x95\xc4\xac\xda\x04\x64\x3c\x5d\x0a\x69\x59\x24\x14\x85\x86\xcc\x7b\xdd\xd3\x45\x48\xfd\x13\xa1\x2c\x62\x4d\x3b\x4e\x50\x6f\x21\xa9\x50\x68\xbd\x1c\xa2\xe9\x85\xda\x3f\xbc\xea\x3d\xb9\xa7\xe1\x64\xcb\xed\xd5\x24\xdb\x94\x71\x23\x22\x9b\xe4\xfd\x36\xdd\xdb\x71\xc9\xef\xd0\x6e\x0e\x4c\x89\xd1\x0d\x69\xb7\xcb\x24\xf9\x76\x79\xaa\x01\xff\xa5\x76\x39\xb0\xb9\x5d\xdd\x9a\x09\x06\xdc\x8f\x6b\x32\x9b\x24\x62\x30\x9d\xf2\x54\x51\x55\x92\x6d\x48\xb7\x15\x91\xe4\x31\x42\x1d\x1c\xa3\x66\xd8\x38\x4d\xcc\xe6\xda\x38\xa1\xfc\xf0\x28\xe5\x87\x47\xa9\x17\x06\xb9\x7c\x06\xe8\x87\x46\xca\x79\x37\x5b\xe5\x98\xa5\x98\x2f\x51\x37\x24\xb7\x69\xcf\xa1\x03\xdc\x5a\x22\x12\x14\x35\x39\x8a\x9d\xb3\xee\xe0\x72\xbb\x48\x32\x34\xae\x3d\x50\xd6\xaf\xb1\x0c\x94\x5d\xb3\x49\x92\x6d\xee\xa1\x90\xf4\xea\x84\xe5\x88\xd1\x73\x15\x3b\x15\x06\x34\x0a\x41\x1b\x55\x20\xc8\xe8\xc2\xd4\xeb\x83\x06\xba\xde\xe1\xf6\x9a\xb5\x00\x17\x21\x7e\x3a\xc5\xf2\xdc\xa0\x1f\xaa\xb7\xcd\x74\xac\xfb\xa2\x32\xde\xdd\xfd\xa8\x04\x76\xc0\x41\xbd\x37\xe1\x84\x70\x23\x2e\x62\x71\xb7\x47\xce\xf2\x75\x12\xf1\xfa\x7a\xc3\x4b\x5f\x6c\x17\x59\x02\x87\x0e\x8f\x74\xac\x6e\xcd\x3f\x00\xaf\xe1\x7b\x9a\x72\xde\xae\xc9\xfb\x71\x92\x60\x53\x12\x35\x71\xac\x9b\xd8\xcf\x4f\xcb\x63\xc4\x6d\x5d\x6f\x32\xe9\x18\xa7\xf1\x5a\x96\x0f\x09\xa6\xfe\x0e\xf5\xa3\xdf\xf9\xa4\x27\x31\xb4\x69\xc9\xc8\x6f\x4c\x74\xb5\x34\x3d\xc0\x1e\x90\x65\xdf\xf4\xed\x5e\x78\x62\x93\x7e\xdd\x59\x28\xa8\x2b\x0a\xc1\xdd\x2d\x6e\x1d\x5a\x74\x88\x17\xaf\x23\x81\xad\xe1\x13\xb0\x5c\xec\xee\x3c\xe9\x29\x1f\x66\xd3\xbd\x15\x14\xcd\xbf\x1b\x11\x0f\xfa\xbb\x93\x9d\xd2\x3d\xaf\xbd\xd6\x36\x49\xe2\xb4\x91\xd4\xbb\xc4\x95\xc1\xb1\xbb\xfd\xaf\xd5\xbc\x78\x74\xcb\x87\xdc\xb9\x41\x8f\x04\x83\x4f\x50\x25\xa8\x01\x9e\xa5\x40\xeb\xcf\xa6\x0c\xac\x42\x4a\xea\x5c\x10\x41\x52\xc0\x62\x0f\xcb\x45\x3d\x61\xf4\xdb\x20\xdb\x34\x58\x9e\x10\xc5\x5e\x65\x50\xf1\x55\xca\x9c\xf3\xb8\x58\x2f\xf6\x12\xb1\xf2\x04\x19\x98\xdd\x63\x62\x32\x20\xe7\xd2\x7e\xc5\xe4\x06\x8f\xed\x03\xa4\xd4\xd8\x99\x5e\xc3\x9b\x91\x93\x28\xe4\x53\x83\x6c\x68\x8b\xba\x6a\x0a\x19\xa6\x9c\x9f\x5a\x65\xab\xd8\xce\x61\x10\x48\x64\xee\x24\x8b\xcc\x9d\x9c\x1a\x84\xfa\xa4\xca\x17\x5c\xce\x80\x31\xf4\x73\x4e\x50\x7f\xce\xc4\xcf\x2c\x5b\x17\xa4\x0f\x32\x63\xa8\x90\xe3\x6d\xdf\x74\xcb\xb9\x02\x1e\x83\xda\x4a\x9c\x24\xe3\x61\xac\x62\xb5\xbe\x1d\x79\x86\x39\x55\x67\xa2\x1a\x72\x60\xbd\xd8\xdf\xf2\x1e\x73\xf7\x51\xce\xc1\x46\x8a\x02\x14\x7a\x01\xdf\x8b\xc8\x1e\x5d\x18\xd3\xba\x86\xb8\xc5\x45\x8d\x24\x5a\x5e\xe1\xf8\x87\xa4\x8f\xf9\x9f\xdc\xca\xab\x94\x1c\xd2\xaf\x9d\x16\xf4\x39\xf2\x52\x30\x0d\x72\x9d\x00\x14\x0d\xef\x13\x23\xe8\x7e\xd3\xfc\x1e\xe5\x36\x19\xf7\x84\x10\xee\x1d\x68\xbd\x4a\xc7\xf1\xc8\x0b\x86\xe5\xd9\x0c\x7b\x0f\xb0\xdb\xd1\x53\x1d\x0a\xc6\xe6\xb6\x83\xae\x4f\xfa\xc2\xeb\x4c\x35\x17\x83\x75\x39\xf1\x02\xab\x03\x33\x1a\xc5\x70\x12\x3a\xe4\xd5\x98\x43\x19\xec\xa1\x7b\x3a\x0a\xf4\x21\x50\x6c\xd6\x35\x25\xa8\x80\x52\x88\x8d\xc2\x46\x37\xed\xf7\x0b\xdb\xc6\x71\x77\x1d\xb5\x32\x3c\x6d\x09\xaa\xe5\x24\xfa\x5c\xa8\x1a\xa7\x45\x19\x97\x63\xd0\xe5\x66\xc2\xce\xf1\x24\x99\xdf\x5f\x75\x17\x89\x47\x30\x33\xa5\x27\x58\xad\x84\x89\x1b\x8d\x2d\x96\x28\x71\xbf\xa7\xb8\xd1\xcf\x71\xa8\x5c\xe6\xf1\xea\x58\x70\xd5\x9f\x44\x37\x09\xbc\x1d\xf1\x10\x97\x13\x92\xd4\x48\x6d\x3f\x2b\xe3\x6a\x20\x60\x92\x21\x36\x7d\x8f\x5b\xb6\xef\x35\xd4\xe2\xdb\xe5\x78\xb8\x9a\x68\xad\x86\x38\xfe\xaa\x1a\x3c\x9d\x3e\xbc\x3c\xdf\xee\xe7\x66\x43\x06\x0f\xb0\x74\xa7\x89\x8b\x75\x9a\xdd\x7e\x72\xa4\xfc\x58\xc2\xcf\xe0\x6a\xe4\x84\x02\xbf\xee\xa0\xda\xb2\x54\x2c\xd0\x3b\x48\x7a\xa9\xf9\xf7\x68\xef\x18\xa7\x71\x62\x37\x6c\x3e\x17\x4c\x92\x4f\xb2\xf8\xdf\xad\x09\x79\x94\x9d\xa4\x12\xe5\x3d\x97\x60\xab\x28\x20\xe9\xc3\x26\xe5\x93\xad\xaf\xbc\xc2\x88\x76\xf5\x2b\x93\x4a\xa1\xeb\x54\xae\xff\xf9\x0e\x43\x78\x09\xe3\x35\xb7\xcd\x96\xa7\x98\x2d\x68\xa9\xdc\xa1\xfd\xef\x36\x39\x3c\xdf\x98\x84\x26\xe2\x6e\xf4\x86\x30\x59\x1f\x4e\xcd\xf0\x95\x79\xe7\xe1\xd7\xcb\xcd\x26\xb4\x7e\x10\x9e\xdf\xc3\x9e\x83\xbc\xe5\x2c\x79\xdf\x06\x04\xe4\xd0\x54\xa3\x39\xb7\x66\x88\x48\x80\x8b\xb6\x28\x28\x3d\xd5\x09\x9f\xdb\x37\x95\x1f\x1d\x79\xa9\x9d\xc7\x3d\xe4\x47\x9e\x3f\x45\x9c\x8b\xd0\xe9\x3d\xd5\x18\xaf\x8e\x92\x31\x18\x9e\xbe\x95\xec\x0d\x5a\x2f\x12\xdc\xb2\x9b\xa5\x45\x96\x97\xce\x8b\xc5\xe7\xca\x0f\x48\xd2\xe5\x01\xbd\xab\xc5\xb1\x9d\x23\xdd\x0a\xa7\x35\x87\x7b\x39\x4a\xa5\xae\x27\x3a\x24\x78\x29\xdd\x66\xe4\x8f\x97\x6a\xf1\x98\xe3\x3e\x14\x08\xe2\xf1\xfa\xfe\x31\x79\x01\xfd\xe3\x29\x64\xc0\xc2\x82\xb4\x95\x2c\x81\xd1\xaf\x44\xa4\x89\x02\xd2\x17\x92\x80\xfb\x53\xc0\x87\xc5\x23\x6d\x93\x94\x36\xaf\xb6\x1c\x51\x95\x6b\xd2\xe9\x7a\x86\x8d\x28\x7a\x86\xec\x15\xcf\x50\x38\x3a\x8d\x95\x5d\x5a\xaa\xd6\xf5\x7e\x6a\xc4\x18\x57\x2a\xd1\x51\x68\x3f\x9f\x27\x24\xf5\xa0\x1a\x56\x42\x56\xf2\x56\xe5\xd5\x9d\xa8\x3b\x79\xf0\xbc\x2c\xba\x59\xd9\x22\xe1\xc6\xef\xa0\xbe\xaf\x02\x77\x9f\xaf\xbd\xcb\xb0\x7e\x92\x4e\xf4\x49\x42\x86\x9e\xa4\x2a\x7b\x9a\xa5\x5d\x53\x0c\x90\xd6\x20\xad\x3b\xe1\x5e\x81\x1c\x13\x1e\xa6\xd8\xb4\xa6\xb4\x79\x31\x13\xda\x53\xb7\xd0\x18\x40\x29\x07\xf4\x19\xf1\xbb\xa1\x67\x58\xe6\xb1\x49\xf6\x86\xaa\xae\x68\x8c\x79\x7c\x37\x01\x4e\x5a\x5e\x1f\xe8\xbb\xcc\xe0\xb9\x88\xb9\x46\xcc\x06\x5d\x80\x3f\xae\xdb\x93\x8c\x93\x7d\xd5\x80\x54\xdd\xd8\x96\x27\x92\x5e\xe5\xd6\xea\x65\xb6\xba\xbe\xeb\x7a\x4c\x2a\xa7\x10\x94\x06\xfe\xdb\x20\xa8\xbb\xf9\x6c\x87\x2a\x8f\x67\xeb\xb8\xc1\xbf\xb4\x8a\x7d\x4d\x0b\xcb\xee\x77\xb4\xdd\xc6\x6d\x46\x37\xd6\xdd\xa8\xf3\x78\x9e\x5d\x9d\x10\x1e\xef\x9a\x62\x9e\x2e\x2c\xb6\xcb\xb8\xf4\x8e\x1a\x58\x25\x6e\x52\x23\xe1\x43\x56\xcd\x3a\x5f\x6b\x4d\xad\x66\xab\x2d\xaa\x7d\x9f\x93\x1c\x5e\x39\x01\x81\xde\x0d\x62\x86\x23\x5b\xa2\x8e\x89\xaf\x96\x98\x49\x4e\x30\xc1\x14\x42\xeb\x66\xab\xaa\x0d\x84\xcc\xf1\x5d\x17\x34\x89\x2d\x96\x0b\xa6\xe4\x03\xa4\xe1\x73\xac\xc9\x99\xb6\x57\x05\xf3\xee\x17\x80\x55\x90\x5e\x3d\x6a\x25\x90\xb1\x47\x30\x7d\xb3\x46\xe2\x5c\x75\xe6\xce\x3e\x23\x41\xa6\xa3\x03\xbc\xba\x14\xec\xb9\x77\x7d\xa9\xbf\x9b\xdb\xa2\x6b\xd3\x5e\xd6\x22\xf7\xa6\x4b\x13\x2e\xb3\x36\xd4\x4e\x06\x36\x89\xdf\x68\x91\xa0\xf3\x65\xc2\x90\x06\x87\xc9\xd1\x20\x4e\xa4\xec\x8d\xd2\xfb\x49\x06\x6d\x9f\xa4\xad\x76\x18\x17\xae\x25\xe8\x56\x15\xad\xc5\xb9\x19\xa1\x45\xba\x9d\x3b\xd0\x17\xdb\xb9\xed\xd9\xe1\xc8\x8b\x7b\xa9\x92\x48\x75\xf7\x6a\x9e\x13\x7e\x60\x34\xb0\xf9\xa6\x49\xa5\x37\x29\x0e\x78\x51\xdd\x0f\xaf\x81\x19\xd0\xdb\x4a\xcd\x50\xea\xfd\x62\x5e\x40\x22\x0c\x67\x9b\x34\xf0\xd4\x86\xda\x32\x2a\x05\x14\x04\x39\x9e\xda\x97\x16\x16\x80\x0b\x92\x67\x45\x8a\x38\x87\xbc\xec\xca\x53\x1e\x37\x13\x27\x89\xe3\xba\x49\xf3\x92\x35\x07\xae\x93\x70\x2f\x68\xc5\x8a\x40\xa9\xb5\x68\x8b\xee\x2c\x77\x9e\x05\xe1\xed\x9b\x03\x64\xf0\x43\x2d\xe9\x9b\x94\x73\xe4\x71\x22\xa5\x5d\x6f\x19\x52\x4d\x13\x05\x79\x86\xdd\xac\x18\x89\xde\x72\xa0\xb6\x41\x72\x4e\x8e\x6b\xcb\xc6\x46\x26\x62\x8d\xea\x73\xed\x7e\x5d\xe9\x01\x3b\x1f\xda\x91\x97\xda\xdd\x2c\xa9\x5e\xbe\xb7\xe3\xbb\xc4\xa4\x73\x5f\x6d\xb7\x6f\x40\xde\xde\x21\x47\xdd\x33\xfb\x1f\x7f\xa9\x43\x48\x6b\xf1\xe0\xc3\x3c\xfb\xfd\xc8\x87\x66\xff\xf4\x33\x2e\x82\x42\x86\xf1\x43\xb7\x0a\x8a\x87\xd2\x94\xba\xfa\x97\xda\xbd\x2a\x04\x58\x5e\x16\xd2\xc2\xdc\x36\x31\x9c\x91\x2b\x21\x29\xbf\x44\x9e\xbe\x07\x50\x7a\x45\xd3\x98\x89\xe5\xa3\xc4\x6c\xd9\x9e\xdb\x1c\xd4\x21\x3b\xdc\xd7\x5c\x87\xea\xa4\x08\x24\xbd\x52\xfb\xc1\xe5\x47\xf7\x26\x24\x49\x7e\xcd\xb5\x10\x91\x83\xec\xf2\x25\x88\xde\x58\xde\x87\x87\xb2\x7b\xf4\xf1\xf9\x4f\x24\xec\x25\x5b\x79\xdc\x15\xb0\x3e\x16\x86\x5b\x51\x90\x72\xfa\x80\x31\x14\x97\xea\x9e\x55\x76\xbf\xab\x9d\xa0\x61\x8b\x1f\xc3\xc8\x95\x07\x23\xff\xe0\x2e\x15\x0f\xe9\x06\xb5\x75\xb1\x45\xe3\x6f\xee\xd7\x39\x82\x68\x6c\x63\x45\xbc\x10\x05\x71\xae\x33\x11\x75\xe9\x7f\xe2\x79\x54\xf6\x8d\x58\xc9\x76\x8b\xaa\xcf\xc0\xc4\x9b\x73\x14\xd0\xa5\x59\xfe\x84\xeb\x94\xcb\xb7\x4f\x88\x70\xf8\xe3\x28\x88\xfd\x00\xd6\x8a\x6c\xe0\xac\x93\xbd\x43\xc5\xfb\xbb\x40\x5e\xfb\x4f\x07\xfa\x1d\x3b\x7c\xcc\x38\x52\x34\x72\xc9\x9f\x7a\xe6\xe2\x30\x4b\xcb\x7e\x36\xb4\xa2\x85\xab\x51\x00\xcd\xc4\xb3\x8d\x5a\xa7\x03\x23\x01\x20\x1e\xc2\xfb\x1c\x11\xdc\x42\x2a\xa2\xb3\x3a\xc8\xb0\x39\x0a\x79\x57\x7a\x22\xa1\x9d\x7f\x89\x7d\x52\x2f\x45\x9f\x25\x0e\x4b\x3e\xca\x60\xac\xc9\xe2\x90\x92\x49\xe2\xb6\xb6\x71\xbf\x72\x12\xd1\x2a\x28\x5d\x4f\x84\xe7\xbf\x1f\x51\x7b\xf8\xf7\x7d\x2a\xdd\xcf\xad\x4d\xe3\x62\xe0\xa6\x35\x1b\x61\xab\xfa\x80\xf7\xe6\xb2\xbd\xd8\x94\xb9\x2c\xce\x28\x50\xdd\x21\xbe\xc0\x1d\x0a\x34\xcc\xb8\xcc\x1c\xe8\x52\xbb\xb0\xc4\x03\x0c\xe1\x40\x8d\x9d\xe4\x44\x20\xbd\x5e\xcc\x39\xf6\x6d\x3a\x49\x96\x4a\xb7\xa9\xec\x5c\x98\x32\x2e\x60\x85\x5a\x45\x03\x18\x22\xe0\xb4\xc8\xf1\x94\x14\xac\x4e\xaf\x6e\x56\x94\x88\x68\xd4\x81\x33\xe0\x49\xae\x82\x97\xc7\x96\x98\xb9\x29\xed\xa7\xdd\xec\x51\xb8\x08\x95\x4c\x1e\x4d\x76\x7f\xe1\xd1\xbd\x28\x78\x01\xa1\x1d\xea\x2e\x61\xfe\x59\x07\x32\xc4\x40\x90\xa5\x04\xc9\xcf\xf5\x7a\xa5\xa8\xca\xf3\x51\x01\xbe\x01\xf8\x1f\x1e\xea\xbb\x64\xd6\x07\x6f\x60\xc4\x39\x5f\xaf\x09\xdd\x63\x02\x32\x84\x55\xcb\x5f\xc4\x42\x04\x5d\x4f\x45\x1b\xf1\x5a\x54\x42\x3f\xac\x85\x65\x6e\x7a\x36\xdf\x53\x2d\x0e\x1a\x84\x05\x00\xa7\xb8\x78\xab\xac\x67\x48\x92\x8e\x61\x69\xc1\xed\x8b\x9c\x95\x9c\x4c\xed\xf2\x5e\x55\xb3\xd7\x22\x79\xdb\x7f\x43\x75\x9e\x7f\xc3\x1a\xa1\x6f\x8c\x12\x93\x4a\x65\x6b\x69\x29\xa0\x2a\x03\xcd\x91\x8a\xa4\x1b\x26\x89\x7b\x4e\x43\x10\xf5\xf0\x1f\xa2\x74\x89\x02\xca\x55\xd7\x6d\x93\x7f\x88\x48\x31\xef\x6a\x14\x3a\x88\xe3\x52\x38\xcf\x6e\x77\x01\xe0\xea\x3d\x42\xf7\x5f\xc3\x34\x17\xa5\x08\xdc\xa9\xc2\xae\x5b\xde\x94\xe0\x92\x0f\x1f\x56\x6d\xda\x1d\x60\x19\xf7\x40\x65\x6f\x60\x7f\x23\x0a\xfd\x92\x1f\xd0\x70\x1b\x58\x93\xcf\x85\xd6\xe7\x7f\x17\x91\x04\xaf\x80\x17\x45\xdb\xc7\x3d\x07\xd4\x02\x04\xc9\xab\x32\xf3\x3b\x63\xdc\xd7\x5e\x6b\xe7\x26\xb7\xd4\x76\x38\x4d\x6d\x87\xd3\x9f\xb8\x11\xe5\x16\xb0\x6b\x4f\xfb\xbc\x4f\xc6\x10\x52\xca\xd1\x0d\x71\xe7\xab\x5e\x99\x6f\x6f\x1a\x82\xf7\x7b\x4b\x52\x9f\xd5\xff\x51\x14\x52\xd1\x32\xcf\xc6\xab\x89\x75\x37\x8e\xcc\xee\xb8\x7b\xf0\x78\x49\x1f\xe2\xbe\x91\x6d\x5f\x9b\x04\xaa\x83\x24\x20\xaa\x31\x1e\x1a\x20\xc3\xb8\x28\x04\xf9\xf9\x6a\x50\xdc\xf6\xb4\xc1\x3d\xae\x2d\x8c\x92\x2a\x17\x17\x96\xc7\x6f\xb4\x88\x32\xdc\xda\x0e\x7d\xac\x56\x27\xf4\xee\x8b\xd1\x38\x17\x3b\x5d\xd4\x88\xef\x92\xb6\xc2\xdd\xa9\x40\xd5\x61\x95\xca\x3c\xb6\x1b\x26\xc1\xca\x8f\xc8\x05\x84\x5d\x39\x6e\xdc\x67\xde\xb4\x79\x46\xae\x7c\xe7\x9d\x66\x9b\x6a\x09\x72\xe2\x39\xb4\x42\x29\xd1\xc5\xbf\xe5\xd5\xcf\x2e\x53\x63\x70\xdd\xa4\x65\x96\xe3\x6f\x0f\x7b\x2c\x7e\x6b\x39\x40\xf1\x9f\xf6\xb0\xa4\xac\x6b\x92\x19\x42\x64\x3e\xa4\xf1\x76\x81\x49\xf0\xc4\x34\x7d\xdd\xe6\x85\xdd\x72\x3d\x14\xdf\xfe\xf1\x8e\xba\x3f\x61\x84\xc1\x4d\x62\x1d\x88\x1f\x3c\xc0\x10\x2a\x8f\xe5\xe6\x28\x92\x97\x1b\x24\xdc\x7e\x03\x09\xbf\xfc\x43\x53\x01\x44\xd2\x08\xa9\x67\x7a\xf9\xf9\x20\x45\x3f\x35\x3d\x5c\x97\xcd\x88\xcd\x0a\x5e\xe2\x37\xe9\x85\x7e\xd3\xef\x97\x89\x19\xa7\xdd\x01\x70\x64\x5a\x1d\x7d\xcc\x20\x81\x7f\x09\xc4\xb6\x0a\x11\xb3\xbf\xb8\x1b\xa8\x1a\x98\x12\x0f\xd8\x94\x65\x22\x85\x54\xd9\xfe\x22\xde\x0a\x9f\xa5\x8e\x4b\xd2\xb3\xb9\x78\x18\x21\xe9\xba\x3e\xa9\x75\x19\x82\x28\xc7\x03\xf6\x6d\x30\xc5\x13\xee\xc1\x83\x61\x71\x9b\x32\x63\x89\xde\xfc\xde\x53\xdd\xbf\xdf\x49\x17\x94\x66\xf9\x2e\x8a\xc1\x08\x1e\x3e\xc4\xed\xa2\x16\x70\x9b\xec\xde\xd1\xca\x40\xb8\x7a\x8d\x78\xb2\xf6\x0d\xd3\x2d\x5d\x05\x18\x95\xb9\x13\x24\x83\x70\x82\x07\x41\x51\xd8\xbc\xd4\x98\x01\xb7\xf4\x21\xcb\x62\x7c\xd8\xa4\xdc\x57\xe6\xd6\x14\x63\x09\xdf\xc8\x46\xea\x90\x9f\x31\x0d\x9c\x8c\xa2\xdc\xf2\xf5\x6e\xdc\xe2\x71\xa2\x98\x1e\x27\x84\xd8\x70\xab\x70\xd2\xb9\xe3\x42\x54\x81\x29\x8b\x59\xf4\x50\x6d\xaa\xa8\xd9\x5e\x5f\x5b\xe1\xd2\xcf\x88\x02\xa2\xf1\x52\xad\x1c\x53\xc6\xb9\x1d\xda\xb4\x9c\x65\x55\x69\xa9\x5b\xa2\xd0\xf4\x03\xdc\x09\x5e\x8f\x60\xfd\xb1\xf6\x5f\xf3\x43\x72\x33\x2e\x07\xbd\xdc\x6c\xb6\x82\x55\xe5\x4f\xdd\x4f\xca\xf1\xd4\xfd\x3f\xff\x7c\x95\xca\x8d\x87\x69\x8b\x32\xa2\x9f\x50\x08\xf4\x13\xe2\x28\xd9\xb4\x97\xd8\x42\x6f\x1e\x89\xce\xbf\x73\x2f\x50\x8e\xa9\x01\x57\x66\x5b\x59\x69\x90\xf3\x73\x11\x46\x7d\xca\x43\x1d\xcf\xa4\x69\x36\x76\x13\x3e\x74\x26\x80\x4f\xc5\x42\xf1\x2d\x92\x5c\xf8\x96\xc3\x0b\xab\x28\x75\x58\xa9\xcd\x5f\xf9\x6b\x54\xc7\x42\x85\x53\xb9\x51\xcf\xd4\x44\x39\x86\x33\x55\x40\x83\xa9\x7f\xc5\xe5\x13\xc8\x1b\xde\x77\xf7\xa1\xa6\x40\x53\xa6\x5f\x8b\xed\x24\x53\xd3\x2f\xf5\x8b\xac\x3e\xa0\x3e\x92\x24\x68\xb2\x7c\xb8\x45\x0a\x08\xd2\xeb\x92\x93\xed\xcf\xd5\x21\x7f\x0e\xad\xf5\xf2\xfc\xe2\x53\x64\x85\x52\x13\x07\xbe\x49\xc6\xf9\x7b\x3a\x4c\xc1\x70\x73\x55\x6d\x94\xdc\x00\xf4\xd6\xd1\x4b\x4b\x5e\xab\x28\xa2\xba\xd9\x59\x37\x8b\x91\x59\xa0\xb4\x88\x22\xb0\x28\x82\x63\xfc\x22\xe4\x95\x5f\xbc\x5b\x2b\x67\xda\xbc\x7c\xd2\xfd\x10\x3e\x06\xb3\x41\x20\x78\x6f\x47\x54\xc7\xf8\x26\xa3\xda\x2f\x4e\x6a\x0a\x7d\x04\xfa\x91\xca\x9d\x7c\xc1\x24\x94\xce\x6e\x4e\x88\xc7\xf2\x4d\x56\xf9\xbf\x4f\x92\x55\x37\x69\x7f\x97\x6a\xe6\x4c\xa0\x5b\xa2\xb7\x83\xa6\xcb\xc7\x35\x4a\xeb\x84\x3f\xb6\x11\x6f\x88\x8d\x91\x98\x58\x93\xba\x34\xc2\x67\xd4\x9d\xdf\xa7\xc4\x3a\x8f\x8b\xf5\x7d\xac\xe8\x55\x7d\x5c\x7d\x74\x6b\xea\x5e\xad\x1d\x32\x6a\xd8\xa6\x76\x61\xea\x7a\xa5\x90\xc5\x23\xfa\x0f\x98\xed\xf2\x0f\x0d\xc8\xa4\xf6\x00\x5d\x6d\xa4\xdf\x9e\x84\x11\x34\xb0\x3f\x9a\x84\x28\xf2\x76\x93\x8d\x8e\x7d\xa3\x6b\x0b\x48\x0c\x60\xe9\xf8\x37\x54\x3d\x84\xce\x04\x26\xe8\x49\x52\xfc\x18\x66\xdd\x75\x71\x53\xf2\x61\x52\xdd\x39\x95\x30\x3a\xa6\x5b\x66\xf9\x5e\xf7\x66\xd1\x29\x05\xab\x06\xb0\x89\xdf\xa7\x46\xf6\x5d\x07\x16\x54\x3f\xaa\x56\xf8\x7b\x8c\x1e\xdc\x1d\x9c\x6c\xb0\xd7\x5f\x9a\x0a\x2a\x0f\x2e\xb7\xbb\x66\x68\x73\xf5\x7e\xc7\x22\x74\x8e\x60\x99\xe7\x30\x93\xdd\x5f\x67\xce\x08\x6d\x9c\x8a\x8e\x51\xb5\xdc\xc9\x8c\x71\x1f\xd0\xd9\x43\xba\x91\x71\x6a\x73\xe9\x5a\x20\x59\x42\x92\x2b\xc7\x2c\xe5\x62\xb6\xe2\xb4\xff\x54\x75\x43\x18\xce\xd7\xdd\xa3\xc4\xf1\xc5\xa8\xf5\xd5\x45\xcf\xc1\x6c\x79\x2b\xbc\x07\x64\x80\xff\x63\x0c\x1c\x68\xb8\xde\x8c\x68\x96\xdc\x45\xde\x22\x27\x48\xe9\xb5\xf0\x42\xb6\x13\x37\xdd\x76\x8f\x46\xd0\x8f\x26\x81\x68\x36\x1d\xcd\x1f\x5c\x6e\x97\x03\x53\x76\x07\x36\x8f\x8b\x21\x61\xe5\x25\xd1\x96\x13\x96\x73\x2a\x4a\x93\x96\xe2\x08\xea\x15\x56\x57\x42\xd8\xd0\x14\xab\xf6\x0d\x42\x7d\x8d\x41\x31\x4d\xe4\x78\x8a\x2e\xbb\x78\x84\xda\x7e\x33\x24\xba\x87\x71\xe6\x25\x09\xfc\xb6\xf3\x31\xf9\x08\x3e\x9f\xdb\xfd\x01\xcd\xb8\xdb\x69\x89\xca\xf1\x76\x20\x71\x7e\x63\x42\x24\xe1\x8b\x53\x2e\xb5\xe8\xb5\x5d\x8f\x48\x7e\x4a\x08\xd2\x64\x49\x7f\x28\x58\x60\x78\xa2\xe8\x37\x3c\x6f\x69\xd5\x6e\xd8\x3c\x01\xa0\xcf\xeb\x3b\x2c\x2d\x71\xa1\x40\x15\x5a\xef\x50\xa8\x53\xc6\xfd\x41\x59\x7d\x6c\x07\xff\x1d\x1f\xfb\x93\x88\x24\xc0\xaf\x35\x09\x23\xe4\x16\x92\x4c\x73\x44\xe7\xbe\x1d\x6a\xa9\x5f\x38\x3d\x21\xaa\x2d\x6e\xdc\x53\x52\x82\x14\xc1\xb9\x26\xc2\x9b\x29\x8a\xb8\x9f\x62\x13\xd7\x8a\x5a\xf5\x79\x1d\x80\x9a\x1e\x74\x4d\x9e\x64\x2a\x99\xa7\x4d\xad\xd0\x71\x7c\x7f\x42\x48\xa6\x5b\x44\x76\x2b\xcc\x9a\xed\x8f\x4d\xde\x93\xba\x8d\x44\x98\xa4\x50\xf5\x2e\x37\x12\x4c\x6e\x92\xc4\x62\x42\xe2\x9f\x3f\x22\x0f\xd4\x8f\xd8\xd0\xcb\x6e\xd8\xd4\xf1\x4d\x3d\x8a\x29\xa8\xf0\xa0\x0c\x2e\xff\x10\x91\x56\xcf\x75\x02\x2a\xf4\x53\x3b\x43\x93\x9d\xfc\x1f\x8f\x4e\x6a\x5a\x99\xfa\x0c\x8a\x41\xd6\x5d\x17\x15\x6b\xcf\x65\x0d\x62\xde\xc7\xa2\x27\x03\xa3\xc1\x60\x66\x60\x5b\xbe\x3e\x09\xd5\x93\xe0\x36\xd7\xdb\x8c\xab\x68\x4b\x80\xb5\x68\x20\xcf\xa2\x88\x23\x27\x9d\x26\x3f\x2c\xb0\x60\xf0\xb1\x57\x83\x3f\x73\xd8\xb5\x2f\x13\xb3\xa2\x8a\x3a\xd3\x6c\x35\x31\x45\x99\x0d\x8d\x23\x84\x6b\xc5\x3a\x10\x02\x76\x6d\x07\x95\x2b\x53\xed\xb1\x3e\x0f\x3f\x1b\x91\xd4\xcf\x21\xb7\x34\x6a\xa0\x41\xad\xe2\x71\xbe\x46\x4a\xfd\x28\x28\xaa\xc8\x58\x78\xdc\xab\xb9\x69\x51\xf9\x1c\xb9\xb0\x1c\x13\xd6\x23\xb1\x28\x22\xcc\xd6\x0a\xfb\xe4\x28\x09\xc2\x0f\x62\x80\x3b\x6c\xac\x38\x2d\xd4\x78\x70\x19\x15\x4f\x37\x9c\xb0\x03\x03\x65\x20\xc7\x6c\x31\x9f\xda\x27\xdc\x8f\x60\xf6\xee\x81\xe0\x03\x76\xd0\x27\x5c\x54\x86\x27\x72\x17\xcb\x07\xaa\xd2\xdf\x71\xb1\xaa\xb6\x47\x6a\xf2\x38\x61\xc1\x39\x15\x05\x4a\xe1\x49\x0a\x38\xce\x34\x1a\x49\xe4\x71\xcf\xe2\xd6\x3d\x31\xfb\xe5\x20\xe7\xea\x7e\x02\x73\xfe\x11\xb5\xd7\x3f\xf6\xd9\x41\x37\xcb\xb3\xd4\x96\xc2\xac\xd4\x8f\x61\xd6\x6a\xc7\xc4\xfb\xfe\x98\xbc\x6b\xc5\xa3\x8c\xf6\x9b\x45\xbf\x0e\x4c\x23\x3c\x5e\x6d\x57\xd9\xc1\x1e\x52\xd9\xf8\xc0\xdd\x91\x2e\xa0\xdc\xdd\x6a\x2d\x2c\x04\xd7\xce\x6a\x06\x62\x3a\xce\x74\xdc\x3c\xc5\x22\x7d\xac\x11\x9e\x64\xed\xd0\x57\x91\xd4\x2c\xb6\xba\x59\xd5\x1e\x68\x08\x12\xc4\x20\x7e\x26\x10\x42\x80\xb4\x56\x9b\x04\xd2\x6f\xbe\xde\x80\xb7\x59\x69\x9b\xd5\x71\xda\x53\x14\x85\x0f\xcc\x7d\x8b\xe0\x66\x90\xbe\x30\xa9\xe9\xab\x36\x1a\x42\xca\x7d\xdb\xd4\x3a\x11\xe7\x1e\xa4\xe5\x8f\x88\x0c\x74\xdf\x03\xec\x36\xcd\x16\xc9\xbe\x09\x35\x55\x45\x6c\xeb\x60\x95\x2c\x2d\x50\x23\x43\x79\xe0\x06\x7b\x77\x5c\x24\x5c\xde\x31\x0a\xf6\x77\xc1\x0a\x01\x8b\x52\xab\x69\x0d\xf9\x42\x35\xcb\x7a\x9e\x28\x8d\x92\xf1\x55\xb2\x8b\x86\x5c\xae\x6c\x98\x0d\xc8\xdf\x57\xdb\x85\x89\x13\xff\x92\xa4\xc2\xe3\xae\x47\xab\x3d\xde\x17\x2b\x77\xa2\x57\x33\x01\xb7\x8c\xe9\x84\xbf\xdb\x8d\x6b\x45\x6d\xfd\x8a\x17\xfe\x1d\x25\xa6\xeb\x72\x65\xf7\x9c\x94\xd5\xc5\xed\xb8\x9d\x63\xe0\xb5\xd7\xda\x45\x69\xca\x58\xba\xdc\x78\x31\x0f\x26\xe1\x25\x3d\x98\x0a\x96\x17\x8f\xb4\xf3\xd0\xd3\x97\x82\x2b\xa6\x98\x57\x3e\xf2\x32\x83\x0f\xbc\x3d\x6a\x6e\xbb\x59\x3f\x8d\xdf\x34\xab\xc2\xb7\x14\x34\x76\x0d\x99\xfd\x29\x46\x66\x5b\x9b\xcf\xb1\xbc\xd5\x64\x67\x06\x82\xcc\x17\x85\x12\xb4\x79\x6f\x33\x32\xf8\x52\x13\x86\x61\x73\x60\xca\xd9\xd6\x2b\xaa\xbb\x7e\x96\x1b\x09\x88\xa9\x51\x72\x39\x4f\x01\xf9\x65\xa2\x92\x65\xae\xb9\x5f\x3c\xe9\x7e\x07\xfb\xcd\x5d\x59\x28\xe4\xac\xfa\x92\x47\x22\x03\x84\x38\x10\xf2\xc4\x02\xc4\x80\x63\xcd\x15\xb7\x3e\x21\x5f\xbb\x5d\xc5\xfb\x8f\xae\xf0\x22\x22\x63\x11\xb9\xe1\x35\x94\xf2\x54\x26\xba\x21\x79\xd9\x88\x8b\x58\x73\x70\x75\xc5\xa5\x46\x3d\x1b\x55\xae\xe5\xb6\x8a\xaa\xc8\xa4\xed\x14\xc5\x23\xd7\xc9\x30\x61\xda\xfb\x7c\x69\x29\x48\x4b\xb7\xa6\xa4\xa5\xe5\xd8\x4f\xd7\xbe\x2d\xf7\x87\x8e\x33\xc2\x55\x84\xe1\x77\x11\x3e\x7a\xdd\xb3\xea\x9b\xb0\xa5\x3e\xe7\xb6\x57\x1d\xac\x24\x09\x78\x81\x69\x7e\xb3\xae\x07\x8e\xb7\xff\x59\x57\xa1\x56\x32\x88\x7b\x84\x68\x8e\x3f\x9a\x30\xf7\xa2\x28\x33\x70\x2f\x0e\x2e\x4b\x36\x75\xd4\xbd\x14\x39\x9e\xba\xd5\x2a\x81\xca\xba\xeb\xa6\xcc\x32\x79\xae\xa8\x55\xde\x22\xb4\xdd\x2d\x3f\xef\xd6\xac\x29\xc7\xc1\x04\x51\x50\x56\xee\x4f\x15\x71\xf5\xac\x0f\x85\x93\x37\x57\x6d\xde\xd7\x98\x10\x51\x14\xf0\x45\x35\xc0\x24\x26\xd6\x95\x26\x64\x5c\x20\xf4\x42\xd3\xca\xd7\x25\xab\xeb\x94\x93\xa9\x42\xcd\xe2\x91\xf6\x6a\x16\x27\x64\xd0\x7a\x81\xa4\x04\x2f\x34\x68\x10\x3a\xde\x27\x30\x6a\xf5\x15\x0b\x0c\x65\x1d\x3d\x3b\xf9\x01\x5f\x6a\x0f\xe2\xfe\x60\x26\x54\x39\x8f\x23\x1d\xd3\xbb\x0b\xa6\x10\x3f\x8b\x9e\x53\xec\xb4\xed\x0e\xd2\x2c\xc9\xfa\x71\x57\xc0\xc4\x58\xab\x51\xd6\x50\x43\x78\x37\x0d\xd0\xc2\xfd\xb8\xd1\x52\x63\x60\xcd\xc8\xe6\x04\x7b\x13\xdd\x4e\x49\x93\xa3\xd0\xe6\xde\xa6\x18\x66\x35\x4b\xe7\x08\x4d\x7b\x9f\x60\x9f\xfb\xb6\x43\x92\x35\xd7\xa9\xa2\x16\xed\x86\x71\x4f\x67\xaa\xe0\xfa\xf2\xfc\xa2\xca\xca\xb7\x28\x67\x67\xbd\x88\xe3\x53\x46\x02\x0b\x0b\xed\xac\x6b\x4d\x9a\x89\x50\x08\x59\x87\xc3\x0b\x2f\xa8\xfd\x87\x96\x30\x14\x8b\xbd\x99\xd1\x3d\x97\x20\xc8\x71\x33\xc0\x7b\x90\x8d\x20\x4b\xad\x15\x3d\x8c\x43\x24\xb7\x73\x8c\xe8\x12\xac\xb0\xfc\xcb\xf6\x3e\x2d\xee\xcf\xb8\x67\xca\x7e\x3b\x68\x76\x3c\x70\x11\x9b\xfa\x7d\x90\x4d\xfd\xb8\x88\x53\x5b\x14\x4f\x07\xf9\xa2\x1f\x10\xa9\x42\xa2\x27\x24\x75\x7b\xd1\xfe\x45\x91\xad\xb5\xed\x16\x67\xe4\xbb\x1f\x93\xa2\x20\x14\xe1\xf0\x2a\x76\x8b\x05\x91\x32\xf6\xaa\x58\x1d\x3f\x72\x16\x0d\x57\xac\xbb\xc2\xd1\x07\x75\x50\x44\x03\xd1\x7a\x71\xcd\x81\x17\x3b\x9f\x22\x18\xa4\xd9\xb0\xc9\x93\x01\x30\xf7\x77\x27\x33\xaf\x78\xc7\xc0\x0f\x26\x44\x68\x3f\x13\xb1\x9c\xf5\x2e\x28\xe7\x20\x90\x42\x2c\xe0\x8d\xcc\xa9\xff\x10\xb5\x7e\x43\x1b\x03\x27\x26\x01\x34\x75\x81\x59\xd3\xc7\xb0\x08\x60\xe0\xee\xde\x9e\x02\x67\x2d\xb6\xd3\x6c\x43\x12\x3e\x6c\xd4\x70\x8c\x97\x63\x42\xa4\x96\xb6\x28\x67\x43\x5a\xb7\xdf\x8d\x62\x84\x2e\x67\x99\xa1\xb0\x4d\x82\x27\x97\x1a\xad\xdc\xd7\xc6\x79\xea\x2c\x76\x98\xd2\xf8\x3e\xde\x9e\x16\x03\x1b\x82\x85\x71\xba\x66\xe2\x9c\xbc\x71\x2e\x92\x8d\xea\x45\x66\x8b\xc6\x6f\xda\x3d\xd5\xd5\xa1\xa3\xfb\xb7\xb0\x31\x60\x57\x05\x46\x07\x0b\xc1\x0f\xb1\x31\x48\xf3\x9f\x59\xa0\xef\x4e\x42\xaa\x75\xac\x81\x77\x3e\x84\x82\xc0\x4c\x80\xcb\x8b\xfa\xb6\x2e\x2a\x01\xe9\x77\xaf\xc1\xf8\xb0\x1d\x17\x89\x49\x55\x27\x11\xe0\xee\x13\x0c\xd4\x9f\x2e\xdf\xac\xcc\xb7\x47\x71\x3a\xca\xe2\xd4\x53\x41\x51\xe3\xba\x41\xf5\xae\x1b\xd4\x85\x5a\x13\x0b\x3d\x54\x2b\xae\x92\x16\xc4\x55\x9f\x50\xbf\x6e\x86\xde\x50\x1f\xf1\xef\x7b\x2c\x1a\xf6\x5e\xb0\x36\x49\x8b\x71\xee\x7b\x61\x32\xdd\x30\x7e\x31\xb2\xae\xb0\x09\xd5\x63\x9f\xe2\x40\x74\x68\x5f\x35\x5f\xc9\xe0\xf6\x90\x6c\xdf\xbb\xb6\x59\xd1\x8c\x29\x2f\x4f\x76\x02\xd0\x11\x9a\x66\x58\x21\x9f\x00\xbb\x17\xdb\xe6\x51\xac\xc9\xca\x9d\xe5\x3a\x7a\x2f\x4b\xf7\x91\x77\xd6\x09\x04\x67\xaa\x1d\x5c\x7d\xb7\xf4\xd3\xdc\x32\x87\x08\xf3\x9e\x9b\xf1\xea\xcf\x15\x20\xda\x08\x38\xb0\x8d\x08\xd1\x5c\x8d\x00\xf8\x27\x07\x63\x6c\x55\x44\x07\x57\x6b\xc8\x5b\x82\xe6\x42\xa2\x7a\x6e\xa7\x0f\xdd\xe2\x91\x6a\x56\x3c\x8b\xfb\x57\xe9\x0e\x77\x9f\x4a\xd4\x0a\x49\xeb\xe5\x88\xdc\x91\x6f\xa2\x0f\x81\x8c\x59\x0c\xfa\x30\xca\x4f\x90\xcb\x1c\x9e\x9f\x8a\x0e\xb9\xd7\x8b\x90\x55\x44\xfb\x95\x80\x4e\x88\x2a\x61\x3a\x78\x36\x7c\x20\xb1\x1d\x75\x4b\x33\x89\x13\xf9\x9f\x8f\x48\xf9\x20\xa8\x58\x14\x63\xdd\x47\xb1\x2c\xa3\x09\x81\xdf\x6f\x21\x13\x55\xea\x6b\x83\xc3\xb6\x29\x0a\x3b\x5c\x0d\x79\x0e\x22\xd7\x13\x84\x9a\x3b\x41\xc0\xf6\x55\x93\x98\xb4\x6b\xf7\x11\x5b\x07\x0d\x31\x3c\x2d\x6c\x15\x04\xe9\x5a\xf6\x85\x00\x77\xeb\x58\xd1\xc1\x69\xc0\xb2\x26\x44\x30\x02\x49\x85\x96\x31\xd9\x69\x64\x45\x5c\xc6\x1b\xae\x96\xf5\x68\x9b\x78\x43\xf8\x71\x1c\x5f\x68\xb2\x97\x27\xa3\xad\xb8\x28\x49\x95\x18\x19\x1a\x16\x36\x29\x6a\xa2\xbb\x35\xb3\x1d\x5a\x2b\xa6\xef\xc8\x26\x4f\x11\x62\xf2\x63\x74\xc3\xd5\x9a\x9a\x8a\xbc\xd7\x58\x14\xf8\xb8\x8c\x47\x84\xca\xba\x71\x7b\x65\x41\xbf\x74\xa1\x9f\x8e\x5e\xc7\x7b\x6e\xa6\x68\xcb\xab\xe5\x53\x9d\x73\x58\xf7\x94\x7c\x19\x90\x2b\xdf\xad\xcd\x8e\x71\xb1\x4e\x30\xe3\x53\x04\x33\x3e\xf5\x89\x60\x18\x67\x0e\x0b\xff\x09\xd1\x9b\xc6\x4d\xa8\xc3\x35\x2e\x1b\xe3\xf2\x9f\x4e\x88\x4c\x75\x97\x7c\xc1\x86\x2e\xa0\x2e\xb7\x66\x02\x55\x05\x91\xa3\x70\x00\x5d\x76\x86\xd4\xe0\x46\x14\xda\x0d\xa5\x4d\xc7\x39\x12\x53\x6f\xa6\x58\x0d\x56\x24\x52\x40\x87\xea\xbc\xd3\xb1\x5e\x65\x33\x70\x54\x54\x09\x5b\xe2\xa8\xbe\x45\xe5\xb6\xb7\x31\x0b\xb1\xd7\x5f\xdb\xe1\x4c\x60\x3f\x53\x5d\x91\x18\xba\xba\x06\x8e\x87\xc9\x2e\xe8\x67\xee\x51\xcb\x52\xdc\x21\x31\x7a\x05\x20\x8b\x29\x7d\x37\x0a\x0c\xeb\x96\x04\x37\xc8\x7b\x80\xa4\x46\x03\xfc\x61\x44\xd4\xcb\xbf\xef\x0a\x6a\x2a\xdc\xeb\xd6\x20\x8c\xdf\x6f\xbb\x3b\xc6\xc0\x3a\xce\x98\x5f\x27\xd2\xf5\xe2\xa3\x99\x6d\x12\xa9\x7a\x8c\xb5\x00\xb5\xb1\xff\x01\x53\x0d\x6b\xec\x51\xde\x26\x2e\xd7\xf0\xd1\x71\xb2\x3e\x43\xab\xce\x0c\xb1\xff\x2e\x73\xd4\x73\xbb\x89\xde\xbe\x6e\x47\x22\x3d\xae\xc2\x00\x54\xc6\xbd\xec\x4b\x07\x3d\x0b\x7f\x05\x4f\xca\x60\xbd\x6b\x2d\x0e\x84\xf8\x6d\xd5\xb9\x8f\x09\x40\xc2\x1b\x91\x87\x5e\xe9\x45\x32\x17\x2a\xc6\xdd\xae\xb5\x3d\x45\x83\x2b\xd5\x80\x79\x07\x54\x8b\x2d\x4d\xbe\x97\x60\x25\xe7\x49\xbd\xef\xce\x24\xe8\xd3\x88\x38\x2e\x82\x8a\x2b\xac\xc0\xf9\x7e\x44\x86\x30\x04\x3f\x78\xa2\xa3\x4d\x25\xf1\xb8\xb3\x16\x33\x48\x6a\x60\x88\x78\xc4\x6d\xc8\x7d\x07\xd6\xe2\x1f\x4c\x08\x68\x7f\x75\xca\xd2\x43\x6c\x64\xed\x9a\xcd\xc5\x03\x59\x87\x25\x1c\x56\xe4\x78\xa2\x36\x8a\x6b\xd9\x38\xed\x01\x48\x0b\x44\x98\x62\x0d\x49\xb4\x05\x5c\x03\x55\x99\x26\xd8\x8d\x35\x1b\x71\xb2\x35\xeb\x46\x9f\x8a\x38\x93\x17\xc6\x77\xa2\x10\xf0\xdc\x63\x25\xdf\xf3\x93\xfd\xfe\x75\xc4\xcf\x50\x9c\x71\xdf\x4d\x9d\x1a\xbc\x0f\x01\xce\x6f\x47\x41\x04\x5a\x6c\xa3\x10\x5a\x48\xe3\x0f\xcb\xc9\x5b\x13\x32\x1d\xbd\x85\xb1\x0d\xac\xfc\x1d\x42\x21\xde\x40\x6c\xaf\x12\xd4\x01\x84\xb2\xdb\x95\x22\x10\xd7\xdd\x75\x2b\x27\x2e\x17\x52\x77\x62\x8e\x51\x9b\x0a\xdd\xd5\x62\x6f\xa8\xe7\xbf\x8b\x9d\xb9\x26\x1c\xaf\x9e\x11\x84\xfd\xbc\x8e\xe1\xe1\xcd\x2d\x3d\x6f\xe0\x67\x92\x5a\xa0\x18\xd3\xea\x84\x88\x7e\x64\x4b\x4c\x03\xc4\x66\x1f\x38\x54\xad\x1c\xd7\x56\xa5\xb4\x87\x4e\x0d\x82\xb0\x87\x64\xd7\x27\x35\x06\x15\xd0\xf5\xc5\x09\x53\x40\xfc\xd4\x75\xea\xa4\xee\x1b\x85\x70\xf4\x22\x09\xd4\xbd\x33\x35\xa1\x57\xe6\xdb\x5d\x03\xc8\xf0\xab\x7e\x5b\x26\x15\x8e\xdb\x4c\xed\x7d\x4c\xad\x71\x47\xed\x35\x33\x84\xf8\x43\x99\xc5\x1b\x00\x05\x05\x83\x8f\x76\x46\x61\x2f\xcf\x1f\x6a\x2f\x2c\x3c\x8d\x67\xa5\x72\x8d\x6e\x6f\xc3\xa2\x86\xbb\x06\x09\xe0\x8a\xdb\x41\xb0\x6b\xcc\x6d\x87\xb0\xf1\x11\x5e\x88\xaa\x12\xb8\x47\x83\xc2\xd0\x3b\x35\x9d\x61\x66\x68\x92\xd4\xe5\xc3\xa8\x9e\xa6\x7a\x0f\xdd\xf3\x6e\x1f\xc0\x7e\xf3\xaf\x08\xba\xaa\x88\xcb\x45\x36\x1f\x53\xa8\xee\x2d\x2a\x3f\x3c\x22\xe5\xbc\xcd\x38\xed\x65\x9b\x7b\xaa\x6f\xf7\x4c\xe9\xea\xaa\xb5\xf4\x15\x5c\xaf\x4f\x38\xda\x02\x42\x8b\x47\x04\x44\xbd\x1c\x71\x02\xfe\x2b\x9f\xb0\x7d\x6f\xc6\xe5\x60\x90\x25\xae\xcc\xdd\xfa\x6a\xe0\xcf\x84\x07\x71\xc3\x91\x0a\xc0\x6b\xf8\xf9\xe4\x29\xff\x1a\xd3\x78\x80\x16\x8c\x2a\xaa\xd5\xe7\x5f\xa0\xf5\x61\xe1\x96\x7f\x60\x62\x4e\x99\x25\x6f\x0e\x4d\xda\x22\xb9\x5d\xa1\x12\xc9\x09\x85\x8d\xdd\x81\x5d\x1f\x64\x1b\x6e\xd9\x56\xd4\x2f\x17\xa4\x7d\x6f\x2e\x5b\x55\x0c\x1b\xd6\x4c\xe4\x54\x72\x5c\x8b\x76\xd2\x6e\x31\xe7\x7e\x5a\xed\xb2\x79\xf3\xbd\x5c\xcf\x3f\xfc\x3a\xf1\xc8\xad\x52\xc0\x2a\x4f\xdb\x36\x2c\x2f\x3b\x05\x9c\x9e\x41\xcd\x5b\x61\xba\xa1\x31\xf6\x21\xd5\xbc\x37\xab\x85\xbf\x87\x36\x91\x17\x0d\xf3\x8a\x45\x77\xc9\x8f\xfd\xba\x83\x85\xc8\x31\x09\x62\x5e\xa6\x2a\xeb\x7d\x62\x01\x74\x07\x26\x4f\xb2\xb2\xb4\x2d\xb2\xe3\x3d\x4d\xb6\xbb\xec\x11\xbf\x9e\xc7\xc5\x20\x35\x35\xd9\x79\x16\xcc\x64\x46\xb2\x96\x83\x81\x9c\xc1\xf2\xfa\x51\x0d\xe4\xeb\x3e\x89\x99\x7c\x75\xaa\x97\xb0\xb4\xd4\xce\xc6\x81\x01\x83\xc8\x56\xd0\xdb\x72\x12\x92\x59\xa7\x33\xb6\x06\xb0\x85\x8a\xae\x06\x1c\xf4\xb4\x8c\xfc\xd2\x52\x7b\x75\x9c\x24\xb6\x8c\x99\x8c\x77\x3e\x0a\x16\xdf\x8d\xa6\x9c\xa3\xf1\x50\x4d\x39\xa5\x96\x45\x02\x6f\xe7\x6a\x0b\x6c\x6e\x92\x4f\xb3\x82\x1e\xf4\xfe\xb1\x4d\xdf\x42\xe4\x89\xc4\x63\xd7\x36\x89\xbb\xfd\x5d\xb7\x9b\x28\x08\x2f\x8c\x9e\x56\x27\xf0\xc7\x6f\x4c\xc8\x46\x00\xb1\x85\x2a\xc8\x52\xf1\xe3\x34\x6b\x16\xdc\xc6\xb2\x87\x4c\xe9\x2a\xa9\x3f\x9d\x40\x44\x88\x95\x15\xc8\x3e\x7c\xd7\x04\xdb\xb0\x8a\x40\x52\x46\x72\x05\x6b\x0b\xfe\xe5\x1e\xc9\x99\x98\x24\xee\x8a\x1f\xbc\x52\xf3\x98\xa7\x37\xf5\x0e\x8e\xbc\xd4\x4e\xcc\xb8\x3f\x48\xe2\x94\x40\x32\xa2\x2d\xae\xb4\x53\xc2\x95\xdb\x72\x2e\x80\xef\x67\x3b\x01\xdf\x78\x37\x22\x0d\x94\x96\x5b\xbc\x55\xc2\xc8\xbd\x81\x47\x57\x1a\xe0\xca\xaf\xb6\xd7\xe2\x92\xd2\x58\xe8\x40\x21\xa2\xf8\x23\xdc\xaf\xc4\x65\xf5\x32\x84\x98\xd1\xa3\x46\x72\x8e\x4b\x71\xe7\xa6\xca\x42\xae\xa8\xda\x8d\x6d\xda\xb5\xa4\x5e\x7e\x06\x97\x2b\x27\x4d\xb1\xef\xaa\x31\x7f\xcd\x4d\x1a\x30\x23\x05\x0d\x89\xfb\x7b\x20\x49\x92\x6a\xd9\xfa\x3e\x43\xdc\xeb\xdb\x50\x8d\xf7\xfb\x7f\x88\x05\xa6\x5e\xc0\x17\xdb\x6b\x71\x6a\xd2\x6e\x6c\x73\x98\xa1\x62\x97\xf9\x98\x3c\xb0\x3e\x8e\x82\x16\xf4\x30\x4b\xe3\x32\xcb\x2d\xc4\x7d\xb1\xea\x42\xc5\x14\xf5\xd5\xb7\x99\xff\x78\x07\x8f\x50\xa1\xa5\x35\x11\xe7\x90\x93\x8d\xc6\x79\x31\xb6\x68\x99\xaa\xbf\x53\x78\x50\xc0\xe3\xe0\x42\x6e\x50\x9f\xaa\xca\x91\x4d\x92\xcc\x52\x9a\x2a\xf2\x0f\x18\xa1\x1f\xd4\xf6\x90\x96\x57\x58\xbe\x3e\x35\xa5\x17\x8f\xb4\x87\xb6\x28\x0c\x46\x2d\x36\xd6\x07\x2e\x61\x92\x63\x16\xe1\xf8\x4b\xbf\x21\x30\x63\x1d\xa8\x1e\x05\xf6\xa9\x4f\xbb\xc9\x8d\xa8\xe2\x36\xf7\x68\x76\x6f\x37\x19\x71\x8c\x06\x59\x89\x52\x7e\x8b\x6c\xbb\xde\x27\xb0\xd7\xfb\x35\x66\x42\xfc\x86\x52\x6d\x11\x73\xde\x8c\xa8\xb0\x78\xf3\x13\x1c\xc4\x0b\xad\x66\x22\x4a\x14\x99\x1d\x0c\xf6\x1f\x53\xe1\x64\x57\xe7\x93\x14\x7f\x05\x76\xee\x35\xe7\xff\x84\xf6\xa6\x3f\x99\x2a\xa1\x2e\x2d\xb5\xcb\xd8\x0e\x47\x20\x5b\xa8\xbe\x35\xb5\xf1\xcf\xf9\x1a\xa2\xd0\xd5\x6a\xa5\x18\x56\x4a\x76\x0f\x45\xcd\x37\x48\x20\x38\x31\xc5\xba\x99\x0b\x02\x3d\x67\xc8\x97\xff\xfb\xf8\x94\xd6\xd4\x42\x0f\xf8\x2a\xa1\xa2\xaf\x4e\x6a\x16\x2a\xa5\x71\x33\xd3\xc7\x54\x83\x09\x8d\x83\x01\xf4\x3a\xd5\xcf\xa3\x8b\xf8\x05\x95\x8a\x07\x11\xf1\xd7\x1e\x90\xe4\xcf\x25\x17\xe2\x69\x53\xaa\x01\x6c\xbf\x96\x64\x26\xcc\x52\x44\x6b\xdf\x24\x26\xc8\x37\x6b\xb2\x70\x5d\x1b\x6f\x68\xfe\x89\x81\x7e\x8a\xa4\x03\x4e\x4d\xbd\xf9\x6a\x59\x5b\x35\x69\x2a\x22\x4e\xd8\x5a\xc5\x69\xd0\x67\xbb\xd5\xbc\x54\x64\xe4\xce\xd1\xb9\xb4\xd4\x76\xda\x84\x79\x96\x7a\xfa\x2c\xc0\x31\x10\x61\xc1\x04\x9b\x75\xc3\x5d\x9b\xce\xba\x09\xa7\x59\x19\xaf\xc5\x6a\x35\xae\x04\x2b\x02\xb6\x3c\x20\x6c\xef\xec\xb6\x2e\x5c\xaf\x8f\x7b\x7d\xf8\x44\x93\xc4\xec\xf9\x88\x24\xae\x9b\x40\x76\xb9\x4d\xbc\xb1\x26\xa2\xe8\x4b\xd8\xfd\xe4\xa4\x61\x2d\x6e\x67\x23\x9b\x1b\x5f\x6b\x47\x71\x40\x54\xc0\xe4\x84\xc5\xb9\x9c\x4f\x0e\xaa\x6a\xa8\x8b\x9c\x86\x18\xb5\x9c\x4c\x01\x08\x96\x97\xdb\x6b\x59\xc6\x7a\x81\x7f\x1c\x91\xeb\xd5\x1f\x03\xde\xa5\x45\xa1\xf4\x17\xeb\x78\xe4\x6a\xd3\x42\x51\x00\x28\x2e\x04\x0a\x73\x1d\xf7\x93\x98\x3f\xa7\x81\xf9\xc1\x16\x75\x4d\x02\x50\x84\x55\xc7\x91\x66\xe0\x0b\xb0\x80\xe9\xfe\xd0\xfa\xf2\x6f\x49\x3c\x7e\x9f\x0d\x4f\x4e\x21\x22\x40\xf9\x4c\x0c\xe1\x91\x28\xef\x75\xa1\x06\x1e\xc8\x7d\x37\x9c\xf1\xd2\x6f\x30\x3f\xee\x01\x1e\x9b\x4f\xc0\x43\x61\xfe\x26\xd9\x27\x89\x90\x26\x22\xfb\x13\x2e\xe3\xc1\xf1\x1f\x10\x12\xf6\x04\x9e\x12\x02\xd3\xdd\x1d\xc6\x38\x05\xfe\xcc\x2d\xd4\xc5\xd1\x66\xbb\x36\x09\x22\x59\x65\x36\xda\x17\x9a\x69\x1f\xe1\xb2\x10\xb7\x8a\xa0\x1c\xe2\x85\x7b\xee\x17\xc1\x81\x85\x92\x99\x6a\xe8\xb4\xd8\xa6\x65\x25\xe8\xe5\x87\xb1\xca\x4c\xdb\x6e\x36\x1a\xd9\xdc\xb1\x2e\x1e\x7d\xcc\xde\x05\x17\xb8\xa0\x71\x9f\x62\xf3\x3f\x24\xc6\x4a\x39\xb0\x8e\x02\x6c\x30\x4c\xd4\x63\xce\x3d\x00\x39\x89\x9e\xf4\x3b\x8e\xb4\x1f\xa4\x81\xb8\x1d\x78\xa9\x17\x9d\x62\x0f\x76\xdd\x7d\xc4\xa9\x4b\xe2\x54\xc1\x94\x48\xab\xc5\x20\x57\x4e\x48\x39\xb7\x18\xe7\x7d\xeb\xaa\x48\xd8\x1a\xe1\xa0\x8c\x8b\xff\x01\x42\x3f\xc5\x8f\xb3\x05\x6d\xd3\x8a\xd6\x35\xa5\xed\x67\x42\x1f\x52\x50\x29\x83\x4d\xbd\x33\x40\x92\x8d\x46\x80\xc3\x8b\x1a\x40\x14\x96\x94\x93\x0d\x42\xa9\x87\xda\xf6\x0d\xdb\x1d\xef\xe8\x8e\xbd\x4b\xc5\xa2\x77\x77\xaa\xee\x2f\x2f\xb7\x8f\xbc\x74\xc0\xfd\x35\x16\x82\x77\x27\xd4\x91\x3e\x1e\x69\x3c\x48\x0c\x21\x90\x09\xc4\x2c\x7c\x42\x3a\x71\x17\x88\x99\xf5\xaf\x5c\x98\x8d\x01\x7b\x1b\xf3\x50\x5d\xcb\xdd\xcc\xc3\xc0\x7c\x07\xc5\x7a\x0c\x88\x37\xf0\xe4\x90\x17\x1f\x15\x87\x12\xad\x45\x05\xa3\x08\x90\x27\xa4\x64\xe7\x06\xa0\x08\xc7\x43\x97\x15\x2f\xfc\x07\x0d\x2b\xfd\x72\xbb\xb0\xc1\x54\xd6\x17\xe0\x7c\xab\xe3\x6c\xcd\x26\x31\xcf\xd2\xbe\xcd\xe7\xaa\xef\x67\x0b\x3b\x76\x4e\xc3\xee\x7b\x0d\xb3\x46\x55\x1e\xdc\x45\xc8\xc9\x27\xb2\xc1\x4d\xaf\x27\xbb\x39\x82\x83\xa7\x09\xaa\x33\xb3\x4d\xf9\xe1\xf5\xa9\x68\xf7\xc8\x4b\xed\x35\x57\xba\x5d\x58\x54\x71\xbf\x88\xea\x7c\xe7\xbd\xff\x8e\xa7\xcf\xab\x47\x16\x2a\x79\x67\x89\x02\x7c\x96\x22\xcb\x35\x67\x46\xc7\x12\xb8\x00\xfb\x23\x31\x47\x29\x1a\x21\xec\x23\x68\x65\xaa\x79\x14\x79\x01\x62\xca\x51\x07\xfe\x55\x5f\xee\xd9\xf9\x3a\xfe\x46\x3b\x1d\x0f\x57\x9d\x12\x14\x29\x75\x7c\x8b\x39\x6e\xdf\x22\x08\xb7\x4d\x62\x27\x99\x68\x7b\xee\xc6\x59\xfb\x50\x8e\xbd\x0c\xc4\x46\x9c\x97\x63\xdd\xe9\x44\xc7\xaf\xa6\xe9\xb7\x33\xa6\xfd\x52\xdb\xe4\xfd\x31\xb6\xe1\x43\x0c\x66\x56\xfc\xe2\x7d\x5c\x15\xea\x5e\x73\x9d\x90\xdc\x17\x03\x93\x8f\x84\xb0\x82\xc0\x5d\xde\xbf\x9c\x4c\x6d\x79\x0b\x8b\xed\x5e\xb6\x99\x3a\x25\x73\xc5\xda\x57\x6f\x5e\x8e\xbd\xae\xce\xc0\xe6\xab\xe4\x86\x76\x93\x41\x3f\x90\x54\x97\xa6\xee\x14\x60\xe8\x2f\xb7\x7b\xe3\x04\xa8\x1f\x0d\x59\x5a\x9e\x81\xfc\x31\x17\x0d\xa7\xf3\xf5\x83\xcb\xed\x35\xb3\x91\xe5\x2d\x02\x65\xa0\x08\xa2\x95\x8b\xcf\xd6\x17\x8f\x95\xf9\x2a\x63\x3b\xbc\x3f\x74\xea\x84\x1c\x2a\xbc\xae\x88\xcc\xe9\xc1\xde\xf7\xf2\x03\xd5\x1a\x23\x6b\x80\x1b\x66\x48\xa8\x25\xfa\x51\x5a\x58\x35\x9a\x30\xfe\xae\xa1\xdf\x22\x7f\x85\xf5\x44\xb5\x1a\x76\x0e\xad\x23\x2f\x39\x29\x75\x87\xdc\xf4\x6c\x95\xcb\x24\x61\x36\x0d\xfb\x73\xb5\xfd\xe1\xb8\x3b\x70\xaf\x12\x1b\xcb\x3b\x51\x28\x70\xbe\x33\xd5\x99\x5d\x99\x5f\x71\xca\xb3\x71\x59\xee\xb4\xa9\x0e\x1b\xc3\x29\xc2\x94\x77\xb3\x71\x0e\xc5\xcf\x60\x79\xe3\xae\x49\xed\x6f\x74\xd5\x37\xfd\x2a\xb6\x43\xf0\xac\x91\x50\x75\x1f\xaa\x6c\xcc\x2d\xbf\x0b\x5c\xb6\x7c\x4c\xc8\x87\xf5\xfe\x2a\x07\x6d\x97\x49\x02\x66\xfa\xee\xff\x86\x4a\xa7\xa3\x7d\xe4\x97\x5c\x0f\xce\xbb\x30\x09\xec\x4c\x93\x97\x83\x71\x1e\x1b\x91\x13\x41\x04\x75\xd4\xfd\xb1\x1c\x4f\x82\x19\xda\xc8\x16\x65\xdc\x75\x32\xf1\xdc\xea\xc1\x7e\xa9\x65\xa3\x50\x8c\xdf\xb4\x45\x09\x9a\xb3\x84\x08\x88\x74\x3c\x06\x41\xfd\x1f\xff\x1c\x68\x3e\xba\xd4\x53\x60\x76\xde\xa7\x4c\x49\x1c\x64\x00\xb8\xe0\xae\x6c\x29\x82\x28\x0d\xac\xc8\xca\x12\xb9\x31\x18\xd5\x5c\x8e\x82\xff\xe5\xda\x38\x59\x0b\xc6\x19\xaf\x7a\x8f\x74\x5a\x6b\xde\x26\x4b\x5e\xf0\xf1\x54\x64\x45\xb1\x9c\xc5\x5f\x1a\xcd\x4e\x65\xbf\xd8\x4b\x1e\xd4\xfa\x14\x17\x49\x5f\xf1\x44\xad\x3b\x62\x92\xf5\x3d\xee\x02\x30\x0c\x6e\x70\x43\xe7\xa2\xab\x58\x63\xa4\x3f\xb1\xcd\x58\xff\x96\xd7\xca\x84\x6a\x19\x8e\x3f\xd5\x09\x72\x16\x66\xc3\xc4\x09\xd5\x04\x01\xac\x91\x63\x72\x4e\x1a\xda\x9e\x60\xea\x98\x40\x27\xc7\x84\x15\x1d\x6c\xf5\x72\x33\x4e\xe2\x6e\x8b\x1e\xe8\x6c\xc7\xed\x1f\x72\xb2\x1d\x98\x70\x36\x2d\x73\x21\xcd\xbd\x18\xc4\x33\xfd\xd3\xbc\x47\xa4\xb9\xe2\x6b\x63\x93\x54\x2b\x55\x35\xc6\x91\x57\xfd\x7c\x12\x72\xac\x9f\x93\x75\x44\x61\xd3\x17\x5a\x8c\x2c\x3b\x8e\x27\x2e\x27\x41\x45\x2a\x1d\x54\xd9\xad\x84\x83\x18\x26\x67\x23\xf2\x92\x39\x4b\x04\xf3\x9e\x2d\x6d\x3e\x57\x47\x9d\x52\x95\x0f\x48\x3e\xdf\x6a\x0f\xe6\x30\x51\x0d\x8e\xda\x50\xe0\xee\xc5\xc5\x68\xac\x88\x60\x04\x04\xdf\x25\xf0\xcf\x77\x1b\x58\x70\x87\xdb\x3d\x9b\xa2\x92\x8b\xbb\x17\x30\x87\x9c\xf8\x71\x97\xe6\xdd\x16\x0b\x99\x8b\xc7\x93\x9c\x44\x84\x1d\x1b\x8e\xfb\x2d\x27\x10\x83\xda\xca\x8f\x48\xd8\xe1\x47\x53\xbb\xc6\x91\x97\xda\x26\x49\x0c\x2e\x00\x2b\xf7\x7b\xd4\x9b\x7f\xcf\x2f\x6c\xa9\x19\x25\x56\xb9\xf6\x0a\x60\x60\x34\x43\x93\xe4\xeb\x5a\x92\x49\x37\xeb\xd1\x1d\x42\xb7\x5f\x22\x56\xe3\xb1\x06\xd4\xac\xed\xf7\x25\x02\x40\xdc\x8b\xb2\xb3\x1c\x4f\xc9\x63\x8b\x33\x68\x69\x87\xa3\x2c\x37\x22\xfc\xa2\x2b\x27\xa1\xe6\xa7\x05\xf2\xbf\xd4\xde\x30\xc9\x58\x77\x00\x90\x15\xfe\x6c\x42\xde\x46\x7f\xe6\x67\x4d\x61\xcb\x6a\xfd\x9f\x0b\x15\x98\xdb\x64\x40\x7b\x66\xc2\xba\x75\x58\x50\x90\x85\x5e\xc6\xfa\x06\xf0\xc0\xb5\x7a\x99\x6b\xcd\x3e\xe9\x76\x52\x6c\xb1\xbf\xeb\xbe\x0f\xed\xb2\x3d\x1d\x72\xf6\x39\x13\xd5\x38\x97\x6e\xf7\x94\x8f\xe0\x97\x44\x67\x55\xf6\x16\xc4\x07\xef\xbb\x75\x44\x5c\x8f\xdd\x5e\xc8\x0e\xc8\xc2\xd1\x00\x55\x0c\x61\xd2\xdf\xa3\xf9\xa9\xb2\x7a\xee\x77\x91\x2a\xdc\x26\x61\xdd\x9a\xa8\x92\x4d\x01\x1e\x9a\x0d\x7d\xd2\xcb\x08\x10\xd4\x5c\x9f\x8b\x27\x64\x48\x58\xf7\xb2\x2e\x0a\xd3\xe2\x42\x64\xb5\xc2\x69\x81\x32\x14\x25\xf3\x78\x34\x17\x96\x94\x3b\xac\xce\x2e\x69\x0a\x50\x46\xb0\x8e\xd4\xbe\x9c\xbb\x0d\xd4\x01\x6e\x92\x58\x96\xc9\x73\x93\xf6\x2d\x8a\x31\x55\x1e\xae\x5c\x09\x82\x51\x5e\x9a\x84\x22\x5e\x56\x94\x12\xf6\xeb\x92\x4a\x08\xe1\x9f\x4e\xe8\x59\x5e\xf4\x9a\xef\x09\x28\x97\x8b\x9e\x94\xd1\xf2\x42\x7b\x42\x6c\x00\x14\xf1\x09\x57\x62\x42\xc5\xf8\x41\xbd\x23\xbd\x73\x7a\x2c\x1e\x69\x17\x56\x96\x18\x4c\xbd\x73\x84\x08\x9d\xa6\x68\x2e\x1e\x69\x67\x6b\x6b\xb1\xd4\xe4\x51\xe4\x3f\xc1\x48\x8c\x69\xa8\xe6\xf2\xf2\xa1\x76\x37\xce\x45\x27\x91\xab\xcb\xb5\x3e\x66\x83\xef\x6a\x6e\x87\x26\x4e\xc5\x97\x90\xdc\x07\x16\xf5\xa4\x36\x03\xcc\x2a\xcb\x4e\x63\x98\x2a\x58\x89\x07\x47\x69\xcd\x4c\x5d\x69\xc4\xd3\x34\x04\xfc\x83\x34\xe2\xa8\x87\x6f\x6c\x3a\x6d\x90\xa2\xb4\x31\x30\xa4\x1e\x54\x13\x10\x86\x97\xa9\xcc\x51\x64\xa9\x29\x0d\x6d\x89\xb2\xcb\x28\x40\x9d\xe4\x3d\x4c\x9c\x96\xd5\x2d\x6a\x29\xb5\x89\x42\xf1\x94\x6f\x52\xe4\x45\xf9\x4c\xb5\xb2\x7a\x73\xa5\xf0\xfc\x76\x6f\xb7\x7e\x43\x17\xf3\xb9\x0e\x15\x8e\xbf\x17\x30\x1d\xd9\x2f\x39\x8c\xb2\xaa\xa5\x52\xa1\x78\xff\x76\x68\x08\x7d\x0e\x80\x65\xca\x61\x5f\x95\x68\x0e\x51\x97\xfb\x8d\x0f\xda\x1d\x82\x49\x89\x00\x84\xc2\xe3\x29\x07\x3e\xef\x53\xb1\xa2\xcc\x6d\x59\x05\xd5\xde\xc2\xe1\xa4\xc3\xdb\xc8\xf1\x14\x4d\x62\x61\xa1\x9d\xda\xb8\x3f\x58\xcd\xf2\x41\x96\xf5\x88\x78\xf5\xbe\xbb\x23\x15\xbe\x9b\x5e\xef\x37\xe2\x0d\x33\x53\xdd\x28\x82\xb0\x3b\x51\xa0\xe4\x5c\x0c\x6d\x87\xff\xfe\xf8\xd4\x47\x17\x16\xdb\x83\x18\x7c\x2d\xa4\xe2\xa7\x30\x1c\xe4\x84\x4a\x51\x0e\xc6\x3b\xca\x6d\x29\x08\x60\x55\x20\x77\x8f\x94\x6b\x60\xaa\xa0\x3f\x4d\x64\x68\x8f\x6c\x5e\x8c\x4d\xcf\xd2\x5e\x79\x91\xf6\xca\x8b\x53\x69\x46\x35\x8f\xd6\x9c\x78\xb3\x0f\x66\x31\x10\xbe\xe1\xd6\x01\x39\x6e\x28\x76\xb4\xd7\xb2\x7c\xd3\xe4\x30\xf1\x40\xf8\x02\xa4\x8e\xa0\x24\xdd\xe2\x8e\x6a\x5d\xab\xd3\xd0\x99\x28\xac\x33\x28\x6b\x79\x7b\x91\xdd\x1d\x6a\x8f\x7e\xa7\xd6\x53\x7b\x6f\x42\xba\x08\x77\x9a\x44\xb9\x72\xbb\x36\x2e\x74\x97\xd4\x68\xce\x3d\x67\x0d\xf3\x76\xbe\x97\x6a\x4b\x4e\x33\x27\xea\xa4\x72\xf9\xee\xa9\x7b\x4d\xb3\x15\xed\x69\xfc\xb3\xa9\x46\xf8\x57\x5e\x69\x9b\x0d\xa7\xeb\xe3\x06\x32\x6a\xae\x1f\x63\xad\x95\x13\x7a\xaf\xe3\xa4\x8c\x87\xa6\x1c\x0f\x85\x1d\x0e\x28\x14\x54\xfd\xe4\xd8\x43\x79\x47\xd9\xa6\xcd\x67\x77\x80\xe1\xaa\x99\x83\x69\x77\x97\x1a\x81\x4f\xe0\x79\xa9\xe9\x9c\x67\xee\x65\x45\x69\xd3\xf5\x6c\xb3\x50\x3f\x76\xad\x15\x70\xe1\x60\x6a\x98\x7e\x75\xd1\xfb\x84\xe0\xa5\x3d\x62\x9f\x90\x8b\x2e\x41\xd4\x70\xa1\x16\x21\xbc\x09\xd1\x02\x11\x69\x8b\x42\xb1\xe1\xb8\xab\xe3\x22\xaa\x90\x7d\xc8\xc7\x07\xe1\xb2\xce\x50\x9b\xe9\x12\x15\xbd\x2e\xa1\x7e\x0e\x94\xcf\x29\x92\x6f\x3c\x8d\x44\x5d\x1b\x53\xcf\x90\xee\xf7\xb8\xb0\x4f\xb5\xbc\x0c\xc8\x6d\xee\x23\xdc\x9d\xb8\x94\x40\x75\x1b\x5a\xcf\x3f\xef\xf5\x1c\xdc\xef\xf8\x06\xe2\xca\xbc\x24\xbb\x62\x46\xae\xb2\xd9\xa1\xc1\x7a\x0d\x97\x8f\x3a\x1d\xa2\x00\xcf\x09\x5f\x3c\x22\x23\x56\xea\xf7\xe8\x16\x5f\x89\x74\xcd\x1f\xa7\x3d\x9b\x6f\xe6\x71\xa9\x59\x80\x30\xa9\xf1\x78\x94\x56\x4d\x6e\xea\x79\x06\x6f\x9d\xbd\xa1\xd8\xf9\x3e\x57\x44\x65\xd0\xa9\x1a\x51\xc0\xc5\xde\xc4\xeb\x56\x49\x75\xb2\xea\x80\x3c\x0a\x56\xc8\xe9\xb2\xd9\xca\x7c\xdb\xf4\xb3\x34\x7e\xd3\xce\xd4\x0a\x22\xe4\x04\xc0\x01\xeb\xef\x50\x13\xb8\xe8\x9a\xb4\x27\x3a\x23\x32\x8b\xa2\xb0\x9f\x5f\xa6\xac\xcd\x71\x53\xca\x71\x6e\x59\x57\xe9\x02\xdf\x4a\xa8\xb6\x75\xb3\xd1\x96\xf7\x91\xc4\x13\xc2\x2c\x90\xfd\x8a\x0a\x0f\x57\xb1\x23\xa2\x72\x7b\x91\x1a\xc5\x1b\xc5\x0b\xfb\x02\xf1\x70\x97\xdb\x97\x10\x08\x1f\x73\x9d\x19\x44\x3b\x4f\x61\xf7\xf1\x12\xfc\x2b\x41\x5b\xb2\x7a\xfa\xe8\xff\x38\xb7\x33\xcd\xcb\xaf\x71\x6a\x7d\xc9\x1b\x14\x64\xab\xaf\x43\x93\x5c\x62\x31\x6c\xe6\xd7\xb1\x88\x61\x48\xc0\xbd\x09\x78\xcd\xd3\x53\x35\xfc\x2f\xb5\x4d\x51\x64\xdd\xd8\x94\x76\xb6\x56\x68\x7b\x59\x11\x61\x70\xed\xf7\x66\x98\xde\x60\xf1\xf7\x26\x41\x9e\xc1\xa4\xbf\xe8\xe2\x4d\x24\x97\xdf\x41\xc4\x8b\x6a\x97\x50\x14\x80\x5d\xdc\xd3\x71\x53\x00\x85\xa8\x2b\x93\x00\x9e\x3c\x0f\x9f\x70\x2f\x73\x74\x48\x01\xe9\x9f\xff\x5c\xc7\xed\xcd\x98\xe8\xbb\xb7\x67\x0e\xff\xcd\xaf\x06\x4e\x46\x48\x0d\xef\x92\x35\xc2\x43\xcc\x40\x2c\x57\xe0\x84\xaa\xed\xaa\x2b\xd1\xab\x11\x60\xf5\xa8\x45\xcf\xa9\x43\x10\x99\xfd\x1d\x1a\xc2\x77\xdd\x40\x77\x6b\xc3\xd2\xe7\x9d\x2f\x9d\xc8\xfb\x46\xa4\x90\xa4\xc9\x86\xd4\xfe\x05\x8e\xaf\x46\x84\x84\xcb\xb9\x43\x48\x3b\x11\xb4\x17\x7a\x1a\x91\xf7\xdc\xc2\x0c\xdc\x14\x46\x91\x58\x52\x6a\x57\x27\xa0\xd4\xce\xd2\xa7\x6c\x9e\x67\x79\x01\xab\x2f\x61\x6d\x4c\x82\x7a\xd8\x49\x24\x5e\x7e\x24\xfa\x2c\xfe\x19\x57\x0c\x57\x85\xd9\xb0\x28\xb2\xc2\xbc\xe9\x76\xc7\x05\xd0\xbf\xd8\xb6\xd5\x02\xb9\xe5\x45\x80\x4e\x34\xd2\x4a\xe3\x52\x84\xf9\x54\xf0\x32\x60\x0e\xcf\x90\x6c\x28\x24\x96\xe2\x0d\x2b\xf9\x34\x6a\x3f\x42\xb9\x91\x93\xc6\x5a\x41\xd7\xe4\xa3\x19\x7a\xbc\xe7\x30\x22\x90\xf3\xdd\x26\x4b\xd5\x93\x93\xcf\x90\x43\xde\x5a\x52\xcd\x99\x2a\x7d\x5d\x99\xf7\x12\x2b\xee\x3a\x91\x90\xff\x47\x64\x95\x52\xdf\x75\x17\x2d\xff\xe0\x66\x27\x7a\x63\xd7\x6a\x5a\x74\x1b\x59\xe2\x1c\x1b\x66\x68\xed\x80\xff\xa7\x32\xd8\x43\xe7\xfe\x1f\x07\x5a\x7e\x96\xe0\x63\x54\x75\x47\x85\x44\x0d\xb7\x1a\xc5\x06\xf2\xcc\x84\x10\xca\x7b\xe6\x7a\xf8\xc8\xf9\xa9\x4f\xbd\x3c\xff\x6a\x3b\xb7\xa3\x2c\x2f\xeb\x2d\x0a\xa0\x08\xe5\xb8\xa6\xa9\x98\x76\x2d\x44\x54\xc5\x62\x01\x4b\xbc\x57\x38\x3e\xa8\x84\x42\x74\x56\xd1\x65\x15\xff\x4d\xac\x57\xdb\x93\x5f\xfd\x84\x7e\x51\x51\x66\xdd\x75\xd1\x62\xe4\xea\xfc\xfb\x52\x2f\x94\x33\xba\x9c\xc1\xb8\x58\xb7\x52\x1f\xf3\x58\xbd\x80\xdb\xdb\x89\xfc\x5d\x58\x6c\xbf\x3c\xbf\x3c\x17\x1a\xe9\xb7\x98\x99\xf9\x23\x2c\x4e\x5e\x86\x7c\x69\xc9\xc3\x25\xdd\x78\x53\x84\x2e\x69\xf8\xbd\xd1\x4d\xc6\x3d\x27\x51\x11\x0c\xae\xf0\xc7\x2a\xcd\x4f\x02\xad\x27\xc9\xae\xf4\x8a\x0f\x95\x7a\x71\x61\x56\x45\x1c\x57\x08\xde\xe0\x8e\xa0\x03\xa8\x3d\x47\xd7\x59\x3e\xda\xd4\xcc\xc8\x6d\xdc\x1d\x7c\xb2\xbf\x7b\x28\x78\x75\x73\x8b\x24\xd5\xfb\x7b\x57\x9f\x51\x17\x70\xce\x23\xd7\xc7\xa3\xd9\x50\xda\xfb\xd7\xee\xba\x43\xd9\x75\xde\x23\xd4\xab\xb7\x8d\x25\x8b\xb1\xd9\x3d\x27\x6d\xdb\x0a\x01\xd9\x39\xb7\xb6\xc9\xf1\x54\x43\x77\x61\xa1\xbd\x39\xc8\x12\x5b\x38\xd7\x7d\x5f\x31\x46\x2f\x4e\x8d\xa0\xc8\xa9\xc4\xda\x72\xe0\xc6\x78\xf5\xb2\x14\xd0\xd7\xf2\xfa\x21\x17\x19\x7a\x38\x1a\x89\x72\x84\x47\x80\xf9\xdc\xe0\x03\xaa\x73\x76\x93\x6c\x8c\x3c\x0c\x85\x9b\xab\x6e\x43\x96\xe3\x86\xf5\x85\x11\xc2\x58\x14\x91\xa8\xc8\xf1\x54\x5c\xbb\x32\x7f\xb8\xbd\x31\x26\x21\xcd\xcb\x44\x47\xb8\x4c\xed\xc9\xd4\x16\x65\xc2\x05\x88\x1f\x31\xed\xe1\x47\xc4\x90\x36\x1b\xb1\x5b\x77\x67\xdd\xba\x56\xeb\x93\x34\xb5\xb4\xdc\xab\x96\xbf\xf2\xd2\xe3\x1b\x71\xb7\xcc\xb4\xc9\xa1\x40\x42\x20\xe3\xe4\x98\x64\x01\xe3\xb4\x88\x7b\x60\xf8\x49\xa3\xdc\x6d\x86\x8f\xae\x34\xd9\x40\x6c\x9a\x52\x28\xaf\xd8\x9d\xff\x94\x4d\x20\xfe\x94\xb0\x0c\x47\x5e\x9a\x69\x1d\x79\x49\x92\xaf\xc7\x51\x70\x1f\x7a\xc0\x52\xfc\x7f\xea\x2b\x05\x83\xf1\x30\x46\xd1\x04\x29\xf9\x2d\x6a\xc9\xdc\x6a\x9a\x1d\x45\x62\xed\x3a\x79\xf1\xde\x26\x21\x82\xdb\xa4\x7b\xb6\x6a\x6a\x42\xa7\x6c\x06\x7e\x9e\x0b\x20\xdd\xdc\x8c\x8a\x19\x92\xb3\x65\xc9\xc2\xef\x91\xac\xf8\xf9\x29\x10\x95\xa3\xf8\xc7\x23\x93\x97\x71\x61\xd2\x56\x5d\x77\xd9\x63\x17\xae\x4d\x99\x26\x7b\x71\x75\x93\x66\x8e\xbb\xef\x4b\x63\xb2\x11\x7e\x92\xff\x4a\xb5\x98\xb4\xc7\x23\xd7\x87\x55\x41\x55\xf7\x01\x9d\xbf\x61\x25\xeb\xc5\x45\xd7\xe4\x3d\xdb\x9b\xab\x22\x2f\x44\x1e\x62\xd2\xa8\x20\x60\x17\x9f\x79\x9f\xba\x15\x25\x5b\x9e\xa5\x26\xcb\xb9\x86\x91\xdf\xde\x8c\x45\x0f\x55\xfd\xd6\xa8\xf2\x30\x6d\x56\xb2\x78\xa4\x9d\xc4\xc3\xd8\xf1\xeb\xbc\x5a\x61\x4d\x93\x01\xaa\x57\xa4\xd3\xb4\xec\xd3\x9d\x46\x53\xdd\xd2\x52\x59\x41\xa5\x4e\xaa\xaf\x50\xa2\x7d\xcd\xbb\xc3\x76\xd9\x6e\x1a\x1c\x06\x74\x70\x01\x83\xd6\x5e\x98\x66\x06\x10\x36\xdf\x82\x9a\x33\xae\x03\x43\x4c\xe5\x32\x03\x99\xf2\x74\x93\xcd\xca\xd0\xe4\x59\xea\x52\x31\xac\xfd\xd8\x30\xaf\xb1\x3c\xed\x35\xc2\xfb\xe7\xd6\xf4\x4d\x0a\xfc\x02\x92\xfc\x5b\x54\x37\xfe\x49\x14\x30\x96\xa7\xf1\x9c\x75\x30\xba\xb8\x97\xa5\x21\x84\xe5\x8b\x18\x34\x6c\x16\x32\xd9\x87\x55\x48\x30\x17\x46\xe5\x23\x1e\x69\xb0\x55\x42\x20\x22\xfe\x0c\x6c\xd0\x85\xe4\xe2\x89\xce\x93\xfe\xaa\xb3\xfc\x17\x5a\x0b\x0b\x5e\x64\xde\xc5\x50\xc8\x63\x4f\x3a\x30\x97\x80\x69\x9c\x07\xb3\x0f\x87\x0f\x6a\x40\x78\x15\x2f\x19\xf4\x44\x29\xd0\xa0\x4d\xbc\xdb\x81\xba\x95\x97\x11\x24\xa1\xff\x3e\xf8\xca\x1a\x6c\x71\x15\xe7\x14\x27\xe4\x10\xaf\xf3\x92\x5a\x2b\x87\xbc\x51\x6e\x75\x83\x28\x2c\xef\x42\x96\xe1\x25\x9a\x83\x0a\xa3\xe4\xc0\x2a\x3a\xd9\xf2\x3a\x53\xef\xb9\xed\x43\x2d\x6b\x28\xa1\x7c\x07\x11\x06\x32\x75\xe5\xe6\x52\x07\xe6\x45\x4f\xd1\x6e\x44\x7f\x77\xa5\x1d\x8a\xd5\xf2\x2d\x77\xc1\xcc\x65\x76\xaf\xf4\xde\x81\x4e\x68\x00\x8b\xa6\x90\x7c\xc0\xbd\x77\x4c\xa2\x07\xbe\x02\x5c\x8c\x8b\xd2\xc4\xa9\x59\x4d\x40\x82\xd5\xfc\xdc\xfd\x92\x12\x7c\xab\xc7\x11\xfa\xde\x61\x73\x15\x4e\xb3\x6c\x85\x4d\xce\x3b\x8a\xf5\xc8\xe3\xc2\xee\xc3\x8b\xc0\x82\x72\x81\xfa\x7d\x7b\x3b\x35\x15\xc0\x9a\xf6\xcb\x54\xfd\x5e\x2d\xf7\xa9\x31\x0f\x21\x45\x25\xd4\xef\x9c\x65\xaf\xac\xcc\xb7\x47\x79\x36\xb2\xb9\x04\x03\x9e\xe0\xee\x3d\x5c\x8e\xee\x8c\x14\x0f\xad\x1c\x6a\xaf\xcc\xef\x6f\x7d\x75\x31\xec\x1b\x2f\xcf\x0b\x2a\xf9\x74\xf5\x20\xa1\xd7\xb4\xc8\x8a\x20\xde\x1b\x9c\xf2\x8b\x47\xc8\x38\xa5\xd9\x14\x51\xc3\x73\xa6\x13\xa6\xd7\x47\x6e\x99\x50\xf1\xbf\x10\x98\x98\xdc\x95\xfe\x57\xe6\x3d\xfe\x3b\xf4\x28\xdf\x6f\x4a\xac\xd2\x71\x59\xd6\xdd\x56\x03\xca\xea\x8c\x6f\xd2\x89\xcf\x9e\x73\x3e\xc1\x8f\xce\xe1\x66\x54\xd6\xbe\x5a\xf8\xab\x5d\x3e\x98\x87\x5e\x8b\xc8\x01\x6c\xe2\xeb\xce\x7f\xf9\x00\xf5\xd5\x9d\xc9\xc5\xa7\xdc\xdb\xc3\xda\x74\x72\x42\x4a\x1f\xdf\xc5\xe0\xf7\xae\xb1\x9e\xb1\xfc\x21\x0b\x6a\x5c\x8b\xa8\x18\xbb\xed\xa6\x9e\xd7\x1e\xaf\x1e\xa4\x8c\x11\xf2\x1d\x7b\x2b\x22\xe2\xcd\x1d\xc9\xb7\x11\x37\xa0\xb1\x8f\x3d\x6b\xb6\x43\x3d\xb5\x9f\xe0\x75\xf9\x01\x57\x3d\x24\x34\x11\xbf\x4f\x7c\x7f\x84\xf7\xa2\x98\x24\x3c\x84\x28\x40\x67\xfe\x53\xad\x06\x59\x66\x78\x51\xba\x94\xd6\x02\xf2\xe9\x56\xec\xa1\xf6\x20\x76\x0a\x53\x8e\x3c\xe9\x3e\x89\xa9\x0c\xf4\xa3\x1c\xfb\x6a\x8e\x77\xd3\x45\x51\xbd\x49\x59\xaa\xc9\x49\x3d\xee\xd9\x4d\xb3\x85\x0b\xc3\x78\xfc\x29\x8d\xcd\x9f\x4e\x82\x40\x61\xec\x31\x6a\x5a\x9e\xa4\x01\x71\x62\x42\x31\xf5\x70\x35\x81\x7e\x10\x9e\xf8\xac\x03\xf5\xc9\xf1\x76\x08\x65\x07\xe3\x7e\x5f\xbf\x52\x91\x29\xee\x2b\x15\x9a\xc2\x0f\xaf\x9b\x43\xb2\x15\xcf\xeb\xf7\xa2\x90\x70\xbc\x87\xd5\x40\xd7\xcf\x9d\xe1\xc2\xa1\x97\x0e\xb7\xd7\x92\x2d\xbf\xbf\xab\x6b\xa2\x7b\xfa\xea\xa7\xb8\x33\x28\xa9\x16\x84\x55\xa1\x24\x79\x19\x17\xbf\xc2\x7d\x3c\xd5\xe6\xd3\x00\xac\x1f\x9b\x14\xdc\x20\x34\xe9\xc0\x73\xc5\x76\x27\x55\x38\xb5\x01\x0a\x05\xc9\x24\xcb\x0a\x9b\x20\xb8\x94\xda\x75\x14\x9a\xae\x97\x09\xb3\x5c\xc4\x00\x10\xcb\xe0\xbd\x87\x25\x58\x6d\x5f\x79\x5c\x0b\xf9\x5f\x7b\x33\xe1\xe5\x24\x4e\xae\x34\x24\xde\x77\xdc\x1e\x21\xc7\xc4\xd7\xeb\x99\xa1\xe9\x8b\x3d\x25\x89\x6a\x2e\x7a\xd3\xb1\xe7\xc8\x11\xd6\xa4\xf1\x10\x32\xfd\xd4\xfe\x82\x59\xa6\x1c\x4f\x3e\x17\xfa\x7e\x36\xef\x0e\x4c\xda\x8b\x8b\xba\x58\xff\x8d\x28\xc0\xdc\x6e\x10\x81\x33\x4e\xbb\xb9\x35\x85\x75\xa2\xed\x6a\xad\x18\xc8\x73\xc7\xd9\x6f\x16\x92\x1b\xc2\xa1\x8c\x82\x43\xed\xf6\x64\xc7\xb6\xe8\xbb\x4e\xe8\x75\xab\x7d\x63\x15\x6a\x48\xc1\x3f\x22\x39\xb9\x6f\x30\xec\xf7\xad\x88\x54\xe3\xdc\xf6\x25\x43\xf4\xcb\x48\x10\xf1\x80\x4e\xb3\x1a\xea\x69\x5f\x59\x77\x78\x99\xa1\x83\x64\xcd\xb0\x12\xd1\x84\x6a\x3f\xc8\x6b\xb5\x21\xf0\x1c\x79\x21\x15\xeb\x59\x92\xc6\xeb\xd9\x06\x0a\xd2\xaa\x69\xea\xbe\x48\x4e\xa6\x26\xf9\xf2\x72\xdb\xc4\xf9\x6a\x96\xa7\x52\x4f\x63\x7b\x2e\x5d\x2b\x1b\xf4\x56\xba\x59\x5a\xc6\xe9\xd8\x0b\x53\x62\x83\x7d\x72\x3b\x94\x34\x0f\x10\x16\xf6\xc2\xe4\xb3\x4d\x26\xce\x85\xeb\xd4\x80\x6a\x70\xcb\x3d\x76\xd0\x88\x2e\x46\x41\xfe\xff\x68\x53\xfa\xdc\xcd\xcd\x50\xca\xd2\x1e\x09\x11\x78\x5a\x17\xc8\x78\xf2\xeb\x3e\xf3\x7b\xdd\xbc\xf9\xe6\xd6\xcc\x54\x1b\x12\x51\x16\x44\xdf\x94\xa3\xfa\x29\xdf\x98\x1d\xa7\xa9\xbf\x45\x3c\x42\x18\xdd\xbb\x17\xff\x6b\xcf\xb9\x5b\x44\x84\x3c\x37\xe5\xd0\x7b\x70\xb9\x3d\xc8\x86\x19\x91\x6c\x76\x75\x08\x21\xb1\x6b\x4a\x61\x4b\x10\x99\xa8\xcf\x7a\x76\xbe\x2f\xbe\x5d\xa5\xa0\xf2\x91\x87\x2b\xb9\xae\xc0\xff\xa3\xc2\xfe\xff\xab\xde\xc1\xe7\xd8\x45\xb6\xac\x36\xff\xbc\x88\xc5\xfb\x10\x83\xf4\x0c\x99\xeb\x9e\x99\xca\x54\x1c\xd2\x21\x8f\x4b\x9b\xc7\x86\xdd\x5f\x6e\x92\xfb\xcb\x4d\x2a\xa5\x3a\x7a\x63\x19\x17\x65\x31\xcb\xaf\x8c\xe4\x37\xd0\xdc\xf4\xec\xee\x83\xa1\x91\xf0\x49\xb6\xfe\x26\x49\x6c\xdf\xa4\x5b\x4e\x5b\x19\x49\xce\x47\x4c\x24\xfb\xc8\xcb\xac\xdb\xe1\x68\x60\x8a\xf8\x4d\xed\x7d\x00\x68\xf8\x10\x83\x4c\x95\xf1\x83\xa0\x68\x3d\x05\xcc\xe2\xde\x3e\x32\xc2\x11\xd8\x23\x1a\x3d\xd7\x26\x41\x48\xe3\x3d\x46\x64\xe2\xe9\xe1\x95\x3c\xc6\xe2\x82\x3d\xf6\x6d\x2c\x41\xbe\x61\xb2\xb4\xa4\x5c\x17\xaa\x53\x39\xcc\xcc\x5c\x40\x46\x20\x36\x56\x79\x3a\x62\xd1\x9c\x67\xf1\x0e\xf0\xc3\xd0\xbf\xf8\x69\x33\x36\x65\x60\x87\x55\x80\xa1\xc9\xa5\x54\x66\xb1\xc4\x69\x99\xb6\xa1\x2d\x3e\x1e\x55\x91\xc3\x2c\x53\x69\xb9\x16\x59\x5d\xa8\x40\x30\x5c\xdc\xaa\x31\x2c\x3f\xc5\x37\x6c\xb1\x37\x00\x3a\xfe\xc9\x84\x92\xfe\xbb\x4c\xd6\x3e\x89\x20\x53\xe4\x8a\xb0\xda\x63\x6b\xbc\x4a\x32\xe1\xef\x4c\x82\x2f\xe2\x55\xc2\x39\x8d\xfb\xc5\x3e\xda\xb9\x69\x48\xa1\x2c\x83\x07\xf5\xec\x36\xed\x6d\xe7\x08\x1f\x20\xe8\x7d\xf9\x07\x0c\x0f\x2c\x67\x7f\xb1\x43\x55\xdc\xdb\x54\xd0\xb7\x1b\x36\x2d\xc7\x55\xcc\xf6\x84\xbb\x70\xad\xe1\x55\x57\x81\xb0\x10\x75\x5b\x24\x39\xa2\xff\x03\xb0\xd5\x6d\x04\xc0\xa8\x9b\x4b\x5c\xa3\x48\x98\x90\x99\x9d\x66\x88\x9c\x20\x33\xe5\x84\x0a\x85\x03\x9b\x8c\x6c\x6f\x7f\xe0\x47\x83\x6a\xaa\xa2\x4b\x14\xb8\xff\x6c\x12\xd8\xdb\x0f\xdd\x63\x54\x35\xa6\x2a\x34\xf0\x1f\x08\x4e\x6a\xb2\x5b\xe1\xd3\xff\x9e\x24\x02\xaf\xe1\x66\x74\x65\xd3\xd8\x71\x60\xd2\x42\xbc\x6b\x71\xd3\x3f\xc5\xa4\x94\x13\x8f\x2a\x48\xb2\xbc\xa7\x15\x6e\xe0\x93\xc0\x17\x54\x37\x2b\x62\x3f\x4f\xbb\xdb\x55\xa3\x79\x48\x58\x67\xac\x71\xdf\x23\x43\x83\xef\xd5\x61\x72\xb1\xb6\x8c\xb0\xec\x9f\xc5\x98\x97\x93\x00\xdd\xe9\x0e\x36\xe3\x14\x4d\x16\x55\x01\xa7\x15\xe5\x52\x14\xd6\x4d\xe4\x4c\x31\xba\x5d\xad\x30\x35\xd8\x86\xeb\x72\x30\x7a\x48\x4c\xbe\x5e\xac\x8e\xf3\xbe\x5c\x06\x41\x93\x0e\x79\x3f\xc3\x86\x04\xae\x30\x43\x4b\x96\x22\x50\x79\xc5\x1c\xbf\xc3\x8a\x44\xd3\x52\xbb\x80\xd5\x76\x93\xcc\x43\x50\x84\x6b\x39\xa9\x11\x2f\xc3\x18\x1a\xc6\xbd\x9e\x91\xa0\xce\x4b\xa0\x87\x07\x31\xb5\x71\x3b\x53\xe0\x24\x16\x83\x47\x44\xba\x00\x10\x6a\xa7\x8f\x57\xad\x86\xed\x74\x64\x8a\x92\x94\x0a\x1f\x93\x52\xe1\x63\xd6\x71\x76\xbd\x90\xd9\x20\x5b\xd2\x02\x02\x10\xf5\x3a\xf0\xbc\x54\x30\xd3\xdd\x9a\xfc\x03\x29\x7d\xa0\xa3\x02\x84\x2b\xd6\x19\x90\xbf\xe5\x78\x4a\x88\x6c\x65\x7e\xc5\xc9\x34\x0f\xe3\xa2\x14\xc8\x37\xde\xd1\x19\x4c\x25\x39\x21\x10\x7f\x3f\xeb\x15\x33\x24\xfd\x7e\x92\xca\x70\xe8\x38\x0b\xe5\x98\x60\x62\xa6\x1c\x4b\xfe\xa6\xbe\xcb\x01\xdf\x7f\x96\x64\xbc\xb3\x61\x5c\x58\x36\x42\x7b\x6f\x42\xd2\xf1\xf7\xc8\x72\xfe\xbb\x13\x86\x51\xb4\xbc\x21\xf1\x5b\x4d\x8c\x3c\xfb\x46\x69\xd3\x5e\x5d\x8b\x13\x15\x30\x39\xf6\xa3\x37\xb7\x6b\xb9\x2d\x06\x7e\xb6\x21\x1e\xd9\xbd\x1d\xf8\x45\xbb\x3b\x9c\xbe\x6d\x66\xd2\x42\xd0\xf8\x0f\x63\x5e\xce\x58\x4a\x3a\xee\x8f\x9d\x2d\xfe\xe2\x11\xe9\xd1\x09\x06\x56\x4e\x58\x03\x20\xcf\x86\xa3\x12\xa1\x9b\x12\x5a\x5a\x9e\x92\x8d\x87\xa0\x5c\x14\xd5\x04\x1e\x9a\x74\xbc\x66\xba\x10\x56\x06\x58\x43\x65\x02\x02\xa8\xfa\x80\x8b\x9e\x1c\x38\xfd\x3f\xfb\x6c\x87\x48\x65\xef\x93\x8f\x48\x2f\xce\x6d\xb7\x14\xa6\xb3\xa8\xec\x91\xc4\x79\x8b\xdc\xa3\x18\x53\x52\xc5\x55\xbd\xdc\x38\xee\x93\x66\xdc\x6f\xbb\xe0\x46\xa3\x81\x06\xae\xd4\xa6\x95\x69\x21\x06\x64\x11\x19\x22\x04\x37\xb2\xdc\x16\x71\x6f\xac\x90\x1d\x2c\xd5\xff\x62\x42\xeb\xf6\xbf\xa8\x7b\xd7\x9b\xd4\x81\xe2\x3c\x6e\x82\x71\x57\x84\x88\x7f\x48\x14\x91\xdc\x6e\xc4\x05\xc0\x1e\x00\x3e\xdf\xc7\xbe\xa0\x1b\xa7\x1b\x37\xaa\x61\x1a\xb0\x06\x3f\x98\x04\x72\x41\x7f\x9c\xac\xd9\x1e\x68\x23\x4a\xe4\x72\xef\x81\x53\x3b\xc4\x32\xff\x7a\x42\xea\xe5\xf7\x08\x98\x9f\x67\x45\xe1\x44\x8b\x7c\xcf\x22\x50\x15\x2e\x32\x55\xe1\x22\x77\x69\x04\x5a\xe6\x5b\x93\x4b\x4b\x7e\x6f\x6e\x50\x18\xe9\xdb\xd4\x91\xbe\x5b\x01\x52\x76\x82\xd2\xf2\x13\x53\xa0\xcd\xd0\x84\xe9\xad\x8e\xf3\xad\x16\x69\xd4\x9c\x25\xe5\xa9\xb3\x93\xcf\xee\x64\x9e\x1e\x6e\xaf\xcc\x1f\x06\xf9\x5d\x90\xfc\x11\xb5\x43\xc4\x7f\x73\xba\x15\x98\x6d\xa6\x36\x2f\x9e\x70\xff\x4a\xe2\xc4\xda\xb0\x3d\x11\x85\xb8\xe7\xd6\x0e\x79\xce\x1d\x52\xa1\x87\xbd\x20\x13\xcd\xd1\x63\xb5\x39\x7a\x8c\x4b\x33\x67\xc9\xfb\xe5\x4d\x3b\x14\x29\x1c\xd4\xe5\xbf\x47\x9e\x5e\xdf\x6b\xd2\xcd\x18\x18\x25\xf3\x7a\x71\xab\xe5\x65\x3d\x66\x4b\xd9\xd8\x6e\x22\xfd\xc0\x83\x13\xd4\x8c\x9c\x34\x80\x91\x46\xe3\xd5\x24\xee\xaa\xeb\x80\x56\x34\xab\x87\xa0\xa5\xce\x86\xdc\x38\xb7\xc5\x38\xf1\xd0\x06\xd5\xde\x70\xf7\x2a\x27\x9d\x10\x4c\xae\x25\x18\xfb\x08\x39\xa5\x76\xe9\xeb\xeb\x2b\xf3\x32\x63\x76\x77\x42\x48\x74\x85\x2c\x75\xcb\x78\xb8\x6a\xf3\xc4\xa4\x3d\x64\x80\x18\x89\xb7\xa3\xf0\x49\x99\x78\x0a\xb7\x0f\x01\x54\xb2\x61\x7b\x7b\x42\xbb\xeb\x87\x13\x1a\x2d\x67\x27\x35\xe2\x6d\x6b\x61\xd1\xf7\x54\x03\x56\x67\x0e\x02\xab\x21\x10\xd7\x09\xdd\x1f\x27\x26\x9f\xf5\xc5\x80\xe5\x67\x3b\xc1\x72\x46\x34\x1f\xbc\xa9\x9a\x7f\xc9\xbb\xb7\x3f\x29\x05\x53\x5d\xee\x16\x69\x5e\x41\xf0\x5c\x8e\x3b\x9a\xd7\x0e\xb2\x6e\x8d\x03\x53\x53\xf4\x3c\xc7\xde\x86\x79\x5c\x25\x28\x84\x3d\xb9\xc9\xf4\xd8\x9b\xa4\xf0\xd9\xcb\x63\x27\x90\x3e\x13\xf4\xd2\x2e\x93\x22\x22\x9a\x20\xca\xf8\xf7\xdb\xee\x30\x5b\xf7\x78\x12\xfc\xfc\x71\xec\x39\x72\x32\x35\x8a\xbf\xf2\x4a\x7b\xc3\x31\xb4\xaa\x37\x57\x2b\x11\xeb\x6f\xea\x4d\xda\x91\x91\x80\x16\xef\xf4\x27\x84\x09\x94\x12\x11\x02\x95\xab\x84\x03\xfc\xeb\x7f\xfd\xff\xcf\xd6\x87\x47\xdd\x2b\x95\xe3\x68\xa7\x76\xac\x3e\xf8\x61\xdc\xcd\xb3\x22\x5b\x2b\x67\x49\x8a\x64\x37\x4b\xaf\xbf\xed\x86\xa8\x1f\x26\xcb\x61\xc8\x68\x0b\x66\xcd\xa8\x98\x06\xf6\x16\xf0\x85\xe5\xb8\x49\xd6\xaa\x6b\xbc\xac\x15\x56\x20\xc8\x70\xcb\x71\x53\x37\x33\xcd\xf2\x4d\xdb\x8f\x45\x90\x5a\x72\xd6\x88\xca\xeb\xd3\xe2\xbf\x2f\xcf\x1f\x6a\x8f\xd3\x71\x31\x46\x1d\xdc\x47\x93\xa8\x0f\x28\x39\x91\x10\x48\x8e\x8e\xda\x62\xdd\xf8\x50\x2e\x3c\x37\xd5\x74\xd7\x07\x38\x4a\xac\xa9\xf6\xb6\x97\xb5\x95\xb2\x0f\x0f\x0f\xd0\xe2\xbb\x94\x48\x48\x06\x80\x50\xf1\x68\x13\xad\xa4\x34\x6f\xc8\x6b\x57\x94\x6e\xf5\x69\xf4\x27\x4f\xe2\xd3\x28\xe7\xdc\xf1\x3c\x4d\x33\x2e\xc7\xc3\x74\x26\x94\xf6\x91\x25\xaa\xe5\x64\x35\xa0\x15\x9a\xc7\xe2\x76\xf9\xb8\xdf\x17\xeb\x66\xa4\x8d\x42\x03\x55\x92\x3b\x45\xe2\x57\xc9\x6e\x49\x4c\x1a\x51\xf6\x38\x4b\xc5\x9f\x22\xab\xd6\xd0\x52\x9a\x76\xa1\xcc\xf6\x2e\xd9\xfc\xbd\x3b\xf5\x8a\xbc\x67\x75\xdc\x17\xf0\x85\x98\xa1\xe1\xcd\xaa\x33\x5a\x83\x1d\x2c\x58\xbe\xad\x1a\xcb\x97\xc5\x4f\xa2\x67\xc8\x75\x3e\xed\xe1\x92\x90\xed\xde\xa5\x8a\xca\xdd\xa6\x9d\x26\x35\x6f\xc6\x5a\xd8\x50\xfc\x88\xbb\x1e\x39\x99\x90\xd5\x56\x6f\x6b\x1f\x35\xd4\x8f\xbb\x6c\x1d\xb9\xe0\x45\x8a\xea\x7e\xc9\xad\xec\x3a\x21\xdc\x22\x44\x86\x23\x5a\xa0\x7a\x6a\x9b\x18\xf4\x27\xc8\x16\x7e\x5a\x8d\x61\x79\xb9\x5d\x8e\xf3\x61\x16\x27\x33\x24\xe8\x84\xe1\x82\x2d\xe1\x3e\xb9\xa6\x9e\x27\x69\xd4\x51\x5c\x76\x07\xd5\x12\xe4\x0d\xe6\xce\xb0\xeb\xd5\x19\x12\x0d\xe8\x67\x59\x61\x57\x6d\x9e\x4b\x75\xd4\x3f\xe7\x95\xf9\x95\x90\xa3\x7a\x8c\xca\xb5\x26\xe4\x60\x15\x6d\xf7\xc6\x9e\x16\xaa\x7d\x0a\xf7\x08\xb4\x51\x11\xc4\x28\x47\x26\x4e\xe7\xdc\xd7\xab\x11\x53\x78\x6e\xf7\xd0\xc7\x96\x13\xe0\x36\xd4\x43\x93\xd6\x84\xa6\x17\xea\x3a\x25\x6e\xd1\xf5\xbe\x82\xa4\xe8\xf9\x19\x12\x29\x59\x2d\xe2\x5e\x6c\xf2\xad\x3d\x78\xfb\xda\xb7\x71\x97\x8b\x16\xed\x0f\x23\x82\xe8\x80\x5a\xe7\xd7\xfe\x30\x46\x8e\xb9\xf8\x41\x0d\xaf\x89\x20\xbc\xba\x1a\x0b\x2c\x5c\xaa\xdb\x5c\x1b\xba\xd5\xc0\xcc\x49\x62\x7d\x76\x08\xa8\xa4\x70\x23\x27\xd4\x46\xe8\x8d\xd9\x38\x1d\x61\xb4\xaf\x08\x55\x57\x86\xa6\xce\x15\xbf\x72\xac\xe5\xd6\x4a\x83\x10\x5b\xdb\x15\x02\xaf\x4c\x2b\xd8\x1d\x79\xa9\x6d\x8d\x48\x8c\x8b\x6c\xf4\x84\x98\x0e\x8f\xa3\xd0\xf2\xb9\xe5\x23\x90\x7e\x92\x6d\x22\x48\x3a\xc4\x0a\xaa\x8b\xfe\x45\x84\x80\xd0\x91\x07\x0e\x04\xf9\xc8\x9f\x63\x2f\x15\xf6\x8a\xab\x29\xa1\x3e\xfe\xd0\x3d\x74\x60\xf2\x44\x3a\x46\xb5\xc6\x1d\xac\x08\x9d\x1b\xd5\xf6\xc6\xcb\xb9\x13\x91\x44\xcb\x0d\xe0\x44\xc4\x8c\xd5\xa9\xb1\x78\x4e\x56\xb0\xd8\xbd\xcb\xc9\xcc\x9c\x43\x74\xe3\x5a\xbe\x81\xf9\xa2\x6a\xd4\x01\xaa\xf8\x34\x10\xdd\x18\x27\xe8\xc6\xe0\x41\x9d\xda\xa9\x1a\x73\x70\xb9\xbd\xb0\xf0\x99\x60\xea\xf4\x2d\x77\x11\xc8\x22\xef\x4c\xa8\x98\x27\xaa\x49\xc8\xc3\x3f\x98\x04\x1c\xd9\x7d\x5c\x2a\x16\xe2\xbb\x35\x3a\x4f\xeb\x15\xf5\x37\x3d\xe6\x54\x62\x3d\xd1\xa6\x0a\xe5\xd5\x00\xc9\x3d\x01\xa5\x9f\x38\x84\xba\xb7\xbe\xf6\x95\xb3\x5d\x28\x82\x88\x85\x45\x44\x3e\xc0\xc7\x90\x39\x09\xa6\x84\x43\x98\x33\x48\x12\x30\xb5\x85\x26\xa2\x04\xa4\x9d\x33\x73\x65\xbe\xed\x44\x53\x08\x89\x0c\xf6\x86\x72\x67\x9e\x0b\x65\x97\xee\xd7\xc6\x71\x11\x57\xbb\xcb\x13\xee\x07\x90\xa0\xdf\x24\xe0\xeb\x03\xe6\xdd\xc0\xcb\x44\x90\x1e\x51\xa8\x20\x3e\xc2\xe8\xf3\x09\x64\xf5\x48\xe4\xab\x6a\x1a\x21\x18\x21\x2a\xb5\x1e\x62\xca\xc1\x38\xef\x25\x32\x81\xc5\x74\x26\x22\xf2\xd6\x25\x6a\xbb\x8d\xf2\x4c\xd4\xbc\x0b\x8a\x59\x66\x9d\x5b\x8c\x1c\x77\xa6\xd8\x74\x0b\xed\x32\xdf\x72\x7e\x58\x78\x37\xb7\x91\x99\x79\x7d\xaa\xe5\x00\x80\x38\xc0\x00\xca\x71\x12\xa7\xc5\x1c\xd5\xf3\xa5\x14\x8e\x15\xe8\x02\x79\x62\xc9\xf6\x23\x27\x6e\xd2\xaa\x6a\x1b\x93\x8d\x72\xd9\xc5\xfd\x6b\xf1\x00\xf1\x33\x53\x8b\xd4\xf3\xcf\xb7\xb3\x14\xe8\x41\x8c\xfd\x07\x2e\xf2\x94\x63\x5f\xa6\x1d\x98\x8d\xac\xdb\xa2\x19\x06\x6c\xbe\x1c\x53\x1c\x6b\x86\xa8\x72\x60\x1f\x45\x87\x40\x8e\xe9\x55\x14\x5f\x1b\x9b\xdc\xee\x0d\xf8\x5c\x38\x9b\x61\x46\x7c\x48\xfa\xb4\x3f\xc0\x60\x45\xd7\xff\x07\x51\x10\xab\x15\xc1\x72\x4c\xe4\x3f\x9e\x10\x54\xf5\x46\x93\x37\xdd\xaa\x29\xe3\xd5\x4c\xe2\x64\xec\xd8\xe2\xfc\x8e\xf5\xea\x3c\xed\x85\xa7\x5d\xf3\x0c\xb5\x8e\xbb\xe4\xa2\xae\x4d\xe9\xfd\xee\x55\x79\xfd\xb5\x15\x55\xb1\xfc\x21\x2e\x09\xbd\xbc\x8f\xa9\x5d\xb9\xb7\x43\xb5\xf3\x2b\x84\xc6\x7b\xc6\x95\x30\x1f\x01\x14\x8f\x6d\xe4\x12\x49\xc5\xdc\x70\x6f\x58\xf5\x94\x0e\xb0\x10\x66\x77\x60\x0a\xfb\x74\xf5\xa7\xf8\xe7\xdb\x11\x15\x57\x26\x13\x02\x94\x7d\x84\xa9\x25\x10\x36\xa7\x19\xe5\x61\x38\xd5\x3c\x91\xbf\x9a\xd4\xbb\xf8\x2b\xf3\xd2\x45\xff\xa9\x7b\xe6\x18\x0e\x32\x5d\xe4\x47\xa8\xa1\xf1\x88\xb8\x7f\xbb\xb7\xab\xf1\x23\x36\x2a\x64\x1f\xd4\xcb\x36\xd3\x4f\xb9\x39\xab\xd1\x87\x43\xee\x88\x8a\x34\xa6\x0a\x12\x98\x4f\xb9\x06\x00\x7e\x52\xc8\xb9\x3e\x80\xad\x6e\x12\xef\xfc\x16\x56\x57\x0c\x9f\xb9\x4e\x75\xc5\x98\xf2\x30\x91\x73\x1d\xcb\xbd\x07\x1c\x14\x50\x6d\x43\xa8\xca\x7e\x82\xb5\x7a\x5a\x20\xf0\xa8\x2c\x57\xa8\x1e\xcc\x76\x48\x46\xe1\xce\x24\xa8\x9b\xf6\xec\x30\xeb\xe6\xa6\xcb\xf2\x47\x27\x78\x47\x3d\x41\xb0\x8a\xee\xd8\x89\x1f\xec\x0f\xf0\x15\xf4\x47\x45\x03\x25\xaa\x81\x61\xc2\xf2\xf1\x1e\xde\x0f\xf2\xfd\xeb\x78\xa5\x72\x42\xac\xa0\x63\x13\x8a\xcd\xa4\x11\xa8\xea\x0b\x34\x29\xde\xa1\x22\x75\x95\xf4\xec\x75\xdf\xad\xfb\xb3\xbb\x02\xa4\xff\x0f\x41\x79\x42\xda\xb1\x8b\x3c\xf1\x7e\x24\xc0\x44\x3c\x99\xab\x13\x22\xf6\x60\x2d\x50\x92\x7b\x63\x93\x78\x60\xf2\xbe\x6a\x53\x22\xd5\x79\x07\xdf\x20\x27\xd1\x81\xfa\x26\xfb\x85\xf6\x17\x5b\x5c\xac\xab\xc6\x94\x56\xf4\x9e\x88\x9d\x15\xc1\x5f\x6d\xbf\xf8\x79\xb7\xad\x29\xb7\xa9\xe5\x25\x79\xf7\x6e\x93\x83\xeb\x71\xf7\x42\xb5\xc8\x56\x7d\x11\x66\x9a\xfa\x7d\x61\xd2\x7f\x1e\x73\x14\x37\x31\xeb\x78\xe3\xf2\xda\x1d\xc2\x4c\x55\xe0\xb0\xb9\x1e\xd8\x0e\x2d\xff\xff\xdf\x0b\x1d\x17\xb9\x78\x69\xd2\x83\x21\xc0\x74\x83\x1a\x33\xef\xda\xc4\x5b\x18\xfe\x9f\xd2\x79\xf4\xe6\xac\xaf\xf8\x36\xdf\x39\xb7\xe9\x7b\x25\xf6\xaf\x6a\x55\x47\xa0\xce\xbe\xe4\xfc\x9b\xbf\xee\x89\x9d\xe4\x99\x71\x8e\x04\xc9\xf7\x6d\x93\x54\x97\x2d\x40\xd4\x5c\x39\x24\x13\x13\x62\x65\x78\x58\x4f\x52\x7e\x83\x55\x0b\x61\xf0\x5d\xb7\x12\x61\x7f\xb9\x8b\x97\xa5\xa3\xac\x7a\xa0\x80\x42\xff\xd9\x54\xde\xb0\xbc\x7c\xb8\x5a\x29\x93\xb1\xef\x29\x68\x57\x8e\x60\x08\xdf\xa3\x36\xf7\x30\x4b\xcb\x81\xa3\xf9\x7b\x59\x8e\xa0\x02\x2a\xf2\xd5\x5e\xe3\xe3\xa0\x82\x11\xc4\x38\x0f\x4f\xe4\x5d\xae\x0d\xed\x06\xa4\x4f\x3a\x51\x64\xb8\xff\xa8\xd6\x80\x71\x43\x47\x08\x7c\xae\x85\x81\x7d\xe8\x5d\x2c\xa4\xbe\x8f\xb5\x78\xc4\xbb\x22\x56\x8f\x4f\x6b\x64\x53\xe1\xd0\xa1\xf6\x5a\x9e\xa9\xee\x8a\x22\x80\xaa\xdf\x56\x68\xd0\xb3\x1e\x0d\xd4\x4d\x1c\x1d\x8b\x21\x36\xbb\x28\xe0\xbc\xce\x8a\x6b\xd3\x82\x14\x0b\x0b\x0e\x87\x5d\xa0\x48\x8d\x09\x78\x93\x14\x24\x6f\x36\x06\xff\x1b\x16\xb2\xd9\x98\xf1\xa0\xde\xc8\x31\x29\x97\xac\xe5\xc6\x39\xff\x56\x77\xed\x81\x24\x07\x3d\xa8\x84\x20\xa8\xdd\x2c\xc9\x72\x72\x7a\x05\x08\x57\xbf\x91\x54\x78\xbb\xdd\x2c\x87\x06\xb4\x78\x56\x45\x01\x90\x7d\x19\x54\x02\x6f\x66\x15\xa2\xe5\x77\xdc\x8a\x02\x02\xe3\xa9\xa9\x15\xe5\xd0\x4b\x87\xdb\xc5\x38\x1f\xe5\x71\x61\x49\x5f\x1b\xd6\xd2\x8a\x64\x0e\x89\x69\xfa\xc2\xc6\x0b\x73\x54\xfa\xf8\x10\x03\x0c\x63\x0a\xca\x2c\x40\x81\xef\x23\x6e\xe3\x25\x7e\x0b\x7f\x3a\xf5\x16\x5e\x9e\x3f\xd4\x5e\xb3\x9b\xaa\x85\x2d\x56\x4d\xe4\x47\x77\x8a\x8a\xf6\x85\x59\x1f\xe7\x90\xc1\x47\x54\x01\x3d\x38\x39\x26\xa0\x5e\x9e\x6d\x99\x64\x86\xe4\xa2\xce\x4b\x22\x04\x0c\xc1\xc7\x13\xe2\x62\xdf\x25\x2d\x96\x5e\x5c\x74\xe3\x51\x12\xa7\x46\x10\x93\x1e\x40\xe3\x5f\xf3\xff\x8e\xfb\x51\xed\x43\x52\x7b\xb4\xf9\x86\x49\xcb\x62\x26\x40\xed\x64\x43\xd0\x8a\x65\xcb\x0b\xf2\xdf\x9b\x92\x1b\x58\x58\xa8\xfe\xbb\xae\x53\x5d\x28\x17\x13\x72\x49\x7e\xc8\x4a\x86\xc3\x55\xfb\xe6\x9b\x89\xe7\x69\x49\x71\x8c\x8d\x86\xa6\x25\xed\x96\x97\xdb\x49\xdc\xb5\xa9\xbc\x6b\xcc\xc6\xaf\xbb\x01\x22\xc7\x24\x3b\x6e\x8a\x62\x9c\x9b\xb4\x8b\x9a\x9e\x27\x9a\x79\xa9\x39\xe0\x9f\x94\x74\xe6\x06\x85\xfc\x83\xd7\x1f\x5c\x35\xdd\xf5\xa7\x49\xe2\x76\x0f\x2a\x3b\xf8\xcc\xbf\x47\x08\x24\xd6\x23\xf8\x02\x34\xf1\xe6\x1c\xd9\xd7\xbd\xfb\x1f\xff\x72\x15\x8e\x3c\xec\x7c\xb1\x43\xac\x82\xd6\x36\x7b\x95\x87\x2c\x18\xf6\x30\xa8\x15\xdd\xc6\x66\x2e\x45\x20\xb7\xcc\x62\xfb\x06\xb6\xcb\xad\x62\x0f\xfe\x82\x77\x8b\x2f\x92\xac\x2e\x84\x8c\x6c\x49\xa9\x8a\x54\x45\x73\x99\x9a\xbb\x0d\x91\xd8\x21\xa4\x74\xa3\x4e\xab\x49\xcb\xb8\x3b\x4e\xd0\x56\xc1\x52\x7c\x85\x90\xf1\x57\xc8\xf0\x7c\xb8\x1a\xa7\xaa\xd3\x83\x02\xe7\x7e\x74\xe6\x81\x21\x07\xa0\x1d\xd9\x26\x96\x39\xec\x22\x8f\x99\x68\x78\xc6\x83\x25\xcd\x68\x94\xdb\x6e\x0c\x73\x67\xef\x81\x0d\x82\xa1\x1c\x53\xb6\x91\xe5\x6b\x33\xb4\x0f\x80\x8c\xe3\x0d\xd0\xbd\xc0\xd4\xef\xd0\x1a\xf7\xcb\x8b\x07\x5f\x3c\x78\xe4\xf0\xff\x87\x5a\x9f\xc2\x32\x07\xaa\xb1\xb5\x1d\xe2\xf3\xe3\x6e\x3b\xf6\x40\xa0\x6a\x94\x7a\x21\xe0\xaf\x06\xe8\x90\x4b\x6a\x65\x6d\xc1\xf6\x01\x00\xcf\x2e\xae\xc4\xab\xa8\xab\xee\x3f\xd5\x68\xc1\x00\xbb\x31\xd9\xfd\x05\xa9\x54\x3f\x05\x79\x38\x74\xe6\xee\x63\x79\xd4\x3e\xbe\x9b\x31\x98\x93\x3f\xc3\xae\x88\x3d\xfb\x8a\x8b\xd0\x3d\x16\xd6\x8b\x21\x1c\x43\x60\x89\x8b\xbc\x87\x3a\x01\x50\x41\x88\xef\x11\x65\xee\xea\xb8\x98\x1c\x61\xc6\x0d\x59\x6e\x10\x5a\xee\x71\xdb\xa2\xea\xce\xb8\xd5\xb9\x26\x33\x81\x45\x66\x5f\x15\xef\x3f\xda\x8e\xc2\x3e\x71\x8a\xfa\x38\xb6\xe8\x66\x79\x89\x9c\x9b\xc8\x07\xc1\xf6\xb4\x09\xa0\x06\x21\xdf\x78\xc3\xce\x92\xa3\xf3\x35\x22\x83\xb7\xdc\x98\x12\x63\xf0\x09\x99\xbc\x9c\x9c\x82\x82\x2f\x2c\xb4\x7b\x76\xcd\xb8\xa1\x4c\x3b\x14\xef\x5c\x07\xc8\x1a\x27\xb7\x89\x2d\x90\x3d\xa3\xa2\x73\x8e\x05\xf3\xce\x79\x38\x86\x40\xa5\xe7\x88\x87\x79\x7b\x12\x90\xc0\x62\xfc\x45\x5a\xe3\xcb\x81\x87\xe3\x93\x9b\x6b\x34\x45\xd7\x32\x6d\x74\xa8\xb0\x6d\xcb\x1b\xb0\x9c\xf7\x80\xff\x32\x37\x69\xb1\x96\xe5\x8a\x93\x15\x0b\x39\x64\x4f\xca\x1a\xe4\xee\xff\xd4\xde\x79\xe4\xa5\x76\xdf\xe4\x3d\xbb\x53\x20\xf2\x31\x09\x44\x3e\x9e\xea\x97\x54\x6f\x25\xcb\xbb\x03\x5b\x94\xb9\x11\xf0\x26\xe0\x47\xb7\x90\x2f\x20\xc2\xfa\x23\x37\x4d\xb1\x64\x1d\x75\x59\x34\x30\x6e\x67\xa7\xe2\xa5\xe5\x65\x27\xe5\x6e\x19\x32\x45\x32\xfc\xdc\xef\x28\x4d\xde\xb7\xca\xfc\x53\x1d\x2c\x77\xe5\xaa\x90\xc5\xf6\x98\x01\xb8\x72\xb9\x09\x0b\x95\xdb\xb5\x71\xea\x5d\xda\x54\x73\x9b\x72\x99\x3f\xa4\xaa\xa6\x19\x66\xdd\x0c\x3d\xfa\x9a\xa3\x1f\xa6\x27\x74\x2e\x74\x76\x36\x34\xca\x7a\x71\xb1\x2e\xcb\xb3\xba\xfa\x54\x9f\x90\x63\x4f\xb5\xea\x66\xe3\xb4\xb4\xf9\x30\xdb\x10\xb0\x36\x3a\x27\xb0\xa0\x95\xe3\xc6\x69\x92\x9a\x37\xe3\x2c\x55\x7e\x34\x9e\xfa\x05\xae\x84\x5c\x98\xda\xae\x0f\x2e\xb7\x47\x59\x96\xdb\x1c\xd6\xcb\xc8\x46\xef\xd6\xa4\xf8\xaa\xb7\x86\x95\x7b\xda\xca\xfb\xc8\x4b\xc1\x42\xcf\x95\x9f\x5f\x56\x17\xc4\xd3\x93\xe0\x88\x78\x9a\xf0\x71\xd9\x68\x94\xe5\xe5\x38\x05\x78\x8b\xcc\x47\xff\xf9\x84\xf6\x88\xb7\x89\xf5\x05\x8d\x01\x3c\xa4\xe3\x4d\x1e\xf5\xfd\x2c\xe9\x59\xb4\x12\xf1\x69\x31\x15\x94\x93\xa0\x39\xe8\x1a\x02\x5b\xb3\x81\x76\x39\x83\xf5\xb8\xd6\x41\x57\x5b\xda\x10\x22\x9c\x6e\xea\x42\x14\x65\x96\x0f\x67\x09\x6f\x85\xb2\x1c\xb6\xf6\xc7\x35\x19\x2b\x77\x93\x98\x1c\xdf\xf6\x5d\x56\x33\xac\x2e\xf9\x37\x7f\x5d\xb9\x92\x51\x8d\x38\x19\x52\xb5\x91\x35\xe9\xb8\x2c\x88\x49\x83\x36\xa0\xfa\x9c\x3f\x15\xba\x11\x6f\x96\x7b\xa8\xeb\xf7\x9e\x1b\x5b\x0a\x0c\xab\x3e\x82\x9a\xc9\xc9\x88\x38\x4d\x28\x55\xcb\x3f\x4c\x88\x19\xf0\x2d\xdf\x16\x5b\xcd\xe3\x62\xdd\xc5\x82\x62\x35\x39\x09\xdb\xf7\xd3\x9d\x50\xe6\xd9\xb5\xed\xb9\xae\x29\xd0\x1d\xee\xe1\xa8\x14\x47\xa8\x75\x1c\xa3\xe8\xac\xc8\x86\x76\x73\x60\x73\x3b\x43\x53\x96\x1f\xd8\xc9\x09\xef\x59\xf4\xc9\x7e\x62\x86\x59\x9e\x8d\x8b\x96\xdb\x85\xc5\xa4\x0a\x5d\x06\x75\xac\xd2\xfe\x7b\x77\x23\xad\x75\x8c\xdd\xa3\xd6\x96\xb1\xde\xa7\xeb\x62\xcf\xd0\xb3\x39\xcf\xd5\xbb\x07\xb5\x96\x76\x83\x26\xa0\xcc\xa2\xd0\xd8\x97\x0c\x1d\x6f\x14\x4d\x2d\x35\x51\xdb\x99\x8f\xbd\xf6\x5a\xb5\x04\x63\xb1\x57\x49\x75\xd2\x6d\xfa\x78\x8a\x99\x74\x70\xb9\x9d\x9a\x61\x2b\x20\xf1\x77\x28\xf1\x35\xc4\x6f\x5f\x1b\xc7\xdd\x75\x5b\x94\x2d\x17\x9b\x78\xa2\xa4\xb7\x1e\x39\xe7\x5f\xf8\xd0\xbc\x9e\xe5\x73\x35\x72\x20\x09\x0e\xb2\x2f\x94\x16\x4c\x94\xb7\x5c\x5d\x3f\x1e\xd1\xa7\x3b\x4d\x1b\x46\x37\x83\xd6\x5f\x2e\x80\x39\x0c\x28\xb1\xb1\x44\x81\xe9\x7c\xc4\xae\xcf\xff\x91\xd4\x86\xed\x70\x94\x64\x5b\x43\x27\x19\xb1\x32\x2f\x57\x7d\x85\xa4\x1a\xaf\x4c\xc2\x42\xdd\x1f\xaf\xda\x7c\x96\xf5\x86\x5d\x40\xa7\x42\xc4\x6e\x64\x22\x42\xfc\x3a\x5a\x1c\x72\x32\xd5\xd3\x5e\x58\x6c\x9b\x71\xb5\xc7\x25\x5e\xff\x00\x55\x9a\x77\xc9\xa4\xe0\xdd\xa9\x8d\x65\x69\xa9\x6d\xd2\x34\x1b\xa7\x5d\x4d\x84\x7c\xf0\x10\x8c\x5e\xcf\x4d\xad\xc6\x2b\xf3\x2b\xed\x0d\x93\x48\xf7\xdc\x9b\x72\xae\xcc\xeb\x31\xe1\x88\x72\xdb\xb5\xa3\x32\xde\x88\xcb\x2d\xd6\x71\x41\xc4\xaf\x04\xcd\xcf\x4c\x49\x94\xaf\xcc\x7f\xae\x9a\xf2\xa8\xf4\xb4\x5c\xd5\x07\xb7\xfe\x7d\xce\x5d\x6e\xb9\x54\x43\xd1\x09\xad\x2f\xff\x96\x56\xc2\x23\x06\x66\x43\x3d\x5f\x82\x1d\xf7\xbb\x88\x79\x4f\xb9\xa2\x9a\xb4\xa0\x5c\x5c\x4b\x80\xa5\x65\xaf\x7a\xea\xde\x82\xe6\xbf\x64\xa8\xff\x4f\x10\x9a\xa2\x78\xf3\x0f\x5c\xc4\x8d\x14\xfa\x43\x44\xdc\x3a\x36\x42\x5d\xfc\x78\x44\xee\x44\x17\x19\xb6\xf3\x33\xbc\x78\x6f\x96\x1f\xba\xad\x8f\xf1\x2a\x10\xd7\x3f\x68\x9a\xd2\x6b\x76\x68\x84\xed\x2c\x1a\x3c\xc8\xf5\x7c\x09\xd2\x87\x8c\x3f\x64\x6f\x8c\x32\x37\x98\xca\xa8\x25\x9d\x77\x6b\xaf\x1c\x47\xcc\x68\x73\x42\x19\x2e\xb4\x04\x87\x76\xf1\xd1\x15\xaa\xe9\x97\xb9\x71\x40\xf6\xd9\xe9\xd5\x50\x4e\x22\x4e\xf4\x9c\x1f\x83\x26\x7d\xe1\x6a\xd6\xb2\x64\xbd\x70\xab\x12\x56\xec\xb3\xee\xef\x90\x63\x5d\x8d\x82\x3c\xc3\x0f\xa8\x00\xb0\x66\x7b\x36\x8f\xbb\x59\x5d\xf8\x97\x78\xaa\xe4\xc9\x61\x8a\x01\x0a\x0c\x5e\x25\xaa\xfa\x3b\x1d\x7e\x2d\x2f\xc0\x71\x8f\xd4\x9a\x72\x3b\xb2\x79\x99\xe5\x82\x29\x97\xb6\x02\x5e\x87\xf6\x18\x34\x9b\xec\xc5\x45\xe2\x6a\x20\x3b\x61\xd3\x88\x23\x4f\xb1\x09\xe0\xc5\x29\x4a\xd0\xe2\x11\x07\xb5\x2d\x06\xa6\x97\x6d\x2a\xd1\x10\x50\xb8\x5b\x88\xf1\xe4\x84\xe0\xee\x9b\x71\x9a\xda\x9c\x71\x60\xdf\x20\x87\xa6\x6f\x44\xbf\xfc\x49\xaa\x44\x36\x2d\x6d\xda\xf5\x51\x34\x26\xd2\x95\x88\x66\xd5\x95\xc9\x2f\x10\x3f\xae\xb4\x79\x37\x4b\x12\xdb\x8f\x4d\x69\xb1\x2c\x4b\x98\x05\x29\x33\x8d\xb9\x1a\x54\xef\xd2\xac\x8c\xfd\xca\x22\xb5\x65\x8a\xd9\xce\x07\x81\x86\x74\xe4\x82\x87\xe5\x65\x1f\x96\x51\x1e\x72\xda\x3f\xe6\xc4\x76\xcb\x71\xae\xc5\x2b\x3c\xdb\x9b\x93\xf0\x9c\x6f\xd2\xce\x9b\xdb\x6c\xe4\xb3\x05\x6d\xd7\xc1\x58\x4a\x8e\x69\x95\x8a\xd3\x9e\x1d\xd9\xb4\x67\xd3\x72\x6f\x20\xd4\x7c\x40\x90\x8d\x53\x75\x08\x46\x3d\x68\x58\x51\xd8\xc5\x2d\xc6\x10\x89\xab\x0c\xa2\xb3\x3f\x25\xdc\xf8\x86\xc9\x63\x5b\x0a\xc0\x05\xbd\xa3\x7f\x48\x42\x4f\x68\x30\x23\x7b\xbc\x31\x85\xa1\x73\xca\x58\x76\xb8\x6a\xf2\xdc\x14\x85\x7f\x8f\xea\x02\xdd\x22\x77\xe8\xa7\x08\x7b\xf5\xc2\x6c\xe0\x3c\xed\x43\xdf\xc8\x4f\x49\x8f\x4c\xfa\xd0\xf5\x2b\x30\x0a\xee\x85\x52\x49\x5c\xc6\xdd\xec\xff\x22\xed\x4d\x63\x24\x39\xd3\x33\xb1\xee\xac\xaa\x66\x93\x1c\x72\x78\x0c\x47\xd2\xe8\x40\xae\x77\x0c\xca\xc0\x88\x86\x65\xc0\x0b\xe8\x4f\xa4\xba\x5a\x43\x75\x41\x53\x2c\x54\xb7\x48\x99\xbb\x3f\xf8\x65\xe4\x97\x99\xc1\x8a\x8c\x48\x45\x44\x56\x75\xd1\xfe\x65\x18\xf0\xc2\x3f\x84\x85\xbd\x0b\x7b\xb5\x96\xe0\xb5\x16\x5a\xcb\x5a\x59\x33\x3a\x57\x96\x46\x59\x33\xa3\xb9\x35\x33\x1c\x1e\x43\x0e\xcf\xbe\xef\xee\xea\xbb\xab\x9b\xdd\xd5\x46\xbc\xcf\xfb\x7e\xdf\x1b\x15\xc1\xb5\x81\xfd\x17\xd1\x5d\x99\x19\xc7\x77\xbc\xc7\x73\x64\xe3\x39\x2f\x03\xcb\x11\xa9\x13\x4b\x77\x90\xc9\x0f\xa6\x3e\xbe\x5d\x9a\xaa\x74\x5b\x97\x75\x80\x47\xa4\xff\x44\xef\xea\x2e\x19\x61\xf1\x71\xa3\xdf\x97\x3d\x5c\x6e\x23\x33\x9e\x66\x7f\x51\xa9\xdc\x43\xae\x0c\x43\xe0\x8a\x83\x9a\x14\xc3\x32\x39\x99\xd1\xee\x26\xbe\x71\xff\xef\x34\xe5\xf5\x52\xad\x19\xb0\xb0\xd0\x96\x74\xa1\x07\x82\x08\xee\xfb\xef\xa7\x1a\x0b\xac\xbc\x6b\x8e\xaa\xc4\xcf\x84\x21\x59\x75\xd2\x62\x80\x21\xbc\xa7\xe3\x8b\x00\x1c\x9b\xa0\xbd\x72\xb7\x46\xde\xf8\xcf\xda\x63\x93\x15\x65\xf4\x31\x8c\x24\xd2\x13\x68\xa0\x1a\x30\xf0\x24\x44\x65\xe9\xfd\xa9\x57\xce\xcf\x26\xc5\x90\x61\x64\xaa\xe1\xbc\xe4\xda\xd2\xde\xba\x34\xb1\x83\xb4\x88\x4c\x91\x66\x74\xa1\xc8\x14\xef\x29\x73\xeb\xff\x05\x9f\x44\x7d\xf3\x6e\x13\x23\x9f\xfc\x31\x6c\x8e\x8a\x97\x13\x4d\x59\x58\x90\x63\x35\xe6\x8b\xb4\x30\x31\x3b\xc1\x60\x63\x80\x5b\x2d\x1f\x37\x88\xb4\xe7\x71\xba\x16\xc3\xff\xde\xd9\x7c\x3d\xbf\x8f\x6f\xff\x04\x4d\x3a\x7c\xf8\xaa\xaa\xdb\x98\xf1\xd8\x9a\xec\xe1\xf2\x3f\x31\x09\xe1\xd5\x82\xb7\xb7\xab\x53\x53\x28\x47\x7d\xf8\x47\x81\xe2\x82\x5d\x02\x42\xc3\x11\x96\xcb\xbd\x5c\x78\x28\x0a\x38\x07\xd2\x04\xda\x42\xa7\x50\x4a\x13\x5a\xb3\xf6\xe6\xac\x0b\x0a\xbf\xd8\xe6\x54\x1e\x8d\x14\x0d\x3a\x73\x28\x60\x25\x18\xa0\x4c\x11\x9e\x31\xcf\xe0\x33\x88\x46\xae\xa8\xd2\xc7\xb7\xb1\xf0\x60\x5f\xba\x50\xab\x26\x2d\xef\x6b\xaf\x99\x78\xc5\xad\x16\xa8\x97\x7f\x40\x5f\xc0\xc7\x4d\x39\xf7\xcb\x76\xad\x9b\xe2\xed\x3a\x3c\x9c\x67\x73\xdc\x71\x59\xe2\x9a\x38\x50\xa0\x7e\x08\x94\x3c\x1f\x2b\x7e\xe3\x2b\x29\x32\x0f\xd4\xf9\x90\xbe\x63\xd8\x9d\xd5\xb6\x76\xe7\x1a\x8d\x4c\x87\x91\x18\xd5\x09\xd5\x46\xfb\x22\x6c\x2a\x19\xc7\xcc\xa6\xd9\xc0\x24\xd1\x2b\xcc\x08\x46\xaf\xff\x88\x42\xe4\x1c\x51\xb3\xf5\x65\x13\xa6\xdd\x3c\x4d\x18\x03\x8b\xd1\x7e\x47\xe9\x76\x7c\x49\x6f\xde\xb7\x1b\x70\xf9\x94\x31\xf4\xd3\x6c\x34\xe3\x17\x48\x12\xda\x14\xe0\xec\x75\x7a\xce\x22\x39\xd7\xf4\x05\x26\xa4\x6a\x4a\x4b\x89\x54\xc3\x70\x91\x8f\x9b\x8c\xfe\x04\x4d\x41\xaf\x07\xc1\xe2\xc9\xc0\xd3\xd6\xeb\xec\xfa\x85\x85\x76\x2f\x4b\xc7\x63\x37\x0a\x5c\x4d\xdd\x49\x70\x55\x05\xd8\x47\xa6\x47\xb9\xbf\x6b\x3b\x94\x93\x44\x7a\x13\x92\x87\x99\xac\x7c\x78\x15\x27\x6e\x45\x18\x86\xcf\x1f\xb2\xad\xdb\x4d\xe6\xd0\xd9\x64\x94\x66\x62\x7f\x8c\x99\x79\x1c\x5f\xc0\x27\x0a\x31\x4f\x68\xbd\x70\x52\x40\xf3\x59\x52\xca\xf2\x96\x25\xa3\xdc\xf9\x03\x2f\x2c\xef\x6b\x87\xc3\xf2\x41\xb5\x54\x0f\xb5\x52\x6c\xd3\x00\x65\x13\xc7\x69\x62\x91\xaa\x63\x31\x60\x45\x78\x3e\x51\x05\xa2\x9e\x1d\xa5\x49\x19\x44\x17\x69\x86\xc8\x85\x33\x43\xe5\x92\x7d\x3e\xd8\x91\xd8\x3c\xfd\x74\xfb\xf3\x2f\xa0\xa8\xec\x8c\xcf\xcb\x07\xc7\x27\xea\x56\xe3\x34\x19\x0c\xcd\x24\xc6\x8b\x12\xda\x53\xf9\x33\x7c\x1c\x3c\x51\xfd\xea\x9f\x6f\x3f\xbf\x6f\xc6\xaf\xdd\x70\x7d\x77\xb2\xcb\x8b\xde\xae\x58\xcd\xc7\x5f\x99\xdf\x8f\x5d\x58\xf0\xf0\x74\x65\x52\x3d\xd0\xa1\x14\x49\x6a\x66\xac\x8a\xca\xe5\xa6\xc0\xc1\x55\xfe\x87\x53\xca\x04\x3d\x1f\x12\xd0\xe8\x45\x8e\xd8\x1f\x42\x67\x40\xa0\x6a\x4a\xa8\x02\xb3\x42\x94\xc9\xe8\xfd\x23\x3c\x79\x0c\x73\x07\x8b\xc1\x9d\xaa\x0a\x20\x5d\xae\x93\x49\xfc\xc2\x7e\xce\x6c\x20\x71\x85\x82\xca\xb4\x36\xf0\x29\x64\x5a\x35\xe1\x64\x32\x42\xc0\x2c\x38\xe8\xf2\x02\xf8\xb8\xe2\x83\x9a\x26\x9f\xf1\x96\x90\x37\x91\x7a\x0b\x78\x8d\x2e\x14\xbf\xba\x8d\xdb\xc1\x02\xca\x2a\xff\x52\xa8\xa7\x21\x8a\x99\x38\x0b\x7f\x4b\x2e\x23\xd0\x14\x45\x2b\x74\xd7\x06\x16\x34\x6c\x01\x97\xb5\x78\xd9\x0d\xda\x44\x9c\x13\x48\xb9\x6d\x21\x17\xfe\xdf\xe8\xae\x05\x5d\x8f\x35\x4b\x39\x41\x3e\xcb\x79\xee\xbf\x9a\x7a\x00\xdb\xfb\xca\xae\x9e\xd1\xa6\x15\x3d\x72\x31\x1d\x2f\xb7\x66\xc1\xb1\x96\xd3\x1e\x23\xe9\xad\x69\xeb\x05\x51\x10\xb9\xad\x1c\x5c\xee\x69\x61\xe0\x97\x28\xfd\x65\x55\x81\x40\xe1\xb3\xfe\xa2\x49\x12\x6f\xcd\x64\x99\x4d\x2a\x74\xc4\x19\x50\x17\xb1\xa1\x8b\xcc\x30\x32\xd8\xd3\x8e\xfc\x52\x4c\xb2\x64\xc5\xae\x2b\x6b\x82\xab\x34\xcc\xf9\x78\xea\x73\xb7\x71\x6c\x26\x79\xd4\x65\xf1\x49\xac\x0e\x6f\xe9\xe2\xd3\x5b\x4d\x42\x1e\xd6\x64\x09\xe3\x9e\x19\x9b\x13\x28\xdb\xfc\xb3\xb5\x5b\xf9\xc2\xfe\xf6\x20\xb3\xa6\xe0\x8a\x32\x60\x5c\x10\x14\xe0\x63\xc7\xad\xc9\x9e\x89\x5a\xda\x57\x99\x47\x32\x9f\x38\x0d\x4b\x57\x68\xdc\xeb\xc3\xd6\x9f\xea\xf8\x69\x7d\x0b\x23\x0e\x6f\xe3\xf8\xb4\x62\x7e\xe7\xcb\x5a\x17\xf5\x6e\x7a\x49\xd3\x0a\xbf\x19\x78\xdb\xd3\xdb\xb5\x62\xc2\x0b\x4b\x9f\x6d\x77\x27\xf9\x90\x33\x5e\x37\x4b\x9c\xac\x76\x1d\x4e\xfb\xb9\x76\xdf\x26\x89\x8d\x5b\xaa\xbd\x0c\x58\x15\x1f\xab\x2e\x7a\x3e\xe9\x42\x6c\x05\x6f\x05\x2f\xfe\x03\x4a\x39\xf8\xb8\xf6\xf5\x70\xb0\xef\x72\x37\x02\x15\x5c\x68\x6a\xf1\x71\x2d\x6e\x7c\x7e\xdf\x62\x3b\xb6\xfd\x02\xb7\xc0\x82\x21\x81\x16\x0f\x71\x76\xfa\xb4\x67\xb3\xb8\xba\xd3\x32\xf2\xba\x46\x0a\x41\x99\x59\x13\xd2\x3a\x4f\x0f\x9c\xed\x14\xb0\x5a\x8a\xb7\xc2\x63\xae\x0b\xdf\xb5\x71\x94\x17\xa2\x0d\x20\x60\x6c\xba\x01\x16\xf7\xc6\x58\x17\x74\x9e\x07\xb8\x75\xd3\x74\x34\xe3\x9b\x71\x0f\x77\x3c\xa9\x86\xbb\x85\xa8\x6e\x6a\x70\xe7\x38\x4b\x07\x99\xcd\x73\x4a\xce\xb0\x89\x33\xab\x86\x31\xdb\x81\x8f\xcd\xb7\x2b\xb6\xca\x0a\x44\x30\x57\x33\xf0\xde\x7f\xa8\x9d\xd9\x7c\x9c\x52\x4a\x2c\xbc\x94\x8a\x7b\x86\x28\x39\x35\xe9\x82\x4a\x6a\x51\x75\x21\xbe\xad\x92\xd3\xdb\x2e\x7e\xc8\xc7\xe9\x84\x1b\xad\xe8\xec\x9e\xc5\xb0\xe6\x13\xd5\x34\xff\x35\xcb\xa5\x4d\xc7\x70\xf5\x6c\xd7\x86\x71\xf0\xff\x81\xf3\x96\xdf\x5f\x8d\x06\x11\x8c\x6a\x85\x02\xa0\xe8\x00\xae\x81\xb9\x96\xa5\xc9\xa0\x97\x8a\x38\x32\xb2\x29\x40\x04\x9c\xbb\xc5\xf3\xfb\x38\x07\xfd\x1e\x5e\x80\xf4\x7f\xfd\x9d\x9a\x6c\x05\x09\x9d\x44\x5b\xe5\x67\x50\xb1\x01\xc8\x4b\xb6\xb9\x4f\x55\x7b\x6c\x6b\xd6\xdd\x8a\xf3\x4d\x73\x8e\x54\x1f\x06\x1a\x14\xb3\x6a\x33\x2e\xb5\x8a\x93\xd2\x91\xa9\x32\xf0\xf5\x6d\xa6\xe1\x64\x30\xf8\x0f\x9a\xed\x35\x3c\xd1\xee\x24\x13\x75\x44\x96\x30\x9b\x2a\xb7\x81\x37\x6a\x51\xea\xc2\x42\x7b\x94\x8e\x6c\x52\x4c\xd0\x05\x70\xd8\xb6\xcf\xbf\xe0\xd2\x78\x5f\x16\x48\xcc\x6a\xc5\xea\xe0\xaf\xb5\x5d\xd1\x5f\x6b\x60\x2a\xc9\x76\xe7\x2d\x65\xa3\x75\x52\x1b\x64\x9d\xac\x25\x10\x07\x16\xdb\x85\x19\xdb\x19\xbf\xee\x80\xb1\x26\x1a\xf0\x5e\xcd\xeb\x58\x43\x7c\x7e\xb0\x6d\x7a\x69\x96\xc8\x68\x46\xfe\xc7\xfd\x06\x3e\xd1\x64\xfb\x2c\x4a\x56\x58\x2f\x98\xbd\x74\x03\xb5\xd8\xdf\x52\x4a\xcd\x45\x66\x93\xde\x43\xf4\x3d\x4c\x2d\x99\x2a\x19\x96\x2b\x81\x17\x8d\x38\x8f\x07\xed\x3a\xc7\xfb\x0f\xc9\x7f\x04\x9e\x9f\x71\x8d\xee\x03\x13\x93\xd1\x84\xce\x06\xd7\x89\xcc\x1e\xa1\x69\x23\x18\xce\xc7\x95\x3b\xde\xc8\x90\x9e\x42\xf9\xdf\xa2\xad\xac\xfc\x0a\x2f\x28\x3e\x17\x5b\x2a\x12\xde\xce\x25\xf3\x07\x16\x5d\x32\xdf\x10\xe7\xa7\x93\x22\x8f\x7a\xb6\x2a\x0b\xe4\xba\x07\xec\xc7\xeb\x0a\xb2\x07\x04\xd5\xff\x10\x6d\x7e\x98\x49\x33\x1b\x0d\x1c\xcd\x5e\x94\xa4\xb9\x99\x08\x25\x16\xf7\x85\xd8\x94\x8f\xdd\xd2\x5c\x98\x2c\x89\xf2\x21\xdb\x54\x09\x6b\x54\x69\x8b\xe8\x5b\x0c\xd3\x55\x5b\xf0\x9f\x02\x7b\xca\xd6\xe0\x7c\x12\x28\xc5\xf3\xb4\x6b\x7b\x11\x59\x43\xd1\xdb\x73\x30\x58\x5f\xf2\x71\x45\xa9\xae\xed\x9b\x38\xd6\x90\xa6\xa3\x08\xc2\x44\x02\xd9\x49\xae\x90\xb0\x55\x1c\xf3\x40\x52\x2f\xc4\x9d\x34\xe1\x9f\xc6\x99\x25\x0a\x32\x95\xeb\x29\xe5\xdd\x3e\xa2\x60\x8d\xd0\xc8\x6e\xf9\x25\xec\xa2\xae\x0e\x5d\x0c\x3c\x93\x24\xb6\x83\x28\x8f\x89\x5a\xf9\x00\x56\x7f\xf4\x06\x76\x69\xad\x08\x04\xc3\x88\xed\x6f\xa2\x51\x22\x96\x5c\xbe\x1d\xc1\x71\xad\x54\x5d\xe8\xf7\xf8\xbb\x36\xea\xf4\x59\x61\x2b\xb8\xa5\x49\x64\x76\xfd\x08\x3e\x51\xbb\xf1\xf9\x79\x82\x12\x52\x0a\xed\x6d\x57\x01\x74\xe0\x63\xa5\x73\x5f\xd8\xd8\x8e\x87\x69\x62\xf7\x94\x7f\x8b\xad\xf1\xab\x4a\x60\xe9\x7c\x85\x2c\x19\x28\x45\xa7\x4b\x1a\xe7\xc6\xa1\x34\xf2\xc8\xfb\x81\xc7\xc9\x8e\x2d\x90\x1a\x4a\xda\x67\xb7\x2a\x16\xed\xde\xf0\x75\xe7\xd0\x14\x26\x2f\xb2\x74\x3c\xa4\xd2\xfa\xf2\xf6\xab\xb4\x8e\x6d\xbf\x3a\x7d\x2a\x92\x2a\xdd\x5a\xbe\x96\x66\xc5\x10\x4c\x75\x8f\xf1\x02\x69\x4a\x94\x6e\x1a\xb4\xc2\x47\xa6\x1f\xc1\xdc\x4c\x3a\xff\xf4\xe8\xf9\xa4\x61\xdf\x7e\xd1\x0f\xba\x9e\x2a\x9c\x6c\x21\xe6\xe4\x93\x40\xb1\xf1\xc5\x28\x63\x49\x77\x5d\x0f\x3a\xac\xcb\x27\xb4\xe7\xdb\xcf\x52\x42\x04\x99\x97\x27\x08\xa0\x45\x90\xe4\x7f\xf0\x99\x0d\xc5\x29\xbb\x47\x69\x04\xab\x72\x07\x4a\x42\xe9\xd1\x0d\xca\x22\xd1\xa4\xd9\xbd\x41\xf9\x14\xa2\xfe\xeb\xe8\x42\xd4\x1d\xf7\xdf\x05\x0d\x01\x29\xe5\x4d\x4a\x6e\x10\x7a\x9c\x9e\x2a\xdf\x6e\xc8\x21\x23\x5a\x3f\x81\x56\xb8\x88\x4f\xd3\xeb\x03\x80\xf5\x11\x08\xd9\x21\x7c\x7b\xb8\x43\xc0\x77\xc4\x65\x77\xb8\x0a\x85\xf0\xfc\x13\x9c\xd0\xf1\xa5\x11\x26\x05\xb1\xfa\xf9\xa0\xf5\x6b\x07\xc5\x16\x16\x94\x41\xec\xfb\x9f\x56\x95\xe1\xf3\x78\xd2\xec\xd4\x31\x55\x20\xb2\x5d\x9d\x96\x4b\xd4\x1e\x23\xc0\x26\x1e\xd2\x9e\x8e\x52\x7f\x78\x88\xd4\x10\xf0\x7e\x1f\xec\x3c\xa5\x34\x2f\xc5\x21\x29\xcb\x49\x3d\x5d\x7c\x3c\xcb\xe7\x20\x36\x9e\x5e\xf5\x65\x94\x26\x51\x41\x35\x99\x32\xf1\xc3\xcb\x64\x1b\x08\x3e\x71\x2b\x6a\x5e\x4c\x46\xdd\x98\x34\x0c\x9c\xdb\xc0\xad\xa9\xb2\xbe\xbc\x3c\xf5\x02\x1b\x33\x9d\x06\x8c\x1b\x33\x75\xe7\xca\x85\xea\x8c\x62\x42\x40\x03\x19\x31\xc2\xbd\x40\xd5\xd2\xce\x55\x15\x46\x54\xf0\x1c\x15\x5c\x9f\x60\x68\x93\x4a\x0d\xeb\xdd\xa9\x43\xcf\xb9\x9a\x5b\xf9\x43\x22\x27\xa5\x19\x05\x9e\xe5\xfa\x8f\x7e\x51\x95\xad\xdf\x0e\x54\xa6\xfa\x76\xa5\x5e\xf6\x4a\x34\x9e\xab\x82\x10\xca\xeb\x96\x4d\xb1\xe5\xf8\x8e\x5b\xb4\xd8\x60\x34\xc1\xed\x8a\xff\x5d\xf5\x5d\xe3\x34\x34\xce\x31\x85\x71\x95\xf4\x31\xc1\x58\x3a\x67\xa4\x7e\x9f\x5d\x4a\x51\x1b\xc6\xe2\x74\x45\xd1\x93\x7f\x30\xf5\xbb\xe1\x39\x2f\xf5\x3e\x26\xeb\xd4\x4a\xf7\xb4\xa5\xf4\x0c\x1f\xd7\xad\x62\x9b\x0c\x8a\x21\x45\xbe\x28\x10\xb4\x3a\x9a\xea\x48\xbf\xcb\xff\xa1\x5a\xf5\x75\xd3\xea\x97\x5e\x6a\x17\xe9\x9a\xc9\x7a\xad\xf2\xa6\xf1\xa0\x6f\xea\x92\xf2\x4d\xa5\x4d\x97\x17\xa6\x20\x01\x2b\xf6\xee\xc3\x8c\xbd\x16\x78\xc6\x01\x63\x96\x00\xa1\x7c\xa3\x16\xf4\x2d\xef\x6b\x0f\xa3\xc1\x90\x2c\x4a\xf1\x37\x80\x23\x3b\x24\xab\x5b\xe2\x3e\xd9\x51\xd1\xd5\x79\x55\xf9\xb2\xbd\x28\xe9\x4e\xb2\xc1\x10\xd1\x05\xfa\x10\xbb\x36\x94\x3c\xfe\xae\x4e\x03\xea\xaa\x97\x91\xdb\xbf\x93\x33\xbe\x13\xf8\xce\xd3\x1d\x5d\xa6\xc8\xa2\x90\x81\x9b\xae\xb2\xc7\x3d\x6c\xa9\xd6\x29\x2f\xb0\xb1\x0d\x8b\xcc\xb4\x94\x9e\xc3\x09\x2e\x94\xf0\x59\xad\x84\xff\xfc\xbe\xf6\x5a\x99\xc2\x65\x34\xc8\xa5\xed\xae\x9e\xe6\x66\xed\xa1\x2d\x2e\xb6\x87\xa9\xf4\x9d\xb0\x96\xb0\x21\x1a\xde\xd0\x17\xa7\x0a\x30\x7d\xaa\x32\xfc\x73\x6b\x1f\xa5\x35\xd7\xd9\x32\x89\x0b\xe5\x3f\xe1\xf2\x0e\x6a\xc2\x5b\xb4\x4a\xa3\x58\x74\x87\x86\x3f\x2a\x68\x57\x09\xe5\x25\xd2\xf4\x7e\x6f\xe6\x5d\x17\x31\xca\x8f\xf1\xfb\xce\x45\x4c\x49\x46\x2b\xa6\xd9\x2d\xe0\x29\xc4\x10\x52\x15\x27\x8e\x63\x79\x42\x99\xff\x55\xe5\x08\xd2\x8f\x58\x22\xcc\x27\xea\xe7\xd4\x3c\x3d\xa7\x14\xcd\xa2\xd0\x09\x72\x61\xe2\xce\x6c\x78\x40\xd5\x4f\x50\x52\x88\x7f\x9f\xdb\x50\x18\xdf\xfa\x22\xb4\xb8\xb8\x04\x95\xf1\x9e\xce\xd7\x86\x81\xca\xd7\x86\x0d\x0a\x23\x2f\xb6\xcd\xa4\x18\xa6\x94\xe7\x7d\x8c\x4a\x8a\x26\xb6\x8e\xb9\xd1\x8c\xbc\x1f\x8b\x08\xd0\xaa\x50\x2c\x94\x04\xe3\x63\x1a\x1b\xbd\x49\x58\x60\x02\x32\xe5\x71\xaa\x98\xad\x67\xa7\xbe\xec\x70\x45\xc3\xa7\x27\x59\x3a\xb6\x0f\xd3\xdd\xcb\x5c\x2d\x7f\x97\x37\xda\x40\x11\xa2\xb9\x97\xee\x8c\x35\xdd\xde\x7c\x5c\x8b\xf6\x03\x37\x80\x67\x72\x13\xc5\x55\xb7\x1e\x38\xe5\xd3\x53\x34\x80\x50\x57\xb9\x34\xad\x88\x40\xee\x9c\xa4\xbf\xd4\xee\x4e\xd6\x19\x6a\xb1\x7d\x79\x4a\x36\x30\x55\x63\x14\x6b\x21\x70\x52\x41\xd9\x09\x47\xa6\xbc\x18\x0c\xda\xad\x40\xeb\x55\x27\xb6\x37\xe3\x7d\x0c\xe0\x82\xe6\xc4\x08\x1d\x67\xff\xe8\xf4\xd3\x0a\x60\x11\xa6\x49\x68\xa3\x55\xd3\x8d\x19\x47\xcb\x42\x27\x0a\xa9\x54\x2f\x3d\x96\xf1\x5d\xd4\x73\xda\x08\xb2\x7f\xf8\xf0\xf0\x94\x2e\x95\x9f\x75\x3b\x76\x68\x46\xdd\x2c\x22\x00\xf3\xc2\x82\xfb\x76\xad\xaf\x52\x53\x77\x7f\x7e\x1f\xb9\x3a\x8d\xc7\x69\x94\x14\x82\x4e\x11\x58\xa2\x47\x23\x6f\xd6\xae\x71\x61\xa1\xdd\x37\x59\x31\x2c\x97\x9f\xe5\x7d\x8d\xfe\x85\x7e\x98\x3e\xf7\xdc\xfe\x96\x6f\xcb\x60\x94\xf2\x31\x4a\x88\x55\xb4\xdb\xd3\xad\xd6\xd3\x4f\xf3\xcc\xbf\x00\x2d\x7d\x3e\xa9\x2c\x49\x66\xdd\xd0\x4b\xc4\x1e\x8c\xac\x04\xd8\xf4\xaf\x61\x99\xc5\x80\x7c\x5b\xcd\x97\xc5\xe5\xf9\xff\x90\xe3\x7a\x1d\xd0\xec\x8d\x05\x7b\x1a\x6a\x32\xd7\x51\x79\xfd\xdc\x46\x5d\x97\xf6\x60\x7b\x3d\xb2\x71\xaf\xa5\x22\x2b\xcc\x61\x89\x9f\xfd\xd2\x6f\xe2\x38\x32\xc9\x2b\xb3\xbe\x3c\xc3\xaa\x52\x22\xcf\xd1\x72\x32\x94\x2c\x29\x20\x52\x1d\x3b\x5f\xe6\x81\xc5\x76\x1e\x0e\xa3\x57\xd2\xf1\x30\xb3\x49\x64\x50\x43\x11\x67\x34\x5f\x68\x3e\xaf\x84\x4e\x47\x26\x57\x40\xb1\x4d\x9d\xc1\x6d\x36\x14\x84\x4d\x37\x9b\x8c\x11\x56\xa1\xb9\xf3\x26\x3d\x76\x3e\xae\x08\xe5\x1f\x2e\x58\x2a\xcb\x39\x73\xb8\xe2\x0f\x99\xe6\xff\xe2\x8e\x86\x2e\x45\x44\x7b\xe8\xce\x01\x89\xb8\x8e\xbb\x15\xcd\x1e\x65\xea\x83\xf4\x08\xff\x71\x9d\xea\x25\x82\x4d\x2c\x2f\x0c\x0d\xf4\x93\x81\x27\xdb\xc5\x26\xe9\x3d\x40\x0b\x0e\xe6\x2e\x5b\x67\xf2\x89\x42\x1e\xb4\x3a\x7e\x82\x5f\x50\xc8\x42\x5d\xf5\x86\x36\x86\x7c\xb6\x8e\x67\x59\xc4\xb2\xcf\x35\x0b\x21\xa9\x7b\xfd\x82\x4b\x4d\xf8\xf1\xe1\xba\x4d\x4c\x85\x36\x75\x5e\xd1\xa6\xce\xbb\x32\x63\xcf\x8e\x0b\x8e\x57\xa4\xeb\xd6\x72\x72\x48\x9e\x2e\x36\xb6\x36\x03\x30\x1c\xaf\x12\xc8\x0f\x84\xea\xb3\xe0\x21\xe3\x62\xbe\x4a\x37\x2f\x22\xaf\x6a\x8d\x2c\xd6\x63\x60\xe3\x9f\x75\xf2\x8e\xbe\xef\x7f\x57\xb9\x09\x70\xc8\x8c\x17\x70\xb9\x49\x69\xab\x9f\x45\xab\x69\x9c\x4e\x30\xd0\xb8\xa3\xa1\x94\x41\x37\x55\xd1\x2c\xcd\x7a\x36\x7b\x50\x39\xe5\xff\xb1\x72\x12\xbc\x86\x74\x10\xef\xf7\x4d\xc0\x32\xf8\x44\x99\x8d\xf0\x18\x46\x89\xf9\x3e\xdd\x9f\xb4\x4d\x69\x08\x21\x79\x39\x41\x9b\x11\x1f\xab\x3a\x65\xd7\x46\xc9\xe0\x01\xff\xb6\xd1\x4f\x16\xe3\xf6\xf2\x33\x58\x55\xbe\x85\x0d\xcc\xf9\xc5\x96\x6f\xc4\xfb\xc5\xca\xcf\x1f\x0d\x3c\x4e\xd8\x47\xe7\x66\x90\xd8\x38\x96\x9e\x91\x3c\x04\x95\x11\xd7\x7b\xdd\xfb\x0f\x51\xfe\x6e\x0f\xc3\xd4\x01\x88\xae\x7b\x3b\xef\xfa\xa0\x70\xae\xd5\xda\x3b\xff\xcb\x4b\x2d\x6d\xc8\x70\x49\xbb\x95\x5d\x72\x99\x46\x3f\xcd\x6c\x34\x20\x5c\xb4\x17\x1e\xe3\x8d\x11\x2d\xb2\x7b\xa8\xc2\xca\x42\xe1\x77\xc6\xb1\x29\x86\x39\x05\xfd\xc2\x0c\xf2\xfe\xaa\xe7\x95\x1c\x5a\xdf\x94\xa1\xd5\x9c\x92\xff\x03\x74\x9a\x8f\xb5\x08\x1d\xe7\xf7\x8e\xda\xed\x7a\x82\xd7\x55\xcb\x69\x3c\x5c\xcf\xa3\x34\x4e\x07\x2c\x71\xc9\x45\x28\x9a\x6a\x52\x90\xfa\xa4\x8a\xf6\x27\x26\xeb\xed\x50\xe5\xd7\x16\x54\x1e\x32\xf6\x5a\x6d\xe1\xa3\xdc\x86\x14\x88\x7d\xab\xea\x8c\xd2\x97\x38\xe3\x6a\x80\x68\xa7\x93\xd2\x37\xe2\x89\x3f\xa7\xa7\x21\x6d\x27\xdf\x8a\x98\x45\x23\x1c\xb5\x8d\x8f\x94\x80\xf8\xcc\x86\xea\xb0\xdf\xc7\x1b\xa8\xa8\xa1\x22\xb4\xda\xdd\xf1\x9d\x81\xae\x8d\x23\xbb\x6a\xab\x92\xd5\x73\x9d\x6a\x2d\xdf\x63\x17\x67\x36\x9e\x54\x44\xf7\x1e\x13\x67\x66\xe9\xc5\x20\xf6\xbe\x89\x62\x05\x3b\x43\xd2\xca\xed\x5c\x22\xcb\x17\xc3\x7f\x15\x78\x06\x23\x79\xc5\x61\xc5\x78\xd1\xb9\x36\x96\x4f\x41\x14\x8f\x5b\x4e\x5b\x13\x6e\x46\x0c\x9e\xad\x28\xc1\x46\x61\x3a\xe7\x75\xd1\xd9\x69\x01\xc9\xd2\x2d\x45\x3d\xfb\x5a\xe0\x8b\xcb\x4c\x85\x43\x03\xbf\x0e\xa1\xa6\x8e\x21\x39\xfc\x29\x11\xb0\xeb\x4a\x16\xfe\x7a\x6d\xd3\x7f\x7e\xdf\xb3\xa4\x0b\x92\x45\x83\x61\x31\xe3\xbb\x4a\xb7\x71\xeb\x1a\x6e\x28\xfd\xbf\x86\x00\x8e\x7a\xc7\x02\x66\xc5\x20\xe1\x77\xc0\x27\x0d\xc1\xc6\xc1\x72\xfb\xb6\xbd\x49\x2c\x90\x19\xd9\x30\xe8\x65\xc8\x4e\x52\xdf\x71\xf6\xb7\xd7\x8c\xef\x60\xe8\x75\x8b\x8f\xeb\xca\x00\xfb\xda\x83\xcc\x44\xc9\x8c\xef\xb2\xb1\xe7\x35\x30\x73\xe7\x54\xbe\x71\xbb\x16\x34\x2a\x97\x83\x32\x8f\x47\x32\x8c\xfa\x27\xbf\x0e\x3e\x51\xe3\x83\x0c\x84\x6c\x3e\xa7\xfb\xe4\x2c\xdf\x8e\xa7\x88\x38\x07\x88\x83\xeb\x2a\x37\xfb\x40\xf7\x57\xce\x37\x71\xce\x0e\xb6\x73\x93\x44\xc5\x0e\xf6\x8a\xf2\x26\x3a\x53\x09\x1b\x7b\x4f\x63\x23\x42\x46\xb7\x15\x28\x0f\xff\x2d\x45\xc9\x9d\x24\xfd\x34\xee\x31\x62\x00\xf1\xcd\x49\x05\x6a\x39\xa9\x36\xcb\xb5\x28\xe9\xa5\x6b\xb4\x30\x63\x75\x04\xfa\x0d\x7b\x25\x2b\x82\xcb\x3a\xe1\x21\x9a\xf9\xfa\x68\x9c\xe6\xd1\x64\x84\xcb\x41\x69\xec\xba\x52\x64\xba\xde\xc0\xcd\x60\x99\x58\x0a\xc0\x10\xb5\x7e\xa8\xc0\xc5\x1f\xd6\xf2\x3c\x32\x5d\x0d\xd7\xc3\x58\x46\x07\xd2\xd5\x33\xca\x9f\xfd\x4c\xad\x5a\x3c\x3f\xdf\x0e\xc9\xe6\xb4\xb0\x59\x8a\xf6\x29\x0a\x4c\x57\x15\xe1\xe4\xaa\x03\x08\xe6\x86\x29\x93\x8e\xef\xbd\xec\xea\x11\xb5\x78\xa0\xcc\x70\xd3\xac\x47\xaa\x00\x2d\x5f\x43\xd8\xac\x68\xcf\xfa\xc8\x2d\x4f\xb3\x62\x8f\x97\x21\xff\xb1\x72\xea\x3d\xa6\x06\xc9\x83\x00\x7f\x0a\xfc\xa2\xe5\x64\xa1\xbf\x37\x55\x6a\x86\x9b\x5a\xb9\x3d\x8e\x46\x5d\xee\x32\xf2\x98\xc7\xfc\x96\x09\xe0\xf8\x05\xd1\x61\xaa\x81\x2a\x00\x46\x4b\xb9\x68\xd2\xe8\xc1\xfb\xba\xaa\xda\x10\xe3\x49\x36\x86\x99\xd2\xce\xe6\xf7\x7e\xd7\xfc\x7e\x54\x55\xc3\x26\xe1\x4a\xa5\xbe\xa9\x69\x9c\x6a\x16\xf5\xd2\x49\x37\x66\xe4\x63\x05\xc7\xcb\x27\x0d\xc0\x97\xa5\xf6\xd8\xac\x73\xc9\x07\xeb\xef\x36\x95\x5f\xd8\xcd\x06\x97\x84\x8a\xc9\x85\xa9\xc6\x49\xf5\x9e\xc1\xb6\xca\xbc\x19\x7a\xf5\xc2\xa1\x69\x40\x2c\x72\x7b\x81\x7f\x49\xb0\xa2\x8a\xec\xf2\x75\x8d\xae\xba\x54\x1b\x18\xb2\xa8\xf4\x4d\x36\x9a\xf3\x69\xe4\x93\x54\xc6\x50\x12\x75\xc2\x23\xbd\x4b\xbb\x0b\x62\x07\x06\x4f\xe3\x19\x1c\x53\x34\x12\x33\x1a\xa5\x49\x34\x19\xd1\x7c\x41\x21\xed\x82\x52\xd7\xbf\x50\xb1\x45\x33\xaf\x14\x7b\x5a\xff\x51\x7c\xc5\x0a\xf5\x51\xad\x7d\x51\x6f\x38\x9e\x64\x2d\x1d\x0b\xfa\xf2\xfc\xb9\x1a\x40\x5d\x1e\x45\xf1\x4c\xf1\x8c\x92\x19\xe5\x76\x9e\x6c\xc4\xfe\x2e\x47\x26\xe9\x19\xe9\x67\xe2\xb1\x41\x30\x80\x8f\x3b\x4d\xfe\x0b\x69\x36\x8a\x88\x00\xd3\xd2\xde\xbb\xe5\x1b\x12\x9c\x42\x8d\x87\x36\x4f\x8a\xb6\x9a\x60\xd2\x54\x29\xf0\xa1\xe7\x2f\x1f\xfa\x95\x07\xb1\xde\x23\xae\xba\xaa\x56\x9d\xad\x40\x81\xf5\xb8\x9e\x81\x68\xfc\x81\x8d\x0a\x11\x60\x51\xcc\xb8\x1f\xed\x94\x81\x9d\x0c\xdb\xf2\x59\x62\x47\x6c\x75\x2a\xe2\x38\x4f\x2a\x39\x98\x24\xb1\x21\x65\x95\x7e\xec\xbe\xa3\x43\xf5\x59\xad\xa9\x3f\xbb\xe1\x8b\xcf\xbb\x48\x6b\x49\x00\x04\x4a\x36\xd2\xaf\x0b\x99\x5d\x8d\xec\xda\x9e\xd6\x4b\x2f\xa1\xc4\xc4\x25\x4c\xe8\x74\x62\x21\xda\x85\x2b\x73\xd2\x62\x9e\xa0\x7e\x41\x0b\x68\xfe\xc8\x23\xc4\xd8\x55\x7c\xc4\x11\x3b\x32\x2c\xa6\x12\xf3\x49\xe0\x31\xe3\x2b\xa6\x78\x05\x73\x14\xab\xa0\x30\xe3\xf8\x4c\xb3\x16\x46\xdd\x08\xce\xee\x2a\xf6\xa7\xb7\x21\x92\xe6\x1a\xd4\xed\xda\xd4\x43\x13\xc7\x36\x19\x08\x4d\x82\x05\x19\xa7\x1e\x53\xf5\x4d\x2c\x1f\x2c\x08\xd9\x64\xa4\x31\x88\xe2\xa2\x42\x59\xb8\xa8\x1e\xd6\x45\xd5\x13\xe9\xa5\x49\x3a\x18\x4e\x2c\x19\x75\xa1\x38\x74\x1b\x09\x9b\xfb\x59\xa7\x73\x58\x73\x4b\x5f\x58\x68\x2f\x2c\x1c\xdc\xe3\x19\x3d\xb7\x51\x08\x77\x61\xf7\xc2\x02\xf7\xd1\xfe\x6e\x5a\x19\x2d\xf4\x4e\x04\xb9\x42\x0f\x07\x2d\x98\xf7\xd5\x1e\x64\x32\x6b\x90\x92\x22\x3a\xc1\xdc\xc2\x2a\x74\x62\xea\x05\xbe\xff\x12\x5f\x80\xdf\x39\x13\xf8\x5e\xf5\x45\x80\x4c\xb1\x46\x5f\x53\x39\xcf\x39\xed\x91\x04\x61\x1c\xfe\x2a\xbf\xb9\x0e\xd3\xe2\xc1\xf2\x3f\xd0\xeb\xdc\xc0\x27\xd8\xab\x5e\xd9\x74\xc1\x5b\x17\x03\x0a\x23\x19\xab\xe1\xa3\x1d\xa5\x42\xc9\xe6\xa5\x88\xeb\x7e\x10\x28\xdf\xb7\x2b\x78\x2c\xb8\xf9\x8b\x4a\x26\x68\x92\x8c\x4d\xd4\xa3\xd8\x06\x3f\xc4\x0e\x76\xd8\xf2\xde\x50\xa9\xc1\xfb\x2a\x35\x1b\xd9\xd0\x24\xd1\x6f\x4e\x2c\x1b\x8f\xb0\x70\x50\xe0\xfd\x97\x8f\x51\xff\x14\x31\x7c\xe3\x7e\x92\x8f\xa1\x75\xd9\xf2\x3f\x7d\x04\xb1\x1a\x9f\x68\xab\xff\x34\xa5\x00\xc7\x83\x44\x2e\xa9\xb6\x58\xa3\x4e\xa8\x35\x03\x9b\xcd\xa8\x64\x03\x95\x6a\xed\x60\x86\x4f\x6f\x37\xe9\x4e\x1c\x6c\x67\x66\x6c\x73\x6b\x7b\x5c\xb3\x51\xc6\x0e\xbe\x7f\xa9\x37\x17\xdb\x2f\x1e\x6e\x2d\xef\xdb\x86\xc5\x86\x0b\x96\xcb\xfb\xe1\x5a\x37\x98\x29\xc8\x76\x4e\xa3\xb8\xe1\x54\x68\xcb\x4b\xc3\x28\xfd\x3a\xea\x60\x12\x60\x2b\xa5\xfa\xcb\x4a\x5c\x7c\x06\x2f\x5a\x5e\x27\x05\x36\xc2\x91\x6d\x50\x09\x0f\x6d\xda\x52\x61\xc4\x2d\x55\x2b\xbc\x15\x78\xf4\xf7\x84\xbd\x0f\x75\x35\x04\x21\xdb\xf1\xaa\x8a\x77\xf9\x58\xc5\xbf\xa6\xb5\xbc\xc4\x99\xf0\x45\xed\x42\x86\x39\x89\x24\x17\x00\x0a\x5c\xec\x9b\x84\x1f\xc3\x5a\xc7\x05\x40\x2c\x67\xc7\x82\xd6\xa1\xe7\x38\x0c\xe4\x79\xcb\x04\x8c\x5a\x46\x74\x60\xb1\x6d\x47\xe3\x94\x84\xb0\xca\x27\xc7\x9e\x2c\x40\x5a\x8b\x41\x4b\x93\x22\xa0\x19\xd9\x2c\x0a\x8d\x40\x22\x71\x0b\xdc\xc3\xe4\x13\x57\x6c\x1f\x67\x26\x2c\xa2\xd0\xb9\x61\xe3\x92\xcf\x68\xaa\x8e\xa6\xc7\xc4\x51\xef\xa1\x96\x28\x8b\xfe\xe3\xc7\x49\x77\x09\xc0\x80\x77\x91\x78\xa1\xca\x7f\xb7\x22\x9d\xeb\x31\x95\x6b\x3f\xd9\x51\x00\x70\x8e\xda\xf0\x60\x3e\xd1\x51\x2a\xcd\x5c\xb1\x91\x6d\xd5\xaf\x28\x6f\x39\x9e\x65\x68\xb2\xb8\x48\x13\xb9\x6e\xb4\xed\xee\x6a\x8e\xe8\x5d\x75\xdd\x69\x94\xcf\x28\x56\x11\x2e\xa9\xa2\x1f\x8f\xf7\x79\x5b\x75\xdb\x12\x5b\xac\xa5\xd9\xca\x83\xe5\xf8\x70\xe9\xf2\x17\xf6\x7b\x39\x20\x57\x37\xb9\x33\x55\x75\xf4\x93\x58\xee\x15\x1a\x4a\x00\x42\x77\x68\x69\x04\x1a\x97\xd9\x44\x4e\x68\xd2\x4b\xfe\x1f\xfd\x58\x4b\x02\xc7\x83\x9f\x51\x82\xa2\x20\x73\x60\x23\xe2\x40\x00\xf1\x44\xdd\xd2\xe3\xa5\x97\xda\x85\x1d\x8d\x5d\x83\x04\x81\x07\xeb\x87\xf3\x89\x6a\x2c\x77\x4d\x51\x58\xd8\x32\x38\xe2\x02\xf3\x5e\xf8\xa4\x89\xf2\x33\x49\x12\x9b\xad\x22\x8a\xdb\xde\x02\x19\xdb\xab\xf2\xf7\xd3\x6c\x84\xeb\xdf\xef\x5d\x1b\x3c\xd1\xf3\x9e\x12\x21\xb8\xda\x98\x74\x45\xa3\x31\x09\xea\xb7\x54\x65\xe7\x96\x5a\xbe\x6f\xa9\x17\x68\xe2\xc2\x12\x46\x44\xf4\xbd\xfe\xdb\x4d\xa5\xe2\xbc\xe9\xaa\xd1\x6b\x59\x5a\xd8\x19\xcd\xd4\xa0\xeb\xc3\xe6\xc6\x74\x32\xe1\x73\x54\xb8\x47\x36\x7f\x92\xd6\x24\xd6\xa7\x0c\xd4\x34\xbd\x5f\x71\x35\x55\xd1\x14\xec\x49\x50\xd1\x80\x16\x36\xb6\xe0\xc7\x37\x68\xe1\x04\xd7\xec\x4d\x2c\x8f\x40\xc7\xff\xdf\x74\xd1\xd8\xe0\x5a\xc8\x10\xb1\x74\xbd\x4a\x35\x42\xa5\xa5\x74\x90\x7f\xef\x1e\x2d\x57\x48\x01\xaf\x23\x1a\xc6\x57\x71\x41\x0c\xb8\xa0\x53\xd5\xcd\xb2\x35\x3f\xef\x36\x64\x5a\xb6\xc5\x26\xcb\xc7\xf8\x97\x2a\x9b\x55\x3c\x19\x25\xb3\x9e\x60\xc3\x15\x0e\xa4\x85\x57\xb8\xeb\xef\x34\x85\xca\x8b\xc3\x80\x7d\xcb\x93\x76\x87\x86\x40\x21\x9a\xef\x07\x1d\x1f\x99\xa5\x7e\x02\xe7\x2b\x86\x67\x3a\x1e\xd7\x7b\x3a\x89\x7a\xaf\x16\xb2\x7d\xae\x9d\xa7\x93\x62\x38\x53\xad\x4d\xfb\x7a\xdb\x77\xa6\x4a\x94\xfe\x5a\x6d\x6f\x5c\x58\x70\xf8\x70\x77\x7d\x78\x82\xd8\x9e\xf8\x58\x61\x11\xc9\x2c\xca\x26\x45\x64\x18\x39\xe9\x3a\x51\xe5\x03\x97\x4e\xd4\x27\x95\xe6\x44\x1c\xd9\xfe\x9c\x12\x2b\xdd\xa2\xcb\x93\x32\xa1\xaa\xe3\xb2\x0e\x29\x5a\x3b\x87\x95\xf3\xc5\x85\x5a\x19\xc9\x81\x0c\x33\x2a\x66\x3c\xbf\x4f\x6c\x17\xe9\xa9\x8a\x05\xa3\x04\x65\x03\x93\x24\x15\xb3\xbc\xb7\xb4\x59\xde\x5b\xea\x6a\xe3\x74\xd5\xc6\xeb\x73\xde\xfa\xec\x88\xd2\x83\xdc\xae\xe8\x53\xd2\xf8\x74\x1e\x2e\xe5\xec\x00\x42\xe3\x44\x65\x17\xe9\xa2\x82\x8d\x0d\x02\x72\x27\x22\x8b\x51\x7e\xb1\x00\x0b\x3e\xa9\xea\x58\x51\x0a\x25\xef\x17\xdd\xb6\x84\x4b\xc7\x6a\x7c\x49\xcb\xf3\xbe\xa9\x7a\x5e\xef\xe2\x51\xf2\x5f\x35\x8a\x3d\x99\x62\x18\xdb\x22\x0a\x65\x2f\x61\xd3\x4c\x3c\x0c\x71\xd0\x54\x4a\x3b\x85\x5d\xb5\xe4\xc0\x88\x3f\x97\x1a\x11\xfd\xb9\x14\x8f\x1e\xf1\xfb\x6b\xc4\x1e\x0b\x58\x76\xc0\x88\xe5\xe3\x5a\x69\xec\xd0\x73\x6d\x3b\xb2\x19\xbf\x3c\x4c\x4d\xc0\x89\xf8\xb8\x01\x0c\xb3\xd4\x1e\x58\xd0\xce\x31\xe3\x4f\x61\x1d\xc2\xc9\x37\x70\xfb\xb2\x7f\xf9\xac\xab\x97\x99\x35\x04\x7d\x32\x38\x7d\xe1\x4f\x33\x55\x47\x66\x90\x44\xfd\x28\xb4\x49\x81\x9a\x88\x13\xc7\x2d\x3f\x2b\xa4\xc6\x96\x53\x4a\xf9\x9a\x7a\xcf\x83\x41\xbe\x47\x51\x38\x04\x88\x28\xdd\x7f\x0f\xc8\x7b\x78\x43\xd1\xe9\x2e\x29\xbd\x2b\x7e\xad\x68\x56\x3d\x5e\x43\xe7\x2d\xef\x6b\xc7\xd6\xf4\x76\x28\x0c\x5c\x51\x24\x8e\x2b\xaa\x80\x11\xa6\x49\x3f\xca\x98\x5f\x27\x2b\x53\xf9\xa7\xd2\xd9\x6e\xb0\x6d\xee\x45\xe3\x61\x31\xf4\x26\xbc\x00\x63\xa1\xb0\xc5\xc7\xaa\x43\xdb\x9d\xe4\xeb\x2d\x0a\x7d\x80\x3d\xd9\xd5\x01\xd8\x92\xcf\x6a\x14\x16\xd9\xd9\xa1\x60\xd2\xf2\x49\x18\x5b\xf8\x08\xb0\xa3\x9e\x27\x2e\x2d\x2f\x3d\x58\x5e\x83\xf3\x46\x50\x88\xa3\xc0\xd3\x4d\x3f\xa4\x2e\x9e\x80\x76\x3c\x9e\xe2\x1a\x56\x64\xb4\x6a\xfe\x5e\x93\xe8\xcf\x60\xd2\x02\xa9\x00\x17\x07\xe4\x8b\x6f\x3b\x74\x51\x37\x9e\x38\xc0\x16\x46\x03\xab\x97\xf3\x49\xad\x7d\x41\x9e\xf1\x51\xbf\x18\xd2\x3c\xc0\xd7\xc1\x75\x9f\x8f\x9b\xcd\x13\xc3\xa1\x49\xb8\x26\xdb\xe4\x9f\xd4\x00\xd5\x64\x04\x3f\x5d\x19\xa2\x20\x68\xc6\xf0\x71\x2d\x5e\x59\xde\xd7\x8e\xf2\x34\xf6\xb8\x08\x3c\x1d\x68\x6c\xf1\x71\xe0\x4b\x31\x63\x9b\xe5\x51\x5e\x88\x70\x92\x73\xe7\x3d\x20\x86\x58\x17\x3e\x36\x76\x2b\xd6\xc7\x51\x08\xc3\x25\x57\xfa\xe5\xbc\x87\x4f\x9a\x6c\x81\x8b\x49\x56\xc4\x76\xa6\x26\xa6\x8f\xe3\x8f\x94\x14\xd6\xf9\xe9\xc7\xa9\xa9\x94\xef\xaa\xb0\x59\x26\x61\x23\x46\x4c\x8b\xf0\xcd\x48\xc6\xe6\x3a\x4a\x87\xf1\xb5\xa9\x2f\xff\x92\xb3\xa3\x73\x89\x92\x8e\x84\x72\x69\x3b\x53\x7b\x71\xf2\xab\xc3\x61\xfe\xf1\xa2\x5a\x1e\x35\x12\x0e\xad\x19\xdb\x8c\x14\x65\x31\xfe\x6e\x22\xbf\x41\x94\x3c\x4b\x01\x12\x7b\x0a\x00\xa8\x06\xb4\x73\x9d\x58\x30\x3f\x5f\xee\xc1\x24\xf5\x83\x0d\x18\x11\x1b\x04\x19\xf8\x58\x69\x60\xf5\xa2\x51\x04\xa6\xc5\xac\x8f\xc7\xc0\xea\x70\xf3\xa0\x0c\xc1\xf8\x24\xd0\xad\x74\x1d\x03\x16\xbd\x67\x30\x72\x80\xfb\x66\xfb\x61\x3e\x69\x8a\x8f\xf3\x30\x8b\x46\x63\x19\x6f\x58\x33\x59\x31\x9f\x4f\x82\x9f\x54\xde\x2f\x99\x35\x31\x21\x4c\xcb\xd7\x30\xeb\x1d\x08\xb1\xa3\xf3\x31\x02\x04\x84\x11\xdf\x50\xcd\x8d\x6f\x7c\xac\xb1\xd4\x60\x98\xe6\x45\x4b\x6b\x9d\xb7\x9c\x3e\x8a\xf6\x8a\xcb\xac\xc9\xd3\x04\xed\x50\x6c\xd0\x77\x35\x3b\x17\x08\x0a\x44\x51\x30\x56\xe2\x63\x25\xbb\x17\xa6\xa3\x71\x6c\x0f\x43\x25\xda\xd5\x43\x7d\x6d\x14\xd9\xb1\xb0\x8d\x7d\x4f\x75\xaf\x0a\x8e\x2f\xab\x22\x60\x77\x12\xc5\xe5\x8a\xff\xa0\x07\x6f\x1c\x41\x65\xca\xc9\x76\xcd\x8b\x16\xfa\x31\x1d\xe6\x7d\x09\x57\x8e\x32\xec\xdb\x4a\x6a\x01\x7c\x67\xc4\x22\xdb\x34\x04\x64\xbc\xd0\x7d\x03\x94\x58\x97\xaa\x5b\x58\x20\xfd\x0f\xe9\x8e\x0a\xaa\xb3\xe5\xe8\xc7\xb7\x3c\x08\xdd\x84\x19\x6d\xa2\xb4\x32\xe1\x0a\xa0\x2d\xc2\xc7\xaa\x63\x47\xfc\x38\x13\x3f\x82\x9d\xc3\x81\xae\x1c\x91\xe2\x32\xde\x36\x12\x85\x3f\x0a\x3c\x6a\xf6\x8a\xb2\x93\xb8\x3e\x55\x95\xbe\xb7\xeb\x2c\x76\xba\xc0\xdf\x65\x16\xbb\x98\x2c\x79\x23\xa8\x93\x8a\xde\x74\x3d\x50\x95\xb2\xf7\xf0\x0c\xf9\xa4\x41\x2c\x61\x89\x80\x60\xae\x9c\xa0\xcc\xfc\xdc\x49\xf0\xb0\x32\xd5\xfe\x69\x0f\x8d\xbc\x8c\xce\x15\x33\xaf\xd8\x12\x01\x2f\x78\x17\xca\x06\x40\x70\xdc\xc2\xcc\x74\x25\xe8\xf2\xd5\x63\x98\x6c\xd1\x13\x40\x76\x33\xb3\x51\x8e\x6e\x7c\xf3\x3b\x4a\x3f\x88\x73\x6d\x64\x18\x9f\x40\xd2\xc5\x9f\xe6\x80\x12\xb1\xd9\x0d\x22\xfd\xba\x92\x68\xf9\xc8\x45\x0e\x47\xef\x7b\xad\x5f\xf9\x0d\x7e\x15\xdf\xa3\xad\x16\x4f\x7c\x0f\xe8\xf4\x08\x6e\xfe\x00\x2b\x1a\xfe\xe7\x8b\x81\xea\x54\xa1\x11\x29\xde\x25\xaa\x41\x7c\x9a\xb2\x31\x04\xb0\x37\x40\xbe\x62\xc0\x72\xa0\x04\xf7\x18\x02\x85\x84\x13\x5a\xd7\x80\x49\x5c\x70\xe1\xe7\x24\x31\xdd\x18\x9c\x42\x8c\xf5\x6f\x69\x7c\xca\x35\xa5\x84\x74\x53\x29\x3b\xe4\x69\xd7\x66\x0e\x68\xcc\x1d\x81\x4a\x77\x40\xe7\x81\x93\x71\x6c\xf7\x28\x4e\x20\x80\x33\xae\x68\x57\xbe\x38\x71\x01\xf7\x3b\xc2\xed\xa0\xbc\x43\x24\x13\x27\x74\x56\x5a\xd7\x41\x5f\x5c\x3c\xd8\x2e\xb2\x48\x96\x4c\xfc\xd9\x6b\x5a\xe9\xe3\x35\x85\x8d\x7c\xee\xe0\xa1\x96\xaa\x53\x33\x54\x5d\x4c\x6a\x1d\xc7\xcd\xc4\x71\x5a\xa8\x4e\xd3\x77\xa7\xbe\xd3\xf4\xdd\x46\x30\x45\x3e\xc9\x49\x72\xb1\xa7\xe8\xba\xdc\x6a\x12\x5c\x8b\xdf\x39\x5f\x9e\xf4\xa2\x30\x32\xd9\xba\xa6\xea\x5f\xd4\x38\xa4\x8b\xea\x19\x16\x66\x25\x4a\x06\x0f\xd1\xed\x31\x34\x18\x45\x24\x94\x48\x80\x13\x94\xbe\x1f\x06\xa9\x26\x11\xe2\x89\x9e\x0e\x54\xd5\x82\xe3\x66\xa1\x17\xd2\x4b\xe0\x3f\x43\x7c\x27\x9d\xc3\x96\xff\x15\xd5\x56\xee\x43\x77\xbe\x1c\x51\x18\x90\xb7\xa9\xa2\xc0\xc7\xba\x41\x3c\x5c\xcf\xcb\x1b\xe5\x3d\xd7\x59\xf4\x39\x54\xdc\xf1\xda\xb3\x3c\xb0\xd8\x1e\x0f\xa3\x38\xcd\xd3\xf1\x70\x5d\xd3\xfc\x02\x5f\xc8\xd2\xca\x1e\x84\xcd\x18\x91\xea\xd9\xf2\x3e\x91\xc6\x52\xc5\x37\xb6\x8d\x05\xc0\x9b\x25\xd0\xf8\x04\x0b\x85\x6b\xd8\x78\x76\x1e\xad\x13\x02\xb4\x6a\x28\x93\x85\x29\x24\x05\x5b\x3e\xd8\x02\x79\x9a\x8f\x83\x4f\xa9\xae\x65\x2c\x35\xd4\x96\xda\x26\x5b\x1d\xb5\x4d\xb6\x36\x74\x47\xfa\xe9\xfc\x67\xe8\xff\xb0\x3a\xfc\x15\x7d\x2f\x8e\xcf\xd2\xb4\x17\x83\x01\x85\x53\xbb\xc7\x02\xe7\x0e\x1f\xea\x60\x56\xb3\x1d\xb1\x50\x29\xd7\x18\x2c\x64\x33\xa4\x3b\xbe\x7d\x06\x85\x3d\x44\xa6\x27\x68\x8f\xc3\xaa\xf7\x23\x5e\xe8\xf0\xa3\x47\x31\x6e\x70\xf2\x20\x12\x31\x84\xa4\x1f\x90\xac\x06\x57\xbd\xb1\x0a\x21\x11\xfb\xf7\x81\x1f\x19\xf7\xb1\x00\xa3\xe4\x0a\x7a\x84\xd0\xc9\x68\x0d\x74\x44\xf8\xf9\xfd\x22\x59\x87\xd7\x22\xd5\x74\x0d\x46\x51\xf1\xf0\x07\x81\x02\x9c\x50\x23\xe0\xc5\xfb\xc4\x2a\x13\x05\x95\xd6\xe7\x5f\x70\xc2\xcc\x9a\x22\x91\x0c\xc0\x21\xf3\xf8\xab\xf2\x62\xa5\x3d\xb2\xb3\x87\xb2\xb4\xbc\xd4\x5e\xb1\x76\x4c\x1b\x33\x0a\xb0\xec\xfd\xce\x27\x8a\x75\xc6\xce\x44\x45\xbe\x47\xc1\x25\xa0\x49\x82\xad\xf9\x1c\x66\x2d\x9a\x09\x88\xb0\xc5\x0a\xce\x37\x19\x5a\x9d\x4a\x8f\xa2\x81\xdc\x92\x9b\x04\x45\x4b\x67\xe0\xe4\x05\x70\x7e\xa8\x38\x5f\x36\xa1\x96\x1a\x42\x84\xaf\x61\xc6\x63\x45\x05\x30\x46\x00\xd6\x2d\xe5\xb4\xea\x45\xec\xee\x20\x68\x72\x16\xac\x7e\x01\xff\x90\xae\x16\x2d\x64\x10\xf6\xc4\x1d\xcf\x5b\x86\xe7\x26\xea\x3d\xa5\xaa\xde\x67\x31\x0c\x5c\x3d\xe0\xf3\x2f\x30\xd8\xfb\x1a\x76\x2c\xd1\x1d\x53\x0e\x48\xaf\x07\xde\xb2\x1d\x0f\x0b\x83\x5d\x5b\x34\xee\xea\x78\xb5\xbf\x59\xda\xe1\xb0\xac\x70\x0c\xc0\x77\xa2\x6b\xe9\x27\xa7\xde\xd8\xeb\x06\x36\x3b\x14\x32\xd9\x89\x0a\xb9\xf0\x16\xda\x54\x2e\x3b\xf1\x46\x23\xff\x42\x47\x21\x8c\xfc\xc0\x2e\x73\xb9\xd2\x97\xde\xc6\xec\xc2\x25\x5f\xa9\x34\xc9\xe2\x38\x9d\x51\x4d\xd8\xa3\x78\xb6\xae\xf3\x70\x40\xc4\x33\xb6\x2a\x99\x84\x49\x7a\xed\x32\x64\xc1\xb2\x34\xe5\xf8\x47\x66\x2c\xdd\x2e\x4a\x1a\x5f\x9b\x2a\x3f\x37\x5c\x2d\x5a\x30\xdf\xa5\x68\x04\x21\x00\x34\xe5\xd8\xba\x01\xf7\x87\x1a\xd0\x7f\x8f\xcd\x16\xb8\xa2\xf7\x29\x66\xc1\xe3\xbd\x40\x3b\xb2\x30\x70\x68\xb6\x23\x6e\xfe\x21\x75\x3d\x70\xa3\x6f\x29\x8e\xf3\x2e\xd0\x62\x2b\x9e\xc3\x98\xc8\xf7\x02\x9f\x74\x9d\xc4\x30\x43\x7b\xe5\x8f\x69\xfc\x21\x86\x38\x36\xf5\x7c\xd1\x37\xa6\xbb\x3f\xcb\xa8\x4e\x16\xbd\xc7\x48\x7c\x0b\x50\x69\x5c\xe0\xdb\x53\xcd\x63\xfd\xb7\x78\xfe\x68\x11\x9d\x23\x73\x47\x5c\x09\x0a\x6c\xb8\xd9\x7f\x0e\xda\x05\x32\x0d\x5e\xe8\xc4\xd8\x44\x8b\x15\xd0\x1c\x76\x11\xae\x17\x38\x3b\xa6\xf2\x98\x9e\xcd\xa3\x81\x48\x4b\xa8\xb2\x8b\x38\x05\xf8\x26\x47\x2f\x4d\xba\x26\x57\x62\x73\xdc\x62\xe2\x13\xf7\x77\xab\x26\x9e\xd8\xde\x1e\xe5\x64\x88\xd2\x97\x34\x26\xe9\x97\x5c\x2b\x57\xb9\x8f\xd0\x7d\x60\xf9\x9d\xd9\xf0\x22\x32\xdf\xfb\xc9\xce\x13\x0e\xd6\x91\x17\x66\x92\x99\xa4\x60\x2c\x2b\x62\xd4\x8b\xfc\x08\x31\x3d\xb8\x08\xc4\xff\x15\x28\xcf\x90\x7a\x99\xf1\xa5\x97\xda\x5d\xa7\x79\x8d\xed\xf5\xac\x12\x65\x6b\x72\x21\x38\xd8\x5e\x33\xab\xac\x37\x00\x9c\xd1\xdb\xca\x6f\xf1\xed\xe0\x53\x4a\xc8\x60\x34\x36\x59\x41\x8a\xd4\x4a\xd6\x67\x2b\x50\x24\xf7\x2d\xb5\xc8\x17\x69\x22\xae\x2b\x62\xff\xfa\x75\x58\xde\x09\x46\x4b\x4f\xc7\x6e\x9a\x31\x7e\x07\x2f\x60\x5b\xe1\x7c\x58\xac\xc8\x89\x8b\x79\x2b\x4f\x78\x9e\x61\xe4\x61\xbf\xc3\xd8\x3e\xaa\x03\xf8\xb7\x69\x0c\xb3\xea\x73\xa0\x9a\xc7\x57\x9c\x05\xc1\x24\xb1\x87\xc7\x31\x05\x8e\xa8\xbf\x60\x17\x38\xaf\x7a\x56\x37\xf0\x95\xf8\xfe\xf7\xa7\x7e\xc3\xb1\xfd\xbe\x0d\x8b\x68\xd5\x3e\xec\xb9\x7b\x7f\x82\x3f\x76\x68\x1c\x2f\x76\x7b\x67\xaa\xc4\x6e\xef\x60\x61\x60\xb5\xe6\xc0\x53\x16\x58\xa9\xcb\xc9\x38\x7b\x6e\xca\x37\xca\xbb\xdc\xbe\x1c\x28\xb9\x94\x6d\x8c\x41\x6e\x7e\x69\xfb\x86\x32\x3c\x9a\x55\x65\x23\xb6\xc6\x68\x82\x41\xfa\x32\xe5\x55\x85\xf6\xb2\x87\xc7\x36\xc9\x6d\x8e\xa8\x17\x0b\xd8\x47\xf4\x50\x04\xbd\x5e\x7e\x4e\x7c\x8e\xb4\xac\xdf\x54\x79\xac\x5e\x53\x74\x3a\xb6\x0c\xc6\x80\xfc\xf1\xb4\xa2\x4a\x47\xcb\x19\xff\x99\xf2\xbb\x79\x5f\x99\x28\xe6\x85\x1d\xcd\x78\x3e\xf6\x96\x02\xd8\x71\x79\x95\xd5\xcd\x94\xc2\x71\x6c\x26\x3d\x50\x54\x5e\x74\xcd\x9a\x96\x73\xd7\xda\x4d\xa0\x3f\xbc\x29\x76\x1e\x93\x98\x4f\x5a\x60\xb6\x18\xae\xc7\x36\xe1\x59\x22\x9a\x32\x3e\x15\xd1\x96\x19\xb1\x35\x3d\x16\x24\x73\xf2\xfb\x3b\x4d\x0a\xb0\x5d\x1c\x2b\x53\x6c\x9a\x8d\x65\xe6\xf2\xb3\xbe\xe2\x78\x3d\xa8\xec\x74\xe5\x76\x23\x2e\x22\xd8\x6e\xdc\x62\xee\x53\x89\xbb\x18\x10\x78\x43\x5c\x84\x43\xc2\xd3\x82\xb7\x0f\x7e\xff\x1a\x05\x8b\x40\x0d\xfd\x19\x2d\xf3\x2e\xf7\xf7\x9a\x73\xd7\x91\x7c\x20\xb4\x40\xc6\x8a\x19\x7b\x1b\xab\x39\x56\xed\xf7\x54\x99\xf7\x04\x22\x06\xec\xda\x57\xb1\x1d\x20\xa0\x3f\xab\xd9\x93\xff\x0a\x6f\x18\x7d\x86\xdf\xa7\xe5\x9c\xed\xe4\x03\x67\x1d\xf5\x2f\x5e\xa7\xfd\x11\x75\x03\x49\xf6\xf1\x5d\x0f\x6f\xa8\x8e\x27\x9b\xfb\xa0\xb6\xb6\x4d\x03\x0c\x29\xfa\x77\xa6\x1e\x64\x08\x65\x27\x26\x08\x53\xd8\xce\x3b\xb5\xea\x3f\xe7\x93\x6c\x35\x5a\x85\x84\x07\xcb\xae\x4f\x77\x52\xd9\xb1\xc0\xbc\x3a\x55\x1a\x54\x5a\x2e\xf2\x96\x4e\x5f\x4f\x2b\xd4\x5e\x6e\x38\xad\x47\x26\x8f\xe2\x9b\x94\x03\x7d\x55\xe1\x5c\x93\xaa\xc0\xc0\x26\x36\x33\xb1\x26\x5c\xd3\x47\x7c\xef\xca\xe7\x5e\xe9\x78\xaf\x2e\x3a\xea\xc4\xe1\x87\x53\x45\x99\x9c\xfa\x9b\x39\x13\x68\x38\xb2\x5a\x46\x99\xaf\xc6\x85\x08\xdc\x19\x20\x72\xc7\x1d\x58\x8f\xea\xb2\x64\x50\x44\x69\x36\x46\xdd\x5f\xd3\xa3\xe2\x63\x85\xea\xea\xc6\x66\x44\x6c\x56\x4f\x30\x56\x60\x02\x50\xf5\x90\x8c\x5c\x53\x72\xf0\x66\x02\x25\x9c\x3d\xd5\x67\xee\x00\x11\x70\x05\x71\x6a\xed\xe5\xe0\xc7\x10\x87\xb5\x28\x56\xa1\xff\x0b\x31\x95\x2c\xe6\x3b\xdd\x5c\xe6\xe7\xb1\xc0\xf5\xa2\x62\x92\xd9\x5c\x77\xce\xee\x04\x8a\xa7\x0f\x2c\xbe\x80\x79\x3e\x8e\xa1\x20\xc2\x31\xb3\xbe\x63\x06\x08\xb9\x7e\x7b\xe2\x42\xab\x92\x85\x93\x81\x97\x71\x19\xaf\xe7\xaf\xac\x44\x76\x2d\x0a\x5f\xa1\xdc\x42\x41\xf7\x44\xe7\xed\x5c\x43\x3d\xef\x20\xd9\xcc\xe4\xbc\x40\x49\x11\xaa\xfc\x6d\x61\xd0\xeb\xb2\x51\xbf\x58\x33\x19\xfa\x58\xd8\x40\xb8\x8a\xce\x27\x8a\x36\x30\x4a\x8b\x68\x15\xea\x11\x58\x79\x9c\x4d\xb6\xef\x7b\x9d\x56\x28\xd8\x9e\xed\xdb\xa4\x47\xf1\x8c\x2f\xd0\x9e\x55\x71\xe6\x59\xba\x28\x49\x46\x1c\x46\xe9\xdd\xb3\x4a\xf7\x33\xed\xf5\x66\x31\x82\x25\xd6\xd4\x86\x89\x2d\xa7\xfa\xbe\xa9\x69\x46\x37\x9b\x3c\x6b\x4c\x9c\x82\x5e\xef\x85\xd4\xcb\xaf\x42\x97\x19\x90\x7e\xb7\x14\x1e\x58\x74\xe0\xa2\xba\xd2\xf2\xfe\x76\x3e\xce\xca\x85\xbd\xa5\x70\xb5\x3c\x83\x3e\x4e\x77\x7a\xe9\xb9\x83\xed\x38\x1d\xa4\x4a\x11\x8e\x11\x16\x62\xd7\xe2\xfb\xe6\x24\xdf\xd0\x53\x90\xd2\xa3\x0a\x14\xc8\x55\x22\x8c\x1c\xce\x4b\x11\x6f\xde\xa5\x7a\x8f\x74\x83\xfd\xeb\xbe\xdf\x08\x42\x3c\x1c\xe5\xcc\xbf\xc7\x05\xdc\xd0\xf4\x2a\x54\x2b\x98\xc4\xec\x2b\xe2\x13\xd2\x8a\x90\xa0\x08\x69\xc7\x1f\xa9\x6e\x2c\x97\xb3\xf0\x1f\x67\xa7\x4f\x55\x3b\xa0\x8b\x8b\x4b\xe5\xc3\x7b\x9c\x2e\x19\xa3\xeb\xef\xf1\xd0\x78\x5e\xe1\xd3\xb8\xfe\x19\x64\x7e\x08\xe9\xcf\x29\x05\x97\xbf\x09\xfc\xcb\x39\xad\x98\x36\x37\xa9\xf6\xcb\xb9\x0c\xc2\x0d\xdc\xfe\x77\xf1\xc0\x50\xd3\xd8\x8d\xa2\x34\xae\xf0\x56\xe0\xcd\x9d\x5e\x9a\x56\xcc\x35\x68\x06\x60\x64\xbc\xc3\xbb\x8e\xf0\x12\xcb\x07\x8b\xbd\xfc\x1e\xf6\x39\xac\x27\xa7\x9b\x08\x30\x79\x61\x92\x9e\xc9\x7a\x14\xa3\x20\xf8\x07\x32\x00\x2b\xdc\x7d\xad\xa1\x79\x5a\xc5\x35\x43\x93\xa0\xc7\xc5\x96\xfa\x53\xdd\xf8\xf3\xa8\xd4\xad\xa9\xaf\x80\x5c\x9c\xfa\x89\x3a\xb4\xa3\x28\x1f\x0f\x6d\x86\x05\x19\x71\x13\x87\x01\x7c\xd2\xa9\xd3\xf1\xf7\x83\x48\x11\x75\x27\x0e\x40\xb3\x4d\xee\xdc\xdb\x97\x95\x7b\xfd\x38\x4b\x73\xb2\xa3\x4b\x93\x19\xda\xbf\xa5\xfe\xa0\x40\x66\xa7\x69\x4c\xf0\x2b\xae\xf5\x60\xca\x05\xaa\x97\x99\xb5\xa4\xa5\x29\xe5\xf4\x58\xa4\xfa\x51\xff\x48\xbb\x1b\x79\x99\x71\x27\x7d\xa0\x54\xab\x1a\x74\x57\xd3\x6c\xc5\x82\x7f\x21\x7a\xa8\x5a\x1c\xb5\x66\xfd\xbe\xb0\xd0\x8e\x92\x95\x96\x02\xe9\x6f\xea\x95\x5e\xd5\xda\x0d\x05\xf8\x0c\xae\x91\xfa\x5e\x55\xb0\xaa\xbc\x33\x0e\xb2\xe8\x61\x88\x09\x1c\x0d\x71\xd1\x7a\xdb\x09\xe8\xec\x61\x42\x56\x0c\xb9\x30\x03\x3e\xc0\xdc\x40\x25\xf5\x0d\x35\x52\x40\xa5\x13\xd9\xab\x7f\x0d\xe3\x6f\xf1\x5e\x56\x80\xa4\xed\x06\xc1\x8f\xc5\xf6\x38\xb6\x49\x54\x4c\x7a\x55\xe5\x54\xfa\x98\x48\xa7\x0a\xe0\x6e\x1c\x9b\xa4\x98\xd5\x9c\x8a\x63\xca\xe0\xaf\xa5\x24\x3f\x58\x9d\x04\x20\x70\x4f\xf3\x2d\x07\x57\x94\x4c\x9c\xc4\x09\x20\x46\x8f\x76\x14\xf7\x4e\x69\xf0\x7c\x06\x5f\x22\x91\x66\x03\x29\x39\x2f\x4c\xe6\x30\x00\x82\xec\x55\x02\x20\x9b\x81\x77\x94\x4b\xc2\x74\x14\x15\x26\x81\x7f\x27\xdb\xd3\x07\x9e\x8a\xf7\xda\xd4\xa3\xc2\xc6\x65\xde\xb7\x66\xbb\x5d\xd2\x97\x10\x4a\xfe\x1d\x45\xbd\xbf\xd3\x54\x1f\x37\x85\xc7\x69\xaa\x8d\x4c\x99\xb2\x9f\x55\x26\x30\x7d\xb3\x9a\x66\x51\xc1\x7c\x2a\xdc\xf2\xd1\xa9\xd2\x35\x39\xaa\x87\x5b\x94\xc5\x51\x62\xf3\xbd\x3e\xc7\xb8\x82\xf1\x20\xbe\x76\x33\xde\x32\x1d\x40\x1a\xe9\xb8\x7b\x74\x0a\x13\xc5\x05\x54\x44\xd7\xc5\x21\x6a\xa0\xbc\x2c\xbc\x1c\xcd\x24\x1b\xb3\x55\xa5\xe0\x23\xdf\xc5\xef\xf0\x89\xf3\x17\xcb\x87\xeb\x33\x0a\x0a\xc4\x7a\xee\xc8\x51\xbe\x4c\x2b\x14\x4b\xd4\x2b\xd0\xcd\x4a\x14\xc7\xb3\xbe\x57\xfc\x1e\x2d\xde\x18\x05\x1b\x58\x55\x31\xae\xde\x99\xfa\x88\x72\xb3\x91\xb7\xca\x02\x22\x55\xc7\xdd\x1f\x06\xca\x71\xf7\x87\xaa\x11\x4d\x8d\x6d\x82\x1b\x78\x8d\xbd\xd3\x1c\x21\xf3\x59\x2d\x2e\x5c\x58\x58\xc6\xe7\xa2\xd0\x83\x4e\xc4\x45\xd8\xc3\xe8\xfe\xa4\x01\x39\xb0\xd4\x5e\x23\x40\x6b\x5e\xe1\xc1\xdf\xd1\x3c\xf8\x3b\x4d\x2b\xd7\x4a\x92\xae\x31\xff\x53\xaa\xb3\xf4\xab\x52\xfb\x6c\xb0\x1d\x36\x49\x34\x32\x31\xd2\x5a\x31\xa2\xa1\xb7\xe2\x1c\x5c\xdc\x0c\xdf\xdb\xf1\x3c\x90\xad\x06\x53\x84\xfd\xed\x98\x39\xa5\xee\x25\x3a\x77\xdc\x7b\xca\xdb\xef\xa3\x9a\xc9\x08\x29\x0f\xd9\x70\x98\x80\x1b\xdf\x52\x32\x12\x0a\x69\xa7\x1d\x64\x4c\x01\xda\x0d\x12\x8c\x57\x11\x7a\x3a\x83\xa6\x03\x8b\x0e\x7a\xad\x2c\x3f\x6c\x6c\x0f\xf3\xcc\x01\x6f\x0b\xd5\x21\x3e\x56\x81\x54\x37\x1a\x0c\x6c\x46\x6e\xdb\xf8\xfe\xb7\xe9\x4e\xb0\x91\xfe\x39\x05\xa2\x08\xb0\xee\xa3\xe0\xcd\x27\xda\xff\xf2\xf5\x5a\x6b\x73\xff\xa1\xf6\xd8\x14\xe2\xc3\xa2\xd8\x3c\x0a\x39\xec\x88\xb4\xff\x4e\x99\x01\xd9\xc3\xe3\x0c\xce\xf3\xac\x4e\xc2\xf6\x05\x4a\x61\xfb\x76\x8d\x90\xb7\xb4\xbc\xd4\x4e\xc7\xc4\x93\xe7\x01\x21\xdb\x51\xb9\x36\xc9\x36\xa5\x6b\xd2\x99\x5d\x7b\xa8\xe5\xbc\x52\xb8\x34\x84\x2c\xf9\x76\xd5\xc7\x4a\x51\xee\x7e\x6f\xaa\xf0\x37\x17\x95\xbc\xc0\x4d\x5a\x42\x70\x97\x5c\x3c\xf6\x4e\x29\xb2\x3e\xdf\xa7\x15\x04\x91\xe7\xad\xe0\x29\x0d\xde\x23\x3b\x6d\x08\xce\x39\xae\x30\xc2\x76\x29\x35\xed\x7c\xbe\x9f\x6b\xaf\x46\x69\x4c\x78\x2d\x35\xf5\x5b\xca\xe7\xa6\x8a\x53\x31\x21\xfe\x12\x31\xdd\x7d\xfa\x4b\x3e\x76\x25\x9b\x74\x25\x36\xc3\x74\x64\x18\x5b\x8c\x35\x14\x3d\x0b\x04\x89\xb7\xf0\x02\xc5\xcf\xc5\x0f\xb6\x71\x9a\xac\x3b\x7f\x6e\x3c\x9e\x8f\x10\x29\xf3\x89\xea\x7a\xae\xda\x81\x2d\x8c\xa8\xc3\x33\x42\x58\x41\x7b\xb6\x14\x14\x3b\xb3\xbd\x49\x68\x29\x4f\x47\x32\x72\x8e\x57\x21\xd4\xef\x61\x9e\x81\xb6\x02\x33\x72\xf0\x0e\xee\xa3\x9c\xc2\x27\x2a\x2e\xfc\xf3\xa9\xaa\xa4\xf1\x56\x82\xcf\xbf\xa5\xb2\xef\x34\xee\xd9\xbc\x98\xa5\xef\x40\xa7\x03\xf9\x98\xcb\xa1\xca\x5f\xe2\xff\xd0\xe3\x63\x33\xa8\xe8\xf6\xa5\xc9\xa0\xdc\x1d\x17\x16\x74\xc1\xc8\xcb\xb7\x3e\xa5\x38\x5c\x79\x18\xd9\xa4\x88\xfa\x51\xd8\x52\x35\xa9\xe3\x6a\x5d\x3f\xae\xbe\x3b\x34\xe3\x32\xf9\x06\xeb\x4b\xcc\x23\x95\x90\xc1\x19\x25\xfc\x78\xaa\x46\x36\x98\x9f\x6f\x8f\xec\x28\xcd\xca\xa0\x1b\x45\x37\xb4\x4c\xee\x51\xd5\x8c\x3d\x79\x94\x73\xc8\x2d\x35\x3b\xbb\x59\x6a\x7a\xa1\xc9\x0b\xee\x20\x0b\x14\x51\xd5\xce\xce\x37\x25\x52\x45\x66\xc2\x15\x0a\x32\xb5\x70\xb2\x88\x9f\xf9\x12\x49\xbf\x4f\x06\xe2\xb0\x8b\x43\x84\xf7\x60\xc7\xd7\x59\x18\xe5\x8f\xad\xe4\x6e\x23\x8d\xa2\x67\xc4\x2b\xbe\x5c\x9e\xc4\xc7\xda\x57\x5f\xef\x38\x9e\x0d\xb9\xb3\x46\x55\x90\xd3\x59\x05\x72\x3a\xab\x41\xda\x71\xc8\x36\x7c\x32\xb1\x15\x9a\x5b\x03\xc0\xd3\x35\x0c\x57\x16\xc7\xe1\xe1\x8a\x50\xf6\x84\x26\x63\x72\xef\x0c\x93\x0c\xf7\xe8\xea\xe7\xae\xa3\xba\x39\x55\x4a\x80\x17\xb4\x04\xf2\x09\x85\xf8\x1b\x97\xeb\xe5\x88\x64\xef\xcb\x15\x06\x29\xd8\x6d\xc5\x11\xfb\xcb\xa9\xf7\xd9\xfe\xa8\x89\x51\x10\xda\xc4\x2a\xed\xfb\x63\x81\xe7\x74\xbf\xa5\xcb\xbb\xdf\xae\xc5\xc7\x65\x70\x11\x9a\xa4\x17\xf5\x44\x67\x42\xc2\x98\x96\xb3\x51\x6a\x76\xdd\x19\x95\x57\x6d\xb4\x35\x0c\x0f\x23\x3e\xa9\xf1\xe0\xca\xcc\xc3\x2d\x4e\x1a\x69\x0d\x1c\xc0\xdb\x53\xd5\xa7\xbb\xa2\xec\x0d\x63\x53\x44\x49\xcb\xcf\x5f\x76\x6e\x90\x6a\x67\xbd\x4d\x7d\xb0\x9d\x4d\xa0\xbc\x01\x50\xc4\x15\xec\x7b\x78\x6f\x57\x34\xa4\xe7\x7f\x6c\xc8\xc1\x96\x48\xb2\x25\x46\xb0\x27\x54\x48\x0f\x69\xdc\xc0\x65\xa2\xbf\x7b\x42\x4d\xea\xb1\xed\xf5\x62\x21\x30\x89\x86\x51\xcb\xc9\xf6\x7d\x4b\x2d\xe8\x45\x3a\x09\x87\x4c\xff\x61\x55\x5b\x54\x99\x45\xe2\x56\x99\xf8\x8f\x4d\x16\x62\x23\x45\x58\x73\x0e\x41\x1f\x9f\xd4\xe2\x9a\xf9\xf9\xb6\x35\x79\xa1\xc2\x86\x13\x81\xe2\x7e\x9f\xa8\xc5\x7d\x44\x8c\x32\x61\x68\xc7\xbc\xa8\x3b\xa3\xbb\x0b\x81\x86\x12\x37\x50\xdc\xc7\x69\x94\xa7\xde\x52\xdc\xd9\xc9\x39\xa1\xd3\xef\xe8\x35\xcf\xc6\xd1\x88\xfb\x09\x8b\x2e\xe3\xf6\xe1\x7f\x91\x45\x71\x1c\xa5\xc9\x1c\x3d\x77\xde\x1f\x74\xa3\xf1\x41\x2a\x09\xa0\x22\x04\x34\xa6\xcb\xa9\x3f\xff\x82\x13\xa0\x68\x58\xbb\x5e\x36\x89\xc5\x03\xa9\xa8\x68\x0b\xc8\xa6\x16\x8b\x3c\x77\xb0\x4c\xff\xc7\x69\x2e\x25\x20\x44\x55\x44\xae\xdf\x66\x86\xaf\x84\x86\x7e\xe1\x48\x12\x43\x2e\x12\xf8\xda\x0f\xb9\x9c\xa2\x6c\x57\x3d\xe4\xd0\xb3\x69\xce\xeb\xc1\x34\xdb\x51\x66\x5f\xd1\x78\xa6\x35\x3f\xef\x3f\xe2\x78\x16\xf7\x83\x8a\xe4\x9d\x24\x32\x83\x68\x34\x8a\x42\x36\x48\x00\x27\xea\x35\xfa\x14\x62\xa2\x6b\x14\x65\x0a\xb9\x53\x49\x4d\x82\xd2\x41\xf1\xa8\xd3\x8a\x3c\xb0\xe8\x94\x1f\xa5\xac\x9f\x26\x36\xea\x99\x56\xeb\xd7\xa4\x26\x77\x4e\xfb\xf0\xd5\xcb\xb3\x65\x78\x6d\xd8\x25\xd5\xa1\x7b\x8e\xe9\x46\x90\x7a\x74\xbf\x7e\xf0\x00\xcc\xe5\xe5\xfa\xca\x8f\x48\x63\xa1\xe5\xb4\x5f\xff\x5e\x47\xd7\xf7\x9c\x39\x4c\x3e\x61\x88\x97\x76\x64\x94\x86\x41\x13\x0c\x14\xc2\x02\x34\xf9\x58\x1f\xa0\x2a\x16\xe0\x76\x33\x31\xb5\xe4\x0a\x68\x53\x90\xe6\x4b\x14\x7d\x93\x17\x73\xde\x72\xe0\x9a\x22\xd3\x5d\x9b\xaa\xbd\xec\x26\x7d\x5e\x6a\x17\xe5\xdd\x31\xfd\x56\xc5\xfe\x3d\x3b\x4e\xf3\xa8\xd0\x5e\x57\xdc\xa1\xe0\x93\x26\x41\xa4\xdc\xc6\x7e\xdf\x14\x3d\x37\xbf\xc7\x5f\x6b\x32\xf9\xb0\x87\x0d\xf4\x49\x17\x2b\xd1\x22\x26\xdc\x3b\x8a\xfc\x74\xb9\xd2\xb7\x36\x59\xf1\x84\x77\x81\xbf\x1e\xf8\x36\xc7\x7d\xe5\x24\x7f\x66\xaa\x10\x5b\xdf\x0f\x94\x12\xc4\xad\x40\x37\xfb\x3f\xc4\x0e\x85\x19\xf1\xa7\x08\xce\x50\x82\xd8\x45\x7d\x38\x8c\x84\x59\x12\xf1\xc6\xe6\xf9\x6a\xe0\x99\xd8\x4f\x01\x28\xcb\x1f\xd8\xf0\x73\x8b\x91\xb9\xa8\x11\xbc\x41\x09\xc2\xf6\xe5\x32\x9c\xdf\x66\x38\xaf\xd3\xe7\x2d\x6f\x1f\x0f\xe9\x75\x17\x4b\x8f\x26\xc2\x2f\xf0\xfd\x62\x25\x04\x54\xd7\xeb\x3c\xb0\x28\x12\x6f\x2d\x9f\x77\xfe\x85\x6e\x62\xfc\x85\xab\x3a\x84\x59\x94\x0c\x24\xc7\x16\xa6\x99\x32\x51\x3c\xe5\xfd\x5d\xd2\xd8\x20\x04\x65\x5d\x76\xba\x06\xd1\x68\xff\x84\x6f\x87\x4d\x92\x19\x9a\xc4\xfc\xea\x94\x1f\xca\xeb\x81\xe7\x99\x9c\x6e\xde\xff\x53\x13\x47\x2e\x7b\x11\xbb\x6b\xba\x72\xf1\xc1\x6e\x12\x1f\x8f\x8a\x72\x13\x9b\x51\x08\xff\x3b\x15\xd5\x70\xba\x21\xe9\x88\x2a\x97\x95\xd0\x26\x26\x8b\x52\x45\xf4\x65\xba\x89\x4c\x0a\xdf\xe5\x0b\xe3\x49\x77\x56\xa9\xac\x41\x19\x02\x51\x1b\xc8\x7d\xe8\x65\xbc\x81\x2f\x60\x01\x05\xd5\xe8\xcc\x52\x9a\x14\x0f\x28\x1a\xff\x39\xca\x29\xd1\x07\x87\xcd\xb0\x23\x5e\x96\xa3\x02\x2b\xda\x6f\xd1\xd8\x07\x1e\xf6\x0f\xe8\x01\xf2\x07\xb4\x39\xcd\x89\xda\x94\x82\x26\xfb\x2a\xc0\xf4\x08\xec\xbf\xa4\xb0\x28\x5f\x6a\x32\xc1\x2a\x86\x59\x3a\x19\x0c\x15\xcc\xef\x96\x52\xbb\xbd\x55\xab\xb7\x1c\x7a\x8e\x89\x0b\x05\x7e\x06\x9b\xc7\x96\x12\xb8\xdb\x6a\xf4\xae\xcf\xcc\x3a\x2c\x8f\x97\x38\x71\x7c\x73\xea\x93\xc8\x37\x15\xfe\xa1\x1c\xc6\x65\x8a\xf0\x00\xbd\x59\xbc\xc0\xaf\xa0\x64\xc1\x34\x3e\xba\x3e\x47\xe9\xf3\x26\xca\xef\xe8\xa2\x2a\x8c\xe7\x65\x29\x51\x83\xe1\x2b\xaa\x8d\xfb\xb2\x09\x57\x00\xd6\x60\x25\x0f\xfc\x21\x67\xe5\x41\x25\x43\x5f\x58\x70\x72\x1f\x1f\xc7\x65\x1a\x4d\x92\x28\x8c\xc6\x06\x55\x37\x2c\x16\x97\xa7\x33\x07\xff\xeb\x2f\x78\xaf\x51\xaf\x3e\xfe\x57\xf4\x9d\xa2\xb8\xe9\x97\x5f\xbb\x6a\xc5\x94\xfb\x45\xcd\xb5\x3e\x28\x27\x18\x29\x0e\x1a\x5a\xa6\x1f\x22\x60\xe6\x53\x0e\x60\xa8\x54\x75\xe8\x46\xe0\x5b\xd9\x37\xd4\xf6\x37\x89\x2b\xba\xa4\xa0\x5e\xf3\xf1\x46\x7d\xd1\x5e\x6a\x0f\xd2\x14\xad\x65\x4c\x70\xd6\x37\x00\x84\x15\x82\x21\xd2\x38\xf2\x15\xa8\xec\xe5\x6c\x56\xbd\x7b\x60\x8e\xf9\x38\xf0\xcd\xdb\xb3\x3a\x5b\x38\x5b\x2b\x45\x3a\x1f\xec\x74\x92\xf4\x66\x3c\x25\xe9\x88\x72\xf6\xc5\x5b\x13\xee\x57\x93\xf4\x59\x94\x85\x93\x11\x35\xd9\x5a\x3e\x62\x42\xae\x2c\xb6\x95\x4f\xa8\xe2\x47\x36\x4e\x33\x53\x90\x2f\xe2\xb3\x02\xfc\x0b\x2a\x0a\xad\x15\x4d\xdd\x72\x76\x63\xcf\xf9\x11\x96\x76\xc4\xfd\xac\xfa\x28\x42\xae\x1e\x79\xf2\x23\x25\x65\x8f\x67\x8f\xdc\xe4\xfb\x54\xad\x95\x46\xe3\xe3\xca\x3f\xa9\x30\xe3\x49\x5c\xb4\x14\x33\x0a\x41\x87\xb0\x7c\x1a\x81\xb3\x7d\xab\xcc\x02\x6e\x2b\xb3\x80\xdb\x6a\x28\xfc\x82\xc1\x80\x41\x89\xed\x56\xe0\x61\x02\xb7\x1a\x33\x95\xc2\xeb\x5e\x6b\xc3\x7a\x11\x4b\x79\xcc\x81\x32\xc2\x49\x96\xb9\xe0\x00\xeb\x2c\x58\x4c\x7c\xbc\xe1\x0d\x49\x47\x61\xca\x39\x9a\xd0\xff\xe8\xfb\x65\x78\x29\xd2\xee\xd5\xda\x9d\x3e\xbf\xaf\xdc\xb1\x52\x6a\xea\x61\x95\xbe\x1b\x28\x25\x91\xef\x28\x57\xd6\x2d\x05\x38\xf9\xd3\x46\x71\xf7\x95\x28\x76\xaa\x7a\x4e\xa3\xb8\x7c\xe6\x7c\xd2\xc8\x85\x30\x45\x41\xad\x1e\x9e\x52\xb8\x88\x7f\x1a\xf8\x0b\xfa\xa7\xea\x71\x5b\x5b\xec\xd5\xe9\xe8\x07\xca\xee\xff\x31\x52\xa8\x72\x76\x6f\x65\x24\xc3\x65\xc0\xa9\x67\x96\x5d\xd3\x62\x57\x2d\x34\x73\x10\x14\x7d\x40\x05\x27\x71\xfd\xf1\x68\x01\x6f\xee\x36\xa3\xd0\x6c\x15\x99\xb3\xbf\x54\x11\xec\x69\xb5\x97\x15\x59\x34\x1a\xd9\xde\x2c\x2d\x3e\x8e\xb7\x51\x2e\x3e\xc2\xdb\x28\xef\x12\x51\xcd\x16\xed\x59\x7c\xac\xee\x38\xcb\xcc\x8c\x42\x1e\x5f\xe3\x40\x0c\x49\x1e\x66\x31\xe0\xcd\x27\x15\x38\xa1\x9f\x66\x9f\xd1\x5a\x26\x47\xb0\xe4\x61\xcf\x67\x0d\x19\xc7\xda\x50\x4a\xa6\xe5\xe5\x20\x16\x7b\x17\xf5\x3c\x21\x61\xd0\x1d\x60\xcb\xf8\xef\xa6\x4a\x80\xe1\x07\x1a\xdd\xf0\x01\x61\xa5\xf8\xaf\x18\x73\x2c\xb3\x97\x86\x01\xfe\x8b\x9d\x5e\x5c\xed\xe5\x05\x11\xc7\xbc\x13\x28\x41\xea\xcb\x08\x2b\x55\x49\xe4\x59\xde\xa6\xb6\xd0\x05\x47\x1d\xf9\x1d\x42\x4d\x22\x20\xbf\x0e\xb8\xaf\xc0\x53\xcb\xd7\xa9\xb3\x31\x74\xda\x6f\x53\xf2\x89\x81\xf1\x3e\x81\xad\xc4\xc5\x91\xba\xc6\x7c\xf7\xb4\x5f\x62\x1f\xbb\xae\xca\x94\x26\x8e\x6c\x92\xcf\x96\x3f\x89\x9a\xfc\x45\x5d\xa0\xbf\xa8\x58\x6f\xbc\x2d\xca\x5f\xed\x5c\x0a\x9e\x7e\xba\xdd\x4b\x93\x89\x24\x2a\x78\xfe\x67\xb5\x9a\xdd\x59\xd5\x68\x1b\x46\xf9\xd8\x24\x51\xc8\xb3\x9c\x6f\x04\xef\x01\xe1\xd4\x2e\x6d\x38\x71\x44\xc1\x3e\x0b\x9b\x98\x30\x22\xa5\x69\x97\xd5\x01\xc2\x29\x18\x72\x05\xa3\x2c\x63\xca\x5c\x34\xca\xb1\x8a\x9d\x56\xb0\x80\xd3\xda\xd3\x3e\x0d\x4d\x4c\xdf\x89\xa8\xa2\xd5\xf1\x11\x46\xcb\xad\x4d\xfd\x28\xb6\x39\x42\x39\x31\xf8\x68\x3d\xbf\x8f\xd5\xe1\x50\xd0\xe1\x40\xc3\x55\x97\x1c\x2e\xe0\xcd\xa9\xb2\x0e\xfc\x28\x50\x44\xfb\x8f\x6a\x15\x80\xf9\xfd\xed\x7e\x1a\xc7\xe9\x9a\xb3\x85\x61\x25\xf4\x40\xf1\xab\x54\xa2\xf4\x9a\x4a\xdd\xa2\x24\x2a\x22\x74\xa8\x9e\x75\x15\x5c\x7a\x02\x28\x4a\x02\x56\xc5\xff\x11\x78\xc6\xe3\xcf\x9d\x44\xbb\x5b\x84\x7a\x45\xbc\x5a\xe8\xbf\x8a\x1b\x57\xa5\xf9\xae\xf5\xd6\xb1\xaa\x37\xd9\x87\x7a\xb2\x5d\x37\xcd\x10\xde\x4b\x06\xd6\x72\x62\xfe\xb7\x5c\x8f\xb3\xb0\xc9\x6c\x39\xe9\x50\xc1\x7b\x8c\x8a\x9a\x8e\xc8\xeb\x65\x67\x67\x48\x40\x50\xc4\xfb\xea\x16\xfc\xae\x37\x16\x49\x37\x07\x75\xad\x77\x31\xc6\xf8\xa4\x22\x51\x12\xda\x71\x11\xad\x92\x27\x87\xfb\x4d\xf0\x57\xf8\xb8\xc9\x96\xb8\xfc\x9c\x89\x63\xfe\x0d\x27\xb1\xa8\x1d\x8f\x75\xd6\x1a\x16\x29\x42\x20\x11\x04\x29\xa7\x2e\x46\x07\xc6\x1b\x5a\xcb\x47\x2b\x5c\xb8\xca\x37\x24\xa1\xfd\x4c\x39\x48\x71\xeb\xdb\x34\xdf\x91\x8b\x21\x7a\xc1\xaf\xee\xa1\x8d\x55\x54\x3d\x09\xfc\x8d\x6f\xbe\xaf\x25\x23\x08\x49\x75\x70\x7b\x43\x23\x4a\xee\x53\xf0\x82\x61\xf9\xc0\x06\xad\x4b\x12\x47\xa9\xe0\xe5\x14\xad\x39\xd2\xd7\xa0\x45\x0a\x33\xe5\xea\x54\xa5\x51\x20\x83\x62\x9b\xfa\x0a\xaa\x8b\x8c\xcc\x0e\xd4\x5a\xb2\x9b\x58\x2c\xac\x09\x4e\x7b\x06\x7a\x09\xbb\x36\x30\xfc\x44\xce\x87\x4c\xbb\xf0\x67\xf7\xb0\x7c\xe3\x19\xc0\x1c\x00\xf7\xfd\x40\x47\xd9\x21\xec\x65\x7d\x09\xe6\x34\x60\x91\x46\x05\xe4\xd4\xf4\x63\xa5\x08\xb2\x49\x5e\x94\x01\x5f\x4b\xad\x89\xb8\xa9\x8f\x5b\xfa\xca\x61\x30\x4c\xc7\x32\xd0\x00\xb3\xdd\xc6\x2d\xf2\xc9\xf4\xd3\x55\x84\x56\x19\x42\x97\x37\xf7\x50\xf9\xb0\x25\x49\x53\xcd\xae\xbf\xc2\x8e\x86\x27\x3f\xd7\x51\x3d\xb1\xbf\xd2\xbe\xd2\xf4\x7c\x99\x3e\x4a\x5b\x1d\xde\xf8\x25\xac\x40\x28\x3b\xec\xdd\xa8\xa4\xee\x07\x3c\x74\x48\x66\xa6\x1d\x0d\x4d\x56\xf0\x52\x8c\x48\xf5\x64\x05\x25\xab\x0a\x08\x5b\xae\x34\xd5\x9d\x64\x03\x4b\xa5\x57\xac\x4f\xd8\xb1\xa0\x49\x80\xad\xf4\x23\xd5\x7a\x3a\xaf\x02\x80\xa2\xb0\x0f\x79\x1a\x12\xd3\xfb\x11\x27\xb0\x9d\xba\x20\xb8\xbd\xc6\xfc\xa6\xb2\xfa\x7e\x84\xc2\x22\xd7\x5b\x2d\x9f\x9a\xe0\xb4\xcb\x1f\xc4\x40\x64\xda\x93\xd2\xbf\x59\x62\x88\xe9\xa3\xaa\xe9\x98\x17\x99\xb5\xce\x1e\xd7\x19\x06\x96\x7f\x2c\x86\x81\x1f\xa7\x4a\xd2\xb5\x65\x92\x3a\xe3\xf1\x96\x7b\x3b\xbe\x4e\x73\x4d\x0b\x30\x6d\x6b\x4d\xa7\x24\xb4\xd9\x3a\xff\x1e\xe6\xd2\xef\xea\x32\xe6\xef\x2a\x1b\x42\xd2\xa5\x60\x24\x0d\xc6\xd1\x8f\x68\xc9\xe4\x63\x55\x7a\x89\x42\xa6\x1b\x38\x72\x4c\xf9\x48\xf9\x04\x43\xc9\xe9\xf9\x39\x4c\xdb\x85\xda\xa6\x53\x8e\x4a\x9b\x0c\xcc\x40\x5a\x08\x18\x29\x0c\x3f\xe7\x93\x26\xcc\x74\x3e\x19\x13\x84\xa5\x7c\xab\x58\xb4\xbe\x4d\xbb\x2c\x1f\xd7\x16\xce\xe5\x7d\x64\x86\x25\xbd\x4a\x89\x34\xdf\x55\x40\xeb\x77\x03\x5d\x97\x9f\x24\x3d\x92\x44\x5e\xf6\x15\x1a\x05\xbf\xaa\xe5\x00\xcb\xfb\xc8\x0e\x84\xfa\x2f\xe0\x36\x7e\x13\xb3\x1f\x49\xe9\x3d\xa5\xcf\x74\xa7\xa9\x5c\x1f\xc6\xd6\x24\xba\xd5\x38\xf5\xa0\xab\x3a\x25\x96\xe0\x87\x51\x3f\x16\x44\x92\xe0\xe1\x95\xbf\xd4\x77\x6a\x1f\xfa\x1c\x54\xf9\x93\xe8\x15\x94\x50\xa4\x8a\xed\xc1\xca\xe7\x54\x22\x3f\x32\xa1\xc9\xa2\x96\xbf\xec\xeb\x81\xd2\x6d\xbe\xae\x04\x12\x8a\x2c\x9a\x8c\xc6\xc3\x96\x2f\x42\x1e\xa7\xbb\xe5\xe3\x46\x26\x52\x3e\x09\x87\x24\x9f\x4b\xb2\xbd\x3f\xfd\x29\xf4\x17\x50\xe7\x7d\x15\x51\x24\x88\x3b\x17\xf1\x14\x85\x2f\x5e\xbe\x02\x87\x03\xd5\x9e\x0b\x0d\x8f\x34\x36\x52\x60\x42\x04\x7e\x5f\xd1\xa0\xef\x6b\x9d\xe3\xb4\x67\xf3\x22\x5e\x9f\xf3\x01\xee\x79\xda\x92\xf4\x14\x77\x9e\x11\xcb\xfb\x7c\x49\xfc\xc0\x22\x43\xf3\xbe\xae\x9a\xcd\xe3\xd8\xac\xaf\x91\xca\x7f\xae\xdc\x89\x76\x6f\xa8\x2e\xa1\x36\x59\x08\xa3\x82\x31\x14\xf3\xfb\x9d\xdf\x11\x3d\x0d\x41\xf2\x7b\x64\x55\xcf\xac\x25\x95\xce\x7c\x4b\xf9\xaa\xfa\xa6\xd3\x20\x33\x79\x1e\x5b\x8e\x90\x98\x09\xac\x70\xff\x57\x1b\x28\xfd\xed\xcc\xe6\x32\x9f\x9c\x90\xa1\x5b\x57\xcf\x37\xa9\x95\xb6\x07\x13\x93\x99\xa4\xb0\xb2\x0d\x39\xc9\xb1\xf2\xc5\xf0\x89\x12\x2d\x5b\xb5\x89\x28\x6e\x48\x2e\x4b\xbb\x8c\x64\xb9\x4e\xce\x28\xa5\xd2\x20\x5a\x62\xc2\x74\x75\x6d\xde\x2f\x3f\xd5\xf1\x9c\x3c\xa4\xd3\xc8\xea\xee\x53\xbe\x21\x9a\x1c\x4d\xb6\xd2\x51\x4c\x72\xfe\x33\xbe\x82\x7a\x53\x39\x4b\x9d\xd6\x06\x2f\x27\x55\xf8\x1f\x25\xa1\x4d\x8a\x68\xd5\x52\x6f\x4a\x9a\xc3\x74\xe9\xa8\xcc\xdd\xc7\x3e\x8a\x87\x7b\x59\x85\xc5\x99\x0d\xd3\x55\x9b\xed\xf1\x94\xdd\x9b\x8a\xb2\xc2\x4d\x35\xc9\x21\x69\x55\x42\x15\xb9\x05\x23\x66\xa4\xee\xff\xab\x0a\xb2\x1e\xd8\x78\x5c\x21\xc9\xd3\x22\x0d\x53\x0e\xba\x71\x0f\x7f\x18\x28\xba\xde\x4d\x05\x4e\xe5\xf5\x59\xf0\xf0\xf2\xa8\x7b\xf4\xa4\x61\xfe\x82\x56\x29\x34\x31\x45\x85\xb8\xe2\x4c\xd9\x54\xd4\x4a\x93\x55\x9b\x15\x91\xb4\x50\x11\x29\xb3\xf2\x20\x9f\x4c\x9f\xac\x06\x22\x9f\x7f\xa1\xbd\xb8\x38\xab\xbd\xf6\x14\xac\xe7\x0a\xfd\x3c\x1f\x4f\xfd\x04\x3b\x59\x89\x48\xf3\x1c\x75\x74\xd6\xf9\x55\xe5\xec\xd7\xdc\xad\x8d\xcc\x68\x94\x16\x43\xb2\x56\xe3\xc2\xe0\xd4\x03\x21\xae\xab\xfa\xf4\x51\x27\xc0\xd7\x7d\x66\xf5\x19\xe5\xc1\xcd\x7d\x4a\xd1\x51\xfe\xb8\x6d\x39\x34\x49\x91\x72\x8d\x59\x84\x00\x5b\x5e\x14\xb0\x89\xae\x30\x8e\x4d\x04\xdd\x0a\xac\x2b\x60\xb2\xf0\xb1\xf2\x2d\x8a\xed\x5a\x94\xcf\x78\x58\xc3\x2d\x65\x52\xcd\x5c\x41\xb1\x29\xab\x50\x97\xbb\x30\xce\xc1\xf6\xf1\x3a\x2d\x66\x7c\x5c\xdb\x4b\x5f\x58\x6a\x5b\x93\xc5\x91\x78\x99\x70\xf0\x14\xf8\x85\x4e\xdb\xdd\x8c\xa2\x3c\xb7\x50\x92\xc2\x88\xe3\xc6\x2c\x9f\xa8\x90\x6b\x35\x0a\x67\x94\xc9\xcc\x79\x15\x28\x01\xe6\x8e\x82\xd8\xb6\xba\xdb\x71\x64\x92\x74\xd6\x3b\x2b\x31\xac\x15\xb9\x3c\x8a\x87\xa8\x4b\x7c\x59\x71\x26\x4e\xd5\xa6\x7a\x19\x53\xa4\xdd\x38\x72\xbd\x26\x84\xab\xc0\x76\xf0\xb1\xe3\x3d\x0c\xd3\x49\x6e\x87\x69\xdc\xdb\xe3\x03\x5b\x60\xe4\x50\xc5\xfa\xb9\x8e\xb2\x0e\xe3\x47\x2e\xe6\x91\x1e\xf2\xf0\xf0\x86\xc2\x9c\x6e\x56\x30\xa9\x79\x61\x92\x57\x0c\x49\x3b\x21\x11\xb8\xa4\xa1\xdb\x97\xb4\x04\x65\x9a\x98\x98\xe5\xa6\x45\xb9\xad\xe5\x54\xa0\x2e\x29\x9a\xe3\x80\x88\xc4\x74\xc5\xd8\xff\x90\x88\x81\xa1\x77\x97\x1e\x14\x62\x90\xb7\xb0\x4c\xa1\x03\xf1\x43\x7a\xa7\x7c\x5c\x59\xa4\x95\x86\xc1\x7f\xf5\x8f\x70\x01\x92\xb4\x94\xbb\x12\x1f\x2b\x37\xfd\x71\x66\x57\x6d\x52\xec\x51\x42\xc0\xea\x52\x77\x77\x94\xe8\xd6\x99\xa9\x62\xef\x9d\x41\xa9\x87\xd5\x19\xa6\x7e\xc9\xb8\x54\x99\xdf\x6b\x66\xfd\x27\xcb\xf1\x8b\x04\x60\x37\xa9\x1a\xe3\x0b\x4e\xa0\x6e\x25\x12\xc7\x3e\x3a\xbb\xa3\x09\x26\xcc\x5a\x72\xfb\xf7\xfc\x3c\xaf\x9f\xff\x33\x25\xd7\x88\xef\x5f\x07\x11\x1e\x45\x89\x73\x08\x38\x99\x92\x83\x55\x14\x8d\x94\x2f\xd2\x55\x0a\xc9\xac\xcc\x84\x90\x37\x7c\xa2\xe3\x59\x5b\xac\xd2\x81\xc0\xeb\xff\x41\x05\x0e\x93\x99\x6b\x2e\x58\xc4\x66\x36\xb4\x9e\xe5\x15\x60\xa1\xf9\x62\x28\xb0\xc0\xe8\xfe\x88\x72\x2c\x08\x2d\x3d\x40\xd2\x21\x72\x91\xc8\x3c\x5c\xa7\xb1\x7c\xb5\x62\xe6\xf1\xa4\x06\x66\x26\x36\x2c\x52\xd8\xdb\xbb\x52\x1e\x8d\x7e\x29\xeb\x29\x4e\x24\x90\xf6\x7b\x94\x65\xce\x13\xe4\x56\x87\xa6\x1a\xf6\x10\xbc\xd6\x87\x36\x7c\x95\x7d\x37\x79\xf6\xe2\x46\xde\xa7\x40\x48\x2a\xf1\x7e\xec\x0f\x4c\x37\x8b\x6c\xcc\x42\x8d\xa8\x48\xbe\x37\xf5\xac\x9e\xf7\xb4\xf9\x27\xa9\xca\x90\x94\x35\x66\xd7\x75\x0c\x1b\xfc\xc2\x51\xbc\x75\x3c\x78\xae\x70\xca\xdb\xa1\x2f\x47\x48\x88\x72\xa5\x33\x70\x2d\xc7\x03\x7f\x5e\x4b\x9d\x03\xd0\x2a\xac\x11\x5f\x30\xbe\xa3\x9b\x53\x49\x34\xa7\xc2\xcb\xdb\xa8\x04\xb0\x12\x16\x0d\x08\xc4\x1f\xc8\x3d\x91\x73\xcc\x6e\x28\xdd\xea\xd3\xaa\xe0\x59\x18\x20\x5e\x1d\x6d\xf3\xf2\xd4\x93\x43\x2f\x37\x80\x48\x96\xca\xfd\x21\x94\xd5\x4b\x94\x2f\x7c\xd7\xee\x8c\x03\xa8\x24\xd1\x78\x2c\xf6\x0b\x02\xb4\x50\x45\x7b\xc8\x86\x21\x84\x3b\xad\xf0\x2f\xf9\x24\x12\x4b\x7f\x80\x16\x2e\x60\xf6\xf0\xc9\x54\x81\xf4\xd2\xf1\x24\x36\x64\x1b\xeb\x75\x0d\xbe\x70\x47\xcb\x5b\xde\x51\x6e\x0b\x99\x35\x7d\x92\xf4\x2c\x6f\x10\x01\xc5\x05\x6a\x09\xf0\xb1\xe2\x1a\xa5\xe3\xb1\x4d\x86\x36\x1a\xd9\xac\x92\x0b\xb3\x44\x1c\x9f\xe8\x30\x3d\x4a\xa2\xbc\xb0\xd9\x03\x5e\x0c\x85\x35\x12\x60\xfd\xb1\x57\xb1\x4d\xb6\x94\x2a\x2f\x93\xc5\x99\xca\xa4\xa5\xf4\x3f\xa4\xf7\x20\x5e\xb3\x5e\x44\x29\x49\x93\xd5\x54\x78\x52\x02\xcc\xff\x90\x5e\xbb\xa8\x78\xee\x7c\x69\x9f\x23\xc8\x9a\x67\x31\xe1\xf9\x5f\x54\xc4\xa7\x8b\x2a\x2e\xa4\x8c\x17\xbd\x90\x67\xb9\xa4\xf5\x3d\xba\x62\x74\x68\xa1\x9f\x8d\x11\xfa\x91\x22\x9c\x77\x33\x32\xba\xf3\x46\x38\x20\xae\x80\xca\xcc\xe2\x11\xfc\x1f\x81\x07\x0f\x7f\x5d\x51\xa9\x1a\x8d\x14\xcb\x10\xb5\x3b\x89\x62\xa0\xc5\x10\xfa\xdd\x09\x3c\x81\xe3\x4e\x0d\x6e\xf7\x4b\xed\xc2\x10\x4a\x7f\xff\x21\xe7\x58\xa9\xad\x2f\xb5\x46\x8f\x80\x63\x1f\x56\xab\xe2\x35\xed\xbe\xfa\xf7\x34\x6b\x85\x57\x58\x5e\x02\x9e\x02\x87\xd8\xc8\xd7\x66\x37\x7c\x5c\x78\x56\x13\x76\x2f\x62\xe4\x3a\xa8\x72\xb9\xa4\xa3\x4f\x77\x02\xf2\x0b\x7c\x82\x10\x9d\xbf\xac\xa3\xd4\x80\x57\x7b\x66\xd6\xab\x4f\x6d\x6a\x1b\x11\x95\x6d\x9e\x9c\x2a\xde\xd3\x6c\xcd\xbf\xbb\x4c\xe0\x23\xc7\x1f\x71\x92\x5f\x4a\xff\xcb\x95\xbe\x46\x04\x43\xa6\x4e\x3d\x02\xeb\xbd\xa8\xb5\x21\xf7\xbd\xac\xfc\x0b\xae\x54\xbc\x1b\x55\x6a\x1e\x4f\x46\x5d\xfe\x0a\x51\x88\xf4\xab\xf4\x39\x8d\xb7\x7d\x75\xaa\x91\xbc\xaf\x06\x3b\x61\x90\x44\x16\x1d\xdb\x2c\xd2\xee\x3b\xd8\xc6\x8e\x29\x2d\xbc\x63\xca\x7c\xb8\x17\x85\x85\x29\x77\x97\x61\x34\xce\x5b\xf4\x88\xf1\x5a\x8e\x62\x3f\xe5\x13\x57\x80\x22\x65\xb7\x54\x74\x5a\x90\x5d\x7d\x85\x46\x17\x1f\x2b\x34\x24\xd4\x47\xf3\xa2\xa5\xdc\x06\xfe\x24\xf0\x65\xb8\x3f\xa9\x01\x79\x16\x16\xda\x99\x5d\x4d\xe3\x89\x03\xf2\x48\x40\xa4\xd8\x10\xc7\x5d\x05\x71\xcd\xc6\x31\xaf\xad\x3e\x1c\xdd\x0d\x3a\x2a\x9f\x6c\xa8\x28\xc7\x50\xbd\x68\x8f\xd2\x0e\xfa\x1e\x0d\x56\xb4\x72\x8e\x73\x1b\x51\x58\x2c\x7e\x39\x5d\xc2\x7e\x83\xc8\xf7\xb8\x62\x83\x5f\x56\xc2\x78\x59\x3a\x7e\xb0\xfc\x32\xa6\x76\x61\x50\x23\xbb\xbc\xa7\xca\x0c\xa7\x15\xcf\x6b\x53\xf1\xbf\x60\xe9\x86\x1a\xcb\xa3\x54\x9e\xc4\x74\xda\xc6\x0a\xe7\xf4\x48\xca\x0b\x61\xba\xde\xf4\x29\xd7\x18\x29\xef\x8b\xca\x0e\x11\xbb\x41\x23\x3d\x00\xda\x54\x1c\xab\x55\x10\x35\xb3\xb1\xf3\xc9\xef\x3f\xd4\x1e\x59\x93\x44\xc9\xa0\x3f\x81\x99\x1b\x82\xc9\xd7\x14\x6d\xea\x35\x45\x66\x2c\x86\x76\xfd\xa7\x68\x1b\x95\x46\x25\x9e\x1e\x02\xb3\x7b\x98\xb9\xd2\xea\x51\x8a\x9a\xb7\xa9\xb9\x89\x97\xb3\xa5\x94\x62\xee\xe1\x81\x31\x8d\x22\xf0\x9d\xb3\x27\x08\x32\x27\xbd\x87\xd6\xaf\x09\x4c\xe7\x7f\xa2\x58\x16\x7b\xfd\xee\x8d\xd6\xaf\xfc\x86\xb7\x48\x2d\x97\x06\x01\x14\xd1\x14\x10\x61\x3d\x9a\xc1\x08\xb1\x6e\xea\x18\x84\xed\xfc\x59\xc4\x83\xc6\x04\x4b\x6a\x53\xb0\x89\x90\xf4\x35\xd2\x69\x72\xe5\x60\xaf\xc1\x70\x07\x6f\x05\x2b\x13\x96\x6a\xa7\xe6\x51\x2e\x92\xd8\xb7\x76\x51\x9d\x43\x10\x75\x0d\x44\xb2\x5e\x66\x06\xac\x64\x80\x60\x71\x2b\x50\x4a\xf7\xc7\xb5\x0c\xdf\x45\x15\xdb\x1c\xda\xf7\xcb\xb4\x3d\x63\x91\xe1\x46\x03\x9f\x28\x0d\xc4\xcc\x14\x43\x9b\x7d\x42\xa9\xb6\xbc\x8b\x72\x0d\x86\x1f\xa3\x81\xf8\x24\x50\xe8\xf2\xdf\x0e\x7c\x1d\xf7\x8f\x69\xf0\x0a\x1a\xae\x7c\x4c\xe8\xb9\xb7\x68\x9c\x29\xd1\x26\xf1\xf2\x61\x13\x7e\xfe\xc4\x0e\xf8\x91\x57\x22\xd0\x10\xd4\xde\x24\x66\x6a\x5c\xc5\xdc\xc0\x09\xb5\x2a\x6d\xae\x96\x53\x91\x7e\xff\x63\x80\x25\x63\xd1\x86\x70\xc0\x2c\xaf\x62\x7f\x4f\x15\x98\xa9\x43\xe6\x14\x07\x49\x8d\x5c\x35\x05\x28\xc2\x94\xec\xa3\x0e\xf2\x68\x43\x48\x9b\x7f\x89\x01\xf6\x41\xd5\xa4\x99\x2c\xe6\x65\x0d\x35\xf1\x78\x68\xba\x16\x75\x1a\x2c\x9b\x37\x94\x33\x07\x54\xe4\xa4\x97\xdf\xe4\xf1\x6b\xe2\x91\xb8\x0d\xa2\x69\xb2\xa5\x40\x66\x4c\x18\x15\x56\x88\x97\x81\x4a\x26\x45\x46\x08\x49\x13\xb7\xf4\x3e\x52\xa1\x74\x5c\x68\xf2\xc9\xc9\xec\x6a\x94\xcb\x76\x88\x96\x12\xe2\x27\x3e\x56\xcb\xa0\x09\x79\x6b\x90\xe6\xb6\xee\x74\x2b\x5d\xc7\x28\x29\x6c\xb6\x1a\xd9\x35\x26\x27\x71\xdf\x49\x17\xa5\x2f\xa9\xad\x24\x8e\x92\x15\x33\xb0\x39\x40\xde\xce\x9f\xe3\x80\xb4\x22\x5e\x9d\x3e\xa5\xc0\x56\x49\x5f\xcc\x22\x66\x7c\x9a\xf4\xa6\x8a\xde\x98\x74\xc5\xaa\x03\x35\xae\xd0\xc2\x02\xe9\xae\xf2\x9d\x48\x64\xa2\x63\x19\x1f\x5d\xf6\xa2\x0c\xe9\xd9\x1c\x5d\x1a\x67\xac\x48\x77\x80\xa2\x69\x51\xb0\xe3\x52\x59\xaf\xb9\x75\x5d\xdb\xa5\xd4\x7a\x29\xcb\xfb\xda\x5d\x13\xae\xf4\xa3\x4c\x0a\xb2\x82\x0c\xa5\xab\x12\x9f\x2d\xa5\x26\x93\x46\x31\xd2\x1c\x34\xe3\x6f\xe3\x22\xb0\x62\xbd\xa6\xbb\x89\x1f\x20\xe7\xe2\x3f\xc3\x32\x83\x99\x7c\x46\xa5\x15\xdd\x49\x5e\xd8\xde\x9c\x82\x3c\x43\xa4\x13\x5b\xe7\x49\xcc\x25\xe7\x4c\xec\xf0\xe4\xa8\xcb\xf1\x1f\xa9\x15\x68\x6c\x33\xa7\x75\x8d\x95\xf6\x94\xb6\x29\x3b\xa5\xb0\xe6\xe7\x95\x2d\xed\xf9\x5a\xb8\xba\xbc\x8f\x48\xb7\xf8\x26\x61\x43\xf8\x54\x91\xf1\x27\xc2\x8c\x50\x79\xe7\xc5\xda\xb2\xbb\xb0\x50\x8e\x2c\xcb\x1c\x63\x11\x51\x2c\xef\x85\x8f\x95\xfd\x66\x66\x7a\x26\xa3\x29\x2b\x9e\x15\x3e\x5a\x3f\x89\x5e\xa1\x34\x7b\x1b\x7c\x14\xfa\x26\xf2\xc0\x76\x14\x37\x4f\x29\x83\xe2\x53\x95\x74\x6e\x3c\x8e\xd7\x89\x0a\x2b\x92\xe5\x3e\xcb\x7e\x83\x06\x3d\xd6\xf7\xdb\x15\x4d\x09\xbf\x09\xdc\x0e\xfc\x64\x18\x0f\xa3\xd8\xf4\x6c\x3c\x1e\x46\xe2\xf0\x82\xcc\xf2\xba\xf6\x40\xb9\xde\xd4\x60\x13\x25\x70\x5c\x33\x9b\xe4\xa9\xca\x66\xdd\x1d\x6b\x61\xa1\x6d\x13\x13\x42\x69\x4e\xcb\x06\xf9\xd6\xc3\xa6\x4a\x80\xa8\x58\xb1\x57\x41\x07\xa6\x00\xe8\x0a\xee\xa1\x7c\x02\x88\xc6\x60\xb3\x89\x64\x68\x4b\x75\xeb\x59\x26\xc2\x49\xcc\x68\x57\xe8\x72\xb8\xf3\xd7\xaa\x66\x4a\x9c\x8e\xf3\xa8\x27\x36\x70\x88\x12\xe0\xd1\xcd\xc7\xaa\xf4\xd2\xcf\x4c\x12\x9a\x28\xb7\x5c\x7a\x41\xe4\xf0\x06\x21\x17\xf8\x58\xc1\x7f\x8a\x61\x94\xac\xec\x51\x5d\x0e\xd4\x05\x30\xaf\xd8\xc8\x12\x15\xc5\x77\x83\x32\x92\x70\xe4\xe0\xe7\xbd\x2c\xb8\x4a\x31\xae\x4f\x3d\x45\xd0\x8e\xb0\xde\xbb\x60\xee\x4d\x5a\xbf\xb6\x2f\x63\xa9\x47\xc7\xf8\x46\x83\xfc\x4d\x1b\xeb\x60\x01\x7e\xb7\xa3\x1a\x29\xf1\xd2\x47\x54\xb9\x36\x8e\x95\x02\xfe\xdd\xa0\x0a\x0d\x75\x91\x1e\x80\xd3\x22\xbf\xf3\xb0\x1b\xb6\x2f\xbd\xd4\xf6\x6c\xbb\x2b\x81\xd2\x68\x39\x35\xa5\x40\x91\xa5\xc4\xa0\x74\xeb\x58\x4c\xde\xcf\xe6\x2d\x0d\x59\x78\x2b\x50\xc2\x86\xaf\x62\xbd\x72\x19\xc4\xaf\x49\x3c\xf0\x3a\x8d\x05\xa6\x3d\x04\x7e\xde\x1e\x45\x31\x0e\x65\x8a\x33\x53\x3f\x65\x58\x5e\xd0\x45\x27\x65\xbe\x83\x47\x7a\xaf\x82\x6b\xc1\xfe\x20\xe6\xdf\x34\x2a\x59\x5b\x4e\x39\x36\x9e\x24\x49\x4f\x60\x4a\x8f\x54\x39\xc1\xac\xf7\x86\x55\xf0\x8a\x72\x0c\x79\x8b\xc2\x56\x84\x56\xdf\x21\xc1\x34\x3c\xb0\x1f\xd2\x98\x90\x20\x83\xa2\x67\xe7\x7e\xff\xeb\xbf\xca\x43\xff\x8d\x40\xf1\x62\xae\x50\x24\x2d\x0a\xdd\xad\xe5\x25\x9e\x2b\xbb\x36\x3c\xb8\xe1\xb4\x62\x20\x86\x43\xbb\xba\x3e\xe3\x59\x49\x9b\x0a\xa0\x0f\x2a\xb6\x70\x8f\xb4\xbc\x91\xed\x97\xa9\xe9\x17\xe4\x92\x2f\xe1\xb5\xf0\x09\x9e\x12\x5e\xf2\x5d\xce\x4d\xf9\x2c\x90\x26\xcc\x28\x62\x92\xb5\xe8\xf5\xb4\x94\x4b\x94\xb2\x1d\x88\x6d\x9e\x0b\x6a\x00\x03\x6d\x4b\xf7\x9d\xb6\x34\x4b\x29\xca\x87\x2d\x65\xa5\x74\x9e\x46\x01\x1f\x37\x69\x34\x14\x26\x5e\xc9\x67\x7c\x8c\xca\x1a\x87\x78\x8e\x2c\x3a\x84\xe9\x7f\x59\x2d\x4f\x84\x7d\x7f\x50\x4d\xe8\x33\x18\x08\x48\xcc\x8f\x4d\xfd\xae\xfe\xd6\xd4\xd3\xcd\x8e\xd3\x0d\x02\x04\x33\xb7\xe1\x41\xe9\x3f\xc4\x5c\xc5\xb8\xbf\x45\xa3\xc8\xb9\x6c\x2f\x2f\x71\x1c\x7a\xaf\x49\xc2\xc0\xe6\x61\x96\xae\xa9\xd6\xfd\x39\xe5\xb2\x7c\x6e\xa7\x79\xcd\xa1\xe7\xda\xcf\xef\x7b\x91\xe0\x31\x18\x71\x0f\x82\x42\x84\x9c\x02\x7d\x63\x51\x7f\x2d\xbf\x12\x01\xf4\xd7\xb5\xc0\xf5\x6e\x88\x9e\x3a\x60\x7e\x39\x93\xd1\xb5\x01\x21\x8c\x1f\x22\x96\x34\xac\x6f\xaf\x06\x0a\x94\xb6\xad\x82\xb1\x49\xd2\x8f\x61\x74\x57\xbe\xdb\xfd\x87\x9c\x6e\x01\xad\x02\x5e\xf9\xd2\xc1\x74\x33\x5b\xa0\x12\x25\x02\x85\xe5\xa3\xe5\x63\x45\x6f\x30\x89\x89\xd7\xf3\x02\x85\x6e\xf1\x7b\x69\x39\xad\x6b\x60\x96\x90\x11\x7e\x97\xbe\x42\xcc\x6f\x3d\x36\xf6\x94\x36\xc5\x9e\xe9\x34\xec\x80\x93\x64\x60\xa2\x84\xfd\x59\x38\x72\xa4\x27\x20\x51\x64\x13\x90\xab\x2b\x18\xf5\x25\xe7\x60\x44\x6b\x8e\x58\x1b\xf9\xd9\x95\xa7\x61\xc8\xe1\xaf\x5b\x9d\x7c\xf6\x76\xb4\xee\xc0\x43\x16\xfe\x99\x49\x90\x39\x60\xa9\xb9\x87\x34\xce\x69\x89\x2d\x2c\x88\x68\x6f\xa3\xe4\xc7\x78\xd2\x8d\xa3\x7c\x68\xa5\x9d\x80\xc7\xf5\x3d\x9e\xbc\x7c\xd6\xb0\x93\x2c\xb5\xbb\x56\xb9\xc9\x89\x67\xaa\xee\x5f\xfa\x4d\xf6\x37\x27\x26\x29\xa2\xfe\xfa\x6c\xcb\xa9\x1d\x71\xf2\x27\x3e\x61\x2a\x32\x45\x57\x8c\xff\xca\xf5\x7b\x23\x1a\x37\xda\x64\xed\xae\x32\x59\xbb\xeb\xcc\x05\xb3\x09\x75\x8f\x1d\x93\x8e\xd7\x24\x3e\xa9\xe1\x7a\x16\x16\x0e\xb6\xd7\x22\x8a\x42\xf7\xbb\xa8\xd0\x83\x7c\x98\x95\x8d\x34\x18\xee\x2b\x78\xb0\x3f\x50\x09\xe2\xd8\x26\xa1\xdd\x5b\x0e\x03\xfc\xdd\x7b\xaa\x57\xc6\x68\x58\x40\x18\x6e\xe1\x36\xf9\x44\x61\x1b\x60\xfa\xe7\xf8\x11\x0e\x21\xb9\xa9\xbd\x4f\x6f\xd5\xaa\x63\xcb\xfb\x0e\x7a\x3e\xa7\x12\xd2\xd0\x1d\xf7\x93\xb5\xb7\xbe\xbc\x4f\xbc\x15\x40\x8d\x76\x3b\x3c\x90\xf2\x7c\xac\x02\xf5\x55\x13\xaf\x0a\xf5\x40\x16\xd5\xf2\x07\x64\xb1\x95\x57\xd4\xcf\xcc\xc8\xeb\xe5\x88\xca\x8e\x6a\x44\xfe\x49\x6d\x2d\x26\x99\xe3\x6e\x3a\x56\x2c\x92\x4d\x5d\xda\xdb\x0c\xfc\x97\x5b\x2b\x39\x2e\xd6\xc6\x1f\xab\x28\xed\x0d\x3c\x28\x84\x50\xa7\xeb\xd8\xe7\xf9\x76\x77\x12\xc7\xbd\xf4\x15\x56\x88\x10\x67\x60\xdf\xea\x39\xd2\xc0\x21\x5f\x6a\xdb\xa4\x9f\x66\xa1\x1d\x09\x68\x4e\x2c\x43\xe9\xa5\x8a\x99\xa8\x9f\xc0\xd4\x35\x25\x0f\xb6\x83\x5c\x0b\x3a\xa6\x0b\xcb\xec\xdc\x2b\xe4\x2b\x5f\x23\x06\xfb\xc2\xa9\x44\x97\x7b\x11\x7f\xdc\x81\xf7\x26\x2b\x99\x89\x92\xc8\x00\x20\x24\x02\x5d\x5a\xad\xcb\x4d\x81\xbc\x48\x53\xf4\xbb\x59\x20\xd4\x13\x54\xfe\xf9\xa7\x37\xe8\xd2\x11\xd5\xfc\x2c\x2a\xa3\x8e\xf2\xa5\x2d\x25\xe8\x22\x04\xa2\xa4\x78\x8e\x93\x7e\xdf\x66\xb6\x37\x57\x0e\x52\x41\xc4\xd0\x07\x01\x54\xb8\x8a\x88\x9d\xff\x47\x31\x75\x5f\xa7\xd6\x2c\x6b\x5b\x69\x0a\x97\x59\x23\x62\x8d\x48\x29\xb6\xbc\x84\xaf\x1a\x64\xd7\x94\x8d\xf7\xa6\x12\x99\x60\x72\xaa\xcd\xf2\x07\xfc\xdc\xd4\xb6\x52\x6f\xd3\x6c\x12\xf5\x68\x7a\xfc\xce\x49\xda\x81\x14\x8e\xe1\x7d\x62\xca\xdf\x40\x96\x8c\x5d\xa0\xd5\x91\x87\x5a\xa4\xb1\x30\xda\xd8\x6a\x45\xd9\x04\x5e\x9c\x7e\x5a\xc1\x89\x7a\x93\xbc\xc8\x22\xf2\x91\x6a\xf9\xda\xf0\x6f\x05\x0a\x94\xf9\x5b\x4d\xca\x03\x51\xd2\x67\x0a\x6d\xcb\x59\xb0\x31\x46\x47\xf6\x3b\x57\x31\xb2\x59\xda\x27\x47\x15\x47\x86\x3f\xaa\xc5\xf7\x8f\x36\x99\xaa\xf7\xac\x41\x25\x57\x28\x5d\x74\x37\x12\xd0\x2b\x19\xec\xc3\x64\xba\x16\xda\x19\x65\x35\x71\x41\x51\xf0\x6e\x4c\x7d\xa0\xb0\xbb\xe3\x95\xd1\x6c\xbf\x1f\x91\x64\xcc\x8c\x07\x5b\x7c\x34\x55\x7e\x04\x33\x1d\xdf\x6c\x3f\xa5\xe6\xcd\x1a\xeb\xa9\x39\xad\x0f\x54\x42\x24\x17\x7d\x44\x65\x6b\xab\x96\x05\x4c\x71\x59\x77\x10\xd8\xf3\x49\xf0\xa0\x34\x7e\xc2\x39\xaf\x98\xf8\x83\xc7\x28\xec\x42\xbb\xec\xa7\x3b\xba\xb0\xa6\x28\x37\xb0\x45\x97\x6b\xf3\x1d\xf4\xd8\x0c\x80\x5e\x5d\x5e\x62\x61\x28\x48\xb3\xf1\x71\x50\xd5\x6f\xb2\x8f\x2b\x55\x8b\xbf\xa5\x3f\x44\x74\xc4\x6d\x6d\x11\x38\x57\x0a\x37\x57\x30\x30\x64\xf3\xd9\x49\x1b\x5f\xf6\x16\x82\x3e\xd6\xbf\x1d\xf8\x79\xf2\x11\xbd\x0d\x05\xb9\x13\x95\xe5\x93\xc8\xb9\x40\xc6\xba\x3e\xf5\xe6\xb5\x97\x30\x49\x11\xb4\xdc\x08\xbc\xcc\xdb\x97\xa6\x1e\xa2\x8e\x26\x85\x7c\x78\xe7\x26\xf2\x39\x12\x88\x4a\x63\x52\x58\x61\xba\x34\x66\x1f\x0a\x81\xd8\x6f\x19\x29\x82\xf8\xe5\x23\xed\x86\x19\xe5\x2b\x7b\x15\x87\xee\x4e\xe0\xe3\xd3\xd3\xca\x50\xa0\xd0\x10\xb5\x2b\xd8\x3e\xf9\x04\xe3\x0a\xf5\x2b\x54\x4e\x30\x99\x2f\x4d\x95\x4c\xfd\xc9\x0a\x6e\x2a\x2d\xec\xa3\x15\x22\x85\x87\xb4\xfe\x29\x96\x00\x14\x5f\x59\x98\x1e\xe9\xcf\x5f\x2b\x5e\xf0\x5c\x87\x95\x35\xe9\xbd\x70\x3d\x5c\x4b\xb5\xc1\xfd\x74\xfb\x32\xdd\x8e\x38\x80\x95\xcf\x11\xab\xe3\xb7\x68\x35\x42\xf2\xb0\x77\xc3\x03\x4c\xbe\x41\x21\xbf\x38\xba\xfb\xb5\x24\x1f\x9a\x8c\xd0\x4b\x51\x82\x56\xc0\x7e\xad\x52\x29\x15\xf1\xd3\x5a\xbf\xf2\xa3\x06\x29\xbb\x83\x40\x14\x55\x0b\xb6\x2c\x3a\x2e\x54\x0c\xe9\x5f\x86\x69\x52\xd8\x98\xa1\xfb\x52\xdd\xf4\xec\x1b\x34\x2d\x3b\x8f\x29\x31\xac\xbc\x48\x33\x3b\xe7\x5d\x75\xfe\x20\x50\xdc\xb5\x1f\x04\x3e\x98\x43\xc5\x14\xa9\x36\x6a\xa0\x08\xf8\x2e\x3b\xd5\x8b\xee\x38\xac\x44\x0f\xaf\x4d\x55\x16\xf1\x5a\xb0\x53\xf7\x74\xe9\xb9\x83\xd0\x6a\x26\x75\x4a\x19\x86\x28\x11\x5c\x55\xdd\x80\x37\x95\x80\x5e\x5d\xa1\x9b\xd4\x53\xcd\xc4\xd5\xb3\xb9\xaa\x11\xf8\xc4\xf3\x54\x2d\xae\x5f\xde\xd7\x26\x8d\x11\xfe\x49\xb7\xa5\xb8\x12\xf8\xe9\xa9\x32\xbf\xb8\x5e\xcb\xe2\x9e\xdf\x87\xc0\x3b\xa4\x0d\x82\x99\x0a\xf4\xa8\x84\xb5\xd0\x00\xe1\xed\xa5\x93\x6e\xc1\xa5\x5f\xa8\xfe\x5c\xc6\x3a\xc2\x27\x4d\xae\x9e\xa6\x67\xc6\x3e\x4a\xc7\x82\xf3\x65\x7a\x1c\x7c\xdc\x80\x4f\x79\xb6\x3d\x4c\xb3\x5c\x22\x3e\x94\x36\xbe\x12\x28\x3e\xfb\x57\x6a\x75\xd3\xcf\xb5\x0b\x9b\x17\x3b\x3b\x02\x6a\x80\x7d\xd8\xc0\x6b\x6d\x87\xe9\x68\x34\x49\x88\x4e\x87\xb7\x2e\xba\xd8\xaa\x2f\x74\x4e\xe5\x8e\x0e\x6c\x10\xd9\x7c\x8f\x27\xa7\x5c\x47\xf1\xeb\x2a\x4d\x3a\x61\x5c\xf8\xa9\x7d\x0d\xcb\x06\x9f\x4c\x5b\x87\x9e\x73\x5c\x42\x5f\x2b\xef\x9b\x38\xde\xeb\x7b\x03\xef\x4f\xb5\x99\x33\x2e\xce\x59\xd1\x3a\x75\xe6\x5b\x8a\xd3\xfa\xd7\xb8\x5b\xe7\xe1\xb7\xe4\x3c\xe9\x77\x21\xca\x42\xbe\x7d\xbd\xa9\x7a\x3d\x4c\x47\x10\xba\x02\x56\x18\xa0\x2c\x7c\xf8\xcc\x54\x17\x95\x7d\x5a\x9c\x87\x26\x29\x88\xd6\x26\x72\x0e\xca\xf2\xe4\x82\xca\xfa\x2e\x55\xb4\xdc\x3d\x15\x24\x2f\xb2\x74\xdd\xf6\xa0\xa9\x5d\xf1\xb5\x74\x9e\x5d\xee\x73\xef\x4e\x55\xbc\x7b\xb2\x51\x16\xa7\x18\x66\xa9\xa8\x02\x0b\x78\xa7\xe5\xd4\x26\x2f\xaa\x2d\xbc\x9f\xa6\xbd\x07\x3d\xfa\x8f\x4b\x2f\x60\x5a\x9e\xd2\xb1\x3f\x6f\x78\x88\xe9\xef\xd1\xa3\x56\xab\xb0\xf8\xd9\xc3\xf4\x01\x09\xfc\x55\xad\x19\x70\x86\xf6\x32\xd9\xf0\x24\x8c\xeb\xda\x68\xc0\x06\xaf\xd8\x3a\x8e\xa9\x7e\xf6\x4d\x85\x5b\x38\xab\x5a\xaa\xbf\xfc\x85\xe5\x56\x05\x74\x59\x5e\x24\x9f\x28\x52\xc9\x38\x4b\x5f\xb6\x61\x91\x3f\xa0\x2a\xdd\x8a\x12\x5f\x51\xb8\x7d\x6b\xaa\xd6\xaa\xb7\xb1\x62\x22\x95\x79\x80\x6e\x08\xfb\xee\x2e\x34\x8c\x05\xb0\xdf\x24\x17\x1f\xc6\x36\x5b\xc9\x51\x5e\x10\xf2\xa2\xd2\x97\xaa\x8b\x18\x2d\xef\x6b\x87\x59\xba\xd6\x93\xc9\x8a\x34\xf1\x77\x94\x74\xc2\xef\xb8\x30\x13\x2d\x1a\x13\xcf\x7a\x88\x3a\x20\xca\xce\x79\xd0\x63\xb5\x34\x31\xf7\xcd\x26\x3d\xd5\x83\xed\xcc\x16\x93\x8c\x75\x8d\xc4\x75\xac\xfc\x36\xb1\x3f\x6b\x58\xf3\xfa\x26\x24\xf0\xb5\x57\xcf\x3c\xaf\x84\x9d\xcf\x7b\xbd\xa4\xe8\xf0\x1e\x5f\x95\xfc\xed\xaa\x55\xc2\xbc\xc4\xf6\x0f\xc2\x27\x12\x6f\x1b\x4a\x40\x28\xcc\xf1\xd5\x63\xbb\x68\xea\xe9\x2e\xb5\xf3\x28\x9f\xc4\x93\x96\xe6\xb4\xf1\xa7\xf8\xa4\xf6\xa4\x17\x16\xda\x63\x53\x44\x92\x3b\x0a\xd5\xc2\xa7\x7a\xe7\xdd\xb0\x1c\x99\xf5\x2e\x4a\x08\xb4\x4c\xcc\x7f\xb6\xe3\x47\xe2\xad\xa9\x2a\x21\x40\xe2\x02\x77\x76\x6f\xea\x41\xe0\x6c\xf9\x89\x7a\xf1\x45\x4d\x99\x7c\x70\xc3\xc7\xb5\xe7\xa6\x9f\x50\x02\x74\x90\x01\xc2\x32\xf1\x55\xfa\x2e\x3e\xae\x25\x0f\x24\xce\x68\x80\x71\x44\xa1\xff\x3d\xa5\xb9\xff\x5e\xed\x6d\x97\x01\x7a\x3b\x8b\xc2\xa1\xe8\x18\x22\x1a\xbb\xa6\x3a\xae\xd7\x54\xcb\x34\x4f\x47\xb6\x18\x46\xc9\xd3\x58\x8d\x50\x39\xf9\x40\x11\x06\x77\x77\x3c\x48\x08\x71\x3a\x06\xea\xe9\xda\x9b\x7a\xe9\xa5\x76\x6e\x32\xb3\x12\x25\x33\xbe\x2b\xb3\x55\x69\xbe\x2b\x01\xb1\x93\x4a\x78\xdd\x14\xd0\x4f\xb7\xf9\xac\xea\x39\x9f\x42\xd8\xee\x66\xf0\xd2\x73\x07\xbd\x9f\x88\xdb\x81\x4e\xa9\xd0\x76\x9c\xa6\x19\xba\xae\x28\xbf\x5f\x0c\xd4\x87\x40\x04\xe0\xff\xc0\x5b\x62\xe0\x33\x96\x41\x6c\x52\xa7\x5d\x49\x65\xcd\xf4\x88\xa6\x46\xff\xe9\x0c\xbb\xca\x2f\x17\xb3\x84\x86\x52\x47\x3f\xb3\xf9\x30\xb1\x39\x2c\xb1\x1c\x2f\xd8\x41\x78\xce\x05\x5e\x05\x61\x64\xd6\x1f\x2e\xff\x0a\x89\xf9\x27\x3b\x95\x68\xcd\x41\x96\x8f\x06\x1e\x68\x7a\x3c\x50\x3a\xbf\xc7\x69\x91\xad\x58\x16\x8a\xcf\x20\xbd\x77\xa7\x65\x52\x26\x22\x58\xec\x4e\x68\xd9\x89\x3d\x1b\x2a\xd9\xde\x9c\x7a\xf9\x59\x92\x5e\x4e\x4c\x11\xad\xda\x9c\x9a\x50\x18\xd9\x6f\xea\x06\x97\xd6\xfa\x80\xa1\x1d\xfb\xd9\xa8\x36\x02\xc9\xbd\x47\x79\x31\xab\x84\x48\x2f\xe0\x72\xf8\x44\xd7\xce\x35\xda\xe0\x5c\xed\xd1\x2e\x2d\x2f\x95\x6b\xfc\x68\x5c\xc4\xeb\x58\xc4\x1c\x6c\xcb\xe1\xe4\x37\x51\xda\xe0\x8d\xe3\x3f\xa5\x1d\x1a\xb9\xef\x27\x3b\x8a\x27\x8e\xd4\x03\x3f\xb4\xa5\x83\xdc\x9b\x35\x1a\x31\x41\xe0\xf2\x71\x9a\xe4\x51\x37\x8e\xe2\x62\xbd\xa5\xa2\x23\xd4\x4a\x05\x83\xf8\x29\xe5\x17\x95\xdb\x3c\x1f\x59\xf6\x23\x13\x73\x05\xd4\x19\xdd\x25\x2c\x2f\x69\x9b\x5b\x6f\x59\xac\xe4\x0e\x56\xa3\x9e\x4d\x42\xfb\x20\x8d\x61\x4c\xba\x99\x8e\x1f\xf8\x77\xb4\x3b\x35\xeb\xe8\xf3\x96\x1b\xf8\xae\xe0\x7b\x7a\x70\xcf\xd0\x9b\x72\x96\x48\xf3\xf3\x9c\xd2\x32\x4c\x8f\xff\xa3\x81\xe0\xb5\x5c\x25\xb2\x38\x17\x3d\x67\x6a\x58\x17\x90\x5b\x5c\x84\x2f\x42\x8a\x46\x26\x0a\x65\x3f\xc2\x65\x3a\x8d\x1f\xa7\xf4\x89\x06\xbe\xd0\x4e\xea\x21\xee\x7a\x64\xe3\x1e\xfb\xbb\xa9\x06\xad\x8f\xba\xd4\x2a\x83\x06\x9a\x60\x76\x94\x1e\x7c\x9e\xdb\x51\x37\x66\x9f\x5a\x81\x7d\x28\x3c\xe4\x75\xd5\xf8\x1f\x4c\x92\x91\xe5\xa0\x4a\x8a\x7c\xf4\x36\xa5\xfc\xd7\xc0\x82\x1b\x67\x76\x6c\x32\xd9\xdc\xc5\x61\xc1\x43\x84\x2f\x35\xe4\x3f\x8b\x34\x4d\x24\x49\x40\x17\x0a\xc5\x60\x3e\x0e\x76\xf4\x94\x5e\xd8\x7f\xa8\xfd\xf4\xd3\x54\x72\x13\x17\x7b\xe5\x7a\xf7\xe5\xa0\xb2\x17\x95\x4f\x1e\x89\x24\x3c\x8d\x31\x61\xbf\xaa\xa5\xe1\xb8\x8b\x28\x6e\x58\x8f\x2a\x78\x71\x11\x42\x8c\x15\x23\x89\xa1\x49\x7c\xa2\xc4\x8a\xa3\x38\x9e\xe4\x45\xc6\x54\xcb\x03\x22\xa7\xc6\x7d\x5b\x3e\x69\xd4\xd6\x71\xea\x5a\xca\x9d\xf8\x0f\x15\x6f\xf0\x0f\xdd\x26\xdd\xcb\x26\x83\x8a\x18\x09\xbb\x45\xf1\x49\x63\x7b\x25\x2f\xcc\x60\x60\xbd\x4a\x11\xf6\x9d\x2b\x81\xdf\x83\xae\x34\x71\x19\xcd\x78\x9c\xa5\x26\x1c\xce\x2a\xdd\xd0\xb3\x55\x46\x6c\xcb\xc9\x83\xcc\x75\x7c\x3b\xea\xe2\xf4\xd3\xd2\x08\x31\x80\x76\x45\xaf\x78\x0d\xef\x26\x38\x71\x43\xd0\x35\xb4\xc6\x85\x87\x68\x99\xbf\x87\x62\x01\x9f\xb8\xed\x29\x8f\x06\x9e\xae\x8f\xf5\xf4\xae\x72\xa6\x42\xb9\x0f\x0b\xe3\x71\x55\x52\x23\xcb\x29\x9b\x93\x05\x87\x10\xe4\x68\x4e\x63\x1e\x7e\x14\x78\xa6\xe7\x75\x5a\xa5\x64\xe8\x2a\xc7\x99\xb3\xaa\x01\x33\x4c\x93\x9e\xa1\x60\x46\x3c\xf7\x7c\xb3\xef\xb4\x92\xfc\xb1\x23\x50\x76\x11\x1a\xdf\x51\x52\x6e\x77\xa6\x5a\xb7\xc3\xe6\x85\xa1\xae\x18\xec\x17\x99\x06\xa3\xda\x52\xef\x2b\xae\xd4\xd0\x64\xa3\x34\x59\x6f\x29\x2c\x29\xf2\x2f\xa1\xee\x68\x13\xd7\xbe\xdd\x53\x6e\x98\x28\x2b\x9c\xa3\xa9\x21\xe6\x0d\x2d\x67\xd5\x78\x41\x43\x1d\x50\x6c\xe4\x0f\x20\x18\x11\x1f\x88\x27\x54\xf6\x9a\x17\x5d\x12\x0d\xf1\x46\xff\x5c\xcf\xe7\x13\x95\xea\xae\x46\x76\x8d\x90\xc9\x4e\x4f\xc6\x3f\xe1\x40\x3b\xa8\x04\x55\xa4\x97\xd3\xc3\xb9\xa3\x0a\xf3\x1f\x21\x8f\x51\x2c\xd4\x25\x67\x2c\x5e\xbe\x10\x79\x73\x3b\xc7\xf8\xfc\xbc\x6b\x0a\xd2\x35\x4b\x1f\xb0\xfc\x15\x69\x03\x2a\xea\x5c\x04\x28\x80\x73\xdf\xdd\xac\x50\x57\x55\x43\xc0\x4c\x8a\x21\xc0\xeb\x33\xaa\x67\x0d\xe7\x03\xac\xf8\xaf\xe2\xa3\x78\x2e\xb7\x55\x93\xd2\xad\x9c\xfe\xad\x20\x09\x16\xbe\x81\x64\x45\x62\x16\x32\xe3\x29\xd7\x8f\x52\x28\x82\x91\xce\x6a\x8a\x80\x6b\xef\xde\xf0\x99\x6f\x98\x26\x20\x7b\x8a\xa6\x70\xcd\xae\x06\x29\x6d\x9d\xbf\xbd\xff\x50\x7b\x2d\x4d\x7b\x16\xcd\x1f\x0c\x2c\x94\x8b\xf8\x58\x53\x38\x6d\x62\xe3\x18\xcd\x5c\xd4\xda\x66\xc8\xc7\x99\x8f\x3b\x8f\x28\xc1\xe6\xc4\xce\x28\xb4\xd5\x87\x34\x1e\x91\xce\xdd\x42\x30\x27\x85\xd2\x06\x7b\xd2\x9e\x59\x65\x89\x08\xc6\x27\x51\xf9\x05\x2b\xed\x61\x0c\x04\x64\xe5\xe7\x94\x23\xe5\x3b\x0d\x6c\xce\x76\x1e\x4f\x06\x83\x72\xb6\x79\x40\x25\xab\x95\x88\xa2\xe1\x63\xea\xee\x0e\x47\xa1\xe1\x3d\x11\xd8\x89\x2b\x78\xa1\x7c\x52\xdb\x13\xf7\x1f\x6a\x87\xe9\xd0\xe6\x62\x71\xa7\x13\x73\x81\xa3\xe9\x22\xf1\x68\x5c\x00\xb8\x8b\x40\xe0\x1c\xdd\x16\xca\xd9\xef\x4c\x75\x4d\xc4\x87\xfc\x2f\x4f\x12\x8b\xb0\x80\xb7\xb3\x69\x85\xec\x5f\xbe\x65\xb7\xcf\x79\x36\xed\xa6\x12\x15\xc8\x6d\x51\xc4\xd4\x66\xcc\x49\x28\x00\x83\xe7\x3d\xa5\x13\xfc\x5e\x23\x0e\x37\xca\x57\x9c\x56\x3c\x0a\x4c\x88\x67\xf9\x58\xa5\x37\xa1\x99\x14\x51\x3a\xc9\x19\xbc\x80\xe2\x07\x87\x13\x7c\x52\x6b\x9b\x2e\x2e\x3a\x78\x00\x54\xfd\x25\x03\xa3\x4f\x61\xc3\x61\x47\x57\x44\xe4\x33\x9d\x06\xfe\x51\x66\x07\x93\x98\xdc\x57\x3c\xd4\xe4\xbc\xa6\x73\x9e\xaf\x90\x43\xd3\xd8\xcc\x29\x33\x7e\xc8\x72\x38\x99\x00\x17\x53\x5e\xa5\xcc\x03\xdd\x03\x56\xf6\x92\x80\xde\x43\x9c\x06\xa9\x89\xb9\x1d\x5b\x71\x9a\xf3\xf8\xc0\x25\xb7\x4c\x7b\x04\xc5\x35\xdc\x12\x9f\xd0\x66\x24\xeb\x7a\x03\x5e\xb4\x98\x64\x09\x27\x68\x5c\x3e\x50\x30\x9a\x7a\x29\xe1\xf9\x7d\x2f\xb6\x4d\x06\xa5\xc9\xe5\x25\x27\x29\x5e\xde\xa4\xa8\xaf\x97\x3f\x28\x70\x38\x57\xb0\x8b\xf2\x91\x59\x77\x7b\xad\xb6\x1d\x17\xbe\x45\xcb\x89\x83\x6a\x4c\x49\x1a\x47\xab\x8e\x82\x57\x49\x3c\x25\x3d\x75\x6d\xe3\x61\x1a\xae\xcc\x78\x80\x12\x7c\xa1\xa4\xec\xa0\xc0\x21\x37\xdc\x55\xc5\x26\x61\xdb\x05\x5d\x22\x65\xfb\x65\x3e\x51\xfb\xdf\x9a\xc9\x38\xb9\x66\xcf\x7d\x5a\x29\xb7\x51\xc2\xc3\xca\xa1\x45\x90\xb7\x1a\x7c\xaf\xda\xdd\x34\xcb\x48\xc3\x2c\xaf\x28\x44\x62\x62\x09\x49\x55\x6e\x69\x68\x12\xa1\x50\x60\x16\x71\x25\xa0\xe2\x76\x24\x98\xc4\x27\x1c\x69\x2c\x5d\x8d\x72\xc0\xe2\x7d\xdc\x0c\x3a\x38\x1f\x37\xca\xab\x8f\x4c\x94\xe4\x85\x01\xb4\x52\x90\x3e\x2d\xa7\xc2\x79\x01\x8b\x28\xef\x04\x54\xf8\x06\x45\x87\x7b\x2d\x98\xb2\x9c\x50\xa1\x28\x30\x4b\xe3\x7a\xfb\x82\x6b\xce\x8c\xa2\xc1\xb0\x30\xb8\x21\x44\x9d\x27\x89\x84\x82\x75\x92\xf9\x2c\xd2\x48\x6c\xd0\xd3\xc3\xc0\xa3\x7d\x54\x8c\xb6\xbc\x23\xdf\xe6\xf4\x21\xf7\xa6\x9e\x7e\xdc\xeb\x6c\x7d\x29\xa8\xec\xb5\x9e\x0c\xcc\xe4\x67\x8c\xc5\x6d\xd0\xf1\x30\x9e\xcf\x4d\xd5\xfa\x7c\x7c\xaa\xc4\x20\x3e\xa2\x68\x03\x49\xde\x0d\x06\x19\x01\x76\xfe\xe6\xd4\x77\x87\xfe\x10\x6d\x4c\xfe\xb2\x40\x49\xbc\xfe\x0e\x8a\xc2\x5a\x33\xc0\xe1\x7c\xca\x14\x15\xe1\xdc\xa9\x69\xeb\xe9\xa7\xe5\x58\xe1\xc8\x67\x5c\x3b\x7f\x92\x0d\x6c\x6f\x2f\xed\x52\x58\x67\x8e\x69\xe9\x97\xa9\xd7\x46\xfe\xa3\xa9\xda\x49\xaf\xf0\x15\x4b\x0a\x53\x5e\x31\xa5\x39\xf9\x93\x1b\x8a\x32\xfb\xc9\x8e\x6a\x24\x3d\xda\xd9\x69\x19\x41\x11\x76\xc6\x6d\x6c\xbe\x61\xb4\xb1\xe5\xee\x7d\x9d\x7f\x3c\xa1\xa8\xce\xd5\xbe\x71\x99\x02\x0e\xf1\xf5\x92\xdc\x14\x51\xde\x2f\xd3\xb8\x34\x99\xf3\xc2\x13\xb7\x2a\xeb\xac\x26\xc7\x9e\x57\xf2\x57\xcc\x29\xc4\x14\x39\xe1\x46\xdb\x38\xb2\x61\xb5\xa5\x73\x5c\xf7\x0c\x8f\xab\xa2\xfe\x30\x1d\xdb\xbd\xad\x17\x96\x9c\x07\xa5\xe2\x70\x5f\xc6\x90\xe6\x93\xc0\xb3\x84\x00\xe0\x72\x5c\xa0\x32\xde\x10\x93\x2c\x7a\x31\xf8\xc4\x1d\x45\xcc\xdd\x54\x36\x64\x45\x36\xb1\x2d\xe5\xf6\x04\x91\x77\x3e\xae\x45\x01\xf3\xf3\xc0\xe1\xb9\x44\x8c\x1b\xb2\xf4\x21\x69\xce\x2a\x5a\xab\xcd\xc3\x2c\xea\x5a\x69\x4c\x39\x90\x62\xf9\x9c\x04\xa4\xf8\x94\x4a\x19\xfa\x59\x34\xb0\x99\xe1\x5a\xb5\x8c\xd6\xf7\x95\x18\xf5\xfb\xb5\xa8\xee\x73\xed\xd8\x9a\xdc\x5d\x11\xe6\xfc\xdb\xca\x95\xe3\xed\x46\x59\x9e\x38\xea\xdb\xdc\xac\x7a\xa4\x95\xb8\x7b\xd1\xc5\xf1\x89\x0a\x08\x07\x71\x9a\xe7\x50\xc5\xd1\xd2\xf6\x80\x94\x70\x34\x2c\x49\xa5\x7f\xbc\xd6\x84\xc3\xc7\xe8\xff\x64\xa1\x51\x8a\xf2\x00\x30\xa3\xcf\xc2\xcd\x70\x27\x95\xe3\x21\x94\xd7\x68\xae\x23\x7a\xfe\x3b\x7a\x8b\x4e\x8f\xd4\x15\xb7\xaf\x4c\x2b\xa2\x3b\x5a\x67\x87\x9e\x23\x76\x85\xcb\x7a\xd9\x46\x01\x18\x4c\xcc\x57\x69\xa6\xba\x07\x50\xae\x40\x52\xbf\xa1\x11\x88\xc1\x75\x54\xa5\x6b\x66\x34\x71\xb0\x62\xcc\x84\x6b\xaa\xa3\x71\x6d\xfa\xb0\x67\x24\xf5\x9f\xa2\x25\x05\xfb\xe4\x6c\x87\xae\x07\x95\xae\xef\xa3\x06\x0a\x06\xc6\x91\xa9\xf7\xb7\x99\xe9\xa8\x11\x72\x16\xd7\xc0\xab\x28\x2f\x1d\x4a\x3e\xee\xa0\x93\x53\x6c\xfd\xfa\xaf\x8a\x4f\x17\x25\x12\x80\x67\xf1\xbb\x41\x61\x70\x76\xc3\x83\xd6\xff\x80\x60\x04\x98\xbb\x57\x69\x03\x70\x76\x95\x0e\x45\x7c\x82\x82\x1b\x61\xc3\xd1\x83\xc5\x38\xbc\x11\x28\x12\x33\xbf\x3c\xd7\xd8\x2a\xc7\x21\x17\x15\x36\x3c\xdd\x7e\xd7\xc6\xce\x25\xec\xa5\x97\xda\xc9\xe4\x70\x4b\xf5\x84\x21\x62\xcf\xc7\x9d\xa6\x71\x3b\xb2\x59\x58\x66\x7c\xb1\xe5\x71\xeb\x30\x8e\xe5\xb7\xf0\x89\x46\xfe\xc6\xd6\x16\x33\xba\xe6\xa1\x6a\x6a\x5f\xfd\x18\x25\x40\x3b\x19\x91\xf9\x2e\xad\x30\xff\xf0\x27\xf4\x42\x0c\x63\x5c\xd4\xcd\xf7\x6e\x28\x19\x96\x3b\xba\xa1\x27\x8e\x82\x68\xc0\x5d\xd0\x7c\x0e\x3b\x1a\xcb\xa5\xb3\xe8\xfe\xb4\xa2\xc0\xef\xdc\xc2\xd3\xd4\xb5\xc2\x9d\xa0\x65\xf9\x26\xc5\x9c\xcb\xc1\x1d\x92\x78\xc6\x23\x9b\x51\x8a\xc4\xab\xe7\x10\x0a\xaf\xb2\x51\xcf\x2b\x9d\x14\x61\xc6\x65\x44\x97\x75\x38\xa9\xb8\x4b\x8d\x1e\x21\x09\xa9\x96\xcd\xea\x81\xc8\x4a\xf7\x18\x27\x27\x69\x20\xf2\x31\xae\x80\xff\xaa\x66\x95\x7d\x60\xb1\x3d\x36\x59\x41\x95\xb3\x1d\xc6\x99\xb3\x1b\xca\x38\x73\xb6\x23\xdc\x6c\x6b\xb2\x62\xf8\x9b\x13\xb3\x62\x09\x3b\x88\x51\x06\x14\x1e\xe2\x0f\x44\x3b\x22\xdb\xc9\x84\x09\x31\x99\xc2\x35\x33\xda\xa7\x92\x2f\x8c\xba\xe9\x8c\x47\xff\x5c\x56\x19\xfb\x7b\xb8\x05\x2c\x2e\x47\xd5\x8a\x58\x64\x26\x14\x7a\x26\xda\xe7\x27\x15\x8f\xf4\xac\xee\xd3\xde\xf2\xf6\x16\xc3\x28\x34\x83\x74\xc6\x87\x1c\xe7\xa0\xc1\x8f\xb4\xe3\xef\x34\x78\x7c\x13\x36\x51\x08\xc0\xb3\x81\x49\xb8\x08\x37\xeb\x61\xbe\x9b\x88\x8a\xc4\x76\x50\xd1\x03\x77\xa1\xbd\xcd\x27\x1b\x0a\xe2\x1e\xc7\x76\x60\x7b\xd0\x0a\x96\x48\x45\xed\x80\x00\x4e\x61\x34\xb6\x3a\x4a\xf1\xe3\x66\xa0\xc2\x31\x54\x72\x50\x69\xbb\x57\x6d\x15\x37\xb6\xf1\x4c\x92\xaf\x31\x6a\x96\x75\x13\x28\xa8\x15\x0d\x05\xbf\xb2\xf6\xd2\x64\x27\x16\xec\x7c\x05\x88\xa0\x4a\xb1\xff\x5e\xd5\xa3\xd6\xd3\x6c\x65\x8f\xef\x35\xcd\xd1\x42\x87\xc9\xf8\x97\xb4\xd0\x61\x95\xbc\xaa\xf4\x9d\x50\x6e\x41\xa5\xe2\x1e\xb1\x63\xb1\x48\x1f\x75\xa6\x6d\x24\x85\x68\x0a\xcb\xe9\xae\xd0\x3c\x34\x5b\x41\x09\x82\xd8\xb5\x7c\x6c\xc6\x36\xdb\x4b\x0f\xcd\xb5\xb3\xca\x45\x13\xb9\xfa\x77\xa7\xaa\x39\x71\x51\x41\x40\x4e\x63\x8d\xc7\xa0\xbd\x8d\xc9\xc4\x27\x78\x35\x3c\x54\x14\x22\xfb\xcb\x0d\x02\xf3\xcf\xb6\xd7\x85\x74\xd8\xd4\x2a\xf5\xa5\xce\xb5\x61\x9a\x5b\x8c\x00\x81\x59\x68\x9a\xcd\x39\xe5\xab\x0f\x12\x36\xbe\xe2\x0a\x71\xd4\x54\xfa\xbe\xc4\xf8\x9f\x8f\xa6\x5e\x6d\xef\x8c\xae\xb3\x70\x89\x56\xd1\xb1\x36\x95\x5f\x1b\x02\x00\x31\x79\xf1\x38\x6c\x24\x3c\xd8\x8f\x7f\xd8\xe0\x84\xb7\xbf\x6d\x0f\x17\x36\x71\xd5\x65\xd0\xf8\x7f\x4c\x9f\xe2\x63\x05\x44\xed\xa5\xbd\x1e\x13\x45\x1c\xb8\x17\xdc\x47\xe1\xc0\x0b\xa9\x28\x4f\xcc\x18\xb5\x72\x0c\xa2\x93\xca\x5d\xfe\xbc\xb2\x8d\x39\x8f\xb9\xcd\x7f\xa4\x2a\xa8\x61\x66\x4d\x31\xc9\xd8\x9a\x54\xe6\xbe\x5f\x9c\x6e\x35\x30\xf4\xe1\x16\x47\x33\xc3\xd5\x67\x3d\x41\xe9\x9c\xea\xfa\xac\x45\x96\x30\x7c\x7a\x37\x83\x6a\x38\x36\xcc\xb3\x4a\xdf\xeb\x7f\x6f\x24\x5b\x84\x36\x33\xa3\x28\x6c\xa9\x5a\xc6\xeb\x4a\x38\xf0\xf5\xe0\x49\x59\x66\x0f\x8f\x6d\xd2\x8b\xe8\x5e\xe6\x14\x53\x1e\x03\x4a\x17\x73\x1d\x67\xab\x7c\x11\x28\xd5\x71\xdc\xce\xdb\xa2\xa3\x6c\xf5\xa3\xc4\xd2\x0c\x15\x18\xbb\x17\x3c\x44\x09\x02\xeb\xf2\x53\x1d\x0f\x92\x99\xdb\xa0\x0c\x0e\x23\xe7\xfc\x54\x09\xc6\xbe\x5a\x4b\x4c\x7f\xa9\xea\x07\x2d\x1e\x01\xf4\xa6\xf8\x44\x3d\x4b\xc8\xf2\xfd\xe2\x2f\xfc\x27\xad\x79\x11\x57\xfc\x37\x48\x17\xd9\x35\x67\xea\xa3\xa9\x3f\xa7\x20\x48\x36\xeb\x72\x0a\x88\x72\x73\x19\x75\x62\x85\xfd\xdb\x40\x89\x9c\xbc\x89\x49\x0f\x7d\x88\xaf\xf1\xd4\xc2\x1a\x7d\x03\xab\x3d\xe2\xa6\x1f\x21\x00\x44\x8b\xe1\xdd\x40\xb1\xc7\xde\xa5\xd9\x20\x31\x18\xbd\x00\xc6\x2a\x40\x64\x0a\xa9\xdb\x5f\xb0\xf4\x3f\x2e\xf3\x4d\x55\x9e\xfe\x16\xc5\x70\xd8\xf6\x40\x68\x57\x94\xc7\xfd\x3c\x49\xce\x52\xf1\x8b\x31\x53\xe5\x54\xdc\x3e\x83\xfc\x09\xb3\xf0\x3d\x34\x4a\x50\x77\xf8\x16\x69\x64\x88\x14\x23\xad\x49\x8c\x71\xc3\xae\x20\x2d\xbe\xd6\xa1\xe7\x38\x76\xfe\x06\x51\x0f\x1d\x98\x73\xd1\x79\x79\x5f\xd4\x0d\xde\xab\x44\x37\x94\xa1\xb8\xfb\xb3\x62\x3e\x08\xed\x6e\x5c\xf4\x91\x26\xb5\x02\xd3\x4d\xfd\xcb\xc6\xfd\x00\xd5\xc2\xc7\x4a\x3c\x20\x19\xe4\x8f\x29\x16\x3d\x87\x8a\xb8\xfc\x27\x20\xca\xe6\xaa\x0f\x5e\x92\x6e\x6e\x83\x5e\x22\xc3\xd5\x30\xf6\x10\xaa\x6f\xd1\xd8\x40\xde\x72\x82\x56\x3e\x6c\xff\xd7\x38\xbe\x00\xa6\xfb\xa9\x8e\xdf\x69\x00\xae\xc6\xa2\xf7\xd3\x40\x63\x51\x14\xb7\xfc\x54\xa7\x7c\x48\x95\xc6\x94\x73\x93\x77\xe8\xb2\x67\x9f\xe9\x94\x6f\x13\x00\xa1\x1b\x8d\xfe\x66\x66\x94\x4f\xca\x0c\xb0\xbc\x31\x79\x00\xf4\x05\xf2\x64\x9e\xf4\xed\xe0\x2c\x9d\x8c\xc1\x45\xa1\xdf\xc3\x56\x7a\x41\xb7\x38\x2f\x28\x0c\x40\x98\x26\x79\x84\xf5\x73\x46\xb5\x31\x94\x74\xd4\x9b\x53\x6f\x66\xf1\x7a\x6d\x81\xfb\xf9\x76\x6e\xb3\xc8\xa5\xc0\xe2\x9b\xe2\x01\x5b\xe7\x9c\x4b\x7b\x62\x8b\xa1\xcd\x62\x93\xf4\xb8\xbe\x87\x28\xfb\x32\x4f\x20\x4c\x62\xde\x1d\x59\xde\x65\xaa\xe4\xde\x9b\xd4\x4f\xf2\xb1\x95\x58\x42\xa2\x7c\x0f\xe2\x65\x25\x14\xec\x80\x27\x2b\x0c\xba\xc9\x60\x58\xf0\x15\x33\x29\x77\xaa\xb2\x94\x93\x4d\xad\x95\x2c\x8d\x63\x0b\x26\x3f\x26\xc3\x65\x15\xe1\xb0\x95\xbf\x58\x1e\xee\x4c\x84\x96\xf7\xb5\x27\xfd\x94\x7f\xf0\xff\x97\xb6\x3b\x99\x08\xf6\xdc\x0e\x88\xec\xf0\x28\xfd\x22\x1f\x4f\x2b\xae\x55\x23\x32\x6c\xc3\x0f\x08\xd4\x4e\x21\x2b\x15\xfe\x30\xb3\x79\xb1\x1e\x83\xca\x2e\x42\x75\xb7\x89\x76\xc3\xc7\xb5\x0d\xf9\xc0\x62\x7b\x64\xb2\x81\xc9\xa2\xc4\x2a\x66\x08\x28\xab\x7c\xec\x8a\xbd\xd1\x68\x6c\xb3\xbe\x65\xcb\x66\xc6\xe3\x04\x1a\x9b\x53\x09\xcb\x53\x6c\xa5\x5a\xb1\x40\xbe\xb1\xf1\x75\xa7\x2b\xb8\x04\x69\x7d\xd0\x84\x96\xde\x87\xbf\x49\x7b\x18\xea\x2a\x0f\xfa\x36\xc7\x5c\x47\x43\x72\x15\x9c\x94\xf1\xa0\xf8\x1f\x76\xb5\x61\xab\x25\xa5\xe9\x73\x49\xb9\x0a\x73\xec\x8d\xb9\xff\x3d\x20\xb7\x50\x1f\xfc\x3f\x02\x8d\x79\x4f\xd2\xc8\x95\x5f\x2a\x7d\x1e\x69\xed\x34\x25\xc0\x66\xd4\x35\x79\x6e\x7a\x69\x86\xd4\x03\xc1\xf9\x3f\xc3\x75\x39\x4d\x32\x57\x1a\xb9\xa8\x94\x07\x2c\x89\x9b\x97\x23\x61\x56\xa9\xe9\x70\x41\x8f\x4f\x94\x26\xde\x36\xbd\x75\x3e\x76\x31\xb1\x29\xa4\x73\x89\x82\x13\x6a\x6a\x08\x0c\xf8\xb8\x41\x67\xfb\x60\x7b\x64\x7a\x30\x38\xf5\x45\xe3\x45\x5f\x34\xf6\x9a\xf1\x5d\xf3\x5f\xb6\x54\x36\xf9\x7e\xa0\x30\x95\xef\xbb\x61\xd4\xcf\xa2\xd5\x34\x26\xb7\x15\xd7\xa4\xc7\x37\x8a\x5e\xd3\x63\x9e\x8a\x90\x4f\x46\x36\xcb\xb9\x42\xee\x84\x31\x3d\xa3\x90\x93\x0a\x91\xef\x94\x20\xa8\x9c\x09\xd9\x24\x44\x40\x47\x7f\x8e\xc8\xe5\x32\x46\x07\x9f\x78\x4f\xcc\x74\x2d\xc9\xa3\x57\x64\xa1\xc4\x7e\x8f\xae\x84\x38\xc0\xa8\x64\xf8\xaa\xca\x24\xfb\x93\xf2\x37\xa8\x63\xcc\xdd\x65\x25\x0d\xfc\xea\xd4\x67\x81\x71\x3a\xe9\xe5\x63\x6b\x56\x88\x68\xeb\x8d\x7b\x99\xef\x23\x10\x52\x3d\x83\x16\xf7\xff\xc2\x13\xe5\x6b\x54\xa6\xaa\xb2\x43\x71\xc3\x0b\xb7\xdd\xa2\xf6\xae\xa8\xc6\x28\xac\x3b\xb2\x2f\x57\x34\x73\x56\xa9\x47\x03\xe5\xbb\xb1\x4d\xa1\x84\x53\x00\x70\x7e\xc4\x00\x43\x49\x07\xc0\xcf\x90\x99\x8e\x62\xc4\x1e\xc1\x0c\x71\x19\x6d\x19\x20\xa1\x3e\x73\x3d\x68\x3d\xfd\xb4\x2b\xac\xe2\xfd\xb1\xe2\xa1\x66\x38\x9d\x77\xe9\x75\xd7\x9a\x70\x28\x6f\x4b\xea\x3d\x9a\x09\xaa\x36\x42\xb6\x9b\xea\xc6\x16\x36\x8a\x42\x36\x6a\x39\xa3\xe7\x93\x5a\xf6\xea\x1e\xef\xee\x88\x58\xdf\x50\xb2\xa4\xa8\x97\x3f\xa0\x52\xe5\x7f\x46\x5b\xa2\xd0\x3c\xbd\x20\xc2\x51\x8c\x1c\x26\xf8\x06\xca\x3a\xf5\x5d\xe4\x79\xae\x82\xe2\x7a\x7f\x27\x1d\x4c\x26\x35\x2b\x30\x0f\x70\x02\x01\x9b\x0a\xc4\x7c\x45\xdf\x66\xdd\x34\xec\x73\xed\xb1\xc9\x56\x86\xe6\x65\x88\xf5\x57\x10\xbe\x7c\x12\x3c\xec\x6b\x04\xd1\xac\x12\x4c\xfc\x30\xd0\x9e\x36\x2d\xa7\xd4\x72\x4d\x99\x6a\xd5\x51\x73\xfb\x0f\xb5\x5f\x9e\xe4\x45\x14\xda\x96\xc2\x37\xbd\x1f\xf8\x48\xe8\xfd\x1a\x20\x60\xff\xa1\x32\x07\x1b\x28\x61\x07\xb8\xd1\x49\x4c\xa4\xc0\xbe\x36\xcc\x6c\x61\xb2\xf5\x3d\x5e\x7a\xe2\x1a\xc5\xe9\xcc\xde\x9d\x7a\x34\xd3\x0d\xf5\x98\xbe\x36\x55\x72\xea\xac\x48\x26\xf4\x9c\x06\x09\xee\xf0\x15\x1b\x0e\x09\x03\x8c\x11\x81\x14\x0b\x2d\x85\xbb\x78\xe2\xd2\xab\xf8\xa4\xe6\x5b\xc5\xcc\x43\x94\x68\x9e\xfe\x92\x4f\x1c\x19\xd7\x1e\x0e\x6d\x9e\x47\xab\x96\x60\x85\x4e\x22\xd3\x37\x2d\x5e\x9d\x7a\xe4\x13\x74\xc5\xa4\x5c\xd0\x54\x97\x0b\xd3\x71\x54\x25\x58\x6f\x2a\x88\x4d\xdd\xfc\x60\xff\xa1\x76\x9c\x76\xbb\xeb\x1f\x0b\x2b\xf7\x35\xa3\xe1\x24\xef\x9a\xa4\x47\xee\xef\xc8\x2f\xb7\x82\x8a\x11\xf1\xa2\x30\x19\xcf\x4c\x55\xf1\xe3\x24\x21\x18\x58\x4b\x5d\x39\xe6\x6a\xef\xda\xd3\xda\x8a\xec\x42\x05\xa3\x91\x0d\x6c\x96\xcf\xfa\xf1\xc2\x62\x7e\x7c\x32\xf5\x8a\x1f\x77\xd4\x20\xb9\xa3\xe8\x2d\x45\x96\xa6\xe3\x96\x77\x42\x01\xd7\x9b\x8f\x95\x7a\x4f\x5e\x64\x51\x58\xc4\xeb\x2a\x72\x80\x92\x2e\x1f\xd7\xf6\xe1\x03\x8b\x50\xf1\x19\x46\xb9\x95\x47\xce\x48\x50\xb5\x72\x1f\xd1\xde\xf9\x69\xfc\x09\x7a\x32\xf2\x5f\x94\x5c\x54\xf4\x17\x51\xb3\x85\x59\xa9\x58\x30\xa8\x75\xec\xda\x54\x6b\x8f\x83\x41\x48\xf7\x83\x67\xfd\x89\x8e\x92\x2e\xe1\x05\xdc\xf1\x78\x9c\x7c\x31\x03\xc4\x85\xe1\xac\xbc\x6f\x0c\xb0\x19\x5c\x80\x51\xd5\x3d\xe0\x92\x45\x36\xf2\x51\x45\x1d\xee\x46\x21\xd5\x4c\x45\x8b\xa8\xe5\xdc\xbb\x8e\x29\x1e\x40\x65\x66\xd8\x55\x9b\xd9\x39\xba\x77\xfc\xe5\xb6\x82\xb2\x9f\x45\x02\x84\xb4\x00\x75\x76\x27\x86\x5e\x2e\x8e\xfc\x57\x2a\x39\x81\x2c\x29\x03\x5e\x1c\xed\xea\xac\x12\x81\x3f\xab\x94\xe3\xa9\x5b\xbb\xc7\xa7\x52\x17\xa7\x1a\x6f\x70\x15\xa9\xb1\xd8\x76\xa8\x9c\x01\x25\x2b\xd9\x5c\xe9\x95\x88\xed\xb9\x83\x30\x96\xdf\x9d\xad\xcf\x28\xf1\xb2\x4d\x45\x40\x7d\x80\x62\x4b\xbc\xbb\xfb\x0d\xe0\xa5\xfd\xed\xbc\x30\xdd\xae\x44\xf3\x78\x3d\x6f\x29\xa1\x88\xb7\xea\x66\xf6\xfb\xdb\xd9\x44\x20\x23\x62\xbb\x44\x3f\x2f\x36\x4a\xb2\xcc\xbc\x9c\x0e\x93\xbc\x48\xd7\x12\x7a\x59\x1c\x87\xea\x9e\xc3\xe5\x40\xf3\x5c\x84\xfc\x6c\xa1\x72\x27\xed\x15\x1f\xac\xfd\x40\x7b\x8d\x5f\x6b\x42\x0f\x33\x5a\x9a\x27\x86\x88\x66\xe8\x2e\xfb\x27\x15\x81\x64\x92\x84\x43\xe4\x7b\xac\x41\xad\xa6\xde\x16\xde\x83\x88\x53\xfb\xf9\xb9\xe5\xd0\x19\x85\xc9\x57\x18\x4e\x8d\x55\xf3\x0c\x1e\x03\xb0\x44\x78\xf2\x8e\xa9\xbb\xb8\xc8\x2d\x99\xab\x50\x30\xac\xec\x90\x64\x85\xef\xd9\xb4\x74\x19\xc2\xac\xad\x7b\xcd\x2e\xb6\x87\x26\xee\x53\xe7\x45\xc4\x3c\xa8\x78\x82\xf4\x04\xd7\x2a\xe1\x54\x13\x7c\xa7\x3b\xc9\x22\xbc\xf0\xfd\xae\x7d\x40\x37\xcb\x27\x0d\xe4\xa7\xb6\x3d\x6c\x46\x51\xc2\x75\x74\x57\xf4\x2f\x1f\x9d\x04\x4f\x8d\x89\xe9\x9a\xb4\x56\x30\x86\xbf\xa2\xb4\x84\xbe\xe2\xe3\xfa\x49\x91\x8e\x52\x38\x98\x2c\x0a\xd1\x90\x91\xcf\x88\x6a\xe0\x2a\x8d\x87\x7c\x55\xc5\xd7\xa3\xb1\x09\x5d\x29\x06\x8f\x17\x98\x33\x3e\x6e\xa2\x34\xad\xa5\xd9\x4a\x3a\x61\x0d\x5f\xb1\x8c\x6e\x39\xf2\xe2\x09\x85\xde\xee\x4f\x92\x64\x9d\xb4\x00\x44\xec\x5a\xb5\x03\x94\x53\x4a\x7d\x57\x7c\x7e\x5f\x7b\x35\xca\x8a\x89\x2c\xd1\xa2\x45\xe9\x6f\xe3\x42\x13\xdb\x35\x4f\xd7\xbb\xd6\x24\xf9\x4e\xfd\x17\x3f\x94\xdd\x2a\x38\x1e\x9b\xcc\x02\xe0\xa3\xa5\xf0\xf9\x58\xed\x66\xdc\x75\xe1\xae\x99\x38\x91\xab\x2c\xec\xb4\x6e\xa2\xbc\xa3\x50\x08\xa7\x55\xa4\x39\xc8\xac\x2d\x73\x6c\xa7\x72\xcd\x81\xbf\x98\x15\x6b\x04\x62\x34\x32\x65\x6c\xb4\xcd\xee\xf8\x0c\xd3\xd5\xa3\xe5\x2f\x2b\x11\xed\xdf\xd1\x6f\xa2\x96\xf2\x3e\xed\x48\xdb\x8d\xae\x24\x71\x34\xea\xe2\xd1\x54\x3c\x01\xf9\x44\x49\xb1\xe7\x71\x34\x1e\x47\xa8\x4a\x1d\x14\xaa\x54\xa0\x69\x53\x4f\xd4\x08\x36\x58\xc6\x91\xb9\xde\x53\x3c\xca\x7b\x0e\x57\xb5\x16\x25\xbd\x7c\x48\x1c\x8a\x19\x25\x86\xbc\x7b\x47\x8f\xd6\x05\x24\xd7\x6b\xc5\x96\x03\x8b\xed\x6e\x34\x50\xc6\xf1\xb7\x03\xe5\xe0\x72\xdb\x01\x57\x72\x6b\xc7\x18\xd5\x2f\x32\x32\x99\xcb\x09\x7c\x52\x83\x6f\x89\xd5\x4b\x94\x19\x49\x36\xb1\xa7\xef\xea\xa8\x57\x70\x55\x5b\x32\x9f\x57\x78\xf6\xb4\xdf\x8f\x42\x9b\x21\xab\xc6\xbe\xf1\x86\xe2\xf0\xbe\x51\xeb\x9e\x2e\x2e\x1e\x6c\x4f\x12\x9b\x84\xa4\xf4\x2d\x13\x10\xfb\xde\xb5\xa9\xdf\x0f\xaf\x35\xba\x07\x90\x4f\x9e\x96\xf7\x7f\x15\x5d\x7c\x81\x44\x78\x85\x57\x1b\xdb\xb0\xc8\xd2\x24\x0a\x79\xbb\x41\x81\x54\x64\xc3\xf9\x4c\x0d\xd3\x91\x59\x59\x33\xc3\x96\xce\xb7\x79\x21\xe1\x93\x4a\x86\x3a\x29\xd2\xbd\x3e\x7e\x3b\xa5\x28\x09\x37\xa7\xbe\x3a\x8f\x80\x8c\x52\xc1\xc9\x63\x14\x3f\x3a\xf0\xa9\x5f\x42\xb6\x35\xb1\xe3\xcf\xa6\xaa\x3e\xf1\x4d\x6d\x31\x15\xe5\x11\x8f\x34\x59\xa1\xfc\xc6\xf0\x9e\xee\xf0\x46\xe5\x83\x6d\x29\x68\x2a\xb6\x10\x3e\xde\xc9\x67\x99\xdf\xdf\x7e\x7e\xdf\xb3\x0f\x7b\x08\x28\x63\x8a\x45\x3e\x13\xcf\x83\xc5\xbf\x51\x43\x47\x7c\x73\x8e\xee\x53\x74\xf2\x7c\x41\x63\x8e\xee\x53\x7e\xad\x4c\x6e\x04\x33\xa5\x8b\x17\xaa\x23\xf1\x23\xec\x20\xe2\xb9\xab\x74\x9a\x99\x45\x59\x6e\x50\xf2\xb6\xcb\x67\x2e\x2f\xbb\x81\xf2\x14\x47\xdd\xcc\x64\x88\x89\x19\x98\x5f\xb1\x8a\x7a\x4c\x33\x96\x57\xa3\x41\x8a\x3d\x18\x51\xfd\x71\x2c\x6d\x40\x14\xb2\xa6\x2b\xff\x8f\xb2\x30\x38\xa9\x8a\xf4\x76\xf5\x19\xda\x77\xa4\x54\x52\xfe\x94\x4b\x9a\x17\x9d\x77\xf4\x96\xe3\xea\x8e\xcc\xfa\x8c\x0a\x62\x6e\x2a\x35\xd3\xf7\x28\x60\x13\xd6\xa0\xa7\xf1\xa5\x63\x06\x57\xb5\x1c\xe1\xfe\x53\x54\x9f\xe1\x63\xd5\x25\x2f\xd2\x34\xa6\x56\xdb\xc2\x82\x64\x53\xc7\x2b\xfe\xe1\xbe\x70\xf8\x76\x2d\x36\xfb\x5c\xbb\x90\xbd\xdd\x81\x69\x11\x5d\xca\xae\xb3\x33\xa1\x78\x7e\x5f\x3b\x1c\xa6\xb1\xcd\x0b\x9b\xa5\xb1\x8e\x65\xa7\x2a\x96\x55\x86\xd7\x49\x9a\xad\xa5\x69\x8f\xe7\x98\x88\xf1\xd3\xf3\x10\x35\x7e\xff\x6c\xc3\xd8\x3e\xe0\x46\xd5\xe7\x1f\xdb\x50\x1d\x62\xb6\x0f\x40\x19\xf8\xc7\x94\xe8\x0b\x29\x1a\x5f\xcd\x55\x44\xba\x0c\xca\xfc\x96\x3e\x0d\x2b\x02\xb1\x30\x91\xf8\xc1\xf9\xbc\xf5\x1e\x2c\x47\x96\x34\x1e\x68\x50\x20\x67\xdc\xa0\x0c\x06\x0f\xf0\xb6\xe2\xcf\x7e\x1a\xf4\x4d\x4a\x56\xfe\xcd\x4f\xa1\x32\x24\xee\x37\x3e\x01\x66\xbe\x3e\xd6\x4d\x5e\xb2\xb1\x04\xdc\xf4\x3e\x4d\x26\xeb\x91\x99\x1a\x0d\x25\x44\xb4\xb7\xb0\xac\x69\x83\x29\x8c\x92\x13\x7a\x08\xc7\xb6\x37\x10\x86\xac\xab\x10\xfa\xce\xd0\x85\xe0\x1f\x34\x50\x84\x87\x69\x56\x98\x81\xed\xc7\x9e\x1b\x85\x50\xe4\xb8\x16\x90\xf5\xfd\xe5\x91\xc9\xa5\xdc\xeb\x3c\xca\xcb\xbf\x13\x8f\x72\xaf\x81\x34\x5c\x1f\xa7\x61\x16\xe5\xeb\x7a\xfb\x39\x83\x9d\x9c\x4f\xdc\x8e\x98\x9b\x30\x8b\xfa\x51\xe8\x60\xdd\x78\x2a\x68\xdc\x63\x21\x81\xe3\x29\x62\x8b\x63\xb5\x90\xe7\xc0\x62\xdb\x26\xf9\x24\x93\x28\x11\x8b\x12\xab\xc0\xf2\x89\x12\xb0\x0c\x27\xa3\x88\x51\x06\x4d\xbe\xca\x0d\x75\xa0\x9e\x1d\x99\xa4\xc7\x41\x98\xa8\x0a\xf9\xe6\xc8\xc9\x46\x49\x82\x2e\x35\x61\x1a\x94\x25\xd0\x57\x7e\xa4\xe3\xbd\x85\x58\xe1\x16\x51\xd7\xae\x8d\xc7\x7d\x64\x3a\xd2\x96\x15\xec\xde\xaa\xec\x01\x36\xa7\x4f\x28\xf7\xf9\xb5\x7c\x9c\x45\x49\x41\x0e\x8f\xae\xde\xe9\xc0\xeb\xd7\xb4\x06\x1f\x92\x71\xac\x3c\xa7\xf0\xa0\xc4\xe7\xc6\x93\xae\x33\xcf\x6a\xc3\xd7\x7d\x9f\x7e\x1a\xc3\xf9\x86\xea\x8e\x68\xfe\x10\x84\xbf\xe3\xf5\x3d\xad\xc5\xc5\xed\x13\x81\x9a\x6a\x58\x73\xa4\x18\xd9\x7a\x61\xc9\x15\xcf\x75\x95\xb2\x9c\xc2\xdb\x27\x1a\x3a\x07\x5c\x08\x1f\xbb\xa1\xea\x48\xd9\x6e\xb1\x39\x5a\x8b\x95\x0e\x3d\xd7\x0e\x27\xd0\x85\xc4\xa5\xde\xa0\x1b\x07\x34\xa3\xd5\x51\x2a\x55\x97\x7c\x42\x90\x45\xa3\x28\x31\xe2\x3d\xed\x1e\x52\xf9\xf2\xf9\xc4\xc3\xa1\xd2\xd1\xd8\x16\x76\x8f\x6f\xf9\xb3\xe4\x8d\x72\xaf\x13\x06\xd0\x2e\x5a\xaa\x51\x04\xb8\x8d\x75\xc5\x49\x6b\x3f\xbf\x8f\x13\xdb\x6d\x05\xc8\x31\x5d\x93\xf4\xd2\xa4\x5c\x88\x97\x9c\x9e\xef\x69\x65\x54\x7e\xba\x81\x9e\x4b\xf8\xde\x4a\x5a\x7d\x23\x50\x69\xf5\x8d\x86\x4c\xf0\xc5\x72\x9d\x8d\x66\x54\xf4\x75\x74\xea\x7f\x64\x37\x0a\x33\x62\x25\xaf\xed\xd1\xd2\x7e\x54\xe4\x0f\x94\x17\x8f\x67\xd8\x82\xa6\x2a\xc3\x1d\x90\xfa\x0a\x2a\x4f\xa9\x21\xdd\x50\x5e\x21\xbf\x85\xf2\x99\x64\x50\x2a\xcd\x79\x55\xd5\x5d\x4c\xbf\x6f\xa2\x6c\x56\xa3\x45\x69\xce\x62\xe1\xb9\x42\x8f\x04\x5f\x71\x55\x27\x7c\x6f\x37\xe9\xbf\xe5\xa6\x8f\x16\x9b\x70\x02\x7d\x27\xf8\xa4\xab\x39\x00\x48\xee\x3c\xce\x45\x78\xce\xe3\x53\x4e\x28\x96\x7e\x3f\x9e\x84\xc5\x84\xd6\x50\xcd\xac\x04\x88\x95\x8f\x37\x76\x5e\xc9\xe2\x62\x7b\x64\xa2\x78\x46\xc9\x80\xfc\xad\xee\x81\x61\xe3\x04\x29\xe0\xa2\x93\x22\xe9\x03\x9f\xd3\x83\x0a\x16\xb2\x05\x0e\x9a\xb0\x58\x7f\x8d\x6e\x47\xc4\x97\x77\x32\x47\xe6\xe7\xdb\xbd\x88\x40\x4d\xc2\x03\x63\x49\x9c\x1d\xf2\x38\xbe\x5f\xb3\x56\x06\xe6\xa8\x6e\xf0\x3c\xa1\x38\x0e\xb0\xa9\xa3\x53\x6f\xa3\x79\x87\x62\x16\x41\xd9\xc8\x8e\x61\x7a\x91\xa1\xdf\x41\xe6\x79\x4a\xcb\x90\x9e\x52\x11\x77\x6e\x46\xe3\xd8\x62\x81\x15\x60\xb9\xaf\x75\x6a\x1f\x8a\x22\x9b\x84\x2b\x2a\x7d\x3b\x4b\xb1\x27\x1f\x2b\x25\xdc\xbe\x89\xe2\x49\x66\x67\xbc\xec\xc7\x55\xac\x73\x68\x5f\xdd\x54\xc0\xff\xd9\x1a\x5f\xeb\xf9\x7d\x8b\xed\x68\x54\xc6\x85\x12\x05\xa1\x6a\xf3\x37\x8a\x8a\xf6\x37\x6e\x11\x48\x27\x45\x1e\xf5\x2c\x29\x48\x00\xdd\x23\xaa\xcf\xa2\x4a\x52\x3e\x32\x07\xde\x28\x5f\x38\x0b\xb1\x6c\xa8\xa9\xf5\x91\xff\xee\xff\xf3\x67\x68\xe8\xe0\x61\x1e\xc7\xeb\xd5\x8a\xe3\x48\x19\x6f\x2b\x2b\xd8\x4f\x51\x86\xb6\x7d\xa4\xb9\xe3\x9a\xe7\x69\x18\x19\xd2\xf4\xf0\x60\xcf\xfb\x7c\x8d\x58\x77\x1e\x46\x8a\xc7\xcd\x00\x2d\xd2\x38\xb3\xe1\x25\xa6\x13\x33\xb2\x73\x7e\x84\x6f\x4d\xb5\x40\xda\x59\x2d\x9f\x70\x5b\x11\xb1\xbe\x88\xb7\x2e\x8c\x65\x19\x1b\x71\x64\xb1\x90\x63\x13\xbc\x45\xb3\x8b\x8f\x6b\x9c\x27\xe2\x2f\xc6\xb1\x29\x6c\xc6\x1c\x75\xb4\x12\x76\x6d\xf8\xb6\xc2\xae\xce\x93\x1a\xf6\x11\xc6\x93\x9e\x4b\xdf\x91\x4c\xdf\xc1\x8d\xf1\x49\x2d\x90\x28\x63\xa2\xdf\x9c\x58\xfb\x8a\xbc\x75\xcc\xf5\xcb\x6a\xde\x5f\xd6\xa5\x3f\x3b\x28\xf7\x22\xdd\xb0\x98\xaa\x86\x45\xe0\xa9\x91\x85\x39\x1c\xa9\x22\xcb\x09\x55\x64\x69\xda\xea\x0e\xaa\x60\xb4\xa5\x0b\xb9\x6a\x9a\x36\xf6\x43\xf2\xe8\x70\x31\x9c\x71\x3d\x90\xdf\x7e\x8c\xc6\x11\x9a\x8c\x0f\x6e\xd0\x5e\x2c\xe4\x37\xa5\x57\xd9\x9b\x84\x8c\xcb\x7d\x7e\x9f\x6b\x5c\x2a\x11\x84\x37\xa6\x4a\x45\x01\x18\x4e\xf4\x44\xee\xd6\xca\x75\x0b\x0b\xed\x7c\x1c\x65\x51\xd1\x52\x16\x98\x97\x94\x37\xdb\x25\x0d\x62\x20\x21\x8b\xbc\xa0\x11\x85\x64\xf0\x32\x8d\x69\xc4\xc8\xd7\x08\xf6\x8a\x55\xe7\x03\xe0\x84\x19\x33\xa8\x54\x5c\x2e\xbb\x25\x3b\x4a\x56\x6d\x5e\x44\xc9\x40\x5b\x05\xdf\xa7\x27\x8d\xf2\xd2\x35\x35\x77\x8e\xaa\x5c\xe8\x9b\x4d\xbc\xde\x3c\x4e\xd7\x66\xbc\x64\xe1\x19\xda\xa2\xf1\xc6\xd0\x12\xc7\xca\x7c\xab\xc9\xd4\x62\x64\xf3\x3c\xcb\x9f\xa9\xc0\x61\xce\x06\x0a\x0e\xa3\x55\xb5\xe2\x94\x4d\xe3\x98\x68\x3b\x55\x36\x31\xbb\xd8\x4a\x13\x5b\xdb\x11\x4a\x94\x1d\xcc\xc1\x35\x2e\xee\xa2\x17\x23\xd5\xac\xf2\x01\x02\x78\xf4\x8d\xaa\x16\x6a\x79\x07\x5a\xaa\x45\xa2\x03\x97\x77\x7e\xfb\x27\x6a\x0b\xe1\xfc\x7c\xdb\x1e\xb6\xa1\xdf\x2f\xd0\xd8\x79\x55\xc9\x1b\xbc\xaa\x16\xdd\xdc\x0e\x46\x36\x29\x08\xe0\xad\xf4\x15\x65\x17\x7c\x8d\x7e\x57\xb4\x16\x69\x0b\xe3\xff\x50\xb0\x92\x35\x93\x03\x4a\xef\x4c\x3c\x6e\x69\xa1\xe1\x5b\xd3\x9f\x74\x0c\x45\xdb\x8b\xc2\xe2\x9f\xfc\xe7\xa6\xb7\x9a\x86\xa2\x8a\x8d\x75\xf2\x75\x2c\xb3\x7c\xa2\x36\x9a\xcc\x8e\x4d\x94\xed\xa9\x08\x63\x39\xbd\x41\x0e\xd0\x11\x0c\xa0\x55\x8a\x46\x09\x1a\x7e\x15\x88\x0b\x9e\xfd\xdb\x2e\x7d\x7c\x39\x9d\x64\x89\x89\xa3\x7c\x34\xe3\x37\x27\x94\x7a\x1d\x59\x5f\xf5\x08\x6a\x33\xa7\x0c\xc3\xb2\x28\x17\xa1\x13\x67\x4a\xe1\x0d\x2a\x94\x24\xca\x6f\x4e\x4c\x96\xc1\xb5\x40\x13\x66\x30\x6a\x6e\x2b\x0a\xe1\xbb\xae\xc3\x53\x60\x72\x20\x93\x40\xe0\x80\x92\x03\x1f\xd7\x16\xc3\xa5\xe5\xa5\x76\x91\x99\xf1\x58\xd6\x20\x04\x6f\xcc\x59\xe6\x93\xa9\x97\x30\x8e\xd3\x7c\x8f\x7a\xe8\xe7\x31\x63\xb1\xdc\xc0\xa2\x93\x8f\x03\xff\x9a\xce\x63\x99\x11\x25\x5e\x1f\xa6\xd7\x57\xb7\x85\x85\x76\xd7\xe4\xb6\x22\xfc\xf8\xce\x54\x09\x3f\xbe\xa3\x2a\x64\xdd\xcc\x44\x1c\x8b\xa1\x32\xc0\xd4\x13\x3e\x51\x8b\xdf\xd8\x26\xb6\xc8\x68\xf0\x38\xa9\xc4\x4d\x65\xec\xbf\xa9\x6c\x42\x63\x6b\x7a\x96\x55\x15\xca\xdf\x15\xde\x3c\xbd\x57\x8c\x87\xd9\x0e\x66\x2c\xc6\xea\x6d\xc5\x6d\xa7\xec\x25\x2e\x8c\xb4\xfa\x9c\x3c\x45\xf9\x61\x09\x45\x1b\x72\xcf\xea\x62\xc2\x6e\x1b\x3a\x63\xfa\xab\x5a\x94\xb7\xb8\xd8\xa6\x0d\x3f\x56\x9a\x92\xdc\x94\xc4\xcf\x49\x87\xd2\xf3\xdc\xf2\x61\x99\x25\x2d\x2f\x71\xe4\x78\xb3\x82\x5a\x28\xdf\x1d\x2a\x4c\xef\xd6\xf6\xe5\x72\xb3\xea\xd9\x51\x1a\x66\xc6\xfd\x56\xa5\x54\x2f\xf2\x1a\x3b\x05\x9d\xc8\x57\x5d\xf1\x7f\xb9\x1a\x8e\xbd\x13\x92\x92\x58\x28\xb0\x84\x33\xd2\x46\xc5\xa6\x66\x3c\x2e\x77\x8f\x96\x9f\xbe\x10\x32\x17\xe9\xd0\x06\xe3\x82\x71\x66\x73\xea\xb5\xd2\x18\x12\x32\x25\xfd\xae\x50\x2e\x3f\xa9\x1a\xa2\x51\xc8\xdc\x67\x4c\xfc\x77\x95\xe8\xdc\xbb\x4d\x65\x82\x35\x13\xf7\xd2\xac\xdf\xf2\x80\xf4\xdf\xd3\x44\xfb\xdf\x0b\x9e\xf4\x59\x32\x98\x95\x22\xe7\xe1\xec\x9a\x3c\xe7\x5d\x8d\xe6\xbe\x1d\x99\xd8\xaa\x3f\xc4\x00\x15\x22\x8b\xc6\x0b\x98\x28\x99\x53\xe0\xae\x73\x9a\xd3\x75\x5b\x5b\x53\xdd\xd6\xdb\x78\x50\x26\xe3\x58\x89\x2f\xa9\xad\xe9\x17\xf6\x7f\x41\xf9\x8e\x5c\x56\xab\xc5\x65\xd5\xfa\x18\x67\xd1\xc8\x64\x51\xbc\x3e\xa7\x94\xd3\x99\x29\xc2\x76\x81\x81\xdf\xac\xd8\xa2\x1f\xf9\x19\x76\x55\xfe\x84\x17\x31\x4c\x0f\xa3\x30\xca\x85\x06\x0e\x32\x81\xb7\x46\x55\x48\x4a\xcd\x0d\x52\x0d\x50\x78\x48\x04\x35\xeb\xd6\x1f\xe5\xcf\x44\x57\x00\x68\xf6\x1d\x47\x57\xcb\x57\xa2\x38\xce\x91\x8e\x29\x95\x25\x59\x5d\xee\x2a\x68\xea\xc5\x8a\x01\x7c\x3e\x5b\x6e\xcb\xb8\xd6\xfb\x15\x4d\xa1\x96\x93\x56\xff\x11\xbd\x59\xf9\xf7\x9d\xe1\xc6\xa1\xe7\xda\x23\xb3\x82\x54\x45\x7f\x8f\x2b\xa8\x2b\x10\xcc\xa3\xba\x97\x66\x0a\xa8\x3a\x20\x51\xbf\x3f\x55\x70\xb8\x4b\x15\xeb\x0a\xa0\x1b\x81\x93\x3a\x89\xa5\x10\x21\x02\x98\x32\xc0\x74\xdc\x55\x02\x32\x99\x09\xcb\x65\x31\x84\xa6\xa6\xc0\xbf\xce\xea\x8d\xf8\xac\x9b\x2b\x99\x35\x71\xf4\x8a\x2c\xcd\x0c\x47\xae\x62\x93\x2b\x94\x9a\x28\x34\x28\x61\x23\xfe\xba\xa1\xcc\x57\x6e\x38\x30\xf5\xd0\x9a\xd5\xf5\x35\x1b\x0d\x86\x85\x0a\xf7\x37\x15\x8a\x68\xb3\x56\xed\x59\x58\x68\x0f\x53\xfc\x39\x3a\x84\x20\xbd\xf0\xb1\x6b\x8c\x75\x27\x45\x91\x42\x44\x06\x31\x10\x2a\xe3\x7c\xac\x82\x85\x35\x13\xaf\x44\x49\xab\xf5\xf4\xd3\xa2\xaa\x0d\xa4\x9f\x48\x6c\x37\x00\x89\x63\x7b\x38\x4a\x06\x45\x45\x69\xea\x03\xbc\x18\x3e\x29\x43\x9d\xff\xc2\x95\x7b\x8b\x09\x17\x2d\x51\x8b\x67\xc6\x23\x9f\xb8\xc1\xb9\x96\xe1\x39\xb8\x7e\xee\x6b\x3a\x91\x7e\x4d\x5d\xf2\xba\x49\x56\x6c\xaf\xe5\xb1\x90\xd5\x45\xe5\x09\x55\xa7\x63\x15\xe1\xbd\xb4\x05\x63\xf6\x7f\x95\x02\x34\x0d\x08\x66\x37\x15\x6c\xe6\x48\xe7\x4e\xa8\xde\xf8\x11\x02\x07\xf2\xbf\x07\x15\x4a\x5e\x39\x9a\x31\xfb\x1e\xea\x28\x8d\x7b\x52\xe0\x46\x1e\x8a\xbe\xed\x9f\x4d\x95\x6c\xc9\x9f\x11\xe9\x42\x54\x89\xb4\x44\x51\x23\x95\x73\x32\x1e\xda\x98\x67\x3a\xe0\x86\x1f\x29\xa5\x6d\x6e\x5f\x89\x70\x51\x13\x0f\x0b\xe1\xa0\x44\x38\xcc\xe4\x52\x9e\xc0\xa7\x1a\x3e\xd5\x2e\xf3\xca\x30\x4b\x27\x3c\x37\x80\xe7\xfa\x1e\x3d\x15\x3e\x6e\xe0\xb6\xb5\xcb\x2b\x9d\xa5\x0f\xa0\xfa\x08\x59\x30\x65\x94\xb7\xbf\x42\x2c\x12\x92\x9d\xc4\x6f\x23\x1b\xc7\xa9\xc1\xb0\x72\xfa\xf5\xe5\x83\x13\xa1\xc1\xba\x4a\xc8\x52\xbb\x1f\x25\x46\x15\x90\x51\x8e\x78\x5d\x95\xbb\x5f\x57\xdb\x8c\xcd\xc7\x26\x31\xad\x72\x35\xe3\x75\x0e\x2f\x54\x16\xbd\x7a\xe1\xf0\xd9\xb6\x59\x33\xeb\xb3\x9e\x5d\x74\x77\xea\x2d\xd1\x1f\xe9\xa8\x56\xa3\x82\x70\x5d\x70\xc4\xdf\xd8\x50\x95\x98\xb3\xba\xfb\x78\x06\x28\x3a\xfc\x44\x87\x72\x1a\x07\x5e\x28\xd7\x12\x64\x6e\xb7\x76\x72\x54\x3d\x79\xb5\x41\x05\xb5\x17\xe5\x45\x9a\x61\xe6\x48\x40\x57\x3e\x5d\x09\xf4\x1a\x76\xf1\x78\x32\x1a\x3b\x35\x21\xcc\xf4\x53\x81\x5f\xca\x4f\x35\xb5\x1f\x86\x66\x30\xf0\x3e\x86\x62\xf2\xe8\xf1\x08\x27\x15\x99\xa1\xc8\x4c\x92\xf7\xb9\x73\xcd\xfd\x7e\xa5\xb2\x7e\x69\xfa\x0f\x3f\xa6\x2d\x9f\xd8\x55\x9b\x15\x43\x1b\xdb\x3c\x9f\x6d\xcd\xcf\x7b\x61\x29\x91\xec\x38\xf1\x78\xc7\x67\xc6\xdb\xba\xed\x58\xcf\xd4\xa9\x43\xea\xc5\xca\xdd\x7b\x5a\x58\x70\x0d\xdb\x06\x2c\xce\xd0\x14\x19\xab\x20\x39\xdf\x04\x1f\x37\x4f\x95\x0c\xfc\x8f\x1c\x0c\x7d\x92\x98\x30\xb4\xe3\x02\x3e\x3b\x3e\x12\x08\xbc\x0f\xe0\x05\x65\x63\x96\x3c\xb3\xfa\x4c\x45\x08\x9d\x89\xe9\xe2\x17\xf3\x84\x16\xdd\x27\x23\xbf\x1c\x3d\x0a\x81\x16\xb6\x9c\x6d\x08\x70\x95\x22\x21\xfe\x98\xb2\xf6\x18\x97\x93\x9e\xea\x1d\x42\xab\xa1\x21\xc6\x27\x81\x2a\x36\xbc\x4b\x2b\x1c\x1f\x37\xc1\x93\x7a\x76\x90\x59\x16\xd3\xc6\x5c\xfc\x4e\x45\x9b\xd9\x23\x20\x4e\xd4\x10\x10\xf2\x6a\xf1\x80\x24\x66\xc1\xf3\x87\xf4\x00\xa2\x8f\xc7\x3b\x0a\x82\x7c\x4f\x25\x82\xa3\x34\x29\x86\xf9\x5e\x65\xcb\x3b\xb7\x41\x17\x2f\x6a\x1b\xad\x5f\xf9\x0d\x46\x4a\xfd\x90\xc6\x09\xf6\xc2\x6f\xd2\x4d\x21\x6c\x98\xe9\xf8\x58\x9b\x63\x23\x5c\x3a\x1b\xa5\x22\x82\x98\xed\x34\x94\x7a\xc2\x74\x64\x7b\xa0\x16\x03\x6b\x79\x43\xe9\x88\xde\xd0\x9e\xfe\x36\xb3\xc5\x8c\x17\x88\x60\x16\x8a\xf6\xfb\x46\x59\x76\x77\xcd\x6f\xec\xa5\x97\x60\x8a\x6b\x73\xcc\x62\x97\xcf\xf9\xb6\xef\x59\x25\x42\x16\x4e\xba\xa8\xee\x8b\x4c\xb6\xba\xa1\xf3\x81\x97\xb5\x78\xfa\xe9\x9f\xa3\x41\x23\x5e\x88\xea\xcf\x1e\xe8\xd0\x13\x74\x62\x5b\x4e\xc2\x7e\x2f\x19\x90\xe3\xdf\x5b\x1d\xcf\xfb\xfb\x1a\x96\x21\xa9\x5b\xd3\xcb\x70\xe6\x5c\xbf\xfe\xab\x3c\x30\x59\xb8\x52\x28\x88\xe5\x0b\x90\xb9\x09\x16\xa4\xa3\x2b\x2c\x4b\x00\xd0\x82\x50\x37\xe2\xc0\xd9\x8e\xf7\xf1\xfc\x08\x56\x88\x92\xc7\xd1\xd8\x45\x48\xbd\xa5\x14\xdd\xb8\xc9\x4c\xd1\xdd\xa1\xc7\x37\x88\xe0\x09\x52\x34\xb6\x18\x4c\x92\x2f\xa2\x42\x83\x89\xf8\x45\xee\x9a\xa3\x7a\x80\x4a\x02\x8b\xd9\x05\xad\x97\x5e\x12\x39\xbf\x4e\x6b\x5e\xf6\xd5\x27\x36\xca\x1d\x1b\x4b\xce\x29\xa8\x0f\x89\xac\x55\x39\xf6\x9c\x60\x6b\xb9\x9a\xf2\xe0\x73\xd0\xc7\xbe\xc9\x46\xb9\x16\xf2\x3d\x17\x28\xab\xcf\xba\x28\xe7\xf3\xfb\x16\xdb\x7d\xd2\x6e\x52\x05\x49\x6c\xd7\x92\x66\x4a\xc4\xd4\x4f\x63\x47\x2e\x43\xdc\xff\x21\xbe\x9b\x4f\xd4\x90\x59\xb3\x49\xb1\xb7\x7c\xe8\x28\xce\xcd\x6c\xa8\x26\xd6\xa6\xaa\x1f\x9e\x54\x6e\xd2\x6c\x0c\x8e\x6a\xff\x65\x4c\x14\xc1\x6b\x78\xc7\xd9\x6f\x7b\x11\xb3\xbb\x8f\x75\x1e\x53\xb2\xce\x71\xba\x56\xae\x3f\x9a\xd3\xa9\x08\x9e\xf4\x43\x80\x73\x31\xc7\x85\x4f\x6a\x5d\xa4\xfd\x87\xda\x93\x9c\xf7\x12\x57\xbc\x50\x0b\xf2\x13\xca\x59\x3a\x8f\x5c\x05\x48\x00\x4a\x50\x21\xe6\xe3\x8e\x06\x35\x0d\x6c\xf6\x78\xf9\xa5\x6c\xc3\x1f\x28\x5d\xa7\x63\x18\x6f\xe2\x2f\xa0\x4a\x66\x17\x15\xe4\xf4\xae\x92\x38\x62\xcb\x29\xbc\xfe\xbd\x1b\xce\x18\xe0\xb7\x3f\x85\xbb\xe3\xba\x15\x66\x8e\x58\x60\xd1\x50\x72\x22\xdc\x07\xbc\x53\xae\x2f\x53\xdc\xe1\x24\x07\x0b\xce\x79\x92\xbb\x72\xee\x75\xfb\x0f\xa1\x78\x77\xf5\xf1\x0d\xed\xbc\x1d\x78\x5c\x58\x2f\xca\xcd\x78\x6c\xa1\x76\x79\x40\xea\x99\x67\xe8\x07\xc4\x33\xec\x11\x05\x1b\xc8\x8a\x19\x0d\x57\xb9\xa9\x0d\x3a\x7e\x7f\xaa\xe4\xb9\x6e\x68\x57\xce\xd4\x8c\xd4\xeb\x39\xae\x5e\xcf\x71\x95\x47\x1e\xb6\xbd\x87\xbd\x11\x41\xd6\xee\xf8\x9a\xf8\x43\xc0\xab\x08\x9f\x5e\xc1\xc5\x1e\xe2\xfa\xb0\x18\x83\xb7\x9c\xae\xf0\xa7\x41\xfe\x55\x32\xa1\x4b\xcc\xb9\xbe\x89\xc5\x0a\xdf\xb6\xad\x10\x2d\x9f\xd8\x50\x36\x50\x3f\xd3\xd9\x19\xed\x2d\x2d\x2f\x11\x00\x1d\x85\x7d\x3c\x9e\x6f\x61\x58\xf0\x89\x03\x74\xd8\xc3\x61\x3c\xc9\xa3\xd5\xa8\x80\xd5\x21\x06\x07\x73\x87\xa4\xcc\xd0\x72\x2a\x2f\x0c\x7d\x44\xc5\xf4\xa4\x82\x3b\xd9\xd1\x78\x68\xf2\x28\x6f\x29\xa1\xf2\xb9\x0d\x25\x61\x3e\xd7\xf1\x0f\x70\x60\x7a\xe8\x0f\x63\xb7\xbb\x46\x1c\x67\x2c\x5d\xdb\x4a\x55\xf6\x84\x56\x43\xf9\xd7\xea\xc7\x32\x6b\xc2\xa1\xd4\x9d\x9d\xad\xbe\x6b\x69\x6e\x06\xfe\x95\xc6\x51\x62\x1f\xa6\x95\x59\xb0\x64\xbe\xff\x7c\x99\x9a\x16\xc2\x36\x50\x96\x56\x37\xa6\xda\x93\x93\x6e\x9f\x19\xd8\xc0\x48\xb0\x0a\x3a\xe6\x00\x32\xb0\x73\xf4\xfb\xfc\x5d\x3c\xd4\x71\x35\xb7\x41\xf5\x17\x90\x47\xc5\xdd\x29\x1b\x3d\x42\xbf\x24\x61\x3b\xbd\x22\x20\x86\xce\xc0\x71\xd8\x29\xd8\x97\xef\x03\x41\xf9\x16\x2e\x82\x65\x0e\x03\x5f\xed\x86\x89\x2c\x4a\x34\xe7\x95\x3a\xe4\x2d\x0c\x7e\x54\x4a\x4e\x4c\x15\x40\xe1\x0a\x96\x46\xa7\xa9\x56\xbe\x5b\xc1\x1d\xab\x04\xf1\x9a\xcb\x6c\x06\x59\xd4\xeb\x49\xec\xe3\xdc\x2d\x5c\x40\x7c\x13\x83\x4c\x3a\xce\x3b\xd3\x1c\x09\xa1\x6c\x1c\x43\x3b\x64\xc9\xb1\xbe\xe8\x0b\xf9\x64\xfa\x94\x87\x3c\x67\xe9\x38\x8b\x50\x74\x24\x11\x1e\x60\x1e\x84\x4d\xc1\xd0\x47\xdc\x1f\x87\x07\x81\xef\xc5\x9f\xd5\x00\x83\x8d\x26\x70\xee\xd0\x66\x73\xd8\xd1\xb1\x1a\x40\x41\x12\xcf\xf9\x2e\x14\xee\xb0\x2b\xb6\x3a\xe5\xaf\xbb\x6d\xc3\x55\x2a\xee\x2b\xe0\x63\x94\x13\x67\x8e\x7e\x13\x2b\xe3\xb5\x40\xb1\x6d\x8e\xf0\x45\xb3\xef\x59\x43\xb6\xfa\x6c\x9b\x94\x46\x5c\x8e\x8b\x64\xe9\x5f\x06\x0a\xb7\xff\x2f\x6b\x99\xd3\xc2\x42\x3b\xb6\x26\x4b\xd8\x84\x4f\x0a\x51\x4a\x98\x62\xb3\x41\x94\x4d\x4f\xfc\x56\x6d\xb2\xf3\x71\x05\x3a\x9b\x16\x29\x5e\x3b\xb6\x5e\x54\x82\x78\x4c\x61\xb0\x60\xd1\x3a\x55\x4b\xd4\x5e\xd8\x7f\xa8\x1d\x9a\x38\x96\xdb\x92\x72\x96\xae\x6d\x39\x1f\xbc\xa7\x13\x3c\x40\x60\x01\x6f\xa0\x88\x83\x25\xe4\x08\xc1\x07\x7c\x37\xc3\xa1\xcf\xbb\x76\x8f\xd6\x7c\x60\xa5\x0a\xdd\xd0\x04\x1e\xf4\xdf\xe2\x49\x6a\x99\x77\x8c\x0d\xd6\xaf\x16\x63\x22\xa7\x2f\x9a\x0a\x4d\x03\x33\x9e\xad\x31\xf9\xa4\x66\x0d\xfa\xf3\xed\xd8\xac\x5a\x86\xb1\x8a\x33\x1c\x7d\x82\x4f\x94\xde\x56\x1c\x47\x48\xb0\x50\x60\xe0\x91\xca\x27\x8d\x86\x68\x94\x3e\xc4\xeb\xa8\x7a\x0a\x01\xce\xf7\xa6\x77\x75\x7c\x87\xe9\x46\x6d\x6c\x7d\xce\x15\xfe\xd9\xc0\x0b\x6b\xdb\x96\xee\x31\x6c\xd5\xba\xdb\x24\x85\x0b\x64\x9b\x0b\xd0\x70\x2b\x68\x96\xf1\xb1\x42\x7c\x0c\xe2\xa8\x78\xa5\xa5\x94\xd1\xef\x21\x9a\xe4\x93\x9a\x1f\x9a\x5b\x11\x0e\x13\xa8\x84\x03\x4c\xcc\xde\xaf\xe3\xe2\xf8\x44\xe9\xa9\xe4\x63\x13\x46\x5c\xd2\x79\xd6\xc9\x8f\xf9\x4d\xea\x84\xd2\xd3\xcd\xc7\x36\xe9\xed\xf5\x3b\xdb\xec\x86\xd6\x9e\xa0\x21\x80\xb7\x7e\x63\xba\xfb\xb3\x4e\x92\xc2\xa3\x2b\x1f\xe9\xa8\x9e\xe8\xb1\x40\x99\x16\x41\xd7\x12\x3b\xe1\xb7\x1b\xa5\x8e\xad\xe9\x45\x31\x2c\x6b\xc4\x45\xd4\xb7\x47\x2e\x34\x2d\x47\xa3\xb4\x3b\x83\xc1\xeb\x2a\x73\x8b\x12\xac\x82\xac\x87\x90\xe1\x58\x93\x20\x41\x04\xb7\x4c\x07\xe0\xc1\xc8\x97\xe5\xbc\x21\x1b\xee\xa6\x80\x9c\x7b\x07\xf9\xb3\x8a\xe4\x77\x56\x15\x20\xf3\x74\x52\x0c\xad\xc9\x19\x2a\xe0\xc4\xe0\x95\x8e\x90\xfa\xe3\xa1\xed\xf7\x23\x1b\x33\x9d\x41\x18\x6a\xca\xb0\x74\x53\x55\xb2\x32\x53\x0c\x6d\xf6\xb0\x4f\xa4\x38\xbf\x13\x02\x1b\xfd\x20\xb0\x0d\x77\xb1\xce\xa3\xf9\xde\x42\x38\x0a\x08\xf7\x75\x2a\x45\xf2\xea\x4c\xc1\x2c\x76\x62\x38\x16\x0a\x5d\xa4\x8a\xcd\x39\xe0\x78\x47\x81\x02\x93\x6b\x94\xa6\x8d\x09\x5c\x58\x58\xa8\x3b\x8b\x15\x8d\xe2\x07\x5e\x53\x9d\x86\x93\x53\xbd\x50\x94\x5f\x2f\x3e\x36\x8e\xb4\x6f\x0b\x9b\x8d\xa2\x04\x35\xd5\x67\x9d\x60\x1f\x5d\x17\x16\xa2\x97\xe8\x0b\x51\x01\xfe\x50\x07\xf2\xef\xa8\x5a\x4a\x1e\x25\x03\x33\x4e\x33\x70\x79\xb1\xd3\xdc\x53\x9a\xb1\xda\xaa\xe5\x14\xbe\x1d\x38\xb5\xaf\xd4\xda\x19\x0b\x0b\xed\x3c\xed\x33\x35\x4a\x4a\x95\x2d\x27\x3f\x76\xa9\xc9\xfe\x78\x1c\x9b\x28\x99\xf1\xa8\x04\x14\x47\x45\x98\xb0\x4c\xbb\xa5\x63\xe4\x0b\x69\x49\x9a\x95\xaf\x39\xc1\x94\xc5\xd4\xda\xbd\xe1\xa7\xd9\x6e\x95\x71\xf5\x0d\xfd\xed\xac\x82\x44\xdf\x51\x62\x64\x67\x03\x5f\xf7\xe2\xb2\xb3\x98\xa9\x34\xf4\x18\x4c\x0c\xc1\x42\xac\xf9\x5f\x86\xe6\x10\x06\xc7\x05\x1a\x28\xb2\x5f\x36\x50\x0b\x47\xb6\x30\xe3\x21\x43\xf8\x91\x8b\x9e\xc7\x10\xe4\x93\xe9\xc3\x6e\x4d\x9a\x0c\x15\x9c\x99\x5b\x79\x7c\xd2\x54\x60\x1e\x45\x63\xe9\xc0\x62\x29\xe7\x58\x97\x4f\x14\x57\xe1\x79\x96\xd0\x77\x8a\x05\x8a\x81\xe7\x24\xb4\xc6\xe9\x64\x30\x5c\xb1\x76\x9c\xf3\xae\x22\x02\xce\x4a\xd6\xfa\x82\x9a\xa2\xa6\xdf\xb7\xe4\x9f\x02\x59\x0f\xf4\x68\x5a\x1d\xda\x6b\xb1\xa8\xef\x22\x4d\x3b\xd1\xbf\xf2\xeb\x69\xdf\x9a\x0c\x7d\x5c\xf1\x4f\xaf\x40\x68\x5d\x87\x2e\x1c\xa6\x29\x1a\xb2\x8e\x77\xac\x29\xc3\x3b\xdf\x54\x99\xb1\xf4\x52\x8a\xe7\x31\x2b\x2e\x63\xa9\xe5\x93\xa6\xb5\x72\x92\x83\x3c\x88\x86\x18\xb4\xf6\x5c\x72\xb9\x2c\x1c\xf7\x37\x6a\x2f\xf6\x85\xe5\x7d\xed\x7c\xd5\x26\x85\x5d\x69\x69\xe4\x1f\x13\xe7\xf9\x44\x4b\x3a\xd9\xf8\x21\xef\x15\xfa\x6d\x85\xa5\xde\xbb\xa1\x34\x2f\xb7\xb8\x1c\x83\xe5\x1d\xfb\x91\x84\xa4\xf4\x8c\x30\xd2\xd9\x5d\x58\xdc\xc0\xca\xcc\x47\xf5\x3a\x5f\x74\xaa\x78\x34\xce\x60\xf2\xff\x54\xc7\x17\x11\x7b\x36\x89\x6c\x6f\xd6\x97\x02\x7e\x5b\xb5\x0b\x6f\x51\x3a\x2c\x95\x3a\xfa\x06\x6e\xfd\xd4\xf6\x8b\xf9\xfd\xed\x70\x18\xd9\xbe\xaa\xd3\xdd\x52\xf6\x87\xb7\xa6\x5a\x3b\xc6\xe4\xae\xe7\xef\xc4\x20\x96\x15\x45\xd2\x61\xd8\x4f\xa9\x1c\x7c\x38\x19\xd8\x87\xe9\xc6\xb1\x4c\xbc\x15\x28\xe3\x86\xb7\xa6\xbe\xa8\xf9\xae\x86\x6b\x43\x2a\x17\x33\xfd\x8f\x14\x72\xe9\x5b\x08\x04\x99\x9e\x81\xba\xa9\x68\x1c\x38\x0c\xdd\x67\x7e\x30\xf5\x79\xd2\x97\x9e\xa0\x88\x48\xe0\xfc\x1e\x8c\x90\x17\x69\xc6\x68\x61\x29\xd6\x70\xe9\x91\x4f\x94\x14\x66\x94\x80\xf6\x6d\x93\xd0\x62\x3b\xe3\x96\x2d\xd6\x01\xe9\xdf\xea\xa4\xae\x6b\xa8\xbb\x2e\x1e\x05\xbf\xcf\x51\x3f\x72\xac\x9b\x58\x8e\x11\x29\x9f\xd3\x70\x26\x04\x3b\xfc\x57\x0a\x58\x3e\x34\xe3\xb1\x25\x70\xbf\xb7\xc4\x78\x97\x1e\xbf\x18\x3f\x97\x4f\x12\x03\xad\x2e\xbb\x5a\x8e\x75\x1b\xf7\xd2\x51\xab\x22\xd7\xaf\x10\x8d\x4a\xe6\x62\x32\x18\xc0\x12\xb5\xe5\x65\x3e\xa7\x4a\xff\xb3\x41\xe6\x6f\x7f\xdb\x24\xc5\x30\x4d\xd6\xa9\x28\x23\xb5\x0d\x15\x25\x5f\x72\x70\xe8\x74\xd5\x66\x60\x91\x7b\x85\xb9\xdb\x4a\x1a\xf1\xf6\xf4\x49\x45\xd4\x0e\x57\xe2\x09\xc9\xf4\xd3\x9b\xe6\xee\x09\xe5\xba\xd2\x49\x51\x0d\x70\xd8\x35\xa4\xd9\xfa\x03\xde\x4f\xf5\x2e\x64\x0b\xb6\x68\x37\x43\x88\x07\x75\x44\xe4\xfe\x2c\x9b\xa4\x38\xff\x12\xf7\xbc\xa9\x76\xd2\xd7\xeb\x02\xa3\xcf\x1d\x6c\xe7\x93\x6c\x1c\x4f\xb0\x0a\x02\x72\x88\xaa\x02\x1f\x6b\xa8\x74\x9a\x98\xc2\xcc\xf8\xce\xc6\x1b\xf4\x87\xee\x76\x1c\xc5\xfc\x08\xaa\x50\x3c\x84\xcc\x68\x46\xf5\x83\xce\x29\xe7\xec\xdb\xc4\xc5\x60\x77\xa5\xba\xa6\xff\xf2\xd2\x67\xdb\xfd\x98\x38\xd8\xe8\xb3\x60\x1b\xdf\x52\xdf\xb0\xa9\x5d\xe4\x55\x9f\xa5\xa0\xfe\xf9\x60\x8f\x5f\xe9\x20\xb9\x82\xe5\xf5\x4c\x50\xa9\x16\xd3\xd4\xe1\xbf\x52\xa8\x84\x33\x53\x15\xf1\x9d\x57\x62\x50\x99\x0d\x6d\xb4\x8a\xa6\x92\x4a\x2f\x3d\x3a\xf9\x92\xca\x21\xe2\x34\x34\xf1\x5e\x7a\x00\xe2\x9a\x47\xf7\xe2\xd8\x7a\xcb\xfb\x38\x63\xf9\x3e\xdd\x0b\x9a\x1e\xdc\x40\x16\x77\x7b\x25\x65\x7c\xb1\x7a\xf7\x07\x44\x0c\xee\xfb\x81\xef\xd7\x9a\x7c\x92\xd9\x39\xc5\x68\x40\x6a\x85\x11\xf1\x00\x05\x2a\x14\xf1\xfd\x37\x4f\x74\x94\x36\xdb\x03\x64\x54\x89\x92\xc4\x7d\x95\x74\xac\x98\x2c\x1a\x69\xb1\x28\xcc\x08\x51\x8e\x52\xb6\x52\x69\x66\xe2\x18\xe0\x40\xe7\xd4\xee\x50\xeb\x37\x75\xbd\xb6\xd5\xf9\xb8\x6a\x0a\xe9\xc0\xce\xf8\x56\xc2\x7d\x05\x81\xbe\xa0\xc3\x8a\xcb\x0e\xce\x5d\x44\xb6\xb7\xc7\x73\x9a\x2e\x2a\xab\xda\x73\xd3\x8a\xf0\x33\x5d\x01\xd6\xd0\xc7\x95\x37\xd6\xe9\xa9\xef\xb4\xd5\xa1\x3d\x87\x9e\x6b\x8f\x6d\x91\xa5\xb1\x4d\xe1\xef\x84\x4d\x8d\x81\x10\x7c\xa2\x21\x80\x93\x7e\xbf\x0c\xf8\x5e\x58\xde\xe7\x9b\x1e\x8b\xde\x41\xae\xfc\x2d\xfe\x77\x84\x05\xe2\x26\xb7\x73\x57\x7b\x01\x75\x4f\xf8\x45\x28\xbd\x61\x2f\xb5\xd1\xd0\x5a\xed\x9a\x38\x4e\x0b\x05\x1e\xfb\x6e\xe0\xc1\x63\xdf\x75\x0d\x10\x12\x82\x9e\x75\x44\x87\x7f\xfc\x58\xc7\xb3\x37\xae\xeb\x80\x6f\x76\x43\x63\x5b\x7d\xd0\xe5\x7c\x40\x68\x7d\x95\xd2\x27\xad\x6f\x7c\xa2\x86\x50\x37\xcd\x6c\xb2\x47\xe9\x7f\x1c\xc1\x4f\xe0\xaa\x8e\x07\x5a\xc8\xed\x38\xca\x95\x62\x5b\xdd\x72\x4a\x1a\x1f\x62\x3e\xf2\x17\xb8\x95\x38\x8c\xcd\xb8\xc8\xcc\xb8\xe5\x1b\xfa\xe8\x44\xc8\xfb\x6c\x50\x83\x18\x4f\xb2\x71\xea\x20\x9d\x8d\xb6\xbd\x8f\x3a\xae\x40\xfc\xff\x72\xf6\xe7\x41\x72\x9c\x69\x7a\x18\x0e\x54\x35\x00\x12\xe0\x4d\xce\xec\xa1\xdf\x4f\x5b\x63\xaf\xc4\xb0\xc5\xa0\x14\xd6\xf1\xc7\xda\x11\x59\x06\x7a\x87\xc3\xf6\x4e\xb3\x0d\x62\x40\x89\xe1\x08\xf3\xeb\xac\xaf\xab\x72\x3a\x2b\xb3\x98\x99\xd5\xcd\x66\xf8\x0f\x45\xd8\xe1\x50\xd8\x0e\x85\x43\x52\xec\x3a\x6c\x87\xed\x95\x64\x87\x25\x6b\x43\xda\xd1\x5a\xde\xd9\xd5\x2a\x6b\xce\xbd\xe6\xe0\x3d\x04\x6f\x80\xb8\x81\x46\xe3\x68\x5c\x0d\xa0\xe1\xc8\xf7\x79\xdf\xef\x7b\xb3\x2b\x69\x6f\xf8\x2f\x66\x12\x5d\x55\x79\x7c\xdf\x7b\x3e\xef\xf3\x14\xc2\x80\xdb\xa4\x99\xeb\x13\x99\xa1\x49\x7a\x64\xb7\x5b\xfe\x9a\xd1\x50\x91\x16\xa7\xf7\xc4\x8b\x51\x58\xc5\x6c\x49\x12\x55\x49\xee\xe1\x83\x9e\x31\xc6\x75\x31\xbf\xc0\x41\xad\x9a\xcc\x95\x2c\x79\x9c\xa2\x36\x1c\x44\xeb\x03\x26\xf5\xba\x0a\x7b\x8a\x74\x34\xa2\x92\x55\xf5\x82\x9a\x8a\x63\x6a\x64\xc0\xc6\x48\xbc\x1d\x37\xa8\x1b\x73\x59\x57\xd4\x3f\x22\x4d\xb9\xdf\x4f\x43\xbf\xa2\x2a\x10\x88\x2c\x91\x34\x7e\x4b\x87\x3e\x2a\xa7\xe2\x34\x01\xf5\xf1\xcb\x88\x2b\x5d\x66\xe0\x27\x80\x27\x78\xf1\x08\xdf\x19\x1b\x87\x2f\xd8\xfa\xc2\x12\x0c\xf1\xf5\x2d\x71\x79\x48\x5c\x19\xfd\x9a\xf8\x38\x25\xd6\xd9\x5b\xb1\x59\x11\xe5\x36\xcb\x01\x93\x81\x3d\xbc\x13\xd4\x70\x12\x87\x0f\x3a\x9c\x04\x5d\x28\xff\xd1\x54\x99\x69\x6e\xee\xb0\xf8\x70\x87\xcb\x60\x19\x04\x7a\x0c\x22\x89\xb0\xb3\xc6\x42\xea\xa6\x26\x0b\x6d\x8c\x58\xce\x45\x52\xd5\x8f\x09\x80\xc5\xe3\x66\x4d\x18\x8f\xc9\x1a\x49\x5b\xd1\xa7\x75\x9f\x2a\x95\x0e\xdb\xff\x8b\x9a\xbd\x19\x0b\x8c\x8f\xd5\x06\xcd\x4c\x2f\x4a\xb1\x1b\x50\x76\x44\x9b\x98\x8f\x15\x98\xd8\x54\x71\xf6\x8a\x23\x41\x7d\x91\xdf\x0a\xc8\x9b\xf8\xd8\xcd\x33\x26\x51\xb8\x9c\x98\xa1\xed\xb5\xbd\x68\x0d\x4f\x29\x4a\xdc\xa3\xaa\x70\xb7\x15\x03\x46\x18\xdb\x15\x9b\xc5\x6b\x3b\xe8\xe8\xb4\x54\x86\x58\x32\xb3\x92\x46\xe0\x26\xc2\x98\x0f\x02\x7f\x2d\x86\x08\x24\xc3\xb7\xf0\xc3\xf0\xbb\xb5\x4e\x22\xf4\x38\x64\x50\x40\x59\x2d\x93\xdb\xde\x3e\xd8\x26\x5c\x22\xba\x03\x22\x8f\xee\x7b\xa5\x57\x94\x2a\xcc\x2d\x32\xf0\x0a\x2c\x27\xdd\x72\x86\x25\xc3\xda\xdf\x6d\xb0\xdd\x55\x2c\x16\x15\x16\xa5\x02\x27\x53\x5e\x7d\x81\xe0\x08\x3d\xc2\x0c\x15\x12\xa9\x16\xee\x4c\x28\x0f\x1d\xea\x14\x23\xd3\x52\x48\xbd\xf3\xc4\x48\x29\xbc\xf9\x0d\x7e\x63\x64\xb2\x65\x21\xd5\xa9\xcd\x24\xc8\x3a\xd4\x29\x24\x3a\xb4\xc8\x14\xf7\x74\x69\x1d\xe0\x41\x7c\x4e\xc6\x02\x2f\x77\x0b\xc5\x52\x14\xd5\xff\x5c\x57\xe5\x83\x6d\xf4\x45\x45\x91\x9f\x2e\x13\x55\xa2\xdd\x5d\xff\x22\xdb\x13\x8d\x3c\x3f\x05\x7d\x23\xf8\x88\xff\xa1\xf4\x0d\xdb\xdf\x87\xeb\xa2\x77\xf2\xf6\x63\x20\x25\x46\x95\xf5\x94\x62\x18\xbe\x4d\xc9\xa4\x13\xd3\xd2\x0b\x49\x75\xf4\xef\x36\x21\x64\x8b\x70\x38\x6a\x79\x60\x1c\x53\x1b\xf2\xc9\x54\xee\x7f\x68\xb6\xb3\x14\x15\x68\x08\x3a\x25\x57\x97\x18\x5d\x55\x35\xee\xb3\x58\x83\xf0\x67\xed\xae\x14\x1b\x62\x5b\x0c\x4c\xdc\xf6\xf5\x17\x26\x05\xc7\x43\x85\x2a\x37\x2c\xe6\x0d\x15\x74\xe4\x51\x9f\x74\xe2\x67\x8f\x78\x49\xe1\x05\x7f\xa2\x09\xc7\x69\xdd\xfa\x5c\xcf\xb7\x8b\xc7\x49\x0f\x81\xaa\x93\xc4\x74\xd5\x57\xa8\x8b\x20\x14\x6e\x81\x67\x40\x54\x30\x2b\x8f\xb2\x0d\xbc\x13\x93\x98\x93\xe9\xc0\x32\x9f\xc1\x9b\x96\xd6\x4f\x03\x88\x60\x90\xc6\xa8\x7c\x20\x47\xb9\xa9\x30\x15\x27\x34\x56\xe7\x82\x02\x20\xe7\x66\xdc\x8b\xda\xaa\xed\x7d\x8f\x23\x08\xdd\x15\x15\x47\xe2\xa7\x65\x07\x6b\xa3\xb4\x18\xd8\x82\xd0\xf5\x28\x4c\x3b\xcd\x3e\x51\x7e\xff\xcf\x2f\x3a\xeb\x65\xc7\x59\x3a\xb2\x26\x11\x46\x1a\x94\xd3\x79\x5c\x51\x9a\x82\x2a\xb3\xd9\x37\xf1\x5b\x64\xbc\x58\x3c\xe0\x13\xf9\xfb\x6a\x64\xf8\x11\xa4\x6a\x20\x98\xdb\xc2\x12\x40\xd5\x0e\x9c\xfe\x8e\xc3\xd8\xcb\x1a\x30\x69\x09\x50\x3e\xf7\x4a\x3f\x57\xba\xab\xfb\xe7\x1b\x26\xf1\xc6\xd9\x08\x7a\x9d\x5c\xad\x6f\xc2\x2f\xfb\xc0\x20\xb1\xfd\xd8\x86\x05\x58\x2b\x19\x59\x81\xda\x86\xc0\x2c\x7c\x78\xf2\x39\x99\x36\x3e\x56\xc3\x57\x61\x9c\x56\xbf\x37\xa3\xe5\xc4\x4e\x29\x12\xb7\x8b\x0a\x8a\xc6\x31\x3c\xff\xd1\x4e\x22\x98\xb9\xb9\xce\xd1\x83\x0b\x4f\x90\xe1\x00\xd2\x12\x09\x2c\xea\xe7\xcc\x0e\x8f\x2f\x2a\xd4\x32\x43\x3f\x13\xa9\x13\xe2\x15\x78\x67\xec\x7a\x9e\x05\xd5\x75\x2b\x2e\x4f\x39\xae\xe3\x79\x27\xd7\x8f\xed\x81\x14\xe3\x47\x9a\x7b\x9a\xdf\x02\xd0\x62\x1f\x50\x14\x03\xc7\xf2\x16\xa2\x78\x14\x48\x7e\x1d\x05\x75\x7c\xd7\x65\x7a\x57\x1a\xa5\x8b\xcc\xf2\xb2\x6a\xf7\x65\x31\x23\xf8\xa4\x72\xea\x71\x94\x5c\x7a\xe0\xf9\x77\x5f\x7a\x58\xcc\xd3\xd8\x16\x5c\xc1\x71\xd8\x43\x47\x99\xbe\xee\x66\xa0\x57\x33\x33\x9a\x21\x56\x03\xe0\x0a\x01\x9f\x3f\xa6\xf8\x96\x8f\x05\xad\x97\x16\xb6\x4f\x2a\x8d\xde\xd1\xb8\x78\xc8\xb3\x92\x5f\x2f\x15\x8d\xc2\x3f\xc7\xe3\x70\x24\x7d\xbe\x85\xac\x85\xe8\x2e\x12\x8c\x0c\x0b\xf4\x51\x35\x88\x7e\x1e\xad\x7a\xc0\x08\x18\xe8\xe8\x3a\xd0\x4a\x75\xd6\xcb\xed\x9e\x28\x15\x40\xfc\x7c\xf0\x64\x7d\xa9\x1c\x79\xa1\x73\xe4\x05\xb2\xcb\xb8\xa0\xb6\x32\x51\x6d\x3d\x8f\x3b\x30\x49\x68\xe3\x18\xca\x60\x2f\xf3\x8d\xaf\x07\x7e\xca\x6f\x7d\xaa\xb5\x3f\x37\xf7\x62\x27\x2f\x32\x5b\x78\x4a\x5c\x87\xca\x72\x3c\x14\x1b\x1a\x30\xf2\x2a\xa6\xf0\xdb\x4a\xc1\xe9\x84\xc2\x65\x63\x4a\x4e\xc8\xcd\x76\x12\xe8\xcd\xcd\x75\x92\x94\xf2\x28\x84\x19\x9f\xd3\x9a\xe7\x63\xc5\x70\x31\x8c\xc2\x2c\x5d\x11\xf5\x55\x21\x8f\xa4\x65\xcd\x27\xf5\xda\x9d\x2d\x5a\x1e\xec\x77\x09\x8f\x5c\x90\x1b\x0f\xb9\xe1\xd5\xd1\x98\x55\x9e\xe0\x5b\xef\xe1\x2d\xb3\xb8\x81\xea\xba\xcd\x28\xe9\xda\x61\x9a\x26\x14\xd4\xc9\x38\x36\x7d\x46\x12\x17\xef\x76\x8f\xab\x18\x33\xcc\xc6\xc2\x63\x8d\xaa\xf2\x8f\xe0\x87\xf9\xa4\x32\x05\xd2\xe4\x0c\x0b\x13\x8e\x63\x93\xb1\x05\xe3\x1e\x3d\x59\x11\xe9\xd7\xbb\x91\x0a\x82\xcf\xb4\x7d\x24\xcc\xa5\x62\x64\xac\x5a\x0d\xe2\x46\x93\xbe\x4e\x27\x1c\x58\xaa\x38\xd0\xa5\x48\x6e\xa0\x20\x4c\x6f\x63\x07\xc0\xde\x4f\xf3\x81\x3d\x3f\x4f\x15\x58\xd3\x47\xa7\x42\xc6\xce\x5b\x7e\x04\x3d\xd8\x39\xef\x9c\x66\xf9\x1e\x58\x4a\xd7\x4c\xf4\xf2\xf3\xbc\xe7\x11\x31\x6e\xc3\xb2\xa0\x67\x06\x21\x5c\x3e\x56\xac\xdf\x4f\xaf\xd8\x7d\xf5\x19\x89\xe7\x5d\x06\x53\xd6\x28\x6d\x15\x8f\x58\x8b\xe2\x2c\x44\x40\xff\x28\xf0\x6d\xd9\x6d\x38\x24\x71\x8b\x4f\xa9\xa4\x30\xa3\xee\x61\xb5\xc6\xab\x8f\xba\x54\xc8\x8f\xb0\xb1\x14\x0f\xe2\xbd\xad\x40\x0b\x7a\x93\x8a\x6d\x48\xc4\x80\xb3\x47\x1c\x27\x4f\x75\xa1\x42\xc9\xe3\xab\x8c\xa3\x34\x4a\x8a\x7c\x9f\x87\x0c\xdf\x56\x18\xbc\xeb\xaa\xa0\x7e\x4e\xc9\xdb\x5d\x85\x67\x10\x35\x0c\x7a\x65\xb0\x60\x57\x02\xc5\x97\x7d\x43\x17\xce\x47\x26\x89\x72\xe1\x5a\xd3\xaa\xee\x92\x6e\x4c\x13\x67\xbc\xd8\xc9\xcd\x2a\x30\x0b\xe8\x51\xfc\xb8\xd4\x10\xd0\x9a\xa2\xbe\xa3\x2e\x1a\xe7\x4c\x2f\xa1\xc7\x7e\x65\xa2\x77\x7a\x8e\x6c\x41\x18\x04\xf8\x53\xd2\xe2\x55\x13\xae\xd3\xd3\x03\x92\xf6\x2e\x62\x14\x59\xc8\xbd\xab\x07\x27\xe0\xde\x06\x2d\x57\x1f\x2a\x20\x4d\xc5\x73\x05\x75\x14\x1f\xab\x99\xa1\x91\x49\x6c\x1c\x47\x6d\x2a\x6c\x89\xe5\xa6\x35\xc5\xc1\x0c\x23\x55\x84\x21\xa6\x01\xda\x33\xb2\xd9\x52\x9a\x0d\x5b\xea\x09\x9e\xd2\x03\x62\x5f\x88\xb1\xea\x99\x68\xd5\x28\x44\xd0\x19\xcd\xa4\x7a\xa6\x86\xec\x49\xa2\x62\x9f\x77\x70\xa7\x54\xff\x97\xe5\xdb\x51\x87\xb8\xa5\xb9\x4e\x2f\x04\x0a\xa5\xf3\x1d\xee\x71\x28\xdd\x97\xe7\x38\x3d\xf9\xd9\xd4\xac\x8b\x5c\xe0\x1a\x41\x04\x3c\xdb\xf7\x69\x55\x5c\x39\x5d\xad\x05\xbe\xba\x17\xbe\x3a\x83\xa7\x54\x13\xdf\x43\xc5\x0c\x12\x83\xa8\x55\x3e\xda\x55\x63\xc3\xc7\x9a\xc6\x73\x33\x5b\x44\x34\x11\xe1\x68\xb9\x36\x83\xd6\xce\x81\x72\x64\xe4\xef\x97\xfe\x02\x9e\x9e\xff\x33\x22\x92\xa6\x99\x0f\x67\x3b\x61\x9a\xc6\x6c\x93\x01\x30\xf8\x8d\xc0\xe3\x91\x7e\x43\x75\x5f\x32\x4b\x7d\x29\x59\x58\x82\xb0\xf4\xf8\x85\x53\x81\x47\x9a\xbd\x3a\x4e\x1d\x43\x88\xfc\x7a\xf5\x24\x61\x8d\x19\xa5\xc8\x27\x8a\x45\xf0\xc2\xd4\x06\x3d\x74\xa8\x93\x19\x96\x03\x80\x9f\x00\x9d\x10\x1f\xab\x29\x58\x3b\x8c\xf2\xdc\x48\xe3\xcc\xd5\x63\xb1\xc9\xa4\x38\xeb\x31\x3a\x4b\x36\x5c\x8e\x6d\xce\xe3\x1e\x32\x5a\xd8\x72\x74\xf7\x6f\xea\xa1\xb8\x69\x74\x0a\x0d\x87\x66\x85\x8d\x5b\x4a\x5c\xf8\xa2\x12\x1a\xbd\xd8\x30\x49\xfd\x62\x27\x1f\x2f\x0e\xa3\xa2\x10\xce\x1d\x44\x0f\x57\x03\x05\x81\x38\xa6\x3a\x35\x67\x15\x6b\x51\x2f\x1d\x2f\x56\x69\xd5\xec\x11\x07\xb4\xf3\x0c\x14\x77\x02\x1f\xc5\xdf\x29\x77\x66\x10\x95\x4f\x54\xf2\x0d\x2d\xff\x22\x2e\x06\xaa\x96\xd6\x4c\x93\x32\x4e\x0a\x9b\x15\xe9\x48\x51\xe6\x1e\x57\x94\xb9\xc7\xfd\x90\xf3\x6a\x34\x1c\x8a\xde\x83\x8b\xe1\x1d\x12\x82\x21\xab\xd2\xe5\x10\x53\x4a\xdd\x7a\x7a\x84\xf0\x6f\xf8\x6e\x3e\x6e\x1a\xc2\x5a\xb4\x71\x3f\x1a\x03\x05\x8d\xed\x7c\x57\x97\x1c\xef\xaa\xaa\xe7\x72\x14\xc7\x7b\x2b\x87\x02\x3f\x7c\x5a\xd1\x14\xc2\x53\xf1\xff\xd7\x32\x10\xc0\x5c\x08\xd0\x47\x03\x20\x2e\x3a\x98\xcc\x38\x81\xd7\x17\xc4\x19\xa2\x0a\xe0\x0d\xf9\xd8\xe9\x60\x8c\xb2\x94\x78\xed\x85\x49\x04\x45\xce\x99\x89\xef\xf8\xdc\x53\xf1\xcc\x81\x6e\x8d\x1c\xc9\x87\x19\x51\x92\xa4\x2b\xf8\xc5\x2f\x62\xb4\x6f\x58\xa1\x99\xcd\x0d\x77\xb4\x98\x8a\x9c\x1e\x81\xd0\x92\x3f\xe2\x60\x3f\x8b\xa6\xd8\x49\x0b\xac\x38\xa4\x2f\x4e\xad\xa8\xa3\x07\x17\x3a\xc3\x74\x68\x93\x82\x86\xb5\xf1\x18\x10\xed\x83\x96\x83\x8f\x1b\xb6\xcd\x42\xa7\x18\x64\x76\x15\x3f\x26\xe9\x1d\x6d\x06\x3e\x51\x38\xa2\x9e\xc9\x8a\xc5\xd4\x64\x3d\x4e\xed\x79\x18\x0c\x96\x7d\xe7\x64\xd8\xc0\x9a\xde\xab\xe3\x6a\x4f\x66\x39\xc6\xd6\x81\xdc\xdc\xc7\x35\x27\xec\xb5\xbb\x6a\x0e\xfb\xd5\x9f\x9f\x28\x31\x9b\xb7\xbd\x6e\xf1\x5f\xff\x8b\x53\xdc\x25\xd5\x85\x67\xe9\xd0\x24\x05\x14\xe3\xa4\x5a\x74\x5b\xb5\xe1\xa6\xc7\x4a\x67\x8f\x74\xc6\x49\xb4\x14\xfd\x3f\x69\xf3\x29\x96\x29\x4b\x1c\x43\x6d\x0f\x71\xbb\x02\xcb\xe0\x5a\x83\xae\xe2\xf3\x7b\xee\xe5\x25\xd6\xf6\x9c\x51\x6e\x1a\x0b\xf0\x6f\x39\xcf\x6d\x56\xb4\xd4\x90\x04\xe2\x96\x2f\x1a\x5f\xa4\x4e\x72\x11\x25\x7d\x74\x3f\x10\xde\xa0\x44\xca\xc7\x8a\xbe\x28\x87\x26\xbe\xaa\x6a\x9c\x52\xfa\x02\xa7\x5c\xef\x25\xd7\xcd\x5f\xf4\x1b\xb5\xc8\xc8\x6f\x06\x3e\xc1\x6a\xa9\xe2\x8b\xcd\xec\x13\xb4\x48\x84\xad\x8a\x0a\x94\x02\xab\x6a\x7b\xd1\xb5\x87\x27\x4a\x38\x0e\x7d\x51\x7a\x94\xbb\xff\xff\x28\x23\x02\x07\x74\x60\xe2\xd9\xae\xb6\x4a\x45\x1b\xf2\xbd\x52\x79\xd2\x63\x04\x7e\x41\xc5\xee\xad\xd2\x77\x80\x6e\x12\x98\xcf\x25\xb7\xae\x1e\x70\x05\x88\x78\x84\xe3\x3f\x4f\xe0\x0e\x8a\x66\xfa\xbf\x8c\x02\x13\xf5\x61\xff\xf9\xe3\x93\xd6\x57\x5f\xe2\xf8\xea\x2e\x8d\xd4\xd1\x07\xfe\xa3\x7f\xab\xab\xaa\x2f\x59\x54\x44\x61\x4e\xa0\x43\xbc\xfc\x3f\x04\x48\x5f\x21\x71\x64\x4c\xf6\x5b\x94\x9b\xf1\x5f\x29\x6a\x80\xbb\xa5\x62\x1c\xfc\x96\xaa\x72\xdf\x54\x18\xca\x9b\x35\xcc\x21\x8d\x1b\xf0\xa7\xb5\xb4\xe8\x7f\x17\x4c\x1b\x80\x2a\x49\xb2\x59\x14\x93\xc6\x4f\x4b\x3d\xc2\x0b\x0a\x7f\x34\x1d\xa2\x4a\x70\x35\x4e\x7a\x36\xa3\x74\x13\xfb\x00\xbd\x7c\x17\xec\x7b\x72\xc9\xf5\x26\xbd\x89\xd0\xc4\x61\xad\x1b\x83\x82\x32\x18\x6e\xf8\x58\x55\xfd\x87\x90\x20\xf1\x7c\xbd\xf4\x77\x52\x59\xf4\x51\x0b\xbc\x73\xbb\xd6\x7b\x9b\x77\x42\xca\xbb\x94\x16\xe3\x4d\x55\xee\xf9\xc6\xd1\x83\x88\xbf\x80\x71\xf9\x88\x1e\xaf\x53\x8f\x9e\x9b\xdb\x3e\xdb\x14\xeb\xe5\x66\x25\x4a\xfa\x0c\x5a\xe2\xa9\xd2\xc0\x77\xb9\xdf\x2b\x7d\xaf\xed\x03\x75\x2b\x61\x3a\x8e\x7b\x4f\x12\xee\x5f\x98\x94\x95\x2a\xf7\x31\x58\x37\xf8\x8f\x13\x8a\xf7\x84\x8b\xe8\x2e\x82\x3a\x2c\x7c\x9d\x1f\x04\xba\x6a\x7a\x96\xf2\x2f\xdc\xfb\x2e\x00\x8b\x11\x87\xde\xa0\xa5\x81\xef\xfa\x59\xa9\x90\x40\x00\xb3\x3a\xa9\x89\x43\x87\x38\xd8\xbd\x13\x28\xfe\xff\x6b\x48\xe5\x5c\x18\x5b\x05\x7f\xe8\x73\x9c\x55\xb5\x21\x14\xd2\x25\xbc\x55\xb1\xf2\x77\x6a\x23\x0c\xf9\xd8\xe6\x0f\xd7\x52\x46\xa7\x52\xb0\x8d\x7a\x94\x54\x33\xe9\x47\x6b\x2f\x52\xc8\x8f\xe8\x0a\x1c\x0f\xa3\xd3\x5d\x67\x3e\x11\xd8\x2c\x16\xf5\x46\x63\xed\x9e\xaa\x67\xcd\x10\x7f\x93\x4c\xae\xb4\xfc\x0f\x52\xac\x2d\x5c\x4b\x4d\x9e\x6f\xb5\x5a\x87\x5c\x7a\x96\x62\x8c\xf2\x65\x5b\x81\xe2\xbc\x58\x6f\x92\x36\x34\xab\x36\x4f\x87\xa8\x4b\x20\x29\x85\xe0\x3f\x1f\xbb\x58\x6c\xd5\xda\xe5\x9e\x59\x63\x97\x0e\x44\xdb\x4f\x03\x8f\x88\xfd\x69\xb9\xa3\x48\x5b\x85\x88\x5f\x7d\xa9\xf5\x45\xdd\x51\xd5\xc5\x33\x59\x91\xa6\x2c\x07\x80\x0c\xaa\xd4\xdd\x9e\x32\x78\xc8\xfb\x84\x71\xb2\xa7\x7a\x54\xac\x90\x4a\x76\x01\xb5\xaa\x99\x89\x47\x83\xdc\x41\xb5\x0b\x7e\xed\x3c\x3d\x4f\x91\x54\x9d\xd6\x6d\x0a\x07\x76\xe8\x98\x74\x98\xe1\x40\xc5\x34\x1e\xca\x4c\xaa\x1b\x26\x8b\x8c\xa6\xe6\x40\xc0\x24\x33\x81\x5e\xfc\xca\xae\xd8\x6c\xad\x18\x44\x49\x9f\xb8\xd7\x01\x0c\xd3\x14\x35\x3f\xd1\xf0\x3b\xb6\x99\x30\xc5\xbb\x26\xbe\x35\xb9\x0d\x8b\xcb\x8a\xda\x9a\xb1\x68\x93\x9b\x19\x42\x81\xe7\x6b\xf5\x36\xf9\x66\xba\xc6\x78\x49\x06\x87\x06\x8a\xb5\xe3\x7d\xcd\xe0\x76\x4d\x49\x7e\x9c\x6d\x10\x41\xa4\x58\x40\x42\x0d\xd4\x6c\x6e\xa8\x21\x98\x1b\x81\xae\x94\xa4\x49\x8e\xf2\xe9\xac\x2b\xbe\xd3\xe7\xf8\x44\x95\x28\xf3\xf1\xe2\x28\xb5\x89\x01\x89\x81\xa8\xc0\xd2\xe6\xe2\x13\x65\x0c\xfb\x02\x0a\x51\xad\xfd\x05\x0f\x85\x70\x2a\x87\x10\x01\x45\xcc\xfe\x14\x70\xbd\x52\x72\xf1\xd0\xc1\xf3\x5a\x16\x2e\xea\x8f\x33\x4b\x4d\x61\xac\xb4\x9f\xd2\x1f\xc2\xa5\xa1\x8d\x2a\x9a\xa0\x64\xea\xb4\x86\x13\xdc\x79\x1b\xfd\xca\x69\x41\xa7\xa1\x01\x3b\x13\x79\x12\xb4\xb4\x6f\x2a\x1a\x99\x9b\xaa\x4f\x9a\x45\xe1\x7e\x15\x87\x1c\xa3\x9e\x01\xf3\xaa\xa2\xc4\x88\x86\xd9\x69\xfa\x3c\x39\xf6\x03\xbf\x84\xdf\x75\x92\x50\x1e\x32\x83\xfa\x36\x36\xef\x16\xa2\x18\x98\x45\xa6\xdb\x76\xb5\x4b\xcf\x09\x76\x31\xf8\x92\xa6\xa5\x5c\xb1\x59\xce\x7c\xdb\x87\x0f\xd6\x84\xb1\xa5\x2f\x2c\xfc\x18\xab\x11\x93\x57\x22\x9e\x81\xa8\x06\x1f\x37\x0a\x6a\xe6\x89\xe9\xb3\x01\x61\x9b\xac\x00\x01\xef\xab\x69\x97\xa2\xda\x65\xfd\x58\x74\xfc\xc5\x98\xd3\x45\xf3\x89\xc2\x98\x98\xc5\x6c\x3c\x2a\xe2\xb5\xb6\x5f\x98\x9b\x58\x4c\xb0\xae\x60\xa0\x40\x6d\xf6\xe3\x69\x54\xf0\xa1\x4e\x68\xc6\x39\x72\x58\x04\x08\xb7\x35\x15\xf5\x6d\x17\xee\xb2\x3a\x8c\xa2\xf1\x3b\xa3\x02\x93\x33\x35\xaf\x9f\xf5\x6d\x6f\x8f\x17\xa6\x3b\xa7\x0b\xb6\xe0\x76\x95\x19\x78\x3f\xc2\x74\xad\x96\xa8\x36\xd0\x78\x54\x29\x5b\x68\x13\x30\x08\xa1\xad\x74\x22\xf0\xd8\x85\xe9\x09\x99\x43\x87\x3a\xb1\x47\x30\xe1\xc9\xf1\x44\x09\x9f\x28\x48\xe9\x28\xcd\x8a\xcc\xac\xb9\x11\x6c\xad\x00\x23\x9e\x79\x1a\xc6\xd2\xe9\x65\x36\xcf\x87\x66\x59\xd8\xcd\xdd\x2c\xa5\xd7\x55\xd7\x12\x55\x85\xc9\xfa\xb6\x98\xf1\xa1\xc8\xf9\x9a\x96\x55\x65\xab\x5d\x18\x70\xf8\xa0\x1b\x40\xf1\x58\x95\xc4\x0c\xed\x5e\xba\x1f\xc4\x0e\x3f\x0d\x54\xb9\xe4\x6a\xa0\xc2\xa6\xef\x53\x20\x81\x05\x89\xc8\x85\xd5\x92\x55\xe9\xd2\x13\xd8\xd0\x7d\x08\xb6\x01\xc6\x82\x37\x10\x9f\xb8\x5a\x6d\x98\x99\x45\x05\x9d\xbb\xa9\xa0\x73\x37\x55\xff\x79\x68\xb2\xe5\x1c\x5a\x5c\xdc\x34\xa4\xdf\x65\x5c\x62\xa0\xb8\xd6\xb7\xe0\x0b\x44\xd0\xdb\x73\xdb\xfd\xde\x54\x0a\xfe\xfc\x3c\xe1\x65\x58\x13\x07\xef\x1d\xee\x8a\x8f\xb5\xd4\xbf\x4d\xd6\x08\xde\xea\xd0\x62\x3c\x3b\xc2\x0a\x99\xb8\x04\x3c\x61\x44\x4a\x82\x6e\xa7\x27\x8a\x5c\x97\xb5\xc1\x98\xd0\x66\xaa\x98\x76\xe4\x85\xce\x4a\x5a\x80\x1b\x0c\x11\xcf\xee\xae\x92\xf2\xc4\xea\x11\x45\x4e\x0f\x23\x18\x9a\x24\x32\x7f\xc6\xb1\xaf\x26\xf2\xfa\xa5\xc8\x8f\x56\x22\xe8\x3a\xab\xf0\x6d\x9a\x4b\xa5\x88\xfa\x83\x22\x5e\xc3\x7c\x9e\x3c\x2f\x72\x3b\xfe\x81\xe1\x2f\x57\xa2\x54\xc7\xff\x68\x93\xa2\x78\xc4\xc7\xaa\x2f\x10\xc6\x26\xcf\x39\x03\x70\x33\xd3\xcf\x6b\xcd\x65\xc7\x03\x38\xee\x11\x94\x3e\x27\x30\xbb\x9b\xf8\x76\x8e\x06\xf0\x5c\x99\xf1\x7d\xc8\xad\xc6\x28\x59\x26\x4b\x03\xdb\x00\x98\x19\x1f\x37\xad\x0a\x93\x17\x63\x66\x89\x94\xe6\x69\xf5\x1b\x7c\x5c\x7e\x49\xd5\x7d\x3c\xbc\x5f\xb3\xc2\xa0\x2e\x8c\x35\x08\x3e\x38\x41\x7f\x4c\x43\x23\x17\x3a\xb1\xb5\x43\x93\xc8\x3c\x0f\x26\xc3\x18\xe7\xc0\x27\xaa\x30\x1a\x9a\x2c\x8d\xa3\xc4\xec\x55\x34\x0b\x98\x84\x12\x81\xb4\x1a\x11\x56\x8d\x2e\x8b\x76\x7a\xad\xb7\xce\x27\x53\x98\x9a\x67\x3a\xd1\xb3\xf6\x59\xc2\x15\xc3\x82\x5c\x56\x6d\xc9\xd3\xe4\x56\xe1\x7d\xef\x4c\xf5\x53\xaa\xdc\xb3\x97\xa5\x2c\xa7\xe4\xc7\xb5\x10\x60\x0a\x18\xe0\xcb\x6a\xdc\xcf\x64\x36\xac\x3e\x60\x33\xac\x01\xa6\xe4\xa3\x67\x28\xf4\x7c\x8d\xe5\xb3\x95\xc8\xae\xc2\x1c\x37\x51\x32\xef\x34\xe0\xcf\xcf\x77\x16\xc7\x11\xf7\x0c\x9c\x50\x8f\x43\xf4\x9f\x6d\x66\xcb\xa7\xda\xea\xd1\x83\x3e\x63\xf4\xd9\xa3\xab\x92\x0e\x6c\x1c\xcf\xf8\xcd\x89\x51\x5a\x07\x2b\xa9\x92\x41\x14\x59\xcf\x20\x6e\x40\xb8\xf8\xa1\x6b\xa8\x16\x69\x61\x40\x47\x28\x25\xbd\xcd\x40\xa1\xd8\xde\x23\x97\x2b\x01\xdb\xce\x54\xbf\x7a\x10\xe3\x45\x9b\xd8\xfc\xd5\xb1\x8d\x51\x0b\xe2\x20\x07\xf6\x5b\x22\x9e\x86\xd1\x8e\x51\x66\x8b\x82\x27\x82\xdd\xf0\xde\x61\x81\x5d\xdd\xa3\x17\x06\xf3\xaf\x30\x3a\xa0\x08\xae\xef\x6c\x3c\x16\x3e\x56\x33\x3c\x51\xcf\x9a\x7d\x9e\x76\xe2\x82\x0f\xbb\xfe\xeb\xad\x40\x49\x4c\xfe\x11\xcc\x27\x9f\x68\x0a\x30\xa0\xee\xf8\x23\x8a\x9d\x54\xab\x30\xd3\x5c\x69\xf5\xbc\x24\x4d\x54\x29\xa3\xea\xa6\x2d\xc5\x26\x59\x46\xdf\x79\xc1\x77\x3d\x9c\xeb\xb9\x1d\xf8\x98\xf2\x8c\x6f\x76\x47\xcb\x51\x12\xb5\x7d\x21\xee\x43\x65\xdc\xdf\x2e\x15\xc9\xc1\x99\x29\x7b\x3e\x37\xd7\x49\xcc\x0a\x5e\x09\xae\xfa\x82\x6e\xa2\x5d\x08\xa6\x65\xfd\x86\x7d\xe0\xfe\x65\x9c\x56\x95\x32\xa7\xfd\x45\xb5\x3e\x8b\x74\x48\x1d\x5e\x99\xdc\x54\x33\x68\x8d\x60\xf5\x30\x8d\x53\x29\xe9\xc3\x7b\x7e\x14\xa8\xf8\xf7\x23\x27\xa9\xd8\x4f\xf7\xd3\x3b\x61\x61\x70\x7a\x50\x30\x80\xfb\xa9\x42\x56\x23\x53\x52\x02\x6f\x0c\x44\xf9\x25\x88\x15\x21\xe6\xdf\x83\xaa\x9f\xea\xb7\x4b\x71\x70\xab\xf4\x33\x94\xbf\xd0\x55\x92\x40\x97\x9a\x8a\x32\xa3\xd8\x24\x3c\xfd\x3a\xef\x39\x42\x9d\x55\xf9\x50\x49\x11\xef\x9d\x28\xbd\xa5\x6f\x29\x9c\xab\x98\x26\x4a\x55\x34\x50\x4b\x3a\x66\x74\x0f\x1a\xc4\x07\x77\xf2\x63\x35\x51\xb7\xc4\x83\xfc\x08\x56\x75\x02\xf2\x37\xfe\x4a\x4e\x73\x11\xf0\xbd\xe7\x75\xad\x89\xca\x0f\x28\x84\x3c\x30\xf1\x66\xee\xb3\x52\xe9\xf8\x7c\x86\x1f\xc1\xaf\xff\xbc\x62\x3c\xb1\x61\xf1\xa8\x0b\x95\xbf\xf4\xa5\xae\xa7\x53\x63\xc5\x77\xca\x47\xdb\x4f\xa1\x8e\x04\x33\xf4\xe7\xbb\x6e\xc6\xfe\xff\xf8\xff\x75\xfd\xbc\xf2\x56\xe9\x59\x75\x2e\x72\x0f\x85\xcd\x4e\x75\xbd\xdb\xfb\xbb\x7e\x82\xe3\xf0\x63\x13\xb5\x3a\x1e\x9d\xa8\x6e\xdc\x7a\xa9\x14\x6e\x1f\x9d\x78\xdd\xee\x0d\x3d\xbf\xf5\x81\x76\x5d\xe9\x90\x66\x7f\xf7\xd4\xea\x98\xd5\x05\xbb\x34\x51\x21\x46\xab\x5b\xc4\xf2\x01\xa3\x34\x70\x18\xa7\x55\x03\x69\xc9\xc6\x31\x55\x04\xe0\xc5\x40\xdc\x2d\x91\x48\xf5\x55\x08\xc7\xd0\x55\x11\xb1\x86\x96\x12\x72\xa7\x38\xc6\x91\x87\x55\x71\x8c\x23\x72\x3b\xe4\x70\xf1\x8d\x82\x98\x66\x29\x33\x51\xaf\xe5\x3b\xc1\x27\x95\xa4\xd7\x34\xfd\x64\x15\x66\x45\xc9\x4a\x1a\xaf\xc8\x20\x81\x4c\xa4\x57\xdf\x80\x62\xf3\xae\x89\xc2\xe6\xbc\xa3\xd6\x54\x11\x8d\x6a\x62\x19\xaa\x70\xbf\x3e\x95\x44\xd0\x08\x97\xa2\x71\x77\x53\x00\x77\x95\x56\xef\x34\x43\x20\x17\x8c\x47\x28\x1c\x61\x31\x7e\x54\x2a\x8c\xd9\x47\x0d\x21\xc2\x60\x9c\x41\x6e\x07\xd6\x90\x64\xc1\xe7\xb7\x51\xb1\x43\xe0\xf2\xc7\xa5\x9e\x3c\xcd\x6d\x56\xcc\x50\x2d\x81\xd9\x71\xe1\xa0\x04\x17\x47\x0b\x4d\x78\x73\x35\xb5\xf6\xb1\x29\x8c\x70\x95\x00\xa7\x63\x70\xcf\x4b\x71\xbf\x7a\xe1\x28\xd4\x5d\x56\xd9\xce\x65\x55\x80\xd3\x7c\xc7\x7d\x93\x81\xc1\x1c\x35\x0e\x00\x58\x51\x72\x7e\xa7\xd4\x83\x9a\x78\x08\x88\x85\x37\xb5\x64\x1f\xe2\x13\xa1\x02\xf7\x31\x2a\xb5\xdd\x62\xa2\x45\x79\x69\xf6\x88\xa3\x22\xaa\x2e\x95\x8f\x55\x23\x7e\x30\xee\x5b\xd6\x72\xae\x09\xc8\x89\x1c\xbb\x1f\x81\xa3\x8a\x7c\x1c\x11\xd9\x71\xb5\x6c\x45\xee\xd9\x33\x45\x23\xac\x95\x19\x4a\x29\x2c\x44\x21\x4b\xc6\x0b\xf2\xce\x17\x16\x60\x3b\xb1\xfa\x18\x91\x29\x51\x86\x22\xc0\xb0\xd9\x0a\xc7\xb6\xee\x89\x54\x0b\x18\xcd\x21\x38\x4d\x0c\x09\x9f\xac\x8d\x54\x86\x69\x92\x47\x3d\x9b\xed\x69\x7d\x7d\x96\xcb\x8a\x27\x4a\x4f\x13\x76\x43\x73\x06\xaf\x2b\x60\xff\x05\x2d\xf2\xb6\xee\xc2\x8e\x91\xcd\x8b\x28\x8c\x7a\x90\x24\x81\x39\x6a\x4d\x7c\xb9\xe9\x5a\x39\xe5\xd6\xb1\x30\x60\x2b\xe5\xff\x4f\x4d\x3c\xbe\xf0\x62\xbd\x68\x09\x43\x08\xd9\x07\x3e\x9e\x28\x15\x90\xb1\x30\x0b\xcc\x72\x23\x00\x1c\xd5\xa2\x11\xdf\x72\x8c\x97\x6f\xe0\x36\x90\xf7\x6d\x95\x1a\xb9\x6b\x0d\xa9\xe2\xce\x1e\x61\x54\xe3\xe7\x98\xe1\xe2\x13\xdf\x8a\xfb\x7f\x9f\x31\xdf\xd9\xbd\x11\xfe\xc4\xbc\x10\x85\x04\x78\xec\x3b\xf8\x18\x9f\x4c\x19\xb4\x43\xb3\x02\x6d\x51\xa1\xca\x46\xa0\x75\x1e\x1b\x68\x1c\xa8\x2a\x4b\xf0\x77\x94\x0b\x1e\xf6\xee\xe6\x2f\x6d\xa8\x70\x81\x5f\x28\xbc\xe0\x3d\x0d\x07\x8b\x8a\x2a\x8e\xdc\x57\x6d\x5c\x99\xe9\xf3\x81\xf3\x0f\x82\xda\x04\x9f\xc3\x41\xbc\x11\xf8\x9d\xb4\xad\x45\xe6\xc4\x95\xa1\x36\x75\xae\x29\xaf\xeb\x8f\x5f\x7f\x3d\xb6\x2a\x13\x44\x6f\x93\x8f\x27\x3b\x3f\xf1\x4c\xe7\x2b\x5f\xfb\x5b\x0b\x5f\xfb\xd5\xf9\x47\x54\x6f\xf2\x84\xa6\x50\x7c\x9f\xb6\xb5\x13\xc6\x74\x7d\xd2\x63\x5c\x50\xc6\x26\xb9\x12\x28\xa8\xe3\x9e\x89\x52\xf0\xb8\x4d\x0f\x19\xde\x0f\x10\x54\xdc\x18\xc7\x01\x22\x7f\x45\x5e\xd7\xb1\x41\x56\xc6\x09\xcf\x88\x59\xc0\x11\xa0\xdc\x53\xd4\x1f\x2d\x05\x1c\x8d\xcd\x2a\x37\xdc\xdd\x50\x8c\x1f\xd8\xb8\x4e\x70\x6d\x37\xd0\xe4\x86\x72\x74\x02\x7e\xba\x06\x71\xcd\xed\xda\x3e\xba\x1e\xb8\x92\xcb\x75\xb1\xed\xea\x9b\x9d\x9e\xbe\xc3\xe9\x31\x0c\xcc\x51\x0a\x7a\xf5\x21\x96\x81\xc4\xf6\xbc\xd2\x54\x11\x49\x47\x16\xf8\x47\x98\xa6\x99\xae\xa7\xbb\x46\x78\x86\xea\xf1\xed\x06\x79\xb4\xd8\x24\xa1\xe5\x8e\xba\x8c\x21\xb7\xbe\xf1\x35\x37\x6c\xdc\xa4\x9f\x94\x8f\x47\xa3\x94\x40\x0a\xba\xce\xf7\x49\xa9\xea\x7c\x9f\x38\x7e\x27\x33\xfa\x1b\x7f\xe5\xaf\x90\xd9\x10\x21\x24\xfa\x2d\x3e\x51\x79\xd0\x28\x15\x6d\x22\x11\x44\xf1\xbd\xbf\x0b\xaa\xee\x3f\x32\x59\x91\xd8\x6c\x8f\x02\xec\x5f\x0f\xb4\xf0\xfb\xc5\x52\x61\xe3\xea\xd2\x00\xb4\xc6\x04\x83\xeb\x0b\xba\xa3\x2c\x1d\x8e\x0a\x26\xf7\xc2\x3f\xdf\x53\x95\xd6\x7b\xca\x34\xe5\x69\x18\x11\xca\xdd\xa3\x56\xdf\x09\xaa\x58\x9f\x8f\x55\x9f\x69\xc5\x66\x39\x84\x1c\xaa\x37\xce\x53\x33\xa8\x13\xc3\x4b\xfc\x57\x88\xa7\x64\x9c\x5a\x51\x2b\x0e\xec\x2a\xbd\x4f\xa7\x12\xe6\x19\x81\x58\x41\x9d\xc7\xd6\x5d\x0e\x16\x0e\xd2\x6c\x5c\xd3\x8c\x40\x7b\x02\x7f\x07\x2f\x26\x8a\x38\x8f\xa9\xe8\xb0\x67\x33\x13\x1f\x50\x50\xdf\x5d\xdd\xd6\xd1\x83\xdb\x97\xb5\x1a\xcd\xa5\x52\xcd\x67\x32\x1a\x8d\x45\x74\x6a\xb2\xe0\xb4\x18\x60\x5a\x58\x08\x13\x89\xd1\x6e\x16\x01\x71\x5e\xb4\x7a\x3d\xd8\x90\x0f\x4e\xbc\x43\x79\xb0\xeb\x7d\xfe\xa2\x89\x5f\x37\xe1\x0c\x3d\x1f\x38\x32\xae\xb4\x72\x14\x1c\xa8\x09\xbc\x0b\x88\x51\xf9\xcf\x5c\xc1\x61\x39\x89\x0a\xc4\x91\xf0\x93\x5c\x64\x77\x43\x0c\xd5\x5d\x48\x67\xb5\xc6\xc1\x96\x3f\xdb\x56\xdd\x0a\x3c\x3a\x4e\xb4\xe9\x91\x4a\x61\xdf\x07\x4a\xe9\xb2\x7d\xb4\x5a\x03\xd8\xe2\xdc\x0d\x24\xc3\xf0\xed\xbf\x40\x01\xb7\xb4\x75\x2a\x4f\xe0\x6a\x1e\xbe\x6a\x79\x60\xa2\x54\x4f\xde\x55\xcd\x40\xd6\xa8\x92\xac\x5a\xb1\x69\xb0\x43\x14\xc9\x95\xca\x2a\x49\x57\xad\x5a\x38\x8e\xa4\xc8\x4d\x8d\xfc\x33\x3d\xbb\x03\x05\x36\xe9\x23\x34\x48\xa6\xa7\x8b\xbd\xb1\x53\x81\xd1\x6c\x87\x7c\xac\x4a\xab\xb9\x4d\x72\x4b\xdd\x6c\xc4\xa5\xfc\x68\xf9\x24\xa0\xd2\x8e\x66\x31\x64\xbd\x64\xac\x7d\x56\x6f\x22\x13\x2f\x4d\xc7\xea\x67\xf8\x18\x18\x19\x96\x75\x0a\x68\xd4\x4e\x34\x9e\x50\xcb\x95\xb8\x9d\x56\x80\x48\x41\xa9\x49\x01\x96\x1a\x10\x4a\x8f\x9d\xf1\xf9\x2b\xaf\x74\x7a\xa6\xa7\x7a\xd1\xdc\xcc\x16\xe2\xfb\x47\x74\xd3\x38\x8d\x29\x20\x01\x4c\xe1\x3a\xfe\x90\x4f\x82\x9f\xd3\x24\xdc\xa3\x2a\xac\x5b\x8c\x28\xbe\xad\x9e\x0b\x63\x7c\x02\xc5\x14\xaa\x21\x1b\xbd\xcc\xbe\x66\xe3\xb6\x96\xb6\xda\x52\x0a\x61\x37\x34\x8c\xe5\x0d\x37\x6f\x53\xd9\xac\xd4\xe1\xf7\x98\x9c\x12\x2b\x4f\x98\x2a\x1b\x04\xd1\xa8\xb4\xd1\x52\xf9\x1d\x2d\x36\xc9\xf5\xbc\x78\xd1\x28\xed\xa1\x57\x2a\xab\xd5\x03\x56\xd7\x55\xad\xd9\xbe\x36\x8a\xd3\x9c\x44\xdf\xaa\xab\xc0\xbd\x6d\x6a\xc2\xa8\xcd\xc0\x8f\xa3\x50\x69\x82\x60\x84\x7e\xfa\xee\x98\x82\x1c\x6e\xa8\x81\xb4\x63\x81\x0a\xc7\xa6\x87\xce\x09\xd8\x05\x1c\x16\x6a\x6c\x0e\xfa\xe8\x22\xdf\x8b\x4d\x23\xf6\x43\xdb\xeb\xc5\xd2\x39\x52\xcc\x41\x9e\xf8\xba\x69\x00\xda\x26\xbd\x31\x33\x81\x21\x8e\xba\x85\x77\x89\x65\xf2\x81\x02\x26\x5d\x28\x75\xc7\xfd\x4b\xae\x1e\x18\xe5\x85\x4d\x0a\x48\x10\xb5\x7c\x05\x06\x3c\x5b\x42\xde\xdf\x04\xb1\x19\xd9\x30\x62\xc6\x39\x04\x00\x7b\x95\x8c\xc0\xde\x06\x15\xcd\x85\x4e\x38\x66\x0a\x39\x19\x1d\xa4\xd7\x21\xc3\x13\x5f\xaa\xa3\x26\x5e\x3a\x7c\xb0\xca\xbc\xf7\xd1\xd3\x86\x6d\x44\x84\x89\x34\x11\x01\x1b\xe2\x90\x1b\x18\xd5\xd1\x56\x8a\xff\x81\xec\x1a\x42\xbf\x4f\x02\x25\x65\xfe\x96\x9e\x12\xb2\x7d\x93\xf5\x6d\x3c\xa3\xa4\xa2\x5a\x28\x9c\xb0\x12\x2d\xe1\x26\x84\xaa\x8c\x50\x30\x0c\x20\x57\xdd\xbc\x2a\xd2\xb1\x3d\x52\xd6\xd9\xde\x52\xd4\xde\x17\x94\xe4\xe9\x66\xe9\x23\xe4\x8f\x49\x3e\x77\x4b\x9b\xab\xc2\x24\x50\xb4\x46\x50\x74\x0e\xaf\x12\x11\xc2\x75\xdc\xa2\x74\xe7\xe9\x52\x5d\x1c\x75\x54\xf8\xae\xf6\xa2\x0a\x01\x53\x7a\x5b\x85\x94\x40\x9f\xf1\xa7\xb1\x80\x59\x40\xb2\x51\x27\x6a\x34\xce\xc2\x81\xc9\x65\x0f\xcb\x92\xa0\x2f\x97\x35\xe1\x91\xa4\x26\x49\xd2\x71\x12\xda\xde\xfe\xca\xa3\x20\x9f\xd8\xaf\xa5\xbf\x99\x76\x11\x39\xd2\x3d\xa5\xb6\xf0\x31\xb8\xa3\xe1\x1f\xda\x13\x0f\x4e\xb8\xa1\xfa\x5e\xa7\x03\x35\x7b\xd8\x66\x8f\x8d\xb3\x93\x14\x00\xc3\x86\xdf\x51\x45\x97\x15\x0b\xfb\x26\x2c\x0c\xbe\x42\xb8\x3e\xb5\xf7\x9e\xe9\x54\xd9\x6e\x3a\x8c\x00\xd2\x5d\xd0\xac\x2d\x2f\x3a\xd6\x96\x9d\xf6\xf9\xf0\xc1\x4e\x6e\x0a\x04\x50\x42\xe2\xa9\xe6\x54\x4a\xc5\x01\x75\x77\x2a\x65\x9b\x9b\xeb\x2c\x8e\xb3\x9e\x15\x3a\x24\xcd\x5d\x2b\xbb\xbd\x61\xf4\xb7\x1f\x47\x8b\x88\xa3\xc4\x25\x54\x0f\x09\x78\xb4\xd3\x4a\x25\x6a\xd0\x34\x4a\x92\xdb\xb0\x60\x0d\xcc\x85\x9a\xcc\x3c\x1f\xab\xd9\x25\x61\xf1\x17\x6b\xc4\x92\xbf\xb4\xf9\x44\xfe\xb7\xa1\x3d\x53\x64\x63\x36\x21\x9a\xaa\x4f\x80\x64\x0e\x3a\x90\xf4\xa3\x44\xf0\xd0\xae\xb7\xe4\xa8\x00\x37\x94\xfb\x61\x51\x1f\x45\x79\xb0\xa1\x09\x55\x37\x6a\x63\x2c\x86\x99\xf2\x74\x2b\x51\x06\x93\x74\x06\x34\x18\x17\x7b\xaa\x45\x83\x05\xd8\xea\x7a\x9d\x43\x18\x79\x98\x51\x8c\x76\xf0\xb1\x1a\x0b\xba\xde\xd4\xca\x02\xa0\xb4\xe5\xab\xc5\xeb\x0a\xbe\xb0\x5e\xfe\x42\xdd\xae\x1d\x3d\xf8\x9c\x00\x35\x1f\x56\x0a\x5b\x27\x81\xe9\x43\xda\x80\xe8\x15\x7e\xea\x7f\xa7\x5b\xc1\xde\xb9\x42\xeb\x1d\x1d\x8b\xcf\xc9\xb6\x89\x7c\x72\x75\x1b\x52\xc7\xaf\x2e\x44\x11\x86\x08\x12\x9c\x03\x03\xd4\x2e\x2f\x6b\x3e\xb6\x0d\xce\x52\x84\x36\x81\xdc\x0e\x78\x13\xce\x05\x7f\xa1\x09\x65\x6e\x63\x5b\xd7\x84\xe3\x59\x66\x94\x52\x8e\xc3\xd4\xf2\xf6\x55\x02\x9e\xd7\x61\x7a\x78\x38\x50\x51\x8a\xd8\x6a\xc9\x8d\xb2\x28\x97\x01\x13\x26\x69\xc4\x3e\x12\xc6\xc6\x9d\xf5\x9f\xd9\x23\x44\x26\x9d\x0f\x6d\xc6\x79\x0f\xee\x07\x60\x14\x3e\xf6\x6a\xe1\x69\xb2\x64\x73\x87\x01\x11\xbe\x62\xba\x54\x3e\x99\xea\xcf\xcd\x1e\x21\xf1\x6c\x9b\x57\xa1\x84\x89\xdb\x7e\x2e\xfb\x1f\x2b\xa5\x99\x4b\xb5\xf2\x9b\x12\xe7\xe2\xc9\x02\xd7\xb3\x61\x96\x3b\xba\x3c\x61\xbc\x53\x4c\xc6\x95\x0f\x7a\xc9\x61\xe4\x98\x60\x47\xf2\x5d\xbf\x38\xbf\x1f\xa8\x08\xef\xa6\x86\xf4\x47\x2b\x11\x25\x76\xfb\x14\x4f\xcf\x77\xe9\x6b\xb6\x2f\x07\x5e\x43\xe5\x0c\xf9\x21\x60\xc5\x8e\x03\xd6\x89\xdd\x07\x6e\xaf\xed\xcb\xb4\xfc\x60\xbb\x5b\xdd\x06\xfa\x68\x2a\x67\xae\x66\x51\xc1\x82\x06\xc2\x06\x59\x7d\xad\x90\x41\x4a\xb6\x33\x32\x6b\xdc\x1d\xc5\xd5\x6f\xd3\x85\xd4\x54\x4c\x70\x8b\x17\x15\x68\x50\xea\x8f\xf0\xa8\xcf\xf9\x0a\xd3\xbc\x2a\xde\x38\x66\xdd\xb3\x3a\x65\x39\xa1\x44\x35\x6f\x36\x70\x29\x77\x96\x52\x88\x3a\xb4\xeb\xd8\x9e\xc3\x07\x35\x09\xff\x2c\xb7\x71\xee\xab\x48\x3b\x0d\xc3\x71\xd6\xd6\x00\xbc\xc0\x6f\xb5\x11\xdd\xbc\xf0\x6e\x4d\x3b\x99\x2c\xcd\x09\x31\xc9\xab\x4f\x28\x59\x95\x8e\xf8\x77\x9a\x3a\x7e\x36\x2a\x06\xd5\x43\x3e\x74\x88\x9f\xc1\x07\xb4\xed\xf9\x78\xaa\xe4\x52\xc5\x84\xb1\x2d\xda\x3e\x20\xdc\x0a\x94\x6e\x39\x8f\x5c\x4a\x31\x59\x76\x06\x71\x15\x27\x36\xcf\x6b\xb0\xa5\x96\xe2\x12\x56\x14\xa0\x51\x96\x17\x4f\x55\x26\x89\x05\x27\xe8\xc9\xa1\x86\xf0\x00\x45\x80\xe8\x4d\x6d\x6b\x8c\x32\xd3\x07\x30\x9d\x3d\x76\x0b\x52\xeb\x1b\xb4\x1a\xb0\xfa\x5a\x24\xe7\xb2\x7d\x12\x09\x98\x08\x74\xd1\xe5\xc3\x62\xfc\x01\x72\x36\xb8\xc8\x5d\xc4\x61\x00\x8f\xb7\x59\x2a\xa5\xd7\x93\xc8\xba\x85\x46\x80\xde\x32\x18\x52\xee\xa9\x20\xfc\x5f\x07\x0a\xff\x5f\xea\xa0\xe2\xc0\x44\xf1\xf3\x7e\x84\xa0\x07\x55\xb1\xc7\x26\x4d\x93\x2b\x79\x65\x0c\x5d\xbe\x83\xd6\xce\x1f\x6b\xb0\xf3\x1f\x3b\xa9\xbc\xa5\x8c\x64\xf2\x56\xcd\x9a\xe0\x45\x5c\x74\xe7\x51\xbe\xd7\xa7\xdc\xb7\xe0\xfa\xa3\x25\x02\xf5\xa3\x41\x88\x20\xb3\x46\x12\x01\x8f\xa3\xe5\x67\xa9\x96\x9c\xcf\xd4\x52\xc7\xea\x81\xcb\x48\x9e\x96\xfe\x0b\xb4\x64\xc6\x69\x35\x7e\x62\x5f\x1d\x47\x05\xd5\x0d\x65\xf3\xf1\xa2\x72\x6c\x6d\x6e\xac\x84\x7d\x0c\x47\x77\x6a\x02\xfb\x86\x2a\x0e\x1f\xc7\xc3\xe1\x21\x53\xc5\xfd\xb7\x38\x4e\x78\x34\x5d\x84\xad\x34\x31\x3b\x0c\x95\xa4\x7d\x1e\x40\x90\x9b\x21\x4a\x6e\xa8\xfc\x60\x40\x56\x54\x48\x69\x5d\x20\x40\xfc\x1e\x96\x02\x90\x6f\x6f\xd2\x45\xf3\x71\x03\x44\x73\xbe\xb3\x5a\xd9\x1f\x80\xa5\x58\x33\x07\x60\x29\x11\xd0\xf1\x97\x5d\x79\x41\x3b\xa3\x5b\xb1\x30\x4e\x78\x92\xba\x1b\xf1\x3e\x85\x12\xfc\xff\x27\x4d\x70\xae\x3c\xea\x27\x02\xbd\x43\x21\xea\xb7\x70\xd9\x7c\x12\xf8\x7c\xa1\x6f\x86\x36\xdf\xa7\x7a\x8b\x5c\xc0\x44\x38\xfa\xe0\x44\x2b\xae\xa0\xbc\x0f\xab\x01\x78\x93\xca\x88\x25\xc0\xff\x98\xae\x1a\xe5\x89\xad\x06\x81\x82\x05\x60\xb1\x5c\x66\x8b\x36\xf9\x26\x6d\x2a\x3e\x56\x6a\xa3\x85\x79\x6d\x64\xd6\x6c\x96\xef\x53\x94\x18\x1b\xf4\x00\xe0\x79\x3e\x0e\x3c\x35\xf3\xc7\x8a\x8e\xff\xbf\x45\xda\xeb\x80\xed\x5a\x10\xee\xa5\x05\x57\x12\x68\x52\x19\x5c\xcc\x4c\xd2\xe3\xc9\x58\xa9\xb9\xe0\x31\x20\x37\xfc\x38\x50\x8e\x62\x33\xd0\xd0\x5f\xa7\x89\x32\xb4\xc3\x34\x33\x8b\x51\x1c\x61\x80\x1a\x98\x81\xbb\x1a\x40\x70\xb7\x26\x6d\x16\xa6\xfd\x24\x7a\xdd\xb6\xeb\xa5\xc8\xea\xaf\x79\xd8\x35\xf0\xc5\x83\xe3\x53\x0e\x69\xf6\x48\xc7\xc4\xe3\x61\x94\xf0\xd8\xa5\x13\x16\x72\x70\x16\x4f\xdd\x15\x9a\x65\x31\x33\x0e\x67\x56\x2d\x14\xc1\x99\x35\xb0\xbc\x67\x76\x31\xcd\xa0\x45\x88\x78\x08\xa5\x2e\x3e\xae\x45\xd0\xab\x83\xf4\x89\xea\x2d\x20\x6b\xd9\xa4\xe9\x29\x58\xec\x2b\x81\x82\x69\x7d\xae\x0b\x94\x6f\x60\xfd\x20\xe1\xc4\xfc\x3c\x4c\xed\x29\x6c\x16\x51\x54\x69\x39\xaa\xe6\x03\x24\xcd\x25\x0a\x7d\xca\x1d\xdd\xa1\x5c\x70\xfb\x32\x2c\x08\xd6\xd3\xe5\x6a\x45\x6e\x6f\x53\x30\x8e\x8a\xed\x3d\x7e\x9f\x58\x1d\xa0\xb2\xa2\x7f\x78\xf8\x09\xb4\x66\x84\xd3\x52\xb9\xe9\xc7\xbb\x8f\x2b\xd2\xc1\xd8\xac\xe5\x91\x81\x17\x86\xf5\xbc\x51\xaa\x39\xa1\x1b\xaa\xbf\x3b\x8a\x6c\x16\xda\x96\x9e\x9a\xd0\x23\x17\x0a\xca\x3b\xb0\xd9\x30\xa5\xfc\x43\xc6\xd9\x55\x95\xfa\x74\xe0\x65\xb4\xe2\xdc\x12\xe2\x97\x2e\xf3\x2b\x4f\x01\x21\x2a\xc1\xae\xe7\x70\xb8\xa7\x86\x07\x5b\x53\x5e\xe7\xe8\x41\x95\xa1\x57\xdf\x86\xee\xd2\xe7\x9a\x6f\xe6\xf3\xc0\x6f\x45\x93\x2d\x46\x45\x66\xb2\x35\xb0\xfd\xe3\x46\xff\x01\x86\xde\xf8\xc4\x75\x9c\x0b\xc3\x21\x0e\xf2\xca\xf7\xe8\x42\x60\x59\xaf\x07\xea\xee\x51\x92\x93\xa4\x4a\xf5\x27\xce\x04\x0a\x5d\x73\x46\x81\x70\x99\xf5\x08\x26\x95\x55\xaa\x03\x37\xc7\x77\xe6\x43\x25\xf4\xb5\x38\x7e\xfd\x75\xca\xd2\x94\x57\x79\x91\x5b\x70\xb0\xad\x70\x3d\xd0\x45\xe7\xff\x4f\x57\x27\xcc\x3b\xbe\xbc\xb3\x62\x92\xfe\xd8\x64\x68\xa1\xc0\x1a\x9e\xd1\x83\x13\x67\x14\xc8\x6c\xd1\xda\x70\x60\x86\x2d\x0a\x33\xb0\xdc\x3f\xd5\xd4\xe5\x9f\x7a\xce\x75\x9b\x45\x69\x2f\x0a\x0d\xcd\xf7\xff\x5a\x7d\xc0\x42\xe4\xce\x76\x96\x56\x16\x5e\x78\xb1\x33\x34\x85\xe9\xa7\x59\x0f\x6c\x73\xdb\x27\xe1\x75\xb7\x4f\xaa\x52\x92\xe9\xdb\xa4\xc8\x21\xd2\x8c\x7c\xfb\x1f\x23\x25\x83\xe3\xdf\x54\x51\xe7\xbf\x50\xc4\xe7\xdc\x5e\x96\x88\xa0\x61\xe0\x3c\x1f\xa6\x71\xcf\x7a\x9a\x01\xe1\x05\xf0\x75\xbb\x0b\x0d\xd8\x12\x1e\x61\xa6\x82\x8a\xa3\xa9\x75\xd5\xfb\x8b\x53\x16\xed\x95\x57\x3a\x45\x66\x56\x22\x53\x98\xb6\x62\x6b\x58\x57\xc4\x15\x7f\x40\x18\x54\x98\xc7\x73\x0a\x49\x39\x1a\xc5\x00\x50\xe3\xcf\x30\x06\x00\x83\x82\xb4\x16\xe9\xf1\xbb\x8a\x7f\x69\x18\x46\x20\xdc\x16\x32\x1d\x85\xbc\x15\xa1\x20\x21\x3d\xa3\x55\x04\xf7\xb8\x5e\x63\xe0\x99\x72\x26\xbf\xc2\x82\xac\x96\x1b\x57\x08\x14\x30\xa4\x88\x2c\xe1\x9a\x1e\x8c\xd7\x7c\x2c\x59\xba\x68\xb3\x62\x8f\xe6\xf6\xba\x5d\xfa\x06\xc5\x9f\xd2\x0a\x71\x5a\x72\xd5\x77\x20\x56\x39\xd0\x55\x50\xb2\x93\x53\xef\xe1\xc8\x0b\x9d\xa5\x94\x38\xb1\x3d\x85\xd3\x06\x8c\xac\xd0\xe2\x3c\xa2\xd6\x71\x51\xd8\x19\x4f\x34\x7b\x4a\xa7\xfe\xa8\x33\xf1\x71\xe9\x9b\x40\xa7\x9c\x99\x1a\x46\x45\x26\x13\x27\x35\x31\x2e\x81\xc0\xf8\x01\xfc\x68\xc5\x14\xd1\xeb\xe2\x95\x9c\x96\xa5\x2b\xfc\x7c\xdc\x34\xbd\x11\x9a\x62\x90\xc6\x4c\x36\x8a\x7c\x71\x0b\xef\x8d\x4f\x54\x52\xfc\xfc\x73\xf3\x7b\xfc\xdc\xc5\xd5\x52\xbd\x6b\x5e\xf0\x30\x48\x1f\xf2\xbb\x16\x0a\xce\xea\xab\xe1\xc9\xf6\x74\x1d\x28\x63\x9c\xf5\x2d\x6a\x60\x8a\x80\xd1\x81\x57\x3e\x6f\x62\x14\x1e\x58\xd3\xe3\xfc\x15\x65\xa7\x7b\x08\x4a\x85\xe0\x52\xc9\x51\x6e\xb8\x95\xdc\xb3\xc9\x0a\xa7\xc6\x4c\x5f\x59\xd6\xb8\x2c\x1f\x52\x5c\x3f\xbd\x03\xd5\x0b\xc5\xf8\x26\xb6\xb6\x4c\x83\x50\x6d\x54\xf0\x1c\x14\x5d\x48\x6f\xba\xe5\xc4\x1e\xc1\x81\x82\x5c\x85\xa5\x4c\x78\xcc\x43\x8d\x5e\xee\xee\xaa\xf6\x32\x7b\x09\x3e\xd1\xed\xca\x33\x2e\x67\xcf\x4d\xb8\xac\x75\x8c\x94\xde\xcf\x99\xf2\x4b\x3b\xeb\x59\x0b\x55\xda\xf9\xf3\x8a\x44\x7d\xbd\x6c\x1d\x79\xc1\x0d\xaf\x28\xd4\x15\x6b\xc2\x31\xfe\x16\xa9\x15\xcc\xc8\x7f\x43\x69\x2d\xac\x5d\x1b\x62\x9a\x70\x3a\xc7\x54\x07\x71\x5f\xd7\xe3\x4d\x3f\x47\x3a\x20\xd5\x4f\x25\x17\xd2\x9a\xb4\x94\xf5\xae\x32\x67\x29\x49\xa8\x41\xd9\xab\xa4\x79\x89\x76\xc8\x16\x02\x4e\xec\x55\xd6\x14\x75\x94\xbf\xae\x0b\xf2\x98\x9e\x34\xbb\xa5\x96\xcd\x1e\x94\xba\x71\xeb\xff\x2b\x35\x0c\xd1\x4f\x7e\x87\x3c\x12\x1b\x6a\x5e\x9e\x08\xe3\xef\x28\xb0\x55\x3e\x5e\xcc\xa3\x5e\xb5\x87\xda\x7a\xcc\xc7\x17\xc9\xc1\x7d\x21\x32\x36\x0a\x0b\x6b\x0b\x13\x0e\x84\xb5\xc2\x05\x28\xf3\x3e\x40\xf1\x8e\x2d\x4c\x4d\x65\x3b\xda\x7e\xe7\x5f\xa6\x77\x8a\xca\xc3\x39\xcd\xdb\xf7\x53\x15\xc3\x57\x8b\xdf\x10\xa7\x9b\x02\x8a\xd1\xa5\x09\x68\xcc\x91\xa8\x47\x89\xcd\xb8\x1d\x84\xda\xce\xc3\x13\x8f\x92\x78\xb8\x2b\xe1\x85\xc9\xec\x03\x9e\x64\x91\xb9\xe4\xc9\x1a\xa6\x4f\x74\x3d\x5e\xf7\x5c\xe9\xe9\x74\x8f\xd3\xd2\xa8\x41\xb0\x1d\x89\xdf\x51\xa7\x93\x5b\xdb\xfe\x1f\x37\x60\x38\x31\xff\x62\x93\xba\x84\xf8\x96\x26\xa1\xda\x52\xc5\x9e\xca\xfe\xc7\x40\xde\xc0\xf8\xaf\x07\x8a\xf7\x7e\x1d\x0e\x19\xfb\xf1\x63\x45\x08\xf6\x09\xbd\x73\x19\x18\xd2\xa3\xa8\x76\x18\x55\xde\xa4\x8a\xb9\x9c\x08\x81\x57\x41\x5c\x57\x1a\xee\xd7\x9a\xa6\x93\xc3\x74\x38\x32\x21\xea\xeb\x08\x7e\xde\x52\x3d\x92\xb7\xdc\x8b\x60\x35\xb8\xb6\x9a\xd7\xc2\x62\x02\x6b\xc3\xf5\x52\xc1\xdf\x3e\x69\x22\x18\x2d\x32\x0b\xe4\xa9\xf8\x18\x1f\x60\x6e\x94\x5f\xf6\x2d\xd3\xcc\xe6\x36\x29\x50\xfd\x6d\x29\xca\x04\xec\x19\xa9\x74\x4e\x87\x13\x2f\x8b\x54\xd5\xbc\x7f\x4e\xd5\x27\xf8\x78\x8a\x0d\xc1\x29\x2f\xc7\x99\x35\xbd\xb5\xbd\x0a\x99\xb7\x77\xe2\x84\x48\xfe\xde\xcf\x2b\xc6\xc0\x77\x30\xb6\xe1\xf8\xc3\x1c\x61\xc7\x15\x5a\x56\xa2\x9a\xef\xa6\x04\x62\xe3\x44\xf7\x84\x90\x42\xe9\x43\xbc\x35\xe5\x16\x40\x3a\xd6\xc3\x63\x92\x46\x30\x7d\x42\x2a\x88\x8f\xaa\xa8\xd7\x44\x43\x1a\x7e\x13\xc8\xfe\x59\x04\xde\x6e\x64\xd5\x83\xbb\x30\x9a\x27\x84\x68\xaa\x30\xfd\x9e\x2e\xe9\x8c\x87\xc3\xa8\xd8\xe3\x47\x94\x76\xa1\x5e\xc5\x54\x99\x81\x2f\xdd\x82\xcf\x17\xe3\xd3\x80\xb0\xa2\x37\xd7\xea\x3a\x5c\x66\x66\x47\xe3\x38\x8f\x10\x1c\x8b\xca\x34\x3d\x61\x3e\x99\x78\x00\xf8\x38\x59\x4e\xd2\xd5\x24\xa7\x00\x8d\x25\xf5\x4a\x85\xc2\xbd\x4c\x15\x35\xc1\x1c\xd6\x6a\xb9\x3d\x3b\x4c\x5c\xe8\x2f\xe3\xc7\xad\x79\xbf\x40\x7d\x3c\xb7\x68\xd6\xf6\xfc\x7f\xd1\x4c\xa9\x89\xae\x4c\x63\x01\x87\xd6\x24\x3b\x08\x2d\x8e\xa9\x41\xc8\x63\xca\x56\xe6\xe9\xd0\xf6\xcc\x5a\x5b\x01\x07\xce\x92\xa5\x91\xb1\x00\x25\x40\x7e\xbb\x41\xcc\xff\x39\x12\xd5\xb2\xfe\xe7\xb4\xe0\x87\xf0\x78\xfb\x00\xe7\xd7\x66\x17\x5a\xfe\x51\x7c\x00\x03\xc7\x27\xea\xaa\x96\xa3\x58\x74\xeb\x17\x84\xea\xb5\x54\x0d\xd9\x77\x03\x79\xa9\x4b\x69\x5a\x0c\xa2\x38\xe6\xd0\x15\x25\xdc\x5b\xb4\x16\xdc\x20\xa3\xef\x73\xb6\x95\xbc\x50\x54\xe4\x36\x5e\x7a\x98\x6e\x5c\xb8\xaf\x14\xb2\x07\x6d\x03\x27\x5e\xfc\xbc\x0c\xad\x6d\xc2\x18\xfa\x36\xa1\x70\x61\x00\xa1\xe4\x8a\x53\x7e\xb2\x13\x7d\x79\xfc\xc3\xcd\xd2\xf3\xb7\xfc\x65\x98\x74\xa4\xed\xdb\xf4\x7e\x6a\x28\x5b\x66\x68\x09\x7c\xf1\x2f\x5c\xe1\x70\x0e\xe5\x9e\x0d\x8d\xaa\xd9\xa8\x11\xa4\x47\x4b\x4b\x69\x06\x25\x67\x71\x74\x3e\x77\x6a\x77\xfd\x94\xd6\x49\x4d\xc1\x71\x4b\xcd\x62\x9b\x38\xb6\x7d\x6a\x8a\x3a\x22\xc6\x77\x02\x4f\xd0\xf8\x4e\xa9\x78\xa9\x72\x1b\x8e\x0b\x06\xb4\x30\x9f\xba\x9a\x4d\xfd\x96\x1a\x8e\x0d\x4d\xd2\x1b\xd3\xdf\x49\x19\xa7\xfa\x3b\xa9\xef\xf8\x5f\x87\x10\x93\x65\x5d\x3d\x16\xba\xc6\xb3\x13\xd5\x6b\x4f\x3b\x1f\x0e\xcc\xa8\x67\x63\x43\x43\xda\xae\xb9\xfa\x8f\x4a\x3f\x6e\xf3\x8f\xea\x5d\x51\x9b\x7d\x99\x5e\xbb\x93\x56\x71\xf4\xd4\x9f\x04\x9a\xe2\xe9\x1d\x7a\xbd\x18\xa4\xbf\x0a\x33\x0b\xa7\xf5\x1d\xdd\x6a\x7c\x97\x5e\x1d\x5e\x69\xab\x4b\xbb\x1e\x21\xd1\x49\x45\x49\x72\x1a\xcb\x06\x61\xe5\x4d\x2c\x34\x38\xf3\x9b\x30\x8a\x28\x67\x33\x57\x9c\x33\x00\x0e\x34\xfe\x33\xc0\xae\x30\x94\xf3\x09\xc5\x5d\xf8\xa3\xab\x00\x67\x21\x20\xfb\x01\xd6\x1d\xd3\x11\xa9\xa0\x07\xa8\x0e\xc4\x79\x77\xd1\x72\x40\x94\x79\x95\x60\xa6\x35\xc2\x6f\x7e\x4a\xa3\x2c\x6d\xfb\xd4\x06\x78\x17\x74\x26\xee\xe9\xd1\xb0\x0d\xa5\x65\x34\x34\xd9\x38\x49\xc7\xe1\x20\x6a\xd7\xd8\x29\xab\xe7\x2b\x1b\xa3\xe5\x88\x27\x4e\x2a\xc7\x11\x9b\x95\x28\x1f\xb4\x15\xd8\xe8\x4c\xe9\x53\xe3\x73\xa5\x1f\xf2\xbd\xd5\xd4\x18\x5d\x4d\xed\xa2\xed\xa7\x89\x55\x6a\x06\xd7\x94\xe0\xd2\x35\xc5\x71\xf8\xd2\xb3\x33\x1e\xc9\x8c\x10\x12\x46\xe5\x7a\xa0\x24\xbc\x36\x34\xbd\xb2\x47\xba\xf7\xd2\x5e\xdf\x66\xc2\xbc\x82\x50\xfb\x2a\x9c\x97\xe3\x5b\xf0\x0e\xe5\x6d\xf5\x6c\x56\x6c\xdf\x16\x66\xd1\x09\x7f\x8a\xb2\x7c\xcb\x71\xce\x9c\x57\xb5\x81\xd5\xea\x47\xd4\xb4\xfb\x85\x52\x7d\xe8\x5f\xe1\x37\x58\x24\x48\x33\x22\x84\x45\xb4\x12\xe5\x05\x41\xa4\x10\x6a\x7d\x47\x83\x56\x4f\xab\xbb\x05\xd1\x9f\xb4\xed\x1b\x74\xfb\xd2\x15\x9b\xcd\x78\xb2\xde\xbd\x8a\x7f\xf2\xba\x06\x81\x02\xc4\x88\x0c\xa4\xdd\x6d\x9e\xda\x4e\x44\x2a\x56\x93\x00\x4b\x39\xe2\x31\xdd\xdc\x20\x1d\x92\xea\x2f\x85\x60\x47\x33\xe1\xe8\xf1\xee\x70\xd9\x16\xf9\xde\x1a\xd9\xbc\x9f\x54\x7b\xa4\xab\xbc\xc1\x5d\x5a\x49\x8e\x6c\xdc\x51\x52\xde\xd4\xe4\xfe\x27\xd4\x62\x5c\x1c\x17\x55\xfa\x30\xc5\x8f\x87\x8a\x14\x5a\xae\xc2\xda\xe1\x21\xc9\xd1\x70\x94\xe6\x88\x45\x9f\x73\xc2\xd6\xde\x25\xbc\x59\xea\x74\xc4\xe3\x4f\xf2\x41\x34\xa2\x59\x5f\x9b\x21\x28\x63\xc7\x8b\xc5\x28\x5e\x58\x45\x44\x89\x19\x8d\xd6\x94\x9d\xab\x0f\x2b\x37\x6c\x0e\x12\xa4\x5c\xb5\x79\x31\x43\x96\x02\x11\xd7\xef\xa9\xe8\x6b\xa6\xeb\x8d\x30\x23\x86\xd1\x75\xbc\xd5\x30\xc2\xfb\x62\x27\x4a\x2c\x34\x15\x57\x58\x75\xdd\xc9\xd2\xce\xcd\x39\x59\xda\x06\x10\x1d\xb5\xb9\x73\x86\x11\x21\x80\x9b\xe9\xaa\xae\xff\xef\x2a\x21\x98\x99\xc9\x4e\xed\x16\x9a\xd5\x8e\x96\x96\xa2\x70\x1c\x17\x51\x5d\x9d\xe7\xb4\x56\xe7\x39\xad\x6a\xda\x45\x3a\x8a\x42\xc4\x70\x58\xe9\xa7\x4a\x8f\xc9\xbf\xa0\xa2\xc4\x5b\xaa\xd5\x44\xd9\xdd\x8c\x9a\x5d\x38\xc5\xe9\x16\x2c\x03\x57\x11\xd0\x2c\xe0\xe2\xaa\xc0\x47\x1a\xa4\x6a\x69\x2f\xeb\x21\xd6\x7a\x3d\x51\x5d\xeb\x38\x5b\xb6\x6b\x35\x54\x56\xa0\x51\x59\x53\x7b\x94\xe6\xca\x4d\xa6\x86\x70\x31\x88\xc2\xc7\xe5\x01\xa5\x61\xb3\x97\xea\x07\x5c\x5c\x54\x34\x6f\x18\x44\x64\x1d\x47\xf2\x11\xae\x00\x79\x78\xa1\xa6\xef\xc8\x7f\x3f\x51\x02\xc8\xe9\xd0\xbe\x8e\x15\xe0\x28\x62\xe7\xe7\xe5\xb8\xe6\x71\x8b\x74\xf4\x20\xdd\x18\x67\xc2\xa8\x41\x08\x3d\x6a\xf5\x29\x3c\xe9\xc7\xba\xca\xcc\x6d\x06\x9a\x71\xb6\xa6\xf9\x7a\xf4\x20\xff\x8d\x56\x70\xdd\x33\xa9\xd1\xd5\xee\x7c\x5c\xcf\xcf\x77\x72\x13\xf5\x5a\x75\xfc\x7a\xb5\xe3\x04\x33\xaa\xf2\x61\x33\x8e\x8b\x96\xaa\x37\x5e\x01\xb4\x99\x4f\x5c\xec\x93\x87\x99\xa5\xd8\x17\xda\x5f\xaa\x52\x27\xbd\xc8\x0f\xb5\x76\xd2\x38\x31\xb0\x2a\x8e\x20\x79\x27\x63\x2c\x3a\xa7\x5b\x81\xd2\x1f\xca\xf3\x34\x84\x2c\xfc\x5e\x5f\x6e\xe7\x29\x0f\x2c\xde\x1b\x58\x84\x78\x22\xbf\xd8\xd5\x3d\xa3\xb7\x15\x8a\x1d\x0a\xc1\x88\x68\xef\x29\x90\x83\xc9\xa3\x1e\x54\x36\xb0\xeb\x3f\xa3\xcf\xf0\xbe\xc0\x25\x62\x7c\xe1\xf2\x94\xeb\x7d\x86\xe8\xa8\xc7\x59\x26\xec\x34\x2c\xaf\x1f\xf8\x22\xe6\xf9\xf2\xdf\xfe\x82\x1c\x37\xb4\x59\x11\x2d\x45\xa1\x29\x6c\x8e\x9e\x36\x16\xc1\x1d\xde\x6e\xa8\x76\x6d\x05\xaa\x1d\x72\x43\x29\x7e\x6d\x28\x70\xf6\x7b\x0e\xdd\x31\x18\x0f\x47\x03\xa2\xee\xd5\x8f\xe1\x73\x5d\x3c\xfd\xdc\x8b\x9e\xbf\x6e\x8b\xb4\xad\x23\xbe\x1f\x95\xb5\x39\x95\xea\x43\xd8\x10\xd7\xa6\x92\xfb\x43\xb3\x1d\x03\x4a\xd1\x6a\x0b\xb1\xc8\x29\x1c\xa3\x28\x9e\xaa\x10\x35\x4d\x72\xfb\xea\x18\xda\x9a\x55\x1c\x89\xfd\xff\x0e\xb9\x37\x3e\x6e\xa0\xfb\xee\xf4\x2b\x2f\x9c\x08\x36\x11\xa1\xfc\x19\xec\x1e\x3e\x99\x6a\x7d\x3c\x23\x68\x65\xaa\x54\xe3\xe6\x44\x1f\x5e\x11\x89\x5d\x72\x32\xf4\xff\xc9\xbf\xab\x67\x26\xcf\x97\xed\x17\xff\xd6\xd7\xb9\x02\x77\x5f\x85\x6b\x57\x5d\xd5\x65\x35\x22\xfc\x38\x3c\x1d\xd2\x01\xf4\xa6\xa4\xb2\xea\x1d\xf1\x49\x2d\x66\xb1\x8c\xf0\x0c\x96\x93\x5b\x4d\x7c\xd2\x28\x67\xc6\x55\x97\x96\xdf\xe2\x00\x7e\xf2\xb1\x6a\x01\xac\x56\x2e\xae\xe5\x33\xdc\x2b\x81\x07\x3c\x5c\x71\xcd\xee\x9e\x35\xb1\xcd\x2a\x87\x0b\x97\xe0\xd4\x3e\xaa\xbb\x17\x7a\x35\x8f\x33\x79\xa7\xc9\x99\x2e\xc5\x36\x1f\x8c\xd2\x82\xf3\x4d\xd4\x3b\x71\xf7\x6e\xe6\x79\x6e\xce\x21\x7e\x3d\x77\x88\xd3\x11\x1b\xca\x2d\xe1\x79\x6f\x2a\xc5\x9d\xcd\x46\xc0\x65\x3a\x4e\x0a\x76\x77\x70\x94\x27\x03\xe5\x35\x4f\xaa\xee\x5f\x31\x10\xd5\x3d\xc7\x85\xce\x5d\x13\x89\xd5\xfd\x14\x80\x89\xb2\x30\x33\x4b\xc5\x7e\xef\x32\x1e\x44\x35\x58\xfc\x4d\x4b\xc9\xde\x57\x4b\xdc\x71\xa4\xfa\x86\x29\xab\x3f\x23\x42\x3c\x47\x36\x1a\x85\xec\x37\x69\x61\x3b\x6d\xdb\xd9\x23\xdc\x04\xba\x17\xd4\x5a\x27\x4a\x82\x2e\xb3\x2b\x51\x92\xaa\x41\x97\x0f\x75\xe2\xfe\xa1\x9a\x76\x08\xd3\x2c\x23\x0c\x12\x30\xec\xc2\x99\x4c\xab\x11\xbb\xf8\x23\x25\xf2\xf8\x60\xd7\x37\x47\x6e\x78\x60\xae\xc9\x23\x9b\x03\x3a\x86\xf7\x76\x0e\x79\x14\xca\x2d\x37\xd4\xf4\xcb\x34\x13\xd1\x2b\xaf\x74\x56\xa3\x62\x90\x8e\xa1\xa0\xe1\x44\x4b\x7c\xf2\x72\xa1\xd4\xd5\xe8\xa4\xc8\xd2\xf8\x91\xea\xa7\x5c\xc2\x50\x79\x63\xd7\x3e\x98\x3d\xc2\x11\xe9\x6d\xa6\xd0\x64\x51\x71\xbc\x66\xe1\xcf\x57\x9d\xe4\xcf\x01\x0d\x13\xed\xf1\xea\xb1\xe3\x5a\x21\x2f\x26\x70\xd8\xea\xc6\x99\x62\x4c\xd3\xbc\x6e\x29\x6a\xaf\x6f\x61\x79\xe0\xae\xef\xea\xb6\xd4\x25\xf7\xac\xbe\x69\x97\x96\x32\x8b\x90\xd3\x41\x19\x3c\xd7\xe4\x69\x35\x5a\x62\x0d\x19\xab\xfc\xa1\x96\xf0\xe1\xfc\x07\x8f\x4d\x94\x6a\xf6\x79\x0a\x3d\xe0\x4d\x3e\x41\x1a\xca\x44\xad\x81\xc2\xb4\x4d\x38\x09\x67\xbc\x29\xcc\x9d\xf3\x47\x35\x29\x87\xa3\x07\xe7\xb7\x77\x77\xd5\xd5\x80\x45\x97\x0b\x89\x8a\x4d\x61\xa6\xeb\xbd\x7b\x61\xb3\x6c\x8d\x2d\xa3\x24\x40\x0a\x52\xb6\x1e\xf8\x7a\xc5\xaa\x4d\x7a\x6b\x48\xc4\x98\xbf\x08\x0c\x83\x38\xb9\x83\x9a\x80\x08\x05\x4d\x57\xc7\x88\xa8\x53\xcf\xc7\xc0\xca\xfc\x24\xf0\xae\xeb\x27\x6a\x4d\x66\xde\xac\xe2\xf5\x7c\x37\xf0\x7d\xa9\x3d\x5d\xdf\x1f\xde\x3b\xf1\xee\xfb\xd5\x31\x65\x7c\x4e\xca\xe5\x34\x3f\x3d\x94\xbf\x4e\x94\xfe\x89\x9f\xd6\x83\xde\x27\x82\x87\xfd\xc0\x7e\x6e\x7b\x48\xa5\x58\x4e\x0b\x0d\x38\x27\x80\xed\xc2\x81\xab\xa5\xd2\xb7\x82\x4a\x8e\x08\x70\x79\x33\x72\x4d\x45\x2f\x61\x3a\x1c\xd9\x22\x2a\xd2\x2c\x7f\x90\x9e\xa2\x38\x1f\x85\xa9\x42\x9d\x13\xaf\xf4\x7b\xa8\xf2\x21\x8b\x78\x03\xc6\x82\x51\xdf\x58\xc2\x4e\x1e\xc4\x51\x83\xdf\x52\x64\xd6\xff\x94\xd6\xbf\x70\x10\xfb\x01\xcb\xd5\x28\x8e\x23\x33\x6c\xfb\x12\x36\xd3\x33\x23\x4f\xbb\xcc\x8f\x4c\xa8\x86\x9f\x54\xb1\x11\xa2\x2f\x9b\x13\x2d\x22\x17\x48\x03\x6f\x0e\xcf\x36\xa9\xe9\x8f\xac\xc9\x0d\x19\x6d\x8f\x0c\x67\x53\x29\xf2\x01\x3b\x5d\x4b\x15\x9d\xc2\x6d\x17\xd8\x69\xb0\x08\x68\x87\xf1\xb1\x9e\xe1\xca\x6c\x91\xc9\x44\x12\xb3\x46\x06\x9a\x41\x52\x2b\xe0\x2c\xf3\x50\xb5\x68\x25\x29\x05\x49\x06\x13\xc3\x71\xdf\x51\x33\x19\x0c\x46\x17\x41\x20\x9f\xe6\xa6\xe3\x62\x29\x2a\x00\x9e\x65\x08\x3d\x6d\x33\x81\xd3\xcb\x60\xdc\x38\x89\xa3\x65\xcb\x82\xbf\x14\xb1\xfd\xa7\x7f\x6e\xa2\x92\x2a\xf8\x49\xba\xb1\x9f\xfb\xa5\xae\xd2\x55\xb4\x26\xc9\x41\x5b\x20\x33\x45\x9a\x85\xb3\x54\x70\x55\x24\x26\xd2\xa8\xf3\x9b\x36\x8e\xd3\x35\xae\x1c\xa2\x7e\xc4\x42\x16\x7c\xa2\x41\xe8\x26\xdc\xa3\xb4\x64\x4a\x1f\xc2\x1e\xe8\xb6\xbe\x3e\xeb\xea\x62\xde\xa6\xa0\x6b\x01\x6b\xfb\x5e\x13\xa1\x34\x78\xd6\x92\x9c\x28\x4d\x5c\x6f\x08\x1b\x99\x8f\x95\x3a\xa5\xcd\xf0\x80\xc4\xe6\xfa\x56\xd4\x75\xcd\x33\xdc\x52\xa0\x2e\x9b\xa7\x85\xcd\xa2\x10\x56\x09\x00\x8f\xe3\xa5\x27\xe2\x63\xc6\x4f\xec\xad\x1b\xc1\xa3\xaa\xfb\x3e\x34\x51\x42\x64\x42\xc8\x57\x8f\xd7\x49\x6c\x5c\xdf\x15\x45\x3a\x47\xc2\xe1\x58\x6b\x10\x06\x60\xcb\xcc\x74\x7d\xb1\x36\x5f\x1b\x8e\x8a\x74\x08\xfd\x1e\xc7\x97\xe2\xa7\x4f\x7d\x61\x6b\x29\x4d\x7a\x20\xf9\x5f\xe0\x45\x8d\xc4\x8e\x8f\x1b\x84\x2e\x3a\x61\x1a\xc7\x66\xe4\x65\x68\x1c\x60\xcf\xbd\x86\xcd\xa6\xc9\x59\x9b\xe4\x76\x48\x22\xdc\xae\x28\xb1\x8b\xf2\x1f\x3e\x76\x8a\x8a\x6b\xd6\x64\xf1\xda\x8c\x7f\x55\x5b\xaa\x1b\x8d\x90\x06\xad\x35\x66\xd0\x92\x89\x6b\x8f\x60\xea\x67\xd6\x54\xf1\xa0\xf7\xcf\x1b\x8a\x7f\x7a\x37\x65\xd8\xa8\x14\x5f\xd3\x9a\xbb\x03\xfa\x58\x4b\x49\x9d\xfd\x84\xec\x0a\x1f\x2b\x23\x44\x8a\x1b\x91\xa0\xae\x17\xbc\x94\x9d\x9b\xe6\x5f\x57\x7a\x7b\x03\x70\x55\xb4\x34\x1d\x63\x8d\xa0\xc2\xbd\x8c\x38\x5d\xb5\xd9\x8c\xc2\x9f\x5f\x53\x64\x24\xd7\xc8\x9c\x60\x49\x71\x93\x80\x4f\x02\x5f\x58\x58\xb4\xbf\xa8\xb0\x5a\xfb\x41\xe9\x84\x12\xf9\x1d\x34\x31\x1c\x25\xdf\xe1\x05\x47\x14\xef\x3a\xff\xbf\xf5\xd8\xc4\x6b\xee\x5f\x23\x98\x14\x97\xc1\x61\xf9\x45\x86\xa6\x5a\x57\x5a\x45\x1f\x19\xf3\x9b\x28\x89\xa3\x9c\x79\xbc\xac\xf6\x2b\x16\xc4\x7f\xc9\xe6\xdc\xf1\x81\xb9\x71\xe7\xb3\x04\xaa\xc5\x4e\xbe\x11\x28\xee\x9c\xff\x1e\x11\x15\xe3\x91\x02\xc5\x42\x73\x4c\x8d\x92\xcc\xd0\x3c\xe4\xf6\x65\x84\x8a\xfc\xc3\x88\xa0\x58\xe3\x18\x55\x3b\xa0\xc0\xb7\x34\x61\xc4\x6d\x0a\x88\x85\x25\xb7\xf5\xab\x7f\x93\xaf\x75\x5f\xd7\x67\x31\x66\x54\xc8\xe6\x10\x94\xa0\x42\x0c\xba\x1a\x74\x48\xdc\xae\xc5\x8c\xde\xa4\x74\x41\xf0\x2d\x80\x60\xbb\x22\xba\xa3\x99\xfd\x58\x25\x0a\x55\x56\x99\x49\xd6\x2f\xd2\x1c\x9e\x35\x95\x99\x0e\xd0\xd2\xb8\x1d\xd4\x18\x1a\x0a\x9b\x17\x79\x5b\xe9\xe2\x60\x10\x86\x71\x49\x81\x2a\x12\xd7\xb8\x38\xc6\xe1\xe0\xf1\xea\x09\xb8\x24\xd3\x23\x56\x31\x15\x81\x2f\x38\x53\x63\x23\xd1\x29\xfe\x4f\x74\x4b\xed\x2e\x4a\xb7\x32\xb6\x4e\x57\x0b\xbc\xf7\x16\xbd\x6d\xd4\x80\x3e\x0a\x5c\xc7\xfc\x89\x36\xfa\xc6\xc0\xf1\xb6\x26\xf4\xb6\x45\xfe\x5e\xd1\x82\xee\xa7\xdd\x8a\x30\xf4\x00\x7a\x39\x58\x13\xbb\xbb\x3b\x79\x41\x64\xb0\xf7\x86\x73\x79\x83\x74\x64\x21\x04\xe4\xe7\xf6\x2e\x28\x91\xfb\x99\xae\x87\x4e\x6c\x95\x1e\x16\xb5\x3a\x48\x7f\x51\x91\x22\x6c\x06\xaa\xed\x79\x07\xa1\x98\x0c\x3b\xb4\x1c\x29\xe1\x26\x2d\x65\x69\xe8\x56\x3b\x84\xcb\x93\x9a\xeb\x6c\x9d\x13\x0a\x7c\xf1\x77\xe9\x79\x88\xb8\x66\xeb\xd0\x21\xb6\xbb\x67\x68\x23\x6d\xbf\x4f\x62\x14\x62\xc1\xaa\x15\xb5\xfd\x7e\xa9\x74\x97\x7e\x86\x4d\x89\x40\xed\x26\xed\x68\x34\xcd\xde\x43\x18\x8c\xfa\xd3\x0f\x69\x1d\xe1\xe2\xb9\x6a\xe6\xa0\x09\x87\x66\x79\x4b\x9f\x2a\x95\x8c\xfb\x3d\xdd\x32\x79\x90\x5e\x00\x8c\xac\x10\x56\xa0\x94\x70\xab\x46\x7b\xa6\xb8\xa1\x2e\x37\x52\xc5\x66\xa9\xa7\x8a\x15\x79\x28\xc5\x6d\x73\x32\x70\x66\x30\xea\x0f\x24\xbf\x86\x37\xbd\x89\xa5\xc6\x27\x53\x39\xf9\xaf\x74\x16\x6d\x9c\x26\x7d\xfe\x0c\x4a\xfa\xb7\x60\x33\xf8\x44\x35\x13\xec\x6b\x05\xc9\x61\x7b\x35\xdf\x37\xc8\x86\xf1\xf1\x14\x17\x42\x95\x34\x8c\x47\x6d\xdf\x78\x9c\xe9\xfa\x59\xab\x09\x79\x60\x14\x51\xdb\x53\x23\x15\xcf\xcf\x77\xb2\x71\x9e\x47\x26\xa1\xc6\x9d\xc6\xeb\xa0\x72\xca\xd5\x6a\x19\x04\xd9\xe9\x36\x0f\x1f\xec\xf4\xa2\x9c\xba\x18\x7a\xbc\xe7\x9c\xea\x62\x9c\xdb\x51\xd6\x1d\x72\xf5\x4c\x86\x97\xfd\x02\xbf\xa4\xab\x67\x6f\x22\xd9\x10\x5e\x9e\xf4\xa9\x1a\x92\x9f\x9e\x1c\xa2\x9e\x3d\xdd\xd6\xd3\x4f\xf3\x52\x00\xc2\x1e\x6b\xef\x53\x5a\x6e\x0c\xe4\x51\x42\xf2\xc7\x90\x0f\x0a\x83\xa6\x27\x75\xfc\x9f\x79\x90\x1a\x25\xec\xab\xf5\xd9\xb5\xb9\x39\x5e\x3a\x4f\x41\xb6\x47\x67\x3d\xdb\x5b\x30\xe8\x4e\x07\xa2\x5a\xa8\x32\x85\x4f\x61\x24\x02\xff\xed\xd2\x9b\xbd\x2b\xb4\xff\x90\xa8\x9f\x85\xd5\x77\x20\xc5\xca\x30\xfb\x11\x34\x67\xea\x81\xef\x39\x50\x6d\x09\x98\xa1\xcf\xd4\x60\xd1\x8f\xe9\x35\xbb\x69\xa7\xea\x3e\x04\xf1\xa6\x10\x61\x3f\x2e\x77\x3c\x7b\x37\xe8\x0b\x26\x52\x4d\xb0\x2c\x7d\x4c\x7a\x40\x7c\x52\x2a\x22\xd2\xcd\x46\xd8\x4f\x2f\x1b\xf7\x39\x4f\xae\xc5\x40\x7c\xd2\x04\xa8\xaa\x62\x15\xe0\xbe\x60\x8e\xf6\x4e\x7c\x4f\xe0\x91\xae\x9e\x59\x7e\x42\x79\x95\x28\x29\xd2\x71\x81\xaa\x1c\x93\x27\xc2\x05\xa1\xeb\x00\x49\x17\x1e\xb7\xf5\xf1\xcb\x38\x2e\x52\x2c\x75\x78\x38\x44\x44\xce\x26\xcd\x3b\xf1\xe5\xcd\xa9\x76\xd4\x33\x1d\x9b\xc4\x51\xee\x06\xd9\x44\xb4\x95\xd6\xa5\xa8\xb9\xfa\x3c\xe1\xe0\x0b\x5c\xef\xd3\xd5\x4e\x54\x89\xcf\xe8\xb0\xf0\x94\x4b\xe6\x49\xa8\x12\xfc\x9f\x0b\x2e\xaf\xa4\x9f\x72\x24\x80\xbe\x5c\x8e\x9f\x45\xe2\xb5\xb7\x2b\xe5\xca\x28\xe9\x45\x4b\x4b\x36\xb3\x09\xea\x54\x82\xe4\x6a\x39\xfd\x90\x6d\xba\x0e\x34\xd6\xa7\xb9\x0d\x66\x8f\x74\x7a\x76\xc9\x0c\x4d\x91\x66\x60\x76\xe5\xbe\x97\xba\xfa\x0b\x9e\xb5\x2e\x8b\x42\xf2\x5e\x2d\x3f\x67\x0f\x49\x10\x3e\x56\x30\xf4\x55\xb3\xf6\xb0\xb7\x09\xf7\xe0\xa2\x90\x17\x7c\x04\x25\x76\xd7\x5f\xa9\x56\x82\xe3\x07\xf2\x36\xf0\x8f\x08\x91\x2a\x41\x83\x16\x47\xbb\xaa\xa6\xbe\xff\x54\x31\x76\xdd\x2b\x6b\xba\xec\xd5\x82\x40\x2c\x70\x82\x36\x0b\xb3\x8c\x61\xf3\x09\x07\xd1\xe3\x6e\x12\x25\x5b\x22\xb9\x5e\x7e\xdb\x08\x44\x77\x4f\x7c\xe7\x6c\x77\x57\xdb\xb5\x24\x12\x40\xb8\xf3\x86\x0a\xf0\xd0\x34\x66\x9b\x59\x50\x71\x51\x5a\xcc\x70\xda\xc0\x73\x94\x5d\x72\x8f\xb9\x97\x26\x82\x22\xdc\x39\x34\x25\xed\x30\x0d\xc2\xc8\x87\xd8\x14\x4c\x4e\x46\xef\x1e\xcf\xe6\x26\x6e\x15\x35\x9a\xcf\x15\xdf\x95\x08\xaa\xce\xa8\xad\xfa\x39\x3f\x62\x86\x5c\x06\xaa\x8a\xf3\x2e\x7d\x27\xac\xe9\x4d\x17\xca\x80\xb8\x40\x18\x88\xe1\xf2\xff\x7e\xe9\xfd\xd6\x67\x7a\x48\xea\xd3\x26\x0d\x98\xc3\x0b\xd4\x12\x73\xb8\xe8\xea\xe5\xc9\xf8\x71\x23\x43\x76\x98\x8e\x41\x5f\x8d\xa6\x34\x37\xc0\xf9\x44\x91\x65\xa5\xa3\x71\x5c\x79\x54\x2d\xea\xfe\x0e\x5e\x90\xc0\x94\x9e\x50\xf8\xc1\x91\xcd\x56\xa2\x1c\x79\x20\x1c\x0e\xb4\x9d\xf8\xb8\xdc\xd9\x67\x9e\xaf\x52\xf8\x22\x4b\x7b\xe3\xd0\xa1\x3d\x5f\x76\x68\xcf\xda\x60\xfb\x13\x0e\x69\xbf\x18\xa6\xc3\x61\x54\x58\x8b\x74\x0e\xbe\xec\x82\xca\xe6\x2f\x4c\xb1\x9f\x1e\x3d\xf8\x32\x78\x09\x57\x07\x36\xb3\x54\x04\x60\x04\x49\xa0\x38\x20\xd0\x4b\x41\x54\xf1\xfd\x06\x16\xb8\x8e\xcd\x0b\xb3\x18\x47\xf9\x40\x3a\xe2\x30\x85\x3f\x80\xa5\xe7\x13\x55\xf1\xf8\xba\x81\x29\xc0\xd6\xbd\xa2\x1a\x17\x57\x9a\xda\x1d\x3d\x1b\x46\x3d\xdb\x63\x59\xcf\x26\x6e\x7c\x35\x40\x16\x9b\xd0\xe6\x33\xb4\xff\x5d\x15\xa0\xda\xff\x52\x05\xa8\x3e\x86\x02\x3d\x60\xd5\x7c\x5c\x7a\x31\xe0\x5e\x94\x87\x55\x6e\x12\x31\x08\x5b\x8a\xc3\xbe\x40\xf8\x76\xe9\x99\x97\x6c\x5e\x44\x7d\x40\xbe\xb8\x51\xaf\x44\xa0\x4f\xed\x5c\x94\xb3\x47\x3a\x47\x0f\xce\x3f\xaa\x18\x05\xef\xc0\x20\xc3\xbe\xb1\xe4\x2b\xe2\x15\x94\xdd\x70\xbc\x6b\x42\x77\x84\x93\x2b\xb8\x23\x04\x28\x9f\x23\x22\xc5\xbe\xe5\x58\x17\x11\xf5\xae\x6e\x65\xde\x5c\xd0\x7e\x58\xe6\xd3\xa5\xd0\x88\xe8\xe3\x4f\x50\x05\x85\x9f\x07\xfb\x2b\x32\x9a\xb7\xb1\xbb\x80\xe0\x39\xa7\x1d\xcc\x7d\x35\xe8\x96\xd8\xd5\x7c\x44\xf2\xd4\x2d\x2d\x28\xe7\xc8\x78\x7e\xaa\x79\xf9\xaf\x4d\x6d\xba\xb9\xb9\x4e\x98\x8e\x33\xa9\x52\xe2\x2a\x3e\x0a\xd4\x58\xd5\x47\x53\xc4\x27\x44\xdd\xe4\xc6\xfa\x71\x7d\x6f\x06\x0a\xd9\xfd\x66\x93\x16\xc9\x92\x49\x42\xa6\x6e\xd7\xa8\x69\x54\x20\xb7\xd5\xa4\xd4\xfa\x54\x34\xfc\x4c\x67\x14\x85\xcb\x28\x75\xc1\xc1\x20\x4f\x15\x2c\x98\x9a\x57\x9f\xd6\x07\x3e\x7c\xf0\x70\xa7\x6f\xc6\x71\x0a\xa6\x0d\x45\x64\xc5\x91\x93\xa0\x99\x55\x57\x4c\xed\x7a\xc9\x1b\x36\x15\xa5\xe7\xa6\x53\x03\xc9\xc7\x43\x9e\xbd\x15\xb1\x5b\x85\x4e\x3c\x4e\x37\xc5\xc7\x70\x5c\x22\x83\xeb\x0a\xb3\x36\x34\x39\xe6\xbf\x04\x0d\xaa\xa2\xd7\xb7\xc8\xa9\x89\x3e\xcc\xce\x38\x8b\x26\x75\x56\x19\x20\xc6\x64\x9b\xd8\xf0\x8c\x09\xc3\x4f\x0a\x41\xfc\x93\x4a\x04\xa2\xa8\xcc\xa1\x5d\xe5\x97\x8e\x34\x6d\x5d\xc1\xc2\xd6\x9b\xa8\xe1\x17\x6d\x5e\x60\x9a\x12\x37\x71\x1a\xbb\x80\x4f\xbc\x6f\x1b\x8f\xe2\x28\x8c\x6a\x05\xec\x0d\x72\xe7\x7c\xac\x10\x16\x23\x6b\x42\x4b\x25\x0c\x37\x12\xe0\xc2\x0e\x4e\x80\x65\x92\x4e\xf5\x1b\x37\x15\x6c\x21\x1a\x9a\xbe\x45\xd7\x02\x51\xef\x29\x44\xca\x82\x8a\xa2\x8f\xc1\x8a\xfe\x61\xe9\x45\x7f\x6f\x63\xd3\x09\x68\xd6\x83\xb2\xf6\x4c\x3c\x89\xa3\xc9\xfa\x76\x7f\xcb\x13\xcc\x52\xae\x2d\xa1\x07\xfd\x8a\xb0\x45\xfa\xca\xf0\x25\x95\x63\x3c\xda\x55\x33\x26\xac\xb1\x28\x0a\x45\x95\x35\x00\x28\x93\x01\xad\x52\xaa\x51\x9c\x2e\x17\xdc\x70\x92\x79\xdd\x62\x54\xba\x91\x66\xff\x09\x35\x96\x3f\xce\xc7\x98\xcf\x3c\x7a\x90\xc7\xa5\x48\x77\x4f\x28\xeb\x76\x35\xd2\x39\x44\xc9\x37\x15\x9d\x83\x53\xae\xf4\x03\x54\xdf\x53\x08\x25\xd0\x73\x3c\x54\xbd\x50\xd4\x67\x30\x4f\x86\xf2\xdd\xa7\xba\x68\x76\x1f\x96\x55\x88\x0d\xaa\xb5\xcc\x53\x2c\xb0\x6c\x42\x16\x80\x6d\xa8\x1b\xe7\xfc\x11\x14\x0f\x59\xe8\x41\x35\x0d\x19\x7d\x2d\xba\xa0\xaa\x9f\x75\xa9\x36\xde\x6d\x93\xfc\x80\x87\xe9\xfd\xa6\x52\x69\xdc\xdf\xad\x0d\x49\x2d\xcc\x1e\xe1\x77\xf9\x63\xfc\x26\xee\xe6\xf3\xd2\x73\x0c\xfd\x41\xe9\xb9\x37\x06\x6c\xc0\x91\x35\xfd\x88\xd6\x05\xf2\xec\x73\x8a\x38\xe9\x0a\xac\x28\x4c\xf2\x03\x13\xc5\xa8\x1c\x65\x21\x09\x48\xce\x1e\xe1\x70\xfe\xd7\x55\x21\xfb\xd7\x9b\xa8\x02\x47\xd1\x70\xc4\xc9\x07\xd6\xec\x6d\xc5\x15\x78\xa1\x26\x75\xe2\x79\x03\x57\xcd\xda\x23\xb8\x50\x54\xfa\x91\x6d\x20\x41\x7d\x02\x5d\x7e\x44\x91\x1f\x96\x6a\x27\xa3\x3b\x4b\xc5\xd5\x07\x9f\xa0\xca\x2c\x92\xe0\xdd\x93\xea\x91\x71\x10\xa8\x99\x24\xdf\xd6\xed\xff\x7f\xa2\xf4\x5c\x7f\xbf\x54\xd6\xe2\x3c\x16\x83\xdb\x31\x87\x66\x3d\x38\x69\xf6\x88\x68\x99\x76\x77\x42\x0d\x5f\x3a\x7c\x50\x45\x37\xbc\x42\x45\x56\xab\xba\x1d\x3e\x56\x1e\xd1\xbe\x36\x4a\xf3\x71\x86\x50\xe8\x39\x11\x3f\x2e\x7d\x12\x73\xa9\x61\x82\x81\x18\xa5\xc7\x99\x9f\x60\x80\xf3\xfb\x4c\x21\x41\x3e\x53\xb8\x89\xcc\xc6\x51\x9f\x64\xd2\x9c\x02\xdd\x6e\x30\xbe\xf1\x49\x77\xa7\x01\x7d\xa6\xb3\x94\x8e\x93\xda\x16\xe3\xf9\x00\x3e\x51\xc1\x6d\x2f\x8d\x63\x93\xe5\x04\xca\x00\xbe\x63\x4b\x53\xff\xa3\x20\x2c\x83\x01\xb4\x28\x50\x50\xc3\xe6\x81\x87\xe4\x01\x48\xd4\x3d\x37\x74\xd5\xec\x43\x5d\x29\xfd\xa7\x78\x2d\xfc\x67\x81\x2f\xc4\x7f\x5a\x1e\x50\xd7\xf3\xa8\xc2\x9a\x5c\x46\x8c\x03\x7b\x79\xa3\x54\xe4\x8b\x7b\x27\x4a\x81\xe3\x5c\xa9\x6a\x96\x40\x12\xca\x25\x7b\xe3\xf4\x10\x95\xb5\xf0\xbd\xe0\xb6\x76\xac\x7e\xd5\x05\x63\xef\x60\xa6\x02\xf5\xaa\x7b\xa5\x1a\xf8\x04\xe9\xb3\xc8\x52\x54\xcb\x08\xb5\xe4\x07\x80\x05\x10\xc1\xb5\x06\x6a\xb8\x9e\xcd\x97\x45\x84\x5c\xca\x8c\xd5\x8f\xf0\xf1\x44\x0c\x6f\x16\xe5\x61\xdb\x0f\x53\x6d\xe8\x71\x10\x2c\x7b\x9c\xdc\x9f\x8a\xec\x05\xdf\x96\x0f\xd2\x71\xdc\x6b\xb7\xbe\x3e\xcb\x4f\xfc\x6e\x4d\x26\xa8\xba\x01\x49\xc2\x15\x2b\x0c\xc9\x98\xb7\x1c\x39\xfb\xa6\x62\x81\xda\x74\xd5\x85\x74\x39\x5d\x34\x09\xa6\x56\xd1\x18\xe1\x6b\xe2\x13\xd5\xfa\x1e\x46\xaf\x91\x54\x3b\x3d\x3c\xcc\x2e\xbd\x4f\x8b\x85\x8f\x9b\x3a\xd1\xd5\x3e\xca\xbc\x70\x0e\x0c\x2c\xe4\xc6\xf8\x58\xc5\x14\xa4\x93\x51\x44\x4b\x4b\x39\x74\xc9\x99\xf7\x08\x59\x0c\xca\x60\x9f\x29\xe5\xbb\xcf\xe1\x5d\xf8\x1f\xa6\x7e\xfd\xf0\xc1\x4e\x94\x2c\xc5\x40\xca\x79\x41\xe4\xe3\x58\x6c\xc2\xb8\xa6\x93\xf5\xac\x78\x5d\xf3\x5b\x5c\x0c\x54\x38\x7b\x51\x8d\x94\xe4\xab\x96\x87\x8a\xf4\x60\x7c\x75\x61\x7c\x3c\x55\x24\x7a\xe5\x95\x4e\x3f\x9b\x02\x6f\x5c\x52\xe0\x8d\xda\xd0\x23\x81\xa2\xf3\x7d\xd5\xbf\x32\x1e\x58\xeb\xc8\x5d\xc5\xde\x73\x6f\xab\xda\x21\x68\x0b\x00\xd4\xe8\x98\xd5\x9f\x77\xf4\x29\xb5\x39\xac\x86\x9c\xb9\x6f\x92\xde\x20\x6a\xd7\x05\x41\x95\x81\xd0\x70\xbf\x29\x02\x58\x52\xb0\x72\x54\x2d\x6f\x06\xbe\x0a\xf0\xa6\xea\x6d\x82\x0d\x61\xbf\x57\x54\xbe\x5d\x53\xbc\xa5\x2b\x44\x89\xa3\xc5\xce\x1c\xa9\xd1\xfd\x1a\x3b\x07\xad\x37\x8c\x20\x3c\xd8\x55\xae\x8c\x31\x53\x28\x29\x5c\x55\xd0\xfc\x33\x58\x24\x0c\x42\x9c\xba\xf7\x43\x87\xaa\xff\x2e\x73\xe6\xe3\x68\xe0\x8f\x1e\xf4\xf4\xf0\x2e\x97\xba\x3e\xb5\xc4\x5e\x79\xa5\xb3\x3a\x88\x0a\xbb\x6a\x72\x60\x06\x9d\x09\x74\xdd\xa2\x0d\xad\x47\x3e\x48\x7b\xbd\x35\x05\x2e\xfc\x27\x0a\x5c\xf8\x4f\x1c\x95\x48\x9e\xc6\x2d\x4d\x83\xc0\x90\x22\xc1\x66\xd4\x56\x6c\xdc\x7b\x58\x53\x71\x9f\x54\xa8\xd6\x9b\x6a\x34\xf6\x76\xa0\x05\x7e\x02\x9f\x46\x5e\x54\xf5\xe1\xdf\x41\x44\x25\x3a\x4d\xf4\x74\xe1\xdb\xef\x23\x56\xc2\xc2\xd8\x02\x04\x02\x3f\xc2\xbd\x59\x27\x46\x3d\x7b\x44\x56\x89\xa6\x53\x3e\xde\xb0\xe6\x16\x3a\x8b\x46\xaa\x01\x5c\x95\x08\x74\x85\xa2\x21\x61\xcc\xd2\x74\x89\xd3\x0d\x80\x88\x40\xc9\xc0\xc7\xc8\xf8\x04\x28\x97\x17\x51\x31\xae\x12\xb0\x19\x95\xf1\xbd\x83\x9b\xe2\x13\x5c\xba\x53\x4c\x79\x5e\x18\x04\x2e\x4f\xa5\x7f\x34\x47\x9c\x14\x51\x32\x4e\xc7\x79\xdb\xf7\x8d\x8f\x6b\x06\x9c\x7f\xa0\xd4\xb1\x09\x12\xe5\xd1\xf8\xc9\x03\xf4\xf8\x1d\x37\xb6\x1b\x59\x01\x0e\x02\x45\xc6\xb6\x12\x64\xff\xcb\x1f\xab\x91\xb3\xbf\xaf\x06\xfa\xfe\x90\x5a\xdb\x4c\x3d\x5f\xaa\x2e\xda\xdf\x57\xbd\x55\xe8\x10\x32\xc7\x8d\x23\x1b\x3b\x34\xeb\x20\x43\x52\xcd\x5c\x1d\x44\xf9\x48\x11\x9b\x88\x66\x64\xf5\x7b\x7c\xec\x9a\x5b\xb1\x4d\xfa\xc5\xa0\xad\x24\x1a\x2e\x29\x00\xcb\xb6\x12\x52\x9e\xae\x1f\x8b\x1f\x4b\xa2\xbe\x05\xd0\x48\xa9\x29\x79\x3d\x94\x69\xcd\xa1\x85\xce\x20\xea\x0f\xaa\xdd\x79\xe8\x90\x1f\x55\xac\x22\x07\xd7\x88\xab\x6c\x08\xee\x6b\xab\xa9\x8b\xb0\x6c\xc3\x65\x2c\x99\x06\x8f\xbb\x31\x15\xc4\x1d\x79\xa1\x72\x59\xb6\x17\x81\xc5\x55\xa1\xd2\xe8\x01\x49\x7b\xc7\xc7\xe1\x8b\xb1\xe9\xf5\xb8\x5a\x8b\x2e\x2e\x88\xbd\xf8\xd8\x25\xe9\xf9\x20\xca\xa4\x37\x88\x6b\xdf\xd2\xec\x3c\x5b\xb5\x6d\x1d\xe6\x8b\x6d\x5f\x9b\xdf\xa4\x77\x87\xf7\xc1\xbd\x30\x18\xcd\xdd\x0a\x89\x48\xc5\xae\x07\x7c\xe3\x87\x75\x0f\x45\x39\x98\x7e\x4a\x72\x67\x8f\x58\x7e\x5b\x91\x8c\xde\xd4\x6d\x71\xe6\x39\x75\x75\x23\xaf\xe0\xf7\xf9\xd4\x24\x4f\x15\x5d\xbf\x36\x88\x62\x93\x29\xf1\x4b\x4d\x2a\xc9\xc7\xaa\x98\x9a\xd9\x3c\x1d\x67\xa1\xb0\x96\xb2\x50\x5e\xa0\x6a\x0d\x17\x40\x6b\xc4\x0f\x64\xcd\x50\x82\xcf\x9d\xfd\xd2\xab\x98\x31\xab\x88\x13\x59\xab\x7e\x5a\x61\xa3\xfc\xd0\xc8\x81\xd6\xf3\xf3\xdb\x97\x15\xe7\xda\x3e\x35\xf8\xfe\x23\xac\x29\x20\xa4\x7e\x40\x8e\x0f\x46\xe5\x8d\x52\x31\x98\x5c\xa3\xe8\xb0\x36\xb6\x89\xa4\xf0\x51\x92\xe4\x81\x0b\x7e\x84\xa4\x3a\x84\x7c\xb4\x36\x4f\xef\xb3\x8b\x7c\x9c\x8f\xa2\x90\x59\xd6\x1d\xfe\x5e\x65\x63\x67\x54\x25\x33\x4b\xc3\x65\xbb\x64\xe3\xd8\x66\xfb\x3c\xc9\x3f\xea\x0d\x6c\x14\xc8\xa2\xd4\x28\x23\xc5\x5a\xd0\x55\xa2\xf8\xc3\x39\x2e\x42\x94\x6b\xa5\xce\x3e\xb7\x9b\x84\xbb\x97\xd2\x6c\x58\x6f\x6a\xfd\x21\x5d\xa1\x7c\x75\x2d\x59\x12\xe9\x5b\x35\x9c\x14\xa8\xe1\x24\x15\x07\xe4\x45\x1a\x2e\xe7\x8f\xf9\xe0\xe2\x02\xba\xa4\xe8\x5d\x4e\x70\x91\x78\x96\x8f\x4e\x14\xa3\x28\x37\x7d\xdc\xf0\xa7\x13\x45\x64\x02\x20\x24\x0c\xb7\x29\x11\x64\x51\xd0\x52\x91\xfc\x5d\xa3\x84\x01\xee\xe8\x58\xd9\xfa\xc6\xd7\xbc\x18\x78\xf5\x0a\x44\x91\xc0\x3b\xf1\xfb\x94\xd1\x6f\x9f\xd5\x46\x16\x12\x76\xd8\xb1\xad\x6e\x83\x87\xca\x07\x36\x06\x45\x03\x93\x0d\x07\xbe\xcd\xf2\x79\x83\xd4\xe6\x7c\x27\x1f\x87\x83\x16\xd5\x0e\xe4\x6b\xd5\x4f\x4c\x1a\x48\x80\xbe\x39\xee\x45\x8e\x41\x1e\x0d\xe4\x93\x8a\x99\xf0\xa4\x16\xc1\xb6\xb1\x25\xcd\x07\x1d\x22\xec\x42\x8a\xc9\x27\x0a\x7b\x37\x1e\xe5\x45\x66\x0d\x6a\x44\xb0\xe4\xbb\xba\xde\xaa\xef\x6a\xe6\x5d\x34\xfd\xbe\xf0\x2e\x4a\xc1\x52\xe1\xf2\x8f\x7b\x39\x5a\xbb\x58\xd4\x3a\x9f\xfb\xe8\xbb\xb5\x84\x29\x2e\x69\xbb\x51\x9b\x36\x0c\xed\x08\xc3\xa8\x88\xfd\x77\xd1\x36\x13\x51\x09\x9f\xff\xbd\x8f\x70\x4f\x34\x4b\xe4\xd7\xbf\x99\xc6\x52\x9d\xc6\x8a\x47\xdf\x95\x8f\x15\x26\x75\x39\x8b\xf2\x81\x4c\xd9\x21\xce\xbc\xa4\x14\x00\x2e\xa9\x1a\xd6\x92\xc9\x86\x4c\x0d\xe3\x86\xac\x9f\x97\xae\xd6\xfb\x4a\x52\xf4\x9a\xa3\x18\xa0\xa2\xe9\x92\xcd\xec\x9e\xea\x4e\x70\xef\x18\x87\x46\x30\x7f\x41\xd1\xa0\x9d\x57\xdd\xb4\x63\x58\x84\xd8\x2f\x67\x5c\x33\x32\x4a\x4c\x18\x92\xaa\xc7\x8c\x2f\x21\x1c\xa0\xef\x93\xd8\xb9\xfa\x1d\x55\x3b\x59\x70\x26\x54\x97\xb8\x9e\x4d\x9f\xa5\x97\x8e\x7e\x39\xb0\x3d\x7c\x5c\x7a\xd9\xec\x7c\x39\x62\x68\x22\x5e\x01\xa0\x01\x3c\x66\x06\x3f\x2c\xa6\xc1\x53\x47\xaf\xd8\xcc\xf4\x65\x50\x19\xfd\x83\x53\xf0\x4c\x7c\xf2\x05\xa2\x7c\x66\x88\xbc\x5a\x1c\xae\x37\x3c\x17\x1a\xa6\x17\x17\x3a\x2b\xf9\xb3\xfb\x2a\x0b\xbf\x1f\xc6\x00\x99\xf1\xf7\x61\x4c\x1c\x27\x91\x13\x8a\xbb\x4c\x88\x44\x99\x94\xa1\x15\xe3\xde\xb5\xbb\xf7\x4b\x4d\x63\x92\xab\x26\xe3\x5a\x3d\xec\xcd\xc7\xb0\x31\x78\xf4\x90\x45\x73\x0d\x3e\x3f\x75\x7b\x49\xd1\xae\x86\xe3\xe2\x61\x8d\xb6\xf8\x2e\xbd\x67\x78\xdd\x2f\x4f\x54\x73\xf3\x32\x66\x3b\x24\x66\xa7\x07\x2c\x1a\x2c\xbe\x67\xcd\x8d\x44\x16\x4a\x42\x45\x1a\xff\xb2\x57\xc9\x7c\x5d\x2f\x15\xfe\xfd\x6c\xa0\x5a\xb1\x1c\x27\xb0\x6e\xa5\xce\xf3\x4e\x2b\x07\x9a\x14\xf9\xc3\x2e\x55\xf9\xf5\xa7\x48\x0b\x55\x98\x85\xaa\x6b\x71\x73\xd3\x9e\x3d\x1e\x7e\x88\xfe\xff\x91\xaf\x74\x95\xeb\xf9\xb9\x89\xb7\x02\xbf\xf2\xef\x11\x35\x15\x62\xfe\x87\x99\x7a\x95\xba\x39\xbf\xfd\x95\xae\x83\x7b\xac\x3d\x3d\x51\xdd\x99\x7d\x28\x10\x61\x11\xee\x01\x50\x54\x72\xe8\x26\xa1\xe9\xb4\xb7\x96\xe7\x3c\x74\x02\x9b\xff\x59\xa0\x78\xc7\x3f\x2b\x3b\xd3\x31\x20\x35\x7b\xc3\x34\xe9\x8d\x43\x62\xa3\x38\x2a\xac\x0e\x9b\x0a\x18\xb2\xe9\xa5\x5b\x06\x6b\x79\x14\x9a\xb8\xad\x38\xe6\x4a\x1f\xe6\x72\x11\x17\x76\xf4\xdf\x68\x7d\xf5\x28\x0f\xc7\x79\xfe\x80\xa2\x6d\x58\xd7\x62\xf4\x9b\xa5\xe7\x38\x3b\x59\xfa\x59\x5b\x66\xcd\x91\xae\xa7\x62\x5c\x61\x86\x61\xd7\x1b\x75\x3e\x62\x4b\x81\x2e\x0a\xd3\xdb\xe3\xc9\xf1\x37\x28\xa5\x80\xc7\x85\xac\xb8\xd3\x50\x57\x82\xe1\x3e\x1d\x99\x96\x17\x7a\xa6\xba\x91\x6c\x3c\x72\xd5\x7f\x29\x91\xd2\x55\x4a\xed\xf4\x51\x07\xa1\x58\x49\xb3\x88\x6d\x16\x42\x2e\x8a\xc5\x44\xa2\xca\x0d\x33\x1d\xf5\x02\xe7\x3e\x87\xfe\xa6\xe9\x8f\x4d\xf6\x98\xaf\x37\x5c\x43\x1a\x87\x87\xf4\x59\x59\xd3\x69\x50\x1d\xda\x6b\x78\x4a\x12\x96\x2a\x95\x8d\x77\x29\x32\xc0\x06\xd8\xac\x0d\x20\x28\xd8\xc0\x07\xa5\xe7\x38\x60\x03\xc6\xb8\x48\x0a\x0a\xe1\x48\x6e\x61\xfb\x01\xff\xb9\x89\x1d\x8b\x3b\x00\x61\x27\xfe\xe1\x2a\x4a\x9f\xfc\x0f\xb5\x96\x75\x58\x98\x22\xa5\x61\x0c\xfa\x05\x85\x76\x99\x75\x38\x98\xe9\xf1\xc6\x4e\x38\xb0\x2a\x89\x63\x29\x46\x55\xed\x7b\x43\xf5\xba\x6c\x66\x43\x0c\x0d\x3a\x50\xdf\xa1\x59\x39\xd6\x3b\xde\xf6\x1e\xf1\xe3\x04\xfb\xb0\x67\x81\x17\x7d\x9c\x64\x6f\x1d\xab\xa8\xab\xf6\x82\xbe\x41\x8c\xa7\xea\x28\x3e\x3e\xf1\x38\xe2\x5f\xec\xfa\x39\xa4\x67\xb0\xad\x69\x93\xfc\xf1\x5f\x85\x8d\xa0\x67\xf4\xea\x2f\x52\x44\x8d\x58\x78\x8f\xe6\x15\xbf\x88\xd7\x08\x1a\xd8\xbf\x86\xae\x14\xac\x47\x67\xaa\x2b\x35\x37\xd7\x89\x92\x15\x16\xe4\xa0\xef\x40\x24\x8e\x40\x9b\x8f\xa7\x16\xf3\xd1\x83\xb3\x9d\xc4\x02\xf8\xde\x72\x8c\xf8\x6f\x97\xaa\xd7\xf7\xb6\x6b\xdd\x86\x26\x2f\x40\xf0\x8d\xa5\xd1\xea\x2a\xb8\xf3\xcd\xd2\x23\x45\xda\x13\x55\x86\xe0\x55\x8a\x20\xe5\x3e\x59\x14\x78\x13\xe2\x91\x98\xbd\xf7\xb7\xbf\xdc\x6d\x08\xfc\x7a\x51\x6e\xb2\xcc\xac\xb5\x15\x1c\x1f\x34\x1c\xa8\xb1\x6c\x29\xb6\xc1\x0d\x15\xd2\x8c\x4c\x94\x2c\x8d\x11\x95\xc2\x2e\x9c\xc5\xef\xf3\x89\x1a\x2b\xcf\x49\xe5\xe3\x0b\x14\x3c\xfe\x2c\xea\x1f\x0d\xa5\xc5\xa5\xc8\xa7\x11\x8a\x43\x74\xd6\xd5\x4a\x9f\x50\xa3\x48\xe9\x28\x4d\x64\xa8\xd5\x11\x22\x7b\xf0\xe7\xa9\x52\xeb\x2a\x27\x85\x4d\x7a\xf9\x1e\x9f\x09\x00\x3c\x29\x01\x18\x99\x05\xa1\xd3\x6d\xfd\xea\xdf\x64\x43\x74\x95\xb6\x22\x1f\x4f\xe1\x60\x66\x8f\x40\xa4\xa1\x30\x9e\xaf\x1b\x71\xc2\x2d\x45\xbc\x75\xcb\xcf\x7d\x17\xc2\xc9\x86\xb7\x89\x4a\x2b\x1f\x6b\x2a\xe1\x30\x4c\xb3\x1e\xcf\xe4\xcd\x3a\x32\x74\xc5\xac\x4e\xcd\xb8\xed\x8b\x6a\x0b\xf6\xd2\xe1\x01\x5f\x6b\x7a\xa0\xab\xd2\xf3\xf3\x64\xb3\x95\x08\xa2\x94\x3b\x3f\x57\x53\x5e\x9f\xea\x51\x75\xd1\x2a\x11\x6e\x8e\xea\x21\x60\x5e\xe1\xf1\xae\xf2\x38\x7b\xe1\x4f\x79\x52\x1d\x9b\x58\xd2\x97\x47\x14\x47\xf9\x88\x61\x35\xb0\xc1\xeb\x81\xea\xde\xad\x4f\x3d\xd4\x23\x2f\x54\x09\x7f\xd4\x83\x60\x56\xcb\x23\x36\x20\x6d\x27\xf3\x63\xd3\xc8\xca\xea\x53\xfd\xa4\xce\x31\x77\x57\x73\xcc\xdd\x0d\x3c\xf6\x73\x98\xae\x44\x36\x2f\x4c\x06\xe3\xe9\xb2\xc6\x79\xa7\x2d\x7e\x21\x78\x44\x4d\xc2\xc4\xe6\x35\x92\xd5\x75\xb8\xde\xa3\x07\xb7\x69\x4e\x70\x61\xfb\x0d\xe2\xcf\xbe\x5c\x9b\x26\xf4\x2d\xd1\x5e\xf6\x2c\xf0\x12\xd2\x73\xa1\x47\x06\x17\xf0\x19\xae\x0e\x96\xeb\x7a\xb0\xdf\xe1\xf9\x99\x81\xcc\x55\xe3\x1c\x1d\xe1\x79\x97\x1d\x54\xc1\x72\x2f\x33\x4b\x20\x2b\x04\xd0\xf5\x6c\xe0\x87\x10\xce\xaa\xb1\x0b\x12\xd4\xe5\x15\x2a\xe8\x80\x9b\xaa\x80\x70\x73\xaa\x4a\x43\x20\x9d\xe1\x68\x5c\xd8\x8c\xc6\xf9\xfd\x90\xd6\xa9\x9a\x12\xbc\xae\x43\xc5\xe9\xea\x63\x3e\x3e\x3b\xab\xe8\x6a\x76\x4f\x94\x26\xdf\x25\x72\x02\x88\x5a\x5b\x13\x3d\x71\xfb\x20\xb5\xc8\xd1\xe9\xb9\xab\xdc\xc3\x09\x25\x50\x7d\x19\x8e\x12\x5f\x75\xbe\xf4\x52\x65\x97\x03\xc5\x3a\xc7\xd5\x0b\xd4\x13\x6e\x94\x8a\x02\x75\x7b\x87\xa8\xc2\xec\x11\xf6\x95\x7b\x35\x4b\xf8\xe6\x54\x73\x8d\x60\xc9\x51\x3e\x8a\xcd\x9a\xdb\xea\x88\x02\x4e\x23\x70\xe1\x13\x1d\xaf\xd9\x7c\x14\x15\xf6\x41\xdc\x22\x4c\xf0\x0d\x15\x26\xbd\xab\x26\xdd\xf7\x4c\x3c\x65\x17\x6b\xa8\xa9\xa2\xf1\x82\xaf\xed\x1d\x16\x40\x07\xcc\xaa\x50\xc7\x57\xf7\x21\x3a\xac\x8a\x14\x70\x60\x32\x13\x8a\x52\xeb\x82\x48\x9e\xc1\x3b\x89\xfe\x59\x83\xf3\x88\xcd\xb8\x3f\x10\x26\x53\x20\x43\x6e\xe3\xb9\xbb\xde\xea\xdc\x1c\xdb\xad\x53\x2e\x7f\x33\x79\x1e\x29\xf7\x89\xa4\x72\x43\xd1\x62\x6e\x94\x7e\xf4\x37\x4f\xcc\xa8\xad\x66\xaf\xff\x05\x7d\xa5\x74\xa9\x34\x7b\xc4\x65\xd5\x54\xcc\x8b\x71\x65\x17\x90\x53\x01\x38\x74\x2d\x50\x4c\x21\x78\xbc\x7c\x5c\x2a\xa8\xd1\xb5\x06\xed\xdb\xd0\x64\x71\x9a\x7f\xf1\xe4\xbf\x9a\xb4\xb3\x69\xd6\xb7\xfb\x5a\x4e\x12\xf6\x7a\xa9\x10\x58\x6d\xd4\x48\x18\xf6\x1e\x78\x24\x2e\x37\xc4\x5d\x80\xb8\xf0\x82\x54\x55\xdb\x5d\x45\x6f\xb8\xe1\x69\xe1\x7b\x68\xad\xd6\x00\x78\x7c\xe2\x48\xd1\x7b\x51\x5e\x64\xd1\xe2\x98\x04\x8f\xf0\xa0\x50\xe5\xe2\xb9\x2f\x3e\x69\x22\x67\x1d\x9a\x38\xea\x27\x86\x5d\x26\x6c\xd0\x47\xaa\xb6\xf1\x91\x0a\x9d\xa3\xca\x61\x16\x6d\x0f\x46\xba\xa0\x29\xe2\xde\xc3\x53\x47\xdd\xfa\xb3\x1a\x04\xa6\x97\x66\x7b\x28\x66\x45\xf9\x6c\x5d\xad\xf2\x33\x58\x44\xfc\x0f\x41\x4b\xcb\x22\x57\xdf\x0d\x3f\xfb\x89\x62\x9d\x0a\x6d\x92\x8f\x73\x52\xe6\x11\x24\x82\x1a\x4b\xf8\xb0\x51\x53\x24\x2f\xcc\x1a\xd7\x10\xf4\x2f\xc9\xe5\x34\x49\x5a\x50\x2f\x59\x9e\xa6\xd8\x47\xba\x24\x31\x90\x8a\xbe\x3e\x4e\xd1\x2e\x71\xc4\x3b\x75\x5a\xb1\x06\x1d\x70\x9a\xb9\x80\xf1\x65\x68\x91\xa2\x0f\xba\x34\xd5\x88\x98\x9f\xa7\x76\x7c\x5b\x39\x23\x04\x4e\x3c\xc2\xa5\xba\x27\xa7\x15\x0e\x76\x18\xf5\x7a\x2c\xdd\x2d\x7e\x5f\x0f\xc3\x2a\x9e\xc6\x45\x3b\x30\x2b\x51\xca\x28\x6b\x21\x61\x68\x39\x46\xb8\xcb\x4a\xea\xff\x6c\x83\x46\xc9\xcb\x1d\x33\x1a\x59\xcf\xe7\xea\x04\xa2\xaa\xe5\xce\x27\x6a\x00\xd8\x64\xfd\x31\x0f\xb2\x3b\xb5\x16\xa5\xd0\x32\x8d\x5b\x29\xac\x19\xf2\x1b\x64\xa5\x09\xba\x65\x51\x9d\xd8\xf9\x06\x0f\x1f\xac\x6c\xad\xcd\x84\x17\x4c\x5c\xa5\x1a\x16\x3c\xdf\x34\x2e\x9f\x2e\xc7\x66\x90\x0e\x21\x12\xc0\xb7\x7e\x42\x3d\x86\x13\x2a\x13\x4a\x47\xd1\x78\xd8\xae\x05\x2e\x58\x2d\xa8\x0b\xdc\xad\x2b\x12\x3b\x96\xd0\x28\x61\x3e\x1c\xba\x16\x24\x35\x28\xf3\xf2\x71\xf9\x64\x1d\x2d\x3c\x37\xd7\x79\xe5\x95\x9f\x6b\x3d\xfd\x34\x97\x0d\x4e\xc0\x5f\x49\x47\xb2\xba\x38\x00\x28\xb6\x50\xf0\x11\xd5\x36\x2f\xb2\xfe\x27\x81\x5e\xc6\x17\x88\x67\x11\x55\xa6\x0f\x34\x9f\xf2\xbb\xd8\x48\xf0\xc3\x33\xb0\x54\xb8\x97\x09\x5a\xb6\x2c\x9a\x4b\xc5\x2f\x64\xaf\xef\x22\x76\x14\x04\x57\xcb\xff\x3c\x4c\x2d\x0f\x01\x29\xa0\xec\x59\x6a\x46\xc1\x8b\xbf\x85\xaa\x1f\x97\x25\x79\x40\xd0\x8d\x55\x1c\x79\x41\x06\xc2\x03\xdf\xf4\xdf\xd0\x06\xf9\xb6\x12\x13\x3a\xa6\x90\x2b\x43\x9b\xe7\x86\x6a\x29\xc8\x11\xae\xe0\x89\x01\xa5\xf5\x26\xee\x52\x44\x10\x7c\x88\xbd\x94\xa6\x45\x5e\xd8\x11\x1a\xb4\x82\x98\xa6\xdb\x70\x62\x65\xee\x2d\xdd\x99\x9a\x52\xaa\xe2\xa3\xd8\xe4\x62\x32\x84\xbb\xa0\xe5\x79\x0c\x1a\x58\x95\x16\x3a\x83\xb4\x0a\x09\x38\x07\xc0\x23\x7a\x3f\x50\x3d\xba\xf7\xa7\x96\x29\xad\xed\x30\x8e\x5c\x5c\x2b\x7a\x1a\x2d\x47\xab\x7a\xa6\x59\x89\x92\x40\x27\x20\xf5\xe0\xc9\x0d\x45\x93\xd6\x52\x52\x45\xe7\x9b\x5c\x45\x98\x26\x89\x43\x68\xce\x3a\x02\x6c\xb5\xa5\xde\x6a\x42\xf0\xf4\xec\x92\xe2\x20\xc0\x86\x05\x3b\x1c\x1f\xbb\x16\xe7\x68\xec\x67\x07\x78\xfa\x37\x50\xb1\xfa\x69\xe7\x14\x87\x05\xef\x3b\x37\x95\xed\x46\xba\xa1\x06\x8a\xf8\x6f\x9a\x2e\x67\x6e\xee\xc5\x8e\xe9\x8d\x5d\x2d\xbf\xc9\x19\x7c\x51\xef\xd9\xc4\x69\xd2\x9f\xf1\x23\xa1\x8f\x43\x91\x56\x02\x28\xdf\x8f\x62\xd5\x55\xe9\x65\x37\x3c\xc9\xca\x91\xf6\x33\x46\x27\x6f\x5f\xe4\xc4\xed\x71\x05\x75\x31\xbd\xea\xfd\xe2\x55\x09\x5c\xb5\x7a\x7c\xf0\xe4\xff\x46\xa9\x8e\x9f\xd3\x11\x54\x1a\xf7\x0e\x60\xf9\x29\x9d\x3f\x19\x6e\x05\x44\x56\x98\x37\xaa\x3d\x8c\x90\xf9\xb4\x66\x7d\xc5\x8d\xa0\xe4\x35\xd3\xf5\x63\xb2\xdc\xc2\x15\x7a\x5c\x55\x9b\xc4\x0e\x41\x2a\x33\xd3\x55\x98\xe0\x77\x6b\xa9\x40\x3f\xe2\x37\x8b\x1a\x10\x70\x58\x7c\x3c\xd5\xb8\x7f\x7e\xde\xe9\xa6\x7a\x58\x2f\x33\xa7\xf1\x89\x6a\xa1\x2f\x8d\xb3\x62\x60\xb3\x19\xd8\x0f\x9e\xca\x0d\x6a\x14\xd0\x75\xcd\x71\xc5\x07\x5d\x97\xfc\x8f\x72\x9b\xcf\x28\x81\x6e\x80\x72\x45\xad\xdb\x4f\xaf\xc2\x5e\xf3\x71\x93\x26\x6b\x18\x8f\xa5\x69\xc1\x82\xec\xf4\x09\x11\x67\x6f\xd8\x26\xa3\x2c\x5d\x89\x7a\xc2\x98\xd5\x08\x1a\x90\x02\xa8\x09\x5f\x1d\x47\x99\xed\xed\xa3\xab\x73\x48\x88\x6a\x1f\xc2\x71\xef\xa3\x17\x07\x8f\xf5\xbf\x29\xc4\xd3\xc3\x13\x35\x3c\x76\x41\xa1\x2f\x2e\x69\x90\xd3\x43\x5d\xff\x50\x62\x93\xf4\x86\x26\x5b\x6e\x57\xcb\x05\x71\xde\x65\x35\xa8\x73\xac\xf4\x33\xea\x27\xdd\x3e\xce\xa2\x70\xd9\xae\xb5\x7d\x6e\x0c\x55\x57\xa5\x10\x25\xfc\x46\x37\x15\xf1\x7f\x61\xe2\xe5\x7c\x8f\xcf\x40\x1f\x52\x85\x3e\x2e\x51\xa0\xfe\xc9\x13\xfb\x0e\x59\x56\x3d\x22\xd9\x0b\x0d\x66\xcf\x2c\x2d\x99\xc8\xc5\xc5\xce\x9f\xf9\x02\xfe\x44\xf9\xf4\x55\xb3\x22\xd2\x97\x8a\xb3\xfb\xc5\x9a\x94\x0e\xca\x5e\x80\xca\xb1\xc4\x75\xa9\x86\x50\xd6\xd5\xd7\x8d\xb2\x34\x01\xb3\x01\x7a\xc2\xd7\xe9\x43\xb0\x4e\x3f\x21\xa7\x88\xcd\x7d\x45\xf1\x52\x2f\xc6\xd1\xa8\x8a\x8c\x24\xc3\x23\x2d\x2e\x39\x6e\x80\xb8\xcc\x76\xb2\xc8\x73\x92\x08\x98\x47\xa3\x7f\xa6\xa4\xd2\x0f\x2f\xfc\x72\x67\x64\xd3\x51\x2c\x9d\x5d\xe6\xad\x0f\x14\xcf\xcb\xa9\xa9\x71\xb4\xa3\x07\xa9\x1c\x9a\x14\xd1\x8a\x4d\x98\x5b\xc0\x49\x09\x2b\x64\xf3\x5d\x72\xd7\x58\x4b\xe7\x9a\x46\x41\xc7\x49\x38\x30\x49\xdf\x5d\x33\xaa\x03\x27\xd5\x7c\xd9\x49\x57\xd3\xe8\xaf\x65\x7a\x48\x51\x78\x3f\x7c\x82\x72\x52\x4d\xef\xf6\x6c\x08\x1d\xd6\x19\xca\x36\x44\xd3\x97\x7e\x04\x9b\xf5\x3e\x22\x0e\xfe\x17\xb5\xa3\xef\x2b\x46\xdf\xcc\x12\xfa\x69\x5f\x8d\xa2\xb0\x7a\x59\x5c\x42\xa6\x8f\x89\x5e\x06\x99\x45\xa9\x2d\xfb\xf1\xf8\x93\x14\x7e\x21\x34\x61\x19\x2d\x64\xcd\x9f\x4e\x05\x0e\xcf\xeb\xb6\x3f\x7b\x8d\x1a\x1a\xaa\x41\x5e\xae\xb0\x09\xb1\xf4\x7a\xba\x08\x54\x72\xf9\xd8\xcd\x03\x8a\x4a\x9e\x7b\xd6\x6e\x8e\x61\xde\x27\x1e\xbe\x26\x3a\x34\x7d\xf3\x7a\x94\xd8\x07\x3c\xe2\xfe\x93\x60\x0a\x2f\x87\x02\xe9\xc9\x40\x49\xad\xdd\x25\xbd\x17\x01\xd2\xd1\x66\xe5\x7f\xc0\x44\x2e\x7f\x17\x3d\x20\xfe\xb8\x56\x28\x33\xc3\x91\x35\xe3\x7d\xf4\x85\xce\x4c\xb8\x3a\xfd\x6f\x6a\xdf\xa7\x9b\xe4\xac\xc0\xe0\x8c\xcc\xe1\x83\xde\x00\x7a\x2d\x4a\xf5\x66\x4d\x36\x4c\x33\xae\x5d\xc9\x68\xb5\x9e\xb3\x56\x10\xc0\xc1\xda\x28\xed\xc7\x6b\xa1\x1d\x46\xa6\xad\xd4\x16\xf0\xf6\x75\xeb\x55\xca\x8f\x7e\x0b\x93\x76\xd1\x8c\x02\xd9\x5e\x08\x6a\x3d\x7a\x15\xb4\x2a\x16\x84\x63\xaa\xba\xf8\xcd\x34\x81\xc6\xa4\xeb\x05\x70\x08\x2f\xea\xb8\x7e\xe5\xf2\x34\x72\x0d\xeb\x2c\x6a\x2c\x5e\xd8\x9d\xfb\x29\xd8\x33\x67\x5d\x36\x32\x4c\x8b\x68\xa5\x5a\xec\x6d\xa5\xcd\x72\x5e\x11\xf4\x33\xa6\x0a\xd9\xc2\x3f\x9c\x32\x25\xaf\xbc\xd2\x31\xf1\x68\x60\x16\x2d\xea\x02\x6e\xa8\xee\xab\x2f\x71\x8c\xff\x01\xad\x4b\x09\xd4\xfc\x1d\x26\x66\x68\x7b\x33\xbe\x3c\x7d\xac\xf4\x63\xe1\xbb\x26\xad\xa3\x07\xb7\xb9\x19\x8d\x52\xf2\x6d\x55\xf2\x19\x54\xa9\x66\x82\x32\x8d\x74\x52\x3d\x6f\xfe\x66\x53\x4d\xbe\x17\x65\x36\xe4\xd6\x98\xda\x27\xf4\x9b\x7e\xcf\x38\xd6\xae\xa8\xb0\x99\x89\xe3\xb5\x19\x2f\x74\x73\xb3\xd4\x44\xf9\x81\x87\xeb\x4d\x14\x5c\x6f\xa2\xaa\xef\x47\x16\xfe\x43\x64\x91\x98\x89\xd9\xa2\x3e\x19\x1f\x37\xcd\xb7\x2e\x66\x69\xb2\x34\x34\x89\x30\xba\xc3\xa6\x30\x06\x49\xe6\xe7\x54\x62\x70\x77\x4a\xb1\xe5\x95\x57\x3a\xfd\x41\x9a\x17\x8b\xe3\x1c\x05\xbe\xea\x93\x8c\xdf\xc5\x27\x05\xcc\xab\xc5\x01\x29\x69\x07\x7f\xa5\x16\x6e\x71\x78\x60\x07\xc2\xfa\xcf\xb0\x25\xb1\x95\xdf\x9b\x42\x3e\x12\x5c\xbe\xa8\x52\xee\x84\x4b\x21\x8a\xc9\xc0\xf5\x8a\x1b\x78\x7b\x65\xd2\x56\xd2\x19\xa7\xb1\x56\x2d\x3c\x69\x86\x3f\xa5\xfa\x36\xc3\xa5\x34\x2b\xcc\x22\x0f\x98\x21\x91\x5b\x27\x7b\xcb\xc7\x2a\xa9\x5b\xb5\x51\xbe\x14\xd9\x18\x57\xe4\x9a\x17\x6e\xea\xba\x0e\x87\x8e\x4c\x8e\xbd\xce\x43\x65\x0a\x17\xd5\x9a\x78\xe0\xec\x56\xc3\xdc\xfd\x8b\x52\x0b\x6e\xab\x3a\x1e\xf3\xf8\x63\xcc\xe4\x7d\x72\xf8\xa2\xec\xec\xa3\x76\xd3\x1b\x3e\xdb\x56\x24\x27\x90\xc8\xc5\x8e\x39\xae\x55\x39\xcf\x4f\xbd\xf1\xb9\xb9\xea\x57\xd3\x45\xdb\x8b\xc0\xe7\xab\x4b\x88\x1e\x45\xb6\xa1\xa6\xf3\xf2\x31\xf4\xde\x7b\x5a\xef\x1d\x5d\x02\x3e\xae\x29\x4c\x3e\xfb\x4b\x88\xaa\x99\x5f\xa1\x54\x0a\xc2\xdb\x34\x72\x26\xed\x0d\x3f\xc4\xf2\x60\x57\x41\x4d\xde\x2b\x7d\x1d\xfa\x04\x5c\x09\xf6\xdb\x5d\xf2\xa8\x52\xa0\x6e\xfd\xea\xdf\x64\xa3\x75\x80\xeb\xff\x78\x95\x7b\xbb\xad\x6f\x7c\x8d\x93\x52\xc8\x54\x7b\x22\xbc\xaf\xbe\xe4\x0a\xd6\xad\x5f\x93\xb1\xcc\x16\x34\xcc\x50\x9d\x38\x47\xcc\x42\x08\x14\x79\x76\x1a\x21\xdf\x1b\x68\xa1\xe3\x23\x97\x69\x67\x22\x67\xb9\x83\x60\x41\x58\x64\x15\x0b\xfe\x09\x4a\x32\x65\x8c\xd2\x93\x61\xdd\x43\xd1\x45\x70\x68\x6a\x83\xde\x08\x54\x6c\xf0\x99\x8a\x6e\xb6\xc8\x85\x21\x9a\xde\x3d\xa1\xa9\x37\x2c\xc6\x63\x00\x06\x38\xd9\x87\x85\x17\x5e\x74\x50\x88\x69\x59\x84\xd9\xce\xc0\xf4\xd0\x0e\x44\x34\x7d\xbd\x54\x7c\xce\x8c\xea\x80\xf5\xbc\xaf\x0c\xaf\x7d\x2d\xca\x51\xed\x15\xb6\x2d\x7a\x2b\x7c\xd2\x00\x0f\x58\x20\x36\xa9\xa5\x71\xdc\x52\x02\x7c\x9a\x93\x77\xc3\x65\x26\xe9\xb8\xc8\x6d\x1c\x73\xa6\x87\x26\xe5\x25\x85\x8c\xd7\xaa\xfb\x99\x5d\x6e\x79\xb4\xda\x0e\x42\xe8\x47\xdd\x68\x73\x44\x4a\x15\x2d\x55\x1f\xa3\x4d\x29\xb5\xb2\x06\xc5\x21\x93\x98\xbe\xe5\x89\x64\x58\xb1\xdd\x04\x12\x12\x76\x41\xba\x5d\x44\x80\xd7\x15\xae\x6a\xd1\x24\x7b\xfd\xd8\xc7\x6f\x04\xaa\xc8\x71\xa9\xac\x91\x8c\xd1\x63\x10\x4d\x29\xdf\x2e\xfd\x8d\xd2\x2b\x75\x9e\x55\xd5\x61\x4b\x12\x70\x04\xe1\x9f\x75\x2c\x3d\xf4\x85\x02\xc9\xf6\x88\xcd\x76\x57\xa1\xa9\x78\xbf\xf0\x09\x1e\x10\x60\x91\x3c\x4f\x01\x2b\x75\x46\x0d\x31\xdc\xd8\xa9\x12\x38\x37\x77\xb8\x5a\x2a\xd4\xa8\x40\x31\x0c\xd3\xa1\x22\x36\xaf\xf8\xe1\xdf\x2e\xb5\x72\xf5\xdb\x81\xca\x3d\xc1\x57\x88\x78\xf4\x27\xb8\x76\x16\x14\x0d\x94\x00\x27\xb1\x57\xed\x9b\x6a\x79\x23\x4c\x79\x10\xf5\x44\x3c\xf7\xf6\x44\xd9\xbb\x87\xbb\x6a\xb8\xe1\x4f\xd5\x44\x0b\xf3\x4e\xe2\x12\xee\xed\xbc\xb3\xca\xe4\xce\xcd\xbd\xf8\x60\xb5\x2d\x51\xbb\x01\x9d\x1f\x62\x98\xb7\xe8\x2e\x99\x51\xa8\x54\xd3\x60\x18\xfc\x93\xae\x52\xf5\x63\xd8\x3c\x57\xe8\x5a\x91\xf4\xfd\x10\xbe\x1e\x66\xee\x4f\x4a\x25\x6b\x3d\x0d\xf8\x27\x90\x88\xc0\x28\x5b\x3e\x14\xb8\xa5\x42\x84\x5b\x5a\x64\x36\x4b\xc7\x49\xef\x51\x25\x34\xce\x73\x4c\x32\xb7\xa2\x34\x70\x3f\xa7\x1b\xd2\x61\x23\x00\x78\xad\x09\x8c\xb2\x82\x29\xc9\x88\xe9\x03\x58\x40\xb0\x53\x3f\xa3\x26\x20\xb0\x75\xfb\x81\xc0\x71\x22\x8e\xd5\xf3\xd7\xe5\x2f\xe6\x52\xc3\xe2\x86\x95\xdc\xd3\x55\x9a\x58\x14\x93\xb1\xd6\x54\xab\xeb\x36\x7c\x48\x94\xfb\x1c\x3e\x22\x38\x02\x5a\x07\xc1\x18\xcb\xfc\xa1\x42\xf0\x73\xdd\xa9\x57\xb8\xd0\x39\x7a\xf0\xb9\x87\x5b\x6e\x5a\xfd\xaa\x76\x98\xbf\x5b\x2a\x2b\xcd\x7b\x10\xff\x72\xb1\xac\x51\x38\x90\x5f\x00\x7e\xf7\xb3\x52\x71\xfb\xbe\xa7\x86\xc2\xce\x73\x00\x8d\x62\xe7\x3b\x0a\xc4\x71\x49\x83\x43\x03\xd5\x21\xe4\x7c\x18\x57\x76\xd9\x95\x37\xf0\x06\x1f\xaa\xbe\x80\x6c\xf8\xdf\xe9\x74\xdd\x8c\xec\x91\xaf\x00\x92\x84\x14\xff\x00\x96\x39\x62\xf6\x16\x90\x11\xd8\xe7\x60\xc7\x26\x43\xff\xfb\x7f\xa1\xab\x7e\x06\x9c\x12\x80\xcc\xec\xa7\x07\x49\xfe\x63\xf8\xd8\xa4\x7a\x95\xb0\xb7\x9f\xc2\x84\x21\xe2\x3c\x4d\x0d\x60\x2a\x3d\xfc\x3b\xbf\x30\x05\x29\x3f\xf2\x42\x67\x68\xb3\x3e\x5a\x40\x8e\x9c\xd7\x09\xfa\xae\x97\x4f\x2a\x72\xf0\xe1\xd0\x66\x61\x64\xe2\x7d\x0a\x5d\x74\x8e\x8d\x02\x9f\x05\x9e\xc4\x11\x51\x14\x4a\x88\x27\x30\xbb\x8d\xc5\x05\xa2\x18\xd4\xbc\x37\xe1\xd1\x64\x16\xf4\x2b\x5f\x50\x5b\x8d\x92\x5e\xb4\x12\xf5\xc6\x0c\xee\xe0\xed\x1f\xa8\xe4\xe8\xba\x36\xa8\x55\x98\xc9\x59\x1c\xfc\xc0\x87\xa5\xf7\x09\x1f\x2a\x5f\xb7\x18\x25\x7d\x6c\x4a\xf8\x9f\xb7\x94\xce\xeb\x5b\xea\xde\xf3\x22\x33\x11\xfa\xdb\xca\xc7\x61\x1a\x57\x8a\x4e\x1e\x61\xbe\x39\x55\x66\xaa\x9c\xf1\x52\x94\x87\x7c\xfd\x52\xc4\x68\x39\x46\x87\x93\x0e\xbd\xb8\x62\xb3\x5e\x14\xca\x24\x8f\x94\xd1\xd4\xa0\xc1\x31\x8d\xfa\x89\x47\x83\x14\xed\xce\x79\x0f\x96\xa8\x49\x2e\x09\x90\xa8\x18\x98\x64\x99\x44\x92\x84\xc9\xab\xe5\xa4\x0f\x3e\xd2\x02\x07\x1b\x4a\xbd\xb3\xe5\x24\x7a\x4d\x48\xe4\xfe\x07\x94\xf8\xf5\x97\x00\x7f\x70\x78\xbc\xea\x2b\x9c\x78\xd3\xd1\x83\x0e\xfe\xe5\x2b\x3f\xbb\x41\x53\x89\x9a\xe2\x0f\xb1\x61\x1d\xca\xcb\xf5\xd4\xef\xd1\xda\x17\xbe\x0f\x35\x32\x78\xa7\xf4\x1a\x4f\x57\x94\xe4\x25\x83\xf0\xfa\xa6\x90\x61\x77\xec\x95\x37\x4a\xb5\x71\xde\x70\xa4\xa4\x8b\x36\x34\xe3\xdc\x1e\x70\xc0\xfa\xbf\xf3\xcb\xd8\x7a\x08\x00\x5a\x13\x85\x2c\x64\x78\x8f\x9b\x22\x98\x9b\x73\x75\xc5\xea\x22\xc9\x58\x7c\xfb\x2f\xd1\x58\xa2\x20\xb1\x3d\x2f\xd4\xfe\x89\x6b\xf2\xee\xf9\xa5\x6e\x8d\x13\x8c\x2c\xba\x30\x87\x4e\x77\x4b\x9f\xeb\x8c\x88\xd6\x49\xa2\x70\x98\xeb\x2b\x81\xc2\xfe\x5c\x99\x42\x8f\x1f\x3a\xd4\x59\x1a\x7f\x33\x6a\x29\x35\xb0\x0b\x14\xba\xf2\x71\x13\x78\x2e\x37\x91\xa3\x9e\x74\xd8\x3d\x0f\xfd\x3d\xab\x75\xac\x06\x51\xb2\xcc\x83\x68\xe0\x27\xc1\x0c\x21\x1f\x4f\x95\xad\x5e\x79\x45\xd6\xdc\x9f\x65\x9d\xe9\x85\xf9\xb8\x2a\x4e\x11\xa6\x8d\x37\x03\x3b\x2d\xbc\x12\xf1\x60\x3b\x69\x78\x2a\x9f\xf1\xcd\x0c\x0f\x41\xf4\x8c\x61\xa2\xf8\xcc\xed\x34\xb3\x44\xc3\xdb\x88\x75\x91\x4e\x3c\x4c\x96\x9a\x8f\x1b\x59\x48\xf2\xc2\xa8\x71\x73\xbc\xe7\x4d\x05\x36\xda\xf4\x14\x33\xdc\xa4\xe1\x48\x53\x1c\x93\xf7\x92\x1c\x58\x23\xce\xbf\xdb\x80\x4b\x98\xed\x90\x58\x08\xcb\x6e\x72\x74\x56\xaa\xe8\x6a\x5d\x91\x20\x43\x99\x97\x09\x16\x15\x32\xe6\xc1\xae\x67\x6f\x1d\x8c\x87\x14\x52\x8b\xb4\x5f\xf5\x09\x3e\x9e\xaa\xc3\xce\xcd\x75\x46\xe3\x2c\x1c\x18\x5f\x3b\x96\xf9\x48\x3f\xb1\xbc\xd1\xc0\x15\xf6\x5c\x65\x2d\xc7\x61\x31\x76\x09\xbb\x2b\x8b\x3a\xad\xe2\x8b\x53\x16\x72\xf6\x48\x67\x68\x72\xd7\x06\x84\xb7\xfd\x54\xcd\xa0\x7d\xda\xc4\x38\x52\x64\xd6\xd6\xf8\x81\xde\xa5\x4f\x88\x0c\x67\x03\x4e\x69\x14\xd1\x95\xf1\x87\x78\x3b\xaa\xa9\xf6\x0d\xc5\x70\x31\xca\xd2\xd0\x56\x7e\xe4\xf0\xc1\xed\xad\xea\x61\x6d\x6f\x35\x8d\x6c\x0c\xd3\x14\x3a\x70\x88\x07\x41\x3e\xc0\xc7\xaa\x88\xb9\x9a\x45\x45\x61\x93\x19\xbc\x4d\xf4\x02\xee\x68\x42\x2a\x60\xe0\x61\x46\x2e\x2b\x7a\xd2\xcb\xaa\x72\x48\x37\x4c\x9d\x6b\x91\x62\x22\xcb\xa5\x19\xb5\x10\x85\x9f\xd7\xf4\x43\x49\x2f\x32\x54\xaa\x02\x6d\xdb\xef\x6a\x76\x47\xac\x21\xfe\x87\xc0\xcf\x77\x4e\x4f\xcb\xce\xcf\x77\xfa\xd1\x70\x18\x85\xcb\x9a\x68\xee\xad\xd2\xcf\xa4\xbc\xa5\xa6\x92\x63\x93\x58\x3c\x64\x91\x4d\xf7\x6e\xf6\x7c\xd3\x20\x6d\x9e\x66\x45\xbb\x56\xcc\x6a\x39\x62\xaa\x3b\x81\xb6\xbc\x8e\x5d\x7a\x4c\x54\x9c\x2d\x95\xa3\x00\x4b\xe5\xe5\xfa\x5c\x9f\xca\x16\x54\xf2\xaa\x1e\x82\x94\xcd\xe9\x63\x52\x4f\x6f\x98\x09\x2b\x4c\xb4\x6a\x12\xee\x80\x20\x7d\x62\xc9\x44\x3e\x99\xca\x85\xdd\x18\x72\x36\x6c\x29\x9d\xa2\x4b\x5a\x3b\xf6\x92\x16\x3f\xcd\xa2\x61\x94\x98\xf8\x01\x0f\x20\xf9\xa4\x54\x00\xb0\x0d\x5d\x53\xc4\x2a\x45\x85\x6e\x9d\x36\x7b\x2d\xd7\xe3\x7f\x08\x94\x2a\xd9\x27\x54\x92\xe0\xbf\x9a\x7a\x9d\x87\x66\xb9\xf5\x6e\x35\xb3\x40\xa9\x0c\xe7\x74\x31\x6e\x6e\xae\xb3\x3a\xb0\x36\x8e\x23\x16\x48\x92\x81\x05\x8f\x88\x38\xa5\x8a\x6b\xb1\x7d\x2d\x4a\xfa\x05\x3b\xe5\x1a\x09\x29\x9f\x7c\x21\x23\x49\x96\x26\x26\x66\x05\x34\x9d\x4a\x4b\xfa\x3c\x6d\xf6\x3b\x89\x2d\x88\x9b\xd0\x59\x5a\x17\x5d\xdd\x55\x83\xff\x17\x55\x58\x27\xd4\x91\x2c\xf1\x0e\xe3\x89\xc6\x9d\x13\x14\x71\x9b\xe3\x7d\x8f\x43\x20\xbe\xe6\xb6\xe2\x7d\x87\xe0\x09\xee\xe9\x3e\xde\xa0\x14\xcb\x3c\xa8\x79\x64\xb2\x28\xa7\x46\x29\xd3\xb5\xd3\x4b\x54\x3c\xee\x0b\x8e\x50\x5f\x7e\xc9\x56\x41\xe7\x60\xc6\x2f\xfe\x47\xba\xde\xd0\xcc\xd0\x98\x84\xa2\xbd\xf7\x42\x2a\x4d\x86\xcf\xf4\xc7\x59\x64\xf0\x2a\x84\x9f\x4e\x09\x8b\x5c\x0c\x3c\xbd\x2a\x77\x9a\xdb\x4a\xf3\xed\x4e\xa0\xdb\xce\xd5\x77\x08\xfe\xf9\x61\xc5\xaa\x68\x4d\x6b\x27\xf5\x03\x1f\x7b\x32\xba\x55\x83\xba\xac\xac\x80\x96\xe2\xa7\x75\xc1\xaa\x35\xc3\x7c\xaf\x6f\xb4\x9f\xa5\xf7\x80\x17\xcb\x01\x8a\x96\x2f\x50\x2d\xa1\x97\x7d\x49\xa6\x7a\x20\x08\x35\x1f\xef\x7a\x33\x3c\x4c\x7b\x36\x96\x49\x62\xf7\x25\x4a\x84\x6a\xba\x62\xc4\x50\x03\x28\x93\x34\x50\xa0\xa1\xdb\xef\x84\x92\x5d\x0b\xf8\x2e\xe2\x35\xae\xc2\xa8\x95\x90\xae\x98\xc2\xb4\x7c\xe5\xbc\xd5\x55\xeb\xbc\x35\xf1\x30\xb8\x55\x6b\x96\x6d\xd2\xd2\xc3\x99\xca\x12\x9e\x51\xd5\xb2\x17\xcd\x9a\x9a\xe8\x3f\xaf\xcb\xc2\x97\x03\x95\x0e\xfe\x49\x93\x86\x7d\x91\x99\xbe\xed\xad\xb5\x14\x3f\xc4\x6f\x29\xa5\xe0\xdf\x9a\x2a\x6a\xc8\x2e\x5d\x4a\xb3\x02\x24\x9d\x4c\xde\x4a\x8d\x7c\x21\x72\x6d\x40\xb6\xb8\x49\xee\xb6\xdf\xcc\xac\xdf\xa2\x8a\x15\x92\x82\x69\xa9\x4b\x63\x8b\xc4\xe0\x49\xc8\x30\x11\x7d\x4c\xa6\x8c\x1a\x4c\x95\x89\x17\x4d\x12\x19\x87\xd2\x14\xce\x28\xba\x4d\xa1\x82\x7b\xc8\x81\x8b\xfa\x16\xc0\x78\x91\x92\xa4\x47\x28\x7a\x93\x4f\xba\x89\x53\xcf\xfc\x41\x7f\x8d\x02\xea\xb7\x35\x85\xf8\xb7\x1b\x25\x45\xe3\x2a\xbc\x09\x15\x57\xe8\x1d\x55\x57\xb9\x53\x8a\xc4\x5d\x11\xd1\x9f\xa8\x10\x51\xf2\xad\x8b\x81\x16\x9b\x8f\xf2\xdc\xb6\x7d\x7b\x71\x57\x77\x87\xe2\xa2\x2c\xa7\x5b\x8e\x9f\x6f\x64\x62\xee\x00\x08\x83\x83\x8f\x1e\xef\x28\x96\xa4\x5e\x34\x8a\xd3\xa1\x29\xaa\x8b\x7d\xde\x17\x81\xa8\x88\x22\x20\x28\xe5\x59\xcd\xea\x9a\xcd\x72\x72\x61\xae\xc8\xed\x53\x1d\x6e\x38\x22\x31\x7e\xa7\x54\xaa\xe5\x6f\x2b\x24\xd1\xfd\xc0\xfb\xb3\x7b\x81\x2f\xca\x5c\x2a\xbd\x07\xbb\xa7\xf9\x0d\xd2\xa1\x2d\xa2\xa1\x88\x31\xe2\x8f\x37\xf1\x62\x51\x41\x65\xee\x44\x26\x58\x27\x2b\xc1\xff\x40\x0b\x1b\x01\xd3\x7d\xd5\xf7\x20\x4a\xd8\x21\xf3\xdf\x0b\x9e\x1a\x13\x56\x7c\xdc\xa4\xe6\x3c\x4e\x96\xd2\xb8\x27\xa3\x5c\x30\x8f\x67\x34\x2a\xe7\x8c\xca\xa0\x06\x66\xd1\x66\x5c\xab\x46\xd6\x0c\x22\x21\x3e\x2e\xfd\xc5\x84\x36\xb6\x8b\x99\x29\x2c\x9c\x0c\xaa\x45\xdb\x94\x3b\xe0\x8e\x78\x26\x01\x39\xc1\x6f\xaa\x98\x35\x34\x89\x49\x2c\xc0\x8d\x30\x55\x5c\xb2\x43\x7c\x70\xbc\x06\xea\x79\x42\x15\xfd\x99\x8e\x8e\x3e\xe8\x84\x9c\x7d\xad\xe3\x5e\x7d\xd6\x72\x07\x61\xed\xe1\x83\x87\x3b\x87\x0f\xee\xf7\xfa\x3b\xbb\xba\xbe\xbb\xc4\x5b\xda\x89\xb8\x57\xa9\xaf\x44\x68\x7a\x9e\x95\x9e\x1a\x2a\x5b\xfc\xd3\x22\xe6\xe0\x9f\x2d\x16\x8a\x00\xb5\x54\x37\xe4\x53\x45\x81\x6e\x53\xa1\x5c\xae\x49\xff\xf1\xc9\x94\x81\x5f\x38\xbc\xd0\x89\x0d\xd7\x76\x5e\xf6\x34\x17\x9e\xb1\xe3\x5a\xe9\xf9\x2f\x76\x77\x1f\x55\xf1\x43\x98\x66\x78\x9f\xf8\x43\x20\x46\xf8\x78\x2a\xaf\xaf\x4c\x52\xbf\x9f\x99\x15\x53\xf0\x46\x44\xb9\xe4\xbc\x6a\x75\x9d\x6f\x82\x28\x8d\xd2\xbc\x58\x65\xf9\x5c\xa7\xeb\x35\xef\x75\xbd\x7c\xa8\x5f\xa4\xe3\x0c\xef\x10\xf5\x55\xac\x7c\x96\xb9\x09\x94\x9b\x53\x20\x70\xb3\x38\xce\x85\x28\x45\xe4\x60\xfc\x12\xdd\x72\xc1\xc8\xc0\xac\x9a\x88\xe5\xd2\x59\x24\x08\x51\x0b\xd3\x0e\xa1\x12\xb8\xfd\x7e\x53\xa2\xd6\x1f\x27\x09\x26\xa4\x1d\x85\xf0\xdc\x9c\x1c\x2b\x64\x63\x1e\x66\xe3\x22\x4a\xd6\xda\x3e\xf6\x27\x4c\xd4\xf6\x67\x14\x4c\x60\x41\x5d\x98\x7a\x46\x87\x66\x3b\xe9\xd3\x61\x9c\x86\xa8\x36\x30\x0e\xb9\x54\x00\x14\xcc\xfd\xa0\x0f\xd3\xa6\xc5\x89\x2a\xc4\xb5\x52\x29\xc0\x0d\xb2\x74\x98\x56\xb6\x85\x73\x0a\x9e\xa7\x51\x42\x3e\xc7\xd5\x98\x56\x6c\xfa\x54\x4f\x13\x6a\x5e\x0f\x58\x64\x95\x5b\x3e\xc1\xfe\x13\x3a\x5f\x1f\x2e\x2d\x8f\x86\x9c\x58\xc3\x35\x83\x40\x80\x8f\x95\xad\x0f\xd3\x54\xc8\x52\x9d\x86\x74\xf5\x8d\x5e\x43\x9a\xed\x76\x1a\xf7\xb2\xf1\x10\xf0\x64\x9e\xd6\xa3\xc7\xcc\xa4\xaf\x5a\x0d\xf3\x3d\x64\x60\x6c\x4c\x47\x83\x28\x2f\x48\xdd\xb6\xb7\xc7\x23\xa7\x6e\x04\x1e\xb3\xca\xf1\x0e\xb2\xf7\x77\x14\x73\xc4\xed\x40\x01\xa0\xb7\x9b\x54\xc6\x86\xe3\xb8\x88\x96\xcc\x30\x8a\x79\xb2\xd4\x71\x5d\xba\x19\x4c\x94\x7f\x50\x42\xbe\xae\x7c\xcb\x8a\x1d\x44\x61\x6c\x67\xaa\xa5\xb9\x0d\xe9\x6f\x14\x92\x38\x06\x14\x30\x72\x15\x53\x4b\x62\xd4\xc0\x09\x6c\xd2\xb1\xa4\x71\x88\x9c\xdf\xc2\xdd\xf0\x49\xe0\x5d\xdf\x52\x46\xca\xb7\x05\xab\x6c\x89\x1d\xf4\x03\x36\xd7\xe1\x56\xf8\x44\x57\x30\x2f\x78\xe1\x7d\x9b\x45\x2b\x82\x53\x16\x6c\x28\xdd\xb9\xa0\x46\xc5\x23\x27\x66\x05\x2b\xdd\xe1\x0e\xdc\x2c\x1e\x4f\x08\x21\x82\xdb\xdf\xd5\xd3\x32\x71\x64\x94\x25\xe0\x10\x41\x7e\xc7\x97\x0a\xc2\x2c\x1d\x01\x03\xc3\xb9\x4c\xa0\x92\xeb\x8d\x29\xf4\x1e\xa9\x9e\x0f\x47\x69\x1e\x55\xa1\x0d\x17\xaa\x5d\x7d\x64\x7e\xbe\xa1\x3e\x92\xa4\xc5\x20\x4a\xfa\x0f\x2a\x42\xa0\xeb\xb4\x66\x98\x68\x45\x81\x9a\x7e\x86\x17\xc6\xd6\x1d\x31\x41\xcd\xd4\xcb\x04\x20\xf5\xb4\xb1\xb4\xee\x2b\x69\x32\x16\x18\x15\x70\xc4\x8e\x3e\xd1\x4b\xb3\x47\x3a\x73\x73\x87\x5b\xaa\xd7\x7d\x2e\x50\x30\xd2\x69\xdc\xe7\xd1\x83\x2f\x77\xf2\xd5\xa8\x08\x07\xb4\xaf\x60\xda\xef\xd1\x05\xf3\xb1\xf2\xc6\xab\x83\x28\x1c\xd8\x15\x9b\x11\xea\xd2\xa1\x7d\x0f\x7b\x18\xf0\xce\x45\x57\xb9\x94\xb0\xca\xb5\xbe\x3e\xcb\xed\x4d\x56\x7e\xe2\x13\x57\xc2\x88\x92\x9e\x7d\x4d\x4a\x84\x35\xc2\x0d\x84\x72\x00\xb9\x22\xea\xda\x33\x69\x28\x52\x24\xd6\x64\x8b\x08\xfd\x61\x4d\xe1\x79\x99\x6e\xa8\x26\x73\xeb\x0d\x5d\xf5\xab\x23\x9b\xf4\x6c\x52\x90\x50\x37\x32\x40\xf8\x14\xb8\xa1\x1b\xf4\xec\x99\x48\xb8\xac\x85\x81\x5e\x3b\xe8\x46\xa0\xa2\xd3\x2d\x5f\x96\x49\x93\x15\x9b\x15\x7b\xbd\xf4\xcd\x71\x25\xfe\x71\x5e\xf3\x96\x7c\x82\x97\x8f\x68\x1f\x89\x37\x2c\xc2\xf1\x52\x21\x04\xbe\xd5\xa8\x9a\x54\x8c\x33\x37\xe1\xc0\x41\x11\xbe\x5a\x22\xa4\x86\xfa\x15\xc2\x35\x7e\xdc\x68\x08\x5e\xd5\x3c\x84\x6f\x97\x7e\xd5\xfb\x97\xd4\x4f\xe3\x78\x9c\x23\x39\x90\x09\x27\x25\xe2\x70\x36\xd0\xac\xe5\xb5\x56\xaf\x74\xd4\x54\x6b\x7b\xdd\xeb\xae\x98\xcc\xf4\xb9\x36\x22\xf1\x10\x7d\xad\x94\xb2\x1a\x8a\x64\x03\x13\x2f\xcd\x10\xa0\x04\x65\x77\xd0\x0b\xc3\x51\xc2\xad\x01\xf9\x78\x80\xda\x81\xe8\x7c\x4c\x97\x96\x69\xae\xc4\x9a\xac\xd7\xf6\x88\xff\x4b\xea\x8d\x9f\xd5\xa9\xd5\x9d\xa9\x12\xfb\xdc\x5c\xc7\x66\x46\xcf\xfb\xd3\xb4\x80\xf4\x0f\x9e\xf4\x31\x75\x96\x12\x3b\x6b\x75\x93\x87\x05\x89\x75\x4a\x29\x88\x9c\x9a\x8a\x91\xaa\xad\x9c\x8f\x47\xd5\xc7\xd8\x82\x4a\x5b\x5e\xa1\x18\x37\xca\x5f\xfe\x82\x84\xb4\xc8\x4c\x8f\x0d\x18\x53\x3f\x62\x3d\x1d\xd3\x53\xfe\xc7\x94\x13\x2e\xb2\x68\xd4\xd2\x05\x05\xd8\x26\x89\x92\x9e\x54\x7b\x66\x29\xea\xd9\x98\x86\x32\x1c\x2e\xfb\x1c\x76\xb5\x70\x09\x7b\xcc\x56\x36\x86\xdb\x12\xb2\x8e\x5b\xb5\x91\x46\x1f\x24\x32\x27\x9e\x50\x6b\x79\xd7\xc7\x0a\xbb\xad\x2f\x64\xea\xf7\xbc\x49\x89\x5d\x79\xb6\x55\x57\x4d\xad\x3e\x24\x71\x4f\x43\x61\xbf\x17\xe5\x61\x34\x8a\xa3\x04\x7d\x5f\x47\x28\x33\xef\xc1\x75\x3b\xdf\xf9\xec\x91\x4e\x92\x85\x2d\x25\x13\xf8\x53\x6e\xab\xf0\xd9\x34\x8a\xfc\x85\x17\x3b\x45\x6a\x72\x06\x8f\xca\xf4\x40\xbb\xab\x12\xc2\x5d\xbe\x83\xbd\xfe\x4e\x33\x0e\x7d\xc9\xc6\x71\xba\x4a\x9b\x04\x40\x17\x0c\xec\xf2\xb1\x27\x9f\xcf\x97\x4d\x4d\x67\xe5\x23\xbd\x45\x3f\x52\xd9\xc1\xeb\xaf\x73\x8b\x0c\x75\x19\x28\x76\xf0\x71\x53\xf4\x30\x32\x19\xb6\x3e\x76\x16\xf3\x8e\xf2\x49\x93\x04\x41\x18\x8f\xad\x2a\x0d\x5c\x57\x66\xed\x7a\x13\xf6\x34\xb3\x2e\xf7\x6c\x7b\xa4\x03\x08\x2f\x81\x14\xe3\x4e\x91\xb4\x4a\x3d\x9f\x46\xc6\xf9\xea\xcb\x6e\x3e\x5c\xf1\xf1\xbd\xeb\x6a\x1b\x6b\xe9\xb8\x18\xb4\x7d\xd7\xfd\xa4\x06\x8d\x5e\x57\x68\x47\x8d\x03\x1b\x45\x23\x61\x27\x77\x3c\xd0\x9e\x13\xba\x36\xbf\x1b\xa6\x4b\x2d\x25\x8c\x77\x81\xf2\x19\x3e\x76\xe6\x6e\x71\x9c\x2d\xc6\x12\x16\x21\x3b\xb9\x44\x32\x7e\x7c\xac\x5a\x25\x89\xb5\x6e\xd2\x85\xb5\x6c\x03\x35\x49\x7c\xc2\x7d\x67\x1e\x0e\xac\x8b\xd6\x81\xbf\x7e\x43\x0d\x3c\xbe\xa1\x32\x8b\x28\x61\xbe\x41\x9f\x07\x00\x64\xc1\xc7\xaa\x14\x50\xfd\x21\xf7\x92\x8f\x1e\xf4\xe2\xaf\x0e\xc8\x75\xa1\xd1\xa0\x86\x69\x98\x1a\xdc\x9d\xa3\x6b\xf3\xd4\x6d\x2e\x4a\x8f\xb8\x7e\x84\x07\xc6\x4c\xf3\x4a\xc7\x75\x5d\x61\xcc\xa9\x7f\x9a\xf7\xa3\x95\xea\x61\x68\xee\x64\x2e\x4e\x09\x8e\xe0\x49\x85\xde\xcc\x49\xd1\x37\x4d\x5a\x4a\x7d\x9c\xc9\xbd\x64\x14\xc3\xd7\x17\x17\xb3\x34\x5d\x66\x7a\x28\x29\xd4\xb6\x9c\xcc\xc0\xba\x66\x9f\xe5\x9f\x74\xd4\xf8\x87\x0f\xd6\x2e\x1e\x35\xf2\x4d\xf8\x73\x37\x08\xe4\x0b\x59\x8d\x6c\xf6\xe3\xa4\x06\xec\x85\x03\x01\x45\x12\x1f\x2b\xb1\xa8\x51\x66\xc2\x22\x0a\xed\x03\xb4\x24\x11\xd4\xdc\xa3\x47\x8c\x37\xb8\xa7\xab\xa0\x41\x27\x61\xc6\x6b\x04\x1a\x88\x24\xdf\x57\xe8\x13\xde\x57\x52\xf0\xab\xde\x36\xf6\xc4\xb5\x86\xda\xe5\x8b\x82\x81\xc8\xdb\x8a\x46\x74\x43\x0f\x97\x7f\x0f\xdf\x87\x4e\xf0\x55\x57\x33\xcc\x07\x95\x37\x23\xfc\x08\xdf\x29\xc0\x94\x7b\x26\x1e\x65\xb9\x47\x97\xa8\x6d\x96\x45\x71\xbc\xa7\x8a\x36\x85\x31\xc1\xe7\x3e\x20\x81\x83\x5b\xe1\xe9\x4a\x97\x3f\x3a\xfc\xf0\x07\x2a\xbf\x1f\xd8\x2c\xb5\x52\x03\x55\x98\xce\x05\x87\xe9\x74\x14\xbc\xe3\xd7\xc6\xd9\xda\x8c\x4f\x01\x99\xba\xc5\xcd\xf0\xb8\x90\xa6\x3d\x51\x2a\x50\x1a\xb4\x19\xa5\x0f\x38\xf3\xbc\xf0\xe5\xae\x52\x9f\xd5\x53\xfd\x4c\xfc\x82\x9b\xe0\x80\x57\xa6\x4d\xe8\xca\x44\xb5\x5a\x4d\x1f\x63\xf2\x10\xfe\xe9\x67\x53\xe9\xcb\xaf\x10\x5f\x8f\x89\x12\x9b\x2d\xa6\x26\xe3\xfa\xbe\xc3\xa2\xfa\x49\xb1\xa9\x8e\x13\x79\x19\x92\x4e\x8f\x05\xf8\x8a\x9c\xe5\x8a\xca\x5f\xae\x34\xd1\x9d\xe4\x51\x3f\x89\x96\xa2\xd0\x10\xb4\xda\x53\x81\xa0\x5b\x21\xc8\xe9\x9d\xbf\x47\xc3\xfd\xf9\x28\x4d\xf2\x48\x80\xab\x78\xbe\x5c\x4d\xe1\x93\xa9\xc8\xe8\xd0\xa1\x4e\x5e\xd9\x71\x6b\xf8\x2a\xf1\x8c\x98\xc2\x81\x4f\xd4\xbc\xe2\x6a\x14\xf7\xe2\x68\xc9\xb6\x7c\x16\x0f\x68\xac\x68\x2a\x3a\x0c\xed\xab\x63\x12\x00\x6c\x69\x52\x12\xec\x1f\x61\x28\x69\xa2\xbd\x1b\xa4\xa3\xe5\x48\xf4\x95\x44\xa0\x4d\x21\xc3\xde\x55\x09\xb1\x89\x6d\x26\x73\x0b\xa8\xd7\xb5\xb0\xb2\xb0\x8d\xef\x04\x4a\xf1\xe8\xd1\xc9\x23\x0a\x73\x96\x8d\x9e\xdd\xef\x11\xe2\xe7\xeb\x4b\xa5\x5a\xef\x4e\xf6\xae\x4a\x1c\x25\xc4\xf6\xa3\x26\x8f\x01\xcd\x83\xc6\xd8\x76\xa0\xd8\xdb\x9e\x62\x16\x78\x84\x25\x4f\xd0\xae\xc2\x4c\xda\x83\x04\xe5\x47\x1e\x7e\x52\x4d\x16\x2c\xda\x24\x4f\x93\xc1\x38\xe3\x5c\x40\x9a\xde\xd5\x5f\x4b\x33\x7c\x67\xdc\x54\xc5\xb3\x4f\xe7\x33\x8a\x0f\xeb\x22\x10\x9c\x2e\x1b\xaa\xae\x1b\xd1\x01\x2b\xce\xe0\xab\xce\x37\x0d\xbd\x66\xb6\x3f\x8e\x41\x40\x34\x5f\xab\xa3\x08\x52\x51\xc2\xa1\x61\x14\xc7\xf8\x51\x89\xe8\xbd\x34\xf4\x86\xe2\x64\x06\x84\x4d\xe8\x9c\x7c\x60\x31\xe2\x37\x3b\xcb\x79\x06\xb3\xdb\xf1\xc9\x54\xe3\x9b\xc6\x53\xc6\x79\x6e\x63\xb1\x33\x0e\x87\xe9\xaf\x61\xda\x07\x1c\x3a\xd4\x59\x49\xe3\xe5\x7c\xd5\xf4\x6d\xd2\xf6\x73\x53\x18\x35\xc7\x56\xe7\xca\x13\x1e\xca\xad\xa9\x68\xf6\xc8\x0b\x50\x7a\x0e\x1d\x9f\xb6\x22\xb2\x78\xce\x11\x59\x38\x6c\x66\x9e\x93\x6e\xa4\xd7\xa8\xa4\x3c\x5e\x0a\xe2\xf2\xf8\x6c\x3f\xe5\xa0\x42\x94\x52\x5a\x4e\xf9\x6b\xf7\xe4\x8b\x50\x8a\xf6\x35\x1b\x8e\x8b\x68\xc5\xf2\xe8\x23\x82\x90\x36\x9a\x7b\x70\x52\x5b\x65\x4d\x2e\xad\x41\xe8\x2c\x1f\x98\x6c\xb9\x56\x7f\xd4\x42\xe2\xb7\x35\x28\x71\x2d\xe9\xa1\x68\x07\x7e\x5f\x4d\xb4\x23\x5c\x8f\x72\x43\xb1\x19\xc2\xd4\x20\x7d\x58\x57\xa9\x44\x33\xbd\xc9\x8a\xed\xfb\xc6\x19\xde\x1f\xb3\x5a\xf2\x89\xda\x17\x99\x4d\x4c\x94\xe7\x86\x27\x4c\x1c\x35\x56\xa0\xa9\xb1\x9a\x22\xdf\x2a\x57\xce\x79\x7c\x13\xbf\x24\xb3\x5e\xea\xf6\x8f\x29\x3b\x32\x4c\x13\x6e\xa1\xa1\xc4\x0b\x99\x6a\x3e\x9e\x28\xc9\x2e\x93\x15\xf9\x43\xe4\xf5\x61\x8c\xae\x94\x7e\x69\x00\x16\x81\xfa\xca\xad\xd2\xf3\xb0\x60\x08\x0f\x95\xcc\xef\x42\x36\x0c\xd8\xd2\x75\xa8\xb7\xf3\x89\xe6\x79\xbc\x14\xd4\xfa\x73\xb4\x61\x98\xbf\x5b\xa9\x54\xdc\xc4\x5a\x94\xc8\x64\x67\x79\xfc\xf0\xc1\xce\xd0\xf4\xab\xfb\x72\xe4\x36\x60\x59\xe3\xe3\xa9\xdd\x46\x1e\xab\xda\x32\x3d\xd3\x52\xf1\x3e\x7a\x3b\x7c\x1c\xf8\x28\xd2\x8c\x46\x71\xb5\x4e\x30\xf8\x5a\x5d\x09\x3a\x83\xbb\x80\x3e\x46\x26\x0e\x19\x41\xfe\x07\x44\x52\xfc\x0f\x6e\xef\xac\xa6\x49\xcf\x66\x0f\x28\x19\xb3\x3d\x54\xb7\x45\x90\x55\xd2\xb4\x8f\xb4\x02\xaa\xa7\x8d\xea\xec\x03\xb4\x97\x65\x08\xdd\x01\xa1\xdf\xb9\xa5\x61\x12\x4c\xef\x8b\x47\x77\x4a\xd1\x51\x0d\xcd\x6b\xd1\x90\xc7\x53\xab\x3b\x75\xfa\x17\x0a\xb1\xe2\xe7\xf2\x16\x4d\xb8\xbc\x68\x93\x10\x5a\x19\x30\xf3\x67\x34\x63\xe7\x19\x77\x33\x43\x93\x2d\xdb\xde\x8c\x1f\x0b\x64\xfc\x38\x00\xf9\xef\x07\xaa\x97\x8e\xd7\x8a\xfa\xd7\x9b\x0d\x9b\xa5\x63\x5f\x1b\x45\x99\x64\x36\xb0\x5a\xb7\xb5\x52\xf4\x6d\x55\x4b\x1c\x65\x36\x8c\x72\x1b\xa3\x64\x07\x7b\xfa\x83\xfa\x28\x5b\xf5\xec\x44\xc2\xba\x69\x8e\x2c\x4a\x12\x60\x22\xab\x5f\x70\x92\xfd\xf3\xa2\x61\x76\xbb\xc9\x71\xf0\x8c\x49\xdb\xc3\x54\xee\x29\x68\x4b\x2d\xb6\x6f\x77\x1f\x57\x45\x8f\x22\x1a\x9a\x90\x91\x01\x58\xe6\x27\xe9\x83\x7c\xac\xa6\x2e\xb1\x3c\x72\xc8\x8a\x22\xb2\xbb\x11\x54\x6b\x82\x8f\x6b\x8c\xd0\xcb\xfd\x45\xb8\x27\x05\x03\x9f\xf7\xcc\xac\x1e\x1f\x5e\xa3\x6c\x0d\x1a\xe6\x03\x16\x0e\x2f\xb4\x95\x84\xd9\x6d\x4d\x56\x7b\x36\x50\xc3\x12\x17\xa6\x62\xfa\x85\xc3\x0b\xb4\x39\xcc\xb8\xc7\xce\xce\xe9\x81\x57\x6f\x92\x4f\x9a\xb8\x96\x46\xe3\x18\xf4\xd1\xb0\x1c\x7f\xaa\xeb\x76\x7f\xea\xd6\x58\x61\x48\xfd\xd5\x83\x43\x81\x43\xe2\xe3\xa9\x95\xb4\xf0\xc2\x8b\xae\xda\xe1\xf4\x31\xda\x8a\x75\xa5\xad\x90\x21\x45\x66\x56\x6c\xbc\xb7\xe5\xa8\x9d\xcf\xc3\x14\xc9\x2c\x01\xcc\x29\x1e\x03\x78\x9a\x44\x7d\x8b\x9e\x8f\x14\xf6\x15\xbe\xec\x67\x2e\xab\x36\xf1\xa2\xcd\x0a\x29\xa7\x88\xe4\x1d\x7d\x3d\x9f\xa8\xee\xd4\x72\x52\x25\x36\x7b\x7d\xce\xc0\xc5\x43\x38\xbf\x3f\x42\xea\x05\x77\xf4\x1d\xc5\x30\xcc\xcd\x5b\xa0\x0f\x38\xf2\xe5\xcf\xab\x5a\xcd\x5f\x7f\xf6\xaf\xa9\xf2\xe8\x87\x84\x2e\xe1\xe3\x26\x69\xe3\x61\x95\x9e\x39\xb8\x2a\xf3\x84\x29\xd2\xc2\xe9\x22\xd5\x33\x9d\x25\x9b\x8c\xfb\x99\xb5\xa0\x51\x73\xdc\xb6\x4e\xd5\xea\x8d\x1a\x4b\x49\x94\xcb\x63\x41\x30\xf0\x71\xa9\xf4\xd4\x3e\x76\x6f\x5e\x5a\x76\x87\x0f\xba\x71\x31\x35\x3a\xa6\xf0\x9c\xab\xd6\x2e\xe7\x7b\x5b\xcf\xcf\x7b\x7e\xe1\xea\xb1\x70\xa4\x08\x23\x82\x3d\xba\x8d\x86\x34\x06\x4c\x4f\x00\x8d\x81\xa0\xf8\x3d\x35\x35\xbf\x19\xec\xd4\x37\x7e\xe1\xc5\xce\xa1\xd9\x19\x5f\xb9\xf9\x1d\x45\x1c\x7f\x4a\xb3\xaa\x5f\x50\xb5\xef\xdb\x53\x4e\xaa\xfa\x9e\x38\x35\x9c\x57\x09\x79\x43\xcb\xf1\x3a\x9e\x9b\xb2\x3a\x87\x0f\x1e\xee\x8c\xd2\x42\x00\xd6\x92\x57\xf8\xe2\xdd\x69\xad\xcc\x95\x59\x92\x0f\x47\x04\xf1\x5c\x8d\xbc\x4a\xd4\x74\x1e\x53\x8a\x15\xd5\x02\x05\x3d\x18\x0b\xd6\xd3\x1b\x13\xf1\xfa\x69\x1d\x84\xd9\xce\x80\xca\xdd\x6e\xde\x9d\xa9\xbe\x44\x0b\xc4\x57\x2a\xfe\xf1\xb4\x99\xa8\xf6\x25\x73\x4a\x2b\x8e\xa2\x6b\x8a\xa3\xe8\x9a\x02\x77\x59\x93\x63\x5e\x7a\xc1\xf9\x62\xda\x10\xd2\xbb\x6a\xcd\xfb\xe9\x3a\x3f\x2d\x73\x7c\x2a\xa3\x05\x45\x59\x61\x16\xa3\x58\xf1\x33\x48\xe4\xe8\x71\x29\xe7\xd4\xb4\xf6\xa2\x8d\x23\xbb\x62\xf7\xaa\xe4\xf7\x0c\xf6\x96\xd3\x68\xf6\x42\xd7\x88\x4a\xb0\x4d\x01\x44\xe1\xe3\x52\x4b\x9e\x34\xcd\x14\x9b\x7e\x16\x85\xe3\xb8\x18\x67\x26\x6e\x29\x61\xd0\x0d\x45\x80\xb5\xa1\xf4\x82\x4c\x41\x7c\x14\xbd\x2f\x44\x4a\x48\x2a\x8a\xc1\x7a\x96\x80\x07\xf8\x8c\x79\x39\xf9\x44\x13\x3b\xda\x15\x9b\x99\xf8\x00\x6d\x0b\x41\x3b\xd0\x4b\x85\x1d\x01\x23\x9d\xb0\x5d\xaa\x38\xed\x77\x02\x1f\x9d\xbc\xc5\xe3\x4b\x42\x0e\x4a\x8f\x04\x81\xc5\x35\x15\x76\x3f\x0a\xa5\x3f\xfe\x15\x1a\xaa\x00\x26\x87\xd3\x58\xb8\xee\x9b\x6e\xff\x2f\x66\x26\xe9\xe5\x33\x4a\x8d\x62\x37\xb2\x00\xac\xb7\x5d\x13\xc5\x61\x35\xc3\xb6\x5a\xbc\x6f\x93\xfa\xc0\x2a\x64\xa6\x84\x71\x8e\x63\x15\x57\xb7\x52\xe3\x9d\xb4\xd4\xb0\xd3\xf7\x4d\x4d\x7b\xd1\x18\x52\x6c\x40\xc5\x80\x30\xec\xe2\x8e\x7d\xe0\x30\x89\xff\xa3\xa6\x54\xcc\xc6\x3d\xcb\x84\xa0\x8e\x9e\xe9\xf0\x41\x47\xcf\x24\x6c\x22\xe3\x24\x4f\x49\x56\xd7\xf6\x48\x50\xa9\x46\xce\xc3\x8a\x8f\x54\xf3\x12\xf2\xd6\xe9\xc9\x97\xd9\x4e\x98\x0e\x17\x3d\x77\x19\x6e\x18\x93\x6e\x7c\xdc\xf5\x35\xea\xa1\x59\x33\x49\xbb\xf5\x8d\xaf\x71\x33\xf9\x43\x95\xf9\xd7\x9e\xf8\x9d\xa9\xf4\x63\x6e\x0e\x44\xcc\xab\xd5\xb6\x06\x6d\xa9\x26\xee\x71\xc1\x98\x53\x0f\xfb\x68\xca\x61\xbf\xf2\x4a\x67\x60\x92\x1e\x17\xb5\x67\x39\xa5\xe7\xe8\x81\x4f\xd4\x2e\xe8\xa5\x43\x9b\x17\x51\xf8\x80\xfe\x77\x64\x3a\xf2\xc7\x8a\x55\xf0\x2a\xb7\x57\x64\xe2\xb4\xe5\xe8\xdf\x4e\x96\x4a\x34\x93\x7b\xe9\xf8\xcc\x0f\x4b\x9f\x1a\x6d\xa8\xa0\xd3\xc1\xe5\xc8\xc7\x21\xb2\x3a\x1b\xa8\xf8\xeb\xac\x9b\xb9\x21\x0c\x40\x62\x93\x22\x9f\xf1\xe9\xc8\x86\x06\xb0\xbf\xc5\x17\x26\xea\xcf\x6a\x1a\x67\x43\xc5\x05\xbd\xb4\xd7\xe7\x69\x21\x56\xb2\x50\x5a\xec\x1f\x6b\xbd\x1e\xa2\xc7\xdd\xab\x91\xf9\xbe\x59\xa8\x5d\x0c\xc4\xdc\xf9\xb8\xf4\x74\x0e\xe7\x82\x1a\x92\x5f\x61\xe1\xa2\x38\x4c\xb3\x91\x62\xce\x43\x61\x81\x8f\xa7\xe6\x7b\x0e\xcd\x76\xd2\x91\xd5\x22\x53\x48\xf9\xa0\xc2\xcf\xc7\xaa\xb0\xba\x6c\x92\xfe\x5a\x8a\x80\x57\x48\x91\xaa\xcb\x12\xb6\x24\x3f\xc7\x94\xa7\xe3\xc4\x23\xaa\x51\x01\xbb\x5e\x5b\xab\xd5\x2f\x48\xa6\xec\x85\x14\x4c\x12\x52\x39\x15\x21\x1e\x0b\xe3\xe1\x95\x7d\xbf\xb2\x42\xdb\xd8\x87\xfc\xcf\x58\x78\x68\x65\xed\x82\x61\x82\x25\xb8\x1a\x28\x54\xff\x6e\xb6\x37\x48\x68\xce\xd5\xc2\x9b\x24\x64\x7e\x0b\xb4\xe7\x3e\xd2\x88\xca\x0d\xa5\x6f\x72\xa3\xc6\x8a\x91\x8c\xed\x23\x6d\x2f\x42\x7e\x11\x91\x0a\x4c\xea\x0f\x11\xa9\x20\x96\x26\x76\xdb\xe7\x1c\xc8\x8c\xbe\xdc\x51\x29\x78\x8e\xe6\x1f\x92\x97\xc2\xd5\xde\x54\x78\xe7\xeb\x70\x4c\xf2\x22\x7c\xee\x76\x5a\x49\xc2\xde\x54\x50\x71\xa6\xf2\xe6\xcb\xa2\xce\x06\x92\x91\xef\x2a\x60\x71\x92\x16\x36\x3f\x50\x7d\x19\xfa\x90\x3f\xa2\x5f\x77\xa5\x69\x4f\x77\x0a\x43\xcb\x71\x2d\x7c\x3a\xee\xe4\x16\x0c\x1c\x56\xe6\x35\xfa\x19\xa7\xaa\xe9\x09\x2d\xb8\xb2\x8d\x00\xeb\x7b\xa5\xd2\x0b\xd8\x50\x13\x07\x7b\xbb\x6a\x60\xa0\x32\xbb\x0a\xda\xf1\x7d\x7c\x88\xb5\xbf\x68\x51\x8a\x64\x5a\x03\xd4\x30\x1f\xd9\x30\x32\x31\x4b\x9c\x63\x9d\x9d\x0e\xfc\x9a\x3b\xad\xbb\xcd\xc3\x51\x9c\xae\x01\x2d\x04\x88\xca\x86\x62\x10\x52\x13\x37\x66\xb8\x98\x45\x46\x8b\x1d\xb0\x6d\x90\x3b\xd9\x19\x2d\x48\x6d\x4c\xba\x52\x1e\x70\x70\x2b\x50\xd8\xdd\x5b\x53\x9d\xd7\x97\x16\x88\x05\x1e\x4e\xc7\xb1\xc0\x57\x0f\x5d\xc8\x54\x77\x96\xe1\xaa\x38\x2d\x4c\x93\x25\xdb\xb3\x59\xad\xa8\x84\xea\x2a\x9b\x09\x3e\x69\x62\x84\x7d\x75\x6c\xe2\x68\x09\xfd\x7d\x49\x74\xaa\x75\x21\x19\x50\x03\x55\xd9\x52\x66\x92\x70\x10\xe5\xc2\xb5\x05\x6b\x7d\x5a\x71\x05\x9c\x56\x00\xe0\x9e\x5d\xaa\xbc\x23\x5c\xb9\x70\xd1\xf8\x4a\xdc\x39\x35\x47\xc0\xa5\x74\xac\xa3\x8f\x15\xc2\xa4\x32\xd0\x26\x8b\xf2\x34\x69\x2b\x85\xb8\x73\xaa\x7c\xf3\x91\x8e\xf8\x7e\xa6\x18\xf4\xcc\x62\xba\x62\xf7\xfa\x34\xe7\xa2\x1e\xbe\xbf\x08\xca\x13\xa7\xa0\x50\xdd\x8d\x28\x28\x28\xfc\xee\x1b\x0a\x94\xf5\x86\x22\xec\x5d\x32\x61\x94\xf4\xf7\xd0\xc7\x50\xd4\xe7\xaa\x97\x88\x20\xd3\xc5\x8a\x6c\x0c\xfd\x14\xff\x19\x2d\x34\x29\x84\x48\x24\x61\xc2\x90\xb5\xc5\x6a\xac\x90\x27\x03\x25\x13\x72\xd2\x2d\xcb\x25\x13\x17\x36\x63\x58\x0f\xbc\xf5\xee\xae\xe2\x83\xbb\xab\x86\x32\x3e\x9a\x2a\xba\x92\xbc\x20\x0d\xfa\x29\x30\x12\x57\x7d\x64\x76\xcd\x61\x60\xa3\x2c\x4a\xfa\xe4\x1a\x51\x40\x44\x4a\x8f\x0b\xba\xa8\xa7\x2e\x36\x75\xd1\xef\xfd\xe0\x80\xa7\xee\x7a\x16\x1e\x03\xe6\x02\x93\x5c\x7c\xec\x1a\xf6\x54\x0f\x6c\xfb\xc4\xf5\xa6\x2a\x78\x7d\xaf\x54\x20\x8c\xeb\x53\x8b\xf2\xe8\xc1\x97\x3b\x23\x13\x2e\x9b\xbe\x74\xd0\x59\x40\x5e\xf1\x11\x5e\x52\x19\xe8\xd0\x1a\x60\x08\x9e\x63\xd3\x76\x4b\x35\xd0\x6f\x29\x1b\x61\x62\xe2\xa4\x7e\xac\x8a\xb6\x1c\xb7\x62\xf5\xba\x91\xfc\x1e\x27\x1b\x2c\xc9\xb9\xe6\x13\xfe\x14\x98\x49\xdc\xe3\x6e\x2a\x19\x22\x0a\x60\x75\x53\xd8\x70\x36\x07\x88\x82\xe1\xea\xb1\x28\x4e\x95\x3e\x10\xb9\x86\x15\x8b\x90\xfa\x2e\xd8\x37\xf1\xb8\xff\x2e\xd6\x14\x5f\x0b\x0c\x32\xbe\xeb\x5d\xcd\xc7\xf2\x4e\xe9\x47\xb5\xff\xae\x42\xc4\x65\x36\xb7\xc3\xc5\x98\x4a\xd8\xd5\x4f\xbb\x04\xcd\x27\x6b\xcd\x18\xc2\xb5\xe1\x62\x0a\xca\x30\xd8\xca\x33\x8a\xf9\xf3\x4c\xd3\xc4\x75\x2f\x33\x43\x93\x6b\x65\xe7\x6b\x4a\xd9\x79\xba\xb5\x42\x45\xaa\x64\x6d\x48\x40\x73\x3f\x5b\x15\xa8\xd9\x2a\xc5\x6c\x4c\xca\xd1\x30\x45\x68\x5c\xde\xc6\x63\xe5\x93\x06\x3a\x1c\xd3\x5b\xf1\x6c\x4f\xbc\x0d\x4b\xd5\xf9\xf9\x41\xc3\x64\xcd\xe1\x4e\xcc\xf8\x24\x04\x34\x08\x10\x40\x02\x03\x8f\x84\x40\x0b\xbb\xef\x1d\x1d\x89\xae\x0d\x17\xa3\xb4\xe0\x22\xfe\x9f\xe5\x29\x1f\x3a\x44\x02\x33\xa2\x36\x8b\xaf\xbc\x1a\xa8\x44\xef\x6a\xc3\x9b\x79\xae\xb3\x94\x66\x6e\x7c\xbe\x11\x86\xa7\xe6\x05\xd6\xf2\xbd\xb4\x46\x04\xfa\x5f\x3d\x67\x00\x62\x6e\x2a\x2a\x8d\x2e\xab\x8c\x21\x25\xc4\x68\x08\xb2\xc8\x99\x89\xaf\xbc\xef\x9e\x34\xa9\x30\xa6\xab\x62\xc8\x1c\x06\xcc\xcd\x5e\x37\x2e\x13\xba\x7c\xfe\x08\x22\xed\x0f\x02\x35\x52\xfa\x81\x2f\xd6\x15\x85\x1d\x8e\x8a\x07\xe8\x1f\x11\x1a\xfd\x31\x45\x30\xa8\x0e\xdc\x26\x0f\x86\x88\xf4\x0e\x2d\x34\xba\xff\xff\xe9\x09\xd4\xf8\x59\xa1\x0a\xfb\xc5\xf1\x4a\x79\x8e\x87\x77\x68\x39\x23\x80\xda\xaf\x1a\xb3\x66\x94\x45\xf1\x5e\xdf\xe6\x3e\xa9\xc7\x56\xaf\x94\x8a\xed\xe5\x0a\x5d\x80\xe6\x66\x74\x0a\x9b\x2e\x14\xf9\x6e\x83\x18\xf3\x42\x27\x37\x4b\xd8\x8c\xaa\xf7\xeb\x47\x26\x5c\xc2\x32\x30\xd9\x14\x07\xd4\x4d\xc5\x01\x75\xb3\x71\xe3\x66\xe9\xe2\x38\x2f\x30\x5e\x83\x80\xe2\x94\x82\x52\x9e\x03\x60\x46\x48\xfb\x1e\xd1\x0a\xf2\xa1\xdd\xe7\x9b\x81\xbc\xa6\x10\x66\x6f\xe2\xbe\xf9\x44\xa5\x91\x4c\xf0\x09\x87\xc7\x50\x44\xc4\xec\x52\xa8\xe5\x33\xc7\x9b\x83\x80\xcc\x02\xa0\x29\x3c\x11\xf4\x25\xee\xa4\xfa\x29\x9c\xdc\x0f\xfc\x88\x7f\x5c\xac\xec\xd1\x7a\x83\x4a\xde\xe5\x9d\x40\xf1\x23\xf3\x17\xa0\x0e\x08\x6e\x23\x8e\xc4\xdd\x93\xed\xd9\x30\xad\x02\x29\x1e\xc9\xc7\x52\xff\x20\xf0\xb5\xe9\x0f\x6a\xb9\x43\x3a\xb2\x07\x14\x3f\xc5\x05\xb0\xee\xc8\x88\x87\x5f\xee\xfb\xf4\x2e\x5a\x57\xa8\xd3\x1b\x0a\xa6\xf1\x33\x2c\x42\x11\x6e\xae\x96\x10\x9a\xfe\xa7\xd1\x23\xc7\x8b\xb9\x4b\xb1\xb6\xab\x89\xe8\x74\xe2\x61\x0d\x42\x05\xe8\x8b\x39\xe5\xd5\x6c\xcb\x5b\xca\x08\x1c\xfd\xd5\x5f\x53\x32\x4b\xcc\x2d\x23\x23\x09\xba\x75\x31\xfa\xeb\x7f\x95\x58\x88\xb1\x5b\x78\xd8\x0b\x10\x17\x96\x26\x45\x1b\xeb\x9a\xa2\x22\x38\x8e\xed\x81\x88\xf0\x13\x55\x2c\xcc\x47\x99\xd1\x82\xed\x77\x14\xbd\xd5\x9d\xa6\x31\xde\x5e\x94\xc7\xe9\x9a\x89\xdb\x7e\x3e\x01\xfd\x61\xac\x47\xae\x96\xc1\x74\xaf\x37\x2a\x9d\x8e\x46\xd6\xc4\x7b\x7c\xbf\xe8\x8a\x8a\x3a\xff\xa0\x36\xfe\x5d\x7f\x07\x35\x32\x69\xff\xdc\xbe\xf1\xf5\x97\xe8\xfa\x91\x3c\x6d\xea\x39\x91\x69\x74\x64\x65\xcc\xc7\x49\x8d\xce\xa3\xd4\x05\x84\xb2\x06\x2b\x34\xd9\xda\x97\xaa\x17\x87\x4c\x95\x23\x3a\xa0\x23\xff\x36\x5a\xb2\x2c\x8c\x4e\xc6\x14\x69\xd1\x5d\x78\x7b\x56\x3f\xa7\xf5\x81\xc2\xc0\x6e\xe2\xbc\x46\xfc\x43\x75\xc2\xe7\xb6\x4f\xaa\x58\xf6\x22\x1a\xbe\xa2\xb4\xae\x39\xe6\x4b\xc5\xd2\x79\x9a\x23\x1b\x58\xbd\x87\x26\x14\x74\x48\x90\xa9\x86\x53\x4f\x69\xe9\x96\x33\xd8\x0a\x32\xc6\x4e\xa6\x45\x46\x5f\x2b\x4b\x8d\x2b\xb8\xa1\x88\x14\x4e\x94\x4a\x17\xe3\xc6\x54\x31\xfe\xe8\x41\x61\x9b\x3f\x2c\x98\x4b\xc4\x55\x3c\xff\xad\x10\x74\xe0\x12\x64\xcd\xed\xda\x3a\x8e\x0a\xfb\x38\xad\x5d\x66\xf2\x54\x02\x1e\x97\x71\xc1\xa8\x9d\x5e\xa7\x6b\xc4\x1f\x61\x0a\x0b\x65\x76\x96\x93\x97\x99\x4f\x4d\x93\x70\x15\x85\x0a\x69\x32\x78\x31\xb7\xcf\xb5\xb6\x02\x32\x65\x81\x0f\xab\x74\x67\x77\xb7\xa6\xf4\x10\x78\xbc\xdb\x0c\x1e\x38\xf2\xf1\x1b\x1a\x7c\xcd\x7d\x2d\x38\xbd\xef\x38\xdc\x43\xcf\x86\xcf\xee\xdf\xfd\xcb\x6e\xf6\xbf\xe5\xa6\x1f\xff\x55\xa9\xba\xf5\xbf\x8d\xa5\xee\xaa\xc8\xd5\xb5\x20\x02\x9e\xe9\x7a\x69\x8a\x5d\x8c\x18\x72\x1c\x0c\x2e\x1c\xbb\x5c\x2a\xe4\xce\x3f\xac\xd1\x04\x35\x34\x63\x43\x93\x47\x49\x9a\x2b\xdd\x9e\x6b\x9a\x45\xfc\x9a\xd2\x00\x36\x59\x16\xad\xa0\x06\xa0\xe8\xd1\x5f\xf4\x64\xfc\xae\xbc\x76\x27\xf0\xc4\x33\x4b\x36\xe9\x19\x46\x13\xbb\x02\x93\xc3\xee\x5d\xd3\x0c\x0c\xd3\xec\x43\xb3\x47\x3a\x26\x27\x3c\x5c\x61\x55\xef\x12\x38\x23\x3e\x0e\x34\x03\x3c\x84\x9f\x10\xd1\x36\x17\x0f\xbc\x93\xc8\x21\x6d\x36\xeb\xd5\xb8\x9c\xb0\xf9\x3f\xc3\x3b\xc0\x9a\x9f\xe6\xd6\x20\x06\xd5\x2c\x1d\x8d\x24\x4f\x63\xa1\xaf\x52\x15\x62\x4e\xa8\x84\x94\x50\x79\xb1\x86\x01\x9e\x51\xfe\xe5\x4c\xcd\xd0\x8c\x6d\xbc\xcf\xdf\x1d\x8b\x77\x3a\x52\xdb\xea\x61\x09\xd2\xb1\xba\x5c\x58\xa0\xff\x05\x86\x9f\x0b\x3d\x4a\x21\xe2\x14\x96\x25\xff\x95\x62\x0d\x4e\xec\x6a\x3e\xca\xa2\xea\xbd\xec\xc0\x62\x21\xee\xbc\x19\x68\x2c\x56\xc3\x10\x65\x6e\x5f\x13\xac\x33\x9e\x12\xfa\x63\x7c\xdc\xd0\xf5\x5a\xe8\x0c\x6c\x3c\x42\x0c\x8c\xe0\xe3\x94\xe2\x61\xd5\xcd\x14\x66\x1d\x6b\x79\x4d\xdd\xa7\x98\xfb\x91\x4f\x6a\xe2\xf2\x61\x68\xf3\x9c\xab\xc9\xb0\xa8\x88\xf7\xf9\x78\xb2\xb3\x95\x55\xad\x79\x2a\x5b\x50\x34\x11\xaf\xd5\xc4\x35\x4a\x6f\xe2\xd7\x95\x80\xd6\x62\x6c\xc2\xe5\x9c\x5e\x8b\x74\xec\x2a\xdb\x23\x3d\xaf\xca\x74\xb8\x5e\x98\x6b\xe7\x9c\xaf\xd5\xa6\xcf\xef\xe0\x75\x74\xf2\x8a\x77\xeb\x86\x30\x79\xba\xa5\xe6\xaf\x3e\x81\xf1\xe2\x13\x4d\x2b\xd7\x8b\x8a\x34\xc3\x78\x25\x42\x58\xec\x2a\x98\xb9\xe3\x5a\x0c\x71\xda\x75\x13\x7e\x18\xa1\xfa\x8c\xe7\x21\x7f\xa3\xf4\x22\x34\x2c\xed\x89\x58\xe8\xb5\xd2\x0f\x10\xec\x9a\xec\x10\xfc\xa1\x69\x37\x0a\x42\x11\x06\xbd\xa5\xa9\x5c\xd7\x15\x5b\xe8\xad\xa0\x66\x96\x14\x45\xc8\x7b\x1a\x55\xf7\x0f\x91\xa0\x63\xc5\x8e\x5c\xad\xa3\x48\xa3\x98\x29\x11\x90\x26\xa0\xc9\xca\xc7\x5a\xad\xd1\x26\xbd\x5c\x55\xd9\x2f\x6a\x7d\x9a\x8b\x6a\x60\x30\x5d\x5c\x89\xd2\x71\x5e\x33\x15\x8a\x02\x74\x43\x4d\x2f\x2e\x9a\x65\x21\xe9\x40\x14\x7e\x51\xf1\x65\x5e\x6c\xe2\x19\x1f\x65\xe9\x30\x95\x56\x0e\xcf\xa4\xd5\xa8\x5c\xc8\xef\x0a\x41\x56\xc3\x6c\xd5\xaa\x89\xe3\xb6\x02\x9e\xa1\x34\x87\xb6\xd5\x0d\x25\xcc\xf0\xc9\xd4\x87\xab\x84\x62\x31\xe2\x64\xd3\x51\x4b\xba\x1a\xd1\x7b\x0d\xaa\x0c\x9d\x45\x1b\x2f\x99\x1c\xad\x38\x7c\xef\x79\x85\x8e\x62\x05\x57\x60\x81\x35\x2d\xfa\x20\xcd\x7a\x0c\x36\x46\xac\xf2\x5f\xd0\x73\xe1\xe3\xf2\x29\x4d\xd7\x38\xb2\x05\xad\xd8\x7d\x74\xe7\xd8\x06\x60\x84\x93\xd2\xa4\x0f\x8b\x79\x64\x19\xcb\xf2\x8f\x02\x4f\xd0\x82\x36\x05\xfc\x3a\x80\x24\x22\x16\xd9\x28\x01\x34\x1c\x46\x85\x83\xb9\x23\x36\xf8\x34\x50\xfc\x1e\x9f\x36\xaa\xab\x0f\x0c\xc7\x84\x8c\x47\x0a\x94\xd1\x3d\xd9\x84\x84\xce\x6c\x61\xa2\xd8\xf5\x69\x9c\x37\x71\x2c\x88\xe7\x9b\x44\x0a\xa9\x5b\xe7\x3e\xc4\x0a\x0d\x2a\xfc\xad\x37\x43\x86\x69\x36\x43\x71\x90\x52\xb8\xf1\x7c\x19\x95\x31\x12\x7a\x69\xba\x3f\x21\xd5\xf0\xfb\x62\x29\x33\xc9\xf2\x3e\x7a\x57\xd8\xd5\xb7\x34\x82\x52\x93\xdf\xde\xd4\x69\xe4\xe5\x40\x75\x77\xff\x75\xa9\xe6\x46\x6f\x2a\x81\xcc\x2f\x16\x22\xea\x67\xd6\x14\x44\xf7\x05\x4c\x08\x64\x35\x71\x87\xd7\xe9\x0d\x22\x98\xbb\xa8\xb1\x2b\xef\x2a\xd3\x1b\x0d\x87\xe3\x84\xa9\x27\x24\x92\xaf\xbe\x42\xf8\xf9\x54\x7e\xa9\x73\x99\x7e\x9a\xf6\xf2\xbd\x14\x46\x3b\x48\x92\xef\x2d\x7f\xaa\x26\xfe\x19\xb3\x8e\xdd\x71\x02\x56\x5a\xe6\x16\x3c\x4e\xe6\xbe\x12\x9e\x70\xe2\x3b\xf4\xdb\x32\x91\x52\x39\x01\xa9\x1e\x56\xef\x83\x8f\xf1\xa2\xf8\x8f\x94\xfa\xf0\x62\x66\x99\x51\xca\xd1\x7f\x7b\x2a\xf0\xa9\xc7\x39\x3f\x2f\x03\x1f\x51\xd2\x67\xd6\x36\x14\xb7\x98\xaa\x42\x46\x18\x5b\x7e\x9c\x11\xf7\xc5\x7f\xa5\x9e\xe8\x28\x4b\x57\x58\xcd\x40\x46\xa0\x1d\xbf\xeb\xbf\x7f\x5d\x51\xba\x5e\xa0\x7b\xe2\xff\x3f\x35\x84\xf7\x4c\x67\xd5\x64\x43\x35\x59\x7a\x5b\x71\xb5\xde\x56\x74\x1e\x66\xc5\x44\xb1\x59\x8c\x51\xed\x47\x61\xea\xff\xa4\x31\x79\x19\x55\x6c\x39\x19\x72\xe6\xc3\xc1\x32\xe0\xb1\x69\xbc\x80\x9b\x64\x06\x90\xd0\x4c\x2f\xb7\xf9\xf9\x4e\x42\x6d\x96\xd5\x88\xbb\x54\x80\xe2\xdf\x56\x14\x6c\x10\xef\xe7\xf1\x62\x95\x34\xfe\xc7\x47\x0f\xb5\x15\x75\xc4\x7d\x84\x1a\x0d\xfc\x82\x53\x6d\x7b\x59\xe4\x8b\x69\x2e\x55\x44\x21\xbd\xa2\x2f\x94\x0c\xc8\xff\x56\x3c\x24\x96\x18\xe9\xfc\xfc\x42\xd7\xf7\xc0\xf7\xd2\x14\x8b\x0c\xaa\xd1\xaa\x71\xd4\x55\x0a\x28\xe9\xc6\x63\x88\xc0\xba\xa5\xea\x0c\xdf\x0e\x3c\x23\xe9\xb7\x9b\xb2\xed\x7c\x1c\x2f\x8d\x33\x2d\xf4\x04\x95\x2d\x51\xe3\x90\xaf\x5e\x8a\x92\x3e\xbb\x2e\x6c\x4e\xe0\xfe\x70\x69\xf7\x75\x37\xe6\xb8\x2e\x6d\x98\xac\x78\x94\x36\x1c\x6a\x6a\x77\xc8\xb8\xc3\x00\xde\x2d\x55\x72\xc7\xe3\xf3\xf8\xd5\x99\x6e\xb5\xec\xf1\x80\xcf\xc0\xf0\xc0\xf5\xef\x9a\x78\x38\x6f\x6b\xa2\xb8\x0d\x20\xbe\xc8\x9f\xd0\xcc\x57\xff\x5c\x25\x8d\x9b\xa5\xaf\x55\x9d\x41\x7a\x8e\x62\xda\x1f\x04\xaa\xa5\xfc\x4e\x50\x43\x3f\xf8\x56\xf7\xd2\x80\x87\xe7\xa4\xdb\xac\xe8\xd0\x37\x54\x46\x94\x66\x26\xe9\x33\x4a\x0c\x75\xfc\xf7\xc8\xb2\xf0\xb1\x6a\xcf\x87\xe9\x30\x4a\xfa\x8f\xd2\x95\x20\xe7\x3b\x5f\x2a\x5a\xf1\x75\x70\x12\xf3\xbf\x20\xe8\x73\xda\x84\x5e\x0e\xf0\x1a\xbd\x62\xd1\xd3\xae\x9e\x83\x30\x68\xa8\x50\xe1\x7e\xa0\x7a\x32\x77\x38\x17\x46\x02\x89\xc8\x01\x35\xaa\x2d\x25\xab\xb3\x55\xb6\x9e\x7e\xda\x6b\x31\x1e\x15\x24\xdb\x35\xa2\x3c\xe2\xdf\xa8\xf9\xf3\x84\x11\x72\x79\x8d\x9a\x41\x35\x95\x37\x14\x5b\xfd\x78\x29\x6d\x7b\x48\xdc\x9b\x4a\xfc\x87\xc1\x43\xd8\xac\xd7\xb4\xc4\x67\x96\x9a\xde\xaa\x61\xd5\x51\x78\x1c\x16\xa8\xe0\x13\xd5\x68\x30\xa3\x51\xbc\xf6\x00\x65\xe3\x30\x29\x9c\xf6\xa0\xe7\x82\x5a\xaa\xf3\x17\x3e\x8a\x63\xd4\x09\x9f\x94\xad\xaf\xcf\x7a\x8d\x3e\x27\x8e\x7a\xbd\x54\x6c\xb0\x53\x1d\xe5\xe7\xe7\x21\x10\x15\xc7\x36\xe9\x4b\xa4\x21\x44\x0c\x2d\xcf\x8b\xa1\x94\xbb\xa3\x24\x2f\xaa\xbf\x07\xde\x5b\x48\x5b\x69\x53\x61\x04\x0e\x13\x5b\x7c\x1c\x78\xa5\xd1\xcd\xa6\x09\x8d\xe5\x34\xb3\xcc\xa3\x87\xd7\xc4\x15\x4d\x3e\x51\x20\x5d\xd3\xcf\xac\xed\xed\xdd\x29\x0d\x85\x8d\xfc\x1d\x3c\x5a\xf4\x19\x76\x77\xd5\x43\xbf\xa3\x64\x83\x18\x9a\x2d\x39\xb8\xd2\xb2\xb7\x59\x11\x91\x96\xbd\x52\xce\xbd\xa9\xd5\x72\x6f\x4e\x0d\x23\x1d\x9a\xed\x24\x1c\xd1\xa3\xed\xfe\x01\x2d\x4e\x3e\x6e\xb2\x5f\x99\x2d\xc6\x59\x82\xee\x08\x3c\xd4\xbf\xa4\x8b\x83\x4b\xe1\xba\xb6\xc0\x2e\xbd\x1b\xfb\x97\x0a\x9c\xf0\x40\x57\x51\x34\x4c\xd3\x1b\x55\x59\xea\xa2\x09\x97\xb9\xbf\xe3\xd8\x97\xaa\xcf\xf0\x89\x1b\x00\x59\x89\xb2\x7e\x24\x52\x5f\x22\x18\xd3\x72\xbc\x84\x1b\xce\x52\xf7\xb2\x68\xc5\x26\x33\x1e\xe9\x8a\x0e\x0d\xf6\xe7\x05\x55\xc9\xe0\xd4\x09\x59\xfc\xc3\xdd\x2f\x0a\xa9\x56\x33\xaa\xb6\xcd\xcd\x71\xda\x0e\x7d\x25\x19\x1c\xf0\xea\xa3\x6f\x93\x81\x10\xd9\xc4\x86\xc9\xfb\xbe\x89\x57\x4c\xe2\xe5\x5d\xb1\x71\xaf\x28\xe8\xed\x15\x2f\xe3\x57\x0c\x62\x5b\x58\x99\x9b\x43\x4c\x75\x1a\x8f\x1c\x7b\xee\x76\xa0\x27\x77\x1b\x0a\x00\xcf\x75\x06\x51\x7f\x40\xb0\x57\x6c\x7e\xd6\x73\x45\xcc\xf3\x63\x35\x55\x7a\x52\xc5\xad\xf9\x38\xeb\xb3\xb6\x24\x5a\x28\xb7\x95\xf9\x40\x4e\x85\x78\xe7\xb7\xa7\xa6\x22\x17\x0e\x93\xe6\x79\x61\xf2\x42\x14\x41\x5e\x6e\x1c\x4c\xf2\x69\x75\x6e\x57\x6c\x52\x0c\xa8\x44\x2f\xe5\xd9\xea\x29\xf2\xb1\x7a\xf9\xb6\x48\xcc\x90\x56\x2f\xbf\x05\xec\x0d\x79\x25\xf2\xf2\x57\x4c\x3c\xb6\xf9\x3e\xdf\x31\x67\x46\x4e\xd8\xdd\x4d\x74\x8d\x81\xc4\x06\x29\xad\x94\x38\xe8\x62\x85\xd0\x53\x35\x68\x5b\xdd\x2a\x72\x92\xc4\x5c\x91\xf0\xd9\xc4\x14\x16\x70\x3e\x6c\x63\x06\xfc\x48\x72\xaf\xb2\x98\x56\xb7\x8e\xba\xf2\x85\x9b\x8b\x40\x48\x89\x3f\x6e\x39\xbe\xae\xeb\xa5\xf6\xba\x8e\x33\xc8\xae\xe6\xfb\x94\x22\x0b\xff\x0a\xf2\xda\xad\x40\x57\x28\xf7\x4c\x7c\x63\xf5\x00\x95\xbf\xe1\xe7\x31\x02\xad\x5c\xe2\xcb\x8e\x3a\x7e\xa7\x09\x38\xf2\x42\x27\x1f\xa6\x69\x01\x9a\x1c\x94\x1b\x3e\xa0\xe2\x0b\x1f\x4f\x7d\xa2\xca\x85\x57\x4c\x2c\xd9\xb0\xb0\xc3\xfb\xa6\xcb\xa5\x40\x6b\xbc\x98\xb6\xea\x4f\x23\xbf\x81\x39\xb9\x4f\xb1\x0c\x72\xcd\xcf\x14\x52\x3c\x0f\x33\x6b\xc3\x81\x50\xee\x89\x70\xb3\xe7\x6f\x3d\xaf\x8c\x64\xcf\x16\x36\x03\x49\x42\xf5\x8c\x99\xe9\x44\x19\xbd\x4b\x3b\x4a\xe2\xf9\x97\xe9\xaa\x05\x3b\xe3\x01\xe6\xfb\x26\xad\x43\x87\x64\xf8\x19\x34\xf6\x4e\x0d\xeb\xe8\x41\x7e\x95\x4c\xf8\x09\xd3\xb2\x0b\x72\x44\x58\x75\x0f\x01\xf1\x8b\xe7\xbf\x45\x79\x07\x43\x6e\xb5\x86\xcb\x03\x20\x7d\x42\x85\xe5\xbe\x62\xd9\xba\x42\x0a\x46\x02\xbd\x55\x82\x42\x8f\x50\x64\x86\x7b\xf9\xae\x9e\xf2\xbf\x59\xa2\x86\x2e\x65\x46\xa5\xf3\xba\x1f\x85\x26\x2e\x06\xd3\xcb\x44\xf5\x0c\x30\x19\x5c\xe3\x82\x02\x39\xdf\x68\x64\xa8\x0f\xe3\x28\x89\x42\x13\xd7\x44\xb9\x4a\x85\x9d\xad\x95\x58\xd3\xc2\x20\x99\xd6\xb3\xe4\xb8\x87\x9f\xe1\xe2\xf8\x04\x26\x4d\x78\x0b\x76\xda\x17\x12\x6b\x07\xb0\x8d\x8c\x68\xcb\x51\x6d\xef\xe0\xf4\x52\x94\x78\x66\xd9\xe6\x0f\xd0\x6f\xc3\x09\x23\x1f\x96\x19\x04\xaf\x64\x08\x29\x2a\x37\x32\x7e\xf4\xa0\x6b\xa3\x55\xcb\x40\x60\x95\x3e\x39\xf9\x7d\x84\xe5\xd8\xf9\xd3\x7a\xcf\xf3\xf3\x0b\x1d\x13\x0d\x6b\x42\x0e\xd7\xb5\x90\xc3\x75\x95\x20\x2e\x67\x66\x25\x62\x84\x35\x82\x23\x76\xfc\x7c\x52\x7b\x96\xcf\x3e\xfb\xec\x63\xaa\x82\xca\xef\x13\x4f\x9d\x47\x69\x10\x48\xb5\xf5\xaa\x3b\x4b\x81\x25\x8c\x06\x2c\x00\x9c\x48\x6b\x52\x05\xa2\xa8\x04\x42\x27\x4f\x64\x4f\xab\x47\x00\x47\x0f\x3d\x66\x3c\xbe\x7d\x00\x71\x22\x79\xbc\x50\x7a\xe4\xe5\x1f\x96\x35\xd2\x45\xec\x05\x6e\x83\xa0\x12\x80\xb7\xda\x9e\x50\xac\xcd\xbf\xe8\x0c\x5b\x98\xa6\x31\x14\x1e\x95\x52\x8b\xaa\x55\x54\xf7\x08\x5b\x7a\x4b\xb5\xd6\x9f\xec\x2a\x54\xc4\xef\x29\xc9\xd4\x75\x35\x84\xcf\x23\xe5\xd2\x56\x0c\xed\x93\xf4\x90\x60\x25\x59\xb8\xcf\x61\x57\x7d\xd5\x83\xd1\xf4\x8e\xa3\xee\xab\x2f\x71\x06\x75\x1b\x60\x23\xa7\xf8\x70\x58\x6a\xb8\xa0\xd4\xc7\xce\xbe\x42\xd3\x4a\x48\xab\x5b\x13\x3f\x7e\x0a\xb8\x0b\x56\xfb\x35\xed\x2f\xce\x62\x1f\x20\x30\xbf\xa9\x58\x63\xf6\x40\x30\x0d\x0f\xec\xef\xc1\x60\xe3\x72\xcf\xd2\x92\xe5\xdf\x63\xdb\x8f\xf5\xf8\x26\x49\x9b\x61\x61\x9f\x77\x9a\x04\x5c\x80\x8d\xd7\x28\x24\x40\x91\xf4\xb3\x40\x0d\x62\x7e\x84\x87\x81\xfc\xff\xff\x9a\x0a\x20\xab\xed\x37\x1e\xb5\xab\x9b\x74\xdc\x78\x87\x45\x38\xe3\xb1\xae\xd7\xcc\x79\x70\xf2\x98\x03\x3f\xbf\x3a\xb6\xf9\x0e\xe6\x8b\x93\x74\x77\x7c\xac\xc6\x3d\xa9\x45\x62\x46\x34\x46\x58\xfd\xb5\x10\xad\xd3\x15\x0a\x05\xbb\x92\xeb\x4c\xd6\x8a\x68\xc8\xe5\x50\xe9\xe3\x56\x4f\x97\x8f\x1b\xc0\x71\xf3\x9d\x74\x9c\xe5\x36\x5e\xb1\xd0\xd0\x85\xbd\xf8\x00\x33\xf9\x7c\xa2\x94\x42\xa2\x6f\x3a\x90\x13\x62\xc4\x47\x27\xbe\x59\x7f\x4d\xa9\x73\xfe\xfa\x53\x4e\x2a\x65\x60\xcd\x4a\x64\x33\xaa\xf6\xc8\x88\x07\xbd\x40\x64\xf3\xe0\x03\x72\x45\x8b\x6a\x21\xc1\xb0\xdf\xad\xf7\xa4\x7a\x6b\x7b\x7c\xb9\xfd\x76\xf9\x7f\xf3\xf5\xa7\x41\x96\x9c\xd9\x79\x18\xdc\x7d\xab\x7a\xc1\x36\xc0\x60\x99\xf9\x48\x7d\x8a\xb8\x92\x26\x0c\x4a\x01\xc1\x92\x65\xd9\x0a\xfd\xc9\xeb\xaa\x12\x31\x5d\xc1\x29\x94\xab\x7b\x1a\x12\x42\x3f\x90\x95\xf7\xbd\xf7\x26\x3a\x6f\xe6\x9d\x5c\xaa\x50\x70\x38\xc2\xe1\x1f\x0e\x87\x82\xa1\x30\x6d\x52\x0e\x33\x1c\x0e\x51\x66\x90\xa2\x6c\xd1\xe4\x90\x12\x65\x8e\x86\x59\x1c\x0e\x39\x9c\xc1\x00\x83\x65\xb0\x6f\xbd\x6f\xd5\xdd\xd5\xfb\xde\xd5\x8e\x3c\xcf\x39\xef\x7b\xb2\x32\x31\xbf\x90\x89\xae\x7b\x6f\xe6\xbb\x9c\xf7\x2c\xcf\x79\x9e\xba\x7c\x48\xb5\x04\x10\x5f\x9e\xc6\x12\xc2\x8c\x69\xa6\xbe\x4e\xa3\xfd\xa3\xb2\x48\xb1\x31\xfd\x5d\x6e\x63\xdf\x41\xd4\xc6\x8c\xfb\xf4\xe9\x9a\x98\xb6\x12\x8f\x9e\xb3\x71\xb3\x1d\x9e\x2a\x60\x34\xe9\xb4\x4b\x2f\xff\x7a\xb7\xe7\x0e\xad\xce\xba\x45\x95\xfc\xdc\x93\xeb\x35\xea\xc7\x16\x6d\xfc\x28\x49\x0e\x31\x82\x13\x3b\xfb\x58\xa9\x5a\x6b\x76\x2a\xd2\x93\x9b\x1a\xbd\x98\xe4\x49\x4a\x01\x16\x46\xfa\x42\xa9\x49\x26\x58\xd7\x9f\xff\x09\x27\x0b\xf3\x09\x96\x6a\xcd\x70\x50\xca\x9f\xd1\xf4\x4a\x49\x14\x51\x73\x1e\x06\xeb\x3e\xc6\x5d\x9c\x4f\x47\x9d\x75\x89\x76\x81\x30\x23\x55\x4f\xca\x89\x1b\xcf\xa5\xbf\x76\xf6\x5a\x10\xc7\xa9\x19\xb8\x56\x17\x41\xf6\x29\x88\xa3\xa6\x56\xc9\xb3\x82\x7c\x5f\xb8\x1d\xf7\x34\xec\xfa\x9e\x3a\x49\xfa\xe1\x60\x20\xd5\x58\xbb\x25\xac\x51\xd7\xd5\x98\x28\x8c\x0f\xd1\xea\x76\xcc\x25\x3f\x2e\x5d\x80\x7c\x56\x97\xc1\x2f\xaa\x7e\xf2\x20\x89\x22\x13\x48\x25\xcf\x61\x7c\xe1\x57\xc9\x3c\x3c\xa2\x54\x97\xcd\x84\x72\x11\xc8\x24\x62\x2a\x19\x23\x03\x93\xe7\xd2\x17\xd6\x5d\x18\xe4\x0f\xb8\xce\x7c\x3e\xe1\x10\x0e\x42\x3e\x8a\x7e\xe6\xbb\x4f\xd2\x77\x61\x55\x3d\x4a\xac\x1d\xf8\x8d\x77\xeb\x02\x3b\x8a\x44\x6d\xe7\xba\x62\x63\xb8\x4a\x49\x07\xe1\x85\x56\xc2\x1f\x49\x86\x1e\x90\xea\x4b\x70\x16\x30\x66\x99\x6f\x14\x2c\xb6\x1f\x66\xc6\xcf\xd8\x06\xc1\xa7\xba\x83\x75\xc2\x37\xde\x93\x2d\x1e\xb2\xaf\xc4\x9c\x4f\x62\xf9\xf1\x4d\x9b\x32\x4a\x36\x09\xd3\x50\x32\x8f\xf0\xc9\x8e\xaa\x82\xd4\x51\x05\x50\x1b\xa4\x09\x17\xfe\xb1\x8f\xd9\x46\xa1\xb5\xe4\x9a\x62\x03\x9e\xee\x39\x0e\xca\x2c\xf7\xb9\x4b\x13\x7f\xf7\x9a\xe7\xda\x51\x5e\x53\xef\x9a\x8f\xd2\xa4\x18\x8e\x00\xf3\x12\xce\x8c\xea\x94\x93\x5a\xbc\x8b\x90\xaf\xc0\xaf\x45\x3a\xe8\xbe\xa7\x36\xce\xa6\x6e\xe8\xdb\xcb\x61\x11\x5c\xf7\x69\xe8\x35\xa3\xb4\xb0\x87\xcc\x87\x40\x75\xab\xb9\x55\x8a\xee\x92\x4f\xd8\xd5\x30\x72\xf3\xf3\xdd\x20\x4d\xb2\x6c\x17\x2d\x19\xec\x43\x36\x25\xdc\x3b\xab\xa2\x1f\xb8\x73\xb0\x7e\x37\x94\x1e\xd1\x31\xe5\x3f\x66\x93\xa4\x60\x61\x12\x21\x5d\xea\xd8\x76\xea\x33\xf4\x60\x38\x1a\x2e\x29\x0a\x31\xbf\xda\x1f\x61\x26\x73\x26\x8d\xed\xf4\xe6\xd2\xcc\xae\x5a\xa0\x26\xc9\x21\x03\xb6\x31\xbc\xe3\x0f\x70\x0c\xf3\x4d\x93\xb1\xfa\xf9\xfd\x95\xf1\x5d\x8d\x3b\xca\x9d\x44\x7c\x2d\x7d\x0b\x4a\xb7\x2d\x0d\xf3\x30\xa8\xbc\x65\x3a\xf4\xe1\x90\xdc\x82\x43\x86\x29\xde\x54\xcd\x03\xc7\x15\xe5\xe1\x38\x8c\xc3\x2c\x4f\x43\x83\x9a\x37\x16\xdb\x7b\xf4\xc6\x88\x17\x2f\xd3\x22\x14\xc2\x95\x96\x85\x4b\xca\x33\x31\xe8\x6a\x15\xe6\x5b\x40\x3b\x47\x5a\x50\x1e\x8b\xdd\xcc\x9f\x84\x26\xe6\xb3\x00\xf8\x39\x8e\xab\x25\xb1\xe2\x7e\xf5\xa6\x7a\xd1\xdc\x44\x66\x85\xf4\xdd\xf7\x56\x5e\x11\x0e\xa1\x2b\x1a\x56\x7e\xa5\x9a\xe2\x2d\x64\x61\x39\xcc\xc1\xc9\x06\x4f\xe4\x30\x8e\x0b\x69\xc0\x70\xc3\x89\x6e\x33\xfe\x42\xc5\x00\x9d\xe4\xc1\x1e\x97\xaa\xbb\x4a\xce\x1f\x66\xf7\xd7\xf4\x9e\x7e\x43\xc9\x0c\xbe\x0d\x8b\x27\x52\x99\xae\x16\xb0\x09\xcc\x15\x7f\x5c\x99\xcf\xa0\xc8\x33\xec\x38\xa0\x11\xb9\x37\x83\x9b\x95\x28\x94\xc4\x62\x86\xea\x1a\xbe\x6d\x87\x76\xd2\x01\x7c\x41\x8c\x77\x99\x2c\x7c\x4d\x34\x44\x72\xec\xce\x36\xec\xe9\x29\x63\xf7\x63\xac\x45\x94\xd3\xee\xe2\x74\x14\x34\xcf\xb3\x54\x4e\xdb\x22\xb5\xa2\xad\x8b\x6d\x98\x95\x71\x18\x27\x69\x47\xb7\x05\x3b\x64\xee\x66\xa3\x8c\x3f\x3b\xdb\xf5\x0b\x10\x78\x76\x9c\x58\xea\x65\x25\x32\x7d\x59\x75\x0e\x2e\x27\xa9\xa4\x01\x60\xf6\x8f\x68\xde\xd2\x23\x0a\x0c\xe4\x67\x59\x31\x36\x53\x0e\xe5\xfa\xbf\x61\x19\x62\x4c\x2e\x22\x70\x16\xf3\xa4\xec\x5d\x1a\xae\x90\x22\xf8\x3e\x29\xb2\x7d\xaa\x31\xe4\x9f\x36\x9e\x9f\xc2\xd3\x71\x72\xc8\xd6\x98\x91\x34\x7a\x53\xf5\xa4\xbd\xd9\x46\xeb\x9a\xaf\x1d\x32\x4a\x58\xed\x08\x8c\x27\xdf\xb4\x14\xda\x17\xf7\x77\xb3\x51\x38\xb0\x5e\xb5\x8c\x27\x3d\x9c\x0c\xb4\x2d\x5b\xf9\xd4\x7b\x4d\x7f\x88\xa4\x1a\x8b\x0c\xf1\x8d\x73\x77\xfd\x74\xe8\x87\x20\x09\x41\x46\x75\x8a\xe2\x16\x64\x0b\x6f\x29\xf8\xd4\x63\x0d\x67\x06\x0c\x88\x71\x56\x44\x48\xe8\x58\x4e\x01\xdb\x6d\x74\xd3\x53\x2c\xa0\x4d\xe2\xd7\xb9\x03\xdd\x61\xea\xc7\xfd\x30\xc9\x8c\x6a\xff\x06\x09\x1b\x5f\xb7\xd5\x20\xfb\x26\x87\x33\xc2\xa6\xb6\x86\x7c\x11\x31\x4d\x17\x61\x18\xce\x1e\x44\x6b\x0f\xd0\xe3\x08\x98\x9f\x46\x87\x11\x30\x9e\x2a\xd9\x7f\xa0\x9a\x13\x3e\x22\x93\x80\xad\xbb\x45\x4e\x15\xd6\xcf\x51\xda\xf8\x70\x94\x3e\xc0\x0f\x4b\x8b\x7d\x35\x7c\xa2\xee\x2d\xcd\x3d\x87\xcc\x9a\x4c\x07\xeb\x76\x95\x0e\xcc\x7b\x43\x9d\x3c\x03\xbf\x88\x35\xd5\xf7\x4d\xd8\x0e\xbe\x69\x9c\x0a\xbf\xf8\x42\x37\xf2\x57\xfc\x34\x51\xf4\x21\x4c\xd1\xcc\x37\x35\x78\xc3\x2b\xa2\xea\xde\xc6\x2e\xeb\x9c\x8b\x37\x4a\x97\x08\x7a\xc3\x2e\x95\x49\x9a\x2c\xdb\x45\x8e\xaa\x05\xce\x52\xbe\x5e\x77\xad\x35\x51\x48\x14\x06\x79\x28\xed\x0c\x16\x99\xbe\x4f\xd8\xa6\x2f\x68\x14\x41\x4a\x4b\xd0\xa2\x9f\xde\xa2\x81\x96\xc6\x14\x67\x93\xff\x5f\xe5\xaf\x85\xd9\xd8\x0f\xa3\x90\xdb\xfd\xd8\xeb\xf3\x14\xc9\xeb\xa6\xa2\xcd\xb2\x2d\x7b\x66\x97\x42\xbb\x31\xd5\xa0\x65\xdc\xb2\x6a\x94\x9a\x16\xf7\x18\x50\xbd\xfc\x09\xbb\xc1\xc0\xff\x43\x88\x0b\x3c\x33\xc7\x1d\x88\xf1\xc0\xf2\xa0\xe1\x7e\x22\xeb\xd6\x06\x0d\x8d\x92\xcc\x46\x9c\xc0\xb7\xfd\x3e\x3d\x8c\xa5\xab\xb2\xbd\x50\x37\x54\x67\xdf\xd8\x4f\x83\xd1\x23\xd5\x03\x20\xe2\xdf\xf2\x94\x8a\xce\xf7\x90\x60\x86\x55\xa4\xbc\xc2\xd6\x07\x94\xf5\xb3\x14\x74\xd5\x2a\x80\x0f\x73\x4d\x29\x79\xdd\xf7\xd4\xa9\xb3\x03\x3a\xe4\x96\x73\xbe\x3a\x1f\x44\x82\xbe\x9a\x48\xd5\x06\xf2\xa2\x7c\x17\x6c\xac\xfc\xca\xf6\x54\xde\xd2\x0c\x84\x5a\x73\x3f\x8c\xed\x52\x82\x5f\x0e\x92\x00\xbe\xee\x29\xf2\x24\x3f\x4f\xc3\xea\x55\x69\x85\x5b\xa2\x37\xd7\x4e\x71\x56\x8d\x49\x30\x0a\xa3\x3e\xf2\xbe\xb6\x63\x78\x9f\x6d\xe3\x6e\x83\xa6\x67\x7e\x0c\x21\x3f\x2b\x7e\xad\x79\x3b\x9a\x89\x6e\x26\xd1\xa6\x32\x93\x64\x5a\x54\x1f\x34\x4a\xf8\xd2\x60\xef\x80\xd3\xe7\x15\xd3\x6d\x38\x9e\x98\xbc\xe0\x6c\x07\x46\xea\x72\xa9\xc8\x04\x2e\x37\x76\xf9\xd2\x4c\x77\xb9\x72\xc2\xf3\xa9\x9a\xac\x04\x7d\x01\x93\x5d\xe0\x0b\x10\x3a\xed\x68\x70\x2c\x2c\xa0\x07\x20\x8a\xfc\x1c\x27\xa2\x28\x5b\x54\xaf\xc1\x25\x09\x85\x21\xbc\xde\x20\xb0\x5c\x9a\x21\x1e\xf5\x94\x79\x69\x69\xde\xac\xe4\xaf\xad\x0d\xba\x66\x46\x3f\xc8\x13\x10\x01\x48\xf1\x47\x15\x82\x1a\x3e\xc3\x4b\x2f\x75\xf3\x24\xe7\x06\x07\x81\x59\xd6\xfa\x2a\x3b\xb3\xb3\x36\x91\xe0\x32\x01\x3e\xf1\x34\xd3\x41\x6e\x8b\xc1\x8e\xa1\xbf\xd6\xaf\x3e\x9e\xe0\xb0\x45\xfa\xf4\x16\x39\xb4\x7c\xdd\x70\x48\xa9\x41\x2e\x09\x5c\x23\xaa\x6d\x9d\xad\x36\x8d\xb4\xce\xd6\xb2\xb3\xab\xcf\xaa\x38\x7d\x5b\x7b\xf4\x93\x2a\x2a\x1e\x27\x41\xea\x07\x21\xd7\xf3\x75\xb7\x94\xb4\x51\xb9\xc5\x3c\x8c\x8c\x1f\xeb\xc2\xfc\x29\x5d\x98\x3f\x55\xfe\xcd\x2f\x6a\xbb\x4e\xc3\x38\x30\x79\x12\xff\xd3\xff\x34\x36\xab\x93\x24\x65\xde\x61\x11\x94\x75\x2d\xa6\x97\x1a\xce\xcc\xdc\x01\x52\x74\xcb\x24\x36\x6c\xc3\x61\x7e\x55\x75\x84\x4d\xd2\x64\x92\x86\xcc\x33\xd7\xb1\x8a\x86\x17\xb1\x36\x91\xba\xbd\x4d\x2b\x04\x71\xd4\xc3\x94\x2f\x14\xef\xb7\x85\x70\x5c\x98\xb0\xe4\x64\xad\x3e\xca\xd7\xca\x3f\x9e\xf8\x59\xb6\xab\xda\x5d\xb0\xbd\x77\x28\x17\x63\xe9\x1e\x6c\x1f\xf6\x5d\xcf\xb5\xf8\x1f\xd7\x58\xa1\xbb\x8a\x63\xd8\x0f\xfc\xbe\x19\x87\x41\xa7\x96\x0e\xd4\x79\x42\x57\x5b\x2a\xe2\x00\xc6\x8b\x2a\x97\x28\x2d\x5f\xa1\x67\xe4\x6b\x5b\x8d\x26\xa6\x1a\xec\x35\xec\xaf\x9b\x4a\x9f\xf5\x2b\x34\x0a\x18\xcf\xc7\xd6\xb7\x3b\x38\x94\x23\x1a\x86\x19\x09\x5a\x03\x91\x67\x09\x58\xec\x40\xb2\xa1\x92\xfe\xe6\xed\x3b\x6a\x76\x16\x86\x16\x06\x83\x13\xcf\x34\x1a\x70\xec\x8e\x90\x97\x82\x10\xbe\x99\x7e\x20\x8d\x89\x74\x25\x29\xb0\x4c\x71\x0e\x21\x70\xe1\xeb\xd6\x2c\x6b\x90\xfa\xf1\xa1\xc0\x67\x71\x49\xdd\x8c\xe6\x8e\x7c\xf1\x72\xe2\x20\x94\xfe\x79\xe1\x5c\x73\xc7\xe4\x05\x37\x8c\x41\x92\x4c\x78\x17\x5a\x49\x13\xcd\xc4\xbc\x3d\xd1\x52\x05\xa0\xcf\xaa\x9d\xce\xb1\x27\xdf\x28\xda\xa4\xb1\xff\x0a\xfa\x66\xab\x53\xcd\x02\xf1\x14\x58\x4f\x4c\x59\x9a\x44\x11\x3f\x01\x5e\xfe\xac\x16\xeb\x70\x24\xdf\x59\x31\x31\xe9\xb2\x00\xdd\x25\xbd\x55\x0d\xb9\xc0\x76\x6c\xa3\x7b\x3a\x34\x71\x1e\xc6\xa2\xcc\x68\xb3\x4d\xae\x8d\xea\x78\xdb\xce\xcc\x8a\x74\x92\x86\x99\xa1\x8d\x06\x9f\x7a\x37\xca\x04\x82\xea\x73\xbe\xea\x83\xeb\x0a\x9f\x72\xc1\xfa\x70\x63\x5f\xa1\x29\x18\xe0\x84\xdf\x15\xb4\x93\xcb\xc7\x8d\x97\x93\x69\xd5\xba\x73\x44\x33\x83\xdf\x2d\x5d\x2f\xef\x83\xbd\x8e\x62\x66\xb4\x74\x68\xa9\xdf\x8f\x8c\xe6\xb7\x54\x86\xe7\x98\xf2\xcd\xc2\x38\xcc\x43\x6a\x12\x60\xc0\xa5\xc8\x19\x76\x2c\xbd\x1c\x58\xc5\x85\xe2\x89\x1e\x57\x78\x1a\x9b\xd1\xd8\x73\xd5\x09\x9d\x5b\x87\x4a\xf3\xb2\xdb\xdc\xa8\x6d\xe5\xfb\x7f\xca\x6d\x38\xfb\xd9\xb9\xee\x81\xe7\x1f\x72\xdd\x05\x47\x15\x65\xe2\x8e\x9e\xd2\x07\xbb\x46\xbe\x2c\x46\x6d\xab\x54\xb1\xdb\xc3\x3d\x95\x87\x7c\xad\x74\x00\x97\x3b\x74\x8a\xd9\x4e\x49\x07\x05\xf9\x3f\x3d\x97\xa4\x39\xa3\x4b\xfb\x17\xb4\xf2\x94\xe9\xef\x21\x4f\x14\x95\xb2\x37\x91\x3a\x80\xcd\x03\x21\x81\xd5\x40\xdd\x27\xa0\xfc\xbb\xa5\x12\x3d\x79\xd3\xab\xf5\x6e\x39\xf0\xd3\x96\xf7\x94\x32\xac\x69\x1e\x06\x45\xe4\xa7\xd1\xda\xde\xce\x3f\xfa\xc7\x7c\x88\x01\xd3\x89\xa5\xf9\x1f\x35\xe3\xc1\x6d\xb4\x11\x08\x77\x5d\xc7\x32\x94\xdd\x57\xcd\x0c\x1f\x22\x7b\x21\x74\x4d\x34\x88\xf0\x30\xaf\x78\x4f\x68\xb8\xef\x20\x29\xe2\x3e\xeb\x30\x31\xbb\x91\xc6\x91\x6f\x68\x02\x15\x1e\x41\xbc\xe8\xcd\x36\xe1\x97\x51\x38\xce\x4c\x34\x80\x5d\x67\xe0\x84\xa7\x38\xd0\xdf\xb4\x14\x64\xd5\xae\x48\xa2\x50\xb8\x43\xe0\xca\x9e\xd0\xed\x69\x27\xbc\x87\x15\x79\x4c\xff\x0b\x9b\x63\x2d\xe7\x70\x7f\xc5\xb0\x84\x04\x93\x61\xd0\x1c\x0b\x31\x86\x35\x6f\xd5\x59\x3d\xa4\xda\x0c\x9e\x69\x1a\x39\x1c\xa8\x31\xff\x8d\x75\x9b\xd3\xfd\xd1\x5f\x27\xc7\x12\x1e\xf7\xe5\x52\x71\x46\x9d\x55\x5c\xa8\xfd\x30\x85\x6c\x29\x65\x2f\xe4\xf9\x68\xa1\xa8\xee\x5d\xdb\x2c\x95\xae\x80\x5e\x00\xf9\xb6\x4b\x9e\x93\xe0\xbf\xa4\x21\x95\x3e\xf5\x5f\xb9\x70\x75\x93\xa2\x43\xbe\x76\xd1\xa1\x9f\x65\xfe\x10\xe2\x22\x72\x60\xeb\x83\xbc\xa5\x12\x92\x15\xc3\xa1\xc9\xd0\x1a\xa5\x52\x2d\x8b\x5b\xd7\xd1\x98\x09\xa3\x7d\xaf\x7c\xdc\x56\x8b\xe3\x2c\xaf\x42\x45\xe9\x12\x11\xf9\x55\x5a\x09\x7c\xa3\x90\x26\xf1\xcb\xe1\x94\x6b\xe7\xe8\x50\x80\x81\x32\xfe\x35\xf2\xff\x10\x54\x3e\xdc\xfb\x8a\x26\x5a\x19\x17\x31\x13\xe7\x2a\x4e\x98\x23\x08\xee\x24\x33\xf8\x33\x08\x6f\xfa\xd6\x3d\x16\x1e\x58\x9a\x2b\x61\x88\x7d\xaa\xc9\xd4\xb8\xb0\xb0\xff\x11\x97\xc4\x63\xd4\x86\x48\xcd\xb8\xfe\xa5\x3d\x30\x2b\x8c\x48\xf2\x94\x20\xc9\x9b\x4a\xa6\x62\xf7\xba\xe2\x5c\x39\xc7\xd5\x61\x04\x55\x6f\x20\x44\x60\xe9\xc4\x92\x20\xb2\x38\x15\x8f\x62\xb8\xf9\x06\xa3\x89\x78\xf7\x36\xde\x1b\x37\x4d\xbe\x9e\xa7\x9f\xee\x2e\x93\xf0\x89\x85\x2d\x6f\xa8\x4a\xd8\x86\xc6\xf2\x57\xdb\x6b\xc4\xbd\xed\xb0\xa6\x97\x6b\x0a\xec\x4a\x51\xee\x7b\x6d\x82\xeb\xcb\x49\x8a\x0c\x81\x74\x90\x29\x6d\x30\x06\xf4\x21\xb1\xad\x3b\x29\x63\x63\xfa\xa6\xbf\xab\x66\x82\xad\xd3\xf8\x21\xec\xa1\x6d\xdc\x76\x0d\xaf\xd8\x31\x62\xbb\x5a\x16\xee\x38\x89\xc3\x3c\x49\x69\xdf\x72\x51\x5e\x13\x8e\xb0\x10\x05\x4e\x9e\xf7\x14\x3f\x1b\xab\x13\x4a\xd6\xfd\x31\xcd\x10\x9c\x11\x21\x47\x35\xc5\xf0\xef\x19\x6f\xc0\x37\x0a\xe7\xdf\x37\x59\x90\x86\xcb\x46\x77\x5f\x1d\xd7\xdd\x57\xcd\xe6\x99\x2a\x6c\xcd\xf2\x62\xb9\x1a\x44\x04\x14\x16\xbe\xe9\x18\x34\x95\x8e\x7b\x9c\x70\x6f\x17\xa3\x48\x68\xa6\x04\x51\xb2\x7d\x72\x9e\xe9\xa6\xe1\x8a\x49\xa7\x14\x12\x14\x67\x93\x56\x90\x91\x7c\xb3\xab\xb3\x66\x49\x18\x91\xf5\x41\x3c\x85\x9e\x65\xbe\x56\xf9\xb0\xb4\x88\x0c\xa7\xc2\x91\xcf\x3f\x03\x08\x77\x4d\x22\x06\xae\xd8\x49\xae\x03\xb3\x5d\x54\x11\xe7\x25\xc5\x71\x78\xd1\x73\x30\x88\xbb\x58\x45\x58\x1b\x97\x14\x4f\xe6\x47\xc0\xb2\x8b\xf4\x8c\x12\x38\x79\xa0\xc1\xd5\x38\x77\xa0\x72\x67\xb3\x9a\xb8\x34\x1e\x4b\x64\x0a\xb6\x4f\x07\x5a\x23\x2b\x43\xc3\xaa\x0e\xf6\x89\x6d\x00\xa5\xa5\xfc\x49\x01\xe2\x61\xbc\x1b\xec\xc2\xeb\x14\xef\x28\x32\x82\x39\x6b\x72\xc9\x45\x60\xad\x54\xac\x49\x85\xad\x7f\x91\x3d\xfe\xef\xe1\xf9\x90\xf8\xfb\xb7\xf4\xb3\x70\x38\x78\x27\xe1\x10\xb8\xe3\x75\x9e\x7e\xda\xea\xae\x3a\x58\xdc\x0f\xb1\x71\xe0\x0d\x7c\x02\x96\x23\x52\xe4\x5b\xfc\xda\x83\xd5\x10\x5a\x0f\xc3\x6e\xbb\x77\x14\x7d\xf4\x6f\xd2\xf8\x63\x68\x36\x74\xd7\xed\x96\x4e\xea\x70\x78\x23\x87\xaf\xaa\xfe\xfd\x3a\xde\x0a\x3b\xff\x3a\x32\xaf\xfc\x8b\x6a\x05\x87\xc1\xb6\x4e\xc2\x52\x45\xb0\x9e\xd3\xec\x12\xcd\x83\xe7\xac\xcc\x81\xcb\xc8\x5f\x69\xf8\xe0\x62\xe7\x03\x56\x42\x03\x18\x98\xa5\x97\xf9\xa6\x91\xbc\xa1\x26\xde\x6f\x15\x06\x8c\x41\x02\x6f\xd6\xb8\xe7\xc7\x6b\x35\x8b\x14\x9c\xfa\xd5\x0e\x42\xac\xb5\x63\xbd\xda\x1a\x7c\xdd\x56\xfb\x1c\x24\x91\xa8\x07\xc0\x3b\xbf\xaa\xfa\x03\xaf\xb6\x0a\x79\x64\xe1\x2b\x83\x24\xea\xc3\xbf\x47\x29\xe9\x5f\x94\x8e\xba\x18\x41\x34\x36\xcf\x5b\x58\x60\xc8\xf0\xec\x58\x77\xc7\xeb\xcf\xcc\x3a\x6f\x5f\xf3\xb6\x87\x27\xf4\x33\x95\x17\x62\x77\x57\xf4\x1b\x9b\xb9\xfe\x45\x81\x1e\xc8\x7c\xaa\x76\xac\x39\xdb\x75\xa5\x0b\x54\xff\xf4\x6f\x75\x14\x8f\xc7\xeb\xa5\xd2\x2a\x79\xfd\x0b\xa9\xea\x56\x0d\x71\xa5\x23\x39\x2e\x35\x67\xe7\xcd\x9e\x51\xc1\xc8\x71\x1d\x51\x4e\xf5\x1e\xdb\xee\x9c\x90\xdb\x60\xd9\x2b\x1d\x93\x65\x23\x46\xdf\xb7\x50\x59\x4e\x3f\x9a\x52\xfa\x09\xf8\x51\x1c\x90\x87\x15\x99\xc8\xa7\xca\x24\x7e\xab\x08\x0d\x2b\x56\x33\x08\xb4\x54\xa2\xb7\xdf\x6b\x23\xef\x0d\x12\x52\xb2\x8b\x73\xaa\x6c\xa9\x3a\xbf\x02\x0a\xbc\xa6\x8a\xd3\xfe\x72\xe5\x89\x4f\x39\xfc\xfc\xfb\xd8\xa9\x96\x38\x78\x7e\xde\x56\x69\xb7\x91\x4f\x1f\x9c\x79\xb1\x7b\x70\xe6\x81\xce\xdc\x01\x36\x36\xc0\x5b\xa3\xee\x04\x32\x20\xa6\xb0\xc6\x31\xcb\x56\xdd\xab\x82\x0d\xc1\xab\x38\x2e\x26\x10\xe7\x6c\x5d\xc4\x61\x68\x69\xda\xaa\x63\x52\x68\xda\x5c\x79\xc2\xf4\xc3\x20\xdf\x55\x1f\xcd\x83\x33\xa2\x84\x0c\x2b\x8e\xe0\xe1\x4b\xaa\x21\xec\x9c\x06\x3a\xbd\xd5\x48\xf9\xce\x1d\xe8\x9a\x57\x82\x82\x85\xd7\xb9\xa5\x83\x9e\x10\x66\xeb\xc7\xa5\x33\x9f\x97\x5b\x58\x3b\x9e\xeb\xae\x86\x29\xe2\x60\x86\x9c\xaa\xe6\xa0\xf7\x54\x1e\x2a\xa3\x56\xb3\x2a\xec\xda\x27\xd9\xe4\xe3\x9e\x83\xfa\x31\xa8\x43\xb3\x65\x62\xf5\x5f\xa3\x5c\x15\x8c\xeb\x55\x1a\x6b\xcb\xdb\xa1\xe8\x63\x1d\x4c\x6f\xcb\x7b\x50\x60\xe5\xc9\x6a\xc7\xc1\xa8\x8e\x96\x2e\x42\x39\xaa\x0e\xea\xdc\x3f\x64\x40\xb8\xcc\x34\x2c\xba\xc9\xec\x22\x3d\x88\x9c\xbf\xae\x6a\xc3\xdc\x9e\x30\xb8\x58\x2f\x40\x4b\x5e\x52\xe1\xe9\x8e\x75\x85\xe3\x64\x22\x5c\x78\xc1\x9d\xf5\xea\x9d\x00\x1d\xdd\x4d\x73\x85\xe5\xb0\xb7\xb7\x3d\x31\x0d\x0b\x21\xfc\xb5\x9d\x06\x4d\xad\x63\xb0\x6d\xe1\x8e\xcf\xfc\xb8\xbf\x1a\x06\x23\x58\x16\x0b\xed\x74\x79\x28\x75\xa2\xf4\xfd\x68\x0d\x56\x19\x30\x2d\xd0\xa2\xf0\xb5\xf7\x95\x6d\x7e\xfd\xd2\xe2\xd7\xaa\x47\xdb\xa5\x88\xb2\x37\x3c\x07\x29\xd6\x8c\x71\xef\xe0\x31\x61\xad\xcf\xa9\xae\x8b\x8f\x54\x2e\x66\x12\x82\x46\x13\xe9\xcb\xeb\x0a\x4e\x78\xdd\x46\xb1\x23\x3f\xf5\xc9\x8b\x74\x30\x6b\x36\x93\x72\x3e\x2a\xac\x4a\x14\x24\xa3\x24\x0a\x03\xb2\x23\x5b\x17\x4b\x2a\xe6\x37\x96\xef\xec\x2c\x49\x02\xb2\x4c\x14\x80\xf9\xac\xdb\xc0\x37\x6d\xb0\x3e\xea\x44\xed\xb8\x03\x17\xfe\xa3\xf4\x7f\xd9\xca\x73\xd8\xef\x0b\xaf\x22\x46\xe5\x09\x4a\x8b\x32\xfd\xa5\x2a\x2b\x9c\xc1\x8a\xc3\x31\xf5\xc8\xfa\x5f\xff\x02\x1b\xae\x14\x6e\xd5\x10\xdc\xd0\xfa\x4f\x37\xb4\xec\xf8\x28\x99\x4c\xc2\x78\xb8\x5b\xa3\x91\xb0\x86\x75\x21\x9b\xed\x82\xe7\xea\x3a\x87\x09\x80\xcb\x7f\x83\x6f\x07\x18\xf6\xbc\xad\x0e\xf6\x8d\x99\x98\xf4\x41\x87\xc1\xbb\xac\x1a\xbf\x11\x84\x58\x6a\x17\x9d\xdf\x55\x4a\x82\xef\xc1\xe2\xb2\xac\x32\x92\x26\xc8\xdd\x32\x69\x84\x48\x7a\x39\x28\xc4\x2d\x6c\x3a\xf2\xd2\xfe\xe1\xcf\xf7\xb6\x2f\xf8\xf9\xf9\xfd\xd0\x4a\x95\x08\x95\x41\x70\x9e\x73\xd0\x6f\x29\xa0\x6d\x4a\x65\xf3\x7c\x97\x0b\x8c\x7e\xea\xa9\x47\x82\x20\x38\x36\xd7\x8e\x9e\x4b\x73\x7e\x8c\xe5\x0c\x3b\x72\xbb\x95\xe4\x2d\x36\xaf\xe4\x04\xb1\x84\x13\xc7\xed\x28\xd2\x24\x50\x53\xd7\xd1\xcd\x4a\x0e\xdb\x7d\x58\xd1\xf0\x9c\x6e\x70\x15\xce\xce\x0a\x95\x5a\x9a\xc1\x15\x90\x39\xc0\x4c\xf3\x5d\x0b\xc7\x61\x77\xb8\x26\x2c\xb2\x8a\x49\x14\xbf\x2c\x87\xbf\x0b\xda\x46\x6b\xcb\x69\xd8\xe7\x3a\x5e\x6b\x72\x5a\x7c\x83\xb1\x19\xfa\xcb\x6b\xb9\xa9\xa1\xf9\x90\xf0\x96\x3e\xa4\xed\xc7\xce\xec\x6c\x37\x8c\x03\x93\xa1\xa9\xdf\x26\x9e\xab\xd0\x07\x66\xfc\xb3\xb2\xf3\xcd\xaf\xdb\x76\xcb\xea\xab\x80\x48\xda\xd9\x28\xfe\x1d\x78\xbe\x9b\xac\x98\x94\xc4\x08\x3b\xae\xf8\x77\x0d\xfb\x98\x6f\x6a\x3d\x31\xb1\x3f\x9e\x76\x70\x8c\x23\x1a\xbc\xc7\xc2\x06\x38\xbe\x38\x57\xc0\x37\x9e\x03\xd1\x2c\x9b\x2c\xec\x9b\x8c\x18\xc7\xac\x1c\x65\xf5\x25\x42\x5f\xaf\xc6\xe1\x3d\x0a\x66\x84\xa2\x57\xb1\x9a\x34\xeb\xb5\x0b\x0b\xdd\x15\x93\x82\x3b\x0d\x07\xc2\x09\xe5\x2b\x9c\x50\x7d\xad\x59\xb2\x6c\x52\x0b\x74\x45\xfd\xf7\x06\x82\x05\x24\x4d\x8e\xeb\x7e\xdf\x33\x8d\xa0\x76\x69\xa6\xfb\xf4\x3f\xf8\x3b\x19\x72\x87\x36\x58\x9e\x9d\xb3\xc1\xf2\x97\x2c\xd4\x3d\x0b\x8a\x5a\x7a\x6c\x03\x36\x57\x14\xe2\x1f\xaf\x9f\x0c\x7f\xb3\x3b\x3f\x4f\x7f\xac\x19\x9d\xf9\x5a\xd9\xfb\xbf\xfd\x0f\xfe\xce\xb4\x1a\x75\xd0\x6c\xf2\xb5\xea\x12\xbf\x46\xcf\x24\x18\xf3\xc7\x14\xb5\x69\x1e\xc6\x7e\x84\xf3\x0a\xe9\xaf\x1f\x53\x7a\x8f\xaf\xdb\x90\x38\x7d\xb3\x62\xa2\x64\x22\x55\x19\x78\x4d\x1f\x96\x0e\xb8\xfb\xa1\xc2\x03\x23\x4f\x1c\x4e\x7c\x22\x8d\x3f\xa8\x8a\x6c\xd5\xa8\xda\x82\x46\x35\x99\x16\xb2\xee\xc2\xd4\xd3\xb5\xe2\xe9\x72\x18\xa3\xca\x65\xa9\xe0\xed\x41\xc7\xc9\x7e\x86\x62\xab\x17\x1c\x99\x88\x6c\x77\xb5\x74\xb0\x33\x3f\xf1\x5c\x2a\x13\x7e\x37\x5c\xbd\xd7\x68\x88\x98\xee\x51\x1d\x44\x77\xf1\xd5\x62\xd9\xac\xa6\x70\x64\x5e\x61\x2f\xc2\x4a\xf7\x2d\x38\x1d\x3f\x95\x5d\xfc\x7a\x12\xf0\x1f\xb2\x78\x9f\xa6\xd7\x39\x6b\x17\x48\x36\x49\x8a\x4c\xd4\xe1\xd0\xce\x70\x53\x0b\x95\x72\x60\x8e\x08\xe8\x88\x32\x2f\x59\x52\xa4\x81\xc9\xa6\xdc\x61\x73\x4a\x27\x22\xde\xa3\xf9\x64\x7d\xd3\x16\x71\xda\xee\xcb\x45\x7f\x88\xdf\x95\xd6\xa0\x63\xd8\x00\x42\xb1\x8b\x87\x17\xc0\x89\xd2\x2c\x20\x74\x95\x01\x2c\x02\xa1\xc8\x07\x9e\x93\xfe\xfc\xa0\xc5\xa6\x13\x8c\x2b\x27\x67\x12\x47\xf9\x86\x22\x06\xd8\x50\x9c\x53\x43\x13\x17\x61\xcc\x8d\xa6\xd8\x4b\xb7\x6a\x49\x28\x07\x48\x3a\xd1\x30\xd0\x36\xfc\x4e\x18\x39\x87\x3f\xbc\xa7\xb3\x19\xf7\x94\x47\x1d\xa4\x49\xbc\x16\x66\x63\xfc\x9a\x4d\x96\xda\x4e\xe8\xb7\x55\x5e\xeb\x5f\x96\x8e\x87\x39\x92\xe9\xc2\x3a\xbe\x5d\x9f\xae\x8e\xa5\x47\x3b\x59\x23\xc8\x8a\xe3\xb5\x15\x3f\x42\xc9\x57\x05\xa9\x72\xd2\xdf\x50\xf2\x6e\x53\xbd\x86\xb9\x9f\xeb\x1e\x4a\x93\x38\x49\x29\xca\x40\x2d\xed\x56\xa9\xa4\x80\xe0\x05\xe3\x9c\xbf\xd2\x26\x48\x36\x0e\x63\x93\x72\x74\x27\xe2\x57\xce\x0b\xda\xb0\x67\x51\x66\x82\x24\xee\xfb\xe9\x1a\x3d\x28\x9e\x8d\x9b\x6a\x25\xa2\x72\xf5\xec\xdd\x3d\x05\xe9\x2f\xc6\x93\x5d\x0e\x8b\x85\x4c\x09\x5f\x97\x8a\x51\xe2\x25\xac\x52\x51\x85\xa3\x21\x90\x84\xd4\xa3\xd6\x3f\xca\x26\x7e\x28\xec\xdd\x42\x0e\x4b\x9f\xd3\xeb\x87\x5b\x54\x94\x53\x32\x31\x69\x40\x9a\xd9\x73\x07\x2a\xa7\x75\x76\xce\x32\xe1\xa9\xe8\xe8\x64\xed\x30\x1b\x18\x33\xdd\x99\x9d\xb5\x46\xc9\x81\x77\x6f\xab\x13\xf8\x26\x7d\x19\x0c\xdd\x99\xf2\x29\x0d\xf5\xcf\xd3\x70\xb9\xa8\xbc\x82\xdd\xae\x00\x7e\x96\x5a\xad\x84\xd1\xc3\x15\xc9\xd9\x97\x41\xb4\xcb\x74\x11\x7c\xa3\x90\xba\xc7\x5a\x26\x70\x7f\x37\x32\xe0\xbf\xaa\x06\x8c\x49\x11\x3c\x85\xea\xb9\xa6\x6c\x43\x50\x50\x87\xeb\xc3\x8e\x57\x9b\xb5\x1f\x6a\x12\x06\x48\x3c\xec\xe8\x75\x2c\xf3\xf8\x5b\xa5\x42\xee\x5c\xc3\xb3\x5a\xf6\xf7\x6a\x00\x2d\xa8\xff\xe0\x0c\xdb\x19\x34\xae\xea\x34\x08\x06\x6f\xab\x74\x31\xc8\x65\xf2\x68\x51\x3f\xd8\xd1\x53\xbd\x34\x3e\x43\x20\x60\x14\x01\x8e\x62\x24\x5b\x59\x33\xf9\x6d\xe2\xda\x83\x24\x1d\x62\x9f\xe3\x80\x63\xcf\x92\x6f\x3c\x57\x5c\x20\xca\x05\x41\x05\xb3\xd6\x82\xe7\x3c\xd2\x3f\xd3\xc2\x23\x81\x1f\x4d\x38\xe3\x27\x24\x48\x1d\xcb\xa4\xfa\x6e\xdb\xc6\xca\x46\xe8\x1c\xd3\x74\x35\x30\xa4\xc2\x57\xe3\xcc\xdb\x28\xcc\x73\xdb\xc8\x66\x79\x80\x9d\xd0\xdf\x35\xd5\x71\xbf\x3a\x4a\x22\x94\xf2\x01\x0a\x61\xb2\x32\xa6\x0f\xf5\x1c\x5a\x64\x13\xc9\x0f\xe1\x15\x75\x87\x70\x18\x67\x79\x5a\x04\xec\xb0\x56\x3f\x29\x76\xa7\x9a\x0e\xc9\x8d\x09\xb5\x6f\x96\xa7\x7e\x6e\x86\xa1\xa9\xa9\x08\x6e\x7a\x0e\xc9\xa2\x55\xc2\xc3\xbe\xf1\x23\x36\x83\x16\xcb\x30\x3f\xcf\x69\xaf\x3b\x34\x68\xa8\x2b\x9d\x2c\x9f\xb2\xeb\x72\xd5\xac\x99\x74\xe4\x9b\x22\x63\x19\x18\xbc\xf6\x0f\x74\x11\xec\x07\x36\xff\xd0\x0f\xcd\x2e\xe7\x8f\x9e\x28\x15\xcb\x21\x58\x17\x45\xc0\x82\x56\x33\x1b\x45\x5a\x8e\x08\x3b\x4e\xda\x3a\xea\x8a\x49\x2d\x2d\x08\x97\x81\x30\xec\x52\x13\xda\x8e\x34\x5a\x9a\xe9\x8e\xf8\x11\x45\x26\x8e\x5c\x3d\xd1\x8f\x6b\xa1\x00\x59\x0d\x63\xa2\xbc\xac\xe6\xc2\x86\x21\x2e\x24\xb1\xb6\xad\xf2\xb5\x0b\xcb\xae\xce\xae\x27\x8d\x9d\xb8\xa1\x5f\x74\xae\x15\x71\x98\x4f\xa9\x24\x38\x18\x94\xb1\xc5\xce\xaa\x7a\xfa\xbd\xc6\x37\xec\x5b\xe8\x0e\xc3\xf1\x38\x0c\x0e\xb1\x77\x6c\xf9\x0f\xad\x1c\xd6\x66\xa9\x74\x16\x8a\x71\x11\xf9\x16\x49\x0e\x9c\xea\x3b\x30\x36\x7c\xa3\xba\xef\xc3\x34\x0d\x73\xae\x88\x2e\x49\x4f\x03\x4e\x09\xbe\x6e\xe4\x56\x96\x66\xba\x99\x1f\x0f\xab\xa3\xbe\xe3\xd8\x6e\xcf\xd5\xb8\x77\x65\x5d\xfa\xf9\x38\xc9\x26\x23\x93\x9a\x69\x87\x46\x04\x5a\x0a\x55\x02\xb4\x32\x48\xef\x3b\x2d\x12\xd8\x80\x5b\xa5\xf3\xc2\x5f\x4e\xac\x2e\x35\x8e\xa1\xab\x38\x11\xf8\xa6\xfc\x8a\x22\x86\x71\xb0\x35\x94\x2e\x45\x25\x5c\x49\x68\x6c\xb6\x52\xd6\x85\x01\xcc\x19\xca\x54\x97\x55\x85\xe9\xad\x52\x05\x9a\xe7\x6c\x4a\x66\x60\x4c\xe4\x74\x3b\x95\x00\xa3\x6b\xeb\x7c\xd4\xd6\xcf\x83\x43\xfe\x10\x6c\x67\x2f\x72\x36\xe8\x0f\xb1\x25\x80\xee\xa1\xf6\x0e\x4a\xd5\xd8\xee\xa3\xf3\xf6\x54\xf7\xfb\xd5\x00\xd8\xc8\x5e\x70\x06\xae\x39\xef\xac\xe7\x32\x1f\xa6\x98\x8c\x92\x34\x64\x1a\x06\xb8\xe4\x00\xe9\x49\x23\x8b\x63\xc3\xb9\x6d\x71\x50\xcb\x69\x11\x73\x4f\x94\x62\x57\xdc\x6f\x97\x57\xc7\x32\x80\xdd\x57\x90\xc7\x20\x89\xb3\x24\x72\xf5\x74\x04\xed\x9f\x78\x4a\x26\xed\x13\x25\x60\x6e\xf9\x88\x14\x81\xbc\xe7\x50\xa1\xcd\x86\xa3\x7d\x0b\xdd\x6c\xe2\xc7\x61\x36\xea\xb8\xb5\x7e\x43\xe7\x12\x6f\xa8\x4e\x80\xca\x06\xae\x2e\x9b\x34\x5d\xeb\x28\x5e\xf4\x5b\xec\x0a\xf3\x9d\x72\x57\x27\x26\x1d\x98\x00\x51\x33\x3c\xd4\x4b\x98\x68\xbe\x69\xe0\x64\xe7\xe7\xbb\xa6\x5f\x00\x3f\x50\x39\x63\x96\x93\x99\xf9\x31\x25\xa6\x68\xc9\x9a\x99\xd8\x8c\x19\x3c\x86\x6d\x7e\x44\x6d\xf9\x23\x2d\x74\x92\x8b\xdd\xe5\xa2\x3a\x6e\x3a\xca\x16\x7b\x0e\x44\x7d\x52\xd5\x95\x08\xff\x1e\x66\x41\xb2\x57\xf5\x4b\x5c\x57\x9d\x90\x7f\x56\xd6\x6a\x32\xd5\x02\x45\x64\x74\x9d\x96\x9b\xc5\x26\xb9\xea\x60\xa7\x47\x06\x53\x30\x41\x2e\x21\x73\xb8\x11\x5c\x2e\xcd\x74\x27\x49\x14\x85\xb1\x9f\x03\x31\x8f\x84\xe8\xc7\xb0\xeb\x4c\x7c\x82\x5d\x21\xb4\x71\x1a\xf0\xd7\xf8\xbe\x6f\xcc\x91\x91\x5d\x1d\x99\x68\x4c\x8b\x0a\x8f\xf7\x5d\x05\xa3\xfa\x6e\x6b\xe2\x29\x2f\xd2\x98\xea\xd4\x78\xd1\x2b\x78\x00\x9c\xb2\x3f\xa1\x11\x80\x0b\x7c\xa1\x4d\xf9\xbf\x6f\xa2\x70\xd9\x28\x72\x7c\xec\xe0\x0d\xd5\x7e\xbd\x51\x7e\xa5\xc6\xc5\x99\x9a\x91\x89\xb3\xea\xef\xa7\x9c\xb2\x3e\x73\x29\xf2\x4d\x23\xe5\xba\x6f\xa1\x1b\x87\xc1\xc8\x90\x8b\x0b\xf9\x29\xbc\x12\xd8\x01\xa4\x70\xea\xe2\xd0\xb5\x00\xb4\x8d\x5b\x17\x15\xfc\x8f\xb9\x5e\xe1\x33\x5c\xab\x85\xdb\xd9\x04\x5a\xe8\xe2\xc8\xd2\x18\x88\xf7\xda\x92\x71\xc9\x12\x1f\xc5\x7d\xa4\x79\x50\x1a\xb4\x56\x7a\x69\xc6\xd6\xa1\x1f\xd7\xfc\xd0\x31\xd3\xb5\x58\xe6\x61\x20\xc0\xf9\xba\x8d\x47\xb4\x3a\x5e\x31\x58\x1d\xcb\xc3\x87\xc1\xe5\x6b\xe5\x9d\xc4\x7e\x36\x2a\x7c\x8c\xaa\x50\x63\x2a\xfd\xea\xf3\xde\x76\x36\x62\x4a\xc8\x4f\x92\x8c\xda\xcc\xe4\xc1\x90\xe4\xff\x4c\x51\xc9\xd5\x68\xfa\x8d\x9f\x67\xd3\x55\x54\x20\xe0\x76\xe7\xfe\xbf\xa7\x4e\xbf\x2d\x8d\x13\xbb\xa6\x12\x04\xe1\x78\x42\xab\x5d\x64\x2c\x69\xeb\x49\xe4\x58\x7d\x17\xd2\xb9\xd0\xc8\x13\x89\x8f\x56\x46\x91\x74\x0c\x75\x4c\xd5\xdb\x6c\xbb\x5c\x1a\x35\x53\x5a\xaa\x94\xca\x09\xe3\xe1\x94\x2e\x67\x77\x2c\xb5\xc0\x89\x52\x85\xc4\x5b\x8d\xe3\x7b\x7e\xbe\xeb\x47\x43\x93\x0a\x40\x55\x91\x46\x8a\xcd\xfc\xdc\x7b\x62\xbb\x2e\x73\x77\x7e\xfe\xe7\x3b\x4f\x3f\xcd\x01\xc5\x09\xc4\x20\x48\xda\xff\x05\x10\x21\x00\xe6\x1f\x07\xdc\x08\x6f\xcf\x9d\x8d\x36\xcd\xf0\xcd\xaf\xdb\x8a\x3d\x4d\x28\x52\xee\x5b\x9e\xeb\x88\xda\x82\x71\x40\x76\xe7\x1d\xca\xc5\xc3\x6a\xa0\x5e\x8a\x6c\xf1\xf7\xc9\x7f\xc4\xf2\xbf\x44\xb5\x45\x45\x2b\xb1\xe0\x40\x3b\x8b\xcf\xef\xe7\xda\xf0\x77\x15\x40\xef\x7a\xa9\xa8\x13\xdf\x57\xb2\x2d\xef\x93\xf7\x29\x39\xf9\xca\x32\xe2\xc4\xbb\xa2\x93\x49\x7b\x7a\x55\x6c\xc8\xb2\x57\x48\xdc\xc3\x79\xb9\xe7\x75\xbe\x21\xab\xe9\xcf\xf9\xcc\x81\xbb\x75\x0b\xf3\x21\x04\x93\x5a\xa9\x29\xf7\x23\xae\x50\x58\xce\xe9\xea\x4f\x11\x33\xdf\x50\x41\xf8\x0d\xc5\xef\xf2\xae\x66\x0c\x7b\xd7\x53\x2d\xc8\x47\xda\x5c\xdb\x7c\x35\xcc\x03\xd0\x3d\xb5\x91\xb9\xb7\x15\xb7\x5e\x98\x3b\x00\x57\xc3\x2a\x4d\x39\xd5\xa9\xa6\xca\xf5\xd2\x62\x37\xf7\xe3\x61\x64\x3a\xd5\x08\x28\x2d\x5a\x27\x39\xeb\x0e\xdd\xe5\x22\x0f\x46\x42\x67\x20\xfc\x4e\x34\xe7\x42\xfc\xd4\xa6\x97\x94\x15\xe9\x0a\x5b\xda\xc5\x56\x94\x85\xee\x06\xf1\xe3\x43\x4f\xa8\x76\xa6\x3f\xad\xa6\x78\x6b\x8a\x02\x65\xb8\x43\xbc\xc8\x50\xe2\x3d\x8c\x35\x8a\xb5\xf1\xb6\xe7\x2a\x44\x9f\xd7\xd6\xab\x0b\x4c\xae\xeb\xd6\xc2\x97\xf4\x7b\x9e\xa5\x34\x03\xf6\x1d\x67\x16\x81\x7c\xbc\x84\x1d\x02\x5b\xf1\x6f\x55\x8f\xf5\x14\x77\xcb\x23\xba\xbe\x5c\xaa\x41\x3f\xab\x00\x02\xef\xe2\xfc\x44\xcc\x7e\xd1\xd3\x14\xf8\x6d\xda\xf0\xd5\x49\x68\xbd\x45\xce\x6c\x29\x5b\xbb\xa9\x3a\xc2\x93\x22\xe7\x52\x1d\xec\x2d\xb3\xa8\xe1\xf7\x84\x52\x4d\xc1\x78\xc3\x3c\xcf\x96\x8b\x74\x38\xc2\x54\x60\xdf\x1d\x47\xc4\xcc\x37\x0a\xfd\x5d\x1d\x93\x91\x1f\xc6\x79\xa6\x32\x57\xc7\x54\xe6\xea\x98\x82\xa2\x4e\x92\x7e\x58\x8c\xa7\x1c\xf9\xd6\x4f\x4b\x07\x66\x38\x56\xba\x56\xec\xf3\x1a\x41\x96\x24\x79\x46\x69\x35\x14\x95\xbe\x4f\x13\x88\x63\x92\x73\xb6\x52\x6d\x7f\x44\x25\x5f\xfd\x49\xc7\xf9\x52\x17\x54\xbc\xdb\x26\x0a\xd6\x0d\xfc\x54\xb8\xef\x1c\x44\xd1\xc5\xcb\xe7\x55\xb6\x22\xad\x8c\x33\x27\x09\x44\xb5\x85\x5b\xb7\xf9\x66\x5d\xa9\xf0\x92\xd2\xc2\x94\x73\x6d\x7f\xa2\x58\x08\x6f\x97\xae\x8d\xe4\x7a\x5b\x5b\xfd\xfe\x6e\xdf\x8c\xfd\x98\x91\x33\x92\x66\x50\x29\x07\xdb\x92\x50\xf9\x53\xcb\xa9\xf1\xfb\x39\x17\xc3\xe1\xcb\xa1\x6c\xc9\xd7\x8a\x5c\x73\xd5\xf8\x51\x3e\x0a\xd9\xf7\x64\x55\x61\xd8\x1c\x91\x18\xde\x56\xf7\x78\xa6\x3b\x3b\xfb\x20\x81\xea\x58\x37\x0f\x49\x0d\x18\xc3\x77\x69\x1f\x21\x90\x06\x1d\x15\xe6\x1e\x18\x7b\x39\xa6\x69\x05\x09\x97\x95\x6a\xc1\x40\xc1\x00\xfb\x6b\xcf\xba\x6a\x5c\x3f\x8e\x7d\x8b\x57\x3d\xe6\x3d\xae\x5a\x0e\x72\x93\x2e\xfb\xf1\xa1\x8e\xa2\x68\xaa\xc3\xcf\xbe\xe2\xa0\x64\xf1\x8a\xc9\xf2\x70\x48\x3e\x3d\xd0\x25\x12\x97\x2a\xc8\x1f\x78\x74\xe0\x11\x80\xa7\x03\x0e\xde\xcd\x9a\xba\x8e\xe7\xb8\x5d\xf3\xd4\x8f\xb3\x41\x41\x02\x99\x2a\x0a\xff\x8e\xe2\xd3\xf8\x4e\x23\xbc\x70\x74\xdf\xfe\x88\x69\x11\x71\x72\x9e\xd6\xbc\x83\xa7\x41\x3f\xc2\x39\x16\x2a\xfd\x0d\x42\xce\xe7\x73\xd1\x14\x66\x44\x2a\xa8\x0d\xce\xd0\xd9\x6e\x91\x99\xdd\x35\xd6\xde\x6a\xa4\x90\x62\xef\x10\x97\xb0\x6e\x6e\x15\xb2\x69\x95\x75\x3c\xa1\xc8\xae\x37\x6b\xf9\xd8\x61\x01\x86\x6a\xe6\x2e\xa3\xf7\x45\x90\xf3\x43\x85\x0e\xe2\xae\x14\xa4\x86\x1e\x66\x1b\x08\x53\x7e\x9f\x96\x3d\x8c\xeb\x39\xc5\x8c\xdc\x0f\x87\xd8\xe7\x38\xd0\x91\xa3\x12\x92\x43\xfa\x36\x98\x1f\x27\x7c\xbc\x9a\xa4\x87\x7c\x82\x41\x4c\x39\xa0\x16\xda\xa4\xf0\xaa\xe7\x55\x9b\xcb\xdb\x36\x54\x5f\x4e\xc0\x15\x83\xba\x02\xf6\x1f\x28\x32\x61\xa4\xcf\xaa\x0a\xd6\xd9\x36\x7a\xc5\xd4\x50\x57\x5e\x35\xa4\xc8\x64\x9c\x52\xb0\xe9\x53\x0d\xe7\xf8\x99\xae\x59\xf1\xa3\x82\x83\xe8\xf9\x79\x1e\x15\x64\x63\xf9\xba\x61\xe4\xe7\x0e\x74\xf3\x34\xe9\xf7\x0d\x3e\x22\xf2\x1f\xce\x21\x3f\xa1\xb0\x10\x93\x34\xc9\x4d\x50\xb9\xbb\x4b\x33\x76\xad\x56\x93\x21\x1a\x3a\x4a\x7d\x9a\x49\x2b\xf8\x5f\x6c\xda\x2b\x1c\x4f\x8a\x28\x93\x8e\x49\x61\xda\x53\x44\x87\x27\x1b\x9e\xea\xec\x6c\x37\x48\x92\xb4\x4f\x81\x21\x8d\x06\x43\x08\x10\x93\x08\x9e\xe0\x2b\x0e\x8a\x94\xfa\x20\x8a\xf0\xa3\x68\x4d\x67\x3c\xb9\x33\x92\x6f\x94\xb0\x75\x9c\x85\x7d\x93\x9a\xfe\xee\x29\x2b\x75\xf8\xdf\x77\x81\x9f\xe0\x73\xd3\xb5\xe5\xfd\xd5\xc7\x09\x8f\xb4\xc5\x45\x47\x61\x2a\xa3\x6f\x46\x91\xe0\x6e\x83\x9a\xbc\xf2\x3c\x8a\x28\x0f\xc7\x7e\xce\xcc\x48\x8b\x35\xc4\xac\x14\x3e\x5c\x19\x65\x50\xc4\x7d\x52\x1e\x66\x30\x89\x8a\xea\xee\xe0\x2d\x70\x64\x5c\x02\x42\xdf\x62\x84\xaa\xe7\x97\xec\x24\x35\x49\x7c\xe0\x39\x95\xa2\xd3\xe4\x97\xb2\x74\x9d\xf2\x0a\x00\x1d\x65\xaa\x92\xb2\xa6\xd6\xe3\x72\x2e\xc3\xd4\x8f\x8b\xc8\x4f\x35\xbe\xb2\xde\x0a\xd7\x42\x46\xd1\x9d\xa4\x66\x1c\x16\x42\x75\xa8\x88\x8b\x85\xda\xee\x78\x0b\x18\xee\xc5\xee\xc8\x8f\x06\xbb\x2a\x3f\xcb\xd1\x62\xce\x58\x60\x51\xc7\xea\x00\x6c\x30\x95\x25\x12\xd3\x68\x6c\x83\x25\xba\x59\xd7\x16\xf2\x81\xc4\xc5\xfc\x9c\x54\x04\x49\x27\xbf\x90\x46\x7e\x94\x50\xe3\x5f\xc7\x36\xad\xbd\xa3\x6d\xf4\x3b\xb6\x14\x9c\x8d\x8c\xcf\x15\xde\x9a\x2a\x18\xdf\x78\x4f\xca\xd9\x99\x0e\xfd\x38\x7c\x95\x9b\x60\x15\x23\xa5\x00\x4e\xf8\xce\xab\x25\x01\x75\xf3\x83\x9c\xc2\xab\x61\x3e\x1a\x25\x51\x9f\x54\x75\x2b\xdb\x22\x75\x5f\x97\x05\x80\xfc\x0c\x3c\xfe\x1f\x2a\x86\xa4\xcf\x89\x57\x5b\x20\xf2\x6d\x04\xad\xc1\x28\x34\x03\x7a\x6b\x49\xbf\x74\x2c\x43\xcb\xc7\x0d\x61\xe5\x83\x33\x73\xdd\x22\x46\xf6\x2e\xec\xfb\x22\xc5\x29\x94\xd6\xb4\x50\x05\x0c\xe9\xfc\x82\xd4\x64\x79\x1a\x06\x79\xa6\xdb\x85\x68\x5a\xa5\x75\xe8\x8b\x00\xb8\x91\x49\x62\x3f\xd5\x90\xd3\x4d\xa5\x57\xb0\xa9\x85\x76\x6a\xe9\x45\x7f\xec\xa7\x7e\xdf\xa4\xa1\xe9\x54\xab\x4a\x20\xf7\x35\x30\xfe\x63\xf5\xf6\x36\x93\xed\xad\xc6\x4d\xa0\x1f\xb4\xb3\x44\x4a\x88\x4c\x1b\x42\x80\xc3\x4a\x78\xe3\x37\x4a\x17\x1a\x1c\x46\xcb\x1b\x72\xc0\xa0\x0a\x91\x40\x9e\x46\x85\xbf\x4a\x51\xca\x4c\x92\x49\xb5\xbf\xf6\xa8\xfd\x77\x8f\x3e\x87\xa3\xee\xa8\x76\xa5\x2f\xc0\xba\x0a\x4d\xa5\x4b\x4d\x1c\xa5\xc3\x91\xff\xbf\x86\xbd\x6f\x34\x7a\x71\xf7\x2d\x54\x06\x3d\x30\x99\xa3\x95\x40\xe8\x8c\x76\x6a\xdb\xd2\x67\xa9\x5d\x3e\x57\x14\x0a\xc3\xd0\x8f\xf3\x69\xc5\xe7\xf2\x79\xa9\x0c\x2d\x08\x6a\x25\xfa\x51\x46\xf7\xbe\xeb\x6e\x2d\xf2\x51\x92\x12\xf7\x07\xca\xbb\x68\x59\x62\xf6\x3d\x61\x24\x52\x90\xf9\x2d\x15\xef\xfa\x51\xe4\xaf\xa9\xa4\xfc\x31\x9d\x94\x3f\xd6\xc2\x76\xfd\x62\x37\x1b\x25\x38\x4a\xd5\x84\x0a\x4e\xa7\x79\x2c\xce\xce\x76\xcd\xcb\x04\x6f\x00\xe6\x04\xc9\x8a\x3b\xf5\x5e\xa4\xea\x0b\x04\xd3\xba\xfd\x27\x9f\xe9\x66\x63\x63\x3b\x82\x45\x66\x5e\xa5\x55\xcf\xd9\xaa\x44\x36\xf6\xa3\x48\xf0\x34\xad\xd2\xbc\x4f\x84\xba\x92\x37\x36\xb1\x90\x20\xc8\x4a\xef\xd4\x85\xbb\x05\x39\x7b\x51\x35\x48\xfb\xd1\x84\xeb\x74\x2c\x29\xe4\xa9\x46\xb1\x51\xe9\xb0\x52\x67\xac\x03\x63\xa2\xe4\x5b\x85\xc0\x24\xdb\x54\x45\x5a\x40\xd0\x24\x67\xc2\x6f\xcd\x62\x78\x8a\x3d\xea\x7c\x3d\xbc\xf6\x63\x40\x8f\x24\xdd\x57\x2d\x5d\x49\x03\xd6\xb2\xd2\xc3\xea\x9d\x33\xac\x51\xab\xd8\x66\xdf\x1f\xe9\x3f\x1c\xc4\xeb\xaa\x8a\x9b\x1a\x7f\xe8\xc7\xd3\x1d\xcb\xe9\xfd\x99\x4a\x2e\xde\x52\x08\x0f\x8e\xef\x30\x97\x5b\x2a\xc7\x90\x8d\x93\x9c\x72\x0c\xd5\x81\x6d\xb3\xdb\x8b\x4b\xf6\xc6\x73\x01\x70\x10\xc6\x41\x18\xc7\x7e\x1e\x4e\x3b\x0e\xe7\x53\x4a\x31\xfb\xb8\x62\x29\x00\xd2\x5a\x80\x0b\xb6\xf6\x1a\x84\x26\xce\xc3\x2c\x67\x3c\x8e\x10\x26\xd2\x68\x0a\x3d\xb8\xea\x21\xbe\xe3\xd5\x7a\x1e\xc3\xbc\xb0\xc5\x3a\xbc\x24\x57\x95\xf9\xc6\x53\xfc\xe4\xa3\xd4\xac\xf6\x6b\x15\xde\x52\xd9\x54\x05\xa1\xf2\xc7\x49\x11\xe7\xd9\x5e\xca\x81\xc1\x5d\x60\x3d\x07\x54\xb1\x6e\xd2\xd1\x8c\x34\x16\x53\x2b\xf1\x5f\x61\x50\xad\x14\x8e\xad\xef\xdd\x54\x88\xf3\x75\x4f\x29\x4e\x34\x99\x1e\x9e\xe9\x86\x39\x94\xfa\x16\x2d\x74\xd2\x61\xdd\x1d\x72\x32\x35\x51\x11\xe4\x7e\x9c\xef\x71\x78\x90\x2b\x9a\x5c\xe2\x7a\xa9\xf8\x93\x81\xcb\xb7\xd0\x67\x87\xfb\xfd\x5c\xf1\xfc\xe1\x5c\xa1\x14\xcc\xe5\xaf\xf6\x9c\x0f\x0c\xe6\x3b\x93\xee\x52\x28\x8f\x52\x11\xc9\x7d\xca\xa7\xb9\xb0\xfe\x37\x4a\xe3\xc8\xfe\x4d\x37\x70\xb7\x72\xc4\xe5\xe9\x1a\xe8\x18\xa4\xc5\xcb\xad\x20\x94\xbb\x59\x4a\x44\x05\x89\x7e\xba\x1c\xe6\xa9\x3f\x34\x29\xd2\x23\x4a\x11\x7f\xd1\x2a\xe2\x6f\xf7\x73\xf6\x2d\x74\x73\x13\x8c\x88\xa8\x3b\x42\x25\x8d\xe5\x72\x3d\xd5\x37\x7c\x41\xa1\x6a\xb2\xa2\xf2\xe6\x80\xb5\x10\x55\x2c\x85\x3e\x3c\xd3\x46\x48\x13\x66\x59\x21\x46\x14\x4b\x01\x3c\x26\xf2\x42\xaa\xd3\xf1\xc7\x8a\xd4\x24\x4a\x56\x44\xcc\x91\x1b\xc8\x4a\xe5\x4b\x7c\xa2\xaa\x94\x7e\x9e\xb3\x44\x84\x8d\xd1\xdf\xc3\x64\xf3\x4d\x83\x64\xb3\x0a\x79\xc2\x8e\xcb\xf4\x9c\xab\x63\x89\xdb\x30\x37\x03\x3f\x8c\x64\x67\x21\x58\xbd\xaf\xdb\x64\xef\xb7\x29\x8a\xe5\x23\x90\xa8\x22\x79\x86\x9c\xe4\x5d\xd5\x05\x72\xd7\x95\xb6\xa3\x3c\x19\x9a\xca\xd0\xec\x21\x97\xfd\x22\xad\x4f\x4a\x4e\xdc\xfe\xb9\x9e\x53\xb2\x7a\x4f\xeb\xeb\x40\xb1\x1b\x31\xe7\x56\x59\x23\xb7\xa1\x94\x09\x6c\xf4\x09\x9d\xa1\x9b\x18\x86\x2d\x3f\x4c\xe3\xa3\x45\x01\x05\x79\x43\x2f\x85\x7c\xf0\x3d\xa4\xbd\x11\x6d\x6e\x52\x93\x1f\x5f\x2b\xdb\x75\x0b\xb6\x09\xe9\x40\xce\x74\x88\x4c\x73\x35\x21\x92\x69\x50\xaa\x6a\x3b\x5d\xbb\xfa\x83\xbb\x7a\x6a\x61\xdc\x6b\xab\x08\xf6\xc3\x8c\x70\x3b\x35\x8a\x9d\xe3\x14\xd3\xf0\x75\x29\x38\x91\x2c\xec\x2b\x45\xc2\x4f\x4b\x45\x98\xff\x69\x1b\xb3\xde\x80\xda\x0f\x0e\xce\x70\x8c\xfa\x09\x99\x6a\xbe\x6e\x13\x01\x5c\x31\x79\x42\x8e\xa7\x28\x53\x75\x2c\x2b\x2a\x43\xf8\x64\x7c\xb6\x25\xb5\x5e\x58\xec\x3e\x83\xd6\x18\x40\x3b\x20\xc8\x8b\xc8\x66\xdd\xab\x35\x95\xd0\x4b\xc2\x55\x87\x1c\x9f\x84\x97\x8e\xbd\x1c\x09\x0b\x0b\x06\x72\xac\x86\xb7\x70\xa2\x4b\x3f\x1f\xcd\x31\x2a\x98\x8f\x51\x7c\x87\x05\x7e\x5d\xf5\xec\x0c\x92\xb4\x4f\x49\x16\x2c\xa9\x1b\x68\x0b\x15\xc1\x05\xfa\x02\xdb\xcb\x6f\x99\x35\x38\x47\x8b\xba\xd2\x54\x4f\x79\x68\xcd\x2a\x65\xe5\x78\xad\x86\x71\x9f\x60\xe2\x62\xb4\xab\x97\x67\xc8\x0e\xd6\xad\x25\xef\xb5\x89\xe5\x26\xf2\xf1\xc0\xf3\xdd\x60\x44\xf2\x4e\xae\xd1\x60\x4b\x29\xd6\x6d\x29\x6e\xe6\x41\x98\x8d\xa6\x14\xfb\xc4\x67\x65\x33\x23\x2d\x2a\x4a\x35\x5e\xed\x68\xb2\xdb\xe1\x45\xd9\x4f\x17\xa0\x87\x6a\xa4\xfb\x08\x43\x23\x78\x10\xed\xff\xab\x56\xa2\x7f\x56\xfb\xee\x84\x99\xc9\xb0\x76\x2e\xc1\xc4\xf2\x4d\x0b\x9c\x6c\x91\x4d\xce\xb4\xe2\x94\x94\x14\xbf\x06\xf3\x23\xd4\xdf\xd4\x6c\x20\x47\x1b\xa7\x68\xf5\x75\xfd\xb0\xa3\x97\x4d\x15\xd9\x48\x72\xd7\x21\x61\xcd\x2b\x18\xe3\x2f\xe1\x87\x60\x96\xef\x12\x86\x91\x85\xa8\xc9\x76\x23\x36\xb9\x84\xe4\xa0\x40\xdd\x6c\x48\xfd\xab\x4f\xae\x93\x0a\x85\x10\x61\xd2\x58\x61\x5b\x71\xe7\x8a\x15\x8f\xb6\x44\x73\xac\xd0\x8e\x65\x74\xbd\x74\x9b\xf2\xb0\x92\xc5\x7a\x68\xdd\xe1\x4d\xf8\x8c\x22\x8b\x92\xfc\xb5\x9e\xab\xa6\x06\x45\xf6\x80\x6b\x7a\xfb\x12\x0f\x99\xa2\x42\x5b\x14\xc9\x7b\x8c\x19\xd6\xf4\x55\x4f\x75\x74\xde\x52\xad\xe8\x9c\x6b\xc1\xc6\x06\x46\x5c\xa5\xfc\xb6\x76\xaf\x37\x3d\x96\x41\xc4\x12\x8b\xc2\x0e\xa7\x28\x23\xff\xc7\xd2\xd9\x8c\x1b\x34\x96\x48\x6f\x7e\xde\xea\x4a\x27\x49\xca\x07\x33\x72\x0e\x40\xea\xf2\x75\x23\xe2\xa0\x7a\x5b\xd0\x97\xe6\x36\xf9\x41\xfd\xeb\xb5\x02\xff\xc4\xa4\x4f\x38\xf1\x9a\x9b\x68\x65\x87\xc7\x79\xb5\x54\x74\x41\x9b\x18\x1b\x1c\x2e\x87\x15\x3d\xd5\x4f\x60\x08\x80\x85\xb8\xe8\x29\x85\x0c\x4c\x0e\x3c\xa0\x3f\x28\x5d\xce\x94\x44\x27\x64\x4b\xc1\x3f\xdb\x62\xa9\x6e\x78\xb7\x1f\x92\xcd\xb3\x8a\xdc\x07\x45\xfd\xf7\xc3\x52\x53\x54\x40\xa3\xdd\xf5\xe0\xcf\xcf\xef\xb7\x6a\x74\x64\x66\xad\x07\x67\x25\xfc\x4e\xb5\xe4\x3a\x16\xa0\xdd\x44\xd4\xc7\x08\x4f\x90\x35\x61\xca\x66\x8a\x46\x98\x0c\x60\x9b\x28\x70\x02\x61\x1f\x4b\x63\xe0\x18\xc3\x3a\xa8\xd0\xa0\xbc\x04\x4e\x6d\xf8\x9c\x5b\x34\x0c\x58\xed\x17\xbd\x6a\xdc\x81\xc1\x3d\xa9\x24\xd0\xa1\x98\x81\x50\xf3\x56\x5d\xee\x3e\x5e\xfb\xff\xd1\x4f\x5a\xc9\x59\x2b\xd3\xb7\x89\x63\x1a\xdf\x70\x8a\xc6\x0c\x89\xb5\x8b\x58\xba\x58\xe0\xac\xb4\x25\xdf\x4d\x51\x17\x39\xa5\xab\x8f\x11\xdf\x09\x26\xf1\x32\x92\x89\x48\x8c\xbf\xcb\x63\x8e\xe0\x61\xcf\x3a\x32\x6d\x8c\x28\x53\xbd\x4e\x3b\x88\x5c\x1d\xbb\x9d\xf9\x36\x30\x81\x3f\x55\xf8\xd2\x8f\x31\x4b\xfc\xcd\x98\x72\xc4\x0c\x38\x0c\x31\x97\x2c\xfe\x89\x94\xe7\x27\xde\xd4\x0b\x4b\x33\x9a\xc6\xe7\x39\x8b\x72\xaa\xd6\x1a\x6b\xcd\xd2\x8a\xc1\x19\xf0\x7d\x2c\x5b\xa4\x37\xef\xd6\x42\x4d\xd3\x37\x24\x05\x80\x03\xe1\x6c\xe9\xa8\xf4\x70\xec\x00\x0e\x80\x86\x49\x7c\x1e\x89\x14\xec\x61\x2c\x6e\x04\x29\xef\xa8\x22\x66\xe0\x47\xe1\x20\x49\xe3\xd0\xdf\xad\x74\xc7\x59\x1d\x1b\x29\x8c\x9b\x9a\x72\xe3\xae\xa2\x53\x13\x39\x02\xdb\x55\x6b\xb5\xca\x1c\xfe\x3d\x48\xa2\x24\x0e\xab\x58\xdf\x32\x9a\xec\xed\x39\x88\xe8\xa3\xeb\xca\x1f\xdc\x50\x9c\xc6\xcb\x45\x1a\x73\x21\x07\xc3\xf7\x1d\x95\xd1\xf9\x8e\x75\x98\x8a\xcc\x47\x68\x05\x13\x00\x09\x5f\xbe\x6e\x64\x8b\x96\x66\x2a\x8b\x31\x89\xcc\x2b\xd6\xa7\x45\x54\x73\x43\x29\x94\x69\x8a\xda\x7c\x94\x26\xab\xd3\x0a\x0e\xbd\xa1\x4a\xdf\x98\x01\x84\x26\x53\x24\x54\x84\x4a\xed\x69\x9b\xeb\x88\xc2\x7c\x94\xe4\x69\x38\xc9\x25\x35\xd2\xa6\xc7\xd7\x6d\x9a\x4d\x8b\xf9\x0a\xe3\x21\x9b\x4f\x6c\x08\xd0\x13\xf2\x75\x6d\x47\x8f\x27\xa0\x31\x87\xb3\x08\xd9\x5f\x20\x36\x5e\x43\x7c\x2a\x6d\x46\x6e\x88\x27\x26\xcd\x92\x78\xda\xcd\x1a\x08\x13\xf9\xba\xec\xfc\xa3\x7f\x2c\x35\x25\x32\xf3\x52\x5f\x72\x5f\xb0\x12\x9a\x38\xf6\x29\x55\x80\x85\xf5\x1a\x2d\x38\xbe\xf6\x14\xcc\xfe\x24\xf3\xf3\x08\x0d\x9f\x42\xb4\x87\x11\x25\x46\x90\x45\xc1\x13\x9f\xa2\xaf\xe1\x6b\xcd\x72\x94\xaf\x3d\x44\xef\x02\x2c\xc3\x7d\xec\x54\x84\x61\x8f\x60\x21\xa1\x56\x77\x4c\x47\x5a\xc7\xe9\xc8\xc3\xa6\xdf\x8d\x82\x08\x7b\x47\x4a\x4f\xf1\x2a\x0e\x02\xa4\x37\xef\x2b\x46\x73\x04\x32\x70\xfb\x41\xff\x86\x0d\xdc\xde\x9f\x8d\x0a\x6a\xf5\x42\x53\x5a\xae\x06\x6a\x3d\xb0\xfc\x5c\x26\xc5\x2b\x4c\x35\xbe\xe5\x1b\x73\x60\xb5\x0c\x27\x08\x69\x0f\xce\xd8\x9c\x96\xeb\xff\x3b\xd3\x86\xa5\x4b\x6d\xd7\xa3\xa8\xa2\x56\x1f\xe0\xeb\x9a\x25\x19\x16\x31\x56\x3f\x16\xf2\x4d\xc5\xbd\x74\xb3\x11\x63\xcf\x1d\xe8\x06\x49\xf5\x40\x7d\x13\x07\x08\x9c\x31\x96\x58\x63\x7c\x6d\xf3\x3f\x91\x19\xfa\x51\xf8\xaa\x4d\xc7\xc2\x12\xe1\x27\xe0\x24\x5f\xab\xd5\x41\x9d\x25\x72\xb1\x9d\x92\xc5\xff\x11\x66\x12\x4d\x19\x37\xe8\xd0\xb1\xd0\xaa\x6a\x25\x20\xaf\x7c\xb5\x74\x74\xd5\x3f\xa2\x6a\x1e\xff\x11\x6d\x57\xfe\xff\xaa\x5d\x2a\x27\xa1\x07\x36\x2f\x52\x34\x77\xfe\xfd\x31\xc5\xc3\x55\xc4\x79\xba\x96\x85\x7d\xa3\x40\x1b\x57\x14\x68\xe3\x4a\xe9\x28\x56\x06\x61\x4a\xac\xcb\xb6\x2d\xa9\x74\xed\x32\x97\x3d\x1c\x3e\x42\x02\x41\x19\x38\x29\x62\xb8\x93\xe8\xa7\x6d\x78\xc1\xd4\x10\x49\x45\x1d\x68\xcf\x30\x40\xbe\x51\xdd\x16\x41\xe2\xe7\x0c\xb9\xc0\xf7\x23\x29\xc9\xd7\xaa\x44\x90\x17\x26\xeb\xfb\x6b\x7b\x55\xa3\xcc\x0d\xc5\x90\xd3\x81\xa7\x23\xb4\x73\xaa\xc1\xeb\xcf\x55\x91\xea\x4f\xb0\x71\xa4\x1c\x4c\x3b\x92\x6f\x3c\xa5\x45\x72\xd2\xe6\xb9\x4c\x3c\x0c\x63\x63\x52\x71\xf2\x10\x76\x5c\xf3\x54\xa6\xed\x9a\x9a\xaa\x22\x8e\x4d\xca\x89\x94\x17\x6d\x46\x80\xfc\x05\xbe\xb1\x55\xac\x89\x1f\xa6\xb4\x61\xe0\xae\x7c\xa0\x5a\x20\x3f\x50\x28\xd2\x28\xcc\x1f\xec\x58\x8d\x8c\xf7\x54\x4f\xf8\x1f\x78\x2a\x5e\x3c\x55\xba\x9e\xf6\xdb\x70\xfa\x01\xdb\x38\x4d\xd6\x01\xee\xd1\xbf\x83\x83\x82\xc3\x61\x2f\x69\x68\xd5\x28\x8b\x01\x3b\xd8\xd2\xa7\xe9\xd5\xf2\x61\x3b\x03\xe3\x10\x62\x26\x38\x40\xb7\x14\xf2\x60\xba\xa7\x4e\xe3\x93\xdb\x99\x47\x16\x97\x16\xbb\x2f\xbd\xf4\xb0\x06\x4a\x56\x53\x0c\xa7\x9c\xf3\x19\xd2\x4b\xae\xba\xf6\x99\xdf\x06\xc9\xb7\x87\xf1\x0b\xf0\x70\x3f\xf6\xdc\x19\xb3\xb7\xe7\xca\x25\x7b\x20\x66\x86\x1f\x79\x60\xbd\x72\x21\x98\xbd\x81\x00\x7e\x78\xee\x8b\x94\xca\xc0\x72\x38\xea\x88\x4f\x89\x42\x19\xb1\x2e\x16\x17\xe0\x9f\x7c\xad\x15\x74\x9e\x0d\x9e\x9d\x52\xec\x6b\xd7\xe9\xe8\x11\x08\x71\xf5\x30\x30\x22\x3b\x7b\x8f\x5a\x23\xb3\x62\x52\x7f\x88\x16\x05\xec\x80\x4b\xaa\x35\xed\x3d\x4d\x9c\x79\xb2\xd9\x70\x3e\x57\x79\x3d\x36\x19\x26\x0e\x99\x52\x43\x3b\xa2\x64\x30\x27\xc5\x64\xc2\xaa\xb2\x88\xf8\x3f\xc2\xd4\xf2\x4d\xe3\xf8\x26\x30\x52\x90\xc4\x81\x89\xa9\x0d\x89\x7f\x45\xfa\xf5\xe8\x57\xf8\x46\x27\xb3\x69\x91\x43\x71\x58\xf4\xd1\xc9\x63\x10\x11\x75\x45\xa2\xb9\xa9\xfc\xed\xcf\x4b\xa7\x56\xf6\x39\xb9\x78\x48\x29\xa1\x4c\x6e\x2b\xb0\xb3\xb3\xf2\xff\xd5\x46\x08\x46\xa0\x8f\x95\xfa\x8f\x26\x18\xab\xb9\xee\x61\x94\xef\xa9\x7e\x92\x23\x75\xcf\x81\x71\x58\x5b\x02\x1b\xe3\x66\xa9\x3a\x86\x6e\x2a\x60\xdf\xbf\x87\x8d\xc0\x47\x38\x55\x89\x38\xf5\xca\x17\x96\xae\x27\xc5\x72\xc4\x0a\xe8\xf8\x0e\xa6\x17\xe4\x1b\x55\xc6\x1b\x25\x63\x93\x4d\xd5\x9e\xcf\x06\xa8\x1f\x6b\x21\x8c\xa3\xaa\xad\xb0\x6f\x06\x7e\x11\xe5\xd3\x0a\x63\xe2\x39\x42\xed\xab\xa5\x3b\x43\xae\x7a\x8a\x3a\xff\x8c\x6a\xe0\x98\xa4\x49\xbf\x08\xf2\x0c\x12\xdc\x42\xa1\x5f\x7d\xb0\xa6\x3f\x02\x87\xec\xbc\xa7\x41\xb0\xc7\x68\x08\x71\x7d\x03\x61\x05\x7f\xde\x53\xc7\x07\x67\xc6\x30\x71\xbf\x87\xc0\x40\x5e\x91\x46\x5a\xd2\xdb\xaa\x21\x67\x9d\xd6\x06\xf6\xce\x34\x10\x62\x92\xa4\x73\x35\xf0\x63\x08\x9e\x24\x17\xe6\x4e\x84\x20\x4a\x32\x13\xad\xed\x56\x01\x37\x3b\xff\xb6\xfc\x63\x65\x4b\x6e\xd2\xd9\x0a\x70\x21\x5c\x7f\x86\x33\xd5\xf2\x6c\x96\x32\x38\x18\x85\xaf\x26\x61\x5f\xc9\x30\x6d\x28\x19\xa6\x8d\xf2\x2b\xf2\x87\x45\x9a\x9a\x49\x1e\xe6\x50\xf2\x23\xf3\x01\xeb\xf5\x43\x7a\x35\xbe\x56\x85\xf1\xb1\x49\x83\x91\x1f\xf7\xc3\x8c\x9b\x0f\x24\xbe\x53\xbc\x6a\xe7\x1b\xd4\x60\x04\xa4\xcd\xfd\xe5\x65\xc9\xd1\x23\xb5\xc8\xcd\xfb\x7c\xd3\xc6\xa4\x63\xe2\x61\x11\x0d\xf0\xa9\xe7\x78\x27\x9f\xd5\xdb\xfa\xac\xb7\x1d\x61\x20\x6b\x3a\x5b\xcb\x72\x33\x5e\xad\x9c\x09\x85\x53\x3e\xef\x39\x21\xe7\xf3\x6d\x49\xdb\x89\xcf\x94\x38\xc2\x2f\x51\x8d\xa1\x70\x88\xb8\xc3\x64\x35\x8c\x49\x54\x4c\xf1\x4b\x88\xdc\xfc\x74\x4f\xc5\x48\xff\x9a\x26\xcb\x2a\x89\x55\xef\x2e\xac\x12\x0e\x56\x7a\x42\x8b\xe7\x4c\xaf\x3b\xd2\x71\x30\xdc\x08\x24\xc0\x19\x13\xd3\x37\x7b\xab\xef\xe5\x2c\xa2\xa7\x24\x58\x18\xfe\x8c\x99\x06\x2d\xba\xe0\xf4\xe9\x19\x11\x05\x33\x43\xa1\x08\xd7\xba\xec\x13\x32\x1a\x92\x31\x14\x3f\xd3\x8c\x97\xcd\xab\xaf\x46\x36\x90\x03\xa0\xfc\x77\x68\x4d\xf1\xb5\xf2\x2d\x53\x13\x98\x70\xc5\x5f\x8e\xcc\x74\xed\x57\xd4\x6e\xdb\xd1\x53\xba\x5f\x7f\x51\x3a\xe1\xd9\x0b\xd6\x75\x09\x22\xea\x42\xaa\xcb\xd2\xc0\xc9\x13\xe2\xa3\x27\x54\x22\xd2\x04\x05\x29\xb7\x3c\x4c\x5f\x6c\xb5\x6f\x2a\x6b\x21\x35\xca\xa9\x9a\x1c\xef\xec\x1c\x63\x82\xe0\x60\x22\xbf\x7b\xbb\x54\x75\xf4\xfb\x84\x7d\x61\x7a\xc0\xd2\x71\x37\xff\x31\x2a\xba\x48\x81\x7c\x44\x0f\xcf\x5b\x5d\xf5\x31\x93\xd0\xa6\xab\x95\x6e\x3f\xb8\x64\x95\x0a\x75\xff\x5a\x8d\xc9\x4b\xd5\xd3\xde\x53\xa8\xb3\x71\xb5\xfb\x42\x3f\xa2\x76\x79\xfc\xeb\x57\x7a\xd5\x73\x09\xf0\x5b\xb1\x82\x3b\x6a\xca\x67\xbe\x8c\x68\x0d\xd6\xa3\x95\x48\x70\x92\x98\x9c\x3b\x3c\xa5\xdc\x5c\x33\x44\x8f\xa9\xb8\x21\x8c\x2d\x5e\x55\xc8\x7d\x68\x96\xb1\x16\x6f\x28\x8a\xc0\x3f\xa4\x25\xce\xc9\x7a\x58\x41\xc9\xdc\x2b\xbe\x4e\x63\xe2\x07\xdd\x7e\xbb\xe5\xb9\x38\xff\x36\xbe\x58\x4a\x66\xf4\x44\x2e\x3c\x5b\xb4\xf4\x26\x9d\xf9\xf9\xad\xd3\x58\x5d\x58\xc4\x48\xc5\x08\x25\x56\x0d\x92\x4a\xcf\x8d\xe8\xfc\x33\x9b\xd7\x48\xf3\xa0\xe3\x40\x9d\x7f\x51\x63\x44\x6b\x2d\xef\x51\xe8\xc4\xdd\x97\xf0\xbf\x2f\xa8\xbc\xf3\x05\x85\xd1\x89\x8c\x2f\x35\x3d\x45\x11\x53\x7d\x8e\x6f\x5a\xac\xde\xfe\x6e\x30\x32\xfe\x44\x9a\x82\x6d\x9f\x4f\x75\x24\xf1\x4d\x23\x70\x99\x9d\xed\x8e\xfd\xb8\xef\xe7\x49\xba\x46\x40\x76\x18\x55\xb0\x29\x09\x98\x51\xbb\x55\x5f\x52\xa5\x7d\x63\xf2\x69\x05\xa9\x39\xae\x73\xc0\xc7\x75\xc1\xfd\x18\x2c\x0d\xdf\x34\x52\x3e\xb2\xa8\xfd\x7e\xdf\xf4\x77\xd1\x9f\xa2\xb4\xcf\x8d\x93\xd8\x4a\x17\xb5\x80\x2f\x70\xba\x56\x28\xd9\x86\x4e\xef\xaa\xcc\x47\x12\x04\x45\x0a\xa7\xc3\xaa\x43\xda\x94\xce\x55\x75\x02\xfe\xb4\xa5\x9e\xd4\x1d\x27\xb1\x59\x53\xac\xb3\x1f\xe8\x06\xde\x0f\x54\x40\x19\x85\x59\xbe\xa7\x1a\x3a\xe9\xec\x50\x02\x82\x6f\xa8\x33\xf7\x0d\x2c\x65\x39\xeb\xaa\x9f\xb7\x74\xe9\xee\xff\x23\x0a\x91\x76\x80\x16\xb2\xdf\x55\x9f\x85\x21\xab\x5f\x61\xca\x40\xc5\x06\x76\x4e\xf1\x6f\xaf\x11\x8b\x64\xdf\x5f\x7b\xb4\x7a\x0a\x2c\x9c\xdb\x8a\x7a\xef\x82\x26\xa3\x44\xbb\x09\xdc\x29\x04\x0b\x5c\xe6\xc1\xdc\xe1\xd3\x9d\x1e\x85\x1a\x38\x32\x2e\xe3\xc8\xc0\x66\xdf\xd1\x73\x02\x54\x9c\x9c\x16\xe0\x68\xc7\xf2\x2d\xde\xc4\x6e\xc3\x8f\xec\x5c\xa7\xf1\x80\x83\xb5\x13\xf2\xb4\xc8\x55\x9f\x85\x8f\xca\x37\xca\x8b\x7c\x39\x09\x0e\x01\x79\xc0\xb0\x4c\x7a\x71\x81\x68\x2a\x0d\x8d\x95\x24\xec\x4b\x5b\x1d\xe2\xe4\x77\xe8\x4f\xf9\x5a\x6d\xb4\x71\x18\x87\xe3\x62\x8c\xcc\x96\x54\xaa\xaa\x57\x91\x0a\x96\x66\x31\x22\x19\xe1\x69\x97\xc7\xd5\x84\x60\xe7\x14\x55\xdb\x31\xce\x23\xf0\x9d\x0a\x54\x4c\x9c\x87\xa9\xd1\xd9\xca\x77\x68\x51\x22\x77\x02\xdc\x17\xc3\xf7\x34\xe4\xe1\x56\x63\x25\x3c\xfd\x74\xe5\x19\xe5\x05\x23\x95\xe1\x71\x21\x49\xc1\xd7\x8d\x45\xfd\x0b\xdd\x24\x0a\x57\x0c\xc2\x6f\x24\xa5\xff\x48\xf7\xd0\xfd\x51\x8d\x0d\x22\xcc\xcd\x1e\xb8\xc3\x8c\x5f\x57\x26\x01\x3a\x5b\x30\x74\x9d\x75\x87\xe8\xf8\x2d\x1a\x39\xb8\x0a\xc7\x3d\xc5\xa1\xfd\x51\xa9\x38\x50\xef\xb4\xa8\x24\x74\x4d\x14\x0e\xc3\xe5\x08\xdd\x96\x22\x73\xe8\xfc\x84\x2b\x0d\xb4\xf6\xbe\x85\x6e\x9c\xc4\x83\x90\x09\xe6\xbf\x20\x05\xdd\x8a\xd0\x2b\x52\x33\xed\x9a\x0f\xef\x2b\xec\xe3\x55\x25\xa4\xfd\x16\xec\x0d\x02\xd4\x0b\x95\x0f\x27\xed\x1a\x69\xf6\x40\x75\xc2\x63\x85\xbc\xef\xa9\xfe\x1f\xcf\xa1\x62\xb8\xde\x24\xec\x74\xb4\xd3\x44\x5f\x55\x1d\x00\x27\xb5\xe7\xf0\x3e\x5c\x54\xbb\x0c\x6d\xeb\xc5\xa6\xfa\x79\x3f\x24\xf8\xf8\x73\x4e\x25\xdf\xe2\xa9\x2e\x61\xaf\x0a\xb5\xa5\x2a\xc5\x5c\xf2\x54\x45\xf4\x27\x78\x00\xe9\x61\xdf\xee\xcd\x1e\x9c\xe9\xfa\xb1\x59\x25\xa6\x3d\xf1\xd2\x1c\xb3\xcb\x7d\x4f\x51\xaf\x9e\x85\x4b\x83\x6a\x11\xba\x83\x61\xe4\x3f\x6e\xa5\xf9\x1d\xfb\xe9\x21\x93\x33\xa7\x00\x6c\xef\x69\x2e\x4f\xc0\x94\xf3\x97\x23\x78\xb9\xaa\x9b\x48\xfe\x83\x25\x33\xf4\x63\x3f\x4a\xd0\x49\xaa\xfb\xea\x04\x6c\x5f\xad\x40\x14\xf7\x7f\xd2\x86\xf3\x48\xcd\xc0\xa4\xa9\x35\xa0\xd8\xa1\x88\x96\xf9\xba\xad\xe0\xd9\xcd\x4c\x14\xd1\xf9\x08\xa3\x74\xb1\x54\x2d\x01\xf7\xc8\xf7\x90\xce\xc0\x1a\x8b\xfa\x58\x7a\x92\x6c\x08\xe2\x5c\x84\x26\x8a\x61\xee\x40\x77\xec\x0f\xb9\xfb\x03\xc0\xbf\x4f\x71\xea\x60\x7a\xaf\x29\xce\xa6\x0d\xef\x29\x05\x62\x8a\x87\x59\xee\x13\xd9\xff\x2e\x87\x79\x7b\xb3\x74\x15\xaf\x6f\x97\x2a\x73\x02\xa4\x24\x56\x26\xb2\xaf\xfc\x47\xaa\x27\x69\x5c\x85\x41\x29\x83\x66\x9f\x73\xe9\xb6\xf9\x79\xae\xba\x7d\x5f\x53\x25\x9f\x6f\xbc\x4b\x35\xdd\x51\x38\x40\x46\xd6\xc6\x31\xd5\x27\xf8\x66\x7b\xc3\xee\xbe\x85\xee\xd2\xe2\xa3\x2e\x45\x7c\xd9\x53\x6a\x3c\x4c\x5d\x64\x0b\x8e\x4e\x6d\xe0\x34\xc7\xec\x78\x8e\x13\x28\x2c\x32\x85\x2b\x36\x00\xfe\x05\xed\xea\xdc\xd1\x4a\x0b\x15\xdd\x37\xeb\x9e\xa2\xc7\xdb\x54\x35\x8d\x3b\xa5\x12\xd8\x67\x69\x3e\x38\x41\xdf\xa6\x54\x0d\x36\xc0\x67\xa5\x4a\x0c\xbc\xdf\xc2\x10\xb8\xd8\x9d\x14\xc0\x03\x73\xb5\x51\xf7\x11\x7f\xd2\xc6\x70\x1a\x25\xc3\xa4\x46\x9f\xfd\x89\xf2\x8d\x3f\x51\x0d\x46\x51\xde\x7f\xf6\x01\xc7\x99\xb0\xc9\x3b\x09\xa8\x89\x0d\x15\x80\xde\xa3\xe2\x8a\x6d\x70\x7e\xc1\xd6\x18\x6f\xa8\x86\x79\xc6\x76\x50\x64\xb9\xf3\x89\x9e\xab\x11\xdd\xa8\xa3\x89\xb7\x1f\x44\xf3\xf3\xdd\xcc\x04\x85\xd5\x86\x42\xce\x68\x4f\xcf\xfd\xfc\x7d\x64\x45\x30\x60\x17\xda\x6a\x17\x63\x93\xbf\x6a\xe2\x65\xbf\x18\x4b\xc2\x19\xfe\xc2\x16\x66\x9a\x6f\x74\x7a\x38\x5d\x43\x3b\x18\x6b\xce\x97\x5a\x80\xbe\x54\xcb\x03\x36\x09\xa1\xd8\x63\x08\xad\xe4\xaf\xaa\x07\x14\x79\xd3\x5a\x87\xb3\xe9\x77\x74\x60\x59\xed\x0f\xbe\x6e\x59\xe5\xfb\xbb\x83\xd4\x18\x0d\xdc\xfd\x54\xf1\x3e\x7c\x6a\x31\xce\xab\x26\x1c\x8e\xac\xd9\xc1\xfe\x84\x3f\xca\xd7\x2a\xd7\x9a\x27\xb1\xa1\xa6\x14\xc5\xd0\xf2\x1c\xa7\xec\xae\xe3\x54\x92\x9c\xb3\x3b\x22\xae\xd0\x24\x0b\x05\xbc\xaa\xf4\x84\x59\xe4\xe7\x2c\x80\x2b\x50\x36\x87\xe3\x3e\xae\x59\x2a\xa9\x67\xd9\x8f\xe8\x70\xc4\x7a\x03\x95\x2a\x5f\xaf\xab\x58\xc5\xd3\x41\x8c\x22\xab\x7b\x55\xf8\x9c\x10\xa3\xa3\x27\x98\xaf\x6b\x90\xe9\xb1\x1f\xc6\xdc\x49\x8e\x12\x60\xa7\x57\xbd\x80\x46\xb0\x32\x7b\x62\x3d\xaf\x4f\x5f\x2e\x32\x13\xd5\xea\x97\xda\x85\xab\x08\xfb\x2b\x26\xf6\x15\x17\x3c\xf4\x9a\xf8\x5a\xf7\x06\x67\x6b\xc1\x28\x89\x92\x21\x6b\xc8\xc3\x21\x43\x28\xca\xd7\xad\x0e\x44\x1a\x4e\x0c\x3e\x81\x88\xf0\xa4\xe2\x1e\x3b\xa9\xca\xe3\xab\x7e\x28\x8d\x2a\xb0\x1c\xc0\x30\xf3\xb5\xca\x52\xa6\x66\xb9\x18\x0c\x84\x52\x5e\x68\x10\xd4\x32\xde\x6a\x79\x8e\x85\x6e\x98\xfa\xcc\x28\x2b\xb6\x5c\x11\xe2\x1e\x6f\x6b\xc1\x0b\xfc\x49\x98\x27\x51\x47\xab\x37\xb0\xa3\xc9\x37\xaa\x11\xab\x3a\x68\xd7\xb2\x3c\xfb\xb2\xc2\x9d\x5c\xa5\x7c\x86\x68\x6f\x90\x29\x83\x37\x7f\x1a\xeb\x12\x67\x03\x7b\xf3\x30\xd7\xa7\x35\xf3\xc2\x45\xf2\x10\x6d\x27\x7a\x65\xac\xa5\x15\x90\x36\xa7\xf4\x02\x92\x91\x42\xd3\x04\xcf\x3f\x12\x40\x3f\x20\x30\x17\x2c\x34\x63\x35\x60\x70\xae\xa9\x59\xbb\xe2\x78\xa6\x7e\x5d\x93\x38\xb3\x1a\x0d\x7f\x93\x82\x10\x1c\x8a\x4c\x18\x93\x80\x1f\x8c\xd4\xbf\xf7\xd4\x90\xec\x5c\xa7\xd1\xda\x3a\xe7\x39\xb8\xfd\x25\x32\x9c\x38\xc9\x3a\x0d\x84\xf5\xdc\x81\xae\x19\xae\x4d\x72\xe1\xab\x80\x73\xff\x16\xbe\x94\x6f\xb4\xa0\x86\xf1\x53\x80\xc9\x04\xad\xe8\x4a\xbd\x17\x4b\xa5\x61\xff\xae\xa7\x15\xc9\x3e\xa2\x67\x80\xdf\x7a\x16\x63\x2c\x04\x65\xd5\x8f\xa2\x76\x7d\x0f\x7e\x9f\x04\xc7\xaa\xe4\xf2\x51\xc3\x98\x2d\xcd\x74\xb3\xa4\x88\x81\x70\x86\xdb\xf8\x21\xad\x6c\xbe\xae\x95\x1b\x8a\xb1\x79\x8c\x62\x41\x01\xc1\x77\xbe\xf9\x75\x3e\x7a\x8e\xf1\x41\x04\x1f\x1c\xb8\x17\x4c\xcc\x74\x4f\x33\x88\x91\xeb\x88\x0c\xd8\x1d\xac\x1e\xee\xa6\xf6\x9c\x13\x7e\xbe\x54\x19\x10\x14\xf5\xe0\x1d\x7f\xae\x99\x07\x76\xac\x3b\x0f\x90\x13\x68\x98\x1b\x76\x88\x51\xae\xfb\xae\xa7\x8a\x13\x8c\x21\x86\x33\x55\xb6\xa8\x68\xbf\xd8\xcd\xfd\xe5\x28\x09\xfb\x53\x8e\xb5\xe1\x8e\x12\x6b\x81\x9c\xaa\x10\xf4\xb8\xfe\xec\x06\xd1\xce\x8b\x56\x6d\x86\x9e\x45\x0e\x6b\x31\x99\x93\x34\xec\x83\xcc\x1f\x51\x18\xe8\xb8\x31\x12\xa0\x5f\xc7\x81\x35\xdd\xdb\xde\xab\x56\x3d\x23\xb5\x8e\x1b\x95\x11\x40\x64\x0f\x8b\xc4\xd7\x0d\x05\x06\x88\xd2\x45\x61\x90\x4c\x72\x57\xe3\x45\x18\x7b\x1a\x83\xc4\x37\x8d\xd3\x7e\x76\xb6\xb2\xae\xa9\x3f\x04\x55\x20\x7c\x28\x80\xf5\x98\x2b\xa2\x74\xab\xe7\x96\xc6\x41\xee\xec\xe9\xfe\xde\x30\x4b\x62\xe0\x6d\xf6\x3b\x49\x56\x27\xcf\xda\x88\x49\x5e\x98\x3b\xd0\xf5\x2b\x17\x7c\xee\x80\x50\xfa\x23\xbe\x42\xc9\xe7\x7c\xe9\x48\x14\xfe\xc4\x46\x0a\xaf\x16\x69\x18\x8c\xa6\x5c\x12\xe0\x98\x66\xcb\xba\xc1\xbb\x49\x92\xa0\x56\xab\x3c\x1c\x87\x79\xb6\x5b\xa9\xe6\x6d\x2a\xbf\x9b\xf9\x71\x55\xa7\xa6\xec\xce\xc7\x7a\x4e\x3e\x08\x13\x87\xf1\xbf\xa8\xb8\xeb\xfa\x26\x0b\x20\xca\x45\x69\x29\x9c\x69\x5b\xaa\xd0\x74\x47\x1d\x25\x7f\xf1\x85\x75\xb7\x22\x1d\xda\x09\xc7\xe3\xdf\xd5\x4e\xcf\xdd\x36\xfe\xdd\x15\x93\x66\x05\xb2\x61\xac\x18\xa8\x38\x4d\x8f\x29\x21\xaa\xfb\x75\xa1\xda\x88\x3c\x2d\xc9\xc8\x9d\xf1\x6a\x6d\x6a\xca\xb2\xff\x16\xd0\x12\x56\x75\xdc\xf6\x62\x9d\xa0\xdf\x11\x56\x03\x9b\x3b\xf5\xd7\x00\x9d\x46\xac\x76\x85\x27\x03\x48\x80\x37\x4b\x47\xb4\x70\x41\x25\xb4\xd2\xca\xd1\xac\x82\x37\x44\x90\x32\xf7\x34\x09\x7c\x43\x63\x09\xef\xe8\x3a\x25\xeb\xf9\x5a\x7d\x8b\xd2\x78\x77\xe2\x06\x64\x33\x45\xe8\xe0\x8b\x12\x94\xcb\x7e\x1e\x30\xe2\x1b\x5e\x1b\x98\x49\xb1\x9e\xf0\x9e\x08\x85\xaf\xaa\xc6\xa6\xa1\x9f\x8e\x4d\x9c\xc3\x14\xd8\x06\x62\x1b\xb3\x7f\xae\x4e\xdc\x41\x18\x93\x2c\x19\x25\xea\x85\x83\x88\xc2\x10\xe4\xaf\x6f\xa9\xaa\xee\x07\x88\x6e\x44\x99\x91\x96\xab\xf4\x40\x35\x31\xa8\xdd\x81\x9f\x59\xba\x48\x86\x3a\x2a\x56\xea\x8d\x46\xc3\xad\xbc\xb2\x59\x31\xe9\x5a\x3e\xb2\x50\x21\xec\x88\x5b\x4a\x86\xf2\x2e\x2c\x06\x32\xe5\xdf\x57\x4e\xfa\x6a\x18\x3f\xa8\xaa\x76\x3b\xa9\xe4\x80\x98\x62\x2f\xed\x15\x49\xad\x28\xa0\x1d\xde\xc3\x9e\x10\x0b\x56\xb7\x78\x83\x17\x08\x0e\x68\x2e\xd1\xe3\x9f\xee\x69\xac\x30\xad\x1c\x29\x62\x3f\xe2\x60\x0e\x63\x93\x92\x5b\x8b\xf9\xd9\x45\xbe\xa6\xe8\x2a\x28\x30\x28\x77\xa5\x03\xb5\x72\x44\x51\x12\x8c\x8d\x9f\x55\x41\x0e\xe1\xfc\x64\x31\x57\xbf\x25\x0c\x1d\x16\x8d\x44\x42\xb7\x93\xd0\x00\x87\xb5\x45\xb5\xb8\xad\xd3\x9a\xc9\x6b\x62\x75\xe8\xb1\xc4\xff\x84\xac\x17\x5f\x37\xba\xdb\x97\x66\xba\x83\x28\x0c\x0e\xb9\x9a\x96\x44\xb1\x34\x06\x8a\xa4\xc9\xfa\x13\x2b\x86\xa5\x83\x70\x74\xfc\xaf\x34\x40\x30\xc3\x37\x15\x2b\xd5\x14\x0a\x3c\xdc\x5a\x62\xdf\x00\xb2\x8d\x49\x1a\x32\x63\x20\xcc\x02\xd6\x1e\x5f\xab\x8c\x66\x6a\xd2\x42\xf8\x5e\x05\xbe\xa4\xf4\xd1\xce\xab\x9a\xcd\xc4\xf8\x39\x1f\x36\x18\xb5\x93\x9a\xe4\xe4\xa4\x12\xdf\x84\x60\x42\xb5\x6d\xa6\x15\x62\x10\xa8\x63\x21\x5b\x55\xd5\xa3\xb7\x94\x20\x34\xf1\xc2\x58\xb6\x91\x2c\x28\xac\x06\x89\x78\x27\xb4\x8e\xf9\x46\xd5\xd5\x4d\xd4\x37\x69\xb4\xb6\xbb\x3a\x62\x2c\x90\xf4\xa0\x00\x83\xd1\x06\x85\x40\xe8\xb4\xa7\x56\xdf\x1d\xa4\xf5\xf9\x13\x9e\x0b\x9d\x4e\x2b\x3a\xd0\x61\x38\x36\x71\x47\xa9\xbb\xc1\x2b\x92\x1a\x97\xfc\xe1\x4a\x48\x88\x14\x58\x18\xd1\x08\x76\x1c\x02\x9f\x95\x2e\x55\xfc\xfb\xae\xad\x37\x29\x52\xc9\x75\xb7\x75\xc2\xb6\xd4\x10\xfa\xa9\x3f\xb0\xa0\x17\xae\x6a\x29\x0d\x97\xcf\x14\x85\x70\xdf\xe4\x69\x12\xe6\x40\x1b\x58\x8a\x78\x97\xf9\x79\x8b\xf7\xa5\xe5\xc9\xb5\x70\x81\x5b\x18\x25\xcb\xe6\x64\xe1\x82\x17\x14\x4f\x39\xf0\x19\x26\x05\x9c\x10\x7f\x5b\xaa\x4e\xc4\x37\xb1\xc8\x2d\xd9\xd0\xec\xac\xe5\x22\x75\x5d\x0d\x57\x68\x23\xa2\xee\xc4\x1d\x16\x30\x8b\xdf\x6b\x6d\xc7\xaa\x56\xa1\xee\xe5\x77\x6d\x62\x9b\x8d\x83\xb3\x0a\xb3\x0a\x47\xe6\xdb\x46\xe4\xd5\x42\xbf\x24\x45\x85\xce\x36\x9e\x24\x49\xbf\x3a\x8b\x6f\x5e\x31\x69\x10\x66\x66\x2f\x7d\x3d\xf2\xe3\x9c\xa2\xb1\x3a\xd4\x16\xa2\x73\x91\x82\x1f\xab\x0b\xf4\x8d\x39\x76\x20\x6e\x2b\x3d\xbb\x2d\x4f\x61\x31\xef\x00\xb3\x8f\x08\xed\x3f\x94\x56\x54\x20\xec\xc3\x7d\x83\x23\x30\x4d\xb9\x1a\x0e\x9d\x68\x58\xc5\xc5\xae\x86\x95\x9b\xc4\x14\x1a\x38\x9b\xe0\x10\x9e\x52\x1d\xc2\xa0\x5f\x17\x92\x39\x4d\x13\xf0\x84\x96\x67\xf7\x53\x13\xe7\xd1\xda\x2e\x7a\x41\x16\x43\xa4\x4f\xc2\xa1\xb8\xaf\x94\x99\xee\xd3\xaf\x63\x9b\xee\x5e\x77\x15\xb2\x3b\x0d\x32\x45\xc7\xc3\x3f\xae\x7e\x80\xf3\x50\xc0\x48\x5d\xf5\x5c\x9a\x87\x9b\x48\xe1\xf1\x7c\xae\x68\xa2\x49\x20\xc8\x5f\x0e\xa3\x30\xa7\x96\xd8\x39\x3e\x99\xde\xd6\xd0\x07\xd6\x92\x90\x32\x5d\x0d\xaa\x6b\xf2\xa7\x3a\x96\x06\xeb\x2f\x4a\xa5\xbd\x79\x0e\x73\x89\xaf\xf8\xbe\xe7\x5a\xc4\x2f\x7b\xee\x04\xda\xa4\x1c\x13\xdc\x81\x9f\x50\x59\x7a\xba\xa7\x40\x0f\xb7\x3c\x55\x4e\xbb\x83\x13\x12\xfe\xc0\x0f\xb9\xce\x24\x07\xa9\x92\xe8\xdc\xa0\xdc\x88\x05\xf6\xfe\xa3\x7f\x6c\x1b\x54\xe8\x9d\x90\xef\x64\x96\x69\x0c\x38\x33\x15\xc0\x07\xba\x4a\xf1\x9c\xe5\xf5\xb0\x9c\xdc\x60\x1f\x04\x9a\xef\x2d\x6c\x35\x38\x58\x1f\xa9\xc2\x2b\x0e\x10\xf8\x68\x08\xe8\xa7\xc0\x93\xcc\x37\xeb\xae\x1c\x89\xd4\x0c\x5f\xb7\x08\x85\xce\x55\x06\x48\x35\xc5\x6a\x2e\x0e\xc1\x67\xb8\x8c\xe8\xcb\x45\x7c\xe8\xc1\x6a\x2c\xe1\x9e\x7f\xac\x28\xe4\xae\x51\xe8\x06\x5c\x23\x5a\x6e\x90\xd0\xbc\xec\xa9\x66\xdb\x0d\x4c\x1d\x97\x33\x68\x04\xf1\x4d\x08\x30\x31\x73\xef\x21\x53\x81\xa4\xd5\x75\xe4\x30\xf8\xa6\xc1\x5c\x55\x85\x68\x71\x42\xcc\x00\x98\xbe\x87\x7a\xce\x34\xdf\x53\x22\x96\xd7\x68\xbc\x45\x23\xd0\xe1\x85\x86\x66\x0c\x4f\x41\xf4\x6c\xe9\x01\x45\xd0\x76\x1b\xe2\xf4\xa5\x97\xaa\x11\x7b\xac\xfa\x35\xcb\x70\x6d\xdd\xd3\x0f\x71\xee\xc1\xd0\xfd\xb6\xce\x58\xd1\xea\x13\x1a\x48\x97\x35\xbb\xa9\x19\x42\x2f\xe8\x2e\xd7\xce\xba\x62\xd6\x3a\xaf\x50\x38\x68\x32\xc2\xbe\xbe\xe7\xd5\x40\x5a\x9d\x5f\x7c\x81\x7d\xbc\xc3\x9e\xea\x92\xbc\x88\xd3\x13\x47\xe9\x8e\x5e\x35\x08\x78\xf4\xe3\x6d\xb2\x1e\x7e\x94\x0c\x72\xf2\xc0\xf4\xe1\x28\xca\xfa\xad\x8c\x73\x83\xc8\x3f\x64\x24\xc4\xc5\x93\x41\xc4\x4f\x6e\xb4\x2a\x70\x9a\x4c\x4c\x9a\xaf\xc1\x77\xd2\x74\x31\xb0\xb3\xe7\x3c\xc5\x47\x55\x6a\xc2\x0d\xe5\xf5\xa6\xfe\xb7\x28\x81\x22\xaa\x8d\x0a\x48\xd9\x3c\x5e\x9e\x81\xd1\x0a\x72\xad\xd1\x8c\xd5\xcd\xd7\x5a\xa2\xf6\x50\xc8\xbb\x40\x98\x30\x5d\x93\xe4\xa6\x23\xbe\x8a\x83\xd1\x6a\x92\x8e\x95\x2a\x11\x86\x89\xaf\x95\x23\xba\x9c\xfa\x2c\x97\x03\xfb\xf4\x89\xda\x56\x28\xf1\xb2\x2d\x41\xa8\x21\x05\xbb\x16\xf0\x7b\x30\x32\xc1\xa1\xe5\x24\x39\xd4\x51\x79\x28\x38\xf6\x7c\x6d\x9f\x2f\x35\xb9\x9f\xf6\xc5\x4a\x63\x25\xdf\x50\xaa\x61\x1d\x40\xbc\x98\x1f\x55\x59\x69\xd0\x1d\xa3\x6d\xa1\xe3\x7a\xbe\xcf\xa9\x50\xe4\x5c\x63\x03\x3e\xd3\x35\xc1\x28\xa1\x25\x23\xb9\x6a\xc5\x88\x74\xa1\x96\xd2\xca\xc3\xe0\x29\x9a\x54\xc9\xf6\x57\xde\x06\x4e\xf9\x7b\xd8\xf3\x2c\xce\x0c\x2b\x21\x93\x05\x13\x8c\x44\xd4\x49\x2c\x67\x2c\xfa\x3a\xb6\x94\x1e\x13\xd9\xae\xdd\xeb\xaa\xed\xf1\xd1\x75\x1a\x08\x80\x92\x20\xa6\xc4\x94\x15\x30\x2d\xc2\xb1\xaf\xe2\xfb\xdd\xe0\xba\xe6\x9f\x2c\x1d\x1f\xec\x15\xc5\xdb\xc0\xd9\x51\xcc\xfa\xee\x75\xd7\x97\xc2\xad\xa6\x12\x6e\x38\xc2\xda\xe9\x75\x3a\x3f\xc8\x2a\xfc\xe6\xcf\xf7\x1e\xd5\x07\x77\x64\xb2\xdd\x4e\x0a\xfe\x6f\x9f\x55\x95\x0b\xae\x85\x6a\xaa\x4c\x61\x99\x54\x74\x15\x20\xe6\x10\x0e\xcd\xed\x5b\x75\x76\xae\xeb\x8f\x4d\x1a\x06\x9c\x31\x95\xba\x0c\x7d\x81\x80\xf2\xb6\x6f\x9e\xc5\xa5\xc5\x6e\x6a\xfc\x80\x99\x3d\x39\x15\x87\xb7\x93\xbc\x9c\xf3\xb4\x46\x7e\x11\xe7\xe2\x27\x63\xfa\x2f\x2a\x92\xbc\x8b\x4e\x08\xb0\xe8\x0f\x4d\x9e\x69\x6a\x79\xd0\x23\xc9\x89\x5e\xbd\x88\x20\x8f\x9a\x89\x96\xfd\xdd\x41\x98\x66\xf9\x94\x5a\x23\xc7\x54\xa6\xf6\xa2\x6a\xfd\x6b\xd2\x2b\xbf\x30\x77\xa0\x3b\x2a\xd2\xbc\xa3\x5c\x88\x5f\xd6\xdc\x15\xbf\xac\xb2\x05\x87\x92\x51\xb4\x6c\xd2\x61\x47\xe7\xb1\x8e\xd7\xaa\x5f\x0a\xfb\xb9\x94\xac\x52\x96\x51\x67\x16\x61\xdb\x7f\x54\xaa\x1a\xf3\x25\xef\x21\x3b\xef\xa3\x67\x3b\x0e\xbb\xc3\x1b\x47\xf8\x75\xb5\xc4\xad\x89\xd1\x96\x08\xe0\xc3\xe9\xd2\x71\xa8\x31\x09\x27\x5e\x1d\x78\x51\x6c\x01\x10\xbc\xe3\xd4\xbd\x44\x87\x03\x7c\xc7\xdb\x2d\x3c\xce\x07\x67\x9e\xa0\xa5\x07\xc7\xff\x57\x4b\x27\xd8\x7c\x0c\xad\x9b\x98\x8c\x0d\x4f\x11\x1b\xbd\xaf\xd1\x5a\x8b\x64\x5e\x6c\x12\xb8\x7a\x54\x44\xcd\x6f\x29\xe3\xfe\x7f\x63\x98\x91\xc6\xe0\x34\x80\x95\x78\xae\xb6\x1b\xce\xa8\xcd\xd2\xb1\xc5\x81\x63\x17\x73\x79\x19\xce\x97\xdd\xf9\x4e\x71\xfd\x33\xd8\x04\xd8\xc1\xdb\xe4\x3f\x21\x0e\xa0\x5e\xd9\x17\x2d\x99\x54\xe7\xe0\xcc\xd6\xdd\xb6\x68\x2d\x33\xc0\xb8\xd4\xbb\x0b\x2c\xcb\xbb\x76\x80\xfc\x34\xe7\x8a\x10\x92\x72\xe0\xc0\xe0\xeb\xde\xdf\x68\x96\x6e\x29\x7f\x3c\x34\x31\x77\x75\x71\xc4\xcf\x69\x5d\x4f\xa7\x78\x25\x97\x92\x2c\x27\xa4\x13\xee\x24\x08\x68\x45\x8b\x1c\x41\xd3\x03\xea\x8e\x42\xf4\xa9\x23\xe9\xb0\xa3\x57\xf3\x39\xab\xcf\xf2\xe9\x5a\x2a\x56\xfa\x8f\x1a\x03\x71\xe0\xf9\xee\x38\x89\xa2\x70\x00\xb8\x39\x87\x4a\xf4\x88\x12\x36\xd5\x54\xdc\xcc\x2b\x18\x30\x44\x42\xd7\x74\x8b\xda\x35\x75\xa8\x1e\x32\x66\xf2\xe0\xf6\xc2\x8e\xa4\x47\xaa\x87\xc3\xd1\xfd\x03\xb2\xb2\xf8\x1b\x8e\xf8\x61\x34\xcf\x95\xae\x65\x97\x45\x8f\x44\xde\x54\x71\x91\x7c\x57\x11\x63\xdf\xf3\x14\xbf\xea\xce\xf5\xed\x11\xea\xbe\x85\xee\x24\x32\x3e\x92\x05\x12\xc3\xeb\xd8\x5e\x25\x92\xf2\x70\x30\x20\xe7\x52\x91\xce\xab\x86\xb5\x83\x33\x4e\xce\x78\x9f\x65\xa6\x6f\xd4\x05\x7f\xa1\x9b\x9a\x89\x71\x5d\x30\xa8\x1c\x71\xe9\x84\x6f\xca\x87\x55\x2b\x07\xc2\x67\xbc\xf3\x54\xcf\x81\x7e\xa6\xd6\xdb\xea\xe3\xc3\xb4\xb2\x3c\x96\x4c\xe3\xb6\xa7\x88\x1a\xbe\xaf\x72\xa6\x37\xdb\x3c\xbe\x55\x3f\x96\xc7\x82\x45\x39\x5c\x2a\xed\xd7\xc3\xaa\x78\x3d\x4c\x8a\xa8\x4f\xe5\x1a\x57\x3c\x53\x1a\x7c\x67\x68\x02\xc5\xc1\xde\x4e\xd5\xf3\x4c\xd7\xe4\xc1\x74\x65\x86\x30\xc5\x53\xe4\x89\x4a\x6d\xad\xfa\x16\x7c\xf2\x44\x59\x13\x4b\x71\x90\xa4\x43\x91\xa4\xf4\x18\x9e\xa3\xcb\x4b\x1b\x5e\xd3\x51\x5f\x7c\x7e\xff\x03\xaa\x4e\xde\xe9\xb9\x7d\xb7\x77\xdd\x95\xe7\xd7\x35\x39\xc8\x1d\xec\x10\xdb\x39\x7a\x70\x86\x43\xce\xab\xc4\xb3\x81\x3f\x42\xc5\x9e\x55\x2c\x60\xb3\x71\x74\xec\xe8\x39\x1a\xde\x34\xc9\x47\x59\x30\x0a\xa3\x7e\xb6\xdb\xcd\xc0\x65\xaf\xd6\xf8\x44\x3f\x86\x0c\x22\x57\x72\xb0\x7d\x20\x72\x69\xb1\xe3\xfb\x84\x6e\xe0\xaa\x12\xb2\x4f\xcd\xe4\xd9\xdd\x2e\xb1\xb2\x81\x6f\xd6\xe5\x14\x9c\x3d\x47\xe1\x46\x23\xe8\xfc\x9e\x57\x4b\xbe\xd2\xb3\x63\x04\x2f\x29\x64\x52\x6a\x82\x64\x18\x87\xaf\x72\x71\x4d\x31\xab\xed\xb7\x02\x40\x2d\x7a\x19\xc4\x41\x95\x44\x09\x29\x4e\xe1\xc4\x94\x6e\x2b\xfa\xa8\xb4\x64\x59\x56\xdd\x22\x8d\x93\x22\x67\xd2\x40\x71\x90\x15\x81\xec\x75\x62\x89\x46\x29\xba\x4d\x9f\xa7\x9b\x19\x06\x7f\x59\xc8\x44\x35\x06\xe2\x86\xb6\x49\x24\x52\xa0\x3b\xa5\xe4\xfd\x90\x4f\xc4\x84\x7c\xa6\xc1\x7d\xd7\xca\xa7\x9a\xdd\x86\x07\x67\x9e\x7b\xb4\x32\x65\x58\x14\x97\x55\x97\xd1\x75\xda\x67\xd6\x47\x75\x7a\xbd\xb0\x6b\x30\xc0\x97\x3d\x47\xea\xf0\xa6\xa7\xf2\x6e\xd7\x4a\x5d\x36\x28\x55\xc0\x7c\x8c\x3a\x0c\x11\xca\x1d\x05\x14\x0a\xe7\xdc\xbf\x42\xf7\x27\x4e\x85\xb7\x14\xa9\xec\x97\x70\xe8\xa1\xb4\x7e\x05\xc9\x0c\x98\xdb\x3f\xb4\x25\xd1\x51\x91\x1d\x5a\x83\xd6\x69\x0b\x79\xda\x66\x8d\x17\x7d\x90\x4f\x29\xbc\x35\xfc\x52\x78\xdc\xbc\x66\xb9\xdf\xdf\x16\x05\x27\x7e\x96\x19\xb4\xe1\xdb\x10\xad\x7a\x22\xe6\x1d\xd1\x34\x49\x9f\x29\x72\xc0\x30\x0e\x22\xb0\x63\x77\xac\x30\xd1\x19\xfa\x35\xbe\x6e\x95\xca\x48\xe2\x88\xe8\x23\xb7\xee\x56\xa6\x68\xeb\xae\xd6\xd3\x2c\x82\xc0\x64\x19\x11\xc9\xa1\x68\xf6\x3d\x8c\xb9\xf4\x6b\xd2\x30\xf3\x0d\x5e\xc5\x06\x3c\x4b\x33\x96\xde\x40\xf1\x60\x5c\xf6\x14\x03\xd8\x47\x8d\x3d\x60\x1b\x9c\x56\x4d\x3f\xcc\x46\x54\x0d\x41\xce\x94\xbb\x57\xb0\x79\x1e\x22\x83\x2e\xd8\xd0\x9d\x5f\xe3\x6c\xc0\x85\xba\x22\x6f\xb0\xf6\x58\xc7\xca\xc6\x7f\x89\xaa\x29\xb0\xb3\x9f\x22\xa5\x24\xfd\x16\x8a\x5e\xe0\x2c\x27\xab\x60\x38\x3e\xe0\xbc\xb1\xa5\xc2\x59\x9a\xe1\xbc\x31\x43\x55\xad\x66\xa5\x3b\x07\x51\xb1\xc4\x78\xf3\x21\x8c\x07\x98\x5a\xaf\x56\x2e\xfc\xc3\xdf\xa4\x15\x6d\x49\x45\xe7\x0e\x70\x8c\xc9\xa0\x74\x94\xdf\x19\x1b\x2b\x4c\x7a\x2d\x34\xca\x5f\x73\x1d\xfe\x1d\xe7\x36\xaf\xd7\x18\x20\xb7\xb9\xaa\xbf\x50\x6d\x40\xa2\x7d\x85\x0f\x0a\x9a\x15\xbe\x6e\xe0\x97\xe7\x0e\x90\x98\x63\x18\x07\x39\xb3\x47\x20\x03\xfb\x9a\xe7\xb2\xb1\xaf\xb5\xb1\x75\xf7\x8d\xdf\xc7\xaa\xe2\x8d\x03\x66\x13\xbe\x5e\xff\xf2\xb6\x5e\x7d\x2e\x59\x21\x92\xff\x58\x25\x55\x3f\xb6\x5b\x22\x1c\xc6\x21\xe3\xc8\x71\x54\x80\x41\x92\xaf\xdb\xc4\x88\x07\xc2\xb5\x25\xdc\x43\x2a\x1e\x87\x79\x91\x86\x7d\x47\x74\xfd\xbd\x23\x4e\x80\x3a\x59\x31\x20\x94\x50\xd1\x22\x66\x5a\x42\x47\x17\x7d\x06\xa3\x64\x32\xc1\x08\x21\xef\x08\xd9\x5c\xbe\x2e\x9d\x88\x7c\x10\xf9\xe3\x65\x93\x9a\x3e\xe5\xb6\xb1\x7e\x98\x4b\x19\xcb\xe4\xb3\x52\x63\x7e\x4b\xdb\x0d\x75\xb0\xb5\x60\x9e\xe5\x7e\x6e\x98\x40\x19\x06\xf2\xa7\x9e\x52\xa8\xfc\x95\x52\x8b\xfb\xf3\x46\xc4\x43\x1d\x69\x49\x43\x8c\x93\xd4\x4c\x91\x19\xc5\x21\xfa\xa1\xe7\xd2\x58\x6f\xc1\x0c\x4a\x73\x68\x8b\x7a\xdd\xea\xc8\xa4\x46\xa0\xfb\x56\xd7\xf9\x05\xc7\xe8\xe3\x3d\xa9\xda\x14\x86\x05\x14\xce\x70\xb6\x5b\x32\x83\x6a\x5a\x18\x1f\x88\xcd\x23\x72\xf6\x2e\x05\x7b\x93\xd6\x07\x4a\xa1\x2c\xaf\x8e\x74\xd7\x29\xcf\xd1\x33\xbe\x9c\x8c\xe2\x2c\x89\xa7\x54\xeb\xc0\x3d\xcf\xe1\xf5\x20\x4c\x2d\xf4\x27\xae\x50\xe8\x4f\x26\xc6\x8f\xa6\xe9\x97\x95\x3c\xb9\x60\xc6\xb8\xb5\x8f\x6f\xd6\x9d\xbb\x5d\x97\x4a\x09\x57\xcc\x57\xab\x33\x0e\xe6\x1a\x59\x2a\xbc\xd4\x23\x08\x2c\x58\x23\x45\x11\x88\xf1\xf1\xc5\xb0\x7c\xce\xd7\x58\x29\x15\xa7\x14\xcb\x54\x76\x16\x3d\x5f\xbd\x3d\x8e\xb6\x3d\x3d\x62\x1a\x93\x9c\x14\xad\x22\x9b\x17\x75\x48\xb5\x2b\xb5\x38\xd3\x41\x89\x5f\x63\x5b\x07\x5f\xe6\x0e\xe2\x54\x9c\x80\xd7\x28\xff\x82\x47\xfb\x04\x6b\x95\x41\xc6\x34\x8a\x38\x18\xae\x2b\xce\x01\x26\x88\x56\xed\xb3\x2f\xd6\x9c\x40\x84\xd1\xa7\xdb\xdc\x8b\xc0\xcf\xf2\x34\xe9\x38\x7f\x9d\x8f\x55\xe1\xa5\x6e\xc1\x83\x19\x47\x68\x81\x54\x06\x17\xf5\xf8\xa6\x35\x7f\x11\x19\xbf\x0f\xa7\x09\x59\x71\xc6\xff\x59\x29\x18\xc7\x29\xff\x56\x6d\x66\x47\x66\xed\x09\xd5\x33\x76\xa7\xd4\x4b\x80\x86\x5c\xc4\xa2\x1c\xab\x2a\xba\xe9\xb1\x07\xee\x60\x30\xac\x60\x4e\x35\xc8\xa8\x9b\x7d\xa6\x88\xde\xbe\xbf\x0d\x2a\xbc\x34\xb3\xdf\x4a\xc9\x57\xeb\xca\x5a\x0a\xc7\xc8\x70\x4f\x2b\xe6\x3c\xd9\x73\x8d\x67\x53\xeb\x95\xf7\x83\x33\xf4\x9c\xa7\x59\xac\x90\x30\x42\xaa\xe3\x81\x75\xa5\x5f\xf7\x08\x88\xc3\xf8\xb9\x54\x7a\xe6\xbf\x5a\x3a\xd0\x71\x45\xec\x0f\xf0\xfb\xc2\x91\xe1\x9c\xdf\xd8\x24\x93\x11\xa4\xfb\xab\x97\x15\x5a\x69\x7a\x27\x21\x9c\x76\x02\x35\x60\x15\x26\x42\x2a\x58\x1d\x56\x6b\x42\xec\x79\x49\xe1\x8e\x2e\x61\x23\x88\x52\xb3\xca\xe8\x6d\xc0\x3d\xe2\xcf\xdb\x52\xf5\xb2\xc9\x1d\xe8\xac\x4d\x74\x69\xfb\xa9\x31\x3f\xdf\x4d\xc3\x2c\xe8\x28\x0c\x9e\x6e\xdc\xd8\x54\x00\x1d\x70\x1e\xc5\x26\xda\x5d\x2d\x01\x4b\x99\x75\x70\xa6\x96\x61\xc2\x11\x79\x0c\x9b\x9b\x45\xbe\x74\xcf\xcd\xf7\x4b\x9d\xf5\x76\xe7\x09\x31\xc5\x66\x0f\xd1\x90\xc1\x97\xf8\x73\x24\x8b\x18\x71\xe8\xa9\x56\xe5\x7b\xa5\xcb\x82\x33\xd5\x8a\x80\xa7\x68\x7d\xe1\x65\x21\x24\x0c\x83\x70\x16\x78\x1d\xa9\x9a\xd2\x82\x96\x62\x1d\x0d\xa4\xe4\xf5\x1d\xe9\xe6\xe9\x46\x44\xbe\xf8\xfc\xfe\x6e\x90\x8c\x4d\x9f\x05\x18\x85\x3f\xd6\x95\x79\xcf\xd5\x69\xdb\xfa\xfe\x43\xd5\x46\xc0\x83\x32\xb4\x11\xcf\xb6\x73\x5d\xa1\x4e\x79\x7c\x00\xcb\x3f\xa6\x70\xea\xaf\x7b\xce\xee\x83\x40\x89\x89\x96\xf1\x02\xdc\x6e\x4e\x53\xc0\x1f\x2e\x75\x45\x65\x5a\xf1\xd9\xed\x5e\x6f\x91\x6f\x33\x6b\x66\x39\x4d\x56\x79\xd5\xa2\x34\xfb\x86\x16\xcd\x79\x43\x01\xa6\x26\x7e\x35\xfd\xf0\x0d\x60\xa6\x4f\xeb\x38\xd6\x85\x68\x99\x1f\x15\xf9\xcf\x6c\xe5\x51\xea\x77\xc3\xd1\x23\x8a\xd3\xe9\x43\xcf\x41\x3b\xc0\xab\x02\xfc\xd8\x74\xaf\x53\x17\xef\x51\x9a\xe4\xd5\xd0\x59\xae\x18\x07\xe6\xba\x86\xf7\xb0\x55\xeb\x6f\xcc\xf1\xa0\x9e\xc7\x66\x43\xdf\xc5\xeb\xa5\xa2\xbc\xc5\x91\x4b\x47\xe4\xef\xff\x5c\xcf\xf1\xbf\xdd\xd4\x6d\xa5\x7e\x70\x88\x72\x3b\xa8\x0c\x5c\xf7\xbe\x88\x94\xa1\xfa\x38\xff\x8d\xad\xf0\xaf\x89\x76\x01\xf6\xf0\x29\x95\x08\x61\xb8\xb7\x08\x70\xb7\xe5\x1b\xa3\x64\x75\x1b\x9e\xf4\xac\xea\x75\x3f\xab\x46\xf5\xbf\xfc\xcf\xff\x8b\x8e\xeb\xac\xdf\xa4\x33\x8b\xaf\x15\x20\x69\xec\xaf\x2d\x9b\x69\x1a\x3f\xe1\x46\xc5\xea\xb1\xac\xbd\x4a\x2c\xa8\xac\x09\x79\xb9\x6d\x9b\x17\x60\x5f\xb6\xad\x51\x67\xf0\x31\x61\x4b\x6f\x41\x7a\x04\x45\xce\x2b\xce\xf6\x74\x57\x33\xc5\x37\xca\xe0\xf8\xc1\x08\xed\x27\xa4\xaf\x28\x35\x66\xfa\x7a\xd8\x81\x3b\xbc\xdc\xf9\x4e\x8b\x54\x5b\x8b\x18\x24\x51\xc4\x65\x6f\xe9\x0c\x3b\xa6\x38\x5b\x91\xc4\x43\xa2\xe3\x26\x1d\x48\xcc\x46\x5c\x13\x82\xca\x8a\xd4\x8f\x03\xf3\x48\xc7\x72\x59\x32\x14\x00\xa7\x7f\x0d\x18\x7f\x82\xa6\x1e\xbf\xf4\x07\x14\xe9\x60\x2c\x2e\xd1\x41\x86\x5f\x7a\xbb\x86\xc5\xfe\xbf\x4a\x07\x5c\xf9\xb8\x74\xcc\x63\xc7\xb1\x52\xf1\x1b\xaf\x97\x5a\x76\x06\x4e\xe9\x55\x8e\xdd\x9c\x57\xe7\x38\x5a\xe2\x9c\x83\x62\xd1\x5e\x55\xb4\x6e\xff\xb1\x49\x1e\x9e\x86\x1c\xbc\x58\xfa\x43\xcb\x1d\x74\xb4\x66\xd4\x4c\xfc\x2c\x05\xc7\x48\x07\xbd\x8b\x37\xb7\xa5\x39\x0b\x8a\x7a\xc3\xd3\xcd\x3a\xca\x5b\xbf\x5c\x3a\x2d\x56\x81\x97\x8a\xeb\xbe\xdd\x44\xbd\xb0\xd8\x0d\x46\xfe\x78\xc2\x69\xf6\x45\x0b\xd9\xee\x58\xde\xa9\x26\xd0\x67\x7e\xbe\x3b\x4c\xa2\x81\x28\xbd\xdb\xb0\xc2\xd9\x1f\xcf\x05\x27\x7e\x96\x99\xd4\xd6\x9f\x98\x67\x9b\x5e\x43\x38\xb7\x1f\x55\x22\xc5\x45\x2c\x5d\x92\xd2\x03\xe1\x0a\xf9\xf0\x53\x44\x7b\xb0\x7a\x79\x69\x3d\x6c\xd3\xc5\xe9\x87\xfe\xb2\xc9\x99\xa4\xc7\x92\xa1\x3b\x92\x86\x73\xde\x53\x3a\x69\x07\xba\x1c\x49\x73\x48\x29\x5e\xad\x84\xe3\xde\x03\x61\x77\x92\x9a\xc1\xdf\xed\xfe\xfd\xdd\xae\x7c\xf6\x60\x4f\x59\x68\xb0\x8f\x23\xf1\xf2\x30\x4e\x4d\xe5\xc7\xc9\xbf\x5c\x26\x6b\x81\xf4\xe7\x63\xbd\xc7\x95\xd3\xc2\xc1\x21\x06\x40\x71\xcc\xef\xb7\x1c\xf3\xea\x58\xe5\x94\xac\xb0\xa3\x48\x4c\x9b\x26\xc2\x1a\xb3\x60\xe9\xe6\x3b\x96\x2a\xe3\x82\xad\xf6\x4d\xc2\x3c\x18\x19\x80\xfc\x59\x0a\x4e\xe3\x60\x58\x3a\x11\xbe\x63\xa7\xe7\xd6\xbd\x4f\xd2\xd0\xb4\x40\xb1\x87\x6e\xc2\xb3\x55\xa4\x25\x8b\xb5\xd5\x0a\xf3\xf6\x97\x9e\x02\x01\x02\xa3\x03\xb3\x2c\x16\x86\xff\x45\xd9\xd8\xc4\xc7\x51\x88\x92\xe6\xdb\x98\x0c\xbe\x69\x6b\x21\xcd\x7d\x6a\xa3\xb6\x34\x2f\xbb\x7b\xce\x08\xed\x5e\x57\x32\x30\xa9\xc9\x18\x60\xb9\xdf\x29\x40\x54\xce\x0b\x17\xda\x68\xbc\x84\x39\x41\x51\x7e\xff\xaa\xca\x62\x0d\xf8\xac\xe8\x58\x9e\x84\xbb\x64\x63\xf8\xda\xd2\xbe\xe5\x49\x12\x4d\xbb\x5c\x28\x1a\x41\xac\x4a\xd3\xc1\x99\xe7\xb6\xb8\xd3\x45\x8c\xef\x13\x0a\x81\x28\xea\xb1\xbb\xe8\xe9\x74\x12\x19\x9e\xfb\x79\x8f\xc2\x33\x41\x42\x28\x8e\xfa\xdb\xf4\x0e\xe8\x0b\x98\x5e\x77\x87\xeb\xcb\x45\xb4\xb6\x4b\x31\x2e\xdf\xa7\x15\x6b\x9b\x40\x97\x66\x38\xd6\x7b\xb3\x74\x69\xf9\x37\x11\xad\xe2\x10\xdc\xd3\x68\xfa\xa1\x62\x5a\x56\x44\xa4\xfb\xee\x28\x2f\xcf\x29\x61\x8e\x73\x8d\xa8\x6c\xdf\x42\xb7\x98\xac\xfa\x69\x5f\x15\x5a\x8f\xd2\x9e\xe6\x6b\x75\x00\x2e\x9b\xc0\xcf\x8c\xca\x14\x1d\x53\x99\xa2\x26\xa9\xc6\x81\xe7\x29\xbf\x94\x1a\x8b\x7f\x45\xcc\x73\x4a\xe7\xf5\x4f\xa9\xa9\xb4\x1e\xbd\x8a\x25\x3c\xd5\x2f\x71\xa6\xf1\x13\x73\x07\x88\x84\x3a\x37\xa9\xd8\x40\xe4\x4d\xff\x0f\x7a\x67\xbe\xfe\x42\x64\xf9\xd8\xe4\x69\xe5\xe3\x86\x5c\xeb\xb2\x9c\x7c\xd5\x4f\x8a\x13\xb1\x7d\x94\x0f\x3c\xdf\x0d\x52\x93\x41\x31\xcb\x7a\x70\xdf\xd1\x48\xf1\xef\x28\xc6\xb6\x20\x0a\xe3\xca\xf6\x2d\x49\xa5\x04\x98\x6d\xbe\xd6\xe6\x39\x36\x41\x3f\xc9\x7d\xd6\x00\x41\xde\x1b\xf8\x5f\xbe\xde\x5e\xc3\x39\x38\x33\xd7\x7d\x61\xf1\x49\x9c\x8b\xa8\xec\xb1\xc3\x07\x9f\xeb\x86\x12\xcb\xf9\xc0\x53\xa5\xcd\xb7\x61\x1b\x24\xaf\xe2\x28\x92\x6f\x6c\x92\x5f\x01\x1f\xe3\x43\x8a\x6c\x39\xcb\xae\xba\xb0\xfe\x14\x66\x46\x04\x99\x54\x62\x1e\xcd\xcb\xcc\x04\x59\xdf\x4c\x8e\x83\xe8\x6d\x2a\x59\x23\x1f\xc7\x42\xbc\x9c\xc2\x23\xb4\x8b\x5d\x22\x4b\x33\xfb\xb7\x3e\x20\xd0\xcb\xd6\x07\xc8\xe8\xf2\x2b\x36\xe0\xe9\xfb\x16\xd0\x28\xf8\xaa\x75\x19\x11\xb5\x9e\x56\xcc\x8e\x9a\xd0\xee\x15\x93\xed\xed\xa8\xf2\x29\x3d\x28\x41\x7f\xfe\xeb\xbf\x86\x43\x44\x06\x13\x06\x11\x7f\x77\xdb\x71\x5e\xfe\xf2\x57\xe1\x97\x4b\x02\xa6\x63\x69\x22\x4f\x22\x54\x15\x74\xbe\x2a\x13\x44\x0c\xc6\xb5\x3d\xd8\x9a\xfe\xd9\x3d\x9b\x9f\xae\x3d\xae\xe6\xff\x9e\xe7\xe6\x9f\xa2\xbf\xe7\x6c\x31\x91\x26\xc1\x0a\xa7\x2c\xcd\xf0\x43\x13\x9b\xdb\x8b\x96\xf7\x8b\x0a\x22\x22\x91\x4e\xb3\x8e\x84\xd0\x3d\xd8\x28\x84\x55\xbf\x56\x92\xf5\xc2\xd3\x00\x1e\x42\x97\xdf\xff\x05\x8a\x45\x10\x97\x5c\x2b\x6b\xb4\x95\x8e\xa9\xf2\x21\x0c\x06\xec\xed\x1e\x20\x78\x2c\xe2\xc6\xd2\x62\x23\x11\x8e\x81\xb9\xd9\x08\x37\x97\x66\xba\x26\x22\x11\x2a\x9c\x97\x0c\x62\xa0\x47\x11\x40\xc3\x63\x0e\x5e\x16\xf6\xc1\x05\xac\x08\x2c\xf1\x44\xc2\x66\xe9\x10\x24\xfe\x98\x0e\x56\xc6\xb1\x96\x9d\x17\x44\x5f\x9f\x2d\x0b\xf3\xdc\x28\x14\xbe\x9f\x65\xc5\x18\x45\x30\x01\xe9\x5f\xd3\x07\x11\x4d\x37\xc2\x9d\x0f\x1a\x06\xe9\xe0\xcc\x62\x77\x58\x10\xbc\x8c\x73\xea\xd8\x0e\x50\x35\xe4\xeb\x16\x15\x84\xfd\xdd\x65\x3f\x3a\x24\xaf\x8f\xa3\xf2\x4a\xa9\x14\xdc\xaf\x34\x32\xba\x73\x07\xba\x7d\x83\x26\x63\x89\x69\x1c\x44\xf4\xac\x12\xb3\x59\x2e\xa2\x28\x09\x0e\xd1\x5f\x62\xab\xdd\xd6\xfb\xee\xb6\x13\x65\x32\x7e\xc6\x52\x92\x0e\x17\x7a\xc4\x73\x40\x8b\x23\x2a\x3a\xcc\xc3\x3c\x99\x72\x04\x1d\x2c\x5b\x8e\xa2\x21\xba\x8b\x50\x34\xbc\xde\xc8\x6c\x3f\xfd\x74\x77\x62\x62\x5b\x55\xc7\x2e\xfa\x63\x58\x15\xbe\x51\xbd\xa9\x2b\x66\xe8\x33\xf2\x4b\xe8\x57\x9d\x4b\xfc\x07\x70\x8e\x90\x3a\xbe\xac\xcd\xda\x86\xca\x29\x5f\xd6\x79\xe4\x8d\x16\xee\x97\x17\xbb\x59\x31\x81\x02\xa9\x05\xb5\xc0\xf4\xf2\x75\xe3\x1d\xf6\x2d\x74\x27\x49\x14\x66\xa3\x29\x07\x3d\x79\x4b\x81\x24\x7e\xbf\x54\xa1\xe1\xbb\x8d\xd2\x4b\x75\x88\x24\xe3\x49\x64\x48\x24\xd3\x09\x46\x1d\x57\x6c\xb2\xc7\x1b\x86\x6e\x7e\xbe\x9b\x9a\x6c\x92\xc4\x99\xb4\xb8\xb7\x65\x1c\xb6\x7f\xca\xaa\x2d\x8d\x8a\x6c\x4f\xe7\x9b\x5f\x77\x74\xbf\xf3\xf3\xb6\x69\x42\x71\xf0\x6e\x95\x9d\x5f\xda\x6f\xf5\x3f\x6c\xa6\xf3\xd9\xbf\xd2\x73\xd9\xc1\xbb\xa5\x92\xc0\xdb\x68\x23\x54\xf0\xd3\xd4\x8f\x87\xe4\x46\x77\x1c\xd0\xeb\xae\xe7\xf2\x54\x77\x1b\x4f\x3a\x77\x40\xe8\xf0\xc4\x90\x73\x91\x96\xde\x4f\x0a\xb6\xae\x97\x71\x58\x98\x34\x0d\xa3\x48\x7a\xd0\x85\x43\xd3\x75\x18\x9e\x6f\x6c\xd0\x6a\xab\x15\x79\x18\x91\x1c\x5f\x47\xa5\xa9\xe0\x23\x7f\x51\xee\x90\x24\xa4\xfc\x94\x16\x3c\x0c\xed\x15\xaf\x0e\x75\xb1\x24\xbb\x1f\xab\x27\x2c\x62\xa8\x0d\xe7\x6b\x74\xe2\x70\xdb\x67\xa9\xd1\xbd\x18\x7a\xdc\x4c\xf7\x54\x1e\xe9\x56\xe9\xea\xbc\xdc\xd0\xc4\x2c\xbc\xa5\xf2\x9f\x3e\x57\x10\xee\x1b\x9e\xf6\x59\x73\x93\xa6\xa8\x70\x59\x66\x72\xc0\x70\xf9\x5a\x69\x50\x11\xa1\xe7\xc3\x75\x49\xdb\xea\xe5\x80\x2d\x3e\xac\x44\xa7\xff\x44\x53\x21\x1c\xd6\xfd\xe4\x47\x3c\xc7\x77\x8c\x46\x44\x25\x67\x25\xeb\x06\x24\x8d\xf8\xa3\x1d\xe8\x85\xb7\x5a\xe5\x4b\xe2\xe6\x81\xcf\x09\x58\xdc\x87\x7a\x36\xd8\xfb\xa5\xaf\xba\xf4\xc5\x23\xeb\x4e\x59\xeb\xae\x16\x1e\x7b\x82\xea\xb0\x88\x4d\xbe\x5d\x3a\x42\xb0\xdb\x7c\x96\xa3\xe0\xf4\x28\x32\x1a\x38\xf0\x6e\x7a\x4e\x34\xf4\x12\x80\x76\xb6\xa2\xf6\x82\xed\x8a\xbb\x40\xb1\xa2\x9d\xb3\xca\xd6\xa1\x72\xc7\xb6\x94\xde\xf5\xee\xdf\x42\x09\x89\x53\x16\xa5\xc2\x24\x76\xd6\x1d\xec\xfe\x4c\x59\x79\x3a\xc2\xa7\x5b\x6d\x49\x21\x04\xa4\xe9\xb7\x7a\x7a\x73\x07\x9c\x72\xd5\x2f\xed\x77\x3d\x89\xd5\x09\x8b\x9c\xde\x19\x9d\xd1\xfd\xbc\x35\x3f\x90\xaa\x54\x1a\x16\xeb\xeb\xa5\x2b\xca\xbd\xde\xb0\x86\x73\x07\xba\xc9\x2b\x61\x3f\x7c\xd5\xa4\x53\xd5\xf8\xb1\x86\xae\xd2\x10\xbc\xa8\x8e\xe5\x73\x6a\xb1\x07\xc9\x78\x1c\x66\x59\x98\xc4\x7b\xd4\x91\xeb\xd5\xba\x4e\x15\x23\xd7\xb7\xb1\xf2\x11\xd8\x5e\x2d\x15\xa1\xd4\x69\x15\xbd\x5f\x26\xb7\x03\x8b\x64\x67\xef\x31\x95\x8c\x4b\x97\xc3\xd8\x28\x40\xe9\x4d\xcc\x0a\xbe\xe2\x70\xe9\x70\x95\x3b\x1a\x12\x4b\x2f\xbd\xd4\x9d\xa4\xc9\x78\x02\x5a\x6d\x5e\xe5\x9a\xca\x74\x53\x71\xfe\x37\xbd\x15\x42\x85\xa5\xb1\x1d\x56\x54\x20\xdf\x57\x6d\x5c\xef\x2b\x84\xc8\x28\x99\x80\x31\x0e\xcb\x1e\xf4\xd6\x7c\xdd\x98\x31\x12\xa9\xf6\x87\xa6\xbf\xd6\xd1\x5c\x3a\x9b\xaa\x0a\xb0\xd9\x38\x4d\x16\x16\xba\xc6\x4f\xc7\x7e\x6a\x45\xd8\xb6\x8e\x57\x26\x73\xeb\x78\xb9\x57\x52\x83\xbb\xa6\xf6\xff\x93\x6f\x70\x0a\xe0\xb6\xb7\xf3\x6b\xbc\xac\x6f\x2a\x00\x09\x96\xa8\x25\xb8\x55\xcc\x57\xca\x54\x8c\xc3\x3c\x45\x6c\xaf\xe0\x11\xae\x9c\xf2\x94\x73\xa3\xdc\x01\x80\xd7\x47\x5d\xea\x88\xae\x6b\x1d\x51\x42\xa7\xb1\x9f\xe5\x60\x3b\xb4\xad\x0e\x0a\x98\xb9\x7d\x06\xe7\xe7\xbb\xd9\x28\x1c\xf0\x57\x5b\x6f\xb7\x9a\x41\xa1\xbf\x55\x12\x7b\x45\x10\xa2\xea\x68\x4d\x95\xe5\xc4\x38\xd2\xa8\x20\xce\xcf\x77\xcd\x2b\x79\xea\x77\x1c\xf6\x12\x44\xcc\x7c\xad\x02\xe2\x98\x8a\xdc\x7b\x69\xcf\x5b\x3f\xb4\xf2\xb8\xb1\x08\xa6\x7a\xb4\x22\x85\x29\x87\x6c\x0e\x3c\xe0\xb3\x5a\x46\x5d\xf3\x83\xde\xc1\x3e\xe0\xbf\x52\x2d\x6d\x3f\xb5\x1a\x7a\x55\x44\xed\x8f\xa3\x30\x46\x07\x1d\x4c\x12\x34\xe8\x90\x26\xe8\x10\x1a\x43\x60\x61\xae\xaf\xa1\xc9\x6e\xbc\x6f\xa1\xbb\x3a\x4a\x28\xb3\xa1\x41\xef\xa8\x3f\x09\x64\x62\xfb\x87\x5e\x7a\xa9\xfa\x6f\xba\x66\x97\xbf\xf5\xad\xd5\xa6\x6f\x01\x52\xc6\x61\x30\x32\x1d\x05\x5f\x43\x77\x86\x10\x11\xe9\x42\xec\x20\xcf\x76\xa9\x52\xc9\xf9\xd2\x01\x0d\x2f\xe2\xd8\xc5\x11\xf9\x47\x48\xc9\xb2\x4e\xaa\xe7\xda\x10\x4e\xd5\x7a\x6a\x08\x62\x9c\x29\xfa\xa1\x37\xe9\x4f\xf9\xba\x7c\x52\x09\xe6\x67\x41\xb2\x42\xa4\x63\x1d\xb2\xfd\x88\x0e\x20\x6c\xc2\xd7\xa5\xc3\x30\x06\xc9\x64\x8d\xe4\x34\xaa\x68\xa1\x7a\x2f\x71\x85\x5d\xd2\xf8\x96\xe2\x41\x3e\x5e\x6e\x87\x3f\x8b\x6b\x46\x0f\xb8\x62\xe2\x6a\x35\x4d\xb9\xae\x19\xd6\x4e\x63\x1c\x66\xa9\x3d\x3e\x15\xce\x3e\xfb\xc2\xb3\x8a\x7c\x70\x53\x27\x22\x36\x6d\x32\x32\x4f\x26\x13\x4e\xc2\x28\xe2\x67\xa1\x63\x3b\xe3\xb9\xb4\xe2\x4a\x48\xfc\xc7\xd5\x88\x63\x6a\x2e\x63\xc4\xf9\x46\xb1\x6b\xd7\x55\x6c\x1f\xab\xf5\x6e\x87\x2b\x66\xaa\xee\x8d\xdb\xa9\xbe\xae\xc2\x94\xa3\x5f\xe8\xad\x66\xfe\x5a\xc6\xe4\x4c\x42\x1b\x56\x1d\xc0\x38\xbf\x41\xb6\x61\x5f\xb8\x3a\x60\x90\x8a\xff\x39\xe0\x9f\x71\x52\x72\xe1\x11\x16\xf9\x9a\x8d\x72\x72\x9f\xb2\x4c\x8e\x76\x04\x8f\x78\x49\x07\x09\x97\x74\x56\xaa\x08\xa3\xbe\x49\xb7\xad\xdc\xf9\x79\xbb\x72\x5d\xe8\x98\x44\x6b\xe3\x49\xc8\x15\x66\x61\x8c\xd1\xbd\x11\xa7\x95\x55\xa2\x8e\x25\xb4\x2d\xc0\xca\xfe\x2e\x56\x33\xe2\x3d\x0d\x98\x66\x10\x1b\xde\xfd\xdd\xd2\xa9\x3b\xfd\x2e\x19\x08\xfe\xff\x0d\xb8\xdd\xbe\x85\xee\xc8\x8c\x93\x34\x1d\xf9\x8e\xac\x43\x02\xd7\xea\x83\x7c\xad\x1a\x3a\x82\xd4\xf4\xc3\x3c\x49\xa9\xec\x67\x51\xb0\x2f\xb8\x1b\xcf\xd1\xe3\x5d\xa0\x27\x14\x6c\x5e\x1b\x19\x70\x3e\x22\x01\x95\xa9\xca\xb5\x43\xd6\xf5\xa8\x92\x04\x39\x4b\xcb\x47\xfa\x16\xb5\x9a\x52\x18\x1f\x42\xbf\x05\x0b\x65\xd3\x82\x81\xef\xd1\x59\x77\x31\x16\x23\x06\x60\x00\x19\xe7\x65\x75\x3b\xf7\x2d\xb0\x17\x86\x15\x0b\x67\xf9\x07\xe4\x53\x31\x9d\x34\xd5\x49\x39\xf5\xed\x39\xca\x18\x30\x34\xa3\xd3\xec\x1c\x12\x23\xc2\x3f\xad\xb8\x46\x76\xf4\x34\xd8\xe2\x43\xac\x41\x2c\x08\xc6\xe0\x63\x41\xde\x44\x9e\xc5\x26\x86\x17\x9f\x17\x28\xe1\x9f\xea\x1e\xc0\xe9\xf5\x56\x6e\xeb\x28\x0c\x0c\x2c\x0b\x20\x39\x17\x55\xa7\x19\x5c\x69\x3c\xda\x65\x4b\xf2\x66\x11\x77\xa4\x38\x87\x52\xe6\xd6\x69\x35\xc3\x2b\x49\xe4\xe7\x61\x64\xd0\x00\x8d\xb3\xe5\x9c\xea\x97\xd1\xc0\xbb\x5f\x56\x6c\xd4\xc7\x28\x7f\xc3\x7f\xaf\x18\xc6\xaa\xf5\x15\x52\x7c\x2e\x88\x5c\x8d\xc4\x62\x7a\x79\xab\xdf\xe6\x48\x67\xe1\xd1\x28\x4a\x17\x51\x98\xbd\x57\xba\x82\xdd\xd8\x8f\x7d\x71\x21\x68\x41\xf0\xb4\x28\x4d\xb6\x73\x2a\xc9\x76\xc8\x18\x2a\x9e\xcd\xe9\xa8\x69\xc1\x72\xe6\xb7\x00\x92\x72\x3f\x1d\x9a\x7c\xca\x1d\x2f\xef\x95\x8a\x4b\xe1\x98\xe2\x4e\xbe\xa0\x93\x74\x2f\x23\xed\x02\xaf\x74\x47\x4f\x71\x58\xec\x58\xd7\x05\xff\x6c\xb7\xab\x76\xde\xd3\x28\x96\x6b\x18\x0a\x64\x16\xff\x2a\xd1\x92\x60\x5d\x5d\x70\xed\xaf\xff\xfb\x13\xc8\xa5\xc9\x92\x7e\x4c\x11\x3c\x15\x59\xc8\xf0\x04\x06\xc1\x7b\xae\xa1\xf9\x5c\x63\x2f\xce\x1d\xa8\xc2\x80\x22\xee\x17\x93\x8e\x02\x2e\xd2\x67\x04\xc4\xd8\x82\x1e\xff\x56\xc1\x6d\x33\xd8\xe3\x1f\xb1\x25\xe3\x8a\x47\xe9\x7e\xf1\xb4\xee\x0f\xdb\xd1\x73\x0f\xba\xe2\xa7\x61\xc2\x32\x95\xec\x8f\x90\x6f\xb1\x75\x4e\x09\xb0\x5d\x2e\x15\xab\x36\x83\x6a\x05\x74\x5d\xad\x39\xcb\xeb\xee\x22\xe0\x3b\x0a\xbf\x8f\xee\x43\x14\x72\x6e\x7b\xdb\x30\xe9\x4b\x33\x84\xa4\xdd\x43\xbf\x80\xc5\x7b\x17\xdb\x18\xd9\x84\xd7\xe9\x8b\xa4\x0f\xd7\xe5\x0d\x8e\x54\x6f\xb7\x75\x51\xf3\x65\x5d\xd2\x6d\xef\x9a\xaf\x71\xd9\xfc\x4c\xa1\x2c\xe7\x2e\x84\x63\x92\x8c\xaf\x96\xf3\x2e\xe7\x40\x6f\xc0\xdb\xc2\xf4\xff\x0f\x65\x5d\x17\x6a\x69\x86\xd1\x51\x1b\x75\x74\x54\x1b\xd2\x7b\x10\xf9\x43\x94\x8e\x85\xfd\xa3\xa3\xf8\x42\x5a\x24\x2a\x40\x44\x2b\x69\x38\x86\xfb\x97\x8a\x32\x63\xc3\x1e\xea\x41\xea\xc7\x87\x50\xfc\xb1\x90\xd5\x0b\xb5\xdd\x51\x6b\x63\xcd\x93\x69\x57\x82\xfb\xbd\x52\x09\x1b\x7c\x5a\xba\x3a\xdd\xef\x69\x68\xee\xa7\x6a\x7f\x2d\x17\x50\x5c\xb1\x30\xd3\x6a\xe3\xc0\x87\x3d\xa1\x70\x0b\xe0\x9a\x46\x18\xdd\xa4\xc0\x9b\x9d\xed\x06\x51\x42\xbc\x41\xd3\xae\xab\x80\xa1\x93\x02\xab\x73\xe6\xf4\xc1\x9e\xeb\x73\x38\xda\x66\x2a\x46\x8e\xcf\x9b\xc9\x03\x3d\xf7\x8e\x2f\x35\x3e\x41\x00\xee\x41\xc8\x5d\xd0\xbc\xaa\xe8\x13\xb2\xc2\x14\x10\xdf\xe4\x39\x29\xe0\x56\xa1\x83\xf6\xdb\x61\xe2\x80\x08\x82\x1b\x73\x45\x2b\x78\xff\xb4\x2d\x7c\x5c\x0e\xfb\x7d\xcb\x95\x84\xed\x02\xef\x4b\x34\xe1\x5c\x21\xee\xb7\x6d\x4c\xb1\x5c\xa4\x7d\x13\x67\xc9\x98\x41\x32\x96\x5e\x68\x49\xb2\x82\xef\x95\xae\x7c\xbf\xa5\xb0\x85\xc7\x14\xbd\x46\x6a\x20\xc7\xe3\xc7\xd3\x4a\xa6\xeb\x0e\x16\x38\xef\x3e\xfa\x1a\x5c\xe3\xbd\x80\x67\x9a\x5e\xb7\xf2\x5c\x45\x8a\x55\x06\xf0\xc9\x9e\x9e\x03\xa2\xec\x59\xd7\x18\xe3\x2c\xf7\x8b\xd4\xa7\x2a\xbd\xa3\xe8\x3f\xab\x98\x0b\xcf\x7a\x4e\x7c\xfa\xb4\x9a\xac\xd3\x8e\x12\x75\x14\x4e\x22\x3f\x1b\x29\x96\xf6\xd7\x60\x99\x45\x06\xb7\x85\x99\x7a\xe0\x67\xc8\x1b\x38\x99\xa5\x45\x6b\x46\x95\x06\x84\xf7\x55\x57\xdb\xeb\xaf\x98\x34\x0f\x33\x41\x15\x54\xcf\x2b\x8a\x78\x0e\x35\xf3\x3a\xbc\x0d\x8d\x87\x13\x09\x3d\x17\xcd\xbc\x9c\xc4\x7e\x3e\xf2\xe3\x29\x0d\x27\xb9\xa5\xa1\xc2\x4c\x5a\x85\x71\x9d\x6a\xec\x8b\x03\xcf\x77\xb3\x71\x92\xe4\xa3\x08\x72\x0b\xc8\xb9\x9d\x57\xad\x3a\x57\x95\xbe\xe3\xfb\x2a\xd0\xf8\x7b\xcf\xfe\xfd\x4e\xe5\x83\xe3\xd4\x42\x45\x83\xaf\x6b\xad\x19\x93\xd0\x74\x34\xdc\x78\x53\xf7\x51\x6d\x7a\xae\x8e\x93\xe5\x4a\x5f\x4b\x0c\x55\x47\xd1\x17\x3d\xa1\xb6\x88\x94\x26\xd0\x9c\xa4\x65\x82\x91\x4e\x7a\x1b\x66\x46\x0a\x15\xca\xcf\x4e\xfd\x70\x48\x07\x31\xac\xda\x4e\x5a\x51\x56\xdd\x75\xd6\x89\xff\x74\xbe\xf9\x75\x8b\x5e\xae\x86\x03\xa6\xe5\x33\x4d\xd9\x77\x5e\xa1\xfd\xc7\x26\xcb\x4c\x15\x48\x74\x1c\x63\x4d\xbd\xe3\xa2\x8d\x81\x3c\xf6\x97\xab\x28\x93\x47\x48\x24\x96\xe9\x27\xf8\xc6\xb3\xc4\x8c\x66\x92\x85\xb4\xd4\x10\xa6\x7d\xa8\xd1\xd2\xf7\x35\x4f\xd8\x54\x4f\xe9\xf5\x25\x93\xd0\x4f\xd7\x10\x40\x23\xb7\x75\x9d\x36\x2c\xa2\xa2\x1d\xc8\x7d\xe2\x50\xdb\x50\x2c\x1c\x3b\xd6\x15\xf1\x4c\x33\x30\x3b\xf0\x7c\xf7\x5b\x85\x9f\xe6\x26\xad\x16\x8e\xed\x95\x01\x23\x96\x9c\xe4\x16\x54\xf8\x77\xb7\x1a\x59\xb3\x2a\x1c\x29\xc6\x45\xc4\x2a\x45\xb0\x67\x97\x34\xfd\xff\x25\xef\xcb\x4a\x9e\x30\xce\x4d\xdc\x27\x08\xce\x73\x7c\x42\xd3\xa9\x6c\x31\x62\xce\x1e\xfd\x65\xa9\x2c\xc0\x05\xd5\x91\x39\x31\x7e\x56\x59\x88\x3d\x9d\xd9\x59\xf6\xe9\xae\x79\xea\x2d\x2f\x2b\xae\x80\x7b\x9e\xa3\xdd\xba\x56\x6a\xb7\xc7\x85\xae\x77\x29\x19\xc9\xda\xa9\x0a\x82\x16\xf8\x45\x66\x90\x8a\xe2\xa2\xb2\xda\x1c\xe7\xac\x4c\x64\x96\x1b\x13\x8d\xfd\x43\x55\xe8\x49\x67\x9a\x98\x50\x85\x3e\x38\xd6\x38\xdb\x9f\xe9\x4e\x8a\x6c\x84\x6d\x62\xa7\x47\x2b\x03\x1c\x55\x7b\x34\x37\xc1\x54\xb5\x8c\x59\x8b\xb8\xb4\x19\xbd\xff\xf6\x89\x9e\xa2\x32\xf8\x72\x03\x22\x3b\x77\xa0\x3b\x32\xd1\x24\x32\x19\x18\x1a\x25\x8f\xe2\x52\x82\x77\x15\x4d\xd2\xa5\x96\x16\x91\xa5\xae\x9f\xe7\x45\xcc\x48\x26\xac\x2f\x10\xd3\xdb\x56\xac\xea\x99\x11\xb1\x5c\x6c\xa4\xdd\x0e\x3c\xdf\x35\xdf\x2a\x7c\x80\x2a\x2c\x80\xc1\xa6\x94\x6e\x58\xa3\x1d\x27\xb1\x59\xa1\xb2\xd2\x36\x2e\x01\xbe\x6e\x0c\xe0\xfc\x7c\x37\x36\xe1\x50\x4b\x73\x42\x16\x5e\xba\xf9\x5a\x32\x5c\x79\x38\x0e\xfb\x21\x27\x24\x51\x73\xf8\xb6\x22\x68\xfc\x76\x5b\x42\x32\x35\x99\x94\x10\xdb\x54\xcc\x15\x7d\x55\x32\x36\xab\x23\x3f\xdf\xab\x6a\xf0\xbb\x00\xcb\xb7\x9d\x48\xce\x33\xd2\xdd\x06\x4c\xa9\xa1\xe5\x88\x11\x19\x3e\x41\x46\x0d\x40\x81\x5d\xd8\xc8\x02\x37\x69\x13\xa0\xcd\x26\x26\x08\xfd\x88\xda\xe8\x5d\x32\xc6\x73\xb5\xe4\xa3\x8a\x80\x2d\x89\x4d\x1e\x8e\xa1\xa2\x68\x5b\xa0\x5d\x4f\x13\x72\x99\xdc\xa7\xa9\x04\xd7\x72\x13\x99\x61\xea\x4f\x46\x9c\x77\x42\x40\x7c\x94\x56\x04\x5f\x97\xdb\x89\xb4\xaa\x67\x5b\x0e\x89\xc0\x30\x8e\x85\xfd\x4f\x22\x87\xea\xf7\xc5\x3b\xfa\x22\x5e\xd2\x70\x4c\x65\x5c\x85\xa6\x07\x51\xa4\xc8\x81\xb7\xa0\xd5\x48\x1a\x9d\x7e\x08\x1d\xd6\x47\x54\x47\xbf\xe6\x5f\x5c\xa5\x8c\xb6\x64\x26\xb1\xbe\x6f\xa8\xc4\xc1\x5b\x35\x31\x33\x9d\xf7\x53\xfa\x2a\x0f\xae\x37\x90\xf6\x4b\x8b\x04\x7c\x32\x29\x5a\x56\x30\xe9\x5c\x4e\xc7\x1c\xde\xf6\x94\xd6\xfb\xa9\x72\x7b\x9e\x67\xee\x40\x97\x18\x1f\x73\x3f\x8c\xad\xe7\x27\xd9\x5b\x07\xfc\xeb\xd0\x12\xe1\x0e\x20\x85\xf5\x8c\xaa\x18\x38\xdd\x4d\x3f\x81\x42\x12\x6b\x4a\xf2\x0d\xd6\x22\xcb\xb8\xa2\xa4\x05\xc7\xee\x96\xda\x10\x67\x4b\x27\xdd\x74\xbc\x31\x3b\xb3\xb3\xdd\xe5\x24\xee\x8f\x92\xa8\x6f\x6d\x9f\xc4\xbb\xaa\x05\x5d\xc7\xd8\x0b\xd5\xaa\xb1\x14\x6d\xe7\xeb\x52\x0f\xcd\x25\x5d\x9d\x17\x83\x30\x0b\xfc\xbc\xde\xbe\xac\x55\xbd\x18\x56\x29\x4a\x5b\xdb\xd7\xde\x81\xe7\xbb\x63\x3f\x2e\x06\x7e\x90\x17\xa9\x49\x99\x7e\x45\xd4\x0a\xd5\x82\xbf\xec\xe9\xd2\x4c\x53\x67\x64\xee\x40\x37\xf5\xe3\x7e\x32\x66\x1c\x05\x6a\x5f\xc7\x94\x4a\xca\x31\xc5\xaf\x15\x99\xfe\x5e\x17\x86\xbc\x59\x2a\x02\x84\x6b\x0e\x8a\x33\x7d\xb7\x86\x9f\x51\x78\x7f\x2e\xa8\xc0\xca\x5c\xf3\x1c\x3f\xf5\xbd\x9a\xec\xfa\x8f\x54\x0e\x68\xec\x87\x51\x9a\x24\xcc\xeb\x25\xbc\x91\x35\xfd\xf2\xbf\x62\x21\xe5\x45\x4c\x85\xe4\x95\x24\x2a\x88\x9f\x23\x05\x76\x5a\xb8\xdc\x9c\xe7\x7c\xca\xfa\x2d\x7e\xbf\x88\xe0\x22\x0b\x2f\x4a\xc7\x4a\x31\xfc\x2f\xe4\x20\x89\xa7\xfa\x55\x15\x3b\x8c\xc0\x7f\x47\x25\x95\x69\x07\x89\x38\x5c\xe7\x3a\x72\xbd\x63\xbb\x7a\xae\xe6\x7e\xa5\x11\x09\xed\x5b\xe8\x0e\xfc\x28\x33\x0c\xf5\x16\x36\x9e\x6a\x3e\x84\xa6\xc7\x85\xf0\x43\x13\x9b\x6c\x0f\xfd\x8e\x45\x9b\xbe\x30\x77\x80\xc3\x0e\x34\xd7\x58\xf4\x8f\x65\x1b\xb8\x5e\x6a\xe0\x2a\x2f\x0a\x81\x19\x6b\xc0\x90\x84\x36\x2b\xe1\x8a\x3f\xed\x5a\xa1\xce\xd3\x21\x84\xc9\x82\x9a\x2e\x72\x9c\x47\x4b\x85\x00\xbb\xd5\xd8\x4c\x07\x67\x16\xba\xfd\x30\xa3\x56\xba\x02\x49\x20\xf6\x4d\x15\x52\xe7\xbc\xb2\xdf\xcb\x61\xb0\x16\x44\xe2\x93\xc3\x4b\x7a\x5b\xbb\x4c\x6f\xeb\xec\x6b\x1a\xfa\xd1\x6e\xe7\xfe\x5c\x57\xb2\x93\xbf\xa6\x90\xe5\x97\x90\x46\x41\x32\xe8\x9e\x82\x2a\xfc\x9a\xa7\xba\x3b\x9a\x79\xa5\xa5\x99\x6e\x1e\x8a\xcf\x2f\x8c\xc9\xb4\x2f\x85\x4b\xb9\x85\xf0\xbb\x6f\xaa\x97\x5d\xc3\x7a\x15\x9d\x95\xea\x19\xf9\xba\x41\xb2\xb9\x6f\xa1\x3b\x4c\xa2\xfe\xb4\x66\xda\x52\x82\x0e\x08\x01\x6c\x7f\x6e\xf5\xeb\x92\xd8\xdf\x96\x40\x9a\x9f\x5f\xaa\x0e\xa5\x69\xd5\x17\x79\xb6\x54\xd9\xa4\xcb\x4a\xac\xf8\x5d\xcd\x57\x72\xa2\x6d\x45\xf6\x4d\x06\xf5\x69\x9b\xc3\xe6\xe4\x21\xdf\x34\xd8\x4b\x66\x67\x51\xe6\x9c\x72\x14\x69\xcc\x5e\x62\x63\x16\xeb\x9c\x3a\xed\xec\xbe\x99\x28\xd0\x2d\x66\x65\x67\x4f\xd1\x87\xee\x54\x59\xca\x45\x9f\x8f\x4b\xe4\x04\xde\xc7\x4b\xf0\x8d\x4a\xae\x56\x61\xef\x74\xe5\x47\xc3\x9b\xbb\xe1\xe9\xd3\x0a\xc6\x83\xff\x85\x9e\x49\x8e\xb1\x16\xe3\x38\x48\x43\x13\xf7\xab\x28\xc2\x8a\x6b\x01\x8c\x84\x1f\xdd\x4d\xe5\x4b\x14\x4d\xb7\x14\x77\xef\xa1\x62\x8c\xc4\x80\xad\xf6\xba\x84\xa0\xa3\x0e\x0e\xc2\x34\x28\xc6\x2b\x0e\x1f\x88\xea\xd1\x15\x3c\x21\xdf\x34\xf6\xd4\xfc\xfc\xfe\xee\xc4\xa4\x83\x24\x1d\xdb\x4a\x09\xca\x4b\xaf\x29\x8e\xea\xd7\xd4\x70\x8c\x7c\x42\xd6\xb8\x4a\x9b\xae\x48\xb5\xf4\x4f\x27\x45\x4e\x02\x2c\xbb\xd4\xb0\x7d\x4a\x6b\x18\xcb\x90\xe1\x44\xfa\x64\x15\x16\x35\xdd\x9d\xe5\xc2\xda\x49\x91\x66\x3f\xa3\x10\xaf\x84\xd4\x2a\xa7\xe5\x81\x2a\xce\x65\xc0\x6f\xa9\x54\xef\xf0\x4b\x38\x7e\x77\x53\xcb\x33\xff\x7f\x85\x8a\xfd\x15\xd6\x46\xd0\x24\xe3\x70\x4c\xa6\xb0\x7a\x2d\xf3\xb0\x92\x26\x90\xc2\x63\x10\x25\xb1\x00\xad\x84\x88\xaf\xc6\xd0\xf7\xb0\xad\x50\xae\xc6\xd9\x34\x6c\x14\x97\x74\xf0\x0c\xac\x6f\x4a\xf3\x50\xd3\x3a\x95\xc2\x8f\xb2\x74\x49\x32\x96\x5a\x36\x8a\x5b\xf0\xbd\xf8\xba\x0d\x3e\x9e\x0c\x06\x99\x6e\x24\x05\xe6\x03\xf1\x1b\x5f\xb7\xd2\x0f\xf8\xac\xc6\x25\x45\x40\x7a\x27\xc4\x36\xbf\xab\x94\x15\x9b\xc8\x85\x85\x85\x6e\x31\x19\x85\xfc\x71\x58\x91\xc3\xaa\x9e\x89\xa0\x47\x58\x0d\xbe\xac\x92\xfe\x2b\xc6\x11\xcf\x8b\x36\x20\xc6\x0b\x69\xcb\xab\xf4\xae\x22\xdd\xa6\x74\xbe\xae\xb6\xb5\xc2\xc6\xe6\x95\x7c\xda\xb1\x90\xfe\xa5\x22\xbe\x45\x95\x8f\xbb\x49\x35\x03\xde\xbf\xb3\x47\xbc\xf1\xd3\x98\x37\x98\x2c\x59\xc5\x86\x7d\x4b\x45\xa4\x71\x18\x4f\x29\x8a\x10\x84\x6a\x38\xff\x89\x92\xc4\xfe\x7f\x95\x51\xf7\xb3\x10\xb0\x35\x2c\xcc\xcf\x28\x17\xc6\xd7\xaa\x9f\x7f\x25\x34\xab\x02\xd4\x15\x12\x9e\x8e\x6d\x9e\xbc\x50\xaf\x9e\x37\x79\x95\x5f\xec\xbe\x5c\xf4\x87\x0c\x49\x10\x32\x20\x87\x55\x3c\xaa\x30\x3c\x93\xc8\x5f\x7b\x58\x8d\xe8\x51\xc4\x61\x40\x02\xde\x50\x7d\x75\x0f\xf6\x94\x04\xd5\xce\x9e\xea\xc4\x43\x53\x07\xab\x50\x52\xda\x09\x2f\x3e\xbd\xae\xfa\x8a\xb6\x3c\x07\x3a\x45\x6f\x32\xd2\x78\x3b\xd7\x15\x7b\x11\xb3\x09\x48\xc2\xb3\x25\x12\x1d\x24\x51\x94\xac\xa2\x18\x60\x4b\x8f\xd5\xaf\x08\x9a\xa8\x0d\x4e\x53\x84\xa4\xd1\x64\xb3\xd5\x27\xb0\xeb\xa5\xe5\xdd\x26\x31\x26\x26\xc8\xfd\xa0\x88\x7c\x08\x3a\x89\x12\x7c\x47\x49\xc4\xb7\x14\x93\x8c\x9f\x46\x18\xe9\xd6\xce\xff\x16\x70\xf3\xc8\xef\x2b\x8e\xb7\x33\x3a\xbd\x77\xc6\x36\xe0\xfa\x79\x9e\xa4\xb1\x59\x9b\xd2\xe2\x0d\x58\x63\xe2\xf2\xd1\xef\x08\x87\xa5\x3b\x4e\xfc\x61\x38\xc1\x08\x49\xab\x05\x4d\xa9\xf4\x5a\x48\x66\x9c\x11\x6d\xe2\xf6\x62\x06\xee\xd0\xdb\xf2\xb5\x6d\xe4\xf2\x03\xea\x75\xa1\x63\x0d\x73\x0b\xa8\x83\xe0\x6d\xe9\x41\x44\xb4\xed\x61\xdb\x25\xd6\x37\xc9\x54\x1d\x7a\x66\xd9\x6f\x18\x5b\x88\x34\xcf\xc9\x36\x92\x98\x2a\xee\xc9\xc2\xbe\x30\xf3\x2f\xb2\x83\xf3\x6e\xa9\x14\x33\xde\x55\xed\x28\xfd\xa2\x1f\xb1\xa8\x2c\xd7\x15\xf1\x13\x52\x64\x74\xd5\x2a\x14\x25\x6c\xed\x75\x41\x57\x63\xe6\x2c\xe9\x87\x3b\x66\xfc\xfe\x38\xcc\x3b\x95\x83\x20\xb1\xb6\xd3\xd0\xb9\xa5\x93\x1f\xb9\x49\xa3\x30\x1e\x02\x35\x55\xcb\x49\x62\xd7\x70\x9f\x33\xcb\x4a\xd0\x08\xda\x06\x4c\x07\x6d\x79\xc7\x73\xf2\xd1\x12\x90\xf1\xbf\x94\x2e\x03\x73\x4f\x75\x71\xad\x84\x26\x8f\xfd\xb1\xc9\x6a\xe2\xa7\x1b\x4a\xb5\x69\x43\xb5\x33\x6d\xe8\xca\xf5\x46\x23\x5b\xb5\x34\xd3\x1d\xf9\x44\x0a\x73\x50\x70\xa8\xa7\x55\x46\xf2\xb4\x4a\x42\x0a\x64\x9b\x3a\xf5\xe0\xe2\x70\x23\x3f\x8a\x06\xb7\xb0\xcf\xf8\x86\xbe\xc4\xd6\x06\x6c\x1b\x16\xcb\xff\xc1\x47\x06\xc0\x8b\x73\xae\xaa\x85\xa8\x6f\x02\xbf\x6f\x62\xc8\x3e\xf0\x17\x9e\x51\x54\x35\x67\x5a\xc9\x42\xfd\xa2\xcf\xe8\x38\xf6\xc5\xc8\xda\x8a\x5f\xf6\xe4\x76\x32\xcc\xc5\xee\xd3\x4f\xef\xad\x02\x17\x9c\xc5\x9f\x81\x66\x0b\x6b\xf7\x8a\xe7\x30\x3a\x47\xbc\xce\xd3\x4f\xeb\xcd\xfb\xa2\x23\x2e\x70\xf8\x08\x36\xd2\x08\x1d\x44\x5d\x8a\xfb\x8f\xb4\xda\x5e\x9e\x81\x9f\x5e\x49\xe0\xc8\xc6\x65\x00\x10\x6a\x3b\xff\x1d\x65\x71\x2d\xf3\xb9\x13\x23\xfb\x4f\xe0\xaa\x20\x13\x30\xbd\xee\x04\x68\x7f\x9b\x96\x0b\x59\xd9\xe3\x5f\x5d\x17\xb7\x25\x5b\x0d\xf3\x60\x44\x47\x34\x10\x2a\x88\x36\x99\x69\x43\x49\x27\xdc\xab\x95\x3e\xb2\x22\x9e\xa6\xa9\xc5\xfe\x3d\x49\x41\xbb\x5c\xd3\x33\xf3\x8d\xe7\xc2\xc8\x93\xea\x9c\xa9\x42\xa3\x69\x97\xf4\xfc\x1c\x4b\x43\x54\xe8\x5c\xfe\xf2\x73\xbd\xbf\x8f\x28\xea\x9d\x22\xee\x9b\x74\xc5\x8f\x8a\xca\x1e\x54\x6e\x1e\xf2\x58\xb7\x3c\xc7\x3d\x78\xab\x7c\x5c\x41\x76\xe3\x3c\x8c\x0b\x3f\xc2\x1f\xdb\xe3\x7f\xdf\x82\xcd\x2e\x38\xef\x0a\xd0\xa0\x6c\xca\xc5\xe6\x4c\xac\x82\x4d\x7c\xb7\x96\xa0\xfb\xb2\x6a\x29\xcf\x4d\x1a\xfb\x11\xa5\x85\x31\x98\x53\x68\x19\xb2\x38\x22\x1b\xc3\xdc\xb4\x0e\x46\x30\xf2\x07\x2c\x6a\x88\x34\x3a\x94\x6d\xf9\xba\x0d\xe9\x3c\x4e\x62\x2a\x6a\x29\xdd\x4a\x6c\x49\x5b\x95\x5f\x72\xcf\xed\x1e\x6f\x40\xa2\xca\x71\xde\x69\x0a\x38\xf2\x8d\xe7\x74\x11\x57\x93\x43\x80\x1c\x23\xbc\x85\x22\x89\x1c\xaa\xf4\x4e\xb0\x41\xc7\xec\xa1\x90\x10\x0a\x96\x1d\x60\xd6\xb9\xa4\x4f\x89\xe6\xe5\x23\x2a\x4e\x8f\xa2\x2f\xa9\xf2\x34\xc7\xc5\xb6\xf6\x53\x7d\x3d\xdc\x9c\xdb\x48\x4f\x60\x3f\xfd\xb9\x82\xf0\x22\x8e\x12\xed\x00\xec\x26\x89\xca\x14\xfb\xc1\x1b\xe5\xf6\xd0\x68\xd1\x86\x75\xd5\xec\xc2\xea\x9d\x2a\x9d\x99\xb9\x48\xb6\x88\xe5\x6a\xea\xb1\x54\x4b\xb0\x33\x4c\x92\x7e\x6c\x32\x54\x44\xe0\x8d\x9d\xf5\x14\x85\xcd\x59\x1b\xaa\x06\xc9\x78\x5c\x59\xac\xbe\x96\x6f\xe1\xb3\x5e\x68\xa3\x5c\x84\xf0\x4a\x18\x6b\x81\xc2\x73\x0a\x83\x72\x4e\xe3\x73\x5e\x7d\x95\x00\x16\x38\x6b\xf7\xf6\x94\x67\x0a\x39\x39\xed\x91\x21\x49\x73\x52\x75\xfb\x6c\x2a\x75\x90\xd5\x30\xaf\x5e\xc4\x20\xcf\xc2\x79\xc4\x5a\x4e\xb1\x8d\x1f\x2d\x09\xc8\x95\xb2\x38\xbd\x7f\xee\xb9\xd6\xd4\x7f\xde\xd6\xf6\xe2\xc7\x71\x52\xc4\x01\x97\x12\xdb\x30\xdf\xae\xf1\x6a\x79\x2d\x85\x63\x84\x53\x91\xfd\x0a\xbe\xf1\xbe\xa2\x32\x39\x49\xb1\x1c\x19\xa9\x37\x29\xf5\x14\x25\x4a\xb0\x59\xd6\x09\x0f\xf2\xff\xbf\xea\x65\xff\x61\x59\x99\x70\x4b\xf2\xbd\xb4\xb8\xb5\x8b\xfa\x2e\x44\x47\x95\xbe\x13\x3b\x6a\x2f\xc5\x8e\xd2\xd8\xa3\xf8\xc4\xdf\xa4\xae\x4e\xb1\x42\x0a\xaa\xb9\x6b\x9d\x5a\x2d\x70\x8a\xfc\x89\x86\xf8\xf5\x3a\x2f\x2c\xda\x9c\x46\x75\xd2\x00\xab\xd3\x81\x05\x97\x1e\xba\xea\xa4\x81\xbb\x37\x0d\xbd\x3d\xe4\x46\xb7\x98\x5d\x0b\xb6\x95\xf3\x78\x88\xa6\x76\x93\xbe\x3c\x1e\x7e\x0b\x29\x75\x78\x09\xd3\x04\xc0\x82\x67\xcf\xa2\xbf\xb4\x3b\xbf\xf3\xe5\x75\x62\x67\x52\xc0\x21\x11\xbc\xbf\x8b\xed\xc4\x02\xea\xa5\x1b\xd0\x5b\x38\x0f\x91\xf8\xec\x30\x4a\x10\x9f\x39\xae\x74\x81\x72\x82\x0d\x93\x00\x5d\x35\x24\x96\xf0\xb6\x1a\x51\x21\xbc\x75\x58\xfa\x2a\x5e\x4c\xb2\x64\x32\x0a\x0d\xcc\xaf\x12\xfa\x97\x38\xf8\x86\x62\x92\x3e\xac\xfa\xe7\x26\xd5\xf6\x9a\x76\xf2\xbf\x90\x10\x40\x4e\xec\xb2\xd7\xd1\x4d\xe7\xfb\xa4\xf1\xf2\xa2\x05\xcb\x9a\x57\x92\x58\x21\x0a\xd9\xc3\xbf\x8c\x0d\xca\x37\xad\x65\xee\x41\x52\x08\x73\x97\x30\x86\xd6\x94\xdb\xce\x58\x0b\x99\xfb\xaf\xf8\xcb\x91\x99\x52\x6c\x93\x67\x55\xfb\xc5\xae\x9e\x73\x56\xef\xd9\x0f\x85\x71\x9c\x4c\xfc\xa0\xe3\x4a\x1a\xc7\x34\xca\xe0\x98\xf2\xbf\xc6\x7e\x1e\x00\x05\xb4\x24\xb8\xf1\x53\x0a\x65\xf0\x53\xb5\x9b\x7f\xaa\xac\xdc\xa9\xb6\x6c\x01\x69\x5c\x67\x79\x18\x45\x8a\x84\x13\x7c\x95\x7c\xbd\x6e\x45\x91\x8a\xc1\xc0\x6e\x3c\x09\xe7\x69\xb2\xa5\xdd\xd9\xe5\x72\xe8\x6b\xa7\x1d\xa8\x91\xbb\x2f\xf8\x86\x8e\x63\x0c\xc0\x1d\x62\xde\xe0\xeb\x46\x05\x83\x14\x59\xe3\x2c\x4f\x8b\xca\x6d\xaf\x0e\xf5\x6a\x48\x71\xe4\xfe\xb8\x74\xc7\xef\x8f\x55\xea\x7b\x94\x10\x03\xef\x92\x84\x62\xa7\x14\xe8\xec\x8e\x12\xb5\xba\x5e\xba\x60\xef\x82\x02\x7e\xbf\x55\xba\x4d\x75\x5b\xf5\x9f\x05\xfe\x78\xe2\xc7\x26\x0d\xb3\x5a\xd4\xc7\x1e\x9e\xc4\x80\xee\xf0\x1b\x44\x3e\x40\x5f\x22\x37\x4f\x0b\x07\x51\xf1\xe1\x52\xf9\x7e\x37\x14\x13\xfe\x2f\xab\x17\xc9\x93\xdc\x8f\x1e\x56\x1d\xa5\x37\x15\xb6\x61\xba\xa7\x24\x4c\x5e\xc3\xe8\xa2\x59\xe2\xb8\x42\x4e\xb2\xd4\x93\xd5\x99\x5d\x12\xca\xbb\x23\xd8\x68\x78\xfb\xa3\xf4\xf6\xfc\x0f\x35\xb4\x10\xbf\x1c\xf6\xe0\x45\xaf\x86\x5c\x50\xd5\x17\x93\x65\xfe\xd0\x30\xa2\x15\x79\x4e\x60\xe9\xf8\xda\x22\x64\x52\xe3\xab\x3e\xc5\x2d\xa8\x8e\x6f\x5d\x74\x5a\xc7\x45\x9e\xa3\x5a\x6f\xab\xda\x56\x3b\xe5\x8f\x61\x9d\xe1\xa7\x5c\x6a\xc4\xd7\x0b\x0b\xdd\xd4\x8f\x51\x71\x84\xbb\x8d\x3a\xa9\x34\x5c\xd0\x40\xc0\x91\x9f\xee\x6d\x3f\xb0\x66\x67\xbb\x43\x3f\xed\x1b\xd7\x01\x85\x83\xf3\x9a\xe2\x84\xbf\xa6\xf8\x33\xcd\x2b\x81\x31\x7d\x52\xce\x84\xcb\xce\x29\x48\x69\x16\xa9\xc6\x53\xb0\x12\x4f\x2a\x04\xc8\x78\x5c\xc4\xf4\xfe\xd3\xae\xb8\xcd\x6e\x16\x2b\xb4\xd3\x14\x8b\x5a\x7b\x75\x22\xf0\x1f\x79\x2e\x8e\xf5\x03\x12\x38\x89\xab\x61\xac\x9e\x00\xb3\x7b\x14\x58\x2b\xbe\x69\x6b\xef\xcd\x56\x8d\xc9\x79\xf1\x5a\xb2\x38\x95\x6d\x6d\x49\xa1\xa0\xf5\x81\x6c\x12\x16\xee\x4e\xea\xa8\xe2\xeb\xc6\x30\x4a\xcd\xba\x6f\x58\x73\xc2\xca\x66\x38\x31\x84\x0d\x4f\x37\x93\xf6\x4d\x4a\xa6\x62\x97\xdb\x28\x97\x4a\x17\x07\x73\xa9\x8c\x49\xc1\x3c\xa5\xfd\x01\xed\x38\xa4\x06\xef\x5b\x4a\x94\x49\x54\x00\x1b\x09\xc8\xd9\x09\x4d\xde\xfe\xba\xe2\x23\x61\xe9\x0f\x59\xaa\x2e\x5c\x59\xf5\xd3\xf1\x5e\x55\x2f\xd8\xd4\x44\x8b\x27\x3d\x27\xc5\xc3\x22\xba\xe2\x50\xd3\xd7\xc1\x27\xf8\x94\x1c\x4e\xd1\x54\x74\x2d\x5f\x37\xe9\xf7\x71\xf2\xd7\xf5\x40\xd3\x64\xf5\x11\xfa\x36\x2c\xb4\x77\xf0\x9e\x7c\x7a\xa3\x6c\x6e\x8f\xc7\xea\x77\x90\x48\xd8\x03\x0d\x65\xb9\xeb\x55\x16\x0f\x01\xe0\x31\xd5\x3d\xbd\x81\xd3\x5b\xc6\xde\x29\x25\x6c\x30\xfd\x94\xed\x0c\xad\xbc\x07\xd1\x62\xd3\x3d\xa3\x9e\x03\xc8\x6a\x5c\x8e\x9f\x99\xc7\x68\xa7\x38\x9e\xb2\x59\x57\xee\xdb\xff\x4f\xbe\x61\x91\x15\xce\x3f\xfd\x83\x52\x85\xac\x0f\x52\xcc\xcf\x6d\xc2\xe4\x6c\x59\x62\xba\x1a\xdf\x43\x35\x16\xe4\xfb\xac\x3d\xc5\x6f\x2c\x2c\x6d\x34\x35\xc8\x59\xbd\x46\xfd\xa4\x36\xfe\xb5\xf1\xdc\xa3\xbd\x9d\x5f\x73\xc2\xee\x82\x70\xff\xb3\xc7\x7b\x4a\xc3\xf8\x8e\xea\xf1\x9b\xa4\xc9\xc0\x20\x3f\x16\xa1\x05\x00\xe1\xdf\xc7\x9e\x22\x4e\xe2\xc6\x4a\xbe\xf1\x14\x93\x13\x1c\x69\x11\x8a\xa2\xdf\xe0\xcf\xab\x83\xc1\x8f\xfc\x78\x5a\xf9\x8d\x27\x3d\x9d\xf3\xbe\xad\x93\x09\x5c\xa5\xe7\x7f\xb1\xcb\x3c\x28\xf2\x6c\x97\x62\xe6\x64\x81\x3e\xbc\xfe\x03\x48\x3d\xe1\x30\x03\xa2\x18\xe7\xcc\x2e\x4d\xb6\x58\x57\x76\x08\xc2\xbe\x96\xef\xf3\x5c\x32\x61\x53\x65\xa7\x07\x95\x57\xd3\xd7\x22\x48\xa5\x0a\xb4\x9a\x62\x32\x73\x07\xba\xa9\xc9\x8b\x34\x9e\x76\x45\xae\x53\x5a\x55\xf5\x37\x68\xa6\x60\x28\x3f\x29\x5d\xa2\xf6\x8a\x56\x4c\x9f\x4c\x22\xbf\xe8\x67\x53\x0e\x3b\x71\x4d\xd7\x7b\x76\x10\xed\x91\x50\xef\x38\x7c\x65\x9e\xfa\x71\x36\x48\xd2\x31\xf2\xee\x58\x5b\x3b\x7b\x2e\x99\xb2\x73\x5d\xef\xc1\x57\xfb\x3e\x92\x68\x88\x0e\xd9\x35\x87\xf3\xf8\x87\xa5\x12\x16\xfd\xe7\x64\x95\xe1\xc8\x74\xd6\x1f\x53\x59\xc0\xd4\x0f\xe3\x0c\x4e\x1f\xb6\x18\x38\xed\x14\x4d\xd7\x9c\xd5\xe8\x6c\x41\x74\xad\x9a\x30\x05\xd2\x4c\x7a\xd1\x3b\x96\x15\xe2\x9d\xd2\x75\x29\xfd\xa8\x11\x9f\x12\x32\x3b\x18\x85\x2b\x7e\xf6\x33\x62\xfe\x36\x9f\x36\x35\x03\xc2\xf9\xd1\xfb\xa1\x64\xfb\xa1\xa7\xd8\xc1\x3f\x54\x6e\xf7\x72\x92\x48\xe2\x54\x94\x7a\xe8\xfb\xf9\xa6\x51\xb1\x26\xae\xf6\xc1\x80\x7a\xa5\x30\x8e\x9a\x40\x18\x45\x40\xcc\xc4\x4f\x1b\xbc\x10\x07\x67\x5e\xec\x26\x69\x3f\xf6\x25\xf5\xc7\xaa\x3a\xaa\x8c\xf3\x23\x05\xd3\x1e\x87\x71\x98\xe5\xd4\xe4\xe8\x56\xda\x31\x6c\x4c\xe1\xd6\xfc\x92\xea\xc1\x59\x4b\x52\x60\x9e\x44\x68\xb6\x63\xb9\x95\xce\x96\x9a\xd9\x9b\x9a\x8d\xce\x95\x0e\xf4\x76\x45\xf9\x67\x91\x59\xf1\x23\xa5\xc2\xc2\xb9\x23\xab\xf9\xed\xac\xc7\x86\x36\x05\x1b\xb6\x85\x31\x2b\x5e\x36\x01\x60\x25\xc2\x56\xec\x80\x67\xf7\x3d\xa5\x4d\x73\xc3\x56\x1f\x27\x61\x96\x27\x5c\x77\x40\x44\xf8\x86\x4a\xaf\xbf\xe1\x6d\x57\xe1\x78\xe9\xa5\x6e\x3f\xd9\xa5\xb6\xe9\x25\xda\xdc\x82\x71\xa2\x27\x86\x03\x80\xc2\xa9\xd5\xfe\xfe\xc5\x17\x2c\xcc\x40\xcc\x4e\x15\x35\xed\xa9\x3e\x2d\x3d\x8b\x1a\x8e\x73\xd9\xe9\x2f\x7f\xf2\x18\xca\x44\xf8\x11\xc0\x14\x04\x43\xa0\xda\xe5\xd9\xb8\x49\xb5\xce\xe1\xb7\x46\x49\x6e\xa2\x0c\xa9\x32\x39\xc8\x3b\x96\xa3\xf2\x44\x4b\xf7\xfa\x22\x41\x3d\xab\xe0\x4c\x4b\x23\xd1\xa0\x37\x9b\x9d\xa8\xb9\xa5\xfa\x3b\xe9\xb7\x72\x61\xca\xb9\xc6\x4a\x9c\x3b\x00\xac\x7b\x46\xf5\x92\x05\x45\x9d\x6b\xb9\xe2\xaf\xeb\x5a\xc0\xd8\x8f\x22\x93\xe5\x53\x0e\x86\x7b\x5f\x51\xa1\x02\xdd\x80\xba\xdf\xc5\x1a\x1f\xdb\x20\x8c\xc3\xdc\x00\x0c\x2e\x65\xd7\xa3\x1a\x34\x79\x5e\x11\x27\xbd\xdf\x92\xf6\x5e\xdc\xdf\x1d\xf8\x71\x36\xe5\xe0\x71\xe7\x60\xb6\x50\xd2\xfb\x50\xab\x2f\x5d\xfd\x62\x21\x83\xc4\x4f\xad\x0f\x2c\x24\x3c\x8a\x4a\xe5\xac\x05\xad\x06\xe1\x4a\x18\x85\xec\xe7\xb1\x54\xa1\xe7\x20\x3f\xcd\x92\xd9\xdc\x81\x6e\xe4\xe7\x66\x57\x35\x1a\x98\xf3\x37\x3d\x85\x66\xb9\x49\x23\x2a\x04\x16\x94\xff\xc0\x93\xe3\x08\x43\x5e\x62\x7a\x7d\x9b\x3e\xc0\x0b\x4b\x33\xdd\x7f\xb8\xdb\x39\x76\xd7\xb0\xa2\x45\x3b\xc8\x05\xc5\x5b\x14\xd5\x09\x82\x94\x7e\x17\x48\x9f\x13\x9e\xd3\x76\xb9\xa1\xe1\xda\x26\x35\xe3\x24\xc6\xa4\xc3\x97\x3a\xa6\xda\x08\x8e\x29\xcb\xd8\x4f\x93\x15\x00\x39\x98\xed\xd0\x73\x5b\xfa\x9c\xea\x8a\xe9\x1b\x22\xac\xa4\xbf\x44\x96\xe8\xae\xc2\x00\x34\xd9\x63\xaa\xa8\xc4\xc4\x26\xce\x4d\x80\x86\x0e\x66\x3e\x2b\x55\x19\xf8\x03\x5b\x38\x8c\xfc\x15\x13\x53\x5b\xaf\xa3\x42\x3f\xa3\x7c\xce\x33\xad\x27\xc0\xd8\x44\x51\xe2\xc7\x5a\x53\xa5\xae\xe6\xd7\x42\x6c\xe5\xf7\xfb\xa9\xc9\xb2\x5d\x0e\xd7\x7c\x4d\xe7\x62\x2f\xd2\x4b\xa1\x48\x01\x7a\x1c\x1c\x62\xc7\x6a\x3a\xe2\x1a\xbc\x97\x66\x23\x3f\x8a\x3a\x4a\x5c\x0f\xc8\x2f\xbe\xd6\x05\x72\x3f\xcb\xa5\x63\x42\x9a\x0b\x5c\x1f\x0c\xb7\xd4\x09\x20\xcc\xb9\xf5\x91\x5f\xad\xe9\xca\x69\x90\xdd\xd0\x79\x41\x48\xd1\x3e\x54\x08\xdf\x49\x6a\xfa\x61\x90\xfb\xcb\x11\x58\xa2\xb7\x8e\x93\xdf\xb7\x75\x5c\x39\xbe\xff\x59\xdc\x9f\x52\x20\x11\x48\x75\x21\x90\x86\x3a\x3e\x0e\xbb\xa9\x86\x0a\xd5\xec\x6c\x77\x10\x32\xc7\x1e\x02\x97\x63\x48\x21\xf3\x8d\x3a\xd0\x26\x69\x32\xf1\x87\x7e\xdc\x07\x67\x83\x20\x5b\xe8\x67\x05\xce\xd2\x54\x05\x5b\xe8\x66\x09\x0d\xcd\xd6\x45\x3a\xc5\xa4\x01\xd1\x15\xdd\x4e\xb6\x74\x35\x77\x33\x3f\x32\xd9\x98\xd7\x80\x64\x35\x74\x2d\xbb\x4d\x05\xb4\x3b\x0c\x97\x97\x93\x38\xab\x61\xf0\x4e\x6a\x0c\xde\x49\x75\x54\x1e\x8a\x4c\x18\xc3\xcb\xc0\x3f\x6e\x79\xea\x2f\xb7\xec\x09\xb3\x6a\xcc\xa1\xa9\xce\x37\xe4\xa8\x04\x18\x13\xf9\xd1\xdb\x4a\xb4\xf9\x82\x23\xf8\x5a\xcb\x72\x33\x5e\x0d\xfb\x20\x71\x94\x9a\x81\x2a\xc1\x9d\x57\x39\x4a\x7f\x39\x49\x49\xc4\xa1\xe3\xa4\xf2\xd1\x6d\xc9\xd7\xf5\xb0\x6c\x79\x4d\xbb\xe9\xef\xc1\x82\x62\xf8\x3f\x46\x58\xc5\xff\xa2\x48\xdf\x3f\x56\x19\xa3\x41\x11\x13\xef\xab\xe9\x53\x07\x03\x1c\x41\x30\xaf\xb1\xfc\x10\x1e\x54\x6a\x70\xdb\x67\x74\xdf\x42\x37\xe8\x33\x6a\x17\xdb\x66\x37\x25\xe6\x6a\xac\x8e\x70\x5b\xee\xda\x14\xca\xb2\xa9\xac\x05\xfd\x13\xea\x19\x9f\xd2\x0f\xf2\xb5\x82\xdf\xf4\x4d\x16\x0e\x63\x03\xcc\x03\x26\xe2\xa8\xea\xf3\xd4\xb1\x5e\x9a\x3d\xbb\x5b\x29\x89\x74\x14\xc4\xef\xb7\x1e\xe7\xa0\x0c\xab\x1e\x99\x43\x89\x1c\xc9\x8a\x0b\x01\x55\x47\xe9\x7b\x2b\x8e\xfe\x6f\xd4\x21\x52\xef\x6b\x01\x64\xb4\xca\x61\xfe\x99\x31\x97\x53\xa8\xeb\x4a\xee\xbc\x48\x83\x91\x9f\x01\xee\x2a\x05\xe5\x33\xba\xa1\x0f\x55\x27\x44\xe4\x8c\x75\x14\x4e\x1d\x8a\x7a\x05\xd8\xd4\xb1\x1c\x2a\xbf\x8f\x28\x85\xff\x41\xa5\x5e\x93\x34\x44\x22\xd2\xe5\xa5\xde\xf6\x5c\xca\xe6\x6d\xeb\xa7\x65\x93\x30\xe6\x3f\xe3\xde\x7e\x25\x20\xdf\x6c\x36\x39\x38\xb3\xd8\x1d\x17\x59\x14\x8e\x33\x06\x7e\xe0\x0b\x6f\x7b\x2a\x28\xf9\xd7\x1a\xf9\xd1\x84\xd1\xca\x19\x0e\xc9\xab\x69\xd7\xa2\x7c\x0a\xef\x8c\x95\x02\x2d\x33\x09\x64\xab\xb5\x8f\xc2\xc4\xd9\x36\xa9\xb8\xe4\xd5\x24\x36\x35\xbd\xad\xea\x03\x72\x4e\xb8\x3a\xbd\x59\x2e\xa2\x28\x94\x16\x16\x24\x0f\xdf\xa1\x83\x95\xaf\x15\x79\x5f\x64\xfc\x94\xb6\x84\x25\xde\xff\x4d\xa5\x65\x85\x12\x16\x0e\x12\x0d\x68\x1e\x99\x70\x15\x3d\xea\xad\x9c\xa6\x8f\x6f\x97\x0d\x5a\x58\x78\xc0\xf5\xc8\x1e\xd7\x92\x24\xff\x12\x8e\xb5\x30\x31\x50\xaa\x43\x42\x79\x87\x2c\xb8\x87\x64\x27\x6e\x7e\x87\xec\x10\x17\x85\x4b\x95\x20\xe5\xcc\x16\x46\xf0\x7b\x2a\x6a\x4d\x4d\x56\x44\xb9\x40\xb9\x10\x7f\xef\x26\xa6\x07\x91\x2d\x76\x4e\xf1\x3d\x95\x11\x8b\xfc\xb8\x9f\xac\xc6\x42\xee\x22\x7c\x86\x1d\x45\x74\xe8\x6a\xb7\xcb\x86\xb3\xf6\xb0\x2c\x3f\x28\x15\x2d\xf4\x0f\x5a\xe4\x77\x2a\x17\xd1\x18\x1c\x40\x08\xba\xaf\x7a\xaa\x1e\x7d\xb5\x7c\x48\x95\xe4\xbe\x8a\x65\x88\xa2\x2e\x8b\x8a\x61\x73\x40\x7a\x0c\x68\xc7\xff\x99\x0e\x52\xc9\xa3\x91\xb5\x84\x29\xbd\xad\x34\x3d\x6f\x53\x69\x0b\xee\xd6\x1d\x0d\x00\xda\x01\x3e\x00\x0c\xdf\x6d\xc5\xcd\xf0\x9a\xa7\xd0\x68\xdc\xc6\x87\x68\xe2\x89\x75\x85\x40\xbb\x44\x03\x83\x39\x7e\x88\xd6\xb5\xa0\x99\x14\x4b\x28\xa7\x66\xb1\xf3\x6e\x95\x0e\xe1\xba\xa3\xe7\xb8\xef\x4e\x10\x3d\xab\x1d\x3b\x55\x66\xf8\xb9\x5e\x15\x0a\xc1\xa2\xfd\x1b\x1d\xbe\xec\xed\xb9\x5e\xe3\xb8\x6f\xb2\x65\x3f\x3e\xd4\xd1\x09\x2a\x5e\xa2\x7c\xa3\x02\x90\x67\xc7\xcf\xee\x52\xf8\xa8\x3d\xeb\x0e\x11\xb4\x87\xd6\x08\x12\x96\xd7\x68\xb3\x49\x63\x91\x73\x9b\x9f\xe8\x29\xf2\x2a\x7f\x18\x06\x53\x35\x0f\xc4\x91\xf9\xd3\x67\xa4\x96\xd4\x42\xd8\x58\x1d\x9b\xd9\x24\x35\x7e\xbf\xe3\x98\xee\x34\xf2\xfd\x9e\x62\xd1\xc9\x72\x3f\x2f\xb2\x07\x54\x26\xf7\x98\xe7\xea\x4f\x9b\x0a\xb6\xcd\xf4\x07\x56\x40\x5f\x33\x46\x39\x13\x7b\xbf\x54\xee\xc0\x3f\xf3\x14\x19\xc0\xae\x5e\x8d\x71\xaa\x85\x14\x3a\x28\xa2\x49\x1a\x4a\x2e\x5b\xdc\x0d\x77\xf2\x9c\x54\xdd\x28\x93\x34\x21\x11\x4a\x91\xfd\xac\x21\xf6\x5c\xa5\x64\x17\xce\x34\x89\xe4\xb5\x7e\x40\x5e\x84\x79\xb8\x62\x3a\x4a\xf1\xe8\x34\x6a\xaa\x22\x9d\xd2\xe4\x4c\x7d\xb1\x3b\x0a\xb3\x89\x1f\x87\x81\x78\x48\xb0\xe7\x77\xb1\xfc\xf9\xa6\xe5\x83\x5d\x62\x82\x0d\x07\xb6\xa3\xc0\x12\x62\x2a\x3a\xfc\x6d\xd6\xee\xd9\xee\xec\x9c\x12\x70\xe5\xe3\x99\x6f\xd6\xf5\x89\x1f\x85\x2b\x26\x65\x96\x6e\xa1\xf8\x54\x48\xe8\xb7\xb0\xed\x04\x96\xaf\x1a\xe9\x14\xfd\xe1\xc5\xc6\x53\xdb\x56\xb5\x6a\x8d\xc0\x5d\xb1\x04\x14\x96\xcd\xe7\x04\x76\x03\xc2\x82\x8b\xca\x54\x0a\x45\xd5\x94\x4b\x63\xa0\xa5\xce\x4a\x85\xda\x46\xb6\xd7\xf5\x49\x3c\x18\x84\x41\xe8\x47\x0f\x29\x0e\x61\x10\x65\x22\x94\xdf\x52\xfc\x7e\x68\xfb\x87\x83\x76\x4d\xb1\xd5\x75\x40\x2d\x2c\x5a\xb7\x8a\x1b\xe3\x8e\xc6\x29\x9d\xd7\xdc\x91\xa7\xc9\x4c\x89\x56\x3e\xbd\x13\x0e\x86\x07\x7b\x2a\xde\x30\x59\xf6\x28\x79\x88\x42\x76\x51\x7d\x08\x47\x0e\x0b\x43\xb0\x74\x16\xad\x5a\x44\x32\x3b\xd6\x15\xb9\xcb\xa7\xd8\x1e\x70\x5a\xde\xf3\x5c\x3f\x36\x8b\xf3\x08\x5c\x47\x31\x04\x7e\x40\x19\x02\x46\x8d\xd1\x1b\xc3\x4a\xb2\xbe\x14\x9c\x99\x1d\x48\xcd\xc0\x4b\x02\x76\x04\x6b\x9e\x75\x38\xb9\x3e\xd1\x52\x89\x7d\xb1\x1b\x24\x71\x60\xe2\x5c\x15\xcf\x85\x63\xb2\x63\x89\xe5\x2e\x95\xee\x7c\xca\x8a\xd4\x10\x4c\x1f\x03\x7c\x07\xa4\xd7\x76\x45\x59\xe6\xae\x13\x48\xae\x73\x7a\xd3\x53\x9c\x77\xb7\x28\x41\x2c\x10\x1f\x27\x57\xf7\x3b\xaa\xba\xb8\x05\x0e\x22\xcc\xf4\x75\x15\xc1\xfb\x79\xee\x93\x0e\x81\x12\xf4\xfa\x0c\xdf\x8e\xb1\xf8\xc0\x53\xf0\xcb\x8d\xd2\xf2\x72\xfe\xbd\x87\x9c\xa8\x36\xf4\x57\x80\x59\x7e\xb2\xd7\xf9\x25\x47\xb8\x59\xcd\xa8\x64\xb8\x14\xbf\x3b\x53\x9c\x21\x29\x76\x97\x53\x64\xc8\xf8\xfc\x8b\xd2\xe1\x9f\x6f\x2b\xbd\x99\x2e\x0e\x38\xa4\x01\x4e\xd2\x6b\x72\x32\x52\x29\xc4\x4d\xfc\x34\x0f\xfd\x88\x8a\xa3\xa2\xbf\x49\x53\x89\x8e\x06\x90\x27\x21\x9f\xba\x67\xbd\x26\x64\x94\x27\xd8\xf0\xf8\xb1\x77\x34\x8e\x1e\xbc\xf8\x78\xa3\x4f\xb1\xe4\xf9\xaf\x4a\xd7\xed\x79\xb1\x74\xad\xf8\xd9\xa1\x30\x8a\x4c\x1f\xc5\x07\x7c\x07\x3c\x7b\x74\xb3\x4d\x63\x75\x61\x3d\x7f\xaa\x5a\xe9\x2e\x29\x81\xcd\x7f\xd3\xda\xc0\x1b\x24\x71\x96\x87\x79\x91\x1b\xc2\x83\x28\x01\x71\xd1\x1b\x3d\xa7\xa5\x74\xcf\x2a\x74\x3d\x75\x78\xed\x55\x4a\x02\x4c\x5a\xae\xf0\xd2\xfb\x9d\x94\x7d\xf5\xf6\x8c\xf4\xe4\xc2\x8b\xc5\x7d\x56\xfb\x12\x9b\xf9\xa4\xe2\x17\x38\x59\xea\xe9\xd1\x2c\x8c\x7e\x3a\x34\x8f\xaa\xe9\xc2\xcf\xc2\x33\x3a\xa9\xd9\xb8\xb1\xda\x91\x30\xd0\xba\x08\x2c\x1c\x80\x52\x0b\x2a\x19\xa2\xe9\x56\xb9\x4f\x22\x75\xac\x48\x54\x37\x81\xff\x11\x53\x5c\xed\x72\x8b\x13\x3d\x38\x63\xa5\x38\x94\x8f\xba\x89\xc2\xb0\x15\xec\x98\x75\xca\x21\xdb\x33\x14\xdf\x98\xeb\x16\xd4\x64\x55\x67\x97\x11\x17\xeb\x5c\x1b\x03\x42\x96\x44\xa1\x30\x83\xdb\xee\x60\xc5\x10\x28\xa5\xff\x6d\xf5\x75\x8c\xd8\x83\xeb\x2e\xf3\xfe\x60\xaf\x85\xfb\x65\x98\x64\x59\x38\x59\x53\xe2\xd8\x80\x37\x0b\x01\xbc\xa6\x9c\xf1\x73\xe9\x94\xc1\x16\x3b\x4e\x03\xcd\xd7\x9e\x4b\xae\x0c\xfc\x80\xd9\x92\x77\xbb\xea\xfe\x83\x60\xb6\x94\x7d\xa7\xca\x1c\x1b\xaa\x8f\x04\x64\xbc\xb0\x47\xbc\x5e\x44\xf5\x5e\xba\x09\xfc\xc9\x24\x4d\x5e\x09\xc7\x3e\x2f\x64\x6e\x3a\xa4\x05\x80\x13\x04\x2c\x31\xf0\xf1\xae\x34\x82\xfe\x67\xba\xb1\xf1\x53\xc8\x5a\x5a\x37\xc5\xea\xc6\xec\xa4\x35\x82\x2d\xdf\x04\x2a\x1e\x9c\x99\xe3\x71\x96\x28\xd2\xea\xb9\xb8\x7e\x95\x9b\x08\x79\x84\x2e\x43\x9b\x8a\x34\x1b\xed\x52\x0c\xef\x38\x69\x84\xe5\xa4\x63\x75\x18\x3f\xa5\xd3\x4c\x16\xa7\x5a\xa8\x6d\x74\x9c\x2b\x26\x37\xa9\x1f\x67\x53\xaa\x2d\xf0\x1a\x6f\x3c\xec\x49\xd6\xf9\x04\xd9\xc1\xe1\x36\xe3\xb0\xbf\xb2\xe5\x26\xee\xfb\x4c\xbd\x6d\x51\x8b\x0e\xc1\xd8\x2a\x15\xbc\x96\x0c\x43\xa4\x42\x64\xf3\x54\x9f\x96\xd5\xdf\x2c\x3a\x3d\xd7\xcd\x46\xa9\xe9\xf7\xb9\xcf\x90\x99\xa3\xbd\x1a\x8d\x74\x4b\xbf\xfd\x38\x8c\x38\x0f\x2e\x3a\x2a\xf4\x9b\x7c\xd3\xd6\xca\x19\xf8\x29\xb8\x4e\xb1\x0a\x20\x27\xa3\x54\x4f\xc5\x3e\x6f\x13\x70\xa9\x91\x89\x04\xa9\xc9\xcd\x6e\xa5\xb3\x7d\x53\xd1\xf5\x72\xc5\x89\xc1\x67\x5e\x03\x89\xa6\x24\xc4\x5f\x94\x8f\x6b\xdc\x7d\x98\x8d\x43\xf4\x5b\x5a\x88\x32\x4e\x18\xbe\x5e\x7f\xca\x5a\xdf\xea\x60\xaa\x02\xd6\x51\x38\xc9\x28\xe9\xa0\x18\x04\x85\x16\xf7\x43\x58\x2d\x11\x14\xaa\x96\x8f\xac\x4c\x09\xa2\x06\xa9\x3f\x1c\x9b\xd8\xba\x16\x48\x15\xdd\x52\x69\xa3\x5b\x8d\xe2\x0c\x9d\x1b\x7e\x1c\x18\xcb\xb9\x03\x8b\xfd\x99\x86\x3d\x7d\xd6\xb0\x5a\x07\x9e\xef\x86\xe8\x31\xa1\xd7\x13\xca\x3e\x27\x1c\x74\xc6\x56\x39\xa4\xb7\x03\xa4\x2d\xe4\xcb\xfd\x37\x7f\x63\xdd\xe1\x12\x7f\xbe\xe7\xea\x2d\x0f\xf4\x54\x4f\xed\xbf\x6a\x43\xe0\x08\x2b\x42\x65\x69\x60\x97\x1e\x20\x5b\x80\x0a\xcf\x2d\xec\x37\x91\x33\x93\x47\x18\x84\x2b\x66\x90\x44\x7d\x3a\xf9\x11\x3b\xdd\x52\xc8\x71\xb6\xd0\xd2\x09\x69\x95\xd3\x4c\xea\x8f\xab\xd0\x70\x61\x41\x93\x16\x89\x63\xf5\x8e\xf2\xfc\xae\x7a\x9a\xf1\x3a\x1e\x84\xe8\xb8\xa0\x87\x11\x56\x63\x7a\x64\xe1\x3b\x96\x6c\xed\xb0\x88\x06\x08\xc1\x24\xb7\xe6\x30\xca\x67\x95\xf8\x20\xb5\x89\x9a\x3e\x07\x42\x62\x78\x14\xe9\x44\x93\x57\x48\x42\x8a\x49\x9a\x74\xaa\xe8\x0d\x83\xc2\xdd\x43\x7c\xd3\x96\xb0\xf2\x97\x93\x22\xdf\x5d\x8d\x94\x60\xad\xab\xb5\x86\xe4\xe7\x6e\x60\x57\xb7\x70\x6a\x72\xb7\x06\x8d\x83\xf4\x1e\x76\x2c\x15\xda\xf1\xb6\x44\x79\x90\xc4\xfd\xc2\x86\x9d\x30\x5e\x7c\xcc\xf3\x4d\x03\xc5\x7f\x70\x86\x1a\x0b\xc3\x78\x48\x33\x81\x1c\x08\x1a\x22\xa5\x25\x86\x56\x96\x70\x2d\xeb\xfc\xb3\x5f\xf4\x3b\x8a\x0c\x7d\x83\x8d\x26\xdf\xb9\x4c\xe3\x28\xf5\xe3\x43\xa8\x1b\x02\x01\x78\x55\x09\x7a\x1c\xd6\x4c\x86\x77\x1b\xb6\x68\x71\x69\xb1\x3a\xf2\xa7\x5d\xe7\x26\x73\xbc\xb3\x38\x3f\x12\x29\x2c\x7f\x4e\xe3\xc3\x3f\x61\xcb\x4e\xc4\xb9\x67\x04\x43\xd0\xea\x72\xb9\x4a\x59\x5a\x0c\x06\x49\xc7\x69\xea\x1c\xa7\xd3\x43\x12\xbc\x5f\x52\x5c\xe8\xe3\x24\x9d\xd2\xf4\x05\xa5\x63\x2c\xd8\xaa\x69\x97\x7c\x59\xeb\x77\xf8\x71\x58\x80\x9f\x8e\xf5\xd1\xeb\x62\xe9\xae\x54\x16\xf7\xc7\x7e\x7a\x88\x70\x29\xd8\x1d\xa7\xb4\x80\xdb\x9b\x0a\x4f\x7e\xc3\xab\x01\xb0\xdc\xbb\x0c\x22\x7f\xc2\x4b\xa1\x8d\xcf\xe5\x21\xd7\x8f\xbe\x7f\x5a\xb1\x5b\xfc\x0a\x8d\xa2\xa5\xb1\xb3\x49\xbe\x93\x9a\x12\xf7\x56\x63\xa2\xa8\xbf\x95\x1b\x14\xb1\xfe\xef\x96\x2e\x02\xb9\xab\xc2\x9e\x7e\xb8\x52\xed\xe0\xfe\xee\xca\xd3\xb3\x30\xca\xa5\x19\x0e\x19\x99\x87\x45\x78\x17\x3b\xdb\x14\x30\xf1\x47\x37\x60\x54\xe0\xe8\xdc\x56\xc0\xc7\xd4\x04\x49\xda\x7f\xc0\x99\xf9\x1f\x62\xfd\xe2\x84\x02\x3a\x10\x5e\xcb\x6b\x58\x03\xd2\xd5\xaf\x98\xf1\x77\xac\x3b\xc6\xe5\x1f\xd2\x8f\x52\x52\xff\x7f\xfa\x72\xcf\x11\x04\xff\x06\x2d\x0c\x49\x3a\xb7\xa4\x49\xfa\x61\x15\xff\x17\x51\xbe\x06\xc3\x8f\xb5\x76\x57\xf5\x49\xde\xb5\x2a\x92\x7d\x13\x84\x7d\xd3\x07\x11\xa0\x88\xc1\xd1\xa7\x90\x28\x83\xf6\x02\xe7\x9c\x35\x50\xf4\x2b\x3d\x57\xd9\x2f\xe2\x81\x1f\xa6\x11\x53\x36\xc0\x1b\x43\xcd\x9a\xaf\x6b\x1d\x81\x3e\x43\xa5\xab\x1f\x69\xcd\xce\xb6\x71\x89\x25\x59\x1e\x46\x28\x24\xb3\x86\xa4\xaa\xa4\x3a\x4f\x9a\xdb\xfa\xe5\x85\xe0\x0c\xde\x2a\x55\xb6\x08\x06\x46\x08\x46\x14\x60\xfd\x92\x6a\x6f\x1c\x86\x2b\x26\x06\x45\x08\x32\x26\x53\xeb\x74\x48\xc3\x1b\x80\xc3\x2a\xe2\xb7\x8e\x5c\x1c\x9a\xc1\xfc\x01\x3a\xbc\x90\xea\xb9\xa1\xf9\xbb\x4e\xaa\xf3\x33\x0d\x83\x43\x06\xde\x11\x6b\xa3\x2b\x8a\xe7\x33\x2d\xc2\x41\x8b\x4c\xed\x3a\xa5\x38\x43\x50\x34\x13\x4c\x12\xbd\x90\x2c\x2c\x97\x48\x1a\x18\x3f\x2f\x52\xc8\xcb\xef\x07\xd5\x29\x55\x42\x2d\x08\xf8\x43\x85\x44\xf9\xb0\xd5\x99\x60\x3a\x0b\x74\xbc\xb2\x6a\x85\x46\x51\xdc\xf2\x14\xe6\x70\xa3\x45\x8a\xa5\x1b\x52\x8a\x24\x5c\x11\x83\x68\x25\x2e\x1c\x8b\xb7\x8e\xea\x33\x43\x7c\xb2\x0f\x51\xf6\x19\x4e\xd9\x0f\x74\x4c\xf8\x47\x4a\xce\xf9\x58\xe9\xe4\x9a\x99\xf5\x93\xff\x81\x46\x47\x12\xf2\x34\x3a\xfc\x69\x70\xf7\xf3\xf7\x96\x8a\x73\x89\x15\xfd\x04\xe3\x47\x6f\x25\x0d\x37\x2d\x6f\xe5\x47\x79\x32\x34\xf9\xc8\xa4\xe4\x85\x00\x40\x7f\x5b\x45\x62\x9b\xf8\x72\x7c\x45\x93\x29\x04\x63\x1b\x58\x39\x28\xb8\xba\x3b\x7b\xaa\x5c\xbf\x73\x7d\xfb\xef\xbe\xf4\x52\x77\x1c\xe6\xe1\x90\xe2\x3a\x14\x52\x60\xa9\x5e\x2b\x5d\xae\x03\x58\x0b\x4e\xe2\xab\xd6\x3e\x62\xdb\x7b\x25\x57\x84\x90\x67\xf0\x96\x52\x08\xa7\xe7\x80\xe3\x76\x53\x19\xb8\xc0\x95\xb1\x84\x3c\x4b\x65\x53\x8f\xb4\x04\x0d\x0b\xdd\xa4\xc8\x9d\x37\x29\x35\x43\x17\x47\x9d\x73\x34\x26\x49\x90\xa7\x61\xcc\xc4\x7a\x35\x05\x11\xbe\x69\x10\x41\xcd\xcf\x57\x0e\x44\x3e\x1a\x27\x2b\xe2\x44\x88\x1f\x4f\x23\x62\x3d\x2f\x2b\x0c\x77\x5b\xe5\x56\x07\x61\x14\x4e\xc2\x38\x01\x29\x3b\x6c\xfb\x11\x0d\x98\xa0\xdd\xcc\xff\x1f\x5f\x28\xf1\x94\x63\x1a\x3d\x5e\xea\x98\x4b\x7b\x28\x59\x10\xd2\x9b\x20\xb7\xf0\xd0\xba\xa2\x94\x7a\xa8\xe7\x1a\x5b\x56\x42\x2b\xae\xce\x1a\xde\xc8\xc2\x89\xa0\xf7\x97\x34\x2b\x41\x60\x1e\xa2\x55\x81\xb8\xfa\x0a\xd6\x95\x4d\xef\x5a\xf9\x9b\xc3\xf4\xe4\xe2\xf5\x76\xe6\xe7\xb7\xb6\x30\xa5\xfc\x39\xaf\x29\x08\x08\x8b\xb1\xb3\xe7\xa8\x1e\x41\xc7\x2c\x62\xa1\xf4\x4c\xf2\x4b\xdb\x7d\xcb\x6f\xcc\x75\x07\xe1\x2b\x9c\x1b\x11\x46\x22\x95\x3a\x3f\xaf\x5a\xd2\xb3\xdc\xf8\xfd\xb5\x69\x57\x67\x3d\x87\x2d\x2d\x5b\xb7\xb3\xd0\x9e\xd6\x77\xc8\x81\x89\x49\xb9\x4d\x9f\xf2\x2a\xac\x17\x40\x7f\x2c\xda\x01\xea\x8f\xd3\x84\x28\x0c\x0a\x1e\x63\xa1\xa5\x53\x38\xe2\xa3\x8a\x49\x67\x6c\x7c\xf8\xa3\xb6\x70\xb8\xa3\xe7\xc0\x36\x2c\xd7\x21\x6c\x39\xce\xdd\x09\x57\x92\x94\x0f\xbf\x36\x6f\x5f\xe0\x07\xc3\x24\x3d\x24\x4a\x2f\x82\x41\xa2\x65\x21\x20\x24\x37\x4c\xfe\x60\x90\xa4\x7d\x22\xe6\x67\x9d\x2e\x68\x8e\xa2\xe4\xf8\xbe\x8a\xfc\xde\xa1\x03\x08\x96\xe6\x4a\x83\x2d\x6e\x61\x61\x3f\x6d\xf7\x34\x5c\x2e\x6c\xf8\x88\xb4\x0b\xa7\xee\xf8\xc6\xb6\xa1\x8c\xcd\x38\x49\xfd\xb8\xef\xd3\x7e\xaa\x69\x58\x61\x9f\xdf\xf3\x3a\xdf\xfc\xba\x24\xdf\xdb\xd8\x52\x52\x51\x39\x43\x4e\x1f\xbc\x1f\x7c\xad\x70\x3c\xc9\x72\x44\xf6\x2b\x89\xe9\x35\xb9\x82\xa0\x00\x03\x80\x9e\x8a\xe4\x80\x23\x2f\xd1\x15\xa8\xd4\xef\x87\xf4\x1d\xbb\x14\x8e\xe1\xa8\x86\x43\x1c\xa7\x88\x06\x13\xf8\xa1\xf2\x2f\x1f\xee\xb9\x72\xfc\xfd\x56\x8a\x8c\xc0\xc4\xb2\x35\x71\x7e\xbc\x5d\x2a\x62\x9b\xb7\x95\x29\x59\x4e\xfc\x3c\x4a\x7c\xd4\xed\x11\x86\x82\xb4\xdc\xda\xe4\x5f\x7c\x81\xf7\xdb\x7d\xeb\x79\x99\x6a\x8a\x25\x60\x82\x03\x71\x4e\x93\x98\x34\x99\xdd\xe7\xe7\xbb\x7e\xf0\xad\x22\x4c\x45\x9f\x02\xbe\xfb\x51\x95\xf0\x3f\x6a\x01\xb4\x93\x24\xcc\x84\x1d\x0f\x5f\x08\xa6\x5f\x69\xbe\xa8\xb1\xe3\xd5\xba\xda\xc3\x08\x07\x0a\x52\xb2\x1f\x2b\xb2\x26\x48\xb3\x31\x8a\xc4\x66\x27\x92\x15\x93\xa6\xa1\xa3\xa1\x16\x3a\xf1\x8e\x65\xe0\x7a\x97\x3e\x07\xaf\xf6\x8a\xee\xc6\x36\x7d\x93\x86\x41\xa2\x84\xf8\xa4\x67\x4c\x9a\x73\xdd\xa9\x05\xa8\xa9\x51\x1c\x9d\xa0\x6a\xe3\xeb\xc6\x11\x79\x70\x06\x38\xf7\x09\x46\xb9\x9a\x46\x9b\xcc\xaf\x06\x8f\x6f\xda\x18\xc8\xb2\x64\x6d\xd9\x30\xe8\x0b\x45\x95\x6b\x0a\xfe\x70\x4d\xa5\xd7\xc7\x61\xc6\x67\x9b\xb4\x22\xba\xb0\x49\xc3\x20\x09\x6c\xbf\x47\x35\x40\x78\xca\x90\x9f\x80\xb1\x14\x4e\x61\x85\xed\x3d\xaf\x42\x70\x3e\x18\xa4\x81\xa2\xda\x60\xf0\xb5\x9a\x01\xd1\x33\x24\xc6\xb1\x3a\xa5\x09\x2e\xaa\xbf\x17\x79\x57\x25\x39\x7e\xa3\x81\x8a\xa6\x96\x66\xda\xbf\x16\x8e\xe1\xa0\x19\xe5\x53\xb2\x7a\x23\x13\xe4\x69\xf2\xff\x11\xf6\xa7\x31\x96\x5c\x57\x7e\x20\x5e\xf5\x32\x6b\x67\x51\x24\x45\xb5\xdb\xee\x36\xfc\xba\x2d\x37\xfb\x0f\x08\xfc\x8f\xc7\xb3\x78\xf4\x25\xde\x54\xa5\x44\x55\xa2\x99\x4c\x64\x95\xaa\x64\x7d\x19\xde\x8c\x77\xf3\xbd\x60\xc5\x8b\x78\x8a\x25\xb3\x92\xf0\x00\x86\x31\x30\x0c\xc3\x1f\x0c\xd8\x33\x1f\x64\x1b\x30\x6c\x0d\xec\xf1\x02\xcb\x6a\xb9\xad\x76\xb7\xfd\x52\x4b\x6b\x69\xa9\x25\x51\xa4\x8a\x4b\x51\x24\x8b\xb5\xef\x7b\x55\xd6\x96\x1c\xc4\xf9\x9d\x73\xef\x89\x8c\xa0\xe7\x5b\x44\x55\xbe\xf7\x22\xee\x72\xee\x59\x7e\xe7\xf7\x4b\xa2\x90\x14\x24\x95\x38\x27\xd8\x94\x05\xe9\xed\x91\xcb\xf9\x30\x2d\xe3\xfe\x53\x2a\x92\xbb\x15\x78\x94\xe4\x43\x15\x20\xbe\x8e\x03\x0a\x78\xd7\x1d\x6b\x95\x75\xe0\xba\x81\x2a\xa7\x6c\x47\x61\x08\x43\x7d\x0b\x2e\x1b\xf2\x4e\xb7\xb5\xbb\x8d\x48\x10\xbe\xd7\xad\x40\x39\x86\xf7\x30\x9c\xcc\x60\x45\xe5\x7a\x04\xf9\x7b\xc1\xcd\x0a\xcb\x77\x0b\x00\x09\x29\x83\x55\x6f\x86\x1f\xd9\xa6\xda\x1b\x16\x6d\xe5\xe2\xb0\x6c\xa5\x66\xab\x47\x92\xfc\x7d\x92\x9c\x73\x38\xf8\xea\x41\x59\x87\x54\xd5\xf9\x6e\x69\x24\xf1\x59\x95\x20\x8a\xe2\xd8\x0e\x4c\xbc\x83\x9e\x16\x39\xe6\xff\x12\x78\x68\xc7\x03\x6c\x64\xb8\x29\xdc\x73\xcb\x37\x98\x66\x58\xc1\x7f\xa5\xc8\x9a\x1f\x04\x4a\x9b\xe2\x3f\x28\x91\xcf\x45\x93\x59\xcc\x24\xc2\xaa\xcb\x81\xa2\xd4\xb8\xfc\xb1\x98\xaa\xbc\xb0\xcb\x16\x87\x31\x32\x23\x2c\x30\xc9\x37\xca\x4e\xe6\x45\xd9\x5f\x15\x5e\x7d\xc4\x49\x6f\x28\xea\xfb\x37\xd4\x6a\x09\x8d\x93\x30\xe2\x8e\xe5\x5a\xf7\xb2\x1f\xfc\xcc\x8e\x4c\x76\x34\x27\xf5\x3a\x71\x9d\xab\x15\x83\x05\xcb\x00\x17\x98\xac\x7b\x8d\x82\x02\x51\x74\xa7\x53\x1e\x8e\x03\xdf\x8e\x89\x85\x02\x9f\xf3\x1a\x2b\x1d\xb0\x15\xe2\xb8\x20\x8e\x71\xac\x57\xb0\xc6\x61\xbd\x5d\xc7\x04\x8b\x31\x53\x5d\x0f\x97\x95\x6e\xef\x1f\x6a\x09\xce\x8b\x8d\xa8\x82\x9a\x83\x28\x3c\x74\x67\x36\x8a\x5a\x28\x1f\xf1\xb5\x1a\x84\xc2\x26\x89\x65\x3b\x2a\x9c\x14\xaa\x7e\x7b\x4a\x39\xf1\x7d\x5b\xc5\x82\x35\x31\xd6\x89\x16\x63\x55\x30\x82\x57\x4c\x6c\xc6\x36\xc1\xd7\xc2\xb5\x44\x54\xcf\xd7\x6d\xa4\x87\x68\x75\xcf\xa6\xfd\x91\x84\xd6\x5a\x66\xe9\x52\xed\x22\x77\x30\x52\x70\xee\x9f\x70\x2e\xf1\xd1\x28\x59\x4a\xe3\xa3\xd3\x4a\x35\xf3\x23\xfa\x51\xb1\x95\x1d\xa7\x25\xf2\x16\x1e\x5c\xf4\x9b\x3f\xe1\x72\x00\xe1\x30\x4a\x98\xf7\xc8\xd1\xc5\x57\xa3\xc1\x37\xc1\x6e\x37\x1a\xff\xfb\x5e\x1f\x35\xb0\x94\x0f\xbc\x1c\xa4\xbc\xb1\x47\xee\x05\x2a\x4f\xf8\x13\x98\x1a\x57\xdd\xae\xc6\x11\x05\x89\xef\xa3\x86\x2f\x69\xf2\xea\xad\x61\x63\xbf\xab\x94\xb2\xcf\x63\xf3\xe1\x24\x81\x79\x87\x31\xfc\x93\x89\xaa\x8d\xdf\x26\xe7\x5b\x0e\x84\x36\xdd\x07\xab\x7a\x11\x04\x89\xe1\x13\xf6\x57\xd4\xa6\x4b\xca\x28\x37\x49\x88\x8a\x1b\x0a\x49\x37\x03\x85\x50\x00\xeb\xb7\xb0\xf0\xb4\xa4\x76\xfb\x51\x6e\x8d\xeb\x84\x42\xde\x89\x5d\x21\xbe\x69\xd3\x1b\x31\xfd\xe5\xea\x6c\xcc\xa7\x14\xb3\xd2\x1f\x4d\x14\x2f\xd9\x25\x8d\xd1\xbd\xaa\x78\xfd\xe2\x68\x71\xd5\x24\xdc\x31\xed\x94\xd1\x5d\xf3\x8f\xea\x11\xb2\xd1\xab\xe2\xe2\x20\xff\x71\x52\x09\xe0\x31\xaf\x88\xf4\xc7\x7e\x9c\x2c\xbc\x49\x92\xd2\xc4\xd5\x17\x4d\x7b\xce\x5d\x9e\x57\x98\x66\x14\x77\xb0\x68\xb9\x71\x8a\x71\x90\x0a\xe5\xb9\x12\x15\xc3\x7e\x66\x56\xb8\x7d\xa6\x8d\x27\xd2\x31\x9b\x94\x8b\x42\x11\x23\x8a\x0f\x1d\xa7\x51\x70\x61\xb2\xc7\x0b\x8c\x1d\xa5\x39\x83\x55\x03\xe4\xa8\xa6\xdb\x82\xd2\xc8\x85\xc6\x9c\x1d\x59\xd8\xd7\xfd\xad\x2f\xfc\x8d\xf9\x2f\x7c\x6e\x8e\xf1\xc3\xcc\x65\xaa\xfb\xd7\xcf\x29\x3d\x15\xcd\xbb\xd5\xc4\xdf\xce\x1c\xea\xe6\x69\xbc\x6c\x93\x10\xb5\x66\x0c\xf5\x2d\xa5\x7f\x7c\x4b\xcd\x5e\x3f\xcd\x96\x46\x86\x01\xed\xdc\xd7\xa8\x61\x2b\xe7\x1a\x69\x82\xf9\x97\x0e\x76\x0b\x93\x0c\xa2\x45\x4e\xf0\x21\x3b\xff\x2d\x45\xe6\xa8\x35\x29\xa9\xb9\x66\xa7\x3f\x0c\x4e\xe9\x72\xde\xae\x35\x55\xce\xdb\x45\x13\xa7\x80\xce\x2f\x38\x58\x86\x82\xab\x43\xae\x9e\xff\x23\x20\x21\x40\xfe\x8f\x46\x99\xea\xf0\xbe\xb9\xee\xa2\xe9\xc7\x9c\x57\x85\x8b\xf0\xb6\xd2\xe4\x7d\x5b\xb1\x3b\x99\xe7\x07\xcf\x77\x14\x3a\x01\xa5\x6d\xbe\x6e\x10\x83\x57\x3b\x66\x4c\x8a\x41\x0a\xe2\xc1\xec\xaf\x8c\x04\x52\x90\x11\x9d\x6b\xcf\x47\x44\x53\x74\x58\xb1\xf8\xbb\x9e\x20\xf4\xad\xc9\x1e\x72\xfb\xa6\x48\x29\x15\x58\xcd\x10\x5c\x82\x9b\x8c\xc5\x81\xbd\xdb\xd3\x53\x69\x97\x37\xb1\x4d\xb9\x5f\x4b\x75\xec\x6f\x16\x38\x42\x51\x69\x6b\x4f\x8d\xf3\x45\xdd\xa7\x77\x4d\x65\x18\x5f\xc3\x97\x22\xe8\x7f\xa4\xb2\xc3\x76\xd9\x66\xab\x7d\xb3\x3a\xed\x71\xf9\x77\x30\x73\x7c\x33\xf1\x1d\xd7\xc7\x15\x12\xee\xb8\x2b\xbc\x0d\xcb\x01\x52\x48\x8e\xa8\x49\x51\x21\xb6\xb4\xc7\x1d\xec\xc6\xd6\x38\x79\xf2\x9a\xe9\xe0\x9b\xcd\x32\x53\x2f\xbf\x4c\x5d\xa5\x7b\x3c\x35\xcb\x8d\xa0\xae\x1d\xec\xb4\x85\xee\x06\xca\x49\xbd\xa4\x2a\x0d\x77\x30\x00\x28\x53\x82\xab\x1d\xb9\xa1\x75\xad\x09\x75\x07\xbc\x35\x6e\x05\x57\x07\x4f\x4d\x45\x02\xa3\x79\xaf\x11\xbe\x2e\xec\xeb\xae\xa4\x49\xdf\x66\xdb\x34\x27\x25\x6d\x28\x27\x24\xad\x1b\x1a\x8f\xcc\xd7\xe2\x04\x3e\x84\x1a\x7e\xc9\x81\xb9\xee\x28\x4d\xa2\x22\xcd\x36\xf1\xe6\xfe\x1b\xc5\x9b\xfb\x6f\x3e\x46\x83\x20\xb2\xf1\x72\x3a\xb0\x71\x47\xc1\x64\xaf\x11\xe4\x46\x4a\xf8\x9b\xf3\x4a\x2f\xbf\xdc\x0d\xb3\x68\xc4\xa2\x78\x4e\xa8\xdd\x39\xd6\xdc\xf4\x23\xca\x60\x2d\xac\x7d\x66\xc5\x64\xe8\xaa\x63\xb9\x10\xa5\x29\xc2\x0a\x15\xd2\x58\xef\xcb\x8e\x4f\x11\xf6\x19\x75\xbd\x07\x0a\xdf\x45\xcc\x12\x21\xd2\xa6\x4e\xce\xd9\x05\xfc\x70\x52\xe0\xf3\xde\x56\x4d\x1c\x51\x68\x9f\xf2\x0f\xf0\x34\x4d\x35\x7e\xf3\xd9\x1e\xa5\x74\x98\xbb\x88\x06\x1e\x8b\xfc\x0c\xf9\x0b\x28\x26\x6e\x59\xab\x46\xa8\xd6\x9b\x87\x4a\xd1\xd3\xcc\x36\x84\x9c\xc8\x06\x56\x2c\x3c\xc3\xbd\x6b\xb4\x52\x84\x73\x57\x11\xe6\x9d\x26\x19\x44\x95\x24\x9d\x77\xec\xe6\x1e\xa2\xc1\xc4\x44\x08\x1c\x50\x2a\x60\x8b\xf8\x91\xd2\x7f\x4e\xec\x4a\x3e\x36\x63\x9b\xb1\x21\x61\x34\x29\xb9\x4d\xec\xea\xe0\x07\x9c\xdf\x53\x7d\xa9\x60\x4e\x9f\x51\x31\x01\x31\xc1\xbf\x0a\xd3\x2f\x84\xbc\x2a\x81\xd3\x64\xe4\x7d\x71\xa6\x3b\x48\x33\x4b\x31\x2a\x83\xa7\x03\xcf\x22\x7d\x56\x0d\xfe\xe7\xbf\xf8\x7b\x1d\x8f\xcc\x98\xee\xa9\x4d\x37\xed\xd8\xff\xec\xb1\x71\x9a\xd5\xb5\xef\x68\x69\x63\x43\xbe\xa7\xe8\xff\x90\x33\x82\x59\xd8\xb6\xe6\xf3\x18\x39\xe1\x3e\x07\xab\x3b\x75\x2a\xae\xf2\x26\xf8\x3a\xd0\x5b\x85\xac\x80\x14\x03\x7c\xb9\xe7\x64\x50\xed\x42\x64\x92\xd7\x11\xb5\xf0\x0d\x2d\x2c\xac\x80\xef\xb7\x01\x66\xb2\x88\x9d\x3b\x27\x26\xe6\xd2\x11\x58\x94\x02\xea\xa9\xe9\x69\x11\xb1\x6b\x75\xe2\xd2\xc2\x51\x5d\x0a\x9e\x99\xc6\x9b\xe5\x91\x89\x92\xc2\x44\xc9\xf6\x8e\x23\xa2\xd3\x96\x18\x19\x28\x66\xdb\xdb\xa4\xe9\xb7\xb0\x8f\x7d\xcb\x1f\x4d\x3c\xd3\x64\xa7\xb7\x5b\xd2\x8d\xbf\x63\x50\xcc\x12\x9d\x9d\x6a\x14\x5c\x8e\xc3\xe5\x5f\x1e\xaa\xd6\x8e\xc4\x2c\x83\x4d\x9c\xe5\x30\x03\x4f\xf3\x7f\x56\x93\x68\xbc\xab\x9c\x86\x41\x6a\xe2\xbc\xf3\xf1\xd6\xf4\x93\x82\x50\x0b\xc3\x72\x54\xc6\x0c\x97\x3b\xe0\xcf\x5b\x9a\x41\x21\x51\xdd\x3c\x09\x9f\xfb\x52\x37\x4d\x18\xe7\x27\xad\x6e\xbe\x37\xf1\x84\x03\x9e\x8c\x6c\x16\x96\xd9\xea\xb4\xa6\xc4\x54\x99\x62\xa8\xae\x61\x79\x32\x29\x14\x82\x91\x2d\x0d\xa0\xff\xe1\x7d\x40\x1c\x67\x49\xde\xf1\xe7\xd0\x39\x9c\x0a\x7c\xa3\xa0\x2b\x00\x22\x24\xa1\x65\xa8\x99\xf0\xa8\x7b\x3d\x93\xc7\x98\x7a\xe1\x42\xf1\x6e\x4c\x6e\x96\x2d\xce\x46\x21\xc4\xaf\x86\x45\x1c\xca\xbd\x6a\x89\xc4\x76\x87\x22\xb2\x3a\xcd\x89\x3c\xbe\xa3\x2c\xac\x93\x4b\x70\x89\x7d\x14\x2f\x61\x6b\x81\xee\x15\xe5\x3f\x7a\x13\x81\xa6\xb5\x74\x9e\x8f\xcc\x20\x89\x8a\xb2\x6f\x19\xcd\x07\x73\xc9\x2c\xa0\x30\xc9\xd8\x5e\x30\x90\x4d\x5d\xf7\x99\x43\x94\xb9\x34\x71\x3c\x55\x03\x92\xf9\x86\x91\x69\x75\x2e\x3f\x68\xe4\x0e\x0e\xbd\xd4\x35\x7d\xd4\x3c\xdc\x70\xba\xc6\xd2\x66\x5f\xe8\xfe\xfd\xdd\x28\x79\xa5\xcc\x04\x87\x29\x66\x9f\x16\x96\xf0\xd7\x6d\x3e\x70\x49\x67\x08\xac\x89\x7d\x8e\xbf\xa4\xc4\x43\xcf\xcc\x37\x13\x4f\xd4\x3d\xb0\x19\xea\xd6\x1e\xdd\xbf\x8f\x0d\xe9\xc6\xa4\x86\xe8\x77\x07\xde\x6f\xfd\x65\x25\x39\xb8\x75\x4d\xd1\xf9\x71\xb6\x0a\x69\xc3\x1d\x6b\xbe\x71\x64\x58\x26\x64\x71\xb8\xdd\x0e\x6e\x8a\x26\x32\x14\xe5\x13\x1f\x17\xfc\xd6\xcc\x81\x17\x0e\x1c\x3a\xf8\xeb\xf4\xbe\x70\x82\x5e\x83\xa9\x40\x28\x0d\x76\x27\x29\xc5\x7b\x57\xf7\x5e\xd0\x79\xf9\xe5\x8d\xeb\x13\xaa\x02\xc3\x61\x79\x0d\xbf\x87\x58\x68\x82\x67\x94\xc0\xa8\x7a\x2a\x2c\xce\x29\x34\x30\x08\x36\x91\x80\xf0\x2e\xf9\xea\xc9\x99\x2f\x12\x88\x1d\xab\xe7\x2e\xaf\x59\xbc\xfd\x6d\x66\x01\x12\xb1\x08\x55\x9d\x7d\x87\x20\x18\x58\xc2\xef\xab\x06\x0a\x76\xcb\x60\x40\x6f\x12\x19\x22\x96\xf0\x9b\x3a\xdf\xfb\x36\xdc\x7a\x47\x91\xee\x24\x92\xee\x06\x9e\xf8\xe3\xef\xab\x52\xc9\x62\x99\x59\x53\x86\x99\x41\xf1\x95\x51\x39\x81\xb7\xf3\xe7\x5a\x1b\x14\x57\x12\x01\xf8\x23\x29\xc9\x79\x66\x7e\x54\x3c\x11\x1c\x96\x6f\xd6\x6c\xc5\xd8\x66\x45\x1a\x49\x2e\xd0\xa5\xb2\xbc\x13\xd6\x74\xd5\x66\x67\xbb\x61\x9c\xe6\xe8\x34\xc6\xaa\x04\x02\x82\xaf\xd7\x64\x85\x0e\xd3\xa4\x6f\x14\xe7\xcd\x35\x24\x4d\x44\x68\xcb\x17\xdb\xee\x04\xea\xb0\x7e\x03\x3f\x88\x00\x33\xca\x2b\xaf\x30\x4a\x4c\xc1\x55\x37\x4f\x6f\xe9\xa1\x49\x4d\x92\xf1\xb9\xb9\x6e\x91\x8e\xa7\x94\xbc\x28\x32\x26\x48\x96\xde\xad\x09\x1c\xfa\x1c\x98\x3d\x56\xd8\x2c\x4a\x33\x62\x13\x83\xa7\x09\x76\x54\xbe\x6e\x33\x2b\xf9\x51\x5b\x84\x43\x04\xcb\x8e\x82\x70\xce\x53\x0d\x2a\x88\x43\x51\x8e\x16\x9d\x58\x0b\x0e\xa3\x4b\x81\xea\xde\xbc\x34\xd1\xd4\xd2\x83\x28\x31\x31\xaa\x4c\xc2\xc1\xe7\x1b\x76\xd0\x46\x20\x2c\x53\x7f\xae\x46\xd5\x4d\x14\x30\x54\x27\x23\xb1\x17\x81\x2a\xe3\x67\x45\x92\x95\x76\xa6\x6b\x2c\x72\x74\x1e\x0f\x26\x0a\xdd\x8c\x67\x83\x41\xd8\xd2\x7b\x42\x7b\x83\x9f\xa2\xcd\x8c\xed\x06\x4e\x1e\x47\xcb\x7b\x60\xce\x21\xee\xaa\xcd\xc6\x5e\xae\x6e\xa8\xda\x4a\xb8\x51\xb4\x11\x30\x63\x13\xf6\xfa\x49\x4a\x9e\xbb\xfc\xfb\xcc\x21\x97\x02\xa6\x89\x84\xc3\xbb\x45\x37\xa8\x9d\x9e\xf8\x56\x1f\x6e\x8f\x44\xde\x8f\x7b\xef\x10\xc9\xee\xee\xd1\xba\x13\x87\x5b\xc1\x1f\x1e\xc0\x33\x40\x22\xed\x7e\xa0\x95\x37\xf7\xac\x79\x54\xf5\x34\xca\x04\xf8\xcd\x9b\x30\x2f\xc2\xf8\xdb\x96\x37\x18\xa4\x23\xfb\xaa\x2e\x74\xe1\x80\x97\xdd\xb5\xb9\x70\x7b\x78\xdf\x4c\xb3\x70\xab\xf8\xb0\x67\x1c\xf6\x7c\x73\x37\xd2\x81\xb9\x6e\x61\xc3\x61\x92\xc6\xe9\x20\x0a\x4d\x0c\xce\x0b\x18\x38\x84\x39\x7c\xdd\x78\xcc\x97\x5f\x46\xa2\x87\x4f\x1a\xf6\xed\x02\xc5\x1b\xd3\xd4\xca\x3d\xf4\x12\xe1\x98\x8e\xc2\x1b\x47\x69\x06\x98\x1b\xbe\x76\xce\x0f\x91\x47\x14\x80\x53\xc2\xf4\x7d\x0f\xc3\x0e\xa3\xf8\x50\x55\x27\x2f\x7a\x3a\xb2\xfd\xe7\x54\x1f\x83\x4b\x73\xef\xdf\xcf\x78\x21\x9c\x6f\x7c\xdd\x48\x43\xce\x2f\xcc\x77\xf3\x72\x0c\x91\x38\xcf\x7d\x72\x0e\xa6\x4f\x5a\x60\x7d\xc2\x6d\x1c\xee\xe8\x38\x42\xb6\xd7\x15\xbf\xe1\xeb\xf8\x04\x8a\x45\x97\x27\x35\x49\x13\xaf\x9f\x78\x2f\xf0\x84\xa2\xef\x63\x7d\xf2\x27\x3e\x96\x53\x26\xb1\x47\xd3\x34\x47\xad\x1d\x81\xd2\xba\xce\x03\x4f\x23\x13\x23\x9c\x52\x1f\xd7\x5c\x38\x4e\xe3\x98\x33\x8a\x38\xea\xcf\xeb\x00\xea\x7c\xab\xa8\x54\x66\x07\x26\xeb\xc7\xc4\xdb\xec\x86\xf0\xba\x6a\xed\xb9\xee\x44\x20\x92\x34\xb1\xc7\xa2\xbc\xb0\x49\xa1\xda\x69\x21\x40\x02\x5f\xf3\x84\x8a\x76\x2e\x35\x12\x7c\x07\xe6\xba\xa3\x28\x5e\x31\xe5\x51\x8b\xf2\x6d\x4d\x6a\x95\x6f\x5c\x93\x88\x3d\x66\x06\x03\xb0\xd0\x4e\xd5\x6b\xc1\xaa\x05\x10\x3b\x11\x5b\xe0\xe9\x5e\xb7\x39\xef\x9f\xee\x46\x89\x3d\x36\xb6\x59\xe4\x28\xf2\xe1\x08\xa2\x84\xc2\xd7\x2d\x60\xac\x83\x9c\x39\x99\xf6\xfe\xcd\x8f\x02\x15\x29\x83\x59\xdc\xf9\x1e\xd5\xb2\xe0\x64\x9d\x96\x6f\x29\x8b\x45\x13\x1e\x95\x4e\x13\x51\x25\x51\xb9\xe3\x2b\xa8\x03\x08\xa2\x61\xaf\xaa\x2e\x2d\x21\x14\x16\xbd\xca\x8e\xd2\xb1\xdc\x3c\xb2\x47\xe6\xbb\xe3\xcc\x84\x45\x14\x8a\x22\x04\x02\x4b\x4e\x60\xf1\x8d\x83\x1c\x8c\xd2\x94\x98\x31\xf1\x54\x38\x73\x7f\x81\xfd\xcd\x37\x2a\x64\x8a\xcb\x24\x1c\x76\xea\xb8\x27\x85\x75\xda\x6c\x08\x64\x2d\x1e\x9b\xea\xfc\xde\x41\x46\xf0\xbf\x1b\x10\xd9\x21\x0a\xae\xbf\x3f\xf1\x35\xe5\x37\xdb\x04\x67\xa3\x64\xd9\xe6\x5e\x9b\x47\xa0\x27\x0a\x86\xe2\x15\xca\x87\x51\xdc\x1f\xa6\x29\x7a\x30\x84\xe7\xd6\xd7\xc6\x7e\xd2\x46\x19\x0f\x25\x2a\xde\x27\x3a\x25\x26\xeb\xab\xc5\xfb\x1e\x9b\x22\x8b\x4c\x56\x9d\xe6\xf4\x31\xa9\x35\x79\x60\xdd\x15\xb7\x70\x13\x3b\x48\x8b\x08\x88\xbc\xea\x51\x70\xae\x6e\x5b\xeb\x28\x0a\x2d\x7a\x33\x69\x20\x7f\xba\xce\x7e\x5a\x80\x1f\xfa\x05\x5e\x75\xc0\xa2\xf1\xb5\x92\x9f\xb5\xfd\x15\x93\xa1\x32\x8a\xb8\xe9\xae\x66\xbe\xbc\xdb\x92\xe2\x64\xd0\x28\x97\x62\xb8\x61\x90\x0f\x7f\xa6\x1c\xd2\x54\x1a\xc3\xb6\x70\x8b\x33\x06\x72\x12\x39\xd0\x99\xc3\x78\x5c\x51\xa8\x1c\x91\x29\xc9\x15\xc7\xc7\x6b\x13\xcf\x25\xf5\x9a\x5b\x91\x65\xb2\x94\xc6\xf2\x64\x48\xbf\x3d\xc6\xb3\x38\x09\x40\x67\x90\x2f\x4d\xb4\x70\x1d\x75\xe6\xcf\xce\xb2\x6b\x70\x42\x55\x5a\x4e\x68\x76\x16\xb3\xb2\x83\xbe\xdb\x71\xfe\x56\xdf\xcd\xab\x73\xe2\xd9\xde\x1e\xa9\x62\xc3\xb4\x96\xdf\x79\x0c\x63\x8f\x4d\xfb\xa3\x89\x6f\xe6\x7d\xa2\xe7\x5d\x66\x9b\x0c\xa2\xc4\x42\x96\x45\x87\xad\x3a\xf9\xe2\xd9\x17\x5f\xb1\xe9\xd8\x64\x7d\x4a\x79\x39\x6c\xea\x59\xf2\x8c\xa4\x3d\xd2\x27\x0c\x8a\x61\x2a\x4b\x96\x93\x80\x2a\x1d\x74\xd5\xa5\xf4\x97\x22\x9b\x17\x06\xb9\x1c\x81\xcc\xd1\xaa\x10\x2c\x9d\x86\x26\xae\xda\x6c\x1b\x39\x2f\x9c\xe2\x53\xd2\xfe\xc7\x11\x4d\x01\xb7\xfc\x11\x05\x30\x88\x1d\x20\x19\x2e\x89\xf7\xb6\xa6\xfe\xcc\x0e\xca\xd8\x64\xcc\x0e\x55\x4b\x00\x89\x29\x6b\x6e\xb0\x85\xee\xc0\x94\x71\x1a\xe5\xce\x2a\x49\xdb\xb4\x42\x41\xde\x68\x84\x1b\xfb\xf7\x77\x29\x47\xd3\xf1\xe0\x81\x9b\x81\x4a\x3e\xdc\x54\x69\xdb\xc2\xc4\x47\x59\x81\xe6\x05\x4e\x19\x21\x5d\x28\x65\xe8\x8e\xe3\x1c\x02\xa0\xc8\x95\x1c\x0f\xcc\x39\xa1\x4d\x55\x2b\xe1\x14\x83\xb4\x7d\xaa\xbe\xa6\x8e\x12\xda\x0b\x4b\xe4\xe4\xb0\x39\x60\xc5\x1c\xc5\xb9\xf3\xc1\x6e\xba\xa2\xf5\xc8\x64\xab\xb1\x49\xfa\x1d\xa5\xeb\x76\x49\x01\x9c\x9b\xa7\xea\xfe\xfd\xdd\x61\x5a\xe6\x76\x98\x72\x48\x20\x2c\xef\xb4\x41\x85\x5a\xdc\x47\x5a\x27\x34\x02\xd8\xc4\x31\x48\xd2\xe5\xe4\xff\x3e\xbd\xae\xb4\x1c\x55\x11\x2d\xff\xbb\x22\x29\xbb\xa4\xc8\xc6\x8a\xcc\x26\x7d\x84\x38\xd8\x5a\xec\x72\xf0\x8d\x3a\xd0\x86\xe5\x60\xa8\x25\x7a\x5f\x53\xca\xd2\xaf\xb9\x05\x9c\x45\x24\x55\xa4\xaa\xfe\xd7\xb4\xee\xdb\xb5\x06\xe8\xf4\xd0\x4b\xdd\xc5\xcc\x9a\xa3\xe4\x77\x72\xb3\x64\xe0\x3b\x1c\x2e\xea\xe6\x97\xcc\x9a\xbc\xcc\x56\x77\xa8\x72\xc1\xce\x9e\xe7\xde\xfc\x9a\x6a\xde\x99\x5a\x53\x92\x08\x2c\x8a\x25\xed\x78\xde\xf9\x3f\xad\xe8\xf3\xbf\xa6\xfa\x06\x8a\xcc\x84\x47\xb7\x53\x20\x04\xf4\xd2\xf7\xaa\xf5\xbf\x01\x2e\x21\xfe\x17\x9c\x01\x4e\xf7\xdf\x25\x3d\x5e\x53\x54\xe7\x7f\xd3\x81\xeb\x16\xed\x57\x4a\x6b\x0a\xa7\x08\xee\x98\xc8\x3d\xcb\xdb\xc9\xc6\xc1\x75\x80\x8a\xf6\xd5\xc3\x38\x83\x8d\x10\xe8\x1b\x13\x15\x0f\x7d\xc3\xbb\x5c\x49\x31\x2c\xf3\xc8\xe4\x02\x94\x53\x26\xe4\xa0\x33\x21\x2d\x14\xb6\x63\x5b\x44\x85\x55\x7d\xc5\x70\x0a\xf9\xba\x71\x08\x1f\x59\xd8\xc7\x30\xb0\x4e\xe7\x45\x79\x97\x3f\x0b\x54\x5f\xfc\x9f\xb5\x74\x89\xcd\x75\xf3\xa1\xe1\x3e\x89\x8d\xeb\x13\xb4\x2e\x34\x7c\xfd\x85\x7d\xdd\x28\x41\xef\xc7\x94\x92\x66\x66\x9e\x48\x2c\x4b\xa4\xd2\x85\x39\xaf\xe5\x7d\x46\xd1\x60\x58\xac\x4e\x79\x2c\xf1\x05\xb2\x14\x80\x49\xbe\xa3\x24\x79\xde\xf4\xa4\xa3\x69\x5e\x58\xd6\x1e\x85\xd3\xfe\x60\xa2\xda\xed\xdf\xa3\x9f\x44\x3e\x92\x49\x86\xe1\x47\x3e\xd9\x6b\x49\xd9\x2c\x99\x4c\x26\x0c\x01\xec\x79\xcd\xce\xa4\x75\xa6\x0a\x6b\x48\xe7\x00\x1e\x83\x50\xa9\x7a\x0c\x5d\xb3\x6d\xf0\xe5\x97\xbb\xc3\x74\x64\x49\x0a\xd8\x3b\x72\x0f\x74\xc6\xfc\x41\xe3\xe4\xa7\xf0\x2e\x0d\x8f\x8e\xa9\xf9\xe6\xb0\xe4\xf2\xa1\x9a\xcd\xd7\xaa\x26\xbc\x6c\x93\x22\x8a\x29\xd1\xd0\xf1\x87\xca\x55\x45\x93\x7d\xb5\xb5\x19\xb9\x30\x1c\x40\x4a\x26\x95\x96\x84\x64\x88\x9e\xd6\x2d\x21\xcb\x51\x68\xf3\xdd\xd5\xdf\xa2\xf8\x09\x79\x2c\xd1\xd7\x51\x62\x62\xd0\x50\x46\x4d\xf6\x43\x2d\x3c\xfd\x5e\xa0\xda\x9e\x45\xb4\x83\xf3\x13\x81\x02\xd4\xa0\xc2\x81\x69\xdc\xb9\xe6\xcb\x8e\x5b\x1a\xcd\xf8\xb3\xb3\x5d\x7b\xac\xc8\xec\xc8\x2a\xc8\x3f\xd3\x29\x08\xeb\x80\xaa\x5f\x08\x6f\x18\xca\xdf\x08\x48\xf8\xda\x95\xb1\xfb\xa9\x28\x2e\x22\x27\x75\x17\x07\x22\xdf\x28\x6f\x62\x39\xca\x23\x92\x52\x16\x64\xb9\x43\x35\x28\x20\xc3\x33\x9a\xf2\x67\x94\x16\x4e\xaa\x42\x28\x0d\x75\xb7\xca\x5e\x4d\xde\x39\xde\x55\x43\xa8\x6f\x52\x83\x7a\xc1\xf5\x31\xfa\xb0\xee\x38\x96\x3f\xf2\x57\x1f\x69\x72\x2c\xf8\x10\x9c\x5a\x56\x52\xba\x1f\x51\x36\x15\x99\xab\x77\x5c\x2e\x3b\x2e\xb3\x7a\x4b\xcc\x3b\x81\xef\x04\x7f\x47\x2d\x8a\xc5\x32\x8e\x2d\x39\x03\x2e\xeb\xa0\x9b\xbc\xee\xd5\xfe\x34\x8f\x12\x9b\xe7\x9f\xa4\x5d\x05\xef\xe2\x31\x19\x67\xc7\x5e\x5e\xf9\x45\x35\x58\x2e\xf6\xd3\x43\xbd\x4f\xee\xe2\xdd\x05\x4c\x55\xfd\x16\x16\xe0\x04\x85\x3b\xd7\xd8\x34\xbf\x30\x5f\x23\x9c\x62\xa5\x6f\x0c\x0a\x96\xf7\xbf\x60\x09\x1b\xfe\x33\x1a\x61\xa4\xa8\xb6\x40\x8f\x06\x19\xd4\x0d\x2c\x6d\x80\x0c\xa7\x08\xe1\x88\xd0\x80\x99\xff\x1d\x4f\xb1\x43\x3e\x3c\x03\xaa\x28\xac\xd9\x3b\x6d\x61\x81\x1d\xd9\x6c\x20\x00\x2a\x27\xef\xaf\xfa\x47\x55\x83\xc0\xa3\xc6\x01\x3c\x3b\xdb\xcd\x52\x93\x17\x2a\x04\x3b\x4d\xd6\x52\xe0\x89\x3e\x3b\xb8\x1c\x81\x7b\x17\xe0\x2a\xfc\x86\x10\x47\x76\x3e\x7f\xc4\x89\xf1\xb4\xa8\xa7\xe6\xe5\x78\x1c\xaf\xaa\xbc\xd9\x29\xfa\x0d\xbe\x6e\xd8\x70\x89\x42\x97\xa6\x7d\x84\x76\x12\x94\xfb\x08\x6e\x7e\x1e\x54\xe1\xa9\xa3\x0d\x5e\xf0\x34\x78\x6d\x44\x9e\x8b\x69\x5e\x08\x8f\xaf\xe4\x8c\x69\x1d\xf0\x8d\xea\xd8\x58\x8c\xab\x80\x5f\x09\x7e\x33\xfe\x96\x6f\x70\x60\x63\xc5\xb0\x51\xe7\x1b\x2d\x9d\x51\x94\x7d\xe6\xe9\x6e\x4d\x12\xb6\x40\xd5\xed\xb1\x71\x94\x49\xc6\x4e\xa8\xd5\x69\x45\xf0\x8d\xea\x1c\x5e\x4a\x33\x83\xa1\x84\x2b\x02\xf9\x01\xbe\x6e\x7c\x39\xa9\x84\x2e\x96\xd9\x22\xb3\x6c\x02\xdf\xc3\xd4\xdb\x4e\x0e\x66\xce\x6f\x90\xcd\x89\xc8\x99\x43\x10\xb1\x28\x0b\xaa\xef\xf3\x5e\x46\xe4\xf2\x48\x45\x31\x4d\xaa\xaf\xea\xd4\x09\x33\x4b\x94\x28\xa8\x6f\x8a\x52\x80\x6a\x29\x3e\x51\x8b\x9f\xe3\x34\x89\x4c\xdc\xa1\x34\x2c\x13\x6c\x05\x4a\x40\xfc\xed\x36\x10\xe5\xd0\x64\xcb\x36\x2f\x3a\xb4\x4f\xda\x1a\x77\x1c\x93\xaa\x0d\xcb\x8c\x58\x51\xb6\x75\xe6\xe6\x36\xae\x4f\x94\x8a\xe6\xa5\xa0\xb3\x7f\x66\xe3\x3a\x87\xd3\x30\x62\x4f\xf6\x14\x5f\xd4\x36\x57\xfb\x58\x19\x5a\x03\xac\x14\x36\xe5\x63\xc0\x86\x90\x0c\x3d\x3d\xe9\x7c\xf1\x0b\x52\xd2\x56\xbd\xcf\x35\x42\xe6\x66\x03\xe2\xcc\x21\x90\x84\x95\x9e\x1d\x42\xb4\xfc\x3a\x4a\xe2\x77\xf3\xdb\xcf\x2f\xcc\x77\xa3\x3c\x2f\x2d\xb7\xd1\x23\x0f\xf5\x08\x0b\x93\x6f\x1a\x3b\x9e\x3a\x15\x23\x5b\x3b\x97\x6e\xea\x32\xcd\xcd\xc9\x1e\xfe\x48\xf7\xc8\xcc\xa1\xbf\x50\x19\x29\x69\x06\x51\x22\x0c\xef\x4f\xbc\x76\xcb\x96\xb5\xce\xe7\xbe\xc4\x3b\xe1\xe7\x81\xef\x71\x66\x19\x03\x95\xf9\x93\xd6\xaa\xef\x13\x42\x00\x1e\xe6\x79\xd0\x5b\xc1\x10\x5e\x51\x86\xe1\x86\x66\x1e\x00\x26\xc5\xd5\x87\xe7\xdd\x59\x73\x36\x50\xc5\xa3\x5b\x13\xa5\x32\x39\x4d\xd1\x01\x1c\xb5\xf7\x54\xd3\xd0\x8d\x89\x3e\x63\x6f\x60\xb8\x80\x16\x07\x41\xa6\x40\x02\xc9\x72\x4b\x37\x52\xe5\xeb\x3a\x52\x91\x6a\xad\xb9\xb2\xa9\x27\x52\xfd\xfa\x44\x09\xa4\xfd\x94\x04\x43\x90\x26\xfa\x8f\x6d\x73\xf7\x69\x4a\xba\x8f\x3b\xbe\x33\xe3\x7d\xc5\x33\xf6\xbe\x3a\xf1\xfa\x36\x8c\xc5\xa9\x54\xc5\xd0\x6a\x36\x84\xc2\xa5\x85\x98\x26\x8c\x8a\xe8\x55\x9b\xe4\x2a\x6f\xca\xa9\x13\x61\x27\x7f\x46\xe3\x00\xd3\xac\x30\x49\xb1\x9b\xce\x4e\xe0\xcb\xb6\xf6\x68\xfe\x70\x90\x5d\xd1\x0e\x31\x68\xb5\xc4\x8b\xa6\x71\xc2\x6c\x3c\xdd\x53\x54\x52\x1f\xa2\x3b\x17\xae\xfa\x1e\xe0\x99\xf8\x9b\xa9\x21\x1d\x68\xb5\x3b\x8a\x21\xee\xca\xc4\x8b\xe1\xe5\xd1\x20\x89\x96\xa2\xd0\x24\x05\xa3\x32\x84\x25\xab\xfa\x7b\x49\x80\x29\xc1\x51\x93\xec\xa6\xd9\xc7\xbc\x42\x93\x5e\x4a\xd8\x8a\x9a\xef\xf4\x44\x0b\x0f\xc3\x7c\x3a\xe5\x5a\x87\xad\x7b\x12\x2f\x82\x64\xd4\xf6\x35\x0f\x26\x3b\x0b\x8b\x54\xe3\x1d\x42\xce\x6b\xc7\x5a\xdb\xe9\x53\x05\x70\x95\xa7\x86\x1f\x45\xa6\xfd\x16\x9e\x87\x6f\x1a\x5b\xb4\x8a\x96\xfa\xe9\x4a\x42\x98\x37\xf8\x3f\x3f\x50\x2a\x62\xd7\x02\xc5\x04\xf3\x68\x52\x2b\x76\x38\xc9\xd0\x2b\x9a\x59\x2d\x4b\x97\xa3\xbe\x9d\xa6\xd9\x94\x28\x5b\xe3\xe6\x02\xdf\x6e\x8c\x42\x9f\x0f\xbf\x79\x79\x24\x39\xf5\x29\xd7\x69\xf1\xb8\x86\x25\x1d\x46\x2d\xb1\x4a\x15\xde\xd8\x65\xf9\x94\x74\xd5\xd0\xa7\xf8\x46\x81\x4f\xc6\x36\x93\x22\xaa\x74\xd9\x2b\x2a\xd5\xb3\x5a\xb8\x18\xee\x84\x4b\xe1\x73\xb3\xb7\x14\x90\x7d\x9a\x75\x60\x13\xbb\x6c\xd4\x69\xc9\x88\x1c\xbe\x69\x65\x0b\x49\x57\xec\x74\x2d\x53\xe4\xf1\x35\xec\x0d\x20\x96\xe6\xe6\x6e\xb8\x06\x27\xdb\xfa\xfc\xca\x24\x4e\x97\xa9\x8f\x72\x76\x96\x17\x2c\x14\x42\xf8\xba\xd1\xe8\xf9\x99\x6e\x38\x34\x14\xf0\x67\x72\xd6\xce\x38\xf9\x11\x7a\x26\x29\x22\xc9\x69\xb4\x14\x47\x96\x13\xaf\x42\x9f\xab\x1a\xf8\xd9\x46\xe0\x9c\x3f\xa3\x0c\x4a\x5a\x16\x7d\x9a\x4d\xdf\xd5\x79\x5e\x31\x38\x9e\x6f\x84\x90\xf3\x2f\x1d\xec\x96\x89\x4d\xfa\x82\x7c\xc1\x80\x9c\x51\x69\xa0\x33\x2d\x41\xe1\xc1\x6e\x16\x8d\x0c\x8a\x1a\x42\xeb\x42\x13\x20\x8c\x2f\x2d\x64\x53\x79\x68\x16\x39\xb0\x91\x02\x84\x4f\x47\xbc\xdb\xe6\x02\xe4\x96\x0a\x35\x34\xcd\x22\xee\x5f\x3d\xa3\x60\x3e\x3e\x4e\xc5\xcb\x27\xb5\x90\x9f\x7a\x9f\xac\x1a\x5f\x37\xfc\x19\x28\x77\xd7\xf2\x31\x2e\x63\x35\x3b\xeb\xb6\x8c\x37\x48\x2b\x19\x5a\xa4\x51\xc0\x79\xcc\x45\x68\x89\x87\x7d\x8c\x09\xee\x3c\x46\xd3\x28\x5c\xc1\x52\x94\x87\x43\xa6\x2f\x87\x1d\x3b\xa7\x75\xc6\xce\x35\x5a\xe9\x0f\xef\xf3\x20\x93\x70\x55\xa5\xed\xaf\x68\xc9\x9b\x2b\x2a\xad\x37\xb6\x59\x49\xdf\xef\x7a\xd9\x0e\x08\x22\xef\xa2\xa2\xc6\x5d\x32\x71\xc8\x9d\xda\x88\x2f\xef\x69\x29\xf8\x7b\x0a\xd6\x27\x8c\x49\xc2\xd4\xf3\x56\xa0\x81\x5d\x6f\xb5\x2e\x11\x70\x82\xb8\xe3\xf9\x75\x9a\x05\x61\x71\xf2\xa5\xac\xa5\x38\x5d\xed\x77\x7c\x33\x35\xf2\xbf\x7c\xed\xc1\x53\x79\x61\x2d\x35\x81\xe0\x6d\x2f\xd0\xe0\x8a\x24\x94\x4f\x78\x30\x5b\x2b\x1c\xcb\xa9\x5e\xb3\xf9\x32\x7f\xd5\x16\x29\x97\xfe\xd0\x53\xf8\x13\x8d\x4c\xd1\x4c\xe5\xb7\x1a\x76\x64\xff\xfe\xee\x2b\xe6\xd5\x57\xa7\xb4\x42\x6d\x67\xae\x2e\x9b\x24\x2a\xb6\x2d\x05\x2b\x2a\xbd\x50\xa9\x96\xc6\xc5\x49\xe4\x3b\x0a\x84\xcb\x8a\x84\xbf\x88\x46\x8b\x36\xa3\xb4\xb3\xaa\x38\x4e\xfc\x01\x7d\x4d\xcd\xe4\xa2\xc9\x16\x6d\x06\x83\xa1\x30\x18\x73\x9a\x22\x41\x9a\xa4\xd6\x9d\x1c\xd7\xc8\xf4\xed\xee\xea\x99\x71\xea\xb1\x36\x38\x62\xda\x07\x5a\xb2\x7b\x43\x07\xd8\xff\x07\xb9\x6c\x08\x17\x9f\xa4\xd4\x0b\xb9\x4f\x47\xfe\x22\x32\x68\xe4\x31\x9f\xf8\xed\x9e\x5f\x7e\x4f\x00\xb6\x46\x5e\xf2\xb5\xdf\x05\xd3\x26\x86\x7e\xfb\xda\x53\xae\xb0\x1c\xda\x38\xb6\x09\xa0\xbe\x62\x53\xaa\x67\x13\x02\xa3\x8e\x53\xd9\x9a\x5a\xf3\x67\xfb\xd3\x6d\x99\x3a\x13\xa7\x89\x55\xf2\x44\x8f\xb4\xb8\x0a\xbe\x15\x0b\x77\x5b\xcf\x67\x0a\xb3\xb4\xcc\x15\x2a\xe8\x9a\x42\x05\xe9\x2c\x57\x1c\x85\x36\xc9\xd1\x23\x24\xf9\xea\x77\xe8\x6f\xf9\xba\x85\x69\xe3\xcb\xdd\x1a\x0b\x09\x62\x8a\xdb\x74\xf4\x23\xc9\xf2\x4b\x24\x1d\x04\x16\xd8\x04\x94\x7e\xb9\x8a\x0f\xa9\xb4\x48\x43\x29\x3c\x2e\x9e\x39\xfc\x92\x23\x32\xc8\xac\xe9\xd7\xa2\x80\xcb\x3a\x3b\x75\xb9\xc6\xd4\x95\xd9\xd5\x69\x0f\x52\x82\xf8\xae\xc8\xcd\x77\x9c\x32\xf6\xf4\x9a\xee\xbb\xdc\x1c\xd5\x57\x7b\x22\x8d\x5c\x93\x06\xa6\xe5\x22\x16\x1c\xdf\xa8\x28\x7a\x50\x46\x7d\x19\x3c\xd4\x44\x3e\x64\x53\xc2\x77\x2d\x39\xe6\xf9\x6e\x1c\xb9\xf3\x56\x7c\xf5\xea\x91\x84\x32\x50\x49\x5b\xa5\x8b\x8b\xc0\x1f\x03\xa0\xf2\xb0\x06\xfb\xf4\xad\x62\xe7\x26\x9a\x20\x3c\x15\x66\x13\x21\xc7\xf7\xec\x03\x97\x14\xfd\x79\x6e\xe3\x6d\x3e\xcb\x0c\xf2\x60\x94\x8d\x7e\x4e\x51\x13\x22\xa5\xb7\x74\x23\x00\x43\x41\x25\x7b\xd7\x46\xc2\xb2\x62\xed\xd1\xbe\x59\xad\xe9\x92\xff\x2c\xf0\x79\xd3\x9f\xb5\x15\xd8\x8a\x61\x66\x57\xe8\x91\x6b\x22\xad\x92\x52\xf4\xe0\xf0\xb4\x2c\x32\x33\x60\x8f\x00\xff\x0d\x56\x24\xbe\x6e\x74\x98\x7f\xa6\xfb\xea\xe2\x62\xc7\x57\x3b\xb8\x5f\x58\x48\x6b\xa4\x24\x36\x24\xb6\x4e\x99\x74\x98\xdb\x1b\x00\xe2\xf0\x4d\x5b\xdf\x4b\xdf\x2e\xd9\xa4\x3f\xe5\xf3\x30\xff\x01\x3b\x53\x7c\x21\x1f\xd1\xe8\x08\x60\x39\x4c\xe9\xc0\x45\x98\x7d\x5f\x83\xa1\x7f\xa6\xce\xdb\xab\x9a\x59\x62\x7b\xef\x69\xad\x8d\x89\x64\x05\x7d\xd0\xa5\xd6\xab\x67\x95\xd4\xfa\xd3\xea\x4c\x5c\x4e\x33\xaa\x9b\x78\x1b\x1f\xe8\xa4\x4f\x0b\x1b\x45\xe5\xb7\x4a\xe4\x2d\xf4\xb1\x8a\x39\xe2\x74\xc3\xed\x7a\xee\xb9\x6e\x3a\xb6\x99\xf1\x80\x0a\xdd\x99\x2e\x2e\x74\xcb\xe9\x93\x96\xd2\xb4\x89\x0a\x0a\xf3\x33\x49\x64\x4a\x61\x2a\x56\xfe\x0d\xd7\x89\x19\xa6\xc9\xb2\x05\xe9\x07\x33\xa9\x29\xc2\xb4\x2b\x8d\xd5\x75\x64\xe6\x50\x37\x4e\xf3\x02\x5e\x2a\x92\xa2\x17\xe0\x7d\xf2\xcd\x44\x09\xd3\x14\x0c\x82\xeb\x78\x5f\xe9\xb6\xc2\xfc\xdf\x56\x7f\x9b\x2e\x2d\xd9\x24\x8f\x96\xe1\x14\x08\xc9\x68\x47\xb1\x8f\xaa\x6e\x77\xf2\x09\xdc\x7f\x5d\xd2\xc4\xa4\x1a\x00\xbf\x68\xe2\xa3\x53\x3e\xb5\x00\x42\x18\xce\x26\x04\xbe\xfe\xbc\x73\xed\x59\xc9\x16\x15\x99\x29\xd2\x7c\x3c\xb4\x59\x14\xd2\x2f\x38\x81\x10\x25\x24\xe5\xd7\x5e\x1a\x83\x29\x08\xe9\x82\xf5\x89\x62\x8d\x5c\x57\x02\x3d\xa3\x34\x2b\x06\x24\x25\xec\x45\x92\xae\x69\xe6\x88\x66\x5f\xc2\x91\x85\x7d\x5d\x3a\xa6\xf6\xcf\x28\xc9\x53\x97\xd9\x40\xfb\x92\x08\x28\x6d\x3e\x11\x0e\xbd\xd4\x4d\xd2\xa4\x4c\xa8\x96\xe3\xf2\x84\x40\x88\xf1\x75\x9b\xd4\x5a\x37\x2c\xd3\x51\xda\x51\xe1\xd7\x87\xaa\x3d\xfe\xc3\x3a\x4a\x64\xa9\xcc\xa3\x34\x99\x52\x90\x73\x0c\x29\xe2\x27\xfc\x16\xac\xdc\x86\xaa\x32\xe5\x65\x46\x80\x16\x61\x12\x40\xf5\xfd\xae\x92\xde\xb8\xdb\x78\x32\x22\xb0\x1d\x5b\x41\x68\x08\x43\x5a\xc7\x35\xde\x5e\x51\x3d\xac\xe3\x2c\x1d\x64\x66\xb4\xdb\x97\xc4\x7f\x5f\x33\x20\x3d\x56\x72\x73\xd7\x6a\x35\x37\x5a\xcf\x9c\x68\x9e\xa8\x50\x9b\xd3\x21\x8c\x69\x51\x56\xfd\x5b\x58\x75\xfc\xee\x28\x2b\xa0\xd8\xf7\xc4\x5a\x73\x70\x0f\x76\xf3\x71\x7a\x94\x5b\x76\x44\x58\x5c\xa7\x0a\x9f\x52\xa5\x9b\x68\x99\x2a\xfc\x0a\xa0\xa3\xb5\xcb\x26\x6a\x2d\xd6\xf8\xfc\x1b\x71\xd5\x81\xb9\xae\x89\xc2\x61\xa4\xe9\x1c\x19\xa3\x2c\x65\xc7\xcd\x1f\x21\xdc\x65\x61\x47\xb4\x52\x91\xe4\x3d\x8b\xed\xcd\x37\x93\x27\x3c\x9c\xdb\x2e\x76\x74\xee\x94\xc5\x26\xf8\x66\xcd\x1f\x33\xd1\x68\x14\x25\xe2\xd7\x2a\xf2\xde\x17\x5c\x3f\x5b\xc3\x6d\x98\xe9\x66\x16\x60\x29\x8f\x54\xa4\xf1\x12\xd4\xa2\x5a\x8c\x43\xbb\x9c\xa5\xb1\x2d\x60\x62\x45\x3d\x5f\x85\xfc\x97\x5d\xc9\x37\x1a\xd9\xb8\x6f\x08\x85\xaa\x94\x33\xe6\x5d\xc4\xe4\x81\x41\xa3\x34\xb1\x85\xc9\x22\x31\x75\x38\xbe\x6f\x4f\x54\x31\xa0\xc6\x30\x9b\xa5\x79\x9e\xa5\x95\x73\x55\x85\x21\x08\x8e\xbf\x4d\x67\x29\x5f\x07\xd2\x37\x95\x98\xd1\x94\xcf\x24\x5f\x6b\x92\x65\xa2\x18\xf7\xc0\x43\x89\x4c\xe2\x00\x73\xd2\x0d\xeb\xe5\x3c\xaf\xb5\x70\x6d\xc7\x69\x7a\x74\x5a\xf3\xc2\x05\xde\x39\x42\x79\x91\x75\x03\x28\xcd\xc1\x74\x88\x0d\xd8\xfd\xfe\xfd\xdd\x28\x33\xb5\x1c\xd6\x25\x9d\xc3\xba\xa4\xb8\x4e\x38\xed\xa8\x93\x12\xe8\x8b\x44\xe1\xf6\xfb\x9a\xd1\xe4\x66\x63\xa1\x56\xd6\xae\x48\x63\xce\x7d\x20\xde\xe0\x93\x9c\x6f\x1a\x87\xa4\x84\xf3\x8b\x69\xd2\x9f\xf6\x85\xfa\x27\xd6\xd4\xae\x04\xd6\x03\x09\x47\xec\x76\x64\xcc\x9e\xed\x35\x51\x50\x33\xdd\x22\x8b\xca\xd1\x78\x28\x5e\x0b\xf2\x08\x1f\xc2\x13\xe0\x9b\x36\xb6\x04\xef\x12\xcc\xcd\x39\x71\x36\xfa\x90\xc8\xb6\x29\x16\x95\x95\xa8\x08\x87\xcc\x3f\x0d\xef\xe2\xa6\xa2\xfb\xbe\xa9\xce\xb8\x38\x2d\x72\xd5\x52\xff\x96\x42\xb9\xbd\xa5\x8e\xcd\xbe\x2d\x6c\x86\xce\xa4\xfd\xfb\x7d\x34\xe4\x45\xc9\x54\x9d\x2b\xac\xce\x58\x6e\x0d\x91\x4c\xaa\xca\xaa\x2a\xc1\xc0\xa4\x1c\x55\x27\xa0\xf0\x03\x09\xe6\xe5\xbe\x92\xe1\xb9\xaf\x2c\xd6\x20\x31\x2b\x62\xd1\x85\xef\xbc\x7a\x04\xbe\xd6\xe2\xb2\xa9\x49\x48\xe3\x79\xae\xc6\x5d\x0e\x28\xe3\x79\x45\xbc\xf1\xfb\x64\xa8\x95\xc8\xb0\xd3\x4c\x55\x8b\x6e\x29\x4e\xb3\xa8\x6f\xa0\x68\xcd\x85\xea\xa0\x46\x23\xe1\x4b\x09\x17\x37\x91\xb3\x57\x3f\x2b\x5d\xe2\x2a\xa5\x77\xa5\x05\x57\x4c\x6e\x41\x32\x00\x2a\x0c\x07\xf6\x39\x3c\x12\xc2\xdc\xf7\x26\xbe\x63\xf0\x96\x72\x16\x07\x66\xb4\x18\x47\xc9\x80\xf8\x66\x9c\x78\xa9\x47\xd8\x9d\xaa\x1e\x62\x63\x5d\xeb\xb8\x9d\xd5\x04\xae\x1d\x04\xc3\xcc\x7f\xd8\x30\xd5\x55\xdc\x97\xa7\x59\x81\x8d\xce\x65\x15\xbf\xca\x0f\x42\xa1\xd5\xa9\xe9\x1e\xf0\xb2\x31\x6d\xac\x24\x65\x78\xd4\xd1\x8d\x33\xc2\x89\x5e\x4b\xd0\x4e\x9f\xf4\xfe\xe2\x52\x94\x87\x00\x8a\x68\x7e\x9b\x89\x2e\x26\xb7\x56\x64\x4d\x14\xa7\x65\x41\xbd\x99\x22\xce\xdf\xf1\x42\xfd\x2a\x2c\x19\x67\xe9\x38\xcd\x4d\xbc\xbb\xe3\xa8\x22\xb6\xaa\xf4\xc1\x3f\xde\x40\xad\x5f\x5e\x4d\x11\x7e\x5c\x41\x5f\x9a\x96\xf0\x00\xe6\xe1\x74\xe0\x5b\x59\x36\x54\xd8\xc7\xe5\x2d\xd8\x68\x56\xbf\x87\x5f\xbe\x11\xfc\xe5\x8f\x31\x39\x51\x12\x66\xd6\xe4\x51\x32\xe0\x7c\x34\xc6\xf5\x17\x81\x3a\xfe\x7e\x51\x8b\xa4\x23\xdb\x7f\xd2\xc7\x28\x04\x26\x92\xf6\x99\xef\xf1\xba\x94\x63\xcb\x65\x4c\xde\x7c\x0c\x45\x03\x2c\xd8\x77\xa8\x55\x8d\x51\x2c\x24\x2b\x8f\xe2\xfe\x34\xe1\x09\x10\xe2\x7c\x9f\xbb\xde\xf8\x13\xb4\x13\x60\xff\x6f\x83\x82\x50\x64\xfa\x68\xf4\x60\x9d\x2e\x68\x4e\xeb\xef\x4c\x94\x6f\xf0\xe3\xb6\xc6\xb4\x3c\x34\x4c\x23\x2a\x90\x56\x9a\x16\xc1\xb4\x36\x97\xe8\x7c\xb7\x20\x7e\x67\x47\x86\xf2\xd5\xc0\xb7\xd4\x7f\x75\xb3\xe4\xd3\xa1\x97\xba\x9f\xa5\x5d\x06\x7b\xf8\xcd\x89\x17\xb4\xfc\x85\xe2\x74\xfe\x71\x6d\x70\xd3\xd5\x7c\x57\xe7\xb9\xe7\x5c\x42\xba\x1a\x28\x57\xae\x74\x34\x84\xef\x68\x06\xd9\x73\x68\xfa\x71\xe9\xec\x05\xa1\xd7\x39\x0d\x87\xca\x2d\x4f\xb7\x01\xa0\x62\x02\x17\xf5\x3b\xaa\x07\x3e\x34\xc5\x30\x8d\xa3\x90\x8d\x1a\xbb\xea\xf4\x8d\xcc\x4f\xa6\xe5\xd2\x98\xfd\x45\x1c\x7a\xcc\x3c\xfc\x4c\x4d\x47\xbd\x12\xc5\x71\x54\x47\x60\x2b\x2f\xe5\xb5\xcd\xac\x16\x95\x21\x98\x5f\x98\xff\x0b\x54\x91\x43\x32\xe1\x04\xe6\x18\xf9\xa3\x3b\x93\xce\xe7\xbe\x24\xa4\xb0\x70\x54\x91\xe7\xb8\xa7\x79\x76\x6e\x50\x17\xbb\x4c\x4c\x35\x88\x52\xcf\xad\x4e\x16\x1c\xe3\x8f\x02\x45\x4f\xc0\x45\x07\xf8\xe0\x0c\xb2\x71\x62\x82\x6a\xb9\xd1\x60\x20\xd7\x77\x3c\xf0\x54\x09\x0f\x51\x27\xc4\x27\x3e\x64\x28\x0d\x7e\xfe\x26\x4a\xc8\x68\xd0\x7a\x03\x9b\xd2\xf5\xf8\xba\x84\x2a\xef\x0f\xe0\xbb\xcf\x10\xb5\x25\xeb\x69\xe9\x7e\xcf\xbb\xea\x40\xb8\x41\x68\x25\x18\x84\xeb\x81\x6a\xb8\x86\x98\xac\x90\xf5\x3d\xe9\x00\x9c\xf1\x20\x2a\x47\x53\x0a\x9d\x7c\x5b\x49\x14\xbc\x4b\x00\x18\x09\xcd\xdb\xb2\x72\x79\x9c\xae\xb8\x18\x1e\x20\xba\xb3\x0a\x50\x77\x56\xa5\xa6\x72\x9b\xe4\x76\xda\xbb\x2b\x6c\x97\x30\x6c\xb7\x31\xb8\xc2\xf3\x41\xe3\xc1\xff\x13\x68\x75\x5d\x22\xb3\x4b\x8a\x1c\x9a\xc0\x30\x36\x7f\x46\x96\x9f\xaf\xf5\x49\x6c\xb2\x8c\x41\xbb\xc0\xf3\xb0\xf3\xc9\x37\x8d\x44\xde\xa1\x97\xba\xc3\x34\x26\x3a\x60\x27\x0d\x7f\x57\xf5\x1a\xde\x0d\x24\x88\x26\xea\x46\x53\xc4\x26\x29\xaa\x20\xda\x15\x57\x6f\xd1\xab\xf3\x75\xd3\xe3\xdf\xdf\xcd\x0b\xb3\x2a\x47\x90\xc8\xab\x2a\x3c\xe8\xd5\xc6\x33\x2d\xec\xeb\x96\xe3\xa1\x8d\xb9\x55\x56\x31\x21\xcc\x7b\xe9\x5e\x5f\x99\x7e\xa0\x28\xfb\x07\xd6\x1e\x45\x38\x2e\x7c\x0e\xaa\x07\xe7\x4c\x50\x53\x9a\x1a\x45\x04\x81\x72\xfc\xf4\x2e\xf5\x79\x4a\x13\xec\x4c\xf5\x7c\x76\x7e\x39\x8d\x4d\x41\xc8\xbe\x9d\xbe\x3c\xb5\x3e\x51\x82\x65\xeb\x9a\xe9\xf0\x22\xd6\x3b\x56\xef\x2d\xc5\xa3\xfa\xaf\x03\x5f\xdb\xbd\x85\x79\x87\x01\x9b\x02\x4c\x05\xd9\xd8\xfb\x2a\x23\x31\xf3\x3b\xfb\x3a\x3e\xac\xbd\xa5\x83\x3d\x4d\xdf\x19\x9b\x95\xcc\x75\x57\x39\x24\xe1\x01\x8f\x24\x7c\x5a\x09\xd1\x2e\xc6\x51\x18\x93\x68\xb0\xd0\x31\xde\x23\xcb\x88\x2c\xfd\x69\xdd\xb0\x74\x8f\xf6\x07\xff\x47\xa3\x54\x35\x73\x08\x04\xd6\x79\x61\x12\xa1\x4f\x6d\xa3\x08\xf4\xdc\x5c\x61\x6c\xa2\xc5\x34\x4b\xa4\x44\xec\xb4\x6b\xaa\xd7\x12\x48\x44\x93\xd9\xfb\xa0\x9c\xd1\x92\x77\x13\x91\x62\xd5\xe3\x71\xc7\x05\x85\x83\x38\x35\x02\x9f\x16\x45\x3e\x7a\x27\x31\x27\x7e\xd9\x98\x38\x4e\x51\x63\x73\xec\xdb\x5e\x23\xed\x42\xdb\xa6\x29\xb2\x32\x2f\xb0\xd2\x84\x36\x42\x73\x48\xa8\xfa\x76\x99\x0d\x6c\x1f\x0c\x00\xc2\xa8\xee\x6b\x3f\x6b\x13\xd5\x48\xc2\x4d\xb3\x7c\x43\x30\x05\xc1\x2d\x7a\xa2\xc2\x1b\x58\x61\x12\x12\x34\x8f\xe6\xee\x28\x4a\xd2\x6c\x93\xb0\xe1\xec\xac\xac\xc9\xc0\xc7\x28\xef\xb6\xf5\x05\x0e\x4a\x93\x99\xa4\x40\x40\x31\xef\xba\x91\xb4\xaf\xfb\x29\xf7\x6e\x09\xf9\x8b\x26\x8e\x72\x8e\x6a\x44\x0a\x57\x91\x29\x5e\xd5\xe6\x30\x2d\x8b\xe1\x76\xcc\x39\xd0\x18\x90\x60\xd6\x4c\x0f\x58\xd5\x1f\x05\x8a\xc3\x86\xcb\x52\x38\xb2\x7f\x89\xdd\x09\x83\x33\xb5\xa6\xd5\x60\x46\xa3\xa8\x18\xd9\xa4\xd8\xee\xfb\x8d\x39\x83\x83\x7d\x77\x51\xf1\x47\x32\xdf\x2b\xf2\x5a\x4c\x50\xca\x37\x13\xbf\x53\x2f\x36\x86\x88\x79\x88\x4d\x16\xa5\xbc\xd4\x99\xb3\x49\x31\xf1\x5e\x51\x43\x44\x89\xd8\x2c\x6f\x38\xd6\x7f\xac\x9a\xe3\xfe\xb8\x31\x8d\x9f\xe9\x66\x65\xec\xce\x18\xf1\x69\x3b\x4a\x8b\x43\x49\x52\x5a\xec\x89\x29\xef\x75\xbf\xae\x28\x82\xff\x13\xc6\x4b\x88\x0e\x36\xaf\xe5\xcf\xb2\xfa\x2f\xbf\x8c\xa8\x88\xd1\x67\xf8\xa6\xee\x96\xf5\xfb\xd3\xda\xc1\xb9\xab\x8b\x2d\x41\x8d\x46\xc0\x7b\x0e\x77\xdb\x7a\x65\xfa\x51\x6e\x06\x99\x15\xb8\x2b\xa2\x9b\x87\x64\x87\x59\xb0\x72\xa2\xf2\x06\x5b\x1b\xc1\x3d\x81\x05\x04\x06\xc8\xcf\x84\xd8\xe1\x93\x30\xa3\xc0\x94\x12\x50\x5c\x10\x82\x30\x61\x97\x55\x63\xe8\xb2\x89\xa3\x7e\x54\xac\x42\xbf\xc5\x65\x07\x2a\x47\x47\x4a\x3b\x3a\x31\xf7\xa4\x2b\xb8\x0d\xb2\xb4\x1c\x53\xe1\x12\x8b\xf4\x3b\x81\x52\xa7\x58\xdf\xd4\x32\xa7\x80\x15\xaa\x79\x3a\xcd\xd2\x04\x7a\x87\xe2\x11\x5e\xa0\x06\x2f\x91\x58\xef\x28\xed\x75\x2f\x18\x8f\x1a\x14\xf2\xdd\x1f\xb4\x38\x28\x73\x94\x74\xcf\xa8\xfc\xe3\xad\xe9\x94\xd7\x5d\xba\xe6\x60\x94\xf6\x58\x9a\x2d\x46\x85\x28\x95\x49\x2e\xd0\x07\x02\x67\x1b\x19\xec\xc3\xfb\xba\x71\xf4\xdf\x24\xc8\x57\xc9\x8e\xa2\xff\xfc\x76\xfa\xc3\x9a\x59\xc5\x20\x33\x03\x28\x1c\xad\x6f\x73\xb8\x04\x5f\x0d\x34\x2f\xf0\x00\x2f\x4c\x3a\xbf\x77\xd0\x49\x16\xb6\xf4\x98\x88\x70\x66\xa7\x06\x82\x52\xa5\xef\xa6\xe2\xed\xdc\x5c\x57\x77\x22\x1f\xde\x57\x73\x43\x85\x08\x4d\x12\x7b\x03\x3b\x82\x35\x95\x21\xf7\xd1\xc7\x16\x2a\x78\xc3\xe6\xaf\xb7\x86\x49\xb1\x4d\x98\xda\x15\x41\xea\xcf\x03\x9f\xfc\xf9\x79\x6d\x63\xc5\xd1\x31\x3e\x0d\x85\x5d\x50\xa1\x12\xce\xb4\x81\x81\xe3\x34\xcd\x2d\xc7\xaa\x6d\xcc\xd0\x2d\x14\x45\x79\x48\xef\x2c\x08\x36\x29\x53\xd0\x2f\x49\x01\xc3\xa3\x34\x5e\x49\x99\x6f\xdd\x87\x48\x34\xae\x7c\xe3\x9a\x7f\x73\x13\x9b\x6c\x75\x64\x99\x6a\x93\xfb\xf0\x95\xce\xc7\x55\x55\x79\x85\xe3\xf1\x94\xd6\x19\x66\x4a\x33\x09\x89\x69\xc5\x60\x27\x1f\x87\xf9\x06\xa0\xf0\x4e\xa0\xeb\x9d\xd4\x4c\x52\x5b\x57\x52\x5d\xf4\x92\x09\xe0\x01\xc6\xbc\x3d\xd0\xb9\x9d\x75\xc2\xf6\x4a\x7a\xc0\xaf\xf7\xbb\x81\x5a\x94\x67\x28\xd3\x89\x0c\xcc\x06\x32\x10\xe2\x11\x54\x3e\x95\x20\x57\x9a\x60\xb1\x85\x6e\x1e\x47\xc4\x96\x4c\xef\x25\x54\x2a\x4a\x18\xfc\x1b\x1e\x8e\x61\x2d\xe0\x0f\x38\x5d\xb7\xf7\x34\xe8\x42\xe9\x54\x6f\x59\xab\xc2\x12\x0c\xc4\x19\x5d\x56\x88\xf2\x41\x99\x17\xba\x45\xe9\x9f\x4d\x6a\x02\xf2\x7a\x91\x95\x59\xb2\x97\x62\x3d\xd8\xb3\x07\x35\xd9\x61\x45\x62\xc1\x59\x5a\xbe\x21\x13\xcf\xa4\x24\x98\x10\x38\x13\xef\x60\xe3\xa3\xdb\xfe\x0d\x5d\x33\xde\x98\x78\xc1\x8b\x5b\x14\x75\xd2\xe1\x9d\x3f\xd3\xf3\x78\xb3\x7b\x20\x0d\xe2\x27\xa1\x21\xc5\x24\x3c\x68\xdf\xb0\x69\x62\x95\x98\x2f\xb2\xe9\x37\xf1\xd0\x7c\xe3\xec\x5a\x99\xa0\xb5\x9c\xe1\x03\xc8\xcb\xed\xed\xf9\xce\xd7\xbd\xaa\x31\x34\x5a\xb6\xcf\x78\x99\xa0\xf5\x40\xa1\x28\x9e\x5c\xf3\x14\x0e\xff\xe0\xd9\x35\x45\x04\xb9\x67\xad\x5a\x40\xa8\x73\x80\x7e\x06\xe6\xea\x86\x66\xda\x16\x12\x4f\xc4\xd2\x37\x68\x1c\x1c\x2f\x98\xe7\xb3\xfc\x08\x21\xb3\x83\xf0\x78\xc5\xab\x6b\x9e\x6d\xfe\x2f\x3e\x47\x46\x11\x43\xfa\x5d\x82\x1e\x90\x69\x78\xeb\xcf\x23\x9d\x88\x95\xf9\x74\xcf\x2b\xb9\x6c\x25\x9e\x76\xe9\x7a\xd4\xa1\xcf\xf3\xaf\x3c\x4f\x6e\xff\x06\x0a\xe2\x1b\xcc\x3f\x2e\xc2\x1d\x78\x68\x91\xee\xd8\xec\x30\x1c\x99\xef\xa6\xe3\x71\x9a\x5b\x9c\x98\x48\x87\xd0\xf4\xa1\x15\xd0\xb5\x6a\xaa\xde\x54\x7c\xa0\x43\xa7\x2a\x6b\x4c\x2b\x3a\xb6\x4b\x75\x77\xc9\xa9\x36\x33\x60\x0b\x63\xc9\xed\x56\x98\xa4\x0f\x26\xaa\xb5\xf5\xb2\xda\x0d\x71\x9a\x1e\x8d\x92\xc1\x0e\x5a\xa4\x38\x46\xff\xae\x12\x07\xfe\x3a\xd9\x03\x04\xdc\xff\x06\x87\xbc\xf3\xde\x16\x14\x0a\xc6\xff\xbb\x76\x9e\xae\xb8\xd3\xdf\x64\x59\xb4\x6c\xe2\x8e\xaf\x86\x3e\x0a\x94\x68\xe9\x23\x4d\xda\x90\x96\x11\x67\x91\xb4\x8e\x3b\x33\x5e\xc2\xdc\x70\xde\x58\x1d\x0d\x3f\xe4\x49\x90\x8c\x72\x8b\x3c\x63\xdf\xc6\x0e\x40\x22\x05\x53\x55\x3c\x6d\xfb\xc8\x38\x8d\x63\x9b\x4c\xa9\x56\x88\x7b\x13\xad\xd6\x4b\x4f\x86\x91\x6a\x2a\xd9\x53\x7b\xc6\x68\xa4\x48\x34\xf0\xa8\x5b\x7b\xba\xfb\x5a\x37\xe3\xdc\x51\x9d\x2e\x8b\x71\x9a\x8e\x3a\xaa\xa0\x0f\x4a\x1a\xbe\x56\xa1\xd8\x20\x33\x49\x7f\x77\x9d\x41\xae\xda\x5e\x6a\x3e\xc4\xd2\x33\x70\xd1\x55\xfe\x1d\xab\xc3\x4f\xb0\x0e\x85\xfb\x46\x25\xbf\xcf\x04\x8a\x7d\xfe\x8a\x02\x0b\xbc\x3b\x51\xfd\x3a\x97\xda\x4e\x5b\xf2\x33\x8e\xf2\x80\x3b\x96\xe6\x05\x61\x1e\xbd\xaa\x96\x7b\xdf\x9a\x65\x16\xa1\xc0\x04\x9e\xd3\xf3\x7c\x6e\x22\x9e\xc5\x62\x39\x80\x1f\xc5\x64\x14\x93\x8e\x22\xa6\x68\xe3\x02\xaa\x3c\x7d\xe4\x69\x61\xb3\x2f\xea\xdc\xf4\xc5\x06\x2d\xe7\x67\xba\x23\xb3\x9a\xe2\x41\x70\x1a\x7c\x1d\x43\xc6\x37\x6e\x3d\x17\x26\xf2\xdd\x2a\xae\xc9\xc2\x71\xe2\xbd\xd7\x28\xd3\x1d\xde\x37\x43\x5c\x7d\x79\x1a\x03\x65\xc4\x79\xb4\x89\x6a\x75\xbf\xdd\xa8\x3c\x1e\xde\xd7\x1d\x1a\xfe\x15\x49\x2f\xd1\x4c\x49\xde\x49\xc1\x7f\xd2\x10\x23\x8d\x20\x06\x14\xca\x7c\x5d\x6f\x9e\xec\x97\x21\x49\x9e\x7a\xeb\x70\x59\x49\xcb\xbe\x39\xd9\x94\xd5\x96\x4a\x75\x93\x22\xbd\x8a\x27\x8a\xac\x1c\x0c\x62\xab\xd9\x7f\x68\x8e\x1d\xe5\x82\x53\x0c\x3c\xa5\x62\x88\x22\x8b\xe2\x58\xe4\x8f\x70\x00\xfe\x93\x89\x27\x8e\xfb\x27\x0e\x95\x63\xc2\xd0\xf6\x6d\xad\x08\xef\xab\xb6\x67\x55\x68\xc0\xe4\x1e\xbc\xd1\x5c\x28\xab\xe0\xee\x58\xaf\xdc\xdf\xec\x7c\xd5\x15\x93\x21\xaf\x89\xb0\x61\x03\x31\x89\xf4\x57\xe3\xdb\xa4\xbe\x5c\xd3\x52\x5e\x5e\x45\xbc\xcf\x5d\x97\x81\xc7\x51\x7e\xf0\xb1\x90\xeb\x95\x28\x8e\xb7\x53\xc3\x94\x74\x95\x54\xef\x8c\x90\x96\x9f\x4f\xd2\x14\xf4\x4c\x02\x5d\xef\xbc\x38\xc3\x79\xce\x3d\x04\x3e\xc4\x28\xfd\xdb\xc9\x13\xca\x68\xae\x3c\x41\x0b\x03\x7f\xf6\x53\x8a\x8a\x60\x98\x98\x01\x91\x91\x76\x13\x1f\x44\x9f\x57\x5d\xa3\xe7\x35\x7b\xca\x3a\x30\x09\x40\xb8\x5e\x57\x70\xb3\x3d\x6b\xf4\xca\x48\xa2\xfe\xbb\x89\xa2\xc5\x47\x21\x1e\x8e\x17\xe7\x06\xf8\x49\x5a\x04\x2b\xaa\x78\x68\xca\x03\x58\xb1\x54\xe1\x83\x3f\x0c\x54\xae\xe2\x5a\xa3\x1f\xaf\xda\x45\x51\x52\x2d\xba\x91\x4d\x0a\x13\x4f\xf9\x02\x2f\xd4\x57\x44\x77\x88\x9e\x40\x76\xb9\x8f\xfc\x87\xa4\x0c\x1a\x89\x56\xad\x50\xe1\xd0\x6f\x0a\x17\xce\x5e\x35\xa8\x26\xd9\xa9\x72\xd6\x77\xe9\x27\x50\xd4\xdf\xb9\xa6\x5c\xc6\x47\xf8\x3d\xc4\xf1\xb7\x94\x8e\x17\xab\x4e\x71\x36\xbf\xc6\x68\x15\x68\x05\xef\x87\x4a\x76\x3e\x43\xe6\xba\x1a\x5b\xf8\xe4\x27\x30\x37\x7c\xa3\x51\x57\x4b\x4b\x4f\x7b\xc9\x92\x9d\x90\x38\x47\xfd\xf4\x2a\xb9\x4e\xd8\x25\xbf\xc5\xfd\xe1\x32\xa8\x95\x5b\x2c\xc1\x42\xb5\x02\x68\xd6\xe6\x3f\xd5\xa3\x9f\x14\xad\xe2\xca\x5d\xc2\xcb\xdd\x56\xd4\x12\xdb\x7b\xea\x9c\x78\x4c\x05\x91\x9a\x8a\x84\x64\x45\x69\x99\x08\x32\xd2\x13\x16\x3c\xbb\xa6\x0e\xa3\xbd\x6b\x7a\xaa\xa9\x20\x82\xd9\x7b\xa4\xf2\x9e\x66\xd1\x24\xfd\x34\xb1\x7d\xb4\xef\x08\xf5\xae\x57\xf8\x05\x83\xba\xeb\xc4\xf5\xf4\xbc\x6b\x7b\x15\x84\x25\x2f\xf6\x7a\x34\xb6\x40\x69\x9d\x20\xb7\xa7\x1f\x80\x22\x00\xf0\xb8\x1f\x6a\xec\xe3\x4d\x2c\x76\x9c\x89\xbf\xc2\xac\x32\x6f\x1e\x66\x95\xe5\x79\x26\x1e\x70\x7b\x07\xdb\x40\xd8\x1f\x15\x4f\xdc\x8e\x9e\xea\x5a\x0a\x7c\xc7\xd1\x87\x6d\xb9\xb3\x61\x34\x18\xc6\xd1\x60\x58\xa8\xde\xf0\x4b\xaa\x37\xfc\xd2\x44\xf3\x5e\x7e\xa5\x64\xfe\x29\x65\xd0\xf1\x80\x62\xdd\xbd\xb2\x77\x5e\x2e\x22\x03\x58\x58\x4b\xc5\x68\x27\x1c\x71\xc4\xab\x48\xa8\x46\xaa\xa1\xc9\x72\xea\xc8\x58\xd8\xe7\xf8\x01\xaa\xe7\x10\x5c\xe9\xe6\x8d\x3e\x3b\xdb\xcd\xcd\x4a\x47\xf5\xdc\xbd\xa5\xd8\x6c\xdf\x6a\x4d\x94\x98\x84\xf8\x37\x39\xfb\xb4\x71\x5d\xc9\xe9\x8c\xa3\x38\x4f\x13\x10\xa0\x30\xbf\x26\xc5\x4c\x02\x59\xd2\xfb\x49\x0b\x8a\x5e\xc1\xfb\xc8\x21\x54\xbd\x28\xca\x81\xf7\x02\xdf\x4e\x71\xb1\x81\x05\x38\xf4\x52\x77\xb1\xe4\xb1\x3c\xec\xc5\x5f\x68\xb1\xf0\x8d\x2a\xa3\x84\x59\x99\x17\x68\x9c\x12\x69\x90\xea\x53\x70\x2d\x4f\xea\x9c\x35\x37\x4e\x89\x6d\x56\xe2\x52\x65\x94\xe7\x96\x60\x9a\x28\xd3\xa0\x6c\x2f\xd0\xe9\x9a\xe8\x94\xa6\xdf\x4c\x33\x33\xb0\x38\xcd\x61\x8b\x1f\xab\x8e\x9c\xef\x4c\x38\x97\xe7\x23\x9e\x33\xad\xe4\x76\x26\x3b\x6a\x3d\xce\x16\xa8\xee\x87\x8a\xc3\xf6\xa1\x96\x6b\x58\x49\x59\xf1\x0e\x7d\x0f\xe7\xc9\x10\x60\xa3\x7c\x6d\xe2\xbb\xff\xaf\x20\x60\x40\x86\xf5\xa1\x83\xde\x2f\x99\xd0\xf6\xb7\xab\x36\x5d\x3e\x30\x90\x7b\x47\x86\x08\x83\x78\x82\x66\x4b\x50\x8a\x4a\xf9\xe3\x5a\xad\xc7\xff\xcf\xd5\xcb\xc0\xbf\x2b\xe7\x2d\x51\x6c\xe0\x18\x5a\xa7\x57\xe1\x54\x46\xe0\x61\xe8\x1f\x28\x8d\x3b\x2e\x2c\xd5\x88\xea\x61\x0a\x76\xae\x61\x71\xe1\x7c\xfb\x0e\x16\x01\x2c\x25\x4a\xa9\x4a\xfb\x4e\xfa\x65\x34\xd3\xc9\x8a\x35\x47\x09\x06\xae\x8a\x3b\xf4\x10\x12\xc1\xfa\x3f\x85\x7f\x56\xe4\x4f\x51\x84\xcb\x87\x33\x8c\xab\x1c\x42\x34\x97\xd8\xce\x37\xe0\x9d\x23\x29\x74\x57\x1f\x36\x5f\x0d\x7c\xa2\x0d\x49\x0b\x1e\xde\x35\x4f\x82\x75\x56\x4b\x8e\x55\xff\x21\x4d\xa2\xef\x06\x54\x42\x17\xd7\xc0\x17\x07\xd8\xfb\xac\x31\x4d\x20\xd3\x08\xde\x5f\x40\x9f\xaf\x04\x8a\x0e\xfd\x4f\x1a\xec\x9e\x73\x73\xf3\x22\x72\x6c\x54\x6a\x0d\x63\xc1\x42\x2b\x7c\xd3\xc8\xc8\x1d\x98\xeb\x0e\xcd\x8a\x89\x22\x93\x74\x14\x02\xef\x86\x42\x7a\xdd\x00\x58\x9f\xd3\x1a\x26\x89\x46\x69\x99\x8b\xde\x09\xeb\x9e\x4f\x14\x71\xf0\xbb\xaa\x77\x61\x1c\xaf\xee\xf1\x27\xea\xaf\x11\xd6\x01\x99\x1b\xd6\x20\xd0\x0a\x0e\x88\xe6\xae\x63\x3e\xe0\x39\xf1\xf8\xb8\xa2\xad\xe7\x67\xe7\x7c\x32\xea\xa5\x1f\x4d\x54\xaf\xc9\x8e\x35\x2f\xde\xf2\x09\x5a\xfc\xc0\x18\xec\x56\x19\x17\xb3\x92\xec\xa8\xfe\x4a\x9a\x8e\xaa\x67\xc4\x54\x6d\x5f\xf3\x35\x8e\xdd\x3d\xfa\x0d\x7a\x94\x4f\x7e\x0a\xe4\xae\xc2\x32\xe1\xfb\xc0\xa6\x71\x08\x0b\x22\x54\x27\xbb\xc6\x36\xdf\xe9\xf9\x4d\x90\xb7\x75\xfd\x0d\x9e\xba\xe9\x97\x13\xd5\x74\xfe\x38\x50\x59\xc2\xb3\x9a\xf5\x1f\x27\x3f\x1e\xf9\x87\xb4\x93\x61\x90\x1f\x36\x22\xb5\x23\x33\x87\xba\x4b\x99\x15\x02\x48\x97\xb2\xa8\x7e\x92\x6f\x1c\xd1\x53\x91\x99\x7e\x84\x22\x9a\xd2\x45\x58\xd7\x3d\xfc\xeb\xb5\x42\x65\x9a\x58\x1a\x3b\x18\xc7\x73\xd8\xbc\x0e\x3e\xea\x7a\x5d\xc0\xf5\x0c\x2f\xf4\xa3\x89\xea\xf3\x05\x5b\x87\x16\x65\x17\xa2\x1d\x1d\x0f\x8c\x7e\xc7\x60\x41\x22\x52\x3e\x43\xdf\xcc\xd7\x6d\x4c\x8e\x99\x25\x3d\x45\x9c\x8e\x0e\x07\xed\xdc\xcb\xe6\x69\x3a\x73\xa8\x6b\xc7\x29\xbd\xb2\xc3\x83\x78\xc6\xe0\x37\x3c\x58\xa3\xcc\x87\x56\xa8\x54\x85\x17\xb9\xfa\x62\x49\x47\xca\x1f\x0e\xd2\x3c\x8f\xc6\xc8\xf7\x71\xcf\x97\xe2\xd0\xb9\xd4\x96\x0e\xb1\x51\x31\x04\x39\xfb\x0b\xae\x01\xa5\xe3\xe4\x94\xc0\x55\x8f\xad\xf3\x88\x8e\x04\x97\x09\xae\xf6\x01\x86\xf9\xf1\x44\xb3\x1c\x56\xb6\x13\x6b\x77\x6f\xaf\x19\x31\xcf\x77\xa3\xd1\xb8\x8c\x5d\xf1\x1a\x6f\xc0\x5d\xe7\x7c\x53\x4b\xd6\xbe\x92\x52\x75\xfe\x05\xae\xc3\x31\x03\x9f\x68\x3b\x13\x4a\x46\x54\x9f\x3d\xf0\xf8\x86\x27\x2c\x8a\x32\x3b\xe5\xcf\x4e\x54\x5a\x71\x94\x4d\x53\x32\x59\xb0\xbf\xcd\xba\xc5\x0b\x24\xef\xde\x51\xc1\xfc\x03\x95\x9b\x78\xa0\x7a\x10\x51\xc1\xe3\x92\x2e\xec\xf3\xf5\x89\x07\x5e\x5d\x0e\x54\x17\x3f\xb2\x99\x30\x2d\x37\x75\xcd\x9e\x5b\x61\x85\x0a\x50\x4e\x56\x12\x76\x9a\xf6\x04\x36\xeb\x8a\x1b\xf4\x92\x6a\xf5\xff\x05\xd6\xb7\x30\x3d\x38\x71\xdf\xd8\x1c\x4b\x75\x1f\x31\x7e\x45\x9a\x8a\xf7\xaa\xe5\x3e\xce\x31\xd0\x30\xf8\x40\x8e\x09\x11\x6c\xc7\x29\xb2\x9f\xd1\x92\xb7\x8d\xf4\x81\x44\xc5\xaf\xa4\xb6\xa3\x5c\xd4\x7f\xa9\x89\x36\xfe\xe5\x64\x33\x31\xae\x7c\x8a\x88\x94\xf3\xdc\x82\xaf\x5d\xcc\x9c\xe2\x9a\x39\xd5\x40\x57\x83\x4b\x39\x83\x8f\x05\x1b\xbd\x11\x78\x47\x19\xa3\x2d\xf1\x93\xea\x1a\xb5\xab\x69\xd2\xdf\xee\xd5\x47\xff\xfd\xc4\xbb\xe2\xcc\xf3\xc5\xff\x81\xe3\x58\x37\xed\xb8\x82\xe6\x01\xd7\xcc\xe3\x76\xe0\x52\x66\xca\xca\xb1\x57\x1d\x81\xbb\x54\xd3\xe6\xae\x9e\x6f\xe7\xc8\x57\xa2\xa5\x42\x0e\x31\x17\x85\x54\xf6\x91\x6f\x5c\xcb\x19\xba\xb4\xb3\xd5\x8e\xae\x1b\xf8\x72\xea\xbd\x8f\xd5\xc0\x84\x45\x9a\xf2\x45\xf9\x0b\xaa\x1b\x85\x6b\x8f\x28\xb9\x7c\xd0\xc8\x9b\xcd\xcd\x75\xfb\xa6\x00\x07\x34\x4e\xb2\x3d\x3a\xba\x7b\x5f\x13\x3c\xed\xe8\x79\xd2\x83\x81\x59\x86\xb6\x11\x97\x47\x26\x3e\x8b\x72\x1e\xa8\x36\x26\x60\x67\x44\xa7\xa3\x63\x5f\x98\x77\x6c\x9f\x6d\x45\xc4\x61\x09\x25\xdf\x2f\x3b\x5d\x0e\x55\x57\xba\xaa\x34\xe5\x5f\x53\x89\xe7\x7e\x66\x56\x40\xf2\xe4\x1a\x1c\x5d\x6f\x2b\x4b\x88\x49\x84\xff\xa4\x6a\x8b\x8c\xe2\x78\x2f\x76\x33\xaa\xcd\x67\x34\xb2\x10\xbb\x0e\xce\xd3\x06\xaa\x16\x8c\x92\x5a\x53\x94\x55\x77\x71\x6c\x3a\xfd\xaa\x03\x02\xc9\x7e\x58\x79\x97\x1b\x0c\x96\xc6\x52\x82\x53\x0e\xa7\x6b\x77\x8f\xfc\x34\xc1\x5d\x79\x40\xe9\x7f\xc6\x71\x88\x35\x7e\xdc\xa5\x4f\xb3\x28\x65\x67\x0b\x03\xf9\x3d\xdd\xb0\xfc\xbd\x1a\x19\x51\x52\x98\xb0\xe0\x0e\x54\xfd\x2a\x7c\xdd\x26\xf3\x11\xa6\x49\x62\xc3\x22\x75\x74\x1f\x42\xf8\x43\x4f\xcf\x37\xad\x1c\x55\x61\x99\x15\x26\x4a\x3a\xba\xf8\xc3\x62\x92\x7c\xe3\x61\xd7\x66\x1c\x15\x26\x1e\x98\x28\xe1\x33\x4e\x70\x82\x1d\xa5\x14\xdc\xec\x04\x49\x49\x3e\x72\xff\x8c\xcf\xdc\x2f\x08\x0d\x1c\x2a\x69\xf8\xa1\x33\x8a\x96\x2e\x2f\x4c\x11\xe5\x45\x14\xe6\xdb\xb5\x87\x8a\x8f\x3a\x2f\xde\xc1\xfb\xbf\x4e\x5f\x83\x1d\xf2\xad\x40\xf9\x02\x57\x26\x1e\xc9\xdb\xb4\x82\x48\xa2\xa6\xc9\xc0\x66\xb4\xf6\x74\x4f\x16\x96\xdb\xd6\x35\x25\x61\xb2\xab\xd1\xc9\xfd\x99\x6e\xdf\x26\x0e\x60\x20\xbd\x8b\x34\x34\xd2\xbc\xe8\xdb\x24\x16\xed\x20\x4a\x12\xe1\x4d\x95\xfd\x40\x0b\x16\xf6\xe1\xbe\x12\x31\x9e\x5e\xf3\xde\xe8\xdf\x69\x80\xd8\xe6\xe6\x0e\x92\xd6\x50\x5e\xa4\x23\xc9\x84\xe3\x07\x1f\x07\x4a\xd0\xf7\xb1\x02\x09\x9b\x28\x1b\x57\x21\x7e\x4e\x40\x0b\x94\xcf\xef\xd1\xd9\xc1\xd7\x35\x42\x9b\x90\xcc\x09\x02\x7a\xb0\xe1\x21\x84\xe1\x3a\x3f\x1e\xfe\x62\x63\xff\xcf\x1c\xea\x16\x2b\x96\x83\x2d\x89\xd4\xab\x4f\x4b\x08\xaf\xac\x6a\x61\xc7\x43\xcb\x91\x84\xe3\x26\x76\xb8\x8e\xab\xca\x8f\x1c\x45\x49\xa9\x45\xf9\x6e\x51\xfc\xc6\xd7\xba\x7a\x65\x07\x26\xfe\x84\xe7\x51\x3a\x59\x17\x7b\xf3\x4e\x34\x6b\xb7\x49\x59\xab\x5a\x22\xc2\xe8\x4e\x86\x0f\x8b\x8a\x8b\xab\xc2\xd5\xee\x33\xeb\x37\xc0\x1b\x25\x71\x92\x92\x32\xfd\xcf\x6c\x2b\xf9\x0b\x28\xdd\x27\x64\xbc\x74\x56\x09\x89\xbc\xa2\x90\xbc\xa1\x70\xce\x37\xda\x88\xcd\xc7\x69\x61\x93\x22\xaa\x7c\x6e\xc7\x08\x0c\x36\x59\xbe\x76\x3e\x48\x5e\x98\x81\xa5\xc3\x52\x84\xe4\x3a\x8e\x8f\x7f\x23\xa8\x89\x7e\xd6\x48\x53\x3b\x4e\x1a\xf4\x4e\x0d\x42\xdd\xa8\x2c\x1d\xde\xd7\x1d\xa7\xaa\xfa\x82\x69\xbd\xa8\xa6\xf8\xe2\xe4\xd9\x7a\x46\x60\x61\x5f\x77\x76\xf6\xe0\x76\x05\x7c\xbf\x84\xd8\x55\x64\x02\x68\x83\x89\x7e\x00\x7d\xab\x6b\xa0\x77\x33\x79\x85\xf6\x37\x5f\xab\xa4\x5b\x1e\x0e\x6d\x5f\x61\xcf\xb0\x26\xee\xa8\x06\x94\x3b\xcd\x80\x67\xfe\xd3\xdd\x70\x18\xd9\x25\xc5\x81\x7e\xb6\xa6\x23\xd5\x54\x02\x3c\xd8\x8d\x23\x56\xc9\x14\x1d\x7e\x6f\x7c\x50\xf2\xc3\xb9\x75\x43\x73\x1c\x9b\x68\x45\x42\x65\x38\x9b\xb7\x27\xda\xf5\xbc\xad\xb2\x14\x63\xb3\x3a\xb2\x49\x91\xef\xaa\x7e\x02\x91\x14\x63\x5a\x91\x48\xdf\x82\x0c\x31\x43\x21\x03\xdd\xba\xad\x7a\x0d\x7e\xa0\x28\x66\xb9\x61\x09\x21\xe0\x5b\x34\x7e\xf8\x00\x27\x4d\x71\x06\xdf\x57\xac\x2f\xe9\xd2\x52\x14\xda\x7c\x9b\xd7\x40\xe2\x94\x1b\x68\x23\x80\x34\x44\x15\xfb\x87\xaa\xf5\x97\xf1\xbd\x9c\xc7\x51\x9d\x51\x79\x34\x8a\x62\x93\xed\xf2\xe8\x3e\x66\x47\x16\xfa\x40\x95\xb8\x3f\x45\x0f\x58\x63\x3e\x15\x74\xa6\x8f\xd0\x6f\xd3\xbe\xc7\xa7\x4f\x4f\x54\xe8\x7f\x5e\xe9\xc4\x9d\xac\x43\x48\x5e\x89\x3a\x3e\xa7\xf5\x3a\x56\x37\xdf\x28\xf2\x18\x93\x47\x66\x67\xf5\x77\xa8\xfa\x70\xd3\x16\xd0\x02\x1f\x4c\x7c\x5f\xfa\x6b\x3c\x81\xfc\x3f\x30\xde\x98\xae\x47\x8a\x3b\x93\xb9\x0e\xf0\x1f\xcc\xe7\x2b\x0d\x3d\x4f\xbb\x80\x27\x1f\xda\x65\xeb\xfa\x9d\xe0\xeb\x9c\x52\xe2\x66\xa7\xda\xd4\xfa\xfa\x65\x78\x54\xf1\x86\x80\x72\x5c\xe4\x15\xab\xb8\x0f\x3e\xf4\x7b\x9a\xf5\xb6\x88\x46\x65\xcc\xd4\x21\x88\xc1\x10\x34\xf0\xb5\x32\xfc\x36\x5e\xfd\x04\x6d\x4e\x97\x8e\xf6\x47\x19\xb2\x1d\x48\x49\xfc\x06\x65\xb2\xa8\x2a\xff\xb3\xbf\xde\xf3\x07\xca\x35\xb8\x59\xd2\xba\x42\x53\x84\xea\xc5\xcf\x27\x8a\x47\xbf\x03\x07\x15\x6b\xf3\xae\x1f\xdf\xf5\x4f\xad\xd5\x4f\x7b\x85\x61\xf9\x04\x35\x1c\x49\xf9\xda\xbf\xca\xa7\x90\xd3\xc5\xf6\xdb\xaa\x64\xf5\x97\xd3\x38\x3c\x0a\x4d\x84\x19\x6e\x2f\x5c\x87\x11\xe6\x9b\xc9\x2e\xe1\x3a\xe8\x6f\x27\x83\x2e\x3d\xd5\x3e\x45\x79\x5a\x6b\xb5\xec\x80\x22\x98\x00\xe9\x3b\x2f\x0a\xa6\xff\x09\x3c\x02\x9c\xe2\x07\x6d\x9d\xf0\xe3\x32\x0b\x87\x26\x47\x31\x15\x2b\xe1\x03\x55\x33\x6b\x02\x23\x17\xf6\x41\xc2\xbd\xf2\xcc\xaa\xcf\x88\x19\x54\xb9\xe4\x2b\x13\x5d\x59\x8e\x92\x30\x1a\x33\xc9\x32\xea\x21\x00\x58\xf0\x75\x23\x6a\xf8\x6c\xd7\xe4\x47\x2d\x88\x2e\x64\x6d\xd7\xd6\x69\x6d\x05\x7b\x68\xc4\x72\xb4\x1c\xf5\xa1\x84\x88\x14\xf0\x4d\x64\x18\xf8\xa6\xf2\xfe\x1c\xc2\x39\xc9\xd3\x38\xea\x9b\x82\x39\x49\xc5\x69\xd0\x1e\x84\xae\xbd\x55\x7f\xf8\x0c\x7d\x33\xe0\x1e\x37\xc8\xae\x62\x91\x6c\x87\xfd\xc3\x2a\x9b\xea\xa9\x6e\x98\x8d\x89\xd2\x18\x61\x1d\x53\x3c\xcc\x9f\x6a\x21\xa8\x1d\x6b\x8a\xea\xe0\xfd\xc0\xeb\x4b\x7d\x8f\x12\x21\xf0\x40\xb7\xac\x51\x2c\xe0\x24\x14\xab\x17\x43\x34\x7d\x2b\x50\xd4\xd0\x67\xd9\x0a\x08\xe2\xb8\x96\x59\x3e\x2c\xdd\xa3\x40\xbe\x22\x03\xb9\x8d\xf6\x08\x2c\xd7\x1b\x4a\x5c\x7d\xd9\x26\x45\x99\x31\xb5\x8b\xa3\x3b\x70\xf8\xf7\x0f\x5b\xd9\xae\x73\x22\x5c\x72\xfc\x18\xac\x74\x26\xc2\xc0\x9f\x6c\xa8\x0d\x7f\xfe\x08\xcd\xb2\xe4\x96\xe8\x45\x1c\x56\xce\xa5\x6e\xcf\x35\x96\xc8\xcb\x2f\x77\xfb\xe9\xa0\x26\x78\x72\xa9\x96\xd4\xf0\xa6\x7e\x31\x8b\xfa\x03\x51\x25\x67\x9a\x5e\x95\xf5\xbf\xe8\x74\x0a\x8a\x34\x1b\xf9\x1a\x2b\xfc\xcb\x1f\x61\x9e\xf8\x66\xb2\x57\xa9\x6e\xae\x1a\xc8\x4f\xc1\xa0\xdc\x0a\x3c\x68\xfc\x96\xaa\xde\x8c\xa2\x84\xc4\x42\x66\x0e\x49\x43\x21\x5a\x0d\xa5\xbb\xd0\x21\x3f\x13\x53\x84\x43\x26\xaf\x76\x72\xfe\x3c\x99\x22\xee\xdf\x06\x5e\x4a\xcb\xc5\xd8\x4e\xfb\xe4\xfd\x56\xca\x4e\x21\x53\x05\xb2\x55\xf8\x5b\xe7\xc9\x94\xb1\xca\x60\x83\x63\x6f\x61\xdf\x82\x67\xbb\x64\x24\xac\x48\x7e\xf9\x7e\x9e\x26\x05\x0f\x65\x2c\x0b\x13\x79\x37\x47\xa4\x52\x3b\x5e\x36\x55\xb9\xc1\x59\x34\x88\xf8\x50\x91\x73\xaa\x7a\x44\x39\xcd\x9a\xa5\xbf\x99\xee\xa8\x18\x51\x58\xa0\xfa\x31\xdd\x8d\x02\xb0\x54\x9e\x5f\x42\x28\x5e\x25\x80\x7e\x49\xf9\x02\x97\x82\x4d\xde\x5f\x15\xa8\xec\xdf\xff\x8c\x52\x73\x3f\x81\xe5\x0a\x3a\x60\x56\x8d\x83\x3f\xf4\x53\x40\x2c\x1d\x5f\xa8\xc7\xd9\xd7\x9c\xe7\xb7\xe8\x98\xc3\x61\x7f\x83\xdc\x06\xac\x9c\x1b\xaa\x1a\xfd\x21\x39\x45\x38\x20\x40\xb7\x21\xa9\x51\x5a\x4e\x8e\xca\xc6\x2d\x12\x2e\x54\xea\xd4\x9f\x30\x77\x74\x1c\xf5\xda\xcf\x60\x14\x11\xf2\xbf\x4d\x67\xe3\xc6\xda\xa4\xae\xe3\x5b\xc5\x92\x8a\xd7\x6e\x5b\xcf\x37\x1e\x6e\x5b\xf3\x7d\x72\x62\xdc\x0b\x6c\x7d\x18\x39\xc0\xad\xf9\xba\xad\x41\x7a\x89\xd6\x00\x6f\x33\x21\xa0\xec\x28\x6a\xb8\x96\xcf\xac\xd8\x38\x4c\x47\x16\x0d\xda\x78\xf1\xff\x30\x51\x0c\xcf\x5a\xb1\xf4\x81\xe2\x3b\xf4\x5c\xf2\x23\x9b\x85\x8c\xed\x01\xca\x08\x90\x25\x91\x4b\x56\x70\xec\x26\x43\x42\x15\x61\x97\xd9\x32\x91\x89\x4c\xd1\x5c\xc3\x13\x44\xa8\xeb\xf0\x12\xae\x5f\xa7\xc9\xa3\xbd\x7f\x7f\xb7\x6f\x97\xa2\x30\x2a\x98\x56\xc8\x49\x71\x1f\x96\x5e\x66\x46\x54\xc3\xc0\x69\xa9\xdf\x61\x1a\xf7\x77\xd0\x8c\x63\x06\xae\x2a\x4d\x24\xd6\x09\x82\x21\xe4\x3a\x3d\xdf\xd0\xeb\x61\xfa\xb7\xaf\xd1\x9a\xe4\x8f\x63\x4d\xa2\xe2\x77\x55\xe5\x95\x47\x69\x16\xdb\xd5\x5a\x1f\x9b\xa2\x73\xbb\xe6\x94\xd0\xca\x24\x1f\xdb\x30\x5a\x8a\xa0\xf8\x20\x34\x93\x0c\x99\x81\x6b\x05\xbd\x44\x00\x14\x77\xc2\xb1\x40\x70\xa4\x5d\x3a\x42\xb3\x59\xcb\x4d\x96\x70\x5a\x1f\xd3\x5e\xe0\xeb\x89\xef\x03\x5c\x89\xfa\x36\x1f\x93\xe0\x11\x4d\x00\xa0\xbf\x77\x94\x3a\xf2\x1d\x55\xe9\x0f\xe3\xc8\x26\x05\x9a\x5c\x44\xb6\xc5\x43\xe6\xce\x7b\x88\xef\x3f\xbd\xdf\x70\x4f\x3f\xd3\x2d\x4c\x72\x94\x6d\x3b\x96\xc7\x45\xad\x68\x7a\xb1\x81\xb1\xfb\xdd\xee\xd8\x64\x05\x30\x9e\xd8\xa1\x58\x5b\x28\xe3\xae\xeb\x5a\xe6\x19\x47\x09\x9b\x0f\xd3\x6a\xf7\xb8\x15\x05\x27\xec\xac\x62\x53\x78\xac\x1a\x5c\xbd\x46\xce\x38\x4b\x8b\x34\x4c\x59\xaf\x57\x4e\x58\xef\x4b\x5f\x0f\x7c\x81\xe7\xdd\x9a\xfe\x0b\xd9\x7f\x1e\x3e\x91\x18\xef\x38\x45\x9e\xcb\xee\x17\x72\x6b\xf2\x34\x91\x1e\x21\x58\x96\x7b\x8a\x5b\x65\xaa\xa7\x14\x3c\xae\x36\x80\xe3\x95\x25\x36\xe3\x5a\x80\x8d\xb4\xf5\x39\xc5\x41\x75\xae\x2d\x45\x60\x40\x95\x91\xf0\xc9\x26\xce\x78\xbd\x6f\x42\x70\x7d\xb1\x29\x07\x43\xde\x4c\x8e\xb1\xd8\x65\x13\x1e\x4f\x7c\xc1\xaa\x49\x44\x71\x60\xae\x9b\xd9\x65\x9b\x94\xa2\x9b\xec\xf4\xdf\x1d\x5b\x24\xb3\xcb\x49\x7f\xb4\xee\x28\xcf\xfb\xe9\x48\x51\xd2\x6e\x85\x1f\xc7\x37\x6b\x0a\xe4\x30\x34\x23\x28\x3d\x8a\xac\x00\x0d\xbd\xf3\x41\x9c\xae\xc6\x87\x24\xef\x89\x2f\xf0\x06\x2b\x2e\x59\xdd\x9d\xf1\x25\x81\x6f\xf6\x6b\x62\x4d\x0e\xef\xeb\xe6\xa3\xf4\xa8\x93\xb4\x80\xaf\xff\xa1\x6e\x32\x6f\xba\x61\xb3\xb3\xdd\xca\x7c\xf3\xca\xd5\x80\x64\xcd\xbc\x87\xc1\xfd\xa3\x86\x49\x9b\x7f\xe9\x60\x37\x8e\x46\x91\x9b\x65\xae\x25\x4d\xfc\xb9\xd1\x6c\x65\x7a\x71\xc6\xe7\x20\x50\x77\x60\x09\x51\x01\x81\x55\xbb\x1f\x23\xf1\x40\x73\x97\x9a\xd0\xe6\x94\x12\x42\xcd\x1a\x85\x65\x58\x09\xa0\xe5\xe0\xc5\xbe\x89\x64\x97\x53\x18\xf0\xf8\xf0\x2d\x3a\x58\x7b\xe4\x92\xc1\x69\x18\x9a\x9c\x4a\xc1\x35\x02\x8a\xb3\x1a\xe4\x7b\x56\x89\x10\x13\x91\x73\x51\x16\x25\xf0\xaa\x38\x70\xf0\xca\xac\x1a\xae\xd7\xcd\xfd\x36\xa6\x7a\x9b\xf4\xe9\x7c\x95\x61\xc3\x7a\x43\x08\xcc\xd7\x6b\x4d\xe6\x94\xf9\xee\xa2\x49\x8e\xda\x8c\x17\x2c\xd2\xd4\xa7\x94\xd3\xce\x78\x67\x8c\xe3\x77\x5a\x48\xc9\x0e\x76\x8b\x61\x96\xae\x28\x02\x89\x9b\xba\xbf\xfb\x66\x93\x06\x6f\xa6\x3b\x36\x11\x64\xb5\x24\x2f\x44\x3b\x1f\x99\x94\x0f\x03\xc5\x0f\xf8\xbe\xeb\x59\xcf\xec\x72\x1a\x97\x54\x5e\xcf\x70\x98\x38\xda\x0d\x57\x17\x7d\x47\x75\xcf\x0f\xed\x52\x81\xbf\x63\x98\x03\x1d\x00\x02\x79\x78\x5a\x65\x5a\xab\xd0\x6a\xb0\x0a\x88\x14\x06\xfe\x62\xe0\x81\x55\x37\x03\x9f\xad\xad\xb5\xa8\x68\x4a\xe1\x17\x5f\x78\x91\x07\x50\xfc\x93\x8e\x63\xe5\x64\x7f\x11\x75\xcf\xeb\x6d\x4a\x1f\x43\x33\x1e\xb3\x6e\xbd\xc3\xd5\x3a\x6d\x32\x34\xd0\x89\xbe\x8f\x62\x6c\xd6\x2f\x51\xd9\xc4\x2c\x31\xb1\xd2\x7e\xe6\xbe\x4f\xd7\x71\xef\xf9\xc5\xb0\x15\xe1\x1c\xdc\x68\x78\xf4\xf3\x0b\xf3\xdd\xa5\xe8\x98\x90\xda\x4b\x34\x4d\x2f\x2e\x71\xb6\x86\x84\xc6\xe6\xd8\x14\x44\x1a\x7c\xf5\x87\x8f\x26\x29\x6f\xb7\xb0\x94\xc4\x96\xe2\xfd\xb9\x39\x4e\xe2\x1f\x0f\x7c\x42\xff\xb8\x12\xc9\x31\xd9\x08\xb2\x1f\xc8\x71\x5d\x9c\xf8\xac\xe7\x7d\xd5\xa5\x7b\x2f\x50\xe5\x55\xb2\x95\x2e\xc7\xb5\x62\x86\x5c\xbd\x71\x90\xa5\xea\x4f\xa5\x94\xa7\xf4\x41\xbe\x52\x46\xc5\xea\xee\x3a\x8a\xcf\xb5\xe3\xbd\x1f\x28\x3e\x92\x1b\x30\x07\x7c\x43\x8e\xb2\x6e\x7d\x42\x58\x77\x3c\xa8\x79\x74\x9a\x98\x1a\xee\x34\x62\xe7\x7b\x0a\x88\x7e\x42\xf5\x57\x2f\x99\x10\xfd\xa4\xae\x65\x65\xa2\x08\x05\xd0\xef\xa0\x89\xf7\xc5\x79\xad\x4c\xbe\xfc\x4c\x1b\x83\xe0\xc0\x8c\x6c\x0e\x60\x39\x9e\xff\x31\x72\x4f\x72\x02\x60\xac\xe0\x7a\x6d\xeb\xf9\x25\x7e\xc8\x26\xd0\xe1\xc2\x52\x9c\x5a\xf3\xed\xb2\x50\x79\xc7\xe2\x7a\x4a\x09\xf0\x5d\xd6\xa5\xea\x72\x35\x4a\x06\xbb\x55\x57\xc2\xcd\x89\xd6\x09\x54\x65\xf6\xc7\x34\x22\x58\xb8\xa8\xbb\xc2\xf3\x7c\xaa\xa7\x08\x86\xa6\x74\xab\xca\x79\xec\x0b\x6d\xeb\xb1\x5e\x8e\x63\xa2\xa4\x07\xf9\x49\x57\x09\x28\x93\xca\x11\xe9\x38\xfa\x48\x36\x3a\x52\xb9\xad\x9e\x0c\x4b\xf9\xa7\xad\x64\x87\x2b\x59\xca\x7c\xeb\x5e\xd4\x6f\x9f\xf3\x08\x5b\x89\x1b\x33\x6b\xc1\x84\x5e\xeb\xae\x11\xa1\x43\x8f\x2b\x76\x78\xc7\xbd\x1a\xf8\xea\x8d\xeb\xbf\x9e\xe8\x9e\xae\x87\x58\x64\x52\x09\xa3\x01\x12\x7c\xec\x94\x17\x58\xba\xa6\x66\x08\x95\x41\x00\x63\xbe\x8d\xa7\x10\xba\x97\xea\x25\xa4\x57\xac\x7a\x54\x9c\xb6\xdc\x79\xe0\xa2\x3c\xdf\xf7\x7b\x5d\x8b\x86\xa6\x7d\xb3\x4a\x18\x2d\x78\x99\xb7\x02\x87\xe0\xfe\x39\xd3\x6e\x22\xc6\x3e\x8d\xdf\x04\xb6\xef\x74\xe0\x19\xbb\x4e\xe1\x5d\x04\x1b\xec\xc1\xd9\xc0\x3e\xcb\x07\x5a\x80\x77\x74\x00\xb9\xf8\xbf\xad\x89\xbf\x0d\x70\x31\x34\x19\x78\xe9\xe0\xc7\xec\xe9\x79\xf6\xef\x75\xdd\x1c\x7b\x95\x06\x4f\x80\x27\x3e\x3d\x45\x88\x66\x1b\x0e\x3b\xbe\xd8\x81\x10\x91\xaf\x55\xae\x26\xb3\x11\x33\x06\x20\xa8\xdb\xba\xe6\x01\x1d\x5b\xd5\x26\xfb\xe2\xef\xfd\xaf\xca\x28\xb2\xf6\x2c\xdf\x34\xce\xd1\xcf\x1f\xe9\x2e\x46\x22\x6a\xe9\x9a\x0c\x7d\x89\xa3\x75\xa4\x94\xb7\x2e\x08\xa2\xad\xb4\x65\xf9\xda\x11\x7a\x87\x29\x75\x33\xc8\x9f\xc2\x19\xe0\x18\x9f\x6f\x1c\x3d\xc7\xa2\x49\x9c\x5f\x8f\x0d\xbd\x4d\x35\x87\x32\x31\x18\xd2\x96\xbf\x52\x25\xa0\x15\x6b\x8f\xc6\xab\xdb\x7c\xb8\xcc\x8a\xdc\xae\x34\xba\xb0\xcf\x33\x6a\xba\x34\x12\xa7\xc7\x25\x71\xee\xaa\x7b\x61\x5a\x40\x41\xdb\x55\x78\x7c\xe1\x45\x48\xfe\xe5\xe4\xd6\x92\x15\x26\x2b\x40\xe9\x81\x48\x8a\xdc\xbe\x0d\x94\x35\x90\x8f\x7f\x0b\xfe\x35\x8c\xed\x1b\x4a\xd6\x0a\x80\x22\x9c\xf8\xa7\x51\xb6\xe3\xff\x50\x9c\x21\x83\x38\x65\xc6\x5c\xec\x8b\x93\xba\xad\xee\xa4\xea\xe9\x48\xc7\x36\xac\xa9\x25\xa9\x24\xc0\xc5\xc9\xb3\x1a\x87\x3b\x8c\x16\x23\x21\xa1\x90\xb6\x8d\x1f\x62\x6a\xf8\x66\xf2\x89\x9a\x5c\x81\x89\xb7\x7b\x5c\xe8\x79\xad\xac\x73\x39\x50\xce\x22\x30\x73\x4e\x43\xee\xc0\x9c\x23\x59\xa8\x8e\x38\xbe\x6e\x64\x31\x66\x67\xbb\x26\xcf\xd3\x30\x32\x4c\xb1\x28\x9c\xc3\xd5\x97\x09\xe5\xb0\x2f\xa4\xad\x64\x51\x65\xde\xb6\x75\x14\x3d\x6e\xc7\xab\xf3\x28\xe0\xe3\xa9\x89\x87\x9c\x83\x1e\x4f\x34\xfa\x7d\x97\xe8\x62\x96\x2e\xda\x8c\x77\xbe\xa3\xc9\x71\x82\x08\x24\xb8\x27\x34\x39\xb1\x49\x9e\x70\x65\x85\xbf\xfc\x2c\x96\xa5\x94\x00\x29\xa2\xc1\x21\x78\x1c\x06\x0f\x3f\x3c\xd5\x53\x54\x4d\xbf\x24\x4c\x35\xa7\x38\x60\xd4\x70\x83\x26\x69\x27\x44\x5d\x2d\x05\x2c\x1e\xae\xe3\x89\x22\x43\xf5\x12\x30\xc3\xa7\x02\x45\x12\xb5\xd1\xa8\x25\x7f\xa6\xbb\x58\x66\x49\x5a\x4a\x5e\xc7\xc1\x83\xbd\xf5\xbd\x4b\x84\x5a\x62\xe0\x5b\x80\x4f\x2b\x43\x53\x74\x3a\x47\xc4\xf7\xbc\x1c\xf8\x9e\xae\xcb\x6a\x42\x6c\x98\x26\xe9\x68\x75\xa7\xa2\xbc\xdb\x45\x4e\x27\xf6\x1e\xeb\x56\x39\xc1\xac\x6a\x85\x22\xd3\xf5\x16\xf2\x85\x58\x17\x6f\x60\x21\x61\xcb\xdf\x52\xf4\x2f\xf7\xe1\x9b\x09\x7b\xe2\x66\xb0\xc6\xec\x2c\xa2\x3d\x62\x55\xe1\x28\x13\xd3\x8c\xb6\x52\xbe\x76\xf9\x8d\x15\x4b\xea\xba\x45\xca\xb5\x63\x47\x52\xb9\xe0\xc9\x28\x55\xf7\x83\xc9\xb2\xd5\x1d\xfe\xd8\xfd\x00\xc0\x7f\x29\x07\x78\x5c\xd2\x9f\xd2\x1a\x94\xc1\xa4\xa7\x10\xb0\x9c\xaa\x9d\x7f\x57\x69\x3d\x3c\xd2\x42\x1c\x69\x1c\xa7\x24\x86\x3d\xe7\x39\x53\x3c\x31\xfa\x9d\xc0\x73\x3b\x5e\xa4\x95\xc2\xe8\x33\x58\x16\x91\xb4\xab\x1e\x53\x29\xda\xcd\x38\x2a\x16\xc5\xd7\x1d\xc7\x76\x30\xb4\xc9\x2a\x87\x1b\x88\x92\xb6\xc0\x6e\xe2\x19\x4f\x69\x5f\xea\x5e\x23\xa2\x5f\xd8\xb7\xd0\x8d\xa3\xaf\x94\x11\xf8\xb9\x99\x85\x40\x69\x3d\xe9\x66\xef\x8c\x7a\xd9\x68\x53\x33\xc0\x2e\xa8\xa1\xed\x5a\x20\x43\x8b\x26\x3c\xda\xcf\x52\xc8\x67\x31\xfb\x49\xe0\xc1\xa2\x97\xd5\xe4\x94\x79\x94\x0c\x76\x79\xc4\x38\xa2\x6f\x20\x70\xff\x31\x55\xb3\x85\xf6\xa6\xe3\x28\xb2\xdf\x08\xd4\x76\x10\x66\x46\x95\x14\x7f\x81\x1d\x98\x3f\x9b\xa8\x6a\xcb\x1f\x04\x8a\x31\xe6\x03\x07\x48\xb4\xc7\x6c\x16\x46\x39\x40\xd8\x48\xb9\xef\xa4\xd2\x2d\xb6\xee\x03\x8f\x0f\xf9\xda\xa7\x00\x60\x17\xc1\x11\x9a\x5b\x1c\x53\xb7\xe9\xe5\xe0\x2c\x32\x14\x5f\xd4\x65\x15\x78\x60\x31\x0f\x09\xde\xe9\x80\xdc\x1c\xcf\x0b\xf2\xa7\x5a\x1f\x78\xf0\xc7\x2d\xb0\x92\x2f\x77\xc3\xa1\xb5\x47\x57\xa7\x54\x0d\x72\x0d\x07\x0e\x12\x72\xc8\x3c\x72\xfe\x59\x35\xff\xac\x0c\xa3\xc2\x3e\x41\x9f\x62\x91\x75\xda\x27\xa2\x81\x4f\x43\x04\x73\xff\x48\xb7\x35\x6b\x78\xd5\x6d\x2c\x45\x49\x9a\x75\x1c\x85\xe8\x4e\x90\x15\x08\xb0\xbd\x7a\x03\x1c\x3e\xeb\x18\x05\x7c\xef\xfa\xc4\x63\x36\xd6\x79\xba\xe0\xe0\xbd\xae\x6a\x54\xd5\xeb\xe5\xe0\xa0\x77\x7d\x64\xbe\xa7\xac\xc5\xb6\xcd\x77\xfb\x36\x82\x65\x64\x48\x28\x05\x3e\xf8\x66\xa6\x0a\x87\xf7\xf6\x0d\x95\xee\x31\x51\xe6\xa8\x08\x50\xfa\xe5\x31\x90\x9e\xc8\xea\x47\xe1\xa5\x5e\x76\x09\xc1\x22\xea\x2f\x46\x85\x12\xc9\xac\xcb\x09\xf8\x54\xf2\x57\xca\x94\xad\xd8\xb4\x62\xc3\xbd\x35\x51\xed\x1d\x4c\x66\xa3\xeb\x61\x18\xd7\x5b\x2a\x73\x11\x66\x26\x1a\xf0\x53\x22\xd8\x61\x40\x3d\x2c\xd5\xed\xa0\x16\xec\x28\x04\x5d\x19\xc5\xfd\x28\x19\xe4\x44\x52\x28\x9b\x59\xb5\x2a\x9c\xd7\x62\xd0\x67\xea\x52\xe6\x6d\x18\xf7\x7e\x94\x1b\xef\x2c\x4a\x75\x57\xe3\x82\x1c\x89\x42\x9e\x97\x99\x78\x80\x92\x03\xf0\xe6\xe5\x82\xe6\x23\x39\xa7\xf2\x26\xe6\xa8\xfd\x84\x87\xfb\xdd\x24\x37\x03\x3e\xda\x6d\x72\xba\xe1\x94\xde\xc1\x7e\xc3\xaa\xfd\x8d\x9e\x6a\xb3\x5f\x67\x52\x4a\x17\x53\x55\x06\x40\x72\x3c\xd5\x8c\x21\x6b\x7b\x3f\xf0\x0c\x8b\x5b\xd6\x14\xf3\xf3\x34\xea\xde\x68\x5e\xe3\x00\x1b\xd0\x9f\xad\x6b\xaa\x6d\xe3\x27\x34\x53\xf8\xfd\xbf\x44\x9e\x2d\xec\xca\x4d\xc5\x9b\x2f\x9a\xe0\xd4\x96\xb7\xd0\x2e\x3d\xd1\xe4\x42\x81\x76\x95\x4d\xfa\x0d\x11\xc1\xea\x21\x85\xe3\x49\x89\x06\x9b\xc2\xec\xf1\xf5\x6a\x0e\x99\xe0\x8f\x77\xd6\x7c\x03\x3a\xf6\x23\x0e\xaa\xdb\x81\xaa\x51\xff\xbe\x06\x18\xa0\x6d\x18\x1e\xcc\xd6\x9e\x42\x44\x5d\x9e\x28\x8a\x9c\x33\x8a\x73\xee\x2a\xcc\xaf\xb8\x85\x7e\x26\x9f\x9f\x79\x9e\xd3\x2c\xc2\x5b\xaf\x49\xec\x15\x96\x2b\x8c\xad\xc9\x38\x56\x9b\xd3\xf0\xbf\x19\x27\xc6\xef\x5f\x37\x8d\xa4\x5f\x44\x6c\x9b\xb2\x73\xae\x72\xbd\x12\xe5\xa4\xcc\x04\x29\x85\x5a\x9f\xba\x50\x6c\xb7\x88\x7e\xc4\x66\xec\xfa\x37\xe4\x7d\x54\x97\xdc\xe5\x46\x8e\xf5\xf0\xbe\x99\xee\xd8\x66\x23\x03\xa2\x7c\x87\x9e\xfe\x07\x8a\x8a\xee\x1f\xa8\xfd\xf8\x8a\xcd\xca\xdc\xc4\x76\x84\x37\x80\x6f\xb9\xae\xb3\x2d\xeb\x0d\x5b\xff\xd9\x6e\x5e\x66\xd4\x86\xd8\xd1\x90\x7f\xc5\x3f\x7d\x55\x95\xa3\x56\xd2\x34\x8e\x57\xa7\xbd\x6e\xf4\x75\x8d\x5f\x40\x5c\xa7\x8a\x68\x22\x37\xfc\x8b\xb6\x4a\x68\x35\x82\x22\x00\xc0\x64\x4a\x4a\x3f\xbf\x1d\x1d\x9d\x17\x25\x49\x96\x62\xe2\x31\x7d\xac\x0e\xca\x37\x6a\x2e\x97\xa3\x1c\x8a\x7f\x4e\xcc\xde\x0b\xdb\xab\xa3\xc0\xf4\xd3\x31\x33\x10\x02\x24\x8e\x98\x9a\xaf\x6b\x4d\x61\x83\x61\x0e\x00\x84\x98\x6c\x3a\x11\xf9\x46\x75\x2e\x56\xbb\x72\x39\x2a\x56\xf7\x54\x7b\x02\x0e\x56\x07\x95\x4b\x58\xd4\x0f\x31\x6a\x08\x15\x4f\xa9\x12\xdb\x16\xd0\x40\x73\x6b\x0a\x1d\x9d\x70\x13\x98\xbf\x56\xc2\x49\x5f\x1f\xda\x86\x56\x77\xfe\x5e\x8a\x16\xf8\x07\x89\x1e\x41\xc2\xc3\x16\x75\xfc\x70\x18\xc5\x31\xd4\xf1\x61\x34\x3f\xaa\x25\x30\x7c\x63\xc8\x75\x5d\x7c\x4b\x47\x69\x96\x89\xe7\xa9\xe9\x9b\x91\x2d\x41\x10\xc7\xd7\x54\xf5\x87\x1b\x70\x05\x96\x52\xf0\x7c\x1d\x27\xfd\xfd\xd5\x89\x6f\x4f\x6e\x76\xc3\xcd\xcd\x75\x97\x32\x9b\xbc\x8a\xbc\xba\xab\x1f\x39\xb9\xb7\x8b\x2a\x30\x23\xd2\x0b\x9b\x01\x0c\xe5\xa8\xbf\xab\xc1\xe1\x1b\x0f\x3c\x29\x4c\x99\x84\x43\xf0\x97\x8a\x0b\xf2\x83\x89\xcf\xc6\x20\x99\x80\xdc\xdc\xba\x2e\x15\x34\x8b\x84\x24\xdf\x6a\x92\x22\x1a\xda\x2c\xed\x28\x20\xe8\xba\x22\xc4\x69\x6e\xbb\x43\x2f\x75\x57\xd3\x12\xe8\x84\xc3\xfb\x5c\xcc\x41\x8f\x2b\xc1\x48\x5b\xed\xc4\x0c\x08\xae\xa3\x3b\x17\xd8\x88\xf0\x8d\xf2\xc5\xf2\x74\xc9\x80\x65\x54\x65\x00\x0f\xea\x0c\xa0\xc4\xa9\x26\xab\xdc\xfc\x38\xd7\xca\x42\xdf\x56\xca\x42\xdf\x6e\x84\xe0\x07\xe6\xba\xb9\x29\xa2\x7c\xc9\xa1\xed\x61\x23\x4f\x2b\x7b\x79\x5a\x09\x72\x44\x49\x61\xe3\xd8\x86\x30\x63\x58\xf8\xe8\x4c\xe7\xeb\x36\x0b\x31\x32\x59\x11\x25\x2c\x55\x22\x6c\x97\xde\x1f\xfc\xe3\xb6\xd2\x86\xe9\xf7\x45\x2f\x93\x5b\xc7\x55\xac\x7f\xd5\x95\xfe\x4d\x18\x92\xca\x72\x94\x0c\xa6\x34\xdc\x81\x06\x40\x40\x7a\xba\xbe\xd0\x12\x78\x8c\xec\x31\x14\x79\x35\x48\x92\xe1\xb7\x7c\xd3\x0a\x18\x7b\xc5\xae\x70\x61\x58\x78\x42\x35\x9f\xdd\x45\x17\x2d\x0c\x32\x93\x94\xb1\x01\x7e\x05\x66\x00\x25\x08\xbe\x76\xeb\xd9\x29\x43\x6d\x57\xe5\xe6\xf7\x29\xd1\xc9\x0c\x1b\x78\x2f\xb1\x97\xd5\x77\x60\xf7\xfd\x36\x72\x0d\x0e\xc3\x31\x3b\x8b\xbd\x3b\xfc\xed\x35\xf1\xb4\xc6\xd6\xe4\xc2\xf1\x28\x1d\x2f\xaa\xfb\x45\xc5\x6e\x79\x91\xd9\x3c\x9f\xaa\x4c\x10\x12\xd3\x27\x26\xaa\x07\x0c\x22\x62\x52\xe2\x6a\x51\xaa\x32\x99\xf0\x88\x22\x0e\xe0\x72\x34\xdf\xac\x29\x83\x3d\x1e\x5b\x13\x6f\x57\x7c\x3c\x17\x15\x2b\xfb\x8d\x9a\x76\xa7\x72\x44\xae\x91\x39\x72\x02\x9f\xae\xc6\x75\x36\xd8\x84\xd1\xfb\x6c\x77\x61\xdf\x41\x0d\xb3\xbb\xa6\x60\x76\x6d\xd2\x2a\x85\x89\x8f\x4e\x29\x64\x2a\x50\x0c\x08\x31\xf9\x2d\x44\xb0\x41\x31\xaa\xd8\xe5\xd5\x69\x85\x7f\x86\xfb\x28\x58\x0e\x7f\x54\x7d\x6f\xe2\xb9\xfb\x7c\xc7\xaa\x3d\x56\x44\x49\x88\xf4\xa3\xe3\xd8\xf0\x8c\x78\x67\x55\xab\xc5\xa9\x16\x82\xd8\x3c\x4d\x13\x9b\x4d\x79\xea\xc0\x07\x08\xee\x10\x2a\xbe\x49\xa6\x10\x86\x7b\x4b\x4f\x75\x33\x44\x19\x5e\x53\x32\x4d\x1d\xc7\xab\x84\x35\xc1\x8c\xee\x6d\x0d\xbb\x83\x32\xe9\x74\x14\x43\x55\x8d\x72\x49\x41\x42\xfa\x25\x31\x22\xf8\xa4\xcc\x47\x13\x9d\x68\x51\xbc\xbb\x4c\x97\x8d\x82\xee\x27\xe0\x4c\x62\xb1\x60\x21\xe3\xac\xb9\xe7\xbe\x7c\x64\xc2\x61\x74\x34\x4a\xa6\x7d\xb2\xee\x92\xea\x08\xd9\x81\x6f\xc0\xb9\x82\x19\x44\x55\x6b\xbd\x85\x0b\x73\x9e\xea\x90\x0e\x30\xe0\xd2\x5d\x8e\x50\xe8\xb2\x22\x24\x5a\x31\xf9\x6f\x6e\xfd\x34\x4f\xe1\xbf\x53\x0a\x53\xe7\x50\xe2\x43\x2c\x78\x12\x33\x80\x07\x43\xba\x1e\x9b\xe5\x3b\x74\xa8\xc3\xa4\xde\x06\x1b\x81\x50\x5e\xd1\xf2\xc1\xf7\xfe\x17\xa2\x39\x92\x56\x85\x6a\xa5\x03\x33\xf2\x27\xf4\x8a\x92\x40\x52\x2d\xe9\xcf\xac\xa9\xd4\xc1\x2e\xf2\xe4\x1d\x07\xe6\xe7\xbe\xc4\x7b\x83\xfb\x95\x11\x14\x72\x47\x3f\x56\xd8\x74\x4f\xa5\x06\xb6\x82\x0c\x09\x49\xae\x1f\x05\xba\x30\xfd\x01\x34\xd2\xb1\x4a\x3e\x42\xf4\x00\x87\xe9\x5d\x74\x35\x22\x2f\x8d\xc6\x30\x81\x24\x57\x91\x18\x83\x8e\x55\x51\xe7\x3a\x77\xf3\xa0\xd2\xf6\x00\x4b\x48\xa8\xc9\x74\xd6\xb5\xcc\x77\xd0\x93\xb2\x0c\x00\x5c\x27\x00\x0d\x7e\x4c\xab\x49\x51\x23\xc9\x08\x7c\x30\x51\x34\xad\x6f\x4d\x7c\x4d\x11\x8d\x04\x1f\xa7\x65\x39\x3b\xdb\xcd\x4c\x18\x71\x03\x3e\x93\x61\xd2\x27\x84\x18\xd3\x87\xd9\xab\x26\xeb\xa3\xa9\x12\x4b\x73\x27\xd5\x7f\xf0\x36\x5b\x09\xcd\x2f\xd6\x6c\xb3\x75\x3c\xf4\x52\xb7\x6f\xb9\xe1\xc8\xd5\xd4\xe6\x7c\xad\x6d\xf3\x7e\x7b\xee\xb9\x6e\x6e\x98\x94\x8b\x55\x9d\x02\xcf\x1b\xf6\x9e\x2f\x4b\x8e\x6d\xf5\xec\xd3\x1d\x47\xb6\xba\x6d\x4d\xd1\xd7\x93\xd3\x36\xbf\x71\x9d\x46\x83\x0c\xe7\xff\xf6\x4c\x4f\x77\xfa\xe7\x85\x99\x52\x54\x5d\xdf\x55\xec\xb6\xd7\xb1\x58\x84\x01\xa6\xe5\xf8\xec\x1b\x9c\xbf\x70\x3a\x30\xdd\x88\x00\xf8\x7a\xb2\x59\x69\xf2\xe5\x97\xbb\xfd\xa8\xe3\x83\xd1\x73\x5a\x7c\xf8\x5c\x23\x7c\x5a\xd8\xd7\x35\x65\x31\x4c\x21\xa1\xdd\x51\xd2\xcc\xba\x34\x1e\x28\x11\xe4\x38\xc5\x39\xe7\x18\xfa\x1c\x14\xf3\xaa\x2b\x3d\x85\xb1\x29\x73\xbb\x5d\x65\x82\xb8\x09\x4f\x0e\xc4\xad\x9f\xf6\x27\x9e\xcb\x69\x3f\x01\xeb\x22\x8e\x51\xf5\xc5\x22\xfb\xdb\x04\x00\x7f\xb9\x9b\x95\xc9\xd4\xa6\xbe\x1f\x49\xb0\x4c\xf5\xb4\x69\x12\x17\xc0\x2c\xdb\xcc\x0c\xdc\x68\x0a\x11\x90\x2f\xbc\x5e\x71\x2f\xb0\x64\x8d\xcb\x9c\x60\x21\xe2\xb8\x11\xc0\x43\x2d\x73\xe2\xe0\x45\xcb\x36\x5b\x2c\xb5\x82\x27\xab\x88\x4d\x7c\xdc\x74\xb6\x81\x27\x9c\x39\xd4\x5d\x5a\x8c\x28\x09\x89\x2d\xcc\xdd\x06\x28\xbe\x49\x76\x4e\x1a\xe4\x75\xa4\x95\x84\x29\x96\xaf\xa8\xaa\xfb\x54\xf5\xc9\x36\x4d\xbb\xaf\x94\x51\x78\x14\x67\x36\x30\x6a\xa0\x20\xe4\x6b\x97\x36\xca\xd3\x32\x0b\x05\x18\xcf\x54\x31\x81\x72\xc5\xee\x36\xaa\x05\x47\x66\x0e\x75\xed\x68\x3c\x34\x79\xb5\x8a\xa6\x54\xdd\xee\x4f\x74\x73\xc3\xf5\x40\x31\xc0\x5d\x9a\xe8\xea\x7a\x38\x8a\xe2\xd8\x30\x73\xa6\xc0\x2e\xaa\x9d\xaf\x85\x0e\x85\x26\xc5\xf7\xcb\xd8\x63\x61\x24\xc2\xec\x92\xa7\xf0\x32\x49\x97\x82\x67\x6b\xbe\xf5\x40\xa4\x41\x3d\x43\xe5\x49\x45\x7d\x79\xb2\x11\x4c\xec\x9f\xe9\xae\x44\x99\x2d\xcc\x18\x9f\x71\xb5\x02\x67\xba\x2e\xb6\x69\xb2\x67\x65\xc6\xb6\x4e\x6a\xbe\xba\xc5\x6d\xf3\x0e\xdc\x3f\x53\x39\xda\xec\x67\x77\x3c\x3c\x1e\x51\x02\x5f\x4f\x7e\x4d\x71\x21\x6a\x99\x10\x3a\x38\x90\x1c\x3b\x49\xb3\xc9\xd7\x2a\xb7\x33\x4a\xfb\xd1\x52\x24\xf0\x12\x78\x9d\xec\x24\xc0\x47\x61\x2a\x41\x64\xe8\x1e\x36\x1a\x77\x67\x67\xab\xfd\x9c\x45\x89\x2d\xa2\x9c\xe1\x83\x5a\xa6\x1b\x70\x80\x8f\x6a\x39\xb5\x16\x0c\x66\x58\x16\x2e\x92\xa8\x95\x06\x60\xa0\x77\xf4\x7c\x8e\x63\xdb\x5a\x03\x51\x3d\xd3\x1d\x99\x3c\x37\x61\x66\xb5\x20\xec\x65\x15\x3f\x5e\x6e\x0b\x3f\xcc\x68\x94\x26\x51\x39\xea\x78\xac\xc2\xbf\x0d\x9c\x07\xff\xbb\xff\x56\x59\x79\x93\x1d\x95\x6d\x8b\x3d\xf4\xed\x89\xd2\x37\xfb\x76\xf0\x84\x4f\xf7\xa5\x2b\xbb\x3c\xce\x86\xf3\x40\x38\xaf\xb7\xaf\x29\x6a\x2a\xd6\x21\x13\x87\x4f\x15\x09\x1f\x29\x9a\xdc\x3f\x9a\xf8\x95\x72\x0e\x33\x21\x6d\xa9\x8a\x4e\xe3\x51\xe0\x89\xd8\x42\x13\x87\x65\xac\x93\xda\xaa\x78\xe9\xca\xb7\x13\x55\xd5\x9c\x28\x5e\xef\xfb\x9e\xfa\x25\x8b\x8a\x28\x1f\x6e\x57\x15\x3b\x90\x0b\xe1\x64\xbb\xc7\x21\x17\x7c\xa4\xff\x48\x43\x8d\x2c\xc1\x47\x13\xd7\x26\x74\xe4\xd9\x9e\x8a\xac\xef\xb6\xe9\x58\x8f\x6d\x56\xb2\x78\x82\x2b\xb6\x57\x6f\x29\xcf\x56\xfd\x22\x80\x5f\x37\x15\xb5\x52\x99\xf4\x9f\xf1\x71\x1c\xe7\x41\x61\xaa\xa0\xe3\x05\xb2\xc2\xdf\xec\xa9\x55\xbd\x85\x5b\xf1\x70\x07\xbe\x41\x58\xf6\x7b\x38\x1d\xe0\x6e\xed\xee\x55\xbe\x93\x68\xc0\x54\x3f\x0f\x7f\xf4\x03\x25\x9b\x75\x35\x50\x2c\xde\x5c\x41\x72\x4c\x8e\x5e\xba\xe4\xd7\x89\x05\x8b\x96\xc8\xff\xef\xcf\xf7\x94\x48\xd5\x74\xaf\xf3\xc5\x2f\x88\xbe\x98\x22\x0a\xe9\x10\x67\x34\x82\x8e\xf7\x5b\x05\xfe\x57\xd2\x8c\xa5\x41\xb0\xbe\xde\xd1\x3d\xb5\xef\x34\x06\xf8\xf0\xbe\x17\xba\x8b\x36\x1a\x68\x26\x1a\x64\x90\xa5\xc8\xaf\xc2\x45\xad\x45\x3b\xce\xd2\x57\x6c\x58\xf0\xa9\x8f\x49\x66\xc4\x1e\xdf\x28\x40\x06\x81\xe4\xa7\x3d\x6e\xf3\xbe\xd2\x60\x45\x0a\x0e\x21\xc6\x39\x8c\x33\xf6\xf7\x4d\xe5\x70\x8e\xca\x70\xb8\x57\xd1\xda\xdd\x9e\xf8\xae\x33\x40\xc5\x31\x6e\x4f\xae\x79\x4e\xaa\x7f\xf8\x16\xdc\x7d\x2c\x8e\xad\x48\xe2\x21\x1c\x7a\x0a\xeb\x01\xe1\xe3\xe5\x89\x7f\x80\x87\xb4\xec\x71\x76\xd2\xa2\x79\x81\x7f\xe4\xa3\x89\x4a\xa4\x04\xca\xf5\x65\x7d\x7e\x84\xf7\xef\xa8\x15\x98\x0e\x56\x77\x3b\x28\xc9\xff\xc0\xb3\x2b\xec\x5e\xbe\x60\xc7\xfc\x42\x98\x6a\x76\x0d\x61\x0c\x76\xf4\x7c\xec\x78\x99\x37\x93\x20\x3f\xab\x65\x03\xc3\xf0\xe1\xc4\x37\x1a\x3e\xa0\x40\x44\xca\x8f\x2d\x34\x50\x23\x33\x5c\x4a\xcb\x57\x3b\xde\xd6\x5e\xd2\x1c\x36\x97\x14\xd3\xdf\x38\x2d\x0a\x9b\x21\x77\xc9\x7c\xe5\x64\x62\x51\x63\xf9\xd5\x44\xe1\xd8\x1f\xa9\x99\xee\x9b\x28\x5e\xdd\x81\x87\x75\x02\xca\xd5\x30\xa2\x02\x0c\xf4\x07\xba\x3b\x8e\x4f\x7c\x0b\x20\x3a\xad\xd1\x0e\xf6\x2c\xf1\xa0\xf1\xdf\x60\x45\xe1\x3f\x3a\x6b\xfe\xcc\x8f\x92\x90\x45\xb7\xaa\x0f\x22\x2a\x7a\x7b\xa2\x58\x21\xde\x6e\xb3\xe7\xc4\x56\x93\xc6\xff\x0d\x1e\xac\xcd\xc7\xeb\x81\x39\xe8\xf5\x90\x88\x09\xce\x0e\x61\xcf\x54\x0a\x7e\x1f\x2a\xf3\xea\xd2\x70\xa5\x89\x3b\x1a\x78\xc9\xe8\x40\xbe\x51\x68\xa2\xbc\x48\xb3\xd5\xed\x08\xbc\x30\x79\x10\x80\xc6\xca\xbb\x47\xa1\x9a\x13\x09\x9f\x9d\x75\x7c\xbc\x1e\xb6\xb2\x3e\x51\x0e\xd6\x7a\x0b\x77\xc6\x3c\x89\xd3\x9b\xc2\xfb\x96\xd2\xa6\xa8\xd0\x85\x17\x1b\x43\xf6\xf2\xcb\x5d\x13\xc7\x91\x11\x19\x0e\xa7\x30\xeb\x47\xac\xd6\x7b\x9e\xf4\xcd\xb4\xca\x54\xfe\xb3\x5a\xef\xf8\x79\x84\xe2\xfc\x5f\x81\x5a\xe9\xe7\x6b\x7e\xa9\x0d\x87\xd3\x9e\x2a\xf3\xaa\x26\xaf\x7b\x97\x7e\x99\xaf\x95\xc8\xc3\x55\xcf\xf6\x68\x57\x6c\xc6\x04\x2a\x42\x80\xe4\x6b\x86\xf7\x60\x11\x1c\xe4\xbf\xb2\x08\x98\x41\x54\x00\x9d\xce\x65\xf5\x6c\xf8\xab\x6d\x6b\x1e\x75\x75\x34\xcd\xac\x49\x88\x2d\x00\xcb\xf9\x75\xa5\x1b\x09\xa2\x16\x71\xea\xe9\x1b\xe8\x8f\xfe\xca\x27\x29\xd1\x40\x9b\xf5\xbd\x5f\xef\x6d\x0e\x45\x16\xf6\x75\x97\xca\xa4\xdf\xf1\x7c\x7b\x97\x15\x02\xed\xb2\x0a\x9d\xf2\x38\x5d\xc1\xdc\xc1\x39\xbe\xa0\x58\xf6\x2e\x6c\x4e\xb0\x1d\x98\xeb\x1e\x98\xfb\x54\x65\x0e\x44\x6d\x84\x30\x32\x82\xf8\xa7\x59\xf7\x12\x97\x92\xbe\xbe\x8e\xbd\x0a\xcb\xf4\x1a\x60\x41\xd2\x8f\x53\xef\x16\xfc\xdc\x97\x84\x83\x2f\x50\x11\xfe\xdf\xc2\x7b\xe3\x7c\xba\x87\xec\x01\xaf\x56\x1a\x29\x58\x84\x8e\x56\x65\x09\x54\x71\x0b\xbc\x55\xc8\xb5\xed\xa2\x13\x10\x8b\x4c\xb2\xb7\x48\x14\x33\xfd\xb1\x70\x65\xd2\x24\xca\xa6\xf2\x22\xd0\x67\x90\xc6\x41\x68\x79\xbd\x11\x01\xce\xce\x76\x9f\xfb\x9f\xfe\x3b\x36\x04\x4c\x9a\xab\x44\x06\xdf\x50\x9d\xbe\x7d\x3b\x32\x49\x3f\xdf\x49\x0f\x2a\xb4\x7e\x3e\xad\x30\xd5\xf3\x20\xb6\x87\x1a\xce\xfd\x23\xd5\xdc\xf2\x5f\x95\xe2\xef\x1b\x5a\x26\xa5\xe6\x74\x9d\x6a\xd8\xec\x2a\x34\x22\x3d\x5b\xec\x3f\x64\x56\x91\x08\xe4\x6b\x87\xa1\x2a\x6c\x6c\xc7\x43\x28\xc2\x78\xfa\xab\x4b\xaa\x81\xf8\x92\x3a\x50\x5f\x79\x3e\x7c\x5e\xf3\x74\x80\x0e\x44\x24\x09\x9f\x52\x95\xbb\xe5\x28\xe7\x6e\x6d\xa6\x5c\x0d\x14\x8b\xd3\xd7\xda\x5c\xf5\x2a\x90\xeb\xb3\x90\x3f\x56\x1f\x3b\x06\x7c\xd3\x68\x13\x16\x4e\xb0\x91\xe9\x47\x39\xd3\xb4\x4b\xde\x5e\x27\xf1\xdd\x2e\x1f\x44\x31\xb7\x91\xba\x56\x06\xef\x54\x5d\x69\x98\xb1\xf9\x97\x0e\xba\x52\x10\x2d\x17\xa1\xa0\xf2\x6f\xf5\xbd\x16\x48\x78\x37\x33\x85\x30\x10\xcb\x08\xaa\x3a\xe8\x25\x75\xd8\xdb\x32\xdb\x55\x6d\x36\x59\xf9\xd5\x3a\xc4\x92\xf8\xd9\xc4\x37\x60\xbe\x8d\x1d\xe1\x28\x3a\xe7\x9c\xe2\x3f\x10\x35\x6e\x17\x38\xb2\x28\xc8\xfb\x22\xce\xda\xd3\xab\x31\xca\xec\x75\x1d\x78\x99\x4d\xec\xb4\xff\x3b\x40\x06\x38\xfd\x39\xf1\x2d\x05\x7b\x95\x3f\xd1\x6c\x3a\x9d\x9b\xeb\xf6\x6d\x15\xa8\xc9\x01\xc1\x5a\x2f\x5a\x69\xb6\x5e\xa9\x8d\xcd\x00\x8e\xa6\x73\x6a\x3c\x7d\xa9\xc2\xbe\x2f\x9a\xcc\x2c\xa6\xb1\xe1\xd4\x01\xfa\x47\xfe\x0b\xbd\x17\x5f\x2b\xcc\xdd\x62\x66\x8e\x5a\x14\xd4\x44\xc4\x48\x25\xfd\xbf\xd3\xd8\xc6\xfb\x67\xba\x8b\xa9\xe1\xa8\x92\x11\x50\x8a\x17\xf2\x6e\x8d\xa6\xab\xa5\x0f\x2e\x2c\xfb\xfd\x58\x76\x8c\x23\x5d\x56\x20\x2e\xfd\x22\xe9\x68\xd1\x64\x54\xfa\xaa\xfe\x1a\x86\x97\xd9\xdc\xf9\xc6\xe1\x8b\xd2\x32\x2f\x6c\x1f\xda\x8d\xd2\xcd\x52\xcd\x8a\xe3\x88\xae\x06\x15\x61\x1e\x20\xb5\x02\x5e\x54\xf0\xc3\x28\x8e\x2d\xb0\xec\xd8\x37\x37\x94\x78\xd4\x0d\x5a\x2f\xce\x85\xab\x86\x48\x5c\x38\xbf\x28\x97\x8a\x7c\x27\x99\x70\x01\xb2\x79\xa3\xc5\x21\x89\x68\x40\xd3\x0b\x21\xc1\xf8\xdb\x3d\x45\x30\x3e\xbd\xe6\xb9\xc4\x70\x2c\x21\x0c\x79\x6a\xad\x16\xff\xbb\x8a\x5f\x31\x4a\xf3\xf1\xd0\x66\xbc\xf9\x45\x94\xcd\xe7\xe8\xae\x6a\x3e\xf9\x24\xff\x84\x37\x6a\xd0\x4f\x82\x83\xbd\x55\x57\x1a\x9e\x5c\xf3\x91\xe8\x2d\x25\xe2\xf8\xc6\x5f\x65\xa2\x79\x1a\xc6\xbf\xf3\x57\x7a\x0e\x9b\x78\xb0\x8b\xc7\x03\x58\xad\xb3\xa6\x62\xb7\x0d\x1a\x03\xa9\x14\xd1\x18\xa0\xea\xbc\x9b\x04\x9d\x11\x2a\x6c\x90\xc7\x85\xb1\xb9\xef\xfb\x56\xf6\x76\xd7\x14\x0d\xe6\x6d\xf5\x26\xe1\xd1\x55\xa2\xd2\x41\x7c\xfa\x9b\xf4\x24\xd8\x31\x1c\xd0\x23\xad\xf8\x4f\xe1\x7d\x60\x68\xff\x84\x9e\x04\xaf\x78\x76\xe2\x2b\xfa\xdc\x56\x21\xb0\x00\x5f\x60\xf4\x25\x9c\xbe\x5d\x32\x65\x5c\x70\x46\xc6\x25\x5c\xab\x8f\xc1\xcd\x41\x7b\x19\x56\xf0\x23\x55\x3d\x1c\xa5\x79\x11\xaf\xee\xa6\xd7\x96\x13\xb3\xd6\x94\x5d\xfd\x9a\x23\x7b\x71\x86\x63\x5b\xaf\x66\x69\x7d\x56\xe3\x35\x1c\x5e\x18\xe7\xdb\x13\x45\xa3\xf3\xe1\x44\x71\x3d\x43\xa2\x03\xdf\xf5\xc7\xad\x47\xdc\x92\x89\x62\x6e\xdd\x41\x15\xf9\x26\xcc\x0e\x2c\xe5\x29\x1c\xf8\x52\xc3\xf1\x1e\xd1\xa2\x35\x99\x56\xe7\x03\xba\x02\xa1\xd4\x56\x5a\x36\x92\xe6\xf6\x5d\x9f\x3f\xa0\x5a\xb5\xa4\xc2\x9f\x52\x08\xfc\x68\xd9\x14\x76\x6f\x15\xf4\xc3\x0e\x5f\x9a\xa8\xde\x87\x4b\xe4\x6d\x62\xc1\xaf\x6b\xc7\x06\x85\x20\xfe\x8f\x89\x5f\xf5\xfc\x06\x92\xb1\xa6\xb1\x11\xd9\x1d\x1a\x1b\xbe\xa1\xb1\x11\x49\x3b\xd5\xa0\x7c\x22\xf0\x24\x38\x3f\x0a\xbc\xf7\x70\xbb\xb5\x13\xc9\xe4\x91\x01\x52\x0a\x45\x25\x16\x9e\xe1\x1b\x15\x9f\x8d\x63\x02\xf4\xcf\xce\x72\xf8\xfa\x9a\x6a\x8a\x7f\xcd\x09\xc6\x2d\xd9\x3e\xb4\xbc\xa6\x5d\xa6\xe6\x4d\x16\xd1\x76\xea\xef\x5e\x5c\x62\x2f\xea\x54\x18\xdf\xe9\x35\xdd\x86\x99\x86\x47\x81\x9d\x9b\x77\x61\x59\xf5\xbe\x12\xaf\x89\xe1\xf8\x4a\x69\xfa\x59\x39\xf6\x74\x1f\xa8\x33\x03\x1e\xc0\xd7\xee\xe1\xc2\xa1\xc9\x0a\xb4\xc4\x56\xcf\xe0\xc8\xd0\x3d\xcf\xfd\xe5\x56\x1d\xc2\xfe\x72\x15\xc7\x20\x5f\xc1\x7a\x85\x81\xc2\x36\x5e\x74\xbc\x95\x51\xc2\xa5\x66\x66\x64\xc6\xd6\x92\xcc\x67\xf5\x48\x58\x3e\xf7\xdb\xb2\xe4\x59\x99\x24\x60\x43\x75\x3e\xa9\x83\x47\x69\x80\xfe\x62\x9a\xf5\x89\xc2\xc5\xd1\x3a\x5d\x08\xfc\x99\xa8\x7b\x2b\xc2\x34\x97\x1a\xce\x97\x9d\x76\x97\xcf\x9c\x9e\x69\x41\xf4\x1c\xec\x66\x76\x6c\xe3\x29\xed\x5b\x6b\x76\x62\x94\x02\x61\x39\xbe\xa1\x56\x87\xed\xaf\x30\xe0\x4e\xa4\x19\x69\x88\x45\xb4\x51\x61\x3c\x8b\x82\x7a\x3d\x50\xbf\x3b\x4d\x06\x13\xc0\x5e\x9c\x4c\xae\x29\xc5\xb7\x65\xde\x55\x04\xb5\x37\x54\x7e\xb9\x9f\x8e\x6c\x5e\x44\xe1\x2e\x55\x30\xb8\xa8\xe2\xa7\xff\xfb\x75\x04\x25\x52\x9d\xf5\x5b\xec\x17\xe0\xbc\x71\x65\xdb\x6a\x7c\xb4\x90\x2c\xa2\xb9\xcb\xf4\x70\x22\x80\x50\xad\x3e\x18\xc9\x2b\xca\x80\x1f\xfc\xfc\x97\xa6\x6a\x48\xcd\xce\x9c\xa7\xe8\x54\x3b\xe9\x41\x03\x54\xf1\xf2\xcb\xdd\x30\x65\x10\x38\x9c\x80\x8f\x02\x2f\x06\x7c\x45\x11\xc8\x5d\x57\xb0\xb9\x57\x6c\x91\xab\x92\xcd\x83\x89\x97\xa7\xf9\x81\x46\xfb\x3d\x76\x40\x95\x45\x93\x85\xb1\x59\x15\x69\x2f\xb6\x11\x9a\xac\xec\x8c\x06\x47\xde\x08\x7e\x4d\xad\x9f\xd1\xd8\x64\xa6\x88\x96\x2d\x28\x7d\x67\x1c\x3e\x89\xde\x59\x90\x4b\x7e\x38\x3e\xf7\xf9\x83\x04\x37\x96\x8e\x1d\xc5\xa8\xfa\x38\xd0\x45\x54\xe5\x9c\xbf\xd3\xe2\x40\xcf\x77\xf3\x94\x62\x5b\x57\x26\x7a\xa0\x2c\xf4\x03\xb7\xfd\xc3\x34\x09\xcb\xcc\x2b\x63\xc3\xe1\xf8\xa6\x0e\x34\xbe\xb9\x49\x8b\x73\x91\xbe\x94\x75\x65\xe8\x4b\x45\x63\xc6\x97\x77\x16\x8d\xb7\x3e\xd8\xb1\x1d\x4f\xe2\xf6\x52\xa7\xe7\x8d\x7f\x58\xc6\x45\x99\xd9\x1d\xbe\x30\xf9\x53\xa2\x59\xc0\x83\xde\x0e\x3c\x0e\x9e\xbb\x52\xb1\x32\xcf\x29\x69\xf5\xf7\x27\x9d\x23\xf3\xbe\xb0\xe1\x5a\x3b\xff\x9e\xea\x46\xce\x87\x69\xbf\xbf\xaa\x94\x55\xea\xa4\xcd\x7e\x02\xfe\xda\x7f\xff\xd7\xa6\xbc\x0f\x82\x02\x10\x9e\xeb\xf8\x44\x41\x98\x4f\xd7\x18\x43\x07\xc3\xe2\xc9\x4d\x68\xc6\x19\xc7\x95\x44\x38\x00\x38\xc8\x17\x74\x17\x05\xf8\x32\x85\x6f\x84\x4e\x29\xd7\xb3\xb5\x20\xe1\xee\x09\x9c\x84\x78\xe9\xc7\x81\x42\xb0\xdd\xa7\x53\x4a\xd4\x26\xbd\x0f\x04\xf6\x4a\x9c\x58\x3f\xa1\x68\x48\x88\x23\xe9\xec\x93\xf6\x2f\xdf\x77\x59\x85\xd8\xa4\x29\xa8\x08\xcc\x4e\x2a\xb8\xce\x63\x55\x28\xbe\xad\x3e\x97\x0f\x33\xeb\xe1\x68\x08\xbc\x19\x8d\xc0\x37\xea\x8c\x5f\x36\x59\x64\x21\x25\x3c\xc3\x73\xfb\x07\xd8\x03\xcc\xc7\x80\xf3\x40\x04\xc3\x9b\xf1\xc2\x7c\x37\x2f\x80\xa1\xf2\x07\x35\xba\x94\x24\x31\x22\xfb\x75\xd5\x8c\x4c\x61\x12\xa6\x1a\xc7\xc8\xfd\x98\xde\x81\xaf\x15\xf3\x6f\x34\x1a\xa7\x79\x1e\x2d\xc6\x76\x5a\x89\x86\x41\x7a\x4c\x6b\xac\xf0\xf5\x84\xd2\x68\x52\xda\x7e\xb6\x5e\xd9\x5b\x2a\x73\x27\x64\x2d\x2c\x31\x0a\xa9\x77\x56\xb1\x2e\xe7\x63\x9b\xf4\xa3\x64\xb0\x57\x25\xa0\xcf\xea\xc6\x06\x06\x8c\x23\x07\xf3\xa7\x0a\xad\xfa\x48\xd1\xd4\xfd\x30\xa8\xc5\x0b\xb4\x36\x18\xeb\xa6\xa0\xc6\xac\xe4\x24\x3c\x52\x9e\x78\xeb\x3f\xc2\x09\x97\xf8\xa9\x5a\x4d\x9c\xe5\x51\x96\xe2\x0f\x1a\x25\x63\xa2\xc0\xb7\xd9\x62\x14\x46\x7d\x09\xdf\xf0\xb9\xe3\xaa\x75\xe7\x78\x5b\x94\xbb\x98\x59\xdb\x77\x4c\x3a\x38\xda\x00\x24\x45\xa6\x0b\xd9\x29\x11\xae\xd5\x50\x8c\x74\xd9\x3e\x49\x1f\xc2\x1f\x92\x53\x27\x76\xf1\x64\xa0\xb4\xca\x58\x18\x1b\x35\xb1\x87\x18\x52\xc4\x5d\xbb\x7b\x9d\x85\x7d\x1b\xac\x95\x89\x51\xde\xc0\x00\xba\xd3\xf3\x45\xa9\x2c\x9c\x0c\x3a\x9a\x66\x6d\x6e\xce\xb3\x92\x7e\xf1\x0b\xae\xd7\xbb\x9a\x09\xec\xc5\xd7\x30\x94\x52\x28\x6e\xc9\x78\x8d\x23\x61\xd2\x6a\x63\x1f\xf6\xb5\x9d\x95\x34\x8b\xfb\x2b\x51\x5f\x18\x6f\x60\xfa\x4e\xab\x98\xfd\x8c\x56\x83\xb8\x1d\x78\xce\x93\x38\x3a\x6a\xe3\x68\x98\xa6\xfd\x4e\xe5\x49\x63\xbd\x5c\xc4\xae\xe7\x9b\xb6\x16\x66\x4a\x33\x39\xef\xaf\x8d\x70\xc8\x1b\xc7\x7d\xf3\xfb\x39\xaf\x0e\x07\x86\xc9\xe2\xf9\x46\x21\xe9\x6d\x99\xa5\x63\xbb\x4b\x25\x08\x1f\xc1\xf4\x61\x7c\x1f\x6a\x1f\xf6\x5f\x29\x7e\x44\x80\xee\x84\x2d\x41\xd9\x12\xa4\xdf\x9d\x26\x90\x4b\xfb\xdd\x0a\x54\xdd\xf5\x1b\xad\x35\x7d\x9b\xdb\x42\xd5\x30\xc1\x96\x53\x13\x33\x83\xa5\x5e\x73\x70\x90\x24\xcd\x8a\xa1\x35\x79\x61\x33\xb8\x64\x92\x30\xf4\x3d\xb6\xa7\x5c\xa3\xf4\x58\xe8\xd3\xa5\x94\xfa\x8f\x02\xc5\x9e\xfb\x8f\x5a\x6b\x41\x69\x96\xb8\x6d\xa0\xf1\x91\x38\xc3\xb8\xc3\x13\x3e\xd4\xe9\xb6\x34\x5f\x44\xc2\xf9\x08\x26\x50\x56\x7b\x43\x69\x7c\xbe\xe1\xb8\x89\x92\x28\x04\x93\x20\x0c\xc6\xba\xf2\xa0\x91\x1a\x07\xff\xcd\x5f\xec\x79\x52\xea\xcb\x6d\xf4\x22\xaf\xa4\x4e\x05\xbf\x8d\x4f\x54\x65\x4e\x48\x5b\x58\x31\x39\xdc\x51\xe5\x94\x3b\x6a\x25\x65\xe9\x2a\xa5\x9a\x98\xe8\x1b\x43\x26\xac\xdf\x4d\x44\x67\x68\x4a\xd7\x5c\xc2\xd2\xb6\xd8\xc8\xa2\x73\xbb\x19\x9b\xf3\x59\x72\x2c\xa6\x54\x35\xe1\xad\x89\xc2\x97\x29\xe9\x8a\x3b\xc1\x13\x2a\x4a\x5f\x9c\x52\x64\x83\xf8\x33\x2c\x3a\xa6\xf4\x96\x0e\x07\x2d\xf9\x64\x8f\xc6\x29\x66\x53\x14\x5c\x5f\x87\x15\x42\xd8\x4c\x85\xea\x8d\x8d\x36\xf4\xbf\xea\x07\xc5\x72\x7e\x9f\x16\x27\x5f\x2b\x3e\xa3\x91\x1d\x2d\xda\x2c\x1f\x46\xe3\x6d\x75\x1a\x8a\x05\x51\xe1\x7e\x03\x3f\x89\xe3\xfb\x6d\x8f\x69\x13\xc2\x21\xa9\xd6\x78\xc0\x1e\x31\x4c\xec\xa1\x13\x0d\x5e\xc4\x45\x0d\x39\x3d\x81\x29\xe1\xff\xa1\x82\x97\x2c\x48\x05\xf5\x81\xbb\x85\xf7\xe4\xde\x38\x49\xce\x55\x7b\x14\xae\xf8\x8f\x74\x28\x03\xa5\x12\x14\x9f\x1e\xc1\xa3\x43\xbd\x71\x77\x4f\xb6\x5f\x66\x4d\x9e\xdb\x3c\x1f\x49\xff\x0c\x8b\x7c\x06\xbe\x47\xe8\x72\xa3\xc1\x6e\xfe\xa5\x83\x8e\x98\x4c\x21\x78\x4e\xd5\x64\x84\x95\x87\xda\x8f\xd2\x63\x51\x9f\x31\x29\xb0\xf4\xeb\xfa\x6c\x58\x6f\x83\xec\x93\x0b\xc2\x94\x8b\x30\x5e\xa8\xcc\xf2\x75\x03\xfc\x72\x78\xdf\x97\xbb\x4b\x11\x1d\xf5\x1d\x15\x49\x9d\x57\x6d\x04\xe7\x9b\x5c\x1a\x2f\x1d\x84\xc6\x86\x8a\x7d\x51\x77\x70\xbd\xa1\xde\x6f\x6c\x63\x83\x1a\xa5\x02\xf6\x71\xd4\x0d\xd5\x69\x29\x2e\x21\xe5\x25\x99\xca\x3a\xd0\xee\x9c\x35\x59\x9e\x26\xc0\xa5\xc0\x48\x5c\x08\x54\xda\x0c\xed\xdd\x7c\x4d\xee\x02\xff\x91\xe7\x8c\x18\x9b\x0c\x4c\x6a\xb0\x25\xeb\x98\x5f\x4c\xd9\xcf\xbd\x00\xdb\x77\x9f\xad\x46\x6d\x63\xcf\xda\x66\xdf\xe2\xc0\x5c\x97\xf0\x54\x95\x7b\xd1\x67\x83\xc3\x0a\xad\x8a\xbf\xe4\x8a\x32\x38\xa3\xe8\x58\x61\xc3\x29\x05\x84\x79\x48\x67\x34\xdc\xf7\x13\xf4\x9b\xc8\x60\x6f\xed\x7d\x52\xf1\x0a\x0f\xd2\x4c\x89\x85\xa1\xa0\x75\x11\x5b\x9c\x6f\x7c\xce\x2f\x5d\x49\x56\x4c\xd6\x47\x94\x0c\x9f\x18\xa2\x7f\x70\x2c\x3e\xd4\x82\x5f\xd7\x54\xf3\xd2\xaf\xf5\x94\xb6\xe7\xb5\x5a\xb6\x5a\xe1\x1e\xc0\x0d\x00\x07\xf3\x69\xca\x9c\x31\x33\x4c\xdb\x02\x1c\xa7\x69\x66\xf3\x42\x31\xf8\xb2\xd6\x08\xdf\xa8\xf9\xb4\x59\x39\x26\x52\x8b\x8e\x63\xe5\x07\x37\x1d\x5f\xb7\x38\x68\x07\xbb\x7d\x9b\x45\xcb\x4c\xd4\xac\x7a\xb0\x1d\xd7\x1b\x46\x48\x6a\x55\x9f\x50\x99\x84\x72\x31\xb6\xe0\xdd\x77\xaa\x1e\xd5\xd2\x61\x62\x4b\x1c\xe5\x58\x2f\x67\x26\x8a\x1b\xe2\x11\x3c\x27\x49\x0a\x79\xf6\x9a\x26\x12\x8d\x44\x7d\x6c\x28\x74\x7b\xf0\xaa\xff\xeb\xc4\x67\x2e\xff\x6b\x0b\x47\x64\x96\x3a\x61\x6a\xe9\xfe\xef\xcc\x79\x52\x81\xcd\x36\xf9\xc5\x99\xee\x80\x2b\x4f\x87\xf7\x39\xe0\xa7\x77\xbf\xcf\xba\xa3\x35\x2d\xb3\x1c\x31\x83\x73\xb4\xaa\x1f\x91\xf0\x8a\x82\x3e\x18\x63\x10\x09\x8b\x4a\xe3\x66\xbb\xb5\xb0\xef\x20\x1d\x21\x36\x91\x05\xef\x24\xba\xbc\x5c\x97\x42\x5c\x8e\xd3\x38\x2a\xa2\xd0\xc4\x4f\x53\x06\x86\xbb\x28\x60\xb9\x91\x12\x42\x4a\x03\x6f\xb8\xa3\xa7\x4e\x85\x2b\x1a\xac\x0e\x27\xca\x29\xa3\x7a\x1d\x86\x1d\x08\x24\xa4\x8d\xbd\xe3\xa8\x06\xb6\x61\x39\x4b\x96\x4c\x69\x73\xdd\x62\xe8\xba\x7c\x5b\xc7\x69\x7f\xb2\x05\x80\xc7\xfc\x36\x46\x85\xff\x8a\x46\x95\xa5\xc7\xe9\x78\x81\x4b\xf6\xcf\x03\x45\x68\x13\xd9\xb8\x9f\x53\x22\x94\xb7\x9d\x92\x10\x01\x13\x30\x06\x08\xda\xaa\x7c\xed\x36\x6e\x68\x92\xc2\xa9\xc7\xb1\x9c\x16\xcd\x85\x48\x6b\x39\x7f\xcf\x46\x83\xe1\x62\x9a\x55\xbe\x33\x55\xf3\x1c\xea\xc6\xf5\x52\x9c\x50\x15\x65\xf6\xa9\xc5\x47\xd8\xe3\x89\xd1\x8d\x82\x35\x3f\x40\x58\x22\xe8\x2a\x8f\xf0\xbc\xd2\xd2\x1c\xfe\x65\x4a\xc4\x64\xb6\xc0\xda\xc6\x57\xff\x58\x71\x1d\xff\x58\x91\xc4\x2d\xa5\x61\x99\xef\x56\x6c\xa4\xc7\x27\x3e\xba\xfd\xc7\x5a\x4d\xe0\xbc\xea\xf5\xbc\x0b\x18\x82\x13\x3b\xaf\x1e\x0e\x4b\xe1\x86\x2e\x42\x5d\xa3\x30\x08\xd1\xc5\xe5\xc0\x97\x46\x2f\x05\x35\x40\x89\xdb\x07\x61\x9a\x3f\x3f\xa5\xc1\x7b\xd8\x60\x62\xa9\x95\x98\xd2\xbf\xf0\xbc\xdc\xb6\xda\x62\x52\xa4\x13\x4a\x1e\xef\xcb\x7c\x0f\x9e\x84\x20\xdf\xbc\x37\xd9\x4c\xfb\x52\xdb\x6c\x24\x69\x01\x51\x0a\xf6\xa5\xaa\x67\x8f\x4f\x9e\xf0\x39\xd6\xbc\x98\xf6\xf9\xaa\xdd\x3d\x25\x3f\x06\xbb\x0d\x54\x1a\x98\xd4\x98\x76\x4b\x1d\x6e\x99\x59\x6d\x52\x70\xc2\x58\x3f\x0c\x7c\xab\xd2\xb9\x5a\xe4\xba\x54\xe4\x3b\x14\x41\xd7\x79\x95\x9f\xba\xae\x19\xed\xb4\x7e\x14\xaa\x3e\x4a\xd7\x40\x62\xbf\x3f\x53\xec\xb8\x97\x95\x51\x08\xd3\xd1\x52\x9a\x15\x52\x1f\x75\x0c\x8d\x0a\x21\xd3\xc2\x67\xb3\x94\x66\x80\xd7\x0a\x0b\xa8\xaa\xb1\x9d\x6d\x2c\xd2\xfd\xfb\xbb\x8b\x51\x3a\xc8\xcc\x78\xc8\x8c\xdc\xd2\x99\xee\x7b\x35\x2e\x39\xc1\x89\x28\xb1\xcb\x51\x61\x08\x3d\xe1\xf2\xb0\x58\x8e\x52\xba\x7c\xca\xd5\xd4\x0a\x9b\x8d\xa2\x04\x6c\xa3\x08\xe3\xa1\x7d\xc5\xb5\x19\x25\xb7\xaf\x93\x2e\xa1\x19\x8d\x4d\x34\x60\x8d\x23\x59\xcc\xff\x29\xa8\xb7\x12\x2f\xec\x73\xac\x27\x9a\x6c\x32\xf0\x4d\x59\x36\xa7\xec\xa7\x62\xf9\xbf\xac\x82\x29\xdd\xf8\x9c\x87\x19\x03\x42\x1c\xa9\xc9\x65\x55\x9c\xaa\x4b\x6c\x66\x7d\xf3\xdf\xc2\xa0\xf9\x6f\xb5\xc7\x0c\x71\xca\x4f\xf9\x3c\xc3\x5d\x25\xb7\x5c\x63\x2d\xfb\xbf\x1a\x28\xb9\xd9\x59\x91\xe6\x77\x4e\x26\x0b\x7e\xd2\x77\x88\xf8\x67\x9b\x34\xeb\xc8\x16\x59\x4a\xe7\x89\x49\xa6\x3b\x9f\x3f\xc2\x16\x04\x2b\x11\x67\xf5\xce\x9e\x07\xe6\x30\xd2\x4d\x82\x34\xaf\xbd\x9a\x54\xd1\x7e\x9c\x0e\x22\xe8\x22\xbe\xe0\xfa\xbf\x3a\x8e\xb4\xe8\x5c\x9b\x66\xf4\xa0\x44\x42\x56\x3c\x3c\xed\xee\xa9\x56\xc2\x57\xac\x1d\x77\x74\xff\x1b\x0d\xb9\xf4\xc2\x29\x6e\xcb\x24\x61\x77\x1e\xa7\xca\x7d\x7c\x21\xdf\x28\x1d\x1f\x96\xa4\x15\xd0\xbe\xe8\x1a\x69\xbd\xa3\xb6\x08\x34\x71\xf8\x1e\x61\x74\xa7\xf1\xe0\x1b\x15\x45\x16\xe6\xd8\x13\x34\x0e\x22\x58\xa6\x52\x52\x2c\x38\x8a\x0c\xdc\xff\x89\x2c\x9f\x50\x26\xfb\xe2\xc5\x8f\xe0\x15\xa1\x58\x0e\x4e\x3f\x81\xbc\x62\x49\xd5\xe8\x6f\x91\x21\x61\x05\x7a\xae\x0f\x28\xc0\x02\x58\xb2\xc4\xab\x52\x18\x05\x1b\xe3\x75\x6a\x0e\x2a\xdf\xa8\xe3\x66\xb5\x3a\x85\xb7\xd3\x93\x62\xf1\xa2\x94\x83\x71\xfd\xe5\xc4\x93\x00\xdc\x50\xab\x16\x1d\x5f\x70\xa5\x6f\x62\x4b\x4a\xb7\xa9\x9c\x1c\x2b\xd1\x00\x70\x13\x99\x4a\x05\x77\xbe\x1a\x7c\xaa\x0e\xaa\xa3\x46\xf4\x03\x73\xcf\xd0\x33\xba\x32\xad\xa3\x3a\xe1\xd0\xd5\xe5\xd6\x66\x67\xbd\x22\x77\xe5\x86\x22\x14\x86\xd8\x3d\x6a\x62\x2c\xa2\x8f\x51\xd9\xca\x78\x06\xa7\xa1\xeb\x42\xd4\x37\x08\xd7\xcb\xed\xf1\xc0\xb5\x21\xeb\xf1\x73\xac\x2e\xd8\x96\x73\x38\x4e\x5d\x2a\xe7\xc0\x9c\x1b\xd4\xca\x32\xc1\xf4\x33\x9d\x8a\x9b\xad\xca\x17\x83\x63\x74\x41\xcb\x85\xdd\x69\x4b\xc0\x84\x99\xc9\x87\x1d\x52\xf8\x26\x3e\xbd\xeb\xda\x2a\x91\x4f\x2c\xa1\x8c\x2e\x8f\xf0\x75\xed\x3c\x1a\xa6\xc5\x36\xc5\x44\x7b\x61\xe2\x5d\xfd\xb3\x81\x82\x72\x5d\x50\x9e\xd2\x0f\x94\x54\xc0\xe5\x96\x62\xd3\x4c\x37\x1f\xa6\x19\x9a\xdf\x9d\x90\x92\x63\x34\xf0\xcd\x65\x79\xb1\xea\xe8\x6f\xe0\xb9\x30\x1b\x12\xdf\xb4\xd6\xd7\xad\x11\x91\x03\xae\x0a\x06\xba\x42\x28\x87\x88\x4d\x0a\x93\x0c\xdc\xb7\x3b\xfc\xae\x73\x1d\xee\x05\x9b\xa1\x6f\x33\x87\xba\x8b\x59\x6a\xfa\xa1\xc9\x7d\xa3\x1e\x92\x14\x20\x29\xe6\x6b\x57\x2b\x1b\x67\x69\x61\xf3\xc2\x24\x85\xd4\x02\x81\x09\xdf\x06\x47\x42\xd2\x4c\xaa\x4a\xd4\x59\xf3\xce\xec\x38\xca\xa4\xfe\xcf\x14\xfb\x81\x8f\xcc\xde\x53\xf3\xd9\x2f\x33\x03\x36\xc2\xea\x5b\xa5\x57\xb1\x5a\xeb\x7c\xdd\x04\xd9\x11\xc7\xf0\x80\xb4\x5d\xe8\x43\x70\xd8\x7f\x08\x2b\xc2\x37\xed\x24\x19\x5e\x5d\x11\xab\xef\x8a\xa2\x19\xba\xe2\xa9\xe6\xcb\xf1\x38\xcd\x6d\x7f\x9b\x82\x86\x00\x25\xa1\xd8\xb4\x0f\xea\x36\x66\x49\xaa\x3e\xd1\x53\x11\xf8\x9a\x2c\x84\x51\x14\x17\x1c\x99\x4a\x43\xb1\x22\x75\x6e\xf6\xa1\xce\x1c\xea\x12\xc5\x2c\x1b\x2c\x47\x4c\x3b\xe7\x95\x3e\xdb\x35\x8d\x6c\xb6\x2c\x4b\x42\xe4\x93\xe9\x15\x44\x58\x79\xf3\xa9\x54\xc5\xc0\x61\xbf\x46\x73\x4d\x0f\x26\x5e\x54\x8b\x5e\xcb\xc8\x14\x25\xab\x09\x63\x1b\x01\x41\x8e\xcc\xea\xfb\xaa\xd7\xfc\x0f\xb5\xf4\x55\x79\x8c\x97\x90\x94\xeb\xfd\x58\xfc\x64\xa2\x5c\x91\xeb\xce\xa3\x1a\x94\x51\xdf\xc6\x51\x62\x65\xf1\xb1\xed\xc0\xd0\x23\x15\xc1\x44\xd1\xe2\x6a\x3e\x5d\xb7\xa1\x9f\xee\x7e\xa6\xe3\xb5\x0c\xef\xd0\xe6\xf8\x38\xdd\xba\xfd\xfb\xbb\x61\x3a\x8e\x04\xb5\x29\x39\x7c\x9f\x9d\x7f\xe4\x00\x77\x43\x92\x02\x55\xfd\x6f\x8c\x3d\x10\xdd\x18\xdf\x7e\x95\x26\xf6\xcf\xd3\x5c\x60\xf7\xde\xa2\xb0\x8f\x6b\xa6\x54\xf4\x15\x5d\x42\xcf\xb8\x72\x57\x37\x2e\x3f\xb3\x46\x06\x58\xa4\xa0\xaa\x77\xc1\x79\xf9\x76\xa0\xea\x8a\xdf\x47\x98\x8b\x1d\x78\x93\xec\x1b\xde\x12\xb4\x55\xb0\xf1\xb7\x38\x9c\x81\xc3\xfd\x72\xa0\x19\x24\x70\x2a\xe3\xef\x76\xd0\xfa\x65\x0a\x70\xaa\x33\x33\xd5\x13\xf6\x16\x32\x9f\xcf\xf4\x28\x8b\xea\x14\x09\xaa\x11\x93\x28\x1e\x91\xb1\xf3\xf1\xe7\x04\x4c\x75\x0f\xfd\xe1\x38\x65\x58\x25\x0f\xcf\xbf\x8e\x23\x4b\x04\xe6\xe8\x64\x91\x83\xd7\x75\xb9\xa6\xd9\xc0\x16\x53\x35\x81\xae\x6a\xd0\x10\x8d\xdc\x53\x18\x93\xa9\x9e\x67\x54\x4b\xb3\x68\x10\x11\x87\xfe\xb4\xe2\x9a\xbb\xac\xc5\x6f\xf6\xf6\x7c\xda\x61\x2f\xb0\x7c\x62\xd1\x5b\x8e\x25\x93\xa5\xb9\x45\xaf\x2d\x42\xa7\x37\xe8\x29\xd0\x77\xcb\x78\x35\xd4\xf4\x6f\xa9\xfe\x96\x3c\x1c\xa6\x69\x9c\xef\xa8\x7e\x49\x3c\x07\xc5\xe3\xff\x0b\x7a\x7a\x8e\x40\x71\x66\xf2\x7f\x04\xde\x43\xfe\xd3\x89\xda\xc7\x97\x71\xfc\x4a\xd0\xea\x25\x84\xaa\x0d\xb3\x5c\x45\x9a\xdb\x75\xbe\xbf\x7a\x44\xd4\xfc\xde\xa4\x15\xc8\xd7\x81\x52\x1e\xd8\x20\xe3\xe6\xba\x18\x1c\x7f\x76\xa7\x85\xf2\xbf\x2e\x52\x09\xee\x33\x66\xe0\xe7\x1b\xb7\x55\x5e\x35\xe3\xff\x2f\xaf\xcb\x51\x45\xa6\x25\xd3\xbf\x3a\x56\x72\xcf\x50\x5e\x0b\x34\x42\x8b\x53\x05\x05\xa7\x75\x85\xac\x5e\x6f\xd8\xb7\xc3\xfb\xe6\xba\x06\x84\x76\x30\x36\x44\x74\xf0\xc2\x06\x84\xc9\x31\x87\xa7\x27\xba\x31\xbc\x2d\xcf\x5e\x9d\x81\xbe\x8e\xcb\x8c\x09\x6b\xde\x00\xec\xe9\x79\xcf\xff\x92\xe2\xa2\xca\x7d\x40\x88\x3c\x28\xf4\xaa\xf9\xda\xab\x93\x47\x4b\x40\x58\x0a\xd0\xef\x6e\x50\xc7\xd2\xce\xc9\x30\xff\xaa\x51\x9d\x5e\xd8\xd7\xed\x47\xb9\x6b\xca\xa5\x07\x94\x90\x42\xc7\x1a\x1e\x02\x50\x26\xd5\x12\xc9\xa3\x62\x75\x97\x0a\x5e\x6e\xd0\x5f\x33\xd1\x39\xd9\x0d\xd8\xa9\x2b\x28\x8b\x08\x93\xa2\x22\x65\xbb\xa6\x18\x69\xbe\x15\x78\x84\xe9\x7b\x81\x62\x15\xfe\x96\x22\x72\x6d\x6a\x6f\xd1\xe9\x93\xe6\x23\x5b\x44\x61\xc7\x8f\x0c\xce\x64\xc9\x1c\x2b\x8c\x5f\xcd\xf1\x83\xf1\x38\xae\x7c\xf0\xe3\x4a\xb3\x2f\x4c\x93\x30\x2e\xfb\x8e\xae\x91\xb3\xaf\x81\x92\xde\xb8\xae\xfb\xd1\xce\xb5\xe8\x92\x76\x07\x99\x59\xe6\x0e\x47\xc9\x02\x2a\xdc\x5c\x4b\xef\x53\xb7\x30\xe1\x70\x35\x34\x59\x3f\x32\x5a\xc3\x19\xa9\x13\xbe\x6e\x30\x1b\x1c\x98\xeb\xae\x44\x71\xdf\x66\x89\xcd\x73\xa5\x52\x8f\xa8\x98\xaf\x6b\x5b\x20\xb2\xd9\x2e\x0f\x05\x79\xbd\x2e\xeb\xa0\x84\x20\x6e\xd4\xaa\xee\x2a\x97\x7d\x15\x46\x5b\xc4\xf4\x35\x16\x25\xf0\xc5\x9e\x1f\x6a\xb1\xed\x0f\x6b\x6e\x75\x16\xda\x3d\xf4\x15\x8e\x8e\xd4\xc7\x23\x8f\x34\x90\x1e\xfa\x1a\x58\x4c\xe8\x61\xc7\x1a\x67\x4b\x87\xb7\xfb\x8e\xa2\xc0\x5b\x27\x1b\xc5\x7f\x84\xf9\x52\xe0\x30\xc9\xda\x6e\xa7\x12\x2e\x6c\x6d\x73\xee\x66\x0e\x75\x4d\x36\x62\x00\x26\x2c\xd9\x5d\x3c\x21\xdf\xb8\x74\x48\x3f\x7a\xf5\xd5\x55\x6a\xf6\x76\x9d\xf2\x1d\x24\x84\x59\x72\x55\x09\x46\x3d\xd1\xf3\xb8\x05\x33\xb2\x49\x7f\x64\x13\x60\x13\xd1\xe9\x70\x1b\x0f\xc8\xcd\xb7\xbd\xce\x73\xcf\xf9\x1c\xbc\xc3\x39\x3e\x02\xa6\x46\x12\xf2\x7b\x9c\x8b\x74\xe0\x40\x47\x11\x93\x9f\xe7\xf3\x9a\xef\x14\x2d\xe0\x78\xb8\x9a\x47\x61\x94\x17\x24\xc9\x07\x7f\xf4\x14\x0d\x2c\x5f\x2b\x88\xc4\x38\x4b\x97\x96\x6c\x96\xb1\x66\x34\x67\x9f\xe9\x69\x24\x13\xdd\x16\x82\x10\x17\x7a\xa7\x4e\x79\x4e\xcf\x26\xc9\x24\x4d\x36\x1a\xe5\xe0\xea\x95\xb6\xd4\x8e\x23\x83\x7b\xc7\x93\xf5\x84\x51\x52\xa4\xf9\x70\x4a\x33\x9d\x9d\x57\x1a\x01\xfc\xfd\x40\x8d\x35\xb3\x9e\x95\x19\xb7\x26\xd7\x60\xd7\x77\x03\x9f\x3f\xd5\x7a\x52\x61\xba\x62\xb2\x7e\xbc\xda\x81\x23\xe2\x80\x53\x87\x35\x70\xca\xa5\xd4\x6c\x52\x64\x9c\x0a\x63\x76\x54\x4e\x38\x08\x57\xaa\x1f\x77\x9b\x2c\x47\x39\x71\x4c\x77\x1c\xaf\xde\x1d\x7a\x5b\xbe\x6e\x2a\x11\x2d\xcc\x77\x8b\xb4\x1c\x0c\xc5\xab\x6c\x83\x55\x34\x19\x1c\x97\xd2\xb4\x58\x34\x71\xac\xb8\xd0\xcf\x60\x23\x0a\xb5\xc6\xe6\x39\x3b\xf4\x52\x77\x90\x2e\x13\x78\xc3\xe5\x74\x60\x44\x3d\xfe\xd4\x57\xd6\x93\x27\xab\xff\x01\x43\x21\x57\xd3\x9c\xa8\xa4\x73\xde\xaf\x68\x32\x16\xe6\x60\x40\x89\xe3\xfc\x44\x11\x07\x3c\xd1\xf3\x12\x81\x5b\xa9\xaf\x41\x3a\xf2\x69\xe3\x4a\xc1\x94\x36\x14\x03\xba\x94\x53\x73\x11\x85\x5a\xd7\x1f\x5a\x8d\x91\xc4\x7c\xe4\x93\x0a\x8a\xb0\xa5\x93\xb1\x6f\xed\x58\x35\x17\x5f\x0b\x6a\x6c\x0f\xfe\x20\xc8\x2c\xb3\x84\xec\x50\x0e\xec\x95\x49\x8d\x0a\xc0\x37\x78\x5f\x0a\xd4\x11\xff\xa1\xea\x26\xf9\x50\xd3\x50\xb0\xff\x25\x8a\x04\x4d\xf0\xde\x5c\x37\x4a\x0a\xc3\xf4\x78\x5c\x11\x09\x3c\xb6\xe2\x5c\x63\xa9\x48\x5b\x9a\x89\xe3\x1d\xd5\x24\x08\xef\x68\xc7\x11\x3c\xb1\x29\x94\x2e\x03\x45\x0d\xb7\x0d\xf6\x4a\x3a\xba\xa8\xea\x81\x9b\xbd\xe0\x83\x13\xfd\x42\x2f\xb7\xe0\xf1\x4f\xdc\xe5\x4d\x0f\x27\x1d\xdf\x2d\xa0\xa9\x38\xca\x8b\x98\x4e\x27\xc7\x48\x01\x7c\x2d\x5f\x37\x96\xe4\xec\x6c\xd7\x24\xab\x2b\x06\xea\x55\x8e\xea\xd1\xd3\x3e\xaa\x29\x2a\x6c\x6c\x97\xa3\x9c\x8d\x94\x6a\x7f\xf3\x9d\x85\x0d\xbe\x93\xfd\xdd\xa5\x28\x1f\x6e\x52\xa9\xbb\xab\xe4\x2b\xc0\x5e\x2a\xcc\x02\x3e\x12\xcd\x0b\xb3\x43\xe3\xea\x95\xcf\x0e\xc7\x17\x96\x99\x29\xd1\x71\xa6\x72\x8f\xad\xd3\x91\x3c\xbc\x8f\x8d\xb9\x58\x0b\x01\x69\x34\x7d\x88\x85\xee\xd0\xc6\x63\xca\xf4\xc3\xf5\x07\x9e\x1e\x73\xfa\xa0\x86\xc9\x6d\xd1\x66\x74\x00\x0f\xfa\x7d\x26\xc0\x0a\x7c\x4b\xc5\x19\x37\xa7\x23\xa2\x3d\x01\x2e\x80\x21\x95\x8a\x14\x6f\x5d\x81\xc3\x4f\x07\xfa\x1c\x3f\x16\x71\xde\x45\x56\xb6\xaf\x58\x54\x81\x85\x73\xa6\x8a\x2c\x25\xde\x7c\x0c\x37\xce\xc3\x0d\xc5\x1c\xf8\x91\xca\x52\x3d\xb9\xe6\x71\xb0\x83\xcc\x26\xa6\x6f\x3a\x8a\x98\xb0\xd3\xf3\x95\xd8\xce\xda\x6e\x89\xd6\x8f\xcc\xff\x46\x67\x41\xd0\x9d\xbf\x22\xfe\x33\x4e\x36\x52\x1a\x72\x83\x24\x16\x0e\x6e\x30\xd3\x02\xc6\x7f\xdb\x9a\xcf\xb6\xdc\x26\xbf\x01\x5f\xcb\x75\x7b\xc4\x33\x20\x37\x80\x9f\x72\x8e\x32\xa2\x62\x47\x3d\xee\xfa\x22\xa2\x53\x61\xc1\xa0\xed\x8d\xc3\xee\x89\x9e\x4a\x6d\xdf\x08\x14\x59\xd2\x71\x18\x2c\x18\xbf\x0b\xf0\x93\x51\x11\xfb\x48\xd5\x53\x4e\xc3\x74\x0b\xcf\x04\xd6\x0b\x02\x8f\xa9\x35\x9c\x51\x5c\x2a\x27\xaf\x1b\x8f\xb9\x1d\x52\xc9\x78\xe4\x1f\x53\x18\x8e\x09\x7f\x5b\xe5\x80\xff\x79\xa0\xf0\x95\x0f\xa8\x8c\x29\xe6\xba\x65\xbb\x98\x24\x29\xa3\x82\x4e\xd0\x0d\x78\xbe\x1b\xd7\x55\xe4\xb8\x64\xe2\xc2\x82\x57\xb9\x7a\x29\xd1\x97\xf4\x66\xe1\x62\xf0\x94\x46\x50\x9b\x81\xcd\x76\xaa\x72\xe6\x1f\x50\x40\x05\x04\x2e\x08\x5d\xf8\x1a\xaf\xcf\x04\xfd\xb4\x75\x50\xa2\x79\x77\xe2\x71\xc6\x53\x55\x2c\xb5\xb1\x8e\x49\x13\xce\x7f\x5f\xe8\x48\x9e\x5f\x7d\x9e\x8a\xe2\x18\x28\x34\x17\x02\x7e\xf2\xa6\xd2\xf6\x7d\x53\xb7\x9a\x5f\x55\x84\xa8\x79\x39\x18\xd8\x5c\xd8\x97\x38\x1f\x32\xd1\xb9\x91\x96\x62\x61\x9e\xc6\x54\xaf\x15\xf2\x73\x4e\xea\x63\xa7\x3f\x52\x5d\x52\x1b\xd5\x37\x6d\x5c\x57\x8d\xcc\xaf\xa4\x65\x96\x98\x78\xbb\x17\x49\x44\xea\x53\x2a\xeb\xf4\xad\x72\x1a\x2a\xf2\x32\x86\x87\xb9\x9c\x86\xf3\xc3\xef\xea\x76\x98\x61\x4a\xd6\xc4\xad\x61\xc7\x75\x73\x41\x2b\xc3\xdc\x0b\x3e\xa5\xde\x7f\x6c\xb3\x70\x68\x32\x4a\x2c\x3b\xd9\xf2\x5f\xd2\x2f\xf0\xb5\x2e\xb7\xc7\xe9\x0a\x0a\x15\x4e\x09\xc9\x39\x39\x57\xd4\x6b\x26\x76\x00\x0a\x58\x97\xfd\x03\x86\x83\xaf\x1b\x87\xf6\xcc\xa1\x6e\x94\x71\x16\x54\x17\x2e\x24\x3c\xd1\x0d\x72\x36\xb7\x49\xb1\xbd\xb2\x07\xee\x9b\x8f\xcc\x3b\xcf\x46\x55\x3c\x8f\xc3\x51\x10\x3f\xc7\x47\xf2\xc7\x69\x82\xe5\x59\xbc\x1b\xb7\x44\xdf\x1d\x95\x70\xe3\xa4\xe9\x5f\x39\xee\x17\x15\x5d\x46\x6c\x16\xd3\x6c\x47\x65\x57\x98\xb0\x9d\xe6\x51\xf2\x89\xaa\xf3\xf3\x2d\x38\x45\x4e\x48\xfe\x88\x13\x09\xb9\xa0\x9a\xb2\x2f\x04\x8a\x6e\xa4\x05\x68\x3e\xdf\xb5\x49\x65\x67\x1d\x10\x10\xce\xf1\x03\xc5\xc6\xf9\xa0\x71\xc6\x90\x7e\x55\x34\xa0\x6a\x09\x1b\xe0\x5f\xa9\x82\xd0\xaf\xda\x3e\x60\x92\x41\xb6\xaa\x7a\x65\xae\x2a\x04\xfc\xd5\xc6\x07\xf6\xef\xef\x2e\xa7\x11\x37\xcc\x20\x19\x09\x1d\x75\xbe\xf6\x59\x3a\x52\x50\x9e\x56\x64\xa0\xc0\x37\xc3\x14\x20\xd5\x06\x07\x8c\x41\x37\x88\xfe\x7e\xa1\xdd\x77\xb3\x18\x25\x96\x3b\xee\xe1\x25\xe2\xf5\xf9\xba\x71\x4a\x2a\x7d\xd6\x29\xe5\xb2\xfe\x78\xb2\x39\xa1\x25\xf2\x4c\x2a\xe5\x64\x97\xc3\x14\xd4\x7f\x52\x85\xab\x95\xe4\x3a\x73\xbe\xec\xaa\x00\x1a\x57\x83\x06\x39\xa9\x5c\x2b\x4e\x9b\xcc\x2e\x9b\x28\xee\x28\x61\x7d\x76\x69\x04\xd9\xa3\xb8\x63\xcd\x0a\xf8\x01\xd1\xde\xc4\x40\x1a\x87\x65\xac\x7e\x19\x35\xbc\xd3\xad\x2a\x3d\x12\x2a\x68\xe4\xa4\x48\xc9\x7d\x1c\xfd\x41\x58\xb9\x80\x69\x3e\xe5\x4b\x1a\xef\x6b\x92\x99\xdb\x3a\x37\x78\x5e\x4d\xcf\x2b\x66\x64\xe0\x90\x54\xcb\x1d\x1b\xe6\xac\x16\xf8\x39\xdb\x88\xdd\x16\xf6\x75\x0d\xe1\x85\x2b\xe3\x0b\xa0\xd1\x16\xf2\x00\xb0\x67\x6f\x4c\x6a\x1e\xd8\xe6\x07\x3e\x32\xff\x69\x51\xed\x75\xbb\x42\xa4\xeb\xfc\x72\x7a\xa8\x5a\x5c\xd8\x2c\x55\xbe\x8a\xae\x1d\xb3\x8a\x01\x36\xe5\xc9\x89\x2e\x17\x7e\x52\x1d\x6c\x51\x92\x17\x99\x35\x23\xc2\xcd\x38\x54\x90\x53\x2e\x06\x81\x13\x4e\x2d\x1c\x73\x7c\xdd\xa2\xba\x32\x2f\x41\x00\xfd\xb0\x78\xa2\xca\x2b\x55\x27\xaa\x5d\x5a\x4a\xb3\x22\xdf\x59\x77\x27\xeb\x90\xa7\x85\x7d\xed\x34\x33\xd5\xf0\x31\xc6\xad\x46\x34\xac\x52\xcc\x67\x27\x3e\x5b\xf2\x44\xaf\x45\xe2\x78\x65\x98\xc6\x36\x37\xcc\xfd\x21\x82\x91\xd5\xb7\x49\x3b\xc2\xc7\xad\xa4\xbc\x24\xa6\x76\x55\xe7\xe3\x2a\x3d\xdf\x34\xcc\x1c\x71\x23\x8d\xc6\xe4\x50\xda\x6c\xaa\x4e\xf2\xe8\x7a\x02\xbe\x8b\x2f\x11\xd1\x9e\x36\xce\xde\xc5\xac\x8a\xad\x0b\x2c\x45\x26\xf9\x0e\xfc\xf1\xd6\x94\x57\x3e\xbc\xef\x85\x6e\x61\xb2\x68\x69\x89\x96\x11\x8a\x2f\x6f\x07\x0a\xd5\xf0\xb6\xce\x20\x46\xcb\x51\x1c\x99\x04\x31\x8f\x40\x45\x68\xb4\xf9\x46\xbb\x28\x69\x16\x4e\x53\x28\x0d\xa7\xe0\x66\xa0\x20\xc8\x37\xe9\xbd\xe0\x27\x9f\x40\x80\xc9\x37\x6d\x98\xcf\x4f\x77\x29\x67\xd3\x51\x15\x76\x08\xcb\xf0\xb5\x02\x5e\x84\xa3\xbc\xa3\xce\xc2\xb3\x1a\xf1\x73\x56\xa5\x2e\x46\x69\x56\x05\x4b\x05\x33\x26\x61\xcf\xdc\xe1\x0c\x93\x40\x2e\x55\x14\xf0\x01\x72\x54\x2c\x09\xaa\xda\x5c\x16\x33\x93\x84\xc3\x5a\x63\xe8\x1f\x29\xd1\x72\x2e\x1e\x4a\x4b\x57\x4b\x8d\xcd\xf4\x5f\x29\xf3\x02\xd5\x18\x38\x2a\x5b\x08\x74\x28\xad\x37\xf4\x02\x92\x52\xac\x96\x22\xfe\xe8\x97\x6d\x79\x6f\x8a\x4a\xa2\xc5\xb2\x10\xfa\x53\xcd\x01\x21\x89\x00\xfa\x42\xe1\x81\x6a\x21\x98\x5f\x8a\x16\xd9\x29\x62\xb9\x1f\xbc\x82\x68\xff\x28\xdd\x91\x34\x59\x8e\x84\x9c\x4a\xe4\x4f\x94\x92\xce\xdd\x26\x61\xc8\xfe\xee\x38\x4a\x70\x6a\xba\x4a\xb1\x96\x1c\x7b\x5a\x25\x65\xfa\x51\x18\x25\x16\x3a\x0c\x52\xcc\xf0\x99\xc7\xf3\x81\xc2\x44\x41\xcd\x53\x29\x97\xce\xb8\x52\x08\x2d\x3a\xd4\x49\xcf\x20\xb3\x23\x24\x78\x2d\xaf\xbe\x6c\x73\x69\x72\x11\xbf\xa5\xa3\xc8\x17\x6a\xd9\xde\xcc\x4e\x53\xd8\x85\xb4\xf2\x1d\x50\x0e\xf2\xcd\x44\x75\x68\xf0\x06\x11\x74\xdc\x26\xa6\xa8\xe7\x9e\xeb\xee\x9f\x51\x26\xfc\x82\x32\xe1\x17\x5a\x50\xa2\x33\xd5\x31\x3a\x48\x4c\x52\x4c\xd1\xcb\x08\x53\x6b\xf5\x29\x69\xa4\xe9\xb8\x0e\xd7\xf7\xbd\x1f\x92\x99\xbc\xda\x41\xd5\x98\xc1\x3f\xdb\xd0\x5a\x55\x1b\x0e\xcc\xb9\x98\x09\x09\x2c\x06\xed\x24\xde\x05\xc1\xe5\xdf\x0f\x94\xc0\xdf\x07\x0d\x13\x44\x58\x8d\xd1\x38\x4e\x57\x59\x62\x0f\x48\xbe\x8f\x54\x03\xd0\x35\x45\x06\xd1\x0c\xca\x3e\xa3\x38\xe2\x3c\xab\x29\xf3\x8e\xf0\x4d\x8b\xae\x9f\x4b\xc5\x28\x82\xf8\x8b\x8a\x0d\xe2\x62\xa3\xb6\x7d\xe8\xa5\xee\xa2\x2d\x0a\x9b\x51\xab\x02\xfc\xc8\xed\x6b\xaa\xd3\xe1\x4a\xe0\xcf\xe6\xd3\x81\x4a\x55\xde\xd2\x61\x41\x14\x8f\xf2\x29\xdd\x90\xab\xd4\xfd\xcf\xab\x4c\xc6\xa5\xb6\xae\xbb\x94\x02\x90\x7e\xde\xa9\xce\x4c\x95\xf3\x3d\x28\x37\x4d\x21\xe9\x97\x0e\x76\x6d\x1c\x15\x76\xba\xa3\x28\xa8\x7c\x82\xe7\x86\x76\xa7\xb6\xf4\x14\xbd\xec\x1f\xb6\x35\x24\xe6\xbf\x13\xe7\xd3\x0a\x2c\xb2\xad\xe7\xb9\x96\xae\x29\xe0\x31\xe7\x7a\x64\x02\x15\x75\x5e\x1c\xf5\x51\xcb\x73\x4d\xb3\xce\x1d\x3e\x3b\xd9\xb4\xd2\x67\x67\x0f\x76\x3f\xdb\xf1\x28\xa2\xb7\xb4\x43\xf5\x56\x63\xa9\x73\x8b\x5b\x52\xa4\xd9\x2a\xf2\x72\x08\x5c\xf0\x60\x7c\x1d\x3c\xab\xba\x40\x92\xc4\x9a\x71\x1a\x47\x22\x57\x21\xe1\x19\xfd\x8c\xc4\x6d\x2d\x65\x91\xa1\x89\x85\x93\x10\xa6\x15\xb8\x27\xbe\x56\xaf\xbb\x64\x97\xab\x05\xe3\xe0\xd4\x57\x6b\x72\xf6\xd5\x2c\x0a\xc9\x71\xb5\xa8\xf8\xdf\x27\x1e\xfb\x10\xa7\xc5\x2e\x4f\x1c\x84\x9d\x20\x3b\x5d\xf7\x8f\xc0\x86\xe2\x06\x65\x0c\x54\x26\xee\x69\x34\xe3\x49\x9c\x9a\xa2\x47\xe5\xcb\x0d\x00\xbc\x62\x0d\xdc\x68\x12\x16\xef\xef\x86\x69\x96\x95\x03\x23\xe4\xa1\x22\xcd\x4f\x3b\x9b\x6f\x5c\x1d\x76\xc5\x1a\x66\xa1\xc4\x0f\x75\x7a\x3e\xb8\xee\x80\xfc\x4d\x70\x8c\x9b\x57\xf8\xec\x6c\xe5\x42\xa5\x63\x97\x57\x75\xe9\x34\x97\x77\xbb\xac\xce\xd1\x7e\x9a\x8e\xb8\xeb\xa4\xc9\x4f\x0c\xc7\x56\x84\xd5\x14\x8c\x60\x68\xb3\x45\x0b\x17\xd8\xd1\x35\x2b\xbd\x5a\xf7\x1a\xc6\x31\x2f\xe2\x24\xfe\x60\xa2\x54\xe3\x3e\x08\x36\xf3\xb0\x3f\xdf\x5d\x31\xab\x1d\xe5\x05\x9d\x51\x82\xe0\x67\xda\xfa\x9a\xab\x9d\xbc\x62\x32\x1c\x6d\x28\x1b\x5e\xd4\x9d\x32\x17\x1d\x4c\x6d\x6c\x4d\x68\x8b\x68\x64\x71\xe4\x4b\x03\x91\xcf\xab\x03\x6f\xe2\x34\x76\x0e\xcc\x71\xea\xbb\x49\xa1\x75\x64\xe6\x50\x37\x89\xc6\x63\x91\xad\x75\x44\x02\xbe\xcd\xe8\x4c\xc3\x5c\x2e\xec\xeb\x8e\xca\xbc\x30\x99\x2e\x80\x5d\x51\x05\xb0\x2b\x2d\x84\xed\x73\xdd\x38\x5d\xa1\xbf\x47\x0d\xf0\x92\xef\xe4\xda\x7f\x29\x78\xb6\xbe\xd3\x17\xf6\x55\x96\x6a\x7b\xb5\x0c\x1d\x6d\x82\xb7\x91\x9a\x95\x03\x54\xef\x2e\x16\xf4\xe4\x18\xcc\x32\x28\xc4\xb6\x9b\x1f\xe8\xc0\x5c\x77\xd1\xe4\xbc\x69\x05\xad\xae\x61\xec\x5a\xb3\x25\x8d\x2d\x27\x74\x59\xf2\x9f\x4c\xbb\xc8\xff\x6f\x02\x99\xce\xcd\x1d\xec\x1e\x59\xd8\xb7\xa3\x1a\x76\xa6\x8a\x0a\x94\x56\x07\x9a\x1d\x45\x82\x84\xde\x4a\xe6\xd7\x67\xdd\x1e\xe3\x4d\x54\x16\x74\xde\xf5\x1b\x78\xc4\xfb\x12\x22\x32\xec\x0d\xe4\xc4\xce\xaa\x6a\xc0\xd9\x66\xce\x61\xa6\x3b\x32\xab\x26\x99\xd6\xef\xa2\x02\x92\x69\xd5\x32\x70\x62\xa2\xd2\xe3\xb7\xbc\x8e\x4e\x12\xa6\x03\xeb\x40\xcc\xc8\xeb\x9f\x42\xa2\x97\x6f\x1a\x16\x83\x64\x8a\xc2\x61\x94\x44\xb9\x03\x3d\x0a\x2a\x5f\x41\xf1\x76\x82\xb9\x0c\x86\x79\x6b\xa3\xad\xaf\xfa\x58\x37\x0f\x87\xb6\x5f\x3a\x84\x26\x42\xb7\x3b\x3a\x31\x7d\x47\xa9\x2c\x87\x43\x9b\xad\xc6\x94\xa0\x14\x30\xa2\xc2\xc8\x5e\x51\x73\x4c\xd1\x41\x4e\xf4\x1b\x0e\x26\xe0\xc8\x72\xd9\xb2\xc1\x34\xaf\x4f\x14\x43\xf1\x31\x34\x23\xb1\x54\xba\x6e\x4e\xbf\xa7\xa4\x6b\x51\xee\xc6\x77\x5d\xa0\xed\x28\x09\x4f\x9a\x58\xa0\x50\xb6\xc2\x16\x4a\x39\x81\x9c\x17\xa7\xae\x55\x79\x15\x0e\x3a\xe2\x71\x65\x27\x3c\x7c\xae\x1c\xd8\x18\x65\x21\x3c\xff\x46\xe0\x21\x0f\x1b\x0a\xee\xb1\x1c\x9b\x7e\x34\x8a\xe0\x9d\xc3\xcd\x78\x57\xb3\xfc\xbc\x1b\x74\x5b\x5c\x32\x52\x72\x89\xd2\x24\x1f\x46\x63\x9e\x79\x86\x29\xab\xdc\xdd\xb5\x3a\x0b\x6c\xf2\x2a\xfe\x10\xeb\xf6\xaa\x66\x9f\xba\xaa\x38\x3d\x8e\xda\x64\x94\xb2\xd5\x13\x71\x15\x7a\x1e\xbe\x69\x3b\x6f\x57\x22\xd7\xe7\xc6\x29\x0e\x45\x21\x7d\x4d\xa3\x9a\x87\xe9\x4a\x68\x72\xf4\x5a\xe0\x64\xfa\x11\x4d\x00\x5f\xb7\xc1\xd1\x96\x70\x98\xfb\xa6\x3c\x56\x51\x11\xb1\xbb\x66\x19\xbd\x9b\x59\xd3\x67\x00\x8d\x96\x46\x97\xd0\xa9\x19\x67\xa3\xfb\xca\xed\x5d\x06\xfd\xd2\x4b\x08\x00\xb8\x4d\x1c\xbf\x6f\x13\x56\x2c\xe1\x7e\xa3\x40\x31\x4a\x36\x71\xa5\xb3\xb3\x0b\xdd\x38\x4d\xb9\xc5\xdf\x35\xb3\x3a\x0f\xed\x44\xe0\x65\x05\xfa\x51\xce\x19\x21\x7e\x2a\xaf\x07\x56\x13\x0a\xdb\xbc\x3a\x5c\x8d\xf5\x95\x28\x49\x47\x69\x91\x4e\xf9\x38\x02\xfc\x2f\x30\x7b\xff\x1e\x93\x8a\xf9\xff\x30\xf0\x0b\x72\x54\x26\x95\x69\x18\x74\x54\x2b\x20\x10\x41\x7c\xad\x12\x02\x2b\xc4\xd4\xb4\x7f\x66\x83\x95\x68\xb8\x76\xae\x93\x0d\xaf\xb5\x28\x11\xcd\xd4\x95\x88\xe0\xf5\xde\x51\xdd\xed\x77\x02\x4f\xac\xba\x64\x6d\xbc\xb7\x1a\x23\x00\xc5\x76\x01\xe1\x8f\x4c\xf5\x83\x89\x3a\x70\xaf\x02\xe1\xa9\xab\x9c\x38\x65\xb7\x50\xc9\x1e\xe9\xa8\xd7\x26\x4a\x81\xe7\xbc\x4a\x18\x01\xd3\xaf\x69\x1b\x58\x95\x7a\xa2\xea\x35\x3f\x9c\xd4\x7a\xe9\x3d\xb5\xf9\x54\x6f\x8f\xf7\x60\x9e\x9f\x22\x48\x3f\x3d\x81\x12\x4d\x15\xee\x87\x0d\x45\xcf\xb9\x6c\xe2\x12\xc1\x59\x1d\x0e\xc9\xbc\x2e\xb4\x00\xc5\x45\x69\xc9\x8a\x8e\x04\x4a\x25\x72\x32\xbe\xb5\xf1\xdc\x64\x57\x54\x05\x96\x4b\x7f\xb5\xbb\xff\x37\xe9\xa9\xa5\x8f\x8d\x86\x0c\xe3\xbc\x67\x4d\xb9\xe1\xe7\x6a\xe9\x5f\xaa\x33\x22\x4a\xfe\x48\xd3\xbe\x5f\x47\xe4\x84\x48\x72\x3b\x75\x36\x0b\x2d\x64\xe7\x45\x69\x13\xde\xd5\xdb\xfa\x69\x27\xd2\xdd\xf9\xfc\x11\xde\xab\xdf\xa7\xf1\x96\xd6\x9a\xce\xfe\x19\xb6\x87\x53\x6b\x9d\x2f\x7e\x81\xed\xf1\x15\x40\x70\xf1\xfd\xf7\x95\x84\xca\xdb\x94\xae\xd9\xb8\x0e\x0b\x2f\x53\xee\x37\xcf\x93\x6b\x53\x47\x14\x6f\xd0\xd4\xc1\xbf\xf1\xa2\x08\x60\xd3\x4c\xa0\xe0\x74\x0a\x60\x0c\x21\xac\xc6\xd9\x47\x5e\xe8\xdf\xfd\xed\x5e\x67\xff\x7e\xaf\xa3\xa7\xc8\xa7\x14\x68\x91\xa9\xac\x69\x28\xff\xdc\xff\xbf\xd7\xd4\xaa\x05\x2d\x5e\x61\x06\x42\x6c\x01\xcb\xf6\xb6\x06\xac\xbd\xed\xa8\xf7\x58\x69\x44\x72\x3b\xc8\x2e\x23\x27\x82\xd3\x93\x1d\x0f\xe4\x5f\xf7\xf4\x5a\x3c\xf2\x7c\xc5\xda\xb1\xab\x59\x63\x93\xdc\x54\x59\x95\x0d\xd5\x2d\x7a\x56\xab\x96\x8d\x22\x47\xbe\x81\xe1\xf8\x7a\xa0\x3a\x1e\xbe\xae\x92\xcd\xb9\xa5\x5c\x33\x29\xcf\x57\x7f\xee\xc0\x28\xd5\xa3\xc9\x20\x39\x95\xe3\x62\x18\x5b\x6e\x89\x40\x62\xf3\x3a\xcd\x22\x5f\xab\x16\xb9\xaf\x94\x76\xd1\x86\x0c\x32\xc7\x54\x9d\xa6\xd5\xc2\xd7\xca\xd7\x2f\xc2\xe1\x36\x7a\x38\x97\xa0\x9e\x13\xc6\x75\x16\xdb\x75\x8d\xfa\x0e\xe5\xf2\xdd\x40\xc9\x17\x9d\x57\xbf\x9b\xc7\xb6\x4f\xe4\x0d\xd5\xdf\x4a\xbc\xe0\x9f\xe1\x83\x36\x72\x97\xa1\x8d\x46\x36\x93\x38\x14\x23\xcb\x4d\x21\x7c\xe3\xb8\x94\xa9\xcf\x83\x92\x25\x1b\x28\x0c\x31\x6d\x7f\xe0\x53\x88\x6f\xb6\xb4\xdb\x7c\xb9\x1b\xc6\x69\x4e\x2d\x07\x1b\x6b\x4a\x60\xf4\xc2\x44\xf1\xdc\x36\x5c\xff\x99\x43\xdd\x38\x8a\x21\x55\xe3\xfa\x29\xdf\x53\xfc\x6d\xef\x4d\x76\x7b\x2d\x01\xf6\xf5\x84\xd7\x57\xc1\x0e\x39\x69\x07\x67\x7b\x5d\x25\xed\xc6\xe9\xb8\x8c\xd3\x92\x12\x31\x07\x1d\x1c\x95\xf2\x10\x82\x47\xf5\xc1\x5b\xdf\x8e\x6d\xd2\x87\x30\x45\x5b\x14\x52\xbd\x09\xd3\x54\xe1\x8c\x10\xce\xaa\x36\xe1\x8d\x71\x99\x0f\x3b\x8a\x89\xf7\x94\x4a\x9c\x9f\x52\x07\x84\x49\xfa\xab\x1f\xdf\xe7\xf9\x29\xa5\x70\x50\xd8\x6c\x64\xfb\x91\x29\x40\x9f\x03\x58\x33\xab\x08\xf2\x8d\x02\xa3\xd6\xf4\x5e\x9a\x24\x4b\xe4\x66\x2c\xa5\x04\xc0\x54\xdd\x49\xd7\x54\x65\xaa\xee\x80\x0d\x4b\x68\x5e\x8b\x6e\x6c\x65\x3a\xf9\x5a\xf5\xbf\x46\x49\x3f\x5a\x8e\xfa\xa5\x89\x51\xb7\x92\x2c\xbc\x96\xc8\xa2\x81\x10\x9a\x25\x4f\x68\x18\x9b\x24\xb4\x9c\xa6\x13\xe9\x7f\x45\xe4\xc5\xa2\x51\x38\x91\xee\xbb\xcd\xb5\x9c\xf6\x8f\x32\x8c\x17\xf9\xe0\xbf\x3d\xf1\x89\xe2\xbf\x5d\x83\xd1\x8c\x6d\xff\x19\x3a\x63\x99\x99\xb4\xe7\x0a\xe1\x5f\x7d\x86\x74\x54\xe4\x99\x54\x82\x7c\x67\x4f\x41\xab\x41\x36\x82\x50\x1e\x44\xea\xc0\x94\x3e\x89\xc4\x16\x6e\xbe\x85\x09\x41\xa2\x71\x0a\x1c\x13\xee\x8c\x3e\x20\x7c\x08\x60\xa1\x84\x6f\x0f\xd1\x18\x94\x8a\x4e\x72\xc2\x1f\x8f\x78\x2b\x50\xda\xc4\x3b\xd0\xf9\x20\x96\x82\x96\x16\xe2\xac\x0e\x34\x64\xb0\x06\x6e\x3b\x44\x90\xe9\x2f\xdb\xac\x88\x72\xbf\xf1\x51\x81\xe2\xc0\x82\x6f\x1a\x48\x67\x74\xe1\x9a\xbc\xcc\x9c\x43\x09\xff\xeb\x6d\x1a\x59\xbe\x56\x2b\x78\x64\x22\x0e\x01\xa5\x7c\xe2\x67\x60\xaa\xe7\xab\xdc\x5b\x21\x7f\x08\x1b\x78\xba\x96\x34\x49\xb3\x42\x20\xe3\x22\x01\x48\x2f\xcb\x37\x0a\x0d\x3a\x34\x31\x75\x4f\x55\x63\x8c\xca\xcd\x79\x1c\xe9\x7c\xa3\x90\xfd\x76\x64\xb3\x81\x25\xec\x2f\x80\x94\xeb\x34\xe8\xf0\x85\x78\x96\x59\x62\x5e\x23\x0a\x1f\x29\x4a\xd1\x47\x0a\x94\xf6\xbf\xfc\xcf\xff\x23\xf6\xa9\x83\xfc\xef\x9f\x91\x6b\x05\xe7\xb5\xc7\x8a\x8c\x48\xf7\xa0\x3b\x88\xb9\x7b\x07\x43\xee\x04\x66\x5c\x8f\xd8\x6d\xb7\x01\xcc\x20\xb1\xb1\xcf\x15\xc2\x5b\xdd\xdb\x53\x0a\x3a\x7b\xd7\x84\x1b\x82\xb8\xfd\xa3\xb0\x90\xe6\x3a\xc1\x41\x3d\x98\x68\x3c\xf0\x83\x46\x38\x02\xb6\x92\x84\xcb\x71\x1c\x66\x2a\xc3\xde\x8c\xb5\xab\xc5\xb0\x58\x46\x71\x75\xe0\x70\x88\xc4\x84\xf3\x34\xc9\x42\x3e\xef\xe9\x26\xa2\xe2\x37\x2a\x3f\x04\x91\x2a\x7c\x4c\xbc\x35\x7b\x5e\xf2\x43\x3e\x9c\x7d\x4c\x00\x4a\xd8\xd8\x8f\xe0\xdf\x30\x5c\x29\x50\xd0\x9e\xeb\xea\x50\xb8\x8d\xd1\x84\x8b\xf1\x70\xa2\xca\xf7\x4f\xf4\xbc\x2c\xc9\x3b\xa4\x4a\x21\x64\xef\x95\x8b\x26\x7c\x05\xaa\x80\xf3\x2e\x96\x81\xb8\xc1\x84\xcb\xe4\x7d\x4c\x68\x16\x8c\x3c\x37\x3c\x41\x23\xea\xa9\xb5\x6a\xe2\x5d\x2b\xed\x8b\x33\xfc\x01\x28\x58\xc2\x4f\x78\xc4\x2d\x56\xd8\x2c\x5b\xd7\x14\xc7\xc8\xdf\x53\xcc\x72\xdf\x04\x95\x11\x5a\x9e\xd8\x8a\xe0\x3c\xde\x0e\xd7\x56\x74\x85\x37\xe7\xa2\x3f\xd3\x1d\x45\x61\x96\xae\x98\x65\xf1\x81\x84\xc8\x57\xb3\xfa\x06\xde\xab\x4f\xd2\xa7\x3c\xf0\xf7\x96\xe6\x89\x65\x4a\x72\x24\x50\x90\x34\xc6\x4b\x7f\x14\x28\x57\x76\x4f\x4f\xb3\xe0\xeb\xb6\x80\x5f\x60\x6c\xd0\xa5\x70\x93\xd2\x14\x80\x92\x7c\x1b\xd3\x07\x43\x78\x8f\x3c\x23\xb1\x83\x54\xb9\x44\xf5\x64\x0a\x28\x3a\xd7\x51\x7a\x58\xa4\x42\x05\x5c\x2f\xfe\x9c\x2f\xcf\x7e\xb7\x15\x95\x93\xd9\x30\x1d\x24\x4e\x77\x52\x99\x49\x9f\xc6\x16\x46\xe7\x57\x6c\x31\xad\x28\xfe\x2f\xaa\x23\x63\x67\xcf\xe7\x11\xef\xe8\x4c\xc6\x65\x85\xaa\x1a\xa5\x59\x1a\x86\x69\x47\xf7\x3c\x72\x90\x24\x9e\x4e\xb3\x50\x36\xdf\x8d\x12\x7d\xe0\xb2\x30\x7b\xe0\x53\xde\x17\x1c\xe5\x74\xdc\x47\xaf\x0d\x1e\xfc\xfd\x89\x52\x3d\x7a\xdf\xb7\x45\x98\x57\x5f\xf5\x70\x4f\x9c\x25\x3b\xd7\x3c\x0e\x62\x37\xa5\xdf\x30\xfe\xbf\x6c\xaf\x62\x17\x51\x11\x5b\x94\xf7\x25\x8a\xf2\x58\x20\xe4\xb8\xa5\xfa\xd2\xe6\xf2\x1d\x35\x99\x85\x3c\x87\xf0\xf7\xd0\x83\x0a\xd0\x41\x45\xda\x51\xc2\x85\x1d\x47\x9f\xe1\x80\xd6\xc8\xdc\xba\x66\x44\xb7\x39\xb6\xf5\x14\x37\xe9\xd0\x1c\xb5\x69\x09\x04\x03\xbe\x42\xb3\x71\x3c\x74\xee\xc0\x52\x9c\x9a\x62\x3b\xed\x2a\x9c\xe6\x3f\x9f\xa8\x3e\x97\xab\x41\x65\x06\x30\x8e\xf8\x29\xec\x49\x40\x2f\x10\x22\xfd\x4d\x85\x56\xbc\xd4\x98\x46\x06\x46\x54\x21\x02\x4f\x23\xb2\xad\x68\x03\xe2\xeb\xc9\xaf\xd7\x84\x22\xb3\x71\x66\x0b\xe4\xbb\x30\x55\xcc\x87\xa7\x8a\x90\xaf\x4f\x3c\x5e\xf8\x0f\xdb\x1c\xf8\x62\xa8\x70\x14\x80\x20\x21\xd4\xe6\xeb\xb6\xfe\xfc\x38\x4d\x85\x66\xca\xf1\xce\x79\x46\xd0\x53\x4a\x26\xd7\x2e\xdb\x6c\x75\xa7\x02\x26\x5c\x55\x22\x53\xdb\xa1\xbe\x00\x23\x07\xc2\x34\x17\x71\x57\xdf\x8d\xc0\x7f\x43\xc3\xf3\xa6\x88\x57\x99\x4d\x02\x4d\x35\x1d\x01\x5f\x7b\xa6\xa7\xa0\x1b\x43\x3b\x8a\x42\x13\xe7\x3b\xab\xbf\xe5\x0a\x25\x79\x48\x52\xad\xa4\x6f\xc7\x17\xde\xd4\xad\xd8\x1f\xf0\x29\x87\x74\x0d\x7c\x5e\x6c\x58\x90\x13\x21\xb8\x66\xc2\x7d\x91\xa8\x6a\x23\x45\x1f\xa5\xcb\xb6\xc6\x6f\x75\x4d\x65\x20\x74\x7f\x42\x99\x8c\x63\x93\x24\x6c\x5a\x10\x7f\xa0\x10\xcf\xd7\xca\x03\xa6\x60\x33\x8b\xc2\xa8\x60\xb7\x9e\xc1\xcb\xfc\xd0\x02\x65\xf6\x59\x65\x00\x75\xa7\x14\x4e\xf9\x6d\x5a\x8e\x32\x13\xb4\x98\x91\x75\x68\xb6\x44\xbf\xfc\x72\x37\xb7\x51\x3e\x4c\xa9\x6c\x2c\x2c\x36\xaa\x3b\x61\xe2\x1b\x00\x4e\x13\x96\x1a\x0e\xc9\x54\xcf\x57\x11\xcd\x20\xb3\x60\xc8\xab\xf3\x79\x70\x86\x18\xb3\x2c\xe9\x62\xdf\x7d\x72\xa1\x91\xbc\x3b\x30\xc7\x30\xd6\x34\xe9\x97\xae\xff\x1a\x8e\xf4\x37\x15\x7b\xed\x37\x15\x89\x64\x5a\x16\x63\x53\x44\xce\x29\x11\x30\xa8\x02\xa9\x6a\x69\xb4\x61\xca\x30\x3c\xe9\xb9\x52\x11\xc2\x4f\xb5\x6c\xb9\x42\xd6\x0c\xd3\x2c\xb7\x43\x6b\x98\x4c\x1a\xc6\xed\x35\x4d\x8f\x7e\x82\xdf\x58\xe0\x71\x2d\xc5\x79\x9b\x87\x66\x0c\x60\x89\x10\x53\x76\x1c\xdf\xdd\x45\xc5\x0c\xb3\x32\x4c\x41\x60\x04\x9b\x7e\x52\xd9\xf7\x93\x2e\xcb\xb0\x94\x66\x36\x1a\x24\xd4\x01\x0c\x1f\x7e\x6a\x4d\x81\x32\x4e\x28\xc0\xe2\x8e\x5e\xad\x69\x86\x9e\x1a\x05\x87\xfb\x7c\x42\x4a\x91\x6d\x73\x5f\xed\xa1\x97\xba\x8b\xe5\x2a\x8d\x96\x13\x23\xaf\x7e\x43\x6a\x91\xd5\x5e\x13\x54\xf2\xe6\x13\xd5\x49\x30\xa5\x49\x31\xe4\xbe\x57\x80\xc5\x80\x05\x42\x29\xe1\xb8\xee\xb9\x78\xe0\x8a\x3a\x79\x19\x86\x36\x5f\x2a\x41\x72\x06\x47\x17\x95\x24\xbe\x6e\xab\xfd\x2f\x9a\x84\x83\x3f\xd4\x7d\x6e\x61\xff\x23\xc4\x3e\xa9\x8e\xa5\x33\xce\xd8\x97\xcf\xe7\xcf\x9b\x8e\xef\x0d\xbf\x56\xeb\x87\x52\x0a\xc4\x23\x3b\x4c\x57\xb6\xd5\x54\x1a\x5d\x4a\xf6\xaf\xff\x85\x9e\xaf\x71\xed\x5a\x53\x76\x06\xf9\x55\x2f\x9b\x22\xdf\xb6\xba\x68\x4d\x92\x83\xb0\x44\x20\x0f\x98\x09\x24\x6b\x2e\x2b\x32\xd2\xc1\xd3\xbd\x8e\x92\x13\xa4\x6f\xc7\x26\xbf\xaf\xec\x6f\x68\x92\xfe\x2a\x70\x5f\x32\x42\xf4\x15\xb0\xb9\x0f\x54\x2d\xfd\xab\xb4\x32\x90\xb2\xbc\xac\xd0\xd8\x79\x38\x34\x0c\x48\x9b\xdb\xa0\xbc\xf2\xcc\xc6\x03\xb5\x07\xc6\x99\xed\x47\x61\x61\xfb\x3b\xbc\x73\x74\x47\x29\x34\x6d\x90\x13\xce\x24\x06\xf5\xf6\x6f\xbc\x9a\xa7\x8e\x11\x7e\xdc\x0b\xaa\xc0\x78\x47\x55\x60\x12\x9b\x2d\xa7\x65\x4e\x2d\x52\x78\x01\x20\xf1\xb1\x68\x77\x61\x9d\xbb\x3e\xd8\x6a\xcf\x63\x75\x7e\x80\x93\x1a\x56\x7d\xab\xc2\x21\xdf\xa3\x8e\x04\xa9\xb5\x6f\x5e\xe5\xfb\xf7\x77\x8d\xd1\xab\x60\x4b\x4f\xad\x82\x2d\x6b\xbe\xbe\x99\x87\x59\xb4\x68\xfb\x3b\xe8\x67\x5c\xff\xf5\x82\xd7\xd9\x6a\x50\xd0\x68\xf9\x07\x29\x25\xa8\x9a\xf0\xba\xe6\x10\xda\xd1\x80\x6c\x56\xd1\x56\x75\xfe\x27\x7d\x24\x48\x05\x7d\x74\x65\xa2\xba\x14\xfe\x16\xf6\xa4\x90\x8c\x78\x97\x47\xf4\x49\x76\x78\x37\xe5\xa2\x0a\x1c\xb9\x8a\x07\x57\xe2\x7e\x50\x13\xdc\x50\xba\x1a\x74\xaa\xf0\x1f\x69\x19\xc3\xa9\x9e\x6c\xa2\x22\x2b\x8b\x21\x7c\x33\xcc\x2b\xf2\x33\x30\x3e\x60\x4a\x11\x27\x8b\x3e\xcf\xb4\x43\x0a\xad\x5f\xb9\x5c\xc3\x6a\x93\x91\xd9\x63\x3e\x41\x32\x7b\xc2\x2d\xa8\x5a\x72\xcb\xbc\xc8\x4c\x1c\x19\x45\x57\x7b\x59\x13\x6f\x5f\x0e\x5c\xe2\x7f\xf6\x19\x0a\x88\x60\xae\x3e\xd2\x52\x82\x9f\xe9\x6d\xfd\x34\x0f\xe6\xaf\x26\x5e\x33\xaa\xb3\xe6\x33\xe5\xdb\x28\x4a\xe3\x56\x7d\xd5\xd2\xcc\xdc\x9e\x08\xf8\xb6\x68\xf1\xdd\xfb\x8a\xf4\x7d\x2b\x56\x29\x9b\x4d\x2c\x4c\x38\xc2\x77\x50\xa6\x81\xd1\xfe\x7f\x90\xcd\x17\x2a\x25\x05\x65\xfe\xc4\x5f\xa2\x74\x3c\x96\xc6\xe3\x89\x62\x61\xf8\xa5\x8a\xff\x9a\x98\xd9\xf9\x97\x0e\x76\x63\x6b\xfa\x22\x6d\xed\xd4\xe2\x45\xcc\xea\x1f\xae\x23\xf8\x12\xbd\x3d\xa7\x91\x9f\xc6\xb1\xc1\x81\x8b\x78\x1b\x1e\x29\x5f\x3b\x56\xc9\x30\x4d\x72\x9b\x2d\x93\xfa\x47\xc7\x77\x01\x77\x7a\xaa\xbd\xb6\xb3\xd6\x02\x44\xac\x4e\x5e\xb6\xcf\x8c\xf0\x83\x7d\xc6\x4b\xa1\xdf\x4d\xba\x06\x7d\xb6\xe6\xff\xe5\xeb\xdd\x82\x24\xb9\xce\x33\xb1\x99\xea\x9e\x19\x00\x83\xcb\x80\x00\x49\xed\x86\xe5\x2d\x39\xe4\x65\x38\x82\x8b\x50\x38\x1c\x1b\x2b\x3f\x6c\xd6\xce\x34\x09\xcd\x84\xd8\x98\xe8\x19\x61\x24\x3c\xe1\x54\xd6\xa9\xaa\x64\x67\x65\x16\xf3\xd2\x3d\x8d\xf0\x8b\x1d\x7e\xb0\x37\xfc\xa0\x50\xd8\x7e\xf2\x83\xed\xb5\x62\xd7\x96\x96\xba\x5f\x28\x4a\xac\x26\x25\x8a\x57\x41\x00\x71\x21\x40\x02\x98\xfb\xfd\xd2\x73\xbf\xcf\xc0\x91\xff\xf7\xff\xe7\xfc\xd9\x99\xb3\x6f\x99\x33\xdd\x5d\x59\x27\xcf\xf9\xaf\xdf\xff\x7d\x5f\x35\x93\x89\x10\x00\x8a\x72\x6d\xf5\x5e\xf8\xba\x6d\x64\x70\x9a\xa5\xa1\xb5\x83\xb9\x2a\xb1\x76\x92\xb6\x2e\x2b\x44\x1f\x5d\x54\x94\x84\x86\x66\xd9\x66\xe1\x38\xb2\xc3\xea\xd7\xf6\xec\xe1\x97\xc3\x10\x26\x44\xfe\xbf\x33\xf3\xb3\x49\xe7\x15\xc8\x67\x64\x26\xae\x59\x28\x33\xef\x1d\x47\xb3\xd4\x24\xfd\x59\xda\xdd\x1d\x47\xa3\x31\x30\xd1\x9e\x82\x87\xce\x22\xb6\xd1\x31\x9c\x39\x11\x25\x95\x47\x34\x79\x91\x96\x20\x5d\xee\x38\x9e\x65\xf0\x62\xf0\x75\x4b\x88\x5a\x2d\x86\xcb\xf0\x59\xa9\x2f\x50\x8b\x79\xd2\xbd\xfe\x38\xa5\x32\x5f\x8d\x69\x91\xbe\xbe\x3c\xe1\xd3\xae\xce\x9a\x47\xe1\x76\x1f\x26\x6f\x41\xfa\x8f\x66\xc4\xdf\xeb\x86\x24\x74\xa6\xf1\x1f\xdb\x7b\xaa\xc2\x7a\x59\x1f\xc5\x13\x8d\x77\xb8\x6f\x5f\x77\x40\xec\x15\xe0\x1f\x42\x89\x08\x3b\x58\x30\xeb\x4a\x74\xf1\x64\x1b\x02\x79\x68\xfa\xa2\x5f\x25\x43\x12\x0a\xf0\xa7\x03\xc2\x49\x64\x26\xd1\x9c\x0f\x33\x1e\x28\xa7\xc4\x5c\x04\x28\x2d\x10\xe5\x8c\xd4\x10\xad\x89\x8b\x71\x68\x44\x19\x5b\x4d\x71\x38\xbd\x84\x06\x02\xeb\xf5\xd7\xbb\xe9\x72\xa7\xca\x1f\xa5\x91\xdc\x71\x42\xd7\xe7\xd4\x78\x02\xe5\x52\xab\x63\x9b\x31\x9c\x0a\x6b\x76\x1e\x15\x46\xd7\xff\xf1\xc3\x0a\xb0\xff\xfc\x53\x8d\xc5\x58\xda\xdd\x9d\xa6\x34\x76\xab\xe6\xf8\x4e\xd3\x47\xf3\x75\xe3\x57\x0e\xed\xef\xda\xa8\xa8\xb6\x68\x75\x16\xdc\x27\x2e\x1c\x64\x17\x7a\x2b\xf0\xba\x7f\x9f\x34\x72\xcd\x6a\x83\x9b\x2c\x27\xb6\xe1\x85\x83\x42\xd7\x8e\x37\x26\xdc\xed\x2f\xb8\x51\xa2\xcc\x4e\xb3\x34\x1d\xba\x42\x31\xaa\x6d\xf7\x15\x93\xc6\xfd\x36\x54\xb3\xe9\xa7\x65\x31\xe7\x69\x43\x6f\x28\x03\xbd\xb5\xd7\x71\xb5\xb2\xa6\xfe\xf2\xd2\xee\x6e\x99\x0c\x6c\x96\x17\x44\x8b\xab\x04\x55\x69\x7d\x60\xfb\x2f\x28\x11\xb5\x23\xaa\xdb\xf0\x96\xaa\xe6\x46\x59\xbe\x53\x8d\x83\xdd\xa5\x40\xc0\x4d\xbc\x57\x1b\x01\x35\xe3\x27\xb1\xf3\xb1\xd9\xff\x89\x36\x93\x4f\xb3\x3c\x3c\xa2\xdf\xa7\x7b\x3e\xcd\x7d\x71\x9d\xde\x3c\x4a\xc8\xf7\xe0\x23\x90\xcb\x40\x73\x53\x66\xbd\xfd\xf9\xda\xd1\x60\x69\x5f\x24\x12\xaf\xd0\x4f\x4f\xbb\x31\x05\x57\x93\x01\xf4\x11\x45\x94\xeb\x0a\x15\xfa\xd5\xca\x15\xa8\xb3\x77\x46\x4f\x99\xf0\x88\x24\x5c\xd6\x47\x2e\x21\x59\x31\x59\x94\x96\x18\xa3\x70\x20\x2c\x4f\x93\x7b\x42\x95\xd5\xa7\x63\x1b\x9b\x64\xbb\x62\x5d\xbb\xae\x4d\x0d\x86\x36\xdd\x84\xf0\xc2\x41\xb9\x86\xdf\x42\xa0\xf3\x91\xa2\x16\xfb\x68\xd3\x08\x73\x65\x3a\xd6\xe6\xbd\xc3\xeb\xa0\x05\xe3\x28\x0f\xaa\xa5\x45\x00\x7c\x54\xa3\x21\x2e\x2a\x54\xd2\x34\xb3\x39\x09\xc1\x54\x8f\xe2\x04\x6d\x97\xf6\x2b\x41\x5b\x0e\x7e\xd2\x7c\x1c\xad\x95\xcb\x91\x22\x2b\x3a\x3a\x53\x3a\x53\x47\x9b\x24\x64\x0b\xdd\xcc\x4e\x4c\x94\xe8\xe6\xde\x46\x6d\x9e\x41\xb3\x4a\x99\x64\x60\xe2\x79\xfa\xea\xd8\x50\x57\x94\x48\x14\x08\x7d\x10\x4c\x7e\x5f\xb7\x30\xdf\x6c\x04\x06\xfb\xf6\x75\x33\x93\x0c\xd2\x09\xc3\xb2\x1c\x67\x86\x03\x45\x6f\x68\x36\xd1\xca\x89\x0e\xca\xcc\x72\xc5\x09\xb6\x02\x1b\xc6\x09\x40\x38\x60\xcd\x39\x95\x48\xac\x44\x76\xd5\xa9\xcb\x09\x43\x2e\x7d\x53\x29\x2e\x78\xbd\xc5\xa9\x09\x97\x61\x97\xb4\xbc\x99\x04\x80\x4a\xe7\xaa\x30\x6b\xb0\x60\x9e\xac\x42\x4d\x42\x2b\x7e\xde\x2a\x47\x71\x23\x64\xc8\x85\xe7\x14\x6f\xd3\xdc\x7a\x0b\x13\xca\x81\x6e\x98\x0e\x10\x7b\xca\xc1\xa2\x95\xe4\x9b\x06\x54\xf3\xe0\x2b\x5e\x61\x1b\xc7\xe0\x9a\x62\x49\xb8\xa6\xe4\x18\x92\x74\x12\x25\x2c\x85\x21\x64\x0f\xf4\x75\xa5\xb6\xf2\xf8\xac\x39\x1b\x19\x0c\xd1\x2a\x65\x36\xcf\x11\xda\x52\x55\xac\x72\xca\xbe\xc7\x7d\xbb\x7a\x94\x43\xc7\xe8\xd7\x4b\x55\x45\x9a\x96\xde\xee\xb1\xe7\x0f\xc1\x2a\xe1\x06\x98\xab\x90\x84\x67\xd1\x10\x92\xe8\x41\x4b\xfe\xa9\x40\x01\x68\x1e\x36\x3c\x39\x35\x7f\x62\x33\x91\x08\x44\xd7\x80\xa4\x38\xd4\x64\xb7\xcf\xd3\x38\x1a\x28\x7a\xf3\x0b\x8a\xb4\xf3\x82\x8a\x0d\xfb\x76\x6c\x56\x6c\x47\xa7\x97\x27\x02\xc5\x42\x76\x42\x3b\xd5\xc3\x61\x99\x31\xb1\xcb\xd2\x6e\x9f\xf5\xb8\x99\xe7\xbb\xad\xac\x62\xd3\xb0\xa3\x26\x85\x2e\xab\x32\xff\x65\x45\xb6\x45\x35\xab\x69\xba\xca\xd2\xce\x2c\x90\xae\xc8\x6a\x5b\x69\xff\x7f\xb9\x3b\x4c\x33\x9e\xb7\x75\x87\xd1\xc9\xf2\x6c\xb4\xa1\x56\x4d\x92\x94\x26\xa6\x16\x05\x6d\x23\xfc\x75\x88\x79\xf1\xb5\x0b\xe8\x46\xa5\xc9\x06\x5c\x78\xd1\x9a\x4f\x52\x1f\xa3\x17\x82\xee\xfa\xdd\xc6\x7e\xaa\x5e\xdc\x57\xcb\x41\x14\x46\x4c\x34\x8f\x1f\xdc\xd0\x32\x8a\x1b\x6a\xb8\x75\xb0\x56\xbd\xe2\x6a\x8f\x88\x38\x64\xc7\x29\xbe\x6c\xb8\x28\xbb\x6f\xe3\x78\xd5\x22\xb2\x70\x2c\x79\x77\x81\xd5\x95\x8a\x44\xf5\x88\xa2\x33\xa6\x5e\x75\x9c\xa6\x2c\x74\x27\x60\x08\x45\xeb\x75\xa2\xf1\xfc\xfb\xf6\x1d\xe8\xda\xc3\x36\x0b\xa3\x1c\x25\x37\xd7\x40\x77\x78\x94\x0d\x0f\x42\x4a\xa2\x89\x71\xa2\x12\x3c\xef\xaf\x88\xe9\x1e\x35\xf6\x28\x89\x34\xc6\xfc\x12\x84\x0f\xb6\x26\x48\xb3\x99\x99\x7a\xe1\x60\x77\x60\x93\x32\x8c\xad\xc9\x5c\x8b\x89\xb9\x23\x10\x79\x08\x91\x44\x13\x67\xb1\xd8\x9d\xa4\xc9\xc0\xac\xe5\xf3\x9e\x7d\xe1\x94\xae\x04\x9d\xc3\xcb\x14\xd2\x55\x7a\xe5\x88\x60\x3f\x55\x9c\x02\xfb\xbf\xb4\x04\x94\x95\xb3\xa0\x0e\xff\x7f\x13\xae\x1a\xe1\xd9\x4f\x1b\xb4\xda\xaf\xee\x5e\x40\xd0\xb4\x9a\x45\x45\x61\x79\x2e\xd8\xa9\x74\xef\xdb\xe7\x54\xba\x6b\xea\x66\x71\xbc\xbd\x0a\x20\xa5\xc3\x4d\x3d\x3b\xdd\xfa\xd6\x23\x27\x48\xa7\x7f\x46\x51\x26\xec\xe8\x16\x54\xd2\xd0\x89\x6c\xe2\xe5\xab\xdc\xc6\x64\xcb\x73\xb5\xd9\x15\x87\x92\xfc\xd6\xcc\xcb\x4d\x5e\xf0\x65\x45\x6b\x32\xc6\x76\x7a\x2e\x1d\x68\x39\xf1\x75\x4d\x25\x95\x2a\x2f\xc8\x58\x65\x84\x5d\xf7\xeb\x4e\xc1\xd6\xc0\x4b\xfc\xd4\x0b\xab\x64\xd1\xd4\x4f\x88\x60\x61\xae\xa9\x52\xef\xb5\xb6\x4e\x4b\x6e\xed\x32\x90\x8c\xf8\xdb\x6f\x6b\x14\xe0\xdb\xae\x61\x57\x26\x51\x91\x96\x19\x0b\x35\xe3\xab\x6e\xe1\x28\x12\xe0\x0d\x94\xbd\x44\xfa\xab\x85\x3e\xb6\x9f\x42\xa5\x00\xef\x50\x0a\xf1\xb5\xca\xa6\x5f\x83\x22\xca\xf3\xd2\x22\xa8\x73\x02\x93\x5e\x6c\xb2\x0d\x7a\x1c\x25\xd3\x92\x75\x7a\x5c\xf9\xdf\xcb\xd5\x61\xa4\x81\x15\x3d\x14\x79\x66\xdf\x92\x16\xd6\x67\xc9\xe7\xc0\x55\x77\x28\x8c\x47\xc2\x76\x15\xcb\xc1\x52\xd0\x81\x46\xec\x23\x5a\x44\xb2\x7c\x14\x7b\x0c\x7b\xe9\x1e\x75\xef\xdd\x44\xaf\x4f\x38\xc1\xd1\x04\xb8\xc0\x93\x3d\xc5\x74\x03\x9e\x19\x9e\x0a\x42\x57\x59\x4d\xac\x4a\xe4\xf1\x4d\x7c\x1f\xfc\x0a\x54\x49\x58\x46\x8f\xd8\x6c\x44\xd5\x49\x4d\x22\xce\x53\xc1\x1b\x6e\xe3\x59\xc0\x77\x45\x22\xb5\xda\xee\x70\x56\x3c\xe2\x8d\x8e\xd9\x75\x35\x62\x35\xc9\x5e\xfa\x0c\x3d\x24\xba\x5a\x73\x3d\x9f\x88\x31\xf6\x40\x58\x00\x15\x21\xf0\xb6\x75\x15\x7e\xbd\x48\x9f\x0f\x6b\x7b\x29\xf0\x75\xa9\xb9\x5d\x60\x78\x45\x39\xe6\x58\xe0\x99\x99\xbf\xf7\x99\x75\xdf\x1b\xfd\xcf\x49\x48\x1d\x36\xf9\x13\x1d\x3d\x6f\xe9\xf9\x49\x0d\xb0\x49\x4a\x01\xa3\x3a\xdd\x08\x7f\xff\xc7\xc0\xab\xda\x9c\xae\xcd\x22\x3f\x44\x1d\x0c\x31\xff\xd5\x36\x78\xf9\x2f\x77\x07\x25\xdc\x23\x6a\xf8\x70\xd7\x7c\x3d\xdb\x9c\x5e\x2f\x2e\x1e\xe8\x9a\x8e\x62\x50\xbb\x14\x78\xd8\xf3\xa5\xd9\x8b\xcd\xa1\x98\xbd\x8b\x9f\xa7\x6f\x83\xba\xf2\xdf\xd0\xd6\x44\xaa\x31\x07\xdb\xe3\xb8\x12\xbf\xe2\xdb\x9a\x5a\xc0\x10\xbd\x4c\xd4\xf7\x6f\xd1\xa7\xb9\xba\xff\x92\xf8\x26\x1e\x60\xc4\x6b\x01\xbb\x2f\x9f\x4e\x80\x08\x85\x41\x83\x5e\x1e\xd0\x29\x3b\x7b\x8a\x65\x68\x2b\x75\x42\xe1\xb4\xb7\xf5\xe8\x7c\x60\x7f\x7f\x87\x36\x3e\x9a\x71\x3f\x41\x18\x86\x54\x6b\x5b\x4f\x9d\xe6\xad\xd8\xc7\x4e\x80\xe1\xcb\x87\xdc\xe4\x49\xf5\x62\x60\x60\x9e\x5c\xaf\x76\xae\x03\x0b\x7f\xe9\x37\x5d\x06\xe7\xbd\x47\xb2\x82\x94\x0a\xd4\xbe\x9d\x9e\xe2\xbd\x44\x23\x1c\xd9\xe1\x79\x95\x93\x9e\x46\x48\x85\xf8\x8b\x58\x52\x41\xe6\xd5\xf1\x45\x56\xf4\x4b\x25\xea\xf6\x29\x62\x62\xf2\x81\xf9\xda\x0e\xfa\xba\x8e\xbe\x52\x71\x59\xd2\xa7\xc0\x13\x32\x77\xa9\xe8\x6e\x2a\x20\xdb\xc5\x40\x75\xe8\x6e\x2b\xf2\x93\x07\x6d\x93\x7d\x2b\x26\xa1\x90\x89\x36\x9c\x7c\x7f\x95\xcd\xb6\x55\xd7\xfa\x76\x98\x66\x00\x53\xe2\x2b\x6f\xc1\xda\x63\x2d\x2e\x2b\x72\x1a\x7c\x3c\x2a\xce\xf3\xeb\x4a\xae\x2e\x33\x03\xfb\x3c\xb1\xd5\x5e\x44\x96\x84\x32\xe5\x35\xc6\xff\x60\x0b\x3e\xc0\x90\x8d\x7b\x2a\x37\xc7\xbb\x4e\x49\x29\x4a\xa8\xc7\x02\x1d\xb1\xcf\x3c\x8e\xe9\x16\x0a\x08\x82\x6f\xf3\x94\x48\xff\x6e\xa6\x3c\xd8\x3f\xd2\x97\x85\x95\x7a\x44\x67\x41\xf4\x58\xab\x4d\x83\xa7\xfa\x43\x18\x29\xc7\x0e\xe3\x9f\x09\x06\x1a\x4b\xfd\x8e\x56\x44\x1c\xad\xcd\xe3\xc8\xb8\x21\x85\xea\x23\x61\x64\xa1\xf9\xc6\x91\x1f\x7d\x3c\xbc\xfd\x5d\xdf\x79\x2b\x8c\xe7\x3a\x17\xbc\x73\xf5\x05\xf8\xba\xf1\x22\xa1\xfd\x5f\x8c\xa9\x77\xb8\x09\x7b\xcc\xd7\x0d\xf6\x91\xa5\xdd\x4b\xdd\xbc\xcc\x0b\x13\x25\xc4\xe4\xab\x22\xe3\x1f\x29\x0a\x91\x1f\xb5\xa6\x37\xc3\xcc\xe6\xa1\xc1\xef\xb4\x62\x58\xe4\xab\xa4\x65\x31\x94\x89\x43\xb8\xab\xb3\x4a\xfe\xee\xac\x8b\x1f\xc6\x26\x1b\x0c\xa2\x7c\xb9\xe3\xf7\xeb\x65\x45\x7f\xdb\x04\x22\x2c\xed\x96\x49\x53\xa5\x69\x76\x52\x05\xe0\xd7\xf1\xd6\x98\x5f\xb5\x51\x8f\xd8\xb7\x8f\xa7\xcd\xe6\x94\x58\xf0\x79\xb6\xd5\xe8\xe2\xf0\x10\xb7\x60\x62\x37\xdb\xea\x83\xaf\x74\xf3\xa9\x35\xcb\x1d\xaf\x02\xf4\x43\xd5\x72\xfc\xa1\xfb\x6e\xcb\x76\xad\x9f\x9a\x6c\x30\x4f\x2b\xe4\xa8\x93\x5c\x7f\xf9\xad\x99\x87\x2e\x6f\x51\x1c\xfb\x97\x1b\x11\xf8\x57\x58\x10\xd0\x93\x24\x7c\x30\x53\x04\xe9\x17\x01\x03\xc4\xff\xdc\x50\xd8\xf7\x7e\x5a\x14\xb1\x2b\xd8\xbb\xec\xd6\xcf\xee\x6d\x6c\xf6\x14\xfb\x97\xf6\x77\xf7\xec\x79\x92\xd6\x86\xd1\x83\x81\x2f\xf5\xcd\xe3\xc0\x0b\xb5\x26\xf9\x53\x37\x4a\x58\x1d\x67\x44\x8e\x77\x94\x36\xe2\x45\x45\xde\xfe\x90\x4e\x23\x5c\xe8\x5d\x8a\x06\x64\x60\xa6\x19\xef\xee\xef\xf6\xa3\x41\x1d\xa5\xe1\xe9\x74\x03\xcd\x41\xa0\x80\x00\x3f\x72\xb1\xa3\x9d\x50\x86\xca\x99\x38\x96\xe9\x5d\xf8\x7c\xbe\x51\x45\x9c\xa4\x24\x65\xce\x8e\x9a\x95\x01\xa1\x29\x5f\xcf\xfc\xa4\x22\x51\x06\x32\xbb\xaa\x14\x1d\x74\x05\x42\xf5\xee\xc2\x28\x0b\xcb\xd8\x48\xfc\x8a\x0d\x7d\x2d\xe8\x68\xd2\x37\xd7\x86\xfc\xde\xec\x69\x05\x1e\xff\xa5\x79\x5f\x03\xb8\x0e\xbb\x8e\x6a\x18\xc7\x66\x30\x68\x40\x69\x62\x99\x8f\xba\xaa\x60\x14\xc7\xd4\x34\x2c\x2c\x6f\x3c\xd6\x16\x45\x28\x04\x9b\x75\x3f\x50\x09\x35\x58\xd9\x60\x3c\xeb\x84\xc8\xab\x36\x7b\xa1\x7a\x44\xbc\x81\x07\x8a\xdd\xee\xf6\xcc\x13\xfb\x01\xbd\xc4\xda\x46\x64\x25\x11\xbb\xdd\x83\x0f\xc3\x2e\xba\x45\xf0\x50\x6c\x9c\xf7\x67\x4a\x81\xe7\x43\x0a\x99\xe0\xd8\x6f\xc1\xb1\x13\xfc\xf9\x97\x76\xa9\x72\xed\x8f\x60\xec\xb9\x8e\xbb\xae\x3c\xc7\x49\xad\xad\x7e\x77\xa6\xa5\xc9\x01\x9b\x74\x50\x87\x43\x75\x26\xc5\x1a\x3f\xd6\x7e\xb6\x96\x7f\xa1\xca\xc2\x2b\xb1\xc9\x23\x15\x8f\x31\x15\x1d\xdf\xa8\x68\x3e\xed\x93\x44\x45\x47\xc9\xfd\x9c\xd5\x76\xff\xac\x2b\xd8\xd9\xc3\x61\x54\xd8\x89\x4d\x18\x4e\x29\x54\xb2\x7e\xec\x09\xea\xd9\x6e\xaa\xa9\xfa\x6a\xcc\x16\xa0\xbc\xcc\x6f\x2c\xfe\x16\x3d\x57\x4d\x4b\x9a\x6f\xd4\xe1\x4f\xd2\x15\x52\x9c\xc5\x67\x39\xd4\xa5\x57\x88\x3e\x4a\x27\x5b\x70\x0b\x1d\x27\x70\x78\xbc\xad\xcb\x61\x42\x33\xb0\x13\x0b\xa1\x78\x29\x21\x77\x94\xb0\xab\x74\xcc\x42\x2a\xc4\xe8\xd8\x97\x47\xaa\x10\x89\x81\x4b\x44\x62\xa0\x16\x45\xa9\x7e\x66\x3a\xb5\x9e\x9d\x1f\x1c\x38\xd9\x60\x6c\xda\xbb\xd8\xcd\x4c\xb8\x6c\x0b\x6b\x3d\xfc\x1e\x16\x75\xdb\xba\xb7\xae\xdb\x7a\x2d\x8c\x4d\x79\xba\x62\x09\x56\x54\xac\xa9\x5c\x14\xf4\xc7\x7c\xad\x0e\x7e\x58\x65\xa2\x76\x7b\xb5\xed\x05\x9d\xd2\x71\xf3\x87\x0f\xb5\xfa\x1e\x08\x3d\x90\xfe\xde\xc1\xbe\x73\x63\x66\x2e\x5a\x9c\xeb\xf9\x0d\xb4\x6a\x58\xc8\xca\x15\xba\x8f\xd0\xa1\xe0\xeb\x16\x92\x95\x81\x8d\xa3\xd0\x14\xe8\x18\x22\x92\x45\xd2\x2d\x3c\x59\x55\x10\x23\x86\xf9\x05\x2d\x31\x37\x8d\x23\x93\x70\x19\x0e\x58\x48\xb8\x5b\xbe\x56\x20\x9b\x89\x35\xf1\xda\x9c\xaf\xc1\x50\x4c\xf7\xe8\x22\x1d\x7c\x98\xf9\xe3\x0a\xc6\x15\x25\xe1\x4b\x4f\xe3\xa5\x63\x27\x3f\x4d\x5c\xe1\xa2\x43\x44\x27\x16\x66\xe1\x86\xc6\x26\xfe\xb3\x5e\x65\x5f\x5c\x35\xcc\x95\x46\x9e\xa1\x51\x43\x04\x90\xa7\xb4\x4a\xf4\x8e\xf5\x6a\x65\x1c\x3f\xe8\x26\xfe\x30\x07\x3a\xa9\x4e\xbe\x20\x53\xbc\xca\x61\x84\x1e\x29\x7c\xc5\x09\x4d\xfc\xdf\x1c\xeb\x20\xe4\x2a\x49\x74\x4b\xa9\x4c\x40\x61\x3e\x6d\x7e\xd0\x36\xe2\x1f\xc6\x86\xc7\x34\x01\x1d\xe9\xac\x2b\x1c\x49\xa7\xd7\xc6\x4d\xde\xcf\xd2\xfc\x25\xae\xec\xf2\xe0\x21\xac\x92\x4c\x21\xb6\x34\x57\xcb\x71\xc7\xcf\x5d\x6c\xa1\x91\x4a\xbe\xee\x79\xe0\x75\x11\x15\x63\x91\x48\x93\xe2\xa7\xaa\x69\xde\x6d\x44\x57\xf4\xad\x57\x2c\xeb\x40\xe1\xe3\xcf\x2a\x21\x25\xaf\x19\x39\xcd\xd2\x21\xce\x29\x30\x71\x9a\xb5\xf3\x94\x92\xb0\x0d\x63\x62\xf1\x2d\x6a\xc4\x20\xaa\x60\x02\xa8\x9a\xf4\xf7\x9f\x57\x98\xf1\x32\xa9\x62\xd4\xed\x5e\xc7\x11\xc3\xfb\x42\xf1\xa2\x88\x41\xcf\xa9\x06\x2f\xf8\x92\x61\x6b\xde\xd3\xa4\xb7\x6d\xe2\x27\x07\xba\xd5\x97\xa5\xa6\x80\x83\x26\x78\xe6\x07\x6e\x9e\x89\x20\x7b\xf5\x20\xc8\x52\xa1\xc6\x86\x73\xb7\x9d\x0a\x37\x38\xf9\x9f\xaa\x98\x62\xd5\x56\xdf\x9b\x89\x23\xe1\x34\xbf\x39\xf3\x5e\x1d\x60\xf1\x1a\xd9\xa0\x7c\x68\x1b\xe5\x7a\x66\xab\x97\xc2\xd1\x8c\x24\x93\xf4\x5b\x3e\x9b\x94\x63\x9b\xe7\x91\x11\xc2\x8c\x1a\x0c\x52\x7a\x6f\x6d\x19\x01\x05\x2b\x13\xa6\xbd\x73\xd8\xc1\x63\x2a\xf3\x3c\xa6\xd2\xe3\x97\x0e\xbc\xb4\x4d\xa1\x9b\xae\xe1\x85\xea\x12\x29\x5c\xd8\x8e\x9e\xef\x9d\xbf\x4f\xd1\x0e\x5e\xd8\xc7\x8d\x80\x6f\xef\x62\xd7\xe4\x91\x51\xe3\xcd\xdf\x0c\x54\x90\xf5\xcd\x9a\x15\x8b\x63\x6b\x46\xa5\xe5\x72\xbf\x30\x4c\x76\x94\x9e\x72\xf5\x08\x32\x61\x2d\x2b\x13\x4d\x26\x65\x12\xb1\xb1\xc7\x71\x7c\x4b\xcd\xfc\xbf\xe5\xb6\xf6\x57\x4d\x14\xcf\xd5\x39\x3a\x9c\x7b\x40\xf7\x41\xe2\xaf\xa6\xc4\xe0\x50\xe1\xce\x79\x8c\xab\xa7\x14\x95\xb7\xae\xbf\xa8\xe5\x3c\x8a\xcc\x84\x90\x09\xab\x7e\xde\x49\x62\x39\x3a\xe4\xcb\x6d\x80\x9a\x70\x9c\x4e\xa7\x6b\x0a\x8d\x04\x8e\x7b\xc1\xbc\xf9\xb6\x6e\x6c\x4d\x96\x44\xc9\xe8\x09\x5a\x48\x79\x8b\x30\x33\xee\xfd\x3a\x85\x92\x87\x33\x45\x41\xf3\x10\x29\xb8\xf4\x7f\xbd\x56\xe6\x3d\x3a\x83\xa2\x24\x5d\x79\x40\x21\x48\xfc\x9c\xa2\xba\x4d\x87\x51\x61\xfa\x51\x1c\x15\x6b\xe8\xe5\xf2\xb4\x37\xe5\xef\x82\x4a\xf7\xa1\x15\x60\x85\xfc\xef\x6a\x9b\x8d\xcb\x6c\xae\xfa\x08\x87\xc0\x75\x9b\xf1\xe1\x4c\x21\x0b\xb6\x2b\x70\xf6\xaa\x8d\xe2\x18\xe1\x39\xd3\xca\x23\xd4\x15\x8e\x79\x0f\xc3\xab\x56\x7e\x25\xca\x0b\x0e\xfb\x45\xc8\xa4\xa6\x70\xf2\xa2\x6a\x91\xa7\xb9\x0d\xcb\xea\x65\xcd\x29\xe1\x00\x0e\x3f\xe1\xf2\xde\x56\x44\x98\x4d\xa2\xaa\xa5\xdd\xdd\xc2\x4c\x25\xbb\xc7\x97\xfd\x6b\xda\x4d\x7c\xdd\x52\x5f\x7e\xad\x5b\x98\x08\x2d\x29\x2e\xf2\xd0\xaa\x49\xc1\x67\x73\x60\xb0\x77\xb1\x1b\x8e\xed\xf2\x38\x5d\x99\xf3\x88\x19\x24\x4e\x78\x93\x9f\x60\xd9\x30\x3b\x79\x3d\x68\x2a\xa7\x75\xa7\x65\xb1\x5d\x45\xe7\xc7\x66\x3e\x10\x41\x5c\x03\xcf\xb1\x05\x80\x3f\xbc\x7b\x9e\xda\xe4\xff\x41\x39\x4f\xb8\xbe\xfc\xd8\x63\x6c\xc2\x65\xe4\xec\x70\xf7\xd7\x1a\xcc\x37\x5c\xb6\x53\x83\x43\xc5\x6a\x04\x8e\xeb\x85\x83\xae\x89\x4c\x1b\x53\xda\xcb\x7e\x64\x26\x2b\x07\xe0\x19\x71\x55\x59\xc7\xfb\x77\x4c\x8d\x1b\x94\x49\x34\xac\x42\x27\x72\xea\x7b\xf6\x70\xdd\xf6\xca\xcc\x8b\x12\x5c\x69\x23\x2b\x1a\x94\x6c\x37\x10\x54\xa1\x7a\xc4\xd7\x33\xe5\xec\x32\x6b\x0a\xd2\xb2\x75\x9d\xd3\x6b\x81\xdf\xdb\x88\x70\xa4\x64\x41\x6b\x21\xba\xb2\x6d\x9a\xc8\x76\xc5\x26\x73\x4a\x5a\xfd\x5b\xd5\x31\x79\x84\xd2\x91\x50\x25\x3e\xef\xe0\xba\x43\x33\x31\xc4\xb5\xe6\xe3\xeb\x0b\x8a\x0a\xa1\xc9\x60\xb7\x6f\x5f\xd7\x0c\x56\xa2\x3c\x65\xda\x64\x3c\x23\x08\x04\xf8\xda\xb5\x57\xa7\x69\x15\x64\x3f\xb6\x79\xfb\xb4\x4b\x70\x8a\xcc\x10\xc5\xb5\xcc\xd7\x55\x3f\x85\x22\xea\x0b\xbd\x1a\x1a\xb7\xda\x3e\x22\xce\x40\x79\xa2\xb4\xaf\x3c\x11\xfa\x99\x46\xe4\x5b\x79\xec\x2c\x0a\xc7\x0c\xea\x60\xe1\x42\x44\x97\xa2\x62\xd8\x26\x39\x9f\xd9\xa2\xcc\x18\x81\x22\xd1\x40\x6d\x7c\xc7\x83\x34\x06\x69\x62\x9f\xa4\xda\x8a\x30\x05\xeb\x81\x28\xc5\xc7\x0f\x68\xb9\x08\x54\x77\x1c\xe1\xdc\x7d\xa4\xbd\x4e\xb0\xc0\x4d\x7b\x89\x8e\x9c\xe3\x26\xae\x52\x5a\xe1\x15\x7d\x46\x25\x1a\x5c\x63\x45\x4e\x7c\x9c\x0c\x2e\x82\xdc\x0b\xaa\x23\x0f\xa8\x31\x92\xeb\x2d\xeb\x9f\x6b\x51\x5a\x7d\x75\xf7\xfe\xed\xbe\xe2\x08\x1c\x8d\xb0\xf4\x92\x19\x70\x28\x94\x57\x5d\x16\xc8\x05\x7f\xc1\xa4\x90\xed\x16\xb8\xee\x0b\xea\x11\x93\x22\x4a\xca\x28\x19\x6d\xeb\x38\x99\xe1\x6d\x68\x2e\xc1\xd9\xdf\x52\x8a\x10\x5b\xd6\x3d\x72\x8d\xc1\x42\xc8\xea\x6f\x2a\x1e\x9a\x41\x94\x13\x21\x02\x6d\x1e\xc7\xee\xb0\x70\xd0\x55\x23\xe9\x8f\x3b\x7e\xbd\x6a\x85\x19\x8c\x13\x68\x60\x4e\xb5\x56\x52\xcb\x54\xf3\x5a\x13\x9b\xad\x6d\xf3\x9d\x5b\x9e\xf5\xc7\xec\xe9\x1d\xd4\x16\x90\xfa\x76\xe8\x59\xf9\x9a\x18\x9d\x25\xc9\xf6\xa9\x4e\xf2\x52\xf8\x12\x9d\x04\x37\xdd\xa9\x46\x3d\x1b\x02\x5a\xa4\x61\x19\x25\x79\x61\x62\xc7\x9b\xd5\x26\xf3\xe5\x37\x40\x31\x36\xc9\x2f\x50\x8d\x9c\xfb\x24\xc2\x83\x58\xbd\x27\xa4\x2b\xf3\xf4\x68\x22\xa7\x4d\xbb\x55\xea\x12\x9d\x43\xfb\xbd\xba\x4a\x65\x3b\x44\x1d\xb2\x5a\x4c\x27\xce\xb7\x67\xc1\xc3\x9e\xf7\xec\xe1\xc2\xca\x19\x20\x62\x1c\x1a\x74\x69\xf7\x01\x5f\xfb\xa8\xd6\x48\xa6\xff\xb0\x8f\x45\xc7\x84\x0e\x12\xaa\x14\xe7\x02\x35\xb4\xc8\x63\x98\xb4\x7e\x7f\xf3\x3c\xf8\xb5\xc4\x39\x52\x89\x1e\x5e\xf6\x47\x74\x44\x58\x36\x11\x47\x99\x69\x4d\x68\x7d\x58\xa8\x94\x7a\x4c\xa8\xd8\xa0\xab\x8a\x67\xf1\xc2\xae\x99\xcd\xd3\xb8\x2c\x9c\x98\x91\x84\x68\x2a\x0c\x6e\xf0\xdc\x2d\x2e\x56\x3e\xf6\x33\x4a\x16\xf9\xef\x70\xda\xf1\xa1\x67\x94\xcc\xd7\xb9\xa0\x4a\x67\x91\x62\x3c\x08\x3c\x61\xf6\xef\xcd\xfc\xc8\xf6\x03\x14\x57\x50\x15\xbb\xaa\x61\x3c\x81\x06\x8b\xcc\x94\x13\xbc\xa8\xa7\x60\x51\x0a\xc3\x0c\xf3\x19\x3e\x89\xc8\x99\xdf\x85\xbd\x44\x38\x7a\x4f\xcb\x02\x9d\x40\x11\x56\x60\x12\xd5\x2a\x09\xb9\x36\xbd\x7d\xd4\x27\x8e\xd4\xca\x7a\x13\x4c\x0e\x2d\x78\xab\xe2\x86\xd4\xfe\xdf\x40\xe3\xbe\x7d\x89\x22\xb3\xc3\x32\x19\xe4\x10\x8f\x40\xe5\xed\x03\x35\xee\xfa\x73\x38\x33\xfe\x0f\x7a\x3f\xc2\x77\xe5\x55\x9a\xe2\x74\xf5\x29\x7a\x26\x47\x50\xea\x94\x43\xaf\x6a\xa2\xf6\x9f\xd0\xf3\xe0\xc1\xe7\x10\x3c\x63\x7d\xe6\xd5\xac\x31\xc6\xb1\x10\x84\x7d\x40\x27\xc3\xcd\x02\x3a\x13\xf9\x3b\x78\x2a\x21\x3c\x94\xd6\xc4\x34\x4a\x13\x6b\x33\x2e\x51\x09\x4e\xd2\x67\xa1\xfc\x4e\xe0\xb5\x1e\x28\x5c\x5e\x56\x4e\x4c\xb8\xdc\xf1\xa0\xbd\x6f\xcc\x94\x1d\xfd\x86\xe7\xe6\xc8\xd2\x74\x39\x5e\x43\xd5\x00\x16\xe7\x87\xf8\x49\xbe\x71\xbc\x71\x93\x74\xc5\x01\x56\x61\x45\x51\xf5\xc4\x29\xdf\xb9\xae\xc2\x85\xcd\x6c\xac\x7b\x16\xba\xfb\xf6\x3d\xed\x57\xfa\x4f\x66\x4a\xc6\xe5\x34\x75\x5e\x85\x0c\x8d\xf6\x37\x4a\x23\x97\x14\xd7\xfb\x05\x35\xbc\xce\x6d\x45\x9e\x92\x50\x26\xf5\x94\x16\x49\x7b\x53\xd3\xd3\xde\xc4\x51\x81\x29\xbf\x1f\xa8\xba\xe0\x7e\xa5\xb6\x6c\xd3\x30\x2c\xa7\x11\x2c\xdf\x82\x93\x88\xa3\x67\x15\x21\x39\x35\xd8\x65\xe3\x38\x07\x0e\x1c\x11\xde\xd5\x99\x32\x98\xe7\x55\xb4\x7c\x0b\x1f\x88\x53\x7b\x4d\x71\xce\xd9\xaf\x95\x51\x11\x59\x62\xa5\xf1\xa2\x30\xea\x2c\xfc\x74\xa6\x98\xeb\x7e\xda\xa4\xe8\xad\x5c\x67\x2c\x2a\xcf\x8c\xe3\x08\xfc\x00\xc0\xe9\x16\xc5\xc7\xfd\x9b\x44\x8d\xe0\xeb\x30\x5e\xc3\xd7\x2d\x75\x9f\x03\x68\x87\xce\xfb\x88\xfe\x46\xe0\x27\xcc\x2e\xeb\x29\x9a\xbf\xd5\xf5\xfa\x23\x6e\x27\x67\x76\x25\xb2\xab\x7c\x2a\x05\x64\x41\x5f\x15\x61\xf5\x7d\xcd\x37\xfb\x5e\xa0\xe1\xcf\x6d\x8f\x13\x66\x76\x5a\x74\x6a\x7c\x73\x35\x26\xba\x9d\x6e\x36\xc3\x9a\x8e\xae\xf5\x5d\xd2\x94\x81\x97\xdc\xee\x8e\x4d\x39\xb0\x59\x47\x4f\x5d\x5e\xd2\xd4\xa6\x97\x82\xa7\x15\xba\x71\xb0\xdd\xcb\xae\x31\x3a\x43\x1c\xac\x9f\x2b\xbc\x8c\x38\x00\x3d\x93\xbf\x50\xe8\x9c\xbf\xa0\x8d\xcd\xbf\xad\x30\xa9\xa1\x99\x46\x45\x1a\xf3\x43\x70\xa7\x1e\xe1\x8f\xb4\xed\xdb\x58\x3f\x26\x65\x38\x46\xe8\x2d\x8a\xe9\x1e\xea\xf8\x3d\xc5\x1a\x74\x5a\x91\x49\x53\x53\x70\xde\xb7\x8d\x2e\x04\xb5\x91\x47\x8f\x64\xff\x47\xad\x89\xf3\x8f\x6e\xb9\xfa\x65\x36\xb2\xd9\xb6\xea\x83\x80\x6a\xe6\xc0\x18\x87\xea\x2d\x55\x6c\x7f\x4b\x71\xd1\x71\xf8\x01\x90\xd1\xa3\x36\xba\xc6\xa9\xc9\x96\xb9\x07\x85\x45\x9c\x63\x0c\x15\x8a\x59\xcf\x00\xdc\x80\xef\x79\xad\x8a\x9a\x9c\xd2\x6b\x15\x89\x2a\xde\xc0\x6f\x05\xaa\xde\x57\x9f\xe7\xf6\xb1\xe8\xb7\x54\xa4\x94\x97\x5c\xd5\x76\x92\x91\x0e\x6c\xb0\xd1\xa6\x7f\x37\x8c\xd3\x55\xaa\x13\xc2\x28\xfd\x19\xd6\x09\x7d\xbe\xab\x38\xf0\x4c\xca\xaf\xaa\x1c\xc3\x2c\xb2\xc9\x20\x46\x7c\x27\x5c\x62\xf4\xa0\x58\xa0\xe3\x30\x21\x32\xf5\xeb\x6b\x7d\xd7\x35\x71\xd1\x49\x45\xd3\x97\x85\xff\xf2\xbf\xfe\x57\xbf\x32\x47\xc1\x90\xf8\x2a\xfa\x1b\x48\x50\x19\xf5\xc0\x34\x2d\xaa\xe4\x67\x92\x22\xfa\x5a\x09\xc3\xc1\xef\x43\x01\xc0\x1e\x35\xd2\x75\x81\x3f\xc7\x66\xee\xf1\x13\x07\x7a\x2e\xa1\x31\xcb\xb9\xd0\xed\x47\x3c\xa6\x2d\x12\x50\xaa\x92\x04\x26\x36\xac\x77\xa7\xb7\x33\xf2\x6c\xab\xbf\xb8\xf5\x97\x5d\x11\x80\x22\x3b\x44\x56\x8f\x28\x30\x54\x83\x36\xfb\x39\x66\xe9\x00\x60\x85\x1a\xd6\x76\xd0\xb3\xc0\xc4\xbc\x4d\x07\x83\xbb\x74\xf4\x79\x68\x54\x6e\xa5\x79\x3e\xd9\x12\xb4\x94\xa2\xdd\x43\xe1\x2a\x76\x22\x93\x0e\xc0\x43\xdf\x27\x16\x3e\xd7\x7e\xfd\xf2\x21\x86\xc3\xfd\x3c\xd0\x63\xc0\xd0\x03\x90\x16\x0c\x22\x51\x26\x7d\x9b\xa9\x85\xc3\x30\x32\xb2\x33\x54\x1a\xf0\xf2\x18\x58\xe3\x38\x6b\x7e\xe3\xd7\x38\xda\x64\x36\x7d\x99\xf9\xa1\x13\xf2\xe8\x81\x22\xe4\xb9\x85\xe8\xce\x31\x4d\x1d\x72\x8d\xce\x8b\x14\x5b\xf3\xc3\x52\x08\xc6\x25\x49\x55\xc9\xb0\xc9\xa0\x14\xc9\x52\xa1\x78\xec\x78\xba\xc7\xb6\x9a\xc3\x28\x92\xa6\xa2\xf2\x9a\xfb\xdd\x59\x52\x05\xd1\x2c\x2a\xa2\x30\xca\x27\x50\xb8\xe2\xb2\x4f\xa0\x4b\x40\x9b\x82\x87\x2f\x1f\xea\xbe\xba\xbb\x53\x2d\x31\x8e\x02\x30\xe7\x7c\xdd\x42\x5d\xb2\xd0\x1d\x46\x59\x5e\xd0\x00\x51\x8d\xb5\x56\x60\xbc\xd5\x26\x90\xda\x7f\x8d\x97\xa0\xa5\xc1\xd0\xcf\xa2\x64\xc4\xf0\x0b\x58\xd4\x4f\x03\xc5\x66\xac\x89\xeb\x37\x1c\xc3\x4b\xc1\x43\x0e\xad\x23\x0b\x4a\x09\xd1\x14\xac\x37\x83\xb1\x8d\x7f\xa0\x3f\x86\xdd\x32\xbf\xee\x65\x87\x76\xbe\x80\x9a\x95\xcb\x47\xaa\x95\x45\x9e\x75\x1f\xc6\x43\xb0\x6d\xf4\x41\xfc\xc7\x28\x3e\x47\xb5\xf8\xa4\x0a\x6c\x33\x0b\xb5\x58\xce\x14\xf0\x2b\x92\x36\x88\x75\xcf\xa3\x51\x62\x59\x7d\x0d\x5b\xf1\xb8\xae\x5b\xb0\x85\x41\x41\xed\x56\x4d\x43\xb1\x49\x8d\xb3\xd8\xcd\xed\x24\x4a\x8c\x4c\x30\xf2\x9f\x08\x14\x33\x51\xf3\xd7\xf6\xed\x5b\xaa\x5c\x54\x18\x0d\xa3\xf0\xb1\x10\xd7\x16\xb4\xcc\xa8\x0a\x52\xf8\x83\x18\x8b\xa7\x94\x35\xbf\xa3\xca\x02\x66\x34\xca\x6c\x9e\xd3\xa8\xac\xc3\xb5\xa3\xbd\x28\x21\xc4\x7f\xf1\x18\x13\x58\x64\x26\xc9\x43\x93\x98\x81\x99\xf3\x4b\xc9\xd1\x02\x2c\x34\x24\x4d\x45\x33\x5c\x8d\xf2\x97\x93\x89\xe1\x12\x16\xa2\xdf\xf3\x8a\x03\xf3\xbc\x12\x7a\x32\x51\xd6\x4f\xb3\x04\x06\x5a\xcc\x81\x2f\x3c\xde\x69\x13\x09\x9d\xa4\x45\x9a\xa5\xb1\xc4\x3b\x8a\x6a\xda\xf1\x4e\xb7\xaa\x68\xc4\x96\x87\x57\xdd\xb9\xfa\x5b\x84\x2e\x7c\xd3\x26\xef\x9c\xdb\x94\x39\x20\x5a\x77\x79\x0b\x90\xba\x9f\x1e\x96\x57\xe3\x08\x18\x3d\x19\xa3\xc2\xa2\x54\x2f\xb1\x34\x71\xbc\xd6\x51\xf4\x87\x17\x61\x0b\xa5\xb2\xec\x4f\x51\xbf\xe4\x20\x1c\x99\xcd\x75\xd5\x5b\x05\x3f\x87\xc3\xc7\x79\x1b\x70\x36\x78\x56\xf1\xbf\x44\x69\xb2\x93\x0e\xb8\xee\x95\xc3\xd0\x7e\x32\xf3\x34\xd9\x78\x53\x28\x8f\x31\x78\x03\x3f\xf4\x20\x20\x97\xc1\xbf\xa1\xc5\xf1\xe6\xd7\x55\x5c\x3c\x4f\xf3\x81\x82\x8e\x53\xd9\xf7\xbc\x02\x86\xdf\xd3\x05\xda\x34\x09\xd3\x90\xa5\xd8\x50\x19\xe1\xc1\x3d\xbe\x51\x81\x45\x99\xe4\x29\xc8\xf3\x3c\x7c\xeb\x2e\xa7\xe5\x7c\xd7\xf2\x4e\xf6\x77\xfb\x69\x02\x3b\x8f\x79\xbc\x31\xfe\x3e\xdf\xb4\xc2\xe1\xa7\x71\x54\xec\xa0\x6f\x8f\x7d\xcf\x03\x82\x28\x00\xa2\xbb\xa3\x44\x7a\x5f\x73\x2e\x4e\xb5\xbf\x6e\x90\xbf\xe3\x86\xb9\x22\xb1\xb9\xd3\x88\x3a\xaa\xf0\xb6\x6f\x47\x91\xd0\xbb\x0a\x48\x45\x4d\xf0\x9f\x6d\x04\x67\xfb\x5f\x39\xd0\x4d\x57\x93\x6d\xb4\xf6\x2e\xe8\xaf\x1c\x39\xfc\xf5\x86\x22\x03\xd8\x50\xb3\xa1\x97\x95\x93\x7b\x56\x11\x54\x95\x49\x98\x4e\x26\x69\x42\xf8\x02\x04\xb5\xa0\xd4\xc0\xaf\x5d\x41\xc4\x20\xac\x9e\xba\x0e\x91\x97\x71\x91\x3f\x4d\xde\x17\xbf\xc7\x64\xed\x4c\x56\x57\x13\xc5\xee\x38\x92\xa8\xe7\x7a\x9e\xf7\xfd\x24\x8a\x59\x8a\x53\x5a\x86\x6f\xc1\xa8\x8c\x42\xf4\x6d\x04\xdf\xa2\x8b\x42\xef\xd0\x61\xf0\x5d\xad\xe0\x16\x36\xad\xe0\x9d\x5b\xbc\x5d\x5c\x1e\x2e\xb9\x28\x8f\xa8\x0c\x6a\xe2\x7c\xed\x27\x2b\xa3\x70\xd9\x16\x22\x25\xe9\xc8\x91\x3d\xe2\xe8\x92\xf2\x72\xd3\x2c\x9d\xf7\x61\xf5\x36\x2a\x19\x20\x2e\xd9\x45\xe8\x75\x84\x63\x8c\x5a\xc6\x2b\xbd\x38\x7b\x51\x69\x13\x4f\xa6\x69\x66\xb2\x88\xcb\xe8\x78\x9f\xdf\xa6\x8a\x0a\x5f\x3b\x1c\x67\x6c\xcd\xc0\x4d\xca\x4b\xda\xa6\x73\xb8\x16\x2d\x8d\x03\xdd\x28\x59\xa9\x8e\x4e\xbd\xe0\xde\x71\x3a\x96\x97\x1b\xce\xa9\x5a\x28\x1b\xe5\x65\x46\x34\xfa\xce\x39\x01\xfc\xcb\xd7\xad\x9f\xa4\xc0\x57\xfb\x3d\x78\x66\xc9\x83\x67\xda\x8c\x73\x98\x9a\xdc\x11\x92\xe1\xfc\xfc\x15\x5e\x24\xdf\x28\x11\xd9\x69\x9a\x47\x54\x55\xdc\xee\x8b\x73\x50\x68\x45\x9d\xf9\xb6\x56\x78\xe5\xd8\x5d\x1a\xca\xf4\x50\x5a\x36\x09\xd6\xf0\x81\xca\x4f\x47\x99\x35\x85\xcd\xe6\xfc\x5b\xff\xae\x66\xb8\x0b\xbc\xde\x6a\x13\x0a\xbb\x77\xb1\x6b\x32\xd3\x8f\xc0\x7d\x87\x83\xc8\x45\x57\xbe\x51\x05\xf6\x61\x34\x1a\x17\x51\x32\xda\x46\x4f\x28\xdc\xab\x5e\x9b\xe1\x26\xf5\x66\xf9\x5a\x9d\xe6\x13\x2a\x8e\x3c\xaa\xda\xa7\xfd\xcc\xbc\x41\x5a\x72\x1d\x9f\xe2\xa0\xc7\xc0\xd7\xae\x77\x64\x27\xfd\x6c\x2d\xad\x49\xa4\xd2\x92\x89\x46\xaa\x66\xcd\x8d\x6c\xb1\xb3\x7a\x26\xd8\x57\xa6\x70\x45\x46\x71\x94\x52\x02\xf6\x27\x41\x9d\x27\xd6\x71\xa6\x7e\x0a\x27\xab\x7b\x80\x82\x0c\xad\x76\x37\xa2\x87\xef\x6a\x5d\xe3\xef\x05\x2a\xdc\x3b\x39\x53\xb6\xfa\x7f\x6a\x1c\xe7\x2a\x10\x0e\xe3\x35\x4c\xcf\xfa\xe2\xd2\xe6\x1f\xfb\x62\x77\x92\x12\x03\x28\xe0\x68\x48\xb4\x3e\x56\x02\x87\x1f\xb7\x19\x8a\x61\x5c\x0e\x87\xd8\xfc\xae\xc0\xba\xe8\x6b\xaa\x9b\x21\x40\x7b\x17\xbb\xc5\xca\x9c\x87\xd9\xef\xec\x79\xf4\xd4\x65\x4d\x40\x3f\xb7\xbe\xab\xc6\x1e\x96\xe6\x00\xf7\xe0\xd7\x1e\xce\xfc\x9f\x78\xa8\x64\xf8\x06\xff\xbc\x0f\xf7\x80\xaa\xd7\x79\xac\x12\xdf\xb4\x81\xb2\xbf\x56\xa6\xee\x48\x21\xf4\xc2\x6e\xe0\x6b\x65\xc3\x13\x5b\xac\xa6\xd9\xf2\x93\x1d\x3f\x8a\x4b\xc5\x75\x57\xc3\x76\x50\xee\x23\xe4\x12\xdc\xd0\x87\x47\xd1\x1e\x0f\xd4\x4c\xf7\xac\xca\x34\xf9\x87\x66\xba\x1a\x8e\x67\x46\x89\xf0\x91\x8a\x18\xc3\xb2\x48\xcb\x82\x65\x06\xb1\x3d\x6a\x28\xe2\x8d\x16\xe1\xcb\x6e\x66\x57\x49\xeb\x4b\xb3\x6c\xd1\xe9\x14\xc6\xad\x16\x98\x78\x9a\x9b\x65\x43\x39\x19\x2a\xdb\xa7\xf1\x5e\xf8\x46\xd5\x3d\x73\xbb\x62\x93\x27\x3b\x4e\xba\xf8\x14\x7d\x71\xd8\x80\x4b\xb3\xda\x20\x38\x79\x3e\x18\x37\xc0\x90\x98\x08\x79\x56\x9b\x83\xa6\xcf\xe1\xbf\x35\x53\x0d\x9a\x9b\x81\xc2\x94\xde\x6c\x7b\x8f\x99\x1d\x99\x6c\x30\xe7\x49\x06\x2f\x2a\x3a\x99\xad\x3d\x55\xf3\xbd\xd9\x5a\x09\x1d\x44\x23\x9b\xa4\x2b\x06\xf9\x1d\xc8\x44\x4e\x69\x8e\x18\xac\x01\x2a\xf7\x77\x02\x9f\x45\xf5\x4d\xa1\x86\x00\xee\xcd\x7c\x73\xec\x5e\xf0\x8c\xfa\xa9\x70\x79\x17\xfd\x69\x60\x58\x65\x72\x44\x86\x68\xa9\x34\x21\x03\x58\x1d\x27\x0a\xf1\x79\xc2\x13\x62\xfb\xf2\xd4\x0c\xf6\xfc\x7f\xf4\xcc\x66\x7f\xf9\xf5\x99\xd2\x7b\xba\xa3\x07\xcc\xe6\x35\xa7\xe3\xf7\x03\x45\x78\xf0\xa7\x88\x3a\x61\xaf\x3e\xac\x57\x97\xaa\x37\x85\xce\xc5\xb7\x69\xa7\xc0\xc6\x3c\x60\x04\x0e\x5c\xcd\x71\x9d\xc9\x34\x79\x9d\x4f\x2a\x8b\x7a\x52\xf5\x08\xb3\x28\x0f\xb1\x15\xb9\x40\x55\xe3\x1e\xf5\x15\xb8\x34\xb1\xf9\x53\x5e\x86\xe1\x12\xa6\xb0\x98\x69\x03\xa5\x14\x47\xbb\x51\x85\x3b\x4e\xa5\xe4\xd7\x85\xbf\x4e\xab\x91\x9d\x50\x8c\xd6\xdc\x12\xc4\xa3\x6d\xc1\xfa\x38\x7d\xa8\x85\x83\x2e\x39\x6a\x51\x90\x04\xf1\xbd\x62\xae\x55\x3a\x3c\x7f\xa6\xea\xb8\xa7\xf4\x44\x3b\xa9\x12\x82\xeb\x60\xaf\x10\x29\x9f\x50\x98\xbc\x13\x0d\x34\xcb\xbe\x7d\xdd\x69\xe5\x59\xf7\x0a\xc1\xcd\xdd\x1a\xfb\x43\xc7\xe9\xfc\xb7\x4a\x26\x4d\x4d\x56\x44\x84\xdf\x57\xe9\xe2\x03\x95\x2e\x36\xc1\x9f\x8b\x8b\xdd\x81\x35\x31\x97\x36\x70\x2e\xdf\x0b\x14\x65\xd6\xdb\x81\xf2\xab\x0a\xd1\x46\xd9\x2f\x4b\xa4\x1c\xf8\xad\xaf\xf0\x07\x9c\x56\x1f\x76\x7a\xf3\x9c\xc6\xc2\xc1\x2a\x26\x27\xb2\x6e\x7c\xff\x9b\xd8\x88\x42\xc9\xe8\x5b\xee\x67\x15\x7b\x0e\x0b\xf7\x8b\x9a\x6a\x8b\x64\x9f\x34\x32\x04\xc1\xad\xc8\x4d\x84\x27\xfb\x0e\xfe\x08\xc6\x28\xb6\xae\x7b\x59\xb4\x22\x8b\x86\x91\x1d\xcc\x79\xb3\x8f\xf5\x42\x91\xe5\xb6\xe6\x91\x7e\x57\x01\xed\x27\x69\x62\xd7\x5e\xa8\x7e\x09\xf1\xf9\x95\xc0\x6b\x10\x6f\x04\x8a\x01\xf6\x3e\x75\xb5\x1c\x29\xbb\xef\x27\x9d\xc1\xe3\xe9\x21\x55\x98\xa8\xf9\x9e\x92\x5b\x47\xbe\xc2\x83\x7b\x48\x7d\xd1\x27\x64\xcd\x53\xd7\xf0\x3a\xe4\x6c\xef\xa9\x99\x57\x0e\xd8\x4e\x9c\xf7\x28\x94\x6e\x55\x21\xf7\x55\x1c\x04\x94\x43\x77\xac\x2b\xe4\xdf\x7b\x88\x33\x14\x57\xc3\x7e\x87\x37\x7a\x56\x49\xce\x57\xf1\x6b\xf5\x95\x45\x8e\x86\x1e\x40\x04\x9e\xda\xf0\xc2\xa4\x40\x47\x27\x48\xa4\x1a\x3b\x6a\xce\x58\x8d\xe8\xd4\x83\xab\xa9\x45\xe1\x47\x98\x90\xe8\x81\x84\x22\x69\x33\x6e\xe1\xe0\x2b\x90\x87\x65\x25\x90\x06\x87\x28\xdf\x34\x70\xd3\x5f\xec\x96\x89\x3d\x3c\x8d\x4d\x24\xfc\xaf\x0c\xf9\xc4\x73\x09\xfe\x73\xf3\xd6\x73\xd2\xcb\x26\x1a\x80\x2b\x47\x54\xc9\x2a\xef\x8e\x0a\xec\xc9\x99\x8f\x5b\x8e\xe1\xe9\x71\xae\x7e\xa0\x66\x8c\x2e\xcc\x74\xf7\xdf\x1b\x90\xcc\x46\xc9\x8a\x75\x68\x32\x84\x8e\x57\x29\xe7\xe1\x6b\x37\xa6\xd1\x2f\xfb\xfd\xd8\xc6\xd1\xb2\x55\xc5\x98\x23\x6a\x6e\xe1\x88\xc2\x96\x2c\x47\xe1\x32\x88\x73\x84\xfb\xa9\xda\x72\x42\xfd\x24\xe5\xcb\xa9\x59\xdb\x59\x3d\x23\xed\xd7\x1b\xbb\xe8\x4b\x61\x29\x2e\xcd\x36\x87\x21\x22\xa6\xbb\xb5\xe7\x29\x21\x4f\x2a\xb9\xa4\x2d\x34\xd8\xc0\xb3\x37\xe8\x45\xa0\x9a\xf2\x40\x33\x32\x72\x40\x50\x7b\xd7\xd8\xe1\xd7\xb5\x34\xbd\x8d\xe3\xca\xc6\x6d\x57\x3e\xe7\xac\x52\xda\xbf\x4a\xb6\xdc\x8d\x9e\x7a\xc6\x9d\x1b\xe4\xd1\xf8\x3f\x90\xad\xcb\xcd\xe6\x1d\xb1\xff\x95\x03\xdd\x70\x9c\x45\x79\x21\x24\x65\x38\xa8\x4c\x79\xc0\x37\x0d\x71\x9d\x57\x77\x77\x8b\x31\x65\x47\x09\xdb\x14\x54\x61\x19\x4f\x0b\xfb\x70\x55\x4f\x12\x5f\x51\x6d\xe0\x2a\xcc\xa5\x32\x73\xc7\x51\xea\x3e\x52\xc4\x21\x1b\x7a\x41\x2e\xe9\xf9\x2e\x1b\x92\xf6\xfc\xab\xbb\x35\xe7\xe6\xcb\xae\x58\xba\x4b\x4b\x76\xe5\x42\xbd\x03\x24\x11\x9c\x35\x5f\xcf\x3e\x53\x93\x22\x49\x72\xcb\xd3\x14\x2c\xc9\xaa\xc6\x08\xd6\x67\xaa\x0b\x72\x42\x99\x06\x82\xe2\xcf\x79\x47\xc5\xb4\x72\x9a\x71\x05\x5b\xe5\x99\x75\xef\xf2\x33\x53\xd8\x5d\x8a\x31\x73\x0e\x80\x4c\x78\x9d\x77\xf0\x0e\x51\x14\x41\xec\x0f\xf7\xf1\x1c\x0d\x45\xc3\x6a\x3e\x44\xf1\xcd\x71\x80\x2f\x89\x8a\xff\x79\xda\x0d\x38\x8c\x1f\xc1\x68\xa2\x8f\xf3\x68\xa6\xe0\xd2\x6f\x92\x99\xc6\x69\xc4\xd7\x04\x94\x62\x0b\xe6\xb9\xf1\x54\xb7\x60\xe5\x18\xa9\x34\x53\xf8\x98\x33\x64\xfe\x65\x36\x45\x0e\x50\xfe\x92\x94\x60\x65\x7e\x5d\x31\xfb\xfe\x8d\xc2\x81\x8e\x4c\x94\xec\xa8\x5e\x9f\x23\x32\x5c\x52\x7d\x20\x07\x87\x3b\x4b\x23\x32\x4e\xaf\xcb\x13\x85\xdc\x56\xc0\x46\x24\x8d\xfc\xcb\x6d\x62\x3c\x26\x29\xc6\x99\x39\xdc\x51\xfa\x00\x6f\xd3\x87\xf0\x75\xe0\x13\x7d\x8a\x27\xc0\x2f\x25\x52\xa7\x3f\xa5\x43\x8d\xaf\xc0\x22\x87\xa2\x38\x2d\x5f\x3b\x1d\x0e\x9f\xab\x5e\x8c\x83\x86\x7f\xf9\x10\x6f\xf6\xf7\xf1\xd0\xb2\x49\xab\x25\x57\x0c\x14\xfb\x3d\x3b\xa3\x9b\xe3\xd8\x8e\x26\x1e\xea\xb8\x5c\x6d\xc5\xaf\x63\x2e\x13\x88\xaa\x5f\xec\x39\xfb\xb9\xfa\x79\x9c\x50\x67\x7d\x85\x4a\xe8\xc9\xe7\xc9\xaf\x42\xdf\xe1\x97\x7a\x8a\x55\xec\x91\x4a\x16\x1e\xa8\x16\x49\x92\x66\x3b\x34\xd4\x59\x19\xaa\x4b\x9a\x16\x7d\xae\xa7\x88\x0b\xef\x73\xb1\x15\x0f\xf6\xff\x69\xda\x8e\x53\x33\x85\xa2\x6e\xa3\x9d\x5c\xaa\x3e\xb2\xc0\x8c\x0c\xb6\x22\xa4\xf7\xf8\x3a\x78\x51\x86\x02\xc8\x29\x44\x23\x53\xa4\x32\x2c\x5a\x63\x25\xe6\x1b\x95\xab\x8d\xa3\xcc\x72\xee\x28\x98\x46\x8f\xf3\x38\xda\x18\xae\x78\x75\x77\x37\x2f\x32\x9b\x8c\x8a\xb1\x75\x1a\xb6\xc8\x19\xd9\x25\xf2\x8d\x6a\x16\x66\x36\x8c\x4d\x34\x79\x3c\xb5\x95\xef\x55\x4f\xd2\x81\x8d\xf3\x79\x2f\x09\xf2\xb1\xc6\x15\xc3\x6d\xf0\x7f\xcc\x14\x62\xe6\xa4\x1b\xd7\x9b\xa4\x2b\x76\xb0\x43\xa7\x12\x33\x1d\x23\x78\x80\x11\xa7\xc8\x38\xcb\x4f\xe3\x2c\xab\xa1\x19\x79\x19\x57\x02\x3d\x94\xe5\xf7\xff\xd0\xc4\x31\x21\xa3\x5d\x38\xfe\x07\x58\x61\xa7\x6a\xb0\x24\x9d\x9e\x77\x03\xaf\x3c\x7b\x5c\x59\xdc\xcc\xc6\x91\x5d\xb1\x08\xaf\x45\xd3\x4f\xc9\xd5\x03\xba\xcc\xb5\x58\xb5\x9c\x83\x28\x3d\x1c\x0d\xb8\x46\xd8\x86\xa3\xf7\x3f\x1a\x9b\xb5\x74\x38\x64\x16\x38\x89\x34\x3b\x4e\x97\xf6\x0a\x8c\x1e\x36\xee\x87\x8d\xd1\x7a\xa8\x1d\x4c\xd2\x64\x95\x18\x33\xd9\x60\x29\x49\xb8\xfd\x4e\x12\xce\xef\xa7\xd5\x2c\xe5\x65\x11\x96\xd7\x8e\x13\x55\xc1\xf1\x85\x59\x85\xa2\x0b\x5f\x2b\xf2\x08\x33\x1c\x8d\x0d\x4f\x90\x38\x90\x4d\xf5\xa6\xa4\x5a\x2b\xb0\x9d\x51\xba\x86\xf9\x1a\x84\xaa\x8c\xec\xe2\x1b\x35\x37\x1a\xa6\x49\x68\xb3\x84\xf9\x1e\x61\x91\xb6\xaf\x6b\x16\xde\xea\x01\x01\x57\x03\x9d\x30\x4c\xd8\x39\xc5\x1f\xc1\xa8\x50\xac\xda\x3d\xf8\x13\x9e\x1c\x0e\x54\x9b\x06\x85\x54\xa7\x59\x50\xad\x2d\x36\x1e\x4f\xe5\x22\xa4\xf8\xb4\xad\x31\x97\xaf\xda\x38\x76\x35\x36\x3c\xe5\x3b\x81\x1f\xef\x7b\xc7\x93\xc7\x67\x29\x85\x7d\x78\x1b\xa2\xcd\xa4\xfc\xff\x87\x6e\x76\x9a\x68\x9f\x26\x51\x22\xd3\x98\x88\x38\x4e\x21\x04\xe0\x9b\x36\xb6\xfb\x55\x93\xe5\x66\xb5\xa3\xc9\x2a\x6b\xad\xbb\x67\x1d\x3e\x7e\x1a\x65\x76\x30\xef\x31\xee\x7c\x76\x10\x07\x9c\x9e\xd5\x80\x77\xd5\x0a\x32\xfe\xa2\xf7\x79\x75\x0a\x06\x51\x5e\x64\x51\xbf\xc4\x10\x83\x23\x55\x80\x12\x9a\x30\x02\xa8\x39\xf4\x2a\x88\x22\xe9\xa3\x8e\xd3\x9a\xc4\xf8\x19\x5f\xb7\x25\xb2\xd3\x34\xaf\xa2\xae\x45\x2f\xa9\xaa\x18\x94\x6e\x2a\xfa\xe2\xf7\xdd\xe4\x59\x98\x45\xc4\xff\xa7\x66\x4f\x3e\xa2\x47\x82\x69\xe7\x18\x54\x10\x4c\xbb\x74\xfe\x17\x15\x69\x46\xf5\x75\x6c\x0b\x20\x52\x11\xf3\x80\x84\x51\x18\xa9\x14\x88\xf8\x18\xf2\x2e\x37\x36\xe0\x30\x59\x3f\x51\x7c\xb7\x89\x59\xe6\xe0\x11\xcb\xdd\xa1\x98\x1a\x6e\x9f\xe5\x6a\x04\xd9\xbf\x4b\xb3\xe7\xc5\x25\xec\xc5\xe2\xa3\x8b\x3c\xf6\xda\xac\x05\x2f\x76\x8b\x68\x62\x91\x1a\x39\x68\xaf\x52\x9a\x6e\xe1\x36\x7b\xad\xf2\x4a\x83\x28\x61\x02\x01\xa9\x53\xfa\xb9\xa6\x53\x33\x5f\x82\x5d\x1d\xaf\xed\xac\x2d\x5f\x75\x3c\xe0\xbd\x3b\x3d\x8a\x9e\x44\x4e\xaa\xfa\x4e\xee\x3c\x3a\x26\xb0\x0d\x8d\x0c\x03\x1e\x86\xe9\x87\x02\x8d\xff\xba\xa0\x59\x4e\x10\xe1\x09\xb2\xbb\xf3\x15\xd1\x4f\xbb\xaa\xba\xbb\xd4\x49\xa0\xfe\x13\x37\x3d\x66\x9e\xf9\x76\x43\xd1\x26\x6c\x68\xa9\xe6\x6b\x9a\xdf\x32\x4e\xcb\x70\xdc\x51\x66\x2e\xf0\x99\xce\x45\xaf\x03\x99\xae\xd8\x64\xce\xef\x53\x0e\xd3\xdc\x06\x76\x9b\xf9\xdc\x4c\xe9\x30\x8f\x45\xe2\x0b\xc6\x8a\xc1\xd2\x7c\xa3\x3b\x89\x51\xbf\xcf\x12\x97\xae\x1e\xaa\xd4\x0b\x6f\xea\x22\x5a\x66\x01\xf8\x47\x99\x90\xa7\x07\xf8\x46\xe1\xc6\x86\x65\x5c\xa4\xc9\x5c\x8d\x0e\xa2\xfa\x35\x54\x2f\x1e\x06\x8a\x95\xeb\x82\x3b\x35\x51\x92\x57\xeb\x29\x3a\x66\x68\x8a\x70\x89\x85\x6f\x5a\xc0\x9a\xfb\xbb\x71\x99\x09\xcf\x24\xfa\x23\x1f\xe1\x9b\xf2\x4d\xa3\x83\x4b\xf9\x3c\x2b\x72\xb0\xdc\x6a\xe0\xc7\x1a\xef\x36\xb2\x36\xe8\xf6\xe6\xd3\x34\x19\x08\x78\x57\x18\x65\x54\xef\xe5\x42\x1b\x9d\x75\x92\x26\x79\x91\x4e\xc9\x34\xf1\x50\x2b\x7d\x94\x0c\xb8\xfa\x6c\xab\xca\xb1\x19\xb9\xc7\x34\x16\xb4\x97\x71\xc0\xef\xd3\x5e\x66\x5c\xfa\xcc\x8f\x1a\x5e\x56\x69\xcb\x53\x3d\x1f\x63\x0e\xb9\xde\x20\x0d\x1f\x35\xde\xfd\xa3\x5a\x1d\x24\x8d\x07\x9f\x45\xd5\x18\x87\xee\xff\xe2\x38\x93\x65\x78\x51\x27\x42\xf9\xee\x5c\xa0\x5a\x38\xf7\x61\x7e\x18\x56\x18\xe8\xc6\xc9\x9c\x57\x36\xbe\x8f\xc2\x2f\xfc\x18\x53\xc9\x70\xc1\x8d\xbe\x1c\x1a\xd5\xe7\x54\x2d\xe3\x63\x4a\x98\x60\xb8\xef\x05\x9e\x22\xe5\x92\x62\x18\xb8\x3b\x53\x74\x35\x97\x29\x58\x82\x73\x79\x06\xe9\xb0\x1b\x56\xf2\x29\xf5\x45\x18\x48\xb8\xad\x2d\x00\xed\xf1\x17\x0e\x3a\x5f\xfa\x4d\x8e\xd2\x2f\x3a\x62\xc8\xcc\x7e\xad\x8c\x3c\x8b\x02\x3e\x0a\x00\x19\xbe\xde\x4c\xa9\x3a\xca\xd2\x72\xda\x51\xec\xe4\x67\x81\x26\xe4\x1b\x75\x84\xfa\xe9\x1a\x0c\x25\x1f\xe5\x40\x51\x8d\x5f\x6a\xc4\x51\x84\xc1\x36\x65\x91\x4e\xd2\x7e\x14\x5b\x35\xcf\x71\x46\x8d\xdf\x9e\x99\x7d\x56\xf1\x9a\xe7\xa1\xc9\xb2\x88\x84\x78\xab\xcf\x41\x1f\x1b\x68\x15\xbe\x6e\xc7\x3c\x7b\xb9\x71\x94\x09\x8f\x04\x4a\xde\xab\xbd\x7d\x0c\x3e\x63\xfe\x2d\xc4\xc3\x2c\xbd\xc9\x37\xaa\xc0\x92\x9b\x2a\x48\x71\x28\x68\xc9\xef\xd4\xde\x6c\x0e\xe6\x55\x47\x2f\x2f\xfb\x83\x52\xd2\x05\xd8\x01\xc0\xdf\xf9\x7a\xe6\x33\xde\xc2\x80\xc5\x49\x20\x59\xa7\x15\x3c\xeb\xb4\x42\xf5\xbc\xb4\xef\xa5\x79\xdf\x5a\xbf\xaf\x44\x75\xaf\xe8\xd8\xf4\xa9\x1e\xce\x06\x82\xba\x63\x9a\x11\xc2\xe4\xcb\x3c\x73\x0d\x70\xc9\xef\xcf\xfc\x84\x0e\x78\x06\x65\x60\xd8\x31\x9e\x0c\x87\x51\x18\xd9\x24\x5c\xc3\xef\xe1\x2b\x43\x35\x0d\x8b\x75\x2f\xf0\x74\x81\x97\x5d\xcc\x56\x98\x2c\x1a\x0e\xf3\x6d\x4a\xae\xe8\x4a\x8d\x61\x16\xcb\x89\x3b\xe6\x34\x70\xd6\xb9\xf2\x93\xd2\xbc\x68\x49\xda\x27\xe5\xa4\x1f\x33\x7f\xd4\xa3\x47\x6a\x51\x6f\xc0\x13\x22\xf9\x3c\xd1\x8e\xf3\x9f\x4e\xad\x71\x7c\x92\xb0\xb5\x3c\x9c\xc3\x37\x81\xb6\x34\x85\xcd\x7e\x81\xac\x89\x53\xf2\xab\x4e\x16\xda\x24\x5b\x28\x87\x96\xd9\x91\x8e\xa3\xe1\x9f\x51\x9f\xdb\x35\x5f\xdc\xcc\x17\x73\xe0\xe0\xe6\x53\x2c\xc0\xa3\x3b\x64\x2e\x90\xa8\xb0\xa2\x37\xba\xbe\x27\x91\xa9\xa0\x8e\x71\x53\x55\x61\x2e\x2a\x28\xd6\xd7\xd5\xe4\x0f\xd7\x0b\xb1\x39\xae\xa3\xa2\x07\xd3\x71\x0e\x66\xcf\x4d\x82\x55\xdf\x1c\x06\xe1\x06\x4c\x1d\xca\x0b\x2c\x79\x88\xf8\xff\x4f\xb8\x2d\x87\xe0\xf1\x87\x33\xc5\x5b\xf0\x10\x3d\x3a\xf8\x9d\x63\x34\x7e\x86\x11\x97\xa3\x2d\x87\xad\x6b\xc2\xca\x28\x09\xc8\xcd\xf1\x5b\x7a\xce\xb2\x0b\x2a\x95\x9a\xda\xcc\xbe\x31\x57\x2d\x1f\xca\x52\xc7\x67\x8a\xd8\xf0\xfc\xcc\x43\x80\x6e\x35\x80\x5b\x5f\xf8\x02\x68\xc1\xe6\x6a\x62\x95\x6e\x12\x96\xd5\x74\x45\x43\xe5\xf3\x2a\x55\x9f\x66\x36\xb7\x49\x01\x89\x10\xed\xc4\x59\xed\x89\x6f\x1a\x8d\xb0\x2a\x59\x14\x02\x3e\xee\xf4\x2a\xe4\xc7\x25\x75\x70\xff\xc5\xaf\xfe\x37\x9d\xea\xb1\x1c\xf9\x84\x83\x84\xdf\x56\xe8\xcb\xa9\xc9\xd2\xc3\x6b\xf9\x84\x29\x8c\xa5\x7f\xd2\x71\xd2\x02\x4d\xfe\xed\xa5\xdd\x9e\x84\x40\xcc\x3e\x50\xbc\x6f\x2b\x74\x7f\x53\xd3\xbf\x4a\xbf\xd6\xf2\xc2\x4e\x18\x49\xca\x70\x40\x85\x57\xf8\xc3\x36\xc9\xaa\x61\x94\x0c\xe6\xbc\x22\xd8\x4f\x66\x4a\x4d\xe2\x88\x9a\xd7\xfe\x41\xe3\xd4\xee\x5d\xec\xc6\x5f\x48\x33\x6b\x64\x90\x03\x25\xa1\x9f\x69\x16\x80\x9f\x35\xec\xe8\xd2\xee\xa5\xee\x80\xde\x0f\x7c\x82\x5b\x12\xbf\x3c\xb5\xf5\xcb\x73\x5b\x99\x6a\xae\xd1\x89\xd4\x57\xf5\xd3\xb5\xfe\x30\xcf\x93\xb9\x76\xc1\xa4\x8c\x8b\x28\xb6\x2b\x16\x0b\x2f\x23\xb6\xbe\xf3\x75\x4e\xe5\x16\x79\x58\x16\x45\x6c\x81\x03\x06\x68\x81\x53\x2b\xbe\x09\x7c\xc6\xcf\xa8\x33\xbe\x51\x1d\xb3\xd8\x8e\x4c\xfc\x84\x9a\x1c\xfc\x76\xa0\x14\x46\x3b\xeb\xbe\x54\xb4\x95\xf0\x60\x6a\x52\x73\xd1\x71\x5b\x57\x9f\x03\x2b\xf3\x64\xcf\x93\x79\x9d\x50\x73\xa2\xe7\x03\x9f\xda\x99\xd5\x61\x9a\x21\x93\x72\x1c\x88\xfe\xe1\x10\x25\xc8\xce\xdd\x04\x36\x3f\xf8\x4a\x77\x69\xf7\xae\xea\x37\x25\x8c\xea\x38\xea\xd1\xdb\x81\x8a\x1e\x1e\xc0\xc2\xc1\xd0\xfc\x6f\xf5\xb9\x6b\x55\x63\xfc\x3f\x29\x5c\x72\x88\x3d\x17\x54\x08\x36\x13\xf5\xd1\x37\xc9\xaf\xc0\x82\x81\x35\xd7\xc9\x48\x2e\x1c\x74\x3d\x1d\x15\x86\xb0\x78\xb4\xf4\x46\x69\xad\x50\x5d\x3f\x41\x3c\x6b\x82\xc9\x73\x63\x84\x76\x64\xf2\x12\x49\x35\x07\x8b\x9a\x5d\xe1\x9c\xd7\x1d\xb5\x43\x9b\xb0\xf8\xfe\x7e\x9f\x1b\x55\x5f\x48\x92\x26\xbf\x0b\x6d\x99\xa5\x13\x93\x2d\xdb\x02\xe1\x05\xeb\x1b\xe0\xc7\x45\xec\xc0\x6f\xa7\x28\xa6\xbd\x30\xaf\x14\xaa\x37\x14\xa6\x16\x53\x92\x78\xa0\xab\x30\xd6\x7c\xa3\xe2\x87\x34\x09\xed\xb3\xd5\x32\x22\x02\x45\x15\x8d\x27\x82\xd9\x8c\xd7\x14\x5f\xf0\xa7\xff\x3d\xcc\xb8\xc8\xbf\x54\x8b\x0a\x63\x7f\x43\x93\xd2\x33\x26\x9d\x7d\x12\xed\x39\xa6\x25\xc6\x59\x82\x2b\x3c\x37\x53\xea\xdc\x10\xcc\xc3\xdf\x7d\x72\xdd\x0f\xbf\x43\x13\xe0\xd1\xb5\xb6\x91\x82\x61\x9a\xd9\xbc\x98\x23\x57\xeb\x4a\xe5\x6e\xf6\xe5\x76\xe0\x85\x0e\x8f\x28\xae\xe1\x69\x98\x3f\xe1\xc1\xe9\xa7\xf1\xed\x6a\x1b\xce\x4d\xfd\xbf\xea\x31\x22\x1e\x60\x7d\x6a\x56\xeb\x93\xd0\x37\x15\xe8\x89\x9a\x5c\xba\xaf\xf4\x93\xfa\x71\x99\x65\x6b\x8a\xa7\x02\x45\x33\xa1\xaa\x6a\x8b\x36\x93\xd4\x73\x38\xe1\x8c\x9e\xc1\xb6\xe5\x9b\xb6\x4c\xaf\x9f\x16\xe3\xf9\xca\xb3\x32\xa1\x1b\xbd\x1e\x96\xb0\x41\x31\x4e\xc8\x3a\xaa\x6f\x86\x82\xd3\x93\x0d\x19\xab\x57\x77\xbf\x46\xea\x4d\x1d\x6f\x92\xde\x0f\xb4\x9a\xa1\x4f\x7d\x57\xd2\xca\x83\x3c\xe1\x47\xd4\xae\xe0\xfd\xaa\x12\x83\x10\x68\x9d\xc4\xcb\xc6\xc9\xbc\x84\x36\x10\xdc\x35\x06\x7f\x71\xfd\xc7\x14\xd8\xf0\xbf\x07\x7e\x26\xec\xa9\xde\x67\x6b\x39\x48\x1c\x47\x23\x9b\x84\x16\x91\x22\x80\x97\x17\xb1\xd3\xd1\xc1\x3c\x45\x7f\x88\xaf\x67\x0a\x39\xf4\x7d\x8d\xf8\x3c\x5d\x1b\x90\x1e\xa7\x28\xff\x69\x00\x36\x5f\x37\x76\xdf\xeb\xaf\x77\xcb\x24\x26\x17\xb3\x77\xd1\x73\x0a\x1e\x72\x94\x88\x97\x6b\x7f\x7a\x25\x8a\x77\xfa\x3f\x7d\x83\x76\x13\x60\xc5\x4c\xa9\x82\x72\xf8\x3b\x58\x31\xa0\xbe\xb7\xf5\xd4\x50\xfa\x7d\x80\x0a\x1c\x8a\xe5\xd5\xdd\x8e\x6b\xd6\x13\x8d\xdc\x53\xf4\xcc\xf7\x66\x2a\xa1\xd9\xd0\x64\x05\x5b\x7a\xbb\x74\xd1\x77\x60\x27\x49\x47\xcb\xe9\xdf\xd5\x15\x8b\xbb\x35\xec\x67\x1a\x8e\x4b\xd7\x06\x51\x24\x6f\x0b\x6e\x2b\x7b\x1b\x65\x06\x83\x88\x20\xf7\x8e\xa2\xf7\xb2\x02\xc3\x5e\x6e\x74\x4c\x04\x0a\x60\x4d\x16\x47\x36\x9b\x27\x0f\x01\x3c\xc9\xb5\x99\x62\x03\x83\xb7\x70\x73\xe2\x7e\xbe\x7a\xcb\xba\x1a\x07\x3e\x3c\x4d\xf3\x12\xe2\x52\xaf\xf1\xc6\x05\x6b\xb3\xa3\x11\xde\xff\x8a\x74\x2e\x31\x8e\xc0\xff\xe1\x0c\xbd\x29\x8b\x72\x92\x70\x04\x2a\xa3\xf1\x6a\x4c\x5e\xd5\x33\x8a\xf1\xaa\x61\xee\x34\x44\xdb\x47\x03\x9f\xe9\x1c\x6d\x52\x93\xbc\x72\xa0\xbb\x12\xe5\x51\xc1\x7f\x1c\x29\xd7\xc7\x4a\xfe\xf1\xe3\xd9\x8b\x3e\xc7\x25\x36\xc7\x7c\x1c\x4d\x73\xd5\xd6\x02\x51\xa9\x4c\x2f\xf8\x58\x38\xcd\x8a\x71\x5a\x9b\x5a\xb9\xa0\xa7\x56\x74\xd8\x1c\x66\xe6\x0d\x20\xd4\x11\xd6\xff\x90\xbc\x06\x5f\x2b\xd8\x79\xdf\x24\x84\x25\x83\x9d\xfe\x86\x4a\x20\xef\x04\x8a\xc1\x8c\xe5\xfb\xdc\x86\xab\xed\xdd\xea\x6b\xb2\x12\x86\x9a\xca\xdb\x49\x36\x5f\x58\x17\xe8\x55\xb9\x9b\xea\x99\x65\x06\xbe\x55\x57\x64\xc5\x8c\x78\xe8\x12\x35\x17\x30\x81\xf1\xf5\xec\x39\xcd\xba\x9f\x4e\xec\x76\xcd\x76\xe2\x7b\xf7\x0f\xd4\x6c\xf9\x59\x3c\x01\x8e\x25\x53\x3b\x02\x0b\xf9\xe3\x99\x62\x5c\xbf\xab\xa0\x7b\xd3\xcc\xba\x92\x31\x47\x8e\xc7\x70\x7a\xf8\x46\x51\x10\x65\x69\x31\xce\xc3\x71\x14\x0f\x72\xa2\x20\xe2\x66\x27\x59\x19\x69\x7c\x6e\x76\x04\x87\x96\x76\xd3\xb4\xb8\x0b\xd3\xd1\xc6\x03\xa5\x34\x5f\xab\x37\xb5\x52\x85\x0f\x9a\xff\xcd\x57\x50\x36\x5c\xe7\x6f\x90\xbe\x61\x81\xde\x76\xee\xbd\x7a\x60\xf1\xe8\x6d\xb3\x0c\x44\xbb\x36\xe7\xe3\x83\xab\xb4\x6a\x35\x35\x59\x54\x06\xfe\xba\x66\xf4\x4c\x16\x6d\x53\x43\x71\xc7\x28\xc3\x85\xdb\x3c\x3d\xd3\xa3\x6e\xbe\xd4\x8f\x51\x78\x9c\xfa\xbf\x6f\x18\xdd\xaf\x2c\x70\xe3\xb6\x32\x2a\x8f\xa8\x32\xf0\xe8\x4a\x1b\x65\x79\x3e\xb1\xae\xbe\x03\x5f\xc4\xb4\x79\x7c\xd3\x36\x88\x90\x5b\x3b\x89\x92\x11\xc3\x35\xf0\xe5\x30\x4f\x84\x40\xe4\xa1\x92\x48\xf3\x44\xd6\x53\x93\x55\x59\x20\x78\xb8\xdb\x74\xeb\x1e\x23\xc5\xb4\x9a\xd7\x14\x5b\x14\x37\xc1\x86\x42\xef\xbb\x32\x12\x7d\x13\xa1\x43\x24\xd3\x25\xd6\xd0\x07\x74\x43\x13\xda\x1d\x9d\x25\x45\x91\x5b\xad\xbd\x8a\x72\x5e\x76\x40\x78\x6f\x3b\xb8\xb8\xc9\x37\x8a\x04\x15\x5a\x07\xfc\xa7\x1a\x90\x41\xd2\x86\x21\x36\x20\x61\xe4\x46\x60\xbe\xad\xe7\xeb\x2a\x0f\x74\x2b\xab\x49\xd0\xb4\x70\x90\x98\xae\xdc\xd6\x6e\xdb\xb3\x2d\x2c\x0d\xdd\x65\x6b\xa7\xfc\x6a\xb9\x47\x45\x71\x82\xf4\xab\x3e\xe7\x73\xae\xb2\x1f\xa6\x93\x49\x54\x14\xd6\xe6\x8a\x87\xf2\x04\x6c\x13\x33\xc5\x2b\x7e\xa4\x6f\xb7\xc5\x98\x71\x9a\x3b\xae\x0e\x69\x00\xfb\x74\xe8\x9d\x99\x6a\xd5\x04\xde\x23\x24\xd6\x0e\xec\x60\x87\x6f\x73\x3e\x00\xea\x16\xab\xf4\x10\x78\x5c\xbe\x21\x10\x87\xc3\xd0\xba\xc1\x97\x0d\x7a\x01\x0e\x8d\x54\x6d\x10\x69\x7a\xf9\x13\xbf\x67\xef\xbf\x61\xc4\xa6\xeb\xe2\x3b\x55\xda\x7b\xba\x2a\xbc\xad\xe7\x03\xe0\x22\x5b\x7b\xca\xcb\xc1\x3e\x44\x02\x84\xf8\xed\xb7\xc9\x07\xd4\x06\xcd\x70\x60\x8f\xc3\xac\xa1\xde\x7c\x43\x09\xc8\x6f\x5d\x57\x3c\x7a\xbf\x87\xb8\x4e\xd3\x03\x00\x20\x71\x8d\x22\x13\xf8\xe9\x7b\x4a\xbe\x37\xcc\xac\x9d\x4a\x98\xdb\xae\x89\xeb\x52\xa4\xc3\x53\x9b\xb8\x29\x53\x04\xb2\x98\x52\xe1\x6b\x47\x54\x91\x98\x37\x22\xd5\x8d\xc4\xa0\x14\xd6\x8e\x15\xc6\x60\xe3\x3b\xeb\xde\x4b\x7c\xad\x34\x19\xcf\x6b\x49\x22\xe7\x53\xd7\x73\x2a\x6d\x02\xbd\xbd\xd3\xb4\xdc\xd2\xf3\x43\x92\x5b\xd6\x3d\xb6\x37\x9a\x4c\xd3\xac\x30\x49\x68\x77\xa8\x56\x00\x52\x0a\xd1\x5e\xaf\xde\x35\xbe\xe7\x43\x3a\x91\x35\x8a\x32\x19\xc9\xf3\x8b\xf1\x10\xfe\x09\x11\xc2\x3f\xa8\x47\x6a\x56\xd9\xab\x37\x22\x55\xf6\x96\x89\xd3\x89\xcd\xa2\x42\xa9\xce\x9f\x0d\x6a\x02\x5a\x4e\x8c\x35\xfc\x5a\x69\xaa\x68\xbb\x26\xc4\xb5\x51\xc3\xd3\x3d\xa3\x50\x6b\x79\xf1\x64\xf5\x95\xb8\x27\x81\x84\x03\x0b\xc8\xd3\xe1\xa2\x65\xaa\x7a\x73\x17\x35\xce\xee\x89\x9e\xcf\x76\x20\xd0\x8c\xa8\x05\x78\x4d\x44\xc5\x9d\x75\x4f\x35\x7e\xa7\x75\x06\x77\x35\xcd\x32\x86\x5c\xbd\xc6\x5b\xf1\x6e\xa0\xf0\x22\xe7\x75\xbb\xf6\x0c\xce\x3c\x17\xf5\x2a\x7b\x61\x93\x01\xf1\x04\xe6\xf3\x3e\xc8\xfe\x44\x27\x2f\x37\x71\x60\x04\x1d\xe9\xc1\x7f\x0f\xda\x0a\x58\x54\x3a\x8e\xb9\x7e\xce\x2a\x1d\x9a\x69\xe8\x4f\x6b\xa2\xe8\xcd\x6f\x54\xfd\x89\x7e\x4e\xc5\x3a\xc5\xa9\x81\x91\x45\xbe\x6e\x7c\xec\x9e\x3d\xdd\x7e\x9a\x94\xb9\x74\x0a\x79\x64\x6d\xa6\x8a\xa9\xb7\x55\x35\x61\x12\x0d\x8a\x74\x35\x99\xf7\xf1\xd3\x27\x74\x5c\x85\x34\x86\x5e\x24\xdf\x04\x4a\x28\xf1\x13\xd7\xb3\x0d\xb3\x74\x35\xa1\x00\x01\x41\xde\x29\x55\xce\x3a\x8e\xb5\x43\xb5\xee\xaf\x14\x56\x33\x2f\x4c\x32\x30\xd9\xe0\x89\xea\xab\xa0\x5d\xcc\x6c\x0c\xc8\x92\x7e\xa6\x69\x96\x6e\xab\x8a\x0f\x08\x37\x51\x15\x79\xa0\x82\x87\xcb\x70\x38\x0e\xea\xa9\xf7\xac\xf7\xa9\x80\xea\xc4\x6b\xdb\x35\x41\x68\x3d\x71\xef\x38\x76\xbb\x4b\xf5\xea\xc0\xe3\x0a\x02\x2d\x88\xfa\xa1\x09\xf3\x68\x22\x6d\x2c\x58\xa2\x5b\x6a\xa8\xee\x56\xe3\x60\xee\xdb\x57\x6d\x96\x58\xaa\xc9\x12\x28\x29\xb4\xc2\xe9\xcd\x4c\x66\xaf\xee\x5e\xec\xbe\xfe\xfa\x36\xd5\x07\xb9\x4c\x6f\x4e\x66\x0d\xe8\xcd\xb9\x81\xbe\x45\x4f\x1e\xe3\xe1\x81\xff\x4b\xbd\x47\x9a\xac\x3d\x5d\x9d\x35\x51\x2a\x68\x2a\x7e\x00\x5e\x84\xb1\x36\x7e\x1d\x81\x42\x0c\xdd\x45\x7a\x86\x93\x76\x4d\x8b\xbd\xf0\xd8\x39\x70\x98\xdf\x9f\x79\x7f\xcc\x35\x21\x38\xa0\x0f\x90\xc4\xf3\xe7\xd3\x7a\xa1\xb0\xa7\x27\xb9\xc6\x26\x19\xc4\x36\x9f\xaf\x1c\xa7\x8c\x13\xd6\x06\xf5\x83\xda\xd4\xa1\x1a\xda\x57\x2d\xba\x91\x99\xf4\xbd\x48\x86\x54\x96\x3b\x8e\x5e\xf7\x67\xaa\x43\x1a\x25\xac\x62\xf8\xea\x6e\x07\x09\x53\xf0\x30\x35\xd3\x91\x0e\x87\xd3\xb2\x28\x9c\x36\x28\x97\x9f\x14\x68\xf7\x88\xb3\xaf\x65\x6e\x87\x65\x9c\x58\xe6\x0d\x77\xec\x65\xfe\x85\xff\x4e\x0b\xfe\xe4\xe5\xee\xd8\xc6\x53\x36\x6f\x70\x64\x77\x95\xf4\xff\x49\x6a\x12\x0b\x85\x52\x73\xa2\x4d\x64\x8f\xa9\x4e\xc4\xda\x4f\xd4\x1b\xc2\x19\x7a\x84\xf7\x27\xd1\x94\x87\x7f\xfd\xaf\x2d\x84\x14\xaf\x75\x4d\x62\xe2\xb5\x3c\xca\x6b\xe2\x9f\x7e\xfe\xaa\x55\xdf\x91\x65\x67\x13\x07\x7e\x80\x47\x3b\x15\x28\x68\xef\x29\xaf\x34\x67\x57\x6c\x9c\x4e\xf3\x79\x35\x58\xf6\x54\xcf\x13\x9e\x5c\xd4\xde\xe4\x01\x21\x65\xa5\x52\xed\x73\x68\x93\x14\x51\x18\x4d\x4d\x21\xb5\x0b\x69\xd3\x7b\x93\x77\x1e\xbd\x21\x36\x88\x61\x96\x92\x38\x6c\x9e\xa7\x2c\xa4\x80\x15\x3d\x3d\x53\xe5\xbe\xf3\x81\x22\xcd\x62\x39\x64\xfe\x31\x85\x45\x1a\xa7\xf1\x20\xdf\x4e\xdf\x0d\xe5\x28\x60\x58\x44\xe7\x87\x4e\x08\xeb\x1c\x51\xc1\x59\x28\x5e\x55\x25\x8a\xde\x8f\xa0\x7b\xbc\x96\x79\xb8\x2c\xc1\x37\x6a\xdc\xdb\xd5\x2c\xe8\xcf\x70\xa8\x80\x02\x9a\x5b\x97\xd0\x28\x8e\x0c\x90\xe5\x02\x06\xac\x16\x12\x65\xda\x77\x67\x0a\x6a\xda\xc0\x77\x7c\xb1\xb2\x9b\xfd\x28\x91\x4f\xc4\xcf\x41\x75\x56\x64\x21\x14\x53\xd3\x5d\x05\x67\x9f\x44\x89\x80\x73\x5c\xa7\xda\x3d\xe7\xe9\x1a\xb8\x60\xc5\x64\x91\xe9\xc7\x6b\x73\x64\x2a\x9c\x2e\x73\xb5\x23\x61\x77\xee\xaa\x2a\xf5\x85\xd9\x67\x54\xac\x3f\x1c\x42\x0a\x42\x3d\x50\xe0\xeb\x92\x17\xd5\xc1\x9f\xda\x24\x79\x23\x8d\xe2\x0e\x59\x1a\x07\x0c\xdd\xeb\x81\xa1\x2d\xaa\x11\x83\x34\x2c\x27\x55\xa6\xc7\x94\x23\x8e\x44\x55\xc5\xad\xbb\x54\x41\x88\xc6\xbb\xb7\xab\xfa\x3c\x06\x54\x84\x12\x56\x85\x78\x1f\xd4\x7a\xa1\xaa\x62\xfa\x01\x9d\x3e\xfe\x0f\xe5\xae\x07\x36\x36\x6b\x76\x80\x3f\xce\xec\x4a\x81\x2f\x6d\x41\x69\xc3\xb1\x2e\x79\xdd\x61\x70\x36\x39\xc8\xe1\x5e\xef\x36\x3d\x60\x63\x6c\xb3\xb4\x53\x19\x10\x38\x87\x93\x81\x57\x1c\x3f\xd9\xe8\x23\xee\xdb\xd7\x9d\x66\xe9\x28\x33\x93\x89\xcb\xe2\x1c\x7f\xb4\x23\x3c\x3a\xd6\x68\x81\x2e\xed\xef\x4e\xd2\xcc\x02\x41\x82\x9c\xea\x3a\x5e\x32\xdf\xb8\x1e\x5b\x66\x57\x98\xdd\x53\x81\x41\xee\x6a\x5a\xfb\xbb\x6d\x6c\xd8\xbc\x42\xba\x5b\x8f\xc1\x52\xbe\x6e\xe3\x54\x49\xb3\x81\xcd\x3a\x3a\xf9\xd4\xe4\xf9\x0a\x78\x9b\x8f\x53\x01\x55\x22\x82\x3b\xab\xc3\xb9\xb3\xae\xff\xb3\x12\xa5\x71\x65\x70\x10\xf9\x39\x9d\x3b\x17\x5a\x70\x55\x1a\xfb\x7a\xbb\xd2\xdd\xaf\x0e\x5a\x99\x7b\x7e\x78\x04\xaa\x7f\xa0\x06\xa4\xff\xa0\xad\x4a\xb3\x3a\x4e\x63\x66\x76\x70\x05\x6c\x65\x42\x7c\x6e\x3a\xb0\x71\x79\xd8\x2a\x2a\x14\x08\x87\xc9\x1c\x55\x9b\xcb\x98\x94\xd5\xea\x50\x0e\x2d\xaa\x6f\xf4\xbe\xd0\x4f\x3b\xa3\xe6\x43\xef\x2b\xcb\x57\x98\xe5\x2a\xf1\x5e\x38\xe8\x48\x79\xe8\xc4\x21\x02\x40\xa5\x47\x40\xf0\x3e\xa3\xb5\x76\x4a\xa3\x0f\x22\xf3\xe4\x65\x19\xdf\xa4\x15\xa0\xdf\xd8\xfa\x42\xcf\x67\x04\x5c\xb7\xc3\x83\x7d\x87\x2c\x1a\x6c\x8b\x96\x21\xd8\xa9\x68\xa8\x7f\xa6\x35\xc4\xe7\x99\x15\x4f\xb1\xb4\x2e\xb0\x81\xb9\x89\xf8\x89\xa1\xcd\xda\xf2\x33\x4b\x23\xac\xeb\x13\x3d\xdf\xa5\xfb\xb3\x17\x54\x4e\x59\x26\x51\xbe\x96\xc3\xcc\xc8\xd4\x97\x97\xb2\xd0\xf6\x62\x6a\x4d\x96\xa7\xc9\xbc\x2a\x07\x5f\x52\x95\x85\x07\x2a\xcd\x3d\x33\xf3\x41\xc8\xb7\x94\x55\x1b\xda\x2c\x31\xc9\x20\xd5\xe3\xfb\x88\x9f\xa4\x4f\xf0\x59\x85\x25\x06\x63\x79\x9a\x98\xb8\xa3\xf8\xcf\xd0\xcf\xe5\xeb\x06\xed\xdc\xc1\x57\xba\xfd\x08\x82\xe0\x58\x05\x54\x5c\xf9\xba\xad\x1f\x35\xb1\x2c\x00\x22\x50\x48\x8f\x15\xba\xac\x0f\xcd\x45\x55\xc0\x2e\xa2\x81\x89\xe7\x3c\x6e\x10\x20\x16\xe1\xff\xa3\x65\x47\x82\xf9\x81\x3a\x93\x61\x1a\x97\x13\xb0\xca\x20\xe1\x63\x68\x9e\x0b\x63\x94\x30\x9e\x5f\xf5\x89\x1d\x44\x21\xba\xa8\x42\xb7\xf2\xbb\x8c\x91\xe5\xbb\x19\x40\xc0\xd5\x9e\x78\xd4\x2c\xe5\xed\x59\xe8\x4e\xd3\x32\x19\x60\xda\x4c\x26\x76\x6b\x03\xf0\xb4\xb8\xa8\x69\xdf\x0c\x5e\x54\xf3\x06\xc9\x20\x0f\x0d\x2a\x1f\xaf\x4a\xb5\xf1\x84\x2a\xab\x9e\x50\x48\xee\x22\x9a\xd8\xc2\xf4\x63\x3b\xef\xb5\x08\x11\x65\x39\x1c\xad\xd3\x4a\x82\x23\x13\x4a\xb5\x9d\x6e\xda\xc3\x24\xf4\x22\x90\xa8\xce\xf5\x14\x13\xe5\x4d\x25\x83\x78\x65\xe6\x63\xde\x7c\x5c\x0e\x87\x9c\xbe\x38\xe5\xd9\xea\x70\xf0\x4d\x1b\x3c\xf5\x40\x37\x4c\xa7\x6b\x9a\x95\x85\xcd\xa8\xa4\x10\x2f\x28\x8f\x9d\x53\x3d\x27\x4d\xb6\xf9\x42\xe8\x4f\xf1\x82\x85\xa4\xd5\xb7\x8b\x40\x2c\xee\x60\xe2\x4e\x71\xb2\xd3\x6b\x8b\x4a\xa3\x84\x90\xdc\x1c\xaa\xa0\x67\xf6\x4d\xda\x04\xc2\x16\x4f\x5f\x44\x66\x0e\x24\x8b\x2d\xac\x2d\xc6\x73\x0a\xd1\x87\xe2\x0e\x92\x3c\xf4\x2d\x58\x41\xcb\x35\x89\xc2\xac\xcc\x0d\xcb\xea\xb3\x22\x6f\xa0\x22\x9d\x7b\x6d\x49\x5e\x39\x9d\x56\x9e\xc6\xe9\x3b\x32\xb0\x58\xd4\xf5\x7c\x82\x3c\xb0\x13\x03\x18\xae\x0f\x40\xff\x98\x16\x42\x9a\xa5\x8a\x85\x74\x6c\xb2\xe9\x0e\x5f\x7c\xfd\x7b\xe5\xb9\x59\xa7\x57\x06\x35\x3d\x5c\x87\x43\x36\xf8\xb8\xbf\x85\x81\x73\x44\x5c\x1e\xe2\x75\xd1\x11\xfb\x7e\x35\x2d\xb3\xc4\xc4\x90\xcf\xf0\x25\x23\xcc\x7b\xf3\x75\x0b\x7b\xff\xfe\xee\x30\x8e\x48\x1f\xa5\xfa\xa2\xd2\xd7\xef\xb8\xa1\xf8\x9f\x3b\xa7\x39\x4a\xd3\xc1\x9a\x35\xd9\xbc\xff\xcf\xeb\x7a\x60\xf9\x13\xc4\xcb\x28\x17\xdd\xad\x21\x23\xeb\xed\xd6\xc1\xd3\x0a\x68\xf0\xb6\x26\x75\xba\x06\xd7\xc5\x37\xb0\x13\xfc\x63\x4a\x50\xe5\x74\xa0\xda\x51\xd0\x9b\xc6\x87\x42\x5f\x0c\xe1\xf3\xd6\x9e\xa2\x05\xf9\x18\xcf\xa9\xa0\x6f\xfb\xdd\x78\x6f\xf5\x2e\x60\xb2\xcf\xab\x60\x6b\x94\x26\x16\xde\x81\xc9\x82\xe8\x9d\x09\x71\xd0\x73\xee\x24\x26\x03\xaf\x65\x2d\x3c\x99\xf4\xed\x44\xa7\xf0\x79\xad\xc1\xb2\x12\x0d\xec\x60\xbb\x4f\xf0\x7f\x7f\xa6\x88\x5e\x3f\x60\xfb\x26\x26\xb4\xe3\x08\x3a\x7e\x3f\x50\xd2\x1e\xdb\x7a\x8a\x96\x70\xdb\xba\xae\x10\x84\x51\x3a\xa7\xda\x07\x35\x0f\xa3\x79\xe1\xda\x48\x46\xfa\x36\xdf\x44\x16\xf3\x09\x3e\x95\x6f\xda\x14\x6b\x07\x76\x18\x85\x91\x68\x20\x61\xf8\x84\x2b\x78\x7c\xd3\x88\x2f\xc1\x94\x58\x54\x79\xce\xa3\x2b\xd8\xd5\x5a\x84\x4e\x7a\xe8\x2d\x31\x94\xa9\xdc\x48\x34\xaf\x8e\x0b\x24\x4a\x84\xf5\xcb\xcf\x85\xff\xa3\xaa\xe4\xb6\xf6\x36\x62\x33\x1a\x49\x3e\xd2\x56\x2a\xf6\x61\x42\x12\x4d\xa7\x55\xac\x57\x6d\x04\x47\x57\xbb\xd7\x51\xd7\x7a\xd6\xf0\x28\x49\x85\x92\xcb\x4d\x07\xaa\x3e\x9c\x0c\x8f\x26\xfd\x88\x7b\x02\xd2\x3f\xad\x3e\x17\xcc\x2b\x17\x35\x10\xe0\x31\xc5\xc6\x32\x19\x18\x1e\x70\x46\x23\xe0\x5d\xfa\xde\x7c\xdd\x98\xfc\x27\xb3\x3f\x88\x56\x22\xa7\x98\x86\xda\xc5\x4f\x74\xe5\xea\x27\xb5\x79\xbe\x95\x28\xb7\x83\x1d\xc4\x79\x01\x68\xe5\x3f\xe0\xb8\xa0\xa3\x79\x2f\xe8\xfc\xba\x0c\x86\x42\x07\x17\xd6\xf8\x0e\x95\xb6\xf8\x9a\x96\x1f\xe3\xb6\xb0\x68\x48\x7e\x6e\xb7\x2a\xaa\xc4\x76\xc8\xda\x4c\xdc\xbe\x83\x8d\x96\x5e\x5e\x1b\xfe\xb4\x18\xc7\xb6\x60\x9c\x23\x3c\xfb\x5f\x29\x5e\x8e\xbf\xd2\xac\x89\x16\xd3\x58\x78\x18\x1e\xaf\xe3\x1b\xad\xc9\x6a\xb3\x65\x1b\xdb\x35\x1a\xf9\x73\xec\x2d\x4b\xfb\x7d\xe3\x66\x49\x4a\x1a\x7f\x8a\xc7\xe3\x9b\xc6\xe3\xed\x59\xe8\xda\x64\x14\x25\x56\xfa\x82\x0c\xa5\x9c\xf9\x9e\xae\x66\x00\x9b\xda\xc1\x20\xa6\x16\x96\x92\xab\x87\x12\x83\xe8\x23\xf8\x2d\xde\x64\x37\xd9\xbb\xd8\x9d\xa6\x69\xcc\xfb\x8e\x39\x35\xe8\x37\x1e\xc7\xf5\x4a\x5a\x55\x26\x19\x59\x2a\xa0\xa3\x6c\xf1\xe9\x4c\x51\xad\x22\x89\x47\x85\x88\x07\xa0\x11\x97\x5c\x54\xd0\xa2\xbe\x72\x7d\xc8\x18\x00\xaa\xe0\xeb\x46\x61\x69\xef\x62\xb7\x4c\xa6\xb1\x35\x39\x6d\x5e\x47\x3a\xf7\xbe\x6a\xad\xbc\xdf\x18\x39\xd8\xb3\xd0\x8d\x92\x41\x99\x17\xd9\xda\x6a\xc4\x7e\x1c\x73\xcf\x48\x18\xf9\x5a\x75\xac\x80\xfb\x0d\x2d\x08\xd5\xb0\x4b\x51\x0c\xac\x31\xe7\xa3\xf6\x8d\x82\xaf\x48\x00\xd3\x12\x08\xdb\x87\x9b\x5d\x4a\xe3\x81\xcd\xe6\x7d\x41\xeb\x96\x92\x8b\x7b\xba\xe7\xd1\x01\x1b\x70\x62\x70\x29\xd7\x1b\xdf\xdf\x51\xaa\x8e\xa3\x6c\x30\x57\x9d\x20\x7c\xea\x23\x45\x2a\xcb\xe0\x4d\x99\x83\x7b\x2c\x02\x67\x38\x4c\x33\xf1\xf0\xae\x78\x5b\xfd\xa6\x84\x0d\x8e\x12\x3e\x8c\x4b\x5a\x33\x94\xdf\x8a\x99\x1a\xc1\x2a\x82\xc7\xb1\xbe\x86\xa6\x30\x79\x91\xa5\xd3\x31\x0f\xc4\xe9\x8c\x87\xaf\x03\x1f\x29\x0e\xd3\x6c\x68\xa3\xa2\xcc\x2c\xe2\x39\xe4\x05\xe7\x94\x8e\xd4\x29\x6c\x22\xec\xae\x6f\xab\x43\x57\x64\x69\x99\xdb\x8c\x73\x70\x37\x12\xe7\xfa\x14\x70\x5f\x52\x59\x6b\xd6\x5a\xbb\xc4\x32\xc8\x1e\x0b\xe1\x08\xe3\xb5\xf8\xa6\x21\x30\x2a\xdf\xb1\x5f\x66\x13\x33\xa6\xe0\x1e\x47\xf2\x82\x86\x59\x5c\x50\xb9\x80\x99\x4e\xd3\x28\x29\x88\xe3\x88\x7e\x04\x49\xea\x1f\x07\x3e\x61\xfd\xe3\xd6\x98\xca\x26\x69\x39\x1a\x77\xfc\xd0\xf4\x3d\xb5\xd5\xef\xb9\x77\xb4\x6c\xc3\xe5\x1a\x67\x14\x1e\x44\x4c\x50\xf3\x2f\x77\x57\x49\x5b\x75\x50\xd7\x7c\x55\xd4\x12\x6d\xa0\x06\x22\x82\x33\x5c\x95\x96\x90\x8c\x3e\x15\xf9\xe1\x03\x35\xf2\x7b\x79\xe6\xeb\x3b\xa3\x32\x86\x7c\x95\x1e\x9a\x3e\xa5\x07\x53\x4e\xb5\xd1\xb2\x4d\x99\x67\xb7\x26\x0f\xa4\x35\x84\x74\x34\x58\x98\x29\xe1\xfb\xb5\x78\x3f\x4a\x7d\x57\xb4\xd8\xe0\x8f\x5a\x4a\x1f\xaf\x75\xc3\x74\x22\xfd\x69\x45\x19\xf9\xb2\xa3\x8c\xf4\x16\x6b\x1a\xdb\xa4\x60\x1a\x2f\xec\x51\xe6\x2c\xe1\x9b\xf5\x96\x2e\xd1\x34\x4b\xbf\x6a\x43\x17\x14\xc1\xe5\x7f\x4a\xbb\x92\xaf\x15\xa2\x6e\x62\xb3\xb0\xcc\xd6\x3a\x6a\xba\xe1\xb2\x52\x79\xbb\xac\xd2\x81\x41\x16\xd9\x01\x15\xf2\x24\x73\xf6\x74\x5e\x4d\x25\x48\xd9\xb4\x43\x13\x56\xef\x62\xde\x77\xf7\x81\xca\x75\x62\x29\xae\x0a\xf1\x4d\x3d\x48\x7d\x55\xe5\xd4\xab\x26\x37\x45\x38\x9e\x53\x6d\x76\x99\x3b\x45\x66\xfe\x83\x59\x6d\x5b\xf9\x1c\x7e\xd5\x0e\x46\x58\x87\x97\x5d\x2e\xe4\x0b\xe5\xe7\x67\x3a\x2f\x42\x4b\xa0\xe3\x31\xfa\xf8\x51\x19\x05\xf2\xce\x39\x35\xcb\x73\xbe\x48\x71\x4b\x69\xa8\x5d\xd4\x61\xf1\xd1\x99\x97\xa4\xb0\x8c\x30\x40\x58\xfc\x7f\x10\x3a\x83\xaf\xdd\x40\xf7\xd8\x46\x13\x9b\x49\xff\xc2\x49\xb3\x7b\xb8\xc5\x07\x0a\xfc\x3b\x36\x2b\x56\x26\x4e\xd1\xcb\xfa\x44\x09\x27\x7c\x12\x3c\xa3\x2a\x73\x76\x3a\xef\x47\x82\xb6\xf4\x54\xee\xfc\x17\xb3\xba\xb2\x67\xb5\x4c\x32\x59\xb9\xb9\x52\xf3\xc5\x6e\x99\x4b\xf6\x8b\x1c\xe1\xfa\xcc\x17\x1e\x6f\xe2\x0d\x20\x7a\x9e\x6f\x28\x94\x2c\xed\xee\x0e\x4d\x24\x93\x52\xfc\x19\x9f\xce\x36\x39\xb2\x05\x7e\xb9\xdb\x7b\x9b\xc3\x93\x83\xaf\x74\xc7\x26\x0b\xd3\x32\x23\x98\x16\xfb\xf9\x77\xb0\x3a\x7c\xa3\x4a\x5f\xe1\xd8\x64\x31\xd7\x53\x1d\x73\xa1\xa2\x31\x6c\x39\xfd\x2f\x77\xb3\x28\x77\xa7\x1f\x95\xee\x73\xaa\xea\x7d\x4e\x23\xf4\xd2\xac\x88\xd2\x04\xdd\x23\x74\x15\xbf\x13\x78\x6a\xc6\xef\xd0\xb9\x80\x61\x00\x43\x2f\x5f\x3f\x96\xb2\xbc\x1f\xa7\xe1\x72\xbf\xcc\x0b\xae\x16\x0b\x7b\x3e\x3d\xb3\xd0\xea\xfb\x83\x58\x58\x13\x8e\x3b\x4a\xb4\x9f\xe8\x70\xdc\xcd\xba\x84\x01\xc3\xcc\xe6\xa1\xe9\x34\xfb\xad\x52\x46\x69\x0e\xf1\x2c\x39\x92\x5a\x9e\x80\x45\xb0\xc2\xa6\x9a\x6f\x82\xcf\xa9\x81\xfb\x81\x13\x41\x64\xf1\x18\xac\xd7\x25\xf4\xfc\x04\xa8\x55\x7d\x2b\xbe\x0e\x14\xad\xd9\x25\xe7\x51\xfa\x26\xc6\x07\x3a\x8a\x33\xcd\x63\xe4\x37\x3e\xb1\x88\x4d\xe6\x54\x17\xff\x12\x2a\x11\xba\x2c\x27\xc3\x1d\x3e\xc2\x5a\x31\x71\x69\xfa\xb1\xdd\xa6\x0a\x29\x5b\x7a\xb4\x84\xf2\x24\xb4\x84\x00\x6d\x31\x0f\x9b\xc8\xeb\x52\x8c\xc4\x37\x0e\x9e\x90\xa7\x59\xb6\xa6\x14\x85\xdf\x53\x53\xe4\x4c\x29\xe3\x48\x69\xaa\x18\xcd\x21\xab\x9d\xee\x01\x53\x30\x49\x18\xe5\xdf\x6f\x3f\x8e\x92\x41\x87\xea\xc4\xc0\xcd\x81\xc8\x94\xaf\x5b\x66\x3c\x5f\xee\xda\xc3\x45\x94\x84\x94\x9e\x0a\x89\x9f\x6e\xba\x82\x7c\x05\xe5\xef\x13\xca\xb2\xe6\x36\xa9\x3c\xe5\x76\xe5\x52\xde\x06\x8e\x0c\x31\xc5\x6d\x20\xcc\xf8\x66\xa6\x0e\xef\xdb\x1a\xbe\x7a\x4a\x4d\x28\x9d\x52\x73\x50\x79\x91\x59\x33\x89\xa3\x84\x30\xd3\x82\x82\xba\xa9\x34\x70\x2f\x29\x44\xd4\xcd\xa0\xa6\x2e\xef\xff\xcc\x28\x5d\xb1\x59\x52\x05\x33\xcf\xcd\x39\x59\x8e\xff\xf0\x99\x75\x9f\xa8\x9e\xd1\x30\xa6\xf7\x02\x15\x91\x3e\xd1\x83\x3d\xe5\xbb\x75\xc2\x39\x3a\x91\x0f\x5f\x8f\xfa\xef\x74\x60\x71\x45\xe1\x1a\x6e\x61\x2f\x48\x3f\x93\xcc\x03\x1c\xfd\xb6\x9e\x42\xd9\x3f\xdb\xf3\x0a\x58\xd7\xc9\x18\x20\xf1\xc4\x14\xba\xd0\x1e\x6d\x36\xaa\xaf\xee\xde\x4f\xd4\xbb\xbe\xec\x8a\xc9\x94\x93\xff\x49\xda\xf5\xd7\x5f\x47\xd1\xcc\x02\x5b\x86\x07\x38\xa3\xe5\x10\xcf\xb4\x80\x98\x0e\x74\xf3\xc2\xf8\xc8\x53\x7a\xc5\xbe\x66\xa8\x7b\x76\xe5\x34\x4d\x76\x78\x81\x7a\x9e\x7e\x84\x79\x7f\xc4\xb8\x08\xd4\x3c\xee\x52\x81\xcb\x81\xf1\xdd\xba\x71\xb5\x8f\x7f\x5f\xe1\xbb\x8e\xb4\xa6\xd3\xab\x51\x66\x95\x2a\x07\x98\xbb\xa4\x15\xe4\xce\x9c\xc8\x98\x2a\x0d\x1e\xc7\x59\x72\x87\xbc\x2a\x7e\x65\x6b\xcf\x73\x5f\xc4\x96\xf2\xaa\xd7\x1c\xc7\xbb\x27\xf8\x63\x73\x88\x4a\x1d\x89\xd2\xcb\x35\xdc\x91\xf0\x6e\xfe\xb3\x96\x79\xcb\x34\xa9\xe2\x78\x1a\xd5\x14\x9f\x8d\xb6\xd8\x3d\x8d\x37\xd2\x34\x11\x61\xb6\x96\x13\xaa\xd7\x8d\xd9\x6e\x28\x7a\xf1\x26\xac\xa1\x7a\x65\xc3\x34\xb3\xa1\x71\xca\xc2\xae\xc4\xaa\xb3\xa8\x17\xbc\x35\x36\x51\x32\xcc\xcc\xc4\xe6\x1d\x3a\xb7\x68\x4d\xde\xc1\x89\xe6\x9b\x56\x31\x0f\x31\x8f\x64\x81\x65\x92\x4c\xb1\x7f\x6f\x28\xeb\x34\xae\xd2\x9f\x67\xab\x2f\xc1\x82\xb3\x14\x23\x0b\x7f\x95\x6e\x75\xdc\xd7\x83\x59\xf3\x3d\x32\x68\x88\x35\x98\x3b\x18\x06\x7c\x2b\xa1\xef\xe0\xfa\x77\x10\x39\x10\xca\x64\x77\x55\x06\xfc\xb0\x16\x9c\x50\x77\x1b\x4d\xe7\x3b\x0a\x58\xf5\x31\xea\xab\x40\xaa\xfe\xef\x7a\x92\xfb\xcd\xb6\x6a\x5a\x11\x0d\x87\x26\xe1\xd0\x17\x9e\xe6\x47\xf4\x91\x7c\x3d\xdb\xfc\xda\x1d\xb1\xe4\x38\x5d\x2d\xa2\x89\x46\x61\xbd\x3b\x53\xe5\x95\x77\x03\x9d\x29\x4c\xd3\x29\xf6\x1f\x90\x7e\xef\xe9\xb2\xd4\x45\x2d\x56\xf8\x48\xa9\xaa\xdd\x56\x7e\xe2\xac\xa2\x90\x9f\x44\x49\x62\xf3\xb4\x30\xf3\x2a\x10\x3b\xa2\xb7\xf1\x87\xba\x8c\x7b\x84\xc3\x64\xfe\x2f\x05\xa0\x30\x79\x64\x38\x82\x71\x42\x24\xd5\x73\xa1\xe0\xce\x83\x77\x4e\xab\x4b\xd3\x42\xb8\x41\xce\xa8\xa0\xfa\x06\xf5\x80\xa4\xec\xd5\x71\xc2\x59\x17\xd5\x08\xef\xba\x12\xc5\x25\x15\x6a\xb2\xc2\x4e\x39\xa4\x7a\x08\x81\x4c\xb4\x11\x2b\xc4\x69\xba\xcc\xb5\x5a\x99\x6e\x26\x9b\x2c\x43\xa2\x0a\xc6\x90\x45\x31\x47\x99\x52\x18\x3a\x37\xf3\x48\xdd\x79\xca\x3c\x60\x3a\x9a\x83\x11\x5f\x14\xba\x2a\x09\x53\x85\x60\xcb\x87\x14\x77\xf4\x52\x3c\x6a\x83\xe8\x8d\xcd\x74\xaa\x00\xe8\xdc\x71\x0e\xbc\xfb\x6d\x9e\xf3\xd7\x5f\xef\x9a\x3c\x4f\xc3\x08\x50\x22\x5f\x9c\x82\x16\x12\x5f\xab\x5c\x85\x25\x11\x10\xdf\x32\xf0\x97\x56\x5e\x40\xc0\x4e\x33\xd1\x66\x36\x2f\xb2\x74\x39\x32\xba\xd4\x0d\x33\xcd\xd7\x48\x15\x64\x3c\xfc\x5f\xfc\x53\x32\x1c\xf2\x47\xc9\x70\x38\x68\xf1\xa1\xfd\xce\x9c\xd3\x5f\x43\x0a\xf7\x36\x95\x50\x71\x94\x4f\xe9\xd9\xf6\x4b\xc4\xa6\x8e\xeb\xbf\x41\x10\x85\x6a\x09\xf7\xfc\x60\x83\xb7\xf6\x54\xac\x84\x79\x5e\x1c\xff\xab\x64\xcf\xb1\x68\xb7\xa9\x78\xcd\xb3\x32\x81\x62\x8b\x3e\x0a\xbb\x80\x42\xf4\xf7\xc9\x12\xe1\x4d\xb1\xb2\x98\xf2\x8d\xe2\xb0\xd0\xec\xc6\x86\xb8\xc9\xe7\x43\xa2\x88\xce\x6f\xfc\x9a\xdf\x62\xd5\x1e\x82\xc1\xb9\xad\x3b\x57\xd0\x92\x15\x31\x0f\x47\x64\xf8\x3f\x7f\x88\xce\xbe\xc8\xc6\x35\x29\x1f\x68\xba\xc1\x0a\x07\x8e\xd4\x7e\x58\xee\x92\x6f\x66\xb5\x31\xba\x61\x9a\x4d\xe6\x7d\xaa\x79\x2d\x50\xd3\x17\xd7\x66\x9a\x55\xf9\xae\x22\x4c\xbb\xdb\x70\xb0\x7b\xf6\x90\xf8\x06\x9f\x21\x9c\x55\xf8\x41\xbe\xd6\xcc\xe1\xd3\x32\xcb\xa4\x48\x0a\x30\xc4\x2d\xda\xbe\x7c\xfd\xd8\x22\x61\x6e\x4d\x21\x54\xcf\xb5\xc9\x64\x4d\x11\xc4\xc0\x7f\x15\x69\x84\x91\x7d\x09\xeb\x21\x4a\x7d\xbe\xa3\xf1\x67\x2d\x73\xf8\xe4\x79\xcb\x89\x94\x92\x10\x59\x1d\x0d\x54\x7e\x72\x74\xf6\x79\x05\xcc\x8d\x63\x53\xd8\xcc\xc4\xd1\x1b\x9c\xd1\x48\xc1\xa2\xfa\x18\x29\x64\x3c\xb6\xaa\x38\x36\x93\xbe\xcd\x62\x13\xa1\x1e\x8f\x35\xe0\xac\x9c\x6f\xda\xf8\x1f\xf2\xa2\x1c\x0e\x55\xfa\xc9\xd4\xdd\x7c\xa3\xc6\xef\xed\xaa\x14\x82\xd0\x22\x3c\xaf\x69\x08\xb4\x6a\xee\xa4\xac\xa2\xb7\x01\x55\xe6\x44\x93\xa9\x3a\x13\xa2\xd5\x24\x55\x84\x91\x89\x63\x93\x14\x73\x75\xa2\x7f\x5f\x56\xc6\x90\x14\x6a\x01\xf7\x83\x9d\xae\xa8\x91\xa4\x3b\x3d\x4e\xe3\x0a\x1d\x04\x24\x46\xe8\x53\xd2\xd6\xff\xe2\x2f\x90\x77\x86\x33\x61\x34\x04\xca\x72\x8f\xe0\x3c\x1c\x1f\xc0\x5e\x87\x94\x45\x60\x8e\x0e\xc7\x0f\x09\x73\x48\x27\xf2\xf7\xfe\x4b\x24\x3f\x58\x7f\x1c\x49\x3c\xe0\x13\xeb\xcf\xa8\x89\x17\xd0\x09\xbf\xcc\x8d\xce\xaf\xd3\x2e\xd7\xb4\x12\xee\x48\x2e\xed\xe6\x70\xf9\x1a\x36\x5d\x4d\x21\x00\xeb\x7e\xcc\x2d\xd2\x34\xb3\x2b\x26\x8a\xe7\x14\xc2\x15\xc7\x5d\x06\x1a\xab\x3f\x0d\xc0\xc0\xed\x86\x47\x3a\xf8\x4a\xd7\x1e\x0e\x6d\x8e\xf1\x1f\xac\x24\x30\x58\x30\x8e\x73\x3d\xaf\xfb\xfd\x93\x86\x93\xd9\xff\xca\x81\xae\x99\x28\x2b\x20\x40\xd5\x8e\xe3\x6f\x3d\xd5\x46\xa2\xd7\xcf\x8c\x54\xcf\xdb\x00\x56\x7e\x10\x27\xea\x4f\x48\x0e\x43\x38\x97\xc8\xee\xba\x99\xe5\x43\x8e\x77\x1c\x48\x2e\xac\x3f\x6b\x26\xbb\x99\xd1\x25\xa9\x3a\x7c\x1a\x78\xb8\x20\x06\xe8\x51\xad\x79\x1f\x96\x08\xa9\xeb\xf7\x14\x39\xeb\x9a\x4d\x90\x62\xbb\xbe\xb8\x67\x19\x06\x47\xad\xf4\xc8\xfd\x29\xff\x98\x0c\xbd\x34\x5e\x5b\x70\x92\xb1\x1d\x45\x79\x0c\x56\x94\x8e\x63\xca\xba\xa4\x68\xaf\x2e\x29\xb9\x91\x7e\x34\xd8\xa1\xe8\x45\xff\x9f\x5a\xbd\x81\xbe\xb4\x2b\x73\xee\x95\xc6\xed\x6d\x6c\x53\xe6\xbe\x0e\x3c\x6b\xc0\x11\xc5\x80\x70\x41\x05\xc1\x34\x6a\xdb\x51\xf9\x7b\x5d\xfb\xae\xa5\x91\xd4\x4f\xe3\xbc\xb0\x9e\x13\xab\x8d\x41\xc4\x1f\xf7\x69\x14\x2e\x8b\x65\xe0\xde\xb2\x22\x13\xde\x50\x16\x64\x3a\x36\x39\xe2\x76\xb8\xcd\x3f\x52\x2e\xf4\x8f\x02\x3f\xea\x44\x13\xee\xe9\x28\x0a\x3b\x5a\x97\xff\x07\x7a\x1e\xe2\x07\x7a\x15\xcb\xe2\x17\xfc\x01\xdb\xb2\xee\x11\x57\x42\xa5\x2b\xd1\x91\x9a\x96\x7f\x4b\x81\x0d\x7e\x0e\xbf\x86\x28\xfd\x46\xa0\xf9\xfb\xb0\x0d\x85\xdd\xd2\x07\xba\xb7\x50\x83\x71\xf2\xfe\x95\x9b\xc7\xc1\x7f\x7f\xd6\xf9\xd2\x6f\xb2\x39\x63\x75\x02\xec\xe2\x2b\x14\x7c\x30\xed\x10\x6d\x5c\x57\xcc\xdc\xef\x78\x6c\x4f\x51\xbe\x80\xbf\xf4\x09\x31\x7e\x38\xa6\xad\x2a\xbe\x41\xb8\xff\x0e\x4e\x0a\x1e\xfe\x0c\xcc\x01\xc2\x8a\x2b\x5a\xe3\x07\x43\x32\x6a\xc4\x49\x52\x9f\x07\x2a\x0f\x1b\xa4\xe9\x24\x37\x6b\x36\x43\x39\x99\x43\xfa\x5a\x78\xef\x98\x09\xcd\x61\xb1\x04\x78\x0e\xcc\xc1\xf2\x75\xdb\x14\x8e\x35\x59\xb2\x69\x17\x7d\x53\xed\xa2\x6f\x6a\x58\x69\x9c\xae\x5a\xc6\x9a\x8b\x00\x1a\x7d\x4b\xbe\x09\xbc\x4f\x7b\x4b\xb3\x04\xbc\xa5\x8a\x8d\x36\x29\xb2\x35\x02\x89\x09\x88\x9c\x7e\x90\xf5\xf3\xe9\x2f\x38\x2d\xfd\xbd\x8b\xf2\x43\xaa\x54\x1d\xc6\x69\x6e\xb3\x8e\xd7\x55\x47\x44\xce\xd7\x8d\x29\x50\x62\x2c\x2b\xb2\x28\x2c\x98\xaf\x9c\xb5\x08\xf0\xe0\xe8\x0f\x7f\xaa\x86\x4d\xdf\x69\x98\xd8\x57\x77\xbf\x56\xef\xe5\xc0\x2d\xbd\xa3\x00\x8f\xef\xa8\x84\x24\x4a\x8a\xf4\xb3\x5e\xca\xfc\x7a\xa0\xfc\xc7\x51\x30\x93\x30\x97\x90\x12\x50\x21\x02\xec\x97\x3d\xd1\xcd\x5e\x41\xbb\xcd\xad\x2b\xa5\xe6\x0d\x8a\xb1\xb0\xeb\xdf\x0a\x3c\x59\xd6\x65\x9a\x5a\x86\x59\xfd\x71\xa0\xbc\x33\x9b\x6b\x78\xb8\xf9\x75\x30\xa6\x38\x61\x82\xa5\xfd\x0e\x90\x4a\x67\x8b\x51\xf9\xd8\xab\x68\xc2\x7f\x8c\x48\x95\x3f\x46\x0b\x1b\x1c\xe3\x63\xeb\x86\x93\xaa\xd3\x05\x51\x9c\x6b\x0a\xd4\x7e\xa3\x55\x25\x22\x2f\xd2\x94\xb3\x2a\x19\x03\xf2\x90\x31\x9e\xc9\x45\x15\x66\xae\xa7\xe8\x84\xcb\x30\xad\x02\x27\x17\x33\xdc\xa4\x85\xe2\xeb\x59\xb7\x09\xcc\xd9\x44\x81\xe5\x07\xbe\x3e\x51\x8c\xc5\x9f\x28\xc4\xdf\x30\x33\xe5\xa0\x8c\x2d\x22\x9e\x97\x6b\x22\x41\x30\x30\xb7\x95\x67\x3d\x57\x9b\x4b\x4a\x32\xa6\xc5\x96\x4c\x48\xd5\xb8\x2e\x6b\x36\x27\x9b\x55\x81\xb8\xcd\xb8\x08\xa3\xea\xd8\x2f\xbb\x02\xf7\x67\x54\x33\x3f\x4a\xc2\x68\x6a\x62\x2a\x0e\x23\xcf\xff\x88\x5e\xbe\x5c\xd3\xe7\xa0\x1e\x3c\x47\x81\x83\xe0\xa8\xaa\xa7\x96\x22\x52\x65\xb2\xf8\x17\x34\x07\xe0\x38\xcd\x0a\x33\xb2\x74\x32\xe0\xd3\x60\x57\xe0\xae\x4e\x10\xb4\x19\x0d\x91\x0b\x8d\x6a\xe3\xd2\xee\x6e\x99\x03\x41\x81\xd3\xf7\xa1\xe6\x49\x7e\x5f\x11\x6b\x7e\x48\x2f\x8a\xff\x7d\xf6\x59\x85\x31\xed\xa7\x99\x29\xd2\x2c\xaa\xb2\x4f\x3f\x56\x3c\x53\x63\xc5\x81\x26\x1f\x1f\x66\x26\x62\x08\x32\x8a\x09\x97\x6b\x2d\x76\xdf\xe6\xbf\x11\xa8\x5e\xce\x86\x92\xd9\x64\xd6\xb6\xc1\x13\xb4\x61\x45\x0e\xbd\xfa\x6c\x51\x43\x57\x7c\x4e\xb7\x34\xd9\xe9\x95\xc0\x13\x84\xc9\x2c\x97\x1c\x19\x8f\xa0\xba\xad\x24\x18\x3f\x68\xd8\xdb\xd7\x5f\xef\x0e\xad\x75\xf2\xab\x0c\x0e\x52\x08\x8c\x4b\x8d\x09\x06\x97\x0f\xf1\x94\xfd\xa2\x93\x4f\x3b\x4b\xdf\x97\xaf\xdb\xa0\x62\xf9\xd7\x4a\x93\x61\xdb\xb3\x71\xa0\x87\x13\x43\xf1\xbc\x9a\x17\x88\xa6\x53\x41\x82\x09\xbf\x92\x9f\x62\x39\xd3\x88\x20\x5f\xdd\xdd\xcd\xa2\xd1\xb8\xd8\xe6\x2b\xd3\x67\xa9\x32\xad\x3b\x5d\xf0\x7d\x37\x67\xaa\x56\xff\xb1\x9a\xb7\x7e\xa0\xde\xec\x28\x33\xc3\x42\xb2\x44\x29\x93\x76\xdc\xa0\xf3\x7b\x6d\x00\x23\x37\xbc\xd0\x98\x57\x40\x65\x8c\xe9\x31\xf0\xf2\xae\xa9\x94\xb4\x9f\x45\x6f\xa4\xb1\xe9\xd4\xfa\x28\xea\x10\x5d\x0e\xbc\x40\x06\x51\x7d\x9a\x22\x0a\x31\xee\x23\xd0\x08\x6f\xe0\xa6\x88\x2b\x24\xa4\x6b\x11\x42\xb4\xc6\x53\xd8\x31\x71\x87\xe2\xd6\x79\xd8\x54\x41\x7d\xe5\x40\x77\xd5\x64\x53\x48\x32\x2f\x7a\x77\xe8\x60\x5e\x40\xe9\x49\xac\x4e\xd6\x12\x79\xc3\x91\x9a\x41\xea\x17\xf9\x9c\x97\x10\x7b\x7f\xe6\xf9\xed\x7f\x1a\xd4\x5a\x15\x6a\x28\xc8\x64\x23\x5b\xe4\x44\xc6\x09\x14\xcf\xd5\x99\x1a\x20\x3b\xae\xf9\x1a\x8e\xeb\x99\xca\xab\xc1\x66\x15\xc0\xff\xaa\x9b\x58\x80\x9c\x58\xd6\x42\x41\xa3\x9a\xbb\xf5\x2b\x0b\x94\x92\xb2\x63\x17\x82\x7d\x45\xb6\xaf\xe0\xf7\x61\x9a\x17\x86\x2b\x03\xba\xed\x8f\x6a\x29\x83\x9b\x65\x53\x3e\xaf\xc4\xfd\xfa\x99\xc9\x97\x4d\xc7\xcf\x37\x30\x1e\x56\x64\x80\xbc\xd1\x1d\xd8\x69\x6c\xdd\x4c\x8f\xe3\x70\xd8\xb7\xcf\xf5\x05\xfd\x16\x19\xa4\x49\x62\xe3\xd8\xae\xed\x50\x9e\xfe\x86\x86\x31\xdd\x25\x5f\x8b\x8e\x0c\xc8\x1c\x50\x9e\xbc\x41\x4b\x82\x6b\x48\xea\x88\x94\xaf\xaf\xe9\x7f\xaf\x11\xd1\xec\xdb\xd7\x35\x83\x15\x9b\xe5\x86\xc9\x00\xda\x38\x58\xdb\x08\x47\x48\xe6\x1b\xb1\x21\x53\x61\x6a\xa5\xaa\x3f\x69\x69\x04\x2e\x76\xf3\xa9\x49\xa2\x1c\x3c\x5b\xad\x43\x47\xd2\x1c\xfe\xaa\x5d\xed\xa7\x5c\xfc\x86\xf5\xbb\xa7\x2c\xe1\x3d\x15\xc0\xad\xa4\x51\x68\xb1\xc5\x90\x13\x9f\x99\x29\xb4\xed\x3d\x55\xd7\xf9\x1f\x68\x1d\xa4\xed\xb9\xd9\x30\x2e\x2e\x56\xa7\x73\x9c\x66\xd1\x1b\xee\x7c\x09\xa3\x89\xaa\x9e\x5f\x54\xcc\xad\xcb\x36\xe5\x3a\x0a\xa7\x8a\xb4\xc3\x24\x6d\xf4\xaf\x74\x1c\x25\x03\x3b\x89\x8a\x71\xc7\xdb\x4b\x0c\xb8\xf0\x75\x2b\xef\x64\x61\xc9\x88\xce\x29\x1a\x13\xd4\xdd\x51\x2f\x78\xa8\x58\x62\x7f\xaa\xf1\x1f\x85\xdd\xe5\x85\xe3\x38\x77\x86\xdf\xdc\x49\x79\x12\xea\x94\xbb\x7a\xde\x00\xfc\x30\x50\xc4\xe8\x3f\x21\x27\x8d\x2a\xf4\x55\xad\x47\xcd\x7c\xb3\x64\x3f\x76\xbc\xd8\xf3\x5b\xe5\x1e\x25\x2d\x72\x04\x3a\xbf\xf1\x6b\x7e\xfe\x6f\x49\xe6\x2f\xee\xcd\x14\xf3\xf0\x99\x59\xe7\x2b\x0b\x4e\x29\xb2\x8a\x3d\x6a\xbc\x3c\x70\xbf\x57\xdb\xea\xd7\x36\xc9\xd2\x38\xb6\xf5\x29\xff\x77\xf4\x94\xff\x3b\xae\x8c\x92\x9b\xcc\x2c\x47\x35\x96\x72\x74\xfa\x9d\xe2\xd9\x97\x0f\x3d\x96\x55\xa1\xda\xac\x3c\x53\x41\x11\x09\xbe\xdd\xb1\x99\x12\x0b\x47\x64\x83\xac\x13\x9d\x3e\xfc\xe1\xb7\xeb\x61\x5c\x9a\x3d\xa1\xf8\x1d\xe1\xdb\xf1\x4b\xc7\x74\x0f\xe8\x78\xe0\xa5\x7c\x7e\x36\x6b\xd0\xc3\x28\x29\xa2\x05\x26\xd6\xa6\x56\xcd\xe2\xa3\xb7\xda\x28\x18\xf2\x34\xf3\x5e\x82\xc7\xf7\x15\x5e\xe8\xeb\x2e\xc1\x1b\x96\x59\x0a\x54\x07\xba\xac\xc0\x0b\xf1\x75\x3b\x0b\x55\x1e\xc5\xcb\x4c\x72\x8c\x08\x1b\x23\xe4\xc8\x23\xae\xa8\xe2\xd4\x89\xd9\x2f\x37\xf3\xc3\xc2\xc6\xc4\x39\x51\x26\x82\xcb\xe8\xe8\x65\xa4\x3f\xcb\x37\xea\x90\x67\xe4\xf4\xa8\xa4\xc5\xa5\x78\x15\x9c\xed\x5c\xf7\x8b\x7f\xbf\xd5\xff\x4d\x0c\xf9\x02\xf2\xb9\x42\xdb\xea\xfb\x3f\x7f\x18\x78\x28\x54\x62\x8b\x67\x55\xb1\xf0\x44\xa0\xb4\xdd\xcf\xe3\x7d\xc1\xf0\x7e\xa0\x06\x40\xe6\xd7\xab\x4d\x8f\x42\xf2\x87\x64\x64\xf0\xea\xfe\x5d\xe0\xb9\xdc\x4f\xd7\x12\x1c\xa6\x90\x63\x1e\x64\xbc\x6e\x9e\xc2\x98\x79\x6e\x88\xb7\x34\x04\x71\x5d\x51\x1b\x6f\x43\x79\x92\x1f\xab\x61\x3d\x96\x76\x57\x79\x71\x44\x12\xd3\xf4\x17\x44\xbd\xc6\x73\x8f\x6d\xd4\xd8\x9b\xed\x6a\xfe\xb4\xdf\x03\xcc\xe9\x28\xfc\x2d\xe4\xdb\xdd\x5f\x70\xe4\x50\x20\xad\xc7\x56\x3c\x85\x65\xe2\xc8\x1e\x81\x12\xca\x58\x0f\x02\xb5\x05\xdf\x9c\x29\x7c\xcb\x77\xea\x6c\x15\xd5\x4a\xe1\xe0\x33\xd8\x0a\xcf\xf2\xe7\x2a\xbc\x37\xa3\x51\x66\xf3\x3c\x5a\xb1\xf1\xda\xbc\x52\x63\x99\x29\x3a\x53\x90\xa1\x3a\x99\x16\x07\x0e\x7d\x53\xb5\xe1\xc2\xac\x8a\x7d\x51\xac\xc6\x1b\xb8\x1e\xf8\xb2\xf3\xf5\x46\x62\xb2\x70\xb0\xbb\x66\x13\x8e\x10\xf8\xb4\x62\xa3\xc2\xd4\xef\x5c\x77\x27\xeb\x5f\xed\xea\xf9\xda\x57\x3f\xed\xf7\xd7\xb6\xa9\xc5\xb8\x8c\x2a\x01\x8c\xfe\x47\xb4\x03\xb1\x39\x6e\x05\x8f\x53\xc5\xf1\x15\xb2\xcc\x7e\xad\xa4\x61\x92\x6d\x8a\x21\x15\x25\x67\xec\x16\x50\xa4\xa1\xd4\xc5\x52\xf1\xfc\x43\x9a\xe3\xfa\x52\x9b\xba\xd7\xaa\x59\x5b\xa5\xf2\xbd\xab\xb9\x5e\x57\xf4\x0d\xd7\x5b\x6a\x18\xdd\x69\x66\xa7\xc4\x0f\xee\xc7\x6e\xb8\x56\xc0\x37\xca\xff\x55\xc1\x78\x96\xa4\x69\xb2\x4d\x0d\x07\x32\x61\xaa\xde\x58\x92\xf6\xf9\x94\xfc\xaa\xde\x8a\xa7\x15\xc5\x9d\xe9\x67\x66\x82\xfa\x55\x8d\xe6\x88\x6f\xd4\x30\x80\x29\x62\xe2\x42\x50\xaa\x2b\x1b\xb5\x74\xeb\x3b\x38\x8b\x22\x64\x46\x4f\x25\x0a\x67\xf4\xbc\x4c\x9b\x85\x0f\x80\x5d\xb8\xab\xc0\xda\x44\xec\x10\x0d\x25\xe7\x14\x1e\x0a\xcf\xea\x79\xd9\x0d\x77\x4f\xb3\x74\x50\x86\xae\x78\x20\xce\xa7\x5a\x6a\xbe\x76\x01\xd0\xc4\x16\xe3\x94\x33\x18\x64\x3e\x70\x5e\x7c\xdd\xa8\x83\x54\x61\x5c\x62\xe2\x14\x99\xa0\x4b\xba\x7c\x02\xa6\x9b\xdc\x63\x03\x42\x27\x54\x65\x4e\xa1\xac\xc3\x37\x0d\x8c\xfc\xde\xca\x13\x7a\x7a\x7b\x5d\xe5\x87\x6f\x7a\x9c\x80\xe7\xc2\xc1\xae\xad\xb2\x3a\x1e\x30\xc4\x56\x3f\x3e\xf3\x0e\xf0\x26\x7d\x73\xa1\x22\x6c\xce\x34\xbd\xd6\x25\x71\x0d\x27\x3d\xfd\xbb\x7e\x1c\xfa\xbf\xff\xdd\xb6\xe6\xdb\x34\x8d\xa3\x22\x0a\x73\x5d\xfa\x3e\xa2\x94\xf5\x8f\xb4\x00\xde\x5f\xab\x2e\x58\x3f\x0d\xb1\xca\x33\xd4\x4a\xe0\xeb\x9e\x1f\x95\x4c\xa4\x45\x89\x64\xe0\x81\x56\xdd\x7e\xa0\x68\xa1\x56\xa3\x6c\x0d\xa8\x70\xa7\x8d\xe2\xc2\x2e\x04\x0a\x02\x5e\x97\x4e\x78\x3f\x4d\x97\x97\x41\x0b\x86\x70\x0f\x69\xc1\x79\x05\x45\xc3\x50\x30\x7e\xf1\x13\x35\x34\x12\x47\x7d\x9b\x41\xed\x0a\xc9\xf2\x31\x25\x12\x7f\x4c\x55\x7d\x4d\xdf\x24\x83\x14\x82\x4f\xae\x1d\x05\xb6\x03\xbe\x6e\xbc\x01\x42\x37\xd8\x62\xbe\x26\x43\x59\x7d\x17\x54\x9e\x6f\x04\x6a\x36\x19\x92\x90\x82\x1b\x69\x43\xb0\x0e\x4b\x1b\x4b\x5f\x14\x79\xdb\x45\x1c\x36\xbe\x69\xc4\x7b\x07\x5f\xe9\xf6\x63\x13\x2e\x4f\x4c\x04\x9d\x4a\x58\xb0\x7f\xa0\x4f\xe2\xeb\xd9\xe7\x55\xa5\x94\xa6\x5a\x22\x34\x53\xe7\x3c\x52\xfa\xb8\x9a\xdd\x39\xa2\x84\x00\xbe\xa1\x3a\x1a\x03\x62\xd3\x80\x41\x11\x52\x42\x3a\xef\x42\x57\xa8\x80\x52\x55\x04\x3a\xb2\xdb\x3c\x69\x10\xf4\xdf\xa5\x48\xa3\xf8\x1f\xe1\x81\x64\x02\xb7\xfa\x64\x04\xdc\xba\xc3\x3c\x89\x84\xdb\x4f\xe6\x13\xd4\x3c\xfe\x86\x0b\xd4\xc6\x76\x58\xac\xcd\xf9\x06\xe3\xb6\x1e\x1d\x5a\x67\x3e\x5d\xe6\x77\x6f\xf6\xa2\xa2\xbd\x33\x83\x08\x43\xef\x3b\xfc\xf0\x5e\xa7\x47\x7b\x0c\x69\xf7\x0d\x65\x55\x36\xf0\x42\xe1\x3d\xc1\x46\xa6\x14\xf1\x5e\x13\xa9\x2b\x58\x45\x99\x66\xdc\x1c\xe3\xb9\xe6\x74\x9a\xc0\x5d\xd3\xc8\xbd\xcf\x5b\x98\xc0\x96\x6f\xd6\x1f\xd7\xaf\x8f\xd3\x89\xc9\x75\x47\x5c\x73\xba\x6e\x28\x4e\xd7\xc1\xaa\xc9\x86\x08\x73\x50\x1c\x3d\xae\xc1\xde\xc7\xdb\xd4\x08\x62\x3b\x2c\x74\x5a\xf0\xa3\x99\x6f\x71\x5f\x53\x4c\x2d\x97\x95\xee\x4a\x3a\x9d\xa6\x59\x51\x26\x34\x08\xec\xe1\x8f\x3f\x0e\xfc\xa0\xe0\x8f\xdd\x90\xc7\xb4\xec\xc7\x51\x48\x3d\x7d\x7a\x30\xf8\x81\x1b\xf4\xb3\x7c\xed\x7f\x36\x36\x51\xe5\x3f\x86\x6c\xb5\xf0\x46\x91\xdd\xf1\x75\x5b\x7a\x38\x35\xa4\x11\xce\xbf\xc4\x9a\x56\x81\x6a\x6e\x9e\x57\x5d\xb8\x7e\x56\x86\x3c\x78\x84\x3a\x27\x26\xae\xf8\xba\xd1\xd4\x7c\x75\x37\x4a\x02\x85\xc2\x9c\x23\x01\xb9\xa2\x92\x91\x2b\x81\x3e\x13\x65\x12\x46\xcc\x2b\x20\x9a\x9f\x70\xb2\xcc\x85\x4d\xdf\x1d\xe7\xee\x07\x6a\xcb\xfd\x49\x1b\x2f\xe9\xd8\x24\x83\xb0\xac\x56\xc4\xa7\x06\x97\x74\x6a\x70\x49\x7d\x74\x3f\x25\xd1\xbb\x39\x55\x4a\x3a\xcf\x1f\x0d\xc7\x74\x57\x6b\x66\x9f\x55\xa5\xf0\x49\xba\x62\xb1\x86\xd5\xc7\x48\xe7\xa1\xa3\x98\xd0\x54\xc3\x31\x4d\xb0\xd2\x22\x74\x50\x25\x8f\x22\x80\x20\x19\xe7\xea\xd8\x66\xb6\xbf\x06\xdc\x9a\x08\x33\x13\x41\x36\x12\xe5\x39\x9c\x59\x21\x04\xaf\x0c\x08\xdc\xfe\x49\x37\xc9\x3a\x34\x87\xe9\x69\x98\x05\x9a\x9e\x46\x18\xa1\x9b\x02\x54\x04\x9a\x15\x60\x24\x42\x1f\x04\x6e\x7c\xed\xa2\x89\xa2\xcc\x12\xa9\xf6\xf2\xe0\x21\x25\xed\x32\x84\xd8\xd4\xf2\x7c\xad\x5b\x26\x79\x49\x9b\x5e\x76\x31\x4a\x73\xf7\x67\xbe\x9a\x77\xdf\x49\x2e\xae\x98\x5c\x70\xa6\xa2\xd4\xad\xf6\xe2\xe9\xc0\x1f\x24\x93\x85\xe3\xa8\xb0\x61\x51\x66\xb6\x53\xe3\xf8\xf4\x0f\x7e\x21\x78\x46\xd5\xc3\x6c\xfe\x82\x0f\x8f\xcf\x22\x86\x46\x21\x97\xc1\xeb\x42\xde\xe9\x47\x4c\xee\xa9\x20\xfa\x86\xe2\x63\x78\xe6\x79\xe6\x3e\x11\xfe\xd2\xea\x35\xc2\x4b\x3c\xd5\x53\xd4\x33\x73\x90\x9d\x63\x3d\x56\x42\x8a\x31\xe3\xba\x26\x56\x87\xd4\x1c\x0c\xcd\x1d\x64\x21\x02\xc1\xa9\x6c\x3d\x7a\x71\x77\x54\x05\xea\xce\xac\x73\x48\xc0\x0b\x7f\x4b\x2f\x40\xa6\x34\x69\x21\x44\x57\xf4\x19\x75\xae\x06\x60\x21\x56\xed\x6c\x19\xb8\x3f\xce\xe8\x30\xe9\x54\xab\x12\x50\xb6\xf6\xac\x87\x4f\xed\xe2\xaf\x8c\x25\xbb\x8d\xe7\x14\xce\x6a\x0f\xd8\x61\xdd\x2d\x7c\xe5\xcb\x9e\xf9\xf7\xb7\xff\xb3\x9e\x2a\xeb\x6d\x68\xe6\x06\x14\x0b\x68\xc5\xfe\xf5\x2f\x62\xf9\xd0\xb2\xfb\xf3\x99\xe2\x2c\x60\x12\x46\xf4\x8c\x3b\x80\xb8\x3b\xb7\xb2\x7f\xc9\x53\x06\x3c\xab\x80\xff\x71\x9c\x6f\xa3\x4a\xb8\x1b\x5a\x59\x94\x0d\x78\x13\xe1\xaa\x9b\x6c\x71\xf5\x8a\xf7\x67\x4a\x53\x7c\xa3\xad\x78\xd1\x1d\x9a\x15\xa7\x7e\x8b\x22\xd5\x43\xb8\x5b\xbe\x69\x9b\x3a\x3c\xd0\x1d\x98\x28\x46\x6d\x54\xb4\xe0\x3a\x8a\x5d\xa5\xa5\x36\x3a\xb1\x85\x95\x8f\xc1\x86\x3c\x3d\x53\x5d\xa6\xd3\x0d\xc8\xf6\xe2\x62\x9d\xbb\x57\x73\x5a\x73\x0d\x42\x98\x7c\x37\xdb\xcb\xea\x6b\x15\xe9\xc8\x16\x63\x9b\x75\x3c\xc2\xf0\x0f\xe9\xd5\xf2\xb5\xee\xcd\x54\xae\xc6\xe6\x3c\x1c\xee\xea\xd6\x4a\xb1\x5e\xa1\x32\xc2\x34\x29\x4c\x94\x60\xea\xfa\x65\x27\x6b\x50\xad\x84\x98\xf5\xcd\xdf\x64\xcf\x82\x28\xed\xd8\xa9\x83\xc4\x60\x97\x77\x7a\x3e\x84\xed\xac\x3b\x3a\x69\x1b\x96\xc4\xd1\x46\x2f\x0f\xe7\xe7\xfb\x33\xef\x84\xb7\xf6\x3c\xc6\xe5\xd3\x46\x88\xba\x70\xb0\xdb\x4f\x07\x20\xb0\x16\x94\x3f\xed\x50\x84\xab\x3f\x57\x19\xc6\x51\x45\x1b\xbe\x66\xf3\x27\x7d\x48\x72\x7f\xa6\x14\xbe\x59\x10\x83\x7e\xff\xff\xfe\x85\x9e\x82\x5f\x5f\x50\xdc\x11\x2f\x92\x8a\xb8\x28\xa5\xd0\x5a\x22\xcc\x3b\x42\x05\x50\xfc\x29\x5d\x84\xbf\xdf\x16\x88\x7c\xe1\x57\x7f\x85\x07\x75\xe1\x07\xae\xa9\xe1\xdc\x0b\x84\x3b\x42\x6f\xeb\x5d\x95\x5d\x4c\x4d\x31\xa6\x6a\x37\xe6\x79\x59\x60\x8e\x6f\x66\x9e\x58\xe6\x02\x0e\xba\xec\xd8\x96\x6d\xf3\xcb\xdd\x91\x4d\x6c\xc6\xd1\x99\x70\x62\xf8\xef\xf8\xfb\x8a\x41\x2b\x34\x65\x6e\x69\x84\x4a\x6c\xdc\x45\x2c\x9a\x94\x99\xab\x9d\x27\xb3\x37\xbe\xb1\xb1\xb5\xe7\xd7\x7c\x79\xad\xdc\xe6\xe9\x0c\xce\xea\x81\xd7\x4f\x03\xc5\x4c\xfa\x0f\xb4\xcc\xe8\xd7\xff\x98\x16\x41\x60\xb2\x4a\x4e\xd1\x8e\xa4\x9b\x82\xc1\x81\xb3\x81\x92\x26\x3b\xab\x0a\x05\x63\xb3\x12\x25\x23\x4a\xfe\x85\x89\xae\xc6\xd8\x5b\xfd\x16\xfa\x74\xc7\xf5\x24\x14\x46\x42\x04\x54\xee\xfb\x27\x17\x14\x7e\x25\x9a\x4c\xd3\xdc\xea\xf7\x77\x51\x55\x3f\xc1\x9e\x83\x77\x79\xa6\x15\x85\x69\xad\xe0\xc6\x85\x8f\xb1\xe3\xa8\xfd\xcf\x2b\x14\x41\x66\xa9\x68\x20\xa5\x52\x09\xbc\x7d\x68\xf0\xc9\x4c\x2b\xf0\x18\xe7\xb0\x45\xdc\xc8\x0f\xf9\x9d\x57\xbc\x9d\x79\x39\x1a\xd9\xbc\x90\x84\x10\xe8\x32\x40\x66\xf8\xda\x25\x1f\x26\x9a\xd8\x01\x01\x06\x24\x1d\xf2\x13\x73\xd7\x61\x3c\x10\xf4\xb1\x22\x02\xea\x62\xff\xa4\xe7\x11\x12\x0f\x66\x4a\xb6\xe2\x78\x5b\xc9\xba\x48\xcb\x2c\xca\x0b\x25\xdd\x7b\x5b\x49\xf7\xde\x06\x8a\x4f\x5a\x91\xe8\xd9\xa3\x0e\x0f\xc0\x0e\xfa\xd6\x60\x67\x94\x84\x92\x3e\x52\x48\x8f\x9b\xf3\x2b\xdd\xc4\x8e\xd2\x22\x32\x05\x57\xc0\x59\xca\xbb\x26\xeb\xed\xb7\x5c\x3a\x1c\x46\xa1\xdd\x49\x27\x00\x01\x07\x86\xa7\x10\x17\x40\xcd\x12\x09\xd2\x96\x75\x55\x1c\xbf\xa5\xbf\xf8\x1d\xc5\x4b\xf2\x7c\x4f\x09\x47\xbf\x89\x0e\xaa\xab\xf8\x7f\xe9\x37\x3d\x43\xc0\xbe\x7d\x75\x55\x22\xfc\xfa\x96\xc6\x14\xeb\xe2\x62\x77\xc5\x16\xa9\xbc\x7c\x6e\xda\xa8\x1a\x68\x5b\x1b\x6f\x7f\x37\x8b\x56\x6c\x36\xa7\x68\xea\x8e\xe2\x89\x71\x00\xaf\x05\x9a\x2b\xee\x44\xb3\x71\xbe\xa7\x1b\x9a\xbc\x34\x71\xb1\xa6\x36\xe7\x79\xb5\x39\x9b\x9f\xba\x67\xa1\x6b\xa6\x91\x0d\x2d\x81\xc7\x51\xf4\x7d\x7a\xdd\xfb\x06\xc0\xd6\x51\xd4\x7c\x06\x95\x6e\x2c\xdf\x79\x75\xf8\x12\x52\x7a\x26\xd2\x1f\xc4\x56\x3c\x7b\x8f\x82\xf4\xc7\xb0\x8a\x22\x3b\x56\x9d\x7e\x19\xaa\xf6\x6e\xf1\x8e\x1a\xa7\x39\xd1\x42\xff\x99\x59\x13\x8e\x5d\x02\x04\xcc\xe2\xb7\x03\x8f\x5f\xfc\xf6\x6c\xa7\x4f\x0f\xb3\xcf\xd1\x27\xe2\x3b\xdf\xa2\x88\x11\xce\xe5\xe3\xc0\xd3\x9f\xdc\x87\x4d\x66\x2c\x12\xb0\x58\x08\xcb\x80\x0e\xc4\xae\xdb\xba\xae\x4e\xd4\xfd\x40\x75\x8f\xbe\xa3\xe6\x47\xe7\x68\x2e\x49\x58\x57\x28\x90\x42\xbc\x05\x03\x07\xc3\xfa\x03\x2c\x0a\xfe\x14\xcd\x5c\x1e\x78\x74\x05\x10\x03\xac\xc7\x83\x40\x37\xbe\xaf\x6b\x6e\xa8\xdb\xb3\xce\x17\xbe\xc0\x81\xe2\x5d\x55\xc8\xe8\x10\x15\x2d\x8a\x0d\x27\xc9\x3e\xa3\x25\xb3\x05\xd9\x8d\xf0\x15\xf9\x7a\x3b\x97\x8a\xb1\x2d\xd1\x72\x01\xd5\x08\x5f\x2b\xa2\x1c\x7b\x78\x1c\xf5\xa3\xa2\xa3\x4d\xa7\x4f\x0b\xce\xd4\xca\xe1\x85\x89\x62\x9b\x91\x4f\x92\xba\x2f\xf7\x2b\xf1\x77\x3f\x50\xd5\x4f\x9e\xf5\x92\x19\xd2\xe7\xdd\x94\x6c\x95\xa6\x17\xae\xec\x06\xdb\x8f\x49\x27\x18\x17\x58\x71\xe4\xaa\xef\xd4\x1a\x7b\xc5\x98\xf8\xb4\x65\xea\x4d\xcf\x5d\x70\x08\x02\x34\x2c\xa2\x06\xe9\xe1\xa8\x69\x8a\x77\x68\xed\x58\xfe\xb2\xb1\xfd\xf6\xec\xe9\x96\x99\x2d\xc6\x99\xa1\xc5\x40\xb8\x75\x43\x85\x5e\x37\x1a\x3e\x65\xdf\xbe\x6e\x61\xfa\x69\x8a\xe0\x51\xeb\xea\x4b\x67\x41\xd1\x2f\xc6\x66\xad\xf2\x8b\xb4\x5e\xcc\x90\xa3\xa6\x15\xb9\xc6\xc3\x6b\x10\xd4\xa4\x94\x9d\x88\xe9\x4f\x14\xfc\xe7\x4e\x4b\x76\xda\xcd\x52\x33\x58\x35\x6b\x73\xbe\xd5\x76\x47\x85\xeb\x38\x8a\xe2\xdb\x5b\x0c\xcb\xc0\x4e\x2b\xe3\xc4\xf6\x0c\xb1\xd6\x5d\xac\x20\xdf\x3c\x76\xda\x23\xb3\xd3\xfc\x25\x85\x54\x3a\xaa\xd5\x75\x8e\xb6\x30\x80\x90\x1d\x34\xc2\xf9\x83\xc4\xe9\x96\xce\xf5\x9a\x42\x9a\x7b\xf6\x74\x33\x54\x60\x54\x78\x1e\xe8\xc0\xdd\xa5\xdf\xa3\x68\x85\x78\xf6\xaa\x1f\x04\xbf\x09\xf3\xa8\xc9\xcc\xa9\x1f\x6e\x78\xa0\x20\x26\x61\x9a\x4f\x6c\x11\x85\x14\xdd\x32\xcd\x3c\x5e\x0c\xda\xf3\x97\x54\x56\x74\xb7\xf1\x7c\x7b\x17\xbb\x43\x6b\x32\x26\x28\x11\x61\x3a\x6a\x05\xe1\x86\x5f\x32\x12\xbb\xab\x4a\xca\x23\x37\x43\x5b\x00\x55\x2b\x23\xee\xe4\x1f\xd4\xf0\xbb\x0c\xa7\xfc\x54\x71\x55\xfe\xb4\x8d\x4e\x26\x8c\x69\x58\x5f\x31\xc2\xf2\xc0\x87\x88\xd4\x3c\xa7\x59\x6f\x46\x69\x01\x6b\xdb\x56\x13\x68\x91\x75\x58\x4d\xb3\x65\x7e\x67\x38\xdb\x98\x54\xe0\x6b\xe5\xbd\x87\x59\x64\x93\x01\xe9\x6f\x4b\x86\x4b\x4f\x21\xf8\xbb\x8e\x12\xba\x51\xc8\xf0\xcb\xc8\xbd\x84\xf9\x6d\x73\x08\xbf\x77\xb1\xdb\x8f\x96\x91\xe3\x70\x68\x43\x9f\x2f\x61\xce\xe6\x9f\xff\xca\x02\xd1\x00\x53\x1f\xdb\x95\x35\x2b\x63\x0c\x53\xf1\x29\x32\x5b\x99\xc4\xdb\xc4\x7c\xbf\x70\xb0\x7b\x68\x69\xf7\x33\x1e\x9d\xc1\x72\xb5\xd8\x43\xdf\xa3\xd3\x04\x8a\x96\x9f\x90\x01\x43\x5a\xff\xde\xac\x46\x23\x50\x99\x1c\x98\x71\x76\x2c\x42\x36\x49\xdf\x53\xc8\x13\xe1\x13\x10\xe5\x5c\xd4\x43\xe5\xeb\xaa\x8c\xf7\x0d\x6c\x1f\x46\x46\x04\x8a\xc8\xe7\x4a\xad\xb9\x1c\x95\x13\xb4\xd4\x9d\x9a\x59\xe5\xab\x78\xe8\x05\x7f\x03\x65\xa8\xb3\x64\x5b\x84\x04\xa3\xf2\x87\x6e\x94\xc8\xa9\x29\x1e\x09\x74\xaa\x8a\x47\x13\xc0\x51\xb5\xaa\x28\x86\x9c\xc0\xaa\x0a\xb9\x86\x9a\x44\x9a\xf9\xee\xd8\x6d\x08\xa2\xc1\x36\x6e\x5b\x57\xd4\xc4\x4d\x86\x90\x7d\xfb\xba\xc3\xb2\x20\x75\x35\x3d\xbe\xe3\xd3\xb0\x9b\xea\x28\xde\xc6\x5a\x20\x4e\x3b\xab\xd2\xe9\x69\x1a\x83\xda\x19\xb9\xae\x84\x5b\xbe\x6d\x7b\x31\xf0\x05\xa5\xf7\x5b\xba\xae\x2f\x77\x87\x65\x56\x25\xfa\xdb\xe8\xcd\x23\xbc\x39\xae\x1a\x5c\x7f\x81\x2f\x8e\x8a\x16\xc8\xfb\xe0\xd3\x1e\xd0\x7a\xc2\xd8\x5e\x68\x98\xcd\x3d\x7b\xba\xe9\x8a\xcd\xfa\x69\x39\x1a\x17\xf3\xbe\xa5\xfc\x97\x04\xd4\x11\x71\xa5\xea\xd9\x6a\x42\xae\xc8\xf1\x9a\xdc\xd2\x0b\x07\xbb\xa6\x9f\x96\x45\xc7\x53\x79\x61\x44\x92\xaf\x15\x61\xf2\x2f\xfd\xd6\x97\xfe\xcd\xd2\xae\xea\x2f\xa3\x45\xfe\x48\x11\x52\xde\x53\x88\x95\x1d\x3d\x55\xa6\xb9\x40\x8f\x25\xbc\x47\xd5\x17\xc3\xf6\xbe\x5b\xc3\x58\x3c\xa4\x20\x0c\xae\xea\x1e\x1e\x58\xb0\x48\x95\x65\xc3\xf1\xfb\x1e\x36\x20\x40\x91\xef\x6b\xc5\x1f\xc6\xd0\x33\xb7\x28\x0c\x20\x3c\x2f\xde\x3b\x8e\xdd\x3c\x11\x2b\xc0\x4f\x3e\xd9\x7b\xc6\xf5\x79\xcd\x1a\xcf\x07\xd4\x84\x3d\x98\x01\x42\xd1\xce\x9f\x09\x5e\x54\x0d\xac\x61\x5c\xda\xa4\x88\x4c\x3c\x4f\xaf\x11\x67\xf3\x67\xb0\x0a\x7c\x83\xe3\xac\x84\x01\xdd\x8d\x6a\xf0\xc6\xe9\x28\xed\x68\xd3\xa9\xcb\x0a\xc2\x77\x6b\xe2\x38\x0d\x7d\xb2\xc8\x65\x44\xfa\x51\x29\x29\xaa\xfe\x18\x11\xb3\xe6\xdb\x3b\x8e\xd2\xea\x1a\x4e\x22\x4f\xad\x06\x8a\x77\xf6\x0c\xe4\xba\xb0\xd8\x7f\xa7\x28\x6d\xaf\xc1\xca\xf0\x7f\xb4\x59\xc7\x15\x9b\xad\x75\x94\x60\xd0\xcc\xeb\x99\xb6\xf2\x76\x41\x73\x88\x5d\xb0\x9b\x14\xaf\xde\xa8\xc8\x62\xf8\x99\x72\xe2\xba\xed\xa8\x42\xc0\x4c\x91\xf6\x5e\x50\x41\xe8\xc0\x86\x71\x94\xd8\x1d\xd5\x67\x23\xd0\x40\x0d\xca\x8d\x8d\x56\x5f\x15\x09\xff\x51\xbc\x1b\x01\x7e\xd1\x1f\x74\x6c\xb4\x4a\xbc\xba\xfa\x54\xd9\x49\xbe\xf0\x45\xc4\x7d\x32\x94\x8a\xd2\xc5\x96\x9e\xd2\x45\xa3\x44\x52\x0a\x7a\xfb\xdb\x8e\xd9\xd8\xda\xb8\xe6\xff\x2e\x29\x98\x7c\x53\x08\x69\xcf\x1e\xad\x25\x86\x03\x74\x1b\x21\x0b\xdf\xb4\xb8\xf0\xfd\xdd\x58\x28\x1e\x5e\x73\x24\xf9\xca\x0c\x9e\x9c\xbd\xe8\x2d\x5c\x96\x4e\xb3\xc8\x92\x66\x00\x1d\x1f\x58\xc7\x73\x8a\x80\xee\x5c\x8d\x59\x30\x9d\x4c\x0b\xae\xad\xb6\x92\xc6\x35\x51\x9a\x07\x68\x56\x2c\xb3\x68\xfa\xf8\xc8\xf0\x3d\xd5\xf7\xbe\x5a\x17\x94\xfa\x8c\x3a\x62\x61\x66\x4d\x6e\xb1\x91\xe1\x2d\x99\xb2\x0c\xd5\x46\x1e\x71\x91\x91\x37\xfa\xfb\xf8\xb1\xe3\x4a\x47\x1a\x19\x25\xec\x77\x53\xa6\x97\x02\xc3\xdc\xc6\x68\x5a\xb3\xf8\x3f\xf6\x06\xdf\xa8\x4a\xa4\x35\x83\x67\xe9\xf3\xe1\x6d\xb7\x83\xf5\x07\x6d\x62\x88\x91\xc0\xbd\x6d\x59\xaf\x5c\xb7\xc2\x4d\x73\xe1\xff\xc1\x0b\xeb\x4a\x85\x03\x08\x4f\x49\x63\xc8\x88\x20\xbf\xe6\x4e\x09\xaa\x40\x3b\x91\xa9\x49\x65\x44\xcd\xf4\xee\xa0\x34\x1c\x9f\xf8\x99\x9e\x6f\x8b\x5d\xd7\xd0\x9e\x6d\x3d\x7f\xa8\xa6\xb1\x49\x8a\x67\xb0\x83\x85\xb9\xcf\x0f\x32\x7d\xaa\x25\x39\xae\xe0\xf4\xb3\x1a\x03\x76\x10\x0a\x4d\xd0\xf6\x07\x96\xee\x23\x32\xce\x7c\x0d\x7b\x8c\x1f\xba\x42\x1e\x0c\x0e\x1a\xd0\x4b\xb4\x21\x29\x8d\x96\xfc\xe2\x01\x82\x1a\x69\x15\xf9\xfa\xcc\x5b\xaa\x1b\x9a\xa7\x49\x02\x49\x0b\x21\x9e\xe8\x38\x6a\x95\x0f\x95\x3d\x16\x58\x34\x21\x7b\xdc\xa0\xdc\x43\x35\x28\xf7\x50\x65\xb9\xe5\x72\x66\xa2\xc4\x2a\x03\x73\x62\xa6\x7c\xd6\x09\x35\x9e\x60\x0f\x4f\x6d\x58\xe4\x4f\x28\x64\xf9\xd1\xc0\xcb\xd3\xf1\xec\x0e\x73\x00\x28\xba\xbb\x37\xb1\x39\xd1\x63\x61\x19\x66\x98\x9e\x73\x8a\xef\xfd\x3a\x76\x07\xff\x47\x0b\xb2\xf5\xb5\xee\x30\x0d\xcb\x5c\x0c\x3f\x03\x23\x70\x64\x04\x25\xe1\x57\x81\x38\x1a\x22\xaa\x3f\x92\xb0\x01\x12\x44\x54\x3a\x45\x75\xaf\xe3\x84\x26\xce\xaa\xad\xfd\xa5\xfd\xa2\xd4\xe7\x26\x6c\x1d\xbf\x23\xb7\x07\x11\x58\x5f\x6d\x61\x3c\x7b\xad\x32\x0e\x43\xd6\x6c\x83\x3f\xba\xaa\x7c\xd3\xd5\xd9\xe7\xb4\xf0\x9c\xcd\x86\x56\x4a\xa4\xaf\x2a\x70\x8b\xeb\xcd\x9f\x54\xdd\x25\x53\x99\x00\xc2\x43\xb8\xd3\xec\x6b\x4f\x9a\x5a\x87\x0b\xfb\x38\x8c\xf7\xb0\xb5\xf8\x57\x02\x3f\x09\x01\xa8\x97\x8c\xce\xb5\x44\x8e\x03\x33\x31\x23\x3b\xa7\xca\xf1\x1b\x0a\x7d\x7a\x2f\xf0\xbc\xbe\xa7\x14\x8d\xc6\xea\x38\x05\xfe\xdb\x17\x16\x3f\x9a\x79\xbe\x47\x00\x59\xc4\xe8\xbf\xa0\x8b\x2d\x2c\x35\x34\xaf\x98\x88\x78\xec\xc2\xa1\xba\x3d\xf9\x19\x5c\x2c\x5f\x2b\x2a\x97\xa9\xc9\xcc\x24\x2d\x93\xa2\x36\x90\xfb\xa1\x1e\xc8\xfd\x50\xbd\xeb\x74\x95\x63\x16\xb4\xd9\xd1\x23\xc2\xc7\xed\xa0\x9a\xac\x10\xe5\x54\x9f\x86\x00\xf7\x13\x55\xcd\x03\x5c\x75\xce\xe7\x6e\x9d\x75\x35\x70\xb5\x85\x00\x96\x28\x8c\x3f\xef\x82\xac\xcc\x8c\x46\x70\x01\x0b\x8e\x18\x60\xce\x6b\xb0\xdf\x52\x95\x8f\xb9\x06\x69\xe9\xc2\xc1\xae\x9d\xf4\x4d\x96\x99\xdc\x1d\x04\xf8\xd9\xb3\xaa\xc6\x76\xd6\x13\xe5\x8f\x33\x4b\xba\x86\xfb\x25\x5f\x26\x17\x00\xab\x79\x7c\xa6\x8b\x68\x70\x76\xd8\x4e\x0f\x28\xe1\x42\x09\xfc\x9f\xf6\x94\x6d\x3a\x3a\xd3\x8b\xa2\xa4\x7b\x23\x37\x58\x8d\x6d\x07\xc0\x38\x5f\xab\x84\xb6\x6f\x0a\x63\x98\x42\x5b\x98\x66\xaa\x9d\x22\xfc\x20\xb5\x52\x55\x9a\x92\xfa\xa5\xb4\x33\x68\x27\x02\x3b\xfd\x51\xe0\x2b\xd2\x6c\x49\x11\x4e\x5e\xc7\x76\x47\x1e\x80\xa7\x45\x4b\x6c\x17\x35\xb5\x90\xe9\xb0\xeb\xe4\x72\x2a\x7d\x3e\xe2\xae\xfb\x7a\xb2\x5e\xc7\x91\xd1\x64\x5a\xad\x78\xc7\xe3\x88\xeb\xf5\xf6\x16\xf6\x99\x49\x94\xc7\x96\x04\x81\x71\x84\x04\xf5\xeb\xdd\xf1\x15\xc5\x53\xfd\xc3\xc7\x72\xfc\x4e\xb3\xb4\xef\xaa\xb9\x6d\x63\xf1\x4f\x6b\x4e\x79\xda\x8b\xc8\x94\x39\xb8\x45\xa5\xfe\xda\xcc\x8f\x41\xfe\x4c\xf3\xee\xda\xc3\x45\x44\xac\x8e\x4b\xe2\xb1\xc0\x5e\xe6\x15\x87\x5c\x2d\x22\x32\x05\x1b\x46\xf9\xda\xd5\x12\xb0\xcd\x09\x3c\x73\xfe\xd7\xd5\x01\xdb\x7b\xe0\xd7\xe6\xea\xfd\x7e\x3f\xf8\xf3\x40\x57\xbb\xcf\x37\x26\x57\x0f\x2d\x1c\xec\xe6\xe9\x74\x1c\xe5\x45\x84\x80\xdf\x63\x1d\x8f\x6a\x32\xea\xa3\xae\x60\x65\xb2\xd0\x24\xba\x77\xfb\x48\xd9\xc8\x47\xda\x4c\x64\xe9\xd0\xe2\x08\x1d\x72\x92\x89\xef\x10\xcc\x81\xaf\x9b\x02\x7e\xaf\x75\xbf\xf4\x9b\x3b\xc9\x58\x68\x6e\x50\x46\x01\x10\x70\x43\x10\x32\xb4\x89\xe0\x98\x31\x25\x2f\x93\x8a\x8a\xf3\x10\xca\x77\x58\xe5\xe3\x50\xe0\x44\x79\xfe\x1c\x6a\x37\x28\x4e\x33\xec\x41\xcf\x16\x32\x44\xaf\x91\x66\x2f\x1c\xec\x86\x36\x8e\xcb\xd8\x64\xba\x92\x7a\x52\xd9\x93\x93\x6a\x62\x60\x62\x92\x79\xcf\x0f\x72\x5e\xd5\x44\x4f\x2a\xa5\xed\x8b\xb4\xcb\x61\xc2\x4e\xbb\x14\xc0\x4c\xa7\x26\x2b\xca\x9c\x6c\xbc\x6b\xe1\x3a\xa1\xeb\x7b\x5a\xc1\xf9\x8c\x02\x78\x64\x13\x53\x43\x2a\xfa\xae\xa3\x9f\xa0\xca\x29\x99\xdf\x41\x5b\x97\x0a\x1e\xff\xf2\x85\x9e\x52\x68\x38\x31\xf3\x9d\x32\x1e\xce\x91\xe9\x56\x5f\x48\xba\xac\x88\xb9\x9f\x45\x57\x02\x91\xd9\x53\xbd\x17\x54\x95\x32\x19\x02\xe7\x07\x7c\x11\x1a\x76\x77\x03\x35\xf1\x7c\x57\x61\x12\xf3\x22\x9a\x94\xb1\x11\xb1\x27\xa1\x81\x81\x58\x09\x5f\x07\x02\x87\x5a\xb3\xf9\x0e\x45\xc3\x7d\x4f\x97\xa5\x3b\xeb\x9d\x5f\x17\xb8\xdc\x3b\xf4\xdb\xee\x0b\xb8\xb8\xf5\x26\x75\xe3\xe9\xdf\x3f\xfb\x42\xcf\x8f\x23\x3d\x6a\xc1\xbc\x2d\x74\x57\x6d\x1c\x47\xc9\xa8\x48\x31\x15\xee\x68\xa6\xaa\x07\x90\x24\x54\x85\x11\x83\x49\x84\x12\x87\x03\xd3\x38\x91\x96\x0d\xd7\x62\xa0\x64\x65\x58\xe5\x2b\xa8\xc3\xe2\x2d\x43\xdb\x53\x7d\xc0\x81\x86\xc0\x68\x56\xc6\x40\xb5\xf9\x13\x4f\xef\x12\x30\xd3\x3f\x9c\xa9\x7e\xf7\x15\x15\x5b\xc6\xa6\x1c\x8d\xeb\x1e\xed\x75\xcd\x3f\xfc\x7a\xa3\x88\xf9\xc5\xae\x29\x07\x11\x98\x6b\x85\xc0\xa3\xa3\x88\x3d\xb4\x27\xc9\x97\x23\xe4\x81\xa2\xb7\x45\x7f\x59\x0c\x8f\x37\xf3\xc3\xa8\x5a\x48\xe8\xc9\x8a\xa0\x70\xf5\x55\x1e\x5d\x51\xf2\x71\xe0\xee\x11\xf8\x7e\x2d\x2b\x8c\xa3\x61\x14\x82\x43\x96\x8f\x2c\x4a\x1d\x72\x7e\x9b\xa5\x80\x03\xdd\x3c\xcc\xac\xc5\x9b\x43\x46\x88\x39\x7b\xbe\x76\x20\xbd\x34\x19\xa5\xce\x97\x60\x5b\x21\xeb\x41\x54\xf2\x3c\x65\x3d\xf0\xe4\xb7\x5b\x10\xd1\xdd\x32\x67\x1a\x5c\xf8\xfe\x7f\xab\x0a\x56\xff\x56\xc1\xf8\x50\x46\x43\x23\xfc\x49\x24\xf5\x30\x5e\x90\x6f\x15\x96\xac\xea\x97\x61\xa1\xde\x56\xb9\x44\x51\x66\x93\x34\x8a\xe7\x55\x37\x0e\xe2\xcc\xc2\xdb\x53\xad\xab\xab\x59\x55\x87\x08\xb5\x6b\x3f\x9c\x38\x28\xfb\x51\x5a\x22\x6f\x71\x22\x95\x5e\xb0\xb2\x36\xfe\x4a\x94\xea\x8e\x42\x8b\xa5\x73\x04\xe4\xd1\x0a\xb8\x49\x27\x1d\xdf\x88\x82\x69\x93\xd2\x98\xec\xfb\xd5\x68\x60\xf3\x69\x66\x0d\xab\xf6\x39\x02\x5c\x87\xe6\x7f\xa8\x0a\x9f\xbb\x10\x7a\x08\xc0\xa8\xfa\x4a\x8f\xce\x7a\x00\xf2\x4a\xb7\xd7\x22\xcd\x55\x64\x00\x44\x0b\xde\xb5\xfa\xd3\x78\x71\x0f\xd5\xf4\x4a\x1b\xc9\xfd\x42\x77\x90\x99\x55\xa8\x67\x21\x1f\xb9\xac\x43\xc7\x3b\x8a\x85\xfb\x78\x2b\x47\x52\x61\x0e\x03\x77\xe9\xe2\x52\x24\x11\xa2\xaf\xe4\x4f\x02\xbf\xca\x39\x0f\x02\x3c\x1f\xf8\xc6\xed\x25\x35\x3a\xf7\x97\x55\xea\xe9\xa2\x89\xc9\x34\xcd\x4c\x16\xc5\x6b\x3b\xe8\xfd\xe2\xa0\x63\xa9\x11\xf4\x00\x71\x80\x5f\x1d\xc3\x80\xf3\x0f\x51\x96\xa0\xc6\x2e\x17\x9c\xea\x05\x7d\x47\x01\xa6\xfa\x19\x82\x71\x99\x8c\xb2\x35\x8a\x5c\x5c\xdd\x6d\xaf\x5b\xbf\xe0\x85\xba\x03\x3f\xf8\x4a\x77\xcf\x9e\x27\xc8\x03\x63\x7b\xbf\x87\x7c\x02\xe9\xf8\xbb\x2a\xe9\xea\xac\xab\x31\x35\x6e\x8a\xe2\x04\xa3\x87\xec\xdc\xbf\x2e\xfb\xbb\x95\xff\xf3\xa6\x8a\xe2\x6e\xea\xa4\xd1\xa6\x86\x55\xd9\x02\x29\x76\xbe\x69\xdb\x24\xe3\x14\x29\x39\xda\x97\xd7\x11\x29\xf1\x8d\x62\xd1\x70\xd4\x1e\x79\x47\x8f\xb4\x74\x1c\x89\x95\x0e\x62\xfb\x59\x64\x87\xf1\x1a\x4d\x7e\xa3\xb6\x71\x0b\xf5\x61\xbe\x69\x08\xc6\x10\x23\xeb\x64\x0a\xf7\x82\x00\xd4\x41\xca\x1c\x9d\xce\x05\x15\xed\x1d\x4c\xd3\x79\x45\xc4\xf9\x2e\xb9\x31\x94\x75\x30\x20\x88\x5f\xd9\x0a\x78\x1a\x9c\xf5\xb5\x46\xf0\xfc\xea\xee\x97\xbb\x49\x9a\x15\x63\x6b\xf2\x82\x76\xa0\xf0\x9b\x56\x7f\x02\x8e\x84\x3b\xa3\x88\x31\xf4\xa6\x48\xb3\xc2\x8e\xcc\x13\x1e\x3a\x21\x24\x15\xdc\x7b\x84\xe9\x47\x74\xf3\x63\x54\x97\x9c\xc0\x6b\xb5\x16\x1c\xf7\xa8\xa6\xf2\x35\xda\x55\x12\x0f\xd1\xc7\xca\x58\xeb\xe6\x37\xbd\x67\xa1\x3b\x8e\x46\xe3\x39\x1f\x80\x02\x6b\x0a\x03\x31\x8f\xe4\x10\xc6\xf0\x5a\x83\xdb\xbf\xfa\xda\x83\xa8\x72\x07\x83\x48\xa2\x5d\x09\x13\xd4\xcc\xd9\x3b\xc1\xe6\xed\x52\x9d\xec\x3c\x25\xab\xe0\x98\x96\x5d\x37\x0f\x04\x42\xf8\x26\xef\xb6\xc9\x36\x8d\xd3\xbc\x30\x23\xc1\x6e\xb2\x74\x21\xed\x67\x91\x31\xf4\xa0\x66\x13\x9b\x97\x3a\x3e\xce\x62\x5e\x3d\xbe\x69\x6d\x4f\xe7\x85\xcd\x6c\x4a\x88\x19\x14\x27\x31\x0b\x8e\x64\xf4\x09\xe4\x61\x4c\xc8\x8a\x78\x42\x7a\x3d\x2d\x3d\xd9\x69\x9a\x66\x96\x83\x5b\x06\xae\xa1\x95\x28\x28\x36\xa7\xd4\x62\xcd\x8a\x85\xca\x39\x06\xd0\x2f\x05\x3e\x86\x3a\xab\x4d\xe6\xdf\x29\xd6\x87\x24\x2d\x9c\x71\x74\x7c\x57\x8a\xc9\x5f\x0d\xe7\x4d\xc2\xd8\x26\x89\x49\x3a\x35\x54\x36\x56\x43\x20\xda\x1e\xb1\x66\x68\x6c\xb8\x88\x04\x8b\xcf\xfa\x83\x2a\xfb\x3b\xad\x32\x64\x13\xc7\x76\x2d\xef\x54\xc6\x56\xbc\x1e\x6d\x4c\x71\x87\x2d\xf0\x89\x49\x3a\xb0\xf1\x9c\xf7\x99\x5c\x8c\x66\xaf\xab\xf4\x3c\x9a\x63\x25\x7b\x17\xbb\xb1\xd8\x26\x19\x17\xf6\x3f\x7f\xbe\x25\x62\xe9\x0e\x2c\xb1\xd9\x2b\xc4\xdb\x25\x85\x78\xbb\xa4\xe2\xfd\xbd\xaf\x2c\x20\xb6\x46\x03\xad\xb3\xee\x07\x28\x3a\x3d\x3f\x67\x19\x66\x36\x0f\x6d\x32\x48\x55\x11\xf2\x8c\xee\x72\x9c\x51\x09\x6b\x99\x44\xc3\x28\xcb\x11\xc1\x32\xc0\x2c\x50\xb5\xf7\x8d\xca\xf5\x3b\x49\x81\x3c\x8f\xfa\x51\x1c\x15\x32\xe5\x08\x9f\x0b\x1f\xc4\xd7\x75\x01\x92\x72\x42\xb2\x4f\xf0\xae\xdf\x41\x5b\x92\x91\x0a\x54\xe1\xe5\xff\x08\x94\xc2\x0f\x0d\x55\x4a\x8d\x36\x8c\x30\x55\x19\x6e\xc7\xd6\x10\x72\xca\x8e\x23\x76\x7a\x82\xc2\x47\xd4\x3b\x18\x63\x8e\x32\x19\x93\x65\xb0\xdb\xa9\xd1\xec\xb4\xcd\xa5\x2d\x47\x03\xe1\x2a\x77\x2f\xce\xbf\xc4\x26\xde\xfa\x95\x03\xdd\xd1\x5a\xa6\x58\x58\x98\x9b\x21\xe8\x28\x4d\xae\xcf\x6a\xa2\x54\x47\xc5\xfd\x14\x9d\x18\x0c\x70\x5d\xa2\x30\x40\xc8\x02\xc1\xa5\xe5\xe8\x18\x7c\x53\xfc\x23\xb4\xcb\x1d\x45\xe5\xd2\x6e\xee\x84\x5f\x57\xc3\x07\x97\xbd\x52\xee\xbf\xfe\x6c\xcf\xc3\x67\x3f\x03\xf7\x28\x39\x49\x9b\xa0\x42\x98\x26\x2b\x36\xa9\x16\x9b\xb6\xae\x56\x0b\xe0\x6b\xd5\xde\x89\x32\x82\x72\x99\xbe\x0c\x96\x33\x73\x3c\x2d\x98\xb0\xc8\x3f\x0e\x93\xb3\x66\x4d\x56\x03\xb6\xc3\xbd\x8a\x85\xf0\x3b\xd3\x24\x49\x5a\x26\xa1\x9d\x57\x7a\xef\x3b\x10\x42\x3b\x1a\xee\x45\xc5\xb7\xeb\x99\xfe\x9b\xdc\xb2\x24\xe5\x9b\xe6\xc5\x1c\xe5\x12\xf0\x72\x47\x40\xe4\x87\x23\x7e\x1b\x7e\x4c\xb8\x41\x75\xb2\x93\x45\x23\x34\x98\x58\x99\x40\x33\x50\xcd\x14\xd3\xf2\xf7\x95\xd7\x1c\x94\xfd\x34\xb7\x14\x4a\xa1\xa8\xf6\x96\x82\x7c\xbe\xd5\x6e\xd9\x27\x54\x37\x52\xad\xd1\xb3\x7a\x03\x34\xc9\x6d\xaa\x64\xc7\xac\xa4\x2c\x4c\x8b\x62\xc7\x29\x1c\x73\xbe\x69\x1b\xc5\xcd\xe3\xb4\x0c\x31\xe6\x8a\xd2\x1f\x54\xa1\xf8\xba\x85\x91\xbf\x1b\x25\x2b\x4a\xbd\x50\xe4\xbf\xe9\x8b\x8b\xb6\x45\x5b\xb7\xb0\x8f\xf7\xec\x41\x47\x3c\x28\x2b\xe9\x8f\xf4\x9f\x2b\x17\x5d\xe6\xb9\xf0\x61\x2b\x9d\x52\xf1\x98\x2c\x1a\x2e\xec\x2d\x8a\xb4\xcf\x4c\xa6\x65\xae\x79\x8a\x7f\x3e\xf3\x55\xc4\x9f\x37\xa1\x5a\x0b\xdd\x61\x96\xf2\x16\x17\x39\x87\xce\xa2\x97\x7c\x68\xc9\xf3\x86\x71\xba\x3a\xaf\x20\xa5\x28\xcc\x20\x6c\x87\x48\x19\xa2\x48\xf0\x20\x48\x27\xa1\x45\xb8\x29\x2f\x33\x27\x8b\x28\x6a\xdc\x64\x37\x44\xa6\x5b\xbc\x6d\x3f\x36\x13\x29\x13\xa0\xce\x84\xcf\x71\x25\xd5\x6a\x31\xa4\x64\xec\xcb\x89\xab\x69\x5a\x13\x76\xbf\xa2\x84\xdd\xaf\x28\xb1\xa6\x7e\x5a\x14\x31\xd8\x4c\xd0\x41\x3a\xaf\xa5\x67\x37\x94\x38\xc2\x79\x3d\x13\xd3\xec\xbb\x2f\x1c\xec\x0e\x4d\x12\x46\xc2\xa8\xe1\x58\x03\x1d\x5a\xa3\xb9\x0e\xa4\x90\x67\xcd\x54\x7e\xc7\x91\x72\xb9\x17\xf2\x9e\x8a\xc6\x87\x76\x40\xa4\xc8\xb9\xd4\x49\xa5\x63\xa0\xca\x21\x33\x58\x79\x74\x43\x4e\x28\xf4\x5a\x94\x0c\x4b\xae\x30\x3b\x4b\xbb\xe8\xac\xae\xda\x45\x99\xcd\xcb\x89\x9d\xaf\xce\x2a\xd2\xe7\x47\x81\x6e\x04\xd6\x1a\x84\x4b\x32\x4d\xf5\x48\xb9\xe5\x5f\xf9\x95\x5f\xed\x78\x88\xcd\x1c\x75\x68\xf9\xba\xa7\xf8\xd0\x27\x93\x28\x61\xa9\xb3\x03\x8c\x43\xe2\x3c\x84\x6f\xda\x84\xa4\xa7\xb1\x35\x74\xbe\x65\xac\xb8\xe3\x79\xe0\x14\x66\xce\x86\xe3\x94\x43\x5c\xc1\x1b\x79\x7b\x73\x56\x95\xb4\xfb\x66\xd4\x51\xc6\xec\x0c\x76\x13\xdf\x04\x72\x26\xcb\x24\x49\x8b\x28\xe4\xf1\x69\x54\x80\xb8\xf7\xeb\x90\x72\x6e\x29\xde\xaa\x31\x7d\x85\x51\x21\x5e\xc1\xf1\x80\x54\x1f\x21\x91\x94\x66\x09\x2c\xab\x9d\x08\xa6\x35\x44\x31\xd7\x03\xcf\x46\x78\x91\xbe\x2a\x8c\xdf\xbb\xae\x1c\x46\xb2\xd3\x1d\x35\xfe\x86\x42\x3c\x5f\x2b\x90\x55\x5e\x94\xd3\x68\x40\x13\x4e\x3e\xf9\x3c\xae\x63\x37\x65\xae\xf3\x32\xb3\x31\x93\xd9\x68\xb8\x2e\xbe\xe0\x7f\x08\x7c\x5d\xfe\x9c\xd2\xaf\x2b\xc6\x99\x35\x05\x78\xf4\x3d\xcb\xf2\x2c\xf0\x84\x22\x33\xa7\x1f\x6c\x0f\x87\x71\x09\xce\x92\x8e\x8e\x44\xaa\x9f\x15\x8c\xa1\x7c\xc7\x51\x95\x42\xcc\x93\xa7\x62\x6a\xd8\x99\xef\x4f\x3c\xd5\xf3\x51\xc9\x03\xca\x07\x05\x46\xeb\xbf\xfb\x28\x8d\x6d\xd2\x4f\xc3\x65\x98\x5f\x27\x16\xef\x0b\x3a\x67\x1b\xb6\x71\x71\x91\x9a\xf8\x56\xc9\xb6\x5e\x52\x24\xe7\x97\x54\x6d\x71\x92\x12\xb7\x2b\x99\x10\x78\xbe\x47\x41\xbd\xab\xe9\x32\xad\x27\xd7\x7d\x09\xb1\xd3\x93\xed\xd5\xcf\xac\x59\x1e\x9a\x1c\xc5\x31\x38\x11\xee\x3a\xc9\xea\xd3\xb3\xc2\x29\x61\x23\x00\x51\xbf\xab\xf7\x8c\x6a\x7d\x25\xcb\xcf\xea\x02\x6d\xf5\x63\x8e\xfe\xf5\x90\x8b\xaa\xfe\x63\x4d\x5c\x5c\x25\x45\x3f\xc2\xe9\x83\x89\xbc\x86\xaf\x20\x83\x0b\xaa\x9d\x78\xb1\x8a\x6e\x1f\xcd\xb1\x44\x0f\xe2\x94\x9f\xc3\x3f\xa1\xa3\xf7\x26\x75\xf7\xa4\x52\x56\xd9\x11\xd4\x01\x19\x4d\x89\xc3\xf5\xbd\x06\xd3\xd8\x17\x89\x20\xb1\x5f\x46\x31\x35\xb5\x7c\xc3\xe0\x9e\xa2\xc9\x3f\x83\x86\x85\x00\x7d\xdd\xb4\xb8\xcd\xf2\x28\x2f\x6c\x02\x95\x79\xd6\x59\x57\x6a\xb5\xcf\x50\xf8\x87\x90\xbc\xb3\xee\x6d\xd5\x82\xb5\x0a\xc4\x70\x42\xcb\xf1\x9c\x68\x24\xc2\x07\x5f\xe9\x16\x2b\x68\xa5\x23\x5d\xff\x6b\xfc\x3c\xdf\x28\xac\x54\x3f\x2e\x93\x82\xb7\xb6\x84\x12\xb4\x84\x12\x63\x3c\xa7\x80\x04\xa1\x89\x63\x4d\xdc\xf5\x4d\x4d\xdc\xf5\x4d\x85\x0b\x2a\x56\x23\x1e\x4c\x7a\x75\x37\xf4\x8c\xf7\x3f\xba\xe2\x8c\xd4\xc0\x16\x96\x48\x54\xe6\xfd\x50\xc2\x96\x9e\xcf\xd4\x6f\xd0\xe1\x12\x31\x3b\x35\xa5\xa6\x33\xf0\x41\x69\xe2\x39\xed\xb9\xa9\x73\x84\xb4\x1f\x0d\x29\x04\x77\xb7\xdc\xc7\x0e\xcb\x38\xce\x43\xc3\xd3\xd6\xc8\x09\x61\x57\xf8\x5a\x55\x88\xf2\x82\x1a\x1c\xdb\x14\x0f\xb9\x80\x13\x65\xae\xc6\x17\x3f\x6f\x28\xbe\xcf\xf7\x68\x4b\xc1\x8b\x7e\x32\xdb\xe9\x63\xe2\xa8\xa3\xf4\x1c\x03\xdd\x70\xf2\xb0\xbf\x3c\x8e\x06\x6a\x34\xf0\x2e\xd4\x9a\xee\x04\x0a\x20\x84\xfe\x94\x20\x48\xdc\xb9\x34\xc9\x60\xd5\x8c\x52\x28\xe6\x0b\x86\xd6\xfb\x73\x00\x74\x04\x42\xdb\x52\x12\x1e\x9a\x28\xa3\x4f\x46\x2d\xfb\x6e\xa0\x4e\xc9\xfb\x33\x3f\x83\xf9\x40\x33\x24\x1e\x6b\x13\x56\xee\x86\xe3\x34\x24\x26\xce\x8e\x22\xa3\xa8\x0b\xa5\x7a\xfb\xfd\xb5\x28\x29\xec\xe1\x39\xdf\x0b\xbb\x4a\x53\xd5\x78\x75\x4c\x9f\x25\x95\x36\x6f\xbf\xfb\x65\x66\x4d\x19\x66\x26\x84\xf0\x23\x92\xab\x3b\x70\x89\x7a\xb4\x1b\xce\xe9\xa9\x5e\x95\xbd\x3e\xba\xa2\x38\x3f\xab\xd0\x38\xcb\x2d\x36\x33\xbe\x0d\x72\x77\xbe\xae\xc5\xaa\x19\xcb\x16\x7b\xd1\xf5\x9a\x50\xfb\xe6\x50\xe9\x0b\x5f\xe8\x9a\xa2\x30\xe1\x18\x93\xdf\x48\x38\xae\xab\xb9\xbc\x9f\x11\xf9\x80\xbc\xfe\xcd\x44\x99\x5f\xec\x66\xc2\xb2\x02\x03\xb4\x65\xdd\xc3\xa7\xb7\xf4\x7c\xed\xa5\x18\xa7\x93\x69\xce\xbd\x2e\xc1\x3b\x28\xec\xc3\xec\x05\xe9\x44\x59\x64\x02\x13\xb2\x3a\x9a\xf6\x6f\xdf\x3e\xce\x2d\xe7\xd6\x15\x3b\xc7\x99\xc6\x7b\xa5\x61\xd3\xb1\x49\x06\xbe\xfe\x09\x13\x0d\xac\x04\x5f\xb7\xa8\x9a\xef\xef\xa6\x89\x9d\xa3\x0c\x18\x47\xf3\x4d\xfa\x05\x69\xdd\xfa\xb3\x72\xa5\x6d\xc2\x72\x39\x0a\x65\x3a\x40\x36\x01\xbd\x30\xa9\xb7\x3e\xa3\x75\x90\xc2\x6d\xbe\x14\xff\x74\xcf\x13\xca\x7f\x88\xbd\x8c\xd2\x02\x06\xf8\xf0\x92\x6f\x6b\xb5\xef\xcb\x2a\xa8\x18\x45\x34\x72\xaa\x0a\x9c\x47\x19\x51\x2f\x0a\x20\x9d\xc5\xc5\x47\x57\x66\x24\xd6\x8e\xc3\x09\xef\xf5\xd6\x4c\x31\x55\xbc\xe5\x4e\x67\x98\x66\xc9\x30\xb2\xf1\x40\x75\x69\x4e\x2a\x72\xf4\x93\x8d\xac\x97\x38\x5f\xab\x10\xa8\xe3\x08\xbd\x8e\x04\xaa\x8d\x79\x44\x1d\x86\xa1\xcd\x8a\x28\x8e\xde\xb0\x92\x9c\xbb\xa1\xd7\xc5\x45\x37\x26\xfb\x59\xdd\xed\x05\xa5\x8c\xa4\x34\x5c\x39\x26\x7b\x26\x55\x64\x3d\xfb\x95\xae\x44\xa3\x74\xae\x11\x26\xc0\x44\xa1\x51\x83\xf2\x4f\xb3\x54\x49\xcc\x64\x51\x21\xdb\x19\xf6\xe7\x1c\xde\x07\xdf\xd4\x8a\x4e\xf9\xb2\x21\x56\x1e\x1e\x6f\xd1\x44\x3a\x3c\xb4\xc2\x37\xf4\xdd\x50\x51\xba\x54\xe7\x6c\xf5\x4a\x15\xcb\x6b\x2f\xcd\xfb\xef\x77\x7f\xa6\x64\x73\xd1\x22\x77\x82\xf4\xee\x8b\xdf\x6f\x9b\x11\x9a\x44\x87\x41\xbd\xbb\xe0\xa0\x20\xb4\xcc\x88\x8b\x4f\xc0\x46\xa1\x7c\xf1\xb6\x82\x4e\x36\x89\x7c\xf7\xec\xe9\xda\xe4\xab\xe9\x9a\x24\xe4\xf8\x1d\xe6\x2f\xe0\x1b\x4d\x58\x93\x8d\x4c\x12\xbd\x61\xa0\x05\xea\xa5\x3a\xdf\x09\x34\x11\x9a\x3f\xc2\x27\x14\xc9\xf2\x9f\xb8\x6e\x69\x0c\x47\x8c\xf7\x87\x6f\xfc\xa9\xea\xaf\xcf\x93\xdb\x45\xd5\xe1\x58\xad\x78\x32\xb1\xa6\x43\xe7\xb6\x95\x11\xd9\xf3\x11\xa4\x2b\x36\x1b\x9b\x12\x33\xe8\x0c\xe3\x0a\x3a\x4a\xeb\xa5\xb1\xb7\x97\xa8\x18\x3e\x25\x57\x85\xc3\xff\x00\x6b\xe0\x34\x98\xbd\x1e\xc2\x86\x2a\xc4\x0d\xa2\xbc\xc8\xa2\x7e\x29\xc8\x83\x97\x5d\xdf\xda\x23\x7a\xce\x37\x4c\x57\x15\x0a\x71\xb8\x5f\x65\x45\xaf\x0a\x27\xf5\x55\x5d\xa8\x78\xa8\xc3\xc6\xb3\x6d\x82\xf2\x69\x6e\x96\x35\x66\x83\x2b\xcb\x32\x9d\xef\xdb\xb1\xe9\x68\x60\xa5\x1c\x2e\x2c\x69\xf4\xa3\x7c\xd3\x56\xaa\xe8\xa7\x93\xbe\xe2\x24\xc2\x14\x89\x4c\xef\xf8\x1c\x2d\xca\xf3\x92\x38\xae\x1c\x70\x8d\x2b\x00\xa2\xe7\xd3\x82\x5d\xac\x8e\x7b\xca\x86\x01\x71\x01\x08\x66\xf8\x5a\x05\x1f\x36\x8e\x98\x62\x48\xfa\xc8\xd5\x51\x94\xe0\xd8\x2b\x36\x10\xd1\xf7\x53\xf4\xb9\xb0\x01\xc0\x07\x4a\xff\x98\x5e\x1e\x2a\x2b\xd8\x68\x3c\x6b\xa8\x71\x4a\xd7\x00\xf3\x11\xc9\x0c\x7a\x11\x12\xd9\x77\xfc\x7f\xd4\x18\xa3\xc8\x9f\x8b\x67\x7b\x4e\x29\xc2\xc4\x54\xe7\xa9\xb6\x83\x14\xcc\x75\x0d\xde\x17\x1a\x8f\xd1\xa1\xc7\xfb\xde\xda\xf3\x1a\xb3\x8e\xd2\xdb\xc4\x92\xff\xa2\x63\x78\x46\x75\x0f\xcf\x28\xca\xf8\x49\x98\x98\x89\x61\xce\x36\xd8\x9d\xbb\x2a\x76\xb8\xdb\x4a\x5c\x62\xf2\xbc\x9c\x70\x48\x24\x53\x5a\xb4\x22\x32\x8a\xe4\xa6\x0a\x4c\x11\x59\x3f\x55\x00\xb8\x0e\x57\xe0\x84\xd6\x48\x11\x64\xf8\x71\x90\xcc\x86\x59\x19\x15\x08\x55\xea\x42\x0a\x7c\xdd\xd6\x8f\xcd\x0b\xb3\xd6\x51\x1d\x86\xdb\xba\x74\x74\xdb\x65\xc1\x85\x8d\x6d\xbe\x96\x17\x76\x92\x6b\x52\xf6\x8f\x03\x4d\x4d\xf3\x71\x8b\x2a\xd9\x7e\xca\x78\x1c\x85\x18\x56\xf3\x84\x06\x0f\x9f\xd0\x28\xd4\x72\xb9\xe3\xe3\x83\x8f\x35\x15\xdb\xc7\xc1\x0b\x6e\x38\x27\x1d\x65\x66\x42\xef\xac\xe3\xea\xe6\xdf\xda\xc0\x1a\x09\x2a\x56\xcb\x04\x24\x66\xc2\x35\x16\x6c\x0b\x76\x06\x7c\xd3\x8a\xb0\x1e\x44\x2b\xd1\x26\x29\x35\x4c\xe1\xf0\x75\xa3\x4a\xfe\x15\xe2\x4d\xc9\x0b\xe3\xd2\x29\x99\x79\xae\xb6\x9d\xcc\x42\x2b\x08\x58\x3f\xdf\x46\x4b\x2d\xa5\x1e\xc5\x0d\xc0\xf5\x63\xb8\xd5\xed\x3d\x85\x13\x7f\x7b\xe6\xe3\xdd\xf9\xf5\xb6\xc2\x5e\xa4\x94\x49\x00\x34\xc6\x31\xe4\xeb\x40\xd3\x30\xfc\x73\xb0\x21\xb0\x16\xd1\xac\x06\x85\x72\x6e\xe1\xae\x26\xee\xe2\x95\xc3\xf9\x7e\xae\x87\xae\x87\x8c\x1f\x63\x2f\x20\x2b\xef\xf4\xfc\xc9\x63\x39\x4e\x69\x95\xfa\x54\xf3\x4f\xf1\xa5\xa5\x0c\xa0\x87\xc3\x19\x03\xdd\xf1\x30\x03\xb6\x75\x7c\x53\x9f\x50\x5c\xb6\xcf\xd3\x47\x68\xbd\x08\x41\x95\xd0\xd3\xe3\xb3\x7f\x88\x0c\x81\x39\x9b\x80\x48\x52\x93\x22\x2f\x3b\x20\x87\x9f\x44\xb9\x39\x53\x32\xdc\x40\xbf\x70\x8d\x75\x33\x1f\x70\xb5\x2e\x2c\xfc\x83\x19\x2f\x2c\xdf\xa7\xb0\x75\x22\xc3\xec\x39\x38\xbe\x47\x6d\x34\x94\x61\x6e\xa9\x30\x8a\xc5\x81\x64\x36\xcf\x89\xd3\xc6\xe9\x28\xef\xa8\x12\xf2\x87\x78\x32\xbe\x69\x9c\x6d\x02\x8d\x82\xfb\x51\xd2\x67\x8e\xa1\x24\x77\xf7\x71\x0f\x0f\x3a\x48\x1e\xdf\xa6\x14\x9b\xd9\x3c\x2d\xb3\x50\xba\xe3\xc2\xb3\x4f\xdf\x9a\x6f\xdc\xa3\xf6\xa3\x65\x2b\xf6\x4b\x08\xc3\x15\x7b\xd2\x3d\x45\x69\x71\x59\x49\x8b\x99\x28\x7b\xc2\x2f\xfc\xdd\x4d\xe2\xf1\xde\xe4\xed\x58\x57\xdd\x51\x36\x40\x08\x8d\x98\x18\x51\x4f\x52\x39\xdd\x1a\x0f\xa3\x69\xf6\xd1\x9c\x50\x7a\x9a\xe7\x16\x7b\x4e\xb2\x33\x7a\x08\xc9\xda\x95\x9e\x7f\xb4\x12\xe5\x51\x9a\x6c\x57\xa7\x96\xd5\x56\x6b\xfa\xb6\x78\xe2\xad\x78\x2e\xc0\xa6\xbe\xab\xc4\x97\x01\x8a\x40\xb8\xbb\x73\xbd\xa6\x6c\x6d\xf2\x37\xc6\x36\x02\x4e\x4b\x75\x82\x5f\x73\x5f\xbc\xc5\xd9\x4f\x4c\xb6\xbc\x6c\xe6\xaa\xec\x12\x7d\x4c\xd6\xbc\x76\xd3\x07\x7e\x50\x75\xe6\xb5\xf9\x06\xf6\x29\xdf\x3a\xd8\xb5\xee\x46\x79\xbe\xf1\x22\x7a\x76\x6e\x00\xc9\x1b\x63\xd2\xa6\x7e\x4d\x8f\x26\x2d\x38\x16\x8f\xea\xd3\xf1\xb5\x9f\xee\xd5\x25\x35\xf6\xbb\x02\xdb\x65\xc5\xad\xb3\x7d\xbd\xa5\x75\x35\x32\x79\x1a\x47\x8c\x60\x46\xb5\x03\x55\x16\xbe\x76\xf5\x34\xee\x35\x3a\x93\x87\x32\x85\x46\xee\x9e\x6c\x13\xe7\x1d\x46\x89\xd3\x31\x80\x8b\xfd\x3b\xbc\x30\xbe\x99\x29\x88\x43\x94\x4f\x4c\x11\x8e\x71\xf6\x98\x7b\x5e\xcf\xee\x9c\x52\xe4\x4e\x45\x3a\xcd\xe7\x7c\x01\x9f\xc5\x9a\xc5\x7a\xd4\xa6\xb6\x94\xd7\x4b\x0a\x50\xcc\x4b\xdc\xe3\xc7\x53\xef\x07\x8a\x1e\x92\x61\x33\x22\x90\xe8\xd5\x30\x2e\xab\x5e\xd8\x77\xf1\x36\x84\x2f\x97\x3e\x52\xea\xf2\x6d\x07\xbb\xc8\xa2\x72\x32\x75\x88\x53\xe1\x33\x54\x78\x94\x93\x0d\x83\x40\x0e\xd2\xc6\x52\xe3\x5b\xac\x89\xb2\xbd\x2c\x37\xea\x1b\x7e\x69\xe9\x2b\x0a\xb3\x8e\x16\x87\x74\x47\xb5\x21\x1f\xa4\x13\x9a\xda\x04\x34\x92\x0b\x5f\x42\xb7\xad\xb8\x9c\x3f\x0a\x7c\x7e\x7f\x4a\x4d\x32\xdd\xa9\xd1\x4d\xa9\xb0\xe6\xdf\xd7\xfc\xc5\xaf\x7d\x69\xf1\xf3\x9e\xea\x99\xc1\x3b\x02\x53\x22\xa4\x83\x54\x37\xe8\x4f\xc8\x60\x63\x65\xaf\xb1\x67\x1f\x2a\xf8\x2f\xc6\x94\x05\x24\x5b\x9d\x1e\xe6\x9b\xd6\x7a\x28\x4c\xc0\x00\xb8\xf6\x5f\xd2\x53\x8a\xec\x8e\x1e\x0a\xb8\x0e\x38\x05\x4a\xa2\xd7\x67\xbe\xde\x7b\x5f\xcf\xba\x73\xac\x80\x3f\xf6\x01\xd5\xad\xe1\x6b\x10\xee\xa2\xad\xd0\xc1\xe1\x85\x1d\xd8\xda\x53\x4e\xe8\x02\xdc\x13\xea\x98\x27\x67\x8a\x1c\xe7\x8f\xf0\xda\x45\x6b\x61\xb3\x85\xa9\xe2\xd8\xc4\xda\x41\x8e\xc6\x3e\x7e\x67\x7b\x4f\x65\xc3\x17\x80\x13\x71\xe0\x73\x2f\x1a\xdc\xc8\xa9\x16\x0e\x76\xb3\x74\xcd\xc4\x9c\x2a\xe1\xd1\x78\x96\x91\x6f\xd4\x98\x79\x91\xd9\x64\xf0\x84\x2f\x68\xbe\x4f\x66\x06\x46\xf4\x23\x25\xf0\x08\x51\x16\xa1\x00\x53\x79\xd7\x39\x76\xd7\x78\x97\x5c\x9c\x47\x75\xe4\x06\x9d\x24\x91\x05\xfc\x8c\x9e\xf2\xcb\x6c\x9e\xf3\x74\xab\xd4\x88\xe9\x17\xa5\x78\xec\xf8\xb5\x92\x91\xcd\xe6\x94\x52\xd4\x6f\xe3\xe0\x49\xcf\xdd\x07\x6d\x97\x1b\x65\x81\x7d\xfb\xba\xe9\xd4\x66\xa6\x00\xce\x11\x21\xc8\xf7\x15\x2f\xfc\xf7\x5d\x6e\xd0\x8f\x4c\x92\x94\x35\x36\x5e\x26\x4a\xe2\x1b\xd7\x6d\x0b\xb3\x74\xca\xaf\x89\xb9\x83\x66\x3e\x6c\x0f\x01\x31\x41\x05\xe6\x53\xf5\x96\x3e\x75\xf0\xe3\xcc\xae\x9a\x6c\xc0\xbd\x6c\xb8\x6d\x08\x5c\xc0\x87\x31\xed\x03\x9f\x2d\x87\x9a\xce\xd2\x01\x2a\xaa\x32\x8b\xe7\x1d\xfd\x69\x57\x0d\xb3\x87\x6d\xc8\x24\x0a\xda\xc1\xab\x27\x0a\xfe\x53\xfb\x66\xcf\x9e\x6e\x3e\x36\x53\x2c\x16\x2c\xcd\x09\xad\xad\x78\xe2\x31\xa2\x86\x71\x54\xbd\xa1\xea\xe7\x10\x7b\xde\x53\xd4\x99\xdb\xa9\x40\xcc\x26\xf7\x7a\xeb\x08\xf5\x34\x8d\x92\x02\x70\x02\x69\xdb\x29\xca\x62\xcc\x59\x20\x53\xbd\x8d\xf8\x4d\x64\x1f\xfd\x64\xdf\xc0\x0e\xcd\xc4\x14\x29\xc8\xc5\x65\x12\xe3\x2c\x6c\x0c\xce\x3f\xa3\x27\x84\xb6\xc7\x27\xdd\xc5\x38\xca\x06\x40\x1f\x09\xef\x41\xf5\x89\x8c\x1e\x46\x88\x89\x56\xd3\x7b\x38\x82\x0c\x3e\x9a\x79\x89\xef\x39\x62\x3a\xc0\xc3\x6f\x5d\x57\x35\x96\x0b\x34\x98\x2b\x72\x67\xd5\xda\x23\x46\xb8\x13\x28\xd2\x97\x0b\x6e\x6b\xe4\x93\x34\x1e\x58\xa6\x7b\x14\x80\x88\x87\xc0\x9d\xd3\x36\x64\xa3\x4d\xa8\x0b\x54\x2e\x31\x26\x78\x85\x3e\xad\x7a\x4e\xbe\x56\x7e\x63\x32\xb5\x73\xc8\x31\xd0\x8a\xb8\x4c\xc7\x1e\xad\xbe\x47\xd8\xf9\x32\x5b\xe1\x3b\x43\x43\x93\x4d\xa8\x26\x2e\x61\x59\xf5\xbd\xf9\xba\x8d\xc4\x71\x60\x4d\xbc\x4d\xb1\x49\x9f\x51\x23\x0e\xa8\x6d\x20\x8d\x79\x72\x5d\xc1\x1a\x1f\x41\xdc\x53\x50\xe0\x3e\x5c\x18\x98\x37\xde\x88\xc5\x2d\x3a\xf9\x33\x2f\x85\xd6\xd8\xd0\x5f\xec\x16\xe3\x2c\x5d\x65\xc4\x8d\x2b\x4a\xbe\xea\x0a\x94\xaa\x2d\x35\xb1\x59\x58\x32\xc3\x02\x50\x2d\x68\x1d\xf2\xb5\x2a\xf3\x26\x29\x81\xef\x30\xa6\xd3\x71\x24\x6b\xbf\xa3\xc8\x6c\x7f\xa7\x05\x6c\xf5\x72\x77\x52\x86\xe3\x39\x0f\xe8\xbe\xaf\xb8\x2e\xf0\x59\x28\xf4\x3c\xd1\xf3\x35\x98\x49\x34\x18\xc4\xb6\xe3\xc5\x49\x50\x39\xe1\x6b\xbf\x71\xa2\x64\x24\x0b\x03\xa3\x7c\x1b\xf1\x02\xdf\x34\xf6\xca\xe2\x22\xe4\xc2\x5d\x70\x07\xe3\xf3\x67\xf4\xd7\xf9\xda\xfd\xf5\x49\x9a\xe5\x8e\x4b\xc1\xe1\xd3\x14\x82\x55\xa7\xde\x6b\x4f\x28\xa2\x10\x29\xee\x0b\xe7\xb2\x17\xf1\x7f\xae\xe7\x77\xc2\x73\xa4\x11\x23\xfc\x94\xde\xcb\x3c\xd1\xf3\x64\x24\x1b\x9a\x8c\xe4\x78\x43\x87\xe4\x8b\xdd\xd8\x8e\xa0\xc1\xc6\xea\x34\x8a\x48\xfb\x84\x9e\xb8\xbc\xae\x20\xb6\xb1\x29\x93\x70\x6c\xd1\x18\x44\xc9\x64\x0b\x05\xe9\x7c\xdd\x53\xe3\x5e\x41\xcd\xfd\xb6\xe8\xa0\x4c\x46\x13\x76\xb8\xae\xc5\xe6\x17\xe2\x2d\x25\xd0\x3b\x8e\xa6\xf4\xa2\xa4\xd5\x52\xeb\xc4\x39\xb7\x97\x45\x2c\xf8\x88\x48\x71\x1e\x01\x3f\x0c\xec\xbb\xb4\x90\x6e\x6c\xc4\xc5\x68\x37\x66\x9b\x29\x67\x9d\xa4\xe1\xd4\x9a\x65\x2a\x56\x7b\xc6\xc5\x1f\xc2\xe1\x22\xf0\xb9\xa2\x78\x91\xea\x9d\x83\x34\x9b\x6e\x57\x29\x26\x87\x74\x42\x0c\xed\x5d\x85\x28\x87\x00\x86\xb1\xb3\xe7\x1d\x33\x34\xb6\x91\x04\x6d\x57\x7d\xf7\xaf\xbc\xb2\x5b\x4d\x0b\x1d\xd7\x64\x0b\xc7\x55\x80\xd2\x37\x61\x75\xd0\x9c\xb6\x02\xcf\x65\xf2\x8d\x2a\x9f\x96\x59\xdf\x24\xf3\x3e\x13\xa3\x36\x52\x7d\xc4\x02\xd3\x93\x57\x61\x7e\x31\xe1\x74\xb1\x1d\x79\x48\x23\x82\xf4\x78\x4e\xa0\xa6\xfa\x54\xbe\x09\x3c\x00\x38\x4c\x93\xd0\x26\x85\x46\xbd\x4a\x33\x56\x35\x66\x5b\x0c\xc2\x62\x77\x6c\xb2\xc1\x7c\xf5\x2a\x61\x64\x80\xda\x65\x4e\x5c\x32\xad\x22\x23\xaa\x68\x1c\x9a\x5a\x10\xfb\xf6\x75\xf3\x32\x9f\xda\xd0\xe1\x11\x85\x12\xa1\xe3\x24\xb3\xdf\x6c\x78\xde\xff\xb6\x9b\xa4\xd9\x84\xb0\xad\x8e\x69\xf2\x92\x16\x19\xbb\x14\xf8\xdc\x6b\xd9\xda\xe9\x53\xb4\x66\xa2\x98\x42\x31\x33\xba\x0a\xa7\x11\x23\xa8\x09\xea\x45\x47\x4a\xd9\xf9\xc2\x17\xe4\xa7\x94\x74\xcd\x25\x18\x27\x81\xf4\x76\x9c\x12\xf1\x1d\x85\x23\x65\xda\x2c\xc4\xf2\x7e\x7a\x6b\x1a\x15\xe1\x58\xa0\x72\x38\x1b\xef\xd2\x11\xe0\xeb\x16\x15\xdc\x6e\x3f\x4b\x97\x2d\x07\x45\x4c\x80\x48\x5b\x03\x33\x29\xd0\x06\x44\x67\xf1\x62\x63\x9d\x96\x76\xb3\x0e\x32\x1d\x46\xf8\xd1\xf3\x33\x3d\x94\xaa\xa8\x44\x98\x3d\x04\x87\xf9\x7e\x1d\x31\x3b\x1a\xc3\x0d\xe1\x43\x31\xc8\x25\x37\x0d\x0a\xe2\x3d\x7b\x3c\x20\xa8\x53\x03\x01\x79\xec\xd0\x05\x60\xc2\xeb\xcd\x14\x43\x44\x14\x58\xb4\x1b\x2a\x74\x7a\xa8\xf5\x55\x8f\x6f\xe6\x4f\xab\xb2\xce\x43\xfb\x5f\xa8\xde\x10\xfe\x36\xc9\x3e\x3c\x7a\x80\x37\x2b\x82\xcf\x9d\x43\x52\x90\xfa\x90\xe2\x1a\x99\x38\xac\xa9\x4f\x68\xc6\x1e\xce\x80\x60\xcd\xef\x01\xad\xad\x15\x34\x5c\x98\xbc\x57\xa6\xfe\xae\x30\xda\x1b\xe9\x3f\x4b\x1c\xa1\xe4\xf1\x23\x4a\x12\xdd\x30\xc0\x9e\x05\x2f\x1b\xe3\x82\xe7\xef\xc2\x34\x20\x1e\xf8\x6e\xa0\x90\xf5\xf7\xf5\x78\xcb\xcf\x5b\x06\x3d\xc3\xd8\x9a\x8c\xdc\x39\x07\xa1\x6a\xdc\xea\x7c\x03\xa7\xb4\x70\xb0\x9b\x97\xfd\x34\x1b\x44\x09\x65\x17\x8e\x31\x07\x24\xc1\x7c\xed\x36\x2d\xe7\x3b\x4f\xfa\x92\xeb\x1d\x0a\x5c\xd0\x02\x3a\x8a\x8c\x46\xd4\x17\x3d\x5a\x07\x70\x55\x99\x39\xa8\x3e\x84\xcb\x4d\x7a\xb0\xf1\x86\x26\x29\xda\xd0\x52\x4f\xd7\x15\x6c\x28\x25\x50\x86\xc9\xe7\xe9\xa3\xfc\x74\x99\x4c\xc3\x9d\x54\xd3\x2b\x27\x95\x5a\xc0\x27\x8a\x18\xf3\xab\x69\x99\x25\x26\x7e\x42\xc1\x94\xb8\x16\x27\x53\x69\x7e\xa0\xe9\xc7\x8a\x9e\x10\xda\xc6\x22\x81\xaa\x08\x5c\x37\x54\xdf\x08\x95\x65\x5c\xdf\x6f\x9c\x87\xca\x24\x27\x69\x61\xfb\x69\xba\x3c\xa7\xe0\xe0\x27\x67\xca\x2a\x6d\xa8\x80\xea\x6e\x20\x99\x5d\x61\xa6\x36\x2f\xb2\x35\x58\x0c\x9d\x13\x49\x28\xe3\x29\x7b\xb2\x32\xae\x4c\x4b\xb5\x6d\xa4\x19\x41\x1f\x26\x5d\x8a\x36\x4f\x11\x9a\x2c\x4e\xf3\x5a\xae\xbd\xa1\x73\xed\x8d\x40\x7b\x53\x13\x65\x4f\x79\x83\xbb\x05\x83\xe3\x78\xab\x7f\x87\x2d\xea\xa4\xd6\x5d\xfb\xe5\xc8\x4c\x11\x02\x61\xc0\xd5\x0d\x23\x2f\x89\xfe\xe2\xa7\x18\x2d\x43\xcd\xfa\x9c\x02\x5e\x9f\xd6\xc1\xfc\x8e\x5e\x8b\xa5\x11\xe6\x27\x20\x5b\xb1\x2a\xdc\xac\xe2\x0d\x1a\x28\x8a\xb8\x2d\xeb\x9f\xd7\x78\xe2\xcc\xe4\x45\x56\x42\xb2\xc2\xbb\x79\x0c\x1e\xf1\xb5\x42\x54\x94\x49\x54\x8c\x29\xc9\xc1\x00\xb4\xab\x0c\x2d\x7a\x35\x6f\xa5\xbf\xf2\x49\x5d\xd9\xfb\x79\xa5\xd8\x34\x20\xbe\x06\x98\x54\x45\x2d\x2b\x05\xbd\xcb\x8a\x9e\xc4\x4e\x98\x89\x5c\xf4\x06\xaa\x0f\x90\x79\xc4\x8e\x93\xdc\x3a\xd5\x56\x48\xe9\xc7\x94\x3f\x54\xbf\xcd\xc8\x33\x85\xe5\xfe\xa4\x6d\x74\xc9\x0c\x56\xa2\x5c\x86\x16\x60\x2e\x4f\x05\xaa\xb2\x7f\x6a\xe6\x67\x59\x9d\x72\x4e\x81\x11\x53\x16\x6b\x08\x7c\x3a\xf9\xbe\x4e\x51\xcc\x5a\x9a\x99\x18\x80\x03\x16\xb3\x53\x21\xce\x1d\xc5\xfc\xd4\x2c\x48\x56\x99\x76\x5e\x66\xd3\x2a\xae\x64\x72\x30\xa4\xb8\x17\x69\x09\x50\x95\xfb\x58\xcf\xc4\xfe\xbc\x91\x35\x1c\xaa\xc2\x5c\x93\x98\x11\xb7\xfc\x5c\x07\x41\x77\x00\x36\x9b\xd6\x7d\xfb\xba\x51\x5a\x32\x97\x3f\x7c\xe6\x93\x6a\x0e\xe7\x0a\xce\x0a\x93\xa6\xac\xfb\x30\x79\x62\x60\x57\xc5\xb1\x68\x62\x50\xdf\x81\xcc\xe3\x68\x3a\x65\xc1\x42\x19\x71\xa8\x56\x4f\x46\x1f\xda\xd8\x93\x06\x76\x12\xe5\xf8\xe3\xd8\x05\x60\xd7\xe4\xeb\xb6\xf8\xaa\x9f\x99\x37\xa2\x38\x32\x89\x9a\x61\x63\xd5\x79\x09\x2f\xb5\x32\x44\x1c\x9b\x69\x5e\x3d\xd4\xc2\x41\x91\x72\xa5\x4f\x10\x59\x57\xc5\x69\x63\xc7\x51\x32\x78\xaa\xfa\x4f\x21\x0e\xf2\x61\xc6\xd7\xbd\x5a\xf9\x9d\xe7\xd7\xbd\x6d\x63\x2a\x67\xee\xa2\x91\x2b\x66\x1e\xca\x40\x85\x9f\x7c\x82\xb9\x90\x17\xa8\x2a\xf8\xd7\x61\xd4\x84\x48\xad\x99\x1b\xee\xef\x16\xd1\xa4\x6f\x33\xb1\x6a\x32\x2f\xa9\x80\xb1\x5a\x86\x66\x1a\x97\xf9\x5c\x67\xcf\x1e\x87\xf0\xd3\xed\x82\x99\x1f\xfd\xba\x5b\xb3\x84\x99\xe9\x6f\xeb\x1c\x7c\x45\x00\x0d\xf8\x4e\xc8\xd1\xd0\xd8\x15\x76\x7c\x5f\xb2\x3f\xa3\x05\xf8\xff\xbe\x39\x7d\xbe\xb4\x9f\x66\x89\x4d\x06\x78\xa0\xa8\x12\xfb\xe6\xc6\x27\x64\x3c\xb1\xd2\x37\x35\x5f\xc5\x2a\xfd\xce\x5e\x25\xe2\xbf\x70\x50\xd4\xdb\x50\x5f\x16\x8b\xbb\xcb\xa3\x8d\x49\x90\x84\xcf\x12\x42\xbe\x87\x8a\xba\xe8\x18\x8e\x05\xb2\xb4\x4e\xef\x19\x0d\x15\xb7\x9f\xa3\xd7\x81\x0f\xfb\x09\x51\xc2\x30\xae\x9b\xce\x30\x22\x81\x9b\xa8\x83\x38\x53\xff\xe5\x43\x9e\x3f\x71\xc9\x1b\x45\xfa\x14\x1c\xdf\x53\x40\xea\x02\xcf\x28\x22\x53\xc8\xce\xce\xa8\xbc\xfa\x1a\x8a\xff\x78\x91\x3f\xa7\xb0\xca\x2d\x8f\x23\x7f\xe1\x22\x37\x36\xc9\x15\x3d\x36\x78\x05\x71\xd5\xff\x4f\xd7\x9f\x05\x49\x72\x5d\xe9\x81\x70\x55\x64\x66\x15\x50\x05\x80\x00\x08\xb2\x45\x4a\xfa\x15\x92\xa8\x1f\x92\x19\x05\x49\x0f\xa3\x31\xf5\x8b\x87\x32\x93\x04\x2b\xd5\x48\xa4\x55\x55\x03\x2d\x98\x1e\xea\x46\xc4\x8d\x0c\x47\x7a\xb8\x07\x7d\xc9\x44\x62\xde\x64\x63\x63\x63\x32\x1b\x33\x99\x4c\x32\xd9\xd8\xcc\xf4\xc8\x7a\x7a\x34\xdd\xd3\xcb\x74\x37\x97\xe9\x6e\xb2\x3b\x92\x64\xb3\xb9\x83\x20\x00\x82\x58\x08\xa0\xf6\x42\xad\x59\xfb\x5e\x59\x63\x7e\xbe\x73\xee\x3d\x9e\xee\xf5\x04\x77\x54\x46\x84\xfb\x5d\xce\x3d\xcb\x77\xbe\x0f\x2f\x76\x75\xe2\x39\xb8\x6e\x62\x0e\x71\xb4\xfd\x60\xe2\x21\xd2\x90\xaa\x10\x56\x4f\x3a\x87\x5d\x8a\xd5\x4b\xfa\xed\xd8\xf8\x07\x0f\x88\x5e\xf3\xd4\xc4\x59\x69\x29\x8d\x13\x0a\x47\xea\xec\x7b\xba\x43\xfb\x7b\x4d\x34\xcf\x61\xdc\x0f\x01\x27\x11\x88\xae\xea\x2e\x39\xaf\x8e\xfe\x61\xb8\x3c\x64\x43\x2f\x22\xe4\xf4\xa0\x12\x65\xd7\x33\x0e\xfd\x64\x2d\xde\x43\xa3\x2f\x4a\x73\x6a\x52\xc1\xf8\xa4\x49\x68\x04\xed\xe2\x14\x06\x7f\xe7\x6f\x75\x5a\xbf\xfe\x25\x17\x5e\xfa\xc3\xf3\x2a\x36\x90\x83\xc4\x95\x93\x25\x95\xbe\x72\xe6\x85\x38\xd2\xef\xc0\x6e\xd8\xc7\x79\x8a\xf2\xc6\x0d\x2d\x3a\x7f\x57\x49\xe0\x83\x6a\x96\xff\xff\x03\x6b\xb5\x71\x92\xa6\xa1\xd6\xfb\x3b\xa6\x11\x59\xc7\x1a\x88\x27\xdb\xa6\xd7\xb3\x11\x65\xda\xf9\xe0\x93\xfa\x96\x6a\xa4\x3e\xae\xc8\x26\x6d\x14\x8e\xd8\x75\xd6\x88\xbb\xfd\xee\x3a\xf0\x36\x72\x10\x25\x6b\x16\xae\x39\xb2\xe2\x1f\x4d\xbc\x6a\xd5\xff\xf4\x51\x0d\x63\xb2\x6f\xb1\x3d\xa6\x5e\x68\x6e\x39\x46\x56\x11\x2d\xca\x7c\xed\xd2\xfe\x79\x5a\x8c\xc6\x36\xe7\xea\xbf\x02\x2c\xbc\x24\x37\x0a\xd0\xdf\x4b\x8a\x34\xb3\x28\x42\x8a\x5c\x9b\xea\x56\x3b\xa7\x02\xd9\x93\x8d\xb8\xd3\x2e\xb5\xde\x94\x9b\x5a\x2a\xd9\x2d\xc5\x9d\xaa\xa8\xfe\x07\x83\x24\xcd\xb3\xbd\xf4\x1c\xa2\x27\xa5\x34\xc3\xae\x2a\xd5\x46\xe6\x91\xc4\x0e\x3c\x3c\xa9\xf3\x5a\x4a\x34\x5f\x6e\x73\xe4\x19\x6e\x4d\xb4\xf0\x70\xe0\xab\x87\xbf\x0c\x3c\x86\xe2\xac\xd2\x30\xf6\xce\x34\x94\x3e\x04\x0e\x8b\x13\x08\x55\x42\xbe\x56\xbe\x5e\x6a\xb3\x71\x12\x67\x61\x37\xb2\xbb\x7d\x82\xed\x1e\x3d\x08\x1c\x5b\xae\xa1\x73\x33\x1d\x19\x0c\x81\x32\x97\x4f\x78\x7f\xc3\xc7\x55\x0c\x51\xc1\x3b\xd7\x25\x5e\x17\x17\xdb\xf6\x95\x9e\x1d\xe7\xd4\x59\x8d\x24\x2c\xa3\x7b\x64\x1b\x55\x70\xad\x1e\x17\x7a\x5e\xf1\x39\xae\xda\xb8\xf4\x63\xb3\x64\x64\x11\x2d\xb0\x84\x33\x46\x55\xf4\x9c\x7d\x40\xb4\x1a\xae\x86\x7d\x20\xdb\x54\x7a\xd9\x35\xd6\xd4\x75\xb6\xe6\xe6\xda\x71\x91\x66\x92\xaa\x75\xfc\x96\x4e\x1e\xf4\xf0\x44\x54\xe3\x86\x66\x5d\x8e\x5f\x29\x13\x68\x36\x0a\xa5\x5e\x4a\x89\x82\xd2\x18\xb1\x8f\xa5\x13\xa0\x08\x8b\x41\x90\x23\x64\xe8\xbe\x0c\x67\xe2\x70\xe4\x4d\xaa\x10\x4c\xf9\x17\xf8\x46\x8d\x2f\xcd\x59\xe4\x24\x1b\x86\xeb\xc5\x4a\xa8\x9a\x66\x99\x2e\x83\x6f\xdc\x92\xe9\x99\x30\xb5\xb1\x43\xad\x28\x5a\xb6\x03\x5e\x08\x50\xa5\x9d\x6a\x39\xcc\xd2\xff\x0a\x93\xdc\xf6\x86\x71\x12\x25\xcb\xeb\x55\xaf\x50\xa9\x60\xba\x6e\x14\x1b\x17\xcb\xa9\xb5\x2b\x84\x49\x45\x2a\xe1\x88\x82\x86\xdc\x55\x4e\x7f\x5d\xc0\x99\xdc\x3d\x6b\x3d\xd4\xab\x49\x62\xd8\xa5\x69\x23\xea\xb5\xd9\x2f\x74\x8c\xa7\x14\xa7\xc7\xee\x8e\x0f\x81\xef\x4d\xb4\xa2\x5d\x1d\x15\x37\xdf\x24\xef\xa1\x42\xe8\x53\x4d\xb5\x4d\xa6\x65\xa1\xf1\x70\x02\xd9\x5e\xd2\xa2\x29\x9c\x19\x5b\xe2\x77\x5d\x94\xea\x1a\x44\x27\x44\xa6\x6f\x7b\xcc\x40\x2a\x8a\xe3\x34\x8c\x57\x5c\x17\x36\xb2\xf7\x1c\xd0\xf0\x8d\x5b\xb3\xfd\xa2\xcb\x96\x14\x7b\xfd\xfd\x89\x92\x08\xd0\xc2\xd3\x99\xcd\xf3\x28\x8c\x97\x09\x92\x8e\x9c\xec\x69\x3a\xda\xe0\x41\x5e\x0b\x94\xbe\xdd\x45\x32\x4a\x38\x25\x8f\x4e\x94\xbe\xdd\xc5\x86\x6a\x62\x19\x7e\xd9\x31\x2b\x98\xe2\xcb\x4e\x6c\x53\x33\x70\xed\x60\xb7\x15\x53\xdd\x78\xcd\x60\xb2\x25\xb5\x56\x51\x29\xf1\x07\xed\x5a\x38\x40\x56\x1e\x2e\xda\x11\x7c\x37\xdf\xd0\x83\x8a\x84\x57\xf9\x66\x7c\x1d\x78\xa1\xda\x70\x0d\x9d\xab\xd2\x9d\xa0\x40\xc1\xc7\x9b\x48\xbc\xcb\x81\x72\x0b\x11\x03\x05\x02\x02\xbe\x6e\xea\x0b\x40\xcd\x08\x05\x55\x18\x3c\x54\x97\x84\x96\xdb\x97\xdc\xff\x04\xbf\x2f\x14\x48\x35\xd5\xe8\x25\x97\x36\xa2\x65\x09\x5f\x10\x35\x7d\xbe\xf6\x60\xa1\xbe\xfd\x72\x61\x72\x6a\xe5\x74\x39\x1d\xa8\xa3\xf0\x75\x45\xb5\xab\x97\x2c\xc7\xa4\x01\x5b\x3e\x0c\x1c\x7d\xf4\xcc\xf0\xb5\x6e\x12\x22\x84\x39\x58\xfd\x75\x2f\x00\x13\xf9\x07\x0a\xb8\x73\x24\xf0\xf0\xfb\x3b\xba\x5d\x32\xaf\x45\xa5\x8b\x8b\xed\x7e\x9a\x8c\xa7\x14\x9b\x00\x7a\x2a\x31\x32\x57\x15\xa5\xce\x3b\xb5\xec\x1f\xf5\xec\x8c\xd3\xb0\xf4\x79\x32\xb0\x22\xe1\xdc\x42\xb0\xc2\xd7\x8a\xb3\x2a\x1c\x8d\xc2\xe5\xd4\x11\xfb\x09\x4f\x0d\x60\xaf\x82\x36\x6e\x28\xc7\x77\xe1\x50\x79\xdd\x15\x5e\x31\x7c\x13\xec\x55\x3d\x7b\x8a\x53\xe6\x92\x62\x8f\xb8\x34\xf1\xbd\x32\x71\x56\x44\x2e\x62\x71\x34\x25\x0e\x26\xc7\xd0\x24\xf1\x47\x3c\x24\xaf\x67\x28\xe7\x8e\x55\xe0\xfa\x3c\xf6\x2d\xba\x33\xaf\x1e\x65\x2f\xb5\x07\x61\x3a\x12\xd4\xb7\x83\x8c\xef\x9f\x75\x19\xdc\x4f\xa9\xea\x3d\x94\xba\x73\xea\x37\xde\x1e\x3b\x3a\x5a\x6b\x27\xca\x7e\xda\xaf\xba\x5e\x79\xe6\x9b\xb8\x67\x67\xaa\x05\xe4\xd2\x57\xc0\xee\x7d\x93\xc3\x20\x26\xe9\xa1\xaf\xc4\xbe\xfc\x2a\xbd\x82\xf4\x9a\x6c\xb7\x7d\xfb\x67\x29\x76\xe8\x19\xe7\x47\x8a\x43\xd8\x72\x3c\x43\xf5\x1a\xfc\xbe\xc5\x76\xb2\x12\x99\x61\x32\x32\x7c\x78\xcb\x69\x3c\xe5\x15\xf2\x8f\xb9\x16\x92\x30\x8b\x4c\xdc\xe7\x73\x1b\x61\xe9\xa5\xca\x59\x4d\xf6\x53\xa0\x2e\x8f\x2a\x0e\x41\x93\x53\xb2\x8e\x43\x5c\x7a\x26\x81\xcc\xd1\x2f\x49\xd9\xa7\x41\x38\x3c\xb5\x2c\x90\x4c\x96\x48\x98\x16\x5a\x4e\x2f\xf0\x76\x25\x4c\x0f\xed\xe0\x13\xe5\xdf\xb9\x32\xda\xd2\xf3\x07\x5c\xdf\xb7\xc2\x70\xed\xec\x28\xa1\x6e\x3e\xd1\x91\x6e\x40\x19\x42\x7a\xf5\x68\x89\x21\xf4\xdc\xb1\x41\x61\x8a\x03\x2f\x3b\x8a\xc8\x87\x49\xbf\x0b\xff\xff\x36\xc2\x30\x24\x38\xfe\x68\xb2\x8d\x34\xdb\x25\x55\xce\x20\xf6\xc4\x02\xf8\xb6\x2a\x92\x4f\x77\xb4\xdd\x31\x51\xb8\xec\xda\xb3\x1c\x43\x8b\x4b\x9b\x1d\x57\x76\xa7\x8c\x50\xf2\x6c\xda\x77\xfd\x1d\x0a\x74\xe0\x59\xfe\x34\x78\x13\xf8\x80\x91\xbc\x48\x83\x5a\x53\x6a\x07\x61\x2c\xfd\xcc\xcc\x3e\xa7\x34\x10\x18\x21\x8d\x44\xc8\x89\xa6\x95\xe8\x19\x03\xa7\x14\xff\x9f\xa8\x13\x79\x84\xe2\xcf\x2b\x88\x80\x48\xea\x81\xcc\xa4\x13\xa8\x54\xc1\xf9\xa6\xd4\x65\x2f\x32\x45\x3f\x84\x3c\x06\x66\xe2\xa7\x98\x48\xbe\x69\x28\x9b\xac\x25\x69\xba\xde\x52\xc2\x0c\x9b\x15\xe6\x0c\x45\x5b\xd4\x0d\xc7\x26\xcd\xc3\xcc\xc4\x5a\xda\xf8\x98\x82\xab\x1e\x53\xdc\x80\x99\xe9\xad\x88\xfc\x22\x17\x46\x02\xdf\x44\x7b\x7e\x7b\x01\xeb\xc5\xf9\x83\xed\x85\x85\x19\xd5\x21\xc3\x8b\x53\x02\x26\xd5\xe9\xf8\xa3\xc0\x27\x98\x5f\xd3\xe9\x93\x1d\x1b\x0d\xb9\xcb\xb5\x24\x5d\x01\x20\x07\x16\xe4\xb4\x8a\x23\xbf\xad\x28\x0a\x8f\x2b\xa0\x4a\x64\x57\x6d\x6a\x96\x21\xc1\x87\x2d\xfa\x16\xb6\xb2\xf3\x25\x5f\x98\xe5\x1f\xfd\xc9\xc4\xf3\xa5\xa0\x7f\x08\xb1\x11\x97\x06\xb0\xf4\x5a\x1d\x5f\xe5\xce\x7a\x69\x31\xd2\x82\x71\x37\x31\xaf\x7c\x53\x6b\x82\xda\xb7\xd8\x4e\x09\xd4\xe5\x40\x4d\x3c\x1a\x7c\x53\x29\xf6\xc7\x79\xf6\xb7\xbc\x4e\xea\x0d\xde\x6e\xb0\x97\x77\x01\x6e\x04\xe4\xa9\xc5\x0d\x0a\xd2\x56\x45\x23\x04\xbf\x17\x8c\xd8\x08\xea\x3e\x41\x10\x0e\x66\x65\x54\x36\x66\x77\xc7\x2b\xae\xaf\x3f\xb1\x41\x42\xe0\x08\xd4\xce\xe8\x9a\xe1\x99\x40\x71\x16\xb0\x2e\x18\xcc\xdc\xcc\x06\xb5\x18\xb8\x1c\xe1\x3e\xb1\x30\xcc\xbb\x8d\x41\xbc\x4f\x99\x32\xac\xde\x3b\x30\x5d\xcc\x1a\x08\x0f\xd3\xa1\x54\xcb\xd1\x94\x13\x82\x26\x8a\x75\xfe\x14\xf7\xc6\x53\x1b\x94\x5c\xc3\xa6\x83\x40\x1d\x92\xd6\x0f\xa1\xe8\x2b\x7d\x8e\xad\x17\x85\x04\xfe\x34\x49\x68\xe3\xff\xff\x5f\xa8\x7e\x4a\xe7\x99\xcf\x84\xc4\x76\x8d\x5c\xec\x7c\xa6\xe5\x14\x00\x2e\x04\x95\xdc\x4b\xf9\xed\x22\xcf\x56\x4e\x8e\xd3\x6d\x2b\x07\x4a\xca\x04\x0d\x4a\x92\x20\xd7\x6f\xf9\x8c\xe2\xbb\x6a\x0b\xbd\xeb\x72\x20\x36\xce\x53\xbb\x12\x32\x45\xb1\x30\x5b\xb6\x14\x4b\xa8\xcf\xc5\x64\x3d\xc7\x03\x89\xf8\xe9\x5b\x2a\x96\xfa\x56\x63\xb6\x3d\x0a\x57\xca\x73\xbd\x1c\x48\xc4\x7e\x9f\x22\x38\x08\x8d\xf6\xe4\x33\x1d\x55\x96\xad\x1f\xa7\xa5\x4d\x4a\xe2\xdc\xf4\x72\xc6\x4b\x22\xd4\x3b\xab\xc9\x6e\xee\x29\xfd\xc5\x4d\x65\xbf\xb3\x2f\x17\x61\xb7\xdb\xd2\xa0\x94\x9b\x3a\x8d\x79\xb3\x29\x89\x00\x2d\x9f\x29\xef\xe1\x5f\xc3\xca\xc6\x36\x3c\xa7\x08\x64\x76\x6e\x28\xf9\x9c\x30\xeb\x0d\x89\xf2\x12\xe0\x0d\xc4\x32\x7c\xdd\xc0\x2a\xb2\xd4\x2e\x5c\x11\x06\x93\xf9\x96\x02\x07\x1e\x86\x4d\xc2\xd2\x3e\x13\x78\x72\x8f\x91\x35\xf1\xae\x72\x3f\x81\x0f\xe1\x03\x45\xec\xcc\xaa\x2e\x32\x0f\xf4\xcd\x8e\x7c\xd5\xe1\x2e\xde\xa5\x7d\x82\xc1\xd6\x94\x9a\x8b\xff\xf2\xd7\xe8\x40\x74\xf4\x95\xe5\x28\x09\xbd\x86\x4f\x17\x74\x4d\x86\x56\xbe\x69\x7f\xbc\x5e\xc3\x2a\xc4\x13\x31\xc6\x5a\xbe\xc6\x3b\x25\xa7\x15\x51\x5a\x66\x7b\xa9\xcd\x21\x1d\x42\x73\xca\x5d\xe2\xb4\xb4\xa5\x63\xbc\x4e\x41\xfd\x12\xd6\x29\xe1\xb5\x60\xfd\x84\xd0\xcb\xf7\x53\x9d\x50\xad\x84\xcb\x61\xbc\x6c\x53\x49\xce\xe0\xf9\xbe\x8b\x75\xc3\x37\x2a\xff\x9f\xe5\xd6\xac\xa0\xee\xeb\xd4\xe0\x5c\x4e\xeb\x7c\x13\x2f\xcc\x72\x91\x16\x8c\x02\x16\x45\x60\x25\x35\x84\x16\x2d\x39\xd0\x75\x79\x4c\xd5\x89\x72\x1b\xe7\xec\x5d\x3a\x2d\xb0\x63\x4a\x0b\xec\x58\x03\x85\xd8\x62\x7b\x90\xa4\xf9\x10\x68\x5b\xa4\x1a\x11\xd2\xb2\xba\x1d\x2d\x3c\x44\x49\x57\x6a\x45\x74\x34\xdf\x99\x51\x12\xf7\x79\xe8\x1d\x01\x7c\xf9\xe8\x7c\xa3\x0e\xe1\x81\x71\xac\xac\xe2\xc3\xff\x0c\x6f\xc3\x37\xb5\x91\x79\x61\xb6\xfd\x72\x12\x32\x9b\x18\x06\xe6\xaa\x22\xa1\xbf\x5a\x3b\x9d\x40\x02\x06\x79\x0b\x84\xe8\xd3\x34\x76\x88\x70\xa6\x37\xca\xa1\xc1\x7c\x7d\x6d\xb2\x1d\xee\xf2\x0f\xdb\x66\x84\x06\x4b\x78\xbb\x53\x1d\xe5\xfa\x4e\xa9\x9e\x9f\x22\x86\xac\x8c\x88\x2d\xa2\xb0\x83\xdd\xcc\xd7\x8a\xf5\x39\xb7\x66\x94\xed\x56\xf3\x8f\x57\xc6\x76\xfa\x3a\xfc\x4c\x51\x0d\xa6\x5f\x87\x41\x98\xee\x28\x1d\xb4\x8d\x8a\xe4\x69\x39\xa7\xfc\xff\x6b\x12\x0c\x65\xa8\x94\x5a\x93\x65\x45\x5a\xc6\x31\x53\x3e\x62\x3e\xab\x18\x8e\x36\x55\x91\xf6\x2f\x9c\xe5\x26\x75\x97\xd0\x80\x96\xd3\x51\xf1\x3b\x60\x38\x77\xf9\x22\x9e\xbb\xe4\x50\xe2\x22\xed\x6c\x67\xe8\xe9\xb1\x5a\x4e\x07\xaa\xd7\x00\x99\x78\xfe\x87\x89\x06\x20\xfb\x3d\x7a\xb7\x61\x79\xb5\x8b\x78\x2d\x54\x44\xbe\x8e\xd4\xd2\x69\x18\xdc\xaa\x15\x0f\x96\x9e\x3f\xd0\x1e\xd9\xc8\xc4\xbd\x61\xc2\xc0\x65\xcc\x3d\x68\x60\xf8\xda\xa5\x98\xc6\x26\x1f\xb6\x54\xd6\x18\x60\x6d\xbe\x56\x26\x2d\xe4\x66\x2d\x54\xcc\x3e\xd3\x51\x3c\xf2\xa0\x08\xa5\xcc\xe8\xce\xc7\x37\xb6\xaf\xe0\x43\x87\xda\xd9\xd0\xac\x70\xbf\x36\xea\x62\x6f\x13\xdc\x88\xaf\x27\x75\xce\xe7\xa7\x9f\x26\x64\x0f\xbc\x89\x6f\xc3\x4d\x72\x8d\x12\xe5\x4e\x75\x6d\x2e\x3a\x35\x32\x7f\x90\x53\x32\x3f\xd6\xf5\x1e\xf0\xea\x8a\x44\x71\xcb\xf1\x92\x5f\x01\x33\xa3\xe8\xb1\xd7\x07\x7f\xbe\x6d\x88\xf9\x87\x33\x30\x92\xad\xf6\x18\xe6\x13\x3e\x38\x28\xed\x0e\x53\x60\x20\x7c\xba\xab\xb2\x42\x77\x15\x9e\xb7\xe8\xdb\x47\x35\x04\x23\xf0\x14\x79\x77\x95\xe1\x7d\x17\xa7\x24\xb2\x4d\x9f\xe9\x78\x54\xca\x09\x78\x53\xd2\x39\x4c\xb3\x40\x4c\x6d\xf6\xd3\x1b\x38\x99\x51\x75\x07\x45\x94\xa6\xdb\x53\x6d\x87\xf3\xee\x28\xab\xb4\x5c\xd1\x46\x14\x5e\x81\x6d\x93\xf2\xc5\x17\xdb\xf3\x07\xf7\x28\xbd\xb2\xb3\x70\xf8\x24\xd7\xa2\xd4\x6b\x91\x33\xc5\x3a\xb9\x40\x6e\x9d\xc4\x2e\x4a\xc8\xed\xe3\x2a\xf5\xd9\x17\x5f\x94\x2e\x30\x34\x0f\x21\xea\x7d\x13\x87\x70\x4d\x6d\x82\x5a\x58\x5a\x3e\xf6\xfb\x25\xf6\xa5\xd4\x5c\x1e\xf1\xad\x38\x89\x6d\xc1\xad\xe6\x5e\xbe\xa0\xd2\xd8\xa7\x58\xc9\x93\x35\x93\xf6\x75\xda\x00\xb0\x31\x05\x8a\x92\x8e\xd9\x9b\x0a\x04\xd6\xb5\xb1\x1d\x84\x39\xd8\xe5\x58\x4a\x35\x50\x6d\xd8\x84\xfa\x73\xcd\x13\xdb\xf3\xf0\x44\x2b\x6f\xc0\x70\x42\x0d\xfd\x3e\xbb\x8e\xcc\x8e\xe8\xeb\x6c\x8b\xcd\x16\x16\xca\xf0\x6c\xba\xa5\xb8\xc3\x69\xf8\xb1\x5a\xbe\x0b\x1b\xca\x3d\x79\x58\x21\xf0\x13\xcf\x05\x7f\xf7\x41\xd5\x87\xa1\x4d\xad\x19\xe4\x20\x6a\x5e\x72\x49\x43\x8f\x1a\xb8\x1d\x38\x92\xb9\x5e\x9e\x8c\x23\x93\x8d\xc2\x1e\xec\x06\x76\x29\x4e\x4d\xbe\xae\x1d\x63\x87\x0e\x81\x8b\x81\x02\x76\x16\xb7\xa1\x65\x02\x94\x1d\x8a\xb8\x22\x3c\xf4\x98\xab\x25\x86\x03\x93\x86\x53\xca\x7b\xba\xa1\x9a\x8f\x61\x54\xb1\xce\x3e\x6c\x38\x07\xe7\xdb\x99\x45\x10\x80\x20\xe1\x9b\xf4\xf7\x0e\xaf\xe6\x9a\xf2\x6e\x04\x2a\x0e\xd9\xd4\xb0\xc6\x63\xee\xa5\x57\x93\xa8\x88\x73\xe2\xc8\xc7\x22\xc1\x3b\x00\x83\x2b\x59\x1e\x8f\x24\xdd\xac\xe4\x66\xb3\x30\xa3\x94\x1a\xfa\x9b\x81\x8b\xbd\xad\x30\xb2\xb7\x51\x0e\xc3\x57\xc2\x0a\xf0\xb5\x4b\x35\xda\x22\x4d\xba\xa5\x9b\xc1\x45\x1f\x0c\xd5\x99\x40\x89\xd6\xb0\x12\x2c\x02\xe9\xd6\x86\x2f\x7e\x16\x63\x62\x12\x23\x5c\xb4\xb8\xd0\xad\x45\xe5\x5a\x7b\x41\x35\xac\x73\x51\x57\x7b\x5c\x73\x32\xe7\x92\x6e\xd1\x85\x11\x31\x9e\x64\x17\xb0\x16\xdf\x74\x27\x4b\x14\x0e\xf2\xe9\xd6\xdc\x9c\xd3\xe0\x2c\x87\x1c\x19\x1e\xc6\xa1\x72\x5b\x21\xdc\x01\xe1\xe3\xf6\x7e\xc3\x20\x29\x08\xca\xb3\xc4\xf6\xf6\x06\x8d\x36\x7e\x73\x07\x9c\x03\xa7\x2b\xb6\x4f\x1a\xf8\x39\x6d\x86\x7f\x38\x46\x58\x0c\x69\x95\x51\x9c\x0b\xc7\xd0\x50\x0f\x87\xf2\x67\x38\x60\xf8\x46\x35\xd4\x5f\xd2\xec\x8d\x49\x12\xb3\xcc\x2a\xb2\x1e\xd7\x26\xda\xdb\xf1\x66\x6e\x67\xc7\xfb\x7b\xcb\x49\xd2\x1f\x99\xb8\x55\xda\xb4\x2d\xea\x08\xd8\xba\xd8\x90\x27\x5a\x6a\xf7\x93\x28\x32\x29\x4f\x2e\xf6\xc4\x59\xc5\x3e\x75\x4d\x43\xb7\x0f\x2b\xa7\x3c\x2b\xc6\x2c\x4a\x5a\xce\x00\x2b\xb4\xa8\xb4\xc0\xc5\xa6\x3c\xbd\x8d\xa5\x5b\x8e\x3b\xe4\xb0\x8c\xb0\xe6\xbf\x43\x83\xcc\xa8\x64\xf5\xfe\xb9\x09\xc7\x36\x84\x9f\x2c\xe2\x9a\x3e\xc0\xfe\xad\x40\xb1\x65\x9e\xa9\x65\xde\xff\x51\x7b\x3d\xb4\x51\x9f\x33\xef\xb2\x7d\xe9\x11\x44\x8a\x49\xa1\x62\xed\x9a\x8d\xd2\xf5\x5d\x3e\xc9\x79\x1e\xf6\x0d\x7e\x17\x37\x9f\x20\x0b\xd0\x82\x87\x8a\x94\x10\x54\x83\x45\x8f\x14\x63\x29\xa5\x70\xbf\x1d\x5e\xb5\x26\x32\x71\x7f\xba\x1a\x9c\x6b\x19\x58\x87\x6e\x02\x47\x2b\x5f\x57\x29\xc7\xd3\x64\xba\x3c\xb4\xb0\xe6\x77\x75\x7c\xb9\x17\x9f\x97\x7a\x02\xfd\x08\x36\xeb\xd4\x86\xfe\x82\x22\x35\x33\xbe\xd4\xfa\xd3\xa0\x52\xe9\x6d\x39\xde\x33\x16\x5e\x14\x2e\x19\x1a\x7d\x39\x59\xbd\x89\x31\x79\x9e\x96\xbe\x0a\xef\x50\x14\x72\xb6\x54\x22\x81\xd5\xad\xe4\x0d\xfd\x16\x1b\xf5\x7a\x66\xad\xe5\xa1\xe3\x3f\xd7\x68\x9e\x9f\x57\x81\xb6\x2b\x1c\xfa\xc1\x43\xf9\x16\x16\x0d\xdf\xd4\x79\x64\x9e\x3f\xd0\xce\x8b\x91\x50\xf3\x0b\xb7\x57\xcb\x71\x1d\xd6\x75\x75\xf6\xcf\x12\x03\x97\x73\x76\x45\xed\xd7\x9b\xd5\x53\x0a\x5a\x50\xc4\x7d\x9b\x85\x29\xc8\xff\x1d\x4b\x07\x72\xcf\x7c\xad\x3a\x59\xb2\xb1\x8d\xf3\x69\x3f\xcb\x28\xe6\x33\xaf\xa8\x6a\x4b\x63\x86\x6f\xf1\x16\x74\xf2\x7a\x95\x86\x77\x61\x81\x57\xfc\x8e\x8e\xff\x25\x44\x55\x48\xd6\xfd\x52\x35\x26\xf5\xc3\xfe\x5e\x97\xea\xdf\xfa\x15\x30\x2b\x88\xc7\xe4\xd5\x55\xae\xc3\xa7\x05\x56\xe9\x02\x4c\x23\xcc\x54\x6b\x43\xf1\x8f\x5d\x22\x22\x56\xd0\xf2\x02\x83\xe7\x04\x3b\xf6\x2d\x56\xb8\x0b\xa5\xd3\x8f\x8e\x15\xfe\xda\xc9\x1e\xe7\x83\x0e\xe8\x28\xd0\xe2\x89\x70\x79\x8e\x4c\xa6\x0e\xfc\xeb\xe7\x38\x8d\xf9\x7a\xd0\xfa\xb5\x03\x8a\x97\xd5\x85\xb0\x05\x91\xb6\xa0\x09\x11\xf9\x15\x24\xcf\x81\x36\xb8\x45\x13\x00\x3b\xf0\x43\xcd\xe1\xf1\x26\x6d\x4e\x9c\xbe\xa7\x1a\x21\x92\x6b\xd6\xae\xd8\xb8\x8f\x00\x14\x91\x19\x2f\x47\xbe\xa9\xf2\xa8\x74\x99\xb3\x5d\xc8\x39\x54\x18\x79\x41\xc5\x6c\x17\x02\xc5\xa3\xe2\x41\xcc\x2f\x87\xa3\x11\xfc\x7a\xc7\x50\x52\xfe\x92\x30\x94\x28\x4d\x1d\x93\x2e\xdb\x3c\x9b\x51\xe6\xe2\x86\x82\x13\x5f\x00\x98\x51\xd4\x48\x7c\x3a\xf0\x07\xea\x78\xb8\xda\x48\x51\x1d\x25\x99\x5b\xeb\x58\x89\x60\xf8\xe4\xeb\x7a\x3b\xea\x1c\xb0\xc2\xee\x43\x70\xb6\x4e\x2a\x99\x82\x93\x75\x01\xbc\xa5\xf6\x17\x7e\x63\x8f\x2f\xa8\x5e\x85\x0d\x41\x06\x77\x1a\xc9\x42\x7c\xf6\x2e\xec\x31\x72\x20\x5f\xd7\x4d\xd3\xc7\x68\x53\x6c\x1d\xdf\x8e\xa8\x9b\x97\x4f\xea\xbe\x10\x2c\x6c\x81\x63\xf9\x44\x67\xb2\x1c\x46\xab\x6c\x41\x44\x74\x9e\x5c\x7d\xbe\x51\xa4\xda\xe3\x24\x15\x39\x29\x1d\xc0\x48\x14\xe1\xd9\x40\x66\xff\x95\x02\xb1\xfd\x67\x0d\x62\xfb\xcf\x2a\x08\x18\x14\x31\x8e\x47\x64\x0c\x5e\x57\x12\x52\xaf\x2b\x3a\x8c\x2c\x89\xb3\x5d\xe5\xc4\x62\x87\x6d\xc0\x12\x70\xdd\x30\x50\x39\xf4\x0b\xaa\x9d\xf9\x78\xa0\xf6\x18\xbc\x41\xc1\xeb\x37\x48\xfd\x0d\x93\x91\x2f\x70\x0b\x3b\x87\x8f\x4e\x7d\x3c\xd9\x35\xbd\x15\x12\x13\x72\xdc\x74\x30\x9d\x12\x9c\xa9\x4c\x69\xb2\x66\x23\xca\x94\x72\xae\x33\xf0\x3a\xc4\x87\x15\x71\xfb\xb8\xc8\x99\xc3\xde\x89\xd5\x2d\x2c\xc8\x75\xad\xdc\x0c\xb2\xad\xd4\xf5\xbf\x09\xc1\xae\x66\xdb\x6d\xfa\x90\x1d\x8d\xa3\x64\x9d\x73\x61\xe2\x6b\xd2\x7e\x16\x67\xb3\x89\xa7\x01\xfa\x02\xf4\xdd\xce\xa1\xf4\x64\x2c\x47\x9b\xc4\x53\xb2\xa8\x18\x8d\x61\x29\x84\xae\xdd\x63\x70\x3e\x54\xcc\x8a\xdd\x70\xf9\x13\x4a\x82\xf4\xab\xb4\x75\xb1\x6c\x8f\x6a\xf1\xb1\xef\x93\x0b\xc0\x5c\xcc\xec\x3b\xb8\x03\xfd\xe9\xa7\x7d\x59\xa6\xdc\xed\x12\xe7\xfa\x92\xcb\xad\x2d\xd8\x1f\xdc\xec\xd9\xa0\x95\x8d\x88\xe2\x2b\x34\xd2\x78\xfd\xab\x30\x46\x30\xbd\xd7\xe1\xd5\xe0\xb4\xbe\x4d\xf3\x86\xf4\x05\x88\x3f\x45\x01\xda\xe7\x0e\xfe\xe5\xbf\xfa\x02\x9d\xef\xc8\xc7\x5d\x0e\x14\x31\xd9\xfb\xfc\xc8\x02\x96\xfc\xa4\x52\x21\x8f\x13\x08\x82\xb4\xc8\xe5\x15\x8f\x87\x5c\x5e\x71\x08\xbc\x2b\xe1\xd9\x57\x3f\x41\xaf\xea\xfe\xbc\xfc\x2d\x9c\x91\x10\xa8\xc7\x11\xd9\x42\x51\x0d\x1e\xce\x27\xa8\x0e\x21\xac\x8e\xb4\x31\x70\xb0\xfc\x2c\x50\x54\x75\x57\x14\x57\xdf\xf7\x27\x8a\x37\xfd\x36\x9d\x10\x48\x73\x30\x87\x08\x23\x6c\xb0\x1c\xe0\xd8\xdd\x0a\x7c\xcf\xf3\xa5\x89\x02\x0a\x5e\x0a\x14\xb1\xde\x47\x8a\x8f\x60\x60\xe2\xa2\xd7\xaa\x34\x8c\x78\xc0\xe9\x09\xa5\x2f\x6a\x0a\x92\x75\xe6\xe6\x07\x4c\xf2\x61\x3a\x5c\xf9\x5a\xa1\x9b\xfb\x36\x32\xeb\x33\x2d\xc5\x49\xaa\x28\x87\x4e\xa8\xce\xf5\x9b\x4a\x76\xef\x08\xbd\xba\x20\x9d\x1a\x92\xe0\xbd\x28\x1c\xb3\x93\xcc\x28\x73\x45\x94\x79\xca\x17\x98\xd6\x6d\x37\x75\x6d\x34\x38\xda\x5e\x0b\xd4\x69\xf8\x5a\xa5\x53\x72\x68\xe2\xcf\x50\xde\x83\xfb\xfe\xf0\xa8\xb0\x11\x3b\x50\x84\x63\x65\x03\xa4\xc4\x18\xe3\x48\x49\xb4\xad\xc3\x35\x30\x3d\x32\xe3\x57\x95\x9f\x7b\x99\x92\x4d\xb2\xf6\xca\xf7\x85\xcf\xcc\xac\x0c\x80\x56\x1d\xe1\x25\x2a\x4c\x6d\xc8\xcb\x30\xbc\x21\xa8\x93\xae\x3a\xcf\xd5\xe3\x94\xce\xc3\x96\x60\xc7\x5c\x26\x91\x56\xd7\x3e\x5b\xae\x36\xac\xc9\x93\x14\x8c\x01\x7f\x70\x9d\x46\x5c\xda\x94\x68\xcd\x0b\x82\x53\x21\xe9\xae\x51\xee\x50\xa0\xcc\xe5\x2a\xc4\x59\x36\xdd\xd9\x6e\xe3\x3e\xdf\xce\x7a\xc3\x24\x72\xa2\x23\x22\xf8\xae\xbc\xa1\xd7\x55\x19\x24\x4d\xba\xac\x61\x84\xe0\xf2\x08\xad\x26\xbe\xae\x10\xdd\x16\x71\x6e\xd3\xb1\x49\xf3\x6c\x1a\x03\xc3\x8a\x69\x48\x58\x89\x7c\x9a\x4f\x0d\xdc\xd4\x80\x90\x9b\x4a\xb7\xaa\x67\xc6\x61\x6e\xa2\xf0\x55\xb8\xc5\x8c\x12\xd1\x3b\xe8\x8a\xe2\x06\x1b\x25\x7d\xd0\xb9\xd0\x28\x23\x18\x39\x86\xad\xcb\x37\x13\x0d\x38\x48\x7a\x43\x3b\x92\x44\x67\x85\xee\x4c\x9a\x95\xea\x7d\x86\x07\xc8\xf9\xf6\xe8\x4f\xd7\xa4\xac\x64\x94\x15\x02\xd8\xa4\x61\x52\x64\xb4\xb3\x00\x5a\xda\x0a\x14\xb3\x17\x12\xe6\x8e\x5b\xd2\x13\xab\xa2\x40\x04\xd7\x69\x4a\xb5\xc4\xf7\x84\x50\x14\x11\xc4\x74\x47\xe1\x10\xa7\x37\x9c\x04\xf1\x78\x6c\x4d\x44\x11\x27\x12\x14\x8f\x80\x84\xc8\xad\xc1\x72\xf4\x60\xce\xdf\xd7\x5c\x56\xba\x39\x74\x53\xc9\xe2\x5f\x52\x15\xde\x22\x5e\xa3\xe6\xa8\xfd\xb3\x5e\x9e\xd7\x4b\xf5\xaa\xf2\x55\x66\xe9\xd5\xa3\x75\x2a\x59\xe0\x7d\xef\x04\x0a\xfc\x81\x2c\x99\x64\x98\xe4\xd9\x93\x22\x1f\x17\xf9\xb4\xca\xdb\x7d\x88\xb3\x48\x60\x67\x3e\x69\x73\x9b\xd2\xee\xdc\xf3\xa2\x5c\x9f\xbe\x59\xcf\xf6\x78\xbf\xfd\xcf\x69\x67\xc9\x66\x2c\x57\x2c\x36\xd3\xe5\x89\xa7\x4f\xb8\x38\x51\x9a\xa6\xaf\x2b\x5b\xf0\x28\x78\x15\xb0\xcb\xee\xd0\x60\xc1\x42\xde\x9b\x28\x4d\x92\xd3\x18\x39\x1c\xc4\x97\x55\x40\x9a\x9a\x7e\x98\xec\x56\xe5\xd6\x0f\xb5\xca\x02\xd8\x49\x04\x8e\x5b\x3e\x99\x23\xbf\xf2\x61\xdb\x7b\x2a\x6a\xff\x30\x50\xe9\xee\x0f\x35\x15\x30\x68\x8c\x80\x97\x94\xe6\x59\xad\x48\xd6\x50\xa3\x2c\x23\xda\x14\xb4\xf5\xc2\xe6\xab\x54\xd6\xaf\xe3\xa7\xe0\x82\x1c\xad\x64\x0b\xd2\x7e\x4e\xd9\x5a\xa0\x02\x81\x54\x42\xca\xe2\xab\xd4\x85\xe4\xc2\x7b\x0f\xb0\xa9\x77\x48\xbf\x30\xfb\x6c\x7b\x5c\x74\xa3\x30\x1b\x3a\x92\x64\x24\x79\xd0\xa7\x28\x68\x6f\xef\x27\x1e\xaf\xd5\xc6\x16\xd1\xbf\x33\x18\xd8\xd4\xc6\x3d\xf8\x97\xa2\x8c\x4e\x4f\x2f\x1a\xe1\x7e\x03\xfd\x37\xff\xf8\x9f\x2a\xac\x2a\x74\x67\xf8\xba\xe3\x13\xe1\xfd\x30\x1b\x17\xb9\xcd\x68\x70\x34\x32\x10\xfe\xf3\x47\x81\x07\x25\xbd\x1f\x68\x61\x04\x78\x71\x82\x8e\x3a\xa5\x68\xde\x4f\x35\xea\x6b\x0d\x4c\x8f\x99\x69\x85\x25\xc7\x23\x08\xce\x29\xbf\xb8\x6f\x22\xcb\x58\x49\xc7\x77\x52\xbe\xa0\xf8\x33\xb5\x38\x69\xbe\x3d\x37\xff\x68\x79\x0c\xb8\x3d\x54\x2e\x06\x1e\xc8\xc0\xf5\x18\xfd\xc3\xdf\x57\xcd\x19\xf7\xe0\x45\xe1\x10\xf9\x8e\x56\x00\x78\x13\x07\x12\x46\xe2\xbb\x34\x27\x58\x9c\x97\xf5\xbe\x79\x07\xe7\x2d\x66\xfc\xb2\x6a\xb3\xdc\x24\x98\x0d\xa2\x82\x2b\x38\x01\x85\xb2\xd0\x1b\x96\x28\xcc\x87\xc9\x2b\xd3\x1e\xf9\x74\x42\xed\x08\x66\xfd\xab\x70\x66\x0a\xb3\xa6\x90\xd3\x16\x31\xd3\x5c\x84\xf1\xf2\xb4\x4a\xb9\xc0\x92\xa1\x1e\x83\x34\x07\xcb\xad\x62\x4c\x58\xa8\x5e\xd9\x8f\x5e\x11\xe5\x2d\xc5\x59\x7e\x5f\xf5\x8d\xdf\x57\x49\x94\x81\x09\x53\x9b\x56\xc4\x9f\xe9\xdd\x44\xfd\x59\x65\x5b\xf3\xa2\x1f\x26\x53\x64\x84\x5d\x37\xcb\xfe\x59\xd7\xbb\xe3\xe1\x49\xef\x4e\x34\xb3\x7e\x9e\xb4\x71\x7c\xb2\x36\x04\xf1\xdd\x21\x35\x72\x0f\x83\x0d\x87\xe1\x7d\x9c\x71\x78\xc4\x1f\x4d\x5a\x5f\xf8\x0d\x9e\xc5\x19\xb0\x4d\x61\x10\xaf\xd0\x34\xe0\x68\x7b\x84\x8a\x9c\x82\x1e\xf3\xd5\xc9\xa3\x81\xf6\xbc\x2f\x63\xd8\x71\xc2\x73\xd7\x98\x23\xc8\x98\x3f\xc8\xeb\xe9\x72\xd0\x3a\xf8\xbc\xab\xf4\x90\x59\xc4\x0f\xde\x51\xf4\x6e\x6f\x05\x7e\xab\x9d\xa4\x17\x16\x07\x45\xad\x87\xcb\x38\x1f\xe0\x40\x9f\xc4\x1e\x86\x97\x7e\x04\x1e\x34\x37\xef\x83\xd0\x12\x4f\xff\x3a\x56\xad\xa4\x7b\x69\xe2\x05\x58\x5f\x4e\x3c\xb2\xcc\x3b\x36\x94\x97\xb8\x45\x66\x8a\x6b\x5a\x41\x19\x0f\xc9\xc6\xa8\x1c\x93\xad\xe7\xe6\xbd\x56\xc9\xaf\x7f\x89\x4f\x84\xa9\xce\x5e\xbf\x66\xcd\x94\xda\x57\xa0\xed\xc6\x69\xfe\x13\xfa\x09\xe9\x10\xf5\x2b\xc1\xbe\x32\x0e\x53\x1c\x9f\x5c\xf4\x98\x78\x73\x74\xa6\x01\x2f\x31\xdf\xee\x9b\xdc\xe0\xd0\x97\x24\xaa\x4a\xa8\xd6\x52\x31\x65\x34\xb9\xb2\xbe\x66\x52\xb8\xfd\xb0\xdf\x20\xab\xe0\x6b\x77\xd4\xae\x99\xb8\x6f\xd3\x69\xa5\xeb\x70\x8c\x8e\x44\x9c\x69\x7f\x01\xfb\x8d\x00\xe6\x8a\xe2\x8d\x3c\xdc\x04\xc3\x22\x45\x77\xc6\x8e\xcf\xf3\x9e\x3a\x06\xa7\x54\x75\x81\x4b\x9a\xe0\xdd\xc0\x03\xdc\xd2\xb0\x9b\x64\xc9\xc8\x44\x2d\xdd\x87\x81\xb9\x97\xa6\x8c\x3a\x7b\xa6\xef\x11\x60\xd7\x15\x67\x3d\xaf\x19\xbe\x99\x7c\xda\x53\xa7\xdb\xd5\x24\x22\xee\x3b\x93\xb2\x21\xc5\x92\xbb\xae\x98\xd2\xaf\x6b\x3e\xec\xf1\xa0\xa5\x20\x0f\x6f\xc2\x58\xf0\x4d\x83\x04\x7e\x3b\x4f\x93\xa2\x1b\xa1\x39\xcc\x23\x6e\x21\x35\xcb\xd7\x4d\x0d\xa8\x91\xe9\x26\x68\x5e\x54\xd8\x35\xa1\x4b\x61\x9d\x0d\x58\xa5\x61\xd8\x6b\x79\x49\xe1\x0f\x15\xff\xc8\x87\xca\xe3\xec\x0d\xcd\x98\x6a\x34\x3e\xc3\x83\x3f\xe5\xeb\xba\x28\xe7\xfe\xa5\xcf\xb5\x6d\x3f\xcc\x93\xb4\x5a\xd0\x08\x3c\x2c\x43\x17\x1c\xc6\x66\x3d\x4d\x22\x10\x21\x0a\xfd\xb0\x0f\x40\xcf\xab\x31\x8f\x93\xb8\x6f\x47\x49\x2f\x05\x5d\xf8\xaf\x7f\xc9\x79\x06\x1e\x34\x5d\xcf\xbb\x2c\x2c\xb4\xfb\xa9\x19\xb8\x64\x8d\xb0\xcb\xd0\xc4\x0a\xf9\x85\x17\x6e\x35\x69\x37\xcc\x53\xb3\x6c\x1f\x26\xeb\x24\x01\x54\xb9\x13\xb9\x81\x91\x2c\x15\x3e\xf8\x03\xb2\x80\xf0\x55\x59\x6c\x09\x56\xe8\x32\x82\x29\x01\x6f\x2a\xd2\xec\x3f\x0f\xbc\x58\x02\xd8\x20\x60\x7f\xff\x40\xc1\xed\xc7\x49\x39\x85\xfb\x67\x3d\x0a\xd3\xd9\x9d\xc3\x9a\xce\xb6\xd7\x33\x69\x3e\x5c\x9f\xaa\x34\x0f\xd1\x2e\x83\x51\xbd\xac\xbd\x96\x37\x6b\x33\xb5\x6f\xb1\x3d\x48\x4d\xbc\x32\x28\x52\x11\xf7\xc3\x8f\x20\x85\x81\xd7\x3a\x1c\xa8\x4e\x82\x99\x8d\xcf\x3d\xa0\x44\x9e\xda\x70\xd4\x2d\xd2\xcc\x3a\x65\x1a\x61\x1e\xf4\xc9\xef\x2b\x5a\x5a\xd9\xf7\xc4\x0e\xcd\x9a\x09\x85\xeb\xc0\xc1\x0b\xfd\xee\xb8\xd4\x98\x0a\x18\x26\x92\x0a\x80\xcf\x72\x4a\x21\x48\xb5\xb8\xd4\xa8\xe8\x0d\x9f\xf4\xf4\x65\xd7\x09\x4c\xe1\x84\x08\x1c\x12\x63\x8b\x66\x18\x71\xfe\x2f\x34\xad\xc1\x15\x15\x89\x71\x5a\xd7\x09\x7e\x97\x53\x8c\x72\xc7\xc9\x89\x52\xdb\xe3\x70\x12\x2e\x2c\xa7\xb1\x10\x37\xdd\xd3\xf2\x9b\x53\x48\x83\x09\xfc\xa1\x3c\x64\x91\x06\x3c\xa1\xf4\xcb\xb6\x68\xb5\x39\xd0\x8a\x38\x33\xff\xcf\x13\xba\xb2\xf7\xd5\x26\xd5\xc2\xcc\x96\x9b\xea\x85\x59\x5e\xc2\x78\x0f\xbe\x9e\xfc\xfd\x07\x4c\xa3\xe9\x7b\xbc\xc5\x54\xeb\xd7\x0e\x38\xa4\x6c\x39\x82\x58\x54\xd7\x75\x2d\xf3\x3d\x27\x2b\x90\xda\x2c\x4f\x52\xdf\xdd\x29\xc8\x73\xfa\x63\x69\x63\xdc\xbe\x37\xf7\x2d\xb6\x7b\x26\x8e\x5d\xf0\x2b\xc4\x28\x1e\xef\x7b\x42\x99\xd0\x61\x2c\x1d\xaa\x0e\x91\xac\xca\xbe\x95\xf2\x87\x1d\x9b\x5d\xfe\x7d\xcf\xea\x4e\x84\xfb\xf0\x3d\x11\x33\x7e\x34\x51\x0d\x0b\x60\x2b\x75\x1d\x25\xa5\x1b\xc1\x7f\xd5\x40\x9b\xfc\x6c\x3b\x8c\x07\x26\xce\x43\x16\x21\x83\x27\x7f\x56\xa7\xc5\xcf\xba\xbe\x21\x86\xc0\x75\x23\x3b\xe3\x4b\x20\x7b\x3b\x5e\x7c\xf9\x82\x62\xf7\xbc\xa9\xb0\xa0\xdf\xc5\x2b\x22\xc1\xf1\x71\x43\x23\xe7\x4b\xed\x97\x4d\xef\xcb\x05\xba\xb6\x96\x1c\x30\x43\x55\xac\x8f\x35\x06\x0a\x99\x61\xc1\x44\x64\x5e\x4f\x62\x65\xf3\x4d\x93\xa2\xf6\x28\x64\x5d\x42\xc0\x29\xae\x29\x7d\xce\x6b\xca\x9a\x0f\x4d\xda\xb7\x59\x0e\xac\x31\x4c\xf8\x34\x30\x55\x2e\xa1\x56\xee\x0d\x6c\xc0\x8f\x6a\x07\x71\xb9\x6e\x4d\xb4\x6a\xfa\x49\x6a\xe2\x29\x0d\xb7\xa0\xb5\xcf\x28\xfd\x49\x4b\xc9\x9b\x35\x75\x31\x22\x09\xd5\x52\x50\x14\x28\xcb\xf0\xb5\xaa\x41\x1a\x3b\x6e\x69\x41\xa8\x2d\x2d\x86\x5f\x2d\x6a\xa7\x5c\xac\x45\x05\xe3\xb2\x2a\xf7\x5c\x56\x29\x23\xfb\xca\x38\x4a\x52\x9b\x4d\x29\x4a\xa6\x8a\xd6\x15\xe4\x71\x91\x31\xbc\xea\x40\x92\x79\x9a\x8c\xc3\x9e\x89\x8d\x1a\x63\x2e\xba\x89\x08\xaa\x54\x3f\xbe\x5c\x98\x34\xb7\xf9\x94\x77\xbe\x37\x15\x4b\xdb\x4e\x18\x06\x84\xf4\x97\x55\xa4\x9a\x15\x31\x22\x43\x97\xb7\xf7\x45\xf9\x9a\x23\x31\x7f\xb0\x3d\x48\x22\x51\xec\xe2\xb7\x08\x94\x30\xc3\x59\xd5\x52\xd0\x4b\x4c\x44\x56\x63\x46\xf7\x8f\x33\xe9\x21\x96\xd4\xdb\x13\xff\x5a\xc8\x45\xb1\xa4\x9f\xee\x48\xbd\xad\x90\x1b\x61\x66\xba\x36\x8a\x0c\xd1\x14\x31\xc3\x07\xb9\xc3\xc2\xf6\x21\x5b\x6b\x54\x44\x79\x98\xe5\xc2\x8a\xc6\xb8\x7c\xda\xc9\x82\xd1\xdf\xbe\xc8\xf6\x2d\xb6\x57\x43\x9b\xc7\x66\x64\x59\x9c\x96\x09\x52\x35\x01\xf3\x9d\x06\xad\xe7\xf6\xcb\x36\x5d\xe1\xa4\x08\x3c\xbc\xf7\x26\xca\xf5\x7b\xcf\x2b\x3c\x0c\x93\x1c\xbc\x0d\xcc\x6e\xa5\x75\xa6\xa6\x3a\x1a\x00\xa8\x5e\xb9\x4f\x32\xeb\x15\x6d\xd2\xc0\xe3\x94\x2f\xa8\x34\xd0\xd8\xe6\x36\x6d\x69\x3d\x5e\xa6\xc9\x14\xf7\xdc\x4f\x7b\x54\x74\xa7\xab\xac\x07\x4e\x32\xe8\x17\x8a\x3f\x8d\x8f\x79\x86\x82\x05\xdb\x33\x23\x72\x3e\x84\x59\x6a\x6c\x14\x52\xa1\x1f\x46\xe9\xb2\xd2\x20\xe2\x14\x91\x80\x49\xeb\x76\xe7\xa5\x76\x36\x4e\x72\x2c\x43\x9c\xb5\x3f\xa5\xe7\xe1\x6b\x45\x32\x90\x15\x69\x9a\x14\x71\xdf\xf6\x89\x60\xd0\x11\xc9\x2c\x79\x4e\xbe\x8a\xfc\xed\x76\xba\x94\xc5\xc5\x76\x9c\x3c\x33\xa5\xac\x1a\xea\x92\x38\x55\x6f\x06\x2a\x1f\x78\x54\xd1\x3b\xf5\x92\xd1\x20\x49\x39\x5a\xc7\x74\x5d\x53\xa0\xd8\x6b\xb5\x81\x29\x03\xaa\x71\x6a\x93\x5e\xaf\x18\x87\xe2\x62\x32\x56\x0e\xa7\x8e\x00\xe7\x7c\xc5\xf5\xd5\x70\x0c\x91\x68\x81\x27\x7a\x0a\xd8\x4d\xe5\xde\x11\xbc\x36\xcc\xd7\x77\x97\xeb\x01\xf1\xf3\x5f\xc3\x4c\x23\xa3\xf6\xa7\x58\x7b\x4c\x06\x02\x9f\x03\xaf\xfa\x21\x22\x6b\x44\x09\x97\xc8\xb3\xe1\x6b\x38\x23\x70\x5e\x4f\x34\xa8\x83\xb4\xf3\xd4\x9a\xac\x48\x3d\x17\x13\x76\x03\x37\xe0\xf3\x4d\xcd\xdd\x28\x7d\x6c\x6b\xc7\xe4\xb3\x32\xa3\x06\xf9\x59\xc2\xae\xf1\x20\x9a\xd8\x28\xe9\xad\x0c\x2d\xef\x28\x51\x70\x57\x34\xb6\xdf\x77\x3b\x2a\x4d\x92\x3c\xab\x18\xf4\x40\x19\x74\x55\xd0\xeb\x87\xe3\x08\x22\x50\x10\x7a\xe3\x95\x49\x4b\xdd\x5d\xef\x9f\xad\xae\x58\xb9\x69\x8c\x1d\xc2\x78\x85\xe1\xb4\x0c\x9f\xc6\xe2\x11\x2c\x75\xad\x8b\x7d\xd6\xa9\x94\xd1\x4e\x66\x9f\xce\x73\x6b\xbd\x72\x42\xf5\xb8\xf4\x86\x26\x35\xbd\x9c\xf9\x66\x50\xfc\x61\xee\x4c\xbe\x71\x7e\xb2\x89\x22\x6f\xe7\xb8\x5b\x67\xa2\xd6\xf1\x19\x25\x1d\xbd\x66\xa3\x9e\x04\x8e\x2e\xd1\xbd\xb0\xe0\x80\x07\x3e\xbe\xe3\x4c\xef\x6e\xdf\x40\xf1\xed\xc0\xb7\x4d\x7f\x8b\x16\x0f\x5f\x07\x2a\x15\x73\x43\x37\x18\xdf\xe0\x24\x0f\x3c\xe6\xff\x8d\xdc\x57\xfe\x2e\xe5\x1a\x74\x01\xd5\x27\x74\x0d\xfe\xf2\xb4\x3a\x43\xdf\x53\x0c\x7e\xef\x29\xc8\xce\xe9\x86\x66\xef\xf6\x20\x49\xed\xaa\x4d\x29\x9d\x2a\xf6\xaf\xfc\x51\xf8\x99\x00\x42\x22\xb9\xd8\x52\x59\xd8\x8c\x23\x76\x1a\x15\x8c\xee\x0d\xa5\x8e\x74\x43\xb9\x05\x71\x92\x7f\x4a\xe1\xe8\xb8\x80\x26\x95\x29\x45\xba\x7a\x6b\xe2\xcf\xd4\xe5\xa7\x88\xcc\x19\xb3\x71\x91\xe2\x3c\x2c\xe3\x87\x01\x6d\xe2\xee\x5b\x9d\xc4\x0d\x4a\xaf\xdf\x21\x84\xf7\x4b\x14\x77\x49\xd7\x20\x59\x97\x52\xd4\xc5\x7c\xa7\xcf\xae\x0d\x4a\x5b\xe9\xe6\x64\x44\x16\xe7\xa8\x60\x27\xf2\x03\x98\x1b\xd5\xb6\x3c\xcf\xe5\x87\xfb\x94\xfe\x13\x52\x30\x32\xad\xf0\x3a\x19\xf8\xc2\xea\x3d\xce\xf1\xe8\xa6\xa6\x4f\x69\x63\xa5\x8d\xa3\x5b\x3e\x36\x55\x2e\x73\x94\xa4\x86\x91\x1c\x8e\xa1\xd1\xb3\x35\xd6\x42\xd1\xcf\xb7\xb3\x62\x79\xd9\x7a\x15\x12\x40\xb2\xb9\xe7\x90\x6f\x6a\xd5\x33\xcf\xd7\x55\x58\xf8\x5b\xb0\x8c\x5b\x4a\xd6\x12\xde\x06\x12\x6a\xbf\x54\x76\xc2\x8c\xc6\x51\x38\x08\x6d\xca\xb8\x0f\x38\x0b\xb7\x02\x95\x6f\xba\xa5\xb2\xc9\xe3\x24\xcc\x92\x58\x81\x2e\x19\x15\x8b\xf3\xe4\x2a\xf0\xb2\x7c\x43\x05\x56\x61\xf7\xf3\xb9\xed\xff\x9b\xec\xbc\x10\xc9\xd4\xfa\x27\xe7\x50\xe6\xe4\xf4\x93\x70\x0b\xd2\x58\x0b\xb9\xa0\x02\x26\x9a\xb4\x37\xc4\x21\x22\xa2\x18\xe5\x97\xf3\xb5\xda\xde\x51\xb2\x1c\xf6\x4c\x34\xe5\x65\x98\xcf\xa9\x3e\x17\x3c\x1e\xbc\x97\x6f\xab\x24\x08\x50\x5d\x1c\x96\x89\x3c\x09\x73\x9f\xf2\x4d\x5d\x58\xf6\xf9\x03\x0e\x07\xbe\xae\xbc\x2a\x64\x73\x84\x09\xa9\x49\x90\xa1\x2b\xb4\xf0\xbe\xba\x54\x7e\x5c\xca\x4e\x75\x7c\xcb\xfe\xf6\xc8\x66\x0c\xea\x75\x8c\x6f\x2e\x63\xf1\xe3\x4a\x24\x98\xe5\xcf\x4c\xf9\x7c\xfd\x47\x5a\x2e\xee\xdd\x8a\x0c\xf4\x39\xe5\x34\x15\x79\x32\xad\x45\xfb\xae\x2b\x85\xad\x9d\x1d\x8f\x07\x3d\xad\x3d\xf4\x3f\x56\xca\xf7\x92\xa7\xca\xf6\x28\xd5\x29\xae\x87\x4a\xeb\x3f\x2d\x6d\xa7\x47\xb7\x28\x3c\x69\x33\x1b\x4a\xf5\x67\xa6\xe3\xd5\x19\xff\xd1\x13\x24\xfb\x80\x7a\x2e\x10\xfa\x80\x41\xb2\xd4\x04\xec\xe5\x09\xb2\x03\x02\xfc\x6e\x08\xe4\xb2\x61\xb2\x86\xc1\x96\x3e\xb7\x96\x53\x98\xff\x5a\x0d\x96\xb5\xb8\xb8\xd4\x7e\xb9\xc8\xf2\xb0\xc7\xdc\xa7\x48\xb3\x01\x17\xc9\xd7\xb5\xa5\xb0\xb0\xd0\x0e\xe3\x2c\x0f\xf3\x22\xb7\x19\x0f\x24\xfe\x76\x8c\x05\x0d\xa4\x05\x1a\xa3\xf8\x1a\x61\x0b\xff\xd5\xc4\xa3\xdd\xd6\xd2\x30\xb7\xe9\x2e\x5f\x3c\xfe\x68\xa2\x70\x41\x4c\x36\x8b\xfd\xfa\x91\x92\x0f\x3a\xa9\x79\x7f\x39\xca\xe7\x9b\x26\xc6\xd0\xf2\xb0\x44\xd7\x3d\x73\xb3\x20\xd6\xc1\x2e\xf9\x53\xfa\x5e\x29\x63\xfb\xd4\x92\x89\xb2\xe4\x93\xf4\x33\x08\xe2\xdf\x98\xf8\xa6\x39\x6e\x44\x02\xb6\xe3\x04\x76\x0e\x96\xe7\x4d\x64\x97\x5c\x87\xb4\xab\x68\xdc\xc4\x21\x83\x7f\xb8\x13\x78\x3a\xb4\x0f\xf0\xf8\x48\x21\x1d\x81\x6f\xe7\x08\x9b\x5d\x0b\xe0\xc5\x40\x65\x84\xae\xd3\xe9\x23\x1d\x75\x98\x01\x1c\x58\x53\x1b\x7e\xa7\xec\xe9\x50\x06\x8a\x1f\x92\xaa\x2e\x12\x25\xa8\x22\x0a\x9a\x94\x84\xce\xb0\xc1\x45\xea\x99\xb4\x1f\x9a\x5e\xcb\x67\x04\xce\xab\x70\xef\x7c\xe0\x05\x3a\xf3\xf5\x71\xb2\x9c\x9a\xf1\xb0\xb4\x49\xe4\x1d\x39\x22\x38\x4f\x0a\xd7\xb0\xe1\xdb\xc3\x24\xb7\x91\xfe\x81\x40\xfd\x80\x62\x8e\x21\x0a\x95\x9c\x21\x4a\x48\x0c\x1d\x57\x42\x4e\x75\xe2\xf3\xcf\x13\x3a\x3c\xec\x16\xae\xd6\x80\x54\xdf\x1b\x1a\x9c\xfb\xbf\xd0\x64\xe0\xf1\xde\x52\x21\xf5\x38\xec\xcf\xf8\xfa\xe2\x35\xe5\x0a\x9c\xe2\x96\x71\x0d\x7a\x47\x15\xea\xb3\x74\x1e\x21\xe0\xdd\xbb\x51\xcf\x2b\xcd\xb7\x7b\x26\x1f\x26\x51\xd8\xab\xea\x86\x5e\xd7\x1a\x02\x87\x2b\x92\xb5\x15\x31\xf4\x2c\x37\x51\x44\x55\xcf\x0a\x77\xb7\x40\xf7\x68\x5e\x5d\x52\xcf\x91\x96\x5e\x6f\xe8\xae\x9c\x6f\x8f\xc2\x38\x1c\x09\x54\xc6\x71\x4b\x2a\xdc\xe9\x76\x6b\xfe\xf9\x76\x2f\x89\x57\x6d\x9a\xcf\x28\xa9\xc5\x3f\x51\x90\xa1\x37\x31\x46\xe8\x05\xbb\xa3\x88\x31\xce\x60\xbf\x0a\xcf\x71\xdd\x0c\x1d\x68\x67\xbd\xd4\xda\x38\x83\xed\x92\x98\x98\x06\x45\x82\x65\x7f\xec\x0d\xc2\xe5\x22\xb5\x10\x3b\x60\x36\x08\x7a\x70\xc7\x0c\xe1\x60\x4f\x70\xbb\xf8\xba\xd1\xfc\x69\x06\x3d\xfc\xdd\x65\x0d\x6d\xbc\x3c\x79\x70\xdb\x58\x9a\x14\xcb\xc3\xa4\xc8\xa7\x3c\x69\xe9\x55\x2a\x19\x38\x85\xbd\x39\x91\x78\xf8\xd0\x49\x71\x74\x4d\xdc\x4b\xe8\x00\x85\x9b\x77\x5e\x0b\x75\x9e\xaf\x3d\xe2\xa1\x43\xed\x9e\x1d\xd9\xdc\xa6\xeb\x2a\xf1\x7a\x4c\x27\x5e\x8f\x29\xf9\x88\x31\xb5\x42\x10\x90\x2f\xd5\xfe\xd9\x05\x0a\xd8\x04\x0d\xef\x1d\xb9\xdc\x84\x6b\x26\x9e\x51\xbd\x77\xec\x50\x0a\x16\xa2\xe5\x44\x1f\x80\xe5\x83\x2d\x64\xc5\x2e\xa9\xd7\x6f\xaf\x6f\x3d\xfd\x74\xbb\x1f\x66\xe4\xf0\xb8\xe4\x2f\xc6\xe4\xdf\xaa\xfa\xd9\xbf\xdd\x46\xe0\x3b\x24\x87\x5f\xd4\x2e\x94\x1e\x22\xbc\x62\x2c\x9e\xdf\x6c\x2a\x17\x84\x71\xdf\xbe\xa2\x9b\xf7\x50\xc3\x12\x30\x43\x83\x9a\x6e\x3f\x4d\xc6\xb4\xee\x5d\xd9\xc6\x61\xfb\xfe\xbc\xf6\x0b\x2f\xce\x1f\x6c\xa7\x36\x62\xf9\x5d\xd8\xe3\xab\x0a\x48\x7d\xb5\x96\x83\x22\x42\xff\x31\xb1\xf4\x27\xa9\x9a\x86\x33\xca\x4d\x3e\xd3\xc0\x6f\x51\x1e\xdf\x69\x2e\xfa\x57\xf0\x63\x6e\x28\x51\x22\x3e\x2b\xe4\xfc\xf7\x1e\xc9\xc0\xa6\x29\x5c\xba\xf2\x8f\x5d\xa7\xf8\xfe\x25\x47\x60\xee\xd1\xd0\x7d\x93\x9b\x47\x7c\xf8\x72\x0e\x7b\x53\x68\x7e\xe9\x07\xe0\x2f\x5c\x53\x5d\x8d\x54\x11\x17\xb4\xc6\xc3\x38\xce\x71\xb6\x5f\xe3\x15\x03\xa3\xf7\x0e\xce\x3f\xfc\xdd\x5d\x5a\x32\x48\xb9\xa3\x79\x11\x07\xd0\xc3\x1d\xa5\x38\x70\x5b\x91\xdb\x5d\xc7\x5c\x71\x82\x64\x25\x4e\xd6\x22\xdb\x5f\xa6\xb0\x72\xfe\xa0\x53\xcf\x2e\xa3\x2a\x16\x67\x0c\xbc\x3b\x84\x2a\x9e\xc8\x6d\x7b\x4c\x60\xd2\x7d\xd9\x12\xb4\x15\x7a\xa1\x70\xa2\xdf\x55\xfd\x41\xef\xea\x7a\x68\x12\xe7\xa9\xc9\xa6\xfd\xd7\xa2\xa7\x43\x00\x6b\xe5\x37\x08\xc3\x20\xbd\x03\x32\x80\x5f\x51\xb9\x2d\xd3\x1f\x85\x59\x86\xdf\x9b\x3f\xe8\xb5\xad\xe6\xe6\x1d\x6a\xc7\x07\x1e\xb1\x49\xd3\x64\x4d\x51\x36\x9c\x0d\x3c\x65\xc3\xd9\xc9\xa7\xb7\x03\x75\x9e\xa5\x02\xec\xee\xf2\x6f\x80\xb6\xfd\x09\x05\x83\x7c\x0d\x7b\x29\xcc\xa8\xaa\x7c\xf2\x4b\xc5\x57\x79\x15\x53\x8c\x48\xe5\x92\xd2\xa5\xdf\x54\xd8\xcd\x41\xf1\xea\xab\xeb\x55\x89\xa6\x0a\xef\x84\xa3\xe3\x4c\x56\x6d\x6c\x98\x35\x12\xab\xe6\x1e\x0d\x2d\x5f\x2b\x9c\x4c\x38\x90\x9c\xbd\x08\xec\xf9\xd2\xdb\x85\x06\x41\x6a\x62\x87\x31\x69\x28\x18\x46\xf6\xd0\x2a\xde\x5a\x43\x76\xa6\x5f\xda\xca\x54\x72\x75\x48\x3d\x5e\xc1\x12\xe7\x1b\x15\xc7\xa6\x21\xd4\x5f\xca\xef\xd7\xf8\x39\xbe\x56\xce\xc0\xab\x91\x55\xf0\x2e\x94\x50\x51\x24\x83\x2e\x90\x0c\xe7\x67\x43\x39\xa2\x08\xa9\xf6\x6f\xfe\xc9\x38\x4d\x7a\x36\xcb\x1c\x6a\x8d\x81\x33\xf4\x21\x2d\x0a\x8a\xd8\xf6\x9d\x06\xf3\x76\xa0\x6d\xd6\xcc\xfa\x94\xea\x9f\x3d\x4e\x3b\x1b\x91\xea\x2e\xea\x8f\x47\xd8\xb9\xb3\x26\x34\x3d\x37\xd7\x8e\xac\x59\xdd\xc6\x3e\xba\xa9\x80\xd5\xf5\x08\x6c\xff\x52\xdb\x74\x93\x22\xa7\x55\x89\x70\xe6\x63\x05\x84\xfc\x58\x03\x16\xd7\x47\x2e\x53\x8d\x4c\x28\x9f\x4c\x7c\xe3\x68\x5b\xc7\x69\xd2\x0f\x97\x59\x10\x11\xa9\x8b\x77\x02\xdf\x49\xf2\x8e\x3b\x1e\x97\x93\x22\x47\x7c\x89\x6e\xa4\x3b\xe4\xea\xf2\x75\xc3\x2a\x39\xd0\xce\x93\x65\x9b\x97\xb3\x58\x3e\xae\xb0\xea\x55\x08\x98\x6b\x2f\x38\xdb\xee\x1b\x42\x00\x3a\x76\x0c\x8c\x88\x68\x87\xd4\x5b\xce\x5f\x98\x5d\x7c\x44\x49\x3e\xfd\xa4\x22\xfb\x46\x23\x8b\xbd\x7d\x71\x52\x4d\x4b\xee\x9f\xf5\xc2\xd1\xfb\x64\xc5\x5c\xd7\x82\xd0\xdf\xaa\xa8\x95\xd2\x4a\x44\xce\x17\x2d\xe2\xba\x29\x42\x08\x7e\x69\x65\x7b\x39\x3d\x97\x6c\x0c\xed\x33\xad\xf2\x98\xc7\x98\xb2\x17\xc9\x37\x0a\x5e\x66\x9d\xb6\xd4\x62\xa5\x00\xcc\xd7\xaa\xf3\x79\x35\x4c\x93\x2f\x17\xa6\x1c\xd9\x2d\xe2\x20\xdd\xfa\x58\x41\x4c\x46\x61\xb4\x32\xed\x13\x8b\x0c\xcd\x92\xd6\x54\x6f\xed\x37\xf5\xee\xd3\x9c\x4a\x76\xd5\xc6\x4c\xd2\xc1\x00\x67\x42\x7d\x09\xd8\x59\xe9\x1a\x98\x28\x4a\x80\xbb\x46\xfc\x74\x45\x11\xdb\x5f\xd1\x4d\xd3\x45\x14\xad\xef\x72\x84\x50\xc1\x07\x34\x6e\x0a\x31\x3d\x5f\xed\x74\x87\xd3\xbf\x15\x28\xe1\x98\xc0\x13\xaa\x1e\xf6\x2a\x9d\xeb\x71\xd8\x43\xef\xbb\xc3\xdf\x7a\xa6\xdb\x0a\xe5\x5f\x4d\x46\xe0\xf9\x03\xc4\xb2\x53\xb0\x46\xb2\x70\xc5\xfb\x34\x43\x9d\xa3\x78\x0e\x12\xf5\x36\x45\xef\x0a\x1b\x40\xd7\x0b\xe5\xfb\xa2\x34\x80\x3a\x5c\x8e\x8d\xd3\x4d\x61\xce\x17\xb5\xaa\xcf\xaa\x53\xce\x44\xa9\x35\xfd\xf5\xc7\x3c\x54\x18\x04\xf3\x22\x81\x5b\x1e\xb0\xd2\xe3\x4f\x8b\x1b\x41\xca\x57\x27\x7e\xc3\x4c\x81\x03\x45\x49\x63\xbe\xc4\xde\xd0\x5d\x72\x81\xe1\xe3\x80\x44\x41\xf6\x3b\x8d\x3f\xce\x9a\x1b\x18\x7f\xc0\xc5\x6e\x05\x2a\xb4\x3a\xa6\x08\x34\x4e\x92\xd7\x2a\x28\x9e\x06\x45\xc8\x6e\x98\xa2\xba\x80\xfd\xf3\x1d\x85\xb4\xfd\x4e\x43\x32\x6a\xbe\xbd\x96\x26\x4c\xd7\x08\x7f\x07\xc9\x64\xbe\x76\x84\x07\xbd\x24\x06\x50\xa2\x7a\x8c\xdc\x09\xd4\x42\xbe\x53\xa9\x1e\x7f\xe1\x5f\xee\x7f\x9c\x46\x4a\xf0\xe5\x8a\xbd\xe7\x9c\x16\x1b\x7c\x3b\x68\x3d\xe7\xf7\x82\x5a\x84\xb7\x95\x32\xc5\xb4\x92\x2a\xfc\x1e\xa5\x71\xe1\x31\x63\x38\x71\x38\xdd\xc6\xc3\x60\x8b\x81\x5e\x1d\xfd\x46\xec\x9c\xc1\xb9\xdb\xb5\xa1\xc5\xef\xef\x29\x47\x7a\x77\xa7\x9c\x26\x91\x70\x2f\x27\x16\x6e\xfe\x56\x53\xb5\x38\x0d\x57\xd9\x76\xc3\x99\xdb\xd3\xf1\xf0\x8b\x3d\x1b\xde\xd7\x1a\x85\x91\xcd\xf2\x24\xb6\x4c\x66\x25\x29\x0a\x9a\x5f\xd8\xbb\x1b\xaa\xb2\xf3\x1a\xbd\x0f\x93\xbe\x54\xba\x76\xc2\xa8\xff\xa8\x4a\x0e\x33\xd4\x09\x2f\xf8\x03\x24\xb3\xf9\x28\x04\x96\x55\x08\x65\xc8\x04\x39\x2d\x0b\x6f\x4c\xaf\x06\x0a\x9c\x74\x54\x89\x62\x9d\xa9\xc8\xb5\x95\xe6\x07\x9e\xcb\x1d\x80\x46\xb9\x79\x26\xf0\xb4\x00\xd7\xe8\xec\x15\x1a\xbe\x86\x60\x24\x1b\xa7\x66\xbd\x55\x69\x39\xf7\xd8\xa5\xcd\x40\xe0\x94\x50\x8b\x44\x24\x8d\x04\xd7\x2f\x94\x16\xd3\x37\x14\xdd\xd9\xb5\x4a\x99\xd8\x77\x41\x7c\xa3\x41\x95\xe7\xd9\xf6\xaa\x8d\x97\xad\x11\x7c\xbb\x30\xdc\x97\x9f\xe2\xeb\xda\x21\x3a\x7f\xb0\xbd\x36\x0c\x73\xbb\x66\xb2\xe1\x94\x92\xac\x38\x4a\xcf\x8d\xbd\x81\x67\x80\xed\x3c\xa5\x29\x18\x6c\x44\x4c\x58\x33\xbe\xc9\xf6\xcc\xc4\x27\xbd\x7e\xac\x58\xf8\xcf\x60\x97\x0b\x4b\x82\x6f\x26\xbf\x18\x68\x29\xe7\xde\xd0\x7e\xb9\x28\x7d\xb2\x8a\x14\x86\x47\xbf\xd4\xd0\xeb\x5f\xf8\x8d\xf6\x0b\xb3\x2f\xb5\x14\x59\xe7\x09\xa0\x7f\x85\x30\x6d\x7b\xf1\x78\x61\xa1\x4d\xe2\x6c\xae\xf7\xe1\xac\x4a\x48\xd7\x89\x93\xcb\x58\x2e\x37\xcb\x96\x82\x64\x3c\x31\x5a\x1f\xb6\xc0\x35\x81\xea\xc8\x0c\xe5\x8d\x1d\x21\x50\xf9\xbc\xd8\xf0\xff\xb5\x91\x9f\xbd\x8c\x33\x2c\x13\x9b\x39\x56\x7d\xcf\xb0\xaf\x1c\xcf\xe5\x02\x04\x3b\x88\x46\x2e\x55\x5a\xfc\x4b\xeb\x28\x5a\x2b\x8f\x29\xf0\xea\xd8\x54\xca\x38\x67\x95\x30\xc4\xd9\x26\x30\x59\x64\xe2\x3e\x39\x43\xce\x1c\x2c\xfa\xfa\x90\x43\x3d\xe4\x76\x9c\xed\x56\xad\x26\xa8\xc3\x48\x27\xb8\x2f\x03\x3c\x8e\x14\xb7\xb4\x96\xfb\x05\x7b\x0a\xc7\x04\xc2\x5a\x56\x6b\xa0\x03\xe4\xcf\x3e\xdb\x79\x90\x34\x40\x6f\x98\x86\x59\x1e\xca\x19\xe8\x44\xbb\x7d\x3a\xf9\xdf\x07\x5e\x24\x82\x56\x63\x9a\xc4\x61\x0f\x02\x26\xaa\xb7\xe5\x80\x67\xf5\x76\xb9\xc5\x23\x15\xf9\xb8\x5a\x92\x6c\x3f\x95\x22\x97\x93\x3c\xb7\xf1\xb4\xea\x6f\xd8\xa9\xb4\x86\x8f\x20\xad\xeb\x12\x15\xfb\x67\x1d\x97\x8b\xf7\xb8\x7a\x69\x98\x59\x90\xff\x62\x4b\xdf\x99\xa8\x96\xbf\x2b\xba\x77\xf3\x14\xbc\x3b\x29\xdb\xf9\xef\x88\x4c\xba\x8c\x6d\xb1\xe8\xbc\x6b\xbf\x27\xeb\x30\xb0\xc5\xc5\xf2\xbf\x11\x8e\x47\x91\x9d\x51\xd8\xbe\x0b\x0a\x54\xdd\x65\x86\x59\xac\x34\x39\x6f\x95\xf8\x27\x5c\x1c\x56\x80\xd3\x18\xd5\x30\x0e\x33\x47\x9c\xd4\xd4\xd4\xad\xa9\x80\x22\x03\x46\xb1\x69\x1f\x2c\x9e\x50\x0c\xfa\x6f\x69\xa5\x94\x6f\x4c\x94\x26\xc8\x25\x45\x4d\x1e\x81\x3a\x04\x66\xe9\x23\x3a\xf7\xa4\xf8\xa3\x67\xbc\xdc\x1a\xb8\x46\xfe\x84\xff\x5e\x71\x1b\x50\xf6\x8e\xbd\x45\xe0\x27\xce\xa3\x27\x9f\x15\xf0\xf0\xfe\xfc\x2f\x4a\xf6\x7a\x17\x9a\x24\x44\x27\xaf\x3c\x0d\xf8\x1f\x3a\xdb\xb7\xd6\xa1\x43\x44\x79\x4f\x91\x09\x4e\xdd\x3f\x54\x50\xe3\x3f\xac\x54\xb2\x56\xc3\x1e\xf2\x4b\x22\x8f\xd5\x5a\xf4\x2c\xd0\x75\x29\xea\x41\x61\x23\xd6\x4d\x83\xd7\x76\x0a\x4b\x8a\x6f\x5c\x55\x77\x6c\x62\x1b\x45\x61\xcb\x1f\xfc\x17\xb4\xe4\x6e\x5d\xe5\xfe\x85\xd9\x76\xe9\x6d\xaf\x09\xa3\xa8\x03\xfa\xee\xaf\x04\x3c\xf3\x4e\x62\x64\xfb\x21\x34\x37\xd7\xb6\xf1\x72\x18\x5b\x9b\xca\x77\xc0\xc3\xb9\x49\x73\xcd\xa2\xee\x38\xd0\xc5\x55\x53\x52\x7c\x83\xd8\x64\x2f\xdb\x55\x7a\x60\x81\x02\xa9\xaa\xde\xf9\x07\x82\x97\xc6\x26\x4f\xc3\xde\x0a\x01\x8a\xe0\x28\x9c\x50\x4a\xae\xe7\x74\xc6\xf4\x56\xa0\xf5\xd5\x46\x63\x13\x33\x95\xfe\x4b\x0e\x03\xe3\xcd\xd9\x89\xa6\x21\x62\xee\xb3\x96\x6f\xc8\xd4\x6a\x01\x47\x94\xfd\x5e\x30\xeb\x04\x15\x43\x19\x92\x49\xa6\x00\x78\xba\xca\x99\x33\x69\x11\xf6\x1f\x5a\x67\xb7\x56\x34\x49\xe9\x43\x7c\xa3\xe2\xb3\x41\x18\x85\xf1\x32\xfa\x45\x51\x0f\x07\x27\xab\xe3\xc6\x98\x9b\x73\xdc\x18\xe5\x76\x02\x0b\x13\xef\x85\x3a\x49\xfd\xc1\xe7\xdb\x43\x6b\xa2\x7c\xb8\x4a\xca\x42\x5e\x1f\xe6\x14\x05\x45\x02\x96\x78\x42\x67\xcb\x7a\x51\xd1\xb7\x34\xe6\xc2\x8b\x44\x9e\xaf\x63\x7e\x74\x8a\xa3\x75\x3d\x2d\x3a\x58\x93\xd4\x2a\xb9\x98\xb3\x4a\x2e\x46\x17\x3e\xf2\xc2\x66\x7d\xb3\xbe\xc7\xb7\x60\xfe\x98\xdc\x30\xd8\xe3\x4d\x55\x1e\x66\x8a\x3f\xe4\xc0\xa6\x00\x47\x45\x8e\xe9\x28\x19\x67\x94\x69\x98\x9c\x05\x8e\x22\xcc\xb9\x60\x6b\xcb\x27\xc6\xff\x7f\x0d\xc3\x2e\x8a\x3f\x7e\xd8\x47\x26\x1e\x26\x09\x87\x06\x0e\xe5\xe5\x34\x89\x36\x15\x3d\x6d\x19\xb9\x8e\x23\xb3\xce\x40\x84\x25\xaf\xeb\xa3\x38\x93\x1e\x75\x7b\x75\x6c\x53\xa9\x0b\x21\x39\x7a\x77\xa2\x68\x1a\xb8\x30\xc1\xed\xea\x2a\xa2\x07\x22\xe9\xa1\x72\x16\xb0\x00\x6f\x91\x59\x02\x5c\x0c\xfe\x18\x13\x35\x04\x95\x9a\xac\xcf\xe8\x1d\x9b\x54\xfa\xc9\xcb\x27\xe5\x5e\x31\x65\xa0\x1f\xde\x50\x7c\xc8\x63\x6b\xfb\xfc\x4e\x42\x5d\xe7\x5b\x93\xde\x53\x0c\x04\x26\x5b\xb1\x7d\xe2\x16\x01\xb6\xe0\xb0\xd6\xd8\xb8\xcf\x5b\xc0\x33\x1d\xcf\x3a\xc8\x9b\x4f\x79\x80\x7c\x05\x4e\xfa\xf7\x15\xaf\x47\x2f\x49\x22\x02\xca\xc2\x8e\x5c\xa2\x8f\x23\x54\xda\x41\xd5\x74\x49\x40\x3c\xaa\x08\xb2\x4d\xba\xd7\x17\xd7\x7f\x4a\x03\x82\x82\xd7\x63\x1d\xef\x67\xed\x21\xac\x8f\xd7\x0f\x14\x21\xb6\xab\x13\x4f\x21\x7b\x5f\x07\xb4\xc7\x02\xc5\xa1\x7e\x11\x9b\x80\xf9\x83\x70\xac\x55\x5c\x11\x69\xc4\xf1\xe3\xb9\x6c\xe3\xd0\x44\x9c\x4a\x6b\x92\x95\xf5\x26\x52\x0e\xd2\x96\xcf\x0f\x9d\xc3\xa3\x88\xa9\x6b\x90\x71\x49\xd2\xbe\x35\xa8\xb1\x62\x62\xbf\xa2\xe0\xf0\x5f\x69\x42\x12\xc4\x26\x5d\xa7\xb4\x3b\x1e\xf6\x26\xd0\x99\x30\xe5\x17\x95\xa0\x09\xf2\xf7\x82\xab\x6f\x00\x1d\x66\x63\xdb\x0b\x4d\x14\x66\xe8\x1c\xc1\xf4\xa2\x39\x06\x2e\x3a\x97\x56\xa5\xfc\xf2\x84\x6a\x09\xca\x6c\x5f\x28\x8d\x1d\x91\x9e\x2b\xd6\xfe\x95\x3b\xe5\x46\x66\x10\x26\x59\xd8\x52\x11\x1f\x38\x48\xf9\xba\x81\xe0\xb4\x3d\x1e\xae\x67\x61\x8f\x3a\x53\x1c\x3a\x03\x42\x2d\x7c\xed\x08\x69\x7a\x49\x3c\x48\xd2\xd1\x74\x15\xa8\xf5\xc2\x2c\x3b\x07\x5c\xcd\x40\x94\x03\x2c\x89\x94\xae\x1b\x08\x89\x5e\x5c\x7a\x0c\x93\x2c\x5f\x44\x33\x87\x58\xe1\x8c\xa2\x0f\xfa\x48\x13\xb2\xb3\x19\x80\x9f\xb1\x45\x9b\xdb\x35\x11\x3a\xb2\xa7\xcb\xf0\x58\x9c\x3e\xb6\x16\xf0\xa5\x47\xc7\x12\x3e\x49\x23\x88\x8f\x9c\x0c\xbc\xe2\xfe\x29\x95\x6f\xfc\x58\xf3\x94\x1f\x6a\x04\x03\x0d\xd7\xfb\xa9\x29\xa2\xb0\x47\xcb\x50\x2a\xa7\xaa\x8a\x5a\xc9\x8f\xbc\x52\x9e\xaf\xe5\x03\x61\xa3\x43\x39\x90\xaf\x9b\xfa\xdc\x7a\x44\x6d\xa6\x88\x4d\xcf\x29\x0c\xc1\xb9\xca\x57\xaf\xdb\x98\x0e\x40\xd7\x48\xec\x9c\xcb\x0f\x28\x9e\x17\xd0\xf4\x94\x57\xbc\xbb\x8c\xe1\x14\x68\x9d\xb4\x04\xdb\x57\x86\x61\x64\xb4\xf4\xbe\xc3\x07\x2d\x2c\xb8\x42\x7d\x7d\x85\x2f\xb5\x47\x66\x39\x4e\xa2\xd0\x88\xf1\xe6\x81\xc3\xcf\x20\xa6\xbb\x82\x07\xc0\x3b\x5f\xf1\x32\x3a\x26\x1f\xda\x34\xe4\xe4\xa0\x70\xb3\x3e\x88\x87\xcd\x0e\x47\x26\x7e\xa8\x9c\x7e\x1c\x57\x48\xa6\xc0\x44\xfc\x1f\x58\x49\x9c\x73\x0a\x54\xad\x12\xc9\x4a\xfe\xab\xc0\x93\xb6\x33\xca\x53\x7a\x44\xf0\xe8\xd2\x24\x22\x99\xfb\xac\xe8\x16\x69\xd7\xc4\xd3\xde\x05\x38\x4b\xdf\x87\xea\x2a\xd8\xff\x9c\xbc\x75\xf9\x7d\x38\x94\x2f\xa9\xe3\x3b\x4a\xd6\x4d\x94\x03\xfa\xce\x26\x39\x50\x7c\x55\x9b\x8d\x82\xe8\x6c\x35\x5e\x65\x2f\x17\x3f\x77\x52\x43\x62\x4f\xba\x64\x0a\x11\x5e\x43\x72\x15\x85\xc4\xc3\x13\x45\xf0\x0f\x34\x15\x32\x92\x37\x55\x04\x40\xc4\x17\x29\xe2\x32\xf8\x05\x6f\xe0\x63\xd2\xe0\x43\x6b\x40\xe0\x71\xe5\x7b\x22\x09\x73\xb7\x52\xb8\x5e\x1e\x99\x19\xaf\x86\xf8\x13\xea\xfd\xe5\xeb\x89\x87\xa2\x7e\x0b\x0f\x0e\xdc\xe0\x5d\x05\xcc\xdb\x7a\x20\xee\x31\xb6\x6b\xcc\xbc\x86\x47\x78\xa7\x42\xb4\x52\x51\xe3\x6f\x39\xa9\x48\x80\x0e\xb0\xfe\xde\x99\xf8\x28\x60\x9d\xda\x93\xca\xb7\xdb\xba\x48\xc3\x21\x6d\x83\x8a\x54\xe6\x8c\x9a\xd7\xbd\x1d\xdd\x18\xe7\xbb\x34\xfb\x61\x8a\x6a\x2a\xa8\xbc\x94\xfc\x99\xaf\x30\xde\x76\x1e\x4d\x14\xc6\xb6\x18\xc3\x2c\xb3\xe0\x89\x52\xf0\x3d\x1d\x3c\x28\xea\x1f\xdb\x3c\x4d\x7a\x49\x2a\xdd\x3b\x6e\x52\x3d\x13\xf1\x61\xd5\x95\x23\x4c\xc4\x7b\x2a\x6a\xc7\xae\x05\xf9\x63\x55\x6c\x7b\x98\x0e\x76\x97\x8f\x78\xd1\x25\x27\xce\x22\x0a\x97\x43\x48\x95\x3e\xaf\x68\x6e\x83\x16\x8c\x3d\x0c\xfc\x2d\xdd\xb2\x7c\xc5\x6b\x84\x27\xb9\x89\x1e\x55\xb2\x0b\xaf\x61\x94\x51\xaf\x98\xea\xf8\x64\xdc\x26\xb9\x16\xc8\x19\x9f\x51\x27\xc7\x0d\x22\x21\xc1\x89\x72\x41\x13\xcc\x6e\xea\xae\x00\xc8\x3c\x60\xde\x3f\x49\xfe\x8e\x08\x82\xf8\x48\xf8\x17\xd8\x68\x58\x6b\x3b\x37\x94\xb4\xce\x3d\x55\x10\xa0\xe4\x42\x96\xcf\x78\x27\xf6\x18\x1d\x45\x95\xd1\x10\x09\x07\x8f\xe0\xf8\x0f\xba\x95\xf2\x96\xf2\xf9\x46\x26\x0d\x13\x98\x6f\xd1\x01\xf0\xc5\x9b\x1b\xae\xac\x32\xb2\x26\xce\x77\xd3\x40\xd1\x2e\xf9\xf8\x53\x80\x26\xc3\x2c\x7c\x16\x43\x8d\xe3\xf0\xde\xc4\xcb\xe1\x1d\xc7\x2e\xc5\x39\x83\x64\x2e\xad\xe6\x2f\x7e\x9a\xd0\x6f\xd8\x7c\x7b\x37\x3c\xca\x30\x1f\xa6\xc9\x1a\x3a\x50\x1d\x81\xaf\xa2\x52\xd9\xee\x2e\xed\x5b\x6c\x0f\x22\x93\x0d\xd7\x55\xcf\xea\xa6\xee\x59\xd5\x0d\xce\x2f\x9b\xde\x4a\x96\x70\xf3\x95\x60\x62\xe9\x95\x04\x14\xeb\x87\x39\xb5\x3d\x13\x45\x19\x79\x55\x0e\xd8\xee\xe2\x8d\x33\x01\xd8\x1b\x1c\x11\xd1\xd2\xfe\x25\x47\x44\xb4\xdd\x41\x7b\x71\xfe\x60\x7b\x4d\x82\xd6\x46\xe5\x74\x45\x7f\xf7\xcc\xe8\x99\x19\x9a\x29\xf8\xc9\x37\x54\xb9\xef\x0a\x4d\x27\x5b\x3f\x3c\x37\x42\x08\x06\xbf\xe2\xbc\x7a\xb8\x53\xd7\xb5\xdc\xdf\x1e\xa7\xb6\x17\x66\xba\x6f\xf0\x92\xea\x1b\xac\x37\xf6\xee\x9f\x6d\x67\x6b\xe1\x00\x5a\x63\x38\xa2\xa1\xe9\x87\xd0\xf1\xbc\xce\xb8\x9c\xd0\x32\x31\x76\x3b\x59\x0d\x4d\x9f\x78\xd4\x3e\x1e\x95\x52\x30\xb2\xea\xa2\x5d\x4f\x33\x23\x0c\xa7\x3e\x8f\x73\x41\x71\xdd\xc2\x27\xe2\xff\xdf\xd0\x0e\xfa\x52\x3b\xb5\x5f\x2e\xc2\x54\x80\x62\xcc\xf3\x80\x03\x42\x48\x1f\x7c\x4e\xc1\xbe\xd2\x1b\x9a\x78\xd9\x66\xbb\x55\xab\xf0\x2e\x0a\x2f\x60\xca\x77\x6f\x94\xaf\x2d\x6e\x9b\x27\x4e\x04\xfa\x40\x34\x9f\x95\x7e\xde\xad\x40\xa9\x66\xd4\x9b\x26\xf6\xcf\x96\x93\xb1\x2a\x2a\x6c\x42\x20\xef\xbd\xfd\x7a\x7b\x78\xe9\xc3\xa5\x49\x6f\xc5\xe6\x7c\xc0\x3a\xe1\x91\xf2\x57\xf9\xa6\x02\xf9\xef\xdb\x34\x26\x41\x5c\xb8\x9e\xac\x2b\x2d\x69\x73\xf2\xee\xf8\x5f\x02\x9d\x5b\xf7\x9b\x3d\x2e\xb2\x29\x5f\xc0\x22\x7b\xb7\xc5\xc5\x31\x56\x59\xc4\xc1\x8a\xb9\x4c\x4d\xcc\x6d\x96\xc2\x80\xea\x8f\xad\x4d\x8d\xc5\x55\x9a\xca\x24\xb5\x6a\xe3\x19\x7a\x07\xa1\x1f\xa5\x39\xc0\xe7\x78\x18\xf9\x5f\x54\xfe\x14\xc4\x9d\xc2\xe8\xba\x7d\x78\xe5\x58\x1a\xad\x33\x3f\x19\xcc\xdf\x63\x1d\x2f\x70\x8c\x27\xaa\xe4\x59\x91\x8a\xbb\x37\xf1\xc2\x8d\x7d\x9b\xd9\x9e\x17\x6e\x5c\x72\xd4\x92\x3e\xa9\xff\xb1\x1a\x82\x7e\x22\x0d\x35\xd8\x2c\xe0\xff\x82\x73\x72\x23\x50\x44\xf7\x37\x26\x5e\xc7\xa7\xa9\xa3\xe6\x25\xe2\x5b\xb5\xe9\x34\xe5\xaa\x59\xfe\x40\x09\xa1\xbe\x86\x23\x46\xaa\x63\x34\xaf\xe8\x35\xf9\x2b\x4d\x02\x3e\xb6\x24\xf5\x52\x4e\xb4\x6c\x80\xd6\x8b\x4b\x6e\xfd\x37\xf4\x3c\x64\xc5\x32\xb5\x0b\xbc\x30\xeb\x55\x68\xbd\x22\x6d\x53\x73\xef\x20\x54\x6c\x69\x4c\xe5\xab\x08\xdb\xcf\x3b\xe4\x11\x71\x10\x3a\x54\x0d\xce\x70\x54\xa9\x34\x12\x1a\xa9\x8e\x4b\x0d\xc8\xcf\xd2\x67\xb4\xa3\x6e\x04\x58\x25\x9c\x7b\x1c\x0b\x7c\xed\x9c\x98\x7c\x98\x92\xd1\x72\x19\x70\x2c\x1c\xd1\x4d\xa7\xb9\x16\xb8\xc1\x93\x0a\x89\x99\x10\xbd\x10\x9c\x24\x4d\x9f\xc6\xd7\xaa\xc5\xb6\x8c\x71\xd3\x65\xda\xbd\xfb\xc5\x1a\x7e\x4b\xfd\xc8\xb7\x9a\x6a\xdf\xe3\x70\x34\xd6\x78\x2a\x50\xe1\x0a\x65\x4e\x83\x0e\x71\x32\x18\x94\x91\xc6\x32\x6a\x7c\xd2\x99\x4e\xc3\x27\x25\x0b\xef\xe3\xde\x0e\xbc\xbc\x47\x32\x32\xbd\xa1\x12\xfe\x62\x75\x17\xbe\x51\x49\x8c\x41\x92\x1a\x10\xa0\x3e\xcb\x91\x27\xc8\x90\xf8\x5a\xc9\xf7\x65\xb9\x49\xc7\x49\x18\xe7\x96\x3d\x3c\x6c\x96\x1f\xe9\x9d\xf3\x23\xc5\x95\x15\x27\xdc\xc4\x86\x34\x2a\xf2\x58\xae\xe9\xa3\x5c\xd5\xd2\x1f\x41\x2b\xd9\xf5\x81\xfa\xc6\x00\x60\x5c\xa4\x5c\xae\xd4\x02\xde\xab\x0d\xee\xdc\x3c\x35\xba\xd3\xc4\xe1\x4c\xf8\x50\x15\xad\x9b\xe0\xcb\xdc\x67\xc7\x58\x4f\x64\xed\xef\xd3\x64\xf3\xb5\xcf\xf1\xa5\xe5\x9f\xee\xf2\x8b\x69\xd7\x86\x4a\x91\x1f\xc7\xe3\xe3\x90\x00\xc9\x24\x79\x11\xbf\xc9\x92\x33\x0e\x50\xe3\x99\xf7\x4e\x35\x51\xb4\x94\xc6\x96\x20\x8f\x60\xba\x07\x08\xf0\x26\x19\x50\xa9\x8a\x62\xd8\xc5\x7a\xeb\x80\xa6\x97\xac\xed\xf1\x2c\x26\xe8\x0f\x70\x6d\x48\x0e\x35\x09\x6e\x3c\xe4\xe7\x76\x12\x5e\x81\xaf\x37\x54\xd4\x7e\x1b\xcb\xab\xa9\xa7\x93\x4c\xb4\xa8\x57\xaa\x20\xe4\x42\x03\x88\xbf\x37\x34\x51\x64\xcb\x03\x75\x4a\xc1\x0a\xb8\xef\x02\xa7\xeb\xed\x4a\x53\x91\x77\xfd\x32\xd3\x4b\x45\xa8\x49\xaa\xc3\x2d\xa5\xa6\xe5\x73\xee\xb9\x89\x67\x14\xd5\xca\xa9\x40\xf5\x43\xbd\xa3\x02\xb6\xbb\x2a\xb2\xb8\x4a\x75\x26\x01\xd8\x3c\xa6\x7a\xe6\x87\x16\xfe\x66\x63\xe5\xcd\xa7\x23\xd7\x4c\x94\xb7\x14\x7d\xc5\x11\xcd\xf9\x7d\xa4\x31\x33\x32\x0c\x99\xa9\x40\x6a\x0d\xf4\x09\x29\x42\x34\x14\xf7\xb3\x3c\x4d\xca\xb1\xcb\x5b\xd4\xd3\xe6\x78\x18\x15\xac\xf5\x29\x9d\xd2\x5f\x4e\x6d\x96\x8d\x2c\xb8\xfe\x00\x33\x63\xde\x19\x6c\x18\x56\x88\x14\x89\xfe\xc7\x74\x99\x73\x64\x77\x29\xa4\x06\xd7\x10\x45\xa3\x88\xbe\x43\x1a\x02\x7c\x67\x26\x67\xa7\x18\x49\x3b\xf1\x5d\xb5\xe7\x9b\x0e\x08\x1b\x2f\x9b\x65\xa1\x71\x12\x9c\x9d\x12\xf0\xab\xb7\x2d\x1c\x3a\xd4\x5e\x0e\x4d\x9c\x4b\xcf\xb3\xf4\xf1\x29\xd4\xe7\x55\x95\x5e\xed\xdb\xa8\x34\xc7\xeb\x54\xef\x67\xc2\x79\x3c\xba\x63\x9f\x77\x2d\x1e\xe7\x54\xe3\x31\x88\xc2\x1d\x25\xc0\x53\x8a\x2d\x37\xcb\x53\xb0\xeb\x6a\x6e\xff\xcd\x8a\x64\x8a\xaa\x80\xf5\x87\x36\xa3\xa4\xa7\x13\x98\x78\x23\xf0\x68\x89\x37\x2a\x38\x99\x34\x1c\x3f\x4c\xdf\x89\x9a\x0e\xb9\x31\x5b\x97\xb5\x1c\x3e\x67\xf3\x11\x47\xdc\x57\x9c\x63\x1f\x94\xb1\xe7\xd6\x65\x0c\xbe\x56\xdd\xc0\x2c\x43\x8a\x45\xe8\x20\x1a\x48\x16\x7a\x58\x54\x92\x88\x76\xf0\x65\xc5\x0e\xa3\x9a\x73\x7b\x49\x9e\x87\xd9\xb0\xa5\x38\xd7\x4f\x2a\x78\xb9\xf6\x34\x3d\x3e\x51\xa8\x23\x40\x91\x24\xa0\x3c\xef\x91\x98\x5e\xcf\x66\xd9\x43\xf4\xb6\x80\x40\x9f\x57\x80\x93\xd7\x54\xaf\xdc\x1d\xc5\xa1\x71\x0f\xc7\x02\x5c\xdc\x9b\x18\x1e\x87\x93\x71\x09\x90\x8b\x01\xf0\x8e\x0d\xb9\xf4\xb1\x8d\x63\x0b\xbf\xc1\x49\xee\xfa\x62\xd9\x66\xb0\x47\xb2\x1f\x16\xd1\x02\xcc\xaf\xe6\x97\xd3\x18\xda\x71\x92\xda\xac\xa5\xf5\xaf\x5b\xfb\x3d\x8d\x87\x9e\xec\x6e\xb2\x36\xad\x21\xd9\x95\xfa\x80\x57\x35\x78\x7d\xa2\x78\xb6\x5f\x0f\x2a\xc7\xf3\xb2\xcd\x41\x76\x88\x73\x14\x56\x13\xc3\xb5\xa5\x74\x03\x4e\xea\x6a\xe9\xa6\x42\x0a\x84\x71\x98\x87\x24\xd7\x44\xcb\x46\x70\xe7\xad\x45\x8f\x47\xf7\x0b\xbf\x67\x23\xdb\x15\xd2\xa0\x85\x05\x3e\x0b\x19\x21\xcc\x37\x81\xa7\xc7\x3b\x74\xe8\x57\x7c\x6b\xfa\x25\x9a\x48\x1c\x29\xc0\xce\xe2\xe0\xd8\xd3\xc1\x26\x06\x2e\xec\x38\x00\x5f\xf2\xde\xe5\x8f\x38\x72\xd2\xa5\xe7\xa5\x6e\xf6\x3a\xb9\xc7\xd2\xd1\x5d\x3e\x2b\x9c\x85\xbf\x20\x78\x21\xf2\xf0\xdf\x0c\x14\x19\xf7\x45\x3a\xf3\x00\x5b\x7c\x85\x88\xfd\xf0\xe1\xb3\x1a\x57\xfc\x7b\x30\x6e\x08\x20\x2f\x90\x60\x04\x72\xa7\x47\x11\x0b\xe1\x2c\x7a\x0c\x68\x01\x7c\x2f\xa0\x91\x58\x5f\xcc\x61\x0c\x7f\xed\x2e\x7c\x18\xd6\xd6\x09\xd4\xa1\xc9\x8a\x18\x48\x11\x5d\xaf\x75\xda\xec\x9f\x6d\x8f\x92\x98\x04\x30\x33\x69\x2e\x16\xc2\xec\x0a\x93\xb6\xea\xf2\x5e\x71\x5e\x33\x0a\xcf\xd7\x54\x12\x19\xa9\x5d\x16\xf3\x50\x21\xf8\x20\x49\x7b\xb6\x3f\x4d\x2f\x86\xd3\xf7\x9e\xaa\x84\x3d\xd1\xf1\x01\xdf\x14\x25\xd8\x84\x14\xf0\xa9\xfa\xee\xe9\xf5\xa7\xb5\xef\x71\x6a\xe2\xb7\x48\x4b\x55\x62\x79\x4f\x49\xa0\xd1\xb0\x0d\x07\x26\x8c\x04\x61\xc0\xa5\x4e\xcd\xb8\x86\xb9\x62\xf1\xaf\xc9\x53\x92\x29\xee\x8f\xc2\x38\xcb\x53\x5f\x41\x63\x2c\x26\x0d\x82\xe0\x32\x3f\x59\x31\x31\xd0\x84\x9f\xf2\x56\x0e\x3b\xcf\xb5\xb6\x95\xcf\x09\x70\xe0\xbd\xda\xf9\xfb\xe2\xfc\xc1\xb6\x09\xd3\x5e\x6a\x06\xb9\xee\xfd\xc6\x57\x48\x03\x95\xf7\x42\xfa\x36\x7b\xbc\x5c\x95\x58\xc6\x5b\x30\x55\xcc\x05\x4d\xab\x12\xff\x70\x41\xa5\x6a\x77\x6e\x38\x86\x91\x37\x9f\x02\xf8\x93\x51\x93\x13\xaf\xef\x8b\xdd\x4d\x47\xc8\x3f\xfb\xbb\x1b\xaa\x4d\xef\x1e\x80\x8e\xe2\xc3\xd0\xa2\x21\xcf\xf4\xb7\xff\xff\x50\x22\x96\x8e\x33\x4c\x9a\xd3\xde\x2b\x07\x17\x89\x9e\xdd\x58\xe2\x14\xfb\xff\x8f\x7f\x9b\x62\x62\x80\xe1\xef\x36\x95\x15\x13\x82\x26\xfa\x26\x25\x1a\x77\x69\x58\xf2\xa9\x9c\xac\x48\xc7\x69\x98\xd9\x56\x8d\xcd\x59\xd8\x08\x1a\x00\x4f\x83\x30\x1d\xc9\x29\xcf\x8d\x6a\x13\x15\xec\x1c\x6d\x0a\x03\x07\x49\x6a\x7b\x26\xcb\x77\x29\xee\xd2\x6f\xe1\x50\x10\xc0\x43\x79\x10\xbc\x4e\x63\x29\x94\xdd\xde\x03\xbc\x18\x28\xd8\xcd\x9b\x2a\x05\x3a\x4c\x8a\x34\xdb\xe5\x5b\x46\x4e\x2b\xe4\xde\x5b\x9a\x87\x60\xb3\x42\x38\xad\x4a\xef\xdc\x72\x25\xbd\xe8\x1e\x74\xd9\x0f\xb3\xbc\xf4\xd1\x66\x7c\x44\xf3\x9f\xf1\x9e\x08\x17\x4f\x10\x5f\x41\xe9\x06\x94\xfe\x9e\xa8\x79\x95\x3f\xcf\xff\x5e\x4b\x70\xbc\xb8\xf4\xb9\x76\x2f\x32\xe1\x88\x4d\x88\xc4\x83\xaa\xbd\xfd\x64\x0d\x78\xb3\xb0\x70\xa0\x6d\x5f\x19\xdb\x34\xb4\x71\x4f\x36\x22\x4c\xca\x15\x05\x8f\x67\xa8\x0f\xa2\x9d\x0f\x2b\x91\xc6\x33\xe3\x67\x78\xb6\x1c\xdd\xb5\x67\xb7\xfa\x50\x1d\x3b\x03\x6b\xf2\xa2\x8c\x5d\x77\x29\xff\xff\x5b\x13\xa5\xe0\x7d\x42\xe9\xc2\x5e\xd6\x2a\x84\xec\xba\xc2\x98\xff\x0e\x3d\x17\xf6\xea\x69\xa7\xd5\x96\x45\x66\x5d\x13\x14\x30\xcd\x9b\xc4\x46\x3e\xbd\x64\xbf\x5c\x90\x60\xb1\x12\xe4\xfa\x88\x01\x0c\x2c\xe1\x0a\xe4\xa9\xab\xe0\x96\x5f\x23\xe2\xae\xf5\xac\xe2\x52\xdb\xc4\x71\x52\x94\x83\xa7\xd5\x49\x7e\x4e\x56\x8c\xaf\x55\x46\x81\xfc\xc8\x64\xdd\xb2\x52\x23\x6a\x3c\xa8\x77\x3a\x26\x72\x27\x2e\x71\x6e\xf2\x88\x7f\xec\xb1\xa1\x14\x8c\xa8\xa2\xd1\xab\x8a\x5c\x9a\x67\x81\x0f\x6d\x0f\x3a\x79\x18\xab\x47\x3b\xaa\xfb\x16\xc5\x09\x74\x66\x3c\xb2\xe1\xcb\x29\x75\x32\xb9\xe7\xe6\xdb\xd6\xa4\x20\xc7\xc1\x9c\x9f\x09\x7c\x9f\xee\x19\xe5\xf8\x18\xbb\x1c\xf2\x7a\x13\xa9\x0b\x8f\xd7\x3a\xac\xda\x7d\x7b\x69\x98\x87\xbd\x0c\x02\xb3\x98\xee\x1b\x81\xaa\xc9\x9c\x52\xec\x6f\x47\x35\x89\xe3\xa9\x4a\x3e\xc7\x17\xfe\x92\x22\x8f\x2c\x0b\x57\xc2\xb6\xde\x0e\x54\x13\x0f\xb2\x0b\xd8\x77\x8f\x38\x9a\xfc\x62\x9c\x26\x15\xd8\xf0\x35\x15\x72\x5e\x6b\x14\xb6\x5b\x4e\x4d\x18\x57\x78\x2c\xb9\x8c\x20\xc0\xf0\xc7\x2b\x64\xe0\x21\x93\xf6\x55\x12\xd7\x7c\x53\x1b\xe7\xcf\xb7\x07\x26\x2d\x4f\x25\x27\x09\x09\x94\xb7\xd3\xd9\x75\x5d\x20\xbf\x57\x2b\xaf\x7a\xc8\x5c\x2a\xe4\x47\x70\x63\x2e\x63\xc9\xf2\x8d\xea\x53\x1c\x9b\x34\xcc\xd7\xa1\xe1\x28\xc4\x6b\x1e\x52\x78\x37\xf0\xf2\x8a\x57\x14\x7d\xdf\xbb\xc1\xa7\x42\xaf\x9a\xcc\x0c\x68\xa1\xed\x4f\xf9\xda\xe5\xa5\xc0\xbb\x11\xe0\x15\x10\x71\xed\x3a\x41\xdb\x52\x9b\x48\xdd\xb0\xfc\x31\x2e\x87\x35\xd1\xee\xd9\x49\xb5\xa5\xfe\x13\xfc\x0d\xf2\xbe\x7f\x4f\x13\xd8\x5d\x83\xfb\x86\x34\xe7\xe1\x4a\xdb\xf6\x4e\x51\x4c\xfd\x77\x44\x9a\x00\xdf\xe2\xaf\xab\x3a\xe6\x74\x68\x22\x8f\x7c\x98\x3c\x44\x18\x95\xdf\x0d\x3c\x9f\x19\x78\xab\xf1\x37\xaf\x6b\xf0\xfb\x65\x64\x79\x9c\x0a\xcc\x81\x7f\xfd\x9c\x97\x06\x7e\x71\x49\xf3\xca\xbe\xc4\x7e\xf2\xfb\xe0\xef\x86\x6b\xf3\x73\xf4\x3c\x48\xcf\x0b\xad\x5c\x64\x0c\x3e\x08\x7c\x8d\xe1\xfb\x74\xae\x60\x57\xfc\x25\xd0\x20\x42\x3b\x53\xfa\x11\x28\xa5\xfd\x36\x95\xab\x71\x42\x7d\x8d\xeb\x4f\xb8\xfb\x39\xcc\xb6\x03\x66\x7d\xf1\x45\x76\x78\xfe\x92\x62\xcc\x8f\x29\x99\x24\x31\x06\xd5\x51\x45\xd2\xba\xe5\xc8\xfe\x8f\x93\x57\xcc\x89\x02\x38\xd8\x98\xf5\x53\x00\x13\xc1\x06\xfd\x12\x5c\x3b\xc8\xe3\xbc\x55\x89\x78\x9e\x79\x59\x0e\x08\xc6\x8e\x4d\x54\x3d\x5c\x9b\x88\x30\x26\x5a\xb3\x96\x6a\xa7\xf8\x08\x21\x80\x90\x87\x3c\x56\xc9\xe6\x66\x90\x70\xa3\x0d\xf2\x0f\xe0\xbe\xa2\x8e\x7a\x1b\xbf\x80\x13\x98\x55\x1a\x85\x76\xd6\x2b\xed\xd5\x6b\x86\x0b\x0b\xed\xde\x30\xb4\x03\xae\xd8\x4b\xe1\xb9\x02\x19\xc2\x9b\xf0\x3f\x61\x38\xa4\x74\xea\xf7\xd2\x49\x95\x4f\x35\xdd\x34\x31\xfd\x87\x54\xa0\xb0\x83\xfb\x79\x24\xbf\xe2\x01\x6f\xff\x41\xb5\xf8\xbe\x05\xd3\xe1\xf4\x1d\x5d\x8c\x77\x54\x29\x40\x7d\x1b\xc7\x27\x92\xfe\x77\x83\xed\x5d\x12\xe5\xf1\xf4\x74\x46\xe2\x9d\xbe\xf6\x5c\x2e\x7a\x01\x3c\x36\x51\x4a\x8c\x23\xcd\xf7\x0a\x53\xf4\xb3\xc0\x23\x59\x7f\xe6\x88\x1d\x4d\x96\x15\xa3\x71\x19\x1a\x4e\x29\x19\x23\x24\x20\x10\x5f\xdd\x09\x3c\x9e\xd0\xb3\x90\x0f\x8d\x67\x51\x12\x6c\x36\xbd\x87\x40\xb8\x65\x9e\xd7\x52\xd3\x5b\x91\x83\x15\x67\x25\xa3\xe4\xf8\xa6\x01\x13\xf6\x52\xdb\x74\xfb\x61\x8f\x58\xd8\x5e\x90\x86\x9f\xdf\xc5\x60\xca\xfe\x56\x55\x65\xfc\x40\x69\x39\x90\x01\xba\xa1\xa8\xe7\x6e\x38\xef\xe2\x65\xbb\x96\x21\x6c\xc7\x56\x7e\x53\x55\xb2\x3f\xd6\x70\x96\x3d\x3c\xb7\x84\xbf\xff\xef\x9e\xe8\x3c\xea\x0a\x67\xa9\x8d\xb8\xff\x17\xce\x38\x48\x46\xc1\x18\x83\x61\x82\x8f\x76\x55\x9d\x71\x59\x18\xaf\x88\x26\xa6\x74\xfe\x78\x95\x2d\x24\xae\xb8\x8b\xa9\x96\xd0\x9e\x3f\xd8\xb6\x59\x1e\x8e\x4c\xce\xb4\x39\x4c\x3c\xa6\xd8\x25\xef\xa9\xd9\xa9\x77\x6f\x2f\x2c\x00\xc2\x11\xd9\x62\x04\x73\x2d\xd0\xc4\x96\x12\x5a\x51\xa9\xce\xd3\x2a\x4d\x31\x36\xd4\x1a\xa3\xa8\x37\xdf\xc0\xa1\xce\x37\xc1\x53\xae\x32\x91\xda\x71\x9e\xac\x84\xb1\xc9\xd0\x9e\x83\xc3\xfc\x97\x1a\x64\x79\x41\xe9\x7f\xef\xd9\xf0\x3d\xc2\x6f\x6a\x0d\xa1\xa7\x3a\xbe\x8d\x36\x32\x6b\x31\x8d\x1a\x33\xf2\x4c\x3c\x24\xf0\x5c\xe0\x69\x6a\xdf\xae\xa6\x66\x0c\x3e\xc3\x6e\x66\xa0\x92\x98\x5a\x7d\xf4\x6c\xf0\x2b\x2a\x47\x1c\xf7\x6c\x9c\x23\x3f\x02\x6e\x82\xc6\x64\xf1\x76\xbf\x51\x0e\xef\x2f\x17\x61\x8e\x9e\x74\xb8\x62\x6f\xa3\x2d\x0e\x08\xa3\xe9\x8e\x97\x87\xde\x59\x53\xa5\x5f\x5c\x6c\xbf\x9c\x84\xdc\xb5\x8f\x60\xff\xae\x62\x0b\xbd\x3b\x79\x38\x6c\x8f\x53\x3b\xf8\x67\xed\x7f\xb1\xcb\x15\x95\x3e\x7c\x1c\x95\x0a\x69\x9d\x29\x0f\x11\x7a\xc3\xf0\xef\x53\xd8\x8e\xe1\xba\xaf\xa1\x75\xa7\x34\xbf\xf1\xce\x0d\xa7\xe0\x65\xd2\x98\x70\xeb\x2a\x2b\x2f\x79\x1d\x77\xac\x2b\xfd\x35\xd5\x8e\x74\x5a\xcf\xda\x85\x9a\x63\x83\xb4\xe4\xaa\x4d\xf3\xb0\xcb\xcc\xcd\xdc\xd3\xaa\xa4\xb3\x8f\x35\xb1\x1c\x15\x79\x18\x85\x39\x92\x7a\x02\xdc\x50\x7c\xb1\x75\x62\x96\x72\x89\x87\x79\x6f\x28\x90\x00\xf8\xfc\x4c\x2e\xce\x37\x8a\x73\x6d\x39\x0d\x63\xbb\x9a\xad\x40\x76\x53\x72\x00\x15\x16\x15\xc7\x10\x43\xaa\x86\xaa\xfd\xe5\x84\x1a\x80\x13\x8d\x24\x36\xb4\x96\xfa\xac\x0d\xc3\x74\x64\x41\x85\x9b\x6c\xfb\xa7\x7e\x95\xda\xc4\xc2\xd4\x19\x6b\x91\x74\xf4\xab\xf8\xb8\x46\x5a\x47\xa6\xdf\xaa\x25\x3d\xf8\x46\xef\xdd\xc8\xf4\x6c\x7f\xda\xe3\x92\xd0\x71\x80\xb5\xf1\x67\x13\xcf\x53\xc7\x27\xb9\xf0\xec\x8a\xad\x5b\x09\xbd\xd1\x96\x94\xb6\xa2\x27\xa9\x77\xc2\xec\x9f\xc5\xb9\x3b\xe5\xe1\x93\x00\x27\xc3\xd8\x9e\x52\x74\xcc\x6f\x35\x84\x60\xf3\x65\x54\xd5\x4b\xc3\x2e\x93\x4a\x55\xd2\x1b\x7c\x53\x1b\x71\xd2\x40\x18\x99\xd2\x9f\x6d\x79\xf8\xb8\x96\xc0\xd2\xe8\x9b\xd4\x8e\x9f\x69\x29\x6e\xcd\xf3\xba\xc4\x73\x5e\xf9\x30\xa3\x04\xcd\xde\x1e\x89\xb0\xb3\xe3\xb5\x2d\x77\x6e\x3c\xee\x10\x99\xc4\xa5\x28\x11\x37\x3c\x47\x14\x54\x30\xdb\x1c\x03\x61\x33\x5f\x77\x9e\x4f\x91\x15\x10\xda\x77\xbd\xac\xe7\x03\x95\xbb\x3a\x5f\x09\xcd\x93\x22\x7b\xaa\xb4\x2d\x34\x04\x7f\x87\xb6\xfe\xb3\x6c\x5b\x8e\x93\x8f\xab\x18\x15\x05\x6a\xb3\xa3\xa3\x4c\xdd\x25\x82\xb6\xe1\x81\x10\x01\xd2\xc8\xac\xfd\x4d\xc5\x0c\x30\xb3\x41\x9e\x1f\xbe\xea\xca\xa4\xd2\x71\x42\x2e\x2e\x9c\xe2\xa7\xc8\xbe\x90\x15\xb1\x4f\x80\x56\x1f\x51\xe9\x49\xa4\x7f\x81\xe3\xfa\x1b\x1b\x2a\x84\x7f\x5c\x91\xe9\x1d\x9b\x78\x56\x81\x5b\x18\x1a\xa1\xd6\x22\xa7\x9a\x7f\x3e\x50\xd6\xed\x86\x2a\x5d\xe4\x36\x1d\x85\xb1\xe1\x1d\x89\x73\x1b\xd5\x33\xbe\xde\x8e\xf2\x3e\x74\xa8\xfd\xc2\xec\xb3\xbb\x7d\x5c\xfe\x0e\x7e\x14\x49\x2e\xd6\x12\x90\x66\xd6\x72\x60\x90\xe3\xbc\x4d\xc3\x5a\xc9\x40\xc0\x69\xba\xa6\xa0\x25\x17\x55\xfc\x9c\x27\xe3\xb0\x07\x38\x86\x20\x80\xcb\x97\x16\x9c\x6f\xbd\xfd\xfd\xa5\x76\x66\xe3\xcc\xc2\xe1\x72\x20\x28\x17\x72\x83\x06\x41\xce\x20\x55\xd6\x4b\x8a\x34\x7f\xa4\xfc\x6a\x20\x99\x7f\x0e\xaf\x56\x3a\xf0\x14\x75\xf0\x69\x0a\xa3\x58\x01\x2b\xa8\xb4\xc7\xd0\xdc\x38\xa1\x1d\x95\x0f\xa0\x17\x85\x4d\x78\xa8\xe3\x56\xdc\xff\x7e\x52\xb5\xc3\x7f\x6f\xe2\xb1\x07\x0f\x6f\x54\xc2\x92\x4f\x79\x6e\xb4\xd1\x38\x4d\x56\x49\xa0\x82\x23\x6e\xd7\x48\xe7\xac\xc1\x59\xc5\x70\xb3\x1c\xae\xda\xf8\x21\xaf\xd0\x76\x6c\xe2\x81\xa1\xb7\xf0\x52\x92\x9f\x53\x5d\x37\xa7\xe8\x0d\x11\xa0\xed\xec\xd0\xf2\x91\x7c\x0b\x2d\x65\x6c\x84\xbf\x0a\x14\xe9\x68\xbd\x20\x49\xf6\x63\x39\x89\x06\x64\x3d\xe0\xa6\x20\x75\xcd\xd7\x4a\x76\x70\x10\xe6\xaf\x2e\xdb\xd4\x44\x7d\x0e\x84\x2a\x9b\x45\x96\x6e\x9d\x17\x65\xe9\x40\xfb\xef\x7e\xe9\x5f\x2f\x7d\xe9\x0b\x8b\xa8\xf7\x88\x61\xf3\xe8\x35\x14\x15\x91\x29\xbe\x49\x21\xa1\xb4\x66\xfb\xa9\x4f\xf2\xa1\x4d\x3f\xe3\x75\x81\x5f\xe7\x18\x06\x10\x00\x56\x00\x73\xad\x5b\x2e\x20\xbc\x0a\x57\xc4\x0d\x46\x39\x4c\x8e\x38\xaf\x5c\xaf\x70\x48\xef\x4c\x3c\x5c\xe7\x7d\x85\xe9\x5c\x7f\x7c\xa3\xdc\x0a\x52\x51\xa4\x0d\x2f\x30\x52\x7a\x19\x3c\xcb\xae\x0d\xd5\x44\xfb\x30\x9c\x13\x84\xfe\xbb\x61\x88\x10\x90\xde\xd6\x7c\xcb\xa7\x29\x28\x46\x5e\xe4\x94\x4e\x84\xed\xe8\x78\xe2\xe2\x1d\x1d\x32\x3e\xd8\xa2\xef\x93\xf5\x70\xf1\xa0\x27\xd8\x7b\x9f\x62\x75\xa7\xed\xbe\x7f\xc9\xc9\x1f\xfa\x78\xa7\x5e\x8f\xdf\x3f\xdb\xce\x7a\x43\xdb\x2f\xa4\x7b\x13\x67\xd3\xcd\x89\x92\x1a\xbe\x59\x69\x0c\x4d\x13\x3b\x55\x46\xdf\x78\x1b\x9c\xa7\x08\xff\xd0\xec\x07\x1b\x73\xdc\x81\x6a\xc7\x24\x8e\x50\x7e\x35\xbc\xf6\x8f\x55\x40\x5e\xd7\x98\x58\xda\xbf\xd4\x1e\xa7\x61\xcc\x02\x3a\x4b\x9e\xcc\xc5\xc3\x00\xdf\x50\xd0\xc6\x41\x6a\xe2\x5e\x98\xf5\x12\x60\x2c\x85\xdc\x58\x93\xc6\x1d\xd3\xb9\x68\xc0\x85\xd1\x87\xc0\xea\x0b\xd2\x30\xe5\xf9\x98\x6d\x6a\x76\xe9\xf2\xc2\x2f\xe8\x43\xdc\xc3\x87\x36\x35\x94\x3d\xae\x4f\x54\x77\x34\x38\x13\xb7\x8e\x6b\x4a\xf1\xeb\xba\x66\x95\xda\xf8\x55\x78\x74\x88\x59\xae\xa9\x6a\xfd\x35\x27\x6d\x32\x4e\x93\x61\xd8\x0d\x1d\x75\x34\xea\x8f\x27\x74\xd3\xe9\x89\x86\x60\xf7\x25\x82\x3b\xd0\xc1\xd0\xd2\xe4\xe3\x8a\x2e\x7f\xfb\xbe\xdf\x3f\x5b\x3a\x03\x16\xda\x55\x2f\xb9\x66\x0f\x6f\xf4\xea\x0c\x85\x20\x1f\x48\x73\x57\xb2\x63\x1d\xe0\xc9\xf6\x4e\x2a\x11\x51\xd8\xee\x11\xcf\xcd\x51\x77\x7f\xd6\x33\x63\xe7\xea\xb9\xae\x88\x45\x4f\x58\xdc\xd0\xb7\xd5\xb7\xe0\x94\x11\x7f\x0c\xa3\x7e\x37\x50\xf3\x71\x57\x57\xca\xf2\xdc\x96\x11\x7d\xbc\x3c\xad\x92\x88\x38\xfa\x9d\x23\xef\xba\x3b\x31\x52\xd2\x6a\xee\x4f\xdb\x9e\x89\xf3\x24\x36\x11\xe5\x66\x81\x4e\xbc\xa8\x73\xa6\xa7\x26\x9a\x6d\xee\xf5\x06\x46\xa8\x25\xf7\x1d\x34\x31\x4d\xfa\x41\x1e\xa8\x63\xa2\x88\x2b\xf9\xac\x08\x17\xf8\x0a\xe4\x77\x14\x19\x6c\x31\x48\xb2\xa9\xca\x16\xf5\xd5\x40\x16\x18\x94\x1c\x66\x03\xfc\x24\x0f\xa3\x1c\x69\x7b\x51\x6e\xbc\x8e\x13\xc2\xc9\xe8\x78\xf9\xb2\xa3\x0a\x8c\x63\x4b\x97\x10\x72\x3d\x94\x98\x17\xc5\x72\x32\x4f\x5a\xca\x5c\xe4\x9c\x95\x2e\xcb\x89\x5a\x70\x74\xe8\x50\x3b\xb2\xcb\x61\x16\x79\x19\x1f\x07\x6f\xf1\x61\xda\xb9\x06\x2f\xb9\x5c\x0b\x23\xa3\x80\x99\xc8\x82\x82\x4a\x81\xaf\x1b\x08\x08\x96\xda\x03\x5b\x20\x6c\x40\x29\x88\x67\x92\x6f\x6a\xb6\x68\x61\xa1\xdd\x0d\xd3\x7c\xd8\x37\x7a\x4a\x98\x2d\x9d\x6f\xb4\x30\x49\xf9\x44\x7d\x93\x5b\xa4\xdc\x1c\x6d\x81\xe7\x7a\x38\xaf\xe8\xd4\x4f\x2b\xd2\xda\x3b\x74\xdc\xa1\x92\x70\x3a\x78\xc2\xf9\xd5\xe3\x71\x44\x0e\x44\x4b\xf7\xa8\xb4\x1c\x9b\xd4\xe9\xc6\x24\x3f\x44\x33\x5a\x5a\x69\x20\xd0\xe0\x24\x05\x31\x0b\xbb\x66\xca\x43\x2c\x2f\xaa\x44\xd0\x39\x0d\x23\xd5\x40\xc9\x91\x89\xcd\x32\x3d\xd4\x63\x8a\x80\xf1\xcc\x44\xa3\x20\x0e\x2b\x45\xa5\x4b\xba\xf7\xe0\xc8\xa4\xd2\x8c\x4d\x3f\x01\x97\xea\x1a\xce\x3e\xd7\xcc\xe8\x90\x8a\x44\x0e\x2f\x1d\x50\x68\x9c\x92\x38\x82\x66\xde\x31\x84\x2c\x2c\x78\x49\x9a\x72\xd5\xe1\x51\xae\xd3\x91\x24\x3c\x31\x0f\x12\x86\xe8\xa5\x66\x6d\x90\xa4\xa8\x03\x88\x12\xa4\x26\xb3\x50\x59\xb1\x9b\x4e\xb1\xd3\x27\x4c\x84\xcc\x57\xc9\x66\x08\x6c\x69\x4b\x73\x56\xd6\xba\x16\x48\x38\x6b\x6c\x52\xc9\xf0\x61\x22\x7e\xa8\xf8\x80\x7e\xa8\x90\x60\x2f\x27\x45\x1a\x9b\x08\x08\x5e\x27\x96\xed\x4e\xa6\x6b\xaa\xad\x38\x1b\x26\x39\xca\x82\x82\x8a\xd5\x10\x59\xfa\x10\xb3\x6d\xd2\x7a\x12\xe6\x4d\x25\x0f\x13\x67\x45\x14\xc6\x19\xa5\x13\x99\x1b\x83\x92\xb5\xc2\x93\xd1\x40\xdb\xd2\x4f\x7a\x2b\xf4\x1a\xb0\x6b\x3b\x36\xbc\x8d\xdb\xd1\xa9\xcb\xb3\xb4\x93\xa8\x6f\xd3\x96\x02\xc8\x9e\x54\x64\x87\x27\x55\xee\xd0\xf4\xfb\x21\x21\x97\x9d\xab\x01\x52\x0f\xa1\x55\xa8\x23\xcc\xe7\xdb\xc9\x78\x9c\x64\x96\x54\x39\xb8\xc3\x0c\x0c\x19\x4c\xfe\x84\x37\x46\x40\x0b\x30\xcc\x7b\x8d\xbb\x29\x4f\xc6\x63\x1c\x38\xf3\x9c\x35\xc0\x0e\xe4\xeb\x26\x76\x9e\xa1\x09\x99\x92\x1e\x7b\xe9\xa6\x0a\xce\x6e\xaa\x1c\x06\x91\x85\xd1\x22\x76\x52\x4d\x8b\x52\x42\x7c\xbf\x29\xb1\xb0\x96\xa4\x2b\x9c\x6a\x16\xa6\x46\x7a\x17\xd1\xbf\x6e\x4a\x99\x27\x2b\x38\x26\x00\x79\xc6\xaa\x66\x09\x68\xd8\x31\xf9\x87\x26\x2a\x43\x33\x18\x10\x9b\x52\x4b\x91\xb0\x7e\x4d\x9f\x2e\x5f\x53\x35\xf1\xb1\x4d\xc7\x36\x2f\x4c\x34\xa5\x40\x96\xc8\x06\x8b\xa8\x16\x7d\x52\xba\xc8\x94\x4a\x7a\x12\xe7\xa6\xe7\xc4\x18\x80\xf1\xbb\x01\xa8\x2e\xdf\xd4\x90\x97\xf3\x07\xdb\x7d\x3b\x28\xc3\x47\xfa\x0c\xc2\xaf\xeb\xba\x81\xf4\xba\xea\xac\xcc\x86\x26\x1d\x47\xeb\x7b\xe8\xc9\xe0\xa0\xb3\x94\x06\x1e\xed\xc7\x81\xea\x22\xb8\x40\x35\x28\x07\x41\xdf\x2f\x02\xd3\xdf\xa6\x55\x24\xb5\x48\xef\xac\x5c\x23\x1b\xc3\x9f\xa5\x2c\x83\xa0\xf7\x54\x3c\x70\x2b\xf8\xb4\x2a\x3d\xa6\x76\x14\xe6\xe5\x0b\x33\xdd\x20\xf3\x34\x29\x36\x84\xb3\x95\x74\x6e\x91\x9a\x19\x0a\x3b\x84\x6b\xc1\x17\x84\x4f\xe8\xc4\xd5\x7f\x08\x14\x7a\x52\x20\x32\x38\x10\x4f\x78\x0a\x96\x34\x19\x1b\x6e\xf0\x85\x2d\xbd\xac\x92\xad\x97\x55\x11\x98\x10\xfa\xb6\xbf\xdb\xeb\x76\x5e\x80\x05\x77\xa4\x60\x8e\xa4\xef\x54\xa0\x0a\xe7\xb7\x27\x5e\x6b\xee\xcc\x44\xe5\xdb\x39\xf6\xe1\xef\x0a\x34\x51\x5b\x16\x59\xd3\xaf\x26\x2f\x3f\x52\x22\x32\x1f\x35\x79\x92\xd4\x93\xd3\x4b\xc3\x71\x8e\x7c\x35\x5c\xb9\x37\x35\x19\xfa\x9b\xaa\x68\x3c\x32\xe9\x8a\xcd\x1f\x2f\x1f\x1a\x4f\xf0\xf5\x89\xe7\x13\xf8\x7a\xe0\xc9\x04\x7f\x8f\xce\xe3\x8a\xa2\x29\xce\xb9\x47\x90\x77\xc2\xcb\x3c\x0a\x3c\x12\x7b\xc0\xf0\x75\x84\xf8\x41\x89\x06\xfc\x21\x23\x32\xf0\x33\x57\x27\xde\xfd\x60\x16\x39\x17\x89\xfa\x94\xc4\x75\xf2\x52\xa5\x71\x84\x5e\x07\xd6\x0b\x21\x2a\x82\xa7\x47\x3b\x3e\x7b\xd0\x35\x69\xba\x0e\x09\x22\x21\xd8\xd6\xe0\x62\x74\x52\x08\xdd\xb6\xea\xe6\x3e\x59\x11\xef\xe8\x19\x69\xbe\x42\xb8\x78\x9e\x56\x36\x5f\xd7\x2c\xd2\xa1\x43\xed\xb5\xa1\x35\xf9\x14\x55\x5b\xb9\xc2\x3a\x29\xf7\x0e\x72\x39\x97\x55\xa8\x75\x57\x41\xca\x4c\x8a\x3c\x87\x64\x5c\xbc\x75\xfc\xab\x40\xb1\xac\x31\x50\x18\x0f\xfd\x50\xc7\x37\x45\x9f\xc1\xe8\xc2\x19\x67\x26\x02\xc9\x12\x95\x73\x28\xc1\x5d\x43\x95\x21\x2f\xba\xc2\xdc\xc5\xf9\xfb\x40\xe7\xf2\xbd\x1f\xde\x0d\xd3\x18\xe7\x2c\x7e\x86\x01\xa8\x7c\x13\x3c\x88\x83\xbd\x5b\x64\x61\x6c\xb3\x4c\x7e\x04\xab\xe6\xa2\xee\xf5\xbf\x58\x3b\x66\x3e\x5f\x1e\xb6\x61\x96\xcb\x31\x83\x75\xc7\x88\x12\xbe\x69\x40\x1f\x1c\x20\x91\xc4\x54\xd1\xea\x71\x79\x43\xc4\x7e\xfc\x88\xff\xe3\x2e\xfc\x75\x61\x73\x6b\x39\x7e\xdf\xd7\x55\x5a\xeb\xac\xde\xa9\x5b\x4d\x2c\x43\xe3\x34\x5c\x25\x57\xc5\x63\xe5\x2b\xc9\x8c\xda\x09\xb4\x6f\xb1\x3d\x4e\xc6\xf4\x88\x18\x3a\x48\xcc\xf1\xb5\x52\x88\xef\x99\xcc\x66\x8f\x78\xd6\xc7\x93\xf0\xee\x80\xe1\xfd\x39\x91\xc1\xc0\x52\x43\x5f\x81\xc1\xd5\x28\x29\x20\xf1\xb7\x93\x50\x40\x48\xf1\x5c\xa4\xed\xe3\x10\xd8\x0e\xd8\x78\x4a\xb3\x3c\x6d\x02\xe3\x8a\x08\xff\x18\x32\xb7\x7c\x83\x95\x27\x86\xbb\x1e\x6b\x2f\x22\xbb\x37\x66\x1d\x2d\x58\xec\x53\x64\x0d\xf9\xba\x42\xb6\x66\x4d\x6e\xf7\x56\x61\x03\x7e\x06\xa6\x37\xe8\x97\x59\x8e\x1f\xae\xa3\x0b\x4f\x5d\x47\xcb\x45\x3a\x57\x90\x5a\x99\x52\x0c\xcb\xdc\x76\x87\xd8\xeb\xc6\xf6\x3e\xb0\x03\x9a\x6d\x69\xc9\xe1\x30\x1a\x14\x2f\x32\xb0\xe7\xf8\x50\xe5\x5d\xd5\x39\xfb\xae\x82\x00\x8c\x53\x3b\xb0\x29\x91\x2f\xb0\xe6\x10\xfd\x21\xda\x59\xef\xe0\xf1\xf1\x0f\xa0\x31\x42\x44\x79\xa5\x4e\x61\x7c\xa0\x7d\xe8\x50\x4b\xc1\x1a\xcf\xaa\x0a\xf0\x59\x57\x7f\x19\x11\xf6\x9e\xfc\x72\xc9\x9e\xf9\x98\xfd\x14\x5c\x04\x49\xec\xf8\x73\xab\x17\x46\xd4\xac\x5f\x8e\x13\x8e\xa7\x1b\xba\x91\xab\xee\x4d\x94\x9e\xd2\xd0\x9a\xbe\xb8\x3a\x40\x0d\x82\x14\x97\xaf\xd5\xd7\xaf\xda\x74\x94\x30\x59\xa2\x73\x19\x5c\xde\x5c\xcb\x19\x8c\x4d\x9a\x0b\x3e\x0f\x9b\x0f\x0d\x01\x92\xa2\x54\x7c\x1c\xe7\x15\x05\x93\xc6\xf8\xa5\x36\xb3\xe9\xaa\x25\xee\x76\x44\x8e\x3f\x43\x36\x93\x6f\x5c\xb8\x68\x8b\x34\xc1\x09\x37\xe5\xa7\x8e\xdf\x1b\xcb\xe0\x36\x9f\x09\x30\xbc\x7f\x5d\x33\x44\x4b\xfb\x97\xda\x5d\x1b\x25\xd2\xec\xc0\xbd\x36\x0a\x45\x70\xb6\x81\x3c\x72\xa9\x74\xc4\x8a\xb8\x97\xa3\xb0\x8e\x6a\xf4\x51\xac\x04\xd1\xdf\xf6\x39\x81\x5b\x9e\x82\xdb\xa4\xa6\x1f\x66\x96\x29\x4a\x04\x90\x51\xe9\xc9\xf2\x9c\x1c\x97\x14\xcd\xd8\xd0\x9a\xd5\x90\x3d\x27\xc6\x53\xd3\xe0\x09\xb6\xfa\x41\xf0\x32\x13\xaf\xaf\x99\xf5\xa9\x8a\x3c\xb3\xa3\xda\x39\xa7\x71\xd3\x47\x54\x93\xbc\x35\x69\x14\xda\x74\x97\xa2\x1f\xbc\xa0\xfa\x32\x3e\xd4\xe0\xcc\x6a\x23\x78\x4b\x69\x3e\x90\xe1\x11\xbb\xb7\x7d\x10\xe7\xe6\xda\x59\x32\xb2\x6b\x43\x93\xd3\x3c\xc3\x45\x86\xef\xc9\xd7\x35\xf7\x47\x5e\xca\xf6\xc3\x8c\xb3\x27\xd8\x21\xcc\x2c\xc3\x37\xd5\xee\x9c\x7c\xf8\x09\x15\x70\x5c\x83\xcf\x86\x5f\x78\x3b\xd0\x68\x34\x00\x5f\x90\x6d\xbc\x07\x43\x09\x07\xe4\x9a\xb6\x8d\x80\x77\xa1\xc9\xfa\x78\xe0\x45\x70\x58\x3d\xc6\x09\xfe\x3b\x4e\x89\x0b\x8a\x1f\xf1\x06\xf0\x50\xfc\xeb\xc8\x64\xf3\x6f\xe0\x0d\xe0\x51\x5c\x55\x7a\x2e\xb7\x1c\xc1\x8a\x7d\x25\xe9\x17\x6c\xb0\x90\xc1\x02\x25\x39\x5f\x37\x49\x3f\xb3\x36\x59\xcb\x63\xfa\x7e\xae\xb8\x79\x34\xb0\xb5\xdc\x49\xdd\x24\xee\x57\x54\x8e\x51\xb7\xe1\xeb\xa6\xef\x4f\x6d\x6c\xd7\xb8\xd6\x2c\xa4\x35\x95\xe2\x5e\xcb\x51\xd2\x5e\xd0\x0a\x51\x97\x02\x7f\x0c\xae\x5b\x93\x66\x4f\x28\xaf\xf0\xe1\x4e\x79\xf4\x89\xa4\x28\x8d\x91\xac\x34\x9a\x3b\xa4\x59\xef\x04\xca\xe3\x9d\xa6\x5e\x7e\x8c\xf1\xff\x3b\x51\xea\x4f\x2c\x86\x8c\x9c\xc6\x57\x10\xf1\xe0\xf3\x10\x37\x45\xf1\xe6\x91\x8e\x22\x86\xd9\x9a\x6c\x23\x00\xf3\x63\xa7\x09\xb3\xcf\x93\x1f\x0d\xac\x17\x08\xa7\xb0\x15\x41\xd3\x0f\xe6\xb8\x26\x87\x62\xbe\xdd\xf5\xca\x95\x78\xc8\x23\xf8\x5e\xbe\xa9\x14\x1e\x92\xb5\xf8\x49\x95\x59\xd9\x81\xc6\x4e\xe9\x44\xf1\x69\x0c\x94\x24\x98\xff\x1e\x23\x03\x0f\xff\x7e\xa0\x08\x3c\xb8\x76\xc2\x32\x39\xd8\x9f\xa2\xbf\x44\xf6\x55\x96\x9f\x6a\x91\x7b\x93\xde\x13\x11\x73\x8b\xf8\xaa\x9d\x30\x5b\xb9\x43\xe0\x7c\xbc\x45\x7a\x20\xae\x37\x6f\xff\x2c\x07\x60\x53\x1d\xef\xb9\xcc\x6c\x94\x01\x86\x30\x3e\x2b\x88\xfb\x05\xd5\xa7\x97\xd9\x5e\x4a\x9d\x34\x60\xaf\x96\x62\xe0\x31\xd5\xfb\x79\x01\xcf\xcd\xff\x10\x78\xf4\x5d\x3d\x73\xbf\x6f\xd1\x37\xbd\xf9\x46\xe2\x0b\x41\x05\xbf\x52\xa9\xb8\xe7\xbd\xdd\xb4\x46\x70\x3e\xfd\x27\xc5\x79\x77\x35\xf0\xd5\xd7\xff\xa4\xbf\xe1\x35\xda\xac\x78\x95\x37\x74\xaf\xed\x6b\x81\x77\x53\xeb\x32\x19\x2f\xcc\x3e\xdb\xee\xa5\x45\x2f\x94\xe4\x81\x6c\x13\xdf\x23\xf0\xc7\x13\xdd\x0a\xe7\x73\x62\xe1\x72\xdf\x44\xc9\x60\xf0\x60\x42\x51\x25\x10\x60\x4d\x0c\xc0\xbe\xf0\x6b\xd3\xe2\xe0\x1b\x8a\xff\x80\x6d\xc0\xb4\x61\x3b\x81\xda\x9f\xff\xbf\x72\x3e\xae\xd4\x52\x3f\x73\x73\x4c\x75\xac\x78\x5f\x15\xf3\x84\xe7\x55\x5c\x33\xe1\xaa\x4d\x11\x36\x39\x53\xef\x9c\xa8\xf3\x8a\xda\xf4\x47\xb5\x33\x7a\xdf\x62\x7b\x98\x44\xfd\x62\xcc\xc6\x8f\x59\xde\x02\x6f\x5c\xae\xd7\x52\x73\x2f\xcc\xbe\xd4\x4e\x8a\x7c\xc6\x83\xf4\x76\x6d\x94\x8b\x97\x36\xec\xef\x3c\x41\x7e\x9a\x80\x10\x75\x62\xa1\x9c\x64\xc1\x1c\x3e\x90\x19\xc9\x64\x99\x8d\x97\x39\x0e\x81\x09\xb9\xa6\x65\xf2\xae\x35\x95\xf8\x3e\xd7\xee\x96\x5e\xf1\xb0\xa5\x44\xbb\x31\xdb\x7c\xed\x7a\x16\xd7\x93\xa2\x45\x30\x4f\xac\xf1\x1b\x81\x6a\x89\xbe\x31\xd9\xeb\xc1\xfb\x6b\xad\x32\xf2\x84\x87\xbc\xa5\x9a\x10\xb6\x6a\xf3\xb4\x6f\xb1\x1d\xdb\xb5\x68\x7d\x4a\x01\x28\x3e\x9e\x78\x7c\xda\x5d\x8a\xfe\xa5\xeb\xab\xa9\xd2\x96\xda\xbc\x48\x1d\x19\x3f\x10\xab\x28\x98\xf3\xb5\xa2\x19\x1e\x25\x71\x98\x27\xc4\x73\x50\xfe\x01\x87\xf1\x9a\x91\x44\xe7\xc1\xcf\xea\xac\xe7\x28\xb6\x59\xbe\x8e\x14\x21\xb7\x59\xc1\x9c\x49\xcf\x55\x03\xed\x4a\x6a\x46\x63\xc3\xbe\xa9\x93\xae\xf2\x7a\x8d\x0d\x14\x80\xf3\xed\xa7\x9f\x7e\xc4\x67\xad\x8e\x4d\x94\x16\xe1\x39\x9c\x12\x5e\xbf\x69\x96\x17\xca\x61\x5a\x1c\xc8\x33\x31\xa5\x13\x2a\x60\xad\x4e\xeb\x85\x59\x66\x22\x97\x86\x97\x72\x38\x31\x30\x3f\x44\x58\x87\x98\xfe\x0d\x05\x30\x41\x29\x14\x16\xe5\x86\xef\x01\x49\x7b\x43\x89\x8a\x51\x49\xff\x25\x59\x1e\xbe\x6e\x6a\xe7\xea\x5b\x83\xe6\x4e\x2c\xf4\x29\x1c\x12\x7c\x53\x4b\x42\x1f\x7c\xbe\x1d\x85\xcb\xc3\x7c\x4a\x8b\xba\xf8\xa9\xb9\xa7\x8a\x2d\xdf\x6d\x10\x18\x9f\x6f\x27\x71\x9e\x4c\x97\x83\x87\x02\xc7\x77\x01\x49\x96\x9e\x4f\x9f\x49\xb9\x42\xe3\x85\x53\x6d\x67\x47\x9b\x59\x1b\xf5\x1f\x57\x94\xdd\x2c\xd4\xe9\xf8\xc0\x17\x16\x04\x33\x77\x06\x07\x96\x28\xdb\xb5\x9e\x9b\xe7\x1c\x0e\x84\x2d\xf1\xdd\xb7\x26\xbe\xa1\xfa\xd6\x44\x79\xa6\xd2\x17\x84\x0a\xfa\xd5\x40\x73\xb3\xd2\x9a\x12\x18\x78\xcb\x09\xe2\x3c\xd4\x51\xfd\x81\x67\xc9\xb2\x6b\x19\x2d\x11\x03\xa0\xd9\x81\xe9\xba\xaf\x60\x66\x5d\xd3\x5b\xd9\xa3\x9c\xba\xd3\x81\xd2\xae\x44\x9a\x54\x30\x00\xbe\x5e\xfc\x3f\xd3\xbe\xc0\x12\xbb\x49\xe7\x28\x96\x0a\x68\x4e\x5d\x8f\xf0\x3e\xdf\x88\xae\x14\xa6\x00\x88\x17\x37\xc2\x11\x1a\x46\xd6\xa4\xd4\x2f\xa9\x14\x0d\x61\xe7\x60\x63\xef\x05\xaa\xfb\x70\x53\x41\x5d\xc6\x49\x96\x53\x40\xd5\x27\xa7\x5c\x9c\xa8\xf2\x49\xf8\xba\xe3\x53\x2c\xfb\x0e\xee\x53\xb2\xe2\xaf\x6b\x0c\xc0\xeb\x81\x87\x5d\x92\x72\xbb\x89\x7b\xeb\x14\x41\xc3\x47\xbf\xaa\xe5\xe1\x91\x0e\xc3\x53\xfe\x11\xf5\x03\x0b\xec\x57\x11\xdf\xf4\x4c\xca\x7a\x0a\xf8\x86\xb7\xb5\xcb\xff\x76\x63\x6f\x2a\x31\x33\x4f\xe9\x94\xfa\xc4\x03\x21\xf7\x74\x7c\xf9\xec\x9e\xdb\x7d\xd9\x30\x1c\x08\x76\x49\x34\xe6\xcb\xcf\x88\x62\x8d\x87\x28\xaf\xf6\xd2\x8c\xb6\x90\x28\x2d\x2a\x2e\xa0\xef\x29\xb2\xca\x9b\x2a\xe3\x53\x9e\x1b\xf9\x5e\x4f\xc3\xfb\x8e\xce\xea\x81\x78\x54\x8a\x86\xe5\x8f\xc2\x87\xba\x54\x25\x0f\x50\xee\x09\x43\x07\x85\x76\x42\xc3\x82\x7e\x46\x01\x88\xd3\x3e\xf1\xa8\xba\x77\x15\xf5\xfe\xbb\x9e\x5e\x47\xe1\xf4\x91\xd7\x62\x76\x7c\xbe\x69\x22\xc1\x88\x92\xb4\x2f\x5c\x9b\xf0\x8f\xa7\x3b\x0a\x85\xa1\x71\xb5\xb7\x1c\x10\x3f\x37\x51\x34\xe5\x11\x57\xbb\x36\xbc\x8e\xf8\x3d\x1a\x34\x3a\x87\xb3\x27\x3b\x3e\x19\x30\x4e\x93\xdc\xf6\xf2\x5d\x4a\xa7\xf9\x94\xa2\x0f\x61\x26\x01\x6e\x47\x0c\x94\x46\xff\x85\x49\xa5\x93\xd9\xef\xeb\x3a\x5d\x0b\xf8\x43\x7b\xc3\x30\xb6\xd2\xbb\x2a\x02\x50\xf4\x1a\x7c\xe3\x88\x8f\x52\x13\x46\x6b\x4c\xb3\xf3\x92\x07\x15\xfa\xf4\xe7\xc9\x8a\x17\xff\xaa\xcd\xf6\x78\x07\xf6\xdf\x92\xbd\x42\x04\xfe\xbf\x06\x9e\xb5\x05\xde\x18\x5f\x2b\xa1\xc7\xbb\x80\x48\xc2\x8b\x3e\xa1\xa9\xd4\xae\xe8\x7e\x56\xd8\x4d\xfe\x2b\xd8\x08\x41\xcc\x37\x14\x92\x98\x5f\x1e\x53\x8e\x35\x73\x4b\x31\xcb\xdc\x72\x3a\x3c\x45\xdc\xb7\xab\x36\x4a\xc6\xf2\xc7\xc0\xf7\x7f\x73\xe2\x1b\xf7\xbe\xa9\x36\x3b\x28\x97\x52\x86\xf2\xc2\x7a\x01\xd0\xcc\xd7\x8a\x17\x66\x1c\xf6\x56\x8a\xf1\x54\x4b\xd1\x70\xfb\x6e\xda\x4d\x75\x7a\xdc\xaf\x01\x29\x71\xea\xe5\xc3\x8a\xbe\x26\x26\x40\x6a\x01\xbe\x8f\xd9\xbe\xc2\x7d\xb5\xde\xe1\xe4\x0a\x12\xdf\x38\x59\x7f\x93\x65\x61\x96\x9b\x38\x27\x2d\x15\xb4\x4b\xc0\x57\x54\x5a\xf4\xf3\x9c\xef\xf9\xeb\x89\xe2\x1b\xbc\xa7\x05\x88\xcf\x35\x79\x29\x99\xde\x64\x28\x86\x7c\x18\xf8\x16\xdd\x0f\x55\x25\x3b\xb2\x59\xf6\x28\x2d\x2d\x07\x75\xad\x78\x24\x62\x65\x21\x78\x82\xd4\xd6\xa7\x81\xc4\x73\x7d\x45\xe5\xaf\x60\x63\x1d\x99\x28\xa5\xc7\xef\x7b\x80\xa9\x01\x5f\x25\x2c\xe8\xd1\x4a\x14\xe3\x73\x04\x57\xc8\x1e\x4b\x7d\xae\xf4\x6a\x24\x51\xdb\x80\x1c\xf1\x68\x2c\xc7\x67\x08\x17\x51\x8a\x18\xae\xdb\x77\x68\xfb\x53\x5e\x3f\x19\x9e\x10\xae\xdf\x9d\xa8\xf7\xb8\xa0\x65\x6e\x72\x6b\xfa\xa1\xf0\x08\x69\xad\x7e\x59\xe6\x7e\x15\x0e\xad\xe9\x47\xe5\x66\x9e\xa2\xb0\x56\x12\x66\x0a\x11\x8a\x0c\x9f\x10\xbc\x7b\x90\x51\x54\xfa\x52\x6a\x8b\xfd\x44\x45\x29\x3f\x09\x3e\x55\x75\x24\x09\xe2\xb9\xb0\xb0\xb7\xd2\x4e\x50\x4e\x9b\x2b\x86\x7a\x84\xfe\x5f\x4e\xd4\x26\xd0\xba\x51\x4c\x6d\x8a\xc0\x78\x67\xa7\xd2\x70\xea\xf1\x11\x47\x27\xba\xe9\xec\x8a\x12\xbd\x3f\xa3\x5b\xb0\xdf\x55\x7c\x5d\xd6\xe4\x00\xb2\xe3\x8d\x41\x51\xc0\xd7\x9d\xed\x55\x8b\xb9\xb9\xd2\x24\x50\xaf\x3c\xbb\xc1\xaa\x7b\x75\x53\x23\xb6\x37\x91\x8a\xc5\x86\xb8\x17\x78\x62\xfb\xb7\x27\x7e\x95\x5e\x77\x59\xab\x6c\x9c\x5a\x83\x72\x2a\x76\xca\x07\x13\x5f\x96\xc1\x39\x87\x6b\x56\xf6\xaa\x70\x2d\x22\xa1\x71\x39\x50\x44\x7d\xf9\xc4\xc7\x1c\x8f\x6c\xfc\x8d\xea\x84\xcc\xcd\x4b\x90\x46\xba\x6a\xd2\x7b\x53\x2e\x5b\xc9\x93\x28\x52\xed\xa5\x40\x59\xbf\x4b\x4a\x0d\x6e\x17\xb0\xab\x4e\xb8\xb2\x74\x55\x2b\xbd\xc3\x30\xcc\xbf\x45\xf3\xe3\x90\x3d\xe5\xc1\x2c\x6e\x2b\x26\x0b\xfd\x70\xdf\xc5\x8b\x21\x55\xb4\xa5\x98\xda\x79\xb1\x20\xd8\xbf\xd7\x94\x5f\x23\x79\xe8\x62\x34\xe5\xbd\x2c\x34\x56\x38\xb2\x95\x2f\xbe\xe8\xa8\x42\x1b\x02\x83\x41\x98\x5a\xb4\xbd\xc1\xc5\x78\x5b\x41\x8f\x8f\xaa\x3c\x26\xb7\x1c\x8b\x34\xaa\x4c\x5d\x3f\xb5\x66\x44\x2d\xdf\x8b\x6e\x3f\x7a\xb8\x06\x17\x7c\x51\xec\xb8\x4f\x43\xa1\xb2\xca\x8e\x0a\x2a\xf0\x61\xa1\x8d\x49\x8e\xd8\x96\x8e\xd3\xdc\x9c\x8b\xbd\xbc\xc0\xfa\xf1\x89\x27\x73\xbc\xd2\xc4\xfa\xc3\x36\xdf\xf7\x8d\xfe\x9f\xef\x07\x7e\x99\xbe\x5f\xe1\xd0\x8a\x22\xdb\x63\xe5\xbe\x72\xca\x59\xb2\x02\x8c\xae\xa2\x5f\xb1\xfd\x27\x0e\x3e\xdf\xee\xda\x5e\x32\x02\x32\x09\x8e\xe2\x35\x85\x7d\xa9\x07\xf6\xf3\x07\xdb\xdd\x24\x4d\xfd\x59\x8a\x39\x07\x2c\x8f\xaf\x95\x7f\x3d\x4c\x8a\xcc\x0e\x93\xa8\x9f\xcd\x78\xb5\xb8\x13\x58\x3b\xd8\xc1\xb7\xc8\xd6\x23\x1a\x39\x37\x51\x6d\x41\xe7\x54\x5b\x50\x3d\xdf\xff\xc2\x6c\x7b\x2d\xcc\x87\xe5\x57\x3b\xa7\x17\x03\x89\xce\x7c\x81\x1f\x78\x08\xd1\x0f\x26\x8f\xf8\xb0\x3b\xb5\x9f\xf1\x47\xd1\x9e\x0d\x0f\x80\xfa\x2e\x12\x83\xae\xa3\x7d\xfe\xa0\x93\x70\x2d\x87\x08\x5f\x75\x1f\x1e\x8a\x84\xc9\x14\x01\x31\x85\x2c\x82\x5f\xf8\x4f\x87\x71\x10\xa1\x06\xb8\x03\x8c\x25\x64\x6c\xfe\xfd\x53\x08\x59\xf1\x2f\x8f\x6f\x94\xab\xc3\xa9\xc9\x95\x9b\x0f\x8d\x3a\x77\xe8\xfc\xc1\x4f\xfe\x59\xe0\xdd\xe8\xcf\xe0\xe8\xa3\x7c\xd5\x7f\xe1\x0e\x39\xec\x50\x56\x48\xc4\x16\xf9\x6c\x47\x57\x5d\x76\x76\x7c\x89\xe7\x23\x52\x5b\x44\xb6\xe0\xc9\x0e\xf9\x51\x80\xb5\x7d\x08\x77\x1b\x5b\xef\x53\xd4\x35\x83\x2f\x7e\xb2\x43\xeb\x08\xa6\x52\xf3\x99\x67\xe1\xab\x44\x9b\xef\xf9\xa3\x4e\xa9\xc4\x9a\xe2\x00\x2a\x96\x4d\x37\x49\x14\xc1\xd8\x49\x20\xf9\xf9\xc6\xf5\xd0\x46\x49\x32\x92\x44\x8a\x40\x0d\x69\x4c\x61\x74\xaf\x07\x1a\xbf\xb7\xdd\xaf\xdd\xb7\xd8\x4e\x8a\x34\xb3\x91\x13\xb0\x94\x6e\x51\x7a\x7c\x11\x01\x96\x63\xf9\xe9\x7f\xf1\x4f\x33\xdd\x2a\x7a\x59\x69\x39\xe2\xf0\x87\xbd\x78\x4b\xf5\x7c\x74\x8b\x3c\xb7\xe9\x20\xa4\x7c\x18\xcd\xa2\xa4\x60\x30\xda\x92\x83\xd9\x6e\x9e\x4a\x97\xbb\x6f\xb3\x5d\x2a\x84\x79\xa8\xa3\x4a\xd5\xb7\x26\x9a\x82\xc7\x97\x50\x7e\x01\xb3\x03\xf8\xc2\x1d\x4d\xc7\x7e\xb5\x39\xeb\x36\x48\x43\x1b\x33\x5f\x87\x6e\x47\xd5\x14\x6b\xc2\x0f\xe2\x3a\xa3\x07\x65\xf0\x68\x72\xe1\xb8\xc3\x0f\x4c\x6f\xa8\x5f\x9b\xee\x6c\xe7\x62\x29\xed\x93\xc9\xcd\x38\x4d\xfa\x45\xcf\x31\xdd\xe1\xd5\x7e\xa2\x43\xb5\x9f\x4c\xb6\x7f\x94\x10\xd3\x61\x1e\xda\xec\xdf\xfc\x13\xd3\xed\xb5\x14\xb7\xe4\x31\x1e\x47\xbe\xab\x79\x96\x07\x9f\x6f\xf7\x8a\x3c\x17\xde\x0a\xa7\x7e\x57\x2e\x11\x81\x58\xe9\xca\x6a\xaf\x0c\xdb\x1e\x6e\x39\x02\xae\x4b\x34\xaf\x28\x76\xbc\x39\xf1\x64\x4c\x8c\x8c\xc0\x6e\x43\x57\x10\xf2\x28\x72\xb8\xc1\x27\xda\x49\x25\x01\xfc\xd5\xf9\xc0\xdb\xb4\xf3\xda\xc1\xde\xb9\xe1\x51\x26\x49\xcf\x9a\x18\x24\x56\x8e\xc8\xc9\xc1\x7b\x98\xb8\x92\x6f\x3a\x5e\x86\x5b\xeb\x62\xaf\x0d\x93\xcc\x3e\x5c\x3e\x90\xf4\xc4\x97\x5f\x80\x6e\x24\x56\xb4\x43\xe4\x7c\x5a\x55\xa8\x91\x6d\x86\xaf\x3b\xdd\xa9\x1c\x69\x64\x94\xe0\x98\x9d\x9b\x6c\xa7\xde\x71\xf4\x77\x3e\xb9\x92\x14\x69\x9e\x26\xc9\x48\x1f\x43\x28\x7c\x8a\x7c\xad\x16\x22\x7f\xb9\xc8\x72\xe0\x99\xf7\x49\x44\x7f\xbe\x4a\x63\xf1\x98\xe2\x26\x1e\xe7\x20\x79\x85\xf9\xf9\xba\x12\x15\xf8\x7a\x53\x0b\x53\x3b\x8b\xec\x18\x99\x3c\x38\x83\x3f\x9c\x28\x22\xcb\x2b\xa8\xb2\x88\xb3\xa1\x4a\xf4\x43\x93\x71\x84\x06\x0b\x0a\xfd\x18\xbe\x56\x95\x06\xea\x4a\x71\xdd\x04\x28\x74\xbe\x15\x78\xc8\xca\x87\x13\x9f\xc2\x04\xef\xb8\xe0\x01\x54\x4a\x29\x32\xe5\x97\x0c\x06\x19\xb0\x5a\xa2\x21\x46\x95\x50\x45\xd6\xee\xa5\xc6\x5a\x4f\x3f\xed\xfa\x7f\x1f\x55\x3d\x80\x66\xf4\x48\x79\xfe\xc0\x36\xed\x62\x6b\x2e\xe4\xec\x7e\x11\x9d\x53\x54\xce\x37\xd1\xf8\x84\x21\x38\x06\x4f\x4e\xea\x7f\x34\xef\x7c\x03\xdb\xcb\x7f\x46\xcb\xc6\xa9\x1e\xed\x93\xde\xbc\x5d\xd8\xfe\xaa\xa5\x5c\x1c\x89\x9b\x0d\xcc\x30\x5d\xb3\x62\xfb\xd3\x2a\x62\x86\x80\x12\x96\xec\xfd\xc0\xc3\xc4\xce\xe9\xc6\xfa\x3a\x11\xee\xe7\xdb\x03\xe3\xc8\x89\x80\xd5\x39\xab\x5b\x63\xcf\x06\x9f\xac\xfa\xc0\x5f\x7c\xb1\x7d\xe8\xd0\x4c\x39\x86\xf0\x38\x8f\x2b\x4d\x83\xd3\xa8\x3f\xf3\x3f\xa8\xa6\x95\x3f\x23\x6b\x8b\x8c\xca\x79\x05\x1f\x84\xc4\x1d\x89\x05\x62\x4d\xdd\xd2\x54\x27\xb7\x30\xa0\x22\xde\xe0\x55\x26\xcf\x6a\xa5\xae\x24\x4a\x56\x0c\xd4\xef\xe0\xbd\xe8\x84\xeb\xc7\x4d\xd4\xb9\x9f\x6b\x0f\x4d\x36\xa4\xaa\xdd\xa2\x40\x6b\xe0\xf8\xf2\xb5\xd2\x27\x1a\xdb\x34\x4b\x62\x83\xd0\x05\x7e\xf1\x75\xb5\x00\x1e\xeb\x94\xe6\x0d\x76\x7f\x6b\xa2\xf4\xdb\x51\x3d\xad\x90\xf9\x0a\x00\xb0\xde\xb5\xd9\xee\x19\xf0\xce\xbb\xed\x88\x33\x84\xaf\x6b\xae\xea\xe2\x62\x3b\x35\xcb\xcb\x95\xf6\xb2\xff\x1e\x61\x00\xdf\x4c\xf6\xb8\x4e\xf3\x58\x93\x41\xbf\xa1\x3a\xd7\xc0\xf8\x22\xf2\x8b\x4d\xd2\x6d\xe1\xf2\x10\x8d\x12\x88\x4e\x6e\x05\xbe\xdb\xe6\x56\x83\x0c\xd4\x81\xb6\x29\xf2\x64\x64\xf2\xb0\x37\xe5\xff\xf2\xac\x62\x3e\xf9\x4d\x5a\xef\xd2\x60\xde\xa0\x64\x9f\x15\xe9\x2a\xb1\xf6\xbd\x30\xeb\x8a\xdf\x34\xaa\x7c\xa3\xfa\xd0\xa9\x97\x63\xfd\x31\x5a\xb8\x8c\x95\x0a\xbc\x2c\x2d\xaa\x29\x2c\x34\x09\x83\x88\x24\xeb\x25\x55\xeb\x85\xd5\x96\x55\x43\xd6\x8c\x99\xd3\x27\xaa\xc6\xfd\x3e\x59\x24\xa6\x3b\x0c\x54\x86\xe6\x42\xa5\x94\x7f\x0f\xbe\xa4\x74\x5a\x97\xa6\xc4\xe9\x5c\x96\x1e\x2b\xac\xf7\x8f\x6a\x93\x59\xda\xd9\xa1\x89\xfb\xeb\x53\x7e\xd9\xde\x56\xa8\x7d\x46\x36\x60\x2d\x68\xea\x98\x6e\xb1\x1e\xc6\xcb\x7b\xbd\x9f\xfb\xf8\x61\x4a\xde\x20\x31\xfc\x16\xce\x68\x57\x7d\x55\x56\x9f\x5e\x41\x2b\x42\x49\x90\xa5\x78\x71\xae\xf1\xbb\xa1\x82\x73\x24\xf0\xfa\x96\xb7\x61\x4d\x59\xaf\x0e\x03\xc5\xb8\xb5\x06\x48\x25\xa5\xfc\x19\x22\x82\x20\xe7\x84\xa2\x0b\x38\xd1\x94\x2a\x3d\x00\x8e\x19\x31\x4a\xce\x20\xfa\xa6\x60\xdd\x52\xdf\x2b\xd2\xd4\xc6\xf9\x43\xbe\x9f\xe7\x12\x80\x87\x8e\x34\x6e\x6e\x9e\xd3\x96\x97\x02\x25\xec\x02\xdc\x3e\xd2\x09\xb7\x83\xca\x16\xa1\x61\xa8\x28\x20\xa0\x92\xb3\xc3\x11\x85\xa5\x26\x5e\x46\x87\x8a\xff\x3a\xd5\xa9\x7f\x17\x0f\x0b\xef\x7f\xa6\xe3\x31\xd9\xa9\x19\x87\x7d\x6a\xf5\x21\xc8\x14\xc7\xec\x8a\x25\x18\x60\x64\x41\x93\xd5\x8b\xfa\x2f\xb5\x23\x1b\xf7\x59\x6a\xf0\x25\x06\x4a\x1f\xc1\x24\xf0\x4d\x6d\x27\xcf\xcd\xb5\x07\x61\x2c\x5c\x02\x28\x76\x5d\x52\xe1\x39\x37\x11\x60\x81\xff\xbc\x51\x45\x02\xdc\xe7\xe2\xae\x22\x6b\xc8\xc1\x0f\xdf\x6c\xd4\x1d\xf0\x76\x3e\x34\xf9\x43\x55\x3a\xd5\x17\x85\x3a\x6b\xb9\xdd\xf1\xc9\xd8\xfb\x13\x2f\xeb\xf4\xd5\x40\x25\xbd\x2f\xd0\x36\xc2\xb4\x5e\x9b\xd4\x88\x71\x11\xf5\xec\xde\x50\xab\xc1\xc6\x79\x01\xd8\xb6\xaf\x69\xb6\x1c\xfb\xff\x2f\x29\xfa\xc5\xbc\xfc\x14\xc1\x17\xdf\xa8\x7d\x95\xda\x51\xd8\xcb\xa6\x14\x5d\x2b\x48\xe6\x44\x35\x87\x56\x17\x3e\x36\x71\x25\x0e\x6b\xd2\x7c\xb8\xae\x8c\x25\x72\x68\x7c\xad\x65\xe7\xa5\xc1\xa9\xe5\x25\x0a\x51\x04\x92\xfe\xed\x06\x50\x38\x75\x0d\xb4\x3c\x59\xf7\x66\xa0\x4b\x21\xfe\xb4\x4a\xd2\x7c\x98\xf4\x93\x57\xe8\x44\x75\xdd\x99\xfb\x54\x8f\x7e\xf9\xca\x8e\xeb\xa9\x1c\x4f\xe1\x96\x68\x12\x89\x8d\xd7\xf3\x70\x64\xa7\x3c\xe0\x06\xcb\x46\xb0\x84\xbe\x4a\xf2\xb3\x46\x9d\xf2\x2f\x17\x26\xcd\x6d\xba\x1d\x56\xb8\x7f\xd6\xc1\x0a\x95\x00\x4c\x11\x12\x5a\xbb\xd2\xf6\xa8\xfa\x21\xb7\x79\x21\xfb\x67\xdb\x73\xf3\x0f\x2b\xf5\xa1\x1f\x04\x0a\xb8\x0a\xd2\x2c\x16\xe7\x0e\x5c\xae\x3d\xfa\xde\x44\x65\xe4\x18\xbb\x05\xa7\x0e\x71\x1a\xd6\x16\x8b\x3e\x4a\xfb\x29\x4d\xb7\xf0\x84\xfa\xde\x9c\x7c\x7d\x1c\xf6\x4c\x14\xad\xef\xf2\xc5\xed\xfb\x94\xcd\x86\x9f\xf9\x2e\x0a\x26\x0e\x9d\x56\xbe\x18\x3c\xe0\x3f\x9d\x28\x8c\x1d\x63\x24\xe1\x66\xfe\xa2\x06\x31\xfa\x3c\x21\x6c\xd6\x86\x61\xc4\x2d\x90\x8e\x5a\x56\xe8\x55\xff\xe2\x33\x1d\xbf\xbe\xf7\x52\x12\x16\x51\xed\x51\x82\x78\xc3\xff\xba\xa1\x30\x10\x36\x0a\x4d\x9c\x87\x2d\x08\x85\x91\xcd\xdf\xba\xa8\x91\xbe\x43\xbb\x9a\x26\x31\xa6\x02\x1d\x83\x9b\xb0\xa8\x7c\x33\xf1\x7c\xce\x2f\x3f\x33\xad\xb2\x74\x9b\x95\x6a\xb1\x0f\x7c\x19\x3d\x84\xbd\x50\x47\x0c\x90\x47\x96\xb2\x33\x83\xe7\x65\x0e\x20\xbe\x51\xf9\x8f\xb8\x18\x75\x29\xc1\xe7\x3a\x00\xef\x56\xbb\x8f\x5d\x36\xbd\xde\xc9\xb9\xb0\x80\xb4\xdd\xb2\x08\x52\x38\x5a\x07\x1f\x87\x9d\xd3\x0e\x86\x2b\x61\x3d\xeb\xd8\x07\xcb\xef\xe7\xeb\x5a\xc7\xc2\xe2\x62\x3b\x4e\xf2\xb5\x30\x1f\x66\x39\x3a\x69\xa7\x15\x05\xf3\x4f\x68\xca\xf0\x46\x97\x94\x94\x2c\x71\xcf\x72\x55\xe9\xdb\x6a\x2b\x67\x51\xb2\x6a\x56\x42\xa3\x3d\xf3\x63\x81\xf2\xcc\x8f\xe9\x76\x2f\x93\x86\x59\x37\x4d\x92\x15\x74\x20\xab\xfe\x17\x17\xf7\xd0\x41\x88\xdd\xfe\x5f\x9b\xc4\x46\xb2\x28\x1c\xb5\xbc\x0b\x52\xa5\x09\x6a\x62\x1a\x19\x5a\xb3\x8a\xad\x0d\x23\x70\x44\x95\x4d\x3d\x58\x60\x9c\x26\xe3\xf5\xc8\xc6\xcc\x5c\x04\x2f\xe8\x1b\x2a\x9e\xfd\x86\xea\xce\x25\xd6\x1b\x37\x70\x7c\x38\xd0\x60\x89\x74\x91\x47\x42\x1e\xd6\x87\xec\xa9\x06\x28\x49\x7b\x90\x5a\x71\x22\x5c\x64\x5c\xae\x63\x89\x8c\x1f\x44\xbb\x55\x8c\x33\x9b\x13\xd9\x98\x13\x97\x73\x4e\x33\x9f\xf3\xec\x10\x74\xbc\xc3\xf9\xe3\x89\x1a\xf9\x6f\xa8\x92\xcf\x4a\x98\xae\x4c\x79\xe5\x7d\xfe\x02\xec\xa5\x4b\x8a\x56\xfd\x7e\x6d\xf3\xbf\x30\xeb\xe4\xae\x48\x02\x17\x0b\xe9\x44\xe0\x8b\xda\x60\x15\x44\x2e\x74\xe7\xc6\x23\xa1\xf2\x32\xe8\x27\x11\x47\xa1\x81\x1c\x11\xe7\xc3\x64\x2d\x44\xb7\xa8\x21\xdd\x9c\x0f\xc1\x2a\x47\x13\x2b\xde\xa3\x76\x25\x1b\x15\x1b\x22\xd5\xd4\x88\xbd\xf8\x11\xa6\x87\x6f\x1c\xf3\xd5\x4a\x6c\x25\x57\xe8\x70\xfe\x2a\xae\x7f\xb2\xca\x9d\x96\xc6\xb6\x3f\x43\x86\x48\x40\x6c\xe5\xbb\x33\x07\x7b\xe0\xeb\xdc\x2c\xaa\xa2\x0b\xf3\xf0\xad\x7e\xbf\xa9\xb4\x8b\xf6\x91\x96\xd7\x45\xdd\x54\x5e\xf0\x66\x43\xcf\x6a\x3b\x8c\x73\xf4\x45\x3a\xbd\x84\x4d\x25\x4f\xb3\xe9\x16\x3b\x51\x67\x0c\x89\xd3\xda\xa3\x87\xb5\xaf\xb2\x59\xd1\x95\x4c\x52\xfb\x69\x3a\x91\x9d\x0e\x8b\x86\x3d\xf9\xfe\x92\x9b\x14\xa9\x09\xd4\xa0\x7c\x6e\x07\x20\x9d\x93\x16\xe9\xb7\x69\x38\xd8\xf6\x05\x2a\x2a\x02\xe2\x0a\x31\xd7\xde\x0d\xef\xff\x9c\xaa\x08\xa0\xd3\x61\x05\x0f\xf2\x12\xa6\x9b\xf9\x27\x35\xab\x29\xd3\x55\x63\x25\x5d\xa5\x78\x67\xeb\x1d\x0e\x14\x1c\x2a\xbf\x9c\x08\x78\x6f\x3f\x84\xb9\x62\x6a\x73\xf8\x75\x38\xa7\x2e\xa3\x4e\x82\x54\xe0\x35\xe5\x12\xdc\x56\xf6\xb7\x67\x8a\xcc\x66\x4a\xa0\x0f\x29\x20\xbe\xae\xf9\xa9\xae\xf3\x3c\xec\x1a\x58\x41\x9c\x83\xe8\x5c\x92\x1e\x7c\x6f\xd4\xfe\x54\xc1\x7f\xc2\x74\x35\x8c\x97\x35\xaf\x27\xf3\x6b\x72\x35\xb7\xc2\xeb\xf9\x56\xe0\x8d\x97\x0e\x89\xeb\x36\x68\xff\x6c\x3b\xb6\xe9\x6a\x55\x64\xb0\x7c\x1a\x29\xea\x79\xbc\xcf\x72\x12\x0d\x08\xc0\x04\xcc\xda\x8e\x8e\xaa\x65\x1c\x87\xc9\x40\x54\x70\x94\xce\x0b\xe1\x28\xf5\x35\x69\xca\x0d\x83\xf1\xcf\xa9\x65\x6f\xd2\x9a\x90\xde\x2c\x2d\xea\xbe\x4a\x32\x51\x0f\xf9\x8e\xdb\x63\x70\x57\x9c\x30\x61\x39\x8b\x2c\x61\x8d\xb8\x56\xf4\xac\x3d\x8a\xe8\x0a\x7d\x3b\x5f\x4f\x14\x72\x5c\x8a\xc9\x7c\xa7\x72\xab\xa9\x8d\xcc\x2b\x2d\x0f\x78\xc0\x2e\x12\x89\xf7\xa6\xc0\x25\x21\x02\x64\x47\xb1\xce\xcd\x59\xae\x33\xd2\x75\xaf\x9f\x9e\xe8\x6e\xc8\x31\xf2\xfe\xa8\x31\xdd\x50\xf2\x03\x3f\xc6\xe7\x71\xf4\xa2\xb9\x8b\xff\x08\xcb\x53\x24\x1b\x95\xb0\xc2\xd9\xc9\x36\xdf\x73\xdf\x62\xfb\xb9\x79\xf2\xf4\x31\x23\xa8\x7a\xf1\xf5\xe4\x53\x6a\x94\xe3\x2c\x0f\xf3\xc2\xc6\xbd\xf5\x29\x1a\x5d\x37\x83\xfb\xc5\xf2\xec\x24\x73\x8c\xc7\xb9\x55\x3b\x65\x9f\x9b\x6f\x77\xd7\xc7\x26\x43\x2b\xae\x23\x93\xf1\xa9\x81\x5a\x0b\xcb\xe2\x22\x51\x66\xc6\xcb\xf9\xd0\xc6\x15\xb1\x88\x63\x81\x7a\xa7\x63\xb5\x9f\xa2\x20\xf1\x15\xb1\xfb\xf0\xe1\xce\xeb\x56\x87\xf3\x4d\x05\xd3\x2c\x59\x0d\x6d\xce\x62\x0f\xf2\xd5\xde\x8d\xfb\x5d\x9a\x5e\x20\x0c\xd8\x09\x44\x76\xec\x66\x13\x0b\x4e\x37\x34\x71\x5c\x70\xae\x80\x8b\xf9\x81\x22\x68\xfc\xa0\x66\x99\x9f\x9b\x6f\xc7\x36\xc4\xf9\x38\x37\xe7\xb4\xac\x7d\x02\x19\xa0\x37\x09\x84\x2a\xbc\xf4\x2b\xcf\x80\xde\xa8\x2a\x96\xa5\x1c\x27\x11\x3d\x05\xab\x08\x5f\xe3\x79\x90\x59\xbd\xe9\x0a\x5b\x69\x32\x1a\xd3\x14\x39\xdd\x8f\x72\x91\x09\xb9\x45\x3d\x32\x3e\xd0\xee\x17\xe0\x61\xc7\x37\x6d\xa8\xe8\x83\x35\xfb\x31\x80\xf7\xf0\x4d\xa2\x4f\xbc\xbd\xae\x23\x26\x2f\x0b\xfb\xc3\x71\x01\xbc\x38\xc2\x78\xce\x1f\xf3\x8d\xaa\xd0\x90\x70\xad\x64\x8e\xa5\x0d\xd9\x1f\x6b\x57\xd4\xb1\x76\x05\x27\xb8\xf8\x3d\x4d\xa8\xed\x28\xe9\x76\xd7\x1d\x65\x8c\x63\x02\x74\xe5\xaf\x33\xb5\x3d\xbd\xb0\xb0\xbf\x9d\x86\xd9\x0a\x0e\x48\x06\x0d\xd1\x92\x16\x00\x91\x64\x2e\x4d\x14\x7d\x82\x8a\xc3\x08\xd7\x9e\x46\x55\x05\x01\x5e\x0b\xd5\x5d\xa9\x4b\x56\xe9\xcf\xa4\x86\xfc\xfe\x3f\xeb\x28\xfd\x27\xce\xce\xc2\xf2\x4e\x13\xbe\x17\x60\xfd\xbf\xbd\x51\x41\x9f\xb4\x1c\x95\xdc\xdf\xd8\x50\x09\x02\x44\x5c\x20\x43\x7d\xa2\xe3\x0b\x51\xbb\x2b\x68\xe8\x0d\xb7\x08\xde\x7e\x62\xe3\x49\x95\x51\xc8\x8a\x28\x97\xcd\x05\xf7\xf3\x8e\xc2\x60\xde\x69\x60\x77\x6b\xdb\x57\x6c\xda\x0b\x33\xf1\xaa\x10\x2e\xbe\x8e\x23\x95\x6f\x6a\xa3\xfb\xdc\x7c\x3b\xcb\x93\x14\xbe\x0d\xab\x45\xc3\x7c\x8b\x74\xf4\xe3\x0a\x1e\xb7\x3c\xb2\x71\xbe\x8b\x5e\x92\x4b\x1b\x64\xd1\x5d\x99\xe3\x85\x59\x97\x27\xa5\x5f\x75\x75\x2b\xdf\x31\x74\x12\xf6\x94\xff\x4c\x31\x27\xbf\x5c\xf4\x97\x2d\x50\x08\x38\xab\xa6\x36\x74\x5d\xef\x03\x45\xda\x39\xd5\x69\x6d\xef\xb7\x86\xcb\x70\xb9\x81\xe0\x70\xb1\x1d\x15\xa9\x8c\x09\x66\xf6\xbd\xc0\xa3\x95\xde\x53\xc1\x69\xbf\x00\x38\x45\x9c\x34\xef\x85\x9d\xda\xde\xf1\xfa\x92\xf3\xea\xfc\x81\x9a\xdb\xd1\x38\x49\x45\xdb\xb2\xc9\xeb\xdb\xae\x7c\xb3\xb8\xd8\xee\x62\xe8\x59\x2b\x12\x83\x23\xc2\x91\xda\xfc\xe4\x36\xd7\xaa\x96\x88\x03\x84\xd2\xc6\x1b\x83\x3a\xc1\xd8\xdc\x5c\x7b\x39\xb5\x26\xc3\xa1\x88\xdd\xf0\x2e\x7d\x9a\x25\xbf\xe8\xd5\xe0\xf7\xff\x81\xe6\x25\xea\x87\x2d\x1f\x05\xbc\x85\x61\xe6\x9b\x46\x39\xd1\xf2\x82\xc7\x79\xeb\x22\x5c\xbd\x8b\x3a\x8b\x40\x3c\x26\xd9\x8c\x66\x01\x57\x80\xd8\x5b\x2a\x81\xfd\xef\xe0\x8d\x32\x17\x13\x2d\x2b\xc9\x5b\x2a\x52\xb0\x28\xf4\x91\x3d\x12\x4c\x6f\x4f\xb4\x3e\x18\xbd\x23\x6b\x3b\xd6\x98\xcc\x3f\xdf\x36\xe9\x88\xc3\x0a\xe6\x35\xa2\xa5\x2c\x1c\x47\x4d\x34\x34\x03\x8b\x3c\xaa\x1f\x88\xe3\x5c\x0b\x97\xda\x9c\x76\xae\xc2\xe5\xd8\x14\x51\x5e\xd5\xaa\xa1\xcf\x8a\x58\xcd\x93\x7a\x6c\xc2\x5e\x68\xe3\x7c\x9a\xdc\x28\xb2\xf1\x53\x4f\x6c\xf8\x76\x18\x86\x9d\xf0\x3f\xd0\x7c\x4b\x33\x67\x03\x70\xae\x3c\xde\xb4\x26\x2d\x44\x1e\x9d\x20\x74\xe9\x48\xa3\x35\xee\xf0\xc4\xf3\xed\x0d\xb2\x57\x5a\x15\xd8\xfb\xc2\x82\x5c\x57\xfa\x57\x57\xc2\xfe\x0c\xde\x5a\xda\x95\x34\xa7\xe7\xc4\xe7\x3d\x19\x9a\x56\x61\xbd\x97\xec\xb9\xc7\x45\x75\x8b\xd4\x9a\xa2\x97\x9a\x1e\x9c\x5e\x3c\x31\xda\x07\xf9\xba\x31\xab\xad\x8f\x71\x78\xd6\xd7\x54\xeb\x1d\xda\x3e\xe4\x25\x85\x2c\x2a\x8c\xf3\xd4\x14\x79\xe9\xc9\x5a\x25\x6f\x7c\x5d\xc9\xc4\x5c\x57\x3b\xe0\x5f\xfc\xb7\xff\xbc\xa5\x50\x12\xa7\x29\x76\xe2\x6b\x05\x6b\x1c\x84\x71\xff\x21\x4f\x62\xfc\xb1\x26\x3f\x3d\x81\x31\xe0\x4a\x0e\xbb\x0c\x88\xac\x2e\xab\x10\xf2\x12\xa5\x5a\x90\xfb\xda\x89\x2c\xa3\xa4\xce\x68\xb6\x00\x06\xb8\xea\xf2\x1e\x43\x9b\x76\xc3\x5e\xd8\xb7\x58\xfd\x08\x06\xdf\x9e\xa8\x4e\xf6\x2b\x41\x45\xc1\xe9\x41\x7e\xc0\x5a\x1a\x7a\x1a\x41\x89\xbc\x5b\x8e\x29\xe2\x6d\x2d\x7c\xf0\x1d\xdf\x3b\x97\x86\xb9\x48\x6e\x48\x8d\x4c\xa5\xdf\xce\x4f\x14\x46\x65\x47\xc7\x9b\xf8\xa1\x49\x23\xcb\x30\x05\x11\xd7\xa5\xcf\x79\x75\x5d\xef\x0a\xaf\x30\x27\x2d\x30\x41\xef\xe1\xe5\x60\xff\xaf\x07\xad\xe7\xe6\x5d\x62\x53\x42\x69\x90\xbd\xba\xb7\x81\x6d\x84\xbb\x8c\xee\x97\x4b\x8a\x8c\xf9\x92\xda\xab\x59\x2f\x0d\x59\x68\x65\xfe\xa0\xcb\x74\x78\x5a\x9d\x7b\xca\xc6\xa7\x96\x42\x21\xd4\x46\x9e\x65\x5f\x10\x61\xa6\x8b\xb6\x17\x16\x78\xc4\xbe\xa2\xd2\xd5\xdd\x24\xc9\x98\x3d\xcb\x31\x10\x7b\xf9\x3b\x0d\x71\xc8\xd6\xa3\x28\x2c\x46\x04\x89\x41\x39\x1f\x95\x7a\x11\xe7\xa1\x96\x45\x71\xda\x5a\x8e\x08\xe8\xd8\xc4\xe7\x6f\xfe\x82\xba\x2d\xf0\x10\x77\x02\x45\x97\x73\x9c\x8c\x9c\xa8\xac\xa8\x16\xcd\xb7\x15\x54\x31\xcb\x4d\x1e\x66\xb9\x6b\xd4\x16\xee\x70\xef\xa5\xd5\xbb\xe7\xe7\x0f\x12\xcf\x42\x98\x71\xe7\x17\x7c\x33\x6c\x63\xbe\x9e\xfc\xbd\x9a\x67\x77\xa0\x9d\xa7\xa6\x6f\xfb\x61\xe9\x83\x38\xee\x29\x6e\xdc\x9e\xe8\x26\x6e\x4d\x20\xb4\x1c\x87\x9a\x95\xf3\x88\x66\xe5\x3c\xe2\xa8\x0d\x88\x49\x27\x4c\x40\xc1\x8f\x88\x76\x07\xa1\x86\x70\x56\x5c\x44\xde\x41\x0c\xf3\xa3\xea\xa8\x1d\x3c\xd3\x52\x02\x32\xef\xc3\x81\xe2\x9b\xc9\x93\x2a\x34\xed\xa5\x45\x98\x43\x60\x44\xb0\x4d\x3f\x52\xf4\x51\x3f\xaa\x79\xc0\x87\x0e\xb5\x63\xd3\x7b\xd5\x46\x71\xb8\x42\x3b\xd7\xf1\x74\x3b\x7f\xe6\x17\x94\xb9\x61\xad\x36\x0f\x5a\x1e\xd9\x28\x62\xa1\x5b\x7c\x66\x2b\xa8\xd6\x04\xca\x67\x14\xe1\x49\xe5\xb2\x41\x00\xfe\xe1\x96\x56\x9c\xfc\xe2\x8b\xec\x21\xdf\x50\x44\x30\x97\xb1\x4c\x44\x8a\xd2\xf3\x08\xfc\x18\xf0\x6a\x61\xe0\x28\xd7\x0f\x6a\xaa\x28\x22\x6e\xdd\xac\x04\xf2\xc1\x27\x54\xe0\xb0\x56\x1e\x97\x7e\xff\x01\x83\xca\xd7\x75\x6c\xdc\xf3\x07\xda\x79\x12\x2f\x3f\x1d\x46\x9c\x6d\x47\x42\xee\x9b\xf8\x7e\xbe\x09\xf6\xf2\xc7\xca\x43\xe0\xef\xb4\x5e\x5c\xf2\x32\x41\x4e\x45\xf1\x11\x60\x21\x59\xb2\x06\x8f\x0f\x3b\xfb\x26\xaa\x2a\x58\xc4\xdf\x0e\x3c\x12\xe3\x68\xe0\x11\x9b\xed\xc7\x37\x7c\x3c\xc9\x51\x3e\xe0\xdd\x53\x0a\xb1\xfe\x0b\x1c\x7b\x2c\x18\x1a\x78\x9e\xf8\x53\xc4\x26\x2c\x24\xcc\xe5\xfe\xd4\x82\x98\x62\x4a\xf5\x49\x70\x01\x99\x14\x27\xaa\xf5\xeb\x5f\x72\x58\x7f\x9c\xe2\x0e\xcd\xf6\xc5\x17\x3d\x2c\xe2\x05\xc1\x4a\x6d\x21\x9a\xe1\x16\xb5\x40\x41\xf5\x58\x20\x08\x16\x94\x41\xeb\x58\x30\xac\xa5\x20\xe9\x05\x25\xe8\xf2\x1d\xac\x2b\xa7\x90\xf0\x85\xdf\xe0\xa9\xe5\x44\x1d\xbc\x88\xdd\x9d\xd6\xd3\x4f\x2b\xa1\x68\x31\x1c\xd6\xa4\xb1\x00\x0d\x45\x7c\x85\x1e\x48\x64\x59\xb6\x1f\x44\x2f\xcc\x92\x50\x41\x9e\x86\xdd\xc2\x91\x2f\xa1\x83\x8d\x9b\x60\xf9\xc6\x01\x55\x47\x49\xdc\x37\xeb\x19\xca\x48\x22\x20\xa7\xe0\xf1\x90\xd8\x46\x9f\x18\x77\xd5\x08\x0b\x68\xc5\x8d\x31\x2c\xbd\x28\x32\x69\x34\x06\x7c\xf3\x40\x6e\xa9\x30\x5e\xb5\x80\xcf\x4d\xf9\x82\x29\xfc\x31\xcc\x3e\x73\xbd\xe0\xa1\x77\x39\x75\x8b\xf5\x64\x25\x19\x9a\x91\x69\xb5\x14\xb7\x62\x85\x02\xac\x21\xeb\x1c\xdb\x35\x93\xae\xb4\x7c\xee\x90\x4f\x59\xbe\x51\x89\x4f\x13\x2f\xdb\x28\x99\x51\x1d\x69\xd0\x75\x61\xfd\x4e\x95\x2c\x38\xab\xf1\x78\x27\x70\x50\x0b\x32\xad\x41\x47\xb4\x88\xcd\x78\x6c\x4d\xe4\x22\x76\x49\x0d\x7a\x1c\xee\xa6\xb3\xb8\x71\x18\xdb\x41\x12\xa1\x53\x13\xef\x85\xcc\x15\x5f\xbb\x40\x3d\x31\x18\x3e\xec\xc3\xdb\xaa\xd1\x01\x24\x18\x18\xbd\x53\x0d\x9a\xea\x4b\xed\x7e\x1a\xc6\xa2\x4f\xc6\x60\xa9\x40\x51\xd4\x6c\x56\xb0\xed\x63\x1b\xd9\x2c\x83\x30\xed\xa2\xa3\x6b\x28\x37\xb1\x30\x34\x78\x58\x18\xf3\xec\x3d\xec\x4f\xaf\xe3\x70\xba\x1d\x33\xf2\x3e\xd5\x95\xef\x40\xd8\xc7\x27\x4a\x78\xef\x90\x2a\xcb\xdf\xc2\xe6\xd3\x52\xbc\x88\xdd\x7f\x1e\x28\x5a\xd8\xfb\x4d\x44\x50\xdd\xe4\x15\x5b\xe1\x55\xa9\xb0\x69\x68\x6e\x40\xe2\xd7\xec\x4f\x97\x8f\x23\x8e\xaf\x12\x70\x3a\x4a\x1f\xe3\x6b\xf5\xda\x67\x1a\xd9\xa7\x86\xd6\x32\x7d\x90\xe4\x8a\x7d\xd7\xd5\x3d\x45\x0c\xb5\xa9\x4a\x55\xcb\xa9\xe9\xce\xf8\x1e\x09\x16\xdd\x46\x6d\x06\xc2\xad\xdc\x99\x42\xdf\x05\x43\x74\x54\x93\xf9\xcd\x6c\x3c\xa1\xfa\xfa\xd2\xd2\xf5\xb0\xad\x8a\x40\x96\xe6\xa4\x6d\x24\xd4\x28\xd2\x55\xbb\x2e\x01\xbe\xe0\x76\xca\x9f\xe6\x6b\xad\x7f\xe4\xe4\x99\x66\xbd\x85\xdb\xe7\x35\x60\xb6\xd7\xf7\xe6\xe6\xda\x3d\x53\xe4\x61\x52\x94\x8b\xa8\x34\xb9\x8e\x03\x77\xbf\xbb\xd6\xb2\x1e\xa6\x67\xa1\x48\xa8\xf6\xb8\x08\x08\xbf\xa1\xe8\x2a\x3f\xa2\xf5\xc0\xd7\xd8\x85\x30\xff\xef\xd5\x0c\xc1\x8b\xf3\x07\xdb\x8a\x74\x54\x46\xa2\x42\xd5\x2b\x2e\x70\x64\xd6\x46\x66\x85\x83\xd4\x03\x9a\xaf\x60\xc9\xf1\x15\x34\x80\x09\xd7\xac\xc3\xed\x31\x06\x39\xf0\xe5\x72\xcd\x86\xd2\x4b\xd2\x71\x02\x71\xa2\x5d\xdb\x09\x36\xe0\x7f\x4d\x23\x19\x29\x6c\x1b\x64\x54\xc5\x9c\x7b\x5d\x85\x4d\xcd\x11\x7a\x41\x51\xfe\x8d\xc3\xb1\x04\x16\x28\x6b\x9c\x53\xa5\xb9\xdb\xaa\x9a\x73\xaa\x09\x39\xb6\x5c\x84\xb1\x35\x18\x27\xd1\x50\xf7\x48\xa9\xba\x3a\xec\xaf\xb6\x33\x1b\x87\x09\x08\xe4\x1a\x89\x9b\xfc\xd4\xe6\x49\xc2\x7c\xce\x4a\xca\xe2\x25\xb9\x99\x7c\xda\xb3\x68\x9a\x2c\x33\xbd\x61\x91\xd9\x3c\x47\x2d\xaa\xe2\xa3\x49\x4f\x53\x43\x9a\x86\x68\x3c\xc0\x5d\xa4\x5a\x0b\x44\x73\x9a\x85\x54\xb0\x9b\x19\xe2\x07\xa7\xfe\x63\x2d\x91\xfb\xe5\xc2\xda\x57\x59\x81\x0c\x53\x8e\x5e\x7d\xbe\xae\xa5\x0b\x4a\x9b\x5a\x8c\x67\x54\xd6\xfc\xb4\xea\x08\xbb\xa6\x0a\x8c\x40\xaf\x63\x61\x5f\x0f\xd4\x31\xf2\x07\x4e\x66\x20\x19\x85\x79\x05\x68\xc6\xec\x80\x7c\xd3\x90\x55\x39\xc0\x0c\x3b\xa8\xf5\xc3\x87\x01\xd0\x8e\xaf\x55\x86\x70\x00\x78\x85\xcf\x8a\xa0\x0d\x83\xaf\x6b\xa9\x4d\xc0\xd1\xcd\x7a\x4b\x31\x30\x30\xc1\xa7\x08\xaa\xe8\x04\xdb\xa8\x60\x13\x02\x3f\xe8\xac\x42\x5c\x9c\xad\x75\x37\xcd\x1f\x6c\xe7\x69\x52\x74\x23\x9b\x51\x73\x96\x93\x3d\xc3\x26\xe7\x6b\x95\xad\x5a\x4e\x4d\xbf\x60\xdb\x26\x8d\x50\xcc\x0d\xc1\x37\x0a\xa1\x88\x0e\x91\xac\x42\x93\x13\xf8\x76\xd8\xf7\xb4\x96\x3b\x1b\x48\xfe\x17\xc0\xb5\x18\x12\x4a\xf3\x28\xf0\x50\xc9\x81\x2c\x97\xe1\x6b\x5c\x7a\x30\x26\x9a\xd2\xbe\x22\xbd\x2f\x10\x07\x1f\xd0\x4b\x48\xe3\xb7\xb7\xf6\x99\x59\xc6\xbb\x6a\xba\x7e\x29\x59\x3f\x88\x1b\x2d\x0e\xc7\xe3\x24\xa6\x6e\x83\x46\x86\xcc\x06\xb8\x75\xdb\xe4\xb9\xf1\xac\x23\x4e\xb2\x70\x9f\x67\x65\xf4\xab\xa2\x9f\xf4\xf2\x24\xc5\xd4\x61\x48\x58\x7e\x99\x6f\x9a\x45\x58\xcd\xab\x36\x87\x37\x86\x8a\xe9\x3b\x13\xd5\xf0\xf5\x4e\x2d\xbf\x39\x37\xd7\x8e\xac\xc9\x9c\x1b\x84\x53\x5d\x8b\xa4\x5f\xab\x25\x77\xff\x51\x3b\x59\xa3\x60\x78\x8b\x20\x6c\x5b\xe7\x9c\xba\x04\xc0\x01\xe1\xaa\x65\xe1\xa5\x26\x16\xf0\xed\x47\x11\x61\x91\xe2\x55\x9b\x66\x61\x12\x63\x49\xe3\x98\xfe\x8f\xaa\xe7\xfe\x3f\x2a\xce\x1b\xb3\xbc\x9c\xda\x65\xc2\x60\xfa\x3f\x98\xea\xa8\x4f\x4e\x6d\xf8\x51\xcc\xc2\x68\xd5\xa6\x40\xd1\x54\x34\xea\x44\x9b\xb3\xfc\x0e\xc1\xd2\xd2\xba\xe4\x7f\xa8\xa5\x96\x7e\xb5\x3d\x32\x71\x31\x30\x3d\x88\x33\xb7\x14\xdd\xc5\x95\x89\xaa\x15\x05\x4f\x2a\x92\x2d\x6a\x8d\x4c\xc0\x41\x86\x50\x01\xd6\x86\xaf\x3d\xcf\x81\xcd\xec\xa8\x1b\xd9\x69\xb5\x73\x36\x55\x82\x98\xdb\x95\x9d\x86\xbd\xcb\x5e\x4c\x6f\x3c\xa9\xa9\xae\x07\x85\xcc\xa5\xb8\x6b\x80\xbc\xf0\x75\x13\xbd\xc4\xb8\x18\x09\xdf\x93\x98\x8f\x96\xe2\x0f\xda\xbe\xfc\x3f\xdf\x0e\x63\xfb\xca\x38\x0a\x7b\xa6\x5b\x4e\xf3\xaf\x7f\xc9\xd1\xf4\x7b\xa1\xf3\x33\x0e\xe6\x69\x7a\xbd\x64\x34\x36\x71\x68\xfb\x33\x9e\xed\xfa\x82\xae\xe3\x3f\xd2\x51\xae\x29\x4c\x00\x1c\x0b\x30\xee\x4a\x7a\xd7\x7b\xb4\x79\x4a\x64\xce\x4f\xd2\x90\x08\x51\x28\x0d\x1c\x5e\x13\x3d\xb2\x0e\xf3\xba\xb0\xc0\x67\x38\xc4\x39\x71\xfa\xef\xdd\x50\x85\x1c\x08\x08\x22\x48\xbe\x4b\xd6\x45\x80\x9d\x88\xf8\xf0\x38\x47\x2b\x7c\x45\x48\x2b\x60\xb3\x7f\x14\x28\x95\x5e\xce\x08\xc3\x23\xfd\x2d\x64\xb5\x10\x8c\xdf\x0c\x94\xd4\xce\x26\x65\x5d\xa5\xf8\x4f\xc3\x21\xaa\x57\xa5\xd7\x2b\x2d\xa5\x2a\xe5\x61\x63\x13\xe5\xeb\x33\xbe\x91\x71\x27\x16\x3d\x92\x32\xb7\x74\x47\x95\x10\x34\x23\x67\x7a\x62\x52\x51\xc7\xdb\x2e\x54\xb0\xb0\xb0\xbf\xdc\xb9\xe1\x28\xec\x13\x21\x6a\x4b\xa9\x43\x7f\xac\x1c\xf4\x8f\x27\x4f\xf9\x8a\x52\x48\x51\x45\xdc\xb3\xd9\xb4\xda\x79\x0c\xb5\xc7\xf1\x79\x04\xd8\x09\x54\x66\xae\xd1\x16\x81\xe9\xba\x5c\x2b\x04\xef\x5b\x6c\x97\x96\x43\xf9\xfb\x95\xbe\x83\x19\x4a\x76\x0a\x89\x8e\xf2\x4f\x4e\x2b\x7b\x69\xd2\xe5\xc2\x66\x53\x5e\x0a\xed\x06\x25\x29\xb0\xd3\x3e\x40\x5e\x40\xa2\x3c\x89\xb9\x1d\x07\xb9\x73\xe8\x91\x0a\x41\x9a\xe2\x9a\x46\xa4\xc2\x63\x70\xec\xbe\xe5\xe2\x41\xd8\x73\x2d\x50\x14\x10\xbf\x42\x5d\x30\x52\x80\xf5\x21\x9b\x19\x0c\xc2\xbe\x59\x0d\xf3\x8c\xd0\x74\xc8\xce\x31\x09\xb5\x14\xd4\xe8\x6b\x50\x06\xd7\x94\x6b\x97\xf1\x63\xbc\xd2\x9a\x30\x59\x2b\x71\x02\xef\xdf\x55\xe7\x8f\xe0\x33\x7c\x53\xb3\xfa\xfb\x67\xdb\x3d\x33\x0e\x73\x26\x90\x70\x69\x18\xd7\xb2\x7c\x5e\xad\x3b\x32\xe9\x49\x0c\x9b\x82\x73\x84\x5d\x3e\xbe\x69\xea\xa7\x5f\x33\xe9\xc8\x2d\x25\x2c\x87\x7b\x81\x6f\x6e\xba\xa7\x12\xc8\xa9\x5d\x0d\xed\x5a\xcb\x17\xeb\x4e\x68\xcd\xc0\x13\x81\xf7\xd2\xfb\xc9\x5a\xbc\x8c\xbd\x8f\xa7\xc1\x9f\xdc\x9f\xf8\xcf\xde\x57\xd6\xd7\xd8\x34\xc9\xc6\xa6\x27\x24\xb0\xe2\xbc\xe8\x3c\x90\xa6\x52\x3a\xe7\x50\x0c\x83\x24\x5a\x99\x2e\x27\x52\x41\x08\x0e\xf0\xc2\xbc\xad\x94\x84\x98\xce\x52\x3a\x13\x1b\x3b\x38\xd8\x58\xe9\xb4\xfa\xbb\x4a\xbd\xf8\x9b\x30\x5c\xa2\x52\xd6\xd4\x4a\x54\x1a\xd0\xc8\x3a\x50\x21\xb3\x77\xc1\x17\x10\x2a\xaf\x27\x55\x72\x20\x8a\xd6\xd7\x92\xa4\xff\x50\x39\x2a\x4e\x99\xc1\x11\x91\xb7\x60\xf8\x5c\xf3\xa8\x87\x66\xff\x25\x96\x23\xcc\x20\x18\x02\x50\xb9\xe1\xa6\x10\xa4\x04\x2f\x04\x3e\xd7\xdc\xea\xf8\xc9\x49\x8a\x5c\xc0\xbe\x44\xb5\x8d\xb4\xc5\xf7\xc8\x9a\xc2\x46\x5f\xc6\xf9\x0a\x90\xe8\xc5\xc0\xb3\x5d\x72\xd7\x06\x3c\xf0\xbb\x6c\x73\x19\x09\x44\x8b\x12\x87\x06\x20\xaf\xea\x00\x99\xe7\xd2\xc1\x2e\x00\x22\x50\x4c\xda\x49\xd5\x45\xfe\x45\x4d\xcc\x7c\xd6\x65\xda\x56\xc3\xd5\xb0\x8f\xe4\xc9\x4b\x15\x42\x1c\x71\xff\x3e\xa9\x84\xf6\xba\x26\x32\x30\x73\xe5\x04\xb2\xf2\x14\x52\x86\x40\xd2\x21\x87\x21\x92\x54\x64\xe1\xf9\x1f\x14\xa8\x6d\x58\x2c\x5b\x54\x88\x51\xbb\xe3\xa0\x07\x5b\x1f\x07\x2e\xd6\xc3\xe5\x89\x42\x56\xea\x82\xfc\x59\xe5\x74\x97\x87\x6a\x11\xe7\xd9\x5e\x1a\x04\xce\xf4\x22\x2d\x23\x15\x27\x9a\x57\x57\x8b\xd2\x02\x7d\xbe\x87\xf7\x34\x79\x9e\x58\x93\x7f\x0c\xcb\x2d\x82\x94\x2d\xc7\x94\x76\x08\x96\x93\xff\x4a\x0b\x79\x33\xd2\x4d\x6a\x78\x0f\xf2\x93\xd3\x62\x6c\x53\x04\xe1\x38\x47\xde\xd1\x24\x18\xef\xd4\x32\xa7\xfb\x00\x32\x4d\x47\xb6\x1f\x0a\x38\x95\x21\x91\x13\xdf\x3d\x71\x3b\x78\x4c\x4b\x2f\xf4\x86\x7b\x68\xac\xa4\xe1\x92\x1e\x53\xda\x32\xd5\x0e\xbb\x3d\x51\x14\x21\xbf\xc4\xc0\x20\x0a\x7c\x98\x7c\x00\x87\xf8\xd8\x27\x59\xbc\x87\x3b\x5e\x75\xf8\xe2\xc4\x17\x57\xa1\xb5\x00\x67\x60\xab\x51\xe0\x84\xd2\xbf\x09\xaa\x1b\xf2\xfb\xdf\xae\xaa\x35\xd3\x33\x23\xa5\x7b\xa9\x29\x72\xee\x99\x28\x92\x7d\x8f\xbd\x72\x09\x2f\xc0\x37\x81\x6f\x69\xce\x92\x68\xd5\x4e\x95\x5e\xf9\x6d\xd5\xf3\x0a\xd9\x25\xa4\xe3\x8f\xaa\x70\x3a\xb5\x91\x5d\x35\x71\x3e\xad\xe8\xf9\x2e\x57\xc0\x47\xbe\x27\xe9\x23\x1a\x0d\x91\xf2\xda\xeb\xd1\xec\xd9\xb4\xaf\xf4\x9e\xd2\x82\xa6\x3b\x37\xbc\x6e\x82\x79\xaa\xe3\xdb\x62\x77\x6e\x6c\x4f\x74\xed\x9f\xdd\xdf\x8e\x6c\x98\x15\xa9\x55\x39\xe4\xa3\x0a\xc8\x72\xb4\x8e\x04\x98\x6f\x9b\x28\xa2\x6c\xac\x48\xbb\xb6\x1c\x07\xf8\x79\xc5\xb5\x6c\x8a\x2c\x4f\x4d\x84\xd6\x81\x67\x25\xb1\xa9\xc2\x91\xe3\x2a\xe7\x98\xa7\x45\x6f\xc5\x22\x0e\xd4\x24\xdb\x92\x0b\x6a\xa8\x0c\x8e\x8a\xdc\xab\xcc\x8a\x80\x66\x6b\xf1\xc1\x62\x98\x73\x73\x44\x5d\x58\x8c\xc9\x69\xda\x3a\x3c\xf1\xd0\x15\x6e\xeb\x43\x82\xe6\xa4\xe2\xde\xd9\xd9\x69\xa0\x52\xff\x5c\xbb\x97\x16\x7d\x3c\x2c\x2c\xe2\xd5\xc0\x5b\xc7\xab\xaa\x9b\x3b\x4d\xa2\x68\x46\x61\x40\x8f\x50\x33\x8c\xf0\xd7\x3a\x5d\xeb\xd3\x17\xd0\x27\xee\xf0\xd7\x0b\x0b\xdc\x8a\xf1\x9e\xae\x28\x8b\x1a\xef\xb4\x17\x20\xff\x26\x4a\xf9\xac\x2d\xa2\x04\x37\xae\x07\x0a\xc1\xf4\x4d\xa5\x18\x51\x44\xe1\x94\xea\xb8\xda\xd1\xf1\x05\xa4\x3b\xda\x5d\x6f\x64\x6f\xe8\x86\x49\xd6\x0b\xc9\xf3\x9c\xd2\x48\x45\x26\x24\x10\x5d\x06\xfa\x69\x84\x0e\xef\xd7\x32\x28\xbf\xda\xee\xa6\x49\xdc\xe3\x84\x1c\x76\xc7\x6d\x2d\x52\x87\x99\x67\xdd\x5d\xd5\x10\x97\x99\xcc\x76\x13\xae\x03\xb9\x7c\x99\x4a\x9e\x35\xd0\xe3\xb6\xad\xc9\xc8\x8a\x6d\xdd\x2d\xbf\x75\xeb\xae\xae\x6f\x84\x69\xb7\xc8\xa6\x14\xed\xec\x59\xe5\x27\xdf\xd6\x10\xb7\x8f\x15\xbd\x61\x7f\x5d\x88\x4a\x90\x05\x19\xe2\xd9\x31\x77\x37\x15\x55\xd7\xcd\x9a\x75\x5d\x58\x68\xdb\x57\xc6\x36\xee\x87\x79\x91\x4a\x32\x5e\x30\xb4\x7e\xd3\xd5\xe9\x5f\xf7\x2d\xb6\x7b\xeb\x3d\x5f\x30\x61\xf9\x69\x85\xc1\xbd\xe8\xd8\xdd\x62\x93\x17\xa9\xdb\x18\x15\x42\x27\xc9\x73\x78\x0d\x86\x74\x35\x8c\xc1\xc2\x2b\x2a\xd6\xf4\x87\x7c\xa3\xd4\x38\x73\xf3\xca\xd8\xac\x5b\x66\x83\x64\x81\x17\xe4\x8b\x61\x42\x35\xa3\xea\xcc\x86\xe7\x86\xe8\xa6\x89\xe9\xf7\x4c\xc6\x69\x4b\x0e\xb3\x68\xbf\x48\xc8\xe5\xc2\xd5\xf1\x38\xb5\xbd\xd0\xeb\x40\x0a\xab\xb4\xf2\xc1\x37\x6b\xe1\x0b\xe1\x7f\x0b\x38\xd3\x2e\x85\xe4\xd3\x49\x4d\x9c\x99\x79\x1a\x0e\x22\x34\x14\x0a\x53\x58\xcb\x31\xfa\xdf\x54\xb8\x88\xe3\x8e\x2b\x25\xb3\x79\xce\x92\x7d\x2a\xee\x03\x82\x4f\x94\x41\xb6\x3f\xd9\xc2\x42\xbb\x1f\x2e\xc3\x50\x4b\xab\x76\xcb\x29\x9b\x5f\xc7\x01\xc4\xff\x10\xa8\xdd\x70\xdd\x15\xbf\xb2\x51\x92\xe4\xc3\x68\x7d\xca\x77\xb4\xa1\x98\x85\x47\x85\x10\x07\x33\x49\xa9\xa6\x95\xd4\x96\xa7\x7e\x92\xa2\x11\x54\x62\x71\x05\x8a\xf9\x65\x0d\xba\xb6\x7f\xb6\xbd\x9c\x80\x63\x03\xaf\xb3\x89\x2c\x01\x33\x02\x06\x9a\x8d\xbc\x02\x21\x2c\xfa\x76\x2f\x3d\x3b\x0a\xfb\x17\x03\x5d\xa7\xbd\x3f\xf1\x38\x89\x7b\x98\x46\xee\x18\x82\x63\x23\x78\x26\xdf\x05\x3c\xdd\xf1\x68\x7e\xae\x24\x4a\x4e\x48\xb1\x91\x7f\xa8\x7b\x43\x6e\xe8\x18\xf0\x96\x3b\x23\x23\x13\xf7\x1f\xf6\x84\x2e\xb0\xea\xc8\xf3\x43\xbf\x0e\xb5\xb2\xc7\x3b\x4a\x02\x8d\xe9\x32\x60\x02\x6f\x04\x5e\xac\xf0\x7d\xfc\x3a\x6b\x13\x23\xb6\x86\x9b\x7b\x6e\x52\x51\x4b\x74\xd8\x0a\x82\xa4\xef\xa6\x7f\x73\x8c\x72\xe5\x57\xa0\x02\x71\x79\xa2\x79\x73\x6e\x29\xc2\xb1\xfb\x93\x1a\x0e\x18\x01\xf1\xff\x0f\xa4\xbd\x42\x1f\xd2\x90\x4c\xca\xc2\x48\xb8\xaf\xf5\xc7\x85\x73\xcf\x77\x7c\x5c\xd1\xd5\x2b\xaa\x74\xb1\x19\x74\xd4\x9d\xae\x50\xf3\x27\x8a\x24\xfd\x8f\x9a\xe2\x5f\x30\x66\x33\x8a\x44\x80\x1e\x8a\xbb\x17\x10\x4c\x19\x1e\x9f\x47\xea\xa6\xa1\x1d\x90\x91\x12\x4c\xcc\x77\xc8\xd5\xe1\xeb\x4a\x16\xbd\x1b\xd9\xcf\x2a\xf1\x80\x1f\x60\x96\x18\x0e\x85\xc0\x06\xfe\x07\x89\x3e\x6d\x7d\x4c\x60\x09\x58\xee\x29\x26\x50\x81\xad\xfe\xfe\x44\x75\xf4\x31\xc1\x31\x82\x07\x50\xc9\x02\xc1\x82\x2d\x06\xc0\xe7\xc7\xd8\x98\x68\xc8\x78\x3b\xf0\x12\x2f\xac\x9d\x81\x64\x42\x1b\xb1\x28\x67\x5b\x94\x43\xb4\x87\x3a\x9d\xf0\x4e\x6f\x06\xad\x5f\x3b\xe0\xd5\xc8\x4b\xa3\xcb\x54\x24\x94\x8d\xc2\x13\xb6\x36\x7c\x1f\xe6\x1b\x08\x24\xe0\x20\x3e\x04\x35\x21\xbc\xf4\x27\x81\x09\x67\x01\x15\x14\xc4\x00\xad\xfe\x1f\x40\x05\x03\x3c\xcc\xa3\x9d\xd6\x73\xf3\xae\x99\xc4\x67\x6b\x22\x62\xed\x98\xf1\xf2\x1b\x9b\x94\x5f\x81\xff\xf8\xbd\x89\x6a\x0d\x0a\x54\xcb\x90\xd2\x80\xbe\xac\x4a\xdc\x6b\x26\x4d\x4d\x9c\xef\x52\x9c\x46\xe7\x82\x9d\x9f\xab\xd0\xd4\xc0\xa4\x5c\x9b\x78\x8f\x87\x11\xdb\x80\xec\x9e\x98\xf8\x9c\xea\x55\x15\x5b\x2c\x17\x26\x85\xaa\x2b\xeb\x0c\x06\x2a\xf0\xfc\x58\xf9\x9a\x23\x33\x1a\x95\xae\x26\x27\x4a\xe0\x46\xbf\x8e\x9d\xc4\x37\xce\xa6\xf6\xed\xb8\xc8\x43\xe7\xc0\x28\x9f\xc5\x89\xb9\xe2\xb4\x44\x08\x36\x56\xee\x9c\x35\x69\x34\x43\x5f\x0a\x14\xf1\xfd\x4a\xad\x82\x7e\x5a\x9f\x40\x9c\x89\xd3\x90\x8c\xeb\x2e\xe9\x9c\xf4\xfb\x44\x85\x85\x40\x58\x52\xd2\xf4\x14\x92\xab\xde\x7e\x72\x3d\xfd\x34\x29\x4d\xf7\x20\xf3\x80\xf4\xc8\x7d\xdd\x61\x71\x5f\x4d\x8b\x19\xa4\x61\xcf\x00\xd2\xe6\xe0\x02\x4e\xb4\x5f\x6b\xc5\x3e\x5f\xe4\x33\x9a\x42\xfc\xcc\x44\x25\xc3\x40\xd1\x8b\xf9\x7b\x13\xbf\x05\x3b\x35\x4d\x0b\x15\x46\xf7\xc9\x4e\x03\xd0\x04\xc4\x28\xe4\xab\x2a\x38\xa7\x90\xae\x9d\xd3\x02\xe7\x9b\xaa\xff\x74\xb7\x82\x76\x8e\x4d\x64\x7a\x8c\xd8\x64\x09\x0e\x25\x20\xcb\x62\x04\xb2\x3a\x9b\xb2\xeb\x69\xd8\xb7\x94\x94\xd4\xfc\x23\xd8\x74\x48\x6e\x08\x6d\x56\x1d\x7a\xbe\xd8\xee\xda\x61\x18\xf7\xa7\xcb\x8f\x63\x97\xff\x62\xe2\x85\x41\x2e\xd1\xe1\x80\xad\x85\xdc\x88\xf4\x34\x3f\x5e\x49\xae\xad\x32\xdc\x91\xd5\x87\x68\xc1\x88\x12\x91\xe2\xee\xed\x25\x71\x32\x0a\x7b\x88\xa3\x85\x43\xb8\xfc\x5b\x38\xf0\x94\x64\x79\x96\x93\xb0\xf7\x35\x4e\x60\xa2\xc4\x09\x59\xdd\xcc\xa1\x09\x1c\x0c\x9e\x39\x2b\x58\x75\xb0\xa3\x8a\xd1\x27\xf9\x1c\xc2\x81\x5b\x67\x20\x5e\xda\xbf\xd4\x8e\x42\xc7\xab\x27\x1f\x52\x1c\x35\x27\x55\x5f\xdd\x20\xb5\x0c\xa2\x11\x92\xad\xf2\x19\x84\x7c\xcb\x67\x1d\x87\xb6\xbf\x8c\xa4\xce\x92\x67\xef\x5d\x5c\x3c\xb0\x45\x2d\xce\x5b\x1f\x2b\x57\xf2\x88\xca\x29\x76\x6d\x3e\x8c\xec\xd0\x8e\xa6\x94\xd4\x11\xb0\x91\x8e\x57\xc3\xd1\x35\x1f\xaf\x28\x6d\x75\x8b\x30\x62\xe6\x11\x18\x69\xc8\x97\xc2\xce\x1e\x9d\x28\x8d\xdf\xcb\x35\x80\xd0\xc1\xe7\x89\xb5\xee\x55\xca\x91\x3b\x6e\xf7\x0f\x27\x9a\xf9\xef\x84\x06\xec\xfc\x17\xec\x13\xd4\x8b\xae\xd4\x6a\x91\x73\x73\xed\x2c\x37\xdd\x30\x0a\x5f\x45\xfb\x04\x12\x12\x97\x75\x4f\x21\xfa\x0c\xe0\xaf\xd7\xd9\xf0\xe6\xe6\xda\x49\x91\x9b\x65\x99\x16\xc4\x1b\xbf\x1f\x28\x2c\xc7\xef\x4f\x3e\x55\x97\x83\x78\x61\xf6\xa5\x99\x72\x09\x23\x77\xfe\x5d\x05\x1f\xfa\x2e\x0e\x46\x64\x5a\x5e\x53\x38\xf9\x9b\x6a\x9c\xee\x6a\xbe\xb3\x34\x19\x27\xb1\x8d\x59\x9f\x93\x15\xef\x74\xbb\xe8\xf4\x86\xdf\x09\x2b\x61\x3c\x48\xa2\x95\x56\x15\x79\x48\x47\xa0\xe4\x42\x1b\x75\x97\x68\xff\x4c\xd5\x74\xb6\x91\x41\x03\x1e\x07\xa7\xe3\x5f\xa9\x86\xc7\x21\x01\x7f\xc1\x8a\x41\x13\xa6\xc2\x08\x69\x9a\xa3\xc1\x5e\xdc\x42\x53\x2e\xf3\xef\x2a\x61\x01\x13\x76\x93\x34\x16\x82\x06\x04\x38\x1c\xd6\xf2\x4d\xf0\x37\x7d\x57\x46\x68\xf3\xe1\x7a\x94\xe5\x61\xd4\xb5\x59\x9e\x26\x88\x45\xe0\xd8\xbf\x1d\x78\xef\xff\x6d\x67\xfc\xb3\x64\x64\xf3\x70\x64\x77\xe1\x07\x70\x50\x9c\xf7\x14\x66\x2b\x4f\x6e\xa8\x2a\x22\xf2\xa3\x74\xf2\xf6\xd8\xd3\x80\xef\x7a\x89\x52\x18\x92\x60\x7a\x5c\xb3\x85\x45\xa3\xd2\xf6\xcf\xcd\xb1\xdd\xbc\x49\x19\x5f\xbe\xae\x25\xcc\x16\x16\xda\x61\x3c\x88\x8a\x32\xb0\x6f\xa9\xde\x6a\xd8\x4b\xe1\x6d\xaf\x63\x63\x96\x28\xbc\xe6\x23\x0c\x59\xb1\x9f\xc1\x5f\xe2\x9b\xda\xac\xce\x1f\x6c\x27\x63\x1b\xbb\x9c\x3c\xec\xef\x5e\xf2\xc7\xe1\x4f\x43\x0f\x94\xe1\xb0\x3a\x5a\xef\x13\x0c\xe4\x41\x51\x5e\x03\xcb\x86\xe9\xaf\x86\xee\xe9\x04\x48\x4d\x4f\x27\x48\x6a\x7f\x5a\xf6\x89\x6d\x00\x8c\x91\x2c\x67\x47\xee\x0e\xf2\x9d\x1b\xd8\x1d\x92\xd1\xf5\x90\xad\xef\x4d\xbc\x00\xc1\x45\x45\x66\x7f\x33\x50\xca\x26\xe7\x2a\xa2\x09\x81\x07\xa0\x1f\x9d\x54\x7a\xf3\xa0\x25\xd3\xf2\x0b\x9c\x6b\x31\x7c\xe3\x1c\x98\x35\x1b\xf5\x92\x91\xed\xd3\xc6\x13\x12\x09\x55\x13\x3b\xbf\x9d\xc0\xfb\x85\xd9\xa5\xf6\x8b\xf3\x07\x1f\x23\xcc\xb2\xa0\xa6\x15\x6e\x17\xfd\x76\xf0\xad\x4f\x90\x1f\x2c\x7a\x43\xf4\xfb\x72\x5c\xd1\x18\x08\x63\xa1\x87\x5d\x7d\xa4\x70\xe6\x3f\xc5\x71\x04\x27\x11\x52\x24\x98\xd5\xc3\x81\x5a\x23\x47\x74\x88\x03\x41\x04\x38\x69\x3b\x3b\xaa\x1d\xf3\x4f\xd5\xf4\xac\x86\x59\x98\x33\x43\x1f\xb2\x06\x7f\x4e\xe3\x88\xb0\xe2\x0d\xd5\xc9\x7c\x36\x50\x6c\x5d\x75\x2d\xf3\xfd\xb3\xed\xc8\x84\x9c\x5e\x80\xfb\x7c\x4a\x51\xe4\x9d\xaa\xa9\x21\x95\x66\x93\x18\x9d\x53\x16\xc7\x57\xb8\x07\x24\x33\xf9\x5a\x25\xaa\x46\x26\xcb\x21\x2b\x28\x45\xf1\x5f\xd0\x13\xba\x36\x7a\x4f\xb0\x78\xaf\x82\x4a\x6a\x39\x16\x0d\xd0\xa4\xc8\x42\xf7\x1e\xe8\xd3\xff\xfc\x9f\x72\xaf\x18\x0a\x4a\x3b\x36\x3c\xc0\x66\x47\x67\x7b\x71\x79\x6e\xae\x3d\x0a\xb3\xd4\x8e\x53\x9b\x91\xa9\x56\xe7\x36\x2b\xf9\xf1\x8d\xe6\x86\x2f\xa2\xa8\x45\x4b\x05\x99\x44\xb4\x14\xf1\x75\x13\x31\x6b\xdf\x46\x40\xfa\xbd\x30\xcb\x16\x06\xe7\x30\x5f\x37\x88\x97\xb7\x33\xd3\x9f\x56\x9c\xc5\x1f\xc0\x19\x94\x12\xbe\xcf\x13\xa1\xc7\x4c\xca\xdb\x0d\x1e\x5e\x37\x4a\x12\x44\x08\xac\xe9\xac\x5a\x51\x3c\x84\xdc\x8c\x4c\x6e\x8b\x14\x21\x0a\x42\xd9\x9b\x13\xc5\x7b\xe5\x69\x35\xff\xe6\xe3\x1d\x9f\xb1\x00\xb8\x10\x26\xe0\x38\x01\x03\xf0\xf7\x3f\x55\xa9\x96\x61\x12\xf5\x93\x55\x6a\x49\x70\xb9\xd3\xf3\xba\x77\xe4\xbc\xa2\x06\x1f\xdb\xb4\x67\xe3\xf2\xe0\x7e\xd8\x27\x20\x36\x39\x63\x82\x8d\x72\x55\xc7\x9e\x08\x31\xe1\x54\x60\xa6\x5d\x17\xb0\xd3\xeb\x3f\x1d\x28\xea\xbb\xab\xb4\x7b\x31\x57\xbf\x8d\x41\xe5\x4f\x77\x94\x3e\x4b\x64\xd2\xd1\x6e\xa5\xd8\x7e\x75\xa2\xa4\xd9\xae\x56\x8b\x7e\xfb\x16\x1d\x77\x26\x79\x68\x87\x95\x95\x43\xd6\x4c\x90\x0d\xde\x0d\x4c\xfa\xfd\x08\x50\x09\x01\x66\xfa\xc6\x8f\xe3\x13\xa5\x63\x3e\x99\x78\x24\xe3\x43\x1d\x65\x63\xaf\x57\xf5\xea\x62\xfb\x99\xd6\x8b\x4a\xb5\xd4\x99\x95\xbb\x8a\xd1\x75\x2f\x12\x39\x58\x51\x90\x41\x93\x24\x9d\xd2\xac\x9c\xa1\xde\x68\x3c\xcb\x34\x64\xbe\xb1\x05\xbe\x0e\xf7\x00\x88\x1f\x10\xfe\xe3\xfa\x67\x08\x33\xa4\x91\x41\xf7\x58\x00\x0a\xcd\x59\x28\x44\xe1\x9c\x75\xd8\x80\xa7\x83\x63\xec\x23\x98\x4e\x04\x0e\x8f\x03\xcb\x8a\x01\xbe\x0e\x54\x0b\x5c\xd2\x23\x8a\x61\x68\x06\x9d\xe5\xae\x11\x64\x6e\xce\x01\xe3\x29\xbe\x07\x1e\x9f\x49\xfb\x9d\xea\xe6\xc2\x82\xb0\x49\x6d\x51\xc3\x07\x5c\xe8\xaf\x35\xa7\x40\x6d\xdc\x5f\x07\x40\xd2\xf5\x0b\xf9\xde\xa1\x1a\xac\xe0\xf3\xed\x6e\x92\x0f\xad\xeb\x79\x66\x16\x21\x9c\x73\x42\x29\xf4\xa4\xea\xb4\x8b\xfb\x76\x14\x97\x87\xd4\xdc\x1c\x37\x03\xbd\x46\x83\xca\xd7\x6e\x6f\xf6\xed\xc0\x14\x51\x4e\x8e\x1a\xf2\x8b\x28\x80\x32\x33\x11\x7d\x06\xab\x05\xdb\x14\x1e\xc3\x19\x15\xbf\x8e\xe2\x90\x52\x19\xcc\xf3\x09\xf3\x8a\x4c\xdd\x5e\x45\x66\xde\xa2\x0d\x24\xe9\x37\xdd\x59\xe8\x1a\xa2\xa2\x24\x73\x9e\x89\x80\x8b\x3c\x0a\x13\xe9\x76\x81\xd7\xd4\x44\x32\x0e\x94\x0e\xd1\x27\x69\x45\xc1\x47\xbc\x31\xf1\xd4\x3e\x6f\x2a\xd0\xfc\x8e\x4e\xb9\x80\x61\xdb\xdf\x0f\xfe\x3f\xc6\xfe\x2c\x48\x92\x2c\x3b\x0f\x83\xab\x3c\x32\xab\xaa\xab\xab\xf7\xee\x19\x62\xf0\xff\x62\xd0\x34\xe4\x40\xd4\xb0\x08\xc2\x28\xa3\x09\x2f\x1e\xcc\x2a\xcc\xa0\xd2\x30\xd9\x69\x59\x85\x6a\xa8\x8c\x0f\x7d\xc3\xe3\x66\x84\x77\x7a\xb8\xc7\xb8\x7b\x64\x76\xb6\xe9\x41\x0f\x92\x1e\x68\x12\x0d\xa2\xa0\x95\x26\x13\x61\x84\xcc\x00\x09\xc4\x26\x80\x30\x0c\x00\x46\x0c\x30\x18\xcc\xd6\x33\xbd\xef\x4b\xed\xfb\xbe\x57\x56\x55\xb6\xcc\xcf\x77\xce\xbd\x27\x32\xbc\x61\x7c\x69\x73\xef\xca\xcc\xf0\x70\xbf\x7e\xee\x39\xdf\xf9\xce\xf7\x29\x02\xcf\x59\xd0\x9a\x54\x6b\x43\x08\xcb\x7f\x88\x75\x82\xf4\xfc\xb4\x92\x8c\xbc\x89\x7d\x15\x4b\xf0\xfd\xd0\x17\x86\x9f\x86\xca\x6f\x63\x03\x6b\x1b\x91\xef\x38\x2d\x0d\xf1\x2a\x09\x7e\xe1\x57\x9c\x02\x92\x02\x57\x4e\x62\x65\xe1\x03\xb5\xc4\xd1\x26\x65\x3c\xd8\xba\xdf\x55\x3a\x61\x65\xcf\x9a\x92\x05\x21\x17\xf8\xaa\x8f\x8e\xfc\x1d\x3f\xaa\xc5\x1f\xac\x01\x3f\xa5\xfa\x82\xd8\x14\x1b\x5a\x1a\xbf\x31\xd5\x74\x5b\x58\x68\xf6\x86\x69\xc7\xad\x3e\xe4\x2a\xef\x13\x9e\xc4\xc7\x6a\xf0\xb9\x6b\x86\x49\x86\xd4\xaf\x7a\x1a\xce\x13\xa3\xfa\x46\x7c\xf2\xb9\xb3\xab\x83\x38\xe9\xe6\x71\x1f\x8e\x2a\xb2\x3d\x28\x33\x72\x26\xad\x00\xd1\xb8\x17\x2a\xa1\xb4\x81\xb5\x1d\x52\xef\xf1\xba\x5a\x57\x54\x82\x70\x13\xb7\x57\x26\x70\x7d\xa2\xf9\xbe\x32\xdf\xbb\x58\x33\x9d\xe2\xd9\xd7\xf4\x97\xf1\x83\xef\x21\x85\xe2\x93\x3a\x03\xff\x9e\x19\x0c\x98\xa5\xcc\x3a\xe1\x23\xaf\xfa\x70\x2e\x7c\xd6\x5d\xb8\xe9\xb7\xab\x2a\x8b\x72\x7f\x1f\x8e\xdf\x0b\x35\x67\xc0\x97\xee\x84\x9e\xad\x37\x34\x1f\xa9\xfa\x92\x9b\x47\x95\x7e\xd6\xed\x1a\x51\xde\xc5\x26\xb1\x26\x72\x0f\xbc\xe1\x75\xbd\xa5\xd3\x90\xf3\x93\x09\xe7\xe7\x49\x2b\x75\xe3\x55\x2a\x9c\x37\x81\x2f\x20\x3a\x7c\xaa\xfb\x03\xd7\x6b\x64\x42\xf6\x37\xe3\x34\x4a\x86\xce\x09\x9c\xe7\xb7\xe8\x4f\xc8\x2c\x97\xaf\x00\x87\x55\x0a\x27\x3f\x2a\x3e\xe6\x6a\x1e\xf2\xc2\x54\x26\xf4\xe2\x8b\xcd\x76\x42\x0b\xbb\xa1\x34\x20\xc1\xe6\xc5\x7e\x83\xb1\x03\xc0\x5c\x1f\xfb\xf9\xb6\x41\x62\x8a\x1e\xe6\xd4\xd9\x99\x96\x7e\x47\x5c\x6a\xbd\x2c\xdd\xc0\xe6\xab\x71\x91\x01\x61\x41\x4c\x62\x6d\x2b\x3e\x99\x5a\x3d\x5f\x6d\x76\x6c\x01\xd1\x54\x10\x21\x10\xa9\x41\x4b\x45\x64\x02\x3e\x2f\x56\x21\x4a\xa5\x3d\x37\x7d\x24\x35\xd2\xa2\xf5\xad\xab\x8d\xa9\x54\xec\xab\xcd\x92\x04\x61\xf1\xc6\x39\x4f\x5d\x37\x26\xf1\x66\xb8\xc5\x9d\x72\x69\xb1\xb9\xb8\xb4\x18\x28\xe2\x0f\x6d\xe5\x92\xf1\x4a\xad\x63\x3a\xab\x26\x8d\x6c\x67\x07\x7d\x4d\xa9\x44\x95\x05\xc9\x9e\xb1\x9f\xef\x7f\xac\xa5\x36\x4d\x16\xfa\x71\x0a\x54\x4e\x17\xff\xb2\x16\x99\xcc\xd2\xe5\x38\xef\x03\x61\xc4\x3b\x7d\x07\x6f\xbb\x63\x51\x7a\x6d\xcf\x69\xe9\xa1\xc5\xa5\xc5\xe6\x5a\x2f\x1e\x70\x62\xcd\x88\x29\x1e\x89\xc0\xa7\x5b\x7f\x67\x7e\xbe\x39\x30\x79\x6c\xd8\x21\xd5\xd5\x53\x4e\x04\xed\xd2\x14\x60\xb4\xff\x50\x33\xb7\x7d\x13\xfb\xb2\x19\x6b\xf0\xd1\x96\x47\x99\xa1\xe3\x82\xac\x79\xa3\x46\xdb\xa0\x19\xa7\x1d\xdb\x76\x9d\x55\xd7\x8e\xf4\xad\xc9\xa9\xc6\xea\xe1\xb9\x66\x64\x93\x24\xf0\xf6\x90\x97\x15\xed\xe6\x72\xdd\x65\x16\xe5\x70\x10\x77\x6c\x51\x06\x94\x8b\xb0\x30\x0e\xbd\x62\x22\x92\x53\xc3\xca\x58\xb5\x69\x87\x57\xb5\xdc\x82\xe0\x6b\x2f\xb8\x5b\xe3\x8b\xe4\xaa\x8e\x89\xf2\xb8\x6d\x95\x46\xe7\x25\xc5\x00\xab\x15\x35\x1f\x0e\x7a\x71\xf5\x2d\x96\xe6\x9c\xd9\x8b\x1f\x41\xfb\xab\xba\x0a\xd1\xac\xe5\xeb\x0c\xfd\x88\x23\x62\xf5\xdb\xe2\x94\xe8\xdf\x11\x42\x46\xb1\x34\x5d\x0e\x75\x78\x72\x41\x3b\xf5\x5b\xb7\xe5\x73\x2f\x5e\x1a\x2f\x48\x14\xf9\x4c\xcd\xa5\xac\xc5\x49\x27\x61\x05\x61\xd7\xa4\x71\xe0\xc7\x09\x65\x49\xd0\x20\x92\x94\x74\x79\x6a\x4d\xff\xb2\xbc\xec\x9a\x2e\x31\x94\xdc\x70\xba\x8f\x31\x17\xf5\xec\xdc\xa6\xd3\x48\x2c\xcc\xb2\xcd\x77\x54\xdf\x9c\xcd\x68\xe8\x57\x80\xb7\x6d\xa0\xb8\xc0\x3f\x3c\x03\xd8\x4f\xcf\x56\xe1\xe5\x7c\x48\xb7\x43\x02\xde\x93\xca\xf9\xcd\xac\x32\x97\xe1\x88\xd7\x0d\xf4\x1a\x82\xa3\x47\x3d\xb3\x31\xfd\x5b\x55\xc2\x41\x88\xc2\x7f\xfc\x4c\xab\x5a\x17\x78\xbf\x3f\xa0\xcd\x1f\xa9\xdd\x5f\x30\x16\x8b\x9b\x7d\x7c\xa4\xec\x11\x99\x0d\x85\x7c\xf9\x87\x94\x48\xbb\xd4\xe7\x80\x34\x39\x8e\xc2\xfe\x47\x1e\x30\x65\xd8\x13\x12\x5c\x48\x8a\xde\xc2\x9b\x2d\x33\x86\x94\x92\x61\x19\xed\x1c\xfb\x46\x3c\xea\x13\x64\x61\x70\xc5\xc1\x4e\x70\x4f\x27\xeb\x8d\x96\x92\xb6\x3b\x1d\xaa\xed\xf4\x71\x04\x31\x80\xc7\xb3\x04\x8c\x01\x4e\x81\x46\xae\x50\xdb\x43\x4f\x8c\xe3\x49\x6f\xe1\x91\x6c\xdd\x7b\x0f\x3d\xdf\x5c\xce\x72\x1b\x77\x53\x61\x6f\x88\x8a\x2c\xdd\x19\x56\xf8\x9a\x9c\x4a\xf5\xb6\x88\xff\x01\x93\xba\x5b\xdf\xb9\xa5\xb9\x66\xc7\xf6\x4d\x0a\x80\x8a\x05\xeb\x95\xfd\xf4\x9f\x4f\x45\x0e\xd9\xd8\xfb\xf1\x8a\x6d\x78\x47\xd6\xf7\x47\x0a\xe9\xf8\x38\xf4\xbe\xc4\xbf\x3b\x95\xbe\x1d\x9e\x5b\x68\xa6\x59\x6a\xcb\x1e\x0d\xe7\x06\x3e\xa5\xfa\xd7\x8a\x4e\xf9\xaf\x15\xb3\xda\x2e\x2f\x67\x79\x59\x00\x86\x10\x4a\x78\xf5\x6b\x7c\xac\x19\x0f\x7f\x8a\x15\xc5\x27\x8e\xca\x3a\x2c\x09\xc3\x0f\x3c\xa9\x1c\xad\x5f\x3e\xae\x8b\xc2\xed\x1c\x59\x62\xa0\x2a\xc2\x73\x6a\x54\xf9\x1c\x6a\xa8\x09\xba\x94\xa1\x5b\x02\x18\x42\xa7\x65\xfc\xda\xa2\x6f\x7c\x74\xea\xb9\xef\xdb\xd7\x6c\xdb\xd4\x2e\xc7\x64\xbe\xee\x87\x29\x59\xd4\x18\xeb\x10\x70\x24\x16\xfe\x09\x2d\x67\x6f\xf3\xd2\xc4\xe9\xa4\x32\xa3\xcf\xbc\xcf\xa9\x0e\xcd\xc7\xa8\xe8\xd1\x75\xe1\xd6\x3f\x8a\xd0\xab\x23\x55\x39\xdf\xe0\xca\x19\x8b\xf9\x2c\xde\x2b\x34\xc3\x37\xdc\x76\xdf\xaf\x72\x44\xb7\xcb\x61\xbf\xde\x54\x1c\x1b\x3d\xeb\x73\x46\x39\x7b\x75\x86\xd9\x8c\xfe\xf3\xec\x07\xc0\x7d\x77\x35\x84\x33\xc2\x25\x21\x70\xde\x9b\x5a\x88\xb4\x74\xb1\xc5\x4c\xe8\x9d\x4d\x90\xc1\x36\xa6\xd2\x5b\x1a\xab\xef\x66\xa5\xa2\x2e\x01\xcb\xba\xad\x80\xb0\xdb\x53\x9b\xd3\xcf\x93\xdf\xaf\x5b\x0d\x62\x77\x1b\x38\xb3\xc0\x69\x6d\x60\xf2\xa6\x68\xd3\x54\x4f\x04\xb6\x8e\xab\x09\x9d\xa1\x3e\x94\x8a\x01\xa4\xdc\x54\x50\x55\x3b\xcf\xa2\xde\x30\x67\x79\x1f\xc4\xa7\x3b\x4a\x97\x87\xb5\x03\xf8\x09\x2b\xba\x80\x4d\x48\xa2\x4a\x0b\xa7\x05\xa8\xd7\xf8\xa4\x25\x05\x74\x3b\xcb\xfa\x62\x48\xa0\x98\x95\x12\xc2\x78\xc0\x48\x1a\xb0\x35\x55\xde\xb2\x49\xc8\x39\x4f\xc1\xf4\x20\xe5\x21\x02\x7f\x84\xb5\x86\x77\xe1\x66\x6d\x47\x62\x90\x98\x94\x75\x1c\x50\xc2\x3f\xd6\xd2\x2d\x4e\x6e\xb1\x63\x17\x3b\xa9\x1d\x51\xb6\x8f\x6b\xbc\x47\xf2\xb8\x58\xc1\xfd\x92\xb5\x44\xbf\xee\x46\xc1\x1c\x75\xfc\xaa\x4a\x9d\x53\xd3\xb7\x9d\x47\xd4\x20\xd2\x69\xcd\x2e\xf8\x36\x3e\xd4\x39\xa5\xbb\x3d\xf5\x3b\x2a\xaa\x9e\xa0\xed\x10\xff\xff\x23\xda\xa9\xb0\x3b\x7c\x2f\xd4\x56\xc4\xf0\xc3\xe0\x7f\x51\x79\x52\x94\xf5\xdb\x94\x2d\x06\x6a\x50\x16\xf5\x9f\x54\x3d\x1e\x3e\xf9\x85\x83\x8b\x94\x7a\x89\x3b\x18\x5d\x1d\x9f\x7c\x6e\xa4\x6e\x9b\xf6\x3a\x41\x3b\x68\xac\xb3\x2b\x36\x9f\x4c\xb1\x75\x5f\xa0\xd4\x30\xce\xf3\xad\xc3\x97\xb4\x50\x84\x95\xe8\x99\xae\xb6\x9f\x95\x71\x96\x4a\xeb\x4f\x83\x85\x4e\xe1\xde\x19\xa3\x3f\x54\xc8\xe3\x32\x2c\xdf\x5d\x4f\xe6\xa6\x52\x7e\x78\x37\xf4\x2a\x33\xd3\x92\x21\xfb\xf6\x35\x5f\x4e\xfe\xd9\x3f\xec\x98\xd2\x44\x24\xa3\xb9\x34\xc7\x89\x02\xbf\x16\x7c\x32\x75\x47\x0e\x2c\x34\x97\xb3\xac\xac\x72\x4c\xee\xc6\xe2\x2e\x6c\xea\x5b\xb2\xe9\xd8\x99\xcc\xfd\x8e\xd6\xf1\xb3\xb2\x83\xfb\x07\x70\xd9\xe7\x5f\x3d\x6b\x99\x23\xae\xb5\x13\x90\xe8\xed\x68\x69\xed\x04\x25\x8e\x7c\x79\x7a\x64\xf9\xf9\x83\x04\x53\xd3\x3e\x85\xac\x08\x16\x99\x7c\xac\xd6\x82\xe9\x94\xca\x7c\x9c\xbf\xb9\xf4\xf9\x6b\x38\xd8\xb9\x2d\x6c\xbe\x2a\x31\x0f\x39\x0f\x3a\xeb\x7c\xac\xc4\xe1\xfb\x96\x94\xf5\x7a\xf1\x60\x46\x4d\xbb\x5e\x51\xd3\xae\xc8\x98\xd9\x0d\x84\xb2\x28\x71\x06\xf1\xfe\xb8\xa5\x69\x27\x59\xdc\x29\x94\xf1\xf2\x5b\xf4\x81\x7c\xac\x67\x55\x07\x26\x27\x55\x95\x02\xf1\x95\xf3\x53\xfa\x40\xc9\x55\xfd\x28\x7e\xcf\x44\x2b\x81\xc7\xb6\x30\x95\xc8\xc7\xca\xd9\xa3\x9b\x98\x6a\x3f\xa5\xbb\xa4\x0c\x77\x8f\xd4\x78\x49\xb4\x73\xb4\x45\x1c\x01\xec\x33\x4d\x58\xf9\x4c\x0d\xa8\x14\xe4\x1c\xb3\x34\xe7\x6c\x2c\xe8\x2f\x62\xb2\xe9\x04\x62\x87\xb0\x5f\xd5\x94\xf3\xa7\x23\x3f\xea\x73\x4f\x59\xee\x60\xe4\x57\x32\x17\xdf\x68\xb8\x51\x27\x74\x11\x65\x49\x96\xca\x17\x02\xf0\xa2\xf9\x6b\xb7\x94\x8c\x42\xd9\x8b\xed\x32\x0a\x7c\x91\xf0\x0b\x94\xb4\x9f\xc3\x33\x6c\x92\x38\xb1\x08\x91\x76\xd5\x9e\x94\xd3\xdc\xc5\xf9\x79\xe2\x84\xbf\xcc\x5b\x0c\x60\x52\x8e\x44\x7c\x32\x75\xed\x55\xac\xaf\xca\xc1\x21\xcf\xde\x21\xe9\x62\x25\x1a\x3e\xa9\xb3\x04\xb7\x9d\x35\x93\x77\xf8\xf2\x44\x0c\x92\x3e\x89\x4f\xb4\xf5\x02\x09\x64\x05\x4a\x14\x88\xbb\x66\x7c\x32\x95\xe1\x2d\xcd\x35\xed\xcb\x03\x93\x3a\x90\x09\x05\x12\xcf\x8d\xf0\x89\x92\x65\xeb\x9b\xb2\xcc\x2d\x0b\x2b\x3b\x8f\x8e\xea\x62\xf8\xc4\xdd\xd5\x6a\x79\x26\xe2\xf2\x2a\x13\x0e\x74\x2d\x32\xfa\x50\x33\xdb\x3d\x30\xa9\xe9\x9b\x34\x66\xf9\x34\xc4\xcb\x1b\x1a\xd3\xb8\x51\x03\x94\x7d\xbd\xba\x2c\x9b\xc7\xcc\x5c\xc2\x26\xb4\xa9\x8a\xbf\xcd\xba\x20\x58\xd8\x68\x48\x0a\x7e\xda\x81\xf3\xb8\x12\x2e\x38\xbe\x55\xc0\x7a\x7e\xbe\x79\xe8\xf9\x3d\x7e\x5a\xf8\xaa\x76\xfc\x04\xce\xcc\x7c\x4c\xdc\x74\x74\x49\x6f\x28\x72\xea\xb6\x96\xd7\x59\xb9\x30\x9a\xd0\xd8\xa8\xde\x26\x71\x8d\x08\x9c\x4f\xf7\x1b\x04\x2c\x08\x70\x80\xd2\xdb\xc5\xa1\x7d\x62\x4f\x77\xb3\x56\x89\x94\xe6\xeb\x11\x1e\xc5\xb5\x35\x70\x66\xb2\x97\xbd\x5a\x85\x1d\x2e\xa3\xcc\x72\x73\x2c\x5f\x7b\x81\x8f\xef\x28\x87\xcf\x4f\x47\x8f\x08\xc6\xb5\x77\xa7\xe3\xf1\xff\xed\x2f\xb5\xd4\x02\xbe\x42\xe3\x22\xb8\xc0\x13\x64\x18\x88\x56\x17\x5a\xa4\xa8\x18\xee\x69\xcf\xcd\xd9\xb1\x4e\x0f\x76\x8d\xb7\xae\x89\xaf\xbd\x50\xe5\x47\x91\x45\x54\xc4\xcf\x8a\xdc\x07\xfd\x19\x3e\x71\xcb\x2e\x37\x69\x97\xf3\xf1\x45\x37\xe3\x33\xc1\xbd\x56\x73\x43\xd3\x3c\xa5\xfd\xcd\xb6\xc9\x73\x9b\x70\x42\xe6\xa8\x7f\x9e\x1e\x0c\xb3\x34\x14\xee\x68\x37\xa2\x54\x1b\x6b\xaa\x30\x0c\xeb\x35\x95\x51\x8f\x98\x5c\x71\xf3\xee\x55\xc0\x4f\xb1\xc7\x30\xc8\xec\x1a\x11\x0b\x32\x5d\xc2\x4c\x6e\x10\xe8\xfd\x66\x6b\x92\xc4\x82\x2e\x0f\xb8\xe2\x18\x75\x52\xf9\x58\x0f\xe1\x90\xd1\x77\x9c\x76\xb9\xde\xe0\x59\xf5\xf0\x73\x33\x78\x85\x4a\x9f\x57\x52\xff\x45\xdc\x27\x76\xa4\x93\xe1\x7a\x53\x79\xd2\x5d\x46\xbb\xc7\x09\xb9\x79\x07\xce\x37\xeb\x50\xb7\x49\xf5\x3f\xa1\xfc\x55\x7f\x1a\x49\x26\x7c\x1b\x90\x58\xee\x9c\xa2\x6a\x7e\xb5\xb9\x16\x27\x09\x27\x8b\xd2\xd9\xc0\x5b\xc6\xc7\x53\x79\x36\xc5\x6b\x6c\x6e\x2a\xa5\xa4\x85\x2b\xb9\xa6\x4f\x46\xe3\x74\x35\x4b\x56\xb9\x33\x72\xc4\x95\xab\x3a\xfd\x51\x51\xe2\x5b\x2a\x4b\x3d\x36\xb1\x03\xd4\x78\xeb\x36\xab\x5a\x7f\xb6\x7a\x47\xb0\xb3\xec\xa2\x76\x1f\x36\xed\x59\xf0\xa5\x91\x87\xec\xa0\xdd\x5c\x26\xed\x08\xea\xc0\xc7\x6d\x1b\x6f\x15\xd8\xf8\x99\xe6\x4b\x7b\x57\x03\x0d\x17\xab\xb8\xe2\x4d\x84\xbb\x26\x5f\x47\x95\x2a\xd4\xdd\xc0\x39\xd0\xcc\x8e\x15\xe3\xf7\x51\xed\xbb\x66\x07\xc3\x92\x84\x8e\xb0\x3b\x00\x7e\xfb\x08\xbb\x03\x9f\x28\xad\xc3\xa2\x5c\x4f\x6c\x31\x43\xe8\x8e\x00\x84\xc1\x82\x82\x03\xe7\xe7\x85\x53\x12\xaa\xf6\xd9\xc9\x9a\x26\xd2\xc1\x66\x6e\x92\x24\x96\xda\x4c\x66\xb3\xe8\x2a\xd4\xbc\x87\x68\x32\xdc\x76\x01\xc0\xa6\xa6\x9d\x08\x89\x8a\x95\x21\x42\xa5\x3f\x75\x79\x42\xff\x2e\xb1\xe9\x2e\xbf\xd3\xbc\x4e\xef\x36\x03\x0d\xb4\xbc\x11\xcf\x99\xb2\x20\xaf\x20\x5d\xba\xdb\x2f\x0e\xcf\xc9\x4f\x31\xa8\x87\x98\xfc\x06\xed\x07\x40\x30\x6e\x69\xe2\x96\xe9\x13\x0f\xb2\xca\xb2\x50\xc6\x42\x8a\x8d\x8f\x1d\xb2\xb0\x9c\x25\x24\xf4\x43\x78\xa6\xb0\x8e\xa7\x9c\xdc\xd0\xb8\x3d\xa6\x9d\xe8\x9e\x6e\x29\xf7\xa2\x1b\xc8\xb4\x65\xba\x42\xa9\x08\x0d\xcb\x61\x6e\x77\xd0\x82\x10\xb9\x97\xea\x0f\xa2\x74\xf9\x49\xe8\x9b\x14\x37\xe9\xf2\xa4\xb1\x4f\xb7\x55\x94\xe9\xd4\x74\xea\x77\xa7\x72\xa4\xfd\x87\x9a\xdd\xdc\xda\x15\x7a\xe5\xf0\xed\xee\xe2\xd6\xf1\x49\x9d\x76\x95\x4d\x5f\xca\xd6\xf9\xe1\xa1\x82\xc6\xbc\x1f\x1f\x8f\x9f\x73\x99\x08\x74\x6e\xb1\x31\xcc\x2a\xad\x60\x06\x40\xb1\x96\xff\xf7\x91\xea\xee\x62\xda\xd0\x61\x9e\xae\xd3\x7b\x5b\x35\x45\xcb\x35\x6b\xc8\xc5\x07\x5b\xad\x93\x40\x57\xfe\x35\x7b\x7c\xd5\x1a\x63\x0a\xb5\xd6\x0f\xab\xc6\x94\xc3\xb4\xb3\x61\x49\xec\x6e\x30\x81\x21\xd5\xac\xa7\xfc\x45\x41\x40\x2f\x51\xd3\x65\x5b\x16\x40\xc2\x00\x4b\x9c\x9d\xd9\xd7\x5e\x70\xc7\x9e\xeb\xda\xb1\xfd\x2c\xca\x4d\x19\x47\xcc\xd7\x44\xf9\x7f\x4f\xb5\xf6\x1e\x60\x61\xa0\xbb\x7c\x54\xcd\x51\x72\x7f\xd3\x75\xd5\xfd\xec\xd8\xff\xa3\x68\x5d\xcb\x59\xd6\x79\xd4\x8b\x5c\x6f\x23\x92\x8a\x68\x0d\xe0\x33\x31\xf8\x81\xb8\x8c\x2d\x12\x89\x0d\x17\xc7\x88\xbe\xae\xd5\x5d\x85\x0c\x27\x64\x58\x3d\x33\xf0\x65\x1e\xa5\x84\x49\x5c\xf2\xe9\x62\xc0\x07\x64\x7d\x68\x19\x40\xad\xd9\x64\x06\xc3\x3c\xea\x99\x02\xfc\xee\xcd\xa3\x55\x22\xb5\x79\x54\xc9\xdc\xb7\xf7\x12\x4c\x89\x8a\xf4\xbe\x6a\x30\x5e\xd0\x22\x48\x33\x53\xdb\x4f\x95\xc7\x27\x71\x6a\x0b\xad\x83\x26\xb6\x9f\x7c\xa6\x9c\xd7\xaa\x42\xd6\xe6\xc5\xa3\x81\xd3\x62\xe5\x1e\x1d\x12\xe6\xc7\xa9\x17\x82\x4c\xf1\x4f\x34\xc6\x78\x5d\xf5\xa7\x1f\x81\x0a\x83\x8c\x2f\xd3\x37\x47\xc4\x42\x82\xe6\x28\xe9\xd5\x8d\x63\x97\x2f\x5a\x26\xb8\x3d\x8f\xa1\xa5\x20\x9a\x4a\x1e\xf7\x59\x4e\xcc\x5a\x81\xfe\xbf\x86\x2c\x50\xc4\xb2\x6c\x87\x34\xcf\xaa\xcf\x91\x1c\x9f\x36\x7b\xa9\x1f\xfd\xc6\x69\x87\x79\x36\xb0\x26\x45\x36\x29\x5a\x88\xb8\x31\x88\x60\x17\x42\xa5\x58\xf4\xd0\xfb\xba\x93\x7f\x49\xfc\x0a\x6b\x38\xaa\x79\x77\x36\x5f\xdd\xf9\x64\xcb\x37\x69\x6e\xe8\xa6\xfb\x43\xd5\xa5\x69\x0f\x93\xa4\xda\xaa\xb4\x0c\xcf\xcd\x50\x81\x21\x37\x47\x7b\x14\x7f\x15\x0e\x84\xce\xb9\xc7\x07\xcd\xf7\x95\x42\xef\x2d\x8a\x7e\xe0\xcc\xdf\xc3\xf3\x41\x8e\xf5\x36\xe5\x5b\xfc\x0f\x75\xd3\xf8\x6b\x59\xda\xb1\xf9\x8c\xf7\x3f\xbe\xa8\xa7\x1d\xb6\xa1\x9f\x22\x2e\x2a\x1e\xf2\x3f\x5a\xd7\xe0\xeb\x65\x03\xa0\xf6\x28\xf9\x8e\xe1\x2f\xf1\x89\x0a\x5f\xa9\x5d\xfb\xe6\xb0\xca\x3c\x29\x80\x3a\xf9\xdb\xea\xe9\x8b\xbe\x99\x2f\x8f\x57\xb2\x8e\x59\x51\x02\xf0\x5c\xbf\xf2\x89\x4b\x34\x4b\xf3\xb2\xf8\x9e\xe0\xb9\x05\x6a\x88\x93\xf5\x41\x90\xeb\xdd\xa7\xcd\x90\x8f\x6b\xa2\xfb\x62\x33\xcb\x3b\x3c\x6f\xe1\x72\x30\xad\x4c\xeb\x6c\x62\xed\x9a\xcc\x51\x89\xfa\xb4\x47\x34\x3f\x9c\x4c\xd5\x60\x7c\x47\xed\x02\xd0\x70\x7f\x73\xe4\x45\x25\x11\xb9\x91\xc5\x5f\xad\xed\x86\x77\xaa\x4d\x04\x45\x2a\x82\xef\xce\xb1\xda\x4b\x77\x4e\x99\x2e\x1e\x9e\xdb\xdf\xec\x66\x49\xa7\xe1\xd3\xcd\xa0\xe5\x1b\xba\xf7\x46\xca\x60\xe3\xf4\xa4\x75\x05\xef\x16\x42\x6e\xd1\x4c\x97\x1a\x25\xd2\xa5\x66\x3f\x8e\xf0\x1b\x80\xe3\xb9\x0a\xe1\x93\xf0\x99\xe9\xcd\xf3\x15\x7d\x67\x27\x34\x7f\x43\x25\x8d\x68\x57\x6d\x6e\x45\x0c\x96\x1d\xe9\x95\x26\xce\x8d\xd0\x13\xdd\x06\xae\xd4\xe7\x94\x4b\x75\x36\xae\x68\x13\xd2\xd2\xf4\x07\xcc\xa4\x42\xf4\xba\xaa\xfc\x78\xaf\x6a\x59\xf7\xc4\x94\xcb\x59\xde\x0f\x3c\xd9\xf2\x8f\x47\x1e\x18\xfc\xe3\xa9\x42\x96\xe4\x0b\x7b\x62\x28\x29\xb3\x5c\x3f\x44\x6c\x92\x81\x1a\x9f\x81\x9a\x22\xb1\x76\x10\xa8\x97\xf9\xf5\x91\xb2\xb7\x7f\x5d\x75\x8c\xf2\x61\x9a\xc6\x69\xf7\x91\xc0\x35\x45\xef\x29\x01\xfb\x0f\x91\x74\x03\x83\x87\x29\x27\xf8\x64\x3f\x52\x54\xd6\x27\x48\x3d\x86\xbe\xe5\x6f\x3c\xdd\x52\xf3\x61\x3c\xbf\xa4\x46\x6d\x16\x9d\x14\x64\xdd\x1c\xac\x35\x25\xc3\x10\xce\xaf\xcf\xc1\x9d\xda\xdc\x8f\x46\xd4\x62\xd1\x13\x47\xcc\x3e\xa1\x38\x45\xda\xdb\x32\x35\xab\x71\x17\x22\xa5\x6a\xe0\xf7\x07\x78\xe3\x50\x0c\xc3\x52\x1a\x3c\xd3\x06\x36\x54\x91\xdc\xf6\xf9\x1f\xa8\x00\x92\x9e\xfa\x14\x60\xc5\x9a\x14\x6a\x5e\x78\xcc\x0f\x10\x42\xa5\x08\x09\x9c\xbc\xd4\xab\x94\xa5\x88\xb9\xaa\x7f\x79\x57\xb2\xb4\x5b\xb4\x6d\xce\x75\x1c\x7b\x2e\xd2\x46\x23\xfe\x8b\x9e\x03\xdc\x23\xdf\x00\x35\xe1\x7d\x81\x3e\x81\x8f\xeb\x34\xab\x8a\x61\x51\x1a\x96\xc8\x47\xf0\x3b\x43\xf8\x23\x1f\xeb\x45\x99\x67\xed\xc4\xf6\x8b\x3d\x4a\xb4\xe7\x3e\x96\x0d\xb0\xc2\xf7\x46\x6a\x10\xeb\x54\xa8\x78\xb3\xef\x21\x21\x9e\x90\xaa\x91\x51\x92\xea\xc3\xb0\xec\x50\xe6\xe1\x18\x04\x51\xb1\x4a\xa9\xbe\x2c\xe8\x2c\x9f\xd0\x6d\xe6\xe3\x91\xa7\xe1\x3d\xa8\xe9\xca\x2e\x36\x07\x89\x35\x05\x03\x89\x80\x96\xce\x23\xa1\xe2\x13\xa5\xc4\xca\x1c\x94\x41\xb5\x12\xb0\x6e\x90\x0d\xce\x50\x18\xe7\xe3\xb1\x82\xbd\xe3\xa2\x88\xb3\x94\xcb\xc5\x05\x4e\x2f\x79\xf6\x98\x3b\x13\x13\x52\x7b\x35\x69\x7c\xd1\x33\x2b\x52\x83\x39\xe5\x4e\xa7\x54\x71\x51\xeb\x85\xc5\x69\x6c\x19\x2a\x11\x97\x1a\x3f\xde\x70\x41\xf9\x31\x54\x5f\xa3\x67\x3b\xc3\xc4\x76\x38\x3b\x77\x34\xd0\xc5\xa5\x45\xe7\x84\x59\x33\xd8\x99\x33\x02\xee\x22\x12\xac\xb6\x64\xb0\x79\x8f\xca\xd5\x30\x14\x80\xb4\xe9\xb4\x32\xe0\x3f\x5d\xf3\x14\xe0\xd1\xee\xba\xa1\x78\x03\x2f\xa8\xb7\xf1\xc2\xe7\x12\x02\xd7\xf7\xbe\xb4\x97\xbf\x84\x93\x60\xab\x96\xce\xe7\x49\xb0\x1d\x9e\x3b\xd2\x6c\x67\xc3\x6e\xaf\xc4\x33\x91\x99\x73\xcf\xf5\x3d\xaf\x7d\xde\x4f\x4d\x75\x8b\x48\x04\x26\x4e\x3b\xf1\x6a\xdc\x11\xab\x38\x24\xe8\x70\xed\xe0\xe3\xd1\x16\xd2\xdb\x0b\x4b\x73\xcd\x17\x5f\x9c\xf1\xd6\x4c\x6c\x6b\x29\x91\x49\xbd\x8f\x98\x4a\xc1\xcb\x73\xac\xba\xa7\xce\x22\xd2\x04\xca\x41\x8c\xf1\x6e\xf1\x02\xae\x2b\x1a\x87\xb6\x28\xe1\xfb\x87\x52\xe5\xa8\xea\xa1\x3f\x9c\x80\xfa\xbd\xc2\xe0\xc0\xe6\x51\x2f\xc9\x88\x37\x58\xfd\x34\x16\xed\x7d\x25\x7d\xc9\xd9\x8d\xf8\x59\xaa\xa1\xd7\xb8\x80\x6f\xab\x93\x30\xba\x80\x12\x48\x96\x60\x8d\x69\x52\x62\xf6\xd2\x8a\x45\x02\x70\x46\x53\x6c\xcf\x28\x3d\xb0\x6c\x50\xc6\x7d\xf2\x10\x99\xf1\x09\xde\x06\xee\x1a\x5e\xd4\xd3\x55\xb2\xb2\xb9\xbb\xe5\xd3\x94\x8b\x75\xa2\x30\xed\x2c\x99\x68\x59\x21\xaf\x11\xe5\xed\x3a\xa3\x3c\x53\xc0\x3c\x17\xe1\x98\xe7\x1c\x45\x93\x4e\x09\x81\x5d\x56\x6f\x18\xb1\x51\xf2\xc4\xa4\x1d\xa1\xbc\x3a\xf7\x07\x3f\xfa\x72\x4c\x3b\x8d\x5d\x54\xad\xcc\x97\xb2\x38\x2d\x77\xe2\xf7\x38\x19\x02\xc8\x08\x4c\x0f\xee\x1e\x6e\x02\xcb\x59\x37\x9d\x1f\x4d\xea\x9c\xfb\x7d\x93\x81\x62\x84\xc4\xef\xaa\xe1\xe3\xb2\x67\xca\xa8\x67\x73\xca\xdf\xc5\x2d\x50\x3b\x3c\x87\x9e\x3f\x71\x62\xa4\xdc\x0a\xdf\xc7\x17\x91\x8a\x5b\xe1\xaa\x77\xa7\x74\x2e\xab\x44\x2f\x89\xdb\x36\xaf\x0a\x13\xf7\x92\xb3\xff\x47\xe8\x43\xe7\xa5\x29\xcd\x53\x92\x24\x13\x83\x04\x01\xad\xd1\x56\xbd\xae\x7b\xac\xd7\x55\x1f\x33\xcf\x10\x02\x51\x81\x22\xc3\xe6\xe3\xf1\xd6\xbf\x4f\xef\x72\x6f\x98\xd3\xb8\xbc\xce\x10\x4f\x2a\xf2\xc6\x49\x97\x4c\x2f\xc7\xa9\xcd\xd7\x95\xd8\x3b\x90\x23\xc1\xe7\xa6\x99\xcf\x64\x10\x95\x75\x86\x91\xf4\x84\x80\x80\x32\x4d\x94\x4f\x1c\x1b\x78\xcd\x12\x23\xa4\xa1\xe4\xea\x50\x7b\xa2\xbb\xfb\x81\x76\xac\x1e\xe9\x46\x52\x6a\xba\x36\x2f\xe8\x19\xa2\xe4\x78\x0e\x19\x94\x63\x30\x3a\xdc\xe0\xbf\xa2\x9c\x00\xc1\x60\x63\xa4\xd4\xa9\xde\x46\x41\x06\x66\x48\x63\x5c\xd3\x3c\xeb\xc7\x9d\x35\xc1\xa0\xd8\x93\x56\x49\x6e\x5d\x70\x4d\x90\xc2\x89\xcf\xc8\xed\xa3\x8f\x91\xfb\xfa\xb4\x7a\xa5\x6d\xce\x86\x3a\x2e\x43\x0a\x80\xb8\x21\xc1\x02\xca\x24\x02\x4f\x75\x4d\x40\x96\xc5\x02\x87\x57\x79\x45\x09\x9a\xc1\x68\x88\xc8\x2c\xd6\x50\x7e\xa2\x0c\xc4\x70\xde\x61\x65\x6e\x8b\x16\xb7\x4c\x74\x4d\x0f\xb1\x2d\x34\x6d\x8a\xb8\xca\x40\xe6\xc8\x43\x8b\x90\x32\x41\x82\x73\x6d\x2a\x2a\x57\x49\xf8\x4a\x6a\xd7\xf0\x71\xd2\xb6\xa7\xe5\xc0\x27\xa1\xdf\x44\x23\x93\x53\x8f\x8c\x31\x27\xba\x1d\x40\x89\x66\x5a\xc1\xbe\x7d\x4e\x33\x8b\xae\x44\x9c\xea\x15\xae\x7b\x01\x4a\x3b\x68\x8f\x43\x5b\x4f\x6c\xe6\xe8\x13\x71\x8d\xa7\x89\x4d\xe9\xc8\xc8\xae\x9f\xfa\x90\xd2\x28\xd4\xee\xdc\x38\x44\x68\xb9\xee\x66\x99\xcb\x5e\x96\x57\x7b\x29\x3d\x41\x9d\xf9\x3b\xb1\x7c\xa7\xbf\x70\x72\x02\x89\xcb\xd6\xec\x8c\x9a\x0a\x85\xed\x94\x1b\x6b\xf1\x53\xc4\x97\x68\xbd\xf2\x3f\xd4\x4d\x14\xf7\x6d\xc7\xd9\x4a\xd5\x82\x87\x5b\xb7\xef\xfd\x87\x9a\x59\xde\x35\x69\xfc\x0a\xc0\xf8\x60\x41\x4d\xca\x54\xbf\xc8\x27\x75\x5e\xb3\x7d\x53\x96\x36\x9f\x55\xe3\x31\xa7\x55\x77\x69\x16\x2f\x9d\x34\x05\x03\xa7\x24\x75\x51\xab\xff\xfc\xa1\x4a\x92\x4c\x1a\xcd\xd0\x83\xc0\x1f\x83\xe3\xf2\xe6\x51\xb5\x80\x2e\x8d\xbc\x23\xd1\xa9\x29\x5c\x78\x61\xa1\xb9\x6e\x8d\xf4\xdb\xf1\xc1\xc7\xf1\xa4\xf8\x64\x6a\xc9\xef\xdb\xdf\xec\xdb\xae\x69\xaf\x8b\x8c\xb7\x00\xe7\xf4\x27\xa4\x34\xa9\xa1\x52\x47\xd9\x30\x97\xca\x4a\x86\x17\xd5\x20\xa3\x7b\xfd\xff\x66\xb7\x69\x0f\x1a\x25\x66\xed\x31\x7a\x53\x41\x68\xb8\x05\x24\xcc\xd9\x3c\x78\x66\xe6\x4f\x46\x4a\xff\xe2\x0a\x16\x2e\x02\xd8\x5d\x38\x31\xa1\xc2\x39\x87\x5c\x40\xb6\x4b\x4d\x52\xf5\x9d\xc5\x5f\x45\x8d\x81\xdd\x1e\x64\x5d\xfe\x6d\xc2\x5b\x64\xe7\xf4\x20\xc4\x36\x25\x64\xd0\x37\xfd\x7e\x56\xf6\x02\xe5\x87\xfb\x3d\x6c\xcb\x7c\xe2\x5e\x8b\x61\x1a\x65\xfd\x36\xd7\x14\xc8\x07\xaf\xa8\xdc\xf0\xca\x54\x5e\xb2\xff\x50\x33\xca\x3a\x56\x69\x75\x42\x07\x43\x14\xe8\xa4\xf3\x54\xac\x99\xc1\x0e\x8f\x0c\x61\xb2\x8c\x29\xc6\x7a\x32\x82\x83\xa0\x4c\x2a\xa9\x29\x6b\xe0\x97\x52\x98\xcb\x43\x8b\x72\x3b\x60\xc7\x04\xc7\x44\xf0\x33\xa2\x97\xc3\x67\xa5\xc1\xed\xb5\x66\x59\x63\x4e\xdc\x24\x03\x65\x20\x59\x53\xc5\x44\xbd\xac\xa8\x42\x66\xf5\xe1\xe2\xd7\xa5\x20\xd6\xbb\x13\x4c\x20\xc5\xb8\xc9\xcd\xaa\x94\x34\x60\x75\xbd\x46\xef\x15\x1f\x7b\xde\x49\xa4\x78\xca\x9c\x69\xa9\xb1\x8a\x3b\xca\x51\xa5\x6f\x6d\x39\xab\xaa\x8c\x7b\x6a\x0e\xa2\xd1\x0a\x96\xe4\x3d\x3d\x8b\xfb\x09\x86\x1f\x94\x70\xf8\x1f\xea\x46\x2a\x07\x99\xd7\x0b\x75\x0f\xdc\x3f\xfc\x89\xd8\x17\xe7\xeb\x33\x6a\xdc\x72\xa4\xd3\xad\x91\x92\x7e\x38\x41\x37\x45\x86\x08\x3e\x6f\x68\x6d\x39\xb7\x9d\x4e\x6c\x1b\xc1\x2f\x1d\xf4\x48\x9d\x1b\xd3\xbd\xac\x65\x7b\x3e\x9b\x2c\xd4\xfb\x03\x1a\xab\x3f\x20\x02\xdf\x9f\xaa\x36\xd8\xff\x40\x7b\x02\x1f\xd3\x7b\xc2\x3f\xa3\x14\x5f\xda\xb9\x49\x3b\x3b\xaa\x7d\x08\xe1\xeb\x13\x5c\x3c\x62\xc8\x55\x24\x8b\xe2\xa1\xa4\x3a\xbe\x9f\x84\x81\x76\x5a\xaa\xbe\x3c\xff\x4a\xf8\x45\x81\xcb\xe2\x82\x34\x46\x72\x62\x02\x96\x16\xb8\xba\x78\xff\x7a\x1a\xfb\x1d\x2c\x73\xac\xe6\x37\x15\x4e\x86\xd9\x4f\xa1\x4a\xfb\xf9\xf6\x5e\x96\x76\x1f\xf3\x36\x00\x6c\x3c\x20\xc3\xea\x8a\xfd\x28\x1a\x6d\x7c\x46\xcf\x12\x4d\x31\x34\xd1\xb0\x54\xcf\x80\x39\xcf\x66\xfe\xa8\xe7\x44\xab\x84\xf6\x02\xb1\xf9\xf7\xaf\xec\x0f\x11\xcd\xb0\xc9\xdc\xc5\xb3\xc7\x42\xbc\x16\x2a\x60\xf8\x9e\x9a\x71\xdd\x6f\xdb\x9c\xf9\x4a\xa5\xa0\xcb\x06\xd7\x95\x4e\xe3\xc4\x2a\xb7\xc3\xe3\xda\x11\xe7\xf8\x84\xa4\x9a\x49\xcb\x2f\x28\xb6\xe2\xef\x85\x5e\x61\xf0\x1c\xb1\x4e\x24\x06\x54\x6b\x00\x0c\x7c\x56\xbd\x06\x2b\x01\xba\x26\xa8\x2c\xfe\x0f\x3c\x67\xdc\xa7\x77\x68\xe5\xa1\x4e\xba\x4e\xbb\x18\x90\xba\x3d\x63\x35\x6c\xbd\x0b\xf2\x26\x08\x16\x68\xcd\x20\xd0\x6f\x6b\x11\x1a\x84\x8a\xf4\x14\x6e\x2d\xc8\x13\xcf\x30\x8d\x17\x23\x22\xb3\x63\x75\xa3\x7f\x1d\x29\x0e\x38\x00\x70\xc7\x13\xed\x2e\x1a\xe5\xa0\x95\xb5\xf7\xb9\x96\x1a\xcb\xfb\x7d\x6d\x23\xfb\x11\x32\x44\xbc\xda\x4f\x8c\x7d\x73\xb9\x28\x87\x1d\x9b\x96\xbb\x3e\x97\xac\xef\x7b\x4a\xfc\x0a\x0b\x03\x96\xbe\x9e\x2c\x1c\xba\x54\xe4\x2f\x54\xa0\xca\xaf\x84\x5e\x80\x6d\xda\x96\x6c\xdf\x3e\xe9\xc9\x52\xcf\x7e\xbf\x8b\xac\x5a\x29\x55\x81\x04\xff\x9b\x16\xa0\x20\xc7\xd2\x5d\x74\xf7\xb0\x96\xe0\xe6\xcc\x93\x14\xf4\x54\x78\xea\x3d\xd4\x66\xc5\x5a\x4b\xec\xcf\x43\x2f\xfc\xf5\x50\x11\x34\xd8\xe2\x92\x5d\xd6\xea\x64\x7b\x56\xe3\x88\xd2\x7f\xfa\xcb\x00\x08\xde\x52\xca\xb4\x6f\xd5\xd2\xb6\x69\x1e\x9d\x97\x38\x2e\xf3\x94\x9e\xfe\x38\xe5\xa5\x8f\xad\xc1\x5e\x80\xe0\xf6\x07\xf8\x29\x3e\x99\x62\xc7\x1c\x9e\xfb\x7a\xb3\x5d\x15\x54\x6e\x67\x70\xfe\x26\x0e\x12\xfc\x35\x57\x7c\x0d\x92\x61\xda\x45\x77\x46\x20\xee\xc7\x51\x8c\x20\x02\xc3\xaf\x9d\xa9\x64\x74\x17\x85\x09\xb0\xb5\xdc\x75\x13\x2d\x26\xea\xc5\xa9\xb8\x4f\xe1\x25\x87\xb8\x80\xeb\x0a\xfa\xa1\x9e\xcb\x7e\xd6\xb3\xcc\x4d\xdc\xed\x95\x36\x6f\xf8\x40\x79\x7f\xa4\x1c\x2c\x60\x48\x88\xf7\xe4\x75\x6d\x60\x6d\xfa\x83\x36\x4d\xed\x29\xd5\x45\x35\xde\x75\x7e\x0a\xde\xf8\x6a\xb3\x34\xc5\x0a\x67\x75\x32\x02\xa5\xe6\xdd\x54\x83\xb3\x17\x77\x7b\xc5\x8e\xc0\xe9\x80\xf3\xd5\xa3\xdd\x8a\xf4\x49\x38\xb1\xd5\xc7\xf3\xff\xd7\xa4\x7f\x2e\x4d\xf8\xa4\x26\x99\x5d\x6c\xae\x98\x32\x53\x8a\x1e\x57\xb4\x0f\x84\x1e\x90\xeb\x9b\x55\x9b\x16\x41\xf0\x8d\xfd\xfc\xe6\xdf\xd2\x92\x82\xb7\x26\x45\x4a\x8b\x9e\x1a\x65\x61\xd0\x0c\x91\x60\x5b\x4b\x0f\x6c\x63\x71\x23\xe2\x5c\x56\x6b\xe4\x0f\xa9\x38\x61\x26\x5e\xa8\x78\x23\x3c\x0f\x2e\xae\x70\xb5\xa2\x5b\x0b\xbb\xe8\xaf\x8a\x18\x44\xf5\x57\x01\xfe\xbc\xad\x2c\x91\x98\x96\xc4\x3f\x14\xaa\xf8\x88\xc2\xd2\x0d\x94\x1c\x58\x98\x64\x06\x4b\xf6\xe5\x8b\x6a\xa7\xe5\x34\x1b\x38\xdb\x0d\x1e\x5e\x76\xe9\xb0\x4f\x8d\xe9\xaf\xe3\x7a\x6e\x28\x64\x60\xdb\xb8\x6e\x92\x50\xc4\xef\x19\xd0\x42\x63\x8e\x2d\x0a\x64\xc2\x93\x6e\x88\x30\xb7\xdd\x64\x48\x6e\xd7\x6c\x1e\x78\x69\xf2\x63\xe7\xd5\xc4\xea\xb4\xde\xc4\xc2\x42\xb3\x47\x06\x72\xbc\x30\xeb\xf8\x4f\x3e\x47\xec\x0c\xdb\x71\x36\x44\x31\x83\x6a\xfc\xc7\x9a\x63\xf4\x63\x85\x76\x55\x2f\x88\x89\xbb\xe9\x4e\xda\xb3\xc4\x96\x4b\x5d\xd7\x65\xc5\x6a\x3e\x8b\x95\x02\x2e\xdf\xff\x85\xd0\x8b\xd4\xf5\x12\x6a\x15\x2c\x9b\xcf\x42\x6f\x7c\xf2\xd9\x56\xd0\x77\x7e\xfe\x60\xf3\xc0\xc2\x93\xdb\xbf\xec\xaa\x73\xd5\x50\xd5\xec\x90\x8b\x9a\x0d\x74\x02\x9f\x8c\xeb\x3b\x81\x22\x07\x25\x20\x06\xe1\xe4\x66\x07\xce\x4c\x3f\xd0\xac\xb3\xf3\x5a\xe8\xf4\x1a\xbd\x99\xd2\x78\xa8\xd2\x5b\x97\x24\x2e\x78\xfa\x57\xb5\xd1\x03\x25\xf8\x11\x5e\x24\x19\x2a\x6f\x78\xdb\xfc\x7b\x53\xd1\xe3\x85\xc5\xe6\x9a\x49\x4b\x8d\x49\x5f\xd1\xde\xc6\xd3\xba\x8c\x0b\x0b\x07\x9b\xa5\x59\xb1\x04\x83\xe3\x96\xfc\x16\x72\x38\x64\x13\x0f\x95\x96\x3a\xb8\x5c\x62\x3e\xba\x75\x8b\x24\xd9\xb2\x22\x16\xff\xfc\x83\x9b\x18\x91\xdc\x9c\x56\x77\xd8\x7f\xa8\x69\x4d\x5e\xf6\x8a\x1e\xd1\x91\x80\xae\x21\xc0\x9f\x9a\xe0\xd2\x7a\x36\xab\x16\xb4\xe9\x66\x71\xda\xdd\xed\x87\xf7\xc1\x3b\x66\x5f\x5f\xcc\x6b\x8a\xad\xa1\x67\xbc\xe1\x7b\x38\x79\xd1\x2a\x02\x00\x92\x0e\xc6\xf4\xa6\x23\x52\xce\xb4\x82\x5f\xf8\x15\xe6\x92\xdc\x25\x8e\x1b\xd2\xa5\xd9\xb1\xaa\xb2\xb7\x29\x4f\xad\xe5\x2c\xef\x5a\x76\x26\x63\x05\x62\xdc\x6f\x91\x23\xae\x01\x08\x7a\x28\xdb\xbd\x83\xde\x7d\xed\xa0\x77\x5f\x35\x11\xdb\xc3\x24\xe9\x65\x79\x8a\xc9\x7f\xac\x4b\x48\x3b\xf0\xb1\xea\x9e\xda\xbe\xcd\xbb\x96\x46\x59\x7c\x62\x05\x2c\x57\x80\x0b\x9f\xc0\xc6\xf9\xfa\xce\xea\xde\x38\xa6\x95\x4b\x52\x81\x78\x88\x19\xd3\xc8\x53\xce\xf9\x7d\x70\x83\xb8\xbe\xeb\xfa\x81\x9e\x7c\x7c\x2d\x9c\x10\xbe\x5b\xce\xf2\xfe\x8c\x92\x51\x45\xae\x8e\xcc\x76\xdb\x58\x71\xa5\x4f\x85\x8a\xa6\x70\x4a\x75\x7a\x8b\x2a\x17\xe9\x96\x3d\x9b\x52\x9b\x41\x8c\xcb\xfc\x4a\xbc\x82\x7c\x93\x4f\x42\x6d\x6f\x56\xd3\x6a\x5a\x64\x72\x60\xe0\xcb\xe3\xe3\xaa\x51\x7c\x7c\x6a\xc6\x0f\x73\x35\x03\x1b\x95\xf1\x2a\x7e\x0b\x69\xee\xef\xd3\x6f\xf1\x71\xed\x6b\x35\x30\x71\x07\xaa\x9a\xa8\xf4\x2f\x6a\x1f\x27\x96\x0a\x45\x0e\xb2\x1d\x34\x73\xd1\x19\xae\x89\xbe\x55\x16\x17\xf7\x39\xfa\x4a\xee\xa0\x13\x09\x45\xc2\x2c\x6c\x5e\x85\xdf\x19\xdf\x06\xc4\xde\xc9\xda\x6f\x78\x5a\x4a\x08\x6e\xbf\xfc\xd4\x48\xfb\xa7\xc1\xa9\xac\x78\x8a\x6e\xae\x4c\x1d\x28\xf3\xac\x0f\x94\x86\xce\xf6\xb1\xb2\x8a\xfc\x18\xf9\x3b\x2a\xe6\xdd\x2d\x7a\xbb\x9c\x91\x55\xf5\x9d\xf1\x16\xdd\x1a\x29\xcd\x3b\x4e\x63\xc5\xb1\xd7\x17\x67\x1f\x2a\x76\x22\xc7\x5d\x07\x2a\xfb\x06\xc7\x55\x3c\x75\xbe\xcd\x14\xd1\x65\x1a\xb6\x5a\x27\x62\x7e\x1c\x38\xf3\x96\x1b\x0a\xd2\x5d\x33\xc5\x17\xfd\xf0\xfa\xf9\x50\xeb\xa1\x6c\x43\x61\xc3\x1e\x04\x28\xac\x70\xf9\x0f\x95\xfc\xd0\x33\xc4\x67\x96\x79\xde\xea\xe2\x05\x50\xf1\x03\x03\x4c\xfc\xd3\x5d\x60\x10\x6b\x9f\xc2\x5b\x80\x17\x7a\x53\x8b\x60\x9f\xa3\x2c\x07\x51\x6a\x0f\xb4\xf8\x80\xa1\x5f\x27\xcb\x6e\x47\x3a\xab\xee\xb6\x23\x39\x55\xb7\x71\x62\xd3\x41\x54\xd9\x36\x0e\xbe\xf2\x15\x81\x4e\xb0\x59\x02\xe5\xdb\xdd\x0a\x5e\x10\x80\xe5\x2d\x34\xff\x1d\xc0\xe2\x04\xa6\x67\x55\x15\x06\x02\x39\xde\x04\x20\xc2\xe7\x34\x33\xe0\x5c\xe8\x5b\x6e\x51\x96\x46\x36\x2d\x73\xf2\xc4\xac\x96\x81\x0c\x18\xd3\x55\xf2\x89\x0a\x61\x65\x1e\x0f\xfb\x83\x5e\x55\x62\x79\xd5\x4b\xb6\x21\xc5\x17\x3c\x3e\x9a\xd0\x67\xae\xd9\x82\x12\x6b\xba\x43\x56\x3e\x3a\xc2\x49\xc0\x0f\xb1\x6e\xf9\x24\x54\xe6\x11\x36\x29\xcd\x8c\xea\xb9\x1c\x63\x90\xc1\xc9\x74\xba\xc6\xe6\x60\xe4\x79\x61\x57\xea\x66\xc9\x61\xba\xc9\x46\xb3\x75\xa6\x29\x35\x2c\xce\x76\x02\xe4\x4e\x12\x38\x31\x52\xa6\xcb\x05\x84\xf9\x9e\xe6\x53\xbe\x33\xda\xed\xde\xd0\x9f\xff\xa2\xe7\x5b\xfd\x95\xb6\xc7\x7e\x74\x5c\xad\x3a\x14\xe6\x97\xc3\x2a\x21\x77\xe5\xb7\xef\x69\x5c\xc5\x72\xc4\xaf\x37\x5a\x2a\x82\x3e\x0c\xb7\x7f\x99\x0f\x99\x03\x8d\x2f\xfd\x29\x8d\xe4\xb8\x49\x98\x25\xb1\xa6\xbf\x4b\xeb\x44\x76\x6f\xb4\xfd\x15\x8f\x49\x40\xbd\x1b\x88\xef\x08\xcc\x77\xe8\x66\x02\xcb\xda\x45\xfa\x5b\x40\x05\x3f\x86\x6a\x9b\x0c\x8f\xe1\xa6\x20\xdc\x1c\xc7\xf6\x23\xef\xbb\x1f\xa1\xb8\x01\x86\x84\x1b\xcb\x39\x2c\xa8\xe0\xce\xf1\xd6\x2e\xd1\xe2\xd2\x62\x73\x38\x98\x51\x56\xcc\xb7\x69\x8f\xc7\x0e\x84\x4c\x90\xdf\x8a\xb1\xb7\x83\x7a\xa2\xa5\x00\x67\x5b\x14\x79\xb1\xb7\xb1\x55\xca\x15\xf9\x35\x0c\xf3\xb8\xf3\xab\xc8\x44\xed\x61\xd2\xa6\x64\xb8\xae\x83\xbb\x55\xe2\xf2\xc0\x42\xb3\x13\x17\x51\x1e\xf7\xe3\xd4\xa0\x71\xe7\x92\xca\xef\xa8\x0a\xe5\x3b\x6a\x3b\x5f\xfa\xa7\xdf\x68\x04\xca\xd6\x82\x56\x03\x1e\x0f\xa0\x73\x9e\xcd\x75\x73\xaf\x34\x8c\xd9\xb3\x71\x07\x9d\x13\x09\x18\xd5\x0d\x40\x88\xf9\x17\x9a\xc1\x87\x11\x1a\xce\xfb\x90\xab\x48\x42\xb8\x75\x51\xff\x8c\x58\x3d\x39\xec\x15\xf5\xf9\x0f\xe8\x3b\xf3\xb1\xe2\x27\x44\x3d\x93\x27\xb6\xd8\xe1\xb1\x7e\xf0\xa8\xb1\xaf\xf0\xbb\x2f\xb6\x39\xd5\x02\x64\x6b\x68\xac\x26\x24\x23\x6f\xd2\xdf\xc6\xca\xd8\xd4\x6e\x2a\x65\x9c\xaa\x19\x1c\x3d\x53\xc0\x68\x06\x86\x3c\x36\x14\x16\x0d\x33\xe1\x45\x67\x6f\xc8\x6d\x7a\x3e\xf9\x7c\x60\xc1\x49\xba\xb8\x1b\x05\x3d\x64\x20\x43\x7f\x39\x31\xb5\x32\x7a\xc6\x83\xaa\x85\x29\xe3\x62\x39\x96\x90\x37\x21\x23\xee\x1c\x46\x1c\xcd\x63\xb3\x6e\x66\xb4\x3f\x2c\x94\x17\x8d\x10\xf1\x3c\x59\xf2\x92\x52\x58\x6a\x9b\xbc\x6d\x72\xc3\xd3\x52\x1e\x04\x5b\xf4\x12\xc3\x07\xbc\xc4\xb0\xca\x2f\x4e\x87\x5a\xf7\x27\xeb\x67\xa5\x88\xe3\xba\x4c\x51\x59\x78\x4e\x87\xc7\x23\xcd\xac\x4d\xc3\xc9\x81\x92\x7d\x3e\x1b\x7a\xd1\x97\xb3\x0a\x35\x29\x86\x79\x17\x2d\xc4\xcf\x51\x12\x9d\x26\xad\x2c\x0f\xd3\x0e\xdd\x7c\xbc\x02\x77\x15\x41\x9c\xf5\xc4\xfd\x64\xa0\x7c\x4c\xb6\xbc\xfc\x24\x5d\x0d\xbb\x98\x84\x8a\x1b\x0b\xd2\x0a\xad\xa9\x77\x9e\x19\x7b\xb4\x81\x71\x73\x0e\x57\x88\x49\x78\x49\xae\xd1\xae\xb6\xb9\x41\xc9\x0b\x98\x20\x0d\x60\x9c\xb2\xea\x7d\x65\xff\xb1\x6a\xa3\x73\xd7\x05\xb1\xe6\x4e\xa8\x34\x46\x37\xe1\x4a\xc1\x2f\x27\xcf\x47\xba\xbd\xdd\x7b\x22\x3c\xf0\xca\xaa\xc5\x20\x76\x32\x69\x32\x3a\x46\xdf\x4a\x66\xc7\x94\x42\x5e\x16\xc5\xf0\x25\x72\x85\xd4\x3d\x55\x23\xdd\x53\xd4\x19\xea\x31\xe5\xf1\x60\x80\x3f\x7d\x84\xcb\xcf\xd7\x47\x0a\x68\x78\x5d\xfd\xe9\x2c\x8f\xbb\x71\x6a\x92\x1d\x3e\xe6\xdd\x1a\xe9\x5d\x1c\x9b\x0f\x38\x3a\xff\x0e\xaf\x32\x52\x1e\x94\x7f\xc8\xbd\xde\x9d\x50\x66\x9a\xb2\xc8\x99\x9f\x6f\x0e\x97\xb3\x40\x31\x19\x8e\x6a\xeb\xd9\xa3\x0a\x8f\x68\x67\xc3\x34\xb2\x9d\x99\xea\x01\xe0\x59\xa3\x49\x8c\x1c\xf8\x24\x7d\xa6\x34\x67\xaa\x77\x01\x48\x59\xd0\xf2\x8e\xc4\x9d\x61\xe4\x0a\x55\xec\x2e\x8d\x96\xe7\x48\x43\xed\x4b\x30\x16\xe9\xe0\x81\xc3\xa8\x8a\x6f\x76\x47\xe5\x13\x35\x7d\xd8\xc9\xe3\x74\x05\x35\x9e\x54\x31\x3e\x8e\x4c\x27\x1b\x0b\x0b\xcd\x41\x6e\xfb\xb1\xcd\xad\xb6\xab\x80\x6a\x99\xb4\x51\x9e\x50\x21\x36\x2b\x2c\xba\xea\x6c\x68\x47\x2b\x51\xcc\xed\x94\xce\xc3\xcb\x03\x9b\x97\x71\x61\x03\x9f\x28\x9f\x52\x53\x3c\xa7\x54\x8d\xd1\xb7\x89\x49\x63\x0c\x32\x3b\xc0\x51\x81\x8c\xd3\x68\x55\x73\x90\x0c\xfb\x7d\xef\xdd\x89\x6d\x92\xe9\x5a\x7c\xa2\xf8\xfb\x51\x92\x0d\x3b\x33\x94\x97\x20\xc9\xbe\xa3\x94\x70\xcf\x2b\x50\xe2\xfc\xc8\xf7\x8c\xef\xe8\xf1\x8f\xdc\x0c\x3b\x4a\x99\xec\x94\x4e\xad\x4f\x4d\xd5\x58\x5f\x6d\x76\x72\x5b\x78\xf7\x6f\xfc\xf1\x0f\xd4\x07\x7d\x50\x87\x63\x44\x59\x5a\x85\x35\xe3\x8a\x43\x90\x84\x78\x16\x8c\x4f\xea\x0a\x3a\x13\xf5\x62\xbb\xca\x6e\x1a\x32\x9d\xea\x4d\xae\x2f\x85\x7a\x2f\x96\x6d\x7b\x90\x25\x71\xd1\x73\xd7\x08\x4a\xc7\x35\x45\xef\xb8\xe6\x56\xdf\x30\x5d\x8e\x4b\xda\xfd\x90\xe9\x40\x62\xdf\x2b\x16\x3b\x3f\x83\xbf\xae\x85\x7d\xb3\x58\xf4\x33\x24\x39\xa2\x58\xc4\x27\x8a\x34\x90\x2d\x2f\x3f\xea\x13\x94\x8f\x46\x7e\x11\x7c\x5f\xeb\x73\xdd\x45\x99\x82\x42\xee\x5d\xfa\x72\x13\x46\x58\x48\x92\xff\x5a\x0f\x33\x8b\x44\x11\x2b\xa8\x22\x4c\x22\x38\xdd\xd2\x0a\x2e\xc7\x94\x6d\xfe\x65\x17\x0a\xfb\x71\x67\xdd\x1a\x00\xf6\x08\xdd\xa0\x04\x03\xdb\xd9\x98\x18\xeb\x77\x37\x6d\x35\xce\x19\xb6\x04\x53\xfc\x1c\xe5\x99\x7c\x3c\x01\x61\x0f\x22\x9e\xcb\x93\x92\x95\xbe\x1e\x0a\x4d\xe8\x6d\x8b\x96\x59\xe0\x06\xf5\xaf\x8e\x54\x0f\xe6\xa2\x67\x67\xad\x59\x5b\x36\x3c\xf6\xf7\xcc\x58\xe5\x36\x40\x60\x30\x8c\xfe\xc5\xa9\x69\x2d\x9a\x1f\x58\x8b\x0b\x2d\x77\x7d\x5f\xcb\x5d\xdf\x9f\x62\x3b\x91\x33\xbe\x35\x79\xa0\xec\x2d\x4e\x62\x1f\xe3\x93\x7a\xef\xde\xa8\x67\xd2\x2e\xf3\x27\x54\x7d\xb9\xdf\x6d\x4f\x4f\x29\xd4\x2a\xa6\xa9\xb0\x19\xda\xcb\x84\xcd\x41\x8f\x0f\x4f\xe2\xff\x45\x01\xa8\x58\x22\xfb\xe5\x5f\xdc\x18\x7e\x5f\xe4\x27\x26\xc6\xd6\x44\x55\xde\x03\xc8\x3d\x30\xf4\x70\x07\x44\xb0\xae\xca\x15\x44\xc8\x4e\x3f\xb5\xfe\xa0\xa7\x08\x20\x27\x14\x01\xe4\x84\x56\x2a\x29\xcb\xdc\xc0\xab\x9e\x9e\xaa\xcc\x7a\x51\xf7\x52\x2a\xc0\xad\x37\xe9\xd0\xf3\xcd\xb8\x3f\x80\x27\x1d\x71\x53\x81\xd7\xa2\x9b\xaa\xe1\x61\x51\x5c\xae\xd1\x6f\xa9\x02\x70\x54\x5a\x76\x46\xe1\xa1\xd4\x91\x2f\xb4\xef\x87\xaa\x53\xf2\x6d\x47\x41\x31\x2b\x71\x16\x78\x7d\x14\xbe\x55\x32\x0a\xaa\xd9\x32\x71\xd2\xb7\x88\xd9\x62\xf5\x46\x3f\x2a\xfe\x6e\xd3\x31\xd1\x14\xc5\xd0\x9b\x57\xe3\x19\x01\xbc\xe0\x63\x95\x5b\xda\xb4\x9b\x90\xcc\x9c\x2b\x51\xde\x52\x78\xf8\x5b\xe1\xa3\x7e\x3f\xb6\x5f\x0c\x5e\x70\x4a\x43\xf4\xfa\x22\xdf\xdf\x44\xd7\x45\x48\xf5\xd5\x87\x6e\xee\x40\x71\x0a\x38\xe8\x82\x9a\xb2\x9e\x6d\xd1\x03\xc1\x92\xb8\x11\x6e\x31\x33\xf1\x43\xfa\xd7\x08\x85\x11\x29\x05\xcf\x5b\x78\xa2\x49\x95\x27\x37\xf0\x46\x9e\xd0\xb2\x5b\xd9\x26\xf3\x84\x1d\x90\xf8\x6d\x63\x02\xa0\x00\x74\xbe\x4c\x20\x0c\x3e\xe2\x5f\x8d\x94\x8a\xf8\x93\x24\x16\xbe\x79\x95\x52\x09\xd4\x34\xb3\x63\xcf\x99\x3b\x3e\x52\xa1\xe2\x28\x00\x1b\x41\x76\xdd\xc8\x60\x51\xe6\x59\x9a\xf5\x79\x9c\x8c\x85\x8f\x55\xd9\xa8\xe5\x99\xaa\x12\xca\x44\xa5\xb4\x73\x10\x49\x2f\x28\xe8\xe1\x82\x32\x8e\x2c\xa2\x5c\xe4\x9e\xab\x3b\x8d\xbf\x76\x0f\xef\x23\x9f\x8c\x76\xbb\x15\xf3\x33\x4f\x35\xbc\xc9\x4a\x03\xc8\x30\x8b\x50\xd3\x3b\x86\x1c\xe2\x28\x40\x19\xec\x40\xf0\x86\x97\xb9\x82\xea\xd1\x0a\x48\x54\x85\x52\x54\xd7\x0f\x35\x16\x86\xb7\x50\x0c\x86\xd5\xc0\xdd\x67\x23\x55\x69\x6e\x07\x8e\xe8\xc8\x68\xde\x4d\x5f\x06\xd3\xf1\x73\xd7\x81\x04\x22\x25\x87\xc6\x38\xd2\xef\x8d\x91\x47\x05\xdf\x9e\xa2\xee\x1c\x9e\xdb\x5f\x95\x35\xbd\xb8\x1d\xbb\x9d\x9c\x15\xca\x42\x4f\x5a\xd2\x3a\x0a\x65\x36\xec\xf6\x52\x5b\x30\xd0\x24\xaa\x59\x7e\x5f\xbd\xa2\x08\xd0\xdf\x30\x69\x43\x03\x4b\xa8\x71\xb1\x99\xee\x6c\x29\xee\x43\x30\x56\xea\x4f\x51\x6f\xb7\x4a\xb0\x67\x80\xb1\x62\x03\xbf\xaf\xa9\x75\x70\xa0\x92\x01\x58\xed\x2a\x46\x7f\x19\xcf\xe2\x66\xe8\xf5\xa6\xa0\x83\x87\x4c\x78\xf7\xd8\x2d\x94\xbd\x4f\xe2\x09\x63\x69\x3e\xdd\xf2\xc9\x58\xdb\x14\x71\xb1\xd3\xa7\x37\x3b\x5a\x9e\xe5\xf6\x0c\xc1\x4d\x28\xd1\xef\xe2\xc1\x62\x67\x27\x8b\xc3\xea\x35\xd8\x7f\x48\xb0\x08\xbc\x96\xfc\xb3\x70\x72\xe3\x2f\xbb\x3a\x6c\xd0\xdb\xac\xef\x23\x52\xd9\x49\x57\xcd\xad\xe8\x3c\xf4\x71\xd2\x8e\x47\x4a\x9c\x66\xad\xd7\xaf\xad\xa5\xbf\xf7\x6c\x3f\xcb\xf3\x9e\xf1\x5c\x04\x74\xf7\x30\xea\xc1\xc7\x93\x6d\xeb\x6e\xef\xb9\xea\x4e\xb3\xe5\x37\xa9\x97\x22\xe9\xdf\xd5\x52\xbd\xdf\xf3\x78\x9b\x1c\x8d\x76\x49\xd4\x1d\xff\x98\xae\x09\xef\xcf\x03\x44\x0c\x14\xb4\x37\x34\x69\xe9\x2c\xda\x19\x6e\x0e\xcc\x4d\x40\x7f\xcc\xf9\x90\xcc\x1d\xea\xd4\x84\xae\x5f\xdc\x34\x69\x41\x62\x5b\x3b\x13\x06\x93\xc2\xe9\x8b\xdc\x4f\x7e\x2b\xdc\x62\x57\x23\xc9\xd0\x71\x65\xe3\x74\x97\x8a\x7a\x47\x2e\xf0\x3d\xae\x6d\xad\x3a\x49\x71\x19\xcc\x17\x34\x13\x61\x9c\xc9\xc3\x20\x4c\x33\x54\x2c\x83\x60\x5b\x9f\x0b\x25\xd4\xc3\xb4\xb4\xf9\x9a\x75\x82\x26\x40\x03\x41\x85\xe3\x63\xb5\xff\x9b\x4e\x36\x28\x9d\x7a\x2d\x96\xe7\xef\x69\xd3\x81\xdf\x9b\x1a\x02\xa0\x8e\x8e\x29\xb2\xd4\xb4\x99\x32\xc9\x9a\xe5\x4a\x23\xe2\x53\xa5\x45\xd6\xcd\xcd\xfa\x6c\xa0\x14\x9b\x7c\x4c\xfe\x74\xa4\x30\x29\xcd\xbb\xfa\xb1\xe6\xd7\xfd\x58\x41\xce\x7d\xb3\x9e\xe5\xb3\x8a\x62\xfc\x0e\x76\x18\xac\x9d\xbb\x23\x25\x08\xc2\x30\x90\x23\x72\xb9\x11\xb3\x99\x56\x8d\xdd\xc1\xe2\xd2\x22\x98\x32\xd8\xe9\x4e\xe2\x55\xe4\x13\x8a\x10\x32\x9f\x56\xed\x5b\xb2\xc5\xd6\xd4\x69\xc3\xb4\x53\xdd\x7f\x49\x11\xeb\xa0\x6c\x1f\x19\x0a\x6b\x3b\x85\x62\xb7\x1c\x57\x46\x40\xc7\x5d\x86\xd2\x89\x8b\x95\x86\xea\xd7\x1c\x57\x04\xa4\x47\x5a\x1e\x0b\x9e\x9d\x12\x7d\x7c\xf1\xc5\x66\x94\x58\x56\xcc\x42\x4a\x87\xe2\x8f\x8f\x95\x16\x5d\x27\x4b\xb3\x6e\x6f\x68\x03\x35\xaf\xb0\xa1\xc7\xfc\x37\x94\x29\xc1\x60\x98\x24\x6d\x13\xad\x14\xca\xe0\x09\xa2\x31\x7c\x1c\xfa\x21\xaf\x0e\x6b\x74\x8a\x01\x49\xe0\xa4\x7c\x18\x69\x95\x0e\xa6\x73\x4e\x8e\xbe\x39\x8c\x8b\xb8\xca\x20\xa9\x09\x87\xde\xc2\x35\xad\xbc\xb0\xa7\x35\xc5\x1f\x3c\xe8\x38\xd4\xcf\x6d\xa5\x2c\x2c\x35\x0f\xcf\x1d\xd9\x45\xdf\xcb\x59\x6f\x56\x11\x43\x78\xb1\xd5\xd3\x45\x99\xc7\x1d\x20\xe1\xc5\x2a\x1b\xe3\xd3\x08\x12\x9a\xcb\xec\xf2\x0a\x05\x36\x3c\xad\x70\x03\xdb\x8f\x8b\x92\xc3\xaa\x8c\x42\x78\x96\xc8\x65\xf7\x78\xfb\xb6\x30\x8a\x04\xb6\xa1\x49\x60\x1b\x75\x52\x71\x07\x9b\x05\x59\xcc\xd3\x2f\xb1\x6f\x01\x9e\x94\x98\x18\x38\x14\x37\xab\xf6\x63\x0c\x76\x68\xa9\x6c\xe6\x60\xa9\x79\xc4\x33\x75\x66\x48\x7f\x67\xff\x81\xaf\x1f\x38\x74\x30\xf0\x02\x1e\x9f\xd1\x1b\xcb\xc7\xa1\x1e\x0f\x8b\x6c\x51\x98\x3c\x4e\x40\x05\x76\x9e\xde\x87\xe7\x38\xca\x42\xb5\x48\xb1\xb9\x17\x5c\x21\xa4\x08\x5f\x59\xbf\x9f\xa5\xc9\x7a\x63\xa2\x9b\x3d\xd1\x00\x57\xed\xbe\xdb\x2a\x8d\x6b\xe7\xd6\xac\x74\xb2\xb5\x14\x6e\x4f\x4e\x63\xd2\x91\x9e\x2e\xaa\x84\xc2\x76\x21\x0a\x80\x74\x97\x47\x74\x98\x27\xe5\xed\x93\xfe\xd5\xed\x3a\x23\xb6\x38\x2d\xb2\x65\x93\x37\x54\x4f\xec\x4d\x8a\x0f\x52\xa9\xfb\x37\xe2\xc6\xc4\xfe\x97\x24\xeb\x5f\x52\xa4\x96\x6d\xc8\xbf\xf1\x1d\x5f\xa5\x6c\x98\x83\x18\xed\x8c\xe0\xe8\x7d\x97\x40\x7b\x6c\xff\x9b\xb4\x99\x21\x2a\x6f\x8c\x74\xc7\x6b\x03\x59\x1b\xe0\xcc\xd7\x74\x5d\xf9\x01\x30\x50\xee\x47\x85\xaa\x81\x7e\x06\xdb\x2c\x6d\x61\x47\x9f\x26\x88\x16\xf8\x3a\x82\x0b\x78\x67\xf7\xe8\x8b\xa1\xd1\xfa\x3a\x8a\x0b\x1e\x6e\x47\xaa\x03\x9c\xf6\x5d\x34\x44\x91\xc0\x42\xca\x13\x79\xc8\x53\x63\x4d\x99\x0e\xbd\x3b\x24\xd7\xfb\x78\xb3\xae\x73\xd7\x8b\x1b\xc8\x58\x1a\x48\x12\x76\x10\x7d\xdd\x61\x8e\x5f\x7b\x41\x44\x38\x14\x9d\xa5\x5f\xad\xbb\xa0\xba\x35\x48\x00\x1e\xd0\xcf\xf1\xf1\x14\xc3\x67\x7e\xbe\x59\x0c\xe0\xac\x2b\xe0\xc3\xbf\x54\x06\x91\xff\x52\xf1\x4e\x57\x63\xbb\x66\xa1\xe5\x20\x5e\x4d\x74\x69\x9a\xf0\x05\x00\xf3\x7f\x54\xea\x97\xc3\x34\x7e\x99\x0c\x7c\xdc\x40\x78\xf5\x49\x02\xef\xd0\x8d\x12\xce\x55\x75\xcd\x7c\xac\x35\x9a\x5e\x9d\xcc\x9a\xda\x10\xd3\x44\x7a\xf1\x63\xfa\x54\xa4\x14\x1b\xba\x21\x09\x74\x46\x5c\x1a\x55\xf3\x16\x29\x0c\x8a\xe1\xbf\xd0\x22\xe9\x80\xcb\xb0\xe4\x4e\x7f\xee\x30\xb2\x2d\x06\x60\x42\xc8\xf8\x8d\x9a\x66\xbd\x33\xd2\x0c\xd7\x1b\xe1\x04\xb9\xc2\x4d\x18\x92\x9d\xda\x4c\xb5\x8c\x81\x6b\xc9\x6f\x69\x15\x58\xe4\xd8\x9c\xca\x0b\xa2\xa0\x1d\x4f\x53\x3c\x8a\xc3\xca\x29\xb6\x5a\x8c\x28\xa0\x1e\x84\x7a\x96\xc1\xbf\xe5\x0b\x87\x0e\xb2\x15\x30\xc0\x84\x0f\xb4\x26\xd5\x73\x2d\x8f\x2c\x60\xe7\x72\xed\x0e\x3f\x5f\xb0\x67\x5c\xd3\x22\x6f\xe7\xb6\xec\xe5\x36\x0d\xd4\x5f\x83\x9f\x08\x1f\xab\xdc\x27\x4b\xcb\x0c\x1b\x2a\x76\xeb\x93\xca\x7e\xee\xe4\xe7\xb6\xc3\x26\x61\x03\x19\x32\x50\x64\xfe\x4f\xb4\xe5\xb9\x49\xb2\x7e\x96\x22\x62\x6a\x2d\x25\x36\xd2\x52\x19\x45\xad\xea\xdc\xb0\xb0\x2c\x68\x88\x3c\x99\x6d\x0b\x45\xcd\xcd\xdf\x99\xd3\x1a\x69\xba\x32\xd5\x44\x5a\x9a\x6b\xda\x4e\x89\x86\x02\x76\xc6\xdf\x55\xbb\xe4\xef\xd6\xc0\x62\x07\xab\x9a\x91\x46\x49\x1b\x8a\xa3\xcc\x6f\x0c\x37\xe0\x11\x0d\x58\x35\xad\x4e\xb4\xb7\x58\xb3\x76\xe0\x9a\x0b\xc0\x41\x3e\xa0\xab\x06\x02\xb8\x93\x9e\x33\x96\x28\x29\x19\x38\x19\xac\xd2\xc4\x49\xd1\x37\x69\xc3\xcf\x7c\x06\x2d\x5f\xa0\x00\x6e\xc2\x0e\x71\x4b\x79\x38\x7c\xa5\xf8\xdb\x74\x81\x48\x3d\x1e\x50\x7d\xa6\x06\x78\xa5\xe1\xbe\x63\xac\xf6\xa1\xff\x1a\xe0\x17\x62\x67\xd0\x52\xde\x4d\x47\x47\x9a\x31\xa7\x5e\xe8\xf3\x61\xf0\xcb\xbf\xe8\xbe\x0f\x85\x4b\x14\xbf\x0d\x4c\x1b\xe0\x99\xbc\x13\x4e\x48\x88\x07\xce\x3c\xf8\x3b\xa1\x12\x03\x3f\xa5\x28\x93\x1f\x86\x9a\x63\x70\x26\xf4\x6a\xdc\xd7\x11\x9d\x26\xac\x22\x70\xf9\xdb\xc7\xde\x4a\xe0\x61\xe8\xc9\x3e\x77\xd1\xb3\x7b\x8f\x8a\x34\xc7\x19\x74\xd0\xd4\xb5\x51\xe3\x05\x37\x50\xf5\x89\x72\xa8\x7e\x40\xc5\x17\xc2\xfa\x4d\x20\xe3\x7c\x39\x84\x35\x21\x83\x0c\x38\xc5\x03\x9d\xe6\x41\x18\x7c\xe5\x2b\x7c\x3b\x7e\xe0\xa6\xa4\xda\x59\xb6\xe2\xde\x13\xee\x0d\x86\x1e\x1b\xf0\xb6\x44\xbc\x69\xcf\xfa\x16\xd6\x6c\x6b\x72\x03\x77\x93\x36\x97\x47\x7a\x03\x57\xb2\xf9\xdf\xab\xeb\x24\x2d\x67\x79\xdf\xe6\x50\xcc\x39\xc2\x6b\xfd\x02\xed\x9a\x7c\xec\xa4\x92\xf2\xac\x6f\xd2\x09\x23\x16\x56\x50\xe6\x13\xd5\x30\x2c\xca\xdc\x9a\x7e\x12\xa7\x68\xf6\xc8\xb2\xfe\x96\x6a\xed\x7f\xcb\x8d\x10\x2c\x0f\x6d\xb2\xb3\x7a\xbe\xec\x72\xa8\x24\x44\x2e\x2a\x9c\xe4\xa9\x96\xda\x88\x90\x17\x21\xd0\xde\x99\x84\xd5\xd5\x25\x5d\x98\x6a\x6d\x1c\x9e\x6b\x16\xa5\xed\x73\xbc\x40\x24\x60\x01\x00\x90\xf7\x7f\x0b\xf9\x06\xee\xe4\x27\x2a\x0c\xd5\xc6\x8b\x81\x05\xdd\x87\x77\xaa\x91\xe7\x1d\x9f\x51\x25\x6a\x94\xdb\x22\xca\xca\x32\xd0\xf5\xfb\xed\x50\xa9\xcb\x4c\x4b\x17\x1f\x58\x68\xc6\xfd\x41\xe6\xfb\x51\xc8\x41\x61\x4a\xc8\xc7\x75\x7a\x16\xf3\xf3\x8a\x65\x8e\xcc\x1e\x4b\xfd\x0d\xd5\x3e\x7b\x8a\x5e\x07\x54\xb3\x4f\x10\x79\x56\xc8\xe7\x3e\x1d\x35\xab\x26\x4e\x4c\x3b\xb1\xbb\x7d\x6f\xf3\x2d\xe4\x0f\x32\xcd\xa7\x58\xc2\xec\x3a\xe1\x7c\x8c\xdc\x7e\xcf\x3e\x6b\x4e\x6a\x61\x6b\x97\x04\x75\xe8\xf7\x46\x13\xc3\x4f\x74\x67\x7c\x1d\xce\x40\xff\x30\xed\xf2\x98\x1e\x22\x04\x0f\xf7\xf2\x14\xea\x48\x09\x5c\x9f\xc2\xaa\x17\x2c\x49\x71\xd7\x8a\x62\x48\x77\xb4\x8a\x13\x5c\x6d\x29\x92\xfd\x5d\xad\x08\x3b\xcc\x57\x2d\x4a\x1f\xe4\x85\xf7\xb0\xb2\xf8\x24\xdc\xe3\x1f\x6f\xba\x16\x28\x34\xee\xfd\x91\xea\x33\xbe\xaf\x2a\xff\xc8\xa6\x65\x41\x0b\x1d\xb9\xdd\x6d\x24\xbd\x4e\x2a\xc3\x89\xdd\x40\x55\x80\x6d\x77\x43\x15\x2c\x71\x63\x11\xb7\x59\x6c\x01\xb7\xe2\x81\xcb\x56\xba\x00\x77\xab\x3f\xc0\xa3\xb3\xf8\x14\x99\xa3\x95\x78\x92\xf0\x3c\x0b\x45\x72\x14\x23\x0f\x50\x3a\xd2\x3b\xf1\x26\x8c\x57\x81\xf6\x34\x6a\x67\x0f\xd2\x2c\xef\x83\x3f\xb0\x34\xc7\x0d\xcc\x3f\xc2\x93\xe3\x93\x6a\xaf\x16\xc6\x88\xc9\xcb\x38\x8a\x07\x34\xdf\x3d\xab\xdc\xa4\x90\x78\x3b\xaf\x63\xa7\xd9\xfa\xfb\x23\xe5\x81\xac\xd9\x7b\x17\x54\xa6\xda\xcb\xd2\xee\x23\xaa\x01\xfe\xb6\xf6\x8f\x20\x18\xec\xeb\x9c\x1f\x41\x96\x88\xad\x8a\xd5\x7c\xf8\x43\xf0\xcd\xf8\xd7\xb1\x6f\x83\xf1\x78\x51\x4d\x9b\xfc\xc6\x48\xeb\xa5\x6f\x6b\xd5\xca\x1e\x94\x26\x5a\x19\x0e\x02\x0f\xd2\x30\xcf\x96\x4f\x6a\x46\xa1\x16\x9b\xa9\xed\xfa\xc6\xb1\xa3\xc4\x2c\x78\x4a\xcc\x14\x10\x40\xf2\x18\x4f\x35\xbc\xb3\xea\x35\xa5\x65\xfa\x08\xf5\x33\x44\x24\x59\xb9\x24\x3e\xa4\x29\x03\xad\xac\x2a\x1e\xbe\xca\xd6\x98\xb2\x69\x91\xc7\xc3\x17\xc6\xc6\x77\x33\x54\xb5\x06\xa2\x33\xfe\xd4\x9b\xc8\x61\x9d\x59\x60\xf5\x24\x90\xbf\xfd\x9e\x1e\xdc\xfc\x31\x5e\x08\xe0\x13\xdb\xc6\xc1\x81\x85\xcd\xeb\xd8\x9c\x81\x7e\xde\x1a\x7d\x41\x89\xda\x43\xbd\xa0\x9d\x13\xac\xe4\x08\x54\xf0\xf6\xe0\xe3\x5a\xf1\xbd\x65\xb3\x9a\x31\x62\xc5\x6e\x22\x88\x3c\x62\x2d\x32\xbd\x13\x2c\x36\x57\x45\x3a\x04\x01\xf5\x92\x0a\xae\x97\x94\x3a\xd7\xb2\xc9\x2d\x2e\x86\xd5\x60\x55\xae\xfc\x5d\x17\x9f\x44\x26\xae\xba\xed\x28\x38\x8f\xd1\xcf\xf1\x71\x9d\xd3\x5a\x34\x2c\xca\x0c\x6a\x71\x72\xe3\xab\xab\x11\x2e\xaf\x76\x24\xb0\x05\x39\xf8\x22\xa8\x3e\xd2\xf2\xae\xe0\xef\x28\xd2\x1e\x4a\x7f\x3c\x8f\xed\x63\xaf\x69\xf9\xce\x54\x17\x78\x69\x6e\xa9\x99\xb4\xb3\x89\x16\xff\xab\x5a\xba\xfc\xd5\x3a\x57\xfa\xfe\x7a\x51\xda\x3c\xb6\x22\xfb\x22\x82\x10\x8a\xfe\xab\x87\x0c\xf6\x1d\x5e\x08\x94\xc2\xea\xa4\xbe\xde\x34\x45\xec\xeb\xcd\xa8\x67\x06\x25\xf7\xbc\x10\x91\x3f\x0a\x15\x66\xfd\x51\x8d\xcf\x61\x94\x98\x7e\x1f\xbb\x02\xa2\x2a\x72\x48\xac\xfb\xbf\xd6\x5e\x48\x27\xb1\x5f\xc9\x64\xf1\x93\x4a\x2b\x73\x90\xe5\x65\xb1\x87\x3e\x09\x51\x66\x27\xf9\x15\x8b\xc0\xba\xbf\xc1\x57\xb1\xa6\x26\xa6\xc2\x84\x5a\x49\x2b\x5a\x66\x82\x14\xfe\x8c\xfc\x1d\x1b\xef\x4d\xbc\x31\x9a\xda\x2e\x08\x44\xf5\xb4\x90\x29\x9e\xa5\x8c\x5c\xe4\x3a\xea\x0c\x4e\x4c\x54\x66\xf4\x18\x7c\x05\x78\x4a\x73\xb1\x4e\x85\xfa\xdb\x99\x24\x2e\xfa\x0d\x5f\x44\xa1\x2b\x27\x7a\xd1\x7e\x94\x74\xa3\x56\x98\x6b\xd5\x24\x43\x91\x62\x41\x02\xce\xa6\x3b\x7c\xa2\x14\x83\x57\xba\x6d\xc5\x07\xba\xaf\xa7\x11\xef\x2b\xec\x6a\x68\x92\x47\xbd\x84\x6a\x83\x6e\xb5\x33\x34\x5c\x9a\xe3\xe0\xb7\x73\xac\xa2\xce\x71\x9f\xbc\xfc\xd2\x7f\x8a\x09\x1f\x94\xf3\x37\x71\x2d\xe8\x63\xdc\xc2\x27\x22\x45\xc7\x3a\x40\x56\xfe\xf4\xb8\xda\x72\xb0\x05\xfe\x97\xc8\x0d\x90\xa2\x7b\xb6\x68\xc7\x0e\xe2\x88\xe7\xa6\xd8\xd3\x0f\xcf\x5a\x0c\xfe\xea\xee\x4d\xc7\x96\x36\xc2\xf8\xab\x73\x02\x38\x2c\xbc\xe8\xb3\xe1\x97\x7c\x58\xb3\x89\x8d\xb2\x7e\x7f\x98\xc6\x91\x13\x1c\x3f\xc2\xa1\x1a\x33\xcc\x7c\x3c\xd2\x04\xbd\xe5\x72\xcd\xe4\x56\xbb\xe3\x5f\x53\xf2\x71\xd7\xa6\x9a\x61\x8b\xcf\x1f\x6c\xda\xa2\x8c\xfb\xde\xf8\x4a\x64\x8f\x3d\x3f\xe4\x96\x82\xcc\xfb\x36\x8f\x7a\x26\x2d\x1f\x71\x4a\x8f\x5f\xde\x0e\x23\x3d\x24\xe9\x18\xf8\x12\x3a\x9c\x97\xfc\x3b\xa7\x99\x6c\x78\xaf\x95\x48\xc5\x11\x81\x8e\xf0\x70\x04\x47\xf2\xe3\x32\xbf\x3e\xa5\x2a\x25\xc0\x41\x94\x2d\x2f\x5b\xb0\x68\x91\xd9\x9c\x45\x00\x90\xac\x40\x49\xa2\x9c\xae\x75\xd6\xe9\x9b\x15\xdb\x50\x4a\xca\xf7\x14\xbb\xe0\x34\x22\x80\x0f\x54\x6e\x5e\x31\x79\x09\x05\x81\x70\x59\xe8\xe7\x1c\x29\xda\xf5\x9d\xce\xe0\x62\xc4\x9e\x6e\x42\x41\xa2\x5c\x7f\x4e\x39\xa6\x5f\x47\x62\x21\x6e\x29\xd5\x12\x87\xfa\xcd\xf5\x51\xf0\x8d\xfd\x4e\x43\xdf\x7b\x79\xd2\x24\x7a\xcb\x33\xe9\xbf\x8d\xba\x98\x71\x1f\xde\x8f\x11\x13\x1e\x86\xde\x25\xfa\x03\xc2\x0a\xd9\x30\x0e\xe5\x2f\x1e\xe3\x77\xb5\xc2\xe7\x29\xfd\x85\x76\x53\x96\x00\x42\xc3\x59\xad\x57\xf7\x70\xa4\xf8\x03\xdc\x60\x66\x37\xad\x50\xcd\x7e\x3f\x54\x85\xc4\xc6\xc8\x73\xa5\xae\x69\x02\x6f\x69\x4d\x27\x66\xd7\xf9\x09\xc1\x09\x79\x39\x35\x7c\x1e\x6a\x4e\x91\x77\x04\x79\x5d\x71\xb9\x0a\xef\x04\x4e\xdf\x68\x16\x92\xc9\x08\xa4\xf7\x14\xfe\xf9\x85\x71\x8d\x3b\x82\x7d\xb9\x8a\xf0\xf4\x9e\x0a\x97\x47\x0f\x73\xc8\xc7\x94\xbd\xdc\x9a\xce\xa4\xec\xd4\x48\xcb\x4e\xa9\x64\x3e\xad\xf2\xe7\x1d\xbe\x9f\xcb\x02\x95\x4e\x43\x5a\xeb\xb6\x04\x4e\x6f\xf9\xbe\x6e\x7f\x3e\x08\x27\x76\x51\xd4\x97\xf4\xc7\xbf\x39\xac\xde\x62\xea\x4f\xda\x59\xe5\xe0\x77\x92\xd2\x03\x91\x39\xa2\xcb\xe4\x7f\x20\x00\xc3\xb1\x8c\x9c\x6d\xd3\x86\x1a\xc6\x6b\x27\x59\xb4\x62\x65\xa8\x1f\x79\x1a\x03\x3e\x7c\x52\xa3\x04\xd0\x5c\xb3\x66\x90\x31\x52\xc8\xea\xf9\x4a\xe7\xfc\x27\x53\x80\xd6\xfc\xfc\xc1\x66\xc7\x46\x55\xe9\x4f\xf7\x5b\xd4\xd5\xfc\x06\x7d\xb1\xd6\x0c\x3a\x31\xc3\x34\xea\x49\xd4\x42\xf7\xfd\x4d\xd5\x89\x7f\x53\xcd\x0c\x0f\x6c\x5e\x64\xa9\x01\x68\x20\x42\x62\xfa\x6b\x5d\x44\x7a\x89\x7b\xf0\x60\xe4\x49\xcd\xf7\x43\xe5\xb0\xff\x8e\x1e\xb3\x09\x34\x74\x3b\xa1\xfe\x6b\xd3\x38\xcb\x1f\xf1\xd8\xcf\x1f\x4c\xa8\xc3\xa0\x0f\x27\xf5\x7f\xc3\x7b\x0d\x7e\x44\xb0\x35\x56\x32\x4f\x8f\x4a\x3d\x4a\x65\x96\x03\xb7\x1d\xd8\xb1\x19\x7a\x31\xee\x73\xa1\x4f\x2b\xad\xe5\x22\x0b\xcf\x77\x3b\x91\x5a\xf8\x58\x8d\xa6\x44\xa6\xec\x65\x1d\x1b\xa8\x8f\x3a\xa3\xe8\x28\x67\xd4\x52\x28\xca\xdc\x96\x51\x0f\xa0\x25\xf2\xbd\x89\x86\xd6\x66\xa8\x68\x2c\x6a\x14\x33\x1a\xf6\x87\x09\x55\x2c\xe8\x34\x23\x3a\x48\x2b\x87\xc7\x44\x75\xe0\xd8\x50\xec\xc7\x8b\x6a\x20\x26\xca\x06\xeb\x8f\x78\x6c\x75\x14\x7a\xad\xb1\xcb\xda\xd2\x69\x83\x5f\x11\x17\x42\xaa\x4f\xc5\xa3\x3c\xa5\xf9\xa0\x2c\x4d\xa2\x6d\x91\x27\x0c\x26\x01\xad\x9f\x74\x6a\x50\xa6\x6b\xd3\xc8\x7b\x9f\xe3\x02\x1f\x68\xfa\x38\x1b\xf0\x88\xb5\xd3\x13\x6a\xfc\x2d\x1b\xae\x5b\xad\x15\x77\x55\x8f\xab\x5f\x9d\x70\xe8\xb2\x7d\xcb\x00\xbe\x4e\x81\x71\x69\x0f\xb5\x00\xe4\x0e\xca\xd6\x9d\xfc\xa5\x73\xac\xbd\x12\x7e\x1e\xc4\xde\xb6\xe9\x4b\x55\xad\x1f\x78\x7c\xfb\xbc\xe6\xfb\x9c\x57\xc4\xbf\xa2\x34\x9d\x78\xd8\x47\x28\x91\x76\x6b\xe0\xb4\xf0\x6f\x8e\x7c\x9d\xc2\x9a\xe5\x78\x55\xff\x57\xbe\xfd\xc8\x51\x6f\xd5\xf5\xa2\xfa\x71\xda\xc1\x92\x13\x55\xf0\xc0\xcd\x6c\x9f\x9e\x2a\x3b\x5e\x58\x9a\x23\x7d\x4b\xf2\x26\x00\x4c\x30\xd3\x52\x60\x0c\x74\xd6\x50\x76\x6e\xab\x33\x80\x7c\x69\xd8\xe1\x21\x1b\x54\xb0\xd0\x92\xc4\xcd\xe5\xf4\x0f\x7b\x82\x76\x03\x89\xab\xc4\x0b\x0a\xf3\x28\x42\xb1\x42\xf8\xb8\x4e\x8e\xae\xcc\x4d\x5a\x24\xc3\x22\x22\x8b\x29\xf7\xba\x9d\x0a\x75\xc2\xbd\x35\xfb\x5a\x9a\x23\x53\xaa\xdc\x16\xe5\xd6\x56\x8f\x97\x8e\xfe\x6e\xe8\x89\x24\xe7\xea\x8c\xbb\x92\x38\xb2\xa9\xdf\xed\x9c\x62\xb5\xf3\x83\x3b\xa5\x3c\x62\x3f\xac\x15\xbe\xea\xe5\xa6\x40\xf4\xc5\x5b\xf8\x23\xfa\x0d\x3e\x9e\xe8\xcd\xd9\x3c\x7d\x12\x8f\x18\xc4\xbc\x6d\x63\xa5\xb3\xfb\x7d\xd5\x78\xdb\x98\x90\xb0\xa3\xa1\x42\xf5\xba\x7f\x5d\x1c\x82\x95\xfc\xdc\x99\x50\x91\x58\x77\x90\x83\x06\x4b\xa5\x02\xf3\x99\xa0\x1e\x39\xbb\x6e\xa7\x52\x0b\x9d\x42\x16\xdc\x45\x2e\xc4\x62\x53\x78\xdb\xc4\xbc\xad\xfa\x66\x88\xe0\x1b\xe1\xd6\xa4\x92\x50\x2a\xbb\x56\x24\xb6\x2c\x6d\xde\xd0\x86\xa9\xf0\x24\xc0\x97\x6e\x50\xcf\x44\x78\x75\x8a\x2a\x59\x9a\x92\xe8\xbc\xa4\x55\xe2\x44\x3e\xaa\x1b\x84\x8b\xff\x0c\x51\x87\x9d\xb3\x46\x6a\xe7\xe2\x91\x74\x5c\x24\xe4\xcc\xf0\xb5\xde\xa5\xaf\x85\xf4\x0f\xbd\x1a\xa0\xb3\x57\xa7\x2e\xfe\xd0\xf3\x18\x48\xe8\x43\x22\x21\x70\xe2\x59\xd7\x29\xa3\x55\xe2\x64\x5f\xe7\x8d\xe9\xf8\x68\xb7\xec\x19\x71\x4a\xb2\x30\xa2\x50\x4e\x77\x4c\x44\x92\x26\x44\xcd\x03\x67\xcb\x02\xaa\xbb\xe8\x98\x4f\x88\x9d\xfb\xe0\x37\xb0\x79\x9c\x75\xf6\x78\x56\xd8\xc9\x50\xc1\x4c\x3c\x7b\x0f\x70\xe8\xdf\x84\xbe\x9f\x7b\x3b\x54\x2a\x49\x1f\x8e\xfc\xb0\xf4\x1d\xad\x0c\xfa\x0e\x2e\x0d\x71\xf4\x0d\x65\x1a\xb1\xa8\x27\x37\x8e\x61\xfb\xc4\x57\xbe\x8b\x2c\x97\x4f\x42\xad\x75\xbd\xf6\xb8\xaa\xce\xc1\xbf\xc5\x24\x11\xc7\x5d\x91\x7e\xac\xbe\xb5\x93\xb6\xa9\x3e\x06\x19\x15\x91\x17\xb9\xad\xb5\x89\x54\x0b\x29\x1c\x4b\x62\x61\x2d\xb3\xf2\xb0\x40\x26\xd5\x83\xc1\x5e\xfe\x14\x21\x34\x00\x0c\x5f\x0f\xf5\xb3\xf0\x77\x7c\xd7\x58\x8d\x74\x3f\x31\xa5\xef\xba\x6f\x7f\x33\xb7\x89\x29\xa5\xb9\x88\xb4\xef\x26\x1e\x8d\xb8\x19\xf8\xcc\xf9\x5b\xae\xa7\x44\x58\x6b\x62\x67\xbc\x42\x02\x4b\x38\x63\x89\xdf\x53\x1d\x78\x2c\x41\x6e\xf1\x8d\x9e\x9e\x44\x1b\xbf\xdc\x3c\xb0\xd0\xa8\x1e\xb5\x48\xb8\x78\x32\xde\x19\xdd\xf8\xb9\xa2\x07\x51\x6d\x87\x67\x0b\x45\x83\x76\x2b\x77\x48\xd0\x46\x35\xbf\x76\xb1\xd6\x18\x32\xed\xc0\x3a\xdc\x71\xcd\x4f\x28\x45\xc2\x13\x13\x61\x2c\x8f\xb3\x86\x2f\x01\xd0\xe9\xc0\x1d\xda\x3e\x56\xc3\xdd\x0f\x31\xe7\xc9\xbf\x94\x66\x4f\xd1\x63\xc5\x6e\x73\x1b\x2f\x09\xf7\x39\xb0\xc6\x9c\xec\x59\xf5\x27\xb0\x14\xb6\xb7\x74\x0f\xe7\x72\xe8\x25\xf9\x9e\x19\x6b\x98\xc8\xa3\xfc\x27\x91\x72\xa2\x2c\x9c\x19\x07\x2f\x2c\x7a\x23\x65\x57\x93\xc3\x40\x17\x2b\x6f\x16\xdd\x55\xc4\xa6\x9f\x6c\xa1\xbf\x68\x48\x9b\x56\x85\x93\x33\xf5\xd3\x15\x17\x46\xda\xe2\x6c\x39\x4e\x4d\x1a\xc9\x4c\x81\x40\xa3\x1e\x69\xff\xf6\xc8\x0f\x59\x7e\xaa\xcd\x18\x20\x22\x91\xac\x43\xb7\x0c\x21\xeb\x78\xe8\xfb\x8f\x97\xc1\xbf\xe1\x7f\x18\xa9\xe2\x17\x03\x75\x8e\x8d\xe4\x6a\xf9\x93\x7a\x92\xff\x81\xde\x1f\x1e\xa8\xac\x69\x39\x31\x03\xb6\x88\x65\xa2\xcf\xc8\x8f\x69\x9c\xa9\xcb\x41\x12\x71\x23\x74\x6e\x3e\x8e\xcc\x74\x79\x0a\x69\xd8\xb7\x8f\xf5\xfb\x07\xd6\xe4\xf6\x6f\x9a\x31\xa9\xf9\xa4\x76\x6c\x18\x32\xc5\x8a\xc2\xe0\x1f\x1f\xbb\x94\x3d\xca\xe3\x32\x8e\xe8\x8a\x70\x13\xc0\x6d\xe1\x63\xc5\xf0\xde\xfb\x73\xff\x59\xe0\x9b\xd1\xec\x00\x25\x83\x88\xb5\x20\x77\x9c\x4a\x7d\xea\x74\x8f\xaa\x5b\x2a\x24\x1c\x2f\xab\x18\x99\x2e\x03\x47\xc8\xac\xf0\x4c\xf8\xb8\x4e\x98\x3e\x35\x7d\xbb\x55\xb7\x47\x34\x46\xa3\x2c\xcf\x6d\x31\xc8\x48\xab\x00\x79\x89\xf8\x6c\xf9\x35\x8c\x8e\x91\x88\x1f\xd5\xb5\x3b\x72\xfb\x12\x8d\xb7\x04\x4a\x66\xf4\x35\x5a\x8a\x7c\xec\x2a\xf1\x4e\x9c\xdb\x48\x34\x72\x9c\x23\xe8\x92\x77\x65\x78\x4c\x09\xdc\x47\x96\xe0\x5f\x96\x77\x56\x1b\x3b\x3f\x4f\xd1\x7d\xae\xde\x49\xfe\x07\x85\x46\x66\x43\xf2\x06\x97\xdc\xe6\x01\x72\x0d\x64\x40\x0f\xf1\x07\x98\x9c\x40\xe1\x5d\xa4\xd6\x7d\x76\xf5\xdb\xd8\x36\x00\x8e\xbc\xad\x2d\xd9\x36\x47\x9e\x8f\x8e\x36\xab\x30\x83\xfc\x8e\xfa\xd2\xb0\xdf\xce\x0a\x72\x3a\x76\x53\xea\xde\x12\x4f\x35\x91\x89\xee\x41\xfd\xf4\xea\xad\xe3\x6c\x24\x54\x70\xf2\x09\x35\xfb\x58\x94\x71\x5e\x04\xc1\x57\xbe\x22\x2e\xad\x10\xf6\x10\xcb\xd6\x69\x88\xe4\x60\xb3\x6f\x4b\xd6\x6c\x06\x4e\x8a\xa2\x80\x8f\x6b\x68\xc2\x07\x45\xe9\x9b\x9f\x92\xe4\x8c\xf4\x76\xf0\xc9\xd4\x07\x1d\x9e\x6b\x26\xaa\xa7\x8d\xba\x02\x84\x7b\x3e\xae\xf9\x95\x23\x72\x6d\xae\xaa\xbb\xa0\xca\xa8\x69\x1d\xaa\x03\x0b\xcd\x28\xc9\x4a\x3f\x26\x89\x80\x09\xf5\x59\x3e\xae\x11\x86\x3f\xd8\xec\x90\x95\x48\xdb\x76\x66\xbc\x93\x0a\x9b\x79\xcb\x24\x7d\x43\xb9\xe7\xe3\xd5\x13\x12\x48\x0d\xc9\xbc\x18\xb6\xfb\x71\x1a\xf7\x87\x40\xdf\x1d\x20\xe9\xb8\x15\xe8\xc5\x01\xd5\x3b\xa1\xd7\xb4\xc9\xed\xae\x2a\x30\xc8\xec\x3d\x5d\x83\x93\x78\x5e\x9a\x13\x9a\x14\x16\xab\x58\x0e\x2b\xfa\xda\xe9\x29\x63\x3a\x19\xfc\xa4\x85\x20\x65\xad\x87\x04\x12\x10\x51\x76\xaa\x56\x2b\xf8\x8e\x3c\xae\xa6\x4c\xac\xaf\xa8\x57\xec\xbe\x1a\x0f\xbe\x43\xcc\x19\x21\x46\x2b\xbf\x97\x3a\x5c\xa9\x17\x97\xd2\xe9\x01\x51\x0a\x10\x3f\x1f\xab\xd9\xed\x65\x53\x94\xa2\x37\xec\x84\xb1\xab\xa7\x2a\xc2\xd8\x42\x23\x29\xf3\x8c\x75\x1d\xb1\xa7\x40\x70\x56\x51\x44\x16\x1d\x03\xd8\x4f\xf1\xac\xf5\xb2\xc4\x16\x59\xdf\x2a\x23\xe1\xd3\xca\x48\xf8\xb4\xba\x92\xea\xc7\x3a\x66\x9d\xea\x48\xb1\x4b\xd4\xfc\x90\x9a\x21\xdf\xe5\xb8\x3b\xcc\xc5\x83\x19\x19\xe0\x7d\x3c\x33\x3e\x51\x84\x83\x64\x48\xf0\x5c\xf5\xd9\x28\x2f\xd0\x3e\xe4\x63\x95\x63\x0d\x6c\xdc\xf0\x83\x6b\x78\x1a\xf8\xca\x6f\x8c\x14\x3d\xf7\x66\x9d\x4f\x6c\x27\xeb\x1b\xc6\x0c\x9c\x6e\x83\xd7\x70\x98\x2a\x42\xf6\xed\x6b\x0e\xd3\x62\x38\x18\x64\x79\xc9\xd7\xe6\x1a\xf7\x9e\xd6\x71\x49\x7d\x8b\xdc\x46\xd9\x70\xa0\xe7\xa7\x46\xea\x27\xcf\xd5\x11\xe0\xca\x3c\xa6\x52\x4b\x4f\x70\x2a\x8a\xff\x3b\x1a\x80\xca\xe0\x50\x60\x31\x65\x08\xbe\x08\x0b\xae\xf1\x89\xc3\x78\xa2\x2c\x49\xfc\x26\x22\x81\xbf\xe1\xdd\xdb\x2f\xd4\xf4\x74\x9a\x49\xdc\x8f\xdd\x16\x25\x22\xef\x81\x93\xd2\x3f\xa5\xe7\xea\xd7\xa3\xc4\x16\x0d\x65\xd2\x80\x8e\x9e\xa3\x31\x39\x2a\xc0\x6b\x53\xb4\xc5\xf9\xf9\xe6\x4b\x4e\x25\x5e\x8b\xac\x48\x59\xac\x1c\x5c\x6c\x64\x92\x04\xbd\x3e\x74\x32\xaf\xd2\x02\xe5\x63\xd5\xc8\x5c\x35\xac\xfb\x75\x60\xc1\x79\xbb\xd3\x07\x88\x4c\x8a\x12\x70\x7b\x53\x8b\xf4\x5e\xaa\x79\x43\x0f\x36\xad\xe9\xda\xbc\x41\xdb\x0d\x0b\x32\x28\x63\x93\x9b\xa1\x57\xc1\xbc\xa8\xf4\x27\x0a\x9b\x97\x45\x43\x8d\xc4\xed\x00\x4d\x0d\xc9\xf0\xb6\xb1\xef\x17\x4c\xab\x37\x1d\x9e\x5b\x68\x76\xf3\x6c\xcd\x05\x6e\x14\xa0\x60\x61\xf1\x71\xe8\x1f\x2f\x13\xed\xab\xeb\x00\x34\x00\xe6\xba\xce\xae\x85\x7f\xaf\x7e\x69\x90\xd0\x0b\xe0\x5a\x59\xb8\xed\x82\xf6\xd7\x25\x5d\xeb\xb1\x4d\x3a\x70\x19\x93\x00\x48\xaf\x99\x88\x69\x55\x7f\x4b\x56\x62\xb0\xd5\x71\x0c\x6f\x56\x03\x3d\x4b\x24\x47\x67\x95\x7d\x55\x94\xa5\xcb\xb6\xc3\xa6\x1b\x9c\x8c\x02\x97\x62\xae\x2f\x9f\x4c\x3d\xa0\x03\x0b\xcd\x2c\xb7\x5d\x76\x4b\x40\x7e\xcd\xa3\x05\x7c\x32\xd5\x08\x39\x3c\xd7\x2c\x7b\x39\x0d\x18\xf8\x6a\x1c\x00\x34\x1f\xab\x0e\xce\x72\x96\x95\x3d\xf2\xe5\x59\x70\xee\xf4\x78\x11\x84\xac\xf3\x94\x12\x38\x5d\x8d\xbd\x53\x14\x78\x11\xb0\xc8\xe3\xe3\x1a\xf3\x82\x85\xa6\x59\x33\xb9\xa5\x40\x26\x16\x46\xc1\x16\x21\x12\xd4\x5f\xd3\xb2\xb4\xfb\x0f\x35\xa3\xc4\x14\x85\xca\x08\x98\x89\xc8\x27\x75\x53\x0f\x9d\x3c\xf6\x9a\x44\x6c\x46\x44\xef\x91\x18\x13\x79\xbc\x70\x25\xcb\xad\x49\x67\x34\xf6\x79\x41\xb5\x98\xfe\x40\x51\x6e\x58\xef\x98\x7f\x68\xaa\xd8\xe0\x9c\xdd\xa4\x11\x8d\xa8\xd3\x22\x70\x8d\xd2\xea\xf1\x4a\xbf\x68\xaa\x93\xbb\xb4\xd8\xcc\xda\xab\xa8\xc0\xd0\x95\x06\x80\xf4\xc7\x0a\x23\xfb\xe3\x5a\xe3\xff\xc8\xa6\x55\x1c\xe0\xbd\x10\x7d\xee\x9b\x74\xc9\x2c\x15\xae\x85\xf3\x2e\xab\x40\x43\x9a\x22\xc3\xfe\xac\xd7\xaf\x7b\x55\x69\x47\x7d\x86\x72\x8f\xff\x41\xb1\xa3\x78\xe6\x13\x31\x75\xcf\xd4\xaa\x23\x3f\x9f\x6e\x96\x61\xf7\x10\xcd\x69\x3f\xfe\xf5\xd6\x34\x31\x66\x7f\x73\x8d\x80\xd4\x09\x55\xdb\x6f\xa9\x12\xf9\xa8\x96\x50\xfe\x60\xaa\x9a\xa9\x6a\x8d\xc4\x16\xc5\x8c\x0f\x93\x0f\x00\x14\x01\x41\xdb\xa4\x35\x8f\xd7\xf7\xcf\x50\xea\x8b\xc4\xbe\x8a\xee\x36\xb7\x26\x69\x6c\xc5\x5d\x39\xa0\x87\x4a\xef\xf0\xd2\x24\x16\xd1\x2f\x9e\x50\xee\x18\x0f\x47\x5e\xb7\xe8\x4e\xa8\x00\x87\x4f\xf0\x1d\x88\xe5\xf7\xab\x5f\x1a\xfb\x5d\xf8\xd1\x96\xea\x22\xdd\xa5\xc7\x2d\x70\xa3\x16\xc0\xbf\x8c\x0b\xc7\xc6\x1f\x68\x75\xc0\x7f\x01\x96\xa5\xc0\x0f\xd5\xe3\x64\x5d\x39\xed\xa8\x16\x2a\xc6\xfa\xb9\x90\xa8\xde\xc2\x80\xf5\xbc\x23\xa9\x22\x8f\xb8\xca\x51\xcd\xa9\x9d\x54\x6b\xa7\x1f\x47\x3d\x63\x13\x1a\x11\xc6\x25\x7d\x40\x5f\x5c\x9c\x5b\xaa\xd7\x7c\xc2\xd2\x45\xbe\x84\xdf\xc6\x59\xeb\x4b\xa8\x58\x74\x13\x84\x8b\x55\x67\xd9\x53\xed\x14\x14\xc7\x27\xe8\x3d\x7c\xa2\x0a\xbc\xff\xfc\x9f\xfc\x1c\x2d\x3d\x3c\xfb\xdb\x44\x79\xe3\xe3\x29\x4d\x21\x52\x3e\x59\xc7\xf6\x85\xf4\xea\x04\x37\xb7\xa4\x77\x49\x17\x8f\x9c\xff\x6e\xa8\x09\x00\x1d\x9b\x3c\x12\x28\xbf\x42\x5f\xd7\x03\xb0\xc5\x38\xc2\x51\xfe\x73\x40\x2c\xdf\x18\xa9\x88\x79\x5e\xf5\xca\xbe\x83\x8c\xdf\x71\x74\x96\x44\xc9\x9b\x57\xbe\x4c\xf4\xe9\xb9\x33\x48\xef\xd2\x76\x28\x83\xaf\x81\x53\x4e\xc6\x2e\x25\x2c\xb1\x3a\x3f\xc9\x9e\x93\x77\x92\x61\x03\xce\xf1\xf8\xa4\x4e\xc8\x96\x30\x83\xc6\x16\xbb\x09\x51\x9e\x38\xa1\x67\x75\xae\x4d\xc8\x70\x74\x87\x3c\xbf\x84\x9e\xd3\xad\x91\xb7\x99\xbf\xa5\x74\x44\x7a\x71\x52\x0e\x53\x2b\xfb\x22\x02\x35\xdf\x01\x3e\xa9\x19\x2e\x3c\xd8\x34\x49\x62\xbb\xf2\x5d\xa4\x9f\x4a\xdf\x85\x4f\x46\xcf\xe8\xec\x2a\x5b\xb5\xb9\x58\xe4\x49\x85\xec\x69\x2f\x37\x26\x9e\x72\xf1\xf7\x50\x87\x3a\x43\x91\x03\xde\x41\x46\xd5\x2c\xe4\x6e\x8f\xaa\x1e\x75\xc4\x2e\x2a\xff\xf9\x78\xec\x1f\x9b\x4d\xcb\x38\x47\x7f\xd7\x01\x00\xa1\xf6\xc4\x7f\xd4\xf1\x75\x39\xff\x66\xce\xba\x1e\x65\xb9\xa3\x34\x9c\xc4\x17\xbc\xd8\x4d\x37\x6d\xf3\xea\x48\x53\x81\xfd\x5c\xde\x5d\x78\x31\xe0\x3b\x5e\x52\xce\x48\x0d\xa0\xd2\xce\x77\xe7\xf0\x9c\xfc\x03\x61\xc5\x28\xe9\x76\xb7\x28\xc4\xf0\x6f\xd3\x5d\x10\xfe\xc6\xd3\xae\x1c\x33\xcb\xcb\x71\xb4\xb2\x65\xba\xfe\x9a\x72\xcc\xba\xe6\x93\x39\x9b\xc4\x7d\x9b\x5a\xc6\x9f\x46\xc0\x9f\xc2\xc7\x94\x6e\x5d\x0a\x02\xa4\xa3\xff\xef\xdb\x27\xef\xca\xc8\x7b\x8c\x5f\xc3\x7b\xe3\x8c\x9a\x9c\xfa\x48\xdd\xa0\xf3\x41\x36\xb2\x93\x95\x82\xc0\xc8\x43\x42\x7c\xa2\x44\x4b\xa2\xbd\xc1\x84\xf4\x3d\x16\xa5\xb4\x0e\x3c\xf6\xb2\x96\x65\x1d\x14\x89\xac\x66\x8e\x05\x2b\xd2\xe6\x1e\xfa\x89\x12\x13\xf7\x8b\x27\x35\x84\xa3\x44\x9f\x8e\x8f\x34\xd0\x43\xac\x21\x86\xce\x55\xf6\xcf\xfd\x07\x71\x55\x51\xf9\xfd\x15\x84\x16\x24\x44\x3c\xd9\x86\x97\xb4\xd1\xf2\x1e\xfd\x3f\x1c\x79\x1c\x6b\x1b\x91\xe4\x64\xd8\x9e\xee\x08\xb2\x13\x08\x6c\x4d\xb4\x87\xa5\x5b\x8b\x7b\x80\x7d\xe3\x9e\x8a\x46\xa5\x4d\x92\xd2\x24\xe8\xb9\x02\x3b\x39\xa5\x14\x09\x4f\xe9\x39\x83\xb2\xcc\xe3\xf6\xb0\xe4\x7d\x46\x3a\xf5\x74\xc1\x7c\x12\x6e\x99\x73\x38\xf4\x7c\x15\xa8\x1f\xf1\x22\xc1\xbb\x21\x1b\x82\x3e\xe0\x51\xb5\x65\xc2\xda\x18\x68\xc7\x09\x35\xc1\x7e\x1f\xc9\x0c\x78\xdf\x8f\x40\x00\x5c\x3c\x3c\xe8\x93\xb1\xcd\x9f\xc4\xb7\x05\xc4\xfd\x60\xaa\xe1\x5b\x2d\xa1\x2a\x7e\x74\xd3\xf8\x15\xab\xb6\xa2\xa3\x7a\x2b\x3a\xea\xe6\x67\xd6\xe2\x32\xea\x35\x3c\x88\x78\x4e\x79\x46\xde\x51\x0f\x75\x9a\xab\x3c\x3f\xdf\xb4\x26\x67\xa9\x3e\xfa\x85\x7f\xfe\x24\xbd\x8d\x7c\xac\x02\xca\x20\x4b\xe2\x32\x8e\x8a\x5d\x74\xe5\x78\x32\x37\xe8\x8e\xa0\x16\xba\x35\xf2\xd3\x64\xd7\x90\x28\x88\x6e\x31\x21\x43\x48\x6b\x6f\x6a\xd9\x70\x7a\xbd\xc1\xf7\xb9\x85\x0c\x86\x7f\x48\xc1\x98\x34\xdf\x02\x9f\x08\x67\xa0\xa7\x34\xfc\x95\x60\xc0\x9a\x4d\x92\x62\xc6\xbf\xb2\xc7\x34\x4d\xf4\x18\x00\x4d\x11\x76\xd1\x2a\x2f\xaa\xf0\x5e\xce\xb3\x57\x6c\x1a\xa8\xe6\xeb\x85\xd0\x8f\x2e\x1c\x9c\x9e\xfa\xd9\xb7\xaf\x19\xf5\x6c\xb4\xd2\xf0\x5c\x09\x26\x2a\x0a\x95\xcf\x63\x3a\xf7\xeb\x60\x93\xa8\x37\x4c\xc5\x93\x83\x93\x3e\x5a\xce\x3e\x01\xf4\x5b\x44\xdf\x82\x17\x86\xa6\xe0\x3d\xa4\x56\xb8\xf9\x77\x94\x5b\xcd\x9f\x53\x4e\xc4\xff\x1f\x37\x0b\x17\xc0\xcd\x3a\xe4\xd3\x7a\x22\xa7\x9f\x75\x6c\x4e\x4b\x4d\xab\x67\x85\x5a\x64\x4b\x21\x5b\x45\x96\x76\x8b\x92\x85\x90\x17\x26\xc6\xa6\x24\x24\x3e\xad\x64\x6d\x3b\x65\x9e\xa5\x71\xb4\xc3\x9b\xe1\xea\xc2\x38\x68\x55\xb1\x01\x19\xed\x19\xfa\x1b\x62\x01\x59\xad\x0d\xc4\xca\xdb\x23\xf5\x02\x7f\x67\x4a\x2b\x8f\x68\x78\x10\x11\x33\x6d\xb6\x45\x12\x0a\x41\xa0\x44\xe6\x1f\xf7\xf0\x4d\x97\x40\x21\xd7\x06\x7e\x4f\xf7\x0c\xdf\x53\x40\x00\xf6\xef\x19\x4f\xf3\x62\x61\x79\xdc\xdc\x4b\xe8\x9a\xc9\x6c\x68\xf5\x59\x12\xb4\x3d\xf9\x77\x35\x8e\x40\x2b\xc1\x82\xb8\xa3\x72\xfd\x9b\xf4\x1d\x85\x87\xb1\x35\x75\x7a\xf1\xc5\x26\x61\xbc\x8c\x4f\x8b\x7d\x50\xf5\xeb\x7c\xbc\x35\x7a\x2d\xcd\x2d\x35\xf7\x1f\x7a\x44\xd5\x08\xb7\xd4\x08\xf1\x8f\x11\x79\x1d\x9e\xe4\x52\x81\x37\x11\x98\x90\x12\x9e\x9f\xa4\xea\x7b\xd6\xff\x55\x6c\x80\x22\xc5\x4f\x4f\x44\x5c\xae\xea\xb0\x8d\xa2\x67\x73\xab\x33\x9a\x91\xa6\xc1\x4d\x95\xa5\x04\xad\x9b\xa2\xc8\xb3\x4c\xb4\xe8\x71\xd9\xbf\xa3\xdc\xa4\x7f\x47\xc1\x81\x76\x79\x39\xcb\xcb\x5d\x1e\x91\x7a\x1f\xd7\xe4\xe8\xa7\xd5\x9f\xe0\x93\x50\xe5\xd6\xbf\xc3\x5b\x0b\x9f\x29\xd2\xcc\x7d\x25\xec\x03\xe1\x23\xd4\x84\xdf\x9b\x0a\xcf\xfb\xf6\x55\x25\xed\x6a\x95\x62\x4d\x02\x4a\xc8\xb4\x65\x6c\xe5\x31\xed\xb6\xb0\x02\xc5\x49\x70\xa4\x20\xbd\x86\xc5\xc2\x1d\x6f\x3e\xa1\x1d\x91\x7f\xc8\x2d\xc4\x81\x89\x53\xd7\xb2\x46\x0e\x8c\xb1\x15\x3e\x56\xe5\x92\x1d\x14\x71\xd6\xb1\x0d\xc5\x9d\x01\xb8\x82\x6d\x0b\xf0\x87\xf0\x42\x1f\xf5\xe6\x94\xc5\xff\x8f\x82\xb4\x73\x10\xae\x9e\x35\xbe\xfe\x7b\xa1\x9a\x5b\xbc\xad\xa4\xc9\x40\xa4\x41\x33\xe3\x2f\x31\x86\x8b\x9b\xb7\x73\xec\x79\x24\xbf\x8b\x28\x85\xdf\x98\x1d\x63\xc0\x16\x8b\x68\x66\xac\x06\x98\xb7\xb5\xbc\x17\x19\x8f\xdf\x39\xe3\xa4\xea\xab\xe0\x5a\x60\x9c\x81\x77\x0c\x59\x23\x5e\xbe\xd9\x56\x55\x14\x49\x90\xc6\x03\xe6\x91\x7a\xa4\xe7\xc8\x0e\xd8\x77\x12\xe5\xe2\x76\x12\x76\x00\x54\x30\x3b\xa6\x9c\x15\x6c\x65\x46\x7c\x80\x6f\x30\xdb\x19\xcd\x9d\x5b\x0a\xaf\xbd\x83\xa0\xc4\x0a\x21\x8a\xbe\x85\x88\x86\x6b\x61\xe2\xb3\xd8\xaa\xfa\x49\xe9\xb5\x8c\x36\x2a\x36\x83\xc3\xae\x2e\x32\x2b\xda\xb2\xce\x7f\xad\x2b\xe1\x4f\xc9\x64\x6f\x9c\x75\x73\x33\xe8\xd9\xfc\x9f\xfd\x43\xd5\x10\x76\xc6\x39\x2e\x40\x5c\xd1\x12\x36\xf1\xaa\xcd\xcb\x2d\x43\xb3\x8a\xc1\xfe\x2d\x3f\x0d\x99\xa5\xb6\x80\xd0\xa0\xdb\x70\xab\x67\x8b\x5c\xee\x23\x25\x1b\x72\x7b\x8a\x5d\x51\xbd\xc5\x64\x83\x65\x1b\x5a\x61\xfd\xfa\xc8\x83\x44\x9f\x84\x13\x6e\x5f\x3e\xbf\x30\x65\x69\xfb\x83\x92\x77\x15\x04\xed\xeb\x4a\x32\xea\xba\xe6\xdd\xe5\xab\xdc\x2f\x16\xba\xec\x4f\x42\x05\xa3\xfe\x10\xa1\x0e\xd0\xcb\xaf\x8f\x7e\x6a\x32\x4c\x2e\xee\x3f\x24\x5c\x47\xd4\x8a\x52\x94\x56\xcb\x59\x6a\x52\x3f\x7b\x62\x3a\xd4\xc6\x75\x0e\x2f\xa1\x77\x7e\x79\x17\x8b\x03\xd9\xe1\x4d\x4d\xed\xd8\xdd\x52\x93\xa6\xb7\x94\xed\xff\x19\x2c\x67\x47\x77\x73\xf4\x39\x4c\x95\x00\x3b\x0b\xc6\xcf\x4e\xab\x30\x2d\x2d\x12\xf3\xca\xe9\x50\x55\xaf\xd5\x84\x01\xa8\x73\x83\xa8\xd6\x38\xbe\x3b\x26\x8c\x90\xa5\xfe\x44\x89\x6a\x9c\x52\x8c\xd9\x32\x33\x9d\x40\xb5\x22\x4f\x8d\xd4\x1b\x73\x2a\x7c\x46\x59\x1a\x0c\x9c\x8e\xad\xb2\x10\x53\x62\x1f\x57\x42\xe1\x89\xf5\xad\xa1\x60\x05\xac\x69\x43\xbb\x42\x6f\x4c\x94\xbd\x26\x5f\xd9\xad\xe4\x63\x2f\x10\x88\xe2\x6a\xe0\x25\xc1\xbf\xef\xaa\xa9\xcd\xef\x8f\x14\xee\x0f\xf6\x81\x2e\x04\x94\x10\xf4\x7e\x5e\x0f\x7f\xaa\x45\xd2\xaf\x73\x7d\x85\x2d\xe5\xdf\x4f\x6d\x5e\x2f\xbe\xa8\x11\x3a\x14\x27\xd8\xb5\xf1\x29\xef\x6b\x60\xf6\xda\xd4\xb6\x4d\xe4\x2a\x13\xf5\x6c\x67\x46\x0d\x3d\x30\x81\xdb\xd5\x0e\x0e\x93\x3b\x33\x52\xa6\x98\xdb\x5a\x35\xa2\x59\x71\xda\x89\x23\x53\xca\xa4\x14\x2b\xd1\x60\xb9\x8b\x2c\x8d\xcf\xb7\x4c\x87\xb8\x7d\xd5\x4f\xbf\xe0\x9c\xa4\x4e\xd1\xa3\x97\x9e\x53\x8d\x73\x79\x14\xe7\xd1\x30\xf1\xb3\x3d\x00\x91\xb8\x60\xe5\x93\x3a\x6a\x47\x3b\x31\xdc\xe0\x44\xe4\x7f\x3b\x54\x1a\xe6\x6f\xab\x26\x70\x27\xeb\x92\x1a\x9e\x9f\xad\xbf\xa5\x24\x52\x6f\xa9\x91\xc8\x35\x23\x63\xab\x08\xc0\xe0\x76\xf1\xf1\x16\xaa\x7e\x8f\x70\x7e\x87\xf3\x6d\xd2\x53\x72\xaa\x62\x4b\x73\x0e\x5b\xfb\x3c\xaa\x73\x99\x75\xc9\xbb\x7f\x56\xd1\x39\xce\x8d\x3c\x13\x69\xa6\x15\xfc\x92\x38\x51\xfe\xb7\x8a\xce\x74\x46\x5b\xec\x78\x28\xc5\xae\xdb\x62\x27\xbd\x4a\x4e\xf1\xc1\xe1\x76\xa7\xb1\x6a\x29\x88\x2c\xfd\x74\xcb\x8b\xaa\xe2\x05\x82\x88\xdd\x0e\x52\x3c\x14\xcd\x66\xfa\x0c\x31\x93\xab\x5d\x19\x55\x35\x6c\x65\xb8\x4c\x38\x5a\x9e\xcb\x76\xc1\x11\x87\x3a\x26\x59\x61\xef\x75\x67\x2f\xb9\xe0\x8c\xb3\x1f\x84\x7e\x6e\xef\xbc\x92\xab\x5d\xcd\xba\x36\x29\x4a\x1b\x73\x63\xc7\x11\xaf\x14\x55\x4b\x3b\x58\x90\x3b\x37\x4c\x34\x81\xec\x6c\x54\x37\x60\x73\xf7\x58\x19\x6c\xdc\x0d\x55\xf0\x38\xa1\x34\x15\x6e\x7e\x91\xc6\xc0\x9c\xb9\xdc\x0b\x4b\x73\xce\xa1\xcb\x93\x19\xfe\x54\x69\x41\xc4\xfd\xea\x23\x4d\x69\x93\xf5\x5d\x0a\xd2\x78\x38\x52\x28\xeb\x87\xaa\x89\xf6\x40\xb3\x3d\xef\x00\x07\xc6\x02\xfc\x10\x81\x5c\xb6\x50\xba\x9d\x7a\xcb\x07\x36\x75\xd5\xd1\x60\xd3\xbd\x3d\x5a\xf5\xcc\x3b\xc6\xb7\x10\x12\xb2\x47\xeb\x7a\xa6\xdf\x37\xd1\x0a\x5e\x45\xe7\x68\x7b\xc0\xb9\xdb\x7a\x5e\x57\x36\x88\x6d\x8e\xea\x0b\x69\x00\x1c\x28\xf9\xb8\xe5\x8b\x2f\xa9\x49\x8a\x49\xf9\x56\x45\xfc\x78\x46\xcd\xe0\x95\xa6\x9d\xb9\x19\x4d\x6c\x16\xd0\x18\x14\x49\x4f\x45\xd9\x7d\xc7\x69\x81\x2f\xc7\xb9\x6d\x53\x67\x58\xf5\x78\xaf\x4c\x70\x2c\xb7\xae\xc6\xc5\xe7\x0f\x36\x07\xd9\x60\x08\xc2\x9c\xcb\x40\x3e\x54\x36\x7e\x1f\xaa\x6c\xa4\xfa\xc1\xf2\x15\x66\x69\xb0\x1e\x65\xe8\xa9\x03\x17\x54\xeb\x99\x89\x0e\x3b\xe9\x69\x09\xb3\x80\x1e\x10\x1e\x2a\xb4\xd3\x44\x67\x98\x51\xbe\xea\x99\xa3\xc6\x82\x1c\x9d\x33\xeb\x77\x72\x36\x93\xfa\x9b\x26\x2f\x9e\xa5\x9b\xcf\x36\xd1\x14\x2f\x1d\xe3\xd2\x4d\xdb\x9c\x0b\xd5\x2c\xdf\x3f\xc7\xcd\x13\x97\x7c\x07\x8a\xee\xdb\xe7\x4c\x96\xe8\x9a\xb1\x51\x30\x25\x17\xa1\x04\xf4\x2d\xc0\x42\x33\x2d\xc5\x24\x3a\x47\xdb\x1f\x96\xf1\x17\xe8\x75\x40\x2c\xb8\x41\x79\x2f\xa7\xdd\x1a\x70\xbe\xa5\x95\xc7\x76\xa1\x31\xec\xbc\xb2\xaa\x55\x87\x97\x1a\xec\x4a\xa7\x61\xed\xc6\x98\xaf\x29\x9b\xcd\x8e\x49\x63\x9b\x6c\x05\x5a\x16\x1d\xd0\x52\x03\x1d\x91\x12\x7c\x30\xa9\xfe\xee\x24\xc1\xae\xa8\xdc\x2e\x1d\xf6\x6d\x9e\x0d\x21\x76\x88\x0c\x09\x43\x9f\xe8\x28\x07\x50\x54\x10\x07\xea\x3d\xea\x0d\xcf\x18\xa2\x47\xf0\x60\xd2\x2d\x9f\x38\x17\x85\x32\xeb\x67\x79\x9e\xad\xd1\x5e\xc0\xe1\x36\x54\x36\x2c\x6f\x8d\xbc\x63\xe9\x7b\x4a\x1f\x8d\x28\x72\x58\xe4\x75\x08\xf9\x53\x13\x9e\x65\x89\x2d\xa1\x58\x22\x32\xab\xb8\x30\x3c\xa0\x53\x80\x02\xb0\x4d\x9d\xc7\x43\xc1\x62\x7d\x08\x00\xc9\x95\x62\xae\x27\xfe\x70\x34\xf1\x76\x29\x7d\x8b\x53\x74\xb9\x1a\x93\xe5\x58\xa4\x90\x89\x74\x35\x4e\x23\xb6\x3c\x01\x2f\xe1\xbe\xe2\x28\xdc\xf7\x06\xb3\xa0\xd8\x10\xd1\xdf\xd9\x90\x83\x81\x87\x0f\xbb\x33\x52\xe3\xe5\xb3\x53\xea\xab\xd5\x8b\x6d\xd2\x32\x2e\xf3\x21\xbf\xd9\x28\x4e\xbf\x47\x9f\xc6\xc7\x5b\xba\x1e\x39\x19\x4f\x91\xa0\x10\x00\x1c\x2d\xe9\x8c\xc9\x00\x14\x7a\xb7\x69\x7c\x95\xff\xbf\x32\xa3\x39\xaf\x68\x15\x69\x27\x4b\xc5\xec\x42\x04\x34\x69\xc5\x89\xb2\x66\x4d\xf7\x88\x68\x2d\xe8\xb5\xe1\xed\xdb\x86\x2e\x26\x83\x93\xf4\xed\x91\x47\x5f\x9c\x42\x93\x24\x35\x78\xc9\x2e\x2f\xe7\x76\x5d\xb1\xc3\x4e\xe3\x7d\xe0\x13\xc5\x52\xb0\x2f\x9b\x7e\x55\xf4\x04\xfe\xb1\xfd\xe9\xc8\x47\xcb\x3f\x55\xf3\x71\x6b\x36\x59\x36\x39\x2c\x31\x81\x67\x5d\x1c\x29\xa2\xff\x9d\x70\xa2\x05\xe4\x5a\x9e\x77\x47\x7e\xa7\xe8\xb7\x4d\x89\x0e\x3c\x34\x54\xce\x2a\x12\xcb\x2c\x81\x50\x40\x94\x3e\x53\xf5\xd2\xc0\xa6\xa9\x85\x96\x81\x63\x04\x57\xf7\x10\x5b\xd6\x5f\xd0\x5f\x70\x1e\xf2\xde\x2f\xf0\x2f\xc2\xad\x16\x52\x87\xe7\x8e\xc0\xc0\x2f\xa7\x61\x3d\x1e\x1f\x14\xc9\x57\x0f\x6d\x5d\x54\x3d\xab\x35\x93\xe7\x26\x2d\xb5\x39\x16\x7f\x3c\xba\x0b\xaf\x85\x6a\x66\x0a\x1f\xcf\xff\x30\x11\xa3\xb3\xc8\x68\xff\x49\x24\xfb\x32\x0e\x2e\xeb\xa5\xda\x1c\x97\x63\x49\x63\xdd\x74\xc0\x92\xaf\x65\xf5\xac\x62\x96\x75\x59\x7e\x03\x71\xe8\xa8\x52\x09\x3b\xaa\x30\xe8\xc4\xae\xda\xa4\x78\x94\xbe\x00\xee\xcc\x4d\xbc\xef\x28\xdd\xee\xaa\x1c\x21\xa0\x7d\x1b\x5d\x0c\x86\xcc\xdc\xbc\xc2\xd2\x1c\xc7\x66\xd8\xc8\x22\x45\x7a\x2b\x54\x48\x15\x76\x2e\x79\x2a\x2a\xa7\xe1\x8a\x16\x6b\xef\xee\x14\x90\xbc\xb8\xb4\xd8\x4c\xed\xaa\x65\x99\x12\xc9\x4b\xbd\x00\xf1\x15\x25\xd4\x5e\xa5\x05\xfd\x61\x14\x27\x81\x02\x90\x27\x64\x16\xa7\xdd\x2d\x5f\xd8\x7f\xa8\x59\xf4\x72\x93\xae\x34\x26\xe6\x5c\xfd\x90\xd4\x51\xfc\x01\xb1\x0e\x7c\x5c\x79\x03\xac\xd8\xe2\x51\xa5\xc2\x84\x8e\xb1\x24\xbf\xf4\xe7\x64\xc2\x51\x85\x28\xcd\x96\x3e\x46\xf1\xc3\xb5\x17\xab\xb7\x10\x7b\xd9\xff\x1c\xaa\x5e\xd4\x05\xe5\xc2\xb5\x8d\x00\x21\x67\x03\xe1\x51\x9f\xc9\xd6\xfa\xde\x7c\x6f\x43\xf9\xdb\xb1\x5f\x34\x1b\x7e\x60\x8d\xb2\x58\x52\x2d\x55\xc8\x94\x11\xf2\x40\xb9\x6d\x1e\x84\xbf\x54\x4b\xda\xcc\xa2\x61\x61\x39\x32\x61\x1b\xfc\x2c\x54\x23\x8e\x48\x74\x3d\x78\xb3\x85\x3f\x53\x10\x81\x06\x3b\x37\xcf\x1b\x23\x86\xff\x4f\x74\xe3\xc0\x41\xbd\xa4\x1c\x57\x59\x00\x1a\x3f\x73\xad\xee\x2b\x0c\x12\x41\xc2\x59\x06\x5d\x8d\xaf\xdf\x98\x90\x99\x2c\xb2\xbc\x44\x84\x13\xd7\xbc\xc0\x89\xeb\x1f\x9f\x62\x21\xee\x3f\xd4\xec\xdb\xdc\xce\xfa\x82\xe3\x69\x34\x76\xc5\xaf\x54\x17\x75\x9e\x84\xb0\xa1\x67\x63\xaf\x29\x66\x6a\xd2\x29\xf6\x28\xd1\x1d\x9e\x4a\x11\xa6\x91\x0f\x94\x8f\xa2\xd4\xa0\x7d\xe9\xf5\xa7\x5a\xbe\x91\x77\x9f\xb7\x6b\xbc\x41\xb0\xd5\x44\xcc\x44\xa6\x0d\x32\xc3\x4f\x8d\xab\x65\x83\x3f\xc5\x9a\x0e\xe0\x5c\x3e\x18\x79\x8c\x7c\xf3\xef\x02\xdc\xc1\xda\xbc\xaf\x06\x4c\x7a\xd6\xac\xae\xef\xf0\xbb\xcb\x06\xa5\x73\x98\xd5\xbc\xa0\x8c\x09\x5f\xc7\xd7\xe4\x7f\x08\x55\xd9\x43\xa1\x0a\xd7\x72\xd5\x35\x2c\xc8\xd1\x98\x7b\x74\x88\x32\xa0\x80\xf2\xf1\x68\xc2\x33\x38\x62\x06\x2b\xc0\x8a\xef\xe3\x93\xf8\x44\x75\xba\xec\x30\xcf\x06\x76\xb7\xb7\x13\x79\xa0\x26\x57\x79\xaa\x5c\x8c\x31\xbc\xda\xd4\xef\x3f\xd9\xd2\x8d\xd9\x3f\xa1\x47\x87\x94\xe3\x1a\x1e\x09\xcb\x35\x62\x75\x82\xed\xfd\xa1\xc2\x9f\x31\x8d\x0c\xc8\xf1\xc9\x96\x2f\x08\x8a\x5e\x6e\xd7\x3a\xc9\x3a\x92\x31\x04\x40\xa8\xed\xf2\x71\x28\xce\x76\x66\x30\xc8\x6d\x14\x83\xd6\x18\x38\x01\x39\xf4\x15\x65\xea\x58\x2a\x99\xc2\xda\x7e\x9c\x76\x93\x75\x6a\xe1\x60\xed\x9d\xa5\x8b\xc6\x00\xa5\x68\x65\x3b\xb3\x62\xe7\x93\xf5\x50\x2d\xbe\x5e\x6e\x94\x8e\xd6\x4d\xe5\xe7\x71\x53\x95\xbf\x49\x5c\x0e\xf3\xee\x7a\x43\xb9\x7a\x08\xd4\x24\xca\xbc\x81\x9f\x99\x57\x7f\x3e\xea\x71\xa1\x85\xf5\x00\x3b\x69\x3e\x56\xdb\x28\x3a\x5c\xc5\x6c\x55\x60\x60\x79\x8d\x71\x97\xf9\x04\xf7\x5f\x28\xff\xc1\xc2\xc2\xe6\xd5\x91\xaa\x14\xee\xa9\x2c\xc4\x44\x91\x25\xa4\x75\x71\x69\xd1\x75\x1a\x7d\xc0\xbc\x14\x3e\xa7\x1e\x8c\xc9\x6d\x2f\x23\xd7\x9d\x5d\xd5\x4d\x10\xbf\x74\x3f\x83\xd4\x68\x29\xdf\xff\x53\x7a\xf8\x8a\xe5\x4e\x58\x31\x82\xee\xbb\x98\xa1\x7a\x8a\xda\x93\xbf\x89\x20\x2e\x1a\xdc\x75\x1a\x68\xd5\x05\xc4\x69\x77\x86\x7e\x10\x38\x32\xec\x9e\xb1\x0d\x20\x77\x54\x82\xe7\x92\xa5\x1d\x77\xc2\xe9\xd9\xb0\x64\xcf\x68\x0e\xbf\xd8\x4d\x36\x50\x4c\xe1\x69\xc2\xe1\x42\x1a\x6d\x75\xf6\x46\x51\xd6\xb7\x30\x67\x42\x31\xcd\xbe\x6b\x28\xb2\x40\x12\xe6\x0f\x56\xde\x3a\x97\x94\x74\xcf\x6d\x97\xa9\x88\x90\x49\xe0\xe7\x24\xd1\x42\x14\x5d\x51\xf7\x83\xbd\x78\xd9\xf7\x99\x58\xeb\x45\x51\x16\xaf\xab\xba\x3a\xb7\x91\x8d\x57\x65\x2c\x80\x75\xae\x95\xd7\xf9\x07\x93\x55\xef\xf2\xf2\x4e\x2c\x50\x81\xb3\x7d\x33\xec\x71\xba\xbd\x8e\x4e\xb0\x6f\xff\xc4\xb0\x14\xca\xaa\xb3\x5a\x34\x67\x43\x0b\x90\xdc\x9c\x02\x08\xaa\xfc\x81\xf4\x2e\xe2\x12\x39\xb5\x14\xb3\x81\x13\x5b\xf1\x72\x29\xcb\x59\xda\xb1\x45\x09\x8f\x24\x19\x48\xd1\x63\x27\x35\x53\x9d\x86\x8c\xb4\x0b\x2d\x52\x71\x65\x42\x6c\x62\x2b\x06\xb8\x6f\x5f\xb3\xc8\x06\xbd\xb8\x28\x09\x5e\x05\x07\xaa\xd6\x68\x7d\x6b\x4d\x74\xe8\xf9\xa6\x7d\x79\x90\xc4\x51\x5c\x26\xe0\xe3\xb8\x76\xf3\x92\x3b\x9e\x1a\xf2\xdb\xb7\xaf\xd9\xc9\x06\x56\xa1\xca\xb7\x26\xec\x8e\xb4\x5f\xa4\xc2\x43\x8b\xbe\x49\x92\xc7\x03\xa7\x45\xc0\xaa\x06\x3c\x7d\x42\xe0\x84\x2b\xb2\x1c\x5c\xce\x7e\x60\x02\x5c\xe2\x21\xe3\xd5\xfb\xa3\xd1\x84\xd9\xba\xc7\x18\xee\x28\x25\x80\xdf\x42\xe4\x10\x29\x2b\xad\x6b\x85\x57\xda\xe5\x1a\x07\x44\x29\xfe\x4f\x42\x85\xf1\x5f\x0c\x1f\x53\x76\x36\x1d\xc6\x08\x9c\x20\x99\x17\x27\x9b\x7a\xdb\x7f\xa6\x59\xd8\xaa\xe8\x33\x6c\x0e\x00\xf0\x99\xbb\xd2\x7c\xa2\xe6\x99\x4a\x6b\xf2\x06\xdd\x10\xe4\xb9\x17\xd4\x15\xdd\xc0\x2d\x45\x99\xb5\xad\xe5\xfa\x5b\xa6\xcc\x65\x68\x15\x4b\x17\x88\x08\x2b\x7d\x85\x1e\xa2\xbe\x52\xc3\xba\x6e\x9a\x6e\x1e\x47\xc3\x84\x8c\xde\x95\xee\x10\xc4\x9c\xe4\x6a\x95\xbe\x5e\x99\x0d\x76\xd2\x9b\xeb\xa8\x93\xf3\xf3\xdc\xb1\x46\xb5\xc7\x06\xd9\xb8\xc9\xd8\x37\xde\xa2\x47\x89\xa8\x02\xc0\x90\x8f\x75\xaa\x50\xab\x1b\xd6\xce\xac\x0b\x15\x4a\x00\x55\xc4\x22\xbf\xe7\x5b\xca\x79\xb6\x9c\x0d\x53\x38\x57\x4a\xef\x85\x2e\x41\xeb\x7e\xe3\x3d\x7f\x84\x62\x81\xd0\x86\x3d\x34\x17\x0d\xf3\xd2\x00\x1b\xfe\xba\xcb\xa0\x03\xa7\x48\x70\xa1\x6e\x3a\xab\x6f\x7c\x2c\x73\x64\x3a\x57\xc8\x69\x1d\x24\x12\x05\x9e\xf5\xe8\xfe\x78\xd2\xba\x56\x8b\x50\x69\xa6\x35\xdb\xea\xf2\xef\x4c\x90\x43\xb3\x95\x62\xb7\xf2\x8d\xbe\x87\x45\x8e\x5b\x7e\x74\xa4\xe0\x32\x48\x51\x32\x4e\x4c\xf7\x1f\x28\x1f\xc0\x44\xfc\xe9\xb3\x6a\x66\xfc\xdf\x60\x08\x52\xd5\x0d\xd2\x01\xb8\xa9\x05\x26\x2e\xd7\xd1\x87\x8a\x58\x9c\x52\x81\x17\x7d\x46\x9f\xcd\xc7\x6a\xec\xb6\xfa\xcf\xac\xca\x48\xcf\x8f\x14\x0b\xff\xbc\x62\xa3\x7d\xaa\x27\x9c\x42\xaf\x7e\x7c\x7e\x4a\x8e\x44\xa0\x8e\xc2\x9a\x6e\x6e\xfa\x4a\x61\x74\x43\x2f\x9a\x0d\x65\xd0\xdb\x36\x49\x92\x01\x90\xf1\xb8\xe3\x39\x40\x5c\x7c\xa2\x08\x8b\x51\x2f\x8f\x51\x5f\x63\xcf\x66\xef\x4a\x3e\x51\x40\x5c\x3b\xcf\x56\x50\x2c\xb8\xc1\x42\x77\xd3\xaf\xd3\x0d\xe1\x82\x93\x00\x23\x64\x29\xff\x96\xbe\x27\x3e\xf4\x92\xfa\xd0\xbe\xc9\xf1\x9c\x8f\xf8\xf9\xbf\xc3\x73\xdc\x16\x9a\x19\xab\xc5\x8a\x02\x19\x1c\x69\x30\x0b\xf0\xff\x6f\x68\xb5\x57\x16\xdd\x75\x33\x6d\x0e\x2c\xf8\x0e\x15\xf1\x58\x3d\x3f\xdd\x52\xb2\x8c\xe3\x50\xf1\x2a\xda\xb4\xbf\xbb\x35\xe6\x73\xc3\xa3\x13\x21\x92\x5b\x63\xd8\x71\x90\x48\xf0\xb1\x12\x93\xcb\xe3\x2e\xc2\x16\x4a\xc0\x13\x8a\xf7\xc8\x57\x89\xec\xfb\x7b\x53\xeb\xec\xd0\xf3\xcd\xc4\x9a\x55\x4b\x5d\x7d\xa4\x0d\x1b\xa1\x27\xdd\xa2\xee\x94\xf9\xce\xc7\x54\x03\xc1\x42\xa2\x04\xbc\xae\x9d\x20\x6c\x20\x59\xb8\x45\xdc\x04\x7c\x1e\x3c\x91\xf1\xed\x1f\x27\x5a\x05\x32\xfc\xbb\x58\xa3\xd2\x8c\xa2\x6f\x8f\x9f\xda\x03\xd4\x9b\x3b\x5d\xa1\x9f\xc3\xab\x82\x7f\xd6\x8f\x8b\xb2\x50\x85\xf5\x43\x55\x58\x3f\x9c\x48\x61\x5e\x8e\x2d\x62\x09\x6e\x2a\x72\x73\x3e\x0e\xbf\xa0\xcb\xd7\x32\x1f\x46\xe5\x30\x8f\xd3\xee\x0e\x0f\xbe\xb3\x30\x87\xcb\x1c\xab\xaf\xc7\x27\x74\x7b\xb0\x02\x8f\xaa\xd5\x78\x14\xc9\xaa\x50\x3a\x3f\xaf\xb1\x38\xa1\xbf\xeb\xdc\xe8\xf6\xed\x97\xe3\x5a\xca\x54\xdb\x76\xe3\x94\x1e\x11\x36\xc7\x3b\x88\x24\x48\xc2\xd0\x34\x16\xe9\xff\x3a\xb5\xff\x61\x7b\x98\xb7\xd9\xcf\x08\x1f\xf3\xbf\xd0\x0a\xe1\x63\x55\x4a\x24\x36\xed\x96\x3d\xe4\x61\x68\xfe\x9c\xa7\x14\x8f\x8f\xc3\xe7\x34\xf2\x10\x25\xd6\xe4\xc6\x81\xcd\xf2\x33\x81\x53\x85\x3f\x5f\x23\xbb\x76\x84\x55\xae\x05\x89\xab\xd3\xa3\xac\x61\x43\x26\x71\xba\x22\xbf\xc2\xa6\x61\x23\xa5\x7e\x77\x7c\x8a\x94\xbf\x34\xd7\x8c\xb2\xa2\x6f\x89\x04\xe3\x88\xa5\xa7\xd4\x96\xe2\xbd\x93\x22\x33\x88\x4b\x93\xc4\xaf\x58\x9e\xb9\x13\x15\x1a\xdf\xf2\x60\xe3\x51\xd1\xe0\x50\x5a\x35\xf8\xc2\x02\x28\x52\x74\x11\x4d\xfc\x9a\x91\xb0\x08\x33\xcf\x04\xb9\x4f\xc8\x58\x68\xc2\xb0\xb8\xe7\x3e\xeb\x93\x85\x61\x51\x15\x66\x71\x9b\xf9\xcd\x28\x32\xee\x2b\xcb\xba\x5a\x0e\xe9\x20\x4b\xe2\xc8\x36\x94\xba\x19\xf0\x01\x36\xbd\x51\x1e\xf6\x97\xa7\xa4\xe6\xe7\xe7\xab\xd2\x88\x06\x3b\x11\xd6\xfe\x90\x02\xa1\x13\xcd\x72\xc9\xea\xa5\x09\x23\x9f\xc7\xd5\xab\xb5\x1a\x65\x33\x2a\xdd\xe4\xdb\x26\x2b\x35\x50\xa2\xd3\x14\x00\x44\x8d\xda\x03\x92\x30\x2c\x76\xbc\x92\x3a\x55\x86\x3a\x3c\x92\xc1\x0e\xfa\x34\xc4\xea\x87\xc8\xdb\xf9\xa4\x4e\x67\x38\x5b\x5e\xb6\x69\x21\x2f\xa6\x38\xc7\xf9\x06\xbc\x57\xc7\xb3\x9d\xa1\xc9\x3b\x81\xe3\x42\xef\x3e\xa3\x79\x1f\x67\xea\x84\x65\xaa\x5c\xaf\x6b\xa0\xd4\x0d\xf6\x19\xb2\x49\x3e\x9e\xba\xf7\x07\x16\xaa\x34\x4c\xcf\x3e\x8f\xb4\x80\xb9\xaf\xd7\x97\xab\x5d\x77\x58\x36\xaa\x27\x03\xd4\xf8\xe4\x84\x23\x77\xf5\xf4\x64\xee\xa7\x06\x76\x4c\xb2\x76\x3b\x96\xa2\x50\x22\x97\x0e\x82\x7e\x23\x36\x79\xdf\x76\x58\x58\x0e\x41\xe8\x16\x00\x4a\xf0\xec\xee\x28\xfa\xe0\x1d\xda\x0b\x11\x15\xff\x3b\xdc\x1b\xfe\x8d\xa9\xb4\x99\x14\x98\xb3\x24\x31\xa5\xcd\x99\x57\x83\xbc\x65\x27\x98\x7e\xec\xe1\x48\x7f\x10\x5b\xd8\xb6\xf1\x63\x4a\xe2\x3d\x49\x02\xb5\xa6\xbe\x8b\x97\x94\x4f\xa6\xc6\x2f\x16\x9f\x3f\xd8\xcc\x6d\x9a\xad\xa5\xb2\x38\x9c\x07\xf6\xfc\xbc\xdb\x71\x6a\x34\xb3\xe3\xb4\x33\x8c\xec\xc4\x10\x3e\x45\x3c\x99\xc2\x9f\x68\x72\xc5\x83\xd8\xa6\xe5\x84\x2c\xc0\x75\x95\x90\x9c\x53\xca\x4c\x9f\x69\x22\x68\x92\x45\x20\x82\x8a\x0a\x1f\x5d\x21\x32\x22\x20\xa1\x7c\x1c\x6a\xd9\x3e\xe5\xe5\x65\x8a\x38\x32\x09\x6c\xc0\x58\xb2\xf4\xbf\x39\xa1\x84\xe7\xef\xa8\x40\xa5\xb9\x1c\x24\x40\xd1\x4e\x98\xb6\xad\x54\x26\xab\xcf\x17\xcd\xaf\xe9\xc5\x73\xb0\x69\x96\x97\x4d\x9c\x2b\x29\xf1\x37\x94\x94\xf8\x1b\x53\x3b\xd1\xfc\xfc\xc1\x66\x69\x5f\x2e\x63\x66\x62\x23\xf0\xdc\x54\x41\xe8\xa6\xc3\x40\x3a\x66\x48\x5e\x01\x81\xd2\xfb\x39\xad\x9c\x3c\x4e\x6b\x3b\xc0\x38\x59\x35\x0d\xdf\x3b\xbc\xac\x54\xc0\xb8\x53\x2d\xee\xb9\x82\xfe\xb5\x4d\x52\xc6\xfd\x2c\x67\xd9\x5e\x81\x55\x15\x49\x8c\x36\x76\x6c\xf8\x1f\xa9\x7e\x4f\x6a\x57\x4d\xc7\x68\x62\xef\x75\x45\xec\xbd\xae\x4c\x8c\xf2\xac\x60\xcc\x52\xfb\x62\x88\xc0\x47\x0d\xc9\xb9\x63\x13\x4a\x0d\xd8\x49\xc1\xb9\x2f\x55\x1f\x25\x92\xbc\x7e\xb9\xc4\x49\xb2\x97\xba\x76\xa2\xf0\x43\x8f\x0e\x78\xda\x47\x23\xa5\xca\x71\x55\x0d\x0d\x7c\xa6\x9a\xfa\x79\xbc\x6a\x92\x02\xfc\x45\x91\x31\xa0\xe5\x87\x24\x10\x88\x97\xf4\x07\x94\xfa\x35\x26\x73\x10\x48\x3f\xa3\xfc\x19\x30\xca\xb6\x96\x56\x44\x50\x0b\xfe\x9e\x2e\xb6\xdf\xaa\xe3\x8a\xe5\xa6\x23\xd6\x70\xae\xcd\xed\xda\x8e\x37\x27\xe0\x9d\xad\xd0\xc9\x57\x9b\xb6\xd3\x95\x26\x30\xd2\x87\x57\x43\x95\x57\xbc\xaa\xa7\x13\xe2\x7e\x9c\x98\x3c\x59\x9f\x51\x9e\x99\x97\x69\x53\x13\x51\xf9\xea\xa3\xf8\xff\xd3\x5b\x36\x21\x93\x3b\xf1\xb1\x51\xc6\x92\x16\xf2\x9e\xd1\x42\xe2\x93\xf0\x99\x89\x61\xfb\x38\x77\xfe\x18\x00\x61\xdf\xd4\xb6\x1e\x6f\xba\x8d\x25\xb5\xf9\xaa\xd8\x4a\xa1\xeb\xc1\x38\x1a\x5a\xc0\x8d\x16\xa1\xb2\x8c\xa6\x52\x44\x10\xe5\xbf\x9a\xea\x71\x90\x98\xb4\x68\x68\x98\x4b\xf9\x9b\xfd\x10\x7f\x57\xa6\x0d\x6b\x08\x1c\xcb\xc3\x97\x62\x91\x2a\x45\xb9\xab\x09\xe2\xe7\x46\x13\xa8\x8b\xea\x62\xc7\x51\x2f\x2e\x0d\x53\x33\x80\x1e\x7c\x8a\x7d\x82\x4f\x14\x51\x3f\x1d\xf6\xdb\x36\xdf\x49\xcf\x0e\x9b\x2c\x4b\x19\xf1\x09\x82\xac\xa8\x8d\x55\xdf\x17\x9f\x7e\x8a\xd6\x26\xd6\xe9\xd9\x91\xb2\x91\xc7\xcc\x2f\xff\x50\xcd\x98\x66\x33\x4e\xa3\xdc\x9a\x82\xa4\x64\xfd\x08\x9b\x6f\x72\x01\x67\x75\x12\x60\xfb\xf6\xb9\x36\x56\xcd\xb2\x2d\x06\xd2\x21\x03\x4a\x79\x46\x21\x96\x5b\x4c\x7c\x0b\xf4\xc7\xd4\x90\xaa\x9b\x58\x9d\x9a\x77\xa8\x52\x64\x33\xec\xc4\x36\x8d\x2c\x47\x64\x65\xad\xec\x93\x20\x65\x1b\xd3\xcb\x86\x49\xe7\x09\xdc\x73\x7c\xa9\x93\x88\x1b\xce\x3f\xcd\x19\xc6\x7e\x18\x2a\x43\xed\xab\x20\xf0\xf3\xbf\xd0\x1d\x56\x52\x79\x32\x68\x38\x8b\xa6\x16\xc3\xe2\x74\xb7\x00\xf2\x31\x1f\x18\x98\x1a\xf6\x35\x27\x2b\xe2\x5e\x9e\x87\xea\x99\x3c\x1c\x79\x03\xe0\x63\x23\xc5\xe6\xde\x50\xc0\x5d\x61\x2d\x1c\x4c\x51\xbf\xf2\x14\x2d\x73\xb6\xf0\xb4\xf9\x5f\x68\x40\x51\xc8\x5c\x8a\x2e\xde\xcd\xad\x75\x39\xa3\xa0\x42\x81\x53\x15\xb8\x54\x23\xc4\xb4\xc8\xf3\xb3\x0e\x81\x12\x17\x73\xcf\x1b\xbd\xa0\x28\xa6\x2f\xd9\x34\xb7\x65\x29\x52\x6e\x08\xcf\x9b\x78\xae\x7c\x12\xfe\xdd\xcf\x29\x00\xa3\x57\x6c\xd4\xcb\x8a\x24\x5b\x35\x2b\x31\x2c\x4c\xb1\x57\x9d\xd7\x38\xf9\xf9\x1a\x88\x6c\xb1\xf9\x52\x16\xb3\x38\x2c\xfb\x3e\x2a\xb3\xa5\xe9\x62\xeb\xd0\xf3\xcd\xde\x30\xcf\xe3\xc8\xb0\x30\x36\x9b\x4b\x50\xd4\x16\xa3\x89\xba\xa6\x4a\x94\xe5\x69\x95\x0e\xe0\xdb\x71\x5e\x89\x22\x5d\x92\x4c\xd7\x47\x2b\xab\xc2\x59\x24\x6b\xb1\x39\x63\xcb\xe1\xe3\xba\xc1\xc2\xd2\x24\x2b\x9c\x20\xb1\x13\xbe\xd2\x79\x04\xf6\x22\x24\x80\x47\x5d\xaf\x23\x63\x54\xd5\x79\xc1\x3b\xc2\xd5\x71\x95\x10\xf7\x6d\xe2\xe8\x83\x62\x96\x48\x17\x3e\xed\x67\xfa\xb5\xfd\xff\x34\xf0\x17\xca\xec\x01\x3e\x51\xc0\x56\xc7\x96\xb6\x0a\xe0\x16\x3d\x26\xa1\xb0\x29\x1f\x43\x88\xc5\xb8\x7d\xd3\x51\x5d\xde\x53\xdb\x6d\xcf\x44\x2b\x36\x6f\x28\x66\xe9\x15\x25\x31\xc8\x68\x83\xa8\x5e\x6c\xdd\xe5\x16\x97\x16\x9b\x85\x59\x43\x99\x8d\x77\x3a\xc0\x86\xcf\x27\x2d\x79\x1c\x65\x55\x26\xe7\xb2\xdb\x88\x2c\x0d\x5d\x38\x9f\x4c\xb0\x1c\xe2\xdc\xcc\xaa\x24\xfe\x9e\x6a\x1e\x7f\x57\x4d\x58\x73\x16\x85\x34\xe9\xf7\x10\x41\x10\x34\x2e\x4c\x6d\x8d\x87\xe7\x16\x9a\x69\xd6\xf0\x16\xe0\x23\x4a\x0a\x31\xcb\x73\x3e\xf4\x5a\xcb\xb5\x50\x85\x1d\xe6\x59\x3b\x4b\xd1\xa8\xc6\x5a\x3b\xaa\x17\xde\x51\x47\xb4\x4d\xb2\xb5\xdd\xde\x5d\x7e\xc7\xd8\x73\x3d\x1b\xad\x60\x61\x61\x93\x6d\x06\x64\xa4\x91\xf2\x48\xe7\x49\x5e\x7d\x01\x5c\x05\x2c\x6b\xd0\x86\x7d\xa8\x8d\xeb\x36\x7d\xe7\xf0\x1f\x7c\xb9\xa5\x19\x4a\x35\x8e\x30\xc3\x34\x8b\x58\xc9\x4e\x14\x46\xe8\xa2\x45\x7a\xc4\x83\xb5\x66\x6f\x7f\x6f\xe0\x61\x4b\xa4\x19\x7c\x5c\x27\xac\x9c\xd0\x1e\xa9\x8c\x8e\x3f\xd0\x8a\x8d\x1f\xa8\xfc\xbf\x6b\x78\xf8\xb2\xa1\x0c\x45\x18\xb9\x17\xf4\x90\x6e\x09\x4b\xc9\xa9\xcc\x28\x4e\xcd\xb0\x3b\xcc\x4d\x02\xec\x56\x66\x35\xb5\x27\xde\xd6\x25\x79\x60\xa1\xb9\x3c\xe4\xe7\x24\x06\xaa\x3e\xed\x7e\x67\xaa\xd0\xdb\x7f\xa8\x99\xda\xb8\xdb\x6b\x67\xb9\xd3\x73\x64\x79\x62\x65\x9a\xf2\x50\x11\x02\xee\x28\x28\xa1\x5d\xc5\xf3\x3d\x08\x47\x58\x49\x1f\x20\xcb\x73\x03\x5b\x4b\x73\x2c\xcf\xb0\x1d\xcf\x0a\x25\x0f\x73\x68\x10\x58\x18\x66\xc4\x3b\xbb\x49\x5b\x11\xf0\x40\x4c\x2e\x39\x8e\xff\x82\xf8\xe9\xdd\xc0\xac\xb2\x70\xa6\x68\x10\x0c\x55\xed\x6d\x35\x9f\x7c\xdf\x31\xf0\xd6\x4c\x9e\x5a\x82\xe2\x8f\x68\x37\xf5\x45\xad\xf5\x2b\xd8\xcb\xaf\x2a\x9f\x81\x2b\xda\xbd\x6d\xe7\x94\xd5\xd7\xe1\xb9\xc5\x66\x9c\xae\x9a\x24\xee\x20\x66\xba\xb1\x81\x89\x79\x79\x67\x76\x50\x05\xaf\x89\x19\xa1\x03\x0b\xcd\xff\x64\x27\x7d\x77\xac\xf9\x77\x28\x20\x6c\x5e\x55\x95\xe8\x76\xa2\xba\x20\xb6\x3d\x42\x0c\x29\x1d\x8c\xd9\x08\x17\x37\x53\x32\xd3\x3a\x47\x85\xc8\xa4\xa6\x13\x33\xd2\x28\x64\xc5\x09\x93\x03\xdf\x23\xca\xf2\x8e\xcd\x6d\x67\x87\x37\xbb\x7e\x55\xc1\xd6\xaf\x63\xb4\x0c\x35\xff\x59\xe5\xd1\xf3\x1a\xd5\x1f\x7c\x1c\xaa\x1d\xf7\xbc\x16\xd8\xb4\xc5\x1e\xdf\xbf\xbc\xa4\x04\x81\xb7\xd3\x1c\x85\x22\x58\x4a\x7b\xef\x63\x84\x08\x67\xb0\xeb\x5a\x6b\xc7\xfd\xa4\xec\xcb\xcd\xb1\xca\x9e\x50\x94\x63\x1f\x3d\x36\xf2\xa6\xcd\x8f\xfd\x2d\x60\xfe\xe8\x3a\x31\x25\x08\x9d\x96\xab\xaa\xc9\x1f\xf7\x87\xc9\xb0\xc0\xa4\x9a\x00\x09\x1e\x9b\x43\x26\x8a\x80\x76\x43\x17\x31\x36\x2d\xe2\x32\x5e\xb5\x3b\xe9\x72\xc5\x63\xd9\x5b\x8d\xf2\xce\xe4\xf2\x03\xa7\xc4\x73\x5e\x49\x32\x32\x9d\x8d\x3d\x08\x46\x6a\x5a\xfb\xec\x14\x7c\x45\x62\x4a\x51\x2f\xb6\xcb\x81\x87\xd0\x61\xa4\x28\xaf\x4f\x4d\x4b\xbf\xb4\x89\x5d\x8d\x0b\x01\x5a\x58\x84\x54\xb5\x50\xb5\x55\xb1\xa1\x61\x66\xe4\xc8\xae\x5a\xd1\xdd\xfa\x3d\x8e\xe3\x5a\x88\xd2\x1b\x7b\xa5\x87\x8a\x2a\x7d\x5f\x79\xa4\xed\x18\x7b\xfe\x4d\x9b\xec\xdd\x4a\x12\x0a\x92\x6d\x84\x02\x1d\x10\xbb\x2b\xd0\x3b\x46\xc7\xf7\x76\xe8\x71\x3d\xbe\x95\xc2\xd2\x54\x59\xf0\x79\x6e\x9c\xf3\x99\x02\x6a\xdb\x89\x89\x56\xfa\x26\x4e\x98\x36\x20\xdf\x80\x7e\x59\xbe\x9b\x4b\x6a\xe2\x68\xa5\xe1\xf3\x98\x1d\x63\x45\xf8\xc5\xa2\x45\x85\xf5\x78\xcb\xa7\xc7\x6b\x71\xd2\x21\x63\x68\x40\x09\x17\xa8\x4a\xe1\xe3\x50\x85\x1e\xf6\x2d\x97\xd9\x42\x9f\x89\x14\x71\xda\x4d\xec\x2c\x45\x33\xe7\x92\x5c\xbd\x6b\xa2\xa7\xe3\xf9\xc9\xe0\xfc\x01\xfd\x85\x6f\x9f\xb8\xfc\x3e\xee\xd3\x3f\x6b\x78\x2c\x7b\x93\xe8\xba\x9b\xaf\xa9\x77\xbc\x6d\xcb\x35\x6b\xd3\x1d\xb8\x5b\x4a\xa9\x42\xf2\xa8\x6b\x8a\x2c\xae\x47\x9f\xb7\x8d\xd5\xb8\xd8\x29\x2d\xbf\xf3\x58\xab\x0e\x8a\xca\x6d\xdf\x76\xc0\x98\xd1\x71\x5c\x74\x1c\x9c\xa9\x4f\x96\x24\xf1\x32\x98\x19\xce\x7f\x6f\xc1\x6b\x3e\xd5\x19\xc4\xe5\xa6\x3f\x30\x13\x59\xf7\xa6\xca\xba\x37\x6b\x2d\x9a\x4d\xe7\xa5\x61\x51\x82\x74\xbb\xc0\xc9\x15\xae\x88\x8f\x95\x7a\x4e\x6e\x4b\x9b\x7a\x7f\x2e\x17\x9a\xbc\x18\xc9\x45\xb5\xbe\xe2\x74\xd5\xa6\x70\x62\x9b\xf1\xaa\x6c\x27\x94\x7b\x27\x97\x7e\x7c\x12\xea\x36\xd3\x33\x8a\xb7\x6c\x3a\x36\x2f\x7a\xf1\x00\x08\x10\x86\x3f\x3f\xd6\x74\x1e\x0a\x81\x1e\x71\x97\x10\xbe\xbd\xa5\xa4\x65\x58\x7d\x5f\xb6\xb1\xc0\x29\xce\x7e\xac\xcb\x4c\x1a\x5c\xde\xbc\x3d\x12\xa2\x5e\x91\x0d\xcb\x9e\x35\xd5\x0d\xc2\x4e\x21\x5f\xd3\x93\x1e\xb4\x34\xde\x9a\xc9\xab\xe4\xd7\x73\xdf\xae\x68\x92\xe4\x15\xe5\x3b\x57\xf4\x4c\x3e\x48\xd6\x55\xad\x03\x01\x35\x3e\xae\xb3\x22\x1e\xd8\x68\x98\xc4\x26\x6f\xa8\xb9\xf6\xef\xd1\x17\x01\xbd\x70\x7b\xcb\x37\xca\x3e\x9b\xca\xfc\x5e\x58\xac\xca\xd5\x15\x1e\xc0\xc4\x8b\xcb\xc6\x57\x7c\xe2\x0a\xa5\x41\x62\xd6\x7b\xd9\xb0\xb0\xb4\x48\x71\x97\x18\x46\xe1\x13\x05\x69\x0e\x4c\xc4\x94\x5a\xb6\x88\x08\xfd\xf4\xcc\xfd\x1a\x10\x2c\xcd\x4a\x41\xf1\x45\x4d\x8a\xae\x48\x00\x1e\x0f\x50\x17\xeb\xfd\x81\x29\x7b\x62\xe4\x27\x01\xc0\x03\x5f\x9f\xb8\x74\x26\x8b\xac\x49\xa5\x08\x44\x72\x72\x4a\xeb\x6b\x9d\x9a\xda\x2a\xa8\x55\x99\x7b\xd9\x41\xa9\x37\xe9\x86\x7c\x5e\xc1\xf9\xc2\xfe\x43\xd5\x2f\xd9\x65\x7e\x70\xce\x83\xad\xda\xa1\xf8\x64\xea\x2b\xbf\xf8\x62\x73\x99\x7a\x35\xee\x45\x3c\x3d\xf2\xea\x67\xa7\xd5\xa4\x5d\x14\xe7\x51\x62\x3b\x0d\x3f\x99\xc8\x46\x60\x9a\x63\x82\x3c\xe1\xed\x3a\x73\xe3\xa5\x45\x2d\xdf\xc8\x97\xc5\x27\x75\x76\x2c\xc5\xb0\x5d\x94\x71\x39\x2c\xd1\x2f\xd0\x06\xa8\xf2\x32\xe9\x0a\xac\x9d\xac\x3f\xa6\xf2\xb8\x9b\x4a\x36\x07\x1c\x2a\xec\x73\xff\x77\xa8\xd4\x5a\x3e\xa5\xdc\x15\x90\x0a\xfa\x48\xd2\x0e\x54\xbb\xfa\xf6\x96\xa2\xe3\xff\x3b\xec\x0c\x6e\xfe\xcb\x0b\xdd\x5f\x50\x01\x78\x63\xa4\x64\xf7\x1b\x68\xc0\xc8\x72\x52\xdc\x1e\x33\x30\xed\x84\x75\x24\xa4\xa8\x0c\x9c\xfb\xc1\x39\x25\x2c\xf2\x3b\x13\x22\x35\x9d\xb8\xb3\xc7\x7b\xfe\xdd\x86\x88\x8c\x48\x37\xd3\xc5\xa2\x3e\x0b\xc6\xc1\x2f\xff\xa2\x9b\xc2\xf1\xfe\x54\x97\xbc\x87\xe4\xe6\x17\x5b\xfa\xe3\x95\x22\xfe\x31\x30\x4e\xf8\xcf\xe2\x49\xe3\x76\x5e\x53\x1a\x32\xcc\xe3\x40\xed\x78\x7c\xea\x31\x0a\x54\xd3\xcd\xe3\x7e\x5f\x75\x16\x40\x38\x71\xb3\x03\xde\xdf\xe2\xdd\xba\x61\xef\xe5\x38\x4d\xe3\xa2\xd7\x50\x42\x0f\xaf\x6a\x3a\x3e\x72\x02\xe1\x72\xd5\x28\x8a\x2f\xe7\x26\x5d\x49\x62\x90\x99\xd9\x67\x02\x9f\x2a\xa6\x13\x3e\x2d\xd8\xfb\x73\xff\xe4\x67\x03\xff\x28\x31\x71\x23\xb6\x4b\x2e\xe9\x34\xfd\x6c\xd5\x49\x00\x4b\xb8\xaa\x7e\x52\xa2\x95\xef\xf7\x75\x89\x2d\x1a\x38\xd5\x6d\x74\x5d\xa5\x9c\xf6\xa9\xf6\x81\x83\xfb\x1a\x9a\x18\x57\xfd\x54\x8d\xae\xcb\x34\xa8\x31\x3f\xdf\xec\x19\xa1\x65\x3a\xcb\x4d\xf7\x4d\x8f\xab\x6b\xe9\x0c\xcb\xa8\x37\xa3\x60\x87\x3b\x2a\x1e\x36\xc6\x3e\x6a\x6c\x90\xa1\x0c\x2b\x48\x4c\x58\x52\x0c\x12\xe6\x72\xd2\x5f\x11\x6e\x90\xe2\x09\x4d\xe1\x6d\x4b\x73\x4b\xcd\xf6\x30\x4e\xca\x86\x6f\xa1\x5d\xd0\xd3\x05\xd7\xd5\xf4\xd0\x1b\xa3\xad\xf3\x50\xb2\x86\xe2\xb4\x44\x5f\x79\x06\x0a\x27\x4e\xce\xb7\xfa\x43\x40\xbf\xce\x28\xe5\x0c\xf6\x84\x13\x3d\xb6\x69\x26\xdf\xd7\xd9\xb6\x2e\x08\x94\x9d\x54\xf5\xfb\x82\x4e\x78\x9e\xdc\x6a\x6c\xd7\x8a\x1d\xf4\x3e\xb0\x18\x28\x5e\x33\xe1\xb1\x7b\xd6\xf5\x39\x7a\xb5\xf8\xff\xd3\x5f\x73\xfc\xad\xea\x25\x15\x29\x51\x65\x4f\x3c\x14\x17\x6e\xd7\xa5\x59\x12\x50\xe2\xe6\xe8\x51\x0f\xc7\xed\x55\x83\xbc\x1f\x62\x41\xf0\x89\x02\xc7\xba\x49\x96\xf5\xd7\xe1\xef\x86\x54\xf6\xcc\x48\x79\xbb\xb3\x69\x9e\x83\x19\x5c\x1f\xed\x4c\xe8\xd7\x08\xa9\xaa\xcf\x4e\x0b\xfd\xa0\x97\x00\x55\x59\xac\x2c\x94\x56\xe2\x1e\x45\x97\x04\x22\xc3\xbd\xba\x89\xc1\x65\xeb\x5e\x18\xd7\xc0\x55\xf7\xad\x46\xd6\x72\x2d\xcb\xc9\x28\x57\xd9\xb5\x5d\xd6\x76\x6d\x97\x5d\x4e\x50\x2d\x4b\x4a\x83\x66\x7c\x68\xc2\xa3\x70\x31\xbc\x7a\x78\x32\x38\x17\x38\xb1\xa9\x8f\xa7\x36\xc4\xc3\x73\x47\x9a\xd9\xf2\x72\xc3\xb9\x7e\x5e\x7f\x72\xec\x3b\x26\xaf\x13\x5e\x81\xca\xfd\x89\x96\x8f\xe5\xbd\x61\xbb\x4d\x5c\x06\x37\x4e\x01\x21\x7a\x3e\xae\x23\xe2\x74\xb2\x24\x31\x39\xbd\x13\xc0\x42\x1e\x84\xbe\xdb\x7f\x51\x4f\x3e\x5f\x74\xba\x8c\x2c\x10\xe7\x9c\xdb\xa5\x52\xd5\xa0\xef\x53\x7a\x9c\x61\x50\xba\x6e\xb4\xa6\xfd\x09\xe1\x5b\xb1\x12\xda\x19\x67\x01\x6c\x76\xac\x8c\x42\x6f\x4e\xc5\xd4\xc5\xe7\x0f\x36\xcb\xaa\x16\xb4\x79\x80\xb7\x51\x2c\x67\x55\x9b\xf9\xb2\x42\xeb\x3a\x66\x2d\x45\x66\x88\x1d\x7f\x43\x69\x2b\x5d\x51\x9e\x52\xa7\x26\x36\x3a\x13\x27\x7b\x74\xfe\x33\xa1\xdc\x54\xfd\x01\x6c\x06\xbb\x5a\x0a\x9b\xdb\xde\x52\xc4\xf2\xed\xe3\x09\xd9\x86\x49\x79\xa8\x25\x19\x03\xbc\x3d\xf2\xd0\xe5\xb1\x50\x49\x3b\x6f\xd2\xcb\xc8\xff\x40\xb1\x05\x4f\xfe\xc1\xe8\x59\xdf\x33\x1a\xb6\xa3\x2c\x2d\x73\x13\xa1\xb2\x51\x0a\xd1\xce\x44\x74\x4a\xaa\x76\xff\xa1\x66\x27\xeb\x6a\x49\xba\x8f\x47\xbe\xbb\xfc\xb1\xb3\x45\xe8\x0c\x21\x20\xed\xe9\xad\x5e\x30\xfd\xb2\xce\xcd\x0c\xbd\x29\x3b\x7d\xf6\x70\x8c\xba\x45\x02\x07\x29\x7b\xe9\x73\xca\x49\x83\xc7\x7c\xf1\x8e\x7c\x14\x4e\x0e\x36\xfe\xf2\x2f\x3a\xdd\x34\x3f\xfd\x40\xcd\xfe\x6c\x58\x68\x55\x50\x34\xe4\xa5\x74\xa9\x03\xdd\xb2\x81\x4d\x1d\x58\x89\xba\xe4\xae\xb2\xca\xbf\xa8\x66\x4b\x4e\xaa\x91\x70\x96\x77\x65\x09\x6d\x3c\x6b\xc4\x1c\x3e\x1e\xfb\x3b\xd0\x37\xa4\x8a\x34\xab\x26\x92\xb9\x70\x77\xbd\x9a\x05\xe1\x30\xbd\x3e\xd2\x94\xa3\xea\xd9\xb3\x62\x64\x5d\x5d\x53\x3d\x5c\x13\xa7\x1c\x85\xa4\xd3\xac\x94\x90\xde\xac\x43\x9b\xdb\x04\xca\x05\x4a\x45\x7e\xd2\xab\x41\x02\x57\x9c\xe7\x71\xe9\x45\x61\x10\xf7\x83\xb1\x2f\x91\x83\xd6\x84\xfc\x7d\x3c\xc9\xc6\x7a\x5f\x51\xdd\xdf\xaf\x6b\xad\xb6\xb3\x35\x9b\x04\x6a\x32\xfb\x94\x92\x90\x3c\x55\xc7\x21\xb0\xa9\xed\xa3\x7e\x70\xe2\xe9\x6e\x96\xe0\xc2\xe8\x19\x8f\x7e\xb8\xa9\xf7\x40\xf5\xd9\xb9\xdc\xe6\x13\x07\x37\x15\x6b\xd6\xf0\xdd\x70\xea\xed\x0b\x4e\xc9\x5d\xe5\xc4\x3d\x93\x46\x59\xb4\x42\x8a\xba\xd8\x2c\x7f\x42\xbb\x04\x1f\xbb\x80\xcf\x7e\xdc\x30\xb7\x5d\xe4\xbd\x09\x18\x08\x1f\x6b\x1d\x1b\x93\x9b\x34\x8b\x3b\x81\x66\xae\x7a\xd8\x6d\x3a\xbc\x2d\x2c\x1c\xa4\xdb\x6d\x4b\x8c\x91\x0b\x5a\x41\x5f\x00\xe9\xc5\xaf\x29\x51\x24\x98\xb2\xe1\xad\x7c\x63\x6a\x43\xa9\xd6\x50\x6e\xd7\x1a\xde\x72\xe1\xa4\x4a\x97\xee\xe1\x15\x14\x92\xcd\xd6\x2b\xf9\x6a\x33\xb7\xcb\x36\xcf\x5d\x3b\x15\x78\xd2\x3d\xa5\x14\xa2\xa5\x5b\x57\xe2\x24\xa9\xaa\xc6\x86\xc7\xc4\x21\x46\x02\xca\x09\xc2\x87\xd8\x5a\x6c\xed\x2c\xcc\xcf\x37\xe3\x14\x25\x97\x0c\xfe\x89\xd0\x93\x9f\xfe\x3c\xae\x32\xd6\x5f\x78\x7e\x5f\xa0\xac\xe4\xfe\x92\x3e\x89\x8f\x47\x8f\xc4\xcd\x41\x6e\x97\xff\x51\xb3\xfb\x25\xfa\x86\x78\x82\x33\x2d\x4f\xc9\xf9\x52\xcb\x5f\xcd\x75\x2d\xee\x10\xb4\xbc\xf6\xf2\x26\x30\x45\xd7\xd5\xd8\xb7\x9f\xd9\x5b\xb7\x47\xd8\x78\x04\x7a\xac\xf2\x55\x74\x1b\x1e\x42\x96\x43\xcd\x1b\x8b\xf9\xfd\x0d\x0a\x8a\xa8\xf1\xde\x86\x64\xaa\xeb\x49\x54\xcb\x16\xa8\xf3\xb3\x2d\x4f\x31\x98\xe5\xe9\x45\x7c\xfe\x53\x63\xda\xde\x44\xbc\x82\x96\x03\xae\xbf\x41\x61\x09\xa4\xf1\x59\xda\x81\x36\x67\x5a\x7e\x0b\xff\xea\xdf\x87\xfa\x9d\xf4\xdb\x55\x77\x08\xcc\x67\xdc\xb5\xc7\xc7\x84\x1f\xe2\xa7\xee\x87\x55\x08\xf6\x28\x8e\x20\xbc\x65\x5c\x64\x29\xc6\x19\xd0\x4f\x07\x63\x90\x8f\x6b\x89\xc2\x71\x4a\x9e\xce\x00\x52\x51\xea\xb1\xbc\x12\x9f\x28\x5c\x63\x30\xac\x6a\xad\xbe\x4d\xcb\x06\x5d\xa5\xa8\x08\x79\xe2\x20\x66\x55\x70\x13\x66\xc6\x7a\xbf\xb6\x39\xac\xfc\xf0\x0a\x5e\x42\x05\x09\x9e\xeb\x45\x95\x9a\xff\xda\xe8\x0b\xb2\xbf\xc5\x85\x19\x0c\xb2\x38\x2d\xab\x0f\xe4\xec\x50\x82\xc7\x44\x58\x11\xe0\x71\x35\x2e\xe2\xaa\x68\xf6\x9b\x31\x58\xf6\x5a\xe8\x49\x84\x40\x7c\xfa\xf1\xcd\x61\x0c\x13\x22\x61\x20\xd0\xa3\x11\x6a\xc2\xa3\x1e\x59\x4a\x77\x51\xf6\x00\xee\x09\xc3\xc8\x08\xf3\x3b\x5a\x8a\xdb\xa8\xd9\x13\x0c\xe5\x20\xa4\xee\x84\x7a\x0a\x36\xce\x60\xec\x47\x43\x40\x17\x06\x32\xf4\xb7\x5a\x12\x17\xcb\x35\xcb\xb3\xc4\xac\x66\x45\x6f\x9a\x28\x5b\x4d\xf3\xfe\x9a\x51\x9c\xda\x41\x62\x5f\x0e\x3c\x98\xc6\x5f\x46\x06\x82\xea\x7c\x59\xe2\x3e\x6d\x32\x08\xc0\x62\xbd\x14\x28\x4f\xa6\xad\x31\xeb\xe7\x9b\x45\xcf\x72\xb7\x14\x54\xac\x37\xa9\x01\xc2\xc7\x23\x3f\xbc\x6a\xf2\xa8\x17\x97\x36\xc2\xb0\x96\x7f\xd1\xcf\x00\xdf\x11\x2d\xaf\xa7\xd4\x60\x6c\x2f\xb6\xab\xb2\x8d\x09\x90\x5f\x3d\x42\x41\xf8\x7d\xe0\xb6\x45\xd4\xb3\x6b\xbc\x6e\xc5\x1c\x20\x70\x56\x3a\x27\xbd\xe5\x9c\x65\xb7\x5f\xf7\x88\xb9\x51\x20\x4a\x65\x7e\x29\x14\x31\x9b\x15\xb1\xac\xe4\x48\xa9\x08\x9e\xa9\x73\x38\x2a\x6c\x34\x74\x23\x95\x92\xb0\x28\x9a\xb5\xdf\xe5\x92\xaa\x9c\x9c\x09\x9c\x21\xf2\x45\xa5\x35\xf0\x4c\xcb\xeb\x91\xc0\x04\x5c\x4c\xf8\x6a\x1c\x8c\xe3\xb4\x33\x2c\xca\x7c\x7d\x2d\xee\xe0\x5a\xd1\x39\x41\x5b\x86\x8f\x3d\x71\xa4\x67\x3a\x8a\x6f\x23\xd4\x1c\x45\xd3\x99\x82\x65\x16\x97\x16\x9b\x26\x4d\xb3\x61\xca\xec\xee\x23\xae\x73\x4e\x4f\x4d\x5a\xea\xf2\x11\xab\x36\xb5\xaf\x0c\x6d\x62\x94\x79\xf3\x47\x23\x5f\xb4\xbe\xa1\x01\x8a\xe9\x9b\xb8\xb0\xd0\x2c\x12\x53\x78\x4f\x37\x11\xcc\x08\x16\xbc\xc0\x9b\xc2\x6c\xf3\xac\xb0\x0d\x8a\x84\x6e\xbf\x74\x2d\x3c\x8c\x6e\xe3\x0d\xb9\xae\x9a\xf6\x6b\xa6\xb4\xf9\xb2\x49\x12\xd5\xfb\xe2\x18\x27\x16\xea\x75\x4e\x23\xcb\x43\x9b\xe0\xb5\x70\x1a\xcb\x5e\xa7\x5e\x2b\x37\xd9\xc8\x74\x2c\xed\xe1\x12\xdc\x3c\x47\xed\x87\xca\x17\xf8\xf4\x54\x16\x76\x78\xae\x69\xd2\x6e\xce\x1c\x56\xd0\x3a\xf1\x8d\xf8\xd8\xab\x26\xf7\x6c\x3e\x6c\x63\x9a\x4b\x3c\x8d\xe8\x97\xc4\xec\xe8\x09\x35\xcd\xb5\x6e\x78\xbd\x23\x89\xf9\x91\x1e\x7c\xfa\xd1\x14\x46\x74\x78\xae\x69\x4d\xb1\xae\x04\x23\x8f\x2a\x0f\xa8\xa3\x75\xa1\x26\xee\x0f\xf2\xcc\xbd\xa8\x40\x4f\x1f\x28\xcf\xda\x07\x0a\x20\x21\xa1\xde\x19\x8f\x58\xa1\x8d\x82\x65\x84\x42\x98\x8f\x47\xca\x48\xb1\x76\x9d\x7c\x73\x68\xda\xa2\x30\xcd\x53\xcf\xf4\xfb\x32\x01\xed\x11\x91\x17\x5f\xfc\xe9\x6a\xcf\xc7\x2b\x75\x56\x29\x5c\x9c\x0d\x27\x6c\x3a\x90\x59\x28\xed\x0a\xa1\xba\x6d\x43\xd9\x28\x0d\x65\x52\x6a\x01\x70\xfa\x69\x48\xbb\x35\x96\x26\x44\x3d\xc1\xf5\x78\x8d\xca\x22\x71\x4b\xa0\x17\x07\x39\x2c\x46\xe5\x71\x91\x9f\xa0\x3a\x70\xfa\x6f\xd5\x42\x46\x05\xfa\x97\x5a\x92\xfe\xba\x72\x19\x39\x1f\xaa\xc4\xe2\x4e\xe8\x51\xe9\x9d\x00\x9f\x91\x30\xdd\xa5\x72\x14\x00\xda\x09\xe4\x10\x4e\xf1\xf4\x05\x67\x01\x83\xa1\x01\x28\x67\x5c\x42\x92\x23\xc4\xb3\x60\xdf\x3e\x07\x3c\x7a\x7b\xf0\x6d\xe3\xe0\xc5\x17\x37\xaf\x2a\x3e\x29\x1e\xfc\x4e\xb5\xfb\xbd\x19\xfa\xf6\xd2\x47\xf8\x7e\x32\xc4\xa5\xf4\x4f\x3e\x1c\x79\xe3\xf4\x6b\x13\x66\x29\xd0\x3f\x12\xf6\xb8\x13\x73\x34\x79\x3a\xab\x15\x9d\xe8\x13\x01\x2e\xc1\xdd\x58\xc6\x9f\x94\xf0\x0d\x23\x5a\x28\xf0\x4f\x42\xab\x70\x4b\x2b\x2a\x52\x40\x2f\x1b\xb3\xf2\x49\x0d\x0e\xb8\xbf\x59\xd8\x97\x45\x53\x0f\x80\xcb\x9f\x85\x1e\x95\xf9\xb3\x5a\xe8\xd0\xbe\x5c\x15\x3f\xf4\x31\xc0\x5d\xde\x55\x18\xcc\xbb\x35\xad\xcc\x45\xb2\x96\xc8\x87\xcb\xcb\x41\xf0\x0d\x19\x0d\x18\x8d\x94\xf1\xd5\x48\x91\x9d\x57\x63\x5b\x92\x3f\x0b\xc2\x3f\xd2\x89\x6d\x3a\xb7\xd8\xd6\xaa\xa3\x35\x26\xc5\x3f\xfe\xd9\x9f\x55\xaa\xeb\x0c\x82\xf2\xc9\x78\x7a\x68\x64\xbf\x8c\x9b\xba\xd8\xcc\x89\x14\x2d\x7a\x49\xaa\x3c\x03\xa0\x63\x29\x93\x04\x67\x42\x19\xbc\x2f\x38\x4a\xae\x7a\x0f\x27\x30\x10\x5a\x95\x10\x73\x02\xad\xd1\x09\xeb\x56\xef\x07\x36\xc9\xfb\x6e\x76\x3a\x31\x9d\xb8\x48\xcc\x6a\xa0\x5e\x18\x8c\x0c\x4b\x98\x55\x8d\xfc\xbd\x66\x6f\x50\x2d\x6d\x34\x75\x10\x7b\xf8\x58\x4f\x37\xf4\xac\x2d\x67\xd5\x0c\xe7\x59\x35\x69\x3a\x0b\xa6\x89\xe3\x31\xf8\xbe\xd6\xfb\x6a\x47\x38\x3a\xf2\x26\xe5\x49\xb9\x3a\xa3\xcc\x0f\x6e\x4c\xcb\xe5\x48\xcf\xb0\xba\x93\xfc\xff\x55\xe3\x98\x25\xbe\x5c\x03\x88\xa7\xca\xe8\x37\xc1\x4c\x7f\x5d\x35\x80\x2e\xab\xce\xb5\x1e\x8f\xf7\x3c\x0d\x26\xbd\x8a\x1d\xd1\xd6\x47\x2d\x28\x7a\xdf\x74\xbb\xb1\xd5\xe2\x15\xe7\xb5\xef\xe4\xf9\xba\xa1\xab\x41\x9e\x91\x40\x69\xe0\x46\xd4\xc1\x5a\xe1\x63\x95\xdc\xb1\x64\x3b\x27\xf2\x20\xed\x61\xc2\x8d\x8f\xfd\xec\x97\x29\xc5\x19\x1f\x80\xdc\x7b\xa1\x9f\xce\xdd\x0c\x95\xc0\x7e\xa0\xe6\x94\x6c\xd4\x13\xb5\x42\xa4\x00\xb7\x71\xf1\x7c\xa2\xde\xa0\x41\x9e\x45\xb6\x33\xcc\x6d\x31\xa3\x91\x54\x94\xf0\xf8\xc4\xa3\xea\x2d\x47\x79\xc2\xff\x7f\xe4\xe7\xe6\x6c\x52\xd8\xb5\x9e\x65\xaf\x3b\xdc\xa3\x1f\xd0\x1a\x97\x09\x11\x3f\xb7\x3a\xed\xcc\xfc\xf3\xcd\x34\x6b\x93\xa1\xcc\xe7\xa8\x71\x28\x59\xa1\x7c\xd8\x35\x09\x7f\x37\xa7\x17\xe6\xad\xff\x2f\x29\x52\x96\x2d\x7b\xc0\xb9\xb0\x79\x6c\x6f\xa9\xcc\x62\x43\xb9\xb3\xed\x1e\x07\xca\x11\x98\x6e\x83\x58\x86\xd5\xcc\x66\x75\x3c\x01\xc5\x5b\x0e\x1d\x9e\x73\x37\xc8\xd9\x44\x56\x99\x50\xdf\x36\xa8\x2e\xd7\xdb\x3d\x36\x52\xe6\x46\xb2\x39\xbc\xca\xd0\x3a\xf1\x20\xc9\xfa\xd4\xa8\xaa\x36\x2b\xf1\xca\xac\xee\x9f\x90\xdd\x7d\x96\x9e\x0f\x4b\x34\x66\xb0\x06\xfe\x9a\x5e\x7d\x3e\x9e\xc2\xdb\x96\xe6\x9a\x9d\x3c\x5e\xb5\xa9\xb6\x02\x7a\x43\xf9\xa5\xbd\xa1\xac\xe1\xd2\x21\x0d\xda\xfa\xb0\xfa\xaa\x22\xae\xbc\x5a\x6b\x02\x68\x87\x79\x16\x17\xc5\x50\x98\x01\x88\x5c\x1f\x63\x63\xe1\x13\xb5\x7b\xf6\xe3\x4e\x62\x73\xaa\x03\xc0\xe8\xbf\xa7\x14\x33\x80\xdc\x28\x71\x17\x11\xd0\x3c\x3b\x35\xe8\x5c\xed\x33\x69\x96\xe6\x55\xfd\xe1\x01\x20\x84\xd0\x93\x2a\x9c\xaa\x04\xd2\x24\x5d\x51\xf5\x70\x06\xae\xd5\x47\x88\x81\xab\xbf\x0d\x6d\x9b\x16\x0c\xf2\x38\xc5\x57\xdf\x53\xba\x12\xfa\x40\xd7\x89\x3b\x8f\xf9\xa0\x0e\xdc\x16\x6d\x9e\x80\x0c\x05\xd0\x6d\xf9\xab\xd0\xd7\x29\x7b\x88\x0a\xcc\x33\xec\x23\x75\xcb\x2e\x85\xda\xb1\x7d\x37\xc1\x3c\x08\x58\xdb\xc6\x13\x6a\xcf\xb4\x42\x10\x5e\x6e\x87\x24\x53\x8c\xd4\xe1\x37\x09\xc0\x41\xa7\xf7\x07\x5a\x77\xeb\xde\xc8\xc7\xc7\x41\x56\xc4\x65\xac\xb6\x34\x84\xd0\x4f\x54\x38\xfd\x44\x15\x99\x45\xcf\x76\x60\x8d\x5e\x5d\x28\x8a\x9b\x93\xca\xe8\xea\x06\xe5\x69\x60\x3c\x1c\xf7\x22\x91\xc9\x30\x5d\x59\x9f\x51\xfc\xc4\xd7\x47\x9e\x05\xfa\x50\x09\x44\x5c\x1d\xf9\x56\xea\xb1\xba\xee\x74\x9c\xae\x66\xc9\x2a\x57\xb9\x4c\xc1\xd4\x3e\x56\xe7\x55\x9b\xa6\x28\x73\x83\x70\x82\xca\xfa\x42\xe8\x1d\x0a\x2f\x68\x29\x0b\x6b\x57\x9e\x6d\x1c\xfc\x2f\xbe\xc1\xf7\xf7\x32\xa5\x8e\xe8\x97\xf3\x56\x85\xac\x63\xa6\x15\x38\x65\x97\xdd\x0a\xb1\xfa\xed\xb7\x10\x83\x91\xde\xb2\x5d\x36\xe7\xda\x94\x47\xe2\xda\x80\x28\x22\x2e\xee\xa0\x1c\x18\x89\xe7\x2d\xed\x67\xbd\x0b\x7a\x3a\xa8\xc3\x58\x4e\x57\x74\xae\x29\x91\xc0\x12\x0a\xc6\x6a\x9c\x6c\x06\xd8\x0b\x1a\x34\x1b\x24\x55\xbd\x79\x56\x99\xb8\x43\x34\x1a\x77\x15\xef\x97\x08\x48\xd7\x28\xa2\x24\x99\xe9\xc8\x6c\x9b\xe3\xdf\x54\xf7\x40\xf8\x37\x75\x73\x5b\x71\x62\x27\xfa\xfb\x6f\xab\xfe\xfe\xdb\x6a\x92\xb1\x6f\x5e\xca\xf2\x62\xb6\x5a\x24\x4e\x68\xb6\xfa\x20\x19\x00\xf2\xd7\xfc\x3a\xf2\x5b\xec\x71\x37\x35\xe1\x52\x5b\x90\x75\xac\x29\x7b\xd4\xc7\x54\x62\x27\x5f\x9f\x54\x4c\x74\xdd\xa0\x05\x7f\xac\x0c\x4a\x4c\x9e\xca\xe4\x02\x83\xa5\xca\x42\xf4\x76\x1d\xe2\xd0\xb3\xfd\x2c\xcf\x7b\xa6\xeb\xda\x34\x6c\x25\x41\xb7\x19\x8f\x11\x0c\x2e\xac\x81\x8d\x3a\x9e\xc6\x84\x75\x1f\x53\x9d\xb1\x90\x85\xf7\x5c\xb3\xed\x0c\x86\x36\x2f\x65\x53\x77\xca\xe4\xd5\x3a\x14\xbd\x3e\x07\x74\x64\x51\x6c\x20\xb5\x7d\x78\xce\xf1\x47\x03\xa7\xe3\x81\xe2\x54\x6c\x17\xeb\x90\x9c\x9e\xcd\x4d\x29\x3d\x03\xac\x40\x88\x0e\xf0\xb1\xda\xad\xe2\x7e\x95\xe0\x9b\xb4\xdc\xe3\x95\xc5\xce\xa2\x9a\x72\xb6\x4f\x5e\xbb\xf2\x35\x7a\x0d\x64\xc0\x4e\x89\x98\x9e\xa6\x80\xa5\x69\x7d\x68\x26\xb2\xee\x3f\xff\x36\x0c\x5c\x90\x89\xb2\xae\x1f\x7f\x22\xa0\x6c\xd7\x67\x73\x92\xa6\x17\x27\xb8\x4f\xc3\x32\xdb\xe1\x5b\x0a\xa7\x46\x8a\xd7\xcb\x9a\xf8\xc8\x56\xd8\xa5\x47\x06\xca\x71\xcf\xd1\x3d\xba\xa5\xcb\xe4\xd3\x0a\xe4\x6f\x67\x03\x65\x5d\xc8\xbb\x84\x10\xb0\xea\x68\x9e\x65\x8f\x58\xc2\x98\x80\x70\x1d\x77\xd7\x64\x9b\x56\xed\x5a\x9a\x5b\x6a\x76\x6c\x1c\x04\xca\xdc\xa9\x0a\x99\xe2\xd5\xe7\x5c\x14\xcd\x1a\xe6\xd9\x50\xe7\x3e\x42\x80\x2c\x62\x6f\x30\x56\xd5\xf0\x09\x7a\xe5\x64\x3e\x53\xd9\x10\x66\xd9\xca\xac\x47\x4c\x90\xf2\x29\x07\x1c\xd1\x29\x42\xda\x83\x90\xf8\x30\x54\x25\xe9\xe5\x89\x46\x55\xbf\x9f\xa5\x1d\xee\x7e\x73\x30\x0c\xbd\x1e\xf3\x65\x87\xd8\xe7\xf6\x9b\x43\xeb\xd8\xd6\x88\x04\x60\x60\xa1\x9e\xbd\x87\x27\x24\x6e\x08\x3e\x25\x34\x51\x94\xe5\x50\x8f\x52\x13\x7c\x5f\x77\xfe\x22\xf4\x95\xdd\x04\x9f\xeb\x86\x9f\x9a\x8a\x80\x07\x16\x9a\xc5\x60\x7d\x8b\xc7\x33\xa8\x8a\x32\x77\xa5\xfa\xd9\xc4\xa7\x37\x65\x96\x17\x81\x37\x81\xc5\x40\x3a\x1f\x3b\xe8\x71\x2d\xcb\x57\x06\x89\xe1\x74\xca\x09\x90\x38\x76\xc5\xb9\x09\x79\xd3\xd4\xae\x99\x84\x3a\x7b\x78\x4e\xb7\x94\xfc\xc4\x2d\xf7\x37\x93\xb8\x28\xd1\x2d\x0e\x9c\xaa\xfc\x15\x35\x17\xf6\x1a\x6e\x82\xa0\xcc\x35\x24\xfb\x66\xdb\x46\x59\x1f\x42\x3c\xd8\xce\xcf\x8e\x94\x4a\xf0\x43\xed\x7e\xaf\xdb\x84\x59\x14\x0d\x07\xb1\xe5\xb1\x1f\x6c\xde\xe7\x95\xda\x0d\x68\x4a\x68\x96\xbf\x35\x15\xff\x7e\xbe\x99\x9b\x38\xc9\x33\xd3\xc1\x28\xbc\x58\xbe\xe2\x25\x93\x71\xf5\xc0\xcd\x7c\xde\xa9\xf5\xe7\x82\xed\xfd\x96\x47\x75\x3e\xd4\x65\x5e\xcd\xfe\x56\x64\x26\x97\xb8\x8b\x58\xcd\x09\x04\x9f\x4c\x54\xc1\x66\x60\x77\xd0\x1f\x97\xfd\xd8\x13\x0f\xde\xd6\xfe\x3a\xe7\x10\x7b\xb0\x41\x9d\x18\x6d\x1d\x4a\xe5\xff\x3f\x55\x68\x92\x3f\x51\xb5\x13\xa4\xdd\x2d\x2d\xff\xa3\xa3\x60\x8b\x2e\x9b\x8c\x7f\x7c\xd1\x3d\x83\x32\x37\x69\x41\x91\xb7\xca\xe0\x66\x82\x03\x0b\x9b\xac\x7a\xac\xf3\x5e\x7c\x36\x30\x37\xb1\xc8\x79\x6e\xab\x9d\xcf\xe2\xc1\xe6\xc2\x02\x66\xc0\x27\x74\xf5\x26\x14\xf7\x1c\x33\xc4\x47\xb5\x0b\xa1\xe7\xe4\x0f\x3b\xb1\xe8\xd8\x61\xc1\xdd\xa3\x35\x80\xc1\xb6\xb3\x13\xf7\x58\x31\xf9\x4d\xde\xc9\x20\xf5\xc5\x13\x0f\xa1\xb7\x08\xba\x50\xef\xe4\x46\xed\x19\xf1\x37\x68\xc0\x40\xd5\x67\x7d\x24\x31\xd0\xf0\x25\x0b\x37\x8d\x35\x69\x13\xd9\xdc\x19\x85\xc9\x96\x66\xc5\xa6\x8f\x56\x8f\x8a\x5d\x8d\x35\x53\xee\x0a\xb2\x30\xd4\x89\xbf\x31\xf2\xa5\x77\x00\xa6\x14\x64\x18\x1e\x6d\xa9\x9c\x78\x66\xec\x5f\xa8\xdb\xa0\xc6\x03\x0a\x3f\xa5\x46\x9b\xde\x08\x3d\x24\xc6\x6a\x07\xa2\x4b\x36\x6d\x23\x7f\xa4\xb9\x9c\x98\x35\x76\xa3\xc2\x63\xb9\xab\x25\xd7\xa6\x7f\x67\x61\xa1\xd9\xb7\x65\x2f\xeb\x68\xa1\x95\x0b\x4a\x9a\xe3\x82\x1a\x5f\xae\x1e\x44\xf5\x2a\xcd\xfa\x52\xe9\xb6\xb2\x06\x39\x4e\x69\xac\x08\x24\xab\xa5\xc1\x39\x16\x9a\x27\xe7\x14\xcb\xa6\x9d\x25\x59\x37\x35\xc8\x23\x95\xca\xfa\xa2\xa3\x0c\xfa\x1c\x8c\xf8\x1f\x2c\x5d\x89\x3d\xea\x54\xa8\x24\xf4\xa6\x2d\x82\xe6\xe7\x9b\xa6\xa0\x14\xc7\xb1\x41\x90\x00\xdd\x51\xf6\x04\x77\x14\x97\x93\xd4\xc6\x66\x54\x3f\xe5\xb3\x09\x71\x41\xe5\xba\xf7\x7d\x6c\xfb\x78\x42\x97\xab\xfd\x94\xf7\xf6\xfd\x9c\xe0\xe2\x9a\x1e\xe2\xc7\xf8\x44\xfb\x83\x0e\x4c\xbe\x02\x0a\x2b\x9a\xf2\x57\xf1\x93\x7c\x32\x85\x76\x1e\x58\x68\x66\x83\x2a\xd5\x72\x01\x80\x00\xb7\x7f\xfc\x1c\x11\x4c\x91\x3e\x3d\xd2\x52\xe6\x38\xdb\x5a\x3e\xdf\xc8\x6d\xf1\x04\xdd\x28\xbc\x2f\x57\x94\x94\x30\xdb\x39\xd0\x72\x1e\xfc\x83\x96\x07\x8e\xf7\x8c\x95\x51\xc4\xf6\xff\xa8\xe5\x20\x96\xbf\xfb\x85\xb1\xca\xc5\xef\x93\x44\x85\xe3\xc1\x09\x55\xef\xb1\xbf\x37\x9e\x60\x73\x2a\x68\xe5\xef\xa3\x45\x20\x73\xb6\xc1\x2f\xfc\x0a\x23\x79\x0f\x94\xdd\xd5\x2f\x3e\x0b\xc5\x3b\xa0\x47\x27\x95\x08\x58\x67\x98\x24\x71\xd1\x43\x87\x0d\x80\xfe\xb7\xf1\x1d\xf8\x44\x05\xe6\x38\xed\xd8\x97\xf7\xd0\x1f\x42\x8e\x00\x36\x0b\xde\x9e\x7f\x4f\xc4\x07\x51\x9c\xf1\x84\x9c\x33\x94\x5e\x22\x3b\xb9\xae\xe7\xd5\x2e\x6b\x19\x8d\xed\x2d\xad\x36\xc4\x43\x92\x88\x24\x6f\x4f\xd0\x00\x46\x4a\xf7\x14\xc4\x28\x76\xe9\x57\x14\x93\x24\xcb\x06\xbd\x4c\x50\x4b\xae\x2e\x95\x4e\xd1\x5d\x45\x2b\x3d\x31\x21\xde\xb0\x6c\x59\x63\xa8\x16\x70\x98\x98\xa6\x2e\x8b\xe7\x3c\xf4\x74\x12\x10\x31\xf2\xd9\xeb\x68\xcd\x28\xc3\xcc\x23\x4c\x5f\x7e\xa8\xec\x90\x7f\x5b\x4f\x17\xdc\xc5\xae\x86\xbb\xfa\x6d\xaa\xe6\xd9\xac\x08\xcf\x02\x5f\xfe\xcd\x09\x6c\xe2\x4d\x64\x57\xa2\xd2\x4e\x97\x8d\xbe\x46\xa3\x35\xd9\x45\x77\xd3\xa2\xb7\x47\xbe\x92\xfe\xdd\x91\xc2\xd2\x11\xfe\x11\x74\x3e\xa0\xa0\xe3\x2c\xda\xab\xdb\x8d\x27\x7c\x95\x6e\x37\x8f\xe4\x6a\x69\xc8\xdb\xca\x05\xa3\xcc\xcd\x6a\x6c\x4a\x83\x7b\x8f\x06\x0c\x50\x6c\xd9\x17\xfc\x0b\x76\xce\x37\x88\xc9\xbb\x78\x4b\x83\xf8\xfb\xaa\x41\xfc\x7d\xad\x85\xeb\xb4\x38\xdc\x9f\xf4\x7f\x7e\x2a\x68\x91\x28\x70\x99\x67\x69\xd6\x67\xb6\x80\xb3\x4b\x9a\x9f\x77\x53\xe2\x5b\xe3\x83\x60\xd1\xcb\x79\xd6\x9f\x09\xbe\xb1\xdf\x73\x0e\x9d\x5f\x39\x58\x31\xc8\x94\x38\x54\xe0\x66\xde\xf7\x3d\xff\x38\x5a\xb1\x29\xab\x1f\x68\x63\x2e\x60\xf5\x1f\xe1\x26\x62\x21\xde\xfa\x5c\x61\xce\xe5\x61\x4e\xee\x64\x5e\x6c\x80\x27\x21\xc5\x5c\x5d\x89\x70\x7e\xac\xdc\x1e\xb8\xb3\x22\x66\x43\x8f\xfb\xc9\xe5\x0e\x5d\x54\xb5\x2e\x45\xa7\x9a\xfe\x9e\x64\x7d\xc1\xa4\xa2\xa6\x5b\xf3\x69\xc7\xec\xf2\x45\xff\x6d\xc5\x33\x3e\x1b\x2a\x81\x87\x37\xf5\x5b\x73\x8f\x2e\xc8\xd9\x15\x7a\x15\xbf\x77\x68\x98\x51\xc4\xeb\x69\xf5\xb2\xe8\x90\x52\x6c\xec\xd9\xd2\xe6\x59\xd7\xa6\x56\x6c\x83\x90\xd7\xc0\x26\x11\xf9\xce\xa7\x5a\xcc\xe1\xbc\x02\xc6\x49\x4e\x34\x37\x5d\x3b\xe3\xd7\x0a\x2a\xb2\x89\x1a\x1e\x70\xdb\x4d\xc4\x54\x69\x3d\x3a\x2e\x8f\x89\xa2\x38\x05\x97\x07\xa9\xe5\x39\xdc\x2b\xa7\x00\xe1\xa8\x1e\x1b\x53\x1a\x64\xd5\xd2\x03\x75\x48\xb6\x4b\x80\x92\xef\xd3\xfb\xc0\xc7\x53\x8f\x9d\x66\x70\xe1\x1c\xdf\x17\xc2\x88\x08\x5a\x68\x75\x8b\x3a\xf9\xeb\x65\x93\x2e\x9b\x5c\x9b\x1a\x5f\x54\x92\x4a\xd3\x36\x37\xfb\xf6\x29\x51\x4c\xb9\x48\x56\xc2\x52\x8e\xe1\x1f\xa9\x0d\xa3\x6d\x93\x6e\x3c\xec\xa3\x02\x41\xa6\x0c\xd4\x05\x4b\xf3\x01\x9e\xb1\xcc\x18\x3e\xa3\xd1\x5c\xbb\x1c\x47\xb1\x49\xd0\x99\x43\xa8\x7a\x57\x71\x9c\x2f\x23\x6e\x22\xcf\x3f\x85\x39\x55\x3e\xc1\xfa\x00\xb0\x75\x03\xeb\x9d\x7f\x9f\xae\x92\x3b\xdf\x0a\x31\x5d\x33\x65\xd4\xb3\x39\xe6\xea\x04\xc7\xa7\x4b\x96\x02\xa1\xc6\xcd\x17\x03\xae\x89\x3c\x6f\x7c\x07\x0c\x8e\x48\xd7\xd4\x3b\x48\xdd\x54\xa2\x3c\xb9\x4d\xd3\x18\x15\x26\x7a\x64\x9f\xd0\xfa\xe4\xe3\x29\xea\xd2\xfc\x7c\xb3\x3f\x8c\x7a\x81\x9f\xe9\x3c\xa3\x46\x37\x27\xe5\x84\xe2\x55\xfb\x53\xbe\xae\x7d\x0c\xd9\x2e\xe2\xf1\x69\x60\x32\xd8\x74\x8e\xd3\xf6\x0b\xa8\xe0\x64\xe8\xc7\x39\x4f\x60\x67\x42\x10\x78\x8a\x2c\xf8\x51\x1e\x7e\x07\x6a\xc5\xa0\xf8\xfc\x08\x89\x1f\xc1\xfc\x3f\xfd\x53\xe3\x2a\x07\xc1\x5b\xfa\x89\x22\x4c\x36\x80\x60\x10\x7a\x7a\xf7\x0b\x2d\xa5\x1f\xf7\x2e\xed\xf1\x80\xbb\xae\xe2\x36\xb3\xcb\xc2\xa4\x21\xf9\xbe\x7d\x4e\x32\x9c\x1e\x35\x05\x99\xb9\xa7\x79\xef\x17\xe7\x5b\x65\xe6\xf2\x7f\x6a\x3b\x83\x5b\x23\x65\xb8\xf1\x3e\x21\x20\x78\x2c\x3f\x41\x52\x80\xe7\xb2\x89\x0d\x17\xb0\xe9\xb5\x91\x17\x31\xcd\x56\x6d\xde\x1e\xc6\x64\x21\xa0\x34\x0b\x4e\x28\xb3\xa5\x13\x35\xcc\x98\xfd\xcd\x6e\x96\x01\xf8\x76\x6a\x61\x4b\x73\xae\x2e\x9c\x90\x7e\xca\xbb\x24\xa1\x89\x38\xb6\x31\xd1\xa1\xf7\x6f\x3c\x4f\x38\x8b\x58\xbc\xa0\xf5\xaf\xc4\x83\x82\x37\x28\x07\xf8\x54\x3f\xc7\x27\xae\xe2\xcb\x6d\x9a\xc5\x4e\xaf\x07\x48\xce\x69\xad\x8d\x70\xda\x8d\x9c\xf7\xcc\xaa\x7d\xc4\xbf\x5f\xd0\x7d\x40\xf2\xf0\x1c\xf5\xdd\x70\x93\x5e\x0f\x15\xc9\xff\xde\x84\x41\x37\xad\x77\xea\x17\xfc\xdc\xb3\x2d\x35\xa4\xc9\xb4\x43\x0a\xc6\x7f\xc4\x8a\x29\x80\x79\x76\x8c\x85\x6a\x96\x66\x71\x81\xd0\x8b\xdd\x2e\x68\x05\xca\xda\xcb\x8b\x3c\x60\x1f\x95\xae\xf4\xe7\x8d\x56\xb5\x73\xf3\x4a\x9c\xc4\x26\x9d\x90\x1b\x9b\x74\x9a\xab\x43\x2b\x7a\x79\xd6\xcf\x8a\xac\x8f\x2b\xc1\xa2\x7a\xac\xa5\x60\x08\x24\x86\xb8\x13\xb3\xe3\xed\x5f\xe6\xf6\xc8\xbf\xad\x91\xaf\x3c\xd2\xec\xd8\x55\x9b\x64\x03\x97\xa8\xb8\x89\xff\xea\x06\x08\x51\x70\x8f\x6a\xa0\xef\x7d\xc2\x13\x51\x59\xdc\x1f\x4f\xe9\x07\x78\x64\x80\x00\x77\xf2\x1b\x80\x9b\xfb\x00\x6f\x00\xee\xc8\x79\xed\xfc\xa6\xad\x04\xe1\x1e\x85\x72\xf0\x01\x2e\x00\x0c\x97\xbf\x54\x22\x5c\xaf\xd3\x03\x54\x32\x61\xfb\xb9\x43\xf9\x19\x12\x3b\x67\x44\xe8\x40\x41\x1e\xc6\x97\x21\x79\x1f\x51\x73\xfb\x92\x8d\x4a\xdb\xa1\x15\x2e\xf6\x57\x7e\x06\xff\x7d\xc5\x56\x67\x79\x25\xbe\x9c\xea\x15\x74\x83\x28\x03\x9b\xc7\xfd\x41\x56\x30\xa5\x94\x67\x5c\xe9\x77\x65\xde\xf5\x09\xb5\xfb\x27\x49\xf5\x4a\x2c\xcd\xb9\xa9\x50\x65\x65\x72\x49\x95\xbd\xeb\xb1\x4d\x3a\x16\x3a\xad\xce\xf5\xe1\x80\xe7\x6e\x3e\xab\x9c\x71\x5f\x1a\x62\x63\x2d\x76\x78\x26\xd0\x99\x50\x8d\x98\x7e\x38\xf2\xcc\xd5\x33\x48\xcc\x51\x77\x01\x61\x72\xae\x2b\x7e\x60\xe5\x52\xdd\x94\x42\x51\x0e\x3b\xeb\x04\xe6\xe2\x49\x32\x7f\xc3\x59\x9f\x54\x8f\x12\xd1\xe1\x47\xca\x71\x66\x76\xac\x92\x92\xf3\x35\xfc\xb3\xc5\x26\x49\x31\xf3\x0d\x54\x56\x98\x4e\x9d\x5c\x29\x47\x2e\xc7\xab\xf6\x09\x95\x52\x1f\xc3\x42\x11\x3c\xa8\xba\x45\x13\xe3\xc0\x22\x07\x45\x17\x87\xe7\x77\x06\xf0\x81\xd0\x1c\xe9\x76\xa0\x55\x7a\xca\x5b\x8a\xfc\xed\xe7\x10\x1d\x50\xf3\x20\xb5\x93\x0a\x02\x4b\x1b\xf5\x29\x64\x68\x18\xb7\x1e\xf9\x86\xf9\xb5\x91\x1a\x69\x62\x3a\x14\x18\x30\x4f\x8c\x25\x40\x16\xc3\xb8\x28\x44\x85\x0d\x0d\xe9\x8b\xba\x3b\x7d\x71\x42\x67\x61\x60\xd6\x29\x7b\x52\xf3\xd6\xd7\x43\x95\x7e\x5e\x9f\xee\x0e\xed\x23\xf8\xdd\xbd\xdb\xc8\x36\x3e\xa6\x2f\xc9\xc7\x53\xbf\x73\xe8\xf9\x66\xd6\x2e\x22\xa2\xb9\x48\xa4\xfc\x03\xad\xfa\x7a\x4e\x99\x32\x4b\x59\xca\x88\x86\xf2\x10\x3e\xe2\xb0\x62\xff\x15\x22\x93\xc0\x8c\x59\x93\x1b\x6f\xe2\x2b\xf0\x89\x9e\x43\x32\x9d\x57\xd6\xfb\x2c\x53\x89\x37\x69\x5b\xcb\x5b\x94\x6f\x73\x51\x99\x92\x62\x82\xdc\xf0\xde\xde\xa2\x92\xd0\xcd\xc8\xba\x69\xc7\x7b\xc8\x08\xc4\x18\xd7\x87\x59\xb6\xaa\x46\x4c\xff\xff\x53\xa5\xb9\xc9\x55\xaa\x73\xf5\x3a\x3c\xe7\xbb\x24\x4e\x73\xf0\xcc\xc8\xbf\x0b\xd7\xeb\x94\xe2\x3a\xd9\xb0\x5d\xe2\xde\x60\x2f\x41\xea\xc5\xc7\x8e\xc2\x3c\xc8\x64\xb4\x10\xa9\x1c\xbb\x81\xf2\x89\x1a\x78\x2c\x86\x79\xf7\x6f\x1c\xcd\x72\x63\x4b\x3d\xd3\x1f\xb0\x28\xc7\xa2\x97\x46\x76\x9b\xe5\x95\x29\x40\x74\xdf\xfe\x66\x97\xca\x28\x25\x6e\x7b\x5a\x89\xdb\x6a\xee\x57\x31\xc8\x4a\x50\x85\x91\xfb\x1c\x0b\xfd\x1c\xc6\x09\x35\x63\x74\x5d\x75\x38\x14\x7f\xaa\x51\x3d\x2b\x80\xa0\xb7\x43\xc5\x31\x3c\x31\x52\xf2\xe3\xe7\x5d\x1a\x51\xe6\x26\x4e\x78\x12\x4c\xec\xd8\x29\xd4\x0b\x08\xed\x55\x6b\x0b\x13\x77\x7e\xba\xba\x8f\xe0\x3f\x6e\x22\x8b\xc2\x17\x80\x64\x16\x73\xe1\x46\x9e\x43\xc1\x38\x83\x8c\x02\xa8\xb1\xd7\x0f\x68\xdb\x01\xdc\x8a\x6e\xb7\x50\x3f\x7c\x5a\x7c\x99\x83\x81\x78\xdd\xab\x95\xb4\x49\x2b\x05\x51\x82\x4d\x2d\x40\xd6\x39\x8e\x2c\x17\x7b\xd8\x06\x30\x0f\xa0\x19\x47\x69\xfa\x04\x9f\x7e\x33\x44\x97\x0b\x9f\xc3\xb3\xb4\xb8\xaf\x47\x09\x13\x03\x9d\x29\x80\xfd\x1c\x16\x00\xbc\x0b\x10\xa6\xfe\x6a\xa4\xbc\x67\x79\x24\xd3\x6d\xc0\x8e\x54\xff\x1e\x26\x7d\xd4\xa4\xb2\x88\xa3\xbc\x89\xda\x85\xff\x70\x1d\x85\x02\xbe\xd8\x5c\x9b\xe1\xe9\x33\xbc\xc4\x27\x53\xb1\x7e\x7e\xbe\x59\x94\x36\xf7\x4d\x7e\xb7\xb3\x79\xad\x21\x95\x6c\x7c\xc5\xf6\x27\xe7\x30\xe9\x8f\x4b\x4f\xfe\x29\x8d\xe2\xd1\x78\x7c\x30\x21\x97\xe6\xa9\xa1\x17\x26\x72\xda\x4e\xd7\x3e\x4a\xb7\x46\x48\x8d\xb4\x48\x50\xeb\xdd\x55\xa9\x13\xb7\x08\x11\x3c\x18\x79\x40\xec\x39\xc3\x0f\x5d\x10\x60\x2f\xde\xf7\xb6\x1a\x3e\x38\x41\xfb\x35\x1e\xe6\x5d\xac\x2b\xb7\x1b\xbb\x55\x79\x53\x6d\xf9\x44\x79\x33\x45\x40\xf7\xdd\xf1\x0b\xab\xa7\x2b\x1d\xa9\x9a\x87\xd0\xcb\xfa\x36\xb1\x05\xf8\xeb\x0c\x42\x4d\x00\x52\xcf\xb8\xe4\xf5\x3f\x84\xd4\x54\xa3\xb2\x4e\x56\x8a\x66\x48\x4f\xb9\x76\x4a\xc8\x3f\xb0\x7e\xb1\x77\x97\x57\x12\xfb\xef\xef\x23\xa3\x60\x1e\x06\xf6\x40\x47\xd0\x50\xdd\xed\xc0\xf9\x14\x6c\x8e\x14\x8f\x6d\x1b\x14\x83\x9d\x09\xab\x1a\x38\xaa\x31\x8d\xcf\xed\x20\xb7\x05\x6f\x90\x02\x15\x9e\x57\x03\x37\xe7\xa7\x58\xcb\x3f\xd3\x2c\xcc\x3a\x75\x2c\x45\x0a\x58\x85\xcb\x13\xc4\x3a\x17\x8e\x63\x4d\x36\x84\x36\x8a\x27\x19\xde\x19\x29\x73\xc1\x3b\xe1\x53\x6e\x68\x32\x2d\xe3\x74\x48\x68\x8f\x23\x71\x1d\x1b\xa9\x1e\xcf\xaf\x29\xad\xac\xe3\x8a\x71\xf8\x8f\xca\x5e\xe0\x59\xe5\xf7\xe8\xdd\xe6\x63\x85\x42\xc4\xe9\x4b\xc3\x34\xc2\xf0\xe0\xfc\x3c\x17\x96\x9f\xd1\xf7\xe6\xe3\x91\xec\x33\xfd\xaf\xb4\xb3\xb5\xcf\xe7\x15\x78\x9a\x2c\xb3\x09\xc8\x40\x61\x7e\xde\xab\x5f\x7a\x25\x4c\xaa\xcd\x91\x34\x5d\xd3\x64\xb3\x6b\xb5\xc2\xaf\xa5\x27\x39\xd6\xb2\x75\xdc\xd8\xe2\x4b\x4f\x28\x33\x38\xd6\x6c\xa5\xad\xb6\xf1\xe5\xb1\x26\xab\x6c\x1b\xfb\x41\xd0\x3b\xa1\x92\xca\xfc\x09\x91\x18\x9c\x09\xd8\x92\xf4\x81\x7e\x9f\xa2\x3f\x4a\xf0\x9f\x20\xe2\xe3\x56\x3e\x44\x9a\x28\x73\xfc\x4a\xf0\xf0\x4c\xe8\x09\x75\xdc\x9f\x90\x89\x00\x45\x5b\x7e\x96\x90\x22\x4a\x3c\xbe\xf9\x77\x5a\xbe\x7d\xf3\x12\x8b\xa8\xb9\x70\x00\x40\x44\x4c\xf8\x9e\x99\x6c\x9c\x1e\x7a\xbe\x79\x60\x61\x97\x62\x9e\x1e\x0b\x15\x49\xfd\x0a\x21\x03\x82\x38\x7a\xb1\xc8\xab\x4a\x93\x6b\x96\xee\x88\x13\x42\x3d\x20\x86\xb1\xbf\x4e\x9b\x18\x4b\xc5\xd4\xb0\x40\x9a\xcb\x36\x29\x1b\x4a\x21\xfd\xf2\xc4\xab\x49\xb7\x16\xfc\xd5\xcf\xc2\x1a\xd6\x7f\x96\x13\x09\x1c\xdb\xd7\x6b\xf4\xb9\x7c\x5c\x6b\xe3\xb5\x9e\x15\xbd\x18\xce\x10\x48\xa1\xae\xe8\xc2\xea\xca\x14\xde\xb8\xb0\xd0\xec\x64\x29\xb5\xa5\xf1\xaa\x21\xe1\x78\x5d\xa3\xbb\xaf\x2b\xd8\x6a\xd9\xb4\x49\xbf\xd1\x89\x8b\x1c\xc7\xdf\xe7\x13\x35\xcb\x13\xe5\x71\x61\x8b\x19\xcf\x18\xbc\x49\x2b\x04\x37\x76\xa6\xa5\x86\x8e\x61\x5a\x26\xe2\x17\x4f\x2b\xa5\x67\x66\x0d\x34\xd4\x56\xf6\xae\x72\x13\x01\xa4\x2b\xd8\x66\xcd\xdc\xcd\x5a\xcf\xb2\xb9\xf1\x0b\xae\x6e\x00\xb7\x90\x8f\xeb\x00\xd1\xf6\x30\xf7\x63\xfd\xf8\xa0\x07\x8a\x75\x7b\x53\xe9\x24\x7e\xaa\xda\x89\xf6\xe5\x92\xa6\x85\xe6\xe7\x5d\x07\x91\x1e\x3a\x72\xe6\x1b\x58\xd2\x7c\x32\xd2\x4d\xc7\xcf\xe3\xb4\x77\x6c\x9a\xc6\x85\x96\x07\x42\x72\xab\xa4\xb6\x24\x47\xbd\x17\xfa\xbb\x96\xb5\x0b\x9b\xaf\xda\xbc\xd8\x51\x7d\x4f\x14\xe5\xe7\xb4\x03\xc9\xa7\x13\x2e\xe6\x94\xf5\x08\xd3\x9b\xde\x54\x69\x4f\x05\x4e\xf6\x81\x32\x64\xa7\xbe\x11\xa7\x34\xc0\xb1\xb4\xc8\x05\x22\x74\x07\xf8\xd8\x31\xe1\xa3\xdc\xf4\x07\x1c\x92\x78\x66\x88\x9e\x96\xcc\x0f\xd5\x58\xac\x38\x4d\xc8\x86\xa2\xda\xa1\xfc\x03\xe4\xf8\x67\x78\x5b\x90\xe4\x4d\xeb\xec\x1e\x9e\x5b\x6c\x26\x76\x99\x0b\x38\xa1\x3d\x04\xca\x29\xd1\x23\x7b\x51\x96\xe7\xb6\x18\x64\x29\x31\x28\xab\x8b\x44\xb5\xca\xb6\x6b\x7c\xe2\x52\xe4\x81\x49\xff\x3f\xce\xde\x34\x46\xb2\x2b\x4b\x0f\xab\x8a\xcc\xac\x85\xc5\x6a\x16\xc9\xee\x59\x84\xb1\x27\x66\xd0\x1e\xea\x07\x41\x01\x32\x6c\xc3\x03\x03\x2f\x26\x33\xbb\x39\x55\x98\x4e\x26\xb2\x4a\xc5\x31\x6d\xc0\x7d\xe3\xc5\x8d\x88\xc7\x7c\xf1\x5e\xf4\x5b\x32\x99\x84\x7f\x08\xb6\x31\x10\x0c\xe8\x87\x04\xcb\xb2\x61\x79\x3c\x8b\x04\x4b\xb6\x34\xea\x9e\x96\xa6\x67\x91\x14\x31\x9c\xa5\x97\xe9\xe9\xe9\xe6\x4e\x16\xd9\xac\x7d\x5f\xb2\xf6\x95\x59\xc6\x3b\xdf\x39\xf7\x9e\xc8\x78\x34\x20\xfd\x7b\xaf\x2a\x23\xe2\x2d\x77\x39\xe7\x3b\xdf\xf9\x3e\x33\x30\xac\x77\x8f\x85\x10\x2f\xd1\x59\x23\xf8\x49\xb6\xa3\xa5\xed\xff\xd7\x6c\xc1\xc2\x12\xaf\xb8\x26\x14\xba\x0b\xd9\x69\x3f\xe7\xc3\x87\xbc\x48\x87\xa4\xd0\x22\x2c\x43\x4f\x3e\xbe\xae\xb4\x4f\xaf\x28\xc2\x16\x4d\x91\x6a\x19\x3c\xea\xbb\x8a\x7c\xf0\x3c\xdd\xf7\x40\x04\x12\x6b\x32\x76\x8e\x13\x8a\xad\x17\x23\xb8\x34\xa5\xea\x71\xe8\x50\x33\x8d\xe2\x86\x87\x3c\xbf\xa9\xf1\xbe\x6f\xd6\xc5\xa0\x03\x93\x28\xce\x25\x88\x37\xb3\x4a\x29\xef\xfe\x48\x97\x54\xbc\x0e\xc7\xab\x65\xa7\x27\x29\xf8\x2b\x9a\x78\xe8\x64\xfe\x5d\x4a\xd7\xb5\x36\xce\x21\x09\x84\xf5\xf0\x34\xa6\x9b\x53\x21\xac\x3e\xc4\x5d\x26\x23\xad\x84\xb8\xfd\xf6\x96\x96\x9a\xa6\x23\xd8\xa8\xb2\x88\x78\x45\x59\x44\x78\x30\x2a\x0c\xad\xed\xf0\xb6\x53\x17\x07\x4f\xcb\x24\x2c\x37\x87\x36\x6b\x54\x9b\x26\xae\xf3\x91\x5a\xc3\x1f\xb9\xc8\xa1\x6b\x92\x10\x5e\xc3\x04\xde\xfe\x9d\x9f\x19\x2b\xed\xfc\xef\x8e\x26\xe8\x7a\x8e\x95\xf6\xf7\x9b\x53\x62\xc0\x4b\x4b\x87\x9b\xe9\x10\x68\x19\x4d\x03\xe6\x1b\x60\xcc\x09\xf9\x60\xfb\xa7\x16\xbc\x34\xef\x2c\x7d\xca\x41\xa5\x4e\x66\x9b\x3b\x2d\xb0\x23\xfc\xa6\x32\x6b\x6c\x4c\x09\x6e\x2e\x1e\x69\x76\x6c\x18\x0d\x58\xf1\xda\x41\x8c\x4b\x4b\x0e\xdf\x7b\xc6\xb7\xca\x15\xfd\x41\xba\xe6\xc6\x0a\x7b\x66\x8d\xfc\x32\x8a\x4a\x11\xd3\x39\x95\xd2\xad\x32\x64\x72\x49\x24\x1b\xb6\x8b\x23\x93\x5f\xb5\xf2\xa8\x27\xc4\xf9\x25\xc7\x75\x53\x6a\x78\x6f\x4f\x6d\x8c\x2b\xf3\xcd\x32\x89\xba\x69\x36\x60\xe4\x40\x44\xae\xfc\xb4\xb9\xeb\xe6\x6e\x6c\x4d\xc7\xdd\x02\x72\x89\x07\xbe\xf1\xe7\x8f\x9f\x69\x39\xf2\xe0\xca\x4f\x8f\xeb\xf0\x39\x13\x92\xbf\x3b\x56\x22\xc1\x03\x68\x10\x0a\x50\xe0\xa4\x55\x92\xc2\x66\xc3\xcc\x16\x34\xe5\x5d\xe8\xee\xea\xbc\x5e\x53\x61\x60\xb3\xd0\x76\xec\x44\xd7\xd2\x1d\xad\x3b\x7e\xc7\x2d\xd6\x6d\xdb\x8f\x92\xce\x93\x4a\xac\x65\x6b\xa4\x3c\xdb\x66\xc6\xba\xcb\x86\xb2\x6e\x94\x93\xf0\x6e\x90\x8d\x3f\x89\x11\x2b\x1e\xf4\x55\xd0\x82\x9d\xea\xbb\x23\xdf\x55\x75\x83\xb2\x7c\x5a\xbf\xff\x87\x9f\x6b\x29\x28\xe0\x4d\x0a\x0e\xf0\x0b\x0f\x69\xbe\x22\x49\xd8\xd1\xd2\x99\xe5\x5a\x04\x17\x5c\xa7\x77\xe0\xe5\x7a\x2e\x29\x93\xa6\x87\x5a\xf3\xb3\xb0\xc3\xbe\x95\x12\x00\xb0\x73\x26\xc6\xf1\x89\x56\xe7\x2d\xf3\x6a\x77\xcb\x07\x36\xe1\xb5\xde\x49\x39\x3b\x7e\x1e\xcb\x84\x63\xf0\x7f\x4b\x89\x90\xe7\x71\x6a\x26\x7f\xe7\x9a\xfe\x9d\x6b\x8a\x15\xd3\x8e\x92\x1e\x53\x4d\xc4\x7d\xcb\x6f\x53\xc7\x26\x66\xca\xb4\xfd\xc7\x52\xb3\x5d\xc5\x34\xa6\x27\xaf\x16\x40\xc3\x18\x8b\x16\x9f\x28\x14\x3e\xb7\x43\x93\x99\xc2\xee\xaa\x32\x0a\xa4\xa1\xbc\xa6\x0a\xde\xd8\x70\x82\x6e\x67\x26\x78\x3c\x23\x5f\x91\x7c\x17\xf8\x2e\x5e\xca\xce\xa9\x65\xe7\xe0\x52\xb3\x4c\xba\x26\xca\x78\xb2\x20\xac\xbe\xa4\xf8\x12\x97\x54\xb3\x52\x6e\xb3\xc8\xe6\xbb\xfc\x7e\xc0\xca\x94\x13\x7d\x8a\x48\x6a\xef\x2b\x62\x0b\x24\xf7\x91\xe2\xb3\x10\x02\xc2\xb3\x6a\xc7\x65\x10\x2c\xaf\x66\xba\xab\x81\x0b\x7b\xae\xe1\x2c\xcb\x2e\x4d\xad\x7d\x4e\x88\x2f\x33\x33\x0a\xc3\xc6\x9e\x28\x54\x40\xfa\x31\x4c\xc5\x7b\x75\x6d\x15\x79\x91\x45\xc3\x19\x1f\xd5\xfd\x20\x50\x5d\x3c\x2c\xbe\x05\xd4\xe8\x82\x5b\x34\x86\x59\x1a\x16\x5c\xbe\x03\xbd\x1f\x1c\x49\x39\xf1\x84\x4d\x7a\xdd\x31\xf5\x62\x08\x65\xa1\xe1\xdc\x34\x7e\xaa\xa5\xbc\x76\x9e\x18\x6b\xef\x3b\xff\xfa\xae\xd6\x19\x12\xf7\xcb\x70\x95\xd0\x22\xc1\x2b\x9c\x8a\xa5\x57\xb4\x54\x94\xf9\xa1\x79\x7d\xd6\x47\x8e\x9b\xca\x91\x91\x59\x11\x88\xcb\xde\xa4\x9e\x1c\x31\x17\x55\x24\x80\xa8\xd3\xa1\xea\xfa\xca\x3c\x03\x8b\x88\xc4\xf9\xd8\x55\x20\xc3\xb8\xb4\xaa\x4e\x01\xa6\x8e\x10\x43\x0e\x78\x8e\x85\x49\x42\x67\x4d\x27\x4d\x88\xf4\xfe\xa4\x0b\xd1\xa9\x8d\x99\xc1\x70\xc6\xb7\xab\xfc\x31\x3d\x3b\xfc\xea\x43\x85\xd4\xdf\xaf\xa3\x20\xb7\x53\xaf\x28\x0e\xa4\x82\x79\x34\xae\xd3\xb9\x1a\xb7\x48\x04\xaf\x28\x3a\x99\x49\x36\x08\x6c\xda\xe5\x57\xb2\x5d\xa8\x20\x72\xca\x13\xa8\x6e\xc1\x13\x4a\x44\xe6\x6d\x5a\x20\xd9\x90\x6d\xe4\xab\x72\x17\xf4\x93\x34\xf9\xaa\x2d\x72\xba\x27\xd0\x5b\x99\x09\x8e\xba\xef\x23\x12\xb9\x94\xf0\xd2\xbf\xbf\xe5\x5f\xfa\xaf\x1b\xbe\x05\xff\x26\x46\x28\x9f\xd4\xf1\x0d\x92\x92\x65\x3a\xb0\xda\x7e\xa2\xf4\x78\x3e\x71\x9b\x4c\x68\xda\x51\x62\x8b\x09\xdf\xf8\x37\x95\x6f\xfc\xb4\x70\xd4\xca\x72\xb3\xe8\x9b\x82\x1a\x09\x81\x8a\x6e\xe1\x61\x00\xdf\xd8\x31\xd6\x36\x43\xd5\xc3\x40\xf8\x78\xd3\x35\x4c\x14\x69\xc2\x1d\x6a\x18\xdb\x27\x95\x70\xeb\xbe\x96\x4f\xce\xf6\x63\xd7\x42\xb4\x3e\x6d\x29\xbd\xb0\xd0\x34\x51\xec\x76\x6d\x51\xf9\xf7\x84\xa1\x3b\xd3\x42\x1e\xfc\x24\x7b\x69\xb2\xcb\x17\xf7\x4f\x62\xa3\x46\x74\xf6\xc6\x84\x64\x33\xcd\x40\xb4\x40\xdc\x09\x14\xf4\x75\x0e\xa0\x30\xd7\x78\x03\x5f\x6a\x0c\x4d\x16\x85\xa6\x28\x33\x0b\xea\x92\xe3\xca\xba\x76\xa0\xf7\x47\xaa\x89\xf8\xba\xa2\x2e\x95\xc9\x30\x1d\x96\xb1\xc9\x54\x3d\x87\x37\x20\x31\x25\x94\x60\xd3\x0c\xa2\xcc\xe0\x8d\x01\x08\x1c\x8f\x54\x43\xfd\xb8\x16\x61\x62\x9d\x4b\x9f\xd1\x5e\xd1\x19\xed\xb4\x6c\x33\x75\x00\x86\x51\x47\x96\x62\x30\x3d\x4e\x2a\xd5\x8c\x93\x4a\x1c\xe5\xd5\x68\x30\x40\x46\x82\x40\x4f\xeb\xda\x5d\xd1\xe2\xf4\xfd\x74\xdd\x76\x76\x7b\x9c\xec\x11\x22\x3e\x5d\x97\x67\x8d\x08\x5a\x5c\x28\x4c\xd9\x78\x86\x5a\x32\xb9\x8a\x3d\xf2\x2e\xc3\xff\x0f\x4a\xb8\x22\x2a\xe1\xf3\x90\x76\x66\xcd\xaa\xe9\xd9\x06\x81\xc3\x8e\x94\xea\xd4\xe3\xce\x29\x4a\xf4\xab\x69\x99\x25\xcc\x63\x57\xa2\x25\x42\xde\x3b\xa5\xee\xe4\x83\x1a\xc8\xa6\x19\xdb\xa4\xe3\x56\x60\x94\x96\xd1\x02\xc0\xc7\x63\xd9\xdb\x3a\x96\x9c\x18\xdd\xdf\x3a\x1f\x1e\xef\xc9\x53\x67\xf4\xb6\x9e\x66\xab\xbc\x82\x61\xbc\x3e\x00\x4d\x4a\x16\x08\x05\xf4\x9c\x51\x85\xf4\xbc\x48\xc3\xd5\xfc\x59\xfa\x25\xe1\x4a\x35\x9c\x3d\xe9\x5e\x48\x7a\xe1\x31\x32\xb1\x13\xfb\xdb\x6d\x6e\x0d\xe1\x62\x15\x48\x3b\xcc\x45\xa0\x57\x82\x89\xfa\x0e\xa1\x66\xec\x35\x4e\xaf\x0d\xf3\xf4\x3e\xfa\x62\x9d\x53\xb9\x22\xd8\xa1\xa8\x23\xf6\xe4\xb4\x98\x8a\xd8\x42\xf5\x7a\x01\x2c\xf0\x34\xc3\xf2\x7e\x1f\x0b\x0b\x82\xc2\x7f\x40\x11\x26\x90\x6a\xc8\x68\x8b\x33\xa9\x2a\x6a\xbc\x57\xa7\x36\x58\x98\x81\xcd\x66\x08\x28\x71\x1a\x66\x8e\xe1\xf4\x96\xba\xf8\xbb\x6e\x59\x8c\x92\xdc\x66\xc5\x36\x39\x28\xe4\x60\x52\x85\x99\x50\x07\xec\x74\xcb\x18\x0d\x36\x40\x27\x3f\x56\x88\xf5\x96\xd2\x06\xba\xe3\x76\xc0\xb4\x6d\xa3\x5c\xcc\x95\x97\xb6\x08\xa9\xdc\xda\x0c\x9e\x70\x53\xe5\x17\xd8\x55\x01\x19\xd5\xc9\x91\x6f\xd6\xb8\xa6\xba\x7f\x8e\x07\x8d\x49\xd5\xeb\xc3\xfc\xb6\xd9\x56\x09\x09\xe8\x43\x97\x7e\x0c\x4c\xb6\x6a\xa9\xfd\x80\x2c\x1d\x36\x47\x5e\x3f\x8b\xc3\x71\x04\x95\x3b\xc6\x0e\x1d\xf9\x8d\x66\xcb\x43\x49\x4f\x8f\xb7\x2f\x2e\x64\x5e\x35\x48\x57\x51\x0e\xc7\xd2\x7b\x1c\x8f\x8a\x4f\xd4\x3a\xd1\x2d\x93\x4e\xbe\x8f\x1e\x2a\xd2\xd2\x7b\xca\x4c\x1c\x2a\x13\x78\x91\xa7\xf0\x0d\x78\x82\x57\x31\x8e\xdc\x5f\x2d\x1e\xd9\xe2\x6d\x1c\x73\x8c\x1d\xf7\x68\x0b\x38\x7e\x80\x1a\x42\x40\x71\x98\x83\x8c\xb8\xf4\x51\x56\xb7\xc4\xb6\x50\xad\xed\x71\xf9\x91\x97\x9a\xa6\x33\x88\x92\x28\x97\x98\x4e\x44\xba\xbc\x87\xfc\xb5\xe0\x80\x72\x82\xfd\x5a\x19\xd9\x81\xc2\x5c\x2f\xe8\x0c\xdb\xdb\x09\xaf\xf7\x5d\xf1\x5a\xec\xf8\x1b\x4e\xc3\xf6\xa2\xaa\xcd\x16\xfd\x28\x7f\xc6\xb3\x38\x7f\x23\x50\x76\x68\x33\x63\xdf\x15\xc8\xf3\xdf\x19\xf8\x2c\x2c\xba\x16\x3b\x5f\x82\x05\xed\xdb\x69\x7c\x3a\xaf\x9c\x7f\x82\x88\x07\xc1\xca\x23\xcc\x42\x0c\xfe\xf7\x02\xc5\x67\x7e\x0f\x4f\x1c\xa1\xe2\xe7\x5b\x93\x8a\x79\x5f\x59\xf4\x65\xe6\xea\xf1\x62\x75\x78\x88\x95\x5c\x08\x29\xb4\x41\x0a\x4f\xdf\x6b\x72\x6d\xaa\xcd\x60\x90\x76\x6c\x96\x00\x20\x75\x7e\x7c\xaa\x19\xde\x97\x03\x6e\x2b\x23\x5d\x13\xe7\xe9\x4f\x10\xd0\x89\xc1\x71\x36\x50\x42\xf6\x6c\xce\xc0\x4d\x32\xca\xab\xed\x3c\x76\x6c\x09\x7f\x14\x7d\xf8\x0f\x03\xdf\x0c\x73\x45\x05\x2c\xdf\xc5\x93\x42\x89\xe8\x53\xd5\xd1\x70\x55\x71\x85\xb8\xb4\xc3\x2b\x14\x56\x38\x87\xcc\xfa\x7e\xe5\x1f\x70\x3d\x54\xfc\x46\x27\x04\xf0\x1d\x87\xf3\x32\x5e\x87\xa4\xe9\xf4\x06\x70\x72\x9b\x62\x72\x64\x4e\xa7\x46\x13\x56\x68\xae\xb6\x70\x63\xaa\x76\x41\x11\xd2\x80\xf7\x0e\xdc\xc7\xdd\x60\xa2\x81\xa1\xba\x76\xa9\xfd\xe9\xa1\x9d\x97\x03\xa0\xb8\x2f\xf2\xdf\xde\x50\xae\x31\x8f\x03\x25\xa0\x73\x51\x37\xe4\x24\x69\x56\x20\xee\xd1\x6d\xd0\xe2\xce\xa1\x94\xb8\xef\x4e\xc1\x35\x0b\x0b\xcd\x98\xb3\x62\x10\x2f\xf1\x72\x7f\x17\x8f\x84\x4f\x14\x7a\x34\x4c\xb3\xa2\x9b\xc6\x51\xfa\x24\x0d\x05\xd7\x83\x72\x50\x86\xcf\xbb\x13\x6e\x8b\x23\xdf\x23\x79\x9e\x37\x38\xb1\xc0\x51\x4d\x0b\xa7\x95\x05\x2a\xf7\x45\xf1\x17\x63\x58\x39\x7b\xd2\x43\x87\x78\x9e\x7c\x42\xd3\x0c\xc3\xed\x7a\xe0\x0b\xa5\x27\x55\x30\x02\x3b\x94\x2c\x99\xc5\xef\x62\x0d\xdf\x01\x80\xd3\xf5\xbe\xf8\xac\x9d\x25\xcb\x11\xa8\xdc\xad\x31\xa3\xeb\xa6\x71\x47\x76\x26\xac\x7f\x9f\x60\xb1\xe4\x13\xb5\xdc\x86\xfd\x92\xdb\x26\x1c\x83\xd6\x05\x58\xd3\xc2\xbc\x2b\xf3\xcd\x5e\x94\xb1\x4f\x13\x06\xd5\xfb\xb8\x32\x3e\x99\x7a\x6b\x47\xe7\x17\xab\xb0\x26\xea\x25\x36\x6b\x28\x59\xe3\xef\xaa\x17\xff\xdd\xa9\xaa\xd8\xd1\xf9\x66\x9e\x36\x7c\x03\x3b\xbc\x5f\xf9\x58\xd5\xaa\xc2\x2c\x1a\xd8\x7c\xb6\xf1\xdc\x73\x0e\xcf\x54\xd2\x68\x57\x41\x66\x76\x7e\x8d\xba\xb2\xe0\xbb\xab\x07\xe6\x75\xdb\xa0\x69\x89\x19\x0e\xa2\x16\x1f\x3b\xb3\xc1\xaf\xad\x85\x33\xaa\xe9\x06\x1b\xac\x1c\xd3\xeb\xc0\xc9\xe3\xe0\x49\x25\x86\x65\xf6\x29\x55\x4e\x28\x3f\x80\x96\xc6\xdc\x4c\x40\x32\x7f\x46\x83\x0a\x77\xf7\xfb\x04\xab\x61\x89\xdc\xdb\x52\xd9\xee\xed\x40\x59\x73\xb0\xfc\x04\x8a\x08\x77\x68\x81\x90\x34\x4f\x6d\x09\x4c\xf6\x40\x38\xf2\x89\x9a\xbe\x51\xd2\xb5\x59\x92\xc2\x5a\x1b\x13\x11\x11\x1a\x1f\x4f\xd5\x14\x8e\xce\xbf\xd2\x5c\xb3\x79\x31\x09\x39\xa3\x82\x2c\xa3\x75\xfb\x67\x0e\x1d\x5a\x01\x03\x93\x33\x47\xe9\x56\xf2\x0f\xee\x2d\x35\x5b\x4d\xd6\x8e\x8a\x4c\x34\x60\x70\x1d\x08\x7c\xf9\xd8\x85\x45\x55\x44\x94\x17\x64\x55\xe8\xa5\xfe\x61\xe0\x27\xce\x64\xca\x0c\xd4\x94\x59\x14\xc2\x71\xa7\x96\x01\xa3\x2c\x26\x4c\x94\x6d\xa8\x44\xe6\x62\xa0\x97\xa9\xcf\xcb\xaf\x97\x45\x3f\xcd\xa2\xc2\x64\x62\x72\xc7\x66\x5d\x54\xd9\x17\xe3\x2e\x49\xc3\xca\xac\x6d\x12\x64\xb2\xae\x50\xe1\x9a\xd7\x91\x7d\xe2\xed\x30\x5e\x09\xaa\xef\x47\x53\xeb\xf4\xf3\xcd\xb0\x9f\xc2\xb4\x58\xf0\x3f\x06\x04\x9c\x48\x99\x53\xaf\xbd\x80\x5d\x09\x90\xe4\x6c\xcb\x3f\x8b\xae\x8d\xe3\x28\x89\x94\x42\xe1\x8f\xf1\xab\xa2\xfe\xe7\x2b\x8c\x36\x4c\x93\x74\x10\xe5\xc5\x8c\xba\x43\x65\xa0\xf0\xbb\xf8\xa0\x08\x1d\xf8\xa2\x9b\x19\xa4\x59\x11\xbd\x6e\xc4\xcd\x4a\x48\x29\x77\x94\xf3\xfc\x1d\x87\x8f\xf5\x4c\xe6\x80\x3c\xd9\xa2\x7c\x5f\xda\x8d\xa9\x0a\x22\x37\xc1\x14\x36\x8b\x10\x56\x01\x9c\x7a\xa8\x80\xaa\x87\x35\x09\xd8\x72\x73\x18\xdb\xa4\x60\x48\xc1\x4d\xda\xea\xea\x70\x3b\x9b\xb4\xbc\x00\x82\x44\x0e\x84\xcc\xee\x61\xed\x44\x48\xd2\x41\x99\x19\xf5\x18\x99\xd8\xc4\x27\xb5\xe1\x6f\xdf\x9a\xac\x43\x95\x63\xe7\xa7\xea\x49\x3a\xfb\x00\x93\x23\xef\xb9\x87\xf7\x2a\x79\xcf\x74\xb5\xe9\x70\xd3\x74\x3a\x68\xb4\xc1\x56\xf9\x18\x3b\xa0\xa2\x5f\x2c\x3a\x8a\xe2\x74\x01\x75\xa9\xd9\x2e\xf3\x8d\x86\xc2\x7a\x81\xab\x0b\x90\xea\x17\xc6\x9e\x2d\xf2\xb9\xea\xc1\x20\xaa\xbe\xa5\x43\xc1\x9b\xbe\x44\xf5\x26\x08\x5b\xc8\x6a\xde\xa1\xfd\x15\x77\x72\x72\xaa\x6e\xb8\xfc\xd2\xe1\xe6\xcf\x2d\x1e\x7c\xf1\xe0\x91\xc3\x64\x60\x27\x76\xb2\x9e\x19\x7b\x5b\xb5\x47\xb0\xca\x14\x28\x52\xa7\xa7\xe0\x4d\x41\x75\x8b\x7e\x16\x75\x61\xd1\x02\xb4\x08\x12\xe9\x62\x02\x47\xdf\x81\xec\xe7\xe3\x09\x88\xe7\xff\x77\x01\x7c\x56\x95\x91\x07\xc3\xac\x9a\x0b\x96\x5e\x1f\xb7\xa3\x04\xbe\x96\x01\x08\x48\xda\x54\xbc\x23\xc4\xb4\x56\xd9\xcb\xcb\x5f\x6c\x16\x69\xc1\x45\x33\xc0\x4e\x97\x14\x04\x75\xc9\x25\x97\x1d\x53\x98\xb6\xc9\xb1\x31\x83\xc9\x83\x19\xc4\xc7\x2a\x44\x26\x63\xd4\x7c\x17\x8d\x07\x54\x63\xfe\x99\x26\xdd\x41\xb0\x03\xab\xdd\x56\xa0\xeb\x61\xd0\x0d\x95\xbf\xd2\x65\x33\x07\x4b\x13\x48\x52\x0e\x67\xbc\xc6\xf8\xdf\xbd\x8f\xbf\x14\x55\x28\xdf\xe2\xb5\xb3\x55\x67\x83\x37\xa9\xc5\x2a\xc6\xd6\x74\x19\x12\x77\xd5\xf4\x93\xaf\xa7\xd9\xaa\xe9\xa7\x71\x14\xaa\x9a\x34\x86\xa9\x78\x56\xd5\xf0\xb4\xf3\x34\xeb\xf5\x4b\x2c\x0c\x88\xf5\x7f\x44\x8b\x32\x1f\xd7\x09\xeb\x84\xb1\xc9\xa2\xc4\x16\xaa\x35\xee\xeb\xaa\x35\xee\xeb\xca\x36\x20\x4c\x07\x03\x93\xb8\x36\x21\xa0\x31\x68\x0a\xe0\xe3\xa9\x6b\x3a\x74\xa8\xd9\x4f\xf3\x22\x62\x55\x58\x5c\xfa\x5e\x65\x30\xbf\x77\xbc\xcd\x6e\xec\xe8\xfc\x8b\xcd\x83\x4b\x3f\x4d\x2f\x13\x65\x86\x93\x00\x38\xf0\xde\x6f\x8c\x1a\x2f\x4b\xab\xd3\x19\x65\x06\x73\x82\xc2\x81\xad\xcb\x08\x11\x84\xb8\xd2\xf8\xd2\xaf\x8a\xd5\x2c\x07\xb4\x48\x28\xce\xb3\x00\x3d\x17\x8a\x30\xad\xb1\x5d\x9c\x0a\x7c\xaf\x04\xbb\x50\x70\x19\x70\x4c\xa3\xc5\xa1\xb9\x55\x44\x8c\x19\xcf\xa2\x3d\xd2\xc3\xa8\x44\xef\xcf\xe9\x8e\xcf\xbf\x50\xa8\xf7\x7d\x15\xe3\x9c\xa3\xec\x9e\x2b\x50\x23\x25\xbd\x7d\x49\xad\x0a\xef\x50\x0c\x8d\xdd\xe3\x0f\x03\x4f\x9f\xd8\x43\xad\xf4\x80\x85\xbe\x53\x63\xc5\xb6\xd2\x1c\x9a\x28\xf1\x4e\x45\x9c\xc2\xa9\x00\xef\x8a\xe3\x7f\xb4\xd3\x8e\x2b\x36\x38\xb6\x99\x67\x9e\x29\xe4\x3f\x0f\xfb\xeb\x26\x2b\x5e\xa7\x71\x20\xd5\x6c\xdf\x55\xff\x9d\x8b\x6a\xf5\x18\x44\x45\x5e\xb6\xa3\xbc\x1f\x11\x9d\x86\xeb\x27\x23\x9f\xea\xbf\x19\x48\x84\x99\x19\x28\xb9\x82\x67\x76\x96\x5e\x2f\x1f\xab\x16\xc6\x61\x9a\xe7\x51\x3b\xde\x20\x74\x1a\x88\x11\x58\x57\x08\xf9\xe6\x5a\x3e\x10\x38\x03\x5a\xde\x84\xa6\x3d\x9f\x8c\x7c\xa3\xd6\xed\xf3\x0a\x12\xb4\x59\x62\x73\x66\xdb\x63\x13\x3e\x1f\xf8\xcd\xf9\xbc\x4a\x59\xc4\x3a\xe6\x29\x1f\xce\xed\xd0\x6a\x69\x9f\x8c\x94\x5d\x1d\xf7\xe8\xb1\x5e\x26\x2e\x4b\x6a\x86\x74\x59\x52\x90\xa3\xa1\xc8\x52\xf5\x34\x14\x31\x48\xee\x12\xac\x88\xa8\xe9\xcf\x75\xd1\xfc\x24\xad\xc3\xae\xf9\xbc\x1a\x95\x18\xc8\xe7\x54\xbc\x71\x03\xc3\xca\x39\x01\x2f\x2c\x38\xe2\xf9\x34\x0c\x7e\xb8\x59\x18\x91\x71\x76\xd2\x7d\x5e\xc6\x4f\xa1\xf1\x79\x61\xda\x51\x1c\xbd\x8e\xbf\x05\x68\x04\x44\x82\x8f\xeb\xe4\x1e\xdb\xb6\x28\x6c\x36\x4b\x4f\x40\x24\xaf\xab\xaf\x47\x93\x04\x33\xd4\x5d\x0f\xc6\xd2\x12\xd4\x8d\x5d\xe9\x20\x8f\x92\x14\x49\x37\xee\x06\x1a\x38\x58\xe0\xd0\x49\x27\x22\x4e\x35\xd2\x16\x99\x4d\xbb\x5d\xeb\x1a\x7a\x51\x0e\xc1\xa7\xf8\x58\x3b\xe6\x9a\x38\x5e\x8f\x58\x71\x8c\x29\x50\x0c\x51\x08\x21\xaa\xce\xd6\xdf\x76\x58\x34\xd4\x19\x46\xf8\x22\xe9\x85\xa9\x56\xbc\x2a\x9a\xb2\xaf\x0d\x63\x13\x25\x42\x09\x43\xa9\xff\x98\xea\x7d\xe2\xca\xb1\x98\x71\xfa\xc1\x6a\x32\xd3\x35\xc5\x5c\xb5\x34\x38\xf1\xc1\x6a\x00\x62\xe1\x84\x9c\x83\x08\x11\x36\x94\x42\x61\x35\x96\x44\x2e\x4c\x90\xf7\xb4\xdb\x1d\x96\x85\xd7\x2f\x62\x1c\x6d\xa4\x31\x35\xcf\xd1\x1e\xbe\x30\x60\xf2\x80\x53\xb1\x3a\x74\x88\x23\x7c\x96\x18\x11\x66\x91\x0f\xbf\x7b\xb1\xc9\x7b\xe9\xfa\x04\xc3\xec\xbe\xae\xb0\x30\xfe\x81\x91\x36\x4d\x9f\x7b\x5e\x94\xef\xdd\x45\x3a\x48\x42\x99\x10\xd5\xb8\xb4\x0f\xd2\xbc\x20\x99\x00\x21\xe6\x55\x03\x8e\x39\xc0\xe8\x7c\xc0\x43\xff\x9c\xa2\xe1\xcc\xc2\xf6\x03\xd7\xd2\x18\x6f\xdf\xd9\x0e\x2e\x35\x4d\x6c\x7a\xa9\xc9\x1b\xaa\x34\x0d\xe5\x52\xa1\x3b\xf8\x10\xa5\x88\x92\x55\xee\xd8\xe3\x6a\x32\x22\x00\x29\x2d\x2b\x7c\xc8\x59\x0a\xbd\xe2\xf2\x2a\x3c\x2f\xc9\x41\x7c\x8e\x32\x30\xd9\x9a\x8d\xd3\x12\xf5\x66\x69\xb9\xd3\xac\x33\x8f\x72\xd8\xa4\x63\x3b\x7b\xaa\x9d\x06\x91\xe0\x6d\x2c\x80\xc8\xac\x8f\xd1\x0c\x14\xa1\x2b\xc5\x19\xfe\x24\x68\x7c\x65\xd1\x6d\x00\xd5\x4a\xc3\x1f\x50\x49\xdc\x55\xd5\x08\xbe\x6f\x2a\x07\x7e\x9e\xac\x39\xbc\xa0\x27\x02\xde\x31\x7d\x86\x8f\x15\x91\xa5\x1b\x47\xbd\x7e\x91\xcf\x56\x3b\x85\x50\x5e\x69\x52\xd4\x71\x80\xaa\x51\x2c\x02\x00\xfe\x01\x86\xfd\x34\x0a\xed\x5c\xe3\xe8\x3c\xea\x05\xb2\x96\x04\xca\xde\xec\x8e\x6a\x35\xba\x84\xc5\x58\x80\x5b\xff\x74\x8b\xcc\x9a\xbc\xcc\x36\xd0\x14\xe1\x0c\x4b\x5c\xa3\xfb\x83\x5a\xf7\x77\xc2\x6b\x0d\xfb\x54\x08\x29\xa6\xe1\xec\xf4\x75\xad\x3a\xe9\x45\xd8\x67\xa4\x90\xe3\x0b\x2e\xf7\xb7\xbb\xb0\x2e\x1e\xa9\x22\xa3\x67\x1a\x5f\x7e\x99\x03\x82\x33\x28\x3a\xe1\x65\x3e\xa6\xd7\xe1\x84\xc0\xaa\xef\xc4\x46\x7c\x67\xa4\xe2\xfb\xb3\x5a\x7e\xed\xaf\xe8\xd7\x94\x7d\x98\xf0\x33\xde\xa4\x70\x04\xcf\xe6\x89\x96\xa2\xd0\x5c\x1f\xa9\x81\x0e\x8e\x13\x1e\xed\x8f\x46\x3b\xbf\xc8\x53\xff\xde\x84\x12\x0b\x03\x36\xac\x10\x1f\xe8\xde\xab\x91\x27\xd0\x3c\x46\x77\x0a\x86\xf7\xe3\xda\xb0\x76\x60\xb2\xc2\x66\xc4\x05\x10\x4f\x1b\xfa\x66\xec\xad\xa0\xab\x89\xa2\x96\xea\x32\xce\x0c\xd6\x79\x5d\x81\x93\xd2\xda\xb4\xa4\xd5\x72\x33\x8f\xad\x1d\x36\xb4\x95\x5a\xa0\x1c\x46\x6a\xba\xdd\x16\x9a\x36\x21\xc1\xc4\x89\xa2\xee\xca\xbc\x2b\xea\xd6\xd0\x46\xbb\x69\x66\x43\x93\x17\x0d\x65\x7a\x7f\x4e\xe9\x9e\x9f\x73\x65\x28\x9b\x50\x53\xb5\x84\x64\x5c\x55\x57\x3c\x9f\x73\x13\x8e\x7b\x71\xda\x63\xf4\x14\xcf\xf5\x61\xa0\x2a\xa8\x0f\x54\x05\xf5\x81\x9e\xe1\x0f\x5d\xf8\x37\x88\xba\x5d\x26\x7d\xba\x76\xb3\xea\x12\xf9\x24\x50\xb8\x72\x96\x86\xb1\x89\x06\xf9\x67\xef\x14\x35\x35\xe0\x28\x59\x8b\x1c\x7c\x56\x07\x34\xfa\x6d\xde\xc4\x26\x5f\x05\xbe\x00\x0c\x1f\x35\x07\x3e\x76\x25\xfe\x41\x9a\x71\x4d\x1a\x90\xc2\x0c\x75\x76\xba\x92\x94\xeb\x5d\xb9\x5b\x47\x0c\x2a\x93\x7c\x68\xc3\xa8\x4b\x2a\x71\xd5\xf3\x75\x2e\x22\x2e\x39\xb9\x8d\x45\x5a\xe4\x2a\xa6\x15\x33\x5f\x69\x86\x66\x18\x51\x3a\xeb\xb2\xd4\xe3\x2a\x4b\x3d\x5e\x8d\x46\xa1\x2e\xe4\x91\x96\x06\xdb\x26\x94\x5a\xe7\xe7\xde\x2d\xa1\x13\x7f\xe8\x90\x57\x8d\x70\x0e\xe7\xe7\xa7\x46\xe3\x57\xbf\xda\x5c\x8f\x8a\x7e\x94\x34\x7c\x9e\xc1\x3c\x3e\x41\x39\x9e\x51\xe6\xda\x43\x9b\x55\x49\x26\xae\x89\x19\x36\x81\xf2\x5f\x9c\xf6\x9b\x86\xd1\xf7\xa0\xa1\xbc\x25\x2e\xa9\x0e\xa1\x4b\x4a\x8a\xa8\x63\x2d\x5f\x39\x62\xfc\x37\xe8\xef\xf8\x78\x6a\xdd\x5c\x3c\xd2\x34\xdd\x6e\x14\x47\xa2\x5f\x24\xe0\xb5\xff\x82\xe9\x70\x6e\x69\x69\xb9\xda\x00\xf3\xbe\x89\x45\x7b\x1d\x7b\x13\x03\x89\x7c\x32\x35\xd1\xa9\x14\x1b\xa6\x19\x5b\x2a\x71\xb5\x29\xf0\x3e\xa1\x57\x94\x53\x40\x96\xae\xef\xd2\x32\xa1\xdf\x1b\x79\x60\xe5\x03\xba\x27\xe0\x95\xe8\x2b\x93\xb0\xd0\x3f\xff\x53\xc1\x04\x53\xc6\xaf\xfd\x69\x3a\x6c\x78\xe4\x60\x53\xed\x6b\x9b\xca\x19\x95\x64\xf0\x64\xca\x38\x49\x0b\x2f\x2f\x7d\x56\xd9\xfb\x7a\x94\x46\x39\xf0\xa1\xe7\x47\x7a\x8e\x6b\x9e\x7b\x66\x73\x9b\xad\xa5\x11\xcc\x4c\x91\x84\x5c\xe7\x45\x5c\x80\x5f\x9a\x1d\x08\x3e\xdf\xac\x71\x87\x3d\xdc\x1c\x98\x32\xa6\xc5\x19\x0f\xe6\x3e\x0a\x41\xdc\xbf\x38\xda\xd6\x08\xe0\xd1\x84\x32\x29\x58\x83\x15\xd1\xd7\x39\xd4\x43\xf9\xa4\x0e\xac\xe8\x5b\xd3\x31\x61\xdf\x6a\xc6\x01\x04\xec\xf9\xb8\x0e\x80\xe8\x9a\x58\x9c\x54\xa5\x58\x7b\x19\x41\xa7\x54\x17\x55\x35\x25\x4e\x43\x96\xcb\x43\x34\x74\x09\x77\xcf\x27\x53\x70\xde\xca\x7c\x33\x4f\xbb\x85\x4d\xe4\x25\x09\xc3\x54\xb1\x4d\x27\xe4\xd1\x92\xd5\xfc\x29\xbf\x56\x60\xb1\x91\x70\x17\xcf\x42\xfc\xaa\x69\xe3\x46\x6d\xf8\x4d\x24\x7c\x4e\x50\xd5\x25\x7c\x6f\x60\x30\x60\xeb\x6b\xb4\x68\x4f\xe4\x8f\xd0\x96\xbe\x75\x07\x68\x84\xf3\xc3\x5e\x99\x77\xc5\x04\x7a\x47\xd8\xff\x6f\x00\x61\x71\xad\x61\x4e\xbe\xea\x34\xa1\x0e\x22\x7f\x55\x6b\xa6\xe2\xf7\x3f\xdd\x61\x29\x21\x5a\xcd\x3b\x1c\x72\xe5\xb4\xe1\xd9\xf5\xdf\xc2\x6d\xf0\x49\xad\x0d\xe9\xba\x8d\xc3\x74\xc0\x2f\x1e\x20\xdf\x15\xd5\x65\x7b\x25\xf0\x59\x69\x94\x84\x55\xe4\x66\xf3\x3d\xda\x02\xa1\xe1\x4c\x9b\xc6\x34\x6f\x59\x6f\x05\xbf\x8c\x3f\xfa\x47\x08\x57\xb0\xdb\x9f\x42\x4c\x24\xe1\x0a\x3d\x2d\x67\xad\xe0\xa4\xc4\x4e\xb9\x3a\x47\xbe\x1a\xd9\x0c\x68\xaa\x70\x84\x1a\xce\xad\xf3\xb6\xe2\x44\x98\x64\x63\x90\x66\x96\x44\x36\xa4\xbb\xd6\x57\x6e\x6e\x28\x24\x19\x26\xcb\x40\x38\xde\x40\xf4\x84\x3d\x8a\x8b\xd2\x88\x65\x1f\xa8\x5b\x1f\xd8\xa4\x88\x52\x37\x18\xc5\x0b\xcc\xc3\xba\xd3\x26\x3a\x5f\x7e\xb9\xd9\x4e\xcb\x2c\xb7\x39\xb5\x6f\xa0\x73\xed\x6d\x2c\xa1\x7c\x32\xd5\xbc\x45\xfd\x1e\x59\x5a\xed\x9f\x45\x89\xd9\x22\x16\x24\x7e\x33\xbe\xa8\xd8\xd9\x71\x3a\xcc\xa3\x8e\xed\xcc\x54\xa1\x25\x5e\xf3\x8e\x96\xcf\xc7\x6e\xa9\x16\x8c\xf3\x75\xe4\x24\x93\x99\x76\xce\xc1\x0d\x60\x36\x16\x0d\xc1\x60\xbf\xa7\x5a\x95\xaf\xe8\xde\xf1\x27\xa6\xd2\xb6\x6a\xc9\x2b\xf3\x5c\x2a\x57\xb5\x46\x72\x75\x7b\x71\x18\xa7\xb9\x98\xc2\x0a\x19\x80\x46\x8b\x74\x08\x7b\x8d\x82\x22\x1a\xb4\x6d\x16\x9b\xa4\xc3\xac\x02\x21\x24\xa9\x60\x62\x67\x4b\x09\x74\xdc\x50\xab\x38\x3b\xd6\x45\x16\xcb\x04\x02\xb6\x1f\x43\xbc\x5c\x31\xac\x44\xa4\x67\x66\xac\x74\x47\xae\xd0\x62\x2f\x42\xcf\xbe\xa3\x8c\x53\x5c\xd7\xa0\xe6\x1c\x50\xa0\x30\xc4\x42\xb2\x81\x4a\x1b\x7e\x8f\xd1\x52\x90\x89\x3f\xc5\x95\x3b\xd3\x1f\x4f\x0b\xd9\x4f\x9c\x43\x51\xa2\xa5\x9b\xc5\x5b\x78\xac\xc4\x6d\x86\x65\x9b\x7c\xe7\xa9\xfb\x52\x95\x73\x2f\x8d\x54\x65\xf8\x92\x4a\x02\x07\x26\x4e\x13\x8b\x32\x28\xb6\x64\x10\xe4\xf9\x58\xb1\x81\xba\x51\x6c\xe7\x34\x0f\xd7\xab\xac\xbf\x4d\x7c\x39\x30\xbb\x98\xc5\xe9\x88\xbb\x2b\x3e\x8d\x50\xe2\xa5\x65\x5b\x0d\x89\xeb\x23\x5f\x94\xb8\xae\x66\x6f\x91\x99\x76\x1a\x77\x1a\x5e\xa3\xef\xaa\xe6\x50\xe8\x6a\x6a\x98\x95\x1d\x92\x6b\x96\x78\xfa\x6c\xa0\x24\x4d\x4e\x8d\x94\xd8\x09\x87\x09\x60\xff\x9c\xe4\xed\x97\xcf\x74\x10\x7e\x56\x93\x3b\xaa\x89\x0e\x2c\xcb\xe7\x90\x88\x7a\x85\x78\x34\xa1\xc1\x15\x77\x67\x55\x53\x3d\x8f\x46\x3e\xa1\x69\x2b\x8e\xbe\x6a\xea\x5f\x0e\xbc\x5c\x47\x3f\xea\xf5\x9f\xc4\x95\x89\x7d\xbf\x7f\x41\xec\x46\x2d\x8b\x71\xf5\x84\xb1\xfd\x3f\xd5\xaa\x5e\x09\x86\xdb\xfe\x71\xb5\x9b\x08\x4d\x42\xdd\xf1\x6f\x05\x4a\xd8\x49\x17\x72\x4f\x8c\x54\x83\xd8\x05\x2c\xc2\x8e\xd0\x58\xdd\x8c\x28\x5c\x2b\x03\x85\x81\xcd\xa8\x69\xa4\xda\xd1\x9c\xd4\x9f\xf3\x4d\x9f\x56\x07\x5c\x5a\x42\x27\x9f\x98\x4c\xb8\xc0\xcd\x97\x07\x4f\x29\xe8\x7b\x98\xa5\x6b\x51\xc7\xe6\xbb\x94\x78\xc8\x37\x03\x2f\xf4\x7e\x46\x79\xc2\x72\x0f\x21\xf2\x1b\x70\xfc\xf1\x24\x00\x4c\xe0\xb6\xfe\x40\x75\x70\x99\x81\xcd\xa2\xd0\xec\x52\x7d\x32\x98\x55\x48\x0d\x27\xb4\xae\x8f\xd1\x6c\x47\xa5\xe3\x12\x16\x08\xfe\x2b\x84\x5f\xfc\x3f\x8a\x62\x67\xc2\x55\x20\x93\x0e\x07\xf6\xae\xa8\xb5\xac\x95\x24\x25\x81\x4d\x2c\x95\x40\x07\x3e\x0c\x7c\x27\xc7\x87\x6a\xf6\x1c\xf9\xd2\xca\x9c\xaa\x33\x9e\x19\x4d\x39\xb2\x60\x44\xcd\xb5\xc8\xd9\xc4\x09\x2d\x29\x7b\x16\xbf\x8d\x55\x71\x6c\x5a\x44\x49\x6f\xd6\x17\xa2\x39\x15\x57\x92\x03\x87\x1d\x83\x8d\x62\x1c\xd1\x7c\xf6\x7d\xa9\x36\x2f\xa2\x01\x09\x7a\x4c\x88\xa1\x2b\x01\x74\xd5\xf7\x51\xe4\x4f\x54\xcf\x13\x6b\xd9\x47\xf8\x7e\xdc\xcb\x17\x21\xe1\x84\x5f\xfe\x74\xe4\xa7\x4a\x83\xbc\x72\x30\x19\x58\x75\x06\xdb\xf3\x01\xac\xee\x00\x24\x1f\x8d\xb4\x32\xd3\x23\x25\x42\x3e\x4b\xf4\x51\xfa\xda\xb7\x7e\x7a\xec\x1b\x30\xed\x60\x18\xa7\x1b\x36\xcb\xe1\x14\x25\xba\x3b\x6a\x5e\x6e\xe2\xfa\xc4\x60\xd8\x5f\xd2\x66\xe0\x4d\x1a\xbf\xe9\x9a\x43\x6c\x96\xf1\x56\x84\x69\x75\x33\xf0\x79\x32\xaf\xc2\xe8\x5c\x7b\xbb\x4e\xd0\xa7\x1b\xa7\xeb\x92\x23\xab\xce\x2a\xc7\x76\xc7\x17\xb0\x81\xa1\x82\x88\x7b\x69\xb1\xaf\x7a\xa4\x88\x9d\x6f\x52\xd1\x0a\xb1\xfd\x75\x15\x1a\x5d\x47\xa0\x0b\x26\x17\x8b\xa3\x03\xf5\xde\xd1\xf2\x10\xd3\x05\xad\x01\x72\x02\xd3\x00\x0f\x1e\x5d\xb6\x58\x1e\xef\x29\x07\xbb\xf7\xb1\xa6\x60\x37\xfc\xde\x94\xc0\xe7\xc1\xa5\x66\x92\x26\x61\x3a\x68\x9b\x82\xdc\x38\x1d\xc9\xe3\x8c\x6a\x97\x39\x33\xf5\xb9\x2a\xf4\x59\x4b\xe3\x32\x29\x4c\x46\x76\x26\x22\xdb\x70\xfd\x01\x5e\x90\xf3\xb4\xfc\xf2\xcb\xce\x30\x42\xa6\x60\x2f\x8b\x8a\x02\xfb\x9a\xc3\x21\x97\xc4\x7d\xf4\xce\x48\x69\x7d\xac\xd9\x2c\x8f\xd2\x64\x46\xe9\x9a\xfe\x2f\x81\xcf\x17\xd1\xaa\x0f\x16\xcc\x23\xe4\xe9\x2e\x07\x64\x07\x25\xc3\xd6\xf1\x32\x7b\xd4\x4c\x52\x3c\xd1\x3c\x5d\x67\x10\x07\x61\xe6\x3d\x45\xc3\xbe\xe7\x1a\x58\xc3\x34\xe9\xf0\x97\x12\xda\x82\x3d\x1e\xee\xe4\x08\x31\x4e\x8f\x54\x47\xed\xa4\x74\xf4\xb0\xbf\x31\xe3\x8b\x7a\x20\x34\x71\x76\x11\xa8\x4e\xb0\x8b\x7a\x6b\xab\x22\x86\xbc\x6f\xb3\x86\x0e\x43\x7e\x84\xd7\x2e\x3a\x30\x75\xb4\x90\x01\xab\x36\x38\x79\x10\xad\x15\xf3\x05\xd5\x81\x9d\x45\x79\x27\x0a\x85\xa2\xf3\xa2\x93\x92\xf7\x15\xc7\xab\x2a\xa2\x8b\x6d\x2f\xca\x63\xe3\x5c\xfb\x80\x9c\xdd\xd4\x30\xda\x4d\x15\x23\xe4\x66\x30\x8c\x2d\xe2\x62\xe9\x8b\x69\x38\xa7\x9a\x3b\x2a\x07\x2e\xb1\x55\x55\x13\x00\x8b\xc5\x2d\xa4\x20\x7c\xa2\xd0\xa3\x61\x96\xee\x52\xc5\xff\x91\xe7\x88\xfc\x73\x1a\x6a\xc8\x0d\x9f\x6a\x69\xb7\x02\x4d\x74\x1f\xa9\xed\xf6\xc1\x54\x88\xbd\xfc\xd2\xe1\x66\x98\x66\xe8\x3b\x65\x35\x85\xc0\x37\x09\xbd\x8f\x29\x8e\x3c\xf0\x03\xb5\xea\xbf\x14\x77\x50\xfd\x70\xd8\xe7\x41\xdf\xd0\x52\xc3\x9c\x2c\xd6\xa3\xd0\xce\xfa\x3a\xf4\x6f\x4e\x32\x7d\x3c\x8a\xfa\x70\xa2\xe6\xfa\x59\xbc\x97\x30\xf2\xe5\x2a\x7c\x8e\x05\x4f\xf8\x44\x15\x6b\x07\x51\x12\x85\xdc\xdc\xf3\x22\x87\x3d\xff\x50\x89\xcb\xfe\xc3\xa9\xb8\x60\x65\xbe\xd9\x89\xaa\x79\x68\xb5\x29\x12\x9a\x12\xf9\x58\x41\xa2\x9d\x34\x2c\x49\x3c\x71\x4e\x61\x1f\x1c\xaa\x03\x72\x7e\x34\xf2\xb3\x80\x8d\xf6\xf0\x9a\xbf\x8f\x50\x46\x7a\x8a\xfd\xd3\x5d\xcb\x57\x1b\x9a\x05\xaf\xfa\x0f\x2f\x2a\x82\x5f\xcf\xc4\x31\xcb\xb9\xbd\xc2\xef\xe8\x1b\x88\x07\xf8\x24\xf0\x8f\xa1\x6f\x4d\x27\x8e\x12\x8b\xc7\x20\x0a\x72\x0d\xa5\xba\xe0\x0c\xb1\xa3\xc4\x26\xda\x43\x0b\x6c\x0b\x59\x23\xb7\xe7\xe8\xcf\x37\xbb\x16\x85\x0f\xce\x3d\x91\x80\x9d\xd3\xd9\xd8\x39\xb5\xdf\x26\x06\x1e\x57\x4c\xe6\x54\xf6\xa0\xd3\x92\x17\x07\x97\x9a\xc6\x16\x89\x99\x51\xc4\xce\x93\x8a\x77\x73\x4f\x83\x6c\x57\xea\xdc\xad\xca\x24\x31\x02\x39\x88\x41\x34\x5d\xa5\x60\xbe\xfe\x69\x0e\x23\x92\x7c\x26\x5d\x11\xd7\x64\x75\x74\xde\xf5\x4f\x55\x93\xcd\x55\x76\xab\xb9\x2a\xab\x33\xcd\x62\x2d\xc5\x24\x25\x5f\xef\xf0\x97\x15\x69\x9a\xcc\xfa\x3e\xc8\x3f\x1d\xa9\xe6\xbd\x4f\x02\x5d\x16\x85\x7e\x09\xff\x99\xab\x08\x98\x76\xa7\x64\x91\x26\x07\x3d\x7e\x44\x93\x8e\x8f\x1d\xaf\x30\x2c\xb3\xb6\xf8\x88\x49\xde\x44\xef\x5c\x12\xaa\x9a\x87\x1c\xf6\x23\xdb\xa5\x2d\x67\xeb\x7d\x65\x82\x87\x4c\x1d\xc7\x33\x63\x1f\xac\x16\x26\xe9\x91\x38\x91\x73\xa7\xbb\x4e\xfb\x2f\x1f\xd7\xb9\x91\x16\x59\x3a\x8c\x42\x96\x7b\xc1\x3a\xf3\xb1\xce\x37\xee\x70\xac\x84\x05\xe1\xd3\x69\xfa\x18\xc9\x87\x9a\xa4\x33\xeb\xb7\x9e\xcd\xc0\xaf\x27\x1f\x20\x0a\xc3\xf4\xe7\x7c\x41\x3a\xc8\x7c\x60\x62\x3a\xf9\x6e\x25\x18\xfb\x50\x19\xa2\xb2\x26\x99\x98\x76\x4d\xc4\x3c\xd5\x28\xc0\xd2\x0a\x79\x1e\x40\x70\xbf\xa5\xec\x06\x1b\x63\x0d\xf5\xad\x45\x9d\x5d\x7e\x37\x3d\x1b\x78\x49\xa9\x9b\xf4\x8b\x32\x5e\x55\x28\xfb\x5d\x3c\x0c\xf6\x60\xe1\x01\x81\xaa\xc7\x63\x85\x4a\xe7\x21\x1c\xb7\x70\xfd\x97\x02\xd5\x57\x7e\x49\xb9\xd1\x15\x99\x85\x85\xaa\x50\x98\xb8\x95\x45\xe8\xca\x0d\xe7\x51\xc1\xe2\xe4\xc2\x69\xae\x01\xfe\x07\x66\xd5\x36\x94\xf6\x08\x23\x62\x7c\xa2\x54\xf4\x06\x26\x4a\x0a\x13\x25\xb3\x2a\x46\xbb\x34\xd2\x79\xe3\x25\xa0\x8d\x60\xa6\x9c\x54\xf2\x76\x27\xeb\x1a\x74\x0d\x31\x97\x1c\xbd\xf0\x91\x32\xb3\x7a\xe4\x02\xab\x2a\x51\x49\x93\x99\x2a\x29\x17\x11\x9d\x86\x6b\xef\xfe\x81\x6e\x6c\x7f\x57\x2d\x9c\x6b\x91\x5d\x77\x51\xb6\x74\xdc\xfb\xb2\xed\x4d\xe4\x51\x9a\xed\xee\xf0\x3a\x07\xf6\xbf\x3f\x25\xb5\x42\x6a\xf3\x46\xab\xd3\x8f\xb4\x3a\x7d\xcd\xca\x19\x25\x44\xa3\xe1\xc8\x90\x7b\xeb\x95\x7a\xd2\x0f\xd4\xba\xb9\x66\xf2\x5d\xaa\xbc\xb1\x8f\x05\x92\xb5\x9d\x10\x43\x1b\x81\x5f\xec\x00\xe3\xba\xc4\xdf\x37\xe3\xdc\x77\x4f\x90\x7a\xfb\x73\xda\x9a\xb5\x0f\x32\x1b\x87\x8e\x94\x52\x1f\xeb\x96\x89\x2b\xb2\x0e\xf5\xe2\x98\xbc\x3f\xb6\x7e\xa8\xec\x34\xff\x4f\x08\x40\xba\x3d\xec\x65\x07\x28\x7f\xae\xa5\x6a\x53\x3b\x5b\xaa\xe5\x8a\x45\x77\x1d\x7f\xb5\x5a\x59\xb5\x7f\x15\x20\xc0\x87\x23\xaf\x9a\x70\x1c\x77\x85\x9f\xfc\xb7\x23\xdd\x44\x72\x0e\xeb\x9e\x20\xf8\xd5\x13\x42\x09\x7b\x06\xb0\x98\x6c\xa8\xc4\xee\xe3\x06\x29\x2d\xed\xd6\x80\xe8\x25\x68\x58\xf0\x03\x61\xc7\xf4\xa0\xf1\xb2\x88\x87\xec\x24\x68\x43\xb6\x26\x47\xa8\xcb\xa2\x4e\x0f\x41\x15\x56\x34\x60\x00\x12\x90\xaa\x96\xcc\x53\x50\x15\xc4\xab\x58\x8f\x8a\xd7\x01\x20\x62\xc6\x21\x0d\x3d\x81\x3d\x9d\x4f\xea\xdd\x11\x12\x1b\xf5\xfa\x04\xe7\xce\xa8\x0d\x02\x3f\x04\xa8\xff\x96\x72\xe4\xbf\x38\xda\x6e\x5b\xbb\x32\xdf\x1c\xda\x22\x4b\xc3\xbe\x1d\x44\x21\x97\x35\x99\x1f\x1b\xf8\x92\x86\xee\x22\xee\x66\x91\x4d\x3a\xf1\xc6\x6c\xb5\x3c\xb2\xb4\xf1\x48\xe9\x12\xa1\xf0\x2c\x40\x0c\xbd\x64\xc6\xad\x55\x40\x4e\xb5\x20\x9b\x0d\x4d\x56\xe4\xfa\x37\x55\x19\x65\x5a\x4a\xfa\xd0\xa1\x66\x2f\x8e\x12\xe6\xea\x89\xd2\x65\xc3\xdb\xad\xa9\x2e\x99\xd8\xae\xd9\x38\x7f\xa2\x1a\x3c\xcc\x95\xc4\x42\xef\x90\x90\xa3\xf3\x3e\x1a\x5a\x59\x76\xdc\xa4\x86\xd3\xc1\x61\xb9\x3f\xe0\x03\x37\x54\x09\xe0\x9a\xc2\x72\x1e\x62\xac\x3a\x24\xba\x7a\x0c\xe2\x01\x3d\x4d\x8c\x79\xd5\x0c\x4d\x62\x73\x3b\xeb\x09\xe3\x57\x79\xe8\xb2\xe7\xa3\x52\x08\xba\xa8\xf1\x0f\x8f\xea\xe4\xd6\x92\xdf\xde\xd1\x79\xdf\x0d\x5f\x0d\x77\xe4\xe6\x90\xf5\xc5\xc3\xbf\x31\xd1\xfa\x9d\x26\xdd\x2a\x59\xa2\x7b\x52\xfa\x4b\x4e\x8c\x29\xf0\x2f\x67\x68\xb3\x6e\x9a\x0d\xa8\xe9\x64\x96\x6e\x09\x5f\xf8\xb7\xb1\x10\xf0\xc4\x18\xf9\xd7\xfc\xb7\xb1\x5c\xc8\x8c\xf1\x41\x72\x3f\x2d\x73\xdb\x4f\xe3\x0e\xc2\x4f\xe6\xab\xd0\x00\x11\xee\x4a\x5d\xed\x27\xb3\x9d\x32\x44\x5c\xe9\xea\x9a\x78\x1b\x52\xe4\x54\xce\x5a\x1b\xf4\x38\x0e\xaa\x22\xd1\x8a\xf0\x85\x4f\xd0\xba\x2d\xcd\x75\x75\xa2\x52\xeb\x69\xb6\x4a\xa5\x42\xbf\x30\x41\x2f\x5d\x9a\x09\xb6\x6f\x50\x47\xe7\x5f\x69\xe6\x11\x3f\x47\x0c\xac\xab\x9a\x08\x7b\xb5\x2e\xce\x5a\x8f\x12\x50\x04\xbd\x5f\x5c\x8d\xac\x1f\x59\x32\x58\x67\x68\x20\x05\x96\x09\xf7\x77\xbd\xf8\x9a\xbc\xf8\xbc\x57\x0d\xdc\x9c\x6c\x7c\xf2\xdd\x9b\x6c\xf9\x0f\xe2\xd9\x0c\xf8\xaa\x28\x3d\x6d\x69\x23\xb5\x5b\xce\xb6\xf7\xa0\x74\x51\xef\x6e\x79\x39\xbc\x1d\xca\x32\xe1\x98\x96\x86\x60\x37\x4f\x61\x36\xd3\x74\x90\xba\x1e\xbd\x74\x96\x28\x1e\x79\xc6\xde\x65\x8a\xa9\x51\x5f\xfe\x90\x76\x2a\xa4\xf8\xb3\xbc\xb7\xf1\x0d\x05\xca\xe6\x73\xb6\xa5\x24\xf7\x8e\xd7\x55\x19\xd9\xc4\x2c\xa4\x2d\x95\xa9\xfa\x81\x47\x9d\x4e\xa8\x68\xaa\xbf\xfa\x45\xc5\x75\xbd\xac\x2f\x73\x7a\xb7\x5e\x5a\x5a\x6e\xc6\x69\x51\x58\x6e\x94\x12\x24\xd1\xaf\xeb\xa7\x7c\x0c\x8e\xba\x1a\x90\x37\x67\xd8\x52\x5d\x38\x26\x19\xe4\xee\x10\xde\x7d\xac\x79\x4b\x91\xe1\x97\x8e\x1b\x3c\x3d\x52\xba\xef\xa7\xeb\x6a\xd0\xac\x0e\x8b\xee\x72\x6e\xa7\x52\x3c\x76\xaf\x3b\x13\xbd\x60\x5f\xa0\x95\x1a\x8f\xfb\xce\xc8\x57\x18\x81\x49\x03\x8c\x39\x4b\xaf\x04\x57\xb6\xb7\xa5\xae\xac\x84\x03\x8c\x03\xb9\xb6\xf7\x51\x61\x9b\xbb\x59\x4b\xe2\x2a\xdb\xaf\xda\xb0\xa0\xa5\x4a\xba\x4f\x1b\xce\xfc\xe3\xb6\x72\x1b\xb9\xa6\xf5\xdb\x6d\x5e\xc6\xc5\x36\x8a\x4e\xe0\x91\x95\xdf\xa1\x27\x2f\xca\x18\xbe\x86\x14\x9a\x2c\x8b\x2c\xf2\x04\xf9\x5f\xa5\xa6\xf0\x50\x11\x00\x1f\x22\xda\xf0\xda\x7b\xae\xaf\xa4\xdc\x78\xaa\x0a\x31\x24\xdb\xaf\xae\x5c\x44\x9d\xf1\x7e\xd0\xe6\x72\x57\xf5\xfd\x3e\x1c\x4d\x0a\x38\x54\xdf\x2c\xba\xe4\xde\x0d\xef\xc4\x68\x42\x18\x62\x65\x79\xb2\xb9\x19\xa4\xa0\x9b\x34\xf7\x54\xbd\xf0\xb0\x08\x0c\xd3\xc5\x63\x73\x3f\x8e\x29\x86\xce\xc9\xef\x4c\x3a\xc7\x29\x7d\xb0\x01\x89\xc0\x68\x49\x8d\xab\x8a\x10\x76\x55\xa9\xff\x55\x6b\x2d\xd5\xea\xd0\x4f\x83\xf0\xe4\x9c\x92\x5b\x3c\x19\x28\x50\xe0\x8a\xba\xf5\x46\x4b\xb1\x94\xd9\xb1\x12\xa0\xf7\x47\xae\x87\x74\x2d\x85\x0d\xb0\xa3\x3f\x38\xcd\x39\x96\x27\x40\xcc\x36\x83\x76\x30\xf1\x27\x92\x09\xd5\x2f\xb3\x0e\x89\x7e\x7b\x5b\x95\x87\x23\xa5\x8b\x3f\xdd\xac\xf6\xd5\xaf\x36\xd7\xad\x89\x8b\x3e\xdc\x1c\xf1\xc2\xbf\x3d\xf2\x2f\xff\xdb\x2a\xb6\x7e\xd1\xb2\xea\x33\x42\x25\x86\x15\xf8\xc4\x01\x23\x1d\x1b\x1b\x44\x3b\xc2\xef\xf0\xfb\x17\x2a\x5f\xca\xca\x79\x51\xfe\x63\x0a\xc3\x5a\x3c\xd2\xb4\xaf\x99\x5e\x8f\x31\x13\x8c\x27\xa7\x69\xe5\xb5\x73\x03\x4f\xaa\xca\x52\x5e\x4d\x24\xf5\x45\xcb\x27\x40\x3d\xd6\xc0\x17\xf2\x5b\x0d\xd5\x07\x44\x15\x37\x0c\x58\x72\x93\x5e\xa0\xc8\x6f\x3a\x55\xbd\x32\x0f\xa1\xb2\xe3\x94\x06\xae\x2a\x82\xf7\xf4\xae\xb6\xb4\xd4\x0c\xfb\xb6\x9b\x2b\xe1\xba\x6b\xd8\x16\x84\x08\xa7\x8c\x10\xee\xb9\xe8\xa5\x6b\x06\x11\x37\xa6\x00\x00\xf8\x48\xa3\x01\x1f\xd5\x76\xcf\x95\xc3\x3c\x34\x31\xc8\x65\x0c\x21\x04\x1e\xb6\xfc\x78\x6a\x33\xf8\xea\x57\x9b\x69\x17\x06\x5b\x0d\x4f\x18\xf9\x03\xfa\x0c\x1f\x8f\x7e\xd2\x7b\x87\x27\x9d\xb2\xca\x85\x4c\x1c\xe5\x05\x78\xd5\xb8\x83\xef\x28\x5a\xdf\x77\x26\x78\x97\xfd\x28\x9c\xad\x96\x4b\xae\x67\x04\x4a\x30\xe0\xdd\x09\x39\xa9\x86\x13\x08\xb9\x3a\xfa\xe9\xed\x5d\x4f\xcb\x82\x6a\x12\x7b\x6f\x02\xb5\x15\xad\x92\x2f\x48\x4b\x6d\x12\xa6\x71\x6c\xda\x29\x86\x8e\x6e\x5d\x54\x15\xcc\x4b\xa3\x9f\xf0\x9c\x13\xb4\xec\x72\x53\x6a\xc3\xb5\xb7\xc3\x49\x90\x8f\xd5\xea\x39\xcc\xec\x20\x2a\x07\xa8\xe8\x29\xaa\x91\xc8\x23\x9e\xc0\x26\xe9\x64\x10\x5d\xef\x36\x22\x56\xec\xfe\x3b\x5b\x9f\x65\xdc\x97\xf7\x53\x47\x6b\x43\xb2\xb8\xf5\x43\x55\xff\xef\xd9\xa4\x8c\x12\x34\x1b\x62\xb9\xc6\x1b\xe6\x63\x5a\x16\x11\x86\x5c\x41\x3e\xc9\x27\x0e\x26\x1b\xf6\x6d\x92\x0e\x6c\x62\x74\x1b\xcf\x3d\x05\x29\xdf\xab\xd1\x51\xae\xe2\xcc\x61\x9a\x15\xf9\x9c\x87\x0e\x18\x73\x45\x75\x89\xdb\x6e\x84\x32\xad\x03\xf5\xb7\xb5\xbc\xce\x5f\x05\x9e\xc8\xda\xb5\x55\xd4\x8c\xc2\x32\xbb\x5c\x61\x89\x17\xcb\xab\x1a\xe3\x14\x54\x3f\xad\xb2\x9f\xfd\x11\x5d\x3a\x1f\xd7\x34\xb4\xbe\xd2\x1c\x44\xab\x56\x69\xec\x7d\x4f\x6b\xec\x7d\xaf\x6e\xb6\x42\xc3\x80\x5e\x69\x2d\xd1\x6d\xba\x25\x71\xc5\x1b\xc3\x36\x94\x60\xcc\x0d\x25\xff\x75\xc3\x31\x73\xc3\xa8\x10\xda\xb2\xd8\x89\x2b\xb5\xd9\x0b\x35\x57\x74\xb8\xb9\x96\x16\xcc\xc9\x74\x5a\x48\x5e\x91\xfd\xda\x44\xef\x7e\xc7\xbe\x66\xb1\xd6\x68\xfb\x1c\x2e\x1d\x8c\x94\x0b\xf2\xd9\x49\x6f\xd2\x92\x43\x7b\x2e\x39\xa9\x5a\xf6\x45\xb7\xbe\xf7\x3d\x7f\x4a\xd8\x37\xd5\x97\xf3\xb1\x2a\xf3\x0c\xfb\x51\x62\x0d\xa4\x3c\xf0\xbf\x77\x14\xd1\xff\xd8\x48\x0b\xd4\xe9\x40\x3d\x4c\x07\x73\xca\x0b\xf0\x8a\x62\xea\x1c\x9f\x54\x2e\x6d\x2c\x2c\x70\x5d\xf5\x36\x49\xab\xf0\xb1\x22\xc0\x98\xd8\xbe\x36\x53\xfd\x10\xb0\x12\x94\x4d\x14\xbe\x20\x08\xdc\xb9\x09\xea\x6f\x95\xe0\x57\xcb\x21\x3d\x28\x6c\xbf\x6c\x1e\xc8\x27\xc1\x7e\xf5\xd4\xb2\x17\xb4\x6a\x05\xf3\x7f\xf8\x44\xb7\xe5\x65\x36\x8c\xd2\x92\x0b\x20\x78\xaa\x57\x31\xa8\xb4\xef\x9b\x44\xf3\xbe\x7f\x84\x27\x99\x90\x31\xb7\x63\xbe\x87\x0e\x35\x37\x6c\x1c\xb3\xe5\x00\xd6\x1f\x94\x2c\xf8\x58\x91\x33\xd6\xcd\x9a\x53\x7a\x14\x25\xea\xc7\x90\xc0\xe0\x93\x5a\xfe\x6a\xde\x4f\x0b\xb4\x93\x3b\xd7\xa5\xea\xf5\x03\x2a\xe7\xb0\x46\x1a\xe9\x9c\xbc\x5c\xa7\x63\x3b\x7b\x15\x47\xf0\x9b\x14\xcc\x30\x72\xad\x38\xa9\xb0\xfa\x71\x22\x05\xae\x30\xc0\xe4\x72\x7c\x78\x96\x6a\xdd\xd2\x4c\x4e\xcf\x03\x39\xde\x66\xe0\xb5\xa7\xce\xa9\x4a\x2f\x23\x3d\x59\x3f\x4d\x3b\x30\xfb\x07\x10\x76\x8b\xe0\x0b\x3e\x56\x73\xa6\x9d\x59\xdb\xb1\x60\xf9\xe2\x26\xd9\xc8\x48\xab\x00\x21\x5a\x3b\xaf\x4a\x50\x5f\xfe\xa5\x5f\xfa\x6c\x24\xd3\xff\x59\xc7\x26\xfb\x3d\x9a\x7c\x8b\x80\x39\x54\xa7\x21\xc2\xba\x35\x06\x47\x83\xc5\x5b\xf0\x35\x08\xab\x51\xca\xa6\xbf\x6d\x1d\xa0\xa7\x80\x05\x96\x23\x06\x20\x0a\x73\x63\x4f\x63\x3e\x45\x99\x29\xc3\xdd\xef\xd1\x2c\x73\xea\x45\xfe\x81\x32\x40\x00\xa4\x71\x4e\x89\x95\xb7\xa3\xac\xe8\x77\xcc\xc6\xac\x32\x47\xba\xc0\xd4\x5b\x87\xa0\x54\xd7\x2a\x7a\x82\xbe\x39\x70\xba\x9d\x7d\x69\xa9\xf9\xb5\xd2\x64\x9c\x0b\xb2\x2f\x8b\xea\x46\x39\xa6\x1e\xe5\x8b\x4b\xcb\x33\xde\x80\xe1\x87\x23\xdf\x9b\x77\x0b\x81\x26\xc2\xeb\x4d\x6c\x09\x9c\xfc\x70\x7b\x01\xef\xdc\x33\xd5\x22\xc0\x85\x0a\xec\x7c\x98\x86\x0f\x09\xa3\x40\x44\x7e\x61\xa4\xf1\x96\xb8\x93\xae\x11\xa0\x51\xbd\x6a\xfc\xf1\x05\x24\x25\x7c\xa2\x40\xa1\xcc\x26\x76\x9d\x26\x4f\xf5\xe0\x35\xb8\x25\xcd\x30\x75\x82\xb8\xc3\x8e\xda\x12\x9c\x88\xa0\x77\xb9\x9e\x62\x50\xb8\xe2\x6d\x16\x15\x51\x28\xac\x4e\x2c\x05\xbf\x87\x97\x0e\x6e\xee\x6c\xcb\x63\xad\xbc\x98\x01\x4b\xbb\x3b\xb5\x46\xfc\xf5\x26\x3d\x25\x26\x75\x0a\x2a\xa4\x05\x3a\x6a\x34\x31\x5e\x6c\x0e\xcb\x38\x96\xb5\x5e\x79\xc2\x2f\xd6\x78\xc2\x87\x26\x8b\xda\x69\xa9\x01\x33\xb8\xd5\xf2\x71\xa0\x3b\xf8\xca\x4e\x94\x52\x0b\x1b\x16\xdf\xb7\x28\x2b\xc0\x3e\xb6\x43\x71\x86\x6e\xa3\x10\xc2\x62\x62\x6e\xef\x8c\xd3\x74\x35\xdf\xe3\x29\xc1\x8f\xb0\x75\x52\x19\xea\x9f\xfe\xb5\x96\x02\xdd\xee\x53\x77\x1e\xea\x5b\xd7\x54\xaf\xdb\xae\xb1\xb2\x09\xbf\x82\xfd\xd0\x79\xd3\x54\x2f\x5f\x5a\x50\x6a\x20\xd5\x61\x6c\x0d\xef\xdc\x88\x5b\x4f\xa9\x18\x76\x5a\x58\xfe\xf9\x66\x37\x2a\x38\x23\x73\xaa\x66\xca\x73\xaf\xae\x1b\x33\x8e\x2c\x7c\x80\x84\xb2\xd5\x70\x76\xf7\x7a\x3c\x9a\x3c\x47\x98\xe8\xd9\xf8\xd7\x74\x90\x72\xad\x0e\x65\xb0\x49\xcf\xf4\xd0\x49\xbb\xe8\x75\x48\xab\xab\x63\x2f\xdd\x91\x7a\xdb\x0f\x5c\x22\x32\x30\x49\x27\x85\x6e\x42\xad\x83\x5e\x8d\x29\x6e\x27\x22\x21\xbc\xbe\xb4\xed\x6a\xd5\x44\xc0\xca\x17\xb4\xad\xf3\xd5\xa9\x41\x5b\xa5\x64\xe5\x60\x10\x41\x7a\x01\xba\x54\x58\x6e\xf8\xb8\x0e\xd7\x4a\x6c\x41\x5a\x97\xf4\x19\xa5\x71\xe4\x04\x8f\x94\xc9\x61\xde\x4f\xd7\x9f\xf4\xed\x34\xdc\x04\x8e\x5b\xbf\xa1\x9f\x03\xf3\xff\x81\xcb\x7f\x6f\xa4\x0c\x64\x26\xc4\x43\xde\xa1\x9d\x0c\xf8\x20\x8a\xc2\x0c\xda\x91\xdf\x98\xe6\xac\xa3\x38\xf5\xff\x52\xa4\x8e\xf5\xea\x4f\x91\x31\xe0\x79\x9e\x56\xcb\xa2\x59\xdb\xc0\x2e\x2a\x7d\xf9\xd5\x77\x01\x19\x39\xeb\x3b\xca\xfe\xce\xd3\x2d\x95\x40\x9e\xa6\xad\x56\xb8\x64\x34\xbc\x45\x3c\x5b\x15\xd4\x0f\x50\x81\x13\x0c\x16\x72\x2e\x13\x75\xe3\xab\x4a\x66\xb8\xc8\x4c\x95\x1c\xa2\x4a\x2a\x4d\xde\x74\x3d\x58\x90\x40\x72\x72\x06\x18\xd5\x03\xe4\xff\x18\x79\x95\xab\x41\xfe\xc2\x13\x5e\xf5\x04\x43\x00\xbf\xbb\xb7\xa5\xf4\x1c\x4e\x8d\x26\xba\x29\x15\xab\x80\x36\x6d\xd1\x85\xa7\x2b\x75\x39\xb4\x57\x6a\xba\xc1\xa0\x93\x36\x77\x17\x87\x3a\x25\x3b\x5e\x64\xd6\x16\x73\xd5\x93\x9f\x20\x6c\x03\x2e\xda\x47\xaf\x0d\xe9\xfe\x29\xa5\x2d\xb5\x63\x5c\x6d\xd9\xd8\xb4\xae\xab\xb7\x63\xf3\x3e\x18\xcc\xe0\x1a\x3d\xd0\xa2\x5b\x70\x9c\x70\x8c\xc0\xea\x01\x22\x0d\xb8\xea\xcb\x36\xf3\x3f\xd9\xf2\xe5\x1c\x2d\x50\xd8\xb1\x26\xde\xa7\x86\xc4\x1d\xd5\x48\xc6\xc6\x7c\x48\xd5\x6e\x29\x13\xfb\x3d\x63\xef\x2a\x71\x8b\x06\x23\xa0\x65\xec\x14\x80\x2b\xff\x4c\x2b\x68\x5c\xa7\xf0\x00\x31\xc4\x79\xb4\x99\x0a\x77\x59\xd5\x0f\xae\x7f\xa6\xc3\x7c\xdb\x46\xaf\x3a\xf1\x64\x44\xe5\xf7\x14\x4c\xca\xb6\x40\xf8\xe1\x9d\xca\xb6\xa9\x9b\x96\xbd\x3e\x94\xa3\xd8\xaf\x59\x91\xf7\x36\xb5\x66\xe2\x35\x65\x26\x54\xac\x9b\xac\xda\xe4\xdd\xcc\xbe\xa5\x6a\x6e\x27\x46\xde\xb7\xf5\x9c\x72\x51\xec\x9a\x28\x06\xb1\x1b\xa0\xc9\xf7\x09\x5a\x14\xdc\x8d\xde\x0a\xff\x07\xa5\x13\xfc\x1f\xc1\xb3\xd3\xf8\xc3\x2f\xee\xf6\x0d\xd5\x05\x7d\x8b\x8c\x13\xba\x7d\xf1\x69\xf3\xf3\xfe\x4d\x65\xf2\xfe\x6f\x34\x9f\xe6\x23\xa5\x01\x74\x45\x49\x81\x64\x76\x60\xb2\x55\x12\x97\xa0\xa2\xb0\x50\x00\xe8\xc5\x08\x07\xe0\x80\xf2\xee\x8c\x63\xc2\x70\x9d\x54\x08\xd7\x56\x44\x5d\x48\xb9\x21\x5e\x55\x19\xc1\x05\x85\x1f\x0f\x6c\x9e\xc3\x44\xa0\x9a\x7a\xe2\xa7\xae\xbc\xd5\x9d\xe0\x90\xc9\xdb\x36\x2f\x52\xb8\xdf\x22\x85\xba\xab\x54\x4a\x2e\x7a\x4f\xbe\xb9\xa7\x5b\x7e\xe7\x67\x13\x29\x16\x9a\xd5\xf0\xd5\x0d\x45\xf4\xcb\x87\x99\x85\x87\x07\x57\xf3\xb4\x4e\xc3\x45\x15\x49\xbf\xf0\x37\xff\x73\x4a\xfc\x9d\x3e\xff\xc2\xa2\x1c\xd7\x30\x1e\x69\x89\xdf\xe5\xf7\xc7\x63\x00\x69\x9c\x94\xeb\xca\xbc\x63\x60\x4c\x8b\xe2\xe1\x6b\x4f\x05\xba\x71\xaf\x66\xc7\x69\x9b\xdc\x3a\xeb\x77\x0c\xe6\xff\x59\x29\x17\x5e\xd1\x7e\x4a\x97\xa7\xe2\x83\x43\x87\x9a\xed\x04\x75\x64\x34\xa1\x9d\xd6\x42\x28\xa7\x3f\xd3\x17\xaa\x9d\xae\xbb\xa8\xd2\x75\xb7\x2c\xf9\x35\xcd\x87\x09\xd1\x60\x68\xb3\xc8\xc4\x1c\x48\x22\x91\x86\x03\x33\x32\xf1\xdb\x1a\xc7\x6d\x8c\x95\xf5\xd1\xdb\x53\x01\xd0\xcb\x2b\xf3\xcd\x8e\xb5\x43\xa2\x92\x88\x19\x65\xe3\xd0\xa1\x2d\x40\xd5\x78\x64\x9f\x3a\x95\xf6\x7e\x54\x30\x7d\x04\x3b\x0b\x3b\xf2\x4c\x14\xf8\x51\xb6\x69\xb4\xfc\x5c\x99\x43\x78\x26\x3b\x6c\x8d\x7b\x51\x73\x90\x16\x7d\xce\xd6\x80\x24\x3e\x40\xb6\x86\x9f\xc1\x9b\x15\xd7\xab\x9a\x61\x31\x28\xc3\x3e\xbd\x2f\x6c\x23\xb7\xd1\x58\x29\x9e\x01\xd5\x87\x11\x62\xbc\x37\x15\x62\x10\x8d\x80\x0c\x67\x39\x08\xd4\xc0\x02\x1f\x2b\x2c\xa1\x13\xe5\xd4\x19\xd5\xd9\x4d\x7f\x0c\x34\xe6\x11\x1e\xb8\xdb\xd0\x1d\x4c\xf3\x88\x94\x67\x30\x54\x6e\x8d\x26\x24\xdb\xaa\x6b\xe2\xe3\xc0\x4f\x93\x9d\x2d\xe7\x85\x10\xb5\x35\xf6\x24\x3e\xab\x9e\x5f\x75\x75\x24\xf0\x68\xf8\xba\x0d\xfb\x69\x1e\xa7\x6b\x66\x35\x02\x11\x47\x84\xb6\xb4\xda\xa9\xb3\x56\xec\x66\x26\x09\xfb\x51\x6e\xc1\xd4\xc0\x9e\x00\x51\x18\xf0\x99\xef\x8e\xbc\xf0\xc0\xa5\x09\xcd\xd2\xb8\x13\xb9\x72\xb1\x5b\x87\x16\xbc\xc4\xa6\x47\x47\x06\x51\x92\x66\x51\xc1\xaa\x73\xee\xae\x9d\x70\x86\xde\x07\xaa\x45\x92\xdb\xea\xd8\xb9\x4f\x33\x8d\xaf\xd5\xb9\x48\x66\x51\xbe\x0a\x9a\x35\x52\x70\x2c\x71\x92\x82\x37\x94\xab\xd5\xd3\x6a\x0b\x5e\x33\x71\x69\xb9\x18\xcf\xbc\xa9\x09\x23\xb2\x29\x69\xae\xc5\xe6\xe2\x91\x03\xd5\x0d\xe2\xc1\xbc\x87\xa0\x0e\x5b\xc6\x71\x7a\x6f\xbc\x09\x6b\x69\xeb\xef\xe8\x9a\xf5\x1f\x62\x85\x42\x71\xe3\x31\x62\x1d\x21\x5c\x57\x1b\x3a\x26\x26\xe0\x21\x24\x46\xa7\x14\x6c\xf4\x3d\xed\x79\xfb\x9d\x09\x1d\x36\x4a\x81\xb1\xbb\x1d\xa7\xf7\xc5\x5e\xdc\x13\x92\xe0\xf4\x18\xf9\xda\xa7\x3a\x5e\x0e\x1d\x6a\xc6\xa9\xf4\xa9\x61\x31\x01\xf2\x7e\x5a\x33\xa9\x4f\xd7\x55\xf4\x21\x1c\xe1\x59\x6a\x1f\x7a\x50\x63\xfc\xa1\x72\xd9\x64\xce\xb9\x68\x7c\x4a\x9c\x4f\x97\x25\x09\x80\x38\xad\xe6\x43\x93\x85\x79\x61\x1c\xdd\x13\xe3\xf6\x86\x1e\xc4\x37\x54\xb7\x8b\x09\x89\x45\x93\xef\xf6\x86\xdb\x90\x25\x74\xea\x1d\xde\x46\x6c\x53\xeb\x25\x9e\x9a\x68\x6e\xa5\xfd\x1d\x2b\xc5\x5b\x9a\x8d\xb8\xb3\xb5\xdf\xb7\xa5\x3b\x7f\x54\x19\x6d\xf4\xdd\x7c\xa2\x02\xe3\x0d\x5b\xcc\x2a\xa1\x34\xac\x05\x88\x66\x1f\xa8\xe6\x7e\x4e\x46\x24\x95\xae\x41\x00\xf3\xb4\x8c\xb9\xd4\x21\xa6\x6f\xaa\x9b\xf2\x62\x9d\x2d\x62\xc7\x86\xd5\xb6\x35\xe1\x0a\xf0\x08\x43\x11\xe9\x05\xcb\x5b\xc8\x2a\x5f\x27\x1b\x54\x86\xfd\x59\x95\x9c\x29\x63\xf6\x4f\x26\x37\xd4\x86\x73\x5b\x99\x69\x79\xc1\xbc\x6e\x5a\x26\x1d\xff\x02\xb1\x18\xbf\x87\x19\xc0\x27\x53\x75\xc1\x95\xf9\xa6\x4d\xc2\xb4\xcc\xc8\x5b\x0e\x73\x13\x71\x23\xe4\xcd\xf9\xb8\xd5\xfc\x8c\x8d\x73\x3d\x2a\x12\x9b\x3b\x9b\x2d\x91\xcc\x50\x81\xea\x95\xa9\xe2\xe0\xca\xfc\x4a\xb3\x93\xae\x27\xeb\x26\xc3\x33\xc6\xe8\x3a\x4b\x8b\x08\x1f\xd7\x59\xca\x65\x06\xa0\xac\x53\x1e\x5a\xf2\xea\x16\xdb\x33\x66\xb2\x18\x68\xc7\x76\x90\x76\x6c\xac\x04\xe1\xbf\x41\xe3\x40\x68\xeb\xb2\x86\x47\x59\x66\x7b\x65\x6c\xd0\x0a\xab\x6c\x8e\xce\x8d\x26\xb4\x50\x6a\x10\xa9\x76\x96\x9a\x0e\x49\xb8\x55\x51\x25\xdb\xe6\x29\x4d\xd5\xd3\x0a\x20\xcb\xcb\x36\xd9\x4d\x20\x34\x73\x5e\x9f\xcb\xfe\x64\x2a\x35\x38\x3a\xff\x0a\xed\x7a\xd5\x5c\x73\xa9\x01\x86\xf7\x75\x25\x39\xf2\x58\xa9\xaf\x5d\x54\x31\x6d\x94\xe4\x85\x35\x9d\x3d\x13\x69\x35\x16\x1b\xe4\x72\x8f\x02\x85\xa4\xfd\xdf\xca\xa6\x15\x7c\x5d\x14\x20\x3f\x37\x56\x4a\xce\x17\x03\x95\xcb\x80\x89\x02\x02\x8d\x4e\xe4\x5e\x38\xf8\x02\xa1\xc4\x78\xd0\x57\xb4\x0a\xff\x95\x09\x0e\x67\x92\xd8\x59\x5f\x12\x66\xd1\x6c\x76\xf9\x0e\x54\x3b\xf3\x27\x98\xb3\xe2\xff\x2d\x9b\xe9\xd0\x66\x83\xa8\xf0\x4f\x06\x8b\xe6\xbd\xc0\x77\x10\xa2\xc9\x46\x0c\x1b\x14\x63\x23\x1d\x0c\x6c\x52\xcc\x4e\x34\x0c\x78\xb8\xfa\xdc\xc8\xef\x68\x3f\xa4\x5c\x88\x8f\x3d\x15\xae\x6c\x17\xb1\x25\x8c\xd5\x85\x1e\xdb\x3a\xad\x80\x32\xfe\x78\xa4\xd5\x3d\x3b\xbc\xae\x38\x37\x33\xaf\x05\x79\x4d\x19\x9f\xb5\x6d\x2f\x4a\x9e\x24\xe8\x59\xea\x0e\x4a\x7b\xe1\x36\x3e\x86\x58\x8f\x19\xb2\xc0\xe5\xae\x63\xea\x89\x74\x3f\x3d\x41\x64\x92\x3b\xc6\x8d\xaf\x2c\xfa\x82\x06\xe9\x55\x61\x24\x20\x35\x81\xfe\x21\x8b\xcd\x06\x8d\x2f\xfd\x2a\x47\x51\xa0\xcd\x70\xbd\xd5\xd5\x3c\x7b\xa6\x8a\x18\x89\xfc\xe6\xea\x71\xbb\x11\x8e\x2a\x56\xe6\x8b\x5c\xf2\x7e\x5c\x17\x35\x76\x33\x8b\x28\x1f\x45\xcd\xef\xd3\xef\x23\xe4\x3d\xa7\x6b\x12\x57\xeb\xfc\xbd\x4d\x9e\x5b\x61\x6f\x3a\x3f\xd6\xea\x66\xa5\x9d\xa8\x0e\xfe\x1a\x56\xcf\x5f\x2d\x06\x27\xd4\x62\x70\x62\xe4\x2d\xeb\x94\x56\x4f\x43\xf5\xdd\x1e\x53\xbd\xb6\xc7\x54\x12\xb5\x68\x36\x66\x74\xd3\x25\x1a\x50\x11\x3e\x9d\xd2\x2a\x56\xb7\x14\x73\x70\x58\x2d\xd6\xbb\xe9\x19\xb9\x51\xb6\xb4\xa4\xad\x1e\x16\x9d\x00\x04\xa5\x3c\x78\x18\x37\x00\x89\xf0\x49\xa0\xc0\x92\xcb\x0a\x1f\x39\xed\xa2\xcd\x41\x94\x4f\x18\x29\x62\x89\x80\x8e\x38\xde\x0d\x8c\x14\x91\x20\xcd\x8e\xf7\x6b\xed\x43\xbb\xaf\xe1\x4c\xce\x37\x29\x9f\x17\xa9\x4c\xba\x08\xac\x59\x67\x51\xbf\x10\x57\x90\xea\x11\x21\x9a\x26\x53\x10\x06\x82\x66\x5a\x28\x79\x60\x18\x6d\x51\x73\x02\x4b\x62\x60\x28\x6b\x2a\x0a\x18\x00\x1c\x79\xb0\xf6\xaa\xb7\x55\x24\xa3\xae\xdd\xf4\x7f\x78\x15\x77\x27\x84\xc0\x3d\x18\xb6\xbb\xa5\x4b\xa2\x2a\x7e\x00\xd0\x87\xbd\x94\xe5\x66\xe4\xaf\x14\x85\xd7\xb4\x6d\xcc\xbb\xb9\x73\x4b\xa8\xbe\x03\x7f\x7a\x17\x8f\x5e\xee\xc1\x7f\xae\x5f\x0e\x4c\x62\x80\x50\x83\xde\xcd\xc0\x01\x9f\x8c\x7e\x6e\x3a\xdc\xc8\x6c\x98\x26\x79\x44\x0d\x4d\xb2\x7b\x8b\x1d\xbf\xa2\x58\x69\xd6\xb6\x09\xc3\x72\x50\xc6\x60\x64\x38\x73\xaf\x3f\x52\xc4\xc0\x3f\x72\xfd\x94\x99\x0d\x8b\xa8\x0a\x4e\x0c\x2b\x4a\x08\xc3\xbb\xe1\x6c\x6a\x4e\xb8\xb6\xa1\xa2\x1c\xb4\x63\x69\x4e\xc7\xc2\xc6\x6d\xb2\x7c\xa2\xba\x04\x4d\x94\xed\xf2\xb5\x97\x6f\x61\x02\x4a\xb9\x4e\x75\x64\xff\xe3\x40\xbd\x4a\x31\x33\xc2\x7f\xed\x54\x89\xea\x03\x27\x45\x34\x28\x93\x28\x8c\x86\x26\xde\x4d\xed\xdb\x62\xde\x59\xfd\x16\xe4\xa2\x3f\x0f\x7c\x16\x4b\x3c\x8f\x14\xd1\x52\xf6\x8e\xd8\xc7\x47\xbe\xad\x68\xe7\x98\xea\xb2\x52\x6a\xf9\x9c\xaf\xab\x66\x36\xcf\x91\x4f\x0a\x1f\xb0\xfa\x06\x70\x0e\x8f\x07\xbe\xca\x7a\x41\xa9\xa6\x3d\x0e\x94\x62\xf0\xa6\xd2\x48\x43\xc3\x37\x13\x2e\xeb\x0a\x1e\xf6\xb5\x28\xe7\x68\x16\x20\x0e\xe8\x85\x7c\x8c\x87\xcb\xeb\x4a\x30\xd7\x78\xee\x39\x67\x36\xdb\xf8\x5b\xbf\xcc\x53\xf1\x16\x4a\xcc\xda\x78\x48\xea\x7f\xf4\x20\x44\x0d\x47\x60\x83\xdc\xc4\x85\x36\x77\xfb\xf1\xc8\x57\x43\xae\xa8\x6a\x08\x6f\xd3\xfc\x47\x4a\x8b\x21\x8d\x30\x13\x5e\xf4\x76\xc8\xce\xb3\x10\x81\xb5\x34\x77\x3f\xa9\x28\xf0\xc8\x6f\x85\x8f\x0e\xbd\x64\xc5\xea\xfa\x1d\xed\x08\x61\x63\xe8\x89\xb3\x90\xdf\x44\x79\x58\x35\x56\xef\x68\x1d\x98\x74\x9b\x0e\x0b\x0a\xa5\x1c\xca\x5a\xdd\xa4\x20\x9d\xcf\x38\x7a\x4e\x14\x47\xc3\x21\x82\x73\x6f\xe3\x31\xc3\xde\xfc\x78\x5a\x07\x30\xa0\x90\xdc\x3f\x70\xc3\x03\xed\x06\x39\x31\x93\xb6\xb6\x30\xc0\x31\xff\xaf\xf3\x30\xc6\x13\x69\xb4\x54\x09\xeb\xe1\x44\xf7\xb3\x6f\xb3\x1e\x54\xa1\x8a\x05\xab\x5d\x20\x9c\x37\x47\x4a\xde\x8c\x6f\x00\x57\xc4\x0d\xde\x18\x6f\xd3\x1e\x5a\xc4\x20\x32\x79\xbf\x31\xb9\xf3\xa8\x32\xd2\x69\x95\xad\xf5\xd2\x35\x9b\x25\x1c\x7a\x60\xd1\xfa\x50\xe9\x12\x7d\xe8\x66\x1e\x25\xe9\xa6\x10\xd6\xa3\x84\xda\x74\x5d\x12\x6b\x6f\x0f\xcd\x8f\xbc\xd4\x1c\x9a\xac\xe1\x9b\x02\x66\xc6\x7e\xa6\xcc\xb4\xb6\xa5\xf5\x2b\xf3\xcd\xa5\xa5\xc3\x4f\xd1\x6d\x63\x73\xd8\xd3\x9a\xa4\x2c\xfb\x40\x6e\x0f\x34\xa6\x58\xcf\x8c\x32\x76\xd9\x74\x3c\x07\x61\x67\xcb\xcb\x05\x7f\x07\xb8\x15\x72\x48\x64\x30\xc8\x47\x77\x8d\x5d\x18\xf8\xcb\x4f\x8f\xd5\xe2\x76\xa0\x55\x0d\x20\xc4\x2c\xef\x28\xf9\xb2\xbf\xd2\x9a\x07\xff\x0a\x2b\x20\x26\xe9\xcc\x78\xc2\xb7\x30\x31\x88\x21\xb1\x9f\x20\xf0\xe3\x63\xda\x91\x11\x7d\x9d\x57\xda\x37\xe7\x55\xec\xb0\x6e\x36\x9e\xf5\xf4\xda\x47\x54\x40\x90\xda\xa9\x2f\x67\x3d\xa2\xea\x03\x70\x12\x2e\xc9\xe2\x8a\x9f\x80\x4a\x38\x24\xf4\x58\x27\x01\x9b\x1c\xd3\xeb\xc5\x82\xa3\xba\x31\xec\x5c\xe7\x08\x15\xc3\xa3\x63\x0e\x83\x53\xb9\xf0\x9d\x4b\xe7\x74\xf7\xfb\xfd\x40\x37\xc6\xa3\x33\x17\x9f\x79\x8b\xf0\x27\xe7\x2c\xf4\xb7\x7e\x99\x07\x2f\x4a\x66\x14\x58\xfe\xdd\x9f\xd7\x66\x0b\x57\x47\xdb\x9d\x67\x9e\x6f\x0e\xcd\x0b\xc0\xa9\xa4\x15\x4c\x35\xd0\x5d\x55\xcb\xd0\x50\x50\x0f\x8c\x87\xbb\x23\xdf\xd6\x78\xd7\x71\x49\x33\xdb\x2e\x0b\xd7\x16\x8c\x77\xf9\x30\x50\x45\x9a\x87\x6a\xdd\x69\xa7\x83\x36\x7d\xa3\xc3\x84\x5c\xcf\xf4\xb4\x74\xd5\xf2\xca\x72\x73\x35\x21\xc1\x36\xba\x21\x27\xf6\xe3\xfb\x58\xae\x68\x81\x1f\x53\xcc\x7a\x92\xca\x0f\x02\xdf\xdf\xb6\x7b\xac\x68\x7e\x7b\x5a\xaa\x68\xf2\x76\xad\x35\x71\x6e\xb3\x28\x2d\xf3\x98\xd1\x3c\x89\x55\xaa\x27\x2c\xee\xf7\x3e\xfe\x88\x06\x43\x13\x16\x7b\xfc\x62\x0a\xdb\x68\x7c\x3f\x03\xc6\x88\xc2\xee\x29\x71\xc1\x4f\x03\xaf\x53\x02\x8b\x54\x6c\xcf\xff\x8a\x66\x04\xf2\x98\xad\xc0\xfb\xe0\x3e\x56\x59\x6d\x91\x99\x0e\x55\x5a\x26\x14\x20\xd4\x20\xd1\xfd\x9a\x85\x8d\x21\x47\xea\x71\x8e\x53\x1a\x90\x3a\xa5\x42\x64\xd2\x35\xc0\x3d\x6b\x91\x4d\xf1\x7d\xdb\x3e\x90\x0e\x56\x4f\x6a\x46\x31\x23\xd1\x24\x24\x8a\x11\xd5\xcc\xc2\x62\x7d\x4f\xcd\xbf\x41\x9a\xcd\x29\xf3\xd9\xbb\xca\x84\x1d\xe5\x18\xc7\xe6\xaf\xd6\x15\x47\xa1\x5f\xe2\x7c\x70\xe6\x69\x55\x86\x1b\xa6\x71\x14\xda\x3d\xf4\x97\x80\xb4\x4e\x4d\xd4\x8c\x46\x93\xc0\xad\xe3\x58\x3e\xc6\x10\x42\xb1\xf9\x87\xa0\x4c\xf0\xe7\x31\xa3\xf9\x7f\x94\x7a\xe9\x63\x25\xb5\x3c\x34\xf1\xe0\x3f\x94\xa7\xfd\x32\x14\xf2\x3a\x7e\xc5\x67\x25\x24\x5c\xb8\xc8\x22\xd5\xe8\xca\x9a\xce\xab\x65\x5e\x08\xf5\x81\xfd\x47\x70\xb9\x08\xbf\xef\x29\x13\xc7\x69\x73\xeb\xc5\x23\x55\xf4\xb8\x6e\xd6\x04\x39\xe2\x9c\x81\x1e\x8b\xe4\x0f\x5a\x2d\x0b\xd6\xd6\x48\x5f\x67\x5a\x13\xcb\x56\xf5\x66\x25\x07\xf4\x64\xe3\x13\xd8\xad\x45\x77\x5c\x51\x73\x4f\x07\xe2\x2d\x94\xa7\xc3\x7e\x94\x17\x51\x58\xc5\xd1\x94\x8b\x12\x66\xf5\xeb\x3f\xdb\x52\x54\x0a\x42\x3f\xb8\x14\x14\x1e\x18\xeb\x08\x24\xb6\xd4\xd5\xa6\x94\x82\x28\xb3\x91\x0b\xab\xc9\x5b\x3b\x36\x8c\x9c\x53\x98\x2c\xee\x4a\x12\xe7\x91\x03\x64\xcd\x70\x98\x46\x49\x41\x2a\x0f\x0d\xd5\x3d\xf8\xb1\xee\xa8\xfd\xb8\x46\x58\xf8\xc5\xe6\x7a\x9f\x1c\x30\x0e\x3a\x49\xbe\x91\x2f\xbd\x5f\xad\x95\xd7\xb3\x83\x61\xdf\xe4\xd1\xeb\xd2\xf6\x26\x61\xb2\xa6\x27\x29\xa3\x9a\x57\x4d\x3f\xa1\xfd\x1e\x81\x23\x2b\xe4\xf0\x89\xf2\x64\xef\x46\x19\xe7\x27\xd8\xf9\xde\x0e\xfc\x2e\xf8\xb6\xf6\x0f\x8c\x3a\xf9\xac\x42\xdd\xb0\xdd\x82\x72\x37\xa9\x40\x4c\x17\xc4\xff\xe1\x42\x2b\x82\xad\xab\xd7\x08\x32\x35\xc8\xce\xd0\xf0\x75\x1e\x3d\x4b\xce\xe8\xee\x19\x0e\xfc\xb0\xf2\x3d\x85\xf5\x17\xf7\x38\xdb\x3a\xa0\xd8\x70\x6b\x36\x29\xed\x3e\x35\xa4\x2f\x63\x6e\x4a\x8b\x3f\x41\x03\x08\x66\xd1\xf9\x88\x2d\x4b\x3b\xde\xed\x1c\xfb\x72\xe7\x43\x25\xdb\x75\x7f\xa2\xc0\xa5\xaa\x17\x9c\x37\x21\x35\xe7\x5e\x64\x31\xa2\xfd\xbc\x76\x03\x24\x17\xe0\xc8\xc4\xe4\x86\xad\xfd\x5a\xa4\x16\xdf\x70\xbd\xd9\x9f\x62\x0d\x10\xd3\xeb\x6a\x84\x22\x76\x3f\xae\x89\xa7\x17\xa6\x2a\x14\x07\x97\x9a\x05\x89\x5a\xa5\xc9\xc6\x4c\xe3\xcb\x2f\x6f\xa1\xb4\x83\xd5\x68\x53\x69\x02\x8d\x5d\x0b\x72\x11\x15\xb1\xed\xcc\xf9\xb8\x8b\xf5\x16\x44\x0d\x8d\x2e\x04\x18\xc5\x4e\x4c\x2b\xa4\xc5\x07\x5a\x8d\x5f\x39\xcc\x3b\xef\x49\xc5\x97\x59\x8f\x48\xcb\x9d\xcc\x89\x51\x48\x01\x91\xc5\x15\x26\x0f\x1d\xe2\xe0\xe7\xb4\xb2\x74\xdb\x0a\x54\x54\x74\x1a\x2f\x8d\xfb\x30\xf1\x44\xa5\x29\xb3\x26\x3f\x33\x65\x31\xd1\x6b\xc7\x43\x47\x24\x7e\x7c\x89\x2d\x1d\x0e\xd3\x84\xbc\xb4\x16\x8f\xf0\xc2\x7b\x1e\x65\x76\x3e\x51\xbb\x8c\x89\xbb\x07\x94\x76\xf5\x16\xd5\xd9\xc1\xc6\x7c\x80\x65\xca\x51\x59\x16\x8f\x30\x2f\xf7\x27\xb0\x57\x23\x35\xde\x3d\xf6\x1c\x82\xb3\xb4\x27\xb3\x07\xd0\xd8\x83\xa7\x4f\xb4\xe8\xae\x29\x12\xf9\x6f\xbe\xd0\xd2\xce\x1e\xf4\x9c\xd0\x71\xc6\x1b\x82\x0b\xf9\x96\x57\x96\x5d\xe1\x0e\x18\x8d\x03\x5c\x7d\xeb\xe0\xae\xb1\x42\xb1\xce\x2a\xa3\x81\xb4\xdb\xcd\x2d\xe4\xac\xf0\x25\x37\xfc\xde\xf8\x3f\xde\x70\x68\x21\x8a\xe6\x69\x09\xf6\x3a\x27\x50\xf4\xc2\x74\x91\x58\xbc\xe4\x85\x99\xd8\xb6\x42\x75\x15\xc9\x6e\xa5\x6f\x77\x41\xc9\xcc\xe4\x65\xb6\x16\xad\xc1\x9f\x4e\x99\x17\xf9\x89\x31\xb5\x4a\xae\xcc\x37\x6d\x84\x9a\xf7\xc2\x82\xdf\x3c\x16\x8f\x28\xc3\xfd\x79\x61\xc9\x4f\xd1\xf1\x48\xd3\xb9\xcc\xb2\xb4\x67\xb8\x71\xc2\xf5\xdc\x1d\x3a\x24\xc7\xc1\x17\x94\x4e\x56\xb2\x06\xa9\x54\x13\xcf\x4c\xe0\x4d\xd5\xdf\x63\x3a\x3c\xd1\xf2\x40\x6a\x63\xbc\xd7\xa5\xee\xca\xb2\x9c\xef\x1f\xb9\x3e\x92\x4c\x41\x9e\x95\xa4\xb0\x49\x36\x52\x2c\xce\x98\xfd\xbf\xad\x74\xfe\x7f\x5b\x6d\xa9\x79\x34\xc4\xce\x2b\xea\x45\x0d\xe7\x45\x71\x42\x35\x51\x9b\xb0\x88\xd6\xa2\xbc\x40\xff\x03\x22\xc1\x07\xca\x06\x16\xaf\x4e\x5c\x38\x6b\xda\xce\x12\x5b\x66\x69\x9c\xf6\x22\x0e\xfa\xb0\x22\x7f\x42\x5f\xc1\xc7\x8a\x52\xff\xb5\x92\xb4\xf7\x31\x50\xb0\xff\x9e\x0c\x54\xe3\xc0\x29\xe5\x89\xf7\x5b\xaa\x88\x6d\x7a\x99\xad\x16\x9e\xc5\x23\xaa\xc6\xbf\xec\x70\x91\x86\x93\x94\x01\x8d\x0c\x53\x0c\xe2\x89\x4c\xf6\x6a\xc9\xc6\x6b\x5f\x1b\x9a\x24\x57\x75\x53\x41\x4a\x68\x74\x09\x54\xe2\xf0\x32\x93\xe7\x36\xe6\x20\x46\x24\x53\x35\x1d\x7f\xbf\x6a\x24\x09\x5f\xd8\xab\xda\xab\x7f\xf6\xf3\x2d\xe5\x2a\x72\x0b\x82\x0b\x42\x93\xf1\x2c\xba\x3f\x78\xba\xe5\x11\x3e\xc4\xb4\x18\xa4\x7b\x28\xbf\xc5\xe6\x00\x0b\x76\xe7\x2d\xe6\xed\xc3\x1e\xbb\x2b\x1d\x66\x76\x68\x58\x52\x0c\x03\x6a\x2f\xed\x4e\x7c\x3c\x65\xa5\x41\x06\x36\xa1\x8d\xd6\xac\xd6\xa1\xbd\xaa\x14\x1d\xae\x7e\x26\xdb\x3a\x2f\x32\x93\xf4\xac\x52\x69\x38\xa1\xba\x0c\x01\xfa\xc9\xda\x44\x8f\x55\x5a\x7c\x6b\x0d\x08\x7b\x59\xd4\x71\x41\x53\x9d\x85\x9e\x5a\x0a\x4c\x3b\x2d\x4c\x4f\xfb\xb8\x9d\x0e\x7c\x5b\xdd\xb4\x5d\xcb\xc2\x42\xb3\x2b\x41\x8a\x52\x7b\xf4\x01\xdd\x74\x0f\xfe\x8b\x4d\x69\x0f\x71\x72\x52\x5e\x5a\xaa\xce\x07\xa8\x4c\xe2\xd4\x78\x43\x7a\x31\xad\xf2\x85\xa9\x8b\x8e\x16\x06\xa0\x26\xcd\xf4\x32\xf1\x9e\x72\x2f\xd9\xdd\xf2\x49\xdb\xec\xb8\x4e\xa4\x3e\xec\x9b\x24\xb4\xd9\x06\x03\x43\x88\x43\x7e\x1d\xf7\xc4\x27\x2a\x5d\xcc\xd3\x90\x82\x88\xa3\x6e\x4e\x28\xbd\xda\x6f\x8e\xfc\xe2\x0b\xc7\x33\xbf\x12\x57\x7b\xaa\x76\x55\x40\xfe\xf4\x2f\xeb\x48\xc4\xe4\x1f\x99\x70\x3f\xa4\x13\x54\x50\x6c\xf9\xc0\x4b\xd0\xaf\x9b\xcc\x3f\x28\xa9\x1e\xfa\x2a\xcd\xb4\x70\xe8\xa1\x43\x2b\x4d\x1b\xc6\x36\x94\xee\x7b\xcc\x07\x28\xaf\xf0\xb1\x82\xac\x37\xd2\xf2\xe9\xc6\x57\x16\xf9\xd2\xff\x5e\xe0\xcb\x77\xef\x60\x63\x94\x18\x8e\x6e\x50\x9a\x0a\x54\xd3\xf3\x1d\xcc\x4c\x44\xeb\x8d\xb1\x0f\xac\x1f\x60\x20\x23\x86\xd9\xa2\x40\x17\xe0\xcb\x2d\x60\xc5\x98\xb3\xcf\x40\x02\x01\xaf\xfd\xcf\xd5\xba\xf4\x6b\x28\xc4\xb2\x62\x13\xcd\x66\xa9\x85\x55\x0b\x19\x37\x78\xd2\xe2\x85\xab\xfa\x64\xa4\x24\x69\xaf\xf9\xa6\xe5\xb4\x28\x5c\x39\xda\x69\x61\x1e\x3a\x24\xc7\x6a\xab\xe8\x66\x25\x93\xe9\x65\xe1\xe7\x48\x91\x4f\x94\x44\x6a\x98\x0e\x06\x65\x12\xe5\xe0\xac\xe3\x8a\x6f\x01\x2f\xe2\x13\xed\xaa\x43\x46\x12\xf9\xd3\xf4\x5d\x78\x6a\x8d\x96\x32\xd5\x63\xcd\x03\xe7\x5d\x7e\x54\xba\x15\x44\x82\x8a\xfd\x56\x03\x9f\x40\x7e\x42\x2b\x35\xfb\x05\x8c\xbc\xc7\xe0\x6d\xd5\x0e\xb8\x35\x52\x18\xec\x7d\xbc\x40\x5c\xdc\x8f\x81\x85\x89\x2d\x4d\xf5\x3c\x11\x1b\x6e\x61\x4d\xc7\x76\xf2\xf7\x03\x4f\x65\xdd\x0c\x14\x2d\xfa\x3e\x5e\xb9\xb8\xc0\xd6\x44\x03\xd5\x12\x65\x92\x4e\x9e\x26\x54\x0f\x76\x16\xef\xce\xf2\xe6\x91\xb2\x8c\x3a\xaf\x19\x01\x34\xfd\xe4\xb9\xe2\xa2\x8e\xd3\xa0\xe4\xe3\x29\x1a\xff\x91\x97\xa8\x70\xca\x6d\xcc\x82\x7a\x7a\xbe\xc1\x64\xb3\x70\xd8\x4f\x1b\xda\xa4\xe5\x6e\xa0\xa8\x5d\x77\xa7\x90\xdc\x85\x85\x66\x5a\x16\x33\xd5\x03\xc2\xae\x88\x67\xed\xc4\x6e\x1c\x1d\x7a\x2b\xf8\x89\xed\x64\xad\x57\xe8\x41\xcc\x2a\x9b\xa7\x3f\x52\x80\xd1\x35\x15\xed\xfd\x11\x7d\x91\x2c\xb6\x2a\x74\x49\xe3\x9c\x43\x17\x8c\xea\xb7\x46\x8a\xdf\xf8\xd6\x54\x19\xf8\xe0\x52\xb3\x5f\x26\x3d\xd9\xa6\x9d\x1f\xb5\x67\x5d\xe9\x76\xf6\xbc\x30\x31\x96\x20\x2c\x6e\x6f\xa9\xb8\xe8\x2d\x95\x72\x7c\xad\x4c\x8b\x2c\x4d\x66\x15\xe5\xe1\x0d\xad\x1c\x2a\x7a\xd9\x8e\x93\xed\xed\xaf\xdf\x98\x68\xbc\x4c\x0a\x33\xa7\x20\x88\x19\xea\x36\x73\x72\x80\xbe\xe9\xe1\x3e\x4d\x70\x91\x06\x54\xb2\x04\x97\x34\xc8\x93\xa6\x52\x83\xd1\x58\x18\x90\x92\x86\xa2\xd9\xdf\x56\xb6\x28\xa6\x67\xa2\x64\x5f\x35\xaa\xb1\x7c\xec\x18\xab\x2a\xd0\x59\x7a\xb5\xc0\x4a\x7e\x44\xd0\x2d\xff\x51\xcb\xbf\x9d\xeb\x81\xc2\x29\xee\x60\x1d\x43\x12\xf0\x21\x2d\x5d\xfc\x1f\x34\x85\x99\x2d\x40\xb3\x4b\x7a\xc3\x1a\xce\x22\x56\x3b\x2a\x0e\xd2\x8e\xcd\x8b\x78\xa3\x41\x53\x14\x6b\x02\x13\x4e\xf9\x44\x33\x49\xfe\x03\x14\x44\xf4\x5b\x48\x0b\xfb\xa4\xd2\xb4\x7e\xa8\x3b\xbb\xce\x10\x7a\x8d\x7c\xf6\x0e\x5e\xa4\xb4\xff\x52\x5e\x24\x4c\x86\xea\x81\x20\xaa\xbf\x84\xd2\x1b\x76\x8c\xb9\x96\x07\xe4\x3e\xd7\xf2\x42\x23\x17\xb9\x34\x04\x9c\xe3\x4f\x69\x61\xe7\xdc\x19\xef\xe8\xae\xa2\xb4\xf6\xcd\x70\xe8\x64\x12\x5e\xf1\xd5\x65\xdf\x44\x7a\x57\x79\xa2\xf6\x4a\x93\x99\xa4\xb0\x16\x86\xf0\xa8\x33\x9c\xc5\x34\xe1\x93\xa9\x1d\x72\xf9\xa5\xc3\xcd\x6e\xb4\x66\x37\x2c\x2b\x2c\x30\x74\xaf\x02\xb2\xb7\x54\x3f\x59\x6c\x8a\xbe\xe5\xa1\x26\xd6\x3c\x0d\xa7\x21\x79\x5e\xd9\x05\xff\xf7\x8a\x68\xf4\xba\x8d\xf2\xd8\x66\x33\x2a\xa7\x47\xc4\xe7\x5c\x27\xab\xe9\xc4\xb2\x8b\x75\x79\x77\x27\x33\x83\x9c\x69\x14\x18\xd5\x37\x30\x49\xb0\x4d\xb0\x45\x04\xc0\xf4\x8b\x53\x45\x74\x89\x3b\x87\x26\x33\x03\x5b\x64\x1c\x0b\xb8\x46\x9a\x25\xe5\xa9\xa8\x3a\xff\x33\xa2\x7d\xcf\x52\xde\x8c\x77\xc7\x72\x23\x12\xa5\x34\x94\x1d\x7a\xc3\x09\x3f\x9f\x0c\x74\x1b\x63\x6e\x4d\x16\xf6\xf7\xd3\xeb\xc3\x83\x99\xa1\x9a\x92\xb2\xbd\x7e\x91\x5f\xe5\x25\x45\x86\xc6\x97\x8b\x29\x5c\x35\x7c\x91\x50\xa1\xbb\x52\xf4\x01\xe9\x6a\xb0\x6c\x82\x17\x8c\x38\x88\x7b\xbd\x30\xcf\xd8\xb5\x5e\x8a\xbb\x6a\xaf\x03\x53\x50\x20\xec\xed\x4f\x7d\x01\xf6\x71\xf1\x8c\xcf\x24\x3f\x0d\x54\x08\x35\x52\x01\xd1\x55\xed\xb6\x94\x46\x49\x6f\xbf\x87\x3d\x1a\x50\xb6\x63\x6f\xb8\x40\x79\x92\x22\x4a\xc7\x34\x42\x2b\x22\xa6\xd1\x75\xcc\x76\x29\x04\x2b\x67\x7e\x46\x37\x79\xb6\xe9\xd5\x10\xde\x42\x40\xc9\x76\xb4\xfc\xb6\xf4\xae\x2a\x80\x7f\x3a\xe9\x52\x57\x33\xcc\xd6\x52\x32\xa7\x77\xe5\x49\x98\xde\x8a\xde\x7d\xcd\x07\xda\x69\x99\x70\xe6\x81\x30\x01\x71\x3b\x1f\x2b\x25\x9b\x38\xca\x59\xef\xa4\x5a\x01\xeb\xa4\x55\xea\xcc\x41\x4c\x94\xb4\xd3\x75\x44\xfb\x52\x00\x6d\x38\xa9\x90\xff\x3d\x50\xe8\xd9\x74\xf7\x02\x39\x82\xa5\x83\x61\x6c\x0b\x09\x08\x18\xca\x51\xe0\xdc\x65\x07\xce\x95\x49\x6c\xf3\x7c\xb7\x6f\x70\x42\xfe\x4b\x8f\xee\xb7\x7e\xb2\xa5\x14\x95\xae\xa3\xe9\xd9\x65\xcc\x8e\x20\x74\x8b\x8a\x49\x02\xb0\xd2\xfa\x2d\xc3\xdc\x89\x63\x5a\x93\xb5\x37\xf6\x28\x1a\x9a\x30\x3e\xb0\xb6\x62\x0e\xa0\xc5\xf9\xa9\x96\xdf\xc4\x66\xc6\xd5\x1e\x24\xae\x2c\x9e\x16\xba\x87\x26\x93\x64\xd3\x8a\x50\x7b\x52\x0d\xc9\xc4\x0c\x6c\x3e\xeb\x00\xfc\xff\x98\x3c\x44\x96\xb6\xce\x2b\x46\x32\x47\x71\xd2\xb7\xa8\x62\xb0\x7e\x34\x24\x94\x7d\x97\x2f\x17\x9d\xa7\x8b\x74\xdc\x5f\xc5\xe3\x1f\x79\xd9\xfe\xf3\xb4\xd7\x39\x4a\x84\xcb\x07\x2f\xd6\xe9\xab\x85\x66\x58\x45\xc5\x4c\xac\x61\x67\x65\xec\x39\x62\xb3\xec\x84\xbc\x62\x6b\x32\xa9\xac\xb0\xa4\x9a\x96\x76\xfe\x31\x8d\x40\x09\x32\xfd\x8d\x0c\x6c\x9c\x76\x80\xb2\x39\x6b\x1d\xd0\x38\x9d\x74\x7e\x75\x23\xac\x8a\xe3\x52\xce\xb0\x1f\x85\xab\x36\xc9\xb5\xe4\xfe\x2d\xad\x9b\xae\x6a\x62\xa7\xea\xf4\x12\x06\x51\x52\x16\xa0\xf2\x01\x07\xfa\x63\xfa\x34\x82\x83\xf3\x81\xdf\x99\xaf\xe8\xd8\x24\xea\xd8\x9c\xf0\x1a\xd7\x74\x50\xad\x5b\x8e\xa3\xae\x48\x61\xaa\xee\xf5\xf7\x68\xc4\x4a\x67\xc2\x7e\xed\xbd\xb8\x31\x47\x6b\x0a\xe6\x3e\x42\x0f\x20\x0c\x8f\x83\x09\x23\x68\x17\xb6\xdc\x98\x30\x85\xde\xae\x4d\x79\xe8\x50\x33\x02\x6a\xb7\x66\x13\x9b\x63\xbf\x95\xb2\x88\xa7\xde\x5f\x75\xb9\x6b\x98\x26\x5d\x9b\x59\xa9\x67\x61\x28\x9c\x54\xd0\xc0\x49\xdd\x9f\x61\x5e\x55\xfd\x19\x22\x39\x49\x2f\x5c\x30\x1c\x79\x3d\xe2\x0b\x0a\x06\x8f\x00\xee\x9e\xab\x79\x5f\xa5\x49\x5c\x59\xc6\x42\x72\x57\xed\x52\xab\x69\x91\xb6\xcb\xd5\x88\x93\x01\xec\xeb\x3f\x44\x92\xc3\x27\xd3\xcd\x49\x8b\x47\x9a\x71\x6a\xb8\x22\xe4\x92\x51\x4f\xd2\xac\xe3\x65\x86\x69\x52\xa5\x9f\x33\x13\xc5\xa1\x6a\x77\xd0\xed\x39\x98\xfc\x77\xa7\x70\x55\xf2\x0f\xcf\x4c\x6f\xe0\xa4\xf4\x80\x4d\x9d\x51\x54\xef\x33\x4a\x71\x38\x4c\xcb\xa1\xd5\x7e\xb8\x0f\x28\xa0\xe3\x63\x55\x2f\x31\x1d\x6a\x9e\x86\x2f\x5b\xb5\x3d\x81\x3f\x79\x8b\xb6\x5a\x3e\x9e\x48\x44\x06\x43\xf3\x35\xa8\x18\xb0\x10\x07\x38\x98\xa2\xca\xf1\xac\x7f\xe7\x70\x2a\x70\x90\x05\xb6\x34\x10\x60\xf8\xb8\xb5\x1d\x41\x5a\x99\x6f\x76\x4d\xc8\xa8\x1a\x02\x83\x6f\xa9\x0e\x94\x6f\x29\xb1\xc0\x32\xb7\x9f\x9b\x60\xa0\x2b\x8b\x0e\x2e\x86\xc9\x63\xd1\xf0\x2d\x5d\x39\x00\xa3\x47\xd8\x8f\xb9\xf0\xa0\xba\x5b\x2f\x60\x8e\xe1\x64\x66\x42\xc9\xdf\xcb\x3b\x5c\x19\x79\xa6\xfa\x55\xaa\x5a\x4c\x98\x1e\x62\x17\x04\xbb\x44\xc4\x03\x6b\x20\x60\x33\x1c\x66\xe9\x30\x8b\xc4\xa7\x16\x2b\xd0\x65\x65\x2f\x39\xad\xc3\xb2\xb0\xd0\xec\xd8\x24\x92\x76\x77\xe4\x69\x7f\x32\x21\xf5\x40\xb7\x8f\x97\x7d\x72\x7b\x87\xe9\xa1\x43\xcd\xe7\x9e\xa3\x92\xa2\x18\x00\xf9\x14\xf9\x7d\x9a\xf8\x4e\xc3\xd8\x45\x5b\x97\xa6\xe2\xd2\xa3\xf3\xcb\xcd\x38\xcd\x8b\x19\xa5\xcf\x03\x31\x56\xd5\xd7\x2b\xd5\xf5\x6f\x3b\x12\x55\xdb\xae\x47\x45\xd8\xb7\x1d\x8a\xac\x14\x1f\x5a\x24\x4b\xb7\x94\x68\xc7\x35\xcf\xd3\x4c\x8b\x7e\x1e\xf6\xa3\xb8\xc3\x32\xda\x2c\x6f\xa8\xaa\x5c\xc7\x75\x44\xb4\x9f\x0b\x99\x34\xdd\xff\xe5\x17\x5a\x3a\xf1\xef\x74\xf2\x39\x7a\xf1\xa2\xd0\xe4\x3d\xcf\x61\x18\x09\xc0\x15\xb6\x55\xa8\xaa\xef\xa0\x8d\x56\x5a\xde\x7d\x06\xd6\x4f\x3b\xda\x11\x16\x08\xb4\x20\xaf\x3a\x43\x2d\x93\x0e\x75\x03\x01\xb6\x97\xfe\x71\x17\x2c\x54\xd3\x03\x0c\xaa\x07\x8a\x20\xf7\xa9\xe6\x12\xdf\x51\xde\x71\x0d\x1d\x90\xdc\xae\x1b\x56\xd1\x60\x10\xf5\x14\x65\x16\x51\x1c\xd3\x49\xf8\xa4\xae\xf2\xb3\x66\x8b\xb4\x7a\x37\x47\x25\x0c\x79\x07\x7b\x8f\xc4\x74\xf4\x4e\xb9\x09\x7e\xaa\x21\xe3\xe0\x52\x33\x4a\x3a\x91\x49\xcc\x30\x8d\x23\xc9\x58\x26\xda\xd2\xa5\xbe\x4d\xd7\x81\x5c\xe8\xa6\xa2\xf6\x67\x69\xb8\x9a\x13\xc6\x82\x1b\x05\x56\x08\x90\xe0\x01\xc5\x57\x08\xfe\xbe\x3b\x81\xe4\xd8\xd7\x45\xa5\x13\x5b\xe4\x25\xcd\x9a\xb9\x54\x67\x44\x89\xd2\x29\x6f\x47\x80\x9e\x36\x55\x0b\xf5\xe6\xd4\x68\x3f\xf2\x52\xb3\x1d\xa7\xe1\x2a\x3d\x19\x60\x6a\xa8\xf4\x68\x4a\x8f\x78\x2c\x6d\xcf\x32\x9d\xce\x8a\x89\xe3\xb9\x6a\xcb\xd7\xba\xde\x08\xba\xc0\x3b\xe5\xf1\x10\xa8\x81\xfc\x58\x31\x6e\x67\x5a\xd3\x14\xa8\x17\x9b\x3d\x13\xaf\x99\x84\xac\xff\x8f\x4a\x02\x85\x02\x22\x1f\xbb\xf0\xb3\x13\x0d\x87\xcc\x73\x54\xda\xbd\x8b\x0e\x6a\x7e\x4a\x01\x3d\xb6\x6d\x43\x90\x31\xb1\x07\x9c\x1c\xa9\xd6\xc1\x93\x4a\x22\x00\x1c\x04\xaf\x6d\xe5\xbc\x1f\x07\xc3\x34\x43\x9b\x68\x35\x88\x85\xc2\x44\x7b\x85\x90\x9b\xfc\xb6\xb2\x1a\x75\x12\x33\xa4\x3b\x40\x3c\x04\xdf\x4e\x3e\x0e\x9e\xe0\xfb\x6e\x2e\x1e\xf9\x8f\xaa\xd1\x21\xda\x71\x5e\xc7\xb3\x31\xae\x1e\xac\xab\xff\x2d\x2c\x38\x35\x31\xca\x60\x11\xe7\xb2\xa2\x03\x53\x9d\xe8\x91\xe3\xc9\x3e\xd1\xf2\x5c\xbd\x07\x0c\x62\x81\x07\x70\x0f\x1b\x06\x30\xb3\x4f\x01\x44\x63\xfc\xdf\x19\x35\xbe\xf4\xab\x8e\x39\x40\xf7\x85\xc1\xb9\x73\x4c\x08\x09\x50\xab\x4d\x7a\x7f\xf8\xe6\xfd\x63\x15\x46\xde\x40\xaf\x3d\x7e\xe5\x0e\xa4\xd9\x99\xf7\x1a\x78\xc7\x8b\xeb\xfa\x0d\xdd\xc4\x5c\x44\xce\x7a\x32\xf0\xdb\xc5\x26\xc1\xb3\x22\x35\xa5\x2c\xc0\x09\x2a\x91\x3a\x8a\x6a\x88\xdf\xd5\xa2\x24\x06\xab\xd1\x59\x2c\xbf\xe2\x9e\x43\x4b\x23\x4a\xe8\x3b\x5a\xd3\x22\x33\xaf\xa6\x51\x32\xab\xdb\x49\xe8\x06\x71\x4f\x3b\x50\x97\x47\xb1\xfa\x83\x91\x8f\x20\x2e\xaa\x32\xe6\xab\x51\xaf\x17\x3b\x50\x47\x9c\xb6\xe9\xc9\x88\x05\x77\xcd\x8c\xed\x98\x8d\x22\x1a\x60\x8f\xc4\x1b\x87\x4e\x2d\x1f\xab\x35\xb9\x13\xf5\xc8\x3f\xb3\x4e\x86\xfc\x80\x6e\x12\xc8\x4a\xae\x6d\x21\x71\x06\x0d\x95\x8f\xa7\x4a\x5b\x47\x5e\x6a\x76\xad\x8d\x1b\x9e\x2c\xca\x00\x84\x94\xab\xeb\x28\x91\xe8\x04\x52\x9f\x39\x85\xd1\xc4\x27\x8e\x85\xde\x49\xd3\x41\x43\x3d\x81\x4b\x23\x9d\x85\x2b\x47\x94\xd8\xe4\x55\xf8\x47\x7f\x2a\xea\x38\x0d\xaf\x94\x33\xb5\xd4\x1d\x79\xa9\xd9\x89\xf2\x61\x9a\x63\x71\x00\xc1\xe6\x84\x72\x99\x39\xa1\x42\xc6\xd4\x96\x5d\x26\x60\x8b\x40\x80\xe7\x2d\x7f\xa2\x0c\x99\x76\xb4\x26\x88\x73\x35\x1e\x15\x59\xda\xe1\x18\x0e\x39\xe3\x3d\x0c\x63\x3e\xf1\xda\x84\xfd\x28\x8e\x67\x68\xc0\x69\xed\x72\x59\xe3\x69\xc0\xa2\x48\xb2\x59\x93\xe0\x2f\x53\x29\x35\xea\xf5\xc9\x90\x7e\x65\x9e\x7b\x51\x7e\x84\xb9\x08\x7a\xc3\x31\x25\xec\xfc\x67\x53\x05\xb8\x83\x4b\xcd\x61\x16\x25\xbe\x99\x9d\xdd\x67\x95\xa7\xd3\x3f\x72\x5c\xf9\x32\x89\x8a\x7e\x4a\x42\xe0\x48\x07\xc1\x4b\x86\x32\x08\x7e\x8d\xdb\x74\x91\xb4\x5f\x1d\xe9\x1c\x23\x5f\x4d\x0b\xc3\x9e\x47\x0e\x0e\x76\xa8\xd9\xbb\x9e\x64\xde\x2e\xe3\x38\xb2\xec\x83\x26\x4a\xc8\x0d\x67\xca\x7a\x79\x52\x69\x3c\xca\x67\x68\x44\x89\x62\x76\xc3\x75\xf8\xbf\x3b\x29\x03\xed\xb3\xcb\x7e\xd4\x4e\x01\x76\x22\x0a\xbe\xac\x7b\xaa\x2f\xd7\x0d\xfc\x61\x6c\x50\x7a\xc0\xfa\x74\x52\xf5\xfa\x9f\xac\xf3\x73\x37\x65\x91\x0e\xd2\x76\xe4\x04\x82\x45\xc1\x4c\xcb\x99\xa9\x5d\x9f\x08\x0a\xbb\x15\x3c\x0a\x3a\xd8\x84\x4b\x86\x00\xf3\x74\x53\x28\xc7\x72\xdc\xe4\x38\x0d\x2e\x6c\x3c\xa7\x08\xb6\xb3\x2d\xbf\x32\x94\xe1\x06\x32\x22\xe8\x15\x01\xdf\xe2\x63\x97\x53\x76\x63\x33\x88\x92\x9e\xd4\x86\xf0\x92\xcf\x6b\xe5\x9e\xf3\x8e\x23\x39\x21\x51\x0b\xd9\x42\x91\x85\xf1\x18\x01\xe2\x04\xd1\xc0\x9f\x2e\x4b\x1f\xae\x76\xdb\xbc\x8a\xd4\x66\x95\xae\x6b\x03\x8c\x25\xb1\x36\xf1\xa5\x3c\x26\x1e\x22\xdd\x9a\x06\x2e\x8f\xce\x2f\x72\xb3\xb4\x43\x37\xbf\xa7\x1c\x84\x1e\x28\x9d\xe7\x99\x96\x2e\xe6\x4f\xbd\xc8\x2a\xb6\xf0\x1e\xb8\x33\xda\x0e\x88\xb5\xd3\x05\x2c\x57\xbd\xe9\xd3\x48\xde\xca\xbc\x80\x36\x80\x77\xb0\x39\x70\x97\x26\x9f\x4c\xb4\xbd\x66\xf1\xc6\xb3\xd5\x05\xe3\xff\x9e\x1d\x57\xdb\xe4\xd6\xfb\x5a\xa3\xe2\x1c\x65\x5b\x0c\x0f\xa3\xf2\x82\xb8\xb2\x41\xa9\x1a\xb6\x9c\x47\x04\x6d\x80\xe9\xfb\x21\x72\x43\xec\xc2\xe8\x80\xc5\x7f\xec\x41\xbb\x03\x5e\xce\xd3\x2d\x85\x85\xef\x25\x1b\x11\xf6\x75\x0b\x54\xf3\x0c\x54\x5a\xf0\x34\xff\x9c\xe3\x78\x54\x87\x4e\xea\x7e\xe1\x53\x04\xb7\x6e\xbd\x8f\x05\xdf\x79\xcb\xbb\xce\x8c\xcd\xba\x76\xf3\xbc\x5a\xcc\xe0\x23\xa1\xd7\xa3\x8f\xd4\x7a\xf4\xd1\xa4\xcd\x4b\x39\xd0\xaa\x1a\x81\x87\x06\x2f\xd6\x01\xb6\x69\xb7\x6b\x33\x8c\x32\x6c\xd8\xe7\x47\xca\xff\xe9\x8a\x2a\xc3\xcc\xb5\x34\x43\x54\xb7\xfe\xf5\x7a\x92\x77\x6a\x92\x93\x78\x4e\x56\x9f\x42\xe2\xf0\x71\xcd\xd0\x5c\x6e\xe6\xa6\x8b\x3d\x9c\x5b\x40\x69\x68\x4a\x3b\xe8\x7e\x25\x9d\x95\x0e\x1b\x9e\xc4\x0f\xc1\x66\x3e\x56\x8c\xf9\xbc\x28\x3b\x36\x29\xf2\xbd\xf4\xe2\x10\x70\x3d\xa0\x6d\x1c\x2f\x61\x67\x4b\xb5\x6d\xdc\x54\x9e\x13\x1f\x8c\x3c\x05\xe2\x2f\x10\xf1\xa0\xcf\xf8\x92\x92\x80\xdd\x3b\xa1\xf4\x4e\x7b\x21\x46\xbc\xdf\xb8\xf3\xd4\xa0\xcd\x4f\x1a\x23\xe8\x13\x52\xea\xaa\x3e\x81\x29\x78\xa0\xe5\x5d\x4a\x68\x6d\xd8\x9a\x1d\x2b\x8b\x87\xab\x81\x2f\x7a\xd9\xa4\x88\x8a\x58\x0c\xc3\x84\xf9\xea\xc3\x94\xcb\xea\x31\xbd\x6a\x36\x4c\xc3\xb7\x85\xfe\xae\x46\x1e\x7e\xb7\x26\x63\x5f\x6a\xb6\x4d\xb8\x4a\x2a\x4e\x5c\xe4\xa7\x1c\x97\xad\x7e\x94\x29\x03\x78\x2b\x82\xcd\x3d\xe9\x28\x28\x79\x04\x51\x2c\x6c\x37\x77\x26\x52\x75\x9a\x49\xc0\x52\x3e\x52\xe1\xd8\x2f\x1f\x39\xcc\x7a\x40\x40\x63\xae\xe3\x19\xe1\xf7\x1f\xa8\x9d\x8d\x05\xc7\x31\x16\xff\xed\x94\x21\x8e\x24\x51\xdd\xd8\xbe\x16\xb5\x59\x75\x5c\xf6\x47\xfa\xa4\xdf\x20\xbd\xef\x69\x19\x83\x71\xcb\x6d\x8a\xb4\x26\x88\x28\x7c\xc3\x89\x18\x5d\x50\xc4\x37\x8c\x61\xf9\xf7\x69\xad\xca\xe5\xe6\xd0\x14\xb2\x3f\x83\xa7\x8a\xc6\x26\x3e\x56\x85\xe9\x41\x99\x74\x52\x7a\x8d\x18\x05\x0f\xa8\x94\xc5\xc7\xaa\xe8\xbb\x6e\x29\x88\x41\xfb\x35\x92\x8b\x37\x03\xdf\x8d\xf6\xa6\x77\x31\x2a\x93\x55\x67\xc5\x29\xe6\x8e\x74\xef\xe2\xfa\x58\xcb\x11\x0b\x53\x13\xf6\x59\xbb\xc1\xb1\x8d\xbd\xa4\xeb\x65\x17\xe2\x74\xa2\xcc\x86\x05\x89\x99\xd3\x1f\x63\x5d\x63\xb4\x81\x4f\xc6\x02\xc5\xaf\xf7\xa3\x22\x66\x6f\x70\x45\xae\x5b\x76\x90\xed\x94\xb0\x59\xf3\x2b\x8b\x7f\x6d\xe7\x17\x39\xb8\x04\xb9\x05\x91\xd9\xe7\x61\x55\x82\x94\x07\x79\x83\x33\xb3\xae\x92\x24\x96\xb5\x01\x1c\xe2\x88\x27\xd5\x1a\xe4\x7c\x95\xaa\xc1\x87\x85\x9f\x1d\x0b\xf0\x2b\x77\x08\xa4\xc3\xc8\xd8\xa4\xc1\x8e\xb5\xfe\xae\xce\xb1\x3f\xa1\x7c\x11\x90\xec\x99\x00\x4c\x5f\x3c\x9a\xe1\x48\x01\xbc\xd7\x54\x87\x26\x2a\x5d\x28\xc9\xdf\x82\xa6\x13\x0b\x72\x71\xf6\xc8\x76\x5f\xd8\x12\x90\x7e\xfc\x79\xe0\x41\x75\x4e\xa7\x19\xa1\x43\x8e\x2a\xcc\x60\x4a\x05\x01\x22\x41\x6c\x00\xb8\xe2\xff\x31\x6a\x1c\x79\xc9\x35\x1a\xaa\xe8\xa9\x93\x0e\x8b\x3d\x8a\x4d\xc1\x7d\xdb\xce\x2b\xe3\x2b\x8b\x2e\x63\xf1\xc6\x79\x77\x95\x54\xfc\xef\x63\x0f\x95\xe6\x56\xba\x1b\xcd\xc2\x15\x07\x72\x3f\x62\x39\xf0\xd9\x40\xab\x22\xeb\x45\x07\xba\xa6\x5d\xbd\x43\x0c\x84\x77\x46\xaa\x1f\xf9\xac\x12\x6e\xb9\x06\x30\xc0\xb9\x54\x54\xb9\xaa\x12\x66\x59\xf2\xde\xce\x6e\x76\x5d\xa4\x44\xd7\x15\x86\x9d\x86\x2f\xb3\xe7\x51\xd4\x60\x31\x57\xc4\x51\xd7\x03\x25\x6c\xb4\x93\x7d\x6c\x24\x7e\x74\x26\x0b\x51\x87\x1a\x3c\x68\x6d\x73\x5c\x19\x6f\xa3\xab\x9b\x6e\x1b\xad\x7d\xde\xb6\xae\x44\x7c\x2b\xdc\x56\xba\x05\x29\xc7\x29\xe9\xf9\x32\xe9\x70\xaa\xc9\x0a\x82\x34\x7a\x44\x4d\x50\xdb\x4d\xb7\x4d\x96\x99\x9c\xc3\x66\xe1\x65\xd2\xf3\x13\xc2\xe6\xc4\xf6\x1f\x0d\xf7\xfa\xb6\x4c\x34\x4e\x38\x2e\xf0\xca\xbc\xcb\xfc\x1b\xce\x28\x86\xdb\x34\xd8\x10\x6e\xa4\xc0\x70\x06\x0b\x30\x0b\x7e\x84\x11\x81\xdf\x3c\x0f\xd4\x84\xff\xc7\xed\x7d\xa6\x23\x89\x10\xe0\xac\x99\x96\x2f\xbc\x5c\xd3\x72\x8c\x77\xa7\xd6\xf2\xe7\x9b\x26\xca\x5c\x81\xc0\x66\x33\xea\x3a\x1e\x28\x73\x80\xcb\x14\xe8\x01\x3d\x9f\x26\x97\x81\xd1\x99\x45\x79\x31\x30\xb9\xda\x0e\x38\x58\xe7\x13\xad\xe8\xf7\x5f\xfe\x67\x3a\xcb\x7e\x8f\xbe\x9d\x8f\xa7\xc0\xcc\x85\x85\x66\xd1\x4f\xb3\xb4\xec\xf5\xdb\x99\x84\x3c\x48\xad\xf0\x40\x11\x62\xec\x98\xd4\x24\x77\x69\x5c\x62\xb3\x9e\x2d\xa2\x90\x86\x94\xb3\x82\xf5\x92\xa8\xf0\x71\x11\x15\x04\x1f\xd2\xf4\x6c\x96\x17\x89\xcd\x68\xb4\xe0\x35\xf1\xb2\xca\x27\xde\x45\xde\x9a\x55\x9b\xe0\xba\x9c\x01\xf7\xd1\x79\x57\x68\x55\x52\x52\xe7\xeb\x7c\x07\x92\x32\xcb\xed\x0c\x0d\x07\x5e\x06\x46\x7e\xf8\x7f\x42\xa5\x49\x4c\xa1\x0f\x54\xc4\x11\xe6\xdd\x36\x5d\x9a\x48\xe9\xd2\xa5\xf1\x49\x9d\x66\x61\x9f\xb8\x7f\x03\xee\x55\x74\x59\xbe\xb3\xa6\xb8\xa4\xe8\x35\x70\x69\xda\x5b\x4d\x71\x94\x34\xcf\xa8\x3d\xe2\x84\x96\x68\xd3\xc5\xe1\xab\xe8\x2c\xe1\x4f\x4c\x0a\x5e\x1c\x5c\xe2\xe5\xe5\x8d\x91\xaf\xee\xd0\x2b\x7b\x65\xeb\x5e\xdd\x43\x81\xec\x76\xf5\x4b\x02\x5c\x29\xb5\x95\x8b\x0e\xb8\xc8\x6d\x2c\xd4\x6f\xdc\xfb\xbf\xd3\x0f\xe2\xdf\xb9\xc2\xe7\xba\x89\xe3\xa1\x19\xca\x08\x77\xb6\x19\xae\x51\xf7\x36\x45\x1b\xa2\x4a\x30\x1d\x6d\x2c\x36\x87\x59\xda\x8d\x8a\x86\xea\x8b\x07\xa4\xc5\xc7\xae\x32\xde\x35\x89\x2b\x0d\x8a\xb0\x40\xc3\x8b\x0c\xd4\x74\xcf\x2e\x3b\x82\x04\x93\x38\x9c\x26\x47\x35\xa2\x45\x93\xc3\x43\x66\xa1\xc9\x3a\x91\x09\x09\x02\x67\xf9\x19\x25\x29\xb2\xa5\xd8\x22\xd3\xcd\x94\x0b\x0b\xd5\x8d\xbc\x6a\xc3\x42\xf2\x40\xd1\x8a\x51\x25\xac\x63\x13\x8e\xa9\x65\x5e\x3c\x81\xe5\x5a\x78\xbc\x1e\xef\x9b\x41\x76\x0c\x84\xe0\xdb\x1a\x16\xbd\x41\x3b\x04\x1e\xce\x0d\xda\xef\xa4\x2a\x57\x4d\x76\x21\xa2\x7b\xe8\xf4\x59\xa2\xde\xb0\x06\x8d\x86\x4c\x0e\xb4\xb6\x27\x68\x5f\xfd\x6a\x33\xec\x9b\x38\xb6\x49\xcf\x69\xc6\x08\x01\xbc\xe1\xa4\x58\x1f\x28\x3b\x9b\xeb\x4a\x54\x29\x4a\xf2\x32\x8e\x92\x59\x5f\x0f\x84\x20\xbf\x9c\x60\xd3\xc2\x3e\xf5\x63\x1a\xb9\x7c\x5c\x27\xc2\xd6\xcb\xa2\xa1\x54\xd3\x71\x09\x57\x54\xd3\xac\xb7\xb9\x0f\x4d\x36\x10\xef\x68\xf0\x86\x38\x5b\xe7\x13\xb5\x38\xa6\xa6\x78\xa2\x8a\x8f\xa4\x5b\x5b\x09\xb3\x9c\xd0\x35\xa0\xab\xa4\xb6\x81\x54\x06\x13\x19\x11\xcd\xdc\x58\x59\x09\xbc\x49\x13\x97\xa9\x70\x34\x25\xb1\xfd\xbf\x49\x57\x29\xd2\xad\xb4\xf6\x48\x6b\x6f\x4d\x1f\x6d\x5e\x98\x4e\x54\x0e\xf8\x3e\xa5\xcd\x4c\xf7\x9f\xf9\xc1\xd9\xb1\xdd\x28\x11\x71\x59\xa4\xd8\xf0\x3e\xe5\x63\x65\x26\x96\xff\x02\x54\xcf\xc4\x31\xb7\x7a\xd6\x22\x6f\xf2\x8c\xd2\xf8\x49\x8a\xb4\x6d\x92\x55\x65\x76\xf1\x50\x8b\xde\x3e\x54\x68\x72\x62\xb3\xb5\xb4\x64\x78\x8f\xf3\x50\xba\x50\xc9\x49\x6b\xc5\x3d\x07\x65\x6e\x4b\x06\x7e\x9d\xcd\xe4\xd2\x92\x1c\xd7\xf8\x54\xf6\xcc\xa0\xed\xed\xc3\xc0\x65\x00\x9f\x83\x8f\xdd\xee\xd0\x8b\x4c\x52\x88\xa4\x3f\xad\x7b\x9b\x2c\x0c\xc3\xbc\xd8\xf1\xc4\x72\xea\xcd\x8d\xb6\x54\x0b\x5b\x1e\xf6\x2d\x63\xee\xe0\x6a\x23\x11\xe5\xe3\x29\xe0\xf7\xc8\x4b\xcd\x7e\x94\xd9\x09\x6f\x33\x1a\x08\xe2\x73\xe6\x45\x37\x3a\x76\x98\xe6\x8e\x61\x8f\xad\xfa\x81\x6a\xc5\x7b\xe0\x72\x92\x28\x59\xb3\x79\xf1\xdf\xfe\x8d\xc4\x16\xc0\xa0\xb6\x36\x27\x32\x37\xba\x74\xa0\x39\x8f\xd4\x70\x3e\x98\x24\x9c\x27\x21\x6e\xf9\x40\xf7\xe1\x7e\x30\xf5\x68\x97\x5f\x3a\x0c\x6f\x2a\x24\x3e\x88\xe1\x38\xf1\xe1\x93\xb1\x9f\xcb\x85\xa5\x26\x28\xc2\x44\x45\x82\xac\xe1\x6d\x50\x82\x9f\xd2\xaa\xac\xdc\xac\x1c\x25\xbd\x78\x83\x5a\xea\xf0\x9c\xcf\x23\xf8\x72\x3a\x99\x0e\xb8\xba\xa5\x95\x24\xbb\x85\xcd\x0a\xf3\x5a\xc3\x87\xe1\xdc\x64\x21\x2e\xdd\xea\x65\xa5\x11\x89\x13\x69\xad\x41\x0f\x7e\x5f\x51\x0e\x0a\x03\x62\xcd\xd8\x3d\x8a\x37\x75\x2b\x50\xf6\x4d\x68\x8a\x60\x65\x69\xb2\xd6\xe5\x7f\x1f\x29\xad\x93\x1d\xc0\x56\x58\xd8\x77\x34\x51\x64\xf6\x3d\xdb\x0f\x94\x43\x4e\x27\xad\xb2\xf6\x95\x65\x2e\x3d\x9c\xa1\x89\xc7\xc7\x4a\x1d\x27\x2b\x93\x7d\x0d\x27\xc9\x79\x69\xa4\xfc\xe7\x3e\xa6\xc5\xdd\xf5\x18\x57\xcf\x41\xf0\x0a\xba\x17\xb1\x8a\xf2\xa5\x8a\xb3\x5a\xf8\xff\x22\x6e\x12\xeb\xd8\x03\xfa\x79\x04\x21\x9f\xe2\xc6\x04\xb8\xa2\x1b\xe3\xae\xab\x5a\x22\x4f\x59\xb4\x4d\xb8\xda\x50\xa0\xe2\x64\x1b\xf9\x93\xca\x75\xea\xb3\xe1\xae\x9a\x2a\x17\x53\x84\xf0\xcd\x75\xd2\xb4\x75\x98\x4e\x39\x84\x45\xa0\x78\x9f\x5f\x53\xb1\xff\x49\xa5\x55\x7e\x93\xd0\x0f\xc0\xaa\xda\x49\x1e\xd7\x2e\x8d\xe3\xde\x62\x72\x3d\x4d\x76\xab\x88\xf5\xe6\xc8\x57\x5e\xb7\x94\xa8\x2d\x08\x57\xdc\x78\x13\x28\xab\x42\xec\x0e\xce\x73\xfd\xa0\xb3\xe6\x53\x19\x4f\x94\x54\x31\x01\xcd\xa5\x85\x05\x0e\xaf\xaf\xd2\x5b\xe6\x63\x85\xe6\x84\xa6\x08\xfb\x33\xca\x1e\xe0\xeb\xca\xf2\x10\xf1\xb4\x38\x1f\xd4\x6c\x26\x03\x93\xf5\xd2\x38\x12\x3d\x59\x8c\x9b\x33\x23\x35\x88\xce\xd4\x2c\xb8\x62\x7a\xa9\xc9\x68\xac\x6b\xcf\x27\x35\x03\x04\x1e\xed\xce\x2f\x56\x68\x95\x9a\x63\x39\xf5\xf2\x57\xe6\x9b\xf6\x35\x13\x16\xcc\x55\x65\xeb\x9c\xc0\xf7\x64\x4c\x57\x18\x0f\x2e\x35\xd3\x35\x9b\x99\x38\x26\x37\x1a\xc9\x5b\x1b\xce\x6c\x1c\x19\x19\x8b\x5d\x78\x45\x80\x72\x38\xcc\x6c\x9e\x73\x11\x08\x40\x1c\x9a\x70\xf8\x78\x6a\xb7\xfa\x45\x52\x83\x48\x07\x69\x86\xb6\x45\x44\x7c\xd0\x7e\x94\xe6\x8c\xea\xbb\x80\xc2\x6f\x69\x89\xd3\x0b\x23\x45\x9f\x27\x1a\x30\x5d\x2c\x27\x29\x00\x3e\xa4\x87\x42\x3b\x0b\x6d\xbf\xd9\x97\x17\x8f\x34\x33\x5b\x98\x28\x86\xee\x1c\x66\x34\x33\xba\x51\x68\xb9\x11\x28\xd7\xcb\xb3\x35\xfe\xc5\xd5\xdb\x4c\xe3\x35\xce\xf3\xa5\xbd\x9a\xde\x2c\xe2\x19\x50\xbc\x05\x45\x39\xe0\x9b\x43\x43\xeb\x65\x02\x81\x3e\x60\x8d\xc4\x8a\xfd\x3d\xe5\x5e\x76\x47\xa9\xd8\xc7\x26\x11\x23\x1c\x31\x6d\x51\xd4\xdf\x53\x13\xa9\x7c\xd4\xeb\xef\xa7\xd5\x89\xb5\x01\x02\x87\xbf\xff\x77\x07\xc6\xaa\x9b\xed\x94\xde\xf0\x7e\x2b\xd0\x6e\xfe\x4c\xa7\x77\x4a\x41\x5e\x7b\xe7\xc2\x48\x69\xdb\xdd\xa5\xe9\xa5\xa9\x5f\x82\xb5\x79\xae\xfb\x09\x3c\x15\x2e\x5a\xd1\x64\x07\xda\xff\x54\xcb\x69\x76\xb1\x1f\x52\x3e\x68\xe8\x9e\x2c\xdd\xab\xe5\xdf\x7c\x94\x67\xc6\xc6\x84\x55\x20\x37\x3b\x11\xe8\x7a\xd2\x05\x02\xe0\xd8\x0a\x3d\xd0\xfa\x96\x8a\xab\xfa\x0e\xd6\x16\x06\x82\x94\x8e\xcb\x1b\x81\x07\x0c\x4f\x68\x05\x90\x77\xa6\x69\xfd\x0b\x28\x46\xd1\x28\x06\xe1\x0a\xe0\xad\x20\x42\xd5\x9d\x4a\xbf\x9f\x67\xc5\x35\xc6\x35\x31\x78\xdb\xc6\x91\xed\x36\x54\xb7\x12\x20\x65\xe9\x9f\xf1\x77\xbf\x1e\xe5\x7d\xcb\xc1\x21\xbb\x86\x2b\xf2\xfb\xa5\x29\xd0\xf6\xe5\x95\xf9\x66\xbf\xcc\xdb\x55\xea\xdc\x50\x5d\x0e\xdc\xf9\x2c\xfa\x37\x4e\x6d\x95\xa2\xb4\x6d\xcd\xf3\x4e\x5d\x09\xe5\x47\x29\x9f\xd6\x28\x66\x17\x26\x5e\xe5\x9f\xe1\x6e\x08\x25\xf3\x7d\x55\x19\x38\x84\x71\xc9\x34\xd1\xa5\x25\x8a\xc2\x0e\x1d\xda\xda\xac\xcb\x4e\xaa\xcd\x71\x92\x67\xa4\x75\x71\xaf\xa9\xe2\x40\x11\x25\x7b\xd4\x7f\x21\x49\x13\xaa\xa5\x12\x67\xbe\xa4\x70\xc8\xef\x23\x22\x10\x65\x50\xc5\xdb\xfe\x21\x0f\x2a\xcc\x80\x7b\xca\x56\xf7\x56\x1d\x33\x02\x26\x8a\x90\xa9\xc5\x57\x63\x15\x74\x7e\x5b\x4a\xde\x50\x53\xd4\x36\xb8\x5d\x17\xb3\x0e\x2c\x72\x3e\x1e\x7b\xf0\xdf\xbe\x56\x64\x66\xd6\x53\xb2\x4e\x05\x9f\xe9\x7b\xe1\xa3\x9d\x53\x75\x89\x73\xbb\xec\xf4\xac\xe7\x28\xb0\x98\xad\xaa\x60\x5d\xaf\x75\x50\x0f\xe3\x34\x77\x1f\x92\x90\xbd\xe1\xda\x2e\x2f\x3b\x1d\xd4\xcc\x9a\x3c\x2f\xb3\x6d\x12\xca\xb7\x95\x46\xd1\x9e\x96\x9f\xd6\x0f\x94\xf5\x5d\x18\x65\x61\x39\xc8\x0b\x03\x6b\xcd\x2a\x9e\x15\x3f\x47\xca\xed\x84\x82\x75\x40\xc9\xc7\x46\xdd\x34\x1b\x20\xc0\x01\xec\xf4\x3e\xa6\x2c\x9f\xd4\xda\x7c\x0f\xcb\xc1\x90\x6f\x65\xd9\xb5\x4a\xd0\xb5\xf2\x49\xf0\xac\x7b\x3f\x89\x5d\xcf\x09\x72\xc9\x1b\x5a\xff\x4d\x35\x8e\x5e\x1e\x3d\xeb\xae\xe7\x55\x9b\x0e\x4d\xd6\x21\xf6\x9c\x23\x09\x7f\xa0\x6b\x2a\x1f\xd4\x88\x02\x35\x4d\xd8\x8f\xec\x9a\x1d\x50\x1d\xc8\x55\xfa\x8f\x2b\x21\xb3\xe3\x6e\x7a\xae\x99\x2c\x92\x00\x42\xd4\x52\xab\xbf\xe3\x63\xc5\xba\x0b\xd3\x2a\x94\x53\xd2\xea\x60\x5a\xf0\xb1\x37\x33\xef\x47\xb1\xe5\x7d\x85\x6b\xb0\x5a\x0a\xf5\xda\xe8\xe7\x3f\xa3\x74\xd6\x89\xd6\x6c\x96\x93\x76\x2f\x60\x43\x87\xc9\x3b\x06\xcb\x25\x8d\x51\xde\x0f\xbe\x30\x59\xc2\xa1\xac\xf5\xe8\x3c\x19\x0c\x8a\xe6\x33\x55\x2b\x90\xb1\xde\x00\x9d\x9d\x4f\x88\x6f\x0e\xce\x02\x14\xde\xb0\xfd\x20\x8c\x54\xe8\xda\x61\x57\x85\xa8\x5e\xd1\xc4\x65\xe0\x86\xe0\x29\xc4\xf6\xa2\x93\x5a\xd7\x13\x56\x8d\xde\xa0\xe4\x6e\x5d\xd4\x6e\xb3\x72\xe8\x22\x39\x67\xc8\x54\x6d\x92\xe2\x6a\xe2\xdd\x01\x8a\x3e\xd9\x06\x75\xcb\xb8\xa1\x88\x7d\x50\xea\x74\x54\x0e\x3f\xd7\x93\xa8\xd7\x2f\x26\xfb\x07\x17\x16\x5d\xff\xa0\xa6\xaa\x76\x6d\x67\xbf\x6e\x3a\x86\x14\x07\x9e\x12\x23\xf0\xc8\x88\xb8\xbd\x94\x3b\x0b\x69\x2d\xc2\xf3\x3b\x83\xe5\x0f\x75\x8f\x71\x30\x49\x86\xfe\xca\xa2\x6b\x00\xf1\xad\xc2\x97\x54\xd6\xc1\x65\x5a\x0c\xa9\x1b\x81\x8a\x9e\x10\xcd\x49\x69\x45\xa1\x7e\x51\x11\xbd\x6e\x13\x3c\x36\xa7\xa5\xea\xf5\xb6\x8f\xb9\x4c\x3d\x4c\x07\xc3\x2c\x1d\x44\xb9\x40\x7c\xea\x27\x7d\x63\xca\xd3\xca\x2f\x69\x10\xc5\x91\x85\x9e\x09\xd6\x6c\x6c\xc6\x02\xdf\xd2\x18\x40\x1e\xe3\x85\xc2\x0b\x3b\xf0\xaf\x51\xab\x2c\x88\xfc\x82\xaf\xbb\x90\x1f\x0a\x77\x35\xe0\xa5\xfd\x33\x0a\x15\xf8\x58\xed\x43\xb1\xb1\x8d\xea\xe1\xc9\x32\xa9\x44\x73\x2f\x07\xaa\x57\xc2\x93\xf5\x67\x69\x5c\x20\x84\xb8\xa7\x9c\xe6\xd8\xe3\x8f\xff\x83\xd0\x0f\xfe\x0f\xcf\x7a\x2b\xb3\xb5\x0d\x95\xd1\x1f\xa7\x8f\x8b\x2c\xaf\x93\x8b\xea\x67\xd1\x90\x0b\x2c\xf8\xbf\x5b\x6a\xc9\x7f\x4c\xf8\xbc\xcc\x5f\xbf\x47\xe7\x36\x31\x45\x9a\xe5\x8a\x49\x7b\x65\x54\x65\xf0\x82\x08\x78\x14\x20\x29\xb3\x6a\x7f\x98\xf5\x93\x7f\x37\x4d\x34\xd6\xae\xd5\xf5\x41\xdd\x60\x7a\x43\xb5\xdc\x76\xac\x89\x6d\x96\xf7\x23\x90\x35\x38\xa2\x9e\x10\x2f\x9a\x54\xf8\xa7\x9d\x02\x1b\x05\xe6\xf6\xa7\xd8\x28\xf8\x64\x82\xdb\x96\x46\xfc\x92\x31\xf3\x1f\x20\xba\xe7\x93\x3a\x57\x75\x93\xe7\x51\xf5\x0b\x98\x89\x78\x7b\x10\x4a\xe0\xe3\x29\xca\x0d\x89\x15\x85\x59\xd4\x6e\xc7\x12\xd7\x30\xdb\x7e\x33\x50\x5a\x6f\x9b\x53\xe0\xf9\xca\x7c\xb3\x4c\x58\x34\x86\xaf\x92\x3b\xe9\x68\x2d\x95\xae\xba\x3a\x94\xa9\xda\x6b\x07\xa0\x63\x72\xba\x8e\x39\x2c\xb9\xbb\x72\xaf\xa4\x5a\xfc\x5e\x85\xd7\x82\x7b\x84\x9a\x37\x32\x78\x44\xc0\xdc\xe5\xaa\x34\x23\x65\x15\xbe\xac\x92\xf3\x99\xb1\x76\x71\xc6\x5a\xc6\xdf\x35\xf6\xb6\x98\x75\xfe\x9c\xcb\x4d\x1b\xf6\x53\xb9\x53\x7c\x06\xe5\x5e\x3e\xd6\x72\x18\xa4\x52\x62\x62\xc9\x7e\x35\x78\x2f\x10\xae\x37\x6d\xaa\x5e\xd6\x67\x10\x0b\x6b\x05\x5c\x4c\x51\x54\x09\x6f\xa3\x5a\x29\xb7\x36\x69\x5c\x6e\x6d\x4e\xc5\x0c\x47\xe7\xb7\x61\xc7\x22\x79\xa0\xeb\xbb\x4f\x78\x6b\xbd\x59\x92\xd2\xe6\x75\x30\x50\xc4\x12\x45\xae\x7d\x7b\xd4\xf8\x95\xc3\xce\x75\xdf\xa3\x5a\xdd\x28\xb3\x0d\x70\x06\x58\x1f\x03\x0d\xf2\x22\x96\x31\xad\xee\xbf\xdc\xec\x97\x5a\x5a\xf5\x22\x05\x83\x7c\xec\xb2\xce\x32\x09\x63\x13\x0d\x64\xab\x16\x47\x48\xdf\x04\xc2\xbe\x2b\xb8\x9d\x53\x0a\xb9\x7e\xb5\xec\x44\x61\xb4\x4d\xfa\x21\xd0\xd2\x0f\x6a\xe5\xeb\xa5\x09\xa5\x65\x82\x66\xe0\xa5\xe9\x8e\x42\x29\x20\x29\xf8\xe2\x07\xa0\x35\x80\xa3\xb0\xb7\xe5\xb3\x1e\xd6\xfe\x16\x1f\x28\x2f\xbd\xb0\x67\xac\xcc\x52\x4f\x29\xb4\x6f\xdd\x64\xb0\xe0\x16\x8a\xb6\x6f\x6d\xdb\xd5\x52\x25\x96\x33\xd8\x45\x34\xa9\x1b\xb9\xed\x8e\x71\x9d\x2e\x2c\x55\x5b\x8c\xdb\x27\x30\x01\xbe\xad\x5a\xa4\xbe\x3d\x85\x5e\x2f\x1e\x69\xda\x0d\x29\xaa\x70\x63\x52\xa0\x9b\x94\x3c\x0f\xbb\x6b\xaa\x99\x99\xcf\x79\x3b\xe9\x1f\x2b\xcd\xae\xb9\x96\xbf\x3a\xb4\x11\x2b\xb0\x42\xee\x67\xc7\x58\x26\x81\x77\x57\xc3\x2a\x7c\x4e\x99\x44\x9d\xab\xb3\x46\xca\x8b\xcc\x26\xbd\xa2\xcf\x97\xea\x14\x61\x5c\x50\x76\x7e\x2a\xcd\x3b\xf2\x52\x33\x2f\xac\x01\x7d\x1d\x55\x50\x70\x10\xf8\xb8\xae\xc5\x8c\xd1\x96\x09\x13\x0f\x57\xed\xbb\xa1\x6c\xde\x7f\x34\x12\x49\x36\x33\x98\xc3\xf8\xc1\xbe\xb1\x53\x8b\xf9\x3e\x22\x26\x8e\x68\xf9\x7a\xb9\x8c\x7f\xf1\x79\x7a\x5c\x42\xbf\x3b\x10\xe9\x47\x1c\xc9\xfb\xf8\x8c\x66\x47\x1f\x57\x99\x64\x46\x7b\xb7\xdc\xc2\xa2\x2a\x54\x23\x95\x24\xbe\x5f\x27\xc3\x34\x08\xa3\xa4\x48\xf3\xfe\x8c\xd6\xdf\x3f\xaf\x58\xb7\x17\x75\xc7\xd2\x7d\x57\xdf\xb5\xaf\x0d\x6d\xe8\x53\x33\xac\xc6\x17\x15\xc1\xf4\xe2\x67\xca\x80\x0d\x4c\xd6\x8b\x12\xbe\x3d\x56\x0f\x0c\x26\xa4\x04\x6b\x06\x68\xb7\x64\xd5\x3f\x54\x8f\xcf\xe0\x03\x7c\x52\x67\x24\xd2\x49\xd7\x13\x92\xc1\x44\xcc\xf3\x01\xc5\x3f\x78\x9d\x6c\x0a\x22\x25\xc3\xea\x3d\xa3\xa0\xfe\x26\xc5\xa4\xc8\xff\xf7\x2a\x0f\x82\x7b\x53\x4b\xf2\xd1\xf9\x57\x9a\x69\x59\x64\xa6\x27\x13\x8d\x4d\x1f\x08\x69\x16\x03\x88\x69\x19\xd6\x45\xa0\x30\xbb\xa6\x9c\x4a\x1d\xfd\xdb\xc5\x1e\xa7\x31\x54\xc4\x76\xdd\xbb\x59\xde\x05\xb1\x47\xd8\xae\x4f\xf9\xca\x3c\x15\x99\xd1\x21\xee\xb4\x5d\x9c\x8e\xda\x7f\xf5\xf9\x96\xcf\xdd\xf7\xd4\xa8\x84\x35\x49\xd6\xd3\x14\x62\x57\x25\x48\x9b\xf2\x6c\xb8\x8c\x95\x57\xd8\x19\x75\x2b\x7c\x28\xda\xb7\x98\x22\x3b\xc9\x60\x86\x8f\x5b\x35\x39\x7e\xbe\x91\x74\x48\x6a\x77\xc6\x97\xac\xb1\x67\x22\x18\x06\x1a\x25\x93\x64\xfb\x08\x5e\x58\x68\xae\x67\x66\x38\x74\x03\x91\x7d\xe5\x95\x8c\xc6\xfd\xa9\x95\x64\x65\xbe\xd9\xb6\x09\x33\x0f\x95\x59\xca\x23\x7a\x13\x7c\x3c\x95\xfc\x1e\x3a\x44\x51\xb0\x0d\x23\xd3\x66\xac\x9a\xc3\xf5\x89\xd0\x7d\xfa\xc7\x0e\x37\x73\x6b\xf2\x34\xb1\x13\x51\xdd\x45\x25\x1d\x72\xb1\x86\x90\xb1\xdc\x6c\x9b\x36\x86\x3c\x02\xa4\x63\x78\xf6\x7c\xe2\xf9\x36\x61\x9a\x54\xa9\x07\xd7\x08\x7d\x4b\xbb\xa3\x97\x22\x58\xe0\x0b\xbc\x1d\xfc\xc4\x64\x03\x74\x5e\x64\xa6\x88\xd6\x50\xac\x91\x0e\x05\xfa\x80\xa0\x41\x2a\x23\xaa\xb2\x6f\x9b\x01\xc3\x50\xda\x44\x87\x9d\x82\xd1\xb4\x39\xfd\x72\x33\xcc\xa2\x01\x6c\x1f\x44\xaa\x54\x29\x76\x7e\x23\x98\x5c\x78\xea\xbe\xa0\x6f\x4d\x27\xc7\xb0\x96\xfd\xd5\xbb\x91\xff\xf5\x1b\x23\x25\xd5\xbd\x63\x4a\x53\xfa\xe0\x52\x33\x33\x51\x9c\xa5\x6c\xf2\xc3\x4e\xe5\x4a\xd2\x44\xab\x31\xc6\x65\xf1\xba\x72\xe0\x3e\xae\xad\x13\x8e\xbb\x3c\xa6\x5d\x16\x61\x9f\xfe\x4c\x1a\x1f\xe9\xcf\xf8\x44\x85\x48\x03\xcb\xd2\x8a\xd8\x7a\x2f\x61\x2e\xf1\x49\x0d\xad\xab\x19\xc6\x55\x2c\xdf\x8d\x64\x0e\x62\x5f\x7d\x88\xcf\x31\xa5\x09\x39\xa8\x98\x91\x6f\xbf\xdf\x97\x17\x8f\x34\xfb\x69\x5e\x44\x50\x49\x7f\x45\x3b\x88\x3a\xfa\x61\x9d\x65\x59\x19\xc5\x80\xfa\xbd\x58\x00\xf7\x99\x88\x7b\x76\xc3\xb5\xf8\x5e\x57\x02\xfc\xeb\x26\x8e\x9f\xa4\x81\x8d\x75\x0b\x96\x43\x80\x8f\x19\xa4\x44\xf0\xf3\x16\x3d\x73\xc4\x31\x3b\xc6\x4a\x93\xe5\x1d\x02\x0d\xa4\x84\x4c\xab\x9e\xb3\x5b\x75\xe2\x62\x37\xb0\xea\xa1\x84\x79\x16\x0f\x04\xcb\xff\x43\xa5\xfe\x79\x0b\xb4\x59\x00\x10\xbf\xad\x72\x30\xb2\xce\x4a\xa2\xa4\x37\xe7\x81\xc9\xbb\x08\xe6\xb0\xde\x03\x0b\x12\x4f\x76\x5f\x10\x78\x4c\x71\x0c\x72\x8a\xe3\xae\x2b\xbb\xda\xfe\x92\x4e\x54\x94\xfc\x7e\x99\x2a\xaf\xfc\xb0\x2f\xea\x02\x35\xb9\x82\xd1\x1f\x62\x9d\x87\xc1\x0a\x1f\xd7\x2e\x6a\x7d\x53\xd8\x35\x9b\xa1\x45\x0c\x03\xfd\x8e\x4a\xe1\x4f\x8c\xb4\xb2\x54\x0d\x9d\x6b\x80\x9d\x69\xc9\x79\xec\xf2\xf2\xc1\x27\x53\x9b\xf3\xa1\x43\x13\xa4\x3f\x65\x8d\x7f\x53\x99\xc1\xdc\x54\x18\x43\x51\x66\xab\x76\x83\x04\xc5\xdd\xb2\x51\xfd\x82\x2c\x1b\x3a\x48\x59\xb3\xd9\x4f\x36\xbe\xf4\xab\x3e\x25\x3a\xb8\xe4\xfb\x11\xbe\xb2\xe8\x74\x98\xb5\xd2\xd3\x2c\xd8\xcc\xc8\xb3\x36\x91\x2d\x63\x1f\xb9\x4d\x01\x15\xcb\x60\x02\x3a\xc2\x40\xfa\x94\x06\x12\x50\x87\x3f\x43\x9a\x07\x74\xe5\x24\xe6\x0c\xe6\xfb\xdd\x40\xc9\xd1\x31\x65\x16\xb5\x61\x08\xfd\x23\x55\xb8\xa9\x54\x99\x6e\x62\xb8\xb1\xc0\xac\x56\xcd\xdc\x41\x4d\x3a\xce\x97\x55\x2b\x79\x6a\x09\xd3\x06\x09\x81\x89\xd6\x72\x15\x22\x20\x3e\x43\xec\x8a\x25\xfb\xc3\x29\x22\x26\xb9\xb9\x90\xd8\xaa\x69\xc7\x56\xd2\x4a\x35\x03\x84\x99\x74\xb6\x26\xd2\x78\xb1\x99\xbe\x9e\x26\x2c\x84\x21\x7c\xc1\x86\x73\xee\xba\x3a\x95\x9e\xbd\xbc\xdc\x1c\x3a\x02\xae\x82\xbb\x9c\x5e\x6e\x8d\xaa\xfc\x2b\xcd\xce\x86\xdb\x7a\x41\x82\xf8\x56\xe0\x09\x11\xdf\x9a\x68\x56\x2f\xe3\xce\x53\x13\x04\x19\x5a\x02\xc0\x00\x7c\x1f\xef\x17\xc1\x09\x2c\xd5\x44\xcf\xa2\xe1\x7a\x24\xa1\xa4\x8c\xa8\xe9\x5d\x5c\x1a\x36\x91\xeb\xaa\x7a\xf5\x50\x99\x05\xfc\x00\xaf\x1d\x64\x39\x70\xdd\xc5\x95\x44\x89\x42\x5f\x03\x8d\x12\x40\xc3\x31\x9a\x58\x00\x7c\x9e\x6d\xd1\x10\x92\x05\xd4\x23\xed\x5e\x70\x6d\xb7\x22\x3f\xde\x53\x97\xf7\x40\x59\xf6\x3f\xd2\x46\x23\x8c\x09\x3a\x7d\x20\x07\x3b\x9d\xa6\xd9\x2d\xda\x6d\x3a\xcc\x4e\xf2\x68\xcd\xce\xf9\x4a\xe4\x43\xa5\xe3\x84\x81\xc5\x86\xaa\x23\x55\x31\x3b\xa6\x5c\xae\x66\xc7\xde\x36\x75\x68\x4d\x31\xd3\x38\xf2\x92\xeb\x31\xac\xfe\x0c\xeb\x0b\x7b\x0b\x89\xbe\x4f\xdd\x4e\x3c\x8c\x9c\xd1\x09\x76\x88\xbf\xc4\x5c\xe2\x93\x1a\xaa\x65\x73\x98\xa5\xa1\xcd\x7d\x3d\xc6\x89\x8f\x7b\xe0\x30\xa8\x51\x9c\x8c\x6d\x41\x25\x24\x4c\x46\xb6\x28\x91\x24\x6f\x32\xc3\xa9\x1e\xae\x30\x65\xb7\x5f\x34\xe1\xf6\x71\xba\xc6\x45\x42\xcc\xb4\x5b\x6a\x27\xdb\xd5\xf2\xac\x81\x7b\xda\x4a\xad\xac\x96\x43\x38\x7f\xd2\x1b\x13\x21\x45\xfa\x39\x3e\x71\x01\xc1\x5a\xb4\x16\xe9\xb2\xdf\x7b\x8a\x90\xfe\x9e\x22\x72\xc4\xb6\x67\xe2\x7d\xd5\x8a\x27\x81\x1f\x0d\x3d\x6e\x98\xa7\x11\xe0\xd4\x7d\x17\x8f\x78\x76\xb2\xb3\x12\xde\xd1\xaa\x16\x0f\xd1\xd0\x69\x28\x25\x13\xba\x2e\x57\x43\x50\x92\xe7\x78\x43\x18\xdd\x8d\xb1\x6e\xd9\xd2\x30\xfe\xaa\x05\x91\x5c\x6c\x03\x69\x28\x88\xd5\xa0\xdf\xc9\x32\x93\xd9\x78\x83\x34\xb1\x40\xe6\xda\xd9\x9a\xec\x88\x5b\x58\x94\xff\x18\xab\xf4\xe5\x1a\x36\x6f\xf1\x36\x53\x6e\xf5\x97\x95\xae\xcd\xab\x29\x4b\x1f\xe1\xbf\x4e\xe3\x59\xf3\x49\xad\x09\xea\xd0\x66\x36\x2f\xb2\x34\x5a\x85\xc7\xb6\xf4\x1f\x37\xbe\xfc\xb2\x1c\xd7\x15\x44\x7a\x69\xda\x11\x8f\x8e\xad\xcd\x80\x21\x35\xc1\xd9\xa3\x98\x5e\xd3\x9c\x47\x40\xee\x2b\x5e\x11\xfb\x04\x63\xf4\xfd\x3e\x4d\x79\xfc\xd2\xe7\xb4\xfb\xdc\xd5\x3a\x3f\xac\xf5\x34\x9d\x6d\xbc\xbc\xec\xab\x9f\x47\x85\x1d\xfa\x48\x6f\x56\x17\x95\xb2\xe2\xff\x34\xda\xe7\x0d\xd7\xb8\x87\xd7\xb5\xee\x78\x87\x54\xa5\x6a\x54\xa4\x65\x96\x18\x67\x10\xf2\xa2\x53\x12\xf6\xb4\xa7\x5f\x53\xf6\x63\x49\x42\x58\xab\x6c\x2e\x1c\xf7\x05\x4a\x7a\xce\x37\x8b\xb4\x33\x72\x84\xe7\x4e\x79\x21\x0e\xe0\x83\x34\x33\x5b\x4f\xe3\x19\x20\x3f\xbc\xa0\xe5\x9c\x67\x55\x81\xb8\x1f\xc5\x71\x0e\x7f\x2c\x70\x1a\x60\xd6\x25\x61\x71\x75\xa1\x20\xa4\x9d\x19\x29\x4f\xae\x69\x1d\xf9\xa3\xf3\x4d\xd3\xcb\xa2\xb0\x8c\x11\x87\x39\x47\x52\x0d\xe1\x3f\x98\x12\x94\xf2\xa2\x24\xd2\x4c\x27\x16\xb9\x6a\xaf\xbc\xa8\xc4\x07\x4c\x36\x48\x45\x0d\x9c\x5b\x35\x68\x87\x92\xb6\x8d\x03\x2a\xca\xcc\x7a\xf9\x00\x9d\x89\xa0\x04\xa1\x83\x9d\x8f\xeb\xc8\xb0\xcd\x9c\x1c\x8d\x38\x37\x14\x25\x20\xba\x6f\x3e\x71\x41\x67\x1c\xb5\x6d\x66\xe2\xe8\x75\xdb\x41\x11\x06\xeb\xe7\x3f\xa1\x27\xe6\x48\x32\x9e\xae\x75\x73\xa4\xbf\x46\x35\xc2\x93\x9c\xd0\x2e\xd5\x10\xf2\xc9\x48\xe9\x54\xfd\x3a\x5d\xb2\x63\xf7\x2f\xaf\x28\x49\x27\x57\xbd\x85\x70\xad\x30\x15\xfd\x13\x58\x37\xa4\x71\x34\xa7\x3a\xeb\xbf\xae\x4d\xa9\x46\x5a\x83\x45\x4b\x4a\x68\xc6\xd8\xa6\x52\x10\x0a\xd3\x81\xcd\xf7\x7a\xf2\xed\x23\x5a\x25\x95\x18\xe5\x2b\x6e\xb0\xf8\xe0\x7b\xcf\xd8\xdf\xc2\xde\xd6\x84\x3d\x0c\x2d\xb8\x88\x40\xee\x05\x8d\x5f\x91\xd8\xed\x9c\x4e\xe1\x3e\x52\xa2\x6c\x79\xd9\xe9\xd8\x24\xde\xc0\x4e\xef\x98\xd3\x4e\x41\xf0\xae\x56\x06\x62\x41\x11\xec\xe8\xbf\xa1\x5d\xfc\xee\x2a\x41\xb6\x4f\x47\xca\xc3\xf8\xbe\xf3\xf6\x19\x2a\x03\x17\x1a\x41\xd8\xa1\xd0\xdc\xc4\xc7\x53\x25\x8a\xc5\x23\x4d\x6b\xf2\xc2\x66\x8c\xba\xe0\xa7\xb1\xce\xf3\x71\xcb\x2f\xdf\x45\x16\x75\x79\xcc\x43\x2d\xfe\x8a\xb2\x9c\xb9\x52\xdb\x85\x61\xba\x99\x91\x7a\x14\x42\xfb\x9d\x63\x0f\x15\xec\x6c\xf9\xab\x4f\x3b\x25\xd9\x42\x14\x1b\x33\x8a\x9e\x7f\x46\x05\x9d\xf7\x74\x61\x73\xa7\x32\x29\x1f\xda\x2c\x4f\x13\x13\xc7\x1b\xb3\x4a\xdc\x99\xc9\x33\x5c\x23\x9e\x50\xcd\xa4\x67\x2e\x2d\x03\x75\xea\x83\x69\x9a\x44\x56\xb5\x95\xde\x40\x70\xc3\x27\x75\xe9\x8f\x27\x2c\xb3\xeb\x13\x36\x9e\xf3\x81\x6a\xda\xe0\xe8\x0d\xfb\xe2\xf7\x1d\x8f\x24\x1d\x16\xd1\x80\xbc\x86\x76\x29\x57\xde\x8b\x9a\xc7\x73\x0e\x13\x49\x7a\x4b\x14\xd3\x51\xd1\x37\x0f\xb4\x7c\x3d\xf4\xb2\x72\x42\xea\x98\xbc\xdf\xf0\x2d\x98\x98\xa0\xa2\xe1\x3f\x5d\x02\x5a\x6a\xb6\xa3\x38\x76\xac\x16\x2d\x8c\xc4\xba\xb9\x6a\x33\xb8\x53\xf3\xd6\x5f\x21\x5d\x16\x59\x93\xb4\xe0\xa2\x48\x26\xa8\x2e\x67\x03\x23\x4c\xe7\x18\x42\x63\x1b\x01\xfb\x0c\x45\xa7\xd8\xd5\x7e\x00\xc6\xa3\x34\xd6\x79\x0a\xf2\x25\xd5\x64\x3f\xb0\x55\x78\x01\xe8\x03\xdf\xf7\x78\xa4\x32\x7d\x7d\x0f\x97\xd5\x02\xcd\x64\x50\xa8\x73\x23\x76\x67\xc9\x5e\x27\x8b\x71\x50\x58\x61\x27\x47\x2a\xc1\x39\xe7\x1c\x02\xc3\x34\x09\x6d\x96\xe4\xbb\xab\x08\x66\xc2\x1e\x98\x89\x1c\x23\xcf\x17\x7c\x8c\xaf\x90\xd6\x1d\xfa\x21\x14\x07\x7e\x86\x6e\x58\xab\x22\x22\x31\xdd\x3d\x7e\xca\x71\x62\x92\x2a\x7b\xc0\x08\x03\x48\x0b\x39\x26\x2c\xd9\xff\x5a\xb7\x82\xdf\x57\xbc\x8c\xae\xcd\x8a\xa8\x5a\xfa\xb3\x59\xca\x38\x01\x84\xbd\xa1\xd5\x93\xde\x40\x01\xde\xd5\xc8\xaa\x91\x28\xe9\x8e\xf3\x0f\xcb\x8a\xa8\x1b\x85\x51\x35\xd5\xd4\x32\x70\x86\x06\x24\x1f\xd7\x10\xdb\x0e\x37\xa9\x24\x47\x11\x39\xb6\xec\x93\x23\xc5\x49\xfc\x1e\xde\xad\x76\xc4\xc5\xe4\xbf\xaf\x18\xfd\x7d\x93\x15\xdd\x34\xeb\x70\x67\x06\x70\xa0\x5b\x5a\xa5\x86\x46\x98\x28\xd6\xd0\x73\xe0\x3f\xd2\x10\x64\x5a\x45\x67\x76\x97\x96\x9b\x99\x50\xba\xf1\xb1\xd3\x3f\x0e\x26\x70\xca\x2a\xa0\xc6\x07\x2e\x4e\x62\x96\x35\xf0\x4b\x91\xa5\x65\x3b\x96\x0a\xa4\x8e\xf5\x30\x02\x7e\x84\x45\x1f\x99\xe1\x7b\x4a\xc3\x60\x2d\x4a\x63\xd6\x9e\x73\xd4\x0e\x4e\xd5\xc5\xaf\xd8\x1b\x30\x0f\xcb\x76\x1c\x85\x26\x61\x61\x3f\x34\x81\x3f\x85\xd2\x91\x50\x6d\x26\xb2\x71\x45\xe0\xfe\xb9\x2f\xb4\xea\x4c\x00\xcc\xaa\x4b\xb4\xc4\x2a\xb3\x7a\x38\xc2\x8c\xf5\xba\x3c\x3d\x93\x25\x56\x80\x1e\x91\x31\x6f\x38\xa3\xa2\x4b\x6a\x86\x7f\xe9\x2b\x87\x67\x3c\x1c\x04\xe3\x0d\xa7\xdf\xe7\x49\xe4\x9f\x4e\x8d\x9b\xe7\x9b\x6d\x1b\x9a\x32\xb7\xa4\x51\x84\x78\xe2\x36\x4d\x45\x94\x55\xf6\xd2\x6c\x41\x92\xbc\x35\x65\x01\xfa\x8b\x55\x64\xf4\xd9\x0d\x89\xcf\xa8\xf6\x8f\x81\x2d\xfa\x51\xd2\x7b\xaa\xfa\x6a\x80\x2c\x4c\x95\x44\x2e\x7b\x27\x98\x68\xd8\xa0\x57\xc7\xbb\xf2\x48\x01\xab\xff\x7c\xd4\x78\xee\x39\x29\x37\xd3\xb3\x40\x00\xcc\x29\x8e\x28\xa2\x54\xf7\x82\xa5\x04\x2c\x73\x84\xad\xcf\x8e\x29\xb0\x00\x7e\xb8\x17\xed\x33\x18\x2b\xd7\x31\x2d\x71\x72\x05\x70\x15\x5f\x17\x8d\x49\x16\xb1\x54\x59\x62\x66\x4d\x67\x83\xd2\x0f\x26\x67\x8f\x3c\x19\xfe\x26\x06\x13\x16\x25\x98\x7e\x89\x1d\x2f\x46\x87\xf4\x4e\x3c\xab\x3a\x8e\x62\x1b\x16\x54\xb4\x50\x49\x30\xb3\x8d\xf9\xa4\xce\xa0\x66\x68\xc2\x55\xd3\xdb\x46\x8e\xfc\xcb\x91\x4f\x8b\xf8\x5a\x04\x45\xf7\xbd\x0d\x69\xb7\x0b\xd4\xa2\xe1\x71\x54\xb8\x30\xf2\x71\xe0\x13\x90\x2c\x2b\x7b\x30\x2c\x77\xe5\xef\x9b\x81\xd2\x30\xbd\xa9\x04\xd4\xba\x16\x8a\xad\xb4\x78\x8a\x56\x96\x2f\x39\x9f\xa0\xb1\x25\x52\x45\x4e\xbb\x23\x22\xad\x06\xf7\xa6\xb8\xe7\x8b\x4f\xa6\xb0\x87\xe7\x9b\x03\xd3\xb1\xbb\xbc\x2b\xdf\x05\x25\x0e\xc3\x24\x32\x46\x9d\xb4\x0f\x02\xbc\xfe\xa4\x64\xea\x65\x81\xeb\xd8\xf8\x8b\xcd\x35\x53\x54\x13\xbf\x31\xd1\x9e\x5e\x5d\x15\x9f\xa8\xf8\x37\xcd\x7a\xfc\x87\x78\x01\x37\x55\x6f\xeb\xcd\x09\x90\x35\x1a\xd8\x67\x69\x6f\x60\xaa\x06\x74\x05\x80\x99\x3c\xd2\x52\xd1\xbf\xa6\x19\x83\x9f\x8e\x7c\xd7\x31\x37\xc0\xa2\x52\xb4\xb3\xe5\x4b\x99\x1f\x62\xb5\xc7\x63\xfe\x11\x74\xc0\x9d\xb7\xbf\x4b\x3e\x1e\xaa\xb5\x86\xbd\xaf\xf1\x89\xef\x62\x33\xc2\xa5\xcc\x51\xdf\xa9\x0c\xc2\xea\x49\x21\x41\x41\x9a\x80\x79\x39\x03\xe2\x3f\x76\xfd\x1d\x63\x2d\xf4\x81\xd9\x84\xd0\x6f\xd7\x54\x41\x11\xb6\x06\x49\xc7\x6b\x5c\x02\xdb\x3a\x4d\xf3\x99\x8f\x75\x63\x46\x9c\x6e\x74\x72\x72\xeb\x43\x37\x2a\xc8\x80\x7c\xac\x80\x8f\xbc\x6f\xda\xed\x8d\x86\xf2\xfa\xbe\xa4\xa5\xa0\x2e\xe9\xc2\x78\x9a\x97\x99\x08\x80\x61\x3a\xde\x1e\x29\x07\xda\xdb\xca\x69\x29\x8b\x8a\xc2\x66\xda\x59\x50\x79\xee\x6a\x0e\x59\x66\xc3\x2a\xca\xe1\x05\x5b\x6c\xe5\xe9\xc1\xf0\x89\xcb\x23\xd6\xd3\x6c\x95\xcc\x2f\xd3\x24\x9f\x51\xed\x0f\x17\x46\x0a\xc5\x16\xad\x47\xa1\x9f\x3b\x53\xbe\xa4\xb0\xd9\x20\xed\x00\x4f\xa9\xed\x15\xda\x3e\x63\x56\xe6\x9b\xbd\x34\xc1\x22\x81\x9d\x17\x6c\x72\x4c\x99\x73\x23\x0f\x7d\x6f\x8e\xb6\x29\xa3\x1c\x79\xa9\xb9\x78\x64\xce\xbf\x9a\x4d\x5a\x5d\x31\xb2\xde\x1c\xa9\xea\xc5\x43\xfa\x16\x25\x23\x24\xff\xee\x18\x55\xeb\x42\xfb\x11\x61\x21\xfa\xb4\x87\xba\x3c\x0e\x6d\x8a\x94\x6b\xa5\x2e\xce\xab\x9e\x0b\x46\xfa\x49\x25\xe4\xff\xa1\xda\xd8\x87\xa6\xc8\x22\x93\x85\x88\xc3\x31\x30\x4f\x10\xd1\x97\x8f\x9d\x3a\xc4\x20\xcd\x8b\xfd\x8d\x2f\xbf\xac\xdb\xf8\x84\x15\x88\x02\x85\x93\xad\xaf\xde\x0d\xa2\x7d\x08\x7a\x62\xef\x61\xa9\x37\x71\x6a\x53\x60\xd9\x1d\xa5\x0a\x80\x2c\x0c\x11\xc8\xee\xb1\x1f\x40\x3f\x8b\x8a\x04\x22\xa3\xe7\x91\xfb\x62\xe7\xdb\x3d\xf6\x80\xfb\xd7\xfe\x13\x95\x15\xae\x9b\x0c\x2a\x1d\xa2\x84\xf2\x6e\xe0\x85\xee\xdf\xad\xeb\xbe\x1a\x9a\x8d\x2c\x8d\xe3\x86\xc2\xe0\xbf\xa1\xc2\xbe\x6f\xa8\xc0\xb5\xca\x6a\xc3\x2c\x6a\xdb\x0e\x3f\x74\x17\x9f\xfa\x36\xeb\x3f\xd0\x14\xab\x69\xfa\xc7\xd2\x52\x73\x10\xc5\x31\x45\x9f\xd2\xf0\xe3\x37\x16\x48\x9d\x33\xc6\xaf\x1f\xdd\xb7\x46\xfe\x2a\x06\x51\xc2\x68\xee\xac\x47\xec\xae\x62\x59\x42\x3a\x7a\x76\xa4\x01\x44\x5a\x64\xf8\x3f\xa6\xe2\x9a\x83\x4b\x4d\x13\x79\x43\x32\xa7\x54\xe5\x55\xab\x54\x99\xac\x4c\x32\xee\x6b\x5c\xf2\x1e\x1f\xae\xed\xe1\x9a\x53\xd4\x0b\xfb\x26\x33\x61\x61\x33\xf1\xdb\xf5\x95\x5b\x15\x6b\x5e\x9b\x42\xb3\x16\x16\x9a\x7d\x1b\x47\x61\x3a\x94\x85\x44\x28\x35\x7e\x2a\x9d\x55\x29\x16\x99\x9b\x08\xdc\x87\xc5\xeb\x98\xf6\xb6\x9b\x2e\xf3\x2c\x2f\x1e\x69\x9a\x38\x25\x0f\x8b\x79\x0e\x5d\x2e\xd3\x32\xc5\xc7\xda\x3d\xcc\x44\xb1\xed\xec\x9d\xe0\xe0\x3a\x80\xed\x43\xfc\x0e\x2a\x3e\xb7\x34\x93\xee\x6e\xe0\xdd\xbb\x3e\x08\x7c\xfd\x7d\x27\xed\x15\x08\x3c\xbf\x4b\xdd\x5b\x7c\x8c\x59\x81\x1a\xf8\xb1\xa9\x08\xfe\xc8\x4b\xcd\x57\xcd\xd0\x24\x96\xd5\x3f\x1d\xde\xa4\xfa\x72\xf6\xab\xb1\xc1\x16\x50\x12\xaf\x55\xbf\xcf\xc7\x6a\x23\x7e\xb5\x8c\x42\x90\x54\x9c\x93\x8d\xa3\x91\xa1\x46\x8a\xa0\xf8\x8c\x03\x92\x4d\xd2\xb3\xce\xb2\x41\x04\xed\x68\x20\x70\x3a\xab\xe4\x69\xee\x4d\xdd\xc4\xf3\xcd\xbc\x0a\xa2\x1c\x37\x43\x9a\x29\xab\x5f\x95\x5e\xca\x1a\x42\x17\xc9\x7a\x3a\x4e\xaf\xc6\xab\xa4\xda\xb5\x7d\x04\x3d\xdf\x34\x21\x89\xdb\x27\xae\x5b\xc3\xd9\x91\x3b\xd9\xa6\xab\x2a\xbc\x33\xe1\xd7\xca\x28\xa3\xdf\xa8\x96\x1a\xd1\xd0\xa3\xd5\x85\x4f\x6a\xc8\x9f\xcd\xc2\xac\xda\x59\xfa\x7a\xec\x47\x57\x54\xe8\x76\x37\xf0\xce\x45\xac\xa5\x8b\x74\x68\x6e\x2c\xa1\x62\x94\x65\x36\xb6\x6b\x26\x29\xe6\xbc\x0d\xeb\xe9\x91\x6a\xa3\x3f\x4e\xcf\x13\x5f\xb8\xb3\xe5\x1d\xe4\xfe\x4a\x11\x04\x2e\xaa\x5c\x32\x1f\x56\x91\x76\x3e\x47\x3f\xc7\xf2\x0d\x01\xc5\x36\x08\x0e\x61\xb1\x88\x7d\x61\x93\x68\xe7\x18\xba\xe7\x47\x7e\x25\xfa\x8b\x91\xb7\xa6\x6f\x9b\x64\x35\xa7\x16\x11\x65\x69\x27\xdd\x02\x0d\x12\x52\x07\xf4\x7f\x4f\x75\xd8\x41\x78\xdd\x69\xf0\x1d\x9d\xe7\x0b\x7d\x83\x1e\x3e\xae\xe3\x1a\xb4\x8b\x40\x54\x78\x93\x42\xb9\x2d\xb2\xa6\x5a\xde\xda\x09\x0f\x3d\x40\x7d\x5f\x47\xd6\xe3\x3e\x54\x2d\x62\xfc\xa1\x3a\xe0\x70\x98\xd9\xc2\xbe\x06\xd2\x38\x2e\xe0\x2d\x45\xb6\x7a\x6b\x0a\x57\xfb\xea\x57\x9b\xbd\xcc\xf4\x39\x2b\xc3\x70\xfa\x93\x91\xc2\x45\xff\x64\xaa\x48\xf3\xf2\xf2\x17\x9b\x9d\x28\x2c\x4c\x91\x66\x02\x6b\x02\x37\x7d\x47\x61\xa8\xef\x28\xac\x2b\x4d\xa4\xe2\x26\x68\xa3\x62\x15\xec\x9c\xf2\x23\x25\xf7\xf4\xd8\x6c\xc8\xc8\x15\x8b\xa4\x86\xd2\xe7\xab\xc9\x6d\xba\x51\x62\x92\xd0\xf2\x8a\x89\xd4\xf4\x13\x25\xe3\xf5\x89\x2a\x4b\xa5\xa6\x50\x52\x6f\x1f\x6b\xa9\xb7\x8f\x75\x0f\x53\x3f\x4d\x73\xa6\xf8\x83\x4e\xc0\x76\x83\x7c\xa2\xf0\xaa\x22\x33\x1d\x9b\xe5\x7b\x3d\x07\xe9\x18\xed\xff\x58\x32\xef\xd3\x88\x00\xa6\xf3\xbb\x93\x54\x45\xfa\x69\x44\x09\x8f\x68\xac\x80\xa3\x77\x8b\x28\x05\xfc\xe9\xc0\x0f\xda\xab\xc1\x84\x4e\xca\x33\x3a\xc6\xa3\x97\xcf\x0f\x0d\x99\xd6\x07\x8a\x81\xfc\x41\x9d\xc5\xa0\xc9\xd2\x32\x81\x44\x3e\x96\xc7\x19\x62\xcf\x63\xa9\xbe\x41\x57\x0d\x76\xda\x93\x3a\xb8\x88\x92\x4e\xba\xde\x50\xf1\xef\xa5\x40\x45\xc6\x97\x54\x30\x9e\x50\xcc\x4a\x4f\x05\x73\xe0\x8e\xd2\x0b\xfa\x4b\xb4\x58\x21\x32\x67\xe7\x0d\x2e\x01\xa3\x78\xe6\xc4\xf5\x9c\x46\xd3\xee\x96\xaa\x42\xdc\xd3\x0a\xc5\x17\x91\x01\xa1\x94\xf1\x07\x7a\x0a\x97\x51\xdc\xd9\xa7\x1a\x88\xbf\x4b\x11\x1b\xde\xf6\x43\x60\xb8\x48\xfe\xcf\x06\x9e\x2b\x72\x1d\xcf\x59\x2c\x04\xd5\x5b\x3a\x49\x8c\x52\xf0\x6f\xcf\x07\x5e\x2f\xf4\xf6\x48\x31\x21\x4e\xaa\x1d\xe7\x0a\x5c\xca\xb1\xd0\x9c\xae\xe1\xd3\x35\xe3\xa8\x5b\x08\x32\x85\xcc\xe9\xab\xb4\xee\x89\x84\xb8\x2a\x50\x4f\x9b\xb1\x2c\x1e\x69\xf6\xad\x59\xb3\xc9\xbf\xc7\xfe\x40\x96\xbf\xbd\x32\x46\x7b\x0d\xbd\x3b\xac\xcd\xbc\x0b\xf3\x89\x12\x85\x89\x06\xc3\x38\x92\xfe\x23\x69\x78\xaf\x86\x87\x28\x74\xd5\x98\x9f\xf4\xcd\x9a\xa5\x4c\x00\x69\x06\x4b\x0d\xb8\x14\xdc\x55\x8a\x6e\xa3\x9e\x8d\x61\xfa\x5d\x7a\xdb\xe2\xb4\xa1\x83\xfc\xe1\x2f\xf4\x66\xab\x05\x97\xd1\x4a\xa4\xbf\x28\x14\x71\xef\x1b\x9f\x10\x2b\x44\x30\xcd\x67\x94\x22\xd7\x60\x98\xe6\x96\xfb\x89\xd8\x5f\x8d\x5e\xb9\x78\xad\xd5\xd8\x39\xf5\x32\x33\xf4\xb5\x3c\xd4\x1f\x8f\x8f\x94\xe3\xe9\x71\x97\x26\x76\x38\x2a\x66\x9e\x1f\x62\x6d\x00\x4a\x62\xc5\x44\x9f\x93\x9d\x64\x1a\x45\x78\xa5\xd9\x4d\xb3\x90\x44\xbb\x0e\x1d\x72\x41\xac\x62\x20\x9d\x75\x0a\x59\x6d\x92\x17\xcb\x1b\x4a\x3f\xe5\xed\xc0\xdb\x41\xbd\xad\xda\xa8\xaa\x3d\xd6\xe4\x2c\x14\xc0\x10\x86\x6a\xf8\x7f\x13\x83\x1b\x74\xb8\x4d\x97\x35\x66\x26\x8a\xdb\xc4\x21\xa0\x11\x51\xc7\xb1\x94\x3f\x1d\x6c\xe4\x55\x90\xeb\xe8\x4c\x18\x3d\xec\xc3\xc5\x27\x8a\x99\x50\x85\xc5\xd8\x6f\xf0\x7f\x88\x27\xf9\x58\xc9\x8d\x14\xe9\x40\x41\x99\xc7\x14\x94\x79\x6c\x6a\xeb\x5b\x5a\x3a\xdc\x34\xc3\x21\x75\xc3\xaf\xcc\x3b\xb6\x81\x5f\x4f\xb7\x46\x4a\x16\xf2\x49\xa8\x35\x61\x88\xd4\xf8\xe5\x2d\x34\xdb\x65\x16\x73\xcd\xcb\x79\x5c\xba\xf2\xdd\x43\x35\xeb\xaf\x28\x4d\x98\xf5\x17\x5e\x7d\xa1\xa1\x7b\x06\x8e\x6b\xd5\xf7\x69\x7b\xf9\x83\x4b\xd5\xb4\xca\xd2\xa1\xcd\x18\xba\xc7\x6f\x7d\x3c\xf2\x4c\xe4\x8f\xa7\xd6\x8b\x85\xc5\xea\xdd\xe4\x32\x24\x11\xfb\xb2\xf6\x33\x9f\xb4\x54\xf9\x85\xe0\xe3\x7d\x4a\x45\xfe\x1c\xe2\x2b\xd1\xb7\xf1\x61\x0b\x6b\x8d\x22\x0b\xbf\x14\xf8\x26\xb8\x4f\x47\x7e\x47\x3d\x17\x28\xb7\xa4\x7b\x81\x52\x73\xe4\x9b\x45\x2e\xf8\x2e\x03\xdb\x58\xb5\xdf\x05\x08\x85\x1d\x60\x4b\xe1\xd0\xff\xe9\x7f\xf1\x37\xe9\xbe\xb1\xdf\x9c\xa7\x85\x99\x8f\x55\x99\xa1\x9b\x66\x45\x99\xb0\x15\xa6\xd2\xc8\xf4\x62\x9d\xfb\x7d\x20\x5b\xa4\x43\xe4\xb0\x52\x01\xa5\x9f\x96\xd2\x68\x5d\x61\x2c\xb7\x61\x9a\xa0\x7a\x83\x65\xe7\x61\x30\x99\xda\xad\xcc\x3b\x25\xf4\xcf\x4f\x82\x1d\xcf\x3d\xd7\x5c\x5a\x5a\x7e\x92\x7e\x42\xd5\x31\x05\xc0\x01\x32\x2e\xa4\x05\xd5\xea\xfa\xf5\x60\x4a\x5b\x19\xdc\x8b\x8f\x03\x5f\x61\x7a\xb2\x55\xcd\x67\x69\x3c\xa0\x87\x2b\x86\xcc\xd5\x25\x61\x0f\xbd\x80\xea\xb7\xd3\x75\x76\x00\xc2\x25\x35\x30\x63\xb3\x6a\x1b\x4a\x55\x16\x9d\x57\xa2\xf7\xe1\x25\x40\xfb\xf6\xa7\x55\xa7\xc1\x26\xa9\x25\x89\xe6\x00\xa5\x02\x58\xec\x77\xb6\x7c\x45\x6d\x27\xb0\x09\xc4\x72\x37\x11\xda\x48\x5f\x59\xb5\x4f\x22\x37\xdb\x87\x8e\x29\x91\xce\x6a\x7c\xe9\x57\x5d\xf5\x9b\x86\x93\xd8\x8b\x4c\x28\x81\xd1\x83\xc4\xb2\x74\x47\xe1\x43\x8d\x16\x6d\xd9\xae\xad\x60\x65\x9e\x8d\x91\x0e\x68\x6b\x56\x04\xfd\xac\xff\xa6\xfb\x32\x4f\x51\x9a\x8b\x27\xcc\x12\x68\x40\x59\x66\xd0\x58\x81\xc1\x3c\x47\x50\x0c\xf6\xe2\xf7\x29\x4b\x15\x9f\xa1\xc6\xaf\x48\x46\xf4\x90\xf1\x36\x7c\xd7\x7d\x87\x4e\xf7\x32\x6b\x8a\x39\x85\x5a\x00\xe9\x72\xfa\xa3\x4a\xff\xcd\x57\x01\x6e\x7d\x41\x55\x1e\x76\x8c\x7d\xf0\x9c\xd0\x9a\xe6\x98\xf6\x6f\x04\x6a\x83\x26\xce\xf1\x16\x80\x26\x7c\xe3\x31\x95\x04\x67\x2f\x64\x2f\x34\xfc\xd2\x7a\x3f\xf0\x3e\xc0\xf7\x55\x7e\x5f\xa5\xb4\x71\xbe\x4b\x97\x1a\xce\x61\xbe\x3a\x37\xc1\xea\xb9\xf0\xc9\x44\x4f\x1c\xd4\x75\x1d\x81\xdf\x2b\xe7\x9f\x53\xcb\xbd\xe9\x5b\xd3\xd9\x45\x03\x03\x91\xda\x66\xa0\xa4\xdb\xb8\x93\x81\x7b\xb8\x31\x00\x98\xae\xa8\xf4\x02\x6e\x28\x31\x82\xd3\x35\x72\x43\x2b\xcd\x0e\x35\x78\x35\x7c\xa9\xf0\xb2\x72\x31\xba\x5c\x67\x44\x3b\x88\x5e\xe3\x12\x85\xd4\xf4\x3c\xd4\x7d\x76\xaa\x74\x75\x74\xbe\xd9\xb1\x64\xc5\x82\x27\x78\x42\xf9\xda\x9c\xa8\x13\x40\x6a\xa7\xeb\x5e\xdc\x4e\x0c\x53\xaa\x5f\x10\xbf\x14\xd9\x3d\x55\x87\xa3\xab\xc8\xdd\x55\x04\xed\xbb\x13\x41\xd0\xeb\xec\x81\x85\x91\x75\x4e\x83\x63\xe7\x94\xa6\xb1\x5d\xb3\xd9\x46\x9a\xd8\x27\x1a\xce\xfb\x9a\x41\x27\x29\x99\xfb\x4e\x69\xc8\xe3\x4f\x60\x78\xf8\xc4\x6d\x1a\x58\x62\xc6\xae\x59\x1c\x98\xe7\x4c\xc4\x0e\x26\x9c\x17\x68\xb0\xe0\xdd\x6e\xd5\x18\xff\x91\x2a\x58\x66\x32\xd1\x12\x12\x9e\xb9\x2f\x8d\x5d\x53\x99\x63\xdf\xc6\x9d\x03\x8a\x26\xce\xf6\xf2\x00\x89\xde\x52\xb1\xdb\x5d\x6c\x4b\x02\x6e\x57\x37\xc4\x7f\x34\xd2\x0e\x07\xd5\xfd\x88\x0e\xb9\x42\x6d\x6e\x63\xbc\xf3\xc9\xa4\x15\x92\x6f\x9e\x3f\x8e\x67\x83\x58\xee\x9f\x8e\x94\xa5\xc5\x26\xef\x76\x62\x22\x43\xef\x1c\x5b\x0e\x4a\x4d\x9f\x85\x6a\x1d\x9d\x5f\x6c\x76\x4d\x36\x70\xe0\x0e\x10\x88\x4f\xf1\xb3\x7c\xa2\xc4\x77\x56\xa3\x4e\x62\x37\xb0\xbf\x61\xd3\x3e\xad\x18\xa3\xa7\x6b\x8d\x16\xa3\x24\x84\xbb\xa5\x22\x20\x9d\x53\x74\xd9\x73\xae\x72\x57\x98\x76\x6c\xc9\x29\x98\x86\x18\x0b\xfd\xaa\xa7\xfc\x0d\x95\xd9\x75\x48\x07\x08\x46\x27\x22\xf9\x4a\xd7\xe5\xf4\x6a\x1d\x1b\x82\x0d\x9e\x27\x58\x3b\x98\xd7\x60\xf5\x21\x92\x7a\x18\xa8\x9d\x7a\x7a\x4a\x51\x2c\x9e\xfa\xfe\x52\x54\x9e\xf0\x05\x7c\x1c\x6c\xdb\x9d\x97\x96\x96\x9b\x8b\x47\x7e\x0a\xef\x06\x77\xb0\x0f\x40\x94\x23\x1a\xab\xbd\x13\xfb\xb3\xc4\x84\xd5\xde\x05\x2e\xde\xbf\x1e\xa9\x3d\xf1\x5d\xe4\xff\x48\xbf\xa1\x77\x2b\xa5\x8d\x6a\x6d\x40\x98\x70\x8a\x36\x0c\x71\xe9\xf2\xac\xe8\x7f\x80\xf2\x1d\x1d\x7f\xe1\x00\xb6\x44\xdc\xfb\x05\xc2\xca\x70\xeb\xd7\x91\x2e\x0a\x10\xdb\xf8\x8a\x18\x11\x6c\x02\x5e\xc5\xbb\xfe\xdf\x10\xa3\x60\xfc\xed\x6f\x35\x9e\x7b\x8e\x27\xea\x29\xa5\xbe\xc8\x3d\xab\x8c\xc8\x63\x8a\xb0\x32\xbc\xf2\x7a\x85\x50\x91\x2c\xba\x9e\xf7\xd7\x35\x51\xb6\x6e\x98\xbf\x8b\x3b\xb8\xaf\xa5\xc9\xef\x07\x1e\x3f\x0c\xb3\xa8\x88\xc2\x28\x1f\x00\x79\xc3\x22\x73\x55\x59\x09\x20\xe4\xc0\x86\xca\xed\x4e\x12\xbc\xa9\xb8\x68\x5a\x35\xb8\x1a\xc1\xdd\xcc\x8a\xed\x71\x9d\x37\x88\xa4\x44\xb1\x6d\x9b\x84\x97\x47\x59\xc6\x35\x4d\xa3\x56\x8d\x27\x8e\x06\x51\x61\x3b\x30\xf0\x17\x0c\x96\x2e\x0f\x00\xe4\xad\x40\x01\x57\x20\xb2\xe2\xe5\xb3\xae\x8e\x54\xea\x6b\x68\xf2\x65\xd2\xa9\x02\x7b\x37\x62\x45\xe0\xd7\x3f\xf9\x6f\x4f\x05\xf7\x8b\x47\x9a\xb1\xed\xd9\xa4\xa3\x3a\x8b\x4e\xa8\xce\xa2\x13\x2a\x78\x4e\x3a\x1b\x7b\x3c\x2b\xf5\x09\x5d\x9d\xbd\x8f\x8b\x83\x44\xd0\x2e\x8a\x8b\x38\xa6\x9b\xb0\xac\xbf\xac\x75\x97\x46\xaa\x9c\xcc\x4e\xf3\x42\x35\xda\x9e\xdb\x1f\x5c\x6a\x16\x59\xca\x7a\x1e\x98\x58\x8f\x95\x01\x2e\x07\xab\xe2\xbe\xab\x4a\x09\x2f\x98\x17\xd2\x17\x1a\x8a\x43\x77\x8a\xae\x40\x34\xe4\xbc\x9e\x47\xdb\x14\x85\x88\x57\x3b\x14\x68\x61\xd1\xc1\x43\x4a\x94\xb2\x6f\x08\x15\x70\x6d\xdd\xae\x27\x98\xc3\x3e\xdc\xde\x29\x04\x9a\x7c\xa2\x80\xbb\xdc\x12\xaf\xee\x09\xba\x7b\x34\xac\xcd\x8e\x95\x0d\xe6\x37\x55\xac\xdc\x68\x79\xa4\x7e\x6e\xac\x78\x03\xbf\x89\xdd\x00\xfb\xc4\x69\xa5\x2b\xcb\x6d\x84\x20\x36\x9c\x09\xb4\x6b\x26\x8d\x09\xb0\x0b\x9e\x6c\x79\x94\x62\x68\x8b\x2c\x5d\x8b\xc2\x7e\x43\x51\xe6\x38\x18\xe6\x93\x3a\x69\xf2\x6e\x9a\xd9\x41\x9a\x03\xd6\x44\x88\x71\x5d\x85\x1b\xd7\xeb\xde\x61\x46\x82\xc0\xae\x59\xe4\xfb\xaa\xa0\xfe\xfd\x89\xa0\x23\x2b\x07\x54\x4a\x74\xc6\xe8\x2b\xf3\x35\xc6\xe8\x49\x14\x9a\xcc\xf4\x4a\xa3\xfc\xb8\xbe\x4e\x98\x84\x90\x86\x65\xa3\x31\x61\x58\x66\x06\x5e\xe6\xce\x50\x10\x59\x0d\x1f\xd7\x36\x26\x11\x6f\xb8\xa1\xf9\xc1\xd8\x4b\x84\x2c\xfc\x79\xaf\x36\x52\x58\x1b\x43\xb7\x92\x03\x5b\x4c\x8b\x8b\xca\x99\x92\x53\x0f\x21\x8d\xd0\x58\x11\x3a\x89\x2f\xfd\x30\x8a\xc1\x1f\xaf\xeb\xb2\x34\xc3\x61\x6c\xca\x1c\xc4\x18\xd7\x98\x57\x0d\x20\x69\xcc\xab\x41\xfc\xda\x65\xd6\xb1\xd0\xdc\x75\xfa\xa2\x4e\x19\xd5\x33\x0f\xd6\xfb\x69\x6c\x73\x13\xdb\x39\x8a\xb4\xb5\xd9\x88\x62\x93\x89\x0e\x2a\xf6\x5c\x6c\x86\x10\x22\x40\x6a\x32\xa3\xd2\x09\xca\x8f\x3d\x34\x78\x4c\x19\xbe\x1d\x73\xde\x38\xa1\x35\x5c\x66\xc3\x28\xfe\x53\x1a\x49\x7c\xac\xb4\x77\xbb\x26\xef\x47\x69\x32\xa7\x3a\xf1\xf0\xec\x00\xd3\x3c\x0e\x26\x1c\xdd\xbd\xb5\xdb\x6b\xca\x16\xe1\xb5\xd1\x3e\x0f\x32\x26\x3f\xa3\x7c\xdf\x7f\x8f\x66\x3c\x62\x0b\xc6\x26\xa4\x4b\xbd\xe1\x9c\xe1\xb6\x28\x99\x74\x1a\x1d\x07\x65\xe9\x9f\x1b\xab\xac\xe5\xde\x48\x57\x7a\x68\xd3\xc7\x54\xc2\x8c\x04\xc2\xfd\xe9\xc8\xf7\xe1\x5c\x0f\xbc\x73\xf0\x5b\x80\x88\x59\x4b\x52\x95\x79\x1e\xd0\xed\x89\x7e\xb6\x72\xe6\x3c\x83\x7b\x55\x42\x19\x8b\x0c\x26\x3c\x1e\x29\x68\x42\x7a\x23\xd9\x24\x08\x03\x0d\xc9\xfb\x43\x0d\x86\xdf\xa0\x3c\xdc\x19\xfd\x2c\x2c\x70\x56\xd3\x68\x51\x4e\x8e\x67\xbd\x1b\x79\xb8\xb4\x8a\x43\xc3\x05\x37\x70\x33\x50\xdc\xa0\xeb\x9a\x63\x3b\x8c\x12\x7a\x7d\xd5\xd7\xa0\xf8\x76\x43\xb9\xcd\xdd\x55\xea\xab\xe7\x03\xc5\xdc\x38\x87\x8e\x5c\xfe\xc4\x54\x2f\x7e\x15\xd4\x96\xc3\x5e\x66\x3a\x82\x51\xe1\x49\xc0\x5c\x90\x8f\x55\x24\x99\x45\xe1\xaa\x8d\x19\x38\x53\xe8\xbb\x28\xbc\x5c\xaf\x91\x6a\x78\xb1\x99\x0f\x6d\x18\x75\xa3\xb0\xe1\xfb\x42\xa0\x91\xce\xc7\xc1\x53\x4a\xbd\x70\x68\xc3\x02\x24\x5b\xd4\x04\xb9\x8a\x02\x2a\xc9\x03\x60\x1b\xfc\x3f\x23\x65\xb1\xf2\x40\xed\xb6\xbf\x14\xc7\xbb\x69\xe4\x38\x69\xda\x95\xf9\xad\x31\x31\xad\xb0\x64\x3e\x0a\x14\x5c\x78\x45\x4b\x6c\x10\xb2\xf0\xa2\x57\x10\x5b\x76\xec\xac\xfd\x53\xba\xfc\x0b\x0b\x55\x64\x1d\xa6\x65\x66\x7a\xb2\xd8\xe1\x91\x31\xfd\x8a\x4f\xc6\x35\x82\xcb\x03\x13\xc5\x4e\x21\x5f\x8c\x8b\x3c\x11\xd9\x2b\xe9\xaf\x9b\x6c\x68\x3b\xb3\x13\x1b\x7e\xc3\x39\x40\x41\x04\x52\xac\x04\x55\xa9\xee\x93\x5a\xde\x48\x16\x0d\x4c\xb6\x81\xe2\x85\x56\x79\xd6\x24\x6b\x2c\x30\x37\x9d\xa0\x7b\x66\xa2\x0e\x17\xea\x30\x96\x41\x5f\xe7\x63\xc5\x9b\xcc\xc3\x74\x68\x67\x54\xa7\xd9\x47\x98\x5b\xf8\xf2\xdf\xa1\x2f\xe7\x46\xee\xa9\x1c\xbf\x4a\x36\xfb\xd6\x0c\xe7\xfc\x57\x3f\x52\xf3\x9d\x05\xc0\x31\xe1\xd9\x24\xdd\x75\x32\xba\x82\xd3\x8d\x3a\x63\x8d\xdc\xda\x0e\x47\x3f\x58\xdd\x1e\x07\x1e\x24\xc4\xdd\xcb\xf1\x54\x1f\xe4\x62\xb5\xc3\x2b\xbf\xad\x37\x55\x90\xfc\xa6\x2a\x51\x9a\xb0\xd8\xad\xca\x5b\x07\x5a\xda\x28\xeb\xcc\x48\xb5\x01\xbc\x47\x4f\x01\x65\x15\x52\xc9\xd8\x82\xb2\xbd\xf8\x74\xd1\x75\x4a\x31\xa1\x06\x83\x1e\xd8\xc2\xb4\x53\x88\xdf\x3a\xc4\xe5\x5d\x9d\xa6\xbd\xeb\x18\xce\x79\x99\x87\x76\x58\x44\xed\xd8\x12\x60\x2a\x6a\xc7\x34\x4a\x1c\xd3\xa6\x5a\xe3\xc0\xf3\xfe\xf1\xd4\x0f\x2e\x1e\x69\x76\x22\xe2\x7c\xf6\x65\x79\x10\x07\x89\xea\x0b\xc5\x40\xc2\x49\xff\xdb\x6c\x60\x92\x5d\x0e\xfe\x99\xfd\x1b\x2d\xcf\x38\xb9\xfe\xf3\xe3\xea\x7d\x22\x98\x3d\xcd\xcb\x29\x16\xe4\xc7\xf4\x16\xf0\x6d\x33\x63\x1a\x33\x32\xc1\xbf\xa0\x7a\x54\x92\x24\xdf\x20\xc7\x69\x43\xb7\xa3\xb5\x4a\xb0\xff\x5f\xd0\x35\xc6\x47\x35\x3c\xfa\x95\x66\x66\x86\x11\xe2\x75\x4e\x7b\xe8\x46\x24\x05\x52\x12\x68\xe5\xeb\xe5\x6a\xa4\x02\x2e\x10\x4c\xf9\x78\xfc\xac\xd6\xd9\x47\xd7\x50\xae\x05\x50\x80\x1e\xf1\x71\x4d\x7a\xbc\xdc\x0c\x4d\x2e\x9a\x04\x4c\x3e\xc0\x92\x24\x4c\x04\x5f\xc1\x65\x35\x55\xdf\x51\x75\x35\x50\xd2\xf2\x93\xdc\xba\xae\x5d\x7f\x82\x9e\x81\x96\xe3\xc5\xd8\xfa\x70\xb2\xa2\xa7\x5b\xab\x03\x25\x7e\x1b\x28\xdd\xbf\x99\x96\x6a\xbd\xbd\x84\x6c\xda\x91\xa2\xaa\xe5\xd5\x79\x90\xbb\xc1\x70\x5e\xe5\x05\x14\xe6\x1a\xe4\x78\xcc\x10\xc6\xee\x26\x74\x61\x5f\xb1\xec\xa5\x65\x36\xb0\x20\x16\xbb\xc5\x4c\x1b\x33\x37\x9c\xc4\xcb\xfd\xba\xb5\xa3\x97\x99\xa4\xa0\xca\x38\xbb\x57\x03\xfa\x74\xfe\xca\xae\x75\xe6\x2d\x45\x4a\x83\x2c\x0c\xb5\x62\xd0\x5f\x23\xf2\x05\x94\xc9\xc7\x75\xb4\x8d\x28\x09\xe3\xb2\x43\x54\xa4\xad\x7b\xf8\x1d\x2c\x77\xc7\xb5\x12\xca\x35\xa5\x4c\x97\xae\x27\x22\x56\xa8\x38\x6a\xf4\x9e\x84\xbc\x56\x13\x76\x0e\x4d\xe4\x34\xfe\x18\x2e\xd0\x1a\x12\xd3\x8a\xbd\xdc\x21\x5e\x94\x99\x73\x4d\xe5\xae\xbb\x40\x11\xcf\x39\xcf\x06\x70\xff\x2f\x46\xaa\x01\xa7\x53\x92\x2f\x86\xef\xd3\x6a\x8c\x15\x16\xd4\x98\x22\xfb\xbe\xbc\x32\xaf\x76\x76\x57\xcc\x78\x4f\x8d\xfd\xf7\xb4\x60\x05\xa9\x28\xec\xaa\xc2\x3e\x84\x83\x6c\x92\x89\x78\x18\xea\xac\xfc\x1f\x63\xdf\x15\xf7\x8d\x60\x42\x7b\xb7\xfa\x19\xdc\xff\x63\x85\x9e\xb7\x6d\x91\xcf\x79\x12\xf1\xf9\x40\xf3\xb0\x15\x21\xe3\x8e\x32\xfa\xf8\x08\x8b\xa6\x78\x7c\x09\x30\xd1\xb7\x59\x6e\xe3\x2e\x7a\x6c\x27\xb0\x32\x96\xf8\x47\x84\x09\x20\x69\x1f\xed\xbe\x18\xa3\x0f\x6b\xa7\x39\x09\xde\x5b\x8e\x97\xf0\x4c\x98\x24\xc9\x27\xdb\x71\xb0\x23\x2f\x35\x97\x96\x0e\x3f\xed\x6b\xe7\x7f\x48\x51\xa4\xab\xa4\x79\xd9\xfa\xe3\x98\x90\x42\x55\xa0\x67\xe9\x60\xa5\x85\x45\x07\x84\x56\xcf\x55\x4b\xf4\xb3\xb9\x1d\xe6\x36\xb0\x8d\xeb\x23\x05\xd5\x5e\xa2\x1d\x15\x45\xc3\xb9\xb1\x32\xdf\x9f\xc3\x6a\xce\xee\xd3\x94\xd8\x60\x43\xfe\x54\xe9\x88\xc2\xdd\x02\x73\xe0\xff\x02\x8a\x25\xb4\xef\xed\xf3\xf6\xe5\xc5\x23\xd5\xc1\x6a\x43\x19\x92\x02\xd8\x17\x0b\x8d\x1a\xe5\xa8\x8e\x0d\xc9\x26\x92\x19\x18\xb8\xe1\xdb\x8a\x3a\x73\x41\xaf\x73\x27\x6a\xbd\xdb\x5c\xf1\x1f\x21\x1b\x76\x3f\x30\x8f\xf9\x58\x3b\xc2\x9a\x81\xa5\x2d\x0d\xa1\xff\x63\x25\xe5\x78\x17\x8f\x8d\xcd\xf3\x47\x13\xb6\xb1\x07\xbd\xe3\x65\xc3\xbd\xb2\x1b\xaa\xf8\x99\x86\xc5\x0b\x9f\xa3\x07\x8a\x32\x3f\x58\x28\x58\xfe\xaf\x07\x4a\x2c\x97\xc5\x32\x9c\xc5\xa2\xb7\xe7\x05\xe7\x07\x71\xdc\x5f\x05\xca\x7c\xf2\x87\x14\x3a\xc9\x1e\x5a\x0d\x00\xd4\x02\x50\x24\x00\xf0\xbe\x9f\x08\x71\x98\x57\xd7\x03\x8d\xbb\xfe\xb1\x22\xc8\x32\x73\x5e\x14\x69\x95\xc5\xa8\x15\xbe\x2b\x46\xca\x1f\x12\x78\xc0\xc7\x2a\x14\x4f\xf3\x08\x31\x2e\x66\xdd\x23\xe5\xbb\xfa\x68\xc2\xf4\x28\x1b\x92\xd4\xf8\x8c\x2f\x31\xdf\x09\x94\xb2\xdb\x55\xb5\x05\x7c\x3c\x35\xd5\x16\x16\x9b\x83\x28\x29\x0b\x47\x6b\x10\x09\x7a\xfa\x69\x3e\xa9\x9d\xa0\x51\x12\xa6\x03\x3b\xa3\xd5\x27\x7f\xa4\x44\x39\x2e\x6b\x67\xdb\x1b\xaa\x6f\x26\x29\x32\x12\x0a\x9c\xf1\xbb\xc5\x26\x56\x14\xac\x67\x1f\x68\x8f\xad\xd3\x0a\x79\xc9\xd2\x38\xed\xd8\xd7\xc4\x31\xca\xb9\x5e\x79\xce\xd3\x95\x9a\xd2\xc3\x8b\x4d\xd3\x59\xf3\x44\x02\xb7\x71\x7b\x51\x29\x2d\x6e\x6f\xc0\x15\x66\x2b\x50\xba\x1d\xb1\x05\x95\x58\x6d\x68\x8b\x2c\x02\x6e\x80\x6e\x30\xbe\x53\x3e\x71\xdd\x0c\x04\x8c\xae\x67\x91\x7b\x37\xb8\xa3\x47\x18\x87\x02\xc2\x7a\xde\xcc\xae\x29\x05\xb0\x85\x85\x66\x37\x4e\x8d\x17\x2b\x94\xb0\x51\x85\x90\xaa\x8c\xb4\x9a\x76\x79\x3f\x06\x0a\x3a\xa3\x4d\x60\x67\xc6\x75\xb8\xf0\x46\x9a\xad\x3a\x73\x7c\x4c\xd3\xeb\xb8\x1b\xc4\x12\x92\xbc\x63\x42\xce\xb6\xb6\xc3\x6b\x0b\x0b\xcd\x3c\x4d\xf2\x09\x0d\xc6\x8f\x02\x6d\x4c\x00\xbd\xd7\xe3\x0a\x70\x2f\xa2\x41\x9b\xe8\x49\xae\xd3\xe2\xae\x52\x84\xb8\xab\xde\x46\x3b\x0a\xa9\x99\x0c\x41\xc2\xec\x58\x95\x5e\x3f\x09\x3c\xd5\x90\x2d\x9c\x9d\x61\xaf\x03\x9e\x9f\x69\x6d\xcf\x4b\x96\x96\x9a\x6d\xa3\x33\xb2\xd3\x58\x2f\x44\x0d\x6d\xfb\xfd\x1d\x9d\x6f\x16\x7d\x53\xec\xf2\x13\x7e\x1f\xf2\x53\x11\xde\xad\x56\x08\xa1\xc8\xd0\x92\x86\xbb\x78\x82\xf8\x85\x0e\xd8\x38\x28\xb4\xf0\xd3\xca\xee\xea\xb9\xce\x0b\x0d\xc5\x51\xb9\xaf\xe4\x87\xee\xbb\xb6\xd7\x30\x4d\xd6\x6c\x52\x44\x55\xb4\xd5\x98\x78\x31\x3e\xe0\xbb\x3b\x85\x4d\x88\x50\xc4\xaa\xb5\x43\x8a\xed\x10\x1d\xdc\x0a\x54\xd9\xe2\xec\x68\xa2\xf9\x59\x59\xee\xc7\xc3\x19\x45\x7a\x04\x07\x59\x5c\x12\xe9\x33\x6c\x22\x14\x7c\x96\x68\xbd\xe9\xac\xd9\xac\x88\x72\xef\xa7\x83\xf7\xc1\x32\xc7\x7c\x52\xcb\x52\x59\x8b\xec\xba\xec\x50\xd8\x95\x6e\x2b\x69\x4e\x56\xc3\x12\x65\x49\xd5\xe4\x42\x3d\xfc\x24\x8d\xed\x38\x88\xef\x2b\x4a\x0b\xe6\xbb\xcb\x5c\x9d\x7f\xe3\xfb\xaa\x98\x4c\x2a\xcf\x34\x57\x0f\x8a\x02\xce\x6d\xc2\xbe\x44\x0d\x87\x2e\x5e\xe8\x32\x35\x25\x8d\x8e\x89\x57\xb9\x7f\x56\x9c\x90\x94\x98\xea\x55\xdf\x68\x15\x57\x99\x21\x09\x92\x3b\x57\x0e\x0e\x8b\xe6\x28\x7e\x43\xc9\xe7\x5d\xaf\x44\xbe\xf3\x40\xcb\x4f\xf3\x57\xcb\x0e\xb7\x73\xb1\xd0\x05\x6d\x59\x7c\x3c\xda\xaf\xba\x27\xdb\xc5\x3e\x7a\x90\xce\x70\xab\x8a\x7a\xb0\x4f\x9e\xc3\x22\x2b\xc2\x77\x14\x6d\x30\x25\x57\xef\x93\xff\x86\x06\xa5\xea\x7b\x58\xf4\x2b\xbd\xd3\xf1\x87\x80\x36\x10\x96\xff\x95\x2e\x06\xf1\xf2\x26\x05\x50\xfc\x37\xae\x5f\x3d\x1f\xa6\x99\xe9\x44\xe1\x8c\x7f\x4e\xe8\xa5\x56\x50\xcc\x92\xeb\xbb\x68\x7e\xc6\x10\x2b\x8b\x28\x66\x8d\x23\x2f\xa7\xfa\xb1\x6e\xb9\xff\xb8\x8e\x42\x1a\xa6\xe1\xea\x30\x2a\xb4\x9c\x39\x32\x3d\x51\xfb\xa9\xd1\x28\x0f\xd3\x32\x2b\xb2\x34\x1d\x68\x5f\x17\x7c\x4a\xd4\xd3\x3f\xa7\x88\x68\x1b\x55\xde\xe6\x7a\x42\x40\xa0\x90\xaa\x56\x5d\x48\x95\xd9\xbc\x5f\x76\xbb\x9c\xd1\x72\x3e\x14\x28\x01\xa1\xe3\x53\xbb\xef\xf2\x4b\x87\x9b\x6b\x69\xde\x13\xd6\x22\xc6\x35\x2f\xdc\x7c\x52\x03\xe8\x1c\x26\x69\xd9\xd9\xea\xa5\x20\xeb\xff\x5c\x8b\x2a\xb5\x0e\xd2\x5e\x11\x5e\xd1\xa6\x92\x40\x7e\xe4\xfa\xc3\xc4\x6e\x64\xd9\xd7\x25\x3c\xeb\x03\x99\x07\xab\xce\x06\x4f\xf0\x47\x36\x6c\xb1\x9f\x02\x6f\xa7\x5e\xb6\xec\x5a\x33\x79\x01\xc2\x78\x94\x8d\xc6\xdb\xa1\x49\xb8\xbc\xf3\xff\x63\xec\xcd\x63\x24\xc9\xf2\xf3\xb0\xee\xcc\xea\x6b\x8e\xde\x9e\x63\x2f\x51\x96\x93\xd0\x0a\x14\xe0\xf1\x0a\x92\x60\x5b\x58\x03\x8e\x74\x77\x71\x67\xbb\xa1\xad\x29\x54\xf7\x76\x8b\x43\x19\xe8\xa8\xcc\x57\x99\x31\x15\x19\x91\x13\x11\x59\x35\x35\x30\x0c\xdb\x10\x0c\x41\x26\x0c\x03\x92\x4d\xd9\x16\xa4\x15\x49\xd8\xa6\x2d\x51\xa2\x48\xee\x41\x72\x99\x35\xdc\x83\xbb\xdc\xdd\xd9\x99\xd9\x9d\x6b\x67\xa6\xa7\xef\xab\xfa\xbe\xaf\xa9\x31\xe2\x7d\xbf\xdf\x7b\x5f\x56\x44\x53\xfe\x2f\xa2\xbb\xaa\x32\xf2\xc5\x7b\xbf\xf3\xfb\x7d\x5f\xbb\x8c\xe2\x61\x71\x3e\x8b\xd0\x1b\x2d\xab\x9d\xd6\xc6\xa2\x0e\xfe\x39\x0b\xee\x70\xe3\xa3\x3e\xff\xfd\xb8\x3c\x44\xeb\xdb\x57\x3d\x40\x08\x25\x13\x98\xe6\x1d\xab\x4f\x6f\x14\x3c\x9f\x69\x4d\x1f\xd8\x49\x4a\xeb\x77\x10\x89\xa3\x64\x06\x39\x36\xfb\x5a\x7e\x20\x12\x4f\xa8\x85\x5f\xb5\x67\x15\x1b\x4f\xb8\x27\x39\xf8\xc2\xa7\x6d\x6b\xfb\xe4\xe2\x06\x51\xb1\xef\x58\x2d\x03\x40\xb8\x69\x11\xbf\x53\xd1\x11\xbb\xda\x38\x41\xd0\xde\x73\x0c\x83\x7e\x1e\xe9\x4e\x1d\xe1\xf4\x30\x8b\x92\x4e\x34\x94\xc1\x05\xc9\xe6\x69\xd0\xeb\xec\x98\x07\x99\x4d\xc7\x21\x27\x44\xbb\xc1\xfe\xa8\xea\x38\xd4\x8c\x91\x65\xa6\x17\x66\x5d\x62\x44\xbf\x44\x8c\xe8\x55\xac\xe9\xde\x99\x56\xdf\x24\x99\x84\x27\xf0\x1f\xd2\x34\x94\x1b\x22\xf9\x89\xa3\x79\x13\x37\x08\xa5\x79\x99\xb3\xf7\xcb\x84\xf9\x0d\xa3\xac\x93\x85\x0b\xc5\x56\xa2\xc0\xf9\x07\x41\x85\xfa\x13\x19\x0d\xd8\xe7\x70\xd0\xef\x92\xd8\xf9\x31\xbb\xd9\x54\xe5\xfb\x13\x6e\xd4\x60\x21\xcd\x06\xd1\x4b\xf6\x2b\xba\x91\x86\xf2\x63\xe4\x86\x90\x9b\x51\xd2\x19\x65\x99\xe9\x82\x19\x0a\x71\xc8\x2d\x10\xa4\xa9\x90\x50\xf9\xd1\xf2\x1f\x63\xcf\x3f\x74\xa2\x0e\x8b\xdd\x89\xd3\xa2\x1f\x99\x8c\x65\x4c\xbe\x69\xbf\x87\x5c\xd7\x72\xd5\x66\x69\xa7\x2f\x9c\x89\xb0\xc4\xc7\x25\x33\x91\xbb\x8a\xed\x39\xf0\x5c\x19\x5c\xe4\xc3\x28\xb3\x35\x32\x47\x19\x7e\x0c\xdb\x57\x1b\x41\x75\xa2\x6e\x79\xba\x14\x99\x02\xf5\x6a\xa7\xa5\x49\x03\x61\xb4\x39\x4f\xba\x6e\xdb\xbf\x8f\xd7\xf3\x49\x1e\x32\x49\xf2\x38\x2c\x8c\x9d\x6e\x86\xed\x7c\x1d\xcb\x29\x37\x75\xe5\x56\xd9\xf1\xf1\xa4\x51\x9c\x74\xfc\x3b\x1d\x76\x31\x1d\xe5\x1a\x66\x20\xfb\xbe\x42\x48\x9e\xf3\x63\x02\x4a\x7d\x14\x4c\xcc\x9b\x26\x26\x7b\x94\x50\x14\xaf\xda\x53\x29\x94\x84\xb2\xe2\x82\xa2\xb5\x47\x08\xc5\xa2\x0f\x6c\x67\x4e\x59\xec\xed\x1f\xc7\x7f\x7c\x0b\x58\x19\xc5\x39\x12\xc3\xe2\xe9\x89\x21\x6d\x6b\x5e\xf4\x53\xec\x1a\xa2\xe2\x70\x97\xda\x94\xc3\x30\xcf\xc3\x1e\x0a\xd6\x30\xaa\x08\x29\x75\x4c\xbf\xfc\x13\xaa\x47\xa3\xbb\xbc\x48\x47\x59\x94\x17\x92\xce\xe3\x5d\xca\xb4\xb5\xdc\x04\x4f\x11\x83\x49\x62\xc5\x88\x04\x7c\x82\x74\x01\xea\xdd\x72\x4d\x20\x88\x2c\xb5\x39\xa5\xef\x23\xbe\x83\xe7\x96\x9b\x4a\x81\x62\xdf\xbe\xd6\x42\x14\x47\xc3\x28\x49\xf3\x89\x79\x5b\x69\x62\x21\x37\xfc\x5d\x86\x5f\xae\x55\xc2\xf5\x67\x5a\xb1\x59\x32\x71\x93\x10\x5a\x82\x72\x06\x63\xcf\x65\x62\x44\x38\x53\x07\x88\x1f\x98\xac\x87\xd4\xce\xcd\x97\xb8\xbe\xce\x04\x62\x2f\x8a\x63\x68\xaa\x81\x28\x78\xfd\xb5\xca\x00\x99\xd5\x1b\xb1\x03\x4b\x26\xdf\x20\x6a\x70\x99\xc4\xe8\xab\x21\xc7\xe1\xc3\xad\x8e\xc9\x8a\x30\x4a\xe2\x15\x1b\xbc\xc3\x19\xbc\x4b\xed\x9a\xf3\x76\xd7\xe9\x94\x40\x0d\xe6\x61\x21\x8d\x17\x1b\x34\x69\xba\x46\xf8\xbc\x35\x1a\x0e\xcf\x23\x33\x88\x4c\x12\xe6\xf6\x8d\x3a\x27\xed\x11\xee\xe7\x83\x27\x27\x3d\xe4\xf4\x81\xd6\x5f\x17\x8d\x6f\xd1\x18\x85\xbd\xc5\xa2\xfe\xc4\x16\xc4\x1d\x7c\xd2\x8f\x05\x40\x0e\x49\xa4\x0d\x49\x66\x79\x3d\x20\x25\x96\x0f\x80\xb4\x45\x3f\x17\x98\x7d\x54\x62\x6e\x60\x4b\xc2\x8e\x5f\xac\xbc\x38\xcb\x69\x9f\x14\x69\xc3\x0b\x33\xa1\x49\x2e\xd7\x75\x23\x09\x8b\x51\x37\x61\xfa\x75\xfc\xed\xdb\xe4\x2f\x6e\x57\xec\xec\x81\xe7\x2c\x9b\x41\x86\x49\x32\x9c\xab\xdf\x27\xba\xd2\xf3\x64\x6c\xce\x38\x63\x33\x1c\x65\xf9\x48\x2a\x66\xeb\x27\xed\x6e\x5e\xf7\x66\x71\x7e\x64\xe2\xd8\x06\x8c\xae\x45\x37\xe3\x44\x8f\xcf\x55\xe6\x8d\xca\xaf\xda\x4b\x0b\xae\x6d\x7f\x7a\x95\xec\xe8\xa7\xdb\x4f\x11\x01\x5d\xb2\x60\x32\x93\x74\xcc\x94\x2f\x4b\x9d\xa1\xae\x0f\x3a\x80\xf0\xd9\x82\x50\x46\x55\x61\x4b\x9b\x25\x04\xc3\x32\x5d\xe9\x89\x60\x8a\x62\x30\xec\x9b\x92\x9b\xaa\x68\xce\xdc\xec\xe7\x5a\xf3\x59\x94\x03\x78\x83\x3a\xcb\x4d\x82\xed\xdf\x24\xef\x69\x92\xbe\x15\xa3\xb3\x22\xa3\xb0\x84\x02\xf7\x07\xc5\xe4\x26\x1b\xdb\x29\xa1\xd2\xc6\x8c\xfe\xd0\x6c\xab\x3b\xea\x35\x89\x75\x43\xa4\xcf\x45\x51\x90\x49\xee\x36\xb5\xff\xc3\x5a\xbc\x4d\xb2\x10\xe5\x1d\x90\x1f\xd9\x75\x45\x14\x8b\xea\x8f\x5c\xd7\xe8\xcc\x86\xdd\x17\xc2\x8e\x55\x93\x73\x15\xd4\x8b\x24\x76\x71\x71\xbc\xf1\xc3\x4a\x37\x8d\x81\xe5\x18\x6d\xc1\x72\xbb\x72\x23\x48\x67\x2b\x7e\xf1\x21\x49\x4f\x94\xa5\x49\xd4\x01\x03\xd6\xdc\x6e\xa7\x98\x69\x5f\x9c\x0a\x6e\xd6\x00\x4a\xc1\xc4\x0c\xb3\xa6\xca\xbb\x04\x73\x3e\x53\x31\x5d\xfb\xf6\x59\x30\x41\x16\x0d\x4c\x52\x48\x08\x29\x60\x95\xc0\xef\xf6\xaf\x55\x6c\xb8\x3e\xe7\x42\x9a\x76\x1b\x13\x32\x17\x0d\xd2\xbf\xe0\xae\x5b\xdf\x2c\x6d\xa1\xac\xf2\x22\x4a\xb1\x92\x4a\xe2\x8b\xa1\xe2\x39\x05\x70\x01\xaa\xc7\x67\x82\xc6\x97\x95\x1b\xe2\x32\x55\x54\x46\x85\x79\xdc\x03\x01\x1e\x05\x85\x84\x43\xd0\x7e\xf1\x90\x9f\xec\x9f\xd3\x49\x94\x9b\x92\x77\xa8\x94\x97\x8f\xd3\x76\x80\x43\x59\x38\xdb\xb0\x60\xc8\x94\x36\xd9\xfa\xaf\x13\x70\xf5\x96\xa9\x89\x0a\x95\xe6\xd1\x1e\x06\xb7\x0d\x79\x0b\x02\xd4\x3b\x54\x6b\x19\x0e\x57\x10\x4d\x50\xc1\xc0\x29\xa7\x8c\x09\xf6\x75\xce\x06\xa9\x0c\x3e\x42\x16\xf2\xd7\xdb\xde\x60\x7d\x62\xd5\xa6\x5a\xca\xc2\xe7\x01\xb2\x18\xbd\xd1\x7e\x8d\x5d\x15\x84\xf6\xd2\xc4\x46\x6d\xea\x4e\x85\xa6\xf4\xf0\xe1\x96\x1d\x79\x8b\xa3\x97\x1d\x99\x12\xc2\x02\x70\xf9\x28\x47\x83\xc7\xbc\x1e\xad\xd8\xe6\xc3\x87\xd1\xc9\x69\x7a\x74\xe6\x0d\x0e\x6d\x2e\x93\x7c\x7e\xa3\x32\x24\x5d\xe6\x63\x45\x38\xea\xf5\xc5\xe2\x21\x7e\x39\x16\x78\x6d\xbd\x63\x0e\xee\x31\xcc\x4c\x51\xac\xec\x20\xa1\x82\x0f\x89\xf6\x13\x08\x65\x17\x0b\x7d\xf1\x90\x43\x7b\x38\xc7\xf4\xab\x7f\x89\x58\xff\x2e\xb1\xea\x9e\x0c\x87\xa8\xf2\x8e\x5d\x34\x65\x26\xaf\xe6\xf4\xfb\x35\xb0\x56\xaf\x2f\x3d\x9d\x31\x29\xec\xfd\x0b\xd6\xbd\xff\xf2\x7f\xd9\xa4\x96\xe6\x83\x09\x46\xd1\xd3\x64\xaf\xaf\xd6\x52\x5b\xc7\x18\x5f\x2c\x77\x91\xd6\x87\xed\x07\x69\x81\x98\x99\x96\x32\xf3\x32\xcf\x52\x5e\xb0\x07\x49\x37\x4c\x1d\x89\x26\x42\x7d\x6b\x01\x94\xeb\xce\xfe\xbe\x92\xd6\x79\xf6\x9d\x24\xed\x94\xae\xa6\xe1\xb1\xa3\x47\xec\x6b\x92\x6b\xe7\xf0\x16\xe2\xc8\xa0\xf6\x8f\x5c\xff\xaa\x75\x9a\xca\xd5\x60\xcf\x9c\xf0\x08\x54\x0c\xe8\xde\x99\xd6\x7c\x94\x16\xa6\xd3\x4f\xd2\x38\xed\xad\x10\x90\xe3\x08\x49\xe6\x1e\x71\x5b\x22\x8c\xe7\x4d\x54\xd8\xc6\x29\x82\x8a\x5d\x00\xd8\xe9\x50\x01\xb3\xe9\x51\xad\xff\x28\xde\xb0\x8c\x08\xda\x4d\x84\xac\xfd\x1a\x21\x57\x06\x9d\xd0\x36\xb7\xfc\x18\x98\xe2\xb6\x51\x3d\x11\xd4\xb9\xad\x20\x2a\x02\x9d\xc6\xe1\xd0\x5c\x92\x5f\x08\x3c\xbd\x5d\x61\x92\x5c\xf9\x8f\xa6\xc5\xfb\x1c\xe5\x9a\x18\x2a\x07\x1a\x55\xed\xa4\xf0\x3f\x29\x72\x1a\xef\xdb\x04\x9b\x83\x3c\xe3\x3a\x7d\xbb\x0b\x95\x5d\xf4\x4c\x6b\x60\x6c\x4d\xbe\xc9\xa3\x5e\xc2\xa5\x0c\x6b\x26\x54\x56\x08\xa3\xaf\xd3\xf3\x76\xb3\x08\x51\x94\xff\xfe\xa8\x79\xe8\x14\x9c\x27\x41\xcb\x8c\x65\xdf\xe8\x6e\x2d\x9d\xfb\x3a\x18\x93\xdc\xac\xfa\xde\x99\xf5\x2b\x8c\xe1\xf9\x5e\xe0\x0b\x17\x20\xc5\xc5\xcb\xdd\xe1\xd4\xac\x13\xd3\x8b\xa3\x9e\xee\x39\xa0\x81\xd6\x2f\xd4\x71\x26\x14\x26\x49\x4c\x9e\x1b\xc9\x8f\xd1\xab\x3b\x36\xd1\xb9\xab\x12\xb0\xcf\xed\x6e\xe5\xd1\x60\x28\x75\x39\x4c\x20\x40\x7b\x5b\xae\x09\xdb\x37\x9f\xa5\x8b\x06\x59\x91\x96\x33\x3c\x46\xd5\xc7\x7a\xb9\xc9\x96\xd0\x11\x75\x23\x34\xe5\x17\x76\x1a\x07\x0e\x24\x0c\x4d\x4d\x58\x7e\xa1\x91\x50\xd2\x32\xa2\x5e\x7a\xbc\xc6\x5c\xda\x24\x4a\x29\xc4\xca\x35\x9e\x99\x21\x82\xf0\x05\x63\x62\x5b\x24\x77\xc8\xda\x6f\x22\xdb\x17\x0d\x12\x52\xfc\xfb\x98\x32\x9f\x2a\x0e\x67\xcf\x9e\x56\x3e\xea\xf5\x84\x1f\x68\xd6\xab\x8e\x13\x64\xd7\x93\x36\xe4\x45\x36\x02\xaf\x37\x96\x1c\xc7\xef\x1f\x8e\x29\x21\xfc\x87\x84\x20\x2a\x83\x2a\x93\x6d\xb7\x99\xb1\x4b\x98\x7e\xe9\x97\x3c\x86\xb9\xfc\x44\x2d\x63\x97\x9b\x08\x6e\xf1\x0c\xcf\xd8\x89\x70\x9b\xcc\xdf\x04\x9e\xbd\x03\x70\x71\xc5\x9b\xef\xa2\x7d\x1c\x76\x46\x31\xf0\x51\x70\xed\x1f\x07\x54\x4d\xb9\x07\xc8\x80\x10\x25\x4c\xc2\xc6\x23\x43\xd0\x0c\x41\x56\x52\x67\x50\x77\xf4\x2d\x56\x33\x52\xd2\x43\xed\xe0\xd8\x2f\xbb\xb1\x83\x68\x23\x53\xe1\x55\x6e\xfa\x76\x19\x92\x39\x1c\xc5\x1f\xe2\x8f\xc2\xc7\x5d\xad\x1b\xb4\x40\xc3\xb5\x29\x23\x94\x4e\xf7\xfa\x0c\x33\x57\x6d\x26\xda\x8b\x7e\x9a\x0e\xe3\xd0\x96\x5e\x04\xf1\x14\x30\xa5\xe0\xc6\x84\x64\xf6\xb9\xfd\xad\x79\xa5\x59\x56\x8e\xd1\x86\x63\x85\x78\x3d\x78\x8c\xe6\x73\x57\xb6\xfa\x1a\xb3\x38\x58\x99\x19\x80\x85\x43\x37\x18\x02\xa0\x68\x8a\x7e\xc3\xda\x52\xcf\x90\x31\xeb\x44\x48\xab\x9a\x23\xfb\x5b\xe9\xa8\x48\x46\xa5\x25\xd3\xda\x8e\xea\x2e\x78\xb4\xb6\xcc\x07\xa2\x3a\xf5\xa0\x92\x5f\x59\x01\x87\x3c\xdf\xe2\xe9\x6c\x2e\x8d\x09\x72\x7c\x0f\x3d\x14\x04\x98\x37\x89\xcd\xf8\x0a\x0f\x5e\x5c\x9e\xd8\x1f\x4b\xf9\x62\x83\xf8\x16\x85\x56\x41\x6e\xea\xe0\x4b\xe9\xc2\x42\xd4\x31\x0f\x27\x7e\xe4\xb1\xf7\x64\x64\x10\x9f\x0b\x64\x02\x7b\x56\xf1\x13\x8f\xbb\x23\xd8\xe9\x9b\x9c\xdc\xe5\x71\x6c\x4c\x95\xac\xe6\x10\xa1\x17\xe6\x96\x04\x4e\xe3\x4e\xfb\xbd\x44\x95\x04\xdf\x9e\x24\x4a\x66\xdd\xa0\x15\x7d\x2e\xc8\x20\x80\xbb\x91\x69\x2e\x6c\xfa\x1f\x5b\xca\x0a\xc4\x7d\xd7\x49\xb5\xe8\xc1\xd8\x33\xa3\xdf\xb7\x0e\xd3\x4d\x34\xfb\xa7\xbc\x34\x66\xa4\x41\x55\x7b\xe8\xe0\xee\xd9\xd6\x42\x3c\x2a\x5c\xa4\xea\x74\x52\xdd\xcc\x65\xa3\xed\x37\xd6\x6b\x15\x9b\xf6\x8c\x25\xd2\xce\x2d\x38\xc3\x4d\x97\x80\x49\x49\x15\x7b\x7c\xcc\x36\xf3\x2b\x5f\x41\xc8\x85\x68\xee\x12\x53\xbc\x5e\x72\x07\x38\x4a\xba\xa3\xbc\xc8\x56\x96\xa3\xae\xd9\xd2\xf8\xbb\x5a\xd2\x42\xc4\x6c\x43\xa8\x7f\x0e\xe6\x6c\xb9\xb6\x1d\x0d\x51\xf1\x09\x28\x24\x3c\xea\xa7\xbf\xc2\x95\x74\x61\x41\x4a\x9c\xaa\x4a\xe1\x1b\x47\x75\x93\x65\xe5\x2e\x09\x7b\xca\xe6\xe5\xf8\x6f\xcb\x1d\x09\x48\x29\x00\x9a\xd2\x6d\xf5\x62\xc6\xe1\xd0\x2d\x25\xcb\xe6\xa3\xaf\x72\x9b\xd0\x9f\xc7\xfd\xef\x64\x61\xd7\xe4\xdb\x7d\xad\xc9\xa6\x6d\xa5\x07\x6a\xec\x99\xf6\x31\x5e\xb9\x6f\x34\xaf\x2a\xdf\x3c\xdc\xd9\xfb\xb0\x9c\x78\xf5\xcd\xb6\x9f\x9e\xfe\xf4\x13\x44\x89\x75\x79\x43\x3c\x9b\x7f\x96\xe6\x24\x6f\x58\x3f\xa1\x03\xb6\x3e\x7d\x7f\x04\x33\x04\x08\x5a\x4f\x8d\x69\x4e\x1e\x64\x84\x88\x55\xb6\xb7\xbd\x5c\xc9\x55\x8b\x1d\x73\x92\xb2\x7b\x15\x4c\xb3\x0e\x6b\x20\x7f\x29\x40\x4d\xc4\xf1\xd2\x7a\xb5\xe3\xb7\x90\xc9\xc2\x08\xbe\x32\xf6\x0c\x5a\xf7\x98\x92\x52\x35\x28\x60\x8d\xbe\x6f\x57\x09\x49\xe2\x27\x10\xbd\x4d\xf4\x81\x10\x02\xac\xa3\x36\x82\xb8\xee\x31\x74\xf0\xb0\xd8\x1f\xa3\x7c\x86\x9d\x70\x6f\xec\x25\x24\x3f\x1a\x13\x8a\x71\x1d\x27\x5a\xf5\x2b\x3c\x83\x10\xb4\x15\xbc\xd2\xbb\x50\xb2\x48\x5b\x96\xd8\x25\xff\x94\xcd\xc0\xa5\x80\x0c\xc4\x25\x9a\x22\x7b\xc3\xed\xd9\xf9\x6c\x94\xf7\xb5\x2c\xef\x34\x63\x67\xbc\x32\x6c\x4d\x2d\x38\xb5\x95\x66\x9b\xf7\x95\xbf\x85\x90\x0b\x31\xba\x5c\x13\xa2\xc4\xbc\x64\x53\x4c\x2b\xee\x82\x53\x7f\x2d\x60\x7c\x19\x75\xce\x4e\x4f\x0e\xeb\x94\xaf\x02\x3b\xf1\xde\x04\xd2\xa5\xca\x62\x02\xe4\x48\x2f\x8c\x12\x57\x32\x74\xd9\x38\x89\xf3\xd5\x54\xc2\x5a\x5d\xb3\x10\x29\x33\xa2\x76\x8f\xed\x56\xd1\xf6\xb1\x93\x29\x89\x4d\xd8\x71\x78\x71\x78\x08\xe0\xc5\xe5\xba\xe2\xae\xec\x20\xa5\xcc\x98\x4b\x7d\xcf\xae\xac\xd6\xfa\x1e\xf1\xe8\x86\xcf\x94\x3f\x83\x82\xdd\xa3\xe0\x96\x40\x05\x44\x28\xa0\x74\x43\xfa\xca\x66\x13\xe5\x04\xf8\xba\x73\xd4\x30\xdb\xbe\x8a\xa5\x72\x98\x0c\xaf\x9e\xfe\x00\xe6\x1e\x5b\x1d\xc3\xc2\x00\x7f\x9e\x42\x9d\x57\xb0\x85\xac\xec\x83\x81\x24\x1e\xa9\xc0\x73\xed\x68\x7b\x8a\xae\x07\xe0\xb9\x40\x31\xe5\xf4\x98\x74\xdc\xb7\xb4\xbd\xca\xd6\x99\x60\xf3\xe7\xc4\x1d\xdf\x61\x56\x9e\x1f\x04\x34\x63\x78\x91\x49\x29\x9b\xab\xe5\x89\xd3\x3a\xba\x3d\xd9\x8a\xa3\xf5\x69\x4b\x18\xc7\x18\xc8\xf6\x95\x16\xf0\x29\x69\x48\xb4\x8b\x58\x2c\x96\x87\x69\x86\x74\x59\x42\x7c\x3c\x88\xc6\xfb\x13\x71\x41\x98\x60\x4f\x68\xab\xcd\xbe\x07\x6d\xc2\xb9\x21\x96\x7e\xe4\x84\x2b\x35\x6a\xa5\x08\xd6\x51\xa3\xa5\x59\xd4\x8b\x12\xc2\x8a\x89\xab\x09\x7c\x61\xff\xf4\xf8\x61\x85\xc5\xc2\xe4\x45\xb4\xb0\xe2\xec\x3d\x0e\xa6\xcd\x1e\x64\x41\xbe\x37\xa6\xd2\xd6\x79\xd6\x93\x8f\xf2\xce\x08\x2a\x59\xbe\x81\x76\x0f\x73\x62\x72\x33\xfe\x24\x91\x53\xd9\x64\xa0\x63\xe9\xd2\xec\x8b\x10\xd5\xa1\x80\xa6\x29\xce\x13\x2b\x18\xb8\x65\xf0\x86\x84\x77\x45\xd9\x07\x29\x7b\xb8\x40\xcc\x9b\xd2\x78\x95\x5f\x09\x98\xf0\xd0\x63\x7d\x3a\x61\x12\x76\xa3\x30\xd9\x6e\x77\xa5\x4b\x5b\xdd\x00\xf2\xeb\x63\x22\xb7\x92\xaa\x1c\xdc\xca\xbf\xe1\x08\xeb\xac\x44\xf1\x28\x6d\x6e\x6e\x7b\x4c\xc8\x14\xb2\x36\x44\x47\xf7\x2b\x3d\x9e\xbd\x33\xad\x4e\x66\xf2\x62\x90\x26\x02\x46\x21\x51\xd2\x59\x47\xf0\xaf\x9b\xe0\x85\x34\x4a\xb4\x49\xe7\x60\x8f\x7e\x0e\xfa\xa2\x0b\x38\x32\xd3\xc9\x4c\x08\xb8\x98\xcd\x18\x10\xc5\x21\x52\x45\x89\xf8\x03\x8b\x88\xb8\x50\xd3\x3b\x23\xd4\xfc\xff\x2f\x6c\xe5\xcc\x4c\x6b\x21\x32\x56\x7b\xb3\xe1\xcb\xc2\xc7\x49\xa2\xe3\x38\x91\xb9\x0f\xd3\xbc\x18\x84\xd9\xa2\xb0\x91\x28\x99\x41\x79\xc8\xb5\x44\xeb\x03\xdb\xf9\x2c\x4d\x17\x27\x34\xea\x2e\xc1\xb2\x48\x81\x26\xf0\x15\x5c\xd4\xdc\x51\x96\x7c\x05\xce\x48\x05\x9e\x1a\x5f\xf9\x92\xbf\x76\xbc\x53\xa7\x6a\x89\xcd\x17\x46\x59\xd1\x37\x59\xd3\x97\xac\xa0\xdb\xe2\xd2\x49\x8f\x18\xdf\xd4\xf6\xb9\xea\x30\x0e\x93\xce\xa2\xd5\x92\xd4\x34\xde\x6e\x3f\xd5\x2a\xac\x11\x2b\xee\x9a\x25\x13\xa7\x43\x1c\xea\xd9\x5a\xb1\x7d\x26\xe1\x8d\x0a\xd3\xb5\xf8\xc3\x09\x55\x78\x58\x36\xf0\xeb\x3b\x97\xe7\x2d\xec\xeb\xd6\xfb\x2b\xaa\xb1\x7c\x3a\x85\x3b\x6e\x00\xbc\xcc\xed\x9e\x6b\x1d\x3e\x4c\x15\xfe\xb7\xa8\xc2\xff\x16\x31\xd8\x0f\xb3\xb4\x97\x85\x83\xfc\x31\x5f\xae\x7d\xdc\x32\x37\x21\x36\xfe\x7a\xe0\xe1\x5c\x57\x60\x6f\x15\xca\x43\x74\x7d\xc2\x30\x88\xb3\xb9\x79\xd5\x93\xed\xde\x45\xac\xa1\x1a\xa3\x76\xdb\xb9\x6e\x74\xf9\x4a\xa5\xd8\x8f\xb0\x15\x00\xe3\xa3\xb0\x19\x7a\x2c\x7d\x06\x3b\x0c\x4b\x4b\x66\x23\x19\x98\x87\xa3\xa4\xac\x78\x1e\x6f\x12\x91\x6b\x03\x23\x53\x72\x63\xc3\x60\xf9\x29\xd2\x6f\x3d\x5a\x39\x2a\x73\xbb\x2d\x25\x6c\x83\xd4\x38\x21\x18\x23\xd7\xab\xde\xd0\xcc\x87\x9d\xc5\x79\xab\x66\xe9\x95\x18\x7e\x2d\x20\x5e\xdd\x5f\x9b\xf0\x09\x9f\x5f\xfc\x3c\x5a\x59\x2a\x92\xeb\xe7\x54\x85\x38\x04\x91\x40\x55\x6e\xf8\x0b\x4a\x80\xd7\xf0\x8c\x83\x32\x5f\xaa\xb3\xf1\x1e\x2a\x90\xa5\x65\x9e\x64\x68\xa8\xf4\x1d\xaa\x2a\xbe\x43\x6a\x1b\x83\x30\x4a\x8a\x30\x4a\x64\xbe\x1c\x46\x59\xa8\x5f\x58\xc7\x40\xda\xf3\xb6\xfd\x8b\x17\x7f\x26\xf0\xd3\x7f\x22\xd9\x80\x8d\xfa\x7e\x85\x75\x68\x66\xa6\x15\x46\x0d\xe2\x4e\x12\x01\x22\x7d\x17\x9f\x74\x88\xea\xd2\x7f\xa4\x71\xd4\x75\xba\x0b\xb0\xc3\x0f\x58\x76\xec\x41\x9d\x94\x7e\x9c\x2e\x9b\xac\x69\xdf\xb6\x48\x68\x61\x1f\x28\xf3\xb1\x6f\x90\x94\x21\xb1\x4f\x30\x46\x3d\xb3\xcd\xfb\xfa\xd7\xed\xb6\x40\xe4\x81\xfe\x0e\xde\xf8\x1f\xd1\xa8\xc8\x09\x1a\x92\x84\xdd\x75\x13\xb1\x7e\xbb\xfc\x11\xf9\xa2\xcc\xe4\x69\xbc\x24\x2a\x6d\xf8\xd9\xab\x34\x0a\x72\xd5\xe1\xef\x8a\x7e\x94\x6c\xf3\xd8\x55\xe1\xd8\xc2\x3b\x7b\x30\x26\xac\x37\x58\xec\xd1\xad\x78\xb2\xed\xb1\x1a\x9b\x57\xa9\x8e\x7c\xde\x73\x8a\xfd\x8d\x73\x95\x25\x2b\xe3\xd6\x38\x5d\x92\x3d\x5e\x2b\x93\x4b\xac\x99\x79\x16\x9a\x38\x6a\x30\x37\xfd\xda\x98\xf6\xde\xda\x43\xa5\xec\x06\xe1\xcb\xdd\x10\x5a\xc1\xda\x77\xf1\xe1\xb4\xd4\xa8\x10\x12\xdd\xa7\xba\x47\xdf\xc4\x43\xd3\xdd\x6e\xff\x17\xc3\x4e\x77\x27\x98\xf8\x4e\x4f\xca\x54\xb9\xa4\x41\xc6\xf2\x9c\x10\x50\xb9\x1d\xf0\x66\xc1\x14\xe3\xe4\x88\x3c\xdf\x5f\xa3\x5d\xd7\xe0\x19\x66\xe9\x70\x25\x36\xc9\x84\x0d\xf8\x23\xc2\x84\xfe\x91\xf3\xdd\x5d\x63\x86\x31\x44\x51\x60\xd1\xee\xc2\x88\xb9\x29\xca\x83\x54\x37\x57\x06\xe7\x7f\xf4\x49\x2a\x55\xac\xd7\x72\x68\x16\x61\x0c\xc9\x1c\x4f\x6b\xf9\x23\x9c\x4b\xb9\xa9\x54\xc8\x74\xcd\x7b\x69\x1c\x8f\x72\xb0\x27\xcb\xdc\x3b\x87\x1d\x67\x49\x06\xbc\x1b\x2e\x89\xe9\x82\x6b\xfa\x21\x22\x02\xb9\x61\x61\xbe\x74\x94\x14\x53\x9e\x37\xe6\x5f\x12\xe5\x11\xfa\xad\x2a\xca\x5f\x6e\x60\x55\x18\x74\x0c\xd9\x03\x9b\xc0\x45\x4b\xa0\x29\x47\x9a\x71\xd5\xb7\x39\xf7\xae\x07\xbe\xa4\x78\xae\xb6\x0b\x96\x9b\x62\x34\x44\xb2\x88\xec\x03\x53\x41\x72\x5d\x33\xbd\x3f\xdb\x8a\xf2\x34\x0e\x05\x9a\x33\xcb\xda\x06\x6e\xae\x39\x78\x9c\xe4\x01\xa3\x82\xd8\x3c\x7f\x40\x6c\x9e\x3f\x60\x10\xf9\x7c\x92\x66\x83\x10\xd4\x52\x6e\x3c\x6a\x6e\xb7\x1b\x8f\xf2\x14\x28\x71\x1a\x16\xfd\x3c\x1d\x98\x89\x90\x2b\xe0\x90\xab\xd2\x5c\x9c\x7d\x6e\x7f\x2b\x1c\x15\xe9\xc0\x19\x40\x6c\xff\x4d\x38\xd9\x72\x43\xd5\xdc\xa5\x28\xef\x9b\x4c\x4e\x26\x5e\xdb\x5a\x40\x74\x80\x6b\x2e\xd1\x58\x4a\xcb\xdc\x61\xca\xee\x20\x18\xd2\xad\x04\xe9\x7d\xac\xed\x66\x93\xbf\xd3\x58\xa5\xb8\xec\x0e\x1d\xcb\x51\x12\x97\x69\xb8\x7d\x09\xac\x9a\xa8\x52\xd6\xbe\xfe\x78\x9a\x05\xf2\xfe\x04\x07\x11\xa7\x03\x84\xfa\xc8\x46\x3f\x20\x47\xd4\x0d\x93\x5e\x8c\x3e\x13\x0d\x3b\xd2\x44\x64\x4d\x88\x1d\x25\xf9\xd0\x8a\x84\x36\x7c\x22\x73\x84\x02\x95\x23\xac\xd0\x23\xe0\x33\x56\xaf\x5f\x23\xe9\xc3\xb7\x89\x69\xf8\x7a\x7d\xd3\x37\x36\x61\x16\x26\x1d\xb1\x09\x4e\xbd\x7e\xc6\x0f\x1d\x3d\x55\x75\x4c\x2f\x37\x89\x79\xa5\x69\x43\x22\xf0\x19\xad\xda\xdf\xc4\x49\x99\xaa\x48\x66\xcd\xcc\xb4\x86\x69\x1c\x75\x44\x1e\x58\x35\x34\x7d\x66\x78\x17\x1b\x49\x13\x4f\x5f\xb9\x34\x3d\x51\x63\x75\x19\xbf\x93\x4b\xb9\xe8\x8c\x56\xd8\x7d\x61\x94\x17\x5b\xfd\x44\xd9\x0d\x22\x78\x47\xaf\x13\xb6\x89\x4b\x32\x02\x2d\x90\x69\x46\xe6\x56\x7a\xbc\xbd\xd3\x59\xc3\x38\x5a\x32\xd9\x56\x5f\x94\x05\x93\x97\x06\x7b\xe5\x1b\xd5\x07\xb3\x4f\xa9\x98\xaf\xf2\xe3\x51\x82\xdb\x45\xc2\xc7\xac\xe0\xf0\x42\xd8\x59\x94\x56\x35\x67\x06\x9a\x00\x7c\xda\x27\xf4\x5d\x88\x31\x65\xe0\x85\x6e\x90\x90\xb9\x6f\x45\xff\xdc\xb9\xdd\xc5\xb0\x48\xed\x0f\x39\x1d\xec\x19\x27\x0e\xcb\x6a\x0c\x9d\xa8\x58\xd9\x6a\xb7\x35\xe2\x1c\x8c\x69\xe1\xe7\x7e\x82\x33\x87\x16\xd4\x47\x48\x65\x94\x52\xba\xfc\xfa\x8c\xd2\x43\x13\x64\xdb\xea\xc3\xd0\x35\x66\xc9\x24\x53\x14\xeb\x5f\x25\x21\xa3\xa9\x36\xe9\x72\xb3\xdc\xfb\x79\x42\x4d\x97\x36\x67\xb9\x1f\x0a\x80\x57\x66\x3f\x51\x7d\x90\xad\x47\x29\xd5\xc5\x1a\x85\xf6\xe7\x5b\x49\xb8\xa8\xa9\xa2\xab\xbc\xba\xa4\xee\x06\x11\x6a\x2f\x45\xa6\x48\xc2\x41\x83\xdf\x25\xe2\x76\x7d\xb1\xde\x76\x46\xc9\x12\x02\x21\x9a\x46\x03\x56\x50\xae\x6b\x80\x7f\xd3\xad\x3c\x4e\x97\x6d\xcc\xab\x0a\xa8\x9e\x07\xe3\x7d\x1a\xcc\x18\x25\x51\x9a\x3c\x6e\x1f\x43\x88\xeb\x03\x5f\x54\xfe\x10\x6f\x04\xdf\xfe\x24\x51\x55\x5c\x0b\x68\xce\x55\x90\xa8\x72\x63\xb7\xaa\x0b\xf9\x5c\x7e\x76\x82\x70\xc4\x57\x26\x64\x14\x98\x78\x55\x94\x22\x54\x07\xd4\xab\x55\x5c\xa9\x80\x70\xf6\xce\xb4\xb2\xb4\xb3\x68\x16\x4c\x1c\x97\xf9\x29\xab\xd0\xba\xe2\xd5\x65\x46\x0d\x7e\x1c\xf8\x82\x0b\x54\x91\xa2\x1c\xa8\x5d\x27\x4b\x2e\x91\x95\xc2\xa9\x48\xb0\xd3\xcc\x17\x8f\x93\xc3\x17\xc6\x28\xec\xd5\x37\xf0\xe6\x74\x6a\x9b\x88\x10\x4e\x60\x9d\x30\x98\x71\x9d\x28\x58\xb7\x59\x1b\x2d\xf2\x47\xbc\xc7\x5e\x1b\x7b\x09\xbd\x1b\xc1\xc6\xfc\x53\x15\x95\xed\xfa\x39\xd8\xcd\xac\xab\xeb\xac\xb1\xce\x6e\x96\x0e\x01\x7c\x70\xc4\x64\xac\xa3\xef\xbb\x28\xef\x8c\x7d\xbc\x31\x1f\xc6\x16\x74\x88\xbd\x26\x99\x8c\x7d\x0c\xcd\x6a\xfc\xd6\xb1\x4a\x80\x80\xa9\x21\x50\x7b\x80\x12\x93\x1b\xab\xe2\x21\xe3\xf2\xb3\x55\x49\xdb\x1b\xb3\x73\xce\x9a\xe4\x45\xb8\xb2\xdd\x2e\x23\x52\x0f\x70\xaa\x38\x05\x69\x27\xf1\x7b\x69\x92\xb7\xc5\xcb\xe5\x6d\xb7\x01\x3d\x76\xc0\xdb\x58\x20\xc0\x4b\x6e\x23\xa3\x51\xb2\xd6\x9a\xa2\x7a\xd7\x0c\xd2\x4e\x16\x16\x8a\xf3\x80\x3b\x17\xa2\x5a\xbc\xd5\xaf\x73\xa6\x76\xad\x8e\x09\x47\xe6\x45\x1a\x9e\x0f\xe0\x02\x4d\x26\x5f\xa0\xb4\x60\xd9\x84\x45\xdf\x64\x20\x1d\x44\xde\x7a\x03\x9f\xe5\x58\x26\x37\xa2\x2d\xdd\x40\xa7\x07\xbf\x9c\xa4\x76\x78\x3a\x34\x59\x58\x44\x4b\xfa\xde\x60\xa2\x8e\x05\x84\x5e\x3f\xc6\xfa\x81\x51\xae\xda\x63\xc4\xcd\x01\x97\xa5\x00\xa8\x3a\xeb\xd6\x0d\x97\x13\xa9\xb6\x09\x8f\x41\x30\x41\x00\xfa\xb0\xc0\xba\xc8\xa2\x24\x2a\x56\x28\xda\xb8\xc7\x13\x80\xf7\x6a\xcb\xf7\xd1\x22\xe6\x00\xe5\x2d\xde\xa5\xa8\xf7\x17\xec\xab\xb6\x5b\xe3\xd0\x13\xf6\x20\x29\xa9\xfe\xce\x49\x6e\x88\x6d\x78\x9f\xd4\x60\x7e\x56\x22\x8a\x23\x63\x8f\xb4\xc2\x14\x0a\xfe\xfd\x4f\x50\xe0\x04\xd4\x51\x66\x0d\x10\x76\x6f\x6e\xd3\x18\xd9\x65\x87\xe2\x58\x4a\xe3\x51\x52\x84\x59\x94\x0f\x9a\x8d\x2f\x1e\xf2\x5c\x6c\x33\x33\x12\xda\xdf\xc3\xd6\x41\xf3\xe0\x2c\x4f\xe9\x14\x45\x9a\x25\x66\x65\x0b\xad\xc5\x79\x94\xc9\x54\x89\xd6\xc7\x2d\x53\x6d\x4a\xeb\xed\x09\x92\x9f\x09\x36\xa2\xc1\x74\xd5\x87\x99\x59\x8a\xd2\x11\x66\x0d\xb4\x5b\x45\xa3\xb2\x2c\xd4\x01\x4d\x8f\x29\xdf\x71\x58\xc3\x62\xc1\xf8\x82\xc8\x40\xae\x89\x21\x60\xad\x76\x97\x58\x65\xae\xa6\xe7\x85\xb8\x82\xf6\x9b\x6e\x92\x86\xe3\xc9\xfb\x36\xa1\xe4\x3a\x99\x15\x29\x98\xf2\x34\x3c\x3b\x57\x89\xa2\xf7\x4d\x22\x33\xbc\x4c\x3a\x0a\xd7\x9e\xa8\xa4\xa1\x07\x77\xb7\xa2\xa4\x1b\x2d\x45\xdd\x51\x18\xdb\xb4\x89\xc1\x0e\x30\x47\x7f\x3a\xc9\xde\xa9\x75\x94\xa1\xc9\x2c\xbd\xd1\x92\x49\x4c\x9e\x13\x0b\xee\xbb\xc4\x82\xfb\xee\x98\x91\x5b\x83\x74\x49\x41\x5e\x8a\x05\x60\x2b\xfb\x94\x2f\x88\xa6\x79\x6e\xc4\xdd\xcc\xed\x96\x08\xff\x46\xe0\xd1\xf8\x37\x6a\xbc\xf8\x4c\x2b\x4f\x17\x8a\x86\xe7\xe2\x07\x3a\x40\xae\x89\xfa\xa1\x1b\x16\x50\xd0\x5d\xbf\x62\x4d\x22\x36\xf3\x15\xce\xa8\xaf\xa0\x06\x8c\x1d\x34\x4b\x74\x12\xb3\xa5\x97\x5e\xbf\x32\x91\xd3\x2d\xc9\xd9\x53\xc1\x1d\xbb\x19\x84\x35\x9d\xa8\x3e\x21\xaa\xaa\x49\x99\x7f\x9c\x7c\x39\x5c\x61\xaf\x0a\xeb\xa6\x2e\xd6\x87\x86\xcb\x51\x62\xc8\x43\x5d\x20\xfa\xfb\xbb\x6c\x21\x4e\x13\x07\x50\x6e\x92\x50\x53\x17\x84\x33\xb7\x58\xe9\xfd\x56\x0d\x17\xeb\xb3\x2d\x31\x90\xda\xc7\xd1\xe0\xb3\xe1\x94\xff\x70\x60\x55\x2f\xf9\x93\x14\x1e\x75\xfa\x61\x1c\x9b\xa4\x27\x42\x8d\x12\xde\x33\x19\xf4\x85\xb1\xc7\xf2\x2c\x74\xc3\x29\xc2\xdc\x5f\xe4\xc9\x5b\xcb\xd7\x2e\xfe\xe0\x16\xf9\x86\x5b\x75\x83\x84\xbd\x2c\x5d\x36\x19\x7a\x20\x8e\xde\xdf\x61\x8b\xcf\x07\x9f\xf2\x15\x68\x53\xd8\x21\xb7\x41\xd4\x09\xe3\x29\x06\xda\x13\x1f\x4b\x73\xd5\x17\xed\x9f\xb0\xc1\xb0\xb2\xc2\xd5\xea\x2f\x85\x9e\xbc\x1c\xb1\xcb\x65\xd2\xac\xbf\x0c\x6d\x01\xa5\xe3\xf8\x3c\x77\xeb\xce\x71\x69\xea\x1c\x01\x43\xbe\xbc\x67\xaf\x05\xb7\xc2\xb7\x22\x2c\x9e\x40\x5c\x21\x16\xda\xd4\x26\x13\x1e\xf5\x46\xa6\xe1\x49\x1d\x27\x29\xda\xbd\x3b\x5b\x8a\xba\x26\x2d\xc2\xa1\x11\x70\xa8\x9b\x05\xf5\xc3\xf2\xb7\x69\x8e\xe0\x6a\xdd\x14\xe6\x62\xda\x0d\x17\xb1\xda\x0a\x6f\xa5\x91\xbc\x35\xd7\x8a\xee\x87\x49\xb7\x6f\xe2\x2e\xcd\x05\x81\x02\x48\x01\x8a\x34\x43\xd4\x8f\x86\x16\xdd\xb7\xd5\xd3\x52\xbc\xc6\x24\xce\x60\x5b\x84\x45\xda\xd4\x9e\x50\xc8\xb5\x11\x0b\x9c\xfe\x79\xc4\x93\x72\x33\x01\x49\x4a\x92\x95\x29\x9f\x0c\xff\x8c\xb1\x46\xc8\x4b\x91\x3e\x61\xc0\x13\xa1\xd4\xd7\x89\x3e\x49\x09\x3b\x5c\x31\x63\x03\x61\x07\x09\x66\xc5\xdd\x6d\x0d\x47\xcc\x82\x99\x01\x87\x83\xf2\x74\x55\x37\xa8\xfd\x2b\xc1\x07\x1c\xf3\x84\x52\xc8\x9d\x31\xad\xc1\x49\x8a\xc9\x3b\x06\x5a\xe6\x61\x61\xf2\x29\xe6\x37\x12\x80\x30\x02\xe4\xa3\xd4\x0b\xdf\xc6\x3e\xf9\x2e\x25\xf3\xfd\x62\xc5\x6a\xca\xa1\xc9\x7e\x1f\x14\x8f\xaa\xf3\xe3\x1b\xfe\xaf\x13\xff\xf0\xdb\x18\xdd\x51\xde\xf8\x8d\x7b\x64\xfa\x40\x6b\x3e\x8b\xcc\x82\xf5\xa6\xb0\xd8\x5b\x6d\x18\x22\xd7\xab\xde\x99\xf6\xd3\x74\x11\x5d\x2c\x75\xd2\xff\xd8\x2e\x8c\x5c\x13\x11\xdb\xbc\x1d\x81\x9b\xf2\xa9\xf9\x9b\xfc\xe6\x2f\x61\xa1\xe4\x7f\x02\xda\x06\x97\xa8\xb2\x56\x98\x2c\x8b\xe6\x63\x21\xea\xc6\xaa\xbe\x46\x3c\xa5\xaf\x91\x5d\x2e\xfa\x51\xfe\x0b\xf6\x13\x74\xe4\xa2\xf1\x95\x2f\xf9\x9a\xfc\x41\xc5\x1d\xdf\xb4\xf8\x77\xa5\x4e\xb0\x18\x03\xfc\xb1\xff\xdb\x66\x74\x22\xf0\x1d\x34\x0e\x3c\xe7\x2a\x24\xf6\x0d\x21\x39\x14\xc2\x4b\x55\x9f\xf4\x71\xcb\xbf\xb5\x99\x19\xb0\x6d\x82\x07\x45\x52\x7f\xc3\xea\x6a\x20\x3d\xf8\x73\x2e\x3f\x5f\x44\xc0\x02\x87\xb7\xd5\x86\x7a\xa8\xe2\x36\x05\x6b\x81\x36\xd9\x31\xc4\xa1\x78\xa9\xc7\x6c\xd3\x01\x0f\xff\x6f\x28\xa6\x7d\x1f\x60\x52\x57\x05\x75\x1c\x89\x8f\xb5\xa9\xef\xf4\x5f\x63\x43\xe3\x81\xbf\x3a\xa6\x0a\xfc\xab\x3c\xa4\x7f\x09\x59\x97\xa2\xc6\x1e\x16\xf9\x2e\x45\x9d\x45\xc7\xee\x8f\x93\x2e\xc3\x30\x72\xd3\xf6\x20\x89\x38\xcc\x7a\x26\x5e\xd9\x5a\xbe\x06\x60\x6f\x30\x76\xa3\xc1\xbc\xcf\xbe\x05\x5b\x24\x3f\x44\x83\xa6\xc2\xad\x04\x33\xfd\x6d\x0f\xf7\x2f\x8a\xa8\x23\x0f\xc1\x14\x66\x0a\x38\x55\x1c\x76\x92\x66\x03\xf9\x31\xf4\xc4\xef\x53\x7f\xfc\x7e\x65\xc4\x6c\xdf\xbe\x56\x98\xa1\xf8\xeb\x78\xec\xdd\x5c\xc9\xb9\x3a\x6c\x74\x66\x12\xb3\x5c\x6e\xf8\x83\x2a\x3b\x7a\x76\x4c\x9d\x07\xa8\x28\xa2\xb0\xb6\x8e\x3a\x1d\xb2\xaf\x2d\xab\x1a\x29\xe6\xa3\xf9\x5e\x96\x8e\x86\xa2\x83\x4c\x65\x7a\xcf\xd0\x44\x85\xbb\xb1\xa7\xbb\x5d\x0a\x3b\x28\x0e\xef\x99\x56\x72\xd2\xc0\x9f\xe5\x57\xa9\xde\x92\x8f\x86\xc3\x34\x2b\x10\x00\xc2\x82\xc0\x75\xcb\xb5\x03\x70\x75\xd2\xe5\x30\xeb\xca\x8a\x69\x8f\xd6\x83\x25\x2e\x52\xac\xdf\x8b\xd3\x79\xf0\x02\x12\xa8\x21\xe0\xe1\x03\x7f\x4a\x4d\xaf\x07\xee\x39\xd2\x27\xdc\xef\xcb\x28\x6e\x7c\xe9\xde\xc4\xf8\x58\x79\x36\x80\xdd\xdb\xd4\xa6\x3e\x65\xba\x64\x4a\x27\x84\x42\x93\x0e\xd2\xd1\x50\x1d\xb1\xad\x0e\xcb\x88\xe3\xb1\xf2\xdd\xc0\x57\x5c\x87\xfd\x61\xfe\x20\x6c\xb3\x37\x83\x09\xa9\x28\xfb\x78\x88\xda\x36\x24\x49\xbe\x39\x71\x0c\xc8\x17\x74\xa8\x85\x86\xcb\xc1\x0e\x3d\xad\xd5\x3b\x24\xff\x76\x39\xf0\xec\xba\xb7\x2a\xbd\xe6\x03\xcf\x95\x51\xe6\xb0\xe1\x9b\x8d\x10\x04\x91\xeb\xf1\x63\x1e\x0c\xdc\x91\x1e\xaa\xcc\x99\x07\x34\x09\xf5\x67\x34\xb8\x32\x1f\x8a\xe4\xb5\xe3\x30\x72\xfd\xdb\xab\x54\x01\xf9\x26\x95\x56\xe3\x70\x39\x4f\x93\xe6\x84\xd8\xf8\xdc\x6e\x69\x3d\x5e\x23\x1d\xd0\xdb\x13\x7e\xdb\xf4\xc2\xad\x3e\xb9\x10\x8c\xb7\x92\x6f\x5a\x8b\x03\x57\x87\x94\x45\x71\x1e\x5e\x71\xe6\x07\xf0\xd3\x28\xb8\xdd\x0b\x9e\xf6\x15\x19\x4b\x18\x5e\x98\x2c\xc5\x14\xb6\x8e\xc6\xdb\xaf\xa2\x63\xf2\x35\xb5\x8b\x85\x30\x29\xc2\x7c\x85\x66\x94\x9a\x36\xdd\x94\xeb\x55\x27\x69\x9c\x0e\x06\xa3\x24\x92\x99\x50\x6f\x42\x7e\x27\xf0\x13\x3f\xbf\xe3\x86\xe8\x47\x49\x9c\x2e\xa9\x74\x03\x5b\x34\x35\x5c\x7f\x99\x30\x96\x71\x9a\xa5\x0b\xf1\x28\xcd\xd2\x4e\x98\xcd\x3b\xa1\x73\x04\x16\x67\xe9\x0b\x00\x95\x8b\xca\xd5\xad\x9a\xd9\xac\xd9\x56\x37\x1d\xcd\x17\x72\x2a\x05\x4e\x1b\xf8\x47\xb8\x40\xf9\xdb\x52\x94\xf5\x22\xcb\xfe\xea\x1c\xf9\x3d\x8a\x14\x7f\x0f\xeb\x0c\xbf\x7d\xbf\x8e\x0a\xb8\x1f\xf5\xfa\xf2\x49\xf0\x64\x17\x88\xeb\xb3\xaa\xf1\xb7\x67\x4f\xab\x1f\xe5\xc3\x30\x11\x7a\x4b\x2d\x75\xdb\x8f\x51\xf5\x84\x2a\xc9\x6c\xab\x9f\xc6\xb1\xc9\x1a\xbe\xd6\x7f\x9a\x28\x28\x6b\xe5\xb5\x17\x93\x74\x99\x85\xd0\x4e\x05\x94\xdf\xb0\x68\x5d\x24\xb1\xac\x02\x0d\x89\xe1\xea\x72\x5d\x5d\x66\xc5\x08\x4f\x18\x82\x4e\x8c\x90\xc8\x75\x25\x68\x9a\xdb\xdd\x5a\x0e\x5f\xd2\x8a\x38\xd0\x88\x38\x4b\x72\x5d\x66\x4e\xae\x9a\x98\xec\x2a\xbf\x20\x66\x39\xb6\xb5\x49\xf7\x47\xe8\x99\x11\x12\x00\x8e\x82\x92\xce\x3d\x38\x42\xe1\x9b\x1f\x93\x08\xde\x65\xc6\xa6\x9d\x61\x49\xdb\xbb\xc4\xa1\xf3\x9d\xb1\x6f\x32\x80\x14\x02\x45\xc6\x7b\xf6\xe8\xe2\xfa\xda\x98\x3c\xcd\x49\x98\x44\xd4\x80\xef\xdb\xb2\x24\x02\x8d\x9d\xed\xcd\x9f\x73\xe3\x18\x9e\xb2\xe3\x05\x93\x8d\xf2\x30\x36\x03\x7a\xdd\x7f\x38\xf6\x09\xf4\x1f\xd6\xcd\x39\x14\xa5\x1d\xce\xd1\xff\xd2\x69\xb1\x09\x81\x55\xfb\xd5\x90\x70\x7c\x6d\x02\xbc\x97\x65\x91\x0a\x5c\x6a\x7d\xd5\x3e\xbc\x56\x64\x69\x42\x62\x94\x85\x45\x48\x2a\xb8\x40\x4f\xca\x75\x05\xd2\x66\x07\xd7\x4b\xdf\x9d\x17\x90\x88\x86\x8d\x04\xa8\x56\xae\x09\xef\x69\xeb\x22\xa5\xaf\x3d\xa8\x48\x8a\x6f\xd9\xb7\xae\xe4\x1e\xfe\x27\x87\x59\xba\x10\xc5\xa6\x31\xd1\x41\x98\xe8\x2d\xec\xd0\x20\x26\x9a\xaa\x22\x61\xf0\xea\x20\x61\xe5\xda\x63\xe5\x2e\xd0\xcc\x7c\x27\x41\xe7\xa2\xce\x62\x83\x2b\x5c\x5c\xc8\x7a\xc2\x01\x05\x87\xa3\xf9\x38\xea\x84\x09\x48\x6b\xe0\x51\x6f\x0b\x9e\x11\x81\xe0\x15\x22\x8d\x60\xa6\xe2\xa3\x0e\x74\x3a\x0c\x4b\x33\x5c\x5a\x96\xa4\xe9\x77\x95\x60\x45\xd1\x85\x7a\x87\xfa\x21\xc7\x37\x92\x49\x1c\xdc\xdd\x7a\xe6\x93\x7e\xa8\xe7\xa7\x36\xe1\xd2\x6a\x8d\xfd\x7e\xda\xbd\xb2\xa7\x84\x66\xb1\x15\x85\xf3\x3e\xc3\x31\x8f\x22\xeb\x74\x8d\xde\x99\x19\xe7\x60\x6c\x48\x8c\x27\xfa\x2a\x47\x95\x17\x02\xcf\x3a\xf0\x03\x81\xf3\x6b\x27\xde\xd1\xaf\xfd\x77\x17\x49\x26\xf2\xff\xb0\x0e\xca\x4d\xcf\x79\xe6\xe9\x1f\x62\xf3\x22\x26\x3a\x65\xf7\x81\x92\x16\xd8\xb4\x4c\xa4\x0f\xe1\xf8\x10\x84\xff\x33\x84\xda\x3a\xef\x5d\x93\x8b\x75\x33\xad\xd0\xe9\x6c\x89\x47\xd8\x5f\xa2\x1c\xd7\x4a\x49\x63\x6c\x49\x51\x7f\x76\x2d\x34\xac\xb0\xeb\x07\x37\x77\x9e\x48\x3a\x6f\x05\x1e\x43\x70\x9b\x84\x8e\xba\x26\x8f\xb2\x70\x3e\x36\xa8\x8d\xc0\xd1\xa3\x44\x2f\xd7\xc1\xa7\x3c\xb2\x33\xcc\xe2\x28\xb4\x5c\x01\x19\x18\x4b\x34\xb2\xb0\xbf\x0c\x40\xc8\x5d\x82\x42\x9d\x98\x98\xe1\x28\xc2\x97\x1e\x2f\x5f\x82\xea\x37\x97\x81\xab\x30\x0c\x8e\xa9\x6c\xff\x20\xa0\x21\x28\x8c\x6d\x20\x24\xdc\x86\x41\x7d\xc4\x5f\xcc\x92\x75\x05\xe1\x97\x88\xf3\x5b\x13\x28\xdb\x1c\x27\x0f\x16\xf8\x72\x40\x7c\x47\x3f\x26\xf4\xa3\x50\x47\xc0\x82\xdf\xa5\xb8\x75\x68\xc2\x82\x66\x3d\x8f\xd2\xac\xe7\xd1\xba\x19\x7a\x3b\xb0\x1c\x75\xa2\x50\xb5\x8b\x31\x0f\x78\x9e\x38\xb6\xce\xbb\x3a\xfb\x30\x4b\x87\x59\x64\x0a\x55\xca\xc3\x01\xc7\x29\x92\xeb\xe0\x29\x52\x35\x4c\xd2\x51\xd2\xd1\xd2\xac\x76\x4c\xca\x1f\xd6\xb6\x4a\x8d\x6f\x1e\x66\xe9\x60\xe8\x38\x69\xb4\x5b\x35\x01\xc7\x7e\x82\xd0\x94\x45\x11\xe5\x69\x22\x18\x12\x1c\x3b\x61\x0b\x91\x1b\x27\xd7\x3b\x4a\x16\xe2\x70\x11\x22\xaf\x68\x0a\x9c\x0e\x3c\xf6\xe7\x34\xf7\x7a\x7b\x49\x9a\x29\x70\x58\xc4\x54\x03\x5f\x5f\x7a\xcb\x05\x57\x49\x9a\x9b\x6e\xb4\x04\x0a\x13\xa4\xa1\x1f\xd9\x33\xab\x3a\x2d\x4c\xbc\xe6\x6b\xa5\x67\x27\x60\x95\xc5\xa8\x98\x50\xac\x3d\x3b\x41\x4d\x43\x5d\xe2\x5e\x18\x25\xf9\x56\xbb\x21\x10\x79\xbd\x16\xf8\xce\xff\x55\x66\x6e\xba\x1b\x50\xf3\xea\xec\x98\x13\x42\x4f\xb8\x79\xbe\x86\xe3\x72\x5a\x88\x0a\x1a\xbe\xe9\x8b\x50\x4f\xae\x57\x27\xe6\x9b\xc2\x0e\x5e\x92\x56\x1d\xcb\x1f\xd4\xa2\x23\x8d\x28\x44\x59\x1c\x25\x26\x9f\x2a\xcf\x8e\xa0\xa4\x70\x5c\xec\x1e\x7f\xff\xc9\xb6\x75\x66\x8e\xf0\x50\x7b\x16\x8f\x3e\xb9\xea\x4b\xba\xbf\x94\xfc\x52\x83\x77\x32\xb1\xb3\x1d\xdd\x08\x1b\xfe\xe2\xa1\xd6\xc1\xdd\xcf\x36\x3c\x6f\x33\x72\x2d\x6d\x5c\x38\x85\x9d\x6c\x94\x83\x5c\x1e\x8b\xf6\x26\x4c\xb7\xf6\x65\x1a\x8e\x8e\xee\xda\x43\x01\x82\xbd\x38\x7c\x09\xf0\x0b\xa7\x5c\xe2\xcb\x0a\x97\xea\x82\xfc\xbc\xc8\xd2\x45\x25\x09\x9e\x00\x21\xcb\x4d\x25\xdc\x3b\x34\x6b\x59\x5e\xed\xcc\x2b\x5e\xe8\xfb\xb0\xd2\x72\xe3\x98\x3b\xfb\x61\xb6\x04\x36\x27\x9f\x82\xbd\x87\xef\x24\x37\x95\x88\xe2\x99\x56\xde\xe9\x9b\xee\xc8\x89\x6b\x63\x7f\x5e\x61\xde\xd9\x2b\x9e\x0d\x28\x4b\x43\x84\x13\xc8\x46\x8f\x8f\x89\x52\xee\x78\xe0\x39\x14\x46\x11\x48\x88\x10\x5e\xfd\x9c\x82\x9a\xeb\xa4\x3f\x73\xbe\x26\x6f\x68\xcd\xc7\x69\xe8\x0e\xbf\xd2\x71\x35\x88\xa7\xeb\x69\x42\x9f\x77\x4d\xb6\x14\xc6\xa3\xf2\xc7\xbd\x0a\xcf\x65\xb0\xc4\x2b\xf4\x80\x8e\x4f\x66\xa4\x7d\x80\xb8\xf5\x24\x4b\xa4\x9d\x0c\x36\x92\x79\xee\xdb\xd7\x1a\xf6\xc3\x6c\x10\x76\xcc\xa8\x88\x3a\x61\xdc\xa4\xd7\xc4\x8c\xf5\xa0\x1b\xd1\xfa\xe5\xc3\x1a\x81\xf3\xe9\x68\xa5\x37\xd2\xde\xb0\xf2\xca\x4d\x30\xce\xf9\x30\x3c\xca\xf2\x47\xca\x05\x54\x25\x22\x1e\x2e\x15\xb1\x05\x91\x00\x60\x68\xc5\x7d\xfb\x50\xa2\x11\x4d\x5d\xcb\xdb\x8c\x67\x03\xef\x85\xf2\xc3\x78\xa5\xb6\x37\x6d\x44\x2e\xd7\x44\x34\x58\x98\x5e\x26\x2c\x3b\x6a\x7e\x19\x45\x40\xe0\xc2\x64\xa5\xe8\x47\x49\xef\x31\xa2\xc9\xfa\xc8\xfa\x35\x84\xf9\x77\x18\xef\x7d\x97\xbb\xeb\x37\x80\x58\x40\xbe\x76\xcb\xfa\x48\x22\x33\xd1\x71\xf5\x4d\x6d\x6f\xc6\x3e\xd3\x76\x0d\xcc\x4f\x3e\xbd\x6a\xc3\x07\xbc\x17\x11\x14\xd3\xdf\xb0\x6b\x0d\x1f\xf9\x89\x8a\x5a\xcf\xf4\x81\xd6\x10\x13\xab\x36\x3c\x44\x6b\xf4\x9a\x5d\x1e\xac\xb4\xd4\x04\x30\x73\xf9\x41\x05\xb3\xf0\x4c\xcb\x8c\xb2\xd4\x4e\x8d\x14\x82\x59\x40\x6b\xe7\x7b\x63\x5f\x57\xb8\xcd\xb4\x8c\xf7\xd8\x98\x9b\xc4\xe4\x3b\x48\x15\x0a\xbc\x31\x2e\x24\x2a\x3f\x19\x81\xe9\xab\x0c\x49\x3a\x45\x11\xeb\xab\xa4\x7c\xf4\xbe\x7d\x2b\xf2\x97\x98\x2a\xff\x94\x2d\xc4\x0a\xdf\x75\x0d\x51\xd4\x28\xef\x9b\xcc\xf5\x99\x94\x78\xd8\x2f\xc8\x3b\x14\xc7\x2d\x85\x59\x64\xf2\xa6\x07\xd5\x5d\x21\xee\x02\x99\xb2\x46\x3d\xe9\x4d\x62\x39\x19\x0d\x92\xc8\x16\x1b\x91\x14\x4a\xe6\x84\x70\x17\x4a\x0b\xf0\xc0\x0d\x1b\x36\xa1\xc2\xf6\x13\xca\x4e\xd2\x70\x31\x0e\x13\x2b\x95\xa4\xd2\xa4\xd0\xea\x84\x93\x15\x35\x22\xd5\xb7\x2b\xff\x9e\x8a\x86\x55\xf8\x53\x67\x5b\x7b\x67\x1e\xe3\x29\x1c\xec\x3c\x21\xe4\x0f\x08\x5d\x7b\xc6\x7e\x82\x0a\x16\x94\x0f\x06\xcf\x75\x75\x42\xcc\x89\x80\xfd\x5f\xb5\x2f\x43\x67\x28\xca\x35\xd7\x4a\x8c\xdd\x9e\x42\x28\x67\xcf\x03\x9a\x36\x90\x49\x54\xab\xbf\x93\xb0\x9e\x56\x13\xf9\xcb\xd3\x12\xa0\xdf\xc2\xa7\xc8\x0d\x75\x45\x07\x26\xcc\x47\x99\x01\x77\x05\xcf\xf5\x8c\x69\xe0\xe7\x2f\xc0\xb6\xbf\x20\x00\x01\xee\x28\xa3\xca\x72\x66\x62\xa4\xbf\x32\x11\x31\x7d\xa0\x15\xe6\x53\xe5\x87\xc0\x76\x8a\x5a\x0a\xa2\x8a\xe3\xa4\x84\xfd\x47\x78\x74\x41\x45\x51\x85\xbb\x98\x64\xd1\x46\x5f\x14\x01\xe4\xa6\x55\x4f\x6d\xf4\x5b\x4f\xb4\xeb\x68\x10\xc3\x6c\x31\x6f\x52\xf1\xf3\x7a\x40\x65\x86\x9f\xd8\xcf\x57\xcf\xea\x57\xcb\x11\xf3\x44\x26\xb7\x44\x0f\xb0\x60\x3f\xa7\x7c\xe3\x2c\x5e\x95\x63\x80\x28\xf7\x89\xab\xd4\x13\xcb\x18\x31\x65\x5c\x0d\x36\xd6\xe3\xa7\x0f\xb4\x8a\xb0\xdb\x64\xd0\x51\xc3\x31\xbb\x82\xc6\x18\x9f\xb6\x4e\x43\x41\xf3\xa3\xcc\x84\xa3\x06\x69\x6c\x49\x6f\x5b\x07\xe7\x7d\xb7\x1e\x3a\xf2\x9e\x79\xe0\xc8\x04\xb1\x08\x21\x3e\xc3\x25\xd3\xc1\x0f\xaa\x2b\x74\x78\x9d\xb7\xab\xbc\x8e\x73\xbb\xf7\xb7\x32\x93\xa4\xcb\x89\x3a\x5f\x84\x95\x67\xc6\x1e\xd3\x77\xc6\x85\x1a\x45\xdf\xa4\x42\xcd\x59\x7e\x80\xe2\x03\x18\x2c\x40\x8f\xbc\x68\x86\xc5\x56\xef\x8e\x5e\xc7\x76\x01\x5c\xf7\x34\x4e\x20\x5a\x0f\x48\xf8\xe4\xa7\xec\x2e\x96\x7f\x27\x7c\xef\x69\x07\x56\x9b\x37\x3d\xd9\x06\x40\xf5\x5c\x09\x88\x18\xe9\xbd\x31\x21\x8c\x4f\x90\x35\x8a\x47\x99\x99\xe0\x60\x65\xa9\x30\xd2\xe1\x1f\x74\xa7\x1a\x5f\xf9\x92\x34\xba\x4e\xf2\x08\xc2\x16\x91\x01\x53\x35\x40\x42\x94\xdf\x24\x34\xcf\x42\x9a\x0d\x0c\xe2\x20\xa1\x84\x27\xe6\x10\x44\xee\x5a\x18\xf6\xfd\x91\xcc\xd8\xa6\xc7\xa3\xf6\xe3\x90\xc6\xff\x6f\xf6\xcb\x23\xe5\xfc\x73\xeb\xa4\x71\x68\x8e\xd9\x7a\x04\x6c\xef\x39\x38\x4a\x38\xda\xb3\x54\x53\xb9\x1d\x10\x5b\x34\x30\xbf\xaa\x41\xe8\x07\x10\xec\xe4\x8d\xf6\xd4\x30\xf4\xa8\x5d\x01\xff\x75\x4c\xde\x49\x33\x21\x3a\x73\xc8\xd0\x7d\xfb\xf4\x9a\x5a\xee\x2f\x8e\xc2\xac\x30\x59\xbc\xb2\x95\x94\xe4\x01\x39\xc2\xe4\xb7\x1c\x71\xe9\x27\x02\x21\x80\x82\xc7\x3a\x4d\x35\x4e\xb5\x3d\x73\xfc\x87\x3e\x06\x4d\x93\x6e\x0e\x58\x8c\x72\xdc\xd2\x6c\xd1\x11\x54\x39\x04\x59\x22\x53\x37\x42\xdf\x49\x30\xa0\xc2\xc4\x66\xd8\x4f\xcb\x9c\x84\x1a\xfe\xef\xd2\x88\xed\x36\xe0\x9e\x50\xac\xfc\x98\x10\xc7\x37\x83\x8d\x39\x74\x99\x34\x85\x71\x91\xf6\x4c\xd1\x37\x99\xcd\x3a\x64\xb2\x24\xe0\x29\x93\xea\x7c\xea\xfe\xd6\x70\xf4\xf2\xcb\xb1\x9a\x42\x65\xbb\xf7\xa5\xdc\xa3\x8c\x34\xac\x83\xd4\xcc\xb4\x32\x13\x8f\x3a\x45\x98\xc8\x8b\x41\xed\x13\x58\x08\xb9\xae\x1d\x2e\xe9\x9a\x4e\x99\x92\xc9\x49\xc7\x2e\x10\x86\x08\xb9\xa1\xf2\xe9\x42\x9a\x99\x4e\xe8\x78\x78\x9d\x40\xb3\x7f\x07\x97\xea\x49\x9f\xa3\xd8\xac\x3c\x9c\x28\x66\x17\x11\x54\x99\x70\x51\x88\x4d\x84\x58\x27\xf0\xd5\x85\x6f\x10\xb0\xc7\x24\x80\x40\xa0\xf0\xb5\xc9\x42\x68\x64\x0c\x9a\xb5\xb0\x2e\x31\x39\xe3\x05\x32\x1e\xe7\xed\xf9\x51\x6e\x88\x86\x63\x85\xbe\x31\xc9\x99\x64\x8a\x1d\xdc\x40\x24\x28\x11\xe4\x54\xf1\x07\xae\xe1\x53\x70\x6c\x50\xb7\x72\x48\x87\x72\x25\x35\xf7\xb4\xd5\x3d\xf9\x75\x12\x13\x42\xf0\x2d\x7f\xaa\x12\x98\xed\x99\x6e\x65\xa3\x3c\x8f\x42\x91\x92\x64\x72\x45\xa5\x73\xe0\x5c\x3c\x32\xdd\x5d\xd8\xee\xac\x9f\x88\x90\x7f\x47\x9b\xd2\x8c\xab\x48\x1f\xb4\xb2\xe3\xa1\x63\x53\x76\xa0\x06\x61\x99\x50\xfc\x8b\xc2\x53\x40\x0b\x70\xd7\xae\x26\xbc\xe2\x3f\x0f\x88\x78\xf0\xcd\xb1\x27\xb9\xdf\xbc\x4a\x12\x06\x77\xe1\x55\x85\xc7\x00\x36\xda\x85\x19\x87\x5c\xad\x64\x0b\x82\x75\x14\x69\x1b\x15\xb5\x99\x2f\xb4\xd2\x79\xd3\x8d\x1c\x89\x1f\x8c\xc7\x5d\x46\x26\xdc\xad\x44\xe8\x87\xca\x48\xa5\xbb\x14\x26\x1d\x65\xb8\x20\x81\xd1\x69\x97\xa6\xd7\xf0\x52\x45\x49\x57\x96\x5e\x69\x05\xde\x18\xfb\xba\xd1\x1b\x44\x10\xdb\x09\x07\xf3\x69\x37\x82\xe0\x32\xd1\x6e\xce\xea\x8d\xaf\x47\xaf\x64\xa9\x54\xdb\x1a\x7e\x28\x02\xdc\x25\x3a\xef\xa4\xbe\xad\x33\xca\xe6\x6d\x51\x09\x8e\xe9\xbe\x5d\x75\x1d\x0d\xa0\x09\x1e\x94\x29\x10\x25\x6c\xae\x08\xe0\x4c\x1f\x68\xc5\x69\x0a\x9a\x5b\xa7\x45\x7a\xf0\x2f\x44\x9d\x75\xd2\x81\xed\x54\x37\xbc\xe8\x77\xe0\xad\x49\x95\xc0\xae\x34\x42\x83\xb0\x30\x59\xa4\x09\xb2\x32\xac\x35\x94\x39\xe8\xaf\xdc\xb5\x7f\x41\xa5\xf7\xaa\x69\x94\x08\xd7\xbf\xfc\x17\x32\x52\xd6\x00\x19\xf0\x92\x94\xb7\x4d\xb4\x4f\x82\x09\x21\x14\x5d\x4f\x10\x5f\xb8\xaa\xe8\x2a\x0d\x84\xac\xd6\x58\xc8\xe7\x9d\x3c\x76\xd3\xb7\xfb\x7e\x6e\x7f\x49\xf0\x4f\x04\x85\xfd\xba\x2b\x07\xc6\x51\xc7\x24\x8e\xba\x1d\xe5\x93\x7f\x42\x70\x8a\xf7\xf1\x95\x10\x9c\xbe\xe7\xa2\xa9\xae\x59\x80\xc6\x01\xba\xad\x4e\x7c\x69\xdf\x3e\x6f\xe8\x1c\xc6\xe0\x6a\xcd\xbc\x65\x6b\xde\xc4\x91\x59\xd2\xf5\x53\x80\xc1\x04\x91\xe9\x13\x04\x71\x59\x06\xef\xb2\x3d\x11\xd8\x54\x3f\x0c\xc8\xca\xfc\xd0\xbe\x3b\x95\x2f\xb3\x7b\x59\x6e\x70\x54\x60\x8a\x17\xd3\x24\x1d\x44\x9d\xbe\xc9\x17\xc3\x95\x90\x36\xcc\x3b\xf8\x15\xb9\x21\x8a\xf6\x41\x9a\xa4\xc3\x34\x8e\x4c\x6e\xbd\xa4\xd3\x65\xa4\xcd\x51\xa3\xa8\xfb\x8b\xd3\x7b\x9f\xdd\x7b\x60\xff\x56\xc6\x6f\x4f\xa8\x07\xfc\xaf\x63\x6e\x9d\x36\xf6\x4c\xcb\xbf\x23\x98\xc0\x76\x9c\x6a\x13\x5d\xe4\xcf\xa9\x28\xd4\x4f\x33\x99\x4a\x17\x21\x57\x9c\x2e\x55\x75\xad\x19\xd6\x0e\xe7\xd3\x11\xca\x86\x30\xa8\xcd\x55\xaf\x53\xdd\xb0\x3d\x30\x1c\xcd\x3f\x0b\xfc\x34\xe5\x82\xe9\x1a\xa7\x6e\xa7\xb2\x1c\x3f\x9e\x10\x4b\x95\x92\xa8\x66\xf0\x1b\x8f\xf2\xbe\x7d\xad\xbe\xd5\xb4\x70\x86\xe3\x0c\x19\x0e\x56\x1b\x1a\x25\x7d\x13\xc6\x45\x1f\xd8\x5f\x54\x21\x64\xaa\x49\x6e\x28\xb7\x2e\xfa\x26\x2c\x32\x19\x0a\xd4\x1e\x50\xf9\x7b\x72\xed\x75\xc5\xc2\xac\x10\x10\x81\x00\x1d\xf1\xbc\x8a\x7a\x7c\xcc\xed\xe5\x30\xce\xb1\xb3\x60\xf1\x45\x32\x19\xaf\xe4\x7f\xb0\xc1\xa5\xf3\xcb\x2e\xe1\xbc\x5d\xe9\x4c\x94\x67\xd0\x16\xf8\x12\x13\x16\xfd\xa6\x07\x2c\x80\xab\x1d\x56\xe1\x27\xd6\xe7\x00\x8c\x7b\x85\x03\x8a\x30\xb3\x22\x5e\x34\x79\xf1\x0a\xeb\x06\xbc\x52\x89\xa5\xa6\x0f\xb4\xba\x06\x63\xbe\x0a\x4f\xd6\xe9\x83\x8d\xc7\x10\x6f\xe8\xe6\xd8\x73\x53\xf5\xd3\xa4\x1b\x36\x26\x9b\x78\xe5\x27\xcb\x4d\xdd\x9c\x4a\x62\x16\xd3\x34\x0f\x9b\x5c\xf7\x07\xa6\x12\x1f\xf5\x28\x5c\x36\x80\x57\xdb\x2a\xa5\x2b\x2b\x41\x19\x66\x61\x17\x5b\x57\x61\x3b\x44\x92\xfe\xce\x43\x07\xac\x93\xd4\x96\xe9\xec\x81\x25\x64\xb8\x9b\xb7\x72\xcd\x9e\x70\x94\x17\x59\x18\x93\x89\xd5\x23\xcd\xe7\xbb\x0e\x36\x9d\x84\x45\x99\x65\xf9\xba\x38\x66\x17\xe5\x9a\x4e\x9f\x05\x89\x3c\xe2\x9b\xb3\x37\x2c\x45\x03\x0a\x12\x82\x37\x40\x48\x75\x8c\xb0\x00\xe7\x11\x90\x21\x3a\xbc\xc5\x0c\x1e\x97\x89\xe7\x56\xc2\x59\xf9\x75\x04\x61\xf2\x2b\x94\x06\xdd\xae\x89\xcb\x67\x5b\x0b\x51\xe1\x66\x0f\xb4\xae\x64\xbf\xb3\xdc\x10\x4a\x7f\x61\x14\xc7\x5b\x6c\xc1\x19\xa5\x53\xf8\x3d\xbc\xb7\x0f\xd1\x62\x64\xe5\x75\x07\xc7\x74\x04\x28\x3f\xa3\xbc\x64\xde\xbc\x38\xb2\x63\x49\x32\x12\x84\x00\x0a\x11\x82\x5c\xd7\x8c\x97\x5b\x1a\x0f\xb5\xfd\x2a\x80\xc5\x6a\x58\x64\x88\x6c\x5f\x3d\xef\x9b\xee\xf6\x32\x8e\x75\x9a\x2a\xfe\x24\x7f\x07\xe1\xa1\x1b\x12\x73\xbe\xeb\x2c\x97\x7d\x03\x42\x64\x9e\x27\xf1\x04\xd4\xb4\x60\xde\x6e\xd2\x81\xec\xf4\xc3\xac\x67\xba\x56\x05\x1c\xaf\x6a\x0d\xaf\x47\xa9\xd3\xec\xb3\x2b\x77\x1a\xd5\xb7\x51\x95\x82\x47\x9c\x5a\xfd\xd4\x64\x3d\xaf\xdc\x93\x65\x3a\x43\xfd\x8e\x35\x5b\x3d\x96\x6b\x3a\xa2\x69\x99\x9b\x7d\xa2\xe1\xd8\xf4\x1e\x10\x63\xdc\xd6\x55\x5f\x0e\x3a\x6e\xab\x78\x5a\xa0\x63\xc2\xe1\x53\x78\x60\xa7\x22\x53\x06\xb8\x8e\x7d\xce\x95\x0a\x85\xd9\x15\x3f\xb5\x05\xf0\x19\xa0\xd7\xa4\x98\x2c\x18\x5c\x18\x08\x54\xa6\xef\xb3\x24\xd4\xdb\x63\x62\xd0\x11\xb1\x49\x34\x16\x5f\x0f\x76\x31\xb5\x66\x2f\x4a\xd2\x06\xa1\x23\x4e\xd0\x2e\x39\x41\x62\x20\xbd\x74\xe9\xf3\xd6\x7c\x3a\x7b\xb6\xd1\xb7\x63\x1f\xde\x20\x8e\x5b\x13\x47\x2f\x45\x19\x4f\x2d\x32\xf6\xfb\x1d\xfb\x27\xf0\x1f\x57\x2a\xc1\xf3\x33\x2d\xf3\xd2\x30\x75\x8a\x96\x28\x5b\x9e\x0e\xa8\x86\x79\x9a\x9c\x55\x38\x9f\xa7\xf1\x92\x9a\x23\x1d\xab\x68\x38\xc9\xb9\xf3\x13\x89\xd9\x60\x3e\x07\x74\x53\x7b\xd4\x76\x7d\x35\x95\xf1\xe5\xb4\xbc\xc8\xa2\x4e\x81\x70\x54\x21\xff\x3e\x69\xb0\x75\x18\xe2\x1d\x8e\x92\xdc\x74\x0a\x4c\x68\x4d\xe0\x96\xb4\x28\xb4\x31\x08\xd8\xb7\xaf\xb5\x12\x99\xb8\xbb\xc5\x17\xd4\xb6\xdb\xe6\x04\xea\x39\x67\x70\xf8\x1c\x35\xfe\x41\x85\x8a\x0a\xaf\xa9\x96\xe3\x1e\xf5\x7d\xbb\xee\xa3\xd6\x84\xb8\xd1\xaa\xf2\x6b\x29\x3b\xbe\x6d\xa7\x20\x1e\x59\xf3\x50\xc4\xff\xf4\xaf\xd9\x50\x03\x15\xa9\xf7\x6d\xd4\xe3\x75\x61\x75\xda\xea\x13\xde\x61\x75\x3e\x83\xa2\x0b\xd1\xc6\x6e\xe0\x2d\x82\x87\x6e\xae\xaa\xc7\xef\xf4\x23\xb3\x90\x63\x3e\x12\x65\xed\x0b\x72\x20\x10\x52\xdd\x45\xc8\x88\xc3\x0e\x00\x85\x5c\x8f\x89\x9a\xf8\x74\x9d\x16\x61\x66\x06\x61\xb6\x88\xf7\x03\x37\x72\x94\xa4\xe2\x61\x9f\x55\x0d\x61\x97\x1b\x0b\x2b\xb2\x34\x36\xa3\xc1\x16\x3c\xc4\x04\x87\x31\xcf\x4e\xc2\xbe\xec\x68\xfb\x4d\xb4\x79\x95\x9c\xe9\x99\xca\xeb\x9c\x3e\xd0\xca\x97\xad\x16\xa5\xf3\x57\x82\x8d\x55\x34\x68\xc3\xd1\x44\x1c\xa9\x04\x66\x7b\xf6\xb4\xc2\x6c\x00\x64\x89\x2e\x93\x3d\xb5\x48\x85\x5f\xa5\x79\xa1\x6b\xae\x45\x1a\x87\xa3\x5e\xbf\xe9\x73\xba\x8f\x69\x9c\x62\x6b\xdb\x77\xf1\xd6\x78\x60\x35\x5c\xc0\xec\x54\xf9\x85\x61\x12\x6e\x52\x9f\xe1\x7f\x22\xc7\x73\x93\x48\xed\x96\xd3\x6c\x31\x2f\x2c\x56\x14\x35\x7b\x24\x33\x42\x36\xa3\x62\x95\xe5\x47\xca\x7f\xac\xb2\x8a\x25\xd5\x93\xe3\x51\x67\xb1\x41\x74\x10\x7f\x32\x31\xb0\xe9\x91\xbe\xf3\xa3\x15\x48\xd4\x69\x81\x9d\xb4\x31\x3e\x84\xeb\x16\x75\x0b\x2a\x41\x3e\x89\x91\x73\x45\x2f\x78\xd8\xeb\xe9\x80\xe8\x37\x3e\xb2\x96\x56\xe7\xed\x29\xec\x5e\xa5\x7e\x75\x73\xd5\xcb\x03\x5e\x0a\x98\x5b\x04\x64\x8e\x58\xa2\xe6\x2a\x35\x20\x7f\xf6\xd0\xae\xed\x28\x2e\xa2\x32\xbd\x05\x0e\x10\xaf\x51\xda\x1d\x9c\xe7\xaa\x3d\x55\x93\x32\x08\x93\x97\xd3\x24\xa2\xe1\x45\x19\xc9\x92\x9b\xe0\x29\xc2\x46\x59\xd1\x6a\x35\x81\x4e\x84\xc8\xd5\x65\xce\x55\x42\x94\xc3\x87\x5b\xc3\xfe\x4a\x1e\x75\xa4\x2f\x2b\x44\x25\x08\xcb\x94\xb5\xa4\x66\xbc\x2a\x1f\x46\x65\x42\x4b\xf3\xc5\x1e\xfe\x22\xba\x4a\xf8\x52\xbf\x5d\x37\xe7\x9f\xf7\xc3\x45\x93\x0f\x4d\x98\x09\x53\xbd\xd0\xbf\x52\x95\xf3\xd4\xf8\x69\x9a\xed\x77\xc4\xea\x53\x44\xdb\x28\x75\x3a\x1c\xd2\xf7\xb0\x1d\xe4\x86\x59\x16\x2f\xb9\xa5\x7c\x71\x14\x99\x32\xf3\xb0\x66\xd0\xd1\x12\xcd\xe9\x74\xe5\xa5\x1a\x40\xf0\x6c\x2b\x1b\x25\xd2\x1a\x80\x19\xd9\xd2\xf6\x31\xa6\x14\x7f\xe0\xaf\xab\x68\xd9\xd9\xb9\x59\x1b\x50\x6d\x69\x10\x5f\xbe\xfd\x0d\xad\x9a\x94\x7b\x50\x5b\x73\xe5\x86\x52\xde\xd9\x86\x1b\xd0\xb9\x33\x21\x23\x63\xba\x2b\x48\x88\xd0\x8c\x90\xfe\xa7\xdc\x20\x92\xc2\x9e\x04\x18\x52\xae\x09\x47\x15\x25\x5d\x8b\xf6\xd6\x26\xad\x8a\x52\x36\x66\xea\x91\xed\xf3\x61\x32\x35\x89\xa1\x77\x07\x15\xf3\xf9\x38\x4d\x42\xcb\x83\xe3\xf4\xad\x09\x47\x1b\x2d\x23\xa1\x9f\xe0\x6f\xd0\xd6\x91\xc7\xaf\x86\x59\xd1\x1f\x65\xc0\xa2\xe2\xfb\xdc\xc6\x90\x97\xdc\x50\x63\x63\x21\xea\x00\xae\xee\x88\x89\x70\x72\x54\x5c\x4e\x9d\xe1\x42\x98\xcf\xdb\x8f\xd6\x61\x72\xfb\xd1\x72\xe3\x2a\x26\x3d\x93\x0e\x4c\xe9\xe4\x09\x97\x70\x9c\x02\xd4\xe3\x9e\x96\x2c\x8c\x8d\x1d\xcf\x43\x83\xe0\x1a\x41\x0a\x5f\x1f\x13\x9b\xc0\xef\x8b\xa5\xd0\x38\xb6\xae\x10\xf1\xa5\x5f\x99\xfd\xd2\x2f\xcf\x3c\xea\x8f\xe9\x75\x26\xaa\xfe\x2d\xbb\x01\xa4\x1f\x13\x50\x5f\x4a\x9a\x47\x32\x06\x08\x73\x88\x43\x27\x38\x1b\x58\x8f\x2d\xab\x5e\x9d\xec\x3a\xac\x1e\xce\xb2\x84\x0d\x70\x40\xb7\xa8\x9c\xd4\x68\x13\x71\x4e\x96\x3f\xd9\xf8\xe2\x21\xd9\xd6\x37\xec\x4e\xc2\x5a\xac\x73\xfd\xfa\x2f\x57\xd5\x81\xec\xcd\xf4\xdf\xb6\xdd\x16\xd8\x5c\x04\xc4\x08\x4e\xb7\xaf\xd2\x04\xdd\x47\xf8\x26\x4a\x19\xe7\x70\x00\x5f\xfd\x45\x60\x30\x1c\xf5\x87\xee\xb7\x95\xcf\xae\x52\xa5\x66\xdb\x7f\xd4\x2e\xcf\x0b\x3c\xfe\x8d\x32\x66\x59\x17\x66\x7a\xf4\x88\x04\xd3\x88\xe5\xd8\xb1\x4a\x23\x60\x3b\x5d\x54\x62\x3a\xfd\xd4\x74\x11\x95\x60\xe7\x5e\x84\xbb\x55\xe5\xd0\x0a\xc7\x8d\x5c\xe3\x6f\x63\x28\xeb\x3e\x15\xa5\x5e\x18\x29\xbb\x6c\xc3\x83\xf8\xde\x0d\x88\x8e\xfc\x5d\xea\x85\x44\x49\x54\x44\x61\x1c\xaf\x58\x33\x8a\x10\xef\x4d\x1a\xa3\xfd\xe9\x98\x28\xaa\x4e\xd2\xf0\xe6\xb2\xc3\x28\x6a\x72\x61\x97\x52\x6e\xdc\xc6\xce\xc2\xa1\xc9\x8d\xe9\x6e\x90\x89\x64\xda\xaf\x1a\xca\x9b\xd9\x56\x27\x0b\x5f\x5e\xe1\x0c\x10\x60\x3c\xb9\x76\x70\x9e\x30\xcb\xc2\xa4\xa7\x05\x4a\x37\xfe\xee\x68\x1c\x65\xaa\x1f\x85\x8b\xd7\x2a\xa5\xda\x32\x52\x8a\xa3\x5e\xbf\x70\x08\x74\xc7\x40\x51\xbe\x45\x25\x17\xd8\xe9\x60\xdc\x4b\x26\x19\x19\x3b\x4b\x27\xe4\x2b\x63\x96\xf1\xbf\x65\xed\xb8\x8e\x33\xbb\xee\x83\xf9\x4c\x9b\xca\xe3\xac\xa9\x78\x97\x9a\xca\xbd\x2c\x1a\x36\x7c\x13\xf5\xd7\x03\x1f\x80\xff\x7a\xc5\xa8\x5b\x25\xa2\xb0\x30\xd8\x37\xa2\x20\x83\x7d\xa3\x8c\xfd\x8d\xb9\xdd\xeb\x5b\xda\x1e\x1f\xff\xaf\xe1\x4e\xb5\xcc\x5e\xa7\x72\x5c\x94\x49\xad\x10\x15\xa9\x05\xaf\x34\xdc\x55\xa7\xb3\xae\x84\xb3\x94\x16\x5e\x85\x5c\x71\x3c\xf6\x63\xe5\x86\x32\x25\x13\xe7\x66\xb9\x6f\x32\x60\x4d\x11\x5c\x03\xa4\x0f\x95\xc7\xfd\xeb\xaf\x11\x3c\xf8\x52\x99\xf3\xeb\x6f\x76\xa3\x22\xcd\x22\xa1\x7d\x53\x42\x71\x3f\x8b\x73\xaf\x86\x4e\x7c\x7f\xab\x13\x87\xd0\xaa\xe0\x5d\x75\x9b\xeb\x0a\xb7\xe9\x33\xf2\x22\xcc\x8a\x58\x18\xff\x34\x65\x3e\x47\x4a\x58\xe7\xe8\xd5\xe5\x61\xd2\x9d\xf2\x61\x88\x84\xa2\x8a\x6d\xf4\x83\xc1\x52\x98\x10\xea\x35\x82\x9a\x0d\xd2\x22\xcd\xd2\x38\x6c\x10\xe5\xf2\x51\x04\x16\xca\x8a\xea\x2d\xe3\x62\xbc\xf2\x68\xb9\x03\x35\x0d\xf7\xf1\xda\x63\xab\x24\xc3\x48\x8a\x47\xd2\xdb\x44\x39\xe2\x0e\x1e\x42\x65\x75\xec\x18\xae\xea\x93\x95\x5f\x0f\x4a\x67\x7f\x05\xf1\x2b\x8c\xc0\x1a\x01\x61\x77\x58\x83\xab\x0d\xd0\x8d\x35\xb9\x67\x5a\xbd\x2c\x4c\xba\x96\xdc\x3e\x33\x89\x15\x77\x57\x15\x30\xfb\x0c\xc2\x1f\x19\xd0\x48\xfd\xe9\x09\x65\x79\xb3\x60\x0f\x64\x83\x30\x26\x60\xfa\x50\xc0\x49\xdd\x51\x28\xfa\x61\x61\xe7\xe5\xf0\x22\x1f\x5d\x25\x3e\xfa\xad\x36\xaf\x84\x1b\x39\x5e\x03\x18\x85\x62\x8b\xeb\x06\x2b\x7e\x89\x21\xac\xb4\xf8\xbd\x24\xdf\x66\x7f\x0e\x27\x73\x47\x9b\xe8\xdc\x3f\xcb\x3a\xd1\x0f\xc6\x7e\xfe\xfa\x1c\xa9\x56\x3e\x85\xd0\x1e\xd5\x3a\xc4\xfc\x08\x19\x6e\xd2\xa7\xec\x9e\xf9\xbb\xf6\xeb\x48\xf3\x92\x54\xad\xc5\xf7\xc2\x5f\x56\xbb\xac\xe5\x46\x5f\xb0\xaa\x1a\x4d\xeb\xc0\xe0\x31\x9b\x6d\x2f\x60\x78\x11\x0e\x0a\xc5\x93\x3b\x75\x8a\xc8\x0b\x71\x44\x4a\x9d\x3a\x2a\xc4\xf1\x66\x4d\x30\x9d\x98\x91\xad\xad\xbe\x2c\x2a\xb4\x9a\x2c\xda\xb5\x92\x9b\x0a\x12\x78\x6e\x77\x6b\x21\x56\xa9\x0c\x1d\x97\xb0\x67\x07\x1b\xf2\x06\x31\xab\x7e\x40\xb0\xbd\x85\x28\x31\xd9\x4a\x93\x4a\x8a\x97\x89\xcb\xed\x06\x8d\xc5\x4f\x6a\x07\x85\x66\xd8\x20\x88\xec\xfa\x98\x89\x7c\xd6\x6b\x2d\xda\x20\x5c\x34\x23\xd8\x65\x27\xc7\x50\xfe\x05\x15\x4d\x73\x4a\x21\x51\x31\xca\x7a\x2b\x62\xfa\xea\x94\xb9\x68\x22\x36\x2c\xfa\x79\x93\x66\xaa\xd7\xa8\x11\x07\xb8\x0a\xc0\x58\xb5\x99\x52\x5e\x46\x8a\xd1\xc0\x48\xa9\x1d\xc6\xfd\x22\x15\x49\xae\x11\x16\xfd\xef\xff\x84\xe6\x4a\x73\xf0\x6f\xf2\x44\x96\xfd\x49\x1d\xd5\xf2\xf5\xa3\xf9\x74\x94\xa0\x35\xe3\x0c\x9f\xa3\x50\x39\x47\xfb\x74\xdf\x9e\xd9\x86\xcf\xd2\x25\xac\x96\x1b\xd7\x69\x29\x4c\x12\x8a\x6e\x27\x3c\xfe\xc7\x84\x50\xfa\x38\x98\xa0\xe6\x35\x83\x79\x1d\xdb\x82\xcf\xf9\x29\x87\xea\x3f\x25\x84\x59\x3f\xcc\xb2\x08\x43\x69\x4a\xc2\x4d\xac\x77\xaf\x4f\x24\x2c\xc3\xfe\x0a\x0f\x5f\x1c\x27\xda\xb0\xe3\x75\x9b\xb2\x97\x45\x03\x5b\x2c\x04\x0c\x19\xb5\x20\xd5\x4a\x2d\x83\x52\xd5\x22\xa8\x13\xea\x32\x45\x21\xe8\xf3\x69\x69\x0c\xdd\xc1\x9e\x96\x9b\xda\xfc\x2e\x8e\x12\x33\xc9\xda\x57\x1a\x2d\x25\xed\x7b\x7a\x43\xb8\x26\x9c\x5c\xe5\x1f\xd5\xbe\x70\xc3\x49\x52\x5c\x26\x2f\x96\xce\x17\x2c\xa1\x21\x85\x6f\xfb\xf5\xb5\x08\xfe\x24\x91\xd1\x75\xd2\xcc\x31\x9d\x2a\x95\xb0\x6f\x0b\xaf\x55\x70\x93\xcf\xb4\x06\xe9\x32\x01\xe3\xef\x21\xe3\x75\x72\x6b\x9e\x9f\xb2\x3a\x18\xb3\x77\xc6\xb2\x9e\x58\x46\xd6\x86\x23\xcd\xc2\x17\x51\x1b\xfc\x88\xf6\xe0\xa2\xa1\xfd\x14\x94\x56\x70\xac\xb0\xd7\xef\xf0\xdc\xda\x71\xd7\xb4\x1b\x46\x3e\x0c\x81\xa5\x95\xf0\x54\x6e\x2a\x45\xde\x2f\x58\x31\x1d\xb7\x50\x4e\x51\xc3\xd5\x73\xde\x70\xa5\xae\x32\xc6\x91\x86\xa0\xc4\xeb\xf0\x15\xca\x6d\xe8\xf1\xba\x6b\x04\x46\x39\x46\xc8\xb3\xbc\x6f\xa2\xc5\xdc\x72\xdf\x03\x8d\x07\xde\x1a\x64\xbe\x90\x35\x50\x21\xf2\xea\x5e\xd9\xdf\xea\x9b\xb8\x0b\x7e\x3c\xac\x3a\x08\x42\x45\xbe\x1b\x31\x20\xe9\x8d\xba\x61\xf3\xb1\x3f\xce\x9b\xda\x7e\xbc\x6a\x21\x0e\x81\x69\x12\x89\xb7\xc0\x3f\xca\x99\xb1\xdf\x49\x5d\x13\x47\x9d\x28\x1d\xf1\x63\x63\x90\x06\xa1\xef\x0d\x52\x80\x3e\x4f\x0d\xb1\x95\x74\x94\xf4\xb6\xfb\x09\xdc\x35\xcf\xba\xfc\xc8\x87\x63\x82\x78\xf3\xf4\xd8\xeb\xac\xbb\x77\x94\xe8\x5f\xa4\xb3\xe0\x44\xea\xcb\x57\x8a\x75\xdf\xd4\xe6\x03\xdf\x29\xd2\x2d\x13\x35\x2d\x06\x72\x04\xbe\xf7\x8a\xb9\x6a\xd4\xb0\x7e\xd7\x9e\x6c\xad\xd2\xd7\xf8\xc5\x4e\x1a\xc7\xe1\x30\x17\x98\x81\x0a\x38\x79\x0a\xd9\xb3\x2c\x12\x71\x8e\x70\xdb\xdb\xda\xa4\xea\x6e\xa1\x21\x4e\x54\x18\x4e\xef\x0a\xd5\x07\xaf\xf0\xf0\xf2\x7c\xfe\x98\x27\x55\xfa\x2e\x73\x14\x0a\x85\x89\x60\xb5\x6c\xd9\x14\x1b\xf5\x4f\xc7\x3c\xc1\x14\xd0\x76\x10\x9d\x7d\x37\xdb\xb4\xd7\x1f\x6c\xfb\x8d\xd0\xb4\xbd\x33\xa6\x92\x24\x11\x94\x1d\x63\x81\x7d\xcf\x5c\x9b\x17\x99\xec\x1f\xf8\x39\xa0\xa5\xe5\x9a\x66\xa6\xfc\xe2\x95\x91\x19\xbc\xe7\xbd\xf1\xc3\xf6\x5d\xf9\x6c\xf2\x33\x93\x02\xc6\xa3\xdc\x56\x2b\x88\xd6\x58\x09\x3f\x6f\xa2\xc9\xa0\x54\x8a\xc4\xf2\xf6\x01\x6a\x17\xd8\xa7\x6f\xd9\xbf\x8d\xb0\xec\x14\x01\x03\x04\x45\x86\xb0\x08\x04\x64\xf0\xc1\xc7\x58\x40\xeb\x8f\xc7\x9e\xf0\xf5\x5e\xa5\x21\x6d\x59\xae\x93\x22\x8d\x0d\x86\x39\xbd\x53\x47\x61\x52\xae\x27\xe2\xfe\x24\xcc\x3a\xfd\x95\x26\xc1\x84\xae\x92\xba\xca\x59\x6a\x3f\xbe\xe9\x15\x9e\xc2\x24\x4c\x42\xa1\x32\xc0\x32\x49\x49\x05\xbb\xf7\x16\x77\x8a\xcf\x39\xa3\xd8\x8b\x4d\x92\xe0\x93\x14\xc0\xee\x83\xa6\xb3\x5c\x3b\xba\x57\xf1\x51\x73\xbb\x5b\x99\x09\x3b\x85\xf5\xb7\x5a\x12\xf2\x1d\x92\x7a\x92\xf0\xe5\x30\x53\x62\x47\xa5\x64\xa6\x14\x74\x52\x5a\x2c\x31\x49\x93\x70\x15\xc7\xc7\xbe\xdb\x71\x6b\x42\x43\x52\x7d\x42\xbf\x9f\x93\xda\xb9\x84\x1e\xfa\x31\xde\xfe\x84\xbd\x30\x4a\x1e\xf7\xba\xfe\x37\xc7\x3e\x94\xfb\x0d\xac\x13\x5e\xed\x8f\xac\x5a\x9e\xd3\x47\x2c\x77\x29\xbc\x0a\x2c\x1b\x0e\xd7\x0d\xdb\x4d\x25\xca\xfd\xfd\x9e\x28\xc5\x65\xf8\xd2\x7e\x92\x3f\x3b\x26\xfd\x4c\xb0\x6d\xe3\x0c\x89\x36\x2e\x6e\x7e\x5c\x19\xd6\xda\x3b\xc3\xc4\xc9\x56\x4f\xdc\x11\x1e\xfd\xcf\x76\x41\xe4\x9a\x76\xd3\x7c\x36\xca\x73\x13\xe7\x5b\x58\x30\xea\xdf\x8d\x69\xbe\x12\xa5\x11\xd7\x5c\x72\x92\x80\x3f\x67\xbd\xa1\x7f\x57\x27\x3d\x33\xcc\xd2\xa5\xa8\xab\xc9\x33\xac\xf1\xbb\x3c\x96\xf3\x2e\xb5\x5b\xf3\x22\x4b\xe3\xd8\xee\x15\xf4\xf3\xae\x11\x27\xcd\xb5\x89\x90\x3c\x8d\x27\xf8\xb1\x8f\x11\xcd\x8e\x57\x65\xca\x8c\xc5\x58\xd9\x05\x93\xec\x16\x3e\x57\x53\x5d\x6a\x53\x8c\xc2\x58\x62\x6b\x9e\x6f\xd1\xc1\x3d\x02\x06\x9c\xa4\xc8\x78\x18\xc5\x79\x2a\x35\x66\x27\x49\x42\x22\x26\xe5\x4a\x89\x0c\x44\x40\x39\xde\x59\x0a\x38\x5e\x7e\x39\x6c\x10\xaf\xe7\x5f\x4c\x7c\x30\xb7\x7b\x7f\xab\x30\x71\xec\xb0\x39\x70\x82\xdf\xa5\x0f\x82\x1c\x94\xf6\x32\x48\x75\x3d\xeb\xe2\xeb\xc1\xad\x9f\xa3\x61\x8c\x8f\xe9\x57\xae\x51\xa9\x3a\x8c\xc3\xac\x23\xcc\x2a\x4e\x27\xd9\x15\x97\xd6\x68\x1d\xfa\xa3\x5e\x5f\x23\x4b\x4c\x2a\xdc\xc3\x19\x91\x9b\xda\x63\x6e\x89\x0c\x25\xd8\xd2\x42\x1b\x51\x12\xbc\x46\x11\x7e\x67\x94\x75\x63\xed\x0c\x09\x0c\x01\x3f\xab\x98\x04\x2d\x73\xc7\x26\x2f\xb6\x4c\x90\xa6\xfa\x61\x7b\x11\x8c\x46\x73\xf2\x67\x10\x12\x63\x9a\x68\x38\xb2\x66\x05\x72\x6b\x11\xea\xb1\xe9\xf6\x74\x1b\x23\xa5\xde\x0c\xa2\x2e\xb9\x59\x7d\xc2\x15\xee\xb3\x41\x94\xf4\x0a\x59\x38\x54\x42\x6e\x33\x12\xf6\x76\x05\x68\x69\xb1\x02\x31\x87\xdc\x32\xbc\x48\xe3\xf8\x67\x1c\x2f\xf2\x20\xea\x0e\xd2\x2c\xb1\x3a\x00\xe5\x5f\x45\xf1\xe2\xdd\x31\x6d\xc3\x7b\x04\x87\xdd\xde\xf6\x55\xec\xcb\x95\xd4\xe3\xc0\x73\xad\x2c\x1c\x46\x5d\x09\x2c\x9c\x58\xe5\x41\x77\x5d\x09\x26\x0f\xcd\x5a\x42\x17\x39\x58\x88\xcf\x4e\xe0\x60\xc9\x8d\x3b\x58\x4b\x61\x6f\x64\x84\x0d\x6e\xfd\x8a\xad\x2d\x5e\xa9\x38\x89\xbd\x33\x2d\xf3\xd2\x4b\x13\xeb\x25\xcc\x4d\x72\xb3\xea\xf7\x64\x32\xca\x72\xf7\xc5\xc5\xa1\xa2\x32\xa1\xde\xb5\x7c\x93\x42\x8a\x6e\x31\xea\x4a\x90\xee\x8f\x42\x38\x1f\x36\x69\x42\xe7\x46\xd0\xf8\xca\x97\xc4\x68\x83\x88\x57\x1b\xab\xd5\xe3\xa7\x5d\x4a\xc0\xcd\x9c\x9a\xab\x2f\xd0\x5f\x18\xfb\x8e\x66\x3a\xff\x82\xb1\xcd\x9e\x1c\xa6\x4a\x82\xa0\xb1\xaf\xad\x7e\x40\xd9\x7d\x3f\x1d\x98\x7c\x0a\xaa\x5f\x0f\xa5\xba\x6c\xec\xdb\xb7\x7e\xc1\x55\xb1\x33\x63\x89\x93\x39\x0e\x17\x20\xb8\xdc\x30\xc0\x24\x29\xa2\x22\xb3\x82\x22\x2e\x8c\x3d\x89\x1f\x96\x9b\x4a\x95\x7b\x6e\x77\xeb\xc5\x51\x94\x14\xa3\x61\x2c\xc1\xab\x00\x70\xec\x99\xc2\x94\x19\xe2\x72\xbc\xf6\x8f\x02\xef\x19\xfc\x74\xd2\x42\x3a\x8a\x9b\xde\xf1\x60\x08\x7f\x42\xa7\x57\xdb\x81\x1b\x45\xaf\x66\x5b\x07\x77\x3f\xbf\x83\x13\x3b\xdb\x53\xc3\xa6\x38\x31\x6e\xfc\xf2\xdf\x73\xd2\x6f\xe5\x4b\x77\x52\x07\xd3\x07\x3c\xc5\xa9\x5b\x98\x8f\x71\xde\xe5\x97\x03\x8f\xbb\x95\x01\x33\x9d\x6f\xab\x19\xc5\xce\xc2\xc1\x50\x2b\x11\x75\x62\xae\x9e\x37\x38\x1f\x59\x69\x09\xbb\x58\xeb\x57\x48\x16\xaa\x61\xcf\xa0\xc2\x4e\xed\xaa\xc3\xe9\xbf\x47\xa8\xb7\x4e\x9a\x2c\xc4\x23\x8b\x48\x2e\x7f\x13\x31\x85\xc0\x46\xf1\x85\x44\x66\x4b\x53\x53\x0f\xc4\xf7\x1d\xf7\x85\xa8\xf0\xcc\xb2\x58\xe6\x07\xa4\xb1\xfa\x23\xfb\x8e\x10\xc7\x54\x4b\x0a\x87\x0f\xb7\xa2\xa4\x6b\x5e\x6a\x78\x10\xca\xf7\x03\x02\x53\x7e\x7f\x22\xf6\x0a\x47\x03\x29\x26\x09\x47\x07\x19\x9d\x46\x9b\x4e\xe8\x0d\x22\xe1\xca\x8d\x19\xc4\xe0\x9e\x50\x92\xf8\x72\x69\x34\xb2\xe4\xaa\x53\xba\x6c\xba\xf2\x01\x2c\xf2\x8f\x4d\x28\xaa\x59\x08\x56\x7f\x3c\x56\xd2\xe4\x0d\xaa\x11\x54\x73\xbb\x21\x55\x3b\xb9\xab\x03\x33\x0d\x4d\xa8\x52\x1d\xda\x06\xf2\xd0\x5c\xf9\x40\x38\xbf\xaf\x7b\x38\x4e\x96\x2e\x2c\xf8\xf6\x80\x30\xc6\xd8\x55\x56\xf6\x18\xcf\x16\x3c\x9f\x45\x45\x18\x25\x8f\xd9\x1f\x95\x84\x8c\x99\x66\xa0\x61\x8b\x4c\x50\xd2\x54\x0d\x7e\x88\x63\xff\xbe\x0d\x39\x39\x1a\xd3\x68\x89\x22\x9d\x7b\xd6\xf8\x29\xbe\x81\xa2\x9e\x7b\x63\xdf\x04\x38\x37\xf6\xe4\x94\x27\x88\xb9\x2d\xcd\x3a\xfd\x30\xeb\x46\xae\xba\x5d\x8b\x1d\xae\x45\x0c\xa4\x45\x7f\xaa\x7c\x3c\x60\x19\xce\xd8\xd3\x28\x2a\xc3\x6d\x62\x00\xbb\x68\x3f\x19\xa5\xb1\xf3\x15\x0f\x73\xf8\x70\x69\x79\x3a\x8b\x76\x5a\x5a\x64\x43\xc7\x7e\x1e\x1d\xb5\x0e\x7c\x69\x70\xcc\xa0\x30\x70\x86\xb8\x71\x74\x16\x43\x66\xe4\x60\x04\xd6\x10\x62\xe3\xa7\x6f\x62\x4d\xe5\x06\x6b\x27\x3f\x46\xb0\x94\x51\x62\xba\x23\xe1\x6a\x74\xf3\xb4\x6b\x34\xb2\xbc\x56\x31\x19\x87\xa6\x0f\x08\x72\xb0\xd1\x20\xb9\x40\x3f\x0e\x7c\x99\xf4\x85\x32\xd3\x1b\x89\xbe\x91\xef\x73\xa0\x2c\x2b\xd7\x55\xf5\xf3\xe9\x56\x6c\x16\x0a\xea\x62\xdd\x18\x53\x46\x72\x83\x56\x01\x02\x0a\x4a\x3c\x23\xb2\x8c\x63\x0f\x98\xab\x53\xd0\xdd\xaf\x7c\x35\xa6\xdb\xe4\x19\x7b\xfb\x11\xa2\xd1\x10\xd0\x7c\xc5\xb7\xa9\xce\x38\x30\x45\x3f\xed\xa6\x71\xda\x5b\x79\xe8\xe4\x4c\x65\xdb\x3c\xb7\xdf\x12\x43\x36\x3d\xe3\xeb\x29\x02\xb0\xdd\x26\xb6\xc3\xaa\xb6\xc8\xf4\x81\xd6\x7c\xfa\x92\x81\xb2\x84\x22\xed\xa8\x9e\x72\x97\xca\x0f\x17\x59\xa8\xc8\xe4\x51\x2f\x31\xdd\x6d\x84\xad\x46\x9b\x8e\x6a\xd2\xfb\x79\xc6\x6f\xd6\xd3\x17\xba\xc9\x21\x54\xb2\xe0\xbf\xee\xda\x67\x46\x85\xeb\x8e\xeb\x63\x77\xe2\x68\x38\x9f\x86\x19\x06\xa1\xdd\x33\xcd\xed\x76\x15\xa3\x09\xf3\x3e\xd1\x75\xe8\xa6\x12\x1d\xa3\x66\xf4\x83\x80\x68\xe2\x7f\x50\x11\x37\xb2\x22\xc3\xbd\x08\x30\xad\x86\xc7\x58\xdf\xa7\xb6\xf6\x7d\x3f\x33\x9c\x66\x06\x0d\x5b\x62\x81\x52\x73\x7a\x93\xf1\x07\x0d\xd2\xd1\x9c\xcf\x46\x89\xcc\x27\x22\x22\xf9\xbd\xc0\x77\xae\x7f\xaf\x0e\x2b\x92\x0e\x92\x68\x5e\x58\xff\x95\x2e\xb6\xe1\xa9\x63\x5d\x22\x54\x8c\x06\x69\x66\xdd\x1e\x2c\xd3\x56\xc2\x91\xde\x26\x76\x5c\x01\x6c\xaa\xf2\x25\x53\x7f\x47\x0b\xbb\xca\xdf\x57\x2e\x3f\xfb\x15\x60\xf2\xd6\x2d\x2c\x14\x66\xfc\xdb\xf8\xa2\x6a\x54\x6c\x8b\x90\x94\xcd\x9f\x45\x54\xf0\x57\x9f\x5a\x2d\x8d\x18\xf6\xcd\x6d\x6b\xc4\x10\x5e\x34\xdb\x65\xd8\x01\x7c\xc7\x6d\x61\x22\x73\xc4\x13\x8e\x1c\xe1\x63\x9c\x0f\xfc\xfa\xd3\x6d\x7f\xf2\x4f\x90\x64\xa0\xd4\x1e\xd4\x06\xda\x7d\xa0\x54\x36\xbe\x67\x95\x8e\x72\x6d\xbe\x20\xff\x3c\x4b\x1c\x87\x67\xeb\x1a\x3d\xbd\x38\x4d\x07\x91\xea\x28\x2a\x72\xc2\x4f\x6f\xfc\x2f\xb6\x60\xa9\xf9\x00\x95\xda\x62\x13\x66\x51\xd2\xdb\x66\x03\x25\x25\x83\xb2\xab\xa5\x73\xc4\x0d\x62\x0f\xb2\x0f\x0f\xd4\x26\xf4\x7b\xb1\x77\xae\x0a\x7e\x48\xfe\x87\xba\xcc\xe7\xeb\xea\x03\x36\x24\x35\x9a\xa4\xa3\x24\x77\x62\x4c\x6c\xff\x27\x48\x57\xa0\xf4\x49\x5b\xb8\xb1\x60\xdf\xb1\xd4\xde\xf0\xa4\x78\x4b\x47\x61\xe7\x45\x21\x3d\xf0\xb3\xa6\x6b\x35\xc5\xb7\x67\x5b\x99\x9d\x78\x31\x89\xe3\xdb\x01\xa6\xfb\x67\xf8\xfb\x72\x53\x79\x7a\xc8\xfb\xbd\xa4\xfc\x6b\x33\xf2\x20\xc8\xfa\xe5\xba\x6e\xa4\x32\xcc\x3a\x45\xd4\x69\x10\x5b\x01\x26\x70\x35\x96\xad\x59\x25\x53\x06\xef\xae\x94\x81\xed\x23\xec\xca\x72\x53\xd3\x84\x6c\xe5\x1d\x3f\x26\x8a\x68\x7d\xcc\xe4\xf6\xe3\x09\xac\x5c\x1a\x76\x77\x7a\x2b\xfd\x7d\xbb\xe5\xb5\xf0\x4d\x75\x83\x53\x01\xa5\x9c\xc7\x24\xa4\x72\xc1\xcb\x8c\x57\xb6\xb5\x2b\xa2\x2d\x3d\xfb\x6a\x44\x2d\x92\xab\xaa\x22\x5e\x8f\xdf\x97\x9e\x0c\x0e\xca\x4f\xc1\x68\xad\x1b\xcf\xc6\x48\xd8\xbd\x67\x26\xd4\xc7\x3e\xe5\x6b\x04\x69\x92\x47\x76\xba\x4c\x55\x2d\x10\xb3\xa2\x16\x2a\xd7\x35\x23\x8e\xcf\xb6\x16\xd2\xd8\xc6\x9a\xac\x94\xf5\x1a\x1e\x46\x6e\x2a\x60\xe7\xc3\x87\x5b\xfd\x34\x16\x0b\xea\xd8\x46\x66\x66\xa4\xf8\x7b\x9d\x20\xc1\xaf\x56\x5e\xa8\x0d\x0f\x4c\xc7\xc1\xf6\x04\x2c\x11\xf8\xf4\x77\xad\x92\x8b\x39\x59\x31\xfb\x4b\x8e\x40\xed\x02\x4f\x2e\x5c\x08\x76\x32\x0e\x65\xd1\xec\xb0\xe9\x15\x61\x37\x49\xa6\xb9\x5c\x50\x25\xed\x2c\x17\x48\xdb\x21\x0d\xc7\x63\x83\x42\xad\xb2\xd9\x7b\x32\x04\x98\x43\x20\xd5\xde\x19\x6f\xfe\x9c\x8b\xdd\x79\x3b\x0d\x63\xf3\x49\x5f\xf3\xde\xd1\x6e\x1c\x9a\xf5\xcc\x44\x7e\xd8\xf9\xac\xb5\x87\x70\xa0\x82\x89\x16\xe9\x5c\xe6\x45\x5e\xe3\xe3\xfc\x8f\x48\xb3\xf2\x9b\xa0\xb8\xc2\x61\xbb\x62\x67\xa6\xb0\x67\xef\xe3\xdb\xaa\x82\xa5\xff\x52\x5b\x2d\x0c\x05\x07\xe0\x91\x55\x4f\x9e\xf3\x60\x3c\x39\x34\xce\xca\xff\x20\x86\x94\x0f\x99\x64\x43\xb1\xdb\x17\xef\xff\x16\xe0\x26\x9a\x0a\xd9\xf7\x82\xe2\xf3\x47\xf5\xd8\x93\x48\xbb\xbd\x8e\x07\x7b\xaf\x87\x9f\xb9\x46\x49\xb2\x92\x26\x06\xe5\x0e\x27\x5d\xed\xc9\xed\x2f\x91\xb0\xdf\x54\xbb\xfc\xfe\x2a\xd7\x57\x03\x59\x2b\x83\xc6\x74\xc9\x64\x2a\x2c\x85\x18\xe6\x18\xfe\x9e\x23\xf9\xf7\xe5\xfc\x3b\x84\x0e\x34\xb9\x0d\x2c\x6c\x24\x39\x7d\x40\x47\x7a\x49\xb3\xfa\x9f\x54\x08\x60\xe6\xca\xcc\x79\xb9\x31\xa1\x46\x5b\xbe\x08\x95\xa9\xf5\x7f\x7c\x3e\x8c\xe3\x34\x4d\xb4\xc0\x27\xe4\xb6\x81\x0f\x59\x4f\x56\x0e\x60\x69\x47\xa3\x2e\x40\xdc\xe8\x5f\x23\x4e\x84\xd3\xb8\x6e\xb7\xab\xaa\x2a\x68\x8c\xb1\x9c\xa5\x49\xcf\xfa\x0f\xb4\xd4\xb7\xaf\xfa\x9f\x3a\x47\x99\xd7\x96\x55\x57\xa2\xf8\xb5\xff\x00\x49\x8b\xb6\x55\x7c\x11\x69\xb0\x62\x9a\x13\xf4\xf6\x8c\x83\x24\xc7\x7e\xa4\x92\x26\x1d\xdc\xdd\x1a\x84\x79\x6e\x1a\x9e\x12\xec\x82\x75\xc9\x0a\xd6\xf4\x7c\xc8\x8b\x26\x44\x55\xcc\x35\x66\xcb\x3f\x2c\x37\xd4\x25\x8b\xf2\x38\x4c\xba\xa2\x3b\x87\xe3\x08\x6a\x76\x6d\x51\x12\x35\xc8\x69\x1a\x9f\xca\xac\xbc\x7e\xd1\x40\x1c\x03\xd3\x7f\x0f\x31\x91\xdc\x04\x44\x16\x92\x85\x89\x42\x41\x5c\xb9\x79\xd3\x2a\xd5\xb5\x37\x11\x0e\x37\x4a\x56\xb6\xf9\x31\xb3\xc7\x09\x6e\x2d\x4a\x30\x4a\x6a\xcd\x7d\x5d\xaa\xbf\x8b\x7c\xa9\xb8\x16\x1b\x60\x28\x10\xd2\x8f\xd3\x85\xc3\x61\x1c\x49\xf0\xaf\x70\x9f\xf2\x27\x15\x73\x41\xce\xfc\x46\x9d\xc8\xfb\x42\x94\x94\xe9\x91\xe1\x44\x6d\x8d\x12\xb5\xb5\x31\x6b\xdf\xa6\x4b\x51\x6e\x32\x16\x2e\xc0\x10\x99\x5c\xd7\x7c\xc0\x7e\x97\x67\x70\xff\x43\xd4\x63\xbd\xb4\xa2\x17\x70\x7a\x71\x64\xf2\x22\xb7\x1c\x41\x58\x93\x13\x01\x45\x71\x77\x03\x1a\x88\x92\x2e\x3d\x5a\x57\x1f\x06\xbe\x4b\xbf\x05\x82\x17\x32\x37\x44\xa2\x37\xcf\x4e\x03\x75\x03\x13\x79\x9b\x07\x1d\x6e\x07\xfc\x14\xb9\x09\xb3\x4e\xff\x11\x22\xcb\xb8\x6f\x17\x65\x02\x1b\x0b\x4f\x77\x91\xe5\xdd\xd1\x8c\x45\x82\xf2\x3a\xfc\x3c\xfc\x19\x06\xe9\x9d\x9c\xcc\xec\x73\x5a\x88\xb3\x6c\xbc\x33\xeb\x47\xad\x4b\x51\x41\x83\xba\x75\x9c\x8f\x4d\xe2\x71\x16\x30\x39\xbf\x45\x4c\xa2\xbf\x55\x49\x64\xad\x92\x1e\x26\x99\xa5\xb4\xec\x90\x62\xe5\xf7\x92\x9b\x60\x47\x64\xc1\x83\x7f\xb3\x95\xfc\x95\xf2\x19\x2c\x44\xe0\x9d\xbf\x6c\xdd\x20\x62\x86\x9d\x16\xab\x0d\xef\x71\x15\x3b\x14\x49\x5e\x69\x6f\xf7\xc8\x46\xd9\xd1\x6e\x1c\x78\x4e\x52\xba\x75\xeb\x87\x10\x3f\xaf\xdb\xed\x88\x7e\xc6\x8e\x55\xc2\x88\x3c\x02\x54\xb7\xc3\xf6\x96\x2e\x91\x96\xf7\x79\x65\x27\x1a\xfb\xea\xef\x4d\x96\xcc\xfa\x6f\x83\xc6\xe1\xc3\x92\x79\x6c\x6e\xdb\x58\x49\xc4\x06\x83\x32\x41\x71\x94\x4e\x5f\x9e\x76\x32\x0c\x1c\xab\x3d\xb9\xea\x66\x55\x7f\xf5\xb3\x76\x3a\x73\x7d\xdb\x2a\x45\xbb\xf7\x18\x02\xf2\x2e\x3c\x9b\x1b\xdf\x2c\x5d\x2e\x82\xb9\xfb\x41\x69\xb7\x80\x49\xbe\x1e\x78\x88\xdc\x7f\xf5\xcc\xaa\xf5\x99\x4a\x05\x5d\xda\x56\xbc\xdd\xc7\xda\x8d\xaf\x7c\x49\xec\xef\x51\x72\x01\x79\x34\x18\xc6\xd1\x82\xf8\xc4\x67\x1d\xc1\x6c\x83\x88\x67\x7d\x1e\x1a\x26\x3d\x13\xab\x1b\xc3\xc7\x8b\xaa\x17\xd2\x9a\x1f\xda\x8d\xa8\x2e\x4d\x7d\xe9\xc2\xa8\x18\x65\x66\x1b\xf5\x8d\xbe\x4b\xf2\x96\x98\xa7\x67\x92\x26\x1c\xd0\x47\xf1\xa6\xb4\xb6\x50\xfe\x61\x7b\xe6\xfe\xdf\x5f\x40\x65\x56\x83\x5f\x07\x5b\xcb\x4c\xa8\x65\x33\x9c\x91\xbb\x38\x23\x72\x53\x49\xdc\x0f\xcd\x62\xc0\x3f\x2f\xd2\x54\x54\xae\xb1\x6e\xd7\xb8\xaa\x73\x6d\x02\xd0\x90\xa5\x82\x4c\x53\x2e\x00\xfa\xc9\x6a\x90\xab\xc1\xe3\x0b\xa3\xbc\xd8\x36\x41\x0a\x5a\x7e\x65\xbb\x3b\x67\x3f\xd5\xa6\xd4\xe0\xb6\x5d\x17\x97\x0a\x6c\x18\x55\x71\xc0\xa0\x3d\x7b\x5c\x18\xf2\xa8\xc7\xa3\x0f\xb6\xd2\x70\xce\xda\xc4\x70\x9c\xb7\x3e\xef\x62\xcb\xa3\x06\x7a\xcc\x3e\x07\x7c\xec\xcf\xec\x66\x91\x7f\x27\xe3\x35\xe8\xa4\x4d\x3a\x7c\x3f\xe3\xc0\xf7\x5a\xc0\x68\xfa\xaa\x66\x81\x05\x64\xa6\x89\x90\x30\x51\x80\xa9\x88\xce\xb3\x75\xe1\x52\x91\xa5\xc3\xa8\x13\x26\xe0\xa5\x57\xb9\x3d\x9a\x5e\x7b\xd7\x8f\x13\xc4\xb1\xe9\xb9\xaa\xbb\x92\x79\xfa\xda\xd0\x65\x2a\xb9\xfd\x8c\x6a\x30\x5d\x8c\x4f\xe0\x17\x20\x9d\xe3\x78\x9e\xcb\xcf\x41\x34\xf3\x9e\x83\xcd\x2c\x87\x89\x63\x0c\xc4\xee\x46\xf9\x53\x55\xc8\xec\x2e\x80\x97\xdd\xd6\xf6\x35\xcc\xb0\xd3\x49\xcb\xe3\x95\xf7\x9b\x3e\xad\xbb\x89\x1c\x40\xe8\x88\xec\x0b\x57\xff\x5c\x25\xd8\x9a\x6e\x8d\x92\xcc\x58\xe7\x6f\x9d\xad\x0a\x69\x79\x15\xf0\x73\x9c\xf1\x31\xfb\x7e\x98\x84\xf1\xca\xcb\x68\x69\xe0\xac\x08\x42\x5d\x6e\x28\x5d\xfe\x79\xe0\x0b\x3d\x3f\x77\x07\x6a\x10\x66\x51\x98\x10\x29\x96\x90\x1e\xcb\x4d\xc0\xf4\xea\x1d\x23\x7d\x1a\xad\x92\x95\x7f\x50\xcb\x67\xbe\xd7\x96\x98\x25\x93\x3d\x3a\x61\x81\x7d\x49\xee\x8d\xc0\xc3\x88\xfe\x7b\x44\xf8\xd8\xe5\xc7\x51\xd5\x51\xd9\x8a\xd2\x2d\xe0\x25\xbc\x41\xc4\xd2\xaf\xc3\xb9\x23\x9d\xba\x0f\xcb\x29\x00\x7a\x29\x17\x29\x9c\xbe\x5c\x71\x2d\x29\x6e\x84\x71\x94\x69\x69\x99\xd0\x9a\x6c\x49\x50\x9b\xd8\xe1\x22\x3f\x8c\xbd\xab\x5a\xc4\x3e\x44\x5b\xc8\xc2\xde\x00\x75\x0c\x0f\xfb\x38\x69\xbf\x9b\x4e\xe2\x4c\x36\x23\xa2\xbc\xbf\x03\x7f\x19\x73\xa9\x42\x06\xef\x50\x6e\x8e\xc5\xfe\xff\x09\x26\x08\xf7\x9c\x00\xe7\x25\x6b\x05\x1c\x91\xd8\x5e\xf5\xf2\xc7\x6c\xfb\x41\x10\x13\x78\x5c\x9d\xa0\xaf\x11\x2e\x09\xe3\x34\xe9\x59\xbd\x4f\xcd\xbe\x1b\x8e\x34\x09\xb5\x70\x98\xdf\x23\xd4\xe8\xbb\x56\x5b\x90\x11\x92\x1c\xf4\x77\x71\x96\xce\x5b\x7f\x8c\xe6\xfe\x37\xb0\x4b\x55\xea\x6f\x43\xc7\xd1\xea\x4a\xfc\xf5\x86\x47\x8a\x41\xe6\x54\xae\x57\x2b\x09\xce\x6c\x2b\x1d\x15\x0d\x4a\xdb\xec\x27\xa9\x1b\xf7\x35\x7e\x0b\xbd\xee\x47\x49\x6f\x87\x87\x76\x35\x30\xec\xa1\x64\xbb\x36\x26\x52\xa6\x73\xeb\x3b\x50\x94\x3c\x3b\xc1\xce\x8f\x03\xee\x7c\x97\x8b\x53\xdf\xe3\xb8\xe4\x02\x89\xd9\xbf\x4d\x24\xdf\xe9\xb2\x40\x85\xb1\x01\x4f\x8a\xd1\x94\x3b\x82\xc9\x87\x9d\xc2\xb6\xd8\xcb\xa7\x50\x7f\x68\x9f\x4f\x6e\xec\xb6\x20\x6c\xa0\xa3\xc7\x27\x98\x75\x9a\x85\x9d\xd8\x34\x58\x16\x6d\x82\x17\xf7\x54\xc0\xb4\x31\x43\x93\x6f\xf5\xa9\xe4\x05\x1c\x21\xd4\x7e\xee\x07\xa4\x23\x21\xa8\x28\xa5\x4f\xb0\x06\x4c\x0b\x21\xe5\x6a\xe8\x74\x44\x0d\x75\xb8\xed\x98\x10\xcc\xf8\x26\xf3\x62\xde\x24\x23\xd2\x37\x61\x57\xbb\x31\xae\xed\xee\xc7\xb3\x88\xf1\x6c\x68\xba\x5d\x3f\xea\xe3\x88\x74\xfd\x60\xf7\xc5\x8a\x48\xd9\x33\xf6\xcb\x36\xa9\xd0\x75\x99\xda\x71\x82\x5f\xc5\x06\xb9\x51\xe9\xfb\x1c\xdc\xdd\x8a\xa3\x0d\x47\x9b\x88\x77\x4f\x92\xb7\x5c\x32\x9d\x26\x4d\x3b\x8a\xf0\x8a\xf3\xfa\x5f\x3c\x24\x96\xeb\x01\x0d\xb1\x1a\xab\xeb\xce\x9c\xa7\x9b\xac\x73\x91\xeb\xb6\xef\x2a\xe5\x26\x89\xd2\x2c\x2a\x56\x1a\x93\x65\x12\x4f\x41\x77\xb9\xae\xf0\x39\x8c\xe2\x58\xe4\x7a\x94\x94\xb7\xfc\xfb\x5a\xd6\x78\xd4\xa1\x1a\x92\xc2\x36\xfe\x50\xab\x7a\x80\xe8\x49\xa7\x81\x1a\x4e\xb0\xf7\x2a\x95\x75\x3e\x26\x8a\x13\xab\xc8\xb6\xd3\xee\x0d\x64\xd4\x4d\x5b\xf3\x81\x0d\x97\x3a\x3b\xc0\xac\xa8\x4e\xa3\x62\xd3\x60\x81\xdf\xa9\x55\xbb\xdf\x61\xd6\xde\xa2\xe9\xc9\x6b\x63\x92\xa0\xbf\xc3\xd4\x2d\x50\x7d\x51\x19\x0a\x42\xc6\x6c\x42\x60\xe5\x2c\x84\xd3\xe6\x5d\x07\xf2\x54\xa9\x83\xab\xd6\x6c\xb6\x95\x98\xa8\xe8\x97\x69\x3d\x15\x63\xcb\x87\xc1\x41\x3c\x49\x5d\xc2\xd7\xc7\x3e\x96\x0e\xbb\xe6\xc5\x51\x58\x98\x78\x65\xca\xeb\x91\xad\xe1\x1c\x31\xca\x58\xd9\x61\xec\xb7\xd0\x79\xfb\x3a\x72\x4d\xcb\x77\xdf\x09\x73\x21\xd7\x74\x12\x60\x5e\x0e\xac\xe2\xc0\x34\xe4\xdc\x20\x75\x0b\x73\x07\x74\x12\x56\x41\x38\x19\xe1\x29\xee\xd4\x4d\x46\xcc\x8f\xba\x3d\x53\x60\x64\x83\x50\x9b\xfb\x1d\x6a\xf3\x31\xaa\x3b\xbe\x60\xd7\x8a\xbb\x88\xda\x27\xb7\x1f\x83\x43\x7c\x77\x02\x60\x3c\x4a\x0a\x93\x59\x64\xfe\x8c\x6b\x13\xfb\x21\x8e\xad\xab\x04\xa8\x41\x8d\x56\xfe\x83\xfa\x62\xdd\xb4\xdc\xd9\x56\xac\x0e\xa0\x92\xa3\xf4\x0d\xaf\xe1\x3d\x63\x20\x4f\x46\x1d\x60\xa8\xde\x24\xea\x86\x9f\xf2\xf4\xcd\xdb\x36\xb8\x40\xcc\x0d\xa9\x71\xfc\xd0\x55\xdb\xf9\x47\x1c\x29\xd4\x3b\xf2\x67\xad\x63\x84\x87\xdd\xd4\x26\xac\xce\x45\x42\x1f\x98\x30\x8b\x23\x93\x01\x7d\x80\x33\x24\x3d\x79\xf8\x72\xf0\xfa\xe9\xb0\x04\xf1\xe5\x02\x53\x88\x02\xcb\x6d\x7c\xac\x03\xdb\xcc\xed\x96\x03\xfc\x06\x8f\x44\x0a\x57\xa8\xa8\x5b\x06\xc4\x96\xb1\x55\x06\xa1\xa5\x44\x13\x50\xc4\xfc\xc7\xde\x59\xf5\x8d\xc9\xb6\x4c\x9a\x60\xe2\x24\x29\xbf\x2b\x5b\x4f\x1c\x6d\xfb\xbd\x67\xd7\xef\xd4\x49\x96\x71\x11\xc6\xc5\xff\xe5\xe3\x6a\xfc\xaf\xc1\xe6\xbc\x29\x0a\x93\xed\xa0\xf9\xa6\x3f\xf0\x18\xbc\xff\xe6\x73\x18\xef\xc6\x59\x6e\x41\xd1\xc6\x1a\x86\x6f\xb6\xec\xf1\xd7\x69\xd5\xf2\xa1\xb0\x63\x76\xae\x7a\xb8\xfe\x14\x75\x8b\x77\xad\xda\x05\x52\x2a\x05\xcf\xec\x9a\x45\xf3\xc8\x1d\x75\x00\x9f\x9a\xd9\x17\x9d\x84\x4b\x2f\xed\x76\x4d\x2e\xea\x19\x28\xb1\x9d\xa6\xa9\xb1\xd3\x15\xf3\xbb\x67\x4f\xab\x37\x2a\xbf\x9a\x35\xbf\xca\xb9\xe0\x9f\x67\xcd\x01\x88\xf2\x51\xd2\x0d\x57\x34\xb9\x86\x75\x01\x25\x3f\xce\xe8\xfb\x5c\x37\xfa\xe6\xd8\x2b\x3f\xe7\xa3\xf9\xbc\x08\x13\x8c\x85\x6f\x7b\x18\xe0\xdb\xbe\x02\xd4\xc5\x5f\x81\x03\x47\x94\x06\x0e\x5b\xf9\x0f\xfb\x86\x55\x96\xc9\x4b\x3f\x9d\xab\x61\xdd\x7c\xb6\x15\x0e\x4c\x56\xe6\x69\xd6\x2f\x8a\xae\x13\x9e\x51\x45\x9e\xbc\x5f\x4c\xbb\x2b\x8f\xb8\xa1\xac\x3b\x7f\x0d\xbb\x1f\xdb\xea\x81\x5d\x0d\xe4\x2f\xb7\x99\xd9\x0d\xa4\xdb\x38\x22\x78\x9d\xc8\x93\x76\xda\xa9\x59\x37\x26\x54\xbe\x33\x27\x8d\xed\x40\x2f\x32\x79\xf2\xb0\x46\x40\x99\x59\xa5\x4b\x26\xb3\xb1\xaf\xa6\xaf\x34\x93\x7e\x89\x78\xf2\xa7\xec\x16\x53\x09\xc2\x8d\x76\x7a\xcf\x1e\x9b\x30\x0c\xa3\x2c\xec\x00\x5e\xc5\x53\x4f\x72\x4d\x4c\x64\x42\x80\x06\xbe\x7c\x87\x97\xf4\xd8\x49\xca\xe0\xa4\xf4\x06\xe2\x49\x1d\x16\xf3\x4c\x91\x92\x33\x20\xa0\xc0\x2e\x94\x6b\xd8\x3a\x95\xef\x2b\x9f\x49\xc9\x29\x1f\x46\xc6\x6f\xc5\xb3\x9b\x14\x27\x9e\x83\xdb\x82\x55\x7d\x8d\xa4\xad\x8e\x12\x54\x6c\xc1\x24\x89\x11\x8d\x49\xd8\x9f\xdf\xb5\x3f\x29\xd7\x95\xc3\x70\x70\x77\xab\x1b\x0e\xc2\x1e\x50\x9c\x4a\x4f\xeb\x5b\x71\x93\x23\x06\x9d\xfe\x8a\x1d\x35\x87\xbb\xbc\x1a\x78\x28\xff\x19\x72\xa3\x57\x89\xd1\xf8\x0c\xad\x73\x94\xe4\x43\xd3\x29\x50\xd5\x52\xbd\x15\x5f\x86\x38\x49\x31\x73\x36\x2a\xa3\xc9\x1d\x64\x2c\x45\x73\x59\x44\x7e\x99\x97\x5a\x64\xe9\x80\x60\xbd\x56\xbe\xb8\xf5\x7b\xd8\x6a\xda\x3f\x65\xe8\xc8\x55\x12\x68\x84\xa6\xe7\xfa\xbd\x4a\xc0\xb1\x67\xba\x35\x4c\xe3\xc8\x8a\xf3\xe2\x97\x61\x1a\x44\x04\x41\x6e\x2a\x6d\x9e\xbd\x33\xad\x7c\x31\xa2\xb9\xeb\xdb\x44\xc0\x76\x9b\xe2\xb2\x4e\xdf\x84\xc3\x29\x0f\x68\x86\xf9\x51\x7e\xa7\x72\xeb\xb9\xe2\x9b\x2f\xc4\x51\xd1\x4f\xe5\xa9\x5d\x53\xf2\x23\x0e\xc6\xd6\xed\x5f\x53\x96\x7a\x0f\x4a\x3d\xe1\x8a\x34\x45\xb8\x68\xca\xb3\x66\x87\xcb\x91\xd5\x8a\x40\x16\x50\xfe\x80\x49\xc2\x97\x6c\x6d\x6f\xc4\x09\x4c\x1f\x40\x42\xfe\xa2\x05\x68\x0a\x2d\x85\x62\xdd\xfd\x2f\xde\xa3\x6d\x19\x0e\xca\xd8\x62\x5b\xf9\x2c\xb0\x24\x3b\xdb\xbe\x00\x76\x1f\x0d\x6e\xd1\x47\xb7\x0f\x8f\xf7\xb3\xcd\x9a\x15\xc9\x50\x83\x87\xc2\x6e\x6b\xe4\x16\x16\x3a\x9d\x26\x45\x39\x9b\xa5\xe2\x8b\x58\x17\x61\x84\x0e\x5b\xa9\xb1\x2f\x22\x70\x60\xda\x85\x94\x8a\x3e\xf5\xb1\x2f\x12\x9b\x3d\x31\xac\x97\x6e\x0f\x95\x8b\x0f\x11\xdb\xc8\x4d\x4d\xc6\x32\x6b\x09\x3f\xec\x19\xd6\xb1\x3c\x1a\xef\x3c\x8a\xaf\x21\x1d\xeb\xcc\x24\xbd\xa2\x6f\x12\xc8\x18\xcd\x39\xa2\x79\x22\xbe\xe2\x61\xf7\xb0\x6b\x76\x95\x4b\xe5\x14\xbc\xcb\x37\x82\xca\xdc\x13\xab\x3c\x4f\x8d\xa2\x2d\xca\x4d\xff\x0a\x51\x0a\xc8\x0a\x7e\x01\xf6\x5f\xc8\x70\x03\xaf\x65\xfc\x60\xec\xed\xf1\xe9\x49\xdd\xe0\xf2\x7d\xa0\x31\x20\xb8\x73\xad\x54\xdb\x95\xb7\xaf\xf9\xef\x3c\xb1\xea\x47\x58\xb6\xb6\x9b\x73\xbb\xf7\xaf\x5f\x81\x55\x87\x53\xf8\xac\xed\xd4\xaa\x83\xaf\x06\xfe\xd3\x2a\x4d\x8d\x85\x73\xea\x96\xfb\xf6\x39\x75\xcb\x3a\x01\xe2\x74\x01\x73\x56\x12\xe4\x8e\x3d\x4c\xeb\xae\x9b\x42\xcd\x8b\x34\x91\x12\x38\xb6\x18\xa4\x75\x1d\x13\xbb\xcb\x87\x7e\x12\x10\x54\xf2\xeb\x63\x5f\xd8\xf8\x4d\x7b\xb8\x1c\x63\x5e\xb9\xe8\x48\x02\x8e\x8f\x3f\x53\x91\x1f\x13\xbb\xde\x28\xc3\x56\x6d\x48\x91\x75\x9f\x88\x4e\x87\x51\x9e\x76\x81\x5c\x13\x9e\x69\x3c\x82\x92\x4e\x7b\x0e\x99\x5e\x02\x8e\x3a\xb8\xdb\xd3\x28\x27\xf2\xcc\x8d\x86\x11\xf5\xd3\x65\x1a\x05\xb9\xdc\xb8\x7c\x20\xb9\x79\x68\xed\xbc\x17\x16\xa8\x2c\x4a\xad\x0b\xbf\xa5\x85\xaf\xaa\x5f\x9f\xb1\x80\xfe\x66\x83\xb8\x14\xcb\x75\x73\x7a\xef\x44\x0a\x5e\xa1\x54\x99\x9b\x6d\x2d\x44\x89\xf5\xce\xe5\xfe\x54\x50\x58\xc3\xe9\x05\xbe\x4f\xd3\x5b\xc3\x51\xd6\xe9\x87\xb9\x79\xd4\xee\x46\xe4\x09\x42\x94\xa3\x55\x08\x3f\x13\xf7\x06\xdc\x86\xf4\xac\x83\xc9\x06\xf6\xdc\xee\x89\xd9\x27\x9c\x2b\x0c\x54\x08\xdb\x27\xcf\x41\x09\x91\x90\x2b\x7b\x94\x27\x56\x3e\x7d\xfc\x49\x4f\xcc\x61\xb2\x85\x34\x1b\x84\xa5\xcd\x9c\xf2\x40\xce\x1f\x30\x35\xe2\x11\x24\x01\x8e\x91\xdc\xc9\x99\x7e\x9b\x19\x72\xc3\x28\x5e\xd9\x5e\xee\x23\x25\x8d\xb6\x6b\x83\x10\xef\x1c\x19\x7f\x3c\x30\x52\xa1\xa3\x3c\xc0\x7b\x3f\xf0\x33\x1b\xb3\x70\x1d\xf2\x1b\x34\xd7\xff\x80\xa7\x9a\xa2\xae\xb2\x21\x01\x8a\x0a\x6a\x51\xb9\xae\x25\xcc\x4d\xe7\xf3\x8e\x65\xfc\x75\x42\x6d\xa0\x8b\x95\x6b\x02\xa0\x2e\x99\xac\x1b\x75\x44\xd6\x1d\xd0\xc4\x35\x3c\x94\xdc\x38\xbf\x65\x47\xa8\x2d\x03\xbb\xa3\xb8\x83\x5a\x14\x3c\x4e\x73\xb5\xf1\xc5\x43\x0e\x76\xf2\xb8\xfb\xa5\x3c\xca\xf0\x2b\x82\x82\x1b\xb3\x96\xf2\xd8\x0f\x52\xdd\x27\x80\x5d\x1c\xe6\xc5\x27\x29\xe4\x00\x95\x18\x2c\xdc\x03\x9e\xf0\xb9\x0d\xbb\x0f\xb4\x8c\xf0\x5c\xe2\xbd\xdc\x0f\x1a\x7f\x77\xbf\x34\xf8\xd0\x52\x43\xce\x7f\x83\x87\x6e\x7f\x08\xdc\x8e\x82\xf7\xed\x66\x45\xee\x04\xba\x4a\x04\xb9\x3b\x90\x23\x21\xf6\xbb\xc3\x88\x9e\xdf\xb2\x41\x98\xaa\x5b\x35\x7e\xf9\xef\x4d\xa4\x83\xda\xd2\x60\x29\xcc\x93\x36\xc0\x80\x0f\x10\xa1\x2c\x51\xeb\xb2\x85\x6d\x44\xf7\xe7\xad\x99\x43\x31\xf3\x6b\x13\x58\xdc\xa4\xf3\xf9\xc7\x08\xaa\xf6\xaf\x84\x39\xd5\xe3\x47\xee\x07\x14\x7d\x7e\x8c\x6f\xe4\x74\x89\xca\x07\xc7\x8b\x43\xee\x0a\x50\xd4\x2a\x9c\x09\xda\x27\xdf\xb5\x9b\x53\xe9\x3b\xf8\x08\xd8\x65\xc3\x46\x9d\xe0\xd1\xbd\x4f\x6c\x5c\x49\x9a\x15\x7d\x13\xe6\x85\x35\x8b\x8e\xfd\xc5\xb5\xec\x6f\x06\x1e\x24\xbf\x46\x1a\xfb\x59\x98\x2c\xca\xd8\x1e\x1a\xba\x90\xb3\x96\xeb\x55\x4f\x9e\x3b\x1f\xc5\xf1\x13\x14\x06\x3e\xba\x6a\xa3\x17\xf8\xfd\x13\x84\xb9\x78\x17\xde\xda\xc5\xc7\x6e\xd1\xff\x19\xf6\x1f\xde\xdf\x35\x98\x0b\xbc\xff\x0f\x00\x38\x51\x21\x8b\xf2\xa9\x71\xc4\x36\xad\xa2\x61\x82\xd6\xc4\x5a\x0d\x6f\xb0\xb2\x86\xe1\x4d\xc3\x27\x7d\xa2\xed\xfd\xe4\xdb\xc4\x9a\x7c\x6f\x4c\x13\x89\xa2\xb6\xa4\x63\xf0\x1b\x8d\x7e\x69\x81\x3b\x69\xb2\x90\xa5\x89\x14\x8d\x85\xc8\x1a\x9b\x58\x59\xad\x37\xc6\x88\x96\x87\xd9\x53\x6d\x34\x48\x31\xe0\x3c\x99\xd4\xea\xbc\xc3\xa1\xd2\xe0\xf7\xfa\xf2\x59\x32\x50\x8f\xcf\xd2\xe9\xfa\x27\x49\x1a\x29\x06\x8b\xe9\x76\xfb\x03\xd2\xb8\xc1\x17\x72\x64\x23\x73\xbb\x5d\x47\xc7\x2b\xf5\x9f\xc3\x26\xa5\x80\x69\xd6\xff\x94\xaa\x8d\xfe\x8f\xa8\xf6\x60\x93\xf9\x8a\xc3\x7c\x9a\xbe\xec\x22\x45\xa5\xae\xf6\xe6\xd0\xd7\x0f\x3a\x71\x94\x94\x29\x04\xd1\xb3\x62\x3a\x57\xae\x2b\xe5\x99\x3d\xd3\xd2\x99\x6f\xf8\xce\x22\x64\x25\xe4\x9a\x18\xb3\x46\x49\x54\x6c\x23\x1e\xd5\xb7\xa9\x20\x07\x45\x40\x14\xa3\xce\x07\x44\x8d\x7e\x67\x4c\x96\x6b\x2d\x20\x64\xde\x2b\x62\x23\x94\x1b\xb9\x26\x5e\xd8\xdf\xea\x86\x45\x38\x41\x4d\xf6\x33\xa6\x26\xfb\x19\x35\x4e\x5e\x0e\x57\xc2\x6e\xd4\xc4\xae\xc5\x8a\x7f\x8f\x0a\x81\xa2\x50\xa6\x12\xc8\x6a\xaa\x5f\x30\x49\x12\xc9\x66\xc1\x0f\x1e\xa7\x21\xe2\xe3\x14\xf1\x3e\xf7\xe5\x5f\xde\x36\x61\xc5\x89\xf6\x1a\x94\xb0\xf0\xd3\x8a\xf5\x50\xce\x36\xb2\x46\xc7\x61\x8d\x94\x14\x8a\x9a\x2e\xe4\x9b\xac\xf6\x49\xd6\x31\xdb\x3d\x22\x75\x0b\x86\x5d\x91\x6f\x5e\x22\x7e\xa5\x53\x24\x77\x23\x31\x38\xb6\xce\xcd\x31\xcd\x58\x5e\x92\x85\x76\x04\x0a\x8e\xae\xb7\xaa\x3a\x73\x70\xf7\xb3\xad\xbc\xef\xe6\x4b\x05\xe9\x1b\x10\x61\xd6\x45\xa2\xb8\x9e\xcf\xa2\x6e\xcf\x6c\xa5\xb6\x25\x6a\xaf\x42\x53\x8c\x43\x84\x73\x2e\x31\xb8\xdc\xf0\x3c\x4e\x40\x92\x3b\x97\xdc\xb0\x5a\x37\x1d\x44\x8e\x82\x08\x79\x17\x1c\xaf\x5c\xaf\xb2\x87\x58\x48\xf3\x26\x4b\xca\x10\x13\x09\xf2\x43\xa0\x5f\xcf\x10\x91\x71\x5e\x84\x0b\x0b\x26\x83\xfd\x85\x85\x7f\x3f\x20\x73\xff\x3e\x6b\x4f\x99\x64\xd4\xcb\x8c\x59\xb4\x0f\xa3\x48\xa9\x86\x93\x5a\xba\xe8\xc2\x85\x38\x4c\x7a\xa3\x28\xef\x4f\x11\x4f\x00\x18\x2b\xb0\x24\x48\x94\xb5\x1b\x52\xfe\x05\x6d\xb8\x57\x5f\xc4\x4c\x2b\x2f\xa2\x85\x05\xee\x09\xad\x91\x0e\xde\x9a\x63\xda\x49\xa2\x7e\xc3\x97\xcf\xd6\x98\xd0\x69\xad\xe6\x05\xcf\xb4\x5e\x48\x23\x11\xd7\xc1\xb1\x44\x33\x47\xae\xc7\x4f\x4d\x26\x12\x87\x0f\xb7\xe6\x66\xa7\x88\xa3\x37\xf0\x00\xc4\x93\x24\xd1\x79\xd2\x7e\x4d\x9d\x7d\x7f\x9c\x0a\xdf\x0a\xc8\x71\x05\x3a\x22\x59\xaf\x19\xa1\x30\x49\x27\xf6\xd4\xed\x42\xb6\x15\xf8\x7c\x6a\xad\x56\xa6\xc3\x22\xd0\xf3\xc2\x24\x05\x10\x1a\xa2\x67\x42\xac\x98\x98\xc5\x51\x8c\xb1\x0f\x6e\xf3\x7e\xd8\x5d\x61\x0c\x22\x8f\x88\xae\xb9\xe1\xf6\x4e\xda\x0d\xad\x87\x9f\x00\xa3\x60\xd1\xe0\xe2\x75\xf7\x7d\x92\xfa\x1b\x09\x58\xe0\xd3\x0c\xb1\x26\xe2\x0a\x94\xbb\xe4\xba\xe2\x8f\xe6\x76\xb7\x3a\xe1\x48\xf4\x60\xb0\x6d\x5e\x0d\xfc\xa9\x7a\xb5\x42\x13\x6d\x3b\xe7\xcb\x91\x65\x26\x70\x8a\x11\x5a\x43\xf0\xa4\x28\x17\x5d\x85\x7f\x21\x33\xa6\xbb\x9d\x84\x8d\x6e\x22\x24\x44\x9b\xed\x24\x22\x34\xc7\x10\x5a\xae\x26\x5a\x6b\x0d\xa4\xec\x38\x20\xc0\x8e\x60\x99\x5f\x47\x66\xa3\xb1\x42\xc3\xd1\x41\x7c\x50\xd9\xd7\xf6\x61\x87\x59\x2a\x7c\x0f\x08\x17\x41\x82\x80\xa3\x70\x83\x52\xe7\x33\xb5\xe2\xcc\x51\xd7\x83\x11\xf1\x96\xee\x8f\xfd\xeb\xbb\x5f\x29\x84\xcc\xcc\xec\x6f\xf5\x0c\xda\x9a\xe8\xbc\xdc\xe4\x96\x2c\xa2\x5e\xc7\x46\xeb\x29\xc0\x2e\x54\x1e\xde\xbe\x9a\x7c\x14\xc6\x8d\x4a\x8a\xa7\xa9\x58\x0d\xcd\x5e\xba\x64\xb2\x7e\x38\x8a\xdd\x43\xab\xd2\xab\xc7\x37\x9c\x27\xcb\xd4\x8d\xc2\x41\x9a\x58\xb6\xa8\x67\x3d\xf1\xcf\x17\x0f\x49\x4d\x5e\x9a\xa8\x12\xfd\xd9\x85\x23\x7e\xc6\xe7\x5d\x58\x58\x07\x7b\x0f\xb3\x42\x58\xb0\x34\x15\x86\x67\x10\xd4\x72\x40\xed\x0e\x0c\xbc\xad\xbf\x46\x1e\x30\xef\xa7\x53\xe5\x73\x20\x5e\x6f\x5a\xae\x5e\x44\x09\xc8\x35\xb0\xb6\x97\x49\xcb\xf4\x24\x55\x20\x6d\x3c\x67\x0b\x88\x30\x4d\x5f\x0f\xa8\x9d\x73\x62\xcc\x63\x42\x76\xff\xa1\x26\xf0\x66\xed\x00\xc7\x4b\xc3\x34\x57\x6d\x17\x3c\xc1\x3b\x81\x8f\x5f\xde\x21\xeb\xf3\x82\x59\xc6\xfc\x9b\xe2\xd4\xa9\x8e\x7e\xbb\x4e\xc6\x64\x98\x2e\x9b\x4c\x02\x28\x99\x5c\x9c\x98\x62\xf4\xf1\x7b\x61\x09\xa1\x78\x08\xc5\x46\x01\xda\x51\xd7\x90\xcc\x84\x59\xe6\x5a\xb0\xc8\x0e\xae\x51\x0d\xfa\x01\x29\xb2\x9c\xa0\xe5\x5a\x06\x9b\x9f\x43\xbf\x7e\x6b\xec\x89\x9d\xbf\x55\xa7\x1c\xd4\x89\xc3\x6c\x31\x9f\x1f\x65\xbd\x89\x02\xf2\x1a\x17\x90\xab\xee\x60\xfa\x40\x2b\x0e\x57\x06\x82\x74\x17\xda\x8e\xa0\x41\x4a\x1d\x1b\xdc\xc1\xf4\x81\xd6\xe1\xc3\x4f\x5a\x80\x29\xa9\x5d\x3a\x3a\x08\x60\xae\x14\x98\xc8\x63\xbd\x63\xff\xb2\x44\x5c\x05\xbf\x72\x81\x38\xce\xbe\x8b\x3d\xa1\x2c\xca\x65\x42\x88\x0f\x79\xc0\x05\x46\x9d\x72\xc3\x7f\x81\xea\xc7\xe9\x2f\x96\x5b\x07\xd8\x51\xc1\x58\x23\x03\xda\xdc\x26\xc6\x91\xe3\x5c\xa1\x39\x45\x25\xb5\xf7\xec\x1b\x54\xc8\xda\x2f\x3e\xa4\x1a\x65\x47\xbb\x8a\x28\x2f\x84\xdd\x5d\x5d\x0d\x31\xc9\xdc\xc7\x3e\xd3\xb1\x49\xcf\xa2\xbe\x60\x61\xe6\x49\x11\xaf\x4c\xf9\xb6\xee\x4d\xc6\xb6\xbd\x12\xf8\xb2\xd5\x1a\x3b\x99\x13\x44\xad\x53\x84\x51\xb2\x85\x54\x46\x91\x7b\xa3\xd4\x72\x0c\x2f\x44\xc8\xc1\xc9\x01\xfc\x78\x4c\x61\xa4\x2f\x43\x77\xc2\xc4\x53\x9f\x20\x4f\x40\xf3\x5e\xae\xeb\xa6\xdb\x3a\xfd\x34\xea\x18\xf9\xfe\xa8\xaf\xfc\xd3\x4a\xd3\x7a\xfd\x8a\x8b\xe6\x86\x59\xb9\x62\x1d\xe5\xbf\x44\x78\x0e\x49\x0b\x11\x53\x63\xca\xc8\xfb\x2e\x3c\xef\xa4\x61\x61\xc4\x55\x08\x6f\x02\xeb\x77\x36\x25\xd6\xd6\xc8\xa7\x82\xee\xb5\x8a\x5a\x85\xc9\x32\x55\x13\x94\xd9\x55\x52\x52\x7e\xcb\x2d\x44\x37\xca\x07\x51\x8e\x81\x06\xc5\x55\x96\xcb\x0a\x6f\xf0\x80\xc7\xae\x2f\x97\xc7\x42\xf0\x5a\x8b\x49\xba\x0c\x82\x9a\x2d\xbe\x7c\x7a\x65\xec\x2b\x2e\xbf\xb1\x0b\x7e\x93\x59\x4f\xdd\x20\x67\xf9\x37\xe1\xd8\xaf\xd5\x69\xea\x95\xbe\xa3\x93\x0e\x04\x19\xc4\x11\x98\x46\x5a\x1e\x80\x48\x94\x27\xbe\x07\x2a\xdc\xfe\x72\x33\xf6\xe3\x2d\xf3\xe9\x4b\x88\x7a\xd4\x73\x91\x17\xab\xd5\x89\xed\xac\x74\x1c\x0d\x10\xca\x64\xef\x05\x54\x33\x7b\xaf\x52\x16\x2f\x13\xf9\x7e\x54\xc0\xe1\xb8\x11\x27\x3f\x08\x77\x85\x78\xa3\x64\xe8\x4b\xa7\xf1\x6a\x84\xe7\xfc\x90\xa0\x76\xe4\xbc\x8e\xc8\xa5\x5a\x4b\x9e\xa5\xf3\xda\x2b\x82\xad\x05\xc8\x57\xae\x29\xbe\xef\x9a\x41\xda\xc9\xc2\x22\xdf\xe2\x43\x0f\xbc\x26\x34\xa7\x04\x45\x04\xcb\x7e\xcd\xee\x09\x7c\x9d\xf3\xd6\xf6\x28\x38\x8d\xf8\x9e\x06\x66\x47\xf9\x53\x38\x19\x3b\xda\x7e\x00\xe3\x22\x53\x8b\x7d\x14\x90\x85\xfa\x35\xac\x80\x1b\xe7\xfc\xe2\x21\x0f\x47\x9e\x25\xba\x7c\x8f\xff\x3b\xcd\x2a\x93\x1f\x8f\x3d\x36\xce\x0c\xe6\xb3\xb0\x63\xba\x8c\x8e\x9c\x98\x72\xa8\x1c\xe9\xe9\x03\xad\xc5\xa8\xe8\xf4\x8d\x08\xbd\xba\xba\x9d\xe3\x14\x39\xe9\x8a\x11\xe6\xa5\x7e\x34\x1f\x15\x34\x27\xb3\xb3\xed\xe3\xd9\x33\x63\x7a\x28\xb1\x5f\xa8\x61\x82\x0d\x0a\xc9\x02\xea\x63\xd8\x38\x97\xe9\xc9\xa3\x64\xc9\x23\x68\xd1\x85\x94\x59\x24\xb9\x21\xdc\x4f\x6e\x5c\xb5\x57\xda\xae\x01\x05\xee\x3f\xad\xc0\x15\xf6\xec\x29\xb7\x44\xc7\xe4\x4e\x1b\x93\x9b\xe3\xd8\x15\xdf\xc1\x4b\xd0\xb7\x5b\x33\x0d\xac\x4a\xae\x53\x24\xa7\x20\x15\x7f\x0d\xe8\x27\x66\xc6\xca\x3f\xa7\x33\x63\x6e\xde\x3e\xec\x44\x45\xd3\x1b\x8b\xf3\x84\xb8\xbd\xcd\xfe\xfa\x44\x30\x31\x63\x5f\x7c\x9a\xe4\x03\xb6\xb4\x09\x9a\xb7\xcd\xca\xe6\xc2\x7a\x5e\x45\x49\x4f\x13\xc0\x72\xa1\xe1\x50\xbf\x1f\x34\xbe\x3c\xed\x3d\x4b\x79\x2a\x51\x2d\x78\xac\xed\x03\x97\x3f\x1f\xd3\x90\x3c\xbe\x17\x76\xee\xe3\xab\xa5\x51\x71\x85\x95\x39\x85\xe8\x7c\x04\xf8\x2c\xf2\xf7\x2d\x28\x4d\xe2\xd7\xc7\xa8\x53\x23\x84\xfd\xd8\xc2\x73\xa5\xd6\x83\xcd\x88\x0f\xc7\xe8\x20\x36\xd9\xcf\x02\x62\x44\xdc\xb9\x4a\xc4\xeb\xf7\xc5\xe7\x23\x02\x78\x05\x73\x30\xc2\x08\xc8\xbc\x3c\xc7\x2a\xa1\x91\xf3\xda\xfd\x28\x01\x36\xc3\x09\x24\xf1\x8c\x5b\x35\xa7\x9c\x29\xd3\xb7\xa5\x08\x0c\x1e\xd6\xd0\xc1\x0f\xdf\x1f\xfb\x6c\xf9\xfe\xc4\x18\xb7\xc9\xcd\xa7\x2d\xfb\x10\x94\x5e\x64\x22\xc9\x82\xb4\x71\x04\xee\xe0\x28\xa3\x3e\xfa\x84\x6d\x44\xc2\x35\x6f\x6e\xbb\x09\xc8\x5f\xfd\x94\x45\x4c\xe2\x5d\x3e\x6d\x21\x2f\xe8\xb3\x6c\xb6\x8d\x4d\xd4\xce\x3e\x0e\x2c\x05\xfc\x04\xaf\x9e\x70\x62\xb2\x74\x9b\xc8\x28\xe1\x59\x3f\x06\xf6\x60\x6a\xd5\xc7\x17\x1f\x4e\xd0\xa7\x52\x37\xf9\xfe\x98\x11\x48\x42\x3f\x2e\xff\x15\x90\xb8\x84\x00\xa9\xb1\x2b\xae\x21\xf0\x10\x1e\x5d\x5b\xda\xd7\xa5\xf6\xa6\xf1\x3f\xfe\x3b\xff\x59\xa3\xfc\xde\x12\x09\xdb\x97\xaf\x51\xb1\xb7\xc8\x85\xc9\x0b\x0c\x24\x95\x3f\x2b\x73\x1c\x01\x9d\x0c\x2f\x5c\x16\x66\xe1\x3c\x01\x20\x3e\xd1\xa6\xba\xdc\x27\x56\x37\xe6\xca\xfb\xf6\xb5\x4c\xd2\x49\x47\x59\xd8\x33\x4e\x62\xd8\xd1\x26\x7b\x0a\xe5\x3a\xba\xf4\x4e\x66\xba\x51\xb1\x1c\x16\x9d\x7e\xc3\x1f\xd8\xeb\x8c\xac\xbe\x4e\x82\x39\x99\xc9\xd3\x78\x54\xfa\xe3\x29\x9f\xbd\xdf\xc2\x97\x10\x64\xd7\x98\x78\x04\xaf\x12\x06\xe6\x63\x4e\x33\xca\x84\xa4\x39\x21\x80\xe6\x81\xa5\x37\x03\x52\xac\xfa\xa0\x8e\x03\x24\x2f\x56\x36\x78\x6d\x29\xb8\xa9\xf1\xdd\x45\x90\xea\x2c\x4a\xbb\x79\xd3\x8b\x5c\xde\xb1\x2f\x51\xbb\x97\xe5\x56\x84\x43\xbc\xe1\x4a\x09\xb9\x49\xba\x52\xde\x21\xbe\x81\x69\x47\xe4\x52\xe3\xc8\x8b\x34\x11\xb6\x70\x9c\xdf\x9f\x13\xbb\xe7\xcf\x5d\xb9\x25\x4f\x42\xf0\xe6\x08\x5f\x32\xb9\xe3\x4b\x93\x92\x0f\x49\x37\xcc\xba\xf9\x16\x5a\x08\x94\x03\xd4\x86\x79\xa5\x56\x8c\xe4\x89\xd4\xce\xd8\xa7\xaf\x0f\x02\xa6\x6a\x13\xfa\x9d\x47\x3d\xf0\xf8\x01\x8c\x25\x2a\xdd\x02\x2a\x53\xc5\x38\x66\xa3\x3f\x0b\x61\x06\x14\x1b\x4f\x50\x1f\xe0\x04\xf2\x1a\x24\x39\x12\xed\x23\x7b\xb9\x44\x43\x76\x3b\xdb\xdc\xbd\xb3\xfb\x04\xed\xc3\x5b\x34\x38\xd2\x31\x49\x91\x85\xf1\xd6\xf2\x5c\x60\x68\xeb\x24\x22\x3c\xe5\x14\xf1\xcd\xd8\xc7\x09\x15\x2d\x87\x47\xfe\xc3\x7a\x0b\xf9\xed\x3a\xfd\xed\xa2\x9f\x99\xb0\x3b\x41\x3f\x75\x91\xe9\xa7\x2e\x56\x02\x88\xf2\x78\xa4\x9d\x30\x4a\xd0\xf6\xd4\xf9\x09\x3f\x78\x2c\xd0\x55\x0d\x05\xdc\x68\x6f\x62\x7b\x2f\x2e\x41\xc6\x0b\x01\xd6\x0c\xce\xf1\x8d\xc0\x43\xee\xbf\x4a\xc0\xb8\x4e\x68\xcf\xd6\x56\x1a\xd1\x38\x46\xec\x2c\x60\x4d\x85\xe5\x7c\x37\x98\xd4\xa4\x99\xdb\xcd\x5f\xca\x13\x6a\xf8\x43\x37\x48\xe7\xa3\xb8\x41\xcc\x19\xc8\x0c\xe5\x9a\xa5\x25\xa2\x98\x28\x3e\x3e\xb4\x9b\x4d\xae\x89\x1e\x23\x4a\xba\x66\x68\x92\xae\x4d\xfc\x1a\xb4\x53\xf1\xc4\x72\x5d\x49\x5f\x0e\x3c\xd7\xea\x44\x59\x67\x34\x58\xb2\x96\xea\xe0\x6e\xd7\x9e\x6e\x38\xb1\x84\xaa\x28\x4c\x19\xe7\xa0\xf1\xdf\xf4\x65\x06\xe0\x28\x11\x07\xdc\x63\xce\xc4\xd7\x7c\xa1\x22\x09\x3b\x8e\x84\x05\x36\xa9\xd9\x26\xdd\x8b\xe6\x6a\x35\xc8\xde\xdf\x0a\xbb\x5d\x19\x4b\x83\x13\x90\xce\x19\xb6\xfa\x55\xe4\x37\x30\x26\x47\x08\x6f\xd2\x49\xd3\x45\x6d\xef\x2b\x93\x97\x7d\x15\x4a\xf1\x55\x45\xc2\x3f\x6f\x69\x3a\xd3\xcc\x79\x63\xa7\x72\xe0\x15\x0f\xdc\x77\x49\xa2\x3c\x0f\x13\xc5\xd1\xa2\x4a\x7f\x1d\x76\x6f\x82\xed\x54\x8d\xa0\x6f\xb6\xae\x84\x59\xb7\x49\x01\xc5\x07\xa4\x9f\x73\xd3\xa6\x1c\x2a\x30\x54\x4b\x49\xd3\xcf\xd2\x51\xaf\x6f\x11\xa5\x80\x26\x3d\xd1\xf6\xa5\xb1\x9b\xd4\x8f\x7a\x75\xec\x83\xf3\xad\xab\x3b\xa9\xc9\x96\x8d\xfa\x16\xb2\x23\x34\x8a\x8c\x90\xa9\xd2\x91\xed\xdb\xd7\x1a\x5a\x32\xf8\x83\xbb\x3d\x0b\xb3\xcb\x73\x8f\x93\x61\xeb\xf4\x2d\xe7\x6b\x0f\x4a\x48\x2e\x58\xf7\x4c\x85\x9b\x56\x3d\x08\x05\x4d\x43\xf9\x77\x1b\xdd\xa3\x51\xf5\x1d\x3c\x0d\x7c\xd9\x5b\x40\xde\xc0\x6c\x12\xef\x71\x9a\xec\xf0\x00\xd0\x73\x08\x81\x91\x0f\x7c\x88\x9d\x07\x33\x7e\x05\xef\x43\x29\x98\x7c\x9c\xba\x1e\x10\x08\xf7\x01\x95\x99\x6f\xdb\x35\x13\x11\x9c\x80\xd2\xca\x2b\x35\x93\x13\xcf\xb7\x3c\xaf\x50\xc3\x93\xc7\xf3\xb0\xee\x05\x92\xc6\xca\xc3\x95\xc7\x7c\x25\x0e\xd4\x79\x58\xc4\xf3\xf6\xe8\xbb\xe6\x4a\x19\x78\xc2\x23\xfe\x3c\xa0\x2a\xf2\x7b\xe0\xc7\x94\xff\x81\xc3\x00\xa8\xe6\x02\xcb\xd6\x3e\xdd\xa6\xd1\xd9\x7f\x50\x29\x9b\xa2\xe4\xb2\x09\x61\x9b\x52\xe8\xd4\xd4\xec\x16\x22\x7f\x0e\x1c\x13\xbe\x67\xc5\x0f\xfc\x7e\xea\xa5\x03\xf3\xf2\x84\x22\xff\x78\x62\x24\xa6\xa2\xa4\x31\xdb\xea\x84\xc2\x03\x2d\x39\x7b\xe0\x51\xc5\x97\x18\x14\x64\x8c\xa4\x5f\x4e\x2a\xdb\x0f\x77\x9f\x23\x3a\x6f\x9b\x88\x37\x3c\x90\xef\x14\x91\x75\x9d\xa2\x6e\x62\x34\x18\xa6\x59\x01\xca\x40\x14\xa9\x4e\x13\x61\x26\x14\x13\xf0\xef\xe7\x19\x80\x7b\x9e\x33\xdf\x97\x4c\xd6\x89\x72\xd3\x98\xa0\x15\x6d\xcc\xf8\x26\xe9\xe3\x2c\x51\xf8\xf9\xa6\xd7\x45\xba\x3f\xe6\x16\x13\x41\xd0\xa7\xda\x55\x4e\x84\xd9\x32\xf0\x88\xe3\x32\x92\x81\x89\x41\x6c\xfc\x67\xcc\x55\xf7\x67\x34\xd7\x96\x99\x81\x13\x60\x44\xec\x27\x70\x00\xb9\x41\x80\xad\xea\xda\x3e\x9a\xad\xf2\x1b\x1e\xdc\x3d\xdd\xca\x0b\x63\x5b\x56\x0e\x56\x72\x35\xf0\x44\x1e\x57\xa9\xfa\x5d\x64\x23\xb3\xb5\xe1\xa4\xac\xd0\xb3\x44\x5f\xfe\x1b\x08\xf7\x5d\xcb\xab\xdc\x20\xf2\x3f\xcc\xc1\x11\x50\x9a\x58\xb5\x3e\x96\x4a\x27\x5d\xa1\xb1\x86\x13\xac\x26\x72\x82\x82\x4b\xd1\x2d\x6c\xd1\xe4\xc5\x77\xc7\x5e\x06\x70\x87\x25\x7a\x40\x15\xf7\x81\x45\x31\xb9\x06\x87\x13\xb4\xfc\xa7\xf6\xf0\xad\xbf\xc3\xb3\x6e\x1f\x13\xd6\xfc\xa6\xcd\x66\x94\xbb\x81\xba\x24\x5f\xa7\x12\xf1\xe9\x09\xba\xb4\xd2\xce\xe2\xba\x81\xe9\x12\x85\x9d\xe2\xad\x2a\xcb\x7c\x73\xff\xaf\x7c\x59\xa7\x80\xc6\x40\x18\x28\x33\xbd\x3d\x82\xfa\xb2\xec\xb1\x45\xfc\x71\x34\xa0\x8a\x1d\xd2\x1c\x58\xba\x29\x4b\xc7\xe4\x70\x39\x65\xaa\x8e\xa0\xe8\x08\x2c\x08\x00\x33\xd7\x90\x22\x7b\xe1\xf8\xe9\x03\x0e\x64\x69\xf7\x8a\x84\x89\x96\x3e\x59\x07\xf9\xed\xd2\x2b\xb3\x69\x19\x20\xaa\x7a\x4d\xe3\x97\xff\x9e\x9f\x17\x28\xb3\x75\xf8\xc0\x2b\x74\xf8\x06\x61\xd6\x49\xa5\x39\xe4\x42\xc6\xf2\xef\xb9\xd9\x64\x7f\xa2\x8e\xe3\x8f\x08\xfb\x2d\xe1\xed\xe7\x4d\x98\x45\x79\xdf\xc6\xed\xaa\xb4\x5a\xbe\x1f\x25\xfa\xae\xb1\x64\xd1\x20\xec\x69\x95\x0e\xd1\x36\x40\x7b\x72\x5d\x33\x74\x32\x5b\x1a\xf6\x61\x98\x89\x5d\xc7\x4a\x6e\x6a\x13\x03\xec\xa6\x4a\xa4\x32\xb7\xbb\x55\xf4\xe1\x99\xf7\x2a\x26\x69\x4b\xdb\x83\xc3\xaf\x11\xaf\xbe\x4c\xf2\xab\x9a\x8b\x3f\xc4\xc3\x30\xef\x87\x39\xe5\x9a\xd7\x09\x6c\x7f\x9d\xd6\xb2\x3b\x1a\x0c\x95\x4b\x43\x45\x79\x3d\x02\xe9\x38\x11\x9c\x16\xa3\x6c\x7e\x14\x5b\xa2\x38\xfb\xfc\x8a\xa9\x6a\x38\x3e\xa3\x8b\x13\x16\x6b\xf9\xf3\x80\xaa\xe0\xfd\x9d\x47\x15\x40\x6e\x08\x96\xba\x1c\x75\x8d\x63\x74\x72\x18\xa8\xb9\xdd\x0e\x03\xc5\x0d\x32\xe1\x58\x80\x4f\xbf\x44\x9d\xe6\x4b\x14\x16\xf5\xd3\x81\xd9\x65\xbf\x10\x9c\xe2\xff\x49\x32\x30\x18\x12\x97\x90\x3f\xf0\x73\x32\x47\x61\xa5\x95\x1f\x01\x47\x0a\xa7\x50\x44\x36\x9d\x4e\xa9\xa7\x95\xfc\x9a\x45\x17\x2a\x9b\x1f\x8d\x63\xdc\xe0\xd8\xe1\x38\x0c\x16\x8e\xf7\x55\x7b\xa4\xe1\x0c\xde\x1a\x7b\xab\x78\x1b\x59\x17\x7c\xed\xad\x31\x65\x49\x37\x2b\xa0\xb3\xe9\x03\xad\x70\x39\xcc\x8c\xeb\x9f\xcb\xc8\xe9\xc4\xf8\x69\x0d\x47\xf7\x30\x8b\x92\x4e\x34\x14\x0d\x64\x2d\x2d\xfb\xb8\xfb\x68\x0d\x00\x63\xb6\xb5\x90\x19\xe0\x8b\x35\xf5\x03\x72\x5a\xae\x5d\xa5\xb5\x93\x92\xde\x2e\xf0\x44\x67\x68\xbe\xfc\x8c\xa7\xa6\x28\xdf\xb7\xa4\x6b\x30\xe2\xf7\xe0\x5e\xe4\x66\x4c\xf1\x80\xc9\x06\xf8\x86\x02\xbb\xb4\xdf\x50\x21\x98\xbe\x7a\x61\xc2\xac\xe8\xbf\x38\x0a\x17\x81\x43\x80\xb9\xbb\x48\xf4\x6f\x1e\xf4\xb2\x14\xc6\xa3\x70\x3e\x16\x79\x6a\x57\x21\xdc\xb7\x4f\x7b\xb8\x24\x24\xf1\x9d\x4a\xd8\xbc\x6f\x1f\x26\x0e\xa3\x54\x27\x5f\x10\x50\x09\x99\xba\xdc\xd4\x8a\x2a\x75\xc2\x5c\xd0\x1e\x8e\xbe\x64\xc6\xab\x89\x93\x88\xe8\x15\x3a\x72\x79\x11\x16\xb6\xf4\x93\x03\xcb\x86\x64\xed\x43\x2a\xea\xdd\x25\x09\xcb\xaf\xe1\xcf\xe0\x8b\xd8\x26\xe2\x9c\x8e\x13\x88\xdc\xdd\xd8\xb3\x1d\x5e\xa8\x0a\x74\xce\xcd\x7e\xae\x55\x18\x53\xf4\x9b\x84\xc0\xdc\xd4\xf6\xd8\x21\x4c\x0a\x28\xb7\x86\x57\xae\x1e\x66\xa6\x13\x0d\xa3\x22\x15\xfe\x56\x15\x86\x61\x95\x98\x1a\x55\xb2\xfd\xad\xd4\x52\x98\xef\x55\x6c\xe0\x7d\xe6\x88\x02\x0c\x5e\x19\x28\xcb\x87\x00\x54\xfb\x82\x6b\xd4\x75\xc2\xa4\xbb\x32\x1f\x66\x4d\x1a\x67\x3a\x61\x97\x55\x9a\xb2\x74\x20\xbe\x43\x2c\x0b\xf3\x59\xba\x68\xb2\xb0\x67\x2c\xcb\x82\x92\x9d\x35\x1c\x29\xef\x14\x26\xbc\x65\xae\x6c\x4c\xbc\x6e\x27\x03\x66\xc2\x65\x59\xae\xcb\x4c\xbf\x20\xbc\x5d\x42\xaa\x4e\x9a\xe1\xa7\x6b\x30\x22\xcf\xb7\xa2\x3c\x1f\x4d\x42\x88\x64\x43\xc8\xcd\x44\xdd\xb6\x13\xa5\x4d\x7f\xfe\x8e\xd8\x30\x42\x34\xec\x03\x1f\xa1\x57\x79\x21\xcb\xf0\x27\x4a\x3a\xa3\x2c\x53\x3d\x44\x74\x29\x44\xc9\x08\x11\xff\x03\x6b\x11\x61\xc3\x8e\x57\x9e\x75\xfa\x40\x99\xac\x77\x4c\x02\xf4\x30\x8c\x18\x32\x2e\xf5\xd1\x50\x28\xae\x01\xc2\x74\xb2\x51\x27\x52\x2c\x0a\xb6\x04\x60\x98\x72\x1d\x7c\x72\xb2\x75\x5f\xee\x8e\x43\xb3\x9f\xb3\x38\x18\x92\x7b\xd3\x90\x1d\xac\xbf\x58\x54\x29\x1c\xa3\x01\x75\xda\x19\x24\x4b\x0b\xaf\xaa\xbb\xc8\xcf\x8e\x04\x1e\x19\x7f\x64\xfc\x38\x91\x51\x97\x86\x74\x6e\xd6\x05\x13\x54\x8b\xaa\xd1\x76\x98\xd3\xc6\x8a\x35\x4d\xa8\x5e\x9f\x0a\xbc\xd0\xe6\xa9\x4a\x45\xc0\x32\x57\x87\x9d\xbe\x95\x95\x24\x31\x2b\x01\x7a\xca\x8d\x03\xc9\x75\x44\x10\x12\x2b\x8c\xa7\x96\x6b\x12\x6a\x10\x91\xf3\x34\x43\x35\x4a\xd5\xbd\x7c\x37\xaa\xd9\xf6\xc9\xd0\xad\x9a\x97\x32\xdb\x7a\x71\x94\xba\x2a\x8a\xb2\xe8\xfa\x21\xf2\x13\x13\x61\x42\xd2\x09\x55\x84\xc5\xc5\x1e\x1e\xb6\x5c\x1d\x24\x2e\x37\xdc\x7c\x58\x18\xe1\xd6\x87\xd5\x50\x2e\x11\xb9\xab\x15\x09\x1e\xc6\xa3\xa4\x27\x59\x91\x96\xbe\x7c\x6d\xee\x62\x1d\x39\x70\x37\x8d\xbb\xd9\x68\x20\xa1\x19\x0a\x69\x37\xa9\xa8\x76\xb3\xa6\x70\x38\x6b\x7d\x81\xe2\x02\xc4\xc0\x05\x04\xf4\xba\x6b\xcf\x16\xc2\xf9\x97\x26\x40\xfe\xcb\xe1\xca\xae\x32\x4c\xc5\xf9\x44\xb9\x4d\x01\x75\x13\x44\x26\xb6\x24\xcd\xcc\x76\xae\x4e\x52\x46\xcf\x12\xb5\x01\xcf\xa6\x21\xdc\x04\xcb\x61\x19\x05\x20\x3e\x79\x7f\x52\xfb\xcd\xee\x78\x25\xcb\xb2\xe7\x02\xc5\xc8\xef\x4f\x50\xa7\xf0\x0c\xf5\xbb\x63\x3f\x54\x73\xdb\x6e\x70\xb4\x55\xa6\xda\x7a\x60\xec\xd4\xb7\xa8\xbb\xa0\x0f\x86\x3e\xbb\x5c\x57\x96\x70\xef\x4c\x6b\xde\x24\x66\x21\x2a\x88\xb2\xfc\xf6\x24\x22\xa4\x8c\x95\x50\x88\xf4\x52\x2f\x45\xdf\x84\x85\xc9\xb6\x7a\x61\xbb\x0b\xa4\xad\x7c\x94\x74\x8d\xc4\x1f\x38\xa9\x32\x97\x89\x4f\xd4\x42\x6f\x4e\x10\x9e\x25\x49\x88\xc4\x00\xa1\x94\xc0\x00\xf1\x0c\x6b\xcc\x17\xfd\x53\xbb\x3f\xe0\x51\xef\x13\xd6\x20\x0f\x43\x19\xac\x47\xe7\xff\x7c\x40\xa3\x6b\xe7\xa9\xa8\xdb\x35\x83\x30\x41\x31\xff\x79\xff\x01\xbe\x46\x75\x85\xe2\x24\xa0\xbb\x91\x9e\xc8\x98\x2c\x3a\x95\x5b\xdb\x8f\x45\xbe\xee\xfa\xd2\x16\x9f\x21\x1e\x0b\x3c\xd1\xe8\xa9\x31\x31\xfd\x9c\x9c\x98\xd8\x95\x09\x76\x78\xa1\xdb\x35\xe4\x20\xd3\x56\x9e\x69\x20\x19\x08\x16\xfc\x1d\x36\xfa\xef\x50\x8b\x62\x90\x76\x16\xa3\xa4\xa7\x58\x31\x27\x49\x55\x6e\x37\x95\xa4\xf2\x95\xd1\x81\x19\xcc\x9b\x2c\x7f\x84\x31\x85\x64\xd0\xb6\xc9\x70\x25\xb2\x39\xdb\x03\xd6\x79\xa1\x7b\x14\x66\x3d\xb2\x6a\xb7\x09\x8d\x5d\xce\x38\x08\x88\xfd\x60\xe9\x47\x06\x13\xae\x6e\x8f\xc3\x98\xd7\x21\x1f\xfb\x26\x1e\x9a\xee\x14\x79\x1b\x30\xf0\x0b\xe8\x7f\x3c\x31\x5a\x4a\x0a\x3d\x95\x69\x59\xbb\xc9\x51\x33\xd6\xa8\xc6\xd7\x45\x45\x87\x5b\x34\xed\xca\xb0\x8f\x70\xf1\xa3\xa4\xb4\xce\x51\x9a\xe4\x76\xb0\x17\x1b\x4d\x76\xa0\xe3\xbe\xf0\xc0\x77\xcd\x39\x10\xc6\x88\x7e\xb5\x14\xf8\x18\xcd\x73\xc6\x4e\x31\xc9\x5f\x73\x1e\x23\x0b\x13\x8b\x71\x40\x92\x21\x1e\xd1\xae\xe8\x33\x7f\xa9\xcd\x5c\x2c\xf6\xa4\x39\x1e\x9e\xf2\x1d\xc3\x24\xdc\x1d\x53\x5f\xb6\x5a\xdd\x3f\x7c\xb8\xb5\x30\x4a\x2c\x60\x47\x56\xc3\x39\xb0\xf2\x93\xe0\xf7\xae\x07\x04\xff\x3e\x53\x71\x9c\xda\xdc\x1e\x8e\x8a\xed\x84\x69\x3b\x37\x41\x68\x8f\x25\x81\x8b\xde\xb1\xea\x2b\xc5\x47\x90\x3e\xa2\xe6\xf8\x0a\xc1\x16\x44\x8b\x10\xb3\x5f\x8f\x81\xe0\x52\x53\xbd\x1a\xb4\xf2\x30\x0e\x23\x48\x2c\x20\x50\x02\xe6\x4c\x38\xa6\x27\xa7\xb1\x7c\x42\xb9\xdc\x0f\x8b\xa7\xca\xdd\xa7\x49\xcf\x24\x21\xde\xdc\x6e\x31\x78\x27\xf0\xf4\x48\x86\xb7\xd9\xa7\xd7\xb2\x6a\xc3\xe9\x0b\xfd\x10\x99\x1e\x22\xff\xfb\xf8\x48\xd4\x1c\xbe\x27\xce\x11\xff\x85\x60\x1b\x1b\xed\x11\x58\x31\x54\x4c\xff\x25\x01\x1a\xce\x05\xbe\xca\xbc\x7d\x95\x2c\xd1\x09\x74\xbe\x91\xb4\x6e\x6e\x93\x09\x9b\xc2\x71\x83\x51\x85\xf8\x0b\xdc\x45\x03\x0d\x14\x3c\xfd\xfd\x3a\x62\x90\x85\x34\xeb\x88\x1d\x51\x7d\x76\x52\x46\xb9\x4c\xf3\x81\xc3\x30\xca\x9a\x7e\x98\x41\xda\x88\x52\xa3\xb6\x5f\x0c\xcf\x7c\xb4\x0a\xc4\x2a\x23\x80\xff\xe4\x6f\x23\x26\x01\xe4\xf0\x4d\xd2\xda\x7a\xb3\xa6\xc8\xf8\x7c\x2b\x49\x7d\xee\xe9\x10\x57\x33\x0f\x47\x5c\x3d\xd3\xea\xa5\xa3\x6c\x60\x0a\x44\xc2\xda\xc8\xb1\xeb\x87\x7d\xf1\x6d\xea\xe1\x5e\x09\xfc\xc4\x4b\xde\xc9\xc2\xe1\x50\x69\xbf\xb4\x25\xc3\x0d\xeb\x8d\xb3\x5e\xba\xed\x97\xa3\xa2\x9f\x8e\x8a\x29\x3f\xd7\xb7\xa9\x6d\xf7\xb4\x1b\x29\x9c\xdb\xad\x75\xbf\x31\x21\x7f\x4f\x4c\xce\x17\x9a\x6c\x27\x76\x09\x50\xd1\xa7\x81\x68\x11\xd6\xcd\x80\x80\x69\xd7\xed\xd6\x80\x53\x5d\x0f\xa8\x79\xff\x26\x69\xc5\x6d\x5e\x25\x0e\xd9\x0f\x60\xbc\x81\xf2\x00\xb7\x35\x76\xdc\x5d\x9e\xa9\x41\x05\xc3\xcd\x47\x7c\xf1\x90\xbc\xfe\x3f\xc3\x56\xc6\x32\xdc\x1e\x33\x5d\x48\xe5\x25\x5b\x32\x7d\xe0\x92\xf6\xbb\xaf\x69\x7f\x1d\x5f\x04\xe1\x3d\xb6\xe8\x2d\x26\xab\x3c\x47\xfe\x17\x69\x5c\xbe\x75\x42\x20\xd7\xf3\x3c\xa0\x34\xe7\xd0\x9b\x73\xbb\x9d\x89\x29\xd7\x45\x47\xa5\xa9\xad\x73\xa9\xe2\x3c\xf7\xed\x6b\x45\x49\xdf\x64\xca\x15\x89\x50\xfa\x06\xf5\x18\x6e\x38\x79\xa7\xf9\x34\xcb\xd2\xe5\x28\xe9\x35\x3d\x76\xf8\x0a\xd1\x1c\xff\x60\xcc\xe2\x8f\x95\x15\x29\xfd\x4c\x3c\x32\x44\x5e\xb9\x1e\xf8\x02\xf8\x7a\x1d\x66\xb0\x13\x0e\x4c\x16\x52\x36\x81\x69\x2b\x1d\x4e\xda\x78\x4e\xf6\xff\xca\x97\x51\x4f\x90\x28\x59\x85\x27\x3c\x96\xfa\xbc\x03\xed\xc6\xd1\x82\xa3\x0f\xc5\x0b\x3d\x41\xa4\x37\x67\x26\xc2\xcf\x4a\x62\xff\x4c\x2b\x37\x59\x64\x54\x25\x14\x71\x98\x8c\xd6\x61\xa2\x65\xbb\x4d\x4c\x10\x59\x5f\x63\xf4\xb1\x4c\x9d\x23\xf5\xaa\xf6\x70\xa7\x0f\xb4\xb2\xb4\xb3\x68\x8a\xc9\x36\xb6\x1b\xba\xfa\x90\x6a\xf8\x99\x59\xc8\xc2\x08\x5c\x3f\xd2\xb5\x0a\xbc\xd9\x9f\x24\x6e\xe9\x47\x83\x5d\xe5\x06\x91\xb7\x46\x84\x9d\x02\x8a\x43\x08\xbc\xcb\xf2\x38\x3b\x39\xdb\xd2\x8a\x4f\x78\x52\x00\x20\x36\xb7\xbd\x3c\xd1\xbb\x81\x87\xba\xad\x31\x18\xf8\xff\x62\xa7\x77\x03\x11\xbc\xd2\x8f\xdb\x55\x47\x05\x63\xb3\xa5\xf8\xc0\xef\x5f\xb7\xa6\x5a\x3e\x3d\x98\xa8\x36\x78\x68\xf2\xd4\x2a\x7f\xaf\xbf\xff\x37\xfe\x16\xec\xa8\xa0\xd7\x03\x2a\x33\x4d\x8c\xf1\x85\x71\x5a\xbe\x31\xbb\x58\x6e\x42\xaf\xfc\x45\xed\x4a\x31\x75\x6a\x18\x9b\x6c\x3b\x8d\x2a\x1f\x41\x63\x40\xe9\xe5\x58\x43\xb2\xc1\xb4\xa0\x2e\xda\x96\x4e\xbd\x0e\x7f\x50\x78\x72\xc4\x76\x02\xe4\x2f\x05\x9e\x31\xaa\x53\x66\xdb\xb1\x4c\xb3\x3e\x14\x06\x55\xe3\xb1\xf2\x22\xcc\x74\xa4\x4b\x42\x69\x1e\x1c\x39\x45\xc1\x6c\x99\x9e\x9b\x25\xc9\x3b\x69\x94\xdc\xcd\x95\x93\x7a\x55\x3e\x4c\x17\x4d\xbe\x9c\x0e\xc2\x64\x4b\xb9\x27\x1c\x5d\xcf\xc1\xdd\xec\x4c\x94\x24\xfb\x0e\xe1\x95\x37\x03\x29\x28\x37\xed\xc7\x89\xfb\x13\x32\x21\xaa\x85\xf5\x80\x46\x75\x44\x41\x14\x96\xf9\x03\x67\x73\x4a\x97\xd2\xcd\xc2\xe5\x64\x8a\xeb\x7a\xde\x19\xfd\x26\x01\x6c\x6e\x61\x9d\x51\x25\x69\xb4\x37\x42\xc6\x9c\x97\xca\xa2\x42\x73\xe2\x89\x81\x75\x6d\xf0\x12\xa7\xd7\x45\xee\x37\x64\x51\xc7\xe4\x4f\x92\x22\xc0\x85\x31\x2b\x19\x96\x47\x4a\x46\xb6\x02\x3a\x2c\x97\x02\xbf\x1a\x73\x4f\xa1\xad\x85\x18\xfd\x0a\x0e\x05\x0a\x83\x57\x59\xb5\xdf\x7e\x41\x04\x36\x1f\xd9\x9c\xc0\xa1\xf2\x3d\x01\xd4\x2a\xca\xf4\x28\x10\xdd\x91\xb8\x4a\x95\xe6\xbc\x6e\xea\x7f\xf1\x99\x36\xcd\x6a\x20\xe3\x42\x76\x08\x62\x6b\x1c\xb0\x57\xc6\x24\x86\x7f\x2d\xf0\xf2\xe9\x3d\x53\xec\x22\x08\xf2\x8f\x82\x09\x62\x4b\xbf\x19\x20\xcb\xac\xdc\x37\xdc\xb6\x1a\x33\xb6\x9f\xba\xfd\x0f\xac\x63\x55\xfe\x0c\x5f\x9a\x3a\x61\x13\x1f\x9c\xbb\x57\xed\xe3\x2a\x41\xa5\xfd\x52\x8a\x64\xf6\x59\xe4\xeb\x88\x36\x65\xfc\x84\xc1\x0a\xd7\xb0\x44\x3a\xaf\xf1\x09\x4a\x5e\x96\x4c\x56\x4c\x51\xc4\x70\x8a\xb5\xf3\x2f\x52\x37\xe5\x14\x9e\x59\xfe\xa3\x4e\xaf\x35\x1f\x8e\xba\x39\x11\x52\x5c\xa2\xd6\xff\xa9\x31\xd7\xfd\x03\x2f\x23\x9e\xa6\x03\x1c\x43\x1c\x9f\xf7\xc7\xbe\xfa\xfb\x7e\x35\x2e\x9d\x6e\x0d\x33\x53\x84\x2f\x35\x89\x40\xed\x18\xf5\xc8\x50\xc1\x46\x30\x71\x67\xc2\xee\xa7\xf1\xa2\x28\x5a\x28\x6d\x9e\xdd\xbf\xca\xb7\x53\x91\xd3\xdb\xd3\xea\xa5\xf1\x02\xac\x89\xe3\x91\x20\xe1\x3e\x5f\x44\xe8\xa7\x12\x08\x20\x31\xd8\x65\xe3\x19\xe4\x02\xc2\x13\x89\x4d\x5b\x2d\xcb\xd9\xb2\xd9\x28\x59\x34\x99\x14\xdb\xf0\x85\x2e\xb2\x4e\xcc\xc5\xda\x46\xcd\x7c\x98\x74\x52\x14\xdb\xb4\x07\xce\xed\x74\xff\x70\xa3\xcf\xe7\x9f\xdf\x65\xb7\x05\x7a\xae\x22\x07\x89\x32\xeb\x7d\x56\x93\x7c\x7f\xec\x79\xbb\x05\x00\x8a\x6c\xf5\x8e\x5d\x5f\x78\xf0\x4d\x6d\x1b\x82\x22\xea\x12\x6e\x31\x24\xf3\x42\xe5\x81\x53\xf8\x1b\x5c\xdc\xff\x90\x0b\x10\x77\x08\x2a\xf3\x6f\xb9\x63\x8c\xf1\x05\x65\xae\xe7\xf1\x99\xcb\xd4\x77\xbd\x40\xd2\x23\x61\xa7\x63\x86\x05\xc4\xf1\x59\xfa\x92\x14\x2e\xeb\xd0\x37\x4e\x7c\xaf\x31\x21\xb2\xe7\x2b\x76\xe7\x5c\xfb\x2a\xcc\x8c\x95\xc6\x2f\x7f\x4e\x89\x87\xcb\x45\xd2\x96\x75\xf9\x3b\x22\x60\x45\x4d\xce\x7e\x94\x17\x69\x06\x31\x2f\xed\x2b\x7e\x0f\xcb\x2e\x37\x34\x54\x19\xf6\xd2\x24\x7a\xd9\xd8\x8a\x34\xf0\x24\x98\xdd\x90\xeb\x4a\x98\x3a\x3b\x37\xdb\xca\x47\xf3\x83\x48\x3d\x9d\xee\x92\x86\x63\x38\xba\xc8\xe7\x3b\x8c\xa3\x85\xcf\xa3\x48\xa6\xf1\xcb\xc6\xe8\x16\x43\x71\x7f\x88\xe3\x8d\x2e\xfd\x0f\xa8\x31\xf7\x82\x09\x13\xb0\xf4\xc0\xf3\x09\xb4\x1a\x5d\x00\xf0\x60\x61\x6f\x9c\x64\x56\x92\x2b\x54\xbc\x56\x79\x64\x5b\xa3\x99\xf6\x42\x77\x65\xd6\x80\xdc\xe2\x12\x83\x61\xad\xa9\x93\x7f\xaf\x9b\x74\x98\x08\xd3\x91\x3f\x37\xda\xbe\xc1\xd6\x58\x7d\x9a\xf1\x8d\xe9\x20\x92\x3d\xf2\x90\xd6\x22\x45\x05\x59\x94\xab\x2a\x26\x7a\x89\x28\x24\xc9\x35\x09\x4e\x17\x59\xd8\x8d\x92\xde\x13\x13\xa2\x4b\x64\xeb\x7f\x68\xcd\x38\x5c\xf8\x31\x0b\xe6\x20\xea\xbe\x19\x37\xc9\xea\x71\x6d\x5b\x6c\xf0\xa7\xbc\x5a\x76\x65\xdc\x78\xa2\xf3\x4d\xa8\x5f\x28\x27\xaf\x3f\x14\x0f\x70\x8e\xf0\xd1\xef\x31\x1b\xb6\x14\x4c\xb0\x47\x7f\x88\x40\x12\x39\xc3\xf7\x6c\x84\x89\xfc\x5f\xd8\x76\x61\x35\xbf\x53\x23\xfe\xd9\x5a\x48\xb3\x89\xe9\x66\xcd\x7f\x29\x17\xae\x44\x64\x87\x0f\xb7\x86\xa3\x38\xd6\x96\x03\x02\xbd\xcd\xa8\x56\xc9\x4d\xdb\xbb\xd7\x38\x5d\xde\x51\x2e\x81\x23\x8f\xf1\x78\x55\x26\x7b\x04\xcd\x38\xae\xaf\xc0\xfc\x88\x92\x19\x6b\xa9\xdf\x25\xe4\xb6\x04\xa0\xf2\xeb\x36\xe6\x14\xaa\x13\xe7\x84\xc2\x5e\x66\xcc\x76\x62\x46\x10\x90\x8e\x93\xfb\x75\xb5\x9d\xad\x16\x9a\x21\x9c\xb7\xd8\xee\x0e\xb5\xe4\x59\x2d\xb7\x90\x4c\x25\x98\x56\xb4\x61\x50\x37\xb1\x98\x26\xa5\x19\x6b\xf8\xae\xc7\x2b\x01\x25\xc1\xaf\x30\xab\x45\xd8\x59\x84\xd4\x90\x53\x14\xb3\x21\x82\xd2\x3c\x4d\x60\x2a\x07\x43\x68\x8c\x97\xaf\x0b\x0f\x0c\x3f\x29\xd7\x14\xe5\x87\xdd\xd2\x9a\x6c\x2d\xbf\x19\x2a\xcb\x0d\x72\xa2\xc2\x3d\xe1\x8a\x1f\x0e\xdd\xfd\xfe\xd8\x0f\x70\xbe\xc9\xc4\xbe\x97\x2a\x0c\x38\xa5\xd5\xcd\xcc\x30\x0e\x3b\x7e\xb4\x41\x18\x4b\xe1\x27\x94\xbe\xd4\xc9\x27\xa7\x79\x31\xb4\xd5\x47\x2a\x39\x49\x65\x54\x04\x15\xec\xa7\x6b\x92\xaf\xdd\x86\x61\x69\xb0\x8b\x7c\x0b\xa9\x4f\xdd\x83\xe1\x85\x07\xd6\x6a\xba\x90\x3c\x8d\xa9\xae\xf3\x8f\x29\x7f\x79\xa3\x52\x4c\x2c\x33\xf6\x74\x30\x2f\xae\x00\xf5\xe3\x6b\x76\xf7\x3b\x0e\xd2\xbd\x6e\x88\x78\x32\xec\x18\x0d\x9f\xb4\xef\x00\x83\xe7\xf7\xa8\x1e\xf3\x2f\x80\x56\xd2\x37\x69\xcf\xb0\x74\x99\x18\xcd\x7a\x0b\x31\x39\x02\xc7\x5b\x36\xd2\x84\x1b\x01\xa4\x04\x1f\x2a\xaa\x30\x8e\xc4\xa7\x5c\x55\xc4\xd6\x0f\xec\xa3\x09\xe7\x88\x75\x8e\x0e\xc2\xb8\xc7\xe7\xf5\x2c\x24\x21\x89\xb9\xb6\x82\x6c\xc7\x8a\x76\xb9\xc6\x94\x53\xf6\x2c\xc0\x2d\x5e\x25\x8f\x56\xac\x0c\xa3\x4e\x18\x73\xad\x82\x58\x26\x2f\x11\x04\xb4\x48\x0b\x74\x89\x9f\x97\xe2\x9d\xd0\x91\xc9\x4d\x8d\x74\xd6\x6c\x6b\x98\xa5\x43\x25\xe1\x98\xf6\x58\xae\xbd\x1e\xcb\xf5\x09\xb6\xd2\x51\x99\x42\x3a\x78\xe6\x11\x2e\xc2\x1f\xa1\xe0\x3e\x99\xef\xd8\xee\xb3\xb2\xb8\x11\x26\xe2\x02\xf5\xa8\x44\xe7\x52\xa7\x5d\x6b\x18\x00\x96\xd3\x6c\x31\x4a\x7a\x52\x76\x81\x79\x3d\x45\xa8\xa9\x53\x63\x1a\x11\x09\x8b\x28\xb3\x4b\x65\x7f\xd8\xb9\x67\xc7\x1e\x7b\x99\xc6\x2b\x86\xe9\x70\x14\x87\x99\xf5\xc3\xce\x97\xcc\xed\xd6\x7a\x16\x0a\x11\xf2\x1f\x68\x32\xca\x7f\xac\xea\xe1\xe8\x87\x79\x11\xc5\x2b\x36\x3e\xc7\x20\x3a\x82\x1e\x49\x36\xc6\x9e\xe8\xf2\x56\x25\xe4\xfc\x42\x2b\x4f\x97\x22\x53\x08\x12\x66\x1d\x7b\x72\xfd\xd6\xc4\x56\xcf\xa2\x7c\xab\xe7\xbb\xfc\xc6\xab\x88\x21\x1d\xb4\xd6\xb1\x06\xa1\xd7\x8a\x40\x03\x9d\x4a\x31\x8f\x81\xdf\xa9\x27\x6b\xf3\x8b\x68\xd1\x69\x9e\x68\xe5\x96\xe4\xc8\xbe\x1d\x30\x4b\x5f\xaf\xaf\xa4\xe6\x78\x5d\x57\xc6\x15\x91\x5d\x24\x79\x77\x68\x6e\xf6\x1e\x5c\x24\x72\x9c\xd7\x09\xcc\x01\x71\x71\x54\xb4\xfe\x60\x4c\x91\xae\xcc\x2c\x68\xdc\xea\xbd\x53\xd3\x8e\x25\xba\x79\x45\x6f\x37\x66\x6b\xba\xe7\xad\x15\x13\xc7\xe9\x72\xc3\x07\x71\x00\xba\x6b\x82\xb3\x8b\x94\xc1\x3b\x69\xd6\xcd\xb7\xda\x53\xa3\xb4\xcb\x13\x1c\xcc\xc4\x9d\x8e\x64\x0a\xe5\x96\xb7\x02\xc2\xbb\x0b\xbe\x42\x27\x06\x7c\x75\xa8\x1f\x26\x56\xbd\xa2\xe9\xfb\xe9\x18\x05\x51\xde\x29\xc2\x68\xff\x26\xf1\x87\x8e\xba\x2b\x8f\xf8\xce\x38\x18\x6d\x10\xbd\x4f\x31\x00\xf2\x47\x88\x54\x94\x30\xc6\x3e\x84\x34\xc0\xed\xa7\x20\x34\xd9\xb2\x4a\x28\xea\x4b\xc4\xa1\xfa\x0d\x80\x05\xb5\xa8\x45\xbc\x06\xc7\x40\x96\x2e\x3b\xf1\x3f\x7f\x8a\x92\x9c\x13\x81\x57\x31\x12\x0a\x02\x14\xdc\xa6\x56\x6d\x06\xc8\xb2\x36\xd8\x94\xd7\xed\x64\x24\xf2\x95\x66\x1b\x49\xa3\x22\x9b\xec\x67\xe2\xe6\x5b\x58\x77\x18\x60\xa9\xba\x4b\x3f\x8c\x95\x9e\xef\xdb\x6d\xad\x04\xa1\xa5\xd1\x55\x17\x6c\xc3\x3c\x64\x3f\x3f\xb2\x5f\xcc\x9d\x0f\xff\xef\xe2\xb1\xdc\x9c\x81\x03\x34\x37\x56\xa9\x6b\xf8\x7b\x64\x56\xcc\x4b\x45\x66\x06\x56\xe7\x61\x6e\xb7\x44\xe3\x67\xc7\x8d\xaf\x7c\x49\xbe\xe9\x49\xbb\x49\xf1\xe7\x31\x0f\x0a\xd3\x74\xb3\x4e\xcf\x36\x36\x79\xde\xe4\x41\x35\x52\xa7\x00\x43\x88\x9a\x12\x1f\x1c\xbf\x38\x8a\x8c\x95\x84\x72\x18\xcf\x3f\x1f\x53\x80\x79\x6b\xec\x51\x03\x77\x6b\x32\xb4\xd9\x56\x66\xba\x66\x21\x72\xd4\xfc\xa8\xa9\x4b\xe4\x28\x37\x6d\x0f\x08\xcc\xc3\xa4\xbb\x1c\x75\xfa\x46\x38\x0b\xf1\xa2\x65\xdc\x47\x6e\x08\x57\x1a\xc6\xc3\x9c\x28\x5b\xd7\x99\xb2\x75\x9d\x78\xb7\x51\x19\x81\x69\x86\x5b\xf8\x29\x31\xdb\xfd\xd4\x33\xe3\xf7\x43\x3f\xf2\x20\x07\x8a\x98\xa8\x2e\x50\x62\x68\x5e\x4a\x31\x04\xe0\xab\xd8\x6f\xd3\x60\xd6\xdb\x95\xf0\xf0\xc0\x73\xad\x61\x1c\x26\x89\xe9\x5a\xef\xe4\x1a\x8f\xe5\xd7\x74\x89\x0f\xb5\x01\xec\x57\x56\x98\x21\x29\xb3\x14\xd9\xa8\xd7\x8b\x4d\xde\xf4\xb8\x37\x51\x3a\xc3\x16\xfd\xd7\x30\xd5\xc2\x9c\x5b\x79\x8c\xb9\xdd\xd6\xec\x2c\x99\x6c\x0b\xcd\xab\x81\x5e\x08\x5b\x41\x04\x70\x25\x50\xb3\x06\x55\x55\x76\x09\xd5\xf1\x80\x82\xce\x62\x39\x2a\x3a\xfd\xa6\xcf\x3f\x51\x37\xd5\xb2\x9f\xfd\x73\x3a\xfe\xf6\xb0\x2e\x5b\xd7\x2c\x98\x24\x87\x88\x18\xb9\xbe\x39\x57\x5e\xf0\x09\xa2\xe0\x30\x84\x56\x73\xd2\x6d\x75\xa3\x06\xc1\x82\xce\x05\x8c\x64\x24\xe0\x58\x9e\xa6\x09\x12\x69\xb8\xb4\xd7\x03\x1a\x9f\x01\xe1\x18\xda\x1f\xbf\x1f\x78\xa2\xf1\xcb\x94\x48\x9b\x17\x47\x61\xbc\xd5\xc3\x64\xdf\x66\xd1\x8c\xd7\x70\xb2\xe4\xc6\xae\x85\x8a\x35\x95\xe6\x03\xdf\x02\x4e\x5a\xae\xa9\x12\x92\x8f\xb2\x2c\x1d\x25\x5d\xd3\x6d\xb0\xb9\xf8\xf7\x41\xa9\x66\x5b\x71\x38\x2c\xd2\xa1\x54\x12\xb4\xe4\x47\xb8\xaa\x8b\xae\x14\xd2\x4b\xf3\x3c\x1a\x36\x26\xcb\x6e\xde\x43\xf1\x3c\x57\xb4\x14\xc5\x51\x98\xb0\xbc\xff\x79\xa6\xd9\x3c\x1f\xf8\x04\xbd\x67\x12\x11\xe7\xce\xa7\xa8\x9f\x29\xfc\x23\x8e\x84\x7f\x6e\xb7\xd8\x99\x86\xcd\x93\xe5\xba\x5d\xe3\x48\x81\xf3\xda\x42\xd0\xcd\x8f\x98\x8d\x02\x24\xc6\x8e\x10\xc1\x41\x42\xe5\xec\x28\x85\xe2\xd3\xb4\xb4\x43\x93\x0d\xc2\x6c\xd1\x08\xa2\x17\x46\xf4\x8f\xc7\xbe\x63\x2a\x14\x21\x48\x31\xae\xb8\x15\x5b\x32\x45\x6a\xba\x5b\x89\xc7\x4f\x44\x8b\x5c\x99\x67\x6e\xb7\x63\x6f\x2a\x4f\x8c\xea\x04\x7b\x50\xeb\x3d\x6e\xb9\x6f\x72\xe8\xa1\xf9\xcc\x84\x8b\xdb\xfd\xc1\x3f\x8d\x80\xdd\xe9\x6a\x3a\x53\x01\xf3\x8e\x1f\x3a\x1f\x50\x77\xeb\x2e\xe6\xfd\x1d\x42\xcd\x1f\xde\x35\x2e\xc5\xdf\x0c\x36\x2a\xf8\x58\x74\x73\x3a\x18\x86\x45\x34\x1f\xc5\x22\xf6\x34\xeb\x19\x46\x67\x3c\xab\xa8\x77\x08\xf9\x20\xcc\x8a\x32\x71\x2d\x3f\x46\x55\x65\xec\x76\x97\x9b\xca\xfc\xce\xec\x73\xfb\x5b\x4b\xe1\x4b\x76\x07\xc1\xf3\xbc\x8d\x03\x2c\x37\x6e\x1a\xbb\x6b\xc2\xa4\xc9\x40\x45\xc8\xd5\x60\x59\x1f\x59\x25\x3e\xe9\xc7\xdb\xfe\x24\xa6\x0b\x85\x49\x76\x35\xbd\x60\x22\xe4\x0f\xdc\x30\xa3\x2f\x61\xdf\xc2\xda\xe0\x90\x03\xa3\x02\xcf\xf9\x3e\x4d\xeb\x6e\x6b\xfb\xe1\x8d\x9d\x76\x84\x19\x76\xe6\x14\x02\x71\x69\xa5\x8f\xa9\x31\x25\x38\x18\xd4\xcd\x9a\x00\x4b\xa9\xf2\xaf\x5d\x18\x6b\xc1\xbe\xba\xab\x6d\x23\x14\x9d\x31\xb6\x9c\xf1\x42\x66\x20\x4f\x51\x2b\x2f\xcc\xdc\x3c\x6e\xbb\xd9\x43\xa4\x5b\x8f\xb4\x4f\x7a\x29\x35\x58\x25\x50\x55\x50\x76\x0d\x28\x78\x25\x1d\x25\x3d\x7d\x97\x5a\x93\xb5\xcb\xac\xa2\xd5\x7e\xba\x38\x4c\x8a\x28\x33\x61\x1c\xe5\x45\xd4\x61\x15\xcc\x93\xa4\x8b\x7d\x9b\xfa\x65\xe7\x28\x79\x1b\x0d\xe7\x4d\x88\x5a\x01\xe2\xa5\xbb\xc4\x2f\x7a\xb7\x52\x17\xfc\x42\x2b\x37\x4b\x26\x03\x52\xd7\xd1\xaa\xa1\x1d\x20\xd7\xab\xd5\xea\xcb\xfe\x56\x9e\x8e\x7a\x7d\xdb\x00\x99\x75\x46\x96\xb8\x8f\x8e\xd0\xd8\xc9\x11\xf6\xaf\x27\x2a\xd8\x94\x7d\xfb\xe6\x5a\x9d\x74\x94\x47\x49\xc3\xcb\xa0\xa0\x3d\x23\xd7\x13\xd8\xee\x22\x1d\x3e\xe2\xcb\x79\x42\x54\x08\x8f\x67\x29\x1c\xf7\xaf\x43\xb0\x42\x13\x93\x32\x70\x84\xbd\xb9\x8e\xce\x85\x9b\xe8\xf4\x8b\xff\xfb\x96\x47\x00\x49\xdc\xff\x4e\x3c\xa0\x9b\xa0\x5c\x06\xf3\x7b\xc5\x03\xc9\xa2\xf9\x86\xef\xef\x20\xce\x97\xeb\x0a\xa4\x7c\xdf\xbe\x56\x27\x2c\xfa\x26\x8b\x12\x94\x52\x9d\xde\xb4\xa7\x03\xb8\x54\x39\xc7\x7b\xf6\xb4\x06\x69\xdc\x9d\x22\xdd\x5b\xb0\x8e\xea\x64\x79\xf9\x97\xc4\x24\x05\xa4\x09\xff\xf6\x43\xb5\x60\x16\x4c\x96\xa5\x4c\x0f\x35\xa6\x16\xeb\x45\xd6\x0e\x1e\xe5\x43\x93\x40\xe6\x79\xaf\xee\xa1\x1f\x13\xba\xe8\xc7\x75\x1a\xec\x8b\x49\xba\x9c\xd8\x62\xbc\x56\xbc\x08\x17\x71\x39\x70\xe4\x5a\x32\x55\x6c\x32\x45\x4e\x20\x0d\x01\x96\x05\x5e\x44\xea\x83\xc2\x87\x51\x09\x62\xca\x05\x4d\x07\xe5\x23\x5a\xf7\x07\xcf\xaa\x8b\x4a\x0b\xec\x92\xac\x38\xec\x9a\xa4\x49\xe8\xc0\x35\xd2\x00\x13\x35\x61\xc1\x09\x39\x12\xb0\x28\x29\x4c\xb6\x64\x92\xf2\x13\x50\xbb\x62\x4d\x07\x58\x9c\xab\x38\xbe\xd2\x4b\xad\x93\x10\xe9\xa5\x05\x7e\x19\x0b\x07\x33\xef\x66\x88\x3d\x3c\xe4\x5e\xed\xdc\x47\xee\x5a\x15\x6e\x5e\xf6\xa0\x5a\xa2\x2a\x72\x65\xef\x4c\x2b\x4b\x2d\x63\xa8\x0d\xeb\x54\xd3\xce\x3e\xa2\x5a\x32\x52\x12\x86\x18\x21\x22\xa5\x8f\xea\x48\x04\xa1\x4a\x48\x2c\xaa\x97\x99\x45\xf5\x72\xe0\xe7\x4b\x46\x45\x94\x8e\xf2\x26\x8f\xbb\xd1\xe4\xed\x47\xe8\xad\x6a\x4d\xc8\x0f\x98\x0c\xd3\xac\xc8\xc2\xf2\x3b\xfa\xf6\xee\xf7\x68\x50\xe7\x7b\x64\xd3\x86\xe1\x8a\xc9\x72\xbb\x1f\xf1\xf8\x8d\x55\xcf\xf1\xd7\x68\xfb\x1a\xda\x30\x4b\x0b\xd3\x11\xe8\x24\x93\x71\xc3\x11\x1d\xb5\x31\x21\x45\x2e\x1a\x93\x1e\xb3\xa9\xa3\xfc\x07\xc7\xa7\x77\x02\x02\x2b\xbf\x61\x1f\x0f\xa6\xf8\x47\x34\x25\x69\x91\xac\x05\xe6\xaa\x84\x36\xd1\xbe\x6a\xa5\x50\xac\x03\xf0\xdb\x4a\xb3\x94\xbb\x94\x94\xb9\x41\xec\x69\x95\xfe\xd5\x73\xfb\x5b\x26\x36\x3d\x65\x50\xd6\x71\xef\x89\x41\xf0\xc7\x08\x28\xb1\xdc\xf0\xad\xd5\xcb\x04\x38\xbf\x5c\xee\x54\xad\x5a\x98\xb0\xfb\xe2\xc8\x06\x19\xf9\x14\x4d\x3a\xff\x7a\xe0\xe5\x74\x7f\x7d\xec\x21\xd6\x50\x2e\x93\xeb\xf1\x46\x3a\xc5\x83\xbb\x9f\x57\xed\xed\x30\xe9\x86\xf3\xf1\x0a\x0d\x93\x63\xa6\x50\xae\x03\xaf\xd0\x36\x8c\xe0\xab\xb0\xf6\x6f\x11\x45\xe4\x5b\x13\xa2\xa6\x03\x93\x59\xf3\x82\x97\x7a\xd3\x3e\x94\x5c\x53\xb5\xaf\xf4\xe0\xdd\x91\xb1\xa5\x4b\x14\x8e\x6f\xd9\xaf\x2e\xd7\x15\xeb\x5c\xae\xea\x7c\x94\x15\xfd\x6e\x88\x91\x13\x54\xaa\x60\xd2\xe5\x7a\xfc\x74\x35\xbb\x2c\x9d\x3f\x0b\xbd\x1c\x54\xae\xd3\xcb\xac\x7d\xea\x15\x2f\x10\x75\x20\xd9\x91\xeb\x3a\x59\xd5\x79\xd3\xcb\x9b\xa4\xa4\x7a\x62\x4c\x45\xf8\x2b\x30\x55\xa8\xd9\xbd\x37\x41\x30\x9e\x14\x59\x98\x81\x33\x42\x29\xe6\xca\x4f\x95\x6b\xd2\x67\x5c\x30\x61\x31\x12\xdb\xab\xa3\x78\x27\xc8\xa6\x5d\xb4\x2f\x58\xb8\xbb\xea\x46\x94\x32\x63\xb1\x34\xa8\x18\xc0\x93\x3e\x20\x45\x94\x07\x54\x08\x08\x6d\xdf\x0b\x0a\xe9\x4e\x1c\xb3\xb4\x05\x08\xf8\x80\x70\x45\x11\x15\xa5\x1e\x64\x81\x67\x6d\x83\x4d\xae\xc7\x8c\xc2\x23\x7a\xed\xf3\x15\xe1\xac\x83\xbb\x67\x5b\x21\x6a\xd6\x00\xde\xfc\xb6\xdd\x22\x72\x5d\x83\x05\x98\x6e\x65\x51\xbe\x28\xc2\xef\xcc\x5f\xa9\x40\x47\x4f\x42\xd0\x09\x97\xc2\x38\x2a\x37\xa0\x2b\xb5\xa1\x85\x27\xd7\x15\x02\xe7\xbd\x33\x96\xd6\xc7\x64\x0b\x91\x89\xbb\x46\x86\xef\xf0\xe6\x4e\x20\x32\xd6\x73\x4e\xb0\x8b\x09\x8b\x92\x2c\x44\xd9\x00\xe6\x5f\x89\x21\x89\x8e\x9b\xd2\xc6\xa1\x29\x22\xc9\x03\x7d\x6d\x56\xfa\xa5\x9a\xa7\x94\xcf\xad\x54\x4b\x34\xfe\x78\x91\x18\x0e\x5f\x36\x09\xac\xa6\x3a\x37\x8f\x97\xdb\x0c\x09\x4c\x98\x8f\xb7\x99\xce\x0e\xf8\x1d\xf9\x0f\x58\x4a\x16\xf9\x55\xd1\x0d\x9f\x4c\xed\x58\xdd\x78\x98\x9e\x69\xc5\xc2\xe4\x8c\x9f\x7e\xb4\xed\x0b\x7a\xf0\xb6\x30\x43\x52\xc6\x82\x73\xff\xf3\x5a\xae\x96\x5e\x66\xca\xac\x18\x64\x2f\x88\x2b\xa0\x9e\xa6\x01\x14\x35\x61\xce\xd7\xc5\xe8\x83\xb0\x1f\x16\x03\x95\x27\x50\x80\x82\xfd\xbe\x72\x13\x28\xcd\xd1\x62\xd4\x4d\xc2\xe1\xd0\xd1\x1c\x29\x43\x6d\xc3\x29\xc1\x40\x0a\x4a\x47\x71\x9e\x74\x81\x85\xd5\x05\x1e\x58\x5a\x73\xaf\xa3\x70\x99\x45\x73\xec\xd2\x2b\x8f\x04\xe3\x9a\x87\xa3\xa4\x59\xda\x40\x18\xa6\x8f\x03\x5f\xd4\xf8\x21\x49\x79\x3f\x20\x4a\x0f\xd3\x8d\x0a\xa0\x5f\x91\x00\x9e\x20\x95\xb8\x13\x04\xde\x4f\x87\x26\x79\xd4\x37\x72\x7e\x0f\x75\x2d\x07\x7f\x77\x33\xc2\xbf\x0d\x6f\xee\x4a\xe6\xe5\x4a\x3b\x50\x87\x4b\xfe\x7e\x07\xc7\x56\xa5\x10\x6c\x8a\x88\xd2\x12\xa6\xc9\x9d\x14\xf9\xf4\x01\x8f\x37\x2b\x57\x59\x40\x00\x64\x43\xf3\x7e\x79\x82\x9a\xde\xb2\xc1\x6c\x4c\x94\xb8\xab\x9c\x5f\x5d\xd3\x31\x43\x2b\x1a\x52\x2e\x91\x1e\x68\x3a\xdc\x6e\x3c\x56\x53\xbe\x2d\x9c\xe5\x79\x5e\xf1\x8f\x26\x2a\x0f\x70\xb6\x78\xbd\x7f\x40\x61\xc5\x83\xda\x61\xe6\xcc\x84\x78\x70\x52\x5c\x99\x95\x1e\x9d\x54\x59\x25\xdd\xad\x03\x65\x8e\x92\x91\xeb\xd6\xe1\xe3\x8f\xdb\x4f\x94\xeb\x60\x47\xd4\x1a\x66\x66\xe1\x6f\xb6\x46\x9f\xf6\x7a\x41\x7f\xeb\x73\xab\x8d\x3d\x7b\xbc\xae\xef\xac\x83\x43\xfc\x14\xed\x48\x6d\x68\x13\x52\xf2\x1c\x0f\xf5\x1f\xb7\xf8\x0b\x9c\xd5\x5d\xed\xc6\x17\x0f\xf9\x86\x88\x63\xed\xd8\xd9\xf6\x83\x71\xbb\xda\x65\xe2\xa4\x0c\xd9\x94\xdb\x6e\x5d\xb5\x3b\x08\xf1\xed\xe6\x55\xdf\xf2\xfe\xab\x36\xb3\x84\x0e\x0b\x9a\x6f\xae\x08\x7b\xc8\x91\x0e\x9c\xb4\x61\x00\xb6\x73\x73\x95\xa7\x05\x6f\xda\x82\x3c\x4c\x82\x00\x6a\x00\xba\xb4\x83\x1d\xb3\xae\x3a\x4c\x74\xdf\x37\x49\xf5\x70\xc1\xa6\x62\x56\x1d\x1d\x21\x7f\x03\x2d\x13\xec\x5b\xe1\x5f\x95\x1b\x4e\x90\xce\x61\x13\xcb\xef\xb4\x29\xf3\x0e\x98\xbf\x34\x5b\x2c\x93\x58\x27\x14\xb4\x81\x99\x87\xd4\xd9\x92\x5e\x94\x18\x80\x74\x11\x64\x9d\xa6\x41\x96\xd3\xf4\x37\x33\x93\xa7\x59\xb1\xcd\xae\x2c\x66\x79\x8e\xd3\x4f\x1e\x21\x85\x26\xd8\x1e\x35\x0d\xf6\x6d\xa3\x91\x74\x02\x34\x24\x72\x03\x17\x2c\x7f\x2a\x78\xb2\x22\x0d\xf1\xf9\xa6\x57\x50\xc7\xf0\x31\xb6\xef\x18\xdf\x05\x66\xa0\x3a\xa8\xbe\x77\xc6\x82\x9e\x25\xa0\x75\x8c\x91\x33\x0a\x15\xad\x65\x35\x8b\xd3\xc1\x7c\x98\x75\x9b\x1b\xd1\xd0\x58\xda\x1f\xf3\xa0\xd0\x75\x1a\x2f\x89\xc3\x79\xb0\x86\xf9\x16\x28\x88\x3b\xe4\xba\x12\x59\x7d\xa1\x35\x6f\x19\xdb\xcb\x6f\x06\x3b\xf4\x20\x20\x9a\x17\x18\x5f\xc5\xee\x7a\xdb\xb3\x90\xc6\x71\xba\xdc\x9c\x28\xaf\x7b\x60\xef\x31\x56\xeb\xbb\x53\x99\x68\x29\x1d\x12\xd5\x40\x1b\xbe\xcc\x7d\xd2\x1a\x22\xb9\xae\x41\xb6\xec\x6f\x0d\x6c\x90\xd6\x20\xf8\x38\x86\x01\xe4\xba\x86\xb6\xad\x15\x87\xc3\xdc\x48\xba\xe8\xc4\x81\xcb\xe7\x53\x46\x8e\x87\xf5\x02\xfa\x66\x39\x36\x45\xd1\xa8\x30\x15\x2a\x1f\x0d\x65\x61\x69\x1c\x1b\x54\x05\x34\xad\xb0\x07\x50\xf3\x8a\xbf\xfa\x90\x8f\x98\xcf\xc2\xd1\xc0\xd8\xac\x5f\xbb\xd0\x3a\x62\x4b\x82\x72\xb7\x09\x86\xf3\xe2\x28\xea\x2c\x2e\x45\x66\xd9\xf2\x5e\xbb\x5a\xef\x5e\xc7\xda\x4f\x10\x84\x42\x27\x51\x05\x4e\x16\x4c\x60\xcb\x2a\xbb\x6e\xba\xb5\x10\x76\x8a\x34\x5b\x21\x14\xdc\x65\xa2\x99\xb8\x4c\x5f\x38\xb6\x12\x9a\xd6\xe5\xe2\x73\x3f\xa6\xe2\xe5\x26\x6b\x06\x31\xec\xf6\x35\xea\x56\x74\xd3\xd1\x7c\xb1\x9d\x88\xf2\xcf\xd8\x80\x16\xb0\xbf\x3f\x65\x09\x3d\x54\xaf\x75\xb2\xb1\xfc\xcb\xd8\x4c\xaf\x8e\x7d\x06\x2f\x95\x6c\x58\xd8\x29\x6a\x5a\xbd\x55\x97\xb4\x0f\xc3\x24\x74\xf1\x0b\x76\xba\xb0\xe2\xca\x4d\xcd\x60\xd8\x4c\x6b\x10\x66\xbd\x28\x69\x7a\x3c\x34\x2a\x86\x6e\x3e\xda\xcb\xd1\x5d\x9c\x68\x00\x99\xac\xdb\xf0\xed\xee\xd7\xed\x2f\xc9\x35\x8f\x0a\x8f\x32\xb3\x83\x27\xe0\x98\xb7\xe5\x0c\x81\x2a\xef\x04\x8d\x43\xb3\x4e\xcd\xd6\x2e\xa0\xce\xcc\x95\x0b\xa8\x13\x50\xe5\x27\x6a\x77\xd2\x6b\xf5\x41\xf2\x56\x87\xda\x37\x46\x87\xcf\xb4\xba\x66\xc9\xc4\xe9\x50\xab\x4e\xc2\x0a\x65\x23\x28\xe5\xf4\xa7\x32\xff\x8f\x6b\x8a\x94\x2a\xf8\xde\xb4\x06\x14\x6e\xf8\x16\x75\x36\xdf\x83\xfb\x53\x29\xcf\x8d\x06\xf2\xf0\xe1\xd6\x20\x5c\x99\x37\x4d\x6a\x84\x23\x27\x86\xf9\x16\xea\x70\x05\xbc\x71\xd8\x37\x1f\x8a\x34\x79\x5d\x2d\x6e\xe3\x2e\xf8\x5c\xeb\x17\xa7\xf7\x3e\xbb\xf7\xc0\xfe\x66\xe9\x42\x51\x51\x43\x75\x0d\x5b\x75\x7d\x92\x27\xd1\x27\x00\x99\x79\x09\x42\xb1\x28\x96\x0a\xf9\x9b\xdc\x3c\x94\x84\x79\x08\x32\xdb\xf2\x9b\x0b\xb7\x04\x0d\x71\x6f\x06\x3e\x12\xeb\x73\x9b\xc4\xcd\xa3\x24\x2f\xa2\xc2\xd2\x7d\x0a\xd1\x0e\x6b\x94\xe8\x4d\xe5\xf0\x1e\x3e\xdc\xca\x8d\xad\x71\x21\xe8\x16\x91\x3c\xfb\x89\xa8\xf5\x03\x41\x08\x3b\xd9\xa8\xd4\xad\xf7\xed\x6b\xf5\x4d\x96\x1b\xc0\xd3\x67\x3d\x05\xcb\xec\x9c\xbb\x79\xa8\x48\x44\x6f\x14\x66\x61\x52\x18\xed\xae\xbb\x7c\x8a\xb3\x2e\x0d\x2b\xad\xd1\xef\xfe\x7f\xa4\xbd\x79\x8c\x24\xd9\x79\x27\x36\x9d\x55\x7d\xcc\x74\xcf\xc5\x19\x6a\x77\xa5\xb5\x91\xc4\x12\x1a\x19\x4b\x0d\x28\x19\x30\x60\xf9\x8f\x48\x57\x97\x38\xec\xc6\xaa\xa6\x50\xdd\xea\x91\xe6\xaf\x79\x19\xf9\x32\x33\x58\x91\x11\xc9\x38\xaa\xa6\x06\xfe\xc3\x36\x8c\x85\x01\x2f\x0c\xac\x21\x2f\x7c\xc0\xb0\xbc\x5e\xaf\x57\x58\x59\xa2\x0e\x92\xa2\xb8\x72\x16\x0f\x91\xa2\x78\xcd\x41\x72\x86\x73\xf6\xf4\x7d\x54\x77\xf5\x7d\x77\xb5\x11\xdf\xef\xfb\xde\xfb\xa2\x32\x5a\x36\xe0\x7f\x88\x4c\x4e\x57\x66\x46\xc4\x7b\xdf\xfb\x8e\xdf\x11\xaf\xd1\xd1\x86\x0e\xe1\x8d\x40\x27\xae\xfe\xb8\xfa\x40\x41\xc0\xc2\x34\x4b\x6c\x1c\xf3\x06\xae\x49\xd7\x89\x6d\x52\x43\x4d\xce\xb2\x88\x33\x9e\x98\xf4\xa3\x40\xb5\xe2\x7f\xa4\xa0\xc6\xc3\xc9\xb3\xba\x57\x16\xdb\xc2\x64\x11\x7b\x85\xb8\x68\x75\xf0\xa0\xbc\xae\x2d\xc3\x32\xca\xc1\x45\xc4\x42\xfa\xd7\x4a\x96\x92\xef\x02\xde\x5c\x62\xe8\x85\x40\xe4\x9e\xad\xe7\x18\x07\x0f\x1e\x6a\xcf\x1f\x7e\xd2\x33\x1c\xae\x06\xbe\xe7\xf3\x23\xed\xf4\x75\x85\xb6\x27\x32\x1d\x70\x70\x85\x00\xa5\x8c\x53\xef\x21\xb1\xad\x41\x5b\xf0\xcd\xb7\x54\x13\xeb\xf6\x44\x61\x09\xd9\xca\x41\xf9\x14\xc8\x0c\xf7\x7b\x14\x8e\xf0\xc1\xbb\x91\x5d\x22\x20\x40\xa8\x12\x41\xf0\x7f\x69\xe2\x25\xc6\x25\x8b\x73\x21\xfd\xdd\x52\xaa\x3a\x5b\x4a\x86\x36\x1f\xa6\x99\xa5\x43\x0d\x6b\x5c\xc9\x84\xbf\xb7\xa3\xe9\x5c\xef\x9a\x64\x59\xd4\xa2\x65\xba\x44\xd7\x28\x12\x71\x3e\xaf\xb8\xa5\xfa\x3c\xdd\x38\x4a\x96\x05\x92\x8d\xf5\xf7\x8e\x42\x00\xbf\x33\x15\x9e\xaa\xea\xf7\xb9\x2e\x23\xa9\x1a\xb3\x57\x9d\x93\xf6\x7a\x16\xcc\x65\x09\xbe\x14\x38\x30\x02\xf9\x6b\xc4\x41\x04\xc8\x4b\xdb\x25\x6b\xaa\xf3\xe6\xc8\xdc\xc2\xde\xea\x4c\xc5\x7d\xde\x0b\x1b\x4e\xd4\xbb\xbb\x3b\x74\x38\x20\xbe\x9f\xa2\x62\x91\x4d\x54\x74\x74\x65\x7a\x18\x2f\x69\x5a\x25\x80\x49\x6d\xd1\xed\x70\x96\xe0\xd5\xf3\x73\x8d\x0a\x27\xec\x71\x59\x49\x81\x5e\x99\x3c\xa3\x36\x5f\xd2\xb7\x99\x4d\x42\x0b\x27\x2d\x36\xf1\xd0\x5b\x89\x45\xfc\xc4\x56\xcb\xe3\x93\x58\xbf\x52\x46\xc1\xfe\xbc\xba\x49\x89\xe6\x16\x3a\x7f\x58\x7e\x3f\x08\xfc\x7a\xa8\xce\x94\xb5\x5d\xf4\xa1\x60\xed\xcf\xd0\x9c\x9e\x5f\x77\x7c\x8f\xe9\x38\x0a\x46\x75\x56\x49\x2b\xec\x62\xa0\xc4\x3b\x8e\xd7\x0e\xe8\x28\x5f\xde\x47\x7f\xe6\x66\x0e\x8b\x2f\x1e\xf2\xa2\xe1\x3e\x77\x83\xdc\x64\xcd\xd4\xd8\x01\x97\x8f\x48\x6e\x7e\xb5\x26\x63\xe9\x01\x72\xcc\x91\x02\xa0\x85\xfb\xe5\x0c\x5f\x0a\x14\xea\xe9\x16\xb6\x36\x9a\x7f\x17\x95\xcb\x89\x53\x9a\x42\x3d\x24\x35\x71\xcb\x99\xb6\x9c\xdc\x5e\xa6\xfc\x46\x7b\x61\xe1\xd9\x29\x78\x99\x8c\x62\x4e\x04\x3e\xcf\xc7\xc0\x54\xe9\x83\xbc\xe0\x8f\x37\x1f\x68\x10\x9a\xb1\x84\x60\x78\x8c\x87\x07\xd1\x58\xf7\x00\x3c\x6a\xee\xcb\x48\x4f\x58\x18\x92\x6a\x66\x37\x24\xf1\x70\x88\xd9\xf5\x2a\xb0\xa1\x87\xb6\x81\x47\xe6\x80\x90\x2f\x39\x9a\xea\x95\x40\x1f\x3f\x1c\x3b\x1d\xd0\xc2\xc9\x39\x9c\x25\x36\x04\x5a\x1d\xb3\x9d\xe9\x09\xdc\x7c\xfb\x0b\x26\x62\x44\xac\xa8\xfd\xf9\x11\xec\x45\x25\x63\x5f\x1d\xbe\x59\x49\x80\x72\x7a\x70\xe8\x74\xdc\x56\xc4\xdf\xdb\x4d\xb2\x67\xd5\x8b\x65\x1c\x7e\x8b\x4e\xde\x4c\x21\xf9\x9b\x84\xf1\xda\xab\x26\x72\xda\x49\xa2\x00\x42\x7f\xc3\x6f\x02\xe9\x8b\x8d\xb3\x74\x94\xaa\x7c\x40\x60\x34\x3e\xbf\xbc\x30\xd9\xab\xea\x67\x5a\x2a\xa8\x62\x21\xfd\xc4\xaf\x27\xcf\x3a\x80\x43\x5e\x98\x6e\x14\x47\xaf\xb9\x74\x01\x4d\x87\xbd\xeb\xae\xc4\x5c\x7a\x86\x76\x18\xa2\xfa\x75\xcf\x18\x1d\x46\x45\x61\x96\xd9\xd7\x1c\x95\xc4\x9b\x08\x86\xfc\x46\xf5\x86\xbb\x26\x5c\xee\x65\xe9\x78\xc6\x0f\x4b\x6f\x63\xd9\xcb\x4c\x51\xc5\xaa\x69\x3d\xb9\x85\x85\xf6\xd0\x2a\x20\x1c\x22\xdf\x31\x95\xe5\x1e\xd3\x36\x34\x69\x86\x23\x58\x38\xe6\x2d\xa7\x32\x31\x43\xf8\x09\xac\xfa\x6b\x81\xaa\x53\xef\x37\xfa\xf1\x7e\xb1\xb4\x26\x8f\x44\xbb\x1c\x6b\xf4\x0a\x2d\x37\x7e\x1d\xc8\x8d\x4c\x0c\x1e\x0b\x81\x11\x5a\xbe\x93\x8c\x61\x18\xbf\xd6\xf5\x8f\x49\x42\x0b\xaf\x3b\x31\x9b\xf0\xcf\xea\x0e\x3d\x2b\xec\x95\xd3\xda\x32\xf7\xa3\xc0\x77\xca\x3e\x52\x59\x69\x69\x01\xdd\xc6\x7f\x61\x60\x0a\x5a\x02\x0f\xb0\x23\x71\x24\xa0\x2e\x00\x70\xe9\x81\x0a\xb0\xd5\xff\xe4\x98\x76\x38\xeb\x0b\xcf\x8a\x61\xe6\x15\xba\x1d\xb7\x1b\xf0\xc5\x87\xda\x99\x89\x72\x3b\xa3\x9c\x84\x67\x3b\xbe\xc7\x0b\x89\x61\xfc\xff\x1b\xfa\x98\x4f\xe3\xa8\xa7\x00\xe3\x3b\xa8\xa9\x8d\x87\xb3\x85\xc8\x83\x93\xf3\x6d\xd5\x6e\xe8\x5a\x53\x14\x6b\x94\x1c\xd4\x04\x9c\xf8\x8d\x22\x4e\xae\xda\x9e\x00\xd6\x1c\xd1\xde\xc7\xbf\x33\x1e\xa7\x60\xc7\xfc\xcf\xd8\xa7\x59\x2f\xe2\x53\x53\x0e\x29\x9f\x69\x67\xb6\x5f\x66\xdd\x28\x1f\xba\xf5\x88\xb4\xf3\xcf\xe8\x59\xf3\xeb\x46\x0b\x88\xa1\x81\x7f\x10\xce\x93\xfb\x08\x70\xb8\x49\xbb\x3b\xad\xdf\xfc\x1d\x37\x2a\xf1\x73\xdb\xe3\xea\xfc\x9c\x25\x8b\x14\x1c\x40\xd3\x78\x93\x03\x0b\x6d\x93\x0f\xcb\x2c\x2f\xd4\xfa\x3b\xa6\xb1\xe8\xc7\x6a\xf2\x56\xb6\xb0\x8f\xf9\x59\xec\x19\xc5\xc5\xfd\x6b\xdd\x71\x78\x03\x9f\x80\x4c\xea\x2c\x53\x39\xb0\x84\x4e\xab\x42\xff\x01\xf1\xa7\xd9\xed\x09\x5b\x1b\x7f\xcf\x32\xa7\xfc\x46\x79\x3e\x3f\xb2\xde\x84\x2e\x62\xc8\x1e\xf7\x75\x84\x18\xe1\x7b\x58\xd3\x6d\xe0\x83\x07\x97\xda\xfd\x34\x2c\x81\x3f\x45\x46\x05\x66\x1d\x43\xd3\xe9\x74\xc6\x5d\xbe\xaf\x44\xb3\x07\x59\x5a\x14\xa9\x68\x58\xe0\x8a\x70\x62\xf3\xeb\x89\x9a\x08\x66\x65\x54\xf4\x4b\xe8\x83\x8b\xee\x03\x5d\xa4\x08\x42\x3c\xad\x31\x11\xa3\xe8\x55\x16\xb7\x41\xf1\x75\x59\x6b\x1b\x5d\x9e\x5a\x52\xf3\x87\xdb\x36\x29\xa2\x22\x66\x02\xd3\xc1\x83\x4c\x9a\x7d\x84\xc2\x15\xbf\xee\x6c\x7f\xe0\x9f\x7b\xa9\x6d\x6c\x61\xb3\x44\x1b\xb4\x9e\x55\xe2\x6c\x5f\xa3\xd2\xdf\xbb\x6a\xfb\x67\x3f\x10\xc7\x2b\xf4\x4f\x36\x28\xb3\xe1\xd7\x0d\x12\x37\xec\xcd\x49\x57\x2f\x76\x9c\x2d\x27\x70\x7c\x4e\xa9\xf5\x14\xd1\x38\x27\x75\x71\xec\xdc\x1f\xa3\xbb\xee\x34\x4c\x1c\xf5\xf1\xac\x02\x10\x87\x69\x12\xc6\xa5\xf8\x29\x68\x0f\x0d\x8c\x58\x2f\x05\xbe\xcf\xfd\xba\xb7\x60\x29\xec\x88\xb4\x4c\x17\xbd\x6e\xe6\xa2\x13\xd3\xfe\x70\xe2\xa9\x74\x5c\xbc\x60\x35\x30\x4d\x5f\xd3\x61\xf0\x8b\xee\x4f\x34\xe7\xa7\x49\xf0\x89\x98\x6c\x33\x5a\xb6\x13\x41\xca\xb5\x83\xfc\x00\xa9\x71\xd4\x31\xb2\x26\x51\xaa\xb2\x27\xf1\xd7\xfc\x46\x35\xd4\xf2\x70\x98\xa6\xf1\x4e\x3f\x05\xdf\x40\xa3\x5a\xec\x59\xfd\x80\xe3\x5d\x35\xdc\xba\x5a\xeb\xc4\x2b\x54\xc0\x38\x8a\xab\xc5\xb8\x34\xc7\xd5\x23\xf6\x06\xbf\x5e\xdf\xbe\x16\xab\xdd\x44\x3e\x28\x85\x4d\x64\xb2\x82\x90\x76\x3c\x50\xb2\xa2\xda\xb3\xd3\x46\x83\x21\x39\xa4\xcf\x7b\xf3\x4d\xef\x9e\x0b\x93\x60\x54\xdc\x64\x6a\x76\x68\x6b\xb6\xa3\xd8\x94\xe7\x91\x0b\xf3\x1b\x7a\x20\x62\x0b\xba\xfd\x26\x1e\x3c\xd8\x4e\xd2\x4c\x44\x65\x91\x7d\x7e\x77\xe2\x05\x11\xa0\xe1\x21\xf4\xbb\xed\x01\xb8\xda\x65\x26\x47\x47\x13\x89\x15\x0e\x29\x7e\xbd\x3e\x6d\x00\x7d\x64\xee\x71\xfa\x26\x60\xed\x5f\x47\xbe\x80\x2a\xe1\x8e\x32\x0b\x85\x9c\x1c\x66\xce\xd7\x26\xaa\x3b\x74\x13\x77\x0c\xc1\x9b\xe5\x03\x91\xa6\xdd\x9c\x68\xda\x58\xb5\x26\xd0\x58\xbf\x37\x51\x16\xa1\x30\x0a\x44\x5a\xfe\x00\x05\xbc\x6c\x9e\xea\x4c\x40\x76\xf3\x91\x9a\x4f\x86\x69\x39\x06\xce\x19\xfb\xff\x2a\x9e\x03\xbf\xa9\x09\xc8\x54\xbf\x98\x5f\x4f\x85\x23\x60\xc7\x46\x36\x0b\x23\x13\xa3\xdc\x70\xc2\x4a\x4a\x65\x49\x69\xfd\xf5\xd3\x6c\x10\xad\xd0\x71\x58\x6d\x41\xd6\x59\xa3\xf1\x94\x68\xae\xa9\x14\x96\x7c\xf4\x68\xec\xe8\xfa\xa7\x67\x95\x15\xdc\xd9\x86\xb1\xf5\x62\x7b\x64\xad\x17\xe6\x12\x20\x75\x6b\xc1\xbb\xd9\xa9\xfe\x50\x66\x56\xe3\x2a\x9a\xfc\x7f\xe8\x48\xff\x82\x47\x5a\xd9\x22\x4b\xc3\xa1\x1d\x39\x7a\x21\x9e\xf4\x0e\x25\xb8\xb0\x63\xbd\xc1\xb8\xfb\x0b\x36\x1d\x9b\xac\xb7\xa6\xa4\x29\xce\x29\x27\xa6\x1f\x4f\x94\x65\xde\x65\x35\xde\x5a\xb5\x34\x66\x43\x5b\x5e\x9b\xc2\x8a\xc4\x8e\x9f\x86\xdb\x57\x09\x6c\xb8\xc2\x29\x96\x4c\x12\x5b\x4e\x90\x08\x94\x28\x21\xba\x2a\x70\x8d\xc9\x7a\xf2\x15\x40\x33\xfc\x30\x50\xba\x04\x3f\x6c\x20\xc0\x2f\xb6\xfb\x51\x4c\x24\xc3\xea\x9e\x21\x21\xfd\x0a\x1e\x3c\xbf\x71\x99\xd3\x30\x1a\x2b\x62\x31\x36\x3a\xbf\x6e\xfc\xe0\x5e\x46\x62\x50\x2d\x25\x4d\xc3\x08\x3f\x7e\x33\x95\x5b\x1e\x3c\xc8\x94\x34\xe5\x3c\x76\x56\xf5\xdd\xcf\xba\x72\x24\xed\xe6\x85\x09\x63\x99\xee\x88\xee\x82\x16\x61\x50\x03\xf3\x51\x4a\xb7\xde\xe3\x97\x98\x97\xc1\x6f\x7c\x87\x32\x4d\x22\x72\x31\xa7\xfb\x5e\x83\xc4\x09\x0c\xce\x43\x79\x0a\x22\x50\xcf\xb4\x5e\xf2\xd6\x4a\x35\x87\x30\xbf\xff\xde\xd3\x9e\x40\xb1\xc9\xf3\x28\xd4\x4e\xa7\xff\xb2\x26\x76\xa1\x10\x7e\x2b\x51\x3e\x14\xf3\x7e\xc4\x85\xaf\xe1\x9f\xf2\x1b\x55\x12\x2c\x5b\x58\x52\x39\xdc\x7d\xb5\x08\x71\x1e\x82\x2d\x89\xe0\xf3\x9d\xe0\x93\x5a\x7b\x3b\x4b\x07\xa6\xda\x9a\x78\xf8\xa8\xb6\x81\x22\xe3\xd7\x1e\xd1\x18\x97\x18\x55\x51\x44\xa7\xa3\x7d\xeb\x52\x13\xb3\xd9\x64\x79\xca\x48\x28\x91\xea\x6d\x39\x35\xb2\x13\xc1\x53\x0e\xf3\xfa\x85\x32\xf7\x3b\xbc\x09\x20\xe8\x2b\x87\xae\x49\x96\xf3\x7d\x5e\xad\xed\xde\x44\x89\x46\xb0\x53\x38\x60\x19\xb3\x1d\xc5\xd5\xdb\xe4\xbe\x81\xe4\x85\xca\xd1\xef\x3f\x57\x68\x57\x3c\xa9\x1a\x47\x02\xcd\x79\xa0\x6e\x24\xfc\xf9\xb6\x1b\x4f\x01\xc4\xc2\xc2\x67\x43\xd5\x25\x3d\x53\xfd\x4c\xf1\x68\xf7\xf4\x90\xdb\x48\xfe\xc5\x5f\xa8\x4a\xfe\x91\x7f\xc1\x54\x1c\x4d\xb0\x3f\x9c\x28\x2f\xc8\x7d\x90\x1a\xc0\x9f\xbf\x85\x73\xa6\x66\x0b\x80\x18\x75\x85\x7e\x98\x34\xfd\xe9\xea\x45\xd2\x0f\x57\x2f\x14\x77\x85\xc8\xb9\x4d\xcd\x19\xed\xc3\xc2\xf6\x59\x81\xea\x94\xb0\x0e\x84\x6a\xe1\x2c\x7a\x1f\x7a\x97\xf1\xb5\x3a\xcf\x28\xbb\xab\x32\x09\xa3\x38\xcd\x18\xf7\x2a\x79\xb5\x9f\xcf\xdd\xa0\x1f\x8b\xa0\x79\x4c\x95\x86\x31\xf9\xeb\x55\x37\x02\x28\x8d\x47\xa8\xe1\xc7\xaf\x1b\xfa\x3a\xed\xbe\x5d\x15\xda\x80\x6b\x8a\xf8\x06\x89\xe2\x2f\xc6\x66\x75\x64\x96\x2d\x7e\xd2\xe2\xd6\x89\x89\xea\xba\xb0\x01\x11\xde\xec\x9c\xfa\x9a\xc5\x17\x0f\x11\x23\xa4\xa5\xc4\xaa\xdf\x0d\xea\xf4\x90\x1a\x39\xff\x35\xb1\xc9\x69\x12\x06\x79\x56\xc9\x85\x7d\xb1\x8c\x72\x82\xa7\xed\xa9\x6e\xa4\x94\x5a\x4a\x0f\xea\x7d\x4d\x30\x3b\x4b\x5d\x00\x36\xa3\x52\xc2\x02\xe0\xe3\x60\x63\xfd\x0d\x52\x0f\xfc\xac\x9d\xeb\xda\x70\xc9\xe3\xe7\xd2\xe7\x96\xa3\x70\x39\xda\x45\x57\x8d\x0c\xed\x14\xfe\x0e\xf9\xcb\x1b\x2a\xbd\xbc\xac\x88\x62\x97\x15\xf6\xea\x41\x8d\x51\xee\xab\xa0\x5e\xb4\x12\xf5\x4a\x13\xef\xf6\x63\xfc\x1b\x75\xdd\x0b\xa5\x42\xd4\xea\x78\x03\xf2\x59\xaa\x79\x50\xa4\x93\x83\xf4\xc2\x16\x0b\x78\x89\xd1\x97\xbe\xc7\xff\xd1\x67\x81\x8c\xc6\x9d\x61\xc7\x62\x7e\xb3\xde\xd0\xbe\xcf\x87\xe9\x6a\x4d\xc4\xed\x82\x56\xc3\xbe\xa0\x71\x2a\xcb\x51\x1c\xe7\x33\x8a\xb1\x7d\x52\xf1\x9d\x61\xd1\x24\x2a\xaa\x4d\x06\x41\x65\x6e\xb0\x50\x18\x91\x15\x78\xec\xda\xb9\x06\x49\xfd\xea\x9c\xab\x8a\x4c\x84\x77\xdf\xa9\xd6\xcd\xed\xed\x89\x1a\xd9\x2c\xa4\x63\xa2\xb8\x49\xe0\xd4\xd2\x6d\xfc\x5a\xd3\x16\x6c\xc1\x55\xe6\xce\xba\x58\x4e\x75\x43\x10\xfd\xee\x6b\x41\x88\x73\xd8\x1e\x4e\x3a\xc7\xc1\xe2\x36\xa7\x9c\x42\x5f\x5a\x9a\x6b\x47\xa3\xae\x89\x4d\x12\x4a\x51\x8d\xcc\xf3\x7b\x6a\xac\xf0\xbd\x29\xea\x45\x55\x19\xd9\x57\x8b\x4c\xb9\xf0\xc9\xb5\x2b\x75\x99\xe3\xaa\xa0\x29\x86\xb6\xcf\x74\x39\xc0\x89\x71\x97\x64\x38\x45\xb7\x0f\x55\xe0\xb9\x1a\x27\x66\x35\x2a\xea\x82\xb3\x5e\x44\x71\x33\xd8\x8e\xb8\x5c\x9a\x6b\x27\xb0\x47\x40\xfd\x7c\x9d\x62\x1c\x9a\xa0\x3f\xa6\x7d\x81\x42\xe8\x72\xb0\x1d\xd6\x2a\xa3\xd0\xd8\xf4\xa2\x3c\x36\x2b\xca\xce\xf3\x94\xee\xc6\x9c\x52\x48\x56\xf6\x20\x6d\x29\xec\x32\x2c\x4f\xf8\xf5\xd4\x64\xf9\xe0\x41\xe9\x94\xa4\x7c\x06\x3b\xce\x81\xef\x1d\x6e\x4e\xd1\x2d\x8e\xcc\xbd\xd0\xee\x16\x2d\x75\x5c\x5d\xe4\x00\x26\x13\x87\xa6\xbc\x2d\x1c\x9a\x6c\x20\x0f\x87\x75\x7c\xf0\x70\x44\xd4\x47\xf7\x16\x5e\x8d\x42\x9a\xaa\xcb\x74\x54\x61\x9d\x2e\xeb\x09\xe8\xcf\x1a\xdd\xcb\xcb\x7c\x28\x39\x1c\xaa\xab\x53\x7a\xa6\x73\xaa\xd1\x8c\x22\xb3\x6b\x49\x1a\xf7\x04\x36\x23\xd2\x46\xf4\x5d\xfc\xa6\xc9\xfa\x7b\x6c\x4d\x2e\x44\x01\x21\xc1\xf9\x21\xf9\xef\xbb\x34\x77\x64\x42\x78\xbc\xa0\x68\xb8\xc3\x77\x4c\xbc\xae\x7d\xd6\x3b\xed\xd6\x30\x7f\x98\x4a\x29\x93\xf4\x5c\x7f\x1d\x2b\x13\xcc\x12\x2c\xdf\xdd\x8a\x47\x79\x71\xb2\xd7\x63\x76\x56\x1e\xa3\x1c\x01\xbd\xe6\x3b\xba\x8b\xc1\xbd\x6b\x2e\x7b\xe9\x57\x03\xb3\x79\x4a\xe7\xb1\xb7\x75\x30\x47\xed\x2d\x06\x5e\x41\x6d\xcc\xe4\x31\x9f\xa7\x28\xcc\xf3\x37\x2a\x92\xa5\x09\xab\xc3\x9c\x77\x1d\xda\x39\x60\xfa\xcb\x14\x19\xf7\x04\x53\x18\x05\xe4\x8d\xab\x34\x31\x83\x54\xac\x17\x82\xbc\x8e\x18\x23\x3b\xcb\x6f\xed\x2c\x4d\x47\xf9\x6e\x1a\xc0\xa1\xc3\x71\x6d\xd2\x7a\xee\x39\x79\x8d\x1f\x2d\x2a\x22\x55\xca\x24\xc2\x3b\xbe\x25\x8f\xb9\x16\xfe\x0d\x64\x6b\xb6\x5e\x9f\x8a\x55\x8e\xee\x95\x66\x23\x9b\xcd\x56\xab\x55\x94\x3f\xe9\xbe\xb2\x7e\x2a\x96\x2e\x2a\x0d\xc8\x1b\xe1\x34\xde\xd9\xf1\x9d\x41\xbb\x92\xc6\x2b\x02\xb3\x73\x76\x41\xae\xcf\x75\x41\xe5\xd7\x99\x65\xd9\x51\xa9\x9b\x50\x25\xc0\xf6\x84\x5f\x4f\xf5\x44\x5f\x79\xa5\x9d\xa7\x55\x21\x1e\x71\x5f\x17\x64\xdf\x3b\x13\x65\x6c\x7b\xc7\xb1\x82\xfb\xb1\x59\xb6\xf9\xac\x86\x66\x3f\x8a\x86\x97\xb3\xf5\x74\xfc\x55\x6e\x9c\x63\xa9\xdc\x6f\x28\xba\x5f\x68\x7f\xb1\x34\xc4\xc2\x6d\x29\xa3\xbb\xea\x03\x84\x77\xe1\x79\x4a\xab\x51\x91\xd8\x3c\xb7\x39\xc4\x1e\xe5\xcc\x53\x95\xde\xeb\xb5\x03\x50\x55\x7d\xaf\xd7\xf0\x13\x6b\xb1\xdd\xa5\xcc\xe8\x59\x6b\x14\xbf\x18\x66\x13\xc2\x90\xa4\xf5\xe4\xbc\x0e\xe7\x0f\x7b\x82\xa5\x87\xd3\x6c\x2a\x94\x77\x98\x99\x7e\x41\xc1\xb8\x89\x90\xd2\xd0\x6b\x32\xf9\xb2\x04\x3d\xcc\x79\xdf\xa2\xbb\xc7\xaf\x03\xdf\x77\xe9\xc7\x86\xfa\x5f\x9e\xef\xdb\x3a\xb0\xb0\x75\xa2\x3a\x31\xb6\x4e\x68\x1f\x90\x4d\x85\xf5\x7c\x30\x51\x97\xc9\xa2\x3a\x42\x61\x6b\x0a\xc2\x43\x22\x7f\x42\x3a\xa5\xa6\x3a\xa0\x0c\x68\x5f\xe0\xac\xf0\x5c\x53\x68\x1d\x94\x89\x13\xbd\xc0\xe2\xbc\x8a\x60\xc1\x6f\xa6\x8a\xb7\x23\x73\xa4\x44\x67\x89\x77\x80\xd3\xf5\x6b\x74\x01\xb8\x67\x0c\x2c\x16\x51\xa8\xea\xd6\x08\xc6\x76\xba\xfb\xb9\xd8\x2e\x1c\x53\x53\xc8\x0f\xb4\x9b\x95\xec\xb1\xb0\x2a\x58\x0a\x14\x55\xc1\xce\xce\x53\x2e\xa7\xcc\xc7\xca\xff\x13\x0f\x18\xc5\x04\xbf\x0e\x7e\xc1\x3d\x6c\xb1\x18\x30\x10\x23\x76\xeb\xf7\xbc\x5a\xbf\xe7\x5d\x99\x9f\xdb\x6c\x25\x0a\x2d\xfb\x00\x8a\x5b\x9c\xce\xec\x79\x17\xa1\xe8\xbf\x82\x1b\x8f\x4c\xfe\xda\x14\xf7\x72\x61\xa1\x3d\x32\xf9\x17\x4b\x0b\x19\x3f\xfa\xb9\x5b\xd4\xcc\xdb\xba\xa4\xc9\x67\x26\xd9\xa9\x37\x2a\x77\xd7\x70\x0f\xbf\xa5\x6a\xf4\x73\x81\xf2\xe5\x38\xae\x0d\x60\x2f\xaa\x64\x7e\x68\xb2\x51\x9a\x60\xaf\x8a\x1f\xaa\xcf\x51\xff\xa4\x01\xee\x6b\xb2\x51\x98\xb6\x34\x0c\xa9\xe6\x3c\x77\x6e\x2a\xdf\x3c\xfc\x62\xbb\x4c\xc6\x65\x37\x8e\xf2\xa1\xac\x24\x76\xfa\x56\x18\xe8\xe3\xaa\x15\x97\x87\x99\xb5\x49\xde\xf2\x6a\x80\x1f\x50\xee\xc4\xaf\x27\xfb\xfc\x01\x93\x84\x3b\xd5\xc8\x8f\xa5\x82\xd1\xdc\x63\x36\x8d\x8c\x26\xb5\x08\x05\xe3\xf2\x71\x64\xbf\xd3\xe4\xcf\x9d\xdb\x30\xb3\x05\xe7\x48\x4d\x89\xac\x6f\xe0\xe4\xa3\x34\x2d\x86\xb3\xde\x31\xf0\x5d\x3a\x0d\x45\x64\xa2\xaa\x91\x45\x63\xa2\xe5\x34\x61\xdf\x55\x98\xeb\xbe\xcd\x12\x93\xf4\x52\xb4\xe9\x9c\x3c\xd9\x81\x05\xd7\x29\x56\x3d\xfa\x8f\x9d\x46\x7a\x95\xfc\x56\xf7\x73\x71\xc9\xc7\x2d\xd5\x76\xd8\x54\x89\xa2\xcd\xca\xb1\x58\xfb\x0a\xa2\x98\x3e\x53\xb0\xc6\x8d\x22\xb0\x36\x8b\x23\x71\x5c\x72\x5f\xa0\xa2\xa4\x4a\xae\xf3\xc2\x5a\x14\x6d\x4a\xb6\x7c\x9b\x1b\x3a\x96\xe8\x13\x28\xb6\xd8\xb0\x83\x9f\x0a\x1e\xc4\x2b\x13\x3f\x66\xff\x12\x4e\x6d\x31\xad\xd5\x09\x79\x99\xe4\x7b\xbc\x1a\x29\xf3\x54\x38\x06\x70\x42\xa1\x22\x82\xb8\xa4\xdf\x99\x78\xa3\xd6\x4d\x05\x11\xbc\x0d\xc5\x23\x47\x03\x76\x4d\x86\x4b\x2a\x2e\x64\x36\x4c\x09\xd9\x11\xca\x5d\x6c\x42\xe1\x2b\xbf\x0e\xb3\x96\xef\xc2\x4f\x61\x31\x42\x5a\xbf\xc2\xc7\xf1\x6d\xe2\x6b\x35\xe0\x98\x72\x3f\xf8\x29\x1d\x33\x28\x7a\xbf\xa5\xc6\x8f\x23\x13\x86\xa6\x6b\x59\x25\x9c\x7b\x84\xf4\x81\xd2\x2f\x9c\xc6\xe7\xe6\xd6\x64\xa1\x1f\x3b\xbb\xd5\xec\x6d\xff\x9d\x70\xd0\x88\x69\xd9\xfe\xcb\x91\x67\x70\x8b\x6b\xe2\x41\x1b\x57\x5c\xb6\x66\xca\x62\x98\x66\x84\x05\xc1\x17\x30\x2a\x27\x50\x32\xc3\x1b\x6e\x00\x67\xc6\x26\x2b\xf6\x2a\xf7\x24\x6e\x29\xc9\xb2\x6c\x89\x21\xc5\x3f\xfb\xa5\x8e\xc2\x36\x28\xc8\xd2\x4d\xb5\xa5\xee\x21\x57\x50\xf6\x29\x62\xf7\x79\x47\xb1\xb6\x8e\x4e\x94\x44\x0c\xcf\xf5\xd8\x18\xbb\xb1\x72\xc9\xca\x24\x71\x57\x23\x28\x4c\xcf\xa4\x9e\x1e\xf3\x1d\x3c\xd8\xee\xc7\xa9\x50\x37\x45\x40\xc4\xf7\x6d\xde\x75\x9b\x36\x31\x23\x5b\xb3\xb8\xc2\x0c\x83\x5f\x37\x1d\xc0\xb9\x89\x4d\xb6\xd6\x52\x46\x44\x98\x13\x88\x15\x8c\xef\x3d\x94\xcf\xe7\xcf\x9b\xe7\x67\xab\xa8\xe9\x72\x15\x0f\x8d\xa8\xd1\x6e\xab\x7b\xc3\x66\x1c\x6a\x71\x65\xd6\xb8\x75\x22\xad\x6a\x76\x9f\xe2\x37\x75\x3c\x6d\x15\x55\x38\x3e\x60\xb8\xc0\x5e\x0a\xfc\x66\xea\x6a\x9e\x7b\xae\x6d\xa3\x62\x68\xb3\x99\xd6\xfe\xfd\x4e\xbc\x98\xbe\x4c\x4a\x80\xea\x07\x0b\xc7\xc2\x37\x20\x46\x69\x52\x0c\xd2\x91\xcd\xd6\xf8\xeb\x04\xc5\xac\x21\xcd\xaa\xd3\x1b\xc6\x26\x1f\x2a\xe1\xba\xb3\x7a\x01\x9c\x6d\x00\x53\xbd\xdc\xce\x87\x66\x19\x53\x3e\xc7\xa6\x73\xf7\xee\x8c\x5b\xeb\x61\x19\x17\xd1\x8a\x6a\x9c\x34\x61\xa9\xfe\xbe\xea\xd1\x85\xe9\x68\x5c\x1d\x7c\xe4\xa1\xd9\xd2\x80\x52\xdf\xe1\xba\xa5\xa6\xda\x04\x19\x88\xc9\x0e\xd0\x6b\x27\x2b\xd9\xbd\x0b\x0d\x9d\x90\xaa\x94\x2d\x0c\x8d\x5f\x5a\x5a\xb5\x25\x50\xdc\x63\xb7\xc3\x33\x9b\x97\x23\x81\xea\xa3\x5b\x0d\xf1\x33\xc7\x61\xaa\x16\x1a\xf0\x55\x8f\x74\x74\xdc\x4d\x7a\xf9\x2f\x52\xab\x94\x73\xff\x00\x28\x41\xb1\x77\xaf\x3e\xc3\xe9\x51\x3b\xb6\xd4\x4f\x81\x8b\xc4\x41\x76\x87\x70\x76\x82\xa0\x23\xe6\x94\x58\x6a\x7b\xe2\xcb\xdb\x68\x71\x03\x99\xf3\x8d\x40\xcd\xb9\xae\x51\x33\x85\x47\xa1\x70\x79\x96\x63\xc9\xcb\x86\x9e\xd3\xf4\xac\xfb\x48\x6f\x9d\x19\xde\xe7\x5e\xe2\x74\x00\x64\xfb\x5a\x89\x8b\x0c\x62\x86\xe4\x74\xf0\xe5\x8f\xc3\x1e\x07\x01\x99\xd1\x29\xec\x86\x8c\x96\x2f\x8a\x72\xee\xa3\xe3\x3e\xdc\x41\x0c\xc2\xdf\x5c\x9d\x4c\x8b\xa2\xa0\xbb\x76\xd4\x4d\x30\xaa\x05\x92\x45\x8e\x5f\x24\x7d\x42\xc5\x7f\x3a\x55\xab\x74\x7a\xf6\xd5\x47\x5b\x4e\x38\xe2\xb8\xd6\xec\xdf\x85\xd4\x1a\xad\xfe\x27\xa8\x55\x00\x86\xe1\x4f\xd0\x83\xc7\x91\x73\x4b\xab\xba\xfc\x73\x05\x0d\x9b\x25\x57\x71\x1e\xf6\x60\x50\xc0\x7f\x11\x78\xe3\x89\xf1\x30\x8a\xd3\x3c\x1d\x0f\x19\xaf\x26\xb2\xa8\x2d\x67\x76\x74\x4a\xc7\x88\x61\x5a\x25\xc8\x24\x2e\xe0\x68\x6f\x07\x16\xe4\xb5\x62\x95\x66\x60\x95\xa6\xc9\x2c\xad\x17\x51\x43\x6e\x39\x21\x0d\x9c\x57\x8e\x7d\xe9\x7b\xe9\xd3\xcd\x27\x1a\xff\xf5\xbd\xd5\x25\xc0\x19\x1f\xe2\x9e\xf2\x1b\x37\x01\x0c\x33\xdb\x8b\xfc\x7e\x06\xa0\xe0\xb4\x52\x06\x3d\xad\xc6\x63\x43\x71\x78\xc4\xa0\x03\x0e\x3f\xfc\xfa\xa1\xed\x82\x30\x36\x65\x0f\x63\x6b\x01\x52\xd2\xcf\x17\x84\xa5\xc8\x46\x75\xa3\x5e\x0e\x74\x34\xcb\xb7\x61\x29\xc9\x11\xad\x93\x4f\x25\xb4\xc9\x29\x2f\x96\xf2\xd3\x1d\x25\x48\xb5\x49\xe7\xa4\x04\x6e\x8f\x57\xbd\x37\x75\xc3\x0e\x2c\xb4\x43\x93\xe7\xb6\x28\x20\xa3\xc3\x79\x4a\xe0\x8b\xa4\xd3\x4a\xbe\x7d\x68\xba\xa2\x2c\xe2\xf8\x95\x9e\x6b\xe9\xec\x4f\xe3\x34\x34\x85\xa8\x25\x23\x07\x7b\x72\x5d\xb1\x3b\x9e\xe9\xa8\xfa\xe4\xbc\xcb\x0f\x86\x36\x92\xd6\x24\x56\xf5\xfb\x74\x93\xf9\x75\x43\x6b\xb2\x9d\x30\x03\x90\x93\x80\x9a\x9f\xda\x94\x0f\xea\xd2\xe2\xa7\xdb\x61\x16\x15\x36\x8b\x0c\xbe\xc5\xe9\xb9\xb9\x27\xbe\xd9\xd8\x6d\x1e\x67\xe9\x17\x6c\xb8\xcd\x95\xe8\x5b\x93\x56\xdd\xbd\x6d\x9e\x63\xea\x46\x93\x48\xfe\xa7\xdb\x5f\x2c\x4d\x56\x1d\xe6\xba\xd7\xe0\xef\xf8\xa6\x2a\x0a\x46\xa6\x28\x86\x76\x55\x5b\xe2\x00\x78\xc2\xaf\xd7\x7d\x49\x38\x0a\x0d\x1d\xfa\x0e\x06\xea\x00\x6d\x48\x9b\x10\x31\xcf\x06\x2d\xe5\xf5\xb5\xcf\xf3\x85\x7a\x06\x0d\x64\x56\x23\xd5\xc3\xc3\x8f\x55\x8a\x9f\x45\xf9\x72\xbe\x4b\x15\x18\xdf\x9a\xa8\xb6\xfb\x5b\x81\x6a\xa0\x7f\x47\x09\xd1\x61\xec\x24\x86\xa2\xbe\x39\xfd\x56\xa3\x9e\x75\xe9\x74\x5b\x80\xff\xfe\x09\x5d\x0c\xbf\xae\xc5\x41\x93\x25\xbb\xaa\xf5\xed\x46\x96\xfe\x64\x62\x8c\x30\xbf\x51\xe4\xbf\x0f\x95\x6c\xc5\xe5\x40\x0b\x9a\xca\xa2\xed\x45\x79\x2e\xf6\xc2\xd2\xb7\x6d\x39\xa9\x81\x93\x9a\x02\x33\x6d\xea\x76\x64\x6e\xb1\x6d\xcd\x40\x38\x5b\xe2\x63\xe4\x0f\xf2\xbb\xc8\x56\x81\x69\x3d\x53\x33\x23\xe8\xda\x84\x78\xa9\xfe\x14\xe5\x20\xc7\x6f\x1c\xac\x83\xd4\x2b\x12\xaf\x59\xce\x38\xf9\xc0\x93\x6b\x8e\x36\xb5\x16\x00\x30\xb4\xbd\xc8\x14\xf8\x12\xa7\x4d\xe9\xa5\x92\x2e\x4e\xad\xfb\x5f\x21\x3f\x8b\x3c\x87\x39\x13\x52\x2f\xe5\x34\xe8\xde\x4c\x49\xf2\x39\x0a\x5b\x56\x65\x4b\x92\xf1\xba\xef\xf4\xed\x82\x8b\xb5\x87\x1a\x2e\xe7\x9f\xa8\xfe\x21\x06\x04\xd7\x94\x78\xca\x49\xe4\x11\x2c\xf3\x81\x07\xcc\x82\x08\x41\xeb\xb9\xe7\xbc\xfe\x47\x15\x19\xb1\x05\xff\x26\x50\x64\x9e\x0b\x08\xa6\x38\x32\x76\xe8\x1e\xd4\x56\xcd\xb5\xbe\xa6\xe0\x41\xbf\x93\x7b\x70\x54\x8f\xb9\xc1\x7d\x75\x54\x38\x13\xee\x2a\x5d\x61\x2f\x54\x6a\x35\x8a\x6b\x7f\xb5\x3c\x71\x82\xde\xa0\xc5\x06\x40\x98\x36\xa1\x18\xdb\x6c\x14\x15\x54\x53\x3a\x0c\xf0\xb7\xe8\xf7\xf0\x6b\x17\x16\xab\x58\x9a\x11\x0c\x90\xe5\x5e\x02\x3f\x40\x3d\x3f\x51\x30\xa9\x41\x66\x46\x23\x77\x9c\xb1\xaf\x90\xf2\xbc\xf9\x78\xaa\x67\x39\x7f\xb8\x1d\xad\x08\x69\x17\x89\x1a\xe7\x2a\xfc\xe6\x21\x7a\xb8\x71\x19\x16\x34\x08\x59\xf2\x0e\xd9\xbe\x4d\xb6\xe9\xba\xcb\x61\x6c\x8d\xf8\xed\xe3\x66\x5e\xd7\xdd\xcd\xeb\x53\x1a\x40\x9f\x69\xa7\x65\x41\x39\x03\xca\xb7\x0d\x55\xca\x6d\x28\xfc\x98\x49\x6c\xd8\x83\x5c\xbb\xb7\x76\x7b\x50\xa3\xea\x7b\x9d\x5b\xd3\x5b\x89\x72\x1e\xe0\xbf\xec\xf3\x08\xef\x0a\xf9\xaf\x35\x92\xf3\x92\x6e\x9e\x84\x69\x92\x8e\xd6\x9e\x56\x66\x29\xc7\xc8\x57\x19\x49\xf2\xbb\x0a\xc0\xb4\x4f\xf9\xca\xdd\xd3\x9a\xa5\x2d\x38\x4b\x29\xc9\x4d\x29\x04\x8a\x89\x97\xe7\x61\x58\x13\xc7\x07\x44\x54\x44\x11\x96\x63\x44\xeb\xfb\x16\x9e\x8e\x8b\x69\x4e\x49\x9a\xd1\x21\xbc\xe2\x03\xef\xc9\xf5\x37\x94\x39\xe3\xa3\xfe\x08\xc8\x6a\xfe\x29\x4d\x15\x67\x3f\x5e\x73\x0b\xc8\x69\x08\x39\x51\xf6\xbb\x6e\x4d\xf6\xec\xb8\x78\x1e\xf7\xde\xd9\xe5\x7a\xd0\x1a\x29\x0b\x3a\x91\x9f\xde\x40\x9b\x95\x03\x8c\x25\x02\x9d\x35\x7b\xc9\xc2\xee\x41\x9c\x01\x96\xe5\x8a\x22\xe1\xf1\xed\xc1\xd1\xf6\xa7\x4a\xb0\xfd\xbe\x12\x7d\xbe\x3f\x51\xf5\x24\xd7\x7d\x0c\xe8\xd5\x04\xd8\x07\x53\xe7\xf3\xd2\x5c\xdb\x64\x99\xcd\xdd\x3c\x59\x10\xd0\x8a\xc6\x70\x61\xb2\xd7\x2d\xa8\xf4\xf9\x96\xb2\x24\x60\x30\x8f\xd4\xf4\x7e\x91\x16\x69\x51\x25\x1b\x44\x17\x14\x6a\xf0\x55\x3a\x93\xf8\x75\xf0\xb8\xd6\xfd\x7d\xbe\xe5\x3b\xf5\x3c\x93\x90\xc9\x45\x83\x90\x49\x91\x99\x15\x0b\xd8\x21\x6e\xd7\x2d\xa5\xc8\x75\xcb\xe5\xb8\xbd\x08\x22\x89\xfc\x4c\x91\x06\x5e\x53\x2a\x92\xd7\x26\xcf\xe8\x9a\x95\x1d\x8c\x66\x3c\xa0\xe9\xa8\xd2\xe7\x86\x5e\x89\x38\x44\x4c\x1f\x82\x0b\xed\xae\x8d\xd3\x55\x6a\x88\x22\xfc\x41\x99\x86\x75\x1e\x28\x1f\x90\xc7\x53\x7d\xaa\x38\x74\x48\x5b\x9d\x9a\x55\x2b\xee\xbc\x71\x4c\x2e\xcf\xc2\xb8\x32\x91\x9c\x39\x8d\x7b\xec\x7f\x21\x19\x94\x5f\xf4\x27\xb0\x12\x70\x8c\xff\x4c\xc1\xf2\xd3\xb2\x88\xa1\xe4\xad\x31\x1c\x1e\x35\xeb\x8b\xe5\xdc\x16\x5d\x13\x2e\xe3\x1b\x9c\x46\x8e\x1b\xbb\x42\x4d\x08\xfd\xa6\x8b\x4d\xc8\xe1\xd8\xac\xc2\x00\x12\x21\xe1\xa8\x62\x0b\x1f\x75\xa8\x97\xb1\x19\xdb\x8c\xcc\x9f\x66\x7c\xc3\x0b\xd2\xa8\x28\x2d\x58\x66\x00\x45\xf0\x97\xa6\x7a\xb5\x4b\x73\xed\x28\x21\x74\xec\x8c\x77\xab\xda\xd2\x43\xdc\xab\x8a\x7a\x7b\x42\x89\xa2\xe7\x51\x62\x8a\xcc\xb4\x28\x6a\xe0\xda\x6f\x2b\x45\xba\xdb\x0e\xb6\x37\x4e\xb3\xa2\x1c\x18\x21\x4f\xcb\x66\xa8\x59\x7d\x29\x18\x56\x5a\x46\xac\x76\x8c\x54\xff\x5c\xa0\xad\xa5\x99\x64\xcb\xff\x49\x79\x5c\xb1\xfd\x2b\x4f\x4e\x9b\x9c\x2c\xfa\xb1\xa9\xce\x36\x19\x3f\xe0\xd0\x3e\xa3\xd5\x46\xcf\xa8\x7e\xd8\x6a\x75\xb4\x8a\x8b\x19\xbe\x82\x15\x17\xf8\x8d\x17\x92\xce\xac\xc9\xed\x8c\x3f\xe2\xc1\x7b\xe7\x61\x22\x3d\x65\x3e\x17\x9a\x9e\x72\xd8\x2f\x42\xfe\x16\x45\x95\x5e\x74\x88\xdc\x06\x10\x41\x66\x7b\x65\x28\xa5\x04\x02\xf9\x25\x65\xdd\x02\xcf\x06\x6c\x9e\xe9\x39\x34\xdd\x08\x92\xd6\xce\x64\xb4\x87\xc9\xf5\xb1\x89\x02\xf3\xdc\x50\xd4\xbd\x73\x2a\xe7\x48\xbb\x55\x19\x43\x40\x6a\xc7\xfa\x86\x59\x89\x38\x74\x37\x90\x18\x56\xd3\x2c\xb7\x10\xa4\x75\x73\xb8\xea\x14\x11\x1d\x6f\x5f\xa4\x9c\x43\xe7\x00\x19\x5c\x93\x26\xc6\x0b\xed\x7e\x9a\x99\x35\x4e\xf3\x65\x90\xa9\x47\x07\x5a\x43\x3c\x0c\xad\xed\x45\xc9\x00\xf6\x39\xb2\x1f\xea\x22\x62\xd5\x0d\x40\x10\xb9\xa3\x0d\xc0\x31\xe4\xe3\xd7\x8a\xe8\xf7\xab\xbf\xf6\x6b\xb3\x6a\xa0\xf2\x40\x39\xe8\x41\x9c\x03\x6d\xe6\xab\xd4\x54\x42\xa0\xba\xdd\x60\x6b\xff\xb2\x68\x03\xe0\xb4\x10\xcb\xef\x96\xd3\xab\x6d\x32\xc9\x7b\xb9\x5d\x45\x62\xdb\x6a\xfd\xe6\xef\xf0\x00\xf5\x7b\x8a\xde\xf2\x3d\x05\xf0\x1d\x5b\x42\x7f\xec\xd6\x0e\xf6\x57\xe9\xdf\x22\x09\x00\xeb\xd9\xa9\xbe\x57\xf7\x9c\x8b\x0c\x05\x39\xb8\xa7\x5d\x38\xae\x52\xa6\x20\x6d\xc4\x87\xe1\x8f\xa2\x64\xc5\xe6\x45\x9a\x01\xbb\x22\xa4\xfe\x96\xf3\xd4\x7a\xa0\x9c\x37\xa6\x0b\x06\xf9\x94\xcc\xae\x84\x29\x09\x34\x48\xcb\xdc\x57\x54\x3c\xb1\xc1\x86\xda\x52\x0f\xe6\xd7\x7f\xf5\xd7\xc1\xc0\xc4\x99\xf3\xce\xc4\xab\x3d\x61\x0a\xe1\x94\x04\xf7\xcf\x3b\x11\xc3\xed\xd7\x71\xf8\xc5\x76\x3a\xa6\x78\x95\x30\xab\xd2\x5d\xf4\xcf\x55\x29\xf6\x73\x45\x33\x1d\xa7\x71\x54\x44\x21\x4a\x6d\x1e\x17\xd2\xdd\x95\xd1\xa1\x6f\x68\xf5\xa3\x24\x89\xf2\x21\x7e\x26\x46\x1b\xef\xab\xa9\x15\x6f\x7c\xa7\xd6\xf1\xb9\x97\x98\x41\x36\x8d\x3e\x25\x6b\x4a\x2b\x87\x90\x56\x2c\x14\xc5\x52\x1d\xc8\x06\x83\x18\x03\x75\xf9\x68\x85\xf6\x7b\xa0\x95\xb5\xce\x29\xef\x9a\x0f\x5c\xa6\x16\xad\xd8\x2c\x51\xf9\xfd\x39\x9d\xdf\x9f\x0b\xb4\xa0\x4c\xb2\xf6\xf0\xd1\x92\x0f\xf1\x51\x9e\x97\xf6\x09\x8a\x36\xce\x50\xc4\x4d\xcb\xb9\xcd\x83\x73\xf1\x1a\xad\x59\x1c\x12\x3f\xc7\x2f\xc5\x2d\x79\xc0\xbb\x98\x05\x31\x03\xdf\x7a\x7f\x47\x0b\xb8\xdd\xa7\x9e\x31\x56\xf0\xdb\x88\x2d\x58\x39\xd7\x10\x81\xf8\x0d\x65\x15\x98\x09\xfd\x2d\xce\x7d\xa7\x83\xef\x25\x15\x6f\x4e\xd3\x75\x5f\x3c\x84\xd2\x38\x4a\xb3\x96\x3a\xe5\x4f\x29\xcd\xc0\x53\xaa\x8a\x88\x7a\x96\x31\x35\x0b\x4a\xf1\xf8\x80\x7b\xdd\x54\x5c\x0d\xad\x59\x01\xcd\x43\x88\x69\xf4\xc3\x35\xe4\x92\xe5\x3c\x6a\x99\x70\x9a\xd9\x67\xe8\x06\xa3\x97\x7c\x1d\xc9\xaf\x60\x82\xe9\x23\xb0\x3e\xa1\xb9\x80\x2b\x64\xa5\x1b\xcc\x53\xcf\x4c\xbc\xf4\xe3\x1e\x6a\x07\xa3\x4a\x7d\x42\x0d\xd6\x76\x40\x21\x42\x70\x4c\xd5\xa5\xe0\xc7\xfc\x68\xa2\x80\xc4\x8f\x75\xb4\x95\xf6\xef\xd1\x23\x71\xe7\xc0\xe2\xfc\x61\x17\x98\xab\x67\x2d\x8f\xc7\x17\x70\x27\x02\xd5\x32\xbb\xab\x75\x1e\xce\x4c\x94\xc3\xdd\x4f\x1f\x62\xae\x55\x45\xd9\xd0\x2a\x46\x11\xd7\x19\xa2\x60\xfe\x94\xe3\xf6\x65\xb6\x80\xe7\x8a\x52\x95\x56\xd8\x93\x4d\xdf\xf5\x35\x59\x2f\x4a\x4c\x9c\xcf\x68\x0e\x2f\x03\xd7\x45\x83\x45\x89\x33\x5d\x7f\x08\xf6\x36\xcd\x3c\x56\x63\x83\xb0\x1a\x1b\x4e\xe7\xba\x1b\x55\xc5\xf8\x78\x08\x66\x90\x93\x7f\xdf\x9c\xd4\x9c\x91\xf6\x29\x42\xe3\xf3\x7b\xf1\x6b\x70\xf0\x3f\x46\x6e\xdf\x02\xaf\xa7\x0d\xaf\x34\x5a\xc4\xe2\xf4\x91\x75\x1d\xd5\x7d\x66\x8e\x63\x0d\xa3\x87\x4b\xa8\x73\xdd\x96\x76\xea\xa3\xff\x80\x00\xf2\x78\x92\x37\x03\x4f\xf6\xb8\xf4\x8f\x3a\xbe\x82\xe9\xd9\x30\x06\x8b\xde\x6b\x4a\x62\xa5\x08\x80\xe6\xef\xa9\x09\x22\x1f\x8a\xc4\x07\xd9\xbd\xad\x63\xf4\x92\xb7\x29\x55\x51\xe1\x32\xfd\x52\x20\x2e\x91\xa9\xf2\xeb\xc0\xf3\xd5\xbe\x1a\x28\xb8\xc2\x71\x45\x87\xea\xa7\x69\x21\x49\x10\x0f\x99\x10\x17\x70\x86\xe0\xdc\x40\x66\xf2\xa1\x42\x75\x99\x38\xed\x33\xa0\xd5\x65\x11\x4b\x73\x4e\x89\xb4\xc1\xe0\xd3\x8c\x6c\x16\x85\x26\xc1\xb9\x88\x10\x36\xbb\xee\x29\xd3\xfb\x88\x20\xa6\xa4\x9f\x30\xee\xb5\xe1\x32\x2f\x47\x57\x95\x3b\x4b\xa7\xba\xe2\x57\x5c\x08\xef\x1c\xbb\x6c\x06\xfd\x71\x7e\x53\xb3\x55\x4f\x8b\x42\xc9\xf9\x1f\xd7\x0b\x4a\xdf\x9b\x30\x4d\x72\x61\x06\x73\x47\x8d\x36\x83\x74\xd7\x9a\x72\x33\xb2\x9d\x44\x3b\xca\x19\x71\xe8\x96\x98\x8e\x50\xb1\x49\x9e\xa4\x7b\x8d\x6c\xe0\x67\xd4\xe4\x52\x1a\xb9\x22\xd2\xc6\x52\x55\xa8\x99\x74\x7b\xfa\x13\x18\xa3\xa1\x30\xf9\x57\x58\xa4\x48\xc4\x6e\x52\x3c\x47\x8f\x62\x23\x50\xbe\x14\xb3\xeb\x14\x3d\x24\x60\xe0\x86\xf1\x27\x4f\x6a\x38\xbf\x2a\xac\x61\xec\x70\x14\xbd\x43\x56\xdb\x0c\xd4\x4e\x9a\x99\x62\x47\x2f\x2c\xb4\x6d\x32\x30\x03\x21\xb1\x3a\x7d\xd3\x05\x2f\x64\xdc\xd0\x39\xb0\x5f\x2c\xa3\xf1\x58\x3a\x07\x8e\x66\xeb\x29\xb7\xbe\xa4\x4c\xc7\x99\x49\xd2\x56\x8d\xa6\xe1\x69\x78\xef\x4f\xad\xbd\x2a\x51\x28\x08\x8a\x03\xf5\x79\xb4\x1d\xc1\x2f\x64\xf0\x7a\xa0\x20\x30\x17\x02\x75\x2a\x3f\xb6\xde\x60\x7e\x90\x45\x0e\xbf\x25\xfd\x35\xfa\x7b\xdf\x60\x73\x02\xb1\x76\x5c\xd8\x51\xd7\x66\xc4\x2a\x96\x11\x3d\xdd\x17\x04\x96\x19\x25\x9a\xb7\x15\x78\x40\xec\xa6\x1e\x89\xd2\xda\x75\x1a\xa1\x61\xc1\x96\x58\x78\x02\xc7\x70\xd6\xf3\x1b\x77\x97\x8a\x32\x5b\x8e\x78\x84\x2f\x66\x7d\x4a\xb0\xe1\x64\xed\xa4\x5c\xb1\xbd\x67\x3d\xe3\xeb\x4b\x81\x62\xa9\xaa\xe6\x5a\xa1\x3d\xc4\x1f\x4c\x5a\x2f\x2d\xfa\x52\x7b\xfe\xb0\x13\xf4\xa8\x2e\x42\x0c\x41\xd4\xf0\xf8\x51\x22\xc3\xe0\xc0\xbd\x4b\xe7\x9f\x53\x87\x58\x5c\x5a\xac\x79\x6c\x21\x7a\x5f\x0a\x54\x63\xec\x2a\xf5\x0b\x11\x98\xaf\x63\x69\x02\x51\x73\x9d\x57\x30\x5a\x61\xb7\x71\xac\xf3\x7f\xc2\x39\x29\x05\x9c\x82\xc0\xdf\x98\x60\xf2\x2e\x66\x5e\x8d\x43\xae\x38\x4d\x06\x45\x34\xd2\x73\xc7\x5b\x81\x3f\xf7\x6f\xa9\x2a\x8b\xb9\x20\x69\x92\x3f\x5e\x5d\xbd\xc3\x48\x2d\x49\xb3\x99\xd1\xf8\x68\x9a\x9e\xd6\xab\x0d\xd3\x1d\x11\x2a\xa9\xbe\x8a\x65\x42\xb0\x00\xf0\xb4\xee\xd2\x13\x41\x3a\xb8\x15\x78\xa4\x38\x37\x68\xf8\x63\x71\xb7\x85\xe9\xe8\x1b\x25\x57\xb0\x42\x84\x1b\xd9\x94\x22\x54\xc7\xec\xd8\x91\x38\x85\x15\x4a\xbf\x59\xf8\xa2\xdb\xcb\x04\xf6\x0c\x1a\x45\x79\x1e\xa5\x89\xd0\x67\x44\x96\xd1\xd3\x46\x4f\x06\xcf\xea\x19\x75\x3a\x1a\x59\xb2\xb4\xaa\x2e\x1b\x47\xcc\x8e\x8e\xb2\xef\xdb\xb1\xee\xcb\x0a\xbb\x62\xb3\xb5\x34\xb1\x3b\x5b\x4e\xa0\x17\xb7\x0b\xc7\xe6\x55\x04\x22\xa4\xbc\x47\xe9\x6e\x8b\x68\xb0\xcf\xb9\x4f\xab\xda\x23\x8e\x92\x30\x8d\x13\x86\x69\xa3\xcd\xf3\x03\x3c\x19\x91\xe0\xf7\x5c\xd1\x56\x47\x1d\x98\xa7\x1b\x9c\x53\x96\xaa\x74\xc9\x44\x83\x61\x41\x65\x1a\x12\x20\xec\x67\xfc\x3e\xa8\x48\xe0\xa0\xfb\x69\x43\x9b\x78\xb1\x8d\x3b\x41\x0f\x1a\xfd\x07\xb6\x73\xe2\x37\xae\xa1\xd7\xcd\x4c\x52\xa5\x65\x68\xbd\x8b\xd6\x81\xca\x61\x30\xd8\xc4\x1e\x78\xd0\xf0\x84\x0f\xb5\xf3\xb2\xd7\xb3\x09\x8f\x91\xb0\x8f\x60\xce\xc8\xaf\x9b\x30\x00\x36\xb6\x61\x91\x31\x4e\x81\x35\x82\x02\xbf\xae\x36\x1a\x75\xce\xc3\xa1\x35\x63\x11\xa2\x64\x78\x4c\xe0\x6b\xd7\xef\x20\xb9\x40\xad\x75\xcd\x7b\x03\x9b\x3c\xb7\xc9\xc0\x66\xb3\x1e\x54\xf7\x4c\xc7\x03\x30\x66\xd7\x3d\x25\x8e\xf3\x3f\x0e\x06\xda\x04\x30\x1b\xe5\x33\xfe\xac\xfe\xb6\xe2\x67\x7c\xa8\x85\x8e\x4e\xa8\x92\xf9\x3f\xfe\x6c\x4e\x5f\x49\x0b\xe7\xf1\x67\xd6\x7d\xf7\x17\x02\x59\x68\xd9\xef\x22\x18\xf2\xd6\x27\x1a\x28\x90\x2f\xb4\xfb\xd6\xf0\xea\xc7\xef\x3e\xad\x58\xe8\xa7\x5d\x87\x6c\x54\x66\xe3\x21\x0f\xae\x1d\x46\xe2\x73\x2f\x39\x8c\x44\xcd\xe6\x99\x58\x59\xe0\x49\x8b\x84\xaf\xe7\xc0\xdd\x72\xcd\xdb\x41\xba\xf2\x3c\x30\xaf\x5a\x92\xbe\x56\xa1\x22\x68\xdc\x6b\xe8\xa4\xbc\xd0\x36\xdd\x74\x05\x6c\x65\x4d\xa0\x10\xd8\x51\x15\x66\x44\x03\xd1\x89\x7f\x24\x66\xc0\xed\x62\xa8\xa3\xdc\xa2\x34\x54\x98\x5d\xbe\xe4\xff\x78\x6a\xbd\x2f\x2e\x2d\xb6\xfb\x69\x99\xb0\x46\x97\x40\x3e\x69\xbd\x0b\x16\x54\x67\xa5\x21\x14\xc6\xab\x55\x04\x74\x00\x2b\xb9\xf1\x9b\x89\x34\x7f\x63\x13\x2e\x83\x13\xbd\xd3\xa3\x42\xf7\xad\xd3\xbf\x05\x79\xfa\xc1\xc4\x35\x99\x17\xff\x01\x51\x89\x95\xf4\xf4\x92\x63\x5b\xfb\x79\x55\x3f\x4a\xd0\x31\xab\x3e\x03\xeb\x07\x38\x00\xdc\xe5\xaf\xd3\xb3\x40\x5c\xbc\xa2\xac\x4b\x8f\xa2\xb8\x96\x86\x5c\x83\x02\x6e\xda\x4d\xa5\xf4\x45\x02\x7b\x59\x25\xb3\x97\x1f\xda\x51\x1a\xdb\x2c\x1f\x9a\x0c\xe3\x04\xd9\x7b\xf4\x74\xb5\x6d\x1d\xb2\x8f\x4b\xaa\x2d\x63\xf2\xdc\x94\xb1\xd8\xfb\xf2\x4e\xda\x50\x1e\xdb\x1b\x4d\xd5\x76\x38\x8c\x62\xe4\xaf\x20\x46\x63\x32\xce\xaf\x1b\x9d\x7d\xa2\xd4\xc3\x7f\x9c\xde\xbe\xab\x35\x37\x03\x2f\x8d\x16\x3e\xdf\x52\x39\xf9\x46\xa0\x47\x53\x35\xf1\xde\x22\x7f\xc6\x4f\x78\x76\xac\x13\x22\x0d\x87\xe4\xdf\x6a\x40\xdb\x99\x49\x6b\xff\xfc\xd6\x25\x2d\x95\x74\x97\x4e\x08\xdc\xa5\xa7\x28\x02\xa3\xe2\x67\x46\x39\x43\x39\xf0\xa8\x80\xb7\xe2\x7a\x07\x43\xc3\x9d\x2a\xe8\xec\x03\xf9\x00\x7f\x2f\xc2\xa1\xee\xfe\xfb\x56\xee\x69\x24\x1a\x28\xfb\x79\x6e\x80\xed\x31\xd3\x51\xea\xca\xc8\x2b\xb1\x57\xf6\x74\x7c\xaa\xbd\xd9\xa4\x59\x95\x99\x02\xcf\x1b\x49\xa3\xee\xbc\x9d\xd4\x76\x04\x97\x95\x5b\xcd\xaa\xc9\xf6\x78\x8c\xea\x97\x69\x07\x23\x96\x9d\x40\xca\x01\x58\xd4\x19\x4e\x99\xf8\x9d\x1a\xf7\x7e\x39\x50\xd4\xcf\xf3\x81\x42\xa7\x9c\xc7\x25\xf2\xa7\x35\x9e\x86\x45\x99\x25\xe9\x0a\xeb\xd2\x39\xde\xcd\x01\xf7\x7a\xda\xde\xa6\xca\xb2\xfa\x51\x62\xa4\x37\x81\xe4\xec\x94\x02\x0a\x9f\x9a\xd4\x5c\x47\x42\x9b\x15\x80\x86\x20\x30\xc1\x64\xc2\x11\x9b\xab\x47\x2a\x12\x25\x4f\xb9\xa3\x93\xf5\x1b\x67\xab\x7c\xd5\xa9\xf9\x7b\xd1\x5a\x44\x6b\x14\xd2\xd0\x28\x91\x00\xa8\xe6\x5d\xe3\x71\x9a\x48\x21\x28\x37\x51\xdf\x51\xe5\x71\x9f\x15\x99\x59\x33\x31\x82\xa4\x10\x5e\xfc\x32\x64\x2a\x82\x98\xf6\x2a\xa6\xdf\x78\x9c\x55\xe1\x18\xcf\x06\x2b\xf3\x5d\x9c\xf1\xe8\xc0\xbf\xad\x44\x93\xce\x4e\x8d\x05\x24\x56\x14\xab\x33\x7e\x52\x0d\xa5\x3e\xe1\xd5\x28\x34\xf9\x0d\xe7\x79\xf6\x05\x13\x2e\xe7\x69\xb2\x12\xc5\xb1\x7c\xb7\x28\x46\x6b\xcc\x2c\xfd\x2d\x4a\x93\xeb\x9e\xf5\x66\xb3\x2c\x42\xd3\x57\x14\xa9\x3c\x5a\xf0\x9c\x92\x15\x18\xda\x04\x00\xec\x97\x9d\x6e\x8a\x02\xa3\xdc\x6d\x72\x3b\x61\x9d\x68\x70\x00\xb6\xa8\x7f\xbe\xf5\x3a\xf5\xad\x11\x13\xfe\xf7\xc0\x73\xc2\x1e\xc1\x3e\x45\x11\xbd\x17\x79\x1b\xe5\x45\x9f\x79\x7a\x4a\x67\xe9\xc8\xdc\x62\x3b\xca\x32\x1b\xdb\x15\x23\x93\x07\x4c\x65\xf5\x84\xf6\xa8\x36\xf9\x88\x46\xe3\xd8\xce\xfa\x12\xe7\x0f\xe8\x98\xc4\x79\xf2\x34\x85\x0b\xd0\x6a\x34\x28\xfc\xf1\x75\xbf\x70\x8b\x32\xeb\x8a\x71\x2a\x4b\x6b\xd3\x7d\x12\x99\x6d\xd1\x32\x1c\x45\xb9\xeb\xfe\x70\x26\x8e\x52\x83\xbb\x6a\xfc\x46\x35\x61\x72\x6b\xb2\x7c\x97\x37\x5e\xc3\x2c\xd0\xf9\x81\x54\x41\x53\xd2\x0b\xda\x35\xe8\x5e\x72\xfd\xc4\x6f\x26\x2a\x7f\x38\xad\xd4\xb0\x56\x6c\xd2\x4b\x01\x98\x51\xf6\xea\x9e\xca\xe3\xaf\xcf\x91\x8d\x3c\x4f\x47\xf3\x77\x54\x83\xae\x30\xaf\x3e\xe1\xbb\xb5\xcc\x46\xc4\x52\xbf\xa7\x35\x9b\xc0\xdd\x11\xb1\x72\x8f\xd9\x79\x80\x10\x8a\x33\x9e\xed\xe3\x10\xb6\x67\x3a\x5a\xba\xff\xaa\xc6\x10\xff\x30\xf0\x2c\xd5\x33\x81\xb2\xac\xc2\x8c\x50\x9e\x1d\xdd\x20\x81\x8b\xd3\x95\x62\x29\xec\x58\xf7\x59\x49\x61\xc2\x22\x0a\x59\x55\x43\xd4\xc4\xaa\x0f\x41\x73\xe7\x7a\xa0\x3a\xcc\xa7\x26\x7f\x4f\xd5\x3d\x69\x36\x30\x49\xf4\x1a\x15\x89\xbb\xab\x1b\x85\x6f\x82\x38\x14\xaa\xfc\x2d\xe4\x37\x32\xee\x99\xf1\x26\xd9\x77\x69\xad\x23\x97\x7e\x62\xdd\xeb\x03\xd7\x84\xad\x2f\xd6\x0e\x50\x93\x0f\x1f\xa7\x1f\xe3\x24\x20\xaa\x47\x8e\x6e\xf7\xad\x89\x82\xae\xb3\x28\x35\x92\x96\x53\x35\x4d\x47\x45\xa0\x61\xf4\x0c\x66\x84\xdf\xa4\x4b\xc6\x13\xc1\x05\x30\x68\x11\xf5\x18\xca\xfa\xa3\x81\x37\xb7\x61\x1f\x69\xfe\x76\x4d\xa4\x3b\xa5\xb2\x15\x3b\x1a\xc7\xe9\x1a\xb7\xce\xb8\x38\xa3\x0b\x97\x42\x6d\x7b\x42\xb5\x34\xd7\xee\xda\x61\x94\xf4\x66\x7d\x7d\xf2\x0e\xad\x1c\x2c\x29\xa8\x5b\xb8\x9a\xc1\xf7\x95\x2e\xaa\xb0\x9b\x99\x71\xd4\x8b\xd7\xa8\x06\xc0\x7a\xf9\x20\xf0\xb6\x25\x4c\x96\x94\xd3\x8c\x6e\x15\xff\x2b\x75\x32\xf5\xd2\xb0\x48\x33\x82\x76\x8a\x19\x1f\x4a\x1e\x87\xa1\xf1\xde\xd3\x0c\xa3\x73\x71\xc0\x71\xe0\x19\x9f\xc1\x0d\x12\x25\x59\x5a\x94\xe2\x14\x8e\x73\xe0\x11\x94\xcb\x18\xad\xfc\x2d\x8d\x2e\x1c\xe3\x6d\x41\x96\x0c\x45\x15\x2d\xab\x56\x95\x9b\x07\x0f\x7e\x92\x7e\x22\x73\xd9\xf1\x4b\x78\xce\x49\xa1\x15\xf1\xf8\x32\x9e\x10\x32\x98\x2b\x58\x1f\x48\x61\x2e\x05\xad\xdf\x9a\x77\x32\xae\xd5\x4f\xc2\x6f\x07\x2c\x83\x21\xca\x64\xcc\x83\x33\xe7\x14\x22\x8d\xe0\x3b\xaa\x47\x83\xb5\xce\xf2\x98\x80\xc8\xee\xa6\x18\x8a\xbc\x68\x2f\xba\x93\x38\xc5\xcf\x53\xa0\x45\x73\xb3\x85\x8c\x9e\x3f\x2a\xd0\x27\xd5\x79\x1c\x26\xce\xeb\xd6\x0b\xb1\x7d\x6d\xa2\xa6\xd9\x97\x89\xd2\x0e\x99\xc3\x1f\x28\x35\xf2\x51\x99\x99\xdc\xac\xc2\x88\x0a\x95\x08\x33\x7c\xf9\x4d\xe0\x2b\xcc\x41\x19\xf7\x41\x56\x85\x04\x00\xf3\x05\xf9\x0d\x3d\x4d\x7c\x01\xe7\xe7\xfc\x66\x6a\x2c\x73\x60\xa1\x1d\x93\xb1\xed\x80\xd5\x17\xf1\x48\xf6\x76\xf4\xa8\x65\xc6\x1b\xc2\xcf\x4c\x09\xa0\x7d\xa6\x9d\x17\xa6\x4c\xc2\x61\xbc\x86\x0a\x10\xa9\xc6\x77\x75\x1b\x24\xf0\x35\xcb\x71\x25\x4e\x36\x8e\x4d\x68\x7b\x98\xc0\xb2\x25\x66\xa0\x3a\xc7\x9b\xaa\x75\xb4\x85\x45\x09\xe0\xd1\x7d\x25\xe7\xc3\xf2\xc5\x70\x8a\x7e\x61\x8b\x70\xfc\x5b\x67\xb6\x2f\xba\xea\xb0\x5d\x58\x78\xc2\xb7\x19\x5a\xeb\xbe\xae\xd8\xc2\x32\xc3\xe0\xeb\x27\x81\x62\xa6\xdf\xd1\x1a\x4d\xef\x07\x6a\x9a\xfa\x36\x7e\x28\x5a\x09\x94\xad\x6d\x6d\x50\xf3\x51\x78\x7e\x6a\xde\xf7\xc3\xc0\x27\x02\x7f\x08\x19\x6c\x9c\x15\x57\x10\x0c\xfd\x7f\x70\x5e\x70\x81\x07\x71\xb1\x55\x64\x9a\xf6\x66\x6a\x3e\xda\xd5\xbf\xc6\xd7\xdf\x0a\x54\x8b\x63\x3a\x25\x3e\xfc\x62\xdb\xc9\xc7\xd1\xd1\xcf\x1e\x56\x4a\x44\xe8\xd8\x14\xce\xb8\xba\x61\xab\x26\xcf\xab\xaf\xb6\x11\x06\xce\x35\xc6\x86\x50\x39\x1a\x8c\x7c\xf3\x74\x64\x8b\x68\x24\xc3\x3b\xd7\x89\x5b\x9a\x73\x9d\xb8\xe9\xbe\xfb\x21\xc7\x42\xf3\xf3\x58\xcc\xb7\x44\x59\xdf\x21\x7c\xca\x28\xb1\x86\x16\x2b\x02\xf9\x3d\x34\x1f\x75\xe7\x01\x37\x7e\x97\xb3\x34\x4f\x46\x45\xd7\xb4\x94\x2a\x83\xb6\x69\xba\xa0\x3d\x0c\xe3\x68\xd4\xa5\x1a\xb2\xfa\xe9\xec\x97\x4c\x21\x54\xbc\x93\x15\x63\x39\x8e\xff\x3e\x7d\xb3\x68\xef\xfb\x2e\xdb\x59\x02\x0c\x48\xf0\x50\x9f\x75\x53\x61\xe8\xef\xc3\x71\x8a\xab\xc2\xc0\x0f\x6c\x3f\xa4\xe8\xe6\x8c\x65\xaa\xec\x49\x58\x34\xca\xe1\x6a\x17\xe4\xc0\x90\xa8\x5c\x99\x28\x9d\x7a\x38\x6f\x21\x6c\x1e\xa5\xb8\x8c\xaa\xe2\x0d\xc4\x27\xd4\xe7\x7f\xa1\x21\x89\x9b\x5a\x4d\xec\x5d\x2c\x5e\x81\x0b\x2a\xa1\x90\x6b\xd8\x0f\xe2\x1e\xe6\x05\xdd\xbf\x1e\x78\x07\x85\x7b\x35\x4c\xcf\x75\x8a\xe7\xa2\x03\xbd\xfd\xe4\x7c\x69\xfe\x70\x9b\x1a\xd6\x94\x65\x6e\x51\xf8\xde\x3a\x1a\xf8\x33\x27\x0f\x4d\xb6\x86\x40\x27\x52\xa8\xd5\x37\x71\x33\x54\xf9\xb5\x9e\xd6\x76\x4c\xd3\x0d\xc1\x03\x0b\xed\x6e\x5a\x14\xde\x14\x45\xcc\x42\x5b\x4e\x5f\xf7\x8c\x32\xe8\x7c\x53\xf9\x86\xf6\xd2\x10\x32\xf0\x2e\xd9\xae\x8e\x1f\x87\x16\xbc\xa4\xfa\xba\xd6\x64\x09\x8d\x30\x5d\x75\x76\x2b\x50\xe3\x93\x53\x48\x3f\x44\xa2\xa1\x89\xfe\x67\x46\x36\xe9\x39\x11\x60\xb1\xe6\x55\x0a\xe0\x9b\x4e\x95\xa6\x6b\xd6\x66\xb4\x10\xcd\x39\x35\x26\xbe\xa1\xa5\xcd\x3f\x56\x21\xb7\x67\xed\xd8\x66\x3b\xd5\xb2\x65\x04\x37\xda\x11\x3f\xc7\x32\xc2\x96\x3b\xad\x84\xe0\xb6\x70\xbe\x20\x8f\xb8\xdb\x04\x5c\xec\xa7\xd9\xaa\xc9\xb8\xa9\x86\xbc\xe7\x9b\xb4\xe7\xf9\x75\xf0\x49\x2f\x06\x9f\xa5\xa6\x17\x1a\x52\xfb\x23\xe6\x07\x0e\x9a\x47\x94\x0c\x0e\x08\xf6\x00\x56\xec\xa0\xd1\x36\xff\x1b\x48\x9b\xe3\xe4\xbf\x55\xeb\x1f\xac\xbb\x4e\x1c\xdb\x1b\x4b\xbc\x73\x5e\x49\x9e\x50\x75\x7e\xe2\x81\x20\x62\x42\x83\x16\x1f\x3b\xcf\x60\xa3\x89\x0d\x8d\x9b\x65\xd9\xa4\x9f\xc6\x70\x62\x43\xec\xb9\xa8\x9d\x85\x51\x5e\xe3\x87\x7e\x55\xf7\x51\x4d\x66\xfb\x65\x5c\x25\x77\x2e\x5f\x7d\x2f\x50\xce\xff\xef\xa8\x09\xcd\x7b\xd8\x8a\xfc\x1f\xb4\x64\xa5\x25\xb9\x45\x9f\x5a\x61\xc2\xce\xaf\x1f\xaa\x42\x95\xa7\x65\x31\xb4\x59\x42\xd5\xb8\x24\x0b\xd5\x1f\xba\x2d\xed\xa9\xea\xe4\x11\xed\x14\xf8\x8a\xa2\xe4\x7e\x48\xcd\x52\x45\xd2\x1b\xaf\x6b\xd3\x8b\x72\x33\x1e\xa7\x51\x52\xf0\x38\xc5\x41\xeb\x5d\x4a\x7e\xcc\xb5\x8a\x87\x65\x16\xb7\x94\x76\x20\xe7\x49\x72\xe4\xab\x1a\x07\x1e\x46\xbb\x54\x82\x86\xc4\x12\x67\x33\xc1\x5d\x14\x8d\xa4\x8a\x92\x42\x1d\xa9\x42\x0e\x7e\xe6\x71\x25\xeb\x78\x5c\x31\xdf\xb2\xb2\xfa\xec\x47\x69\x1f\x68\x6f\x51\x3c\xf1\x2d\x0a\xdf\xe2\x6e\x41\xb0\x18\x24\xec\xdf\x9c\x28\xf8\xcb\x6d\x0a\x45\x62\x5b\xd9\xf2\xff\x08\x57\xc4\x1f\x45\x01\x5f\x20\xd6\x4d\x5b\xbe\x9b\xd9\x55\xab\x58\x39\x6c\xc9\x11\xa8\x85\x7e\x62\xe2\x81\x31\x36\xe3\x74\xc7\x93\x76\xf0\xd3\x45\x00\x42\xce\x49\x13\x8f\xd2\xbc\x20\xc7\x4e\xa4\xe8\x4f\x76\xfc\x11\x73\x8a\xac\xfc\xd1\xb9\x3b\x3f\xf1\x8a\x49\xe7\xf4\x78\xc2\xc3\xce\xbb\xb0\x20\x94\x19\x91\xf8\x97\xd3\x75\x4a\xe6\xa6\xf4\xbc\x63\x6b\x32\x6a\xa6\xd1\x73\x76\x58\x41\xcf\x7b\xbf\xf8\x10\x99\x8a\x30\x1d\xf1\x1f\x31\x34\x92\x7e\x9a\xc0\x24\x7d\x04\x49\x57\x6c\xb6\x3a\xb4\xf1\x88\xf1\xa4\x87\x44\x11\x27\xf0\x98\xfb\xf7\x26\x4a\x9e\x02\x35\x24\xfe\xc3\x5b\x13\x3d\xa9\xbd\xe0\xa0\xd1\x85\x49\x06\x51\x37\x46\xd0\x40\x86\xf6\x17\xf4\x79\xfc\x5a\xb1\x47\xa3\xd1\x68\xa6\xa5\xac\x5d\xaa\x9b\x8c\x39\xfd\x59\x1d\xac\xb5\x6f\x41\x3e\xb4\x59\xb6\xf6\x70\xdb\xcb\x06\x8c\x74\x3e\xb6\x61\xd4\xe7\xb1\x17\xf2\x87\x9d\xeb\x3e\x17\xd9\xa9\x76\x6b\x62\xcb\x22\x33\xbc\xb1\xf0\x58\xdf\x52\x4c\x8f\x69\x8a\x1e\x49\x69\x0b\xe3\x80\x51\x9a\xaa\xba\x7f\xc7\x11\x91\xca\xc4\xac\x9a\xcc\x26\x44\x64\x77\xc5\x15\xb8\x74\xa2\xc7\xf1\xb8\xa3\x91\x84\x51\xcf\xee\xae\x6e\x35\x92\xda\x7d\x55\x26\xb2\xb5\xa1\xb4\xe2\x1f\x59\xaf\xb6\x96\xe3\xc5\x55\x4b\x82\x47\xcb\x48\x34\x70\x80\x3f\x46\xd3\x11\x6e\x66\x28\x95\xa9\x7e\x9a\x0d\xd2\xa2\xb0\x2c\xcf\xe0\xe4\x29\xaa\x8f\x11\x79\x8a\xed\x3d\xec\xaa\x3a\x2f\xd7\x72\x0a\x4c\x0e\x25\x51\xed\x7b\x41\x49\x4c\xeb\x7e\x2f\xcd\x3d\xae\xf4\x27\xee\x05\xde\xdf\x06\x7b\x05\x83\xad\x4b\x13\xa5\x2a\x31\xab\xc4\x35\xde\x52\x3a\x91\xc7\x26\xca\x25\xe9\x9e\x76\x49\x62\x56\x91\x43\xd2\x57\x51\xa6\xe6\x7d\xed\x82\xf5\xd2\x1c\x8f\x29\xef\x51\x92\x28\x13\x07\x17\x13\xd2\x98\x3c\xe2\x38\xdf\x16\xeb\x21\x55\xb5\x9d\x6f\x02\xba\x80\x1d\x22\xc8\x75\x4c\xb3\xde\x57\xe2\x1c\x0c\x53\x14\x7e\xc4\x27\xdd\x81\x39\xc8\x4c\xd2\x1b\x57\x6b\xa2\xc8\x67\xd5\xb8\xf1\x6d\x5c\x90\x2b\x50\x1c\x00\xf6\xbe\x06\x3b\xd7\xc6\x5b\x14\xe1\xeb\x7d\x7a\xa7\x22\xb5\xd9\x30\xd5\x6d\x9b\xb8\x9f\xd9\x3c\x4c\x5b\x3e\x6d\xc0\x0d\x12\x88\x60\x13\xe6\x26\x4c\xb3\x84\xbc\x1b\x9c\x6c\xf4\xc7\x4a\x6e\xfc\x63\x85\x9f\xb0\xaf\xda\xb0\x24\xfd\xe3\xc7\xfc\xb9\xf7\x11\x6e\x25\xe7\x1c\xd4\x3c\x60\xc8\x04\x2d\x06\xd6\x64\xe5\xa0\x82\xa8\xff\xb3\x40\x25\x99\x5c\xbb\x0a\x30\xc4\x5b\x28\xb3\xc2\x00\x82\xed\x7f\xad\x04\xe5\xdf\xad\xc9\x56\xc6\x86\x27\x9d\x12\x76\x75\x85\xa4\x4a\xcb\xad\xa0\x56\x5a\x27\x45\xfe\x58\xed\x90\x50\xa2\x05\x4f\xae\x03\x77\x82\x31\xca\x46\xa0\xc8\x06\x47\x01\x83\xe1\xff\x32\x51\x7d\xe9\x1b\xca\xfe\xea\xda\xc4\xcf\x46\xfe\xa9\x72\x8f\xda\x8d\xa2\x04\x19\x69\xab\xa3\xa9\xe6\xaf\x55\xd9\x61\x75\xc3\x10\x35\xc0\xb8\xe7\xd7\x0d\xb9\x70\x3b\x2f\xc7\xe3\x8c\x18\xab\x2d\x3f\x4c\xbe\xa8\xee\xd2\xc5\x89\x57\x06\x2b\xb2\x28\x14\x3e\x2c\xae\x77\x57\xc7\x1f\x8a\xbb\xd6\x3f\xa1\x7c\x9d\x56\xa2\x9c\xc2\x7c\x1d\xe0\xe5\xfa\xd5\xef\x6e\x6f\x1e\x1c\x58\x68\x1f\x3c\x78\x68\x37\x6d\x50\x24\xb3\x97\x54\x02\xf5\x23\x8a\x0e\xfc\xff\x07\x35\xea\x18\xdd\x55\x2d\x87\x02\x9a\xc2\x49\x45\xb2\x3f\xe6\x48\xf6\x44\x37\x8e\xd7\x88\xb9\x82\x4f\xbb\xa8\x3a\x02\xe0\xc5\x21\x3c\x9c\x9f\x3c\xeb\x6e\x2b\x54\xb3\x49\x92\x64\xa7\xcf\x4a\x2f\xd1\x22\xe5\xd7\x2a\xaa\xdf\xd1\x00\x9c\xeb\x78\xb6\x88\x2c\x3f\x53\x56\xa4\x43\x93\xf5\x76\xf9\x11\xcf\x65\xfc\x91\x5b\xf2\x4e\xb6\xf2\xab\x74\xe5\x2e\x8b\xab\x96\x9a\xd8\x6e\x57\x17\xc1\x8b\x7f\x2a\x1e\xbf\xf2\x4a\xdb\x14\xbf\x5c\x3c\x9c\x1d\xf7\x94\xc2\xdd\x44\x3d\x92\xaa\xf5\xba\x08\xa0\x65\xa0\x13\x0b\x46\xa1\x98\xaa\x78\xbd\x99\xbb\x41\x4d\x46\x75\xda\xce\x44\x89\x59\x2e\xf2\x83\xd0\x2e\x72\xad\x75\xaf\xd8\xfa\x97\x4d\x92\x9e\x79\x61\x06\x03\x50\x76\xe8\x19\x0b\x74\xc5\x23\x54\xaf\x29\xa7\xe5\xb3\xf5\x89\x72\x6e\x76\xf9\xf6\x1c\xc7\x06\x34\xa1\x71\x3d\xc8\x23\x58\x03\x8f\xf9\x6f\x28\x16\x90\x54\xfc\x58\xa3\xce\xa6\x83\xe4\xc2\x42\xbb\x28\x47\x5d\x2f\x21\xe3\x64\xab\x5c\x5f\xe4\xa7\x8d\xc0\x9c\x71\x96\x56\xb7\x9b\x11\x24\xd8\xff\x98\xc9\xf2\xeb\xa9\xec\x75\xfe\x70\xbb\x9f\xb1\xbc\x27\x67\x86\xd2\xbe\xf7\x24\xa0\x53\x4d\x26\xb1\xfd\x38\x1a\x0c\x45\x93\xad\x49\xe3\x66\xfa\x6f\x0e\xb1\x34\x8e\x6a\x45\x1d\x57\x42\x22\xc7\x1f\x0a\x5a\x30\x89\x89\xd7\xf2\x28\x57\x48\x02\x16\xb4\x12\xbf\x1b\x65\x19\x95\x66\xcb\x8f\x57\x47\x0b\xaa\x2a\x74\x7e\x10\x5d\xdf\xc7\xa1\x8c\x59\x12\xbb\x53\x21\xba\x9c\x57\x7b\xe2\x34\x52\x0b\xe9\x8a\xa8\x13\xfe\xeb\xb4\x9b\xe9\x0f\x9e\x7b\xba\xa3\x7a\xc3\xd7\x51\xf0\x31\x82\x22\xd0\xda\xfe\x13\x2f\x31\xff\x06\x15\x18\xf8\x29\x1b\x2e\x68\x44\x23\xc2\x2b\xb5\xfc\xda\xc5\x09\x2a\x36\x52\x6a\x53\xa7\x71\x0f\xa5\x14\x16\xe5\x5d\xea\x43\x62\xbf\xee\xa3\x6c\x0b\x85\x1a\x98\xfa\x1a\xa1\x81\x35\xf3\x20\xf0\x62\x54\xb7\x9b\x30\x5a\x61\x19\x17\x65\x26\x0c\x6e\x99\x6f\x78\xdc\xec\xb4\xa8\x25\x69\x35\x8d\xd3\x32\x97\x4e\xa1\x74\x38\x94\xae\xe0\xf4\xb0\xbe\x2a\x14\xf2\x70\x18\x8d\x46\x56\x48\x8c\x68\xc9\x32\x95\x80\xdf\x28\xc9\xb7\x6e\x94\x16\x36\x1c\x26\x69\x9c\x0e\x20\x23\x23\xa5\x52\x4b\x89\xe8\x35\x42\x2f\x73\x3b\x36\x99\x9c\x2b\x42\x8f\xf4\x63\xfa\x0b\x2a\x99\xc9\x2c\x89\x3d\xce\xf8\x2d\x7c\x61\xa2\xf1\x03\x8a\xa1\x7a\xbb\xa1\xfa\x69\xe7\x65\x36\xb0\xd9\xdf\x41\xd9\x91\x32\x05\x9a\xb5\xf1\x1a\x9a\x38\xc8\xdb\xee\x4d\x34\xbe\xc1\x21\xeb\xde\xff\xc5\x8e\x5f\x0d\xbb\xd7\x6b\x8a\xdf\xcf\x68\xfb\xa5\xc4\x92\x58\xe6\x1e\xed\x2e\xa2\x70\xfd\x3c\x94\x74\x0d\xa3\x2a\xac\x88\xc6\x48\xcb\xf9\x7f\x7c\x1c\x28\x13\x6e\x76\x64\xc0\x9b\x73\x08\x59\x48\x1d\xce\x29\x75\xbd\xc2\x66\xa3\x9d\xd5\x61\x01\x0e\x09\x0b\xfc\x6a\xb3\x7a\xc7\xad\x71\xad\x28\x76\xa3\x93\xde\x8c\xd2\xd0\xce\x52\xd7\xab\x46\x35\x0b\x31\x23\x7e\xad\xca\x88\x30\xb3\xe4\x1d\x8f\x51\x31\x16\x3e\xac\xc5\xf9\xb5\x3a\x83\xc6\x65\xbf\x6f\x33\x78\x8b\xa1\x98\x42\x0a\xa7\xbd\x0c\xa4\x53\xd0\x00\x1f\xc8\xc3\x61\x1a\x1b\xa4\x30\xd8\x49\x18\xa2\xf2\x6b\x57\x3a\x8d\x4d\x21\x6a\x25\xf8\xbd\x28\x28\x30\xd6\xda\xb7\x5e\x93\x2a\x6f\x00\x74\xc5\xe4\xbe\x33\xa3\x54\x01\xff\x57\x65\x37\x82\x46\xa9\x88\x95\xf8\xee\x6a\x6c\x5f\x2d\x73\x9c\x12\xb8\xe7\x1f\x2b\xa3\xb5\x8f\x9b\x64\x5d\xfa\x26\x09\xd7\x94\xab\xe4\x8e\x75\x0f\x4a\xde\x31\x05\xc1\x9f\x3f\xdc\x36\x03\x9b\xf4\x0c\x6f\x70\xc0\x21\x77\x74\x3c\x75\x61\xc7\xba\x1f\xf4\x9b\x7e\x95\xc4\xcd\x7a\xb1\xb6\xa3\x93\x9a\xee\xa9\xb7\x81\x47\x12\x8e\x3a\xe8\x86\x12\x27\x18\x45\x09\x3b\x97\x48\xbf\x48\x37\x8f\x14\xd8\xd2\xe6\xc5\x2f\x28\xc1\xd9\xdd\xeb\xad\xdf\x9a\x77\x8c\x0f\x6a\x25\x61\xa9\xfd\x5a\x47\x31\xd3\x30\x9a\x44\x3d\x74\x0a\x9d\x70\x51\x0c\xf0\xd5\xc4\xec\xba\x77\x93\xfb\x9f\x7e\x91\x18\x3d\x80\x83\x9d\x0c\x88\x34\x23\x3a\x1f\xd4\xbc\xa2\x83\xf5\xdf\x3c\xdb\x51\x2a\xbc\xad\x75\xdf\xbb\x6f\xad\x7b\xc9\xf9\x4d\x25\x34\xb0\x03\x18\x83\xad\xd7\x27\xad\xdf\xfe\x3c\x1f\xb3\xe7\xb4\x99\xd8\x6d\x4c\xb4\xe8\x39\xce\x3d\x8b\xc5\x03\xf5\xa8\x6b\x9a\x5f\x0a\x9c\x08\x92\xfb\x33\x6a\x10\x59\xd8\x24\xa7\x7a\xb2\xfa\xf5\x18\x4f\x80\x36\xc1\xaf\xd5\xf8\xad\xb0\xa3\x71\x9a\x99\x6c\x0d\x4b\x0f\x89\xeb\x15\xda\x14\x6c\xb8\x47\x7f\x88\xca\xe5\xa4\xd2\x01\xac\x56\x45\x32\xb0\x99\xed\x11\xa0\x05\x23\xb6\xff\x0a\x55\x30\xbf\xa1\xb5\x88\xaa\x91\xe5\xce\xf9\x8d\x8a\x5d\x85\x2d\x0a\x33\x32\x49\x11\xcd\xf8\xe6\xf1\x0d\x5a\x2a\x38\x5d\x2f\x4c\x54\xea\xf4\xd1\xc4\x63\xd4\xf2\xe1\x1a\xed\x7e\x56\x0a\xa7\x3d\x2d\xaa\xe1\x35\xb7\xe3\x5e\x19\x16\xd2\xd4\x47\xe6\xcc\xe2\x3f\x3a\x48\x8b\x20\xb3\x04\xe9\xb4\xdf\xcf\x87\x69\x8a\x2c\x17\x1f\xfb\xae\xfa\x8a\x77\x1b\x51\xa9\xdd\x38\x0d\x97\x41\x56\x71\x8d\xbd\x23\x73\xee\xb4\x52\x6c\x8e\xb1\x0d\x0b\x53\xa4\x99\x82\x3c\xd5\xb8\xb8\x17\x1d\x93\x2e\xb3\xb1\x4d\x3c\x2a\x12\x3b\xf5\x8a\xa2\x0f\x5c\x69\x72\xb1\xfd\x74\xbb\x6f\xa2\x62\xa8\x66\x71\xef\x05\xca\xbb\xe3\xbd\x5a\x46\x9b\x94\xec\x92\x81\x09\xfe\x09\x45\x9d\xd8\x50\x2a\xc6\xb7\x14\x40\x1a\xee\x2e\x0b\xa2\x24\x01\x51\x66\x7e\xdd\xd4\xab\x58\x8d\x8a\x61\x2f\xb3\xab\x0a\x88\xcc\x8d\x15\xe1\x9e\xc8\xa4\xaf\x6f\xa2\x98\xe1\xe9\xd8\x0b\x3b\x3b\x8a\x88\x7c\x47\x35\x79\x9b\x54\x9f\x5e\x68\x9b\xcc\xb2\x9d\x22\xc2\xce\xdb\x81\x9f\x63\xff\x94\xd6\xb5\xd8\x9b\x4f\x73\xae\x16\xdb\x71\x94\x38\xc9\x70\x14\x56\x68\x94\xf1\xeb\xa9\x88\xfa\x99\x76\x5c\x7a\x35\x0f\x14\xc3\xaf\xab\xc2\xf8\xf5\x46\x65\x2a\x33\x1a\x4b\xf9\xda\xa4\xd6\x33\x65\x03\xfd\x4f\x0e\xcd\x2a\x55\x7b\xee\x7e\xf1\x1b\xfa\x79\x58\xc9\xdf\x0d\x7c\xba\xf1\x5d\xa5\x8a\x9c\xe6\xe3\xcc\x22\xe8\x03\x91\x08\xb2\x1c\xbf\xee\xd4\x5c\x64\x73\x8b\x29\x35\x02\x38\x18\x62\xce\x41\xbe\x8a\x3c\x72\x18\x6f\x1f\x38\x4b\xb6\xde\xa3\x24\x3f\x07\x37\xcf\xe9\x10\x54\x3f\x18\x91\xf3\xfa\x44\x71\x7b\x77\x74\x7c\x48\xef\xc7\x6b\x7b\x28\xa8\x8a\xe6\x68\x8d\xcb\x4f\xc1\x11\xf9\x03\x9e\x08\x32\xdc\x2b\xb4\xc1\x70\x08\xdc\x0c\xbc\xdf\x19\x66\x69\x8e\xe5\xe3\x4d\x81\xce\x40\xe2\x88\x17\xf1\x4a\x94\xa5\x49\x55\x7c\xef\x6a\x1d\x99\xdb\x7a\x07\xfd\x40\x9e\x46\xd1\xa5\xcb\x64\x8a\xac\x86\xde\x41\x54\x56\x6e\x8d\xd2\xac\xbb\xaa\x4c\xc4\x46\x65\x1e\xe2\xe9\xbe\xec\x2d\xa8\xd4\x0a\x9e\x42\x4a\x57\x69\x74\x12\x85\xc8\x51\x85\x31\xe3\xe7\x24\x1b\x0a\x3e\x3a\xb2\xa3\xd4\xe9\xa1\xe3\x0e\xfc\x40\xdd\x8d\x69\x64\x13\x61\xe5\xa3\x2c\x2f\xd0\xe7\x13\x6f\x6a\xa7\x79\xfb\xdf\x02\x76\x88\xbb\xcc\x7a\x3d\xb8\xe6\x0d\x6d\x33\x34\x1e\xa7\x39\x43\x87\x9c\xa3\x70\x75\x7c\x3a\xb0\xa6\x53\x4e\x3e\x11\xb4\x5e\x5a\x74\xc0\x4d\x35\x52\xc8\xca\x24\x1c\x46\xf0\xf8\x5f\x74\x0c\x79\x35\x0e\xc7\x5a\x13\xa7\xfd\xa6\x5a\x23\x2d\x8b\x3c\xea\xd9\x56\x4d\xcb\xe0\xc0\x82\xc3\xb0\xd5\x62\x5a\x11\x61\x24\x8d\x96\xce\xd6\x25\xb5\x1f\x96\xa3\x5e\x62\xd7\x74\xbd\xcb\xd4\x37\x7e\x33\xb5\xcb\x7f\xa3\x9d\xdb\xb8\x97\x8e\x5a\xfe\x08\x07\x97\x59\x32\x8e\xe9\x50\x32\xdf\x2e\x48\x3e\x71\x46\x09\x9a\x9e\x47\x67\x0e\x07\x39\x34\x41\x04\x30\xba\xcf\x1f\x3b\x36\xdb\xa7\xa4\x9b\x6e\x2a\xe9\xb2\x0d\x6f\x6e\x72\xec\xdf\x47\x62\x23\xc3\x11\x05\xdc\xc1\x94\x08\xff\x81\x9f\xa8\x83\xa0\x29\x05\xa6\x89\xcf\x6c\x1e\x04\x8a\x3b\x71\x7f\xe2\xc9\x2a\x9b\xca\x13\xe0\x89\xf5\xc7\x6b\x13\xd7\x99\x29\xb6\x93\x88\xc7\x2b\x30\xe5\x19\x57\xe8\xe6\xe3\x8c\x2c\x09\x51\xf0\xa1\x3a\x67\xb2\x24\xbf\x99\x5a\xbb\xfb\xf7\xb7\x73\x9a\xab\xd1\xc9\xed\xb2\x28\x27\xd1\xf8\x5e\x1d\x87\xbc\xd7\xf5\xe1\xb2\xb8\x55\xef\xcc\x57\xff\x4c\xda\x5c\x7e\x6e\x5c\x26\xa6\x17\x89\x88\x38\x83\x2d\x14\x9c\xe0\xa8\xca\x35\x46\xd6\x40\xdc\xbd\x06\xfb\xe6\x37\x81\x97\x7f\x4c\x72\x43\x39\x17\xc3\x05\x02\x0f\x48\x38\xd5\x74\x79\xdd\xd4\xe4\x05\x1f\x76\x18\x66\xcc\x74\x94\x82\x12\x30\x4e\x42\x81\xf7\x59\xff\xd8\x14\xe1\x50\xfd\xea\x13\xea\x57\x9f\x50\xc0\x87\x91\x8d\x8b\x9e\x93\xc2\x06\x83\x17\xe1\x82\x5f\xab\x11\x77\x15\x57\xf2\x61\x54\xb0\xe5\x15\x36\xf0\x29\xad\xd3\x3a\x7d\x05\x9c\x67\x24\x7f\x87\x7d\x91\x32\x12\x18\x99\x38\xb6\xd9\x8c\x6f\xbc\x72\xc6\xeb\xe6\x99\x8e\x36\x7a\x4b\x49\x5d\xc6\x6b\x49\x38\xdc\x45\x9f\xcf\x28\x2e\xdc\x7b\x19\x1b\xb7\x9c\x6a\xd5\x25\xe5\xec\x7f\x9c\x22\x1c\xff\xff\xd8\x03\x82\x01\xf3\x61\x20\x49\x5f\xb5\x71\x5c\x53\x0e\xc3\xf5\x4a\x51\xa0\x47\xf7\x19\x09\x27\x1e\x90\x29\xc2\x8e\x75\x5f\xe5\xec\xe8\xf8\xdb\x18\x25\x49\x1a\x42\x22\xe1\xc8\x1c\x5f\xe7\x87\xf4\xc3\xf8\x75\x43\x06\x91\x55\x79\x34\xe7\x1c\xe2\xd1\x4f\x1b\x92\xdf\x04\x0f\x3b\x6a\xab\x54\x89\x84\x2a\x1d\xbc\xfe\x2a\x76\x14\xbf\x51\xf8\x6e\x12\x09\xd9\xe7\x9b\x61\x7f\xa8\x29\x19\x0c\x1e\x12\xe4\x13\x3d\x15\xf4\x0d\x6e\xa2\x6f\x89\x90\x71\x56\xbb\x58\xdc\x64\xe8\x06\x02\xf9\x95\x89\xaa\x1e\xd0\x78\x90\x9b\xdf\x72\xc7\xc4\xcf\xe8\x61\xe1\xe0\x7f\x13\x57\x28\xc2\x53\xdb\x7b\x44\x2f\x2d\xcd\xb5\xc3\xa8\x88\x5e\xb3\xa2\x56\xa8\x04\x1b\x0e\x39\x3a\x50\x53\x63\xb2\xcc\xa0\x6a\xee\xd6\xc5\x3d\xfa\x39\xce\x2b\xae\xba\x52\xe1\x31\xf8\xe4\xc3\x24\xf9\x53\xb8\x20\x44\xc1\xe7\x3b\x55\x65\x86\x0c\xe9\x82\x9a\x61\x3f\xba\xae\xb4\x55\x77\xad\xfb\x7e\xdc\xdc\x2f\x01\x56\xca\xfd\x92\x89\x67\xff\x3d\xa5\x05\xaa\xef\x4c\x5a\xfb\xf7\x3b\x27\x7d\x7a\x06\x58\xf3\x3b\xa1\x4a\x28\x47\x7e\x15\xf4\x35\x36\x00\x47\xdc\xa7\xd6\xbd\x90\xdb\x96\x3a\xac\xff\x8b\x4f\x75\x7c\x79\xfe\x4b\xff\x41\xa7\x3e\x7c\x62\x67\x1b\x25\x58\xbc\xe8\x18\xee\xfe\x49\x5d\xa1\xfe\xa0\xe8\x7e\xab\xe1\xd9\x44\x77\x9d\x88\x6e\x2d\x2c\x61\x25\x0a\x6f\xa2\xa4\x30\x24\xe4\x56\x7d\x8a\x63\xf1\x1d\x58\x70\x3d\x8f\x86\xd6\x42\x37\xb3\xc6\x41\x12\x18\xa3\x4f\x6b\x44\xf0\xfa\x0d\xf3\xc3\x9e\x0d\x63\x6a\x12\xd0\x05\x03\x15\x7e\x8e\x80\x6c\xfc\x5a\x79\x51\x85\x69\x99\x15\xfb\x54\x4b\xe5\x38\x0e\x3a\xec\xef\x3d\x1d\x02\xd3\x21\x25\xfa\x49\xe0\x91\x4e\x17\xb1\xc8\x70\xb6\x63\x5e\x2c\xe7\xb7\x3f\xe6\xae\x06\xdb\xc6\xe0\xde\xaa\x91\x6e\x30\xa3\xe5\x91\x31\xe2\x84\xe3\xfd\x23\x62\x2d\x4d\xc6\x05\x59\x9a\x14\x33\xaa\x81\x78\x55\x01\x92\xae\x2b\x35\xe5\x6f\x3b\x44\x53\x37\x5d\xf5\x98\x38\x8c\xaa\xc0\x16\xc6\x3d\xdc\xa5\xd2\xbb\x93\x8d\x53\x03\x66\x0b\xf5\x5a\xfe\x1e\x72\x65\xc6\x6f\x6a\x3a\x13\xf9\xb2\xd9\xa9\x30\xdd\xac\xe0\xe0\xd2\x1b\x6f\xcc\xfe\xfd\xc0\x57\x87\x6f\x29\xf8\xf0\xd7\x9b\xe0\xad\x85\xcd\x8b\x08\xde\x37\x47\x94\x80\xa9\x53\x31\xda\x54\x6c\x92\x91\xc9\xf2\x21\xd0\xa3\x80\xbe\xdf\x56\x42\x1a\x67\x34\xa1\xed\xbc\x4a\x3f\xc1\xa6\x8a\x30\xb1\x10\x5c\xdd\xff\x48\x5f\xc1\xaf\x83\x67\xd4\x84\xb1\x57\xe6\x45\x16\x99\xf8\x71\x5f\x5c\xbd\xad\x40\xa4\xff\x7c\xa2\x06\x4f\x57\xe8\xac\x41\xd8\xf8\x3a\x9e\x37\xff\x87\xa0\x8e\x41\x5d\x92\x02\x86\x31\x85\xd2\x16\x50\x1b\xff\x8c\xc6\x2b\xff\x2b\xda\x3f\x35\xd1\x01\xb1\xd6\xaf\xb5\x18\x9a\x72\xfe\x62\x18\x25\xcb\xd4\x98\xc5\x8d\xb9\x17\x28\x03\x4e\x74\x55\xb5\xcb\x87\xf2\x70\x9a\x67\x2d\x83\xa3\x4d\x73\xb3\x51\xda\xb3\x59\x12\xbd\x26\x9b\x16\x3f\xf4\x27\x14\xed\xf8\xb5\x96\x1a\x4d\xb3\x6c\x0d\xb3\x3f\x14\x82\x3f\x9b\x28\xcb\x2f\x1e\xb1\x3b\x41\x34\xe5\x96\xd4\x72\x1e\xda\xef\xa8\xe4\xaa\x37\x0e\x67\x95\x20\x76\xdd\x46\xe8\x02\xb4\x7f\x31\xa0\xbd\x4c\x30\x0b\x7e\x3d\xa9\xad\x1d\xae\xee\x5f\xe6\x7d\xff\xe7\x78\x46\xfc\x46\x1f\x08\x85\x21\x7b\x62\xc4\x8a\xbb\x35\xc4\xd1\x6e\x22\x26\xb0\xa6\x36\x96\x02\xef\x70\x7a\x62\xa8\xfc\xaf\xe0\x5a\xb1\x14\xdf\x53\x2e\x37\x7f\xad\x0d\x6b\x89\x76\xea\x08\x1d\x7e\xe8\xf6\xc8\xba\x17\x12\xfb\x32\xcb\xb3\x33\xa3\x49\x81\x04\xba\x99\x79\x2d\x8a\x09\x18\x88\xb2\xfc\xe2\xa4\x4e\x7a\x38\xb0\xe0\xba\x78\x0d\x38\xef\x9e\xc9\x56\xa3\x24\x32\xe8\xb8\xb3\xdb\x23\x82\x94\x58\x3f\xfa\x4d\xd1\x4b\x47\x51\x02\xb7\x8d\xea\xfb\x58\x0f\x06\xdf\x27\xe2\x30\x1e\xd9\x3a\xd0\x12\x51\xf4\x34\x44\x2e\x4a\x91\xec\x8b\x5f\x2e\x76\x56\x9f\x85\x39\x37\xa8\x5e\xc0\xcc\xdc\x0d\x14\x49\x74\xa3\x7e\xc3\x74\x31\x3f\x35\xd1\x7c\xe5\x95\xf6\xa0\x8c\x7a\x96\xce\x88\x19\x2d\x91\xc9\xfa\xb3\xc8\xd9\x99\x3b\x29\x33\x52\x7f\x64\xf4\xd2\xb2\x5b\x3c\x5a\x3d\x78\x3c\xac\xfb\xb5\xa4\x92\x1e\x35\x1e\xd0\x9b\x64\xf8\x2c\xb3\x2a\x3f\x6e\xde\xb5\xee\x69\x43\x3c\xad\xc7\x72\xff\x11\x36\x3d\xbf\xc1\x7d\x13\x97\x06\x5f\x93\x8c\x63\x93\x43\xff\x4e\x4f\xb9\x1c\x60\xba\x79\x9a\x36\x2c\xf3\xae\x49\x7a\x7c\x26\x3a\x8f\x0c\x0f\x0b\xbd\xd0\xa4\x23\xb9\x92\xba\xa1\xaf\x43\x37\x7b\x39\x99\x53\x53\x6d\x8a\xfd\xfb\xc1\xba\x9f\x51\x75\x33\xc4\x04\x90\xec\x5f\xd5\x0c\xfc\x46\xbc\x5a\x3f\x36\x03\x5c\x99\xd8\x56\xd2\x0f\x16\x1b\x53\x8f\x1c\xa5\x2a\xd8\xf6\xf6\xd0\x0e\x92\x0e\x63\x2d\x35\x57\xe8\xff\x3f\xe0\xbd\x89\xac\x04\xbc\x0a\xe1\x2a\xb6\x9c\xd6\xf6\x05\x04\x40\x04\xe3\x3f\xa1\x9d\x26\x26\xae\x8d\x63\xcd\x74\x64\x87\xe9\x2a\x15\xfc\xb2\xef\x3c\xe8\xe3\xe2\x44\x0b\x05\xff\xea\xaf\x7e\x52\xbb\x92\xdf\x43\x40\xc7\x03\x63\x52\x24\x5a\x3f\xaf\x23\x9b\x76\xe3\x1d\xa7\xd1\x03\xdf\x67\xcc\x1f\x1e\xe9\x28\x97\x86\x59\xf0\xd5\x71\xe8\xdf\xc1\x23\x65\x8d\x5e\x3a\x4f\xd0\x23\x98\xa1\x35\x87\x16\xfd\xd3\xd4\xda\xc3\x2e\xda\xb9\xae\x36\xce\xb7\x29\xbf\x43\xa4\x79\xa2\xa3\x9c\x44\x77\x74\x3c\x62\xe5\x4d\xe4\xf1\x00\xf4\xed\x23\xa4\x1f\xd6\xfe\x75\x50\x1d\x00\x7c\xfb\x91\x52\x77\x60\x8a\x17\x7a\x04\xc7\x1b\x97\x27\x89\xfa\xd9\x9c\x35\xbe\x64\xd6\xeb\x5b\x95\x5a\x10\x34\xcd\xc6\xbb\x5b\x4e\xf3\x62\xa2\x58\x6d\x8b\x54\x49\x60\x57\x5e\xa8\x11\x48\xb1\x18\x30\xb2\xfd\x2b\x4a\xd7\x70\x4c\x0a\x93\x53\xa4\xf8\x7d\x01\x9d\xbe\x96\x26\x68\xb7\xb9\x51\xe9\xc2\x82\x1b\x39\xf9\x7e\xe8\x28\x1a\x45\xa1\x2a\xaf\x30\xf9\x13\x6d\x4f\x1f\xc9\xc4\x3e\xb2\x39\x4d\xfe\xff\x97\x7d\x37\xc8\x24\x54\x85\xf4\x40\xec\x3c\x90\xbe\x9c\xd4\xf2\xe9\x1f\x4e\x3c\xb6\xf3\x8a\xe2\x62\xd8\xe4\x0b\xe9\xda\x6c\xb5\x56\x80\x55\xe0\x6c\x83\xdf\x28\xf1\xd3\x3f\xa0\xeb\x94\xed\xb5\xfd\x99\x2e\xcd\xb5\xc7\xe9\xb8\x8c\x3d\x68\x04\x3b\xe9\x8a\xda\x55\x57\x1c\x8a\xd9\x26\x45\xc4\xe5\x30\x76\xf2\x71\x95\x19\x1e\x57\x00\x07\x93\x2f\xb3\x0d\x08\xe7\x96\x93\x5a\xa2\x59\xf3\x81\x1e\x8f\x5b\xca\x35\xf0\x9a\x56\x5a\xbc\xe6\x26\xb2\xe1\xb0\x4c\x44\xf1\x8d\x07\xfa\x81\x1e\xee\x37\x4c\x61\xfb\xd1\x40\x9c\x1f\x64\xc6\xa0\xe6\x0d\xda\x7b\x27\x4b\x69\x86\x13\xad\xd8\x19\xc5\xac\xdf\x54\x30\xb4\x63\x74\x3b\x00\x37\x79\x57\x2d\xaa\x7c\x6c\x42\x0b\x24\x87\x33\x25\x75\x2b\xfe\x8f\xd1\x11\x15\x7d\xb4\xea\x13\xd0\xff\xf9\xca\x44\x05\x43\x2e\x83\x45\xc5\xfb\x99\xc8\x0f\xe3\xe9\x8c\x76\x50\x52\x81\x9b\xf8\xc2\x7f\xc3\xfb\x6b\xd8\xd8\xac\xd9\xde\x4e\x7f\xc0\x41\x78\x8f\xe5\x82\x27\x2a\xc1\xdb\xa1\x0c\x6e\xbf\x81\x30\x2f\xf6\x8a\xcf\x2a\x05\xeb\x41\x12\xf5\xa3\xd0\x24\xc5\xee\x2a\xb4\xb9\xfc\xd2\x0d\xcb\x3f\xa0\x45\x8e\x75\x79\x23\x50\xd8\xa6\x0f\x26\xde\x02\xea\xe7\x35\x8e\x2b\xac\xa5\x24\x3f\x72\x34\x0e\x33\xae\xce\x07\x2c\x3e\x34\x17\xbe\x32\xf1\x93\xb4\xaf\x34\x48\x1d\xbf\xdc\xb6\x49\x5a\x0e\x86\x33\x3e\xa3\xdf\xd1\xf1\x76\x24\xd0\xf7\x40\xb2\xf6\xc0\x37\x2d\x8b\x28\xe3\xef\xf1\xe5\xb8\xce\xbd\x1b\xc4\x70\xe6\xdb\x99\xcd\x2d\x44\x01\x99\x62\x32\xf1\x54\xb7\x69\x10\x8d\x34\x73\xd6\x6c\x3e\xd3\xfa\xed\xcf\x73\x82\x00\xd6\x6f\x4d\x54\x50\x0c\xe7\xb6\xc3\xf1\x3e\xd3\xce\x57\xa3\x9c\x0b\x1b\xa7\xb5\xe6\xfa\xb6\xe7\x95\xcd\xed\x17\xd2\x61\x42\xfc\x64\xa1\xad\x2b\x83\xb1\x4b\xba\x9b\x7a\x06\xc9\x8a\x34\xd6\x9a\xa0\xed\x61\x5a\x14\x22\x0b\x87\x05\x7f\x0a\xdb\x90\xdf\x38\xbe\xc8\xea\x30\x1a\x51\x0c\x45\x96\x88\x38\xc3\xaf\x55\x0c\x1d\xc7\x66\x8d\x70\x75\xd8\x9e\x3f\x0c\x14\x0e\x6b\x93\xc8\x0e\x8a\x6e\xf2\x82\xf3\x65\x6a\xd5\xd5\x11\x05\xca\x72\x7d\x2a\x7d\xa9\x6a\xdd\xbe\x89\x18\x61\xdf\x14\xf7\x3d\x31\xb0\x67\x7a\xb3\x1e\x25\xdc\xa2\x75\xc2\xaf\xd7\x3d\x62\x8d\x55\x3a\xf9\x8d\x02\x21\x9b\x3c\x2f\x47\xe4\xa0\x05\xe1\x1f\x37\x67\x5e\x9a\xf3\x1e\x39\x55\x8e\x00\xfc\x1a\x24\x9d\x71\xe3\xff\x9c\x92\x60\x8c\xe9\x67\x95\xf0\xa7\x29\x8a\xa8\x28\x7b\x36\x9f\xf5\xed\xe5\x3f\xc5\x61\x22\x90\xa4\x7a\x73\x7f\x61\x61\xeb\x44\xa3\xa1\xe2\xc0\x66\x23\x93\x48\x6e\x2c\x84\x0a\xfa\x63\x64\x0d\xf7\x35\xdb\xf5\xd6\xd4\x72\xab\xaa\xcb\x41\xca\xd0\x4b\x3c\xeb\xff\x4e\x73\x69\x59\x78\x0c\x89\xd2\xb9\x29\xc1\xf4\xc5\x17\x0f\xb5\x47\x66\xad\x4b\xdc\x20\xb4\x2e\x31\x0f\x61\x5d\x2d\x7e\xa3\x66\xe5\x90\xc4\x4b\x33\xa8\x6b\x01\x16\x05\x41\x2f\x1c\xa3\x8f\xa3\x0b\xc7\x36\xe6\x13\xcf\x25\x7f\x7d\x2a\x0c\x50\xc3\x7a\x98\xe6\x45\x0d\x69\x8f\x9e\x93\xf0\x28\x9f\x71\x73\x77\x62\x37\x13\x32\x77\x46\x69\xd1\xde\xd3\x79\xfc\x39\x15\xdd\xa6\x0f\x94\x2a\xea\x8c\xa2\x57\x25\x50\x21\x36\xfd\x99\xf2\x3b\xfe\xb3\xa6\x9d\x65\xcb\xf1\x30\xcd\x22\xcc\xb0\xb1\xb8\xae\x2b\xd0\xf4\x39\x3c\x2b\xa4\x84\x47\xa7\x1e\x4f\xb5\xcc\x47\xb6\x98\x9d\xb6\x56\x41\x23\xee\xae\x2e\xb4\x27\x8a\xb9\xb5\xb7\xe3\xa3\xeb\xc0\xc4\xe9\x40\xa9\x8c\xb0\x4e\x10\xbf\x69\x88\xae\x54\x37\xc5\x42\x45\x60\x00\x6c\xe0\x27\x14\xdf\xc6\x37\x09\x2a\xc8\xef\xb4\x91\x4d\xf6\x2a\xc0\xf9\xa9\x89\xb2\x8b\xc2\x07\xb8\x9e\xc0\x81\x05\xef\x80\x72\x44\x0c\x8c\x00\x69\x97\x71\xa3\x2a\x11\x7e\xa8\x5d\xa8\x4e\x6a\x57\xe4\x1b\xaa\xb1\x74\x13\xb7\x86\xbf\xdc\xc5\xfd\xe1\x5a\x37\x8b\x7a\x80\x8c\x29\xf0\xbd\x20\xf1\x1f\xd4\xfa\x37\xca\xbf\xab\x6f\x12\xde\x57\x0c\xb2\xaf\x0b\x1f\x2a\x69\xcf\x77\xd4\x5f\xd9\x35\x9e\xb9\x6b\x97\x2b\x47\x73\xf6\x6a\x1b\xa7\x34\x7f\xe9\x0b\x7d\x1e\xa5\xd5\x7c\x29\xf8\x4d\x03\x3c\xf1\x50\x3b\xb1\x26\xeb\x82\xbf\xe4\x0a\x4b\x97\x73\x6e\x2a\x6a\x5d\x92\x66\xf9\xb2\x6d\xb5\x0e\x2c\x6c\xa1\xe4\xd8\xba\xa3\x46\x21\x5d\x1b\x25\x83\x9c\x50\xee\x78\x9c\x00\x3c\xe1\x54\x47\x21\x23\x92\x43\x4d\xa1\x23\xb7\x76\xb6\x16\xd9\x29\x8e\xa0\x41\xb9\xab\x53\x23\x57\x55\xcb\x42\x64\x8f\xf6\x3a\xec\x64\x8a\x06\x29\x73\x92\xf0\x8f\xc1\x97\xc6\x95\xdc\x54\xc4\xa7\xa1\x19\x8f\xa3\xc4\xe6\x78\x92\xaa\x60\xa9\xe3\x2e\x50\x8f\xfd\xe5\xc4\xd3\xd3\x7a\x76\x44\x26\xc3\xa6\xb0\x50\xdb\x61\x19\x52\x84\x46\xd1\x24\x6d\x18\x3f\x8c\xb3\x68\x64\xd8\xeb\x10\x1d\xac\x2b\xaa\x9b\x75\x45\x43\xf7\xd2\x15\x8b\x90\x86\xbc\xe7\x6e\xe0\xcd\x9b\x18\x09\xeb\x9a\x4a\xf3\x87\x45\x7b\xb9\x21\xc6\xc8\x38\xbb\xe5\xb8\x9a\xa7\xa8\xb4\x14\x54\x64\x83\x30\x1b\x49\x95\x28\x37\x3b\x4c\xa8\xa6\xa5\x99\x8b\xa1\xed\x17\xda\xc7\xf4\x7b\x0a\xe3\xfd\x3d\xb5\x28\xc2\x61\x9a\x09\x10\x51\x74\xa5\x3c\x01\xe1\x6c\x6d\xd0\x32\x20\xcf\x4c\x80\x3c\x3e\x56\x56\xa5\x37\x91\xe1\x22\xc8\x80\x99\x83\x0e\xf4\xa9\x89\xb6\x0d\x61\x0d\x14\xac\xf4\x5d\x50\x30\x41\x9e\x74\x79\xa2\xf4\xfb\xcf\x6a\x59\xfd\x56\xc7\x0f\x45\x6d\x32\x34\x09\xf9\x7d\xf8\xad\xf9\x37\xaa\x41\xbd\xa9\x00\xb1\x67\x95\x11\xba\x7d\x95\xc8\x2c\x54\x9d\x8a\x53\x87\xd2\xc6\xe7\x9d\xea\xde\x54\x97\x22\x6b\x8c\xbe\x09\x29\xf6\x66\xa0\x7e\xd6\x16\xc9\x04\xf0\x7f\x68\x3c\xac\xc7\xb1\xa1\x61\x07\x6e\x00\x92\x26\x1e\x80\xf2\x1b\xd5\x1f\xed\xdb\xd5\x7d\xf4\x8b\xb0\x6e\x3e\x46\x2d\x2f\x86\x4b\xd5\xea\xc2\xc2\xc5\x26\x45\x76\xb8\x03\x63\x27\x35\x29\x75\x86\xfe\x81\xcf\x5a\x01\xd7\x54\xf3\xfd\x43\x8e\xf5\xa8\x54\x90\xfe\x9c\xa6\x56\xb5\x91\x08\x8b\x69\x4c\x1d\x73\x2f\x2d\xcd\xb5\xd3\x41\x9a\xac\xa5\xcb\xad\xaa\x54\x56\xe6\xe4\xae\xbd\xeb\x10\x70\x45\x66\x0d\x31\x64\x38\xb6\x3a\x24\x80\xf3\xfa\xfa\x58\xbb\x70\xdd\x9a\x72\xbd\xaf\x0a\xbb\x34\xb3\x4c\x58\x9f\xf1\xe1\xff\xbe\xb2\xd5\x7c\x0f\xb7\x0b\x29\xd9\x0d\x85\x35\x8e\x92\x90\x2c\x69\x7a\x7b\xab\x25\xe9\x5a\xab\x07\x0f\x0a\xc8\x5f\xdf\x90\xeb\x94\xe4\x61\xc4\x33\x03\x88\x06\xbe\xea\xfa\xc4\xd7\x60\x37\xf4\x18\x0a\x3d\x63\x65\xc4\xeb\xfe\x42\x8b\x38\xeb\x0c\x4b\x43\xa6\x43\x13\x0f\xcc\x36\x2b\xe6\x0b\xda\x8a\xf9\x82\x6a\xae\x94\x7d\xc4\x6d\x17\xfb\x3e\xf7\x92\x73\x63\xf0\xfa\xee\x1f\xb9\x02\x3a\x1f\xa7\xcb\x36\x99\x51\xdb\x92\xdb\x0c\xd8\x97\x68\xfe\xc9\x0d\xd9\x6e\x3b\x58\x1d\x39\x36\x29\x48\x87\x2c\xb1\x65\xc6\x73\x5c\x34\xe5\xb9\x19\xcb\x6f\xbc\xfd\x52\x16\xad\x44\xd4\xdb\x68\xe9\xef\xa1\x9b\x2d\xdf\xf9\x94\x82\x37\x24\xe1\xb2\x4d\x5a\x35\x12\xb7\x5b\xa7\xe7\x1b\xfa\x7a\x2f\xb4\x07\x26\x8e\x8d\x10\x87\xd4\x11\xe4\x1d\x73\xab\xef\x42\xef\xe5\x6e\x43\x75\x47\x84\x8d\x28\x6b\xf9\x26\x23\x20\x9e\xe2\x5c\xba\xfd\x2f\x0e\x1e\x6c\xaf\x44\x3d\x9b\xd6\x84\xe7\x11\x1b\xf9\xf5\x54\x44\x7f\x5e\xec\x4d\x29\xa2\x43\xd6\xe1\x2e\xc2\x06\xbf\x99\x72\x5e\x3d\x78\xb0\x6d\x42\x28\x4e\x88\xe6\x7b\xf5\xb7\xfc\xba\xa9\xf5\xdf\xcf\xcc\x60\xe4\xd5\xe1\xb8\x83\xab\xe9\x2e\x57\x1b\xd3\x59\x62\x86\xcf\x78\xb8\x17\x24\x1f\x44\x83\xd7\x03\xf0\xb5\xcb\x51\x75\x3e\x99\xf1\x18\xc4\x24\x01\xd1\xdf\x54\x20\xfa\x9b\x1e\x75\x4b\xb9\xbe\xc8\x13\x53\x1c\xfb\xea\xd3\xe4\x85\xec\x2c\x2e\x7c\x88\xdf\xbb\xee\xb1\x1c\xdd\x2c\x4d\xc2\x14\xb5\x9d\xe8\xc6\xb6\xbc\x86\xac\xd7\xce\xb5\x4e\x86\x18\xc7\x2e\xa7\x86\xfc\xa6\xc1\x6d\xe0\x50\x7b\x58\xf6\x7a\xb1\x2c\x49\xe9\x5b\xd1\x0e\x96\x86\x96\xb7\x57\x4c\x73\x49\x82\x71\x48\x3e\xb5\xee\x23\xcc\x5b\x13\x15\x9d\x3f\xd1\x20\x77\xbf\x48\x3d\x14\x76\xa8\x50\x1b\x65\xd1\x6d\x14\x49\x83\x8a\x68\x64\x61\xc3\x24\xba\x7e\xd5\x49\xe2\xf8\xc6\x4e\xbd\xf6\x4e\xe0\x67\x93\x37\x69\x69\x23\xbe\x9d\x50\x29\x78\x91\x8e\x66\x3c\x25\x8b\xb9\xb2\x0e\xf9\xe0\x4e\x8a\xf7\x9a\x4c\xef\xfa\xd6\x64\xac\x3b\xc5\xb2\x1f\x1a\x2d\x70\x5a\x4b\xcf\xdd\xf6\x08\xdf\xb8\xcc\x87\xb3\x9e\x05\x88\xfa\x5a\x7f\x23\x56\xe0\x7b\x7a\x1e\x31\x6d\x85\x35\x7f\xb8\xbd\x1a\xf5\xd2\x55\xec\x2c\xb1\xd9\xf1\x73\xb6\x0f\xa6\x1e\x26\x51\xe6\x8b\x28\x8c\x4c\xcd\xf1\x8a\x25\xc4\x04\x09\xe8\x5b\x12\x43\x9b\xf5\xd4\x26\x7c\x83\x96\x2c\xbf\x9e\xea\x8a\xce\x1f\x6e\x8f\xa2\x6a\xa1\x8c\x4c\x42\x47\x0c\x8e\xa9\x8f\xd4\x31\xfa\x2f\x27\xca\xb0\xe2\x83\x06\x0e\xd6\xa1\x76\x62\x06\x03\x61\x54\xe3\x71\x02\x5a\xcd\xaf\xa7\x52\xea\x5f\x69\x17\x51\x4f\x34\x42\x41\xb5\x79\x87\x9e\x33\x96\xdf\xf5\xc0\xff\x92\x4d\x85\x80\xec\xd9\x78\x24\xb6\x0a\xec\xa5\x87\xe7\x2e\xc6\x7a\x4d\x33\x91\x9e\x59\x4d\x1c\xd4\x19\xe7\xd2\x47\xca\xd1\xe5\xa3\x89\x6e\x34\x71\x67\x88\xa7\x20\x6a\xe0\x7c\x5d\x2b\x95\x16\x85\x1d\x8d\xb9\x75\xce\xcd\x37\xac\x19\xa4\x87\x33\xb4\x32\x90\xdd\xc1\x0d\x8f\x61\x8d\xe8\x01\x01\x46\x83\xeb\x45\x3a\xb4\x83\xda\x33\x4c\xa9\x0a\xb6\x29\xbe\xb2\xf1\xb7\xa4\x84\xd5\x47\xf3\xeb\x75\x1f\xac\x4c\x97\xe8\x02\x29\x83\xe6\xc4\x50\xdc\xb3\x97\xce\xa8\x03\x75\x18\xc5\x2d\x45\xca\x3e\xc1\x98\x28\xf1\x3c\x9c\x6e\x41\xb5\xf3\xa1\x59\xb6\x68\xdc\x8b\xd2\x51\x75\x7c\x88\xb9\xbb\x02\xe9\x9e\x50\x2d\xe3\x7e\xb6\x56\x45\x5d\x05\x8f\x55\x1a\x4a\xd8\x25\x48\xda\x6e\xab\x1f\xb7\x66\x93\x3d\xaa\xad\xd3\xe2\x69\x88\xd3\x73\x5d\x9a\xe3\xff\xf2\xb6\xc2\x54\x5e\x9d\xf8\x99\x0f\xfb\xca\x21\xf6\xdc\x9e\xf8\xa0\xbf\x97\x10\xa6\xb2\xaa\x94\x94\xdb\x38\x8b\x92\x65\x16\xff\x5f\x74\x9c\x91\x96\xd3\xc6\x3c\xa9\x64\xd1\x4c\x9e\x47\x79\x51\xa5\xe2\x3b\x29\xe9\xc1\xc4\xf9\x3d\xad\x1b\x79\xb6\x46\x3d\xa1\x1f\xc3\xff\x2a\xf0\x8d\xc2\xbf\x9a\x5a\xab\xfb\xf7\xb7\xc3\xa1\x89\x97\xdd\x5a\xc5\xda\x00\x4a\x92\x5f\x3b\xa9\xa1\xdc\x66\x63\xe2\x57\xc0\x72\x10\x17\x0b\x9e\x00\x7b\x07\xd3\x9f\x09\xbf\xd7\xdf\xde\x81\xc9\xd9\x53\x07\xf3\xa0\x07\xaa\x86\x62\x1a\x9c\xf8\x1c\xb6\x9c\xbe\x2c\x08\x41\x4e\xf1\xaf\x7a\x3a\x6e\x54\xac\x44\xd9\xd4\xa3\x37\x51\xc6\x08\x55\xa6\x49\xe3\x71\x0b\x67\xba\x61\x48\x1b\x0e\x23\xdb\xdf\xe9\x51\x4b\xb4\xa3\xe6\xb7\x2e\xa9\x2c\xea\x94\xc2\xb2\x70\x17\x13\x43\xb2\x33\x8e\xa4\xd8\x35\x59\x16\x59\xb1\x7f\x77\x0d\x03\xd5\x10\x51\x40\xca\x28\xcf\x4d\xf2\x18\xe9\xf7\x01\x6d\xe7\x98\x58\x8b\x2f\x1e\x72\x80\x69\xda\x50\xe2\xbe\x49\x07\xbc\xc0\x50\x3d\xc2\x8d\x45\x66\xc4\x97\x53\xcb\x80\xd2\xef\x17\x2e\x2d\xfd\x2a\x41\xb4\xaa\x36\xa9\xcd\x52\x9a\xaf\xb4\x74\xa9\xf0\x91\xb6\xef\xfe\x48\x6d\x91\x17\xfb\xfd\x99\x6a\x29\xa3\x7f\x04\x05\x7a\x31\x55\x52\xfd\x14\xaf\xde\x13\x66\xd1\x78\x4c\xf6\x2f\xb4\xb0\x80\x2c\x00\x85\x8e\x4a\xdd\x7f\xf1\x74\xc7\xef\x25\x1e\x4c\x02\x4e\x73\x4d\xc3\x50\x08\x45\x33\xe3\xe9\x99\x98\xaf\x20\xab\xb9\x4c\x71\x0e\x85\xc2\xa5\xc6\xb5\x6d\x12\xd3\x13\xd0\x06\xee\xcd\x3b\xda\x91\xf5\x9d\xa9\x43\x82\xac\x05\x4c\x31\xdb\x52\xf6\x23\x74\x03\xa5\xf3\xea\x49\x1e\x67\x29\x2e\x20\x35\x7d\xc3\xcd\x5b\x40\xec\x93\xde\x96\x08\x0d\x79\x70\x33\xfb\x23\xa1\xc3\x78\x7b\x2a\xee\x1d\x7e\x51\x26\xa9\x47\xbc\xf1\x78\xcb\x1b\x9f\x37\x4e\xe2\xc8\xf8\x18\xb0\x36\xcc\xd0\xee\xa8\x8d\x88\x91\x8a\xc8\xe3\xea\xd9\x5a\x14\xc7\xb3\x4a\xb5\xf0\x82\xd2\x09\x01\xbe\x06\x39\xdb\xed\x89\x92\xa3\xbc\x1d\xfc\x3d\x65\xd4\x34\x1a\x95\x49\x14\x62\x8a\x06\x21\x56\x8c\x93\x21\x4d\x8a\xc8\xf4\xb1\x32\xbc\xd8\xbd\xae\x20\x44\x57\x34\xb0\xe4\x7d\x6e\x5c\x20\x36\xef\x50\x44\x9b\x5e\x66\x46\xc0\xb0\xe1\x14\x40\x49\x8e\x40\xb2\x67\x5d\xd9\x85\xbc\xed\x86\x7b\xa3\x35\x92\x8e\x4a\xcb\x3c\xd6\x22\x44\x30\xfb\xe3\xd7\x78\xf2\x5c\xb5\x16\x36\xc3\x2c\xd0\xc4\x48\x15\xc5\xcb\x02\x3f\xca\x0d\x7a\x3c\x46\xed\x82\x12\xf4\xbf\xa2\xa2\xe5\x86\x12\xf5\x12\xd7\x45\x0f\x85\x86\xa0\x9f\x98\x2e\x7a\x8c\x22\xab\xfa\x08\x67\xe9\x61\x66\x31\xc3\x28\x94\x61\x84\x10\xb6\x94\x87\x62\x0d\x69\x7f\xcc\x45\xa7\x7c\x18\x8d\xd7\xc4\xa5\x17\x2b\x17\x72\xfb\xc8\x35\xef\xeb\x76\x73\xdd\x0f\xc0\x44\x06\x69\x0f\x76\xd8\x3f\x43\xba\xc1\x6f\x02\x2d\xf9\x96\xdb\x38\x35\xcc\x72\x93\x66\x8b\xcf\x34\xde\xd7\xab\xae\x88\x60\x66\x3e\x5f\xd3\x67\x73\x92\x41\x0b\xce\x49\xf7\xac\xdb\x52\x2b\x36\xeb\x45\x61\xb1\x53\x59\x58\xbc\xa7\xe0\x88\x60\xf4\x0b\x2c\xaf\xe5\x5c\xe2\x58\x71\x19\x01\xe6\xb8\xf6\x0f\x1e\x46\xa3\x6e\xc9\x96\x68\x22\x16\xdb\xf2\x72\x7c\x13\xcf\x62\xfb\x23\xe5\x30\x1d\xa6\xa3\x71\x1c\x55\xa7\xf0\x2e\x4f\x8d\xbb\x3b\x51\xde\x22\x30\x89\x46\xaf\xe2\xb6\xf2\xc5\xbd\x42\x30\x97\xad\x4b\x93\x9a\x6b\xc8\x93\x7e\x72\xda\xf7\xb8\x54\x34\x19\x80\xa0\x14\x63\xc8\x96\xb3\x41\xfe\xf6\xe4\x59\x25\x96\x1a\xda\xac\x30\x51\x52\xac\xed\x51\x0e\xe3\x2c\xdb\x86\x34\x89\xdd\x31\x64\x61\xb5\x9c\xc4\xe8\x6d\xea\x62\x30\x0e\x88\x9a\xdb\x82\x09\x52\x7e\x1f\x2c\x1d\x21\x4a\xc2\x9e\x5b\x95\x17\x19\xfb\x86\x79\x9c\xd8\x29\xe5\x30\x7d\x4a\xad\x8e\xae\x4d\x6c\x3f\x2a\x64\x34\x2c\x38\xb5\x96\xd3\xda\xd8\xa8\x93\x91\x06\xf6\x29\xba\x11\x7c\xca\x62\x79\xca\x29\xe1\xab\x66\xd0\x99\xd0\x7d\x38\xcf\xc9\x24\xee\x3c\x3a\x55\xb8\xcc\x9d\x68\x7a\x8a\x1d\x9a\x02\xf2\xc3\x7e\x52\x8c\x8f\x5b\xfb\xe7\xbd\x0a\xfa\xc2\x02\x77\x02\xff\x0a\xf0\x24\x8c\xc8\x6e\xe0\xce\xf0\xf8\x3f\xf0\x1e\x95\xa7\x35\x65\x8d\xdb\xde\xc0\x02\xfc\x79\x7d\x3b\x0d\xd2\x9d\x3e\x14\x5f\x9b\xd4\x7a\x83\x1e\x97\x0b\x0d\x6f\x56\x5b\xa7\xa7\x84\x3b\x31\x6d\x98\x75\xf0\xe0\x92\x3f\x65\xe9\x88\xe3\xf3\x33\xa8\x1d\xa6\x4f\xb9\x1e\x7f\x98\xae\x10\x09\x59\xd9\x99\x72\x97\x0a\x2d\x2b\xd0\xf0\x79\xb4\xa9\x73\xe5\xaf\x4f\x9d\x53\xaf\xbc\x02\x49\x35\x0a\xcc\xd8\x43\x77\x94\xea\xca\x65\xca\x8d\x85\xbc\xda\x14\xcf\x0c\x84\x98\x39\x69\x42\x11\x7c\x33\x50\x56\x4b\x37\x15\x21\xa6\xda\x7a\x86\xbb\x3c\x8e\x53\xa6\x72\xa7\x27\x95\xb2\x38\x10\xef\xd5\xe7\xe0\x0a\x2f\x04\x5e\x94\xf5\x82\x1a\x78\x24\x36\xb4\x79\xce\x6c\xee\x97\xdd\x47\xf9\x73\xef\xc1\xf6\x3c\xd3\x3f\xca\x6e\xb9\xf6\xa8\x2f\x31\x8e\x03\x1b\xa4\xf3\x6d\xfe\x0f\x81\x07\x9b\xfd\x75\x9d\xeb\x55\xfd\x7a\x80\xf9\x8e\x81\x1e\x8f\x06\xd4\xb5\x89\x32\x5d\xe1\x91\x98\x48\x19\x6c\x7f\x04\x9f\x7b\xa9\x9d\xd8\x68\x80\xc1\xb0\xf4\x23\xab\xdb\xce\xaf\x5d\xab\xa5\x4b\x86\xe2\xbb\xdc\xf8\xe0\x83\x4f\x75\x3c\x65\x72\x2f\xb8\x18\xcc\x26\xd2\x21\x93\xcd\x3b\x11\x9a\x6f\xd1\xd6\xe3\xf6\x84\xbb\x8b\x74\x72\x8e\xcb\x6e\xcc\x7d\xa2\xda\x3c\x81\xdf\x28\x16\x51\x5e\xa4\x99\xcd\xf7\x78\x22\xfe\x51\x42\xe6\x39\x27\x08\x67\xe8\xf5\xae\x16\x92\x3b\xa7\x85\xe4\x98\x08\x85\x50\xf7\x5f\x02\xfa\xaa\x9d\x24\x10\x95\x2f\x68\xa5\x71\x93\x99\x62\x98\x22\x07\x14\x77\x04\xff\x55\xe7\x26\xbf\xb0\x5d\x7e\xda\x90\x11\xd1\xac\xbf\xa0\x0b\xe8\x77\xb3\x75\x1e\x7e\x8e\xd8\x1d\xb7\x94\xfb\xb9\xb4\x9c\xba\xe3\x10\xc2\xe6\x08\x48\x97\x27\x4a\x29\xeb\xb2\x22\x6c\x11\xfa\x05\xe9\x31\x93\xed\x29\xf8\xe8\xa3\xcc\x91\xf0\x3d\x5d\x60\xf3\xa1\x24\xa7\x81\xcd\x4c\xdc\x4b\x67\x5a\xfb\xf7\xbb\x53\xa6\x5e\x66\xd3\x0f\x11\x11\x66\x67\x9f\x92\xa5\x7d\xd2\x1e\x9b\x51\x7d\x8d\x63\x8a\x15\x7c\x53\xab\xcd\x3c\xd2\x11\xeb\x8c\x30\xcd\xc6\x69\x66\x0a\xbb\x1a\xf5\x60\xf3\x5c\xf3\xe0\xd5\xb2\x38\xe8\x33\xb7\x3a\xbe\x0b\x7e\x59\xd7\xec\xb1\x19\x90\xba\xde\x3c\xef\x09\xa8\xed\x6f\x1d\x55\x9a\x40\x17\xc8\xfa\x10\xed\xaa\x69\x76\xc6\xfe\xf9\x76\xdf\x94\x71\x11\x93\x72\xa3\x7f\x70\x35\x4e\xb6\xee\x71\x10\x2c\x10\xc7\xa6\x63\x64\x78\x00\x28\x8b\xd5\x39\xf4\xa9\x73\x6f\x3b\x4f\x71\x1f\x83\xfa\x0d\x75\x65\xbb\xe9\xca\xd0\xba\xfa\x53\xa2\xbb\x48\x22\xec\xe6\xe4\x66\x64\x96\x4b\xa3\x24\x28\xd9\x5f\x54\x1c\xf8\x1a\x64\x86\x8b\xb4\x1c\x0c\x6d\x36\x4b\x3b\x54\xec\x20\x7d\xe9\xcc\x9e\xf5\x78\x2c\xcc\xdc\xc6\xc8\xfc\xe8\x54\x31\x24\x4b\x64\x75\x98\x92\x27\x0f\x7a\x9b\x8f\x62\xec\xe2\x0a\x05\x77\x80\x5f\xd4\x35\xdd\xb5\xa9\xdb\x2d\xb0\xdf\xd5\xa1\x29\x66\x3c\x89\xf9\x67\xb4\x85\x71\x26\xef\x50\xd6\xe7\xf7\x9a\xda\x3b\x59\xe4\xac\x0f\xa5\x65\xab\x07\x1d\x13\x65\x74\x9e\x51\x9c\xc9\x95\x91\x2f\x4b\x48\xf2\x9b\x60\xba\xc9\xbf\xd4\xce\xd3\xea\x5e\x57\xb5\xfc\xd2\xdc\xd6\x25\x05\xed\x8c\x4d\x99\x99\x56\x4d\xf3\x58\x03\x17\xb7\x57\x84\xf3\x87\xdb\x51\x12\x0e\x69\xfc\xcc\xb4\xa5\x4e\x5d\x6a\xb0\x5a\x37\xee\x93\x0e\x1e\xe4\x0c\xf9\x4c\x13\x7b\x87\x72\xc8\x35\xd7\x6d\xc1\x44\xee\x98\x82\x56\x1d\x53\xf5\x83\xed\xf7\xd3\xac\xc8\x1f\xa7\x2f\x60\xc9\x2d\x5a\x8b\xd8\x05\x8f\xac\xd3\xcd\x43\x33\xf8\x6a\x4d\x7a\xb7\xfa\x3c\xcc\x29\x31\xa4\xe1\x21\xec\x44\x79\xe2\xb2\xcc\x11\xa7\x30\x68\x12\xd6\x98\xac\xf8\x2f\xd7\x75\x3e\x23\x6a\xe7\x8e\xf1\xbc\xb4\xb8\x75\x63\x2a\x1a\xed\xdf\xdf\xce\x2c\xa9\x0e\x51\x41\x55\x55\xb2\x5b\xb4\x57\xb6\x36\xa6\x6e\xee\xd2\x62\xbb\x6b\x72\x78\x6e\x31\xcf\x9d\xae\x50\xf7\x12\x71\x81\xff\x87\xa2\x18\xc7\xd1\x6b\xdc\xb4\x90\x62\x8c\x7e\x24\xbf\x51\x04\x28\xc8\x47\xed\x6d\x39\xad\xf0\x37\x03\xd5\x27\x7f\x53\xdd\xcc\xeb\x0a\xe0\x71\x35\xa8\x89\x13\xab\x3b\xc8\x8e\xd4\x78\x16\xf7\x95\xa1\x3f\x14\xed\xf9\xcf\x11\xfe\x38\x29\xc2\x4f\xc3\x3d\xbf\xad\x26\xd0\x69\x99\x3d\x59\x3d\x32\x64\xda\x67\x90\x69\x62\xf7\xfe\x1b\x35\xe9\xbf\xaa\xe1\x44\x68\xf2\xe1\xde\x7c\x1b\xdf\x82\xa6\x08\xeb\xc9\x22\x52\xfe\x1c\x0d\x23\x71\xc9\xf7\x0c\x94\x6b\x81\xc6\xde\x1f\x53\x2c\x2b\x38\xa0\x0b\xc0\x41\x2d\x68\x76\x31\x15\xc5\x97\xea\x22\x91\x99\x4e\xa7\x23\x47\xe6\xda\x63\xb1\xc9\x15\x0a\xf1\xef\x4d\x14\x1b\xf9\xf7\x54\x37\x69\x71\xe9\x40\xcb\x9f\x2f\x35\x6f\x49\x6d\x72\x94\xd9\x5e\x3f\xcd\x20\xa6\x80\x2c\x7c\xb6\xa3\x52\x72\xfc\x6c\x7e\x4d\x4f\x80\xff\xd1\xfa\xe3\x1e\x9e\x92\x99\xd5\xdd\xd5\x3f\x73\x41\xfb\xc0\x82\xf7\x5a\xf5\xe9\xe6\xa6\x26\x4d\x40\x6d\x9c\xc1\xf4\x74\xd3\x15\xa3\xc6\xb3\x8b\x1a\xa2\x1a\x01\x1f\x66\x3c\x47\x08\x63\x56\xa4\x80\x98\xb8\x70\x4c\x6d\x18\x9f\x2d\xb6\x8b\x61\x16\xf5\x0b\x40\x70\xb8\xaf\x8b\x87\xa9\x74\xff\x45\x0f\xe4\x96\xba\x9d\x49\x12\xa1\xb9\xce\x93\x21\x3c\x35\x19\x13\x35\xc9\xc4\x92\xcb\xa8\x0c\xea\x10\x7a\x40\xc1\xe7\xd7\x7e\xb0\x9d\x8e\xba\xcc\x11\xc6\x70\xe1\xa6\xea\x2d\x31\xd5\x4e\x0c\xea\xfc\x0f\xca\xcc\xab\x98\xb3\xa0\xf9\xfa\x06\x5d\x39\x52\x12\x14\x19\xd8\xec\xad\x75\x25\x53\x15\x2e\x3f\x8e\xf5\x89\x84\xf7\xa8\xea\x5b\x7d\x82\x66\x15\xc8\x2e\x5a\x38\xb3\xdc\x39\xe5\xd5\x2f\xcf\x2b\xb8\xec\xfb\x94\x2e\x38\x92\x6a\x75\x0f\x91\x77\xf0\x3d\x44\x99\x7d\xb7\xf6\xfb\x29\x84\xd2\x5a\xbd\x43\xa2\x85\xa2\xc3\xfa\x2e\x49\x4f\x21\xc9\xdb\x9a\xc2\x8b\xfd\x46\x75\x3c\xc4\x65\x4f\x0e\xb3\x5a\xe9\x2c\x85\x77\x83\x9f\x75\x2f\x2b\x31\xbb\x72\x16\x45\x7e\xa3\x5f\x50\xd2\x0b\xe3\x2c\x1d\xdb\x2c\x5e\x23\x95\x52\xb4\x24\xbf\xa3\x87\x85\x33\x28\x71\xb1\x58\xef\x28\x20\x3d\xf4\x5e\xb8\xcb\x43\xb7\x06\xe1\xe5\x5a\x0d\x13\xb1\x36\x88\xe2\x58\x23\xdd\xea\xa0\xed\xbd\xbe\xc7\x8d\x0c\x5a\xa6\x5e\xd5\xaf\x91\x71\xd8\x27\x95\xe5\xc2\x8a\x89\x4b\x86\xd5\x57\x5f\x8f\x27\xf3\x96\x7e\x4c\x6f\xb9\xd6\x54\x18\xa7\xc5\x30\xb2\x19\xdc\x08\xc4\x3d\xc8\x77\x76\xbe\x36\x75\xb3\x0f\xbf\xd8\xce\x6d\xf4\x9a\x30\xf9\xb1\x5b\x6f\xaa\xb6\xcb\xcd\x86\x5c\x65\x9e\xea\x14\xef\xfa\xdb\x04\x65\x95\x9f\x34\x4c\xf3\x71\x54\x98\x78\x56\x89\x03\x9c\xa4\xb5\x24\xac\x41\x57\xe4\xfe\xf8\x93\x1d\xff\x09\x4f\xac\x6f\xaf\xce\xf7\xcf\xb7\xc3\x72\x54\xc6\xc6\x79\x33\x60\x99\xdd\x0b\x7c\xeb\xe3\x9e\xab\xa4\x4c\x59\xa4\xa3\xb4\x5b\xe5\x44\xa8\x47\x6b\x36\x04\xa8\x5e\x1f\x28\x91\x73\x3d\x53\x88\x4d\x61\x45\xb5\x06\xcd\x8d\xe3\xca\x18\x86\x6d\x86\x04\x78\xdb\x72\x1a\x89\xc7\xd5\x22\xeb\xdb\x51\x94\x44\x79\x81\x25\x0c\x38\xcc\xc7\x4a\xea\xf8\x63\x75\xa8\x16\x26\x8b\xfa\xfd\x96\x9f\xce\x3c\x40\x32\xc6\x6f\x54\xa6\xb5\x9a\xa5\x85\x6d\x29\x26\xf7\x79\xba\x02\x7e\xad\xea\xfb\x91\xc9\xaa\x9b\x4e\x51\x06\x45\xce\xff\x1c\x68\x95\x4c\xfa\x25\xfc\x00\x1a\x01\x9b\xf9\x38\x33\x6b\xdb\x06\x30\x35\xe2\xef\xf6\x18\xf8\x1b\x55\x26\x1c\xdb\xdc\xc4\xac\xc1\x2f\x22\x97\x2d\x25\x7e\xd9\x30\x14\x5f\x31\x59\x64\x48\x37\xdf\xe7\xca\x81\x9f\xe9\x5f\xac\x39\xbc\x8f\xf2\x35\x7d\x43\x2f\x68\x5d\xcc\x0b\x0e\xc9\xd3\xb5\x26\x1c\x12\x9d\x9d\x56\x09\x3f\xdf\xda\xb3\xf6\x4d\xbf\x28\x8e\xcb\x3c\x4a\xe9\x59\xb5\x9c\x6f\x39\x0b\xa0\x8b\x4c\xa3\xf2\xfb\x08\x7b\x55\x0e\xd6\x43\xaf\x13\xd0\xd1\x9f\x22\x1c\xa2\x8d\xb6\x05\x9b\x1c\xa6\x28\x36\xcb\xa3\x25\x69\x56\x80\x0c\x82\x61\xc7\xcc\xba\x27\x5d\xdd\x46\x9c\x03\xa4\x75\x63\x1a\xf7\x30\x4f\xea\xdc\xd2\xe6\x61\xda\x4a\xe0\x31\x25\x3f\x77\x07\xcd\xc8\x2c\xdb\x72\x8c\x5a\x07\xc0\x81\x0b\xaa\x1a\x7e\x10\xf8\xd1\x28\x87\x4a\x69\x77\xba\x93\xca\x0c\x1c\x1a\x8a\x21\x93\x88\x65\x82\x9f\xd4\x46\xc7\x99\x5d\x11\xf5\x5f\x41\x1b\xb6\x9c\xe8\xf4\xb4\x40\xea\xfe\xfd\xed\x22\x33\x49\x5e\x25\x94\x1c\xe7\xf1\xbb\xfe\xad\xae\xcc\xff\xad\x16\x9e\x19\xa6\x45\x8a\x1f\xc3\x19\x26\x2d\x2d\xc9\x36\x1b\x10\x1a\x45\x66\xa2\x44\x29\x45\x7f\x5f\x05\xa8\xef\xab\x98\x1d\x9b\x6c\x60\xf3\x82\x66\x88\x1c\xa1\xa0\xd2\x29\x23\x22\x6a\x21\x39\xf1\x48\x77\x70\xb3\xf9\x0d\xdb\xda\xe0\x1e\xa2\xed\x73\x4d\xb1\x2a\x76\xc1\x6a\x84\xff\x5c\x0f\x67\x91\x8a\x6c\x5d\x72\x25\x6d\x56\x05\x8d\x5e\x4d\x80\xee\x36\x85\x62\x47\x78\xae\xfe\x58\x08\xb3\xfe\xa4\x3f\x74\xf8\x77\x29\xc3\x41\x6e\xc0\x80\x44\xac\xcd\xb3\x4a\xdc\xed\xfa\xd4\x4e\xdf\x3f\xdf\x1e\x59\x93\x97\x19\x13\xc9\x90\xa0\x43\xb7\x19\xe9\x32\x58\x87\x28\x5d\x36\xbd\x63\x77\x16\x31\x86\x15\xbf\xec\x27\xf4\x17\x28\x81\xaf\xd5\x8e\x81\x26\x7d\x80\x9e\x89\x78\x8c\x84\xef\xfb\x12\xfd\x05\xbf\x6e\x90\xb3\x6a\x67\x76\x6c\x4d\x81\xf3\xcf\xc9\xd0\x79\x22\xc2\x86\x42\xca\x76\xcb\x2c\x19\x9a\x11\x57\x33\xca\x1c\x52\xfa\x02\x1b\x2a\xcb\xcb\xa3\x62\x97\x87\xf9\x3f\xb1\xae\x9a\x32\x9b\xea\xac\x87\xb6\x9b\xb4\xcb\xfc\xbd\x79\xac\xa3\xfa\x79\xe7\xd4\xe7\x8e\x22\x5a\x4c\x2f\x3b\x0c\xa1\x32\x1f\x7c\x73\xe2\x1b\x1e\x47\x15\xc1\x9b\x13\x24\x74\x4d\x99\xed\x8d\x10\xf8\x38\x83\x27\x64\x2b\xb5\x3e\xf7\x12\x83\x94\xce\xab\x72\xee\xb1\x75\x4f\x74\xf7\x0f\x2a\xb6\x79\xfe\xb8\x86\x00\x2b\x01\xf4\x7f\xb4\xde\xda\xbf\x1f\x81\xea\xb3\x9f\xec\xd0\x1a\xc7\x9a\xe3\x92\x80\x32\xf4\xaf\x7d\xaa\xa3\xb8\x78\xef\x4f\x5a\xff\xe4\x90\x43\xd9\xd1\x25\xba\x53\xfc\xc8\x1c\xf7\x0d\x77\xad\xbb\x7c\xf6\xb3\xff\x70\xdd\x93\x90\xfe\x9b\x4f\x77\x6a\x5c\x36\xaf\x4f\xff\xe8\xfa\xf6\x7e\xc3\xaf\x90\x22\x32\xa1\x22\x84\xd8\xec\x67\xa9\x8c\xc2\x16\x61\xb1\x46\xed\x65\x13\x97\xa3\x28\x29\x47\x58\xa5\xae\x28\x73\x9f\x01\xcb\x72\xdc\xba\xbf\xae\xb5\xa2\x97\x4d\x42\x0b\xcd\xe9\x06\x39\xf7\x91\x9f\x4d\xad\xe6\xaa\x3e\xa9\xc2\x52\x8d\xd2\x73\x5c\xd9\xc8\x1c\x77\x58\x8f\x91\xc9\xca\x24\x2d\xc3\x61\xc4\x6b\xd3\x71\x2e\xbd\xb1\xd4\x1f\x2b\xfc\x57\x91\xc6\xbd\x9d\x4a\xf2\xef\xfc\xa4\xe6\xcf\x51\x7d\x05\xef\x4a\xc5\x54\xe1\x2e\x13\x2e\xeb\xbf\x57\x11\xe2\xd7\x3e\xfb\xd9\x56\x55\x5c\x63\x0d\x1e\x53\x0e\x64\xd3\x82\x73\x47\xe6\x5e\xae\x4e\xe5\x35\xcd\x3c\xbc\xac\xd4\xae\x2f\x4f\x6d\xd1\xe7\x9e\x6b\x7f\xea\xf3\xbf\xbb\xf8\xf9\xdf\x5c\x40\x96\x27\x0d\x46\xfa\xc5\xfc\x46\x39\xff\x7f\x18\xf8\x06\xc0\x87\xea\x47\xc6\x11\xc0\x80\xc0\xd6\xdc\x56\x74\xd6\x8b\x9a\x01\xe3\xef\xe9\xd8\x66\xa1\x4d\x0a\xc3\x2d\x7b\x0c\x16\xae\xea\x29\xc3\x55\x4d\xac\xcb\x9e\x7f\x54\xb7\x5b\xce\xa3\xdb\x87\xc4\xf1\xa8\xe6\xca\xef\x80\x7d\xa7\x60\x79\x55\x3c\xa3\x68\x2c\xdd\x46\xcd\x5b\x50\xd8\xdf\x9a\x0c\xcc\x14\xfe\x75\xff\xbc\xf7\x09\x69\x79\x32\x02\x3c\x54\xf9\xb5\xe2\xc3\x14\x66\x99\xac\xa6\xfc\x48\xe1\x4b\xe8\x6c\xf0\x9b\x89\x72\x4c\x7b\x57\x39\xda\xbe\xa7\x10\xa8\x6f\x20\x73\x13\x1d\x3f\xd5\x6d\x3f\xab\xaa\x18\x8c\xc6\xd0\xf2\xf9\xdf\xa6\x7a\x50\xd5\x7d\x6b\xb3\xfd\xaf\xeb\xb6\x21\x3e\x7d\xa8\xd2\xb5\x0f\x6b\x5b\x29\x0f\x53\xea\x34\xf0\x64\xac\xd6\x05\xda\x50\x32\xbf\x8c\x83\x95\x91\xbe\xef\xe7\xf7\xa3\x22\x1c\xf2\x7e\x41\x3d\x76\x46\xd3\xad\xcf\xd4\x92\x43\x93\x2f\xcf\x2a\x38\x34\xf4\x0e\xc5\x00\xb4\xba\x4e\xe1\xce\x7b\x7d\x96\x69\x03\xf2\xfd\xf3\xed\x28\x8f\x0d\x9d\xc2\x3e\xb7\xc4\xf2\x47\x70\xfd\xee\xa4\x96\x81\x4e\x87\x84\xc5\x76\xd7\xc6\x31\x35\x4b\x39\x6c\xf2\x01\xc4\x6f\x1a\x34\x38\x17\xda\xfd\x34\x8d\x5b\x0a\x80\x5f\x57\x20\x52\x0b\x7e\x14\xe5\x55\xba\x4a\x9f\xce\x73\xcc\xc0\x8f\xb3\x37\x54\xaa\x9a\x98\x2c\x4b\x57\xab\xa4\xac\xfa\x72\x1c\x45\x1f\x2a\x20\xd6\x87\x53\x5c\x85\xaa\xb2\x2b\x93\x71\x66\xc7\xc6\x31\x9c\xd1\x43\xfa\xf1\xc4\x0f\xe1\x7e\xac\xa2\x54\x4e\xf2\xa5\x4b\x73\xd2\x90\x09\xfc\x7c\x01\xd0\x33\xcc\x7d\xef\x2a\x77\xcb\x07\x81\x62\x7d\xb0\x12\x36\xff\xc5\x54\xb6\xfb\xca\x2b\xed\x38\x0d\x9d\x28\x2e\xca\x08\x6e\xcc\xf3\x9b\xa9\x07\x70\xf0\x20\xeb\x7d\xb6\x7c\x8b\xe4\xb4\xe2\xd8\x9c\x56\x54\xab\x74\x3c\x4e\xb3\xa2\xac\x92\xff\xbc\xa5\xa8\x10\xca\xdd\xf4\xe2\x64\xaf\x68\xe1\x2e\xbe\x78\xe8\x17\xab\x20\x2a\x0e\xd0\xd5\x1f\xa0\x62\x3f\x05\x07\x39\x31\x91\xf2\xc9\x1f\x63\x9d\x70\xc3\x67\x3b\x24\xe2\x8d\x50\x8d\x5d\x03\x10\xd4\x45\x22\xaf\x80\x4e\x72\x73\x32\xad\xfc\x83\x9b\x7b\x36\x50\x51\x60\x06\xc2\x6e\xf8\x29\xdf\x0c\x14\x42\x61\x1d\x33\x3c\xd6\xd7\x20\x19\x0d\x44\x7a\x6c\x02\xb4\xa3\x5a\xeb\x94\x94\xb2\xf0\x13\x9a\xd5\x08\x1c\xcc\x84\xc2\xc0\xf4\x16\x35\x3b\x91\x49\xb6\x28\x5d\xc0\x33\x64\xef\x75\xc9\x69\x5b\xbf\xf9\x3b\x3c\x10\xbb\xa5\x4d\x89\xae\x91\x1c\x2b\x0f\x65\xb1\x6f\xb1\x1c\x3e\x08\x1e\x57\xe6\xef\x76\xf9\x51\xfa\x6f\xb8\x4a\x36\x08\x40\xa3\x08\x33\x33\x91\x1a\xa0\x2b\xc6\xe5\x33\x11\x96\xdf\x4c\xea\xa5\xed\x6f\x89\x03\xef\x3b\x4a\x3c\xef\x9d\xc0\xf7\x2c\xcf\xb8\x12\x27\x8e\x46\xe3\x78\x8d\xd0\x70\xc8\xe9\xd0\x12\xc0\x4e\x45\xae\x8f\xb6\xf3\xfb\x58\x67\x38\x48\x9c\x63\x61\x94\x0c\x62\xe8\x86\x09\x46\x5a\xe1\xa5\x1b\x1a\x92\xe2\x32\xc0\xc1\x05\x69\xc5\x31\x5a\x48\xe2\xc3\x4e\x77\x5f\xa4\x04\x94\x2a\x4d\x59\xc4\x69\xba\xdc\xf2\x48\x8c\x3a\xf8\xea\xd1\xa8\x3d\xce\x6c\xff\xd7\xda\xff\xe9\x3f\xa4\xfb\x07\xb6\x0e\xda\x7c\xc8\x62\x1f\x5f\xaf\x72\x37\x14\x99\x57\x15\x54\x6a\x76\xbd\x5a\xd3\x48\xa6\x1e\x25\x29\x7b\x9c\x07\x77\x08\xcf\x81\x76\xe1\xb3\x84\x08\x92\x23\xad\x5a\x07\xae\x41\xf8\xdb\x9f\x77\x6c\x58\x75\x68\xd2\x28\xc3\x81\xbe\x54\xfa\xbb\x1b\xa2\x32\xac\x6a\x3f\x51\x70\x98\x7f\xdc\x51\xea\x86\x3b\x3a\x3b\x3e\xcd\xe5\xcc\x1e\x92\x88\x61\xf1\x32\x8a\xdd\x68\xe4\xee\x44\xdb\x12\x07\xf0\x45\x2d\xdc\xf0\xc9\x75\x15\xb9\x9e\x59\xa7\x73\x40\x46\xc0\xd8\x50\xe8\x5c\xfe\x7b\x9d\xd6\x73\xcf\x39\x34\x00\xdd\x78\xa4\x54\x3b\xd6\xa9\xff\x22\x33\x86\x5a\xbc\xf2\x05\x69\x68\x7b\x26\x53\x04\xcd\xf7\xe9\x81\xf0\xeb\x06\xb0\x7c\x18\x47\x09\x10\x17\x35\xe7\x7f\x01\xa6\xb8\xaa\x1b\x65\xab\x1a\x79\x20\xa0\x08\xae\xca\x8f\xf1\x32\x1b\xa6\x65\x96\x13\x5b\x56\xe4\x1a\xb0\xcd\x44\xbb\xc1\xb7\x39\xc6\xa4\x82\x93\xa5\xd1\x32\xa0\x7f\x58\x61\xdf\xd1\x16\x07\x7f\x4b\x37\x97\x0d\xe8\xd5\xbc\xbf\x67\xcb\x22\x0f\x87\xb6\x45\xcf\xd7\x71\x7c\x0e\x78\x8e\x8f\xcc\xbd\x97\x93\x74\x35\xb6\xbd\x01\x57\x93\xda\x76\x13\xfd\xc7\xdb\x34\xc9\x15\x2f\xb7\xed\x67\xef\x67\xda\x85\x35\xe1\xd0\x0a\x5d\x0b\x3f\xe5\x7f\xc0\xf2\xe1\x37\xaa\xc5\x96\x87\x26\xeb\x13\xa7\x6e\x69\x91\x07\x97\xa8\x56\x9d\xa2\x99\xc3\xec\x9f\x7d\xa8\xbf\xcf\xc8\xf6\x22\xbb\xc2\x9d\x32\xb7\xc0\x95\xf2\x6d\xad\x96\xde\xe7\xc2\x86\x27\x46\xba\x88\xe8\xe9\x15\xd7\x95\x32\x49\x5a\x16\x49\x39\xea\x8a\x64\xc8\x0b\xde\xab\xce\xfb\xd6\x4d\xb4\x2e\x70\x5e\xa0\x1d\x36\x7f\x98\x61\xc9\xc7\x94\xce\xf4\xb1\xe0\x69\x35\xcb\x29\x4c\x14\xdb\x8c\x7f\x07\x3a\x46\xb7\x74\xfb\xe8\x56\x43\x6e\xff\x42\x7b\x68\x4d\x31\x5b\xdd\x33\x69\x6f\x78\xda\xc2\x56\xe0\x19\x68\xc7\x27\x4a\xb9\xf7\x27\x53\x5d\xe0\x83\x07\xdb\x36\x4c\x93\x74\x14\x85\x1c\xcd\x70\x1a\x1c\x53\xd4\x68\x16\x0f\x41\x7b\xf2\xaa\xaa\xd2\x7b\xd1\x20\x2a\x4c\xbc\x9b\x6e\x88\x58\x2d\xb4\x9c\xe4\x39\x0f\xc9\x64\x18\xad\x20\x34\xa8\x5f\x91\x28\xbe\x4e\x71\xd3\x19\x35\x78\xc5\xb1\x0f\x82\x4f\x3d\xe4\x69\x93\x28\xa7\x29\xe3\x5e\x3e\xab\xa4\xb1\x41\x8f\xc4\x24\xe0\xa2\x9e\x9c\xcd\x76\x74\xa9\xf6\xe3\xc9\x36\xaf\xc7\xe7\x9e\x6b\x3f\xf7\x9c\x9a\xba\xbd\xad\x70\x0d\x6f\x2b\x8e\x7d\x5c\xf4\xf8\x19\xe1\x5c\x61\xc4\x32\xbf\x59\xd7\x39\xec\x78\xcc\xed\x5d\xf1\x71\xad\xf6\x8b\x8c\x4d\x1f\x06\x41\x28\xd2\xb4\xa5\x40\x93\xc7\x95\x0a\xd9\x71\xed\x6f\x52\x26\xbd\xf4\xef\xe0\x1e\x4d\xb5\x6a\x5e\x3c\xd4\xee\xc6\x65\xbf\x5f\xb3\x96\x3d\xa3\x73\xf5\x33\x53\x7f\x54\xa5\xbf\x89\xb5\x3d\xde\xc2\xdc\xef\x47\xd7\x4b\x9a\xff\x0d\x1d\x9e\x4f\xcd\x1f\x78\xe1\xc0\xe1\x43\x33\xdb\x51\xd6\x5c\xfc\xd3\x60\x98\xb5\x6a\x3b\x4f\x3a\xac\xd4\x4a\x1a\xaf\x40\xa9\x4d\x6a\xce\x07\x13\xaf\x86\x87\x9e\x84\xb3\x79\x74\x3a\x01\x30\x6b\x13\xfb\x2e\x5a\x69\xd8\x5c\xec\xa8\xef\xdc\x5f\x3c\xeb\xf5\x13\xce\x0b\xbe\x9b\x96\x49\x6f\xd6\x83\x60\xae\xea\x46\xd4\x19\xfc\x0d\x1a\x82\x3b\x94\xa7\xe7\xf7\x1b\x11\x7b\xdd\xcc\x24\xe1\x50\xc6\x5c\xac\x12\xab\xd5\xc5\x8e\xab\xc9\x6d\x3e\x4a\x97\x1d\xf6\xbf\xa6\xa9\xce\x6a\xc9\xca\xce\xee\x01\xe6\xb0\x92\x68\x7a\x99\xab\xb1\xc9\x96\x5b\x7a\x62\x50\x1b\x25\x4c\xcb\x79\xb4\x87\x91\xcc\x9f\xf1\x61\x37\x02\xb5\xd5\x6f\x28\x98\x60\xdf\xae\xda\xbc\x20\x37\x16\x9c\xe0\x1f\x62\x86\xe1\xf0\xa0\x6e\x48\x7c\x86\x54\x88\xf9\xa0\x9d\x22\x22\x7e\xa6\x1d\x0e\xad\x19\x93\x62\x5b\x95\x28\x88\x72\x76\xcb\x89\x7c\xbe\xdf\x84\xd8\x87\xb0\x4c\x8d\xa3\x7d\x5a\xb5\xba\x9e\xea\x28\xed\x84\xc7\xd6\x9b\x1e\x46\x15\xc9\x12\x6b\xf3\x96\xa6\xc5\xd7\xc8\xf3\x0d\x85\x46\x6c\xcd\x8a\x3c\x3f\x3c\x86\x6f\x04\xea\x99\x7c\xa3\x51\xa5\xc1\x9a\xdc\x70\x22\x80\xec\x0a\x9a\xa3\xfc\x7a\x8a\x5f\x4b\xdc\xbe\x57\x5b\x2a\x61\xfc\x50\x39\xe2\x7e\xa8\x08\x28\x79\x11\xd1\x78\x0c\x82\x67\xc2\xf4\xf3\x95\xd7\x07\x53\x4f\x78\xff\x7e\x72\xb7\x9d\x51\x62\x67\xb0\xbf\xc1\xe2\xfe\x40\x0b\x64\x5c\x68\x90\x7b\x69\x0f\xad\x74\xa9\x18\x11\x4c\x37\x9d\xe5\x53\x27\x8a\x74\x73\x4d\xe1\xc1\xef\x60\xd3\xb1\x95\x5c\xe0\xd9\xee\xb6\x17\x25\xdd\x32\x1b\xa0\x74\xab\x81\xf0\xf9\x4d\x13\x0f\xb4\x88\x46\xa4\x8f\x4e\x78\x98\xd6\xd2\xdc\xd6\x86\xca\x7b\x72\x9b\xe4\x51\x11\xad\x44\xc5\xda\xcc\x14\xb9\x54\xab\x77\x61\xd5\x5e\x0a\x6a\x86\x24\xc5\x70\xb7\x02\x31\x3c\xd0\xd0\x9d\x5d\xeb\x9e\x5b\xb9\xab\xa3\xdc\xa9\xbf\x82\xcb\x06\xa4\x61\x6b\xe2\x85\xed\x40\xb6\x17\x85\x0a\xc9\x99\xd2\x15\x9b\xf5\x32\xb3\x9a\x28\x8f\xb0\xf3\x4a\x19\x64\x0b\xc7\x1f\xca\xfb\x4b\x4d\x44\xd4\x7e\x24\xb4\xdd\x46\x2b\xbb\x87\x65\x3e\xbd\x28\x23\xc4\x02\x6e\x8b\x74\xf8\xfd\x9e\x39\xa3\x3b\x93\x77\xd5\x32\x2b\x22\x93\x98\x64\x64\x31\xbe\x16\x57\x27\x05\x84\xbc\x18\x6c\xe7\xe3\xbb\x93\xca\xc6\xb6\x1f\xa7\x19\x50\x7b\x8d\xe0\x56\xff\x3d\xf6\xd5\xb1\x21\x2b\xa9\xdd\xca\xfe\x0b\x8a\x26\xc8\x85\x31\x75\x40\xb5\x35\xd3\xa9\xa9\xd6\xd7\xf4\xec\xbd\x82\x16\x23\xbc\xf8\xa3\xb4\x5a\xf7\x30\x4a\x0c\xf2\x33\x71\xa8\x6f\x29\xeb\xfa\x5f\xa8\x1f\xfc\xd4\x0c\x5b\x58\x58\x64\xd5\x76\xd4\x4b\xaf\x23\x5a\x40\x17\x6a\x43\xa1\x7b\xbf\x07\xb0\xab\x43\x6f\x2e\x2d\x0a\x53\x03\xa3\x42\x37\xc9\x7d\xee\x39\x1f\x97\xab\x7d\x87\x1a\xf8\x4d\x5a\x36\xce\x38\xcc\x93\x69\x36\x14\x8b\xfd\x64\xe0\x5b\x89\x1f\x20\x7b\x62\xb8\x0c\x6e\x85\xf0\x3d\x6b\x0a\xd1\xd5\xa1\x2a\x92\xf1\x8a\x84\x5a\x14\x99\x01\x94\xa5\xca\xf7\xa5\x77\xe7\xe5\x7c\x4f\xba\xd9\xfe\xff\x3b\xd3\xf1\x09\x8d\x1c\xb3\x05\xda\x38\x18\x5e\x9c\xd6\x02\x50\xa7\x03\xed\xc4\x67\x0b\x9b\xd4\x74\xab\xce\x6b\xd2\xc2\xf9\x46\x79\xb5\x61\x3a\xb6\x50\x56\xe0\x06\x49\xc7\xb7\x0e\xee\x53\x26\x20\xca\x39\x72\x94\xaf\x9a\x70\x99\xc2\x86\xef\xa3\xf9\x9e\x9a\xeb\x10\x74\x09\xae\x83\xbe\x36\xee\x2f\xcb\xaa\x3a\x35\xee\xa5\xb9\x43\x1c\x55\x60\xe5\x06\xb0\xc8\x8e\x4e\x83\x08\x6d\x98\x86\xa9\x69\xf9\xb9\x28\x60\x05\x62\x27\x51\x1b\xdf\x0f\xa2\x24\xdf\x55\xdd\x74\x86\xb0\xd1\x25\x20\xc2\xb0\x4a\xab\xeb\x62\x57\xf7\x49\x4a\x17\x35\x7a\xff\x39\xad\x41\x5c\xcf\xad\x89\xf7\xa9\x1f\x46\x85\x30\xf8\xb0\x78\xce\xea\xe4\xf9\xac\xa3\xca\x8f\x6d\x5c\x08\x2c\x50\xa2\xbb\x6a\x25\x5e\x54\x9e\xfd\x63\x9b\xe4\x26\x4c\x63\x18\x90\xa0\x4d\x0f\x25\x78\x7e\xdd\x11\x26\x59\x92\x16\xa4\xd3\x58\x48\x0f\xd3\xa9\x06\xb9\x18\x7c\xca\xf5\xf7\x8b\xa8\xba\xf7\xb1\x49\xc0\x84\x97\x6e\xa8\x9f\x68\x4e\x0b\xd9\x1f\x99\x6b\xe7\x85\x35\x30\xd8\x47\x6b\xff\x91\x8e\xaf\x19\x6e\x01\xa4\x89\xf6\xf1\x51\x35\x7b\x38\xf0\xe2\xc2\x2e\x5c\x2a\x5a\x54\xc0\x6a\x60\x0f\x3d\x81\xfb\x0d\x90\x07\x7b\xb4\x3a\x46\x54\xb5\xe7\x11\x30\x6f\xe1\xee\x88\x52\x8d\x5a\xd0\x31\x49\xb8\x50\x72\xa4\xbb\xbb\x35\xc8\x17\xbf\x09\x94\x46\xca\x54\x19\x43\x93\xad\x30\xcd\x32\x9b\x8f\xd3\xa4\x67\x39\x8b\x60\xaf\x61\xba\x2f\xe2\x3b\xec\x37\x5e\x1c\x75\xd3\x6c\x46\x93\x01\x79\x6e\xed\x24\xa9\xaa\xaf\xc7\x29\x3d\xb3\xde\x60\x9f\x86\x86\x84\x1c\x14\xb8\x0b\x57\x95\x55\x02\x6f\x64\xc1\x67\xfb\x55\xe1\x08\xb1\xa0\x00\x02\xf1\xb7\xc1\x53\x00\x04\xa1\x1f\xe9\xe2\x1e\xc0\x50\x60\x2e\x10\x7f\xf9\x75\x4d\xf1\xb8\xf7\x3c\x2d\x32\xa7\x51\xe6\xc5\x98\x2f\xa8\xb6\x62\x37\x2d\x86\x4f\xe2\x9b\xd8\x52\x4a\x9b\xaa\x9f\xc0\xd7\x4a\x72\x5e\x7d\x1e\xb6\xf3\x59\x0a\xcf\xe2\x4c\xe2\xc7\x85\x7b\xb1\x04\x54\xd1\x20\x69\xf3\x6e\x9a\xbb\x6a\x03\x7c\xbe\x98\xc0\x0b\x4b\x7c\x39\x50\xed\xeb\xbd\x1d\x8a\xab\x42\xd9\xac\x16\x05\xd2\xe9\x53\x5a\x4b\xf8\xc1\xd4\xca\x7e\x69\xfe\x70\x3b\x4d\x78\x70\xee\x4e\x19\xa7\x44\xb8\xa1\x16\x5c\x3f\x0d\x4b\x5a\x70\xae\xdf\x5b\x87\x22\xfa\xc6\xf8\x79\x9c\x4d\xfc\x26\xf0\x73\xa7\x9e\x0d\x97\x2d\xf3\x17\xd0\x56\x3e\xa6\xe4\x06\x6f\xe2\x88\x11\xf9\x1d\x4d\xe9\x4b\xe4\xf4\xa8\x6e\x24\x2a\xa1\xb3\x74\x78\xf0\xeb\x46\x38\x59\xbe\x6a\xed\xd8\x1d\x24\xc2\x72\xf2\x05\xe0\xb1\xe0\xd9\x29\xb8\x51\xde\x7f\x75\x46\xf5\xec\x36\x15\x91\x98\xfb\x8a\x68\xe0\xdf\x69\x92\xa0\xc9\xec\x8a\x35\xb1\x18\x33\x22\x55\x82\xdc\x3a\xda\x81\xaf\xe3\xbe\x60\xfd\xdd\xd6\xcc\x8a\x74\x0d\x30\x97\x17\xa4\x8d\xa5\xdc\xd2\x4e\x34\x0d\x88\xfb\x99\xb5\xaf\x59\xc5\xe4\x3c\x1a\x28\x0d\xad\xa3\x1a\x96\x1f\x97\xa3\xae\x08\x70\x80\x6c\x86\x33\x9e\x5f\x4f\xc9\x1c\x41\xe3\x31\x67\x96\x4d\x9a\x82\xab\x8f\x8d\x78\x0d\xe7\x02\xbf\x51\x6d\x80\x38\x4d\x97\xf3\x3d\x0a\xb5\xcd\xac\x07\x36\xeb\x0d\x94\xf4\xc4\x06\x75\xf6\x65\x97\x7b\x22\xd7\x69\x4c\x22\xc4\xde\xb7\x5a\x66\x22\xe0\xef\x5b\x67\xe7\x9a\x72\xd5\x41\x9c\xa6\xa3\x96\x2a\x99\xdf\x57\xdd\xa7\xf7\xd5\xfa\x1b\x47\x79\x51\x9d\x10\x07\x84\xc5\x07\x82\x3c\xbf\x9e\x76\x79\x5c\xa4\x6e\x68\xd6\x93\x30\xe5\x50\x1c\x07\x0f\x6e\xdd\x0a\x94\x1b\xba\xb7\x3b\x5b\x49\xc3\x2a\x6f\x76\x22\x78\x97\x15\x8a\xea\xb2\xe2\x66\x8e\x33\x3b\x48\xa4\x62\x43\x68\x38\xaf\x7c\xb2\xcf\x2b\x22\x6c\xb5\xfc\x29\x75\xa9\x4a\x57\x36\xfa\x81\x78\xb9\xb8\xfe\x6c\xaf\xee\x8e\xcc\xb5\x4b\xb6\xe0\x46\xd4\x3f\xae\xa4\xf8\x8e\xab\x02\x3b\x4e\x73\x62\x6c\x68\x40\x9b\xeb\xc9\x6f\x6a\x75\xc6\x04\xaa\xe1\x58\xfd\x90\xe3\xe3\xd7\x4d\xcb\x13\xb7\xad\xe5\x87\x4e\x28\x8d\xf8\x75\x43\x7f\xa7\xdd\x8f\x2c\x35\xd0\xb4\x24\xb4\x1f\x81\x30\x1c\x98\xc7\x4c\x94\x84\x81\xbe\x71\x42\x11\x31\xb2\x28\x1c\x9a\xac\xb7\xcb\xcf\x5a\x8e\xea\x67\xc4\x6b\x97\x27\xd9\x74\x9d\xfc\xaf\x74\xad\x80\x01\xa3\xac\x0e\xc5\x58\xb4\x5f\x48\xa3\x64\xb6\x5a\xba\xda\xc5\x48\xa1\x18\x5f\x76\x3a\x8f\x38\x21\x84\x33\xaa\x34\x05\x4d\xd6\x4d\x93\x9d\x1e\x01\xbf\xae\x04\x45\xaf\x05\xca\xa2\x86\x19\x7e\x9c\xab\x07\x1e\x3f\xbf\x3e\x55\x2f\x2f\xcd\x91\x66\x11\x70\x15\x38\x57\x3e\x56\x67\xcc\xc7\xd3\x58\x81\xfd\xed\xbc\x48\xc3\xe5\x61\x1a\x0b\xa2\xc9\xb1\x90\xfd\xe8\xe0\xa8\xaa\x59\x73\xb1\x62\x90\x1a\xe3\xff\xe4\x4b\xe4\x77\xca\x9a\x7a\xd9\x66\xb1\x28\xd1\xe3\x4e\xbf\x15\x78\x78\xe0\x5b\xde\xe4\x27\xab\xb6\xa2\xb8\xa5\xa3\x87\xc7\xc7\x2e\xbf\x99\x1a\x74\x01\xdc\x17\x79\xc1\x1e\x3c\x24\xd4\x6b\xfc\x7a\xca\x3d\xe3\xe0\xc1\x76\x94\x14\x59\xda\x2b\x43\x0b\x05\x64\x49\xc5\xe9\x6e\x4b\x8e\xae\x18\x75\xf0\xfa\xe2\xd7\x1e\xf2\x14\x8d\xba\x33\x3e\x0c\x41\xd1\x54\x8e\xfd\x6a\x9d\x4a\x68\xd8\x7e\xb7\x5f\x79\xa5\x6d\x7b\x65\x68\xbc\xdf\xad\xe6\x12\xcb\x8a\x79\x4a\xb9\xd6\x25\xc5\x30\x5e\xdb\x4d\x9b\x9d\x65\xa0\xb5\xb7\x2f\x54\xc6\x14\x2b\xf8\x65\xaf\x1e\xe8\x30\x7d\xc0\x35\x61\xc5\x5c\xc2\x95\xf2\x5f\x2b\x80\xe2\x28\x4d\xa2\x22\x85\x08\x0f\x72\x16\xe4\xb4\xa8\x34\x4e\x4d\x94\xf4\xe5\xf5\xc9\xb3\xf5\x5a\xf5\xe0\xc1\xf6\xd2\xdc\xd2\xa3\xd5\x9d\x42\x0c\xba\xa6\x64\xab\xaf\x53\x7f\x19\xe9\xc7\x77\xb0\x33\x90\x7e\xb0\x9c\xa5\xf3\xdb\xf4\x2a\x2d\x47\x03\xe5\xf8\xfd\x65\x3a\xd9\x59\x60\x2a\xf0\xd0\x82\x73\x0a\x22\xd0\x2d\xe3\xe5\x96\xd7\x19\x7a\x07\xc9\x13\xbf\x69\xea\x48\xe5\x45\x3a\xa6\x3f\x40\xc6\xf0\x06\x7e\x17\xbf\x51\x8a\x3f\x03\x53\x0c\x6d\x16\x25\x83\x9d\x3e\x10\xde\x57\x34\xf8\x4b\x38\xa5\x90\x8e\x0d\x27\xea\x20\xd5\x22\x0f\x7f\x54\xa7\x94\x27\x83\xbd\xf4\x75\xda\x74\x8b\x07\xe3\x34\xcd\x56\x02\xb1\x0b\x7a\xf6\xb8\xe8\xf4\x42\x5b\x4e\x00\x0b\xcd\x68\x17\x22\x1d\xd5\xe7\x16\x4d\x56\x9d\xec\x92\xcf\x44\x19\xfb\x8b\xe0\xbf\xb7\xf3\xb4\x92\x84\xed\xdb\x24\x67\xeb\x55\xe6\x4f\xd3\xed\x16\x2e\xf5\xc3\x1a\x2e\x8e\x1e\x07\x2d\x04\xcc\xe2\xd1\x43\x71\x1e\x40\x8e\x67\xf9\xae\x2b\x12\x33\xbb\x96\xa4\x71\x4f\x46\x5c\xc2\xbc\xa1\x5f\x27\x7d\x85\xed\x27\xc3\xe1\x17\xdb\x36\x19\x10\x16\xeb\xc8\x9c\xa4\xd0\x81\x3f\x33\x37\x6b\x60\x9d\x6e\x9a\x60\x04\x83\x18\x72\x56\x01\x48\x91\xf3\x48\xaa\x5d\x2d\x50\xfe\x37\x35\x23\xae\x38\xea\x96\x2d\x35\x2c\x67\x01\x66\x31\x85\x6d\xa8\x0b\x87\xe5\x88\xcb\x5e\xb1\xf0\xab\x1e\x83\x20\x26\x25\x2b\xc8\x87\xd6\x66\xb3\xbe\x10\xf9\xb1\xbe\xea\xd3\xb4\x73\x45\xb7\xdc\xb7\x10\xaf\xd5\x7c\xca\xca\xa4\x78\x82\x7e\x19\xd0\x1d\xb3\xeb\xb8\x8b\x8e\x44\xe2\x24\x17\xe0\x7e\x82\xca\xe3\x0d\x5a\x20\xf8\xe8\x47\xd7\x7d\x86\xfe\x75\x1c\x36\x38\x79\x1e\x01\x18\x13\x31\xe5\x63\x20\x9c\x38\x25\x53\x1a\x1b\x37\x02\x35\xc3\xba\x1b\xcc\x56\x65\xa3\xcb\xdc\xaa\xb4\x1c\xd1\xf0\x12\x96\x1e\xda\x22\x67\x1e\x3a\x21\x35\x51\xa6\xc7\x9d\xe8\x24\x71\x01\xc5\x6f\x1a\xbd\x10\xc9\xcd\x82\x7b\xe3\x38\x7d\x8e\x6b\xa5\xf7\xe3\x81\xd7\xac\xef\x47\x61\x11\x15\x51\x5a\xf2\x3f\x47\x0c\x62\x9d\x4e\x7e\xa3\x04\x30\x7a\xd1\xc0\xe6\x88\xd2\xd5\x3f\x10\xfd\xd6\xea\xbe\x8a\x7c\xab\x57\x83\x33\xa3\xa8\x47\x2a\x11\xcc\xf7\xa4\xdb\x8c\xec\xe4\x5e\xa0\x64\x06\x36\x69\x53\x4a\x9a\xa6\x64\xe6\x4e\xab\x06\xf5\x38\xb3\x79\x54\xd5\xdd\x4f\x78\xb7\xe7\x9d\x90\xe0\x41\x68\xf9\x1b\xc4\x79\x7c\xcc\x45\x74\x63\x70\x93\xae\xe1\xcb\x54\xfc\x78\x01\x0f\xf5\x5d\xd8\x3f\xe0\x99\xbc\x8f\xa7\x8d\x72\x62\x57\x47\x81\x5c\x7e\x7f\xe2\x93\x11\xd6\xa3\xc0\x82\xda\x47\x8b\x08\x9d\xca\x9b\x13\x3d\xb0\xfc\x48\xe1\x01\xbf\xef\x54\x2b\x88\x7c\x60\x4d\x5e\x50\xd8\x44\x84\x87\x6b\x38\x92\xaf\x59\x12\x58\x13\xe6\x83\x2a\x8f\xb0\x11\xc4\x47\xac\x41\x9e\xd4\x46\x55\x40\xa6\xaa\x13\x10\x8d\x0b\x04\x15\x61\xc9\xa6\xc0\x3b\xf5\x9f\x41\x17\x46\x82\x97\x0f\xe9\x3d\xc2\x28\xac\x55\xd5\xa3\x73\x40\xf8\x38\xf0\xfd\xdb\x8f\x5d\x84\x4a\xca\x28\x37\x09\xfb\x56\x23\x67\x87\xd0\x1f\xbf\xae\x4e\x77\x09\x9e\x51\x3e\xce\xd2\x71\x9a\x11\x7d\xb6\xb0\xf1\x1a\xc1\x04\xb1\xae\x3e\x98\x78\x1a\x06\x3e\x40\x44\x2a\x5b\xbf\xfd\x79\x7e\xa8\xaf\x37\x8d\x71\xd2\x6e\x1e\x5a\x4e\x9f\x9c\x2b\xa3\x77\x68\x74\xe9\x13\xf3\x02\xd1\x40\xac\x9d\x1e\x08\xba\x60\xef\xe1\x6c\xbd\x82\x04\x00\xfd\xc0\xf7\xea\xcc\x97\x11\x33\x5f\xa4\x8b\xa9\xf6\xee\x89\x40\xf7\x47\xbe\xf0\xfc\xac\xd2\x70\xa2\xbe\xf8\xcb\x4e\xc1\xd4\xfb\x2e\x7f\x4c\x17\x2e\x5e\x58\xfe\xa8\x89\x4d\x32\x28\xcd\xc0\x82\xfd\xe4\xba\xcb\xce\xc6\x1e\x59\x37\x32\xd6\x9f\xe2\xf7\xf2\x1b\x65\x62\x68\x5f\x1d\xdb\x2c\xb2\x49\x68\xf7\xa8\x56\xc9\x79\xba\xa7\x6c\x49\x48\x1f\x83\x06\xc2\xae\x4e\xb5\x34\xc4\xaa\x90\x7e\xbc\x13\x0f\x71\xce\x3d\xf7\x95\x80\xcf\x0d\xdc\x40\x00\xc6\x6e\xba\x5b\x4d\xa2\x26\x99\xdd\xad\xca\xeb\x9f\xd0\x27\x00\xbb\xb3\xa5\xf2\xb8\x9d\x04\x66\x13\x69\x2e\xfa\x8d\x58\x38\x78\x1c\x48\x1d\x3f\xc4\x66\x46\xe3\xfe\x4f\xdd\xd7\x24\x26\xca\xd2\x6e\xa4\x8a\xac\x8b\xba\xdf\x30\x2d\x79\x5b\x25\x96\x49\x98\x96\x99\x00\x95\x85\xce\xa1\xa8\x1d\x0d\x07\xd6\x62\xdb\xe6\x63\x09\xbb\xec\x5a\x8c\xbb\x23\x16\xc6\xdb\x53\xe8\xa5\x39\xe2\x3f\x44\xf9\x90\xba\x08\x47\xe6\x74\xfb\xfc\x05\xd7\x3e\x7f\x56\x95\x39\xc4\xcd\x23\x4f\x45\xdf\x2c\x3a\xa7\x9a\x45\xe7\x14\x2d\x2e\x2f\x47\xa3\x14\xd2\x71\x18\x40\xdf\x57\x16\x59\x1b\xb5\xdc\xda\xa3\x54\xc2\xd8\x3a\xad\xdf\x17\xbc\xe8\x83\x92\x93\x74\xb2\x4d\x69\x19\x93\xdc\x04\x05\x07\x31\xdb\xf2\x1c\x9f\x0b\x81\x70\xfb\xc6\xc3\x28\x4e\xf3\x74\x3c\x64\x83\x2c\x3c\x21\xc8\x4c\xf1\x6b\x55\xe8\x98\xde\x28\xca\x6c\x6f\x86\xe2\x2f\x72\x11\x60\xcb\x9d\xea\xb2\xc3\x94\x4d\x7b\xd5\x1d\x99\x6b\x9b\x38\xed\x17\xd4\x27\x02\xe6\xf7\x7b\xd8\x7b\x0e\x58\xe0\x44\x6e\xaf\x4e\x65\xb3\xc4\x5d\x31\x3c\xca\x70\xb4\x6a\x75\xcf\x94\x21\x61\xbe\x9c\x2b\x89\x50\xf0\x4c\x84\x72\xee\xcf\xbe\xd8\x86\x43\x9b\x55\x27\xa5\x32\x16\xc6\xa1\x21\x88\x64\xc7\x80\x0c\x87\x91\x5d\xa1\xbb\xdf\xf2\x81\xed\xa8\xca\xae\x7c\x2f\x84\x0e\x85\x5d\xca\xdf\xf8\xbb\x13\xa5\xea\xf7\x25\xba\xb3\xe8\x8c\xdd\x53\xfd\xae\x7b\x74\xf1\x38\x36\x5a\x74\x6c\x00\x52\xf4\xc8\xba\x0f\x05\x2b\x51\x1a\xb3\x9e\x5d\xf5\x8f\x1d\x9e\xdf\x17\xf8\xa7\x03\x65\x6d\xf8\xa7\xca\xaf\xe8\x9b\x54\x5d\xf0\x5f\x04\x6a\xc0\xa8\xcd\x93\xff\xc3\xcf\xe6\x3b\x95\x69\x2d\x0a\x23\x8e\xe7\x74\x0f\xd1\xa5\x3a\x49\x10\x12\xdc\xf6\x31\xb7\xa0\x81\xfa\xf8\x17\x13\x91\x5f\xe9\xd9\x30\x36\x79\x1e\xf5\xbd\x9e\x04\x67\xf8\x74\xcf\x24\xdb\xf7\xe9\x40\x38\x34\x59\x9c\x16\x85\x55\x1e\x96\xdf\xd7\xd3\xb7\xef\xab\x7f\x5c\xd8\xd8\x92\xe6\x1c\xe6\x6a\x0e\x69\xac\x04\xd8\xb7\x37\x87\xf6\xcf\xb7\xa9\x16\x72\x63\x92\x2d\x35\x26\xd9\x52\x16\x08\x44\x76\xcc\x61\xe4\x01\x34\x25\xd6\x0f\x8a\x26\x48\x93\xa1\x0d\x7e\xa6\x99\x2e\x93\x0f\xd3\x32\xee\xd9\xac\xa5\x50\x69\xf4\x5d\x82\x34\x71\xfe\x2c\xc3\x2c\x2d\x07\xc3\xc7\xa9\x65\x28\x7d\x49\x1a\x63\x62\x0f\x60\x3f\xe0\xf9\x1d\x9b\x68\xd5\x28\x8a\x0f\x18\xae\xcc\xac\x7b\x74\xe8\xb3\x1d\x37\xb9\xfc\xf5\x67\x00\x6a\x96\x53\xb2\x7a\x62\x02\xe5\xa1\x47\x5c\x93\xb6\x14\x9c\x55\xcb\xa9\xe3\x3e\x43\xad\x78\x4a\x97\xec\x3f\x9e\x42\x96\x1c\x58\x68\x9b\x91\x29\x6c\x89\x3a\x1a\x5d\xe3\xe3\xf4\xab\xc4\x1f\xcf\x83\xc4\x6f\x3b\x38\xe6\x6a\xda\xed\x02\x5d\xc0\x1b\x0c\xba\xc0\xfc\x7a\xdd\xb7\x03\x86\x26\x49\x57\xac\x4c\x5a\x80\x41\xdc\xdd\x51\xca\x1f\xac\x3c\xc1\xdb\x68\xaa\x85\xb9\xf8\xe2\xa1\x76\x6e\x57\x6c\x52\x0c\x31\xc7\xe4\x4d\x30\xd9\x8e\x4c\x64\x1f\xdd\x26\xe0\x7b\x1e\x66\x66\xcc\x70\x3c\xec\x81\xdb\xea\x4f\xe0\x91\x87\x74\xf4\x7d\x35\xfc\x4e\xcc\xc8\xf6\x76\xa9\x46\xcd\x51\x55\x4c\xdc\x51\xf2\x6d\x8f\x74\x7c\x2b\x8e\x19\x78\x4e\xc6\xde\x2b\x85\x3f\xd0\x18\xcd\xc2\x24\x3d\x93\xf5\xf6\xd0\xd2\x44\x92\x0a\x30\x3e\xfb\x4a\xe3\x53\x10\x36\xee\x69\x25\x51\x9e\xd7\xa0\x4f\xf1\x53\xfa\x11\x18\xb3\xfd\x3b\x24\x1d\xfc\xaf\xd0\xbb\xe6\x0f\x6e\x54\x8e\xee\xa6\xe9\xc8\x15\xc0\xc8\xb3\x7e\xa2\xa8\x09\x97\x55\x03\xe6\xcc\xc4\x13\xef\xc9\x3b\x20\x27\x75\xde\x01\x91\x04\x15\x19\x74\xc9\x69\x76\xd0\xb7\x23\x8f\x85\xa3\x1b\x60\x68\x7c\x59\x88\x92\x5b\xb8\x2c\xe9\x53\xc9\xc2\x1a\xda\x78\x6c\x7b\xbb\xbc\x12\x07\x37\xba\x28\x34\xcf\x3f\xa3\x69\x77\xdf\x46\x84\x94\xbd\xd8\x72\xda\xa7\x3b\x50\x7b\x48\xfc\xa8\xcd\x61\x56\x6c\x06\xa2\xc8\xc3\xe4\xe6\x6b\x7d\x8f\x7e\xf1\x18\x7d\x14\xe6\x2d\x3c\x93\x04\xb6\x12\xb5\x39\x26\x59\x8f\x76\x14\x1b\xf8\x03\xd5\x82\x00\xab\x06\xb3\xea\x8d\x89\x97\x7e\x81\x4e\x02\x80\x10\x6f\xd0\x8e\xc6\xdf\xfe\x5f\x13\x75\x1c\xeb\xf6\x75\xdf\x80\x93\x89\xf4\xe3\x8a\x62\x6d\x1f\x47\x3f\x07\xc9\xdc\xb5\x40\x6b\xc5\x2a\x80\xc8\x3d\xd5\x8b\xae\xb7\x1c\x56\x6d\xf6\x84\xf7\x00\x64\xb1\x54\x94\x5d\x77\xf8\x44\xc0\xef\x7c\xa0\xcc\x80\x6f\xa3\xfb\x24\x7b\x4e\x8d\x40\x37\xa9\x94\x46\x6a\x72\x53\xb1\x75\xae\x02\x2f\xce\x9d\x6c\xba\x45\x6c\x28\x8a\x4b\xc6\x99\x7e\x0d\xeb\x48\xfa\xdd\xd5\xc5\xa0\xce\xbb\x83\x8b\x41\xdc\x3b\xa6\xd0\xde\x26\x0c\x4b\x8c\x00\x8e\xcc\xb1\xda\x2d\x9f\x9c\xfc\x46\x51\xdd\x12\x1b\x22\xe7\x50\xc7\xed\xbc\x3b\x49\x15\xc4\x69\x18\xc5\xf6\x69\xda\x19\xac\x86\xa5\x8e\x8d\x19\xa0\xe0\x19\xfc\xaa\x45\x6c\xd8\x66\x1e\x83\xc7\x2d\x1a\x12\xb1\xe8\x7e\x40\x2d\x09\xb1\x7c\xaf\x6e\xa3\xf4\x88\xe9\xaa\xa4\x7c\xf5\xd2\x66\xff\xf7\xc4\xe7\x9d\xc7\x02\xe5\x5c\xb3\xab\xa3\x52\xdd\x63\x5c\xd7\xea\xa4\x10\x65\x25\xfb\x06\x8b\x9d\x6e\xb5\xc0\x10\x60\x2f\xd5\xfa\x7a\xfd\x62\xd8\x52\x93\xe2\x3f\xe0\xe7\x2d\x2e\xa3\x9f\x50\x95\x0b\x71\xf3\x78\xdf\x30\x7a\x91\x16\xa1\x20\x19\x9f\xd6\x68\xca\xa2\xaa\x42\x71\xab\x01\xbd\xbc\xa0\x60\x98\xd3\xd3\x13\xf2\xca\xc8\xd2\x9c\x45\xca\xc5\x5a\xcb\x37\x51\x4f\x4d\x15\x0f\xd5\xb1\x00\xfb\x6b\x96\x33\x10\xaa\x68\x4b\xf9\x76\x3e\xe6\x36\xfe\x7f\xf2\x4c\xcb\xe9\xa1\xcd\x62\x68\x8d\xe2\xeb\x74\xa0\xac\x0a\x98\xd3\xe0\x04\x16\x0f\x28\x6a\x6d\xb5\x2c\x25\xa1\x56\x39\xfb\x9e\xf5\xea\x41\xe1\xc4\xbf\x17\xf8\x8d\xfc\x41\xa0\xa1\xcd\x3b\x3a\x5a\xd9\x43\xa1\xb0\x3e\xc2\x52\x45\x61\x75\x85\xb6\x0e\xfe\xd5\x9b\x13\x05\x1f\xfc\x90\x56\x06\xce\x56\xa6\x28\xb9\x64\xc0\x65\xa0\xb3\xe0\x69\xb3\xac\x85\x32\x71\x8d\xd3\x12\x40\x11\xdc\x96\xf3\x6a\xef\x9d\x7f\x68\x7b\x8b\xfd\x4e\xa4\xce\x42\x16\xc9\x43\x2c\x7e\x33\xf5\x4c\x28\xad\xcf\xa3\x38\xb2\x70\x73\x59\x70\xa7\x91\x1f\x66\xe2\x8c\x81\xee\xc2\xd5\xa9\x4f\x38\xb0\xd0\x1e\xdb\xbc\x88\xc2\xa8\xc7\xa8\x25\xdd\x70\xe6\x2e\x20\xa5\xb2\x18\x9e\xb5\xd6\x3f\xa1\xac\x67\x4c\x42\x1b\x77\x5f\xf5\x14\x10\xc0\x78\xa6\x2c\x68\x1b\x65\x6f\xda\x42\x4e\x85\xc7\xd3\xea\x54\x65\xaf\x34\xbc\x54\x9c\x42\x57\xd2\xe1\x1e\x5c\x47\x02\x20\x1e\x6c\x74\xe6\x5c\x89\xca\x23\xfd\x6a\xa7\x70\xe5\x83\xd9\x95\xa9\x52\x96\x32\xcc\x22\xb5\x1a\xc3\xfa\x1d\xd5\x3d\xfd\x8e\x82\x2e\x14\x6b\xe3\x88\xc6\xb2\xfb\xc5\x1b\x14\xd0\x05\xa1\xdf\x3c\x0c\xd9\xdf\x37\x59\x75\xca\x17\x8c\x2a\x12\x03\x63\xba\x2b\xfc\x66\xaa\x3a\x7b\x69\xb1\x5d\xe6\x22\xa3\xeb\x08\xd4\xd5\xdd\x12\xe9\x3a\x3f\x8f\x36\x65\x2f\x2a\x72\x45\x29\x64\x79\x2b\xaf\x3d\xec\xa2\x42\x99\x0f\x09\x7b\xa1\x5a\x0a\xae\x33\x09\xd4\x28\xbb\x68\xd3\xbe\x17\x82\xe9\x53\xea\xec\x2e\x93\xc2\xb2\xc2\x08\xda\x49\x70\x49\xc0\xd9\x7c\x85\x4e\x3e\x69\x91\xfa\x46\xa7\x2d\xc2\xe7\x67\x74\x47\x9b\x4e\x1b\x2c\xa5\xbb\x81\x37\x4d\x38\xed\x0a\x6e\xf1\x7b\x9f\xd5\xfd\xe9\x4b\x1a\xe1\x8d\xf9\xad\xf2\xbd\x16\x7e\x56\x95\xf8\xba\x2a\xa8\xcc\x8b\xb4\xb7\xd6\xa2\xd3\xc2\x81\x5f\xfc\xeb\xda\x21\x9c\x44\x09\xd6\x3b\x72\x8b\x9f\x2b\xb6\x08\x06\xda\x48\x27\x8e\x2b\x11\xd1\x9e\x25\xed\xf1\xcc\xc0\x40\xeb\x80\x57\x2e\xad\xee\x31\xee\x1f\x24\x1a\xc4\xad\xc1\xdf\x4b\xb7\x9c\x9c\x97\xc3\x85\x9a\xee\x89\xf2\x86\x2b\xf2\x7d\x0a\xd7\xc7\x41\x86\xa2\xf2\x17\x3f\xb1\xae\x95\x27\x70\xb7\xe8\x79\x7e\xb7\x4d\x37\x08\x25\xd7\xb3\xeb\xca\x61\x7d\x13\x61\x0d\x11\xeb\x13\x1d\x4f\x50\xfc\x77\x9f\xa6\xe5\x80\x42\x76\x17\x36\x27\x9a\xad\x97\x27\x3e\x9d\xda\x47\xa5\x0c\xe6\x58\x5b\x9a\x22\x6f\xc6\x3b\x95\x58\xca\xd7\xf5\x30\xed\x86\xd2\x11\x7b\x57\x95\x45\xef\xd3\xde\x96\xa6\x62\xc3\x26\xc8\x0d\xca\x5d\xef\x7f\xa7\xc8\x74\x1a\x91\x5b\x05\xbd\x01\x4d\x75\x3d\xe5\x0a\x7a\x6c\xd2\x5a\x52\xfe\x35\xe9\xc8\x3e\x45\x37\x44\xa8\x22\x1e\xc7\xfd\xe5\xa7\x3b\xda\xa9\x92\x7d\x7b\x98\xf3\xaa\x24\x7e\xd9\x55\x17\xeb\xfe\x9a\xea\xd9\x70\x84\xc3\x27\xef\xa5\x93\xc9\xe9\xf5\x1e\x11\xcc\xe3\x1d\xcd\x3b\x64\x77\x33\x27\x70\xb2\x24\x68\xce\x1f\x52\xb2\x2a\x6b\x43\x8d\x6d\x8e\x29\xe5\xa2\xeb\x5a\xa2\x25\xcd\x18\xb0\x21\x6d\x29\x2f\x7a\x78\x41\x19\xf1\x92\x24\x6a\x28\xc3\xe4\x87\x8c\xa9\x1a\xc0\xfe\xf9\x2f\x8f\x79\x43\x0a\xee\xde\x07\x9d\xb7\x68\xf1\xd6\x34\x1a\x51\xce\xdd\x72\xf6\xa1\x71\x9a\xe6\x04\x87\x5f\xf0\x6a\x20\xde\xc8\x66\xd3\x49\x85\x8d\xf3\xb5\x38\x8e\x20\x90\x21\xcc\x21\x38\xd8\x20\x5a\xee\xa1\x65\x2a\x54\xba\xa7\xdc\xe5\x87\x6b\x61\xec\xda\x23\xa8\x48\x4e\x2b\x2e\xdb\xe9\x46\x39\x89\x61\x9a\x17\x28\xc0\x6a\xa9\x81\x78\x05\xb6\x9c\xed\xd2\xcd\x40\x9a\x31\x83\xcc\x24\xbd\x70\x18\xc5\xbd\xcc\x26\xb4\xeb\x85\x5d\xad\x54\x25\x6e\x6b\xbf\xdf\x53\xae\x91\x43\x46\x37\xf9\xd8\x9a\xcc\xf2\xc4\x0f\x89\x1e\xdb\x8d\xf0\x1b\x17\x07\xbb\x69\x31\xb4\x19\x90\x43\x2f\xd4\x7b\xf4\x38\x7d\x77\x22\x91\xc2\x22\xb9\x3b\x55\x78\x1f\x58\x68\xaf\xa5\x65\x31\x64\x15\x90\xa6\xd1\xe7\x93\x4a\x3d\x79\xc5\x26\xe8\xf4\x61\xc1\x5f\x57\x78\x9b\xeb\x53\xa8\x88\x23\x73\x8b\xed\x32\x19\x5a\x13\x17\x43\x56\xe4\xc0\xa9\x82\x24\x98\x5f\xab\x59\x5a\x18\x65\x61\x39\x5a\xb1\x49\xd1\xaa\x69\x1b\xb6\x9c\xbc\xdc\x2d\x6f\x33\x5c\x76\x6d\x62\xf3\x2f\x96\x36\x5e\x9b\xf1\xcc\x3f\xd8\x13\x09\x95\x51\x49\x43\x5d\x54\xec\xd7\x7e\x94\xe5\xc5\xe3\xd5\x3f\x44\x1d\x7d\x95\xe2\x80\x74\x4f\x54\xe3\x87\xc7\x78\xac\x16\x49\xbf\x83\x8b\x64\xf8\xab\x63\x1b\x9e\xc5\xfd\xe6\xe6\x15\x80\xf1\xfc\xf7\x3a\x73\xc4\x14\x49\x72\xd5\x6a\xaf\x3b\x45\x41\x37\xb1\xdd\xb7\xae\x84\xca\xae\x4e\xcd\x26\xe7\x0f\xb7\x87\xb6\x37\x70\x6b\x18\x8f\xe8\x81\x7a\x5c\x0f\x6a\x66\xac\xfd\x28\x8c\x6c\x12\x46\x36\x9f\xf1\x90\x46\x6c\x7a\x67\x10\x7e\xc0\x4b\x15\x3f\x4c\x4a\x7a\x25\x4a\xc2\x2a\x5d\xf4\xac\xff\x0f\x95\x44\xc7\x9f\xe0\x36\xb3\xa3\xe4\xd4\x2a\xa8\x8a\x80\x22\x0a\x97\x6d\x91\xa5\x49\x5d\x98\xd2\xd7\xe6\xd3\xcd\x6b\x22\x99\xc5\x69\x38\xeb\x41\x46\xd7\xb5\x8c\xe2\x09\x3c\x27\xd7\xd9\xa8\x12\x06\x81\x2b\xf8\xd4\x27\x5f\x8d\x92\x01\xfa\xcd\x4e\x1e\xf0\x80\x93\x0a\x9c\x3c\xec\x82\xc3\x61\x14\x9a\x41\x3a\xe3\x17\xde\xb9\xc9\xcc\xa1\xdf\xfd\x2d\x06\x1e\x7c\x7b\xa2\x50\x4a\x9b\x4d\xca\x70\x55\x9c\xc1\xe1\xed\xf4\x57\x4e\x2b\x69\x9d\xd3\x53\xed\xd2\x03\x0b\xed\x6e\x84\x76\x29\x56\x02\xe7\x7f\xfc\xa6\x69\x25\x84\x69\x52\x88\x7b\xa1\xd3\x54\x72\xd1\xe8\x7c\xa0\x35\x93\xd3\xae\xe9\xc6\x6b\xfb\xe8\x96\x29\x51\x67\xe1\x9b\xfd\x38\xf0\x58\xec\x37\xa9\xc0\x41\x21\xfb\x5d\x35\xe9\xba\x8d\xf2\x0a\x1d\x88\x77\x30\x11\x76\x9a\x38\x4b\x73\x4e\xf7\xd3\x4f\x60\x1f\xa1\xd9\x98\x9c\x61\x38\x17\x30\x1c\x3b\x8f\x27\x89\x3e\xda\x57\x95\x48\xe0\xa0\xac\x8a\x8a\x96\x93\x51\x5f\x57\x2d\x75\x4e\x6b\x30\x4d\xdd\xd9\xf1\xb5\xac\xe9\x7d\xa1\xcc\x0b\xcb\x64\x2e\xd7\x69\x72\xb3\x8d\x16\x52\x18\xdd\x1a\xc6\x5a\xbd\xa3\xc8\xb3\xc7\x5c\x73\x6b\x75\x18\x8d\xf2\x35\x45\x35\x44\xd3\x8f\x5f\xbb\xe3\xa4\x6b\xe2\x78\x6c\xb2\x65\x8e\x9c\x62\xb2\xef\x9f\xc0\xe6\xd4\x43\xfe\x4c\xf5\x47\x3d\x85\x83\x3c\x1e\x28\x36\xc4\x71\x55\x0e\x0e\xcb\x81\xdd\xe9\x51\x3f\x97\x26\xaa\x00\xc6\x44\x13\x01\xe6\x36\x5d\x01\x5a\x57\x5b\xe8\x3a\xf2\xc8\x5d\xdd\xd4\x5e\x56\x0e\x72\xd4\x7a\xe8\xea\xfd\x45\x8d\xe9\xd6\x72\x6a\xaa\x1f\x6a\x55\xbc\x32\xab\x4e\x96\x7d\x7e\x62\xc6\x22\x16\x28\x0b\x4f\x4e\x54\x09\xf1\xf5\x89\x9f\x8f\xbf\x8f\x7d\x89\x2a\x1e\x0d\x2d\x74\x14\x66\x91\xf7\xa0\x80\x43\x32\x80\xfb\x74\x9f\x96\x0c\xfe\xe0\x1a\x65\x37\x5a\x76\x89\xff\xfd\x44\xa1\xb9\xcf\xb9\x44\xa0\x17\xe5\xe3\x34\x37\x71\x4b\x91\x1d\x4f\x2b\x5e\xca\x69\x35\x4a\x2b\xf3\xd2\xc4\xf1\xda\x6e\x8f\xea\x64\x1d\x12\x1c\xeb\x57\x34\x16\x12\xad\x2f\xac\x62\x6e\x3e\xe0\xcd\xa3\x1d\x75\x0a\xdf\xe7\x35\x8d\xa0\xf0\x13\xc5\x29\x09\xd3\xd1\x28\x2a\x0a\xcb\xa2\xf2\x22\x7c\x45\x1b\xc8\x95\x38\x5e\x7d\xf4\xbc\xd2\x13\xba\x8d\x1b\x5b\x83\x2d\x21\x13\xdf\xd3\xd1\x8d\x24\x0c\xfc\x71\xd7\x2e\x35\x02\xd3\xbb\x59\x94\xf8\xa3\x42\x2c\x37\x3d\x12\xfa\x78\x83\x91\x22\x11\x98\xb2\x88\xab\x0e\xe9\x2c\xfb\xa9\xdf\x19\xa7\x01\x3b\xb4\xab\x6c\xdd\xa3\xec\xf4\x5e\xe6\x54\xf6\x6e\xa0\x34\xe0\x2e\x36\x38\x34\xb7\xa3\xa4\x17\x85\xa6\x60\xbd\x4d\x74\xc7\xd1\x30\xe5\xd7\x53\xb1\xb9\x3a\x10\xfa\x51\xf1\x5a\x1e\x8d\x46\x69\x22\x3d\x0f\x99\x18\x29\x31\x8e\x73\x0a\x30\x6e\xe2\x38\x5d\xdd\xd3\xda\x2e\xc4\x22\xdc\x0c\x7a\x06\xdc\xf8\xc5\x4f\xc6\xca\xf8\xcf\xe8\x92\x51\xe6\xfd\x41\x30\xcd\x93\x41\x14\x13\xc4\x0a\x1a\xac\x8f\x74\x9a\x3c\x6c\x6d\xd6\xe5\x53\x80\x9d\x6a\x02\x3f\x11\xa3\xa1\xd9\xaf\xd7\x9a\xde\xc6\xb5\xef\x1c\x0a\x65\xc1\x0f\x78\x9f\xf5\x9c\xbf\x34\x29\xb2\xb4\xfa\x8b\xb5\x59\xd5\xd5\x46\xbb\x5b\xd0\x21\x4a\xef\xf2\x2c\x62\x03\xff\x97\x06\xf1\x24\x56\xb4\xb4\x99\x13\x4f\x92\x63\xb6\xe5\xd4\x56\x9a\x8c\x19\x17\xdb\x23\xd3\xb3\x3b\x5b\xdb\x59\xe9\x4c\x0b\x09\xa6\x2d\xeb\x71\x31\xdf\xc0\xbd\x47\xd2\x70\xdd\x55\x00\x61\x5c\x16\x85\xcd\x14\x9f\x14\xb2\x18\xac\xd1\x8d\x42\x48\xa6\xcc\x8a\x01\xb5\xc8\x83\x23\xe4\xd9\xe8\x5a\xe0\x08\x3b\xad\x3d\xec\xee\x2b\x50\x7a\x3e\x4e\xb3\x22\xdf\xed\x61\x46\x40\x69\xe0\x34\xf8\x0a\x1d\x1f\xc8\xcd\x21\x16\xb8\x45\x66\x3e\x87\xb6\x4e\x68\x4e\xef\x2d\x74\x19\xf1\xef\xa6\x55\x08\x16\x16\xa8\x3e\xe5\xd1\xa4\x90\x06\x54\x12\xa3\x59\x03\xcb\x36\x8e\x2d\x86\x75\x68\x3e\x9c\xa1\xdf\xc3\xaf\x9b\x4c\x13\x42\x33\x1a\x33\xea\x0c\x27\xe9\x79\x3d\xdd\x3f\x5f\x83\x95\xe7\x65\x5c\xec\x51\x54\xb0\xf3\xc4\x64\xc7\xc9\x0e\xac\x15\x06\x7d\x98\x85\xb8\xa3\x72\xfe\x30\x37\x29\x98\x77\x25\xb5\x6d\x75\x77\x5c\x8b\x4b\xf5\x27\x1a\x28\xce\x3d\xbb\x12\x85\x28\x3a\x59\x3a\x94\x9e\xa8\xc8\x88\x36\x38\x2c\x0c\x4a\x51\xef\xc5\x50\x0e\x04\x51\x7e\xad\xf8\x2c\xcb\x99\xe9\x17\x1c\x07\xa4\x1d\xed\x3b\x1f\x97\x4f\x35\xa6\xa2\x43\x52\x16\x73\x43\x35\x44\x63\x04\x60\x76\xf2\x54\x66\x8d\x6f\x4f\xd5\x4b\x9f\x21\x09\xdb\x04\x3c\x9a\x97\xb9\x6d\x88\xde\x29\xbf\xf6\x82\xd6\x99\x35\x45\x2a\x4e\x90\x32\xc0\xf0\x38\x8f\x8b\x4a\xed\x76\x30\x88\xb8\xc5\x28\x26\x81\x74\x21\x02\x3f\x53\x52\x0a\x36\xab\x6e\xe7\xbe\xea\x5c\xe5\xcc\x2a\xf0\x30\xae\x8f\xf4\xa4\xe3\x67\x81\xd2\x02\xff\x7d\x65\x68\xfc\x9e\x56\xf9\xdb\x44\x64\xe0\x86\x82\xa2\x91\x5e\xc3\x46\xc6\x9f\x1c\x47\xf2\xe7\xb4\x1b\xaa\x6b\xc7\x57\xde\x0e\xd4\x14\xf4\x5a\xa3\x19\x7f\x66\x46\x51\x66\x5f\xab\x49\x71\x1c\xd5\x52\x1c\x47\x9b\x24\xfb\x88\xbb\x57\xd8\x01\xe9\x9b\x29\x13\x03\x4e\x5c\xf9\x8d\x12\xdc\xcb\xe3\xa8\xc7\x42\x3f\x08\x2b\x97\x29\xd7\xe7\xd7\xae\xc0\xce\x6c\x34\xea\x96\x59\x4e\xe0\x12\x0a\x34\x4c\xaf\x0c\x7c\xcc\xe7\x71\x37\x27\xc4\x53\x10\xba\x2a\x59\xb7\xb6\x2f\x74\x27\xc6\x8d\x23\x16\x08\x88\xfc\x49\x65\x31\xd2\x8b\x2c\xaa\x66\x15\x15\x5d\x88\x54\xf5\xb5\xe9\x66\xa9\xe9\xed\x55\x85\xcd\x29\xca\xac\x24\xb1\x51\x7b\xe2\x36\x8f\x2e\x70\x5e\x6d\xe0\xbb\xf1\xe6\x56\x5d\xec\x5a\x53\x8a\x94\x1c\xe4\x65\x25\x06\x7b\x19\xd5\x2c\xd7\x02\xda\x3f\xe3\xe3\x46\x8d\xc0\x41\x24\x03\x1d\x11\x0f\xf7\x05\xe8\x71\x55\x67\xe7\x71\x39\xc2\xcc\x0f\x8d\x09\xe6\x86\xf3\x1b\x07\x53\x18\x64\xa6\x27\xa2\xd0\x08\x2a\xdf\x54\xa6\x25\xdf\x9c\x78\x40\x4e\x94\xf4\xca\xbc\xc8\x22\x9b\xef\xa2\x93\xc0\x29\x5b\xee\x9f\xaf\xed\x64\x3c\xf3\xab\x0a\x96\xcc\x53\x7e\xbc\x79\x4c\xb5\x31\xaf\x29\x0a\x54\x95\xf0\x9a\x31\x62\x30\x57\x05\xb8\x97\x52\x22\xb8\x46\x95\x1d\x54\xb9\x24\xd5\x95\x2c\x1d\x44\xbf\x58\x64\x84\xfc\x2d\x20\x57\xf6\xa7\xe8\xc7\xa2\xfa\x3e\x49\xf7\x1d\x29\xe3\x9f\x6b\x2a\x22\x1f\x8f\x02\x96\x6b\x39\xb1\xb4\xfb\xb4\x8c\xd1\x6e\x64\x78\x34\x1e\xe7\xa3\xeb\x1e\x12\xf9\x73\x4a\x9c\xf9\x1f\x4d\x94\x17\x0c\x2b\xef\x61\x94\xf9\x46\xa0\xd8\x7f\x47\x11\x2c\x70\x6d\xbb\x3a\xaa\x1c\x14\x6e\x91\xb8\x00\x7a\x7b\xd7\x6f\xa9\x61\x41\x38\x34\x19\x57\x29\x00\x02\xb6\x3a\x4a\xdc\xf0\x1b\x81\xe2\x76\x6f\x2a\x3b\xaf\xbf\x0d\xfc\xe8\xe0\x76\x93\x1e\x4a\x66\x07\x86\xfd\xc3\xf9\x00\x0e\xf4\x61\xfc\xf7\x95\x88\x14\xc3\x1c\x48\x55\x3f\x27\x38\x02\x9a\x7e\x1f\x04\xde\x23\xf6\xba\xd2\x62\x05\x8a\x04\x3b\x08\xb7\x55\x7a\xa4\x4a\x4b\xec\x8a\x43\x96\x8d\x23\x93\xa0\x09\x80\xdc\xfc\xb2\xa2\x89\x9c\xc2\x6e\xc4\x2d\x9a\x3e\x27\x48\x8e\x72\x9c\x8b\x6c\x80\x88\x31\xf8\x46\xd5\xe6\xd4\xe9\x54\x9d\xe8\xe9\x68\x64\xb3\x50\xf2\x6f\xec\xe7\x1f\x04\x7e\x96\xf6\x03\x85\x4e\x4c\xb3\x68\x10\x25\x50\xa2\x9a\xf7\xc8\x16\x0f\xbd\xe0\x94\x16\xb7\xfd\xa2\x7a\x04\xd0\x88\x44\xc8\xbf\xaa\x80\xd6\x77\x6b\xae\xe4\xdb\x63\x32\xc0\x56\x65\x36\xce\xa2\xdc\x9d\x9f\xda\x29\x0f\x47\x3a\xce\x4f\xa1\x48\x6f\x3f\xde\x0f\xbf\xd8\xce\x53\x93\x51\x50\x60\xd4\x55\xe0\xa9\x41\x1a\x4c\x51\x44\xa3\x5d\x7e\x0c\x89\xa7\x88\x13\xef\x91\x4e\xb5\xdf\x85\x81\xee\xf5\x0f\x8f\x6b\x2d\x45\x2e\x9d\x90\xdc\x5f\x99\x4a\x9f\x96\x28\xe3\xed\x81\xf0\x81\x7b\x8b\xf2\x83\x5f\x4f\x1d\x64\xf3\x87\xdb\xab\x26\xcb\x4c\x52\xa0\x35\xe0\x8e\x18\x17\x6e\x2e\xd7\x34\x39\xca\x64\x19\x85\x97\x3b\xa5\xdd\xef\xbf\xa8\x24\xd6\x7a\x51\x5e\x98\xbc\xb0\xfd\x32\x56\xfa\x03\xac\xa1\xcd\x6f\x94\x51\xd0\xaa\x59\x7b\xb2\xfa\x20\xd6\xe0\x9e\xa8\xdc\x9f\x7d\xe9\x00\x95\xbb\x46\xe9\x9d\x83\x2e\x7b\xff\x1a\xe5\x9a\xce\x2e\xd1\x62\x44\x41\xe8\x07\x14\xb6\x77\x03\x15\x2c\xbf\xcf\x24\x0c\x24\x55\xe7\x6a\xd6\xbc\x0c\x18\xc4\x8a\xfe\x63\x0a\xb7\x88\x59\x97\xa9\x89\xc4\xaf\x11\x8e\x98\xb2\x34\x35\xc9\x3c\xfc\x22\x0d\x40\xe9\xea\xc5\x3b\xcf\x37\x80\xce\x04\x5e\x8b\x6c\x90\x26\x33\x0a\xd5\xfc\x4d\x4d\x65\x3f\x0d\x42\x09\x12\x94\xf3\xca\x66\xb0\x6b\xd7\xd2\xa4\xb7\xb3\xde\xdd\x76\xe2\x4e\x97\xd0\xc7\x72\x12\x11\x55\xa8\x74\x93\xe4\x03\x0b\x0c\x4f\xf9\xaa\x1a\xa1\xac\x66\x11\x63\x26\x51\x4c\x01\x1b\xc8\xaf\xb5\xdd\x85\xed\x0d\xf0\xef\x84\xd7\xe1\x57\xcd\x05\x85\x76\x2a\x93\x70\x68\xa8\x4e\x9f\xf1\x26\x1a\x37\x83\x9a\x9a\x57\xb5\xc4\xf1\x5c\x8f\x56\x35\xa0\x13\x80\xb5\x19\xdb\x6a\x51\x8c\xc2\x56\x7c\x4f\x65\x98\xdf\xc4\x92\xc0\x39\xfa\xa6\x5e\x9e\x99\x1d\x17\x2d\xf5\x1d\xd7\x70\x4a\xf0\x9b\x89\x36\x4c\x2c\xca\x2c\x2a\xd6\x54\x4f\xee\x86\x42\xa0\xb1\x63\x28\x4a\xad\x47\x3a\xfe\xb6\x57\x8f\x14\xd2\x23\x5e\x50\x8a\x9e\x9d\x88\xed\xd2\x2f\xc3\xd9\x03\xbc\x27\xeb\x5a\x34\x15\x51\x2b\x36\x2f\xd8\xcc\x5d\xe4\x2a\x69\xdd\x89\x5e\xe5\xf6\x48\x75\xf8\xc5\xf6\x70\x6d\x9c\x0e\xe2\xb5\xd0\x8e\x22\x08\x7b\x60\x99\x5f\x51\x1c\xbb\x2b\x8a\x69\xb3\x6c\x0a\xab\x4c\x2d\xa0\x8f\xed\x8c\x3a\xbc\x40\xed\xb5\x46\x53\x80\x55\x1b\x0d\x86\x24\xbe\xe5\xec\x7b\xaa\x95\x29\xf6\x3d\xcf\xaa\x13\x2b\x8f\x06\x30\x97\xa6\x6f\x53\x5a\x5d\x8b\xdc\x46\xf8\xa7\xda\xeb\x23\xd8\x46\x88\xfc\xad\xf9\xf6\xc2\xc2\xa1\xc7\x7c\xe6\xf6\x00\x15\x31\x73\xa7\xf0\xb5\xf8\xd9\x27\x95\x21\xf9\xc9\xc0\x53\x12\x77\x02\x05\xe7\xd8\x84\x2f\xb9\xbd\x70\x46\xe9\xe4\x5c\xa0\xbc\x93\x75\xa0\x90\xe1\x23\xca\x3c\xd0\xcd\xf5\xb5\x51\x37\x8d\x67\xeb\x42\x06\x47\xe6\x38\x32\x43\xaa\xc1\x49\x97\xf8\xbe\xff\xa3\x1d\x9f\x71\x8d\xa2\x38\x8e\xd2\xe4\xc9\x1d\x9f\xe6\xad\xb6\xb7\xa3\x9c\xa2\x66\xd6\xbd\x79\x01\xf7\xe7\x1c\x81\x50\x83\x05\xbc\xa6\x35\x2b\x82\x60\xfa\x38\xa3\xc8\x49\x37\xf4\x5c\xf8\x87\xb4\x82\x31\xc7\xbc\x44\xfb\x1c\xbd\x8b\x75\xac\x4a\x16\x10\xa3\x9b\x86\x1d\xf1\x97\x18\xea\x20\xbd\x9b\xe9\x54\xb1\x4d\xd0\x40\x1a\x20\x90\x45\xe1\x1e\xdf\x5d\xbe\xa8\xe8\x5a\xec\x3a\x85\x62\xfe\x0a\xce\x29\x34\x81\xbe\x13\x28\x9c\xc7\xf1\x89\x66\x4a\x5f\xc1\xcf\x61\xdf\x2a\x5a\x17\x32\x2d\xdf\x7e\x9c\xed\xdf\xdf\x4e\xfb\x7d\x9b\xed\xf4\x6b\xf8\x82\x22\xcc\xb0\x2d\x94\x13\xda\xa9\xf6\xfa\x34\xe6\xeb\x66\x0d\xed\x60\xf3\x65\xe4\x2e\xac\x52\x89\x2d\x27\x92\x95\xdb\x1b\x8e\x2f\xcd\x1f\x16\x3b\x0e\x06\x88\xe1\x5a\x37\xf4\x85\x6f\x4c\x8d\x4a\x8e\xcc\xb5\xc3\x38\x82\x72\x84\x9a\x60\x3e\x50\x74\x97\x07\x2a\xe5\xc9\x43\x9b\x98\x2c\xfa\x7f\x18\xfb\xd3\x18\x49\xce\xf4\x4e\x0c\xef\xce\xaa\xea\x66\xb3\xc9\xe1\x35\x87\x76\xb0\x8b\x7f\x6a\x35\x7f\x53\x02\x66\xb9\xf2\xda\xf0\x02\x03\x03\x91\xee\xae\x19\x4e\x17\x3c\xc5\x42\x75\x4f\xb7\x76\xb0\x06\xf8\x66\xe4\x9b\x95\xc1\x8a\x8c\x48\xc6\x51\xc5\x22\xf6\xc3\x7e\x10\x8c\x85\x21\x18\x86\x61\x61\xed\x35\x0c\xac\xbc\x0b\x2f\xd6\x92\x56\xab\x63\x25\x4b\x33\x52\x16\x35\x33\x9a\x91\x66\x86\xe4\x90\x1c\xde\x43\xf6\x7d\xdf\x77\x57\x77\x57\x1b\xf1\xfc\x9e\xe7\x7d\x9f\xa8\x8c\x16\xfc\x85\x88\x60\x57\x66\xc6\xf1\x1e\xcf\xf1\x3b\xd2\x9d\x74\x61\x78\xe5\x1f\x04\x0a\xcd\x73\x92\x46\xbd\x20\x0c\xab\x07\xc0\xff\x5f\xbf\xd9\x9f\x29\x70\xd5\x29\x4c\x20\x81\x21\x7a\x6d\xe5\xbc\xb0\xc9\x0e\x3f\x9a\x01\x1f\x46\x94\x72\x4e\x83\xc3\x8e\x69\x15\x7b\x84\xed\x7c\x4c\x63\x7e\xf3\xb8\x4a\x06\x86\xa6\x1f\x41\x3e\xcc\xe9\xba\x54\x03\x81\x4f\xc6\xcf\x44\xda\xe2\x38\x4b\x87\x51\x0e\x77\x71\xb4\x59\x5e\x1f\x2b\x75\x64\xdc\xa8\xb8\xd5\x79\x8c\xdf\x7f\xc4\x38\x97\x66\x0c\x5d\xa8\x38\x9a\x4d\xc0\xf3\x16\x17\xda\xf6\x15\xda\x7e\x6c\xab\x6e\x9d\xe6\x2a\xe8\xe7\x26\x30\xf7\x07\xf7\x50\x9e\x64\x4d\xbf\xb0\x59\xcb\x9b\xac\x9d\x56\xe2\x59\xa7\xc7\xaa\x42\x4f\x98\xa0\x47\xf4\xc0\x54\x28\x9d\x77\xb1\x32\xe8\x75\x0a\x8b\xd9\x65\x4a\x68\x9c\x6f\x9e\xee\x58\xca\xfa\xf8\xdd\xa7\x3a\xda\xb3\x67\x22\x4d\xdf\xbb\x97\x04\x87\xca\x51\xa1\x20\xf0\x2c\x18\xc5\x27\xaa\xfe\x86\x1e\x25\x08\x3c\x0c\xc9\x1c\xfb\xae\xd8\xc9\x09\x2d\xba\xd9\x03\xd0\x9b\x0f\x6d\xcf\x26\xce\x3d\x4f\x88\xb7\x8a\x84\xab\x38\x98\xbc\xd9\x5b\xa8\x70\x22\xa2\xc2\xf6\xce\x92\xbd\x81\x6f\x77\x21\x48\x17\x29\xdf\x06\x5f\xcd\xbc\xec\xa6\x59\x2f\x4a\x8c\x13\xc2\x13\x67\xcf\xea\x4b\xd0\x19\x38\xac\xc5\xc7\x6e\xd5\x5b\x82\x85\xcd\x8b\x9c\x2a\xb7\x22\xb4\x42\xe3\x4b\x36\x96\xea\x4b\x50\xd2\x82\xf8\xba\x88\xe5\xb5\xbe\x76\x88\xc3\x8b\xb7\xc6\x8f\x2b\xd4\xee\x2b\xc5\x33\xf4\xec\x04\x87\x53\xad\xd0\x0e\x84\x7d\x70\x0f\x2f\x01\x3f\xa4\xc0\x10\xe1\xd2\x2e\xf4\x5f\xd0\xd0\xbb\x40\x11\xab\x53\x62\x74\xa2\x3b\xdb\x60\xe8\xe2\x04\x49\x3c\x8c\xef\xcf\xb4\xab\xc8\x8f\xf0\x5a\xb9\x12\x3b\xf6\x65\x99\x4f\x94\xf6\xcb\xdb\x63\x2d\xb2\x89\x51\xe5\x84\xfd\xe7\xe6\xf6\x6b\xc7\xc4\x05\x67\xb6\x42\x4f\x05\x51\xe6\x5d\x0d\xb2\xf9\x44\x21\x17\x86\x26\x31\x4b\x54\x51\xda\x4d\x9f\x15\x41\x5e\x8f\x22\xfe\x29\xbd\x4e\x76\xe8\xc4\x77\x0a\xd2\xd6\xe7\xaa\xaf\x61\x3f\xc6\xc9\xef\x07\x7e\xd4\x3e\x18\x6b\x5f\x72\x65\x64\x7c\x06\xcb\xb2\x2b\x8d\x79\x1f\x9e\x4b\xaa\xb0\x31\xb4\xc5\xc0\x24\x96\xa0\x4f\x48\x1d\xe0\x98\xc1\xc7\x4a\x41\xaf\x67\x57\x6c\x9c\x8e\x6c\x6f\x97\x02\x7c\xc3\xd0\x54\x74\xcf\x3d\x00\x1a\xf2\xcb\xae\x05\x53\x3d\x41\x69\x30\x2a\x34\xf4\xa7\x63\x65\x67\xca\x49\x87\x80\x14\xbd\xe4\xc8\xff\xd4\x24\xb9\x63\xa2\x70\x10\xa1\x30\xc4\x5a\x70\x81\x92\x73\x98\x94\x88\x9e\x3d\xa0\xfc\xc9\x90\x04\xff\xdb\xb1\xc7\x54\x1e\xd3\x5e\x16\xc7\x27\x36\xa3\x7d\xf3\xed\xa5\xcc\x92\x7f\x1e\x54\x70\x10\x8c\x23\xa1\xe5\xe3\x86\x4e\x1b\xfb\x7c\x8a\x0d\xa1\x08\xa0\x29\x67\x49\xad\xbc\xd1\x4d\x93\x32\xb7\x39\xd9\x72\xe3\xdd\x82\x89\x88\x68\xe4\xa2\xc2\xba\xec\x58\xf7\xfd\xe0\xb0\xcc\x20\xf3\x8d\x7f\xfa\x1b\x5a\x1c\x9d\x4d\xb8\xb3\x6b\xdd\x54\x3a\x7c\xab\x36\xee\x39\x00\x17\x3a\x88\xef\x8f\x95\x87\xfc\xfb\x8d\x08\xef\x0c\x1a\xc1\x8b\x0b\xbc\x2b\xc1\xc7\x5f\x5c\xba\xfd\x84\xf9\x3e\x0d\x6d\x14\xab\xde\x55\xe3\x27\x5d\x29\x63\x6e\x62\x1d\x94\x25\xfb\x98\x6a\xf6\x1e\x53\x8f\x62\x94\xa5\x4b\x99\x19\x3e\x55\xfd\x25\x12\xa3\x0f\x02\xbf\x16\xde\x53\x35\x05\x0e\x5a\x51\xde\xba\xa7\x35\xa8\x6e\xd7\x10\x66\x4a\x19\xea\x22\x11\x36\x84\xeb\x52\x5d\x2c\xa6\xf0\x77\x03\x74\x73\xf0\x28\xb0\x5e\x4c\xb1\xca\x01\x56\xa2\x13\x63\xa5\xa5\x79\x8b\x68\xe0\x0e\x65\x52\x8d\x5d\x51\xa7\x56\x04\xfc\x73\x0a\x88\xb7\xab\xf3\x84\x22\xe2\x84\x36\x29\x66\xaa\xc7\x09\xbc\xd8\x15\x48\x2e\x62\x5d\xbc\x8b\x45\x87\x4f\x00\x61\x11\x93\xed\xea\x82\xb1\xe2\x4e\x75\x76\xfb\x76\xe6\x97\x5a\xbe\x48\xcd\xe0\x24\x3e\x99\x08\x09\xf7\xcd\xb7\x0b\x93\xf4\xd6\xb8\xec\xee\x04\x69\xfc\xfc\x39\xaf\xd2\xe4\x35\x6b\xb2\x78\xad\xe6\xc0\xad\xcb\xcd\x67\xea\x22\x11\xd5\xf2\xe0\xbd\x6f\xe1\x20\x24\xb6\x60\x4a\x4e\x96\x13\x6a\xb4\x4e\x0f\xd3\x9b\x42\xde\x71\x1b\x37\x8b\xe4\x00\xa0\x60\xac\x34\x7f\x83\x67\x8f\xbf\x3a\xad\x8c\x9b\xae\x01\x6e\xc8\xd1\x51\x99\x14\x56\xa4\xda\x5c\xe3\x06\x25\x22\x3e\x56\xc9\x2e\x21\xea\x66\xe8\xb2\x9c\x05\x6c\xf5\x10\x9c\xe5\xdb\x3e\xa7\x6e\x46\xd3\xca\x29\x9d\x55\x21\x3f\x6e\xe4\xdd\x89\x3a\xd6\xc1\x3d\xdf\x6a\xaf\xd6\xeb\x11\xbc\xfa\x22\x46\x04\x77\x48\x44\xe6\x44\x14\x32\x4a\xfa\x71\x69\x93\x50\xb4\x25\x54\x0b\xc6\xf5\x63\x26\xf4\x50\xe6\xe7\xdb\xa3\x7c\x2d\x1c\xa4\x26\x31\xf1\x5a\x11\x85\xea\x9e\xcf\x05\x0a\xc1\xaa\x08\x9b\x71\xf9\x4a\x99\x91\x28\x45\xcb\x59\x85\x6d\x31\x02\x6e\x6a\x6a\x94\x99\xd7\x3d\x92\xb4\xab\xe5\xa8\xe2\x57\x15\x9c\xb6\x5b\xc6\x71\x2f\x7d\x15\x0e\x3d\xfb\xbd\xf9\xa5\x32\x8d\xdf\x3a\x20\xbf\x76\x08\x81\x63\xab\xf5\xd5\x5f\xe3\xdd\xe0\xf4\xd8\x7b\x38\x9d\x56\x26\x74\x2f\xcc\x1f\x68\x69\xe4\x1d\x5e\x98\xc0\xf0\x1e\x57\x52\x2a\xc9\xda\xe7\x30\xbe\x11\xc1\x13\x63\x40\x94\x12\x11\xb3\x63\x95\x7c\x8d\xe6\x31\xfe\xe8\x41\xe0\x55\x27\xc6\x0a\xcb\xcf\x78\x10\x4c\xe3\x27\x10\x77\x20\xc2\xbe\x85\xf1\x8a\x57\xfb\xdb\x81\xb2\xe4\xe3\x95\x89\x03\x25\x1a\x3f\x98\x90\xff\x5b\xa0\x3b\x37\xd5\x5a\xe4\x40\x89\x3e\x5d\x9d\x5a\x6f\x7d\xf3\xeb\x1c\x9c\x70\x87\x15\xdb\xfa\x8d\xb1\xc2\x63\xdf\xc2\xf8\x40\x21\x14\xdd\x53\xc4\x46\x47\x68\xe2\x21\x98\xfa\x73\x45\x8d\x5a\x8b\x6c\xdc\xdb\xad\x08\xd9\x74\xf3\xf8\xe6\x0b\x28\xf4\xb9\x2e\xf0\xe2\x1e\x0e\xff\x2e\xd3\x50\xe2\x63\xcc\x7d\xfc\xe2\x07\x5c\x00\x74\xf2\x71\xf3\xf3\x4e\xf9\x86\x9e\x91\xe3\xb9\x7a\xab\xda\x6b\xb4\x20\x02\xa9\x72\x46\x71\x2a\x51\xb3\x4a\x33\x04\xcb\x22\x37\x4a\x8f\x9d\x4f\xc6\x5b\xb1\x09\x82\xc9\xcb\xd3\x32\x0b\xed\x74\x8d\xb9\xe9\x37\xcb\xdd\x44\x38\xa9\x69\x3e\x61\x4b\xbc\xa7\x68\x06\x4b\x26\xef\xe2\x97\x45\x06\xd6\xc7\x89\x17\x9b\xed\x4e\x57\x52\x69\x5e\x63\xec\x7c\x4a\x8f\x9f\x8f\x27\x8a\x41\x8b\x7b\xda\xa3\xd8\x26\xc5\xda\xb4\x0e\xd7\xe8\x32\x31\x0c\xa7\x14\x9f\x82\xa1\xea\x22\x8a\xf1\x19\x85\x05\x89\x12\x36\x79\x10\xe9\x10\x9f\xd5\x42\x76\xd7\xc9\x8b\xb8\x1a\xe5\xb1\x40\x79\x0b\x50\xbd\x6c\x4a\x09\x16\x63\x0b\xe6\x36\xcd\xba\xa2\x9d\x6d\xa8\x59\x97\x26\x6b\x8f\x2a\x09\x57\xfa\x21\xec\xf0\x4f\xa3\xb3\x83\x48\xed\xcd\x2a\x05\xd8\x3c\xaf\x2b\x7f\x28\x96\x4a\x75\xdb\x87\x33\xb8\x5d\x54\x63\x18\xd8\x04\xf8\xc7\xae\x75\x65\x74\x77\x77\xa2\x26\xbc\x6f\xbe\xdd\x8f\xad\x51\xd6\xe9\x6f\x6b\xd1\x10\x6c\x25\xa2\x96\xf0\x30\x76\x54\x91\xa5\x65\x37\xe6\x2d\x02\x0f\xe9\x1c\x86\x1a\x9f\xd4\x58\x76\x69\x96\x7f\x51\x27\x51\x98\x73\xcc\x7e\xc4\x5e\x8f\xfb\xdb\x50\xd2\x7d\x4f\xc2\x7a\x12\x43\xf7\x33\x9d\x2a\x35\x02\x17\x0a\xf5\x6f\xcc\xfe\xef\x82\x63\x8e\xa4\x61\x13\xd3\xcf\xf5\x83\x5c\xe8\xf6\xd4\xba\x66\x19\x8e\x7d\xc9\x72\x9a\xe4\x3e\xf0\xe9\x7b\x4a\xe8\x67\xdb\xba\x02\x92\xcc\x80\x70\xc6\x44\x36\xcf\x25\x3f\xc1\x85\x5d\xc4\x44\x7f\x80\xdd\x95\xb9\xc8\x81\x52\x57\x41\x8c\x8b\x2f\x66\x39\x72\xbc\xa8\x5b\x81\xa2\xc6\x0c\x68\x1d\xc3\xb5\xbf\xc1\xb9\x94\x6c\xfb\x58\x23\xa4\xb7\xd5\x44\x66\xa6\x02\x95\xed\x4d\xd3\xb7\x73\x44\x15\xa8\x2d\xf3\xb7\x69\x8c\x32\xc6\x51\x19\xdd\xfd\xac\xc1\x74\xe3\xf9\x76\x98\xa5\xa9\x60\x2f\xa5\xa1\xec\x8b\x46\xe7\x9a\xfa\x37\x66\x34\x32\x99\xe5\xce\x35\xd0\xe7\xf7\x95\xee\xce\x7d\x25\x21\xd6\xb3\x76\xc8\x23\x07\x69\x0f\x63\xbc\xf9\x44\x6d\x41\xd6\xe4\x6b\x33\x3e\x51\x83\xb9\xbd\x94\x93\xb4\xfc\x3f\xbd\x6b\x61\x0b\xd1\x97\x89\x2f\x40\x13\x78\x6f\x90\x0e\x2d\x09\x8a\x78\xe8\x29\xd4\x35\xf9\xb8\x69\xfb\x66\xe3\xec\x96\xe2\x9c\xa9\x3e\xfa\xc9\xf1\xa3\x22\xeb\x93\x03\x68\x2c\x52\x2c\x5a\x97\x25\x10\x7c\xbd\x35\x59\x31\xa8\x42\x27\xd7\xea\xc3\xaa\x05\x0d\x1d\x24\xf9\x20\xe8\x0b\x2d\xa2\xe9\x9d\x93\x3a\x16\xf3\xda\x9a\x28\x71\xa2\xf7\xe1\x04\x26\x50\x47\x99\x15\x9e\x48\xa0\x68\x4d\x17\x1a\x4a\x51\x0b\x6d\x33\x32\x59\xe1\x74\x42\xb0\x29\x43\x48\x83\x8f\xd7\x15\x65\xd8\x2c\x31\x10\x03\x93\xe3\xaa\x2a\x9c\x4d\xb6\x08\x09\x70\x48\x9d\x29\xa7\xf4\x79\x5a\x27\x90\xa7\x27\x42\xee\xb9\xb9\x76\x62\x56\xf8\x0d\xb0\x37\x97\x12\xe6\x3d\xad\xa1\x11\xcb\x51\x56\xb4\x68\x2d\x90\x7c\x05\x33\x88\xcf\x94\x57\x52\x98\x92\xb6\xae\x81\x12\x35\x83\x05\x02\x25\x17\xff\xa6\x8a\xd1\x6e\x2a\x25\xed\xab\x35\xc7\x30\x2d\x6c\xd3\x8f\x23\x6e\x39\xed\x93\xf7\xb2\x11\xa8\x2e\x1d\x94\xfe\xb1\xc0\x6a\xdb\x30\x93\x2f\x8b\x1c\x14\xab\x52\x2a\xd2\xeb\x9d\x40\xb5\x1f\xee\xd0\x70\x17\xe9\xca\xa7\x54\x35\x30\x1a\xc5\x51\x62\xa7\xb5\xe2\x0e\x4d\x62\x0c\xc0\x4f\x94\xa6\xdf\x23\xf4\x1a\xd1\x16\xd9\x98\x00\x53\x7f\xa5\x1a\xef\xc0\x6a\xa0\x90\xc2\xa0\x1d\x3e\x99\x40\xcc\xbf\xf8\x22\x21\x8a\x92\x25\x34\x7a\x18\xd4\xae\x40\xf9\xdc\x86\x01\x34\xe3\xb8\x6b\xf9\x0d\x4c\x96\x0f\x18\xeb\x81\x50\x0b\xf5\x63\x3e\x9e\xc8\x0c\xe6\xe6\xda\x7d\xf2\x31\x71\x1a\x38\x40\x68\x49\x89\x46\x19\x50\xae\x46\x4b\xa8\x37\x0a\x78\x9c\xc2\x29\x09\x6e\x7c\xdc\x32\x2a\xf3\x01\xe2\x01\xa4\xc3\x27\x10\x1d\xa2\x88\x82\x0c\x9d\x83\xce\xb1\x52\x9d\x01\x9c\x9c\xb7\xb7\x67\x7b\x8f\x2a\xbe\x3d\xe2\x3e\x56\x7a\xa3\xcf\x20\x33\x62\x77\x13\xdc\xda\x0e\xec\x29\x22\xd1\x4d\x4b\x16\x6d\xeb\xdf\x7f\x06\xdb\x9e\x13\xf2\x76\xb8\x8b\x69\xea\x9b\x61\x6f\x44\x0b\x9a\xf5\x35\xb5\x52\x74\xd9\x8d\xa3\x30\x5e\x9b\xa1\xeb\x61\x61\x75\x04\x92\xd8\xe4\x4e\x2a\x34\xdd\x69\x2d\xad\x8b\x6c\x01\xc5\xb1\x3b\x1a\xf8\xb5\x9a\x66\x49\x4b\xa1\xa6\x8e\x6a\x65\x8e\xa3\x4d\x9c\xde\x76\xd7\xe4\x5c\xf3\x46\x90\xfb\xa7\x1a\xdc\xfe\xa7\x13\xab\xeb\xec\x01\x30\xe6\x6b\xab\xeb\x86\x5a\x5d\x37\x3c\xcd\x2c\x2d\x8b\x28\xb1\x31\xc7\x80\x4a\x8e\x4b\x70\xce\xe7\x51\x2a\x73\xae\x60\xce\xde\xb5\xd5\x69\x14\x96\xcd\x47\x36\x04\x90\xb0\xfa\x42\x84\x0b\xff\x23\xb2\x05\x3e\xd1\x0b\x4b\x91\x56\x4b\x96\x12\x2d\xaf\x42\x06\x11\x33\x97\x41\x3d\xb4\xa6\x97\xae\xf2\x37\x3a\x09\x8f\x79\xe7\x4e\x7b\x7e\x62\xfa\x7c\x85\x8a\x19\xd1\x4a\x3d\x75\x3d\x86\xcb\x10\x02\x83\xaf\x27\x24\xe9\x8a\x8d\xf3\x69\x8f\x62\x62\xec\x17\xca\x68\x6c\x72\x02\x1a\xce\xcf\x55\x34\xf7\x3f\x6b\x33\x0f\xd0\x3a\x04\x40\x89\xc5\x02\x80\x0b\x3e\x76\xdb\x07\x11\xc7\x62\x6f\xcc\xc0\x16\x6e\x0a\x44\x75\xac\x09\x69\x34\x34\xde\x01\x44\x70\x8e\x1e\x8c\x72\xac\x49\xe0\xb5\x57\x2d\xdb\xba\x83\x53\xfd\x84\x34\x70\x26\x8b\x04\xcf\xb7\x07\x22\xa1\x85\x64\x80\x0d\x07\xf8\x64\xa2\x04\xf7\x8d\xd9\x76\x5e\x76\x87\x51\xd1\x52\x6e\xc0\x81\x2f\x71\x5d\x52\xfd\x7f\x90\x1f\x22\xba\x69\xfa\x05\x0c\xa2\xfb\x18\xc9\x7c\x32\x51\xaf\x9c\x3d\xd0\x8e\xd3\x32\xca\x23\x93\x18\x2e\x0d\xa1\xd0\xcd\x0a\x2b\x7c\x32\x11\x94\xcc\x1e\x68\x17\x65\xd6\x2d\x63\xfb\xb7\x68\x39\x28\x4a\x72\x0e\x1d\x5c\x21\xe2\x6a\x56\xae\x5a\x0c\x86\x51\x1c\x15\x26\x5b\xdb\x4d\xff\x8e\xed\xe2\x9d\x1a\xf8\x85\x56\x27\x01\xc2\x28\x24\xed\x87\xb8\x5c\x0c\x21\x41\x43\x62\xdf\xfb\x90\x76\x2f\xa9\x37\xfa\xaa\x29\xda\x02\x48\xef\xbf\x8f\x78\x8e\x7f\x51\x31\xe2\x8e\xb9\x08\xa8\x4c\x6c\x12\x2a\xfb\x43\xc9\xb4\x81\x98\xe2\x63\xe7\x85\xb4\x3a\xb0\x36\x8e\xa3\x65\xab\xed\x51\x21\xeb\x86\xc4\xfb\x96\x82\xf2\x9f\x98\x78\x2d\x94\x6c\xf6\x6c\x6c\xd6\x24\x42\xc6\xea\x0c\x72\x20\x56\xfa\xcb\x63\xa5\x8b\x02\x88\x82\xd4\x17\x9a\x60\xb7\x4b\x99\xe9\x76\x25\x9e\x42\xaf\x1c\xdb\x1d\x1f\xab\x5d\x39\xb3\x61\x31\x34\x91\x46\x9d\xfd\x33\x85\x3a\xfb\x67\x2e\x32\x4e\x57\x6c\x36\x32\x51\x6f\x4a\xe9\x5a\x43\xa7\xd0\xb1\xca\xb4\x6f\xd6\x93\x2e\xbc\x63\x90\x1e\xb9\xe2\x3b\xe9\x10\x6f\xe6\x16\x78\xca\xc3\x6b\xe3\xc7\x3c\xb3\x2b\xe9\xfd\xff\xf0\x66\xb9\x3c\x88\x6c\x06\xf1\xd7\xaf\xa3\xe0\x80\x1d\xed\x4a\xb0\xfd\x4b\xdc\x51\xbf\x09\xd5\x7a\x54\x95\xde\xa7\x5d\x08\xe9\xf2\x35\xd2\x70\x44\xb2\x36\x0e\x3c\xc8\xf3\x2a\xa9\x23\x23\x75\xb9\x42\xfd\x2d\xfc\xfd\x07\x81\x27\x69\x4e\x63\xcb\x73\xc6\xf7\x1e\x61\x7b\x87\x52\x3d\x44\x78\xa0\x73\x83\xbe\xf4\x01\x32\x27\x6c\x57\x50\xc8\x15\x31\xf9\xd6\x37\xc4\xed\xe9\x3d\xce\x9b\xf0\xf4\xde\x1d\x2b\xb0\xe0\x7b\xb4\x70\x0b\x8f\xb4\xa5\x6c\xf9\x69\x80\x09\xcd\x8b\x32\x53\x3c\xef\xc3\xc0\x40\xe1\xe7\xaf\x90\xb4\x0d\xf2\xe5\xab\xc8\xfb\x54\x5d\x77\xc1\x89\xbc\xd1\xc6\x8b\xc5\xe5\x47\x08\xe0\xa4\x6d\x59\xe5\x7a\xb8\xe2\x8f\x95\x25\x4b\xbe\x1a\x65\xf1\x4c\x75\x69\xae\x98\x5a\x7d\x48\x62\x45\xba\x67\xfc\xcb\x5b\x63\xef\x7a\xf0\x31\xdd\x3f\xeb\x2f\x38\x17\x44\x12\xad\x73\x42\xbb\xc0\x6e\x5d\x0b\x14\x59\xef\xda\x78\x97\x8c\xa0\xee\xb4\x02\xad\x83\xe8\x88\xea\x33\xeb\x0a\xbb\xb6\xa3\x63\x26\x7c\xa8\x90\xd5\x10\xac\xda\x59\x5d\x04\x6a\x0e\xa7\xd0\x82\xc3\x9c\x87\xcd\x16\x86\x1f\x18\x75\x8c\x0d\xd6\x30\xac\xb3\x78\x3a\x62\x13\xd6\x72\x1a\xe6\x67\x1d\x6a\xc0\x0c\x7b\x66\x80\x49\x24\xf6\xa7\x0a\xd9\x73\x74\x2b\x9a\xe7\xe0\x9e\xf9\xf6\xe2\x9e\xa7\xe9\x0d\x32\x74\x5b\xe1\x53\x7f\x86\x97\x86\xfd\xf8\x1e\x1e\x2c\xa2\xbc\x9f\x06\x0a\xb3\xf0\x08\xe9\xd1\xa1\x60\x0e\x60\x24\xc6\xd2\xcd\xc0\x0f\x9f\x1b\x9c\x08\xa0\x82\xf7\x76\xe0\xab\x0e\x7f\x11\x28\x8d\x63\x24\xd0\x88\xc3\x6f\x07\xaa\xe3\xf2\x54\xc7\x7b\x59\xb0\x61\x35\xd0\x40\x5c\x83\x60\x4f\x03\x2c\xf2\x38\xb9\xab\xb5\xc6\xb6\x75\xb4\xa1\x90\x59\x93\xcc\xc3\x19\xb7\x2e\x8a\x36\xc7\x86\x82\x73\xbe\xa1\x54\xe4\xa9\xa2\xc9\x09\xb9\x98\x21\x54\x7f\x29\x20\x77\x59\xb3\xc9\x72\xa0\x9b\xa5\xcb\x2e\x6c\xe0\x4e\xac\xe2\xf6\x4c\x56\xa6\xf7\xcd\xb7\xa3\x9e\x19\xc0\xf6\x9e\xcb\xac\x78\x73\x52\x73\x55\x4e\xa4\x51\xd2\xcb\x67\xaa\x85\x01\x43\x74\x5b\x47\xe9\x9b\x6d\x5b\xf7\x12\xd5\x1f\xd3\x05\x3a\x83\xd8\x7d\xf3\x8e\x2d\xdb\x10\x5c\xe6\x45\xe9\x2c\x91\x30\x40\x6f\x29\x81\xb2\x5b\x4a\xe4\x29\x2f\xb2\x32\x2c\xca\x0c\x59\x8c\x98\xb3\xfb\x22\xf6\x4d\xcd\x4d\xbe\xd6\x44\xbd\xcb\x07\xe9\x68\xe4\xb2\x7a\x87\xf1\xf6\xce\x67\xa8\x6f\xa3\x12\xfc\x63\xd5\x23\xca\x8b\xcc\xda\xe2\x31\x5f\xd2\xbb\xab\x30\x8d\x77\xb1\x26\xba\xea\x59\x35\xa8\x45\x0f\xa5\xa5\xe4\xeb\xfd\x14\x3c\x86\xb1\x87\x47\xfc\xd7\x40\xcb\xbc\x89\xae\x0b\x86\xdd\x26\x96\x43\x2c\xad\xec\xce\x8e\x72\xd3\x3b\x18\x84\xa2\xae\xbb\x75\x33\x95\x0a\x60\x9a\xc4\x6b\xd0\x88\x00\x5a\xf1\xc2\xb8\xc6\xf6\x72\xf7\x71\xc1\x9b\x23\x97\xaf\xa6\x49\x4b\xcb\x20\x72\x58\xc4\x27\x2a\x2d\x1f\x9a\x97\x4b\x5b\x80\xc1\x28\xe1\xe0\xfb\x2a\x1c\x7c\x5f\x85\xb2\x1e\xf7\x41\xcf\x9c\x15\xd9\x30\xc5\xb0\xba\xa0\x8f\xa9\xa4\xda\xc4\xde\xee\xf6\xc4\xdd\x1d\xaa\x42\xb1\xac\x1c\x8e\xac\x10\x63\x04\x48\xad\x08\x3b\x97\x1a\x89\x1b\x79\x61\x62\x61\x4e\xb2\x11\x5f\xdd\x95\xcf\xaf\x98\xa3\x74\x38\xb2\x6b\x98\x43\xe2\xd5\xd0\x72\x2a\xc6\x27\x1f\xaa\x15\xe0\x54\x6b\x1c\x8f\xed\xb2\x76\xe9\x9a\xa4\xaa\x56\x23\x92\x48\x4d\x42\xa7\x61\x3f\x5a\x2c\xd0\x62\x4e\xfb\xa4\xe2\x80\x14\x36\xc9\xf9\xb1\x8b\xf0\x72\xcb\x49\x8b\x7c\x50\x97\xec\x29\x8b\x29\xa5\xb8\xf5\xd1\x58\x9b\x02\xa0\x61\x28\x42\xa0\x0d\xca\x18\xd2\x0d\xdf\x27\x25\xc2\x99\x8e\xb7\xd8\xfa\x68\xec\x05\x24\x6e\x29\x9a\xfa\x59\xd5\xe1\x5e\x31\xa1\x49\xc2\xb5\x96\x92\x30\x06\x3d\x99\x8f\x83\xcf\xbb\x58\x33\x4c\x93\x5e\x04\x34\x6f\xcc\x62\x19\x4c\x83\x1e\xfb\x98\xe2\x42\x13\x73\xb3\x9f\x66\xc5\x20\x24\xa1\xc8\x96\xc7\xba\x7c\x14\x28\xda\xef\x47\xaa\x35\x98\x17\x6b\x71\x94\x17\x51\xa8\x3d\xd1\x3f\x54\x9e\xe8\x1f\x4e\x2c\x50\x07\xf7\xb4\x07\x6b\xdd\x2c\xea\xf1\x9a\xea\x56\x60\x6f\x4d\x33\xf6\x4d\xea\x15\x53\x73\x8c\x3e\xaf\x6b\x66\xe7\x27\x46\x73\xf5\xfa\xc3\xcc\xda\x90\x4b\x7f\x62\xf1\xc8\x6a\x56\x7c\xb2\x75\xeb\xac\x06\xf3\xde\xbd\x9f\x57\xa8\xee\x2b\xf8\x19\x44\xf7\xdb\x3b\xde\x74\xf9\x3a\xbf\x73\xd0\x1a\xde\xa3\x18\x50\x44\xfe\x14\x19\x78\x5b\x87\x56\x1e\x01\x5b\xd2\x76\xeb\x90\xe0\x5f\x3b\xc4\xab\xdc\x1d\x34\x02\x11\xb5\xfe\x21\x45\x68\xba\xce\x87\x3c\xa3\x05\xdb\x7e\x31\x28\xf4\x15\xb2\x13\xd4\x87\xc3\x0c\x82\x33\x3a\x82\x7c\x56\x27\xc3\xda\x76\x0f\x0b\x1d\x22\x93\x27\x3a\x7e\x41\x61\x9b\x7f\xfc\xf6\x15\x5a\xbe\x70\x4f\x0c\x51\x42\xbd\x73\x7b\xcd\x93\xbb\x08\x07\x8f\x57\xbf\xe3\x06\xbc\x23\x7a\xee\x5e\xf7\x9c\xad\x56\x87\x36\x6b\xfc\x03\xfb\x30\x4a\x8d\xb3\xfa\x19\x56\xbd\x08\x94\xf0\x0d\x2f\x8b\x08\x5b\xde\xe1\xf4\x0b\xb1\xd1\x51\xda\xcf\x45\xa5\xb9\x7a\x76\xce\xd9\xac\x7a\xdc\x42\x64\xa1\x18\x86\x7f\xd2\x15\xdb\xd2\x2c\xb6\x06\xcd\x2f\x29\x9c\x3f\x55\x57\x81\xc7\x2f\xd5\xec\x0b\x84\xce\xfe\xb8\x92\x21\xcb\x0b\x62\xf6\xe2\x01\xdd\x51\xca\x2d\x2c\x71\xc9\x90\x67\x44\x29\x0e\xff\xec\x78\x4e\x5c\x0b\x14\xa9\x68\xa5\xbf\xfa\x47\x0d\x08\xa0\x85\x76\x37\xcd\xb2\x74\x55\xf2\x44\xc6\x91\xd0\xd3\x16\x4c\xc9\x13\x4a\x55\x3c\xcd\x2d\xb6\x7a\x07\xfa\xf1\x00\xa0\x66\x8d\xe3\xbe\x59\x49\x1d\xf1\x40\x80\x71\x2d\x27\x77\xb9\x6d\xbd\x81\x55\x11\xa7\x21\xcc\x6b\x84\xf4\xa3\xb0\x73\x5a\x6f\x35\x2f\xb2\x28\x5c\x76\x4e\x95\x78\x00\xcc\x11\xe5\x13\x65\xc3\x1d\x0e\xca\xa5\x96\x67\x4e\xdd\x55\x35\x39\x6d\xb4\x5b\x25\x8a\x49\xb4\x34\xa8\xd9\xa6\x5e\x52\xfa\x24\x97\x54\xe3\xf1\xe0\x3f\xf8\xaf\xa6\x14\x6e\x1b\xa2\x4a\x48\xb5\xb6\xd7\x6a\xc0\x1a\x4a\xbb\x1c\xa1\xd6\x23\xb4\x5b\xfa\x02\xe1\xe3\xfa\x7d\x2c\x1f\x98\x0c\x8e\xee\xc2\xf4\x67\x62\x2b\x9f\x68\xa2\x66\x9a\x2e\xdb\xde\x8e\x2a\x19\x64\x81\xf4\x40\xe1\x0e\xbe\x37\x56\x92\x3b\xc8\x12\x90\x48\x4f\xc3\x14\x51\x9b\xb5\xa3\x2a\x31\xe9\x17\xe8\xfc\x8b\x6d\x17\x03\x40\xfa\x28\x2a\xc6\xb8\xa3\xdc\xab\xac\xe9\x15\x03\x95\x4f\xfc\x71\xe0\x9f\xc6\x1f\xab\x7d\x06\x32\xf1\x79\xcb\x33\xeb\x60\xa0\x2a\x08\xe9\xad\x01\xef\x97\x31\x08\x79\xb8\x62\x6f\xbb\x85\xc7\xc2\x27\x0d\x86\xea\xfb\xdb\x61\x59\xec\x9c\xd2\x26\x51\xb4\x52\x60\x0e\xc3\x30\x48\x94\x20\x69\x5e\x4a\x00\xe5\x65\xaa\x81\xb6\xc0\x8a\xc9\x88\x7c\x74\x8f\x1e\xeb\x4c\x1a\x8e\x2d\xb6\x4d\xd4\xd3\xad\x14\xf5\xe1\xd3\x0a\xe8\xd6\x4f\x49\x3e\x11\x74\x16\x44\x8e\xb7\x75\xd7\xf3\x76\xb5\x37\xc9\x83\x7a\x6e\x87\x16\x8b\xa4\xcb\x74\xf4\xcb\xea\x1d\x38\xa2\xdf\xe2\x02\x47\x52\x30\xe3\xc5\x1f\x9d\xd2\xaa\x1d\xa7\x94\x9c\xaa\x68\x6d\xec\xf0\xdd\xbf\x1b\x63\xdf\x77\xbe\x41\x61\xaf\x48\xda\x69\x11\x30\xfc\xaa\x28\x82\x55\xbf\xca\x7f\xf5\x50\x1f\xea\x28\xe9\xab\x4a\x27\xb6\x6c\xa6\x85\xf2\x89\x6a\xf4\x94\xcf\xe5\xcf\xe5\xcf\x65\xcf\x61\x67\x15\xeb\x31\x25\xae\x75\x51\xdd\x44\xda\xef\x47\x61\x64\xe2\x47\x7d\xd9\x14\x72\x5a\x2a\x21\xfd\x96\x2b\x09\xa9\xb0\xea\x12\x15\x4a\x64\x02\x60\x85\x66\x59\xdc\xb1\xa2\x84\xde\x09\x54\x83\xfd\x28\xa6\x93\x93\xf9\x73\x6b\xd9\x03\x35\xae\x07\x69\x36\x24\x9f\x37\x07\x2b\x7a\x97\x66\x80\x94\x4b\xf4\x56\xf7\x52\x64\x54\x8f\xe6\x77\x03\xd5\xc9\xf8\xdd\xc6\x0e\x72\x31\xb0\x43\xa9\x3d\xb0\x32\x16\x5e\x8d\xc8\x64\x35\x78\xe0\xe5\xab\x66\x04\x0d\x48\x54\x70\xf9\x96\xb4\xda\x9d\x54\xf8\x1e\x75\x5c\x61\x56\xbd\xc2\x6a\x71\x8c\x9e\x15\x1f\x2b\xa2\xd5\x52\x69\x32\xc1\x6b\xfa\xa8\x4a\xe5\xb8\x5a\x04\x20\x0d\x23\x5b\xac\x3d\x52\x85\x1f\xf2\x06\xe8\xca\x81\x18\xf8\xb8\x06\x97\x1a\x6b\x79\x68\x44\x00\xfc\x19\x25\xcc\xf9\xfa\xd8\x07\x4c\x68\xb3\x30\x3b\x66\xa2\x93\x5f\x45\x5e\xe1\xc0\x0c\xbb\xac\x6a\xe1\xf4\x2f\xdd\x98\xb9\x34\x51\x07\xdf\x37\xdf\xce\xa2\x25\x0e\x1e\x51\x12\x40\xe1\x9c\x8f\x27\x5e\xcf\xe2\x9e\xf6\x28\xa2\x2c\xb7\xe5\x9b\x5b\xff\x5e\x11\xf4\xff\x7d\x93\x1e\x46\x91\x95\x79\x51\x77\x5b\x5e\xf4\x68\x96\xcf\xfb\x14\x3a\x1c\xa4\x69\x5c\x58\x13\x0e\xaa\x9b\x98\x9b\x93\xf7\x47\x61\x82\xbc\x4b\x3d\xb6\xe2\x30\xe5\x98\x16\xcb\xe3\x11\xad\x46\x7e\x24\x78\xca\xb1\x46\xba\x4c\xc9\x6b\x79\x34\xd2\x9b\x8a\xcd\xf8\xa6\xfb\xd3\xc1\xda\x28\x0d\xab\x1d\x9d\x07\xa0\x6b\x92\x68\x3c\xc3\x7f\xf6\x90\x25\x60\x0b\xf1\xb9\xa5\x04\x8a\x58\x59\x4b\x2c\x90\x7c\x0a\xda\x35\xe1\xf2\xc8\x84\xcb\xf9\x94\x47\x7a\xdc\xc4\x32\x89\xe9\x7d\x41\x2d\xe0\x9f\x6a\xa3\x88\x74\x38\x32\x49\xc4\x86\xa6\xae\x57\x70\xc8\x69\xd9\x9d\x98\x50\x82\xdc\x37\xdf\xee\x25\x66\x4a\xf5\x93\x16\x78\x14\x3a\x91\x30\x97\x78\x1d\x77\x32\x00\x5d\x98\xcd\xaa\x0c\xe3\x9c\x32\xbf\x3c\xa7\x9d\x22\xa3\x1e\xf6\xae\xe7\x79\x27\xba\xa3\xbc\x9e\xee\x04\xcf\xd4\x73\x85\x7d\xf3\xed\x67\x9f\x7d\x5c\xe9\xdf\xfc\x4c\xf5\x01\x7e\x3e\xf6\xb2\xdb\xd0\x7e\x47\x08\xf1\xa6\x76\x6d\xe0\xfd\x19\x25\xb3\xa9\x75\x94\x6c\x31\x76\x8f\x2b\x49\x85\x1d\x1d\xca\x1a\x98\x81\x0b\xa0\x0f\xff\xd5\xd8\x8f\xc4\xf7\x02\x5f\x4c\x3b\xcd\x8f\x45\x6e\xb7\x46\x26\x4b\x93\x47\xaa\xfd\x80\x21\x4f\xda\xa0\x09\x6b\x1b\xa2\xed\xbf\xc4\x0a\xc4\x27\xca\x72\xe6\x88\xea\x05\x5f\xd7\xd1\xdc\x39\xfe\x51\xc1\xe0\xeb\xa6\x4d\xf1\x59\x4f\x73\xe2\xc2\x2a\x16\x8b\x3b\xb4\x6c\xa1\xdd\x70\x05\x4b\xb7\x5b\xa3\xe6\xe6\xbc\xd1\xfb\xfc\xbc\x33\xb4\xa6\xfd\x98\x75\xe5\x11\x67\xe3\xed\xb7\x50\x34\x94\x78\x57\x2f\x4f\xdb\xd1\x72\xc6\x45\xef\xc6\xe3\x44\x22\xf2\xbf\xa0\x67\x8a\xc0\xea\x73\x94\x86\xe3\x77\xd8\x9d\x12\x79\xdb\x6e\x24\x04\xf4\xcc\x3b\x4f\xad\x2b\xf1\xad\x29\x52\x8f\x56\x9c\x34\xd9\x68\xdf\x51\x2c\xbd\x99\x8e\x92\x14\xda\xff\x8d\xa9\x2a\x77\xc1\xd6\x75\x41\xc1\x12\x36\xb4\xfa\xfe\x69\x55\x1a\x4f\x4c\xb5\x9f\x54\x0f\xd0\xf1\x34\x0e\xba\xe3\x49\x76\xd2\x6c\x3b\x2d\x8b\x5c\xf4\xee\xd0\x66\x80\xbd\x21\x8a\x77\x9f\xd6\x7a\x06\x7e\x9b\x66\x1a\x3a\x26\xb2\x5c\x45\xf5\x4b\x28\x06\xfe\x15\xee\x4e\x0a\x71\x5b\xd3\x89\xbd\x7b\xdb\xb9\x29\x6d\xb6\x9c\x99\xb2\x98\xf2\x7e\x03\x9f\x8e\x3d\x16\x06\xf2\x67\x62\x85\xbc\xb5\xe4\x70\x88\x34\x1a\x72\x6b\xb2\x70\x20\xcb\x97\x23\x3d\x54\x4f\x5c\x56\xdc\x86\x8e\x6b\x62\x6d\x4f\x5a\x52\xac\x33\x80\xf1\x2b\xa2\x03\x2a\x70\x4f\xd3\xc4\x66\x44\x94\x02\x64\xf9\x37\xc7\xaa\x49\xc8\x2a\xba\xfc\x2f\x81\x6a\xe6\x6d\x5b\x6f\x20\x47\x52\xb8\x3b\xe5\xc5\xe8\x7e\x8a\x87\x84\x1a\xe7\xc7\x35\x17\xe8\x86\xab\x26\x7e\x6f\x31\xa5\xc8\xcc\x17\x30\x1c\x01\x58\x38\xab\xa4\x54\xee\x4e\x14\x38\xbe\x02\x69\xad\xd8\x38\x8e\x18\x64\x6f\xcf\xe3\x61\xf1\xc9\x64\x43\xf0\x85\xfd\xd5\x53\x4e\xe3\x15\xf9\x18\xd7\x13\x68\x21\x90\xda\xc2\x93\xae\xee\x6d\xb2\x22\x76\x45\x5d\xa7\xba\x31\x37\xc7\x2b\x3a\xd4\xb0\xc5\x67\xb5\x41\xa6\x29\xb7\x36\x37\xab\xb4\x6f\x89\x9e\x1d\x5d\x1f\x9f\x8c\x7d\xbc\x3d\x48\xf3\x22\x8a\xed\x0e\x1f\x8d\xa3\xdc\x52\x93\x31\x01\x1a\xe9\x75\xa5\x1f\xc9\xd1\x36\x92\x97\xb3\x35\x1b\xa3\x49\x37\xb0\x2a\xdb\xe8\xa6\xc3\xae\xc9\x7a\x72\xfb\x4a\x56\x79\xd6\xe9\x4d\x35\x94\xb7\x79\x6b\xe4\x81\x89\xa4\xfd\x74\xa0\x38\x44\xa7\xc7\x9e\x4a\x60\x42\x6c\x6f\xde\x35\x89\x31\xcf\x63\xdf\x0a\xf8\xa0\x91\x38\xb9\x1a\x15\x83\x5e\x66\x57\xf1\x33\x28\x14\x9c\x1e\x2b\x07\xc4\xd3\x7e\x63\x23\xbd\x29\x7c\x7d\x53\xa4\xd1\x60\x9d\xdc\x8b\x72\x98\x35\xaa\x8e\xec\xef\x8c\x7d\x47\xf6\x77\x26\x82\xd3\xea\x9a\x86\x66\x84\xca\x21\x66\x13\x03\xab\xf9\x44\x55\x20\x7a\x2c\x47\xee\x22\xe9\xa3\xb4\xf3\x61\xde\x22\xa3\xc7\xc4\x6a\x75\x7c\x2c\x9e\x97\xd9\x92\xcd\xd6\x1e\xa1\x97\x81\x81\xcf\x65\x7e\xe5\x57\xce\x03\x73\xf7\xba\x77\x8c\xdd\xb6\x5e\x7d\xb7\x0b\x3f\x17\xa5\xaa\x72\x59\xf1\xde\x7e\x5f\x2d\x3e\xbb\x3a\x4f\xd6\x78\xb0\x26\x59\x7b\x06\x83\x05\xb9\xd9\xcf\x15\xda\x8d\xed\xdf\x71\x01\xe7\xa8\xe3\x25\x45\x58\x95\xcd\x01\x3e\x8d\xb5\x9f\x7d\x25\xf0\x4c\x80\x13\x64\x1b\xd4\xb1\xb7\x6d\xbc\x85\x3d\x05\xcc\xdf\x27\x3a\xfa\x8e\xc7\x1e\x97\x31\xd5\x51\x6f\xf4\x0c\xb9\x11\x3b\x3d\xe0\x6a\xb7\xab\xf1\x7a\x50\xf4\xb8\x86\xf6\x86\x00\x02\xe8\x5d\x29\x99\x3a\x36\x3e\xfa\xca\x17\x26\x96\xb0\xf9\xf9\x36\xe8\x2e\xaa\x41\x7c\x67\xac\xc4\x37\xee\x28\x90\xbd\x89\x8b\x41\x5a\x2e\x0d\x1e\xf1\x38\x95\xf5\x2d\xfa\x5d\x55\x68\x22\x06\xa8\x1e\x30\x08\x2e\x0c\x30\x85\x18\x12\x7c\x8c\xe9\x83\x4d\xfe\x76\xcd\x54\x76\x62\x7f\xf9\x72\xdb\xe6\x85\xe9\xc6\x51\x3e\x10\x08\x3a\xc2\x09\x20\x77\x9c\xa2\x79\x75\xe9\x22\x04\xff\x94\x22\x4c\xbd\x5c\x46\x99\xcd\xa7\xe9\xa1\x61\x75\xb8\xa8\x00\x6e\x3f\x55\x39\x00\x7a\xea\xfc\x37\xaa\x41\x90\x9b\x38\x1d\x56\xe1\xaa\xf3\x7b\x62\xfd\x76\xc1\x70\xfa\x89\xd0\xb5\x83\x28\xe9\xed\x54\xef\x11\x62\xfc\x28\x69\x7c\x97\x7e\x18\x0b\xe0\xb6\x75\xdf\xd0\xf8\x17\x63\x05\x7a\x9a\xea\x28\xd4\xe1\x05\x8e\x66\x90\xde\x5d\x51\x85\x87\xec\xb9\xd6\x96\x16\xbe\xe8\xab\x1c\x6b\xda\x71\x96\xd2\xb8\x67\x13\xa5\x14\xbb\xad\xa3\xda\xdf\xdb\xea\x35\xde\x81\x24\x27\xc2\x6b\x55\x8a\x87\xe7\xb6\x46\xc3\x5f\xfd\xb5\xf6\xc1\x3d\x5a\x4f\xed\x36\xc6\x24\x9f\xa8\x9e\x6b\x3e\x30\xa3\x28\x4b\xa7\x35\xb4\x06\x02\x4a\x5c\x8b\x0d\x3c\x80\xe3\x92\x16\x4c\xbb\xea\x56\xbe\x91\xcd\xa2\xb4\x87\xf4\x17\x7f\xd8\x5a\xf7\x1f\x6a\x75\xfc\x9b\x18\x98\x2c\x8d\x7b\xb5\xfb\xb8\xa4\xef\xe3\x52\xe0\x07\x49\x94\x84\x71\xd9\xb3\xf9\x23\x34\x48\x50\xc7\x78\xac\xe3\x13\x50\xf8\xe4\x62\xdf\x7b\x7c\xdd\x27\xc9\xdf\xc6\x30\x70\xd4\x17\x2f\xc8\x13\x90\xb8\xb3\xe4\x0f\x34\x2d\x99\x2d\xd3\x20\x43\xba\xbf\x6d\x92\x22\x0a\xa3\x91\xec\xe8\x02\x1b\xbc\x85\xea\x10\x9f\x28\x8c\x78\x5e\x66\x76\x57\x0d\x68\x5a\x3d\x71\xcc\xa0\xbb\xd8\x2f\xd1\xfe\xbe\xa7\x9a\xf6\xb7\x28\x7a\x44\x19\x9d\x37\x16\xa1\xfe\xd3\xcf\xf0\x89\x12\x03\xe6\x65\x8b\xbf\x77\xa2\x8b\x43\x99\x7b\x3a\x1a\x59\xa8\x2f\xc9\xc4\xf1\xd5\xc5\x8b\x13\x1f\xf9\x95\x76\x98\x26\xd5\x46\xc4\xc6\xff\x4d\xc2\xdd\x8f\xab\xc6\x4f\x5e\x10\xae\x17\x8f\x9e\x23\x01\x47\x15\xaa\x26\x99\xb8\x61\x2b\x17\xbc\x4b\x4a\xde\x68\x29\x4d\xa6\xbc\xe6\xc2\x45\xa4\x10\xd8\x3a\x10\x81\x23\x56\xfd\x77\x4d\x01\x4c\xcf\x0e\xa5\x84\x8d\x69\xfa\x7e\xe0\x97\xfd\xf7\xd5\x1a\x13\xa6\x49\x11\x25\xa5\xdd\xa1\xbd\x0f\x54\x14\xcb\x06\x68\x4e\x5b\xfd\x1b\xb3\x0e\x13\xec\xed\xab\x3e\x55\x59\xfd\x4d\x05\x0f\x58\x8a\xfa\x6c\xb5\xe2\x0c\xd6\x3d\x4e\xf3\xa2\x76\x4a\x89\xad\x49\x4a\x00\xf1\x85\x0c\x51\x45\x51\x42\x35\x6d\x64\x23\x15\x83\x28\x43\x49\xd4\x25\x99\xd5\x83\x14\xcd\x27\x65\xb8\x55\x14\x36\xe9\x59\x8b\xa0\x83\x35\xe7\xe9\xb5\x89\xfe\x7c\xcd\xd0\xbc\xbb\x36\x53\xab\x42\xb4\x94\xfc\x6a\x9d\x61\xe1\x93\x1b\x25\x1a\x7a\x4a\x61\x95\x63\x9b\xe7\x34\xd6\x1d\xb1\xbe\x7a\x87\x6e\xaf\x99\x3d\xc0\x21\xc2\x05\x4a\xbc\x05\x6c\x51\x3d\x58\xa4\xc4\xef\x04\x8a\x1a\xc6\x43\xc8\xa5\xea\x4e\xc7\xea\x9f\x6b\x72\xea\x4f\x6a\x76\x70\x23\x13\xaa\xa2\xf1\xf9\x40\xe7\xf7\x4d\x45\xa3\x41\x94\xa0\x4d\x22\x26\x59\x0a\x59\x3f\x09\x83\x5d\xdc\x43\x31\x63\x99\x14\xd3\x4a\xaf\x90\x61\x6f\x12\xe8\xb6\xc4\x15\xf2\x0f\xfe\x0f\x7c\x1b\x57\x36\x95\x60\x80\x2d\xb3\x34\xca\xf3\xd2\xe6\x34\x63\x6a\x9a\x65\xd8\x89\x70\xbb\xc8\xeb\x6f\xd3\xc6\x8c\x58\xed\xaf\x9a\xcc\x13\x57\x54\x88\xc9\x45\x40\x7a\xdb\x52\x10\x7c\x58\xb7\xbe\x6b\xe3\x25\x67\xa4\x81\x47\x7b\x53\xa1\x80\x8e\x52\xfb\x0e\x65\xae\x33\x4d\x55\x3a\x9b\x14\x1e\x1e\xc9\x2f\x10\x6b\x95\xbc\x4d\xd9\x0a\xfa\x36\x8e\x4d\x3e\xe5\xe5\xc7\x4e\xe3\x15\xa2\x31\x70\x4d\xd3\x86\x3f\x51\x9b\x10\x83\x8e\x29\x56\x15\x83\x73\x0d\x17\xa6\x0b\x47\x03\xf0\x5c\x13\x66\xb5\x5a\xbf\x6c\x92\x97\x98\x93\x58\x71\xee\x04\x3e\x2f\xba\xa3\x30\xab\xcf\x5b\xdb\xf2\x36\x3e\x2c\xc0\xcf\x27\x81\x37\xa8\x4b\x8b\x90\xf0\x3f\x92\x83\x29\xb3\x69\x4c\x31\x4c\xc7\x4d\x85\x98\xff\x2a\x48\x71\x42\x01\xf0\xf5\xf9\xa4\x1c\x92\x23\xee\x0e\xff\xcc\x79\x2c\xb1\x91\x8b\x12\x77\x3d\x07\xbc\x8c\x5b\x5c\x7d\xd1\xef\x01\x96\x01\x34\x45\x6f\x3a\xa5\x53\x9b\xc4\x55\xde\x6a\x93\xa1\x60\x76\x01\x91\x38\xa3\x08\x89\x67\x26\x10\x05\x87\x16\xf7\x28\xfd\x99\x56\xcd\x29\x4a\x01\x91\x03\xdf\x40\x5c\xcd\xd2\xa4\xb7\x94\x0a\xfe\xc0\x31\x93\xe7\x3d\x33\x59\x4f\xd0\xa5\x8c\x57\x1b\xa5\x50\x3a\xeb\xed\x58\xbe\xfa\x6b\xbc\x4b\x40\xc1\x0a\x55\x9a\x0d\x3c\x4c\xf1\x69\x79\xda\x01\x08\x87\x29\xd1\x86\xd8\x4c\x19\x25\xc5\xc3\x0a\x70\x74\x58\xf1\xc6\xf3\x81\xc9\xec\xa0\x8a\xac\xb2\xfc\x31\xff\x08\xee\x68\x4d\xf0\xd6\x7a\xdd\xb1\xc3\x95\xd3\xbe\x4f\xa9\x0b\x4a\x2c\x47\xc7\xde\x5f\xe6\x0e\x36\x73\x45\xcb\x91\x01\x70\x13\xd9\x91\x83\x7d\xb8\x6a\xdc\x1f\xe0\xdd\x29\x1f\x8b\xe7\xb9\x00\xf5\x56\xd3\xc6\x46\xbd\x25\x4e\x67\x65\xa3\x56\xa9\xf4\xc5\x87\x32\x66\x4d\x56\x0c\xca\x6c\xca\xa7\x76\x58\xb3\x71\xd7\xf7\xb5\xc2\xf0\x8e\xce\xe7\x94\x32\x8c\xcd\xd2\x25\xa9\x2c\x2b\x6d\x2f\x8a\x47\x44\xe7\x6b\xa2\xc6\x32\xdb\xce\x6d\x5a\xc6\x1c\xc1\x61\x3a\xfc\x1c\xbf\xc1\x27\x13\x65\xe2\xaf\xb4\x63\xf1\xb8\x71\xfe\xce\xde\xeb\x59\xb5\xf3\xcb\xe7\x92\xe7\x5a\xbe\xcc\x08\xde\x05\x1f\xab\xc0\x3f\xb6\x05\xf2\x5a\x57\x6b\xdd\x4e\xc0\x45\xd4\x88\xae\x11\x2a\x5c\xcc\x35\x1f\x75\xb3\xfe\xd9\x5d\xf4\x02\x09\xc8\x73\xf9\xe9\x8e\x0f\xb9\xaf\x21\x28\xc0\xde\x3f\xb5\xae\xea\xea\xdb\x48\x78\x15\xc7\xe8\x04\x4b\xb4\xd8\x7a\xf6\xd9\xfb\xff\xfc\x73\x80\x04\xba\xdd\xc0\xf3\xfe\x74\xbd\xa6\x00\x08\xc7\xa7\x18\xf7\x02\x5f\x7c\xb9\xa7\xea\x2d\xfd\xd8\x94\x49\x91\xb7\x50\x76\x16\xc0\x34\xe5\x73\x22\xf0\x28\x5f\x1b\x0e\xd2\x30\x8d\x4d\xc1\xbe\x7c\x22\x0c\xe9\x5b\x22\xd0\x1a\x91\xff\xef\x2b\xea\x71\xfe\x5f\xfe\xea\xaf\xea\xc6\xd6\x25\xb5\xd9\xc2\x1e\x5b\xba\x9a\x7e\xbd\xb4\x36\x83\xda\x0d\xb6\xfa\x9f\x61\x54\x02\xb5\xb1\x63\x5d\x59\xc0\x5d\xa1\xa1\x83\x71\x07\xdc\x3a\x92\xd6\x47\x3b\x0a\xe8\xc6\x62\x11\xa8\xd1\x3c\xde\xd1\x26\x97\xc0\xed\xd1\x9f\x99\xa7\xa8\xb4\xa0\x14\xe5\x85\xbf\x72\x7c\xfc\xf7\x1f\xda\x2e\x19\x9a\x6c\xd9\x7a\x2a\x09\x97\xed\xb0\x6a\x4a\x0d\xaf\x89\xbc\x61\x87\x39\x92\x17\xe7\x9c\xe3\xe0\x17\xde\xab\x3c\xb3\x61\x9a\xf4\xa3\x25\xea\x56\xb9\xc0\x7a\x7a\xdd\x07\xd6\xd3\x13\xd6\x00\xf3\xf3\xed\xd8\x24\xae\xb6\x25\x52\x45\xf4\x38\xc4\x4e\x72\xeb\xb4\xde\x3b\xdb\x1e\x46\x49\x62\xcd\x28\x8d\x23\xbe\x2e\xa1\x90\xb6\x9c\xe7\xf1\xe4\x72\x70\x70\x4f\x3b\x1f\xd9\x30\x62\xaf\x7c\x05\x6c\x61\x76\x95\x14\xaf\xbc\x99\x7d\xd7\x66\x2e\x9c\x40\xcf\xe4\x8a\x22\x3d\x5c\x51\x9e\xee\xbd\x68\x25\xca\xe1\x90\xee\xe2\xe1\xe3\x5a\x91\x0d\x25\x40\x1c\x6f\x60\x3d\x10\xb1\x4c\x2f\xbd\xca\xfa\xd5\x0c\xd3\x77\x31\x43\x35\xa1\xb9\xcd\x88\xbd\xf1\x64\xa0\xb8\xaa\x27\x9b\xfa\x8c\x90\xe1\x99\x9b\xe3\x62\xf0\xae\x8e\x2f\x92\xef\x6a\x2a\x0c\x13\xa3\xb1\xa5\x76\x20\x48\x0b\x4a\xa1\xc4\xdf\x68\x68\x8a\x41\xf5\x54\xec\x94\xea\x5e\xfc\xd5\x78\xea\xd0\xe2\x1e\x1e\x42\xa8\xdd\x0b\x1b\x56\x21\x76\x63\x13\x2e\xdb\xc4\xf6\xa6\x3c\xba\x11\xb0\x16\x21\x94\x2b\x71\xc4\x9f\x37\xe0\x23\xf7\xb7\x47\x59\x3a\xf2\x78\x0d\x3c\xb3\xc3\x1a\x4e\x75\xb8\x09\x57\xd7\xb5\x89\xed\x47\xae\x6a\x84\x16\x09\x83\x4b\xf9\x64\xa2\x8c\xf8\xe5\x76\x2f\x5d\xed\xb1\x10\x8c\xa8\x9f\x7a\x20\xc3\x9f\x28\xdc\x45\x1e\x25\xcb\x4e\x60\x88\x37\x49\xed\x53\xf3\xfd\xe6\x0c\x74\x60\xa2\xa4\xe6\x99\xf3\xb6\x36\x89\x78\xbb\x89\xb8\x9d\x97\x23\x75\xfb\x4e\x1e\xcd\x4b\xa5\x35\xc9\xfb\xd2\x9b\x9d\x52\x5c\xa8\x23\xd8\x9c\xb1\x03\xfc\x09\x7d\x1c\xbd\xbe\xe3\x0f\x35\x58\x85\x7e\x4f\xbc\xc6\xc6\xe8\xce\x6b\xdd\x89\xde\xc1\x9b\x8c\xf5\xb4\x15\x37\xcb\x86\x45\x3a\x8a\x4d\x3e\xac\x56\x78\xa7\xde\xfd\x16\xe5\x4f\x7c\xdc\x00\xcd\xde\xdf\xce\x6c\x2c\x72\x6e\xb3\xbc\xd7\x92\x2a\x49\xfd\xb2\x51\xfc\x6c\x75\x34\x47\x38\x49\xd2\x98\xbd\xde\xb1\x84\x5e\x55\x5a\xfe\x57\x1f\xea\x3d\x3a\xca\xec\x4a\x94\x96\x79\xbc\x36\xad\x5a\xda\xe8\x05\x63\x27\xc0\x82\x2d\x56\xb4\xd5\xcd\xe0\x76\xdf\x6f\x52\x06\x7c\xc9\xa6\x23\x93\xf5\xa2\x57\xb1\x14\x32\xdf\x91\x2e\x5a\xb8\x8f\x5b\x6f\xfb\xc5\x17\xdb\xdd\x32\x8f\x12\x22\xbb\x3b\x73\xfb\xfb\x98\xe9\x7c\xa2\x9a\xf7\x51\x37\xfc\xa7\xff\xb0\x97\x26\xe9\xd2\xa0\x64\x10\x30\x80\x8f\x6f\x06\x9e\xf4\xfd\xa6\x9a\x7e\x99\x49\xc2\x34\x13\x29\x1c\xa7\x7a\xb9\xb8\xc7\xe9\xaf\x4d\x02\xfa\x9e\xa7\x22\x81\x4d\x7a\x1c\x01\x01\xd3\x71\x24\x50\x0a\x16\x47\x1a\x39\x57\x3d\xdb\xb7\x49\xce\x6b\x04\xbe\xff\x04\xd7\x04\x75\xf6\x82\x3a\xd9\xed\x26\x02\x39\x69\x89\x29\x68\xcf\x5b\x35\x2b\x82\xc6\x6b\x85\xaa\xac\x54\x5b\x45\x81\xd1\x87\x55\x6c\xc9\x82\x6d\x72\xe3\xa1\xc8\xed\xd8\x9a\x9e\x5b\xf5\x45\xed\xd5\x87\x0b\x0f\x26\xa6\xf3\x97\x29\x4f\xf0\x13\x13\x4b\xc4\x0f\x94\x42\xca\x0f\x26\xe2\xd9\xea\x6d\x9b\x62\xc8\x61\x9f\x44\x63\x35\x3b\x35\xc1\xe2\x9b\x38\xed\x17\x33\xd5\x8b\xa2\xc5\xea\x89\xcf\x6b\xb5\xc7\x53\xda\xea\x44\x3b\x2c\x43\xf4\x55\x84\x8c\xfd\x30\x20\xf1\xa4\x57\xb7\xf4\x61\xce\xa8\x3e\xcc\x19\xb7\xff\x0d\xcb\xb8\x88\x46\xb1\x9d\xf6\x09\xf8\x67\x3a\x9a\x4c\x82\xae\x83\xb8\xcd\x79\xc8\xd7\x7d\x65\xa1\xd9\xaf\xc6\x9d\x89\x72\x9b\xeb\x87\x73\x4a\x0b\x90\x9c\x6a\xa2\x19\xe7\xe5\xd2\x12\x09\xd0\x55\xf7\x8a\xda\xe6\x87\x0a\x5b\xfc\xa1\x77\xc0\xad\x5e\x7b\x2f\x4a\x29\x35\x06\x48\x00\x3e\x24\x28\x13\xb0\x47\x3c\x46\xc0\x9b\xaa\xe6\xbd\x92\xc6\xe5\xd0\xee\xf4\xa0\xbc\xdf\xa3\xa7\x87\x72\x05\x20\xf1\x78\xe1\x27\x02\xd5\x6c\x40\x57\x08\x9b\xdb\xff\x40\xab\x00\xc2\x94\x77\x03\x15\xe7\x1d\x6b\x62\x9b\x56\xd1\x51\x3a\x8c\xc2\x9c\x17\x51\xac\xf3\x35\x33\x0b\x40\x59\xf1\xab\x37\x54\x40\x1f\x66\xe9\xab\x11\x24\xa6\x16\x3c\xa6\x47\xa5\x33\x0d\x9d\xb3\x51\x6c\xa2\xa4\x88\xfa\xfd\x96\x72\x50\x3d\xab\x85\x0a\xbd\x7b\x58\xba\x9a\x14\xe9\x6a\x32\xe3\x07\xec\x35\xba\x4d\x16\x37\x47\x22\x2e\x68\x7f\xd5\x58\x3b\xa5\xdc\x0f\xa7\x95\xe8\x75\x98\x16\x05\x3c\x0e\xf7\x3b\xbf\xa9\x96\xf7\x9e\x52\x50\x81\x7e\x94\xd9\x5e\x4b\xa3\xe6\x54\x5b\xea\x92\xda\x64\x7b\xd6\xc4\x36\xcb\x1f\x51\x95\xdd\x73\x81\xf2\x2f\xbd\xa4\xfc\x4b\xf9\x4b\x50\xe1\x9b\x46\xdb\x0a\xb0\xf5\xfb\xb8\x7a\xad\xa6\xea\x7c\x8e\xf6\xc9\x92\x3b\x29\xbd\x34\x37\xb7\xd8\x1e\x56\xdb\x75\x91\x59\x03\x1d\x0c\x47\xd1\x77\x56\x90\x27\x1d\xa6\x69\x35\x1d\x9a\x24\xf2\x73\xac\xa9\x10\x20\xf6\x61\x23\xea\xc7\x2f\xee\xe1\x61\x7d\x92\x2a\x80\xca\xc3\x60\xc1\xd9\xcb\x68\x16\xcd\x6a\x44\x19\x5e\xcb\x03\xb5\x8f\x29\x0b\xdf\x63\x35\x23\xea\x61\x3f\xcd\x50\x8e\x46\x97\xff\x9d\xb1\x7f\x52\xa8\x00\x89\x63\x08\x0d\x2f\x64\x68\x1f\x4d\xac\xea\xfb\xe6\xdb\xab\x03\x53\xd8\x15\x9b\x4d\x51\xb0\xa7\x47\x94\x00\xe9\x28\xd1\xc7\x44\xb9\x3f\xb1\xbe\xee\x9d\x6d\x9b\x51\x15\xc1\x65\x91\xc7\x00\x88\x36\xb8\xe2\x45\x5f\x68\x30\x91\xf8\x56\x3b\x2f\xd2\xd8\xc2\x9f\x5a\x70\xee\xf4\x19\xf1\x73\x6b\xb8\x5e\x62\xc3\x47\x05\x07\x59\xa8\x17\xc1\x7d\x92\x8f\x27\x6e\x92\x94\x72\x93\x15\xbb\x96\x66\x53\xca\xa4\xeb\x84\xca\x6d\x6f\x29\x11\x8b\xb3\x0a\xa6\x31\x8a\x6c\xc8\x45\x4c\x01\x1c\xaa\x11\x49\x1f\x72\x8e\x8c\x4e\x25\x50\x2b\x0f\xc6\x76\x40\xdb\xc1\x41\x19\x93\x27\x03\x25\xa1\x7a\x72\xa2\x74\x79\x70\xcf\x6c\x3b\x34\x59\x8f\x0b\x39\x2d\x45\x16\xe7\xa2\x98\x00\x26\x3f\xaf\x4b\xfe\x2b\x36\x29\xa2\x34\xa9\x3e\xa1\x67\x8c\xba\xbe\x89\xbd\xf5\xc0\x0b\xed\xbe\xed\xd9\x0c\x6f\xad\x1a\x24\x28\xce\xbf\x1e\x28\x09\xa3\xd7\x35\x64\x25\xb2\x59\x66\xf0\x82\xf1\xaf\x68\x1b\xf2\x71\x47\xf2\x9a\xac\x1c\xa6\x19\xf0\x3b\xb2\x43\x57\xb7\x8f\x52\xd7\x79\x6d\xfd\x7c\x4f\x19\x18\x9a\xa4\x18\xa4\x09\xdc\x27\x30\x39\xa6\x3b\xbe\x3a\x38\x5d\xeb\x09\x3e\xb7\xfa\x5c\x4b\x21\x8b\x2f\x50\xfd\x58\xf8\x44\x2e\xbd\x4a\xcb\x64\xc9\x4e\x29\xf7\xec\x0b\xaa\x0f\xbf\xa1\xde\xdd\x29\xc7\x15\x2f\x93\xcc\xac\xd8\x58\xb8\x5a\x08\xea\x4e\xab\x00\xef\xb4\x72\xa9\x8b\x92\x7e\x9a\x0d\x09\x10\xb9\x13\x8b\x3f\x8a\x72\x8f\xad\xfb\x6d\xf7\x41\xa0\x93\x2f\xcc\x24\xc4\xeb\x10\xc6\xc5\xac\x42\xf9\x0c\x64\x2b\xee\x1e\x01\xbe\x76\xbb\xc9\x2f\xa0\x5b\x66\x91\x4c\x34\x64\x9e\x67\xf1\x2b\x7c\xa2\x10\xc6\x55\x7c\x5f\x66\x6b\x33\xad\xbd\xc2\x35\x7a\x1c\x18\x32\xf8\x9c\x9e\xa7\x01\x82\x2a\xfa\x17\x3b\x7e\xa7\xbf\xa4\x7d\x00\x9b\xb8\x76\xed\x97\xcb\xd4\x4d\x76\x01\x39\x28\x2c\xf4\xef\x2b\xbb\xf1\x6a\xd7\xc0\x1f\x22\x71\xfa\x39\x2e\x96\x4f\x14\xf2\x2b\x8c\xad\xa9\x12\xf3\x69\xcf\xfd\x01\x84\x41\xba\x58\xd5\x43\x12\x3e\x5b\x6b\x51\xaa\x7b\x6f\xb9\xfa\x90\x49\x8a\x88\x50\xb2\x3b\xe8\x1e\xd9\xda\x8d\x06\x9f\xd3\xfd\x17\x5a\xfc\xd7\xe1\x0f\xef\x5c\xe4\x17\xf7\x70\x72\xf0\x53\xb5\x67\x5c\xaa\x2b\x8f\x24\x76\xca\x2b\x1e\xb3\xc9\x37\x3a\x24\x33\x1d\xb5\x25\xdc\x55\xec\x93\x5e\x34\x8c\x12\x02\x0b\xd0\x12\x80\x66\xdf\x07\xd8\x02\xf8\x64\x22\x4c\x26\x74\x90\x09\x97\x67\x94\x83\xfc\x69\xdd\xb5\x43\x8a\x86\x54\x9b\xe5\xcc\x70\xbd\xb7\xc6\x5e\xbb\xff\x6c\xc3\xd0\xd9\x4f\x20\x3e\x7e\x6d\xac\x47\x10\x28\x39\xb4\xd7\x1e\xda\x49\xc9\xa3\x61\x14\x9b\xec\xa1\xd5\xcc\x49\x3e\x45\x3b\x34\x71\x3c\x35\xe1\x9e\x20\x0e\x64\x2d\x67\x98\xb7\xbd\xf3\x78\x8d\x7e\xfc\x68\xeb\x6b\x87\xb4\xaf\xc0\x2c\xef\x70\xcc\x97\xe5\x13\xaa\x57\xb3\xbc\x8e\x62\x71\x9d\x57\xc5\xff\xdf\x0a\x14\x56\xeb\xa8\x22\x51\xfe\x16\x5e\x1d\xe7\xcd\x74\x59\xf8\xa3\x8b\x13\xcf\x6c\x71\x0f\xc3\xe3\x5a\xde\x04\x58\xcb\xd7\x5d\xaf\x29\xc7\x16\x69\xc6\x60\x1e\x57\x54\x76\x65\x5d\xae\x97\xb3\xa0\x1d\x11\x0f\x50\x39\x86\x9e\x1d\xa4\xd7\x6e\xd1\x6d\x61\x12\xde\x41\xd5\xc8\xb9\xab\x7a\xa7\xae\xa9\x0e\xe1\x48\x11\x26\xde\x22\x24\x8b\x5a\x5c\x17\x38\x17\xbb\xaa\x4c\xb8\xd1\x07\x47\xd3\xea\x7b\x28\x48\xe0\xfa\x6f\x8e\x95\xf0\xd2\xb6\x75\x82\xfd\xf1\xf7\x22\x3e\xc6\xf0\xdb\xbe\x4e\x55\x64\x4c\x44\x46\xf6\x88\xfa\x53\x13\x54\x6b\x35\xc2\x96\xc7\x1a\x4c\x81\xd6\x63\xf2\xdd\xaf\x6a\x75\xca\x4c\xbc\xd3\x77\xaa\xf1\x2c\xf8\xb8\xa3\x16\x21\x16\x34\x10\x56\x47\xcb\xd1\xb9\x7f\xac\xed\xe0\xae\x04\x8a\x5e\x70\x65\xac\x6d\x72\xc2\x74\x68\x77\xd3\xbf\x22\x4a\xb8\xa1\x97\x38\x00\xb7\x5c\x69\xd8\x85\x5f\xd7\x30\xfe\x78\x61\xf6\x52\xeb\x6f\xff\x02\xd5\x8c\xa1\x10\xc5\x53\x53\x64\x86\xfc\xf6\x7b\x5f\x1b\xee\xdc\x47\x56\x85\x8e\xf0\xf6\x4e\x43\x6a\xb4\x9a\x66\xcb\xb4\xfa\x39\x08\xca\x1d\x45\x40\x67\x46\xa2\x93\x48\xf0\x94\xc8\xab\x2e\x67\xb2\x09\x19\x3b\xf0\xfc\x6e\x0c\xbd\x1b\x4c\x04\x86\x69\x52\x0c\xd8\x65\x1e\xd9\xe7\x1d\x6a\x53\xe9\x72\x90\x27\x74\x28\x9a\x5f\x31\x88\x92\x25\xea\x15\x22\x54\x7e\x17\x05\x04\x8d\xa2\x70\x76\x4d\xae\xf4\xff\x3d\x2d\x43\xf6\xbd\x86\xba\xde\x42\x7b\x39\x8b\xf2\x51\x64\x85\xc9\x8d\xf7\x75\x4c\x83\x2a\x26\xbd\x7d\xab\x58\xb2\x18\x64\xd6\x48\x5c\xc8\x95\x57\x1a\x79\x52\x85\x9d\x34\xac\x1e\xc5\xdc\x9c\x44\x01\x62\x93\xe4\x54\x70\xe3\x3b\x3a\x3e\xf3\x84\xed\x37\x02\x8c\x5b\x81\x62\x7f\xa1\xb5\x2f\x20\x21\xdd\x06\x1c\x0e\x0d\xc4\xcf\x10\xc9\xde\x55\x99\xd2\x5d\x85\xd6\xc8\x07\xe9\x6a\x11\x0d\xad\x12\x44\xfa\x36\x5d\xb3\x58\x4f\x37\x15\x19\x33\x3b\x4a\xb3\x02\x6b\xab\x74\x55\x7d\x7d\xfa\x3f\xea\xd4\xf8\xfc\xc4\xee\xb2\xb8\xa7\xfd\x6a\x14\x87\x03\xe0\x7d\xb1\xe7\xb1\xcf\x11\xe3\x0d\x14\x7f\x60\x92\x25\xf4\xe5\x76\x3e\x12\xb3\x7c\x24\xd5\xac\xf9\x84\x38\xed\xae\x0a\xc4\x2f\x21\x56\xaa\x87\x9c\x06\x8e\x89\x62\xfc\xa0\xcd\x21\xfc\xc2\x10\x25\xfd\x38\x0a\x81\x0e\x15\x93\x50\x5f\x7d\x3e\x3b\x91\x18\xbf\xf8\x62\xbb\x4c\xfa\x69\x99\x88\x88\x06\x47\x0c\x81\x0a\x3b\x2e\x8c\x75\xda\x99\xe7\x36\x2b\x5a\x8a\x04\x71\x49\x11\xd7\x2f\xb9\x12\xbd\xe9\xad\x44\xa1\x9d\xf6\xff\xf4\x59\x54\x4a\xdc\x8a\xb0\xb8\x47\x1c\xdb\xd7\x7d\x28\xa5\x99\x9c\xdd\x38\x5d\x4d\xb4\xc4\x17\x37\x51\x05\x55\xba\xf5\xfd\xfe\x72\x3b\xb3\x71\x64\x92\x10\x78\x6e\x64\x27\x47\xd4\xaa\xf2\x5d\x6d\x05\x71\xb2\x31\x41\xca\xaa\xa0\x83\x45\x0a\xc4\x20\xd9\x97\x20\xce\x3c\xb4\x1e\x6c\xcb\x2c\x1d\x59\xc3\x84\x2e\x66\x91\x07\x9e\x41\x74\x42\x59\xb8\x87\x26\xe7\xe7\xe7\x0c\x2e\x9c\x70\xef\x64\xcd\x91\x80\xcb\x69\x58\x3d\x76\xae\x39\x3a\xc7\x89\xea\x2b\xf8\x44\xf5\x44\xd3\x15\x9b\xb1\xf4\xb5\x03\xae\xf8\x86\xee\xbf\x1a\xab\x78\x97\xb5\xe2\x10\x49\x6f\xef\x54\x4b\x97\xe3\xe3\xce\xcd\xf1\x40\xfe\xc2\xba\xa7\x3c\xfe\x36\x15\x59\x50\x3a\xfe\x58\xad\xf6\x33\x8a\x72\xfc\x39\xe8\x63\x23\x44\xb8\x81\xe9\x81\x85\xed\x41\xe0\x63\xf5\x9f\x60\x2b\x45\xb0\x32\x05\x9a\x39\xaa\x10\x1f\x01\x76\x88\x2b\x6c\xad\xab\xb8\x9f\x11\x15\xd8\xc9\xdf\x25\x98\x10\xab\x0b\x29\x44\x1c\x3b\x2f\x23\x82\xbd\xe5\x52\x9a\x81\xed\x2d\xc9\x03\xc4\xcc\x7d\x6d\xac\xa6\xf1\x6b\x4d\x58\xcb\x90\x40\x2c\x34\x5f\xb1\x63\x3e\xd2\xf1\xa0\xac\xed\xeb\x74\xcd\x58\x8d\x4f\x6b\x4d\xc6\xb4\xcc\x68\x27\xc2\x86\x75\x81\x85\x9c\xd8\x33\x0c\xe4\x1f\x31\x10\xf3\x58\xf2\x0b\xda\x09\xc2\x84\xcb\x9c\xc0\x3e\xef\x82\x25\x3f\x47\xae\x3b\x1e\x70\x98\xc6\xb1\x5d\xb2\xbc\xda\x4b\x62\x42\x6f\x9b\x4f\x14\x00\x6d\x94\x8a\x31\xa9\x34\xe3\x54\x63\xae\xa1\xb9\xb4\x50\x2d\x0c\x51\x1c\x4b\x17\x0c\xe1\x3a\x84\xcb\xf8\xb8\x06\xaf\xca\xc3\xe8\xe1\x82\xca\x8a\xa4\x62\xed\x72\x9c\xd6\x5d\x9d\xfe\xcd\xd8\x13\x06\xff\x8d\xaa\x71\x45\xc9\x92\x89\x63\x7e\x10\xc2\x08\x50\xc2\x49\x93\x81\xfa\xdc\x5c\x3b\x2d\x8b\xd8\xf2\x04\x13\xbc\xa8\xa7\x61\x68\xb8\xa8\xe9\xf7\x2d\xb0\xd3\xde\x2a\xed\x2c\xfa\xe7\x7c\xd2\xe4\x23\x32\xb0\x46\xe4\x2e\x50\x50\x3b\xa2\xe0\x73\x47\x14\xd4\x2e\x49\x93\x32\x71\x1a\x7c\x2c\x12\x10\xf8\x3e\xcc\x1f\xd5\x76\xbd\x22\x2a\x5a\x8a\x4c\x76\x31\xa0\x9a\x92\x60\x05\x9b\x24\x68\x73\x5b\xf7\x3f\x3e\x1b\x78\xba\xd0\x24\x71\xc2\x63\x3f\x86\xb6\x87\x36\x84\x98\x3e\xb7\xfe\xdb\xfd\xce\x3e\x64\xca\x7b\xc0\x1d\x6f\xd2\x23\x5a\x22\x1f\xf6\x9a\xa7\xd1\x15\xe5\x69\x74\x45\x79\x8b\x93\x21\x62\x4e\x35\x54\xc6\x84\xeb\x9c\xe4\xb0\xce\x24\x00\x92\x57\xb3\x5c\xaa\xab\xd7\x9a\xd2\x8a\x25\x6b\x1c\xb4\x8c\x45\x27\xe8\xb1\x8a\x00\x85\xa7\x28\xda\x15\x9b\xad\x75\xd3\xde\xda\x2e\x7f\x89\xef\x29\x9e\x0c\xd1\xca\x16\x19\x55\xfa\x21\x2d\x68\xce\x2f\xbc\x1a\x73\x02\x37\xf5\xb6\x27\xd7\xc7\xaa\x88\x73\x96\x16\x34\x04\x3d\x0f\x30\x70\xf8\xab\x26\x36\xff\x83\x7b\x9e\x6f\x8f\xc2\x2d\x96\xdf\xf4\x04\x44\x94\xd5\xcf\xd4\x6e\xb4\x4c\x74\x31\x11\x31\x84\x9a\x3b\x1f\x2b\x6c\x46\x37\x4d\x05\x86\x80\xf9\xa0\x35\x11\xb6\xaf\xab\x72\xb9\x40\x4a\x0f\x8a\x2e\xcd\x9f\xd3\x43\xe0\xe3\x26\xab\xf5\x38\xcd\x8b\x19\x3d\x9e\x14\x91\xea\x8f\xe0\x55\xe2\x7c\xd2\xaa\xcc\x07\xbb\xcb\x51\x1a\x0a\xc0\x74\x6e\xef\x3c\x4c\xe4\xa0\xa0\x7d\xbd\xfa\x3e\xc4\x8e\x67\x75\x27\xeb\xac\xd2\x6f\x35\xf1\x4a\x94\x4c\xe9\x58\x16\x53\x19\xf9\x10\x63\x5c\x91\x4a\x68\x1e\xd2\xd0\x1a\x72\xab\xa8\x9e\x1a\x0a\xb1\xec\xc9\xc2\x27\x6a\x80\x44\xd5\x0a\xdf\x35\xc9\xf2\x8c\x0a\xc0\xaf\xa8\x00\xfc\x70\xcd\xd6\xf4\x86\x26\xd1\x32\x06\x55\x3a\xcd\x4f\xaa\xc6\x62\x41\xc0\xac\x96\xd3\x71\xf8\x99\xd6\x71\xf8\xd9\xc4\x62\xbb\xb8\xa7\x6d\xbb\x65\x1c\x47\x02\xc7\x13\x22\x58\xf5\x0d\xc2\x03\x6b\x68\xaa\xae\x44\x49\x2f\x0a\x8d\xb8\x9d\x34\x7a\xbb\xa9\x0d\x20\x8a\xe3\x7c\x46\xbd\x2d\xb0\x3a\x64\x5d\xa4\x77\xca\xff\xa0\x18\x3b\x3f\xa1\x7d\x56\x84\x66\x1a\xb4\x90\xe2\x34\xcd\x6d\x86\x88\xdd\xd9\xc4\xb9\x84\xe8\x9c\xc6\x1e\x67\x4b\xe5\xd0\x26\xc5\x0e\x05\xa4\xbd\x5c\xe3\x87\xd3\x6a\xa6\x51\x20\x02\x9a\xf0\xc1\xee\x1f\xd7\xf5\x78\x27\x83\xec\x7e\x5c\xa6\xdc\x19\xd2\x92\x7c\xe2\x52\xf6\xa4\x5a\x9f\xac\x59\xb6\x00\x86\x63\xf5\x06\x8c\x87\x8f\x15\x9e\xe9\xbf\x89\x32\xaa\x63\xe3\x55\x7c\xac\x8a\xdf\xc8\x6c\x11\x04\xfd\xa1\xa6\x16\xdd\x50\xdb\x98\x4d\x96\xe2\x08\x42\xcd\x0b\x5a\x4a\x4d\x4c\x64\xfe\x98\xbe\x50\x6e\xaf\x5a\x09\xf9\x8f\xc6\xaa\x50\x6d\xb2\x6c\xad\x9f\x66\xab\x24\x5a\xd2\x72\x4a\xe5\xd7\x95\x52\xf9\x75\x15\x05\xf6\x4d\x88\xa1\xe4\x5a\x43\x9e\x9b\x73\x6e\x22\x9d\x9b\x3d\xd0\x4e\x13\x3b\x45\xb1\x09\x1e\xf9\x87\x2a\x81\xfe\x80\xa0\xd2\x02\xf6\xf5\xa6\xeb\x2f\xa5\x2b\x26\x49\x57\xa2\x70\x80\xc7\x8d\x37\xfe\xb6\x22\x04\xbf\x3d\xd1\x39\x9a\x3d\xd0\x8e\x7a\x36\x8d\xd3\x25\x27\x06\x06\x28\x17\xe2\x6c\x3e\x9e\x78\xad\xcf\x3e\xdb\x5e\x4e\xec\x2a\xbd\x2b\xec\x1f\x1b\x7a\x33\xd9\x50\x02\x33\xc3\x34\x89\x8a\x34\xab\x36\xb9\x6a\x07\xe5\x72\x58\xe0\x2a\x10\xfb\x2f\x29\xfa\xec\x6f\xa8\xce\x10\x35\x82\xf3\x62\x67\x75\xb3\x98\x13\xf7\x03\x65\x4b\x7f\x8a\x5e\x35\x92\xcb\x16\x72\x19\x79\x4d\x4a\x60\xea\xfb\xda\x7e\x91\xde\x2b\x50\x1d\x1b\x13\xee\x3d\xb2\x1a\x2e\xa5\xb1\x4d\xba\x24\xc9\xb3\x28\x1e\x87\x27\xb5\x41\xc0\x49\xe5\x45\x38\x32\xd9\x32\xcf\x76\xac\xc5\x58\x23\xf8\x78\x22\xb7\x9f\x9b\x6b\x9b\x18\x39\x51\x4b\x81\x96\x61\xea\xc0\xc7\x0a\x9c\x52\x65\x81\xd9\x12\x69\x9b\x61\xa3\xd2\x0e\xa3\xa2\xea\x39\xb9\x0e\x3d\xdf\x1e\x9a\xd8\xac\xe5\x11\x37\xef\xb1\x58\xbc\xa9\x29\x08\x6f\x36\xed\x31\x2f\x95\xc3\xd1\x94\x6f\xca\xa3\xd6\x25\x3f\xd3\x72\x46\x6d\xbf\xae\xd5\x83\xb3\xe5\x27\x94\xb9\xf3\x77\xab\xd7\xba\xf9\x26\xa8\x04\xa2\x6f\xa7\x56\x22\xed\xa3\xf1\x17\xda\x15\xab\xb5\xee\xfb\x7f\x57\x91\x8a\x88\x97\x00\x5d\x35\x4d\x28\xfb\x34\xaa\x85\xd8\xd3\x37\x3c\xbc\xfc\xe2\x93\x1d\x45\x36\xe5\x12\x00\xc7\x0a\xaa\x06\x2e\x7c\x7a\x69\xaf\x6c\x9d\x75\xf3\xf3\xed\x41\x5a\x28\x03\xe5\xdb\x0a\x86\x3b\xd5\xa1\xd9\x28\xad\x33\x65\xc6\x92\x75\xa7\x3c\x97\xe6\x4e\xe0\xdd\xdb\xb5\x5d\xf2\xe9\x06\xf9\xf9\xc5\x76\xda\xef\x93\x85\x1b\x36\xb0\x63\xca\x39\xf6\x4d\x45\xee\xfc\x4d\xe5\x1e\xf3\xde\x44\x25\xa2\x5a\x61\xd7\xa6\x26\xd4\x4d\x44\xf9\x4c\x91\x96\x2e\x37\x80\x52\xbe\x45\xd2\x77\x85\x6b\x05\xbb\x3a\xb4\x2b\x73\x4d\x8e\xe2\xf9\xf9\xfd\xed\x22\xab\x92\xa2\xde\xc3\x71\x3d\xde\x39\x1d\x34\x1e\x9b\x14\x26\x9e\xae\xd5\x5a\x3c\x4f\xae\x85\x56\x0e\x62\x9b\xb7\x14\xd6\x63\xa6\xb3\x35\xd2\x3e\xb4\x80\x40\x16\x35\x23\xe7\xf6\xe0\xb1\xe0\x1b\xd8\x90\x58\x29\x75\xfc\xa8\x9b\x4d\xcf\x3e\xd3\x7a\xf6\x59\xe7\x12\xd2\x52\xa2\xc9\x94\xe0\x8a\x63\x88\x62\x20\xfe\xba\xca\x63\x0f\x8f\x95\xbd\xe4\x1f\x6a\x87\xae\xef\x6b\x7b\xcb\x19\x64\xdb\xce\xc2\xc9\xdb\xdf\x9e\xa9\x23\x16\xaa\x49\x21\x60\x64\x0c\x4b\xf4\x9b\x76\xac\x7b\xec\xfe\x31\x6a\x82\x60\x2c\xde\x43\xc7\x4d\xf1\x97\xc5\xac\xf7\x15\x1a\xe2\xb8\xf9\xdd\x80\xde\x08\xe6\xcd\x09\x47\xc3\x2c\x32\x4a\x96\xea\x80\xfe\xea\xf6\x94\xc4\x9e\xe4\x7f\xf0\x73\x10\xce\x8e\x8f\xf0\x36\x34\x39\xcb\x24\xa6\x17\x99\x64\x5a\x05\x8e\x1f\x2a\x8a\x2a\x84\x0a\xb1\xf0\x5e\x51\x8b\xf0\x15\x07\x1b\x1a\x98\xd1\x68\x6d\x97\x6a\x06\x5c\x84\x76\x2e\x56\x01\x06\x17\x68\xca\x32\x85\x0c\x3f\x6e\x77\xd4\xf2\x7e\x46\xa1\xb4\x08\x7f\xf7\x2d\x51\xcb\xc0\x4b\x91\x14\xa4\xba\x51\xf1\x26\x90\xdf\xcf\x57\xad\x29\x76\x78\xd0\x2b\xfb\x62\xb9\x8a\x8b\xb3\x45\xfc\x48\x89\x1e\x5d\xc1\x9b\xe7\x7f\x08\x94\x54\xfe\x39\x77\x63\xdd\xb2\xd7\x63\x41\x4e\x5c\x0c\x16\x02\x3e\x6e\x10\xec\x6a\x8f\xac\xcd\x30\xa0\x45\x1e\x84\xbe\x18\x33\x05\xd6\x37\x08\xb0\xee\xea\xc2\x86\x29\xe3\x19\x25\x0a\xca\x3a\x00\x2c\xa1\x1e\x28\x1f\x83\xdb\x63\xad\x24\xfa\x8e\xe2\x65\x5f\x0c\x04\xe7\xd1\xab\x16\x7f\x55\x8e\x81\x2b\x35\x4a\xa1\xe0\xda\x0a\x9c\xae\x89\x9b\xe5\x11\x78\x0c\x13\xd1\xd2\x55\x27\x27\xc2\xd4\x43\x0b\xed\x30\x36\xd1\x90\x3f\xa3\x74\xef\x16\x9c\xee\xdd\x04\xaf\xee\x85\xfd\xed\x7e\xe9\xa4\x86\x10\x4f\x7f\x47\xb5\x7d\xbf\xa3\x5b\xf0\xdd\x32\x8f\x56\x00\x30\x76\x78\x24\xaf\x37\xa4\xaa\x7f\x59\xda\xb3\x53\x5a\x28\x66\x5b\xa7\x9e\xe0\x28\xe2\xd2\x15\x57\xbe\x5a\x35\x59\x6e\x56\xa7\x3d\x38\xe5\x92\x8a\x19\x39\x7f\x42\x19\x6f\x47\xc7\x3f\xc7\x4b\x63\x9f\x8d\x67\x65\xb7\x2b\x61\x3a\x73\xd3\xb0\x6d\x0a\x51\xcd\x37\x28\x4c\x37\xcd\x9c\x8e\x98\x8c\xbc\x96\x73\xea\xfc\x68\x62\x6b\x59\xdc\xd3\x2e\x4c\x37\xaf\x15\x35\x03\x5f\xe0\xbd\xa0\x3a\xff\x2f\x97\x36\xaf\xbe\x9b\xe8\x18\xb3\x07\x1c\xc3\x81\x16\x1b\xd7\x5a\xdf\x37\xbf\x39\xb9\x0d\xec\x9b\xa7\xe2\x91\x7f\xf5\xd8\x65\x3f\xc2\xcc\xe3\x13\xd5\x3d\x1f\xa6\x45\x8e\x52\x3d\x52\xb4\xb7\xe8\x91\x49\x91\xc1\xcb\x4f\x5e\x69\x92\x35\x4d\x57\x6c\x66\xe2\xb8\x55\x5d\xa3\x93\x41\x72\x8b\xd4\x85\xa6\xc2\xd3\x4a\xea\xb7\x35\xe7\x80\x32\x3f\xef\x7c\x52\xbc\x8b\x77\x3e\xb2\xe4\x4a\x51\x45\x72\x8e\xf7\x78\x8d\x16\x30\x3e\x56\xda\x3b\xbf\xfa\xab\xf9\x0e\x8c\x10\x2c\xd2\xe7\x94\xc2\xe0\x1d\x4a\xce\xb0\xd0\xc1\xd4\x02\x11\x3e\x4b\xc1\x23\x22\xda\x81\x05\x4c\x0c\x2b\xa5\xe5\x65\x96\x32\x6b\x9d\x30\x08\x66\xc1\xbd\xc0\x37\x3b\x81\x70\x80\x13\xe7\x79\x07\x14\x20\x54\xcf\xd0\x56\x5b\xab\x13\x85\xba\x8f\xc9\x27\x3b\x71\x8d\xf6\xe2\x1c\xd1\x8e\x37\xb9\x70\xdb\xb8\x67\x33\x06\x27\x8b\x5c\x81\xc7\x76\xdc\x71\xc3\x7f\x94\x81\xa1\xe0\x0b\x69\x1f\x07\xca\x68\xe0\x63\x95\x64\xda\x15\x13\x97\xa6\xb0\x10\xb1\xe5\x30\x30\xf0\x6c\x9f\x4b\x0d\x01\xec\x7c\x95\x5e\x8d\xac\x7f\x7d\x2e\x08\xf5\x71\x6f\x93\xcd\x77\x98\x0e\x87\x65\x52\x65\xe0\x32\x5b\xb0\xb2\xff\x87\xc0\xaf\xf2\xff\xa1\x69\x1c\x9b\xb2\x48\x93\x74\x08\xc8\x8e\x00\xb6\x7c\x86\x72\xcc\xdd\x78\xd7\xfa\xae\xa4\xd0\x3f\x34\x17\xe4\xa1\xa8\x03\x1e\xbf\x8f\xb4\xbe\xf9\x75\xde\xe8\x3f\x50\x86\x17\xa8\xd7\x4b\xe7\xbb\xb5\x77\x2f\x17\x8d\xfe\x7b\xaa\x05\x22\x00\x05\xcb\x0e\x21\xcb\x65\xaa\xfb\x3b\x37\xd3\x6a\x38\x49\x47\xa4\xa9\xcb\x46\x10\x17\x9e\xa4\x2c\xfc\x18\x28\xc8\x59\x9d\xf5\x37\x2a\x61\x16\xcf\xae\x7d\x8a\x0e\x77\xb6\xc1\x2d\x6e\xa1\xa6\x88\x2e\x11\x58\xcb\xa9\x12\x6d\xa8\x25\x2f\x34\x71\x6c\xc9\xde\xc8\xfb\xaa\x54\xbf\x84\x8d\x79\xfb\xba\x46\x1e\xbd\xaf\x36\x3d\x46\x48\x22\xdb\x3f\x1c\x28\xeb\xdb\x9f\x28\x39\x14\xbe\x25\x64\x51\x3f\xc0\x43\x01\xc2\x16\xe5\x13\xc4\x44\x57\x27\x1e\xd0\x57\xda\x89\x05\x8b\xae\xe5\x63\x42\xa4\x71\xd2\x6d\x75\x93\xad\x84\x5c\x46\xf6\x48\xf5\x8a\x1c\x08\xd2\x57\xab\x99\x1a\xe5\x56\x1b\x2f\x6c\xab\x55\x78\x37\xd9\x41\xcc\xb9\xc0\xbb\xbe\xcd\xad\xb1\x1b\x07\xff\xdd\x2f\x76\x9e\x51\xd0\x3b\xd3\xb3\x59\x3e\x88\x46\x64\x51\xec\xca\x33\xd5\x2f\x73\x79\x86\xbe\x05\x3d\xde\x1f\x8f\x95\x33\x1b\xa2\x07\xac\x3c\x6f\x2b\x69\xb6\xbe\xc9\x86\x8c\x78\x46\x4c\x8b\x2d\x85\x8f\x1b\xfb\x0f\xb9\x4d\x4c\x91\x66\x82\x0f\xc6\xa0\xb8\x19\xa8\xcc\x94\x99\x5a\x18\xc8\xdb\x27\x68\x3c\x84\x9a\x4f\x5f\x59\xa3\x5d\x6f\xf3\x72\x75\xb3\x9b\x97\x27\x96\xee\x7d\xf3\x1c\x1c\x4c\x29\xd5\xcf\xfb\x08\xa5\xb5\x16\x82\xc8\x0d\x6c\x5d\x3f\xf6\xcd\xb7\xe3\x6a\xcb\xac\xae\x15\x33\x1a\x29\xd8\xbf\x0e\x3c\x53\xee\x5f\x6b\x9d\xf2\xe1\x28\x4b\x57\xd8\x78\x58\xb7\x00\x81\xec\xdb\xde\xf1\x4d\x6c\xd4\x1c\x9c\xa4\x8d\x17\xbd\x7f\x53\xb5\x31\x42\x1b\xc5\xae\xde\x88\xe1\x88\xf8\x95\x8f\x27\x02\xc0\x03\x2f\xb4\x7b\x99\x59\x9d\xf2\xc8\x4a\x7e\xa8\x48\x36\x3f\xd6\x6c\xde\x9a\x04\xcb\x5a\x92\xc6\xd5\xe6\xeb\xfd\x6f\x39\x5c\xe1\x93\x89\x8e\x79\x95\xef\x0d\xcb\x10\xb6\xeb\xb8\xf2\x1d\xa4\xbb\xa1\x11\x12\x68\x32\x7f\xa6\x81\x0a\xb7\xd0\x36\x43\x93\xa3\xed\x2d\xf6\x53\xde\x18\xfe\xfc\x43\x17\xbf\x95\x28\x4b\x5f\x2e\x8d\x52\x7c\x64\x2c\xaf\xcc\x5c\xc9\x53\x92\xb4\x88\x42\x6b\xba\xdc\x18\x93\xdb\xf0\xbc\x96\x4b\x0a\x1f\xdf\x67\x7f\xe6\xea\x49\x69\xbf\x7d\x01\xbf\x4c\x26\xca\xc9\x73\x03\x65\x70\x78\x56\xc3\xde\xce\xba\x40\x38\xca\xd2\x04\x92\x01\x8e\x82\x32\x2f\x9d\x77\x20\x29\x50\x14\xbb\x3f\xf6\xe8\xae\x3f\x73\x2d\xc0\xd8\x2c\x2d\xb9\x4d\x5c\x2c\x20\xab\x0f\xa1\x0c\xf9\x28\x2d\xf4\x88\xab\x66\xd6\x27\xc5\xb4\x16\x5c\xe7\xba\x8e\x19\x79\x43\x63\x46\xde\xd0\x6a\xa4\x20\x55\xe7\x08\x24\xa5\x95\x4e\x23\x82\x4f\x9a\x9c\x25\x32\x1b\x66\x00\x1e\x57\x6b\x29\x0a\xac\xdf\x0f\x54\x0f\xed\xfb\x0d\x42\x5f\x0b\xed\x28\x79\xb9\x8c\xb2\x48\x1e\x7a\x53\x9b\xeb\x69\xb5\xc0\x84\x45\x5a\xfd\xf1\xb4\xa7\x0f\xfe\x0e\x42\x7c\x2d\x93\xd5\xc8\xe1\xd7\x48\x34\xb3\x92\x4e\xd7\x5a\xa8\xf5\xee\x6a\x35\x4e\x90\xba\xa3\xef\xc7\xc7\x8a\xe0\x41\x3d\x85\x15\x9b\x70\x9d\x0e\x91\x15\x48\x57\x7c\xdc\x24\x98\x90\xd9\x15\x9b\xb1\x14\x1d\x52\xfb\xbb\x74\xf1\x9b\x2c\x45\x2e\xf0\xd2\xad\x1f\x3d\xb4\xd0\xfe\xc5\xaf\xff\x93\x85\xaf\x7f\x75\x7e\x5a\x81\x49\x18\xf0\x8c\x2d\xe3\x3a\x5d\x34\xff\x83\xae\x37\x5c\x0f\xfc\xe3\x5b\x1d\x44\x45\x61\x96\x99\x55\x89\xed\xe5\xb6\xa2\x8f\xde\x56\x0d\xaa\xe5\x34\xb3\xd0\xd4\x95\xd8\xb6\xba\x6a\xd9\x85\xf4\xe6\x1e\x9b\x61\x4b\xd1\xd8\x8f\x06\xbe\xdc\x77\xb4\x01\x89\x54\x2d\xd7\x04\x46\x99\xf2\x94\xac\xbb\xea\x31\x5f\x18\xab\xa6\xdf\x19\x17\x25\x15\x24\x98\x31\xed\x25\xcd\xd9\xe7\x4f\x23\xf8\xb0\xe9\x4f\x75\x34\x21\xd6\x07\xd9\xcf\x7e\x95\xa5\x2e\xc4\xfb\xbd\xe6\xf1\x5e\xb3\x88\x7f\x4a\x85\xf1\x26\x49\x44\xdc\x40\x01\xcd\x1d\xea\x5c\xcb\x7a\x98\xac\x18\x74\xa9\xb2\x5a\x5d\x26\xca\x50\x37\xb4\xbf\xfb\x8d\x89\x57\x3b\x37\xb7\xd8\xee\x9a\x7c\xd9\x16\xc0\xde\xa3\xe9\x78\x52\x41\xb1\xf1\x82\xc4\xae\xb5\xf6\xe0\xa3\x57\x14\xe2\xf4\xa6\x06\x36\xdd\x54\xe9\x58\x66\x97\xd8\x1e\x2f\xaf\x59\xfc\xe3\xc2\xc4\x17\xca\x73\xe2\x41\x4b\x47\x51\x68\x63\x4c\xe2\x48\x7c\x32\x11\xab\xcd\x1e\x68\x27\x86\xc4\xef\xb3\x29\x1a\xc1\x52\x6d\xf5\xa1\x27\x23\xda\x04\xe2\xbd\x75\x09\x98\x3d\xd0\x8e\x12\xbb\x12\x15\xa6\x1b\x23\x58\xc2\x24\x84\xa5\x02\x1f\xab\x15\x60\x39\xea\x25\x66\x34\xb2\x4c\x55\x68\x76\x90\x54\x46\x91\x93\x6d\xb8\xc5\xb6\x09\x8b\x68\x25\xca\xd1\x3b\xc1\xfd\xff\x9c\x7e\x8e\x8f\x6b\xfb\xc1\xd0\xc4\x56\xd7\x5d\x50\x28\x97\x82\x90\x5f\x34\x47\xb1\xc9\x0b\x5a\x34\xab\xa9\x20\x2e\x60\xd5\x2f\xf0\xb1\x72\x36\xeb\x65\x70\x0d\x46\x05\xec\xf2\x58\x61\x1f\x3e\x09\x3c\xf4\x17\x25\x12\xac\x5f\xef\xa9\xcc\xf1\x88\x7a\x1e\xe9\xb3\x61\x9a\x24\xb6\xca\x62\xf7\x0a\xcb\x0f\xcf\x4e\x6a\xc4\x4a\xe2\xde\x90\x66\x67\x6b\xf6\xc0\xe6\xfb\x94\x7f\xbf\xaf\xd6\x86\x38\x7a\xb9\x8c\x7a\xe2\x5d\x8a\xfa\xe0\x36\xe5\xab\xbe\x6d\x7d\x6b\x9b\x87\x45\x2a\x8b\x2c\x0a\x9d\xe1\x38\x52\x96\x9b\xaa\xd4\x7b\x58\x61\x99\x2f\xa8\x02\x44\x9c\x76\xbb\x6b\x4e\xf2\x1a\x3b\xc4\x2d\xcd\x61\xba\xe5\x76\x70\xea\xf0\x13\x9c\x92\x8a\x23\x35\xc3\xd6\x9a\x3c\x3f\xc2\xd6\x9d\xeb\x8e\xa0\xf5\x2b\x4f\x76\x14\xd6\x0c\x25\xb4\xea\x0f\x9b\x4a\x68\xaa\x97\xf7\x8a\xcd\x28\x6f\x5f\x14\x25\xd5\x4f\x6a\x16\x4e\x92\x5d\x17\x03\x9b\x62\xe7\xaa\x66\x95\xa3\x5b\x56\x63\x45\xe0\x85\x2a\x22\xcc\xac\x73\x59\x90\x3e\x65\xad\x81\xd9\xc4\x28\x85\x94\x5f\xd1\x52\xde\x3e\x3f\xd2\xae\xd9\x3f\x6a\x6a\x33\x9b\x7e\x61\xa9\x87\x48\xab\x37\x6e\xef\x9e\x1a\xb5\xf7\xd4\x3e\x66\xf2\xbc\xcc\x0c\xc5\x3c\xad\xba\xdd\xf5\xac\x2b\x5e\x4b\x10\xb3\x14\x1b\xac\xd9\xf8\x6d\x56\x3f\xd7\xdc\x11\x2c\x13\xc7\x1b\x18\x11\xfb\xdb\xb1\x29\x6c\x36\x53\x3d\x46\x94\x35\x7e\x40\xd3\x14\x9d\x23\x12\xd5\xdd\xbf\x79\x19\xd3\x18\x93\xfe\x70\xe0\xe1\x1c\xda\xbd\x38\x4c\x93\x28\x27\xa2\x5d\x95\xfb\x3b\xf8\xe3\x3e\x07\x85\xac\x89\x5b\x2d\xd9\x9c\x21\xe7\xc0\x41\xfc\x1c\xb7\xe6\x7a\x29\x5f\x3b\xe4\xfc\xe2\xe8\x25\xba\x3a\x71\xf5\xe5\xd8\x42\x2e\x6b\xf9\xe2\x6d\x9d\x2a\xb2\xc5\x2b\xbb\x87\xf7\xc7\x2e\x7b\x81\x2f\x89\x30\xe1\x0e\x49\xe7\x93\x68\x23\x22\x30\x3e\x3c\x6e\x1d\xdc\xb3\x79\x58\x0b\x1e\x40\x94\x03\xe5\xfc\xed\xe4\xf6\x8e\x65\x7f\x1d\x01\x17\xff\xec\xba\x9a\x25\x8f\x50\xf2\x80\x67\x0d\x4b\x2d\xf4\x0c\x4e\x4c\x34\x62\xab\xc5\x8e\xdd\xa7\x64\x0b\x73\x6d\x38\xdf\x92\x73\xa9\xe8\x52\x66\x7a\xa5\xb0\xd4\x9c\xac\xef\x58\xcb\xfa\xaa\x36\x65\x37\x8b\xc2\x65\x66\x60\x39\x98\xad\xdb\xa9\x2e\x2a\xea\x5e\x91\xc6\x96\x06\xd9\xb4\x22\xdb\xd5\x90\xd7\xb7\x14\xfd\xe0\xb5\xea\xda\x36\x8f\x37\x74\xfd\xa3\x7e\xc4\x35\x01\x04\xee\x6f\xe8\xc4\xe4\x0d\xe7\x37\xd9\xcf\x6c\x3e\x00\xa3\xfc\xa0\x10\xee\xcf\xaa\x36\xed\xd9\x86\x5a\xe0\xac\x2b\x03\xcf\xcd\x71\x14\xf0\xa1\xea\x88\x7e\xd8\x24\xcd\x33\x34\x59\x61\x5f\x51\xe5\x9d\x5a\x5d\x77\x32\x25\x9b\x3d\xd0\xae\x16\xb2\x1d\x7e\x7b\xda\xdd\xf1\x9d\x86\xa7\xd6\xbd\x86\x28\x6c\xd6\xf1\xc8\x1f\x20\x84\x16\xf8\x52\x4d\x56\xfd\x29\x55\x07\x2d\x93\xc2\x44\xc9\x8e\x1a\xa2\xc8\xe5\x8a\xa7\x54\x58\x7c\xaa\x86\x34\x52\x9c\xb9\x2b\x3a\xae\x99\x2c\x98\x92\xca\x1e\x59\x36\xd2\x73\xc5\xcc\x3d\xae\x60\x34\xc7\x9b\xac\xf5\xf2\x32\x49\x50\xfb\x73\x78\x14\x87\x5a\xbe\xae\xc8\x0e\xc4\x7c\xe7\x68\x1a\x69\x29\x4c\xc4\xf9\xb8\xc1\xc4\x24\x8f\x72\xd1\x07\x61\xde\x0f\x41\x18\x84\x03\xd4\x94\x6b\xf4\xa2\x7c\x44\x26\xab\x58\x50\x45\xd7\x45\x8b\xbc\xb8\x78\x33\x8f\xd3\xd1\x08\x57\xee\xbe\xde\xd9\x7f\x5d\x6a\xea\xc2\xdb\x57\xe0\xf3\xa6\xe4\xca\xae\x2b\xad\x7b\xb8\x69\x88\x38\xb3\x9f\x47\xd4\x79\xcc\x90\xdc\xb9\xe4\xd4\xd5\xba\x2e\x2a\x4f\xe2\xdf\x76\x4e\x87\xbd\x74\x68\xab\x68\xc3\x08\xdc\x13\xb3\xe8\xed\xc0\x63\x2c\xdf\x56\x34\xab\x32\x89\xaa\xc4\x23\x2a\x40\x75\xc3\xe6\x84\xcd\x1d\xa8\x82\x99\x75\x45\xf7\x60\xe9\x77\x6c\x16\xdb\xd7\x3d\xae\xf2\x94\xeb\x46\x65\x76\x25\x4c\xa7\xbd\xe1\xc6\x9d\xb1\xe2\x8e\xbc\xa1\xda\x16\xbc\xc7\x81\xe3\xb3\x63\xc2\xe7\xe5\xc0\x0b\xed\xb8\x4c\x96\xa6\xbc\xa2\xda\x15\xfa\x30\x0a\xfd\xf0\xab\x40\x54\xf7\x7a\x93\xa0\x78\x51\x66\x4b\xec\x12\xe3\x54\x80\xe7\x05\x3c\x3e\x89\x80\xd9\x3b\xdb\x1e\x3d\x37\x9c\xf2\xc5\xe7\x07\x81\x47\x65\x9f\xd1\xe9\xc4\x55\xdd\x8b\x0f\x97\x1f\xa7\xe1\x82\x6c\x9b\xa5\xb3\xf0\x46\x9e\x50\xa9\xf7\xd3\xdc\xe3\xc1\x52\x0e\xf1\x04\x6c\x3a\xd3\xeb\x35\xc9\x00\x7a\x54\xd8\x35\xd8\xd7\x10\x45\x21\xa8\x79\xa2\x99\x7b\x0d\x15\x49\x11\x46\xf7\xb2\x98\xd7\x03\xd5\x83\x7c\xa0\x70\x5b\x93\x8a\x1c\x54\xbc\x1e\xad\x65\xd1\xd2\x40\x68\x1f\xc2\x96\x6a\x39\x39\xd2\x73\x4a\x0f\x3b\x2f\xbb\x69\xd6\x8b\x92\x6a\x0b\xd8\x41\xe3\x91\x25\xf9\x02\x1f\xb4\x6c\xea\xbd\xed\x38\xdd\x24\xba\x2d\x4f\x74\x54\x1b\x06\x4a\xc9\x72\xdc\x20\x03\x41\xae\x53\x6b\x5a\x08\x06\xe5\x2c\x65\x0f\xc5\xa1\x98\x09\x8b\x29\x65\x45\x80\xc2\x07\x3a\x20\x80\x6a\x33\xd1\x6f\x7d\x6b\x69\xe6\xd9\x67\xdb\x23\xa4\x32\x68\x20\xb0\x49\x14\x9f\x28\x18\x55\xd7\xe6\x05\x8d\x65\xcc\x8b\xe3\x4a\x70\x01\x73\x44\x8a\x1e\x1e\x31\xb1\x6d\x5d\x62\x53\x2a\x04\xc4\xe9\x88\x57\x22\x09\x26\x5b\xce\xb7\xf9\xac\x4e\x26\xe3\x74\xc5\x2c\x47\x4c\x12\xc6\x46\xc9\x4e\x48\x7c\xa2\x1a\x48\x23\x9b\x85\x76\x84\xae\x83\x93\x32\x3d\x4c\x17\xc1\xc7\xc1\xc3\x34\xaf\xa4\xf7\x44\x9f\x9d\x3d\x50\x93\xa6\x14\xad\xba\xad\x2f\xe5\xcb\xed\x97\xd2\x81\x49\x9c\x2f\x78\xe3\x16\xdb\xb0\xc0\x87\x69\x5e\x18\xae\xde\x3a\x92\x97\x0b\x25\x1f\xe8\xc5\xf5\x4a\x63\x05\xd8\x14\x45\x9a\x25\x56\x64\x76\xc4\x15\xc6\xef\xd7\x17\xb5\x1b\xeb\x7d\xe7\x62\x3f\xca\xd2\xc2\xb2\x0d\x98\xd8\x26\x55\x3f\x2c\xa6\x42\xfe\x49\x0e\x4d\x94\xf4\x33\xf2\x67\x50\xca\xd2\x08\x1a\x1f\xa6\x41\xff\x8d\xd9\x76\xcf\xf6\xa3\x24\x2a\x6c\xb5\xc4\xba\x6a\xd3\x6f\xa8\x8e\xc9\x6f\x34\x72\x53\x47\x62\x36\xd0\x28\x68\xa0\x55\x0f\x5c\x97\x2e\x2b\xa2\x30\xb6\x39\x5a\xe5\x2a\x6d\x16\x27\x71\x94\x54\x04\x03\x31\x59\x80\x9d\x6f\x77\xe3\xd2\xd6\xa1\x80\xd5\x08\x13\x28\xa0\x4a\x01\xed\x92\x09\xd7\x58\x4d\x8e\x13\xa9\x40\xe9\x51\x4f\xb2\x99\xe7\xe6\xda\x79\x61\x9d\xbb\x9d\x84\xf8\xd5\x6f\xf1\x71\xe0\xf5\x79\x0a\x1b\x0e\x12\x07\xfc\xa3\xb8\x99\x65\xae\x10\xcd\x8a\xe6\xd5\xd6\x40\x95\x56\x04\x93\xe4\x7d\x9b\x65\xb2\x3b\xff\x7f\x91\x0f\x9a\xaf\xc6\x5f\x99\x15\x36\x67\xd1\x2a\x61\x51\x7a\x7c\xc9\xc5\x40\xbc\x98\x6c\x0e\x41\x19\xf4\x30\xaf\xab\xde\xfd\x7b\xe8\xb7\x39\x4d\x4f\xcf\x9d\xff\x60\xac\xd8\x33\x9f\x36\x2d\xb1\xa6\x18\xa6\xf9\x68\x60\x33\x38\x79\xe0\x4a\x37\x02\xdf\x39\x39\xaf\x16\xb6\x53\x4d\x71\x64\x61\xb3\x21\x13\xa0\xc5\xb6\x5e\xe1\x41\x8e\x69\xd1\xad\x38\xea\x41\x01\x43\x20\x9c\x7f\x36\xf6\x99\xcf\x9f\xa9\x4e\x4c\x66\xa2\x9c\x08\x9d\xd2\xe7\xbc\x4a\x8f\x84\x59\x68\x8a\xdf\xb1\x93\xa8\x9a\x88\x02\x18\x24\x87\x59\xcc\xd8\x7d\xb1\x50\xa8\xee\x47\xbc\x42\xe8\xbd\x0a\xa5\xc5\x23\x29\x11\x20\x49\x04\x4b\xcf\x0d\xa5\x83\xf7\x5d\x25\xbb\xa8\xf6\x22\xee\x05\x23\xfb\x40\xb5\x86\x8f\xdd\xdc\x5e\x35\x31\x09\xf6\x61\x49\x40\xc7\x6d\x43\xb7\xdf\x36\x5c\xb4\x6f\x43\xe2\xc9\x46\xe1\xb4\x97\x43\xd8\xd6\x51\x6e\x76\x1f\x68\xe7\xb2\xd3\x63\x35\x8a\xcf\xbb\x19\x18\x0e\x0c\xd9\xc8\x51\x14\xb6\x09\xf9\x24\xb4\x92\x11\x22\x88\x88\xe4\xd6\xa9\x77\xe0\x05\x84\x6f\xf4\xf2\x9c\xf0\xb4\x17\xa1\x9e\x28\xf7\xed\x9b\x6f\x8f\xca\x2c\x2f\x23\x26\xaf\x48\xc9\x53\x95\x3f\xab\xbc\xc1\x05\xc5\x69\x6e\xc3\xb2\x48\xb3\xc8\x00\xa6\xc0\xb1\x8a\x02\x5e\xf8\x0a\xe9\xd0\x66\x4b\x55\x20\x59\x4d\x34\xdc\xe0\x9b\xea\xa5\xb7\x3a\xaa\xe0\xbd\x6d\xdd\xaf\x8e\xfd\x2c\x1a\x8d\x2c\xea\x18\xd5\xea\x88\x38\xe3\x0f\x68\x75\xe4\x63\x55\x6f\x32\x65\x31\x48\xb3\xa8\x58\x9b\xf6\x44\x03\xa6\xa9\x39\x39\x26\x57\xba\x44\x77\x4c\x5c\x7c\x77\xb9\x3d\x9d\x42\x30\xc1\x8e\xfb\x58\xf7\x13\xca\xc7\x11\xbd\xdd\x70\x2f\x78\x60\xb3\x64\x42\x3b\xe5\xe7\xf4\xcd\x7c\x3c\xb1\x2c\x90\x5c\x76\x66\xc2\xa8\x4e\x41\x3a\xa5\x28\x48\xa7\x02\x2f\xcf\x1f\x72\x16\x2b\x4a\x71\x3e\xa8\x39\x32\xf6\xd2\xa8\x71\x5a\xf6\xf2\x91\x35\x44\xdb\xf2\x18\x3a\x90\x5f\x85\x6e\xe5\x57\x5a\xfb\xca\xc8\x66\x85\xca\x1f\xb8\x5d\xcb\x27\x81\x3c\x0d\xf3\xa5\xe9\xed\x5f\xe2\x59\xf3\x19\xc5\x7b\x3f\xa3\x95\x69\xb6\x13\x7d\x12\xb0\xd6\x33\x4d\x22\x6a\xa6\xf7\x52\xe9\x51\x04\x08\xca\xaf\xd1\x8d\xf0\x71\x43\x21\x7e\x56\xca\x4b\x53\x9e\x2c\xc3\xc5\x77\x94\xf9\xa1\x49\x2a\xa6\xfb\xfe\xd6\x4c\x58\x45\x16\x58\x5d\x78\x66\x04\x4a\x95\xfe\x1e\xe5\x61\x4a\xdd\x6b\xbf\x7b\xbf\x4a\xc0\xf1\xe2\xd8\x47\x26\xa7\xc6\xde\x8a\x08\xc9\x0f\xeb\x98\xa9\x70\x7e\xdb\x7a\x6b\x71\xcf\xe6\x79\x6d\x65\x71\xc3\x87\x89\xc5\x20\xe5\x10\x17\x0f\xec\xbb\xea\x55\x7f\xb7\xc9\x37\x79\xb0\x36\xb2\x19\x15\x82\xb1\x6f\xba\x89\xa5\x12\x82\x27\x94\xdd\x77\x16\x96\x3c\x4a\xb0\x17\x20\xc9\xe1\xe3\x40\x37\x50\x97\xc8\xc6\xb9\xa5\xb8\x34\x90\x24\xe6\x63\x25\x9d\x3c\xca\xd2\x24\x2d\x93\x50\xd8\x69\x02\x39\xf3\x5a\x0a\xdf\x69\x78\x6d\xf3\x2c\x4f\x57\xa0\xe2\x8e\x44\xfe\x82\x4a\xf0\xb9\x30\x27\xc4\x78\xbf\x3b\x97\x49\x3f\xcd\x8a\xb2\x8a\xef\xe3\xb5\x29\x9f\xc4\xa3\xe1\x85\x57\x71\x97\xe6\xbd\x28\x92\x37\xec\x77\xf6\x95\x81\x29\x73\x0f\xa3\x91\xaa\x9b\x22\x20\x2b\x60\x53\x91\x26\x8f\x54\x3f\xe4\x50\xf9\xae\x9e\x3c\xb3\xee\xb3\xc4\x19\xf2\xe7\xc2\xd6\xf9\x1d\x6d\x7b\x38\x56\x04\xd2\x0f\x31\x94\x30\x34\x67\x94\xc2\xec\xbd\xcf\xaa\x22\xaf\x8d\x6d\x58\x70\x28\x89\x48\xaa\x26\x35\x7e\x37\x50\x9b\x88\xc6\xc3\x45\x49\xdf\x0c\xd3\x32\xd7\x0a\xa9\x1b\xaa\xa8\xb9\x11\x7c\x4e\xc9\x92\xe7\xd1\x52\x82\x8e\xca\x94\x87\x57\x1f\x57\x8d\xfc\xd7\x31\x8f\xb0\xf4\x9d\x9f\x08\xb6\x17\x5e\xd8\xdf\x1e\xa4\x23\xcb\x70\x04\xdc\x20\xcb\x5c\x4b\xe3\xaa\xe5\x1c\x0f\x4e\xa9\x64\x25\x1f\xa4\xab\xbb\x95\x2f\xfb\x65\x6a\xcb\xa1\x93\x0c\x00\x32\xb6\x9e\xe3\x28\x61\xba\x72\xdf\x3e\xc1\xba\x5c\xa6\x79\x87\x0f\xfc\xa7\x9a\x5f\x20\x54\x13\x10\x73\x9f\x54\xb9\x02\x84\xff\x51\xc1\x67\x1b\x50\xb1\xc9\x7b\x5a\x8b\x2c\x85\x36\x2b\xd2\xbc\xa5\x15\x8f\x75\xbd\xaf\x09\x93\xd1\xb5\x49\xb4\x04\x42\x01\x22\x5d\x48\x6a\xf2\x71\x13\x33\xb3\x9b\x26\xa5\x46\x41\xbc\x17\xf8\x81\xff\x9e\x8b\x33\x46\x04\x6e\xa9\x39\xd0\xdc\x52\x23\x94\x65\x50\xd1\xa0\xd8\xde\xf1\xbc\x92\x92\x6e\xc2\x44\x09\xbd\x56\xf6\xb5\x0b\x34\x72\x89\xee\x08\x11\xe4\xe9\x26\xde\xe2\xa8\xcc\x07\x75\xab\xaf\x8f\xb5\xd5\xd7\xc7\x13\x01\xe0\x97\xdb\x43\x9b\xe7\x59\xfe\x1c\x0f\x5a\x67\x2c\x33\x37\xb7\x9f\xdb\x29\x9c\x00\x89\x88\x8d\xca\x27\x8b\xcc\xb0\xfa\xca\x82\xab\x7a\x54\xaf\x5a\xaa\x21\x5b\xf3\xad\xb9\x39\x12\x2c\xce\x7a\x5b\x64\xda\x4e\x29\x99\xb6\x53\xea\xad\xda\x57\x46\x26\xc9\xa3\x34\xd9\xe1\x67\xc2\x0f\x03\x25\x69\x78\x47\xbb\x1d\x01\x8d\x8e\xb4\x97\xc5\x7a\x9d\xfa\xb6\xdb\xbe\x66\x3a\xbb\xdd\xea\xf0\xcd\xd1\xb4\x0f\x64\x4e\xd0\x20\xc5\xab\x7f\x17\x77\x8c\xf1\xb7\x8d\xc8\xe9\x98\x57\xf7\x5c\x53\x28\x4c\xb3\xac\xa4\xf4\x78\x4a\xad\xfb\x97\x14\xac\xfa\xbe\xea\x20\x9c\x6b\x90\x57\x7b\xbe\xbd\x94\x99\x10\x61\x3b\xea\x19\xd7\x6b\x44\xb5\xea\xd2\x18\x89\xe3\x41\x8a\xe5\xab\xaf\x72\x9f\x12\x35\xb1\x2b\x8a\x77\x7c\x65\x22\x1f\x3c\xf0\x42\xbb\x9b\xa6\x79\x41\xf1\xa1\x94\x11\x55\x18\x70\xa9\xd6\xac\x30\xa6\x8b\x2c\x06\x8d\xa6\xb3\x08\xab\xf8\x64\xe2\x06\x48\x48\xa6\xca\x81\xa7\x5a\xdf\x98\x75\xd3\x56\x39\x29\xb0\x55\xa1\xf0\xd0\x27\x79\x1a\xed\x51\x66\x96\x86\x86\x84\xc8\xe7\xe6\xbc\xa6\xa3\x6f\xe4\xbd\xeb\x6e\xbc\x9a\xa8\x43\x8d\xb6\x41\x71\x4e\x4c\x53\x1e\x46\x7c\x32\x43\x9b\x45\xa1\x49\xc8\xfb\x61\xf3\x4d\xc6\x8c\x63\xcf\xe2\x8a\x11\x4e\x1e\x5f\x6f\xd2\xbf\x1b\xda\x5e\x64\xb4\x64\x05\xc6\x85\xe8\x57\xe8\x66\x78\x12\x99\x19\xcf\x51\x39\xa5\x6b\x06\x57\x54\x1b\xf6\x06\xe3\xe4\x04\xfa\x44\x37\x8b\xb6\xcd\x03\xaf\x6b\x91\x15\xfd\x32\x56\x06\x4c\xac\x4a\x21\xc5\x5b\x87\xf6\x0f\x6d\x02\xa1\x50\x04\xc2\x3b\x61\x3a\x09\x2c\xcf\x5f\x63\xdf\xc1\xae\x76\x4f\x29\x0c\x3d\xd3\x69\x88\x47\xa8\x8e\x64\xd5\xbe\x0a\x64\x3c\x96\x74\x3e\xf6\x9d\xb8\xcc\x0c\x5b\xaa\x3e\x80\xee\x06\x1f\x4f\x14\xee\x0f\xbc\xd0\xce\xd3\xa1\x1d\xa4\xab\x2d\x5f\x47\xbc\x47\xc3\x9b\x8f\x9b\xa4\x68\x69\xdc\x4e\xd1\x2a\x24\x68\x74\x65\x6f\x70\x58\x49\x6e\xdc\xaa\xbd\x07\x9b\x75\xb1\xfa\x49\xff\x59\xc9\xcf\x9e\x9e\x68\x72\x52\xa4\x9e\x17\x66\x59\xf0\x3f\xf8\xca\x73\x4a\xd8\xf2\x5c\x93\xd2\xf7\x30\x0a\xb9\x2b\x8f\x9e\xfd\x5d\xd5\xbf\xbf\xdb\x30\xd4\x29\xed\x0a\x07\x26\xd7\x9e\xc2\x75\x3f\x31\x4f\x12\x2c\xca\x61\x37\x16\xd5\x3f\x6e\xdc\x31\x42\x48\xda\x78\x4d\xba\x73\x99\xaf\x92\x48\x65\xa5\xa5\x6c\x9f\xfc\x1e\x3e\x32\x59\xf1\xb8\x57\xfb\x62\x1d\x48\x26\x4f\x80\x6a\x8d\x28\x67\x1b\x25\xe7\x0a\xac\xf8\xad\xcd\xcb\x1a\x6e\x4d\x88\x5d\xa6\xc4\x61\xb2\xfb\x10\x72\x61\x13\x1e\x7b\x08\x41\x9e\x5a\x57\xe1\x2a\xa8\xdd\xfc\x13\xeb\x4a\x05\x6c\xb2\x09\x5d\x8d\x9d\xb2\x5b\x66\x5d\x03\x6f\x26\xd1\x7a\xa8\x2e\xc2\x71\xe2\xbd\x62\xd1\x55\xd5\x92\xea\xd9\xc2\x44\x31\x2a\xc9\x0b\x1e\xd7\xb5\xe8\x79\xa3\x2d\x07\xde\x7e\x3b\x50\xc9\xc4\x29\x95\x72\x9f\x42\x4b\x58\x21\xc1\x5c\x75\x34\xb1\x45\x66\x0a\x3b\x4d\x9f\x44\xaa\x7f\x0d\xfc\x7c\x54\x3c\x80\x18\xe6\x7f\xc0\xd7\xf0\x3f\x78\xec\x6d\x16\xad\x18\x14\xf8\x16\xf7\x38\x23\x26\x25\xf6\x78\x51\x8b\x64\x65\x26\x4a\xf2\x1d\x9a\xbd\x55\xed\x4b\xe8\x18\xdf\x0c\x6a\x1c\x29\xcf\xf2\x04\xd6\x59\x0c\x75\xb4\xd0\x4d\x43\x31\xb4\x9d\x44\xe1\x32\x69\xd0\x41\x03\x5c\x2a\xc8\x34\xa6\x24\xb8\xaf\xbe\x0f\xe1\xf1\x64\x35\x69\x7e\x7e\xa1\xdd\x37\x65\x62\x5a\x55\x26\x8d\x05\xe1\xa4\xae\x24\x9e\x0c\x3c\x8a\x3e\x2f\x6c\x16\x93\x46\x95\x73\xb7\x7d\x14\x4b\xb2\xe0\x13\x7c\xfe\xf8\x33\x5a\x2e\xd0\x8a\xd9\x50\xdc\xb0\x4f\xd4\x0b\xb7\x49\x11\x15\x91\x48\x1e\xa3\x02\x80\x98\x98\x8f\x03\x1f\x6e\xdb\xa5\xb5\x51\x11\x99\x44\x0b\x3c\xdc\xc0\x52\x21\x66\x91\x8a\x53\x1e\x77\x4d\x62\x79\xea\x3a\x5a\x97\x37\xbd\xb9\xa8\xd2\xee\xbc\x30\x49\x68\x67\x3c\xd9\xe0\x14\x6b\xb3\xa0\x7a\xca\x60\x6a\x3e\xa1\x81\xe6\x22\xbb\xea\x4a\x30\x23\xff\xb4\x41\x1c\x70\xa1\x1d\xc6\x65\x37\x9f\xd6\x80\xf2\xf3\x81\x5a\x82\x6e\xd1\xb7\xc9\x04\xd1\x2a\x95\x4d\xc2\xc8\xdd\x34\xcb\x94\x6d\x93\x7b\x5a\xae\x76\x72\x5c\xa9\x6c\x80\xae\xbb\xa3\x7a\xec\x8c\xdb\xc7\x20\xc5\xd8\xbb\x4d\xe3\x10\x94\xbb\xef\x8f\x7d\x2c\x4d\xae\xaf\x9b\xa7\x55\x72\xf7\xa9\x1b\xf9\xdd\x2c\x35\xbd\xbc\x60\xc9\x42\x17\xdb\x57\x5f\xca\x27\x8d\xb8\x7c\x13\xc7\xe9\xaa\x14\x68\x11\xf4\x1c\xc3\x83\xe3\x13\xb7\x45\xe5\x36\x29\x76\x56\xdf\x0d\x9a\xe8\x17\xd7\x6b\xad\x7f\x0d\x25\x74\x98\xfc\xf7\x7f\x01\xdb\x27\x95\x4d\x7f\xf7\xef\x77\x3c\xfd\xf4\x97\xda\x1d\x85\xf6\xda\xb1\xfe\x84\xea\xdd\x84\x66\x68\x1f\xa1\x35\x53\x38\xfd\xad\xbd\xb3\xde\x59\xe2\x90\x73\x05\x3d\x49\xeb\x01\x73\x04\x68\x08\x3b\x19\x10\xed\x53\x43\xaf\x43\x18\x31\x3e\xdc\xd9\xd9\xd9\xda\x4d\x3c\xb4\xd0\x1e\x98\x9e\x46\xed\xf1\x18\xc2\xb8\x63\x7c\x03\xc2\xcf\xfb\x81\x27\x87\x15\x26\x5e\xa6\x36\xbd\x70\xdf\x7c\x4b\x60\x7a\xdd\x37\x3c\xdf\xa5\x4b\x44\x0d\xfb\x91\x8e\x22\xa6\x72\x07\x50\x18\x75\x9f\xdb\xc2\x89\x2d\xd1\xf6\xa1\x1f\x47\x9e\x72\x18\x1d\x08\x3e\x69\x92\x4c\x35\x34\xbe\x76\xd2\x67\x84\x19\x5a\x5d\x15\xa6\xc9\xe3\xb4\x0b\xe1\x3d\x9e\xa5\x45\x5b\xe1\x6b\x45\xda\xfe\x24\x0d\x42\xfc\x03\x4c\x03\x18\xbe\x30\x51\x02\xa5\xcd\x38\x36\xa1\xec\x95\xd2\xf2\xf3\x44\xb4\x4b\x3e\x8f\x23\x0b\xc9\x7c\xaa\x66\xca\x48\xbf\x8a\x1d\x70\x53\xed\x27\x97\x14\x8d\x71\x18\xc5\xa8\xc0\x6c\xc2\x68\x79\xf3\xbc\x42\xb6\xc2\xaa\x88\x36\x04\xc4\x9e\x6c\xd9\xca\x27\x6a\x95\x22\x6e\x46\x18\xaf\x4d\xd3\x86\x89\x64\xfc\x3d\x6c\xd0\x7c\xa2\x98\xd9\x17\xe9\x09\x08\xed\xd0\x57\x4c\x59\xd3\xdd\xf6\x66\x54\x93\xe1\x1a\x7d\x50\xb0\xab\xf4\x1c\x44\xac\xdd\x33\x26\x90\xcb\x89\xe7\x8f\xa7\xf0\x77\xe3\x34\x5c\xee\x96\x04\x7f\x98\xf2\xce\x58\xe7\xb4\x97\xd6\xb9\x89\xf9\x2b\x21\x79\xaf\x44\xc8\x8a\x77\xd5\xea\xb4\xbe\xf9\x75\xd7\x5c\xa4\x47\x8b\xc2\x11\x4b\xf4\xc8\x72\xeb\x91\x1a\xab\xd5\xcd\x64\xc9\x2e\x5f\x6b\xb8\x39\xf6\x86\xbf\x9b\xe8\x21\x20\x7d\xd8\x50\x1c\x5d\x78\x26\x8a\xc1\x91\x7a\x14\x47\xf0\x43\x7c\x12\xa8\x89\x7e\x0f\x23\x9d\xbf\xab\x41\x6e\x67\xb6\xdd\xb5\x00\x04\x61\x10\xde\xc4\x57\xf1\x89\x7e\x91\x59\xba\x12\xf5\x6c\xbe\x93\x2e\x0e\xc1\xce\x27\xb8\x5b\x3e\xd1\xf3\x1e\x60\x39\xa4\xdb\x6f\x6b\x95\xca\x63\x9a\x9e\xf1\x43\x55\xd5\x3b\xae\x23\x93\x2c\x7d\x09\x92\x53\xd5\x54\x11\x80\x5b\xf5\x84\xf8\xb8\x86\xe1\xb5\xc9\x12\x77\x39\xb0\xee\x9e\xd1\x8b\xf0\x99\x26\xc0\x6d\x94\xf4\xa2\xcc\x86\x5a\x44\xe6\x63\x25\x22\xf3\xb1\x16\xf2\x8b\x56\xd2\x2c\x44\x77\x42\x30\xec\x0a\xcf\xae\xc0\x5c\x79\x34\x1c\xc5\x16\x44\x6e\xa4\xe3\x77\xf1\x78\x9c\x02\x85\x13\x8b\xb9\xa2\x54\x43\xd8\x85\x18\x13\xf0\x46\x23\x3c\xd8\xae\x0e\xd2\x92\xf7\x6e\xe7\x97\xe8\x39\x12\x17\xd5\x45\xa4\xd9\x92\x49\x50\xdc\x71\x1d\x25\x85\xba\xf6\x8f\x38\xb7\x76\x18\x25\x4b\xf1\xda\x0e\xba\x60\x11\xae\xa9\x55\x97\xe9\x7d\xa2\x03\xf7\x8e\x6a\x48\x33\xb8\x45\xd4\x99\xaa\xf1\x29\xa9\x78\x53\x4c\x4f\x1e\x44\x53\xaa\x77\x39\xd5\xf1\x5a\xc8\xbf\x8f\x70\x13\xb9\xcd\xf4\x04\x00\x61\xdf\x7c\xbb\x1c\x51\x70\x85\x14\x7e\x93\x16\x08\xa0\x48\xa0\xa7\xe5\x6a\xb7\x8b\x7b\xf8\x71\x6c\xd2\x54\xa2\x95\xee\x17\xbf\xd0\xf9\x6c\xdd\xbd\xb7\x0a\x42\x5e\x7c\xf1\xf3\xf4\x5e\xa4\xfd\x47\x77\x83\x64\xf6\x1a\x76\x3b\xe4\x03\xe7\x54\x6e\x00\x36\x29\x3a\x79\xdb\x3a\xad\x67\x9f\xe5\x79\x3b\x40\xe2\x81\xfb\x47\x0d\x1e\x25\xaf\xff\x87\xb3\x1d\xac\xf9\x7f\x15\x78\x16\xc0\x4d\x04\xd2\x4e\x4a\x60\xaf\xb0\x14\x6f\xd3\x85\xcb\x85\x54\x37\x87\x11\x72\x25\x68\x1d\x12\xf4\x37\x7b\xfd\xe0\x37\x0e\x43\x21\xc1\xa9\x54\x7c\xf3\xeb\x8e\x77\xeb\x69\xbb\x27\xb0\x1c\x20\x1e\x3d\x1a\xa8\xe4\xff\xfb\x78\xf6\x7c\x21\xae\x59\x94\x0f\x32\x6f\x4c\xf4\x3c\xef\x98\x70\xb9\xe6\x63\x45\xd2\x4a\x52\x16\x82\x5c\x5c\x70\x06\xf3\xd5\xad\x8a\xb8\xa7\x02\x9d\x0e\x84\x05\x70\x70\x8f\x2f\xb4\x29\xd8\x91\x57\xa6\x50\x3e\x83\xd3\x8a\x7d\xcf\x51\x38\x9f\xd0\x13\x65\xac\xb4\xf2\xd3\xb8\xa9\x1a\x09\x36\x8e\x96\xa2\x6e\x0c\xc6\x83\x22\x62\x49\x25\x1b\xd0\x14\x84\x33\x78\x11\xd2\x9e\x7d\x52\xd9\x90\x44\x3d\x92\xd7\x9f\x97\x9e\xd0\x9f\x6b\x13\xae\x3f\x0f\x9e\xae\x0f\xb0\x5f\x6e\x3f\xfb\xec\x4e\x8f\x89\xbd\x49\x8d\x1c\x11\x35\xf4\x5d\xec\x6f\x63\x5d\x46\x11\xf8\xfd\xb1\x92\x0b\xf8\x1e\x0d\x22\xfe\xf4\xd8\x23\x35\x3f\x6d\x00\x2d\x7c\xab\x6d\x0d\xda\xf6\x82\xb2\x44\x13\x41\x58\x7f\x4a\x03\xad\x0a\x56\x5b\x6a\xec\x30\xc8\x9a\x4f\x02\x25\x5f\x50\xc6\x31\x3d\x30\x71\x9c\xa8\x9e\xad\x88\xfb\x2a\x39\xd3\x73\xda\x1c\xbf\x5e\x84\x2b\x12\xa3\xdc\x24\xc1\x45\x13\x55\xf5\xad\xeb\xdb\xaf\xb4\x33\x3b\xca\x6c\x15\xeb\xa2\x37\xc4\x46\x49\xf8\x76\x71\x4d\xda\x15\xb5\x47\x99\xed\xff\xe7\xed\xe5\xcf\xaa\xf2\xd0\xe3\xd4\xf3\x70\x85\x53\x37\xe4\xb7\xa1\xf2\xeb\x40\x51\xb3\x07\x9c\xb6\xbe\x1a\x4e\xf7\xb0\x5f\x61\xcf\xbd\x8c\xc7\x01\x98\xd2\xa3\x1d\x95\x52\x3d\x0e\xe5\x10\xf6\x97\xe6\xea\x1b\x26\xff\x26\x3d\x6c\x34\x42\x6e\xab\x5d\x61\x57\xa7\x7a\xe9\xc8\xee\xae\xe3\xdd\x22\x4e\xfe\xe2\xba\xef\x18\xb1\xc9\x21\x5f\xbd\xa2\x29\x40\xa1\x1a\x43\x66\x27\xd5\x6d\xd9\x7a\xb0\xd1\xd9\x2c\x29\x87\x5d\x72\x90\xd5\x02\xd8\xf4\x8c\x04\xbb\xa1\x90\xea\xbd\x5e\x54\x50\x6b\x6d\x46\xe9\x21\x9e\xc4\x73\x70\xbe\xff\xd5\xad\xa3\xfa\x0b\x15\x0f\xfe\x87\x40\xa1\xbe\xff\xac\x51\x55\x39\x1c\x98\xea\x5a\x84\x87\x8a\xa7\x7c\x56\x33\x9a\x2f\xd5\x24\xa0\x9a\xc4\x01\x86\xb6\x30\x31\xd7\xb1\xc4\x42\xd8\x2b\x0d\x9d\x38\xaf\x70\xf7\x69\x16\x2d\x01\x68\x87\xfa\x05\x16\xea\x99\x8e\xc7\x8d\x1d\x1d\xfb\xae\xec\xcf\x34\x0a\xeb\xae\xc7\x0d\x85\x61\x49\x25\x90\x96\xb3\x93\xdb\xde\xf1\xe6\x94\xd7\x54\xce\x8e\x76\x12\xc6\xfb\x9f\xa8\xa2\x46\x6c\xd6\xd2\x92\xa9\x47\xd2\x99\xf6\xeb\x0a\xcc\x62\x10\x14\x9d\x76\x41\xb9\xa1\xc8\x13\x6e\xb9\x58\x8c\x61\x74\xc1\xc7\x9d\x67\xea\x5a\x53\x71\x94\x20\xd4\x7f\xde\x19\xae\xfb\xeb\xbd\x58\x0f\x86\x46\xc5\xa3\xb4\x87\xe1\x4d\xdd\xa4\x3d\x0c\x83\x97\x85\x3c\x30\x76\xff\x57\xb5\x23\x1d\xa7\xd0\x4a\x94\x64\xab\xbb\x67\xbd\x58\x1a\xdf\x18\x0b\x1f\x8c\x3d\x4a\xf8\x06\xc6\x82\x44\xae\x53\xde\x6f\xfa\x53\xe5\x4b\xd2\xb7\x71\x6c\xc1\x76\xc0\xb2\x0a\x2e\x4e\x6d\x24\xa0\x2c\xfa\xe9\x58\x67\xa3\xd5\xdd\x52\x60\x26\xf5\x23\x5d\x4c\x6a\xb0\xc4\xdb\xdf\xee\xda\x7e\x9a\xb1\x65\xa7\xb8\xaa\x57\x3f\x85\x6c\xf6\x67\xaa\xd6\x72\x3d\xd8\xea\xe3\x46\xf0\x39\xe7\x2e\x43\xed\x48\x0c\x5f\x91\xcf\x55\x4a\x94\x1b\x1a\x89\xbb\x6d\xa2\x04\x5d\x65\x81\x71\x4c\xa4\xf5\x54\x1c\xfa\x10\xaa\x9c\x51\x26\xf3\x67\x1e\x6a\x37\x3b\x4a\x73\x47\x02\x02\xb8\x9d\x5d\x9d\x81\x6c\x38\xa2\x77\x89\x49\x82\xc8\xc1\x3d\xed\x22\x1a\x5a\x46\x06\x39\x0d\xcf\x45\x19\xca\xef\xd5\x86\x89\xc9\xc2\x29\xd5\x87\xbb\xa9\xad\xfd\xfe\x25\xd6\x0f\x1c\xdf\xd4\xc2\x84\x64\x18\xc3\x80\x48\x1e\x0a\xf4\x70\x65\x58\x3c\xed\x11\x9d\xc4\x57\x10\x3e\x1a\xf7\xc8\x03\x4f\x57\x39\xaf\xf4\x07\x48\xc7\x17\x03\xc5\x8d\xcd\xbd\xe2\xaa\xc9\x94\x3c\x6c\x94\x37\x15\x8a\x66\x18\x85\x59\x9a\xa7\xfd\x62\x47\x75\x35\x78\x5e\x57\x08\x3e\xa5\xe9\xd9\x4e\x42\x74\xc1\xff\x11\x72\x79\x51\x69\xa8\xae\x89\x3f\xd1\x24\x70\x52\x64\x64\xea\x36\x4d\xa1\x92\x34\x2f\x7c\x0b\xfe\xbc\x92\xf1\xb8\x82\x80\x19\x03\x67\x67\x47\xca\x38\x85\x59\xb6\x8f\x29\xba\x09\x3d\x31\x44\x0f\xdb\x88\xe4\x2d\x1e\xf0\x4c\xe0\xa9\xbe\x1c\x9b\xd2\xd5\xb1\xd2\xd5\x7b\xa2\x53\x2f\x71\x57\xef\xcb\x79\x8e\xd4\xc1\x22\xde\x8c\xa9\x9a\xcb\x28\xa8\xfe\x02\x15\x14\xa4\x91\xd5\xa4\x93\x1b\x9a\x2c\xe3\x3c\x4a\x0a\x23\xf4\x5d\x7c\xa2\x40\x17\x61\x3a\x1c\xd9\x98\x3c\x6c\x28\xab\x17\x68\x3b\xed\xba\x22\x23\xd6\x64\x3b\x54\x64\x69\xd9\x8d\x6d\x9e\x0e\x81\xf0\xc7\x5b\xbd\xad\xe5\xb8\x30\x73\x51\xf0\x3f\xe6\xd6\xcb\x7c\x10\x25\x2e\x22\x75\x20\x17\xd7\xdd\xd7\x3e\xa3\x79\x61\xba\x51\x1c\x15\x1c\x16\x31\x16\x16\x13\x49\x80\xb1\x5b\x31\x19\x7b\xf7\xb6\xf3\x51\x6c\x93\x5e\xd4\xab\x91\x01\x60\xd9\x2c\x15\xb7\x06\x36\x47\x31\xb0\x99\x8d\x92\x69\x9f\x3b\x32\xd5\x09\xbd\xc4\xa3\xf4\x02\xc4\x26\xab\xfa\x5e\xfc\xd1\x54\x67\x6b\xa2\xf3\xcb\x55\x42\x36\xe3\x4b\x57\xdc\x25\x17\x20\x42\xf5\x35\x58\x9f\x77\x75\x14\x55\xfb\x3c\x87\x23\x22\xaa\xf6\xb8\x26\x57\xa7\x9f\xa1\xa7\x85\xc4\xe9\x5d\x0d\x8f\xa3\x50\x89\x45\xdd\x30\xc4\x9c\x36\xd8\xe2\x82\x33\x09\xf2\x3b\xdf\x27\x35\x32\x1b\x52\x24\xac\xa7\x20\xd6\x8a\x27\x95\xc2\x2b\xde\xd6\x4b\xe5\x69\x1d\x54\xa0\x21\x83\xef\xba\xa2\x76\xa7\xb3\x7e\x73\xec\xa5\x23\xae\xf5\xcc\x6f\x42\xf3\x0c\x28\xdc\x16\x8a\x9b\x18\x35\x57\xa5\x99\x43\x37\x20\xaa\x84\x3a\x0c\x8d\xc2\xfc\x09\x45\x5f\xbf\xa5\x6b\x44\x1b\x4a\x53\xfc\x04\x06\x87\x17\x31\x16\xa4\xc6\x76\x9a\x9e\xd8\x79\x8e\xf2\xa3\x06\x5e\x0e\x35\x96\xcd\xdb\xb4\x71\x3a\x52\xab\xf3\x53\x65\xb3\x1e\x57\xc5\xac\x1e\x18\x92\xea\x77\x11\x81\x22\x66\xe4\x66\x86\x3c\xbe\xea\x25\xa3\xd5\xf4\xf1\xc4\x04\x9d\x9b\x6b\x5b\x6f\x77\xcc\x9e\xf8\xb8\x6e\x31\xc8\x7f\xc2\x11\x4b\x48\x0c\x85\x29\x95\xb2\x6f\x56\x5f\x2e\x1b\x6a\x43\x2d\x3d\x2f\xa2\x61\x19\x1b\xe6\x86\x21\xe0\xbc\xa2\xda\xd3\x57\xb4\x4b\x57\x35\xf9\x51\x63\x40\xcd\xf5\xa6\xb6\x4e\xb9\xd9\x08\x13\x28\x47\xb9\x05\xc6\x02\xcf\x9c\x4b\x63\x7c\xa2\xd6\x16\xfb\x4a\x41\x98\x32\x36\xa9\xc3\x98\x01\x1d\x9d\x8f\x27\x48\xb4\xfb\xe6\xd9\xdf\x37\x72\xfa\x42\x4e\xce\xaf\x7a\xfd\x7c\xd2\xe0\x53\xb1\xd8\x76\xec\x9f\x26\x8f\x06\x19\x90\x6b\xe4\xf3\x95\xcd\xf8\x34\xf2\x18\xfd\x1d\x4a\x23\x3b\xa1\x70\x8f\x87\xfb\xf9\x8e\x9f\xc3\xd7\xb5\x11\x89\x57\xab\x89\x6d\x94\x97\x99\x6c\xd4\xc8\x7e\x8f\xd1\xa8\xe3\x63\x55\xa5\xe9\x45\xa6\x6b\x3d\x25\x1a\x5b\x0b\xa0\xec\x7c\xac\x1d\x3a\xe3\xd8\x92\x1f\x63\x4b\xeb\x60\xb1\xad\x89\x94\x1b\x9e\xf0\xcd\x85\x3c\xa2\xfd\xd9\x09\xea\x80\x72\xcc\xc7\x13\x6f\xf1\x2b\x62\xe3\x42\x97\xcd\x1a\x39\xf8\x6e\x11\xcc\xf1\x98\xb5\xff\xe2\x1f\xfc\xe3\x29\xaf\x1c\x0a\x30\x30\x16\x9c\xa3\xb4\x59\xe1\x6a\x26\xab\x5d\x2f\xbe\xd8\xee\x67\xf6\xe5\x52\xfc\x3f\x18\xaf\x13\xf8\xec\xfb\xe7\x35\xaf\x53\x25\x23\xf9\x8b\xd3\xca\x0a\xf0\x8c\x22\xfc\x5f\xd5\x24\x5b\xa4\x34\xfc\x0f\xde\xd6\xab\x6b\x92\x5e\x9a\xd8\x1e\xa9\x7e\xba\x12\x5b\xf5\x31\x2c\x2c\x33\x8a\xe8\x35\xbd\xae\x0a\x76\xe7\x82\x9a\x7f\x57\x66\x77\x79\x49\x3e\xb8\xff\xa1\x2c\xf1\x57\x58\xa6\x30\x99\x8e\xd1\x7a\x8e\x65\xe3\x13\x5a\x73\x1d\x03\xd8\x3d\xa7\x1d\xb4\x4c\x3a\x97\xc3\xea\x9e\x59\x3e\x99\x0b\x4b\xa2\xb6\xe6\x45\x0a\x6c\xb2\x14\x25\x96\x9c\xc7\x67\x68\xc9\xd1\x72\x92\xb5\x46\xa6\xb0\xb0\x5b\x4e\x13\x77\x7b\x47\x99\x1c\x71\x36\x8f\x9b\x8a\xcb\x61\xad\x1d\x09\xaf\x3a\x3e\x6e\x62\x94\x85\x69\xbf\x1f\x25\x9a\x70\x84\x59\x85\xa5\xed\x36\x76\x09\x11\xb7\x57\x2c\xfc\xae\xed\x45\x36\x09\x31\x22\xf1\xd4\x30\xef\xf9\x78\xdd\x77\xff\x57\x07\x36\x79\xaa\xca\xfd\x39\x7f\xc1\xc3\xc5\x02\xfe\x97\x94\xef\x3b\x2c\x8f\xc3\x1f\x1c\x78\x92\x72\x69\xfc\xc3\x76\x34\x69\x39\x83\x09\x94\x12\xf8\xef\x68\x95\xdb\xdf\x1a\xfb\x6e\xda\x85\x16\xdc\x37\x64\xaf\xf5\x98\xeb\x19\x4a\xd8\xb1\x2b\xfd\x50\xa1\xc0\x76\x51\x9d\x93\x55\x27\xa0\xdc\x87\x85\x81\x00\x03\xcf\xf3\x8b\xfe\x1b\x5a\x9a\x51\xd0\x38\xe1\x96\x1c\xd8\xe1\x73\x32\x80\xcb\xfc\x21\x3d\x78\x97\x3e\xf9\x3e\xef\x99\x46\xef\x72\x53\x14\xd6\x33\xeb\x51\x6f\x3f\x3e\x56\x44\x6a\xad\x79\x3e\x48\xb3\x24\x57\x18\x42\x80\x0c\x04\x19\x23\x38\xeb\x34\x7b\x44\x55\x49\x38\x31\x13\xd2\xa7\xb7\x17\x02\xec\x4b\x64\xa0\xe8\x42\x5d\xd3\x72\xef\x5e\xce\x5a\xbf\xd8\xf1\x14\xcf\x0d\xc5\xc8\xd2\x4e\xbb\x30\x9e\x20\x29\x50\x45\xa8\x10\x3d\x69\xf6\xbc\x97\x9a\x7f\xf5\x9b\x68\xe0\xa2\xba\x8e\xeb\x3a\x81\xa1\x21\xc0\x5c\x17\x93\xdb\x70\xa0\x68\xaf\xa7\x34\xae\xfc\x94\xc2\xde\x0e\x73\x2c\x77\xa8\x21\xdc\x52\x96\x08\xb7\x54\x5e\x34\x2a\xe3\xb8\x4a\x62\x30\x4d\xa4\x95\xa5\xea\x25\x93\x69\xeb\xe2\x9e\x76\x4e\xe4\xe7\xac\x4e\xc6\xf6\x92\x51\x6f\x38\x64\x76\x1e\xc5\xcb\x6b\x53\xbe\xf8\xc0\xaa\x85\xce\x8d\xc1\xe5\x4d\x97\x83\xad\x81\xed\x81\x17\xda\x99\x1d\x59\x53\xd8\x1e\x53\xb0\x9c\x20\xa2\xf3\xdc\xba\xa3\xee\x37\x8d\xe2\x9d\x0e\xdc\xf3\x77\x9e\xea\x68\x5d\x6f\x1a\x12\x52\x0d\xa7\x41\x25\x94\x00\x65\x87\xb5\x63\x5d\x15\x47\xe1\xb3\x80\xfc\x61\x66\x7d\x42\x91\xa7\x0a\x3b\x06\x69\x19\xf7\x5a\xad\x6f\x38\x0b\x14\x5e\xdd\x04\x03\xa0\x25\x58\xf2\xa8\x67\x93\x82\x68\x1c\x07\x7d\xc7\xd2\x03\x5d\xfc\x86\xdd\x4f\x93\xd0\xf9\x1e\xe3\xd9\x9c\x47\xb1\x9b\x4f\x26\x42\xa0\xb9\xb9\xc5\xb6\x1d\x8e\x06\x26\x8f\x10\xd9\x34\x49\xf4\x7b\x78\x53\x9e\x96\x59\x68\x81\x5c\x66\x01\x3b\xe5\x58\xf2\x6f\xb1\x5e\xe3\x05\x5d\x6d\x32\x03\xc8\x47\xd6\xf6\x72\xda\xe2\x30\x42\x4e\xea\x72\xec\x06\x8d\x33\x81\xeb\xf9\xb7\xd3\xef\xe7\xbb\x3d\x19\x62\x37\x74\x75\x91\xd4\xb2\x0e\x9b\x72\x64\x5b\xf0\xed\xe6\xf9\x79\x54\xee\x37\xbe\x80\xad\x4b\xdc\xc4\x48\x39\xdb\x49\x14\x54\xbf\x4f\xc9\xf9\x6b\xff\xff\x8e\x72\x58\x39\x4b\x33\x5b\xb4\x32\xf0\x76\x64\xe0\x4c\xe6\xcb\xdf\x6a\xf7\x9d\xdc\xc6\xbc\xc8\x40\x07\xee\x0a\x5e\x3d\xdd\x00\x2c\x9b\x6d\x67\xb6\x57\x7a\xa6\x09\x5b\x06\xd0\x03\x15\xfb\x80\xcf\x7a\xc5\xfe\xb4\x4c\x7a\x5c\x62\xa9\x56\x7a\x6d\x8e\x2b\x46\xb4\xbf\x34\x39\x0d\xa8\x8e\x96\x17\x26\xe9\xfd\xd3\x7f\x48\x09\x46\xcb\xf7\x6a\x4e\x53\x18\x2f\xb9\x8a\x7f\xde\x83\xa8\xf8\x8c\x82\x69\x7c\x06\x10\x02\x44\x69\xf7\xb5\x74\xe8\x35\x05\xe6\x1a\x2b\x7f\xc8\x5b\x50\x4e\x46\x8d\xe5\x87\x34\xe7\xa4\x85\x52\x45\x41\x2c\xdc\x40\x0f\x18\xa4\xa2\x0d\x46\xda\x28\x3f\xea\x05\x27\xcb\x4a\xaf\x0b\x5f\x5c\x25\x61\x8b\x7b\x9c\x7e\xba\x2a\xde\x3c\xd5\xd1\xfa\xa9\x92\xd3\xa2\xde\x8b\x49\xc5\x54\x23\x51\xfa\xa1\xcf\xe2\x8b\xae\x28\xc6\x07\xef\x30\xfc\x0f\x81\x76\x5d\xca\xb2\x28\x5c\x6e\xf9\x88\xfc\x88\xde\x08\x8e\xe8\x3f\xb5\x99\xec\x40\xf3\x9b\x1b\xd5\x33\xda\xdc\x50\x3d\x78\x6d\x42\x5c\x3d\x02\x69\x58\x6a\x69\xa8\x89\x7e\x41\xb5\x6a\xf4\x32\xd3\x67\xa2\xce\x02\xb7\x5a\x3f\x18\x2b\x99\xc0\x0f\x82\x67\xea\x4d\x99\x6f\xcc\xb6\xf7\xce\xb6\xb4\xba\x97\x27\xba\x4d\xe6\xf5\xfb\xe6\xc9\x2a\x38\x33\x90\x86\xe2\x3a\xf6\xd8\x13\xb8\xcf\x4e\xac\xb3\x07\xf7\x2c\x50\x83\xc2\x71\x2f\xe7\x65\x93\x0c\x3c\xfb\xb9\xe6\x5d\x93\x45\xb6\xaf\x99\x0b\x68\xdc\x60\xca\x62\xfe\x8b\x92\xf6\x13\xb5\x16\xda\x92\x7d\xd4\x17\x68\x2f\x2a\x8d\xb7\x4d\xd0\x43\xa5\x30\x50\xdd\xac\x68\x8f\xd2\xcf\x88\xf4\xb9\x47\xe4\xfe\x28\xa8\xb6\x63\x51\x42\x54\x64\x8b\x0d\x0a\xa1\x10\x25\x5c\x0e\x94\x20\xc7\x29\xb5\xe9\x85\x69\xd2\xf7\x65\x69\x84\x25\xb7\x94\x37\xdf\xad\x26\x41\xd7\x70\x10\x85\xcb\x36\x61\xce\x86\xf3\xec\x72\x36\xaf\xc0\xba\x61\x24\x1f\x1b\x6f\xe9\xdd\xce\xcd\xed\x6f\x1f\xdc\xa3\xc8\xca\xa7\x15\x59\xf9\xb4\x22\xe9\xf4\xa2\x3c\xcc\xec\xc8\x54\x9b\x40\x8e\xe6\x00\x0a\x08\x33\x14\x02\x22\x9c\x3b\xac\x74\x80\x67\x28\xd8\xe6\xff\xff\x50\xb9\xc4\x51\x66\x0b\xcb\xc2\x64\xb2\xd2\xd4\x84\xb9\x1e\x73\xe5\xcf\x5e\x64\x68\x6f\x90\xb8\x9e\xfe\x0c\x2b\xf5\x2d\xde\xe1\x90\xf5\x1f\xf6\x69\x7b\x5a\x28\xbd\x7f\x16\xd1\xa1\x47\x23\x82\x3a\x4a\x37\x26\x25\x9b\x3b\x05\xbd\xa3\x9b\x11\x18\x9e\x8f\xde\x7b\x26\x62\xdf\x4d\x44\xca\x57\xc7\x75\xed\x69\x37\x7a\xfe\x26\xd0\x82\x5d\xd9\x4a\x9a\xe1\x3a\xd0\x43\xbb\x31\xf6\xc8\xa2\x1b\x2e\x88\xea\x5a\x53\xec\xf4\x46\xb5\x3f\xa6\x6b\xc0\x3a\x06\x0e\x0a\xaa\x1c\xbb\xd7\x95\xf0\x3f\x5b\x85\xa0\x24\x7d\x97\x42\x0a\x01\x95\x57\xaf\x00\x9f\xf8\x44\xe7\x1f\x26\x59\x4b\x39\xa1\xc5\x78\xbe\xa6\x85\x75\xaf\x05\xbb\xf9\x6d\xb5\x17\x16\x17\xfe\xae\x52\x5c\x78\x17\x16\x72\xd2\x5d\xa6\xdd\x1f\x4b\xfc\x3d\xd4\x4d\xa8\xc6\x38\xf3\x05\xea\x21\x0a\x6d\x43\xcd\xdc\xa7\xa0\x38\x21\x02\xc2\x54\xdb\x64\x0c\x2a\xde\x3a\x90\x07\x53\xeb\xd5\x4a\x8e\x08\xe1\xfe\xd8\x25\x54\xff\xf5\xdf\x81\x9f\x2d\xd2\x8d\x1d\xeb\x4a\x23\xe6\x0b\xeb\x5e\x04\xe1\x14\x6f\xa8\xd2\xaa\x6f\x1d\x5a\xe0\xd2\xd8\x35\x84\x58\xb8\xb0\x47\x3b\xd5\xb8\xc5\x5b\x7b\x82\xda\x53\x42\xe1\x55\x1b\xfd\x2f\x74\x28\xc5\x70\xb8\x69\xb7\xee\xdc\x1c\x7b\x35\xdf\xf3\x41\x15\x6b\x61\x13\x01\x6e\xc9\x59\x07\xb9\x4a\xf4\x35\xec\x5a\x18\xbb\x3f\x81\xe1\x11\x16\x86\xcb\xc1\x63\x6e\x94\x24\xe9\x73\x2d\x0f\x99\x07\x32\x50\x92\xcc\xad\x33\xff\xcb\xd5\x6a\xd1\x2b\x43\xc7\xae\xc4\x54\xe3\x17\xc1\x27\x0f\x35\x8d\x2c\x93\x28\x4b\xd7\x4c\xdc\x52\xef\x1d\xe4\x55\x3e\xae\x55\xfd\x42\xdb\x7b\xa6\xba\x17\x16\xab\xa2\xec\x0a\x39\xc2\x11\xdc\x17\xba\x42\x27\xb0\x5c\x62\x5a\x4c\xb1\xc6\x31\xf2\xe2\xbf\x08\xbc\xc7\xf5\xff\x35\xf6\xdc\xf9\x77\x30\x88\x20\xb7\xf8\x01\x06\x01\xda\x4d\xff\x49\x65\x7d\xe7\x90\xe9\xc9\x4e\xe1\xf3\xa8\x93\xe3\xea\xed\x62\xb5\xba\xad\x73\x97\x5b\x34\xf4\x91\x51\x3f\x89\x18\xc3\x39\x67\x55\xc3\x86\x4f\x10\xe1\x49\x45\x85\x5e\xbc\xe8\x34\xf8\xa6\x5b\x38\x30\x11\x73\x6b\x1d\xed\x7c\x9f\x00\x57\x4e\x4f\x3c\xe2\x85\xc5\x85\xea\xf1\x92\xb0\x98\x2b\x85\x89\x25\x56\xf5\x41\xf1\xca\x52\xc8\xfe\x68\x69\x50\x88\x76\x20\x9e\x25\xcc\x8d\xa5\x97\xe7\xdd\x69\xce\xea\x5c\x2e\x5b\x2a\x59\x9b\x08\x1d\xac\xab\x8a\xce\x71\xb5\x51\x4e\x4a\xf3\xc0\xb0\x57\xbf\xa7\xf6\xed\x7a\x3f\x2b\x0a\xd3\x47\x3d\x89\x98\x5b\xfb\xd8\x0b\xaf\x06\x6a\xdc\x1c\xe1\x09\x87\x99\xb1\xe9\x63\xe3\x57\xdf\xa1\xdd\x50\x00\x60\xf4\x0e\x9d\xc9\x85\x2b\xdc\x7f\x1c\x78\xf4\x0a\xb8\xfa\x42\x74\xf5\x5b\x3b\xaf\xfe\x8b\xe2\xca\xf5\xaf\x94\x3a\xe8\xc9\x40\x85\x5b\xa7\xbc\x50\x52\x91\x39\x71\x5a\x7d\x65\x18\x9d\x3b\x3b\x9a\x52\xe5\xeb\x4d\x7d\x6b\xe3\x1a\xe1\xfc\x43\x45\x38\xff\x70\x5c\xf3\x3c\x67\x5c\x9a\x34\x0f\x3d\x9f\xb4\xb5\x4e\x93\x02\xff\xf0\xf1\x58\xa9\xf6\x5e\x51\x86\xc2\xad\xce\xd6\x29\xbd\xb8\xa7\x9d\x76\xf3\x34\xb6\x85\x55\x19\xf2\x05\x54\x4f\x84\x08\xad\xdf\x50\xba\xd6\x53\x4c\xee\x73\x3a\xe3\x3e\x17\x6c\xd9\xe9\x17\xf7\x2c\xb6\xf7\xcd\x4f\x7b\xb8\xcc\x0d\x5c\x98\xd3\xaf\x71\xf9\x3d\xb6\x10\xc6\x7d\x4e\x84\x65\xf0\xbc\x2e\x06\xab\x83\x88\x3b\x91\xcc\xca\x0d\x3c\xa9\xff\xdc\x44\x46\x02\xea\x7b\x95\x92\xd4\x8d\x74\x8e\x2b\x23\x9d\xe3\x0f\xa5\x6b\xc5\x76\xc5\x66\x66\xa9\xae\x46\x8f\xae\x1e\x1f\x07\x0d\xb6\x62\xd1\xca\x5a\xab\x5e\xd7\xa3\xe7\x23\x70\xae\xa7\x1d\x63\x2f\x1d\xd9\x8c\x54\xd1\x19\x45\xef\x60\xae\x5e\x20\x43\xc1\x80\xb9\xb0\x21\xf8\x57\x0f\x6b\x0c\xd3\x11\x94\x23\x3d\xc6\xfe\x5d\xa5\x6f\xf8\x6e\x0d\xe2\x55\x98\x2e\x47\x11\x18\xed\x47\x50\xa7\x10\x1c\xbd\x36\x93\xfe\xac\x72\x3d\x2b\xb3\xc4\xc4\x51\x5e\xe4\x33\x35\x75\x14\xda\x4f\x34\xd5\xd0\xf5\xda\x16\x85\x1c\xf3\xef\x68\x20\x8b\xaa\xa3\x07\x63\xd9\x3c\x47\x85\xd0\x41\x3c\x2e\x6a\x96\xc0\xc5\x89\x01\x70\x88\xec\xb3\x5e\x29\xcc\x28\xcd\xad\x62\x10\xfe\x68\xac\xe0\x1a\x3f\x9a\x00\xa2\xc8\xbb\x0c\x5b\x35\xe9\x56\x45\x65\x6e\x32\x88\xde\xf2\xe6\xd1\xfd\xc1\x9b\xe1\x63\x57\xa0\x58\x8a\xba\xdd\xd4\x69\x49\x3b\x46\xed\xbc\xf3\x1f\x3e\xa9\x88\x6a\xd1\x08\x48\x6b\x2d\x13\x29\x85\x61\x89\x1e\x87\x26\xcf\x4d\x98\xb1\xfd\x92\xee\x4d\xa3\xb5\x07\x1d\x02\xe4\xb1\xe7\x9a\xd4\x0f\x86\x69\xaf\x1a\x58\x56\x89\xf4\x7e\x1a\x78\x18\xe9\xa7\x6a\x39\xc9\xcb\x70\xf0\xd9\x2a\x8c\x90\x22\xbc\xe7\x39\x5f\xa3\x6a\x36\x36\xc5\x47\x28\x32\x92\x82\x0b\xad\x6d\x08\x6d\xbe\xd0\x51\xfe\xe6\x47\x68\xf3\xc3\x04\xde\xa4\x20\x04\x11\x24\x2b\x43\x62\x17\x67\x8c\xac\xfb\x97\x43\xce\x11\x65\x93\x8c\xe4\x75\x0c\x82\xdc\x86\x69\x4c\x32\x7f\xe8\xa9\x60\x53\xba\x5c\x4b\xb7\xab\x31\x87\xe0\x8b\x1d\xa2\x84\x21\xac\xea\x17\xf7\x02\x55\x43\xfc\x74\x72\xb9\x78\x61\x7f\x3b\xcc\xac\xb7\x2a\x40\xac\x74\x38\xf0\x45\xef\xc3\x4a\x48\x8e\x16\x16\x2e\x5f\x68\xdd\x3d\x2f\x92\xa7\x5b\x6d\x83\x34\x5c\xe6\x6c\x49\x20\x6c\x9e\x6d\x72\x83\x7e\x02\x65\x9a\xa3\x93\xc6\x3c\x8b\x0b\xed\x61\xb5\x59\x1b\x62\xb7\xa2\xd5\x76\x07\x21\x97\xe3\x01\x54\xcf\x05\x81\xec\x89\xba\x2e\x72\xba\x34\xe5\x11\x9f\x85\x72\x4f\x3c\xaf\xdb\xa8\x5a\x9d\xf5\xe5\x32\x0a\x97\xe3\xb5\x47\xaa\x47\x8a\xaf\xe4\x1a\x09\x56\xea\x07\x9c\xf7\xb8\x7a\xcd\xa2\xd7\x78\xaf\x7e\x89\x4d\xbb\x02\xdf\x58\xfb\x18\x6f\x1d\x29\xda\x8f\xf0\xb3\x78\x08\x87\x15\xb3\x69\x94\xd9\x95\x28\x2d\xf3\xc7\x14\xf7\x11\x6b\x09\x2e\xe2\x67\x63\xdf\x10\xfc\x36\xbe\xd1\x29\x66\xec\xdd\xcb\x83\xe2\x28\x8d\x42\x71\xfd\xa3\x5f\x12\x41\x39\x1a\x15\xf8\xda\x8f\x34\x0b\x04\x9a\x44\xce\xed\xd6\x4b\x6a\x7c\x14\x28\x95\x98\xcb\x4d\xb6\x52\xb1\x8c\x14\x44\x57\x37\xe9\x9e\xf9\x58\xf9\xd6\xa6\xb6\xec\x53\x51\x7e\x73\x63\xdc\xfa\xda\xa1\xcd\x0d\xc5\x88\x80\x41\x3f\x55\x4e\x9c\xd7\x11\x16\x7e\x3e\xae\x77\xc2\xd3\xde\x0e\xef\xcd\x7b\x53\x19\xd1\x71\x99\x07\x27\x7c\xe7\x08\x75\x7e\x3c\xf6\xb1\xe0\x69\xf5\x78\xb6\x77\x7c\xb4\x69\x86\xa6\xcc\xd6\xa6\x5b\x5f\x3b\xe4\xcc\x50\x94\x37\x26\x3c\xfe\x30\x37\x37\x03\x85\x36\xd2\xa2\x07\xe2\xdd\xc1\x81\x0c\x33\x06\x02\xef\x0e\xf8\x76\x23\xee\x35\xb6\x7d\x68\xae\xc8\x4f\xd1\x95\x63\x2a\x4c\x77\x54\x29\x45\xfd\x54\x8f\x34\x27\x6c\x86\xb2\x2d\x62\xfd\x9b\x8a\xe1\xf8\x1a\xad\x0c\x58\x57\xae\x37\xd9\x69\xf5\x4b\x1b\x73\x3f\x45\xfc\x06\x6b\x0d\xfc\xad\x85\x83\xd9\x03\xed\x5e\x94\xe7\xa6\x88\xf2\x7e\x04\x37\xe9\x2d\x4c\x60\x07\xc8\x70\xa0\xdd\x4d\x8f\xc3\x2e\xbb\x43\x93\x45\x89\x55\xfe\x52\xe7\x14\x84\xf8\x9c\xb6\x70\x89\xd3\xdc\xf6\x1e\xc5\x0c\x13\x54\x83\xef\x74\x6e\x62\xd6\x4b\xa5\x89\x06\x2b\x7e\xfa\xc4\x58\xd7\x50\xe9\x02\x21\xdb\xf3\x01\x2e\x90\x3f\xa2\xc4\xf8\xb0\xac\xf3\x7c\x0a\x94\x96\xea\x54\xc7\xeb\x9f\xf3\xbd\xb2\x76\x07\xb9\xe5\xe0\x13\xa7\x02\xda\x51\xf1\x1b\xaf\xb9\xed\x6b\x94\x99\x28\x77\xc5\x0f\xae\x02\xa8\x1a\xc2\x27\x63\x2f\x16\xb8\x62\xf3\x62\x68\x93\x82\x03\x20\xe7\x0c\x22\xaa\xa7\xc7\x9f\x26\xa2\x2e\x5d\xd4\xd1\x67\x3a\x4a\x20\xfa\x64\x93\x7b\x7d\x34\x1c\x99\x90\xa5\xa4\xf4\x86\x26\x28\x23\x1f\x6f\x27\x26\x09\xd7\xa6\x69\x98\x02\xab\x84\x2e\x0a\x1b\x2b\x07\xbe\xca\xf2\xce\xd8\x23\x78\xef\x34\x88\x52\xef\x6f\xf7\x6c\x16\xad\x48\x6f\x4e\x30\xd8\x1a\x90\xad\xa0\x3c\xb9\x61\x3c\x24\xae\xe8\x8e\xc2\x3d\xdd\x71\x1d\xec\x3c\xed\x17\x36\x71\x49\x04\xc6\xd2\x5f\x2a\xeb\xfa\x37\xd5\x40\xff\x60\xec\xe3\x49\xe7\x01\x39\xa3\x91\xcd\x58\xdc\xb0\x43\x9f\x50\xcc\x98\x0d\x1d\x96\xc2\x42\x0d\xb3\x54\x23\xb0\xc8\xeb\x29\x1a\x99\x78\x4a\x21\x77\xd7\x69\x72\xb1\x95\x52\xe0\xd3\xc0\xd3\x4a\x64\x30\x2f\x4c\x61\xab\x57\x9b\x6b\xec\xd6\x4d\x8d\xdd\xba\x59\xdb\x49\x49\x94\x3f\xcd\xf2\x1d\x9e\x90\x7e\x26\x50\x30\x80\x13\xaa\x2a\xf1\xc7\x63\x4f\xc1\xbb\xa8\x51\xb1\x5a\x0f\xf8\xa6\x7a\xee\x3d\x0a\x19\x9d\xca\xdb\x45\x2c\x8e\x02\x0e\x78\x46\xc1\x17\x93\x90\x18\x0b\x0c\xf9\x14\x5b\x49\xa5\x1c\x71\xc6\x0d\xf4\x6e\x66\xcd\xb2\x7b\x4d\x22\x5a\xd3\x52\x76\xca\x3e\x2b\xf6\x70\xe1\x32\x59\x4e\x9c\x19\xb8\x5c\x81\xbe\x34\xb5\x1d\x9a\xac\xa8\xd6\xb8\x1d\x5e\x6d\x0e\xe3\x59\x54\x66\xfd\x52\xf3\xd6\x58\x09\xe6\xb2\xf3\xb1\x63\x12\x2e\x3a\x8c\x85\x2a\xe8\x17\x03\x9b\x99\xd1\x9a\xa2\x70\x5c\x52\x14\x8e\x4b\x0d\xe0\xdc\xb6\x41\xb0\x83\x5a\xbd\x30\xe1\x14\x09\xd9\x3d\x99\x1a\x59\x03\xf3\x15\xbd\x4d\x2c\x98\x48\xfa\xf0\x8e\xaf\x69\x69\xc6\x1f\xb9\x39\xd0\x8f\xb2\xbc\x18\x98\xa4\x37\xe3\x19\x14\x0c\xa1\x74\x01\xb1\x43\x4d\x5f\x56\xaa\xcb\xe7\x95\x5e\xd2\x7d\x35\xe1\x7b\xe9\xd2\xd0\x4c\xf9\xca\xea\x66\xe0\x5b\x3b\xaf\xe1\xfd\xe2\x0b\x1e\x5e\xbb\x1a\xd9\x24\x79\x35\x8d\x62\x5a\xc3\x31\xb7\xee\x69\x68\xdf\xbd\x06\x8e\x70\x3b\x1c\x58\x94\x82\x55\xf5\x37\xd0\x65\xe1\xda\xe6\xbe\x12\x25\x98\x68\xb2\xf8\x3c\xdc\x08\xbe\x41\x0c\x68\x35\xcd\xe2\x9e\xda\x10\x2f\x2a\x56\x15\x63\xe6\x85\x33\xfb\x94\x72\xde\x8f\xe3\x2a\x82\x9d\xae\x63\x9c\xfd\x03\x0d\x14\xea\x17\x41\xa6\x80\x9f\x1b\xc4\x1b\x7b\x04\x0a\x9d\xf6\x4a\xe3\x0c\x4a\x94\x14\xd6\x03\x62\xaf\x53\x5c\x87\x25\xf2\x4d\x4d\x66\x0b\x09\xed\x60\x7b\xd3\xbe\x09\x0b\x37\x17\x47\xee\x71\xd2\x16\x67\xb4\xd2\xde\x95\x26\x0e\x82\xe9\xad\x38\x69\x0c\x06\x43\xd2\xe7\x05\x18\xd9\xb0\x89\xe4\x45\x99\xf5\xd6\x34\xe9\x85\xae\x5a\x08\x30\x5b\x53\x86\x03\x2f\xb4\x57\xd2\xb8\x4c\x0a\x6b\x33\x9a\x4c\x98\x9c\x3f\x51\x38\xa7\x9f\xb8\xc6\x40\xd7\x9a\x22\x8b\x58\x64\x07\xc5\xf2\x56\xc7\xc3\x2e\x3f\xc6\x4b\xe2\x26\xd0\x84\xd0\x07\xe5\xa5\x06\x4d\x0b\x81\x64\xb4\xbc\x4b\x97\x7a\xa9\x45\x3a\x24\x42\x3d\x38\xcc\xe8\x6a\x6f\x22\xd3\x67\x67\xbc\xa0\x16\x82\x57\x8f\xd7\xc5\xe6\x55\x44\x81\x94\x60\x5d\x59\xbd\x9f\x52\x52\x54\x47\xb5\x15\x97\xc8\xe9\x2b\xea\xdd\xb7\xb1\x70\x4b\x21\xe1\x61\x13\xca\x65\x5a\x74\xd7\xae\xc5\xed\x02\xbe\xb3\x0d\x30\xbf\x76\x61\x5e\x91\xac\x1c\x20\x45\xe0\x56\xf9\x58\x75\x1b\x46\x59\xda\x7f\x8e\xb3\x72\xe1\xa8\xd1\x0f\x49\x1b\x41\xf9\xa7\x9b\x3c\x2c\xe3\x2a\x3c\x53\xab\x3e\x9e\xad\xd0\xbd\x3c\x34\x2f\x4f\x87\x96\xdc\x37\x76\x7a\xb8\x39\x07\x8f\x68\xf3\x4d\xb3\xf2\x35\x5e\xcb\x07\x58\x99\x59\xba\x8a\xae\x15\xff\x00\x29\x71\x91\xb4\xaa\x52\x5f\x89\x3d\xa5\x94\xd8\x27\x03\x29\x94\x01\xb0\x20\xfc\x58\x43\x0b\xe0\xb1\x20\xa4\xc9\xad\x6b\xcf\xde\xd9\x76\x3f\xea\x59\x42\x4f\xfb\xfc\xe4\xfc\x58\xe9\xa2\x9c\x0f\xfc\xd3\xea\xc6\xd5\xa6\xe4\x91\x8b\xf0\x8f\x94\x8d\xe1\x09\x5f\xdc\x4c\x93\xa5\x78\x6d\x7a\xc2\xc5\xd6\xa1\xe1\x16\xf7\xf0\xe4\xc4\xc0\x96\xbe\x65\xc3\xdc\x8c\x92\xbe\x80\x54\x05\x97\xee\xe3\x9a\x49\xcf\xb9\x83\x7b\x66\x69\x99\x24\x50\x9c\xee\x54\xbe\xa1\xc0\x54\x6f\x68\x2e\x42\x9a\x92\x7d\xb6\x47\xec\x42\xf8\x4d\x28\xb1\x0f\x63\x84\xc7\x66\x95\xe6\x27\x16\x30\x88\x60\x61\x07\x3a\xaa\x2d\x4a\x4e\xaa\x3a\x71\xb5\xca\x8f\x68\x5e\x0a\x67\x85\xde\x13\x9f\x04\xcf\x78\x86\x52\x3a\x1c\x99\x64\x8d\xac\x60\x95\xab\xae\x4f\x6b\x99\x78\x20\xa5\x84\xad\xab\xcd\xbe\xf9\xf6\xd0\x84\x83\x28\xb1\xec\xbb\x87\x85\xec\x88\xae\xb0\x1c\x69\xd0\x61\x6e\x0f\xd3\x57\xa2\xbf\x65\x78\xd7\x54\x18\xfb\xb0\x1f\x22\x6d\x17\xac\x45\x1f\xd2\x0a\xc1\xfa\xd3\x41\x4b\x6b\x51\x57\x6b\x0a\x72\xb5\x77\x51\xa7\xe1\x13\x85\x7f\xfc\x50\x05\x94\x26\x8e\xcb\x1c\x15\x13\x57\x08\x3f\xa6\x74\xfa\x8f\xa9\xb2\xa3\xd2\xed\xa6\x10\x88\x4d\xe1\x02\x1f\x3d\xdc\x1f\x2b\x53\xfa\x33\x58\xd3\x9c\x6b\xb5\xa3\x1d\x7d\x82\x6d\x42\x2a\x11\x9f\x71\x75\xb6\xac\x88\x92\xa8\xa5\xfe\xf1\x3b\x0a\x0b\xfc\x1d\xcd\x92\x20\x66\x5e\x35\xf3\x51\xbe\xc3\x0c\xbe\x85\x1b\xe6\x93\xb1\x76\xcc\x19\x44\xdd\xa8\x98\xf1\x9c\xe3\xb7\xc7\xca\x92\x93\x13\x46\x6c\xd2\x57\x55\x3d\x86\x45\x69\xc5\xdb\xf1\x09\x87\xd5\x2b\x06\x69\x2f\x7d\x85\xb6\x55\xf1\x3f\xf6\x0d\xda\xa9\x4e\x4b\x79\x6e\x54\x09\x3c\x96\xf5\xe3\xb5\xd0\x62\x75\xb0\xb6\xbb\x8e\xc7\xa2\x2b\x12\x29\x21\xda\xa5\x01\x53\x6a\xa1\xf9\x58\x93\x6e\x11\x4e\x79\xeb\x1b\xb3\x5c\x00\xbd\x12\xf8\xde\xf9\x15\xe5\x0d\x02\x05\x63\x96\x0f\x19\xfb\xdc\x1f\xdc\x4d\xe9\xab\x35\xb9\xe4\x47\x49\x2f\xf2\x6d\x45\xc9\xa4\xaa\xfb\x94\x44\x6a\xc2\xa8\x7e\x71\x4f\x7b\x60\xe2\x7e\x8b\xfa\x1e\xe8\xb6\x9c\x45\x85\x8f\x4f\x54\x09\xa6\xb0\xbd\x6a\x5b\x7f\xf6\x59\x4e\xaa\x6f\xc1\xf0\x8c\x4f\x1a\xf5\xe4\x8a\x55\xd9\xab\xc5\xbe\xbc\xe5\xfc\xc5\x4e\x2b\x31\x87\xbb\x4a\xa4\x38\x4a\x0a\x1b\xc7\x36\x2c\x4a\x13\x03\x15\x26\xc2\x30\xd5\xf3\x42\x86\x0b\x6c\x85\x6c\x1d\x1e\x45\x63\x46\x23\x6b\xe0\x3f\x84\x55\xdf\x51\x5d\xb5\x2c\xa6\x67\x3b\x5c\x50\xe4\xe6\xd8\x9a\xa5\x92\x81\x04\x6c\x9a\x40\x57\x2b\x06\x0a\x5b\x0b\x1a\x0b\x2f\xec\x6f\x8f\x48\x63\x2d\x4b\xa3\x65\x83\x24\x5f\xcc\x7f\x7c\x59\xfa\x0a\xd1\xcf\x45\xd4\x44\x0f\xa8\xbe\x31\x8f\x78\x7e\xc5\xb6\x4e\xcd\xf5\xa9\x7a\xd7\xf8\xd0\x55\xa5\xe0\x71\x27\xa8\x95\x79\xaa\x97\xe6\x6c\xa2\xaa\x77\x21\x85\x48\x7a\x83\x02\x90\xf4\xdb\x34\xe9\xd3\x42\xfa\x58\x71\x97\xc7\xba\x5f\xfb\xb0\x50\xc3\x0e\x47\x71\xba\x66\xf1\x32\xd9\x67\x4c\xa1\xfc\x8e\x63\x94\x03\xeb\xfd\x81\xa6\xc9\x11\x6c\x55\x76\x11\xb4\x8b\x8f\xd0\x2e\xc2\xc7\x13\xa5\xda\xd9\x03\xed\x22\x2d\x33\xf2\x53\x9b\x9f\xf7\x01\xb5\xf3\xa7\x24\x6f\x39\x7c\x79\x2e\xee\x02\xe2\x81\xac\xf0\x39\xc7\x9a\xc2\xd9\xbe\x77\x61\x41\x50\x07\x77\x06\x3e\xd6\xd4\xcb\xd4\x64\x3d\x14\xc7\x00\x39\x03\xa6\xd1\xe1\x80\xbc\xc8\xd2\xf6\xf5\xa7\x14\xb3\xdc\x24\xf0\x44\x5b\xdc\xe3\xbc\x20\x5b\xce\xd2\xe3\xbc\x6b\x72\xf6\x2c\xd5\x2b\x55\x29\xfe\xa2\xf6\xa8\xbd\xe8\xf9\x3f\x71\x98\x0e\xd2\x78\xc6\x2b\x59\x9f\xd2\x8a\x1e\xd7\xf0\x29\x44\xc2\x3f\x55\x2c\xbf\x4d\x25\x3d\xb9\xcd\x2d\x84\xa3\x32\x1f\xa4\x2b\x8c\xb3\x45\xfe\x84\x34\x82\x8f\x55\xa7\x2b\x2f\xf3\xc2\x44\xec\x32\x8a\x5d\xee\x08\x6e\x5b\xef\x4f\xfc\x0f\x63\x3f\xc5\xdf\x55\xe2\x59\xa3\xc8\x66\x99\xd5\x12\x76\xbc\x68\x8a\x6f\xc8\x84\xa3\xca\xde\xf6\xa8\x2c\xa8\x82\x81\x49\xcf\xcd\x0e\xc4\x01\xbf\x89\x65\x1f\x2f\x6b\x46\x4b\x38\x71\xaf\xd6\x29\x86\x3b\xf8\xf5\x47\x0e\x38\xdc\x4d\x13\xc6\xa8\x0a\x86\x8d\x3e\x82\xc7\x78\x57\xd5\xc8\x2f\x28\xe3\xfd\xe7\xfe\xd1\x3f\xfe\x55\x54\x27\x1c\x5f\xd1\x65\xeb\xd7\x55\xd8\xfc\x61\xbd\xbb\xfb\x52\x4a\x0f\x18\xa1\x1b\xaa\x71\x7c\xac\x60\xe6\xcb\x99\x4d\x5e\xd5\xdc\xde\xba\x50\xdc\x33\x0a\x64\x98\x2f\xdb\xa2\x6b\xe2\x18\x7e\x57\x28\x8e\x20\x0d\xe3\x63\xba\x14\xa6\x11\xd0\x7a\x23\x94\x02\xbf\x7a\x2f\x99\x28\xc9\x1f\xa7\x67\x26\x90\x32\x85\x3e\x01\xd6\x0c\xe6\x15\x50\x90\xc0\x4d\x9e\xd5\xee\x34\xe7\xc6\x35\x1a\x8b\x0f\x9e\x02\xef\x44\xf4\x11\x7a\x04\x08\x26\x67\x3a\x4a\x1d\xed\xfa\x58\x89\x9b\x6d\xe7\x10\x1f\x51\xf9\xc7\x63\xd5\xed\xbf\xe8\x1a\x83\x66\x34\x32\x99\xe1\x72\x24\x7e\xf6\x9d\xb1\x1f\xb9\xef\xb8\x4e\xb0\x1d\x76\x4d\x96\x19\x32\x7c\x52\xea\x61\xa8\xc7\xf0\xb1\xc6\x5a\x0e\x88\x1d\x54\x25\x5d\x14\x16\x49\x44\xa0\xba\xa7\xac\x03\xe0\x20\x88\x4e\x7f\x04\x99\xbd\xd4\xd3\xb5\xc5\xd6\x53\xba\x1f\x61\x61\xd4\xef\x0c\x9a\x8f\x2a\x8e\xfa\x51\x85\x04\x59\x31\x61\x59\x0e\x09\xa2\xe2\xae\x79\x71\x8f\xbb\x66\xb9\x41\x93\x14\xd1\xcb\x25\xab\xe1\x79\xb1\xe6\x8b\xe8\xe5\x09\xc8\xde\x2f\xf4\xfd\x32\x4b\xa2\xa2\xcc\xec\x94\xdf\x60\xb0\x67\xa2\xd8\x8c\xe0\x0e\x31\xc6\x89\x9a\xea\xf2\x70\x18\x15\x85\xb5\xbb\x6a\xe6\x61\x5b\x9f\x11\x36\x52\x26\xf6\x49\x0d\xdf\x27\xd2\xd7\xb4\xe6\xc2\x5b\x81\xc6\xed\x8c\x35\x9f\xfc\xa4\xc2\x10\x9c\x6f\x2c\x0d\x9b\xc4\xc4\x6b\xaf\xda\x96\x26\x29\x23\x35\x16\xc6\xf2\xd3\x1a\x41\x0b\x3b\x7e\x22\x5b\x41\x64\xe0\x4d\x25\x17\x78\xb5\x06\x24\x6f\x14\xa6\x1c\x91\x6b\x98\x76\xce\x50\x2d\x86\x63\x2a\x56\xe8\xda\x78\x29\x2a\x87\x18\x6c\x88\xe4\x3f\xa4\x3f\xe5\x63\x15\xca\x56\xdf\x4a\x0e\x2e\xce\xe0\xe4\x1e\x62\x7e\xbc\x95\x07\xca\x7a\xe1\xaf\x27\xda\xa9\x07\x5e\x10\x15\x36\x36\xf4\xc0\xfe\x73\x55\xeb\x46\x5d\x55\xba\x32\x3d\xdb\x37\x65\x2c\x20\x03\x54\x2a\x6e\x70\xaf\x51\x8c\xeb\xe8\x75\xe0\xf1\x1c\x1e\x7b\x52\xce\x49\x95\xda\x9d\xd4\xce\xe3\x49\x5e\x66\x0c\x56\xc2\xac\x7e\x30\xf6\xc0\xd6\x07\x13\x5a\xf8\xa4\x28\xb5\x64\x93\x28\x2d\xf3\xad\xfc\x61\x05\xa8\x76\xe4\x93\xa8\x67\x15\xeb\x63\xac\x95\x29\xc6\x4d\x2e\x6d\x61\xba\x1a\x73\x70\x87\x7d\xfe\x0e\x06\x98\x58\xbb\xfa\xdc\xea\xac\x82\x07\x0d\xcd\x4b\x69\x06\x57\x7f\xe5\xcf\x28\x65\xd3\x1d\xeb\x5e\x9b\xf9\x3a\x72\x12\xb0\x67\x98\x6c\x86\xbf\xc2\x72\x82\xa8\xfe\x07\x84\x59\x47\x0e\x85\xae\x3d\xb2\x26\xf8\x39\x8a\x78\xa1\xaf\x90\xfe\x96\x5a\x89\x47\xd1\x70\xc4\xd3\x58\xe9\xbb\x7c\xcb\xe9\xbb\x38\x73\x93\xd4\x88\x06\xc2\x2c\x47\x4b\x53\x10\x63\x41\x7e\x03\x95\x0c\x91\xa4\x6a\x20\xc9\xe6\x85\xc9\x00\xed\x77\x66\xe2\xd5\x3c\x92\x46\xf3\xe7\xb7\xe2\x8c\xf6\x13\xda\x07\x18\x61\x2d\xff\x88\x95\x1d\x39\x4a\x4d\x19\x05\x03\xec\xf7\x15\x1c\x22\x4c\x63\x56\xd6\x91\xc5\x5c\x25\x13\x93\x64\xdb\xf9\x79\x67\x12\xc9\xef\x14\xbf\xcb\x61\x0d\xae\xf4\xad\xb1\x0e\x7a\x95\xde\x68\x68\x92\x9e\x89\xb5\xc0\x17\x2a\xfa\x7c\xec\xf7\x11\x40\x51\x1e\xf5\xe5\xa2\xe9\xf5\x9a\x2c\x5c\xf5\x88\x90\x10\x3c\xb2\xee\x05\xf8\x80\x53\xa2\x42\xc2\xd7\xbe\x44\xa0\x68\xe1\x30\x57\xef\x58\xec\x10\x94\xe5\xd8\x03\xad\xce\x71\x14\x7b\x9a\x74\x13\x9f\xd6\xce\x84\x61\x94\x3b\x9d\xf1\x9a\x8b\x1b\xf7\xa1\x95\xdf\xee\x68\x62\x82\x79\x24\x68\x6c\xf3\x5c\x09\xa9\x5f\xa7\x1e\xbe\x50\xd0\x68\x8d\x61\x2d\x5f\xe5\x1d\x77\x82\x06\x2b\x36\x22\xee\x07\x32\x51\x6c\xa2\x5a\x7a\xe0\x05\xf2\x14\x68\x29\x7e\x66\xa0\x8c\x8b\x3f\xf1\xb2\xd5\x51\x6e\x50\xd4\x17\xa9\x02\x85\x71\x3a\xa6\xe2\xc1\xb4\x2c\x7a\x51\x4f\xeb\x2c\xb3\xf0\x28\x9f\x4c\x5c\xc2\xdc\x5c\x7b\x14\x76\xf3\xa9\x6a\xb2\x61\x12\x9e\xd2\x54\x93\x2b\xf8\x34\xc2\x96\x77\x27\x32\x09\xb2\x83\xcf\x56\x5c\xb5\xcb\x75\x9b\xbd\xda\xca\xa5\xc0\x8f\xdd\xbe\xb5\xf9\x63\x4a\xf0\x17\xea\x99\xac\x0b\x34\x56\x50\x54\x68\xa1\x61\x56\xbc\xad\x61\xa9\x08\x90\xd8\xa6\x29\xf0\x51\x2c\xb8\x7e\x28\x57\x3c\x86\xb8\xd5\x79\x39\xed\x13\x19\xf0\xb7\x71\x33\x92\x77\xd3\x15\x23\x7d\xbd\xad\xbc\x65\x4c\x6f\x97\xef\xc1\xfc\x9f\x81\xe2\xff\xfe\x09\x86\x90\x23\xf1\x55\xbf\xc2\x7d\x0f\x5a\xda\xb1\xf3\xdd\x51\x76\x0d\x77\x68\xe0\x8b\xc1\x04\x76\x09\xad\xf0\x26\x37\xe2\x49\x40\x65\x0f\x62\x56\x88\xe8\xb8\x9a\xc7\x27\x3e\x58\x09\x43\x3b\x22\xd9\xdc\x7c\x07\xbe\xd4\x19\x85\x3a\x7a\xf5\xc7\x9a\x8a\x88\xf1\x29\x55\x0e\x25\xc7\xb9\xab\xa3\x8a\xad\xb7\x9b\x04\xf5\x0c\x19\x95\x4e\xf9\xb1\x07\x47\x34\x27\xea\x5b\xfd\x88\xb8\x89\xea\x10\xfd\x59\x3b\x44\x30\x2d\xf8\x78\x2d\x46\x4d\x9f\x12\x0a\x9e\x57\xaf\x7a\x77\xec\x01\xdf\x3d\x53\xe8\x02\xc3\x77\xc6\x8a\x7e\x73\x44\x41\x32\x4f\xb8\xfc\x63\x64\x96\x64\x8d\x43\xc4\xb3\x1d\x38\x78\xe4\xcf\x9f\xa1\x12\x14\x33\xde\xc6\x5b\x05\x31\x0e\x2d\xb4\x8b\x15\xdd\x1f\xc7\x36\x27\x84\xad\x06\xa8\x45\x99\xb0\xb1\xd2\xab\x75\x04\xde\xa7\x0a\x81\xf7\x69\xf0\x98\x1f\x56\x51\x6f\x27\x0d\x7d\x0c\x77\x44\xbc\x18\x57\x53\x1d\x25\x1c\x70\x6e\xec\xd1\xcd\x3f\x08\x3c\x6f\xf2\x07\x74\x41\x18\xc8\x77\xb4\xc6\xf6\xc6\x44\xa4\x35\x7b\xa0\x9d\x56\x21\x91\x9b\x96\x4d\xda\x8c\x4d\x0a\xc7\x76\x35\x2a\xc2\x81\x45\x83\x4e\x81\xb6\x64\xa9\x44\xca\x2b\x4b\x5e\x83\x49\xe4\x92\x4d\x8a\x18\x5e\x7a\xc8\x5b\x7f\x8a\x5e\x8d\xa3\x86\xbb\x89\x75\x5d\x89\x25\x9b\x7e\x66\x22\xf6\xaf\x44\x88\x00\x0e\x1f\x5e\xdc\x1f\xa1\x0a\xe3\x54\x89\xaa\x61\x80\x32\xeb\x91\xb1\xc7\x8c\x7d\x8f\x66\x1d\xff\x51\x93\x3a\x7e\x3f\x36\xab\x1c\x13\x48\x0d\xc7\x13\x81\x26\x19\x9a\xb3\x07\xda\x99\x5d\x31\xc3\x91\xeb\x9e\x6b\x91\x32\xf4\x98\xee\x29\x4e\xcf\x25\xc5\x19\xcc\xec\xcb\x65\x94\x11\xb4\xa0\xe5\x29\x43\xdf\xab\x59\xec\x3f\xa5\x99\xa6\x65\x5c\x88\xa3\x10\xee\xec\x0c\x42\x24\x3e\x99\xe8\x33\x54\x81\x04\xc4\x6d\xdc\x2b\x76\x20\xb3\xb9\x39\x39\x0e\xb4\xac\xa0\x59\x8d\x2d\x3b\xee\x39\x60\x9d\x56\x3d\x93\xae\x76\xba\x62\xb3\x24\x22\x8b\xa9\xb9\x39\x06\x77\xef\xea\xf8\x2b\xdf\xbe\xde\xfa\xc6\xac\x53\x26\x6a\x78\xce\x83\x34\x49\xb3\x96\x12\x6a\x7d\x9d\x9e\x18\x1f\x4f\xf4\xec\x17\x5e\xd8\xcf\x96\xfd\x80\xf8\x23\xc8\x7c\x9f\xee\x03\x9c\xc1\x9b\x0a\x17\x7a\x49\xd7\xbd\x92\xa4\x04\x89\x60\x6e\x8e\xeb\x12\xcc\xa8\xe1\x13\x4d\x34\xce\xa2\xa9\x2a\xdf\xc2\x30\x86\xda\x31\xe2\x14\xb6\x25\x92\x15\x76\x12\xfc\x35\xdb\x8e\xa3\x65\x08\xb6\x61\x0b\xba\xa3\xac\xcb\xff\x6f\x5a\xd5\xb0\xa1\xbc\x8e\xda\x3e\x16\xfe\xfb\x4d\x86\x89\x99\x0d\x8b\x28\x8e\x12\x6b\x32\xe4\x5b\xa8\xb6\x61\x18\xf3\xb1\x02\x4d\x9b\x3c\xaf\x52\x8d\x96\x8f\x7d\x2f\x80\xec\x21\xca\x97\x5b\x87\xc5\xbe\xf9\xb6\x1d\x45\xb1\x1d\x41\xc2\x43\x29\xd7\x2b\x57\x2e\xed\xcc\x6e\x63\xe0\x5f\xc0\xfb\xc7\x7a\x3c\x53\x83\xff\x53\x64\x2c\x34\xbd\xc9\x8a\xf8\xf3\xed\x97\xcc\x88\x94\xde\x59\xc6\x4c\x97\x05\xd0\x44\xbf\x87\x1d\x54\x88\xa4\x0a\x67\x3c\x9c\xf1\xa1\xef\x4e\xd2\x30\x74\x82\x82\xd5\xe0\xc7\x78\x43\x39\x02\x01\x14\x44\x17\x85\x02\xd1\xe0\x2c\x59\x8e\xf2\x02\x84\x14\x2d\x00\xe2\x58\x67\x47\x03\x2f\xbd\x9d\xd9\x30\x5d\x4a\xa2\x57\x4d\x97\x53\x28\x31\x34\x6c\x29\xa3\x43\xef\x5c\x93\x84\xd5\xb4\x90\xa5\x00\x3d\xf3\xfb\x8a\xd0\x76\x59\xd5\xea\xce\x4c\x04\x59\xb3\x07\xda\x03\x6b\x0a\x55\x13\xdc\xb6\xae\xe4\xe0\xb7\x75\x7c\x3d\x6c\x60\xe3\x21\x6c\x38\xf1\x65\xd7\x50\xed\xe1\x93\x46\x2d\x9d\x30\xb3\x36\x99\x74\xf7\x72\x11\xfd\xd9\x40\x39\xe7\x92\xf5\xe1\xec\x01\x9f\x31\xaa\x97\xed\xa1\x51\x2b\xd1\x52\x9a\x51\x7a\x39\xe3\x19\x77\xd7\x91\x69\xb8\xe2\xe4\xfc\xbc\xc7\xa6\x2a\xdf\xef\x96\xf2\x03\xdf\x3a\x42\xe7\xe6\x16\xb7\xea\xe8\x63\xd7\xdb\xd6\xf1\x4d\x81\x6d\xeb\x5b\x67\xe1\xde\xbd\xed\xa2\x9b\x26\x10\x6d\xc3\xef\x4f\xa9\xed\x9c\xd5\x9f\x64\xf4\xf8\x9c\x34\x5c\x0b\x63\x4b\x22\x2b\x6c\x3f\xa7\x4a\x6a\x3f\xa1\x37\x86\x90\x86\x68\x82\xcf\x6f\xbe\xa9\xa6\x46\xf5\x9f\x51\x6c\xd6\x74\x16\x79\x49\xf1\xae\x2f\x35\xb1\x3f\x88\xa4\xea\x6d\x29\x79\x21\x82\xee\x2b\xca\x42\x0f\x14\x38\xea\xcf\x9b\x82\xf1\xc4\xae\x0a\x4e\x5f\x2a\x08\x74\x73\x7c\xd2\xbc\x40\xa5\xe2\x16\xcd\xcd\x3b\x1a\x98\xd2\xc8\x93\xca\x74\xdf\x1a\x6a\x0f\x62\x9d\x75\x7c\xec\x9a\x13\x93\xcb\xbe\xef\x3e\xb4\x4d\x41\x05\x9c\x32\xb3\xb5\x2a\x19\xdd\x95\x12\x52\xf7\xea\x4a\x36\xc9\x09\x7e\xec\xb0\xe7\x1f\x29\xec\xf9\x47\xde\xa5\x29\x8b\x12\xc1\x11\x20\xef\x93\xa2\x8a\x84\xf1\xf4\x73\x5c\x01\x6d\xd0\x53\x68\xa7\x65\x96\xdb\x78\x45\xca\x77\x58\xd0\xcf\x02\x20\xcc\x27\x2e\x5d\xad\x26\xff\x8a\xcd\x76\xfa\xcd\xf9\x32\xdd\x81\xb0\x24\x69\xfe\xb9\x13\xaf\xcb\x73\x01\xd1\x87\xa4\x46\x5e\xb2\x0c\xaa\x05\xb8\xba\x5d\x9d\xc7\x55\x53\x36\x46\x08\x80\xfc\xf1\x70\xa0\xbc\xea\x0e\x6b\xba\x1a\x05\xf4\x35\xd5\x3f\x55\x05\xbd\xa7\xc6\xdd\x1d\x7c\x85\x70\x6f\x1b\x84\x3e\xec\x2b\xa1\xb5\x3d\xee\x7c\x80\x07\x76\x14\x33\x97\x4f\x6a\xcc\x5e\x93\x17\x58\x2e\x51\x76\xc0\x3c\xe4\xe3\x75\x1f\xa2\x0d\x4d\x16\xa6\xf9\x94\xcf\x6c\x4e\x80\x16\x21\xa4\x76\xbf\x25\x6e\x78\xbf\x2f\x33\x8a\x0a\xa2\xe4\xd0\x0f\x20\x03\xbd\xa1\x6c\x7f\x6e\x68\x4c\x55\x39\x1c\x9a\x2c\x8a\xd7\xa6\x94\x71\x02\xab\xf7\x38\x0e\x57\xb5\x19\x61\xee\xe8\x92\xaa\x2d\xb3\x74\x64\x4d\xc2\xdc\x6b\x69\xa8\x7b\xcc\x12\x22\x08\xfe\xff\x98\x4e\xfc\x0f\xaa\xe0\x18\xc6\xd6\x64\xb6\x37\x4d\xcc\x5b\x07\x99\xf1\xb6\x8c\x08\xfc\x9c\xf6\x5c\x75\x29\x52\xaf\xf6\x09\xee\x28\x0a\x97\x41\x7d\xc3\x52\xf6\x91\x52\xb3\xb8\x83\xc1\x83\x4c\x67\x5b\xc7\xab\x33\x9c\xd7\xb8\x37\xad\x8d\x3c\x8c\x8a\xa8\xa5\xd6\xdc\xb3\x8a\x80\x71\x76\x2b\x5d\xbd\x9a\x2c\xed\xaf\xd0\x44\x43\x7c\xc0\x89\x3f\x9f\x28\x9d\x89\x72\x98\xef\xf2\xc4\x91\x6d\x9a\x2f\xfd\x2f\xc7\xbe\x9a\xc8\xaa\x2b\x02\x69\xa3\x37\x41\xf5\xec\x27\x7e\xa9\xa3\x8a\x02\x1b\x9c\xd6\x22\x9c\x02\x66\x11\xa0\xaa\xcf\xad\x57\xdb\x35\x12\xe4\x73\xba\x47\x9a\x44\x43\xe3\x6d\xe0\x64\xd9\xf0\x6c\x82\x63\x4a\xf3\xe9\xb6\x52\x1c\x1b\x45\xc9\x80\x5c\x02\x5b\xde\x8a\xe9\xaf\xc7\x4a\xd7\xf8\xaf\x27\x56\xad\xf9\xf9\x76\x5e\x64\x76\x54\xa4\xcb\x51\x62\x72\xc6\x71\x61\xdb\x9d\xee\xf8\xfd\x78\x7a\x5d\x23\x71\x57\x93\xc7\xe8\xde\x45\xd2\x99\xae\x13\x0d\xb2\x8f\x94\x38\xe2\x59\x45\xb5\x7c\xbc\xa3\x8a\x88\x67\x74\x96\xf2\xa7\x63\xef\x2c\x0d\xeb\x59\x14\xc2\xfe\x54\x73\x12\x1f\xa0\x1a\xa1\xd3\x5b\x44\xcc\x47\xb5\x4f\xeb\x51\x07\xd3\x29\x93\x68\xc5\x66\xb9\xea\x57\x60\x21\x7a\x3d\xf0\x81\xf3\xeb\x0d\x56\xa4\xcf\xb7\x7b\x99\x59\x72\xa4\x31\xce\x3f\xf5\x10\x98\x9a\xe0\x5e\xce\xcf\xef\x6f\xd3\x7a\x29\x9f\xc2\x0a\xc5\xb2\xbc\x7c\xe2\x4a\x55\x71\x6a\x8a\xc1\xb4\x9f\xf0\xf7\x35\x9d\xe9\x0d\x2d\x24\x7a\xcb\xf3\xd7\xbf\xf3\xbd\x89\x50\xc1\xed\x37\xe6\x95\x92\x29\x49\x4e\x61\xdb\x35\xad\x19\x32\x2a\x17\xe4\xd7\x84\x7e\x66\x96\x00\xed\x6e\x39\x0d\xa5\x3b\xca\x12\xe1\x8e\x6a\x44\x0f\x4c\x16\xdb\x61\x4b\x21\x95\x15\x56\xe4\xad\xa6\xee\xf9\x20\x4d\x6c\x5e\x00\xdd\x84\x88\xf7\x9a\x22\xbc\x5d\x7b\x28\x9a\x70\x75\x60\x0a\xbb\x62\xb3\xe9\x2a\x87\xc2\xaa\x70\x4c\xaf\x47\x9b\x58\x54\xc1\x9d\x7f\xac\xe3\x7b\xf8\x57\x54\x01\x98\xb0\x65\x2d\xa7\xee\xf5\x3a\xbe\x40\x5e\xbf\x5f\xd0\x7a\x51\x1e\x96\x79\x3e\xe3\x01\xce\xf0\xcf\xc7\xef\xde\x55\x65\x8a\x2b\xaa\xa4\xff\x16\x35\x37\x19\x7e\xaf\x0a\x8b\xdd\xa8\xd7\xb3\xd9\x94\x4f\x83\xae\x29\x44\xd8\xb9\x9a\xfe\xb1\x9a\xb0\x59\xda\xb7\x79\x9e\x66\x9a\x55\xcd\x70\x1d\xa1\xc6\x36\x14\xac\x87\x69\xb8\x4c\x66\x11\x2d\x2f\xe5\x8e\x8a\x00\x1f\xbb\xc1\xd6\xcb\x52\x29\xf4\x3b\x72\x97\x73\xad\x38\xab\x88\xea\x99\x5d\x35\x19\xa7\xd8\x8e\xc2\xe1\x8c\x83\x2f\x04\x1a\x35\x92\x95\xf9\x0c\xcd\x46\x87\xa5\x98\xf7\x58\x0a\x0f\xdd\xfe\xb4\x9a\xcb\x9b\x6f\x8e\x95\xf6\xdd\xa9\x40\xd3\x7f\xfa\x96\xcc\x8a\xa7\x55\xad\x06\xe8\x1c\x87\xbd\x77\x0f\xed\x42\xa0\x2c\xd7\x2e\x36\xc1\x2a\xe2\x74\x45\x34\x1c\xb9\xf7\xa2\xf0\x6e\x67\x55\x43\x3d\x34\x59\x6f\x5a\xa9\x7e\x32\xe1\x80\x4f\x90\x40\xa2\xab\x00\xfb\x4e\x3e\xde\xba\x9d\x1c\xdc\xb3\xd0\x7e\xf1\xc5\xc7\xaa\x5b\xbc\x8d\x78\x48\xde\x5e\xeb\xab\xbf\xc6\x59\xfa\x71\x2a\x55\x61\x17\x44\x87\x1a\xd5\x75\xb2\xb1\x92\xff\x8f\x52\x95\xbc\x6d\xc2\xd0\xd4\x0a\xf2\x5c\xf1\x87\x7c\x06\xff\x4b\xe0\x53\xfa\xfb\xe3\xd6\xec\x81\xcd\xd3\x13\xbc\xb6\x03\x2f\xb4\xfb\x64\x05\x7a\x50\xf4\x0f\x6f\xe8\xaa\xe2\x29\x55\xa6\xd9\xd6\x51\xee\xc6\x06\xf5\x7c\x2c\xda\x4f\xac\x7b\xfb\xd3\xb3\xd8\xee\xdc\x89\xa3\x12\xee\xfa\x7b\x1d\xc5\xad\xd8\xcd\xda\x0d\xa8\x24\xdc\x6b\x6a\xce\xf5\xec\xc8\x64\x05\x13\x4b\xbc\xf0\xcc\x71\xc5\xbb\x3b\xae\x62\xb0\x3c\x1c\xd8\x21\x7a\x00\xb8\x65\x0e\x74\xf8\xa4\x01\xb1\xff\x3c\x5a\x9e\xdc\x79\x42\x8d\x06\x09\x1f\x1f\x2b\xd0\x6c\x5e\x46\x05\xd6\x00\xc4\x6d\xb7\xc6\x4a\x95\x7d\x3b\x9a\x5d\xce\xc5\xc3\x45\x66\x17\x14\x40\xe1\xa4\xba\xd6\x91\x59\x03\xaa\x78\xc1\x1b\x4e\x38\x88\xc6\x59\xc5\xcc\xe5\x97\xcb\xa2\xf4\x18\x75\x0e\x55\xe1\x92\xc5\x8f\xa8\x68\x27\x08\x0b\x29\x0d\x0c\xd2\xd8\xee\xa0\x8f\xb3\x46\xae\xd6\x5b\xd4\x0a\x47\xfc\xca\xd8\x31\x59\x03\x54\xce\x29\x1f\xe8\x99\x8e\xcf\xfa\xbb\x71\x9a\x56\xe9\x59\x8f\xea\x4d\xd5\xdf\x0b\x6a\x64\x4a\xbb\x32\x79\x38\xc9\xef\x3e\x54\x9e\xe7\x17\xbf\xfe\x4f\x16\xbe\xfe\xd5\xf9\xdd\x34\x37\xf0\xc7\x57\xa8\x94\x2d\x4d\x19\x65\x77\x87\xba\x29\x4b\x73\x06\xbe\x8d\xff\x53\x3c\x25\x04\xce\x6f\x61\xa6\xb8\x68\xd3\x49\x78\xdf\xa3\x90\x03\xfb\xd6\x4f\xc6\xca\x7c\x80\x0d\x32\x10\x66\xdc\x9a\x48\x8a\xf6\xcd\xb7\xa3\x24\xcc\xac\x71\xa0\x0d\x6d\x0d\xc4\xc7\x2a\x2e\xb4\x39\x5a\x0f\x88\xfe\x37\xb4\x93\xc4\x86\x7b\x39\x2b\x11\xff\x95\xf0\xcd\xe9\xaf\xb6\x12\xce\x57\x53\x92\xe2\x42\x2c\xcf\x29\x52\xa0\xd4\xc5\xce\x6a\x81\x85\xff\x5d\x0d\xd7\x22\x2d\x97\x06\x3b\x3d\x24\x60\xd7\xba\x8f\xd1\x66\x3a\x5e\xd6\xfe\x3e\xad\x5d\x40\x74\xb7\xa0\x4c\x87\xa5\x70\x63\xac\x68\x8f\xd3\x98\xb9\x78\xa4\xaf\x35\xe2\x1f\xc2\xb4\x4c\x0a\xf1\xc7\x43\x31\xf8\xb6\xa6\x1c\xdf\x56\xae\x26\xfd\xa8\x6b\x33\xc0\xec\xf0\xcc\xaf\xd1\x55\xf0\xb1\x2a\x4d\x96\x49\xdf\x44\x19\xef\x5f\xec\xd4\x45\x0f\x5d\x5c\xbb\x14\x81\x2a\x2e\x1d\x37\xe1\x79\x17\x2c\xfb\xf6\xff\xb9\x06\x96\xd3\xc2\x7e\xd2\x89\xb7\x0f\x0f\xf6\x1b\x98\x37\xb9\xe9\x57\x17\x5f\x8d\x56\x17\x0d\x28\xa8\xd6\xd3\x0e\x3e\x4f\xca\xcc\x45\x9a\xf1\xdb\x93\xca\x2a\x96\x3d\x65\xdc\xb4\xdf\x79\x67\x3a\x5d\x91\x51\x5a\x14\x5a\xff\x09\x85\x56\x87\xc1\x77\xb0\x9b\x6b\xae\xb2\x36\x5a\xcb\xcc\x30\xf2\xe6\xd6\x8c\xd1\x0f\x34\x5e\xdf\xef\xe2\x3d\x22\xb3\xab\xea\xde\x59\x55\x82\x3b\xdb\x68\x22\x1b\x9a\xc4\xf4\x22\x93\x28\xd7\xc4\x6b\x81\x86\xf7\x29\x20\x49\xdf\xda\x58\x82\x2b\xb6\x95\xa4\x75\x50\x2c\x26\x1b\x2a\x8e\x45\x16\x2d\x2d\x39\x9c\x61\x0d\x2e\xc1\x27\x4d\x75\x4a\xfb\x8a\xcd\xc2\x88\x2d\xb6\x18\xb7\x1b\xf8\xda\xd6\x45\x85\xb7\xed\x45\x79\x11\x25\x21\xd8\xfe\xb3\x07\x18\x87\x88\x1e\x33\x1f\xbb\xb9\xb9\x6a\xb2\xe1\xb4\x8b\x71\xdf\x78\xa6\xe3\x9d\x4f\xcf\x2b\xdb\xbb\x4d\x65\x22\xf0\xc4\x84\x89\xf3\xfc\x7c\xbb\x97\xa6\x43\x59\x32\x9c\x00\xb5\xab\x40\x1c\x73\x0d\xb7\x2c\x5a\x1a\x14\x8f\x2a\x0b\xbb\xcf\xa0\xe9\xef\x94\x23\x1c\x9c\x66\xfb\xfa\x64\x79\x98\xfa\x7a\x67\xbf\x48\x43\x04\xed\xcb\x1f\x68\xd0\xf9\xdf\xa5\xbd\x99\x86\xd8\xbf\xf8\x52\x47\xa9\x53\x5d\xaa\xa1\xc8\x54\x06\x3f\x22\xe2\x42\xda\xf2\xab\x47\xdd\xa2\xd0\x09\x89\x99\xcc\x4e\xab\x89\xf0\xe1\x58\x37\x9b\x3c\x95\x8c\x1d\x62\x99\x44\xea\x40\x23\x61\x5c\x76\xbb\x0c\x3d\x13\xdb\x55\x7a\x06\x22\x20\xd2\x04\x7c\x4a\xcb\x62\x60\x33\x8c\x42\xac\xbc\x1b\x34\xc6\xf9\x58\xf1\x34\x46\x59\xba\x62\x77\x68\x85\x5a\x0f\x96\x82\x67\xb2\x43\xc8\xea\xed\x42\x51\xd8\xee\x2a\x8d\xd6\x81\x5a\x6a\x56\x6d\xb4\x34\x70\x34\x28\xc7\x86\x71\xa2\xeb\xc7\x6a\xae\xd0\x25\xaf\xf3\xb2\xb7\xd3\x43\xe7\x13\xb5\x26\x9a\xa4\x48\x71\x5b\x8c\x7e\x08\x7c\x89\xb5\x19\x6d\x10\x25\xcb\xca\x08\x0f\xb1\x22\x1f\xaf\xfb\x91\x95\x2f\xaf\xd1\x36\x00\xb8\xd4\xdf\xeb\x78\x0c\xf1\xae\x75\xa5\x74\x03\x43\x0d\x31\x5a\xa0\x51\x82\x79\xcd\xf4\x16\x01\xa1\x57\xcf\x10\xbb\xe9\x71\x5d\x1f\xce\x4c\x04\xda\xa3\xc4\x26\x1a\xfe\x19\xec\xf6\x75\xb2\x7f\x34\xa5\xc9\xee\x47\x54\x7f\x83\x09\x11\x48\xe0\xee\x4d\xa4\xb1\xd5\x1e\xb3\x65\x17\xc6\x76\xbf\x1d\x49\x37\x9f\x74\x1a\xa6\xe1\x4b\x69\xc4\xdc\xe4\x6f\x39\x42\x8c\x66\xc7\x28\xf3\x9b\x5e\xb4\xe2\x8a\xce\xd2\x8c\xaf\x6e\x8b\xdd\xdd\x02\x0f\x3d\x3d\xaa\x12\xdf\xf2\xb9\xfc\x39\xf3\xdc\xdf\xb6\x9b\xbb\x9c\xb3\x1c\xa6\x99\x2a\x64\x9e\x56\xe2\x34\xa7\x1b\xaa\xfc\xed\xd5\x2c\x4d\x96\x7a\xa9\xb0\x4a\x59\x98\x3b\xf0\x68\xff\x4b\x63\x6d\xf0\x41\x6a\x6d\xf2\xc7\xac\x7c\x12\xf8\x56\xe6\xa7\x63\xcd\x1b\x5c\xb2\xd5\x5c\x7a\xd4\x77\x6f\x0f\xc3\x1e\x01\x68\x79\x24\x03\x08\x60\x91\x0b\xb0\x9a\x13\xc3\x9b\x02\x25\x7b\x73\x51\xd9\xda\xbe\x03\xd3\x16\x46\xa5\x21\xab\x03\x5c\x79\x7b\x47\xdb\x46\x34\x6d\x32\xd2\x04\x63\x8d\x00\x20\x16\xb8\x64\x2d\xc2\x41\xbe\x73\xfe\x6d\x3c\x65\xa4\xd1\x0f\x02\xdf\x37\x4e\xd2\xa4\xba\xb5\xd8\xe6\xcc\x48\xc7\xdf\x7f\xa4\xba\xee\x1f\x35\xb5\x5c\x97\x22\xc3\x9d\x66\x69\x13\xfa\xc0\xe0\xc2\x78\x2b\x02\x7c\xe1\x85\xfd\xed\x62\x85\x9e\xb4\xa3\xa3\x68\x58\x8c\x4e\x85\x4d\x94\xed\x6e\x7d\xed\x90\xe3\x25\x55\x0f\x55\xde\x25\x8d\x4b\x56\x6f\x08\x94\x55\xde\x87\x5c\xb8\xc7\xd2\xb6\x09\x98\x2f\x92\x0f\xb8\x7c\x60\x1b\xf9\x3d\xd5\x98\xe3\x29\x2d\xe4\x03\xb7\x3b\xbc\x74\x1d\x97\x86\xe4\xfb\xc6\xc4\xad\xec\xdd\xdb\x1e\x18\x9e\x55\x42\x92\xa1\x59\x25\xf4\x19\xbf\x4e\xe5\x83\x74\x35\x9f\xf1\xbb\xd8\xef\xd1\xab\x47\x34\x7a\x59\x0b\xdf\x5e\xae\x49\x1b\xd7\x72\xa2\xc7\x94\x48\xd5\x73\x33\xbe\x3a\xf3\x01\x5e\x28\x16\xb1\xf3\x81\x87\x1a\xdf\x19\xfb\xc5\x8d\x9a\x64\x9d\x27\x6b\xae\x36\x26\x59\x7b\x86\x36\x22\xb1\xd6\xaa\x3e\x2a\x55\x7a\x48\xf3\x8a\x8e\x6a\xdd\x08\x8e\x9e\x29\xaf\x45\x81\x0f\x87\x76\x77\xaa\x97\x25\xe5\x05\x7a\x12\xf2\x4c\x69\x3c\x73\xc0\x36\xf6\x1e\x9a\x53\xe4\x39\x82\xd4\xea\xf3\xb4\xc8\xa2\xd2\x78\x33\x50\x7d\x2f\x4e\x13\xb1\xbb\x3c\xda\xa9\x31\xe6\xf7\xcd\xf3\x82\xfb\xa4\xd2\x5f\x7a\x05\x2b\x31\xa6\xe2\x03\x4d\xcf\xda\x6c\x84\x90\xf5\xd3\x38\x4e\x57\x5b\xaa\x92\x7b\x44\x31\xe8\x8e\xa8\xb6\x9c\x79\xb9\x34\x19\xe1\x82\x7d\x94\xcf\x6a\x9b\xe2\x7b\x33\x69\x3a\xbb\xd0\x5e\xaa\xf6\xa8\x83\x52\x9f\x00\x4c\x8a\x8f\x55\x65\x6d\xd5\x66\xf6\xf3\xf4\xa0\xf0\xf6\xd1\xab\x10\x02\xb2\xd2\x5e\x61\xf1\x26\xae\xd0\xd2\x43\xc0\xa3\x65\x2b\x40\x51\xb5\xa7\xc7\x86\xa7\x00\x71\x72\x2c\x48\xd7\x02\xb5\xa6\x4f\xaf\x7b\x03\xcb\x3b\x58\x83\x58\x51\x85\x00\xb0\xe8\x0a\x7c\xcc\xef\x1f\xbf\xf8\x08\x2c\x40\xb0\xf5\x5f\xd0\x6d\x11\xae\x81\xb0\xb5\x23\x81\xe8\x70\x2d\x9f\x8c\xbd\x9b\xc8\x7b\x54\xc2\x11\x4c\x32\x0d\x25\xe1\x4c\x2b\x37\xa7\x47\xd7\x49\x39\x4d\x44\xf9\x95\xe6\x63\x54\xad\xd4\xbb\xaa\x47\xe3\x0c\x70\xab\x2b\x10\x7b\x79\xba\x36\x51\x80\xc4\x65\x63\x51\x3d\x51\x53\xd0\xc7\xc3\xe1\x72\x4b\xe0\x09\x58\x1f\x05\xaa\x25\xf9\x36\xc6\x0e\xd7\x14\x1e\x4e\x35\x75\xf9\x03\xfb\x8b\xa9\xe6\xf4\x4d\x25\x22\x6a\x92\x5e\xbb\x75\x68\xc1\x17\xf3\xf6\xee\xe5\x52\xd6\x4d\x7a\x26\x62\xda\xa1\x2a\x41\xb7\x71\x73\x8e\xc9\xf3\xcd\xaf\x73\x90\xfe\x17\x81\xc7\xa8\x5e\xa1\x89\x2b\x20\x3a\x4c\x5c\x54\xbc\x8e\xe9\xd2\xc7\x2d\x88\xd1\x61\xa0\xf2\xa4\x92\x5b\xa3\xf7\xe6\x1e\x8d\x67\x9a\xb1\x60\x22\x62\x0d\x79\x9e\x1c\x79\xac\xab\xfd\xfe\xb6\x76\xf8\x64\xcc\x05\xa6\xcf\xdd\x80\xc4\xbb\x9d\x6d\xab\xeb\xc9\x00\xc8\xc7\x56\x07\x94\xc9\x4a\xb0\x4e\x83\x18\xc9\x42\x0b\x63\xcd\x89\xf2\x7f\x43\x60\xa2\x97\x54\x4d\x43\x17\x9f\x4e\xa2\x92\x87\xc7\xfa\xa6\x0a\x72\xb7\x63\xd2\x70\x9a\x4e\xa5\x12\xa0\x83\xaf\x4e\x4c\xd9\x85\xc5\x85\x36\xa9\xe4\x78\x2b\xd9\x93\x2a\x5b\x3d\xf9\x70\xfd\x8b\x34\x8e\x3c\xf8\x05\xd5\x62\xa4\x3b\x7c\xec\x20\x94\x43\x93\xd8\x72\x45\x11\xb5\x71\x2d\xa7\x95\xe7\xf5\xe9\xe0\x19\x95\xd1\x87\x59\xf5\xcd\x26\x46\x90\x25\x22\x66\x2d\x67\x53\x7c\x47\xe9\x19\x5e\x1c\x4b\x9f\xa6\x17\xe5\x2f\x97\x26\x8e\xfa\x91\x44\x7f\xa8\x38\x43\x2a\x86\x8f\x55\xf4\xbf\x3a\x30\xe1\xf2\x94\x87\xbc\x3c\xa0\xb5\x1a\x0f\xf0\x34\xcd\x61\x0c\xa5\x1d\x6a\x27\xc9\x2c\x94\xb1\x75\x7f\x52\xf3\xfe\x77\x39\xa2\x9b\x82\x4a\x71\xa8\x27\x45\xc6\xad\x33\x6b\xef\xde\xf6\xd0\x64\xcb\xc4\xf6\x20\x4e\xaf\x22\x97\x3d\xcf\x89\xd8\x31\x25\x6b\x79\x47\x39\x17\xdc\x68\x5c\xe3\xf3\x81\xb5\x52\x10\x75\x65\x5e\x45\x0a\x6e\xd2\x93\x8b\xa3\x64\x59\x9e\x1b\xe2\x9f\xdf\xc6\x74\xe4\x13\xbd\xbf\x8f\xcc\x20\x9b\x52\x11\xd7\x49\x45\x3f\x86\x3e\xb4\x64\x32\xfe\x43\xe5\xff\xcb\xd8\x9f\x05\x49\x92\x5d\xe7\x81\x70\x55\x64\x66\x55\x75\x55\x57\x77\x57\xa3\xd1\x02\x45\xe1\x67\x90\x6a\xa9\xb5\xb4\xb5\x51\x26\x93\xfd\x12\xf4\xe0\xa1\xac\x24\x80\x4a\x23\xb2\xcb\xb2\x0a\xd5\x54\xcf\x4b\xdf\x8c\xb8\x11\xe1\x9d\x1e\xee\x01\x77\x8f\xcc\xce\x36\x3d\xe8\x61\x1e\xe6\x41\x26\x9b\x91\xd9\x98\x69\x16\x1b\x23\x25\x6a\x21\x87\x23\xee\x06\x72\x86\x40\x04\x08\x10\x00\x01\x10\xbd\xa3\xf7\xee\xda\xf7\xac\x7d\x5f\xb2\xc6\xfc\x7c\xe7\xdc\x7b\x3c\xdd\x8b\x36\x6f\xee\x55\x19\x11\xbe\xdc\x7b\xd6\xef\x7c\x5f\x66\xd3\x8c\x26\x44\xdd\x3e\x76\xee\xfe\x26\x59\x07\xc1\x74\xd2\x4a\x74\xde\x43\x71\xd0\x14\x46\x40\xc0\x9e\x6a\x07\xe2\x5d\xc1\x95\xdf\xa9\xd4\xf3\x0f\xcd\x36\x63\x93\xa6\xc9\x6a\xc3\x27\xfd\x3f\xa3\x77\x26\xe0\x9a\x1a\x1a\xb7\x6c\x14\xb2\xec\x27\x8c\xeb\x3b\x0a\xb2\xc0\xbd\x38\x11\xa9\xa8\x61\x3d\x69\xa7\xc6\xcd\x44\x38\x6e\xe6\x05\xd1\x91\x39\x5f\xf3\xca\x9a\xaf\x98\xf6\x37\x46\xd2\x5e\x04\xa8\xf8\x5f\x61\xd5\xf0\x89\xc2\xaa\x65\xb6\xed\x66\x58\x10\x29\x9f\x54\x00\x86\x93\xaa\xc8\x82\xd2\x60\x87\x54\xb6\x31\x74\x78\x86\x22\x26\x01\x30\x92\x91\xe0\xff\x18\xfb\x82\xdf\x1f\x93\x97\x45\x0e\x73\xd6\x55\x9c\x3a\xa3\x9c\x39\xd7\x5f\xd2\xda\x2a\x92\x22\x95\xb1\x6c\x0d\x27\x35\x76\x51\x0f\x1a\xa5\x61\x6e\xc2\x98\xc9\xcc\xf0\xff\x0f\x02\x45\x4a\xc2\xe5\x40\xc9\xee\x55\xf9\xfc\x70\xb9\xe4\xac\xaa\x4a\xb7\xf5\xb8\xdd\x35\xe5\xdd\xfe\x90\x9e\x8a\x9b\xe9\x5c\x9c\x95\xf9\x69\x05\x87\x25\x5e\xaa\x6c\x7b\xb1\xb2\x60\x20\x1e\x04\x25\x76\xd6\x62\x65\x71\x8a\x51\x92\x38\x2d\xbe\x19\xdd\x1c\x9e\xe9\x74\xd3\xc7\xf3\xf3\x5c\x2b\xfa\xa0\x8e\xe4\x82\x98\x3c\x79\x97\x89\x92\x99\x4f\xd4\xaa\x74\xa5\x7f\xaf\xd9\xb1\x51\xb8\xc2\x5c\x32\x58\xfc\xc7\x7c\xdf\xff\x9f\x7b\xd5\x2f\x1e\x2e\xe3\xef\x76\x73\xd4\xbe\xd4\xaa\x91\xef\x69\x2e\xa3\xc6\x2a\xd9\xdd\xef\x92\x5d\xa5\x86\x62\xbf\x41\xcc\x78\x0d\x47\xb6\xf5\xa9\x22\x7e\xf9\x54\xd1\x6b\x84\x71\x16\x76\x2c\x4d\x20\x02\xfb\x0e\xc8\x1e\xeb\x11\x28\x4d\x25\x68\xa1\xc3\x08\x5c\x55\xc3\x27\x5c\x2a\x64\x19\x62\x65\x39\x56\x4d\x14\x65\xd3\xc5\x1f\xba\xa1\x89\xfd\xfe\x84\x5e\x91\x52\x3a\x98\x93\x13\x75\xbb\x0b\x7b\xbf\x0a\x30\x42\xad\xba\x5e\x9d\x05\x4d\x56\x7d\x9c\x83\x1d\x78\x4b\xe1\xfd\x6f\xd5\x7e\x66\x25\x09\xdb\x42\xfc\xc6\x63\xa5\x58\xc1\x32\x63\x5a\xcb\x46\x9c\x0c\x47\x91\x80\x97\x99\x54\x4f\xd1\x8b\x96\xf9\xa0\xd6\x84\x4b\x11\x90\x24\x44\xc3\x7c\x5c\xc1\xc8\x89\x9f\xce\x4d\xbc\xcc\x86\xc5\x31\x92\xee\x9d\x73\x8c\xa4\x8e\x5d\x26\x8c\x2d\xa3\x87\x50\x51\x5a\x07\x31\x3e\x9f\xd4\x41\xf0\x62\xbb\x9a\x45\x36\xcf\x6d\x3a\xe3\x47\xd0\x31\x54\x8c\xdd\xb8\x03\x13\xb3\xa2\x0b\x58\xac\x0d\x37\x6b\x51\x98\x1e\x61\x2d\xd4\x16\x62\x14\x8a\xfe\x81\x96\x56\x97\x65\xfa\xb8\xc3\x3b\xad\x98\x28\xb4\xa9\xe2\x9d\xbe\xa8\xf5\xfa\x2f\x3e\x54\x8a\x37\xe9\x76\x43\x56\x22\x93\xa1\x08\x5a\x1a\x32\x2e\x21\xd3\xf8\xed\x0e\x88\xd6\x1c\xa9\xa9\x8b\x55\x00\x11\x2b\x11\x2b\x92\x25\xda\xf3\x8b\x2d\x25\x68\xfb\xf8\xa4\x3c\xa8\x58\xad\x65\x34\x3b\x24\x8f\xee\x6a\x55\xc8\x2b\xef\x29\xa6\x94\x7b\x45\x3c\x2d\x33\x7f\x36\x57\xc0\x68\x96\xa7\x90\x39\xd4\x86\x23\xf5\xbf\xa9\x19\xfe\x6f\xba\x72\xf5\x70\x14\x2f\xd3\x3d\xb3\x30\x8d\xea\xfa\xde\x54\x58\xd4\x30\xce\x49\x4a\x27\xb7\x8d\x62\x8d\x20\x7a\xbe\xaf\xe0\x42\xf7\xc7\xbb\x35\x35\x7b\xfc\x0b\x0d\x97\xea\xde\xc0\xee\x93\x6c\xa4\x78\x76\x58\xc3\xd7\x02\x35\x04\x33\x83\xac\x0d\x60\xd2\xe3\xc8\x26\x59\xcf\x1a\x79\x33\xb2\xf9\x3d\x24\xe7\x81\x8a\xc7\x89\xa0\xf1\xec\xb3\x4e\xfc\x80\x22\x5e\x84\xff\x1f\x13\x43\xb0\x9b\xd8\xfd\xfa\x57\x19\x77\x76\x52\xcf\xf3\x3d\xd2\x2a\xb2\x10\x57\xa9\x72\x40\xd6\x9d\xad\xc6\xaf\x1e\xe0\x78\xf2\x2f\xc7\x5e\x43\xf3\x2c\x54\x11\xe0\x42\x8e\x8d\x95\x70\xfd\x45\xe4\x0a\x48\xe6\x76\x4d\x8a\x90\xc5\x55\x84\x37\x4d\xca\xbd\xe4\xea\x7a\x3e\x69\x3f\xc1\x09\x05\x42\xf7\x0d\x2d\xcd\xfe\xe7\x04\xb6\x46\x01\xf1\xc7\x8a\x60\x6d\x0a\x09\x49\x69\x08\x0e\xee\x7a\x8a\x30\xdc\x80\x6d\xfd\x7a\xe0\xd6\xac\x59\x82\xf9\x91\x66\xae\x4f\x15\x2e\x28\xe4\x5c\x6e\x96\xed\x6e\x1f\xe2\x7f\x18\xa8\xf1\x41\xbc\x38\x98\xc6\x1b\xf0\xac\x3c\x8a\x84\x95\x8e\x30\x4b\x7a\x0c\x4e\x61\xff\x45\x47\xf2\xb2\xae\x86\x8c\x79\xe2\x09\x0e\x74\x07\x5a\x87\x70\x8e\xdb\x5b\x9e\x90\xf5\x34\x36\x2e\x9e\xd8\x4d\xca\x55\x37\xde\xa8\xb4\xe2\x68\x02\x34\x35\x71\x0f\xcc\x8d\xae\x43\xed\xef\x50\x01\x33\x56\xc3\x21\xb0\xc8\x3c\x14\x4e\xbe\x1b\x36\x04\xc5\x01\x57\xab\xde\x27\xc4\x06\x0f\x2a\x36\x7d\x7e\xbe\xd9\x4d\x12\x2f\xdc\xc2\x2a\x87\x25\xc5\x43\xef\x63\x86\x36\xda\xe6\x07\x14\x76\x52\x7d\x47\x90\xd0\xaa\xe1\xcd\xc2\x4f\xc8\xfe\xce\x07\x4a\xac\x9f\x9b\xea\x62\x7c\x6b\xa4\xc5\xda\x3c\xe6\xe2\x98\x3f\xd1\x5d\x16\x06\xc4\xdd\x6e\x15\x64\x79\x9a\x70\x11\x5d\xe3\xb8\x14\xc4\x4e\xb4\x9f\x1f\x54\x3a\x28\x73\x07\x9b\xc6\xa6\xc9\x52\xd8\x66\x24\x98\x5e\x4b\x58\x7c\xd7\x55\x7f\xf5\x7d\x35\x5c\xdd\x35\x69\xde\xb7\xe9\x36\x2f\x8b\x0f\x2d\x5e\x78\xea\xcb\xa8\x56\xc0\xe8\xfc\x00\x8b\x19\xf6\xeb\x7e\xe0\x27\xe6\x18\xfc\x08\x97\x79\xa7\xee\xea\x86\x69\x32\x18\xe6\x1c\xff\xc2\xda\x9c\xd7\xa6\xe7\xbc\xdb\x0e\xdd\x24\x9d\x2e\x5e\x30\x5d\xf4\xe7\xf7\xb4\xd4\xf4\xc9\xcc\xc4\x7b\x29\xe8\x96\x8a\xc6\xf3\xe3\x2a\xce\x36\x19\xe8\x2d\x5f\x72\xa5\x6a\x9f\x2d\xae\xbb\x31\x9e\xa1\x4d\x57\x4c\x16\xae\x60\x2a\x1e\x6b\xfa\x12\x2c\x9b\x84\xc0\xbe\x37\xfd\xef\xbd\x0b\xeb\x9b\x38\x26\xd6\x61\x9f\xa6\x9d\x53\x69\x5a\x95\xcb\x9d\xa4\xbc\x93\x38\x4f\x13\xcc\xa7\xa2\xe8\x72\x7a\xac\xf8\x97\x4f\x97\xd0\x55\xa3\x34\x41\xb3\x1d\x65\xf7\xc3\x4a\x79\xe2\xb0\x82\x4f\xb5\x6d\x5a\x84\xe5\x11\x03\xf0\xf1\x92\x1f\xa8\x17\xfe\xa0\x06\x39\x76\x80\xa4\x3a\xed\x8a\xe8\x85\x38\x49\xff\xc2\x14\xe0\x4d\xdc\x08\xbc\x3c\xff\xa7\xbe\xa7\x97\x0c\x06\x89\xe8\x44\x09\xa6\x59\x6b\x19\x8c\x75\xfb\xe7\x7e\x65\x09\xec\x5b\x68\x0e\x6c\x9c\xad\x5a\x93\x36\xbc\xca\x15\x40\x48\x32\x9a\xe9\x9e\x71\x12\x45\xa6\x27\x41\x19\xb3\x44\x6a\xe6\x8e\x33\x5e\x8a\x71\x60\xa2\x88\x32\x25\xa5\x7d\x28\x48\xe1\x8f\xc9\x29\xb3\x0e\x62\xcb\x87\xa2\x00\xe3\x49\x06\xe5\x07\x10\x69\xd0\xbd\x70\x23\xf8\xaf\x13\xf8\x2e\x78\xc0\x5b\x14\xb1\x4a\xbe\x50\xf7\x8e\x97\xd2\x24\x2e\x22\x49\x7a\x0e\x1b\x20\x23\xda\x38\xae\x28\x3f\x46\x71\x37\x49\xf3\x51\x6c\x78\xc0\xc4\x69\xb1\xaa\x96\xc1\xc3\xca\x36\x59\xdb\xc6\x26\x0d\x93\x19\x5f\xf4\xdd\xda\x2a\xcb\x6d\x3a\x51\x4e\x38\x03\xa4\xdf\xef\xe1\x1e\x84\x9b\xa7\x3a\x1b\xd1\x5c\xb5\x61\xda\x29\x1b\xe7\xc5\x59\x67\x3e\xea\x74\xe9\x33\x2b\xb8\x15\x6c\x14\x8c\xf0\x2a\xc8\xda\x9c\xe3\x32\x92\xd7\x94\xa7\xa1\xa4\xd6\x52\xf5\x6b\x38\xf1\x8f\x63\x6a\xd4\x8f\xe6\x21\x3a\x22\x62\x06\xff\x0f\x5c\x39\x1f\x57\x16\x96\x1b\x45\x17\xe8\x32\x82\x83\x07\xb4\x27\xf9\xd8\x4f\x89\xe7\xd6\x0c\x66\x7c\xff\x75\x27\xb9\x15\x58\x3d\x06\xf1\x39\x61\xd3\x62\x7b\x20\x28\x7c\x1f\x6b\x4f\xba\x14\x8f\xab\x0e\xc5\x68\x18\xc1\x80\xe0\xf6\xe1\x40\xb0\xa9\xa7\xd1\xb2\x41\x25\xf5\x44\x8d\x04\x13\x2b\x87\x48\x57\x12\xde\x1b\xa9\x30\x17\x0a\xc7\x3a\x15\xae\x8e\x38\x3a\x81\x61\x89\x45\xb9\xc5\xaa\x80\xfd\xf7\xea\xbb\x09\x51\xb2\x5a\x44\xe1\x5f\x7e\xd1\xbd\x29\x7a\x74\x42\x47\xe5\xdf\x47\x11\xea\xda\x74\x45\x2f\xd8\xb7\x69\x81\xf0\xb1\xf2\xde\x83\x51\x96\x4f\x79\x22\xe2\x6d\x2d\x6f\xab\xef\x11\x10\xf4\xd2\x43\x11\xcc\x36\xcb\xad\xa5\x5c\x11\xd1\x1f\x56\xb3\xb4\xe7\xfc\x92\x3f\xa1\x19\xbe\xa6\x14\x68\x71\x14\x75\xb6\x29\x78\xcf\x0c\x8d\x60\xc2\x67\xfc\x2d\xba\x0e\xc4\xa4\xf7\xc7\xaa\x83\x79\x86\x62\x4f\x19\x13\x29\x36\xa1\xe0\x37\x37\x97\x96\xf6\x2d\x34\x5f\x31\xf1\xf3\x8d\xad\xcf\x94\x35\xaf\xf9\xc4\xbb\x94\x34\x69\x03\xcc\xdb\x50\x8a\x20\x0d\x47\xdc\xbd\xae\xca\x98\xcb\xb1\xdb\x45\xc2\xc2\xd8\x70\xf0\xce\xb7\xe9\x72\xe0\xf8\xaf\x2a\xc0\xf2\x2b\x49\x3f\x8e\x43\xdb\x50\x21\xd9\xef\x8f\x15\xf9\xd6\xef\x57\x84\x36\xe7\xe7\x9b\xa9\xed\x84\x59\x9e\x86\x4b\xa3\x3c\x4c\xe2\x30\x1b\x34\x1a\x4a\xe3\x45\xe9\xc6\x5e\x1c\x3f\xbd\x59\xdf\x6f\x91\xb2\xdd\x87\xca\x8a\x95\x59\x1e\x43\x13\x85\xaf\xd9\x0e\xc9\x03\x23\xc4\x66\x9c\x8f\xf0\x76\xd2\x32\x67\xde\x36\xc5\xfa\x82\x20\x05\xb1\x15\xef\x3b\x6c\xc2\x7f\xad\x70\x95\xdd\x30\x8a\x2c\xc6\xdb\x58\xa7\x44\xb7\x70\x03\x65\xe5\x6e\x2a\xc0\x5e\x6c\xb3\xc7\x34\x6f\x0f\x65\x0c\x12\x7d\x34\x9c\x60\x26\x74\xe2\x68\xa7\xfe\xd3\x5f\x9a\xf8\x2b\x9b\x9e\x28\x16\xfa\x7f\xc0\x74\x51\x00\xb3\xfd\x22\x29\xc0\x49\x71\x5f\x01\x81\x2e\x6a\x29\xde\xa7\x11\xbd\xe0\xcf\x58\xec\x15\xb1\xf8\x06\xe6\xae\x1c\x1d\xb2\x9b\x60\xbd\x5f\x63\xa4\x17\x0a\x5b\x11\x2b\x74\x01\xca\x5a\xc2\x07\x56\x07\x50\xb2\x44\x99\x5c\x7c\xad\x1b\xe6\xf3\x83\x7d\x81\x16\x34\x31\x43\x91\xb5\x76\xd4\x65\x4e\x57\xf8\x18\x02\x3e\xd8\xb0\xdb\x81\x4f\x39\x63\xdb\x4b\xf2\xd0\x38\xa2\x47\x27\xe6\xee\xde\xcf\x19\x07\x75\x5c\x32\xed\xe5\x28\xe9\xe9\x71\xb8\x7b\x6a\x1c\xee\x5e\x1d\x4b\x79\x3e\x4a\x97\xc2\x18\x4c\x7f\x88\xcd\xee\x28\x6d\x42\xd0\x99\x09\xf8\xb6\x9a\x01\x2c\x36\x3b\xb6\x97\x5a\x9e\xc0\x13\x76\x40\x8f\x61\x3a\x5e\x43\x5d\xd9\xcc\x53\x6b\xb2\x51\xba\x96\xc1\x8d\x70\xac\xcf\x61\x8d\x44\xfe\x4f\xb8\xf9\xb8\x8e\xb5\x83\x4d\xb3\xe5\x8d\x89\x07\x64\x34\x5a\x4a\x29\x79\xd4\x09\x8b\x1c\xc0\x30\xdd\xab\xa8\x3f\xf9\xa2\xe7\x39\xd5\x63\xed\x86\xa9\x6d\x50\xba\x5d\x4b\x78\xac\xe6\x01\xdb\x96\x09\xbf\x1d\x1f\x90\xab\x30\x9e\xc2\x8e\x10\x2d\x56\xdc\x84\xa8\x6a\xd4\xb4\x32\xba\x26\xce\x4d\x16\xbe\x06\x94\x35\x3c\xdd\x2d\xec\x45\x3e\x51\xc2\x32\xa3\xd4\xe6\xfd\xd4\x34\x54\xa1\x17\x4f\x97\x8f\x95\xc5\xea\x27\xb6\xdd\xe7\x02\x15\xd2\x86\xcf\x34\xb6\xe3\xb3\xba\x86\xe5\x30\xc9\xf2\x91\x6f\x3b\xd5\x69\x40\xd4\x70\x54\x75\xec\x20\x69\xa7\xa6\x0d\x32\x7c\x9e\x5a\xa5\x0f\xc9\x04\xab\x54\x55\x52\x42\xb7\x15\xab\x56\x88\x0e\x8b\x4f\x48\x8d\xb0\x21\xdc\xce\xab\xbf\xa8\x26\xfd\xbe\x30\x79\x5c\x93\x7c\xe5\x16\x9d\x22\xe9\x3d\x2b\x71\xa2\x8f\x55\x6a\xd5\xee\x87\x6d\xd3\x4b\x76\x14\xdb\x10\x30\x85\x9b\x9a\xc5\xf6\x8a\x6e\x42\xfe\x29\xbf\x24\xa7\x47\xec\x2a\xfe\x08\x57\x51\xc3\x3e\xa6\x09\x7f\xe9\x5a\xf1\xef\x9f\xd5\x65\xde\xf6\xd5\xbe\x89\x64\x87\x72\x93\x1e\xf1\x99\x74\xec\x6b\xd0\x67\x91\xcd\x38\xca\x97\x5e\x09\x99\x00\x74\x07\x39\x41\xc2\x15\xff\x2f\x6a\x8e\x25\xb6\xab\xd9\xd0\x0c\x6d\x3a\x43\x2b\x17\x96\x89\x29\x2a\x19\xe9\x81\x0a\x0d\xff\x8f\x92\x47\xdb\x85\x41\x6f\x69\x3f\xd6\x54\x2c\x3b\x61\xd6\xb7\x2b\xd6\xdd\x8a\x90\x8a\xfa\x6a\xd8\xb1\x5a\xbd\x42\x14\xb7\x1b\x7e\x88\x04\x2c\x59\x7c\xec\xec\x13\xd1\x51\x4a\x46\xe7\xda\xb8\x2a\xa5\x90\xe8\xd1\xb4\x47\xac\xc7\x05\xeb\x88\xbf\xe2\x63\xe5\x75\xbe\xbc\x6f\xb6\xa1\xb2\xf5\x32\x23\xf6\x26\x25\xe4\x2f\x35\x0f\xfc\xcb\xaf\xcd\x28\x99\x9f\xf3\xea\xa7\x3f\xc2\xdb\x72\xf0\x98\xaf\x09\x76\x1e\x2c\x16\xcc\xcd\xaa\x28\xe3\x5f\x31\xed\x64\x29\xb3\x71\x43\x81\xc7\x4f\xa9\x31\xa4\x53\x0e\xe2\xd9\x1e\xa5\x56\xd1\x72\x5d\x50\x53\x41\x17\xc6\x9f\xf7\x9c\x65\x64\x13\x99\x03\xc1\xdb\x2e\x0c\x6c\xa3\x02\x72\x63\xac\x46\x76\x8f\x2b\xbd\x8e\x9e\x89\x7b\x0d\xdf\x41\x00\xcf\x80\x8c\xe9\xf9\xd0\xa1\x6f\xa3\xb0\x9d\x0c\xc1\x45\x5a\x5c\x36\x6b\xa2\x94\xf4\x51\x1e\x55\xf9\xf1\x73\xbf\x44\x8b\x50\x38\xf0\x01\x26\x10\xad\x60\xf2\xaa\xe8\x3d\x1f\xd1\x62\x38\xff\x23\x6d\x72\xe4\x7f\xc7\xb0\x14\x99\x1d\x87\xca\xb0\x88\x0f\xfe\x00\xa5\x33\xc0\xf1\xb9\xdf\x00\x1b\x71\x03\x5b\x1c\x06\xee\x87\x63\x45\x28\xf6\x29\xf0\x0b\xa8\xa9\x1d\x57\x5c\x65\x3f\x1e\x7b\x16\xa0\xef\x33\x3a\x05\x0d\xd6\xb7\x50\xa3\x47\x7c\xca\xac\x4e\xe8\xf6\x5c\x21\xf0\x01\x02\xc2\xa3\x40\x25\xa0\xce\xf5\x2d\x60\x59\x11\x96\x7c\x3a\xde\xfa\x8c\x6f\xe6\xed\x77\xd2\xd0\x6f\x50\xe6\xce\xea\x99\x24\x6e\x2a\xaa\x2b\x54\x02\x15\x6b\x47\x0f\x59\xe3\xa9\x60\xfa\x6e\x28\xd0\xf3\x3a\xad\x35\xc7\xf3\xf3\xec\xb3\x8e\x1f\xb4\xc8\xdd\xb1\xe7\xbe\x49\x05\x18\x51\xce\x6c\xfc\xca\xaf\xf1\xcb\xba\x4f\x10\x10\x7c\xe7\x61\x35\xea\x9e\xe5\xa3\x01\xd3\xb1\x14\x17\xe0\xf8\xec\x5c\xa9\xe9\xa2\xe2\x02\x7a\xfe\xf9\xe7\x9f\xf0\xf8\xc4\x1f\x68\x32\xaf\x29\x2a\x32\x23\x67\x7b\x5f\x71\x48\x36\xa8\x38\x84\x75\xb0\xbd\xe5\x55\x28\x27\x78\x5b\xf0\x9f\x57\x61\x92\x14\xcb\xd2\x4b\x3e\x6b\x3e\x24\xad\xd4\xbf\x08\xd4\x6c\xce\xd4\xa4\xb8\x7f\xe1\xe4\xa1\x27\xc9\x27\x63\x2d\x52\x7b\x16\xcb\x45\x28\xbd\xe8\x1e\x11\x05\xef\x6c\xd5\xb0\x35\xf4\xac\x5d\xce\xa8\xf4\x28\x20\x04\x7c\x19\xdc\xcd\x86\x52\xa0\x39\x81\xab\x14\x3f\x4b\x5f\x8c\xd5\xb6\xb5\xa5\x06\x50\xaa\xb8\xb1\xfd\x2f\x1c\x00\x00\x3d\x9b\xd6\x5a\x06\x97\xf1\x15\xa8\x55\xdf\x51\x5a\x42\x1f\x6b\xfe\xf9\x6f\xe9\x92\xda\x30\x4c\xc3\xbc\xa1\x56\xe0\x05\xf8\x01\x89\xdf\x6b\x86\x29\xe2\xc4\xc5\x86\x32\x72\xe5\x13\xdb\xb3\x0a\x28\x68\x7b\x49\x49\xeb\x49\xa9\x29\x29\xc9\x82\xd1\x20\xcc\x93\x41\x32\xd5\xf8\x55\x25\x58\xe7\xb9\xe7\xc7\x4a\x2b\xe7\x76\xc5\x85\xcc\xcf\x37\xbb\xa9\x19\x75\x7c\xcb\x8e\xf9\x17\x95\xd1\xfb\xb0\x8e\x92\xa4\x1d\x8d\xd0\x73\xaa\xd3\x28\xf0\xb9\x9c\x7d\x35\x4f\x0d\x4d\x90\x89\x64\x0b\x5d\x8e\x58\x53\x35\x7c\xc9\x9a\x45\xd2\xe9\xa6\x15\x23\x1c\xe9\xde\xe8\xc6\x36\xec\xf5\x97\x92\xb4\x9f\x24\xc0\xac\xc0\xd0\xff\x48\x93\x78\xfc\x08\x3c\x17\x5c\x86\x88\xb3\x3c\xcc\x29\xbf\x33\xd1\xb4\x6f\xe0\x9e\xc3\x32\xe4\x76\x49\xe0\xa1\x07\x48\xbf\x80\x15\xf8\xcf\xc8\xe1\x65\xc4\xe9\xd5\x29\x7a\xb5\x70\xfe\xe7\x94\xcd\xfe\x74\xec\xf9\x9f\xaf\x2b\x51\x9e\x68\x2d\x6e\xf7\x29\xf1\xd7\x55\x37\x2e\x05\x8f\x55\x2c\xbd\xa5\x25\xb1\xeb\xaa\xed\xf4\xca\x34\xb9\x37\xf1\x2c\xf8\x64\xfc\x48\x48\xea\xfd\xff\xa8\x69\xbf\x48\x06\xdd\x69\x8b\xfa\x29\x82\x2b\x01\x19\x51\x61\x72\x2a\x6c\x11\x64\xab\x9f\x98\x14\xf6\x07\x38\xc0\xb3\x4a\x59\x6f\x5b\xcb\xeb\xe7\x3d\xd6\x22\x0f\xa0\xf9\xc4\x50\xf3\x03\x9f\x25\xcc\xf4\x35\x24\xc7\xa2\x96\x58\xb8\x09\x34\x10\x9e\x24\x89\x72\x58\xc4\x46\xab\x30\xc0\x1b\x97\xc6\x24\xa3\x26\xba\xb7\x8a\x92\xa0\x41\x88\x53\x94\x2c\x6e\x52\xa5\x0c\x65\x86\x2d\x34\xbc\x8c\x00\xfd\x32\xac\x12\x5a\x02\x0c\x7b\x73\x53\x4b\xc5\xdb\x70\x56\xf6\x57\x0f\xb8\x69\x18\x85\xe4\x39\xab\x02\xc9\x0f\xfe\x01\x77\x79\xf0\x64\x7e\x6e\x02\xff\x28\x10\x08\xda\xc4\xf8\xee\x07\x84\x55\xc3\xbc\xc9\xb9\xf1\x2e\xb7\x9c\x7b\xcf\xe3\xcd\x20\x3d\x3b\x8a\x37\xc3\x27\x3a\xb8\x35\x59\x18\xf7\xb4\x68\xe6\xcd\xc0\xc3\x66\x6f\x2a\x40\x7a\x18\xaf\x24\xd1\x8a\xed\xec\x68\x38\x29\xad\xc3\x81\x1a\x6d\x7d\x3d\x50\x90\xd2\x8b\xa5\x4e\x6a\xf1\x8c\x04\x68\xac\x82\x03\xee\xdd\x61\xf7\x5f\x66\xd3\xc9\xce\x7d\xbc\xd3\x45\x20\xff\xfc\x69\xbf\x7b\x3e\xa4\xe5\x2b\x54\xff\xca\x05\x1d\x43\xdd\xcf\x3d\xa0\xe2\x4d\xc0\xb0\xdd\xd2\x4d\xc1\xdb\x84\xc1\x71\x3e\xb4\x58\x95\xc2\x34\xef\x7d\xdf\x3a\x3d\x52\x27\xc7\x50\x2c\x50\xf4\x07\xb9\xcd\x8d\xfa\xf1\x75\xad\x71\xc1\x8c\x29\xf0\x67\x37\xe0\x5f\xa4\x40\x45\x37\x09\x4f\xfd\x16\x3d\x0a\xd6\x8f\xe7\x68\x02\xc9\xf0\x5d\xda\xd7\x70\x49\x8f\x4e\xbc\x1e\xd3\x96\x89\x6e\x8f\x16\xfb\x03\xbf\x71\xba\x56\x90\xa7\x6f\x53\x8c\x0a\xc3\x17\x1c\xa6\x9b\x42\x7d\xf7\x1c\xbd\x56\xe0\xd3\xdf\x55\x25\x99\xd4\x46\x54\xca\x3e\x34\xcb\x17\xcc\xcd\x46\x3e\xa9\xa0\x62\x16\x67\x9b\x51\x98\xe5\x96\x86\xaf\x3d\x19\x91\x62\xd6\xfa\x2f\x3a\x7c\x0a\x4a\xaa\x20\x6a\x24\x25\x32\x59\xbf\xe1\x11\xf0\xe7\x15\x06\xf9\xfc\x78\x97\x2f\x25\xc7\xdb\xf4\xa0\x7e\x09\xd3\x51\xdc\x10\xca\x0a\x3c\x83\x00\x73\x81\x4c\x10\xfe\xe5\xbb\x2a\x9b\xbe\x5c\x43\x2a\x54\xc4\xad\x43\x6e\x51\xc8\xe0\x44\x71\x51\x32\x37\xa1\x27\x85\xec\x68\x30\x8d\x6d\xc8\xbf\x13\x78\xc0\xc6\xb6\x89\x47\x81\x95\xa4\xef\xb6\xb5\x4a\x33\x44\x60\x44\xfb\x0a\xdb\x29\x54\xbf\xf8\xb8\xa6\x1d\x71\xa0\x69\xa2\x28\x59\x95\xb1\x4d\x58\x3d\x4c\x81\xc8\xc9\xf8\x73\x1e\xbf\x31\x8a\x3b\x36\x5b\x32\x8c\x36\x70\xfc\x3a\xee\x65\x5c\x54\xd9\xcd\xde\x7d\x2f\x34\x7c\xff\xf6\x0a\x2e\x99\x4f\x6a\xd2\xb0\xfd\xe0\x98\xe2\xd8\x9e\xe7\x90\x02\x3f\x1d\x74\x5e\xd1\xd2\x76\x8a\x2c\x2f\x19\xb2\x36\x00\xe2\xe3\xdf\xd6\x04\x9f\xbf\xad\x00\x75\xab\x7d\x93\xd2\x64\x95\xab\x24\x9d\x54\x23\x7c\x27\x55\x53\xa1\x67\x10\x78\x62\xdd\x61\x45\x81\x89\x1c\x6b\xe0\x8f\x94\xc7\x3a\x0d\x1f\xe3\x27\x2b\xc5\x84\x75\x93\x76\x92\x0e\xe9\xd7\x4a\x53\x76\x7c\xa2\x4a\x6a\x2b\x36\x4f\x2c\x18\xbc\xb9\xf8\x4f\xb7\x2b\x8d\x00\xff\x24\x7b\xe9\xda\x8e\xe2\x7f\xc0\x3c\xf0\x4b\x2d\x55\xad\xda\x32\x51\x0a\x78\xb4\x12\x81\x1a\xb8\x83\xcb\x13\x3d\x42\xb2\x5c\x0a\x46\xe5\x59\x00\xe9\x56\x51\xa0\x5e\x57\x7a\x5a\xed\xd4\x1a\x1e\x0d\x70\x5d\x4e\x37\x26\x7c\xb1\x8e\x56\x81\xd4\xf3\xe3\x29\x8f\xcd\xc7\xc8\xaa\xea\xfb\xca\xb6\xd2\x44\x34\x03\x1b\x67\x79\x3a\x32\x51\xa3\x34\xe2\xa3\x60\xe3\x9a\x05\x6b\x39\x4e\x56\xa3\x22\x26\xd0\x3a\x4f\xc0\x49\xf1\xb1\xca\x71\x4d\x5e\xc4\x3a\x1d\x3d\x1a\x7a\x56\x8d\x86\x6a\x5c\x52\x3b\x19\xc5\xed\x30\xda\x41\x0f\xc3\x31\xc9\xbb\x49\xaf\x0d\x5c\xbd\x1b\x2f\x3d\x24\xd9\xd6\x89\x92\xb8\x9f\x82\x90\xfd\x0e\x8c\x12\xe2\x99\x1f\x06\x8a\x01\xfd\x87\x75\xf0\xdc\x67\x9a\x1d\x7a\xde\x3e\x84\x3c\xa5\x42\xc8\x53\x95\x7d\xfb\xe2\xdc\xc1\xe6\xb0\xbf\x96\x85\x6d\x24\xdb\x22\x16\x43\xd7\x2f\xeb\x47\x11\x26\x5c\x72\x43\xc9\x36\xce\x6d\x3a\x4c\xc3\x4c\xb0\x9e\x2c\x5e\xcb\xae\x91\x91\xfa\x70\x7b\x4c\x98\xa2\xc7\xbc\x4e\x56\xa2\xdf\xbd\x7b\x9b\x36\x1b\x42\x4c\xcc\x71\x09\xa8\x21\xa8\xca\x52\x79\x11\xaa\x7b\x2c\xba\x27\xef\x58\xbf\x70\xb5\x0c\x3b\xa9\xe9\x02\x12\x81\xf7\x0b\xae\x57\x3e\xae\x53\xfa\xcd\x86\x36\xce\x67\x7c\x56\x76\x6d\x0f\x55\x20\x44\xcc\x80\xde\x0a\x4c\xc4\x1d\x35\xc9\xf8\x43\x95\xd2\x6e\x99\x3c\x8c\xa7\x20\x1b\x84\x9e\x25\x54\x64\xf8\xe8\x5e\x45\x9f\xaf\x26\xbf\xe9\x86\xaf\x72\x3b\x02\x0e\xfe\xa6\x02\x50\xdf\xc0\x56\xe4\x25\xe3\xe4\x30\xa3\x70\xc9\xa6\x44\x47\x84\x97\x82\x74\xf6\xc7\x81\xca\x6d\x7f\xac\x95\xcf\x48\xc7\x65\x86\x5e\x99\x10\x0e\x34\xdc\xc4\x22\xd0\x17\xc8\x50\xbf\x8b\x37\x23\x49\x8a\x96\x9b\x7c\xfd\xa1\xec\x0c\x20\x55\x65\xb3\xcc\x22\xb3\xb8\x14\x51\x9c\xad\x31\x06\x4b\x49\xda\xb1\x4c\xcd\x29\x7c\xd9\x1e\x10\x7e\x42\x15\x7e\xf3\x34\x1c\x46\x0c\xf7\x50\x23\x4f\x52\x42\x79\x55\xd9\x4b\xcc\x0d\x50\xda\x02\x18\x3f\xd7\x53\x51\xc5\xf9\x2b\xd5\xa7\x79\x33\x50\x90\xfc\xcf\xc6\x7e\xaa\xde\xda\x22\x05\x71\x25\x45\xd6\x39\xd7\xb0\x5f\xd4\x61\xb6\x55\x52\xf1\x43\xb3\x5f\x69\xf6\x93\x01\x44\x2a\xe8\x36\x16\xf7\xb4\xbc\x4b\x79\x8c\xf2\x01\x94\x9a\x8e\xd4\x3c\x91\xc5\x66\x9e\xbc\x1a\xb6\x1b\x8a\x66\x02\x14\x8a\x7c\x5c\x51\x97\x39\x34\xfb\x52\x33\x4b\xa6\x8b\x5f\x43\xf8\xb8\xbd\xa5\xa4\x69\x10\xfc\x3a\xec\xce\x3e\x07\x5b\xa9\x98\x8a\x2f\x39\xa1\xee\x52\x51\x94\xf3\x28\xc1\x08\xee\xd6\x7a\x20\xcf\xcf\x3c\x1c\xe4\x4a\xd7\x2f\xcb\x5d\xc1\xb4\xef\x07\xba\x75\xb0\xae\x28\x7c\x95\x80\x09\x19\x09\x74\x58\x6f\x52\x98\xca\xc7\x95\xe7\x75\xf0\x05\xd2\xf2\xe4\xb1\x7e\xc7\x8c\xe7\x72\xa2\x8b\xaa\xf3\x1c\xc6\x79\x6a\x3a\x66\x0d\x1d\x0e\x27\x23\xbf\xb0\x50\xca\xff\x1d\xae\xb2\xb8\x6b\xc1\x55\x6a\xb0\x63\x97\xbd\x1d\xe3\xf7\xd4\xf3\xdd\x70\x20\x92\x22\xa2\xcc\xb6\xd1\xf3\x80\x0d\xf9\x70\xac\xa8\x01\x4f\xe2\x79\x20\x21\x9e\xa2\xa0\x5a\x28\x0d\xf1\x6c\x9c\xa8\xb6\xa3\xd0\x7b\xaa\xe5\x8b\x03\xdd\xd1\x6b\xaf\x81\xf1\x81\xc7\x85\x5a\x4a\x8e\x42\x8b\xc1\xd6\x99\xbd\x61\x1a\x26\x29\x2d\x4d\x84\x19\xe0\xf4\x44\x10\x79\x87\xee\x05\xd7\x78\xd6\xd5\xa8\xbb\xa1\x4d\xf1\x73\x08\xd8\xef\x2a\x4e\xe5\xd3\x25\xa2\xa3\xca\xef\xed\x9d\x6b\x76\xed\xaa\x4d\xd9\x3c\x09\x24\x97\x62\x0c\x01\xeb\x2a\xf6\xa6\x30\x0a\x7b\x36\x6e\x5b\x45\x35\xf7\x5b\x74\x49\x7c\x5c\x47\xcb\xd1\xec\xda\x28\x92\xa0\x14\x41\x0c\x37\x41\xf8\x44\x47\x47\x09\x72\x4b\x84\x89\x33\x13\x15\x3f\xce\xb4\x1e\x66\xd5\xda\x6b\x71\xde\x0f\x8d\x0a\xd3\x3e\xd2\x61\xda\x47\x5a\xb1\xdf\xa0\x5e\x62\x61\xf8\x65\x8c\x54\x17\x41\xeb\x68\xc3\x47\x79\x64\x56\xd9\xb0\xe1\xef\x8e\xc0\xb0\xf1\x49\x5d\x47\xab\x30\xe5\x79\x37\x49\x51\xcd\x71\xf1\x5a\x71\x5d\x02\x7b\xf7\xc1\xf8\x4a\x12\x99\x3c\x84\xe4\xe7\xdc\x41\x36\x5c\x00\x65\xf1\xb1\xca\x70\xff\xee\x13\x78\x59\x70\x84\xa0\x0a\x40\xd1\x77\x0a\x74\x7b\xb0\x1f\x47\x20\xcd\x86\xff\xd9\xda\x52\x33\x32\xbf\x89\xa5\x8e\x5c\x64\x0a\x90\x22\x0f\x48\x98\xf5\x45\xac\x22\x30\x43\xd4\xf1\x13\x25\x9d\x86\xea\xb9\x0c\x9d\x14\x2b\x41\x9a\x26\xbe\x15\x7a\x8e\x32\x6f\x01\x7c\xd1\x6b\x44\x94\xda\x98\x28\x7f\x33\x33\x11\x73\x1e\x99\x61\x9e\x0c\xa7\x3c\x7c\x99\xc7\xd3\x75\xdf\x1e\xbf\xb2\xb5\xf5\xb4\x00\x8c\xfa\x61\x9a\xaf\x39\x55\x57\x20\x6a\x50\x3f\xbd\x3b\xf6\xa1\x14\xc7\x30\x00\xd3\x4d\xd7\x3a\x83\x55\x1b\x45\x0d\x3f\xf0\xb4\x1e\x94\x26\x49\x1d\x90\x68\xd5\xe5\x13\x08\x19\x77\xe2\xd1\xc1\x8e\x4d\x4d\x7c\x0c\xf4\x7d\x95\xd3\x9e\x52\x49\x49\x37\x49\x6d\xdb\x64\x39\xc2\x35\xbc\x99\xeb\x54\x64\x42\x89\xed\x26\x6e\x9a\xff\x63\xec\x85\x5c\x6f\xd6\xc0\xfa\xf6\x37\xdb\x36\x35\x83\xb0\x2d\xb1\x05\x82\xd2\x5b\x81\x2a\xbf\xdd\xaa\x19\x8c\x5f\x6c\x46\x4b\x49\x09\x31\x7a\x45\x8d\xac\x9d\xd2\xfc\x8b\x1f\xd5\x91\x18\x98\x76\x7b\x94\xe5\x9e\x0b\x05\x36\xe7\x93\xb1\xb7\x3f\x9f\x28\x30\x7c\x16\x8a\x6d\x71\x1c\x02\x5e\xfb\xa3\x76\x56\x81\x13\x42\x17\x9d\xb1\x52\x1a\x7d\xbf\xa8\xa6\x95\xc8\xf4\x56\x48\xd5\x04\x59\xb9\x93\xac\x74\xe9\x4a\x9d\x20\xfa\xfe\x66\x37\x32\xcb\x36\x63\xe4\x2d\x4a\x82\xdb\x5a\xaa\x92\xf1\x89\x86\xde\x36\x26\x75\x5f\x91\x92\x62\xff\x94\xee\xe0\x9e\x57\xbc\x21\x3c\x24\x23\x25\x94\xba\x61\xce\xd4\xc4\xb0\x8a\x8e\x08\xc2\x81\xac\x2e\x56\x9e\x7c\x91\x26\xd8\x34\x0b\xb3\x5c\x0a\xda\x32\x7b\xd5\x50\x94\x2b\xd2\xea\xcb\x4c\xcc\xe8\x28\x2e\x90\xab\x39\xa8\xa7\x60\x25\x10\xb7\x32\x8d\x98\x94\xaf\x7c\x8c\x72\x42\x93\x51\x5d\x54\xf4\x20\xdd\x28\x59\x85\x3e\xa6\x78\x18\x2f\x63\x83\xc8\x10\x3e\xf9\x66\xed\x83\xef\x87\xb1\x6b\x12\xa0\x7e\xf5\xe7\x63\x25\xac\xf5\xe7\xba\xe8\x93\xc8\x34\x95\x2b\xb4\x29\xde\xa4\xcd\x1b\x62\x71\xb6\x99\x26\xa3\x3c\x8c\x6d\xb4\x86\x60\x55\xca\x43\x7e\x9e\xec\x7c\x89\xcb\x25\x6c\x2f\xcf\xa0\x42\x23\x6e\x0f\xef\x12\xf7\x7f\x55\xa1\x15\x2f\x2a\x95\x09\xde\x20\xa8\x22\xdc\xd2\xd8\xdc\x88\x25\x40\xb1\xb5\xc4\xe2\xfb\x69\x21\xa0\xe3\xe0\xf4\xee\xa9\x0a\xc8\x52\x98\x64\xc9\x28\x6d\xb3\x60\x21\x2b\x6e\xe2\xa9\x88\xfc\xe6\xdf\x70\x3f\x13\x76\x6c\x9c\x87\xdd\xb0\x6d\xbc\xa4\x3f\x12\xbf\x0f\xc7\xaa\x79\xf9\x61\xe0\x51\x7a\xdd\x30\x1d\x3c\x5e\x3c\x05\xd4\xc5\xc0\x4e\x87\x80\x02\x4c\x62\x1c\x69\x63\x29\xe0\xf6\x8f\x90\x01\x77\x4c\x3e\x85\x27\x51\xd4\xab\xa2\xfd\xb6\x11\xa8\xbe\xd2\xf4\xa4\x54\x1c\xf1\x64\x3d\xff\x83\x16\x9a\x46\x9a\x2d\x2e\x50\x05\x05\xac\x31\x85\xc6\xc5\x4d\x38\x1f\xfe\xfc\x26\x22\xca\xde\xa3\x8d\x32\x3b\xd2\x7e\x99\xaf\xc0\xa7\x44\x79\xc0\x57\x4f\x7f\x3a\xae\x2a\x5e\xc2\xcb\xb1\xb9\x14\x85\x64\xba\x38\x00\xf2\x2e\xe3\x71\x22\x40\x3e\x41\x8f\xc3\xd1\x83\x17\x17\xca\xff\xa1\xa8\xf1\x6f\xd4\xe9\x4c\x75\x52\x1b\xb7\xfb\xce\x9a\x21\x62\x38\xa1\x92\xd4\x13\x75\xbd\xab\xcc\x0c\x4c\x1a\xe6\x26\x16\x1b\x25\xa3\xb8\x74\xe9\x58\x7c\x5b\x54\x60\x78\xa1\x86\x62\x67\xff\x81\xa6\x19\xd8\x34\x6c\x33\xcf\x97\x13\xd3\xf4\x03\x84\x47\xea\x88\x53\xda\x7d\x23\xc0\x5d\x81\x4e\x29\x18\x95\x72\x67\xd9\x68\x25\x5c\x49\xd2\x4c\x53\x8d\xfc\xa9\xa6\x1a\xf9\x53\xcf\x7a\x9d\x44\x49\x6a\xf2\x51\x8a\x30\x0d\x0b\x0e\x5b\x8c\x8f\x2b\xb5\x94\x7d\x0b\x4d\x1b\xf7\x8a\x74\x67\xda\x77\x07\xc0\x48\x0e\x1b\x70\x19\x3b\x11\x6b\x74\x07\xac\xb7\x44\x1f\x35\x8f\x94\x90\x9a\x9d\x51\xca\x03\xdf\x28\x82\x1c\x55\xc2\xb6\x47\xc7\x5f\xd0\x28\xdf\x38\xb7\x69\x7b\x14\xe5\xf8\xc4\x43\xe4\xe4\x6a\xe2\xe9\xa5\x34\x59\x8d\xf1\x48\xa4\x64\x57\xfc\x1e\x1f\xd7\xa0\xd0\xe6\x9a\x79\x7f\xd5\xa4\xce\x2c\xba\xd9\x42\x3f\x67\x58\x89\x4a\x89\xfb\x34\xee\xe5\xe1\x00\xe0\x14\x11\x2c\xf1\x55\x43\x8d\x59\xee\x87\xbd\x7e\xb4\xb6\x8d\xfa\x40\x32\xfb\x43\x21\x0e\x9f\x90\x89\xc4\xe6\x68\x50\x8b\x8a\x8f\x31\x07\x04\xaf\xb1\x8e\xbd\xca\x27\x75\xfc\xbf\xc3\x34\xe9\x8c\xda\x2c\x9a\x28\x1b\x5c\x07\xbf\x0a\xd9\xe9\x00\xdf\x0b\x6e\x66\xca\xaf\x85\xf5\x0a\x46\x89\x74\x67\x22\x56\x6a\x91\x09\x31\x65\xad\xd6\x4b\x33\xef\xa1\x85\x7f\x42\xe2\xb0\x11\xf8\x29\x17\x24\x6c\x18\x7f\xbf\xa4\x8a\xe1\x24\x50\x4c\xb4\xd1\xdb\x69\x4d\x61\x67\x5e\x0f\x3c\x74\xf4\x9d\x71\x19\x9d\xbe\x28\xf9\xcf\x7d\xa5\xb7\xf5\x1e\x12\x6c\xe9\xee\x3b\x58\xd9\xff\xff\xb6\x1a\x92\x4d\x56\x63\xdb\x99\xf1\x0c\x7a\xeb\x2a\xa9\x65\xda\x2c\xf8\xa3\xe9\x89\x47\xbb\xbe\x1b\xf8\x5f\x5c\xd7\x44\xa6\x7d\xc3\xd5\x37\xdc\x2c\xeb\x22\xf0\x89\xaa\x9c\x0f\x23\x9a\x1b\x99\xae\x6a\xbf\x21\x35\xfc\x74\xec\xeb\xd5\xf7\xf1\xaa\x65\x6c\xc8\x83\x02\x5e\x49\x88\x52\x01\x4e\xd3\x21\xb2\x16\x67\x1d\x22\xab\x3a\xa0\xbf\xbf\xc8\x9e\xe8\xbd\x6d\x5c\x1a\x37\x16\xf7\x6f\x5c\x52\x93\x58\x51\xf8\xaa\x06\x33\xc2\xcd\x22\x1d\x07\xa0\x1d\x37\x7c\x7b\xac\x24\xb3\xce\xaa\x2a\x12\x0d\x99\x65\x1a\xdb\x0c\x07\x20\x3b\xd5\x4b\x0e\x0c\x4d\x06\x0a\x3c\x47\xc4\xaa\x19\x54\xbc\xab\x8c\x92\x2c\xdb\x41\x77\x8f\xe8\x91\x27\xc2\xf8\xa4\xac\x50\xde\x70\xd4\xd8\xec\x13\x19\x19\x4c\xab\xc6\x29\xf6\x2c\xce\x7a\x96\xe3\x05\x9e\x70\xfa\x9f\x4f\xb9\x3a\x44\x77\x14\xf7\x42\x2d\x53\x71\x5b\xc9\x54\xdc\x2e\xb5\x5e\xd3\x34\xb4\x29\xe1\x0a\x45\xb9\x8a\x7e\xd5\x55\xbc\xe6\x0e\x72\x99\x84\xd5\x10\x84\x0e\xd5\x1b\xdc\x07\x1a\x09\x78\x9e\xa8\x1c\x04\xc2\xa5\x7b\x6b\x6e\x3c\xad\x08\xc0\xb8\xdd\x45\x2e\xfe\x3b\x4f\xb6\xbc\xbf\xff\xce\x93\x93\xcf\x29\xd5\x66\xa2\xde\x75\x6e\x0e\x36\xe8\xb4\xa2\xac\x3f\x3d\xde\xad\x86\x6e\x8a\x7c\xeb\xd0\x2c\xc7\xa0\x77\x54\x1d\xf5\x8e\xda\x29\xd6\xa4\x71\x36\x4d\x60\x27\x14\x43\xef\x51\xae\x24\x9c\xaf\x7e\x46\xe0\x8c\xd2\xbf\xab\x12\xaf\x1d\x9a\x7d\xa9\x59\xe4\x5d\x91\xaf\xf8\xb2\xd4\x08\x5d\x9e\xc8\x8e\xf8\x65\x39\x30\xcc\x99\xe1\xcc\xa3\x1b\xc9\x6b\xb4\x7c\x6d\xf0\xe6\xd8\x0f\x01\xd8\xac\x9d\x86\x4b\x6c\xfb\x64\x0a\x80\x1e\xb6\x8c\x01\x3c\xa9\xb4\x2a\xe3\xdc\x14\x1b\x69\x4a\x45\x1b\xd7\x15\x67\x27\x68\xd1\x90\xc1\xbd\xaf\xaa\xc3\xcb\xd6\xc6\xec\xcb\xb5\xc2\x84\xd4\xd1\xdc\x04\xf1\x5f\xc7\x25\xa8\x61\xba\xa3\xcc\x25\xb4\x6a\xc0\x5a\x90\xaa\x3f\x29\x4f\x5b\xd3\x2a\xe0\xff\x19\x7b\x9c\xb3\x89\x73\xd3\x4b\xe2\x90\x04\x33\xbc\x08\xe1\x58\x8b\x0d\xaa\x98\xde\x9a\x9e\x65\x1d\x2c\x89\x7e\x94\xc1\xad\x4e\xcc\xbc\xfc\x72\xb3\x13\x9a\x28\xe9\x31\x28\x07\x9e\xfa\x86\xea\xba\xde\x50\x2d\x06\x33\x48\xe2\xde\x0e\x9f\xfb\xed\x98\xfc\xf5\x2e\x4f\xe4\xfa\x3c\xa8\xed\xbb\x9a\xeb\xf0\xc8\x58\x89\x31\xa3\xdf\x84\xe1\xa0\xc7\x2a\x55\x84\xfd\x2f\x1c\x68\x76\xec\x2b\xa6\x41\x18\x13\x27\xec\xe6\x25\xba\x6a\x24\x65\x87\x91\x71\x2c\x04\x52\xc7\x57\x35\xec\xd7\xd5\x4e\x68\x9b\xb4\x93\x51\xb5\x1c\x51\xf4\x7b\xb4\x42\x50\x81\xbf\x3d\xf6\xf6\xe6\x7c\xa0\x0a\xcb\xd5\x0e\xf6\xc2\x42\x33\x0b\x5f\x63\x8b\x89\x82\x08\xf7\xc2\xf9\xc4\xad\xa1\xa5\x24\x89\x35\x5d\xd0\x71\x45\x17\x74\xbc\xd2\x07\xda\xb7\xd0\x5c\x8a\x4c\x7b\x99\x87\x5b\x90\xca\xfd\xbb\xb1\xaa\xe2\x9e\x53\x8d\xe5\x73\x15\x9d\xc1\x2f\x35\x97\x4c\x4a\x48\x04\xdc\x3a\x7c\xaa\x43\x67\xf8\x46\xc7\xb9\xf1\xe7\x37\x13\xb2\x7f\xa5\xb9\xb0\x70\xe0\x31\x7a\xcf\x78\x39\x3f\x44\x10\x0f\x58\x16\x00\xa8\x38\x7e\x84\x42\x1b\x66\x0d\x0a\x7c\x56\xf8\x67\x28\x77\x62\xb1\x72\x7f\x50\xc8\x6d\x1b\x8b\xa2\xe8\x01\x94\x10\xec\x28\x57\xdc\x51\x1a\x63\x50\x92\x68\xef\x2a\x4e\xff\xbb\xf0\x46\xe8\x35\xfe\xb7\x40\xd5\x76\x2e\xd7\x91\xf6\x0d\xd3\x64\x6a\x73\xa9\x17\xe0\xa2\x6b\x04\x11\xc5\xbf\xff\xac\x92\x56\xbf\xfc\x72\xb3\x9f\x64\x79\xc8\x53\x69\x88\xec\x51\x35\x86\x1b\xe1\x9a\x9b\xd4\xa6\x3c\x81\x67\x2f\xd9\x4d\xff\x83\xda\xfd\x7a\xe0\x4b\x60\x3f\xd7\x82\x93\x97\xb9\x0e\xad\x43\xd6\xf8\x95\x5f\xe3\xa0\xe1\x24\xd9\x1f\x1c\x6f\xe0\x75\xe3\x66\xef\xe0\x91\xe2\x8a\xef\x01\x39\xe3\xc6\x45\x1c\x54\xff\xea\xd8\x97\xcc\xce\x06\x8a\x3c\xee\x9e\xd2\x8d\xb8\xed\x01\x81\x79\x32\x30\xed\x7e\xa6\x59\xee\xca\x8c\x07\x35\xe3\x72\xd9\x88\x5a\xa4\xce\xf2\xa3\x50\x33\x35\xf1\x48\xfe\xa9\x56\x59\xff\x6c\x30\xb0\x31\x51\x2f\x6b\x4a\xfb\xc3\x1a\x57\x7c\xb8\x46\x42\x64\xa1\x99\xf7\xd3\x64\xd4\xeb\x4f\x15\x4b\x06\xee\x6a\x4a\x35\xf4\xcf\xd1\xa3\xc2\x1a\xdb\xd9\x52\x6e\x3d\x81\x82\x9a\x1e\x91\x6e\x28\x4e\x2f\xfa\x59\xac\xba\xdb\x2a\x72\x9a\xdf\xf7\x2f\xf8\xfa\x60\x39\xb9\x5e\xc5\x27\x95\x24\xa3\x48\x7f\x92\xdc\xc6\x79\xc8\xd9\x0f\x22\x24\xb4\xad\xf8\xd8\x8d\xe2\x16\x7f\x96\x47\x32\x20\x84\x45\x3e\x45\x7e\x0f\x48\xaa\xcf\x10\x45\xb0\xf8\xa5\x0a\x51\x6c\x34\x22\x59\x2b\x05\xa4\x3d\xa5\x5a\x96\xa7\x54\x24\x49\x8d\xac\xf6\xa3\xb8\x05\xac\x8c\x47\x5b\x5e\x70\xee\x2d\x95\x96\xfd\xaf\xa8\x3e\x38\x2d\x57\x37\xe7\xc8\xe9\x89\x43\xa7\xfa\x89\x19\x2e\x32\x20\xf6\xbe\x0b\xfc\x1b\xae\xe1\x6d\x84\x70\x68\x33\x82\xa8\x5c\xe1\x02\x0e\xb8\x15\xeb\xb8\x7a\x20\xe1\xcc\x56\x1a\x31\xc0\xb6\x89\xd2\x5d\xd9\x56\x69\x4b\x2c\xce\x16\xd1\x66\x16\x26\xb1\xc9\x2d\xb3\x9d\x6b\x05\x07\x09\xbe\x95\x0c\x47\xd8\xee\x43\xe2\xa9\x2c\xdb\x8f\x34\xff\x7b\x78\xdc\xd8\x32\x1f\xa9\x38\x22\xb5\x51\xd8\x0b\x93\x38\x53\xc2\xf3\x8c\x1b\x80\x91\x3b\xae\x46\x61\x34\x9a\x27\x49\x07\x3b\x8a\x8f\x20\x4b\x78\xca\xcf\xaf\x8e\x9e\x68\x29\x05\x7d\x9e\x05\x82\xd1\x07\xea\x1a\x2b\xf4\x30\x82\x01\x00\x76\xb9\xef\x0a\x53\xba\x1b\x96\x06\x0d\xaa\x6b\xb5\xdd\xe4\x34\x59\xe6\xb1\x36\x40\x1f\x51\x5c\xe0\xe3\x3a\x25\xbf\x4e\xd8\xed\x12\x23\xdd\x94\xe2\xb8\xb8\x5c\xe2\xb0\x2e\xbe\x4d\x64\x85\x6a\x40\x0d\xed\x24\xb5\xe4\x3c\xb1\xe1\xa1\x32\x85\xe5\x8b\xc0\x17\x0f\xfa\x30\x99\x26\xa9\xfa\xd7\xf8\xce\x8e\x8d\x0c\x92\x2d\x06\xd9\x04\x8a\x64\x72\x5d\xa5\xb7\x83\xe4\x35\x52\x40\x57\x4d\x3f\x85\x5d\xbc\xa8\xd2\xb2\x4e\x98\x59\x93\xd1\x68\xd2\x5c\xbd\x74\x79\xe3\xe1\xf4\x01\xff\xd0\x75\x8f\x28\x3c\x5a\x9c\x75\xf9\xb3\xca\xa5\x3d\x8b\x01\x80\x31\x19\x62\x54\x98\xcc\x9b\x5a\x17\xe0\xa6\x22\x1e\x59\x0d\x87\x98\xff\x85\x27\x7b\x4f\x05\x9a\xef\x3d\x74\x60\x3d\x37\xcb\x66\x90\xa4\xe1\xc3\xa5\x9a\x7d\x44\x93\xaf\x0d\x31\x0b\xfb\x95\xd2\x44\x28\x1a\x12\xdb\x5b\x7e\xa6\xf0\x81\x32\x30\xc3\x34\xc9\x86\x82\x45\x70\xb2\x0d\x0e\x43\x70\x5e\xcd\x7c\x1b\xce\x30\x5c\x60\xab\xa2\x5c\xc5\xbb\xc6\x75\x9e\xe9\xd2\x6c\xbe\x1b\x1a\x29\x4f\x2a\xe8\x99\xfd\xcf\xfb\x24\xa5\xf8\x3c\xc5\xf3\x69\xc9\x4a\xb0\x94\x3c\x9f\x6c\x1e\x01\x3a\xf8\x42\x73\xef\xdc\xa3\x8a\x06\xe9\xc7\xe4\x62\xf1\x28\x7e\x86\x8f\x8a\xa4\xa7\x2a\x09\x80\x73\x45\x3e\xa2\x28\xcc\x30\xe5\xc4\x43\xed\x94\x25\x31\xd3\x39\x25\xa3\xe8\xf8\xff\x84\x62\x5e\x01\xff\xf8\xc1\x89\x4b\x98\x27\x11\x6a\x74\x9f\x5e\x83\x68\x70\x5a\xd5\x7b\x59\xa1\x82\x4f\xe8\xd1\xe3\xf7\x41\x34\xc2\xc7\x0a\x06\xdc\x35\x6d\x6a\x6b\x6e\xa7\x37\x2d\x32\x2f\xbe\x5e\xb1\x1d\x7d\x49\x14\x7d\x4f\x28\x25\xe4\x3f\xd0\x54\xbb\x3c\x0e\x29\xf6\x1c\x5e\x83\xff\xab\x4e\xd5\xb8\x9d\x0c\xc2\x76\xc3\x7b\x1e\x74\x56\x44\xfa\x51\x19\xc2\x41\x32\x5d\x99\x28\x80\xf1\xfa\x76\xe0\x51\xf0\xb7\x02\x3d\x82\xe0\xd2\x2c\xdb\x5e\x2e\x75\xde\x0e\x6b\xe0\xfb\xe1\x0a\x69\x01\x0d\xe7\x99\x41\xb1\x50\x1a\x8a\x3f\xe6\x5b\x6a\x48\xf7\x5b\x95\xc8\x9a\x50\x9d\x6e\xa2\xcd\x41\x1e\xf7\x39\xf8\xa3\x23\xeb\xc8\x06\xc9\xb2\x33\x92\x8c\xda\xa3\x02\x12\x96\xd1\x13\xb4\xa5\xf0\xc2\xb7\x4c\xe4\x43\x26\xcf\x6d\x26\x80\x20\xa7\x62\xe1\xf2\xfd\x7f\x71\xda\x0d\xcc\xe5\xfd\x22\xb8\xc9\x77\x15\x97\x81\xe2\xee\x96\x89\x37\xc1\xdc\xad\xc0\xee\xdd\xdd\xf2\xa4\x4e\xff\xf9\x8b\xe0\x37\x15\x52\xf4\xaa\xd4\xb2\xb8\xc3\x62\x9d\xc2\xf9\x5f\x51\xb2\xec\x8d\x49\x71\xaf\x02\x00\x6f\x7c\x4d\xb8\xe0\x8e\xaa\x35\x16\x85\x26\xcc\x92\x18\xf9\xa7\xe4\x09\x74\x09\x22\x16\xe2\xed\x5a\x6c\xc2\x08\xf1\x09\x5e\x33\x1a\xde\x7c\xec\x0a\x1f\xc9\x10\xbd\x95\xe2\x75\x3a\x51\x6d\x07\xf0\x39\x52\x6a\x47\x44\xa3\x01\x22\x4b\x98\xab\x4f\x02\xdf\x8e\xff\xa4\x58\x2b\x12\xb0\x49\x1b\x14\xf7\xc5\x14\xbe\x7c\xa2\xb4\x42\xc2\x48\xa6\x12\x45\xf5\x8e\x1e\x19\x9f\x54\x85\xa2\x17\xf7\x3f\xd3\x5c\x5e\x8b\xc2\x57\x1b\xbe\x1c\x72\xbb\x54\x3b\x7b\x4c\xb9\xa5\x15\x9b\x3d\xe2\xcb\x41\xeb\xba\xc3\xc1\x62\x3f\x90\xf4\xbc\x4f\xaf\x40\xc6\x33\xb5\xea\x5f\xa0\x02\x52\x90\x2e\xc2\xa0\x6c\x9b\x78\xc4\xca\x1f\x22\x70\x10\x0a\xbf\xcd\x1b\xf4\x6b\x73\x4d\xb3\x94\x8c\x40\x1c\xe1\x04\x26\xdc\xfc\xf9\x29\x5a\xde\x32\x5b\xb7\xf9\xc3\xfb\x16\x0a\xe3\x9e\x32\x0b\x2e\x0c\x1b\x38\x3f\xf9\x58\x75\xe4\x78\xba\xbb\xc8\x77\x9d\x76\xc9\xba\xd2\x2e\x59\xaf\xb3\x1d\x14\xfb\x4e\x69\x6e\x7c\xfa\x76\x44\x8c\x10\xd8\x11\xce\x88\xba\xa1\x7d\xbb\x62\x01\xa0\xac\x53\x97\xaf\x99\xd7\x65\x71\x5c\xdc\x4e\x1d\xe2\x49\x51\x41\x86\x28\x01\x20\x2f\xba\xac\x27\x83\xee\xc1\x5a\x8a\x1b\xf4\x69\xe0\x5f\xfa\x0e\x4c\x3f\x4d\x06\x49\x96\x0c\xec\xf4\xd6\x67\x9c\x8e\x53\x43\xe4\x02\xe6\x9e\x6c\x29\x6a\xbb\x0b\x4a\xca\xe1\xd1\x8a\xf0\xf0\xa1\xd9\xfd\xc4\x1c\x8f\x8b\x46\x8b\xe2\x1d\xda\xc0\x7c\x1c\xec\x51\x1c\x0e\xbd\x3e\xf1\x9d\xf8\xe5\xf9\x5b\x63\xc5\x7d\x72\x41\x81\x46\x2e\x96\xda\xb3\x26\x1b\x60\xa7\xaa\xb0\xc8\xc5\x48\x0a\xf0\x9b\x8d\xd2\xae\x61\x9e\x40\x27\xb9\xe5\xe5\xb7\x54\xcc\x11\x25\x4b\x4b\x6b\x33\x4a\x4d\x05\xc0\x07\x74\xfc\xff\x02\x9b\x41\x9c\x44\xb1\x62\x78\x9e\x11\x59\xbc\x0c\x37\xfa\x9a\x67\xde\x4f\xad\xc9\x6d\x6c\x3b\x5a\x55\xfc\x3d\x9d\x88\xbc\xa7\x82\xc2\x57\x6c\x9a\xd9\xb5\xe9\xb2\xe4\x0b\xa5\xc9\x2e\x43\x74\xe5\x22\x66\x3a\xe4\xbf\xaa\x9b\xf3\xee\xa6\xd6\xae\x1a\x48\xdf\x09\xd9\xa6\x0f\x56\x4e\x55\x7a\x8a\xd4\x0e\xe4\x0e\x0d\x37\x5e\xb0\xa3\x8f\xe1\xbe\xf9\x44\x61\xae\x87\x69\x98\x87\xcb\x61\xcc\x0d\x48\xd4\x08\xae\x6b\x15\x9f\x73\xba\x15\x7e\xf8\xa1\xf4\xd3\x4c\x27\xc3\x90\x13\x64\x58\xdb\x5a\x1e\xb9\xc9\xc1\x31\x16\xef\xbd\xca\xd7\xbc\xfc\x32\x0d\xbb\xd9\x74\xc5\xe4\xe1\x8a\xa4\x62\xce\xa1\x14\xdf\x29\xf2\x1b\x3e\xa5\xea\x9b\xa1\xb0\x67\x60\x15\xdf\x52\x92\x28\xb7\x4a\x06\xbc\x9b\xbd\xaa\x88\xda\x7e\x4f\x11\xb5\xfd\x9e\xa2\xd8\xcf\x06\x49\x92\xf7\xa3\x35\xe2\xaa\x03\xf0\x01\xad\x32\x3e\x46\x4e\x28\x80\x48\x55\x55\xd1\x80\xcc\xcc\x1a\xc6\xfe\x20\x52\xfa\x0e\x19\x50\x19\xe9\x56\x03\x64\x3c\xf5\x86\x55\xfa\xb3\x8a\xdd\x78\xae\x39\x8c\x46\x83\x25\x57\xd4\x40\x4d\x13\xd9\x3c\x1f\x57\x16\xc0\xa1\x59\x72\x6b\x83\x30\xcb\xc3\xf6\x94\x8e\x87\xa8\x3a\xe3\x98\x3f\xe7\xe7\xb9\x22\x73\x4f\x01\x33\x3b\xd6\x74\xa2\x30\xb6\xa4\x71\xe7\x66\xb6\x1c\xb3\xf6\xb5\xb1\xa2\x22\x62\x41\x74\x7c\xe1\x6d\xad\xed\x7c\x3a\xf0\x4e\xfe\x28\x47\x71\xf2\x1e\x37\xdb\x98\x97\x5f\x6e\xf6\x52\x51\x87\x47\x8a\xce\x22\xc5\x7c\x52\xd1\x18\x9c\x9f\x6f\x9a\x94\x3a\x42\x8e\x7b\x8f\x87\x18\x03\x3f\x90\xfe\xe9\x43\xf9\x88\x22\x93\xf6\x2c\x91\x7a\x23\x10\xbe\x41\x8f\x02\x2d\x9d\x9f\x57\x72\x4c\x53\x13\x45\x7e\xfb\xc8\xa4\x46\x81\x31\x4e\x78\x42\x4a\x26\x2c\x0a\x5b\x22\x93\x17\x35\xb0\x1e\x92\xaa\x6f\x7b\x08\x1b\xec\xd1\xe5\x40\x4f\x80\xa8\x91\xfa\x0a\xbc\x78\x61\xa1\x38\x53\x44\xe7\xc7\x15\xd1\xf9\x71\x95\xec\x2c\xa5\x61\x9e\x43\x60\xd8\x4f\xb5\x79\x5c\xdf\x5d\xaa\x32\x32\xf3\xb2\x0a\x1b\xe2\x24\x94\x0c\x55\x8f\x4c\xe1\xcd\xfd\x09\x5e\x3d\x13\x3c\x07\x1e\x04\x76\xc4\x27\x9e\x11\x29\x1b\x23\x20\x17\x0d\x92\xe2\x6a\x45\x9c\x64\x73\xd0\xbb\xff\x85\x03\xcd\x76\x94\x64\xa0\x82\x41\xd2\x3e\x4d\x49\xbb\x7e\x1c\xd2\xd1\x2d\x0d\x5d\xb5\x9f\xdf\xe1\x03\x65\x60\xe7\x71\xa3\xd7\x02\xa5\x44\xfc\xe8\x44\x11\xd8\x4c\xb7\xb4\x98\xb4\x82\xb1\xfd\x31\xd6\x2e\x6c\xc1\x95\x12\xc1\x74\x0d\x17\xc9\x28\xee\xd8\xb4\x88\xee\xe9\xd5\x8b\xa6\x9a\x07\xad\x5d\xad\x94\x7c\xe7\xe7\x9b\xcb\xbd\x25\x7a\x6f\x8e\x46\xa8\xf8\x41\xe1\x30\xdd\xbc\xb4\x16\x67\x9b\x4b\x49\xdc\xd1\x3b\x42\x49\x18\x7d\xea\x92\xdf\x41\xd8\xc9\xf2\x29\x25\x7f\x7c\x56\x29\xe7\xdd\xd6\x37\x75\xba\x62\x59\x0e\xcd\x7e\xa5\x99\xda\x4e\xc2\x34\x3c\x22\xdd\x56\xe4\xa6\x70\x80\xa7\x89\x41\x4b\x6a\xb9\x9f\x2b\x29\xb2\xa5\xa6\x9d\x0b\x8d\x1b\x4b\xc3\xd3\x7b\x16\x99\x78\x4f\x60\x1c\x45\x20\x23\x9c\x73\x69\x8c\xaf\x04\x43\xb0\x08\x66\xf5\x9d\xb1\xee\x57\x0d\x6c\xb7\xf8\xfa\xf9\x79\x31\xb4\x67\x40\xea\xc0\x27\x95\x75\xf4\xf2\xcb\xcd\x25\x93\x2d\xdb\x5c\xc9\x1d\xa3\xc8\x2d\x4d\x20\xd7\xe9\xb4\xa9\x35\xd1\x94\x0f\x1b\x18\xcb\x84\x3c\xea\xb2\x9a\x88\xde\xad\x74\xec\x3b\x23\xd6\xf5\x93\x6a\x81\xe2\xae\x39\xa5\x34\x72\xfe\xaa\x62\x8c\xd1\x2e\xca\x2d\x2b\xd8\x39\xc6\xf9\x2b\xaa\xc9\x74\xc5\x0d\xfa\xb8\xaa\xb4\xd4\x64\xb1\x8a\xdf\xa4\xcb\x02\x8c\xe9\xe8\xd8\x0f\x6b\x9d\x2b\xb9\xb7\x76\xf2\xfc\x13\x14\xc0\xe0\x43\x57\xe9\xfe\x91\xdd\xbd\x41\x1f\x42\x44\x45\x6f\x60\x83\x27\x04\x98\x05\x86\xe7\x00\x24\x70\x26\xc7\xc5\xf0\x2c\xb2\x69\x6e\xee\xcc\x47\x01\x57\xc6\x0a\xe5\x74\x39\x28\x81\x80\x8b\xd7\xcd\x57\x1b\xa8\xb9\xb5\x9b\xd4\x7e\x43\x6b\xe8\x6d\x45\x8c\xf8\xbf\x05\x8a\xb3\xfe\x83\x4a\x0c\x34\x77\xb0\xd9\x4b\xcd\x8a\xcd\x72\xac\x08\x61\xc8\xf5\xc5\xf3\x0f\x7d\xe7\xa0\x1f\x0e\x87\x36\x45\x86\xc8\x54\x62\x1a\x6a\x7b\xc4\x73\x4b\x0e\xad\xed\xec\xf0\x2f\x81\x03\x0c\xdc\xcf\x7d\xdc\x29\xaa\x18\xbf\x43\x46\x10\x06\xe9\x7d\xfa\x55\x60\x43\xfe\x56\x4b\x81\x27\x6e\x69\xed\x3e\xae\xa7\xc2\x86\xdc\xa9\x1d\x04\x33\x83\x64\xe4\xd4\xcd\x60\xf8\x98\x4e\x9f\x4f\x7c\x93\xd7\xa6\x16\x86\x1c\x93\xbf\x97\xe8\xbd\x22\x94\x38\x49\x60\x35\x1c\xbf\x35\xd6\x14\xfa\x69\xb8\x6c\x67\x54\x33\xe8\x0e\x48\x40\x05\xfc\xad\x16\xd7\x03\x25\x61\x7b\x21\xf0\xbd\x8b\x77\x9c\x88\xc7\xc0\x64\xdf\x18\xd9\xd4\x78\x99\x4a\x54\x6e\xd0\xcd\xe7\x63\x67\x94\xbe\x31\x0a\x2d\x0f\x73\x21\x95\x3a\xa3\x44\x9f\x1b\x44\xac\x26\x44\x29\x3e\x18\x7b\x83\x82\x36\x01\x0e\x3f\xa9\x74\x47\x44\x59\x81\x9e\x8d\x10\x1f\x78\x90\xe6\xb9\x8a\x2d\x78\xae\x59\xa4\x3e\x45\xd2\xe2\x19\x5e\xfb\xf4\x09\xa9\x7b\xd5\xe4\x82\xe9\x68\x29\xb2\x0a\xbf\x8f\xee\x83\x2c\xe8\x0a\x49\xfc\x0b\x07\x9a\xaf\x8c\x3a\x61\x3b\x2c\x4c\x89\xe7\x6f\xc5\xaa\xd1\x62\x6f\xf0\x35\x9f\xea\xf0\x72\xd4\xe9\x58\xe2\x75\x2d\x12\x02\x74\x9c\xef\x29\xad\x88\x7b\x15\x96\xf4\xb9\x83\x45\x58\x5c\xf8\xe6\xcc\x8e\x30\x3c\x8b\x70\xfa\x9c\xa2\x75\xae\xe6\xa8\xb4\x6d\xac\x8d\xa7\x3c\x00\xf1\x5d\xfa\x00\x58\x50\xb6\x00\x80\x84\x6d\xd1\x98\x68\xad\xbb\xc8\x66\x3b\x7d\x9e\x7d\x05\xfb\x59\xf4\x06\x69\x65\x23\xc6\xf9\x01\x7d\x9d\xee\xb0\xb8\xe9\xb5\xb9\x83\xbc\x8e\x73\x25\x79\x36\x26\x1c\x0a\xe0\x71\x97\xc0\x0a\x50\x82\x8a\xe3\x71\x5f\x76\xb6\xba\x9f\x00\xae\xef\xba\xfc\x9b\x6a\x29\x3e\x6a\x1d\xc5\x61\xe4\x69\x6f\x85\xa8\x98\x96\xaa\xe6\x99\xc4\x65\x68\x32\xa7\x64\x35\x7b\xcc\xcf\x7a\x34\x26\x4a\xb1\xea\x81\xa2\x0e\xba\xa0\x2f\xf0\x14\xec\x23\x2d\xdc\xbf\xfd\x6c\xab\xf1\x35\x11\xf2\x39\x8e\xf2\xaa\x1b\x20\x2e\x5e\xb0\x88\x33\x7b\x19\x9b\x8f\xc7\x9b\xcd\xc6\x7e\xa7\x42\x52\x18\x1a\x14\x69\x00\x09\x83\xcf\xfc\x85\x89\x27\x47\x58\x7e\xa6\xe5\x13\x4d\xd3\x19\x45\x79\x36\xa5\xf4\x2c\xd1\x88\x94\x92\x9e\xe2\xf0\xbe\xab\x5a\x8a\xd9\x28\xdb\x5e\xbc\x2d\x44\x65\x0f\x60\x7d\x61\xfb\xaf\x6b\xb1\x32\x48\x74\x3a\x3c\x9d\x63\xdb\x9d\x56\x5c\x3c\xbb\x5a\x7e\xda\xbe\x31\x11\x33\xdc\x37\x83\x01\xa1\x04\x74\xd5\x74\x6b\x4b\xc1\x0c\xce\xeb\x39\xb4\xeb\xaa\x14\x3d\x30\x79\x6e\xd3\x6d\x1e\xaf\x83\x89\x64\xfc\xf2\x35\x64\xe8\x42\xea\x52\xfc\x34\xde\xc9\x31\x7a\x59\x3c\x37\x8b\xc0\x07\x6b\xb1\xca\xf7\x59\x6c\xa7\xd4\x0c\x1b\xbe\x73\x02\x8c\x2e\x1f\x3f\x54\xb3\x21\x32\x4b\x09\xa3\x85\x18\x6f\xa5\xe8\x8d\xef\x06\xa5\x05\xb2\xd9\x60\x3c\xd7\xec\xd9\x38\x8f\x6c\x4c\xd2\x86\x8b\xb3\x5e\xad\xcd\x37\xb5\xab\x4a\xe7\xf3\xf3\x07\x48\x26\x2f\xb2\xaf\x96\x34\x15\x1a\x8e\x93\xa3\x0a\x4b\x2d\x7c\x4b\xdf\xac\x58\xe0\x33\x1c\xb7\x98\x4b\x76\xfa\x1a\x45\x7d\x5e\x4d\x69\xdb\xc1\x92\x7d\xed\xb5\x08\x61\xd7\xa2\x83\x1a\x29\xf5\xfa\x8b\x75\x1d\xb7\xae\x09\x23\xc5\x34\x76\x56\x91\xee\x9c\x7d\xe8\x74\x6a\xc7\x9a\xc8\xa6\xb2\x3a\x4a\xc2\x35\x48\x39\x99\xa4\x1e\xa1\xe1\x94\x2b\x62\x87\x03\x12\x67\xa0\xdf\x43\x21\xe9\x3e\x99\x17\x3e\x56\xa4\x3d\xd9\x20\x59\xb6\xb0\x06\xb0\x16\xbb\x26\x4a\xa4\x0d\xc0\x3d\xac\xbd\xe9\xd6\x13\x25\x91\x44\xd2\x77\x77\x83\xb8\xc7\x00\x25\xc2\x73\x7c\x27\x50\x4a\x38\x47\x09\x1d\xe1\x8a\x68\xba\xcf\x78\x68\xb6\xa4\x8f\x85\x9e\xc3\x7d\x4f\x24\x1b\x0e\x0b\x7f\x6a\x96\x35\x18\x10\x8b\x49\x9a\x18\xde\xb2\x51\x98\x60\xc2\x78\x46\xa5\xff\x30\x66\x28\x14\x03\xde\x04\x9b\x3a\x4d\x65\x0a\x54\xe6\x00\x9c\x62\x6a\x9e\x89\x9e\xd2\x79\x75\xa6\x88\xc2\x84\xa5\xb2\x84\xfc\xf2\x49\x18\x48\x13\xf0\x1e\x41\x4e\x82\xc8\xf7\xc7\x0a\xdb\x97\x26\x09\xe4\x96\x11\x44\x6e\xc7\x8c\x94\x40\x95\xe8\x51\x39\xd8\x95\x53\xb9\x78\xaf\xb2\x28\xf6\x2d\x40\x1e\x78\xd5\x66\xb9\x4d\xe3\x12\x93\x84\x2a\x4e\x9e\x57\x14\x95\x4b\x26\x77\x6a\xa9\x8e\x32\xd5\xd3\xa7\xd6\x79\xd0\x6e\x92\xe6\xfd\x36\x89\xdf\x23\xf7\xd6\x8d\x28\x51\x1f\xf4\xb1\xdd\x7a\x65\xad\x2f\xce\x36\x93\x15\x36\x4c\x92\x10\x17\xcf\x85\xa9\xd6\x4a\x0f\x92\x96\x17\x3a\xa1\xd7\x88\x7e\x08\x4b\x06\xc3\xa1\xb0\xf5\x33\x15\xe1\xe9\x43\xb3\xfb\x41\xe8\x35\xe5\x2d\xed\x0c\x4a\xb5\xce\x3d\x38\x1a\xf7\x7b\x75\x38\xf1\x6e\xd8\xb1\x98\x2c\x5c\x58\xe0\xd5\xf8\xbe\xe6\x1c\x79\x5f\x89\x2c\x25\xdd\x6e\x66\xf3\x1d\xf4\xf5\xd2\xde\xf7\x10\xce\xe3\x63\x9f\x83\x1f\x2f\x8d\x1d\x29\x92\xdb\x5b\xd8\x1b\x38\xd9\x06\x00\x1e\x9f\x20\xd1\x86\xf7\xba\x56\xa9\xdf\x14\xe1\x6f\x2f\x0d\x01\xb9\xb7\x4a\x7f\xf7\xa2\xd6\xdf\xd5\xcd\xf3\x81\x19\xa5\xa2\x10\x23\x55\x25\xfa\x53\x3e\x29\xa9\x47\x25\x9d\xde\x5a\x43\x05\x37\xeb\x4a\x8a\x65\xbd\xd2\x77\xdb\x3b\x47\xd1\x95\x1b\x8c\x45\xe7\x87\xb9\xa8\xf9\xa4\x0e\xa5\xde\x4b\x12\x30\x04\xc0\xe9\x6c\x69\x95\x58\x35\x7d\xf8\x74\xc9\xe5\x26\x03\x1b\xe5\x9d\x64\x15\x9c\x26\xa2\x5a\xd8\x70\xc2\x22\xb7\x2a\xaf\x54\xcc\xe5\x52\x1c\x51\x5f\x03\xef\x83\xa3\x4c\x3e\x51\x73\x17\xd4\xdf\xce\x13\xb0\x98\x70\xb3\x38\xd0\x8d\x63\x85\x11\x1f\x65\xfd\x30\xee\x6d\x2b\xd6\x26\xfc\x38\x24\x38\x5c\xab\xcc\x61\x72\x00\xa1\x70\x02\x32\xfb\xa4\xba\x70\x13\x57\x81\x98\xf5\x8a\x0b\xfe\xa3\x35\xea\x00\x38\xc6\xd5\xf3\xc8\x12\x35\x80\x5e\xca\x51\xde\x90\x2c\x9b\x4c\x7c\x01\x38\x6f\x3e\x51\x43\xfd\x2c\x81\x8b\x6d\x76\x56\xcd\xa4\x14\xb9\xb2\xf0\x15\xf8\x3e\x8f\x6f\x3e\xac\xab\xa0\x62\x68\x87\x43\x16\x26\x12\xa6\xdd\xe2\x0f\x85\x82\xd7\xcf\xbd\xaf\x86\x79\xbf\x93\x9a\x55\x13\x31\x51\xb0\x03\x67\xb8\xfc\xd9\x37\x0f\x33\xf2\x16\xba\x27\x08\xcb\x2c\x4b\x4d\xdc\x56\xd7\xa6\x79\x18\x59\x25\xc1\x0f\xf1\x13\xd1\xa0\xd9\xe3\xaf\x33\x4d\xd0\xa6\x6d\x38\x62\x85\x1b\x2a\x75\xb9\xa1\x9a\x0c\x79\x1a\x16\x17\x59\x44\xd4\x48\xad\xa6\x48\x03\x81\x8f\x27\x9e\xda\x06\x7a\xa5\x9a\x5e\xe8\x8c\xa2\x17\x3a\x33\xf6\xc2\x62\xc3\xc2\xc0\xe5\xac\x38\x21\x1a\x49\xc5\x95\xf0\xb1\xbb\xa1\x24\xcd\x6d\xcf\x64\xa5\x7e\x01\x28\xf9\xe5\x71\xd1\xb3\x43\x9a\x77\xc9\xf5\xd1\xa3\x11\xaf\x0d\xb8\x31\x14\x5b\x80\x29\x7c\xa4\xe5\x41\x47\x5b\x26\x3b\xdd\xc5\xc7\xbc\x2b\x61\xad\x59\x68\x98\x4f\xea\x44\x1b\x6d\x94\xd9\xd5\xbe\x65\xf6\x53\x47\x77\xb9\xe8\x8e\x55\x18\xbc\x1a\x02\x1e\x0b\x08\x1f\x5f\x33\x9f\xb8\x5b\x1d\x58\x68\x40\xd2\xe3\x63\x95\xa2\x89\xdf\xdd\x3f\x47\xd7\x8d\x5d\xc0\xe0\x4b\x51\x8a\xf4\x15\xb3\xdc\x46\x16\xa3\xab\x3b\x28\x2a\x43\x10\x72\x07\x71\x37\x9f\x50\xc7\xdb\xcd\x1b\x38\xae\x81\x4f\x61\x70\x9d\x1a\x9b\xef\xe6\x5c\x54\xad\xaf\x1f\x69\xb5\x6f\x77\xe9\xed\xd4\x76\xc2\x9c\x91\xba\x4c\x54\x46\x41\xd6\x06\xd6\x14\x12\x8d\x0f\x54\x36\x94\xf7\xcd\x4c\xe3\xe0\x0b\x8e\x2a\xc2\xfb\xba\x3b\xf0\xe7\x68\xcf\x1f\x51\x2f\xee\x46\xa0\x4c\xf6\x5d\xbf\x35\x6c\x64\xdb\x79\x43\x8f\x59\xbe\xa9\xe9\xfd\xdf\xd4\x91\x67\xf1\xa7\x61\x12\x67\xd3\x25\xa1\x41\x0f\x43\xbc\xa8\x99\x01\x51\xc7\x96\xca\xa9\xfb\xbd\xe5\xd0\x79\x76\x3d\x07\x8b\x22\x01\xb0\xfc\xc8\x7b\x4f\xd4\xa9\xf8\xd8\xc1\x52\xd2\x01\xb7\x34\x93\xad\x6a\x49\xa0\x37\x94\x7b\x69\x9b\x34\x4a\xa0\x42\x26\x93\xd3\x74\x5b\x3c\x69\x44\x30\x62\xfe\x0f\xba\x03\x99\x40\xf2\xd9\xdc\x8f\x34\xe5\xde\x8f\x6a\xea\xb2\xcd\x8e\xed\xae\xb9\x2d\xcb\x9c\xe8\xca\x90\xaf\xab\x37\x66\xd3\xfc\x51\x35\xcc\x2c\x88\x19\x20\xc7\xce\x53\xec\x81\xb2\x1a\x64\x36\x04\x12\x4d\x57\x80\x98\xe4\x26\xee\x14\x7f\x75\x37\xf0\x53\x2c\x67\x91\xe6\x4a\x0b\x9c\xee\x12\xb9\xe0\x25\x8a\x6f\xf0\xfe\xe1\xc1\x50\xff\xd8\xd9\x52\x5c\xd4\xd5\x08\xe5\xd0\xec\x57\x9a\x4b\xd6\xa4\x12\xb9\x21\x28\x41\xe4\xc6\xc7\x2a\x82\x8f\x93\x25\x8b\x69\x3c\x46\x23\x53\x14\x2a\xc8\xe4\x5a\x74\x44\xbb\x6f\x2d\x07\xd5\x35\x12\x4b\x81\x32\xb3\x5d\x4b\x50\xc3\x86\xdf\x68\x47\x4b\x7a\x61\x4a\x33\x79\x64\xa2\xdd\x1e\xbe\x70\x0f\x75\x68\x3c\x14\x9e\x12\x92\x88\x8c\x1e\x17\x0b\xbd\x53\xc8\x81\x1f\x7e\x40\x6f\x01\x17\x7e\x56\xf9\x87\xfb\x58\xd5\x3c\xc7\x08\x68\x39\x7f\xef\x58\x49\x23\x83\x1f\x1c\x51\xf9\xee\x96\x52\x3c\xbe\x04\xfb\x21\xca\xf2\x9b\x60\x67\x45\x1e\xf8\xdc\x13\xc5\x2f\x8b\x21\x29\x3c\x05\xfc\x3b\x4b\xbc\xa3\x4e\xf1\x5d\xd4\x29\x44\x62\x97\xee\x08\x35\xb9\x1b\x24\xe5\x86\x8a\xe6\x49\x85\x28\xe3\xa9\x5a\xc0\x16\x30\xad\x8f\x15\xaf\xab\xe7\x33\xc8\xb7\x80\x76\xba\x0f\x60\x09\xad\x9e\x5f\xdf\x43\x7e\x4a\x24\xb1\x7d\x7f\xe9\x38\xbd\x60\xfe\x69\xbc\x0d\x41\xf6\xfb\xc8\xbf\x97\x26\xab\x36\xcd\x48\x42\x4a\xc8\x51\x8a\xaf\x40\xbb\x8a\xab\x29\x7c\x42\x46\x8e\xff\x48\x75\xbb\x57\x6c\x6e\x53\x13\xb3\x7f\x17\x37\xa7\x7d\x9e\xc2\xfc\xbd\x62\xda\xcb\x59\x12\xaf\x84\x51\x04\x60\x56\x2d\xed\x88\xa2\x2f\x13\x7d\x76\xbf\x2b\x00\x3d\xe0\x63\x37\x48\x54\x98\xe6\xa4\x70\xe1\x30\xcf\x48\xc7\x2e\xaa\x99\xd7\x2f\x92\xcd\x22\x67\x32\xf3\x37\x55\x02\xd7\x0f\x07\xbb\x8b\xd7\xca\x25\x27\xd5\xe4\xb8\xab\x22\x85\xff\x4a\x0b\x50\xf8\x73\xbc\x4e\xe9\x16\xd4\xac\x45\xe2\x97\x16\x9d\xe2\xc6\x94\x76\xd3\x49\xaa\xd4\xc3\x93\xb1\xa6\x3a\x1c\xe3\x5b\x28\xc0\x08\xbb\xa2\xef\xf3\x9d\x50\x02\xda\x6f\x94\x04\x32\xa3\x30\x99\x56\x7a\x42\x2c\xf5\x2d\x0c\xae\x65\xb2\x3a\x37\x13\x71\x56\x4d\xea\xb5\x93\x81\x05\xaa\x10\x69\xee\x8d\xf1\xe6\x7b\x66\x16\x6d\xc0\xbf\x65\x08\xcd\x27\x76\x27\xc8\x65\xb0\xec\x13\x59\x68\xe6\xb7\xab\x99\x62\x3c\xd0\xec\x8a\xcc\x30\x96\x22\x17\xf6\x59\x90\x8e\x1e\x25\xde\xe5\xc7\x75\xa0\xe7\x76\x64\xc2\x01\xbb\x5c\x21\x8c\xa2\x5b\x44\x41\x00\x83\xdc\x32\x5c\xae\xfb\x99\x51\xfe\xda\x0c\x6c\x37\xde\xc0\x25\x18\x04\xa9\xba\xfa\x16\xd3\x56\x25\x6a\x34\xc1\x32\xc4\x1b\xd8\x3a\xd9\xe9\x96\xe1\xdf\x79\x92\xae\x00\xf1\xca\xfb\xd8\xe1\xe8\x12\x7f\x4c\x0f\x0f\xa6\x7f\x7b\xab\xb1\xb8\x7f\x83\xf5\x8f\x1c\x49\x44\xf1\x7e\xf1\xa0\x01\xc9\xc3\xdf\x7e\x84\x40\x1e\xc5\xbb\x7b\xf8\x5d\xbc\x82\x23\x63\x2f\x0b\xf4\x38\xdd\x1f\x78\x6c\xf6\x4c\x14\x6f\xdb\x8f\x40\x7d\x2a\xa4\x69\x5b\x9f\x91\x69\xa1\xb1\x1f\x5f\x63\x38\x81\x1b\x84\x71\x03\x35\x6c\xaf\x44\x9b\x78\x97\x6b\x4b\x44\x76\x3b\x99\x63\x24\xb0\x3f\xd8\xc4\x91\x58\x2c\x06\x37\x9f\xe5\x26\xe9\x58\x4c\x18\x57\x02\xc2\x27\x69\x63\x17\xd7\x8e\x3c\xe3\x91\x56\x4d\xeb\x3d\x33\x9d\x46\x19\xc8\xe8\x31\xfe\x7a\xfe\xd6\xa6\xdd\xd1\x80\x67\x23\x44\x14\x53\x4d\x11\x7d\xac\x9c\xdc\xc0\xbc\x1a\x82\x40\x50\xc4\x35\xe8\x29\x0b\x1b\x78\x5d\xdf\x21\xeb\xdb\x8e\x6f\xc4\x30\xce\x96\x76\x81\x60\x6e\xfd\x0c\xde\x92\x4d\x6d\x8e\xa8\x0a\x21\xea\xa7\xf4\xae\x34\xac\x03\x7e\x09\x8b\x0a\x95\xa3\xd3\x6a\x5e\xa1\x9d\x86\x59\x98\x4d\x2b\xea\x12\xe6\x6e\x70\xda\x7b\x4e\x4c\x8e\xc3\x05\x19\x17\x92\x97\xd4\x4d\x84\x1c\xd4\x8d\x2d\xf8\x40\xe2\x8e\xca\x67\x22\x2a\xff\x28\xe6\xd7\x77\xb0\xc8\xf8\x24\x50\x23\xe5\x49\xda\xb6\x1d\x85\x29\x2c\xe9\x63\x2a\x86\xf1\x63\x2e\x2d\xe5\x60\x62\xc1\x07\x10\x0a\x52\x77\xa1\x04\x46\xb3\xb1\xd9\xee\x27\x6f\x3f\x0b\x54\x97\xf3\x4c\xb0\x79\x98\x01\xbe\x75\x83\xba\x70\x02\xe1\x52\xbe\xfb\xb3\xb1\xc7\x07\x7e\xe6\x49\xbc\xcc\x40\xda\xbb\xa8\x70\x83\x59\x02\xc6\xfa\x1c\x96\x8a\x88\x96\xf9\xbb\x1e\x9a\x91\x50\xa7\xc2\x14\x63\x72\x84\x8f\xc7\x3e\x9c\x0e\xe3\x15\x9b\xb9\xf2\x18\xd2\x14\x80\xb0\xf8\xb8\xc2\x71\xb3\x6f\x81\x54\x7c\x36\xe9\xdd\xa0\xce\x2c\x53\xd4\x35\x34\x0b\x36\x4e\x93\x28\x72\x10\x1c\x78\xf1\xc3\xaa\x10\x77\xb8\x8e\x22\xae\x3f\xea\xf5\x2d\x3b\x5f\xc7\xad\x5f\xac\x0f\x3e\xa9\x84\x76\x8b\xb3\xcd\xd4\x66\xc3\x24\xee\x50\x27\x0b\x26\xe1\xa7\xb4\x90\x01\x37\xe0\xb4\x48\x8a\xf2\x3e\x74\x1b\xd8\x78\x27\x7d\x75\xa9\x92\x80\x77\x06\x27\x22\xf5\x51\x32\x90\xc2\x5d\xa8\x08\x1d\x8e\xc3\x24\x61\x85\x9f\xd4\xb6\x8a\x82\x3a\x46\xd8\x07\xce\xe8\xad\x6c\x6d\xa9\x32\xf3\x49\x5f\x01\x18\xe5\xa3\xd4\x66\xdb\x60\xe1\x71\xa5\x53\x2d\x45\x57\x33\xf6\x09\xca\x1f\x63\x23\x89\xf2\x1f\xdd\x80\x60\x69\x14\xc3\x9b\x87\x76\xa7\xb6\x93\x1a\x21\xa2\x40\x08\x73\x4f\xa5\xed\xf7\x9c\xf6\xa6\xc9\x19\xdc\x83\x56\xc7\x13\xa8\xd2\x71\x8a\xc4\xbc\xe2\xc8\x57\xde\xc0\xfe\x80\xcb\xbc\x5d\xd7\x5a\x5c\x8a\x46\x8e\x55\x49\xc0\xa8\x4a\x52\x98\xc9\x56\x44\xee\xc6\x27\x2c\xcf\xff\xe3\x7f\x46\x32\xc6\x0e\xae\xef\xa1\xfb\x75\x4a\x57\xaf\x8c\x06\x43\xde\xeb\x4e\xb0\xa6\xb8\x4d\x3c\xe0\x0b\x5a\x41\x65\x43\xa5\x94\x79\x11\xe0\x0d\x93\x14\x2b\x53\x84\x8d\x8b\xdf\xe2\xe3\x2a\x12\x69\x71\xbf\x83\xdf\x3b\x92\xa4\x52\x36\xb4\xb9\x8a\x79\x68\x76\x4e\x44\xfe\x58\x3a\x73\xbf\x63\x16\xd7\x03\x7b\xeb\x84\x8d\x90\x6b\xf0\xad\xed\xac\x4d\x9d\x2e\xdb\x51\x74\x89\xa7\x14\x15\xd1\x29\xd7\x07\x5d\x1a\x15\x7f\x38\xe5\x13\xb8\x1b\x81\xea\x2d\x9e\x2c\x61\x3b\x94\xf4\x82\x49\x1b\x5e\x78\x8c\x75\x26\x84\x77\xde\x47\xd4\x0e\x6c\xe3\x2b\xc1\x3f\xa0\x6f\xe4\xe3\x9a\x18\xa9\x19\x85\x16\x55\x4c\x84\xf7\x27\x14\xe1\xb5\x66\x40\x36\x43\xbb\xa3\xb1\x38\xbb\x01\xed\x11\x44\x08\x5f\x68\x29\xd6\x98\x9b\x88\x4c\x4a\xba\xce\x0e\x36\xe6\x60\xe9\xbb\x26\x8a\xc5\xf4\x1a\x6d\x7c\x6c\xe8\xa3\x9b\x93\x9e\x2f\xbf\xd8\xdc\xb7\x30\xed\xf5\x31\x4f\x91\x61\x46\xba\x74\x5c\x7d\xe3\x1b\x81\x87\xd0\x7d\x4f\xf9\xcb\xcc\x08\xc9\x84\xc8\xcf\x34\x1c\x07\xc0\x07\x75\x7c\x81\x76\xc5\xa6\x6b\x1d\x1e\x15\xc3\x2b\xc6\xd6\xe3\xe3\x4a\xb5\xb9\x58\x66\x44\x1f\x35\xed\x5b\xbd\x57\xc7\x8a\x01\x78\x5d\xcd\x7b\x03\x76\x2a\x0a\x6f\x35\x78\x42\x33\xca\x93\x41\xb2\x14\x32\x74\xc1\xa9\xb8\xcc\xcf\x3b\xe9\xd7\x9d\xce\x03\x3e\xbf\xa3\xd8\x77\x58\x40\xdf\x53\x82\xa2\x1c\x44\xd2\xd3\xf8\xf0\xc9\x89\xc7\xa9\xbe\x15\x6c\x7d\x86\x73\xd8\x8f\xc6\x2e\xc0\xf8\xaf\xbf\x80\x37\x88\x82\xc1\x6d\x32\xa3\x30\x1a\x57\x4a\x13\x8b\x03\x13\xc6\x61\xdc\xdb\xa6\x18\x6e\x51\x37\x40\x3b\xe7\x0d\xd5\xf9\xdc\x8a\xb6\x3b\x22\xc5\x0b\x0a\xf2\x47\xed\x8f\x97\x38\x56\x7b\x47\x81\x28\x52\x3b\x08\x63\xaa\xfd\x16\xd1\xaa\x53\x4d\x7a\x51\xaa\x6f\xa7\x82\xcf\x8b\xcd\xeb\x0c\xc2\x98\x10\x6b\xc5\x36\x45\x60\xef\x28\xdc\x5c\x35\xfa\x43\xdd\x4d\xb8\xa6\xb2\xff\x95\xd0\x4c\xfb\x94\xfd\xee\x58\x41\xea\x6e\x31\x68\x0a\x85\x9c\x0f\xe9\xa9\xc3\x56\xfc\xa8\x02\x00\xc4\x70\x8f\x16\xe5\xfd\xd9\xd8\xe3\x22\xae\xab\x99\xbb\xbb\x6e\x38\xf7\x15\x9b\x0c\x4d\xda\x01\xee\x8c\x8b\x2d\x2a\x0f\x60\x86\x67\xc4\x9f\x1f\xd5\x89\x32\x73\x81\x9c\xb7\xb6\x93\xa5\x57\xbc\xaa\x4f\x95\xb7\x4f\x11\x5e\x2e\x2c\x3c\x55\x5c\x18\x0a\x48\xf7\x68\xff\xe0\xa6\xa0\x0d\x89\x9c\xe6\x4d\xe2\x77\x39\x1d\xa8\x26\xed\x35\x7e\x1a\xb8\xbb\x6b\x81\x2f\xe0\x73\x26\x03\xbf\xf0\x0e\x2c\x17\x4b\x38\xc1\x96\x63\x49\xde\x1a\x53\x28\x8f\xfa\xf5\x16\xcc\x12\xb9\x62\xb9\x53\x04\xbf\x8c\x4a\x02\x1a\x62\xb7\x90\x93\x20\x30\xdd\x4a\xe2\xef\x58\x50\xef\xe9\x82\xe1\x59\x6c\x2f\x37\x3d\xb7\x77\xce\x75\x6a\x55\x70\x70\xa9\x14\x04\xf6\x6d\x77\xca\x3b\xf5\x7b\xba\x5e\x72\x51\x91\xfd\x9c\xa9\x74\x09\xff\x5e\x73\x69\x94\xc6\x25\xde\x65\xf6\xa5\x7c\x52\xb1\x08\x87\x66\x9b\xa3\xd8\x2c\x71\x7b\x80\x15\x91\xe8\xf1\x89\x3a\x92\xab\xe7\xf6\x4d\x1a\xe6\x6b\x85\x33\xdc\xd0\x03\xbf\x98\xc8\xc3\x5f\x9f\x52\xd6\x2c\x4d\x4c\x96\xe3\xe5\xd7\xb5\x53\x37\xdb\x93\xbd\x7b\x81\x6c\xcd\x72\x13\x77\x1a\x8a\x0f\x49\x57\xb9\xde\xa9\x73\xd2\x11\xed\x74\xc4\x8e\xce\x8a\x89\xe4\xe6\xab\xeb\xca\xe7\xad\x84\x69\x3e\x32\x51\xb4\xb6\xad\x34\x38\xb3\x6f\xc1\xd3\x39\xba\xec\x1c\xf1\xa7\xa2\x00\xf6\x6b\x98\x2e\x48\x52\xbb\x3a\x9a\xcf\xd1\x30\xc1\x48\x80\x08\x30\x16\x3f\x21\x2d\xef\x47\x9d\x5b\xcd\xfa\x6b\x5a\xc4\xe8\x82\xe6\x67\xae\xec\xa8\xe7\x98\x54\xdb\xdd\x2a\xbe\x0f\xa4\x2b\x7c\x3c\x79\x4a\xc9\xa2\xd8\x57\x87\x36\x86\x06\xf9\xdc\x41\x07\x04\x22\x88\x90\x08\x10\x78\x1a\x86\xdb\x2a\xc1\x31\xa3\xde\x28\xcb\xb7\xfb\xa6\xf9\x23\xda\xe4\x3e\xc0\xae\x91\xb1\x93\x86\x63\xdb\x80\xce\xa8\x4c\x16\xd1\xa2\x43\xa5\xa1\x31\xf1\x20\x09\x4d\x81\xd4\xb1\x4b\xf9\x63\x74\x2b\x58\x13\x57\xc6\x5a\x1c\x5a\xcd\x25\x70\x0d\x04\x70\x80\xe9\x56\xb1\x36\xb8\xb0\x87\x2c\xdb\x69\x4b\xef\xf3\xd4\xd8\xc5\x3e\xc3\x2b\x62\xae\x2c\xdc\xf3\x67\xd8\x74\xe8\x02\x7c\x67\x73\xb9\xda\xa5\x11\x48\x48\x55\x94\xf7\x92\x1b\xf8\xf7\x73\x8a\xa1\x4d\x53\x66\x80\x84\x49\x3e\xac\xed\xf3\xe1\x40\x50\xb5\x9d\x30\x6b\x27\x23\x35\xdd\x8f\xbb\x6a\xb4\x54\xde\xd1\x98\x54\x92\xed\xc2\x55\xf7\xad\x29\x5e\x62\xa3\x34\x31\x44\xdf\x21\x01\xac\x6f\x0d\xd8\xb0\xd7\xcf\xfb\x53\xbe\x15\x33\x4d\x5a\x66\x48\x58\xfe\xed\xd8\xeb\x13\x4d\xb7\x54\xcf\x0d\x9d\x58\x5c\x97\xcc\x97\xd3\x75\xc9\xe4\xb9\x87\xa7\x84\xf1\x37\x46\x61\xba\x36\x5d\x62\x12\xa5\x37\xe3\x06\x9a\x9d\x6e\xe0\x87\x3a\xc3\xfd\xb0\xd2\x2a\x93\xd6\xf2\x70\x14\x0d\xa7\x14\x9f\xde\xeb\x0a\x40\xce\xbc\xa6\x92\x31\x3f\x0c\xcc\x33\x0c\x93\xd8\x72\x66\xaa\xe6\x3d\x3d\xc6\xa8\x0e\x79\x1e\x25\x23\x72\xdf\xc5\xea\x81\x13\xbc\x0d\xcf\xc0\x27\x7a\x96\xc1\xc6\xb6\x1b\xe6\xdb\x7c\x86\x34\xd5\x52\x7f\x8a\x89\x5f\xfe\x8f\x49\x11\x02\x94\x94\x7a\xf1\xf4\xaf\x69\xca\x92\x6b\x25\x35\x8f\x2c\x63\xb5\x4f\xe4\x82\xa7\xc9\xea\xf0\x71\x89\xf1\x02\xc3\x26\xe4\xcb\xa4\x5a\x4b\x1e\x8b\x4f\x2a\x28\x07\x9a\xc3\xea\xd8\x2c\xec\xc5\xd6\xa9\x02\x20\x41\x38\x39\x56\xca\xc9\x27\xd5\x30\x93\x69\x17\xe6\x71\x46\x39\xac\xef\xe0\x4f\xe1\xff\xcf\xaa\x0a\xef\xbf\x57\x5c\x08\xeb\xba\x5c\xfe\x53\x4d\xbe\x9f\x0c\x96\x4c\x3e\xe3\x39\xbc\x3f\x80\xcb\x44\xbd\xfe\x18\x7d\x1d\xd6\xd9\x7d\xa5\x49\x77\x15\x5f\xc7\x05\x09\xcf\x90\x91\x0e\x6c\x1c\x32\x2d\x95\xa0\x3e\xe9\x2f\xf9\x44\x11\x10\xc4\xdd\x34\x89\x79\x74\x13\x1b\xf7\x33\x14\x36\xf8\xa4\x52\xda\x3a\x34\xbb\xd0\xcc\xf2\x74\xd4\xeb\x71\x30\x8b\xa0\xef\xdf\x04\x1e\x0c\xf3\x6f\x54\xe1\x6c\x44\xfd\x7c\x3c\x53\x16\x3e\xd2\x1d\xaa\xd3\x0e\x16\x91\xda\xde\x28\x32\x79\x92\xb2\x72\x06\xb2\xc8\x07\x81\xb2\x1a\x9c\xb8\xa2\xfa\x75\x1c\x97\xc9\xd5\xe5\x1a\x6f\xc7\xda\x3b\x14\xbf\x8b\xc2\x18\x7d\x99\xc3\x60\xb9\x54\xe0\xb0\x12\x7e\xbe\xaa\xf2\xa2\x5f\xfe\x47\xff\x48\xa1\x0f\x1f\x50\x48\x22\x3a\x64\xd5\xea\xc7\x62\x33\xe9\x76\x09\xd2\x3e\x3f\xbf\x81\x6b\xdd\x38\xaf\xac\x78\x9e\x44\x9d\x47\x3c\xfe\xec\x0a\xe1\xd2\xf8\xce\x54\x31\x66\x8a\x8a\xb9\x3c\x0e\x10\x28\x26\x0f\xee\xe0\x22\x86\xbf\xc5\x82\x9b\xa8\xac\xfc\x06\x26\xc6\xf8\x04\xa1\x17\xfe\xee\x70\xe5\x05\xee\x5b\x68\x66\x36\xce\x43\x57\x0f\x42\x1d\xfb\x9a\x1a\x5c\xb9\xa6\xa8\x70\x45\x60\x80\x2b\x12\x0c\xb3\xd5\x8c\x9b\x81\x62\x0e\xbe\xa0\x80\x74\x17\x15\x62\xc1\xa4\x29\x0d\x0a\x36\xbc\x6c\x2e\x39\x1e\x91\xd0\xad\x61\xc7\x49\x6d\xcf\xa4\xbe\x80\xea\x5c\xd7\x82\x8f\x02\x6a\x62\xe9\xae\xcd\xf2\x70\xc5\x44\x4a\x0f\xed\xed\xc0\x77\xbe\xde\x1e\x3f\xe5\x59\x1f\x57\x28\x86\xca\x9d\x16\x66\x1d\x6c\xd3\x87\x44\xe1\x6b\xdf\x18\x85\x36\xed\x18\x94\xc4\x84\x91\xdd\xc3\xef\xaa\x91\xc8\xde\xbd\xcd\x6c\xd9\x0e\xf3\xb0\x2d\x15\x18\xec\x2a\x74\xf7\xbd\x03\xf7\xd5\xae\x8d\xba\x2c\x3e\x1e\x75\x18\x22\x09\x53\x73\x42\x15\xa1\x6e\x2b\x33\x78\x5e\x25\x5e\x76\x30\x8c\x92\x35\x9b\x4e\xfb\xdc\xe9\x8e\xea\x79\xa3\xd1\xce\xff\x3e\xf6\x4d\xf2\xc6\xc4\xaf\xfe\xb9\x11\x74\xa8\x10\xa8\x30\xa4\x9b\x4f\x2a\x7e\x6a\xee\x20\x49\x14\xb5\x4d\x2e\x7a\xfa\x0c\x04\xd6\x2b\xf8\x1d\xba\x70\xa9\xff\x55\xb9\xa8\x09\x45\xeb\xde\xb8\xb0\x08\x35\x9c\x3e\xcd\x05\x35\xb8\xd9\x19\xb1\x9e\x35\xf6\xf6\x76\xc2\x7a\xf0\x71\x6b\x8f\xa2\xc6\x36\xbd\xac\x1f\x02\x45\x8c\xc7\x77\x59\x91\x64\x5c\xae\x18\x8e\xbd\x7b\x9b\x26\x5e\x8e\x24\x02\x51\x6c\x17\x9e\xdf\x62\x97\x43\x4f\xe7\xcc\x2f\xc8\xed\x9f\xc0\x0f\x28\x7a\xe2\xef\x81\x89\xd7\x76\x61\xb7\x3a\x79\x11\x49\xa9\xcf\xff\x8d\x89\x22\x53\xdc\x08\x54\x12\xc0\x53\x26\xa8\x17\x71\x06\xc5\xf0\xd6\xb1\x0a\x13\xc9\x28\xb1\xbc\x9c\xe7\x27\x9b\xfe\x3b\xd4\xbc\x45\x78\xc3\x14\xa6\xb0\xb8\x8f\x4e\xfc\x34\x7e\x11\xf8\xa6\x79\x98\xd9\x19\x8f\x33\xfa\x63\xc4\x93\x48\x57\x4f\x8d\x15\x79\xdd\x39\xcd\xbd\x87\xea\x09\x62\xab\x5d\xad\x1a\xe6\x6f\x66\xf9\x62\x75\x1e\xf8\xab\xcb\x81\xa2\x39\x3f\x8b\xef\xc6\xa5\xff\x54\x2d\xdd\x5e\x92\xf6\x6c\x32\xca\x14\xf6\xe0\xb4\xc2\x1e\x9c\x1e\x7b\x93\x1a\x27\x32\x06\x89\x07\x78\x92\xd2\x12\x91\xfb\xa2\xef\xe7\xff\x28\x89\x25\xd4\x0c\x6f\x0f\x4d\x7b\xd9\xf4\xac\x92\x31\xc3\xcb\xe4\x63\x35\x7b\x69\xa2\x24\xee\x11\x59\x2c\xbc\x29\xa0\x18\x70\x57\xb7\x95\xaf\xff\x2d\xc5\x9e\xf3\x16\x4c\x37\x62\xf1\x77\xd5\x97\x2d\xa5\xd6\x30\x90\xdb\x15\x09\x1d\x74\xf2\xa4\x2b\x08\xf7\x4d\xe7\xb1\x86\xf0\x0c\x7c\xf1\xc9\x89\xd7\xcf\x7e\x30\xd6\x32\x93\x0c\xc0\xa1\x80\xee\x3f\x3d\xdf\x9a\xda\xff\xc2\x81\x8d\x4b\x54\x88\x13\x49\x4f\xf2\x13\xd8\x9a\xc7\x11\x78\xb9\xb9\x77\xaf\x08\x71\x51\xb7\x52\x9f\x42\xf5\x19\x36\xfd\x89\x89\xef\xac\x34\x26\xc5\xd2\x43\x4f\xee\x04\xa6\x96\x84\x72\x7e\x13\x25\x20\x81\x3e\x16\x16\xa6\x74\x53\x4e\xf5\x83\xaf\xab\x4a\xd2\xfb\x75\x4c\x86\xc3\x34\x59\x91\xf2\x08\x3e\x72\x04\x37\xca\x27\xca\xc9\x8e\x9e\x5f\x7e\x7e\xaa\xa2\x3b\x80\x8b\xbf\x8b\xe5\x27\x1c\xf9\x9b\xad\xf5\xbe\x85\x66\x27\x0d\x15\x25\x29\x9c\xe1\xbd\xb1\x77\x92\xf7\x82\x2a\x4f\x62\x66\x39\x77\x57\x6d\xf3\x39\xd7\x29\xaf\x72\x4c\xa6\x86\x76\x45\x79\xee\x4a\x73\x2b\x16\x1f\x47\xdf\xfe\x5e\x1d\x22\x37\xb6\xbd\x24\x0f\xc9\x6d\x01\x46\xe5\x70\x23\x6e\x3a\xf4\x98\xaa\x2c\x7e\xbb\x8e\x96\xbf\x67\x63\x9b\x1a\x47\x6f\x8d\x8d\x75\x4d\x93\xc8\x5d\x2b\x31\x1a\x27\xab\xb1\xc2\x53\x63\x9c\x0c\x1b\xeb\x3f\x90\x2d\xc2\x1a\xba\x4f\x61\x14\x0c\xeb\x19\x6a\x0b\xf3\x31\xd6\x96\xa8\x8c\xca\xa2\xce\xba\x98\x68\x95\xad\x4b\x5b\x04\x21\xcc\xdd\xa0\xbc\xaa\x6b\x60\xbd\x1d\xdb\x7e\x5e\x73\x5b\xfe\x07\xb5\x71\xa6\x5b\x8a\x31\x72\x7a\xa2\x41\x0e\x71\x96\x3f\xaa\xc5\xd8\x50\x94\x87\xdf\xf8\x31\xae\x13\xe5\xe6\x2b\x4a\x78\xe1\x03\xc5\x5b\x7f\x96\x6e\x4c\x00\x80\x30\xeb\xc2\xc3\x4e\xaf\x03\x6b\x12\x5c\xb8\xd2\x46\xa7\xa7\xfc\xee\xab\xc5\xd9\xe9\x80\xb6\x20\x52\x00\xee\x74\xc1\x48\x1c\x75\x15\xc5\x6e\x68\xa3\x8e\x7b\xbf\x5c\x16\x57\xaa\x63\x57\x55\xac\x76\xd4\xab\xf4\xb6\xbf\x48\xbd\x7b\xe7\xb2\x8a\xdf\x11\x8d\x3b\xf2\x32\x70\x1f\xf7\x08\x61\xc4\x03\xe6\x40\x96\xc8\x57\x15\x59\x99\xa3\x47\x2b\x9e\x2d\x7a\xb5\xbb\x68\x76\xca\x71\xaf\x7c\xf9\x45\x17\xb7\xa9\xae\xdb\x9e\x16\x9e\x2b\x2d\xe9\xff\xeb\xe7\xd1\xaa\xc3\xdf\xed\x6c\x15\x96\x02\xa1\xfa\xee\x89\x47\x5c\x5d\x54\xf3\x11\xbf\x40\x5d\x36\x21\xea\xf2\x3c\x61\x7b\xd0\xc7\x46\x29\x18\xe8\x53\xac\xb6\xed\xa8\xb5\xa0\x2a\xf8\x08\x8d\x2b\xc2\x24\xde\x1c\xab\x6c\xf5\x98\x1e\x5f\x9b\xd1\xac\x9b\xbf\x4c\x56\x14\x76\xfb\xe9\x09\xe9\x06\xcb\xf2\x56\x1a\x32\x7b\x5a\x8a\x9a\x45\x31\xba\xfc\x8d\x5a\xbe\xd9\x24\x8e\xc0\xff\x81\x18\xe7\xa3\xc0\x73\xe8\x7c\xe4\xe2\x81\x65\xcb\xa9\x99\x0c\x5d\xd0\x45\xf1\x49\x25\x86\x2c\x5c\x29\x01\x2f\x65\xb3\x72\x51\x9c\x96\x80\x14\xc8\xdd\xd0\xb4\x89\xdb\x9c\xe1\x4b\xe7\x45\x7d\xf9\xd1\x0a\x91\xc7\xc2\xc2\xfe\x66\x96\x5b\x1b\xad\x26\xe9\x72\x91\xba\xe0\x15\xa2\x9c\xcb\x00\x0c\x3e\x51\x30\x59\xb6\x1e\x21\x97\xee\xea\x10\xdd\x6a\x04\x24\x0d\x73\x13\xc6\xc4\x01\x20\x00\x5e\xdd\xaf\xa6\x7b\x72\x3a\x5c\xae\x51\x8e\x1a\x95\xcb\x30\x7c\xe1\x83\x0b\x66\x88\x3c\xfe\x90\xed\x04\x9f\xb9\xce\xbd\xe9\xb9\xdd\xc3\x54\xb1\x2d\xdf\xd9\xba\xad\x06\xb3\x3f\x53\xfd\xf8\x51\x1c\xc6\xd9\x28\x85\x6d\x56\x70\x4c\xd7\x62\x03\x86\x09\x71\xf7\xba\x7a\x1e\xed\x24\xce\xd3\x24\x8a\x6c\x87\xa9\x64\xb0\x21\x6e\x28\x96\xa2\x5d\x2d\x0f\x02\xbe\x86\x17\x8e\x72\xc4\xa9\xba\x3a\xed\x30\x32\x6b\x45\xe0\xe4\x06\xaf\x8f\x69\x1d\x91\x1b\x81\x1a\x0a\x3e\x53\x02\x27\x65\xd6\x3e\xee\x6b\x08\x6f\x8e\x3d\x01\xe1\xf5\xb1\x4a\x97\xd7\xb1\xc2\x85\xc3\x94\xac\x06\x2a\x90\x3f\x23\x5e\x35\xd1\x7d\x57\xb3\x6c\x63\x85\x0c\x3b\xa7\xda\x84\xdc\x0c\x54\xec\x33\x07\x3c\x09\xaf\x1f\x3c\xb8\x41\x8a\xcc\xfc\x57\xa5\x97\xc6\xf4\xbc\x32\x30\xb5\x39\x34\xdb\xbb\x57\xe0\xd1\x8d\x0a\x3c\xda\x89\x3a\xd7\xcd\xf2\x77\xc3\xd8\xc4\x6d\x21\x57\x15\x58\xbe\xaa\xf0\xdf\xa8\xa4\x5a\x87\x66\x9b\x51\x11\x8e\xf9\x27\xb8\xae\x68\xbb\x8a\x37\xfe\x0f\x5d\xdc\x99\x87\x6d\x6b\x96\x22\x2e\x4b\xbb\x0a\x97\x82\x42\xeb\xf7\x92\xa4\xf1\xa3\x64\x94\x5c\x57\x6f\x71\xd6\x15\x11\x8b\x9f\x73\xfa\x04\x8b\xfb\x3d\x93\x65\x61\x99\x65\xdc\x9b\x2a\x58\x0e\xfa\xe5\x81\xa0\xdf\x0b\x14\x36\xe0\xae\xe6\x00\x50\x73\x65\xe8\xe1\xc1\x97\xb1\x86\x8a\x94\x77\x1e\x2f\x51\xbb\xb3\xa0\x1a\x12\x90\x09\x2d\x77\x3e\xae\xb8\xe0\x43\xb3\xcd\xae\x5d\x7a\x7e\x8a\xbc\x8c\x54\xb7\x3c\x5d\x2c\xc3\x74\x61\xdb\x6f\xd6\x05\x75\x3d\x9b\x0e\x0c\x33\xba\xc1\x4f\xfe\x44\x8d\xae\xfe\x44\x95\xd9\xb3\x3e\x29\x43\x35\xdc\x60\xf0\xeb\xec\x77\xe1\x91\x7e\x1b\x9e\x0e\xfb\xe9\x6d\x57\x50\x1a\x98\xd8\x80\x78\x86\x73\x6f\xa7\x6a\xe1\xda\xc6\x67\xb0\x44\x85\xf9\xc7\x47\x3c\x43\x93\xe6\x6b\xdb\x7d\xad\x66\xa8\x48\x33\xfe\x27\xad\x88\xcd\x14\x6d\xac\xf5\x46\xc1\x31\xee\xff\x16\x8a\x30\x32\x3d\xaa\x38\x3d\xab\xe3\xa3\xfb\x48\x58\xd5\x2c\x6f\x9a\x51\xb9\xab\x30\xc8\x77\x15\x6e\xad\x6b\x56\x92\xd4\x76\xa6\x3d\xee\xee\x96\xa2\x27\x43\x7d\x90\x8f\x29\x20\xe3\xbf\x51\xa4\xec\x69\xd2\xb3\x29\x3f\x15\xe4\x24\x9f\xe8\x04\x97\xa7\xbb\x60\xe8\x6e\x96\xa8\x2b\x42\x13\x3d\x4e\xab\xcf\x69\x92\x3b\xb5\x5e\xc9\x44\xb8\x8c\x86\x07\x83\xbc\xfd\x1a\x5d\x87\x8c\x60\x2a\x1e\xff\xab\x81\xe2\xe7\xf8\xa6\x92\xa3\x3e\xac\xf1\x3c\x8d\x09\xf9\x70\xf8\xd1\xff\x73\xac\x84\x1d\x2e\xa9\xd9\x81\x9d\x88\x07\xf0\x5d\xef\x91\xe7\x2d\xd9\x5b\xb4\x6f\xae\x97\xda\x87\x49\xdc\x7b\xa2\x78\x8c\xc8\xf2\x1e\x07\x7b\x31\xaa\x39\x57\x02\x45\x4e\x7d\x8d\x56\x26\xba\x1f\x98\x2a\xc1\x43\x9d\x6e\x29\x2e\x8a\xbb\x81\x62\x31\x6c\x50\xc8\x23\xa4\x8f\x4a\xae\xf8\x34\x42\x31\x80\x27\x99\x94\x1f\x06\xe6\x2e\xb9\x3c\x4e\xbc\x03\x45\x69\x04\xe4\x34\x92\x2e\x48\xa7\xc0\xa9\x3c\x08\x28\xe9\x42\xa2\x73\xae\x06\xc6\xff\x52\x33\x07\x19\xc4\xb4\x22\x5f\x3e\x11\xf8\xeb\x87\xc4\x88\xb2\xa9\xe2\xee\xcf\xa8\xf5\xd6\x8e\x42\x1b\xe7\xd9\x76\x7a\xef\xac\xf3\x83\x71\x63\x27\xfa\x53\xdc\x84\x40\xc9\x3c\x3f\xc4\xbb\x81\x97\x4e\x7d\x97\xee\x01\x63\xd7\x28\xbd\xa2\x8c\xbb\x45\xc9\x1f\xa4\x76\x25\x5c\x31\xd1\x0c\x6d\x67\xec\xd0\x37\x79\xa7\xf3\x19\x56\x85\xe8\x8d\x79\xfc\xc6\x2d\x25\xd5\x70\x54\x55\x9f\x73\xb3\x94\x24\x53\x8a\xbc\xf7\x52\xe0\xb3\xa4\xef\xd2\xaa\x94\x51\xd4\x1a\xc7\x93\xda\x44\x7a\x4a\x2f\xb9\xb2\x2b\xbd\x70\x3e\xf1\x15\xf7\x3c\x32\x71\x1e\xb6\xa7\xe9\x11\xa2\xb2\xf3\x74\x4b\xbb\xb9\x73\x5e\x71\xe8\xe7\x9f\xa0\x36\x9f\xbc\xb6\x9f\x73\x57\xdb\xb1\xc9\xab\x6b\x69\xb8\x94\xc4\xa3\x76\x64\x21\x67\x2b\xc0\x77\x10\x27\xf1\xb1\x87\xab\x99\x30\x1a\xa5\x96\x86\x7b\x39\xbd\x18\x2b\xa2\xb3\xab\x63\x2f\x05\x79\x51\xc9\x97\x6f\x6f\xed\x56\x0c\x7c\x70\xad\x5f\x11\xb4\x69\xe0\xdb\x99\x17\x3d\x14\x12\xa4\x0d\xc5\xbd\x6b\xa4\x33\x17\xa7\x02\x0f\xeb\x3c\xea\x80\xf3\xed\x24\xee\xd9\x38\x14\xed\x71\x1d\xe2\x49\x58\xe7\xc6\xd4\x86\x18\x2b\xd2\x92\xc9\x77\xcb\x53\x13\xbe\xd4\x70\x46\xab\x0f\xdc\x75\xaf\xa0\x63\x4d\x91\xb9\x33\xa5\x1d\x7e\x81\xa7\x72\x5d\xd3\xcd\x4b\xd9\xd4\x95\x80\x4c\xdc\x03\xca\xcb\x61\xe5\x8f\x68\xe5\xac\x23\x75\x76\x7b\x98\xad\xb5\xfb\x61\x3b\xd3\xea\xb6\x17\x82\x52\xab\x5a\xcb\xe0\xae\x26\x8f\xa9\x94\xfd\xce\x58\x61\x6e\x3e\xd4\x10\xf1\x75\x05\x5a\xbd\xa3\x9c\xfa\x39\x9a\xf4\x10\x69\x1f\x0f\x41\xbb\x39\xf6\x5a\x72\xe7\x91\xfe\x88\x4a\x25\x99\x4e\xa6\x86\xa0\xfd\x88\x50\x63\x66\xa2\x04\x47\xdf\x25\x33\xce\xf1\xd8\x58\xcb\x62\x5f\xf4\x4d\xf8\x24\x19\xf0\x6d\x62\x71\xbd\x49\xd7\xc8\xc7\x9e\xd7\x27\x1a\x0d\xbc\x50\x24\xf7\xb2\x54\x6a\xf0\x81\xae\xa8\x67\xa4\xb1\x9a\x30\x22\x52\x08\xb0\xe8\x99\xf3\x89\x6a\xaa\x76\x6c\x3b\xec\x30\xc4\x10\xd9\xf3\x85\x80\x4c\x29\xcc\xc1\x89\xb1\x86\xbd\xec\x76\x41\x40\x9e\xdb\x74\xbb\xc7\x83\x9e\x1f\xab\x30\xf2\x9c\xa6\x39\xfc\xa3\xb1\xff\x66\x50\x0d\xc3\x42\xed\x42\x13\xd3\x0d\x4c\x16\x0f\x57\xba\x83\x35\x54\xa8\xa6\xe3\x38\xa1\x00\x6b\x81\x72\x02\xf2\xcc\x73\xb8\x39\x41\x79\x28\x7a\x93\x6c\x0d\xaa\x2f\xf0\x9e\x9f\xe8\x59\x04\xa4\x20\x78\x9f\x10\xc5\x46\xc0\xb2\xa3\x82\x0f\x26\xaa\xb0\xb0\xd7\xcf\x25\x91\xc3\x6a\x3f\xab\x19\xbf\xcf\xaa\x30\x27\xb2\xf6\x35\xc3\x7f\xaa\x22\x95\xfd\x2e\x52\xa9\xfe\xc0\x1c\x68\xe0\xd2\x29\x7a\x0e\x48\xb8\x4f\x20\x20\x45\x78\x74\x3b\x50\x9a\x81\xeb\xe3\xcf\x2b\xf2\x4a\xeb\xf4\x18\x1b\x9e\x98\xe5\x3f\xde\xc2\xbd\x0a\x56\xcb\xb1\x29\x3d\x3f\x78\x9e\xca\xd2\x40\x02\xf2\x10\x15\xcb\x61\x2b\x4c\x16\x08\xee\x10\xa4\x62\xbc\x12\x99\xcc\x51\xf5\x74\xe3\x30\xdb\xa6\x9c\xdb\x6d\x25\xc6\xbc\x15\x6f\x57\x71\x3c\x2e\xb8\x13\x5d\xea\xa4\x5f\xc7\xcc\xc1\x87\x81\x07\xf4\xe6\x61\x6c\x22\x5a\x92\x9a\xa5\x15\x4d\x60\x3d\x4f\xf4\x13\x55\xb4\xee\x98\x74\x59\x37\x9c\x4e\x05\xbe\xff\x72\x4a\x71\x43\xf5\xd2\x64\x35\xef\x53\x3e\x07\xbb\xff\x07\x08\x49\x70\xe1\xf7\x54\x5f\xe4\xa7\x81\x9a\xa1\x38\xa6\x2a\x03\x97\x10\xab\x02\x85\x75\x29\x28\x11\xa8\x51\x7a\x81\x60\xe5\x53\x5d\x2a\x7f\x4b\x0d\x9e\x5c\x57\x5c\x84\x47\x02\xad\xed\x80\x57\x8e\x75\xf2\x03\x18\x19\x04\x58\x5b\x26\x7e\x6a\xec\xdd\x22\x49\x16\x66\x80\x30\x4e\x52\xd2\x73\xa3\xfc\x0a\x05\x4e\xd6\x40\xe6\x93\x89\x27\x85\xce\x53\x6b\xb7\x35\xbe\xfc\xa2\x07\xe1\x39\x4c\x28\xac\x18\x57\x4b\xa9\xa5\x25\x88\x35\xc5\x1b\xad\xb4\x71\xce\xab\x47\x1a\xc6\xb9\x8d\x3b\x68\xd9\x20\x50\xdc\x42\x38\x4a\x3e\x6e\x55\xe5\xdd\x5d\xfb\x93\xae\x1a\x2d\x12\x10\xdd\xf0\x71\x65\x13\xee\xdd\x5b\xa4\x0f\x6d\x2b\xb4\xfe\xc2\x1a\x5c\x12\x50\x7f\x18\x46\x63\x90\xa4\xe4\x69\xfd\xd4\xf9\xbb\x6a\x5c\xfb\xa7\x9a\xec\xe0\x4f\xb5\x76\x47\x9a\xac\xd8\x6c\xc6\x8b\xe9\x60\x2a\xc7\x8d\x15\xf9\xf8\xec\x38\xe6\x86\x60\xf7\xf5\xe0\xf0\x71\x35\x76\xe9\xf9\x29\xe6\x0e\xba\x24\xab\xf8\x72\x3e\x0e\x76\x4a\x65\xff\x57\x0f\xcc\x78\x02\x37\xc0\x8b\xf1\x5c\xfe\x93\xaa\x11\xfc\x60\xac\xba\x1f\xd7\x61\x80\x45\x51\x71\x33\x00\x73\x71\xb6\xb9\x26\xa3\x30\xae\xc3\xe5\xcc\x1f\x38\xc9\xb1\x3f\xef\x29\xa0\xce\x63\xad\x9a\x11\xaf\xbe\x4d\xdd\x4c\x8b\x8c\x96\xaa\x31\x53\xd5\xe3\xee\xd8\x61\x64\x0b\x47\x34\xed\x13\x38\xb6\x05\x7c\xa2\x74\x6e\x4f\x50\x2c\x22\x4e\x47\xdc\x63\x2f\x35\x71\x3e\xd3\x70\x5a\xc3\x18\x58\x42\x0d\x69\x0b\x56\xb9\x48\x46\x20\xa2\xd5\xfa\x7a\xb0\x2b\x5b\x5a\x75\xea\xbc\x76\xb4\x64\x62\x34\x62\x5d\xaf\xdf\x17\xca\x7f\xa3\x86\x55\x18\xe8\xc0\xd8\x9a\xbc\xdf\x50\xdb\x86\x5e\xa0\x6c\x21\x49\x92\x85\x8f\xdb\x71\xfc\xe0\x0f\x78\xe4\xdd\x99\xf7\xe2\x07\x91\x65\x5d\x54\x8d\xba\xe5\x34\x24\x65\xc7\xd2\xf4\xf8\x07\x7a\x7a\xfc\x03\x17\x3e\xe4\x40\xc8\x3a\x8a\x8a\xf3\x78\xbc\xd2\x66\x6c\x38\x7e\x8e\x3b\x95\x30\xeb\xd0\x6c\xd3\x74\xec\x37\x46\x26\x47\xbf\x00\x81\xe6\x49\x55\xc5\xe3\xcc\x4b\x82\xd6\xba\xde\xf4\x60\x08\x09\x21\x14\x05\xb1\x82\x7e\x46\xeb\x15\x11\x0c\xd0\x81\x48\xe4\x66\x26\x8a\x50\x92\x28\x9a\x3c\x63\xc8\x31\x18\x3e\x47\x58\xe0\xe4\x83\x6f\x05\x3e\xa6\x4e\x93\x2c\xdb\xa6\x94\x5a\x18\xb9\x81\x84\x1a\xc5\x6d\xfe\x0f\x0e\xb6\xf8\x7f\x10\x1d\xb8\x51\x38\x07\xcc\xab\xd2\x4d\x7f\xa9\x69\x5f\x6d\x5b\xdb\xe1\x70\x15\x9b\xfe\x30\x3e\xcf\x27\x75\x0a\xf8\x43\xaa\xb9\x08\xf0\x43\x40\x44\x0a\x50\xe4\xe6\xf4\x6d\x9c\x8c\x7a\xfd\x47\x7c\x3b\xf4\xc6\x58\xb5\x8a\x78\x86\xda\x91\xa8\x1c\x9a\x75\x0e\xdf\x05\xa5\xf7\xbe\xa0\xc7\x56\x30\x1d\x4d\xbf\xf2\x7f\xfc\x4d\x82\xcb\x93\x79\xdb\xf3\x05\x78\x56\x31\xdb\xba\xd6\xd0\xcf\x51\x4b\x87\x15\x83\x3c\x18\x1f\x8f\x9f\xd2\x78\xaf\x76\x9e\x26\x71\xd8\xce\xb6\x93\x69\xe3\xf1\x51\x25\x5c\x71\x41\xc1\xb6\xc7\x78\x15\x3c\xf1\x1d\xe8\x7a\xf7\x3a\x55\xdf\x70\x7c\x44\x8d\x0a\x7d\xbb\x32\x51\x22\xd6\x3a\xb3\x29\xe7\x37\x42\x41\xb9\xa1\x56\xf2\x86\xd6\x44\x1f\xa5\xed\xbe\xc9\x6c\x67\x9a\x8a\xad\xb0\x11\x60\x3e\x70\x6d\x21\x5f\x60\xbd\x8d\xed\x27\x19\xdd\x9e\x32\x64\xc5\x9a\x8c\x02\x5a\xb9\x6a\xfa\x20\xab\x2e\x6a\x8a\x38\xe8\x7a\x21\xec\x9d\x6a\x29\xc5\xa2\x63\x5a\x92\x8e\x0b\xb8\x30\x41\xb7\x54\xd0\xf4\x4f\xfe\xc9\x2f\x37\x1a\x4a\xef\xb6\x58\x8e\x62\xb5\x77\xab\xc1\x48\x20\x3b\xe7\x04\xf9\xa6\x15\x4c\xcf\x2a\xd0\x65\xc7\x84\xcb\x61\x3c\xad\xe0\x7d\x67\x75\x22\x77\x5b\x59\xf6\xb3\xca\xc3\xdf\x0e\x7c\xd5\x55\xd9\x35\xba\x67\x17\x0f\x28\x5f\xef\x21\x47\x9d\x30\xcb\x44\x97\x1d\xab\x1b\x71\x1f\x1f\xab\x72\xd8\x6a\x3f\xcc\xed\x23\x74\xdd\x88\xad\x8e\x63\x93\x3b\xce\xc3\xe2\xc7\x10\x82\x7d\x48\x8f\x01\x65\x29\xa6\xc9\x43\xbd\xf2\x7f\xd7\x66\x4f\x66\xb4\x50\x18\x83\xee\x1b\x32\xd2\xff\xa8\x3a\x77\x3f\xf3\xfc\x89\xe4\xa9\x66\xb4\x73\x52\xd1\xc2\x23\x08\x51\xb5\x9e\xbd\x13\x0a\x2c\xae\x59\x52\x86\xba\x2a\x78\x59\x62\x0c\x71\x16\x90\x93\x7c\xac\x3a\x35\xd9\x30\xc9\x73\xdb\x21\x1f\x88\x54\x7b\x5d\xf3\x4f\xf0\x28\x3d\xff\xcf\x58\x4d\x1c\xab\xc8\xc1\x0c\x87\x69\x62\xda\xfd\x1d\x74\xc9\xa8\xfe\xde\x0d\x7c\x91\xe9\x23\x2c\x73\x44\x94\x3c\x71\x2d\xfd\x4d\xf8\x45\xe1\x94\x22\x3b\x2d\xad\xcc\x62\xeb\xcb\x90\x80\xcf\xcc\x0e\x2b\x8e\x98\x4e\xb2\x0a\x4f\x8f\x67\x0e\x1d\x3b\x3e\x0e\xfc\xa2\x48\x6d\x37\x49\x07\xd9\x8c\xea\xd4\x1e\x51\x5c\xe4\x98\xdb\x40\x1c\xcc\xbc\x9b\xb0\xc0\x97\x51\xb5\x13\x64\xc7\xe6\x62\x38\x11\x9d\x0f\xd6\xe0\x28\x60\xa3\x50\x73\xc7\xdd\x30\xfa\x52\xac\x91\x57\xcf\xb3\xa4\xa2\x85\x5c\x19\x5d\x49\xa0\x4e\xf8\x58\x75\x1c\x86\x69\x38\x08\x1d\xd9\xbe\x88\x87\xde\x52\x93\x8e\xb7\xd4\xd3\xc8\x43\xaa\x7a\xbd\xb4\x71\x58\x31\xba\x9d\x53\x12\x7e\xef\xd5\xa9\x45\xe7\xd6\x7a\xf4\x15\x7b\x59\xfa\x8c\x78\xdc\x5d\x0e\xa7\x2d\x20\x2f\x7c\xf3\x63\x7a\x27\x70\x93\x55\x78\x14\x64\x8d\xbf\x62\xc2\xc8\x76\xb6\x79\xa9\x41\x38\x7d\x84\x31\x37\xb5\xbc\x31\x93\x7b\x22\xe4\xdd\x4e\x6d\x61\x0c\xc4\x1e\x56\x3c\x6e\x67\x4b\xfd\x95\x61\xc2\x20\x1a\xb7\x3a\xd5\x1a\xae\xe1\xb1\x1b\xa6\x49\xd7\x42\x10\x2e\xa2\xf5\x0e\xef\x05\x64\x98\x8b\xff\x8a\xdb\xc0\x0c\x0f\xdb\x55\x79\x2d\x4f\xe8\x46\x41\xb8\x64\x38\xd2\x97\x01\x30\x3f\x70\xf7\x57\x6a\x7e\xaf\x63\x57\xc2\xb6\xcd\xa6\x15\xd4\xf6\xa2\xf6\xa9\x97\x14\xc6\xe9\x92\x6e\xd2\x54\xfb\x5b\x2f\xbf\xdc\xcc\xfa\x49\x7b\x79\x98\x26\x49\xb7\xe1\xeb\x1e\xa0\x76\xe2\xe3\x8a\xd7\xda\xbf\xb8\x5f\x0d\x8e\x50\xdc\xce\xbd\x4c\x94\x55\x9d\x9e\x95\x8f\x55\x58\x8e\x46\x54\x37\x1a\x5f\x9b\x73\x4f\xe7\x73\x8a\x08\x74\x6d\xc9\x46\x11\xf1\xac\xbb\x5e\x29\x72\x24\x3e\x9e\x28\xbc\x71\x9e\x26\x51\xb6\x9d\x7e\x10\x8b\xe7\xf2\xd8\x47\xcd\xdc\x66\x04\x81\xea\x9e\x96\xa2\x12\xde\xdd\xf2\x38\x5e\xc8\x6a\xd0\xca\x39\xfd\x04\x6a\xeb\x42\x97\xec\x56\x68\x6a\x7a\x33\x6a\xfa\x64\x5a\x53\x9a\x9e\xc6\x63\x17\x0d\x74\x0f\x00\xf9\x7f\x94\x04\xd7\xe9\xba\x8e\x57\x64\x63\x06\xfb\xb0\x9c\x5f\xe0\xa3\xaf\xe3\x95\x02\x3c\xc1\x9e\xcc\x28\x1f\x0d\x30\x84\xc9\x11\x34\x79\x37\x89\xa6\x75\xc0\x93\xa4\x4b\x94\x71\x89\xae\x20\x99\x1c\x3e\xa9\xe8\xe2\x1c\x9a\xfd\x4a\xb3\x6b\x32\x48\xda\x21\x85\xbb\xa1\x50\xc4\x37\xc6\x8f\xba\x17\x14\xa6\xd9\x23\x30\xae\x70\xcb\x3c\x32\x22\x65\xff\xe2\x27\xf9\x3f\x02\xd5\x56\xfd\x88\xc2\x21\x78\x9d\x77\x90\xe1\x63\x51\x9c\xd1\x4d\x83\xc0\x13\x0b\x7c\x1a\xa8\xd2\xda\x47\xa5\x3e\x4b\x9a\xad\xd1\xce\x67\x09\x4d\x18\x77\x11\x18\x2c\xbe\x4d\x58\x46\x1a\x5e\x5a\x4f\x15\x95\xbf\x4f\x1b\x9f\x8f\xeb\x26\xe8\x4c\xdb\x74\xec\x20\x6c\x13\xd6\x90\xe9\x72\x02\x3f\xad\xcb\x55\x2d\xb4\xcf\x4f\xd6\x0d\x54\xd9\x34\xcc\xfb\x24\x89\x30\xe5\xf3\x56\xcc\xb6\x30\x58\x5f\xa3\x34\x36\x34\x83\xb7\x89\xb3\x51\x08\x03\xc0\xe3\xeb\x6a\xf2\xf5\x9a\xae\x15\xf5\x49\x05\xda\x51\x94\x9f\x56\x15\xf9\xd3\x4a\x9f\xa7\x6d\x72\x13\xad\x15\x6f\x76\xee\x20\x5b\xbe\xf3\x58\x0b\x7c\x52\x8a\x2b\x97\xa2\xb0\x2d\x54\x92\xbe\x28\x32\xeb\xe0\x64\xbe\x8d\xda\x37\xa4\xf0\xdf\xf8\x95\x5f\x73\xe3\x1f\x9e\x3c\xf2\xbc\x52\xd1\x89\x4c\x7b\x39\x1a\x11\xcb\x83\xf2\x4c\x67\x4b\xd2\xb0\x4f\xa8\x62\x41\x6c\x22\x16\xd5\x74\x74\x33\xfb\x24\xc0\x38\x5f\xdb\xed\x4c\x06\x45\x1c\x2b\xb4\x63\xd2\xfc\xf6\xe3\xad\x2f\x9d\x0f\x9e\x2a\xf1\x07\x0e\x96\xc2\xd8\x14\x7b\xaf\xf8\x13\x74\x20\x30\xcd\xcf\xc7\x95\xbd\xb7\x38\xbb\x58\xa2\xe4\x75\x98\x4e\x8f\xef\x54\x7d\xa2\x25\x6b\xda\x7d\x82\x4a\x3b\xc6\x60\xd7\xb0\x3c\xab\x85\xb3\xc1\xa2\x85\x0a\xe3\x4f\x2b\x00\x82\xbd\x73\xcd\x81\x1d\x24\x53\x8a\x1e\xfe\x78\xb5\xdd\x8c\xc6\xc0\x9f\x2b\x00\xc9\xaa\xc9\x6d\xda\x4f\x46\x99\xc5\x03\x87\x31\x84\xfe\x38\x1f\x2b\x9c\x4a\x96\xaf\x45\x61\xc6\xf2\xa4\xfb\x1d\xf6\x57\xd1\x7d\xfc\x85\x92\xd0\xbc\xa4\xd4\x96\x88\x94\x97\xa8\xf4\x51\xbe\xb8\xaf\x61\xfc\x9a\x38\xee\x3e\xaa\x44\xa2\x1c\x5e\x2c\x19\x47\x96\xbe\x38\xeb\x1b\x2a\x8e\x83\xfe\x7c\xa0\x9b\x3c\x6a\x75\x0c\x6d\x5a\x44\x5c\xb4\x3a\x74\x95\x88\x8f\xd5\xf2\x4c\x6d\xdb\xc6\xf9\xe3\x9e\x76\xf0\x08\x27\xc7\x6e\x26\x72\x71\x76\xe3\x7c\xa0\x66\xaa\x1e\x04\xea\x92\x1f\xe0\x35\xc1\x5f\x73\x5f\x59\x8f\xd2\xa2\x98\x74\x5d\x39\x98\x73\xdb\x5b\x1e\x52\x70\x0c\x77\xcc\x62\xd2\x74\x67\xb0\x49\x0c\x60\x87\x81\xfc\x54\x93\xe8\xbd\x4e\x96\x13\x25\xd0\x53\x2a\x8e\x6e\xa7\xa3\xac\x5f\x64\x7a\x9e\x31\xe9\x5c\xa0\x1c\xfd\x2d\xf5\x5e\x99\x5b\x4c\x14\xed\xaa\xd4\x05\x2f\x35\x47\x71\x6a\x4d\x14\xbe\x26\xf8\x2f\x40\xe9\x11\xf9\xf1\x71\x25\xd5\x5f\x58\x28\x16\xff\x60\x14\x87\x19\x58\x6a\x25\xcc\xf2\x91\x3f\x8f\xe0\x49\x5b\x43\x25\x6a\x34\xa9\x01\xe7\xe9\x8a\xbd\x5e\x90\xfc\x27\x63\xa5\x1e\x88\x5b\x11\xa5\xf8\x86\x1b\x88\x7f\x37\xf0\x63\x16\xbc\x02\x4c\xdc\xb6\xdb\x4a\x6a\x41\x9e\xc4\x8f\x25\x2a\x44\x35\xc5\xc3\xd7\x4e\x22\x11\xe3\x13\x3c\x44\xfe\x48\xdd\xb0\xc5\x20\xe9\x84\xdd\x50\xa0\xfb\x32\xef\x45\x17\x2f\x93\x60\x9b\xb7\x6c\x11\x14\xf5\x92\x98\xcc\xb2\x6a\xdf\xed\x77\xed\xbb\x9a\x38\xb9\xbd\x16\x87\x6d\x4e\xa9\x58\x8a\x57\xe5\xa0\xef\xab\xc2\xa2\x8d\x7b\x61\x6c\x6d\x9a\x6d\xf7\xce\x68\xac\xa9\x79\xff\x5b\xa0\x24\xde\xd8\xd2\xf0\xff\x28\x22\xb7\x2b\xe4\x65\x11\x85\x01\xce\x2d\xbc\x17\xde\xc9\x9b\x1e\x3f\x5e\xae\xaf\x29\xc1\xa1\x3b\xaa\x11\x71\x5e\x73\x2f\x9d\x52\x3c\x39\xe0\x8c\xe5\x0f\x8c\x9f\x2c\x03\xb8\x9f\x7d\xb6\xf9\xfc\x76\x1f\xdc\xfd\x00\xbb\x48\x46\xa1\x1a\xae\xa0\xfc\xad\x40\xc9\xae\x5d\xd4\x65\xdf\x6f\xe1\xae\xe1\xc1\x8e\xe3\xae\xb1\x8d\x6e\xaa\xd6\xc8\x9a\x89\x2c\x17\x22\x81\x1b\x3b\xaa\xc6\x66\x59\x27\x87\xfb\x41\x18\xdd\xe7\x16\x76\xdc\xa3\x98\x96\xb8\x74\xdc\x3c\xce\x87\x8a\xe2\xfc\x43\x37\x9c\x5d\x24\xfb\x79\xc4\x92\x1b\xa2\x84\x4f\x38\x0a\xc6\x4e\x2b\x09\x17\x64\x3f\xd8\x64\xc7\x09\x1c\x2b\x03\x18\x2a\xa3\x34\x24\x65\x8e\xa1\x35\x98\x2a\xd0\xee\x8b\xc0\x16\x15\x7c\xf8\x3f\x5a\x3e\x40\x3b\xed\xae\xc8\x44\xa9\x35\x1d\x4c\x5a\x43\xa6\xff\x0b\x64\x98\xe4\xb7\x08\x0e\xa1\x07\x47\x11\xe0\x5c\x1e\x7b\xa9\xec\x0b\x9a\xe4\x77\xdb\xa4\xa4\x2f\x62\x6d\xbe\x9b\x7a\x3d\x4c\x86\x8d\xe5\xcd\xb5\x0d\xc4\x75\xf8\xdc\xd6\x96\x4f\xaf\x6e\x04\x5a\xc6\x43\x17\x80\xdf\x0e\x3c\xa1\x0e\xb8\x79\x90\xef\x5e\xc3\x90\x25\x42\xc4\x77\xc7\x6a\xab\xa2\x74\xc4\x22\xce\x8a\xdc\x83\x8b\x88\xc8\x8a\x4f\x56\x20\x62\x8b\xb3\xcd\xac\x9d\xa4\x62\xf6\x58\x70\x34\xf0\xde\xeb\x4c\x65\xd2\xb5\xc8\x8b\xf2\xd4\x9a\x81\x1e\x74\x67\x06\x00\xfa\xa0\xb0\x01\x54\xa5\x48\x8a\xe0\xc8\x09\xac\x8b\xda\x80\x2a\xa7\xde\x29\x49\x6e\x56\xac\xc2\xbe\x85\x66\xbb\x6f\xe2\x9e\x7c\x03\xc2\x24\x04\xe4\x4e\x0e\xbe\xf8\x36\x21\x83\xaf\x61\x05\x1f\x26\x69\x4e\xfc\x02\xf4\xe8\xb1\x8d\x3f\xa6\xd5\xc8\xc7\xc1\xa3\x8a\x58\x3d\x55\xb5\x70\x28\x61\xa9\xd1\x6a\x01\xcb\x1e\x53\x62\x4d\x66\x60\xd3\xb0\x6d\x76\xd1\xbb\xd4\x32\x23\x0a\xa4\x3e\xc7\x91\xca\x77\x34\xc7\xc3\x27\xf4\x96\x15\xfb\xa6\x94\x38\x7e\x48\xa6\x08\x9f\xb8\xca\xce\x5a\xa8\xaf\x1b\x9b\x69\x25\xf8\xbb\xf0\x18\x11\x34\x5c\x53\x18\xbf\xb6\xc9\xf2\x94\xa1\x3a\x1a\x1c\x2e\x13\xa5\xbe\x66\x7e\xa9\x04\x48\x33\x79\xb6\x4b\xcd\x85\x9c\x80\x09\xa5\x4f\x3d\xf7\x34\xd5\x0e\xb0\x58\xae\xd3\xb2\x45\x45\xf5\x86\xee\xae\x3f\x50\x63\x3a\x04\x00\x93\xa1\xdb\x73\x7a\x0e\x76\xa6\xe5\xeb\x5d\x6c\xd7\xa4\x54\x58\x5c\x99\xd4\xa9\x3e\x57\x26\x36\x6a\xa7\xe1\x90\xf3\x45\xc1\x90\x34\x9c\xc8\xda\x91\xca\x2a\x9c\x3b\x58\x7c\xac\xc7\xb2\x6c\x28\x49\x20\x44\xe3\xe3\xca\xb2\xfb\xda\x9c\x4c\x5d\x37\x7c\xce\x71\x41\x71\x7a\xe8\xc1\xa5\xae\x49\x7b\x09\x87\xdc\x08\x9b\xb9\xc4\xc5\x27\x93\x1a\x35\xb4\x68\x29\xd1\x68\x72\x9d\x04\x1d\x2d\x65\x78\x2b\xd9\x32\xe5\x2b\xac\x39\x15\xf8\x0c\xe0\x4a\x6d\x61\x32\xb5\xed\x51\xea\x8b\x5f\x52\x98\x6e\x2c\xf8\xba\xb4\x27\xeb\xcc\x93\x81\xc9\x13\x0b\xb6\xed\xba\xe4\xc9\x47\xf2\xfd\x70\x29\x49\x89\x1a\xca\x4d\xd6\x3a\xb2\xd2\xf3\x2a\xda\x5c\xb2\x6d\x33\xb0\x3b\x28\x96\x41\xd4\xfa\x11\x2d\x73\xe1\xaf\x2e\x3e\x05\xff\xf4\x19\x4c\xa1\x34\xc4\xe9\x72\x65\x43\x16\xd7\x03\x4b\x7a\x55\xa1\x8b\xae\x60\x42\x1e\xa9\xc4\x75\xcd\xe5\x4f\x38\xa7\xed\x78\x05\x8c\xdc\x51\xa2\xd6\x97\x02\xbf\x78\x7f\x07\x13\x9a\xae\x17\xe4\xfc\x7f\x43\x93\x2c\xf5\xf1\x42\x04\x04\x54\x27\x90\x3f\x1a\x0c\x90\x1c\x3a\x4a\xf1\x2f\xbf\xe8\x28\xc5\x6b\x86\x4d\xd7\x4c\x0a\xfe\x36\x04\xa8\x00\x27\xe0\x1e\x3f\xc1\xaf\x89\xd4\x99\xd4\x5a\xe2\x30\xb6\xdb\x7c\x2f\xf6\x38\xfe\x0a\xcf\xeb\x18\x6d\x0f\xc4\xbd\xff\x5a\xd5\x64\x6f\x93\x4f\x40\x84\xbd\xbb\xd5\xf8\xfa\x57\x39\x39\x3f\xeb\xbc\x62\x18\x53\xaf\xa3\xe1\xa1\x6d\xef\x04\xbe\x5d\xf2\x4e\xc5\xf6\x83\x58\x38\x19\x0c\x6c\xba\x09\xf5\x8d\x14\x4c\x78\x1b\xfd\xec\x66\xd4\x7d\xa2\xb8\x6a\x71\xf5\xf4\x62\xf1\xed\xe8\xe2\x30\xcc\x10\x20\x23\xea\xe4\xfe\x77\x9f\x6f\x79\x3b\xc4\x64\x48\x78\x94\x3c\xd8\x8f\x32\x14\xb3\x06\x20\xe4\x7c\x00\xbb\xea\xe0\x6f\x7b\xe7\x3c\xbe\x64\xee\x20\xc7\xcb\x4f\x83\x3f\x49\xba\x60\x28\xd6\x20\x83\xff\x4c\x11\xc8\x30\x5c\x02\xd6\x73\xfb\x84\x02\x03\xc9\x8e\x76\xbb\x46\x2b\x69\x8e\xfb\x9e\x39\x8f\x6d\x62\x2d\x4f\x2b\x5e\xd3\x7b\x0a\x8a\xd5\x4e\xe2\xae\xcd\x32\xe6\x38\x03\xbc\xf1\x8e\x26\xcc\xbe\xe3\x5a\xc6\x26\x6d\xf7\xc3\xdc\xb6\xf3\x6c\x46\x8b\xd1\x9d\x08\x94\x7a\x1b\x3a\x2d\xc2\xe9\xa2\x86\xb1\x98\xdd\x4c\x94\xdc\xea\x64\x26\x97\x42\x51\xf8\x42\x6c\x73\x47\xb5\x4c\xee\x8c\x77\x79\x7f\xf6\x3c\xdb\x32\xd9\xbe\xf4\x33\x7c\x52\x97\x11\xd9\x51\x9a\x2c\x25\x71\x47\xfa\xd5\xc8\x32\xcf\x68\x3c\xf2\x19\xd5\xd9\x8a\xc2\x6e\x3e\xad\x3a\x5b\xbc\x3b\x85\xda\x5b\xb5\xb9\x2e\x91\xe5\x10\xfe\x6f\x6f\x70\xbf\x31\x32\xcb\x76\xca\x57\x08\xaf\xe0\x12\xd1\x35\x7d\x5b\x91\xdd\xdf\x54\xa5\xfb\x64\x94\x3d\x8e\xeb\x43\x01\xe1\x0a\x3c\x1a\x56\xd6\x15\x04\x83\x78\x7c\x4c\x8b\x84\x4d\xf4\xc8\xc4\x43\xf8\xee\x62\xc9\x95\xe8\x82\x11\xb8\xdf\x56\xed\x80\x2f\x2a\x1d\xf7\x75\xfd\x5a\x98\x86\x16\x55\x12\x84\xac\xf4\xe1\x9b\xbf\x0c\xb2\x27\xfc\xe0\x86\xa2\xbb\xfe\xef\x11\x99\x33\xd9\x53\xf0\xa4\x22\xd4\x4f\xd3\x24\x0d\xb3\x01\xf8\xbf\x1c\x47\xd9\x8b\xe2\xe4\x35\x25\xb3\x08\xae\x4d\x7b\xa4\xc9\xc9\xb1\x47\xa0\xe8\x7a\x4f\x79\xd0\xba\x96\x88\xd2\x74\xc2\x08\x44\xf1\x32\xa1\x5a\x5c\x2f\x1f\x57\x60\x27\x60\x15\x54\x55\x8a\x4f\xc8\xe4\x8a\x80\xbc\x6f\x37\x77\x42\xd3\x4b\xcd\x60\x20\xb4\x9d\x4e\x24\xcb\x93\xee\x9e\xd7\xd8\x69\x93\xdb\x94\xd9\x52\x51\x8d\x60\xd5\x45\x3e\xa9\x44\xbd\xcf\xd1\x08\x8a\xf3\x8b\xc8\x49\xee\x2b\x06\xdb\xfb\x95\x6b\xdf\xbb\xb7\x99\xfd\xdd\xa8\xa4\x65\x7f\x4e\xeb\xaf\x95\xc5\x27\x23\x83\xcd\x25\x6d\x5d\xba\x1a\xe9\xeb\x3e\xa1\x54\xf9\xf3\x51\x6a\xa2\xed\x2a\xaf\xf8\x34\xd0\x3f\x01\x06\x28\x47\xdf\x37\x3f\xcf\xff\x8e\x41\x7c\x2c\x37\x28\x5b\xba\x62\xea\x3e\x29\xac\xd6\x69\x61\x33\xf9\x4f\xec\xe6\xdc\x84\x6e\xa9\xf8\x6a\x3e\xae\x21\x37\x3d\xd0\xcc\x6d\x96\x87\x83\x24\x66\x39\x0c\x8d\xcc\x10\x5e\x47\xb1\x8d\x49\xd4\xb1\x59\x3e\xdd\xf8\x9a\xa2\x08\x2a\x62\x53\x64\xbd\xdb\x4b\x02\xd8\x0d\xa5\xa5\xe3\xc5\x12\xfc\xcc\x2c\x53\x6e\x22\x48\x14\xfe\x4d\x6f\x50\x7b\x76\x29\x1d\xd9\x0e\x0f\xe3\x31\x25\x62\xe0\x9d\xd2\x35\x25\xab\x92\xc4\xd1\xda\x53\xf4\xa5\x22\x98\x4f\xbb\x05\x8b\xef\x3a\x55\xdf\x10\x92\xde\xa6\x60\x06\x06\x79\xaa\xa5\xb2\xfd\xc3\x30\xbe\xc8\xb7\x0e\x93\xcf\x15\x83\xd9\x70\xf0\xdf\x47\x27\xc5\x8d\x33\x32\x9c\xdf\x25\x3c\xce\xb7\xb1\x7c\xe1\xb2\x31\xaa\x86\xc4\xe2\xd1\x89\x8f\xc1\xef\xd1\x0b\x87\x2b\x7f\x19\xb7\x8d\x64\xef\x32\x86\x93\x30\xb6\x74\x1d\xd1\x3e\x9f\x8c\x15\x5e\xff\x37\x94\x94\xca\xbb\xb0\x37\x22\x37\x57\xe7\x06\x08\xc7\x4a\x0f\x4f\xc6\xf9\x8b\xcb\x7a\xd8\x04\xff\xb3\xcf\x36\x07\xd6\xc4\x0e\xe0\x83\x34\xeb\x03\xa5\xe6\x00\x93\x81\x5e\xf9\x91\x3a\xe6\x90\xa5\x51\xda\x8b\x4c\x8a\x60\x09\x98\x1e\xb8\x1e\x3e\x76\x91\x49\x9a\x18\x1f\xb8\x0a\xae\xb7\xf8\x10\x1f\x57\x86\xb6\x0f\xcd\x7e\x85\x3a\x5f\x61\x3c\x72\x17\x08\xe3\xfc\x1e\xd9\x34\x87\x9c\x28\x5e\x28\x87\x5a\xc1\xd3\xa5\x1c\x3e\xee\xe5\x7d\x2b\x39\x6d\xc9\x6a\xcf\xb9\x38\xa5\x06\x88\xb8\x64\x7b\xbd\x4d\x31\xf6\x45\x15\x63\x5f\xac\x7b\x0e\x99\x6d\x9b\x51\x9b\xe9\x17\xe4\x39\xaa\x61\xae\x0f\x82\x27\x15\x22\x23\x2c\xa2\x34\x90\xe3\x0b\x9b\xce\x9f\xe0\xaf\x61\x02\xce\xe9\xc9\xc5\x0b\xc1\xe7\x36\x41\x59\xac\xd8\x51\xf7\x3c\xe6\xe7\xe5\xb8\x2e\x9c\x35\x51\x94\xe0\x0d\x21\x50\x47\x5a\xcf\xc7\x75\x62\x13\x18\x6f\x45\x77\x02\xbb\xeb\x63\x32\x56\x7c\x5c\x83\x70\x5e\x68\x0e\x93\x28\x6c\x5b\x0d\x27\xf8\x44\x85\xae\x9f\x54\xde\xef\xe2\x6c\x33\xb6\x6d\x9b\x65\x26\x0d\x23\xa2\xfd\xf3\x24\x19\x6e\x86\x7c\x87\xb2\x2e\x57\xfd\x90\x44\x6a\xda\xcb\x9d\x64\x35\xde\xa6\x44\xf5\xce\xd1\x06\x16\x2d\x3f\x3f\x04\xf6\x18\x40\x3c\xd8\x5b\x67\xc6\xaa\x86\x76\x6c\xec\x91\x3a\xc7\x95\x4c\xd1\xa0\xdd\x49\x62\x13\x75\x28\x35\xc3\xda\x3f\x13\x78\xae\xa3\x33\xe3\x5f\x7a\x08\xb2\x29\xb5\x59\xd8\x01\x72\x84\x92\x01\x27\x3c\xb7\x79\xd0\x44\x66\x48\x25\x3a\x5c\x4a\x4d\x18\xb7\xfb\x61\xd4\x51\xfa\xa7\x5c\x83\x15\xd3\xba\x47\x79\xd3\x6c\x38\xca\x6d\xb6\x8d\x8c\x86\x10\xc7\x51\x94\x81\xb2\xc2\xba\x66\xa2\x38\x03\x73\xc2\xff\x13\x28\x06\x08\x56\x9d\x96\x91\xd4\xcf\xeb\x1f\xf8\xc6\xc8\x44\x61\x37\x2c\x42\xdb\xc5\x59\x5e\xc3\x98\x81\xe2\xe3\x4a\x2a\x41\x84\x60\x69\xb1\xb2\x41\x8e\xe5\x8b\x71\x87\x03\x3f\x67\x71\xb8\x2e\x7b\x2a\x56\x35\xf5\x91\x1c\x07\xa5\xc3\x24\x7f\x7b\xec\x59\x3b\x6e\x53\x35\x42\x34\xb4\x44\xbe\x37\x35\x79\xd8\x0d\xdb\x3c\x59\x7d\xc8\xf7\xf0\x74\x6f\xcf\xcd\xbb\xa4\x36\xcb\xdc\xde\xae\x93\x5a\xf6\x0e\x66\x34\x4c\xe2\xed\xa5\x9e\x2f\x3d\x55\x69\xe1\xd2\x53\x45\x39\xe3\x63\x25\x86\xcb\x74\x7e\x2c\x19\x12\x78\x6a\xe7\xef\x8e\xfd\x13\xf9\x58\xbf\xcd\x64\x35\x2e\x96\xcd\x54\x71\x73\x28\x37\x5f\xa3\x07\x86\xdd\x00\x18\x9e\xa8\x88\xab\x1e\x66\x64\xc2\x38\x0f\xbb\x5d\xd8\x36\xe9\x95\x35\x1c\xa3\xef\x99\x8a\xdf\xdf\xbb\x77\x73\xaa\xe7\x28\x8e\x3c\xdd\x51\x09\x21\x92\x9a\xc1\x9e\xe2\x52\x90\x69\x83\xd3\x03\x95\xc7\x7f\x47\x74\x08\x42\xc3\xab\xb9\xb9\xe1\x86\xe1\x15\xcf\x71\x7d\x4b\xd6\x0c\x3d\x33\x27\x3d\x59\xbc\x02\xae\x66\x07\xbe\xd9\xc4\x1a\x1e\x4e\xca\xd9\xd3\xf9\x4c\x4d\xfc\x86\x64\x09\x4d\x9d\x2f\x23\xdc\xf9\x80\x80\xc6\xc8\xef\x4e\x2b\x62\xcc\xef\x52\x0d\x6d\xe3\xb8\x73\x48\x43\x8c\xdc\xa0\x78\x26\x64\x70\xaa\x4e\x81\xa6\xa5\xf0\xcb\xe8\x86\x70\xda\x89\xd6\xb6\xd1\x5b\x16\xe2\x5f\xcd\x02\x8c\xe0\x48\x68\x2f\x68\x87\x09\xef\x05\x6d\x51\x5c\xce\xf5\x40\x71\x43\x5f\x57\x5f\xbf\x4a\x03\xc5\x34\xa6\x2a\xb8\x8b\xe2\x0d\x38\x4c\xa6\x23\x01\x78\x7d\xec\x43\xc3\x07\x15\xa0\xc3\xbe\x85\x66\x6a\x57\xda\x09\x56\x07\xb6\xc1\xeb\x1a\x3a\xf8\xba\xea\x9d\x47\xa1\x09\xb3\x24\x86\xf3\x92\x41\x10\xc5\xb0\x79\xb4\x62\xbc\xc5\xe2\xe5\x26\x5c\x35\xc0\x69\x38\x84\xb2\x6e\xa7\xe8\xc5\xd4\xed\x66\x33\x1e\x61\xf4\x18\xb2\x72\x49\xc4\x55\x28\xb5\x6d\x52\xc2\x25\x37\x9c\xe4\xfd\x99\x6a\xf7\x6a\xae\x69\xc9\x52\x95\xbd\xf5\x5d\xe5\xad\xef\xba\x8a\x4b\x62\xdb\x9d\x86\xd2\x7e\x5f\xd7\x72\x6b\xeb\x0e\x73\x3d\xca\x6c\x5a\x22\xd2\x64\x15\x17\x61\xf3\x97\xf5\x33\x1a\x66\xb9\x61\x0a\x76\x2c\xe9\x2d\x2d\x0f\xf1\xd8\x32\xd9\xd4\x0c\x3a\xf8\x42\xf3\xb9\x47\x8a\x65\xca\xb2\xd3\xc1\xd6\x67\xa4\x88\x42\xb7\xc8\x02\xa4\x58\x16\x4e\x27\xd0\x35\x52\xfe\x0c\xc9\x22\xba\x11\x6f\xc0\x8a\x8b\x56\xc0\x94\x97\x66\x87\x54\x2b\xf3\xaf\xaa\xfc\x78\xef\xc2\x8b\x8d\x72\x1e\xa2\x52\x9d\x8b\x2a\xf7\x14\xd9\x41\x46\xaa\xc9\xc4\x03\x3d\x01\x44\xb1\xfb\x4b\xe4\xb7\xd5\x4c\xac\x63\xbb\x36\xee\xf0\x13\xe4\xfa\x14\x36\x88\x14\xab\xfc\x04\x46\xd6\x36\x34\x3b\xe8\x44\xd3\xcf\xaa\x09\xe4\xb3\x25\x98\x8f\x8d\xb2\xc7\x94\x74\xc1\xe3\x2d\x32\x33\x08\xb2\xff\x95\xa2\x50\xbe\x4d\x8d\x35\x17\x49\x17\x4f\x13\xfd\xd8\xa3\x25\x36\xd6\x0d\x85\x30\x40\x92\x8b\x0c\xe3\xb0\x5e\xf7\x97\x60\xa3\xf0\x09\xe4\x21\x78\xcc\x37\x10\x9f\x21\xc5\xde\x3d\x51\xd3\x6d\x47\xe1\x17\x10\x9c\xde\xa9\x3c\x9e\xf9\xf9\xa6\x1d\xf4\x8b\x65\x83\x8b\x11\x6a\x3a\x35\x51\x7f\x42\xbd\x0d\x9b\xe5\x66\x29\x0a\xb3\xfe\xb4\x5f\x09\xd3\x9a\xda\xe5\x9d\xb1\x77\x9b\x57\xe9\x6e\x37\x2e\xd5\x36\x5f\x93\x78\x45\x60\xbd\xc8\xdb\x50\x0a\xe6\x63\xc5\xa9\xd9\x27\x94\x49\xc3\xe3\x79\xde\xd3\xa8\xba\xf7\x82\xa7\xa4\xd2\xd8\x8b\x93\x41\x18\x87\xc9\x28\xe3\x40\xd1\xa9\x0a\x2c\xf8\xd6\xac\xff\x5e\xd3\x2e\x16\xd6\x34\xbd\x35\xa7\xdb\xec\xca\x11\x5c\xe4\xe1\x13\x7a\x85\xfc\x47\xe5\x34\xdc\x66\x3f\xa7\xba\x6a\xa7\xe0\x50\xe0\x28\xcf\x06\x0a\x71\x8c\x89\x65\x9e\xdb\x9d\x34\x7e\xf5\x00\xc7\x62\xff\x65\xec\xcb\x37\xdf\x29\x31\x6a\xbc\x3d\x26\x32\x1b\xd7\xe6\xf7\x66\xf3\xbd\xb1\xd7\x11\x7d\x07\x8d\x49\xe6\x28\xc5\xb2\xc6\xff\x5c\x02\x43\x91\x1b\x1b\x71\xec\x61\x1c\x99\x61\x45\x6d\x6d\x35\xbe\xfc\x22\xa7\x89\xac\x11\x8f\xcd\x7a\x99\x56\x17\xda\x88\x2c\x2e\x86\xbd\x0e\x76\x63\x94\xc8\x1b\x2d\x25\x93\x7c\x22\x68\x3c\xfb\xac\xab\x1e\x17\xde\x58\x2a\x3e\xe4\x80\x9c\xa2\x6d\xb1\x03\xb0\x67\x0e\x57\xbc\xc4\x73\xcd\x30\x6e\xdb\x0c\x46\x0c\x2e\x06\x3b\x90\x8f\xc7\x9f\xd3\x84\xcf\x64\x69\x73\x26\xef\x90\xdc\xc4\x87\x11\x17\x54\x50\xd3\x06\x9f\x2c\x5b\x01\x3c\xc7\x73\x78\x5c\x7c\x52\x43\x91\x5a\x5c\x4c\x6a\x4d\x26\xc5\x02\x4d\xcb\x25\x6d\xe6\x9d\x6e\x86\x3b\x9e\xf1\xe2\x6a\xcc\x08\xe0\xf4\x72\x9c\x1b\x63\xcd\x3e\xf9\x2b\x1f\xa6\x9d\x54\x70\x54\x4a\x27\xd8\x0c\xe1\x63\x17\xe8\x21\xf0\xb1\xfa\xcb\x5e\x3f\xc9\x72\x40\x88\x5e\xe2\x0c\xe5\x8c\x06\x9d\xdf\x2d\x0f\x31\x7b\xb2\xf2\xb6\x89\xa2\x6c\xa6\x84\xa9\xf0\xaa\x65\xa7\x34\x9f\xc1\x07\x5a\x23\xe9\x9a\x62\x1d\xf8\xb7\x35\xd5\xd9\xfd\xe5\xfc\x1b\x35\x46\xbc\x13\x3e\x2e\xd9\xd0\x51\xd6\x7f\x42\x0f\x6e\xaa\xb0\xf5\x86\x66\xaf\x78\x8c\x98\x9d\x81\xf4\xbc\x19\x14\x4b\x8b\x7b\x78\x58\xca\xa5\x40\x17\xc3\x5a\x20\xcd\x11\xe4\xbe\x0a\x9a\xef\xc2\xb3\xa3\x7e\x02\xaa\x7b\x2e\x91\x4e\xe8\xa6\x71\x9f\xe7\xf1\xdc\x80\xb7\x99\x56\xa0\xd5\xab\x41\x43\xc9\x55\x28\x2f\x74\xbe\xb2\x7e\xf6\xee\x6d\x16\xa1\x6d\xdf\xb8\x65\xa7\xba\xfc\x42\xd6\x75\xa1\xc6\x61\x65\x79\x32\x1c\xca\x9a\xc3\xc5\xdd\x1a\x2b\x11\xcb\x5b\xc1\x4e\xfe\x4c\x73\x61\xe1\x6f\xab\x2e\x26\x04\x1f\x50\x3b\xbf\x8e\xde\x2f\x2c\xf1\xdb\x41\xe3\x45\x99\x1c\xfe\x6d\xda\x9a\x8c\x6e\x47\x57\xc4\x65\x39\x7b\xe7\xd8\x6b\x7c\x8a\x3d\x0b\x4b\xb4\x7d\xe2\x41\x81\x7f\x84\x98\x11\x4f\xe9\x4f\x02\xcd\xc1\xf6\xfd\x71\xe3\xeb\x5f\xd5\xf1\xd3\x4b\x5e\x0d\x69\x9f\x40\xf2\xee\x12\x83\x10\x2a\x46\x7f\x82\x65\xc6\xac\x33\x78\xe2\x30\x1f\xbf\x43\x06\x17\x16\x03\x8e\x11\x46\x69\x5b\x8b\x6c\x1a\x2e\xe5\x7b\x20\x2b\xc4\xad\x9f\xa7\x91\x7a\xdc\xe1\xff\x4d\xdc\x66\xd8\x7b\xdf\x83\x4d\x63\x00\xbf\x67\xd6\xfc\xde\xcc\xa4\x24\x13\xf9\xec\xb3\x4e\x3e\x5b\xc5\x6d\xa7\xc6\x64\x5d\xb1\x97\x3e\x62\xae\x5e\x75\x87\x73\xf0\x2b\xdf\xfa\x5c\x4b\xf5\xd3\x4f\xeb\x90\xe9\x31\x50\x92\xc1\x12\x9e\x0d\x94\x10\x9b\xef\x27\xe6\xe1\x40\x20\x2f\xba\x51\x28\x43\x63\x1e\x32\x18\x9b\x51\xaf\x9f\x87\x36\x6d\x28\x50\xda\x31\xf5\x7c\x8e\xb9\x1a\xe9\xd0\x44\x86\x05\xbc\x5d\x2a\xa1\x48\xa6\x4b\x71\x70\xdb\x44\x5f\xc0\x8b\x84\x59\xde\x8a\xfe\x39\xa3\xf5\x03\x55\xf3\xbf\xab\xa7\x94\x8e\xd0\x4b\x82\xed\x07\x06\x0f\xcb\xe5\x51\x52\x86\x10\xf1\xe6\x62\x4d\x31\x8a\x41\xf1\x2a\xcd\xb4\x3c\xfc\x84\xc3\x59\xa4\xd4\x8d\x09\xbd\x54\x21\xa9\xa3\x35\x2c\xe5\xd4\xe2\xa1\x20\x12\xdb\x3d\x51\xbc\xe0\x97\xe1\x1b\x11\x39\x6c\x9d\x28\x44\x10\xe4\x03\xb1\xa4\xb6\xa3\xeb\xc1\x53\x70\x78\x45\x08\xca\xa6\x26\xa5\xf7\x1a\xa8\x11\xab\x73\x41\x69\x9a\xbf\xd8\x06\xd8\x1f\x4f\x56\xb8\x52\xe7\xe7\x9b\x4b\x69\x62\x3a\x6d\x93\xe5\x53\x2a\x5f\x78\x6f\xec\xc1\xfc\x97\x03\x0f\x80\x3e\x59\xc9\x86\x0f\xcd\xbe\xd4\x5c\xb5\x26\x22\xa2\x7d\xcc\x41\xb8\xea\x98\x6b\x69\x57\x41\x2f\x7b\xf7\x32\xd6\xaf\xa1\x9a\x3f\x0c\xe4\x14\x21\xfb\x12\x75\xe2\x68\xa8\xda\x72\x47\x4b\x1c\x84\x55\xb1\x8c\x97\x9a\xd6\xf4\xb8\xf3\x51\x37\xa8\xb5\xf9\x13\x5f\x6a\xc6\x49\xde\x97\x72\x20\xec\xe7\x03\x6c\x29\x3e\xa9\xeb\xf3\x0c\x4d\xcf\x1a\xc1\xe4\xa3\x74\x0a\x36\x4d\x3e\xae\x18\xc9\x83\x2f\x30\x66\xba\xe1\xcb\x74\xe0\xcd\x95\xd8\xcb\x43\xbb\x56\x4d\xec\xe4\xd9\x58\x5d\x55\x45\xce\x27\x15\xce\x6f\x90\xa4\x79\xcf\xf4\x6c\x36\xd5\x98\x9f\xdf\xb8\x14\x78\xc9\x32\x60\xa1\x65\x62\x5b\xb9\xd1\x94\x04\xe6\x7d\x96\xd5\x52\xd9\xd7\x64\x13\x7f\x2a\x15\xa4\x5e\x7e\x79\xa6\x30\x36\x52\xc5\x55\x2e\xeb\x03\xec\x03\x2c\xfd\x6b\x88\xeb\x1c\xd3\xb0\x03\x9c\x9d\xaf\xb0\xff\x1d\x9a\xfd\x4a\xb3\xbf\x36\x4c\x7a\xd1\x5a\xdb\x0e\x42\xd3\x28\xbd\xfa\xe2\x7a\x64\x4d\x78\x9d\x9d\xb8\x1f\x72\xc0\x8f\xd0\x93\x41\x79\x7c\xa2\xb2\xff\x2c\x5f\x8b\x64\xfa\x1a\x4d\x6e\x90\x9a\xf0\xb1\x06\x26\xa5\xe1\x6b\x49\x6c\xa6\x14\xff\xc9\x19\x05\xb3\x46\x18\x07\x4f\x73\xdb\xcd\x4e\x0d\x6d\x1c\xbf\x96\x84\xe0\xf9\xc6\x76\xe4\x1d\xcc\x27\x95\x7d\xb6\xb0\x70\xa0\x19\xdb\xf6\x32\x51\x10\x94\x2e\x8b\x1e\xa5\x5c\xd7\x2e\xf7\x8a\xf2\x95\x1d\xca\x3e\x1c\x27\x27\xe7\x26\x2b\x1d\x98\x0c\x7d\x2d\x46\x28\x52\xb7\xa5\x84\x56\x84\x09\x82\x38\xbf\x74\xbd\xbd\x6d\xdd\x32\xd9\xbc\x3e\x5f\xdc\x4f\x4a\x13\x96\x49\x0a\xd4\x58\x8c\xe3\x94\xad\x2b\xf4\x77\x47\xb1\x6f\x1a\xc2\x99\x41\x60\x91\x8f\x2b\x36\xa3\x78\x1a\xaf\xd8\x74\x94\x99\xc8\x02\x9d\x8d\x88\x9d\x69\x58\xf9\xa4\xf2\x53\xcf\x35\x23\x33\x8a\xdb\x7d\x31\x1a\x4e\x68\xd8\x27\x91\x9a\xa4\xbb\x9d\x2c\xc3\x95\x88\x8e\xab\xef\x13\x1e\xab\x63\x5c\xea\xa5\x50\xea\x2f\x3e\xe2\x6c\x7c\x71\x4b\xe2\x06\x15\x45\x5b\x64\x42\x00\x55\xe0\xed\xaf\xa8\x61\xee\x37\xb5\x8c\x4c\x0d\xc1\xe2\xfe\x66\xbb\x1f\x5a\x4c\x4e\x21\x4e\xbc\xae\xa8\x1d\xaf\xd7\x7f\xc2\xa4\x0e\x39\x50\x1a\xd2\x94\x12\xb7\xef\x8a\xe4\x36\x8e\x6d\x96\x59\x3b\x53\xe6\x5c\xf4\x9a\x80\x8d\x56\x89\xf4\xb0\xc4\xb9\xa8\x28\x1b\xab\x2f\x6d\x7f\x33\xb5\xc3\x24\xcd\x37\xe9\x8a\xfe\x99\xd2\x15\xfd\x33\x5f\x4f\xb6\x99\x4d\x57\x44\xf6\xae\xb4\x9c\x3c\xb8\xf3\x2e\x96\xbf\xbc\xfd\x3a\x56\xd3\xd4\xa4\xc0\xe1\xb8\xf9\x12\x45\x57\x5c\xc3\xec\x07\x12\x77\xf4\xb9\x30\xca\x05\xda\x68\xfc\xc6\xd3\x2d\xdf\x2b\xbb\xad\x12\xad\x61\x7f\x2d\x0b\xdb\x26\x9a\xf2\x98\xc4\xc3\x3a\x83\x78\x9f\xf6\x0d\x1e\xcd\x77\xf4\x08\x9e\x35\xd0\x84\xf7\x50\x5d\xba\x40\x81\xed\x6e\x5e\x66\x07\x5f\x68\x2e\x99\x88\x58\x68\x0a\x17\x00\xfc\xfe\x67\xf4\x11\x3e\x76\x85\xd5\x8e\x5d\x49\x72\x59\xea\x88\x8e\xbf\x4b\xd6\x88\x8f\x3d\xe8\x26\x45\xa1\xa8\x24\x01\x59\x7c\x48\xe4\xf3\x2a\xa3\x61\x2f\x1c\x68\x0e\x92\x38\xef\x33\x5f\xac\x84\x10\x8d\x05\xaf\x01\x55\x53\x71\x31\xd1\x68\x10\x87\xf8\x1d\x46\x92\xaa\x4e\x46\x95\x3d\x93\x64\x92\x93\x28\x4a\x56\x1b\x2a\x62\x3e\xa3\xc6\x04\xcf\x94\x5c\x7c\x97\x29\x23\xa4\xf7\xa4\xd0\x65\x5e\xc2\x7f\x98\x84\x71\x4e\x03\x02\x42\x1e\x0e\x1a\xc0\x12\xd1\x09\xcc\x29\xba\xf7\x38\x66\x32\x2d\x21\xd3\xac\x69\xa2\x11\x66\xb2\x6b\x53\xc6\xfc\xce\x39\x0a\x56\xda\x2c\x7c\x52\xaa\xa2\x74\xbb\xd9\x4e\x35\x79\x75\x12\x21\x27\x42\xbd\xa9\x96\x2f\x90\xdc\x56\x6c\x65\x57\x70\x1d\x82\x47\x56\x58\x83\x75\x04\xed\x88\x27\xd7\xa9\x28\xc1\xc7\x64\xd7\x5d\xb0\xe0\xa6\xea\x3f\xd6\x70\xa1\x51\xdc\x9b\xf1\xb3\xe6\xef\x6a\xce\xa5\x6b\xf4\xf3\xc8\x37\x1a\x9a\x32\x90\x23\x50\xfe\x48\xa0\x67\xb1\xad\x59\x66\x29\x49\xe4\x3f\x57\xd5\x70\xdf\x15\xfd\xe5\xbf\x3d\x16\xf9\xa4\x2c\x19\xe5\x7d\x9b\xc6\xae\xe6\x29\x2c\xcd\xb0\x5a\xc8\x43\xf9\xf7\x85\xd4\x61\x33\x98\xe4\xb9\x66\x18\x45\xcf\xd3\x9c\x55\x11\xc7\xec\x5b\xd8\xb8\xa4\x5a\x35\x99\x1d\xe6\x76\xb0\x64\xd3\x1d\x45\x14\x8e\x97\x0f\x31\x79\x18\xf5\xef\xc2\x11\x88\xae\xbb\xe2\x43\x84\x2e\xbd\x94\x4f\x3c\x1f\xc3\xeb\x81\xda\x34\x50\x99\x17\xa5\x8e\x9a\x01\x0f\xe9\x17\x36\xd4\x14\xf9\x3a\x2d\x3e\x91\x33\xd3\xab\x63\x69\xb4\xf6\x78\xf1\xe2\x64\xdc\x9e\x1e\x9a\x42\xd2\x2d\x38\x5d\x47\x3f\x2e\x75\x58\x51\xc4\xdc\x1d\x97\xc4\xe6\xf1\x14\xb1\x54\x40\xb8\x86\xe7\x7b\x04\x95\x29\xc4\x7b\x3f\x24\xd7\xe3\x00\xf5\x7b\xe7\x64\x5e\x19\x09\x33\x5f\x0a\xaa\x0f\xd8\x30\x68\xf9\x60\x5b\xdc\x1e\x7b\x94\xf2\x79\x35\x43\x53\x98\x8a\x5e\x12\x75\x9d\xd9\x87\x1b\x39\x3a\xf6\xf0\x81\xa3\x35\xbc\x29\x2f\x35\xf3\x7e\x52\x64\x7e\x33\x5e\x7a\xe9\x2f\xb0\xfc\x81\xc3\x40\x5d\x1e\x66\xef\x98\x2a\x28\xf2\x96\xc3\x22\xd9\xd2\xda\xe5\xc6\x77\x53\xbb\xdd\x4f\x6f\xdd\x54\xc2\x6f\x3b\x5a\x0a\x8b\xf0\x01\x9e\x88\xc3\x70\x09\xf3\xc7\xff\xef\x76\x49\x31\x4b\xf5\xba\xd6\xeb\x88\xf2\x49\x9a\xb2\x51\xd1\xef\xe1\x13\x3d\xd5\x9f\xb4\x97\xa5\xd4\x8b\xcd\x8f\x40\x9d\x8f\xf5\x90\x99\x69\x87\xd9\x60\xca\x4f\xfc\x23\xcf\x14\x61\xdc\xe2\xb7\x50\x8e\xfe\x4d\x35\xe0\xdc\xb1\x83\xa4\x9d\x9a\x3c\x6c\x6f\xa3\xf7\x86\xaf\xbd\x85\x54\x90\x4f\xe8\x26\x25\xcf\x51\xdc\x9d\x80\xf1\xf2\xf1\x44\x27\x40\x8e\x69\xe5\xd5\xa1\x6d\xe7\x3b\xe8\xf1\x29\x45\x2c\x41\xc8\x3d\xdd\xf2\x45\x43\x48\x03\x49\x23\x8f\xf6\x80\xcc\x11\x17\x57\x4e\xc0\xa0\x2b\x4f\x2a\x22\xf5\x07\x0a\x3d\xb0\x53\xb1\xda\xf4\x6c\x8e\xa7\x85\xef\x7a\x4b\x35\x08\xdf\x1a\x4b\x2b\x7f\x98\x26\x79\x6a\x3c\xf1\xb8\xcc\xad\xa8\x19\x96\xe0\x31\x35\x05\xce\xe5\x85\xfd\x5e\xe0\xc7\x31\x20\xad\x8f\x9f\x76\x7f\xb8\x1c\x27\xab\x91\xed\xf4\xac\x11\x9c\x27\xd6\x1f\x08\x8b\xf9\xb8\xe2\xfc\x16\x67\x9b\x91\xe9\xf5\xe4\x5a\x1c\x96\x65\x71\xd6\xa5\x3a\x1e\x04\xbe\x9a\x0c\x2c\x23\x2a\xa4\x3e\x48\x17\xc6\x05\x37\x5a\xb6\x52\x7c\xa3\x7a\x80\xab\x03\x16\xaf\x17\x1b\x99\x5f\x2f\x9f\x54\x6a\x74\x0b\x0b\xbe\xc6\x8b\xac\x1d\xfb\xe0\x98\x42\x58\x72\xd8\x8e\xce\xd3\xed\x52\xe5\xc4\x0c\xb2\xdd\xb4\x91\x1d\xdf\xe3\x97\x5f\xe4\x4f\x7d\x13\x3f\x2c\xb3\x06\x3e\xee\xda\x05\xcb\xed\x0a\x73\x87\xfc\xae\xd2\x72\x80\x3e\x4a\x7a\x33\x50\x9e\x8e\xb7\x34\x62\x44\xa6\xd7\x45\x71\xeb\x77\x11\xaa\x88\x58\xbe\xe2\xc7\x79\x7b\xbc\x49\x78\xf4\x57\x7e\xad\x79\x68\x76\x3f\xac\xaf\x1b\xfb\x29\x7c\x26\x9f\x28\x34\x67\xc7\xb6\x23\x93\xda\xce\x54\x11\xdc\x0a\xe1\x8b\x27\xba\x63\x39\x21\xe1\xda\xf5\xe1\x5c\xdf\xc4\x9d\xee\x28\x22\xc4\x8a\x50\xdd\x6b\xde\xfb\xda\x80\xb3\x1f\x46\x1c\x48\x89\xb1\x2e\x7e\x89\x8f\x6b\x73\x9f\x6e\x14\x16\x36\x43\xd6\x13\xc2\xd1\x9b\x78\x61\x7c\x52\x49\x7e\x16\x16\x9a\x59\x6e\x24\x39\xf3\x18\x4e\x0d\xee\xac\xc1\x2c\xad\x26\x2b\x36\x9e\xf2\x30\x46\xc6\xb4\xe0\x04\x0d\x5e\x79\x45\xbe\xc9\xb4\x64\xa3\xd0\x76\xb7\x51\x3c\x23\x2c\x8e\x0d\xc7\xae\x06\xaa\x60\xce\x8f\x29\x38\xc1\xdf\xdc\xa1\x55\x21\x34\xe1\x0d\x27\x2b\x7f\x5a\xb1\xdd\xe4\x36\x4e\x52\xdc\xb5\x88\x3b\xd2\xdd\xf0\x49\x20\xd0\xa4\xff\x0f\xd9\xe1\x66\x8f\xf3\xf2\xcb\x4d\x13\xaf\x51\x15\x07\x8c\xc3\x68\xbe\x5c\xf3\x7c\x0d\x7d\x44\x84\xae\x5b\xe0\xc7\xf2\x3f\x54\xc0\x69\x6b\xd2\xbc\x8f\x00\x53\xe8\x26\x94\xe5\x44\xc4\xa0\x59\x3f\xd1\x11\x7b\x4f\xbd\xf4\x0f\xd5\x48\x48\xde\x0f\x7b\x7d\xb8\x4d\xe4\x04\xc8\xc0\xf9\x38\xf8\x7c\x89\xc7\xdf\x0e\x86\x49\x6a\x52\x80\x90\x95\xfc\xc0\xfe\x8d\x4b\x50\x74\x03\x4d\x87\xc0\xf9\x4b\xf4\x0d\xd1\xf3\x0d\x1d\x8c\x2b\xcc\xdc\x7a\x0d\xe0\xb5\x88\xcc\x93\x3c\xcb\xed\xf0\xaf\x63\x8f\xd5\x3f\x30\x1c\x86\xf4\x03\x4e\xc6\xbd\xd8\xc3\x7c\xf2\x50\x5c\x83\x89\xba\x24\x69\xe0\x8b\x11\x77\x38\x92\x41\x58\x7e\x02\xab\x51\xfc\xc8\x66\xa5\xe1\xc5\xfd\xcf\x34\xbf\x34\xad\x1c\xda\x8f\x02\x05\xe8\x83\x9b\xe5\xd1\x2b\x95\x42\xe9\x42\xd0\x9a\x89\x97\x2d\xf2\xc7\x3a\x04\xa2\xef\xec\xbf\x38\x37\x5b\xdc\xde\x06\x90\x65\x1b\xa7\xeb\x26\x7c\xdd\x24\x90\x52\x94\xc1\xf7\xf1\xb1\x1a\xc1\x02\x80\xad\x1b\xda\xce\x74\x11\x55\xa1\xf7\x8d\xb7\xc8\xa5\xfc\xf7\x03\x2f\xa1\x8c\x3e\x2b\xff\xfb\xd8\x2f\x0a\xd3\x4b\xc3\xf6\x28\x22\x34\x34\x19\x25\xa1\xc9\xa5\xad\x29\x1a\x06\x5a\xfb\x93\x34\x24\xb6\x29\x84\xd5\x47\xf4\x94\x9c\x9e\xc4\x82\xcf\x65\x54\x7b\xe9\x23\x38\x1f\x57\xbf\xf6\x01\xd4\x85\x0a\xcf\xc0\xbe\x85\x66\x6a\x72\x7e\x08\xb8\x7c\x4c\x20\xf3\x71\xdd\x78\x62\x3a\x8a\xfd\x4c\xa4\xd3\x10\x59\xf0\x76\xb5\x86\xd3\x68\x38\x92\x06\x14\x8b\x44\xd1\x07\x44\x30\x4a\xf1\xab\x76\xb2\xc7\x0b\x07\x06\x67\x79\x47\xd3\x52\x3d\xc0\xf3\xa6\xe0\xfa\x4f\x9f\x05\xd4\x89\xca\x1e\xaf\x3f\x31\xf1\xcc\xa6\xbb\xc0\x46\x4c\x7f\xb5\xf6\xf7\x99\x38\x9b\x10\x64\x7f\xc9\x2a\xe6\xf0\x74\xdb\xa9\x43\x20\xc4\x2d\x8a\xf4\x14\x68\x74\x99\xc5\xf1\x15\x04\x00\x98\x29\xde\x4c\xfe\xf6\x44\x4d\x52\x9c\x54\xe3\x0b\x9a\xf5\xec\xd9\xf8\xd9\xa9\xe2\x37\xd0\x70\xbf\x87\x62\xaa\x1b\xd8\xd9\x3b\xe7\x00\xf6\x35\x92\x44\xb9\x61\x71\x68\xc0\x1f\xde\xa4\x57\xcd\xc7\xc1\x1e\x3f\xae\x6c\x46\xa9\x8d\x4b\x3d\x96\xd7\x03\xd5\x63\x79\xdd\x91\x4a\xe6\x6b\x43\x59\xea\xac\x30\xd0\xf2\xf1\xdc\xd4\xc4\x09\xcc\xd9\x2c\x9b\x51\x23\x1f\x40\x23\xa3\xfc\x35\x03\xf2\x30\x74\xf6\x7f\x32\xf6\xa1\x21\x1b\x5f\x21\x5e\x51\xc6\x37\xce\x6d\x8a\x1d\x8f\xd4\xed\xa8\x96\xdd\x3c\xaf\x38\xeb\x80\x12\x92\xec\x7e\xb3\xe7\x9b\x9f\x6f\xe6\x26\x5b\x66\x42\x6e\x34\xd5\x36\x68\x01\xe1\x62\xae\x20\x80\x15\x51\xd0\x0a\x97\x06\x09\x7f\xa0\x46\xc3\x38\x3b\x5c\xb1\x80\xee\x6a\xd6\xab\x35\x19\xa2\x00\x07\x66\x74\x69\xf7\xc7\xae\x72\xdc\x0f\xb3\xa1\x89\x79\xc8\x12\x5e\x64\x4f\x4b\x15\xb1\xf7\x28\x81\xbc\xd4\x66\x79\x6a\x42\x34\x18\xbe\xe2\x65\x2e\x5c\xf9\x64\x5d\xb7\x0b\x8a\x94\x9d\xa1\x67\x8c\x97\xd5\x8c\xbb\xe7\xd4\xd0\x78\x96\x8f\x3a\xa1\xcd\x76\x36\x1c\xff\xc4\xef\x62\x35\xe3\xd5\xae\x63\xfb\xf3\x09\xf9\x7a\x78\xd2\x0f\x83\x12\xea\xab\x30\x47\xfc\x1f\x94\x00\xa0\x0b\xc7\x23\xfe\xdc\x9b\x25\xdb\x83\x28\xf3\xcd\x40\x31\x9a\x1d\xab\xc9\x17\xf7\x37\x93\xe1\x30\x71\xa8\x05\xf8\xae\x2d\x54\xbb\xe3\xe3\x0a\x54\x7f\x61\x61\x7f\xb3\x1b\xba\x4a\xbf\xfc\x28\xfd\x90\x74\x87\x25\xd3\x81\x6a\x0a\x80\xa8\x22\x56\x4c\x5b\x92\x4f\x02\x2f\xb8\xc1\xe0\x3b\xe4\x68\x53\x24\x3f\x25\x40\x9c\xe2\x6a\x5c\xe1\xd4\x15\x22\x5f\x57\x10\xb1\x94\xe1\x41\x08\xa1\xd1\x78\xe7\x63\x77\x2d\x66\x29\x31\x69\x07\x3c\x54\x9a\x34\x0c\x4b\xfe\x8a\x57\xe8\x7e\xf1\xf3\x58\x1c\xb0\x7a\xa7\x54\x19\xe3\xa6\x6a\x91\x1c\x1f\x97\x98\xf2\x94\x0e\x67\x9c\xa4\x83\x64\x94\xcd\x90\xbb\x10\xd2\xbd\xe2\x83\x78\x0d\x5b\xaa\xc2\x40\xae\xb5\xec\x46\x68\x4f\x07\xfe\x11\xa6\xab\x66\x4d\x29\x23\x32\xca\x8b\x4f\xea\xc5\xf3\xcc\x1a\x8f\xa1\x38\x94\xf0\xfc\xbc\x43\x09\xd7\x71\x88\x8f\xe2\xae\x09\xd1\xba\x83\xad\x45\x79\x94\x8f\x55\x7d\x3f\x5e\xcb\x84\xaf\x41\xca\xf5\x0d\xa7\x79\xc4\x13\x2a\xc2\x54\x27\x71\xa5\x19\x8c\x32\xeb\xc4\x67\x85\x64\xc5\x03\x3d\xae\xa9\x06\x77\x34\x7a\x75\x04\x1d\x6d\xaf\xe3\x5d\x4e\x9b\x16\x67\xdd\x28\x4f\xc3\x8d\x56\xaf\x2b\xb4\x4f\x2f\x49\x32\xbb\x04\x01\x72\xdf\xfb\xbe\xa8\x7a\xdf\x5e\x87\xc0\x2c\x25\x23\x07\xf8\xab\x73\x79\x9f\xab\xc1\xa3\x35\xb6\x3e\xe3\x64\x58\xe8\x86\x45\x6f\xe5\x61\x11\xd9\xc0\xa4\x79\x88\xde\x9f\x2a\x99\x3a\xa2\x68\xa5\x32\x8d\x5a\xff\x13\xb4\x74\x84\xf6\xce\x37\x92\x18\xe8\x82\xb5\xf3\x23\xf4\x49\x84\xbd\x94\x56\xa3\xe8\xde\x2b\x51\xa6\x9f\x04\x9a\xe0\x40\x2d\x04\xd4\x26\x44\x1d\xa1\x70\x74\xae\x16\x51\x98\x22\x99\xf1\x2c\xd6\x24\x22\xb7\xfb\xd4\xc4\x17\xb5\x15\x32\x5e\x32\xe2\x59\xb8\x62\xc4\xaf\x6c\xe3\x51\xa1\x9a\x69\xf9\x2d\xfa\xfc\x3f\xfd\x27\x8d\xe2\x47\x10\x2e\xbe\x17\x28\x7d\x9c\xf7\x9c\xfb\x5b\xb2\x26\xcf\xa6\xbd\x84\x1a\xd0\x0d\x72\xac\x50\x99\xf7\x02\xa5\xcc\xf6\x3d\x87\x7f\x4d\x49\xba\xbc\xac\xc2\xa1\xc4\xc3\xce\x55\x40\x64\x45\x50\x1e\x85\x19\xcb\x61\x3b\x56\xd8\x85\x05\x39\x0e\x7c\x09\x65\x60\x33\xb3\x4d\xb1\xab\x1f\x47\xda\xee\xaa\x9a\xc5\x03\x71\x97\xed\x06\x4e\x36\x34\x05\xd4\x95\xb1\x6f\x5e\x9e\x50\xb9\x5f\x6a\xda\x21\xc4\xc5\x7d\xa4\xa8\xc1\x69\xf4\xab\x58\x0f\x7f\x4e\x6f\x41\xfe\xa3\x78\x3c\x82\x66\x73\x86\x6e\x90\x8c\xe2\x1c\x6c\xc4\x88\x6e\xb7\x11\x2a\x07\x4d\xec\x7b\xe4\x37\x00\x4d\xc0\xfc\x9b\xde\x1f\xc8\x72\x1e\x6d\xa9\x09\xd2\x6a\x65\xa6\xf0\xf3\xa9\xe9\x20\xc7\x50\xbd\xb1\xe2\x33\x32\xee\x42\x57\x0c\xb7\xbf\xb5\x22\x9c\x37\x77\xb0\x19\x25\xc9\x32\x7b\x10\x61\x6d\x2c\x7e\x5f\x0c\x73\x0d\xc0\x6e\x40\xcc\x99\x23\xf1\x3b\x4a\x7b\x73\xe1\xa1\xda\x9b\xf3\xf3\xcd\xa5\x64\x35\xe2\xe2\xb8\x40\xa2\x1a\x4a\x50\xda\xef\x87\x2a\xa4\x61\xef\x5c\x33\x1d\x45\xd2\x9d\x14\xb4\xbf\x86\xfe\xab\x92\x61\x6a\xf3\x30\x25\x2b\x07\x52\x1e\xe0\xbe\x8e\x50\x7a\x8e\x30\xe3\xf7\x39\x0b\x73\x6e\x60\xc1\x49\x07\x4d\x8a\x58\x5a\xd8\x96\x1a\x4e\xc3\xfd\xaf\x94\xe1\x1d\x98\xf6\x32\xcd\x99\x28\x02\xa5\x39\x4d\x36\xa5\xb4\xda\x9c\x0c\xd8\x15\x2f\xe6\x31\x0a\xa3\x0e\x45\x1f\xce\xac\x7c\xfd\xab\xde\xc3\xba\xd2\xf6\x5f\x8e\xcb\x9c\xff\x7e\xae\x0b\x15\x47\xec\xb8\xdd\xb4\x70\x44\xd5\x9c\xae\x04\xc9\xfe\x09\x3d\xff\x07\x30\x97\x20\xd9\xdc\x95\xa4\xa3\xdc\x4e\xf9\xc7\x02\x2f\x8c\x5a\x04\x6a\x23\x12\x20\xfa\x00\xda\xc6\x2b\x36\x4a\x86\xac\x22\x21\xd5\x46\x5a\x07\x52\x6e\x7c\x4c\x85\xc6\xa6\x87\x21\xec\xd2\xe4\x36\xd2\x83\xf3\x6a\x07\xde\x7f\x28\x29\x7f\x96\xdb\x55\x93\xe6\xc8\xa1\x11\xfa\xde\x0a\xca\x9d\x60\x5f\x9e\x38\xec\x21\x0a\xa9\xcd\x93\x34\x34\xd4\xc4\xc1\x1d\xdd\x56\x9a\x2d\x63\x3c\x4e\xbc\xdb\x9b\x2a\x00\x8f\xc2\xa5\x35\xd3\xf0\x89\xf5\xf5\x92\x54\xee\x13\x0a\x61\x51\x04\x91\x1c\xab\xc1\x72\xb3\x6d\xe0\x93\x5a\x98\xe5\x30\x4d\x06\x61\x26\x2d\x14\x07\x5d\x2a\x1e\x9e\x34\x1e\xab\xf3\x8b\xc5\xc7\xc2\x95\x30\xb2\x3d\x26\x1c\x07\xbc\x99\x3b\x3c\x7c\x52\x23\x40\xd5\xec\xd8\x9c\x78\x5f\xf5\xcc\xec\x19\x55\xc8\x3a\x53\xb1\xc1\xf3\xf3\x28\xe7\x61\x62\xdc\x91\x87\x3b\xfa\xcc\xaa\x28\x09\x68\x36\xf3\xbc\x08\xe9\xdd\xd0\xef\xbb\x8a\x7a\xe7\xdd\xba\xdc\x76\x35\x35\x43\xfc\x86\xa3\xfc\x70\x53\x85\x1f\x04\x9e\x85\x22\x0b\xb3\x9c\x2d\x06\x76\x51\x03\xe3\x1e\x25\x48\x26\xd3\xfd\xe8\xe2\x43\x14\x8d\x8a\xdc\x21\x47\x46\xe8\x38\xf6\x3c\x47\x41\x15\xc7\xf1\xf2\xcb\xcd\x76\xdf\x9a\xa1\x4d\xa7\x3c\xb1\x08\xe7\x02\x8c\x41\x55\xf9\xd3\x69\xd5\x3b\xcf\xf2\x34\x44\x07\x64\x71\x96\x13\xef\x77\xc7\x7e\xce\xef\xdd\x3a\x12\xc6\x01\x98\xff\x3b\x9b\x14\x0c\x9d\xb0\xca\xc5\xf1\x2e\xe7\xae\xbf\x7e\x80\x60\xfb\x88\x21\xce\x83\x84\x00\x25\xdf\x1d\x64\xb8\x84\x96\x9d\x0a\x37\x37\xea\x8a\xa0\x91\xc9\x59\xd6\x02\x75\xb7\x6b\x81\x12\x69\xfd\xdd\xc0\x83\x9f\xae\xd7\xf5\xfd\x48\xd7\xd4\x2d\x23\x99\x48\xa3\xb5\xce\x27\x6a\xe8\x71\x38\x8a\xa2\x25\xd3\x5e\x6e\xf8\xd2\x20\xf8\x28\xf8\x58\x65\xfb\x83\x24\x9b\x56\xa1\xc3\x4c\xcb\x77\x90\xae\x10\x16\x54\x0d\x1e\xbe\xe4\xa2\xf7\x9a\xdb\xeb\xa6\x66\x80\x84\x5e\x54\xeb\xe9\xe2\xc4\x70\x56\xc9\x5b\xe7\x9a\x79\xdf\xe4\xdb\x8a\x77\x84\x87\xf7\xf3\x2d\x5f\xf1\xfe\x4d\x2d\x6b\xa2\x04\x48\x2f\xa2\xe8\x84\x6f\x85\x1b\x47\xa7\x71\xa6\x82\x23\x2a\x42\x99\x25\x1b\x25\xab\x20\xf2\x43\x49\x7b\x0a\xe8\x47\x67\xb4\x7e\xe5\xd7\x78\xef\x7e\x5f\xc1\x4e\x3e\x47\x76\x1a\x55\x92\x6b\x75\x3b\xa7\x6f\x0d\xfb\x7a\xb4\x4f\x11\x21\x21\x39\x80\xfa\xa0\xe4\xc9\x4f\xab\xaa\x58\x9e\x26\x9d\x51\x9b\xb0\x28\x0d\x85\x8d\x3c\xa1\xd5\x14\x4f\x8c\x3d\xc3\x55\xdf\xa6\x8f\x7b\x2a\xad\x93\x4f\x61\x34\x05\x91\x24\x04\xc7\x10\x77\x6d\x01\x75\x0a\x82\xee\x6f\xab\x5c\xf9\x0f\xc6\x8a\xc7\xef\x12\x76\x11\x7c\xfb\x5b\xe4\xbb\x18\xe6\x8b\xb8\x19\x65\xe6\x2b\x2a\x0d\xe1\xe1\x3d\x66\x27\xa3\x98\x16\xf9\x38\x2a\x78\x58\x4b\x3b\x5a\x2a\x66\xf9\x44\xd7\x27\xae\xaa\xd9\xa0\x38\x1c\x0e\x93\x98\xf3\x24\xfc\xd2\x59\x45\x96\x78\x46\x13\x9f\xde\x09\x36\x55\x60\xe7\x0e\x36\xe7\xe7\x17\x1b\xde\x64\xfe\x05\xad\x65\x3e\x56\x89\x4e\x6a\x7b\xa3\xc8\xe4\x49\x9a\xcd\xf8\x4d\x0c\xe0\x28\x1f\xd3\x6d\x3b\x15\x50\x9f\x3b\x40\x4a\x03\xe8\xd2\x7b\x2a\x8f\xb6\x49\xbc\x0d\x17\x2d\xb3\xdc\x7e\x66\x6f\x57\xcb\x6f\x8f\x4f\x94\x41\x3f\xa2\x41\x51\x37\xc7\xaa\x8c\xf4\x6d\x3d\x29\x6a\xbb\x4c\xa5\xf0\xa2\x0b\x5f\xc1\xfa\x2f\x93\x55\x15\x23\xff\xc2\x81\xa6\x0d\x7b\x7d\x06\xa8\x48\x65\xd4\x03\xc5\x2e\xd4\xa2\xb6\xec\xab\xc4\x80\xe9\x58\x40\x58\xb1\x1a\xa6\xf5\xae\xe2\x5e\x3a\x3b\xf6\x55\x1f\x33\x30\xaf\x51\xec\x06\xae\x6e\x58\xbd\x77\x34\xf1\xfe\x66\x42\xc5\x39\xf9\xa3\x4a\x9d\x9f\xaa\xa8\x71\x98\xf5\x5d\xc6\x2b\x50\x36\x7f\x1b\x67\xb5\x53\x4f\x46\x69\xdb\x66\xd3\x1e\x70\xf2\x7d\xc4\x98\x52\x30\x29\xbe\xc2\xd5\x4b\x1c\xd4\xe0\xfb\xbe\xc8\x62\x57\x6d\x91\xc1\x14\x1b\xdd\x35\xa8\x5c\xa1\xb1\x56\x6e\x98\xda\xe7\xc0\xd2\x95\x52\x0c\x38\x5c\x28\x79\x6e\xbc\x51\x92\x51\x2a\x3c\x07\xe2\x21\x89\x39\xb1\x50\x44\x71\xc8\x17\x66\x3e\x53\x89\x0d\xb8\x89\x66\x7c\x47\xfc\x1e\x39\x29\xec\x98\xb7\x69\x79\xb2\xe4\x99\x12\xb7\x62\xa8\x06\xb7\xeb\x6b\x82\x8c\xfd\xcd\xb6\x19\x0c\xad\x19\xd1\xe3\x75\x74\xb8\xc5\xc5\xf1\x89\x6a\x06\x45\x76\x35\x44\x89\x0e\xb7\x7a\x54\x65\x56\x47\x6b\xa4\xf2\x17\x8b\x80\xa9\x97\xda\x0c\x1f\x72\xd2\x77\x8b\xb3\x0e\x6b\xb8\xf9\x95\xcf\x1d\xc4\x88\x11\xc4\xae\x54\x2d\x7b\xdf\x79\x4d\xa4\x7a\xbe\x12\x9e\x51\x7e\x92\x32\x04\x52\x69\x90\x43\x08\x96\x8f\x6b\x92\xd6\xa6\x59\x4a\x56\xec\x8c\x9f\xae\x7e\xa4\xb5\x49\x68\x67\xbf\x0b\xc8\xd5\x1c\x41\xf1\xa5\x42\x88\xb8\xf9\x52\x9e\x6b\x66\x36\x1d\xda\x38\x0f\x63\x44\xe7\xcc\xeb\xaa\x90\xd2\x3a\x73\xba\x52\x83\x3c\x6b\x66\xa3\xa5\x28\x1c\x20\xfe\x11\x92\xc7\x86\x9b\xce\x3a\xe9\xe2\xe4\xae\x69\xdb\x28\xec\xe6\xc8\xe4\xa4\xbe\xee\x41\x45\x75\x79\x7a\x33\x33\x2b\x65\x42\xdc\x77\xb0\x66\xf9\xa4\x52\x08\xfb\xda\x1c\x57\x53\x1a\x1e\x84\x0c\x81\x14\x61\xf8\xdf\xfc\x23\x7b\xe7\x9a\x59\xf1\x04\xa6\x14\x6f\xe3\x55\x24\x0f\xf0\x3c\xa0\xb8\x7f\x98\x8b\x5f\x58\x68\xae\x85\x36\x82\x5e\x21\xde\x1d\x50\x68\x08\x35\xa6\x5b\x25\xad\x1f\x29\x8e\x0d\x46\x59\x3f\xf5\x4a\x8b\x08\x07\x0e\xa3\x68\xc0\x27\x0e\x9f\x41\xf4\xd6\x61\x11\x19\x4d\xa3\x33\xa9\xd4\xf4\x67\x28\x25\x43\xea\x74\x5c\xb7\xf4\x2f\x97\x3a\x8a\x9d\x30\xdf\xe9\xd1\x53\x47\xc6\x1e\xde\x7f\x32\x50\x66\xed\x63\x46\x90\xa1\x9e\x71\x4e\x23\x09\x3e\x0e\x7c\x77\xf8\x43\x32\x48\x68\xe9\xdf\xd2\x3a\x8b\x57\x55\x13\xe8\x9f\x6d\x45\x59\x90\xbf\xcb\xf1\x19\x14\x79\x42\x92\x0a\x98\x02\xb9\xda\x6d\xc5\xbf\xc2\x15\x56\xc9\xd4\x3d\x54\x2e\x4d\xec\xd2\xa8\xbd\xac\x55\x46\xcf\xe9\x38\xfb\x5c\xb0\xb9\x6a\xf7\x5c\xb3\x93\x34\xbc\x70\xf1\x11\xec\x10\x51\x03\x79\xd4\xf9\xed\x57\x20\x4f\x7d\xc0\xbd\x25\x55\x3e\xbf\xe8\xc6\x47\xdb\x49\x94\xa4\x91\xcd\xb2\x98\x8c\x84\x02\xd2\x68\x80\x8d\xb7\x40\xc9\x20\x44\x42\xb1\xe0\x87\xaf\x5c\x84\xc7\x23\xaa\xc2\x8e\xbd\x19\xb1\x4f\xfc\x68\xb6\x9f\x86\x71\x6f\xd5\xa6\xcb\x56\xf1\x4a\x7d\xa6\xc7\x74\x3e\xab\xac\xff\xb9\x83\xcd\x81\xe9\xc5\x96\x77\x99\x93\x53\x73\xc3\xb1\x17\x2b\x0d\x95\xbf\xdf\x5c\xf5\x9b\x4c\xca\xc5\x74\x79\x52\x47\x76\xb2\x0e\x91\x49\xc3\xd8\xe6\xd3\xbe\x0e\xf0\x7b\x63\xb5\x66\xb7\x4e\xca\x12\xb0\xce\x4c\x3f\xd2\x52\x39\x4c\x64\xad\x57\x0e\x05\xc0\x08\x8e\x84\x8f\x5d\x49\x2b\xb2\x26\x16\x0c\x86\xc8\x15\xd3\x45\xf2\xc9\xf8\x29\x25\x9b\x92\x0c\x92\x9c\x74\x3e\x66\x14\xe8\xf9\xa3\xb1\xef\x69\x9c\x51\x08\x5a\x0e\xf4\x45\x2a\x1a\xab\x5e\x58\xd0\xcb\xc2\xe2\xa9\x30\x4f\xe0\xbf\x8f\xab\xcc\xec\xb8\xa2\x76\x8f\x6d\x2f\x0a\x7b\x8e\xd2\x0e\x3b\xf2\x8d\xc0\xef\xce\x37\x6a\x2c\x07\x3c\x5a\x43\xf1\x42\x5c\xd4\x4a\x3c\xd5\xca\xd6\xa1\xd9\x97\x48\x8d\xdd\xe1\x36\xe7\xe7\x6b\xa6\xa7\xf7\x2d\x34\xbb\x11\x28\x77\x14\x3d\x7a\x39\x3c\xd8\xe3\x12\xdf\xdc\xa6\x2b\xa1\x5d\xcd\xa6\x7d\x61\x78\x63\xac\x60\x23\x3c\x4a\x4f\x2f\xe7\xcd\x27\xc9\xde\x20\x3a\xdf\x50\x8d\x2e\x13\xe7\xe1\x37\x46\xba\x2b\x8a\x54\x8c\x8f\xcb\x70\x4d\x1b\x97\xf1\x63\x78\xfc\x52\xd2\xa9\x36\x2a\x5e\x6a\x76\xc2\xd4\xb6\xd1\xec\x11\x7b\xe2\x11\xb3\x55\xe4\xff\xa1\xd9\x66\x9e\x86\xed\x65\x34\x09\xc5\xd0\x15\x06\x8c\x8f\x2b\x70\xd8\x22\x8d\xea\x24\x53\x4a\x7b\x04\xc8\x29\xf8\xcd\xbf\x0c\x34\x85\x9e\xdf\xe2\x59\xdb\xc6\x76\x9b\x07\x19\x1e\x0d\x3c\x9f\xfc\xcf\x14\x96\xf8\x28\x39\x20\xfe\x77\x00\x44\xf9\x3f\x02\x15\xf3\x1c\xad\xc4\x3c\x98\x03\xa0\xb7\x83\x5d\xa0\x58\xe8\x5e\x52\x1a\x7f\xee\x2d\xe4\xb9\x09\x79\xcb\x38\x38\x3d\x3d\x29\x81\xd6\x7b\x88\xef\x52\x32\x58\xca\xfa\x36\x8a\xa6\xe8\x7a\x10\x8f\xbd\x4b\xf9\x21\x84\x9a\xd0\xab\x11\x90\xcb\xe7\x9d\x15\x8c\xf3\xd4\xb4\xed\x30\xf7\x13\x65\xaa\x6d\x7b\xc0\xb5\x6d\x7f\xf1\x21\x45\x36\xef\xcd\x14\x71\xd0\xe5\xa0\xe4\xba\xb4\xaf\xc8\x86\xdc\x43\xc1\x13\xbb\x41\x96\x82\x8f\x83\xcf\xb9\x55\x4c\x10\xbd\x30\xee\xf1\x64\x3f\x02\xbd\xb7\x02\x05\x3c\x7a\x4b\xbf\x38\xd3\x5e\xce\xd0\x6e\x12\xb9\x29\xba\x78\x64\x7b\xdf\x54\xf5\xe1\xb3\x8a\x3b\xe2\xae\xb7\x4c\xc5\xf5\xe7\x8d\xc6\xd7\xbf\xea\xd5\xde\x8b\x5f\xe2\x93\x4a\x19\x06\x3c\xfd\xc3\x64\x14\xa3\xac\xe6\xa6\xcc\xfc\xc4\x59\x4d\xbd\x7d\xb1\xb0\x80\x52\x2f\x07\xaa\xf7\x84\x9a\x5f\x39\xa1\x92\xc2\xcc\x44\x2b\xa6\x93\xa4\x26\x6e\xa8\x4e\x0c\xdf\x95\x88\xb4\xf9\xa6\xc6\xd2\x28\x8a\x30\xb7\x21\xb4\x04\x7e\xae\x1a\xdc\x3a\x42\x51\xaa\xd0\xb1\x61\xb7\x4b\x08\x99\x35\xb0\x65\x22\xbc\xbc\x8a\x39\x60\x31\xb1\x34\x8e\xa9\x6c\xec\x82\xfc\xd9\x5f\xc7\x40\x65\x4d\xda\xee\x7b\x69\x4a\xb8\xfe\x7b\xb8\x76\x18\x24\x16\xcd\xe6\xe9\xd3\x9a\xe6\x74\x73\x18\xd1\x14\x35\xbe\x01\x49\xc7\x87\x63\x85\x80\xff\xb0\xb6\x09\x94\xdb\x28\x6a\x78\x61\x58\x56\xb8\xe7\x93\xd2\x04\x42\xbb\xc3\xa3\x35\xae\x95\xe7\x29\x05\x4e\x8e\x55\x1b\xee\xae\x22\xbb\xee\x9a\x41\x18\xad\xed\xae\x4c\x6a\xa2\x55\xba\x93\x46\x5c\x11\x32\x22\x67\x87\x71\xbe\x8c\x52\x05\xe8\xff\x38\xed\x74\x1c\x28\xbe\x58\xfa\x11\xe5\x54\xd8\xab\x6f\x04\x6a\xa4\xff\x6d\xf4\x05\xf8\x64\xec\x7d\xf5\xaf\x2b\xbc\x08\x0f\xae\x3e\x4c\x03\x69\x7e\xbe\xd9\x09\xb3\xbe\xa2\xc9\xf9\x1e\x99\x03\x29\xa6\x54\xe7\xc5\xda\x26\x4c\x6d\x6c\xe5\x25\xa2\x05\x75\x2f\xa8\x46\x6b\x32\x18\xe2\x79\xfd\x93\x25\x3f\xbf\xd4\xf0\x19\x0d\xe6\x79\xf9\xb8\x52\xac\x2e\xb6\x94\x19\x86\xb9\x97\xcc\x78\xc9\xf1\x4f\xd1\x23\xe3\x13\x47\x04\xdc\x31\x6b\xbc\x3e\x36\xd0\xc0\xdd\xb8\xa5\x8a\x89\xed\x24\xee\xd8\x01\xff\x7e\x89\x18\x9c\x4f\x6a\xaa\xe5\x0b\x45\xaa\x41\xf5\x8d\x08\xad\x7a\xaf\x2f\x39\xeb\x3a\x89\xd5\x21\xde\xfd\xcd\xdc\xa4\x3d\xeb\x67\xbb\x1c\x38\xdb\xc7\x91\xaa\x05\xb4\xdc\x37\xb1\xba\x2a\xc6\x5c\xf0\x49\x8d\x1e\x0e\x7f\x3b\x17\xf0\x79\xad\x04\x0a\xfc\xf7\x91\xeb\x9a\x58\x93\xc6\x44\x94\xe9\x78\x55\x2e\xa1\x5c\x8b\x94\xf7\x08\x40\xd3\x30\x50\xb7\x54\xc3\xe6\x72\x25\xa5\x5d\x9c\x6d\x9a\x38\x4e\x46\x71\x5b\x22\x7b\x86\x3a\xd0\xaa\xc1\x22\xdd\xc0\x7b\xc1\x82\x3f\x56\x01\x32\x16\xce\xae\x37\xb2\x69\x1a\x46\x91\x61\xa3\x27\x9c\xc4\x0d\x45\x56\xec\xeb\x56\x59\x18\xa9\xda\xef\x37\x55\xed\xf7\x9b\xf5\x23\x75\xfd\x22\x26\x4a\xa2\x0e\x9b\x09\x86\x45\x8f\x95\xd6\xcb\xef\xba\xe5\xd2\x33\x61\x4c\x6a\x1e\x20\xc9\x9a\x41\x75\x42\x02\x3f\xda\x3c\x5a\xd4\x16\xcb\x94\x19\xe7\xf1\x5d\x77\xf1\xc5\x0e\xd9\xea\xf4\x93\x67\x5a\x1e\xa5\xdb\x36\xa9\x5d\x9d\x56\x53\x50\xeb\x41\xb9\xdb\x55\xfc\x90\x84\x46\xc5\x7e\x90\xe3\xcd\x37\xe8\x70\xa0\xc3\x61\x64\xa7\x7d\x2e\xbe\x31\xde\xfa\x8c\xe7\x52\x5f\x9c\x75\x5c\x0c\xca\x61\x6d\x6b\xf9\xc2\x54\x64\x56\xb3\x51\xc8\x93\xd6\x18\xb7\x42\x0d\x8b\x8f\x3d\x49\x2a\xb1\xde\xa3\x40\xcc\xb5\x7e\xe5\x2b\xa1\xa9\x25\x11\xa4\x0f\xd4\x93\x34\xec\x85\xb1\xc1\xbc\xf5\xa1\x59\x8d\x60\x17\xa1\x91\x37\xc7\x3b\xdd\x2b\x5e\xa2\x0e\x89\x93\xf4\x3f\xf0\x2f\xbf\xc6\x7f\x74\x5f\xc9\x86\x55\x93\xf2\xe7\x9a\x7d\x1b\x0d\xcb\x39\xcd\x49\x9d\xd3\x9c\x54\x38\xbd\x61\x6a\x73\xe8\xbb\x16\x9b\x51\x43\x77\x04\x95\xb3\xd9\xda\xcd\xcf\x37\xdb\x04\x9f\xcb\xa6\x15\xa2\xe3\x18\xc2\x32\xbc\xfc\xf1\x58\x17\xca\x36\x02\x35\x61\x74\xa5\x8e\x88\x50\xeb\xdb\x4e\xa9\x40\x8a\x4b\xab\xc8\xdd\x2e\x73\xa8\x0c\x73\xfe\xbe\x52\x22\x5e\x4a\x46\xa8\x78\xa0\x01\x70\x9d\xde\x18\x1f\xab\x0a\xf5\xaa\x89\x84\x36\x06\x4d\x60\xcc\xb3\xf0\x71\x20\x54\x35\xe1\xc0\xb0\x19\x47\xd5\xe3\xa4\x1a\x36\xe0\x8a\x32\x10\xa8\xf7\x14\x20\xd6\x44\x4b\x36\xcd\xcd\x54\xb1\x48\x9d\x7e\xfa\xde\xbd\x6c\xfc\xaf\x2a\x8a\x9b\x0b\x4a\xe4\xaa\x9b\xda\xac\x4f\x19\xb5\x6a\xbd\x1d\xd7\x34\xb7\xc7\x1d\x1d\xda\x92\x09\x39\xad\x45\x95\xeb\x4d\x85\x37\x7f\xb3\x62\x4f\x8a\x97\x94\xc4\xdd\x30\x66\x10\x92\xdb\xa4\x87\x95\xd6\xc6\xe1\xfa\x2e\x63\xfb\x35\xdb\xee\xa3\xee\x29\x54\x22\x1e\x68\x76\x51\x89\x84\x9f\x51\x03\xaa\xf6\x55\xd3\xce\xa3\xb5\x19\x3f\xc6\x0e\x35\x09\xa4\xc0\x57\xe8\x1b\xf0\x3c\x6f\xa8\x0a\x3d\xda\x0c\xc2\x36\x53\x23\x69\xdd\x4e\x68\x18\x94\x29\x8f\x60\x4a\x0f\x2b\xb3\x7a\x58\x59\xc4\x7f\xf6\x4f\xff\x31\xc1\x6d\x44\xc4\x8b\xee\x40\x24\x65\x6a\x2a\x57\x79\x6a\x25\x88\x77\x5a\x28\xc5\xf3\x15\xdc\xd0\x1e\xc5\xb2\x36\x4c\xd2\x9c\xf1\x65\x68\x20\x83\x6e\x90\x8f\x55\xdb\xbe\xdd\x37\x83\x21\x51\x5b\xfa\xaa\xbb\xd2\x5e\x3d\x5b\xd7\xf8\xcb\x72\x9b\x46\xc4\x67\xef\xd0\xcd\x10\x55\x01\x02\xf0\x93\xb2\x34\x79\x8d\xe2\x75\xd6\x4f\x52\x0b\x6d\x4a\x47\x4b\x7d\x2a\xf0\xa1\x5d\x75\x62\x03\xd2\xda\xc3\xbc\x51\x2c\x52\x89\xa8\x8b\xf7\x25\x91\xb6\x9e\xe3\x89\xac\xe0\xdf\x60\x8b\xae\xa9\x72\x32\x07\xa7\xc2\xbe\xe0\x99\xeb\xe3\x15\x45\x45\x7a\x84\xbe\x9b\x8f\x2b\x51\xc1\xe2\xec\x62\x73\xc9\x76\xc3\xdc\x47\x05\x75\x9c\x15\x9b\xc3\xb4\x83\x2f\x10\x03\xfa\x94\xd7\xf8\x84\xb4\xa9\x16\x55\x82\x63\x3f\xac\x52\xbf\x41\x12\xe7\x4b\x62\xf1\xf6\x6b\x3d\x19\x77\x12\xc8\xac\x69\xdb\xe4\xa4\xd8\x32\xec\xa3\xfa\xc8\xfb\xe1\xb8\x32\xf5\xdb\x5a\x3e\x51\xbc\x8a\x6f\x41\x8d\xcd\xc3\x33\x7a\x26\x5d\x22\x78\xc6\xc2\xc2\x06\xb4\x34\x45\x41\x50\x49\x0f\xbc\x51\xd9\x8b\x8b\xb3\xc5\x16\x6e\xdb\x0e\xe0\xc1\xc2\x7b\x48\x57\x2d\xd8\xd8\xa7\xf4\x12\x2d\x92\x09\xcf\x2c\x8e\x57\x75\x5a\x69\xe7\x9e\x56\x92\x8a\xb9\x4d\x07\x61\x6c\xa2\x4c\x99\x06\xa8\x69\x49\x41\xdd\x37\x29\x07\x36\xdf\xa1\x58\x22\xaf\x04\x7a\x2d\x1c\x57\x73\x09\xb7\x75\x5d\x8f\x79\x6c\xe1\x7c\xdf\x50\x13\x2c\xe7\xe0\x29\xf8\xaf\xb4\x70\xd9\xb9\xda\x95\x11\xc6\xd9\x30\xf4\x5c\xd4\x30\x2e\xe7\x94\x46\xd4\x66\xea\xf7\xd5\x3d\x74\x19\xdc\xa5\x01\xb8\x1d\x8d\xdb\x63\x4a\x38\xe7\x77\x4e\xd3\x06\xe1\xe3\xb1\xe2\x94\xb8\x50\x9a\x64\xa0\x8b\x95\xb2\x08\xee\x1c\x41\x11\xe6\x52\xff\x5f\xca\xfe\x34\x48\x92\xf4\xbc\x0f\xc3\x67\xab\xbb\xe7\xd8\xfb\x02\xf0\x97\x14\xff\x60\xc9\xa2\x0c\x2a\x02\x04\xad\x08\xda\x1f\xf4\x25\x3b\x66\x1a\x58\xcc\x04\xd5\xdb\x31\x3b\xdc\xa1\x37\xf4\x61\xdf\xae\x7a\xbb\x2a\xb7\xb3\x32\x0b\x99\x59\xdd\xdb\x6b\x7f\x70\x28\xfc\xc1\x07\x43\x21\xdb\x0a\x53\x52\xf8\x90\x82\x61\x2a\x24\x8a\xb4\x4c\x89\xa2\x48\x48\xac\x06\x09\x82\xc2\xb1\xc0\x62\x2f\x60\xef\xd9\xb9\x67\x77\xee\xfb\xec\x71\xe4\xfb\x7b\x9e\xf7\xfd\x65\x67\x8e\x2d\x7f\xc1\x66\x62\xaa\xab\xf2\x78\x8f\xe7\xf8\x1d\xe8\xb8\x5d\x8b\x98\x70\x81\xf7\x8a\xca\x17\xf4\xe0\x3c\x15\x82\xf5\xa4\x08\x70\xf6\x09\x38\xdd\x80\xcf\xdd\x75\xa1\xbf\x46\xa1\x9d\x85\x43\x12\x6b\xbd\xe5\xf7\x82\x3c\x2b\x36\x66\x6b\xda\x3b\xe4\xf5\x03\xe4\x09\xf6\xcc\xa7\xe6\x43\x1d\x6a\xf7\x66\x58\xad\xd7\x6d\xb2\x62\x72\xdb\x21\x7e\xf0\x09\x6a\x95\x9c\xf0\xfc\xa8\x72\x38\xc9\x8b\x2a\x79\x98\xc5\xad\x4b\x58\x55\x37\xce\x0a\x7d\xea\xe3\xac\xd1\xf9\x5e\x9b\x54\xf5\xcf\x77\xed\xc8\x8a\xfe\x19\x38\x83\x27\xd8\x41\xed\x84\x0f\x41\x8b\xf1\x24\x9d\x73\xc9\x23\xb6\x0a\x31\xaa\x6a\x0d\x0d\x29\xe6\xbe\x4c\xd2\xb4\x9f\xd4\xc5\x71\x47\x19\x89\xe8\x9e\x9c\xd6\x18\x3e\xa4\x71\x69\xf3\xd8\x16\x8f\xe0\x76\x55\x67\x9f\x52\x01\x10\x24\x84\x64\x84\xe7\xae\x38\xa1\x8e\xb7\x0e\x9d\x61\x51\xdc\xdf\x63\xbd\xb8\x7f\x40\xfe\xd4\xb3\x20\x84\x60\x0f\x3f\xe3\xde\x34\xe2\x85\x5b\x78\x24\x78\xb9\x4f\xcf\x07\xd4\xd4\x5a\x5c\xc4\x65\xa7\x1a\x1e\xea\x62\x51\x7d\x9b\x1c\x47\x7b\xe2\x2a\x9c\x5b\xf9\xeb\xdd\xe1\xcf\x55\xd7\x88\xeb\xbd\x58\xf3\xac\xfa\x12\xc4\x5a\xd1\x92\xdd\x81\xc6\x3e\x1a\xe7\x3b\xd1\xb1\x80\xf9\xea\x2f\x12\x05\xa5\xb3\xe9\xde\x02\x1a\x9d\x0f\xcd\x43\x0d\x0a\x5b\xf9\x93\x10\x38\x14\xa1\xa9\x28\xc8\xa5\x6e\x39\x1d\x33\xa4\x69\x1f\x38\xf9\x30\x6d\x79\x93\x4c\xe9\x0d\x48\x30\x7a\x00\x6f\xe8\x4f\x5c\x42\x22\x86\x19\xdc\x71\x71\x84\x9b\x34\xff\xd9\x33\x9b\x9d\x5f\xfd\x86\x3c\x97\x2b\x44\x27\xbd\xc0\x83\x63\x6e\xde\x89\x64\x79\x93\x88\x83\x7b\x95\x7a\x0f\x79\x01\xec\x09\x97\xdd\xc2\xb0\x05\x5b\x13\xaf\xf0\x58\xbd\x67\x2d\x61\xba\xc9\x8a\xda\xe1\xc3\x90\x2f\x55\xf9\x9c\x8e\xb7\x09\xbe\x42\x8e\x5b\x4f\x3b\x74\xb1\xfb\xc8\xeb\x5f\x9c\x57\xec\xdf\x7a\xec\x45\x33\xe4\x5a\xdd\x45\xe8\x75\x07\x6f\xc3\x81\x19\xef\x74\x8f\xd3\x37\x4c\xbc\x54\xe8\x5b\x28\x7d\x28\xee\x3b\x8c\xf0\x53\x6e\x5f\x45\x93\xea\xb4\xbb\x2c\x74\xcd\x6f\xd7\xf6\xef\xac\x28\x1e\x0b\x82\x62\xff\x10\x0f\x97\x24\x94\x95\x38\x00\x95\x1f\x7c\xc3\xc9\x29\x55\xc8\x3a\x9b\x24\xf7\x79\x91\xcc\x92\xde\x21\xc1\xc3\x3f\x9e\x12\xc8\x45\xa4\x5c\xd1\x19\xb9\xca\x22\x69\xc7\x08\x28\x2c\x4a\xcc\xaa\x6a\xb7\xbd\x11\xb4\x70\xa8\x6b\xfa\x6b\x36\x2f\x63\xc2\xd2\x0b\xb1\xc7\x3d\x44\x25\xf9\x6c\x43\x93\xec\xdb\xd7\x7d\x71\xef\x73\x8f\x92\xb4\x3d\x12\x26\x54\xcc\x3f\x70\xd7\x8c\x0b\x00\xf2\x14\xc3\xf1\x53\x40\x10\x24\x62\x40\xcd\x00\xcb\xdd\x9f\xb8\x27\xab\xe0\x31\x02\x04\x7c\xe2\x42\x59\x70\x86\x2e\x3b\xf4\x8c\x06\x69\x44\x74\x3f\x85\xd5\x43\xe5\xe8\xda\x7c\x13\x96\x4d\x92\x6c\x0c\xb3\xac\x6e\x03\xf8\x29\xd9\x00\x7e\x4a\x71\xae\x4d\x46\xa0\x7d\xab\x7a\x7c\x48\xae\xff\x1d\xe9\x2f\xca\x1a\xe9\xa1\xc6\xde\xf5\xe5\xdf\x61\x12\x2a\x56\xa4\x21\x86\x73\x70\xa9\xbb\x62\x13\xc1\x87\x63\x71\xfa\x94\x01\xaf\x9f\x52\x2d\x35\x31\x7d\xb0\x48\x35\x5b\xac\x33\x40\xbc\xf4\xd0\x3b\x54\xba\x7d\x67\xda\x7d\x40\xfa\xbe\xe2\x42\x98\x78\x52\xa0\x45\x82\x2a\x12\xa8\x2d\x72\xec\x65\x40\x6c\x62\x96\xb3\xdc\x84\x88\x51\x45\x62\x43\x7a\xf2\xed\x69\x10\x2e\x19\x9b\xde\xea\x2c\xd5\x16\x4e\x44\x2d\x22\x47\xf2\x4f\xdc\x49\xbe\x40\xa4\xed\x22\x71\xb4\xe8\x19\x2a\x41\x21\x0c\xc1\xd2\x7a\x99\x7c\x86\xdf\xa2\xe2\x9a\x58\x12\xa6\x4f\x73\xa7\x47\x1e\xa8\xda\x47\x53\x50\xb7\x63\x3e\x08\xf9\x75\x64\xb5\xf5\x0b\x87\xa7\x89\x09\xfc\x19\x84\xc1\x3f\x8b\xa8\xd9\xbc\x1b\xf2\x84\xde\x42\xe8\xeb\x87\x25\xf5\x90\x59\x28\x02\x2d\x9b\x41\xb8\x59\x1a\x97\xf2\x5d\xe4\x54\x0e\xd8\x23\xd6\xe7\xc7\xb0\x71\x78\xfd\x90\x5f\x79\xc1\x73\xdc\xab\xc9\x81\x7e\x78\x33\xbb\xf1\x74\x90\x1e\x58\xbd\x0a\xdb\xa4\xfd\xed\x1d\xd6\x57\x70\x45\xfc\x0e\x8b\x19\x87\x02\xc0\x4f\x29\xdf\x1e\x3a\x25\x40\xf8\xad\xa3\x57\x7d\x8f\x34\x4d\x6e\x30\x24\x1b\xeb\xa5\xfc\x43\x44\x7a\x12\x3f\xc0\x5b\xd7\xa6\x60\x68\xb6\x67\xbd\x32\x5b\xb6\xb9\x03\x0d\x78\x36\xdc\x41\x4d\xa6\x7e\x03\x24\x36\xac\xcc\x1f\xe0\xd1\xeb\xa7\xf0\x8a\xb5\x58\x14\x60\xd7\x62\x62\x82\xd2\xc5\x69\xae\x47\x62\x21\xf3\xf2\xf3\xd5\x05\x69\xdd\x49\x6b\x4d\xeb\x36\x1e\x0c\xa5\x61\x83\x6f\x98\x9b\x0f\xf6\xb8\xc0\xb5\xe1\xdd\x5f\xc2\xcf\x68\x08\xaf\x41\x5c\x6e\x8b\x78\x10\x78\xb1\x3e\xfc\xf5\xae\x37\x4d\xb4\xe7\xd2\xf3\x2f\x74\x87\x82\x3e\x5f\xaa\xf5\xb4\x15\xd7\x5b\x8b\xb9\xb3\x74\x86\x34\x7e\xce\x91\x17\xdd\x5d\x37\x68\x45\xec\x65\xaa\x70\x82\xd2\x26\x76\x64\xf2\x55\x57\x07\x9e\xa9\x01\xeb\xaa\x2b\xd4\x60\xa1\xe3\x59\x98\xd7\x89\x82\x58\x4e\xd2\xd4\x26\x05\x34\x20\x51\xe6\x39\x45\xd6\x34\xa7\x1a\xde\x51\x07\xf7\x76\xb3\x49\xe9\x0c\x1b\x54\x4b\xb0\x7a\x9d\x8a\x71\x08\xa6\x97\xc7\x1a\xad\x80\xfd\x8b\xdd\x49\x31\x04\x50\x1d\x89\xda\x69\xce\xda\x9a\xd5\xb1\xc5\xc5\xa5\x6e\x11\xe7\x36\x95\x3d\x5f\xc3\x5a\x8a\x7b\x4e\x90\x75\x47\x9c\x24\x93\x91\x94\x04\x67\x88\x8f\xf8\x13\x52\xeb\xb9\x1c\x31\x9f\xc7\x97\x20\x87\x26\x37\x45\xe1\xb2\x5f\xa4\x1a\xb7\x23\xe2\xca\x1f\x27\x47\xbd\xa6\x93\xeb\xa1\xe7\xbb\x06\x38\xd5\x4e\xd0\x52\x80\x7a\xb1\xb2\xf4\x42\xd0\xb9\x9a\x66\xeb\xc5\x4c\xf0\x96\x79\x7b\xca\xfc\xe4\xd0\x3b\xbb\x4a\xf9\xa5\x59\x49\x4c\x99\xbd\x1a\x4b\x47\x4e\x0b\xfb\xee\x91\x68\xc5\x9f\x0c\x7c\xbf\x39\x31\x39\x20\x58\x18\x35\x6f\xb8\x17\x84\x35\xec\xb6\x8b\x71\xc4\xc7\x34\xda\xbe\x75\x88\x23\x62\x5a\x64\x49\xdc\x57\xe3\xaa\x85\x1a\x29\x49\x8e\x1b\xe5\xa5\x7d\xfb\xba\xb9\x55\x4d\xc1\x10\x18\x62\x62\xa8\xea\xfa\xf6\xb1\xb4\x7f\xb1\xdb\x17\x8f\x4e\x84\xdd\x52\x3a\x90\x13\x4f\x3e\x59\xb5\x89\x74\x63\x11\x86\x0b\xed\x51\x4e\x48\x33\xbe\x98\x8c\xc7\xc9\x86\x9b\x9c\x01\x0c\x55\x27\xad\x87\xf5\xd1\xf6\x07\xe2\x5e\x28\x42\xe2\x0c\x60\x22\xaf\x8c\x78\xe0\xe3\xa5\x36\xa7\x91\x80\x7f\x30\xbd\xde\x24\x37\x3d\xa1\x0d\x22\xe7\xfc\x36\x15\xe5\xbe\x4d\xe2\x5f\x63\x6b\xf3\xb9\x1a\x01\xa5\x9a\x51\x3e\x4f\xf5\x39\x33\x62\x0d\xad\x82\x04\x68\xee\x0d\xd2\xea\x85\xec\x91\x93\xd0\xa8\xbe\x50\x1b\xae\x01\x3a\x86\x3c\x0e\xdb\xca\xf5\x88\x60\x64\xac\xa6\x07\x2b\xb5\x5c\x6a\xc6\xd8\x4e\xce\xd1\xc0\xbf\x15\x05\xcf\xc2\x13\xf4\x77\xb9\x4d\x7c\xe4\xb0\xa4\xa5\xc8\x88\xcb\x92\x2d\xeb\xc0\xfa\xd0\x94\x73\x81\xb0\x02\xd5\x21\x7d\x45\x9d\xc3\x4a\x7f\x9a\x73\x10\x77\x6f\x4b\x78\xd8\x8b\x00\x5f\xf1\x49\x75\x92\x0d\xe2\xa2\x8c\x7b\x9a\x54\x03\x97\xf1\x5b\x53\x0a\x58\xcf\x90\xe6\x84\x40\xa7\xe5\x53\x8d\x61\xbc\x7f\xb1\x6b\x5f\x1d\x1b\x92\xc6\xc4\x72\x70\x93\x88\x45\x37\xdb\x98\xfc\xcb\x8e\x5e\xe5\xe9\xaf\x8f\xcd\x87\xd7\x7e\xc5\xcd\x3f\x84\x1a\x92\x8c\x22\x45\xfa\x8c\xaa\xd7\xbd\x24\x1e\x3b\x82\x71\xa7\x86\x4b\xaa\x21\x96\xb6\xff\xac\xf3\xfa\x2f\x50\xd1\x42\x82\x26\x6a\xea\x72\xd2\x62\x55\xb5\xd0\x1d\xe7\xd9\xd8\xa2\x55\x2d\x84\x31\x82\x26\xff\x70\x1a\x7c\x0b\x37\x4c\x51\xe6\xaf\xd9\x51\xb1\x1a\x77\x6a\x4e\xd6\xae\x06\xa4\x11\x5d\x0b\x6a\x12\x7a\x9f\x44\xc3\xff\x56\x14\x1e\xc0\xb7\xa8\xcc\xfd\x8a\xe9\xad\x9a\x44\xc0\xfd\xd8\xc1\x8f\x45\x84\x23\x3e\x46\x86\xe7\x66\x90\x99\x82\xf4\x7a\xde\x64\xfb\xd4\x37\x1b\x97\xb1\xb8\xd8\x1d\x9b\xb1\x33\x33\xa9\x3e\x86\x90\x40\xed\x08\xe5\xac\x2e\xc5\x92\x43\xaa\x18\xe1\x27\x34\xb8\xe4\x78\xb3\x26\x23\x1f\xcb\xee\x8c\x9c\xed\xbe\x7b\x78\xaa\x3d\xef\xae\x1d\x15\xef\x5d\x9b\x4d\x0a\xe2\x42\xb5\x73\xae\x38\x88\xa7\xfb\x0a\xec\xc6\xd8\x5c\xb0\xea\x80\xa6\xa0\xf5\xdf\xa7\x69\xa9\x8a\x1d\x31\x0c\x5d\x4a\x46\x3c\x6b\x99\xea\x41\x4c\xb4\x6c\x35\x5b\x36\xe9\xaa\xbb\x37\xe5\x24\x13\x3b\xfd\x42\x0b\xfc\xfc\xa0\xeb\x76\x4c\x82\x55\x94\x17\x0f\xf0\xc6\x69\xe7\x1a\x18\x88\x83\x7b\xbb\xfd\x6c\xb2\x5c\xce\x56\xaf\x1d\x59\xef\x65\xc2\x0b\xfd\x9b\x28\x78\x69\xe2\x8b\x94\x68\x45\xaa\x3b\xd9\x7a\x2a\xe4\x1a\x00\x37\x04\x3c\x26\x3b\x17\x39\xeb\x5f\xac\xcb\x54\xb5\x85\x0d\xeb\x79\x5c\xda\x9c\x2d\x18\x3e\x61\x88\x39\x09\x27\x7e\x73\x12\xa7\x89\x01\x32\x08\x79\x25\x64\x81\xe4\xb8\x55\x88\xd3\xc4\xb9\x47\x06\xe3\x06\x4f\x93\x53\xe3\x69\x32\xd2\x5a\xb1\x36\x41\xb4\xa9\x5c\x49\x06\xc6\x1e\x43\x90\xaa\xee\x21\x94\x79\x1c\xf3\x01\x67\xb1\x6e\x92\x24\x5b\xd7\x74\x16\x51\x21\xd2\x59\x39\x6e\x41\x7b\x75\xd7\x4d\xe9\x90\x30\xd8\x8b\x50\xf3\x54\x47\x2a\x39\x6b\x03\x49\xa7\xd6\xf6\x81\xdf\xf3\xe2\x33\xfb\x6b\x54\xc1\x97\xbc\x52\x06\x85\xd7\x57\xdb\x23\xb7\x32\xcb\xad\xf4\x35\xc5\xb7\x11\x35\x3a\xac\xc4\xaf\xcb\xd5\xa0\xe5\xb9\x0b\xe5\x33\xed\x20\x34\xe1\x8a\xcf\x75\x0b\x9b\x96\x33\x81\x1a\x27\xf1\x39\x26\xf3\x2c\xab\x33\xde\xa0\xfc\xfe\xf9\xaf\xbd\x80\x47\xe0\xc3\xba\x50\x4e\xbe\xdd\x82\x10\xc4\x76\xa6\x0f\x5b\xcd\x47\x43\x11\xf8\x54\xa3\x65\x54\x8d\x87\x6c\x65\x25\xf6\xc6\x62\x18\xa3\x77\x49\x52\xf6\x2e\x2b\xdf\xac\x1b\xf2\x47\x3f\xcf\xfe\xe8\xe7\x1f\x28\xc9\x54\xc4\xa3\xb1\xe0\x41\x31\xe1\x61\xb2\x2b\xc7\x9b\xe1\xdb\x93\x0d\x64\x7c\x98\x81\xdf\x67\x79\x88\xef\x37\xd8\xaa\x8e\x08\x91\xa5\xae\x28\xa4\x70\x53\x6d\x44\x51\x53\xaa\x71\x55\xfb\xf6\xf9\x52\x92\x5f\x23\x50\x42\x63\xbe\xcf\xe7\xa4\x01\x3e\xc8\xfa\xb3\xf4\x16\x76\x40\x62\x06\xef\xf1\x37\x69\x6b\xdd\xb1\x49\xf6\xea\xbf\xd9\x9c\x7a\x8e\xb7\x99\xe7\x4a\x57\xd9\x7a\xa3\xfa\xbd\xad\x37\xa2\x67\xea\x35\xab\x97\x5f\xee\x1e\x7a\x7e\x17\x49\x3f\x02\x59\x81\xee\xc9\x0c\x67\xe8\xf7\x59\x48\xe1\x9a\x8b\x5a\x90\x57\xfc\xff\x50\x8d\x55\xaf\x83\x50\x61\xdf\xb5\xd9\xd2\x74\xcc\xc6\x36\x37\xa5\x52\xcb\x89\x12\xf3\x92\x67\xd7\x87\x75\xce\xac\x9b\xbc\x3f\x1b\xa8\x10\xd2\xf5\xd3\xce\x5c\x75\x0d\x08\xd5\xc0\x2e\x17\xa4\x7d\x1b\x21\xd3\xb1\x6a\xfc\x2b\x90\x12\x82\x1b\xac\x5a\x4e\xe0\x30\xad\x67\xd0\xd0\xaa\x7e\x4c\x1b\x46\x1d\x2f\xcd\x79\xa6\xc6\x15\xef\xdb\xc7\xdd\x77\x22\x0c\xbc\x37\x25\xf1\x3f\xb1\x28\xc3\x4b\x96\x62\xa6\x7c\x8c\xc4\x15\xa1\xf1\xaa\x56\x74\x04\x67\x90\x25\x0f\x63\xf2\x3a\xca\xa7\xd8\x8b\x3e\x41\x99\x13\x60\xd4\x9f\xb9\x4a\x88\x18\x5f\x47\x41\x79\xff\x91\x79\x5a\xfa\x2f\x11\x27\x6e\xcf\xfc\x23\x3e\xb0\x28\xd7\x77\x11\x5a\xec\x3e\x4b\xd0\x5d\x96\x55\x07\x75\x46\xa8\xac\x23\xf6\x41\xf3\x0d\x65\xe1\xef\xd5\xb8\x56\xee\xea\x81\x18\xbc\x4c\x7a\x85\xa3\xac\xcc\xf2\x2c\x11\x11\x7c\xf4\xb1\x90\x66\xcb\x71\x8b\x03\xd6\xc1\x6e\x31\x19\x98\x1c\x31\x36\x6e\xe2\x04\x71\x75\x2e\x50\x4d\xfd\xed\x16\x11\x83\x97\xba\xaf\x98\xb1\x49\x6d\x21\xb5\x04\x2f\x65\x15\xfc\x3c\x28\x6f\x1c\x67\x45\x39\xce\x52\x7d\xe7\xe8\x00\x5c\x44\x55\x40\x4e\x88\xbb\x97\x16\xf6\x11\x86\x6a\x5c\x75\x19\x09\xe2\x3c\xb4\xa5\xb0\xf2\xdf\x9e\x86\x22\xcb\x4e\xac\xda\x08\x50\xef\x13\x36\x19\x4e\x58\xd8\x43\x1e\xc1\x6c\xc7\x0c\xff\x17\x53\x52\x5f\x3e\x1a\xd5\x4c\xec\x09\x25\x71\xd6\xd3\xfd\x8b\x72\x22\xc9\x17\x16\xe0\x4f\x68\x31\xae\xf7\xa4\xd2\x55\xe3\x72\x44\x4c\xe6\x53\x3c\xb3\x4f\x35\x02\x7d\x48\xdd\xc6\xe9\xaa\x9f\x3e\xf8\x4a\x28\xd4\xca\x71\x40\x28\x65\xa9\x29\x41\xcb\x47\x92\x72\x3d\xa2\x71\x7f\x69\xca\xf6\xeb\x6f\x7b\x9f\xa6\xa2\x17\x77\x08\xa8\x78\x26\x62\x3f\x80\xe0\x10\xdd\x37\xa9\xd0\xc5\xd1\xd3\x3d\x35\x65\x01\x92\x0b\x35\x20\x58\x23\x07\xa8\xe2\xed\x4c\x72\x00\x0c\x3b\x88\x22\xc9\x71\xed\x01\x99\x55\xfb\xa4\x2b\x9f\xeb\xc0\x73\x09\x15\xc6\xcd\x2c\x48\xb1\xa8\x6e\x3e\xbc\x19\xb0\xf9\x30\x05\x00\x40\xe4\x91\xcd\xe0\xce\x7d\x85\xa8\x3b\x77\xd9\xa9\xf2\x59\x57\x4f\x43\xa9\xee\x77\x90\x2c\x60\x0d\xdc\x02\x0b\x5c\x79\x21\xd5\xfc\xd6\x6c\x91\x5a\xfd\xef\x48\x90\xee\xd1\xd4\xd5\x62\x83\x19\x7a\x79\x4a\x4a\xc6\x5b\x6d\xe1\x4b\x2f\x2e\x15\x35\x88\x48\x02\xb6\x57\x5e\x9c\x3c\xb4\xb2\xb7\x1a\x81\xef\xd2\xc1\x25\x67\xc6\xba\x3e\xb4\xc9\xa8\x53\xab\xea\xd7\x6a\xff\x21\x7f\x29\x27\x79\x95\x75\xef\x24\xe0\xda\x45\x32\x3f\x83\xc2\x9c\xbb\x8e\xbf\xf2\x94\x5b\x68\x74\x29\xe7\x48\x36\xa4\xf4\x8f\x6f\x86\x42\x86\x19\x8f\x6d\x52\x05\x22\xb3\xa1\xec\x20\x04\x30\xdc\xfe\x49\x34\x58\x14\x51\x39\x13\x7c\x50\xef\x34\x38\x40\x0b\x87\x9c\x20\x71\xea\xd4\x05\x32\x8d\x09\xa5\x4a\x47\x5a\x57\xc7\xda\xf4\x4f\x12\xef\xaa\x8d\xe5\xf0\xfb\xb4\x34\x7e\x9f\x15\x74\x4d\x5a\x16\x73\xd5\x4b\xc5\x3e\xa9\x08\x33\xdc\xa7\xe8\x45\x28\x89\x23\x64\x39\x62\xfd\xac\x4e\x5a\x2d\x06\xb9\x89\x59\x2e\x66\x42\x88\xf0\x2f\x18\x8b\x8d\xb1\x8e\xf5\xb2\x6e\x3d\xf3\x6a\xe9\xda\xe2\x5b\x17\xab\x49\xb7\x75\xb1\xd1\x29\x3a\x70\xa0\x1b\xa7\x6b\xb6\x28\xc5\xaa\x8d\xbe\x73\x4a\xda\x95\xe7\x69\x39\x5d\xcf\xec\xb2\x1d\x64\x29\x26\x9b\xba\x5a\x75\xbc\x98\xc1\x1b\x54\x5b\x72\x7b\x7c\x27\x24\x91\x3f\x23\x4f\xbe\x9f\xb1\x1f\x13\x60\x74\x24\x2f\x73\x1e\x85\x47\xbd\x96\x16\x96\xe4\x5f\xfe\xc6\x7f\xbe\xf4\x8d\xaf\x2d\x3e\x4a\xaa\x24\x37\x5d\x1f\x5d\x5a\x97\x6e\x48\xe9\xfc\x77\xdf\xec\x8d\xb5\xab\x75\x18\xab\xf8\xf1\x69\x58\x2a\x9f\x24\x60\xc3\x25\xc6\x36\x4a\x92\xad\x52\xeb\x6e\xc4\x69\xc9\x3a\xc0\xb0\xae\x73\x12\x73\x95\xea\x61\x45\x19\x97\x93\xd2\x8a\xf0\x3f\xfe\x7d\x66\x13\xc3\x02\xfb\xbf\xec\x1f\x68\x65\xed\xd9\x0c\x48\xa0\xc7\xd0\x40\xd7\xbb\xd8\x3e\x2c\xbe\xd2\x1d\xc5\x79\xdd\x2a\xef\x1a\x72\x42\x39\x69\x0f\x1d\x07\x49\x96\x8d\x36\xc8\xfd\x0a\xa3\x5f\x8e\x6b\xea\x18\xc6\x5d\xf9\x4c\xf5\x58\x7d\x01\xdd\x1b\x7a\x5d\x64\x92\xc9\x0f\x3c\xc9\xa4\x97\x25\x89\x1d\x58\xe9\x2e\xe8\xa8\xe4\x69\xf0\x21\x06\xaf\xfc\x13\xbe\x45\xfe\x85\x6a\x83\xeb\x66\x35\xeb\x04\xf8\x1a\xaa\x77\x72\x3c\xdd\x16\xea\xfe\x8d\x2a\xd5\x7a\xa6\x7a\x97\x62\x68\x80\xc5\x0a\x48\xc1\xdb\xe8\x52\x29\x80\x9c\xc2\xa0\x2d\xb7\xfc\x62\x59\x75\x53\x44\xae\x69\x2b\xda\xa6\xcd\xe6\x43\x00\x59\x3d\xf1\x2b\x37\x11\xb7\xe9\x4f\xa2\xb1\x26\x6a\xaf\x53\x2a\xeb\x45\x81\xac\x0d\x87\xce\x60\xbb\x50\x3d\x07\x84\x8a\xc7\x5c\x78\x27\x79\x9c\x1b\x03\x62\xf2\x38\xa5\x52\xd8\x89\x29\xc1\x3b\xbe\x1d\x05\x9d\x88\x61\x36\x29\x6c\x2f\x81\x95\x3f\x76\x72\x05\x18\x55\x5f\xa5\xf1\xff\x83\xea\x23\xe3\x3c\x5e\x73\xcb\xac\x17\xb5\x42\xd4\x8d\x07\x88\x32\x1e\xca\xd1\x62\xa1\x20\x36\x15\x8d\x45\x56\xbf\x70\xcd\xa4\x83\x89\x9b\xfc\x8b\x8b\x5e\x39\x94\x6a\x55\x27\xc9\xf6\x85\x24\xa5\xab\xc7\x81\xd0\xe0\x0f\xdd\x9a\x26\xc7\x84\x7b\x4b\x12\x07\xf5\xf1\x72\x9c\xc8\xb5\xe4\x38\x0a\xd0\x87\xe5\x18\x10\x55\xad\xd0\x85\x4f\x5d\x20\xff\xa9\xd5\xb8\xb7\xba\x6c\x7a\xca\x09\xf2\xa2\xe7\xac\x6d\xde\xe2\xab\x5c\x0c\x4d\x9f\xfd\x47\xa4\x60\x2f\x27\xbe\x60\x9f\xf5\xac\x71\x80\xa3\x17\x7c\xa9\x93\x22\xf5\xcd\x80\x12\xf9\x98\x73\x9f\x47\x48\x19\xe6\x72\xab\xcf\x7e\x51\x9a\x95\x95\x6d\x00\x90\x19\x36\x4c\xd6\xa2\xc9\x38\xcf\x7a\xb6\x28\x6c\x7f\x36\xc0\x5b\x45\x68\x0a\xd1\xe6\xef\x92\x07\x84\xf0\x8b\x50\x8e\xdb\x6a\xa4\xc9\x0b\x87\xaa\xdb\xce\xc7\xc5\x30\xcb\x14\xb7\x8a\xec\x47\x20\xd5\x72\x42\xad\x57\xe7\x02\x3f\x1b\xdc\xc3\x81\x40\xc5\x5a\xfd\x43\xea\x15\xfe\xd0\x95\x57\xe4\x33\x2d\xc8\x8b\xc3\x0b\x87\x70\xb3\x04\x58\x0c\x62\x9e\x2d\xef\x67\xd8\x5b\x51\xd4\x37\xa2\x81\xfb\xe4\xf3\xf3\x36\x9b\x80\xdc\x6e\x74\x63\x0e\xee\xed\x0e\x33\x29\xe3\x33\x65\x4d\x8e\xa3\x5a\x74\x92\x67\x6b\x0a\x78\x44\x95\xfb\x1c\x29\x1c\x9c\x6b\x4c\xb7\xfd\x8b\xdd\x9e\x49\xe2\x95\x2c\x4f\x63\x93\x2a\xbb\x4a\xe9\x51\xa4\x12\x76\x69\x1a\xd8\xd4\x63\xe5\x1e\xab\x62\x44\xc7\x2b\x30\xb2\xa7\x61\x92\x15\x85\x75\xe2\xf8\x6a\xff\x37\xe3\x0c\xf8\xb6\xde\x80\x29\xf0\x1b\x11\x85\x18\xd0\x1a\xc4\x5e\x74\x9e\x80\xd4\x1f\x4f\x83\xb0\xce\xf1\x88\xf6\x15\xb1\x90\xf0\xba\x27\xde\x1e\x6f\x87\xeb\x4d\xc8\x5f\x4c\x03\x67\x1f\x7a\xfe\xa8\xe2\xbd\x45\x2a\xea\x79\xb6\x1c\xa3\x38\xe3\x0d\x7c\x03\x12\xf9\x54\x14\x84\xa0\xd6\xb2\x81\x4d\x8a\xd2\xc6\x29\xd8\x1c\x6a\x60\x1b\x18\xb1\x9f\x52\x2b\x06\x14\x7c\xf9\x4c\xc8\x9a\xaa\x01\x8b\xe4\x03\x71\xeb\x0d\x77\xaf\x72\xdc\x88\x7d\xbf\xd2\x1d\xc6\x83\xa1\x0b\xf5\x74\x57\xc5\x4e\x87\xb2\xa6\x1c\xd7\x93\x89\xd2\x3c\xec\x36\x01\x92\xa8\x57\x84\x8b\x00\x96\xd4\x30\x07\x2f\x5b\x50\xa3\x11\xb7\xa5\xa8\x92\x70\x83\xa6\x88\xf4\xf7\x84\xd3\x8e\x48\xb7\xc6\x76\x07\x30\xb0\x4d\xda\xc3\x87\x47\xbb\x43\xf9\xed\xed\x29\x49\x6b\xc3\x7a\x14\x17\xf0\xaf\xdc\x6f\xaa\x77\x96\x1b\x6a\x48\xba\xfe\xa7\x29\x69\xf0\x89\x2b\x2d\xa2\x84\x4f\xdc\xa3\x07\x44\xe1\x0e\xed\xd9\x2b\x59\xde\x7f\x94\xd3\x67\xe1\x28\x61\xff\xf9\x16\xee\x54\x05\x49\xab\xa1\x86\xbb\x46\xea\x8e\xc5\xfe\x5a\x44\x4a\xdb\x7f\x0f\x57\x80\x75\xed\xc9\xf9\x00\x8d\x3a\xe2\x06\x30\x2e\xe0\x84\xbb\x18\xbc\x7b\x00\xe6\x14\x17\xe9\xde\x8c\xb8\xc7\xb5\x19\x71\x67\x63\x9b\xea\x9b\x56\x9f\xce\x0e\x19\x78\x3e\xeb\x47\xa3\xe9\xb9\xc6\xa0\x3a\xcb\xea\xc8\x3e\x35\xa5\xd6\xf0\xa9\x1a\x42\xce\x26\x76\x86\x8c\x6f\xef\x47\xa1\x8a\x75\x8d\x06\xeb\xf1\x5a\xbc\xbe\x61\xfb\x8f\x54\x9f\xc3\x23\x7a\xc8\xdd\x0c\xb6\x88\xcb\x08\xec\x20\xf5\xf9\xe7\x51\xe8\x65\xc3\xdb\x04\x81\xe4\xfb\xd0\xd2\x54\xd7\x97\xea\x11\x01\xb8\xb1\x63\x9e\xc4\xee\xfe\x08\xcf\x05\xdb\xd0\x35\x04\xda\xc8\x66\x1f\x9a\xa7\x3a\xf9\x7d\x52\xd7\xc9\x27\xcb\x71\xcf\x8c\x3a\xdb\x1f\xba\x1c\xfb\x09\x97\x9a\x55\xcd\x3c\xb1\x19\x5e\x25\x50\xf5\xfd\x88\x46\xed\xc9\x46\x34\xfb\xf2\xcb\x4e\xf7\xba\x13\x30\xc3\xe7\xdc\x33\x53\xb1\xac\x07\x11\xb4\x7a\xb9\x89\xa1\x2d\xd9\x9a\xb9\x3c\x08\x3e\xb4\x1c\x0f\x66\x42\x7b\xf6\xdb\x64\xe8\x23\x78\x3c\xb5\xc1\x0b\xa6\x66\xe3\xac\x88\xcb\x59\x9e\xc7\x5c\xe9\x7d\xd2\x15\xa3\xf1\x44\xe6\x36\x09\x5f\x71\x6a\xfa\x58\xa0\xe7\xd8\x04\x6a\x0f\x5e\xee\xac\x7a\x61\xf8\xa3\x87\x36\x83\xdd\xa9\x58\xaa\xc8\x3f\xcc\x3f\xc3\x64\x90\xc9\x5a\x9c\xc6\xc5\xa8\xc3\x30\x89\x80\x99\xbc\x4a\xcc\x91\x6c\x65\xc5\xc9\x7d\xee\xc6\x35\xab\x1b\x79\x18\x3c\x68\x8f\x7b\x86\xfe\x61\x8f\xf6\x64\x8a\xda\xf5\x28\x8c\xb0\xcf\xb8\x6d\x06\x07\x26\xb1\xd9\xa2\xe2\xfe\x72\xf6\xea\x0c\x8d\x56\x80\x7c\x80\xed\xbf\xeb\xd0\x63\x6a\x30\xd2\x62\x53\x3f\xb2\xe5\xd0\xa4\x35\x1f\x5d\xd6\x78\xff\x9c\xda\x81\x23\x93\x0e\x4d\x59\x9a\x74\x67\x20\xd9\x0b\x01\x42\x3b\x9d\xc1\xeb\x05\x5a\x5b\xe2\xd4\xec\x1e\x17\xca\x0d\x3f\xc5\x1b\xd0\x66\x63\x80\xa8\x14\xc8\xf8\x7d\x8c\x07\xd5\x1a\x39\xde\xac\x29\x65\x14\xb6\x37\x71\xfa\x61\x6e\x2a\x09\xc3\xda\x3d\x40\x8c\xa1\xfb\x04\x37\xbc\xe3\x76\x58\xd4\x85\x5e\x67\xd5\xc9\xf7\x6b\xea\x1b\x76\x64\xca\x49\x6e\x93\x8d\x99\x80\x42\xba\x82\x4b\x95\x52\x02\x69\x87\xb5\xea\x34\x2e\xc7\x62\x21\x89\xc5\xf3\x94\x7b\x89\x72\xdc\xe2\x84\xbb\xd4\x2d\xb2\x91\x2d\xe3\x11\xf8\x4b\xba\xd3\x1c\x23\x94\x5a\x53\xf9\xfc\x2b\xdd\x49\xda\x4b\x4c\x3c\xd2\x49\x8f\x5b\x41\xf2\xa3\x4c\x25\x26\xa9\x92\xbd\x05\x24\xaa\xd9\x21\xe9\x2c\x39\xb5\x9d\xa5\xe6\xe1\xd8\xf4\xca\x5d\xa1\x51\x70\x14\x4f\x4d\x5c\xa8\xa7\x14\xa4\x80\x38\x23\x48\xf0\x29\xd5\xa3\x8e\x47\xa4\x8a\xfe\x2e\x36\x18\x85\x17\x86\x08\xaa\x67\x52\xd3\x37\x6e\xc7\x44\x6c\xf3\x3d\xe6\x8a\x0b\xe5\x17\x4f\x1c\x60\x06\x0c\x86\x4d\x97\xc5\x6d\xdd\x8d\xb8\xd2\x3a\x65\x6e\xc3\xdf\x9e\x86\x61\xb4\x49\xc5\xa2\x24\xcb\x0a\xbb\x3b\x40\x91\xce\x39\x51\x62\x39\xc6\xf5\x0b\xeb\x20\xa2\x08\xfb\x13\x92\x32\xdb\x01\x88\xbb\x00\x07\x51\x59\x44\x6f\x17\x82\xeb\x0f\x12\x02\x5e\x5c\x7c\xa1\x6b\x96\x8b\x2c\x5f\xd6\xed\x4f\x18\x03\x11\x81\x72\xcf\x10\xd1\x71\x25\x2e\x86\x68\x24\x6b\xdb\xf0\x2a\x53\x52\xae\xd6\x4d\x9a\x92\x72\x67\xc7\x6b\xec\xde\xc6\x77\x62\xc8\x7f\x8a\xf7\x85\x45\x0e\xe9\x90\x42\xef\xdd\xd7\xc9\xa7\xf0\x8a\x80\x4c\xdc\x41\x24\x93\xc4\x9a\xbe\xcd\x8b\x5d\xee\x4b\xd0\x66\xbe\x3d\x25\xd1\xe9\x77\xc8\x90\xeb\x8f\x90\x5d\x63\xe4\x7d\xc2\x69\xeb\x25\xf7\x6c\xe4\x53\xec\x35\xb5\x8b\x94\xb6\x5f\x10\xb9\x33\x4f\x08\x61\x85\x95\x16\x81\x94\x81\xc9\xfb\x36\xc5\xc3\x54\xf4\x3a\x21\xd9\xa9\x60\x3a\x9e\x8c\xc6\x71\x3a\x70\x18\x67\xef\x91\x7b\x50\x85\x0c\x8f\xd3\x2d\xbc\x4f\x14\xf6\xf7\x7d\xad\x3c\x9f\xa4\xa9\x58\x1c\x2a\xb2\xc7\x5d\x9c\xc8\xe3\x62\x77\x57\xd1\xde\x30\xe1\x46\x71\x95\x3b\x3b\x81\x3c\xb1\x11\x8a\x02\x83\xea\x0e\x91\xbd\xb1\x44\xa9\xd5\x50\x4b\xc3\x6d\x9c\x95\x64\x26\xa3\x48\xda\xd0\x90\xf8\x69\x23\x27\xdb\xb7\xaf\x6b\x46\x66\x28\x7f\x21\x76\x0b\x11\xc5\xf5\x67\x69\xac\x25\xa6\x70\xf5\xeb\x6a\xb1\xf3\x90\xc0\x83\x7b\xe5\xf8\x0a\xee\x4f\x33\xc7\x16\xe1\xfe\x61\x96\x7b\x9d\x5e\xf5\xf0\xa6\xf4\xf1\x4c\x63\x19\x5b\x38\xd4\x35\xf9\xc8\x56\x39\x59\x87\xb4\x85\xaf\x90\x86\xf4\x95\x06\x02\xb4\x0a\x57\xb2\xb1\xdb\x20\x90\x15\x1d\x25\xac\xe3\xd1\xb6\x4a\x6b\x3f\x2e\x9c\x2f\x9c\xaf\xd0\xf8\x22\x62\xc0\xc0\xd2\x72\x94\xc7\xc5\xaa\x88\x0e\x20\x27\x07\x7d\x43\x8e\x7d\x81\xd1\xbe\x3a\x4e\xe2\x5e\x5c\x26\x1b\x9d\x10\x1e\x9f\x75\x0f\x4c\x8e\x5b\x6b\x08\x2b\x89\x29\x86\x1b\x0f\x14\x62\x6a\x96\xc0\x0f\x76\x47\x46\x6c\xa3\xd5\xbc\x27\x44\xaa\xc7\xbc\x77\x6e\x2f\x1b\x8d\xe2\xa2\x88\xb3\x54\x97\x0b\xec\xbf\xe8\xef\xc9\x31\x49\x7a\x98\x57\xe3\x6c\x24\x78\x17\x44\x12\xbf\x3d\x0d\xb1\x9c\x00\x15\x3c\x67\x8a\x15\xf9\x82\x56\xd4\x72\x9e\xf5\x56\xd7\xaa\xe1\xed\x0a\x43\xc0\x68\xdf\x21\x5b\xc6\x3b\x51\xd0\x52\xac\x72\x42\xc1\xa8\xaa\x09\xab\x7b\x19\x72\xc2\x1a\x4c\xfd\x2c\x4f\x6d\x7f\xa6\xb3\x4d\xdd\x5d\xab\xf4\xee\x9a\xb1\x8d\x5c\xf5\x92\x5e\x76\x92\x67\x63\x57\xf6\xa9\x2e\x1c\x5b\xc7\x6e\xf4\xda\xb1\xfd\x6c\x05\x34\xfc\x17\xbb\xf3\xa1\xa2\xdf\xd9\xac\x32\x32\xac\x69\x67\xb7\x89\xcd\x89\x64\xa4\x38\x03\x45\x0c\x09\x3f\x3f\xad\x8f\x1e\x6f\x07\x97\xad\x9b\xbc\x8f\x86\x9a\x57\x2b\xf0\xe3\x53\x40\x36\x6a\x84\x1a\x20\x0a\x7d\xb5\x7b\x68\x1b\x9b\x8f\xd3\x56\x19\xe7\xd9\x8e\x80\x1e\x5a\xb5\x69\x56\x0c\x0d\x56\x3f\xf4\x3e\x8f\xb2\xa5\xe9\x51\x62\xcb\xf6\xf2\x78\x3c\x86\x1e\xfc\x7e\x6d\x06\x48\x23\x51\x4e\x28\x94\x2c\x6d\xfa\x28\x19\x17\x7e\x71\xde\xfb\x8b\xfc\x54\xe4\x20\xb0\xc3\x43\xc6\x08\x41\xed\x33\x4e\x07\x1e\xb9\xed\x69\xc4\xd1\xde\xa7\xf2\x57\x14\x5c\xb3\x49\xee\x9a\x12\x58\xa1\x24\x06\x9f\x5a\x14\xfb\x81\x2f\x41\x02\xff\x29\x12\x25\xd5\x5c\x6d\xd3\xc3\x30\x45\x11\x17\x55\x8e\x08\x65\x1b\x36\x15\x52\x68\x4b\xc7\x1b\xd7\x7f\xcb\x53\x2f\x93\xac\x2c\xdc\x66\xa0\xcd\x3a\xf7\xe0\x3c\x0b\xad\x7a\x1b\xa8\xc3\xee\x9c\x0f\xb3\xef\x02\x0d\xd4\x15\xdb\xb7\xb9\x49\x1e\x0f\x36\x30\x20\x6e\x01\x5b\xbd\x67\x9e\x82\x9f\x39\xb0\xce\x48\x51\x68\x21\x54\x04\xf6\x2b\xba\xe3\x1a\xca\xcc\x58\xfa\xee\xb9\x28\x5a\x8b\x1f\x1d\xaf\xa1\x7b\x83\x45\x39\x77\x80\x22\xa2\xc2\x5b\x64\x62\x70\x0b\x0f\x97\x0b\x29\x5a\xde\xe0\x41\x3e\x98\x6c\xcc\x04\xc9\x9e\x6b\xa4\x63\x2a\xf1\x9e\x86\x35\x61\xd0\x89\xff\xbd\x9b\xca\xc2\xf7\xc7\x90\x50\xf2\xff\x33\xa4\x9b\x3b\x36\xb9\x6b\x72\x3d\x0c\xc5\x9a\x8b\x04\x86\xff\x10\x77\x8b\xe8\x4a\xcc\x92\xb0\x74\x5e\x25\x3e\xef\x91\x29\x31\xe9\x3e\x24\xcf\xb6\x7b\xb8\x5b\x49\xe7\x31\x4a\x10\xc6\xdc\x88\x28\x86\x3b\xd6\xc0\x99\x2f\x2e\x56\xe1\x73\x96\x08\xed\x48\xd6\x7a\x92\x13\x5a\xf0\x39\x28\xa1\x45\x33\x87\x71\xe6\xe5\xe5\x9a\x0b\xed\xf5\x61\x55\xab\x08\x36\xff\x33\x53\xae\x50\x77\x0e\x2f\xe9\x67\xa2\x2f\xd4\x74\xe6\x7a\xf1\xd8\x69\x05\x75\xa8\xfe\x0b\xa2\x95\x1c\xb3\x02\x53\x9c\x38\x38\x5d\x75\x93\x32\x6e\xa2\xda\x20\xf2\xda\x12\x93\x24\x99\x0d\xb5\x18\xd8\xf5\x78\x97\xdb\x80\x6e\x3d\x35\xad\xa1\xb5\x9f\x60\x21\x0b\xfb\x9a\xe5\x15\xe5\x24\xf1\x88\x4e\xfa\x05\x77\x25\xee\xdb\x24\x2e\x37\xdc\x32\x8d\xef\xbc\xe7\x46\xa9\x34\xa9\xd8\x10\x69\xd7\x7c\xc8\x1e\xab\x74\x67\x7d\x68\x95\xb1\xac\xbe\xbe\x6c\xf2\x4b\xbb\x46\x9c\xf6\xb2\x91\x7d\xd4\x67\xa5\xff\xf0\x99\x4d\xc7\xe5\x54\x63\xc4\x99\xe0\xd8\xfc\xbb\x64\xa2\x7f\x9f\x83\xe4\x9f\xb9\xd1\x84\x7f\x38\x86\xd1\x84\x80\x4b\xbc\x62\xb4\x82\x5c\x73\x9c\x0f\x58\x5f\x08\x9d\xa3\x9a\x35\x37\x4f\x50\x83\xa3\x5c\xef\x1f\xc6\xcb\xb1\xea\xee\x63\xd5\xbb\x5d\xf7\x7d\x74\x37\xa8\xb2\xe8\xcd\x8e\xa2\x73\xb8\x98\x09\xad\xdd\xb3\x51\xcd\xe1\xc2\xd3\x8f\x7e\xa7\x0d\x6e\xd9\xdf\x48\xcd\x28\xee\x49\x98\xa7\xf0\x2d\xf7\x08\xe4\xa4\x11\x46\x1d\x5e\xaa\xe2\xd9\x4e\x58\x73\x65\x97\x57\xa3\xa2\x67\xb7\x7d\xfe\xeb\x87\xbb\x69\xe6\xfc\x04\x75\x81\xac\x56\x3d\xed\x82\x84\xe8\x69\x1d\xfc\xfe\x8e\x17\x66\x15\xed\x36\x39\xa1\x32\x7e\x3f\x2e\x7a\x49\x56\xc0\x7a\xf0\xa5\xb0\x52\x7b\x79\x95\x77\x01\xdf\xf0\xfb\x6d\xf0\xf8\xa9\xa9\xfe\x07\x67\xd1\x77\x3d\xe3\x7c\x64\x26\xc9\x4c\x6d\x39\xaf\x6e\x54\x05\x1d\xdd\x8d\x4a\xf7\x8f\x02\xf5\x95\x89\x4d\x6c\xdf\xed\x08\xe2\xb6\x81\xca\x8c\xb7\xde\xf0\x44\x11\xc4\x6c\xca\x93\x7f\x10\x6c\x32\x89\x57\xad\xb8\xbc\xfa\x81\x78\x50\x19\x3e\x3f\xf3\x83\x07\x6b\xa4\x0f\x4e\xa5\x41\xee\x16\x6c\x6d\x96\x07\x06\xe2\x20\x1e\x8d\xe2\xde\x6a\x81\x28\xdd\xbb\x4a\x79\xa1\xbb\x8f\xdd\x55\xa2\x88\xfb\x61\x40\xf9\x94\x36\xb7\xd9\x5c\xa8\xf0\xdd\x22\x4a\x86\x54\x0a\xd4\x78\x35\xc0\x67\x24\x7a\x07\x3a\xe3\x73\x62\x60\xf6\x27\xe5\x06\x52\x41\xa4\x06\xa7\x48\xf2\xff\x14\x16\x75\x6d\x6a\xbb\x6f\x40\x88\x77\x8d\xb8\x24\xbf\x53\xb3\xcb\x21\x2f\x98\x5b\x04\x09\x1b\x8d\x36\x76\x85\x82\xd1\xff\xee\xfc\x0d\xd4\x91\xc3\xbd\x42\x75\xca\x0b\xc1\xf4\x16\x5a\x54\x5e\xdd\xaa\x9a\x01\x28\x34\xbe\xe7\x7e\x5d\x8e\x1f\xd8\x8f\xed\xd9\xb4\xcc\x05\x48\x2b\xb4\x6c\x2e\x01\x3c\xb8\x91\x0b\x06\x9c\x4c\x40\x75\xea\xa6\x15\xf0\x3c\xe9\x7b\x98\xb4\x34\x83\x2c\x8d\x0b\xad\x69\x8b\x60\x6b\x44\xae\x43\x67\x6b\xdd\x8e\x22\x2e\x1d\x3d\x92\xe5\x82\xb0\x61\xcf\x6c\xa2\xfb\xcd\xf5\x7c\xbc\xe2\x3b\xa4\xe1\x29\x82\x00\x4a\x66\xa4\xe6\x55\xfc\xcd\x49\xdc\x9f\xa1\x35\xf1\x14\x7b\xd4\xb9\x39\x27\xba\x5f\xe4\x3b\x3b\xdc\x18\x67\x83\x64\xa3\x67\x47\xb1\x71\x7b\x8d\xac\xad\x11\x49\x08\x1c\x43\x00\x88\xd6\xdf\xbf\x75\x0f\x5f\x8e\x29\x92\x18\x99\xa4\x97\x25\x23\xb7\xec\x11\xfb\x7f\x29\xe8\xa5\xf9\x44\xf0\x44\xe8\x45\x67\x59\x7f\x54\x65\x8c\xe0\xfc\x8b\x82\x6c\x5b\x5c\xd8\xcb\xd2\x5e\x32\x71\x1c\x2f\xbf\x21\x9e\xc3\xf8\x94\x93\x36\xe6\x46\xb5\x94\xea\x64\x44\xa0\x0e\x45\x3b\x39\xf6\xd7\x91\xc4\xcb\x55\xf4\x07\xf1\x0e\x6d\x43\x75\xbc\x4e\x2b\xf8\x07\x68\x3c\x9c\xc0\x50\xd0\x8a\x7a\x9b\x82\xa3\xc9\x7b\xc3\x0e\x19\x40\x9c\x8f\xd8\x63\xb7\x86\xa4\x2d\xe2\xfe\x04\x9a\x37\x2f\xd5\xe8\xc4\xfa\x04\x6b\xc4\x92\x34\x9b\xa9\xe6\x8d\xe7\x97\x7b\x7c\xa8\xa4\x78\x1a\xae\x37\x7b\x72\x24\xe4\xe5\x9e\x1f\xf6\x22\xf1\xa3\x95\x13\xb2\xfc\x2f\xd6\xe3\xf2\x35\x9b\x27\x26\xed\xcf\x3a\x9d\x06\x0d\x18\xaa\x31\x04\x48\xc5\x19\x16\x65\x10\x58\x82\xfc\x4b\x63\x57\x5b\x38\xd4\xad\xb2\xf6\x74\x50\xa5\xb3\xd5\x5a\xc7\x5b\xa1\x32\x16\xfc\xab\xb0\xc5\xa4\x8c\x6b\x0e\xf1\xac\x59\xf7\x66\x23\x13\x5f\x38\xd4\x8d\x8b\xdc\xd8\x24\x9e\x61\xa5\xcd\xcf\x88\xe6\x2e\x85\x31\xc5\x03\x07\x0d\x9d\xc2\xbe\x3a\x1b\xa4\xb1\x3e\xaf\xd9\xf0\x04\x8e\xca\x7b\x6c\x6a\xf9\x39\xa9\xb4\x39\x7f\x4e\xa5\x29\xb6\xb5\x96\x9b\x58\xd1\xa5\xee\x24\xa5\xcd\x44\x2a\xee\x11\x57\xdf\x9f\x21\xe7\x92\xb5\xb8\x34\x9e\x0f\x2a\x3a\x17\xee\x17\x54\xf3\x82\x07\x48\x9a\x6e\x88\x67\x06\x52\x60\xb4\x34\x50\xe5\x7c\x13\x93\x11\xe3\xea\x18\xc9\x0f\xdd\xe6\x1c\x5c\xf4\xd1\x51\x2b\xff\x9c\x84\x56\x87\xd6\xf4\x5d\x53\xb7\x20\xeb\x52\xf1\x4f\xd1\xa8\xa8\xc9\xb4\xe8\x16\x36\x5f\xb3\x04\xb9\xc5\xde\xad\xa2\xdf\xdb\x9f\xce\x2f\x38\xc5\x85\x2c\x0b\xf8\x1b\x20\x14\x21\xe9\x23\xc7\x51\xe0\x95\xd9\x57\xcd\x60\x60\x25\xec\x7f\x51\xab\x91\x82\x5b\x92\x13\x22\x28\x17\xc3\x78\x45\x40\x9d\xaa\x66\xfd\x83\x1a\x73\x84\x25\xc9\xaf\x34\x96\x93\x83\x7b\xbb\x66\x25\x37\xb1\x14\x7b\xb1\x91\xfd\xb3\x69\xc0\x30\xfe\xb3\x36\x53\x85\x95\x38\x35\xa9\x27\x74\xb4\x7a\x2e\x3e\x4d\xeb\x81\x49\xe0\xdc\x10\x72\xa6\x9b\xe4\x28\x7c\xb3\x4d\xc4\x37\x5b\xb3\x79\xf5\x7a\xdc\x0f\x78\x57\xea\x83\x7b\xbd\x2b\x75\xd8\x85\x7f\xf9\x17\xff\xba\x93\x62\x43\xa9\x1f\x81\x83\x1c\xd7\xfc\x72\xd6\x6c\x51\xc6\x03\x11\x44\xf4\x04\xd2\x4f\x09\x89\xfd\x29\x15\x23\x8a\x78\x90\xba\x4e\x8b\x60\x31\xb0\xb3\xfd\x63\xcc\x39\x39\xf1\xc8\x36\xe7\x2d\xbf\x26\xd8\x17\xac\xdc\xef\x11\x4c\xe9\x3d\x32\x7e\x5a\x7c\xde\x15\x5a\x95\x2a\x59\xc5\xd0\xa8\x1c\x00\x6b\x8f\x31\x7e\x91\x21\x1f\x7c\x17\x0e\x59\xf2\x6a\x3c\x32\x65\x35\xd7\x6a\x46\x7d\x61\x86\x5e\x08\xb2\xce\x93\xd1\x72\x22\x6c\xef\xe7\xe4\x62\x1e\x9d\x0f\x01\xec\x4e\x07\x64\x56\xd7\xfb\x10\x68\x16\xe3\xdc\x71\xe5\xbd\x85\xd1\x25\x22\xa1\xbc\x81\x0d\x4a\xa3\x2e\x8d\x12\x37\x4c\x31\x19\xc5\xbd\x61\x8c\xcb\x42\x73\xfa\x24\xf3\x39\x4f\x92\xa6\xc2\x28\x4e\xc7\xb6\x97\xc1\x92\x11\xd5\x9d\x4d\xba\x85\x87\xd0\x26\x55\x5d\x31\x37\xb8\x55\x47\x88\x15\xc1\x9a\xcd\xfb\xc5\xc5\xea\xea\xcd\x86\x94\x79\xc9\x68\xc0\xbb\x0e\x50\x04\xf7\xc2\xd7\xbf\x26\xeb\xab\x8f\x4f\xfc\xfe\x23\xd7\x8e\x77\x7d\x87\xc4\xbf\x8b\xa1\x35\x79\x91\xa5\xb3\x81\xcc\x2f\x30\x2b\xac\xc5\x10\x20\x43\x05\xe9\x06\xae\x5d\x89\x52\x4f\x93\x98\xc9\x7a\x6e\xd3\x22\x4b\x65\x7c\x21\x86\xfc\x31\x7e\x53\x4e\xb6\xf3\x76\x0e\x3d\xdf\x3d\x70\xe0\x99\x2a\x5f\xf7\x8c\xb8\x6a\xe3\x91\x59\x1f\xd5\xb5\x42\xbc\x8c\x9b\x78\x97\x22\x9d\x38\x85\x55\x5f\x9d\x2f\x08\xe1\x7e\xc1\x31\xed\x11\x64\x9f\x85\x8c\x0c\x06\xc6\xc7\x58\x7a\x54\x07\xd7\x0d\x25\x5c\xe0\x3d\x17\xc1\x61\xc8\xfe\x37\x08\xa7\x10\x17\xfd\x0c\xb1\x81\xd6\x2c\xab\xd9\x29\x6d\x18\xf7\x68\x10\x19\xde\x22\x99\x96\x7b\x2e\x59\xc3\x1f\x5f\x74\xcd\x2e\xbc\x83\x1d\xa4\x97\xba\x3c\xc9\x97\x9d\x2d\x72\x75\xcf\x8a\x70\xe9\x78\x19\xac\xf3\x6d\x56\xbd\x43\x93\xac\xd9\xfe\xce\xc0\xd6\x12\xf7\x6e\xc4\xbc\x1f\xbb\x3f\x07\xe2\xf3\xcd\x29\xb9\xa2\x0b\xe2\x0d\xd7\x09\x44\x8c\x8a\xb9\xb6\x71\x9b\x6d\x51\x02\xcc\x87\x46\xcb\xc3\xf3\x2e\xbc\xf0\x05\xab\x03\x07\x82\x0d\xac\xcf\xca\xb6\x98\x68\x7d\xbe\xb1\xa7\x2e\x1c\xea\x8e\x87\x1b\x45\xdc\x8b\x85\x7a\x89\xc7\x0f\xf0\x94\x1c\xb7\x08\xfb\x72\xd3\xb9\xc3\xba\x3d\x11\x01\x76\xce\x11\x10\x7b\x25\xcb\xfa\xc5\xce\x0e\x59\xac\x13\xe0\xf0\xa2\x14\x94\x95\x52\x1c\x3a\xce\xc7\xd8\x3b\x44\x48\x08\x32\x83\xda\xe8\x70\x69\x96\xda\x72\x68\x13\x5b\x14\xb3\xee\x41\xe1\xb6\xff\x35\x31\xbf\x41\x29\x46\x34\x7a\x65\x1a\x5a\xd2\x17\x88\x04\x6e\x5f\x1d\x27\x90\xdd\xaf\xfe\x0e\x35\x0e\x18\x89\xc9\x71\x2b\x8d\x45\xb4\x49\x65\x87\xc3\x98\xfe\x51\x14\x16\xbe\x1f\x91\xc9\x60\x15\xd0\x15\x03\x9b\xc6\xbd\x9a\x72\xb1\x40\xf0\xe4\xa4\x11\x0a\x1e\x7a\xde\x11\xf6\xdd\x0e\xe0\x66\x94\x80\x3a\xa3\x6a\xaa\x2a\xc0\xd3\xa7\xba\x93\xb8\xcc\xd0\xa4\xc3\x2c\x46\x12\xa1\x63\x6d\x26\x38\xfd\x9f\xf0\x35\xb3\x57\xac\x57\x5c\x57\x97\x59\xf7\x72\xe5\x24\xd2\x96\x4f\x3f\x2e\xcc\x78\x5c\xad\x4e\x78\xf9\x3e\x18\xaa\x96\x42\x39\x69\xbc\x9f\xfd\x8b\xdd\x81\x4d\x6d\x19\xf7\x8c\xca\x48\xa8\x4c\x6d\xb8\xc8\x9b\x6d\x90\x0c\x67\xfb\x5e\xc0\x3f\x0c\x9b\x8b\xc4\xa4\x72\xc2\x25\xd9\x34\x2b\x87\x36\x7f\x3c\xec\x7d\x02\x8b\xc7\x3b\x80\x4e\xab\x1a\xb7\x77\xbc\xc9\xfc\x59\xac\xab\xd8\x9e\xaf\xa0\x2e\x82\xfb\x98\x41\x5d\x19\x5b\x87\x2b\xc1\x2e\x6c\xa1\x02\xa2\x5d\xf9\x20\x22\x22\x65\x12\xaf\x52\xb9\x3f\xd8\x6f\x04\x24\xd4\x87\x11\x89\x66\xcc\xcd\xb7\xb0\x18\x87\x4e\xf6\x63\x43\x9e\xad\x68\xa7\x44\x41\x78\xf4\x27\x2d\x78\xbb\xe7\x9c\x93\xe4\x58\x5b\xa2\x9e\x82\xe0\xbd\x1f\x9b\xaa\x1f\x5f\xe9\x16\xa5\x1d\x77\x02\xe2\xfa\x26\xd5\xbc\x6f\x4e\xbf\x50\x2b\x3d\xe6\x63\xa9\x10\x33\xb3\x32\x22\xc9\xfc\xf3\x8d\xef\xdf\xb7\xaf\xdb\x9b\x80\x88\x8e\x4c\xf8\x4f\x91\x16\x7b\x3e\x55\xf5\xc7\xa8\x88\xdc\xc1\xd6\xa1\xeb\xf8\xb6\xed\xe8\xaf\x55\x39\xec\x23\xec\xba\x14\x11\xb5\x68\x13\xdb\x86\x04\x17\xee\x31\xa1\x87\x00\x99\x0e\x6c\x5a\x10\x8e\x65\x71\x21\xbf\x7f\xf9\xba\x8a\x14\x6c\x74\x0b\x75\x37\xaa\x16\xcf\x44\x89\x3b\xed\x6b\x6b\xab\xf1\x3a\x04\xa0\x7c\x68\x44\x7d\xba\x16\x1b\x9f\x95\xd8\xe6\x3d\x76\xd5\x02\xac\x5d\x8e\x37\x43\x59\x69\x60\x0d\x26\x2e\xf2\x64\xa0\x4a\x50\xde\xbf\xca\x30\x82\x1b\xad\x09\xf4\xb2\x88\x60\x2e\x79\x84\x4a\xa8\xa0\x9d\x6d\xa3\xaf\x8e\xad\x75\x36\x48\x33\x0c\x3c\xa9\x9e\x23\x10\xc7\x7f\xe2\xfe\x5e\xb5\xf1\x5a\x98\x41\x7d\x47\x7c\x53\x99\xc0\xbf\x09\x32\x90\xd6\x5e\x5b\x80\x0a\xd9\xca\x4a\x61\xcb\x0e\x59\x07\xd7\xdc\x58\x54\x0d\x6d\x92\xf6\x6d\xbe\x52\xfd\xaf\x2c\xa9\x92\x7e\x91\xd4\xe0\x31\xda\x61\x46\x55\x82\xf5\xa4\x7b\x3a\x88\xf7\xe7\x30\x73\x51\x5b\x03\x81\x1e\x2f\xbd\xb3\x49\x8d\xb4\xf3\x88\x4d\x90\x9e\x3e\x3c\xdf\xf9\xda\xaf\x79\x35\xb2\xea\x36\x50\x58\xfc\xc3\x88\x44\xaa\xaf\x91\xf9\xfa\x9f\xb8\xae\x86\x84\x3c\xb2\x8b\x21\x38\xbb\x1a\x85\x5c\x61\x66\x93\x44\x38\xdc\x88\xc3\xe1\x97\xe6\x89\x87\x3f\xb3\x59\xad\x59\x78\x08\xb7\x5a\xf0\x32\x4b\xdd\xdc\x3a\x08\xa8\x4c\x71\x45\xc0\x91\xe5\xfd\xb1\x88\x65\xb8\x33\xc7\x6a\xe8\x77\xa8\xfc\x74\x1d\x81\x9c\x9c\x3c\x10\xd0\xe8\x2c\x5f\x67\x03\x30\xef\x02\x62\x2e\x74\xf6\x8e\xbb\xe7\x82\xb9\x70\x91\xcb\x39\x27\xb6\xcf\xdb\xc3\x4b\xdd\x7d\xfb\x40\x3a\x42\xb5\xf2\x9a\x7b\x09\xe2\x7c\x81\x47\x8a\x00\xe0\x21\x97\x93\x78\x4b\x8c\x6a\xa6\x2b\x3f\x53\x27\x5b\x5c\xda\xc4\x55\xdd\x5b\x2d\xbd\x42\x4a\x31\x4e\x26\xe9\xc0\xee\x22\x96\x0a\xa4\x2d\xb1\x0e\x74\xe6\x43\xf5\xf0\x9c\x7b\x43\x5a\x39\x76\xa3\x40\x05\x92\xaa\x17\xec\x85\x29\x7d\xbf\xf7\x86\xcf\x41\x7a\x99\x30\xcd\xdd\x20\x46\xc2\x70\x92\x2c\x2d\x4f\x52\x99\x6a\x60\x8b\x2a\xbd\x43\xea\xef\xf9\xde\x8b\x8b\x9e\xef\xdd\xa6\xe2\x3d\x19\x65\xb9\xfb\x03\x8f\x90\xf7\x3b\xe4\x79\xe2\x98\xf4\xb2\xaf\xee\x0e\x09\x93\xe8\x74\xe0\x7b\x51\x81\xc3\xda\xf2\xf0\x66\x70\xfc\xbf\xc0\x7a\x55\x77\x59\x22\xfa\xe9\xf9\xce\xdf\x5c\x90\x1e\xd0\x43\x92\xfd\xe0\x27\x77\xb4\xf8\xb3\xbc\xd0\x2d\xca\x38\x5d\x45\xa3\x19\x7b\x06\x5c\x1d\xd4\x21\x20\x24\xde\xec\x00\x3e\xce\xe2\x14\x99\xb1\x97\x59\xfa\x09\x49\x03\xff\xa4\x45\x0a\x62\xa1\xbb\x9c\x4d\x06\x43\x31\x30\xd0\x32\x8e\x1b\x24\x5a\xc7\xd9\x1e\x6a\x1c\xdc\xdb\x9d\xa4\x62\xab\xaa\xab\x87\xa2\xda\x42\x25\xf5\x1c\xa7\x49\x71\x51\xda\xd4\xa5\xb0\x35\xc3\x33\xdf\x0f\x05\x21\x59\x0b\xed\x6d\x62\x24\x0a\x78\x27\x7a\xd7\x13\x58\x82\x30\xb0\x3b\x6e\xb5\x47\xa4\x70\x39\xa2\x38\xfe\xd8\x36\x8b\xdb\x7d\x0b\xf2\x42\x8f\x90\x05\xfc\x0e\x46\x46\xff\x29\x85\x92\x8e\xed\xe6\x30\x3d\x73\xd5\x33\xc5\xc2\x08\x9a\x01\x1a\x68\x57\x89\x1b\x79\xd5\x0d\x67\x85\x29\x57\x93\x0e\x33\x73\x66\x3e\xd4\x2f\x87\x66\x34\xb2\xb9\x23\x3e\x74\x82\xef\x09\x34\x0a\x54\x0f\xa9\xcd\x16\x79\xd9\x19\x8f\x78\x61\xe8\xf7\x20\x52\x8b\xb9\x36\x33\x4f\xe1\xf8\x45\x8c\x53\x5d\x5b\x34\x60\xcd\x72\x3b\xa8\x92\xdd\xe0\x8d\xef\x7e\xb2\x26\xce\xa0\xf0\x51\xae\x95\xfc\x0f\xb5\x0e\xc1\x64\x5c\x76\xdc\x0f\x8b\x9b\x1d\x1e\xb4\x5a\xdb\xd1\xd4\x99\x8c\x67\x42\x96\x74\x1d\xe9\x26\x56\xe2\x13\x14\x20\xec\x98\x7f\x8c\xbe\xbc\x67\x1e\x76\x6f\x41\x91\xeb\xb8\x0c\x2c\x2d\x1f\x90\x0e\xd0\x2d\xb7\xb4\xa0\xe6\xf6\xd0\xa6\x5b\x5a\x7c\x77\x7e\xe9\xe0\x92\xfe\xcb\x3c\x6f\x94\xa1\x73\x74\x63\xca\x86\x21\x6e\xf5\x52\xa8\x7e\xcb\x6e\x3a\xce\xe2\x2a\xbb\x77\xd7\x85\xa4\xe9\x02\x25\x50\x17\x5a\xe8\xd9\x4b\xdd\x7e\xa6\xf0\x34\xa1\xa4\x72\x1d\xe8\x73\xea\x81\x8f\x6c\x6e\x13\x28\x52\x02\xda\xb2\x45\x28\x66\x69\xbc\xe3\x9d\xdc\x89\xc8\x18\xf1\xc3\x29\xe9\xd0\x63\xc3\xd0\x19\xb5\x3d\x7e\xd8\xb7\xaf\x5b\x66\x03\x83\x7e\xb1\x42\xac\xab\xdf\x43\x22\xfc\x2e\xb1\x78\x9a\x55\xc5\x2a\xed\xca\xad\xe9\x6f\x30\x83\xe2\x14\xe5\xfe\xa7\xbc\xd9\x63\x6e\x8b\x32\x9f\xf4\x4a\x27\xd4\x81\x3a\x15\x72\xf0\x8e\xe3\x38\xb8\xe5\xe7\x00\xcc\xf0\x10\x9a\x77\x36\xb7\xf1\xc0\x5e\xdc\x5b\xc5\xd9\x3b\xab\x49\xe6\x13\x88\x50\x95\xc4\xce\x8a\x08\xf6\xef\x03\x21\x88\x37\x0b\x31\x66\x6c\xd0\x3f\xa6\x28\xe4\x2d\xaa\x52\xf5\x26\x65\xa9\xfe\xba\x78\x9c\xbb\xe7\x43\x7e\x24\xb2\xc5\x40\x84\x40\xcf\x46\x8e\xa7\x44\xdb\x9d\xd9\x0c\xc5\x5a\xe7\xba\x9e\x63\xcb\xc1\xb2\x72\x9b\x28\x64\xb7\x1b\x3d\xf0\x2a\xb1\x8c\x11\x91\x89\x5c\xfb\x34\xac\x55\x77\x3d\xd2\x61\x32\xce\x49\x6a\x46\xad\xe3\xc3\xea\x72\xba\x31\xd8\x9c\x28\x8f\x73\x86\xf3\x5c\x8d\x33\x64\x34\xde\xd4\x8c\xaa\xfe\x20\x89\xcb\x32\xb1\x33\xa1\x36\x2c\xac\x12\x2f\x41\xea\x75\x15\xde\xa7\x02\xf5\xc8\xe4\x83\x58\x85\xab\xb4\x25\xee\x2e\x94\x75\x45\xf0\x6e\x91\x0a\xa3\xe3\x53\x47\x01\xa5\xc9\xc6\xd3\x04\xc7\xd8\xe1\xb8\x2d\x40\xb0\xbc\x81\x6f\x43\xa1\x12\x5b\xb8\xe6\xcf\x0e\x89\xe1\x85\x50\xab\x19\xae\x36\x2b\x6e\x58\xe3\x63\xbb\x1d\x7c\x02\x4b\xe0\x23\x9b\xa4\x71\x88\x50\x11\x53\xfc\x34\x1b\x96\x01\xfd\x85\x84\xe4\x73\xc4\xa9\x5a\x8f\x22\xe1\x12\x61\x3f\x62\xac\x7c\x9f\xc0\x63\x9f\xca\xfa\x24\x11\x30\x15\x8a\x6f\x35\x3d\x73\xf7\x75\x87\x36\xed\x59\x84\x6b\x78\x62\x68\x81\x63\xf3\x02\x35\xc4\x15\xce\x2e\x3f\x53\x6d\x64\x5b\xb7\x09\x6f\xf0\x71\x5b\xba\x03\xfb\xce\x4e\x20\x9c\xc2\x31\x46\x8e\x9b\x36\x2d\xcf\xbf\xd0\x2d\xf3\x2c\x1b\x4b\x7c\x8b\xc1\x77\x9c\x84\xad\x8f\x37\x46\xcb\x81\x03\xdd\x95\x2c\x1f\x4d\x12\x01\xfe\x79\xc1\x87\xa0\xb2\xd6\x48\x78\x0e\x2f\x1c\xea\xa6\x36\x2e\x87\x36\x77\x85\x67\x74\x78\x8f\xb9\xaa\xa4\x57\x58\xf3\x2f\xea\x26\xc1\xa6\x4d\xda\x8b\xd5\x78\x06\xef\xe1\x63\x26\x14\x7d\xec\x63\xd5\x61\x36\x10\xf2\xa7\xc7\x1e\x79\x3f\x09\x09\x5c\xb1\x3a\x5f\xa2\x38\x51\xdd\xaa\x77\x31\x5a\x03\xe6\x0a\x88\xe8\x5e\xc7\xaa\x82\xdb\x12\xb7\x37\x80\x29\xef\x92\xf4\xeb\xe7\xee\xe2\xe5\x2f\xdc\x83\x50\xb1\x4c\xa5\x48\x95\x71\x99\xd8\xb9\xea\x15\x7e\x01\x31\x05\xeb\xc9\xa0\xc2\x80\xb7\xed\x3d\xe2\xf7\xab\x2e\x4e\xb3\x27\x77\xe0\x80\xf3\xb3\x2c\x9c\xd3\x1b\x79\x13\x22\x1a\x96\xe3\xe9\x53\x84\x75\xc9\x6d\xaf\xcc\xf2\x3d\x18\x9a\x82\x6c\x9c\xd6\x30\x14\x24\x02\x71\x14\x4f\x0b\x31\x00\x82\x77\x44\x56\xe7\x31\x19\x91\x95\xa2\x9b\xeb\x9d\x86\xaa\xe7\x27\xdf\x45\x6a\x70\x7f\x3f\x0a\xd4\x9a\x6c\x3d\xb5\xf9\x5c\xc0\x6b\xfd\x00\x3f\x03\xa4\xbc\x50\xd5\xd0\x8f\x3d\x47\x7a\xbd\x42\x25\x94\x7f\xa0\x9c\x63\x39\xc3\x82\xf5\xe2\x5e\xa9\x13\x5d\x45\x72\xc3\xec\x5d\x65\x01\x3c\x45\xbe\x07\x59\x62\xcb\xd2\xcc\x92\xec\xcd\x1f\x44\x01\x5b\x03\x08\xb5\x58\x92\x91\x70\xfe\xbf\xa4\x5f\x4e\x27\x79\x61\xfb\x4e\x05\x18\xeb\xc7\x77\xdc\x1f\xa1\xc4\x72\x09\x8f\x42\xc1\x25\x61\x57\x77\x89\xe4\x78\xa6\x1a\x28\x58\xcd\xae\x60\x9c\xa1\xba\xf9\x23\xf7\xc2\xb5\x4a\xd3\x34\xd9\x19\x67\x45\x29\x84\x6e\x92\xd5\x5f\x08\x6d\xcd\x00\x13\x91\x22\x8f\x3a\xd1\x6d\xdf\xfb\x0f\xee\xed\x0e\x4d\xb2\xb2\xa7\x7a\x70\xea\x5b\x58\x5d\x14\x62\xd2\x3b\xb8\x28\x4f\x44\xd8\xb7\xe0\x19\xf1\x6e\xec\xab\x72\x61\x28\x2a\xdf\x99\xd6\x74\x8c\x82\xbf\x35\x20\x08\xd8\x33\xae\x13\xa8\xce\x45\xfd\xfd\x9d\x54\x96\x7a\x8b\x60\x87\x58\x7b\x30\xc4\xfe\xcc\x7d\x9b\xd4\xb1\x30\x42\x25\xcf\x8a\x88\x23\x7b\x8e\x2a\x91\xcb\x93\xbc\x6f\x53\xb4\xe2\x15\x9b\xc8\x40\xc5\x96\x1a\xf2\x62\x77\x92\x16\xf1\xc0\xd7\x90\x95\x89\x44\xac\x24\xea\x29\x99\x35\xfb\xa8\xbb\x5f\xcc\xd9\x9d\x9b\x94\xcb\xc1\xa7\x18\x21\xdb\x51\xb7\xb4\xe1\x55\x9d\x47\xaa\x41\x73\x48\x1a\x2e\x3b\x7f\xde\x01\x9b\xbd\xd4\x7f\x18\xbe\x7b\x36\xbd\xab\xdb\x9e\xbf\xe4\x16\x32\x94\xe9\x6f\xb3\xda\xfb\xce\xcd\x10\xe3\xed\xde\x6c\x53\xdf\xcf\xb3\xbe\x45\xc8\xe9\x0d\x65\xaa\x3f\x97\x13\x1a\xd2\xbd\xdc\x9a\x91\x04\x74\x6d\x3d\xc7\x67\xa8\xe2\xd3\xcb\xb3\xf1\x30\x13\xb2\x1e\x5e\xce\x35\xca\xd9\xae\x79\x5c\x44\x9e\x4d\xca\x38\xb5\x73\x34\x70\xce\x91\xe9\x3a\x04\x95\xbc\xd8\x86\x92\xe9\x0f\x7c\x69\x3e\x28\x9e\x1d\x25\xbc\xb3\x23\x18\x20\x0e\x0a\x0a\xa4\xee\x7e\xe4\xa4\xb1\x1f\x1e\x7a\x1e\x64\x2b\x60\x11\x04\xbc\x15\x05\x2c\xf3\x19\xc2\xb6\x0f\x33\x5f\xc7\x55\x87\xc8\xd0\x8d\xb9\x40\x5c\xce\x65\x9b\x24\x73\x2c\x52\x75\x3f\x22\x0b\xee\xe3\x62\x26\xdd\xf1\x46\xdc\x82\x03\x7b\x90\x9a\xcb\xe2\x62\x77\x25\xce\x2d\x5a\x0b\xff\x6f\xf2\xe8\xbf\x34\x31\x1d\x5a\x9b\x6f\x4f\xd9\xea\xf5\x76\x14\x2e\xd2\x15\x6e\xdc\x65\xe1\x4e\x4f\xd0\x5d\x9f\x60\x93\xb1\x2c\x2d\xe2\xbe\xcd\x77\x87\x15\x10\xaa\x4c\x08\x18\x3e\x72\x2b\x83\x58\xe8\x61\xce\x21\xef\x7a\x4b\xa2\x1c\x72\xa9\x78\xce\xeb\x68\x54\xaf\x15\x35\x90\xdf\xa3\xd7\xfd\xd0\x66\x5b\x95\x61\x25\xce\x47\x36\x9f\x75\x9b\x2c\x16\x1d\x69\x38\x01\x62\xfb\x43\xca\xd0\x7e\x63\x4a\xf6\x31\x97\x48\x53\xb0\xb4\x45\x59\x08\x8c\x04\x7b\xff\x8d\x88\x99\x36\xbc\x21\x93\xca\xb8\xd0\x9e\xe5\x2f\xf0\x96\x50\x54\xfc\xc0\xd7\x9c\xca\x3c\x9e\x8c\xc6\x43\x5d\x1b\x90\x5c\xec\x40\x1c\x29\x27\xf3\x4f\x7b\x24\xe5\x9a\x29\x14\xfb\xe2\x6b\x32\xd2\x34\x91\x93\xc6\xeb\x7f\x71\xef\x73\xdd\x0d\x0b\xf7\x34\x5f\x97\xf5\x6c\x96\x73\x24\xf0\xde\xcb\xd2\xd2\x8e\xc6\x59\x6e\xf2\x0d\x88\xec\x88\x25\x20\xb7\x5a\x4e\xd6\x78\x21\xd5\xbd\x22\xaa\xfc\x90\x62\xf6\xf5\x2c\xed\x3b\xa9\xeb\x25\xdf\x5b\x03\x5c\xc5\xd5\x3f\xfe\xd1\xd3\xf3\xd5\xa2\x8f\x9b\x7b\x72\xf3\x89\x6d\x32\xbc\x2e\x7d\x47\x1e\x01\xd1\x02\x15\xe4\xaf\x2e\x1a\x7d\x97\xa3\xb5\xd8\x7e\x68\xd6\xa5\xb9\xa5\x88\x25\xf7\x3c\x14\x99\x14\x56\xd6\xbd\x06\xac\x57\x2c\x74\xd7\xb9\xd7\xf4\xe9\x36\x3b\x84\xb6\x3a\xed\x38\xcf\x4a\xdb\x2b\x25\xc3\x56\x45\x41\xb7\xf4\xa8\x02\x5a\x78\x04\xe2\xcb\x30\x17\x7c\xea\x66\x5c\xd4\x0f\xc2\xc5\xbb\x0c\x3c\x82\xe6\x81\x42\x4e\x02\x3a\xe9\x3c\xe9\xc9\x8c\x6d\x5e\x45\xc4\xd5\x38\xae\x2e\x5a\x1f\xbf\x1b\x32\x08\x40\xaf\x34\x33\x78\xf9\x07\x12\x0a\x4d\x62\xf1\x01\x05\xc3\xe0\x52\x0d\x73\x23\x8f\x00\x7b\xee\x8e\xf9\xed\xc9\xe4\xc2\xa1\xee\x78\x52\x02\x28\x84\x02\xe0\x65\x80\x51\x95\x11\x18\xba\x4c\x3f\x6a\x35\x48\xb7\xaf\xd9\xd5\xd8\x82\xe9\x85\x44\xee\x18\xc3\x15\x8e\xd1\x7c\x1b\xc5\xaf\xda\x3e\x02\x28\x8f\x42\xf2\x1d\x38\x81\x1d\xc8\x89\x5b\x76\x34\x59\x6f\x69\xe1\x17\x76\xcd\xe6\xe8\xce\x20\xe5\x81\x44\x86\x1c\x73\x4d\xc4\xe4\xbd\x2c\xaf\xb7\x49\xb9\xa7\xc7\x2a\xb3\xd6\x14\x8f\x79\x78\xf8\xe2\x93\x98\xe6\xae\xf9\x7c\xf3\x2f\xcc\x13\x7b\xe8\x38\x91\xa9\xef\x45\xe4\x39\x74\x02\x94\x5a\xbc\xa1\xcf\xe9\xa5\x7f\x71\x93\x9a\x94\xc7\x5d\xc8\x86\xed\xfe\x7a\x44\x33\x12\x90\x31\x44\xac\x2a\xf9\x55\x03\x58\x90\x2b\xb8\x67\xaa\x68\xe1\xd4\xd5\x68\xbd\x8e\xe4\x41\xaf\x29\x39\x0d\x33\x31\x35\xe5\x50\xcc\x4d\xb0\xc5\xdc\x64\xeb\xc4\x9b\x35\x17\x94\xb5\x58\xf4\x28\x54\xd0\x25\xdc\xf2\x9d\x1a\xee\x8f\xc4\xec\x6c\xda\xdf\xa8\xb7\x41\x6b\x7e\x12\xe1\xa5\xd8\xfe\xc0\x31\x5a\x0f\x2e\x79\xc8\x93\x5b\xc8\x91\xd1\x9d\x20\xbc\xf9\xcd\x88\xdc\xbb\x4f\x78\x08\x53\x61\xd2\xfe\x7a\x0c\x8f\xd0\x20\xbd\xd4\xf1\x86\x97\x5b\x11\x37\x05\x5a\x90\x64\xb9\x1d\x27\xa6\xa7\x22\x72\xde\x20\xbb\x7a\x95\x72\xd2\x48\xba\x17\x0e\x75\x37\xb2\x49\x39\xa4\x91\x2e\x6d\x11\xad\x5f\x04\x11\x9e\xe5\x49\xe1\xde\x07\x1e\x1e\x90\x0b\x72\xdc\xd2\x93\x5b\xea\x0e\x33\x85\x16\x60\xff\x13\xdd\x04\x39\x21\xd8\x5c\xdf\xae\xd8\xb4\x88\xd7\x2c\x7d\xfd\x07\x51\xf8\xfa\x0f\x08\x52\x69\x27\x79\x06\x80\x37\x99\xde\x9f\xe7\xc1\x7f\xde\x97\x73\x07\x79\x30\x09\xc3\x23\x14\x7c\x80\x9c\x50\x88\x60\x26\x65\xb6\x33\xe0\xe0\x45\x63\x4c\x5b\x29\xee\x1b\x94\x08\x44\xfd\xbd\x5f\x97\x75\x08\x9d\x03\x51\x6d\x41\x64\x7b\x92\xa0\x6c\x55\xb2\x93\xa2\xf6\xa7\xed\x6b\x04\x69\x67\x28\xbc\x6f\x16\xa2\x1c\xec\x36\x1e\x4d\x92\xd8\x6d\x05\x3e\x3d\xf1\x74\x3c\xa1\x5f\x62\x23\xb8\xd8\x28\xa9\x7d\xa5\xbb\x6c\x8a\xa2\xc3\x7e\xa5\x1d\xf2\x31\x0d\x13\x23\xb1\x66\x4d\xad\x48\x91\x45\x7c\x3a\x25\xe3\x8a\x1b\x6e\xe8\x6a\xc8\xda\x72\x95\xa9\x5d\xf7\x1a\xe8\xde\x8c\xb2\x7a\x4a\x72\xe2\x41\x1b\x76\xc3\x0e\x12\x53\x78\x66\x32\x7e\xec\x23\x4e\x66\x3e\x22\x25\x9d\xde\x24\xb7\xa4\x37\x29\x25\x27\x39\xa1\x97\x37\x9e\xa4\xab\x0c\xc1\x86\x3a\x80\xee\x58\x5a\x74\xe8\x9b\x6a\x26\x57\x4f\x03\x65\xb2\xb3\xe4\x62\x7f\x96\x9c\x0a\x21\x81\xd0\x61\xb1\xbe\xb7\x59\x9f\xef\x6d\xda\x3a\x8b\x49\x3e\xb0\x60\x8d\x2d\xf9\x02\x45\xc8\xb5\x3f\xa7\x6e\xe8\x72\x9e\x99\x7e\x51\x9a\x9c\x5c\xdd\xc5\xb0\x49\x79\xfb\x4d\x85\xc7\x17\xba\x3d\x93\x24\xc0\xbc\x2e\xc9\x9a\x03\x34\xf3\xd6\x4d\xac\xd1\x58\xbd\x2e\x11\x8f\x60\x14\xa7\xae\xf0\xfa\xe2\x5e\xcf\x59\x71\xbf\xa2\x64\x96\xed\x0b\xc7\x81\x03\xdd\x61\x56\x38\xd7\xfb\x07\xaa\xd8\xff\x95\x07\xb4\x69\x6d\x51\x9a\xe5\x24\x2e\x86\xbe\x24\x8b\xe7\x79\x04\x0f\x4c\x4e\x68\x91\x2c\x86\xd6\x0a\x06\x19\xfb\x06\xb0\xa0\x72\xbc\xa9\x03\x45\xa4\x86\x1c\xc9\xaf\xfa\x56\x80\x20\xbe\xe0\xea\xe4\x80\x56\xfc\xff\xe7\xc3\xdb\x7b\x78\x93\xe6\xe4\xae\x79\x8e\x7d\xef\x84\xd5\x35\xb1\xfd\xbe\xd2\xa1\x94\x6d\x43\xcc\x1b\x12\x55\x29\x6c\x1a\x67\x79\x5c\x6e\x00\x80\x27\xed\x1f\xd4\xbe\xb4\x17\xd4\x32\x0d\x92\x2c\x1d\xa8\x1e\x79\x00\x7d\x78\x4d\xd5\xa6\x5b\xf0\xbe\x7d\xdd\xe1\x64\x24\xa8\x37\x65\xf9\xbb\x5b\x91\x93\x96\x11\x51\x0d\xb9\x35\xab\xc8\x1c\xf5\x0e\x08\x1d\x8a\x63\x5e\x87\x68\x39\xc9\xb2\xbe\x0b\xea\x94\xd6\xed\xfe\xc4\x57\x76\xfc\x62\xf7\xa8\x7b\x94\x48\x31\xef\x62\xbb\x90\x32\x4f\x7b\x6d\xdc\x16\x4e\xfb\xce\x2b\xd7\xbe\xcd\x24\xe4\xb7\x09\xdf\xed\xb1\xd3\xc2\xcb\x17\xc9\x9b\x28\x04\xb6\x9f\x4d\x6b\xae\xf5\x19\x46\x20\x5a\x0b\x1f\x32\x0b\xf5\x43\x32\xc7\x7b\xc5\x48\x5f\x01\x4f\x09\x1e\x0d\x72\xdc\xe2\x03\xd8\xb5\xfd\x49\xcf\x25\x22\x02\xe2\x46\x94\x2f\xd0\x21\x39\xa1\x39\x6d\xd7\xe2\xbe\x55\xfe\x32\x67\x21\x3a\x0e\x3a\xde\xb3\x82\x6d\xd0\x97\x27\x1b\x71\x3a\x78\x24\xa8\x01\x9d\x72\x1e\x96\x18\x5d\x3b\x49\x3d\x52\x26\xae\x60\xb7\xa6\x81\x00\xfe\x8f\x22\x52\x68\xf8\x5e\xa8\x01\x7c\x5f\xb4\xf0\xd5\x8e\xc8\x5d\x37\x43\xbf\xe4\x37\x36\x09\x59\x71\x9c\x52\x9c\xe5\x3c\x4b\x7b\x19\x1e\x99\x94\xcb\x5c\x29\x4b\x4b\x67\x8f\xd2\xc0\x37\x6e\x13\x54\x20\x9f\xbb\x50\xe4\x4c\x6f\x47\x24\xbf\xfc\x36\xc1\x13\xde\x63\x65\x58\x11\x48\x53\x50\x60\x28\xa9\x94\x93\x7c\xd9\xa4\xc8\xd4\xa0\x5f\x2a\xdd\x64\xe9\x5c\x6e\xc3\x0d\x10\x89\x9b\xca\x59\xd6\xe4\x71\x31\x74\x0d\x5e\xe5\x88\xb8\x5b\x46\x9e\x0a\x75\x31\xc4\x00\x27\x11\x7a\xa9\xd4\x6a\x8b\xb7\xcf\x38\x8f\xd7\xe2\xc4\x0e\xb0\xc1\x60\xf0\x9f\x8c\x08\x11\x7a\xb2\x31\xf8\xf7\x2f\xba\x9d\x3c\xd7\x90\xc2\x0b\xb5\x07\xd1\xf6\xc6\x14\x7f\xf9\xe5\xea\xbf\xe5\x70\x26\x28\xdc\x9c\xa0\x9e\xc6\x05\x6a\x5d\xdd\x26\xdc\xf5\x8a\x83\x5d\x8f\x2c\x8b\x81\xdf\x79\x70\x6a\xdb\x82\x8e\x8d\x93\x64\xe2\x54\x9e\x75\xaf\x45\xca\x2f\x8e\xca\x72\x42\xbe\xe2\x66\xf4\x88\x2f\xb2\xfd\xb7\xb3\x9b\x61\x8c\xdf\x27\x55\x94\x39\xe8\x4e\x6b\x61\xb6\x1a\x44\x88\xe6\x4e\x02\xbc\x22\x5c\x45\xf4\x9f\xbc\xc4\xf5\x7e\x45\x87\x5c\xc6\x8f\xcb\x9f\x30\x41\xfe\xbe\x7b\xe5\x80\x6a\xdf\xac\x35\xd3\x93\x72\x6d\x96\x06\xd8\x95\x29\x91\xa1\xcf\xd3\x30\xbc\x42\x14\xbb\xf3\x7e\xcf\xef\x25\x99\x59\xed\xd0\xba\x77\x84\x70\xc9\x47\xda\xac\x6b\x7a\xf9\xc4\x62\x99\x40\x19\x13\xb6\x65\x72\x4c\x1c\xf4\x61\x36\x5e\x8d\x53\x4c\x2a\xec\xc1\xbf\x8f\x89\x20\x27\x64\x73\x3f\x32\xa9\x13\xe6\x40\xea\x81\xa6\xce\xbb\xd4\x20\xff\x53\x92\xc5\xfb\x5e\x6b\x53\x6a\x38\x19\x58\xc1\xab\x7a\xe1\x40\x52\x41\x78\xba\xde\x25\xde\xbf\xd8\xfd\x05\x37\x8d\x55\x75\xd1\xbd\x0e\xd4\x93\xae\x92\x5a\xf3\xbb\x78\x1d\x80\xa2\x9f\x65\x51\xb3\x9f\x8a\x8e\xaf\xfc\xcd\x03\x59\xb5\xb9\x1d\x5b\x53\xce\x74\x0e\x3d\xef\xa1\x3d\x1d\xaf\x31\x2a\xa4\x36\x94\x57\x8f\xb7\xc1\xbe\x4b\x13\xaf\xc3\xc2\x20\xd4\xa1\x3e\x8e\xa8\x0f\xf2\x71\xa3\x42\x74\xe8\xf9\xee\xaa\x15\xc8\xa8\x6f\x50\x05\x58\x46\xb3\xb9\x2f\x52\xee\x9d\xa0\x76\x74\xde\x2d\xb9\xca\xa4\x0c\x89\xf2\x8b\xbf\xb8\x77\x96\x24\x46\x76\x6c\x92\x40\x33\x9c\x99\x10\x52\xa0\x43\x8f\x09\x7f\x9f\x12\xd1\x22\x9b\xe4\x3d\x3b\xeb\x56\x24\xd4\x2c\x90\x5f\x62\x4a\x89\x9b\x36\xfa\x74\x77\xc9\x87\xae\xf4\x86\x94\xd9\xba\x73\x6e\x0b\x29\x01\xca\x30\x4a\xac\xd9\x86\x4f\xd3\x72\xc3\xa5\x69\x20\x5a\xaf\xda\x3d\xf5\x42\x84\x6f\x76\x76\x50\xa5\xab\x31\xac\xd0\xad\x7b\x06\x08\x40\x64\x37\x37\xdd\xda\x04\x58\x22\x60\xea\x78\x18\x37\xdc\xaf\xd7\xdc\x19\x44\x0a\x9c\x48\xe4\xbd\x2c\x5d\x8b\xd3\x9e\xed\xef\x71\x1f\x50\xe7\x84\xa0\xc1\xb5\x63\xbe\x73\x78\x29\xbc\xb6\xea\x41\x49\x6f\x69\x4a\x29\xef\x8c\xdb\x2b\xd1\xf9\xeb\x00\xb9\xe2\x89\xe3\x5e\x39\xe4\x52\x35\xdd\xb7\x2e\xb3\x56\x9d\x49\x8c\xab\xc3\x04\x01\x9f\x40\x8f\xc2\x22\x86\x26\xba\x68\x8b\x60\x15\x7a\xdf\x53\x48\x7b\x71\x19\xbf\x66\x51\x48\x10\x9d\x0d\x37\x57\x54\x73\x23\xbc\xe8\xdc\xae\x64\xf9\x68\x17\xb5\x1a\x8f\x62\x0c\xe2\xe4\xb6\x4c\x1e\xbc\x04\x75\x5a\xc2\xd2\xf8\x0e\x45\x6a\xf0\x32\xc1\xec\xbb\x1b\x05\xb2\xe3\x47\x8d\xa9\xb2\x6f\x5f\x37\x1e\x8d\x6d\xbe\x62\x7b\x40\x48\x60\x9f\x44\xdf\x49\x8e\xb9\xa5\x64\x06\x99\x74\xbd\x75\xa2\x87\x22\xc2\xbb\x3e\x3b\x1e\xe7\x71\x91\xa5\xae\x65\x88\x95\x1e\x52\x9b\x6e\x83\xff\x75\x08\x39\x0a\x91\xbb\x45\x2a\xef\xb9\xee\x38\xcf\x5c\xc0\x2b\xaa\x77\xde\xf4\xc4\x03\x7d\xc5\x5e\x50\xfc\x3d\x88\x72\x55\xe6\x36\xed\x17\xb3\x81\x1c\x0f\xd4\x1e\x16\x8a\xcb\x6e\xbc\xa8\x69\x0d\xed\xc7\xdf\x9d\x3e\xe2\x23\x81\x57\x00\x9c\xc2\x6c\xb8\xe4\x62\x20\x14\x2b\x3f\x23\xcc\xdf\x0f\xc3\xab\x35\xe3\xd2\xc4\x69\xcd\x28\xc5\x6d\x17\x0a\xe4\xdc\xfe\xc0\x5f\x7e\xb9\x6b\x6c\x9e\x15\x63\xd3\x43\x7c\xa0\x6e\xa9\xee\x7a\xe4\xa4\xd1\x60\xd9\xb7\xaf\x9b\xc7\x7d\x91\x06\x79\x29\x58\xd4\x06\x14\x77\x93\xe3\x7c\x70\x6f\xd7\x14\xc5\x64\x04\x18\xa7\x7a\x91\xba\x0b\x95\x93\x46\x69\x65\xff\x62\x77\x4d\xf5\xbf\x55\x0d\x29\x20\x41\xee\x37\x5e\xd6\xfe\xc5\x6e\x2f\x1b\x8d\x13\x1b\x74\x0d\x84\x81\x51\x63\x63\xa8\x55\xc9\x37\x7f\xf9\x3f\xc5\xf5\x93\xe9\xc8\x92\xdf\x76\x42\xd1\xa0\x8a\x92\xb3\x99\xf0\xba\x3f\x24\x79\xf1\x0f\xa6\xa1\x55\xfa\x77\xc2\x80\x73\xc5\x29\xc0\x3b\x10\xd5\x1f\x27\x5d\xa0\xbb\x53\xea\x79\x3f\x3c\x1f\x46\xaf\xf4\xbc\x95\xe5\xdc\x1c\x8b\x0b\xdd\xb5\x38\x9f\x24\x36\xed\x71\xb5\xe0\x8f\xf0\xb2\xe4\xc4\x5f\x04\x02\xd1\x4e\x48\x1e\x81\x1e\x52\xe4\x4c\xb3\x8e\xf5\x42\x77\x3d\x4e\x5d\xf8\xe6\x7b\xa1\x5e\x2e\xfc\x1e\x4a\xea\x5a\x9e\xf8\xa2\x7f\x38\x4e\xe6\x2c\x5e\x9e\x94\x0e\x94\x50\xfd\x18\x20\xd9\xa7\x31\x27\xe4\x84\xaa\xb4\x93\x7c\x65\x8e\x54\x8e\x6e\xba\x8b\xd2\xf2\x36\x91\xa2\xc8\x6a\xe5\x4f\x6a\xf8\xe3\x16\xd4\xea\x73\x5d\x93\x67\x23\x03\x50\x3d\x56\x63\x91\x36\x16\x9d\x63\x97\xa0\xe8\x5b\x6a\x38\xc0\x3e\xff\x82\xdb\x39\xff\x03\x30\xac\x8f\x87\x17\x3c\x98\x68\xf9\x51\xd9\xf2\xc4\x9e\x3a\x4f\x78\xb3\x57\xb2\xa1\xa3\x04\xce\x04\x73\xb5\x4f\x98\x40\xf8\x49\x14\x6a\x7e\x4e\x93\xa3\x37\x49\x4c\xce\xaa\xfe\xbf\x4d\xba\xad\xbf\xdd\x98\x58\x5f\xa9\xfe\x13\x2c\x7d\xbc\x04\xbe\x17\xcd\xbf\xc0\x86\xa7\xc3\xb8\xb7\xea\xbc\x85\x99\x0b\x58\xbd\x67\x39\x26\xce\xf8\xd0\xe6\xb6\xef\xb4\x76\x48\xbf\x3b\xf8\x65\x8b\x68\x82\x54\x1f\xa2\x20\x9c\x5b\xe6\x59\x5c\x52\x2b\xec\x3e\x2b\x62\xdc\xaf\x69\x47\xbe\x92\x6d\xec\x0c\x68\xb5\x7f\x1a\x51\x1a\x76\x9c\xd3\xb0\xe3\xe8\x2e\x88\xfe\x0e\x81\xda\xfe\xa9\x0b\x71\x54\x97\x87\x65\xd9\x96\xb3\x14\x7e\x04\xda\x92\x20\xf2\xe9\x91\x46\x4d\x79\xdf\xbe\x6e\x51\x9a\x7e\x3c\x19\x49\xca\x23\x72\x5e\x4e\xc0\x56\xa5\xbd\x18\x07\x3c\x1a\xdb\x24\xf1\x10\x66\x5f\x65\x5f\x5c\x94\x7d\xee\x38\x11\x39\x6e\xd0\xc3\xe9\x25\x71\x6a\x77\x87\x25\xf0\x0a\xed\x08\x92\x74\x20\x74\xb9\x59\x47\x0f\x54\xcb\x0c\xe1\x3c\x34\xe8\x10\x0f\x40\x8c\x3a\x10\xb0\xc5\xc2\xa8\x0d\xea\xbe\x62\xf2\x91\xac\xd9\xa2\xd7\x3a\xa5\x92\xf1\x67\x8d\x88\x7c\xdf\xbe\x6e\x62\x7a\xab\x4a\xae\x06\x32\x4c\xa4\xb1\xe4\x84\xbc\xc1\x52\x29\x3d\x3c\xd6\x61\x16\xfd\xaf\x48\x0f\xe6\xd5\xf7\x50\x69\x66\x7b\x54\x55\x21\x47\xe0\x00\x55\x81\xd3\xd3\x9a\xfd\x3c\x3d\x91\xa3\x0c\x65\x9e\x81\x16\x2a\xd8\x10\x70\x17\x42\x82\x7d\x09\xb7\x24\x5f\xe6\x22\x0f\x81\xc6\xd6\xc8\x99\x8d\x69\xf4\xf2\xcb\xdd\xe5\x49\x51\xaa\x8e\xa1\xb7\x4f\x0a\x5a\x9b\x4d\x14\xc9\xe2\xe2\x52\x77\x92\xc6\x6b\x36\x17\x52\x8e\xb6\x37\xdd\x25\x68\xe3\x33\xac\x7d\xbf\xf8\xcb\xbf\x3c\x43\x88\xb4\x3f\x75\x11\x80\xea\x36\x85\xae\xed\xcd\xa0\xf6\x91\x2d\x2f\xc7\xba\x20\x29\x17\x93\x44\xff\x2f\x34\xf6\xc0\x03\x07\xba\x36\x1d\x24\x71\x31\x1c\xa9\xbe\x25\x06\x27\x12\x29\x39\x9e\x32\x93\xff\x9b\x93\xb8\x88\x4b\xdc\x00\x02\xb6\x0f\xdc\xc5\xc8\x71\xad\xad\x9b\x8f\x32\x2c\x33\xc8\x7c\xfe\x39\x9e\x8f\x9c\xb4\x6d\xe0\xcb\x59\xd2\x47\x71\x11\xeb\xfd\xc7\xe4\x34\xf2\x71\x9b\x0c\x01\xb8\x8e\x7e\x39\x93\xd0\x9f\x1a\x8a\x97\x82\x4b\xe8\xaa\x1d\x3b\x86\xa3\xd3\x16\xc4\xf6\xfe\x09\x01\x92\x3f\x89\x38\x8b\x4d\xfa\x0a\xdb\xc7\x2e\x76\xd4\x3d\x7d\x6f\x37\xb3\x5f\xc7\xac\xf4\x3f\xc5\x89\x5e\x00\x0f\xea\x4b\xdf\x12\x72\xf4\x63\x33\x48\xb3\xa2\x8c\x7b\x24\x0f\xfa\x26\xc9\x83\x06\xf1\x96\xde\xd0\x9a\xb1\xcd\x77\x06\xb0\xd4\x49\x12\xf2\x78\x16\x99\x0b\xae\xe8\x2c\xa6\x3f\xda\x74\x7f\xc9\x79\x3b\xc8\x38\xee\x50\xae\x34\xd3\x00\x57\x54\x9b\xd9\xd8\xe4\x6a\xde\xad\xae\x92\xa1\x0d\xfd\x9b\x6d\x9d\xb1\xf5\x4c\x47\x30\x80\x7d\xf2\xeb\x72\xd2\x58\x17\x5c\x7d\xa8\xcc\xad\x11\xaf\x0a\x75\x89\xef\x04\xc7\xf8\xc6\xab\xd5\x4c\xfa\xff\x03\x5e\xb3\x56\xa7\x2e\xab\xa8\x87\x35\x3d\xb0\x72\xca\x71\xbd\x92\x62\x47\x8f\x74\x16\x17\xb7\x3a\x35\x70\x21\x5a\xb5\xca\xcd\xee\x2c\x1c\xf2\x17\x40\xc0\xcc\xe3\x92\xd2\xe8\x9c\xc1\xdb\xc7\x73\x78\xc3\xed\x35\x12\xf2\x73\xf5\x1a\x4e\x81\x98\x2e\xd7\x88\x0c\xd2\xd4\xb7\x59\x38\xd4\x1d\x4d\x92\x32\xae\xf6\x79\xe7\xd5\x15\x10\xce\x3e\x7f\x3e\xd3\x16\x6e\x9b\x41\x6e\x75\x1d\xc0\xd5\x88\x1f\xb0\x9c\xb4\x69\x82\x9b\x7e\x2c\xb0\x21\x31\xf2\x88\xc2\xf8\x3c\x59\xd7\x1c\xcd\xbf\x4a\x40\x5b\x49\x7b\x95\x81\x1f\xca\x3b\xe3\x3c\xeb\x4f\x7a\x56\xf1\xa4\x48\x4a\xee\x23\xbd\x55\x1f\x1f\x37\x50\xb1\x78\x8b\xd6\x02\x7b\xf2\x60\x49\x3c\xe6\x76\x55\x55\x36\xaa\x1e\x2a\xfb\x1d\x6d\xbd\x31\xa5\xe5\xf3\x0e\x27\xbe\xeb\x66\x0c\x8c\x9f\x3a\x03\x76\xbc\x90\xc8\x9d\x56\x9e\x6e\x6a\x57\xb3\xac\x90\xa7\xa0\xad\x86\xea\x0b\xb4\x07\x11\x6e\xce\x25\x27\x4e\x20\xc3\xd7\x29\xff\xbd\xdb\xa4\x3c\x89\xbb\xfa\x0e\x85\xd5\x87\x6a\x78\xdf\x91\x1c\x76\x87\xbb\x7b\x0b\x28\x02\x44\xbe\x00\xc8\x68\xfd\xb9\xba\x55\x3f\x23\x3d\xee\xeb\x37\xb9\xe7\x76\x36\xc2\x00\x94\x3f\x27\x2b\x92\xcd\x46\x3f\xab\x4a\x08\x7a\x26\xf4\xb3\xf0\x75\x78\x2a\x72\xcc\x39\xb0\x2d\xca\x19\x17\xf6\x29\xda\xa1\xe3\xf5\xa5\x30\x34\x14\x6f\xd5\x52\x2c\x2c\xad\xe9\x0d\x67\xea\xce\xd2\x3e\xa7\xbf\x5c\x67\x26\x86\x17\xb6\x9e\x67\xa5\x9d\xab\xf5\xc2\xab\xdb\x56\x89\xcc\xea\xd1\xa8\x0e\x27\x21\xe9\xe9\xba\xde\xe4\xaa\x93\xed\xe5\xb6\x44\xf4\xe2\x89\x84\xd5\x40\x51\x9c\xc0\x53\xcc\x65\x2d\x7a\x59\x6e\xd1\xd9\x40\x3e\x05\x3b\x22\xc4\x7f\x1f\x12\x9c\xbe\x15\x9a\x97\x1b\x41\xa7\xb4\x55\xbe\xb7\x8b\x14\xee\x5f\xec\x7e\x59\xa2\x2a\xb0\xce\xcf\x46\x4e\x42\x50\x4e\xfc\x76\xb5\x6e\xe3\x42\x9c\xd0\xab\x60\x56\xdd\x34\x02\x54\x4e\x64\xc7\xb1\x0c\xdc\xa2\x8e\x2a\x92\xac\x5e\x59\xc0\x1c\x07\x37\x71\x16\x31\x31\xa6\xd7\x29\x44\xcb\xf2\x2f\x6e\x37\x93\x7f\x68\x13\xb7\xc8\x27\x7d\xdc\x9e\x76\x03\xa8\x33\xe0\x2f\xd7\xe9\x8e\xaf\x79\x02\x8f\xfa\xbb\x12\xf8\x8b\x9e\xca\x9d\xb6\x96\xdf\x20\xcf\xd6\x81\xc1\xf4\xa2\x8c\xd5\x45\xaa\x28\x23\xf5\x6d\x4c\x6f\x35\xc9\x06\xe4\x1d\x78\x96\xbc\x03\xcf\xfa\x8c\x7d\xb2\x92\xcd\x32\xcd\x42\x4a\x0e\x58\x92\x8f\x50\x11\xf0\xa3\x29\x55\x64\xb7\x7c\xdd\x71\x68\xd2\xbe\x95\xd2\x19\x42\x73\xb4\xab\x14\xee\x4a\xe6\x05\xb7\x10\xad\x2a\x53\xf2\x49\xe2\xbc\x9a\x0d\x9b\xc3\x2f\x1c\xe9\x29\x26\x0f\xee\xea\x7f\x66\xf5\x42\xa9\x5e\xaa\x1c\x58\xcb\xbe\x9b\xc4\xe9\xaa\xec\x86\x58\x91\xee\x63\xe3\x45\x70\xfd\x36\x21\x18\x3b\xf3\xad\x5a\x73\x26\xb7\x2b\x13\x55\x78\xc0\x27\x7f\x12\x85\xbf\xfa\xc9\x03\x69\xc7\x8e\x80\x32\x13\x3a\xd2\x37\x6b\xa8\x20\xf7\xf4\x54\x2d\x2b\xc4\xaf\x6b\x71\x32\x3b\x73\xd8\xcb\x7b\xa0\x4c\x89\x7d\x02\x84\x4b\xc4\xe6\x82\x60\xc3\xc9\x0f\x7c\x9b\x76\xe4\xd4\xe6\x42\x37\xf6\x53\xf6\x18\xfd\x34\x0a\xf6\x3b\x45\x69\x6d\x32\x32\xab\x1e\xf5\x8b\x90\xe8\xfa\x94\xe2\xa3\xeb\xd1\xd3\xdb\x4d\x01\x17\x0e\xed\x22\xb2\xf6\xa9\x3a\x52\xa6\xe3\x2d\xf6\x5e\x8f\x48\x14\xf5\xcf\x31\x6f\xb4\x28\x12\xb2\x9c\x1f\x32\xd7\xfb\x14\x41\x67\xa1\x39\x95\xe5\x8f\x04\x41\x7f\xd7\x16\x56\x55\x40\x19\x74\x67\x23\xca\x92\x00\x6e\x17\x07\xda\x88\xca\xe3\x9f\x4d\x89\x0a\xfd\x36\x79\xa4\xaa\x22\x92\xaf\x6f\x1f\xdc\xab\xff\xb2\x49\x1e\x4b\xc7\x28\x5d\x5f\xce\x4d\xda\x1b\x3a\x1d\x15\x4d\xb6\xc1\xf5\x57\x92\x70\x08\xa7\xfa\xd6\xdb\x5e\x11\x13\x3b\x0a\x77\x54\xb7\xbd\x7a\x2d\x4e\x1c\x7f\xc1\x83\x53\x0e\xfb\x45\xfc\xf3\x69\xc0\x52\xde\x6b\x8c\xf0\x03\x07\xba\xeb\xd9\x24\x95\xc2\x29\x12\xd3\xf3\x24\xd7\x2b\x22\x50\x08\x7f\xef\x34\x0a\x5e\x0b\x87\x34\xbb\x8a\x25\x5a\x02\x4a\xe3\xa1\xf9\x80\xd8\x68\xc2\x8b\x1d\xe7\xd2\x2e\x1b\xc9\x68\x44\xfc\x27\xa2\xa0\x3e\x10\xdd\x6d\x31\x4e\x49\x77\xe6\x33\xf6\x93\xf9\xac\x85\xcd\xf9\x42\x95\xf9\x3b\x64\xbb\x4a\x66\x5e\x77\x19\x26\xaa\x23\xe2\xae\x84\xa7\x71\x03\xef\x19\xb9\x2f\x78\x8f\xa8\xca\x6f\x4d\x1f\x21\xee\xe0\xff\x23\xc7\x95\x19\xab\x0f\xe2\xb8\x32\x63\xb5\x43\xa4\xd8\x3a\xf7\xf5\x41\x7c\xd7\x2f\xc6\x3a\xaa\x4b\x9b\xc3\xcb\x33\x36\x25\xf8\x80\x88\x81\x77\xcd\x87\x4a\xce\xdc\x66\xc0\x78\xbf\xd9\x6a\xd5\xdd\xb7\xc2\xa9\xa8\xbe\x00\x5b\x86\x18\xf5\xca\x49\x4b\x55\xb3\x1b\xa7\x76\x2d\x2e\xcd\xb2\xaa\x9f\x21\x44\x05\xa7\x44\x8e\xb9\x2c\x95\x8d\xec\x7a\x96\xaf\x62\x50\xa9\x59\x4d\xc7\xab\x76\x7c\x67\x4a\x9b\xe4\x87\x54\x8d\x7f\xc5\xa4\xa9\xdd\xe8\xb0\x61\x99\xbc\x70\x39\x69\xe4\xaf\x0b\x87\xba\x1b\x26\xb1\x08\x1f\x81\xe3\x40\x8d\x52\x8e\x37\x03\x32\xcb\x9a\xdc\x99\x3f\x1e\x94\xb6\xe8\x2d\xf7\xf6\xb0\xfa\x38\x9f\xbd\xad\xb3\x88\x8d\xe5\x9f\x9d\x48\x8d\x16\x46\xc2\x0a\x9b\x4d\x12\x97\x1d\xaa\x5e\x01\x05\x9d\x37\x64\x74\x60\x15\xfb\x88\x6a\x3d\x68\xb1\xa2\x8e\x70\x11\xbf\xa2\x0b\xf9\x33\x0d\x46\x91\xe8\x29\x7b\x13\x1e\xef\x4a\x7c\x96\xf4\x3d\xe2\xd2\x8e\x8a\x6d\x54\x1d\x1f\x22\x5c\x9e\x36\x6c\x7c\xb0\x7e\x76\xea\x9a\x8c\xd5\xc4\x50\xa5\xc8\x27\xc8\xff\x33\xcb\x72\x91\xa0\xf5\xcc\x39\xdf\xdd\x79\xbd\x91\x6b\xfa\x0e\xac\x99\xa9\x6b\xb5\xfb\x46\xc0\x3b\x6e\x0d\xd2\xe6\x63\x00\xb4\x3a\x5d\xa9\x0e\xd7\xbc\xb9\x16\x1e\xae\x68\x1c\xf7\x56\x6d\x39\x13\xd8\xf4\x10\x1d\x61\x35\x32\xa1\xc6\xfa\x40\xc4\x9a\x7c\xb6\x26\x53\x1c\x3e\x84\xf4\xbc\xb6\x91\xaa\xcc\xd7\x13\x8c\x1c\x1f\xc5\x25\x02\x11\x35\x4a\x77\xef\x0d\x03\xeb\x28\xe9\x29\x0b\xd8\x05\x5f\x3e\x3b\xbf\xfd\xf1\xbc\xfc\x72\x77\x94\x65\x69\x6c\x55\x4b\x0a\xf3\xec\xcd\x88\x0c\xfa\xdf\x6c\x08\x08\x57\x6b\x64\x9c\xf6\xed\xd8\xa6\x7d\x2d\x15\xe0\xe5\x9e\xe7\x4e\xd4\xf9\x46\x16\xbf\x7f\xb1\xbb\x66\xd2\x5e\x36\x59\xb3\x8a\xca\x56\x11\x35\x4a\x1a\xbf\x1b\x29\x39\x22\xb7\xa3\x38\x8d\x8b\x9e\xfe\x08\xa2\xae\xdd\x9b\xa1\x38\xba\xbb\x71\x4b\x68\xe3\x8c\xb2\xb4\xc0\x1b\x57\x59\x7c\xfc\x1c\xa2\xfd\x7b\x6c\xf7\x73\x81\x8d\xa6\xcc\x64\x30\x2c\xdc\xcb\x84\x62\xc1\x7d\xac\xc3\x1a\x30\x86\x50\xed\xa2\x17\xbf\x19\xc5\x85\x49\xcb\x61\x9e\x8d\xed\x36\x47\x18\xbf\x9e\x5e\x69\x24\x5f\xce\x5c\xb9\xb4\xa3\x31\xd6\x07\x65\xe3\x80\xfa\x22\xc7\x8d\x22\xa3\xfb\xa3\x6a\x01\x9b\x09\x5b\x13\x7a\xdf\x58\x16\xee\xf3\x5a\xf9\x7e\x4b\x09\x77\xa9\xbb\xe2\xad\x78\x54\x37\x94\x34\x67\x4f\x12\x6e\x63\x25\xcb\x6d\x3c\x48\x77\x85\x7c\xf9\x13\x37\xae\x41\x22\xbb\x8b\x72\x88\xfe\x12\x95\x81\xbf\x8b\x2f\xd4\xc2\x3b\x9e\x3a\x96\x20\xb4\xe6\x95\xfc\xa3\x55\x2d\x93\xe7\xf1\x9a\x15\x15\x7a\xc4\x25\x1d\xd4\x54\x10\xbd\x5c\x9b\xb2\x39\x7f\x0b\xce\xe1\x95\x2c\x76\x69\xc2\x96\x5b\x4c\xb6\xce\xfa\x4c\xce\xf4\xd7\xb2\x9e\x09\xdd\x3c\x6c\x93\x27\xa2\x40\x73\x3e\xc1\x96\x47\x26\x2f\xd5\x95\x04\x57\x7f\x96\xa8\x30\x67\x1b\x1e\xb7\xd5\x76\x9e\x4d\x4a\x61\x71\xc8\xf5\x2b\x60\xda\xed\x21\xda\x46\xaf\xd6\x17\x95\x5a\x6c\xaa\x71\x2c\x39\x67\xc9\x59\xb2\xf3\xc3\x90\xc3\xda\x87\x46\x80\x94\x16\x5d\x88\xa5\x3c\xda\x67\x48\x5a\x06\xb2\x22\x59\x3a\x43\xea\xfd\xe7\xf0\x35\x1e\x4b\xe8\x13\xaf\xbb\x41\xc5\x3d\xae\x42\x51\xef\xff\x8f\x6f\xfe\x74\x1a\xa4\x08\x44\x66\x1d\x6b\xf5\x1b\x34\x3a\xe4\xae\x77\x56\x17\xe4\x1d\x24\x17\x0e\xa9\x54\x17\xa6\x97\xfc\x43\xe4\x62\x7e\xd4\x41\x8e\x91\x65\xe6\x31\x70\xf1\x55\xdd\xeb\xd9\x1a\x3e\xc2\xe6\x65\xbc\x9c\x58\x57\x18\xd1\x88\x81\x64\xc5\x44\xc2\x02\x19\xde\x4d\xf2\xf4\xc4\xd3\xc6\x74\x38\x47\x3c\x80\xdd\x80\xbe\xa2\xbd\xfc\x51\xf4\xd0\xcf\xeb\x21\xe9\xb0\xda\x72\xb6\xb3\x6f\x9f\xe0\x66\x6f\x11\xfa\x12\xf8\x29\x00\xfd\x6f\x38\x49\x77\xe1\x14\x35\x6c\x3a\xdc\x0c\x15\xce\x15\x35\x03\xd5\x6d\xb1\x43\x2e\x8c\x41\xb4\x6d\x92\xe6\x76\x64\xf2\x55\xb3\x9c\x58\xaa\x1f\x9d\x9e\x06\xa6\x23\xea\xfb\xaa\xd5\xf8\x20\x98\x11\x3a\xe4\x4e\x32\x5f\xe4\xeb\xa7\x35\x10\x7e\x80\x3a\xef\x42\xff\x43\x19\x2d\xee\x45\x68\x56\xd6\x16\xb7\x26\x56\x39\x52\x12\x86\x23\x56\xd5\x98\xfc\x31\x0a\x49\xf3\xc4\x89\xa0\xa2\xce\x73\x01\xf1\x22\xf9\xa1\xab\xd5\xcd\x05\x54\x39\xb4\xbc\xf7\x24\x11\x49\x8a\xd2\xe6\xa9\x13\xef\x40\x8d\x05\x3c\x33\xdc\xc4\x7f\x89\x8d\x4e\x87\x56\xf5\x4b\x84\x49\x54\x85\xcd\xfb\xac\x31\x7b\x9e\x20\x1f\x03\x33\x5a\x4e\x2c\xe0\x4b\x18\x3c\x6f\x6c\xcb\x47\x3c\x75\x18\x44\x17\xcc\x83\x3a\x39\xad\x30\x1b\x4f\xb9\x27\x86\x75\xf1\x1a\xcb\xe3\x1d\x73\x02\x8f\x28\xbf\x89\xfd\x39\xba\x15\x27\xa7\xc1\xb2\xfd\x33\xa6\x8a\x5d\x88\x3a\x5f\xfb\x35\x6f\x76\x55\xdd\x90\x7a\x3c\x77\x7e\xf5\x1b\x52\x0b\x9d\x9d\x0f\xc4\x86\xb7\x31\x27\xbd\xa6\xd8\x61\x2f\x80\xf0\x19\x17\xb4\x80\xf6\xc0\x60\xfb\xd1\x94\xca\x5e\x97\xdc\x44\x45\x1c\x34\xe7\x76\x52\xc1\xb2\x51\xbb\xa3\x97\x15\x58\x36\xab\xd8\xc1\xfb\x4a\x04\x2b\xb5\xb3\x8d\x21\xe8\xb4\xe9\x9c\x70\x4b\x16\xaf\x9a\x19\x8a\x6e\xee\x93\xf2\xff\xac\x73\x5b\x72\x4b\xef\xeb\x4f\xcd\x3f\x41\x2b\x58\x5a\x0a\x9a\x50\xad\x58\x3b\xe4\xd1\xca\x0f\x3f\x49\xec\x4e\x12\xaf\xbd\xc0\xc6\x18\x17\x08\xc9\x24\x36\x0e\x80\x68\xfd\x49\x44\xad\x2c\xac\x41\xf2\x0f\xd4\xca\xb2\xaf\xda\xde\xa4\x8c\xd7\xec\x63\x6e\x64\x52\x22\xee\x7b\x47\x48\x8b\x84\x72\xee\xc6\x0a\xc2\xe9\x6b\x0e\x27\xac\x54\x74\xf7\x5b\x5e\x0b\xd2\xc7\x82\x08\x3a\x91\x58\x48\x31\xc2\xfb\xb7\x1e\xf6\xf2\xb6\x9f\x4d\xc3\xec\xf9\x64\x4a\x2c\x6c\xe0\x29\x94\x4e\xd5\x22\xa3\xd5\xcf\x4d\xc1\x8a\x9d\x08\x55\xff\x2e\x85\xad\x7f\x97\x0d\x1d\x7a\x68\xdc\xc5\x59\xfa\x48\xdd\x3d\x2f\xb8\x31\xb8\x91\x82\x28\xf9\x23\x87\x81\x40\x6e\xfa\x0e\x41\xec\x20\x03\x2f\xde\x48\x10\x70\x52\xb7\x58\x6c\xfd\x68\xee\x7d\x18\x91\xf7\xb1\x68\xd4\x69\x41\xdd\x3d\x2e\xa4\xe3\x77\x29\xf2\xb3\xaf\x9a\x51\x1c\x14\xd2\xb1\x07\x01\x01\x25\xc7\x2d\x12\x4b\xcf\x75\x47\xd9\x60\x92\x40\x48\x8f\xc5\xee\x49\xd3\xde\xb7\x23\x6c\x61\xd3\x12\xa8\x0f\x2c\x34\x77\xdd\xcd\xa3\xf0\x7a\x3a\xa2\xba\xda\x05\xaa\x36\x0e\xb2\x7e\xdf\x16\x75\x05\x0d\xd2\x6d\x3f\xe9\x35\x27\x73\x6b\xfa\x7b\xdc\xe8\x71\x13\xe1\x6f\x0b\x80\x50\x9f\x2d\x99\xf2\x9c\x67\xce\x26\x32\x1f\x6d\xfd\x87\x40\xef\xf1\xcd\xb0\x05\x48\x15\x07\x71\xe2\xc3\xdc\xcb\x7e\xcf\xa3\x18\x4c\x9e\x4d\x82\x02\x90\xe8\x66\x46\x61\x23\x73\x4e\xc3\x9e\x58\x66\xfa\x75\x36\x75\xd0\x55\x07\x60\x98\x09\xa9\xf2\x99\x68\x9b\xe8\xd2\xc1\xbd\x55\x84\xf9\x64\xc7\xfb\x19\x5c\xc5\x32\x87\x65\x60\xa7\x13\x2d\x10\x5e\x29\xa2\x47\x4c\x8b\xa7\x5c\xda\xb7\xb5\x53\x28\x8f\x5a\xb9\x0f\x12\x55\xff\xeb\x5f\x46\xc9\xc2\xe3\xac\xaa\xeb\xc4\x4b\xba\x88\x69\xe4\x1e\xdc\xe1\x9f\x73\x0c\x19\x2c\x92\xbb\xe6\x49\x05\xf2\xc4\x94\x2c\xdb\xfe\x98\x6c\xba\x7e\x7d\x4a\xee\xb5\xff\x24\x0a\x54\x89\x3d\x9b\x4f\x72\x37\x60\x5d\xa5\x64\x30\xc3\x45\x4e\x41\x4e\x1a\x51\xfa\xc2\xa1\x6e\x6e\x97\x27\x2b\x2b\x9d\xb0\x11\xe3\xc1\x6b\x39\x70\x7b\xca\x72\xe8\x79\xc7\x56\x71\xc4\xbe\x17\xf7\x4a\xa5\x0f\x4d\x3d\x39\x0e\x8d\x18\x53\x14\xb6\x3f\x47\x08\x67\x0c\x24\x3c\xb6\xf3\x8c\x0d\xdb\xed\x32\x03\x64\x2e\xb3\x18\x30\x78\xfc\x37\x6a\xea\x00\xaf\x89\x07\x05\xa0\xb8\xb7\xa6\x64\xc6\x7c\x8b\x68\xc6\x83\xc9\x06\x02\x00\x49\x85\xea\x82\x25\x5c\xef\xdb\xb0\xf6\x91\x00\xcf\x80\x42\x1b\xea\x50\x90\x8b\x56\xcc\x2f\x89\x76\x9f\xc4\xe6\xa2\x6e\xdf\x14\x83\x5f\x46\x21\x54\x2a\x21\x11\x21\x52\x01\x4f\x96\xe3\x28\x08\xa4\x9c\xe0\xca\xed\xc7\xf5\x8d\x3b\xee\x3d\x1c\x42\xfa\x23\xe4\xea\x77\x82\x1d\x74\x7f\x8a\x65\x17\xe5\x95\x5b\x11\x95\x6f\x54\x3a\x01\xc5\x12\xa7\x3e\xf3\x9c\xf7\xb8\xaa\xee\x0d\xf3\x59\x98\x2b\x35\x46\xb7\xea\x1d\x05\xc0\x4b\xb5\x58\xaf\xc6\xe2\x10\xa0\xea\x11\x4e\x0f\x4f\x69\xbf\x4d\x0b\xe5\x32\x37\x6b\xd6\xb9\xaa\xe1\x42\x6a\x46\xdb\xea\xc6\xfd\x1f\x3d\x20\x3c\x5c\xce\xed\x6b\x43\x57\x2c\x43\xfb\x46\xfd\x5f\xdc\x1f\x2b\x06\x5e\x97\x8f\x5e\x6e\xed\x58\x69\x60\xde\xd7\xb6\xba\x5f\xf5\xb5\x0d\xa5\x92\xd5\xb8\xb7\xaa\x57\x84\x5e\xac\xc8\x0b\xc8\x09\x67\x64\x55\x60\x5f\xd8\xbe\x6b\x80\xe8\x4e\xe1\x9e\x16\xe0\x09\xc0\xdd\xe3\x59\x49\x0d\x14\x6f\xe8\xde\xb4\xd6\xd0\x12\x79\xd5\xea\x0d\x8a\x8f\xc5\x34\x60\x30\xae\x10\x43\x64\x38\x49\xfb\xb9\xed\x17\x4e\x18\x0f\xbb\x80\x60\x60\x30\x26\x8f\x46\xa4\xd1\x70\x94\x25\xbd\x00\xfb\x94\x3f\x99\x86\xc0\xac\x05\x3b\xbf\xb7\x6b\xbc\x88\x80\xf0\xbf\x11\x97\x28\x19\xbc\x26\x7b\x58\x6e\xcc\xd2\xba\x73\x8a\x04\xce\x3e\xa4\xd0\xc4\xad\xf1\xa1\x4e\xe6\x41\x20\x59\xb6\xea\xbb\x6a\xb8\xea\x19\xb7\x33\xa0\xc6\x7a\x82\x35\xe7\x1a\x25\xe8\xaf\x74\xcb\x61\x3e\x29\x4a\x07\x66\xf6\xa2\x85\x3e\xcf\x79\x9f\x5b\x58\xd7\x1a\xb5\xb4\x97\x5f\xee\xe6\x46\x54\xe5\xb8\x9b\xed\x2e\x45\x55\xe2\x3c\x7e\xd4\xa4\xab\x40\x43\x2d\x7a\xf8\x4b\xd8\xcc\xce\xd1\x46\xdc\x4b\xe2\xd4\xc1\x70\xdc\xe3\x13\x5e\x52\x44\x62\xe6\x27\xc9\x30\xb6\xca\x0c\x0b\xef\x40\xb8\x24\x2b\xda\xb7\x09\x06\xfa\x6d\xea\xae\x3b\xdf\x9a\x62\x86\x3e\x79\xa9\x16\xac\xbb\xad\x56\x5a\x90\x51\xd8\x0e\x87\x93\x64\xd5\x8d\x7b\xf5\x17\x73\xb7\x2b\x27\x44\xb0\x2b\xe2\x14\x9f\x63\xdb\x20\x75\x0a\x0a\x7c\xf0\x32\x1b\xb9\x4f\x79\x49\xa4\x40\xdc\x38\x4f\x89\x8f\xe3\xc8\xe6\xc2\xa5\xf4\xa8\x2b\x1f\xd0\x36\xc1\x5a\x8b\x8b\x4b\xdd\x24\x1b\xc4\xd5\x42\xa2\xd3\x0f\x99\xc0\x6f\x31\x58\xed\xb7\xe8\x8a\x5d\xf9\x27\xd4\x3e\x65\xee\xcb\x49\xa3\x80\xed\x94\xe6\x92\x1a\x6e\x44\x48\x01\x0a\xed\x69\x69\xd9\x98\x49\x3f\xce\xdc\x6f\x78\xe7\xaf\x03\x07\xf4\x98\x84\xbd\x96\x93\x89\xc5\x04\x16\xf3\x40\x5c\x8b\x3a\x09\x3e\x5e\xd3\xf2\x4c\xbf\xe8\xc6\x03\x62\xce\x5d\xf3\x55\x9a\x2e\x15\x5b\x8c\x3e\x94\xd9\x44\x2d\x5a\x05\xdf\x42\x61\xec\x89\xf9\x20\xbb\x7f\x13\xc1\x07\x92\x3c\x38\x9f\x23\x20\xba\x36\xad\x12\x31\x3c\xb3\x93\x82\xa3\xa8\x51\x67\x5c\x6c\xf0\xdb\x5f\x72\x0a\xbd\x60\x02\xcc\x6d\x56\x51\xb1\x77\x9e\x0b\x3b\xe2\x99\xa8\xf3\x2b\x2f\x78\x74\x3e\x5e\x8d\x67\xfe\x7c\xfd\x70\xe0\xc8\x57\x4f\x16\x69\xce\x55\x50\xc3\x34\x10\x0e\x11\xe5\x55\x37\x4a\x51\x59\xfa\xd7\x2e\x18\x43\x22\xf7\xbd\xda\x33\x4a\xfa\xc5\x93\xd5\x85\x31\x5f\x0e\x8f\x68\x06\xb8\x50\x6f\xf0\x56\xed\xb4\x08\xe4\xef\x63\xa3\xf3\xf0\x99\xea\x11\x8b\x11\x2b\x23\xf3\xde\x26\x7f\xbd\xd7\xdd\x03\xc3\x93\xdc\xc2\x6a\x89\x01\x7f\x11\x5b\x17\xc6\xea\x5b\x30\x0b\xf1\x7a\x9b\xd5\x5d\x62\x9a\x9d\x72\x59\xad\xe2\xba\x3b\x5e\x36\xf9\x21\x98\x70\xa0\x38\xf8\x81\x8f\xa1\x7b\x26\x97\x06\x37\x02\x9c\xeb\x94\x2d\x3c\xf3\xb4\x84\x8c\x58\xed\xf6\xcc\xb7\x54\x9b\x4d\x9a\x66\x93\xb4\x27\x1a\x68\x78\x69\x33\xf3\xd5\x1b\x40\x14\x72\x81\x09\x35\x3f\x62\xfb\xab\x2b\xad\x3e\xf8\xcb\xb6\x88\xed\x40\xcb\x3a\x78\x56\x62\xbf\x2a\x27\x8d\xf2\x89\xe3\x50\x66\x19\xa2\x41\x31\x70\x74\x43\x53\xcd\x1c\x35\xd4\x1c\xe4\xa6\x3f\xa9\xb2\xb7\xd9\x50\x26\xbd\x41\xba\xba\x9f\x91\xbe\xdd\x11\x5e\x44\xfe\x38\x98\x0e\x99\xc2\x26\x71\xca\x82\x9c\xff\x9d\xfb\x2b\xac\xce\xe7\xea\x39\x7c\x30\x73\x74\x5d\x37\x2d\x0c\x8b\x1e\x66\xc4\x9d\xae\x93\xc4\x9b\x5f\x1f\x66\x49\xb2\xe1\x90\xfe\x1e\x5e\xec\x9d\x5a\xb0\x7f\xe3\x8d\xbc\xdd\x02\xaa\x7a\xa9\x5b\xf4\x62\xcf\x40\xc0\x98\xba\xc7\x76\xfe\xf7\xa8\x9d\x95\x8c\x8b\x5d\xd5\xd0\x0b\x09\xb7\x77\x9a\x9b\x86\x5c\x7a\xf7\x26\xe9\xb9\x0e\xa7\xe1\x81\x6d\x61\x78\x63\x10\x7f\x69\x9e\x58\xa1\x4d\xac\x32\x54\x91\x7b\xd9\x48\x2c\x5e\x7d\x1f\xa4\x1a\xd4\xda\x07\x69\x0a\xec\x35\x1c\xce\x8e\x90\xc3\xd9\x11\xba\x95\xf5\xa4\xd8\x49\x2c\x42\xe8\x75\x6a\x1d\x34\xe0\xbe\x85\x56\xae\xf5\xb2\x50\x89\x3d\xca\x86\x1d\x4f\xcf\x13\x93\x20\x4d\x6d\x7f\x17\x81\x93\x22\x42\x5f\xfc\xe3\x28\x00\xee\xf1\x33\x82\x5b\x41\x3a\x20\x6a\x69\x98\x9f\xc8\xcd\x1f\x41\x32\xa9\x5b\x55\x0b\x96\x70\x18\x0f\x86\x36\x9f\x71\x23\x09\x25\xc3\x6b\x08\xe5\x31\x43\x1f\x9a\x0f\x5b\xf1\x99\x69\x33\x45\x3c\x7c\x70\xaf\xc3\x3e\xa8\xab\x74\xf5\xb8\xb0\x4e\x1c\xc3\xf4\x53\x77\xe6\x6a\x2f\x55\x1b\xaa\x6a\x61\x56\x48\x77\x75\xab\x18\x77\x47\xa3\x60\x86\xf6\x47\x53\xf6\xa5\xf9\x8c\xe2\xa8\x8b\x88\xc4\xd4\x2f\x9e\xb6\xf2\xb7\xfd\xbc\x19\xc5\x69\xdf\xdb\x2a\xa0\xb6\x78\x9f\x84\x3a\xaf\x10\xc7\x7c\xcf\x7c\x93\x39\xff\x92\x6b\x80\x0f\xf2\x50\xf0\x45\x95\xf5\x34\x19\xa2\x9e\xa6\xd6\xe2\x20\x5e\xb3\xe9\xee\x30\x68\x6e\x53\x8a\xfd\x90\x93\x9e\x15\x67\x0b\xac\x4e\x58\x0a\xa4\xa6\xa9\x2c\xf3\x00\xe9\x00\x1d\x4d\x8c\xc1\xf0\x2e\xb5\xe7\xd5\x26\x94\x51\xac\x5b\x3b\x96\x58\x55\x61\x82\x44\xb6\x39\x3b\x7d\x7a\x9b\x02\xa8\x53\x26\xf3\x96\xb2\xd0\x1b\x95\xe3\xf9\xc7\xd8\xbc\xaa\xd8\x1d\x6e\xf7\x3b\xdc\xd0\xbb\x2c\x6b\x89\xc7\xbb\x2e\x2e\xaa\xc3\x0a\x77\xdb\x8f\x00\x0b\xea\x45\xcc\xf7\x2d\x78\x53\x26\x46\xeb\x53\xb5\xb9\x1f\xab\x4e\x4c\x1b\x86\xb8\x59\x1e\x5a\xe8\xda\x6f\x4e\x44\xdd\x40\xfa\x50\x11\xf7\xa4\xda\xa0\xb3\x45\x31\xc9\x45\x0e\xd1\x6b\xd6\xbe\xb8\xd7\x6b\xd6\x92\xb0\x41\x9e\xad\xda\xd4\xe1\x67\x3c\x90\xce\x03\xa4\xce\xb2\xb6\x87\x53\xa6\x00\xbf\x4b\x69\x8d\xee\x26\xd4\xff\xc2\xbd\x43\x21\x64\x4e\x6b\x91\x63\xf0\xa3\xba\xef\x33\x82\x38\x5d\xcb\x92\x35\xbb\x33\x28\xae\x5e\x8d\x28\x8e\x17\x96\x1c\x12\xe5\x47\xe6\xc3\xf2\xf8\xd0\x66\x90\xec\x3b\xc1\x86\x2a\x17\xc8\x38\x72\x38\xe9\x77\x02\x03\x10\x46\x1b\xaa\x5e\xcb\xa5\xd3\x71\x6e\x8b\xc2\xf6\x67\x58\x5a\x10\x1b\x96\x6a\x15\x90\xd8\xd4\xdd\x86\xe1\x90\xeb\x9b\x38\x18\x79\xa8\xf8\x21\x2a\x05\x39\x43\x8e\xdb\xd0\x88\xa5\x59\x45\xd9\x04\x3d\x19\xe1\xec\xca\x49\x23\x40\x7d\x71\xef\x62\xb7\x1c\x9a\x72\x36\x60\xfe\xef\xb9\xe2\x81\x0a\x66\xb9\x20\x0c\xa4\xda\x5b\x6e\x09\x10\xe1\xff\x46\x2f\x7b\xe9\xe0\x52\xd7\x94\xa5\x55\xd3\x93\x50\x84\xae\x95\xa7\x9b\x29\xd8\xc8\xc4\x69\xb5\x7f\x1e\x54\x02\xf1\x16\x91\x5a\xc5\x58\x58\xf9\x19\x8f\x7b\xe8\x61\x5e\x4e\x24\x19\x47\x5b\x51\xf8\x28\x72\xd2\xd8\xcf\xbe\xd2\x2d\xec\xd8\x54\x2b\xd2\x6c\x78\x7e\xbb\xb1\xb8\xb3\xd3\x99\x46\x72\x01\x35\x72\xa2\x4d\x20\xba\x88\xcb\x9e\x64\x31\x1e\x1b\xe6\x73\xce\x73\x6d\x4a\xf1\x23\xd3\xb7\xce\x50\x48\x45\x27\xdd\xa0\x46\x44\xfa\xed\x28\x44\x32\x6f\x4f\x49\x9e\xe7\x5e\xad\x32\x55\x85\xb4\x54\xb6\x3a\x17\x75\xbe\xfc\x65\x59\x25\xa5\xef\xa1\xc6\xd0\xa4\x3b\x75\x13\x09\x81\xf8\x13\x45\xc1\x40\xf1\x26\x1a\x4e\xf2\xf7\xd8\x14\x50\x31\xb9\x4d\xec\xca\x8e\x8b\xe8\x85\x2a\xe1\xf2\x6a\xa4\xc9\x7f\xe8\x6a\xe1\x5a\x1a\x0e\xb1\xcf\xc5\x96\xca\x15\x34\x20\xee\xd5\x0b\x5c\xcf\x72\xef\xb4\x18\x57\xeb\xea\x9a\xc4\x1a\x3e\xe5\xad\xee\x55\x53\xde\xa7\xb8\x1d\xea\xd4\xa6\x9f\x70\x31\x35\x6a\x7b\x27\xf0\x4b\x58\xb2\x77\xb9\x49\x8d\x80\xf6\x11\xf4\x39\x31\xb0\x1e\x85\xa7\x85\x37\xd7\x0a\xfe\x1f\xe7\x31\xdf\x81\x11\xf9\xaf\x65\xef\x14\xc5\x1b\xf2\x75\xbc\x0e\x63\x08\xf9\xcd\x28\x98\x50\x9c\x60\xce\xf2\xbb\xae\x38\x82\x38\x45\xb0\x00\x88\x98\x1e\x73\x9a\xac\xc8\x15\x8f\x90\x82\x40\x6e\x93\x99\x80\xa8\xbc\xef\xbe\x17\xbb\xee\xad\x1a\x2e\xa9\x6d\xfb\x82\xfb\x47\x87\x6c\x81\xd0\xdb\x96\x63\x0f\x17\x1d\x66\xa9\xdd\x98\x0d\x0b\xd0\x9e\x79\xb2\x5d\x38\x55\xb7\xb5\xa8\xfe\x5e\x92\xc3\x29\x37\xa5\x92\x2c\x47\x48\x80\x76\xcc\x3d\x5a\x8a\xce\x4d\xd9\xcc\x9c\x60\x04\xf6\xd5\x9e\xad\xd2\x0d\x1f\x77\xc1\xe3\x00\x45\xf0\xb9\xf9\x10\x97\x3c\x85\xfa\x0e\x22\xf3\xd9\xf9\x36\xb0\xc6\xba\x49\x51\xaa\xd1\x82\xa5\xbb\x6b\x5c\xf5\x8d\x88\xac\x26\xa7\xa1\x6d\x52\x58\x93\xf7\x86\x36\x2f\x6a\x4b\xf1\x5d\xae\x12\x8b\x41\x07\x1a\xe6\x0f\xcd\x07\x6c\xdc\x20\x2b\xcb\x24\xb6\xcb\x33\x94\xd7\x5d\x25\xc7\x37\xa9\x0f\xa9\xf7\x44\x73\x69\x5b\xce\xac\xaf\x0e\x89\x79\x20\xa6\xa3\x3a\x09\x7a\xcd\xa5\x49\x2e\x25\x75\xdc\xc1\x15\xd2\x7f\xba\xd2\x46\x93\xca\xf2\x81\x49\xe3\xd7\xb6\x11\xbb\x3e\x27\x62\x57\x9b\x09\xf1\x4b\x5d\xb3\xb2\x62\x7b\x3e\x2c\x43\xa6\x0d\x2c\xbf\x1c\x4f\x9f\x65\x5a\xe6\x72\x9c\x1a\x2f\x85\xaf\x46\x4c\x1d\x2f\xd5\x71\x9d\xd8\x09\x63\x93\xda\x64\x57\xe8\x87\xbc\xef\x5e\x88\xc0\xeb\xdc\x96\xa2\x50\x3b\x37\x52\xd0\x22\x9b\x73\xb1\x1a\xbd\x4e\x5d\x77\xfe\x35\xd6\x11\xf9\x54\x03\xd4\x54\x85\x2e\xe2\xc5\xe5\xfe\x48\x29\x97\x81\xfd\xfd\x19\xb9\xc0\x8d\x4d\x5e\xa6\x36\x2f\x86\xf1\x58\xa0\x72\xd8\x5c\x6e\xd1\x46\x73\x8b\x92\x93\x43\x07\x9f\x9f\xe1\xee\x0b\x36\x6e\x7c\xee\xd1\x79\xca\x34\xe7\x36\x43\x55\x2b\x89\x85\x20\x88\x00\xe7\x87\x78\xd1\x72\xd2\x18\x1b\x0b\x87\xba\xe3\xd8\xf6\x04\xec\xe4\xe1\x54\xc1\x50\xbf\xa1\xca\xb7\x6f\x5f\x77\x43\x10\x19\x9e\x76\xe1\x23\x9c\xf7\x65\xc9\xd2\xd2\x58\x30\xbf\xb9\xd7\xa6\xdb\xe6\x18\x10\xbe\x69\xa7\x44\x95\x10\x36\xff\x46\x9b\xd7\x5a\x3c\x1a\x4f\x52\x27\x6e\x16\x4c\x22\x91\x77\xca\x31\x41\x38\x5c\xe7\x3b\x76\xb1\x72\x01\x57\x21\x2c\xcd\xb7\x5d\x8a\x82\x2b\x3b\x47\x84\x87\x1d\xa8\xc9\xc8\x3f\x60\x20\xc8\x02\x1a\x91\xa1\xfa\x51\x12\xee\x71\x2d\x9c\x97\x7c\xa8\xfa\x40\x53\xff\xb8\x28\xe2\x4c\x5e\x4d\x9b\xc0\xff\xf6\xdd\xfd\xf0\x52\x17\x48\xbe\x4e\xcd\xd7\xc5\x5d\x85\x9c\xb0\xe8\x5f\x6e\x4d\x69\x67\x6a\x34\x85\xc0\x88\xba\x45\x0d\xf8\x59\x5a\x58\x72\xbb\x42\xbd\xc8\xb6\x47\xf9\x24\x35\xa6\xdd\x53\xdc\xe9\x66\x8d\xc2\x2d\xdd\xd5\x20\x01\x43\x40\x28\x4a\xd1\x35\xad\x53\x37\x83\xb0\x54\x4b\x1e\xa4\xea\x09\x4f\x92\x75\x43\x3c\x32\xf9\x06\x4b\x76\xff\x00\x7b\xa1\x9c\x10\x23\x39\x89\x4b\x9b\x9b\x9e\x0c\x00\x64\xd4\x70\x6b\x92\xe3\x68\x3b\x97\xe7\x2b\xdd\x61\xb6\xde\x71\x78\x27\x25\x77\xb8\xf7\x20\x27\x04\x91\x5d\x45\x12\x76\xd8\xb7\xad\x00\xb6\x57\x18\xea\x63\x14\x06\x8d\xec\x63\xee\xf6\xb5\x53\x15\x40\x60\xb3\xf3\xa4\x6b\x79\x72\x1a\x6c\x27\x6f\xb8\xa9\xe2\x31\x25\x5e\xbd\xe0\x8f\xa3\x40\x2f\xbc\xce\x96\x40\xd2\x55\x15\x3b\x3d\xac\x58\xea\xad\xe7\x2e\x52\x25\x81\xdc\xa3\xd2\xe0\xba\x5a\xe4\x80\xa2\x39\x4e\x59\xa3\x93\x60\x89\x13\xdb\x77\x59\xa3\x5f\xeb\xaa\x2b\x95\x13\x2a\x7a\x57\x31\x6a\x3f\x7b\xb5\x53\x17\x91\x23\x8b\x41\xd2\x8d\x4d\x07\x71\x6a\x67\x49\xeb\xf8\x73\xbc\x65\x84\x24\xff\x47\x14\x0a\x5d\xff\x94\x45\xae\x1a\x23\xde\x21\x44\x1d\xe0\x84\x31\xa1\xe7\x58\xae\xa7\x59\x0b\xdf\xbf\xe8\x48\xc0\x73\xd5\x83\xc5\xaf\x5f\x8b\x02\x36\xf2\x1e\x52\x57\x5f\x7c\xf5\x01\xc5\x55\xcc\x6d\x24\x14\x4d\x31\xda\x83\x7b\xbb\x66\x2d\x8b\xfb\x7e\x6e\xa0\x0f\x74\x9a\x7a\x42\xad\x34\xd0\x49\x3a\x4e\xac\x29\x8c\x6c\xa2\xd8\x36\x8e\x13\x16\xe3\x38\xed\x54\xa9\xb5\x62\xe8\xab\xba\xfb\x6c\x7d\xcd\x50\xa9\xa3\x6e\xdc\xa8\x17\x99\xbb\x20\xd4\x18\x6e\x93\x34\xfd\xc3\x0d\x23\xd4\x03\x07\x94\x3e\xc2\xad\x64\xa9\xad\xca\x49\x03\xb9\xbf\x7f\xb1\x6b\x92\xd8\xa6\x04\xd0\x54\xf7\x8f\xc0\xd5\xf8\xfb\x2d\x72\x1d\x2f\x75\x73\xdb\x33\x49\xd2\xa1\x68\xe8\x5b\x51\xa8\xdc\x7c\x8b\x35\x3e\xed\xc0\xa4\x12\x66\x23\xa8\x97\x62\x87\x9c\x90\x9c\xe1\x5a\x5c\x3a\xe8\x8c\x1b\xee\xac\xc9\x26\xc7\x6d\xaf\xa1\x1a\x46\x71\x3a\xf1\xfd\x38\xac\x37\xcf\xce\xfb\x80\xf4\x89\xa7\x36\xc3\x83\x3b\xdd\xb6\x2b\x96\x79\x2c\xd5\x69\xac\x5c\xa8\x9f\x61\x14\x4a\x25\x00\x5b\xd4\xc7\x53\xf2\xef\x3d\x4b\x7d\xe4\xe5\x24\x2b\x4b\xed\xd4\x7a\x05\x6d\x5f\x79\x38\x42\x53\x73\x25\x17\xad\x3b\x92\x1b\x90\xe6\x86\xf6\x39\xb5\x28\xbc\x92\x4f\xe2\x32\xa9\xf6\xcc\x00\x4e\xdf\xb1\x19\xea\xca\x3b\xe6\xb7\xcf\x90\xc3\x4b\x3f\xdf\x35\xa2\x6e\xab\x95\xf1\xea\xf3\x5a\x18\xf7\x9d\x65\x3b\xb2\xa5\x13\xe6\xf1\x4e\x10\x42\x9a\x97\x13\xdf\x83\x56\xbb\x9a\x0e\x75\x65\xeb\xda\xbc\xe4\x56\x93\xad\xa7\x65\xb6\x2e\xee\x6a\x8a\xb8\xef\x90\x31\x55\x78\x0c\x45\x36\xb2\x65\x3c\xb2\xc5\x9e\x80\x05\x39\x8d\x67\x0d\xf0\xe7\x09\xae\x99\x1c\xe5\x4c\xfb\xf6\x94\x1d\xf6\x89\xad\xfd\x94\x7b\x6f\x88\x4e\x20\xc1\x2d\x7e\xb9\xd3\x60\x88\x7e\xb5\xb5\x24\x55\x8c\x4d\x2e\xb2\xbc\xde\x05\x93\x9c\x2f\xb7\x4f\x80\xc3\xd5\xb8\xcb\xab\xab\xc7\xad\x22\xdb\x94\x9e\xb6\x9c\x70\x9c\x5d\x94\x0e\xa5\x8b\x35\xfb\x3c\xeb\xda\x00\xe9\xeb\x8d\x94\xf4\x35\xff\xdc\x93\x70\x00\xd4\xbd\x28\xd8\xf4\x06\x09\x6e\x33\xca\x26\xa9\x07\x0e\x0b\x65\x89\xbd\xec\xb8\x08\x32\x33\x4f\xb0\x72\x93\x8f\x6c\x5e\xec\x21\x54\xdd\xa9\x69\x95\xd7\x6b\x06\x1d\xe0\xbb\xbf\xef\x62\x27\x35\xe6\x71\xdf\x87\xfc\xfb\x3b\xc8\xe4\x3d\x74\x24\xa4\xb5\x27\x29\x45\xfd\x7d\xa6\x60\x9e\xa0\xc6\xe3\x28\x4e\xb3\xbc\x26\xfd\x1d\x91\x91\xe4\xe7\x6d\x82\xe1\xe3\xdc\xf6\x63\xdf\xe1\x17\x04\x76\x44\x02\xd5\xe7\x68\x21\xe9\xe5\xa6\xb7\x2a\xb0\x0e\x51\x58\x73\xf3\x40\xd5\xd6\x28\xb3\xcf\xab\x08\x23\x36\x6c\x3c\xe3\x3e\xaa\x50\x5c\xe2\x97\xaf\xd9\xdc\x0c\xac\x34\xc3\xb4\x63\xda\xf1\xea\x0f\xe2\xb3\x81\x3f\x3c\x46\x59\xec\x20\xee\x5b\xc9\x67\x3c\x0a\x97\x79\xf5\xdb\x97\xa4\x2f\x7f\xb9\x5b\x8c\xb3\x55\xb7\x66\x2e\x04\x65\xc4\xe0\x61\x76\x2e\x0c\x82\xa2\x97\xc7\xcb\x2a\xba\x4c\xd5\x46\x05\x8c\xdc\x8a\xc8\x77\xe6\xb4\x47\x81\x24\xd9\x24\x2e\x9c\xd2\x63\x27\xb0\x1d\xce\xb3\x7d\xd4\x79\x7a\x5d\xfd\xf8\xd5\xd8\x76\x1c\xf0\xd2\x13\x6d\xab\x4f\xaa\xe1\x8c\x62\x03\xfa\xb9\x19\x19\xc6\x3f\xb2\x0c\xad\xaa\x11\x2b\x03\xe7\x95\x4c\x42\x40\x2c\xee\x18\xfd\x72\x4c\x40\x80\x41\x66\x92\x59\x0a\xe7\x21\xde\x2f\xb2\x7f\x9b\xa1\x82\x07\xd6\x8e\x7c\x86\x84\xb9\x27\xa5\x19\x92\x84\xd6\x59\xcc\x3e\x95\xd2\x0e\x0b\xd2\x24\x2d\xca\x8d\xc4\xf9\xa6\x93\x82\x78\xf5\x5b\x72\x4c\x0a\xb1\xb9\x1d\x67\x79\xf9\xb8\x7b\xb2\xa8\xb5\x8b\x22\x18\x1a\x24\x3b\xe6\x69\xe9\xfa\x1f\xdd\x7c\xc0\x2c\xbc\xc7\x34\x7b\x01\x6d\xa8\x47\x7e\xa0\xdb\x5d\x26\x24\x15\xdb\x3f\x3c\xbc\x49\xad\x88\xb7\x5c\x27\x0e\xf3\x6f\xc7\x26\x95\xc6\xaf\x20\x0c\x02\xc7\x16\xae\xea\x0a\x90\x0d\x1d\x2b\xdb\xf7\x62\x78\xf8\x3a\xa4\xa5\x18\xc7\x67\x18\x5f\x70\x3a\x90\x44\xfe\xd6\x2f\xad\xfe\xad\x5f\x12\xeb\x49\xff\x7c\x5e\xd4\xd6\xd1\x07\x64\xd6\x78\x2d\x0a\xcc\x08\x93\xf7\x86\xb1\x33\xf8\x98\x09\xde\xe6\xe8\x3f\xa0\xcf\x7f\x95\x30\x3e\x1f\xf8\x81\x3d\x30\x45\x86\x36\xaa\x77\x22\x47\x4a\x8c\x38\x1e\x3a\xd0\x00\x0d\xcc\x6d\xea\x90\xea\x67\x03\xde\x7b\xae\x13\xa9\xeb\x7a\x1b\x35\x70\x25\x31\x63\x37\xfe\xbd\x2c\x5c\x90\x88\x6b\x41\xb6\xbe\xd4\x5d\x4d\xb3\xf5\xd4\xf9\x87\xe9\x8e\x4a\x61\xcd\x71\x2e\x62\x35\xf6\x8c\x03\x07\x0e\x76\x8b\x61\x9c\xeb\x0a\xe6\x5d\xd4\x83\x81\xc1\xa9\xed\x70\xce\x03\x07\xaa\xdd\xe9\x19\xf7\x11\x44\xa2\xff\x0a\x79\x01\x86\xfc\xd5\x28\xc0\x9f\x77\xce\xd3\x00\xbc\x8e\x54\xc2\xab\x71\x1e\xf6\xd2\xa6\x6e\x68\x89\x27\x8a\xeb\xee\x60\xe7\xfd\x5f\xdc\x3a\x8f\x52\xec\xd1\x29\x8b\x83\xdc\x99\x86\x3e\xf9\x5b\x2e\x8d\xd1\xbe\xa2\x1b\xca\x88\x2c\xef\x60\x28\x23\xd8\x7f\x08\x8d\x4d\xc0\x41\x5e\xa7\x51\x71\x09\x69\x0c\x3b\x6c\xaa\xe0\xaa\x9b\x2f\x22\x26\x4d\x73\xb2\x6f\x57\x62\x93\x96\xc9\x06\x62\x53\x31\x96\x24\x7d\xcc\x37\x6a\x6b\x7e\x95\x16\xf7\x77\x33\x25\x1d\x25\x6a\xf4\x1d\xd1\x38\x51\x3c\x44\x27\xfc\xff\xb5\x50\xdc\x3d\x08\x25\xb4\xbb\x47\xaa\x31\x7a\xf5\xb4\x94\xcc\x1d\xd2\xea\x32\xce\x6d\x15\xcb\xb8\x61\x84\x8d\xee\x4c\x44\xbb\xde\x19\x8a\x12\xfb\x71\x31\xce\x0a\x91\xfa\x90\xc2\x27\x15\x5e\x2f\x90\x46\x41\x12\x2f\xdb\xdc\x24\xb3\x4c\xa0\x75\x6f\xde\xe7\x02\x5e\x08\xe6\x3c\xeb\x47\xdf\x6e\xd0\x61\x16\x17\xbb\x7d\x3b\x72\x9e\x0e\xa6\x0c\xbe\x83\x7e\xab\x23\xbf\xb5\x67\x38\xcf\x13\x01\x2a\x4c\x77\xc5\xa2\x52\x9f\x0f\xbd\x6c\x2d\xfe\xb4\x24\x55\xb9\x4d\x62\xbb\x26\x44\x62\x65\x66\xd4\x78\x13\x7f\xb5\x99\xc3\xd8\x7e\x5c\xc5\xd1\x7f\xeb\x97\x6c\x62\x7b\x65\x9e\xa5\xa2\xc9\xa4\x71\x32\xc5\xcc\x7e\xa9\x70\x61\x72\x2c\xf2\xa0\x58\x5f\xde\x22\x9c\xc6\x87\xa4\xcc\xf3\x6d\xb2\x03\x4b\xe2\x55\xfb\x18\xa9\x4f\x9c\x8e\xb6\x35\xce\xc8\xc0\xb9\xe3\x3d\x1a\xfe\x60\x4a\xe4\xfd\x0b\x60\xed\xa8\xea\x94\xb7\xae\xf9\xd1\x9f\xbb\x56\x05\xe2\x3d\xc1\xcb\x60\x41\xbe\xca\xb5\xd8\x33\x00\xeb\xeb\x48\x20\x79\x41\x60\x1d\x75\xd9\x0b\x55\xc2\x7e\xbf\xd8\x1d\x70\xbd\x77\xa6\xe1\xed\x39\x1a\xc9\xd6\xd6\x34\xe8\x86\xcc\x6c\xd2\x4a\xfd\x18\xca\x14\x58\x2b\xbe\x80\x7a\x22\x46\xf9\xdc\x26\x83\x46\x67\xe6\x6b\xbb\x9c\x89\xfb\xd0\x19\xd4\xd9\xe1\x7a\x11\x3a\x23\x18\xfb\x94\x4f\xd2\x87\xab\xdf\x46\x96\xfd\x3b\x08\xfc\x50\xf1\x38\xe9\xe0\x56\xc8\xcb\x40\xa8\xd2\xd6\x5a\xc7\xcb\x55\xbd\x11\x51\xd3\xef\x77\x30\xce\x00\xae\xde\x81\x8b\xf5\x26\xdc\x2f\x2a\xa3\xe6\x5d\xf7\x5e\xf1\xa1\x53\x8d\xa8\xfe\xeb\x87\xbb\xcb\xd9\xc4\x69\x62\x7d\xfd\xb0\xa4\x61\x57\x59\x41\xf0\xea\x03\xcb\x77\xcb\x99\x29\x47\x56\xb2\x18\x44\x51\xb2\xda\xc9\x89\x4f\x8e\xb2\x5e\x6f\x32\x36\x42\x8c\xf5\xd6\x3f\x07\x0e\xf8\x72\x98\xc7\x15\xd9\xb4\x9a\xce\x12\x15\xa1\xb1\x23\x57\x23\x27\x75\x82\x4d\x5c\x3e\x4c\xde\x06\xf7\x31\xc3\xc5\xe5\x8d\x11\x52\xe8\xdb\x00\x4a\xd1\x01\x7c\x4b\xbd\xe0\x9c\xa0\xc5\x11\xac\xe5\x5b\x47\x88\x74\x80\xbd\x57\x6b\x46\x21\xd6\x3f\x43\xab\xda\xe4\xab\xc5\x57\x8b\xaf\xe6\x5f\x85\x2d\x15\x76\x1b\xe1\x44\x22\xee\xfd\x37\x78\x20\xda\x86\x50\xac\x58\x99\xdb\xd5\x0e\x11\xf2\x61\x29\xa7\xfd\xae\x07\x29\x99\x98\xe5\x49\x61\xa5\x10\x04\xf5\x0a\x84\xd5\x72\xcc\xa5\x2a\x38\x3f\xef\x64\x0a\x05\x73\x44\x08\xd2\x73\x8b\x92\xa6\x3b\xd4\x40\x39\xea\x16\x72\x05\xca\x90\xa5\xc3\x24\x97\x7c\x18\x83\xf0\x8c\x93\xb8\x92\x63\x5a\x99\xfb\xb6\x67\xfa\xd6\xe9\xf8\x2c\xf9\xe4\xa5\xe3\xb5\x9b\x3e\x27\x82\xe1\x51\xd6\x07\x3f\x4a\x68\xd4\xec\x95\x18\xa3\x4b\x09\x93\xd4\x0c\x3a\x1b\x3d\x4b\xac\xc4\x75\x93\xe7\x26\x2d\x55\xa8\x54\xbc\xb6\xe7\x09\x99\xdb\xd9\xa4\x64\xc6\xf4\xe3\x24\x31\xbd\x99\x10\x6f\xa3\xc4\x2b\xb3\x84\xd4\xfc\xef\x44\x54\xa1\x31\x85\x97\x37\xc5\x56\x7d\x0a\xab\x9c\x9c\x04\x40\xba\x29\x0a\x5b\xd6\x4a\x17\xa7\x28\x7a\x3b\x45\x45\x5e\xd3\x5f\x8b\x8b\x0c\x19\x98\x9a\x47\xb9\xbb\x54\x8b\x29\xb2\xde\x98\xa4\x7d\x33\xb2\x69\x69\x92\x39\x56\x8f\x70\x5b\xb1\xdf\xe3\x42\x67\xe3\x2c\x66\x40\x0d\xf2\x89\xac\xf4\x76\xf4\x73\x6d\xa0\x06\x85\xbc\x6b\x81\x46\xdd\x6e\xdd\x77\xaa\x8d\x6e\x9b\x26\x6d\x6e\xed\x72\xb6\x4a\x40\x5a\x31\x90\x90\x93\x46\xe2\x76\xe8\xf9\x6e\x12\x8f\xc4\x1a\x1c\xb3\xea\x06\xf9\x37\xde\xf0\xeb\x41\xb6\x66\xf3\xe5\x49\x9c\x94\xb3\xbe\x94\xbd\xfa\x24\x22\x38\x50\x64\x10\xeb\x4a\xd7\xdc\xfd\xe8\xd6\x5d\x86\xaf\x94\x26\x7d\xcd\xb8\xd7\x8c\xf5\xe3\x6e\x4d\x64\x9f\x00\x3d\x2c\x93\xb0\x62\x4d\x0e\xb0\x4e\x90\x94\x24\x8b\x31\xf6\xd9\x1b\x19\x08\xd2\x76\xbc\xf6\xc2\x1b\xd8\xbb\xe5\x64\x1a\x12\xac\xe5\x4c\x9c\x8f\xc4\xc1\x82\xb5\xd0\x9a\x51\xf4\xc1\xbd\x07\xbb\x89\x35\xab\xec\x8a\x72\x8c\xe7\xf0\x31\xaf\xf5\x54\xc4\xa3\x71\x62\x77\xb9\xfd\x47\x5b\xcb\x54\xe2\xfd\x80\x53\x2e\x78\x3a\xab\x00\x96\xfb\x3a\x34\xd6\xc1\x27\x43\x5d\xcf\x39\x71\x7b\xae\x6a\x9b\xee\xe2\x37\x27\x56\x53\x62\xe1\x2f\xb3\x51\xc2\xb9\x48\xc5\x56\xec\xab\x65\x6e\xaa\x15\x43\xa4\x7e\x3b\xde\xae\xe4\x7d\xf7\x22\xe4\x78\xfa\x85\x98\x4d\x84\x07\x69\xfc\x9a\x59\x4e\x2c\xa2\x59\xf5\x5c\xec\x78\xad\xb4\xa3\x0d\x4c\x0e\xea\x9b\x0e\x7a\xe0\x62\x31\x92\xe7\x66\xa7\x65\x37\x07\x75\x95\xdd\x1e\x8a\xc1\xad\x7e\xd8\xcf\xcd\x7a\x27\x68\xa9\xfe\x8c\xbc\x22\x7e\xc6\x7d\x48\x33\x9e\x09\xf3\x0e\x8d\x57\x4f\xeb\xf6\x78\xb7\xa6\xfc\x6e\x75\xa5\xa6\x1c\x66\x89\x04\x6c\x28\x54\xbc\xc7\xc4\x96\xf7\x88\xae\x62\xe2\x22\xb1\x2e\x91\x52\x2b\xa0\xe0\x88\x7b\xcf\x6d\x4a\x48\x0d\x66\xe6\xb7\x0f\xa0\xc5\xc5\x17\xba\x69\x26\x2b\xa2\xda\x4b\xbf\x13\x11\xe9\xea\x1d\x82\xf9\x39\xeb\x6a\x77\xdb\x2a\xba\x4e\x7c\xe0\xcf\xa8\xd1\x14\xa7\x80\x11\xed\x0c\xa5\x82\x31\xf9\xa9\x9e\x73\x09\x03\xea\x1d\x10\xce\xc3\xe6\x04\x9f\x44\xf9\x3c\xb2\x0d\x6d\x79\xb4\x28\xa3\xda\x65\x9b\x16\xcb\x93\x7c\x40\xc2\x91\x27\x58\x32\xee\x04\x21\x34\x96\x44\xfa\x5b\x88\x24\xec\x30\x74\x97\x0c\xe9\x0a\x93\xc4\xd5\x77\x4a\x31\xc5\xdb\x9a\x2f\x06\xc0\x98\x56\x22\xc7\xf1\x58\x1f\x1b\xea\x41\x57\xf1\xd8\xe4\xa4\x0d\xd9\x35\xb4\x79\x86\x8d\xc1\xdb\x98\x2c\x06\xeb\x92\xed\xb7\x78\x70\x6f\xb7\x97\xe5\x39\x75\xfb\x55\x1a\xa5\xe3\x05\x4f\xcf\x90\x84\x41\xb1\x51\x94\x76\x54\x3c\xcc\xe2\xe0\x51\xd8\x31\xa4\x76\x85\xa4\xeb\x2d\x24\x89\x68\x82\x3d\xb4\x49\xa8\xf9\x73\x4c\x74\x42\x49\x02\x51\xf8\x4f\xa7\x54\xe2\x7c\x0b\x11\x26\xee\xf5\x88\x1b\x62\x72\x4c\xc4\xd2\x38\x2d\x4a\x6b\xfa\x8f\xd0\x06\xf3\xe8\x7c\x10\x58\x78\x2b\xa2\xd2\xdf\x65\xb7\x3f\x91\xfd\x90\xb2\x89\xfe\x80\x3c\x52\xde\x9b\x86\xc8\x63\x07\x6a\xba\x54\x39\x50\xaa\x02\x0c\x95\x89\xff\xf4\x92\x7f\xdc\x0f\x8a\x99\x96\x6d\x59\x6c\x74\x28\x08\x3b\x45\xbc\xf5\x56\xc9\xc0\x2c\xed\x09\xeb\x5e\x34\x1f\xdd\x94\x83\x73\xf3\x93\x6e\x65\x14\x35\x55\xd7\x61\x50\x6f\xbc\x07\x05\xc9\x63\x9b\xe7\xb1\xcd\x67\x42\x71\x4b\xa4\x72\x34\x68\x23\x81\xd8\x7f\x40\x3b\xd7\x30\x9b\x14\xb6\xd8\x49\x24\xc2\xbb\x18\x84\x72\x32\x25\xa4\x30\x4a\x7a\xcc\x13\x62\x2d\x38\x95\x41\xdd\xbe\x12\x1d\x5e\xea\x9a\x91\xcd\xe3\x9e\xcc\x1f\xfd\x5c\x4d\x47\x35\x74\x81\xc7\x79\xb6\xf2\xd5\x19\x6a\x62\x42\x61\x06\x95\xe2\x7f\x8b\xcd\x4c\x1d\x10\x83\x3f\x76\x6f\x35\xe8\xf5\xe8\xbf\xb2\x59\x22\x6b\x9e\x0e\x0d\xa4\xae\x96\x64\x6f\xff\x98\x88\x21\xd7\x48\xea\xb3\x89\xe6\x39\x70\xa0\x5b\x9a\xa2\x14\x15\x4c\x95\xa5\xa2\xee\x47\x3d\x09\xd7\xcb\x7b\x65\x52\x94\x71\xcf\x02\xdd\x8a\xb5\xe9\xf8\xb4\xa1\x72\xae\xd6\x56\x9d\x20\x92\x39\x25\xc4\xc2\xbb\x24\x6a\x5f\xac\xd9\xbc\x9f\x64\x6b\x05\x62\x21\x15\x26\x21\x91\x12\x22\x32\x63\xc9\x08\xad\x66\x68\x59\xaa\x9c\xcb\x83\x74\x33\x12\xb3\x6c\x4a\x24\x52\xaa\xba\xe2\x2e\x46\x4e\x7c\x08\x3a\x32\xaf\x58\xaf\xd4\x8c\xf5\x5e\x1c\xa0\xe5\xa4\xb1\xaf\x1f\xdc\xdb\xcd\x56\x56\xe2\x5e\x9c\x81\xd6\xe5\xc5\xad\xbe\x7e\x58\x8f\x29\x16\x5e\xce\xcd\x6b\x71\x82\x56\xa2\xba\x37\x86\x6e\x97\x88\x79\xe0\xd1\xfd\x8c\x44\x2d\x96\xed\x20\x4e\x0b\x91\xb6\x44\xe9\xeb\x0e\xb9\xe8\xff\x1e\x95\x77\x7f\x6f\x4a\x0a\x45\x77\xea\x2a\xbe\x63\x75\x21\xc5\xf0\x93\xc4\x40\x4e\x08\x02\x32\xb6\x79\x9c\xf5\x9d\x3e\x07\x1e\x10\x4a\x9d\x28\x7e\x48\xfc\x87\x93\x2b\x2c\x2b\xfa\x43\x37\xe5\x81\xa3\x42\x69\x18\x31\x57\x95\x07\x05\x3b\xf5\xa4\x5f\xcc\x55\x97\xab\x5e\x9d\xee\x1a\xd0\x63\x87\x47\xa0\x18\x03\x51\x82\x85\x2e\xad\x1c\xd3\x58\x58\x1d\x8f\x06\x72\x47\x58\x28\x4f\x72\xab\xfb\x64\xc4\xd6\xb8\xe3\xd5\x18\x13\x56\x11\xa5\xd5\x4f\xc9\xb1\x1f\xda\x63\x33\x49\xe2\x94\xc1\xc6\xef\xe2\x1b\xe5\x84\x04\x34\xd6\xe3\xd1\xd8\xa9\x01\xfb\xae\x05\x98\x66\x78\xf0\x90\x1c\x43\xaa\x78\xc9\xef\x90\x2b\xb1\xa3\xd5\xf8\xdc\xf3\xba\xcb\x5f\x11\x62\x7e\xc6\x3e\xa3\x4d\x18\xf4\xe2\xe2\x52\x37\xcd\xbe\xea\x82\x27\x74\x21\xae\x93\xcb\xc8\xb7\x22\xda\xe3\x6e\x10\x7c\xbe\x58\x37\xe3\xd9\x50\x76\x3e\x42\xa4\xfb\x8f\x10\x5c\xa8\xaa\x30\x95\xff\xce\xb6\x35\xc2\xcb\xdc\xa4\x45\x2f\x8f\xc7\xe2\x45\x8d\xa5\xee\x33\x72\x83\x82\x39\x2a\x0a\x04\xc7\x09\x3a\xde\x1b\x9a\xc9\xca\x8a\x9d\x08\x55\x54\xbb\x3a\x1d\xaf\x82\x76\x81\xf6\xec\xde\xa4\x28\x33\xd5\x5a\x92\xca\x80\x5b\x9b\x31\x29\x3a\xe8\x7d\x20\xb0\xbc\x4e\x19\x45\x6e\x07\x79\x36\x19\x63\x65\x90\x2a\x57\x44\x3e\x08\x17\x7c\x6f\xca\xae\x99\x64\x62\x7c\x45\x8f\x17\x4d\x34\xf1\xaf\xd6\xb4\xb6\x5b\xb4\x8e\x5d\x7b\xd1\x3d\x55\x4c\xf0\xfb\x0c\x01\x23\x93\x27\x04\xd1\x08\x06\xff\x98\x00\xa4\xd5\x52\x94\xd8\xdd\x41\x13\xfc\x73\x6c\xca\xf8\xb6\xb7\x30\x10\x90\x78\x6d\xb9\xaf\x56\x23\x43\xf6\x4f\x3a\x47\xda\xaa\x47\xc9\x1c\x5b\x48\xc5\x4a\x70\x6e\x1b\x47\xb9\x1d\xcb\xac\x41\xd9\x4b\x66\x8d\x9c\xf8\xd1\x2a\xe0\xc2\xea\x62\x50\xce\xb9\x4d\x9a\xbb\xb7\x03\x23\x4d\x0a\xb1\x10\xab\x03\x3a\x49\x5c\xb3\xb5\x2a\x5a\x53\x4a\xa5\x4e\x2c\xeb\xb2\xc5\xa3\xd1\x24\x45\x6e\x84\xd7\xfe\x26\x81\x7e\xdf\x6c\x6b\xd9\x0a\x2b\xa2\x3f\x17\x4a\xfd\x92\xbb\x23\x81\x06\x13\x02\x7b\xba\xe8\x75\x21\x6a\xda\x03\x12\xa9\x36\x4b\x9b\x04\x82\x85\x6e\x91\xc5\x09\xf9\x5f\x5d\x20\xff\xab\xa6\xc7\xe0\xfe\xc5\xee\xf2\xa4\x88\xd3\x2a\x8d\xd2\xc2\x5e\x5b\x81\x2a\x2c\x47\xe5\x30\x8f\x57\xca\x59\xaa\xeb\x44\x81\xb0\xf2\x39\x6b\x4e\x5e\x96\x76\x09\xa6\xdb\xe5\x36\xd7\xa4\x62\x98\xad\x6b\x40\xac\x83\x9d\xec\x63\x2e\x34\x74\xcd\x74\x53\xec\x0d\x4d\x9a\x8a\xb5\xbb\xaf\x7d\x84\x12\xe6\x59\x6a\xd1\x0e\xcc\x64\xc0\x8a\xd0\xb8\x31\x55\x04\x6c\x92\x00\xab\x3b\xb4\xa6\xb4\x50\x77\xf6\xe8\x48\xaf\xe4\x7e\x8e\x6a\x39\xd5\x65\xf4\x34\x68\x53\x70\x01\x03\xbe\xab\x3f\xf3\x96\xcf\x2f\xaa\x8c\xf1\x19\x77\x09\xdc\x68\x50\xb0\x78\x0d\x58\x5f\xc4\x85\xb8\xec\x2a\x9f\xa7\xb3\x18\xb4\x1a\x9e\xa0\x8f\x4e\xd2\x72\x03\x0c\x3e\xac\x35\x37\xb1\xa8\x6a\x90\x49\x5d\x95\x69\x67\xdf\xbe\x20\x1b\xe0\xc3\xd9\x1d\xf3\x64\xea\x79\x93\x56\x40\xd7\x6e\x29\x63\x71\x27\x40\x79\x7a\x07\x60\xfc\x72\x42\xf8\x89\xec\xcb\xab\x71\x6f\x35\x9e\x25\xec\xd3\x85\xfa\x8f\x87\x96\x8e\xeb\xb1\xe9\x71\x88\x32\x9c\xf3\x02\x38\x8b\x48\x68\x24\xbd\x93\x93\x3a\xab\x78\xb9\xe8\x6c\x07\xc0\xcb\x71\x6b\xc6\x96\x55\x3b\x98\x27\xf5\x7e\x9f\x1a\xc8\x22\x86\xa5\x5c\x84\x27\xb9\xd2\x9f\x18\x0d\x18\xb1\x40\x08\x15\x59\x4e\xa2\x70\xa5\x3b\x1c\x9a\xca\x77\xf4\xaa\x2f\x94\xb5\xa2\x45\xdd\xbe\x5b\x58\x53\x64\xaa\x26\x8b\x85\x56\x1c\x61\xe4\x84\x52\x83\xdc\x16\xbd\x09\xb8\x32\xbe\x90\x53\x5d\x10\x42\x4c\x81\xcd\xc8\x09\xeb\x9d\x47\xc1\x19\x74\x6d\xd2\x09\xdc\x4f\x04\x9e\xaa\x5f\xda\xc4\x89\x96\x43\xeb\xe0\x91\xc2\x8e\xc2\xbd\x28\x55\xaa\x25\x8a\x34\xe3\x71\x12\x3b\x75\x66\x6d\x95\x8a\x44\x8e\x9c\x34\xe0\xd3\x55\xc6\x3f\x16\xd1\x53\x44\xde\x97\x64\x87\x40\x3f\xed\xa7\xd3\x10\x21\x36\xf3\x98\x17\xf7\xbe\xd4\xed\x25\xd6\xa4\x36\x47\xe0\xea\x0b\xae\x07\xf7\xfa\x82\x2b\x47\x8f\xd6\xa4\x8f\xbb\x31\xa9\x91\xb0\x0b\x62\x51\xc1\x06\xce\x08\x39\xd6\xd5\xe9\xf6\xb5\x9f\xa0\x49\x07\xf7\x1e\xf4\x76\xfa\xee\xc2\x95\x1b\xce\x38\xcd\x3f\x74\x8f\x5f\x24\xef\xdd\x53\x56\x2e\x00\x75\x99\x5e\x8f\x82\xda\x1a\xe8\xc9\xc0\x93\xbe\xe7\x7a\x63\xd8\x80\x3f\xaa\xf5\x90\xb2\xf1\xc6\x9e\x6d\x3c\x7d\xef\xf4\x3f\xc5\xa5\xe1\x6a\x60\xfe\x21\xc7\x78\x6f\x68\x8f\x1f\xc7\xad\x11\xa1\x6e\xb1\x26\x39\x29\xdf\x85\xcb\xc4\xf0\xb9\x1d\x05\x55\x6d\x70\xc9\x4c\x5a\x0a\x14\x1f\x25\x44\x34\x23\xb0\xa9\x5f\x8b\x48\x0f\xf6\x83\x46\x75\x73\x71\xb1\xfb\xcd\x89\x9d\x08\x06\x13\xe0\xec\x1f\xb0\xa0\xfc\x0f\x48\x06\x79\x9c\x67\xcb\x66\x39\xd9\xd8\xe3\xee\x0c\x37\x00\xa1\x67\x35\x5d\x74\x37\x83\xc7\x7c\x0d\xf1\x1f\x1e\xa7\xf4\x80\xb0\x59\x5e\xa3\xa0\xfe\x9f\x33\x38\x58\x02\x56\xaf\x86\xf0\xe2\x5e\xd9\x84\xaf\x73\x4f\xda\x56\xa9\x91\xfa\x12\xa0\xc1\xf5\x13\xd6\xc6\xfb\x83\x88\xd0\x44\xd0\x52\xd3\x4e\x68\xd3\xc7\x6c\xd5\x26\x49\x36\x10\xf6\x89\x8b\x1d\xbf\xfa\xa4\x5b\x2f\xe4\x78\x9e\x9e\x75\x62\x5f\x35\x69\x5f\x40\x5a\x08\xb7\x21\xb1\x28\xc7\xd3\x2f\xd4\xc1\x10\x2f\xee\x7d\xae\xfb\xe2\xde\xa5\x67\xaa\x78\xde\x47\xe7\xbf\xfa\x8d\x20\xb4\x5c\x3d\x45\x94\x22\xc4\x79\x17\xe5\xf0\xdf\xc4\x93\xc3\x33\xf9\xd8\xd5\xf1\x80\x50\x16\x93\x62\xcc\xde\xef\xd7\x2d\x3c\x42\xb0\xf9\xd0\x7c\x10\x38\x3c\x1a\x05\xca\xc0\x53\x4f\xa1\x9c\x83\xfc\xfa\x5f\xa0\x33\x2a\x27\x53\x52\x11\xff\x33\x54\x05\xd5\xb9\xb6\x7a\x0b\xbe\xc7\xeb\x15\xe2\xae\x93\xa8\xd7\x17\x36\x03\x2e\xe3\x74\x0b\xa1\xa6\x3b\xce\xed\x8a\xcd\x73\x59\x54\xf1\x32\x04\x88\x22\x27\x04\xbf\xd1\xba\xb3\x2d\xe6\x08\x44\x7e\x9d\x72\x5a\x81\xad\xa9\xb8\x78\xf5\x7c\x30\xee\x51\x24\x53\xc4\x59\x33\xbe\x5b\x7a\xa1\x6b\x47\xcb\x59\x7f\xa3\x43\x7c\x75\xf8\x77\xca\x31\xd5\x95\xbf\xf1\xab\xdf\xe8\x84\x52\xd8\x67\xbc\xb6\x7c\xd6\x28\x7b\xfb\x22\xd7\x24\xdb\x50\x76\x31\xf6\x8b\x77\x71\x9f\x72\xd2\x00\x3b\xe8\x1f\x22\xe1\x37\x49\x31\x47\xfb\x2f\xa6\x03\xd6\xc3\x77\xa8\x6e\x0b\x8d\x59\x05\x4c\x91\x6a\x4b\xa7\x95\x67\x9e\xdb\xf1\x64\x39\x71\xe5\x25\xda\xb3\xff\x88\xb6\xc8\x3f\xa2\xd8\xc9\x81\xca\xd2\x01\xfb\x21\xbb\xc7\xaa\x26\x95\x61\x13\x5e\x8f\xd3\xd4\xe6\x85\x23\x2f\x7b\x94\x8a\x5f\x5a\x9b\x51\xf0\xc2\xa1\xee\x4a\x96\x4f\x46\x44\xe1\x02\x30\x57\xed\xfc\x6b\xf2\x2d\x59\xbe\xdb\x8d\x5d\xd5\x41\x74\x8f\xd1\x2f\x1a\x41\xc0\xf2\x68\xcd\x3d\xb7\xfa\x7d\x7f\xbc\x70\x48\x32\x90\x9b\x51\xc8\xcb\xb0\x13\xeb\xb4\x6b\x67\xd0\x25\xab\x1d\xea\x96\xde\xe2\xa0\xe1\x56\x8b\xed\xd1\x0b\xdd\xb1\x91\x31\xa5\xce\xc7\xe1\xd9\x9e\x27\x62\xf4\x7a\x9c\xee\xe9\x90\x17\x2d\x6d\x3e\xe7\xa6\xec\xfa\x25\x5b\xa1\x52\x2b\x3a\x5e\x0c\xf3\xa7\xdb\x34\x11\x83\xa0\xad\x50\x35\xa5\xe2\x1f\x51\x1d\xe6\xc8\x94\x0a\x63\xa5\x29\xed\xc8\xa6\x25\xd2\xb0\x2d\x14\x4b\xb6\x2e\x4e\xb7\x87\x02\xd5\x83\x30\x23\x84\x02\x3a\xe5\xdd\x0f\xa0\x12\xb2\x73\x9e\x95\x1a\x9b\xce\x7f\xfb\x16\xaa\x48\xaa\xc4\xb6\x82\x5e\xe7\xbf\xc2\xed\xca\x09\xc5\x96\x45\xb6\x16\xdb\xf2\x71\x32\xd2\xb8\x14\x85\xfe\xd4\x9b\x2c\xb5\x1e\x51\xc0\x77\x07\x23\x5f\xf1\xd6\xd5\x1b\x16\x2f\x10\x3c\x23\x95\xed\xad\x26\x14\x2a\xd5\x72\x07\x08\x27\x61\x5d\x80\xe5\xf3\x62\x54\x85\xdf\xa8\xae\x8b\x26\x8d\x6a\x7e\x54\x83\xcb\xcb\xd2\x06\x03\xcb\xcf\x5a\x6c\x7b\xbb\xeb\x36\x49\xe0\xc3\xda\xa1\x18\xe5\xa1\xcd\x50\x9b\x7a\xa8\xa1\x37\x53\xa5\x86\x7d\x6b\xaa\x29\x27\x99\x71\x0d\x5d\xa3\x2b\x41\xd0\xd4\x5b\x1f\x8f\x67\xc9\x56\xec\x22\x23\xe7\xce\xd1\xe5\xfe\x78\xea\x00\xcf\xd8\x7f\xdf\xa5\xc6\x51\x7f\xa3\x28\xb3\x71\x6c\x3a\x81\xa8\xfc\xa9\x9b\x13\x72\x4c\x25\x10\x93\xda\x51\x6c\x8a\x4e\x88\x8b\x20\x90\xa4\xe4\x82\x50\x15\x32\x71\xbf\x66\x47\x38\x0d\x4d\xf6\xd0\xce\xc9\xe3\x35\x93\xcc\xd5\x18\x69\x1d\x75\x3f\x79\xe4\x59\x60\x04\xa4\x30\xe1\x5e\x0e\x98\xe2\xb3\xae\xd7\xa0\x4a\x52\x2d\x4d\xaa\x38\xed\xe5\xd6\x14\xea\xc5\x8f\x56\x8c\xf0\x55\xe4\x84\xaa\x6c\x79\x66\xfa\xeb\x66\x63\x36\x30\x61\x4f\x61\xbc\xe0\x97\xcf\xf2\x42\x73\x76\xca\x4b\x55\x0b\x99\xff\xe7\xbb\x45\x96\x7b\x1e\x85\x62\x4c\xdd\xdc\x55\x10\xee\x53\x35\x0b\x94\x35\xef\x60\xac\x44\x9d\xe0\xc7\x78\x3a\x62\x6c\x60\xb6\xee\x34\x02\xaa\x97\xeb\xe3\xfd\x2a\x2c\xd0\x78\xbf\xc5\x56\x39\x31\x69\xbf\xe8\x99\xb1\xfd\x0f\x02\xae\xb6\x84\x82\x7d\xb7\xa2\xf3\xbd\x80\x61\xaa\x37\xb6\x7d\xe9\xfb\x6b\xdd\x91\x59\x81\xe3\xdb\x0b\xc1\x59\xc1\xd3\xa7\x5f\x6f\xa1\x2e\xbc\xd4\x5d\xce\x63\x69\x74\x20\xb8\x7b\x83\x3d\x6c\xde\x68\xe3\x50\x8d\x27\x62\x8d\x85\x25\xf8\x1a\xa1\x57\xae\xb5\x8a\xbb\x4f\x46\xe8\x09\x63\xae\x5e\x8d\x28\x05\x3f\x4b\xfd\xc0\x77\x69\xdb\x43\x42\x2d\x3d\x49\x59\x5e\xc9\x4f\xbc\x4d\xe1\xda\x09\xe9\xc8\xdb\x04\xc1\xfb\x1e\x06\x9d\x9c\x34\xba\x8d\xd5\xdd\xaf\xdb\xbc\x1c\xda\x78\xd4\x21\x73\x63\x09\x2e\xe4\x84\x4c\xb8\x72\x33\xb6\x85\xb5\x7d\x21\xe4\x62\x98\x7c\x07\xc3\x55\x4e\x28\x62\x59\xb5\xfd\x27\x3a\x5f\xfe\x32\x0b\x2f\xbe\x24\x75\xcd\xa7\x37\x21\x4d\x86\x25\x15\xe0\x94\xad\x8b\xd3\x90\x7a\xee\xda\xac\x9e\x17\xaa\x34\x5b\xc4\x80\x41\x9f\xcd\x4d\xbe\xbf\xf7\x97\x37\x3b\xfb\x17\xb7\x24\x94\x77\x6b\xf0\x7f\xf1\xd5\x79\xca\x2e\x9e\x06\x8e\xd6\x95\xca\x7e\xe1\x3f\x41\x59\x15\xd7\x02\xf9\x33\x75\xd7\x23\x00\xf1\x85\xe9\xb3\x44\xbb\xca\x7b\x43\x93\xf6\xe3\xc2\xee\x0e\x9b\x24\x84\x36\xb0\xc8\xcf\x6c\x52\x66\x0a\xc9\x5b\x91\x6d\xc3\x94\x93\x24\xc7\x2d\x82\xa2\x6c\x48\x1a\x7f\x3f\x01\xf6\x51\xbe\x8a\x84\xa4\xcb\x8d\x9e\x5a\xba\x03\xbf\x72\x9a\xc8\x64\xa7\x1b\x0d\xc5\x85\x43\xdd\xc2\x7e\x73\xe2\x14\xc7\x3d\x89\x4b\x4d\xbb\x18\xad\xe3\xd7\xb6\xff\xfe\xc3\xb6\x2f\x99\xa4\x2b\x49\x95\xbf\xe5\xea\x75\xab\x1a\x99\x2c\x98\xd9\x56\xa5\xec\x65\xd5\x82\x27\xa0\x26\xb4\x39\x7e\x1c\x05\xed\xdd\x1f\x4f\xb7\x63\x8a\x16\x17\xbb\xb9\x1d\xc4\xdb\x00\xb5\x6d\x21\x5b\xf3\xd7\xaa\xd8\xa6\xb7\x6a\x06\x16\x03\x16\x11\xc9\x0f\x08\xc7\xf9\x83\xb6\x2a\x42\x7f\x22\x9c\x4b\x44\x20\x1f\xba\xcf\xab\x72\x67\x75\xaf\xa8\x2c\x5f\x71\x23\x10\x71\xd2\xec\x3c\xd1\x79\xcb\xc4\xa4\xa5\x71\xd5\x4c\xb5\xb8\x27\x15\x81\xdf\xe0\x0e\x8a\x28\x51\x29\x27\xdb\xf7\x5d\xf2\xac\x67\x0b\x57\x02\x5c\xf2\xce\x64\x54\x6d\x9c\x52\x24\xf1\xbd\x69\xa0\x5e\xc1\x36\xc9\xbd\xb5\xb3\x4f\xcf\x13\x72\xf1\x82\x57\xa9\x2c\xca\x7c\xd2\x5b\xdd\x45\x2b\xc5\x2d\x8c\x3f\x44\x72\x00\xdf\x62\x40\x38\xb1\xbc\x85\x7b\xff\xd5\x53\xf8\x26\xd5\xe5\x77\x0b\x39\x2e\x44\x64\xdd\x15\x05\xf1\xc5\x10\xa9\x8d\xb3\x55\x5b\x8c\x6d\x5e\x64\x69\xe1\xbc\xb0\x80\x8f\xbb\x1c\xb9\x61\x2c\x5e\x62\xe4\x13\x11\xda\xa9\xcb\x89\x1d\x39\x5e\xc8\x22\x29\xcc\x53\x63\xba\x55\x48\xc7\xbe\x3a\xb6\x69\xe1\xf4\x45\x42\x14\xf2\x81\x7b\x64\x72\x1c\x3d\x53\xcf\x6f\xab\xc1\xf1\x0b\x9d\x30\xc1\xae\x44\xa4\x99\x79\xa5\x6d\x7f\x19\x99\x7c\x15\x34\x8e\x05\xc9\x2f\xff\x3d\x56\x13\x2c\x42\x97\xdd\x28\x56\x13\x9c\x00\xd8\x1a\xdb\x7c\xe2\x7e\x47\xa0\x66\xee\x66\x14\x76\xf6\x04\x55\x06\x7a\xaa\xb9\x8c\xa6\xf6\x47\x6e\x1e\xcb\x71\x4b\xff\xcb\xc5\xed\xb3\x01\x62\x28\xfa\xab\x48\xa3\x8f\x50\xc6\xf9\xd3\x29\xc1\xc0\x2f\xb4\x88\xfc\x39\x5b\xbc\x2c\x89\x53\x23\x85\x18\x45\x23\x50\xc1\x7f\x4a\x54\x9a\x7b\xbe\x3d\x1c\xa7\xbd\x64\xd2\xb7\xfd\xb9\xa0\xca\x30\xb7\x49\xd9\xf8\xa7\x78\x40\x3a\xb5\x43\x51\x5a\x74\x35\x10\xf8\x3d\x3e\x1f\xb0\x9a\xaf\xfc\xc7\xcb\xee\x61\x89\x76\x22\xdb\x49\x9f\x8a\x02\x9a\x7c\xdd\x9a\xd5\x59\x8a\x91\xa0\xaa\xa6\x05\xfe\x80\x69\x39\x43\x3e\xc5\x17\x88\x8c\xde\xcb\x26\x79\xb9\x27\x60\xc1\xae\xbb\xbf\xc7\xc3\xbe\xc3\x1b\x9a\xaa\xac\x21\xc5\xfe\xdf\x30\x55\xc4\xe1\x94\x86\x65\x67\xbe\x8e\x53\x0f\x40\x98\x7b\x78\x2d\x9a\xd7\x2b\x74\xb7\x48\xb2\xf5\x9d\x33\xc1\x8a\xfc\x36\x66\x12\x32\xbe\xf7\x49\xdd\x01\xc4\x76\x57\x87\xfd\xf5\x27\x5d\xb9\x0a\x7d\x5f\xd8\x8c\xe1\xea\x1f\xdd\x0c\x71\x5a\x31\x36\xa9\x37\x20\x57\x32\x5b\x67\x71\x91\xb8\x6c\x1e\x0f\x34\xae\x56\xef\xd9\x10\x3d\x43\xe2\xc8\xab\xe4\xfa\x6b\x38\x43\x9e\xb3\x67\xa2\x2f\x91\x18\x59\xd1\xcb\xe3\x91\x28\x88\x38\xa2\xb8\x28\x24\x00\xfd\xa3\x91\x76\xf0\x49\x79\xcb\x4d\x12\x2f\xa3\xe0\xe9\x5e\x7f\x16\x05\x7a\x01\xae\x7f\x86\x9e\xf4\x29\x5a\xb1\xaf\xb8\x6b\x44\x45\xf7\x93\xc6\x62\xf0\x15\x87\xf5\x5c\x1f\xda\x64\x54\xdd\x9a\xe3\xd0\x79\x0d\x36\x4f\x1b\x47\x25\x4b\x44\x4c\xf0\x4a\x55\x57\xd2\x43\xc8\x4d\x92\x64\x63\xcf\xd3\x66\x5b\x42\x39\xf6\x0d\xbf\x57\xac\x49\xb2\x49\x01\x34\xb3\xf0\xe1\xa3\xb0\x4d\x30\xcf\x24\xcd\xf2\x95\x2c\x59\x25\x82\xdc\x52\x14\xca\x52\x4b\xd3\xf0\x1a\xc7\xc3\x8d\x02\x4e\xdd\xde\xb2\xf4\x4e\x44\xfe\xa5\x77\xda\x34\xab\xb2\xd7\x4c\xbe\xaa\x32\x38\x28\x57\x82\x5c\x2d\x2a\x4e\x53\xc2\x23\x5d\xaf\x15\xb3\xd3\x7e\xf1\x85\x50\xbe\xbf\xce\x1a\xa1\xbf\x3b\xad\x0b\xe7\x05\x80\xe6\xbd\x29\x23\xac\x48\xa4\xe2\xf1\xf9\x80\x96\xbc\xca\xb8\xd1\x77\x91\xef\xa1\x20\xf8\xe4\x7c\xe7\x6b\xbf\x26\xfd\x48\xa0\xbb\x50\x67\xfa\x11\xde\x88\x17\xce\x3a\xb8\x24\x15\xb2\xd3\x54\x14\xb9\x88\x6d\x08\x9b\xc7\x1e\x97\x64\xa9\xeb\x2f\x75\xb9\x2f\x21\x1d\xf6\x18\xb0\x20\xaa\xff\xd0\x66\xa3\x62\xb1\x20\x3b\xed\xcc\x26\x3f\x99\x49\x52\xee\x26\x82\xd1\x7b\x0c\x4b\x78\x0f\x4f\x83\xb5\x08\x34\x34\x70\xdf\x87\x4b\xfd\x3e\x7e\x57\x55\x94\xaa\xc7\x04\x3a\x15\x54\xb5\x54\x8a\xb8\xa5\xe0\x54\x0c\x33\xed\x38\x7b\x90\xb6\x87\x62\x35\x9d\xa1\xfe\xe6\x42\x17\xa4\x87\x17\xf7\x0a\xaa\xe8\xa8\x1b\x5d\x72\xdc\x92\xf4\xbf\xd4\xcd\x6d\xdf\xda\x91\x1f\xe7\x68\xbf\x41\x06\x4c\x8e\x29\xd6\x1c\x64\x79\x9c\x95\x33\xa4\x5a\x7c\x31\xaa\xd9\x35\x7f\xfd\xb0\xaf\x7b\x04\x54\x4a\x9c\xf6\xbe\xfa\x44\x75\xa7\x18\x85\xc7\x51\x06\x11\x0d\x79\xf7\xf7\x22\x07\x3c\x25\x73\xcb\x1b\x30\x1e\xc1\x3c\xbf\x11\x91\x10\x00\xb4\x79\x35\xc5\x65\x77\x5b\x08\xef\x8b\xdc\xa8\x8b\xbc\x71\x7c\xbb\xae\x23\xe9\x6e\x14\x1b\xf0\x75\x22\xb7\xcd\x01\x28\xa0\x2e\x95\x6e\x14\x21\xce\xff\x3f\xd9\x09\x34\x37\xcb\x71\x5a\xac\x6e\xcc\x50\xbb\x52\x9d\x06\x3d\x65\xd6\xbb\x47\x7e\x4e\xf5\x33\x8b\x87\xfc\x92\x07\x6a\x31\x6a\xab\xf1\x32\x5f\xdc\xdb\xb5\xc5\x58\x41\x6f\x6a\x5a\x5c\x3d\x2d\xf5\x29\xe6\x82\xe3\x72\x0c\x6c\x3b\x1e\x1e\x44\xb7\x94\xf6\xe3\x9e\x2a\xc6\xe5\x29\x72\xd4\x66\xae\x75\x8e\x94\x40\xc6\x5a\x9b\x87\x33\x55\x60\xf2\xd8\x2d\xd0\xb3\x54\x28\xd8\xb9\x59\x43\xb6\x86\x14\x7c\xe7\x7c\x0d\xff\xfa\xac\x8f\x1b\xcc\x78\x9c\x67\xe3\x1c\xde\x99\x2f\x7a\xeb\x16\xf7\xe8\x50\x2d\x81\x03\x10\xe0\x33\xb3\x9b\x64\x6d\x5f\x9a\xd2\x16\x23\x9b\x62\x87\xc0\xf3\x03\x20\xdf\x6b\x23\x79\x58\x53\x50\x67\x1f\x9a\x7c\x39\xcb\x01\xed\xc3\x9e\x7d\x0b\x4b\x88\x56\x30\x3b\xde\x1c\xff\x04\xbd\xb4\x51\x39\xea\x90\xe3\x28\xb6\x52\x39\x6e\x43\x65\x97\x93\x7c\x94\xc5\x89\x3c\x49\x2d\xca\x75\xbc\x4a\xc9\xc5\x29\x71\x60\x6c\xdf\xa8\x29\x20\x36\xa3\xef\x73\x5f\xfa\xfb\x3e\x1d\x18\xc5\xe9\xa4\xf4\x00\x48\xac\x92\xb7\x23\xaa\xd3\xdf\x26\x32\x91\xb2\xc2\x51\x67\xc3\xa5\x9e\x99\x92\x4d\xda\x3f\x26\x18\x0e\x2a\x62\xb2\x38\x37\x72\xa1\x85\x43\xdd\x15\x81\xdb\x7b\xa5\xc7\xea\xfa\x54\xe9\x71\xfb\xee\x7b\xe0\x40\xb7\x98\xe4\x79\x36\x49\x83\xbc\x8b\xb2\x99\x42\xec\xd7\xc4\x6a\xbf\xfc\xb2\xfa\xd6\x8a\x52\x29\x21\x7f\xd4\x1e\xf3\xad\x06\xd2\x70\xff\x62\x77\x7d\x98\xd9\x35\xa9\xf9\xa0\x2a\x72\xdb\xd1\x6f\xe5\xb8\x56\x93\xcf\x2d\x10\x00\xd8\x4b\xc0\xf2\xd0\x93\xe8\x59\x36\xc9\x49\x5c\x48\xa3\x10\x6f\xe9\xce\xb8\x1b\xd0\x4e\xcd\xa3\x44\x32\xed\x3f\x5d\x8d\x5f\x1f\x26\xd7\x7c\x5b\x82\x3b\xc2\x05\xae\xe8\x7d\xcf\xcd\x63\x6e\x8d\x78\xd7\xb5\x7d\xfb\xa4\xba\x28\xfa\x3a\x0a\x62\x44\x05\x44\xbe\x8b\x05\xb3\x90\x91\xaa\x5e\xa1\x7b\xe4\xda\x82\x24\xc7\x1c\x69\xdb\xaa\x00\x65\xb5\x36\x6a\x21\x19\x83\x0a\xa4\x83\xcb\x5c\x93\xdf\x74\x8b\x05\xfe\xe4\x7a\xa3\x1c\x54\xa5\x0d\xcb\xb9\x2d\x87\xb9\x4d\x49\x30\x45\xd4\x10\x55\x81\xa4\xc5\xe4\x7c\xec\xb4\xb0\xdd\xa7\x94\xbf\x1f\xf2\xeb\x1d\x9b\x61\xb7\x19\x66\x79\x9e\xe5\xa4\x5c\x0b\xe2\x97\x82\x82\x7c\xbe\x38\xe9\xad\xfa\xd1\xe6\x7d\x2c\x16\x83\x77\xc5\xf6\x51\xfd\x37\x1c\x36\x9b\x68\xe5\x68\x0d\x4a\x61\xc6\xed\xc9\xa8\xb8\xff\x09\xc9\xb2\x24\xd6\x14\x92\xe7\x20\xe6\x16\x4b\x1c\x7c\x72\x6e\xb3\x66\xfa\x16\x2a\x7c\x92\x0a\x20\x04\xfd\x0b\xad\x22\x77\x36\xcd\x26\x03\x68\x26\xe0\x25\xa0\xb2\x25\xc7\xa4\xb8\xd6\x33\xa5\x29\xca\x3c\x1b\x0f\xe3\x1e\x4a\xab\x5e\x13\xaa\x1a\x29\x6a\x32\xa3\xd7\x5c\x4c\x1c\x80\x42\x4a\x7c\x98\x44\x52\x57\x96\x13\xf2\xba\x59\x36\xb9\x2b\x6d\x87\x96\x0a\xe9\xc8\xb0\x8b\x85\xdb\xe3\xc5\x05\x8e\x9a\xeb\x85\xcd\xd7\xe2\x9e\x2d\x76\x57\x73\x41\xd8\x61\xe4\x06\xfa\x04\xb6\x01\xcd\x7a\x67\x82\x85\xf8\x55\x8c\x65\x71\x07\xa0\x3c\xe3\xca\x94\x71\x63\xdc\x2d\x79\x93\xa4\x21\xfa\xf1\xca\x8a\xcd\x31\x9a\x44\xd0\x29\x0a\xb2\x00\x47\x1b\xc5\xa4\x03\x07\x0e\x76\x7b\xb9\xed\xc7\xe5\x7a\x96\x97\x43\xac\x08\xa2\xa0\x4d\xb6\x20\x4d\x67\xe3\x7d\xfb\x9c\x45\x1c\x7e\xc9\xcb\x31\x2c\xd6\xe4\x2a\xbc\xe3\x5e\x9c\xda\xfe\x2e\xf7\x52\x7c\x2d\xd6\x6b\x7c\x9e\x74\x03\x0c\x19\xf6\xec\x66\x10\x2a\xfb\x3b\x84\x2b\xc0\xd6\xa7\xf2\x75\xee\x55\x6b\x21\xd7\xbb\x22\x65\x79\x6f\x08\xd5\x7b\xdf\xe7\xf4\xd9\xfa\x29\xe6\xcd\xdd\x09\x7c\x42\x41\x7f\x01\x4c\xea\xde\xe7\xdc\x5f\x9c\xa7\x28\xe4\x8b\x9b\x94\x0b\x36\x30\x39\xd5\xee\x96\x8d\x63\x23\xbc\x4d\x95\x2f\x08\xcd\xae\xa3\x35\x2d\xdb\x95\x2c\xff\x8b\x14\xee\x5c\x74\x23\x47\xac\xd5\x88\x35\x22\xf1\x09\x5e\xed\x75\x0c\x0d\x0c\x20\xf4\x2f\x30\x80\x04\x2e\x84\xaa\xd3\xc7\xae\xe1\x85\xf9\x7a\x6a\x4a\xfe\x41\xc7\x1c\xd9\x14\x5f\xf5\xb7\xa3\xc0\x39\xb9\x3a\x25\x4b\xa5\x9b\x11\x79\x32\x7e\x3e\x75\x61\xa6\x87\x90\x7a\xac\xcf\x07\x28\x54\x69\xbb\xc1\xbd\x03\xf9\x62\x59\x31\x11\x00\x1f\x89\x88\xb0\xfd\x53\x59\xa6\xd5\xe9\xc4\x6d\x06\x58\x21\xde\x77\x6b\xae\x6f\x07\x57\x63\x03\x2b\xde\xd5\x88\x37\xac\x4e\xb0\xa5\x62\x77\xc7\x1f\xd7\xe1\x81\x59\x19\xf7\x76\x06\xca\xba\xd0\x35\x81\x62\xbe\x19\x85\x2a\xee\x25\x14\x8d\x91\x6e\x0b\xa3\x07\x6f\x03\x1c\x36\x6c\x01\x97\x9b\x25\xb5\xe7\x5f\xe8\x2e\x9b\xb4\x57\x0c\x4d\xee\xc3\x0e\x6d\xf9\x10\xfe\xe7\x34\x11\xa3\xd6\x4d\x69\xf3\x81\x29\x45\x7a\x4c\x45\xe5\x3a\x5e\xda\xeb\x5c\x63\x32\x7a\xdc\x65\x96\xc6\x45\x99\x61\x1b\x51\xa6\xf4\x4c\x30\xac\x6c\x6a\x3d\x2f\x2e\xbe\xd0\x8d\xd3\x22\xee\x5b\x57\x74\x10\xb5\xe4\x29\x55\xf0\x3e\x9d\x12\xda\x04\x78\x28\xa0\x58\xc0\xd9\xc7\xf1\x53\x0d\x0d\xda\x43\xcf\x77\xcd\x20\xb7\x40\xbc\xb3\x29\x92\x6e\x26\xdb\xff\xa0\x7a\x54\xaf\x99\x11\xfa\x91\xe4\x4f\xb6\xe4\x21\x07\x6d\x76\xfb\xab\x59\x6e\xa5\x8d\xe4\x1d\x43\x82\x1f\x5e\x53\x95\xbd\x0a\xac\xbe\x39\x31\xc2\xfc\x94\xde\x98\xbb\x2e\xed\x93\xb5\x84\x62\x4e\xb0\xca\xc4\x69\x99\x8d\xa9\x61\x75\x96\x94\x40\xce\x92\x70\x4f\x6e\xe0\x29\xec\x6d\x62\xdc\xc3\x94\x13\xc2\x4d\x8c\x4c\x6a\x06\xb6\xef\x82\x76\xc4\x73\x37\x79\xa4\xa2\x68\x08\xd8\xe0\x49\xaa\x35\x25\x71\x59\xbd\x61\x0c\xa5\xd6\xc6\x91\xee\xe7\x1b\x26\x5d\xb5\x7e\xd4\x21\x48\x9a\x41\xa7\x46\x4e\x36\x75\x11\x9c\xa4\xaf\x4c\x8a\x92\x22\x46\x79\x8c\x0a\x9a\x0d\x1d\x49\x21\x76\x77\x42\x8d\x02\x14\x0e\x39\xa6\x1d\xa5\x18\x66\x93\x52\x5a\x56\x35\xaf\x42\x39\x69\x33\x00\x4a\x26\x79\x6f\xd8\xa1\x8d\xec\xed\x9a\xdc\xf7\xe3\x7e\x47\x4e\x97\xe3\xbc\xcf\x7a\x24\xf8\x6a\x42\xac\x06\x61\xde\x51\x96\x3e\x1a\xa8\xa1\x47\xb1\xce\xd0\x84\x57\x25\xf3\x3d\x9b\x61\x0f\x9b\x73\x56\x0a\x01\x95\xbb\x20\x53\xfc\x08\x9e\x8b\xb6\xa1\x99\xf4\x82\x14\x58\xf8\x57\x58\x4c\x3d\xd2\xaf\x5a\xf4\x90\x42\xff\x0c\x4b\x96\x9c\x34\x66\xf2\x8b\x7b\x9f\xab\x82\x41\xb3\x5a\x0e\x73\x44\x33\x1e\xf3\x01\x1d\x18\x1d\x1c\x44\x6c\x30\x4e\x1f\xd5\x65\xad\x98\xe6\x57\x39\xf8\x84\x08\x33\xa6\xe9\x77\xc0\x43\x96\x93\x88\xad\x77\x93\x64\x77\xcd\x22\x85\x34\x00\x43\x66\x7f\x3b\xea\x1c\x7a\xde\x07\xc2\xa1\x54\xfd\x5d\x04\xe8\xbe\xad\x58\x8d\xe2\x1a\xca\x51\x9f\x76\x48\x7e\x47\x93\xbc\x6f\x1d\x16\xcc\x7b\x83\xa2\xf4\x2c\xc7\x8d\x30\xf9\xd0\xf3\xdd\x7e\x5c\x98\xf1\xd8\x9a\x9c\x68\xdb\x40\xa6\x29\xfc\xad\xcd\x76\xcc\xf6\x27\x1e\x8a\xa1\x46\x20\x6e\xa7\xd4\x46\x54\x8d\xf2\x36\xb6\x73\xee\xd5\xe1\x3d\xce\xce\x07\x58\xf8\x2d\x0c\x1c\xf9\x07\xb7\xc1\x4b\xe4\x1f\x85\x90\xf3\xa1\xcd\x96\xcd\xde\x8e\xe3\x22\xeb\x5b\x36\xfe\x41\x21\x56\x8b\x11\xad\xfe\x00\xe9\x46\x39\xd4\xaa\x32\x86\xae\x4c\x5e\x4c\xb5\x8b\xdb\xc0\x7a\xd5\xc6\x85\xef\xbb\x42\x3c\xe2\x5e\x62\x8a\x62\x37\x35\xcd\x24\x8e\xf6\x2b\xb2\x97\x16\x3a\xe5\xea\x3c\xa8\xd3\xdc\xc7\x5b\xc3\x7d\xff\x5f\x32\xca\xd5\xd0\x2c\x44\xee\xff\xcc\xdd\x84\x96\x30\x43\x07\x66\x25\x71\x9a\x14\xee\x57\x89\xaf\x1f\xca\x0a\xa1\xfd\xd0\x37\x39\xca\x16\x88\xf2\x67\xe6\xeb\xd0\x1c\x5f\x3c\xbb\xf7\x40\x02\xde\x2b\x36\x77\xae\xf6\x2f\xee\x95\x9c\xf0\x53\xb2\x7c\x3e\xcd\xe2\x90\x4d\x57\xba\xfd\x8b\xdd\x38\x37\xa9\x02\x11\x10\xbc\x7c\xca\x96\x42\x9f\xd2\xca\xbb\x3c\xd9\xb0\x79\x31\x17\x80\x14\xc0\x99\x21\x95\x95\xd7\xe1\x0b\x57\x07\x97\xa4\x6e\xbc\xc3\x59\x8b\xa2\x7a\xf0\x29\xd1\xa4\x17\xbe\x5a\xcc\x52\x41\x12\xe5\x65\x2d\x9b\xb8\x2b\x40\x71\xf7\x9e\x3c\x7e\x04\x60\x6f\x13\x44\x12\xe2\x2c\x65\x96\x03\xfd\x8f\xbc\xe2\x53\xb2\x7d\xe5\x8b\x37\x69\x3a\x31\x89\x63\x89\xab\x2b\xaf\xfb\x75\x7c\xf2\x8c\xd4\xdd\x44\x55\x0b\xa3\x09\xaf\x9f\x5d\x01\xcf\xba\xf5\x63\xeb\x22\x23\x7e\x64\xc1\x7e\x49\x12\x8c\x1f\x71\xb6\xf1\x23\x0a\xe6\xb3\xb1\x4d\x6d\x7f\xce\x2d\x85\xa8\x29\xef\x9c\xef\xf8\xa6\xc2\x27\x58\x16\xf1\x33\x97\x89\x27\x7b\x9b\xe8\x7e\x6d\x5d\x8a\x24\x4b\x07\x45\x69\xa8\x4e\x82\x07\x75\x99\xba\x14\x97\xc9\xef\x24\x2e\x63\x93\xcc\x84\x2c\xe2\x3a\x59\x16\x88\x33\x96\xc6\xb0\x4d\x5f\x8c\x34\x5b\xb3\x49\x5c\x80\xee\xa9\x64\x11\x6a\x2d\x93\xd7\x6a\x56\x6a\x13\x12\xdf\x7d\x91\x7e\xe7\x62\xa3\xde\xa5\x83\xb9\x3f\xee\x81\x04\xa7\x1a\xb3\xd5\x17\x60\x1c\x5c\xc1\xc5\xa1\x8c\xb7\xa3\x11\x6f\x55\xe1\xd3\x7a\x9c\x00\x5b\x8b\xa7\x0f\x27\x23\x39\x6e\xe3\xe8\x0e\xe3\x65\x51\x3a\xf1\x9a\xb1\x41\xc6\xf8\x0c\x91\x74\x50\x5f\x0b\x3d\xe0\x1a\x6d\xa4\x05\xdf\xf2\x5c\x77\x79\xd2\x1f\x58\xcf\xa6\x97\xa2\x0c\x96\x5d\xad\xd0\xd4\x28\x00\x2b\x22\x68\xed\x39\x7c\xfb\x3d\x9f\xaf\x01\x9a\x10\xa6\x99\x80\x59\x0b\xa0\x59\x15\x41\x8c\x71\xac\xe0\xe2\x47\x89\x55\x99\x3a\xc1\x7d\x6f\x8e\xb8\x5f\x11\xfa\xc7\xdc\x64\x45\xae\x00\xe7\x73\x84\x03\x1f\xb3\x26\x29\x92\x18\x5d\xbf\xdc\x2b\x0f\xb1\x91\x54\xa5\x5f\x1d\x27\x59\xee\x87\xa1\xee\x63\x01\xc3\x72\xa6\x05\x14\xbd\xe4\x80\xce\x79\x5f\x9f\x54\x9b\x2d\x45\x0b\xc4\xb0\x1f\x8f\xe2\x34\x2e\x86\x55\xf8\xe8\x63\xb6\x4b\x0d\x6e\x5c\xe0\x47\x3c\xec\x1f\xc4\x5f\x7d\x8a\x44\x99\x6e\x23\x20\x40\xd2\xb5\x63\xbe\x8a\x73\xb4\x65\x4d\x80\x7c\x98\x65\x61\x83\xdb\xb1\x59\xa5\x8c\x62\x01\x3f\x4f\xec\xf0\x3f\x46\xc9\x0c\x4b\xed\xbf\x74\xcf\x0e\x49\xda\x77\xb1\xf6\x8b\x95\x87\xdb\xe3\x7d\x0b\xd3\x27\xf0\x62\xfa\x8a\xac\x5d\xad\x72\x3d\x90\xc2\x3b\x68\xed\x9a\xa7\x52\xdc\x6d\xf7\xe2\x54\xb2\x6a\x7b\x9d\xc1\x6d\xfd\x32\xd5\x31\xa3\xf7\xb8\x25\x16\xd9\x84\x98\x14\x22\x04\xb8\x49\xfd\xec\x81\x8f\x6e\xdb\x12\xaf\xa7\x7c\x00\x5a\x38\x98\x84\xa4\x5a\x5a\x3e\x0a\x0d\xd5\xcf\x89\x93\x67\x7a\x43\xc7\xe7\x3d\x70\x40\x90\x68\x40\xa9\x7a\xd6\xbe\x87\x89\xdc\x68\xc8\x00\xed\x5f\xac\x82\x9e\x38\x2d\x9d\x3f\xbe\x0e\x12\xaf\x05\xe1\x57\xb8\x23\x51\x28\x86\x8f\xe2\xb4\x5f\x38\xe3\x25\xd5\xc7\x63\x3a\xdb\xf6\x21\xe8\x91\xe7\x4e\x65\x21\x40\x4a\xf0\x57\x9c\x4d\x23\xb8\xb8\xe1\xd6\x63\xd1\x9a\xa3\x68\x7f\x38\xa9\xd2\x92\x19\x12\x40\xbb\x83\x21\xe4\x75\x15\xd8\x75\xe5\x31\xaa\x77\x25\xc9\x53\xd5\x4f\x61\x0c\x7f\x80\xc1\x82\xb1\xf6\xb6\x7b\xc1\x35\x09\x0b\xc4\x3e\x27\x49\xbf\xf3\x73\x97\x9a\x6f\x9d\x46\x65\x01\xfb\xec\x35\xf4\xbc\x3c\x7a\x73\xbf\xa2\x77\xfe\x54\xd6\x07\xb5\x0e\x20\xd3\x30\x78\x03\x20\xe6\x15\x82\x1e\x14\x99\xef\x62\x37\xc4\xa7\x6e\x11\x2d\x0d\xce\xd1\xca\x4a\x0b\x73\xe7\x14\xbd\xfb\xa1\x59\x8e\x51\x27\x7a\x4e\x1a\x05\xc0\x01\xab\x50\x48\xc7\xdb\xf7\x1d\x27\xd8\xe7\x28\x2b\x12\x3b\xc2\xb6\x8e\x21\x7a\x94\xc7\xeb\xd1\xe8\x4b\xc4\xc8\x33\x69\x31\xce\xf2\xd2\x21\x07\x76\x57\x57\x84\x60\x58\x12\x7f\x74\x68\x7e\xec\x1e\x98\xd7\xbb\xa8\xae\x06\x01\xd7\x31\x37\x88\x04\x1c\x40\x40\xc7\x3b\x51\x70\x04\x80\x6d\x80\x7c\x6b\x1d\x9d\x3f\x29\x76\x56\x9f\xc3\x32\xf1\x5d\x3c\x35\x71\x1d\xc6\xaf\xe0\xb1\xe3\x57\xd4\x34\x26\x04\x50\xbf\x15\xd5\xf4\x2b\xf6\x68\x21\xba\xec\xb0\x81\xe4\xf9\x69\x4d\x99\xed\x31\x46\xb1\xe7\x3b\x1d\xbc\x19\x5b\xc5\xe7\xac\xa6\x73\x06\x59\x17\x8a\xdc\xa7\x9c\xff\x93\x7c\x6a\x1a\x6c\xdb\x4e\x51\xcd\xff\x0c\x45\x4b\x2b\x71\x12\xa7\x83\x9d\xd4\xa2\x87\x45\x00\x16\xb1\x7f\x83\xdf\x51\xff\xac\x1a\x0b\x23\x54\xaf\x2f\x45\x64\x8a\x7a\x89\x12\xb6\xa1\x19\x8f\xe3\x64\x63\x2e\x04\x07\xec\x9b\x74\x96\x01\x3d\xb7\xdc\xca\xab\x1a\x82\x6e\x0a\xa1\x38\x75\x9c\x96\xac\x72\x98\x5b\xfb\x54\x20\xe8\x9c\x62\x37\x28\x89\xa8\x59\x5d\x4f\x12\xc3\x7f\x14\x71\xe3\x5e\xe0\xca\x40\xec\xde\x99\x92\x6d\xc5\x09\xb2\x92\xbc\xea\x66\xa4\x77\xd9\xf3\x65\xde\xdf\x8b\x6a\x00\x86\x1a\x56\xa0\x1a\x3c\x62\x0f\x46\x90\x4c\xa9\xa8\xa9\xb0\x40\x30\x09\x94\xb9\x87\x65\xf4\xcf\x43\x73\xc2\x0c\x06\x66\x60\xc9\x52\xfc\x1e\x61\x6c\x9a\x8c\xd2\x2a\x48\xd0\x4c\x51\x6a\x9a\x4c\x81\x3b\xd6\x56\x19\xea\x65\xa3\x6d\x38\x95\xbb\x84\x53\xb9\xcb\xea\x07\xd9\x0a\x36\x09\xf5\x5e\x0f\x3f\x13\xf4\x3d\x27\x69\xb5\xee\x4b\x85\x87\x6a\xb4\x8a\xc6\xbb\x47\x42\x90\x4d\xe9\xf0\x17\xf7\xbe\xd4\x5d\x99\xe4\xe5\xd0\xe6\xb3\x21\x4b\xfb\x1c\xcb\x9c\xb2\x27\xc2\xe4\x95\xde\x05\xf6\xe2\xdf\xc5\xe3\xc0\xee\xe3\xfb\xc3\xa2\x86\xff\x92\xcf\x8d\x28\x4f\x22\x59\x3b\x35\xbc\x59\x99\x24\xb3\x64\xf5\x79\xb9\xe6\x3d\x3d\x0d\xda\x28\x1f\xe2\x9e\x70\x32\x3b\x1f\x90\x37\x2e\x44\x29\xf3\x8d\x39\x16\xd2\x10\x14\xb6\x88\x7c\xd0\xba\xb0\xe5\x2e\x87\xcc\x2b\xb5\x50\x34\xdb\x70\x0b\x38\x70\xa0\xbb\x9e\xa9\x86\xbd\x77\x6c\xf6\x01\xc7\xc7\xfe\x0d\x0c\xcd\x60\x90\x28\x2c\x9f\xc8\x95\xcf\x79\x72\x65\x8b\x6b\x63\x31\xce\xad\x81\xad\x42\xcd\x95\x0f\x33\xe0\xa1\xf9\x60\x8f\xf2\x11\xee\x1c\xc9\xf0\x49\x2a\x92\xad\x54\x81\x60\xdf\x74\x02\xc8\xe0\x02\xd9\x19\x5c\x68\x64\x16\x07\x0e\xbc\xd0\x45\x65\xc3\x8d\x15\xa5\x6e\x93\x73\xcd\xa5\x29\x7d\x17\x55\x2c\x6c\x3c\x18\x96\xf0\x78\xf1\xce\x19\xd5\x35\xa9\x8c\x59\xf5\x57\xa8\x0b\xa2\x5d\x22\xc7\x75\x3f\x08\xf7\xb0\x31\x10\x66\x1d\x30\x0e\x4f\xe7\x0e\x51\x63\x3e\x8c\x48\x9b\xef\x72\x44\x7c\x84\x77\xdc\xce\x87\x9c\xf2\xd2\x94\x9c\x66\xcf\x32\x51\xe1\x9d\x16\xd2\xa5\x37\x84\x0f\x46\x73\x17\xa9\x9a\x7e\xf1\x81\x1a\x4e\x36\x5d\x89\x9d\xb7\x78\x58\x28\x3e\xa1\x82\xff\x27\x6d\xaa\xbe\xfd\x2c\x49\x6c\x7f\x32\x9e\x09\x9d\xeb\xe3\x11\x31\x99\xbe\xcb\xa4\xdb\x8f\x90\x38\x68\xbf\xbb\x53\x6d\x1e\x22\xa6\x02\xff\x00\x55\x56\x09\x8b\x7a\xf5\xc6\x47\x1e\x84\x80\xbd\xea\x76\x44\x1b\xd7\xed\xe9\x33\x41\x45\x6e\x52\x66\xa3\xac\x8c\xd7\xec\x5c\x90\x99\xc6\xbe\xa4\x96\xbd\x1d\xef\xf5\xf5\x43\x5e\x10\xef\x90\x38\xc7\xae\x86\x99\xca\xe2\x62\x17\x73\x77\x9b\x8c\x19\x6f\x29\x67\x68\x03\x1d\x4f\x92\xf1\xdc\x4c\x30\x05\xbb\x4e\xa2\x7e\x33\x6e\x24\x60\x0b\xf8\xf6\x34\x54\xf1\xff\xc9\x94\x44\x3c\x3f\x6b\x59\xb6\x16\xba\xe3\xdc\xf6\xe2\x02\x5c\x0d\x34\x6d\x80\x5a\x90\xe3\xe9\x17\x42\x79\x2a\x73\xbd\x87\xdc\x2c\x27\x76\x96\x58\xc3\xd8\x5b\xa8\x17\x4f\xa6\xbf\xa1\x49\xdf\x4e\xc5\xe9\x0d\xcd\xb8\x44\x2b\x53\xcb\x63\x08\xe2\xd5\x25\x93\x13\x4f\x93\xf4\xc1\x44\xc2\x22\xb7\x15\x71\x45\xf7\x2e\xb8\x53\x08\x76\x6f\x52\xce\x2b\x42\x1a\x62\xf5\x38\x4f\xd1\x6c\x5c\x5a\xc8\x4d\x28\xe0\xc9\x5d\x3b\xe6\x10\x2a\x41\xd2\xf2\x65\xb5\xb4\x93\xee\xa6\xb4\x17\x1c\x56\xe5\xab\x0c\x63\xcc\x4d\xaf\x8c\x7b\x76\x67\xb5\x53\x62\x43\x3a\x12\xd1\x02\x88\xef\x40\x5e\x06\x9c\x3d\x1e\x18\x94\x76\xd5\x60\xa1\x1a\x6d\xf2\xc7\x6d\x98\x9b\xbe\x4d\xcc\x86\x87\x8c\x62\x9b\x7f\x67\x1a\xa2\x42\x10\xf2\x14\x51\xdc\xcc\xcb\xdd\x92\xdf\xcb\x46\xe3\x89\x7b\x01\xd5\x22\x81\x40\xef\x33\xa2\x1f\x7d\xd6\xd0\x5b\xf8\x4a\x70\x55\x99\xa9\xf5\xaa\x3b\xbf\xfa\x8d\xb0\x59\x79\xf5\x9b\x3b\x91\x5a\x16\x9a\xa4\xb4\x79\x6a\xaa\x89\xe4\xe6\x35\xda\x1a\xaf\x53\xc0\x8f\x4a\x85\x34\xc2\x29\x5d\x81\xdb\x20\xf9\x28\x9f\x66\xf1\xcd\xe3\x0c\x47\x54\xa1\x14\x2c\x0d\x78\x89\xca\x1e\xa8\xbe\x5c\xd5\xa3\xaa\xbc\xd8\x6b\x98\xec\x5b\xf0\x7e\x07\x5f\x20\x95\xbe\xd2\xe6\x85\xd8\x22\xe3\x4b\xb1\x54\x1e\x67\x81\xe7\xe3\xd3\x6d\x00\xfb\xfd\x8b\xdd\x97\x5f\x7e\x94\xb6\x62\xe9\x5a\x60\x5c\xc2\xb7\x04\x1b\xd2\x1c\x74\x42\x70\x45\x22\x2f\xa6\x93\xce\xbd\x52\xf5\xfb\xab\xee\x5b\x43\xbd\xea\x21\x63\xc5\x7d\x03\x03\x0a\xf3\xe4\xf7\xa3\xce\xd7\x7e\x4d\xc2\x96\x53\x32\x2d\x3c\x57\xc4\x37\xc8\x3f\x69\x23\x6a\x25\x59\x0f\xc8\x5c\x75\x83\xaa\x3e\x2f\xc7\xde\x5e\x66\x3c\x49\x12\x69\xa0\x23\xaa\x96\xe0\x54\x71\x3a\x54\xac\xf1\x41\xe0\xc8\xe4\x71\x29\x3a\xf4\x08\xe6\x01\xb0\x94\xe3\x16\xcd\xcd\xee\xc8\x38\x2e\x9b\x7b\x60\x0a\xc1\x23\x38\x1e\x73\xed\xb2\xd1\xd8\xf4\x4a\x6c\x47\x78\x84\xc0\x98\xca\x31\x91\x07\xed\xab\x63\x9b\x97\xc5\x9c\x7b\x27\x64\x6f\xa6\x4b\xc2\x23\xae\xb2\xc9\x04\x53\x24\x9c\xb7\x09\x96\xf1\xfa\xf6\xd7\xfc\x95\xee\xe1\x83\x7b\xc9\xc4\xe3\x1d\x42\x75\xbf\xd3\x4a\x22\x4b\xe2\x55\xbb\x1e\x17\x76\x26\x38\x2b\x5f\x60\x51\x42\xcc\x3a\x8c\x99\xef\x36\x16\xcb\x83\x7b\x83\xf7\x72\xa7\x3e\xa0\xbc\x0a\xf3\xc9\xe9\xa3\x21\x95\x8d\x8b\x67\x3b\xaa\xc9\xf5\x17\x9e\x22\x96\xd7\xf0\x89\xf9\x6a\xf0\xab\x9d\x8d\x9b\xf7\xd8\x2c\x2e\x4d\x43\x1b\xed\x2d\xd7\x46\xf3\x96\x41\x2f\x6a\x19\xe8\xff\x66\xec\x4f\x63\x24\x49\xd3\xfb\x30\xbc\x3b\xab\xaa\xaf\xb9\x7b\x66\x76\x29\x51\xff\x3f\xc3\xd4\xca\x23\x1a\x23\x5a\x02\x0c\xdb\x5a\x1b\x8e\xdc\xea\xda\x9d\xed\x06\xb7\xa6\x50\xdd\xec\xa6\x06\x06\x3c\x51\x91\x6f\x65\xc6\x56\x64\x44\x6e\x44\x64\x55\xd7\xc0\x1f\xf4\xc1\x36\x04\x0b\x30\x0c\x03\xbe\x64\x48\x22\x2c\x99\x96\x2c\x11\x24\x45\x52\x5c\x92\x5a\x46\x2e\x97\xcb\xbd\xb5\x33\x3b\xe7\xce\xb1\xd3\x3d\x7d\xdf\xd5\xf7\x5d\x6d\xc4\xf3\x7b\x9e\xf7\x7d\xa2\x22\x86\xf2\xa7\xc9\x9c\xae\xbc\x22\xde\xf7\x79\x9f\xe3\x77\x40\x4d\x09\xdb\x9c\x2d\x92\x50\x42\x4e\x4f\xa8\x44\xc0\xe5\x9a\xe9\x2a\x2a\xc0\xb7\x70\x72\x03\xd1\x00\x11\x4a\x14\x38\xf0\xa5\x46\x4d\x42\x95\xcf\x4b\xd8\xd1\xf7\x9e\xe9\xea\x2e\x21\x55\x31\xd6\xca\xce\x01\xcd\x76\x4e\x3a\x47\x9c\x6c\x1d\xad\x4d\x56\xac\x57\x1d\x8b\x41\x90\xf4\xc8\x86\x1e\x95\x58\x07\x88\x25\x14\x83\xef\x95\x75\xeb\x1b\x97\x8a\x5d\x02\xa0\xcd\x62\xd5\xed\x06\x7c\x9b\x2e\x91\xe0\xd6\x95\x53\xca\x75\x02\x6c\xf3\x87\x50\xd4\x41\x17\xea\xaa\xef\x80\xe8\x77\x6a\x89\xca\x6b\x94\xa8\xe0\xaf\x6e\x23\x51\xe1\x27\xb6\x49\x59\x98\x24\xa9\xee\xb8\x61\xc9\x3f\x9c\xef\xc7\xe9\x82\xe0\x72\x9e\x53\x8a\xb6\x27\x34\x6b\xe4\x91\x9a\xaa\x56\x79\x9b\xc9\xa6\x1c\x91\xea\x96\x42\x66\xfe\x9e\xaf\x40\x33\xb7\x95\x12\x52\x10\x66\x69\x0e\x37\x39\x44\xe7\x87\x8a\xd2\xbe\xbd\xeb\xfc\x96\x37\x29\x57\xb5\xdd\xd6\xea\x9a\x88\xc3\xbc\x3a\xd5\xdf\xb6\x1c\x90\x5e\xba\x96\x3c\xe3\x0c\x57\x9e\x9a\x54\x31\x4d\xac\x22\xe9\xf6\xb0\xe0\x70\xb9\xfd\x73\xb6\x3f\xd1\x11\xb3\xa4\x93\x90\xfa\xc0\x2a\xfd\xec\x44\x11\x6d\x3e\x0b\x13\x64\xf4\x81\xb8\x0d\x81\x4c\xf7\x6d\xba\x62\x74\x95\xd6\xfe\x83\xae\x92\x7b\x45\xdf\x8c\x56\xc3\xd4\x5f\xeb\x76\xbe\x74\x84\x5b\x03\xb7\x90\x4b\x48\x8d\x48\xeb\x17\x0b\x6d\x8a\xd6\x2c\xdd\xa8\xf7\x7e\xa1\xab\xc5\x82\x14\xae\x78\x94\x45\x09\x14\xe4\x95\x9a\x01\x7d\x39\xf4\xd7\x76\x4d\x5c\x8b\xee\xa9\x6e\x5d\x17\xc1\x0e\xb5\xeb\xba\x08\xcf\xd5\xcf\x25\x93\x17\xa2\xf7\x80\x81\x03\x38\x2c\xfc\x58\xf1\x4b\xa3\xb5\x80\xaa\x14\x6e\x5b\xe9\x41\x26\xae\x10\x3e\xec\x56\xe3\x98\x97\xf4\x7d\x2d\xa8\x45\xce\xe9\x2e\x99\x5e\xe2\x68\xfa\x0d\x35\xee\xb9\x8a\x2d\x23\xf8\xbf\xea\x33\x45\xc8\xf8\xd3\xd4\x65\xf3\x22\x58\x5e\x9e\x72\xcd\x14\x50\x9d\x51\x4f\x7d\x5c\xaa\xf6\x54\xab\x9f\xde\x6a\x5a\x48\x55\x69\xad\x57\x6c\xee\xd3\x94\x94\x25\x6d\x04\x93\xa5\x49\x30\x2e\xa2\x50\xd8\x22\x68\x6f\x30\x3e\x10\xe8\x1e\x5e\xb5\xc8\x4e\xb6\x77\xdd\xaa\x4d\xb3\x1d\x78\x91\xc5\x69\x59\x81\xd5\xc7\xbb\x4a\x0c\x13\x94\x1b\x85\xb7\x3d\xc8\xbf\x89\x19\x56\x68\xee\xde\x56\x27\x54\x6e\xb2\x28\x1d\xe7\x34\x3c\xc6\x72\xf9\x23\x05\x50\x46\x2d\x88\x60\xf8\x31\xe5\x0f\xe8\x5c\xde\xb4\x0d\xee\x51\x54\x14\xa4\xf8\x3c\x98\x72\x05\xc7\x69\x55\x10\xbe\xa5\xb3\x8b\x8d\x16\x09\xad\x79\x6f\x39\xcd\xd6\x82\x0c\x13\x0a\x06\x9f\xd1\xae\x41\xcb\x06\xb5\x29\x7e\xf8\x8d\x06\x60\x7a\xff\xbc\xf7\x55\x53\x4c\x39\xe8\xc1\x0d\xd5\x66\x7b\x0f\x9f\x8d\x44\xf6\xa2\x4a\xb0\xaa\x72\x22\x8d\xa3\x5e\x40\xf7\xd1\xa1\x7e\xcf\xd3\x67\xf1\x63\x2d\xde\x99\x92\x5a\x23\xd1\xa0\x31\xd8\xb6\xba\x8b\x76\xf4\x73\xbd\xc5\x4a\x7c\xe1\xa0\x17\xe4\x2b\x72\x6c\xe2\xbe\x9e\x42\xe8\xe7\x27\x56\xec\x60\x29\x4b\xd7\xb8\x2d\xae\x08\xd9\xd2\xe1\x3e\xab\x32\xff\xfb\x6d\x18\xdf\x30\x58\x11\xe9\x6b\xe4\xf3\xc7\x75\x35\xd4\x54\xf3\x3c\xb2\xe0\x65\x63\x61\xa3\x23\x71\xb9\x8a\xc3\x92\x9f\xd4\xc8\x0e\x51\xf8\x1a\xe5\x52\x92\x16\xd2\x65\x15\x7f\xe8\x96\x0d\x12\x8c\x7b\x11\x86\x9f\x6c\xb2\xe5\x3b\x96\xc1\x59\x15\x22\x4c\x55\xa7\x58\x24\xf0\x2e\x65\x4b\xf9\xd3\x1a\xa5\x43\x41\xfb\x77\x4c\x14\x2e\x11\xd6\xc7\xdc\x5f\xb5\xd9\x5f\x9c\xa6\xe0\xb3\x55\x7f\xc8\x6d\x6a\x0d\xd8\x7b\xb0\xc5\xc8\xd3\x1e\xd8\xe3\x61\x90\x70\xc8\xc1\x7a\x85\x78\x30\x76\x2a\x8c\x0e\x64\x9f\xd1\xc5\xe5\x3f\x9a\x38\x89\xc5\x4f\xda\xf4\x8c\xf2\xb5\x20\x8e\x9d\x42\xa2\x9d\xbf\xbb\x59\xbc\xf3\xad\xcc\x4c\xbe\x66\xe2\xb8\xe3\xe4\x49\xfe\x58\x23\x96\xfe\xb8\x35\xbf\xcb\xc7\xa3\x51\x9a\x8b\xe1\x19\x4e\xe1\xfb\xf4\xfe\xca\x5d\x62\xce\x72\xba\x5c\x7b\x72\x29\x2d\x06\x04\x79\x12\x93\x34\x25\xdc\xff\x13\xfa\xbd\x38\xd2\xee\xe8\xce\xd6\x65\xca\x37\x78\xfc\x47\xa3\x0d\xd5\xc9\x7f\xc5\x8a\xd6\xb9\x66\x30\x03\x7d\xac\xe6\x5d\x15\xac\xf1\x81\xb8\x74\x52\x2b\x3b\x89\x8d\x99\xee\x73\xca\x8f\x64\x98\xf6\xb3\x00\x18\x6c\xe7\xa8\x8c\xec\x5c\xda\xaa\x4f\x2a\x3d\xa2\x60\x38\xea\x58\xe5\xef\xef\xbf\x81\x86\x94\x10\xee\x5b\xe4\x1f\x56\xc9\x27\xf4\xf0\xac\xf5\x42\x71\x54\x81\x73\x1a\xa6\x16\xa6\x99\x01\xaa\x03\x7d\xf1\x8b\x94\xa7\x22\x68\x32\xe2\x46\x84\x02\xe9\x7b\x22\x45\xf9\x3a\x2d\x64\xfe\xab\x49\xdb\xd1\x30\x4a\xe3\xa8\x88\x14\xa4\x5e\x52\x98\xea\xa3\x84\x04\xb8\xf5\xb6\xef\x9f\xf7\x96\xa3\x24\x48\x42\xfb\x2a\x6c\xc7\x9d\x13\xb7\x4f\x77\x36\xea\x9c\x7d\xfb\xbc\xb5\x34\xb5\x2f\xb1\xac\x5a\x9b\x5c\x5d\x69\x00\xcd\xe6\x0e\x79\x85\x89\x0d\x51\xb1\x0b\x5b\xf2\x5b\x61\xcc\x79\xc7\x57\xa8\x7e\x27\x66\x20\xcd\x70\xb3\xf0\xf2\x41\x6f\x64\x10\x12\x70\x2d\xce\x2b\x83\xfc\x26\xe8\x60\x7e\xfe\x20\xe9\x6c\x4f\x51\x8d\x20\x8c\x2d\x57\x4e\xde\xf4\x95\x37\xe1\x87\xad\xde\x26\x5f\x0d\xe0\x0f\xed\xd4\xbf\xf1\x1a\x29\xee\x3e\xad\x69\x48\x99\x6f\x98\x76\x5c\x41\x72\x42\xef\xc0\x13\xbe\x1c\x7d\x3d\x53\x98\x6c\x18\x25\x02\xf8\x47\xdb\xec\xaa\x16\x86\xbf\x5a\xfe\xe2\xa7\x21\x70\x07\x59\x94\x17\xe9\x68\xc0\xd9\xb1\x15\xb8\xb1\x72\xcc\x9f\x68\x70\xcf\x5d\x85\x07\x0d\x07\xd5\x67\x1a\x4a\x8f\x75\xfa\x81\x63\xeb\x27\xd8\xaa\x82\xe3\x55\x00\xbf\x93\xa5\x33\x2e\x3d\xa5\x6d\x22\xfe\xc4\x3a\x92\x2c\x67\xe9\x6b\x26\x99\x51\x03\x7a\x6c\x33\xb4\x34\x1e\xd1\x1b\x80\xd7\xf6\x2d\x25\xeb\x71\x1f\xed\x1e\xfe\x23\x7f\x6f\xbd\x5c\xfd\x25\xaf\xaa\x56\x0f\x4b\x90\x3f\x81\x53\x86\x9f\xe8\x5e\x78\x16\x99\x04\xd2\x25\x2f\xb9\x3b\x7e\xe0\x80\x25\xef\x7d\xa6\x76\x7c\x87\x55\xda\x92\x90\x77\xb0\x95\xca\xfe\x19\xfd\xbd\x08\xe1\x89\x69\x67\xf8\x9a\x09\x07\x69\x1e\xa7\xab\xc1\x0a\x5d\x6b\x76\xe1\x40\xf5\x81\xf5\x74\x9d\x7b\x37\xe0\xb0\x9d\x6a\x6b\x0c\x53\x90\xb5\xee\x86\x62\x3d\x51\x7d\xb8\x88\x31\x3c\xa7\xad\xfa\x7a\xd1\x52\x14\x47\xc5\x3a\xad\x23\x94\x76\xe7\x94\xde\x9c\x46\xcd\x98\xa3\x47\xd3\x64\xca\x11\x68\xae\xd3\xbb\x62\x05\x1d\xd7\xd4\xdc\x53\xaa\x8f\xdc\x8b\x32\x13\x16\x48\xdc\x58\x07\x10\xc5\x82\xd0\xf0\x14\x4e\xe2\xc3\xd2\xf5\xaf\x6e\x34\x0c\xe5\xff\xba\x57\x64\x2c\x47\x86\xae\xc4\xb1\xd2\xd9\xa8\x1c\x53\xc8\xac\xa5\x2c\x4a\xfa\xf9\xb4\xd3\xe0\xb8\x41\xe9\x21\xea\x27\x3e\x22\x84\x35\x51\x1d\x11\x80\x3c\x5f\x53\x58\xb6\x7d\xc1\x1a\x05\x50\xb6\xdc\xd7\xaa\x63\xd0\x5c\x13\x73\x62\xdc\x0d\xe1\xa2\xd3\x52\x13\x93\xa5\xa6\xa2\xd3\x41\x6f\x69\x1c\xc5\x3d\x99\xdf\xa0\xc2\x7f\x1d\x67\x19\x3f\x51\x68\xfe\xd5\x28\x1f\x07\x71\xae\xc0\x84\x3c\x0a\x41\xd0\xbc\xa7\xec\xeb\x4f\xb6\x78\x64\xce\x79\xc3\x28\x93\xa3\x1c\xd5\xe9\x75\xa5\x5e\x75\x5d\x39\x2f\x10\x6f\xf2\x49\x4a\x2f\xed\x11\x67\xed\xe3\xdf\xf0\xd5\xf8\xf0\x1e\xc6\xa2\xf8\xf5\xe7\x30\x16\xe5\x27\x0a\x5e\xf1\x80\xd6\x0f\xca\xb5\x69\x0d\xf1\xfc\x84\xdb\x6e\x56\xe0\xba\xba\x13\xd6\x84\xad\xfa\xa2\xc2\x6f\xa4\xb3\x17\x07\x93\xb6\x58\x04\xd0\x44\x84\x91\x95\x43\x5e\xba\x64\x32\x11\x0b\x45\xdb\xe6\xb8\xaf\x69\x5f\xa5\x52\xd8\xf9\x40\x29\x11\x85\x51\x16\x8e\x63\x32\x01\xb7\x25\xdb\x27\xf4\xf5\xf9\xb1\xf2\x3c\x0b\x83\x3c\x0c\x7a\xf8\x4b\x2b\x7f\xea\xa8\x16\x8d\xc6\xe1\x8b\xde\x1a\x5c\x8a\x2d\xa7\xe6\xbf\x65\x21\x25\x5c\xcc\x1d\x24\x68\x29\x0b\xd1\x25\x12\xc1\x70\x29\x5a\x0d\x62\x43\x54\x34\x3b\x3d\xe3\x16\x3d\x3f\xa1\x86\x6c\x53\x1b\x20\x31\xe1\x0a\xa9\x27\x6b\x62\x6a\xa9\xe8\x9e\x97\x7c\xb1\x68\x1d\x8c\x21\xa7\x21\x63\x20\xad\xaf\xdf\xd4\xf9\x7e\xc5\x0b\xd3\x21\x6b\xe5\x00\x67\xc8\x3d\x5b\x7e\xa2\xe8\x1e\x51\x52\x64\x69\x6f\x1c\x1a\x04\x20\x14\x4a\x33\xe8\x03\xf0\x93\x89\x5b\x7b\xd1\x72\x94\xd4\x27\xcf\x6a\xa8\xad\xb4\x69\x8c\x19\x9a\xde\x0e\x05\xf4\xb8\xa2\xda\x3a\x57\x94\x0e\xcf\x69\xac\x2a\xea\x22\xbc\xff\x5c\x57\x09\xe9\x63\xd4\x84\x70\x71\x56\xa1\x7b\x73\x13\xa6\x49\x8f\xec\xcf\x05\x60\x44\x6f\x61\x7d\x70\xf6\xed\xe3\x45\x7a\x87\xae\x92\x85\x1a\xcf\x1d\xe2\xdb\x71\x46\x79\xb3\xde\x56\x8a\xc8\x97\x81\x09\xe0\x28\x42\x8b\x05\xeb\xf8\x4e\xe3\x12\xbf\xe8\x0d\xa2\xfe\x40\x14\x86\x19\xe5\xe6\x3b\x2c\xca\xe5\x46\xee\x70\xa4\xaa\x5f\x88\xc9\xd1\x71\xd9\xcd\x0f\x29\x3a\xf1\xe3\x16\xa9\x9a\x05\x6f\xd5\xf4\x03\xc8\x17\xa2\x5c\x60\x8c\x24\x3f\x69\xe4\x6f\x64\xb0\x6e\xcc\x28\x32\x79\x01\x07\x4a\xd6\xb1\x51\xf3\xe9\x56\x59\xf3\x74\xd5\x64\xb9\xa9\x3e\xca\xf6\x72\x21\x1d\xc5\x8f\x5b\xaa\x50\x2f\x0f\x86\xa3\x58\x76\x0c\xa3\x98\x34\x5b\xe7\x9a\xc2\x6d\x9d\xb0\x65\x94\x49\x7a\xf0\xe6\xb7\xd2\x19\x37\x94\xa8\xe8\x8d\x72\x6f\x83\xe5\x09\x90\x9b\x28\xc1\x2a\xe9\x8b\x8b\x8d\xf9\x39\xa9\xe7\xe7\x51\xcf\x4c\x3b\x5a\xcb\x69\xa5\xab\x84\xf1\x16\x46\xae\xb7\x94\xe9\xe7\x19\xed\x0c\x65\xc8\x7b\x19\x39\xe9\x16\x19\x6d\x1c\x7c\x0f\xd4\xbb\x9c\xb7\x5d\xc0\xa0\xd7\xcb\xa7\x6a\xde\xa1\x35\x53\x51\x47\x25\xba\xee\x7c\x1f\xd3\x5e\xaf\x53\x23\x3e\x55\x7f\xc5\x4f\xfc\x4f\xed\x32\x0d\xd2\xac\x98\xd2\xc8\x56\x5a\xd0\x98\x4e\x5d\xc7\x8e\x44\xff\xfc\x27\x2d\xa3\xfe\x45\x6a\xce\x48\xd0\x69\x63\x40\xd6\x54\x33\x82\x18\xe2\xd8\x42\xfc\xa0\x1f\x88\xfd\x35\x41\x8f\x57\x12\x6f\xc6\x66\xd3\xa6\x47\x90\xdd\x41\xd3\x11\x9c\x38\x37\x15\x24\x93\x61\x94\xb8\x98\xff\xc6\x57\xaa\x72\xf7\x6a\x60\xff\x0f\x69\x47\x89\x78\xa2\x23\x31\x9f\xf5\x95\x86\x27\x63\xec\xc5\xd2\x4d\x71\x0f\xd6\xc3\xd8\xec\x74\x46\x9f\x6f\x29\x4b\x8f\x73\x34\x2e\x13\xf7\x4b\xfa\x19\x88\x0d\x90\xa8\x02\xca\xe4\x06\x5a\xf0\xfc\x0f\xf8\x61\x32\xc4\x76\x4d\x9c\x95\x34\x5e\x32\x99\x22\x66\x9d\xd5\x4a\x82\x67\x95\x68\x3f\x29\xe2\xc4\x51\x32\xad\x95\x88\xee\xd0\x07\xa2\xa9\x75\x56\x19\x97\x9c\xd5\x78\x97\x3b\x8d\xd8\x70\x64\xc1\xcb\x4c\x9e\xc6\xbd\x8e\x92\x2e\xff\xc8\x57\xde\x6e\x1f\x95\xcf\x2a\x06\xf6\xd0\x90\xa5\x5b\x4e\xfb\x42\x14\xa4\x94\x86\x02\x00\x22\x98\x82\x7c\xa8\x66\xc0\x1f\xb6\x9c\x2e\xf3\xde\x6a\x1a\xf5\x3a\x9d\x5f\xfd\xb2\x75\xb1\xe8\x28\x77\x8b\xad\xcb\xf6\xc0\x01\x82\x4b\x67\xe1\x20\xe0\xa1\x3c\x50\x36\x40\xe2\xf1\xe3\xc9\xd3\xca\x4a\xc8\xac\x41\xf3\x67\xee\x10\x37\x61\x2e\x2a\x1c\xd4\x31\x80\x2b\xf9\x1f\x9c\x74\xe7\xdf\x3f\xa6\x3a\x10\xfd\x68\xd5\x4c\x6b\x0a\x3f\x56\x4c\x9b\xa8\x8f\x52\x15\x6e\x1b\xe8\x7b\xe3\x24\x8e\x56\x0c\xbc\xb4\x5f\x71\x06\x28\x76\xc3\x5d\x52\x94\x88\x30\x1d\x27\xb9\x01\xe4\xc7\x66\x3e\xa7\x94\x25\xf2\xa9\xb6\x88\xfd\xd5\x71\x2f\x0a\x2d\x1d\x97\xd1\x18\xbe\x3b\x64\x2f\xa8\x46\x3c\x91\xb3\xe4\x3e\xa2\x51\xc4\x83\x26\x0c\x25\x6e\xaa\xb3\xed\x8c\xda\x72\xef\xd8\xb3\x39\x33\xc3\x74\x15\xf1\x11\xb3\x04\xb6\x9e\x41\x4b\x00\xa8\xac\x9a\xe2\x88\xb3\x27\xb2\x07\x70\x66\x8a\x19\x7a\x91\x00\x93\x95\x54\x3b\xbe\x01\x7a\x37\xd0\x6d\xc4\xe3\x0d\x2c\x68\x29\xf1\x9f\xd0\x17\x6d\x84\xee\x98\x25\x79\xda\x8e\xed\x5d\x28\x13\x01\x89\x75\x1e\x91\x02\x03\x04\x50\xab\xf9\x1f\x1c\xe2\x2a\xcd\x8b\x2a\x8b\xd3\xea\x71\x67\x54\x5f\xae\xe9\xf0\x56\x9d\xcb\xb1\x24\xde\x8a\xcd\x34\x27\x4f\xb6\x9a\xcb\x1f\x59\xf8\x9c\xb7\x7f\x5e\xcb\x82\xa0\x83\xc0\x8f\x6d\xe7\x75\x25\x58\x1a\xc7\x74\x9c\x8a\x60\x90\x9a\xdf\x5c\x6a\x74\xac\xf7\xcf\x7b\xeb\xc1\x30\x88\xc2\x41\xd4\x71\xcb\x93\x47\x1a\xfc\xa4\x41\x20\x3a\x3c\xeb\xad\x05\x18\x9c\xd0\x1a\x90\xd0\xa1\xc2\x48\xdb\x76\x2c\x4c\x38\x48\xa2\xaf\x8d\xe5\x3a\x49\x7f\xa9\xa3\xe4\x0e\x1a\x36\x9f\x8b\x0b\xde\x28\x8d\x92\xa2\xd6\x96\xb8\xe4\x2b\x68\xcf\x25\x75\x53\xd7\xa2\x62\xf0\x97\xe8\xdf\x2c\xab\xdd\xe1\x13\x70\x53\x51\x80\x9f\x64\xaa\x35\x1a\x9d\xb7\x68\x1a\x89\x03\xf0\xb6\x92\xb1\xdc\x81\x99\x92\xa4\xc8\x1d\xab\x6b\x7d\x4d\xb1\x27\x6e\xfa\x9d\x5f\x11\x3e\xd3\xf7\xb5\x20\xf9\xae\x49\xe7\x4b\x47\xb4\xcb\xbc\xfc\xcc\x47\x9a\x42\xfe\x2e\x02\x0b\x96\xfb\x47\xbe\x13\xb3\x79\x15\x48\x32\x74\x78\xee\x62\xad\xb3\x76\x04\x90\x68\x0c\x90\xa5\x2c\x1f\x05\xc2\x0c\x0d\xd5\x78\x04\xe9\x6b\x4f\x22\x96\x29\x13\xc5\x0c\x95\x3b\x81\xfc\xc1\xc3\xa2\xc6\xad\x3e\x70\xc0\x5b\x32\x81\xe3\x77\xb0\x06\x53\xe9\x86\xb1\x27\x5b\x75\x6e\xc7\x59\x5f\x3a\xf8\x36\x93\xa9\x2e\x80\x34\x5d\x6d\x81\xb1\xf2\x39\x08\xcd\xa0\x8c\xbb\x58\x6e\xff\x1c\x2f\xe9\xa7\x68\xa7\x09\x23\x88\x2e\x2b\xc6\xb6\xdb\x26\x6e\x2a\x1d\x2e\x87\x39\xf5\x24\x2c\x1c\xc1\xa9\xe6\x5f\x6e\xe8\xcb\x54\xf5\x6e\x95\x40\x8f\xb2\xc8\x72\x23\xd1\x4d\xc2\x44\x82\x1f\x37\x7e\xd0\xfe\x79\x6f\x29\x1d\xf7\x07\xc5\x16\xc0\xc0\xbc\x7d\xfc\xa9\xfd\xb7\xcc\x50\x9b\x05\xa3\x10\x11\x54\x70\x09\xc1\x25\xad\x8b\x78\x4e\x61\xe5\x32\x53\x44\x19\x69\x95\xef\x70\x20\xb4\xfb\x8a\x73\x7c\xc7\x57\xf8\x53\x56\xc1\x40\xff\x0a\xc3\x06\x81\xb0\xd1\xfb\x8b\x5b\x59\xcb\xbc\xa9\x48\xd7\xa6\x9d\x76\xe1\x43\x5f\x19\x0f\x9e\xd0\x0d\x2b\x65\xe8\xf5\x9e\x62\x32\xe6\x63\xd3\x9b\x72\x45\xfd\x1d\x55\xd7\x6c\x94\xca\x03\x8d\x64\xd8\xe5\x35\xce\x9f\x70\x4a\xd9\xa7\x95\xaa\x09\x7a\xac\x11\x3f\xaa\x40\x40\x0e\xf1\xf1\xaa\xb4\x28\x71\x86\xb3\x04\x03\x3f\x71\x7d\x32\x85\xb1\x9b\x72\x44\x1e\xdc\x68\xec\x96\x47\x8a\x29\x76\x4d\xc9\xc4\xaf\x45\xd5\x59\x13\x84\x2b\x68\xab\xe0\x4e\x41\xdd\xd6\xa2\x79\x1d\xd8\xed\x8a\xea\xc6\x2c\x99\x20\x1c\x18\x66\x38\xb6\x85\x37\x7a\x9d\xa5\xc0\x38\x3a\x8c\xea\x2a\x0d\x83\x41\xc7\x0d\x7d\xb9\xa0\x17\xa4\xbf\x54\x33\xcb\xe9\x38\xb1\xec\x29\x8e\x68\xf8\x52\x12\xde\x5c\xa3\xcb\x8c\xfb\x86\x9d\xc0\x44\x4b\x42\x0d\x31\xdf\x6f\x74\x24\x5e\x7d\xd5\x2b\x4c\x1c\xd3\x6f\x07\x99\x13\x6c\xbf\xcd\x09\x15\xb3\xf8\x5f\x97\xe0\xd0\xc3\x6b\x60\x64\x32\xf2\x0f\xcf\x3b\x35\xbe\x8b\xa6\x73\x29\xa6\x4e\xb0\x62\xf2\xa7\xea\x1d\xca\x2a\x9a\x4a\xd3\x82\x6e\x27\x2a\x4d\xb8\x79\x60\x69\xfd\x5b\xed\xb5\x87\x11\x9c\xcc\x24\x68\x35\xb0\x34\x23\xe2\xa4\xb4\xd2\xeb\x4d\x51\x8a\xf8\xfc\xce\x13\x87\x2e\x67\xc8\xb1\x68\x75\xb8\xae\xdb\x36\x14\x0c\x16\x15\xe2\xfc\x28\xcf\x34\x66\xf1\x2f\x7a\x66\x38\x1a\x04\x79\xf4\x9a\x8d\x95\xac\x37\xa7\x18\x36\x6f\xb5\x89\xa2\x2c\x05\x71\x90\x84\x46\x99\x77\x8f\x7c\x57\xa5\x8e\xb6\xe8\xb4\x05\xbb\x1c\xf3\x1b\xa5\x05\xde\x7a\x43\x23\xa0\x6f\x23\x1e\xa0\x3b\xf5\xaf\x4b\x47\x06\xdb\x36\x71\x7e\x02\xd7\xe9\x76\x0a\xea\x4a\x11\xd6\xaf\x69\xac\x6c\x96\xf2\x72\xe6\x61\x38\x7d\x35\x9d\x1e\x4b\x46\x4c\x6f\x20\x13\xf3\xcf\x28\xf5\xbe\xbc\x88\x8a\x71\x11\xa5\x49\x10\xef\xa4\xeb\x69\xdd\x8b\xaa\xef\x28\x50\x1c\x0a\xdc\xd8\xc4\x8f\xd4\x30\xe5\x8e\x12\x60\x7d\x84\x1b\x2d\xa6\xb9\xf4\xad\xc4\x4d\xb7\xa5\x22\xcf\x4c\x31\xce\x60\x4a\x28\xde\x30\xca\x24\xe2\x84\xba\x76\x77\x5a\x44\x6d\x0f\x7a\xbd\x28\x1f\xc5\xc1\x3a\xaf\x69\x6c\xf6\x1f\x6b\xfd\xee\x1f\x7f\xaa\x13\xdc\x5a\x9a\xb9\x01\x18\xb2\x69\xf8\xf4\xf2\xe3\xae\xdb\x0d\x71\x50\x44\xc9\x8c\x9a\xec\xef\x60\x65\x49\x49\xa0\x15\xb7\x0c\xdf\x59\x9a\x69\xae\x04\xd9\xd1\x30\x56\x38\xf4\x32\x51\x94\xc9\x73\xa0\xe3\xac\x78\xd1\x25\x15\x0b\xbf\xa7\x1d\xad\xaf\x20\xcd\xa1\x29\xc7\x93\x66\xf5\x2f\xc4\xbb\x7b\x5a\x85\xea\x42\x9b\x8f\xfe\x72\xd4\x1f\x14\x74\xa9\xd1\x0f\xc6\x2d\x44\x84\x79\xa0\x22\xe7\x9f\x97\xae\xab\x0a\x22\x77\x1c\xaf\xef\xa9\x6e\x31\xe2\xc4\x26\x6e\xb1\x75\xa1\x3b\x2c\xde\x07\x77\x4a\xa5\xa8\x3e\xa5\x46\xeb\x6f\x20\xa6\x62\xb2\xcb\x9b\x00\x49\xfc\x6e\x65\xce\x74\x1d\xe9\x0f\xbf\xc4\x77\x72\x2e\x17\x6b\xdb\x6b\x9c\x14\x4f\x39\x6b\xd4\xed\x24\xdc\x8e\xc4\xee\x01\x9a\xcd\x22\x8b\x49\x1f\x23\xb2\xf7\x55\xfe\xc5\x74\x22\x1c\x9f\x08\x91\xa7\xd4\xfc\xe6\x0e\x27\x63\x48\x06\x99\x75\x24\xe9\x75\xe7\x88\x9c\xd0\x77\x94\x9d\xcb\x0d\x5f\xc9\x9b\x9c\xa6\x4b\xc1\x3d\x7d\x04\x22\x81\xa2\xbb\x11\xee\xb6\xee\xcf\x69\x82\x5c\x2f\xc2\xa6\x23\xc9\xa6\xea\xe5\xcc\xa5\xc7\x35\xc2\xbe\x07\xdc\x1d\xf8\xe9\xed\x13\x97\x47\xa7\x23\x93\xec\x76\x0c\xfe\xb7\x91\x70\xa2\x19\xf3\x31\x7e\x3d\xf6\xd4\xd7\x91\xa4\xf2\xbf\x50\x1c\x17\x2d\x2e\xba\x2f\xac\x0c\x80\x78\x64\x01\xce\x56\x4b\xe1\x8f\x4a\xdd\x5e\xf9\x0b\x04\x7e\x8a\x2c\x08\x01\x8c\x41\x9b\xe1\xae\x62\x9d\x9e\xd0\x72\x07\x57\x4a\x3d\x3d\x27\x3a\xe1\xbc\xa2\xdb\x56\xd7\x9d\x9f\xb4\x71\x33\x4c\x68\x04\x55\x8d\x01\xe4\x03\x3a\xa5\x39\x47\xf0\xb5\xd8\x81\xea\xf9\x57\xdb\xdd\x64\xf9\x63\x8a\x66\x76\x16\x4d\x1c\xc9\x2e\xb5\x04\xd2\x35\xd5\x6e\x41\x54\x60\xf5\x27\x0a\x75\x38\x9e\x00\x4d\x14\x93\x31\xfa\xd6\x96\x44\xbb\x28\xe6\xad\xbc\x2d\x6b\xc2\x4a\x3c\x41\xf0\xf7\x6a\x41\xc2\x30\xca\x4d\xbc\x4e\x45\xa1\x9d\xc3\xd8\x0e\xd9\x39\xd5\x83\x1c\xa4\x71\xbc\xbe\x96\xa6\xbd\x69\xb5\xdb\xb8\xcc\xae\x71\x17\xb1\x5b\xff\x54\x35\x60\x36\xec\xd8\x35\x0f\xb3\x60\x84\x51\x1e\x5e\x73\x4d\x6b\x17\x02\xf0\x68\xe3\x99\x3d\x1a\x3f\x54\x19\x42\x3f\x4d\x7b\x78\x03\x16\x02\xf2\x95\xa8\xc6\x09\x44\x02\x91\x08\x52\x0a\x1b\x27\x14\xbe\x21\x33\x61\x10\xc7\x4a\xc4\xfa\xaa\x12\xb1\xbe\x5a\x4a\xf9\x31\xfa\xe5\xe1\x94\xd2\x6d\x81\xc9\x3a\x80\x49\x8f\x94\x6b\xde\x39\x35\x08\xe8\x47\x3d\x93\x26\xd3\x35\xcb\x53\x17\xec\x7e\x42\xd5\x98\xed\xa5\x39\x0b\xce\xdb\x35\x0a\xe9\xb0\x18\x4e\x55\x77\x5b\x0d\x5f\xe6\x38\x3a\x01\xa5\xc3\x8e\x8d\xaa\x22\x10\x9f\x5d\x6e\xf2\x88\x50\x76\xc7\x5a\x48\x5d\x29\xf7\x2a\x98\xc9\xb2\x09\x0b\xea\x46\x39\xed\xe1\xbb\xda\xa0\xe3\x14\xb6\xb4\x95\xe5\x5b\x94\x8c\xf3\x61\x4b\xb9\x3f\x0f\x0c\x94\x88\x2a\xb1\x74\x4a\xa9\x9c\x14\xce\xa8\xd6\x64\x2f\x8b\x56\xd9\xa9\x14\xd7\xfb\x54\xa9\x34\xcc\x9b\xec\xb3\x2a\x07\xca\x8c\x79\x0d\x29\x90\xcc\xa2\xe9\xcd\x65\x18\xfd\xbc\x72\x06\x30\x61\xb4\x1c\x55\x77\x77\x7d\x86\x0a\x7a\x6e\xa7\x62\xce\x28\xbd\x55\xb7\x83\x6f\x28\x59\x0d\x2e\xcf\x71\x16\xdd\xf9\x74\x23\xb3\x34\x2f\x22\x98\xa7\xb7\x8e\xd5\x84\x88\x01\x65\x9e\x2c\xb5\x15\x09\xce\x2d\x96\x5e\xe3\x27\x75\x4f\xd4\x51\x8c\x5f\x89\x23\x8a\x81\x36\xfc\x64\xf2\xa4\x9d\xba\x25\x7d\xea\xcb\x59\xd2\x0f\x23\x1e\xf9\x89\xb2\xd5\x09\xd3\x64\x39\xca\x86\xb9\xea\xf8\xe0\xec\xe5\xc7\x6a\xe1\x8e\xb3\xbe\x0c\x95\xb9\xe9\x46\x7f\x28\x0d\x38\x27\xc6\x18\x84\x5f\x1b\x47\x99\xe9\x3d\xe6\xc4\x9f\x7f\x46\x71\x1a\x31\xfb\xfb\xfa\xe7\x3d\xd4\xb5\xc4\xee\x2e\x1d\x06\x40\x66\x61\xbc\x82\x23\x6b\xb3\x54\x4e\x3a\xe7\x4a\xd5\xfd\xd8\x8e\x0e\x8b\xb5\xa9\xb5\xf8\xab\xef\xd2\x2d\x14\xf7\x6b\x05\xb2\x8b\xb2\x5d\x8e\xae\xf5\xfd\x52\x0f\xe4\x5c\x33\x7c\x52\xd7\x4e\xed\x68\x15\x0b\x25\x87\x5d\x2a\x8e\xd9\x0c\xbb\xc4\xd0\x51\xf6\x0f\x7e\xbe\xeb\xb0\x1c\x90\x4e\xcb\x31\xfa\xd0\xb2\x85\xd2\xeb\xa2\xdd\x8b\x58\xf7\xe7\x9f\x2a\x72\xf2\xd5\x00\x8d\x56\x14\x68\x67\xb5\xa6\xf4\x59\x85\xb3\x5f\x1e\x27\xbd\x3d\xd5\x9b\x5b\x2f\xa8\xfd\x12\x06\xef\x95\x6a\x33\x7f\x13\x67\x19\xb2\xef\xed\x13\x17\x88\x77\x60\x9a\x29\x67\x3a\x5d\x5e\xc9\xa7\x94\xf6\xf8\x37\x4b\xe5\x2e\x8e\x5f\xc0\x2f\x69\xe0\xac\x0e\x1c\xf0\xaa\x24\x42\x10\x79\x96\xde\x62\x5d\x6b\x19\xa5\x23\x1e\xb1\xcf\xe8\x22\x95\x08\xb8\xd3\x2e\x4a\x7d\xa0\x04\xcc\x6f\x94\x0a\xfd\x28\x9e\xa5\x42\xe6\x72\xd3\xdf\x51\x9a\xf4\xf2\x29\xd7\x9d\x7c\x13\xe9\x93\xf5\x90\x52\x44\x2d\xb7\x31\xe2\x60\x9c\x84\x03\xd3\xdb\xa1\xe8\x78\xa5\xca\xce\xce\x69\x4c\xbd\xa8\x0d\x59\xd7\x9d\xc5\xd9\x1a\x85\x4f\xca\x60\xd7\x23\x20\xcf\xf2\x88\xa6\xe8\x78\xa9\x5d\x0b\xd5\x47\x48\xfc\x57\xc6\x5b\xd4\xcf\xe1\x69\xb7\x18\x29\x76\x94\xc3\xa2\x22\xb6\xa7\xe3\x8c\x27\x7a\x72\xbe\xd0\xef\xc5\x4e\x04\x21\x0f\x5f\x6e\xba\xab\xe6\xd3\x83\x94\x1a\x16\xd6\x36\x15\xce\xbf\x58\xae\x5c\xf1\xe3\xd2\x36\x99\xc5\x8b\xb3\x2c\x69\x6b\x61\x83\x38\x10\xd8\x77\x8e\x96\xa0\x90\xb7\x1d\x72\xab\x1f\xc5\xc3\x94\x25\x05\xb9\x4d\xe7\xbb\xd9\x79\x3d\xb1\xce\x4d\xef\xf9\x2a\xcd\x45\xbb\x03\xb6\x74\xa2\xb2\xa2\xb5\x6b\x40\x68\xc5\x1e\xde\xdd\x55\x2c\xc2\xce\x84\x22\x08\x2b\x25\x21\x19\xc7\xef\xbc\xed\x3b\xa8\xf6\x5f\xc1\xbc\x13\x87\x00\x9c\x2f\xd0\x61\x80\x62\xb2\x28\x5f\x3b\x9a\xc5\xf5\x52\xcd\xda\x18\x99\x4b\xc1\xf8\x37\x7f\xae\xab\x5c\x55\x01\x0c\x15\xc0\x72\xe7\x2b\x73\x56\xef\x84\xee\x8c\x9c\xbf\x4a\x89\xf4\x3c\x35\x9e\x85\xd0\x58\x53\x79\x72\xc0\xaa\x61\x50\x84\x83\x61\xb0\x22\x3a\x29\xec\x27\x88\x14\x4b\xea\x13\x77\x26\x7e\xac\xf0\x65\x90\x51\xcc\x76\x3b\x64\xed\x95\xb2\xf3\xc2\x0b\x6e\xb0\x6a\x7f\x2e\xfb\xca\xda\xe1\x9b\xe3\xe6\x3e\xf0\xd5\xd0\xf4\x31\xca\x44\xb1\x01\xd0\xa1\xc4\xe5\x9d\xe9\xd2\x98\x52\x86\xb4\x2d\x4b\xc7\x1c\x65\x74\xb4\xd2\xa5\x5f\xb0\x6d\x43\x09\x06\x41\x9e\x47\x79\x61\x1b\x1d\x08\x22\xf0\x7c\xe6\xc7\x6d\xd4\x4c\xd1\xb8\x02\x4e\x13\xdf\xe8\xae\x1a\x83\x5f\x56\x5a\xed\xa7\x5a\x80\x93\x73\x5e\x8f\x30\x21\x35\x26\x9c\xa2\x73\x5e\x51\x3e\x03\xe9\x30\x89\x3a\x0a\xee\x78\xa9\xd6\xa7\x75\x4a\x97\xcb\x41\x68\x76\xd2\x02\xb4\xa6\x6a\x36\x61\xbb\x4e\x7b\x85\xff\x7f\xcd\x79\xcd\x77\xa0\xc1\x2b\xca\xa1\x18\x3c\x72\x91\x67\x92\x8b\x15\x47\xcb\x26\x2f\xd6\x63\x93\x23\x7f\x43\xe6\x74\xbc\xd4\xec\xc9\xb7\x4a\xd5\x53\xbe\xa4\xb9\x01\x0f\xd4\x34\x7a\x94\x45\x43\xb3\xab\xf3\xab\x5f\xb6\xa2\x99\x1d\x2d\xc8\x63\xe5\x72\xde\xa4\x15\xce\x8f\xeb\xc2\x9a\x5b\x99\x9f\xfc\x62\x5f\x33\x3f\x1d\xfc\x6f\x60\xe2\xe8\x28\xdd\x62\x80\x04\x98\x0d\xce\x4f\x5a\x25\xef\x07\x29\x89\x3e\x4e\xb9\xe1\x26\x6e\xb1\x3d\xd6\xf7\x5b\xcd\x41\x95\x4c\x7d\x35\x8d\x12\xd3\xa3\x93\x05\x5b\xe5\x18\xdd\x57\x24\xec\x77\x6b\x2c\x50\x5f\xe5\xbd\xdf\x56\xa5\x51\x95\x3c\x99\xcc\x18\x96\xeb\x44\x9f\xf1\x1a\x0e\x43\x7e\xa2\x35\x92\x62\x16\xf6\xb4\x50\x63\xc5\xe3\xba\x62\xbb\x29\xa3\x8c\x48\xee\x82\xe3\x50\x39\x8f\x74\x04\x1f\xf8\x0e\xb7\xe9\x84\xb4\x82\x24\x49\xc7\x49\x68\x7a\x8f\xd5\xf8\x3f\xca\x49\xe5\xdf\xe2\x47\x21\xda\xdc\x2f\x1d\xfd\xea\xc8\x5f\x46\xb0\x52\x34\x2b\x29\x79\xef\x2b\x60\xfe\xdb\xb4\xdb\x30\xe5\x3a\x87\xc0\x87\x03\x01\xf7\x15\x2b\xe9\x11\xe9\x2c\x8b\xaa\x82\xbb\xaf\x6b\x59\x9a\xf4\x77\x76\xec\x68\x9b\x95\x89\xf0\x6e\xa8\xc6\xa5\x49\xed\x78\xaa\x50\x29\x92\x57\x28\x45\xa6\x13\xf8\x78\xf9\x91\x1a\xfa\x11\xe5\x2b\xb8\x02\x58\x7f\xf0\x5a\xc6\xc0\x95\xbb\x43\x5c\xc0\x50\x78\x67\xbb\x39\xfa\x01\x56\x84\xd4\xf1\xd2\xae\xfa\x8a\x3f\x79\x15\x89\x27\x5e\xc2\xe3\x6b\x1c\x56\xbf\x4d\x57\x86\x5b\xbb\x7e\x6d\xd2\xd6\x86\x72\x5b\x36\x71\x41\x09\xb7\x20\x61\x15\xfd\xf1\x9c\x5d\x08\x3d\xd3\x8b\xc2\xa0\xe0\xb6\x1a\x3a\x01\x1b\xbe\xa2\x80\xb1\xeb\x85\xd0\x38\xb6\xf6\xf0\xf6\xcd\xb1\xfb\x9c\xed\x24\x4a\x0c\xef\x58\x6b\xb3\xa6\x87\x02\xf1\x55\x0a\x70\x0c\x24\xee\x61\x53\xdd\x54\xe8\x81\x9b\x76\x92\x40\x52\x99\x51\x48\xdf\x91\xae\xf8\x2f\x3c\xad\x04\xc3\xee\xeb\xae\x42\x67\xd2\x26\xe2\x8f\x09\x97\x7c\x94\x35\xa3\x57\x03\x12\x8d\x8e\x4c\xb3\x6c\x3c\x2a\xa6\xf5\xdd\xf7\xb5\x1e\xf6\x45\xa0\x62\xd4\xea\x5f\xb0\x67\x45\xd3\xa5\xd7\x1b\x9a\x62\x5a\x87\xec\x52\xf1\x80\xd1\x9d\xc0\x5d\x61\x43\x1d\xc4\xdc\x8e\x52\x6b\x19\x99\x38\xe8\x99\x60\xac\xf4\xf3\xd9\xee\x85\x9f\x28\x20\x8d\x39\x1a\xf1\xd0\xfb\x88\x55\xc0\xda\xf0\x5d\x74\xda\xa8\xad\xe3\x78\xd5\xe0\xd4\xc2\xc5\x3b\xa1\xfc\x8d\xa0\xf4\x88\x72\xff\xb8\x0b\x1c\x71\x50\x2c\xa7\x55\x2d\x47\xbf\x08\x4d\xb1\x0f\x95\x12\xf0\x87\xb5\xf7\x4f\xc7\xc5\x5f\xa6\xf7\xe7\x42\x01\x2b\x5d\xac\xbc\x69\x88\xc2\x3c\x3c\xc0\x71\x79\xe3\xf9\x4e\x73\xe8\x18\x35\x99\x2c\x81\xe1\xf0\x2c\x47\xe9\x4d\xec\x5a\x56\x2c\x42\x5d\x2d\xdb\xb6\xfa\xb5\x78\xdb\xb7\x70\xdf\x36\x37\xca\xce\x17\x7f\x8d\xdb\xbe\xdb\x27\xca\x85\x0c\xca\xe4\x68\xdf\x6e\xfa\x6e\x4d\x9d\xf0\x15\xf1\xe5\x07\x38\x1e\x84\xac\x47\x49\x1e\xf6\xf7\x76\x32\x56\x47\x55\x75\x0b\x5d\x46\xe1\x66\xa0\x50\xb3\x2c\xc3\xea\xce\x8a\x31\x31\xdd\x1a\x74\x02\x77\x4e\x5c\x1d\x7c\xdc\x57\xae\xc1\xef\xa8\x40\xf4\xd0\xb6\xad\xb2\x71\x4f\xec\xed\xb9\x90\xa1\x3b\x26\x45\x4d\x9b\x40\x76\x50\x0c\x0c\x79\xa5\xf0\x2d\x13\xd1\x37\x77\x26\x5d\x54\x29\xdb\x52\x96\x06\xf4\x09\x8b\xb3\xd6\xcd\xd0\x71\xce\xaf\x95\x4a\x66\x7f\xd5\x64\x62\xa6\x23\x5e\x29\x9d\x79\x67\x75\xa8\x90\xc9\x69\x52\x18\x9a\x04\x56\xb7\x95\xf1\xf1\xb4\x24\x05\x2b\x2f\xab\x2b\x34\x59\x11\x2d\x47\xb2\x4f\xb1\x02\xfe\x65\xe9\xe0\x57\xff\xd2\xea\xfc\x07\x59\x7f\x3c\x34\x09\xda\xad\xb8\x67\xe8\xa5\x8b\xf5\x15\x9c\x50\x9b\xde\x08\x5e\x62\xa2\xfe\x60\x29\xcd\x06\x69\xda\xe3\x99\x37\x36\xef\x03\x45\x94\xbe\x58\x3a\xc0\x41\x53\x78\x7c\xe1\xe5\x83\x5e\x38\xa8\xf2\xc4\x38\x4e\xd9\x99\xc1\xf2\xd7\xe7\x9d\x67\xbe\x3b\x97\x93\x71\x96\x23\xa9\x14\x9b\xa0\x8e\x55\x08\xbc\xa1\xd5\xab\x82\xa4\x0f\xd5\x13\xab\xdd\x5f\x2d\x56\x0b\x08\x56\x8e\x96\x7e\x8d\xff\x54\x2d\x63\x09\x48\xd2\xfa\xc9\x0b\xb3\x16\x64\xbd\x7c\x10\x8d\xf0\x1d\x2d\xd1\xcf\x91\xfe\x94\xbf\x45\x92\x66\xc3\x20\x8e\xd7\x77\x38\x7c\x68\x47\x35\x42\xef\x96\xca\xd5\x96\x1b\xf4\x96\xda\x52\x7d\x49\x46\x46\xf9\x0e\xc6\x76\x46\x73\x93\xe3\xfc\xb1\x6a\xb3\xd4\x4c\x35\xd9\xfa\xaa\xee\x28\xe3\xcc\xe2\x58\xf9\x03\xc7\xc1\x2f\x72\xed\x8d\x8f\xd9\xde\x75\xcb\x12\xa9\x01\x81\x03\xfe\xea\x2f\x4e\x28\xaa\x88\x6e\x1c\x5d\x4a\xdc\x8e\xbf\x82\x3e\x16\x2a\xba\xa7\x26\xcf\xd7\x1c\xfe\xd2\xa4\x88\x92\xb1\x2c\x3c\xae\x00\x4b\xc7\xaf\xfa\x48\x91\x32\x46\x69\x94\x8b\x9e\xa2\xd5\xa2\x76\xf2\xec\xa5\x82\xc6\xde\x53\xf0\xb4\x95\xa0\x6f\xd6\x83\x61\x30\xe3\x98\x21\x30\xdc\xc1\xd7\xfb\x03\x0a\x5b\x7c\x41\x7d\x77\x0b\xde\xc7\xc5\x91\x2b\xdd\x06\x5a\x1d\x65\xe9\x32\x97\x37\x12\xf6\xaa\xcf\x90\x3b\xf5\xb4\xf2\x71\xa7\x89\xfc\x74\xb5\x0f\x51\x37\x77\xba\x6e\xd6\x0a\xc1\x0e\x8c\x95\x4e\x61\x75\xf1\x13\x0b\x50\x0e\x07\x81\xd3\x85\x12\x41\x26\x47\x57\xfa\xc8\xdf\x1d\x79\xa3\xcc\x2c\xff\x2d\xef\x85\x67\x71\xb7\x70\x51\x4e\x94\x6a\x48\x7d\x13\xc7\x27\x0d\xc6\x9f\xfd\x1c\xe0\xf4\xd8\xde\x17\xd1\x82\xb3\x77\xf5\x85\x17\x70\x3c\xff\x17\x7b\xbb\x74\x57\x91\x55\xee\xe8\x3a\x9a\xd6\xff\xf2\x2c\x34\x1e\x78\xe0\x4f\x65\x2f\x86\x4e\x8f\x77\xdd\x9c\x07\xd5\x0f\x9a\x88\x4f\x4e\x3a\xf3\xf3\x0f\xff\xee\x67\x48\x2c\x15\x09\xcf\x03\xdf\x49\x3d\xbd\xe9\x3b\xc4\xc3\x36\x9c\x14\x28\xdb\x9f\x9a\x38\x09\xf4\xc7\x29\xec\x23\x7a\xee\xed\xba\x42\x26\x09\xa2\x55\xc0\x38\xd9\x1a\x54\x89\x1b\x1d\x6f\x81\x89\x1f\xf4\x8a\x2c\x1a\x31\xf6\x43\x84\x46\xe9\x33\x91\xd9\x9d\x57\x2a\xde\xa7\x14\x39\x42\xec\xaf\x76\xd0\xb1\x27\x6a\xa8\x74\x82\x5a\xd4\x61\x75\x21\x11\x8b\xdf\xc4\xa9\xcb\x9a\xd1\x74\x29\x44\x3f\x5a\xf9\x0b\xbe\xd9\x36\xf6\x4f\xd2\x61\x94\xb0\x52\x2b\xb2\x17\x18\x19\x41\x1f\xe3\xae\xe2\x89\x7f\x58\x3e\xe6\xfa\xbd\x9f\xeb\x38\xda\x0c\x86\x41\xfc\xd8\x1e\x64\x61\x90\x17\x31\x3b\x24\x31\x56\xa8\x86\x1b\x92\x22\x73\x98\x26\x14\xe6\xd9\x33\x4b\xf4\x0b\x5c\xe9\x76\x4b\x8d\xd2\x86\xc6\x14\xa0\x8b\x8a\x3e\x71\xf5\xd1\xf6\x70\xfa\xe2\xaf\x69\xd5\xb8\x57\x18\x28\x7f\xac\x54\x47\x40\xb3\xdd\x5e\x85\x7a\xf3\xb5\x31\x68\x2c\xd8\x63\xd8\x14\xf0\xe8\xe4\xc7\xca\xfe\x32\x8c\xa3\x21\x3b\x84\x2c\x88\x67\x1f\x7d\x5f\xf1\xef\x73\x82\xd7\xc4\x7e\xee\x38\x9e\xf6\x77\x95\x90\xe5\x77\xad\x1a\x4f\x7f\x6c\x72\x1c\x73\x08\xaa\x0f\x95\xf8\xc3\x4d\xc0\x05\x05\xbe\xe4\xea\xff\x15\x63\x46\x4f\xb9\xa0\xa4\x11\xe6\xec\x2a\x29\xde\x68\x8a\x38\xfb\xcf\x4a\xa5\xc4\x72\xa5\xac\xf6\x92\x15\x51\x3c\x3c\x6b\xf5\x56\x68\x69\xf1\xcb\x71\x0c\xd8\xae\xe9\xdc\x21\xde\x71\x27\x7d\xd7\x49\xbb\xa4\xe0\x11\xdf\xa9\xa9\x99\x6f\x68\x7e\xe8\xa3\x52\xc9\x4c\x37\xad\x3f\x0f\xcf\xce\x79\x59\xd4\x1f\x14\x84\x04\x43\xfb\xfe\xbf\x29\x5d\xfb\xfe\x9d\xd2\x91\x3a\x1f\xf9\x4a\x62\xed\xae\x02\x7b\xf7\x4c\x6c\xfa\x90\x5b\x74\x9a\x05\x5c\xfd\xcb\xbc\x52\x08\x08\xc3\x20\x2b\x30\x41\x43\x65\x76\x42\x35\x16\x1e\xd0\xca\x12\xd3\x55\x75\xae\xec\xee\xd6\xd2\x6b\xd3\x9f\x56\x94\xf8\x37\x4b\x05\x09\xe3\x12\x4e\x0e\x4a\xd7\x20\x7e\xb3\x51\x43\xbc\xe8\x0d\xd3\xbc\x98\xa6\x5b\xcd\xa6\x4a\x5d\xda\xf9\xc2\x51\x74\x65\x5e\x6d\x4a\x77\xa9\x14\xa0\x59\x4e\xe0\xdf\x95\x74\x35\x0a\x07\x1d\x5d\xd8\xd7\x72\x88\xad\x65\xe4\xfe\x79\x4f\x29\x7f\xe1\x93\xef\xe2\xd2\x5a\xaa\xea\x3e\x29\x14\x3f\x51\x0e\x12\xcb\x26\x4b\x82\xa4\x97\xd2\x47\x09\xc9\x4a\xc3\x42\x9c\x29\xd7\x28\xc8\x3a\x8e\xfb\x08\x7f\x51\x7e\xdc\x4a\xfa\x21\xb4\xcb\x94\xd2\xa0\x7c\xa7\x64\x4f\x2f\x2c\x2c\x19\xc6\x3c\xa3\x2d\xc5\x4c\x3f\xcd\x40\x0b\x6d\xb3\x54\x7f\xdc\x4e\xb4\x86\x92\xcc\x71\xd7\xb6\x74\x2d\xc6\xdb\xb6\x04\x0a\xa3\x7e\x90\x99\xa2\x30\xd3\x6e\x4f\x02\xa2\xa0\x54\x24\x04\x54\x70\x4c\xa7\x6c\x4d\x10\x3d\x09\xbb\x2d\xb3\xab\xb7\xc3\xf1\x9f\x55\xb8\x99\xb3\x2d\x94\xa4\x79\x2f\x33\x81\x93\xd5\xc7\x3a\x84\xef\x05\x3f\xee\xba\xa6\xc8\x72\x9c\xae\x81\x52\xc4\x2a\x42\xbe\x9b\xed\x9d\x53\x8d\xde\xbc\x88\x86\xe3\x98\x37\x87\x55\xac\xc5\xc0\x4a\x4c\xa7\xb7\x62\x89\x16\x67\xbd\x71\x62\x8e\x8e\x4c\x58\x98\x1e\x4f\xef\xb9\x7e\xa1\x9f\x20\xb5\xcc\xf3\x75\x9c\xf8\xe1\x59\x52\xea\x98\x56\xea\xab\xbe\x1e\x5c\xd1\x6b\x6b\xd6\x59\x32\xd1\x6a\x91\xca\xcf\x07\x51\xc6\x9e\x65\xda\xcb\x4d\xdc\xf9\xdc\x78\xa3\x48\x29\x1b\xee\x38\xca\x01\x0b\xf7\x8b\x06\x5d\xcb\xcc\x37\x2f\x4c\xd0\x5b\xc7\x06\xb0\x0d\x49\x2b\xe3\x0f\x24\xa9\x74\x3c\x5a\xa8\xff\x3d\xb3\x4a\x22\x60\x87\x67\xad\xf2\xa6\x9b\x0b\x9e\x57\xf9\xe5\xef\x37\xc0\xf7\xd5\xab\x23\x19\x67\x69\xd3\xcf\x1a\xb3\x0f\x55\x02\xe9\x3f\x59\x6e\x67\x36\x32\x05\x24\x16\x11\xd6\x07\xbc\x35\xf8\x99\x63\x9b\x0d\x97\x82\x3c\x5f\x9f\x51\x39\x32\x62\x1c\xb0\x3d\x9b\x38\x27\x04\x19\xed\xb8\x3f\xa7\xb5\x5a\xcf\x7b\xbe\x25\x6c\x05\xf9\x0a\xdd\x51\x2c\x2d\x26\x88\x0a\x7b\xcb\x25\x42\x4f\x74\x5d\x3b\xfc\x52\x8d\xeb\x90\x25\x8f\xd1\xd9\xc2\x74\xc5\x52\x89\xa3\x00\x07\x68\x79\x8c\x87\x67\x6b\xa3\x07\xf4\xf1\xb7\x4d\x28\x28\xda\xb1\x69\x15\x2e\xc5\x52\x58\x69\xe9\xc3\x59\xc5\xb9\xa1\x59\x57\x09\x2d\xae\xe6\xef\xe1\xdb\xe1\xbd\xf0\xc2\xf3\xf4\xa5\xac\x2c\xd6\x57\xe6\x2c\x59\x10\xd7\x15\xff\x72\x81\x62\xa1\x08\x30\x3a\x3c\xcf\xc7\x38\xe3\x10\xf9\x36\x7c\x25\x61\xc5\xea\x2f\x76\x22\x51\x9d\x7e\x62\x0c\xec\x20\x1e\xef\xd2\xaf\x65\x78\xa9\xef\xb6\xf1\x47\xd4\xdb\xc6\x9a\xbc\x06\x0f\x04\xab\x68\x60\x0b\x89\xff\x19\x2d\x05\x01\xd3\x75\x2c\x4f\x80\xc9\xea\x4a\xbe\xfa\x25\xce\xbd\xfe\x4f\xbf\xf3\xa5\x23\x16\x11\xab\x8c\x2d\x2e\x2a\x87\xe0\x70\x9c\x17\xe9\xd0\x64\xf9\xd3\xd5\xf5\x63\x53\x06\x05\x08\xbd\xa5\x63\xe0\x77\x4b\xa5\x9c\xf5\x00\x77\x15\xb5\xc9\x0d\xc5\x82\xdc\xdd\xa5\xcb\x2c\x4a\x75\xd5\x6f\x10\x99\x4c\xfa\x76\xa8\x1b\x11\xed\xb9\x71\x00\x1f\x47\xa7\x76\x75\x58\xf2\xf3\xbb\x18\x66\x21\x80\xde\x21\x67\x24\xcb\x9e\xae\xae\xb2\x53\xcc\x76\x8e\x12\x2e\x83\x8b\x4d\xd2\x13\x1a\x11\x76\xaa\x1e\xb0\xde\xa6\x9d\x60\xab\x58\x27\xc2\x76\xb3\x0d\x73\x58\x0c\xb2\x74\x8d\xc2\x29\x12\xcc\xf7\x94\xe0\xe2\x7b\x8d\x3d\xff\x79\x2f\x31\xab\x26\x03\x3b\x4b\x9a\x0f\xd5\x97\xc4\x71\x8b\x91\x97\xc8\xd0\x2a\xf3\xb8\xd7\xb7\x0a\x16\x1e\x38\xe0\xed\xdb\xf7\xbc\x42\x76\x9e\xd0\xee\xd2\x17\x7d\x87\xa4\xb9\x59\x2a\x45\x80\x1b\x34\xe8\x61\x67\x54\x2c\x1d\x51\x50\xae\x16\x85\x10\xc9\xe9\x46\x59\x69\xa5\x23\x8e\x8a\x86\x8e\x1e\x47\x37\xec\x39\x9c\x1c\x27\xe8\xc0\x15\x45\x18\x87\xeb\x3a\xae\xfc\x97\xa7\xbb\xaa\x39\x7b\x42\xa9\x99\x1f\xa7\x75\x8b\x6f\x05\x0f\x75\x80\x66\xde\xaf\xe5\x92\xdb\xa1\x7a\x88\x0d\x7f\xad\x54\x18\xef\xce\xe4\xaf\x36\x71\xfa\x9f\xf3\x4c\x52\x64\x66\x94\x99\xc4\x8c\xb3\x88\xeb\x0b\x5e\x7d\xbe\xed\x27\x9c\xb8\xa4\xca\xe7\x74\x5c\xe4\x51\xcf\xec\xae\x59\xf0\x39\x52\xf0\x77\xfc\xce\xe2\xc2\x26\xaa\x68\x64\xc1\xd7\xea\xae\xa2\x56\xe1\xf5\x69\xb2\x30\xc3\x92\xfc\xd8\xaf\x99\xf8\xd5\x6c\xf5\x9a\x27\xff\x82\xb7\x64\xe2\xc8\xac\x72\x7d\x61\x8d\x6f\x17\x94\x41\x98\xeb\xb9\x1c\x2d\xd6\xa7\x3a\x73\x87\x36\x37\x28\x36\x09\x30\x87\x3e\x42\x8c\x37\x9b\x32\x30\x0b\xde\x38\x17\xac\x90\xf8\xc8\x38\xcd\x20\xa7\xf8\x39\x8a\x83\xbc\x88\x42\xb8\x4d\x5b\x15\x5b\xdb\x55\xfc\x85\xae\x45\x9f\x9c\xff\x79\xeb\x66\x17\x47\xc4\x75\x50\x5f\xfe\x5f\x29\xb5\x9e\xd3\xaa\x91\x7c\x52\x17\x76\x2f\x2c\xa5\x6b\x35\x3e\x56\x3d\x71\xdd\x5a\xb9\x1e\x7a\xd9\xcb\xc7\xd9\x72\x10\xc2\xe3\x90\x05\x7f\xd5\xc0\xf8\xb7\xb4\x07\x48\x51\x04\x9c\x15\xdb\x61\x9e\x1b\xec\x29\xf7\xc0\xd8\x04\xbd\xc7\xdc\x0c\xe7\xac\x96\xdf\x60\xf1\x77\xdc\xb8\xdb\xa5\xce\x91\x7d\xc7\x74\xb9\xae\x88\xf3\x30\x72\xe3\x17\xe0\x24\x40\x53\xe8\x22\xb6\x94\x3d\xb9\xaa\x5f\x8d\xe2\x62\xc3\x77\x9c\x0b\xe7\x78\xba\x16\x15\x83\x41\x1a\x43\xcb\x1e\x95\xa0\xee\x2e\x02\x7b\x82\x41\x41\x53\x59\x98\x58\x43\x59\x96\xae\x09\x5f\x1f\x75\xe5\x71\x25\x9b\x71\xbc\x06\x0a\x24\xb3\x9e\xaf\x88\xd6\xc5\x59\x5f\x6b\x55\x9e\xf2\x95\x0c\xc6\x59\xd5\xb6\x65\xf3\x05\x54\xec\x9f\x68\x6d\x31\xd6\xaa\xc3\x51\x79\xa5\x01\xae\x25\x7e\x2c\x72\xd2\x7c\x10\x8d\x80\x93\x15\xe4\x04\xbd\x0d\x3f\x69\x93\x44\x23\xdc\x36\x25\xe9\x38\x49\xa7\xa8\x99\x69\x95\xa4\xec\xbc\x8b\xbd\xa5\x24\x47\x6f\xee\x08\x2f\x5f\x33\xa3\x62\xda\x35\x16\x1e\xea\x2a\xeb\x7b\xa5\x93\x5c\x7c\xbd\x54\x33\xfc\x4e\xc3\x09\xea\xf0\xac\xb7\x9a\x46\x8c\x2e\x60\xe9\x4a\xed\x67\x72\xb9\xad\xe4\x39\xe8\x0d\xd2\x91\x99\x72\x79\x0e\x0f\x7f\x2d\xe9\xdf\x2d\x9d\xd7\x15\x40\x2e\xcc\xa2\x22\x0a\x83\x18\x4e\x19\x82\x51\xc5\xed\x52\xb8\x54\x01\x86\xa0\xd6\xc1\x72\x04\x38\x0f\x5f\xe9\x56\x4d\x2d\xd1\x7f\x46\x91\xbf\x56\xa2\xa4\x17\xa3\xdd\x85\x7e\x10\xcf\x18\xf9\x49\x23\x9d\x5e\x5c\xf0\x7a\x69\xaf\xcf\x84\x70\x61\x62\x2b\xcc\xe0\x47\x8d\x8d\xbc\x38\xeb\x05\xbd\x60\x64\x27\x77\x48\x40\x7f\xa6\x88\xe8\x3f\xab\x6b\x86\x17\xaf\x75\x34\xc7\xc3\xd7\x34\x85\xd3\x0d\x3e\xcc\xfe\x79\xcf\x24\xfd\x28\x31\x26\xe3\x29\x3d\xd6\xeb\x7f\x4d\xf1\x52\xb6\xb9\xab\x17\x78\x74\x87\x71\xcd\xfd\x4f\x85\x82\x13\x20\x24\xc8\xa0\x84\x85\x23\x17\x2d\x2b\x7e\xdc\x56\xc5\xfc\x7b\x7f\xe7\x8b\x5f\x58\x9c\xaa\x3e\x16\xd5\xef\x0d\x15\x0a\x99\xb7\x82\x88\xf0\xbe\x25\x1b\x2f\x65\x26\x28\x06\x4a\xfa\x84\x83\x85\x33\x4f\xd4\xd8\xa6\x78\xc6\x5d\xf5\x5d\xca\xd1\x8e\xc1\x91\x2c\x85\xaa\xa6\xef\xd4\xef\x5f\xd8\xdc\x28\x9d\x41\x78\x9f\x04\x66\xa6\x9c\x02\x20\xfb\x0c\x0b\xd0\xa8\x63\x05\xbd\x4f\x29\x61\xe8\xc4\x69\xc7\x30\x8a\xb1\xeb\x40\x4f\x0c\xdc\x06\xbe\xe7\x81\x6a\x97\x0f\x4d\x90\x14\x11\x94\x5a\x5e\xaa\x29\x9a\x8a\x29\xcf\x33\x5a\xab\x9e\xda\xf7\x4f\xd6\x94\xbb\x15\xfc\xf1\x87\xb8\x71\x38\x7d\x7f\x58\x23\xb5\x51\x99\x20\xc9\x8c\x9b\x93\x5e\xc3\xe6\xb0\x5f\xb2\xfa\x99\x22\x20\xa9\xeb\x07\xa5\xb8\xcf\x87\x37\x0a\x96\x9b\xca\xec\x8f\xb5\x07\x70\x2e\x5e\xa3\x6c\x46\x48\x4c\x8e\x70\xb8\x1c\x84\x51\x0c\xb0\x5e\x15\xff\x37\xc9\x1b\x69\xf3\xa2\x9a\x4b\xe7\xa3\x20\x5b\x61\x26\xa3\x9c\xf5\x14\xb3\x11\x03\x81\x6f\x10\xfd\xb4\x16\x16\x25\x77\x25\x9d\x90\x3f\x7d\x5d\x01\x8f\xef\x55\x9a\xb3\xab\x50\x9c\x25\xa1\x48\xab\xb0\xeb\x20\xb0\x10\x89\xb1\xfa\xfd\xb6\xda\x78\x44\x32\x85\xb8\x64\x6f\x94\x8a\x79\x7f\xc9\xae\xd9\x41\x1a\xc7\x55\x82\xeb\x60\x6b\x38\x6d\x2d\x0f\xdc\x99\x69\x43\x13\x0b\xff\x30\xd5\xfd\x4c\xcd\x98\x00\x4a\xa2\xd4\xa9\x58\x94\xd4\xfa\xbb\x0a\xa7\xf5\x5d\x3b\x52\x1c\x04\xa3\x91\x49\x08\xbc\x66\x4b\xb2\x99\xc9\x96\x6e\xcd\x4b\xbc\xb7\x1e\xef\xba\xab\x1d\x47\x49\x98\xc6\x89\x7a\xd9\x15\x8d\xd7\x2d\x4b\x07\xd0\xba\xda\x46\xc6\x2d\xa2\xde\x12\x0f\x65\xec\x8c\xae\x86\xa8\xb1\x13\xfb\x20\x1b\x06\xd9\x8a\xf2\x1b\x07\x29\x91\x1f\x6f\x4d\xed\xbf\x74\xc4\xfb\xd2\x91\x69\x85\xa4\x7a\xcb\x57\x4a\x4c\x6f\x29\x5e\xed\xef\xf8\x6e\x97\xff\x4e\xe9\x32\xb0\xbc\x30\xcc\x9d\xb0\x49\x67\xb5\x39\xd0\x30\x81\xe4\x37\xc2\xc4\xdb\x9a\xc1\xbe\x63\xb2\xd7\xce\x7e\x47\xeb\xd4\x89\x95\xa8\x8c\x3d\xb6\xa9\xd4\x3a\x36\x9d\xaa\x75\xb0\x62\x48\x40\x47\x09\x44\x72\xf1\x29\xa4\xf3\x16\xeb\x4f\x18\xbd\xe4\xca\x41\x8f\xc1\x38\x58\x5c\x57\xf1\x06\x18\xfe\x6b\xa4\xb9\x39\x4a\xae\x03\x31\x19\x87\x33\xf5\x09\xcb\x9c\x7f\x04\xcf\x10\x91\xdc\x6d\x83\x86\x34\x4a\x91\x87\x74\xe5\x30\xcc\xd8\xf0\x1d\x52\xfd\xa1\x8d\x7f\xd5\xcf\x88\xd3\xa0\xa7\x92\x90\x0b\xbe\xc2\x72\x5e\x50\x19\x6b\x9a\xf5\x4c\xb6\x47\x77\xcd\x1d\x87\x89\xd1\x00\x76\xba\x6d\x63\x0e\xeb\x95\x6b\x23\x47\xc4\x8c\x1a\x6e\x02\x5f\x8e\x5f\xd1\x55\xd0\xab\xff\x41\x23\xc5\x6f\x2b\x72\xed\x78\xb4\x56\x9d\x46\xf4\xa7\xd6\xa0\x5f\x99\xef\x37\x5b\xed\x0b\xc0\x45\x53\xa4\x57\x22\xfa\x92\xd3\xfe\xae\xaf\xd4\x4d\x2f\xaa\xe6\x93\x39\x1a\x9a\x51\xb1\x63\xab\xc0\x90\xc5\xe7\x5b\xbb\xd2\x63\x88\x5c\xda\x81\x47\x04\xa4\xab\xeb\x81\x02\xef\x9a\xe2\xca\x24\xe9\x52\xda\x5b\xa7\x9a\xdc\x9a\x1c\x5b\x99\xbf\xeb\xbe\x8e\x89\x4e\xf2\xef\xba\x22\x81\x0f\xd3\x14\x07\x32\x4a\x0d\x68\x64\xf0\xe3\x89\x4b\xf2\x8b\x34\xee\xed\x51\x84\x07\x64\xc2\x98\xc9\x4c\x77\x15\x84\xfc\x3c\x8a\x2e\x9c\x95\xa8\x69\x11\x4a\x67\x26\xaa\xf1\x75\xca\x77\x1a\x0c\x90\x3a\xe3\x17\xe0\xe0\x14\xf4\x6b\xf5\x95\xe5\x10\xdd\x7a\x37\x5e\x7d\xd5\xcb\xd3\x78\x55\x36\x9b\x74\xde\x95\x06\xf5\x95\x46\xfc\x79\xd1\x1b\x04\xe3\xd8\x36\x88\x91\xc8\xff\x73\xdf\x25\xf5\xff\xbc\x31\xed\x3b\xf4\xb2\xb7\x66\xf2\x6a\xfb\x74\x1c\x98\xed\xbc\xaf\x3a\xed\xe7\x15\x4e\x24\x37\x45\xc1\xd2\x20\xaf\x68\xcd\x9c\x39\x8b\xf9\x72\x55\x68\x18\x24\xbb\xb1\xed\xb0\xb2\x1f\xba\x71\xfd\x89\x27\xb0\xe4\x6d\xe7\xca\x5a\x0f\x40\x14\xc3\x72\x23\xa4\x07\xfd\xf7\xff\x7a\x57\x8b\xd2\x54\x57\x7a\x93\xd5\x53\x64\x32\xb3\xd7\xa6\x2b\x69\xd6\x0f\x92\xe8\xb5\xea\xc8\x54\xc6\xc0\x6a\xc2\x7f\x5d\x29\x57\xbf\xde\x26\x26\xed\xc1\xca\x14\xf0\x2d\xcb\xff\xb0\xb2\x91\x18\xc5\x61\x75\xbf\x83\x6f\x21\x6d\x7f\x65\x73\x1e\x24\x41\x2f\x78\xac\xa3\x98\xbc\xd5\x6a\x95\x21\x87\xa3\x7d\x30\x57\x09\xe9\xdb\xf6\x49\x75\x2d\x34\x05\x0d\xf7\xfa\x51\x0d\x78\x81\x55\x24\x90\xa5\xea\xca\x60\x7b\xed\xe9\x2a\xb5\xac\x53\xbe\x96\x3f\x9f\xee\x6e\x1d\x71\x56\xbf\x93\xe8\xf1\x41\xdf\x24\x05\x52\x04\xb9\xe3\x1d\x27\x24\xa3\x9d\xdb\xd1\x63\xee\xbc\xf0\x82\x83\x95\x2f\xbc\x7c\xd0\xf2\xbd\xdc\x5f\xc6\x26\x4d\x4c\xbc\x45\x6d\xcf\xf5\x1f\x2e\x37\x82\xff\xfc\xbc\x97\x05\xbd\xaa\x70\xa1\x65\x88\xd5\xf4\xae\xea\xb3\xbf\xab\xfa\x1b\xfb\xbe\xb4\xaf\x53\x0b\x51\xd5\x3b\x8b\xb0\x46\x43\xb2\x7b\xce\x5b\x32\x41\x01\xff\x4d\x29\xf6\xf4\x74\x46\xc5\xb1\x62\x9c\x24\x26\x9e\x52\x81\xbe\x54\x1a\x8c\xf7\x95\xfa\xdb\x85\x46\x32\xbf\x6f\x9f\xb7\xec\xf4\x2a\x51\xf3\x9e\x2f\x95\xbf\xee\x79\xdf\x59\xc0\xe5\x26\xc9\xa3\x22\x5a\x45\xe2\x57\xad\x0b\x81\xe6\xd3\x25\xe3\x27\x8d\xfd\x7d\xe8\x65\x8f\x6e\x16\xa4\x58\x71\x63\x2f\xe9\x43\xf1\x92\xef\xc6\xf1\xe3\xfc\x71\xda\x64\x48\x78\x18\x37\x84\x12\xf0\x0e\xed\x38\xec\x8c\x6d\x04\x98\xc0\xb5\xf8\x40\x0b\x9b\x02\xdd\x62\x07\x95\x56\x27\x12\xa8\x6b\x64\x4e\x18\x3e\x61\x87\x70\x75\x0c\x8c\xc1\x14\xf9\x8f\xd4\x12\x0d\x9c\x69\xcd\x2a\x68\xff\xbc\x37\xca\xd2\xa3\xa0\x94\x69\x7b\x53\x7e\x5c\x2b\x68\x4c\x2f\xe8\x38\x1a\xc6\x16\x5d\x31\xb7\x42\x06\xc5\x60\xda\x01\xd9\x41\x29\xc5\x41\xf3\x88\xa2\xb1\xf4\x9a\x94\x5c\xf6\x27\x2d\xae\xbe\xf3\x5e\x51\xa5\xc4\xc3\x34\x59\xef\x28\x1d\x46\xc4\x02\x31\x46\x76\xb9\xe3\x20\xca\x8b\x34\x5b\xdf\x55\x7d\x02\xce\x7f\xe6\x93\xb1\xba\x3a\xad\x1f\x54\x13\x53\x14\xcf\x2c\xfc\x72\xee\x90\x3c\x56\x00\xcf\x9f\x7f\x8e\xe9\xf6\xe8\x57\xec\xe9\xba\x08\x74\xa1\x11\xb5\x3e\xef\x85\x55\x8e\x1d\x8a\x18\x91\xf5\x20\xac\x7e\xa1\x28\xd5\x29\xff\xe8\x6c\x9c\x0f\x94\x7f\xf4\x9b\xca\x4b\xeb\x4d\x65\x5d\x3b\x1e\xe5\x06\x78\x62\x2b\xf3\xb5\x7f\xde\xca\x7c\x49\xb1\x17\x8c\x46\x71\x64\x7a\x3b\xe9\x1a\xe1\x4d\xa6\x95\xa0\xfb\x1b\x14\xed\x6a\x2c\x0f\xab\xf4\x6e\xfb\x74\x40\x6d\x60\xc5\xfc\x44\x2b\xf7\xdf\x6e\x11\xa2\xf5\x46\x26\x1b\x06\x89\x18\x7a\x5b\xfc\xa8\x6d\xe0\x9d\xb0\x89\x2f\x6c\xd6\x3b\x8e\xfd\xf3\x9e\xaf\xac\xc2\xde\x6b\x5c\xc8\xc5\x59\xaf\x18\x98\xa0\x30\x19\x65\x1d\xd2\x9c\x73\x28\x95\x8e\xfa\x65\x20\xb3\x08\x0e\x63\xeb\x76\x5d\x78\xf9\x20\x51\x01\xf0\x25\xb1\x0f\x01\x0a\xe1\xc7\x6d\x92\x52\x9f\xf3\x7a\x19\x89\x41\x5a\xd8\xfb\x4f\x7d\xd7\x39\xff\xa9\x1d\x5b\x07\x71\x9a\xf4\x1f\x53\xca\x4d\x57\xdc\xf0\xe4\x3f\xfb\x1c\x54\x94\x70\x35\x1f\xe0\x6a\x62\x02\x74\x17\x00\x5a\x9b\x91\x3b\x2e\xf5\xfd\xd2\xb1\x29\x1e\xe0\x1a\x89\x31\x49\x15\x21\x70\x26\x3f\xde\xb5\x63\x90\x7f\xba\x77\xe2\x3a\xab\x3b\x26\x2d\x30\xa2\x61\x30\x1a\x09\xad\x53\x1a\x76\x6a\x72\x7d\xbb\x51\xad\x7e\xde\x8b\xcd\x32\x2b\x19\x81\x9c\xc0\x1e\x0e\xfc\xc4\x0e\xe3\xc7\x49\xcf\x64\xfd\x34\x31\x1d\x45\x28\x3c\x49\x5b\x9b\x1f\xb7\x8d\x65\xfb\x41\xd6\x33\x09\x55\x17\x22\xc1\xe9\x7a\x1a\xaf\xfb\x6e\xae\xff\xae\xa2\x92\xb1\xd4\xc6\x94\xb2\x41\xba\xa8\x04\x7d\x31\x23\xc2\xcd\xf9\x1d\x95\x7c\x67\x26\x49\x22\xc3\x04\x3c\xcb\x95\xab\x2e\xaa\x24\xbf\x32\x40\x4d\x7b\x3d\x78\xf6\x72\xc9\x80\xa0\x84\x52\xec\xf9\xae\x42\x99\xdf\xe1\xc1\x23\x5a\x2d\x84\x3d\xd8\xdc\x54\x4d\xeb\x99\xc9\xd6\x36\xef\xc2\xe2\x82\xd7\xcf\xa2\x5e\x4f\xf4\xae\xac\x33\x9a\xc5\x30\x1d\x6f\x93\x5d\x0b\x96\xf2\x34\x1e\x17\x68\xf2\x31\x20\x5b\x29\x20\x36\xfb\xc9\x8b\xb3\x8b\x9e\x49\xfa\x41\x5f\xce\x3f\x96\x61\x46\xc1\x20\x9a\xcc\x4f\xaa\xa1\x6f\x1a\xb3\x1f\x88\xc6\x72\x4a\x8a\xdf\xd2\x8b\x25\x61\x55\x25\x2a\x0e\x1a\x0e\x9b\xc3\x95\x35\x59\xb5\xe7\x5a\x50\x07\x07\x1f\x57\xf4\x5f\xc0\x78\x70\x85\x21\xe3\x63\x31\x61\xd5\xfb\xb0\xdb\x54\xe9\xd8\x29\xf7\x15\xad\xe1\x04\x5a\xfe\x48\xfa\x6b\xb2\x2d\x4c\x6e\x61\xab\x4e\x0a\xea\x32\x5e\xa7\x5b\x6a\x9d\xf4\x17\xa5\x2e\xfd\xdf\x1b\x87\xe1\xe2\xac\x97\x04\x43\xe6\x65\x58\x8a\x9e\x63\xc0\x4e\x61\x5a\x86\xa5\x72\xb5\x71\x64\x1d\x38\x40\x66\xb1\x70\x2b\xa0\xf7\xb0\x73\xdf\x6a\xdf\xe1\x97\x9d\x54\xad\x97\xdb\x0d\x31\xab\xf9\x79\x2f\x1a\x56\x59\x21\x3c\xfc\x6c\x15\x74\x8b\x8e\x7d\xdb\xbc\xb1\x3a\xdc\x1f\x28\x2c\xc9\x28\x4b\xf3\x11\xc8\xfd\xa8\x40\xb0\x30\x2f\xa8\xc0\x7c\xa1\x74\x2d\x9d\xc2\xc4\x66\x35\x48\xfa\x26\x8e\xf2\x61\x47\x69\xe6\xe0\x05\x72\xd4\x3d\xab\x18\x11\x41\x68\x96\xc7\x71\x0c\xba\xb2\xe5\xc2\x59\x98\xe2\x25\x45\x6b\x0d\x07\x24\x1c\xa3\xd9\xef\x9c\xf8\xc9\x8c\x67\x0b\x3c\xa5\xda\x2d\x47\xe6\x0e\xed\xd4\xe6\xc0\xd5\xbd\xd2\xfa\xfc\xca\x9a\x79\x8e\xff\xe8\x5d\x64\xe3\x4c\x76\x53\x33\xd6\x2b\x18\xa5\x22\xb5\x3a\xa1\xb2\x93\xd5\x40\x04\x4f\x11\x54\x01\xbf\x68\xb3\xac\xa7\xdd\xcf\x7f\xa4\xcd\xbe\x46\x24\xe0\xef\x6e\xe3\x71\xc5\xab\x3f\x5e\x5a\x10\xc3\xaf\x1c\xc4\x6e\x44\x01\xc2\x93\x2b\x7e\xe2\x0e\xef\x38\x36\x7d\xd3\x9b\x51\x70\x2c\xfc\x21\x9f\xd1\x58\xd5\x98\x97\x6f\x2a\xef\x89\x73\x54\x78\x00\x89\xe2\x8e\xdb\x5e\x3a\x0c\x22\xc8\x13\x73\x75\xe7\x77\x94\xeb\xc2\xd6\xc0\x71\xe0\x80\xf5\xba\x52\x1d\x6d\xd6\x97\xe1\x27\x0d\x1c\xbe\x34\xdc\x07\xe3\x5e\x9e\x26\xe8\xfc\x5b\x9b\x00\x27\xd3\x60\xf9\x9d\xd4\x98\xcf\x8b\x28\x8e\xa7\xd4\xee\x41\x14\x44\xc8\xd9\x41\xb9\x15\x28\x79\x9d\x89\x4b\x7f\xf2\x51\xba\x62\x3a\xae\xbd\x09\x41\x42\xe9\x46\x3d\xe5\xd2\x1f\x13\x64\x02\xda\x41\xf5\x05\xa1\x5f\xc4\x98\xdb\xa5\x12\xf7\x7d\x46\xb1\xf7\xb3\x20\x8e\xa9\x00\xb0\x37\x0f\x33\x68\x69\x8b\xca\x59\x6f\x82\xac\x18\x4c\xb9\x4d\xb4\xa3\xeb\x2a\x91\xab\x9a\x36\x7b\x4f\xf5\x73\x87\x41\x3f\x49\xe3\x28\xc8\xa7\x54\x8e\xae\x64\x15\xd8\x8e\x9e\x4b\xe2\xc6\x79\xb9\xbf\xaa\xc8\x92\x30\xcd\x3a\x8a\xa2\x53\x9f\x91\xaa\x5a\x3f\x4c\xa7\x5d\x86\x05\xc9\x4a\x55\x9d\xc9\xa4\x90\xf0\xa8\x9b\x4f\x36\x4a\x51\xb9\xa1\x71\x54\x14\x31\xcc\x13\xd1\x5b\xbf\xa6\xa5\xbb\x3e\x51\xd8\xb2\x4f\x6a\x92\xcc\xb9\xe9\x3d\x5b\x7d\x24\x26\x73\xa7\xd0\x64\x92\xb6\x3d\xed\x4e\xb4\x1d\x76\x80\x25\x80\xbe\xd9\x3f\x42\x4c\xb4\x1e\x7b\x96\x60\x7e\xd7\x57\xc8\x9f\x0f\xe8\x8e\x0b\x54\x6c\xca\xb9\x4b\x7d\x44\xc3\x22\x45\xd7\x78\xa5\xee\x4a\x87\xa2\xf8\x3a\x7e\x3e\xde\xeb\x26\xb3\x83\x04\xfa\xe3\x5a\x1a\xdf\x2a\x9d\xb3\xe0\x9f\xd1\xcf\xb4\x4a\x08\x16\x28\x31\x85\x36\x94\xe0\x89\xb7\x9a\x4b\xfc\xb2\x37\xce\x31\xf7\x96\x72\x53\x91\x5b\xcf\xd7\xc6\x65\x5f\x1b\x1b\x76\x39\x13\xd0\x71\x47\xeb\x00\x1e\xb1\x83\x0a\xe8\xb7\xdb\x3e\xb6\xb3\x0a\xc0\x4f\x14\xf8\xb2\x6b\xd7\xf5\xe3\x34\xcf\xb9\x56\x02\xa6\x89\xc5\xba\xf8\x49\x63\xff\x53\xc2\x4b\x34\x21\xd0\x9b\xb8\xf3\x43\x97\x40\xba\x40\x5b\xcf\x48\xd2\x5d\x8d\x03\xc8\xa7\x21\x8b\xe1\x44\x56\x28\xe2\xf4\x91\x62\x70\xf6\x59\xa7\xf9\x5c\xed\xa3\xb5\x20\x1b\x46\x49\x5f\xd4\x8b\x15\x0e\x71\xce\x46\x7d\x17\x00\x4c\x5e\x18\xc9\xe2\xfe\x3f\x89\xd6\x1e\x38\xe0\x2d\xc7\x69\xe0\x0c\x7c\x80\x9e\xc1\xec\x12\x8b\x1a\x5d\x58\x16\x5c\x6a\x6d\x3f\x15\x83\xcc\x04\x08\x88\xc8\x32\xf9\x66\xf2\x93\xc6\xb1\x4f\xd6\xfa\x47\xc3\x41\x75\x96\xa2\xdb\xa9\xd4\x19\xe6\x6c\xc6\x29\xca\x42\x51\x16\xcc\x68\x9a\xc6\x05\x05\x78\x65\xc3\x2d\xfb\x0f\x8b\x02\xec\x83\x91\xcd\xe6\x9e\xae\x12\xe0\x8b\xc7\xf9\xce\x6a\xe1\x02\xfd\x75\x4c\x1d\x63\xdf\xa1\x3e\x1e\x3a\x0f\x2c\x1a\x80\x69\xca\xbb\xa5\x5b\xdd\xa7\x68\x49\xf1\x8b\x51\x19\xa0\x60\xbf\x5b\x5b\xae\x26\x4a\x76\x53\x9f\x09\x1d\x84\xb3\x9a\xd7\x80\xd2\x9e\x41\x39\x28\x76\xed\x54\x72\x71\xd6\xa1\x75\xac\xb0\xcc\xb6\x89\xea\xa0\xb2\xd8\x2c\xde\x97\xf9\x25\x98\x87\x6c\x7e\xaa\x6a\x6a\x1e\x24\x59\xb0\x32\xee\xa8\xa6\xd3\xf7\xb9\xd3\xc6\xcf\x1a\x8b\xbc\xba\x3d\xcc\x86\xfb\x74\xe5\xa1\xe7\xeb\x9e\x36\xc5\x5a\x9a\x15\x83\x75\x58\x36\xe3\xb7\xde\x05\xb4\x8a\x9f\xb4\x7e\x4a\x1c\x0c\x97\x4c\x56\xf0\x82\x15\x0d\x00\x35\xe9\xbd\xf8\xa9\x12\xfa\x66\x94\x99\xa3\xf8\x38\x04\xeb\x73\x5a\xd8\xf6\x9c\xc3\x9d\x98\xbc\xa0\xb9\x42\x75\x7d\xdb\xa6\xdc\x2d\xad\xbd\xd8\x04\xc5\x80\x77\xb8\xc5\x16\xed\xb7\x8f\x55\xd7\x94\x7a\xb7\x38\x10\x85\x18\x53\xbd\x88\x1f\xbb\x13\x7d\x14\x9b\xa4\x17\x11\xf6\x58\xb9\xcb\xe8\x68\xa5\x57\x50\x38\x66\xb1\xa9\x9a\x73\x81\x35\x59\xb3\xb2\xb0\x50\x90\x14\xfb\x34\x27\xec\x54\x64\x41\x92\x33\x1e\xa5\xe3\x28\x15\xe7\x71\xd0\xf0\x93\x96\xaa\xe5\x60\x15\x72\x0a\xb4\x41\xd1\xa4\x42\x23\x81\x1f\x37\x14\x2b\xbe\x32\x47\x68\x23\x0a\x6c\xe8\x94\xde\x53\x4a\xdd\x17\xb0\x9b\x85\x24\xbf\xf5\x3a\xdb\x1b\xc9\x36\xfc\x08\xd5\xa7\x95\x92\xcb\xe9\x46\x27\xe5\x45\x2f\x2f\x4c\x16\xc5\xd1\x6b\x52\xb8\x89\x61\x90\x03\x75\x9e\x55\xc2\x06\x69\x3f\x8a\x57\xd7\x77\x28\xc9\xb3\x2b\x28\x87\x44\x25\xa2\x63\x15\x6d\x58\x3f\x4a\x2a\x00\x3d\x80\xbb\xa0\x74\x62\xa6\x26\xad\x43\xd4\x70\x85\x3d\xcc\xd0\xfb\xfa\x75\xdf\xe1\x76\x7e\x5d\x75\x82\xbf\xf0\x37\xfe\x16\xfd\x95\x4c\xe2\x5d\x90\xbd\xdc\x66\x60\x99\x8d\x49\x1c\xed\x25\xdb\x4c\x71\x80\x92\xcb\xa5\x43\x6b\xb3\x64\x31\xce\xf9\xdf\x6c\x70\x83\x0e\x1c\xa8\x0a\x9d\xd5\x28\x27\x09\x43\x5a\xab\xcc\x45\xf1\x35\x2f\xc5\x8d\x27\x57\x4d\x52\x8c\x33\x03\x9f\x5d\x2a\xc8\x16\x9f\xa3\x84\x13\x7b\x72\xb3\x54\x08\xc8\x7f\x4c\x8b\xd8\x72\x0a\x9d\x0e\xd0\x5d\xa4\x2b\xe8\x84\x1c\x6f\x11\x08\xa4\xd9\xa3\xdc\x46\x34\xef\xd9\x8e\x90\x9f\xb4\x4d\x5c\xbf\x9a\xf6\x1d\x87\x5f\xfc\x54\x3a\xce\x5b\x45\xe1\xe0\xd2\x24\x5e\x7f\x9e\xf2\x27\xeb\x46\x7b\x44\xb4\x47\xd1\xc2\xd4\x47\x1d\xe4\x90\x1e\x9b\xa8\x25\x7b\x1d\xa0\x0b\x41\x7a\xd6\x87\x03\x4e\x34\xa7\x66\x71\x7c\x95\x6e\x0b\xe6\x75\x8f\x77\x95\x34\xe5\x4d\xc2\x2b\xcb\x28\xb3\xba\x66\x42\x4a\x57\xe2\x86\xef\xf1\xb2\x43\xb4\xdf\x3e\x51\x8a\x03\x00\x7d\x60\x63\xdd\xa4\xec\x0b\x70\xe7\x63\x5a\xbb\xf5\x5d\x65\xa5\xbb\x03\xdc\x1b\x31\x2d\x70\x88\x95\x38\x58\xcb\xc7\x51\x91\x4f\x57\x6f\x88\x41\xf2\xef\xe1\x4d\xb4\x4c\x93\xc8\x3c\x39\xea\xdc\xef\x35\xb6\x3f\x05\x8c\x88\x7d\x04\x04\x67\xa1\x1a\x5c\x00\x07\xc9\x39\x4a\x57\xd6\xb6\x27\x0f\xcf\x5a\x7d\x9d\x16\xe7\xc5\xd8\xac\x22\x52\xe2\x8d\xce\xaa\xb1\x74\x93\x68\xb2\x6f\xae\xfa\xef\xca\x9a\x31\x2b\xaa\x8e\xfb\x40\xd5\x71\x1f\xb4\x90\x53\x16\xbc\xcc\xf4\xb3\x74\x3c\x42\xb8\x13\xea\x88\x62\x3b\xe9\x38\x0f\x65\x86\x27\x3a\x56\x47\x6d\x17\xb2\x5b\xab\x06\xb2\x38\xbb\x79\x47\x89\x3b\x9d\x29\x9d\xbc\xc7\x3f\xc1\x02\x41\xd7\xf5\xa4\xaf\xe5\xb1\xa0\xa4\x88\xc4\xf1\x89\x09\x45\x67\x8b\x51\x76\xd4\xb0\x53\x00\xdd\x4b\x21\xac\xec\xa8\xcf\xea\xbb\x7f\x45\xeb\x2b\xc4\x69\xd2\x0f\xb8\x23\x86\xb4\x86\xf9\x10\xfc\xc4\x0a\xef\x99\xde\x38\x0c\xa0\x6e\x3a\x55\xdb\x8a\xaa\xa3\xe3\x2b\xfe\xc9\xdb\x8d\xf2\x76\xdf\x3e\x2f\x08\xc3\x30\x1d\x27\x2e\x8b\xb4\x60\xe2\xf9\xf9\x9a\x4b\x0a\x1a\x92\x27\x15\xae\x64\x64\x92\x24\x48\x8a\x29\xa7\x21\xfd\x01\x5d\x47\xcc\x00\x80\x4f\x92\x36\xa6\x83\x78\xc5\x51\x9f\x60\x35\x8a\xc9\xaf\xd4\x35\x9c\x82\x4c\x11\x44\x6b\x41\x62\x98\xdc\x62\x4d\x92\x2d\x6e\x85\x49\x75\xc2\x61\x92\x0f\xc8\xc3\x41\x1a\x07\x19\x53\xca\x98\x58\x50\x23\x7d\x29\x13\x9d\xd7\xdb\xae\x08\xb0\x5e\x4c\x09\x3d\x3c\xeb\xbc\x4a\x9c\x6f\x49\x63\x5c\xb6\x6f\x9f\xb7\x9c\x99\x84\x51\xbe\x28\x1c\x99\x3c\xc0\x4f\x14\xca\xbb\x97\xa5\xa3\x91\xe9\x4d\xab\x96\xcb\x34\x02\x0e\xee\xf0\x06\x7d\x94\x78\x11\x74\x2c\x21\xf4\x91\x3a\x8e\x82\x21\xa6\x58\x62\x65\xe0\x3a\x1a\xdb\x2c\x8c\x26\x1f\x19\xd3\x4b\x87\xa6\xe0\x7c\x48\xb9\xb1\x58\x04\xb8\x92\xd6\x0c\xd3\xe1\xd2\x38\xb7\xd4\x45\xec\xa4\xab\xd4\xe9\xe6\xc7\x75\x65\x8f\x95\x7c\x57\x75\xe7\x2d\x7d\x67\xbf\x20\x7c\xfe\xfb\x52\x65\x15\x14\xf0\x24\x91\xe8\x58\x62\x3a\xdc\x76\x14\xf2\x63\xce\xb2\xfb\x95\xb0\xe9\x4c\xb7\xc5\x89\x01\x49\x2b\x0b\x43\xa0\x41\xf2\x53\x7a\x37\x7e\xdc\x9a\xae\xe6\x85\x09\xb2\x24\x47\xbe\x22\x20\x7c\xed\x81\x77\x49\x2d\xec\xcc\x04\x55\x9e\xb2\xcb\x61\xa9\xdf\xc7\xd6\x15\x61\x72\x45\x69\x3d\x46\x85\x2b\x8e\x90\x8f\x95\x36\x03\xc4\x0c\x36\xcf\x92\x2e\x88\xcc\x10\x1d\xe9\x6e\xa6\xa1\x2f\x38\x77\xc8\x63\xaf\x1b\xd7\x64\x04\x12\x90\x1f\x2b\x80\x95\x59\x32\x59\xa7\x5e\x57\xd1\x0f\xe3\x27\xda\x0b\xbc\x08\x7a\xd1\x78\x38\x5d\xdb\x6e\x4e\x3f\xf1\xba\x06\x4a\x01\xac\x20\xfb\x50\x56\x11\x35\xcd\xe2\xd4\x8e\x57\x10\x1f\xb8\xcd\xcb\x4f\xd4\x60\x7b\x2d\xc8\x12\x93\x41\xe2\x5c\x82\x1b\x05\x27\x16\x53\xf2\x5d\xb4\x60\x5b\xd5\x9a\xed\x20\x06\x44\x10\xe9\x41\xf3\xec\xae\x1a\x81\x5e\x70\xb4\x6d\xa7\x3c\xd8\x44\x7e\xf3\x93\x06\x99\x90\x5a\x00\x81\x8d\x77\x48\x45\x30\x79\xba\xa3\x78\x69\x77\x94\x90\x17\xc1\xd0\x76\x3a\x80\xfb\x8e\x89\x32\x2f\xf8\xbf\x94\xdb\xce\x31\xda\x00\x62\xa4\x5a\x6d\x00\x1c\xe6\x77\xa9\x09\x8f\x0b\x0c\x2e\x07\x3a\x34\x53\xdd\xe6\xc1\xf6\x8a\x17\x9a\x2c\x18\x46\x21\x2d\x01\xd1\x0d\x72\x15\xf3\x95\xf2\x39\x97\x23\xad\x9a\x6c\x39\x4e\xd7\xc4\xb7\x1f\xa1\x1a\xaa\x7e\xfc\xb8\x05\xeb\xed\xf5\xcc\x92\xe5\x8e\x5b\x5f\x4f\xcb\x0c\x76\x85\xfb\x52\xba\x4e\x3c\x77\x74\x53\x18\x0e\x27\xc8\xaa\xce\xaf\x7e\xd9\xe6\xaf\xce\x5c\xfd\x7d\x8d\x0e\x3b\xe3\x86\x4e\x6b\xec\xb0\x2c\x93\x2b\x67\xf2\xcf\xae\x96\x00\x72\x5d\xc6\xba\xc4\xdc\x64\x17\xa6\x1d\xec\x10\xdf\xb4\x1e\x5e\x5c\xf0\xd2\xe5\xe5\x19\x85\x66\x3b\xa1\xfa\x5a\x3b\xba\x4e\xda\xe6\xba\xda\x93\x10\xee\xc1\x6c\xf5\x7d\x15\x4c\x7b\x4b\xd8\x74\x96\x4d\x6e\x35\x11\x2e\xb5\x78\x7f\xbf\x62\xad\x49\x71\x60\xf2\x0f\xa6\xcf\x61\xdd\x48\x45\xa0\xff\x5e\x5b\xd2\x93\x0f\x52\x37\xaf\xe4\x65\xee\xeb\x25\xdf\x26\x31\x65\xc6\x59\x3a\x32\xcc\xe7\xc7\xc5\x64\x63\x13\x7e\x52\x2b\x44\xa3\xd8\x3c\xdb\xb1\x6a\x4e\x6f\xa9\x9b\xcc\x4c\x2d\x0c\xa2\xae\x29\x44\xed\x43\x4a\xad\x71\x79\xd8\x97\x40\x4c\x27\xaa\x20\x06\x8a\xc8\xbf\xf6\x5d\xa3\xe6\x1c\x35\x26\x95\x5f\x95\x44\xc8\x05\xf4\x0f\xa4\x4b\x81\x48\x25\x52\xae\x4a\xa8\x83\x49\x2d\x48\x18\x58\xa5\x0c\x79\xdf\xed\x3a\x4e\xdc\xb5\x8f\x67\x00\xa9\x44\x2f\x83\x75\x73\x59\x05\xb1\xf6\xfb\x8b\x62\x7d\x07\xfd\x4e\xed\x55\x86\x95\x06\x52\x2d\x26\x54\x1f\xa2\x1e\x40\x1c\x43\xb8\xc5\x85\xf9\x2e\xad\x15\xfe\xff\x4a\x53\xba\x9f\x45\x66\x35\x48\x42\x2a\xf3\xad\x17\x7e\x8d\x37\xeb\x34\x0e\x19\xe5\x02\x5e\xdf\xf6\xae\xab\x6e\x07\xc4\x14\xe6\x10\x2e\xbd\x36\xdd\x78\x53\xd5\x50\x18\x15\xeb\xbb\x9c\x72\xfd\x45\xba\x63\xe2\x27\xed\xce\x8a\xdd\x5d\xd7\x7a\xe2\x1c\x14\xed\x85\x29\x88\x8c\xc8\x78\xae\xfa\x89\x22\x86\xe2\x38\x73\xb7\x95\x91\xda\x28\x4b\x0b\x02\xea\xe5\xca\x69\xfb\xc7\x8a\x48\xf7\x63\xc5\x02\xc9\x06\xa6\x48\xb3\x2a\x64\x59\xed\x5d\x66\x7b\xf2\x13\xd5\xbb\x8f\x4d\xf6\x94\x9a\x62\x3e\xc4\xb5\x97\x17\x55\x6f\x80\x8e\xd3\xe3\xdd\xaa\xe2\x12\x3d\x4b\x5a\x4a\x94\x74\x97\xcf\x10\x82\x48\x99\x75\xc8\xd1\xb5\x7d\xa2\x90\x16\xdb\xbb\x75\x90\xf7\xbe\x39\xcb\xc4\x9f\x72\x1e\x66\xd7\x4a\x37\xd9\x78\x72\xe2\x9c\xf9\xce\xa0\x41\xcb\x7c\x31\x2c\x50\x64\x9c\x9d\x86\xc1\x44\x55\x8b\xe4\x83\x74\xec\x4e\x13\x3b\x1c\x52\xf8\xad\x36\xd6\xf7\x28\x4d\x57\x38\x47\x45\x53\x67\x53\xf1\xb6\xb9\xe9\x2d\xf3\x6a\x27\x74\x65\xe2\x60\x29\xcd\x82\x82\x35\xd5\x34\xf5\x19\xbb\x13\x4e\xc7\x6c\xab\xa9\xf5\x5c\xcc\x30\x0d\xb3\x00\x14\x23\x6c\xa4\x6f\xe3\x43\x2c\x1f\xd8\xc2\xb4\x7e\xa6\xf8\xe7\xe7\xb5\xee\x48\x3a\x5a\x97\x98\x85\xca\x90\xc1\xc9\xfc\xa4\x4d\x7b\xa0\x9f\xc6\x26\x59\x4a\xc3\x15\xa5\x85\xc9\xbf\x8e\x9f\x34\x0e\xe9\x7d\xfb\xbc\x28\x09\xd3\x6c\x44\x3f\x94\xd1\x04\x32\xbb\xa0\xfb\xc7\x4f\xd4\xc2\x9a\xff\xc2\x57\x14\x94\xee\x8a\x02\x4d\x9c\xae\xcd\xac\xac\x3f\x5c\x3c\xce\xc2\x01\x4e\x41\x01\x71\xbb\x69\xd8\xc3\xc6\x1d\x5b\x9c\xf5\xf2\x22\xed\xf5\xd7\xa7\xdc\x50\x0b\xe6\xd6\x56\xba\xbe\x5a\xa4\xa2\x47\xe3\x9a\xfa\x6b\xd5\x56\xda\x53\x6d\x39\xdc\x93\xeb\xb4\x79\xf9\x31\x15\x9a\x0a\x5a\xb7\xb0\x49\xec\xed\x97\xf0\x1f\x09\xeb\x34\x0a\x9a\xdb\xdc\xa0\xcd\xca\x79\xa6\xef\x0c\x0e\xa9\x87\xb2\xb9\xa1\x8c\xa5\xc8\x27\x22\x5a\x1a\x17\x66\x86\xbe\x15\xc6\x43\x67\x28\xb6\x59\xbb\xd0\x6a\x55\xf3\x3f\xa8\x18\x72\x93\x3e\x04\x31\xed\x98\xbd\x58\x4b\x71\x90\xac\x4c\x2b\xc5\xf0\x07\xf4\x12\x1a\x2b\xfc\xe7\x68\x2f\xe1\x32\x74\x26\x0a\x09\x7f\x49\x5f\x86\x80\x90\x84\xf3\xaa\x44\xfd\xd2\x11\xdb\x2c\x6a\x01\x5d\x05\x45\x11\x15\xe3\x1e\x2b\xbf\x6e\x32\x7c\x0e\x21\x9b\x81\x09\xc2\xae\xa8\xbe\xb1\x3c\x76\x84\x9d\xd5\x74\x18\x55\xbb\x72\x46\x6d\x31\xd4\x28\x76\x11\x56\xb1\x47\x16\xa1\xe3\x31\x30\x7a\x11\xd7\xfe\x94\x12\x8e\xcf\x82\x90\x48\xbc\x16\x59\xfb\xba\xd2\x79\x7e\xbd\xb1\xf8\xa5\x47\x3a\x1c\x87\x03\x27\xc8\xf5\xcd\xbd\x5d\xc5\x46\x42\x8f\x86\x47\x81\xb4\x8b\x6b\xaa\xdc\x58\xe7\x37\x95\x8d\x50\xcf\x40\xa8\x72\x19\x1b\x51\xb7\x14\x6d\xb5\xde\x6c\x47\xce\x1d\xf2\x96\x03\x54\xdc\xac\xaf\xa0\xe8\x6d\xda\xa5\xe8\xab\xe3\x2c\xca\x47\xd9\xb8\x67\x92\xd0\x40\xdf\x91\xeb\x77\x3a\x8d\xa5\x96\x6f\xc1\x8f\x8f\x47\x83\x28\x86\x8a\x13\x72\x36\xd8\x3f\x0b\x75\xb5\x63\x1d\xc6\x4e\xab\xce\x4c\xcf\x14\x41\x04\xd6\x18\x2b\x11\x68\x5f\x21\x6e\xf7\x62\x4c\x73\x5d\x15\x01\x37\x91\x5c\xf0\x3f\x28\x79\xb9\x7e\x1c\xe4\x49\x9a\x03\x36\x6c\xa5\x10\x17\x5e\x16\x61\x8d\xf3\x75\x73\xdd\xc2\x3c\x5d\xdf\x06\xb6\xa5\xff\x41\x59\xdf\x38\xfb\x44\xf2\xeb\x67\xbe\x13\x06\xfb\x0c\x50\x09\x48\x57\xa6\x26\x2a\x8d\xb8\x8e\x62\x11\xd1\xf9\x77\x7c\x25\x3c\xfd\x2e\xe5\x06\x18\xd5\x5f\x52\xc5\xc3\xd7\x91\x14\x61\x2d\x4d\x10\xe5\x34\x1e\x08\x29\x16\xcb\x39\xb0\xaf\x8e\xd2\x5a\xb8\xaf\x0a\xbe\xd1\x38\x5c\x89\xf2\xc1\x5f\x40\x0b\xe2\x08\x68\x92\x7e\x31\x30\x09\xd7\x4f\x48\xe1\x37\xf0\x65\xf9\x89\xea\xc6\x8f\x32\x93\xe7\xac\xa6\x65\x37\x90\x03\x1c\x5f\xf6\x1d\x00\xa2\xde\xe4\xb7\xb4\xff\x03\x07\xe4\x71\x9b\x69\xd8\xaa\xc9\x62\xed\xa5\x89\xa3\xf3\xb6\x3a\xa2\x6f\x37\x7a\x98\x47\x16\xbc\x01\xb1\x4e\xaa\x9b\x68\x75\x9d\x17\x67\xad\x64\xf3\xf3\x35\x46\x97\xc9\x56\x41\xe8\x9a\x72\x66\xa3\xc7\x4b\x65\x36\x7a\xdc\x69\x87\x91\xc5\x5e\x47\x03\x67\x6a\x00\x19\xe7\xaf\x97\x19\x41\x21\xc5\xeb\xd4\x07\x43\xa4\x81\xb6\xb1\x90\xba\xdc\x58\xe9\x9c\x5e\xfd\x41\x12\x99\x98\x98\x2c\xa2\xe2\xad\x94\xd3\xff\xd4\xaf\x69\xb8\xd2\x8d\x97\x34\xb7\x63\x8d\xcc\x78\x42\x2c\xf2\x22\x2d\x89\xc6\x5a\x90\xe5\xc1\x5a\x47\x55\x66\x57\x14\xec\xc7\x99\xc6\xa7\xe3\x22\x36\x05\x68\xf3\xb8\xa7\xd7\xea\x8a\xe9\x1d\x6b\x75\xb9\xad\xeb\x72\x82\x35\xb8\x62\xd2\xc6\x67\x4c\x41\xe9\x30\x20\x57\x7c\x3d\xb5\xd2\x4a\x40\xe3\x7e\xdf\x50\xab\x29\x6f\x5a\x69\xa3\x85\xfe\x01\xae\x06\x9a\x33\x37\x55\x83\x21\x36\x05\x35\xb4\x0e\x0b\x84\x17\x73\x27\x7e\xac\xd6\xec\xd0\x14\x41\x9c\xef\x50\xf5\xfa\xf1\x52\x41\xab\xaf\x63\x37\x21\x19\xfc\x13\xfa\x64\x7c\x18\xc6\xcf\xbc\xe3\xff\x44\x59\x91\x2e\xa8\x84\x8a\xfc\x9f\x57\x4d\x6f\x9a\xe2\x0b\x4e\xbc\x47\x65\xed\xce\x38\xa3\xd6\x47\x9a\xd0\xa9\x34\x3b\xf3\x51\xc0\xce\x01\xf8\xfd\xa7\xe9\xef\xf8\x71\xb3\x6e\xdc\x67\x69\xa8\x9d\x9a\xb6\x65\xf5\x0d\xf9\x71\x9b\x73\xe9\x72\x9a\x16\x41\x9f\x37\x2f\xc2\x15\x22\x32\x3f\x56\x18\xec\xe5\x71\x96\x66\x53\x55\x8a\x22\x82\xaf\x14\xd6\xa4\x63\xed\x88\x98\xf7\x6d\x72\x90\x0f\x4c\x1c\xef\x70\xf0\x6e\x04\x2c\xe4\x19\x7b\xba\xce\x06\xe8\xa4\x92\xca\x63\x66\xbd\x98\x9d\x2a\x04\xd6\x2d\xbb\x07\x83\x2c\x58\xe2\xaa\x82\x3b\xa1\xda\x7d\xe6\xe3\x16\xbb\x55\x2f\x4f\x57\x23\x03\x04\x34\xc3\x0f\x7d\x25\x3d\x72\xd2\xea\xae\x8d\xb3\xbe\x01\x3d\xd1\xf2\x3a\x9d\x54\x2d\xed\x0e\x91\xfe\xa1\xb5\x23\x84\xcf\x27\x94\x35\x26\xdf\x36\x1c\xdd\xff\x50\xa1\xed\xff\xa1\xdd\x51\xab\x86\xe6\xcb\x4a\x26\xe9\x58\xa9\x65\x92\x8e\x35\x00\x1d\xfb\xf6\x59\x19\x69\x54\x06\xb5\x62\xae\xd6\x32\xc1\x12\xbe\xdb\x48\x9d\x5e\x7d\xd5\x8b\x92\x65\xd1\xd8\x9a\x77\x9e\x50\xf4\x35\xc4\x3a\x4a\x7b\x83\x45\xe1\x0a\xdd\x70\xe4\xa1\xd7\x95\x99\xe1\xeb\xaa\x3c\xbc\x64\x2f\xde\xc0\x98\x7c\x4a\x6b\x55\xdf\x2b\x95\x1f\x3c\xd7\x61\x78\xb3\xa7\xba\xcf\xaa\xe2\x61\x38\x4a\x13\x93\x14\x39\x31\x27\x95\x40\xf6\x2b\xce\x10\xcd\xd6\xb8\x08\x22\xd8\x75\xec\x79\x87\xc3\x78\x67\x57\x4d\x8b\x15\x1f\x22\x49\xb3\xc8\xf4\x03\x1a\x15\x40\x1d\x00\xcd\x4c\x91\xa9\x73\x8d\xcb\xb7\x1b\xd3\xec\xfd\xf3\xde\x38\x89\xd3\x70\x25\x47\xad\x81\x77\xbf\xa8\xfb\x19\x17\x7d\xa7\xa9\x18\xc6\xe3\x9e\x21\xf3\x1d\x80\xb0\x76\x4e\x9a\x76\x8e\xc8\x7b\x20\x50\x82\xe3\x7a\x17\x68\x68\xf6\x77\xeb\x3c\xc7\x95\x5e\xdb\xa9\xbe\x15\x6c\x90\x83\x78\xe7\x51\x3f\x31\xbd\x9d\xd5\x95\x43\xbd\xd6\x01\x05\xb0\xe6\x35\x61\xfd\x46\x17\x05\x02\x00\xfd\x21\x1c\x43\xc0\x1d\xa2\xf9\x0e\x5e\x01\x06\x97\xbb\x26\xee\x26\x05\xd9\x52\x54\x64\x41\x9f\xe7\x05\x38\x7c\x18\xa0\xcf\x4f\x9c\x96\x5d\x10\x0b\x01\x44\x1a\xe8\xf4\x95\xa4\xb7\xde\x82\xf5\x36\x47\x47\x71\x14\x46\xd8\xa1\xb8\x2c\xdf\x53\xba\x47\xdf\x53\xb1\x3b\x27\xbf\x8a\x69\x87\xd4\xfe\x44\x89\x2f\x31\xfa\xc6\x42\x31\xec\x64\x6f\xa3\x26\x24\x12\x64\x59\x47\xe1\x4a\xc0\x23\xe7\xc7\xba\x81\x21\x32\x13\x8a\x7f\xf5\x1d\x7a\x53\x7e\xdc\xe4\x79\xed\xf3\x82\x25\xb6\x71\xdf\xbc\xe1\x86\x35\xff\xd5\x33\x5d\x07\xf0\x80\x57\x14\xc2\xe8\xf4\xa4\x39\x7f\x5d\xf0\xf2\x60\x1d\x8e\x97\x68\xb2\x3d\xf0\x15\x5c\x88\xc9\xc8\x22\x92\xe5\x68\xbe\x8f\xb0\xc0\x90\xd0\xde\x6b\x99\xeb\x7a\x69\xdc\x63\x2d\x04\x81\x07\x28\x5c\x20\xda\xef\x22\x61\xf8\xbc\x36\xd0\x5a\x35\x09\x66\x89\x04\xaf\xc4\x76\x9b\xee\xba\xab\x7e\x4e\x09\x56\x23\x1d\x10\xcd\x68\x3b\x97\x48\x83\xa4\xce\xd8\xe6\x66\x9f\xcc\x4f\xb7\x5e\xc8\x17\xbd\x22\x2a\x62\x69\xe1\xdb\x00\xe7\x54\x57\xce\xf8\x7b\x75\x0b\xc3\x04\x49\xca\x4d\x29\x9e\x34\xd1\xf2\x91\xa9\x53\x9b\x9a\x63\x1c\x14\x26\xa3\xcc\x0c\x97\x6c\xd3\x57\x0c\x15\x16\xb1\xc5\xf5\xbf\xdc\x28\xe1\xf6\xcf\x57\xa7\x9b\x29\xb2\x34\x5c\xd1\xd6\x29\x27\x14\x54\xf2\xc4\xa7\xda\xa7\x8d\xd2\x38\x0a\xd7\xa7\xdc\x44\x1e\x63\xd4\x9a\xe0\x06\x4e\x82\x93\x8d\x4f\xa6\x41\x45\x96\xc6\xf1\x16\xc7\x71\x7e\x19\x3f\x69\xa1\x36\x1e\xf4\x82\xe5\x65\x13\x62\x8b\x29\xaa\x81\x68\x98\x1d\x6b\xa3\x43\x2e\xc1\x71\x43\x2b\x53\xbf\x5d\xaa\xb4\xe9\x6d\xd5\x8c\x5c\x4d\x0b\xb3\xcb\xb1\x92\x8e\x97\x4e\x79\x15\x1d\x78\x91\xe3\x52\x8b\xee\x4d\x5f\xd9\x90\xdc\xa0\xc5\xcc\x8f\x81\xc4\xc3\x93\x5b\x8a\xb4\x7b\xd7\xd7\xb2\xde\xe6\x39\xc5\x8e\x7d\x0a\xdd\x4c\x69\xae\xab\x59\xfb\xc3\x72\xea\xc8\xe2\x6c\x2d\xc3\x41\xcb\x79\x3b\x06\xfe\x88\x32\x8f\x54\x9d\xf7\x58\x4d\xf0\x9b\xbc\x44\x5e\xda\xdc\x70\x56\x1b\x9f\x7d\x06\x56\x6e\x62\x2d\xed\xb2\x99\x8d\xb2\x73\x64\xc1\xc2\x46\x69\xf9\x22\xfd\x9d\x21\xb7\x7b\x9c\x0c\xef\x97\xce\x38\xfb\x0f\x49\x4c\x0f\x8f\x6f\xd3\x45\xa3\xbf\xf9\x1f\x3d\xc2\x7a\x08\xc3\x18\x27\xea\xeb\xad\xb2\x5c\x71\xda\xb7\xa4\x55\x3e\x6c\x68\x33\xcb\xc1\xe3\xb2\xb8\x62\x10\x25\xfd\x9d\x8a\x2f\x7b\xbf\xac\x13\xbb\xab\x9c\x0e\x17\xfd\x34\x05\x45\xb6\x0c\x41\xd9\xca\x2f\xa1\xf2\xb2\xa6\xba\x23\x54\xf0\xe7\x54\xe8\xec\x99\xe1\x08\x58\x35\x7a\x53\x5c\x9c\x7b\xf4\xfb\xf8\x71\x5b\x46\x9a\x9b\x62\x29\xa8\xf6\x94\x6b\x29\x9d\x2f\x35\x04\xb5\x6d\x27\x86\x03\xd3\x1b\xc7\xb2\x4c\x51\x43\x43\x52\x81\x1f\xab\x3c\x36\x1f\x57\xa7\x79\xb5\x1c\x6d\xf9\xb2\x38\x6b\x89\xe3\xcf\x28\x45\xd2\x0c\xb3\x54\xba\xfa\xc2\x35\xec\x58\x83\x10\x87\x8b\xff\xea\x38\x8e\x4c\x87\x30\x49\x58\x54\xbc\x15\xf9\x89\xff\x98\x02\x2f\xfd\x3c\x5d\x0b\x74\x90\x9e\x41\xbf\x07\xe3\x8a\x6f\xd2\x82\xb0\xab\xed\xc0\x81\x83\x56\x2e\x16\x70\x6d\xdb\x25\x58\x14\x23\xee\xbb\x10\x01\xc0\x3f\xdc\x44\xdf\x0e\x5b\x0c\xce\x10\xc8\x34\x6e\x62\x23\x89\x83\xac\xd2\x6c\x61\xf0\x0e\x7b\x5d\xa3\x1b\x82\x78\x7e\x5b\xf9\x3f\x9c\x41\x2d\x04\x90\xd8\x49\x5f\x21\x24\x8e\xd1\x3a\x90\x16\x09\x11\xfa\x34\xbc\x50\xfa\xd5\xd5\xa2\xc7\xe2\x3e\xee\xd3\x2e\xc4\x07\x7e\x93\x33\x5e\x50\x98\xee\xfb\x8a\x22\x02\x7f\x06\x2c\xb0\xa7\x49\x2a\x5d\x32\xcd\x8e\x95\x7b\xfa\x86\xf6\x2f\x7a\xbf\x25\xe5\x9f\xf3\x96\xa3\x58\xd8\x10\xd8\xdf\x57\xe9\xf6\x61\xf2\x34\x33\xd1\xf6\xcd\xb6\x64\x59\x4b\xb3\x95\x9c\x82\x18\xbe\xd7\x29\x6c\x60\x08\x4f\x3c\xd7\x55\x4e\x2a\x6f\x68\x58\x1c\xe6\x82\x35\xb2\x20\xca\x99\xbb\xb8\x95\x4a\x4e\x56\x4c\x88\x9a\x9d\xe4\x7d\x73\xde\x52\x6a\x6c\x58\x17\x94\x62\x0d\xc0\xd8\x60\x6a\x2d\x78\xcb\xd1\x51\x59\xf9\x2c\xba\x56\x13\x60\x6b\xc1\x61\x55\xf9\x19\x15\xc9\x2c\x49\x44\xf7\x51\xe4\x89\x9c\x68\x45\x16\x0d\x41\x73\x16\xad\x7d\xfa\x26\x22\xb6\x6f\x15\x89\x03\xb2\x2e\x67\x9d\x03\xe9\x1d\xd0\x25\x40\x2e\x71\x0f\xb7\x56\xae\xa7\x53\x6c\x8d\x57\x76\xd3\xbf\xd8\x63\xcf\x69\x73\xfe\x59\xa9\x9c\x82\x79\x3b\xa1\xf2\xb8\x47\xfb\x04\x81\x6d\x27\xe5\x54\x78\xf9\x33\x5d\x45\xf2\x43\xe2\x27\x9a\x9f\xd8\x3f\x32\xeb\x6b\xf2\xab\x17\xbc\x28\x49\xd2\x90\x18\xed\x1a\x20\x7a\x46\xf3\xb4\xce\xd4\x14\x9f\x86\xa3\x88\x73\x93\x05\xab\x32\xe7\x98\x89\x67\xfd\x2d\xe4\xbf\x23\x8b\xb3\xde\xfe\xf9\x3d\x8e\xef\x77\x55\x39\xb4\xb1\x5c\xa9\x05\x8c\xef\x57\x11\xec\xb0\x93\x8c\xa3\x35\x81\xd0\x73\xae\x74\x16\x35\xec\xa1\x86\x0a\xf3\x47\x1a\x4e\x81\x41\x13\x76\xe4\x4c\xb7\xe6\x91\x1f\xa0\x2a\xd7\x8c\x5d\xd1\x68\xeb\x58\x85\xd2\xd3\x35\x8a\x01\x3e\x1f\x1d\x49\xf8\x32\xca\x2f\x79\x4c\x33\xd7\x14\x28\xca\x77\xcc\x94\xdb\xd8\x05\x62\x81\xd3\xf9\xd5\x2f\xf3\x5c\xf7\xc7\x64\xb3\x80\x2b\x3c\x0d\x9b\x05\x1c\x9c\x8c\x32\x67\x29\x16\x5c\x21\xe4\x94\x7b\x30\xfe\xb7\xc1\x69\x71\x56\x0a\x8b\x6f\x2b\x3c\xcd\xeb\xbe\x4b\xb1\xff\x44\x71\x28\xdf\x26\x46\x00\x92\xa4\xb3\xbe\x96\xf9\xc4\x2a\x41\x64\xde\x36\x51\xc3\xa4\x37\x91\x09\x0a\x57\x9c\xc2\x24\x7e\xd6\x95\xb2\x73\xe8\x65\xa7\x08\xb3\x28\xfe\xe3\x1b\x84\x49\x45\xea\xf9\x0f\x6a\x93\x1c\xed\xe4\xc8\xaa\x0e\x68\x32\x4d\x75\x3b\x5f\x99\x13\x55\x63\x5a\x4a\x68\x11\x73\x31\x27\x74\x62\xc5\x0d\xb8\x83\x88\x8b\xb4\xe0\x9f\x01\x4b\xc8\x4d\xb8\x89\x42\x4b\x5c\x6b\x3b\x30\xd3\x55\x93\x2d\x8d\xa3\x98\x72\xc1\x4d\x54\x71\x9b\x0f\x6c\xff\x77\x98\x26\x51\x91\x66\xa6\x07\x0c\xa8\x88\x3b\xd1\x35\xb1\xa6\xea\x16\x85\xf2\x8f\x6b\xc3\xe9\x52\xb1\x5e\xb6\xd5\x56\x9d\x09\x79\x34\x89\xbf\xbc\xa1\x5c\x29\x7f\x46\x0b\x4a\x34\x54\x9e\xb7\x11\x48\x1c\xdf\x86\x26\x29\x66\xaa\xeb\x8b\xf1\x13\xb7\xa2\x15\xb8\x40\x62\xef\x4d\x7a\x53\xfe\xab\x52\x15\xdf\xef\x34\xa2\xed\xa1\x97\x59\x6b\x4c\x89\x6c\x9d\xa1\x1d\x67\xad\xd0\xab\x35\x8b\x2f\xf5\x33\x5d\x70\x9b\xa4\xc8\x02\xd4\x25\xd6\x35\xc6\x7a\xff\x34\xf1\x7f\x87\x5e\x66\xc1\x9a\x9a\x5d\x11\x7d\x92\xe0\xa9\x1a\x04\xfc\x97\x0f\xea\x8e\x15\xaa\xc6\x4d\x5c\x67\x7e\xa2\xe8\x4e\xc5\x9a\x49\x0a\xe6\x68\x88\xb0\xa1\x0b\x35\x1f\x35\x0a\xc1\x7d\xfb\x28\xf8\x4e\xb9\xfa\xed\xc9\xae\xf2\x6d\xbf\xa8\x78\x2a\x3b\x27\x4f\xab\x9e\x69\x9e\x07\x7d\xb3\xd3\xe9\x84\x9c\x2e\x1d\x76\x92\x1b\x62\xe2\xfb\xa7\x38\xc8\x97\x94\x60\xdb\x43\x5f\xc9\x42\x80\x83\xcc\x6f\xd5\x58\xa6\x73\x87\xbc\x81\xc9\x92\x28\xb0\x4a\x5f\x38\xf8\x3f\xf2\x5d\x12\xf0\x51\x0b\x18\x86\x2d\xea\xed\x31\x2a\x32\x9b\x0e\xc6\x7f\xac\x6d\x0a\x16\x44\x68\x6c\x08\x13\xab\xa3\x44\xe0\xed\x91\x95\x45\xc3\x1d\x4a\xdb\xf7\x9e\x8a\xb0\xd7\x74\xa3\xe5\x9e\x4a\xe6\x30\x5c\xc5\x66\x7c\x4b\x35\xc0\x9b\xd4\x99\xb9\x43\x9e\x49\xe2\x20\x13\xf6\x94\x94\xc6\xb5\xa2\x59\xef\xa8\x7e\x3a\xc2\x6f\xb4\xb3\xb4\x03\x07\xe4\xb1\xd2\x0e\x18\x55\xdb\xbd\x58\x47\x03\x1f\xe1\x95\xb3\x45\x0b\x07\xb7\xd3\xa6\xf7\x6c\xc5\x5e\x0c\x0c\xf9\x16\xd8\xae\xc5\x65\x45\x4b\xb9\xdc\x38\x46\xa5\xb4\x25\xdd\x53\x65\x18\x32\x35\x71\x0c\x9d\xb3\x3a\x52\xec\x6e\xe0\x37\x09\x13\x90\x45\x71\x8c\xac\x03\xb1\xff\x5f\xe1\x35\xfc\xa4\x36\xa5\xcb\xd2\x6c\x46\x4d\x4c\xcf\x6f\x69\x48\xeb\x4e\x75\xb5\xe8\x10\x08\x6e\x29\xf7\x85\xab\xca\x57\xa9\x67\x56\xa3\x2a\x40\x39\xf5\x5b\x00\x68\xb0\x54\x3b\x13\x67\xeb\xb6\xa3\xeb\x4a\xde\x25\x51\x8c\x61\x09\x49\x45\x73\x79\xd0\x2a\xc4\x11\x66\xe3\x1e\x07\x02\x69\x91\xa8\x76\x89\xb2\x25\x5d\x4d\xab\x82\x8e\xee\x92\x80\xfd\xe9\x44\x14\x85\x4b\x6d\x9c\xdc\x5b\x4e\xb3\x1e\xa8\x45\xc8\xfa\x20\xec\x64\x9b\x95\xd5\x89\xc5\xff\xe0\x3b\x7f\xab\x8b\x8d\x48\xf5\x4b\x6c\xa7\xa8\x0d\xd8\x2f\xf9\x4e\x55\xdf\x29\x29\xc6\xe3\x70\x45\xb6\x25\x17\xa6\xba\x21\xfe\xba\xc2\xac\x17\x59\x14\x24\x7d\x96\x6a\x15\x3e\x87\xe2\x76\x94\xda\x6d\x74\x38\x1c\x27\x51\x5e\xec\x76\xf7\x9f\xf1\x0e\x5a\xb6\x58\x90\xb6\x2e\x6d\x39\x8f\xb0\x62\xb5\x30\x16\x05\x24\x7c\x5e\xeb\xea\xe9\x41\x2a\xd3\xf7\xf8\x49\x59\x9b\xbb\x44\xc9\x8c\xc6\xd8\xe8\x46\x44\x93\x45\x81\x9b\xfd\x7d\x25\xa4\x77\xb6\x05\x17\x38\x4f\x02\x1e\x69\xce\x3b\x5b\x46\x60\xd5\xa5\x15\x92\x8d\xe2\xd5\xa7\x43\xaa\x3b\xab\x2f\x88\xef\xc0\xa7\x2a\x3f\xf1\x1f\xb7\xab\xe4\xb5\xa5\x25\x6a\x60\xa1\xa6\xb9\xa5\x68\x5a\xec\x4b\xc9\x7e\xe0\x6d\x26\x98\x5f\x1b\x07\xbd\x6c\x3c\x72\x7d\x24\xc4\x54\x34\xc4\xf9\xb1\x3a\x65\xe2\x60\x9c\x99\x64\x5a\x61\xb4\xbe\x83\x63\x18\xb3\x2b\x2e\x94\xf8\x89\xd2\x8a\xfe\x4e\x8b\x4c\x87\x67\x56\xd3\xd8\x85\x68\x69\x97\x39\x44\xd9\x09\x2b\xa4\x16\x2c\x2f\x47\xd9\xd0\x19\x83\x88\x2b\xb1\x6b\xb3\x69\xed\xa3\x20\x59\x27\xa5\x3e\x24\x73\x22\xfc\xe4\xf8\x58\x50\x61\x56\xd5\x98\xa0\x4e\x7e\xd6\x26\x49\xb7\x6a\x0a\x93\x31\xc3\xd7\x1e\xdb\x16\x72\x7f\xbb\x26\x04\x6c\xbd\x09\x83\x22\x88\xd3\x7e\xae\x30\x6f\xec\x2f\x2d\x3d\xf8\x16\x22\xd7\xaa\xe9\x9b\x22\xa8\x36\x8a\x54\x20\x72\x2f\xe8\x95\x72\x33\x9e\x50\xc1\x2f\x88\xf9\x2f\xb1\x35\x6f\x97\x4a\x36\xf0\xb6\x9d\x94\x2d\xf1\xec\xa2\x7a\x17\x4b\x79\x74\xf4\x47\xad\x53\x91\x0e\xab\x2c\x6b\x87\x6b\x8d\xdd\x42\xde\x8b\x79\xd7\x5b\x08\xae\xd6\x52\xca\x76\xe9\xaf\x2b\x29\x26\x78\x01\x21\x37\xde\xd9\x6d\x1a\x09\x8d\x73\x93\x4f\x69\xc6\x25\x2d\x19\x64\x1a\xf7\xb0\x98\x70\x98\x9e\x6c\xb0\xad\x8f\x2c\x50\x39\x8f\x76\xf0\x26\x69\x91\x6f\x6e\x68\x07\xfc\x38\x88\x7a\xd4\x9d\xc6\x51\xc3\x29\xa2\x13\xd0\x90\x8d\x76\x5d\x49\xbc\x5c\x6b\xd0\x50\xab\x10\xbd\x64\x92\x70\x30\x0c\xb2\x95\x19\x55\xfb\xd2\x2f\x46\xa7\xe5\x11\x22\x92\xcc\xed\xa8\x00\xb1\x1a\xbc\xd5\x15\x13\xec\x74\xcb\xf9\x36\x4e\x8a\xcc\x3a\x4c\x02\x7e\xfb\x67\xa5\x83\xe2\xfe\x59\x23\x13\x9c\x3b\xe4\xe5\x66\xd5\x24\x2c\xb5\x8c\x28\x0e\xc7\x5f\x7e\xac\x04\x39\x46\x71\x10\x9a\x7c\x86\xf2\x56\x54\x22\x30\x2d\x45\x42\x7b\xa2\xae\x33\xe6\x92\x32\xb0\x71\x84\x48\xd9\xd2\x93\xeb\x99\x30\x8e\x12\x9e\x2c\x23\x5f\xdb\x50\x52\x54\x1b\x9f\xaa\x45\x6d\x82\x2c\x89\x92\x3e\x83\x19\x01\x6d\xbb\xaf\x5a\x25\x0c\x66\x12\x81\x27\xcb\xd3\x59\x31\x45\x38\x30\xb9\x16\xdd\x87\xa6\x86\x40\x83\xdd\x88\x26\x18\x56\xd5\xca\x78\x38\xad\x78\x31\xe8\x24\x60\x1a\x76\x4a\x39\x37\xdf\x47\xc3\x0c\x95\x60\xd3\x12\x6f\xee\x90\x37\x8c\x62\xc3\xf3\x70\x99\xf2\xe3\x97\xf2\xe3\x46\x96\x3a\x3f\xbf\x40\x2c\x88\xa4\x27\x77\xb5\x55\xe5\xc4\x41\x14\x96\xb3\x60\x68\x40\x5b\x46\x99\x02\x58\x3e\x3f\x56\x1b\x52\x03\xf8\xdb\x08\xce\x8e\x0b\x95\x17\x26\x36\x39\xf4\x6a\x01\x10\x98\xa1\xc6\x08\x36\xe2\x7d\x82\xe4\x4b\x3c\x69\x29\x06\xb3\x20\x8a\xb3\x34\xe8\xf1\xe5\x16\xa6\x75\xc7\x4a\xf9\x36\xf5\x12\xf6\xed\xf3\xaa\x0d\x42\xec\x21\xca\x4a\xd0\x90\xc4\xf0\x83\x1f\xb7\x2d\xe5\xa5\xcc\x04\x2b\xe3\xd1\x94\xaa\xd8\x8e\x2b\xba\xfe\xf5\xfa\x81\xe2\x32\xd8\x20\x8e\xd3\x35\xc3\x29\x0e\x32\xd8\x33\x2a\xc5\xbe\xa0\xa1\x49\x80\x7c\x08\xf5\xc5\xcd\x0a\x92\xd0\xec\xa5\xd7\xa3\xa2\x7b\x62\xa2\xc0\x9f\x4c\xb1\x92\x31\xbd\x1d\x1c\xfd\xc2\xbf\x4f\x68\x63\x81\x08\xd2\xd7\xc6\x2b\xd8\xc7\x17\x81\xec\x6e\xe9\x2c\x14\x9f\xe8\x52\x59\x2e\xc4\x95\xce\x3e\xc1\xa9\x3c\x2a\x35\x45\xb0\x4a\x8b\xa5\xab\xfc\x48\xf3\x63\xa1\xd8\x82\xae\xfb\x46\xa9\xfc\xf1\x3b\x94\x48\xa3\x8b\xf5\x74\xd7\xd1\x8f\x6e\xa1\xa9\x2a\x12\x20\xca\x5a\x22\x89\x86\x3c\x13\x10\x83\x0c\x45\x69\xbd\xe0\x2b\xcc\x42\x10\xaf\xd0\xfe\xd1\x2a\x58\x32\x6c\xac\x7e\x1a\x3f\xd6\x42\xb7\x2d\x3e\x71\x71\x50\x30\x76\x02\x77\x02\xe6\x8b\xb8\x78\xf7\x94\x96\xc6\x6f\xd1\x91\x21\xda\x10\x6d\x82\xa0\x51\xd2\x8b\xc2\x62\x28\x9e\x87\xe2\xe9\x52\xbd\x85\xb8\x57\x29\xbf\xb7\x34\x1b\x9a\x8c\xb9\x51\x2c\x1f\x81\x62\x4c\xb4\x24\xda\x84\xfd\xc3\x70\x9c\xb3\xc0\x95\x32\xa0\x9f\xd3\x66\x12\x82\xe1\xf8\x86\x55\x1d\x88\x86\xa3\xc0\xa9\x6b\xe2\x75\xb0\x5c\xe1\xc7\xdd\x67\xd4\xc0\x1c\x1e\xc1\x1d\x45\x63\xc0\x15\xe4\xc7\x8d\x12\x6a\x71\xd6\x1b\xd1\x5c\xcf\x95\xbc\x4c\x15\xa0\x5f\x2e\xb4\x01\xa9\x46\x47\xe1\x52\x4e\x9a\xfd\xb6\x03\xef\xe4\x44\xaf\x6a\x7e\xe1\x3b\x5a\xf2\x6c\x9c\xad\xae\x77\x54\x5b\x07\x8a\x6a\xfc\xb8\x71\x33\x16\x67\x61\x50\x3b\xce\x44\x54\x6d\x8e\x43\xd5\x7b\xa5\xe2\x38\xbc\xd7\xd8\xec\x87\x67\x5f\xf2\x06\x26\x1e\x71\xc2\x2b\x5f\x84\xde\x40\x3c\xda\x5a\x20\x69\x69\x66\xfa\xcc\x31\xc4\x3a\x7b\x5f\xc3\xdd\xdf\x6f\x11\x37\x58\xf0\xe2\x20\x41\xc0\x06\x36\x7a\x6e\x73\x43\x49\x05\x07\x49\x31\xc8\x82\xa3\xd3\x4a\x76\xf4\x3c\xbe\x39\x66\x72\xc7\x54\xa7\xf8\x3c\xe6\xbf\xfc\x0f\xb6\xc1\x1d\x25\xc1\x52\x14\x47\xc5\xba\x02\x29\xc3\x0b\x8b\x1f\x5b\xa3\xc3\x30\x88\xa3\xe5\x34\x4b\xaa\x3c\x8e\x71\x30\xe8\xf5\x4f\x77\xab\x18\x2c\xb4\x21\xfa\x2e\x08\xe3\xf7\xec\x10\x69\x29\x8b\xcc\x32\x91\x26\xad\xb1\x87\x85\x61\xb1\x87\xaa\x68\x08\xd7\x40\x05\xfb\xe5\x70\xe3\x5c\x11\x4b\xf6\x9c\xf6\xce\x9a\x9a\x38\x3d\x9e\xd3\x8d\x6e\xd0\xe2\xac\x17\xa7\xab\xd0\xec\x01\xad\x02\x1f\xcd\x8f\x2d\xba\xa5\x9f\x8e\xb3\x21\x60\x80\xaf\x70\x78\xfd\x96\x9a\xf3\xb0\x9b\x26\x16\xe9\x05\xc5\x4b\xc8\xd3\x30\x0a\xe2\x28\x2f\x76\xe2\x8a\x80\xc6\x01\x30\x91\xe0\x37\x94\x79\x12\x47\x59\xc6\xb7\x57\xbf\x75\x73\x07\xc6\x2e\xc8\xba\xdf\xc6\x2f\x13\x55\x36\x29\x13\x7a\xa6\x37\x0e\x8b\x68\xc9\x22\x06\x2c\x3e\x4a\x81\xa5\xec\x94\x67\x18\xac\x07\x09\x50\xeb\x32\xe0\x77\x40\x77\x88\x73\x8b\xac\x9c\x02\xf5\x5e\x6f\x64\xa5\x55\x61\x97\x16\x45\xfa\xe9\x8c\x65\xe7\x30\x37\x8a\x46\x66\x4a\xfd\x1b\x44\xb0\x30\x3e\xbe\xa1\xe1\x9d\x9f\xb4\xe9\x71\x7a\x41\xbe\xb2\x65\xe0\x7f\xd2\x77\xb5\xed\xc9\x72\x17\xff\xed\xd1\x29\x07\xf9\x7b\xb7\xec\xfc\x8a\xe8\xd5\x7c\xe8\x4f\x1d\xfc\x3b\x5f\xe1\x9f\xf5\xbb\xfa\x5c\x2c\x52\xf2\xd4\xb1\xa2\xcb\x8b\x12\x38\xaf\x2a\x2d\x54\x9c\x09\xd6\x77\x75\x61\x4b\x85\xcd\x2c\x26\xea\x92\x50\x03\xe6\xef\xfd\xa5\xae\xee\xad\xc4\xc1\x3a\x23\xa8\x44\x1e\x40\x45\xd0\x26\x20\x88\x4c\x26\xa3\xd4\x61\x7e\x85\x37\xab\x38\xb4\x8a\x94\x94\x17\xd9\x38\x24\x6d\x0b\xa5\xaa\xf9\x03\xd4\xed\x18\xb7\x83\x41\xc3\x23\xff\x89\x05\x24\x0f\x52\x33\x0c\xdc\x75\x15\x5b\x11\x87\x73\xbb\xa3\x3c\x41\xc2\x34\x4e\x87\x4b\x51\x30\xa5\x7a\x4e\xdf\xf7\x1d\x6d\xf9\xa2\xd2\xe0\xbc\xaa\xd5\x41\xfa\x01\xf5\xc3\x44\x5a\x5c\xeb\x85\x33\xcd\x18\xcd\xbd\xb3\x2d\x8a\x4a\x5e\xd0\x5b\x35\x59\x11\xe5\x5b\x24\x2d\x4b\x2d\x69\x69\x43\x15\x09\x69\xaf\x46\x79\x2d\x55\xbf\xec\xab\xc5\xa5\x0d\xba\xfe\xf6\x7f\xfa\xb7\xe9\xfc\x40\x23\x06\x9e\xe6\xd8\x9d\xec\xcb\x26\xc0\x64\xcd\x7e\x86\xb8\x42\xb5\xc6\x98\x06\x81\xb6\x94\x70\x22\x9e\x54\x1a\x3a\x3d\x93\xed\x76\x91\xe4\x0d\x8c\x28\xb0\x52\xa0\x14\x88\x48\x7b\x96\x66\x4e\xe8\x9d\x30\xa0\x0c\x55\xe0\x9e\x89\xc3\xd7\x6e\x00\x76\x8f\xaf\x3a\x03\xb7\x3e\x69\xeb\x74\x8e\x08\xf0\xfd\x78\x63\xda\xf9\xa2\x17\x2c\xa5\xe3\x82\x60\x8c\x88\x4d\xd3\xd4\x02\x40\x82\xb5\xad\x6b\xdb\x36\xbf\xbe\x77\xe2\x16\xac\x19\x8e\xe2\x74\x1d\x8b\x02\xf3\xaf\xbb\x4a\xad\xf2\xae\xff\x5c\xad\x65\x15\xe5\x39\x24\x79\xb4\x4a\x99\xd2\x03\x6a\x4e\x1c\x5f\x21\xb4\xae\x15\x86\x14\xec\xdd\xeb\x6a\x35\xbd\x5e\xeb\xf4\x06\x7d\x06\x2b\x23\x63\xfc\xb6\xa6\x43\xfe\xa0\x54\x6e\xcf\xdf\x56\x46\xc4\x53\xa0\x43\x8a\xf6\x9a\x5b\xd5\x8f\x35\xc8\x6a\x04\x2f\xcd\x8b\x20\xb3\x99\x87\x78\xa2\xd5\x08\x6f\x4f\x6b\xe7\xdc\x68\x29\xc8\x77\x53\xac\x45\x37\xf5\x82\x66\x26\x9d\x52\x9c\xff\x3b\x48\xcf\xf9\xaf\xb0\xb4\x70\x68\xfc\x84\x73\x62\x7e\x86\x1d\x8b\xdf\xbf\xe1\x6f\xff\x9c\x7d\x89\x83\x27\x6e\x68\x63\xb6\x20\xcf\x7f\xb9\xe3\x7e\xd6\xbd\xda\x9c\xd8\xdf\xab\x90\xac\x69\x5c\xbc\x46\x76\xd7\xee\xb6\xf8\x35\xd1\x62\xb7\x2b\x4c\x52\x3c\xab\x06\x73\xa7\x71\x75\x91\x01\x83\xbc\x2d\xbc\x17\x7c\x77\xf0\x8b\x9e\x23\x15\x62\xb4\xe1\xfe\xff\x20\x21\x21\xf1\xbd\x81\xd6\x24\x62\x12\xbb\x33\xd0\x1d\xf9\xcd\xff\xdf\x84\x0a\x75\x1c\x6b\xd3\x64\xca\x87\xbf\xba\x80\xb5\x2e\x3d\x57\xdb\x75\xff\xa7\x5e\x57\x61\x16\xf6\x52\x69\x82\x90\x76\x03\xed\x7c\x9c\xca\x1f\x94\xd6\x30\xef\xaf\x3d\x3f\x71\xc5\xe5\xcc\xa4\xb3\x6f\x4e\xd0\x44\x82\x27\x90\x50\xb8\x9c\x05\x49\x38\x88\x72\x29\xe8\x44\x7d\xaa\xa3\x54\xa9\x5a\x8c\xa3\xc2\x81\x09\x46\x1d\xa7\x7b\x73\x56\x19\x47\x9d\x55\x49\xc0\x72\x14\x47\xa3\x28\x49\xf3\x99\xba\xbb\xe4\xfe\x79\x57\xc2\x69\x35\xa7\xea\x32\xb3\xe1\x48\xa9\x46\x53\xdb\xba\xb6\xcd\xc6\x68\xf7\x9d\xca\x1c\x77\x53\xa1\x84\x9f\xe8\xba\x23\xf9\xf1\x89\x02\x64\x30\x06\x83\x0a\xbd\x74\x6f\xd7\x19\x28\xb2\x7a\xa2\x48\x01\xd5\xe8\x40\x79\xf1\xac\x83\x74\x43\xf6\x02\x07\xf7\x03\x44\x3f\x66\x00\x29\x0d\x07\x9e\xc1\xa2\x07\xb1\x63\x52\xdd\x5c\x31\x40\xaf\xbe\x24\xc6\x41\xbb\x71\x3f\xd1\xa3\x9d\x9a\x50\xe1\x88\xf2\xf2\x9a\xef\xd8\xe8\x77\xb4\x70\xc1\x69\x6d\xa0\xd8\x99\x28\x64\xc5\xce\xae\x92\x8b\xba\x8f\x76\x1d\xde\xf9\x0c\xcf\xb6\x11\x55\xc1\x23\xe4\x6f\xf3\x0e\xad\x15\x74\x26\x37\xd0\x1d\xe1\xbf\x2a\xdd\xf6\x19\xa4\xab\x49\x50\x25\xb5\x53\xee\x22\x80\x92\x6e\x21\x2a\x87\x67\xe7\x37\xb5\x42\x57\x38\x48\xd3\x5c\xeb\xf6\x3e\x50\x92\x9f\x1c\xcb\x31\x9e\x3c\xd7\x62\x00\xf3\x8a\xd7\xcb\x82\x61\xa0\x94\x83\x3f\xd2\x7a\xed\xba\x43\x7d\xb3\x25\x77\x78\xa5\xda\xc3\x4e\x84\x0a\x09\xcc\x2d\x65\x6b\x74\xab\xa5\x43\xef\xa5\xcb\xcb\xf9\x20\x4d\x45\x3c\xc4\xb2\x21\xab\xaf\xca\x4f\xda\x58\xac\x40\xe5\x0b\xf7\x15\x6b\xf6\x9a\xea\x0c\x5f\x43\xd2\xc8\xa7\x67\x3e\x4a\x93\x3c\x92\x72\xe2\xf0\xac\x1d\x35\xa9\x21\xc7\x27\x6d\xe0\xff\xb5\x28\x5c\xb1\x26\xd7\x28\xaf\x51\x0f\xf3\x63\xdb\x0e\xea\x9b\xa4\xfa\xf5\x4c\x2c\x44\x2c\xbc\xa6\x11\x84\x37\x38\xe6\x22\x83\xfe\xbf\xb1\x50\x90\xf9\x42\x73\x0b\x71\x67\x4f\xab\x06\xc5\x20\xcd\x8b\x88\x15\xb0\x91\x63\x32\x50\x43\x9a\x32\x74\xc5\xd1\x46\x51\xca\xb7\xab\x26\xeb\xc5\xe9\x6a\xbe\xd2\x51\xd5\x56\xa9\x6b\xb2\x36\xf3\xbd\x22\x53\x36\xe3\x16\x53\x6a\x27\x47\xc7\x7d\x57\xe6\x2d\x45\xaf\x05\x59\x66\x50\x6b\x23\xdf\x60\x2a\x20\x3f\x51\x1c\xd8\xcc\x84\x69\x9f\x9c\x59\x3a\x0e\xe0\xf8\xa1\xef\xb2\x82\x0f\xed\xc5\x5c\x0e\xe2\xc2\x64\xf6\x3b\xe0\x5a\xff\xa9\xef\xa6\x53\x7f\xaa\x34\x72\x82\x9c\x4a\x9d\xc2\xd0\x51\x3d\x6f\xa1\x2f\x4e\x5c\xe0\xbc\x96\xd7\xb9\xeb\x3b\x85\xe7\x13\xa5\xeb\x0b\x5c\x51\xe8\xd4\x26\x2c\x7a\xff\xbc\x17\xac\x05\x2b\x9c\xe0\xe1\xbc\xf8\xe3\xd2\x65\xbd\x7f\xec\x3b\x19\x10\x71\x17\x64\x35\x8a\xba\x3e\x1d\x10\x25\xdb\xbb\x4a\x95\xf1\x5a\x2d\xe5\xe8\x45\xc1\x0e\xc7\xb4\xd8\x44\xc2\x59\xe3\xca\x63\x6b\xbe\x5d\x3a\xcc\x75\x87\xf2\x29\xd4\x18\xd3\x5d\x45\xb0\xb9\xa7\x8e\xed\x91\x29\x4c\x36\xad\xba\x6f\x37\x14\x68\xe3\x5e\xe9\x26\xa8\x9f\xe0\x4c\x10\x38\xaf\xb5\x1c\x08\x33\x56\x0d\xb1\x3e\x18\xce\x15\x04\x41\xdc\x3e\x51\x6a\x46\x48\x42\x50\x0c\xdd\x53\xd3\x71\x73\x94\xe6\x72\x14\xab\xf0\x51\xa8\xcc\xd0\x25\xfe\x36\xdd\x25\x84\xf1\x47\x2a\xc0\x2d\xa5\x69\x31\x40\xca\xc7\x44\x0b\xfa\x16\x42\xba\xf8\x34\xe0\x77\x3e\x08\x32\xe9\x6b\xa3\x2b\x7f\x53\x7b\x90\xde\x54\x98\x76\x11\x12\x81\x70\x32\xdb\x3f\x2b\x0a\xff\x89\xb2\x46\xb0\xdf\x82\x38\x9b\x9f\xf7\xe6\xe7\x0f\xee\xed\x7c\xf1\xd7\xf4\xc5\x14\x2d\x9c\x6d\x5a\x15\x11\x13\x11\xcc\xb6\x8f\x21\x1c\xc8\xea\xa3\x45\x86\x95\x82\x00\x8e\x6a\x19\xfc\x05\x1c\x04\x0f\x7d\x25\x37\xf0\x90\xe6\xce\xd6\x5a\x77\xd1\x09\xff\xd2\xc6\xb4\x1a\x02\xd6\x47\xeb\x9a\x32\x98\x7e\x13\x77\x08\x7f\x34\x85\xa3\x0d\x93\xd6\xed\x5d\x3d\x14\xfb\x48\x93\x21\xce\x34\x7a\xd3\xaf\xbe\xea\xe5\xc6\x10\xce\xb9\xe3\xe8\x1f\x27\x69\xd3\x0a\xb9\xe1\x19\xdb\xda\x21\x8a\x66\x9a\xd5\x98\xae\x77\x74\x3b\xf9\x4e\xe3\x03\x5e\xa4\x25\x93\x91\x06\x86\x3a\x99\xcf\x93\x14\xa0\xfc\xde\x4f\x95\xc5\x8c\x3b\xaa\x35\xf9\x63\x25\xe0\xf3\x63\x85\xbc\x1c\x8d\x63\x6a\x92\x5b\x7c\x2a\x36\x1c\x7a\x7b\xd4\x9f\xd8\xbc\xd8\x26\xda\x5f\x64\x56\xf4\x48\x44\x7b\xb4\xc7\x90\x9a\x2e\x98\xa3\x23\x93\xe4\x06\xdd\x1c\xdc\x8b\x1b\x1a\x49\x78\x5c\x39\xb1\x9c\x29\x9f\x50\xe6\x32\x3d\x76\xbb\x40\xf8\x3f\xa1\x18\xa3\x27\x6a\x36\x8e\x79\x11\xc4\xb1\x61\xe3\x37\x06\xdc\x29\xdd\xc1\xb3\x8a\x97\xdc\x27\x1b\x95\xf5\x1d\x94\x7f\x68\x6d\x7f\x20\x85\x99\x2f\x69\xff\xe1\x2b\x73\x4e\x2f\xb9\x4a\x99\xf8\xaf\x80\xcc\x93\x7f\xf9\x8c\x2a\xd1\x92\xe5\xac\x2a\xb7\x30\x43\xde\x3f\xdf\xaa\x22\xde\x14\x06\xf3\xa2\x3c\x8d\x83\x42\x20\xc4\xd6\xf2\xdf\x62\x6c\xfe\x85\x36\xd7\x3f\xaf\xa0\xe3\xa3\x20\x4e\x87\x51\x92\x76\x1c\x65\x95\xcb\x1e\x7e\xd2\x08\xeb\x0b\x2f\x1f\xf4\x96\x83\x28\x9b\x72\x53\xb5\xcb\x8e\x6b\xf0\xbf\x9e\xde\x5a\xd9\xd8\xce\xca\xb8\x88\xe0\x44\x40\xdf\x11\x7f\xc0\x06\x12\xfc\xc4\x36\x07\xfa\x59\xb0\x6a\xd6\x49\x33\xd7\xda\xef\xdd\x50\x1e\x62\x37\x6a\xe1\x3f\x8e\xc2\xa7\x69\x67\x23\x9f\xbe\xe1\xab\xb2\xe0\x13\x6c\x67\x7e\xe2\xeb\x53\x94\xee\x01\xaf\xd3\x89\x82\x02\x9e\x03\x02\xd4\x4a\xfb\x54\x37\x14\xc7\x38\xbc\x5c\xac\x6d\xb3\x3a\x85\x69\xb2\x2a\xd3\x3f\xfa\x7d\x80\xca\x33\xd7\x1d\x41\xea\x87\x38\x53\xd1\x5c\x81\x54\x09\x2a\xaa\x1f\xa9\x73\x74\xcf\xc4\x5d\xb2\x91\xc9\xf2\x71\xd0\x93\x7d\x82\xe4\xf9\x38\x72\x6c\x7e\x52\xa3\x8a\x25\x2f\x14\x4f\xd2\x3f\xa2\x4c\xe0\xfe\x0d\xa2\xd4\xe3\x93\x6a\x31\x72\x87\x8c\x3e\x9b\xad\xd7\xf1\x0d\xa9\xf7\xb4\xf0\xf3\x5d\x47\xfd\x3d\xc7\x60\x64\x1c\x91\x17\x4a\x2d\xe9\x0d\xd0\x9e\x5d\xe5\x5f\x3a\x52\x97\xc0\x93\x38\x46\x17\x42\x86\x27\xd5\xa5\x57\x1d\xb5\x57\x2c\x67\xa0\x65\xce\x37\x32\xbd\x28\x28\x32\x56\x10\x13\x50\x51\x47\xb9\xe6\xba\x22\x78\xc8\xc8\x6f\xf6\x86\xa3\xe4\x48\x7c\xe2\xb6\xe6\xeb\xf0\x41\x8a\x52\xac\x2b\xac\xf0\x4e\x57\x2d\xf7\xce\x44\x8e\xee\x2c\x58\x67\xee\x29\x86\x50\xd7\x15\xe4\xe3\xba\x62\x50\x0f\xd3\x22\xcd\xd2\x38\x00\x1c\x4b\x52\x5c\x07\xc1\xba\x46\xe7\x0c\xba\x06\xdb\xba\xae\x1b\xb3\x36\x30\x99\xa1\x86\x4f\xde\xc1\x85\x96\x61\x17\x85\x16\x19\x83\x3d\xaf\xc2\x54\x61\xe2\x38\xea\x9b\x24\x34\x33\xae\x05\xcc\xe3\x13\x11\x11\xa7\x2b\xab\xc8\x4f\x0b\x96\x3b\x4a\xcb\x5d\x98\x50\xcf\x2a\x3e\xda\x28\xcd\xa3\x22\xcd\xd6\x75\xb4\x7f\xa4\x40\xb3\x8f\x1a\xf3\xb3\xf9\xf9\x83\x5e\xc4\x8b\x12\xd9\xd4\x65\xac\x22\x7e\xd2\x66\x25\x94\x57\xe7\x10\x33\xfa\x00\x65\xfa\x6d\x5e\x52\x52\x5c\xd1\xc7\xf3\x6c\x50\xe1\x64\x32\xd3\x1b\x87\x06\xa9\x05\x70\x71\x37\x54\x6a\xc1\x5d\x6f\x49\xe3\x5b\x71\x6c\x71\xc0\xee\x50\x38\x94\x1f\xe1\x8a\xf1\x93\xb2\xae\xb6\x25\x72\x09\xa8\x88\x66\x30\x79\xe5\x27\x5d\x35\x29\x18\x8f\x46\xb1\x95\x11\x62\x58\xa9\x12\x52\xb9\xd8\xda\x18\x1f\x05\xb9\x0c\xf2\x44\x67\x5d\x11\x0b\x1f\xe0\xe4\x94\xf4\xf4\x53\x81\x0a\xab\x11\x84\x4d\x54\xfb\x02\xbf\x48\x7a\x19\x6d\xd5\x50\xba\xbc\x5c\x1d\xa2\x1d\xa7\xdb\x73\x41\x49\xf5\x5e\xf0\xb5\xd0\x6c\x52\xb0\x31\x2c\xa6\x75\x3f\xd0\x83\x85\xfb\xa5\xf3\x2c\x85\xba\x6e\x4d\x86\x00\x49\x17\x1a\xed\xfc\x6a\x0b\xf0\xc9\x83\xa4\x97\xa1\xbf\x2c\x17\xc9\x61\x52\xcf\xea\x29\x50\x2b\x21\x34\xe3\xe3\xfc\x95\x7f\x87\xe7\xe2\xc8\xa4\xa3\xd8\x3c\x4f\x67\x80\x48\xc9\xd0\x96\x12\x20\x3c\xbd\x07\x33\x99\x10\xa2\x58\xaf\x9f\x7e\x0e\xd0\x2d\x77\xfc\x1a\x45\x83\x0e\x04\x24\xa7\x1b\x0a\x6e\xbb\xad\xdb\x39\x22\xbd\x5a\xb8\x80\x5b\x4e\x23\x45\x03\xab\x1d\x3c\x77\x88\xcf\xe4\x5d\xd4\x27\xc6\x67\x9c\xe5\xf5\x2f\xfc\xd6\x2a\x70\x31\xf9\x07\xe7\x09\x7f\x20\xe2\x3d\xb6\xf1\x71\x00\xf1\xf1\x53\x20\xe9\x82\x30\x70\x9f\x8e\x36\x1c\x27\xbb\xba\x8a\x07\xb6\x7b\xf2\xa4\x83\x04\xaf\x46\x3c\x65\x6f\x73\x0d\xd2\x1b\x61\xdd\x24\x3b\xaa\xa5\x62\x5b\x0b\x0e\x73\x80\xc4\x9e\xfd\x6d\x95\x60\xcf\x27\x0a\x63\x88\x00\x28\xad\x08\xd7\x68\x1f\x46\x45\xc6\x93\x25\x74\xef\x7f\x8a\xab\x26\xc9\xae\x5b\x1b\x1b\x8a\x9f\x17\x25\x3d\x33\x32\x49\x8f\x30\x5f\x0e\x63\xee\x2b\x8c\xd0\x1d\x2c\x1f\x71\xb7\xc2\x85\xb5\x79\xc3\xfc\x3c\x5f\xbe\x37\x4a\x75\x1c\x9f\x2d\x1f\x73\xd0\x1c\xce\x75\x05\x94\x56\xc7\xab\xb9\x60\xf4\x55\xb3\x66\x62\x96\xed\xc0\xfa\xc6\x36\xe2\xc7\xba\xa2\x3d\x3a\x88\x96\x22\x16\xc0\xb7\x63\xe5\xff\x8e\x8e\x27\x7e\xdc\x36\x55\x5f\xce\x82\xfe\xd0\x24\xb6\xb7\x2d\x00\x6c\x07\xc5\xbc\x6b\xb3\xa4\xe5\x38\x0a\x57\x5c\xf3\x48\x9c\x20\x68\xe5\xf2\x93\x46\x75\x37\x3f\x5f\x9f\x03\x58\xec\x0d\x93\xf9\xf9\x89\x62\x10\x65\x26\x34\x49\x11\xaf\x93\x8c\x2c\xde\xf6\x2a\xf6\x90\x60\xa1\xe8\xca\xb1\x7d\x23\x5f\x39\xa4\xe9\x7f\xea\x3b\x5e\xe3\x47\x4a\x9d\xe2\x43\x6c\x0f\x7e\x33\xba\x24\x98\xaf\x5c\xd4\xce\xb9\x10\x57\xe1\x78\x8c\xc8\xcf\xf0\x44\x7e\xa2\xa0\x4a\x4b\xe3\xcc\x04\x63\xf4\x83\xb1\xee\x7f\xbf\x54\x9b\xe0\xf7\xfd\x9a\xf3\x90\xa5\x5f\x8a\xfb\x8e\x42\xdb\xde\xda\x4a\x88\x3a\x3c\x3b\xef\x7d\x65\x8e\xca\x67\x44\x37\x90\x4d\xf9\x71\xa9\x0f\xaa\xe5\x34\x1b\xe6\xd3\x0a\x97\x7d\x59\x3b\xe6\x00\x8a\x28\xde\x20\x0e\x15\x73\xb9\xcd\x12\xc5\x0c\x47\x83\x20\x8f\xb8\x6c\x43\x73\x14\x4b\x8d\x1f\x37\xee\xec\xe1\xd9\x05\xcf\xc4\xd1\x50\x63\x32\x18\x0d\xa4\xe8\x2b\x35\x19\xbe\xa1\xc9\xaa\x74\x62\x1d\xa7\xb2\x15\xb6\x74\xb3\xe6\x77\x4a\x87\x8e\xbf\xe2\x3b\xf1\x6b\xc2\xb1\xd4\x7d\x96\x55\x54\xb8\x52\x0b\x25\xbd\x28\xd8\xe3\xa6\xbf\xc7\x70\x4e\x58\x91\x9d\xfd\xf3\x56\x91\x9d\x3e\x17\xc1\xf0\x37\x7c\x75\xee\x4e\x75\x9d\xaa\xe1\xed\xd2\x9d\x7a\xdb\x6b\x80\x27\xe7\xb8\xf9\xed\x52\x4f\x2a\xef\xb4\xa9\xe0\xb1\x55\x88\x83\x79\x5f\xf2\xb5\x27\xac\x92\xf8\x89\x92\x65\x93\x4b\x3d\x66\xeb\x8f\xcb\xca\x16\xfc\x72\xf3\xa8\x7f\xf9\xa0\x97\x91\x28\x98\x12\x3f\x3f\xaf\xc5\xcf\xcf\xbb\x43\x31\x4c\x33\xc3\xa0\x43\x1c\x17\xb7\x6a\x3a\x57\xf4\x22\xf4\xb5\xde\x6b\x63\x61\x66\x63\xe0\x08\xaa\xd7\xdb\x3b\x31\xef\x48\xd2\x2d\x3c\xf9\x22\x0b\xa2\x04\x64\xe1\x83\x4e\x15\xdc\xae\xac\x2b\xfe\x73\x5a\x4f\x21\x8f\x7a\xb6\xad\xb8\x60\x41\x1e\x0a\xf0\x51\xca\xf9\x92\x9b\x30\x4d\x04\x9a\x87\x7f\x3c\xa3\xfe\xf0\x8c\x6a\x49\x65\xe3\x24\x5d\x5e\xa6\xab\x83\xa6\x27\x24\x58\xf9\xb1\x62\xcd\xff\x97\xff\xe1\xac\x6a\x56\x6f\xa8\x66\xf5\x86\xd2\xb4\x5b\x49\x47\x23\x13\x13\x9a\x40\xaa\x15\x3a\x40\xd9\xfc\x59\x39\xc4\xfe\x1f\x77\x54\x64\x0b\xc2\xd0\x8c\x0a\x51\x30\xc7\x02\xfb\xd8\xd7\x5d\xa5\xd2\x41\x69\xe1\xb7\x2e\xdd\xa6\xa7\x55\xfe\x1c\x07\xeb\x8c\x92\x94\x46\x46\xc7\x29\x11\xb7\xba\x15\x05\xfd\xcc\x48\xad\x8e\xb8\xf9\x53\xd5\x2c\x7e\xa4\x8b\xa8\x4e\xa3\xb7\x7d\xe0\xc0\xa2\x17\x9b\x28\x1f\xb3\x78\x8f\xe5\x39\xda\x4b\x73\xde\xf6\x1f\xa3\x3c\x08\x50\x43\xb1\x05\xbd\x3e\x26\x2f\x36\x4a\xfb\xc3\xb3\x5e\x18\xa7\xb9\x99\x76\x4a\xcc\x0f\xa8\x54\xc4\x21\xfb\xe7\xd8\xbb\x16\x5e\x6e\x0d\xdb\x9b\x73\xe3\xf9\x79\x2f\x4f\xe3\xa8\x17\x64\x51\xc1\x85\x85\x74\xcf\x75\x5b\xfd\x69\xdd\x00\x8e\xa3\x7c\xb0\xab\xe6\x2a\xa5\x00\xfc\xd7\x55\x4f\xef\x72\x59\x37\xa2\x72\x2e\xf2\xc7\x4b\xc5\x6c\x7a\xbc\xab\xcd\xd4\xef\x2b\x61\xd6\xbb\xaa\x4b\x44\xaa\x18\x2e\xa5\x83\x50\x3d\x3f\xd6\x10\x81\x51\x16\x0c\xa6\x9c\xe5\x19\x07\x0c\xd4\x78\x17\x55\x1a\xf4\x8f\x34\xac\x31\xcc\xd2\x3c\xdf\x53\x5d\x28\x66\x58\xd2\xbb\x03\xe7\x71\x9e\x8e\x11\xb1\xcd\x50\x26\x2b\xdf\xf4\x15\xd7\xfe\x1c\x9d\x8e\x80\x65\xbe\x8d\xa4\x14\x25\xf8\x4d\x54\x0b\x18\x53\x01\x10\x51\x1b\x56\xa0\x17\xf2\x40\x5d\x62\xb8\xbc\x87\xca\x24\xeb\x27\x9a\xe4\xf4\x13\x0b\x39\x32\xab\x26\x5b\xa7\x12\xd3\x0a\x91\xce\x1d\xe2\xf5\xf8\x0b\x5d\xd7\xf6\x99\x99\x38\x2d\xac\xab\xda\x62\x62\xf7\xc4\x11\x65\x0a\x33\x1c\xa5\x59\x90\xad\xb3\x81\x9a\x26\xee\xe1\xc7\x3f\xf2\x95\x5e\x11\x93\x5d\xc4\x48\xc7\xe5\xaa\x8f\xea\xf0\xa8\x67\xb4\x0d\x41\x2a\xc4\x10\xf1\xee\xbe\xa4\x3c\x83\x2f\x35\x8c\xdf\x3e\xef\x85\x63\x50\x29\x45\xb2\xa9\xee\x0c\x62\xbb\x79\x0f\xf5\xc7\x10\xb6\x30\x29\xa6\x1d\x14\xea\x2c\xbe\x38\x3f\xa1\x08\x66\x15\xf2\x9d\xe3\xb6\x6a\x1e\xa6\xe3\x22\x4c\x87\xb5\x2a\xe6\x32\x6e\xb6\xe8\x89\x2a\x66\x0d\xb5\xdf\x9f\xa3\xca\x45\x30\x37\xd5\xe5\xb6\xf2\x02\xfb\x64\x4c\x3c\xdd\x45\xff\xa0\x8e\xd3\x41\xd4\xfa\xb1\xf2\xbc\xb8\xe5\x6b\x91\x37\x8c\xe1\xf1\x0e\xdb\x09\x11\x40\xf7\x7a\xe7\x5e\x12\x31\x00\xe4\x8f\x25\xbb\x90\xa7\x7d\x83\x22\x01\xa8\x04\xd7\x7c\xa5\x49\x3d\xc1\xe2\x15\x5c\x26\x5d\x13\xc6\xd1\x10\x65\x5a\xc9\x8b\xc8\x60\xef\x22\xad\x28\xb4\x17\x4a\xb4\xeb\x10\x2f\x79\xc8\x83\x0d\xfc\x89\xcd\x38\x98\xdd\x92\x4f\xab\x5e\xc7\x05\x4c\x09\x64\x0c\x8f\x5f\x8d\xeb\xc8\x5a\x41\x42\xd8\xb5\x1a\x6f\x6b\x51\x9e\xd3\xba\x46\x9d\xf4\x99\xae\x16\x00\xfb\xae\x16\x61\xc1\xdc\x56\x1e\x2b\x91\x9b\xc7\x5b\x35\x90\x46\xc1\x3a\x79\x5f\xe3\x16\x30\x0e\x03\x44\xb9\x6b\x8a\x86\xc5\x13\x71\xd6\x28\xfb\x54\xc3\xb4\x91\x49\x82\xb8\x00\x33\x11\x71\xe3\x9e\x1a\x61\xd7\x1c\x06\x4e\xb5\xe0\xfc\xbc\xaf\x8d\x23\xf6\x82\xc2\xb0\x0c\xc7\x26\x3f\x6e\x81\x1d\x85\x41\x2e\x1a\x58\x62\x10\xab\xc4\x23\x2e\x35\x82\xfb\xfe\x79\x6f\x34\x88\xe2\x68\x34\x8a\x12\x0c\xce\x45\x02\xaf\x63\x1d\x5b\xfe\x8d\xaf\x24\x7e\xce\x2a\x6e\x56\x16\x24\xbd\x74\x48\xdf\x0e\x43\xc4\x8f\x7d\xc7\x5d\xfc\x58\x39\x03\xc0\xd2\xcf\x24\xb4\xb5\xb5\x50\x96\x06\xc3\xb4\x0d\x1d\x47\x59\x94\x66\x9d\x6a\x7f\x68\x29\x0e\x7e\xdc\xd2\x3c\x3f\xe8\x15\x83\x74\xdc\x1f\x14\xda\xb1\x9e\xe5\xb3\xf9\x49\x1b\xff\xa2\x37\x5e\x8a\xd2\x71\x5e\x27\xc9\x39\xcd\x48\x3b\x98\xc5\xdd\xb4\xc3\x0e\x24\x80\xbc\x42\xf9\x49\x0b\x55\xc3\xab\x92\xa9\x74\x18\x49\x6e\x87\x48\x05\xbf\x2c\x7e\xac\x0c\xdb\xa3\x61\x10\xef\xc2\x62\x16\xa3\x7e\x07\xcd\xc7\x9c\x12\xd3\x9e\x67\x81\xbc\x90\xde\x76\x15\x50\xb0\x1a\x99\x13\x27\xab\x4a\xbb\xce\x94\xaa\xb9\x74\xb2\x81\x84\xae\x6a\xd6\x71\xd2\x93\x74\x06\xcd\x6d\x9c\xd6\x88\x08\x1f\x22\x22\xf0\x71\xd6\x70\x30\x7f\xd1\x5b\x36\x41\x86\xec\x12\xc5\x27\x79\x9e\xca\xe3\xc6\xb0\x7d\xdf\x3e\x6f\x2d\x8b\x8a\x2d\x84\xbc\x0b\x4a\xd6\xfd\x82\x4a\x34\xfb\x04\x5c\x9b\xa6\xd9\x0b\xab\x00\xf9\xae\x13\x78\x4e\x39\xd4\xb0\x6c\x3f\x3f\xb1\x77\x2f\x1c\x98\x61\x14\x06\xb1\x80\xa4\x71\x77\x67\xba\x8a\xfd\xc1\x80\x0f\xf4\xdc\xb7\x4f\x04\xf3\x9e\xac\x5b\xed\x55\xfc\x76\x56\x61\xe1\x27\x5b\xcb\xcc\x85\xb9\x43\x55\x99\x49\xd7\x41\xd0\xd7\x55\x48\x11\x33\x07\xb9\xd9\x6b\x91\x1b\xf2\xa3\x83\xbe\x8d\xa2\x37\x3f\xee\x6e\xdd\x10\x2f\xbc\xe0\xe5\x83\x74\x8d\x3b\xaf\x82\x3d\xa4\xaf\x8f\x8e\xde\x4d\x5f\xa5\x9b\x6d\xb8\xce\x05\x6f\x94\xa5\x43\x8b\x70\x7d\x45\x93\x10\xc4\x5e\x4d\xe7\xec\x5f\xc8\x70\xb8\x22\x15\xe7\x88\x2e\x49\x18\x2e\x88\xec\xf6\xad\x11\x70\xff\xbc\x37\x58\x1f\xa5\xfd\x78\x3d\x34\xc3\x08\x7d\x7d\xeb\x7d\x64\x07\xa4\x17\x6b\x10\xb8\x75\xd0\xdc\x91\xaa\x3c\x52\x49\x15\x8f\x6e\x6c\x4b\xfe\xf0\xac\x6d\x56\x3b\x70\xd0\x8f\xb0\x3a\x45\xe3\x56\x89\x08\x86\xe1\x38\x2f\xd2\x21\xa8\x3c\x2f\xf1\xd4\x07\x21\x8e\x1f\xfb\x6e\x0e\x7f\x93\x0e\x47\x7e\xdc\x58\xe3\xfb\xe7\xbd\xdc\x1c\x9d\x52\x04\x32\x56\x9b\x44\xca\x01\x4b\x7a\x1c\x93\x8f\x77\x5d\x59\x13\x8e\xb3\x22\x42\x80\xc1\x81\xf8\xbe\x4e\x6f\xdf\xf7\x1f\x77\xc9\x42\x80\x02\xc4\x9a\x0a\x2a\x92\x5c\xb3\x1b\xfc\x92\x17\xf4\x7a\x99\xc9\x39\xb4\xb0\xa4\x9e\x22\x44\xb5\x86\xd5\x95\x24\x1d\x2d\x77\x94\x84\xd9\x9b\xda\xac\xe7\xcd\xe6\x9c\x90\xf4\x7e\x92\x5e\x47\xb1\x8f\xae\xd4\xdb\xaa\xee\x36\x7e\xd9\x64\x4c\x84\xc5\xa1\xbd\xa7\x4b\x4c\x21\xc9\xe0\xe8\x83\xb8\x3c\x2e\x6b\xd2\x14\xee\x86\xf5\xc7\x41\x16\x24\x85\x61\x77\x68\xa9\x71\x3a\xd6\xf4\xbe\xbd\x27\x4f\x46\x3f\xec\x79\xae\x4e\x98\xb9\x4f\x3d\x61\x5e\x78\xc1\x1b\x45\x71\x5a\x10\x3b\x94\x0b\x23\xac\x34\x1c\xf8\xe8\x4b\x23\xfd\xde\xf0\xdd\xa0\x7c\xcd\xe4\xc5\x9e\x6a\x95\xe0\xcf\xfe\x9c\xb7\x02\x3e\xe6\x5b\xbe\x92\x8d\x61\xec\x0d\xfe\xe5\x7a\xb9\xd5\x75\xf7\x25\xfe\xf1\x17\x54\x47\x6d\x3b\xac\xdb\xac\x9f\xb2\xf3\x9e\x3a\xaf\xd4\x7c\xa7\xbb\x4f\xaa\xb4\x79\xdc\xcf\x77\x38\xef\xf5\x13\xaa\x3e\x7a\x03\x57\x80\xd5\x22\x70\xe0\x5a\x3b\x6f\x8b\x7f\xf9\xba\xaf\xd6\xf0\x45\x25\x60\xde\x33\x61\x94\x47\xab\x28\x4f\xb1\x27\xa6\xa8\x40\xe1\xc7\x93\xc7\x1d\xa2\x25\xe9\x3d\x46\x6f\x2f\x9d\x7a\xc7\x1e\xba\x8e\xbc\x90\xc9\xa1\xa5\x73\xab\xbe\xaf\xcd\xe0\x3e\x2a\x5d\xd5\x7f\xb3\x74\x1e\x56\x1d\x4a\x63\x59\xf1\xae\x74\x8b\xe0\xf7\x90\xf7\x0a\xe5\x94\x7e\x01\x5b\x8a\x34\x18\xb6\x00\x3f\x0f\x87\x51\x61\x1b\x6a\xb6\x0b\x65\xfb\x02\x4d\xad\xe2\xaa\x8a\x0e\x46\x51\x51\x6f\xb5\xab\x82\xe7\x82\x4a\x87\x96\x02\x52\x27\x70\x89\xc3\x19\xdf\x25\x14\x67\x4a\xeb\x63\xc4\x76\xf3\x48\x99\x3b\x13\xdb\x96\xfb\xc1\xcf\x75\x9d\x19\xd3\xb7\x94\xe8\xd8\x39\xdc\x36\x84\xaa\x9d\x93\x86\x8d\x34\xf5\xa8\x62\x13\xe4\xb8\x4d\x38\x18\x2e\x29\xb6\xf4\xa5\x76\xeb\xf9\x5e\x14\x5a\xe7\x25\xc1\xc3\x76\xac\xba\x31\x4d\x11\x04\x7f\x61\xb2\xe2\xb5\x8e\xd2\xf7\x61\xfd\x27\xd9\x8d\x0e\x8e\xd6\x4f\x33\x93\xe4\x85\x89\x92\x0e\x6d\x7b\x2e\x90\xb1\xed\xa5\x5a\xde\x63\xdf\xf8\xd5\xdd\x54\x15\xd5\x86\xc9\xd6\x8b\xd9\x41\x4e\xef\x29\x8f\x47\x30\x79\x91\xe8\x3f\xde\xa5\x3a\x08\x39\xeb\x1d\x2a\xa4\xf0\x8b\x1f\x52\xb9\x82\x33\x82\xa5\x9b\xf8\xd5\xfa\x5c\xc8\xf3\xa8\x9f\x0c\x4d\x52\x4c\xb9\x4a\x10\xa6\xb3\x16\x05\x6d\xab\xe2\x26\xe4\xa7\x5a\x53\x6b\x83\xa8\x88\x0d\xda\x8f\x22\xd0\x57\x53\xee\x7b\x5a\x59\xd2\x67\x6b\x11\xdb\x8e\xb4\x8a\x8c\x38\xe8\x6b\xcf\x84\x66\x54\xc8\xb6\x43\x24\xb9\xac\xd5\xa8\x2e\x2b\x30\x46\x38\xc8\xa2\xbc\x88\x82\x84\x33\x14\xe1\x00\xd5\x62\xab\x0b\x16\xcb\x41\x58\xa4\x1d\x27\x03\x89\x75\x22\xf5\x81\x0b\xe3\x4b\x29\xce\x6c\x2b\xab\xe5\xbc\x06\x6d\x9b\x30\x4c\xab\x6a\x0e\x53\x50\x76\x67\x41\xf0\x43\xf7\x83\xc5\xcd\x81\x27\xf8\x49\x6b\x3a\x52\x95\xe2\x71\x9a\xd7\x35\x5a\xcf\xea\x51\xea\x59\x25\xf5\x39\x10\x63\x70\xf1\x10\x76\x43\xc7\xa6\x07\xc4\x81\x03\x5e\x48\x88\xdc\x4e\xcd\x86\x53\x77\xc1\xdb\x9c\xb4\xc2\x34\xc9\x8b\x20\x81\x04\x12\x43\xfd\x7c\x0d\xfb\x73\x0a\x74\xd9\xc8\x14\x5b\x50\x9a\x53\x13\x77\x7b\xa7\x94\x5b\x78\x16\x24\x2b\xe8\x0c\x33\xfb\xa4\x74\xdd\xa3\x6d\x5d\xd7\x6f\xbf\xa9\xe5\xf8\xd3\x38\x0e\xb2\x5d\xae\xbc\xe2\x6e\x22\xca\xeb\x0f\x10\x53\x71\x83\xef\x23\x14\xb2\x91\x21\xce\x0c\x31\x8a\x72\xcd\xb6\x19\xc2\x49\x5a\xa5\xb3\x6a\xed\xe1\x28\xd8\x35\xd9\x3a\xa1\x26\xb9\xd7\x3c\x5d\x35\x99\x89\xfa\x09\xfa\x7e\x07\xc5\xf2\xae\x66\x7f\xd7\x42\xa7\x5c\x0a\x72\x72\x30\xfe\xd2\x11\x87\x2b\x51\x1a\x47\xd2\x09\x58\x0a\xc2\xc2\x64\x51\x40\x9a\xca\xc8\xda\xb6\x4d\x3a\xca\x2c\xa8\x5a\xa4\x10\x89\xe5\x89\x02\x22\xe0\x13\x0d\xa3\xc2\x23\x73\x87\x88\x19\xce\x75\x19\xdb\x51\x60\x77\x89\x37\x85\x56\x16\x1e\x0e\xd3\x64\xcd\x04\x71\x31\x98\x52\xa3\xc2\x1f\xd1\x72\x42\x1b\xf0\x2d\x9a\xc7\x0a\x57\xdc\xc9\x78\x8e\xb2\x28\x34\x4f\x29\x63\xf9\xab\x58\xe3\x56\x89\x62\xee\x10\xc7\x91\x0f\x55\x72\x33\xf3\x0c\xb7\x27\xd8\xe7\x49\xa1\x7e\xc1\xf3\x97\xbb\xd8\x51\x0e\xdc\x0e\xd8\xc9\xb6\xbe\xb8\x89\xa0\x1b\x58\xf7\x21\x27\xce\xc3\x53\x6b\xbc\xe4\x5a\xa9\x34\x7c\xf8\x5e\xa3\xaa\x79\x57\xd1\x69\x06\x06\x50\xe7\xea\xeb\x88\x04\x86\xdb\x52\xad\x30\xe0\x34\x5b\x8a\x0a\xe2\x6f\x09\x43\x8f\x7e\xa6\x75\x5f\xb3\x82\xb9\xf7\x95\x5e\x4c\x1e\x60\x3c\x29\x24\x1d\xed\x67\xd3\x58\x40\x55\x15\x4f\x46\x09\x4a\x04\x12\xba\x00\xe2\x17\xd6\x62\x9a\x3d\x0a\x32\xa1\x6d\x23\xb7\xbc\xa3\x5c\x7e\xef\xd8\x80\x35\x48\xc7\x71\x15\x29\x55\x12\x7a\x52\xfd\xe1\x49\xbc\x35\xef\x58\x68\x4f\x47\xaf\xb1\x47\xc7\x91\xb9\x43\x76\xc8\x58\xdd\x1b\x99\x31\xb6\xc8\x8a\xe7\xe9\x72\x91\x98\x5c\xff\x68\xfc\x02\x7e\x6c\x25\x27\x86\x41\x16\xa6\xb9\x0c\x8d\xd8\x4d\xad\x54\x43\x75\xd1\xee\x43\x27\xe6\x41\x9b\x74\xed\x52\x90\x65\x91\x01\x86\x0f\x79\xcc\x76\x68\x04\xa3\x8c\x84\x20\xad\xc0\x88\x9e\xaa\x35\x30\xb3\x75\x2d\x5d\x7b\x49\xc9\xb7\xe9\x83\xab\x10\x37\xb1\xea\x3b\x5a\x0d\x35\x1b\x95\xae\xa8\xbe\x74\x1c\x85\x80\xa6\x58\x6d\xaa\x4f\xb0\xf6\xf8\x49\x1d\xeb\x67\xb2\xa7\x3b\x96\xc9\xbb\x0d\xbc\x24\x9e\xe7\x63\x3c\x81\x4b\x0c\x5e\x83\x34\x5b\xaa\x4b\x2f\x94\xe4\x9a\xd8\x0a\x7d\x8e\xf8\xf6\xe1\xaa\x61\x2b\x9d\x87\x5a\xa3\x20\x05\x28\x5a\xb3\x9e\xa0\xef\x56\x3e\x77\x80\xd1\xf4\xb8\xa9\x6d\xbd\x7e\x97\x62\x01\xa6\x12\x6f\x60\x2b\xf2\x17\x00\x18\x85\xff\xa5\xd1\xbe\xa3\xf1\x50\xd4\xc3\x21\x6e\xc5\x31\xf7\xdb\xc7\x8a\xe4\x19\xf4\x56\xa3\xdc\x64\xf9\x4c\xf5\xcf\x22\x17\x37\xe5\x8c\x54\x7e\x44\x81\x45\x34\xe5\xf0\xe3\x10\xba\xd1\x9e\x91\xe6\xbe\x74\x16\xbe\x36\x4e\x2d\x82\x14\x61\xe3\xb1\xae\xbb\x88\x0c\x91\x14\x67\xa7\xad\xdf\xfb\xf3\x5e\x91\x16\x41\xcc\xc1\x54\x2c\xa8\x95\xf5\xca\x99\xc6\x9e\x7d\xd1\x0b\xd3\xbc\x18\x0f\x0d\xd4\xde\x90\xb6\xe2\xe8\x41\x3c\x82\x1d\xb0\x58\x7a\xed\xd5\x53\x49\x22\x54\xe5\x7b\xdc\x0f\x7c\xbd\x74\x95\x03\xb7\x9a\xd9\xff\x0b\x30\x71\x04\xcb\xeb\x7e\xe7\x8b\xbf\x66\xab\xac\xea\x3e\x02\x2e\xff\x53\xba\xc4\xca\x02\xfe\x15\xb1\x6c\xc7\x9d\xb7\xe8\xfd\x79\x09\xaf\xdb\xbb\x6e\x34\x30\x0a\x22\x18\x4f\x57\x87\x17\xde\x7c\xd3\x57\xfa\x15\x57\x18\x49\x29\xd3\xab\xc6\x49\xb4\x38\xeb\x2d\x47\x59\x5e\x50\x4c\xb5\xca\x60\xd6\xfc\xad\xf9\x8a\x17\xbd\xf1\x28\x0f\x03\x56\x2a\x43\xea\x7d\x5b\xa5\xe1\xb7\xdb\xdc\x21\x32\xb3\xec\x58\x9c\x62\x1c\xd4\xb1\xd2\x3a\xc7\x5b\x91\xbe\x98\x62\x2b\xab\xbc\x8e\x75\x04\x6a\x3a\xe5\x1d\x9e\x5d\xf0\x96\x4c\x1c\x99\x55\xf9\x18\x39\xe2\x14\x21\xf4\x94\xaf\xec\x34\xe2\x20\xcf\xb3\x34\x1d\xf2\xba\xc1\xb7\x3f\xa1\x35\x33\x4f\x28\xc3\x92\x17\xfe\xe3\xbf\xc9\x3d\x0b\xdc\xe8\x6d\xa4\x1d\xcd\x8f\x1b\x9d\xaf\xea\xdb\x0c\xd3\xcc\x4c\x29\xbd\xe1\x8b\x38\xfc\x50\x34\xdf\x42\x02\x84\x7a\xe4\x58\x8b\xee\xfe\x41\x2f\x4f\xc7\xc5\x80\x6e\x0b\x76\xce\x25\xe5\xd0\xdc\x66\xaa\x3a\xef\x8d\x32\xd3\x4f\x02\x3e\x56\x2c\x38\xc1\xe1\x2f\x1a\x57\x79\xee\x90\x97\x17\xc6\x8c\xa6\x5c\xd7\xf3\xc7\xd8\x38\xd6\x91\xd5\xd2\x64\xaf\xf8\x6a\xb0\x96\x05\x09\x81\x2a\x15\x48\xf5\x8a\x96\x4d\x69\xca\x7b\xce\xcf\xf3\x48\x92\x7a\x17\x2c\x24\x4f\xdb\x40\xcd\x68\xe6\x6c\x43\xc8\x65\x95\x61\x96\xae\x89\x1d\x83\xe0\x79\x55\xf2\x88\xdc\x44\x4c\x9e\xf6\x2a\x0a\x36\xd3\x97\x94\xb2\xcb\x96\xaf\xd8\x32\x5b\x88\x92\xa0\x67\xbe\x36\x16\xef\xf8\xb6\x9e\x56\x03\x38\xb5\xe0\x65\x26\xc8\xf3\x71\x26\x54\x0a\x90\x11\x98\x40\xc8\x4f\x6c\xa4\x1b\x05\xd9\x8a\xc9\xa6\xea\xf6\x1b\xf3\xf3\xdc\x15\x00\x05\x6d\x73\x7b\xd7\x9d\x66\xcc\x25\x9b\x76\x39\xec\x19\x3a\x53\xe4\x84\xa5\x10\xc3\x4f\x74\xc4\x38\xa3\x54\x1b\xc3\x41\x9a\x9b\xa4\xa3\xa6\x98\xc7\x94\x7a\xe9\xb1\x96\xba\x62\x81\xb3\x4e\xd6\x8b\xb1\x01\x72\x51\xcc\x61\x4e\xe9\xb7\x4f\x93\x7c\x8c\x8e\x03\xde\x11\x12\x4c\xfc\xb8\x4d\x57\x26\x33\xab\xd1\xaa\x04\x7c\x54\x18\x60\xce\x88\x44\xa7\x92\xfa\xb9\x5c\x3e\xa1\x45\x99\xd7\x3f\x3b\xe5\x5c\xd1\xfe\x12\x9d\x12\xb8\xfb\xff\x13\x31\xdc\x9d\xe8\xa0\x34\xfe\xb6\x29\x57\xd7\xc7\x08\xb7\x83\x32\xfb\xff\xc1\x87\xa0\xf6\x79\x76\xa2\x86\x13\x57\x11\xb7\x65\x60\x4f\x4b\x8f\x1d\xf3\xb1\x3b\x00\x31\x63\xac\x23\xfe\x65\x1b\xa1\x2b\x79\x86\x81\xcd\x8d\xc3\xe1\x1e\x6e\x0a\xfe\x85\x93\x06\x5b\x30\xec\x97\xa9\xc5\x0f\x68\x19\xe3\xf1\x7d\x9c\xff\x48\x7f\xbf\xe3\x6b\x0f\xb5\xeb\x88\x21\x72\xb6\x3b\xf9\xca\x7b\xd4\x4b\xc0\xe1\x7b\xbf\xd5\xd3\x64\x0d\x97\x5b\x74\x65\xfe\xbc\x54\xb1\x18\xf1\x1b\x97\xf1\x46\xa3\x6f\xf0\x4b\x96\x1b\xc2\xa1\x52\xd4\x0b\x6b\x32\x54\x0e\x96\x1e\xaf\xa7\x49\x12\x44\xb9\x0a\x43\xef\x60\xe7\xf1\x93\xc6\xf7\x23\x7b\x45\x81\xef\x88\x8c\x9f\x5b\x77\x97\x4a\xa7\x0f\xd2\x5b\x37\x19\xad\x34\x2b\xdb\xe9\x50\x4a\x17\xd5\xbc\x7b\x39\x08\x5d\x1a\x8c\xd0\x76\x9d\x4e\x5a\x7e\xac\xbe\x6f\x31\xc8\xa0\x21\xa6\x74\xcc\xeb\xac\x97\x27\x6b\xe6\x1d\xbd\x1d\xce\x80\x1d\x57\x8e\xc5\xc7\x29\xef\xb2\x12\xb6\xb6\x11\x3c\x45\xbc\x66\x04\x02\xee\xaf\x8a\xfe\xb0\x2b\xd4\xe2\x74\xd5\xe0\x8a\x61\x90\xfb\x8e\xaf\x04\x30\xde\x69\x91\x9b\x3b\xe8\x2d\xc1\xc6\x8d\xd6\x9a\xed\xd1\x56\xcb\x43\x32\x4c\xa9\xfc\x7b\x51\x46\xf4\xad\x75\x35\xfa\xbc\xe9\xab\xfc\xf3\xa6\xd5\xe6\x19\x27\xe6\xe8\xc8\x84\x85\xe9\xc5\x70\x6a\xad\x49\x12\x59\xd9\x78\x0b\x17\xbe\xe9\xeb\x0e\x4c\x0e\x6e\x12\xee\xc6\xaf\xd3\x25\x50\xda\xf4\xac\x6d\x70\x64\x2f\xf6\x8d\x90\x24\x5d\xef\x97\x4d\x36\x44\x5e\xab\xe5\xb4\x4a\x82\x20\x1c\xa9\x4e\xc7\x19\xdc\x7e\x89\x78\x4f\xda\x32\x25\xb1\x16\x4c\x08\x08\xe7\xb5\x0f\x42\x93\x46\x4b\x1c\xfd\x20\xe9\x8b\x6d\x98\x6a\x66\xcb\xc0\xee\x1b\xaa\xa3\x74\xa1\x41\x4b\x38\x3c\xeb\xe5\x41\xd1\x51\x1e\xab\x67\x4b\x15\xa7\xce\xaa\x81\x49\x1c\xac\x77\x34\xfa\xfa\xbc\x46\x1f\x6a\xd7\xea\x17\xfe\x93\xbf\xc9\x85\x16\xe6\x76\x37\x35\x6a\x9e\xf6\xbb\x94\x4f\xd2\xaa\xed\x19\x9c\x5b\x80\x04\x33\xf5\x91\x9f\x38\x27\x82\x34\x59\x35\xd9\x96\xb6\xf2\x19\xa5\xdc\x78\x46\xeb\x5d\xa2\x58\x9b\x76\xc5\xe0\x5d\x5a\xf1\x62\x7f\xad\x2a\xe3\xbb\xf8\x1d\xa2\xb7\xdf\x32\x57\x8e\xcd\xaa\x21\x85\x2c\x04\x22\xa4\x45\x68\xa1\x20\x32\x7c\x42\xef\x2d\x31\xc9\xad\xac\xe5\x31\x9f\x98\xa2\x09\xd6\x71\x0e\x73\xbe\xc6\x14\x3d\xb5\x65\xc5\x4f\xb9\x93\xfb\x03\x2d\x28\x75\xab\xee\x7f\xe5\xb5\x93\xe3\x33\x33\xca\x4c\x62\xc6\xc2\x7b\x44\x38\x38\xa1\xfd\x0e\x4e\x34\xca\x69\x3a\xdd\xc2\x34\xb3\x4a\x87\xad\x6c\x33\x17\xd0\xc2\x38\x1a\x4d\xbb\x46\x0e\x67\x89\xa8\x24\xa1\xb1\x83\xbb\x72\x02\x59\x8f\x88\xef\xb9\x8b\xf3\xc5\xb9\x43\x4a\x48\xfa\x82\x62\xcf\xfc\x56\xdd\x7b\xc3\x1d\xd8\x89\x09\x0a\x90\xe1\x64\x38\x7e\xbb\x54\xcc\x31\x36\x0a\xa5\x3f\x8d\x92\xc2\x64\xb9\x09\x95\xd3\x24\x6a\xe3\x7b\xbe\xeb\x35\x73\xf2\xc6\xe6\x27\xaa\x61\x33\x1e\xf5\x08\x11\x8c\xf5\x6e\x2d\xa3\x9c\x41\xc6\xa5\x36\xd9\xf5\x61\xb0\x02\x6c\x87\xb6\x83\x47\x51\xc4\xbd\x71\x7c\x85\x8e\xc2\x7a\x45\x49\x18\x8c\x82\xa5\xd8\x4c\xab\xee\x26\x5c\x7a\x81\xb8\x81\x97\x04\x5b\xb5\xe3\xd7\x4a\xa8\x76\xab\x26\x58\x32\x05\x33\xbf\x6a\x08\x04\x19\x04\xff\x5c\xfd\xba\x24\xdc\x73\x89\x59\x04\xc7\x7a\xe5\x39\xdf\x3c\xb5\x9f\xf3\x81\xe9\xed\x74\xec\xb7\x93\x94\xa3\x68\x2d\x41\x56\xea\xa7\x2f\x6d\x9d\x01\xab\x85\x87\x33\xeb\xee\x16\x3d\x7f\x27\x56\xa0\x89\xda\x61\x3a\x1e\xa5\x09\x9f\xa5\xe2\x4a\xd1\xb1\xaa\x3c\x97\xda\x62\x5f\x55\x7e\x67\x69\xa2\xf5\x3c\x19\x1c\x26\x5c\x78\xab\x68\x1d\x25\x26\xc8\x54\xaa\x77\x51\xa5\x7a\x4d\xd7\x10\xb8\x70\xb1\xbf\x3d\xb6\x30\xb2\x0c\x4c\x2a\x71\xb8\x20\xf3\x13\xfe\x96\x72\xcc\x4d\x73\x6e\x0a\x08\x71\x1a\x15\x3a\xee\x2d\xb8\x15\x28\x02\x4e\xaa\x04\x21\x4e\x93\xfe\x2e\xba\x6a\x38\x7a\x6e\x68\x8f\x94\x1b\xbe\xc2\x53\x0d\x68\x05\xe3\xe8\xd9\xd5\x75\x93\x8b\x8d\x52\x03\xd8\xe9\x23\x45\xe1\xd3\x51\x4b\xbe\xdf\xa6\xa9\x3f\xac\xaa\xf1\x20\x12\x47\x60\x19\x08\xe8\xe9\x80\x82\x0e\x87\x59\xd0\x8b\x41\x8b\xb2\x98\x10\x6b\xe8\x73\x4e\x0d\x35\xd7\x23\x13\x43\xe2\xa1\x0a\x0d\xf8\xf2\x7f\x0f\x39\x26\x3f\xb1\xa8\xdb\xe5\x28\x91\x62\x09\x65\xce\x43\x5f\xa9\xc2\x5d\xc2\x3e\x45\x97\xf5\x92\xfa\x2a\xa3\x34\xcd\xaa\xf3\xd2\x2a\x64\x02\x19\xc5\x8f\x55\x59\x65\x12\x56\x39\x54\x26\x5a\xb0\xa5\xe0\xc7\x8d\xcb\xb2\x38\xeb\x8d\x4c\x36\x34\xd5\xde\xa4\x31\x8e\xed\x10\xd9\xd9\xf0\x8f\x14\xe5\x6e\x39\x85\xe2\x24\xdd\x75\x69\xa6\xbb\xe5\x8b\xf6\x11\xce\x98\xb7\xda\x46\x28\xcb\x69\x16\x0a\xde\xc9\x12\x21\x9c\x49\xd6\x65\x5f\x37\xb1\x82\x11\xf5\x4e\xe8\xdf\xb1\x0e\x00\xcb\x41\x54\x7b\xa4\x14\x2c\xae\x35\xb2\x91\x17\xbd\x3c\xb0\x2c\x3c\x41\x68\x68\xb8\x86\xca\x1a\xbf\x3a\xee\xf5\xcd\x13\xd5\x8f\xd7\xea\xd2\x48\xf0\xd9\xeb\xc1\xa6\x56\x73\x87\xf8\xc0\x7a\x13\xdf\x1b\x9d\xd0\x87\x58\xb8\xe8\x09\xbe\xe5\x3b\x77\xb0\x63\xbe\x72\x7b\x06\x75\x12\x7f\xc4\x4d\x33\xe4\x62\xbf\x0d\x84\x11\x52\x81\x0f\x50\x33\x82\xc5\x0b\x4f\x42\x54\x17\x27\x9c\xb9\x7f\x34\x8c\x8a\x9d\xd5\x97\xc4\x2d\x00\xdf\xc1\xea\x2e\xb9\x5e\xe3\x89\x52\x21\x60\xc0\x72\xb7\xef\x7b\x58\x34\x83\x3e\xf6\x35\x80\xe9\x8a\x92\x25\xae\x32\x82\x98\xda\x57\x8b\x02\x37\xba\xae\x56\x13\xb8\x5c\xf8\x0a\xef\x69\x7e\x4e\x64\x86\x26\xc9\x3b\x4e\x5f\xe1\x1b\xbe\xf3\x81\xff\x86\xdd\x0d\x49\x5a\x98\x7c\x27\x7d\x43\x21\x09\x5b\xd1\x27\xd1\xd5\x46\x61\xf6\x87\xd8\x26\x80\x02\x3c\xd5\x55\x51\xe2\x0e\xb7\x2f\xb1\xed\xdf\xaf\xe9\x82\x2b\xb7\x93\x34\x5b\x1a\x23\x7f\x07\xd8\xff\x18\x5d\x0b\x7e\xdc\x10\x0c\x15\xb8\xe5\x60\xdc\x67\x01\xe7\x05\xdb\xe2\x55\x71\xf7\xbc\xea\x3c\x9a\x98\x0f\x61\xe5\xce\x8b\xe0\xcb\x8f\xf5\xf5\x09\x46\x91\x61\x8a\x15\xae\x09\x4b\x59\xf0\x93\xc9\xd3\x96\x4e\x53\x64\x91\x59\x05\x05\xed\x20\x5f\x69\x60\x16\xf8\xb1\x13\xcd\x1b\x44\xc3\xa1\x63\x7c\x61\x00\xf1\x16\x02\x0a\x3f\xf1\xb7\x62\xaa\x8e\x2c\xce\x7a\x61\x1a\xc7\xf0\xf7\xe6\x5d\x29\x0e\x5a\xf4\x89\x62\xad\xa5\x04\x3d\xa8\x89\x17\x25\xfd\x69\xcd\xda\xee\xb8\xa1\xbb\xea\x9d\x9e\x43\x68\xe5\x27\xaa\xa4\x1b\x65\x69\x6f\x1c\x9a\x1e\x03\x13\xb1\x70\x11\x3b\x10\xfc\xce\xa1\xc4\xe7\x48\xe8\x3b\x7d\x2b\x90\xc5\x71\x9e\xdd\xa1\xdd\x88\x5a\xe0\x13\x5f\xb3\xdb\x7d\xc5\x65\xf8\xd0\x8d\x97\xc7\xbd\x9e\x65\xc4\xc8\xc1\x5e\xf3\x48\x78\xa6\x16\x12\xa0\xdc\x7b\x78\x96\xd3\xae\x4b\x18\x22\xf0\x13\xed\x30\x66\x56\x7f\x19\x6b\x04\x7b\xeb\x7b\xbe\xf6\x84\xfb\x9e\xea\xcb\x17\xe9\x5a\x92\x0f\xa2\x11\xae\xb4\x15\xe9\x75\x82\xd5\xa7\xda\xc4\x99\xc2\x34\xe9\x45\xd6\xef\x18\x35\xd2\x27\x74\xb1\xf8\x71\x9b\x1e\xf6\xc0\x64\x4b\x51\x18\xf5\x90\xa9\x21\xf5\xbb\xa1\xf8\x43\x6f\x6a\x68\xe2\x15\x2d\x7a\x95\xa6\x7d\x3b\xfc\x17\x41\x03\xfa\x5b\x7e\xd2\x82\x93\x5d\x90\x3b\x4a\x81\xc2\xaa\x46\x5b\xae\xcb\x07\xa5\xf2\x9b\xb9\xd5\xe8\xec\xa1\x9d\x3a\x34\x44\x7c\xef\x28\x77\x39\x94\xb2\xfc\xd8\x17\xf8\xe4\x5a\x2a\x37\x51\xe3\xa8\xf9\x71\xf9\xbc\xce\x39\x33\x13\xe4\x51\xd2\x67\xc5\x29\x94\xb4\xd0\x21\xe6\xc7\x8d\x33\xea\xd5\x57\xbd\x25\x63\x46\x3c\x00\x43\x2a\x08\xde\x95\x38\xac\x3b\x96\x73\x53\x4a\x6b\xdf\x9c\x37\x8a\x83\x82\xd8\x7e\xf8\x8a\x78\x87\x0f\x95\xa2\xdc\x87\x5a\xfc\x2f\x1d\x04\x60\x8f\x09\x42\x44\x0d\x90\x9b\xc9\xf7\x81\x03\xde\x52\x9a\xa4\x38\x11\x51\x83\x1c\x53\xce\xcf\x97\x94\xde\x42\x73\x90\x58\x5d\x65\x13\x64\x71\x64\xb2\x19\x25\x43\x79\xbb\x54\x2e\xf1\xac\xfd\x8f\x8a\xf1\x26\xed\x3b\xac\xf7\x87\x74\xa6\xe1\x63\x6a\x66\x27\x41\x96\xc6\x51\x12\x88\xe3\x03\xc3\x36\x4a\x25\x8c\x74\xde\xc6\xa8\x22\x1b\xe7\x45\x98\x66\xa3\x2d\x6e\x94\xd6\x92\xe1\x52\xdb\x70\x82\x66\x28\x75\xf7\xa4\x9b\xaa\xfb\x74\xb3\x71\xf4\x2f\xbc\x7c\x90\xba\xfb\x7f\x81\xef\x8c\x66\x21\xa6\x83\x04\xe4\x01\xc1\x03\xe1\x97\x08\xd2\xc8\xad\xe2\x3f\xf6\x6b\xea\x51\xcf\x36\x1d\x5f\x72\xd2\x9a\x62\xa7\x31\xfc\xb5\xe5\x36\xed\xdb\xe7\x1a\x0a\xd5\x2f\xb1\x18\x3c\x6b\xb8\xc6\x67\x8b\x18\x95\x6d\xbd\x14\x5f\x3a\xe2\x0d\xc6\x49\xaf\x0a\xf1\x9d\x7d\x73\x1a\xf6\xe7\x68\x51\x7b\x35\x29\xa5\x60\xa3\x75\x27\x0a\xbb\xa9\x9a\x03\xbb\x26\x0e\xaf\x77\xad\x89\xa5\x9e\xf3\x7a\x26\x8f\xfa\x52\xa9\x58\x73\x13\xe7\x0b\x5c\x3a\x1a\xb6\x39\x6a\xb2\x30\xca\x29\x87\x54\x8c\xba\x8b\xfe\xf6\xcf\xc9\xc3\xb6\xc0\xb6\x36\x88\xb2\x78\x2d\x4a\xa0\xae\x8d\x50\x74\x86\x04\x88\xf8\xb1\xfa\x88\x5e\xd4\x4f\xa2\x22\x10\x69\x20\xa9\x85\x7f\xaa\x21\xe4\x3f\xb5\x58\x90\x38\x58\xcb\xc7\x51\x91\xcf\xa8\xb4\xe1\x46\xe9\xba\x17\x33\x5d\xe7\x1b\xfe\x07\x9a\x04\x78\x16\x59\x07\x4e\xcc\x63\xb5\xf9\xf2\x38\xe9\x3f\xb1\x15\x09\x2f\x21\x5f\xc8\xcd\x56\xda\xcf\x96\x88\x5f\x2f\x15\xba\x83\x47\x23\x4c\x3e\xc4\x92\xb4\x4c\xc4\x23\x56\x37\x11\xb0\x6d\x64\xb9\x10\x12\xa8\x49\x69\xa0\xc9\x75\x9d\x56\x0e\xee\xe5\x06\xed\x4e\x14\x61\x57\xd5\x10\xad\x67\x96\x4c\x42\x92\xc2\xbb\x9d\xb6\xff\x4d\xfc\x44\xab\x1a\xa0\x24\x04\x70\x6e\x8a\x4e\x6a\xf5\xfe\xe2\x2b\xd3\xb1\x44\x79\x16\xa6\x40\x2c\x7b\x0b\x89\x2b\xa7\xb4\x5d\xd7\xdb\xf8\xb1\x3a\x4b\x8b\xa8\x08\x92\x68\x3c\xd4\x74\x85\xcb\xbe\x26\x59\x6d\x3d\x10\x5e\xf4\xc6\xc9\x20\x20\x12\x49\x0e\x79\x0f\x5c\x25\x46\xe2\xdb\x99\xab\xad\x4b\xff\xa8\x7c\xb6\x8e\x99\x7f\xf5\x55\x6f\xff\xfc\xde\xea\x47\xa3\x04\x7d\x8f\x96\x15\xae\xdc\x09\xfc\x4c\xab\x31\xbf\x38\xbb\xb8\xb9\x81\xda\x00\x3f\x84\x55\xc0\xd9\x06\x11\xdb\x95\x53\x68\xdc\x26\xd1\x1d\xad\xae\x10\x6a\xa4\xdf\x44\x99\x80\xed\xb4\x49\xdd\x3f\x2b\xde\xf0\xab\x5f\x66\x4c\xc2\x1f\xf9\x3a\x73\xeb\x7c\xf1\xd7\xb8\x48\xf8\xa1\x56\x75\xbb\x41\xc6\x4f\xda\xfa\x1d\x91\xe2\x1e\xc5\x49\x44\xe6\x47\x2a\xb5\x4d\x52\x0c\x98\xad\xfa\xf0\x2d\x7c\x47\x99\x52\x3b\x46\x7a\xa7\x21\x98\x3b\x77\xc8\xeb\xc7\xc1\x30\xcd\x84\xad\x82\x26\x15\xb8\xb9\xfc\xb8\xb6\x07\xf2\xb1\xd9\x59\x67\xb6\x2d\x8a\x84\xf2\x1b\xbe\xc2\x74\x41\x3a\x98\xff\x01\x97\x56\xa4\xc8\xdd\x58\x19\x05\x1c\x2e\xd3\x83\xba\xc6\xc4\xc8\x28\xfc\xc9\x94\x5a\x57\x17\xb4\x16\xcc\x5d\x5d\xf9\x66\x59\x9a\x98\xea\x77\xd4\xb4\xf3\x3a\x56\x87\xef\xbc\x5a\x91\x71\x3a\xca\x23\xea\x00\x2e\xcc\x1d\x92\x09\xa7\xf2\x76\xb8\x52\xee\xb1\xb9\xea\xdf\x78\xac\xa3\x4c\xcd\xab\xf7\xc3\x44\x69\xb3\x24\x29\x72\xb4\x21\x9e\xea\x76\x7e\x45\x6a\xd4\x3d\x04\x8b\x43\x90\xf8\xa9\xaf\xfa\xd5\x0f\x34\xfd\xf2\xcf\xe8\x36\xf3\x5f\xe1\x08\xb6\x5d\x0c\x5b\xf1\xc1\x92\x43\x64\xd0\xb7\xa6\xef\x74\xa0\x1f\x1d\x99\x2c\x32\x49\x28\xd3\x3a\xb4\x29\x3f\x54\x7b\xe3\xfd\x52\xf1\x95\x2e\xf8\xd2\x8c\x2e\x4c\x30\xe5\x9c\xbb\x18\x90\x81\xd4\xed\x8c\x32\xf8\xbb\xdd\x62\x4a\xcc\xcd\x78\x7a\x39\x00\xb5\x9b\xaa\xd2\xb9\xa1\x7c\x24\x4f\x34\x38\x65\x73\x87\xbc\x3c\xad\xd6\xab\x05\x80\x6b\xf9\xa4\x2b\xda\x1b\xf4\xfb\x8d\xe4\x0c\x03\xf1\xcc\xa4\x4a\xb3\xe7\xbe\xca\x05\xee\xb7\x70\xde\x5e\xaa\x12\x08\x08\x23\xb6\x14\xc8\x57\x95\x65\xfd\x0f\x1b\x67\xd4\x81\x03\x70\x23\xb2\x1e\x1e\x1c\xc6\x95\xca\x90\x96\xa3\x1b\x04\x79\x11\xc5\xeb\xb8\x11\x22\x45\xe2\x30\x78\x3f\xc3\x8d\xc0\x8f\xbb\xd5\xb8\x32\xfb\xe7\x3d\x13\xe4\xfc\x6a\xf1\x8d\x70\x20\x8e\xeb\x5a\xb2\xab\x29\x83\xf3\xf9\xea\xca\xb0\x01\x02\xae\xe5\x19\x3d\x4e\x3f\xa3\x84\xdd\x96\xa2\xa2\x20\xab\x11\x32\x66\x7f\x8f\x1c\x42\x37\xdf\x6b\xcc\x15\xf7\xcf\x7b\x4b\x41\x18\xc5\xf1\x38\x9f\xc6\xe9\x86\xf3\x03\x5e\x44\x68\xf5\xef\xe9\x3a\xb4\xef\x1b\x5a\xa8\xb2\x33\x71\x8d\xd5\x7e\x16\x71\xf6\x26\x12\x38\x1d\x2b\xfa\x70\xb1\x51\x7b\xcf\x1d\xf2\x46\x19\xab\x55\x64\x18\x6f\xe3\x60\x43\xe7\x81\x1f\xab\x06\xfb\x38\x48\x66\xf0\xfd\xa4\x1c\xa2\xa5\x8c\x49\x02\x9c\x31\x80\x53\xfa\x6c\xd7\x01\xed\x79\xf8\x82\x1b\xf3\x4c\x83\xb9\xf9\xea\xab\xde\x57\x83\x15\x43\xcc\x4d\x9b\x5b\xdb\xfb\x0f\xd9\x60\xc1\x3f\xd2\x1b\x89\xad\x83\x82\xe8\x9a\xa8\x47\x77\x03\xe1\xe2\x34\x6e\x3e\x3f\x69\x94\x40\x07\x0e\x78\x6b\x41\x61\x32\x72\xee\xe6\x5c\x5a\x34\xf7\x3a\x56\xb4\xe1\x82\xef\xf8\x11\xcb\x01\xb8\x54\xb6\x06\xb2\xfd\xba\xed\x13\x55\x1c\x5d\x6e\xb7\x65\x25\x41\x06\x9a\x6b\x20\x68\x5d\xd5\xcc\xf2\x37\x14\xbe\x76\xdb\xc4\x61\xda\x6e\xb4\x69\xfa\x8e\xd2\x38\x2a\xa2\x30\xd7\xf0\x85\x6b\xaa\xeb\x7c\xad\xad\x0d\x98\xaf\xe7\x85\x19\xaa\xb9\xc8\xf5\x1a\xa8\x89\x2e\x29\x5e\xfe\x7a\xf9\x59\xad\xb9\x9a\xa5\x96\x76\xd7\x51\x4c\xd4\x3f\xf4\x1d\x1e\xec\x0f\x75\x69\x6e\x7d\x2a\xd9\xd2\x43\xb1\x48\x9c\xb2\xef\xd7\xc6\x29\x74\x3c\xf8\x3d\x91\xe8\x9c\x42\x9a\xc0\x4f\xca\x5a\x0b\x3f\x29\xaa\x02\xd1\x5e\xbd\x4b\x4a\x67\xf2\x5f\xf8\x0a\xa1\x73\x41\x59\xf6\x93\xa7\x28\x75\x19\x85\x6f\xab\xdb\x6e\x27\xd4\xfa\xba\x09\x45\x36\xcb\x1f\xb3\x7a\x5b\x8f\x7c\x25\x1a\xf3\x23\xea\xba\xe0\x92\xbd\xaf\x44\x4e\x1e\x22\x7b\x91\x4d\xa3\xc0\x56\xe7\x60\x79\x21\x6a\x8c\xee\x52\x9c\x29\x95\xda\xe6\x07\x1a\xdd\x13\x8c\xfb\x03\xd0\x19\xe4\xa2\x75\xac\x81\xd9\x09\x3d\x75\xbe\xad\xf8\x4c\x03\x13\x64\x3b\xea\xae\x67\x5b\x52\x1a\x6b\x30\x60\xcd\x06\x20\xa3\x6e\x75\x4a\xe6\x0e\x59\x9d\x12\xe5\x8b\x18\xf7\x4d\x16\x05\x1d\x75\x54\x6d\x87\x0c\x1b\x3f\x69\x20\xb9\xe7\x0e\x79\xbd\x20\x8e\x03\x64\x37\x4c\xb5\xd6\xb3\xe6\xd3\xb6\xa7\x3a\x30\xf1\x28\x9f\xf9\xd4\xf9\x8f\xf5\xf2\x01\x25\x0f\xaf\xee\x4c\x94\x3c\xce\x67\xbb\xad\x04\xc9\x68\x64\xe2\x2a\x8f\x05\x34\x5c\x60\x06\xb8\xf5\xec\xec\xad\xe5\xaa\x2e\x2b\x65\x89\x2c\x88\x47\x03\x42\x16\x89\x50\x92\x1a\x09\x7f\x4c\xdf\x49\x90\x0a\x74\x27\x44\xa7\xe4\x69\x85\x94\xae\x92\x68\xa6\x14\x80\xeb\x0f\xaa\x00\x3f\x6e\x6c\xe8\xcf\x7b\x43\x13\x24\x6b\x83\x28\x36\x53\x75\x19\x0b\xab\xe0\x75\x99\x70\x14\xec\xd8\xad\x9a\x7a\x41\x0c\xb2\xf4\x0e\xd7\xa2\x07\x84\x06\x99\x1b\x6e\x2a\x3f\x2e\x9d\x73\xdc\x26\x79\x99\xf3\x63\xfc\x40\x7e\x71\x8b\x4f\x92\x37\x8a\x4d\xd0\xa3\x4b\x02\xd6\xf2\x65\x95\x21\x73\x88\x15\xbf\xf3\xea\x56\xe2\x02\x6f\xaa\x59\xf5\x5a\xc4\x40\x12\xfc\x98\xf7\x55\x86\xf8\x7e\xcd\x97\x77\x60\xf2\xa7\x1c\x49\xeb\x0f\x7c\xad\x48\xc8\x72\x1b\xc8\xe4\xcf\xfa\x0e\x43\xcc\x86\x8d\x80\x4c\xa1\x51\x6b\x81\x30\x55\x8a\x87\x7c\xff\x16\x7e\x26\xbf\xbc\x54\x92\xc6\x97\xb5\x0a\xcb\x5b\xbe\xc3\x2c\xdd\x2e\x55\x67\xcd\xaf\x19\x34\x2a\x8d\x04\x78\x51\xa3\x31\xfe\x5d\x95\x98\xe4\x01\xf5\x68\xd0\xe6\x40\x22\xfe\x90\x0a\x22\xeb\x80\x6d\x73\x7f\x34\x58\x85\x88\xe8\x52\xe6\x7e\xb4\x6a\x82\xb5\x60\xbd\xa3\xf4\x81\x11\x20\x45\x2c\xb8\x0d\xaf\xdc\x0b\x8a\x80\x93\x07\xc0\xf8\x6f\x97\x0d\x79\x5e\x24\xa6\x7c\x8e\x22\xca\x4c\x75\x1f\x73\x9c\xe1\xde\x4c\xb5\x70\x84\x59\xec\x6e\xfd\xee\xae\x9b\xe3\xde\x56\x92\xab\x3f\x2c\x15\xd2\xb9\xde\xea\x09\x4d\xb6\x93\xb6\x82\xb8\xfe\xbb\x8c\x82\x3b\xce\x38\xf4\x90\x15\xb2\x66\x2c\x5d\x10\xfe\xff\x5a\x98\xfb\xb2\x06\x29\xfc\x13\xdb\x9d\x0c\xa3\xa5\x60\xca\x29\x04\xa3\x64\xc0\x2d\xf9\xba\x16\x8b\xdf\x68\x43\xfa\x2f\x8d\x73\xaa\x79\x3b\x8a\x4d\x03\xa8\xbf\x88\x21\xb9\x95\xfc\x95\x2f\xec\x9b\x56\x34\xb8\x5b\xca\xb8\x07\xe0\x5d\x7c\xe8\xff\x46\xdf\x1f\x9b\xe2\x82\x1d\x14\xaf\x99\xd8\x22\x20\xf8\x0c\xa3\x05\x21\xe7\x99\x5b\x3b\x41\x9e\x8f\x87\xa6\x37\xdd\xb1\xed\x89\x7b\xb8\x54\x58\xd8\x7f\x57\x31\x2b\xb7\x57\x95\xcf\xe6\x31\x75\xfe\xc6\x66\xb9\x78\xbc\xe3\x4c\xc8\x71\x7e\x21\x03\x3e\xaf\xb1\x61\xbf\x4d\x0d\x32\x1c\xe0\xdf\x2b\x55\x47\x1c\xcc\x4d\x0b\x46\xb2\x6d\x0e\xd8\x81\x69\x38\x21\xce\xd1\x27\x95\x0a\xcd\x06\xfd\x24\x44\x30\xde\x66\x68\x9a\xde\x53\x60\x8b\x22\x0b\xc2\x15\xcc\x62\x44\x76\xb6\x86\x7f\x7a\x5c\x79\x5f\xa1\x6c\xb1\xba\x02\x16\xca\xf3\xa6\xee\x05\x1d\x6f\x61\xa6\x1d\xf4\xf2\xf1\x52\x1e\xf5\xa2\xd7\xb8\xbf\x8d\x1f\x07\x1e\x3f\x3f\xd6\x84\x3d\xc2\xc7\x10\x61\xef\xc0\x01\xeb\xdd\x43\x9f\x21\xe6\x3d\x2d\xea\x5d\x4c\x2d\xa5\xac\xce\x7a\x5a\x54\x91\x42\x06\x30\xca\x40\xfc\xb4\x72\xc2\xea\x74\x65\x42\x42\x4e\xa7\x7d\xce\x82\xf0\xd3\x38\xd8\xf0\x93\x36\xb7\xf7\xdc\x24\x79\xb4\xc4\x80\x73\x34\x2f\xcf\x2a\x3b\xbe\xb3\x6d\x0a\x19\x41\x1c\xe4\x2b\xdc\xf9\x46\x18\xbc\x83\xab\xce\x4f\xf4\x21\x38\x5e\x8a\x12\x65\xe0\xbe\xa1\x33\xf7\xe6\x26\x7a\xd1\x1b\x65\x41\x58\x44\xe1\x56\x38\x3b\x45\x6c\xc1\xb3\x2b\x2b\xc1\x20\x37\x39\xc1\x3e\x18\x87\x53\xba\xa9\xf2\x69\xa8\x7b\x22\x02\x9f\x03\xec\x93\x9f\xa0\x86\x44\xf2\xb5\xa1\x0a\xd8\x8f\xf1\x33\xc4\xc6\xa0\x89\xdc\x7d\xc9\xeb\x45\x79\x50\x55\xb1\xca\x5b\xf9\x27\xf4\x0e\xfc\x58\xa5\x5f\x69\x56\xd5\xd9\xd3\x0a\xa9\x7c\x9e\xae\x2c\x3f\x56\xd5\x21\xd7\x33\x82\x92\x6f\x91\x83\x1b\xa5\x51\x52\xe4\x54\x91\x58\xff\x03\x67\x68\x74\x45\xef\x08\x92\x57\xa1\xa5\xae\xb4\x9b\x95\x9e\x81\x55\xf4\x7e\xa7\x4d\xce\xb7\x17\xad\x46\x5c\xe0\xa3\x69\x76\x41\xe9\xa2\x7e\x8c\x66\x90\xc0\x16\xdb\x4c\xb5\x8f\x86\xf1\x58\x7a\x33\xe8\xcb\xcd\x6f\x6e\xb4\xac\xf7\x83\x5e\x61\x72\x4b\x4b\xc1\xfc\x02\x13\x2e\xc4\xe7\x9f\xe0\x96\xcb\xb1\x26\x43\x08\x93\x64\x69\x1c\x1b\x19\x77\x22\x7b\xe5\x61\x3e\x3f\xf1\x95\x1d\x46\x6f\x18\x25\x11\x6e\xd7\xe1\x59\xa7\xb3\x53\x9d\xb9\x02\x3f\x55\x60\xb1\x00\x18\xdc\x97\x6c\xfb\xa7\xfa\x3a\xd2\xe4\x71\xef\x1a\xa6\x49\x41\xdf\xa2\x37\x43\x5f\x02\x4d\xa4\xd3\x5a\x9b\xe8\xb4\xaa\x68\xce\x29\xe2\xf7\x15\x3d\xb7\xfb\x8e\x4a\xba\xd3\x24\x34\x4f\xba\x24\xe1\x0f\x10\x6a\x71\x3a\xdd\x54\x16\x87\x9d\x09\x6d\x68\x54\xb5\x0f\x35\xae\x6c\x37\xa9\x29\x5a\xcb\xc1\x6a\xe9\x23\x52\xb3\x6c\x3a\x3a\xe4\xdb\xc9\xe3\x09\x89\xcc\x45\x88\xe9\xf1\x5f\xe1\x9b\x21\xbe\x5c\x56\x75\xf7\x1e\x18\x04\x61\x31\x7c\x47\x3b\x38\x34\x07\x68\x55\xd2\xc0\x78\x7d\xf4\x32\x24\x79\xa4\xb7\x90\xec\xd1\x75\xb8\x23\x9a\xbc\x38\x0d\x1d\xbb\x3d\xab\x2b\x29\x1b\xd7\x31\x44\xa3\x38\x5a\x5e\xce\x3b\xb5\x4e\x25\xd5\x44\xd2\x52\x6e\x81\x66\x57\x95\x6a\xa7\x2e\x61\x3c\x2f\x2d\xd5\xf3\xca\x7f\xb6\x9f\x45\xec\x09\x8c\xdc\x18\x10\x03\xc4\x5e\x36\x36\x67\x4d\xbc\x96\xb0\xe0\x2d\x1b\x2c\x34\xec\x50\x99\x01\xe9\x81\x90\x4a\x62\xf7\x2d\x7e\xa1\xa3\x10\xdb\x40\xf8\xf0\xe3\x46\x1e\xb6\x7f\xde\x5b\x8d\xcc\x5a\x8d\x1e\x73\xe5\x2f\x34\xcb\x26\x26\xfa\xbf\x23\x41\x78\x4a\xdd\x82\x91\x61\x56\x1a\x50\x5c\x13\x3a\xb2\xf9\xb1\x82\xbe\x2d\x9b\x2a\xee\xa1\x29\x82\x00\xc0\xa3\x30\x7e\xd2\x36\xee\x1c\x8d\xe3\x58\x13\xae\x2f\x28\xc2\x75\x93\x2c\x5c\x05\x85\x9e\xa9\x6a\x73\xa5\x2c\x72\x5f\x05\x57\x00\xf9\x44\xd0\xe6\x09\x55\xd2\xb3\xd2\x82\xb5\x59\x71\x95\x44\xb5\xdc\x6c\x8d\xd3\xcf\x0c\x75\x03\x51\x29\x2a\xd7\x2f\x5b\x63\x2b\xb5\xd3\x6f\xf9\x6e\xa5\x6c\x68\xa2\xd3\x39\x35\x02\xce\xe3\xa8\x67\xe8\xdd\x90\xc3\xcf\x00\x42\xc9\x4f\x60\x7e\x87\x80\x76\x5a\x51\x2f\xc1\x9a\x40\x4e\x7d\xd3\x66\x75\xeb\x69\x3e\x88\xd2\x4e\x23\x5a\x88\x08\x95\x2a\xec\xe9\x57\x4c\x29\x42\x3d\x18\xae\xb8\x15\xbf\x81\x2f\x8b\x4d\x7a\x47\x21\x57\xfa\x41\x1c\x1b\x06\xaa\x33\x33\x82\xbe\x94\xb0\x24\xdc\xcd\x5e\x8d\x1c\xa4\x9d\xb3\x34\x05\x59\xa8\x19\x38\xfe\xf2\x7f\x44\x03\x4d\x3b\x39\x70\x44\xf9\xc6\x76\xdc\xb7\xcf\x5b\x4d\x58\xc1\xcc\x82\xc0\x5d\x0e\xdc\xa4\x50\x55\x07\x6e\xd4\x8b\x45\x6e\x09\x6d\x3a\xa0\xc8\xf8\xb1\xaf\x11\x8d\xd5\x11\xb9\xab\x8a\x6f\xc8\xfd\xb7\x77\x6b\xc7\xa5\x1b\x63\xdc\xa5\x25\x8e\x64\xf2\x75\x25\x08\xf7\x3d\xaa\x8d\xe5\x48\x75\x58\x38\xd8\xa3\xf3\x9b\x4e\x9e\x6d\xca\x08\xbf\xf8\x84\x62\x50\x91\x17\xe2\x4b\x9b\xef\x29\x9f\xe5\xbb\xca\xf0\x7f\x93\x3e\x44\xb4\x8c\x5d\xdb\xe4\xc4\xff\xcb\xd8\xbb\xc7\x48\x96\x9d\xf7\x61\x33\xd5\x3d\x8f\x7d\xcf\xcc\x2e\x49\xc9\x48\xe0\xa2\x43\x64\xa3\x78\xbd\x96\x80\x18\x31\x92\x20\xb7\x34\xd3\xe4\x72\x06\x62\x6f\xa3\x77\xb8\x4b\x2f\x1c\x80\xa7\x6e\x9d\xae\xba\xec\x5b\xf7\x16\xef\xa3\x7b\x7b\x11\x04\x41\x90\x3f\x0c\xc3\x7f\x04\xb0\x2d\x18\x50\x2c\x48\x89\x11\x19\x0e\xe5\x48\xa4\x64\x3a\xa2\xac\x2a\x52\x5a\x8a\x12\x43\x71\x77\xb9\x6f\xee\x63\x76\xde\xcf\x9e\xf7\xab\x67\xa6\x27\xb8\xdf\xef\xfb\xce\xf9\x6e\xd7\x1d\xc1\xff\x10\xf7\x72\xa7\xab\x6e\x9d\x7b\x1e\xdf\xe3\xf7\xa0\xec\x0f\x9d\x83\x31\x65\xdb\x35\x1b\x5d\x69\xdb\xaa\x5d\x75\xac\x2c\x62\x36\x11\xe8\xe9\xde\x1a\x1a\x52\x6f\x39\x81\x29\x6a\x36\x14\x3b\x94\x32\x24\xab\x48\x88\xdc\x2d\xcd\x5c\x3c\xc0\xbb\x4a\x83\x7d\x43\xa1\xd7\x8f\xd5\xb0\xb0\x59\x15\xe7\x52\x95\x55\xec\x4f\x7c\x69\x78\x43\xa1\xf0\x38\xf8\x15\x60\xd7\x93\x35\xed\xc5\x32\xcf\x09\x8f\xe4\xac\xc8\x41\x84\xc2\x94\x38\xa9\x64\x69\x90\xa9\x63\xd1\x9c\x51\x98\xd4\x2c\xea\x8a\xd3\x82\x88\x44\xd2\xa1\x20\x1a\x43\x9e\xb7\x90\x87\x26\x33\x0f\xc6\xee\x3e\xa1\x4a\x55\x4b\x19\x6f\x29\xe8\x09\x63\x5f\xe0\xeb\x06\xa5\x3d\x42\x39\x00\x19\x2a\xaf\x80\x46\x53\xf3\x58\x50\x98\x3a\xd2\x70\x48\x2d\xb4\xcd\xa8\x98\x51\x5a\x19\x67\x94\xc3\xcb\x39\x0d\x4e\xfc\x56\x13\x08\xb8\x3d\xca\xd2\xd0\xda\x9e\xa8\x1d\x89\x08\xbf\x12\xbf\x3e\xaf\x25\x42\xd8\x43\x36\xc1\xbf\x46\x82\x75\x4b\xcb\x9e\x7a\x8a\x7c\x38\x88\xc2\x65\x9b\xa0\x98\x24\x89\x9f\x8f\x61\xd1\x33\xc6\x94\xb9\xd3\x40\xa3\x11\x3d\xaa\x19\xaf\x75\x0a\x18\xae\xb6\x47\xc1\xc7\x5e\x72\xa5\xbc\x30\x8b\x86\x60\xe4\x61\x0e\xec\xea\x28\x1e\xc4\x75\x2e\xbb\xa2\xc6\x72\x7a\xac\xeb\x94\xaa\x9f\x98\x44\xe1\x72\x62\x86\x7c\x5c\x09\x1e\x41\xc5\x5e\xa7\x9a\xb4\xb9\xf3\x41\xaa\x0a\x6e\x78\x77\xa8\xec\xf2\xb5\x6b\xbf\xe5\xcb\x6b\xdc\xb5\x70\xc5\xa2\xaf\x7e\xb9\xa6\xe6\xc1\x76\x5d\x81\x6f\x7e\xde\xc1\xf7\x63\xbf\xbe\xa2\xe2\x81\x72\x19\xe7\x6f\xe3\x63\xfa\xf7\x66\x86\xdd\x32\x36\x49\x68\x81\x09\x51\xa6\x84\x52\x6c\xfe\x0b\x9a\x67\xa2\x43\xf7\x84\x6b\x15\x92\x50\x2b\x28\x84\xa2\x07\xd3\x52\x66\xd1\x7e\x29\x0d\xa2\x38\x9e\xd1\x78\x63\x55\xd5\x81\x3d\x00\xd3\x55\x15\x2a\xae\x9f\x16\x45\x1c\xd9\x2e\x06\xcd\xf9\x0f\x28\x81\x24\x5d\xc3\xb1\x2b\xf6\x71\x4d\xc0\x43\xa0\x2a\xf1\xb0\xc7\x2c\x6c\x8c\xfd\xcc\xba\x87\x99\x8c\x00\x76\x83\xe6\x8f\xe8\x12\x28\xd8\xe0\x65\x95\x13\x3f\x0c\xf7\x53\xb4\xb9\x37\x69\x33\x45\xe4\xf3\xfb\x81\x52\x6e\x38\x3f\x6e\x7d\xf1\x6b\x1c\xe9\x9c\xa6\x6a\x9d\x64\x1b\xb4\x30\xf8\x63\xd5\x8b\x5a\x8e\x00\x67\x40\x3a\x7d\x79\xec\x39\x4b\xc7\x74\xac\xb7\x31\x75\x8e\xbd\xb4\xf0\x85\xf6\xc0\x44\x59\x2d\x88\x1b\xab\x20\x6e\x2a\x16\x3a\x74\xa8\xfd\x6a\x34\xca\x39\xcf\x94\xfe\xb5\x12\x6c\x9c\x16\x79\xae\x76\x82\x38\x4d\x97\x75\xaa\x13\x68\xa2\x87\x86\x02\x84\xcb\xf9\x93\x94\xa2\x9d\x46\x39\x08\xd9\x05\x86\x0a\xef\xf8\xde\x58\x31\x0a\x58\xa0\x0e\xcb\x60\xef\xc4\x77\x7b\xae\x01\xd4\x82\x9e\xc8\x8f\x02\x5f\x4d\x7a\x17\x99\x02\xe6\x18\x90\x47\x74\xcc\x7c\x69\x6f\x87\x5e\xb9\xec\x06\xf4\xa2\x90\x5d\x3e\x4c\x46\xb1\xa8\x52\xb1\xa9\x29\x8a\x6d\x3f\xa0\xd5\x25\xd2\x3e\xd5\xcf\xc3\x0b\x3c\xcd\x65\x5d\x57\x91\xaa\x66\x20\x16\xe1\x6e\x64\x2d\xf8\x29\xe7\x54\x41\x8c\x74\xb9\x32\x46\x21\x29\x3d\xc1\x39\x37\x75\x1b\x84\x57\xf3\x91\x4d\x70\x1c\x34\x29\x38\x4e\x5b\x31\xbc\xd0\x1e\xa6\x49\x54\xa4\x5e\xd1\x51\x20\x87\xbe\x6a\x70\x56\x53\xbe\x07\x69\x99\x9b\xa4\x97\xef\xd4\x3a\x4d\xd8\xf8\xf1\x2d\xe2\x5c\x81\x77\xf9\x3d\xa4\x87\x4e\x06\xd5\x8b\x12\x8f\x75\xf9\xc8\x69\xd1\xa7\xb1\x03\x08\x23\x9e\x65\xc0\x2d\xdf\x38\x8e\x4e\x99\x44\x44\x23\xdb\xa1\xb8\xb7\xb3\x04\x88\x70\xe4\x1b\xd7\x3f\x3a\xa5\xf8\xca\x3f\x21\xc8\x8c\x98\x15\x37\x2b\xb1\x5a\x43\x7c\xca\x6a\xb6\x38\xb0\x96\x42\x6e\xd5\xfc\xae\xb2\x22\xff\x45\x9c\xe8\x4e\xfe\xa2\x9a\xa4\xe8\x9c\x01\x78\x82\xd7\x4c\x2e\xdc\x2f\x6c\x5e\xa2\x4d\x01\x6b\xff\x06\xc1\x28\x1d\x26\xaf\xfa\x3e\xd4\x86\x66\x27\x9e\x75\xc1\x6c\x1f\x94\xa5\x6f\x53\xf5\x52\x74\x36\x95\x73\xff\x7b\x81\x0f\x26\xaf\xd1\xcf\x45\x6e\x88\xea\x25\x4a\xd4\x9f\xf2\x8b\x91\x8d\x91\xa6\x2d\xea\x60\xbb\x61\x11\x8e\x15\xf4\x18\x72\x01\xc7\x2f\xf2\xae\xb0\x1f\x50\xe0\x87\x69\xbf\x1d\xd3\x56\x1c\x76\x28\x8e\x11\xa1\x0f\x1a\x2d\xfc\xae\x6d\xf0\xe9\xc5\xd4\x80\xc4\x3e\x82\x98\x4f\x1b\x74\xc9\xe6\xda\x5d\xd3\xef\x13\xab\xc4\xe5\x33\xeb\x35\xd5\xf5\x06\x09\x9d\xa2\xcc\x96\x2d\xe2\x7f\xc4\x76\x30\xb9\xe0\x6b\x17\x1f\x54\xab\x29\x8e\x20\x8f\x85\x40\x14\xa9\x0d\x5f\x4f\x7c\xa2\x14\x9a\x2c\x5b\x7b\xb8\x1a\x43\x2e\x31\x04\x6a\xd1\xbd\xab\xf0\xfc\x7f\x36\x56\x90\xc5\x8b\x78\x81\xf8\x57\xb7\x31\xb8\xc8\x41\x3e\xc0\x12\xc0\xc6\xf3\x1e\x4d\x09\x14\x70\x59\xad\x05\x6b\xe0\xe7\x08\x8b\xf9\x4f\xa6\x82\x27\x61\x0a\xc4\xd5\xc3\xcd\x28\xb6\x2b\x30\x02\xa2\xfa\x5c\x4d\x28\x01\x8e\x3f\x51\xf3\xf4\xe3\xfd\x59\x01\xd7\xbd\x47\xdb\x63\x0a\xe4\x95\x72\x08\x85\x03\xed\x13\x5a\x46\xc0\x2f\xb2\x8c\xaa\x78\x2c\xfa\x01\xfb\xfc\x3f\xf8\xe2\xaf\x2e\x7e\x06\x93\x0b\x68\x88\xe3\xa8\x07\xb3\xe0\x85\xd6\x53\x07\xea\x0c\xbf\xff\x71\x22\x44\xbb\xce\xa2\x17\x6f\xbf\xa2\x62\x7a\x36\x87\xc3\xa6\x71\x84\xb6\x57\x3c\xd9\xa9\xb1\xf6\x57\xa2\x6d\xae\x66\x9e\x87\x69\xf6\xda\xd8\xeb\x4c\xb4\x3a\xaa\xee\xc5\x4e\xe3\x38\x47\x2f\x07\x4a\x48\xf6\x35\x1a\x51\x44\xf8\x7b\x26\xca\x57\xf2\x63\xac\x6d\xa1\xf0\xfb\xd6\xe2\x6c\xa7\x9a\xd7\x48\x69\xf7\x76\xa4\x00\xd8\xcd\xd2\x64\x69\x68\x12\xd1\xed\x15\xe1\x2c\x35\xf4\x1c\x41\x61\xdd\x4c\xab\x24\xcd\xcf\xb7\x7b\x59\x3a\x1a\x09\x1d\xb9\xe6\x27\x8b\xdf\x77\x53\xf7\xc6\x67\xa6\xfa\xd2\xcf\xb4\x4d\xd6\x2f\xdd\xde\x0e\x74\xee\xeb\x34\x07\xf9\x5a\x35\x56\xc9\xdb\xb5\xcc\x00\x89\x43\x29\x00\xf2\x3b\x18\x24\x6e\x81\xe3\x38\xbc\xda\xe4\x24\x1a\x25\x4b\x51\x12\x15\x11\xcd\x34\x24\xb0\xfc\x0b\xf9\x26\xd0\xc2\x1c\x31\xa0\x10\x8f\xd4\xc4\x38\xaa\xaf\x93\x9a\x9f\x5f\x29\x24\xc4\x29\x9c\xe2\x6f\xa1\x18\xe8\x3e\xbf\x1a\x0c\xfc\x97\xe3\x88\x10\xf0\xb6\xd6\x29\x09\x63\xd1\x1d\x9a\x1e\xfc\x59\x18\x31\xfe\x0b\x8a\x03\x58\x86\x48\xf9\x3d\x55\x59\x92\x5d\xb5\xdd\x2e\x2f\x1b\xf0\x70\x8e\xe2\x4f\xf9\x66\x2a\x2e\x9f\x3b\xdc\xb6\xaf\x84\x36\xcf\x85\x36\xc0\x50\x42\x65\x5b\x7a\x4e\x91\x9e\xf2\x51\x94\x45\x24\x43\x38\x77\xb8\xc6\x65\xc0\x66\x77\x17\x87\xaa\x40\xe1\xf7\x28\x77\xb1\x6c\x18\x71\x61\x48\xba\x75\xaa\xef\xfe\x9e\x92\xe8\x03\xa2\x91\x19\x62\x4a\x66\xf2\x8c\x02\x70\xf7\x4d\x19\xa7\x51\x6e\x91\xfa\x38\x41\xb4\x2f\xbd\xa4\xa7\x9b\xf4\xa0\xef\xd6\x0e\xbf\xbe\x49\x1e\xa9\x1e\x1e\x1f\xfa\xbe\xe6\xcc\xe1\x89\x90\x60\x5f\x52\xb5\xb4\xef\x8e\x55\xb4\x73\x0c\x3b\x03\xdf\xe0\xe5\x61\x15\x41\xf2\x0f\xfb\x0e\x87\x77\x02\xd9\xd0\xc9\x0c\xbb\xce\x21\x98\x3d\x3f\x55\xd7\x3b\x38\xdf\x8e\x32\xa6\xb3\xa0\x72\x84\x70\x9f\xaf\x95\x50\xe8\x28\x4b\x57\x80\xc2\xc2\x6e\x7c\x8f\x1e\x19\xe8\xec\xc7\x11\xa2\x8b\x47\x95\x2f\xfc\x4f\xdb\xee\x90\xd9\x2d\xc9\x26\xcc\xa8\x4e\x06\x7c\xf3\xd5\x79\x2a\x01\xc8\xa3\x93\x06\xf2\x68\xbe\x6a\x6d\x61\x13\xf9\x08\xec\x43\xd7\x55\xf5\x8b\x71\x37\x92\xa4\x7b\xa4\x56\xb7\x5c\xdb\xeb\x47\xfa\x0e\x4d\x6d\x76\xbb\x1a\xd7\x1c\x15\xaa\xb5\x84\x1d\xe3\x37\x70\xea\x60\x2f\xb8\x55\x17\x09\xf3\xf2\xf5\xef\x53\xdf\x53\x5a\x89\x4a\xae\x0f\x6e\xa4\x98\xbb\x60\x6e\xe0\xd8\x60\xc6\x39\x7e\xfe\xfd\x6a\xf1\x6d\x6e\x9f\xd0\xaa\xc5\xda\xf9\x2b\xec\xdd\xfc\xb5\x63\x55\x26\xdf\x3e\xc1\xfb\xc5\xab\xbf\xda\x64\x34\x3b\xca\xec\xc8\x64\x32\x3e\x58\x1f\x38\xcb\xf1\x9b\x18\x2e\x84\x60\xe6\xc6\x14\xee\x8f\xc0\x32\xb1\x59\x5b\xcd\xa2\xfe\x00\x15\x3e\x8e\xbd\x55\xda\x78\x6e\xaa\xba\x5d\x25\xdd\x85\x1d\xb1\x12\x83\x98\x04\x56\x7f\x8d\x91\x00\xa5\x10\xb3\x67\x5a\xac\xff\xd0\xa1\x76\x66\x97\xca\x5c\x18\x76\xce\xc0\xc6\x27\xb7\xaa\xc5\x12\x15\x76\xb8\xcb\xf7\xfa\xae\x2b\x59\xad\x53\x1a\x64\x7b\x11\x07\x12\xc6\xf4\x1d\x55\xc5\x3b\x46\xa7\x1e\xff\xff\xb4\xf7\x49\xad\xa7\x61\x3c\x07\x26\xe9\xc5\xee\x88\xc0\xb6\x7a\x4c\x49\x71\x1f\x6b\x52\x48\xfa\x8f\x82\xb2\xe9\x74\x3a\x33\x91\x26\x7e\xff\x2f\xd8\xb7\x1d\x16\x44\x39\x18\x6c\x7d\x61\x5f\xff\x7a\xbb\x67\x57\x0c\x59\x60\xc1\x9b\xfd\x39\x8e\x77\xd0\xa4\x74\xd6\x24\x87\x0e\x71\x72\xf8\x6f\x94\x65\x75\x61\xb3\x95\x6a\x35\xcd\x7a\xff\x78\x2e\x47\x3a\x24\x4c\xf5\x20\x38\x82\xdf\xd3\xf9\x7b\xab\x41\xce\x6b\x9e\xf4\x3a\x55\xb1\xf9\x03\x0d\xf2\xfa\x60\xaa\xe1\x22\x61\xdb\x4a\x94\x43\x96\x16\xeb\x83\xd1\xe5\x7c\xe3\xea\x9e\xa3\xc8\x86\x72\x76\xa0\x42\x8b\x0c\x82\xaf\x1b\x5e\xde\x42\x7b\x64\x93\xc4\x24\x05\x61\xa4\x91\xa2\xe3\xdd\x69\x08\xac\x10\x89\x7d\xd9\x30\x8f\xfa\x49\x35\x17\xbd\xa1\x16\x9c\x18\x64\x25\x48\x9a\x15\xa6\xc3\x51\x9a\x33\x49\x0d\xd9\xd4\xfd\x69\x73\x30\xb9\x71\xed\xfd\x57\x6c\x58\x16\xe8\xab\x21\x3e\xbb\xa1\xbc\xa1\x6e\xa8\x9a\xfc\xaf\x2e\x7e\x71\xc6\x77\x4a\xa0\x00\xa0\x7c\xf6\xbc\x9d\xab\x5f\x1c\xa1\xc9\xc0\x32\x41\x72\x0a\x44\xb8\x74\x50\x94\x77\xc1\x65\xfa\x41\x98\x10\x67\xf1\x5e\x31\xde\x37\x71\xea\x20\x3f\xf9\x18\xa7\x0e\xe6\x13\xcc\x99\xf1\x27\x6f\x52\x46\x25\x3a\x54\x5b\xe3\xaa\xc3\xcf\xb7\x4d\xd2\xb7\x71\x8a\xf6\x18\x76\x59\x54\x66\xf8\xba\x4e\xe9\x89\x0d\x25\x1e\xce\x50\xc9\x15\xbf\xce\x34\x11\xe5\x49\xcb\x37\x2b\xa5\x2d\x86\x95\xff\x53\x6c\xfb\x7c\xa3\x5c\x79\x0b\x1b\x0e\x92\x34\x4e\xfb\x91\xcd\x77\x61\xf7\x94\xb3\xa6\xe5\x3c\xa1\x4e\x06\x0a\x16\xbc\x1e\x28\xeb\xc1\x4d\x0c\x9a\xc8\xa2\x56\x8f\x29\x54\x09\xfa\x6d\x28\xa7\x3f\xd1\xd9\xa3\xd8\x3e\x2b\x69\xc1\x1a\xf7\x6c\x76\x16\xf8\xed\x62\x7a\xeb\x14\x8f\x38\xd5\xe9\xdf\xa8\x79\xf5\xd1\x84\xc7\xeb\x3c\x39\x7e\xc4\xd3\x97\xd3\xa7\x3c\xb0\x6d\x14\xa8\xee\xdc\x0e\xe4\xab\x52\x5f\x22\x14\x2b\x12\xde\x4d\x65\x91\x7f\x39\x50\xf2\x0b\x57\x54\xc7\xfe\xa9\x89\xb2\x0a\x66\x47\x1c\x11\xe8\xa9\xde\xba\x04\x17\x5e\x6d\xfa\xfd\xb1\xde\x76\x30\x9b\xc4\xfe\x9a\x8e\x53\x14\x51\x2f\xe8\x22\xd1\xb9\xa0\xf5\xf4\xd3\xce\x96\xb3\x9a\x66\x9b\x1b\x4a\x7a\xea\x13\x3a\x54\x5d\xf9\xd2\x0b\xcd\x6f\x36\x91\x13\x7b\x16\xe6\xb9\x5a\x41\xe5\x23\xad\xa0\xf2\x51\xe0\xe9\xc7\x79\x91\xf6\x90\x11\xe3\x27\xbe\xa9\x94\x35\xde\x54\xce\x82\xd5\x2e\x10\x2d\x45\xa1\x49\x8a\xc7\x3c\x12\x9b\xcf\x4f\x47\xd5\xaa\x8e\x6d\x77\xde\x54\xc3\xee\x72\xc8\xea\xb7\xa2\xd3\x70\x1d\x93\xc8\x71\xa7\x9d\x2e\xc8\x69\xe5\x4a\x01\x06\x26\x82\xaa\x3f\xa3\x91\xc0\x1a\xb8\x8f\x2a\x26\x77\x4b\x6b\xf4\x1e\x7a\x9b\xe2\x30\xfc\xa8\x6b\x8f\x64\xcb\xf9\x23\xde\x65\x03\xc2\x30\x6e\x4c\x3c\x42\x55\x54\x2f\x45\x70\x46\x97\x85\x15\x3a\x60\x1b\xf2\x42\x44\x12\x4f\x22\xcb\x95\x18\x5c\x59\x5a\x8c\x3d\x36\xa8\x35\xa9\xe2\x63\xf9\xa8\x06\x7f\x18\xf6\x4f\x7a\x60\x5f\x66\xeb\x12\x59\xdc\xdf\xce\x63\x33\xe2\xca\x17\x3b\xc9\xd1\xd0\x89\xab\xdc\x5e\x47\xd5\x37\x79\x9a\x98\x2e\x53\x8d\x39\x4d\x0f\xfc\xd9\xf2\x89\x2b\xa6\xf5\xcb\xc4\x89\x6d\x0a\x05\x86\x46\x87\x6f\x9c\xda\x57\x37\x4d\x7a\x83\x94\xb4\x45\xf8\xf4\x71\x84\xf8\x17\xf7\x3b\x99\x90\x26\x63\xeb\x5e\x66\xcd\x50\x59\x07\x5c\xac\x21\x48\xbc\x5b\x27\xb1\x5b\xc8\xc6\x64\x4e\x7b\xd4\xbf\xac\x2d\xee\xe7\xfd\x8f\x71\x05\xf5\x4f\x6a\xdb\x68\x37\x5d\x6d\xa9\xd2\xc7\x31\xd5\xc2\x3d\xf6\xc0\x8a\x09\x87\x79\x6e\x57\xa8\x9b\x53\x6e\xdd\x7d\x11\x6c\xd8\x38\x1d\x49\x80\xa9\x31\x50\x52\xe1\xa4\xdf\x81\x0e\xd4\x71\xa7\x32\x11\xc6\x65\x17\x59\x19\xf2\xa1\x37\xc6\x35\xbb\xb9\x40\x49\x2b\x3c\xd6\xf1\x38\x99\x9d\x13\x85\xb0\xb8\xe5\xde\x89\x4d\x8a\x41\x99\x47\x26\x17\x21\xa2\xa6\x7e\x88\xef\xb3\x2f\xd9\x6c\x25\x85\x20\x8f\x23\x3e\x2e\xee\x77\xc4\xc7\x46\x82\x53\x1a\xdb\x64\x96\xd6\xad\xf8\x21\xb4\x9c\x65\xdd\xb6\x09\xfd\x78\xd4\x60\xee\x2a\x15\x98\xab\x4a\xcf\x64\x94\x96\x49\x6f\x57\xb5\x10\xf9\x90\x19\x7b\x07\x32\x68\xdb\xca\xe1\xe3\x0f\xa2\x8f\x03\x95\x7e\xff\xef\x28\xee\xc8\xb6\x5a\x7d\x0b\x68\x94\x47\xdc\x7c\xcf\x47\x36\x2c\x63\xef\x27\x2b\xaf\x43\xd5\x65\xa6\x75\xdc\xa8\x70\x42\xf0\x30\x04\xb5\x9a\x3d\x21\x20\x13\x85\x72\xf9\xd5\x5f\x9b\xf1\xd0\x8d\x19\x6c\x00\x48\x70\x66\x38\x1d\x41\xee\xf3\xdb\x8a\xf4\x5f\x85\xf3\x59\x37\xca\x07\x4e\x31\x50\xfb\x51\xf3\xb5\x8a\xe9\x97\x32\x6b\x77\xfa\x61\xbc\x38\x9e\xd6\x91\x40\x55\xf8\xe8\xd8\x23\xda\x6e\xa3\xb7\x80\xbc\xef\x67\xd8\x7d\x85\xfc\xb6\x4f\xd9\xa5\x87\x36\x5a\xb1\x19\x5a\x3e\xe8\xc5\xc3\x8e\x91\x55\xce\xc6\xbe\x08\x7c\xa6\xc9\x8e\x35\xa2\x20\xaf\x66\xd8\xcb\x86\x08\x7c\xe3\xe1\xbc\x64\xf7\xac\x24\x0b\x6e\x29\xcc\x1d\x97\x94\xe5\x0d\x3a\x11\x19\x6b\x96\x09\x12\xfe\x02\x17\x65\x77\x75\x7c\x96\x0a\x5b\x69\x47\x7a\x55\x72\x49\x4d\xa9\xca\x52\x94\x44\xf9\x40\x42\x64\xf4\x59\xdf\x57\x78\xe4\xf7\x55\x9c\x98\xa7\x71\x6f\x77\x4b\xf1\x4b\x75\x33\x27\x50\xf5\xd9\xa3\x18\x57\x54\x3e\x20\x43\xa7\x61\xc0\x40\x37\xbf\x47\xa7\x35\xb6\xef\xef\xd3\xd4\xc6\xd8\xce\x76\x9e\x50\xbd\x91\x28\xeb\xe5\xdb\x9a\xf6\xc9\x38\x5d\xb5\xd9\xac\x4a\x8e\x40\x32\x73\x15\x96\xea\x69\x90\x77\x43\x70\x03\xc5\xbd\x33\x53\x9b\x5a\x95\x81\xe4\xe1\xc0\xf6\x4a\x67\x20\x2d\xb2\xbc\xfa\x70\x7b\xd4\x6d\xbc\xc3\x28\x9c\xd1\x1e\xa4\x90\xf2\xe5\xbc\x52\x5b\x95\x6c\xeb\x34\xe4\xac\x79\x3a\xca\x4c\x02\x16\xa4\xd3\xf4\xaf\x86\x5e\xbc\x02\x1e\x24\x68\x93\x58\x93\x75\xd7\x76\xb4\xbe\xfa\x65\x1e\xa7\xd3\x2a\x3d\xbe\x1c\xa8\x4d\x1c\x95\x0d\x54\x8a\x37\x03\xed\xcd\x75\x4e\xc9\x62\x76\x0d\xa7\x2b\x2f\x3b\x87\x35\x55\x7b\x3f\x17\xec\x73\x73\xad\x1f\xe5\xb1\x29\xa2\x15\x96\xf4\xc6\x8c\xfb\x54\x71\x90\x90\x52\xb1\x44\x88\x42\x78\x14\x83\x34\x4b\xcb\xfe\x80\xa5\x6e\x19\x0a\x15\xf8\x5a\xe8\xc9\x26\x53\xad\x30\x59\xe5\x98\x4c\x4c\x46\xe8\xb7\x89\xfb\x88\x9c\x80\xfd\x2c\x4a\x7a\x6e\x3b\x72\x68\x3a\xa7\x78\xf8\xf1\x78\x8b\x17\xdb\xb3\x55\x72\xf7\x02\x66\x8c\xe8\x92\x68\x72\x24\xb3\xa0\xf9\x66\xec\x2b\x5c\x17\x1b\xf8\x11\xed\x6e\x9c\x86\xec\xe3\x21\x00\x6b\xdf\xd2\x45\xbb\x1c\xab\xe4\x93\x07\x1e\xa3\xcb\x99\x4d\x5e\xc5\xba\x93\x82\x87\x22\x19\xac\x6b\x59\xc9\xc2\x8a\x19\xdf\xcb\x7e\x54\xbc\x33\xdf\x9d\x40\x49\x20\x9e\x56\x7c\xb7\xd5\x28\x8e\x23\x33\xdc\xe1\x4f\x21\x28\xf2\x38\x9d\x00\xc7\xbf\xfd\x89\x16\x8a\x39\x1e\x68\x0d\x99\xe3\x9a\x55\x96\x0e\x09\xb0\xf3\xa2\x68\xbb\xb0\x3e\x0c\x36\x0b\xd4\x8c\xd0\x71\x7b\x4d\xb9\x05\xde\xd5\xb0\xcf\x24\x2f\xa2\x3e\x4e\x1f\xcf\xb6\xc3\x21\x2c\xc6\xc3\xfe\x3c\x34\x49\x61\xb2\x5d\xca\xcd\xed\x3a\x62\x64\x51\x74\xa1\x2f\xc7\x7e\x72\x9a\xf6\x16\xb6\x22\xa5\xb8\x58\x6c\x49\x69\x86\xb8\xff\xe0\x2c\x83\xa6\x85\x2d\xe0\x54\x67\xb3\xd0\x64\xe8\xf8\xca\x34\x55\xce\x05\x27\x03\x9d\x27\x0e\x47\x36\x33\x24\xd3\x40\x63\x82\xe8\xf7\x06\x1e\x8b\x6f\x68\x1c\x10\x1f\x5e\x56\xe6\x72\x97\x35\xf4\x22\x85\xce\xe1\xcb\xbc\x4b\xb1\xb0\x10\xdf\x34\xb1\x30\x6d\x54\x0c\xaa\x53\xe3\xc0\x01\x5e\xf4\x88\x57\x35\x0f\x5d\x14\xcd\xb6\x2e\xb1\x5f\xa2\xe0\x94\x7e\x1e\xf6\x88\xd3\x9a\xdc\x7e\xda\xb1\x61\x8a\x34\x4b\x76\x56\x41\xb9\x28\x96\x2b\xee\xf5\x6d\x55\x04\x81\x4b\x9e\xe8\x71\x79\x10\xc0\x39\xa5\xbe\xad\xe5\xb6\x4c\x31\x88\x6d\x11\x85\xac\x79\xc9\x62\xa3\xca\x1e\x12\x42\x9b\x98\xae\x77\x82\xcf\x6c\x45\xdc\xbd\xdc\x7e\x71\xff\x1c\x69\xfb\x61\x16\x1f\x55\xda\x81\x47\x6b\x3c\xb0\x9e\x1d\xf2\x4e\x82\x92\x2f\xef\x92\x7c\x53\x8b\x83\x8b\xcc\xee\xac\x72\x5e\xa0\xd6\x45\x96\xf2\xb8\x92\xfc\xe4\x02\x13\x46\x78\x1b\xa1\x0b\xb1\xde\xc0\x15\x43\xe6\x7f\x29\x78\x4a\x85\x33\x79\x91\x95\x61\x41\xed\x1f\xc7\xe9\xb9\xa2\xbc\xeb\xfe\x15\x3e\x12\x0b\xf0\xb2\x22\x4e\x24\xe4\xd9\xd0\x72\xec\xa3\xe3\x9a\x9f\xfd\x4f\x39\x08\x16\xad\x68\x1f\x75\x45\x89\xdd\x47\x63\x8a\x53\x78\x27\xf5\xd3\x90\xa9\xed\x21\x78\x05\xf2\xeb\x0b\xe0\x92\xa2\x3c\x21\xce\xc2\x38\x53\x36\xc6\x4a\x93\xa6\x35\xa9\x0e\x1b\x01\x2f\xa8\x94\xfe\x3c\x62\x4c\xca\xe3\x7f\x71\x0f\x75\xea\x90\x76\xa2\x39\x82\x08\x19\x6c\x1e\x1c\xcd\x7b\x3b\xd5\x44\x45\x68\x79\x14\x8d\x4c\x91\xb9\xad\xc6\x11\x61\xff\x3e\x60\x43\xf0\x15\x77\x75\x87\x62\x2f\x7c\xf0\xb0\xaf\x6f\x34\x45\xde\xdd\x32\xeb\xd9\x84\xe8\x33\x58\xdb\xec\x7c\x24\x8d\x71\x55\x0e\x01\x8e\x18\x7b\x76\xab\xe3\xa7\x65\x99\x84\x03\x0b\xdb\x36\xd7\xeb\x3f\xad\x76\x8b\x9a\xbe\x64\x3a\xb4\xbd\xb5\x5d\xf4\xbc\xce\x09\xe9\xc0\x9c\x73\xb5\xf1\x95\x18\xc6\x1a\x70\x8f\x88\xc7\x5a\xe3\xa1\x99\x67\x31\x56\x35\x81\x26\x14\xca\xcb\xe4\xe7\x8b\xf0\x04\xf9\xeb\xf7\x15\x03\xee\xfb\x5e\x68\xd5\xc6\x14\xb7\xb6\x94\x77\x21\xb3\xdd\xc4\x3c\xcc\x13\x03\x87\x26\x1c\x44\x89\xcd\x77\x79\x2c\xd3\x43\xd4\x58\x11\xe1\x1f\x3f\x55\x8f\x07\x0a\x56\xbc\x89\xe8\x4a\x1c\x05\xe8\x7d\x8a\xc7\x24\x3d\xa1\x04\x61\x8d\xae\x08\x84\xb5\xaf\x1e\x08\x55\xa8\xe3\xaa\x2f\xf4\x67\x5a\xf5\xf8\xcc\xd4\x30\x54\x29\xfd\xc8\x99\xe7\x22\xef\x3b\x82\x08\x97\x6f\x54\x37\x74\x64\xb3\x3c\x4d\x12\x0b\xe8\x9b\xd3\x62\x76\xd2\x24\xa7\x1a\xac\x21\xda\xa3\xb8\x4c\xfa\xa8\xb2\x4a\x0b\xcd\x77\x33\x8e\xb9\xad\x71\x29\xca\x86\x0f\xb5\x9c\x07\xf7\x1e\xe0\x46\xc4\x04\x47\xa9\x0a\xcc\xd0\x12\x74\x78\xc5\x29\x1b\x7c\xc4\x52\xb3\x60\xfd\xb3\xd9\x29\x7d\x23\x5e\xd6\x2f\xa2\x4f\x26\x1e\xe6\x7b\x95\x83\x5c\x51\x0c\xec\x6a\x4e\x1b\x0b\x02\xf0\xdd\xa4\x3c\x24\x69\xbc\x2a\x22\xcf\x74\xfc\x9e\x34\x5a\xcb\x5f\x5d\x8e\xec\x6a\x14\xbe\xda\xf2\x44\x47\x9c\x9c\xe2\xea\xdc\x44\x06\x0d\x8d\x2b\x94\x49\x6d\x9b\xbe\x41\x8a\xdb\x9f\xab\xf3\x63\x0c\x9b\xd6\x81\x9b\xc7\x3c\x64\x0a\x3c\x84\x93\xec\x27\xa1\x61\xe5\x6a\xfa\xa7\xd8\x93\x2e\xd1\x3f\xe5\xeb\xa9\x80\xf8\x99\x6a\x67\x1d\x81\x64\x17\xc3\x4f\x1b\x31\x1b\x8e\x3d\xec\x12\x77\x95\xa5\xc9\x45\xf5\x6d\xab\xd6\x2e\xc7\x6e\x0a\x71\xbf\x82\x66\x85\xf4\x2e\x1a\x5a\xd0\xa3\x2a\xe8\xb7\x19\x24\xf2\x10\xf4\x5f\x56\x7a\xb9\xff\x87\xf2\x09\xbc\xdc\xe4\x82\x96\xa7\x61\xc8\x5d\x6f\x0c\x32\x52\x49\xbe\x9e\x28\x72\x91\x19\x8e\x4c\x62\xb3\x68\x8b\x2b\x87\x57\x80\xc2\xde\xc2\x64\x4e\x37\x1f\xbb\x65\xbc\xbc\x53\x31\xd1\x2f\xd1\x5f\x88\x30\x5b\xf5\xbd\x38\x1e\x19\xb0\xe7\xe4\x8d\x1c\xa8\xff\x8a\x82\x49\x7e\x5f\x0b\x74\xc4\x76\xa7\x52\x97\x78\x52\x61\x9f\x7e\x97\x7e\x35\x22\xc4\xcf\x11\x12\xcb\x21\x4a\x68\xd2\xa2\x29\x75\x97\xbe\x04\x07\xe5\x35\x8f\xf2\x1d\x98\x34\x9f\x51\xf0\x2c\x78\x53\x6f\x5e\x52\x47\xe9\x34\x90\xf2\xd0\xa1\xf6\x52\x9c\xae\xf2\xde\x86\xda\xc7\xbf\x55\x75\x90\x7f\xab\xe2\xc6\x38\x5a\x2a\x72\x0a\x12\x70\x68\x42\x72\x8b\xaf\x6b\x41\x42\x3e\x88\x76\xfb\xe6\x01\x43\x19\x50\xa2\xbe\x87\xdd\x0c\x6f\x1c\xdd\x1c\xc7\xcd\xa8\x1e\xc1\xd1\x2c\x75\x16\xa0\x70\xbe\xa2\x15\x80\xb0\xe6\xdd\x06\x7d\xe8\xc5\x36\x84\xae\x55\xfb\x8b\x8b\xe7\x22\x78\xe0\xb9\x7d\x3d\x1b\x92\x85\xd4\xa1\x43\x1c\x91\xfd\xb9\xb2\x90\xfa\xf3\x69\xbe\xc5\x5c\x7b\x10\x81\xd3\xb6\xe0\x35\xcc\x7c\x1f\x6c\x1a\x76\xfa\xd2\xe2\xfe\xb6\xc9\x97\xab\xc8\xe3\xc5\xfd\x3e\xf4\xad\x86\xc0\x85\x40\xd5\xe0\x60\xde\xde\x52\xfa\x18\xf9\x20\x5a\x2a\x76\x55\xa3\x8d\xad\x1b\x9c\x6e\x1c\x73\x2d\x25\xdd\x72\x67\xac\x7a\xe3\xc7\x03\xd5\xb1\x46\xa4\x85\xbc\xf9\x87\x34\x7b\xa5\xe1\xf0\xa0\x7c\xb8\x6b\x4d\xc8\x03\x57\x03\x2c\x8b\x72\xf2\x13\x35\x67\x89\x0c\xe4\x2c\x4c\x57\xd0\x3e\xf8\x5a\x49\x2e\x84\x03\x9b\x95\xdd\x5c\x67\x94\x27\x15\x3f\xeb\xe4\x78\x9f\x42\xb3\x64\x66\x98\x96\x49\xc1\xa5\x00\x31\xf2\x52\x92\xd0\xb7\x35\x81\x67\xa6\xe3\x17\x95\x11\x19\x48\xe1\x78\x78\xd0\x1c\x36\x06\x6c\x5b\x37\x1b\x6d\x32\xb3\xb4\x6b\xb3\x22\x4f\x13\xfe\x62\x8c\xd8\x29\x85\x50\xe1\x50\x8d\x8b\x41\xaa\x5e\x36\x32\x59\xf1\x30\xf5\xe6\xa4\x6c\x4b\xff\x10\x80\xab\xf3\xc0\x6b\x21\x37\x39\x43\x1b\xb0\x28\x94\xb7\x9c\x21\xf1\x15\x9c\x5a\x38\x64\xa0\xfb\x82\xb2\xc5\x5d\x55\xd7\xf9\x17\x58\x1c\xf8\xeb\x93\x5a\x74\xf7\xe4\xf8\x61\xfe\x45\xed\xaf\x7e\x79\x97\x57\x78\x03\x64\x88\x41\x64\x4a\xa7\x8b\x45\xf3\x44\x89\x9c\xa2\x56\xec\x17\x7f\xa8\x33\x57\xfc\x0c\x74\x98\xfe\xac\x49\x84\xdd\x24\x6b\xb0\x8c\xaa\xe6\x9b\xdb\x53\x17\xf7\x8b\x8f\x22\xad\x23\x41\x18\x37\xe8\xe4\x44\xc3\x51\x96\x8e\x58\x36\x06\x45\x3a\xcc\x6a\xd1\x41\xf7\x42\x6d\xeb\x1e\x1d\x19\xc5\xdd\xcc\xae\xa1\xba\x8e\x49\x7e\x5e\xa1\xc4\xce\x8f\x9f\x72\xf3\xae\x1b\xa5\x99\xcd\xad\xc9\xc2\x41\xcb\x67\x71\x60\xa0\xf2\xb5\x42\x17\x65\x69\xb7\x6b\x49\x4c\xd1\xf7\x46\x3f\xc4\x8b\xe1\x9b\x06\x87\x88\x85\xb6\x49\x92\xb4\x4c\x42\x26\xb1\x3b\x70\x98\x72\x99\x9a\xe6\x12\x2e\xb4\x7b\xd6\x8e\xb8\x2f\xc2\xdd\x40\xa5\xa1\xbf\xe9\x4a\xca\xfd\x74\xc5\x66\xe4\x9f\x3b\xdb\x9a\x9f\xdf\xdc\xc0\xc6\x89\x6a\xfc\xba\x12\x15\xdb\x36\x51\x6c\xfb\xeb\x8a\x7e\x9b\x26\x45\xba\x5b\x2f\xfb\x6a\x33\x71\x12\x17\x3e\x88\xa8\xab\x22\xd7\xf4\x92\x6b\x1b\xc8\x41\xd9\x4e\x37\xd0\x14\x11\x8d\xd4\x2d\xd9\xe4\xa1\x43\x2f\xb4\x5f\xdc\x3f\xdf\x52\x80\xe8\xf5\xb1\x46\xca\xea\x1c\x31\x4d\x93\xc7\x7c\x7a\x0b\x70\x0e\x1b\x21\x41\x4c\x46\xf0\x0b\xd5\x59\x8a\x0d\xe1\x26\xa6\xbf\x43\xad\x7a\x64\xf5\x07\xb4\xc9\x89\xa1\x89\xaf\x06\xfe\x7f\x63\x55\xdf\xf8\x08\x68\x14\x8c\xf6\x0d\x92\x1d\x14\x9c\x54\xf5\x6b\x9d\x34\xf0\x4b\x02\x0c\xda\x36\x05\x7f\xaa\xa6\xff\xd0\x66\x51\xe8\x51\x93\x88\x7f\xcf\x05\x0a\x76\x73\x5c\x93\xb4\x7e\x3c\x75\x96\x1c\x7e\xbe\x3d\x4a\x19\xa4\xd1\x64\x8d\xaf\x44\xe6\xad\xc9\x5c\xf9\x5e\xc4\x97\xbd\x16\xed\x05\x57\x47\xa5\x3a\xcb\xac\x3f\xcc\xee\x2b\xe0\x0f\x94\x55\x5d\xee\x56\x1d\x19\xa2\x49\xe7\xa9\x27\x79\x98\x95\x45\x94\xac\xed\xa8\x3e\x43\xc4\xdf\xf1\x03\xc5\x2c\x92\xd6\x3b\x6b\xf6\x29\x99\x27\x3e\xa3\x31\x6f\x2e\xa9\x13\x76\x60\xb3\xae\xc0\x89\xb4\x9c\x1e\x5f\xbb\x92\x28\xf9\xbc\x24\x24\xdd\x47\xdf\x8e\x4f\x6a\x51\x4d\x40\x8a\x8f\xd5\x2f\x40\x6d\x1b\xa2\x6b\x62\x0d\xa9\x48\x35\xd3\x56\x7b\xf3\xf3\xed\x30\xca\xc2\x32\x36\xd9\x5f\x13\xa1\x7a\x8c\x1d\xa9\xdf\xef\xf1\x36\x07\x3b\xa9\xd4\x8e\x0e\x08\xbf\x5f\x24\x07\x68\x7c\xd6\xfa\x10\xae\x52\x5f\x0d\x92\xe2\xad\x39\x01\x3b\x7a\x6d\xc8\xd1\x1e\xee\x78\xa1\xdf\x13\xdc\x01\x96\x27\x53\x22\x4e\xe0\xaa\x23\xb3\xff\x27\x8a\xea\x75\x35\x50\xc2\xd0\x57\xb1\x8f\x3b\x0d\xa0\x97\x16\x36\x8f\xab\xd4\xba\x0a\xdc\x2c\x64\x82\x44\x2f\xcf\xef\xba\xe7\x03\x75\xa4\xde\x1e\xeb\x46\xd2\x05\x55\xa4\xcc\xd2\xb2\xb0\xc8\x8d\xb8\x58\x1d\xf8\xd8\x9b\x73\x4c\xe9\x41\x6c\x35\xa8\x91\xf0\xc2\xd1\x85\x67\x94\xb8\x05\x3b\x0f\xa1\x90\x00\xfd\x21\x84\xe2\x57\x6a\x1b\xc5\xa0\xc8\xf7\xb6\x94\xa9\x1c\x8d\xb7\xa8\x84\xab\x8e\xd3\x5b\x63\x05\xb3\xd8\xa8\x49\xf9\xcf\xa2\x81\x8e\xc8\xf1\x26\xed\x28\x38\xa7\x7f\x34\x56\xa7\xdd\x15\x1c\xda\xd8\xdc\x90\x35\x81\x99\xb3\x41\xa6\xe7\xa8\x00\x1e\xc7\xd9\x80\x11\x9c\x9d\x28\xbb\x82\x9f\x21\x8f\xe7\x87\x09\xbc\xfe\xe0\xc5\x80\x28\x06\x02\x85\x6d\x39\x11\x9b\xdb\x8a\x92\xf6\xcd\xd2\x64\x24\x46\xb8\x53\xe3\x47\x8f\x8c\x15\x41\xed\x6d\x1a\x77\x3c\xc6\x15\xec\x65\x1a\xcf\x80\xb3\x7c\x66\xa2\xe8\x18\x33\x1d\xef\x28\x9e\x2c\x95\x39\x72\x71\xb1\x82\x6d\x39\x0f\x86\xd3\x5a\x22\xa9\xec\xf7\x6d\x5e\x90\xcc\x8d\xe8\x27\xfa\x80\x02\x88\x36\x67\x52\x70\x70\xde\x75\xcb\x25\x7b\x2a\x73\x3e\xda\xa5\xa0\x51\xfd\x31\xa0\x1d\xff\x78\xec\x0b\x40\x97\x5c\xeb\x81\x3c\x5a\xd3\x6c\x6d\xd6\xff\xc7\x47\x70\xb0\x39\x68\x8a\xd7\x2e\xc6\x56\x8d\xb9\xf7\x48\x47\x55\xd2\x07\x51\xaf\x3a\xc3\x9d\xe4\xfe\x05\x25\x3a\x70\x41\x6d\x74\x9c\xed\xa2\xc0\xcc\xe0\x2b\x2c\x28\x87\xc4\x9a\x7f\x80\x23\x77\x03\xcd\x71\xa5\xca\xfe\x1d\x28\xc1\xf5\x04\x7c\x7f\x60\xac\x7d\xea\x07\x4b\x69\xf9\xaa\x32\x85\xfb\x7a\xe0\xe1\x43\x5f\x6f\x80\x64\x2e\xb6\x33\x5b\x94\x59\x82\x20\xc3\x75\x19\x5c\x02\x7a\xb2\xb6\x4e\x96\x6d\xef\x31\xfa\x87\x18\xa9\x77\x94\x52\xd9\xb6\x8e\x87\x9a\x33\xbf\x8e\x2d\x4b\xb0\x05\x38\x41\x34\x87\x87\x7b\x07\x6b\x01\x9b\xcc\xed\x71\x8d\x01\xa6\xf4\xa1\x38\x75\xc3\xe3\x9c\x55\xea\x59\xc0\x27\x03\x99\xf1\x28\x29\x37\x8b\xf0\x91\xf4\x61\xe2\x34\x64\x7c\xa6\x3e\x66\x8e\x8f\x95\xa4\xfb\xf1\x26\x04\x7b\x9a\x45\xfd\x28\x61\x0e\x26\x92\x67\x84\x8f\x7c\x3d\xd9\xa7\x2b\x72\xcb\x36\x79\x35\x42\x9a\x87\x22\xd0\x06\x7e\x31\xdf\x34\x24\x05\x6d\x93\xe7\x69\x56\x38\xa5\x53\xf1\x7f\x6a\x39\xa3\xec\x69\x53\xd3\x2a\xf0\x11\x60\x35\xaa\x8a\xf8\x97\xe8\x1d\xf2\x75\x2d\x4f\xfe\x46\x9a\x3d\x4c\xdb\x85\xd4\x11\x5b\xce\x86\xef\x9f\x05\x4a\x1e\xfa\x16\xef\x63\x58\x65\xdf\xd1\x34\x10\x74\xa9\x99\xb8\x86\x53\x08\xef\x61\x73\xac\xca\x86\x57\x11\xb1\x21\x1e\xdf\xc4\x76\x87\x57\x71\x5f\xc9\x3e\xf4\x4c\xb6\x8c\x0a\x82\x93\x06\xac\x3e\xc2\x29\x12\x3a\x0a\xf5\xed\x46\xd3\x03\x33\x8a\x6d\x52\xac\xa1\xcc\x22\x1c\x78\x0f\x08\x47\x2f\x19\x6b\xf1\x8d\x5a\xa3\xc0\x24\xc9\x83\x8d\xe0\x1a\xd8\x83\x4b\x69\x99\xf0\x08\x3b\x3c\x8f\xc7\xf6\x34\xf2\xc1\xfb\x69\x01\x03\x31\xb1\xe5\xc0\x80\x8a\x61\x47\x93\xd2\x2d\x84\x3c\x79\x8a\x09\x68\x50\xd1\x44\xce\x05\x9f\x9f\x26\x8c\x7e\xa1\x9d\x97\x23\x9b\x85\xe9\x70\x54\x92\xf0\x46\xf5\x76\x71\x92\x7f\xa2\xce\xb6\x6b\x2a\x0f\x99\x6e\x9f\x1f\x9c\x6f\x0f\xa3\xde\xaa\xcd\x0b\x9b\x25\x8a\xe6\xb2\xad\xe3\xbb\xe7\x2c\xa1\x82\x70\xfe\xe8\x58\x37\x2c\x5e\x6d\x69\xb8\x6b\xe0\x31\xb1\xda\xcb\x66\x34\x88\xe2\x68\x34\x62\x81\x7a\x69\x51\xb6\xbe\xf4\x92\x6b\x50\xfa\xc2\x4f\x61\x46\x52\xdd\x13\x71\x2e\xff\xf8\xda\x98\x29\x31\xa3\xe5\x48\xcc\x32\x44\x13\x5b\xe1\x54\x4e\x4f\x65\x92\x2f\xee\xaf\x06\x6c\x94\x66\x94\xe4\x78\x98\xbc\xd3\x72\x47\x37\x83\x11\x0d\x38\x75\xbd\x31\x8f\x2a\x90\xe6\x51\xcf\x66\xbb\xa9\x7b\x20\x03\xe4\x61\x2c\xef\x6a\x54\xe6\x29\xad\x1c\x2c\xc8\x19\xc4\x34\x67\x14\xcf\x06\xaf\x0b\xe9\xc0\x0c\x6a\x71\xfc\xc1\x53\xc6\x31\x12\xdf\xe4\x26\x4e\x87\x69\x32\xe3\x4b\xff\x17\x95\xdc\xdd\x79\x8d\x83\xbc\xa7\x5a\x4c\xe9\xc8\x3e\xd2\x3a\x30\xe7\x0e\x0b\xfa\x91\x58\x9d\x4f\xd2\x96\xed\x98\x27\xd5\xc2\xc2\x01\xb5\x31\xf6\x7a\x6f\xbb\x68\x5a\x20\x99\x9b\x9d\xf8\xb4\x67\x6f\x47\x95\x96\xd0\xb8\x12\x65\x67\xe5\xc5\xc1\x7c\x29\xf0\xdb\xae\x36\xf5\x45\x4d\x56\x44\x79\xa1\x34\xc7\x3e\xae\xa9\x38\x3f\xa1\xcc\x70\x96\xd2\xcc\xee\x25\x05\xf9\xf7\x28\x2c\x40\x61\xe0\x32\x7e\x12\xfa\xd6\xcc\xa3\x60\xc2\x50\xa0\x84\x80\xe4\x5d\xa0\xa7\xb5\xad\xa3\x42\xea\x0f\x00\x8b\x71\xae\x20\xde\x88\x77\x03\xc1\x36\x23\xf4\x29\xc5\x15\xd1\xc4\x6a\x84\xa4\xec\x43\x3b\x26\x93\x9f\x15\x2e\xe6\xe1\x89\xdf\xdc\x1f\x57\xc3\x78\x5e\x93\xad\xaf\xba\xfa\x43\x5e\x58\x13\x17\x28\x28\x60\xeb\x60\xdb\x03\xbe\x09\x3c\xf0\xaa\x17\xe5\x69\xd7\xf6\x28\xa1\xd9\xe5\xd1\xca\x3b\x3b\xbe\x81\xbb\x73\xa2\x00\x7a\xa7\x03\xa5\x57\x0e\x18\x0a\xb2\xac\x5b\x94\x13\x63\x01\xc0\x6d\x45\xe8\xe7\x0d\x10\xa9\x7c\x39\xea\xf5\xb6\x40\xa4\xc6\x1a\x22\xd5\x24\x2a\x94\x57\x87\x9c\x22\xeb\x9d\xa0\x2d\x43\x1a\xe5\x4d\xad\x8b\xbe\x61\x0d\x3a\x0e\x01\x03\x55\xa0\x5d\x1f\x6b\xe7\x6d\x6b\xfc\x19\x8a\x57\xf9\x03\xa5\x7b\xf3\x83\xa9\x46\xc4\x81\x03\xb4\x98\xd3\x38\xea\x19\x86\xe6\xb3\x08\x8c\xa2\x18\xfc\xb8\x09\x74\x95\xc6\x6b\xc3\x51\x14\xe6\x35\xab\x9e\xe3\x58\xf8\x1e\x73\xc1\xc1\x66\x1c\xe5\x26\xeb\x99\x96\x06\xa4\xd4\x40\x2c\x7e\x4f\xcb\x4c\xb5\xb3\xb4\x68\xfe\x21\x12\xbe\x83\xc6\x22\xdf\x4c\x7b\x85\x1c\xa8\x82\x59\x9b\x71\x9c\x2d\x2a\x88\x2d\x67\x36\xf6\x69\xe0\xe5\x3c\x9f\xe7\xe3\x52\xb4\x31\xf0\xf0\xb5\x0d\x03\x99\xc8\xad\x5a\xe0\x50\xa4\x2b\xa8\xd8\x8b\xba\x8c\x22\xc3\xbe\xab\x1e\x7e\x29\x8d\xf3\x14\xc8\x57\x57\x2e\x73\xbd\x83\xf3\x6e\x5e\x0f\xd2\xb8\x67\x25\x3d\x16\x71\x18\x55\xc8\x3c\xad\x34\x9f\xaa\xa3\x2d\x36\xe4\x8f\xaf\xd2\x7f\xa2\x61\x49\x29\xc0\x9f\x1c\x3d\x1b\x17\x66\xb6\x75\xe0\x80\xae\x35\x89\x44\xca\x5b\x5a\x71\x8f\x4f\x7d\x34\x75\xef\x05\x0f\xbb\x39\x14\x3c\x44\xf3\x17\x9b\xc7\xf1\x40\x21\x70\x6f\xea\x8e\xc1\x65\x5a\x26\xe2\x14\xa4\xb6\xfb\x8b\xba\xab\x76\x8a\x07\x98\xf9\xcf\x0a\x36\x75\x56\xf1\x45\xee\x35\xcd\xaf\x30\x1d\x76\x23\xc7\x77\x63\xd9\xf4\x3a\xcd\xba\x7a\x4e\xec\x2b\x1f\x4e\x45\x14\xcf\x38\xc0\xae\x34\x92\x71\xbe\x7d\x88\x41\xe0\x1b\xa5\x06\xb4\x3a\xb0\xc5\xc0\x66\x4f\xd0\xd7\x39\xbe\xe3\x41\xe5\xbb\x39\x77\x98\x77\xae\xcb\x84\xfa\xc3\x3c\xf9\x93\xa0\x55\x77\x28\x7e\xd9\x3f\xab\x13\xe4\xc0\x73\x4b\x5f\x41\xe1\xe8\xcf\x60\xe4\xf0\x75\x1f\x8d\x6b\x22\xbf\x48\xac\x51\x44\x7b\x0d\x3b\x3a\xff\x51\x4d\x0d\x59\x21\x3a\x76\x4c\x51\x93\xe6\x0e\x57\x91\x0d\x1f\x26\xa2\x39\x41\x7f\xc1\x37\xea\x34\xf9\x86\xc9\xfa\xdc\x8c\xc0\x4f\x03\xea\x87\xaf\xb5\x24\x2b\xba\x9d\x8f\x78\x1c\x3a\xef\xf7\x68\x5b\xfc\xbb\xc0\x93\x06\xbe\xab\x60\x8b\x4f\x76\x14\x8e\x93\xd7\x1a\x37\x3a\xc7\x9e\xa3\xf6\xae\x1e\x1e\x06\x4a\x31\x01\x9b\xde\x06\x6a\x03\xb7\xe8\x0d\x60\x26\xff\xa9\x02\x04\xe6\x23\xaa\x76\x54\x7b\x07\xbb\x91\x80\xa8\x50\x43\xd7\x0a\x7b\xf1\x31\xb5\xc0\xcd\x6a\xab\xf5\xd5\x2f\x0b\xf7\x25\xf0\xc3\xb5\xa9\x90\x68\x5d\x13\x2e\x47\x49\x9f\x15\x85\x51\x38\xe7\x1d\x8f\x6f\x94\x1e\xd0\x7a\xcd\xb7\xd4\x57\x89\xcd\x3f\xfc\xbb\x68\x29\x8b\x52\xd2\x5f\x0b\x17\x78\x71\xff\x73\xed\xae\x35\x88\xd6\x50\x1a\x47\x54\x2a\xd4\xa6\x6a\xe4\xd0\xd9\x7a\x97\x0e\x2b\xd1\xa2\x7e\x28\x6a\x8f\x32\xbb\xf4\x2b\xed\x57\x66\xc8\x28\x04\x31\xf4\x77\x6a\x8e\x1e\xad\x5f\x7b\xc1\x95\xdb\x1b\x20\x4a\x2f\x2d\xee\x27\x97\x3d\x77\xd6\xcf\x1d\xd6\x02\x33\x0b\xce\x9e\x8f\x8a\x61\x62\xdc\xb7\xf5\xc0\xfb\xca\x5c\xbb\x18\x98\x82\x54\x94\x99\x5c\x85\x2a\x0a\xc2\xca\xab\xaa\x08\x7b\x87\x7e\x0d\x80\xf1\x3f\x52\x4e\x7b\x3f\x6a\xb6\x51\x8e\xed\x8a\x61\x8b\x3c\xcc\x1d\xa0\x58\xf9\x3a\xd8\xab\x8a\x30\x51\x36\x24\x51\xd0\x43\x87\xf8\xed\x03\xa1\x80\xe4\xf5\x3f\x60\xf6\xb2\xe1\x80\x2f\xde\x94\x59\xe6\x6a\x67\xbc\x8e\xe9\x0b\xd0\x58\xdd\xae\x7a\x82\xb7\x55\x3e\xf0\x5f\xff\xbd\x5f\x26\x3d\x39\x49\x07\x6a\x54\x38\x5f\x97\x30\x2b\x69\xd4\xb3\xbd\x19\xe5\x2d\x18\xa8\x9e\xf3\x59\x45\x2b\xf9\xa1\x9e\xe0\x45\x94\xa1\x27\x5c\xa3\x83\xf3\x8d\x82\x5f\x7d\xb3\x34\xcb\x96\x2a\x33\x58\xa2\x17\xa8\xfe\xc6\xd7\x8d\xf8\x88\xd4\x38\xeb\x07\x24\x8d\x0c\x79\xe7\x9b\x89\x32\x90\x1c\x58\xe8\xb1\x54\x91\xa0\x98\xf0\xb7\x9c\x25\xca\x85\xc0\x33\xfe\xe8\xe8\x9a\xf1\x9a\x92\x9b\x14\x0c\x6a\x5b\x63\xfc\xde\x75\x05\xb9\xcd\x6c\xbf\x84\x0a\x00\xcd\x7a\xa1\x4d\x78\x36\xcf\xa7\x48\xc8\x05\x2e\xe7\x97\xc3\x39\x45\x7b\x7e\x35\x1a\xed\xa8\x69\x37\x2f\x8a\xca\x0f\x5a\x15\x2c\x55\xad\x76\xe6\x4f\x69\xca\x09\xf6\xc2\x6f\x8c\x45\xd4\xeb\xb2\x44\x88\xcb\xf1\x0e\xfa\x1c\xaf\x01\x80\x49\x4e\x11\xb1\x2d\x11\x09\x60\x77\xc7\x37\xf1\xb5\x02\xa4\x53\x53\x42\x8b\x3f\x28\xdd\xb9\x53\xda\xd0\xe3\xd9\xe8\xd9\x96\x87\xfe\xdc\x56\xa2\x76\xb7\xa7\xb2\x88\xa7\x9f\x6e\xf7\xb3\x74\x35\xce\x67\xfc\xea\x38\xb6\xc5\x0a\xac\xda\x8c\x71\xba\xdc\x56\xda\xcf\xa3\x2c\x1d\xa5\x39\x63\x92\x05\xcd\xf8\x53\x6d\x7b\xf4\xd3\xa6\xa4\xb2\x9b\x45\xf9\x72\xbc\x46\xd3\x19\xd1\x14\x4e\x0f\x94\xee\x3f\xa2\x91\x95\xfe\x95\xb4\x4f\x46\xb1\x59\x13\x6a\xa2\xc3\x2a\xba\xfa\xd5\x19\x3c\xae\x98\x4a\xf9\xee\xdd\x8f\xf4\xa3\x73\x8d\x19\xf3\x82\xb3\x1b\x11\x07\x7e\x44\x29\x9d\xd0\xc8\xa1\x92\xcf\x72\x6c\x7c\x33\x69\x52\x1f\x0d\x07\xd6\xb2\xf9\x0b\xea\x07\x27\x95\x5f\xd8\x49\xd5\x2a\x4a\x29\xee\xb4\x2d\xda\xd0\x44\x1e\x5f\x53\xd0\xa6\x4d\x93\x16\xc8\x1b\x2f\xb3\x79\xbe\x54\xa2\xd6\xc1\x35\x56\x3c\xbc\x14\x5c\xf7\xaa\x98\x6e\x98\xc6\x51\x3e\x68\xd5\xe4\x71\xab\x97\x23\x14\x22\x29\x02\x2f\x47\x3d\xbc\x70\x55\x3d\x11\xfc\xe1\x2c\x6d\x57\xac\xef\x55\x57\x34\xcb\xf3\xcf\x54\x11\x23\x5e\xdb\xeb\x38\xcf\x98\xed\x8f\xe2\xba\xa3\xa5\x2f\xee\xe7\x2d\xe9\x46\xe0\xd3\xe1\x93\x35\x42\xd3\x2d\xaa\x69\x20\xa5\x3c\x89\x46\x81\x73\x69\xfd\xe2\xd7\x78\xb5\x7f\x5b\x35\x56\xee\xa9\xc0\xea\x27\xe3\xd6\x57\xe6\x34\x3e\x45\x94\x8c\xdf\x40\x7e\x88\x83\xee\x1e\xed\xc2\x00\x0a\x7c\xa0\xb1\x33\x28\xc7\x61\xbf\x60\xbb\x54\x14\xf7\x18\xce\xc3\x5c\x79\x1c\x3f\x38\x07\xae\x06\x4a\x67\xe4\x94\x0b\xd0\xa3\x24\xa1\x02\xb3\xdf\x84\x77\x74\x14\x36\x69\xc7\xd4\xac\x01\x93\x3f\x0d\x4b\x74\xb4\x11\x09\xfd\x50\x99\x15\xff\x70\xec\x65\x2c\x43\x3b\x2a\x1e\xad\x46\x80\x02\xa3\xdf\xfa\x2f\x11\x18\x39\xb1\x6b\xed\x7b\x41\x4f\x87\x12\xc4\x95\xba\x0b\xc8\xe2\x16\x6b\x1f\xa7\xa5\x75\xe0\x80\x07\x24\x55\xc3\xcf\x52\x73\x18\x02\xc4\x23\x77\xc7\x5b\x15\xc7\x11\x46\xeb\x4d\x3e\x34\x09\xd9\xd5\x56\xff\x55\xdc\xb1\xe9\x8b\x44\x7a\xd3\x9f\x35\xcb\xb1\xcd\x96\x67\x94\xb6\x1b\xd0\x08\x6e\x97\xff\xd2\x4b\x4e\xae\x72\x9f\x2a\xcc\x67\xcb\xb6\x88\x92\x3e\x61\x6e\xf0\x6a\xae\x2b\xf5\x2f\x9c\xaf\xa8\xa0\xbe\xa7\x7b\xf1\x6f\x2a\xd8\xc3\x3a\x9d\x6a\x98\xac\xbf\x8e\x57\xc9\xad\xbb\xa9\xc4\x7b\x71\x7f\x5b\xaa\xfa\x2f\x3b\x9f\xb5\x6a\x18\xc4\x7f\xad\x21\x76\xa6\x74\x8a\x0a\x82\xc8\x39\x58\x25\x1e\xcb\x4b\x94\x1c\x59\x58\x5a\xd7\xef\x32\x9b\xf4\x76\x7b\x3c\xe2\x71\x9c\x57\x88\x36\xae\x07\x0a\xfa\xb5\x4e\x05\x14\xfe\x57\x63\x5f\xe6\x60\x08\x97\x6c\x06\x34\x95\xd1\x34\x3a\x5f\x63\xf4\x4c\x6f\x5e\xcf\xb5\xe3\xa8\x28\x58\x0e\x1f\xc1\xdd\x86\x92\xfc\xd8\x68\xc2\x06\xf6\xb3\xb2\xd7\x77\x22\x0a\x4e\x29\xcd\xe9\xf1\x6e\x2a\x1e\xf7\xc5\x9a\x13\x51\xb2\x62\x33\xf8\xf3\x60\xc2\xb6\x00\xf6\xc4\xc9\xbc\xa1\xdc\x32\x4e\x7a\x2d\xb7\x41\x9a\x15\x35\x25\x9c\x53\x4a\x63\xf2\xd4\xf8\x11\x25\x62\xaa\xd2\x96\xe3\x4a\x36\xef\xb8\x72\xbf\x27\x35\xbc\xa1\x68\x81\x2a\x5e\xc9\x9c\x63\xdb\xf8\x33\xb4\x1b\xf5\xf2\x1d\x1e\x0c\x7b\x59\xf1\x88\x8f\x28\x1a\xf0\x65\xda\x92\x50\xa2\xbc\x89\xdd\x42\x50\x98\xba\x8c\x1e\x75\xbb\xa8\xe6\x22\xac\x60\x2a\x27\xdf\xd4\xb6\x58\x93\xa4\x33\x9e\xac\xc9\xbd\x20\xc4\x62\xb7\x55\xb6\xd4\x0c\x5f\xc9\x0b\xb3\xc6\x3a\xa0\xea\xec\xf6\x66\x70\x0f\x02\x97\xa5\x23\x87\xca\x43\x78\xcd\xfe\x9a\x7c\x33\x55\x68\xfa\x6f\xda\x4b\x65\x5c\x70\x39\x55\xef\x0d\x88\x88\xde\xd1\xd5\x91\x6b\x55\xbe\x20\x75\x37\x33\x22\xe5\x62\x6a\x34\x7b\xbc\xfc\x1d\xe5\x52\xc6\x75\x7c\xec\x57\xd3\xaa\xeb\x87\x0e\xb5\xc3\x74\xb4\x46\x94\xdc\x19\x25\x84\x82\x16\x88\xc8\x60\xb5\x9c\x6a\xeb\xba\x96\x4b\x4a\xe3\x5e\xe4\xf4\x10\x59\x7b\x51\x01\x4c\xef\x06\x4f\x4d\x59\x73\xbe\xb8\x7f\x81\x92\x57\xd9\xd6\xfc\x83\xb2\x5f\x15\x0e\x9d\x7b\xd8\x3f\xc5\x62\x55\x19\xc5\x7f\x80\x37\x28\x5c\x25\x5a\x36\xc8\x0a\xd0\xa5\x47\xb1\xf5\x0e\xa6\x21\xce\xd5\xc1\xd8\x13\x19\x7e\xa2\xe3\x94\xf5\xe0\x41\xed\xfb\x34\xeb\x9b\x24\x7a\xd5\xf6\x66\x6b\x68\xca\x99\x97\x16\xf7\xd7\x55\x4a\x70\xe2\xdd\xa7\x4d\x57\xba\xf2\x1e\x60\x11\x3b\x83\x11\x20\xd8\xc0\xcd\xe4\xeb\xa6\xfa\x33\xb1\xd2\xb8\x68\xc2\x6d\x25\x4c\x6d\xe9\x31\x35\xa8\xd4\xdb\x7e\x1f\x7d\x60\x67\xe4\x5c\xfd\x01\xdf\xd4\xb8\xc1\x99\x38\xe8\xa2\xfd\x79\x5e\xf9\x41\x4d\x4b\x82\xbe\x34\x77\x98\x9c\xb1\x34\xe0\xeb\x9c\x02\x7c\x9d\x1b\xff\x67\x0f\x18\xbc\x51\x5a\xf6\x07\xcb\xd6\x8e\x72\x6e\x44\x72\xeb\x75\xac\xa0\x10\xe7\x9b\x6a\x89\x43\x9b\xe7\x59\xfe\x2c\x67\x42\x98\xfb\x1c\x9b\xf1\x8d\x82\x50\xf6\x4c\xd2\xb7\x59\x5a\xe6\xb3\x4a\xf1\xfd\xff\xc6\x8f\x17\x80\x97\x4f\x72\xbe\x1d\xf8\xa5\xf5\xb6\x12\xe2\x1b\xa6\x45\x9a\xe5\x3b\x69\x1a\x39\xd9\x68\xd7\x65\x7c\x03\xd3\x88\xff\x03\xe6\x24\x3b\x54\xa2\x16\x2f\x76\x95\x5e\x99\xe9\x0d\xa5\xd4\x42\xf2\x38\xf4\x7c\x2f\x73\x99\xea\x84\x46\x78\xa2\xf8\xcc\xd7\x18\x1c\xfe\x57\x81\x07\xf7\x85\x99\xed\x45\xc5\xaa\x29\xc2\x41\x4b\x2d\x10\x76\x3f\x16\xb3\x89\x86\xa9\xd4\x2b\xc9\x1b\xc1\xf7\xf3\x2f\x8e\x6b\xe6\x07\x0d\xee\x8b\x99\x5d\x8a\x12\x93\x84\x8e\x16\x89\xd9\x0d\xb3\x26\xbe\x56\x6e\x21\x7d\x9b\x44\xdc\x33\x6c\xcc\xb8\xb7\xf6\xfa\x48\x47\x65\x38\x8a\x6d\x61\x19\x13\x88\x74\xe3\x8e\xb2\xff\xbf\xe3\x0e\xab\x25\x4b\x75\x5a\xcc\x05\x9c\xa0\x0c\x33\xe3\x9b\xc0\xaf\xb3\xd5\x2c\x2a\x38\x13\x60\x11\xbe\xc0\xc5\x78\x5f\xbf\xd9\xb4\xd0\x96\x6c\x1c\xa7\xab\x2d\xcf\x50\x81\x1a\x09\x5f\xbb\x60\xf4\x9b\x65\x5a\x64\x69\x32\xab\x50\xa8\xe8\xf3\x6a\x70\x2b\x0a\xc7\xff\xbe\x26\xb2\x39\x55\x0e\x3c\x74\x88\x74\xc4\x46\xad\x9a\xea\xb4\x6f\x58\x9e\x6b\x48\xed\xe6\x59\x12\x00\x2f\x5e\x90\xc9\x2d\xa7\xc8\xf3\xb1\xea\x3f\x98\x10\xe6\x84\xbd\x5d\x34\x31\x9d\xd8\xd0\xa2\x48\xd2\xed\x26\x0a\x17\xf6\x5a\x38\x79\x60\x95\x00\x3a\x2d\x3d\x2a\x4f\xa6\x39\x0e\x12\xb6\x78\x59\x3d\xa5\xf0\x32\xa3\xea\xd8\xaf\x42\xc8\x96\x32\x0f\xe4\xe9\x25\x76\x64\x5b\xb3\xaf\x03\x07\xda\x65\x92\xaf\x9a\x7e\xdf\x7a\x65\x5b\x86\xf9\x28\xd0\xc0\xdb\x0d\xc3\xf0\x72\x3b\x1f\xa5\x45\xb1\x36\xe3\x01\xc3\x88\x50\x9d\x95\xd2\xe2\x7e\x4e\xc7\xaf\x4e\x4d\x3a\x52\x09\x33\x49\x2f\x2f\xa2\x18\x73\x15\xb1\xf1\x9b\xf4\x53\xf9\xba\xd6\xd8\x4b\xa2\x7e\xd2\xf2\xdc\x68\x24\x95\xd2\x88\x6a\x52\xa7\x88\x96\x96\x2c\x95\xab\x5a\x4e\xda\xef\x96\x1a\xc8\x0f\x31\x31\x98\x69\xad\xa5\x96\x0e\x3f\x3f\xa3\xbb\x32\x1e\x81\x7a\x56\xab\x51\xdd\x53\x38\xd7\x5e\x56\xf6\x77\xb5\x9c\xff\xc3\x23\x80\x63\xa1\x1e\x3d\x0b\x09\x1e\x61\xfb\x78\x12\xd9\x8e\x8e\x52\x01\x60\x00\x8c\x14\x39\xb4\x95\x96\x2a\xbb\x0c\xa2\x64\x39\x9f\xf5\x29\xd4\x59\x0d\x8e\x3f\x4b\x1d\x10\xc4\x03\xb7\x00\xc7\xe3\x1b\x55\xcc\x30\x59\x1c\x25\xfd\x22\xad\x35\xcf\x34\xbb\x61\x5d\x35\x00\xba\x65\x96\x0c\x58\xb6\x04\x69\xde\x51\xda\x52\xf9\x3a\xf8\x9b\xd3\x75\x9e\xdc\x0e\xa3\x30\x4d\x7a\x65\x58\xa4\x24\x7f\xb0\x79\x5a\xe9\x09\x7d\x80\xec\x19\x08\xf9\xb7\xc7\xba\x7e\x66\xaa\xb7\xa5\x12\x8b\x0f\xf5\xb1\x74\x45\x59\x1c\x9d\x6c\x92\x91\x59\x2a\xe3\xa5\x28\x8e\x67\x74\xba\x3b\xf6\x9a\x2c\x0c\x55\x14\x79\xaf\xad\xcf\x2d\x27\x64\x68\x12\xd3\x8b\x0c\xe2\x3d\x3c\x06\xf8\x57\x28\x12\xb0\x5e\x2f\xc2\xf2\x47\x3b\xfe\x30\xc8\x6d\x92\x53\x75\xce\x68\x5a\xda\xbb\x8a\x96\xf6\xee\x54\x84\x50\x9d\xe3\xc9\x5a\x89\xa5\x2a\x35\x71\xad\xe4\xd5\xa4\xe8\x97\x0f\xd2\xd5\x5e\xba\x8a\x07\xc4\x34\x3e\xaf\x11\x32\xe0\xb5\x89\xe0\x84\xd3\x95\x48\xfb\x51\xd8\x52\x8c\xc5\xfa\xc9\xd1\x24\xde\xb6\x64\xe3\x02\x11\x86\xa4\xac\x34\xb2\x7c\xe3\x3e\xd9\x24\x79\x98\xb6\x7c\xab\x82\x3b\x5d\x7c\xa3\x4e\x82\x51\x6c\x92\xfc\x71\xfa\x0c\xec\x44\x3f\xd6\x5a\x12\x1c\x63\xe2\x5d\xc1\x45\x55\xd0\xeb\x2d\x17\xd9\xfd\x00\x1b\x99\xd0\x06\xaa\xa4\x5e\xf8\x07\x2d\x27\x68\xc7\x90\x6d\xe8\xa4\xdc\x42\x30\xc0\xdf\x81\x98\x14\xf9\xe3\x9f\xd0\xdc\xc0\x40\xdf\x52\xf0\xfd\x23\x98\x27\xe8\xeb\x5f\x0a\x9c\xec\x8f\x09\x97\x47\xb6\x67\xbc\xf8\x1f\x8a\x59\xbf\x13\xf8\x82\xf7\xef\xd4\x12\xa1\x41\xba\xba\xd7\xb7\x5b\xef\x01\xaa\xe6\x5a\xd5\xd5\x23\x42\xc3\xe4\x2e\xf2\x60\xc9\x08\xb5\xf6\xc7\xc4\x83\x73\xff\x30\xf0\xc5\x21\xae\xe8\x71\x36\x12\x78\x4e\xe3\xa3\x48\x34\x51\x9b\xde\x01\xe1\x2e\x14\x3a\x7e\x42\xa3\x88\x36\x48\x6b\x52\x8d\xae\xc4\x44\xbe\xea\x7b\x02\x2f\x18\x67\xd2\x4d\xaa\x58\x89\x34\x14\x35\xdd\xb0\x19\xcd\x76\xa6\x7d\x32\xac\xe9\xdb\x0c\xc1\x14\x9e\x10\x79\xb2\xd3\xde\xf6\xe5\xb2\x63\x0a\x32\x78\xb4\x49\x37\xb2\x97\x91\xc3\x9e\x43\x2d\x5e\x57\x6e\x5d\xd7\x5d\xeb\x7c\x29\x8a\xa3\x51\x94\xa4\xbb\x54\x1b\x62\x67\x47\xb9\xff\xa8\xf9\x70\x49\xc1\x44\xaf\x20\x50\x74\xff\xe8\xc0\x1c\x43\x1e\x17\xc6\x5e\x76\xf4\x5c\x43\x28\xff\x42\x3b\x33\xab\x2d\x25\x88\x80\xa2\x0c\x5f\x37\x79\x47\x99\x12\xb0\x0b\x4e\x19\xf0\xf3\x7f\x3c\x56\x89\xdc\x8f\x75\xc0\x96\x59\x93\xb3\xbb\x2b\x3b\xfe\xea\xf2\xc8\xef\x8e\x7d\x74\xff\xae\x2a\xe7\x2f\x59\x74\x33\x30\x5b\xaf\xd1\x1c\xe1\x6b\xd5\x1e\x59\x8a\x53\x83\x4a\x3d\xb6\x85\x6d\x0a\x85\xb3\xad\xe3\xeb\xb6\xab\x69\x96\x45\xb6\xc7\x9d\x3c\x94\x8c\xae\xe8\xf6\xf8\x9d\xc0\xe3\x46\x3e\xc6\x24\xc4\x76\x70\xa9\xd1\xa8\x3c\xcd\xb2\x74\x55\x70\x20\x2c\x59\x87\x6a\x99\xd7\xaf\xe3\x9f\x6f\xf2\x11\xe5\xf2\xe8\x95\x9c\xc1\xbf\xe2\x9b\xa6\x20\x31\x34\x49\x2f\xea\xb5\x3c\x7e\x19\xf1\x91\xe0\x9a\xfd\x79\x59\xfd\x0f\x33\xbf\x99\x94\x45\x13\x4a\x08\x5a\x2a\x76\x5a\x4b\xc2\x41\x96\x26\x69\x99\x2b\xdd\xf3\x1f\xd0\xc7\xf2\xb5\x1a\xd2\x91\x89\x87\x9c\xb1\x39\x3c\x97\x37\xb6\x3b\xa5\x70\x55\x43\xd3\xdb\xe1\xcf\x92\x47\x3a\xbe\xb8\x76\x0c\xdb\xb6\xb8\xe4\xfb\x5a\xfe\x11\xcc\x52\xf9\x57\x1e\xce\x63\x5f\x19\xd9\xa4\x17\x91\x2a\x45\x4b\x83\xca\xb9\xa8\xcd\x37\x0d\x2c\xa1\x76\x6e\xe2\x62\x15\x5a\xfd\xde\x5e\xe8\x4d\x45\x50\x7b\xb3\x89\x95\x99\x99\x28\xb7\x33\xbe\x2c\xfa\x87\x28\xba\x09\x72\xa3\xe5\x68\xee\x17\x1b\x29\x90\xc5\x6a\x54\x25\x47\xb5\x66\xd2\x8b\xfb\x5d\x93\x69\x4f\x1d\xce\x61\x5f\x79\x98\xa6\x3c\xfb\xb2\xaa\xfa\xd7\xbd\xb1\x0f\x90\x6b\x1c\x8f\xb7\x18\x41\xe9\x98\x42\xae\x4d\x7f\x17\x2d\x6e\x41\xd2\x50\xf3\xdb\x61\x6c\xaa\xd1\xc5\xc2\xba\x83\xf3\x41\xf8\x48\x4f\xfa\x35\x83\x74\xcb\xd5\x50\x9c\x66\xab\xef\xc3\x4f\xcb\x77\x3c\xd3\xae\x66\x5b\xc6\xaa\x38\x2e\x9a\x75\xbd\xbd\x37\x6b\x07\xc4\x2b\x51\x86\xc4\xc8\x11\xd7\xfc\xf5\xd4\x70\x52\xca\x6f\x7a\xab\x66\xad\xa5\x7a\x3b\x60\xa0\xf0\xf5\xd6\x9a\xce\xfc\x7c\x7b\x61\x71\x01\xc8\x1e\xe6\x51\x07\x0a\xf5\xf6\x5a\xa0\xc4\x57\x2e\xaa\xc4\xfb\x9b\x51\x52\xd8\x57\xb0\x6d\xe1\x55\xfd\xbe\x3a\x25\x7e\x5f\x85\x6c\x5d\x43\x1d\x81\x59\x5f\xac\xfb\x84\xb6\x20\x04\xa3\x1b\x54\x30\xe4\x6b\xdd\x4d\xf6\xaa\x7b\x79\x14\x13\x2e\xcb\xd9\x12\x02\x99\xc6\xd7\x93\x9a\x2c\x68\x39\x9c\xf1\x33\xe2\x72\xa0\x69\x38\x4a\xc1\xe2\x43\xd5\x32\x8d\x6d\x3f\x2a\xa2\x21\x41\xb8\xe6\x3d\xd9\x9e\xfe\xb5\x84\xdc\xbe\x5e\x3f\x32\x59\xb1\xb6\xdb\x83\xce\x3e\xc2\xa9\x27\xed\xfc\x96\xb3\xb4\x6e\x4d\xd4\x8b\xc2\xa7\xe1\x7c\xda\xd5\xf1\xb6\x44\xe7\xc6\xda\x61\xf9\xc2\x58\x49\xca\xb7\xf4\x96\x1b\x25\x4b\x99\x5d\xa3\x25\x86\x3d\xe9\x42\x50\x6b\x75\xf8\x46\xce\x6f\x36\x15\xa9\xbf\x59\xda\xbc\x8a\x3a\x01\x98\x46\xa4\xfc\xba\x02\xdb\xb2\x5e\x80\x34\xc8\xfc\x81\x13\xda\xcc\x9a\x78\x07\x7d\x97\x34\xa8\xe9\x19\x85\xc4\xa6\xf4\x09\x20\x96\x81\x65\x79\x04\xfb\x1c\xff\x87\x06\xa5\x85\x85\x76\xb7\x8c\x62\x56\x34\x12\x49\x3d\xcf\xd0\xdd\x08\x94\x21\xd6\x09\x37\x11\xba\x69\xd2\xb3\xda\x8b\xe5\xaa\x66\xcb\x4d\x4b\x5b\x3b\x8b\x07\xcb\x50\x04\x86\x29\x8e\xbd\x95\xff\x4c\x47\x65\x8a\xaa\x3e\x8f\x95\x6d\x77\xd1\x88\x61\xcc\xef\x28\xd3\x56\xee\x01\x3b\xcf\x3d\x5f\x91\x47\x51\x5a\x7c\x0f\xe8\x67\x20\xae\xdc\x8e\xb0\x0b\x8f\x70\x45\x99\x13\xc7\x66\x15\x11\x8a\x18\xb3\x7b\x53\xb5\x9b\x63\xad\x18\xf2\xee\x58\x31\x93\xd1\x20\x93\xac\xc5\xd3\x61\x2f\x63\x66\x20\x8d\x3d\xae\xc0\x33\xab\xd6\x64\x18\x6f\x0d\x3b\x40\x85\x18\x24\x2b\x1c\xdf\xa7\x54\xfd\x33\x2f\xe3\x35\xa3\x94\x90\xd6\x55\x8a\xd6\x28\x95\x10\x47\x85\xcd\x0c\xf7\x7f\xc5\xc7\x9b\x7e\x9c\xc8\xd5\x34\x88\x7a\x98\x6e\xba\x62\x77\x56\xbf\x5a\x2a\xa0\x9e\xc9\x74\x23\x50\x0e\xa4\x48\xb1\xd1\xef\x06\xc8\x05\xcb\x79\x43\x59\x17\x35\x35\x02\xe6\xda\xa3\xb2\x1b\x47\x61\x95\x35\xde\xfb\x9f\xf7\x4c\xbc\x16\xc0\xcf\x3c\xb9\xe9\xbb\x7b\x3b\x5b\x4b\x6a\x2f\xee\x5f\x68\x87\x69\x12\xc6\x65\x6f\xab\xf0\x21\x0d\x84\x88\x20\xaa\x92\xfa\x30\x4d\x8b\x01\xd4\x9c\x24\x06\x3a\xaa\xe2\xa1\xa3\xe3\x7d\xf5\xed\xf7\x99\xf6\x81\xb9\xcf\xd1\x07\x63\x47\xb8\x1e\x6c\xff\x82\x27\x75\x1f\x98\xf3\x46\xc5\x5f\xfc\x9a\x6b\xa8\x2b\xd9\xc6\x75\xf4\x58\x64\xf1\xfb\xa2\xff\xae\x89\x32\xb2\xba\xa7\x00\x48\x7f\x8e\x84\x0a\x85\x8a\x5b\x3c\xc1\x30\xc3\x3f\x1a\xab\x52\xec\xd5\xc0\x93\xf8\xff\x3c\x50\x21\xf4\x77\x03\x8f\x6c\x9a\x85\x34\x0f\x76\xec\xab\x41\xeb\xab\x5f\xe6\x17\x7d\x19\x3b\x00\x8a\xd3\xaf\x53\xab\x0e\x14\x50\x50\x5f\xf0\xde\xfe\x58\x73\x14\x5f\x1b\x7b\x27\xcd\x47\x27\x55\xd6\x06\xa6\xc9\x2d\x57\x90\x8d\x92\x24\x0d\x1d\xac\x48\x10\x9c\xbe\xec\xf7\x44\xc7\x2f\x89\x5d\x13\xdd\x44\x4a\xd3\x6c\xb7\xf2\xe6\xfc\x1e\x56\xaf\xf2\xd3\x78\x41\xb4\x91\x02\x05\x29\xbb\xca\x83\x83\x6d\xec\x16\x76\x3e\xbd\x78\x50\x67\x38\x8b\x23\x80\xfd\x7a\x95\x9e\x40\x3e\xb2\x61\x64\xe2\x9d\xd5\x8f\xe7\x52\x52\x35\xa6\x2c\x73\x81\x2f\x84\x5f\x3d\x5f\xd3\x94\xd6\x45\xa7\xcd\x4b\x4e\xc9\x3c\x0d\xc3\x32\xcb\x77\xb6\x9c\x38\xcc\x59\x9a\x1e\x82\x50\xa2\x5f\x27\x45\x76\x5f\x8e\xbd\xa0\xc8\xf8\x37\xf6\x74\x14\xa8\xe1\x98\x82\x62\xb0\x52\xed\x6e\x25\x5e\x8e\x84\x1a\x69\xcf\x69\xbd\xbf\xd5\x84\xd6\x7f\xca\x91\x95\xb3\xe5\x70\x74\x2a\x48\xc1\xd5\x20\x04\x2c\x50\xea\x6a\xb3\x85\x7d\xa5\x88\x62\x2c\x7c\x9c\x99\x1f\xa8\x84\xb0\x35\xf1\xa8\x28\xd8\x3d\x20\x39\xfb\x23\x1a\x24\xe7\x20\x5a\xfd\x3a\x81\xda\xab\x2a\x51\x61\x87\x43\x58\x34\xbb\x5e\x91\xee\x1c\xde\x51\x5d\xd9\x53\x81\xb6\x19\xf0\x0c\x8e\x69\x1d\xf1\xb9\xc3\xbe\xd7\xd6\xf2\x18\xb8\x8f\x02\xbf\xd9\x7d\xa4\x18\x26\xc8\xd6\x5a\x8a\x55\x41\xff\x50\x00\xd3\x9e\xe1\x37\x34\xdf\x48\xb3\xa8\x58\xdb\x49\x23\x8b\x5a\xc5\xa6\x92\x01\xe2\x9a\x0a\xf3\x6f\xb1\xfa\x71\x56\xbc\xae\x3e\x71\x30\x56\x78\xd8\xfb\x53\x1d\x85\x85\xc5\x85\x76\x5a\xf6\x07\xc5\x6c\xeb\x2b\xa2\xd7\xb5\xab\xa3\x8e\x37\x94\x61\x1d\x45\xba\xfa\x46\x09\x85\x9d\x72\x6c\x5a\x26\x3d\x72\xdd\x57\xca\xfb\xc7\x94\xb8\xf0\x31\xa5\x6a\x40\x42\x7f\x45\x49\x71\x87\xcf\xc0\x6e\xaa\x62\x2f\x37\x63\x11\xef\xcc\x78\x97\x9f\x28\xcd\xd3\x32\x0b\x6d\xab\x66\xa9\xa4\xca\x9e\x17\xa7\xfc\x13\x0e\x3f\xdf\x36\xd5\x02\x31\xae\x35\x81\x08\xe5\x4d\xaa\x7b\xf0\xf5\xd4\x0b\x7d\x71\xff\xcb\x6d\xb2\xc5\xed\x47\x61\xcb\xbb\x28\xbd\xa1\x00\xf0\x6f\x34\xa5\x49\xe1\xc0\x0e\xa3\xbc\x60\x8f\x5c\xc4\xc6\xdf\x55\x8a\x43\xdf\x6d\xd2\x28\xfb\x46\x39\xec\xa6\x6c\x76\x81\xb1\xb8\xa0\x84\x83\x4e\x28\xa9\xde\xd7\x1b\x89\xe1\xcc\x1b\xe2\x4a\x01\x8b\x99\xe9\x44\x79\xdd\x25\xca\x4f\xff\x57\xbf\x9c\xcf\x56\xbb\x03\x3e\xfb\x8e\x56\x07\xe5\x24\x50\xc9\xa4\xcd\x71\x6e\xf7\xed\x26\x95\xf4\x91\x35\x49\x29\x98\x03\x41\xb3\xd6\x8c\x26\xfc\x36\x92\xd8\x55\xf2\x72\xc0\x9e\x20\x92\xd8\xaa\x71\x7e\x55\xc9\xe3\x8d\xd2\xc2\x26\x45\x64\xe2\x78\x0d\xd8\x09\x69\x32\xb6\x0e\x1d\xda\x3c\xad\x7a\x78\xdf\x0f\x3c\xa0\xbf\x5b\xe6\x51\x42\x76\x40\x0f\xd3\x03\xe1\x00\xbe\xae\xda\x30\xdf\xc1\x9c\x72\x9e\x37\x87\x0e\x39\xe0\x26\xa5\x7a\x08\xcc\x3e\x02\x47\x87\x6f\x30\x3c\xd8\xab\xfe\x20\xf0\xd2\x49\x6f\x23\xde\x02\x8e\xe6\x75\x9a\xb8\xd2\x9d\x56\xa2\x31\x36\x29\x32\x13\xef\xf0\xdb\xdd\x5b\x5a\xc1\xe7\x16\xbd\x57\x41\xda\x2b\x90\xc8\xa7\xb4\xed\x60\x0b\xba\xec\x8e\x38\xfb\x4a\x61\x33\xa9\x0e\xe3\x29\x5e\x1b\x2b\xd5\xc2\xd7\x54\x85\x9e\x9c\x38\xba\x26\xc1\x62\x44\x29\x15\x0a\x7c\x7c\x3d\x51\x5a\xc9\x69\xbc\xac\xc8\x81\x3f\x53\x66\x24\x3f\x53\x65\x88\x5e\xc9\x6f\x1a\xc1\xf1\x2d\xc5\x2b\xbb\x35\x15\xb9\x1d\x7e\xbe\x3d\x28\x87\x26\x99\x55\x12\x27\xa7\x15\x90\xfa\x06\x1d\x50\x0e\xc9\xe4\x5a\x44\xbb\xa7\x74\x71\x0f\xce\xd3\x8f\x49\x72\xb4\x9b\x11\xd9\x68\xd4\xc2\x5d\x05\xe6\xb4\x26\x4b\x76\x7a\x59\xb5\x0f\xc7\xbe\xbd\x73\x0f\x47\x34\x5e\xfe\x0f\x55\x79\xf8\xa6\x3a\x12\x41\x3b\x43\x11\x64\x67\xc7\xe7\x3a\xb6\x17\xe5\x69\x02\x54\x0a\x93\x3e\xf8\x74\x13\x0a\x88\x14\xb3\xf3\x38\x5d\x65\x85\x2e\x74\xd7\x58\xee\x5e\x34\x14\xbd\xd0\x59\x95\x67\x6e\xc1\x86\xcf\xb5\x7f\x69\x87\x17\x3d\x64\x29\x45\xc5\x38\x79\xce\x41\x45\x69\x22\x8b\x5d\x86\x3f\x59\x8f\x35\x21\xba\x97\xcc\x4a\x4a\x3d\xd4\xea\xa3\xa5\x7f\xab\x1b\xbb\x4a\xd7\x3c\xcd\x86\x50\xfe\x7d\x4e\xda\x15\x4a\xaa\xf5\x48\xa3\xd1\x8e\x89\x72\x17\x00\x33\xf5\x3a\xf0\xd8\x83\xd3\x8d\xd8\x9b\x95\xb4\x70\x7f\x23\x1d\x49\xd5\x9d\xd4\x4b\x08\x6d\x20\x7a\x76\xc5\x34\x59\x70\x4c\x13\x89\x18\xd8\xeb\x78\xa6\x3a\xc1\x90\x2a\x1c\x1d\xfb\xb4\x01\x91\x25\x2a\xd9\x77\x54\x4c\x2e\xf2\x3d\x78\x14\x0c\x28\x84\x3d\xf8\xda\xad\xbe\x41\x3a\xb4\x31\x59\x16\xbb\x91\x3b\x55\x2b\xed\x79\xcd\xfb\x63\x75\xb5\x70\xaa\xe8\xf0\x9c\x70\xbe\x1f\xf3\xf3\x8c\xa3\x42\x90\x27\xb1\xe7\xc3\xee\xc9\xfe\x8b\xbd\xad\x2f\xbd\xc4\xb5\x8f\xa3\xa8\xf6\x4b\x08\x47\xbf\x1f\xdd\x09\xd8\x0d\x21\x14\x00\xb8\x01\x0d\x6b\x96\x2a\x15\x23\x35\xdf\x00\x81\x23\x26\xc3\x87\x03\x15\xf3\x49\x3a\xc9\x96\x51\x5a\x3d\xe2\x4a\xa0\x94\x43\xd7\x29\x90\xc7\xca\xbd\x01\x8a\x82\x08\x70\x54\x3f\x44\x18\x84\x0a\xc1\xb0\x6d\x52\xad\x75\x54\xac\x7f\x3e\x15\x7b\x1c\x38\x40\xda\x5a\xd9\x1a\x0a\x10\x72\xdc\xb4\x9c\x40\x07\x4c\xb2\x81\x0b\xb8\xd1\x60\x63\xb9\xd0\xb6\xb1\xe2\xaa\x3b\x63\x59\x85\x0b\xf3\x38\x99\x72\x94\xdb\xa2\xa5\x50\x27\x27\x15\x14\xeb\xe4\xd4\xc3\x2d\x2e\xb4\xbb\xb6\x70\x04\x68\xc7\x95\xf4\xc5\xd5\xdb\x81\x37\x26\xf4\x44\xb4\x30\xae\x8e\xc6\xd1\x0e\x7a\x22\x34\x34\xfe\xc3\xd8\x37\xf2\xee\x69\x30\xf0\x0f\xc7\xea\xb3\x2f\xa8\xa3\xfe\xb8\x72\xa1\x80\x02\x14\xab\xfa\x0a\x69\xa2\xc6\x0e\x6b\x79\x91\x77\x55\x16\x8d\xa3\x24\x4c\x63\xd0\xd2\xa5\x4e\xa7\x8b\x76\x6a\x7f\xff\x95\x5f\xfe\xfb\x2d\x05\xbf\x7a\x8f\x76\x68\xbe\x6e\xe4\xc9\xe7\xe9\xd0\x0e\xd2\xd5\x96\x17\x14\x3e\xae\x34\x3d\x8e\x4f\xf5\x66\x9e\x69\x0f\x6d\x61\x62\x0e\x52\x90\x89\x9e\x1f\x2b\x9a\xcf\x34\x4e\xa9\x7a\xbb\xdd\xb4\x18\xb4\x7c\xca\x07\x68\xaa\xa8\x97\x36\x59\xca\x86\xb1\xc9\x07\x20\xb8\x79\x3e\x16\xbd\x09\xbc\xa6\x1b\x1a\x3f\xb6\xbd\xe3\x27\x47\x16\xe5\x36\x27\x6a\x8e\x98\xbc\x54\xc3\x26\x0d\x37\xdd\xea\xf6\x98\xb3\x8f\x54\x54\x1b\xa6\x29\x49\x3e\x57\x5b\x9b\x8f\x12\x39\x28\xe7\x9b\xa9\xce\xd0\xd7\xbf\xde\x4e\xa2\xc4\x52\x48\x86\x22\xf2\xb6\x8e\xd6\xd6\x55\xa3\x5b\x13\x14\x50\xad\x84\x30\x1d\xda\x7c\x97\xf7\xb7\xb9\x16\xf8\x68\x7d\xa6\xe3\x81\x8a\xb7\x11\xd9\xa0\x10\xff\x11\xea\xd6\x8e\xa8\xeb\x5a\xe3\x90\x2c\xc3\x02\x6f\x6c\xb0\x15\x69\x1a\x73\x28\x20\xe2\x06\x2d\x27\x9b\x7b\xcc\x75\xd8\xaa\xe9\xd1\x4d\x7b\x6b\xb3\xca\xfb\xe5\xec\xd8\xef\xe3\xe7\x95\xb2\xd5\xc3\x1d\x5f\x32\xb9\xad\x71\x60\x51\x3e\xb2\x59\x6e\x7b\xad\xea\x99\x9c\x2e\x90\x07\xea\xa9\x8c\xba\x9f\x45\x71\xcc\x15\x40\x16\x0a\xa6\xf7\x27\xa2\xc1\xb5\x9c\x7f\xb8\xf6\x98\x62\x6d\xfc\x0c\x85\x12\xd6\x31\xa0\x7a\x88\x68\x1a\x28\xa5\xa5\x2b\xe3\x29\x39\x79\x84\xcd\xf7\x03\x05\x83\xbf\x37\x56\x99\x32\xea\x24\x78\x7d\x1f\x52\x69\x04\x25\xbe\x3f\x08\x14\x07\xfe\x28\x85\x95\xd8\x77\xe1\xc5\x8a\x2a\xd6\xb4\x06\xf9\xe1\xe7\x89\x19\x91\x59\xc3\x27\x22\x1e\xff\x94\xe2\x14\x9f\x1a\x3f\xe5\xf9\x59\xfd\xcc\x14\xda\xcd\x43\x30\x0d\x35\x3c\xbf\x8f\x72\x32\x6b\x7a\xd2\x85\x15\x4c\xa0\xd6\xfd\x57\x88\xf6\x2b\x9a\x25\xaa\x3d\xeb\x07\xa6\x78\xca\x99\x49\xfe\xe3\xbf\x41\x58\x24\xfa\x57\xff\xe4\x0b\x1d\xa5\xd4\x8c\x89\x40\xcb\xde\x7e\x86\x94\xa9\x28\x9f\xdc\xf9\xf9\x09\xbd\x09\x8a\x37\x7e\xfc\x74\xc7\x9d\xa9\xdf\xd9\xdb\x51\x4e\x39\x0f\x4f\x94\x54\xd6\x63\x4c\xb7\x77\xea\x41\x52\x3f\xf9\x6f\xdb\x13\x95\x1b\x3f\x34\xa1\x5d\x5b\xc4\x84\xab\xd5\x82\xac\xe2\x06\x68\xd0\x48\x74\x59\x35\x1e\x8b\x75\xf7\xa4\xf5\x12\x57\xe6\x7f\xe3\x0b\x1d\x65\x5c\x77\x8d\x38\x17\xae\x19\x54\x8d\x17\x8e\xba\xfb\x4d\xfe\x62\x3d\xbb\x04\x45\xda\x9a\x6c\x7c\x4b\xb9\x1e\x34\xb4\x27\x09\xa4\x9a\xd7\xb2\x5c\x2a\x94\xc9\xaf\x6c\x20\xcd\x8f\xb2\x74\x18\xe5\x16\xdb\x2b\xea\x14\xef\xd3\x68\xf0\xf5\x54\x62\xbc\xf0\xfc\x0b\x44\x66\xac\x66\x14\xcf\x10\x1c\x49\x80\xb2\xf2\xf5\xd4\x91\x2b\x95\xf3\x6f\x18\x9c\x2b\x8d\x49\xb8\x6e\xbc\x24\xe9\xea\x5e\x65\x15\xf7\xcf\xbd\xfa\xcc\xe2\x3e\xea\x84\x88\x9b\xbb\xe2\x6d\xef\xea\xf8\x5d\x48\x5c\x2a\x59\xc3\x32\x50\x30\xd7\x1b\x81\xaa\xd6\xf1\xd1\x86\xf6\xf5\x79\xc0\x25\x70\x43\x22\x0c\x82\x25\x3e\xa1\x4c\xda\x5f\xa3\x89\x20\xf6\x44\x4e\xae\xe3\x99\x3d\xb4\x6d\x22\x7e\x98\xe9\x54\x91\x98\x60\x49\x94\x42\xd8\x76\x4d\xeb\x88\xb2\x30\xb6\xac\x0f\xea\xcc\x4b\x9d\x6e\xfd\x45\x57\xab\xcb\x6c\x92\x46\x10\xfc\xc5\xe3\x5c\xc0\x47\xf2\x8d\xc2\xf4\x12\xa2\x7f\xa6\x7a\x3e\xe7\x70\x76\x50\xc2\xcd\x6f\xd3\x26\x25\x1b\xa2\x73\x7e\x4a\xd3\x21\x35\xab\xea\x1a\x53\xae\x01\xb4\x3e\x85\xdc\xab\xce\x71\x9b\x17\xa6\x1b\x47\x38\x33\x3d\x6b\xe7\xa2\x56\x74\x65\xd5\x46\x14\x9c\x4f\x36\x18\xa5\xbc\xec\xa5\x04\x39\xc7\x77\x24\x0b\xf5\x2c\x53\xe7\xf5\xc1\xf9\x76\x5e\x80\xfe\x8b\xa1\xd3\x2c\x76\xbe\x6e\xa8\x78\x2c\x54\x71\x75\x56\x46\x05\x87\xd5\x08\x07\x7e\xa8\x4d\x9f\x4e\xd7\x74\xf1\x94\x22\x58\x91\xae\x98\x98\xdd\x4d\xdc\xd9\xee\x4a\x88\x1a\x29\x37\x48\xd3\x15\xcb\x56\x04\xa2\xd7\x56\x3d\x17\x76\x4e\x76\x0c\xc0\x2a\x79\x67\xaa\xaa\xb3\xb8\x1f\xb2\x11\xac\xb2\x8b\xd4\xe3\x36\x36\x0b\xbe\x51\x0e\xc8\xbd\x28\x2f\xa2\x84\x77\x09\x27\x21\xc4\xc5\x19\xbe\x19\x3f\xe6\xa6\x86\x5d\x89\xf8\x17\x08\xa8\x98\xca\xcc\x82\x43\x6e\x10\xe2\x49\x6c\xb1\x9a\x66\x34\xce\x1e\xdd\xb5\x81\x28\x9f\x6f\x54\x79\x72\xc5\xe6\x39\xab\xa3\x63\x34\x2f\x05\x0a\x48\x77\xa9\x09\xa9\x3e\x4c\xa5\x12\xe4\x14\xb7\xbf\xf4\x92\xeb\x1a\x3b\xc5\x8a\xa2\xc8\x4c\x28\xaf\x0d\x83\xca\x19\x32\x76\x0e\x70\x47\xa4\xeb\xe7\xcf\x15\x9b\xad\xed\x51\xd1\xf4\x7d\x25\xbe\xb8\x8f\xd6\x27\xf6\xef\x13\x63\xe7\x28\xf8\x3f\xfc\x27\x1d\xe5\x26\x70\x04\x1b\x3b\x6a\x01\xd7\x31\xb5\x1d\x85\xf5\xc0\x9c\x56\xcf\x78\x81\xb3\xb4\x5f\x20\x45\x6b\x6c\x3a\x77\xc7\x7a\x52\xff\x26\xf6\x16\xd1\xad\xf4\x4f\xbc\xb7\xa3\x70\xc2\xff\xd7\xd8\x17\x60\x5f\x07\x7e\x40\x18\x7f\x53\x3b\xf1\xe2\xc2\x17\xda\x26\xcb\x6d\x62\x24\xb4\x12\xdc\x81\x06\x91\xfa\xe6\x5b\xdf\x64\xac\xdf\x82\x32\xfc\xef\x61\x13\xe1\x1b\xc7\x22\x19\x46\x61\x96\x52\x66\x9c\xe7\x29\x3b\x22\x49\xb6\x86\x1f\xc4\x77\x0a\xf2\x77\x5e\x8b\x2a\x3e\xd8\x19\xdf\xf6\x99\x47\x84\xf6\xdb\x29\xe5\x2c\xa5\xc1\x2b\x7f\xef\x97\x7f\x99\x42\x5b\xe4\x6f\xd0\xa6\x41\xa1\xec\x9e\xf2\x00\x79\x47\x43\x32\x36\xc6\xfb\x5c\x53\xa7\x88\x86\xa4\xa0\xd2\xd3\xc2\x2e\x1f\x29\xf5\x83\x8f\x1a\x34\xe0\x07\xd6\xf4\x58\x81\x90\x93\x0d\x11\x58\xf4\xc0\xe2\x13\xc1\x5e\x8d\x1d\x19\xda\xa4\xc8\xc9\x30\x0c\xc8\xb2\x0f\xb0\x50\xf1\xd4\x6f\xa9\xd4\x8d\x75\xae\x25\xd1\xaf\x9e\x6a\x73\x13\xab\x8f\xff\xb1\x92\x41\xcc\xcb\x50\x0c\xca\x3d\x05\xfd\x56\xa0\x0c\x93\x6f\xa9\x29\xbe\x62\xf3\xc7\x3c\x82\xe9\x36\x4d\x2b\x14\x5e\x76\x01\x0a\xec\x0e\xda\x6a\x26\x23\xe0\x80\xa1\x17\x22\x9c\xa7\x26\x5e\x08\xe2\xdf\xfc\x52\xc7\x97\x72\x5f\xff\xdb\x1d\xaf\xc4\xf9\xd8\xdf\x9a\xa8\xca\xd5\x7f\xf7\x64\xa7\x3a\x60\x44\xac\xd5\xc7\xf1\x4f\x4f\x14\xce\x72\xe7\x84\xf2\x7c\xe4\xb1\x9f\xe9\x34\xba\xf8\x2d\xd9\x24\x8f\x56\xe0\x3a\x0a\xb0\x00\xa8\x65\x6c\x4c\x49\xcf\x29\xfa\x17\x0d\xdb\xc7\xaa\x35\x19\x76\x4a\x71\x27\xf3\x73\xeb\x98\xaa\x50\x25\x36\x5b\xb1\x44\xbb\x78\x8e\x77\xec\x99\x89\x4b\xf5\x77\xec\xeb\xf8\x5f\x70\x5b\x91\x31\x3f\x9a\x0a\x62\x0e\x3f\xdf\x2e\x32\x93\xe4\x4b\x36\xab\x22\xe9\x4d\x6c\x70\x9b\x97\x54\x53\xbc\x97\xda\xfc\x09\x65\xc1\xf4\xe6\xd8\xf3\xed\x3f\xa4\x7d\x46\x82\xbe\xea\x01\x44\x2a\xc0\xc5\xc8\xbf\xb6\x0f\x1d\x14\x67\x96\x5b\xbd\x02\x76\x02\xd0\x5a\x46\x6c\x0f\xeb\xfa\x73\x07\x0e\xf8\x45\xe1\x01\x9f\xd0\x12\xc3\x9c\x87\x00\x22\x36\xfb\x7b\xbc\x31\xc9\x8e\x49\x2c\x26\xe9\x57\x36\x8a\x24\xc5\x4b\x2d\x7a\x9b\xd2\x81\xf7\xcd\xaa\x13\x35\x6d\x9e\x32\xe9\x7d\x56\x91\x62\xae\xe8\x78\xea\xb4\x36\xf4\xbc\xab\x2d\x5d\x8f\xd4\x4c\x2c\xab\x95\xef\x24\x67\xab\x0d\x10\x0f\xfd\x06\xce\x1d\x96\x3f\x27\x30\xa9\xf3\xa7\x5b\xdc\xcf\x4b\x63\xb6\xb3\xfd\x0b\xde\x99\xe9\xe0\x3c\x57\xbc\x66\x3b\x5a\x96\xed\x8a\xa6\xea\x70\x9d\x0a\xd5\x93\xdd\x13\x65\xd6\x73\x9e\x5e\x17\x46\xef\x35\x44\x09\x98\x18\xd7\x11\xfc\xf3\x63\x69\x64\xca\xee\x8e\x2f\x37\xdf\x52\xb0\xb0\xf5\xad\x65\xdb\x97\xe6\x0e\xb7\x7f\xa9\xa5\x50\x6d\x48\xbf\xf9\xda\xc5\x66\x23\x13\x2e\xaf\xa6\x69\x4f\x69\x0d\x9c\xd2\x96\xbf\xa7\xa6\xb2\x80\xf9\xf9\x76\xcf\x0c\x4d\xdf\x6a\x52\xe7\xff\x43\x8f\xc2\xd7\x8a\xaf\x39\x8a\x46\x36\x8e\x12\xe4\x18\x2c\xae\x1d\x78\x4b\xe6\x75\xb7\xa7\x0a\xde\x67\x0b\x2f\xf5\xa6\x72\x16\x44\xa2\x87\x79\x77\xb4\x8e\x7b\x89\x4d\xc2\xbe\xa2\x38\x93\x8e\x29\x61\xc4\x63\x0a\xe4\x73\x5c\xc7\xc9\xc7\x35\x1b\x20\x5d\x15\x00\xf4\xcb\xae\x23\xa6\xba\x63\x81\xa4\xaf\x3d\x5b\xd8\x2c\x4a\x33\x65\x43\xee\x5c\x92\x9c\xe0\xc3\x09\x65\x10\x73\x64\x0b\x34\x2e\x44\xcd\x8e\x15\x2c\x54\x65\xea\x8f\xe9\xfb\x24\x5d\xf6\x80\x3d\x13\x47\x36\xe1\xea\xcd\xdc\x61\x5e\xd0\x40\xc4\xf2\x75\xad\x86\x50\xf6\xd6\xa8\xb1\x83\xcd\xe1\x96\x86\xf5\x8f\x83\xd6\x57\xe6\xe4\x7a\xac\x74\x9f\x36\x75\x2d\xe8\x7d\x25\x46\xc0\x8a\x1e\x79\x4b\x51\x31\x4e\x2a\x36\x90\x16\x47\xc8\xa3\x64\xcd\x64\xc0\x84\x4a\xf4\xe9\x85\x06\xbf\x85\xef\xe3\xff\x10\xd4\x41\x54\x07\x25\x6f\xba\x34\x35\xdb\xaa\x10\xbe\x9b\xad\x19\x70\x3a\x9c\xe6\x9a\xaf\x94\x9e\x6d\x2e\x02\x9a\x15\x62\xf4\xeb\x5d\x88\x37\x04\x21\x8d\x4e\x23\x67\xd0\xd2\xc9\x6c\xee\x0e\x76\x14\xa4\xa1\x40\xc0\xd7\xb5\x14\x72\x6d\x38\xa4\x97\x82\x88\xf1\x36\xbd\x14\xbe\x1e\x7f\x56\x1d\xe4\xc9\x8a\xcd\xc0\xa2\xc8\x77\xf8\x72\x34\xe0\x23\x68\xac\xfe\x45\xa0\x1a\x77\xc7\x75\x47\x10\x99\x92\x88\x19\x4f\x29\xba\xcd\x4d\x53\xe8\x1c\xda\xc8\xd5\x6c\x7e\xd4\xb0\x8a\x17\xda\x79\x68\x62\x56\xa8\x74\x0d\x43\x47\xc2\x7f\xbd\x59\x7f\x73\x68\xc2\x2c\xb5\x61\x9a\xa4\x43\xb6\xa4\x75\x2e\xc1\x0e\xc8\x32\xed\x12\x4c\x92\xb2\x26\xe9\x8b\x23\x0f\x76\xb9\x4f\xc7\x0a\xee\xff\x69\x23\x27\x84\x60\xc1\xf2\xbb\xb0\x16\x6f\x8f\x7d\x07\xfb\xb6\x63\x6b\x2c\xa5\x29\xa3\x21\x9d\x18\x45\xf5\xd9\x7c\xe3\x8d\x09\xb3\xa8\x88\xc2\xe8\x55\x74\x9d\x90\x9f\xdf\x44\x43\x8b\x6f\x94\xd0\x41\x91\x99\x08\xc1\xa4\x14\x82\x3d\x56\xe9\x7c\xd3\x6f\x1c\x46\xbd\x9e\x01\x90\x0c\xbb\xf5\xcc\xc4\xe3\x33\x67\x3a\x0d\x3a\xb8\xdd\xcc\x9a\xe5\x5e\xba\x2a\x35\x15\x87\xba\x50\xba\x96\x8f\x2b\x8c\x48\x16\x8d\x30\x33\xc5\x1d\xd3\xf7\x4e\xcf\xa9\x08\xaf\x4c\x72\x1b\x96\x99\x83\xbc\x3b\x04\x60\xf5\x1d\x4e\xe1\x6c\x7e\x9e\x31\x77\xa8\x48\xf2\xf5\x54\x5e\xbb\xb0\x08\x48\x99\xcd\xe4\x29\x1d\x04\xd3\x9b\x37\x1f\x6b\x6a\xc2\x75\x61\xa6\x49\x43\x88\xae\xc9\x89\xc0\x77\x50\xa6\x13\x42\x62\x86\x67\x99\xf5\x09\xa7\x23\x20\x2a\xcf\x94\x06\xbb\x0b\xc8\x09\x8b\x7a\x1c\xdb\x08\xaa\x36\xf6\x35\x04\xb7\x92\xe7\x7c\x56\xc1\x88\xca\xdc\x52\x5b\xc4\x59\x00\xb0\x80\x46\xe0\x3b\x73\x17\x54\x8a\xbb\x1c\xc5\xf1\xae\x3a\xc8\xa3\x9a\x9a\xa8\x40\x9c\x55\x60\x5a\x68\xad\xf3\xff\xaf\x4f\x70\x06\x55\xa2\x8a\xf0\x97\x74\x18\x0a\xdc\x67\x9f\x72\xd7\xcf\xc3\x2c\xea\xca\x2f\x42\x8f\x0b\xda\xcf\xd8\x4f\xef\x06\x5a\xf4\x40\x4f\xda\xd4\xe4\x00\x1e\x8b\x18\x74\x4b\x29\x0e\x34\xd9\xd2\xe6\x31\x99\xf4\x38\x37\x16\x48\x48\xf2\x75\x4d\x0f\x2d\x4b\x4c\x06\xa1\x7b\x44\xf9\xb0\x77\xe6\xeb\xb1\x07\x3b\xf3\x06\x2d\xff\x68\x2b\x25\x8d\x56\x4a\x12\x25\x22\xe3\xdb\x52\x80\xbc\x7b\xea\x71\xef\x35\xe0\xd0\x43\x33\x2a\x4c\xc4\x6a\xdd\xae\x02\xa9\x40\xf4\x4a\xae\xdc\x64\xc3\x34\xa1\x1e\x8d\x68\x67\xd3\x63\xf1\xcd\x54\xdd\xd1\x71\xc9\xb3\x68\x68\xa9\x61\xeb\x64\x11\x5c\xc1\xe1\x86\x56\xb7\x6d\x75\x94\xce\x5b\x34\x04\xbd\xa2\xc9\x65\x5a\x40\x2e\xd6\xe4\x6b\x0f\x55\x61\xfd\x69\x45\xe2\xe5\x2c\x0a\xe9\xd5\xd5\xb1\x5a\x60\x17\xf5\x97\x6d\xd0\xe1\x2d\x18\xec\x6a\xdc\x51\x2a\x3c\x11\x28\xd0\x24\x1a\xe8\x88\x4e\x3f\xab\xfc\x7b\xfe\xce\x73\x5f\xa1\x06\x31\x12\xaa\xfb\xca\x7a\xe7\x07\x63\xa5\x43\xb4\x4d\x89\xbd\xe7\x85\xb5\xf1\x5a\x4b\x89\xbd\x7d\xc8\x36\x0a\x7c\x37\xcd\xa6\x9f\x6b\xaf\xa6\x89\xc7\xfb\x20\x4b\x62\x70\x2f\xdf\xd4\x42\x95\x24\xb7\x64\xe0\x2f\x21\xa4\x42\x9c\xdf\xc7\x09\xa8\x04\x3e\x44\x17\x07\x24\x5a\x4c\xad\x5b\x68\x90\x20\x71\x07\xbe\x55\x1c\xfa\xe8\x09\xb0\xae\x2e\xe9\x6e\xc1\x45\x4e\x4c\x1c\x0c\xba\x5a\xbd\x02\x6c\x68\x72\xef\x1b\x9a\xac\x20\x1d\x7b\x24\xe8\xdf\x1f\x2b\xfc\x27\x7c\x06\xc4\xfc\xab\x7a\x27\xdc\xf2\x1e\x2b\xd0\x50\x96\xf6\xca\x10\x22\xec\x2d\xa7\xe8\xf9\xbd\xb1\x57\xf4\xfc\x9e\xca\x23\x7b\xab\x40\xea\x39\xe1\x80\x13\xfa\x8c\x9c\x86\x22\x1f\x9c\x6f\x17\x83\x72\xd8\x05\x46\x0b\x1b\xdf\xb7\x14\x56\x13\x32\x64\xe8\xee\x1c\x69\x58\x4e\xf9\xc8\xac\x26\x12\xed\x60\x3e\xbe\x87\xcd\x8a\x6f\x94\x19\xd3\x4a\x64\x57\x77\x2a\xd7\x18\x56\xf1\x77\xfd\x4f\xe5\x6a\xa7\x8a\x5a\x33\x1d\x7a\x47\x78\xc7\x30\xd3\xc6\x6b\xb9\xa2\x65\x5d\xa2\x2c\xcc\xcc\x52\xf1\x28\xfd\x5b\x40\x59\x19\x07\xea\x1a\xd0\xce\x79\x1b\x0c\x4f\xf1\xcd\xa1\x87\x15\xd9\xf3\xea\xd3\x91\x74\x1d\xc5\x9b\xe5\x7f\x45\x65\x69\x64\x14\xef\x63\x40\xd1\xc7\x7c\x93\x67\x83\xb8\xac\x29\x96\xe1\x1b\x81\xcf\xf9\x66\x3a\x9e\x99\x96\xa5\xab\xe4\x01\x83\x8c\x13\x7a\x0f\x7c\xad\xf5\x14\xae\x52\x6c\xc7\xd7\x53\xa1\x8d\x74\xcc\x68\xe3\x7d\x71\x3f\x4f\x27\x34\xed\xf9\x7a\xca\x67\xba\x3a\x4f\xbb\x75\xf5\xef\xf3\x5a\xfd\xfb\x7c\xe0\xe3\xf6\xdc\x64\xbd\x34\x01\x7a\x9c\x87\x13\x15\x4c\x5d\x15\x43\x09\xfd\x6e\x93\xbe\xdb\x52\x99\x15\x03\x9b\xed\xf0\xd9\xc9\x0d\x95\x9d\x7c\x0f\x70\x6c\x97\x3b\x54\xbb\x37\x48\x10\x13\xa5\xac\x7c\x44\xe5\x11\x79\x11\x65\x59\x39\x82\x94\x21\x4e\x61\xe4\xd4\x7c\x3d\x15\x9e\x1e\x9c\x6f\x67\x51\x98\xda\x9e\xea\x58\x33\x3b\x94\x6f\x94\x3f\x73\x59\x6d\x3a\x85\x59\xb6\x48\x12\x58\xd1\x88\x66\xbe\xa8\x1b\xf9\x1a\x72\xb7\xcc\x12\x9b\xb5\x7c\xff\xe2\x22\x8d\xba\x1c\x90\x0d\xee\xde\x89\x2d\x54\xf1\xfb\xe7\xaa\xab\xfc\x73\x47\xf3\x58\x8e\x7a\x89\x01\xd3\x8f\x3d\x0c\xb1\xe9\x88\xa1\x61\x83\xcc\x7e\x61\x5e\x91\x85\xd7\xd4\x5d\xd8\xa7\x14\xe1\x46\x59\xb4\xc2\x25\xf2\x4d\xd2\x57\xd8\x3c\xaf\xd8\x40\x61\x1a\xc7\x36\x84\xfa\xcf\x41\x09\xb4\xce\xd0\x82\x11\xdd\x75\x65\x65\x9c\x85\x83\xa8\xb0\x61\xf1\x1f\x27\x7c\x3f\x4d\x89\xcd\xca\xcc\xc4\xca\x99\x0e\xac\x7f\xbe\x56\xbb\xc5\x20\x1d\xa6\x28\xa7\xcb\x5e\xa9\xbc\xb3\xe1\x45\xc9\x4e\x0a\x4d\x7d\xc6\x22\x8b\x62\x29\x39\x0b\x75\xd2\x83\xab\xcf\x8c\x9f\x72\x3f\x28\x4a\xec\x92\x34\x32\xe9\xeb\x90\x49\xb2\x50\x2b\xdf\x4c\x09\xf3\x39\x4d\xf9\xa2\xec\x89\x90\x91\xd8\xcf\xb7\x9c\xc3\x13\x1f\xc0\xd8\x76\xa6\x5f\x62\x15\xbf\x47\xcb\xa2\xdd\xcf\xd9\xac\x92\x0e\x6c\x94\xce\xe9\xad\xc9\x1f\xe0\x0c\xdb\x50\xe7\xd9\x86\x92\xd0\x2e\x87\x51\x52\x0e\xb1\xaf\x4b\xeb\xd0\x73\xb8\x66\xe9\x95\xe1\xd7\x6d\x8c\xbd\xbd\xf7\x52\x19\x0f\xa3\x84\x3d\x3f\x5a\xce\x70\x8b\x53\x5f\xbe\x51\x6c\xa9\x28\xcf\x4b\xdb\xdb\x41\xdb\x2e\xde\x21\xea\x18\xe2\xac\xda\x72\x26\x44\x70\x5c\x45\x1a\xfa\x86\xc2\x5d\x9f\x53\xa8\xf0\x51\x96\x0e\x47\x45\xbc\x36\xeb\xd5\x5f\x6f\xc0\x97\x87\x6f\x68\x52\x22\x49\xdc\x3e\xf1\x6a\x2c\xdb\xa7\xa8\xd7\x68\xc0\x65\xd0\xd9\x71\x1e\xdb\xee\xf8\x84\x1c\xa6\xc0\xb3\xe9\xb7\x71\x0f\xd0\x01\xef\xb8\x02\xb0\x03\xfb\x25\x45\x6f\x57\x98\x4d\xe0\x28\x3b\x4e\xfa\xa1\xd5\xf1\x63\xc5\x8a\xfd\x08\x10\x1e\x9e\x4c\xd7\xf1\xab\xd8\xd5\x14\x65\x16\xbd\x2a\xeb\x17\x0f\x78\x1b\x21\x39\xdf\x34\x09\x85\xf6\xca\x51\x1c\x85\x51\xb1\x46\xdb\x8f\x88\x46\xfa\x96\xd1\xb4\x2a\x1d\xa5\xe9\xa3\x92\xe3\x5d\x65\x61\xe0\xfc\x0c\x9a\xea\x73\xb0\xbc\x47\xd2\xcc\x45\xef\x40\x17\xc0\xb7\xae\x86\xc3\xcf\xb7\x43\x13\x47\x4b\x69\x96\x44\xce\x74\x6d\xf3\x16\x41\xea\x10\x65\x5e\xd0\x83\x7c\x54\xe9\x99\x66\x51\x68\x77\x28\xb9\x50\xd1\x58\xe7\xbb\x60\x6b\xaa\x24\x31\xc2\xcd\x40\xd1\x8a\x3f\x99\x5a\x5a\x07\xe7\xdb\x9f\xff\x07\x5f\xfc\xd5\xc5\x1d\x55\x98\x44\xd3\xfc\x8d\xcf\x76\xb4\x15\xa8\x42\x10\xa0\xd0\x2d\xa3\x49\xcf\x22\x1e\xfe\x7b\x5c\x75\x20\x8e\xd3\xd5\x28\xe9\xcf\x7a\x6f\x97\xcf\xa3\x2a\x8f\x02\xc9\xde\x89\xef\xdd\xf0\x39\x83\xcc\xf1\x3c\xd6\xb0\x3f\x67\xfa\x99\xe9\x95\xc2\xbc\xc4\xf4\x7d\x5b\x89\x09\xbd\x5d\x17\xdb\x4c\x44\x59\x4a\xca\x96\x4a\x8d\xe4\xa8\x2b\x5e\xac\x1a\x6e\xe8\x8a\x5e\xf6\x11\x6c\x96\x02\xb3\x6c\x39\xd9\x98\x6f\xab\x96\x71\x97\xcc\x11\xf3\x19\x2f\x0f\x0c\xfe\x3b\xc2\xab\x1d\x1d\x6f\x6c\x70\xc2\x95\x59\x97\xa2\xa4\x6f\xb3\x51\x16\x31\x39\x15\x31\xda\xcf\x69\x34\xf9\x3a\x78\x52\xaf\x67\xea\x8b\x56\xf3\xdc\xdb\x0d\x7e\xac\xec\x06\x3f\x56\x35\xd4\xa4\xcc\xf2\x28\xe9\x2b\x58\xf9\x11\x25\x70\xc4\x02\x23\x02\x0e\xc6\xa8\x60\xcb\xbd\x1b\xe8\xc4\x7b\x4a\xc1\x64\xee\x70\x7b\xd5\x9a\x2a\x1e\xe9\x5a\x53\xd8\xa4\x06\x62\xf3\xa1\xee\x89\x26\x0a\x82\x7d\xc5\x86\x65\x75\x36\xcc\x2a\xf3\xea\x0b\x0a\x23\x8e\x47\x74\x36\xc0\xde\xab\xe3\x82\xea\xc4\x15\x99\x59\xb1\x59\x9e\xaa\xf0\x82\x6d\xf1\xf8\x66\xaa\xa5\x31\x77\xb8\xbd\x14\x47\xa3\x96\x4f\xba\xf0\xa8\x7c\xad\x0a\x0a\x83\x34\x91\xaa\x18\x83\xd1\x30\xfd\x04\x99\xb6\x47\x71\x6e\x8a\xc2\x32\x9f\x0a\xc9\xc8\x1b\xc0\x68\x8a\x01\x17\x45\x65\xda\x99\x8b\xff\x15\xe5\xc7\x78\x52\xd0\x8b\xf9\x5a\x9d\x03\xa3\x28\x5c\xb6\xbd\x9d\x7e\x1a\x70\xce\x85\x65\x8c\x78\xd1\x61\xe5\x1c\x11\xfa\x61\xea\xd2\x01\xfa\x71\x8d\xce\x04\xfc\xfb\x4f\xb4\xc1\x43\x09\x33\x83\xb9\xc3\x22\x60\x1a\x68\x31\xd3\x06\x3a\x78\x2f\xcd\x86\x26\x61\x69\x40\x67\x70\xe6\x94\x0b\xae\xa8\xe2\xd8\x8f\xa6\xaa\xb8\x72\xb0\x0f\xbc\x95\x08\x10\x91\x37\x03\xe5\x0f\x73\xb3\xb6\x4a\xf3\x02\x1e\x22\x50\x32\x38\x4e\xad\x22\xbe\x56\x22\x9d\x17\xfe\x1a\x23\x4f\x6a\xb4\x3a\x2b\xfd\xa7\x9f\x76\x71\x6d\xa3\xad\x69\x6f\x25\xca\xbd\xce\x98\x90\xdc\xd5\xe3\x9d\xd0\xc0\x90\x10\x26\x27\xaa\xa2\xb2\x59\x33\xe5\xbf\xa8\xed\x67\xf1\x8c\x62\xa9\x4d\xcf\xc8\x37\x28\x13\xb8\x06\x71\x35\xb6\xe2\x11\xff\x84\xe2\x5c\x64\xfd\x2a\xda\x75\xb6\x74\xef\x06\xde\x3e\xf4\x5d\x05\x58\x8e\x56\xd2\x6c\x0d\x24\x7f\x51\x6b\xf2\xd3\xe2\xac\xd6\xe0\x4c\x8b\xc1\x1e\x9a\x98\xd8\xc0\xae\x8c\x55\x61\xfd\x04\x0d\xb5\xec\xdc\x5a\xf1\xe0\x06\xa9\xb4\xe0\x07\x5e\x47\x69\x9c\x69\xd6\x34\x13\x70\x90\x3d\x0a\x26\x27\x10\xcf\x97\xd1\xc9\x43\xcb\xf0\x82\x76\x0d\x67\x37\x32\x54\xdf\xd8\x7c\x1f\x61\xc4\x29\xad\x5a\x02\x82\x09\x76\x08\x76\xc7\x41\xf4\x0e\xda\x0b\xca\x6e\xa7\x1b\x22\xf9\x05\xca\x8c\x71\x42\xe3\xb7\x9c\x53\xda\x39\xe7\x54\x45\x0a\x5a\xc0\xd8\x8a\x40\xf1\x39\xa1\x58\x2d\x7f\xaa\xaa\xb0\x7f\x4c\xab\x09\x89\xdd\x71\x85\x5b\x58\x35\xc9\x0e\xcd\xf0\x64\xa0\x32\xc2\xf5\x1b\xaa\xe4\x08\x31\x2b\x8c\xd9\x11\xad\x23\xf0\xb0\xe2\x8f\xe4\xd1\x70\x14\xdb\x19\x5f\x37\x41\xe1\xd9\x19\x09\x52\xa2\xd1\x50\xb5\xee\x97\x26\x33\x49\x61\x2d\xb3\xe1\x51\x12\x9f\x60\xcb\x00\x62\x8c\xf5\xbc\xc5\xd8\xcd\x67\x33\xd2\x3b\x00\xf8\x60\x13\x74\xae\xcd\xd3\x35\x0e\x6a\x94\x45\x45\xae\x88\x6a\xbf\x83\x03\x82\x6f\x1c\x67\xcc\x14\xff\x79\xb1\xd3\x23\x59\xcf\xab\x53\xec\x98\x32\x5e\x3c\xaf\x0b\x4b\xdb\x49\xca\x00\x07\xf0\xc9\x9a\xa4\xef\xbb\x0d\x9c\xff\xf6\xa0\xca\xad\x98\x83\x8e\xb7\x71\x44\x71\x7e\x81\x70\xc5\x32\xfa\xf1\xd4\x56\xf6\xf4\xd3\xed\xcc\x8e\x20\x7f\xeb\xf9\x6f\xd7\xf0\x5b\xf8\xc6\x25\x90\x71\x9a\x2e\x83\xfd\xe9\x88\x72\x2a\xe3\xe6\xd0\x09\x85\xae\x1d\x74\xca\x03\x65\xca\x68\x38\x5a\x77\x5f\xfe\x6c\xa7\xa6\x57\x9b\xe5\x8f\xa3\x60\x27\x42\x9e\xf4\x4f\x31\xc1\xef\x8d\x95\x91\xc8\xef\x07\x3e\xfa\x45\x4f\x5b\x29\xe1\xbc\xe0\x0c\xf9\x14\x10\x0e\x21\x09\x1a\x09\x3f\x45\x11\x0e\x15\xaa\x33\x58\x5e\x12\x4a\xd4\xce\x35\xa0\x52\x6e\x10\x5e\x54\x68\x67\xd5\x4e\x23\xa2\xa3\x9e\x56\x60\xf2\x34\x31\xdd\x18\x02\x2d\xc0\xaf\x1c\x51\x2a\xe0\x20\xea\xa2\x66\x73\x5b\x9b\x52\x13\xcd\xd5\x26\x82\x26\x03\xf6\xea\x5f\x2a\x5d\x9c\x7f\xd9\x00\x50\x5d\x68\x0f\x6d\x62\xe3\x98\xb7\x63\x57\xb1\xf7\xf1\xee\xd9\xa9\x6d\x9c\xc4\xa2\x47\x99\xcd\x73\x49\x01\xb0\x84\x7f\x3e\xf6\x84\xb5\x69\x4e\x09\x69\x2f\x47\x23\xcb\xd8\x3b\x56\xb1\x1f\xd7\x24\xed\x6b\x89\xed\x2b\x23\xa0\x57\x76\x54\xef\x04\xf1\xe5\xa7\x04\x19\x00\xc4\xeb\x36\x16\x9c\x33\x8d\x73\xda\x47\x75\xa9\xc2\xa6\x96\x6a\x92\x16\x75\x1f\xab\x77\x68\x94\x44\xfb\xd7\x77\xd5\xd6\xc4\x9c\x09\x71\xf2\x69\xd5\x54\x3c\xad\xf6\xa5\xc3\xcf\xb3\x23\x35\xb6\xaf\x0f\xc7\xbe\xb9\xf4\x61\xb0\x05\x99\x30\x77\xb8\xbd\xb8\x7f\x5f\xcb\x8b\x86\x8d\x3d\xea\xf4\x0e\x4a\x4b\xae\xc1\xe4\x29\x28\x9f\x82\x25\x80\x8a\xf0\x1d\x55\x9c\xfb\xc1\x58\x9b\x23\xa9\x52\xef\xf5\x40\xeb\x3d\xfd\x8f\xaa\x34\xfe\xaf\xb1\x14\x30\xf1\x4e\xe2\xac\xc0\x56\xd9\x9a\x28\xac\x06\xf3\x88\x70\x73\x0d\x33\x02\x3f\x9d\x55\x5f\xf0\x1a\xae\x02\xac\xc1\xe7\x4b\xa0\x6a\x1e\x97\x5d\x36\x2a\x31\xcd\x83\xc2\x98\x5a\xac\xd3\x94\x39\x12\x1c\x7a\x4b\x52\x07\x2a\x35\x5f\xeb\x6a\x5b\x99\xf5\xa3\xd0\xc4\xb3\x1a\xce\xa3\xc4\xcf\x7f\x8a\x79\x83\xd3\xed\xaa\xca\xf1\xff\xd5\x54\xf9\x8b\x7a\x6b\xa6\xa5\x70\xed\xc7\x78\x54\xf9\xce\x71\x8b\x96\x4a\xbb\x55\x42\xee\x93\xc0\x27\x66\x9f\xa8\x82\x15\x62\xb3\x15\xcb\x46\x45\xac\x90\x5b\x53\xcb\xf5\xf1\xf1\x92\xc9\xbb\xd4\x33\x77\x75\xe6\x03\x73\xbc\x7d\x30\xdc\x47\x18\x53\x4a\xcf\xeb\x67\x34\x3f\x30\x8b\xb6\x39\x96\xf6\x72\x9a\x59\xd3\xa7\xdc\xcd\xb1\xb0\x38\x61\xe4\x9b\xc0\xb3\x57\x38\xd5\x70\x88\x24\xac\x2f\xbe\x56\x4c\xba\xea\x4c\xcf\x73\xce\x30\x5e\xe6\x69\xf4\xba\x36\x46\x7b\x7d\xec\x0f\xd8\xff\x0d\x13\x87\x6f\x02\xff\x33\x87\xd6\x24\x3b\xbc\x1b\xe1\x75\x5a\xe6\x02\x33\xa2\xd7\x25\xa9\x03\xed\xb6\xac\x09\x14\xe8\xfc\xa2\x61\xda\x08\xf8\xd9\xb4\x94\xa2\xf3\x36\xc0\xee\xf8\x66\xf2\xa8\x03\x65\x26\x09\x2c\x47\x6a\xd0\x30\xbe\x69\x32\x0a\x1d\x99\x24\x0a\x67\x14\x37\x1b\x27\x30\x7e\xf5\x2d\x35\x39\x8f\x2b\xee\x4c\x66\x47\x16\x68\x16\xfa\x43\x8e\x56\x94\x11\xf4\xd1\xa6\x9c\xc0\xe4\x79\x39\x94\x1d\x4b\x8a\x93\xd5\x17\xf0\xb5\x0a\x1f\x86\xd1\xf2\xc0\x44\xf1\x4e\x9f\x93\xff\x44\x05\x06\x3f\xc3\xd2\x97\xd8\xac\x8a\x32\xf9\x3f\xd0\x23\x48\xfc\x46\x3f\x9d\xff\x5a\x6d\x73\x7f\xe7\x57\xfe\x5e\xcb\x27\x56\x77\xf4\x21\x7a\xc7\xad\x75\xa6\x57\xb3\x75\x3d\xc2\x8e\x4f\x55\x8d\xe2\x77\xc6\xb5\xe5\xe4\xc3\xc3\x74\x69\x29\x0a\xed\xa3\xda\x3b\xf5\x8c\xd6\x57\xc2\x7a\xc7\x2f\x7e\x53\x33\x0c\x7e\xa6\x51\x7c\xf7\x29\xa8\x46\xd4\x7f\x56\x39\x54\xfd\x11\x7e\x39\xfe\xe2\x18\xfd\x72\x01\x11\x50\xfa\x82\x29\x75\x8d\x84\x56\x59\x7c\x9c\x66\xf1\xe6\x34\xae\xfa\xe9\xa7\xdb\x4b\x99\x45\xe0\x88\xd8\x0f\x27\x0e\xbe\x68\x83\x96\x28\xea\x03\xd3\x4c\xad\x83\xf3\xed\x35\xeb\xcc\xe2\xb1\x6d\xff\x46\xa0\xe4\x51\x7e\xa3\x29\x0e\x23\xf0\x08\xc7\x51\x78\x2d\x33\x9a\x79\x33\x33\xd9\x1a\xa5\xd2\x09\xbd\x14\x25\x91\x83\x12\x20\xa6\xb9\xa5\x94\x6d\xa6\x39\x24\x73\x87\xdb\xf6\x15\x3b\x1c\xc5\x06\x54\x08\x96\xc6\xa5\x71\x17\x99\x5c\xa5\x37\x3b\xb4\xd5\xe7\xcb\x79\x8e\xd0\x08\xd2\x73\x7c\x3d\xd5\x5b\x59\xdc\xdf\xee\x45\x71\xe9\xa0\x0a\x4e\x63\xc5\xd5\x5c\x8f\xe8\x09\xfa\xdd\xa6\x45\x4d\xc2\x40\xf9\xc0\x66\x33\x08\xef\xb4\x2e\xb4\xcc\x45\x55\xcd\x9a\xfa\x91\x8b\xfb\xdb\xa6\xf7\x8d\x32\x2f\x2c\x7e\xa4\xf8\xca\x78\x37\x2e\x8d\x39\x31\xc3\x2a\x10\xa3\x81\xc7\x0c\x01\x5f\xde\x59\x53\x57\x2f\x01\x85\xfc\xbb\x53\x01\xcf\x57\xe6\xda\x03\x93\xf5\xe2\x35\xea\x17\xf0\xf4\xa4\xcc\x46\xa6\xea\x56\x8c\xd1\xdc\xe1\xf6\x52\x99\xf4\xaa\x91\x2d\x4c\x1c\xe5\x85\x64\xc9\x8d\x76\x7e\x0d\x6c\x23\x62\x95\x73\xdb\xc8\x61\xfe\x3c\xaf\xf2\x78\xb0\x4f\xf9\x59\x0c\x47\xc4\xad\x6c\x69\x42\x4c\xcb\xd9\xda\x36\x2a\x2f\x87\xe9\x70\x58\x26\x51\x0e\xe1\x60\x39\x04\x6b\x0b\x5a\xb1\xc4\x89\x7d\x03\x6c\x25\x33\xbc\xe8\xf3\x85\xed\xd5\x30\x3b\x4c\x1c\xa7\xab\xb6\x47\x91\xaf\xab\xeb\x54\x33\x05\x81\xc7\x0d\x5d\x63\xfe\xc4\x67\x42\xd9\x30\xdf\xad\xe0\x98\x4f\x75\x94\xfe\xf3\xcf\x6b\xb6\xa6\xf4\xf7\x52\x8d\xd4\xad\x8e\xea\xf0\x71\x6d\x8f\xea\x75\xa3\x04\x72\x85\x4e\x22\xb6\xdc\x69\xe2\x5d\xe6\xab\x69\xa6\xad\xbb\x2e\x28\xe1\x02\xa6\x72\x63\x33\x62\xfb\x02\x44\x85\x37\xa6\xe0\x17\x5f\xff\x7a\xdb\xae\xd9\x7e\x6c\x04\x99\x2e\xaa\x5f\x1f\x8d\x55\x1b\xe8\x23\x55\x5b\x08\xd9\x59\x55\x7c\x2d\xd1\x22\xe2\xeb\x07\x5a\x05\xbc\x12\xff\xc3\xbf\xdb\x33\x85\xa9\x5e\xbf\x12\x8a\x3e\xa9\x4b\xb3\x27\x9b\x25\xc1\x43\x43\x12\x2f\xfe\x0c\x5a\x57\x67\xd0\xba\xe2\x37\xe7\x51\x3f\x31\x31\x73\x74\x70\x3e\xdf\x53\xe6\xe6\x27\xc6\x2a\x8a\xbb\xd2\xc4\xbd\x1d\x96\xe1\xa0\xe5\x63\xdc\x0f\xd4\xce\xff\xc1\x78\x8b\x79\x1f\xe1\xf2\x9e\x7e\x9a\xba\xd2\xc2\xfd\x50\x45\x8e\xef\x8d\xd5\x4e\xfb\x3d\x1a\x22\xfe\x57\x53\xaf\x00\x76\x55\x8c\xbf\x9a\xf1\x20\x91\x1b\x4a\xa2\xfa\x28\x82\x47\xc4\xe1\xe7\x5c\xf8\x67\xfa\x36\xe9\x19\xde\xd5\x31\x73\x70\x26\xf0\xf5\xa4\xe6\x7f\x30\xb0\x19\x49\x8a\x3b\x83\xb5\x03\x07\x24\x1a\xc7\xc7\x63\x2f\xbc\x55\x33\xd2\xac\x26\x28\x0a\xb5\xa7\x15\x9a\x1b\x7d\x6d\x9c\x42\xbf\xa7\x24\x14\xc2\x34\x89\xf2\x02\x3a\xfa\x0b\x9b\xe7\x91\xea\x6f\xea\x02\xc7\x59\x65\xd9\x78\x76\xea\x25\x1c\x7e\xbe\x3d\x88\xd8\x6f\x90\x59\xc7\xaa\x0e\x7f\xb4\x09\xfe\x17\xdb\xa4\x5f\x0c\x10\x10\x89\xda\x53\xf5\x27\xce\x56\xc7\x71\x0d\x3c\x37\x2e\x34\x25\x9a\x75\x2a\x94\x65\xc0\x0a\xdf\x28\x8d\xa8\xcc\xc4\x71\x64\x7b\xbb\xd4\x4c\xbd\xa6\x78\x74\x1f\x07\x0a\xd9\x7f\x0a\x81\xa2\xa8\x98\xb6\x9c\xf3\xd8\xc7\x34\x90\xa2\x4e\xa7\x2a\xef\xdb\x3a\xde\x8c\xe7\xe9\xde\x4e\x05\x1d\x67\x38\x8d\xa8\x5f\x2a\x55\xaa\x13\xb5\xc3\xc0\xc3\x05\x36\x28\x8c\x90\xe2\x85\x2e\x4b\xac\xda\xde\x13\xd8\xd2\xb9\xf8\xa0\x61\x1e\x6c\x8f\xc9\x72\x92\x93\xda\x41\x53\xfd\x1a\x0c\xfe\x43\xa0\x4d\x3a\x4f\x28\x97\x47\xed\xeb\xf8\x32\xee\x2d\xfa\x99\xd8\x35\xa9\xa5\xe7\x35\x24\xbc\x8a\xcd\x45\x50\x64\x00\xd9\x7d\x77\xac\xb4\x26\xa1\xcf\x57\x6b\x5c\x49\xaf\x6a\x6b\x8e\xf4\xd5\x2f\xb7\xe3\xb4\x50\x9b\x3c\x8e\x52\x91\x30\xdf\xa7\x1a\xf5\x65\x52\x64\x91\xcd\x1f\xa5\x54\x16\xdd\xdb\x7f\x8f\xb2\x3d\x0b\xe4\x06\xe4\xde\x29\xbe\x37\x5e\xf3\x7e\x5d\x69\xfc\xdc\xe1\xb2\x15\xc0\x25\xf7\x03\x8f\xf6\xfe\x40\x97\x7f\xcf\xe2\x3d\xa1\x15\xc6\x35\x30\x27\xda\x59\xe5\xd5\xa8\x05\x7f\x27\x68\x29\x17\xcd\x69\xb9\xa9\x85\xb6\xb1\x59\xda\xa5\x82\x9d\x17\x71\xfe\xb1\x12\x23\xf9\x71\x43\xd7\xb2\x4d\xa5\x18\x72\x64\x44\x35\x0b\xfa\xa7\xc2\xb3\xf0\x80\x3a\x66\x6c\x3b\x1f\x19\x4d\x9b\x6d\x2a\x9e\x03\x4e\x65\x73\xda\x9d\x9c\x4c\x9a\xf7\x78\xbe\xaf\x35\x2c\x2e\x3d\x50\x0d\x3f\x2f\x7b\x3d\x9b\x40\x77\x6b\x13\x1e\xb9\x9b\xd3\xb5\xdd\xb9\xc3\xed\x7c\x60\x96\x81\xe8\x6d\x82\x21\xe8\xa5\x19\x25\xdd\x74\xb5\xe5\xe9\xf7\x1c\x15\xf0\x8d\x43\x20\x9b\xa5\xc2\x66\x43\x53\x0c\x34\xe0\x77\x43\x4d\xe2\x0d\xed\x5d\xdf\x37\x08\xbd\x1c\xdc\xf7\xc5\xfd\xae\x48\xe3\xdf\xc0\x55\x87\x30\xac\x0e\xb6\x87\x7c\xb0\x75\x07\x53\x5a\xd4\xa3\x3d\x83\xee\x09\x72\xe6\x70\xaf\xa0\x7a\x12\x94\x37\x7f\x91\x79\x2c\x68\x1c\x3e\x3c\x2d\x89\x87\x96\xdd\x69\xfc\x38\x09\x31\x9b\x10\x1c\x66\xc5\x66\x89\xaa\xc3\xfd\xae\xaa\xc3\xfd\xae\x92\x89\x20\xea\x14\xb6\x3f\x67\x7a\xe3\x77\xd0\x93\xde\xd8\xd5\xe4\x45\x6c\xe3\x68\xd9\xaa\x41\xbe\x4e\xaf\x83\xaf\xeb\x5a\x0a\x45\xc1\xa1\xa3\x78\x18\xd2\x13\xf3\x4d\xbd\xff\x53\x46\x2d\x2f\xf1\x76\x8c\x36\x0e\xbe\x76\xbc\x8f\x70\x60\xa8\x13\x9a\x45\xaf\x6e\x89\x4e\xb0\xe9\x4a\xa8\xd2\xc0\x6d\x8a\xd3\xb4\x68\x29\x0a\x30\xb2\x64\xf1\x24\x52\xe9\x84\xd8\xa9\xec\xa8\x33\x59\x16\xf7\xfb\x1a\x8e\x37\x17\x52\x91\xc7\xb7\x03\x05\x96\xbc\xad\xb4\xc7\xfa\x69\xf5\x0e\xaa\x58\x7a\xaf\x6e\xae\x6c\x8e\x3d\xb9\xee\x82\x92\xad\xd8\xc4\x4b\xa5\x1d\x77\x7e\xdf\x04\xd9\x05\x4e\xdf\x16\x1a\x22\x28\xd2\xbd\x8f\x9f\x8c\x97\x7f\x8f\x76\x29\xd1\x6e\xad\xa6\x1e\x8a\x1b\xad\x0e\x15\xcf\xd8\x1d\x9b\xc6\x54\xc5\xe3\xcf\xf1\xee\x73\x27\x50\x55\x1b\x74\xf9\xa8\x0a\xf0\xdf\xb7\x3b\x3e\xbe\x66\xc9\x5c\x4c\xc9\xab\x14\x8f\x02\x60\x53\x77\x6d\x37\xd9\xf0\xa1\xea\x87\x39\x63\x7f\x97\x67\xb0\x01\x80\x24\x65\x74\x94\x20\xb8\x3e\xa3\x50\x62\x3b\x27\xf4\x60\xd8\x4a\xb7\x4d\x7c\x0b\xe7\x09\x8d\xd8\x7e\x93\xbe\x9f\xff\x5a\x61\x5f\xcc\x68\x14\xaf\x91\xeb\xf0\x8b\xd2\x30\xbb\xaa\x14\x37\x41\x94\x13\x24\x8b\x3e\x10\x9f\x8e\xe3\x96\x0f\xb1\xcf\x52\xfd\x9d\xaf\x55\x4d\xaf\x1f\xa5\x2b\x26\x49\xa2\x1d\xd5\x2f\x04\x34\x61\x27\x88\x7c\xe2\x72\xab\xe9\xb9\x63\xaf\x9d\xcf\xf9\x24\xfb\x95\xa9\x66\x54\x94\x67\xc6\xc6\xbb\x54\x25\xf4\x2c\xc5\x61\x48\x14\x78\xcc\x9d\x37\x4c\x75\x60\x60\x60\xdf\x1a\x7b\xf1\xc9\xab\x81\xdf\x46\xb8\xcd\x26\x54\xe6\x29\x6f\xaf\xc5\xfd\xed\x61\x9a\x17\xa8\x26\xe3\x8c\x7e\x0b\x02\x77\x7c\xa3\x50\x25\x2b\x26\x81\xb5\xa9\x6a\xbd\x8a\xd8\xf0\x2d\xed\x4b\x79\xd4\x41\x3c\xaa\xac\x3d\x5d\xb3\x19\x7b\x5f\x89\xcc\x17\xe6\x3d\x42\x85\xbf\xd2\x1b\xdd\x79\x4d\x0f\xfc\xe3\x29\x05\x02\xb2\x9c\x4e\x7a\xf6\xd5\x95\xb4\xcc\xd9\x8f\xcf\x85\x22\xd5\xf7\x0b\x78\xb0\x21\x0e\x2c\x06\x76\x68\x59\x36\x91\xdb\x2d\x81\xdf\xac\xf1\x72\xc4\x8d\xc9\x73\xa7\xab\xbc\x37\x7f\xc4\xe3\x53\x7e\xfb\x35\x8c\xba\x60\xb6\xe9\x7d\xa0\x05\xf6\xae\xea\x0e\x1e\xa1\xa5\x85\x89\x75\x9d\xa2\x04\xed\xc6\x83\xd5\x7b\x47\xa9\xa9\x5f\xc5\xf0\x21\x85\x7e\x0b\xe5\x76\xfe\x0a\x2c\x6b\xd0\x1f\x4f\x6d\xb5\x08\xa7\x2c\xe3\xc0\x81\xdd\x0a\xc3\xf3\x7d\x0a\xf2\xf0\x18\x28\x61\x20\xc9\xd8\xde\x51\xc4\x90\x8b\xba\xc7\xca\x35\x45\x90\xe5\xd9\xb5\xc4\x59\x9b\x3b\x50\xc9\x0d\xad\x36\x51\x98\x65\xfb\xb0\x4a\x97\xa0\xb1\x87\xf0\xf5\x1c\x3d\x80\xb8\x8b\xa9\x06\x2c\xb2\x59\x80\x34\x2f\x2a\x81\xd4\x13\x0a\xc8\xb0\x0d\x54\x62\x16\xdc\x08\x94\x2a\xf7\x6b\x63\xcf\x94\xbc\xa4\x20\x8d\x65\x12\xbd\x82\xfa\x76\x13\xe7\xa9\x81\xff\x92\x17\x65\x2f\x72\x8e\x06\x18\xb4\x13\x81\x52\x23\x38\x31\xd6\x4e\x19\xd4\x1a\xf2\x1a\x4e\x67\xc6\x5e\xf3\xe9\x8c\x3b\xe1\x47\x26\x64\xa5\x30\x4e\xd6\xe9\x21\x24\x71\x6f\x64\xf0\x67\x26\x8a\xb3\xd4\x30\x88\x47\x30\xf5\x2d\xa7\xf5\x76\x51\x41\x5d\x56\xa2\x7e\x9a\xa5\x25\x48\xe7\xf8\xd4\x53\x88\xaf\xb0\xcf\xb0\x2a\x82\xe0\x5f\x6b\x8a\xbb\xd5\x70\x4a\x6a\xa9\x3c\x2b\x2f\x8f\x6b\xfa\xc2\x49\x8f\xe0\xb7\x22\xb9\x78\x4b\x71\x66\xa6\xfd\x09\x0f\xcc\xb5\x4d\x3f\xe3\x46\xb3\x24\x14\x38\xf4\xa5\x22\x54\x0d\x92\x54\x1e\xf4\x71\xb0\x92\x66\x48\xd5\x85\xd5\xda\x72\xee\x45\x5a\x09\x20\x4c\xb3\x59\xda\x92\x5c\x81\xc4\x0f\xd2\x39\x85\xcd\xe3\x9a\xb0\x28\x7c\x3d\xc8\xc5\xd1\xc4\x69\xd2\xcf\xa3\x9e\x85\xce\x17\x66\xfa\xa7\x34\x4e\xae\x36\x77\x70\x9e\x4f\xbf\xab\x53\x21\xae\x8b\x4f\x07\xe9\xa8\xae\x8e\x56\x7d\xb9\xa8\xa3\x6d\xdd\x5b\x0f\x1c\x68\x93\x5b\xdf\x6c\x4b\x89\xea\x57\xb3\x1e\x5f\xf3\xa7\x58\x1a\xc8\x91\x4f\xd7\x65\xf8\xfd\x01\x86\xea\x06\xa4\x4d\x9d\x07\xb0\x5a\x2f\x27\xd5\x0a\xdd\x98\xda\xf6\x9e\x69\xf7\x74\x3b\x94\x51\x83\x81\x5a\x62\xd3\xf8\x59\x74\x51\x8b\x67\x5b\xb5\x21\xa7\x5f\xca\x37\x53\xf9\x88\x8c\x4f\xb5\x59\xb6\x7c\x8f\x71\x83\x06\x95\xaf\xa7\x0a\x9e\xe4\xd6\x3c\x22\x82\x98\xf6\x0d\x65\x27\x65\x51\x28\xdf\x62\x32\xb1\xb8\xbf\xfd\xe2\xfe\xb9\xa7\x68\x0b\xc6\xb6\xf6\x38\x21\xea\x90\x9c\xcc\x90\x78\x20\xa6\xe0\x06\x4a\xf1\xc2\x9e\xf0\x8e\x07\x0f\x4d\x7c\x4f\xf5\x89\x8e\xea\x08\x5d\x42\xce\xc7\x7a\x90\xa4\x93\x8e\x8a\xfb\xb5\xb1\xd2\x55\x7f\xa2\xe3\xfd\xfc\xe1\x51\x8b\x70\x68\xd7\x44\x03\xc4\x02\x5f\xbc\xbc\x3c\x56\xa8\x76\x65\x33\xb0\xfd\x6f\x20\x52\x40\x44\xfd\x38\xb4\xac\x1c\x33\xbf\x1a\x03\xfa\x93\xd5\x7d\x13\xc2\xea\x32\x1c\x42\xf5\xc2\x06\x36\x8c\xa1\xa9\x8f\xfa\x0b\x67\x93\x7c\xa3\x4a\xaa\x36\x87\x2d\x45\x6f\x97\x6f\xe9\xfe\x05\xf6\x02\xd7\xc5\xad\x9e\x44\x54\x79\xab\x1f\x08\xfa\xcc\x15\x5a\xc7\x7c\x1d\xd4\x25\x04\x3d\xa1\xb8\xc9\xb5\x99\x70\xa2\x33\xd5\xeb\x40\x40\xfa\x04\x15\x01\x50\x29\xe0\xa1\x12\xcd\x1f\x69\x75\xd9\x84\x84\x90\x9d\xa4\x29\x84\xbb\xc5\xd3\x58\x12\x0e\x82\x7b\x26\xd6\x14\x03\x6a\x74\xe0\x0d\x41\x2a\x15\x55\xd6\x9f\xd2\x33\x23\x41\xdf\x54\xec\x0b\x53\xc4\x26\x29\x58\x9f\xd9\x21\xa9\x17\xf7\x3b\x24\xf5\x67\x14\xc1\x3a\x1c\x98\xa4\x6f\x4d\x37\xb6\x14\x05\x0a\xc5\x45\x01\xcf\xb5\xff\x65\x1c\x11\x39\xb9\xfa\x5e\xbc\xc0\x2b\x4a\xe6\xe5\xca\x14\xd3\xce\x99\xbf\x65\x69\x19\x0e\x18\x86\x57\x2b\x6a\x34\x09\x63\x8d\xe2\xb4\xe5\xe1\x33\xdf\x52\x1c\xf5\x6f\x29\x60\xda\x52\x96\xd2\xb3\x68\x47\xff\xcd\x40\x35\xc9\x37\x6b\xdb\x71\x64\xbb\xd8\x12\x1d\x81\xdd\xb5\x49\x3e\xa8\xf7\xe4\x1a\xa4\x76\xf3\x32\xeb\x93\x45\xbf\x93\xf7\xd7\xca\x92\x17\x5d\x8e\x18\x25\xbd\x28\x34\x5e\xc4\x15\x33\x1e\x94\x31\xbe\x6e\x74\xf6\xc8\xca\xea\x50\xd2\x5c\xa0\x73\xba\xfb\x79\x4e\x63\x41\x07\x65\x96\xf7\xcc\xda\x6e\xaf\xfd\x70\x83\x16\xa7\xf3\x3e\xf2\x94\x1c\x0a\x95\x37\xd1\x72\x92\xe6\x89\xa2\xc1\xff\xba\xa6\x79\xff\x7a\xa0\xb0\x01\x6a\x98\x87\xfd\xe1\x3f\xfc\xbb\xa5\xe1\x87\xc3\xb4\xde\xd0\x16\x55\x1b\xae\x0b\x10\x47\x23\x2e\xd2\x20\x4a\x04\x0c\x8d\xaf\x55\x4b\x7d\x35\xb5\x79\xb5\x60\x36\x5b\x9c\xec\x73\xb3\x49\x53\xa6\xb7\x4f\x1a\xe8\xd8\x69\xb7\x30\x51\x62\x7b\x33\x4e\x4a\xef\x61\x9e\x46\xe8\x5a\xdf\xc1\x7e\x2f\xf6\xfa\x0d\xc6\xcf\x65\x52\xa5\xfb\xa2\x44\x89\x7f\x78\x47\x39\xfc\xde\x51\x5c\x86\x5e\x94\xa7\x5d\x0b\xb3\xb1\x19\x12\x10\x91\x23\xda\xf3\x2c\xaf\xea\xce\xe1\x8f\x15\xcd\xc7\xe4\xb9\xcd\xd8\x2c\x14\x2d\x58\x06\xda\xf0\x8d\xc3\x5e\xd3\xf6\xb1\xbb\x06\x2d\xf7\xf2\xdf\xbf\xbe\x87\x55\x69\x50\x21\x85\x6b\x28\xf6\x89\x3d\xb4\x67\x20\xac\xdd\x89\x50\xd2\xd9\x3b\x1c\x98\x03\x54\xeb\xe3\x67\x69\x0b\x47\x0e\x70\xbf\x01\x3a\xf8\x72\x3b\x4c\xd3\x18\x87\x92\x23\x79\x38\x72\xd9\xf9\x06\x35\x84\x85\x76\x37\x4b\x97\xa9\x5e\x32\xe7\x80\x46\x74\x48\x09\x02\xe9\x29\xb5\xb9\xd8\x2c\x8c\x72\xda\x5b\xe8\x9f\x88\x86\x7d\xcb\x69\x7d\x5c\x54\xf8\xed\x1e\x91\xb5\x0b\xed\x69\xfb\x91\xf2\xb4\xfd\xa8\x69\x61\x66\x56\xe9\x38\x3a\xe8\x82\x63\x13\x5d\x77\x0a\x5b\x79\x5c\xf6\xfb\x51\x3e\x98\xf5\x8c\xc9\xc7\x3a\x5b\xe1\x65\x52\xaf\x45\xf2\x2d\xea\x48\x1e\x6b\xd1\xb3\xb4\xbc\x05\x8e\x2e\x7d\x17\xc5\x58\x5a\x9f\x8a\x80\xe7\x0e\xb7\xcb\xd1\x20\x8d\xf3\xc2\xb2\xf8\x3d\xd7\x8d\x69\xbd\x49\x0d\xd9\xd7\x4c\x96\x32\xfb\xcd\xd2\x26\x45\x15\x08\x55\x87\x34\x6a\x67\xc0\x4d\x63\x9b\xe5\x6c\x58\x72\x4a\xbf\x39\x17\x76\x90\xb1\xf8\x20\x7e\xc7\x7b\x81\xaf\x41\xbf\xa7\xa2\x60\xe4\xaa\xc8\x70\x05\xc7\x57\xfd\x15\x02\xa5\x9a\xd3\x83\x0e\xd0\xaa\x10\x66\x0b\x4d\x1d\xf8\x51\xbe\x6e\xac\xde\x8e\xca\x2c\x2f\xdd\x86\x28\x38\x17\x0d\x80\x91\xed\x23\x2f\x6d\x4f\xab\x6c\x5e\xd4\x65\x17\x70\xc4\xc4\x1f\x4c\x6b\x79\xa8\x52\x5e\x61\xe2\xe5\x1c\xfe\x43\x08\xe8\xa1\x66\x8f\x60\x0e\xf2\x40\xf8\xa3\x6d\x54\xda\x47\x71\x61\x43\x39\x38\xae\x2b\x89\x17\x0e\x4d\x44\xad\xe0\xb3\x6a\xf4\xba\x26\xcb\x4c\x9e\x0f\xa9\xff\x57\x85\x2c\x4d\x7e\xca\x2a\xe9\x88\xa3\xd1\xc8\x82\xb8\xee\x98\x96\x4e\xd1\x63\x06\x31\x02\x42\xb6\x9b\x94\x41\x4b\x21\x50\x9f\x5f\x99\x59\x7b\x48\x93\xce\x55\x95\x90\xfd\x09\x5c\x65\xb4\x7a\x6c\x4c\xde\x9a\x04\x2b\x36\x06\x4e\xaf\xe9\x7d\xa3\x8a\x74\x15\xf1\x23\xff\xb9\xda\x0c\xdf\x55\x8b\x33\xb3\x45\x99\x25\x90\xf9\x76\x1c\xa8\xc5\xfd\x7c\x60\xcc\x00\x09\xcd\xf6\x75\x8d\x62\x1f\xe1\xc0\x86\xcb\x2d\x27\x6f\x7a\xe2\xb7\xb0\x6c\xf8\x46\x85\x24\xd5\xfc\x8f\x32\xcb\xd2\x63\x6e\x34\x2e\x2b\xe7\xf6\x87\x3a\x0a\x8e\x7a\x02\xcb\x01\xf3\x98\x6b\x08\x5c\x27\x54\xde\x47\xbb\x26\x0f\xf3\xc3\x24\x19\xb3\xda\xc4\x18\xb6\x75\xe8\xd0\xe6\x71\x4d\xbd\xb8\xad\x8a\xa2\x5d\x13\x17\xd1\x30\xcd\xac\xce\x79\x2f\x73\x59\x87\xef\x54\x4b\x78\x35\x8a\xe3\x5f\x54\x8a\xfa\x3b\x69\xa2\x21\xcc\xb8\x4b\xe5\x2d\x34\xb1\xde\x09\x50\xdd\xe4\xdc\x15\xe7\x16\x60\x0c\x50\x72\x46\x11\xe5\x3d\x20\x00\x5d\x86\x5b\xed\x8c\x4c\x7b\xa3\x97\xb6\x79\x89\x42\x6e\x24\x1e\x68\xc5\xb1\xcb\x09\xa6\x04\xe2\x83\x4d\x70\xe0\x10\xee\x9f\x25\x91\x56\x81\xba\x54\x93\x08\x25\xe9\x8f\xc7\x5a\x1a\xe5\x0c\xd0\x8e\xae\xf2\x5e\x8d\x30\x32\x81\xab\xba\x10\x74\x0c\xe1\x34\xf6\xa5\x0d\xa5\x75\x77\x8c\x26\x07\x7e\x04\x93\xff\x84\x0b\x4a\x25\x37\xce\x3f\x51\xfe\x41\x90\xb3\xb3\x23\x7b\xf5\x37\xec\xaa\x8d\x3d\x41\x01\xcb\x91\xeb\xe7\x7c\xd3\x20\x9f\xff\x5c\x7b\x10\xf5\x07\x00\x4b\xcf\xbb\xf5\x4c\x5f\x80\xe3\xec\xcf\x70\x4e\x21\x4f\x3a\xed\x1a\x22\x89\x49\x8a\x32\x5c\xb6\xe8\xa0\xb1\xcd\x08\xa6\x83\x78\x8e\x78\x7b\xfb\x24\x1f\x45\x99\x6d\xa9\x49\x06\xfc\x22\x5f\x37\xf0\x55\xc9\xef\x81\xe6\xbd\x04\x2c\x2a\xad\x56\x91\x75\xba\x9a\x44\x09\x8c\xae\x45\xdb\xa8\x5a\xae\x52\x26\xa6\x79\x20\x55\x5f\x3f\xad\xa1\x4a\x2d\x02\x4e\xf4\xd0\xcc\xe0\x52\x62\xd7\xb7\xbd\x1b\x40\x1a\x7b\x90\x24\xba\x79\x37\x69\xd6\xf0\xb5\x76\x15\xce\xd2\x9c\x8f\x6d\x36\x2c\x0d\x94\x6e\xe4\x95\xb1\x92\xae\x34\x55\x68\xbf\x43\x8b\x60\x54\x3f\x57\x50\xe4\x34\xb5\x91\xaa\x5d\xd1\x45\xdd\xed\x1d\x5f\x20\xbc\x10\xf8\xd6\x6f\x14\xb5\xfc\xc9\xb8\x03\x9b\x23\xdf\x28\x51\xf2\xd0\xc4\x71\xbe\x0b\x13\x04\xcb\x63\x14\x28\xe8\xe7\x45\xa5\x07\xc6\x76\xa0\x08\xbc\x4e\xa8\xc1\xe3\x30\x96\xff\x9c\x1e\x9a\xff\xc2\xb7\x5d\xd2\xe1\xc8\x64\xa6\x88\x56\xa8\x32\x51\xad\x29\x2d\x6f\x09\xd6\xcb\x5d\x05\x35\x3c\x3f\xde\x92\xc7\x1f\x3a\x54\xc5\x59\x4f\x55\x1f\x8e\x2a\x11\xb4\x38\x65\x1e\xe3\x17\xa0\x33\xf1\xaf\x09\x14\x87\xe0\xe4\xf7\x30\x73\x15\x79\x46\x46\xf7\x1e\x2d\x60\x4c\x85\x13\xaa\x79\x7a\x1b\xdb\x83\xc0\xcc\xea\x38\xd8\x45\x49\x25\xfe\x29\x3d\x37\xfe\xd1\xee\x8e\xc7\x25\x6e\x9f\xd0\xba\x94\xa6\x97\x4f\x86\x67\x3a\xb4\x13\x20\x34\xb8\x8d\x9d\x00\x87\xcb\x6f\x8f\x5b\x2f\x2d\x38\xe6\x30\x8d\x0d\xfa\x3b\xa7\x35\x97\xe8\xd3\x29\xc9\xa8\x2a\x2a\xc8\x47\x36\xd4\x12\xdc\xa8\x4b\xf0\x3e\xc8\x37\x0f\xe4\x56\x95\x09\x4a\xe2\x8e\x34\x70\x03\xe3\xc3\x37\x8d\x02\x42\x26\x1c\x44\x76\x45\xbe\xce\x49\x0c\xfb\xd6\xc4\x05\x27\x45\x1c\xc6\x36\x5b\x66\x4c\x9d\xc8\xcd\x2b\xce\xc4\x59\x55\x98\x18\x46\xe4\x0e\xe5\x16\xd0\x3d\x1a\x5d\x6c\xb4\x1f\x6b\xd7\x79\x2c\x09\x6c\xc7\x33\x6e\xa3\x2b\x32\x13\x79\xc5\x39\x3c\xfe\x8e\x89\x4f\x4c\x3f\xdb\xf1\x71\xd2\x4e\x85\x60\x09\x07\x65\xdf\x44\x2d\xef\xd3\xb4\xae\x66\xe3\x7a\x03\x76\x68\xae\x6d\xba\xb9\x18\x82\x62\xb2\xfd\x23\x85\xff\xfe\x47\x2a\xca\xcb\x6c\x35\x54\xd5\x33\xcd\x3b\xbf\xf4\x3d\x93\xed\x5f\xe0\x22\xc6\x2d\x25\xf8\x3f\xeb\x7e\xc8\xc0\x8c\x46\x36\x11\x50\x21\xa2\x07\xa8\x96\xa1\x6a\xb1\x7d\xe2\xf5\x8f\x76\xec\xe9\x34\xc0\x1e\x57\x07\xe9\x68\xe4\x86\x02\xe7\x0e\x24\x2c\x71\x4d\xfd\xfb\xcd\xf7\xc6\x3e\x11\x1e\xc5\xd6\xe4\x65\x06\x14\x28\x0a\x50\xef\xd6\xb4\x86\xd4\x5c\x3a\xee\x76\xfb\x5e\x9a\x24\x36\x8e\x2d\x42\x71\x54\x53\x3f\x1e\xab\xd2\xea\xc7\x4d\x0e\xb1\xa3\x28\x34\x39\xf3\x2f\x1d\xd4\xa1\xfa\x1b\xbe\x99\x12\xd8\xa8\x8e\xa3\x7c\x14\x15\x45\xcc\xde\xd3\xd2\x6f\xf1\x7d\x98\x7b\xb4\x43\xb3\x7b\x88\xea\x8b\x15\xe9\xaa\x8d\x73\x05\xef\xbb\xa8\xe1\x7d\x17\x15\xb5\xb1\x30\xa5\x88\xb5\xb0\x95\x90\xb2\x5b\x3f\x3d\x96\x80\x67\x94\x19\xbc\x4c\xc4\x6a\x37\x18\x40\x8f\x3c\xfb\x28\xed\x39\x62\x76\xec\xa7\x01\xf1\x6e\xd3\x0c\x24\x7e\x99\x58\x9a\xe8\xd7\x60\x6d\x54\x64\x11\x87\x78\x18\x4a\x70\x3a\xf8\xba\x89\x1d\xeb\x75\xe3\xfc\x46\x74\x07\x25\x48\xbe\x51\xee\x57\x03\x1b\x47\x61\x3a\x22\xf5\x5a\x3d\xdb\xd5\x03\xaa\x5c\xe8\xd5\xd4\x2b\x6a\x49\x97\xa1\xda\x05\xa5\xfb\xb0\xf5\xa0\x5e\xdc\xdf\xce\xcb\x70\x80\x70\x1e\x0d\xc5\xf7\x14\x4c\xe4\xbd\x26\x1f\x6e\xfb\xca\xc8\x90\xbb\x2a\xcd\x7a\xec\xaf\x7f\x4a\xb3\x9e\xaf\x6b\xed\xe1\x9e\x29\xb4\xbc\x39\x7d\xb8\xec\x43\x0d\x83\x19\xc6\x69\x89\xb6\x9f\x94\xc8\x6a\x3a\x4b\xba\x5e\xd6\x4b\x87\x8f\x78\xb4\x30\xc3\xeb\xc1\x14\xb8\x8a\xde\x89\x03\x48\xb9\xf2\xdb\xbb\x81\xdf\x90\xae\xd1\x1c\x70\x2a\x07\x07\x0e\xc8\xbf\x19\x2b\x59\xc6\x33\x4a\x09\x73\x67\xc7\xb7\xb7\x6e\x62\x6f\x94\x43\xd4\x57\x21\xe3\x34\x34\x10\x05\x59\x94\x2f\xc2\xe6\xc1\xd7\x4a\x05\x6d\x94\xc6\x6b\xa3\x2c\x1d\xad\xc5\x36\x61\x28\x86\x8a\xc3\xbc\xf7\x9b\xe2\x9e\xc7\x29\x1d\x1e\xbe\x06\x52\xcf\x29\xb5\x3d\x51\x96\xa6\x40\xcb\x62\x27\xd9\x18\x2b\xef\xb2\x8d\x29\xe6\xf4\xc1\xf9\x76\x9a\xc4\x6b\xb3\x34\x11\x10\xa6\x71\x7e\xc5\x04\x35\xe5\x09\x72\x23\xf0\xf6\xe7\x6f\x07\x4a\x87\xc2\x0c\x47\x96\xcd\x03\x9e\xab\x51\x1b\xf9\x7a\x6a\x31\x1c\x98\x6b\xe7\x21\xf1\xab\xeb\xd3\xe9\x98\x9a\x4e\xd3\x2e\x56\x73\x87\x89\xb7\x51\x44\x43\xab\x46\xe2\x9c\x1a\x89\x73\xae\x3f\x1d\x89\x27\x2b\x21\x97\x94\xae\xb7\x84\x95\x0c\x0a\xc5\x52\xd2\x20\xa0\xa8\xbf\x36\xa3\x2a\xfe\x0f\x75\xfc\xaa\x06\x6e\x08\x8f\x77\x73\xfc\xa8\x7b\x3d\x3d\xb8\x82\xbd\xa0\x2d\x35\xe7\x5c\xd7\x52\x82\xab\x28\xcb\x6c\x3e\x4a\x93\x3c\x12\xae\x9d\x13\x7b\xf0\x94\x36\xc4\xcb\x68\xd1\x6f\x36\xec\xb3\x0b\x6d\x9b\xf4\xe3\x28\x1f\xb4\x94\x28\xfc\xcf\x69\x08\xa4\x49\xb8\xb5\x2a\x4d\x4d\xc9\x51\x96\x0e\xd3\x6a\x7e\xb2\x73\x9c\x53\xed\xf1\x0a\x3e\xba\x64\x69\xa2\x02\xef\x05\x65\x56\xae\x34\xf2\x4d\x43\x65\x6d\xbe\x5d\x18\x94\xc9\x16\x20\xa2\xfc\xc2\xe6\x25\xd5\x6c\x8f\x53\x93\xe4\x0f\xd1\x67\x60\x4a\x6c\xe2\x37\xf3\x8d\xda\xd4\x2e\xd5\xc2\x88\xc0\xdb\x69\x5d\x54\xb5\x8a\x87\x3a\x0a\x07\xff\x47\x81\x87\x80\x3c\x32\x51\xca\x95\xcd\x88\xb6\x2a\xdd\x2e\x22\xcb\xb8\x05\xb1\x32\xd5\xe6\x21\x37\x03\x45\xd7\xbe\xa8\x9f\xe7\xe6\xf4\x44\x3e\xd0\xb6\x71\x44\x1a\x30\x78\xa5\xd8\xc8\x51\xbe\xc1\xc1\x77\x47\xe9\x67\xbd\xd3\xa4\xa6\x18\xae\x85\x71\x14\xf2\x7b\x41\x1e\x8d\x36\x13\x5f\x37\xea\xec\x3f\xbb\xfa\xac\xd2\x37\xe3\x99\xcd\x37\xca\x8c\x3c\x1c\x98\x28\x9b\x51\x94\x33\x5d\x86\xa3\xb0\x57\x3e\x60\x9f\x86\xf2\x86\x25\x99\x81\x54\xfb\x27\x3b\x76\x51\xe2\x25\xee\x5d\x1e\x87\x37\xb2\x89\x89\x0b\x72\xf7\xf1\x52\x06\xad\xba\xac\xc1\x9c\xdc\x04\x4a\xa7\xec\x62\xf0\xb7\x1a\x62\x08\x12\x84\x25\x81\xa5\x7e\x44\x23\xea\x20\xd9\x6f\x2a\x79\xc9\x2b\xca\x0b\xec\x7c\x53\xfb\x71\xc9\x12\x39\xae\x26\x9f\x79\x31\xf0\xad\xb7\x9b\x4d\x53\xe3\x85\x76\xbc\x36\xaa\x36\xd0\x1e\x96\x16\xbb\xa6\xe1\xcf\xc4\x42\xad\xc9\xb7\x2c\x5d\x5a\xb2\x56\x9b\x66\x01\x71\x26\xd5\xa1\xcf\x69\x85\xc4\x5e\x94\xae\x98\xbc\xca\x05\x58\xe7\x9c\xb7\x5c\x65\x0d\x7a\xce\x19\x7e\x8d\x6c\xb6\x94\x66\x43\xa7\xf0\x87\x5d\x81\xa1\x47\x7c\x13\x68\xaa\x57\x98\xae\xd0\x8e\x5a\x0d\x1b\x26\xdf\x7d\x85\x84\xb9\xef\xd0\xe3\x2b\x51\x96\x7e\xb3\x44\x8b\x51\x79\x7e\x3a\x03\xd0\xc0\x0b\x2d\xe6\x65\xb2\x86\x6f\x77\xd6\x9e\xba\x59\xf8\x90\xc4\x99\x25\x4d\x32\xc0\x2c\xde\xd7\xde\x74\xac\x84\x20\xed\x9a\xad\xc0\x1f\x52\xc4\x34\x61\x16\x2d\x45\xa1\x8b\x87\xd9\x1d\x92\x9e\xdd\xe9\x6b\x1d\x3a\xc4\x19\xc9\xd1\xb1\xf6\xbd\x8f\xe3\xc8\x0c\x1f\xf1\xf5\xcd\xb3\xbc\x96\x19\x8a\x13\x78\xe9\xc6\xdb\x9a\xcd\x72\x4b\x8b\x53\x7e\x40\xb3\x9b\xff\x95\x3a\x4e\x7e\xa6\x6c\xe1\xce\x62\x22\x48\xe8\xa8\x1c\xb2\xd9\x8a\x46\x50\xeb\x4d\xb6\xba\x4b\x26\x1b\xf2\x4b\x44\x2e\xca\x9f\xc6\x37\xaa\xa6\xdb\x8f\x4c\x52\x3c\xa4\x64\x8e\x3e\xa1\x54\x0a\x5b\xb4\xe6\xe1\xde\xc5\xd2\x42\x58\xdb\xa2\x08\x85\xd9\xc8\x13\x6d\xdf\x42\x63\x28\x3b\x28\x65\xcc\xda\x10\x5e\xf2\xbd\x3d\xca\x32\x74\x25\x2a\x6c\x4e\x4b\x1f\xf5\x3e\x9e\x1a\x7c\xd3\x28\xb1\x91\xaf\x46\x45\x38\x10\xa0\x26\x36\xce\x73\x7a\x17\x3d\xf7\x40\xe4\x45\x16\xe5\x21\xd6\x9b\x40\xc4\x15\x5c\xdc\x75\x90\x57\xd2\x82\x0b\xca\xac\x11\x81\x1f\x4f\x21\x4a\xf9\x54\xc7\x57\x69\xb9\x88\x8e\xdf\xf5\xe8\x44\x93\x74\xbb\x45\x6c\x8b\x35\xfa\x61\x8e\x71\xb9\xe0\x6f\x5c\x53\x73\x64\x32\x9b\x14\x03\x11\x69\x67\x48\x1c\x8e\x01\xc1\xc7\x29\xb5\xb8\x28\x1f\x95\x85\xe9\xa1\x85\x2b\xfe\x9b\xf4\x8f\xc5\xa0\xcf\xc7\x09\xc3\xfc\xd9\xd9\xd6\x4b\x0b\x6e\x13\xc2\x4c\x75\xbe\x5a\x5f\x7a\x89\x37\xb8\xbb\x18\x72\x8c\xdd\x63\x9d\x2d\x84\xee\xf9\xf9\xf6\xe2\x02\xd5\x9f\x98\x2a\x8d\x91\x66\xec\x4b\xa0\xfc\x51\x00\x84\xc1\x9b\x3b\x86\x29\x2b\x45\xe4\x07\x15\x1b\xf2\xa8\x27\xd9\xa2\xd4\xaa\x75\xe1\x5a\x6d\xfd\x76\x85\xa9\xff\x4e\xf1\x12\xaa\x57\x7c\xad\x52\xbc\x7c\x90\x91\x07\xad\x5b\x63\x17\x30\x13\x05\xb5\xf2\x94\x6a\x23\x16\x69\x12\xe5\x03\x01\x76\x3a\xdc\x93\x7b\x11\x8c\xa7\xc3\x34\x98\x26\xdb\xcd\x1d\xae\x22\x3f\xb2\xd5\x9e\xa9\x01\x6f\xaa\x74\x1a\x71\x86\x1c\xf9\x52\xff\xc8\x47\xd6\x2c\xb3\x1c\x14\x42\x3e\xf8\xd0\x39\xc5\x8f\xea\xfb\x20\x86\x3a\x33\x69\xe8\xb1\x3a\xef\xac\x59\xbf\x87\xdf\x0c\x94\x16\xcc\xa6\xc6\x7e\xe1\xe3\x50\x6b\xba\xa1\x46\x73\x39\x49\xc3\x65\x8e\xf0\xa5\x1d\xa9\x5a\x93\x7a\x34\x43\x62\xdc\x61\xee\xa0\x41\xc0\xe0\x4a\xbe\x99\x1a\x94\x67\xda\x6c\xfe\x22\xc1\xb6\xab\xa2\xa8\x64\xd7\x07\xc0\xfd\x48\xda\xdf\xd8\x75\xce\x68\xed\xa5\x33\xca\xc2\x6a\xc5\xb2\x34\xa1\x22\xcf\xca\x1a\x39\xa3\x60\x2a\x99\x1d\xda\x61\xd7\x0a\x09\x15\x63\x09\x21\x3e\xbe\x1e\x6f\x25\x26\xca\x74\xec\x46\x69\x9c\x12\xbb\xbe\xa5\x0a\x10\x10\x3f\xe6\xeb\x29\x5a\xd5\xdc\x61\xc1\x76\xbb\x03\x05\x75\x4e\xe0\x4e\x68\x35\xf4\x9f\xec\x78\x7d\x82\xd9\x89\x26\x8d\xb0\x7d\xfb\xac\xe7\x39\x61\x5e\xf3\xb5\x56\x5d\xe1\x7c\x4d\x52\xdc\xad\xe3\x5e\x9d\x6d\x5d\x93\x2c\xbb\xc7\x60\x1b\x0a\xfa\x38\x9c\x3c\x47\x95\xc6\xf4\x5b\x4a\x7c\xca\x84\xd4\x15\x7a\xa8\xfa\xaf\x38\x72\xae\x2a\x5d\xfa\x4f\x75\x33\xe9\x16\x1d\x10\xc2\x18\x04\xef\xea\x38\xea\xa1\xe8\xb8\xbd\x1d\xa8\x48\xfe\x32\xa9\xcc\x89\xea\x65\xf5\x1b\xd1\x01\xb9\x3c\x95\x19\xbe\x54\x1d\x5b\x30\x98\x52\x31\xbd\xcf\xfa\xe2\x72\xd9\xe4\x39\xeb\x83\xb1\xa7\x9a\x6a\x0e\x9c\x70\xd1\x46\x1c\x85\x36\xc9\xad\xea\x07\x5e\x55\xb6\x89\x97\xc7\x7a\xf7\xa7\xdf\x82\x8d\xf3\x9c\xaa\xce\x13\x6a\xe0\x33\x1e\xb0\x73\x95\x62\x7e\x54\xf3\x98\xd1\x03\x50\xed\x2c\x5a\x65\x4c\xd6\x02\xf4\x1c\x0d\x35\x2e\x0d\x38\x63\xdb\x43\x87\x16\xb9\xff\xd5\xc2\x81\x89\xae\xc2\x69\x2e\x17\x61\xe7\x39\x47\xfd\x26\xb1\x30\xa0\xa5\x8b\xf2\x40\xab\xd3\x3a\x70\xc0\xf1\xb6\x5b\x5f\xfc\x9a\xc3\xb5\xf9\x0a\x35\xf0\x4a\x4c\xdc\x22\xe8\x2c\x3b\x3d\xea\x38\x64\x86\xd4\x65\xb0\x72\xd1\x87\xc7\xae\x78\x13\xf3\x0c\x80\xfa\x4f\xf1\x3a\x11\xf1\x6e\x9b\x72\xde\xa9\x82\xd0\xa8\x6f\x32\x5b\xb0\x4e\x9e\x68\x15\x56\xcf\x22\x22\x86\x5b\x57\xc9\xe2\xfe\x6a\x57\xe8\x67\xd6\xf3\x3f\x99\x55\x10\x28\x65\x91\xe3\xae\xb4\x20\xdb\xea\x6e\xa2\x4c\x89\xe6\x2c\x3d\xa4\x23\x72\xfc\x9a\x17\x0d\x72\xd4\x82\xff\xe9\xb1\x49\x7d\x23\x7e\x91\x3d\xd2\x7f\x13\xee\x7a\x88\xae\xb6\xd3\x78\x4a\x7c\xb7\x2f\x52\x4d\x99\xb0\xa4\xc2\x1c\xbd\x23\x46\x00\xea\x01\xdc\x68\xa8\xff\x3e\xd7\xee\xda\x30\x1d\x32\x77\x14\x8f\x04\xf1\x20\xbe\x6e\x4a\xa9\xca\x67\x93\x67\x5b\x1e\x2b\xce\x29\x95\x77\xc7\x76\xc9\xbe\xad\xa2\x11\xb4\x8a\xd8\xba\x3c\xf0\x10\x38\x5d\x94\x0b\xd3\xb8\x1c\x26\x78\x08\xc4\x69\xef\x04\x2a\x68\x7b\x47\x59\x96\x77\xc9\xf8\xa8\x9a\xad\x6e\xbe\xf8\xb9\xe3\xde\x41\x6c\x7a\x3d\x5f\x32\xc1\x92\xff\x93\xb1\xe7\x1a\xfe\x89\x2a\xca\x88\xf1\x2a\x91\xc2\x30\xd1\x6f\x06\x9e\xcd\x80\xba\x0e\x66\xd4\x69\x95\x4f\x9d\x56\x28\xe8\x4f\x1b\xda\x8e\x73\xd5\x07\x77\x6d\xd6\x52\x6b\xe6\xf8\xd8\xc3\xd7\x8e\x2b\x3d\xc3\xa1\x8d\x4d\x12\x0e\xd2\x78\xad\xa5\xa0\x68\xeb\x41\x8d\x4e\xe8\xc7\x20\x2f\xec\xe8\x21\x45\xbf\xba\x8d\x89\x88\x30\xf8\xe6\xd8\x27\x35\xdf\xc3\xea\xe5\x92\x1f\xfa\x74\x52\xff\xf3\xcc\x7e\xf4\x0a\xc5\x52\x9b\xbe\x13\xa3\xb4\xa9\x0c\xbb\x4f\x3e\x30\x10\xea\x9a\xcc\x82\xb0\xc6\xd5\xa3\x53\xd8\x74\xf9\x66\x6a\x3d\x1d\x98\x6b\x0f\xcb\xb8\x88\xf2\x42\xd4\x2a\x9b\x28\xee\x0d\xf3\xce\x9a\x2c\x01\x54\x0f\x8f\xb7\x11\x28\x5b\xba\x53\x63\x4d\xcb\x78\x4c\x4d\xad\x72\x84\x72\x1b\xe2\x8a\xeb\x2a\xc6\xb8\x3e\x75\x10\xbd\x34\x77\x98\x6d\x5d\xb9\xcf\x23\xb2\x90\x8a\x62\x78\x4e\xf5\x79\xba\x26\x8f\x42\x80\xb4\x30\xae\x1f\x8d\x55\x45\x6c\x63\xac\x4d\xef\xd9\x54\x53\x5b\x76\x38\x8a\x82\x97\x01\x09\x14\x34\x1c\x8c\x0c\x09\x44\x7d\x7d\x7f\x50\xf6\xf2\x34\xd1\x06\xe0\x27\xe9\x15\x22\x42\xb9\x82\x61\xc1\x9f\x7d\xd4\x40\x81\x5b\x6c\xaf\x44\x2b\x11\xfa\x64\xf8\x22\xf4\x47\xf8\x7a\x6a\x2e\x1f\x98\x6b\xe7\xab\xb6\x17\xe5\x83\x96\x7f\x43\xc7\x14\xbe\xf7\x58\x4d\xf6\x38\x2f\xa2\x82\xb8\xc3\x3b\x3c\xec\x80\x81\xb9\xb8\x39\x1e\x68\xec\x1a\x87\x06\xc2\x8e\xf7\x02\x11\xf7\x95\x3a\x74\x5c\x86\x68\xb6\xb6\x68\x0e\xb3\xd3\x39\x9a\x8e\x62\x7b\xee\x08\x37\xc9\x40\x9b\xce\xe0\x28\x01\xa7\x9a\xaf\x15\x1b\x3b\x0d\xa5\x82\xe3\xd8\x6c\x47\x69\x2c\xf9\x1a\x2c\x0b\xa1\xee\x65\xbf\xa0\x98\x28\x20\x19\x48\xf7\x54\xe1\x62\xb9\x65\x2a\x8b\xa1\x3a\xcf\x38\xe8\x08\x74\xb4\x78\xa2\x6e\x2f\x0d\xdc\x87\x23\x9e\x3b\x34\xda\x69\x3a\x59\xf1\x01\x27\x69\x92\xa3\x67\x0e\xd8\x12\x66\xcd\x65\x8c\x04\x77\x6e\x74\xfd\xe6\xaa\x52\xdf\x78\x9f\x12\x27\x36\x25\xc0\xa8\x03\xfc\xc9\x6c\x1b\x27\x2d\xf9\xc5\xaf\x71\x1d\x9b\xbb\xc5\xd8\x5d\xbf\x8f\xfa\x04\xfe\xfe\x6d\x82\x96\x22\x80\xb9\x4c\xad\x01\xc9\x6c\x94\x62\xff\xb4\x7c\xf2\x8b\xfb\x5f\x6e\xc7\xe9\xea\x8c\x0f\xa7\xfe\x30\x98\xaa\xe9\xe2\x28\xbf\x50\x6b\x92\xac\x84\x29\x88\xdf\xce\x7b\xc8\x95\x00\x99\x66\xcb\x37\x9a\x66\xbb\xae\x8a\x83\xeb\x1a\x1b\xb6\xee\xd5\x98\x49\xd3\x0d\x59\xbc\x82\x59\x3a\xcc\x65\xed\x21\xa2\x6c\x99\xe3\x7d\x67\x71\x51\xbd\x75\xbe\x71\xd5\xa8\xbc\xcc\x46\x59\x94\xbb\x60\x16\xf5\xad\xbf\x39\x71\xc8\xd2\x3f\xfe\x7c\xc7\x17\x94\x7c\x4f\x62\x64\xb3\x72\x25\x62\xa0\x1e\x8a\x0f\xf7\xb5\xe0\xcf\xfd\x06\xc5\xb4\xe7\xda\xb1\x21\xbf\xfd\xea\x05\x62\x35\x6e\x27\x6c\xa7\xf2\x9d\x9e\x77\x34\xc6\x07\x6d\xe1\x85\x89\x46\x36\x9a\xa9\x06\xc1\x31\x1e\x15\x32\x59\x75\x7c\xaf\xb9\xac\xa6\xbb\x36\x32\x79\x4e\x59\x8d\x03\x4c\x39\x09\x83\x75\xef\x60\xda\xcd\xcc\x30\x4f\xc5\x1f\x40\x36\x36\xfa\x48\x81\x7a\xca\xcb\xf8\xfc\xdc\xc1\xe7\x0e\x1e\x7e\xe1\xb1\x2a\x3c\xc2\xec\x78\x02\x8c\x2d\x94\xa8\xce\xe8\xbf\x7a\x04\x7e\x75\x92\xc9\x69\x41\xbf\x6d\x13\x3f\x80\xbb\x27\x0e\xe3\x3c\xfc\x05\x34\x9b\xb1\x51\xdf\xc1\xc8\xe0\x1d\xdc\x21\x48\x0d\xa0\x47\xbf\xd2\xf1\x4d\x44\xd8\x6e\x0b\x62\x8b\xe6\x05\x02\xe6\x5b\x4d\xcd\xe0\x61\x99\xbb\xea\x34\xd6\xee\x84\x26\x20\x5f\x37\xc6\x08\x43\x13\x31\xdb\x9b\x6b\x64\x1f\x2b\x4d\x9f\x8f\xa7\x28\xfd\x8b\xfb\xdb\x59\x99\x40\x8d\xd1\xe1\x72\x5f\x94\x83\xf7\x36\xea\xc6\x38\x55\xd8\x82\x98\xff\x8b\xd6\x58\x3a\xa5\x8e\xc7\x41\xd4\x1f\x3c\xe2\xfb\xcd\x6f\x06\xaa\xf6\x40\xa9\x03\xa2\xdb\xb7\xc6\x0a\x36\xf2\xdd\x29\xf2\x0d\x4f\x1a\x6c\x3c\xd8\x2d\xce\x60\x7c\xc5\x23\x5e\xc9\x27\x5c\xc2\x7a\x15\x58\x4c\x4d\x65\x70\xaa\xe8\x3f\xd7\xb6\xaf\x98\x61\x94\x88\x0c\xb5\xb8\x35\xd1\x5f\xa1\x28\x78\x54\x3b\x40\x78\xe5\x99\xbe\xed\xcd\x78\x48\xcf\x25\x0c\x00\x66\x27\xf7\x54\xf0\xa0\xbb\x3a\xd3\xab\xaa\x9d\x0f\x4c\xb7\x0b\x7a\x3d\x87\x17\x0a\xb2\x7e\x4a\x35\x33\x47\x59\x3a\x4a\x73\xcb\xd2\xe4\xde\x6e\x69\xbe\xa6\x64\x21\x90\xf8\x1f\xa8\x5c\xbf\x18\x64\x24\xe5\x96\x2b\x4f\xa4\x4f\x14\x4e\xe1\x13\x57\xd3\x1b\x99\xbc\x30\x33\xaa\x9a\x7c\x4a\x81\x6b\x51\x85\x05\x06\xe0\x9c\x2a\x8f\x7e\x23\x5d\xe6\xe2\xa4\x83\xa3\x1d\xf4\x70\xb4\xc7\x3d\xd0\x24\xc9\x23\xf4\x9f\x9d\xa5\x95\xb7\xb7\xd2\xce\xb2\x36\x8e\xa3\xbe\x65\xe1\x11\x11\x25\x6c\x39\x8b\x85\x56\x67\x6b\xc1\x7a\xee\x30\xe1\xe2\xd2\x98\x1d\x69\x3d\x16\xea\x47\x98\x9a\x7c\xa3\xba\x69\x79\xd4\x4f\x66\x95\xe5\xf3\x09\xf5\x6a\x7f\x4c\xc7\x2d\x5f\x63\xa6\x09\xbc\x78\xaa\x9c\xb0\xb8\xd0\xfe\xfc\x97\xff\xc1\xc2\x97\xbf\x38\xbf\x53\x51\x07\x8e\xaa\x5c\x8b\xe7\x03\x8e\xb9\xb3\x90\xe8\xc5\xec\x9e\x81\xef\x3e\x67\xac\xf4\xa5\x28\x08\x4c\xc7\xa4\xc4\x13\x33\x3d\x2a\xe8\x0b\x2f\x8d\x5e\x13\x7a\xc8\x1f\x2a\x7d\xbd\x1b\x8d\x72\xf8\xa6\x74\x29\x25\x62\x82\xff\x17\x13\x9b\x6f\x9a\x24\x6e\xa3\xe1\x28\xcd\xa9\x31\xaa\x42\x67\xa0\x76\xf9\x7a\x6a\x6b\xaa\x22\xbe\x6e\x6a\x5d\x44\x04\xa0\xda\xf7\x31\x31\xf9\x46\x75\xc2\xf2\xa1\x89\xe3\xc7\x7c\xec\x76\x17\x71\x8a\xa8\x9b\x55\x3b\xa5\x68\xf7\x53\x1e\x26\x72\x9e\xd5\xfc\x12\xc9\x4f\xc5\x51\xf9\x3f\x69\x83\x42\x34\x02\x68\x30\x42\xab\x99\x8e\xf2\x44\x3b\x8f\xfc\x58\x24\x23\x5b\xce\x6f\x64\x27\xb9\x9d\x02\xa7\x7c\x13\xef\x8c\x05\xe7\xa7\xea\xeb\x0b\xcf\xbf\xd0\x0e\xcb\xb8\x80\x0f\xc8\xa1\x43\xce\x00\x4e\xa5\xa7\xc7\x14\x24\x37\x1f\x94\x89\x12\x53\x5b\xd7\xc6\x3c\xeb\xc1\x93\x1a\x51\xc8\x0e\x04\x8f\x55\xcf\x82\x82\xf1\x4d\x25\x8c\xf1\x3a\xe1\x77\x11\xf2\x6c\x62\x0b\x46\xe7\xfc\x36\x8d\x09\xff\x81\x56\x9c\xda\x08\xb4\xd2\xcc\x05\x0d\x28\x67\x50\x22\x3e\xed\x0a\x05\x8f\xfc\x37\x63\x6f\xc2\x73\x53\xdb\x85\x5e\xa2\x7d\x5a\x94\xf8\x14\x50\xb3\x8c\x63\x26\x7b\x23\x63\x45\x9e\xa1\x95\xdd\x64\x0f\x9e\xc6\xe7\x7b\x08\xce\x8c\xaf\xc1\x01\x99\xc9\x74\x4d\x0c\x17\xce\x9a\x1b\x5b\xa5\x9f\xaa\x5f\xd7\x3e\x38\xff\xb0\x8e\x96\xce\x28\xd5\x4d\x76\x9b\x05\x20\xee\xaf\x02\x25\x04\x85\xc8\x03\xe3\xf7\x17\x63\xd5\x4c\x7f\x37\x50\x9b\x36\xa4\xaf\x25\x9d\xa0\x05\xc4\xe0\x3a\x6d\x4b\xb5\xbd\xe3\xdb\x35\x45\xb5\x6a\x92\x3e\x51\xdf\xdc\x0b\x5f\xf0\x37\x4a\xf2\x72\x29\x62\x44\x8e\xf3\x14\x57\x86\xe7\x0d\xb4\xfa\x95\xc8\x26\xa2\x64\xa9\xe4\xe7\xbc\x8f\x4f\x83\x77\x4f\x91\x8e\x76\xf8\xa2\xf2\x2d\xb5\x39\xc3\x45\x0a\x3f\x93\x13\x7b\x77\x86\x57\xcf\x2b\xc3\xe4\x3b\x8f\x4b\x26\xb4\x3b\x95\xe4\x02\x2a\x16\x52\xda\x52\x1c\x69\x6e\x88\x8a\xc5\xb4\xa7\x13\x7d\xf6\x42\xa0\x15\xa7\x8f\x35\x6c\x21\xed\x70\x8d\x74\x85\x81\xf8\xc0\x12\xbe\xa2\xea\x66\x67\xc6\xbe\x6a\xf9\xb6\x42\xe3\xe5\x85\x71\x4e\x99\x2f\xf3\x3c\x6a\x75\x48\xdd\x88\x6f\x26\x7e\xca\xae\x19\xea\xa8\x39\xa9\xe2\x8b\x8a\x71\xa2\xbd\x04\x13\x93\x17\x08\x9a\x9a\x0a\x78\xbe\xd1\xdb\x5f\xcb\x8c\x53\xb1\x9a\xe7\xbc\xed\xba\xee\x4f\xd6\xb5\x59\x2c\xb2\x6a\x41\x2a\x9e\xd3\x01\x0d\xa7\x3f\x92\x24\x34\xf4\x37\x86\x51\xaf\x17\xdb\x21\x5b\xc2\x8a\x77\x12\x8d\x97\x94\x91\x7d\xc9\x27\x4a\x20\x68\x56\x05\x7f\xca\xc2\xda\x83\x70\xdf\x51\x7a\x29\xa3\xcc\x0e\x23\x9b\xb9\x61\xe4\x63\x0b\xaf\x53\xce\xb0\xad\xa7\xd3\x81\x03\xed\x81\x89\x97\xc8\xf3\x46\xc8\x1d\xd4\xc7\x43\x00\xfd\x53\xa5\xf0\x7e\x9f\xc6\x4f\x20\x64\x7e\xfc\x7a\x51\x1e\xc6\x69\x6e\x7b\xbb\x5b\x8e\x7f\x7b\x53\xab\xe0\xc0\x33\x59\x06\xc8\xb3\xbc\x8f\xa2\xd4\xcc\xff\x41\x15\xde\x8e\x06\x5e\xe4\xeb\x66\xa0\xc4\x75\xd6\xa7\x9a\x31\xce\x3a\x3f\x02\x94\x51\x74\xab\x68\x40\x45\xd0\xaa\x01\x3c\x98\xd9\x21\xd0\xb3\x38\xed\x50\xc7\xbe\x42\xcf\xc0\xd7\x53\x8d\x90\xc5\xfd\xed\xae\x09\x97\xfb\x59\x2a\xf4\x6d\x69\x66\xb6\x9c\x29\xee\x34\x18\xaf\x5a\xc6\xab\x51\x08\x38\x0b\x9b\x21\x62\x84\x81\x7d\x06\xf8\x16\xf5\xf1\x1d\xca\xc1\x70\x25\x5d\x33\x7d\xfb\x40\x2b\xcc\x86\x4e\x5d\x96\xa6\xc3\xa1\x29\x18\x3b\x21\xac\x61\x3f\xdc\xeb\xb5\x34\x75\xd9\xae\x91\x61\x86\xe2\xd3\xca\x24\xe6\x7e\xa2\x43\x9e\x1d\xf4\xc8\x33\x15\x51\xff\xbb\x40\x35\xb2\xef\x35\xf8\xdf\xbe\xd0\x1e\x42\x11\x08\xeb\x4a\xc1\xe9\xe7\x1c\x52\x5e\x0b\xba\xc4\x26\xe9\xed\xe0\x86\x8b\x66\x92\x83\x23\x81\x72\x8f\x76\xb3\x64\x4d\x6b\x74\xe3\x6f\xbb\x86\xf3\x4a\xd4\xb3\x69\x61\x46\xac\x8c\x89\xe2\x27\xe7\xeb\x7c\xa3\xea\xba\x40\x84\x88\x6e\x00\x42\xb2\xf3\x8a\xa2\x09\x48\x17\xce\xa6\x7f\xae\x88\xad\x2b\x26\x0c\x23\x81\x1b\xba\xaa\x5c\xf5\x1d\xa2\xd4\x3b\x7d\x5c\xbe\x5c\x2d\x15\x12\x84\xd0\x65\x43\x86\x80\x88\xbc\x8a\x47\xdc\x45\x45\xe4\x21\xee\x80\x09\x9e\xc1\x5e\xc3\x37\xe3\x47\xdd\xe8\x95\xf9\x2b\xbb\x55\x04\x73\x53\x71\x28\x4e\x62\x2c\x05\x76\xa1\x92\x48\x0d\xc7\xc0\x2b\x47\x93\x16\x05\x68\xfe\x24\x7a\xfd\xa8\x84\xde\xd3\x48\x28\x43\xce\x00\x55\x10\x8c\xcc\xf5\xc8\xd8\x67\xb1\x47\xd4\x39\xf9\x8d\x32\xb1\x8f\xd0\x87\x8b\xf8\x44\xf5\x04\x58\x2d\xd7\xc7\xaa\x83\x79\x32\x50\x6b\x76\x03\xd3\x04\x13\x97\xa5\x8d\x30\xb0\xe7\x14\x12\xf2\xf7\x02\x55\xb9\x07\xac\x14\x4a\x56\xb7\xa9\x1c\xc6\xd6\x81\x7c\x6a\x89\x7f\xbb\xef\xcc\x76\x63\xbb\x97\xde\x1f\x9a\x50\xbb\xd1\xb8\x42\x18\x74\x0d\xc5\x32\x27\xfc\xe2\x3d\x96\x4f\xd1\x82\x15\xb5\xb3\xea\x7b\x90\x61\x7c\x44\x63\x4e\x8f\xff\x2f\xf6\x74\x94\xa6\xd5\xe7\x26\x4a\xb3\xe6\xf1\x49\xb5\x49\xa2\x1e\xcb\xc1\x24\x96\xd3\xba\x9f\x74\x27\x7f\xa5\xa3\x34\x43\xff\x06\x14\x0f\xa4\x8d\x52\xfd\x48\xfc\x94\x3f\x52\x9c\xb6\x23\xe4\x38\x82\x80\xe6\x8e\x0a\xef\x7a\xd6\x0e\xb1\x0e\x84\x2b\xe6\xb3\x8d\xd3\xaa\x0b\xbe\x1a\x25\x89\xcd\x66\xab\x0f\x97\xb8\x47\x9b\x1b\xd4\x41\x84\x6a\xd7\xf0\x39\x6e\xda\xcd\x0b\x13\xc6\x2c\x24\x2e\x45\x9b\x6a\x48\xb4\x63\xb3\xb3\x72\xae\x46\x44\xca\x3c\x5b\xe3\x88\x67\xda\x03\x93\x99\x5c\x58\x1a\x52\x01\xa3\xbf\x11\xb9\x9c\xa6\xed\x26\x2d\x8b\x3c\xea\xd9\x1d\xf4\xb2\x50\x92\xb8\xa5\xe2\x61\x2c\x65\xa9\xc0\x57\x3f\xd5\x29\x63\x3a\x69\xb7\x8f\xa6\x0e\xc8\xf9\x79\x72\xb7\xc0\xcf\xc2\x3f\xba\x40\x6f\xda\x39\x4e\xcc\x0b\x40\x06\x08\x40\x61\x04\x37\xaa\x33\x47\xb9\xef\xa2\x63\x7a\x42\xa4\x0e\xc7\xf3\xec\xc4\x23\x2a\x4e\x4d\x9d\x24\xcf\xb4\xe3\x72\x38\x92\x0d\x01\x95\x95\x75\x6c\x08\x7c\xa3\x79\x00\x66\x34\x62\xe1\x27\x11\x92\xa7\x61\xe1\x9b\x89\x8f\x79\x47\xb1\xc9\x0b\x9b\x91\x11\x17\x9e\x1d\xb8\x28\xe7\xe3\x71\x50\xb8\x92\xd3\xf8\x10\x52\x1f\x48\xbb\x1e\x8c\x80\xfa\xee\x15\x4c\x18\xbe\x99\xfa\x21\xd5\x41\x5a\x46\x31\xa8\x2f\xae\x3d\x58\xfd\x0e\xa7\xe2\xed\x54\x48\xb8\x42\x24\x54\x24\xcf\x7d\x29\x93\x5e\x2c\x69\xb1\x40\x17\xe8\x11\x04\xd3\xa0\x31\xee\xa1\x41\x74\x20\xc6\xbb\x2d\x6f\xc2\xab\xc0\x47\x4b\x36\xeb\x55\x09\x4d\xaf\xe6\xf3\xce\xd5\x55\xbe\x51\xc1\x59\x66\xc3\x34\xa9\x26\x5c\xa6\xa1\xa3\x81\x46\x4f\xf9\xbd\x66\x14\xdb\xcf\x54\xa3\x8a\xda\x52\xab\xa3\x7d\x16\xb0\xd5\x60\xb3\xf8\xf9\x78\xfb\x17\x5c\xf2\xa4\xc3\xed\xdb\xb4\xc2\x6b\xec\x14\x87\xbb\xaa\x32\x6f\xc7\x35\xaa\xc2\x7f\xe4\xeb\x27\x88\x62\x05\xdc\xe0\xc7\x63\xdf\x31\x87\xb8\x28\xf7\xc2\xc7\x9e\x54\x7b\x9e\x52\x54\x87\x3e\xa9\x62\x33\xe5\xd3\x22\xe8\xbe\x6b\xd8\xb4\xf1\x27\xbb\x3a\x3e\x0b\xff\x0c\xcd\x64\xb4\xb1\x38\x6f\xc7\x5f\xec\x9c\xa8\x6e\xf3\x34\xf9\xf2\xc0\x81\xf6\x12\x29\x82\xaf\x11\xe4\x07\x65\x98\x1f\x6a\x39\x87\xb3\x75\x0f\xe4\x96\xf2\xae\x53\xaa\xc5\x2b\x36\x29\xec\xb2\x4e\x0c\x6a\x58\x88\x26\xad\x33\xe6\x7c\x56\x1f\x88\xfc\xf1\x3e\xde\x05\x72\x46\xfc\x38\x80\x30\xa7\x15\xb2\x0e\x1c\x68\x77\x33\x12\x03\x6e\xd5\x34\xc2\x34\xa9\xe0\x41\x26\xdd\x3d\x13\xc5\x6b\x33\x3e\xe0\x7d\xbc\xe3\xed\x64\x51\x8c\x46\x65\xfe\x74\x93\x9b\x40\x38\x30\x19\x2d\x58\x07\x75\xc1\x84\xc6\x9f\x1c\x1f\x2b\x7b\xdb\xf3\x0e\x96\xd5\x2d\x73\x29\xaf\x89\xb1\x89\xd2\xb3\xfe\xb0\x29\x63\xa5\xd6\xab\xd0\x68\x9d\x99\x83\xef\xd0\x35\x55\x04\xe6\xdb\x79\x99\xf4\x4c\x12\xa2\xf0\x84\x41\xfd\x04\xef\x81\x6f\xbc\xa8\x42\x99\xad\x44\xce\x3a\x10\x29\xe6\x4e\x9c\x7c\xd8\xcf\xee\xaa\x38\xe4\xa2\x2a\x47\x8f\x4c\xf5\xf1\xce\xcf\xe2\x0c\x6d\xbb\x7c\xed\x99\xa5\x61\x98\x66\x3d\x21\x95\x71\xbc\xa1\x90\x05\xec\x6a\x8f\x71\x3a\xa2\x56\x6a\x61\xf3\x3d\xd5\x5e\xe8\x70\xf2\xf2\x96\xfe\xfe\xde\x89\xe7\xd4\xb2\x0a\xad\xf4\x0a\x3d\xd3\x7c\x2f\x21\x50\x10\x44\xec\xa4\x57\x49\x38\xd2\x7f\xf4\x9f\x62\x11\x10\xd2\x6e\xff\x67\x26\xf4\x9b\x11\x2c\x3c\x83\x9d\x99\x96\xe9\xb3\x7b\x27\x5e\xa6\xe9\x3b\xaa\xfd\xf6\x77\xfe\x36\xab\x9d\xd0\x9e\x11\xb6\xa1\x68\x89\xe5\xb9\x73\x52\x65\xca\x9b\x97\xea\x6d\x1c\x19\x88\x2a\x67\x89\xd3\x7e\x0e\xe3\x2e\x71\xb2\xa6\x4f\x46\xec\x30\xdb\xd1\xc0\xe5\xea\xeb\x85\xec\xea\xf7\x3a\x6b\xb2\x62\xf0\xcd\xd2\x2c\x5b\xe2\x18\xe3\xec\xbb\xa5\xc1\xdc\xeb\x9a\xee\x03\x09\x7f\x0c\xc8\xce\x89\x92\x31\xb9\x1a\x28\xf2\xfc\xf6\x89\xdf\x7b\x6e\x4c\x9d\xe8\x87\x0e\xb5\x43\x93\x98\x5e\x64\x92\x19\xb5\x7f\x5c\xa3\x17\x82\x4d\x0d\x1a\xdd\xe2\xda\xdf\xf0\x01\xa3\xa8\x08\x07\x43\xcb\x74\x12\x74\x65\xfe\x52\x71\x10\xff\xd2\xb5\xe3\xba\x99\x29\xaa\x14\x64\x85\xed\x62\x58\xdb\xa7\xa6\xf3\xd3\xa0\x20\x32\x48\x13\x9b\x17\x6b\x2d\xc5\xed\x45\x8d\x83\xaf\x35\xdb\xd3\xe4\x69\xd2\xaa\x47\x47\x5e\xc9\xa4\x11\x7a\x39\x1c\xd9\x2c\x32\xf1\x8c\x82\xa7\x1d\x51\xf5\xb1\xdf\xa1\x6f\x02\x52\xea\xe3\x06\x7f\xdf\x17\xaa\x28\x1d\x0b\x11\x1d\x11\xf8\xa9\xf3\xb5\xfb\xe9\xc3\x28\x89\x86\xd1\xab\x2e\x2e\x41\x74\xb8\x11\xf8\xfd\x05\x08\x7c\xa6\xe7\x6a\x77\x78\x9b\x8d\x6c\x91\x39\x2e\x95\xae\xc7\x4b\xd9\x5d\x69\x01\xa5\x03\x33\x34\xbd\x56\xeb\xab\x5f\x76\xba\xe5\xaa\xdf\x72\xd6\x6d\x0c\x43\x50\x33\xf3\x1d\x4a\x48\xfc\x6e\xa0\x9b\xa1\x33\xde\x12\xef\xbd\xb1\xb2\xeb\xff\x04\x85\x55\x04\xe7\xe7\xc7\x9e\xf3\x9a\x12\xc1\x74\x97\x4f\xef\xff\x8a\x36\x0d\xae\xc7\x07\xaa\x10\x77\x8e\x82\x0f\x87\xbc\xaf\x06\x84\xb1\x15\xf4\x04\x28\x20\xde\x42\x06\x2f\xb0\xd9\x9a\x71\x59\xda\x7b\xa8\xe6\x83\xa6\xd2\xb2\x9f\x69\x2f\xc0\x2b\x34\xa8\xa2\x28\x4c\x9b\xb6\x48\xe4\x2b\xbd\xd2\x6b\xd8\xa6\x45\x60\xcd\x23\x69\x99\xb4\x23\xc5\x3c\x8f\xf1\xb2\x59\xda\x07\x0a\xa2\x35\xef\xfd\x13\xab\x3f\x14\x63\x45\x69\x19\x85\x83\x28\xee\x61\x5b\xa8\xa1\x2c\x90\x8a\xde\x54\xb4\x0b\xb0\xb6\x30\x72\x67\xc7\x8f\xb8\x57\x9a\x13\x6b\xa6\xda\x79\xe6\xe7\x17\x36\x2f\x35\x28\xfe\xbc\xdc\xae\xf2\x5d\x74\xab\xb1\x09\x63\x1c\xf9\xba\x31\xa2\x1c\x96\xbd\x5e\x2c\x32\x39\x8d\x7a\x5f\x4a\x59\x24\xc2\xbf\xf5\x4d\xbc\x23\xf4\xf9\x7c\xdd\x70\x44\x3d\x27\x70\x56\x0e\x1e\xb1\x1c\xde\x1f\x2b\xc1\xd3\xf7\xa7\x4a\x9b\x07\x0e\x54\xb9\xfb\x30\xe2\x5e\xb6\x80\x72\xfd\xaf\x3a\xf3\xc0\xb6\xf9\xd0\x64\x75\x79\x08\xa6\x58\xf2\xcd\xa4\x41\xba\x7f\x98\xe6\xc5\x0e\x82\x87\x38\x5b\x6e\x87\xcf\x3c\x8d\x70\xcf\xe5\x9f\x87\x0e\x6d\x5e\x22\xc8\x86\xd0\x0b\x1a\xaa\xb2\xc3\x32\x5b\x8e\x60\x85\xb6\x28\x6a\x93\xca\x6d\xe2\xc2\x78\xaf\xea\xe0\x25\x5c\x0b\xf5\xfa\xde\xaf\x28\xb2\xf7\x2b\xae\x2b\x98\x57\xb1\x4f\x77\xad\xa5\xf4\x8b\xb0\x5d\xca\x2c\x56\x56\x17\x69\x96\xec\xf0\xed\x60\x46\x88\xd6\xde\x2c\x56\xf6\x6d\xfa\x00\xfe\x57\x38\xe2\x04\x6e\xaf\x6b\x57\xc3\x51\x39\xa3\x54\xd3\x8f\xd5\x74\x10\xb8\xf6\xc7\x0b\xd5\x21\x11\xf2\x30\x2d\xc2\xc1\x8c\x22\x73\xa0\x5b\x2b\xd8\x3c\xdf\x50\xff\xa1\xaa\x9a\x77\xad\x5d\x6a\x39\x70\xc0\x85\xe3\x94\x19\xf1\xb5\x8a\x19\xd2\x78\x0d\xb6\x06\x58\xda\x37\x94\xb4\xea\x4f\xb0\xc7\x01\x9f\x07\x17\x41\xe7\x28\x52\x85\x13\x6c\x56\x38\x56\xa2\xd4\xb4\x81\x6e\xde\x6d\x72\xcf\x09\x4d\x31\x48\xe3\x28\x94\xb0\x4c\xf6\x2c\xd5\x56\xd0\x3c\xec\x30\x4d\x0a\x13\x71\xf7\x18\x88\x20\x98\xc2\xf2\xb5\x3a\x9e\xaa\x5d\x3c\x7f\xbc\x0a\x7c\x10\x73\x83\x9d\x8a\x82\xd9\x3d\x25\x1b\xbf\x6b\xa2\x88\x56\xbb\x3a\x2a\x88\x7c\x4b\x11\xb6\x59\xee\xc3\xd9\x11\xbe\x34\x77\xd8\x49\xa7\xb4\xbe\xf8\x35\xa7\x2b\x5f\x73\x8e\xab\x26\xb9\x44\x2f\xca\xe8\x85\x1b\xaf\xce\x3a\xdb\x49\x96\xec\x9e\xec\x71\xa4\x03\x93\x2d\xc7\xee\x04\xc3\x2a\xbe\xaa\x34\x84\xf1\x0b\xa4\x04\x29\x9b\x65\x15\xfe\xc7\xe4\xba\xc8\x49\xb5\x33\xe8\x70\xc3\x75\xba\x89\xba\xdd\x8d\xd3\x50\x60\xe8\x0b\x9e\x0d\x5b\x7d\x35\xa6\xd3\xbd\x9a\x76\xdd\x13\x0a\x09\x98\x2c\x57\xeb\xb0\x1a\x1b\xe4\x7b\x57\x69\x98\xf9\x5a\x89\x85\x91\xd0\x7e\x92\xa6\xc9\xce\xea\xf7\x4a\x29\xdf\xd3\x88\xd8\x10\xd8\x89\x32\x1f\x3a\xc4\xa1\xec\xf6\x0e\x0d\xb6\xd0\x46\x7c\x5e\x71\x55\xb7\x3c\x4c\x1c\xa7\x23\xea\x74\x39\x50\x27\xe0\xac\xb2\xf7\xef\x51\x6c\xdc\xb2\x1b\x33\x7b\x91\x57\x58\xe0\xf5\xd0\xcf\x4f\xf5\xbb\x0f\xce\xb7\x6d\xb2\xb2\x36\xeb\x59\x92\xad\x8e\x06\x46\x8e\x7d\x71\x01\xc4\x03\xcc\xb7\x93\xca\x62\x4f\x88\xbd\x2b\x0c\x39\x46\x44\x72\x4d\x75\xca\xaf\x05\x0e\x74\x30\x34\xfd\x28\x31\xce\x28\x8b\x03\x5c\xf5\xbe\xa7\x5b\xf2\x2f\xee\x6f\x0f\xca\x8c\x29\xb9\xa0\x79\x1d\xc7\x84\xe5\x9b\x26\xb1\xd7\x70\x60\x52\xde\x16\x19\x7b\x46\x2b\x49\x70\x68\xd3\xdf\xb1\xd0\x8e\xd9\x52\x81\xfd\x21\x70\x94\x8b\x59\x44\x4d\xee\x7f\x94\xef\xac\x9d\x76\xd5\xab\xc0\xe2\x81\x2e\x12\xcb\xba\xd0\xaf\x02\x7e\x10\x12\x32\x68\x1b\xdf\x53\xc1\xcc\x46\x4d\x0c\x33\xca\x45\x3c\x1f\xd5\xd3\xdb\xf8\x99\x98\x1d\x6c\xcd\x87\xde\xc3\xa9\x60\x5a\xf6\xda\x89\x67\x38\xf0\x10\xdc\xea\x5d\x50\x70\xd0\x39\x2a\x00\x43\x8c\x80\xe8\x36\xcd\xd3\x1a\xd3\xcb\x59\xb2\x7a\xac\xf2\x5f\x8d\x3d\x63\x65\xd7\x44\x63\x3d\x80\x18\x90\x86\x8a\x17\x69\xbe\xa6\xf1\x49\xb7\xdd\x2a\xb6\x49\x98\x96\x59\x35\x0b\xfa\xc4\x32\x71\x53\xdf\xf9\xf7\xa0\xa0\x4f\xcf\xf0\xbf\xfe\x42\x47\x15\xdf\xf6\x4d\x31\x90\xe6\x0e\x8b\x11\xab\x88\xbd\xa3\xfd\xfe\xa9\xb2\x24\xff\xb4\xb6\xf3\x2f\xef\xaa\x86\x87\xc9\xd3\x63\x5f\x6a\xdd\x44\x76\x24\xfd\xc6\x6a\xaf\xc7\x0e\x7a\x41\xd9\xac\x72\x9f\x0c\xe3\xf6\x76\xa0\xf5\xc5\x9b\x6c\x5b\xf3\xb4\x2c\x06\xab\x36\x2f\x66\x7c\x5b\xe7\x1a\xfe\x8a\x65\xec\x11\x1d\x20\x6c\x78\x67\x2a\x8c\x39\xfc\x7c\x75\x24\xac\xd8\x0c\x00\x1d\x20\x48\x3e\x55\x2e\x02\x9f\xaa\x98\xb9\x4a\x1c\x9d\xae\x28\x77\xd1\xeb\x08\xdd\x06\xe3\x8c\x5e\x56\xa5\xf4\x2d\xa5\x1f\xb6\xae\x64\x1b\xd6\x1b\x24\xae\x94\x99\x2b\x02\x6d\x46\x70\xf0\x4d\xe0\x81\x8f\xbd\x5e\xb5\xc5\xcf\xd2\xfb\x63\x35\x7f\x25\xb2\x01\x06\x14\xfb\x73\xd1\x59\x82\x38\x62\xda\xc4\x8f\xda\x7f\x26\x1c\xcc\xfa\x96\x1c\xdb\xa8\x22\xec\xff\x54\x71\x1b\x3e\xc1\xc3\x48\x39\x66\x8f\x22\x04\x64\xfd\x41\x39\xac\x05\xa9\x75\xcd\x9e\xad\x22\xdb\x40\xf2\x25\xe5\x92\x09\x8b\xd2\xbb\xa1\xb2\xe2\x96\xf2\x9c\x3d\xd2\x84\x1b\x8c\x32\x93\x08\xec\x93\xed\x01\x34\x4d\xed\x74\x03\x16\x7e\xa1\x1d\x9b\xd5\x96\xc6\x65\x2a\xf0\xe5\x35\xed\xcb\x9d\xe4\x0f\xf9\x12\xe6\x67\xd0\xaf\x90\xee\x91\xb6\x42\x52\xfb\x78\x1b\x51\x2c\xe3\x51\xb8\xc7\x52\x43\xa7\x08\x6e\xc4\x9f\x4d\x1b\xc8\xd5\x00\x41\xba\xdd\x84\x1f\x18\x5a\xeb\xf5\x6f\x11\x21\x9f\x50\x4c\xad\x13\x81\x6f\x79\x3d\x6d\x87\xb3\x6a\x6f\x79\x27\xf0\x2a\x69\xe7\xc6\x75\x32\xb8\x0b\xb3\xde\x51\x9e\x37\x83\xa8\x80\x1a\x8c\xcb\xf0\xb7\xa9\x62\xe6\x36\x17\x5b\x50\x13\xb3\x0a\xa2\x66\x94\x8a\xf9\x4d\x0e\x39\xf1\x53\x58\x56\x5e\xfc\xf4\x14\xb9\x70\xd5\xda\x51\xae\x84\xcd\x45\x27\x0f\xc1\xc5\x04\x03\xca\x37\xda\xe5\xaa\xa9\x58\x99\x5b\xcb\xd5\xff\x97\x05\xab\x83\xc9\x29\xc0\x9d\x06\xf7\x96\x2e\xe1\xa8\x5d\xdb\xe3\xb6\x02\xf4\x80\x9a\x22\xb2\x7e\x4e\xa0\x3f\x4a\x90\x38\xba\xe8\x5c\xb7\x7e\x1a\xf7\x93\x2c\xb3\x21\xf6\x13\x44\x8b\x97\x15\x69\xeb\x72\xa3\x2d\x39\x2b\xed\x55\x27\x91\x6b\x9d\x56\xc7\x07\x6a\xec\x27\xb0\x71\x4a\x8f\xec\x49\xd5\xcc\x5a\xb1\x71\x3a\xb2\x59\xbe\x43\xe9\xe9\xb3\x0e\x82\x0b\x0f\x1d\x65\x6e\x77\xc7\x23\x33\x99\xc5\x2d\xd3\xa3\x41\x1d\x78\x94\xc6\x51\x11\x85\x8c\x85\x12\xf6\x5a\xcb\x31\x70\xff\x80\x92\x2c\x49\x5b\xf5\xe1\x5d\x16\x64\x7c\x21\xd1\xfb\xdb\x38\xe4\x5c\xbf\xda\x71\x1d\x2f\x69\xb6\x12\x97\xcb\x1c\x27\x7c\xe1\xf9\x17\x6a\xa6\x2e\x48\xc8\xaf\x53\x45\x1e\xc3\x72\x7d\xdc\x7a\xfa\x69\x2f\xe2\xb7\xb8\xdf\x7b\x3a\x2d\x2e\x48\x1d\xd3\xa1\xa4\x4d\xb2\x56\x44\x43\xb0\x04\xd9\xb7\x8a\xf6\x44\xe7\x82\xe9\x60\x31\xf7\x94\xb3\xdb\x59\xc5\x1f\x29\x93\xa8\xb0\xbd\x87\x94\x7a\x14\xd4\x89\x70\x06\xce\x74\x3c\x17\x9a\xf7\x05\xb1\xf9\x51\xc4\x82\x9a\x78\xde\xbd\xb1\xf6\x5e\xfe\x53\x7a\x6c\x8c\xd2\xcd\xc0\x97\x2a\x3e\x9e\x9a\xc6\xcf\xb4\x97\xa2\xac\x3a\xf2\x16\xf7\x33\x0c\x04\x86\x82\xe2\x66\x4c\x4f\x28\x0d\x22\xc9\x64\xd3\x15\x9b\xad\xda\x48\x14\xae\xa4\x43\xe4\xc5\x5a\xcf\xba\x44\xb6\x17\xa5\xaf\x44\x3d\xab\x15\xe2\x55\x02\x70\x5e\x5b\x53\x8f\x4a\xd8\x58\x57\xff\x94\xa5\x0b\x02\xcf\x29\x3d\xd7\x34\xd9\xcd\x68\x64\x4d\x4c\x6b\x10\xa3\x05\x18\x8d\x6b\xe7\x3a\x61\xde\xf5\xa9\x5a\xc5\xe2\xfe\x76\x18\x97\x2c\xeb\xe3\xe7\xf2\xb9\x40\xd5\x79\xcf\xb9\x6a\x8e\xb1\xfd\x88\x0f\x5e\x51\x3a\xf1\xc4\x86\x69\x13\xf8\x83\xf3\xed\x5e\x34\x8a\xd3\xa1\x29\xf8\xaf\x58\xf4\x52\x39\xb2\xad\xab\x34\xa0\x5b\xe6\x11\xc5\x44\xd5\x3f\x75\x44\x3d\x67\x29\xb8\x3e\x7e\xaa\x01\x86\xca\x25\x16\xae\x2e\x05\x4a\x25\xf5\x42\x13\x36\xca\xc6\x76\x34\x30\xae\x32\x83\xf3\xfb\x83\xb1\x6a\x09\x7c\xa0\xa0\x1b\x5d\x6b\x8a\x2c\x12\x4b\x4b\xd5\x52\x77\x7b\x87\x8b\x1d\xe2\x72\xd9\xae\x9a\x6c\x58\x23\x4d\xf8\x1c\xfd\xbe\xca\xf8\x97\x4d\x01\xc7\x7a\xf1\xb4\xf3\x03\x7f\x3d\xf0\xb6\xd6\xec\x27\x86\xb8\xfc\x3d\x9a\x57\x5c\xfa\x6e\x0a\x37\x8a\x34\x8d\x79\x94\x05\x4a\x57\x7d\xbb\x98\x58\x89\xd6\x5a\x6e\x56\xc9\xfe\xcc\x91\xdb\x17\xe6\x0e\xd7\x82\x46\x65\xfd\x20\xcd\xe8\x9f\xd0\x14\x72\x7d\x08\xd7\x07\xba\xa1\xd4\x10\x7f\xeb\x17\xd0\x62\xc0\x8a\x79\x74\xa2\x2a\x87\xef\x35\x75\x98\xba\x59\x54\x44\xf9\x60\x07\x55\xf5\x3e\x37\xd1\x09\xc4\x6c\x47\x65\x06\x70\xd6\x44\xce\xf4\x38\xd5\xe2\x11\x45\xde\x77\x93\x92\x6c\x35\x5a\x1e\xab\x88\x0e\x0c\x5f\x37\x34\xfe\x85\x66\x49\xc7\x89\x2e\x3e\xf3\x75\x83\x48\xf4\xcb\xed\x95\x74\x18\xf9\xa8\x01\x89\x0a\xb6\x14\xbe\x6e\xac\x8d\x13\xb2\x97\x66\xa4\x82\xf6\x2e\x28\x68\xaf\x16\xf0\x89\xcb\x3c\x4a\x13\xed\xc8\xf2\x6e\xa0\x30\x0c\xef\xba\x3e\x5b\x11\x15\xae\x2d\x8d\x9a\xf4\x29\xcc\x5f\xbe\x69\xa0\xd7\xb6\xf3\x28\xe9\xbb\xc7\x6f\x42\xd3\xd4\x6a\x5f\x51\x41\x34\x76\xb1\x7e\xf2\x10\xd7\x59\xc4\x6d\x48\x48\xdf\x0e\xbc\x84\xc9\xc3\x1d\x3a\x6a\x9d\xa9\x5e\x75\xd4\x8a\x1d\x11\x7d\x27\x2a\x33\x97\x54\x49\xf0\x3a\xa6\xb7\x78\x10\x35\xe8\xf4\x80\x12\xbc\x53\xc1\xa6\xfe\x19\x0e\x62\x6c\xf6\xe8\x00\x39\x09\xa3\x17\xf7\x6f\xbe\x4e\x1f\x8f\xe4\xe6\x0c\x96\x29\xa6\xf6\x4f\xa6\xb6\x82\x67\xda\x99\x85\xff\x35\xef\xb5\xcc\x02\xfb\xff\x19\xfb\xd3\x18\x39\xd2\xf4\x3e\x10\x27\xb3\x8a\x6c\xb2\xbb\xd9\xe7\xf4\x68\xf4\xff\xcb\x52\x5a\x1e\x68\x20\x6c\xab\x77\x61\xec\x97\xd5\x87\xcd\x74\xb1\x46\x3d\x2c\x68\xaa\x0b\x45\x0e\x7b\xdc\xc0\x02\xfd\x66\xe6\x9b\x99\xd1\x15\x19\x91\x13\x47\x15\xab\x3f\x0a\xbb\x86\x21\x18\x86\x17\x10\x56\x58\x78\xd7\xb0\x0d\x03\x6b\x49\xb6\xd7\xf2\x68\x74\x8c\xac\x89\xea\x99\xd1\x8c\xe6\xee\xfb\x3e\x78\xdf\x64\xf1\x28\xde\x64\x71\x11\xcf\xef\x79\xde\xf7\x89\xca\xe0\x62\x3f\x75\x66\xb3\x32\x33\xe2\x8d\xf7\x78\x8e\xdf\x81\x12\x8b\x50\xc2\x64\xff\x1e\x98\xa4\x67\x23\xee\x16\x20\x6b\xb8\x0a\xc5\x5b\xb4\xf0\x58\x71\x05\x3f\x36\xbd\xa6\x3a\x30\xa7\x0a\x6d\x2c\xb7\xab\xbd\x15\x82\xfb\x5c\x73\x64\x7a\xbc\xbf\x20\xc8\x3a\xde\x52\x11\xd7\xf1\x1a\x73\xea\xc5\xf2\xdc\xec\x07\x92\xd1\x08\xd1\xa9\xe1\xbc\x5a\x2f\x7a\xa5\x0c\x0a\x0e\x1b\x9a\xe7\x82\x6f\x97\xc0\xf9\x41\x2e\x3d\xdd\x38\xca\x82\x88\xf4\xce\xcb\x1b\x13\x68\x24\xfd\x20\x16\x20\xc8\x4d\xb8\xfd\xdd\xa8\xa3\xa2\x2a\xfb\x5d\x15\x9c\x26\x76\x14\x27\xa6\xa1\x55\xa4\x0a\xcf\x16\x5c\x6f\x3d\xec\xcb\x88\xd3\x8a\x17\x89\xd3\x87\x69\xcf\x4a\x75\xe2\xac\xce\x94\xce\xab\xa2\x57\x6a\x43\xb3\x1c\x73\x1e\x29\x26\x82\x2a\x67\x3d\x5f\xef\xe4\x6b\x33\x9b\x80\x4a\xe2\x6a\x1e\x4c\xa5\x13\x37\x2c\x99\x00\x36\xc9\xc7\xce\x93\x1c\x87\x2c\x90\x34\xae\x20\xec\xf5\xe3\x1e\x99\x90\x0f\xdd\xbb\x17\x74\xd4\xa8\x9b\x29\xd1\x99\x73\xca\xa1\xe3\x9c\x02\xd9\x8a\x2d\x7b\x1c\xed\xa0\x45\xc5\x36\xa4\x85\xe7\xc6\x5c\x54\x8a\xf0\x1f\xaa\x02\xd7\xa7\x85\x92\x43\xde\xac\xc1\x19\x2d\x34\xb3\x60\xdc\x50\x5a\x37\xc8\x5c\xe4\x7a\x5c\xdd\xfd\x1b\xb9\xd9\xa2\xf3\x07\xd0\x89\xc0\x41\xb6\xee\x30\x0b\x2f\xec\x6f\x46\x26\x49\xe2\x15\x1a\x4a\xe7\xa0\xe5\xb4\xed\xd7\x9d\x9d\x44\x3f\x08\x47\x29\x31\x72\xc1\x1b\x9b\x5a\xf3\x09\xca\xec\xe7\xda\x1e\xa9\x7a\xae\xd0\x43\xa5\x16\xc8\x79\xdf\x77\xb6\x49\x36\x8c\x43\xbe\x50\x6c\x51\x7f\xa9\xeb\x07\x7f\x59\xe7\x87\xb3\x6c\xc2\xa0\x37\x45\xab\xd7\x09\x9a\xcf\xcd\x39\x48\x78\xc3\x39\x5a\xd5\x9d\x1e\xdd\x38\xea\x87\x41\x17\x53\x46\x7a\x7b\x9e\xce\x53\xc6\x28\x12\xdb\xf6\xe3\x24\xcb\x23\x93\x11\x29\xdd\xb1\x89\xa1\xf0\xc3\xaf\x55\x82\x7c\x28\x00\x4f\x99\xaa\x46\xa7\x9f\x6e\x2b\x2e\x37\x64\x66\x05\x6e\xe1\xd1\x66\x27\x70\xab\xd8\x81\x2f\x39\x58\xa7\x09\xed\x21\x43\x26\x62\x15\x6d\x7d\x95\x4b\xaf\x2b\xf0\xe4\xd0\x0c\xa1\x80\x89\x8e\x05\x03\x29\xf8\xcd\xc4\xf0\xcd\xcd\x11\x5f\xcc\x92\x9d\x90\xc3\xb9\x79\xb7\xce\x42\x11\x51\xaf\x29\xee\x8a\x0d\x6d\xb7\x8c\xa4\x4c\x88\x23\x08\x81\x38\x48\x7b\xfc\x7a\xe2\xd8\x7a\xb6\xd9\xb3\xdd\x30\x88\xe4\xac\xe3\xa2\x24\x0a\xfa\x52\xa1\xfc\xbc\xda\x6b\x96\xe3\x90\xf8\xde\x26\x01\xf0\x85\xb1\x07\x84\x90\xc0\x9c\xba\xa5\x75\x9e\xd6\x95\x8b\xde\xca\x30\x08\xed\xe3\xae\x84\x37\x7d\x54\x81\x9a\x37\xb5\xa0\x10\x4b\xd5\xa3\x8c\xc1\x24\x79\x64\x6f\xdb\x11\x00\x61\x84\x7f\x41\x67\x23\x8a\xc3\xa7\x70\xa6\xe0\x70\xb8\x56\x11\x2e\x64\x55\x32\x21\xa0\x79\x6d\xe6\xef\xe0\x44\x47\x4f\x76\x1a\x75\x10\xa4\x9c\x7f\x45\x39\x96\x32\x8c\x97\x16\xd5\x5b\x4a\x13\xac\xdc\xbe\xed\xa1\x6c\x4a\x2d\x60\x50\x9e\xb4\x72\x95\x98\xd7\x6d\x1d\xf7\x32\xa3\x40\xfb\x92\x52\x0a\xd7\x9a\x5e\x9c\xd1\xfd\x34\x91\x0d\x7a\xc7\x19\xef\x65\xc3\x3c\xdd\xa5\x48\xd4\xe7\x8a\xc6\xd7\xbe\xe2\xb0\x8a\x1e\x16\x74\x9e\x8e\x80\x8a\x1b\x10\x9a\x0f\x9b\xa4\x47\x82\xa2\xd0\x87\x34\x18\x48\x7a\xfe\x5e\xdb\xb7\x89\xef\xaa\xd3\x25\xb4\x03\x92\x6f\x75\x20\x02\xf6\x67\x95\xfd\xef\x81\x87\x5b\x62\xd3\x6c\x14\x47\x9c\x69\xc8\xae\xa2\xa0\xb9\xe7\x15\xe5\x7f\x9c\x77\x42\xc2\x8e\x91\xe3\x1f\xfa\x45\x6f\x6a\x3d\x93\x0d\xed\x68\x74\x5c\x39\x49\x3e\x86\xa0\x88\x5b\x4c\xd8\x9b\x45\xa0\x49\x33\x37\x83\x38\x09\xb2\xd5\x9d\x9e\x3a\x77\x5f\x61\x42\xae\xd3\x40\x08\x9b\xc1\x7b\x9f\x1e\xc5\x3a\x60\xc4\xb3\x16\x7c\xfa\x40\x71\xcb\x06\x71\x64\xa7\xb4\x6d\x13\xd2\x41\x9c\xd4\x53\x4a\xf3\xf2\xc6\x44\x00\x56\x66\x6f\xd6\x8e\xa5\xa7\xeb\x7c\xd2\x17\x67\x1c\xa3\x54\xd5\xa8\xb3\x6c\x1a\x3f\x83\xf5\x73\x45\x89\xa2\x5e\x57\x27\x17\xfb\x5f\x79\xcf\x67\x67\x72\x9c\x77\x43\x6b\x12\xbe\x56\x5d\x96\xc3\x4e\x7e\x45\x4b\xb6\x4f\x8a\x49\x1c\x9c\x59\x68\x66\x43\x9b\xd8\xa9\xc6\x97\xbf\xce\xbf\xf5\x03\x05\xc5\xda\x46\x90\x29\xf1\x99\x7f\xa0\x94\x5a\x18\xf4\xa4\xb2\x8c\x0a\xfb\xbf\xd0\x0a\xfc\xff\xa2\x6e\xa9\x0c\x81\x24\x80\xfd\x22\x4a\xd0\xcc\x78\xc6\xea\x3f\xa7\xaa\xae\xa7\x95\x8d\x4e\x2f\x48\xd9\xcd\x98\x76\x5f\x80\x79\xd0\x9c\xe6\xd7\xb5\x4e\x3d\x51\x3f\x09\x6c\xd4\xe3\x23\xc5\x49\x35\x2f\xce\x38\x81\xab\x9a\x66\xd9\xd0\x76\x97\xd0\x48\x74\x56\x02\x5f\xfb\x0a\x37\x92\x5f\x57\x6d\xac\x5f\x68\xdc\x86\xed\xef\x52\x65\x8f\x06\x75\x68\x78\x7a\xd2\x1c\x42\x44\xfe\x76\xe1\x5b\xd7\x87\x35\x2f\x72\x13\x9b\x84\x68\xb7\x35\xc4\xbb\xeb\x1b\x4f\xb6\x2b\x3a\xae\x5b\x73\xfa\xaf\xce\x36\xa3\x78\xca\xab\x43\xe2\xc9\x21\x2b\xdd\xdd\x6e\x38\xd2\xc8\x95\x3a\x16\x6c\x96\x27\x9c\x41\x21\x53\x46\x6d\x8c\x5f\x4f\x24\x76\x73\x73\xcd\x11\xba\xac\xcc\x7c\x47\x32\x74\x5e\x91\xe5\xcf\xd7\xa5\xda\x23\x3b\x8a\x59\x8d\x56\x99\x7d\x0b\x9f\x0d\x62\x35\x08\x6e\xde\xa6\x8d\x56\x60\xc6\x2e\x2a\x0f\xe3\x15\x99\x31\x18\xb9\x6d\x6d\x75\xd1\x97\x0b\xd5\x64\xac\xd4\x26\xc3\x60\x99\xc9\x57\xde\x2a\x11\x0d\x3b\x7e\xad\xa4\x1f\xc8\x48\x54\xd4\xfe\x44\xfa\x5b\xf9\xc9\x7e\xaf\xb5\x75\xe4\x9f\x6d\xa6\xf6\x50\x43\xe1\xbd\x5a\xbe\x1e\xf0\xa9\x6a\xda\x8c\x82\x54\x9c\xa2\x30\xdf\xdf\x6d\x29\xf5\xd0\x77\x27\xb4\x02\x5e\x7e\xb9\x99\xc5\xf1\x54\x39\xe5\xf0\x48\x41\x66\x46\x46\x78\xb3\xa5\x54\x91\xcf\x3d\xd0\x8e\x3e\x8a\x93\x91\x09\xf9\x31\x31\x90\x43\x0b\xa0\xde\xaa\xfa\xf3\xd9\xf0\x21\x7f\xe8\xaf\x6b\x79\x1e\x2e\xe5\x6a\x3f\x6d\x91\xcd\x20\xbf\x1a\x6a\x3f\x91\x1c\x9b\x17\xa4\x7f\xb3\x6e\x4d\xe5\x99\x19\xd2\x66\x23\xbc\x25\xdf\xa9\x7d\x07\x57\x86\x34\x77\xb2\xc9\xb6\xaf\x9c\x41\xbd\xa0\x4b\x91\x8d\xde\x9b\xbf\xa9\x2d\xf5\xbe\x59\xcb\x3f\x78\x25\xce\x93\x08\x41\x94\x2f\x73\x79\x5c\xdc\x85\xca\x30\xf4\x7a\x29\x0d\x83\x98\x11\x53\xe4\x82\x79\x55\x00\x2f\xa1\x95\xd3\xf9\xaf\xa8\xb1\x8a\x4d\xfc\x24\xae\x87\x39\x9b\xdc\x7f\x11\x06\xe7\xd3\xea\x00\x33\x83\x91\xc9\x82\x34\xa3\xa7\x83\x38\x1a\x36\xdd\xfc\x7a\x22\x89\x3d\x38\xf3\x52\xb3\x1f\x27\x76\x99\x9d\x6e\x5d\x8d\xcb\xf5\xa1\xdf\xaf\xd5\xfb\x1d\x84\x71\x87\xa6\x01\xdd\xbf\x00\x6b\xcb\x6f\xd8\x5a\x9c\x7e\xc5\x46\x4b\x41\xc4\x91\x63\x05\x27\x27\x44\x8a\xad\x87\x40\x99\x1d\x8d\xf3\xa4\x3b\x34\x5e\x31\x05\x07\xfc\x3f\x53\xe0\xa4\xbf\x6b\xf9\x5c\xc1\x43\x3b\x4d\x9a\xda\x51\x27\x0c\xe4\xf0\x40\xb6\x7f\x1c\x73\x8d\xdf\x54\x0a\xfa\x26\x5c\xdd\x51\x0e\x34\x47\x10\x78\x34\xda\x9b\x1c\x99\x3c\xe9\x26\x6f\x22\x60\x42\x0e\x7e\x54\x01\x38\x46\x71\x9e\xda\x2c\x31\x63\x9c\xd0\x78\x98\x47\xd0\x7e\xe7\x37\x8a\xab\x9a\xc5\x87\x82\x2e\x45\x74\xe2\xc6\xe3\x35\x0d\x4e\x21\x38\x11\x33\xc7\xa7\x7d\x0e\x13\x92\xe6\xbb\x2b\x1d\xb9\x56\xb3\x22\xf6\x6e\x1d\x48\x52\x2f\x07\x24\xcd\x0d\x24\x22\xc2\x63\x85\xaf\xb4\x60\xd2\x09\x12\x5f\x7e\x71\x64\xbe\x91\x07\xa1\xe9\xc5\x89\xe1\x36\x89\xa3\x2e\xb9\x83\xf1\x3e\x6d\xaa\x88\x80\x1f\x6a\x7b\x09\xa5\x6c\x98\x04\x61\x58\xf1\x4e\x86\x1c\x15\xbf\x9e\xa0\x3f\xff\x76\xb3\x13\x67\x43\x52\x9b\xc1\xbd\x30\x23\x17\xcf\x01\x46\x03\x08\xe7\x3f\x9b\xd8\x01\x0e\xbc\xd0\xcc\x4c\x0a\x33\x09\xac\xfa\x7b\x6a\x07\xb8\x37\x91\x7b\xcf\x1e\x68\xa6\x2b\x80\x19\xef\xf7\x95\x79\xf7\x30\x38\x2e\x92\x50\xf4\x11\x87\x1e\xea\xd9\x69\x75\x8e\x1e\x2b\x14\xff\x6f\x5d\x89\xb8\x9d\x57\xae\xba\x53\x13\xf5\x07\x7a\x22\x7d\x03\x22\x41\xf9\xa0\x5d\x50\xee\x62\xd5\x0b\xaa\xed\xd9\x31\xc9\x74\x25\xec\x61\x25\x49\x5f\x57\xbd\xac\x04\x8d\xfe\xbc\x78\xd4\x1d\x0d\x4b\x4b\xc9\xb4\x52\xf0\x03\x10\x47\x6a\x13\xde\x0b\xf6\x53\x8c\xb3\x34\x4f\x6b\x58\xff\xc1\xa8\xdc\x22\x49\x97\xed\xa0\x28\x34\x01\xf4\x2b\x0d\xbc\xc7\x94\xa2\xb9\xe9\xda\x5d\xe5\x9c\x70\x2a\x74\xde\xb2\x9f\x63\x31\x4d\xed\xac\x34\x75\x70\x66\x37\xd6\xbc\xc4\xcc\x66\x4b\xa1\xac\x80\x24\x15\x93\xf8\xcf\xa9\x21\x0a\xc3\x38\x8e\x82\x34\x4b\x15\x2e\xf4\x92\xc2\x85\x5e\x52\x8e\x71\xfd\xc4\x74\xa1\xe4\xcf\x71\x1b\xf6\x8f\x93\x54\x7c\xe1\xd7\x13\x33\x6c\xef\x5e\x8a\xbf\x77\x94\x57\x06\x58\xec\x86\x96\x3f\x46\x79\x04\xa8\x8e\x9d\x6d\xdf\xab\x3b\x52\xa8\x2d\xef\xbb\x8a\x7a\x94\xd8\xcc\x04\x61\x10\x0d\x76\xd0\xfd\x21\xe5\x3a\x89\x09\x85\x12\x13\x4c\x09\x90\x1c\x5f\x53\x9e\xac\xec\xdb\x25\x21\xd5\x16\xff\xa8\x83\x33\xcd\x17\x67\x0f\xd0\x73\x92\xbe\x63\xf9\x51\x7e\x3d\xd1\x65\x2e\xc3\xd1\xc0\x75\xb8\x70\xf6\xbe\xa3\xf5\xab\xde\xa9\x51\x1b\x59\x68\x66\xc1\xc8\x66\x46\xd4\x46\x44\xab\xcc\x4f\x88\x4f\x54\x5b\xd1\x9a\x34\xb0\xc9\x23\x15\xf1\x3f\x9a\x05\xcc\xb7\x68\x69\x9b\x3a\x9a\x96\xc8\x87\x2e\xd1\xd9\x87\xb8\x84\x55\x63\xdd\xcc\x5b\x9c\xf1\xcc\x2e\x3f\x23\x5b\xbe\x06\x8a\xd5\xec\x84\x07\xcb\x55\x26\x55\xce\xc7\x94\x79\x7c\xca\x24\x72\x66\x88\xa8\xf6\xd6\x59\x84\xc2\x9c\xbf\x27\xe3\x98\xe8\x02\x99\x12\x75\xb9\x5d\x29\x34\xd1\xed\xe1\xcd\xc9\xe2\x61\x1e\xb2\xe6\xde\xbd\xbf\x46\xa8\x5e\x34\x64\x5f\x2b\x94\xf6\x32\xd3\xf3\xe4\xc1\xd0\x34\x71\x04\xec\x2f\x7f\x9d\xf3\x4d\xa6\x78\x20\xaf\x3c\x4a\xf4\x2e\xd6\xa1\xa5\xd1\xc1\x39\xfb\x53\x62\x8a\x21\xe8\x3c\x0c\x3e\x98\xdb\x18\x5c\xd7\xf7\x2a\xa6\x2b\x94\x25\x3e\xc4\xaa\x42\x49\xe6\xb8\x0a\xcb\xb7\x29\x86\xc6\xae\x36\xc4\xe7\x10\x02\xb0\xac\x0b\xca\x5b\x37\x09\x24\x02\xf8\xe9\x29\x0e\x45\xa4\x0d\x41\x78\x24\x86\xf8\x29\x4a\xc1\x5d\x6a\xff\xe2\xe7\x3f\xb7\xe6\xd5\x4a\xbf\x5b\x6c\xff\x22\x1f\x1f\xd7\x21\x92\xcb\xea\xdd\x32\xf3\xe9\x00\x15\x82\x9c\x57\xf5\x3c\x53\x34\xbe\x3a\xeb\x5b\x33\xe5\x13\x46\x4c\xb0\x41\x0a\xbd\x28\xad\x14\x35\x00\xf5\x26\x44\xd8\x70\x82\xca\x1c\x6c\x28\x95\xf7\x7a\xc5\xa2\xcc\x8e\xca\x49\xc0\xa1\xb6\x0b\x9d\x1d\x88\xf8\x64\xcb\x17\x7c\x06\x36\x2b\x0f\xdb\x3d\x1e\xb0\xf7\x37\xf4\x0b\x78\x5c\x8d\x76\xf9\x18\x9d\x35\xb9\x1f\x2e\xc6\x0b\x4a\x56\xed\xf9\x8b\x3f\x2f\x2a\x22\x13\xe5\x40\x8a\x30\xa2\xb2\x4d\xd8\xe0\x07\xc1\xef\x0a\xef\xba\xcd\xce\x75\xd8\x76\xcf\x28\xee\x92\x2f\x32\x27\xb6\x9f\x47\xbd\xad\x7e\xcc\xbf\xf3\xa2\xeb\x3a\x7b\x1c\x4d\x1f\x02\xe3\x84\x24\x15\xd6\x4b\x79\xad\xc2\x86\x51\x8e\x53\xc3\x24\x5e\xe1\xdc\x0c\x20\x00\x96\x2e\xc1\x2d\xfe\xac\xe5\xb5\x9b\xb0\x60\xd9\x24\xde\x9d\xb8\x9d\x78\x95\x2f\x09\x9b\xfe\x54\xdb\x1f\x00\x53\x6b\x52\x78\xee\xd9\x34\x0e\xe5\x74\x12\xa7\xc9\x86\x13\x13\x3f\xa6\xe4\xb5\x46\x41\xd4\xb5\x23\x6b\xb2\x69\xfa\x56\x4c\xc7\xa3\x88\xb7\xc4\x6f\xa6\xe1\x04\x58\x8e\x62\xf2\x89\x2b\x8d\x2f\xb0\xd8\x1c\xfc\x17\x6c\xdb\xec\xb9\xc2\x6f\x54\x55\x81\xa0\x77\x04\xaf\x9f\xae\xc2\xa5\x1a\x4a\x1d\xcd\xb7\x9b\x2b\x55\xe1\x63\x0e\xf0\x6a\xf2\x2c\x1e\x24\x66\x3c\x94\x8e\x87\x8e\x18\x01\x0f\xb9\x8c\x05\x20\x43\x59\xb7\x65\x9b\x28\x0b\xb2\x24\x4f\xb1\xe1\xa1\x3c\x06\x3a\x15\xbf\x5e\xf3\x75\xaa\x57\xe2\xd4\x2a\xe6\xe0\x4f\x71\x7f\xfc\xa6\xce\x82\x25\xed\xe6\x59\x16\x4a\x8f\xc2\x09\x29\x78\x51\x85\x5a\x33\xe9\x5e\xbc\x12\x4d\x97\x93\x19\x1b\xfe\x4d\xec\x75\xec\x60\x4c\x9b\x3c\xf6\x85\xc7\xda\xca\x6c\x7f\xeb\x81\x37\x3f\xdf\x3c\x38\x33\xfb\x84\x92\x65\x38\x87\xc7\x89\x1d\x10\x1a\xdd\x00\xa0\x32\x1e\x87\x4b\x28\x6b\xf4\x6c\xf9\xaf\xb0\xb9\x21\x7b\x45\x2b\x09\x05\x1c\xd6\x03\xc4\xde\xba\xa6\x18\xed\x8d\x76\x79\xe1\x52\xa2\xa0\xf1\x41\x24\xf3\x0e\x2d\x2f\x76\x7d\x6c\xa9\xfe\xe5\xdf\x6a\x1a\xed\xdd\x96\xd7\x2e\xf8\x84\xb6\x72\x7c\xe2\x5a\x5d\x59\xc4\x8c\xc7\xa1\x0d\x83\x25\x78\xd7\xe1\x67\x6e\xb4\xf4\x7a\x29\xbf\x8c\xd5\xb7\x14\xe8\x3b\xee\xa4\x36\x59\xb6\x09\xad\x40\x69\x08\xbe\xd9\xf2\xa8\xfb\x7b\x3a\xfd\xbe\x87\x5b\x15\xbb\x98\x3a\x9e\x4e\xba\x9a\x66\x76\x24\xaa\x76\x2c\xa5\xd8\x56\x4a\xc6\xdb\xd1\x6c\x15\x24\xef\x33\x1e\x53\x6e\xc3\xa0\x63\x13\x6a\xbf\x50\x39\x09\x1b\xd3\x4d\xec\x78\xa2\xd2\xed\x69\xf9\xdb\xd6\xbe\x50\xad\xcd\x51\x03\x14\x06\x61\x0a\x54\x0d\x84\x38\xbf\xd6\xcc\x0f\xd7\x2f\x13\xa5\x41\x0f\x64\x9a\x24\xee\xec\x9b\x6f\x76\xe3\x78\x5c\x5e\x9e\x44\x42\x2c\x28\x58\x28\x76\xc1\xa4\x5f\xf5\xb3\xcd\x71\x62\xd3\x7c\x64\x3a\x21\x7b\xbc\x78\xd5\x73\xd7\x37\x9b\x68\xa4\xbc\xb8\xd0\xec\xd8\x30\xb0\xcb\x16\x45\x40\x04\x0d\x37\x11\x01\x60\x4c\xb1\x45\x4b\x47\xc0\x43\x55\xe2\xa8\x6b\x1f\xf3\xa8\xa8\x69\x20\xff\x71\x46\xa0\x3e\x84\x7a\x02\x0b\x5b\x38\x20\x89\x0b\x06\xdf\xa5\x43\x18\x25\x70\x0e\x2d\x98\xed\xdc\xf2\x2a\x9f\x8c\xde\x77\xad\x97\xbd\x7b\xb9\x6d\x78\xac\x50\x88\xf1\x6d\x6a\x2b\xde\x09\xe5\x26\xbc\x99\x26\x42\x2b\x8a\xbe\x3b\xd7\x1c\x58\x29\x5d\xb2\xbd\xdd\x3e\xfa\x3f\xfc\x04\xe2\x1f\xe7\xf8\xb3\xa8\xbc\xc5\x95\xe0\x28\xdd\x08\x96\xef\x5d\xba\x11\x81\xfd\x94\xbf\xce\xe2\x6a\x85\xa2\xc6\xc2\x97\x00\x99\xdb\x4d\x95\x6f\xa7\xc3\xa0\x8f\x36\xa1\x48\xdb\xf9\x23\xeb\xb5\xe2\x29\xcd\x70\x24\x85\x98\xde\xb4\x0f\x32\xbf\x83\x63\x00\x71\x1b\xd4\xce\xf8\x1f\x0a\x05\x82\xdf\xbe\xa6\xba\x14\x36\x49\xc9\x39\x92\xbe\x05\x1b\x0e\x76\x7d\x74\xca\x6e\x60\x63\xc0\x25\x5f\x53\x99\xa3\x2f\x99\x74\x93\x78\xa5\x87\x8e\xbf\xc4\x8f\x47\x0a\xa5\x0c\x83\x0d\x40\x6c\xdb\x7c\xf6\xf1\x2d\xef\x1b\x10\xaf\x9a\x30\xe3\x99\xa9\x7d\x6e\xf9\x75\x1d\xe7\x2d\xb4\xd1\x20\x1b\x22\x2d\x62\xb5\x35\xfa\x1d\x51\x5e\xdb\xfa\x91\xc5\x99\x66\xdf\x44\x7d\x61\x9d\xca\x37\x7b\xca\x6a\xd5\x7a\x70\xc8\x0d\x22\x57\x95\xf2\x15\xaa\xc2\xb7\xff\x86\x36\x14\xf0\x94\x9b\x9d\xae\x70\xa6\x8f\xe1\xf9\xe7\xe6\x1a\x1e\xb9\xcd\xb0\x0f\xc9\x63\x7d\x38\x46\x25\x52\xae\x56\x62\x81\x1d\xa1\x1d\x93\x5f\xab\xb6\xef\xc8\x26\x8f\x96\x93\x0c\xeb\xeb\x6c\x51\xed\x18\x95\x83\x8f\xca\xde\xfd\x42\xc9\xf6\x6d\xc3\x6a\xc3\xec\xbf\xa1\x22\xe3\x73\xdc\x5d\xc4\x96\x7a\xa5\xe5\xe7\x02\xa8\x96\x9c\xe7\x50\x98\x25\x3a\x75\x7e\xf6\x1e\x56\xea\xcd\xff\x4b\x53\x09\x45\x8d\x03\x9b\x74\x71\x3e\x3b\x63\x22\xaf\x8b\xa4\xfb\xa8\xe9\xd0\x26\x76\x9a\x36\x09\x49\x30\x1b\x5e\x39\xad\xd5\x50\xc2\x09\x9e\x74\x74\xb2\xe5\x33\x9f\xa1\x1d\x05\xe9\x78\x68\x93\xa0\xdb\xd0\xc1\xe5\x15\xad\xdc\x7a\xc5\xcd\x38\x56\xd7\xfc\x65\xd5\x70\xf9\x7b\x6b\x5a\x5a\x83\xb5\xb9\x91\x77\xb0\x28\xa2\xb4\xc9\xca\x9d\x09\xb9\xd7\x5d\xe4\x30\x92\xfa\x95\x03\x8a\xbd\xf0\x57\xda\x4a\xab\xfe\x0c\x6b\x63\xab\x9c\x52\x2c\xbe\x9e\x58\xab\xe0\xf6\x16\x67\xa4\x5e\x82\xec\xe5\xbf\xa1\xad\x0b\x21\xe8\x33\x14\x5b\x20\xf9\x79\x7c\x4d\xf1\xce\x3e\xc2\x12\xc5\xd5\x35\x81\xb4\xa2\x5a\xc2\x7f\xdf\xa4\x1c\x09\xf1\xc1\x35\x54\x6e\x85\xa1\x52\x66\x1e\xe2\x9d\xe1\x7d\x29\x18\x42\x87\x21\x78\x02\xe7\x25\x8e\xbc\x6b\xad\xc6\xcb\x2f\xcb\xd9\xd9\x16\xc8\xc0\x38\xb1\xbd\xa0\x9b\xd9\x1e\xce\x6d\xf4\xf7\xb6\xb7\xd5\xfc\x7b\x47\x35\x70\x21\xee\xc1\x42\xbd\x4a\x62\x2f\x88\x96\xe3\xa0\xcb\xc2\x79\x2c\xef\xdd\xf2\xca\xf1\x17\x34\x6b\x70\x68\xbb\x4b\x71\xbf\x3f\xe5\xb7\x91\x3b\xaa\x6f\xc2\x9a\x80\x82\x9a\xdb\xe3\xf8\x19\xc9\x88\xf3\x67\xd6\xdb\x41\x96\x2e\xe2\x3b\xca\x1d\xd6\x46\x3d\x1b\x75\x01\xf2\xc3\xf6\xf5\x7f\xd2\xf7\xf3\x6b\x85\xcc\x1d\x44\x41\x86\xbf\xab\x71\xc3\x9b\x28\xc2\xff\x66\xb3\x13\x27\x49\xbc\xe2\xf2\x39\x3c\x2e\xa8\xf9\xf3\xeb\x3a\xd0\x49\xda\x8d\xc7\xd8\xb1\x74\xd0\x2f\x71\xbe\x2e\x0d\x27\x29\x9b\xf3\x49\xdb\xa8\xa1\x24\x85\xb4\x36\x17\xa6\x0b\xff\x8b\xda\x7c\x52\x93\x05\x69\x9f\x05\x03\x18\x35\xa2\x92\xc1\xf3\xae\x6a\xdd\xb3\x49\xb0\xec\x69\x6d\xb8\xe5\x7b\xca\x04\xe0\x5e\x0d\x97\x26\x5e\x0a\xcd\x73\x24\x15\x58\xab\x80\x52\x43\x65\x34\xa3\x51\x1c\x05\x39\x2c\x4e\x99\xe5\x42\x77\x2f\x8c\x17\xbd\x5f\x27\xf9\x90\xbe\xdc\xf9\x72\x7a\xd9\xf1\x0b\x2d\x6d\xfa\x93\x8e\x6c\x16\x74\x41\x2a\x11\x51\xaa\x72\x5b\x93\xf2\x88\xf7\xa1\x14\xee\x2e\x86\xed\x72\x4b\x55\xf6\x6f\x2b\xa5\x87\x9f\xd3\xac\xe6\x8f\xb4\x94\x78\x05\x1b\xfb\x8b\x4e\xe3\x93\x3a\xd9\x62\xea\xab\x53\x26\x3d\xa9\xda\x03\x27\xcb\x14\x44\xdc\x81\x7a\xa3\x20\x0a\xd2\x0c\x32\x90\xbb\xe8\x12\x50\x6f\x01\xca\x5d\x8c\x5c\x5c\xe7\xf1\x1f\x3c\xb5\xa6\xba\x56\x77\x34\x1e\xfb\x8e\x32\x56\x3c\xae\x78\x92\xef\xe3\xa2\x59\x2a\xcc\xc7\xa6\xf9\x78\x1c\xae\xee\xa6\x85\x82\x9a\xd7\xbf\xd4\x51\xd5\x39\x8a\x71\x78\xd9\x55\x37\x68\x89\x77\x0e\x7c\x01\xf8\x3e\x87\x35\x28\x77\x54\xd7\x41\x73\xfe\x2b\x5c\x9c\x46\xb5\x7d\x6a\x4d\x2d\xf6\x20\x0b\x5e\xb5\x51\x4a\x10\x3f\x69\xc6\x7a\x63\xda\x13\x6a\x61\x9e\xa8\x96\x1a\x5d\x3b\x1a\x95\x3f\x27\x08\xcd\xf4\x6e\x7e\x33\x21\x9c\x3d\x3f\xdf\x4c\xcd\xaa\x44\xd6\x0c\xcf\x59\x53\xa4\xae\xed\x6d\x27\x3c\x3d\x24\x59\xb2\x29\x8f\xed\xe0\xfb\x93\x8e\x80\x8f\x45\x3e\xa8\x75\x27\x1d\x05\x91\x4d\x4c\x98\x22\x6c\x12\xd9\x0d\xba\x3c\x6e\xaa\xb7\x2a\x4a\x64\x98\x8b\xd2\x6f\x9f\x84\xea\xce\x37\xf3\xa8\x97\x73\xec\xc0\x98\x12\xe5\xd1\x71\xbc\x4e\x46\x67\x64\x12\xe2\xd4\x38\x94\xd8\x4d\xb5\xde\x6f\xd6\x38\x6f\x34\xfb\x24\xc8\x35\xed\x97\x3a\x2b\x44\x39\x19\xb3\x45\xa9\x6b\xfc\x05\x42\x12\xd4\x00\x7f\x51\xe9\x2f\xc6\xc9\xea\xd3\xb8\x1d\xec\xe0\xd7\xe8\x44\x55\x4a\xeb\x42\x5e\x42\x6b\x44\x64\x56\xe9\xfb\x1c\xd6\xb5\x3c\xcc\x30\xf0\x77\x31\x6a\x22\x6c\x44\x8f\x0b\xf0\x75\x24\x53\xaa\x3c\x2f\x3d\x9d\xe9\x35\x9c\xc8\x4e\x65\xed\x45\xc9\x35\xee\x52\x4c\x8f\x6c\x75\xa3\xf0\x7a\x1b\x88\xc3\x10\x13\xbf\xa6\xe1\xd8\x9f\x16\x5e\x41\x14\xde\x4f\x00\xc6\xfc\x09\x0a\x1d\x88\x9c\x36\x1c\x8c\x91\xda\x13\x0d\x7f\x7a\xf1\x4e\xc5\x6f\x5a\x8f\x6b\x2b\xb5\x98\x85\x32\xb0\x35\x7d\xa8\xd4\xbf\x3f\x9c\xe8\x49\xcd\xcd\x35\x57\x0c\x2b\x1e\xb0\x9d\xa4\x32\x38\xf9\x4c\x85\xa2\xfb\x7e\xf7\x77\xa7\x1a\x5f\x9d\x65\xad\x0e\x24\x09\x28\xfd\xf1\x22\xc2\x0d\xdf\x50\x26\x23\xe3\x3c\x0c\xb2\x57\xf9\xb9\x2b\x6f\x52\x51\x7e\xd9\xe4\xd9\x89\x66\x13\x48\x56\xac\x76\xa8\xcd\xa3\x59\xf7\xfb\x21\x7a\x76\x72\xa0\xfa\x29\x0a\xee\x36\xe0\x21\x7f\xd6\x52\xd2\xb0\xef\xe2\x99\x22\xf8\xb8\xae\x48\x05\x7f\x4c\xf3\x03\x79\xd6\x77\x5b\x9f\x57\xca\xd8\x26\xb1\xc3\x38\xec\x91\x35\xac\x2a\x61\x55\xb6\xa0\xd6\xd6\xf2\xa9\x13\x6c\x35\x2b\xab\x36\x61\x52\x1d\x8a\x3c\x1f\x70\xc5\x12\x9d\x22\xde\xb1\xb0\xdb\xfc\xa8\xa6\xe1\xbe\xd0\x34\xc9\x08\xa9\xbd\x87\x03\x9c\xd4\xe4\xb1\x93\x0f\x94\x8b\xed\xa3\x8b\x26\x31\xfb\x59\xd5\x43\x00\xf0\x4a\x09\xa2\x88\xdb\xf7\xe9\x5a\x31\x91\x60\x34\x4e\xe2\x65\xa9\x2f\x60\xe6\xfc\x58\xcd\xa2\x1f\x6b\x2d\xcc\x38\x0a\x1a\x4a\x0f\x66\xbd\xa5\xed\x2b\xf7\xb8\x44\x2d\xef\x49\x2f\x10\x5b\xd1\x2d\x2c\x73\x7e\xa3\x23\xfa\xcc\x8a\xfc\x98\xf8\x2b\x96\x0f\x82\x5f\xab\xde\x46\x2f\xa1\x79\xee\x60\x56\x9f\xd2\x34\xe0\xd7\xc5\x33\x9e\x53\x13\xc4\x36\x1a\x04\x91\x85\x4f\xfe\x82\x63\x12\xfb\xea\xf1\xbb\x75\x9b\xdc\x70\xb5\x93\x04\xd0\xb8\xc7\x16\x03\xa6\x21\x62\xe7\x63\x15\x58\xa5\x46\xa6\xfd\x56\x10\xd1\xe6\x8e\x9d\xe4\x8f\xf0\xc4\x71\x70\x80\xcb\x22\x88\xbf\x1a\xe9\xa5\x34\x0e\x97\x5d\xa0\x87\x4b\x43\xc7\x86\x5f\x4f\xd4\x18\xe7\xe6\x9a\x49\x9e\xa6\x71\x43\x35\x67\x40\x61\x92\xb0\x64\x12\x09\xf1\x7c\x93\x4a\x3a\x5b\x6d\xd5\x95\xfc\xde\xa4\xaf\xba\xf3\x62\x95\xad\x42\xe4\x77\x3d\x3e\xf0\x62\x0d\x46\xae\x99\x47\x49\xce\x2d\x48\x11\x33\xf7\xbe\x02\xef\x55\x02\xb1\x3c\xc8\x76\x35\x0e\xce\x6c\x82\xa0\x88\x06\xe4\x77\x30\xf3\x91\x26\x9d\xd7\x0e\x3b\xa0\xe0\x8a\x77\x80\xd7\x73\x65\xde\x1e\x66\xcb\x75\x4c\x75\x24\x0e\xd7\x1d\x73\xaa\x1b\x87\xa1\x19\xa7\x76\x87\xf2\xd5\xbf\x46\x5b\x36\x3e\xc6\xe8\x2a\x2d\xef\x8d\x87\xfe\x58\x5b\x01\xcc\xd5\x23\x1f\xc5\x63\x55\x1b\x80\x21\x17\xbf\xae\xd1\x69\xde\x2f\xc5\x31\x7e\x00\xdc\xec\xa9\x7a\x88\x28\x4e\xaf\x89\x80\xf7\x5b\x9c\x11\x1b\x8c\x5b\xe8\x40\x21\xfb\x3b\x4d\x17\x28\xe2\x13\x5e\xc8\xca\x46\xfd\x38\xe9\xda\x91\x38\x57\xd4\x25\x1b\xbe\x90\x1a\x19\xf4\x8b\x59\xeb\x54\x38\x9c\xe5\xc0\xe2\x54\x67\x80\x12\x96\xd7\x06\x45\xbe\x98\xe1\x97\x8b\x2d\xe6\xb3\x7b\xf7\x36\xf7\xee\x6d\xe8\x5a\x1f\xf6\x64\x29\xfc\x29\x47\xd3\x38\xb1\x26\x62\xe3\x3e\xa7\xe1\x33\x37\xe7\x34\x7c\xa4\x49\x92\xc4\xa6\x47\x35\x55\x54\x89\xd0\x98\xe7\xfe\x97\x56\x73\x3f\x33\x81\x0d\x21\xcd\xbf\x60\x94\x87\x86\x2c\x02\xb1\x68\x2b\x8f\x99\xdf\x3c\x50\xd7\xd0\x1e\x3a\x14\x47\x53\xda\xb8\xeb\x84\xaa\xcc\x6d\xd7\xce\x90\x0f\xb5\xeb\x78\x0a\x2b\xd6\x2e\x85\xab\x53\x53\xda\xfd\xdf\x67\x94\x40\x36\xe0\xcb\xfe\xae\x82\xd2\xb5\xdd\x20\xce\xd3\x9d\xd4\xd3\x44\x2b\xed\x36\x38\xb5\x58\x1b\xef\x6a\xb7\xca\x77\xa9\xb8\xc9\x7f\x85\xe1\x16\xe5\x73\xcf\xeb\x3c\xa5\x9e\xb7\x3d\x44\xfc\xaf\x65\xfb\xe0\x22\xd4\xa4\x47\x6c\x1a\x0c\x22\x13\xba\x0d\xca\xf9\xb0\x78\x4f\x96\xe2\x0b\xca\x26\x9a\xa4\x44\xd3\xcc\x46\xdd\xc0\x62\xe7\x45\x49\xe0\x72\xcb\x6b\x75\x5e\xae\x83\xba\x75\x87\xac\x50\x54\x57\xc6\x51\xa0\xf3\xa1\x89\x06\xb6\x07\x07\x00\x86\x4f\x28\xe4\x12\x5b\x92\x38\x6c\xf8\xc1\x99\x0a\xc6\x82\xff\x3f\x96\x9d\x88\xba\x3f\xa6\x12\xfa\x43\x99\xb4\x01\xa4\x89\xac\x1d\x7b\x30\xed\xb0\x17\xdc\x70\x8d\xac\x5e\x3c\xa2\x83\x46\xdc\x89\x95\xce\xef\xf3\xae\xcf\xe8\x83\xb8\x7b\x2d\xed\xa9\x3f\x1a\x13\x80\x89\x82\x25\x94\xa6\xa7\xd7\x34\x24\x89\x86\x01\x0b\xb0\x41\x49\x9c\xa8\xd7\x39\x7a\x4a\x79\x16\xd8\x30\x9d\x9e\xd0\x8e\x92\x86\xe7\x55\x0a\x0a\x2a\x95\x67\x84\xa6\xbb\xdb\xaa\xa7\x69\x92\x8c\xb5\xfc\x85\x6d\xe6\x2b\x71\xe7\x5a\x3e\xbc\xeb\x86\x71\x0a\x13\xfd\x83\x33\xf3\x9b\xef\xd3\x50\x6e\xbe\x5f\xd3\x57\xd9\x4f\x6a\x46\xae\x63\x21\x7e\x6b\x34\xf4\xfc\x46\x45\x00\xbd\xc0\x84\x88\xbe\xdc\x29\xe3\x54\x04\x2e\x7a\xd6\x49\x36\x0c\x29\x23\x27\x4a\x27\x37\x64\x6e\xb5\xb4\xe0\x12\x86\x81\xff\x45\x1b\xf1\xde\x53\x21\x6e\x1d\xc3\x79\xa1\x99\x66\x71\x77\x89\x1f\xbf\x76\x06\x13\x81\x7b\x55\x0f\xbd\xdf\xaa\xea\x9b\x87\xe1\xea\x94\xef\x8e\xe0\xa7\x70\x04\x89\xf1\xbc\x4c\xe5\xa7\x75\x35\x5d\x7c\xfc\xcb\x7b\x45\xf0\xff\x7b\x4a\x7a\xec\xf7\x8a\x67\x74\x19\x20\xcd\x92\x9c\x10\x3e\x0f\xa9\x80\x92\x01\xaa\xdc\x79\xc6\x9c\xc3\xfd\x7e\x40\xdf\x04\x24\xe5\x75\x1c\x1e\xf8\x5a\x20\x82\x50\xe4\xbc\x49\x4f\x99\x0d\x95\x2a\x79\x97\x4d\x56\x9f\xa6\xe3\x87\xeb\x86\xca\x91\xf8\xa1\xb6\x2f\x98\x3c\xf9\xc4\x9a\xda\x92\x3e\xa5\xe4\x4c\xba\x08\xbe\x5a\xf5\x46\xa1\xac\x3d\x8e\x69\x1e\x1b\x5f\xb2\xab\xc4\x78\x67\xde\xcf\x5a\xde\xe5\x71\x8a\x2a\x9f\x90\xe4\xbd\xab\x54\x95\xef\x73\xa4\x8d\xed\xeb\x0d\xa0\x0e\x10\x45\xdc\x47\x61\x1b\xa7\xca\x65\xd4\x64\x11\x91\xbd\xab\x8c\x26\x6f\x90\x30\x01\x8e\xc6\x1b\x2d\xbf\x1c\x3a\x26\x89\x59\x6e\x4c\x82\x50\x15\x90\x56\x62\x98\x41\x36\xdc\x49\xf7\x80\x73\xfa\xaa\xd2\x36\xdc\xa6\x38\x25\x6b\xda\x76\xe9\x6a\x4b\x35\x25\xa1\xed\x2d\xaa\x66\x35\x26\x68\x61\x90\x01\xc7\x0d\xfe\xd3\x5d\x0a\xa7\xb0\x95\x9e\x29\x3c\x98\x61\xbd\xf0\x8e\xe9\x19\x09\xc3\xd8\x24\xce\xd3\x29\x0f\xe6\xb8\xa2\xf4\xcf\x2e\x60\x7c\x90\xcc\xfd\x4c\x09\xc2\x24\xb6\x63\x32\x9b\x4e\xf9\x0e\xc4\x65\x05\xd9\x3a\x46\x7b\x2a\x1e\xd7\x27\xb5\xb5\x8a\x71\x62\x14\x12\xc5\xf9\xbc\x39\x74\xc9\xa7\xb5\x6b\x6f\x1c\x1a\x16\xec\x40\x01\xe8\xac\x12\x61\x3b\x5b\x53\xc1\x78\xbe\xd9\x8d\xb3\x2c\xc6\x8e\x85\x69\xf9\xb1\x82\xe5\x7c\x5c\xe7\xf2\x53\xee\xb6\xa1\x75\x2a\x3d\x58\x26\x90\x31\xe0\xd7\x0a\xc9\xb6\x14\x84\xf1\xc8\x66\x20\xb8\x89\x58\xd3\xd5\x42\x51\x8f\xae\xd6\xe9\x06\xa5\x79\xaf\x67\xa3\x69\x8f\xd2\x3c\xb3\x45\xe3\xda\xd3\x3e\x0e\xd3\x4c\x41\xad\xa8\x31\xe1\xde\x5c\x7e\x57\xdc\x0d\x4c\x18\x30\xb6\xc1\x29\xf7\x79\x15\x3f\x15\x56\xa5\x36\x0c\x6d\x82\xea\x17\xda\x01\x1b\x0a\x50\xfc\x4f\xb5\x72\xf1\x7b\xf4\x08\x45\xfb\xd8\xfb\xdd\xc7\x49\x56\xe1\x10\x2a\xbb\x8a\x23\x75\x4a\x23\x9d\xc4\x9a\x25\xf7\xa0\x71\x4f\xc7\x95\x70\xd4\x71\x6d\xb3\xd5\x35\x11\xbc\xd3\x11\x34\xdc\x69\xd1\xde\x82\x55\x7c\x44\x19\x38\x80\x26\xc9\xc9\xf2\x44\x4b\x7b\xef\x5e\x48\x47\xd9\x24\xb2\x2e\xb2\x93\x22\x25\x0d\xad\x88\x47\xd7\x81\xc1\xc7\x26\x0b\x28\x32\x9e\x9b\xe3\xbd\xe4\x6d\xba\x47\x7e\xed\x0a\x81\x49\x90\x09\x1d\x50\x28\x84\x2a\xc7\x3e\xe9\xad\xee\x4d\x2f\x88\x21\xa4\x89\x5e\xfa\x35\x2d\xbe\x79\xad\xa5\x1a\x1f\x69\xd0\x93\x4a\x21\x5a\x62\x97\xb0\xef\xf1\x9b\x96\x6f\x86\xa7\x79\x77\xf8\x38\xcd\x32\xec\xca\x37\x90\x33\xe3\x39\x5c\xc3\x3e\x86\x4a\x14\x20\x0f\x7c\xa0\xb5\x14\x02\xfa\x1c\xa6\x9c\x48\xf8\xa9\x6b\x7a\x4a\x29\x81\xef\x56\xb6\xe2\xdb\x40\x97\x91\x18\xb9\xdc\x6c\x91\x22\xb1\x0a\x1f\x56\xee\x34\xb1\x64\xf0\x4d\xd0\x77\x66\xee\x15\xaa\x57\x7c\x89\x6a\x2b\xe1\x60\x6d\xda\x9f\xcf\xdf\xc3\x08\x89\xcb\xb3\x3f\x26\xe1\xae\x04\x9d\xbd\x7f\xa7\x32\x9a\x65\xd3\xa5\x2c\x45\x48\x26\x02\x12\xa2\x3b\xe4\x37\x6a\x9e\x65\x89\x09\x58\x66\x19\x29\x0c\xa8\x43\x28\x49\xff\x44\xd1\xd7\xbf\x5d\x43\xd6\xde\xdf\xcc\xa3\x9e\x4d\x46\x54\xe6\x54\x4e\x9f\x34\xe6\xc2\x80\xf7\x55\x90\xfc\xb9\xf4\xb9\x27\x15\xc3\xe1\x47\x4a\x56\x06\x4a\x76\x98\xeb\xf7\x34\x5f\xf5\xaa\xce\x8b\x3e\xc1\xe3\x44\x99\xf1\x12\xc1\x20\xb1\xb2\xcf\xd3\x39\x0a\xe8\xcb\xa5\x96\xc2\x0f\x1d\xa1\xb3\x1b\xe7\xd8\xcd\x96\x27\xf9\xfe\x2d\x4d\x64\x47\xf9\x3e\xe8\x3d\x3d\x69\x5e\x60\xe1\x9f\x2b\x94\x66\xc0\xce\x35\x45\x0d\x7a\x1b\xdc\x00\x3e\x1f\x5b\x5b\xb0\x48\x2f\xce\x1e\x68\x2e\xce\x80\x0e\x51\xb1\xd9\x11\x39\x25\x89\x45\xe3\x3c\x4b\x60\x45\xb9\xb8\xe0\x85\xfc\x3d\x54\xfb\xb3\x96\xef\x84\xbc\x3b\xb1\x7b\x2e\xce\xc0\x58\x82\x7b\xe4\xa2\x56\x4d\xd7\x2c\x32\xd6\x2a\x60\x8d\x57\x4c\xd2\x7b\xc4\x13\x38\xd7\x31\x0b\xf1\xa8\xff\x1a\x83\xe6\xbc\x8b\x5d\xdd\x10\x82\x14\xac\x3d\xa9\xd7\xc9\x11\x42\x84\x38\xca\x6b\xb9\xe6\x50\xd8\xbd\x89\x27\x86\x83\xf2\x82\x96\xb6\xbb\x80\xc1\x05\x14\x7b\x63\xa2\xb6\x33\x3f\xdf\x4c\xcb\x73\x78\x84\x1b\x82\x70\xc4\xe6\xeb\xaa\x54\xca\x64\x2b\x36\xed\x41\x43\xf4\x87\xba\x92\x83\x44\x05\x17\x75\xa5\x0e\xa5\x60\x97\x83\x9e\x8d\x32\x40\x6e\x9c\x37\xa1\x83\xde\x01\x4d\x81\xbc\xa3\xce\xb6\xbd\x3c\x45\xc7\x63\x36\x7e\x70\x36\xc2\xca\x6c\x58\x19\x05\xd9\x28\xcb\x13\xc8\xa6\x63\xab\x66\x80\x0a\xde\xb0\xbe\x33\x56\xe4\x7f\x28\x3c\x8f\xf7\x4e\xcb\x9b\xb1\x70\xfa\x2a\xce\x42\x5a\x0f\xa7\xce\x96\x60\x64\x0e\x05\xa3\x7c\x44\x49\x95\xb6\x81\x92\x6a\x71\x79\xa1\x42\xe2\xf4\x39\x15\xf5\xbf\xec\x20\xe8\xee\x50\x92\x84\xdf\x6a\x69\xcb\x52\xf6\x9a\x47\x38\x75\x5c\x95\x1a\xd7\x34\xc5\xf5\x8d\x3a\xc9\xd4\x5e\xb0\x1c\x90\x84\x8a\x87\x18\x32\xbb\x8c\xdf\xd4\x91\x38\xc2\x98\x77\x2f\xcc\xbb\x1f\xb6\xbc\xe6\xd4\x0f\xeb\x6c\x2f\xed\x37\xf2\x60\xd9\x84\xe5\x83\xf5\xc1\xc9\xbd\x96\xc7\xdd\x82\x54\x21\x49\xbb\x82\xf9\x24\x36\x4d\xf3\x84\x0d\x53\x1c\xee\xda\xc9\x8d\x9e\x2f\xb4\xf3\xd1\x68\x8c\x8c\x8b\x01\xb4\x2d\x7f\xf6\x9f\x71\xad\xeb\xae\xc9\xba\xc4\xe8\x58\x58\x5c\xf0\xfe\x9b\xde\x8b\xb3\x0e\x6d\x03\xf6\x28\x9f\xa0\xc2\x1b\x57\x09\xe9\x5b\x8a\xf8\xdc\x33\x49\xd6\x89\x4d\x02\xe0\x29\x1e\xd6\xd5\x96\x6a\x73\x68\x31\x59\x7b\x28\xb3\x11\x8d\x3e\x9e\x66\x45\x17\xc5\xa7\xaa\xfe\xcf\xc9\x4c\x17\xbe\x18\x08\xbc\x99\x9b\x8f\xb3\x01\x88\x48\xa5\x1d\xc1\x11\xfd\xab\x36\xdd\x5d\x8e\xb5\x6b\xd5\x95\x8b\x4b\x64\xae\x3d\x00\xf7\x2a\x7e\x97\xfb\x18\x5b\xba\x1a\x0a\xbb\xd5\x40\x86\x44\xcb\x21\xfe\x35\x80\x26\x28\x47\xf9\x1f\x9f\xa2\xfc\x00\xbb\xee\x2f\xad\xed\x51\x8f\x26\x1d\xee\xa1\x6f\x60\x7d\xa2\x42\x81\x3a\x6f\xe2\x7a\x44\x53\xa7\xbc\x50\x84\xc9\x6c\x35\x8c\xe0\xe0\x64\x4b\x09\x5c\xc1\x49\x1d\x4d\xfc\x1d\xca\xd6\x72\x43\x23\x60\x19\xa7\x2a\x42\xec\x0a\x6c\xca\xc6\xe8\x38\xa8\xbf\xab\x96\xe0\x11\xfd\x20\x6d\xdf\xb2\xa8\x98\x8b\xf2\x3e\x51\x12\x70\x9f\x54\xf0\x07\x81\x19\x71\xa2\x2d\x92\x63\xbe\xf1\xf2\x3d\x4d\x75\xbf\xa4\x9c\x51\x46\x79\xda\x0d\xe1\xb3\x21\xc6\xd8\xdb\x55\x75\xf6\x86\xaa\xb4\x6b\x4f\xa8\x34\xce\xa3\x5e\x4a\xce\x80\x28\xa9\xff\x1c\x0d\x41\x7e\x53\xf8\xc2\xfd\x5f\x29\x35\xab\xbf\x2a\x74\xcd\x23\x88\x82\xae\x09\xb9\xc6\x82\x50\x80\x83\x42\xac\x83\x29\xc2\xdb\xb0\xe4\x03\x9e\x03\x5a\x8c\xa7\x26\x12\x11\x92\x3f\xe5\xc0\x1e\x91\x8a\x73\xb9\x99\x9b\x63\x18\xee\xad\x4a\x39\xbf\x4e\xf5\xa9\x1f\x44\xa8\x8e\xb2\x72\x42\xa1\x4e\x00\xe6\x26\xc9\x96\xf9\xcc\x56\x2a\xcd\x7c\xf3\xe0\xcc\xc2\xe7\x94\x30\xfa\xbf\x57\x24\x31\xe6\xe1\x70\x64\x8e\x91\x12\x87\x5e\x0f\xe0\x40\x39\x0f\xb3\x6b\x03\x18\x4f\x4c\xa9\xb5\x96\x17\xd9\x3d\x86\x94\x57\x8a\x3d\x34\xbd\x10\x89\x70\x50\x2b\x7b\x48\x19\xd3\x60\x96\x70\x87\x18\xc7\x0f\xa8\x32\xb8\xa7\x3f\xc5\x1c\x44\x4e\x05\xaa\x0c\x3e\x7d\x8c\x7a\x4f\xd2\x27\xa3\xac\x42\x95\x9a\x44\x64\xe4\xbd\xc2\x5b\xa1\x7e\xda\xf2\x74\x67\x93\xa6\x36\x4d\xa9\x5e\x4e\xd7\xca\x00\x67\x45\x04\x9c\x54\x44\x9e\x9b\x6b\xae\x04\x21\x94\xec\x24\xfa\xd6\xa5\x25\x49\x0f\x86\xd6\xf4\x00\x76\x62\xe5\x92\x2b\x4f\xd0\x6c\x65\x8d\x0f\xcd\x9a\xb9\x46\x25\x4c\x49\xe3\xfd\xc4\x4b\xec\xb2\x35\x22\x5a\x8d\x2d\xfc\x6e\xe1\x7d\x0c\xef\xb6\xfe\xfe\x03\x0a\xd8\x23\xdb\x0b\xe2\x8e\x89\xba\x86\xf6\x55\xc4\xd5\x6f\xe3\xd1\xf2\x9b\x8a\x1a\xd7\x8a\x49\x1e\x56\x66\x14\xc2\xc3\x75\x45\x73\xc5\x58\xd4\x4e\xeb\xe7\x50\xb0\xc1\xcc\x39\xae\x88\xce\xdf\x2a\x7c\x72\xf1\xad\x16\x55\xb0\x1d\x88\xd2\xe9\x9e\xb3\x97\x6d\x2d\xa2\x32\x18\x3f\x4a\x47\x0e\x2a\x95\x1f\xa8\x92\xcd\x3b\x45\x95\xde\x78\x70\xc6\xb7\x81\x55\x19\x46\xc1\x19\x4e\x2b\xa7\x06\x86\xea\x29\xa7\x2d\x39\x68\xfe\x56\x3b\x3a\xfe\xdf\x3a\x6c\x3d\x45\x58\x3d\x6c\xb8\x1b\x95\x61\xb3\x76\xbc\x47\xc5\xa7\x67\xb5\x86\xe3\x5f\xd0\xa5\x09\xd9\x52\x9d\xfe\x18\x33\x6e\x63\xd3\x14\x47\x89\x6d\x1b\xed\x21\x2e\x6a\x5a\x94\x60\xfb\x72\xa1\x98\xf8\xb7\x71\x93\x82\x2e\xf5\x85\xfe\x5d\x00\xd2\x61\x79\x6e\xa7\x4c\x8d\x1b\x47\xae\x7a\x0a\x77\xaa\x91\x8d\x14\x8f\x8e\x6d\x55\xc5\x9f\xca\x1f\x82\x79\xd7\xee\x76\x79\x44\x1b\x33\x17\x00\x9e\x27\xb4\x72\xfe\xe3\x6d\x0f\xff\x5c\xaf\x28\xc4\x29\xb9\xdb\x0f\x10\x9a\x8b\x9c\x8e\x92\x59\x62\x52\x14\x2b\x7b\x2a\x2d\x9f\x91\x09\x08\xf7\xc4\xa1\x0c\xf2\xa5\x3b\xc8\x97\xf8\x8d\xcb\xd7\xed\x68\x9c\xad\x4e\x6b\xf9\x1e\x85\xb8\x7a\x94\xce\x58\x86\x41\xd1\xb0\x60\x37\xfb\x91\xb7\x94\x0a\x42\x13\xbd\x8a\xf4\x06\xb1\x3c\xe3\x15\xf8\x4d\x5d\x60\x9f\x04\xe9\x52\x40\x66\x73\x33\xce\x6c\x93\xee\x11\xbd\xbc\x3b\x95\x06\xee\xd3\xca\xa5\x5a\x53\xbf\xc5\x59\xf8\x36\x0d\x15\xbe\x06\xf4\x3b\xbc\xce\x3c\x63\x39\x8e\xb2\x41\x1c\xf6\x03\xcb\x88\x64\xec\xed\xd3\x6b\x8d\xdf\x79\x51\x5e\x3b\x9c\x65\x3a\xcc\xb3\x5e\xbc\x22\xde\x17\xec\x85\x4a\x57\x24\xbe\xa8\xbe\x9e\x9e\x95\x83\x57\x66\x6c\x73\x73\x52\xb0\xd6\xf2\xae\x24\xd1\x38\xbf\xb9\xa6\x00\x69\x3d\xdb\xb5\xa3\x8e\x4d\xa6\x14\x11\xe1\x4f\x0b\x0f\x3b\xff\x80\x42\x12\xd4\x61\xde\x56\x5c\x89\xf2\x97\x6c\x62\xca\x24\x02\x4a\xc2\xce\xa7\xde\x75\x35\x1a\x9a\x3c\x78\x94\xf8\x82\xfc\x0f\xca\x36\x79\x18\x8f\x46\x06\x35\x27\xfc\x48\x43\x19\x8d\x4d\xd6\xd1\x88\x91\x43\xac\x54\xa9\xfb\xe1\x7c\xbf\xa1\xce\xfd\x1b\xaa\x11\x91\x94\x91\x77\x43\x99\x62\x5d\xd4\xe6\x9e\x17\x5d\xf1\xa7\x67\xc7\x79\xb6\x0a\x8b\x1c\x57\x76\x29\xff\x50\x7c\xb5\x34\x56\x00\x25\xef\xcd\xf3\x98\xfa\x48\xcd\x39\xae\x14\xa9\x84\xf2\x6a\x90\x32\x3f\xde\x56\x56\x24\x27\xd5\xd1\x7c\x45\x5d\x26\x09\x64\x3d\xa9\xce\x70\x10\x11\xd1\xd3\x7a\x93\x4e\x54\x59\x54\xb4\xdd\xb8\x2a\xbe\x73\x41\x04\xd8\x16\x0b\xf4\x16\xfd\x0a\x16\xcc\x34\xd0\xc8\x98\x0c\x8d\x36\x8d\x04\xbf\x59\x53\x84\xed\xd7\x69\x7b\x13\x2b\x2a\x35\x65\x18\xd1\x8b\xa4\xe5\x8f\x0a\xef\x92\xfa\x89\x16\x92\x12\x10\xb9\xdb\x06\x7c\x4c\x77\x43\x41\x78\x5f\x31\xdd\xb8\x93\xba\x5e\xac\x70\x47\xe8\xbe\x2b\x52\xee\x18\xc6\x6b\xee\xf1\x8c\xe3\x88\xc5\x0b\xbd\xa4\x72\x45\x6c\xf9\x09\xd5\xb4\xcc\x6c\x12\x8c\xb0\x81\x38\xf6\xae\x67\x2c\xb3\xb3\x8b\xc3\x1a\x94\xdf\x22\x49\xc3\xd6\x02\xe5\xe2\x0c\xd5\x90\xa0\xef\xcc\xf3\x4d\xf8\xcd\x0d\xa5\x76\xa9\x3a\x0d\xa4\x3f\xb9\x9b\xbe\xd5\x25\xf0\x7b\xb7\x88\x42\xbb\xc0\xd8\x7b\xbf\x5f\xc4\x25\x8a\xcc\xa5\xb6\x58\x7c\x8f\x7e\x0a\xad\xa8\xb7\x0a\xe5\xaf\xf1\x27\x4a\x1a\xe1\xaa\x2b\x4f\xa6\x99\xe9\x04\x61\xf0\x2a\x13\x77\x10\x3d\xa1\x4e\x22\xb3\xd7\x9f\x17\x57\x5a\x95\x5e\x6c\x32\xb0\xe9\x2e\x5f\xc5\xfb\x50\x4f\x84\xdb\x18\x37\xdc\x08\xd2\x0e\x34\x39\x38\x21\xc2\x3f\xdc\x69\xa9\x87\x79\xba\xf0\x5c\xc7\x1f\xa2\xba\xc2\x68\xd2\x07\xb6\xea\x57\x86\x36\xb1\x3b\x3d\xed\x6c\x0b\xb8\xb3\xf1\xd5\x59\xbf\xde\x5e\x5c\x14\xbb\xd3\x67\xda\x9e\x6f\xb4\xa9\xe2\xda\xf5\x4a\x96\xd2\x35\xc9\x6e\xf5\x6d\xdb\x19\xf4\x2f\x46\xfe\xbe\x37\xc8\xd5\x0f\xf4\x1e\x8e\x57\x56\x5c\x4b\x85\x79\x20\xbf\x72\x62\x40\x81\x10\x32\xb7\xeb\x85\x52\xb2\x3d\xad\x0f\xe1\x0e\xb6\x7b\xa7\x53\xec\x48\xdd\x17\x55\x4f\x1c\xe8\xbf\x1e\x22\x58\x8d\x3a\xe2\xd7\x13\xc8\x9e\x72\x4f\x24\xf1\x1e\x96\x18\x14\x5a\x58\xc3\xb9\xaa\x9d\xa8\xd3\x96\xb0\xbd\x01\x1a\x04\x5c\xda\x6b\x69\x10\x8a\xca\x04\xc9\xea\x3d\x88\xd1\x05\x41\x7d\x67\xa7\x06\x1a\xdf\x52\x56\x20\x6c\xb0\x89\x71\xd8\xac\xe3\x35\x0f\xe3\x50\xac\x49\x1d\xad\xd9\xc1\xae\xd7\x8b\x07\x45\xc0\x66\xd4\x31\x69\x6a\x7a\x31\x3e\x5a\x01\x8e\x08\x8b\xda\x0f\x74\xb0\x12\xd0\x9f\x89\x2d\x6f\x43\xf9\xf5\xd6\xb5\xb6\x7b\x41\x3a\xce\x33\xf8\x5f\x03\xbd\xb4\xe9\x5b\xf2\xd9\x30\xce\x53\x13\xa1\xee\x8d\x73\x83\xb5\xdc\xc4\xf6\xd4\x2d\xc3\xe2\x19\xf2\x62\x04\xec\xe8\xff\xd7\xf6\x14\x95\x71\x1c\xae\xa6\xd9\x6a\x62\x23\x3b\xa5\xce\xba\x9f\x16\x5b\x5b\x64\x22\x7a\xb2\x47\x0b\xbf\x64\x5f\xa0\x6d\x1b\xe1\xfb\xe1\x02\xf8\x55\xc9\x8c\x95\xad\xb0\x36\x65\x79\x1d\x5a\xb3\x38\x4d\xfe\xb2\xa5\x7a\xcc\x47\x0a\xc5\x4f\x39\x82\xa4\x0e\xa7\xdc\x3d\xca\xf6\x64\x46\x96\x77\x82\xa1\x15\x1f\x05\x65\xd1\xf9\x3c\x1f\xe5\x1f\x2b\x43\xe6\x1f\x20\xfe\xc6\xfa\xdc\xa0\x56\xac\x74\xbe\x1b\xfb\xe6\xcb\xe3\xb2\x4c\xe7\x70\x2a\xb0\xfc\x2b\x62\xbf\x7b\x5a\x8f\xfd\x02\xb6\x45\x41\x3e\x94\xc7\x20\xbe\xfd\x23\x1a\x2c\xfc\xd1\x8f\x94\x5d\xf7\x11\x54\xbb\x05\x0e\xbf\x35\xbd\xde\xbb\xb7\x99\x66\x49\x3c\xe4\x22\x13\xf7\x0e\x30\x73\xa4\x91\x20\xa1\x67\x3c\x16\xce\x01\x7b\x4d\xd2\x33\x11\xdf\xc9\x6a\xaa\xd0\x47\x3c\x86\x0c\x98\xf5\xa2\xf8\x4d\x25\xe5\x33\x69\x9a\x8f\xf8\xa9\x23\x57\x03\xdc\x0b\xd8\x21\x28\x4f\x63\x65\x1f\x75\x65\xba\x28\xce\x88\xae\xa9\xcb\xe1\x0d\x27\xe8\xbe\xee\x3c\x66\x22\x9b\x67\x89\x29\x37\x7b\x2e\xcf\x21\x78\xfc\xb9\x42\x5b\xfc\x7c\xb2\x05\xbd\xd0\x8c\x23\xa0\x2e\xf1\x78\xce\xd2\xa3\xe6\xd7\x0a\x1b\xf2\x4a\xde\x0b\xba\x81\x09\xb7\x39\xcf\x09\x4b\xa8\x05\x13\xd2\xb6\xc1\x1d\xbe\x96\xee\xf6\x6d\x69\x35\x2c\x2c\x2e\x34\xf7\xcd\x3f\x53\x3e\x43\x44\x23\x67\x15\x62\x9a\xfb\xfb\xe2\x34\xe6\xfd\x17\x2f\x2a\x01\x85\xab\xc0\x4b\x21\x41\xba\x44\xfb\x3f\xb6\xa8\xa3\x74\xb6\xe0\x01\x72\x1f\x0d\x7b\x1d\xc7\x38\x6c\x40\x8e\x53\x07\x63\x7d\x06\x09\x2a\xfa\x83\x0f\xb7\x95\x5a\xe6\x9b\x78\x7c\x48\x88\x36\x34\x91\x12\x6d\x53\x04\x6c\x97\x90\xea\x49\xcf\xdf\x17\xd6\xb7\x11\x9e\x01\x17\x7c\x0b\xad\x50\xe5\x2c\x24\x8d\xa3\x27\xd7\xbc\xad\x59\x3a\x8a\x97\xac\xd6\x62\x3e\xaa\x3d\x27\x8f\xaa\x42\x5c\x62\x43\xea\x98\xa5\x3b\xcb\x87\x24\x9d\x7a\x8f\xb0\xbb\xa1\x70\x15\x8c\x69\xc1\x39\x08\xb3\x19\xbc\x86\xa9\x23\x40\x1d\xd3\x6d\xa7\x48\x60\xc8\xa4\x8a\xe5\x96\x70\xc0\x3d\x4a\x15\x51\x40\x9d\x9f\x68\x37\x94\x6f\xde\xd6\x13\x64\x11\x7b\x39\x55\xad\x10\x58\x5c\xc5\x63\xc0\x24\x67\x49\x6a\x7c\x7a\x53\xa1\xe2\x12\xdb\x5d\x0a\x6d\x8a\xa4\xa1\x92\x69\xa2\xe4\xf4\xaf\x5b\x9e\x57\x01\xb7\x37\xc1\x03\x7b\x97\xed\x60\x30\x70\xde\xde\x2c\xd9\x50\x54\xf4\x1b\xb6\xa6\x0d\x2f\xce\x1e\x68\x06\x51\x37\xcc\x7b\x12\x45\x22\x6c\x3a\x82\x61\xe7\x37\x75\x2e\xeb\x9d\xc4\xb0\x4f\x2b\x0e\x90\xcf\x0a\x7f\xb0\x7c\xa6\x9e\xd3\x8a\xc9\x6c\x32\x20\x7d\x07\x67\xb4\x0b\x25\x10\x7e\xdd\xf2\xb9\x93\x86\x33\x4f\xa9\x16\xf0\x51\x5d\xa6\xe0\xd0\x14\x73\xf2\xa6\xd2\x7a\x4e\xec\x20\xc7\x9c\x78\x48\xb5\x4d\x51\x93\xc0\xd8\x5f\xa7\xde\xa3\xeb\x77\xc2\x04\xb3\x7c\x4e\x78\x1a\x5c\x74\x70\xa9\x8a\x03\xc7\x9e\xd2\xea\xb6\x26\xcd\x58\x47\x0a\x18\xa9\x13\xda\x66\xe7\x4f\x14\x3b\x83\x75\x3b\x84\x4e\xff\xa8\xc7\x3f\xfe\x06\x5a\xe4\xa8\xed\x9c\xd2\x96\xa3\xa7\xea\x48\x0c\xe9\x6f\xb0\xce\xb4\xf3\x42\x75\x93\xf6\xe7\x0a\xaa\x9b\x44\xe9\x23\x1e\x33\xb4\x7d\xcd\x85\x12\xdf\x64\x02\x24\xd7\x70\xd7\x3c\xc7\x15\xcc\x51\x3c\xb4\x7b\x98\x29\x08\xf9\x7f\x5d\xdb\x17\x1f\xbb\x57\x28\x3f\x02\xc4\x4f\xa8\x40\xdc\x57\x11\xdd\xb7\xbe\xa8\xb9\x91\x17\xb6\x76\x57\x0f\xce\x3c\xdf\x9c\x9f\xff\x1c\xce\x68\x91\xce\xc5\x8f\x20\x9e\x84\x36\x3e\x1e\xeb\xf6\x35\xdf\x57\xc6\x8d\x70\xed\x08\xc6\x63\x98\xf8\xff\xa4\x50\x1c\x2d\x76\xe9\x64\xaf\x9c\x96\x66\xa7\x23\x4e\x45\x4c\xb6\xb3\x4d\xa7\x3f\xb6\xc7\x5b\x2a\xfe\xf9\x21\xf6\x40\xd1\x75\x29\xf7\x2d\x54\xa2\x1a\x6b\xe5\x2e\xcd\x55\x5f\x5d\xcc\xbc\x40\x07\x39\x32\xeb\x6b\x38\x6a\xc5\xd4\x5a\xed\x93\x57\x51\x2f\xc1\x9f\x6d\x9b\x90\xac\x9f\x9b\x6b\x9a\x80\x85\xe1\x25\x34\xf7\x2e\xd2\x17\x38\x93\xd6\xe6\x34\xc8\x0d\x77\xb6\xbd\xde\xc7\xca\xd0\x8c\x48\x11\x12\xe3\x78\x49\xa1\xf2\xbe\x8b\xb9\x25\x22\xef\x72\x5e\xc5\xdd\xae\x49\xbd\x6d\x28\xc7\x5c\xb4\x61\x4a\xfc\x55\xd3\x13\x1c\x99\xd0\xac\xa6\x01\x3b\x2e\x73\x05\xa8\xf0\xf5\x96\x3b\x9e\x26\x97\x99\x24\x4b\x81\x41\x47\xc9\xfa\x51\x94\x3c\x10\xa9\x5d\x41\xd4\x05\x48\xd0\x23\x54\xac\xd2\x08\x6e\xe4\x48\xef\x4f\xa0\x62\xe6\xe6\x16\x49\x93\x25\x88\xba\x0e\x8e\xe3\x18\x8a\x5e\xcc\xa9\x26\x0d\x98\x6d\x5a\x93\x84\x81\x65\x12\x89\x33\xd5\x2e\x1f\x13\x36\x95\x5b\x8a\xde\xfd\x1e\x0e\x27\xb1\x40\xab\x41\x58\xd9\x43\x5d\x1b\xba\xbe\x25\xea\x41\xe8\x5b\x4a\x20\xd2\x50\x46\xd7\x35\x62\x64\xa3\x60\x9c\x4e\x79\xf9\x4d\xde\x02\x10\x01\xde\xc3\x04\xc0\x69\x3c\xdd\x96\x10\x2c\xb3\x21\x2b\x8a\xe2\x7c\x7b\x43\xa1\xc9\x27\x5b\xb8\xcf\x36\x6d\x9a\x05\x23\xe3\x50\x60\x52\x87\xa5\x09\x2c\xdc\x22\x5f\xed\x1a\x27\x76\xd9\x46\x59\xfa\x40\x57\x9d\x47\x1d\x0e\xd7\x5a\x36\x21\x16\x8b\x97\x29\x6d\x93\xe8\xa1\x3f\xdc\xd5\x97\xc6\xb7\xef\xc8\x9a\x60\x64\xc1\x3d\xd1\xa6\x18\xcc\xa0\xc4\x16\x2c\xc3\xe8\x6a\x97\x61\x1c\xf7\xe0\x51\x49\xcf\xeb\xf7\x9f\xa0\x0d\xc2\x11\x97\xe7\xb5\xa1\xbf\x2b\xf7\x7c\xc1\x0d\xde\xd0\x24\xc9\xaa\xe2\x3c\x72\x05\x5b\x12\x47\x85\xcf\x4d\x82\x30\x9c\x52\xf5\x7a\x66\xaf\x8a\xb6\x62\x43\x0c\xe2\x77\x7d\xac\x24\x0f\x3a\x36\x18\x54\xd0\xe6\x67\x54\xe3\xfa\x8c\xfa\xfa\xd0\x9a\xd4\x52\xbe\x84\x64\xe4\xb4\xde\x58\x6f\x28\x9b\xa4\x1b\xca\x50\x64\xb2\x32\x7b\x70\x86\xdc\xfe\xdc\x2a\x10\xc1\x82\xf2\x33\x62\x31\xbb\x35\xdc\x7f\x71\xa1\x69\x3a\x71\x9e\xe1\xe6\x9c\x25\xe6\xa2\xb7\xaf\xf1\x2e\x3a\xb5\x09\x6a\x9a\xe5\xe3\x00\xed\x20\x57\xb4\x29\xef\x58\xca\x4e\x12\xa3\xaf\xc4\x49\x12\x48\x43\x48\x04\x84\x7c\x0a\xb7\xab\xed\xb7\x73\x3e\xca\xb1\xb9\x4e\x02\x3f\xe6\xe7\x17\x9a\xc1\x68\x6c\xd8\xe9\xa1\xa2\x35\xc8\x6f\x5a\x5e\x18\x70\x6c\x92\x2c\xe8\x06\x63\x13\x65\xe9\x2e\xda\xf2\xb5\xb0\x1c\xb6\xa1\xeb\x74\x93\x22\x44\x07\x29\xc6\x16\x5b\x62\xfb\x30\xf3\xdb\xa8\x06\xdf\x6d\x29\xb5\xc8\x9f\x20\xf3\xe4\xa4\x35\xcd\x48\x61\x5c\x40\xea\x0d\x6f\xb7\x8e\x28\x17\xe7\xdb\x35\xe4\x90\xfc\x46\x09\x3d\xff\x41\xe1\x59\x7d\x7f\xe0\x1d\x13\xe3\x34\x1b\xc7\x0c\xca\x72\xac\x85\x45\xf7\xba\xce\xe5\x34\xcb\x47\x65\xe6\xef\x9a\x16\xa8\x67\xf1\xeb\x9a\xa7\xf8\x7c\xb3\x9f\x58\x86\x0a\x20\x65\xd7\x2a\x68\xac\xab\x8e\xca\xe7\x4d\x25\x7d\xbe\x64\xc7\xd9\x43\xb4\x5d\x0a\x9e\xb2\xe1\x7c\x45\xaf\xd3\xb9\x21\xd0\xe4\xf2\xb0\xe4\xd7\x2d\x6f\x66\x8b\x0d\x11\xa5\xba\x8f\xf0\x23\xfc\x45\xad\x0a\x2d\x64\x6c\x12\xa2\x53\x88\xf1\xd9\xc7\x34\x50\xfc\x5a\x29\x9c\x07\x51\xcf\x1e\x62\x71\x04\x65\xd0\xe6\xdc\xda\x94\x37\x7d\x66\xc6\xc3\x98\x49\x77\x8e\xfa\xe3\xce\xd1\x2a\x18\xdc\x84\x3d\x52\x92\x15\xa4\x88\x5a\xfa\x17\x95\xf4\xf8\xcd\x96\xaf\x0e\x41\x46\x5e\xe0\x24\x5b\x8f\xac\x83\x33\x2f\x35\x83\x24\xb1\xa1\x5d\x36\x8c\xc8\x94\x74\xd2\xa7\x10\x93\x27\xc4\xbe\xf9\x66\x98\x77\x97\x68\x33\x46\x14\xf2\x7e\x4b\x29\x59\xbd\xef\xf6\x45\xb2\xd2\xc1\xf7\x22\xa4\x81\x49\x36\xbf\xae\xc8\x49\xa4\x79\x28\xce\xd2\xc8\x07\x91\xc1\xf1\xeb\x9a\x53\x6e\xa1\x69\x0f\x0d\x83\x4e\x20\x40\x35\x19\xb0\x29\x6d\x84\xf7\x79\xe9\x4d\x45\x59\x62\xc7\x89\x8d\x6c\x9e\x04\x65\x1e\x3c\xef\x77\x67\x4f\x08\x9a\x6c\x32\xcf\x1e\x20\x5f\x30\xe0\xbe\xb1\x75\xfd\x85\xea\x58\x4c\x2b\x97\xaa\x0a\x0b\x3e\x8e\xba\xb6\x67\x7b\xe4\x52\x2e\x94\x98\xf2\x41\x20\x2a\xbe\xd8\x52\x0c\x96\x5b\xc4\x1f\xe2\x7f\xa8\x78\xda\x1d\x53\x6a\xab\x7d\xdb\xdb\x43\x13\xdc\x69\x47\x95\x93\xd4\x01\xeb\x1c\x92\xf8\xdf\x23\x22\xc3\xa6\xf0\x96\x4e\x18\xd6\x95\xf1\x15\xab\xb7\xe3\x7c\x81\x98\x08\xb2\x11\x16\x8a\x92\xc9\x4f\x03\x2b\x0d\x78\x84\xc6\xd2\x8d\xf1\xfd\xb1\x4d\xdd\xe1\x3f\x56\xab\xb5\x4c\xb5\xfd\x41\x12\xe7\xe3\x86\x86\x9b\x30\x0d\x46\x2a\x25\x75\x15\xbe\x6e\x1c\x65\x49\x1c\x22\xdb\x42\x5c\x70\x5d\x01\x9f\x1e\xd2\x4d\x9a\x9b\x15\x87\x10\xf0\x34\xc8\x19\x75\x37\xd5\x22\xd8\x85\x82\x16\x07\xc6\x67\xba\xed\x49\x76\x6f\xeb\xea\xd8\x79\x55\xa1\xff\x16\xe2\x04\xf1\xae\x52\x2c\x9a\xd3\x64\xa1\xe8\xcc\x2d\x5e\x74\x92\x99\x6f\xbb\xc3\x66\x18\xa7\x59\x10\xda\xdd\x9e\x03\xc2\x4e\x6f\x60\x9d\x6d\x14\x4a\x8a\xbe\x50\x2e\x5f\xeb\xca\x5d\xf1\x3a\x9e\x35\x7e\xe7\x14\x4d\x23\xf9\x23\xba\x79\xd4\x70\x7e\xa0\x24\x68\x7e\xa5\xed\xb3\xae\xb4\x1b\x3f\xa4\xfe\x6c\xb3\xa5\x05\x32\x2e\xd0\x7e\xa8\xcb\xa1\xce\x19\xc9\x9b\x9d\x7c\xac\xdc\x21\x4f\x60\x7e\x60\x9d\x9f\x9f\xa0\x10\x2c\xce\x34\x3b\xb6\x1f\x27\xf6\x21\x27\x2a\xf0\xfb\x4f\xd3\x20\x63\xbd\x9c\xa0\xc4\xc5\x59\x83\x1c\x9c\xd1\xda\x2e\xb3\x9e\xd2\x5e\xfe\xb8\x83\xb8\x96\x37\x2f\xf4\xce\xba\x23\x38\xc9\x3d\x2f\x4e\x52\x70\xcf\x9a\x58\x6f\x3d\x3d\x21\xe9\xf7\xe2\xc2\x0e\x8c\x82\x58\x25\x96\x7f\x8e\x31\x85\xa8\xa9\xe0\x82\x1b\x4e\xb7\xe5\x13\x8c\x35\xe2\x82\xbf\xf6\x9d\xdb\xee\x30\xb0\xcb\x82\x29\x17\x1c\x3d\x5d\x8a\x40\x77\xfc\xae\x90\x06\xa3\x71\x18\xf4\x57\xd1\xd6\x44\xca\x7f\x18\x45\x2b\x7e\xa3\xd4\x2d\x23\xbb\x62\x12\x6c\xb1\xb2\x1a\xcb\xab\x91\xf3\xcd\x8b\x0e\x04\x69\x9a\xdb\xf4\x31\x05\x61\xde\xa4\x51\x56\x66\x69\x7c\x2d\xd7\x5a\x5e\x3b\xed\x24\x7e\x57\x95\x08\x16\x9c\x3f\x7e\x39\x27\xb0\xb4\xbf\xdf\xf2\x86\x0c\x7c\xf8\xf2\x27\x68\x73\x46\x90\xf3\x37\xde\xf0\xe1\xf2\xbf\xd5\xb0\x94\x8f\x78\xae\x55\xa4\xf9\xa5\xa1\x3d\xc9\x3e\xd9\xdf\x8c\xac\x15\xbc\xa2\xe0\xd1\x14\x9f\x52\xfb\x66\x2d\xe7\x61\x64\x13\xd3\x09\x2d\xc8\xb9\xa8\xa3\x31\xbf\x0a\x21\x3d\x7a\xe6\xbc\x95\x9e\x9a\x08\x4e\x16\x67\xca\xa8\x7b\xc4\x3f\x27\xac\x5c\x9d\xeb\x79\xbc\xc0\x28\x8e\xe2\x71\x1c\x06\x36\x05\xe7\xcb\x95\x3b\x9d\xaa\xc1\x45\x15\x0f\x1f\xc7\x0f\xa3\x92\x78\x16\x9b\xa3\xb3\xc4\x9b\x9b\x73\x23\xa8\x98\x0d\xb7\xeb\x2c\x9a\x33\x6b\x23\x33\x80\xd4\x07\x6b\xd4\xd1\xa8\x8b\x5e\x5d\x8d\x65\x48\x27\xef\x74\x20\xe6\xd8\xf0\x34\x5d\x88\x4a\x88\xe5\x53\x4d\xa9\xac\x9f\x18\xe8\xce\xe2\xa1\x1f\x6f\xf9\x48\x70\x52\x82\xa4\xcc\x56\xc7\x26\x64\x34\x75\x6d\xa7\xa6\xda\x1e\x5f\x69\xf8\x62\xc5\x61\xda\xbd\xf8\xb5\x4a\xef\x06\x65\xfa\x64\x4d\x42\x7f\x8a\x34\xf3\x0e\xfd\x29\xbf\xae\x1b\x9e\xb4\x0b\x3e\x6c\xc3\xf9\x16\xb1\xee\x9d\xd8\x7e\xbb\x6c\xdf\xa6\x66\x64\x95\x75\xd0\x69\x6d\x1d\x74\x7a\xe2\xcc\xdf\x37\xdf\xcc\x92\x60\x34\xe5\x61\x54\x40\x6d\x88\x2c\xbb\x36\x44\xf9\x9c\x62\x06\xb2\xc6\x23\x8b\xd0\x49\x99\xc9\x53\x90\x2e\x4c\x3c\x31\xe7\x45\x33\xb4\x61\x48\xf9\xb6\xab\x6e\x96\x17\xc8\x5d\xc9\x96\x82\x17\x9c\x57\x61\x7e\x3a\x34\x2b\x0d\xcd\x6a\x3c\xa7\xe5\x99\xce\xa9\xb6\x5a\xdc\x8d\x1b\x1e\x8a\xc3\xd5\x66\xb1\x53\xaf\xd5\x98\x71\x8a\x31\x28\x70\x6e\x47\x6d\xde\x49\x28\xaa\x2e\x85\x52\xde\xd6\xac\xca\x15\x1b\x96\x4f\x87\xa8\x61\xae\xd0\xcc\x5b\x80\xec\xec\x1e\x69\x3b\x0a\x50\x55\x7f\x49\x76\x64\x60\xd5\x64\x7b\x56\x4a\x9f\x41\x9a\x25\x41\x27\xcf\xe2\x04\x05\x0a\x80\xc7\x37\x5a\x3e\xdd\x79\xbb\xc2\x43\x7e\x46\x75\x74\xba\xf1\x68\xc4\x46\x29\x74\x58\x8b\x9a\x4b\xf9\xf7\x52\x33\xf3\x20\xee\xae\x25\x40\x42\x9c\x68\x37\x04\x04\xa5\xfc\xba\x42\xf4\x33\x51\x0a\xe1\x77\xf2\xef\x97\xa4\xcc\x9f\xfb\xaf\x17\xaa\xd3\x74\x0b\xf5\x38\xc9\x89\x68\xbf\x40\x26\x72\x0c\xfb\x85\xc8\x2f\xf9\xdb\xba\xe4\xbc\x88\x71\xc2\x0e\x4d\xd4\x53\x2a\x5b\x8d\x35\x0f\xf7\x69\xb4\x95\xcf\xae\x09\xc2\xa0\xdf\x47\x91\x05\x3b\xcf\x1b\xb8\x12\x7e\xd3\xf2\x3c\xa1\x38\xcf\xfa\x61\xbc\xd2\xf0\x82\x40\xb7\x68\x6c\xa4\x04\xe5\x27\xd4\x52\xd0\xdb\xa1\xca\x09\x1f\x28\xe1\xbf\x8f\x2a\x38\x77\xfa\x25\x36\xf1\x41\xba\x8a\x9d\xfa\xcd\x3a\xd5\x8f\x9e\xcd\xe2\x1c\x7d\x62\x7c\xef\x2d\x65\x56\x72\xcb\xb5\x11\xc6\x26\xcd\x82\x91\xd8\x6f\x70\xa9\x56\xed\x71\xe7\x8a\x5f\x9f\x8c\x12\xf6\x6f\x91\xe5\xa2\x5f\x41\xf6\x7f\x46\x83\xdf\xce\x38\x89\xcc\x74\x29\xe8\x71\xd7\x41\xd8\x15\x6c\x56\xc9\x6f\xea\xf2\xdd\x6e\x18\xe7\x99\xf2\x73\xae\xb6\xff\x1e\x24\x5e\xd3\x35\x54\x92\xa0\x96\x8c\xd4\x42\xe9\x97\x00\x7d\xbb\x82\x65\x83\x38\xfc\x0d\x45\x06\x89\x6c\x99\x8f\xa2\xca\x27\x8e\xf4\xaa\xe0\x82\x30\x08\xcf\xf9\x9a\x02\x70\x77\xc3\x38\x1b\x5a\xd2\xed\x7d\xde\xb1\x5a\xca\xef\xc0\x62\x3a\xad\xec\xb3\x59\x8a\x91\xff\xa1\x78\xc4\x83\xfa\x9f\xdb\x31\xe5\x2d\x5d\x6f\x28\x23\xf8\x4d\xcd\x2b\xe6\x9d\x0c\xdb\xda\xfd\x96\xd7\x81\xbc\xa8\xa9\x0d\xc3\xb8\x67\xd5\x36\x71\x4a\x81\x5e\x4e\xa9\x2c\xff\x15\x13\x3d\xa7\x72\xce\xeb\xb8\x57\x7e\x33\x51\x50\x7a\xf9\xe5\x66\x66\x7b\xbd\xd5\x69\xef\xf9\xf1\x23\x5c\x8d\xb4\x3f\x94\xea\x16\xf1\x77\xd9\x21\x47\xb1\x4f\xb3\xc4\x9a\x2c\x48\xd1\xa5\xf5\xe8\x05\x25\x81\xa1\x2e\xaf\x3c\x34\x76\xf8\xbe\x09\x47\xe7\x4c\x12\x44\x70\xaf\x5a\x3b\xd2\xd5\xbf\xaa\xfd\xbb\xeb\x80\x4c\x44\x97\x0d\xba\x54\x2a\xf5\x3f\xdc\x58\x53\x57\xd4\x98\x10\xbf\x38\xf0\x82\x93\x06\x2c\xc7\x15\xf9\xff\x09\x45\x2d\x39\x31\x11\x4a\xff\x66\xd3\x64\x99\xe9\x0e\x19\xea\xe9\x7c\x74\xca\x87\x29\x3e\x3a\x5b\xdb\x03\xb3\x07\x9a\x83\x1c\x3f\xe1\xc6\xc6\xa3\x3c\xea\xda\x72\x7d\x13\x55\x16\xee\xba\x5a\xb8\xeb\x4e\x74\x04\x02\x8a\x4e\x74\x04\x38\x7c\x7e\x5d\x13\x91\xbc\xd4\x5c\x0d\x6c\xc8\x0d\x42\xe7\xe8\xe2\x00\xf0\xe7\x26\xce\xb8\xf9\xf9\x66\x3a\xf6\x4e\x37\x4e\x17\xd9\x49\x36\x9e\xd1\x14\xb7\x3c\x89\x6c\x0f\x91\x9f\xaa\xbc\x08\x49\xf0\x36\xe7\xec\x4e\xff\xde\x31\x92\xb6\x41\xb8\x98\xa9\x1c\x34\xf8\x2c\x8e\x85\xd9\x20\x1c\x0f\xbf\xaf\x2e\xfc\xa3\x79\xe5\xb6\xf9\x1f\x31\x83\x34\x47\x16\x69\xd4\x1b\xc5\xa3\x6e\x0f\x08\xcd\xca\x93\x74\x13\x82\x8c\xf4\xa6\x0c\x67\x14\x0a\x82\xf9\xcf\xdc\xbb\x40\xec\xe9\x4a\x32\xfb\xa4\x86\x71\x99\x6a\x11\x38\xe6\xdf\x2a\xbc\x69\x36\x4a\x88\xa2\xfc\x46\x67\x97\x53\x84\x2c\xa7\xa1\xd8\xe5\xd3\x03\x90\xb8\x0a\xc3\x82\xbc\xe0\x28\xe0\x00\xc8\xb1\x38\x57\x66\x0b\xe1\x96\xf7\x84\xfd\xfe\xfb\xb8\x63\xe9\x6c\xf9\xc3\x38\xb5\x63\x93\x18\xe7\xca\x8b\x10\xef\x8e\x52\x59\xe6\x0c\x52\x1c\xab\xb6\x3e\xf0\x85\xc5\x85\x72\x7a\x07\x5d\xc5\x6d\x3f\xa9\xb8\xed\x27\x6b\x24\xe4\x67\x9b\x69\x1e\x60\x33\x17\xb0\x48\xc3\x89\x29\xad\x2b\xd2\xf7\x38\x89\x3b\xa1\x1d\x3d\x82\x02\x09\x07\x49\x7c\xfb\x08\xfc\x5f\xa7\x73\x14\xc7\xfd\x75\xca\xce\x80\xcb\xe4\xae\x20\x86\x05\xc2\xde\xe8\xd3\x42\x63\xd4\x09\xbc\x7a\x30\xc2\x05\xc5\xae\x67\xa6\x91\x90\x04\x69\x1c\xf1\x1b\xc7\x95\x64\x45\x9a\x27\xcb\x36\x08\x43\x13\x75\xb9\x07\x80\x99\x7a\xb9\xf0\xa4\xb3\xcb\x2a\x0a\x18\x05\x83\x72\xa4\xe9\x30\x52\xb2\x65\xfb\xbd\xaf\x93\xc3\x4f\xdc\xac\xe9\x65\x2d\x34\xd3\x71\x9c\xa7\x72\x3c\xa3\x9e\x70\xa4\xa5\x60\xe1\x47\xaa\x14\x24\x9b\xfe\x32\xa5\xa2\xa8\x80\x6d\x6f\x97\xf3\xbf\xc2\x7e\x42\xbb\x66\xfb\x1a\xcd\x20\xd9\x35\xa8\x4d\xea\xf8\xb4\xe5\x84\xc4\x83\x64\x16\x20\xfe\x65\x67\xdb\x2b\x9d\x37\x20\xbf\xeb\x94\x82\xcb\xd9\x82\x73\xf9\x7b\xad\xc6\x97\xbe\xe4\x3c\x20\x7d\x6c\xfb\x30\xa1\x43\x90\xd3\xed\xa2\xf0\x0a\x0b\xe6\x0e\x86\x03\x29\xfb\x4d\x5e\xfd\xe8\x67\x32\x8c\x8e\xa5\x08\xd1\xd8\x45\xa1\xea\x1a\x46\x40\xf6\x6b\x5f\x36\x6c\x50\xa7\x08\xa5\xea\x4b\x64\x2e\x22\x5a\x10\xb4\xaa\x45\x28\x8f\x56\x16\x0e\xdb\xdd\x64\x0e\x80\x79\x72\xcc\x85\x2b\x65\x70\xb3\x24\xa3\x2e\xe7\x3f\x8d\x05\xbf\xa9\x2d\xcc\x99\x34\xcd\x93\x72\x66\x08\x8b\x1f\x35\xc9\x53\x5a\x62\xe7\xd4\x84\x7b\xe0\xbe\xf9\x66\x2f\xa6\xfd\x99\xa3\x0e\x5c\x9e\x84\x20\x9e\x3e\xd0\xb3\x23\x98\x4b\xe0\x8c\xc0\x53\x69\xb4\x15\x05\xa9\xb1\xa6\x00\x02\x71\xb8\xdb\x6f\xfa\x0f\x11\x36\xd4\x41\x9e\xcb\x1f\x90\x3b\xa1\x7b\xc4\x29\xbe\x6b\xad\xaa\xeb\xe2\x1a\x07\xff\x07\xb8\x12\xd8\x1d\xd8\x39\x00\xc5\xa6\xab\x9a\x7f\x73\x7b\xe2\x90\x7a\x71\xa1\x99\x19\xa4\x23\xa2\x0d\xcf\xad\x42\xa1\xcb\x2b\xbc\xa2\xed\xed\xf1\x29\x2b\x6a\x2d\xb8\xaf\xa7\x15\x2a\xe0\x4b\x6b\xde\xe5\xfd\xc3\xdf\x6a\x6b\xbf\x20\x6c\x9f\x50\x81\xfd\x6f\xe9\x86\x51\x73\x7b\x7c\x4d\x81\xb4\xb9\xe3\x8a\xdf\xd8\xb3\xe6\x3b\x5c\x4f\xa1\x6b\x4d\xe9\xe5\x3f\x7f\x66\xcd\xa3\xaf\xee\x69\xe6\xc4\xeb\xb5\x62\x87\x2b\xd6\x8c\xe3\x48\x1e\xbb\x58\x87\x54\x2c\x42\x1e\xf1\xd5\xe7\xe7\x76\x2a\xd5\x6d\x9e\x57\xd8\xc2\x8e\x14\x9e\xfe\x76\xa1\x82\x26\xff\xbe\x42\xa8\x30\x17\x8e\x3f\xaf\xcd\xa2\x47\x1d\xfb\xea\xab\x52\xc0\x9b\x77\xf9\x5f\xc3\xd9\x51\x5e\x74\x51\x41\x94\x67\xd8\x8e\xa1\xe2\x71\x4a\x5b\x28\x4e\x02\x53\xe6\xe7\x9b\x03\xcb\x94\x6c\xa6\x0a\xd2\x11\xea\xa8\x12\x8e\x9a\x7b\xbc\x86\xda\xb7\x40\xd4\xbe\x46\x65\x13\x54\x3e\x8c\xad\x87\x1d\x16\x2b\x53\x12\x2d\xef\xa9\xb2\xf8\xdb\x5a\x25\xf4\x84\x8a\x13\x53\x6b\xa3\x1d\xaa\xc8\x75\x4c\x7d\x68\x43\xf9\x91\xc2\x0d\x95\xff\xa6\xe5\x51\x64\x67\x6a\x9e\x67\x79\xb8\x25\xa6\x9b\xa5\xd5\x2c\xda\x57\xef\x2e\x4e\x14\x1f\x0e\xbc\x50\x1e\x5c\x5d\xdb\xcb\xa9\xa7\xe5\x6a\xb1\xac\xd6\xc4\x6f\x5a\x1e\xfb\xd6\x89\xe3\xa5\x94\x2c\xca\x10\x91\xb0\x28\x85\xd3\xa9\x72\x8a\xe4\xd7\x15\xc8\x08\x3c\x39\x9c\x82\x77\x6b\xe3\x30\x6b\x47\x38\xd6\x9f\xaf\x78\xe5\xc9\xb9\xac\x0a\xc3\x77\xea\x38\x80\x5d\x1b\x86\x0a\xad\x74\x0e\x5b\x91\xe8\x1d\x4f\x2a\xe3\x34\xcb\xb8\xaf\x1b\x8c\x19\x0c\x09\x50\xc6\x86\x22\x7a\x6e\x54\x18\x70\xcb\x36\x7a\x86\xae\xcd\xd1\x3b\x5c\x3d\x87\x0f\x11\x94\xfc\x1f\x07\x2c\x51\x56\x1c\xcd\x65\x44\x64\x1c\xfa\x60\x7e\xdc\x27\x38\x17\x4a\xb0\x8f\xb4\xe9\xdc\x72\x9a\x4b\xe5\xf1\x24\xd2\xa0\xe5\x0e\xcf\x7e\xb3\x38\x38\x40\x22\x63\x33\x00\x44\x91\x3f\xe7\xd5\xe6\xb2\x58\x0f\xe2\xdb\x49\x47\x17\x52\xb8\x06\xe1\xa9\xb8\x1b\x48\x98\x20\xac\x80\xd7\x10\x85\x69\x84\x0a\xc2\xe5\xab\x8a\x05\x89\xc7\x0a\x14\x47\x43\x75\x15\xe2\x55\xa8\x71\x53\x7d\x6c\xfb\xe7\xd7\x94\xf5\x0d\x3b\x86\x8b\x85\xb7\x12\x91\x60\x71\x7a\xcc\x9e\xe3\xca\x28\x0a\xca\xd2\x8e\xe5\x37\x37\xe7\x1b\x1c\xe5\xbd\xd3\x9f\x7c\xe9\x57\x27\x15\xfe\x16\x17\xbe\xd8\xec\x9a\xc8\xe8\x09\xf0\x91\xca\xa7\x3e\x52\xf0\xc5\x6e\x10\xd9\x71\x68\x0f\x41\x24\x0a\xe5\x21\x90\xa8\xb1\x40\x60\x54\x8b\xcd\xbb\xa0\x12\x38\x26\xf6\x37\x29\x5c\xc3\x13\xbb\xdd\xf2\xf2\x92\x93\x73\x6b\xdf\x7c\xd3\x74\x4c\xd4\x8b\x23\x01\xb5\x08\x2e\xd5\xf7\xbf\x37\xea\x22\xd3\x2f\x36\x3b\x36\xcd\xa6\x69\x02\xa0\xe0\x38\xd5\x56\xba\x3c\xff\x51\x99\x4d\xde\x57\x15\xa1\x8f\xeb\x5c\x91\x43\x02\xbc\xbb\x30\xf5\x9c\x96\xe1\x7c\x13\x6b\x03\x09\xc1\x07\x95\x1e\xc9\x1e\x35\xe5\x43\x03\x3e\x34\x7a\x49\xe7\x95\x84\xca\xcf\x28\x4d\xc6\x1c\x27\x8f\x53\x27\xd3\x15\x75\xe3\x46\xf9\x6f\x62\xce\xa4\x2a\x2a\x17\x26\x35\x25\x66\x9b\x9d\x3c\x1d\x5a\xb1\xe1\x60\x56\x86\x12\xc9\xf8\xc4\xe1\x79\x7a\x41\x24\x41\x3f\xc0\x59\x37\x71\x92\xa8\x52\xbb\x74\x65\xce\xd5\x69\x38\xa4\x59\x62\x82\xc1\x90\x04\xa4\xbc\xdd\x06\x4e\x02\x7e\xad\x50\xdf\x24\x7c\x42\x1d\xeb\x79\xe9\x1c\x4c\x53\x18\xc1\xaf\xd7\x7c\x56\xd8\x0f\x57\x83\x68\xb0\xd3\x07\x72\xd7\x0a\xa5\xd3\x76\xae\x50\x66\x0f\xe7\x68\x02\x60\x0f\x7c\x1f\x0b\x02\x00\x20\x76\x70\x12\x94\xf3\x64\x30\x3d\xdf\xb4\x54\x8a\x45\x49\xd9\xb5\x97\x34\x33\xdc\x17\xdb\xfb\xd6\x24\xe9\x0e\xdf\x9c\xe6\x94\x08\x1b\xd7\x15\x7a\x8c\xa2\x9e\xa3\xa5\x74\xb4\x07\xd5\xeb\x4a\x35\xa8\x67\x97\x83\xae\x4d\x1f\xa6\xbb\xc2\x50\x1d\xa5\x03\x45\x5c\x08\x3c\x1b\x69\xb3\xd0\xdd\x03\xba\x73\xfe\x00\x30\x6c\x42\xc8\x6f\x7c\xf9\xeb\x8e\xa8\xd2\xf0\x42\x16\x2a\xa5\x39\x0f\x8a\x2a\x7f\x40\x55\x1c\x17\x9f\xdb\x57\x89\x50\xd7\x75\x84\xba\xae\xa8\xe4\x69\x66\x32\x9b\xae\xd8\x34\x6b\xd0\x95\x03\x39\xc2\x9d\x21\x7e\x53\xf8\x43\xad\x17\xbb\xea\x0e\x16\x09\xc7\x7a\xfc\xa6\xae\x4c\x99\xda\x6e\xce\xfc\x4f\xc7\xc1\x73\x25\xcf\xd7\x1f\xc8\x05\xef\xc5\x2b\xd1\x20\x31\x3d\xd9\x1c\xd0\x05\x3d\xac\xe4\xce\x0f\xd7\xb4\x37\xf7\x37\x13\x1b\x12\x2f\xde\x97\x85\xab\xa2\x6c\x9e\xac\x12\x8c\xc6\xb6\x17\x8c\x08\x27\xa7\x38\x5f\xa7\x94\x76\xf2\x29\xc5\x57\x8a\xf2\x90\xba\x91\x1e\x28\x8f\x8b\xe1\xd7\x95\x2c\x2d\xea\xe5\xf4\x77\xe2\x3b\xdc\x70\xea\x60\x47\x26\x86\xe8\x59\x32\x07\x09\x97\x59\xcf\xd6\x3d\x7c\xa7\x7d\xc1\x2a\x09\xd8\x5f\x21\x1d\x21\xa8\xff\x9a\x8a\x91\x09\x7a\x18\x6c\x94\x5b\x7e\xda\xf2\xf0\x9b\x9f\xaa\xbb\xe9\x24\x79\x16\xa4\xc3\x86\xdf\xfd\xcf\x69\xdc\x5e\x6d\xe7\x38\xcd\x12\x6a\x95\x39\xd0\xe2\xfd\x96\xd2\xc3\xbd\x3f\x11\x16\x2e\x2c\x2e\x50\xf5\x79\xca\xb7\xf1\x70\x58\x62\x05\x6f\x6b\xfb\xe0\xe8\xbc\xba\x34\x72\x87\xb2\x3d\xd5\x22\xbe\xd3\x52\x6b\xf8\x4e\xd5\x14\x63\x35\x6c\x78\xbf\x84\x0b\xda\x05\xe4\x82\x4b\xf6\x06\x09\x89\x69\x70\x17\x1b\xe1\xc0\x76\x44\x20\x6c\xf5\x43\x1b\x9c\x50\x34\x94\x73\xd1\x35\x1c\xa9\xd2\x82\xdf\xba\xe5\x2c\xce\xb0\x66\x6f\x0e\xa8\x25\x77\xe4\xe9\x79\x4b\x77\x7e\xeb\x2e\xbb\x6f\xbe\x39\x0a\xd2\xd0\x9a\x9e\x2b\xa8\xf1\x11\x41\x1f\x93\xe3\xc2\xaf\xe5\xcc\xda\x87\x69\x06\xb8\xa2\x4f\x19\x88\x38\xd5\xac\xc5\x99\x6a\x9e\xe1\x6c\x4d\x9c\xb9\xfd\xf4\x9a\x2b\x10\xc7\xbf\xd2\xae\x96\x9b\x3d\x3c\x03\x28\x69\x55\xe3\xdf\xef\xe4\xff\x6a\x5a\x7e\xe5\xee\x49\x1d\x2f\x04\x41\xf7\x5a\x3e\x20\xba\x57\x91\xd9\x2a\xb4\x00\x97\xca\x64\x3a\xb6\xd7\xb7\x61\x18\xaf\xa4\x7a\xad\x5e\xc4\x86\x26\xfd\x1c\xbf\xf1\x90\x03\x57\xa3\x12\xf6\xd2\xaf\x3c\xa8\x12\xec\x7a\x85\x59\xdc\x5d\x4a\x81\x92\x74\xcb\xc9\xdb\x74\xde\xae\x38\x3e\x6e\x7d\x54\x7b\xf7\x0a\x0b\x21\x4e\xf8\x3b\x30\x79\xd8\x95\x0d\x59\xe9\x2d\x5d\x1d\x39\xa5\xce\xf9\x95\x38\x2e\x0f\x63\xdf\xf8\x79\x43\x83\x59\xee\xaa\xce\xcf\xcd\x62\x8f\x3a\x29\xcd\x0a\x1a\x6e\x0e\xbd\xbe\xcf\x83\x78\xfd\xb4\x18\xc6\xe1\x94\x5f\xbd\xdb\x88\x54\x8f\x49\x71\x4a\xc1\x55\x77\xb6\x6b\x0a\xfd\x61\xbc\x62\x93\x86\xdf\x61\x7e\x86\xca\x11\xbf\xa9\xeb\x1e\x27\x36\xb2\x2b\xb2\x15\xa3\xae\xb3\xad\xed\x71\x6a\xdb\xd6\x26\xeb\x81\x0b\x04\x6a\x9d\xd6\x21\xa0\xf7\x4a\xfd\x11\xcd\x5b\x76\x98\x52\x53\xf5\x94\x6a\xd8\x2e\xd9\xee\x52\x83\x92\x01\x5d\xad\x10\xa1\xe5\xc7\x03\xef\xac\x18\x93\xda\xe4\xd6\x56\x82\x4c\x8d\x1a\xd4\x4d\x8a\x11\xa0\xbb\xd6\x92\xc5\xe2\xa8\xbe\xf5\x6e\xf6\xcd\x37\xc3\xc0\x08\x15\x87\x6f\xa7\xe5\x99\x3d\xe7\xbc\xfe\x77\x9e\x0e\xf1\x57\x0e\x93\xeb\x3b\xda\xaa\x6c\xf8\x8d\x3c\x88\x42\x13\x51\x32\x8c\x70\xff\xa2\x12\xb5\xfd\x08\x53\x0a\x20\xa2\x6b\x0a\x13\xd3\xb3\xdd\xb0\x0c\xf1\x76\xf8\x66\xf3\xc6\x16\xd3\x19\x47\x8d\x5c\x43\x5a\x05\x92\xd3\xba\xe2\x28\xef\x6e\x2b\xe9\x41\x7b\xc8\xa4\xbb\x94\x45\x22\xcd\x36\xb1\x4b\x54\x3c\xab\xb3\xea\xe4\xbd\x5b\xf8\x06\xc3\x09\x5c\xaa\xb4\x49\x14\xce\xee\x16\xe2\x26\x69\xa6\xf8\x7b\xef\x9b\x04\x7e\xeb\x65\xb0\x23\x14\x8f\xf2\x12\xf8\xf5\x44\xaa\x30\x37\xd7\x34\x23\x1b\xf5\x46\x12\x6b\xca\x3d\xd1\xf5\xf1\x9b\x89\x6c\xf7\xd9\x32\x1a\x94\x8e\x24\x5b\x14\x69\x81\xbd\x6b\x75\xc7\x67\x1a\x0c\xd0\xec\x14\x30\x79\x79\x5d\x82\x32\x97\x87\xdc\x8f\xe3\x70\x4a\x55\x35\xbf\x8f\xb8\x4d\x00\x1d\x9e\xcf\x73\xa5\xf5\xb8\xd2\x0c\x73\x86\x96\xce\x65\xcd\x19\x03\x7c\x50\x3c\xe2\x36\x00\xd3\x99\x52\x82\xc8\xff\xbb\x02\xa9\x5f\xa7\x4f\x80\x81\x74\x6d\x62\x94\x16\x67\x16\x89\xfc\x15\xb8\x84\x4a\xec\xd6\x1b\xca\x86\xdd\x6f\x20\x66\x69\x75\xca\x07\x26\xbb\xa9\xc8\x8a\xa4\xe1\x36\xad\x4e\xf1\x51\xf3\xda\x11\xcb\x41\x98\x36\x34\x9b\x5b\xa9\x75\x5d\x9c\x20\xa3\x51\x33\x2e\xea\xda\x24\x63\xb9\x51\xb5\x3a\x9d\x12\x4e\xeb\x61\x37\x40\x7f\x7f\xcf\xd4\xfe\x7f\xfc\x55\xdf\xd1\x2d\x87\xd4\xc9\xab\x2e\x4a\xf5\x89\xb1\x15\x88\xd9\x3f\x40\x6d\x13\x21\xd8\x69\x50\xe5\x45\x47\xc9\x47\xf6\x1f\x68\xb7\x40\x2e\x4c\x89\xc8\x4f\xe3\x6b\x5f\xe1\x49\xbd\xb3\xad\xca\xbf\x8f\xaf\x79\xe0\xf5\x23\x38\x32\x25\x0f\xac\x99\x9c\x39\xdd\xa5\x09\x90\x77\x30\x51\xa4\xa5\x49\x23\x4f\xa8\x1e\x29\x19\xf8\xd3\x80\xb8\xeb\x2e\xaf\x88\xdf\x38\xd6\x4d\xd7\x8c\xc7\x16\xc9\x29\xb0\x27\x9f\xb6\x94\xb8\xda\x9f\xd1\xb4\x40\xe9\x91\xcb\xa2\x28\xdc\x1f\x9b\x78\x0e\x07\x67\x9a\xde\x4f\x95\x66\x96\xc8\x2f\xf8\x48\xee\x5a\xcb\x83\x33\xfa\x71\x62\xbb\x26\xf5\x7f\x8e\x3d\xfe\x9e\xc2\x22\xdf\x9b\x38\x2a\x29\x2f\x1f\x99\x20\x4a\x33\x46\x47\xa1\x75\x70\x46\x19\xd1\x9f\x71\xca\x30\x74\x2a\x83\x22\xcf\x7b\x2a\xb6\x7f\x81\xc0\xf1\x3b\x15\x04\x75\xf3\x64\xa7\xd2\x5f\x80\xb8\x83\x63\xb6\x38\xa2\x04\x47\x05\x62\x2e\x4b\x03\x0b\xd2\xf7\x2e\x2a\x17\xa3\xa5\xe2\xc1\x11\x3d\xb3\xd2\xf3\x70\x48\xd4\xe0\x8e\xb6\x7c\x3d\xee\x68\x2d\xf0\xae\x13\xc6\x2b\x11\x4a\xa5\x58\x98\xa7\x8b\x4a\x35\x96\xae\x41\x30\x2d\x35\x2e\xff\x83\xc4\xbc\x2a\x6b\x94\x35\x9d\x70\xdd\x22\xf0\xe4\x37\xfc\x78\x14\x05\xdd\x38\x11\x20\x30\x0a\x40\xc7\x5a\x8a\x60\x74\x4c\xd9\x86\xd3\x21\xbd\xc3\x83\x51\xff\xea\x99\xb6\xdf\x8c\x2e\x6a\x12\x28\x08\xb0\x8e\x07\xe3\x06\xf3\x74\x0d\xe8\xfd\xf9\x66\x2f\x20\x30\xc8\x50\x2e\x5a\x9a\x76\xfe\xc4\x9a\x0c\x9e\x66\x0f\x34\x49\x22\x31\x89\xe3\x11\xa2\x63\xa9\x5e\x55\xec\xc0\xb6\x86\xd4\xd4\x7a\x1c\x93\xab\x0f\xaa\xbe\x52\x76\xf0\xba\x54\x0c\x8d\x61\xaf\x03\x65\xa9\x72\x4e\xf3\xa1\x7e\xaa\xa2\xc7\x6c\x18\x24\xbd\x69\xf5\x75\x47\x69\x7b\x40\xae\x7f\x49\x49\x4e\x5f\xd2\xd0\xce\xa3\x9a\x49\x14\x2f\xdb\x84\x9a\xcd\x00\x77\x9c\xd7\xf2\xb8\x77\x2a\x9a\x12\x5b\x83\x87\x67\xcb\x53\x3b\x60\xc8\x06\xeb\x91\xb7\xbc\xd2\xd5\xb1\x49\xac\xe5\x02\x18\x52\x34\x68\xd8\xb7\xcf\xab\xdc\xa0\x36\x0d\xb1\xbd\xbc\xeb\xe9\x61\xac\x93\xa0\x8e\xec\xdb\xc5\xe7\x04\x0f\x94\x58\xf2\x7e\x30\x51\xc6\xf2\xff\x5a\xfd\x49\xa0\x05\x3e\x2c\x3e\x55\xfc\x92\x4f\xcd\xba\x81\x8d\xb2\xa0\x1f\x74\x4d\x18\xae\x36\x74\x49\xac\xe1\x14\x26\xd7\x55\x08\xdc\x1d\x9a\x20\xda\x49\x4f\x85\x05\xe5\xb1\x52\x44\x5d\xde\x73\xa0\x3f\x6c\xe9\x26\x7f\x4b\x49\x8b\x00\x5d\xce\x7f\xe5\x2a\x5d\x83\x24\x5e\x89\x76\xf8\xcc\xfe\x07\x54\x60\x41\xa3\xf5\xac\x92\xe6\xbe\xa9\xe0\xd8\x2c\xe2\x85\xf4\x73\x97\x82\x7d\x25\x96\xa8\x5c\x3b\x3c\xb0\x19\x3e\xc0\x48\xac\xde\x6b\xa9\xe3\xfd\x06\x3d\x3a\xa8\xef\x7e\xa2\xbd\x07\xd7\x9d\x79\x64\x66\x43\xab\xf4\x56\xc5\x5f\x57\x81\x69\xce\xd6\xef\x9f\xb2\xf3\xd2\xc7\x18\xf9\xdb\xf2\xeb\xf4\x64\xe1\xbb\x22\x9d\x38\x8e\x76\x6a\xe6\x3b\xf6\x07\xcc\xc7\x23\xaa\x25\x70\x57\x61\x8d\xd8\x17\x84\x2b\xe5\x98\xc1\x52\x74\xf5\xe2\xd5\xbd\x20\xed\xe6\x29\x08\xa5\x0d\x27\xc9\xf3\x13\xb4\x8d\xf9\x8d\x4b\xad\xc7\x79\x32\x8e\x53\x6e\xff\x69\x59\x26\x7e\x5d\xd3\x67\xda\xdf\x1c\xa0\x1b\x8a\x87\x72\x03\xab\x99\xdf\x28\x49\xdc\x91\x89\x86\x26\xcb\x8c\x56\x64\xd9\xa1\x9a\x7e\x48\x8c\xc4\xdc\x80\xbe\x44\xfe\xe1\x69\x25\x93\xd4\x0b\xba\x94\xbf\x01\x91\x82\x01\x7a\xa7\x50\x88\x94\xd3\x85\x02\x84\x20\x57\x46\x86\x76\x1a\x25\x4a\xb4\x8e\xd7\x51\xa2\xe4\x37\x34\xa8\xd4\xc5\xfb\x57\x4f\xb6\xeb\x98\xad\x65\x80\x6b\x4d\x3f\x2b\xf3\x2c\x17\x4b\x1d\x53\x76\x2e\xc7\xd4\xc3\x5c\x8d\xf3\x64\x4f\xf9\x67\xa8\x31\xb2\x96\x59\x45\xa4\x47\x44\xf5\x7c\xaf\xe1\x2d\x9a\xf0\xb8\xe3\xef\xf3\xb9\xc9\x50\xee\x96\x92\xba\xbb\xac\x08\x1c\xe7\xb0\xc6\xd0\x7d\xe4\xc6\x95\x50\x7f\x68\x40\x10\xab\xef\x20\x8e\x34\x02\x34\xb8\x3c\xe2\xd7\xdf\xab\x08\x7e\xf4\x83\xc8\x26\xab\xd3\x3e\x5d\x60\x6b\x47\xa9\xd5\xfa\x9c\x82\x0f\x65\xfe\x87\xad\x26\x4c\xf3\xf3\xcd\x7d\xf3\xbf\x5c\xee\xac\xa8\xd3\x6f\xf0\xbd\xb0\x63\x70\xcb\xa3\xc3\xff\xe7\x27\xd0\x42\x43\x96\xb6\x9d\x32\x5e\x16\x53\xc0\xbd\x88\x85\x00\x2d\x57\x1c\xc6\x97\x5a\xda\xe4\x58\xcb\x64\x6c\x5b\x53\xac\x7f\xcc\x2b\x71\xef\x2a\x07\x96\x91\xe6\x78\xea\x88\x7a\xd6\x89\xc0\x22\xbd\xdb\xc6\xec\x01\x8e\xc5\x30\x5e\x88\x59\xbe\xa9\xa0\x3f\x67\xf4\x92\xff\x31\x29\x75\x63\x4f\x3a\x49\x22\x71\x4e\x03\xdd\xe1\x69\x8f\xe0\xc1\x6b\xeb\x28\x67\x3f\xed\x65\x4f\xde\x05\xda\x57\x8a\xa0\x12\xca\x88\xe6\x3c\x6d\x1e\x6c\x0f\xdc\xaa\x78\x05\xd7\x28\x02\xc6\x79\x16\x9a\x55\xae\x6d\x60\x93\x78\x5d\xfb\xc0\xc1\x27\x5b\x4c\xae\x1e\xd7\x65\xe3\x24\x83\x53\x12\xeb\x60\xd0\x36\x2b\x9a\x18\xbe\xc8\x6a\xba\x4b\x51\xbc\x12\xda\xde\xc0\x12\x5a\x1d\x83\xf1\x21\xdd\x34\xbf\x9e\x50\x6e\xa1\x10\x20\xc0\x96\xe2\xa8\x55\x1e\x8e\x35\xc9\xa3\x29\x3f\x90\x25\x81\xe4\x7a\x72\x28\xab\x40\xff\x8e\xd3\x92\x29\x8f\x3f\xdb\xb5\x69\xca\x12\x4b\xac\xfb\xd8\xf2\x6d\xb4\x7a\xda\x4c\x9a\x77\xf2\xa4\x43\x1f\xc1\x38\xf1\x35\xf1\x1b\x15\xaa\x0e\x03\xa3\x2c\xa1\x3e\xd2\x28\xf3\x8f\x94\x0b\x43\xb4\x24\xa7\xb5\xd0\xd2\x54\xa2\xfa\x51\x0d\xd9\xf3\x25\x32\x58\xe3\x96\xb5\x78\x69\x28\x75\x81\xe3\xaa\xba\x36\x4e\xca\x90\x3f\x0b\x6c\x4a\xd4\x22\xa4\x78\x37\x70\xc5\x4e\xf7\x61\xef\xac\xf7\x57\x52\x82\x10\x4a\xcb\xf1\x0f\x5a\xde\xce\xfa\x26\x6e\x44\x9c\x25\xb7\xac\xe2\xdf\x2c\x37\xf6\x9d\x1e\x6d\xb0\xae\x75\x49\xcf\xe1\xfb\x31\xaf\x77\x62\x11\x6b\xf2\x04\xd6\xe0\x05\x45\xa3\xad\xc7\x18\x7c\x23\x0f\x00\x1f\x50\xa9\xdc\xac\x06\x4f\x8b\x63\xe2\xdd\xba\xd6\x77\x9e\x8a\x7c\x90\xe8\xf1\xaa\x3a\xcd\x89\x8a\x42\x6a\x64\xbb\xbb\xbc\x70\x10\xb8\x88\xfc\xba\xa5\x08\x30\xb7\x10\xa6\xb0\x61\x2b\x1f\xc1\x80\xd0\x9c\x51\xee\x75\x1c\x96\x02\x0f\x73\x1b\xd3\x52\xbe\x59\x4a\x0a\x4b\x51\x9c\x61\x36\x20\xb4\x40\xdd\x88\x5f\x4f\x4c\x86\xbd\x7b\xa9\x2f\x9f\xf1\xc2\xc5\x4f\x5e\xe3\x8d\xd3\x69\x4d\x94\xd7\x86\x8d\xff\xa3\x1a\xb7\xea\xee\x30\xb0\x7d\x8a\x78\xe4\x91\xaa\x42\x0e\xab\x53\xe1\xd3\x3c\x3d\xe4\x8d\x2f\x94\x6d\xb6\x1e\xf1\x1d\xa7\x7f\x34\xe5\x01\x72\xef\xd0\x88\x81\x7b\xc9\x0c\x6f\xd9\xdc\x9b\x93\x0f\x66\x64\xa2\xa0\x6f\xd3\x0c\x02\x40\x0d\x95\xd2\x6f\x28\x59\xa2\x0d\x05\x21\x0c\x6d\xc7\x44\xbc\xd5\x61\x37\xe7\x13\x9d\xdf\xb8\x65\x66\xa2\x2c\xe8\xf2\x57\x3a\xd7\x4f\x55\x28\x54\x29\x42\x92\x77\x97\x68\x02\x23\x36\xdd\x86\x26\xbd\xa4\xca\xca\x96\xe9\x9a\xc2\x89\xb2\x05\x09\x26\xed\xc7\x98\x0e\x08\xeb\x3f\x53\x74\x07\xd2\xc6\x1a\xe3\xee\xca\xb3\x05\x27\xe1\x19\xa5\x6d\x70\x46\x01\x47\x7a\xf0\xef\x29\xbf\x4a\xac\xaf\xe8\x47\x44\x5a\xf3\x71\xa5\x31\x34\x36\x41\x42\x41\x30\x72\x9e\xed\x6d\x1f\xbd\xdc\x56\x64\x84\xcf\xf0\x38\xd1\x34\xfc\x0f\x98\x19\xfc\xc6\xf1\x24\x12\xdb\xc9\x83\xb0\xb7\xc5\x33\xef\x82\x12\x43\xbf\x50\xd7\x08\x58\x89\x93\x25\x5c\xac\x78\x77\x94\x97\xc0\xaf\xeb\x54\xca\x42\x93\xd9\x64\x87\x17\xc3\xbb\x8c\xe3\x1a\xb3\xf6\x61\xba\x01\x59\x42\x74\x74\x23\x97\xbf\xa3\x24\x93\x37\xd5\x41\x34\x34\x49\x8f\x6b\xd9\xc2\xc5\x6c\x78\x5e\x66\x5d\x3f\x72\x60\xc6\x4e\x0c\xca\x91\xc1\x5d\x47\x15\xf6\xd0\x48\x27\x8f\x6d\xd5\xf9\xda\x37\xdf\x3c\x38\x33\xfb\xcb\x5e\xd6\xfa\x7a\xcb\x63\x0b\xa7\xd4\xa5\x7f\x00\xc0\x25\x6a\x7b\x57\x81\x00\x46\x99\x12\x3c\x2d\x2c\x86\x87\xda\x8a\x27\x7d\x4e\x09\x1b\xfd\x3b\xb4\x78\x30\x88\x3f\x6e\xa9\x7c\xf9\x17\x28\x8b\xe1\x50\xbb\x45\x61\x84\xc8\x48\x63\xf1\x0b\xbc\x5f\xd9\x6e\x9e\x67\x25\x3d\xbe\x1a\x2c\x66\x5c\xff\x02\xa2\x23\xc4\x3a\xbb\xd7\x2a\x2a\x1a\x54\x4c\xe3\xda\x2f\xa6\x3f\x57\x08\x5a\x6a\xcf\x39\x51\xf8\x91\x3f\x43\x27\x8a\x53\x93\x2c\xc7\x57\x50\x1c\xe5\xd3\xc6\xfd\x6f\x5f\xab\xd9\x99\x87\xf1\xc8\x4e\x2b\xf2\xf4\x7d\x9a\x43\x08\x86\x3f\xa4\x09\x88\x12\xf9\x9b\xda\x33\xe1\x9e\xf2\xbc\xcf\xcc\x92\x2d\x13\x74\x38\x49\xa1\xe0\xf3\xa3\x96\x22\x60\x9e\x51\x66\xe5\x3f\x2a\x14\x97\xf3\x8c\xe2\x87\x74\xe3\x18\x22\x1c\xca\x9a\x98\x80\x64\x62\x53\x5c\x07\x0c\x0c\x06\x51\x9c\x00\x73\xe1\x81\xff\x34\x5c\x18\xfd\xbf\xd4\xea\xda\xe7\xea\xe4\xc5\x56\xc8\x64\xca\x29\x12\x6e\xe2\x80\x40\xac\xf7\xaf\x68\xe8\xa4\xcc\xd7\x70\x2e\xe6\xe7\xd5\x65\x77\xf2\xde\xc0\x66\xe9\x0e\x9a\x33\x0e\x17\xe0\x55\x62\x6e\xd2\x21\xce\xff\x80\xa3\x08\x67\xde\x11\x4c\x05\xd1\x74\x50\x60\x0d\x13\x45\x81\xe5\x92\x13\xe6\xc3\x45\x2d\xb1\x72\x71\xc2\x57\xba\x8c\xc0\x1c\xa1\xcf\x84\x0d\x2f\x67\x78\x4c\x41\xa5\x8e\xa9\xea\x73\x18\xaf\xee\x28\x23\x62\x67\x53\x58\x5e\x0a\xbf\x69\x29\x2f\xc9\x4f\x95\x37\x17\xa0\x41\x78\x8a\x67\xea\x4c\x7c\x81\x8e\xd3\xec\xad\x0f\x5a\x8a\xbd\xf5\x41\x21\x38\xc4\x6e\x9e\x3d\x5c\x0e\x39\x26\x25\x08\x13\xf8\x8d\xff\xac\x45\x7d\xa7\x80\x2b\xc5\x02\xbf\x81\xec\x41\xe2\x1b\xdf\xfb\xe7\xa3\x02\x85\xb5\x27\x00\xd7\xc5\xe3\x7b\xaa\xed\x25\xff\xcf\xe9\x58\x6d\x6a\x6d\xeb\xd5\x7f\x75\xb6\x69\x83\x32\x6b\x9c\x2e\x47\xc5\x35\xa5\x66\x0f\x70\xf8\x75\xbb\xf0\x15\xe3\xff\xaa\xa8\xb4\x67\x55\x63\xc5\xf4\xcc\x58\x3a\xe7\xe2\x04\x5a\xce\x5f\xa9\x94\x39\x8d\xff\xd8\x24\x12\x48\x0a\xbf\x68\xca\x9b\x91\x4f\x3e\x5e\xc7\xbc\x8a\x93\x24\xe6\x73\x17\xbb\xd3\x95\x42\x89\x61\xea\x76\xc7\x20\x31\x51\x04\x91\x1e\x79\x78\x4a\x87\x79\xa3\x86\x40\xf0\x7c\x73\x68\xc2\xac\xa1\xe0\x94\x17\x94\x82\xe4\x05\x95\x54\x74\xe3\x28\xb3\xa3\x71\x48\x32\x74\x4e\xb0\xea\x04\x9e\x8f\xf8\xd4\xcb\xb9\xc6\x86\x95\xe4\x73\xea\x4d\xb5\x0a\xc5\x52\xbc\xa0\x24\x65\x4e\x2a\x49\xd8\x8e\x49\xb9\xd0\xa5\x05\xb0\x29\x62\x15\x21\x42\x27\x4c\x12\x47\x26\xe9\x0e\x51\x12\x13\x8b\x56\xad\x66\x51\xb3\xeb\x85\xa6\xb7\x3a\x45\xfb\xb4\x93\xd5\x71\x78\xdb\xdd\x6d\xdf\xc7\x6b\x4c\x6c\x99\x07\x67\x66\x9b\x91\xcd\x48\xdc\x04\xf9\xc7\x61\x3c\x3f\x59\x4c\xbe\x7e\x04\x05\x63\x7c\x29\xb7\x9f\xa5\xaa\xe6\x93\xf9\x28\xce\x82\x7e\x99\x3e\x95\xb7\xe6\x84\xf0\xf7\xf9\xe4\xa8\x16\xd6\x93\x04\x36\x9d\x52\xc1\xda\xa5\xc2\x43\x5e\x58\x0d\x1c\xc5\xfa\x87\xd6\xea\x12\xaa\x8c\xac\x82\x68\xc0\x50\xfb\xf9\x99\x32\xd5\xff\x99\xcb\xd7\xf2\xa8\x1f\x27\x59\x1e\x11\xc7\xc2\xf9\x3d\x1d\x55\x10\x48\x28\x8c\x08\x4d\xbc\x46\xe9\x6c\x9c\xc4\xa3\x20\x95\x3d\x9a\xed\x28\x0b\xc5\xc7\xdb\x49\x83\x24\x75\x1e\x9d\x08\x98\xee\xf0\x89\xf2\x57\xd1\x54\xfa\x18\x9b\x89\x28\xbf\x2a\xa1\xfa\x7b\x85\x27\x2e\x9e\xd3\xe2\x2e\xa7\x0b\x8a\x04\x70\xe0\x6f\xa3\xed\x40\x5c\xea\x69\x9f\x11\x73\x22\x4a\xe9\x31\x05\x3f\xc4\xc1\x05\x88\xc6\x3b\x2d\x25\xbb\xf6\x21\xad\x66\x9c\x2b\x37\x29\xf4\x10\x2a\x16\xcd\x66\x86\xd2\x68\x63\x27\xc1\xfb\xe3\xf8\xf9\xc3\x32\x2d\x72\xb1\x23\xf5\x6a\x32\xd8\x6e\xd3\x15\xe3\x68\xc1\x26\xcb\xaf\xd5\xa1\x90\x66\x66\x55\xf6\x56\xc1\x67\xd0\x70\x08\x72\x63\x8b\x63\xcb\xdc\xdc\xfe\xe6\xc2\x0b\xfb\x77\xf9\x12\x2d\x6a\x6b\x42\x8f\xa5\x99\x8f\xd1\x7b\x0d\x0f\x43\xd2\x18\x1a\x18\x77\xe6\x39\x21\xb7\xcf\x30\xc7\x99\x22\x84\x00\x03\xcd\x87\xcb\xbe\x69\x96\xc4\xf1\x52\x25\xde\x3f\xa7\xe2\xfd\x73\xc5\xd6\xec\x63\xef\xde\x0a\xd1\x75\x19\xbc\x77\x77\xf6\x3b\x62\xe7\xd9\x3a\x43\x1c\x7b\xa8\x6b\xc2\xa0\x93\x27\x7c\x52\x2a\x1d\x43\xb1\x1f\xff\x27\xca\x23\xd1\x24\xa6\xd3\x50\x9d\xba\x53\xca\x5e\xe3\x94\x22\xd0\x51\xee\x1e\x3e\x70\x2d\x7a\x80\x44\x3f\x88\x7a\x8f\xd0\x5c\xa9\xa8\xad\x38\x88\xf2\xde\x59\xae\x88\x31\xac\xd8\x55\xb1\x9c\x60\x45\xa6\xec\x92\xd1\x2a\xc2\xd3\xb9\x87\xf8\x15\x35\xf7\x6f\xd3\x8e\x87\xc9\xf5\x71\x51\x11\x6a\xf3\xe0\xa5\x2b\x35\xc7\xf1\x42\x73\x14\x44\x20\x84\xfb\xfe\x5c\xf9\x83\x42\x4c\xd9\xba\x56\x5f\x7e\xb9\x99\x8e\x6d\x37\xe8\x07\x5d\x7a\x0e\x5a\x9b\x56\xec\xe0\x5c\x0f\xfe\x39\xfb\x5c\x43\x77\x0b\xdf\xd2\xfc\x86\xb7\xb4\xe0\xbb\x49\x06\x41\x18\xa2\x9e\x84\x43\xf3\xdb\x9e\xf8\xf2\x2b\xdf\x56\x42\x54\x83\x24\x08\x43\xde\x07\xa5\xc2\xe2\xb1\x74\xc7\x9d\x0e\x55\xfa\x8d\xdc\x50\x37\xac\xbc\x4a\xec\x0d\x48\x1c\xf8\xb5\x4a\x50\xc6\x36\x89\x5f\x8d\x1b\xfe\xf7\x7e\x4c\xeb\x8b\x5f\x7b\x49\xbc\xc4\xe3\x6b\x38\x20\xa3\x2f\x94\xe0\x6c\xeb\xe8\x1e\x78\xa1\xcc\x2a\x83\x34\x9b\xaa\x44\x8e\x0b\xce\xd7\x11\x05\x08\x20\xe1\x2e\xfb\x16\x61\xdc\xe9\xb8\x0c\xcf\x2d\x10\x8f\x01\x9c\xa8\xc5\xcd\x1e\x68\x9a\x81\x99\xd2\xc2\xd8\x60\x37\x8a\x86\x81\x12\x47\xb8\x5b\x6b\x26\x38\x8c\x57\xdc\x2f\x4a\xab\x47\x37\x74\x14\x95\xae\xbc\xa3\x65\x6c\xf3\x98\x22\x53\x6d\xdf\x9f\x42\x79\x88\x4d\x24\x5d\xaf\x25\xcd\xc7\x64\x1f\xc7\xcf\x02\xab\xee\x7f\xc3\xc6\xc4\x6f\x54\x50\x12\xe5\x09\x17\x81\x66\x79\x83\x39\x87\x35\xc3\x6f\x14\xed\x64\x68\x02\xa4\x95\x5a\x0e\x4a\x08\x39\x8f\xab\x3e\x4c\xd2\xb3\x11\x9e\x1b\x36\x79\x16\x8b\xe2\x37\x6a\xfd\x77\x82\x5e\x0a\x61\x7e\x94\xe9\x59\x0b\x19\xf5\x64\x60\x44\x91\x48\x6d\x27\x09\x20\xc9\x18\xbc\x13\x53\x72\xbb\xaa\x79\x44\x43\x0a\x34\x08\x9c\x34\xd1\xa1\xda\xde\x2e\x23\x48\x21\xd1\x3f\xed\x38\xc2\x11\xfb\xe8\xb3\xe0\xb6\xe8\xa7\xfb\x40\xe3\xf5\x89\xc2\x67\x19\xd6\x27\x76\x60\x92\x1e\xba\xdd\x2c\x2d\xdb\xf2\x88\xcb\x77\x70\x13\x0c\x36\x57\x25\x9a\x8e\x0d\x07\x81\x01\x22\x82\xc5\x38\x5a\x0a\x60\x7d\x7e\x62\x43\x3d\xf0\x42\x33\x8f\x48\x06\x9a\x9f\xa5\x24\x53\x9a\x5e\xfd\x79\x65\xbd\x4e\x08\x85\xdc\x75\xa5\x5f\xe2\xab\x7b\x0f\x67\x29\xbf\x51\x82\x74\x1d\x92\x0d\x48\xd2\x9d\xde\x95\x1b\x0c\x05\xc4\x68\x1b\x2d\xc5\x9d\x39\x82\x6e\x17\x2a\xd4\x1b\x38\xaa\x05\x9d\xe4\xed\x64\x3f\x50\x8d\xa6\xae\x89\x7a\x41\xcf\x64\x16\x98\x72\xf4\x51\x2f\x57\xc5\xb0\xb6\x34\x5b\x37\xd7\x94\x02\xf8\x9d\xda\xec\x72\x25\x4e\x96\x6c\x22\xee\xfe\x78\x4c\x8c\x5c\x45\x53\xff\xdd\x42\xc9\xb7\xde\x53\x51\x53\x2f\x48\xbb\x61\x2c\xeb\x42\xf9\x72\x38\x93\x0e\xa5\x27\x97\xd8\x34\x18\x44\xb6\x37\xed\xf3\xa0\xdb\x2d\xc5\xb9\xe2\xb9\xc6\xff\x52\x68\xbd\xf6\x1a\x31\x4b\x56\xa7\x9b\xf2\x21\xda\x7a\xa1\xdb\xd7\x1e\xb9\x72\x4f\x95\xac\x49\xba\xcc\x74\xb3\x18\x05\x2d\x40\x21\x20\xbb\xce\xaf\x0b\x65\x7c\x7a\xa1\xa5\x5a\x16\x97\xf0\x80\xf0\x4c\xff\x6c\xc2\x74\x63\xef\x5e\x32\xa2\xb7\xdf\xc8\x49\xe3\x55\x89\xbf\x79\x00\x16\xfa\x5c\x88\x92\x6a\x59\x27\x65\x90\x6c\xb9\xde\x8a\x4a\xe8\x7d\x04\x2a\xe2\xb7\xe8\x19\xaf\xeb\x13\x61\x46\xf9\x28\xcb\x07\x92\x58\xca\x8f\x59\xbc\x14\x89\xdd\x51\x25\xf0\x7b\xd4\x1d\x6f\xe3\x38\x64\x88\x19\xd6\xd9\x09\x45\x3f\x86\x7c\x84\x18\x75\x6f\xa9\x51\x1d\x78\xa1\xf9\xe2\xe2\x0c\xdd\x25\xee\xe6\xa6\xda\x1a\x30\x05\xa5\x49\xfc\x79\xa5\x27\xd8\xb3\x63\x1b\xf5\x6c\x94\x85\xec\x49\xc5\xbe\x09\x94\x75\xb2\x8c\x17\x02\x5e\x31\x54\x28\xbf\x49\xf4\xbd\x6a\x98\x24\xdd\xa1\x09\x43\x1b\x0d\xa4\xe6\x0e\x34\xdb\x05\x5a\x70\xfc\xda\x9d\x4a\x00\x96\xa7\xd0\xf9\x06\x22\xfb\x3f\xd1\x95\x2a\x66\xc6\x4b\x7e\x49\x79\x5f\xb1\x47\x88\xdb\x2b\x8c\xee\x72\x54\xb4\x70\xad\x10\xf4\xea\x9c\xdb\x57\xe3\x3c\x1a\xf0\xb2\xe2\x2e\xbf\x92\x84\x3c\x8d\x18\x5a\xe0\x63\x8f\xba\x3d\xb4\x1b\x9b\x69\x1f\xe9\x1f\xc3\x85\x29\x11\x5a\x69\x30\x9f\x51\x52\x36\xdb\xdb\x1e\xa0\x93\xe6\xa1\x08\x30\xe2\xea\x18\xda\xce\x6f\x54\x17\x29\x4f\x87\xbb\x94\xe2\x2e\xc2\x39\x05\x16\x92\x06\x2d\xea\x2b\x00\xfb\xf2\xce\xc0\xa7\x71\xe1\xe1\xf5\x1f\xb7\xfc\x73\xbf\xa0\x5c\x93\xa6\xda\x3e\x09\x34\x9d\x94\xd6\xdf\x03\xe5\x58\xbc\xe7\x7a\xd0\xb3\x12\xf3\x56\xda\xc7\xa2\x29\xe9\x77\x69\x9b\x66\xa6\x13\x06\xe9\x50\xa0\x9b\x9b\x84\x72\xdf\x3c\x5e\xfc\xda\x03\x4b\x0c\x51\xd7\x26\x51\x95\x99\xdd\xd2\x1a\xe7\x1a\xfe\x3f\xfe\x8d\xc1\x34\x35\xe9\x31\xa5\x4e\xd0\x86\xea\x04\xcd\xca\x0c\x83\xff\x81\xb2\x25\x69\x8f\x7f\x41\x63\x1d\x9c\x40\xd2\x30\x18\xe3\x1c\xc7\xa6\x72\xbb\x50\xfd\xbd\xdb\x75\xb1\x6a\x77\x68\x6d\x12\xc4\x42\x0a\xc6\x2e\x7f\x0d\xf3\x93\xdf\x4c\x94\x39\xca\xbc\xdf\x2e\x5b\x5e\xdb\x2e\xc9\x71\x89\xff\x7d\xad\x6f\x52\x78\x90\xb3\x09\x43\xea\x6f\x7a\x5f\x1f\x71\x4f\xe2\x77\xb5\x72\x90\x66\x3c\x0e\x03\x09\x2b\x79\x23\x69\x29\x8a\xc4\x09\xe5\xc2\x1b\x44\x7d\xc8\xed\x3f\x5a\x5e\x0d\x70\x05\x6f\x17\xca\xdd\xe0\x43\x55\x26\x3f\x5f\x15\x68\x69\x1c\x9c\xd9\xbc\x4b\x73\x0c\x53\x9e\xbb\xee\x28\xa2\x5d\x45\x81\x5f\x1c\xc6\xaa\xa1\x52\x39\x0a\xa2\xd8\x44\x67\x0c\x16\xe0\x4f\xa9\x5b\xce\x6d\xf4\x3a\x0b\xe9\x74\xc9\x66\x54\x6f\x71\x00\x95\x63\x0a\x71\x70\xac\xc6\x35\x7a\xbe\x09\xbe\x41\xc3\x6f\xf4\xd8\x32\xa4\xe8\xa5\x2d\xa2\xac\x19\xdb\x64\x8a\x6e\x02\x13\x00\x4c\x56\x97\xf8\x94\x37\x84\x3c\xeb\xac\x22\x4d\x8e\xe3\x15\x9b\xf4\xf3\x70\x87\xc7\x3c\xa2\xb4\x88\xf2\xf5\x49\x1d\x2b\x41\xcf\xb1\x96\x2c\xbd\xb5\xdc\xf3\x9b\xcd\x9e\x09\x18\xab\x85\x21\xb9\xa3\xb0\x98\xeb\xca\x81\x75\xb2\x75\xbd\xf0\x02\xb9\xae\xda\x14\xb2\xb2\xce\x02\xbc\x5c\x1a\x62\x0e\xbe\x35\x12\x2b\x93\x62\x9b\xc4\xe9\xd8\x74\xd9\x5d\x0b\xb1\xc6\x59\xa5\x48\x8d\x26\x18\x0a\x57\x93\x1e\xdd\xf3\xf3\xcd\x91\x89\x72\x23\x94\x45\x64\x3b\x88\xfb\xf9\xf5\x44\xb8\xf3\xd5\x59\x31\x1a\x04\x52\xce\x39\x6f\x2a\xff\x8c\xa7\x95\x4b\x72\x37\x4f\x08\xa3\x34\x35\x51\x95\x45\x70\x86\x91\x17\x8c\xe4\x93\xaa\xd1\x67\x82\xd0\x95\xf9\x9d\x9d\xee\xde\x59\xe7\xb3\xeb\x6c\x72\x56\xac\x63\xfc\x8b\xb6\xaf\xd2\x4f\x3d\xab\x82\x97\xa4\x3c\x3c\x5f\x5d\x8e\x73\xbe\x61\xa5\xcf\xfe\x92\xd3\x67\xdf\xa3\x83\xd7\xa1\xe2\x37\xa1\xe5\x2e\x4b\x52\x52\x9b\x95\x20\xea\xc5\x2b\xa1\x4d\x01\xc3\x62\x16\xb3\x8a\x53\x7e\xee\xa2\x85\x15\x33\xb0\x60\x33\x48\x11\xab\xfc\x2b\xc1\x2a\x79\x14\x63\x37\x31\x2b\x60\xff\xa2\x5c\xc6\xc6\xd2\xfc\x46\x5b\x3e\x9a\x34\x2d\x0f\x6f\x81\xe7\x8a\xfb\x6a\x43\xd9\xb2\x6e\xdd\xc1\xe7\xe6\x10\x66\x25\xcb\x54\x49\x91\x91\x43\x0f\xfc\x54\x4b\x31\x66\x4e\xa9\xa4\x6f\x40\xa2\xc7\xe9\x0e\xef\xbd\x7e\xad\xa5\x38\xc7\x57\x14\xef\xf6\x9a\x2a\xff\x7f\x40\x3b\x3d\x50\x15\x97\x6b\x43\xe7\x7e\x1c\x75\x03\x21\x79\x48\xd2\x41\xb7\x2b\xe9\xc8\xd6\x5c\xf7\xe5\x97\x9b\x71\xbf\x4f\x93\x4f\x10\x2f\xe5\x8f\xf0\xeb\x96\x17\x2f\x74\xa7\x5a\x19\x31\x2f\xce\xf0\xe4\xfb\x9e\x6e\x38\x1d\x51\xe0\x6a\xde\x2f\xe4\x7c\xa8\xe1\xa3\xf4\x43\xb3\x62\x7b\x53\xf4\x67\x4e\xce\xbc\xdc\x27\x85\x7f\xab\xe4\xcc\xff\xd8\x1d\xc4\x7d\x50\xc8\x1a\xce\x4b\xfa\x0e\x46\x8e\xdf\x28\x18\xa6\x27\xc5\xb2\xc3\x25\x3d\x48\x71\xbb\x7c\x52\x09\x90\x8c\xe3\xa4\xcc\xbf\xf0\xe8\xd0\x1d\x61\x1a\x08\xbf\xd1\x42\x3e\x36\x1e\x87\xa8\x01\x0b\x50\x67\x83\xe2\x3b\x3c\x65\x44\x26\x42\x5f\x9f\xdc\x90\x67\xcb\x48\xc2\x81\x60\xb8\x87\xa8\xd2\xe0\x33\x13\x61\xe5\xdc\xdc\x62\x33\xee\x94\x33\xcc\x4d\x4c\x6f\xae\xb6\xe0\xcc\xd5\x14\x14\xc7\x44\x3b\x95\x86\x0f\x43\x11\x78\x37\xa6\x31\x40\xbc\x78\x92\x98\xda\x52\xd2\xf0\xc5\xe0\xb7\x0a\xdf\x3a\xdb\xde\x56\x9e\xde\x36\x4d\xcd\x80\xdd\xae\x30\x9d\x5e\x2f\x3c\x01\xf0\x32\x7d\x05\x6a\xb3\xd7\x2a\x92\xe4\x41\x18\xfe\x52\xb9\xd5\x20\x52\xba\x4a\x0d\x5c\x56\xd5\xa0\x5e\x0f\x36\xba\x1f\x52\x89\x4e\xe4\xf9\xca\x19\x86\x60\xff\x2a\x8a\xc9\x78\x43\xe2\x06\xe2\x97\xd2\x20\x2e\x25\x57\x7e\x30\x0b\xf0\x10\x1a\xe8\x4d\xe1\xbb\x76\xac\xa9\x62\x02\x5b\x50\x62\x8a\xde\xc1\xdc\xc5\x9b\xcb\xac\x5d\x2d\x96\x8b\xd4\x58\xa4\xab\x3c\xfa\x54\xbb\xf1\xa2\x50\x0c\x37\x95\xa8\xed\x0e\x12\x67\xd8\xbc\x54\x78\x83\xed\x3d\x6b\x5a\x34\x78\x0a\xda\x2b\x80\xa2\xbd\xeb\x85\x5d\x4f\x3f\xb1\xa6\x12\xb9\xc6\x9a\x07\x4d\xe4\x51\x9a\x8f\x31\x1d\xa7\x14\x01\x16\x55\x53\x44\x72\xb7\xe9\x0a\x04\x90\xf7\xab\xd5\x44\x48\x02\x4a\xfc\xf7\x1f\xfe\xd6\xaf\x6f\xff\x22\xaf\xa0\xdf\x57\xa5\x3a\x02\x20\x6d\x72\xbc\xaf\xb0\x2f\x92\xd7\x5d\x29\x1a\xbf\xbb\x9f\x8b\x2c\x27\x74\x27\xfe\x14\x1a\xe4\x88\xfd\xff\xbc\xd5\xf8\xea\x2c\xa7\x0b\x7f\x84\xa1\xc4\x20\xff\x1d\x59\x14\xb9\x02\x65\xb9\xbe\xb1\x3a\xbf\x47\x21\x2d\xb7\xfb\xa9\x41\xeb\xb4\x30\xf6\xff\xe3\xaf\x7a\xa1\xa0\x85\xd9\x03\xbc\x4e\x3f\x2e\x94\xc8\xc1\x3b\x28\x9f\xb3\xd6\x19\xcd\x5e\xf4\x7e\xbe\x83\x23\x47\xb4\xf9\xcb\x28\x0a\x53\xfc\x3b\x95\x87\xfa\x0e\x11\x5f\x44\xb1\xbb\x71\xe0\x85\x0a\x8a\x9a\x81\x80\x8a\x87\xff\x77\x2d\x85\x86\x39\xa3\x69\xa3\x87\x31\x3d\x44\xc2\xd8\xdb\xe4\x9d\xa4\x35\xe9\xce\xcd\x72\xe2\xe2\x16\x0f\x73\xe0\xaa\x18\xb6\xcf\x3b\x96\xbc\x52\xe2\x5e\x82\x47\x27\xad\x94\xc1\xaf\x61\x1e\xa3\xce\x71\xbf\xf0\xbb\xee\xba\xde\xa3\x0b\x25\xe7\xf2\x68\xdb\x2b\x7c\xfd\x4f\xff\x80\xd6\x87\xf3\x49\x77\xe2\x8d\xc7\x7d\x07\xcf\x0c\xcc\xab\x41\x64\xa7\x55\x3d\xe5\x83\x42\xab\x7f\x53\x0a\xbe\x09\x50\xbd\xa4\xd0\x75\x61\xe6\xd8\xac\x8a\xaa\x25\x9e\xcf\x61\x7a\xbe\xfc\xda\x57\x7c\xad\xc9\xb3\x55\x65\xdd\x30\x45\x5d\x28\xec\x00\x2c\x96\x82\xda\xc4\x85\x89\x0c\x76\xef\x6c\x33\x41\x59\x55\x27\x6b\x15\xaf\x15\x0f\x8e\x30\x59\x66\xa3\x1e\x81\x0c\x1c\x12\xf8\x5a\x4b\x09\xd1\x7e\xc4\x00\x11\xe9\x09\xd0\xd3\x15\x7f\xe8\xc7\xb5\x99\xca\xb2\x45\xef\xd7\x6d\x5f\xae\x81\x71\x55\x31\x58\xb3\xf2\xf6\x69\xf0\x59\xf8\x1d\xb5\x1a\x51\x81\xaf\x39\xff\x22\x93\x24\xf1\x0a\x05\xb8\xd8\xcf\xce\x54\x02\x39\xba\x20\xb1\x62\xa9\xc1\xc2\x8d\x0c\xf1\x09\x75\xbc\xc1\x19\x29\xbf\xa9\xe3\x44\x99\x31\xd1\x10\x03\x66\xe8\x4a\x8d\xc9\xf7\x18\xd1\xe9\x45\x23\xff\x9f\x7b\x85\x0d\xe3\xca\x40\x98\xc0\x57\x91\xc4\x60\xbc\xd8\x46\xf8\x41\x84\xe2\x97\x5f\x6e\x2e\xc7\x65\x96\x15\x06\x19\x7a\xc5\xa8\x3d\x9c\x6a\x29\x3b\xe0\x53\x13\xb7\x38\x37\xd7\xec\x27\x79\x90\x71\xbb\x15\x47\xed\x95\x8a\x56\xb2\x0a\x34\x7f\xea\xc2\xc2\x91\x35\x00\x03\x28\xb8\xe2\x82\x63\x2d\x3f\xa1\xcc\xb1\xd3\x71\x90\xc1\x8f\x16\xf7\x7e\xbd\xe5\x1d\xde\xaf\x56\x45\x8b\x15\x6b\xf3\x3a\xd6\xbe\xf7\xb0\x9c\xe1\x03\xf0\x1d\x17\x43\xd3\x75\x2b\x59\xf6\xd7\x69\x50\xf9\xb5\x22\xfb\xf6\xf2\x28\x6a\x28\xc7\x32\x56\x2d\x13\xf5\x0a\xa5\x0a\x3f\x0e\x6d\xd4\x0b\x18\xea\x2b\x1a\xc6\x2a\xa9\x7c\xdb\x59\x04\x27\x96\x04\x49\x25\xc2\x40\x67\xf9\x8c\xa6\xd6\x9e\x99\x08\xc6\xf6\xcd\x37\x53\xb3\xec\x1a\x16\x5a\x91\x44\xa4\x4a\xb6\xa6\x67\x65\x8a\xe5\x6c\xba\x55\x77\x72\xd6\xa9\x19\xca\xf3\x88\x83\x30\xdd\x41\x83\x09\xd8\x3a\x63\x34\xb1\xf7\x3d\x0c\x2f\x33\x37\xff\x1d\xe3\xf1\x74\xa1\x31\x48\x4f\xe9\x82\x69\x64\xbb\x99\xed\x4d\xd3\x81\x83\xed\x10\x97\x8a\xbd\xe6\x34\x9e\x15\xff\x83\xee\x11\x9f\xf6\xb2\xbd\xc1\x68\x1c\xb2\x83\x8c\x03\x7b\x95\x5f\x27\xd6\xd4\xbe\x70\x7b\xb8\x26\x1e\x6b\x46\x41\xd7\x24\x66\x90\x73\xa5\xbf\x22\xf8\xf9\x20\x1b\x95\xf9\xf9\x66\x62\xe3\x64\x60\x22\xef\xe8\x29\x12\x26\x34\x6e\xa2\x81\x31\x89\x7b\x78\xbe\x69\xc2\x70\xaa\x9c\x9b\x5c\x68\x40\x9d\x5e\xc2\x5f\x4f\x22\x3e\x5e\x3c\xec\xa6\xcc\xa1\x86\x07\x5a\x02\x21\xc9\xaf\x27\x58\xeb\xcf\x36\x07\x61\x9c\xa6\xab\x4a\x16\x63\x9d\x36\x6f\x8f\x17\x75\x19\x5f\x9e\x98\x70\x47\x25\xa9\xf1\xbd\x54\xfc\x8a\x13\x08\x53\xfe\x05\x45\x35\x29\xf2\x69\x29\xd5\x40\x83\x68\x30\xad\xd0\x67\xa8\x7e\x33\xa9\x85\x9e\x84\x10\x5c\x68\x7c\xf9\x8f\x5c\xc2\x38\x1e\x06\x61\x30\x1e\x07\x91\x9d\xf2\xd4\x81\x27\xdb\x9e\xdd\xc6\x9f\x43\x33\xe5\x91\xb5\x1a\xc2\x6e\xcf\xf6\x6d\x92\x08\x56\x86\x23\x1d\xcc\x1c\xc4\x17\x30\xcb\x01\x94\xf9\xac\xdb\x14\xfb\x41\x3f\x1b\x36\xfc\x94\x3d\xae\x00\x55\xc7\x95\x70\xf9\x2b\x79\x9a\x3d\xe5\x05\xf0\xa6\xd8\x96\x50\xb4\x2c\x68\x01\x08\x65\xb6\x3c\x6c\x77\xe3\x0c\x17\x98\x8e\x52\xc4\xde\xb5\xa6\x79\x51\x9e\xbc\xb1\x1d\x22\xb2\xd8\x86\x38\x50\x41\x3c\xfa\x5f\x68\x4b\x93\xfd\xb6\x5c\x52\xa8\x9f\xfc\x75\x4b\xd5\xbb\x39\xf7\xac\x48\x4c\x30\x78\x06\x7b\x9d\x36\xd7\x43\x90\xf0\x30\xb1\x3f\x26\x97\xe7\x38\x47\x8a\x98\x4c\x79\x96\x24\xba\x0c\x95\xf8\x5b\x12\x10\x8f\xff\x25\xb1\x12\xac\x0a\xdc\xdf\x86\x76\x2e\x9a\x6c\x4e\x50\xa1\xaf\x13\x2f\x5b\xe2\x83\x21\x54\xbd\x45\x19\x04\x8a\x45\xdf\x2a\x94\x77\xf2\xf5\xc2\xdb\x38\x6d\xa3\x3e\x23\xb6\x87\xfb\x18\x05\x29\x36\xd7\x28\xcf\x75\xe3\x7c\x1c\x5a\x05\xfd\x62\x60\x2a\xbf\xa9\x01\xec\x37\xd3\x30\x18\xf3\x59\x29\xb5\x26\xfa\x88\x20\x03\x69\x78\xb1\x14\xde\x2a\xaa\x9d\x20\x13\x44\x36\x49\x77\x28\x18\xe3\xdb\x0a\xe6\x73\x4b\x13\x3d\xdf\xd6\x45\x0c\x14\xde\x71\x98\x4f\xb5\xb7\x6e\x20\x5f\x9d\x6d\xae\x98\x64\xd4\xa8\x90\x87\x17\xdd\x6b\x75\xcc\x94\x27\x47\x9a\x27\xab\x54\x0c\xc5\xfc\xbc\x81\x3a\xa6\xab\xb0\xec\x9b\xaf\x9a\x55\x21\xba\x7c\x0d\x61\xba\xa2\xdc\x4a\xc9\x0c\xcc\x41\x11\xea\xf3\x09\xeb\xa9\x42\x61\xc2\x31\xff\x34\x40\x1c\xeb\xe1\x28\x6e\x92\x73\x9d\x96\xb2\xdf\x1b\xd8\x28\x83\x36\x39\xd2\xb2\x8f\x95\xdf\xc0\xa7\xaa\x0e\xd4\x00\x24\x0b\x0f\xe2\x5a\xdd\x13\x86\xa9\x3f\x0d\x0e\x5b\xf2\x63\x3b\x16\x7f\xfe\xa7\x55\x73\xd7\x89\xb7\x78\x78\x0f\x76\x2b\x81\x06\xf9\x6a\xea\x18\x26\x02\xd3\x0a\xdb\xf0\x96\xee\x96\xe1\x47\xf8\x1f\xb0\xc6\xa5\xb2\xe9\x91\x19\xe9\x8a\xed\x05\xe9\x70\xba\xcc\x74\x70\x3f\x3f\xc1\xe1\x89\xa4\x0b\xf8\x5e\xc7\x7e\xdc\x3b\xeb\xd4\x13\x9c\x6e\x7a\x9e\x66\xf1\x28\xdd\xe9\xf1\x27\xe7\x74\xf7\xe6\x24\xbe\x0d\x49\xdf\x33\x18\x2a\x91\x67\xc4\x26\x85\xe2\xd4\x39\x25\xb6\xae\x43\xa8\xa1\x0d\x46\x36\x49\x55\xe3\x7a\x53\x6f\xb6\x9b\x75\x11\x68\xcf\x2e\xdb\x30\x1e\x4b\xe8\xe0\xc0\xaf\x9e\xfc\x37\xb9\x10\x9f\x6d\xf6\x83\x2c\xa2\x9a\xa0\x03\x61\x9c\xc2\x47\xf8\x8d\x97\x22\x09\xfa\x38\x08\x30\x4b\xdf\x45\x18\xed\x08\x1a\xce\xdd\xea\x9f\xb9\x4f\x74\x12\x2e\x8f\xa3\x3b\x04\xb9\x09\x7e\xad\x1e\x68\x68\x4d\x1a\x44\x83\x1d\x4a\x3f\x9c\xb7\x4a\x7e\x43\xbb\x2b\x20\x6b\xff\x45\xf5\x36\x38\x2c\x10\x73\xa2\xba\x28\x37\x34\xcb\xcc\xcb\x72\xd8\x1f\x8f\x03\x72\xa9\xd3\x38\x8f\x44\xbb\x0a\x61\xf7\x4d\xc5\x0e\xb8\xe9\xc0\x60\xf6\x50\xd7\x4a\xf1\x00\x61\x2d\xac\x9e\x95\xe1\x8d\xd0\x92\x1f\x59\xf3\x20\x11\x3b\x1a\x9a\x04\xe5\x72\x85\x11\x71\x80\x11\x85\xd4\x0a\xed\x70\xc4\x81\x8f\x6b\xf1\x2b\x3a\xa4\x43\x0b\x75\x87\xb6\x97\x87\x70\x8a\xc4\x7c\xbd\xac\x09\x8b\xe8\x88\x63\x69\x03\xaf\x29\xe7\x5a\x4d\x5d\xbd\x1f\x27\xa3\x3c\x04\xc3\x8c\x79\x12\x4a\xd7\xbb\x0e\x15\xbd\xd0\x24\x20\xc0\xb4\x92\xff\x3f\xac\x75\xc8\xd1\x14\x46\xdc\xf9\x89\x92\x93\xbc\xaf\x80\x33\xf6\x50\x37\x4f\x75\x58\x71\x5b\x89\x24\x30\x3d\x40\xde\xd4\x1d\x04\x41\xb8\x6c\x94\x06\xc0\x16\x01\x83\x09\x4b\xd5\xd9\x66\xd7\x24\x69\xb5\xc5\xd8\xd2\x2d\xc6\x1a\x37\xd9\xa6\xcd\x93\xb8\x17\x87\xa1\x49\x38\x4f\x42\x19\xf1\x35\x85\x86\x15\xc3\x38\x24\xc1\x97\x27\x7a\x66\xbf\xdd\x4c\xe3\x91\x5d\x19\xda\x04\xdb\x20\x26\x07\x20\x1f\xfc\xba\x06\xf0\x30\xdb\x8c\xf3\xd4\xa5\x19\xa2\xe9\x58\x7e\x46\x80\xbd\x5e\x88\xcc\xf4\xdd\x1f\x02\xfa\xb9\xad\xad\xcc\x9c\xb7\xad\xf9\x2c\xda\x9a\xd4\x42\xc9\x11\x39\xde\x27\x8a\x97\x77\x1d\xd3\x47\xac\xe9\x5d\x67\x36\xef\xf7\x6d\xd2\x50\xbc\x56\x18\xea\x08\xbf\xae\x46\xba\x24\xcd\xf2\x51\x27\x94\x80\x0f\x93\x93\x81\xee\xdc\x96\x53\x3d\xb2\xa9\xb6\xba\xbc\x4e\x87\x43\x77\x44\xe2\x37\x35\x65\xff\xa6\xaa\x29\x77\x6c\x18\x47\x03\xdb\x6b\x94\x4b\xc3\x09\x44\x97\xb1\x94\x08\x44\xfb\xd0\x67\xd9\x84\x41\x6f\xa7\x17\xb2\xbe\xa8\xf8\x87\x17\xf5\x76\xfd\xae\x26\xa9\xbe\x8b\x43\xb3\x4e\x25\x4a\x46\x26\xb3\x87\x4c\x94\x56\x60\x6c\x6c\x14\xe4\x0c\xf4\xcb\xd9\x25\x45\x8f\xad\xf8\xf7\xd9\x03\xcd\x3c\xea\xd9\xa4\x9b\x27\x89\x80\x96\x19\xba\x4a\x4f\x45\x60\xac\x4f\x3a\xa0\xc0\x68\x64\xa3\x6c\x8b\xc0\x1b\x32\x76\xc1\x4b\xd6\x74\x86\x13\x13\xa0\x63\x26\x30\x79\x49\x17\xf8\x5d\xeb\x51\x0d\x2b\xdc\xa1\xcb\x22\xca\xfa\x85\x0d\x5a\x50\x85\x83\xd6\x24\xa2\x4f\x52\xb8\xd9\xbf\x39\xa9\x1f\x31\x3f\xdf\x0c\x4d\x1e\x75\x9d\xbe\x07\x1e\x7d\xa3\xad\x72\xec\xc6\x9a\x70\x27\xa2\xe7\x5e\x51\xca\x0f\xe7\xb4\x5c\xde\x39\x85\x4e\xed\x24\x76\x05\x13\x04\xc9\xc7\x71\x6d\xcc\x74\x5c\x4b\xbb\x05\xcb\x41\xb8\x13\x37\x8a\x28\xe0\x27\x4a\x4f\x83\xc5\x3e\x9c\x3d\xdb\xdc\x9c\x57\x96\xf3\x5a\xb9\xac\xae\xc0\x1f\x2f\xfc\xc6\x85\x63\x1f\x77\x85\xdd\xf6\x8a\x72\xfe\xbb\x32\xb1\x9a\xcb\xfc\x3f\x4f\xfa\xa6\x6b\x55\x79\x06\x80\x1b\x7e\xad\x9a\xf2\xa3\x38\xea\xb1\xda\x0d\x63\xf2\x30\x13\x05\xa0\x37\x09\x8b\x59\x68\x8e\x4c\x77\x48\xcc\x79\xfa\x18\x10\x5d\x9b\x2d\x0f\xc8\xd3\xe4\xb6\x34\x5e\x0e\x6c\xf6\x68\xb9\x13\xe1\x14\xbe\xc9\x2c\x2f\xc7\xd4\x2e\x87\x17\xe8\xfb\x4d\x0c\x2f\x9f\x22\xa4\x85\x8d\xf5\x05\x4b\x53\x01\x05\xd3\x30\x21\x9f\xda\x4e\x29\x94\xf4\x0c\xca\x74\x6b\x5a\x2b\x1d\x5d\x45\xbc\x80\xf5\xc1\x64\x79\x71\xb5\xd7\x10\xf9\x81\x49\xf7\x94\x5f\xc4\xbe\x4d\xe5\x8a\xdd\x7c\x1d\xd9\x04\xeb\x90\x15\xaa\x53\xf3\x4d\x85\xb8\xfb\x2e\xf6\x19\x67\xb3\x55\xfe\xb6\x5b\x8e\xe5\xcf\x89\x4d\x7b\xe3\x6b\x5f\x11\xf7\x77\x85\x3d\xdb\xd6\xf6\x5b\xd6\x11\x52\x6a\x76\x5c\x16\x7f\xe1\x87\x55\x8a\x3d\xb6\xa6\x6b\xfb\x79\xd8\x50\xf2\x5a\xd0\xf5\xe5\xd7\x0a\xd7\x99\x8e\xad\xed\x0e\x1b\x4a\x56\x9e\xeb\x7c\xfc\xa6\x86\x9f\x3d\xdb\x1c\x06\x61\x28\xa7\x96\xd0\x8a\x95\x89\xfe\x89\xe2\x51\x5f\x4c\xcd\xed\x6e\xfa\x72\x7e\x48\x2d\xd5\x99\xfc\x4b\xba\x26\x76\xf5\x40\xdf\xc4\x91\xb0\xca\x3b\x13\x2f\x03\x55\x7d\xc5\xc3\x47\x8b\xee\x17\xbc\x69\x60\x2a\x30\x40\x13\x93\x64\xd7\x9a\x8f\xa8\x7b\x41\x9a\xd2\x5e\xf6\xe5\xaf\x4b\xef\x81\x06\x57\xfa\x10\x1e\x1d\x98\x76\x87\x49\xdc\x03\x27\x75\x41\x6b\x54\xb8\x37\x75\x95\xa1\x71\x12\x67\x36\xcd\xa8\x53\xa7\x3c\x03\x0b\x55\x32\x59\x9f\x88\x8a\x67\x0f\x34\xc7\x71\x18\x64\x9d\x3c\x01\x66\x1a\xfd\x83\x37\x75\xdf\xfd\x4d\x15\x81\x75\xec\x60\xc8\xb2\x5b\x6c\xf8\x49\x5b\x87\x98\x7f\xd6\x84\x22\xfd\xc0\xd5\xea\x10\xad\x32\x0b\x93\xdf\xd4\x94\x84\x10\x46\xe2\x54\x75\xc5\xc9\xf2\x23\x52\x9c\xd4\x56\x51\xd6\x24\xe1\x2a\xd9\x32\x60\xcf\xe5\xb0\x85\xdf\xf0\x93\x61\x67\x13\x6a\x90\x60\x2e\x5f\x56\x76\xf3\x97\x95\x84\xc4\xdf\x2a\x04\xd6\x2d\x2c\x77\xe7\x0d\xe7\x4d\x0e\x26\xe1\xe1\xfb\x08\x80\x97\x0c\xac\x96\x45\x6c\x35\x5e\x74\xaa\x88\xaa\x03\xdf\x31\xd1\x52\x10\x0d\x1e\xf2\x94\xed\x13\x2a\x23\x05\x5c\x0c\x25\x94\x9b\x5a\xd9\xea\x1e\xf6\x07\x7e\x53\x28\x01\x18\xc4\x3e\xa2\x88\x5e\xc7\x1d\xca\x92\x80\x5d\xc0\xb1\xd7\xdc\x50\x3e\x71\x37\x26\xc2\x94\x85\x17\xf6\x37\x7b\x76\x9c\x67\x81\x03\x15\x60\x71\x6f\x14\xea\x08\xdf\x98\x20\x1b\xcf\x1e\x20\x09\x4a\xee\x14\x0b\xcc\x87\x1a\x67\xde\x55\x4b\xf5\x66\xd3\xe1\x93\xf8\x76\x11\x41\x52\xac\x18\xb8\x0b\xe0\x80\x3d\x41\x51\x89\x53\x99\xf0\xf8\xbd\x1b\xca\x2f\x7f\x9a\x1a\x56\xe5\x4e\x58\x86\x3a\x18\x8c\x8f\x0a\xdf\xe3\x9d\xa6\x8e\x14\x52\x05\x94\x0e\x01\x6c\xb8\xa6\x77\xb2\x56\x75\xd2\xcd\xcd\x2d\xf2\xf2\xbc\x4e\xf5\x03\xa4\xc9\x37\x50\xe6\xe5\x7f\x68\xa9\x76\xda\xd5\xd6\x16\x70\xe8\x97\xbf\xde\x9c\x9b\xdb\x8f\xf5\xe8\x6c\xfd\x17\x5e\xd8\xef\x60\x93\x52\xd0\x5b\x36\x61\x0e\x2e\x0c\xf6\xe0\xd7\x0b\x55\xb6\x7e\x5d\x25\x06\xe9\xd0\x2c\x31\xfe\x7d\xf3\x52\xb9\x7f\x6c\x5e\x72\x41\xd7\x92\xb5\x11\x83\xcd\x1d\x25\x4e\x79\x0d\x6e\x8d\x42\xe6\xe6\x9a\x61\x30\x0a\x7c\xd4\xc4\x89\xa2\x42\x00\x9d\x52\xed\xa8\x65\x13\x86\x76\x75\x5a\xed\xaf\x9f\x28\x5c\xec\x27\x85\x17\x6e\x7c\x57\x31\x07\xde\x6d\x79\x54\xc4\x30\xc8\xba\x43\x8a\xf3\x1d\xcc\x50\x09\xc9\xed\x51\x6a\x03\xfd\xec\x11\xd5\x0e\xb8\x0a\xf8\x94\xb0\xe9\x7d\x5c\x5b\x81\x07\x81\x0e\x87\x73\x77\xaa\xad\xa1\xcb\xa8\x10\x21\x44\x3d\x85\x87\xc7\x4f\x12\xcf\x1b\x6d\xd9\xbf\x2d\x54\x90\x4c\x3a\x94\x9b\xaf\x4f\xec\x97\xf3\xf3\x4c\xbb\x8d\x05\x10\x21\xca\x2f\x0d\xaf\x02\x53\x0b\x67\x4e\x97\x82\x84\x65\xb2\x1d\xc2\xd4\xe5\xc6\x17\x27\x32\xa3\xd9\x03\xcd\x38\xc9\x86\x71\x2f\x3e\xa4\xd4\xde\xd7\x95\x66\xe9\xba\xeb\x29\xb0\xcf\x5e\x83\x46\x09\x85\x28\x56\xa2\xe1\x37\x13\x8f\x7e\xf6\x40\xb3\xdc\x38\x03\x9b\x66\x60\x44\x62\x5d\xdc\x87\xfd\x3e\x06\x07\x95\x17\xd6\x0c\xa8\x90\xf4\x96\xe2\x68\x4a\xc9\xf4\xfc\x44\x41\x86\x58\xf2\x04\x1b\xe8\x55\x6d\x03\x1c\xa5\x41\xcf\xee\xc6\x7a\x47\xb7\x7d\x43\xf9\x1a\x5f\x2b\x14\x35\x1f\x2d\x00\xa5\x89\x2a\x89\x3b\x7b\x96\xf0\xc7\x5b\x7e\x41\x9f\x53\x61\xca\xf7\x0a\x0f\xbc\xd3\x32\x0f\xdd\x38\x8c\x93\x69\x8d\x40\xe6\x3d\x5d\xcb\x88\x8a\x5f\xac\x6a\x0f\xae\xd7\x08\xcc\xf5\x4d\x14\x31\xd2\x5f\xf4\xb4\xe9\xfa\x85\x11\x28\x4f\x26\x1b\x26\xd6\x48\x1b\x11\xf3\xf7\xae\x96\x93\xa7\xcb\x96\xd7\x93\x92\x21\x89\x79\x35\x4e\xa6\xd4\xee\x71\x56\x91\x8c\xe0\x3e\x89\x8d\xe7\x8c\x1a\x69\x13\x8c\x82\x68\x30\xed\xfd\xe5\xd6\x95\xb5\x1b\x24\xf2\xf9\x75\xb5\xcf\xa8\xb7\xe6\xcc\x62\xd6\x49\x25\x98\x16\xa3\x54\x7f\x6b\xb6\xfd\xa1\xe1\x4e\xf5\xe6\xfb\xb4\x70\xde\x2f\xb6\xca\xcc\x13\x03\x35\x31\x51\x3a\x8e\x93\xcc\xeb\x26\x09\xdd\x4a\x65\x13\x7e\x5e\x07\xd1\x2b\xb9\xa3\xfa\xa3\x11\xb0\x6d\x4d\x49\x8b\x1e\x51\x3c\xe2\x9b\xae\x03\x9a\x25\x52\xab\xaa\xad\x0b\xd6\x28\x64\xf4\x4d\x1e\x99\x86\xaa\x47\x5e\x54\x84\xa9\x8b\x35\xde\xfe\xcd\x9e\x0d\x83\x65\x9b\x54\x03\x9b\x75\xa5\xc9\xbd\xae\x00\x90\x69\x18\x0c\x86\x59\xb8\xfa\xb0\x67\x19\xfd\x21\xcd\x5d\x97\x23\x94\x3b\x12\xd7\x06\x71\xc8\x23\x44\x3f\xaa\x0a\x45\xcc\xbf\x70\x7e\x77\x8b\x0b\xbe\x83\xee\x8e\xf5\x3b\x2d\xd5\x40\xf9\x00\x7d\x30\xe1\x75\x6c\x4d\xb1\xe7\xe6\xf6\x97\x21\x63\x3a\xb6\x5d\xe2\x61\xaa\xe2\x62\x55\x42\xe0\x49\x4f\x1a\xb0\xd1\x20\x1b\x8a\x3b\x10\x8a\x1c\xff\x2b\x85\x2e\x88\x90\x4f\x61\x3b\x65\x10\x05\xb0\x34\xb8\x5f\x7c\xa3\x90\x47\x26\xca\x4f\x7b\x9b\x83\xa0\x0f\xa6\x88\xd8\x99\xfb\x2d\x05\x82\x6a\xa2\xdd\xe8\xd7\x73\x14\xfc\x7f\xdf\x87\x1e\xe4\x6c\x1c\x99\xa8\x8b\xc4\x50\x54\x4f\x68\xae\xf0\x1b\x25\x78\x41\x1a\x31\x03\x62\xee\x7a\x01\x0f\xac\x46\x21\xaf\xfa\x16\x41\x9a\x19\x04\xe1\x72\xa4\xfe\xb0\xe5\x91\x26\x3f\xac\x29\x31\x8f\xf3\xee\x12\x4d\x5a\xd5\xf9\xd4\x1d\xd1\x9a\x15\x97\x66\x26\xe8\x4d\x79\x28\xe2\x7a\x4b\x59\x2a\x1c\xa3\x0b\xc3\x49\xf6\xee\x56\xc2\x0a\x19\xcc\x7f\x71\xe7\xc4\xd6\x87\x89\x72\x52\x53\xf9\xd8\x50\xd6\x89\x3c\x3a\x9a\x10\x2b\xe4\xc8\x6e\xe9\x63\x5b\x0e\xc8\x29\xb6\x15\xcd\xa2\x32\x06\x43\xc8\x78\x5e\xb9\xbd\xa3\x52\x86\x03\x8a\x09\x16\xce\x53\xc0\xdb\x2f\xfe\x5b\xd5\x5c\xf9\x8e\x82\x2f\x44\x5d\x63\xea\xf6\x72\x07\x2f\x9e\x9f\xe7\xc2\x29\xf7\x60\xb9\x59\x34\xa1\x5b\x4f\xae\xe4\x89\x35\x79\x37\x31\xc2\x14\x91\xbf\xf5\x25\xdf\xd7\x54\x35\x3e\xb1\xe9\x38\x8e\xb0\xf9\x4b\x15\xa2\xf1\x3b\x2f\xba\x22\x84\x3e\x29\x63\x13\x91\xc4\x11\xea\x92\xaf\xd1\x7a\x96\x7e\x6b\x05\x4e\xa9\x2c\xdf\x36\x5b\xca\x59\x0f\x83\x8e\xd0\xf7\x72\xcd\xcc\x49\xf3\x4e\x1a\xf4\x30\x85\xf1\x98\x20\x60\xc9\xaf\x27\x0a\x6b\x24\x7b\x99\x66\x26\xea\xa5\x59\x10\x86\xba\x08\xa9\x88\x89\x6c\xef\x8b\xe4\xe4\x88\x8e\x01\x03\xd3\x8d\x47\x53\x4a\xbf\xf1\x4d\x1a\x25\x3c\xde\xd3\x9a\x89\xfd\xa9\x0e\x5a\xad\x49\xba\xc3\x0a\x35\x51\x37\xc9\xb7\x46\x27\x64\xc0\xa3\xa5\x91\x90\xe6\x40\x69\x88\x5f\xab\x03\x2f\xcb\xa3\xc8\x86\x48\x96\xb9\x69\xa4\x44\x14\xcf\x55\x1f\xc8\x4a\xfa\x68\x39\x1f\x51\x9e\xfe\x73\x3c\x04\x41\x6f\x68\xaf\xb9\x53\x94\x2c\x82\x3a\x30\xdd\xf6\x11\x18\x37\xcc\x30\xcd\x20\xc9\x8f\x09\x38\x0d\x5c\xa5\x53\x13\x3b\x38\x53\x41\x49\xa0\xba\x70\x13\x73\xdb\xed\xdc\xce\xba\xe8\x48\x45\x16\x27\x8a\xe2\x0c\xd9\x00\x9b\x3f\xd1\xfd\x88\x11\x94\x1f\xd7\x0e\xd8\xf7\xe5\xf7\xa3\xa2\x72\x83\xbe\x92\x5f\xab\xd8\x27\x8b\xe3\x30\xd5\x64\x9b\x0d\x4d\xb6\xd9\x98\x88\x3e\xe7\xe6\x9a\x26\x48\xc2\x20\x72\x09\x20\xda\x58\x9f\x68\xa0\xc9\x27\x95\x45\x01\xe2\x8b\xa2\x74\x61\x32\x08\xbf\xeb\x71\x45\x3d\xeb\x66\xe1\x2a\xa2\x1a\x71\x90\x52\x98\x77\x08\x1b\xca\x7d\x6f\xbd\xb0\x2f\x7d\xa9\x99\x76\x13\x6b\x46\xa2\x3d\xa8\xaa\x23\xf3\xae\x3a\xe2\xf0\x58\x71\x62\x1f\xf3\xf0\x87\x3d\x6b\x3e\xdc\x7a\x86\x0a\x6c\x9b\x97\x54\xb0\x38\x45\x0e\x85\xc8\x0a\xef\xe3\xf0\xa4\xcc\xe0\xb3\xff\xae\x4d\x27\x34\x6d\xdf\xef\xfd\x56\x5b\x49\x93\xb1\xf5\x21\x4e\x5f\xa8\x28\x11\x1e\xe0\x48\x73\x4d\x09\x48\x72\x15\x10\x79\xd8\x34\xc9\x68\x3a\xaf\xa4\xf2\x1e\x84\xe5\xe2\xb1\x98\x36\xb5\x8f\xfa\xa2\xc4\xf6\x35\x9a\x35\x78\xac\x7f\xa4\xd9\xa0\xf8\x79\xcc\x52\x36\x6b\xc5\x47\xfe\xff\x6b\xda\x06\xa4\xf0\x40\x33\xe2\x0e\x71\x7c\xb1\x63\x4d\x03\x43\x1b\x6d\xd7\x7d\x7c\xfb\x4b\x6d\xa5\x5c\x02\x3c\x14\x1e\xe4\xa4\x4e\xe0\xde\xbd\x4d\x1b\x39\xd7\x20\x16\xca\x2a\x94\x2e\xe4\x2d\x45\xf2\x5e\x89\x63\x58\x29\x20\x46\x60\x6e\x14\x96\xc3\x8e\xb5\xf2\xca\x54\x00\x2e\x4d\xfd\xa3\xda\xc5\xe3\xa6\x57\xc2\x4d\xe2\x5e\xde\xb5\x0f\x35\x44\x19\xf6\x57\x6f\x15\xde\xe9\xf9\x6a\xcb\x0b\x59\xac\x2b\x6d\x3f\x46\x07\xa1\x55\xc5\xe4\xa8\x8a\x73\x0a\xce\x9d\xa7\x55\xe7\x65\x64\x6d\xb6\x43\x4d\xe6\xc3\x2d\x1d\xf2\x94\x43\xcb\xaf\x11\x26\xbb\x9a\x85\xf3\x4d\xb8\x5a\x37\x68\x89\x59\xe5\x18\xd8\x5d\xb0\xa3\x31\x5f\x55\xa2\x38\x89\xcd\x3c\x7f\x46\xb8\x68\x80\xd4\xf2\xeb\x3a\xff\x90\xcc\x24\x41\xbf\xcf\xe7\x19\x6a\x96\xc8\xb6\xf9\xb5\xae\xd8\x13\x0f\x78\xaa\xaa\x65\xe8\x4f\xdd\x4d\x2c\x79\xcc\xb1\x4b\x8a\xbf\xd6\x4f\x82\xe5\x38\x8c\x73\xf4\xe0\x25\x04\xd6\x6d\xe9\x62\x8b\x42\xc9\xde\x59\x3a\x7f\x1e\x6a\x38\xd1\xbf\x0d\xa4\xe6\x38\xa9\x4f\x23\xcd\xe7\x37\x4a\x04\x63\x8a\x70\x33\x12\x13\x2b\x9c\xe2\x47\x8a\x50\xfc\xa3\xca\x3e\x6f\x0f\x65\x8f\xd0\x57\x2b\x10\xe2\x7c\x05\x5d\x08\x64\xd7\xb6\xb6\x2a\xe4\x72\x6b\x05\xe0\x94\xe3\xf4\x94\x45\xfb\x0a\xa3\x83\x1d\xea\x3c\x9e\xb3\x8c\xa4\x3f\xff\xb8\xb2\xc9\x52\x75\x85\xb2\xd9\x39\x59\xd3\x02\xda\xdf\x1c\x9b\x2c\xa0\x8a\xf0\xdc\x9c\xa3\x7e\xf8\x59\x73\x6e\xe2\x33\xfb\xe6\x9b\xbd\x20\x25\xc7\x35\xe5\x76\x75\x46\xb9\x5d\x9d\x51\x7b\xc8\xe2\x97\xf7\x63\xd6\x02\xa1\x34\xdd\xd6\xe2\x1d\xe7\xb4\x1d\x33\x9c\x50\xc5\x4f\xa7\x1c\x6b\x6e\xf2\xe8\x1d\x69\x90\x22\x64\x44\x73\x70\x67\xdb\x03\xce\xb6\x03\x2a\x8e\x95\x7b\xac\x50\x80\x92\xab\x0a\x76\x72\x4c\x93\x8a\xef\xd5\x28\x57\xec\x6f\xae\x98\xc4\x59\x69\xa0\x94\xf2\x03\x6c\x24\xfc\x46\x31\x06\x43\x33\x18\x10\x1c\xdb\x69\x8a\x71\xf5\x50\xcc\x49\x94\x69\xb9\x89\xf9\x0c\xab\x98\x78\xf3\x1b\x07\x5e\xed\x05\x69\x1a\xf4\xe4\x71\xf0\x73\x57\x2a\x76\x67\xb4\x50\x55\x9c\x08\x1c\xdc\x35\x23\xa1\x9a\xc2\xaf\xeb\xea\xf3\x1d\x93\x0c\x4c\x10\xb9\xa0\x46\xb8\xc5\x3e\xf6\x3e\xab\x94\x51\xa2\xc0\x86\xa9\x8d\xf8\xca\xa5\x4f\xaa\x9b\xa6\x4a\x41\xbc\x1b\x07\x51\xb7\xbc\xf8\x2e\x44\x7f\x1d\xbe\x7d\x9f\xc3\xba\xd7\x48\x42\x11\x50\x7d\x34\x46\xde\x85\x64\xe1\x24\x06\x51\x3c\xc4\xcb\x4b\xc3\x38\xdd\x9e\x20\xf9\x1f\x9c\x99\xa5\x34\x78\x30\xcc\x2c\x12\x11\xc0\xec\x10\x2c\x39\x87\x2c\x4f\x35\xba\x55\x78\x9c\x70\x3f\x27\x88\x12\x02\x49\xac\xaa\x8f\x95\xf4\xe8\xdb\x8a\x63\xfd\x5a\x4d\xfe\xfd\x52\xb3\x2f\xf6\x08\x1e\xbd\xc1\x0d\x2d\x7e\x53\xe7\xe5\xda\x49\xbc\x9e\x2f\xd6\xe5\x6d\x2c\x03\x7e\xe3\x8e\x96\xb8\xb7\x9a\xa6\x16\x51\x35\xee\xff\x70\x4b\x4d\x9a\xc3\x75\xf5\xb4\x30\xee\x74\x56\xdd\xc3\x95\x16\x7a\x63\xde\x1b\xf7\x79\xb6\x5f\x3f\x4e\x6c\x30\x88\x2c\x4c\xae\x3c\x7c\xdd\x97\x5c\x7e\x4a\x47\x19\xd6\xea\x55\x37\x47\xd9\xde\x45\xd6\x08\x06\xfc\x8a\xa2\x57\x5c\x69\x3d\xaa\x9c\x86\x10\x42\xd6\xd5\x5a\x6b\x54\x67\xc2\x4e\x3c\xa5\xa6\xd7\xd4\x9a\x07\x32\x40\x1c\x0d\xeb\xfb\x54\x5d\xf6\xbe\x4c\xed\x55\x8d\x46\x75\x2a\x74\xc7\xf1\x5b\x38\xb1\x87\x41\x18\xa7\xf1\x78\x68\x93\x74\x5a\x39\x63\x72\xee\xea\xda\xc5\xfb\xe6\x9d\x64\x06\x3d\x52\xe9\x1d\x3b\xd8\x94\xcd\x04\x5a\x80\x93\xf7\x4f\xb4\xce\xfe\x25\x95\x58\x5e\x54\xcd\xe3\x6e\x90\x74\xf3\x74\x67\x95\x69\xe7\xf3\x84\x1b\xd8\x9f\x98\xfb\x83\xf8\x03\x39\xd8\xa5\x2a\x1f\xaf\x7c\x30\xc8\x5c\xfe\xa9\xca\x8c\x5e\xc9\x47\x63\xd6\xf3\xc0\xa3\xe0\x19\x83\xd8\xea\xff\xe2\x03\x04\x39\x04\xaa\x21\x92\x65\x3e\x59\x6d\xcc\x93\x86\x8b\x9b\x35\x70\x81\xe2\xd7\xaa\x87\x34\xcc\x93\x5e\x68\x19\xbb\x50\x47\xae\x7e\x52\xa7\x13\x5d\x5b\x06\x68\xe5\xce\x80\x88\x0a\x52\xb5\xfc\x5a\x35\x1e\x47\x41\x2f\x0d\x5e\xe5\x55\x85\xa1\xc5\x10\xf1\x6b\x55\xa3\x1f\x99\x8c\xe9\x78\xa8\xff\x4f\xaf\x79\xb6\xe3\x79\x25\xbb\x7f\xcb\x8b\x20\xe6\x89\xeb\x04\x3a\xae\xb1\x2b\x8b\x68\xae\x31\x75\x32\xbb\x59\x10\x47\xbb\xcb\x3f\x40\xe8\x21\xb0\x40\x94\x5b\x3e\xa5\xf4\x4c\xd8\xd5\xbe\x50\xfd\x08\xce\x73\x89\x75\x15\xb4\xe3\x65\x7a\x70\x7c\x1c\xb7\x14\xc0\x8c\x37\x29\x1c\x85\x6f\x4f\x40\xc0\x66\x0f\x34\xd3\x3c\x49\x2c\xbb\xf8\x72\x63\x8e\xc6\x5a\x9a\x74\x3a\xd1\xed\xc6\x51\x0f\x66\xe4\x02\x8f\x21\x90\xb5\xa8\x96\x37\x9c\xb6\xea\x74\xdb\x13\x6a\xd7\x99\x2b\x26\x42\xe7\x0d\x47\x61\x9f\x5e\x53\x2a\x8c\xd6\xa4\x36\xb4\x69\xca\x3d\x1e\x27\xa6\xeb\x81\xb1\x0a\x0e\x92\x0d\xed\xe8\x73\x1e\xcc\xb7\x6d\xcd\x83\x45\xdf\x25\x9a\x9a\xeb\x87\x94\xf1\x70\xe5\xf0\x66\x02\x9b\xb2\xcc\x3e\xae\xc9\x0c\x10\xf1\xc1\x44\x7b\x17\x0b\x85\xad\x58\xa8\xd4\xc3\xf6\xcd\x2d\x25\xae\x7d\x86\xa2\x64\x0e\x8c\x11\xe5\x09\xa4\x80\x8a\x84\x7c\x59\x5a\x2e\xfd\x02\x95\x38\x91\x26\xdd\x07\x10\xd8\xe1\xc2\xcb\x75\x2a\xe6\x2f\xf4\x84\x71\xf7\x47\x8b\xc6\x57\x67\x9d\xf3\x88\xf2\xb7\x5c\xb1\x10\x19\x9b\x9b\x73\x20\x64\xb5\x9b\x9f\x57\xc2\xd1\x63\x9b\xb8\x82\x68\x79\xf7\x28\x36\xa0\x34\xc2\xaf\x27\x26\xc8\xb3\xcd\x91\x89\xcc\x80\x6a\xee\x62\x33\x7b\xfb\x49\xda\x32\x51\xe0\xe5\x3a\x3b\x52\xda\xa3\x18\x49\x64\xaa\x0f\xaf\xd5\xc4\x09\xa3\x38\xb2\x65\xf8\xce\xb6\x24\x6c\x6b\xa4\x5c\x25\x7e\x32\x71\x22\x3e\xdb\x1c\x98\x70\x99\xe8\x1d\xb8\x4d\xe1\xb1\x69\x52\xdb\xc4\x09\xbe\x38\xb3\xd8\xb4\x87\xc6\x36\x82\x08\x98\x8b\x7a\xee\xd0\x7a\x92\x0c\xa9\x1c\x06\x81\x4a\x6e\xdd\xfa\x7f\xbb\xd9\x0f\x92\x34\x43\x4f\x50\xd8\xab\xde\x77\xf7\x6c\xe1\x91\x65\x47\x55\x59\xea\x62\x51\x91\x16\xed\x87\x41\x37\x73\x02\x01\xbc\xb5\x52\xf8\x2f\xdb\xac\x02\x39\xd9\x34\x7b\xd4\xb7\xda\x20\x17\xec\x20\x1d\x3e\x7f\xfb\x3d\x9c\x08\xd2\x0c\x2b\xaf\x09\xe5\xc8\xb3\xaa\xe5\xc2\xed\x75\x5c\xf8\xe5\x96\x8a\x3b\x37\x68\xa1\x62\x2a\xbd\x43\x93\x57\x5c\x67\xe9\x56\xf1\x5c\x6f\xe2\x51\xa2\x47\x7b\xa5\x78\x46\x67\x54\x29\x8c\x9a\xc3\x55\xea\xc3\x38\x38\x6e\x79\x81\xce\x2b\xab\x9c\xd3\xc2\x35\xf1\x16\x52\xff\x43\x1d\x5c\x6c\x3f\xc5\x4c\xa9\x6c\x9f\x2a\x61\x75\xbe\x9f\x15\xda\x73\x38\x36\x0d\xe5\x36\x73\x5b\x59\x7c\xdf\x56\x9d\x09\x52\x72\xcb\x13\x86\x3d\xe2\xe7\x21\x01\x8f\x72\xd5\xfb\xf8\x05\x29\xa4\xfa\xd3\x6e\x10\x87\x3d\x8b\xdd\x59\x59\x7f\xbd\x24\xd6\x00\xb4\x39\xf3\xee\xda\xaa\x78\x06\x94\x43\x89\xbd\xe6\xb3\x42\xd1\x27\xaf\x6a\xad\xda\xc3\xf4\xec\x71\xe8\x1f\xf6\x35\x95\x7f\xa3\xd7\x74\x77\x68\xa2\x81\x4d\x9f\x50\x0c\x81\x53\x85\xdf\x14\x37\xe8\x87\x44\xb5\x81\x2e\x0d\x77\x74\x17\x1d\x4e\x59\x12\x8d\xdf\x79\x91\xab\x9c\x37\x80\x53\x70\x0b\xa7\x9c\x3d\x58\xa4\x77\xb5\x0c\xf1\x47\x34\x3a\x62\x97\x46\x5b\xa7\x60\xe0\x7c\x2a\xc2\x30\x7e\x99\xa2\x4a\x58\x60\x03\x53\x00\x38\x52\x78\x62\x09\x07\xfa\xa9\xad\x7e\x40\x50\x9f\x11\xc9\xce\x5b\x5a\x77\xec\x96\x4a\x14\x3a\xa1\x89\x96\x6c\xf6\xc0\x0a\xb0\x6e\x4b\xe4\xdd\x25\x1d\x12\x56\x7b\xae\x35\x90\x16\x93\x0e\xe3\x04\x3b\xa1\xf0\xc5\xca\x71\x15\xba\x98\x0f\x1c\x4c\x27\x27\xc6\x6b\xc3\x37\x44\x4e\xd2\x23\xe0\xd7\x13\x12\x2b\x2f\x2e\x34\x43\x6b\x7a\x5b\x90\x4a\x0a\x78\x88\x93\x4c\x54\x61\x47\x84\xf0\xc1\x18\xbe\x59\x28\xc1\x1f\x86\x8a\xa3\xbe\x7e\x07\x27\x39\xf2\x4d\xb4\x8d\x50\x66\x80\xbb\xb8\x68\x08\x2b\xb0\x2d\xd8\x28\x4e\x09\xc8\x29\x7e\x5d\x53\x5a\x0e\xa3\x20\x1a\xc4\x0d\xdf\xb4\x85\x96\x03\xbf\x2e\x74\x12\x16\xf5\x83\xc8\x3a\xcf\x4c\x57\x47\xfe\x7f\x51\x8b\xd9\x3b\xdb\xcc\x82\x7e\xdf\x44\xc8\x35\x1c\x4f\xc2\x1b\x23\x9e\x9b\xc8\x94\xe7\xe6\x38\xcc\xe0\xea\x0e\x0e\x05\xa0\x36\xf8\xb5\x0a\x14\x33\x1b\x86\x41\x34\xd8\xe1\x59\x06\x67\x71\x9a\x8a\xdf\x9e\xa7\x1c\xf0\x61\x8a\x98\xff\x35\x0e\xb7\xb0\x83\x9e\x54\xb6\x91\x5d\xed\xc9\x82\x8f\x48\xdc\xe2\xd0\xbf\xf1\x8a\x49\x00\x40\xc6\xee\x78\xbd\xa5\xe0\x2c\xd7\xeb\x0a\x1b\x29\xb3\x56\xe8\xcb\x2b\x8d\x10\x7e\x53\x07\xaa\xf8\x62\xb3\x17\x8c\x79\x18\x24\xf1\x6f\x28\xbb\xd2\x3a\x99\x92\x34\x0a\xfa\xfd\xf2\x98\xfc\xda\x57\x5c\xbd\xb8\x52\x49\xae\x03\xf4\x13\x77\x79\xaa\xdc\xd5\xd8\xf1\x97\x9e\x2a\x6a\xc0\x47\x68\xdf\x41\x35\xe8\x87\x0f\xec\x34\x76\x92\x9c\x21\xae\x98\xab\x6f\x60\xe4\xf8\x8d\x2a\x91\x9a\xa4\x83\xc9\xe0\xf8\xa5\x2e\x11\x9c\xc4\x76\xed\x9b\x6f\x26\x36\xca\xca\xd8\xd4\xe1\x42\xa0\xc3\xc3\xaf\x8b\x47\xdd\x46\x61\xc3\x11\x57\x13\xc4\x40\x94\xae\x40\xac\x45\xb7\xa6\x84\xcf\xd2\x26\x3f\xe5\x2b\x43\x4c\xb5\x16\xbe\x51\xf9\x83\x08\x21\xaf\x56\x2a\x6f\xa9\xc9\x88\xd7\x8c\xdd\x0f\x9e\xe3\x52\x84\x6b\x38\x65\x66\x2c\x3c\x3c\x27\xd8\x27\xb3\xa6\x0b\x7d\x2f\xf6\xc7\x0d\x45\xee\x13\x03\xcb\x11\xb8\xb7\x18\x6d\xe6\x57\x63\x8d\x1f\xc6\xb4\xe6\x7f\xe1\xd9\xcb\xff\x34\xd1\x06\x23\xbd\xa4\xcc\x26\x81\x09\x3d\x25\xb6\xce\x66\x78\x8f\xaa\x38\xf5\x0c\xcd\x68\x61\x44\x94\x37\x23\x54\x89\x87\xfd\xc4\x27\xd2\xbf\xc8\x11\xf9\xda\xe0\xfb\x34\x4b\x50\xe9\xbf\x87\xa0\x59\x92\x41\x3d\x7a\xc3\x20\xda\x55\x86\x34\xa8\x6f\xde\x2f\x94\x2c\xf0\x86\x62\x07\xfd\xbc\x50\xce\x27\xeb\xba\x29\x73\x8f\x53\x09\xfe\x4c\x05\x00\x09\x6d\x5d\x26\xd8\xab\x7e\x75\x18\x9b\x28\xdd\x5d\x06\xcf\xce\x72\xc6\xb5\x71\xae\x20\x4e\x11\xa9\x17\x45\xaf\xbb\x8f\x19\x2c\x6e\x75\xe5\x73\x16\xb1\x1b\xb5\x6e\xbf\x8f\x43\xd2\xc9\xc6\xb8\x7a\xd9\x13\xed\xa7\x14\xaa\x34\x32\xdd\xa5\x78\xd9\x68\x31\xa7\x8f\x55\x39\xe4\xe3\x89\x03\xe4\xe0\xcc\xf3\xcd\xb8\xd7\x6b\x78\x27\x30\xb4\xcc\xf9\x75\x6b\xab\x58\xd2\xc1\x99\x72\x8f\x31\x49\x37\xcd\xb6\xba\x76\x5d\xd1\xf8\xfd\x2b\xae\x53\x35\xb0\xd1\x38\x89\x3b\xb6\xa1\x42\xbe\xc6\x9a\xc7\x98\x35\xda\x4f\x29\xf1\xda\x74\x48\x62\xa4\x4a\x85\x82\x1b\x60\x42\x00\xf7\x49\x62\x68\x56\xb2\x38\x9a\x2a\x73\x30\x2d\x29\x88\x45\x72\xab\x62\x97\x53\xc3\x59\xc8\x56\xc7\x96\xb7\x3c\xb4\x9d\xee\x29\x2c\xe7\xbd\x3a\x33\xcc\x38\xef\x64\x3c\xc5\xd1\x43\x39\xae\x85\xbd\x8f\x2b\x80\x1e\xda\x84\x1e\x94\x7c\x5b\x09\xa5\xdc\xae\x31\x2a\x9d\x6f\x76\xcd\xd8\x74\xbc\xba\x42\x1d\x10\xe6\x73\xba\x73\x4e\xdd\x3f\x91\xfd\x06\xf6\x0d\x4a\x6f\xfc\xda\xc9\x83\xd8\x71\x10\xda\x71\xba\x3a\xad\x8a\xe3\x85\xaf\x6d\xfe\x31\x6e\x41\xf4\x51\xfc\xa6\x7f\x47\x55\x7e\xad\x59\x7a\x58\x01\xee\xb0\x17\x41\x0a\x01\x25\x2d\xac\x32\x18\xc9\xa0\xd7\x75\x05\xa1\x1b\xc2\x96\x69\x28\xfe\x60\x8f\xde\xb1\x46\xa9\x2a\xf0\x29\x17\x30\xab\x85\x91\xe1\xe9\xd0\xa7\x11\x6c\x22\xe7\xb9\xa4\xf2\x9c\xc4\x7e\x23\x0f\x12\x16\x7f\xf7\x66\x33\xc8\xde\xc5\xe9\x60\xe2\x88\x23\x20\x6e\x47\x70\x09\xe0\x2c\xe1\x88\xe3\xd7\x93\x5e\xa6\x33\x8b\xcd\x30\x58\xc2\x00\x0b\xbd\xa8\xfc\x0d\xe9\xf2\x57\x02\x96\x8a\xab\x83\xf0\x8a\x3c\xb9\xe0\xa6\x53\x33\x1e\x27\x71\xdf\x92\x47\xa5\x09\x95\x5c\xec\x4d\x6c\x3d\xd8\x87\xd8\x00\x4e\x88\x03\xaa\xc1\x00\x52\x0c\x4e\xff\xf7\x2b\xfb\xdd\x72\x20\x0d\xe6\x0a\x49\x9b\xdf\xd4\x9c\xc5\xcd\xe1\x6a\x27\x09\x7a\x4a\x87\x05\x32\x2e\xfc\x7a\xcd\xa7\x8a\xaf\xc4\xc3\x68\x5a\x35\x40\xee\x30\x97\x43\x54\x17\x7c\x5d\xeb\xaf\xf1\xd0\xa5\x0a\xbb\x75\x9e\x3b\xa5\x4c\x2f\xef\xcb\xe5\x12\x84\xf6\x52\x3b\xf9\xbc\x4a\x6a\x47\x63\x03\x7d\xfb\x70\xb5\x41\x19\x87\x2e\x00\x49\xb8\x54\xa3\x03\x38\x4e\x82\xa8\x1b\x8c\x4d\x38\xe5\xed\xe3\x01\xc4\x44\x2e\x7c\x57\x89\x99\x7b\x33\xb3\x34\x0c\x46\x53\x0a\x9f\x8e\x0d\x05\x85\x14\x6c\x28\x62\x7f\xe6\x21\x01\x69\x16\x74\x97\xa6\xcb\xed\x13\x29\x13\x3a\x3a\x48\x99\x90\x24\x4b\x74\x54\xce\x1e\x84\xc8\x97\x27\xc2\x1b\x2a\xfe\x96\x07\xa9\x13\xd9\xc5\xe6\x08\x58\x08\xbf\x56\xf9\x7b\x9a\x99\x84\x4b\xb0\x82\x3d\xa2\xb1\x47\x72\xce\xed\x07\x7e\xa3\x0d\x6a\x6f\x6a\x88\xc0\x9f\x15\x4a\x01\x6d\x47\xfb\x49\x25\x77\x10\x2d\xad\xb2\x78\xf6\xf3\xa2\xa4\x44\x63\x81\x1c\xff\x9a\xca\x6d\xaf\x78\x65\x7b\x33\xb2\x28\x47\x23\x9e\xc1\x78\xa3\x51\x05\x90\x25\x8e\xcc\xff\x44\x67\x1c\x77\xae\x6b\x6d\xa6\xe3\x34\x0d\xc6\x58\xab\x28\x76\x41\x95\x8e\x5f\xb7\x94\xba\xe8\xc0\x46\x19\xd7\xc0\xf1\x90\xdf\x2b\x7c\x1f\x1b\x3b\x3a\x3e\x75\x41\x3b\xa7\x1e\xae\x2b\xbe\xbb\xd5\x8e\x43\xe3\xa3\xc2\xa3\xc8\x3e\xaa\x73\xe7\x48\xcd\x28\x5e\x36\x4c\x9d\x06\xfa\x84\x9d\xf9\xf8\xcd\xc4\x59\x5b\x86\xcd\x26\x0c\xa7\xcb\xed\x57\x31\x00\x17\x1c\x30\x8c\x76\x46\x4c\xa3\xcd\xc2\x67\x54\x8d\xb6\x4a\x3e\x6d\x9c\x87\x54\x82\x16\x02\x43\x79\x99\xc2\x6c\x98\x34\xa7\x69\x9a\x28\xed\xc6\x0d\x1f\x25\x32\x46\x54\xc2\x7c\x55\xde\x1b\x9b\x28\x48\x87\x0f\x6b\xcf\xb9\x42\xd3\x5d\x15\x4a\xfd\x08\x55\x3e\x31\xf3\xae\x81\x29\x80\xf4\x1d\xc5\x03\xad\x40\xc2\xff\x9f\x4a\x9a\xfc\x81\xa2\xe2\x09\x5e\x28\xae\xe8\x91\xba\x9d\x2a\xb5\x87\x72\x8e\xcc\x11\x95\x9c\x52\xc5\x83\xda\x3e\x4a\x4c\xf0\x7d\x85\xbd\x2c\x2f\x4a\x30\x99\xfe\x8e\xed\xaa\x05\x73\xdc\x1b\x2d\xd3\x37\x4b\xe9\xb3\x46\xf0\xc9\x74\x72\xd9\xbb\x70\x10\xbc\x81\xbd\x8b\xdf\xe0\xa0\xaa\x54\xf6\x48\xe0\x89\x42\x49\x91\xee\xa1\x58\x54\x42\xf9\x1a\x67\xba\xd0\xa6\xe9\x34\x45\x8b\x08\x46\x4e\x14\x9a\xc5\x47\x07\x26\xee\x65\x57\x5b\xcf\xef\xc7\xaa\x16\x29\x54\x30\x43\x02\x70\x56\xb9\x46\xbc\xa9\x88\x39\xe7\x68\x5c\xd0\xa7\x7a\xdb\x51\x28\x5e\xc9\x47\xe3\x74\xa7\x92\xf1\x78\xa8\xad\x84\xa2\xf8\x60\xd1\x66\x8f\xca\xcb\x45\xb2\xbf\x37\xb5\x19\xd5\x2f\x54\x81\x63\xd9\x42\xfc\x94\x24\x3f\x50\xa6\xfa\xd7\x85\xb2\xb4\x03\x42\x4b\x68\xe4\x4a\x5e\xe0\xa4\xee\x87\xdf\x51\x36\xe4\xeb\x35\x64\xf3\xfd\xcd\xc4\x2e\x53\xa7\xc1\x09\x8b\xb0\xa7\x3e\xbf\x51\x88\xd4\xbe\x85\x8d\x0a\x1c\x0e\x59\xb1\x05\x7f\x2c\xf2\x2d\x8f\x38\x72\x49\xb2\x0a\x56\x3e\x1e\xc6\xe3\x74\x62\x8a\x57\x90\x77\xcc\x9a\xbc\xa4\xbd\xb3\x4d\x62\x4f\xa6\x96\xfb\x6d\x18\x26\x6e\x9b\x56\xfa\xe9\x28\x1b\x6c\x6b\xfb\x06\x64\x19\x9e\x2b\x10\xec\x1f\xaa\x6e\xcf\x1f\x96\xe9\xa6\x13\xf2\x0f\xbb\x79\xc8\x5e\x94\x0d\x27\xb3\xfb\x2f\x31\xbc\xfc\x46\x47\x75\xb6\x3f\xed\xa1\xfa\xbb\x94\xea\xdc\x27\xa7\x15\xa1\xee\x76\x45\x75\xee\x29\x15\x84\xf6\x72\xea\x2d\xed\x54\xe2\xc0\xa7\xf1\xc8\xf8\x0d\x5d\x28\x46\xfc\x93\x42\x45\x10\x9f\xb4\xbc\xa0\x00\x38\x57\xa2\x97\x5e\xf7\x28\xd3\xa1\x19\x57\xfd\x7b\xb8\xed\x24\x90\x90\xa7\x14\xb9\x38\x32\x61\x16\x58\x4c\x7e\xa9\x80\x35\x9c\x90\x18\x52\x1b\x64\x57\xb7\xb1\x70\xf9\xcd\x44\x2b\x80\xc4\x69\x7a\xa3\x20\x73\x5d\x62\xf4\x19\xdf\xd0\x9a\x29\x6f\x4c\x48\xb1\x2e\xce\x34\x6d\x0a\xaf\x57\xcc\x6e\xe4\xab\x15\x78\x2a\x0b\xa3\xb8\x05\x17\xc6\xf1\x28\x85\x78\x3d\x8e\xd7\x3d\x6d\x85\xa1\xdf\x44\xe2\x88\xfc\x0d\x16\x26\x68\xa7\x7a\xfd\xa4\xa1\x0d\x83\x6e\x3c\xce\x6c\xb2\x83\xfe\x56\xcc\x6b\xbd\x04\x3e\x8e\x62\xd4\xde\x77\x92\x37\x89\x68\x49\xf8\x47\xf4\xce\x84\xfa\xff\xc1\x99\xd9\x66\x10\x99\xf1\x38\x89\xc7\x49\x60\x32\x7d\x3c\x5e\x53\xf9\xd5\x35\x4d\x8a\xb6\xa4\x83\xec\x72\x77\x28\x2a\xf1\x6b\xc5\x23\xb5\xab\xf6\x21\x45\x53\xbb\xde\x52\x94\xe0\xdb\x2d\xb5\x2c\x8e\xd3\x6d\x08\xbf\xc1\x6f\xcf\x67\xb4\x1e\xf8\x27\x18\x24\xd4\x44\xee\x16\x8f\x2a\xa9\xd7\xe4\x11\xfa\x66\x7c\xd9\x4d\xbd\xe0\x6e\x52\xd9\x1a\xf1\x20\xb7\x30\x44\x69\x9e\xbe\xcd\x59\x40\x2c\x7a\xbe\x9b\x62\xbb\xde\x2d\xfc\x79\x78\x55\x69\x35\x70\x7d\x87\xbf\xaa\xa5\x12\x1c\x3a\x6d\xdd\x39\x4e\x59\xc0\x4e\x5a\x9c\xe2\xca\x51\x7e\x09\xd6\xce\xae\xb6\x92\xa6\x60\x93\x41\x81\x11\xfb\xc0\x99\x71\x8b\x28\x3d\x7d\xd7\x4b\xfd\x25\x79\xb4\x04\x60\xa8\x58\x55\x7b\x90\x35\x1e\x9c\x08\x3c\xa8\x4e\x00\x24\xe7\xc8\x5d\x10\x11\xdf\x75\x0e\xf4\x45\xac\x53\xb9\xab\xbe\x83\x63\xc8\xf9\x5b\x95\x97\xe7\x40\x8e\x6e\x4f\x3c\x46\x89\xa6\xb8\xf4\xfa\xbe\xe9\x46\xcb\xbb\xc1\x73\x88\x81\xbd\xfc\x87\x4a\xa7\xac\x9f\x27\x71\xd2\xa0\x88\xc8\x99\x0a\x3a\x03\xdf\x2a\x01\xb2\x3f\x34\x38\x2f\x9d\x3e\x93\x3f\x23\x8f\x51\xe0\x21\x6a\x83\xe5\xef\xf2\xeb\x89\x90\xae\xcc\xf8\xc6\x89\xed\x06\x3c\x7f\x59\x23\x5c\xe9\x61\x68\x04\x77\x3a\x4e\xcc\x2a\xf6\x59\x07\x0e\xf5\x14\x7f\xc5\xf4\xed\x99\x90\xf8\x15\xe5\xd3\x60\xdd\x0b\x9a\xd1\x38\x8e\x39\xf1\xc3\x71\x7a\x44\xe1\xc4\x92\x38\xdd\xe1\xf9\x14\xa0\xbc\x8b\xec\x92\x02\xe2\xef\x64\xe8\x29\x06\x9f\xa5\x0a\xe8\x5f\xcc\xe7\xda\x35\x50\xa5\xc4\x92\x0a\x31\x65\x45\xb8\xa9\x3f\xc5\xd3\x73\x44\x2a\xe5\x03\xa8\x44\xe3\x4c\x90\xda\x47\x95\x3f\x1b\x2e\x48\xd2\xf3\xc6\x97\xbf\x2e\xe2\xa9\xc8\xdb\xc5\x33\x96\x7a\x41\x4e\x73\xd1\x73\x04\xd1\x0e\xc5\xa1\xb2\xd9\xf2\xf0\xaa\x6f\x63\x42\x63\xfa\xdc\xa2\x63\x82\x6d\xef\x50\x0b\x63\x2b\xea\xc2\xcf\xa5\x9b\x4a\x5b\xa2\x93\x67\x5f\x28\x97\x34\x1e\xc2\x29\x0e\x33\x9d\x31\x4e\x39\x29\xd0\x40\x78\x0f\x57\xe9\x1a\x75\x8e\x04\x04\xa5\x77\x8c\xf3\x35\x7a\x4c\xd8\x27\x37\x14\x5f\x10\x64\x58\x8c\xd7\x7f\x05\x0b\x15\x1b\xc2\x34\xb0\xc2\x48\x78\x6e\x68\xa1\xd2\x6d\xed\x32\x77\xdd\xe4\xad\xdc\x71\x80\xcb\xc1\xc1\xc9\xb7\xa7\x4d\xb7\x87\x91\xda\x2c\x54\xed\xe4\x21\x6c\x04\x4e\x14\xb9\x1c\x1e\xd9\x00\x1b\x7b\x67\x1d\xb4\xd7\x97\x26\x7e\xa4\x4d\x78\xaf\x20\xda\x74\xfa\xc1\x8b\x02\xc5\xbc\x31\x31\xff\x49\x02\x36\xce\x13\x87\xbd\x42\x51\xf6\x86\xa2\xeb\xdf\xa8\x2b\xa4\x75\x92\x3c\x62\xd9\x54\xb7\x12\xfc\xaa\xd0\x93\xc8\x9a\xee\x90\x60\xc6\xd8\xc9\xce\x14\xca\x84\x71\x7b\x5b\x15\x5f\xf1\xe4\x35\x30\x14\xa0\x81\xfb\x18\x19\x11\x75\xa7\x91\x11\x55\x77\xff\x3b\x69\xe8\x18\x28\x75\x8e\x64\x8e\x87\x35\x8c\xbb\x4b\xe3\x24\x8e\xfb\x2a\x9c\x47\xf3\x8a\x5f\x6b\xec\x43\x4e\x78\x86\x06\x3d\x40\x89\xa4\x69\x46\xf1\x9b\x1a\x45\xdd\x97\x9a\xdd\x38\xcb\x64\xed\x8b\x6d\x58\xf9\xfd\xd8\x07\x20\x53\x25\x84\xd4\x1a\xb1\xc9\x9e\x4d\x02\xd1\xa4\xa7\xdb\x11\x9a\x3a\x7d\xa1\xd0\xdc\x9f\x54\xfd\x72\x93\x05\xd1\x20\x55\x4d\xb6\xd3\xaa\xc9\x76\x7a\xe2\x1a\x0f\xbc\x40\x46\xe3\xdf\xc8\xb5\x77\xd9\x67\x8a\x5c\x74\x95\xe6\xbd\x04\xdd\x75\x31\x12\xd7\xe3\x7a\x68\x7d\x03\xf1\x72\x85\xb8\x8b\x97\x0a\xa5\x7c\xfc\xda\xc4\x6f\xef\x9b\x6f\x9a\x65\x9b\x98\x01\x7e\xdb\x21\x0c\x1c\x03\x1f\x1b\x2a\xf6\xbf\x7f\xa3\xa6\x51\x27\xee\x74\x56\x41\x1f\xc3\x7d\xfd\xb4\xe5\xa1\x08\x3f\x55\x8d\x9a\x28\x5e\x79\xa2\x5c\x16\x5c\xcb\x69\x29\xfa\x22\x2b\x78\xb0\x63\x3a\x96\x18\xe7\x44\x58\x3d\xa8\xb8\x5c\x29\x94\xd4\xc5\x63\xed\xc6\xd7\xbe\xe2\x5c\x20\x94\x71\xd3\x63\x6d\x9f\x8e\xa3\x62\xc4\xed\x6b\x05\x07\xe6\x99\x4b\xa3\xfa\x0f\x3f\x8f\x65\xec\x50\x22\x07\x67\x78\x57\xbd\x44\xba\xea\xb8\x65\x04\xc6\xd2\x93\xf1\x11\x4d\x3f\x5c\xdd\xe9\x65\x00\x2f\x29\x4f\xbb\x53\xf8\x0d\x99\x90\x2a\x51\xd9\x4e\x89\x8a\xe2\x71\xed\x77\x0a\x6c\x92\xdb\x44\x71\xd2\x55\xda\x5c\x17\xf4\x21\x73\x61\xa2\xae\x30\x3f\xdf\xcc\x86\x36\xb1\x3b\xca\x2b\x11\xa9\x6c\xe7\x2f\xb6\xfb\xe9\x76\x79\x1f\xda\xb2\x10\xb9\xc4\x4e\x62\x86\x48\x41\x5b\xc1\x20\x02\xf2\x6d\x2e\xbf\x80\x63\x5b\x3c\x2c\x09\x74\x9d\x2b\x7e\x27\xc9\xc7\x9a\xdf\xf8\x4e\x51\x09\x93\x3c\x31\x6a\x43\xf5\x09\x46\xdd\xae\x09\x43\x95\x12\x71\xcc\x21\x32\x7e\x35\x7a\x6e\x89\x8d\xe2\x00\xe0\x70\xf1\x7c\xa2\x8f\x88\x19\x94\x8b\xbc\xe3\xb1\x43\x92\x39\xd6\x17\xb2\x27\x7e\x5d\xd7\x76\x1e\xda\xde\xc0\xed\xb2\x0e\x2e\xee\xa1\xe3\x2d\xe5\x7a\x18\x67\x41\x17\x7f\xa8\x57\x85\xc4\x54\x4f\x39\x82\x4e\x94\x0d\xe2\xb0\x1f\x88\x8a\x96\x43\x26\xf8\x0e\xf8\xba\xea\x54\x45\x36\x18\x50\x94\xb3\x79\xbb\x68\xfc\xce\x8b\x9b\xb7\xeb\x60\xbe\x66\x3c\xb6\x06\x5e\x82\x08\xac\xd1\x39\xe3\xd7\x6a\xa1\x85\xf9\xa1\x29\x3f\x0d\x6f\xd0\x15\x62\xa4\xfe\x8a\x14\xde\x45\xc5\x59\x39\x80\x5a\xc3\xe5\x7b\x7d\x7e\xf1\xeb\x89\x9e\xd3\xdc\x5c\x93\x55\x77\x39\xbb\xd5\x25\xaa\x8a\xef\xd0\x83\xfc\x9f\xbf\x91\xc7\x59\x12\x47\x68\x41\x89\x37\x45\xc3\x71\x93\x4f\xaa\xc0\xeb\x6b\xfb\x0f\x4c\x7b\x39\x5e\x46\x9f\xe2\xca\x24\x20\xd6\xee\x47\x12\xcf\xd4\x24\x82\x66\x10\x93\x32\x38\xea\xf5\xff\x99\x86\x45\x63\x3a\x24\x4b\xae\x61\xa5\x66\x79\x3f\x43\x03\x49\xa4\x10\x54\x6b\xed\xa2\x06\x4a\x2e\x05\x61\x98\x4e\xfb\x88\xe4\x6d\xd0\x85\xa5\xba\xea\x41\x6c\x27\xd4\x2e\xf9\xb6\xab\xd9\x0e\x6d\x88\x90\x1f\x9b\xc3\x0e\xea\xcb\x21\x5a\x78\x7c\x4d\x6d\x8b\xbf\x04\x39\x1f\xfc\xd5\xf6\x35\x0a\x2a\xd0\x84\xe5\x53\x5c\x20\x17\x5e\x2a\x94\xc3\x18\x10\x2a\x7e\xb5\xed\x27\xc5\x1b\x85\x42\x8e\x5f\x54\x43\x1f\xd9\xa8\xa1\x0b\xa8\x34\xc0\x52\x4c\xad\xb1\x5d\x34\xc9\x20\x1f\xd9\x88\x4b\x37\xe2\xe9\xa4\x20\x47\x17\xeb\x74\x7a\xd2\xd5\xa8\x17\x74\xa5\x59\x83\x58\x17\x9c\x2d\x7e\x5d\xa7\x2f\x1c\xf0\x67\xb8\x16\x20\xb4\x5e\x0f\x10\x3a\x3b\x59\xf3\xd9\xeb\x3c\xf6\xcb\x3f\x53\x9c\x97\x59\xe7\x4b\x44\x5f\xc6\xe7\x40\x0d\x33\xe0\xa5\x66\xdc\xef\x03\x57\x58\x21\xc8\x17\x9a\x29\x34\xb9\x37\x2f\x34\x97\x6d\x16\x2b\x1d\xb0\x2d\x3a\x0c\xfe\x2c\x1d\x05\xa1\x89\xd0\xf1\x90\x16\xbf\x3e\x80\x95\xe9\xe7\x4d\xd5\xde\x7c\x35\xb6\x99\xb8\xec\xcb\x96\x47\x7f\x2a\x7b\x9e\xec\xd7\xbd\x38\xca\x25\x14\x13\xdb\x3f\xa5\x7b\x72\xc6\xb3\x19\x4d\x68\x92\x80\x47\x0a\x88\x35\xca\xc8\xe7\x37\x91\x91\x60\xcf\x39\x5e\xa7\xc9\xd3\xb3\x1d\xa9\x4c\x88\xd9\x66\xc3\x89\xb0\x5d\x9c\x18\x1d\x22\x90\x90\x7c\x8a\x2b\x21\xa3\x4e\x2d\xcd\x6f\x77\xd6\xa4\x69\x3e\xb2\xb0\xb2\x73\xde\x61\xe5\xd2\xaa\xa0\xac\xf0\x54\xd1\x3a\x73\x7f\xe5\x41\x09\x3c\x84\xa2\x57\xea\x21\xef\xbb\xa9\x74\x2b\x5d\xbd\x3d\xca\x8d\x73\x64\x77\xfa\xde\xd6\x95\x96\x0a\xf8\x59\xb2\x07\xd1\x08\xa3\xe9\x9c\x9c\x89\xf3\x70\x61\x2e\xa0\x58\x90\xd5\x8c\xd8\x38\xe8\x46\x41\xb7\x1c\xea\xcd\x0d\xda\x9f\x9d\xc5\xb1\x2b\xae\x6c\x6f\x3f\xa8\x79\xa7\xbc\xfe\x9d\x0d\xef\xec\x01\x2e\x0e\x5f\x02\x76\x04\x90\x6b\x38\x4b\x0a\x2c\x46\xf9\x63\x0c\x57\x1f\x52\x52\xf6\x7f\xa3\xb5\xae\x2f\x6a\xe0\xf4\x59\x15\x4b\xb1\x2f\xbb\xd0\x35\x3d\x18\xf4\x42\x25\x60\xf7\x25\xb5\x9c\xc5\xd0\xdd\x23\xf6\x8f\x5b\x29\x36\x7b\xad\xaf\x29\x5f\xc0\x01\xca\xd3\x55\x9c\x16\x67\x18\xc3\x4b\xa6\x73\xae\x0d\x3d\xc8\x43\x93\xc5\xc9\x74\x39\x77\x70\xf7\xa7\x11\x3a\xf2\x1b\x64\x27\x88\xd2\xd6\xf0\x4c\xf8\xcd\x44\xf3\x6f\xdf\x3c\x54\x1a\x47\x41\x24\x74\x5c\x39\xdc\xe8\xae\xe5\x74\xab\x91\x3f\x1c\x27\x76\xd9\x04\x21\x8b\x55\xa3\x6e\x33\x85\xf2\x21\x56\xfb\x2d\x7a\xaa\xa2\x69\xe5\x31\x04\x44\xd1\x0a\xfa\xab\x42\xfe\xc2\x86\x79\x45\xab\xa3\x5d\x51\xa9\x45\x6a\xa9\x11\x0b\x78\x33\x56\xe3\xf5\x42\x9d\x0f\xeb\x8a\x53\xfe\x41\x45\x66\x2f\x1f\xa5\xbb\x1b\x2e\x05\x3d\xaa\xa5\xc9\x99\x36\x8a\xf3\xf1\x74\xcb\xcb\xfd\xb1\x26\xa0\x90\x57\x3c\xe8\x16\x0c\x3b\x18\x72\x6c\x60\xb8\xd9\x7b\x8b\x9e\x13\x12\xfa\x1d\xed\xc7\xfd\x1a\x76\x3e\x3c\x55\x4e\x14\xca\xbe\x1b\x5a\xc2\x79\x52\x8c\x8c\x28\x0b\xe3\x71\xb8\xda\x50\xf1\x3a\x7a\x1e\xfc\xba\xf5\x8c\x12\xff\x1e\x8d\x6d\x94\x7a\x50\x8c\x4b\xd6\xca\x47\x28\xc9\x9a\x43\xf6\x0d\x4d\xb4\xc4\x4f\x0d\x75\x98\xed\x6b\x4a\x40\x1f\xb0\x0a\x79\xee\x4f\x6a\x85\xf1\x6e\x62\x79\xbb\x63\xd4\x97\x66\xd5\x9c\x52\x30\x55\x93\xc4\x29\x62\x6a\xb7\x52\x5c\x3e\x75\x61\xa2\x51\xf5\x6c\x33\x0d\xa2\x29\xe5\xac\x74\x46\x79\xbb\xfd\x8c\xb6\x09\x94\x48\x8e\x16\x8f\xeb\x1d\xd2\xb1\xcf\xf0\x97\xd7\x2a\xa6\xdc\x0a\xaf\xff\xe9\x44\x84\x74\x70\xa6\x19\xe7\xd9\x43\xe5\x05\xa2\x00\xfd\x10\xed\x89\x28\x85\xdd\x41\xb9\x06\x35\xf4\x05\xd5\x7a\xbe\x4a\xa1\x53\x85\x03\xe0\x94\x3e\x16\x17\x9c\x79\xa1\x30\xbd\x46\x41\xaf\x17\xda\x91\x04\x16\xcc\xc2\x50\x5a\x0b\x93\x67\xca\xdc\x5c\x93\x84\x5f\xd9\x46\x11\x83\x71\xa5\x12\x66\x2a\x84\xdc\x24\x52\xf1\x59\x98\x73\x9a\xae\x17\x04\x43\x8b\xee\xaa\x62\xe3\x5d\x75\x67\x64\x62\x47\x26\x59\x9a\xaa\x68\xba\xfa\x49\xbe\xd9\xf2\xdd\x97\xeb\x35\x4d\x8a\x05\x42\x3a\x64\x02\xf8\x94\x4a\x29\xfd\xaa\x94\x4a\x55\x26\x64\x82\x28\x5c\xdd\xe1\x2d\x45\x39\x02\x41\xf5\xf0\x36\x56\x83\x74\x0f\xe8\x8a\xf8\xcf\x5a\x0a\xfe\x73\x76\xa2\x67\x79\xe0\x85\xf2\xbf\x4b\x53\xbe\x6e\xd0\x50\x58\x92\x75\xa5\x54\x79\xad\xea\xdd\x9c\x87\x19\x6b\x1d\x20\x17\x3b\xa5\x55\xd4\x4f\x55\x00\x2e\xa1\xb5\x3b\x94\xa6\x0c\x84\xf7\xf8\xb5\x66\xff\xbf\xd3\x52\x00\x7a\x70\x8f\xe5\x8c\xfc\x25\x2f\x92\x29\x0b\xd5\x84\x41\x3a\x9a\xf2\xae\xe0\x20\x8f\xbb\x26\x60\x19\xe5\x02\xdb\xf4\x56\x6d\xa3\x36\x58\xb2\x3b\x7c\xf1\xf2\xc7\x54\x90\x73\x9e\x4b\x5b\xf4\xe5\xd9\xb4\x41\x77\x10\xde\xaf\x81\x82\x95\x3b\x8e\x4d\xca\x29\xc1\x58\x74\x79\x02\x1e\xe8\x75\x56\xf9\x1d\x0e\xf2\xa0\x67\x49\x5f\x62\x9a\x06\x01\x98\x0c\xb2\x58\x13\x60\x07\xd3\xac\xf9\x0d\x7d\x0f\xff\x55\x7b\xeb\xd4\x5d\x78\x61\x3f\xcb\xb2\xb9\x65\x2d\x76\xf0\x1e\x2b\xf5\x9e\x42\xa5\x9d\xf3\x4e\x1a\x26\xc8\x86\x3a\x31\xfb\xa8\xf0\x0d\xa2\x8f\x14\xcc\xa0\x6f\x92\x91\x4d\xc8\x33\x59\xa6\x28\x6e\x0e\xd1\x37\xd2\x32\x14\xc8\x7e\x40\xdb\x8e\x08\x26\xd0\x6e\x8f\xb4\x1f\xa2\x04\xfc\x01\xda\x10\xfe\x1f\xc6\xfe\x3d\x48\x8e\x2c\x3b\x0f\xc3\x81\xea\xc6\x63\x06\x98\x5d\x0c\x66\xb8\x14\xf9\xe3\x4f\x2a\x49\x94\x86\x52\x8c\x36\x24\x59\x61\x39\xf8\x87\xb3\x0d\x34\x77\x76\x10\xbb\x3d\x1d\x00\x16\x43\x8f\xff\xc1\xad\xac\xdb\x55\xb9\x9d\x95\x59\x9b\x8f\xee\xe9\xb1\x15\xe1\x90\x23\x14\x76\x84\x83\xe1\x08\x2b\x14\x21\x5a\xb6\x19\x34\x43\x12\x65\x59\x5a\x72\x49\x91\xa2\xc8\xad\x1e\xee\x72\x9f\x5a\x72\xde\xef\xdd\x01\x06\xef\x6e\xbc\xdf\x68\x00\x0d\x47\x9e\xef\x9c\x7b\x4f\x76\xe6\xc8\xfc\x2f\x13\xe8\xaa\xca\xbc\x8f\x73\xcf\xe3\x3b\xdf\xc7\xff\xae\x39\x68\xa3\x78\xc9\x66\x3b\xbd\x08\xfb\x55\xca\xf3\x0a\x57\x94\x87\x47\xff\x46\x0d\xbe\x4f\xe7\x88\x04\xac\xd5\x37\x4b\xe9\xaa\x8d\x37\x15\x9d\x00\xb4\x85\xda\xf8\x58\x3e\xab\x9a\x0b\xd2\x94\xd9\x65\xd8\x95\x55\xa1\xf4\xe9\x96\x7d\xad\x54\x38\xc8\xd8\x38\x79\x68\x97\x36\x3f\xad\x08\x92\xef\x29\xb5\x78\xe2\xe9\x5d\x64\x6e\x51\xc1\xcb\x57\x0b\x53\x70\xf4\x3e\x6e\xef\xdb\x98\xcb\xd1\x58\x58\x6f\xd0\x57\xc2\xfd\xbe\xaa\x6b\x95\x67\x27\x4f\xa8\x32\x33\xd7\x37\x91\xd8\x63\x6e\x7c\x97\x92\x76\x5d\x11\xf7\x6a\xdc\x0b\xd2\xa8\x5c\x7d\x10\xd0\x97\xe9\x19\x0f\x7f\x03\x49\x25\x76\xcb\x27\x0a\x74\x9f\x2e\xd9\x8c\x00\x33\x2e\xe1\x73\x32\xa8\x15\x32\x0f\x1d\xe2\xec\xd3\xc6\x44\x81\xb0\x37\x5a\xd5\x64\x33\x3b\xc8\x78\x4f\xb9\xd2\x8e\x92\x82\xdd\x1f\xa9\x73\xbc\x88\xdc\x31\xce\x85\xd7\x40\x15\x3f\xce\xeb\x3a\xcd\x62\xfe\x19\xd5\xee\xbb\x8f\x58\x49\x04\xfe\x4b\x19\x7e\xb7\xb0\x8e\x1d\xe0\xc3\xed\xc7\x13\x85\xfa\xd9\xb1\xea\x4b\x43\x67\x7f\x56\xd1\x28\xbc\xf4\x57\x67\x80\x1b\xd1\x58\x0b\x14\x17\xf6\x71\xd5\x87\xfc\xd2\x7f\xf4\xd4\x8c\x4a\xb4\xa2\x7f\x14\xf1\x25\x88\x58\x34\x59\xbe\x98\xc2\xfd\x8a\x68\xca\x44\x23\x23\x31\xb4\xab\x30\x29\xdd\x42\x25\xff\x1a\xa6\xb1\x70\x00\x38\x89\x1d\x0f\x10\x3a\xa7\xba\x69\x32\x1b\xda\x68\xc9\xee\xf4\xcd\xcc\x5f\xd7\x55\xb9\x2b\x81\xaa\xd7\xc1\xc1\x43\x05\x10\xc7\x3b\xce\xc8\x0e\x89\xa4\x33\xe5\x7d\xa3\xf2\xf0\xfc\x5c\xb7\x9f\xa5\x8c\x80\x65\xaa\x24\xcd\xb9\xf5\x13\x17\x5c\x26\x69\x52\x26\x34\x9d\x2e\x05\x81\xf0\x8b\xaf\x1b\xf1\x3e\xa5\xde\xf3\x22\x4b\x57\x24\xde\x87\xbb\x77\x06\xdf\xcf\x37\x0a\x4a\xf1\x85\x83\x07\xa7\x34\x7b\xf2\x3d\x7a\x23\x64\x6b\xb8\x6b\x51\xf4\x95\xb6\xfe\x96\xc4\x55\x0b\x69\x99\xed\xf0\xfa\x1f\x7b\x66\x74\xa6\x94\xa4\x15\x5d\x9b\xaa\x52\xdd\xa7\xaf\x16\x16\xa4\x7d\x2a\x45\x3e\xea\x71\x53\xbc\xa8\xaa\x76\xe8\x8d\x51\x14\x42\x60\x85\x68\xe4\x76\xe3\x60\x3b\x74\xa8\x72\x60\x16\x69\xf1\x73\x20\x46\x1b\x45\x82\x32\x87\x2c\x1e\xac\x8c\x8b\x88\x65\x24\xb0\xf8\x5e\x0f\x54\x73\xd5\xeb\x6d\x8a\x77\x10\x0f\xec\x78\x9c\xf1\xc7\x81\x77\x65\x3f\x56\xe4\x4d\x23\x33\x5c\x48\xcb\x57\x00\xb7\x76\x8b\x6d\xfe\x05\x2f\x63\xd9\x92\xa5\xb1\x2f\xdb\xb0\x2c\xa8\x0b\x53\xf1\x96\xf9\x9c\xc2\x69\xdd\x66\x73\x57\x33\xcd\x0d\x4d\x1f\x2b\x09\xf3\xc4\xec\xc7\x7c\xd3\xd6\xcb\x9c\x95\x89\xa7\xa0\xe0\x92\x1f\xfd\x92\x94\xff\xfc\x6c\x2c\x5a\x3b\xa6\xf3\xb4\xda\xda\x28\xc2\x03\x4c\x8a\x94\xcb\x69\xfa\x98\x6c\xf2\x36\x76\xfd\x74\x64\x84\xc0\xc2\x89\x1e\x55\x8f\xc7\x37\xed\x59\x91\xc2\x44\xc8\x79\x3b\xb4\xf3\xa1\x43\x0e\x9f\xe4\x25\x81\x4d\x92\x44\x4b\x36\xcb\x05\x76\x2a\x10\xe4\x6a\x29\xf2\xb5\x02\xe4\xda\x97\x43\x3b\x86\xe3\xc4\x29\x6f\xe6\xcd\xa4\x03\x59\x38\x34\x9f\x52\x0c\xdc\x11\x85\x99\x51\xa8\x12\x34\x37\x75\x25\xe6\x66\xad\x92\x6f\x47\x85\x92\x05\xfe\x10\x7f\x28\x1c\x35\x9f\x55\x00\x37\x32\xe5\x64\x43\x64\xeb\x57\x0f\x20\x3b\xdf\x3f\xf0\x28\xca\x33\x3b\xce\x6c\x4e\x69\x42\x32\x6b\x00\x9c\x70\x07\x2a\xdf\x28\x3c\x58\x3e\xb6\x61\x64\xe2\x02\xaf\x27\xe4\x0b\x94\xf9\x11\xa7\x52\x73\xfe\xc4\x69\xa2\x73\xff\xdc\x11\x2d\xf4\x6f\x2d\x45\xaf\x91\xcd\xb2\x88\xcb\x11\x38\xbb\x1e\x04\x8a\x7d\xf7\x41\x5b\x91\x6e\x79\x98\xda\x25\x9b\x91\x83\x2d\x94\x32\x1e\xa1\x75\x9a\xb4\x5a\x11\xb5\xdd\xd1\xb9\xe1\x71\x9a\x59\x40\x14\x84\x17\xc5\x1f\xb9\x6b\xb5\x71\xef\xd9\xfe\x1e\x9f\xf4\x86\x40\x2e\x86\xe6\xfa\x56\x3a\xbb\x97\x34\x8e\xf4\x88\xac\x5b\x44\x1c\x8e\x88\xd3\x97\x9e\xae\xc0\x6f\x13\x7a\xde\xca\xaa\x09\x6d\xaf\x22\x9a\x13\x18\x03\x82\x9e\x1d\x33\xde\xdd\x48\x8b\x02\x4d\x83\x48\x68\x31\x8e\x8c\x6f\x1a\xf0\xab\x67\xbb\xb1\x95\x1e\x0d\x47\xbd\xe8\x89\x0c\xc8\x73\x76\x53\x57\x66\x85\x29\xe3\x7e\xde\xe9\x3c\xf3\x0c\x53\xb5\x9c\x82\x89\xe1\x9b\x36\x3a\xb7\x7c\x65\x34\x2e\xd2\x11\x27\x35\x31\x01\x17\x95\x3e\xc6\xc5\x56\x24\x59\x3f\xca\x47\x66\x45\xc8\xd8\xb1\xf2\x19\xde\xc8\x37\xaa\xc0\x49\x5a\x76\x1d\x85\x77\x58\xa3\xef\x17\xaa\xe6\xad\xf6\x7a\xf6\x68\x37\x4c\xd3\x78\x4a\xe5\xbd\xff\x60\xd2\x51\xda\xda\x1d\x2f\x9b\xde\xc2\x01\xf3\x5c\x77\x60\xf2\xb4\x0a\x21\x3a\x3e\x93\x06\x61\x77\xbe\x56\xde\x4e\x39\x1a\xef\xf6\xd5\x02\xc8\x3f\xb0\x48\xd8\xc4\x9f\x2f\x53\xe0\x79\x83\x39\x38\x83\xd5\x00\x44\xf6\x1d\x05\x09\x64\xed\x4f\x18\x19\x26\x80\x43\x20\x7a\xb1\xed\xe4\x18\x67\x55\x64\x82\xb7\x74\x2e\x8d\xeb\x4c\xbd\x1d\x78\x60\xdc\x07\x75\x76\xf4\x64\xf0\x97\x14\x47\x1f\x80\xff\x58\xa8\x1f\x10\x8a\x59\x24\x73\x69\x9d\x62\xe6\x77\xa3\x47\xc5\x15\xd1\xaa\xb7\x41\xfc\xb4\x93\xce\x65\x78\xaa\xfb\x66\x3c\xad\xec\x2d\xc5\x72\xf5\x3e\x97\x89\x58\x87\x06\x0d\xd1\x0a\x17\x2b\x2e\xf6\x86\xea\xc9\xbe\x80\x7e\x6a\x16\x39\x03\xb2\x00\x9b\x61\x43\x63\x51\x4f\x12\x64\x0d\x81\xcf\x1b\x58\xab\xd8\x40\x7b\x51\x92\xc1\xd6\xba\xad\x84\xc4\x1e\x06\xd5\xea\xc6\x4c\x4e\xad\x2a\xc5\x40\x56\x78\x40\xa4\x35\xb5\xda\xf9\xca\x17\x9d\x8c\x3d\xdc\x4e\xa4\xac\x76\xae\xd2\x42\xc4\xcf\xef\x20\x8f\x8c\x46\x7c\xea\x49\xb8\xaa\x28\x2e\x5d\x80\xa8\xb4\x83\xe0\xbf\x28\xb5\xdb\x4d\x02\xcb\x20\xd0\xda\xde\xe0\x4e\xa2\x54\xc9\xb8\x74\x19\x3a\x47\xe8\xed\x0e\xe2\x0f\x75\x6c\x7f\x4b\xd5\x20\x16\x4c\x9c\x5b\x6c\x12\x04\x36\x1f\x4f\x7c\xc0\xf3\x71\x9b\x3c\x4a\x91\xe6\xc3\xa8\x07\x35\x27\x01\x62\xa9\x21\xb8\xdc\x22\x90\x34\xdf\x0d\x4d\x39\x18\x16\x53\x0a\x50\xa1\x45\x3a\x08\xe8\xc0\xc3\xf6\x6e\x63\x6f\xcd\x1e\xed\xf6\x2c\x95\xb6\x25\x98\x06\x26\xf0\x82\x4a\xb4\xef\x9d\x51\xf9\x80\x9d\xab\x1e\xcb\x14\xf5\x8d\x52\xc0\x3d\xa7\x55\x81\xcf\xd5\x28\x0a\x06\xa2\x0b\xa2\x9b\x2e\xf8\xba\x51\xfd\xf8\xf2\x6c\xb7\x48\xa5\xcd\x95\x73\xa0\xaa\xe3\xb0\x49\x60\x39\x37\xd7\x2d\x4c\x36\xb0\x85\xd0\x47\x23\xcc\xf9\x36\x46\x01\x67\xd1\xf5\x1a\x8e\x45\x71\xd8\x9a\x8c\x54\x4b\xaa\xff\x85\xd3\xb6\xae\xc3\x85\x75\x15\x58\x98\x3c\x32\xd3\x0a\x01\x7a\x1a\xdf\xef\x7a\xbb\x5c\x6d\xfc\x14\x39\x26\x42\xdc\xbe\xf5\xf5\xe6\x0f\xcf\x77\x85\xdd\xe1\xa5\x3a\xf7\x91\x30\x24\x89\xf7\x9a\x66\x95\x67\x22\x0b\x0f\x8b\xed\xbe\x12\x8d\x3d\xaf\x00\x1b\xbf\x7d\xa9\x8d\xf3\xff\xab\xd6\x70\x99\x61\x6e\xce\x91\x07\x7b\xbb\x7b\x45\x81\x62\x49\x98\x6b\x8f\xef\x0b\x82\xea\xbc\x34\x09\x01\x43\x86\x4f\xad\x6b\x3b\x78\x5e\xb1\x9f\x5e\xc3\x09\xeb\x74\x6a\x7d\x54\xc2\xc8\x76\x60\x20\x36\x55\x1f\xfa\x4f\x74\x9d\xf5\x1d\x8d\xdb\xff\x91\x73\xe2\xe3\x68\xc1\x16\xd1\xc8\x2a\x4f\xf1\x96\xf2\x14\x6f\x55\x61\xb1\xa6\x1e\xfc\x85\xee\xc1\xd9\xdd\x64\x6a\x44\xdc\xdd\xf7\xf5\xdc\x9e\x78\xdb\xf8\x13\x58\x17\x98\x53\x70\x99\x48\xd7\x7c\x47\xe9\xea\x55\xd6\x8c\x3f\x30\x51\xb4\x21\x97\x75\x20\x90\xc6\x69\x91\x2e\x61\x4a\xf1\x7d\xef\x62\x90\xf8\x46\x61\x2d\x73\x53\x86\x22\x72\xed\x48\xec\x5d\xeb\xc3\x55\xe4\x37\x45\xd2\xc4\x6b\x66\xda\x97\x21\xd7\x4f\x21\x30\x6a\x08\x5c\xd0\xe4\x1b\xb5\x52\x07\x65\xbc\x40\x54\xc4\x42\xbd\x44\xdf\x89\xf9\xfa\x1e\x6a\xef\x7c\x33\xf1\x30\xfd\x47\x34\x32\xd8\xe4\x57\xc9\x22\x4a\x27\x65\x13\x84\xf7\x52\x37\x5c\x09\x63\x49\xe8\x8a\x77\x40\x93\x2f\x7e\x43\x0b\x56\x63\x98\x9a\x4c\x28\xd9\x9c\x9a\x90\x56\x0f\x69\x61\x5a\x1b\x9b\x70\xd1\x0c\x24\xc4\x85\x15\x44\xed\x8b\xaf\x15\x4d\xd5\x72\x9a\x2d\x7e\xd6\xa7\x5e\xfe\x10\x4b\x4b\xf6\x3c\xce\x3b\x4c\x30\x37\x6a\x88\x23\x42\xa7\x2a\xac\xe5\xef\x07\x3e\x7b\xf5\x1e\x8d\x42\xcd\x45\x03\xa4\xf9\xbb\x81\x92\x04\x7d\x0b\x47\x2f\x67\x03\x01\x65\x84\x0d\xbc\x13\xf8\xac\xdf\x25\xa5\xb9\xce\x30\x42\xd8\xbf\x6f\x4d\x7c\x0f\x4c\x53\x7e\x76\xf6\x68\x77\x31\xcd\x2c\x07\xb0\x82\x14\xd4\x04\xfa\x2d\x3a\xce\xf3\xdd\x45\xbb\x42\xc7\x01\x73\x49\x23\x91\xe1\xf6\xab\xcb\x9f\xbd\xd5\x30\x19\xc7\x0e\xcc\x76\x17\xa2\x41\x99\xd5\x75\xf4\xea\x81\x99\x1f\x71\x13\x9b\x64\xba\xa3\x84\xa2\xc8\x27\x90\xd5\xd9\xf1\xc2\x41\x58\xa9\x0c\x81\x6a\xe0\x78\x66\x8f\x76\xa1\x78\x4a\x6f\xc9\x90\xac\xc0\x6f\x8a\x3f\x98\xe8\xd4\xac\x23\x48\x3d\xc2\xe1\xc8\x76\x66\xbb\xe4\xbb\xd5\x16\x02\x80\xa1\x35\xfd\xaf\x95\x26\x83\x62\x92\xd7\xf2\xba\xa3\xd4\x21\xef\xb4\x1d\xc8\x23\xf3\x72\x34\x2a\xb9\xe1\x52\xea\xbf\xde\x98\xde\x57\xc0\xd3\x73\x6d\x4c\x81\x61\x6c\xc6\x45\x66\xc6\x75\xa9\x20\x55\xa6\x71\x99\x8a\x97\xc7\x69\xee\x82\x75\xa1\x52\xe9\x28\x8a\x95\x36\x52\xc6\xcc\xe6\x51\xec\x78\x45\x99\x78\x5d\x55\x8e\x2e\xb6\x64\xef\xe7\x5d\x17\x8e\x4c\x32\xe0\x2f\xef\x2b\x6e\xd1\xf7\x95\x3f\xfd\x77\xfe\xf6\x7f\xa6\x47\xfb\x2c\x39\x6e\x7c\xdd\x38\xdd\x0e\x1f\xe8\xe6\x43\xcb\xa1\x23\x77\x7d\x05\x5e\xdd\x47\x83\xf9\xd3\xb2\x80\x47\xef\x8b\xd7\xf4\xe4\x52\xc8\xf6\x4f\x10\xa7\xcb\x9f\xa9\x89\x20\x38\xa3\xf3\xc7\x64\xb4\xe8\xdf\xff\xe7\x9f\x9b\x21\x27\x56\x9d\xa8\x42\x40\xb1\x7d\x46\x01\x6d\xf7\xae\x2a\x02\x88\xfd\x94\xd4\x85\xe3\xc8\xcd\x61\x58\xca\xbb\x56\x7d\xc7\xdf\xaf\xec\x5b\x75\x4e\xfc\xd4\xd3\x33\xbe\x59\xf7\xe9\x19\xa5\xe6\x7e\x85\x10\xe6\x38\x28\xbe\xa3\xd9\xb2\x4d\x14\x2f\x1b\x2e\xcf\x62\xd5\x9c\xd3\x39\x83\x73\x8a\xa3\x69\x31\xcd\xd2\x22\x12\x69\x34\x18\x08\x0e\xf7\xf8\xa6\xc5\xf9\x99\xef\x2e\x94\x99\x03\x3c\x88\x6e\xb9\xcf\xa4\xde\xc2\xf6\x47\x38\x7a\x4d\x35\x28\xdc\x55\x27\x6c\x68\x93\x5c\x4e\x25\x78\x4c\x1f\x4c\x54\x47\xdd\xed\x7a\xd7\x74\x4b\x9d\xc9\x13\x56\xa1\x88\x84\x13\x9a\xaf\x55\x4f\x4d\xb8\x80\x34\x8b\x08\x6e\x28\xc2\xa4\x26\x10\xe6\xe0\xc1\xee\x30\x2d\x2c\x56\x13\x82\xa8\x55\x45\xf5\xb3\xda\x02\x68\x9e\x67\x76\x46\xad\x4a\x78\x31\x50\xd4\x92\x17\x27\xde\x81\xcd\x87\xf6\xb3\x34\x15\x48\xe0\xae\xab\x8a\xcb\x09\xaa\xc4\xc0\x94\xed\x02\x68\x1e\xa7\xf5\x87\x13\x84\x1e\xd8\xc0\x90\xdc\x43\x05\xe2\x36\x9d\x17\x48\x7b\x7e\x80\xf3\x42\xba\xbf\x95\xb4\xdc\xe3\xab\x4a\x8b\x6f\xdb\x0c\x9d\x17\x9c\x05\x0c\xbc\xc5\x44\x5d\x07\x86\xe9\x0c\x8a\x63\x22\x94\xed\x5b\x7d\x34\xff\x41\xfa\xb7\xfe\x0e\x8d\x2b\x02\x32\x84\x9a\x7c\xad\x63\xe3\x6c\x80\x0a\x25\x7e\xfe\x01\x7d\x99\xf4\xe9\xe8\x56\x6d\x0c\x85\x0e\xb4\x85\x43\x48\x70\x9f\xac\xb5\xc8\xc2\x0c\x0e\x06\xe1\x26\x0a\x8d\x87\x58\x69\xd7\x35\xa2\xea\x61\x5b\x63\xb9\x49\x4c\xbc\x52\x44\x21\xf7\x43\x3a\xc5\x5f\xaf\xfe\x1b\xf8\x8c\xdd\x28\x2d\xd2\xac\xf2\x40\x04\xe0\xe5\x60\xd1\x1e\x7f\xb3\xae\xd3\x65\xac\x11\xcc\x3a\x1d\x58\x07\x40\x9d\xf3\x75\x8b\x9a\x64\xd7\x64\xbd\xa8\xc8\xcc\xc0\x66\x1d\xcf\x3f\x79\xa6\x86\x62\xfa\x9c\x37\x66\xe3\xca\x3d\x2b\x93\x88\x74\xd4\xaa\x57\xd0\xf1\xbf\xf8\x61\x2d\x24\x00\x43\x9b\xf5\xa2\x30\xea\x5b\x34\x6d\xc2\x5b\xc0\xaf\xe0\x53\xd8\x48\xf2\xef\xbe\x5e\xb5\x14\x85\x45\x15\x20\x00\x49\x8f\x8c\xee\xc7\x81\xaf\xbf\x7c\x5c\x67\xea\xb1\xe1\x63\xd5\xff\x61\xa5\x7e\x13\xdb\x0e\x11\x2b\x94\xbd\xe4\x94\xa9\x86\x70\xf3\xea\xc4\x0b\xf4\x72\xd7\x99\xb4\x30\xd0\x53\x0a\x2d\x0e\x99\x0b\xac\xb2\xab\x58\xf0\x48\xf7\xfe\x5f\x13\x2d\x62\x96\x2e\xdb\xfe\xe3\x98\x28\xf8\xd4\xbf\x05\x8f\x8b\xc3\xa8\x40\xb7\x0d\x79\xfa\xbd\xd3\xf8\x76\xa9\xb3\xab\x54\x13\x8c\x9b\xb0\x69\x76\x14\x6f\x31\x3d\x82\x2b\xd3\x7b\x9c\xc8\x25\x67\xe9\xf2\xb2\xdf\xb7\x84\x2f\x70\x95\xa4\x75\x85\x01\xc3\xa2\x85\xa3\xf3\xb1\xd6\xf3\xbc\x8f\xa7\x11\x66\x07\xbf\xa3\xfe\xde\xdf\xfa\xcf\xa7\x95\x3b\x07\x8c\x0f\x66\x00\x00\x03\xa9\xcd\x56\xa7\xa6\xb4\x31\x37\x53\x82\xcb\xd6\x64\x53\x1d\xd5\x31\x5e\xd3\x94\x70\xfc\xa3\x4d\xb9\x31\x6a\xf2\xf7\x5c\xc4\xb0\xdd\x3b\xa8\x90\xc2\xd7\xab\xfb\x95\x30\x57\x98\x59\x93\xdb\xfc\x31\x5d\x46\xe8\x1c\x3b\xb0\x79\xb3\x26\xd5\xa9\x32\xc9\xe7\x31\xe3\x22\xd6\xdd\x71\x29\x27\x4e\xba\x38\x55\xcd\x83\x07\xd9\x08\xec\x45\xab\x82\x80\xe4\x5b\x54\x1d\x42\x93\x65\x2b\x12\x3d\xb8\x62\x46\xf5\x6d\x32\x23\x4f\xa8\xe4\x81\xe9\x91\x8b\x80\x71\xe4\x94\x38\xdf\xa8\x84\x64\x68\xe2\x68\x81\xbe\x10\x13\xf6\x7d\x3d\x7b\xdf\xaf\x65\x9c\x33\xe2\x48\x7b\x5e\x74\x1d\xb6\x2b\x36\xdb\x29\xf4\x38\xa1\xa6\xf5\x61\xe0\x7f\x77\x53\x29\x35\x5e\x77\xc8\x9d\x32\x09\x87\xc6\x73\x34\x4b\x8f\xaa\xcf\x1f\xbe\xdd\xda\x8f\x22\xd3\x00\x4e\x08\x46\x8d\xd1\x42\x66\xda\x94\x80\x8a\x69\x38\x7c\x4e\x4c\x3a\x5f\x3a\xe2\xa8\x85\x9b\x61\xd5\x7c\x37\x8c\x8a\xfa\xd9\xcb\x44\x79\x7c\xd3\x16\x56\xf5\x23\x33\xf2\xac\x72\x98\xc3\xf3\x0a\x17\x70\x7e\xb2\xc7\xa3\xf0\x92\xbf\xe2\x37\x0b\x33\x21\x20\xcf\xf4\xcf\x02\xe5\xa7\xbc\x49\x2b\x1f\xee\xe3\x49\xf2\x85\xc4\x2f\xc2\x79\xe9\x62\x9f\x6a\x80\x11\xe2\x3f\x22\x58\x26\x06\xbb\x33\xe3\xa9\xa0\x1f\x5b\xd5\x85\xa4\x2b\x48\x4e\xc2\x72\xa1\xde\x8a\xa3\x90\x45\x30\xa4\x01\xc3\xb3\x3d\x4c\xaf\xd2\xf8\x61\x0a\xee\xc1\x7e\xc1\x64\xbd\x4b\x83\x29\x48\x02\x5a\xe6\x8c\x47\x84\xec\x06\x86\xf9\x06\xb2\x1d\xa8\x21\x30\x31\x10\x9e\xf8\x6d\xca\x54\x22\x5a\x43\x5f\x32\x46\x02\x68\x2d\x6c\x9f\x33\x94\xfe\xc1\x37\x71\x96\x14\x96\xf4\x35\xd2\xda\x45\xd4\x78\x9e\x60\x23\xd2\xe1\x4a\x4e\x00\x3e\x71\x0a\x2a\x09\x98\xfb\x0d\xb8\x6e\xa8\x94\x3f\xc0\x4e\x44\x71\xee\xbb\xa4\x37\xca\xac\x06\xc1\xf6\x9f\xe7\x91\xfb\x50\x19\x5e\x93\xe7\xb6\xc8\x77\xa9\xd6\xbc\xba\x04\x62\xe0\x91\x09\x1f\x4c\x54\x26\x64\x37\x79\xb8\x48\xc6\x5f\x80\xdd\x45\xf6\xf0\x91\x6a\x26\xb8\xd3\xc6\xeb\x17\xe5\xa6\x67\xe3\xd8\xc0\x7d\x15\xf4\x8d\xea\x31\x6c\x5d\x8b\x69\x59\x2c\xc4\xe9\x32\xaf\x45\x8d\x98\x15\x1c\xe0\x67\xdd\x76\x23\x99\xf0\x62\xda\x57\x4b\x3f\xc2\x7a\x44\x3e\x8c\xf4\xe8\x7c\x49\xdb\xbb\x59\xa7\xdb\x3a\x5c\x7a\x99\x5d\x76\x76\x13\xf9\xe6\xb7\xe9\x0d\xf9\x5a\x95\x5e\x17\x62\x33\x60\x49\x1d\xa1\xe5\xed\x78\x8a\x5e\x25\x89\x95\xa7\x66\x91\x20\x24\xca\x13\x53\x15\x94\xcb\xaa\x5b\xe0\xc7\x8d\x11\x94\x32\x7b\xb1\x94\x4f\x75\x8e\xbe\xe0\xd0\xe8\x9e\x4c\xee\x6d\x1c\xcf\xd7\x6b\xe0\x55\x1b\x7e\xbe\x53\xad\x38\x40\x56\x40\xe9\xc4\xd7\x9a\x44\xdc\x24\xe9\x12\x4a\x36\x73\xae\x68\x4a\x43\x24\xd5\xd4\xb6\xc8\x82\x08\x14\x84\x33\x0f\x16\xe0\xcd\x40\x89\x59\xbd\xa9\x60\xe1\x36\x59\xc2\xb1\xea\xe8\x9a\xab\xed\xe5\x52\x86\xd5\xef\xf2\x4d\xe0\x9b\x1a\x3e\x50\xbe\xe5\x07\x4a\x22\x7a\x64\xf2\x1c\x9d\xe7\xd2\xac\xba\x3e\xf1\x39\xda\x8f\x27\x1e\x34\x02\x6c\xb7\x70\xf8\x79\x51\x18\xfc\x0a\xff\x7d\xe0\x13\x69\x44\x15\xb0\x64\x01\xa6\x16\xac\x01\xed\x52\xa7\xa3\xea\x78\xc8\x57\x27\x9f\xdb\xaa\xa7\x36\x7f\xa4\xfb\xe2\xe1\x03\x1d\x65\xb9\xcf\xc3\xc0\x08\x2b\xc5\xd6\x61\x9c\x7f\xe1\x48\xf7\xab\xa9\xd2\x82\xc0\x49\x03\xbd\x7a\xbe\x56\x21\x60\xbf\xda\x44\xb1\xf0\xc1\xe2\xa8\x7d\x97\x5d\x73\xbe\xab\xa5\xd6\xc7\x79\xa4\xd4\xc9\x3e\x86\xd7\xc3\x37\x6d\x52\x34\x44\x03\xac\x08\x48\xef\x2b\x38\xd4\xfd\x16\x29\x8b\xc3\xdd\x28\x59\xb2\x49\x91\x42\x54\x7d\xf3\xbd\xea\xef\x37\xdf\x73\x7b\x32\xb3\x10\xfc\xaa\xc9\xff\x6f\x5f\xf5\x05\x0c\xd6\x94\x41\x1e\xf8\x75\xdf\x4d\x11\x9b\x7c\xe8\xc6\x84\x45\x28\x94\xbe\xb4\x56\x7e\x1e\xd9\x6c\x40\xf0\x77\xa5\xfe\x43\xeb\x89\xed\x67\xa0\x63\x95\xad\xef\xfc\xe2\x3c\xf5\xe0\xb0\xe8\x21\xb7\x42\x91\xa1\x90\xb6\x28\xef\x53\xe7\x65\x5e\x98\x28\xb1\xfd\x69\x3a\x72\xe0\x07\x9e\x52\x60\xea\xef\x07\x0a\x5d\xf3\x7d\x98\x6a\xfe\x2b\xd7\x10\x17\xa6\x71\x39\x92\x06\x30\xb7\xa6\x7c\xcb\xba\x32\xd1\x7d\xea\x64\xde\x5f\x1d\x05\xf0\x2c\xcf\x4f\x74\x8d\xab\x5a\xe4\x48\x45\x6e\xf0\x0a\x40\x1d\xf0\x92\x37\x53\xff\x76\xdf\x8c\xa2\x8e\x60\x8a\x56\x45\xa9\x3a\xcb\x67\xc4\xb6\xd5\xca\x44\x80\x59\x8a\x29\x01\xf1\x8b\x9d\x19\xa5\xaa\x78\x45\xeb\xd8\xfc\x24\xf0\x42\xd5\xf7\x27\x3e\x08\x81\xfe\xbd\x6c\x90\x5a\x4d\x8d\xe6\x52\xf1\x22\x0b\x31\xee\xf6\x99\xbd\x0e\xeb\x2c\xbd\x46\xcc\x27\xaa\xf3\xdd\xb7\x30\xab\x92\x00\x94\x06\xc6\xb0\x1c\x11\x67\xcc\x92\x9d\xd2\xe9\x62\x55\x4b\x7b\x7c\xc6\x83\xd9\xa7\x5a\xa0\x52\x47\xba\x66\x94\x96\x89\x73\x93\x14\x03\xbe\xd3\xb2\x69\x55\xb8\x8e\xd3\xe5\x84\x0c\x85\x8b\x78\x7c\xeb\xd7\x05\xdd\xd7\xb9\xe1\xd1\xdc\x36\xe9\x9b\x50\x48\x12\x91\x0d\x38\xab\x94\x1d\xce\x4e\x3c\xaa\x7a\x10\x8d\xf8\x9d\x9c\x78\x98\x4f\x87\x9c\x9d\x78\x0b\xd1\xda\xfb\x38\x8e\x6c\x28\x6f\x84\x71\x38\xa5\xb5\x0e\x4e\xb5\x29\xb4\x8f\x6c\x52\xe6\x0a\x33\xc8\x6b\x41\x78\x50\x7c\xed\x32\xb6\xa6\x9f\xef\x52\xf4\xfd\xe7\x50\xfd\x95\x56\x50\x5a\x28\x22\x6f\xe8\xf1\xdf\xdf\x43\x9c\xc4\xc9\x11\xd5\x03\x73\x52\xd5\xde\x37\x14\xc7\x88\xb1\x59\xda\x8b\xc2\x3f\x5f\x82\xb5\x85\x3a\xac\x67\xf2\x28\xd4\xf9\x49\xac\x0b\xbe\x76\x08\x76\xfb\x72\x91\x19\x58\x10\x47\x76\xef\x72\x8d\x27\x31\x08\xb8\xb9\x13\x7c\xce\x0d\x42\xe2\x00\xd8\x45\x84\xce\x63\x4d\x50\x25\x4d\xcc\x7e\xd0\x06\xa9\xd0\x2f\xc3\x3b\x99\x5a\x55\xd9\xa5\x37\x03\x5f\xba\xd9\x3b\xa3\xb6\x20\x32\xe5\x80\xae\x9d\x55\x55\xa5\xc4\x5a\x91\x45\x94\xd3\x1d\x14\xce\x7c\xdd\x68\xc6\x7b\x7e\xae\x6b\x47\x3d\xfb\xca\x2b\xb1\x33\xac\xac\x23\xa7\xdc\xd3\xdf\x54\xbf\x80\xfe\xb1\x1c\x5d\xae\xee\x98\x7d\x7e\xce\x1d\xa1\xb2\x05\xc7\xb1\x09\x89\xcf\x92\xe5\x8d\x71\xfa\x7f\x0b\xe6\x46\x08\xd6\x61\xa2\xc4\xbf\xdd\xba\x0b\x0f\x1d\x3a\xd2\xb5\x2f\x87\x90\x20\x57\xc5\x58\xc5\x60\xdc\x4c\x2c\x56\x5b\xb7\x57\xae\x80\xbe\x09\xab\x8d\x91\x3b\xd8\x30\x7b\x67\x3c\x2e\xed\x6d\x5a\x6d\x52\xe8\xd6\x7d\xa9\xd5\x2f\x48\xfb\x75\x4d\x20\x32\x1f\xd2\xe6\x56\x9d\x8e\xd2\x0b\x7a\x66\xa2\x68\xf2\xef\x06\x4f\xa9\x68\xc8\x2e\x45\x85\xe9\x31\xb4\x0c\xa7\xce\x2d\x9c\x71\x7c\xd3\xc8\xb9\x53\x7d\xc3\x14\x43\x9b\xc5\x74\xf8\x1e\x3a\x24\x99\x0c\x05\x9a\xb9\xec\xd0\xbd\x79\x61\x6d\x3c\x62\x47\x72\x4e\x82\xa2\x47\xba\xcb\x77\x0d\xa6\x16\xc1\xc7\xf5\xb6\x84\x1a\x10\x65\xbe\xa2\x20\x3c\x61\x3e\x42\xbe\xa4\xaa\x8b\x69\x18\x96\x59\x66\xfb\x44\xf7\x89\xe3\x63\xcf\xaa\x47\x00\x74\x10\x69\xb9\x94\xd6\xc1\x59\xd7\x0e\xa3\x4e\xb9\xb5\x96\xfd\x39\xd7\x5d\x1e\x4a\x1b\x35\x02\xb5\xb3\x81\x47\x5e\x9c\xdd\xaa\x57\x5b\x7d\xe0\xf9\xb9\x27\xaa\x18\x0f\x9e\xfb\x6b\xe4\xdd\x71\x7f\xcb\x44\xc1\xa4\xfe\x11\x7c\x36\x57\x93\x70\x6d\x74\x37\x50\x8f\x93\x02\x45\xf5\xac\x5a\x82\x53\x2c\x13\xbd\x10\x46\xf6\x87\xc8\x3d\x80\x47\xe0\x86\x52\x96\xdf\x85\x86\x62\xd4\x0c\x41\xfb\x80\xd5\xf1\xba\xf2\x54\xa1\xce\xa3\x24\xb8\x59\x58\x45\x54\xc5\xaa\xef\x7e\x44\x63\x89\x53\xf2\xa1\xe2\xff\xce\xd3\x64\xb0\x53\x67\x0b\x3c\x9e\xf5\xf1\x99\xca\x2b\xc0\x3e\xe4\x63\x19\x1e\x26\x70\xe8\x08\xd3\x4f\x68\xd1\x9b\x71\x2b\x05\x7a\xdf\x8e\xd3\x3c\x2a\x54\xeb\x20\xf3\x16\x20\xee\xfd\x7d\x76\x2c\xe0\x31\xae\x3b\xd9\x2e\xca\x92\x2c\xc6\xe2\xfa\xa3\xa4\x7f\x06\xae\x3f\xdf\x28\x6e\x84\x30\x1d\x8d\xd2\x64\x8f\xc2\x7f\x3c\x8e\xec\x10\x8e\xea\xb3\x5a\xbc\xe2\x0e\xe2\x02\x44\x6c\xd3\x33\xd5\xfc\x60\xf9\x20\x19\xed\xd8\xab\x5d\x8d\x60\x3b\x1d\xee\x98\x04\xa6\xc1\xc0\x48\xfe\x9e\xce\x91\xd3\x3a\xc1\xc2\x7e\x6c\xd5\xcf\xce\x38\x36\x89\xe5\xd0\x0d\xa7\x0b\xf7\xd3\xf1\x4d\x7b\x7d\x2c\x8b\x8a\x28\x74\x02\x2b\x78\x23\xce\x7c\xf0\x4d\x43\x62\xdb\x05\x6f\x99\xe9\x33\x90\x56\xba\xf8\x79\xb3\xc2\x4f\x84\x36\x0f\x0e\xb7\x5d\x0d\xf6\xa3\x67\xbb\xbd\xb4\x4c\x42\xb7\x6b\xd9\xb1\x0a\xfc\xf2\x79\xf7\x53\xc3\xc6\x90\x33\x88\x52\xf3\xf2\xfd\x2a\xdc\x78\x80\x6a\xf0\x8f\x15\x43\xeb\xb2\x19\x58\xd4\x7c\x70\xf6\xbd\x1a\x28\x80\x9e\x26\x1f\x58\x6b\xeb\x40\x1b\x44\x26\x71\xe2\x5c\x8a\xc0\xe4\x88\x2b\x3e\xd2\xcf\x62\xa6\x5f\x53\xb5\x8a\xc1\xb0\xf8\xe9\x6a\xea\xe0\xa7\xdc\x27\x29\x1f\x4c\xe3\x4f\xa3\xa2\x86\x03\x8e\xbd\x21\x24\x4f\xfe\x7f\xb4\x0a\xb8\x63\x38\xe8\x1c\x3c\xe8\x54\x10\x3b\xbf\xf4\xcb\xbc\x24\xff\x84\x92\x2a\x18\xa7\xef\x2a\xa7\x64\xcf\x8c\x97\xd5\xff\xdd\xfd\xab\xe4\xd4\x38\x19\x84\x6a\x67\xc1\x05\x7c\x72\xd5\xe3\x25\xff\xde\xcf\xe1\xe8\x86\xab\x07\xa8\x31\x02\xfa\x29\x42\xd4\x61\x90\x91\x2a\xa1\xb3\xf0\x1b\xfb\x57\xc9\xee\xe0\x48\x17\xb5\x55\x3c\xe3\x43\x02\x9b\x39\xe2\x21\x07\xbf\xd0\x8d\xf6\xff\xee\x2f\xa3\x14\x24\x78\xbe\x16\x38\xf7\xc8\xe6\xb9\x01\x25\x46\x2d\x10\xe0\xeb\x06\x95\xeb\xc1\xd9\x6e\x1c\x65\x96\x0a\xf4\xc8\xbe\xed\xa1\x54\xa7\x00\x01\xe8\xd5\x5d\x0a\xaa\x7a\x75\xfc\xd5\xd3\x33\xcd\x36\xc8\xe7\xba\x92\x2c\xc4\xdf\xb0\x88\x0b\xdf\xa8\x2e\x22\x93\x0c\x6c\x8c\xe0\x1a\x93\xc5\xcd\xa5\x52\x0b\xc6\xb8\xc0\x52\x3e\x54\xd9\x03\x13\xdb\x97\x15\xac\xfa\x8a\x2e\x91\x36\xfd\x82\xf9\xc3\xf3\x5d\x93\xa3\x9b\x0f\x6e\xc1\xd5\x89\x92\x15\x7f\x48\x96\x01\x55\x9a\x0b\x5a\x9d\x3f\x34\x49\xdf\xc4\xb5\x7c\xc6\x15\x9d\xcf\xa8\x2b\x7a\xdb\x2c\xd9\xa7\x0e\x5d\x74\xd0\xe3\x95\x5f\xc5\xda\xc4\x42\xdd\x89\xa9\x83\x3f\xb8\x46\x80\x21\x84\x47\xa7\xb5\x52\xce\x7c\xa0\xc6\xef\xcc\xc4\x07\x51\xaf\x91\x63\x28\xfd\xa8\x1e\x47\x76\x0d\xcb\x03\x3b\x10\x32\x6e\x0c\xa7\x20\x63\x27\x7b\xbb\x2e\x95\xa6\x74\x91\x3e\x41\x99\x45\x82\x55\xdf\x7e\x35\x4e\x8b\x61\x1a\x0b\x61\x93\x30\x55\xf9\xda\xe7\x5b\x2e\xba\x2f\xb2\x72\x61\xc1\x94\xe8\x48\x72\x88\xad\x6a\x48\xf8\xa6\x96\x89\xca\xd3\x11\x46\x56\x90\xd4\x64\xc3\x04\x30\xb9\xd5\x62\x1e\x3b\x00\xf1\xa4\xbe\xcd\x4c\x2f\xb6\x54\x34\xc3\x16\x83\x43\xcc\xd7\xaa\x6d\x6c\x6c\x56\xb2\x34\x16\x71\x6b\xc6\x5b\xd2\xdf\x0a\xf6\xb2\xa9\x04\xf0\x52\x37\x4c\xb9\x5d\x70\x49\x4e\x33\x9c\xf4\xec\xf5\xf3\x4d\xe0\xa5\x0b\xed\xa8\x67\xb2\xcc\x90\xf3\x34\xa5\xba\x05\xd7\x11\xd2\x8a\x6c\x90\x2f\x6f\xfe\xf3\x36\xe4\x48\x1e\x0e\xed\xc8\xd6\x30\xd8\xaf\x29\x0c\xf6\x6b\xaa\xcf\x9d\xe1\xfc\xa4\x4e\x51\xfd\x05\x93\x96\x04\xfe\xcd\x2e\xa8\xc3\xb6\x6f\xed\x88\x3b\x52\xf1\xe8\x5c\x5d\xe5\x9b\xda\x8c\x24\xd6\x90\x67\x82\xa3\x83\xf3\xbf\xd2\x4d\xa6\x09\x3c\x03\x75\x2a\xad\x7a\xbf\xb0\x1c\x0f\xad\x59\x32\x31\xb3\x03\x4b\xc2\xab\xe3\x9a\xdd\xcf\x2b\xa4\x83\x96\xb8\xc5\x5e\xb8\xae\x40\x3c\xd7\x5d\xe5\x38\x8e\xc2\xc5\xba\x9e\x2a\xa7\x99\xa5\x5b\xcf\x65\x52\x08\xda\xc2\x21\x07\x32\x1c\xd7\x51\x72\x90\xa5\x88\xb5\x0f\x6f\xad\xa9\xbb\x7b\xf4\x85\x6e\x6e\x63\x1b\xba\xb8\xdf\x6d\x1f\x85\x4c\xd2\x65\x65\x2f\xc6\xe6\x04\xd2\x2e\x29\x59\xd8\x26\xf7\xeb\xf1\xe3\xd5\xa2\xb7\x69\x62\xa7\xab\x13\xc2\x09\x06\x8a\xea\xf5\x7b\xfb\x14\xfd\x2e\x8b\x68\x48\x29\xd7\x87\x61\x45\x69\xf3\xbe\x59\x41\x39\xc8\x8d\x88\x27\x0e\x80\xa6\xb7\x90\xd5\xa9\x46\xba\x0b\x6d\x72\xd0\x83\x61\x9a\x93\xe8\x7a\x2d\xa2\x76\x84\x4c\xf7\x15\xc8\xa6\x49\xed\x7c\xf0\x60\xb7\x9f\x2e\x27\xd3\x4a\x5e\x4b\x75\x77\x5f\x55\x18\xc1\x07\x04\x90\x80\xd9\xdc\xb6\xaa\xeb\xd2\x59\x19\x43\x9d\xd6\x7d\x0e\x90\x24\xbe\x6e\x43\x8f\xe4\xb2\x6e\xf0\x5e\x67\x34\x2d\xdb\x99\x36\xbc\x58\x11\x8d\xa4\x80\x08\xa7\xef\x4e\xa0\xc2\x9c\x3b\x35\x74\xbd\x19\x99\x69\x3f\xa1\x8c\xbe\x13\x9e\x0d\xc5\x22\x78\x4a\x41\xe3\x9a\xda\xe7\xb3\x47\xbb\x69\xd6\x67\x35\x66\x91\x01\x56\xad\x64\x27\x1d\x69\x5f\x98\x8e\xc8\xe7\x16\x73\xe3\x5a\x9c\xab\x09\x91\x16\xe7\x36\xdd\x37\x33\x4a\x6c\xce\x89\x23\x8e\x59\xb4\x68\x7a\x9d\x50\xd4\xda\x11\x08\xb0\x51\x66\xfb\x3f\x27\xea\x18\xfb\x06\x8d\x37\xca\x9b\xd7\x40\x7d\x8e\x7a\xce\x19\xd5\xa2\x0d\xf1\x55\xfe\x77\x9f\x94\x32\xbd\x5e\x54\x68\x00\xba\x42\x5b\x5e\x6e\x91\xa0\xe8\x66\x9e\x25\x42\x38\x03\xe9\x51\xa4\x64\x4c\x3b\x4f\x38\xed\x65\x8c\xcc\x60\x90\xd9\x81\x29\x2c\x93\x0a\xcb\x06\xa3\x4f\x32\x1d\x1d\xbd\x04\x0e\xf4\x3f\xa2\x98\x53\xfe\xa8\x09\xf0\x9b\xaf\x8e\x92\x41\x15\xf0\x8e\x4c\x82\x51\x87\x43\x79\x41\x01\xfc\x2e\x34\x9c\x76\x92\x95\xea\x95\xd9\xc0\xa6\x3e\x3f\xdf\x56\x81\x7a\xc2\xc1\x07\x46\x23\x9b\x75\xb4\x7e\xfa\x46\xa0\x48\xfb\x9b\x1c\xcd\x95\xa7\x22\xc7\x1c\xb9\x2b\xc8\x7b\xde\x87\xbb\x22\xe5\xfa\x1a\xb1\xef\xd6\xa5\xf1\x6c\xb7\x30\x79\x41\x1c\x6e\x53\x9d\xaf\x7c\xd1\x51\xbf\x77\x1c\x81\xf3\xaf\xd5\x80\x32\x4e\x34\x3f\x0a\x8b\x32\xe3\x2a\xb3\x34\x91\xf9\xa4\xe4\x4d\x05\xea\xbc\x37\xf1\xac\x9b\xdf\x9f\x68\x0e\xb6\x6c\xc9\x4e\xfb\xd6\x26\xde\x98\x92\xba\xa1\x6f\xe6\xff\xc1\xe1\x28\x89\x1c\x9f\xe3\x1e\x9a\xa4\x1f\x5b\xf4\xc1\xe1\x09\xb7\xcf\x78\x08\xd3\xf6\xd5\x26\xc5\x6d\xd7\xc6\x76\xc9\xa3\x13\x71\x02\xfe\x89\x6e\xb2\xf8\x93\x60\xb7\xac\xa3\x3d\x9d\x63\x07\x36\x11\x2e\x22\xfd\x02\x7a\x30\xd4\xa0\xb6\x21\x9c\x90\xe4\xaa\xaf\xf9\x5f\x98\x38\x3a\xc4\x6f\xfd\xe5\x19\xd5\x70\x29\xee\x94\x83\x61\x7c\xe5\x8b\xa2\x62\xa5\x58\x76\xee\xd3\x3a\xdd\xbc\xda\x86\xf8\x2c\xb2\xb4\xec\xc5\x16\x6a\x5a\x2e\xf3\xe0\x2a\x34\x2c\x3d\xc9\x82\xc0\x8d\xfd\x74\xfc\x78\xb7\x3a\x71\x57\x48\xb2\x4c\x64\xfd\x3a\x5e\xe2\x4f\xd5\x1a\xc7\xd1\x60\x64\x93\x62\x5a\xf1\xb3\x5c\x08\x94\x88\x0d\xe7\xa7\x19\xcf\x15\x78\x35\xc6\xa6\xd8\x7c\xb5\x81\x06\x59\x5a\x26\x7d\x51\x68\x71\xe5\xeb\x39\xa7\x6b\x7c\x4b\xa1\x5e\x8e\xbe\xf8\x5f\x75\x74\x4a\x28\xa8\xb5\x3c\xa9\xc2\xa9\x35\x59\xbe\x9b\xe6\x5e\x0e\x69\x95\x57\xbb\xae\x44\x03\x3e\x0e\xea\xca\x8d\xd5\xf7\xf1\x8d\x46\x72\x9c\x09\x3c\xe1\xed\x6f\x4f\x14\x33\xce\x39\x15\x5f\x3e\xf7\xc2\xfc\xb4\x62\xb4\xe9\x50\x94\x86\x2f\xbb\xa8\x7e\xb2\x06\xf7\x6b\x23\x2e\x4a\x17\x16\xa2\xca\x31\x23\x1a\xaa\xed\x2a\xef\x02\xc2\x2f\xb8\xdc\xbb\x1d\x93\x4f\x3e\x32\x59\x61\xf3\xa2\xa3\x2b\x2a\xc8\x9a\x4b\x79\xa5\x25\x8a\xa6\x2c\x3e\xbb\x89\x9a\x86\x5a\xb0\x96\x7e\x30\x8b\xcc\x84\x2b\x1d\x45\xb2\xf7\x13\x7a\x0c\xbe\x56\xcd\xbc\x4b\xd1\x52\xd4\x8f\x57\x3a\x5b\xc3\x0a\x71\x63\x1f\xe7\xa7\xe8\x1e\x9c\xfd\x39\x42\x3a\x60\x0c\x4e\x4f\x3c\xde\x65\x3b\xa2\x64\x90\x87\x9e\x20\xd4\x03\x60\x59\xd0\xfb\xa4\x2f\x7a\x73\x1f\x02\x66\xec\xbb\xdd\xd8\x46\x08\x69\xe0\x4f\x02\xee\x74\x97\xa2\x75\x7c\xd3\x47\x1c\xff\xc1\xd3\x9c\x9e\x51\x0a\x0e\xef\x00\xeb\x80\x82\xed\x2d\xda\xab\xcc\xc7\x02\x34\x0c\x7e\xfe\x3a\x4e\x33\x84\xe5\xd3\xb0\x9b\x30\x61\xec\xdc\xc2\x9f\xfd\x04\xcb\x0c\x9b\xfd\x16\x0e\x79\xce\xe5\xaa\x66\xaf\x07\x93\xce\xf1\xe3\xae\x4d\x8a\x26\xca\xd5\x97\xbf\xf0\x22\x1f\x43\x6f\x2a\x01\xef\xf7\x29\x0f\x80\x50\xf6\x21\x12\x90\xac\xb8\xcc\x34\x08\x52\xe2\x73\xf0\xb9\xa9\x7d\xab\x5b\x83\xe9\xe7\xe7\xaa\xad\xdb\x51\x9a\x56\x30\xe5\x7c\xdd\xf0\x0c\xaa\x13\x44\x66\xb4\xd6\x33\x54\xcd\x96\xb4\x0c\xb5\x2c\xac\x91\x49\x22\x13\x76\x3c\x71\x0c\x50\x85\x7c\xdd\x00\x26\x1d\x3a\x24\xb4\x12\x9c\x76\x46\xc6\xfc\xac\x1e\xbc\x0d\x25\x4b\xd7\x54\x11\x3c\x7e\xbc\x9b\xa4\x59\xa7\x9a\x6d\xe9\xe8\xa0\x25\x21\xf5\xba\x26\xc6\x72\x9e\x48\x2f\x3d\x1d\x15\xb6\xf2\xba\x6e\x70\x58\xd7\xbc\xfd\x71\x34\xea\x4d\x29\x6b\x72\x57\x31\xc5\x60\xf5\x02\x40\x75\x51\xb1\xa0\xe5\x86\x64\x31\x0b\xbb\x43\x29\xf8\x9e\x60\x33\x8f\xed\xfc\xbd\x89\x82\x41\x7d\x4f\x89\x01\x9c\xd0\x3d\xec\xff\xab\x3b\x58\x2b\xd7\x25\xcd\xb4\x7a\xcb\x16\x94\x8b\x54\x3b\x07\x65\x14\x17\xd3\xaa\xac\xc0\x0e\x0e\x4b\x51\x29\x0e\xea\xfb\xaa\xe5\xb3\x19\xc8\x54\x23\x15\xdb\xbc\x2c\xa2\x5c\xd3\x83\xbe\xa1\x32\x74\x6f\xd4\x48\x85\xb3\x5d\x2a\x0f\x00\x8c\x05\xde\x6e\xd7\x8c\x67\xc3\xfd\x60\x0b\x35\xd5\xdc\x1c\x9f\x51\x4c\x04\xcc\xdc\x77\x38\xb0\x84\x08\xaf\x21\xee\x3a\x7b\xb4\x1b\x96\x05\xaa\xeb\x52\xb8\x56\xe9\xde\x5b\xaa\x9d\x39\x4a\xf2\x22\x23\x36\x4c\xb8\x8b\xf0\x99\x98\x3f\xd0\xc9\xf4\xba\xa2\xe7\xb6\x46\x25\x17\xf2\x9c\x63\x6b\x5c\x7f\x0a\xcb\x01\xd3\x1b\x8a\x34\xb0\x0e\x80\xcd\x98\x91\xf7\x22\xc4\x52\x7d\xbd\x48\x29\x36\xfd\xc8\x23\x7f\x4e\x96\x5a\x7f\xd6\xcc\xbd\xf0\x62\xc7\xb7\xbc\x7f\x42\x8b\x90\xaf\x9b\x3b\xf9\x85\x23\xdd\x61\x1a\x47\x7d\x03\x1f\x5f\x6a\x7a\xf4\xd5\x52\xd4\x6b\x72\xf8\xcc\x75\x4d\xcf\x84\x8b\x84\x42\x16\x42\x8c\xea\x67\xf8\xba\x51\xb8\x3e\xfa\x42\x37\xcc\xca\x7c\xa8\x22\x95\x0b\x64\x91\x24\x68\x6c\x0b\xc0\x22\x96\x0b\xd6\xb0\x5a\x51\xb5\xdf\xba\xd1\xe7\xe6\xba\x26\x2c\xa6\x7d\x8b\xc7\x36\xf2\xe8\x60\x17\xde\x51\x44\x68\x2c\x7c\x0d\x26\xb4\xcb\x8a\x12\x6a\x39\x4d\xfb\xe1\xb0\x0c\x17\x19\x92\x2d\xa4\x51\x1d\x45\x26\xe5\xcb\xaa\xa6\x28\xa4\xc6\xeb\x10\xc0\xbe\x6e\xd6\x18\xe6\xa3\x2f\x74\x7b\x26\x24\xc5\xcf\x8e\x67\xe7\xe7\xf8\x4b\x02\xd2\x3d\x6e\x55\x0e\x46\xbb\xbc\xd0\x0f\x22\xd5\x5a\x86\x14\xa6\xef\x77\x26\x9e\x26\x86\x39\x06\x9c\xa8\x7e\xf5\xbd\x7c\xa3\x0d\xc6\x7a\xe0\x65\xc2\xa3\xa4\xa8\x5c\xe9\x84\x4c\x1d\xad\x5c\x6c\xbb\x8e\x22\xd1\xeb\xac\x7a\x53\x17\xdb\x25\x1b\x3f\xee\xcb\x41\xff\x06\xf9\x00\x04\xaa\xbb\x66\x7c\x3e\xe0\xbb\x78\x16\xe0\x6e\x38\xe3\xee\x48\xe9\x0f\x8b\x9a\xcd\xb5\x89\x57\x88\xb8\xa7\x8c\xe6\xd7\x03\x15\xf2\x9c\xa4\xa3\x51\xe2\xa6\xa7\xd4\xb3\xf7\xab\xe3\xa7\x34\xf1\x13\x7e\x9b\xbd\x19\xa8\xe4\x24\xeb\x5e\x63\x42\x6e\xd3\x21\x09\x7f\x95\x75\xda\xa5\xa9\x88\xd2\xa4\xfc\x3f\xf4\x63\x4c\xbb\x83\xa7\xe0\x1a\x54\xa0\x28\xb6\xc9\x0d\x40\x77\xc4\x5b\x81\xee\xcb\x25\xc7\xdc\xb5\xe9\xb9\xd3\xea\x7a\x5b\x72\x21\x4a\x16\x73\xd5\x73\xb2\xa6\x13\x5f\x6b\x41\x0b\xa7\xfd\x56\x35\x19\x91\x49\xa9\x1e\x4c\x82\x34\x9f\x54\x1e\x99\xca\xae\x99\x15\xb4\x4f\x73\x0a\x28\x50\xbc\x1f\x6b\x4a\xb0\xe2\xac\xcb\x82\x2d\xc4\xd6\xa5\x30\x44\x42\x56\x61\x9b\x2f\xaa\xfe\x85\x5e\x5a\x0c\x2d\x69\x1e\x68\x01\x49\xfa\x63\xe9\x3e\xf6\x06\xe9\x88\x7d\x79\xca\x77\x75\xf0\xc1\x84\x45\xb4\xa1\x30\x0f\xd3\x2d\xb5\xa7\x32\x89\xb2\x74\x85\x3b\xaf\xb1\xa2\xfe\x10\x9f\xe7\x9b\xc6\x60\x39\xc5\xe3\x34\xeb\x5b\xa6\xae\x76\x6c\x6c\xcf\x4b\x2d\xea\x44\x2d\x71\xb1\x68\x8b\x27\xe9\x0f\x91\x69\x61\xbd\x08\x64\xc5\xee\xd7\xb8\x5e\x69\x51\x31\xa9\xc0\x44\xb5\x5c\x3e\xc1\x0d\x7f\x4e\xff\xdd\x91\x46\x23\x41\x25\x2a\x60\xd5\x3a\x74\xeb\xe5\xd8\x01\xf6\xc2\xff\x6f\x95\xd1\x7b\x14\xa8\xc6\xeb\x75\x78\x74\x58\xac\xf7\x02\x15\x36\xef\x86\xa3\xca\xd2\x80\x94\x7d\xc7\x6f\xff\x3b\x85\xb6\x7c\xc7\x65\x09\xa2\x2c\x4d\x18\x2f\x82\x8f\x7c\x53\x75\x20\x7f\xb3\xd6\x0b\xbc\x12\x25\x83\x9d\x34\x1a\x92\x5b\xd5\x22\xbe\x60\x69\x77\x6c\x6c\x4e\x25\xe1\x0f\x09\xec\x2c\xcc\x6c\x1e\x86\xfc\x87\x0a\xbb\x32\xce\x57\xc2\x61\x4a\x7d\x35\x79\x01\xc7\x11\x89\xd8\xb3\x58\xff\x7c\xd3\x4a\x3e\x1c\x65\x82\x5f\x73\xfd\xb2\x3e\xe7\x7f\xd6\x41\x9d\xf2\x32\xab\x1c\x53\x61\x0e\x40\xf8\x07\xda\x20\xa9\xe0\xf9\xb6\xc4\xd3\xad\x58\xca\x63\x07\x66\x3b\xaa\x9b\xfc\x34\x56\x35\xdf\x38\x06\xf0\x38\x4d\x59\xbd\x43\x6c\xb9\xca\x27\xb6\x88\x84\x90\xac\x7e\x5a\x26\x45\xc7\x4b\xc9\xaf\xd5\xca\x99\x5b\x3f\x53\xb9\x31\x26\x4b\xcb\x5c\x92\x76\xa2\xf5\x50\x43\x67\xa9\xba\xb2\x89\x4d\xc8\x72\xc1\xac\x58\x0b\xa8\xb7\xc8\xd7\x6e\x01\x36\x1c\x9c\xed\x1e\x3a\x74\x44\x49\xf1\xbc\xab\xa4\x78\xde\x55\xd2\x09\x99\x61\x21\x53\xa6\xc3\x0d\x3c\x40\xe5\x32\xac\xac\xf0\xe4\x76\x1c\x87\xda\xe5\x46\xd6\xe9\xd9\x6e\x3e\x8a\x8a\xe1\x22\x35\x58\x92\xd5\x85\x39\xe0\x9e\x16\xbe\x51\x22\x95\x20\x73\x7c\xb2\x1a\x2e\xec\x1e\xa4\x77\x61\x86\x19\x4b\x8d\x83\x90\x15\x9f\x99\xec\x8f\xd6\x3f\x92\x2d\x1f\x20\x34\x73\xe0\x35\x27\x20\xc9\x82\xf0\xd8\x30\xdf\xd0\xba\x59\x98\x47\x64\x82\xae\xa1\xcf\x51\xf4\x94\x9d\x50\xc3\xff\x74\x92\x2c\x09\xaa\x7c\x4c\x17\x00\x47\x66\x1b\x28\x5c\xe0\x82\xdc\xd3\x6c\x0c\x77\x71\x72\xc3\xa5\xfc\xf7\x81\x26\x65\x32\xfd\xca\xb1\xfb\x34\xbc\xd3\x7e\xf5\x97\x61\x61\x92\x41\xcc\xa4\xe6\xc2\x33\x47\x03\x21\xcd\x4a\x5b\xcf\x9a\xe3\xc7\x59\xd5\xd1\x69\x97\x81\xea\x80\xaf\x03\x4d\x55\x9c\x14\x36\x09\x2d\x61\xc5\xb0\x3f\xae\x82\x89\x0f\xf9\x61\x66\x66\x76\xdd\x60\x0e\xb6\xf6\xb0\x6e\xb0\x5a\x36\xef\x28\x75\x75\x2e\x1c\xeb\xaf\x4e\x14\xb0\xfe\x55\x27\xa6\xb1\x3c\x34\xa3\x69\x8a\xac\xe1\x6d\x5f\xa4\x23\x15\xd8\xf7\x87\x9a\x29\x79\xa2\xb6\xe4\x09\x75\xee\x15\xc3\x8c\x36\xff\x0e\x5f\xe1\x58\xc7\xb8\xe3\x4b\xae\xa9\x2f\x41\xd7\xa2\xc4\x5e\x00\xb1\xab\xcc\x46\x99\x2c\x44\x05\x06\x9a\x11\x2f\x81\x6f\x6a\xf3\x3d\xd2\xa3\x28\x89\x46\xd1\x2b\x28\x15\x8a\x2b\xee\xe1\xcb\x57\x14\x28\x79\xc1\x66\x4e\xf0\x05\x91\xcf\x69\x45\x48\xff\x43\x2c\x68\x99\x75\x5f\xfa\x1b\xdb\x7e\x64\x8a\x2c\x0a\x23\xc3\x6e\x1a\xb7\x3d\x62\xd8\xa5\x07\x52\xd1\x32\x24\xfd\x34\x13\xb5\x4d\x27\x2f\x3a\xe7\x25\x45\xfd\xb3\xc7\x51\x61\xb8\xca\x81\x11\x3f\xa1\x62\x9d\x13\x6d\xdc\x81\x89\x49\x47\x51\x47\x9b\x53\x15\x29\xd4\x14\x16\x56\xf2\xc2\x8e\x9e\xc0\xd1\x01\x9f\xea\xba\x42\xd0\xfc\x81\xd6\x8b\x01\x17\xa9\xe3\x5f\x38\x7c\x40\xf1\xc0\x7b\x5d\x44\x64\xbb\x9c\xfc\xfd\xec\x51\x3e\x09\x37\xb0\xfb\x5d\xaf\x81\x4b\x83\x3d\x3d\xa3\x88\x79\xef\x4d\x7c\xca\x87\xf9\xec\x80\xd0\x68\x66\x37\xa8\xee\x11\x86\xbe\x7d\x18\x0f\x73\x4e\xe3\x82\x9b\xc0\x4f\xc2\x05\xa6\x19\x83\x57\x1c\xd9\x57\xb5\xf8\x10\xa8\xde\xc2\x0c\xc3\x1c\x74\x66\x5a\xba\xe6\x86\x65\xe5\x92\x77\xbc\x01\xba\xa2\x35\xee\xaf\x04\x8a\x47\xbd\xf2\x89\xa8\xaf\x93\x7e\x40\x4a\x19\xba\xae\xd1\xd2\xe6\x45\xc1\x7f\x6c\xb3\x51\xaa\x1c\x01\x2e\x9e\xf3\x4d\x2b\x03\x90\xed\x47\x69\xc9\xa7\xaf\x23\xa9\x3f\x74\x48\xae\x83\xba\x2b\xb5\xb2\x4b\xf9\x5c\xa7\x31\x68\xd8\x7e\x3f\xc2\x03\x62\x63\x32\x5e\x17\xa6\xbd\x20\x43\xbd\x79\x95\xbe\xd6\x39\x11\x4e\x06\xf7\x91\xaa\xb8\x9b\xfe\x57\x4d\xc8\xf1\xfa\x7c\x4d\x06\x06\xd9\x2a\xee\xb2\x13\x61\xda\xb6\xc9\x5d\xce\xaa\x88\x9d\x59\xc5\x78\x15\x60\x72\x64\x49\x68\x1c\x59\x1a\xdb\x8c\x94\x42\x9c\xdf\xe6\x35\x13\x02\x9f\xd8\x47\x60\x20\x1c\x3d\xce\xa5\x8e\xa8\xa5\x60\x4a\xa5\x35\x00\xb7\x42\xc0\x8f\xe6\x4e\xa4\x4b\x1f\xd4\xe9\x45\xb3\x68\x21\x92\x24\x2c\xa6\xf4\x7c\xa0\x52\x14\xe7\x9b\x64\x5f\xb3\xdd\xd8\xf4\x6c\xcc\x9f\x91\x34\x78\xc7\x93\xae\xb4\xa9\xad\xc4\x16\xc2\x40\x4e\x9a\xbf\x1a\x13\xac\xf1\x47\x5a\x2f\xf4\x66\x9b\x35\x28\x86\x76\xa1\x50\xe2\x13\xe7\x27\x8a\x92\x04\x89\x0d\xee\x55\x75\x03\x82\xda\x0b\x17\xe7\x1c\x62\xb3\xfa\xd1\x1a\xef\x10\xb2\xa9\x8f\xda\x30\x47\x83\xcc\x78\xd8\x3c\x2b\x72\x07\x1e\x24\xfa\x3b\xad\xa9\x2a\xbb\xb0\x60\xc3\x82\x53\x55\x48\xe2\x6e\x63\x40\x14\xdf\xcd\xf8\x39\x07\x75\x13\xa9\x45\x03\xc7\x7b\x8d\xe6\x96\xaf\xdd\x71\x95\x17\x76\x0c\xa1\x0b\x98\xae\x07\x2a\xa2\xdd\x0e\x4a\x07\xd1\xc2\xd4\xb3\x88\xf5\x89\x90\xf5\x14\x05\x01\x40\x05\x3d\x5e\xad\x85\xcd\xeb\x5e\xab\xde\xee\x9b\xf1\x05\xf9\xd8\x2c\xaf\xd8\x2c\x7f\x8c\xde\x1a\x66\x6c\x07\x1a\x04\xa5\x96\xdb\x79\xe6\x19\x4d\x38\x28\x55\x30\x00\x8f\x58\xe3\x2e\xf0\xa2\xa0\xc8\xbf\x23\x8a\x7a\x0b\x83\xce\x5f\x3b\x43\x5e\x8f\x10\x33\xfa\x9c\xc7\xf2\x30\x8d\x29\x65\xe9\x09\x7d\xe9\xbd\x44\x3c\xbd\xe3\x64\x38\xa9\x23\x87\x9d\x88\xf7\xe0\x6a\x89\xa8\x7a\xb3\x9d\x07\x89\x88\xbc\x30\x85\x9d\x52\xd8\x74\xac\x5c\xb8\x1b\xf7\x54\x63\xc5\xa9\x36\x71\x9a\x70\x68\x32\xca\xaf\x74\xfc\x43\x5c\x0c\x3c\x9e\xe9\xe2\x64\x2b\x0c\x47\xc2\xc4\x45\x1b\xc7\xcb\x69\xca\xcb\x49\xea\x98\x35\x13\xf2\x53\x52\xbc\xb4\x45\x96\x86\x43\x3b\x8a\x42\x13\xe7\x5a\xac\x60\x52\x93\x99\x53\xf4\x3f\x99\x19\xd3\xf6\x80\x9b\xb1\x4a\xaf\x84\xf3\x88\xf9\x67\x30\x17\xbe\x53\x27\xed\xc5\xd1\x40\x9c\x25\xd1\x2d\xd2\xc0\x71\x8f\xd4\xb5\x71\x64\xa1\xe7\xc6\xe4\x62\xaa\xc0\xf1\xed\x36\xda\x9e\x38\xca\xdd\xbe\x81\x03\x72\x5d\xa5\x61\xaf\xb7\x29\xf1\x84\xb1\x35\x99\xd0\x07\xe2\x54\xe5\xce\x34\xa6\x2f\xa4\xdf\x14\x1e\x02\x45\xf0\x69\x92\x7e\xd4\x27\xaf\x13\xa3\x02\xe4\x10\x5f\x4f\x3c\x9a\xa6\x32\x73\xa8\x0a\x71\x31\x0c\x31\xae\x54\xc6\x5a\x10\x0f\x43\x1b\x09\x61\x0e\x16\xef\x47\x81\x5f\xc8\x1f\xb9\xaf\xce\xc7\x51\x16\x15\x35\x10\x00\x47\x99\x58\x11\x37\x55\xdd\xe0\x13\x45\xaf\xdf\xb7\x79\x1a\x9b\xc2\xa2\x62\x86\x90\x7a\x0d\x3e\x09\xdf\xb4\x15\x36\x16\xd2\x3e\x39\xf1\xd5\xf7\x63\xcf\x63\x7b\xf1\xb5\x6e\x2e\x81\xfa\x33\xad\x0a\xd8\x5c\xe4\xf7\x70\x1e\xbc\x8b\x55\x81\xe3\xf2\xa4\x92\x8d\x0e\x87\x59\x94\x17\x51\x42\x8d\xac\x73\x9b\xa0\x19\xdf\xbc\xda\xac\xed\xbf\x70\xa4\x1b\x46\x45\x14\xa6\xd9\x58\x31\xb1\xce\x6b\x54\xf6\x7c\x8b\xde\xfd\x6c\x77\x68\x96\x98\xf0\x01\xc7\xfa\x0f\x54\xe7\x1b\x7a\xff\x11\xd0\x9f\xf8\xd4\x8c\xcb\x57\x4d\x98\xf6\xf2\x69\x1f\x04\xae\x51\xba\xc3\x65\x2e\x3d\x35\x70\x67\xa6\x86\xda\x56\xb4\x3a\xf1\xca\x67\xab\x08\x6a\xf3\xaa\x46\xac\xef\x5e\xf5\x47\xcc\x03\x4f\xaf\xb3\x97\x65\x89\x81\x7f\x9e\x66\x73\x2e\x19\x62\x5a\xa5\x02\x56\xa2\xdf\xa6\xa4\xdd\x07\xfb\x66\x54\xd3\xec\x15\x6a\xbe\x46\x50\x06\x45\x41\x3a\x0d\x7e\x66\x3f\x31\xa2\x6c\x76\x56\x95\x90\x21\xcc\x3b\x99\xc8\x7f\xfc\xf7\x67\x5c\x1e\xf4\x77\xf7\xaf\x7a\xc8\x68\xcf\x98\xbf\x4b\xe8\x36\x2c\xc7\xdb\xf8\x61\xc4\x49\xdb\xe8\x2d\x90\xf0\xd9\x4b\xe9\x52\xec\xe9\xef\x34\x36\x1e\xe5\x3b\x62\x47\x66\x06\x1b\xf8\x23\x45\xba\xf1\xa3\x36\xb6\xdb\x30\x4d\xfa\x69\x82\x48\x04\x1b\xed\x75\x15\xee\xbc\xae\xbc\x0b\x13\xc7\x76\x60\xfb\xf1\xca\x34\x0d\x92\x8e\x6f\x24\x99\x4d\x61\xac\x04\x3b\x3a\xb3\xfd\xa4\x83\x61\x9a\x24\x1f\xa7\x99\xd0\xc6\x22\xbb\xfe\x63\x84\xd2\x7c\x33\xd9\x42\x71\x50\x4c\xa9\x7c\xe9\x34\xa8\x37\x31\x06\x7b\xc8\x0f\xe2\x72\xae\x47\x2d\xd9\xd8\xf6\x32\x0f\xbb\xc0\xf3\x4c\x14\x5f\xf4\x44\x79\x6a\x4b\x51\x1e\x15\x5a\x5a\xf8\xe3\xc0\xe7\xa4\x3f\x6e\xe1\x15\x7b\xae\x3b\xb6\x26\x1c\x8a\x93\xd5\xd6\x8e\xd2\x46\xc5\x5d\x16\xd5\x39\x43\x23\xa7\xbb\xe2\x44\x1e\x4f\x97\x7a\x46\x51\xb8\x57\xb1\x93\x5c\x41\xaa\xa0\xd6\xe6\x06\xef\x83\x65\x6f\xb1\xc3\xfe\x3b\xae\x04\x22\xed\xfd\x48\x91\xc2\x3c\xbe\x85\xdd\xe9\xd0\x21\xaf\x20\xe0\xfa\x0e\x38\x2f\x29\x75\x33\x7f\x78\x3c\xd0\x1d\xcf\xa7\x14\x40\xba\x4c\x6c\x1e\xa6\x54\x3c\x81\x33\x21\x90\x13\x27\xdc\x52\x13\x0e\x3c\x7c\x40\xfe\xac\x8d\xf7\x92\xd5\x49\x6b\x40\xb3\xdb\x1a\x68\x76\xbb\x0d\x3c\x17\x9a\x25\x6b\x0a\x15\x96\x80\x74\x99\xaf\x6b\xf5\xb3\x5e\x5a\xa3\x2e\xc3\x16\x93\x87\xf3\x15\xc7\x67\x2c\x14\x4a\xb0\x70\xff\x94\x06\x4b\x64\x19\x14\x91\x76\x93\xbf\xf4\xd9\x6e\x3e\xb6\x24\xbb\x40\x3f\xa3\xfa\x45\x5c\xf3\x48\xe0\x0b\x88\xa3\xb4\x72\x46\xa3\x3c\x4d\x6a\x10\x2c\x4e\x9c\xf3\x4d\x4b\x3e\xf0\xb9\xee\x42\x9a\x2d\x9b\xac\x3f\xe5\x53\xc5\xa8\x1d\x63\xb2\x90\xa1\xc7\xfb\x9f\x6d\xeb\x9a\x26\x4c\x0e\x55\xc5\x1d\xf5\x62\x35\xe0\x1a\x5d\x89\x73\xf9\xbe\xab\xfd\x96\x49\x54\xc0\x3e\x30\xeb\x0b\xfd\x9e\x30\xc0\xb4\x70\xd4\xc5\xa6\x97\x66\x86\x39\x7d\x74\xf8\x47\x6b\x52\x42\xc1\x96\x48\x36\xab\x9c\xa4\x5c\xf7\x91\x76\x54\xb3\xc4\x49\x3d\x01\x0f\x54\x57\x75\x58\x0d\x66\x5e\xe0\x73\x08\xe8\x31\x0e\x12\x97\x55\xcf\x0b\x2f\xf5\x77\x14\x91\x00\x54\xc5\xb2\x1d\x34\x00\xe2\xa5\x78\xa4\xc9\x37\x26\xba\x6d\xcc\x6f\x9a\x4b\xf5\xc3\xb6\x05\x7d\x50\xd9\xb7\xcc\xac\x98\xb8\xa3\xe2\x1a\x9c\xec\x82\x61\xfa\xac\xb3\x55\x49\x0e\xd1\xc2\x63\xde\xe9\x54\x19\xb3\x3b\xba\x38\xf5\x89\xd2\x52\x0b\xd3\xd1\x28\x22\x51\xfb\xdd\x0a\x69\xc8\x80\x03\x0a\x69\xfe\xc1\x3e\x2e\x2e\x30\x3f\x81\x02\x5f\xed\xa4\x58\x52\xba\x4c\xe1\x1a\x4c\x48\x45\x18\xb1\x22\xb3\x71\x68\xc0\x42\x3a\x92\xc2\x25\x53\x28\xd7\xe8\x94\x35\x9d\x76\x0f\x35\x74\x69\xde\x5d\xd7\xed\xd3\xeb\x0a\xbb\x3f\xb0\x89\x75\x22\x67\x00\x6f\x9e\xd4\xd4\x4b\x57\x14\x88\xf5\x23\xb5\x75\xc6\x65\x16\x0e\x4d\xee\xa8\x13\x99\xdf\x3a\xf0\xcf\x73\x49\xa5\xb7\x13\x53\xe6\xd6\x20\x90\x56\x3c\xc4\x47\x36\xa1\xfb\x04\xc7\xe2\x8e\xa2\xe4\x0a\xd3\x51\xaf\xcc\x0b\x51\xb0\x90\x96\x14\x7a\x09\xe9\x55\x69\xd9\x57\xe1\xd0\x2c\x70\x67\x3e\x0c\xf5\x5b\x0a\x7d\xf1\x56\x23\x8e\x38\x7c\xe0\x70\x37\xcc\x6c\x3f\x2a\x96\xd3\xac\x18\xa2\x8a\x8e\xa7\x3f\xa9\x58\xbb\x4f\x2a\x6c\xbd\x49\x8a\x28\x8c\xc6\xc6\xd1\xe8\x4a\x82\xde\xa3\x7a\xa6\x67\x54\xe2\xe7\x7e\x23\xab\xfb\x2c\x55\xf8\xc0\x3e\x0b\xa3\xfa\x2f\xb1\x96\xf9\x46\x4d\xe3\xa0\x34\x19\x90\xf9\x28\x79\xbf\x83\x01\xe0\x9b\xc6\xa2\x3f\x4c\x85\x0a\x00\x1a\xa6\xfc\x39\x0b\x71\x6b\xc1\x92\xab\xc1\xd9\x36\xf3\xa4\x72\x7e\xb2\x30\x16\x75\x7f\xe1\x23\xf3\x76\xe8\x8c\xea\x4a\x1e\x0f\x53\x7e\x7c\x27\x00\xe4\x02\x91\x56\xfa\xff\xdc\x8c\xca\xcc\x44\x53\xaa\xe0\x14\xf8\x92\xe0\x5d\xaa\xd1\x01\x74\x7c\x5b\xe5\xb4\xa3\x64\xc9\xe6\x45\x9a\xed\x52\x1c\x04\xbf\x13\xf8\xee\x83\x2b\xaa\x09\x99\xe1\xed\xa2\x19\x56\x7d\x39\x4a\x0d\x77\xe9\x6c\x65\x16\x21\x2a\xb4\xd5\x70\x70\xc2\x97\x1e\xaf\x3c\xdd\x11\x79\x8e\x5f\xdd\xbf\x4a\x31\x34\xb2\xec\x9f\xa0\xf2\xca\x02\x98\x08\x70\x10\x1b\xdf\x45\xea\x12\xdb\xe4\x54\xa0\xfb\x1a\x6b\xfc\x1a\xeb\xf4\x7e\x4e\x06\x56\xd3\x36\x56\xcf\x26\xcd\x19\x0a\xfa\x7d\x87\x26\x0c\x3e\xc0\x29\xaa\xba\x33\x0b\x23\x8d\x1a\xcb\x66\x4f\x14\xc6\x77\x6a\x86\x5e\x1f\xbf\x7e\x07\x8b\x04\xf9\xf9\x29\x38\x1d\xa2\xdf\xd9\x71\x29\x87\xd7\xc8\xb7\x60\x91\xcd\x9a\x18\x67\x5e\x74\x88\x84\x01\x0b\xfb\x54\xe0\x06\xe6\x67\x4f\xb5\xe1\x0d\x73\xbb\x64\x33\xd4\xb5\xdd\xf9\xe2\x30\x2b\x97\x5b\xe8\x64\xe7\xba\x43\x9b\x4d\x01\xdf\xc6\x98\x03\xaa\x0d\x39\xd5\xdf\xca\xb3\x14\x25\x77\x45\x48\x18\xf5\x09\xbf\x80\x53\xf9\x0f\xe9\xf1\x91\x34\x7c\xa8\x65\xdb\x70\x78\x62\x8c\x1e\x47\x0e\x59\x11\xf8\x48\x91\xf8\x66\xd0\xf9\xca\x17\xf9\x0c\x7b\x63\xd2\x10\x68\x40\x8b\x20\x58\xc2\x11\x5f\xdc\xd1\x6d\x43\xa9\xa8\xcf\x39\x69\xbb\xd7\x27\x1e\xbc\xf2\x7a\xf0\xb4\x36\xd8\xe3\xd8\x80\xac\xa5\x7a\x60\x9c\x69\x37\x54\xe7\xf0\x0d\x55\x23\x1a\x57\xa6\x88\xba\x4b\x7c\x81\xe6\x42\xad\xbd\xc2\xcf\xd3\x62\x99\x15\xec\xb4\x20\x41\xf8\xdd\x89\x02\xd0\x7e\xb7\x85\xdf\x61\x9e\x84\x75\x01\x1a\x97\xac\x27\x0d\x09\x76\xf8\x8f\xe8\x15\xb0\x6b\xb8\xe9\x07\x86\xc1\x26\x20\x10\x7d\x4e\x52\x83\x81\x3f\x42\x9b\x7d\x85\xc7\x0e\x74\x97\x4d\xe4\x65\x00\x9d\xe3\xa9\x9c\xbe\x36\x1c\x53\x56\x26\x66\xd9\x80\x66\x98\x9b\xdd\x02\xaf\xce\x71\x5a\x81\xd3\x8f\x2b\xc2\xe0\x91\x49\x56\x3e\xa3\x54\xe6\xf7\x23\x1b\x89\x1f\xba\xe6\xd5\xe4\xa7\x3e\x87\xa0\xd5\xbd\x77\x35\x54\x40\x2e\x9e\xa4\x0d\x26\x7e\x49\xc7\x31\xbf\x4c\x23\x41\xe7\xa4\x1a\x7c\xe3\xdd\x58\xa9\xbf\x4e\xaf\x56\xc3\x89\x16\xac\xab\xd8\x78\x48\x4b\x74\x56\x3d\x84\xfc\x0e\xcd\x37\x5c\xa9\xff\x43\xa5\x2b\x06\x76\x3c\x34\x59\xbf\x98\x56\x91\xfb\x9a\x12\x42\xdc\xa8\xb9\x4c\x95\x15\x11\x0e\xbd\x16\xb2\x2c\x3b\x8e\x62\x3b\xce\x57\x28\xdb\x8d\x62\xfc\xbf\x9a\x28\x50\x28\x5c\x05\x6c\xe4\xfb\x4a\x80\x68\xdd\xf1\x04\x44\xc9\x42\x5c\xda\xa4\x88\x18\xb1\x01\xd7\x14\x38\x01\xbe\x76\xfd\xdc\xbd\xd8\x84\x8b\x23\x92\xdb\x39\x76\x80\x99\xa5\x10\xe4\xf2\x75\x0b\xbd\xf0\x9c\x68\x15\xa5\x49\x4d\xcd\x5c\x61\x89\xaf\xa8\xda\xd9\x20\x33\x45\x19\x15\x69\x29\x4a\xf3\x6d\x31\x9e\x5f\xa7\xc5\x72\x94\x08\xda\x1c\x86\x90\x7b\x4a\xf9\xa6\x4d\x81\x76\x39\x1d\x99\x24\x7a\xc5\x2d\x56\x91\x10\xf0\x60\xb5\x75\x07\xc2\xf8\x6a\x39\xea\xa5\x39\xc5\x59\xc8\x12\x83\xc3\x86\x5b\x2e\x27\xaa\xc6\xce\x21\x17\xdc\xb7\x5d\x33\xbe\x16\x3f\x4e\xc7\x70\x73\x31\x46\x6f\x4f\x94\xbe\xf8\x45\x6d\xc4\x00\x77\x86\x03\x01\x85\x25\x66\xc1\x50\xbd\xfe\x36\x1f\x73\x49\x91\xd3\xb6\xea\x71\xde\x6b\x13\x8a\xa2\x0c\x70\x9e\x8e\x2c\x59\x00\x7c\x21\x51\xd9\x6f\xde\xa6\x83\x48\xba\x61\xf4\xc1\x98\x44\x76\xb7\xaf\x3e\xb2\xae\x8d\xe0\xd4\x7c\x86\x76\x83\xbe\x40\xea\xbe\x8a\xc5\xf3\x22\x5c\x49\xbe\x21\x78\x34\xf2\x04\x68\x27\xc7\x76\xbc\xae\x53\x0d\x51\x66\x13\xa0\xab\x9c\xb4\x73\x35\xb2\xe2\x85\x78\x98\x5d\xf2\x79\xb2\xa8\xc8\x47\x9c\xd2\x22\x0b\x4d\xea\x9d\xf9\xc3\xf3\xdd\x91\x11\x4e\x54\x27\xd2\x53\xd9\x0d\xf8\x1d\x1b\x38\xbe\x71\x9a\x9e\x69\x63\x6f\xb5\x84\xdd\xb7\x49\xc8\xf8\xcf\xff\x54\x6d\xb6\x6f\xc7\x91\x6f\x12\xc4\x52\x7d\x5f\xa9\x6c\xbe\x3f\x51\x7f\x99\xe6\x91\xb4\x24\xc2\x8c\xdc\x55\xba\x93\x77\x26\xea\xb9\x7e\x57\xd5\x89\xf3\x72\x3c\x4e\x73\xee\x0a\xc1\x42\x79\x93\x8e\x2b\x60\x1c\xae\xa9\x7c\xd3\x85\xb6\x44\x6c\x62\xb3\xbe\xb4\xda\x4b\x66\x46\xc1\xd8\xb8\x09\x09\x86\xe3\xae\xea\xc9\x1c\xa6\x71\xdf\x66\xf9\x1e\x1a\x3b\x51\xb9\xad\x26\x9f\x53\xa0\xd0\x44\x01\xda\x88\x57\x02\xb2\x90\xeb\x5a\x8e\x9d\xe9\x57\x5d\x0a\xd5\xf7\x0d\xd1\xbb\xf3\xbf\x4f\x3c\x07\xc6\x9b\x58\x79\x9c\x73\x0b\xbc\x06\xcd\xc9\x56\x1a\x73\xd3\x5f\x32\x49\x61\x06\xb6\x53\xf7\x0c\x1c\x1a\xb4\x29\x92\x5f\x2d\x11\xe0\x8f\x24\x5a\x56\x67\xe4\x4b\x2e\xdf\xa0\x20\x17\x45\x16\x2d\xca\xb9\xce\x24\x2f\xf4\xf4\x42\xf8\x52\x6b\xae\x5b\xc9\x09\x9a\x21\xb2\x5e\x4a\xfc\xea\x1f\x62\x1d\x2a\xc2\x26\x45\xd3\xe0\xa8\xa9\xaf\xaa\x76\x0c\x93\x65\x26\x19\x60\x1b\x33\x04\x0d\x09\x53\x97\x85\xf7\x02\x02\x6b\x2a\x3f\x9b\x9a\x64\x97\x22\xc0\x43\xa7\x33\x6c\xd9\xae\x55\x65\x2a\xdf\x26\x27\x1b\x85\xdc\xa9\x19\x9d\x98\x45\xf4\x8c\x3c\xc0\xee\x99\xce\xc1\x83\xbc\x04\x9a\x39\x8e\x63\x07\x58\xad\xc6\x13\x04\xa0\xa4\x23\x4c\x05\x3e\x81\x35\x2c\x7b\x36\xe3\xec\xa2\x10\xc6\x56\x2b\x0a\x13\x0c\x19\x66\xe9\xd9\xf2\xb6\x34\x5d\x4e\x76\xc1\x87\x64\x84\x8f\x6a\x7a\x47\x2b\x83\x93\x13\xaf\x9c\x79\x71\xb6\xc8\xb9\x84\x0b\xf9\x1f\xeb\xf2\xc6\x9e\x66\xea\x46\x6d\xea\xfa\x51\xff\x89\xea\x4d\x85\xe5\x52\x35\xfe\x22\x89\x47\xab\xf5\xe8\x93\xab\xb4\xf2\x11\x05\xfd\x4b\xf2\x10\x80\x8f\xf8\xc1\x44\x25\x28\xef\x31\x1c\x0f\x01\xef\xe3\x44\x3e\x8a\xca\x04\x68\x58\x10\xa4\x21\xdd\x82\x9d\xdc\x81\x6b\x8f\x1d\x05\x43\x8d\xad\x76\x0b\x8b\x08\x21\x4f\x67\x75\xaf\xab\xca\xac\xf4\x29\x38\xdb\xbc\xca\xdc\xcb\x1a\xd7\x61\xc3\x32\x03\x43\x3e\xf6\xd8\xd5\xc0\x97\x32\xae\xd6\x81\xee\x09\x8b\xd3\x70\x4b\xba\xae\x16\xfe\x73\x9a\x49\x2c\x96\x1f\xd3\xee\xe7\xeb\x36\x5a\xcc\x32\x19\x5b\x13\x22\x5e\x64\x66\x57\x8d\xdf\x7a\x53\xd7\x49\xd2\x64\x21\xca\x46\xb6\xbf\x53\xa1\x75\x34\x27\xec\x14\x22\x6b\xa4\x4f\xbe\xa3\xc8\xa9\xaf\xd0\x2a\xe1\x7f\xd7\x04\xf7\x53\xaa\xf9\x3c\x4a\x16\xb2\x28\x19\xe0\x51\x1c\x71\x9f\x03\x97\x5f\x72\xf0\xc0\x9e\xb5\x0b\xd3\xbe\xdb\xf8\xb4\xca\x19\xed\x86\x1f\xa9\xe1\x94\xb0\xda\x1b\x8d\x14\x9c\x67\x70\xa1\x06\x3e\xda\x09\x88\xbd\x50\x26\xe6\xeb\xc6\x98\x51\x13\x29\x35\xc1\xc2\x0e\xb9\x42\xe2\x9c\x97\x8a\xf9\xac\x6a\xe2\xb2\xa6\x80\xdb\x8c\x63\x60\x7a\xb5\x9a\xfc\xeb\xba\x70\x7b\x3b\xd0\x04\x36\xd1\x60\x28\x91\x03\x3e\xb1\xae\x81\x2a\xeb\xea\x6f\xfb\xb6\xb0\x21\x30\x8f\x02\x12\xae\x7e\x47\x30\xc2\x5b\xe5\xd4\x7f\xb1\x5b\xe6\x9c\x7c\x41\x22\xe4\x12\x59\x70\xbe\x76\xa7\x63\xe5\xa7\x2e\xe5\x8b\x2b\x8a\xff\xec\x5f\xe1\x09\xf8\x46\x25\x40\x46\x69\xda\x5f\xd9\xa9\x28\xe5\x36\x27\x35\x40\x67\xf5\x38\x38\xc1\x9f\x9e\xf1\xc9\xb4\xed\x10\x5b\x40\x1d\x0b\x2a\x89\x08\x8b\xfe\x85\xca\x30\xd1\x09\x4a\x02\x1e\xd3\xb0\x23\x28\x2a\x9d\x53\xaf\x08\xd6\x7b\xbe\x46\x5c\xca\x7f\xa4\x9a\x63\x52\xce\x7c\x2b\x31\x95\x23\xce\x5f\xda\xeb\x00\x64\x63\x83\x4a\xe9\x9f\x27\x86\x9a\x3d\x2a\x8a\xd1\x3c\x4f\x40\x37\x32\xf2\x89\x6f\x74\x59\x72\x1c\xdb\xa4\x58\x99\x52\x3d\x43\x37\x26\x4a\x79\x73\xdb\x4c\xe7\xc5\x79\xd7\xc5\xe9\xb3\x97\x69\x16\x0d\x22\x92\xb5\x24\xb6\x01\xd5\x61\x78\xd8\x29\xef\xf9\xb2\x17\x57\xe5\x44\x9e\x6f\x6b\x80\x59\x05\x71\xa3\x34\xb1\xdc\x51\x88\x19\x7a\x8d\xed\x1d\xdf\xa9\xf8\x75\xa5\xcc\x40\x34\x8a\x24\xc9\x29\xdd\x0f\xe3\x2b\xea\xe0\x8b\xed\xef\xf2\xc0\x80\xeb\x38\x2e\xf1\x32\x67\x34\x7b\x34\x23\x51\xe0\x03\x5e\x51\xa0\x83\x3b\x81\xcf\x9a\xeb\x2d\x7b\xd1\xf9\xf6\x26\x2e\x86\xd6\xf0\x60\xe3\xac\xe1\xfc\x32\xdf\xb4\xe8\xa4\x3d\xd7\x1d\xdb\x24\x8c\x58\x83\x10\x48\x3e\x96\xba\xc3\xa8\x5f\x51\xfe\xc6\x4d\xa5\xa6\x34\xb4\x26\x43\xb6\x58\x76\x9c\xee\xab\x54\xdd\x71\xb7\x15\x47\x38\xc7\x96\xea\xb4\x12\xf8\xc1\x0d\x7d\x8c\xc1\x58\xca\xb6\xde\xea\x1a\xcd\x1e\xed\x52\xcb\x88\x92\x6a\x01\x6e\x07\xdf\xc1\xd7\x8d\x24\x0f\x95\xa5\xd3\xbc\x60\x7b\xa4\x0b\xdf\xe2\xa9\xb5\xf5\x18\x66\x76\xe0\xf5\x99\x84\x59\x55\x4d\x5e\xb3\x40\x77\xe8\x50\x37\x8b\xc2\xd4\xf6\xa7\xb6\x34\x4d\x3b\x59\x79\x3e\x00\xe0\x9b\x3c\x50\xcb\x69\x58\x26\x05\x62\x38\x9e\x7f\xdd\xdd\xe1\x81\x9c\xe5\x38\xaf\x0c\xe6\x88\xac\x7b\x0d\xce\x2a\x39\xeb\x8e\x23\x2a\xb8\x4b\x4b\x05\x7e\xd9\x74\x43\xc3\x78\xf6\x68\xb7\x4c\xc2\x74\xc9\x66\xc2\xad\x8b\x53\xe4\x8c\x6a\x57\x3a\xa3\x00\xd1\x83\x38\xed\x99\x78\x5a\xa5\x0c\xef\xe1\x87\x11\x88\xa1\x8f\x18\x2e\x0f\x68\xdb\x44\x3c\x79\xeb\xca\x3b\x7c\xa0\x9b\x49\xe5\xb3\x1a\x59\x60\x91\x38\x33\xc9\x37\x93\x9f\xf2\xe5\x62\xc9\x57\x4b\x49\x0c\xbf\x81\x83\x8f\xaf\xdb\xd0\x61\xe1\xd0\x86\x8b\xd3\x5a\x00\x41\x29\x56\xc3\x0f\x14\x61\x84\x6a\xf9\xf2\xbf\x37\xdd\xea\x17\x8e\x74\xa3\xd1\x38\x8b\x46\x51\x3e\xa5\xe8\xd5\x61\x5a\xa5\xf9\xc5\x63\x1d\x4e\x7c\x2a\xd6\x67\x9c\xa5\xf9\xd8\x86\x40\xac\x71\x4c\xa1\x38\x40\xb9\x2e\x08\x2f\xeb\xae\xb2\xf3\x36\xc9\xd2\x38\x1e\xd5\x35\x8d\x4e\x4c\x54\x22\xf7\x84\xa2\x63\xcc\xec\x42\x1a\x96\xbe\xac\x21\x86\x5c\x5b\x78\x31\x4e\xbd\x2c\x2a\x8a\x98\x09\x57\x11\xd6\xfe\x6b\x45\x8c\x72\x8e\x5e\x51\x1a\x1e\xda\x70\x6d\x4b\xb6\xb0\x19\x2b\x5e\xfd\x7f\x65\x7c\x6a\x29\xa2\x16\x65\x3e\xea\x2d\x77\x6a\x54\x58\xcd\x67\x54\x35\xa6\x96\xc0\xb7\x05\xba\x11\x05\xa5\xb4\x16\xa8\x44\xe9\xda\xe4\x71\x07\xc3\x59\x99\x56\xf2\xbb\x81\x72\x01\xd1\x2a\xce\xd7\xf8\xb4\x3c\x9c\xf2\x1f\x4c\xdc\x33\xc2\x6e\x21\x41\x07\x4d\x13\xdf\xb8\xa1\x74\x3e\x92\xf2\x8b\xb4\xbf\xe4\x3b\x44\x16\x16\xa8\x73\x09\xa5\x24\xa4\x45\x5f\x57\x2c\xeb\xdb\x28\xaf\x00\x47\xe2\x81\xca\x0e\x7d\xd5\x8c\x98\x0c\x49\xa1\xfa\x84\x89\xe0\x8a\x03\x46\x2c\xa7\x69\xbf\x97\x45\xfd\x81\x9d\x22\x77\x1e\xcb\x1a\x44\x2e\xd8\x5b\x77\xb4\x2a\xe5\xb6\x19\x2d\xde\x1d\x9b\x08\xfe\x8f\xe7\x37\xf4\xbe\xf1\x99\x89\x6f\xde\x1b\x9b\x0c\x9b\x32\x29\xf2\x69\xdf\xb6\xc6\xf4\x6d\x52\xdd\x50\xcd\x19\x20\xec\x91\x8e\xc2\x9f\x56\xc0\x0c\x1b\x46\x0b\x51\x48\x1d\xcf\x39\x8c\x0b\xc8\x38\x2e\xab\x6a\xf4\x3b\x8a\xa4\x83\x53\x9f\xfc\x1f\x93\xcf\xd5\x1a\x0a\xe3\xd8\x86\x45\x69\x62\xc0\x80\xf0\xbe\xeb\x8a\xa6\xf2\x4e\x0d\x2b\xa1\x42\xce\xaf\xab\x49\x0f\x99\x2d\xa8\x7a\x16\x64\x1e\x4f\x4e\x5c\xb6\xf1\x57\xf7\x91\x9b\x86\xb7\xda\xbb\xfa\x54\xa3\x34\x36\x0e\x69\xc5\x31\x63\xa0\x6a\x30\x47\xed\xd7\x15\x4b\x3d\x05\xf8\x19\x97\xbf\x1c\xa7\x05\xb2\x97\x31\xfc\x61\xfc\xf1\x55\xc5\xca\x00\xce\x0d\x84\x7f\x9b\x35\xe4\x73\x5c\xf6\xa6\x54\xfe\xfc\xdc\x44\xb7\x4d\x21\x00\x40\x87\xca\x6d\x15\x4e\xc5\x69\x9e\xdb\xfc\x33\xb4\x35\xf1\x03\x8f\xcd\x28\x8d\x40\x24\x33\x30\x6b\xac\x2d\x81\x23\x96\x89\xd8\x70\x0c\x3c\x9c\x78\x85\xc0\x3d\xab\xaa\xe9\x64\x8d\xaa\x35\xc8\x0e\x9e\x98\xf8\x90\x9c\x29\x0b\xb0\x02\xd7\xd5\x36\x81\xe4\x05\x7f\x20\x50\x74\x4d\x8f\x81\x3c\x13\xc5\x9e\x7a\x62\xa2\x97\x96\xb5\x2c\xd5\x44\x65\xa9\x9c\xc7\x1e\x25\xfd\x6a\x8d\x71\xfa\x0c\xc3\xbe\x87\x26\x12\x38\x53\x24\xc1\x25\x8f\xd9\x6c\xb2\x7e\xa9\x1b\x8d\x46\x51\x22\x26\x18\x5e\x19\x9f\xd0\x7c\x53\x17\x17\x62\x01\x55\xe4\xfe\x71\x54\xf0\x75\x1b\x34\xb2\x67\xed\xd8\xa2\xe0\x09\xdf\xf8\x84\xf2\xbc\x3e\x81\xd7\x2a\xdc\x45\xfb\x5c\xe2\x2d\x8e\xe8\xec\x46\x11\x17\x90\x34\xb0\xff\xc2\x81\xe6\xf4\xa0\x68\x76\xf8\xa1\x28\x6c\xd2\x67\x62\x5b\x24\xb3\x1e\xc1\xe9\xa3\xec\xe7\x97\xb0\xbe\x6b\xfb\x19\x73\xf0\xc6\x44\xe9\x10\xeb\xbc\xf5\x8a\x35\x59\xfe\xa4\x2a\xc4\xfc\x11\x2d\x08\x64\x8a\xa6\x50\xc1\x92\x5e\x4f\x9a\x78\x78\x42\x97\xb1\xff\x9c\x1a\xba\x0b\x84\xd6\x00\xff\x02\x00\xe3\x6a\xd0\x99\x3d\xba\x79\x31\xe8\xfc\xd2\x2f\x3b\xee\xa1\x6a\x91\x28\x5a\xac\x97\x34\xb9\xc2\x11\x7e\xa7\x1b\x35\x79\xcb\x35\xaa\xcf\x39\xc7\xda\xc5\xa1\x9f\xc0\x46\x49\xd6\x54\xf5\xf4\xad\xa9\xa8\xbe\x4c\x42\x9b\x15\x26\x4a\xa6\x08\x95\x89\x65\x72\x13\xa8\x4c\x97\x56\x72\xf5\xc6\xed\x0d\x4f\xab\x5a\x3f\x99\xcd\x6d\xb6\x54\x97\xed\x44\x63\x38\x5f\xd7\x90\x5b\x9f\xcf\x3f\xbf\xcf\x17\x2d\x2e\x22\x03\xc4\x99\x6a\xfa\x29\x29\xeb\xd3\x10\x8a\x66\x82\x47\xfe\x9d\x9f\x28\xa0\xc2\xdd\x89\xaf\x6e\x6f\xc3\xf6\x46\xdc\x76\x1f\xc7\x1e\xfc\x99\x5f\x87\xff\x05\xbf\xe4\x63\xdd\xf9\xc2\x38\x47\xc4\x28\x37\x03\x0f\x66\x7c\xe9\x23\x1e\x64\xa1\x0f\xa0\x79\x73\x6a\x0e\xcf\xcf\x39\xe3\xda\x44\x10\xc4\xd6\x48\x13\xa6\x44\xe3\x34\xb8\x12\xa6\x37\x93\xa2\x00\x6a\xdb\x5c\xaa\x8b\x30\x38\xd7\x31\x83\x7c\xa3\x60\x0e\x95\xb7\x65\xc3\xb2\x48\xb3\x7c\x47\x35\xf9\x28\x6d\x4e\x91\x85\x61\xde\x61\xac\x46\x91\x94\x53\xbd\x14\x41\x2d\x7d\xba\xd5\xb7\x7c\x96\x40\x78\x4c\xd0\x21\xa2\xf3\xde\xa7\x3b\xa5\x12\x96\x07\xcc\x88\x08\xaa\xb8\x17\x57\x1d\x63\x7f\x8c\xc5\x26\x15\x87\x76\xff\xd5\x2e\xea\x1e\xcf\x13\xaa\xc7\xf3\x44\x9b\x6e\x4c\x94\x14\x99\xe9\x1b\xc0\xb2\xb0\xc9\x80\x63\x43\xeb\xc0\x49\x5d\xa0\x79\x43\x71\x0f\x84\x69\x92\x97\x71\x61\x04\x21\xa9\x84\x08\x1c\x0a\x9c\x67\x1a\x29\xbd\xd7\x6b\x84\x58\x4b\x96\xc8\x35\x66\xf9\x3f\xd1\xd9\x86\x73\x62\x9b\xd2\x30\xda\xb6\xaa\x98\x43\x6f\x12\xc5\x2d\x7f\x80\xbf\x1b\xc7\xf5\x43\xe5\xd7\x9f\x6c\x6b\x5e\xef\x45\x8c\x28\x41\xc2\xfd\x9a\x4a\xbe\x5f\x6b\x18\x57\xe2\x8a\x88\xd3\x64\x30\x5d\xad\x01\x94\xce\x4f\xd0\x7e\xc0\xca\x04\x6f\x04\xbc\xc0\x35\x32\x2c\xa2\x99\xee\x0f\x49\xf0\x40\x4d\x2b\xf6\x78\x34\x04\xc0\x47\x03\x50\x59\x6a\xfa\xb4\x18\x81\x75\xb8\xeb\x4c\xf5\x38\x4b\x47\xe3\x42\x54\x70\x90\x7e\x40\x06\x0d\xf9\xbe\x77\x34\xed\xc8\x9d\x40\xbc\x01\x93\xe7\x69\x18\x79\x2e\x18\x9c\xc9\x37\x94\x6e\xf7\x8d\x96\x8d\x65\xa2\x70\x18\x21\x87\x85\x8d\xfd\xdb\x13\x15\xb5\xfc\xb6\x6b\x1f\x59\xc8\xd2\xd1\x2e\x1f\x44\xc2\xaa\x82\xff\xeb\x2f\x6a\x39\xde\xc7\x57\xab\x99\x72\xe9\x62\xa7\x3a\x7e\x02\x67\x03\x86\x8e\xeb\xf0\x42\x29\xe2\x50\x69\x26\x4b\xe3\x28\x31\x53\x9a\x42\x0b\x31\x8f\x48\xe7\x2a\x56\xaa\x87\x8d\xaa\x17\x75\x4b\x55\xcb\xb2\xfa\x59\xa9\x05\xd1\x2f\xc1\xc9\x61\x03\x86\x65\xa4\xd9\xdb\xe5\xbc\xa7\x92\x85\xeb\x16\x77\xee\xf0\x95\x9a\xe1\x55\xd9\x9e\x4d\x7c\x3b\xdf\xa8\x5a\xc9\xb2\xb5\x8b\x96\xe4\xc1\xbc\xa2\xea\x3a\x08\x92\xa4\xd1\xd3\xf7\x81\x8e\x63\xaa\xdd\xa4\x40\xff\x23\xe1\xf6\xa1\xc2\x57\xdc\x22\x3e\x08\x41\x01\x7a\xf2\xe9\xbe\x71\xfa\x8d\xec\xba\xea\x66\x9d\xf5\x56\x76\x96\x7e\x15\x09\x8d\x9c\x98\xce\xbc\xe3\x2d\xaf\x11\x48\xfc\xe5\x4f\x63\x29\xb0\x89\x05\xa3\x57\xc7\xe3\xe6\x99\x7e\x85\x6f\x3e\x15\x6f\xbf\xac\xfa\xa0\x60\xb5\x99\x48\x9c\x6f\xda\x1c\x9d\xc4\x64\x59\xba\xdc\x51\x87\x2e\x42\x67\xe1\x93\x68\x69\xcf\xb1\x26\x2b\x86\x5f\x2b\xcd\xa2\x0c\x8d\xe3\x80\x73\xfb\xe7\x6c\x1b\xe9\xa7\x59\x5e\x04\xbe\xd5\xa3\x25\x29\x1c\x75\x7b\xfd\xd0\x21\xae\xfd\x6c\x28\x8c\x4e\x91\x01\x88\xac\x18\x52\x44\xe7\x7f\xc7\x4c\x5d\xd8\x93\x8c\x29\xe3\x9f\x15\xba\x7d\x1c\x25\x8b\x36\x2b\xd2\x64\xa7\xf7\x68\x6e\x6b\x32\x69\xe0\x61\xb8\x7b\x1b\x23\x26\xfd\x39\x74\x9a\x63\x3f\x4e\x83\x3c\x9b\x6f\x66\xbc\xc6\xe8\xd0\x14\x23\x49\xf4\xc1\xd1\x3b\xa7\xa9\x96\xce\xa9\x3c\x5d\xaf\x0c\x17\x31\xd6\x22\x51\xe6\x33\x3b\x77\x5a\x85\x8a\xc7\xae\xb3\x51\xc0\x70\xea\xe3\x2c\x07\x8c\x83\x65\x43\x01\x6c\xf2\xc2\x8e\xf3\xdd\xf4\x10\x78\xdf\x9b\x13\x2f\x4e\xfc\xc1\x44\x51\x92\xb1\x5f\xc1\x37\x08\x03\x10\x75\xbf\x41\xdb\x13\x7b\x1c\x61\x80\x30\xa1\x54\x31\x84\xe4\x23\x15\xcf\x42\x96\x0e\x84\x8d\x04\xc1\xd8\x29\x85\xac\x3b\xd5\xd6\xd4\x10\x25\x7d\xfb\xb2\xd4\x46\x59\x3a\x43\xcd\x45\x93\x8e\xcb\xed\x92\xac\x4c\x52\xc5\x80\x7b\xa6\x16\xbd\xa9\x14\x99\x09\x4d\x3f\x32\x53\x2a\xcb\x70\x59\xb7\xb7\x4a\x29\x52\x50\x83\xf2\x36\x26\x09\x87\x69\x36\x32\x30\xf3\xc2\x5b\x5d\x8d\x01\x5f\xbb\x00\x91\x10\xca\x49\xe1\xfb\x61\x5d\xd2\xcf\x41\x3d\x2f\x79\xdd\x1d\xd2\xa3\x75\xd0\x10\x18\x35\xa4\x64\xf9\x5a\x19\xb8\x41\x66\xf2\xb1\x14\x83\xa5\xf5\xcc\x03\x97\xb5\xbf\x3f\x8a\x92\x41\xda\x51\xbd\x04\x5c\xaa\xe1\x9b\x3a\xd3\xec\x72\xac\x78\x99\xe1\x8d\x08\xe3\xc4\x67\xfd\x39\x67\x47\xbd\x98\xab\x24\xba\x3f\x6d\xf3\x2a\xbb\x06\x08\x15\x3f\x9c\x78\xcc\xe5\x55\x05\xbb\xfd\x4b\x44\xb6\x44\xeb\x32\xda\xbf\xaa\x0a\xdc\xc3\x68\xbc\x62\x32\xb6\x51\x4e\xed\xdd\x13\xbe\x37\x78\x9f\x7e\xb1\xda\x02\x8c\xa2\x96\x7e\xba\xea\x77\xf0\xfb\x6f\x62\x29\xe3\xec\x39\xa5\xc5\x42\x44\xb0\xaf\xfa\x6e\x20\xa8\x81\x3a\xe4\x6b\x55\xb1\x30\x79\x1e\x0d\x12\x61\xfc\x9a\x73\x7a\x66\x1e\xb6\x75\x8d\x66\x1e\x35\xd5\xa6\xc6\xb9\xac\xc9\x74\xd0\xb7\x40\x16\xe3\x54\xbd\xa6\xd3\x41\xd7\x54\x23\x42\x1e\x46\x1d\x55\x49\x43\xd4\xcb\xd7\xab\x4a\xf8\x86\x9a\x72\xf2\xa9\x6a\xb7\x09\xf7\x14\x6d\x4f\x77\xf2\x3f\x2f\x44\xdd\x0f\x1a\xe6\xf6\xf0\x81\x6e\x34\x02\x9a\x43\x21\x37\x1f\x2a\x88\xec\x79\x0c\x1d\x5c\x8a\x6b\xaa\x76\xde\x33\xc9\xd7\x4a\x31\xed\x48\xc6\x7f\x0f\xaf\xc2\x37\x2a\xb5\x99\x97\xbd\x38\x1a\x45\x09\xf8\x27\x79\xb8\xee\x07\x0a\xc4\x7c\x45\x45\x9e\xe7\x5c\xed\xaa\x88\xfa\x26\xd6\x00\x95\xf7\x94\x12\x3f\xc4\x34\xe0\x94\x3f\x68\x88\x5f\x80\x03\x70\x64\x92\x3e\xe5\x5f\xe9\xc1\xe0\x43\x3c\x52\xc4\x69\x8f\xda\x0e\xae\xcc\x52\x72\xbd\x09\xcd\x72\x9c\x62\xeb\x6d\x7c\x19\x2b\xd6\x0c\x29\x66\x80\xdf\x00\x6e\x2a\x51\x68\xa2\xdf\x97\x68\x55\x83\x34\x93\x82\xb2\x13\x68\x15\x90\xe4\xde\x9d\xda\xee\xd1\x32\x4e\x14\x4a\x89\x96\x13\x9a\x88\x61\xe3\x39\x15\x00\x8f\xe3\x96\xca\xe5\x7e\x1b\x91\x36\xe3\x62\x02\x45\x0f\xf8\xfb\x81\xfa\x49\x49\x3b\x09\x67\x40\xa7\xd6\x1b\xe9\x03\xdc\x32\xcf\x77\x29\x29\x99\xb3\xa8\x4d\xc2\x3d\xe2\x38\x85\x95\x22\x02\x95\x6e\x3d\x57\x87\x48\xcc\x09\x59\xf3\x25\x56\x54\xe5\xcf\x07\xde\x15\x8b\xcb\xde\x8a\x49\x16\x4d\x9d\x41\xba\xfa\x7a\xcf\x20\xcd\x7f\x69\x4d\x3f\x5d\x58\x50\x74\xf3\x27\x15\xba\xf9\xa4\x22\xed\x8b\xcb\x5e\x16\x85\x26\x29\x98\xaa\x0d\x75\xb9\xdf\xa0\xe7\xe1\x6b\x5d\xda\x8c\x17\x32\xdb\x4f\x3b\x1e\x70\x80\x6c\x22\x5f\x2b\xda\x35\x53\xfc\x05\x72\x00\x10\x75\x9f\x20\xc6\x08\x87\xb0\x99\x9f\x3d\xca\x03\x79\xba\x7a\xac\xcd\x8b\x08\x97\x71\x06\x3d\xd4\x54\x9d\x8f\x91\x82\x0c\x06\xec\x94\x56\xbc\x7b\x48\xe9\x38\x87\x40\xf2\xc2\xc0\x81\x47\xd7\x5f\xd6\x63\xcf\x8d\x32\xe2\xdc\x61\x8c\x11\xf9\x9f\xd7\x54\x54\x97\xe8\xb8\x67\x89\x60\xcc\xa4\x2c\x0d\x95\xab\x40\x76\x80\xdb\x5d\x02\x7d\x12\x7e\x04\x1c\x3a\xfc\xf4\x8f\xe0\x82\xe3\x7f\x36\x68\xa8\x90\xa3\x7b\x0d\xf1\xa8\x38\x26\x7a\x35\xf5\x6d\xfe\xb9\x6a\xae\x10\xb1\x3f\xc6\xc7\xac\xc8\x17\xd1\xa0\xea\x4e\x7d\x0c\xfd\xa3\xc0\x53\x06\x9e\xa6\xfc\x90\xac\xc5\xca\x4d\x44\x35\xe4\x36\xe0\x36\x4e\x44\xb8\x1a\x1b\x0c\xc7\x1b\xc4\xe1\x8a\xa3\xe0\x11\x5e\x8d\x35\x78\x74\xab\xd6\xd4\xaa\xe2\x4c\x80\x06\xa4\xd3\x7c\x3a\x26\x79\xdc\xab\x13\xd5\x14\x72\x0b\xaf\x8f\xcc\xea\xae\x99\x8e\x43\x2b\xee\x02\xa6\x5f\xe0\x4a\x34\x33\xf0\x1b\x59\x6e\x53\xf8\xb7\xc8\x6a\x0b\x4c\x4b\xb5\x47\xc4\x29\x8b\x0c\x28\x46\x86\x8e\x92\x62\xdf\xaf\x4a\x91\x19\x2d\x70\xbb\xbb\x1a\x54\x95\x76\x17\x0b\xcd\xdd\xb4\x30\xc0\x78\x2d\x4c\x32\x8b\x17\x4a\x06\x5f\x49\x13\xdd\x0f\x54\x64\x05\xc0\x1c\x12\x2f\x97\x54\xba\xe4\xf9\x83\x7f\xde\xa6\xad\x27\x5c\x16\x74\x54\x66\x5c\x47\x74\xe0\xb1\xea\x0f\xa5\x85\xfb\xa9\x3a\xeb\xd4\xe1\xf9\xee\xa1\x43\xe4\xe1\xa3\x6a\xf9\x16\x89\xe5\x08\x0d\x64\x1d\xd3\xeb\x14\x37\x4e\xb8\x16\xb6\x71\x16\x09\x93\x28\x9e\xe4\xac\xa7\x5a\x7b\xf6\xe7\x80\xac\xc1\xce\x03\xb6\x96\x1b\x2f\x69\xb3\xe1\x9d\x9e\x40\x82\x1c\x7e\xf2\xe5\x89\x67\xcf\x6d\xb2\x9c\x1f\x3b\xd0\xcd\x8b\xb2\xef\xa5\xcc\x39\x3f\x4d\xdf\x26\xb9\x6a\x55\xbe\xb1\xa3\x9e\xcd\x72\xa2\x6e\x44\x68\x0b\x6d\x3c\xac\xc4\x77\x34\xc1\xcf\x1d\x00\x8c\xb0\x7c\xbe\x3e\x51\xa4\xe2\x3c\x4d\x6c\x3d\xe8\xe5\x70\x0e\xdd\x0a\xba\x2d\x6d\x93\xe9\x68\x54\x26\xae\x7a\x83\x6d\x07\x9f\x87\x61\x24\x48\x76\x68\x89\xa7\x6b\x81\x8a\xa9\xfe\x47\xad\x9a\x1a\x0d\x12\xdb\xdf\xa1\x68\x53\x61\xe2\x6b\xdc\x77\x4c\xa0\xac\x14\x0d\x7f\x5d\x97\x22\xf6\xaa\xb4\x0d\x75\x11\xc5\x3b\xf1\x50\xe2\xb9\xf8\xaa\xef\x0d\xb8\x37\x9c\x3b\x50\xa7\xec\xeb\x64\xf6\x25\xa7\xa0\x8a\x4d\x6b\x0d\xef\x40\x9c\xb1\xcc\x96\x3d\xf6\xc6\x90\xa6\xe7\x08\x81\x6f\x2a\x6f\xcc\x11\x17\xae\x4c\xeb\x76\x5f\xbc\x15\x86\x0c\x95\x3f\xce\xaf\x63\x23\xc1\x0a\x6e\x5b\x6d\xc1\x19\xc4\x36\x11\xed\x05\x07\x7b\xa9\x7e\x53\xa0\x2e\x4f\xaa\x16\x83\x6c\x90\xc6\x11\xbc\x53\xa9\xa5\xd2\xdf\x4a\x91\xd5\x9f\x56\x0b\x51\xe2\x84\x65\x59\x4e\x4a\x89\x0e\xdc\xc3\xc7\x58\x09\xbb\xe1\x06\xce\xcd\x75\x4d\x7f\x29\x72\xc4\x45\x32\x6c\xba\x34\xab\x80\x31\x26\x2c\xd2\xac\x56\x30\x55\x4d\x64\x94\xca\x95\x02\x78\x6c\x43\xa2\xa0\x2a\x56\x10\x9c\xe2\xec\x86\xee\x94\xa6\xb1\x95\xee\x29\x57\xdf\xb6\xc6\x97\x5a\x05\xb3\x50\xfd\x21\x12\xa2\x90\x2f\x92\x52\xc7\x3e\x15\x37\x94\x0b\x0b\x5c\xcb\x65\x07\x23\xf0\xcd\x85\x97\x54\xf7\x46\x96\xe6\x2b\x1d\xda\x4b\x8e\x48\xa8\xb2\x44\x7c\xa3\xb2\xa4\x59\x5a\x16\x76\xa7\x5a\xdb\x1f\xd3\xde\x42\xb4\xfa\xad\x89\x5f\x71\x8f\xcf\x28\x4c\xc5\x79\xdd\xfb\x8e\x03\x5f\x6e\x9a\x00\xef\x23\xdd\x9e\x09\x17\x17\x22\xc7\x04\x0c\x97\xf8\x9c\x2e\x03\x9d\xd3\x1c\xb2\x03\x29\x67\xc1\x6f\x78\x17\x6b\x91\x6f\x3e\x55\xce\x2d\x1c\x9a\x64\x20\x51\x34\xfc\xc4\x0f\x03\x95\xa6\xfa\x50\xf3\xb3\xd3\xc3\x54\x2f\x0a\xe4\xc1\x34\x0d\x38\x5f\xaf\xba\x4a\x56\x94\x67\xe5\xd8\xb5\x23\x22\xb5\x89\xe0\x01\x35\x33\xad\x0a\xb6\xa4\x39\x07\xed\xa8\x97\xf6\xd1\x5a\x01\xeb\xca\xc9\x3c\xbe\x69\x11\xcf\xec\x2e\x58\x56\x0a\x72\xe2\x31\xd5\x07\xc4\xde\x7c\x9a\x92\x5c\x1e\xbd\xbc\xb3\xf3\x65\xc1\xda\xff\x2a\xcd\x9d\x6c\xb4\xca\x84\x63\x11\x3e\x06\xd5\x2b\x84\x4f\xe8\x93\x95\x4e\x4f\x05\xc5\xba\xd0\x48\x8c\xcd\xcd\x75\xd3\xb1\x4d\x64\xde\xb0\xef\x6e\x69\xf1\xcd\x5b\x2a\xab\x53\x98\xb1\x9d\x56\xcd\xfb\x08\xfe\xf9\x9a\x7c\x1a\xac\xee\x0b\x8a\x35\xe8\x42\xf0\x53\x4d\x59\xc9\xf9\xc3\xf3\x3b\xab\x3f\xc7\x69\xcd\x59\x3f\xa9\xff\x54\xa7\x88\xb4\x0c\x56\xbe\x11\x4e\xc2\x6f\x4f\x7c\x07\xe4\x7f\xc4\x51\x81\xed\xf3\xbf\xb4\x19\x83\x38\x4d\x47\xee\xf0\xd2\xe1\xb4\xf0\xd6\xb4\xc8\xf1\x12\x78\x45\xb1\xad\x5f\x85\x21\x44\x3c\xf1\x43\x7a\xac\x66\xce\xed\xab\x76\x61\xc1\x66\x79\xad\xd5\xf6\x24\xfd\x92\x28\xd1\xfc\x95\x4f\x5f\xcd\x51\x36\xe6\xcf\xba\x36\xb5\x33\x9a\x38\xa3\xa9\xb6\x43\x3a\xf0\xd1\x60\x08\x0d\x49\xc4\xd2\x1b\xca\xd5\xe5\xe9\x16\xda\x97\x27\x75\x87\x4f\x8e\x3a\xc0\xe1\x79\xcf\xf8\x5f\xad\x19\x60\xe4\x4f\x28\x65\xfb\x47\xca\x82\x9b\xa4\x88\xe2\xd8\x0a\x98\x12\xbe\xcd\x55\xed\xe8\x5c\x6d\x5b\x54\x55\xb0\x2c\x1c\x34\xc8\xb2\x7d\x30\x51\xcc\x35\xb7\x03\x5f\x02\x6e\x2e\xfd\xea\x25\x0d\xe1\x95\xf2\x1a\x90\x28\xd0\xdd\x34\x6a\x55\xda\xbc\xd8\xed\x01\xe0\xd7\x03\x8f\x0a\x99\x87\x47\xcc\x94\x3d\x4a\xf9\xe3\xbb\x2a\x08\x79\x1f\x3e\x34\x76\xee\xaf\xc0\x09\xc6\x52\xfc\x33\x1c\xd4\x42\x1e\xd3\x5c\x67\xf3\xdd\xbc\x30\x03\x98\x8f\x59\xc7\x83\xaf\xa0\x94\xa7\x6a\x84\x7b\x0a\x46\x94\x0f\x4d\x66\x89\xe2\x13\x93\x78\x17\x19\x58\x41\x29\xf8\x0e\x4b\xb8\x79\x28\x1f\x4d\x83\x64\x93\xff\x08\x4f\x8a\x95\xb2\x63\xb5\x9a\x57\xd4\xad\x19\xe5\xe9\x62\x82\x39\xa7\xfb\x78\x93\xf6\x25\x9f\x46\x81\xaa\xfc\xb0\x54\xa4\x56\x01\x96\x5e\x48\xdf\x5f\xbc\x06\xff\x1e\x8f\xf2\x16\x4c\x36\x0b\x25\x07\x3e\x56\xda\xb1\xda\xd2\x00\x44\x94\xc4\x85\x8d\x63\xd3\x51\xc0\xfb\x3a\x73\x6c\x1b\xe1\x99\xc9\x7a\x86\x31\xe7\x52\x8f\xf6\xcd\x75\x17\xdb\xd2\xfc\x85\x89\xe9\x6c\x71\xe9\x43\xf0\x2f\xc9\xc6\xf5\x21\x6f\x39\x7e\x5a\x69\x54\x5c\x26\x67\x5c\x70\x12\xd5\x02\x82\xdb\xf1\xbf\x63\xf8\x84\x87\x9b\x86\x9f\x55\x90\x02\x8f\xcf\x66\x25\x1e\x18\xc2\x47\x58\x34\xca\xf7\x7d\x4e\x3a\x1b\x26\x1e\x0e\xb4\x8b\x42\x65\xe6\xc7\xd1\xfd\x95\x6b\x58\x08\x88\xcf\xee\xaa\xee\xf0\x97\xc9\x39\x14\x30\xf0\x94\x57\xbf\x3b\x83\xb8\x17\x33\x79\x9f\x02\x62\x26\x84\xe5\xdc\x04\xff\x0f\x4d\x2b\x42\xb5\xa6\x5c\xf5\xdc\x1c\x81\xba\x63\x3b\x92\xe1\x73\xba\xae\x2e\xd1\xf7\x7b\x8d\xd4\xf6\xe1\x03\x5d\x9b\x0c\x0d\x09\x8c\x1d\x3b\xe0\xba\x49\x68\x60\x85\x3c\x76\xeb\x24\x1d\x3f\x0e\x3e\xae\x44\x95\xd6\x50\xb8\xd5\x95\xa7\xcd\xd3\xce\x3f\x5f\x48\x33\x3b\x4a\xf3\x62\xda\x23\x9e\x41\x67\xca\xd7\x4a\x2e\x89\x7d\x57\xe9\xc6\x73\xe9\xe8\x28\xcc\xd2\x3c\x5d\x28\x70\x78\x61\x9a\x5f\x53\xc0\x89\x2b\xaa\xbf\xf3\x8a\xae\xbc\x6c\x9f\x51\x78\xfa\x28\x66\x74\x17\x4b\x42\x06\x1e\xef\xba\x86\x0f\x89\x56\xa4\x0f\x84\xd6\x34\x29\x9a\x8d\xe3\x3d\x3e\x7c\xf8\x87\x0a\x19\xa5\x28\x96\x8a\xcf\xcd\xa8\x3e\xea\x8b\xb4\xcc\x14\x71\xa4\x54\x27\xd8\xcc\xc0\xe6\xac\xd1\xda\x80\x10\xcc\xe7\x10\xf8\x73\x79\x3f\x50\x8c\x22\x2c\xfd\x2b\x39\xd6\x96\xce\x36\x8a\xf8\xe0\xb3\xe2\xe7\xd1\x4c\x89\xa9\xbc\xeb\xa1\x68\x3f\xfb\x6e\x83\x51\xf1\xd9\x6e\x61\x92\x45\x38\xc9\xba\x67\x4c\xd4\x20\x15\x59\xef\x87\x2a\xee\x36\x71\xfc\xd3\x95\x17\x0b\xf6\x0e\x06\x95\xf2\x86\xa0\x13\xf4\x6f\x3c\xb5\xda\x39\x78\xd0\x0b\x4d\xcf\x3b\xb6\xe0\x9f\x85\x35\x94\x8e\x4a\x1c\x50\x8e\x2b\xeb\x2b\x5f\x64\xa8\xf4\xfb\xfa\x0c\xb8\xa2\x6a\x7e\xb7\x54\x9e\x7c\x3b\xb0\x42\x48\xbd\xec\x5a\xad\xf6\x26\x9c\x80\x0f\x74\x86\x84\x58\xb1\xe6\x19\x51\xf4\x06\x9d\x33\x30\x93\x7f\x7d\xa6\xf3\xa5\x23\x4e\xbe\xcd\x4b\x9f\x3f\x36\xe3\xeb\xfa\xbb\x56\x15\xe8\xe8\x3c\x65\x7a\x9c\x7b\xed\xf9\x6b\xb8\x99\x0c\x69\xec\xc7\x57\x95\x3c\xf0\x30\x1d\x4d\x2b\x26\xe5\x4b\xf5\x66\x2a\x7a\x7c\xbe\x09\x7c\xeb\xfd\x25\xe5\x12\xaf\x98\xac\x9f\x4f\x7b\x10\x1f\x38\x47\xf9\x5a\x21\xd2\xcf\x93\xd7\x25\xe9\x16\xdf\x3a\x27\xf4\x93\xd5\xb7\x8b\x02\x59\xf5\x6d\xa2\x39\xe6\x51\x1d\x43\x9b\xf5\xa2\x30\xea\x5b\xa6\x9d\x14\xfe\x42\x0f\x60\x3b\xd5\x24\x20\x99\xed\xe6\xcb\x51\x8e\xf8\x0f\x96\x00\x49\x18\x71\x35\x55\x58\x7b\xab\x61\x88\x7e\xb1\x3b\x4a\xb3\x62\x40\x12\xca\xbe\xcf\x63\x83\xa6\x02\xa3\xfc\x8e\xc2\xb5\x6d\x6b\x00\xc3\xe7\xe6\xba\x61\x99\x17\xe4\xd2\xcf\x49\x8e\xe4\x8d\xc0\xd7\x51\xdf\x68\xf3\x72\x28\xcb\xce\x29\x20\x4a\x9d\xbe\xba\x7f\xc6\x33\xed\xbd\xba\xbf\xa1\xa7\x46\x84\x9c\x4b\x36\x71\xbb\x0c\x93\x0e\x2d\x00\xbc\xe8\xfd\x40\x71\xf3\xfc\x3f\xbe\x50\xd7\xaf\x7e\xca\x64\x2b\x8a\x01\x6a\xbb\xd2\xab\xd8\xbe\xea\x7d\x8b\x5e\x19\x0b\x17\x2a\xfc\xe5\xb7\x10\x1b\xf2\x8d\xaa\xa7\x2d\x9a\xe4\xab\x51\x9d\x59\xc6\xa7\xcd\x37\x6b\x62\x83\x3e\x78\x26\xcf\x6c\x47\x35\xb2\x48\xc9\xbf\x05\x47\x44\x44\x7b\x7d\x84\xf3\x99\x19\x5f\xeb\x60\xb2\x73\x0c\xe6\xb6\xd5\x4f\xed\xf7\x1a\x46\x36\xcb\x56\x80\x27\x80\x43\xc1\xba\xea\x7c\xd3\xaa\xc8\xd4\xb3\xa1\x29\x73\x3b\x5d\x6d\x36\xb8\x53\x9f\xd0\x81\x82\x60\xf8\xa6\x6a\x08\x5f\xc7\x46\x91\x44\x9b\xe2\x8e\x0e\xd3\x24\x65\xd6\xb2\x97\x3c\x06\x51\x77\x9a\xd0\x30\xc1\xde\x5e\x56\xcd\x4d\x4c\xb5\xce\x29\x5f\x32\xc4\xdc\xa1\xb8\xea\x79\xd3\xaf\x91\xb1\x90\xca\xbb\xef\x0b\xba\x81\xe7\x91\x3c\xbe\x4a\x34\xfd\x86\xce\x5a\xbe\xa7\x1a\xcb\xd2\xac\xb0\x03\xb3\x53\x15\x76\xd0\x48\xed\x44\x4f\x2a\xa3\xe8\xd4\xe5\x2b\x93\xc3\x37\x13\x1d\x9a\x2b\x12\x83\x73\x2a\x13\xd6\xa7\x5c\x58\xc7\xf1\x01\xfe\xd3\xdf\x54\x44\x31\xbf\xe9\xc0\xed\x7d\x07\xac\x81\xc5\x3c\xad\x66\x7d\xcf\x8c\x4a\x10\xef\x5c\xf5\x21\x48\x99\x40\x9a\xbe\xa3\x29\x4e\x3a\x9e\x4e\x2b\xd0\x2b\x38\x8a\x11\xe2\x60\xf1\xe8\x74\xc9\x71\xac\x07\x18\xd5\xa9\xd5\x16\xee\xce\xaf\x95\x51\xb8\x08\xee\xce\x79\x2f\xc6\xe2\xe5\x24\xa6\x55\x72\xf7\xbe\xaa\xae\xf4\xa3\xbc\xc8\xa2\x5e\x09\xf0\xce\xe6\x09\xd8\x65\x1c\xca\x50\x1e\x53\x9a\x58\x52\x00\xb9\x00\x3b\x2c\xd4\xb2\x5b\x97\xe7\xc1\x83\xdd\x32\x59\x4c\xd2\x65\x11\x71\x10\x91\xb0\xea\x88\x11\x3c\xc7\x1e\xfe\x50\xf7\xc5\xf9\x9f\x07\xcf\xad\x2b\x89\x78\xc2\x21\x5e\x8d\x08\x25\x98\xf2\xc6\xa1\xf3\x8e\x1d\x70\xc4\xe1\x9e\xf0\x1e\x40\x15\x9c\xfd\xc8\x7f\xb0\xf9\x0c\x54\x5b\xf6\xd9\x7a\xd1\x7c\x69\x85\x42\x29\xec\x36\x8e\xf3\x98\x79\x3c\xa8\x95\xa6\x5d\x52\xea\x75\xcf\xdb\x7b\x66\x63\xa2\x8e\xd1\x8f\xb0\xe0\xf8\x86\x5e\x58\x38\xcc\x5b\x7a\x30\x46\x86\x44\x82\x50\xb3\x47\xea\xe0\xbe\x42\x10\xde\x6f\x6b\x78\xea\xdb\x41\x66\x11\x1e\x48\x67\x9d\x87\xb9\xad\x29\x3b\x67\xaa\xbf\x9b\x52\x35\x28\x1a\x25\xec\x98\x0f\x15\xdd\xf6\xa9\x86\x79\x79\xb6\x9b\x97\xc4\x8a\x27\x29\x12\xd7\x83\xe8\xfb\x11\x1b\xa7\xd1\xdc\xdc\x11\x42\xdd\x26\x2c\xc5\x25\x88\x0f\x1a\x1c\x81\x7c\x6c\xc5\xef\x1f\x3a\xd4\x7d\x66\xaa\xf3\xcc\x33\x92\x41\x07\xf2\x56\xd2\x5c\xaa\x29\xdb\xb5\xda\xbe\x32\x34\x29\x0e\x58\x17\xb8\x1d\x3e\xa0\x55\x3f\xe5\xe0\x36\xc5\xd0\x66\xe8\x48\x16\x1f\x85\xd6\x92\xe8\xd0\xd2\x8b\xc9\xdc\xd0\x43\xca\x94\xb7\xd0\x1c\x16\xcb\xd6\x2c\xba\xdc\x0a\x60\x22\x1b\x4a\x83\x71\x43\x25\x8c\x96\xa3\x7c\x08\xdc\x1a\xf6\xee\xe9\xc0\xef\xe3\xd3\x4a\x17\x2e\x2d\x8b\x65\x93\x89\x4c\x22\x5c\x92\xdb\xca\x3d\xb9\xed\x69\xc5\xcb\xac\x7a\x99\xcf\x7a\x39\x19\xac\x78\x4c\xeb\x4e\x30\x36\x79\x59\x77\xd7\x99\x4b\x5f\x46\x23\xff\x5f\xfe\xb5\x19\x1f\x08\x7d\x8e\x9c\x4b\x96\x7d\xa3\x6d\x84\xb8\x6d\xef\xaa\x4a\x03\x80\xfa\x49\x51\xe7\x89\x60\xcb\x26\x79\x71\x52\xd1\x22\xc3\x0b\x47\xf1\xff\x0f\xaa\x55\x54\xa9\x2e\x4c\x54\xe3\xf5\xa6\xca\x01\x50\x5f\xe0\x13\xf4\x31\xec\xf7\xb5\x49\x0d\x9e\xa6\xd6\x0e\x74\x47\x25\xfb\xdd\x71\xcd\xb4\x6f\xd2\xa3\x61\x27\x13\xde\xfd\x39\x29\x86\xd2\x5a\xe0\x2d\xae\x14\x9f\x77\x11\xbf\xab\xcf\x2d\x3f\x2f\x65\xc1\x6d\x70\x4f\xf9\x41\x68\x79\x0b\xca\x41\x53\xd0\x8f\xa2\xc2\x41\xef\x84\x16\xdc\xef\xd2\x6b\x8a\x9b\x90\xdb\x92\xa8\x47\x07\x76\xe7\x75\x78\xef\x7c\x43\x6f\xc1\x85\x57\xa5\x4f\xf4\x91\xea\xcf\x1e\x47\x79\x91\xc6\x58\x68\xf8\x01\x74\x08\xf2\x75\x43\x61\xfe\xf0\x81\x6e\x9e\x8e\x87\x51\x5e\x10\x04\x93\x1f\x93\x89\x46\x55\xae\xf2\x4e\xe0\xfd\xea\x22\x8d\xf9\x17\x90\x8e\xfa\x33\x95\x9a\xfa\xb3\x46\xd9\xa5\xda\xd9\x79\x98\x99\x51\x2f\x76\x5b\x40\xa8\x8e\x7d\xd0\xbc\xae\xe4\xa7\x93\xb0\xcc\x32\x49\x77\xbb\xd1\x75\xbd\xa9\x6b\x00\x61\x4a\x35\xb9\xaf\x8c\xd9\x3b\x58\x37\x7c\xd3\x02\xc1\x9c\xef\x46\xc9\x42\x9a\x8d\x3c\x4e\x17\xd6\x99\x95\x62\xf9\x46\x65\xca\xb2\xa8\x30\x8a\x4b\xa0\x0e\x08\x79\xdc\x0d\xc9\x3f\x78\x82\xd6\xb8\x02\x10\x8a\xf0\xda\xf9\xc0\xd7\x91\x2f\xd3\xbe\x93\xc2\x44\x35\x81\x2c\xce\x16\x28\xaa\xd6\x7b\xb0\x2d\xd2\x41\xae\x94\x0b\xbe\x05\xb7\x89\xe5\xa1\x02\x25\x3e\xfa\x1d\x5a\x7c\xd8\x2e\xff\x44\xcd\xda\xf7\x61\x9a\x44\x2c\x6d\x6b\x00\xf1\x0b\xdd\xc2\x44\xcb\x86\x85\xaf\xf0\x57\x27\xe8\xd4\xe1\xeb\x1a\x59\x42\x1c\x9b\x31\x83\x86\x9e\xf3\xca\x9f\x87\x0f\x30\x40\x10\xb3\xc9\x55\xca\x40\x4a\xbe\xa3\x95\xdc\xc6\x0b\xba\xb1\x13\xba\x6e\xae\xc7\x7b\xfe\xb0\xe4\x5e\x9f\x22\x23\x03\x7f\x63\xe7\x6a\x4b\x35\x60\xd9\x2c\xe1\xe4\x92\x9e\x5b\x5f\x0e\xd1\x15\xb4\x74\x31\x36\xc3\x74\x64\xe0\x3c\x70\x4e\x80\x06\x45\xf2\x03\x7e\xc7\x11\x9b\x66\x32\xa0\x14\x85\xe3\x67\xaf\x86\x1f\x37\xf7\x14\x4d\xfa\xef\x04\x4a\x21\xc4\xc3\x95\x06\x59\x34\x1a\x91\xdf\x85\x8a\xc7\x75\xb2\x22\x88\x45\x2e\xe8\xee\xc3\x77\x6b\x5e\xc3\x20\x4a\x88\xe6\x43\x98\x0b\x6a\xad\x36\xd5\xca\xe0\x6b\xdd\xb4\xcb\x6e\xbd\xab\xf4\x1d\x16\x5a\x25\x64\x3c\x58\xc6\x2b\x50\x4a\x63\xb7\x55\xe9\xfe\x4f\xe8\x5d\x58\x2d\x16\x2f\xc9\xbd\xb1\x54\x14\xc1\xa9\x79\x2d\x50\xd9\x88\xb3\x8d\x7a\xfc\x81\xee\xec\xd1\xa7\x3c\x3f\xc3\x8e\x55\x2f\x84\x71\xe2\x67\x60\xff\x71\x18\x5c\xc7\x8a\x46\x4c\xc9\xfc\xa2\x30\x56\x1b\x94\x1e\x85\x9d\xfc\x4d\xec\x3a\xc9\x8f\xa8\x45\xf2\xbf\x91\xf3\x0f\x7f\xf3\x12\xb2\x11\x4c\x6f\xab\x54\x34\x3e\x33\x43\xe7\xa4\x98\x78\x42\xd5\x88\x8d\xa7\xf7\xc3\x88\xec\xa1\xca\x23\x10\x53\xd3\x94\xf4\xd5\x24\xd9\x98\x35\xd6\x62\x92\xf6\xfb\x6a\x40\x80\x41\x99\x6e\x0d\x48\x87\xd2\x88\xed\xe9\x31\x6f\x4f\x14\x47\x51\x93\xb6\xf8\xe0\xc1\x6e\xdf\xe6\x36\x43\xa2\x50\xd0\xda\x1a\xc6\xdd\xa2\x85\x34\xb6\x49\x68\x6b\xd2\xca\x13\xdf\xce\x78\x25\xd0\x12\x87\x49\xba\x44\x36\x6d\x87\x6a\xe8\x0d\x14\xc7\xed\x46\xe0\x85\x53\x79\x51\x09\xaa\x81\x66\x4a\xc4\x63\x15\x74\x79\x21\x2d\x5f\xe9\xf8\x70\x79\x5d\x93\x27\xaf\x2b\x7d\x99\xc4\xbc\x42\xc8\x34\xec\x4d\xd7\xc2\xf8\x85\x17\xe5\xda\x19\x83\xcc\xda\x58\x46\x0d\xe5\x2a\x56\x32\xe2\x9b\xb6\x84\x76\x68\xc6\x51\xc1\x3e\xae\x4e\x9d\xf3\x75\xa3\xfd\x4f\xc2\xe2\x7e\x56\x0e\xa8\xb7\x53\x13\x93\xc3\x0e\xee\x23\xc7\x5e\x43\x7e\x37\x3b\xab\x5b\x0f\xc6\xd9\xa3\xdd\xdc\x8e\xa2\x30\x4d\xfa\x25\x4a\xdf\x4e\xe0\xf6\x13\xfa\x2e\xbe\x6e\xcc\xf4\xb3\xdd\x61\x3a\xb2\x0b\x5c\xb8\x04\x5c\x84\x0d\x01\xdf\xb4\x54\x45\x8e\x74\xcb\x24\x4a\x13\x96\xe8\x69\xe5\xc0\xd9\xef\x65\x07\x58\x1d\x2e\xa7\x8c\x82\xf4\x14\x6b\xb0\x6e\x47\x37\x1e\x57\xd3\x8b\xdd\xcd\x4d\x42\xa2\xf7\xe7\x70\x32\x26\x89\x42\x82\xd9\xc0\x52\x20\x09\xe1\x18\x2a\xab\x27\x12\x06\x7c\x55\x5b\x7a\xa8\x52\x92\x5f\x3e\xfa\x65\xaa\x92\xc1\x0d\x03\xf5\x9f\xc8\x25\xa8\x37\xbf\xd5\x80\xf0\x1e\x3f\x5e\x1d\x2c\xe6\x53\x51\xc7\x7b\x15\x71\xf0\x88\x14\x64\x9d\xca\xf1\xf3\x73\x4e\xfe\xb8\xe5\xac\x28\x86\x11\xea\x8b\x2c\xde\x4a\x66\xa3\x29\xe4\x9a\x17\x99\xc9\x5f\x19\xda\x68\xb4\x8b\x8c\x0c\x2c\xe2\x55\xb2\xad\xa2\x30\xd8\x71\x84\xc4\x6f\xe1\x68\x16\x41\x40\x8f\x19\x82\xe6\x0b\x56\xd7\x27\x30\x6a\x02\x49\x69\xd3\x14\xfa\x6a\xe5\x11\x66\x2b\xc8\x4d\x32\xf9\x16\x7d\x1b\x1b\x3c\xfa\x49\xd8\x9f\xdf\xd0\xdc\xe0\x27\x34\xff\x60\x39\x4a\x33\x6c\x25\xd0\xfb\xdd\xc7\x56\xe2\x9b\x16\x16\x71\xaa\xbc\x65\xae\x72\xef\xd6\x8a\x47\x95\x4d\x54\xc6\xf9\xa1\xdb\xb5\x36\x4b\x9c\x2a\x3c\x46\xfc\xbc\xce\xf7\x6b\x92\xc0\x38\x5d\xe6\x0a\xa6\xf0\x0b\xd0\x2b\x3a\x85\xb6\xe7\xc5\xa7\x3e\xdf\x46\x8f\x98\x5b\x93\xa7\xc4\x0f\xd3\xf1\xf5\x89\x93\x4a\xee\xf2\x64\xed\x08\x0d\xd3\x84\xf1\x42\x48\xfd\xde\x50\x73\xcc\xd6\x58\x54\xdf\x7c\x05\x62\xfb\x8c\xa2\xfe\xd9\x46\x8d\xc4\xfc\x47\x2d\x42\x17\xcf\x75\x47\x76\xc0\x1d\x02\x5a\x1d\x18\xd9\x97\x6d\x33\xde\xb3\xdb\x98\x7c\x46\x51\x1b\xc7\x90\x3a\x7f\x4e\x60\xb6\xb4\xa4\x05\x72\xab\x5f\xe1\xaf\xc7\x39\xa6\x50\x50\xb7\x1e\x83\xfd\x91\x33\xc5\x26\x8e\xcd\x8a\x98\x4d\xc6\x16\xd3\x02\x15\x9c\xb1\xff\xe9\x38\x7a\x65\x18\x29\x17\x69\x5d\xb9\x48\x9e\x5a\x72\x48\x71\xe3\x94\xea\x10\x47\xab\x18\x96\x0e\x54\x00\xb0\x93\x77\xcd\x68\xe0\xe6\xdf\xfd\xfb\x7f\x1b\xce\x1f\x36\xc0\x45\x95\x2b\xb9\xa9\xf4\xbf\x3f\x98\xf8\x43\x24\x31\x03\xdb\xc7\x3a\x77\x3c\x37\xd5\x6b\x70\x4a\x3f\xf0\xae\x6a\x07\xbe\x04\xfe\x6a\x6a\x66\xab\xeb\x4e\x1d\x21\x4b\x36\x2f\xa2\x81\x11\x20\x12\x36\xce\x87\x81\xef\x2a\xf9\xb0\x8d\xdb\x28\x31\xe3\x61\x31\x84\x8d\xc1\x3e\x42\x4c\xcd\xd7\x6e\x58\xc6\x65\x96\x97\xa0\xb9\xc3\x99\xb1\x6d\x46\xf5\xc9\x5d\xab\x35\xc2\xf9\x0c\x58\x31\xcc\xd2\x72\x30\x4c\x4b\x84\x2b\x58\x8a\xbf\x35\x51\x25\x89\xdf\x6a\xd3\x28\xcd\x87\x69\xb8\xd8\xf1\x1e\x19\x03\x21\x65\x64\x9b\xa5\xa2\x30\xe5\x43\xd0\x09\x3d\x2b\x34\xd4\xd6\x43\xf0\xe8\x0b\xdd\xc4\x0e\xd2\x22\x22\xa6\x75\x77\xf0\x3f\x08\x14\x6b\x3c\x4e\x44\xf8\x9f\x4d\x94\x0b\xeb\x89\x26\xfd\x69\xaf\x09\x81\x8a\x07\xdc\xb8\xbb\xb4\x99\x95\x7f\x37\xef\x78\x8f\xdb\x6a\xfe\x61\x1a\xa7\x09\x12\xf1\xa2\x15\xe5\x73\x66\x17\x55\xc5\xa4\x0f\x51\x46\x68\x88\xba\x42\xb3\x63\xa4\xbb\x38\x51\xf4\x74\x17\x95\x24\xea\x65\x8f\xfa\x34\xc5\x90\xcf\x51\x19\x4d\x7a\x6b\x19\xe7\xe6\x79\x9d\xd9\x71\x1c\xc9\x06\x93\x3a\x30\xad\x46\x51\x09\x95\x25\x52\x8e\xfb\x32\xa2\xac\x74\x86\x57\x97\xac\xbe\xdf\xe7\x94\x72\xe2\x7d\x33\xcf\x26\xc4\xe1\xaf\x1d\xa7\xeb\x05\xdd\x23\x70\xbf\xcd\xfd\x49\x7b\x4b\xd4\x3f\xd4\x71\x02\x44\x6b\x8a\xe7\xa5\x49\xcd\x32\x47\xad\xc8\xa4\x3a\x85\x1f\xd5\xe0\x4c\x0c\x37\x76\x1d\xab\xec\x69\xf2\xb3\x6a\xaf\x6a\x3d\xf3\x3a\x83\xa5\xc7\x01\xf4\x3f\x4f\x8f\xc3\x35\x3d\xbc\x82\x14\xf8\x9a\x25\x9f\x23\xdd\x71\x6c\xa2\xbe\x16\xbd\xd4\x48\x51\xd5\xce\x57\x26\x66\x47\xe5\x36\x4a\x37\x8d\x6a\x5b\xd8\x08\xb4\xcb\xe5\xc1\x78\xeb\x0a\x8c\x77\x46\xe1\xa7\x47\xe9\xc8\x26\x45\x39\x22\xaf\x06\x8b\x1f\x09\x1a\x21\x11\xa2\x69\x13\xa6\x21\xfa\x21\xfe\x2b\x85\x17\x0c\xe3\xb2\x37\xd5\x51\x54\x1c\xff\x09\xc6\x8e\xc7\x5c\xbc\xbb\x03\x08\x02\x5a\x6d\xff\xc5\xcf\xd2\x19\xe1\x8c\xec\xe1\x03\xb5\xa2\x2a\xfe\xfd\xa1\x06\x4b\xef\x50\xd9\x7f\xe1\xc8\x9f\x52\x0d\x5b\xd4\x4f\xc0\xbe\xc1\x5b\x35\xa9\xe2\xad\xf4\x78\xb3\x47\xbb\x36\xd6\x04\x18\x13\x4d\x80\xa1\xfb\xe0\xfa\x4b\x51\x68\xa7\x28\x7c\xc2\xb1\x4d\xc8\x9a\x23\x5e\xcd\xc4\x97\xa1\xd6\x1a\x86\x02\x8d\x88\x06\x4a\xf8\xb3\x8e\x11\x83\x9c\x00\xbe\x71\xdb\xa7\x28\xb3\x22\x86\xf4\x83\x28\x43\xd0\xd0\xcb\x8d\xaf\x5e\xdc\x0f\xb6\x08\x10\xcf\x1f\x9e\xef\x7e\x79\x96\x1c\x7a\xac\x88\x9d\x30\xce\xac\x69\x4d\x43\x5b\xdb\xba\x88\x30\x1f\xb6\x58\x23\x16\x0b\x16\x7c\x16\x1c\x92\xef\xe9\xea\xc0\xf7\x3e\x15\x3b\x9c\x9b\xd1\x68\x85\x29\x98\xe0\x27\x7d\x4b\x69\x8e\xbc\x3d\x51\x34\xb6\x3f\x51\xbc\xec\x26\xfc\x5a\x19\xe5\x51\x15\xa0\xed\xa5\xa7\x13\x5a\x78\x8a\x3a\x91\x9b\xeb\xe8\x04\xe8\x7d\xd8\x39\x97\x2e\xf4\x8a\x82\xb5\x84\x40\xa0\x7b\x27\x50\x61\x40\xc5\x12\xfa\xa7\xfc\xc5\x40\x37\xd4\x72\x08\x2e\xed\x50\xed\x76\xbc\xc8\x8e\x46\x85\xf7\xd8\x81\x97\xba\xbd\x2c\x5d\xb4\x50\x20\x73\xce\xd4\xf3\x1e\xa9\x47\x8f\x8c\xf6\xff\x6b\x0d\xe7\xbe\x3a\x7b\x23\x0e\x0b\x31\x26\x9f\xe8\x01\xfa\x44\x35\xa5\x9a\xb2\x48\x73\xad\xf2\xbd\x11\xa8\xa4\xf1\x86\x3a\x20\xf2\x90\x50\xc2\x3b\x7c\x8d\x8d\x1b\x3a\x5c\xd6\x57\x48\xd8\xff\x07\x4e\x42\x08\xf4\xc9\x7b\x28\x77\x5b\x00\xb9\xf3\xdd\x91\xa5\x5c\x90\x15\x06\x29\x8c\xd1\xeb\x7a\xc0\x5e\x6f\x23\xba\x5e\x88\x12\x93\x84\xae\xa5\x5b\x95\x0e\x9f\x73\x45\xc5\xa7\x94\xe2\x6e\x91\xd9\x24\x1c\x0a\x8d\x1b\x16\xed\x9a\x02\xb6\xac\x29\xee\x5d\x0a\xf5\xb2\x7e\x47\x69\xde\x52\x12\x58\xf4\x6f\xdb\x00\x29\x76\xc4\xa9\xcd\xb6\x70\x59\x8a\xe3\x65\x92\x99\xa5\x2a\x1a\xa7\xd4\x97\x30\xc1\xa8\x1c\xf5\x05\x55\x23\xa8\x71\x57\x6f\x36\xd2\xaa\xc4\x20\x2a\xfc\x07\x0e\xf7\xc8\x7a\x12\xd8\x57\x22\x2e\xd1\x06\xce\x5c\x88\x8d\xa0\x16\x1d\xfe\xcc\x63\xd1\xdc\x13\xc7\x76\x60\x93\xbe\xc9\x56\xe8\x89\x81\x3b\xdf\x3e\xa3\x58\x05\x71\xac\xc0\x89\xfd\xf1\x44\xed\xac\x33\x1e\x62\x6e\x32\xdf\xe2\x87\x52\xd4\x39\x45\x8d\x79\xae\x61\x44\x9f\x9f\xeb\xf6\x2d\x9c\x11\xc1\x00\x55\x53\x21\x62\x49\xd5\x69\xc5\x3c\xfb\x81\x06\x10\xfb\x3e\x8f\xa1\x49\xfa\x95\x6f\xa8\xcb\x9f\x30\x8e\x52\x0b\xdd\xaf\x39\xb1\xb2\x28\xc9\x59\x7a\x1f\x8d\x65\xe7\x95\x30\x65\x13\x18\x46\x95\xfc\x32\x8a\xd1\x03\x2b\x99\x74\x5a\x86\xc8\xd0\x21\x92\xe5\xce\xb1\x36\xad\x94\x22\x33\x7d\x37\x22\x8c\x2c\xa3\x71\x14\x94\x59\x9b\x37\x67\x32\x33\x8a\xfa\x53\x5e\x31\x0d\xe5\x74\x84\x5e\x08\x05\xa4\x0f\xa8\x45\x39\xc0\x2c\x2c\xc4\x51\x28\x5a\x70\x58\x98\xbc\xdd\xf9\xc6\x53\x52\x0c\xd3\x34\x77\x8f\x87\x93\x17\xf0\x3a\xbe\x56\xbd\xa9\xb6\x18\x26\x51\x38\xad\xc9\x2b\x3e\x9e\x28\x91\xc5\x8f\x69\xa2\x5d\x8f\x8f\xef\xf7\x69\x5b\x94\x47\xba\xe4\xb3\xd0\x13\x2a\x5b\x39\xe7\x4c\xad\x4f\x4c\x8c\xcb\x02\x74\x4a\x40\x66\xdf\x0d\x14\x3f\x1f\x8b\xa2\x03\x68\xfc\xe3\x40\xb7\xe7\x93\x4d\x17\xfe\x44\xfa\x1d\x3c\xce\x3d\xca\x7c\x32\x61\x52\xa0\xe8\x27\x89\x68\x97\xdf\xe5\x5f\xe8\x48\x7d\x1d\xdc\x46\xfc\x23\x58\xf8\xc2\xf2\x48\xa7\x08\x42\xd4\x37\x14\xd3\xcb\x87\xe4\x0b\xc1\x87\xfc\x49\xa0\xaa\x92\x3f\x51\xbd\xb6\x57\x5a\xe7\x3e\x31\x45\xb4\x64\xa7\xfc\x79\x8b\x0c\x02\xdc\x9a\xdf\x53\xd4\x78\x97\x02\x5d\xa6\xc9\x4c\x87\x2a\x59\xae\x53\x47\x51\x81\xa8\x73\xa0\x9f\x46\xc9\x60\x0f\xfd\xa5\xd3\x84\xf6\xb5\xd0\xaf\xc3\xa0\x0b\x36\x8a\xde\x54\xc0\x51\xd5\x03\x69\x31\x68\x27\xb7\xe7\xea\x35\xd7\x90\x21\xe6\xaf\xaa\x89\x82\xfb\x02\xcf\x35\x0c\x99\xb8\x12\x2d\x69\x5c\x84\x45\x1d\x4f\x80\xf0\x36\xfd\x1e\x5f\xb7\x31\xfd\x90\xe4\x93\x50\x32\x63\xc3\xa0\x58\xc2\xd7\xaa\x76\x31\xce\x28\xc4\xb5\x53\x2a\x18\xbe\xa5\x24\x59\x34\x01\xc7\x8f\x55\x5d\xd4\x2e\xd9\x6c\x65\x0f\x2d\x23\xe4\xf0\x6e\xd1\x32\x12\xb2\xa6\x6a\xb6\x85\xc9\xc8\xff\xf0\x77\x03\x45\x6f\xb5\x73\xc6\x83\x09\x37\xe9\x8d\x5c\xf7\x70\xf5\x28\x98\xdf\xfb\x7a\x74\xfe\x4d\xa0\x9b\xb4\xb1\x54\x85\xe1\xd3\x3b\xf5\x47\xac\x99\xf2\x3d\x49\xf7\x75\x8b\xd6\x0e\xfa\x49\x81\xe3\x79\x3b\xe8\x0a\x74\x64\xe9\xe1\xf7\x72\x42\x07\xe7\xd1\x2d\x05\xb7\x66\xa5\x31\xd4\xbe\xd6\x7c\xab\x61\xb4\x14\xf5\x6b\x0c\x72\x77\x54\x22\x09\x75\x2b\x11\x64\x69\xb1\x51\xe9\xb8\x88\x46\x51\x3e\xa2\x83\xd7\xf1\xe3\x39\x00\xd3\x9a\x5a\xb2\x45\x34\xb2\xf9\xde\xea\xef\x1c\x71\xe9\xc1\xd9\x5a\x76\x0d\x5b\x6b\xf7\x8c\x6f\x71\xb8\xa4\x61\xa5\x0f\x90\xa2\x85\xff\x7f\x15\xab\x1a\x3d\x53\x6b\x78\x37\xc0\x2a\x7f\x10\xa8\x4c\xec\x9b\xb4\x99\x99\xa7\x0d\x65\x41\x57\x0f\xd7\x3c\xa2\xfb\x54\x13\x79\x3e\x8e\x32\x3b\xe5\xc1\xa9\xe7\x69\x59\x60\x3b\xfc\xf7\x13\xc5\x2a\x78\x5e\xc1\x11\x72\x6b\x13\xaa\x47\xbb\x0e\x9c\x17\xfd\x8d\x72\x7d\xef\xa8\x5e\xdd\x3b\x9f\xee\x3e\xdb\x24\xe2\x54\x3a\x3c\x82\x6b\xda\x3d\x68\x12\x42\x55\x06\x07\x04\xe2\xbe\xc2\x0c\x76\x4c\xbe\x6e\x93\x87\xcc\x8b\x72\x1c\xf5\x55\x9f\xd1\x65\xd5\xd1\x79\xb9\xce\x3a\xbf\xb4\xb2\xdb\x77\xaf\xac\x29\x76\xfa\xdf\x87\x4d\xc6\x74\x6d\x5f\xa5\x41\xc5\xe2\x7b\x14\x28\xfa\xf2\x1b\xc4\x8c\x25\x6a\x35\x38\x7b\x80\x26\xd9\x06\x68\x81\x10\x78\xcb\x89\x36\x48\xcb\xb8\x9f\x46\xfd\x8e\x02\x2c\xdf\x54\xc5\xc9\x9b\x2d\xe4\x04\x47\x94\x90\x8d\x2f\xb1\x20\x8c\x17\x66\xf8\x7d\x5b\x3a\x29\x41\x3e\xca\xcd\x4d\x81\xcf\xe7\x7f\x30\x51\x54\xb5\x26\x2b\x86\xcb\x69\x36\xca\x55\x63\xd9\x1d\x25\x4d\x7f\xa7\x46\x73\x67\xe3\xd1\xae\xca\xf7\xd4\x08\x3a\x20\xbd\xd6\xb1\x68\xe1\x66\x70\x0b\x37\xdf\x60\xb0\x9c\xd0\xa4\x6b\x08\xfa\x23\x1e\x2c\xfe\x9f\x36\x92\x0a\x43\x0b\x96\xd3\x32\xf8\xa1\x1b\xba\x7d\xf4\x86\x8a\x61\x8b\x74\xd9\x64\xfd\xc7\x55\x8f\xf8\xc4\xc1\xbb\x8f\xac\x93\xad\xe7\x6b\x9c\x76\x98\xf0\x4d\xa5\x20\x74\x03\x67\x0b\xf6\xf0\x7f\xd0\xac\xab\xa7\x02\x4d\xcc\x70\x4a\x71\xf3\x4e\x81\xf6\x87\x3f\xe3\xc2\xdc\x9e\x35\x21\x4f\x15\x82\xf3\x9f\xe0\xeb\xf8\x26\xf8\x0b\xf5\xd0\xf6\x97\x7e\x59\xf6\x07\xfc\x0d\xac\xa6\x8f\xd0\xf5\xcb\x37\x8d\x75\xfe\xfc\x5c\x77\x31\xcd\xac\x41\x91\x43\xbe\x59\xff\xcc\x44\x9f\xaa\xcb\x8c\xd2\xc5\x20\x9c\xc3\x20\xf0\x8d\xe2\x3b\x29\x6c\x38\x4c\xd2\x38\x1d\xac\x3c\x4e\x7f\xc1\xd0\xf0\x06\x84\x01\xff\xbe\xa1\x29\x18\xff\x94\x26\x97\x4f\x26\x1a\x57\x26\xb3\x0d\xb6\xea\x8d\xcc\xb9\xca\x0a\xd9\x1c\x78\xf2\x37\x51\x9a\x92\x7e\x02\x8d\x43\x33\x51\xf2\x98\x8f\xf6\xfe\x29\xbe\x82\x95\x9b\xc9\x8b\x12\x62\xed\x6a\x96\xd1\xa8\x00\xd3\x86\xdf\x04\xb3\x2f\x6c\x30\xf7\xf9\xb8\xbc\x8b\xe7\x4e\xba\xab\xca\xf6\x3f\x52\xde\x5d\x56\x84\x1d\xa5\x08\x71\x25\x20\xdf\x44\x74\xa3\xdb\x4a\x06\x79\x5a\x66\x74\x70\x01\x43\xc1\xc0\x7c\xbc\xe5\x69\x1a\x3d\x0d\xfb\x95\x94\xb9\x47\xbf\x10\xcc\x42\xe8\xe7\xc4\x43\xe8\x38\x42\x8c\xed\xab\x0a\x41\xb3\x7b\xc6\x6f\x81\xd0\xc4\xb1\xed\xef\xed\x38\x19\xda\x4d\x2a\x63\x23\x4f\xf6\x90\x5e\x0f\x83\xf0\x1d\x98\x36\x6c\x81\x4f\x70\x5e\xe0\x10\x9e\x60\x42\x99\xbc\x96\x29\x24\x04\xb1\x47\x3f\x8b\x93\x03\xb1\x34\x1c\x8d\xfb\x80\x70\x48\xce\xc3\x67\xa7\xd0\x5f\xc5\x6a\x23\x33\x7e\x8d\x45\x23\x33\x88\x12\x43\xfe\xd0\xb1\x03\x4e\x0c\xa3\xe3\x85\x31\x1a\x3e\xd4\xc1\x83\xc2\x5d\xcd\x41\x83\x00\xf6\x6a\x2d\x58\x1e\xbd\x87\xe6\xfa\x9d\x6a\x91\x83\xf6\x40\xc2\x28\x9a\x43\x31\xda\xd5\x0f\xe3\x89\x77\xcd\xa8\x44\x09\x67\x8d\xb1\x22\xee\x28\xee\xa5\xd0\x8c\x4d\x18\x15\x2b\x3b\x3d\x24\x6e\x03\x6b\x5c\xb8\x29\x95\x2c\xdb\x4d\xcd\x8b\xac\x8a\x84\x9c\x1e\x80\xd3\xd8\xda\x5a\x59\xa4\xa5\xb0\x6b\x23\x96\x40\xb6\x8f\xaf\x1b\x25\xcf\xc3\x07\xba\xb1\x01\x81\x98\xc3\x95\x07\x7a\xb1\x79\x24\x4f\xba\x64\xb3\xe5\xa1\x8d\x47\x2a\x31\xc3\x40\x4b\x01\x9d\x6c\x65\xa0\x7b\x91\x92\x89\x36\x2c\xb2\x34\x89\x42\xa9\x6f\xbd\xe4\x1d\x89\xc3\xbe\x93\x69\x4b\x9d\x9a\xe0\xfe\x9d\xb9\xb9\xba\xb4\xbb\x50\x3a\xed\x75\xee\x5a\x56\xa0\x35\x58\x37\xd4\xc9\x34\xab\x14\x71\x56\x7c\xc6\xc3\xe8\x25\xff\xc5\x3c\x66\x38\x85\x60\x9b\xb0\xd3\x1c\xfb\xd4\x41\x8f\xb0\xed\x08\xe3\xf0\x7f\xf3\x39\x34\x8e\x60\x0e\x41\xfb\x8b\xf0\x8e\x99\x0a\x61\xa6\x6e\xc3\x09\x43\x86\xe4\x49\x5d\x12\xfa\x2e\x4e\x3a\x47\x33\x56\x8d\x08\x1c\xe0\x1f\x4f\x94\x06\xf0\xfd\x36\xec\x6e\x58\xc6\x45\x99\x09\xa9\x7e\x2d\x11\x2d\x29\x6a\x49\x7c\xa4\xc3\x9e\x59\x31\x39\x17\xf6\xa4\x52\xa8\x90\xda\x1f\xd5\x54\x4c\x87\x36\xb3\x09\xcb\x22\xa3\xd2\xf3\xa6\xea\xda\x41\xe4\x8b\x45\x78\xd3\x73\x2e\x0d\xa3\xac\xbf\xbb\x1a\x58\xe0\xb7\x40\x5c\x0d\x83\x73\x55\x49\xda\xfe\xc5\xd5\xce\x97\x8e\xf0\x2a\xc1\xe1\x49\xa5\xdd\xbd\x7f\x85\xa8\x4f\x6a\x5c\x7b\xb0\xe4\xdc\x9b\x23\x3a\x4b\x5b\xd3\x2b\x73\x73\x5d\xf3\xf9\x8e\xdf\x48\x9c\x6b\xe6\x9b\x96\x8a\xac\x16\x86\xc0\xb8\xbf\xaf\xdc\xfa\xf7\x5d\x1a\x3e\x4d\xa6\x3c\x9e\x81\x1b\x61\x60\x4b\xaf\x11\xfc\x0c\x96\x66\xdb\x8c\x5f\x59\x2f\x30\xd5\x3f\x5e\xfa\x0d\x25\x00\x39\xaf\xd5\x62\xde\x68\x64\x00\xab\x68\x61\xc9\x66\x09\x5a\x8c\xbf\x3c\xeb\xb0\x12\x7e\xa0\x1f\x9b\xf1\x6e\xdb\x76\xa5\x10\x64\x93\x02\x94\x53\x1d\xa7\x37\x7e\x59\xeb\x0a\x5c\x0e\x94\xb0\xc2\x78\x1c\x0b\x77\x07\x19\x4e\xcd\xfa\xc4\xd7\x0d\x4d\xa0\xd9\xa3\xdd\x68\x34\x26\x90\x78\x94\xbb\x8c\x77\xab\xf5\x6c\x11\x28\xfb\x79\x96\x1c\xe1\xf1\x76\xa0\x25\x0f\x60\x52\xc5\x92\x5e\xd9\xcf\x55\x53\xf6\x7d\xc5\xd1\x71\xdf\x45\x65\x0b\x99\xcd\xc3\x14\x1e\x9d\xb8\x39\x1d\xd7\xa9\xfa\x51\xc3\x0b\x3c\x7e\xbc\x6b\x32\xd3\x8b\xd8\xcd\x41\xc0\x76\x03\x43\xc4\x37\x35\x17\xd5\xf4\xed\xe7\x3c\x77\xf4\x7d\x1c\xd6\x58\xf8\x52\xb0\xc1\x34\xde\x84\x07\x24\xb4\x4e\x4a\xdf\xe4\x43\x44\x38\x22\xb3\xeb\x41\x76\x57\x15\x85\x18\x0b\x7b\x61\x53\x6c\x68\xb0\xf2\x4f\x90\x7f\x71\x41\x44\x65\x20\x90\x92\xbf\x48\x90\x28\x94\xe0\x90\x7d\x70\x8d\x99\x6e\x06\xef\x4d\x54\xfb\x37\x3b\x2b\xb8\xf9\x24\x50\x09\xd2\x1b\x94\xbe\x81\xeb\x70\x9b\x4e\x15\x91\x18\xc3\x91\x0d\xdf\xfb\x1a\x0c\x97\x2c\xc7\x16\x0f\x72\x21\xb2\x71\x9f\x67\x57\xf8\x78\xbc\xe7\x72\x51\xf5\xfa\x8c\xb3\x94\x18\xe3\x1e\xaf\x7e\x18\x3e\x16\xba\x0f\x85\x95\xa6\x7a\x08\x11\xfe\x54\x26\xf2\x14\x5e\x08\x36\x79\x0f\x5c\x21\xc4\xed\x0f\x6b\xf3\xb1\x36\x51\x6e\x39\x9a\xb4\x90\xcc\x79\x8b\x46\x9d\x09\xaa\x94\x0c\xd2\x82\x31\xbb\x69\x76\xe1\xee\x5f\x84\xb7\xcc\x37\x98\x4f\x51\xfa\xf1\x99\x1a\xe6\xd3\x96\x8f\xf8\x0c\xc9\x75\xda\xac\x38\x2a\x81\xf9\x14\x70\x9c\x5f\xe0\xd5\x81\x8c\x3c\x24\x7c\x82\x6b\x13\x5f\x46\xbd\xd6\x82\xfa\x9f\xef\xf6\xed\x52\x14\xba\x7c\x38\x4c\x4e\x07\xf8\x13\xbe\xf1\xac\x1a\xa6\x1c\x0c\x0b\x39\x2a\x6b\x24\x4e\x42\xcf\xe4\xdb\x99\x86\x69\x99\xdb\x1c\x04\x8c\xae\x9c\xe8\x24\x87\x1e\xa8\xbe\xc4\xf7\x74\xaf\xd4\x3f\xc6\xb0\x08\x22\xcd\xc7\xba\xef\x05\xbe\x9b\x09\x20\x0b\x60\x78\x5c\xb3\x80\x6b\x6d\x7a\x44\x59\x25\xaf\x72\xe3\x60\xf9\x59\xc9\x5a\x14\x22\xcb\xc9\x14\x82\x7c\xa3\x8a\xbc\x61\x91\x3f\xe1\x33\x4d\xd3\xa8\x4d\xd1\x39\xf6\x37\xff\xe6\x4c\xf5\x4b\x60\x5a\xb8\xc2\xcb\x83\x1c\xd3\xff\xf6\xaf\x92\x72\x9d\xeb\xb7\x93\xc8\xfe\xe5\xbf\xb6\x4a\x6b\x40\xbc\x52\x1a\x5a\x64\x06\x7e\x7a\xd5\x67\x6b\xfe\xea\xaa\x1a\x85\x9d\x80\xa9\xe2\xbb\xa6\x57\x69\x1f\xab\x02\xa9\x28\x52\x7e\x7e\x46\x3b\x1d\x66\xda\xe3\x6d\xee\x28\x74\x5d\x8d\xef\xee\xa1\x92\xf2\xda\xde\x20\x01\x3a\xfa\x42\xf7\x95\xd4\xf3\x7b\xc2\x25\xdc\x54\xec\xf6\x9a\xc0\x78\x10\x9b\x3c\x49\xf3\x82\xb2\x8c\x02\xd1\xa8\xb6\x18\x5f\x7f\x2a\xcd\x6f\x51\x66\x89\xcd\x3a\x2a\x6d\x7c\x91\xa2\x00\xbe\x56\xec\x16\x4c\x78\xb8\x82\xb2\xad\xe3\xe4\x57\x04\xfd\x9f\x9a\xc5\x59\x8a\x4c\x98\xc2\x7b\x94\x9e\x34\xfa\x41\x69\x4a\xdb\xfa\xb9\x63\x07\xe6\x89\xb5\x9c\x5a\xd8\x29\x95\xb3\x49\xd0\x8d\xcd\x8b\xaa\xe3\x46\x74\xbd\x0f\x4b\x8f\x10\xe4\x28\xf9\xba\xad\x95\x69\x99\x50\x74\x1d\xb2\xb7\x4e\x63\xd5\xaf\x00\xd6\xf6\xad\x4f\x41\x3f\x42\xd4\x81\x62\x3f\xb0\x7d\x7c\xad\x40\xff\x79\x5a\x4d\x53\x65\x50\xe0\xc5\x5f\x9e\x74\x9e\x79\x46\xae\x1b\x27\x25\xf0\x2d\x24\xd4\xc0\xee\x1c\x5c\xcd\x07\xba\x12\xf0\x40\x0d\x3d\xa7\xe2\xc0\x76\x0c\xcb\xbd\xa1\x74\x35\x50\xb3\x81\x75\xdf\xe1\x84\x16\x7b\xe5\x68\xcc\xa6\x5a\x57\xff\xf9\xba\x71\xf2\x13\x39\x41\x2f\x8f\xfa\x91\xc9\x22\x21\x00\x12\xf2\xb8\x8e\x22\x95\xdb\xa7\xa4\xd8\xb3\xea\x4f\x77\x50\xc2\x5d\xe8\x7b\x28\x65\x0e\xbb\x7e\x56\x29\x76\xa3\x37\x0e\xa6\xe4\x7d\xdd\x67\x7c\x52\x31\x64\xf7\xd2\x51\x6f\x4a\x29\x94\xdd\xa2\x2f\x70\x7e\x4e\xb5\xee\xe0\x7d\x74\x1a\xa5\x67\x3a\x9c\xf2\xa1\x30\xe0\xe1\xfc\xf8\x68\xa2\x92\x12\xda\xe9\x45\x05\xd6\xa2\x11\x1a\x79\xb4\x0d\x25\xf8\xc4\x04\x31\x92\x13\xf5\x13\x61\xc6\xe3\x2c\x35\xe1\x70\x4a\x21\x9b\xb9\xd6\xc9\xfc\x27\x2a\x91\xf1\xb1\xaf\x44\x46\x5f\x2b\xa3\x7e\x54\x20\xa5\xe2\xba\xdb\xbe\xf0\xa2\x8b\x95\xf7\xd7\x33\x3c\xc7\x8f\x77\x7f\xe1\x31\xfa\x5a\x15\x81\xcf\x6d\x32\x2e\x5e\xa8\xa0\x69\xdc\x45\xf0\x4a\x15\xae\x18\xb2\xc8\x2a\x4f\x64\x8d\xf9\x6b\x82\x06\x55\xb0\xa4\x9d\xb7\x8e\xa7\x6c\xdd\xa1\x9d\x52\x0c\x36\xdb\xd4\x41\x8b\x88\x62\x53\xd5\xde\xd2\x7c\x64\x8b\x28\xec\xf8\x24\xfc\x47\x2a\x14\xf8\x48\x33\x47\x65\x26\x42\x8a\x16\x58\x7c\x1c\xa1\x7c\xfd\xa9\x08\xed\x15\x6b\x86\x9d\xce\x57\xbe\xc8\x4b\xf1\x9a\x86\xd7\x5c\x9b\xe8\xd9\xb5\x71\xdf\xb5\x7f\xb3\x58\xbb\x82\x5a\x01\xf7\x09\xf7\x4b\x7b\xa4\xe3\xb2\xc8\x77\x75\x66\x8f\x6e\x9e\x0f\x6a\x8d\xdd\x7e\x91\xa0\xa4\xe6\xba\x49\x0e\x1f\xf0\x6d\x1f\xcf\xcf\x6d\x9e\x9f\xd4\x5a\xc0\xb7\x02\xc4\x41\x65\x93\x86\x8b\x04\x91\x90\x58\x9d\xd1\x38\x35\x64\x4e\x0b\x77\xb7\x49\x06\x19\xe2\x5d\x98\x07\xc0\xe1\xf8\xda\xf5\x0c\x0f\xfa\xe3\x8e\xcf\x7c\xb1\x14\x94\xf4\x63\xb5\x95\xfe\xcb\xc4\x8a\xca\x32\x1e\xfb\x36\x5e\x9d\x29\x4c\xf0\x05\x38\x60\xbd\x0e\xfb\xc8\x16\xaf\xd8\xa4\x67\xca\x91\xb8\x2a\x12\xe0\x29\xb0\xc6\x66\x1b\xd2\xac\x9f\x2e\x27\xcb\x26\xeb\xef\x50\xd4\xf9\x70\x17\x04\x0b\x58\xbd\x15\x4e\xc7\x1d\x14\x03\x89\x67\x59\x9d\x65\xf8\xf7\x3f\xab\x9d\x49\x45\x16\xd9\x25\x00\xec\x34\x55\x9c\x63\x6d\x72\xcd\x0d\xa7\xdb\x88\x55\x32\x3b\x4a\x97\x80\x6f\x16\x09\x85\xb3\x13\xc5\x71\xfc\x6a\xbd\x53\xd3\x53\x9a\x25\x69\x6e\x5c\xba\x85\xad\x5d\xe0\xb3\x23\x4d\x39\xb5\xc3\x07\xba\xe3\x28\x8e\xc6\x51\x92\x76\x3c\x6a\x69\x5d\x6b\x0c\xad\xab\x24\x66\x62\x6d\x3f\xa7\x2e\x61\x3c\xd5\xae\xd5\x6a\x00\x58\x30\x94\xde\x0a\x46\x0d\xf4\xc6\x52\x09\xa0\x93\x0d\xae\xef\x09\xdd\xa5\x71\x02\x8e\x9c\xb3\x25\x9e\x42\xf4\x5c\x1b\x14\xde\x2c\x46\x09\x75\x67\xdf\xd4\xd9\xd7\x0f\x74\xd1\x79\x5d\x89\xce\x3c\x4e\x55\x39\xf1\x12\xb7\x6e\xde\x67\xbb\x83\xd2\x10\xab\x85\xb0\x3f\xc2\x84\xbf\x39\xf1\x61\xe1\x65\x2d\x4b\xb9\xee\xd3\x04\xe2\x14\x22\x66\xb8\x1e\x78\x03\xd2\x4b\xc9\xd9\x71\x15\x9b\xb3\xaa\x62\xe3\x31\x2b\x23\x93\x87\x65\x1c\x25\x56\x71\x37\x02\x2b\x2f\xdd\x68\x2d\xda\xb6\xdd\x85\x34\x0b\x2d\xa3\xd3\xc4\x73\xd5\xee\x6d\x63\x23\x1d\x3c\xd8\xcd\x7c\x2b\xa4\xdb\x47\xd5\xe7\xf9\xa6\x01\xcf\x9d\x3d\xda\x1d\x46\xd8\xab\xf0\xd0\x10\x96\xf3\xb5\x92\x47\xf4\x6e\x50\xbc\x42\x74\x6e\x40\x92\x60\xde\x1d\xb8\xde\x37\xa0\x5d\x52\x13\x73\x5e\xb5\x9e\xbe\x41\xc1\x8b\xb4\x78\x68\x48\xf9\xd0\x66\x7f\xb1\xfa\x3f\x0c\xde\x03\xe4\x3a\xb9\x4c\x33\x99\x3a\xf2\x5f\x7f\x59\x03\x94\x66\x1d\x33\x4e\x75\x7a\x61\xd3\x22\x5f\x4e\x3f\xf3\xb5\x27\x41\x63\x2b\xa8\xe7\xce\x97\x84\x09\xe8\x34\xed\x72\x84\xcf\xdb\x49\x99\x1b\x0b\xe6\x55\x38\x0c\x28\xa9\x5c\x23\xd7\x93\xd9\x25\x68\xcb\x13\xb8\xed\x9f\xec\x87\xc6\x34\xce\x1d\x6a\xa2\x75\x9f\xc0\xbb\xa3\xae\xb9\x03\xce\x39\x4c\xc6\x79\x6c\x00\x6c\x93\xbb\x98\x40\x44\x2f\xbb\x29\x36\x80\x73\xbf\x0b\x11\x26\xa2\xbd\x1d\xab\x88\x86\x99\xb5\x00\xdb\x09\xf1\xf7\x2a\x95\xed\xa4\x3a\xa8\x93\x88\x1f\x4c\x94\x22\xea\xa6\x92\x7c\x7e\x37\x70\xdc\xb1\xff\xfa\xa3\x40\x55\xef\xb6\x21\xa0\xe0\x92\x88\x6a\x93\xcd\xa2\x30\x9d\x56\xa9\x23\x2e\xcd\xa2\x76\x70\x47\x89\x6e\x7e\x8b\x46\x5c\xfe\xc8\xc7\x1d\x36\x63\x45\x21\x2d\x0b\x28\x55\x15\xef\xad\x2e\xc4\xe6\xf3\x53\x5a\x36\x5d\xab\x97\x5c\xd2\x42\xb7\xb7\x94\x98\x5c\x18\x15\x95\x5f\xd8\x51\x6c\x84\xea\x78\xb9\x34\xd9\x42\x41\x78\xe8\xd0\x91\xca\x8f\x67\x78\x4d\xab\xf8\x70\x9d\xd9\xdd\x71\x65\x5c\x69\xe0\xc5\x8e\x1f\xef\x96\x49\xd4\xb7\x49\x11\x2d\x44\xac\x0f\xa5\x3b\x5f\xa4\xed\xef\xa9\x2d\xc2\x83\x2b\x92\x2a\xd3\x95\x38\xa9\xd1\xb5\xb5\x1d\x9b\x30\xb4\xe3\xa2\x72\x0d\x71\x24\x88\x30\x80\xdf\xa7\x68\xe7\x16\xe2\x7f\x3f\x77\xb1\x81\xbf\xf1\x92\xb0\x45\x4d\x7c\xad\x82\xa9\xcb\x00\xce\xb8\xa3\x5b\xbd\x49\xe6\x22\x81\x82\x35\x56\xcd\xba\x66\xe8\x6d\x92\x38\x3c\x5b\x0d\x44\xb2\x14\x39\x6b\x23\xc5\xd1\x8e\x23\x60\xfb\x23\xd5\x5e\xb3\x92\x66\x8b\x4f\x6e\x21\xb7\x12\xc1\xb7\x1d\xa8\x45\x62\xfa\xfe\x3d\x25\x39\x99\x6c\x45\x57\xe9\xce\x6a\x7a\xbe\x13\x81\x2a\x31\xbe\x15\xf8\x84\xf9\xc5\x1a\x2f\xfc\x35\xb8\x99\x70\xb0\xae\xab\x5e\xef\xfb\x4a\xef\xf3\x4e\xad\xa7\x10\x6f\xcd\x4f\x19\xa8\x96\xf2\x93\x64\x06\x38\xc4\x27\xf7\x77\x73\x55\x6b\x93\x78\x28\xa0\x53\x42\x75\x7c\xa4\x57\x14\x56\xbd\x18\x66\xe9\xf2\xb4\xea\xf6\xff\x26\x5e\x8c\xf5\x0b\x94\x50\xc8\x37\x29\x65\x21\xba\x06\x3e\x65\xd1\x8b\x4d\xb8\x98\xef\xee\x38\x15\xbf\xd7\xf0\x06\xb0\xbb\xef\x07\xaa\x01\xe1\x0d\x9a\x7c\x01\x14\x61\x68\x84\x64\x81\x06\xdd\x99\xa8\xea\x45\xf9\xdb\x74\x4b\xf7\xbf\x6d\x13\x2c\xfe\xf9\x2a\xc2\x09\x8d\x96\x1e\x3c\xa1\xa4\x07\x4f\xa8\x92\xfe\xb0\xcc\x7b\x26\xe9\xef\x52\xfe\xe8\x79\x3a\x00\xa4\xd6\x01\x43\x87\x0a\xff\x5d\x1c\x55\xf0\x78\xde\x9f\xa8\x8e\xb5\x8b\x13\x95\xb5\x44\x0d\x4f\x1a\x5d\x14\xe8\xdd\x8c\xc6\xec\x06\x22\x15\x7e\x16\x43\xc1\x37\x0a\x70\x97\x87\x59\x34\x2e\xb0\x6e\x1d\x24\xab\xfa\x69\x81\x64\xb5\xb1\xde\xa6\x63\x9b\x19\xb0\x6a\x3a\xa4\xd8\xdb\xb0\xb9\xc0\x9e\xdf\x44\xfe\x55\xf2\x6f\x4d\x4c\xf2\x3c\xa5\x2e\x32\x40\x1e\x25\xcf\xea\x11\x25\xef\xaa\x36\xf4\xd7\xd4\x18\x86\x86\x00\x14\xd3\x8a\x35\xfc\x14\xe6\x08\xdf\x71\x37\x50\x89\x5b\x3e\x60\xf8\xcf\x94\x23\x57\x66\x3d\xb4\xcb\x1f\x69\x05\x72\x49\x9e\x3b\x34\x99\x5d\x16\x6f\x9a\xdb\x3e\x02\xc5\xc1\x73\xa9\x76\x64\xbf\x62\xb1\x0e\xc1\x12\xfe\x6d\x32\x49\x2c\x25\x4e\xb3\x8c\xb3\xed\xc4\xa4\x0e\x2c\xf4\xc1\x12\x32\x52\x30\x17\xac\x4a\xee\x88\xad\xab\xb1\xc4\xd9\xba\x6d\xa6\xa5\xac\x0a\x39\x2a\xee\x2c\xe2\xa2\xda\xc4\xe3\x4a\x4e\xa8\x56\xf9\x22\xa2\x0c\x65\xa7\xc6\x50\x53\xe3\xae\xf1\x4b\x63\xa1\x8c\x0b\xe6\x77\x55\x45\x21\xd7\x6d\x16\xe8\xa4\xc3\x92\x4d\x98\x90\x46\xf2\x47\xbe\xc5\xee\xb2\xa2\x8d\xa5\x96\x57\xea\xba\xf6\xd5\x92\x3f\x55\x1b\xfd\x4f\x9d\x9f\x38\x40\x3d\x46\x22\x46\xb8\xb8\x70\xb1\x24\x78\xa8\xbe\x42\xd8\xc9\x5b\x4a\xa9\xa3\x32\x1c\x4e\x4f\x79\x51\x45\xd6\x43\x76\x42\xeb\x8e\x09\xe7\x1b\x13\xe7\x2c\x5d\x7b\x10\x3c\xad\xda\x98\x0c\x31\x6a\xc4\xf1\xca\x0e\xa5\x9c\xb1\x06\x53\x2a\xcd\x3b\x3e\x22\xba\x1a\xf8\xfa\xc6\x19\x4d\xa0\xf9\xb6\x0a\xb3\xa3\x91\x19\xd8\x1d\x8a\x75\xf8\x92\x62\xcd\xbd\x83\x4d\x84\xcd\x0d\x6c\x90\x13\x17\xab\x1c\x2c\x2e\x77\xab\xe3\xaa\x6f\x63\xe3\xe9\xea\xb9\x9f\x86\xbe\x51\x7a\x6b\x7c\xd1\x3e\x8c\x06\x26\xb3\x45\xc1\xa2\xc6\xc2\xa7\x57\xfd\x8a\xb0\xe6\xb5\xa0\xe8\x16\xec\x28\x4a\x22\xf6\xec\x71\xe0\x82\x48\x8a\xaf\x57\x9f\xd6\x05\x86\x51\x0a\x85\x13\x9c\xd5\x82\x59\xa6\x87\xe7\xde\x17\xd5\x70\xb8\xa6\x52\xca\x2f\x7c\xe9\x0b\x1d\xef\x4d\x71\x1e\x81\x6f\x94\xf6\xc0\x82\x85\x2e\xa0\x47\x99\xf8\x3e\xae\xef\xe0\xc4\x82\x3d\xc2\xb9\xc6\xe2\x07\x8d\xe5\xf1\x8b\xdd\xa1\x35\x4b\x2b\x8a\x3c\x04\xaa\x2f\x7c\xad\x0a\xed\xe3\xb2\x17\x47\xf9\xd0\xf6\x09\x40\x27\x4e\x3c\x39\xe4\xe2\xea\x57\x1f\x04\x0a\xf6\xd5\x89\x6a\x1b\x7e\x55\xed\x90\xdc\xc6\x31\x15\x06\x7c\x07\xd8\x44\xaf\x22\xc5\x57\x9f\x47\x1a\x75\x74\x59\xa3\x8e\x2e\xb7\x01\x53\x47\x69\x62\xb2\x70\x88\x77\x81\xc5\xc4\xee\xe3\x6b\xf5\x2e\x83\xcc\xf4\x4b\x48\x1d\x1f\x96\x73\x11\x89\x4a\x66\xd7\x52\xfd\x80\xaf\x6d\x01\x1b\xb8\x42\xb7\x54\x36\x3e\xd1\xc2\x13\x9f\xa8\x3d\x9e\x86\xa1\xc9\x5d\x85\xd3\x65\xd6\x5c\x1e\xb8\x49\x7c\x7c\xf0\x60\xb7\x1a\x61\x8f\x61\x17\x38\x6a\xf5\x21\xd1\x0f\xda\xaf\xe4\xe9\xd3\x64\x65\x14\x15\x2b\xb0\xe1\x22\x97\xa9\xb5\x33\x6b\x05\xc5\x10\x0c\x92\x2f\x31\xa5\xcc\xd9\x40\xab\xca\xfd\x70\xa2\x54\x13\xce\x6a\x0b\xf7\xc3\x40\xd1\x5d\xa7\xc3\x24\x2f\xd2\xe5\x84\x46\x0e\x5e\x14\xb8\x4b\x91\x78\xde\x41\x84\x97\xbe\x13\xd2\xed\x87\xd0\xe6\xb9\x00\x04\xb0\x9a\xef\x07\xaa\xf1\xe8\x7e\xe3\x7c\x3d\x76\xa0\xbb\x90\x99\xb2\x5f\xc6\x42\x9e\x83\x14\x01\x3a\x06\xf9\x5a\xa5\xdc\x7b\x59\x99\x58\xa0\x0a\x1c\x73\x67\xf5\x0e\x7c\xa3\x82\x85\xdc\xc6\xfd\x74\x84\x47\x71\x0a\x0f\xaa\xfc\xa4\x64\x9f\xd0\xf3\x9b\x45\x26\x9e\xf2\xa6\xe4\x9c\x92\x73\xfc\x3d\x78\xad\xd2\x7d\xab\xb3\x3f\xe3\x34\x2b\x6c\x36\xa5\xb8\x3d\x01\x19\x94\xbe\x7d\xd5\xd8\xb0\xd9\xd2\xe0\x3e\xd7\xb5\x26\x8b\x23\x9b\x4d\xd3\x51\x8e\xa1\xbe\x1b\xf8\xa8\xe9\x1c\x82\x48\xb8\x93\x3f\xa4\x39\xc0\x4a\xfe\xa4\xa6\x1f\x9c\x87\xa6\x18\x8a\x47\xae\xd2\x48\xb3\x4e\x0e\xc6\x17\x46\x85\x8b\x61\x87\x07\x73\xad\x29\x21\x8e\x2b\x9a\xcc\xfa\x86\x2a\xae\x72\x9b\x80\xa0\x9f\x9a\x2f\x33\xdb\x5d\x36\x59\xb2\x65\x59\xc3\xb1\x15\x3e\xd4\x7d\x7a\x26\xf3\x21\xdb\x66\x38\x2d\x8c\x25\xe1\x9b\xb6\x0e\x64\xca\x8b\x50\xc6\x5c\x35\xf9\x78\x05\xd9\x8e\x93\xcb\x7d\xd4\x28\xcb\x53\x33\xf6\xd7\xca\x88\xa9\x35\x1d\x97\x8f\x52\xb4\x68\x51\x07\xed\x2e\xa5\x85\x54\x22\xb8\x62\x17\x28\x14\xd1\x45\x05\x56\x0e\xe9\x7d\xfa\xaa\x1a\xb4\xae\xac\xc0\xba\xc7\xad\x64\x65\x5e\xec\xf2\x8f\xba\x67\x46\x31\x40\xc2\xba\x62\xb8\xf7\xae\xaa\x1e\xcb\x4d\x2a\x9f\x8b\xe8\x15\x76\xb4\xa3\x2d\x3b\xec\x39\xea\x5a\x5e\x21\x33\x51\x6e\xa7\xfd\xc7\x99\x2f\x47\xc2\x26\x1f\xbd\x82\x9e\x47\x12\x27\x5b\xea\x01\x7f\xa3\x7b\x70\xf6\xf1\x1a\xbb\x2f\x2d\x35\x4c\xd6\x0d\x7c\xa5\x30\xf2\x29\x42\x2b\x04\xa1\xf0\x76\x18\x5e\x8c\xc3\xf7\x56\x1d\x8b\x5b\xad\x71\x01\x81\x76\x14\xb9\x5f\x65\x67\x04\x29\xda\xd6\xda\x31\x30\x3d\x8b\x76\xbd\xcd\xab\xac\xe8\xa7\x72\x74\x43\x6b\xfa\xf9\x54\x8d\xa8\xca\x67\xcf\xd7\xe9\xd1\x30\x88\xe7\xdc\x99\x6b\x16\x32\x13\xf5\xa7\x7d\x66\xf0\x01\xb6\x11\x1e\x02\xe4\xc8\x08\x67\x7e\x06\x8d\x5c\xc8\xc8\xec\x5e\xf5\x4e\x8a\x2d\xb3\x74\x6c\x4d\xb2\x53\x2d\x9b\x0d\xcd\xd8\x7f\x59\x51\x4a\x5f\xd6\xfc\x09\x0a\x17\xc1\xe0\x52\xaf\xae\xe0\xba\xb3\xa2\xc1\x90\xf0\xe5\xb4\xcf\xaa\x57\x83\xd7\x75\x03\xc1\x00\xdf\x34\x8a\x6b\x5e\x6a\x32\x2a\xa2\x7c\x38\xa5\x10\x69\xf4\x04\xce\x69\xac\x1e\x13\xe8\x91\x9b\xca\x5f\xc9\xd2\x21\x87\x06\xd8\x2c\x3f\xd4\x3b\xe7\x87\x2a\x83\x94\x9b\xa4\x4f\x1c\x2f\x68\x4b\x65\x0a\x73\xc4\x6c\x60\xfa\x95\xdd\xd6\x71\xf4\xa8\x5c\xbf\xc2\xd9\xb2\x4d\x75\x13\x87\xc3\x74\xcc\x9a\x91\x8e\xed\x3c\xd0\x6d\xb3\xde\x7d\x5f\x4a\x0b\x69\xb1\x44\x30\xba\x11\x28\xb9\x89\xfb\x81\x6a\xdc\x92\x78\x58\xaa\x04\x35\xee\x6c\x69\xbb\x8b\x92\xdc\x63\xdd\x98\xc1\x59\x2b\x0e\x5d\x76\xf0\xd7\x71\x66\x17\x6c\x46\xb4\x47\xde\x4f\x3c\xa9\x92\xa9\x27\xdb\x98\x0a\xe2\xa8\xb7\xc2\x10\x21\x38\xf5\x5c\xba\xe0\x9b\xb6\xe2\x31\x09\x6c\xe5\x5b\xcd\x97\xe3\x28\xf3\x2d\xcb\x43\x3b\x12\xb1\x02\xe6\xa2\xc5\x2c\x60\x6b\xa3\x13\x05\xe3\xb2\xde\x48\x96\xcf\x1e\x25\xae\x0d\x2a\xb4\x4f\xf9\x9f\xba\x83\x2d\xaa\x69\x16\xc5\xc1\x6d\xdb\x96\x63\x93\xe7\x1c\xf5\xd4\xc4\x9c\xf9\x46\xad\x97\x71\x14\xc7\x3b\x69\x90\x6b\xb2\x4e\x8e\xef\xe1\xd8\x01\x77\xad\xba\x69\x4e\xe1\x85\x90\x94\xb9\x17\xf8\x2a\xc5\xaf\x2b\x95\x31\xbb\xb0\x10\x85\x11\xf9\x15\x8e\xb7\xe1\xeb\xf4\xf2\x82\x68\x72\xd2\x7c\x69\xaf\xe7\x2a\xce\x0e\x89\xea\xe0\x35\x1a\xdb\xbd\x60\x92\x90\x15\x96\x30\xb6\x6b\x9a\x61\x42\x51\x49\xdf\x05\xaa\x4a\x5a\x42\x5b\x20\x78\xfd\x28\x1f\xab\x56\x41\x94\xc5\x1f\xa8\x12\xf9\x83\xb6\x4f\x2d\x10\xe5\x68\x54\x62\x21\xc8\xf1\x4d\x6b\x47\x58\xe2\xb7\xba\xff\x87\x0e\x75\xe3\x34\xc7\x79\x0f\x83\x7d\x0b\x39\x6f\x79\x38\x1a\x4c\xcc\xed\x9b\x81\xaf\xf0\x4d\x81\x2e\x5d\xe4\x02\xb7\xfa\x6e\x07\x0f\x56\xbe\x5b\x12\x0e\xa3\x5c\xc6\x4e\x5c\x42\x9a\x50\x61\xcd\xf8\x8c\x0b\x67\x42\xd3\xb7\x39\xd9\x56\x09\x4b\xe9\xb9\xd5\x63\xbc\xc4\x9e\xce\x0d\x5d\x4d\xde\x3d\xb3\xf5\x8d\x2a\x5f\x63\x6c\xb3\x8e\xa7\x7d\x01\x37\xa1\xc8\x3c\xbb\xb0\x5a\x0a\x3f\x3b\x95\x4c\x21\xb7\x80\x23\x77\x73\x71\xa2\x2a\x6f\xe0\x9e\x53\x14\x1c\x22\x3a\xa8\x01\x34\x53\x0a\x66\xb3\xbc\xb8\x32\xa5\xfa\x8c\x3f\x50\x41\xfa\x55\x75\xd4\x9c\xaa\xe5\x4e\xa2\x81\x9d\xee\x7c\xe1\xc5\xcd\x0d\x85\x6b\x85\x80\x99\x53\xe1\xd4\x9d\x74\x2d\x38\x83\xaf\x95\x69\xe1\xd6\x0d\x1e\xf7\xbc\x7a\xf4\xf3\x8d\x3d\x49\xf5\xa1\x95\x5e\x99\x25\x53\x5a\xe1\xe5\xa2\xce\xb4\xdf\x0b\x7c\x0e\xb8\x59\x94\x3b\x76\xe0\xb9\x6e\xba\xb0\xb0\xb3\xae\x60\x77\x98\xa3\x87\xc1\xbe\x19\x8f\xf4\x7e\x80\xf1\x75\xc5\x50\xd7\x7c\x71\x5b\xa5\x89\xee\xd7\x9a\x9a\x86\x85\xe9\x78\x3a\x9f\x33\x70\x27\xf8\x46\x55\x17\x96\x6d\xbe\x43\x35\x7d\xdd\x54\x0a\x9d\xbf\x45\xf3\x8f\x65\xc5\x49\x66\x78\x4e\x1c\x29\x61\x52\x76\xcf\x6c\xdd\x51\xc4\xe6\x35\x1a\x97\x85\x2b\x87\x33\xe1\x1c\xcc\xb1\xb0\xcf\xa9\xc6\x94\x2c\x5a\xb2\xa4\x81\x27\x7d\xa1\x1d\x97\xa0\xdc\x35\xa3\xe9\x32\x28\x91\x85\x81\x7e\xcd\x03\xc0\x7e\xff\x57\x26\x5e\xf4\xf0\x8f\x29\xd3\x2b\xb9\x8b\xe6\x98\x77\x7b\x69\x31\xdc\xd1\x39\x78\x50\xc4\x17\x29\xb9\x26\xbd\x44\x14\x96\xc3\xb3\xfe\x1e\xb5\xd8\xd7\x5c\x33\x71\x51\xfd\xa3\x0f\x6c\x36\xca\x3b\x75\xac\xa8\x53\x8a\x39\xd5\x70\xe8\x67\x8f\x76\xf3\x95\xd1\xd8\x14\x1c\x6d\x83\xe6\x01\xf8\x12\xbe\x6e\xc3\x09\xf4\x4d\x14\x03\x27\x20\x72\xa8\x1e\x98\x7d\x79\xf2\x53\x2a\x97\x13\xc6\x26\x03\x3a\x78\x4a\xc3\x7b\xe8\xe9\x5d\x0f\x88\x43\x7b\x68\x29\xc2\xa8\xb2\x3a\xec\x17\x20\xa7\x80\xf0\x94\xaf\x5b\x08\x73\x96\x0d\xa0\x39\xb4\x65\x04\xae\xee\xcf\xb7\x73\x9f\xea\x30\x0d\xd3\x38\xea\x9b\x95\x69\x8f\x16\x3f\xc7\xb9\x6b\x04\x42\x6f\x4f\x3c\xda\xe7\x6e\xa0\xd0\x0a\x1f\xba\xe3\x05\x09\x64\xbb\xa3\x26\x2f\x5a\xad\x20\x58\x87\x47\x81\x16\x44\x57\x8c\x18\xd7\x95\x5a\xd3\x85\x66\xa1\xf8\x85\x23\xdd\xd8\x38\x21\x17\xa4\xd4\x6e\xa8\x9e\xfe\x1b\x2a\x50\x5d\x4c\x20\xce\x09\x8c\x3d\xd2\x8b\xa7\x34\x73\x37\x70\x35\xb0\x89\xb7\x35\x2b\x4d\x94\x44\x4b\x46\x58\xfe\x9c\x9e\xab\xea\xd0\xf7\x4c\x89\x23\xcb\x2d\x5b\x22\x77\x59\xfd\x19\x5f\xab\xb4\xf6\xa0\xfc\x6a\x35\xef\x40\xfc\x61\x93\x83\xbe\x92\xaf\xdb\xdc\xa5\x7e\x64\x73\x8b\x94\xaf\x90\x20\x76\x3c\x21\x62\x1b\x81\xb5\xc9\x32\x93\x0c\x24\x24\xe6\xe4\xba\x56\xc3\x7f\xcd\x31\x6c\x9b\xe5\x6c\x85\xd0\x92\x70\x9e\x1f\x72\x7c\x85\x7d\xa1\xd1\x1c\xd0\xbb\x14\x9a\x63\x4f\x27\x39\xce\xd2\x7e\x19\xda\x2c\x9f\xf6\xed\xa9\xf3\x13\x95\xd5\x66\xfa\x78\x27\x18\xeb\x41\xd2\x1f\xd4\xf2\x10\x51\x92\x17\x99\x35\xa3\x8e\x6f\x99\xbe\xa0\xd9\xa2\x2f\xb4\xc5\xa8\xa4\x8e\x0f\x47\x15\x07\xc8\xfb\x78\x4d\xbe\x51\x35\x49\xe8\x90\xa1\x17\xa6\x72\x4e\xd8\x8e\xc3\xb7\x13\xa3\xde\x02\x52\x09\xcd\xd8\xf4\x62\x8b\x2c\x87\x23\x5a\x3a\xa6\xb8\xd5\xdd\x5c\xdc\x6e\x60\x0d\x7f\xd1\x25\x1c\xd8\x23\xac\x09\x15\x08\xdb\x48\x13\x80\xf9\x5c\xd7\x94\x79\x91\x99\x58\xa0\xf4\x92\xed\x53\xe4\x4d\x97\x5b\x8d\x56\x51\x26\x89\xd4\x5d\x61\xa8\x1e\x05\xde\x80\x3d\x72\x09\xab\x25\x9b\x0c\x2c\x64\x8d\x9c\x46\xd0\xba\xd2\x08\x5a\x57\xdd\x9a\x4b\x26\xee\xdb\x57\x94\x64\xc2\x49\xa5\xe6\x71\x32\xd0\xe7\x7b\x19\xf5\x95\xc8\x3d\x5a\xed\xf9\xda\xa1\x96\xfb\x69\x3a\xca\xfb\x06\xdb\x05\x40\xfa\x53\x0a\x54\x7f\x4a\xd9\xba\x22\x33\x7d\x9b\xe5\x24\x95\x0b\x1f\x0d\x80\x3a\x9c\x81\xa7\x03\x9f\x0b\x63\x21\x4c\x1c\x2d\xd7\xb1\xe4\x60\x77\xc1\x97\x2b\xfa\x0e\x2a\x27\x05\x8f\x05\x88\x8e\x7b\xb5\x34\x62\x52\xbc\x02\x00\x0a\xab\xcc\xe9\xc6\xfb\xb3\xea\x4c\x8e\x32\x66\x2d\xc6\xb2\x5f\x85\x4b\xc1\x37\x2d\x69\x98\x23\xdd\x3c\x5d\x8a\x2c\x92\x7d\xb5\x46\x7c\x49\x7d\x7a\xab\x35\x5e\x21\xd6\x0e\x46\xc2\x38\xda\x6b\x8f\x35\xb9\xa5\x30\x77\xd0\x75\x08\x21\x20\x85\x80\xfa\xad\x40\x85\xb3\xb7\x03\xaf\xc5\x05\x91\x4e\x8c\xe0\xb7\x35\xf5\x49\x5a\xe6\x45\x9a\x30\x64\x00\x27\x28\x13\xae\xc3\x24\xff\x33\xd5\xc9\xcd\xde\x2b\x66\xec\x8e\x1a\x92\x5e\x54\xec\xf1\xc5\xb1\xdb\x70\x65\x61\x5b\xa6\x91\xd4\xc1\x5e\xe1\x0c\x9d\x83\x82\x7b\x3d\xad\x8b\x81\x82\x80\xdd\x40\xa3\x80\x63\x8c\x71\x6f\x71\x87\xd6\x01\xdc\xec\x9b\x64\x6c\x81\xc6\x45\x9c\x0d\x44\xf4\x7e\xd5\xc6\x38\x30\x71\xbe\x9c\x66\x72\x9e\xb7\x72\xe4\x8a\x35\x8f\xcd\x52\x94\x0f\x3b\xbe\xbf\x0a\xa9\x0f\xbe\x76\x0e\x76\x54\x44\x89\xcd\x4c\xb6\x32\xe5\x3b\x10\x1e\x04\x7e\x4d\x5d\xa0\x0e\x12\x61\x02\x6e\x09\x36\x43\x1b\xdb\x5e\x26\xc0\x54\x61\x41\xf7\x29\xa0\x77\x14\xb1\x8a\x4d\xa2\x38\x66\x72\x61\x61\xe7\xf1\xc1\xc4\xa9\xc0\xcf\xe3\x20\x33\xbd\x1e\x9b\x1b\x0c\x22\xb4\xc7\xf8\x5a\xa1\x26\xc2\x38\x1a\x93\x1b\xe1\x5a\x85\x0e\x1f\x70\xad\x42\x02\x37\x2c\x93\xbe\xcd\x96\xd3\x6c\xd1\xa2\x84\xab\x72\xf0\x3e\xdb\xea\x9b\x9a\x37\xda\x5a\xfc\x89\xc1\x8b\x4f\x23\x6c\x4a\x9c\x26\x7c\xdd\xde\xcc\x34\xc8\xd2\x65\xe7\xb5\x28\x04\x8b\x47\x06\x6f\xdd\x60\x47\x5f\xa8\x69\xb5\xc1\xa9\xe8\x28\xac\x56\xc7\xc1\xb3\xf3\xa1\x19\xf1\x68\x62\x3d\xae\xa9\xa3\x6e\xad\xd1\xd4\x7f\xec\x00\x1d\x35\x59\x14\xbb\x5a\x84\xe6\x54\x10\xb2\x05\xdf\x4b\x69\x5f\xb6\x59\x48\xb1\xa1\x6f\x0b\xbe\xa3\xfe\xf6\x8e\x02\x47\x10\x23\xd0\x67\xaa\x79\x10\xe9\x11\x65\x6e\xde\xc1\x0e\xc2\xc1\x73\x53\x37\xfc\xbe\xc5\x47\x35\xf3\x5d\xe2\x20\x03\xc6\xe9\x2e\x6d\x0e\xcc\xe4\x1a\x72\x63\xfc\x1f\x81\x52\x4e\xfb\xa8\x86\xaa\xf2\xf8\xeb\x1f\x07\x8a\xed\xe5\x46\x35\x51\x9b\xef\x91\x21\x17\x8c\xdb\x53\x4a\xfd\xa2\x6f\xf3\x71\x66\x4d\x9f\x4e\x7f\x58\x31\xde\xcd\x7c\x43\xeb\x19\x7e\xdc\xdb\xf4\x23\x7c\xdd\x26\x8f\x15\xdb\x25\xcb\xf5\x44\x69\x2b\xa9\x3e\x81\x32\x15\xa0\x2c\xe2\x79\x3d\xed\x0b\x2f\xb9\x0d\xcb\x22\x85\xb2\xca\x16\x94\x31\x5f\xb7\x9d\x94\x83\x2c\xa2\xfc\xda\x94\x02\x65\x23\x1d\x88\x9e\xd0\x7b\xaa\x2f\xe7\xaa\xce\xdd\xdb\xb8\x58\x36\xac\xdf\xe4\x70\xb3\xcf\x4b\x5b\xc8\x27\x81\x78\x56\xa3\x68\x11\xd2\x10\xd2\xec\x48\x73\x07\xd3\x70\x46\xf1\x23\xfe\x80\x3e\x8d\x9c\x54\x13\x79\xf2\xe2\xec\xd1\xae\x29\x0a\x3b\x1a\xb3\xd2\x0a\x53\xd7\x05\x9e\xca\xfd\xf8\xdb\xcd\x84\xf5\x33\xcf\x50\xa9\x00\x3e\x0a\x5e\x45\xa1\x5e\x66\x1d\xd3\x82\x5f\x85\x89\xcd\x96\x6c\x47\x29\xa8\x9c\xd4\x0a\x2a\x27\xdb\x18\xd2\xf3\x22\x8d\x6d\x82\x6d\xcd\xe2\xac\x78\x2c\x51\x6a\x6d\x71\xd8\x86\x36\x16\x87\x0d\xbb\x1f\xc8\x7f\xbe\x9e\x78\x0e\xbe\xd0\x66\x45\xb4\x40\x2a\x17\x08\xdb\xb8\x6f\x97\xc2\x36\xe9\xe1\x6d\xc2\x67\xe7\xbb\xb9\xb5\x1d\x45\xf0\x84\x10\x4c\x5a\xb4\x3e\xe3\xf6\x7f\x9a\x15\xf1\x0a\xda\x1d\x30\x27\x97\x54\x2e\x18\xed\xc8\xa8\x63\xdd\x75\x33\x3a\xb6\x03\x7e\x74\xf1\x48\xe9\x77\xc4\x57\x6d\xe1\x9a\xb3\x61\x68\x93\xea\x64\x9e\xd6\xe8\x9d\xad\x80\x1f\x0f\x12\xaa\xa1\x7f\x9a\x46\x88\x1a\x57\x96\xa2\x24\x04\x98\x77\xd6\x41\xef\xb4\xde\x14\xad\x67\x38\x4b\x1c\x0d\x73\x8f\x93\xd2\x52\xfb\x46\x1b\x1c\xbd\x97\x45\xf9\x22\x6d\x21\x2d\xaa\x22\x1a\x4a\xde\x1d\xec\xd9\x3c\xea\xdb\x0e\x81\x93\xb8\x8b\x44\xa1\x7a\x4f\xb6\xe2\x88\x06\x36\xa1\x38\xb0\x5f\x67\x93\xac\xde\x01\xd4\xaa\x53\x33\x5a\xf9\xb1\x05\x47\x34\xdb\x2d\x4c\x16\x2d\x2c\xa0\x21\x02\x80\x8a\xd7\x55\xb7\x21\x0b\x9c\x0b\x26\xdf\x47\x71\xe3\x34\x2b\x32\xb3\x82\x9c\x21\x36\xc1\x7b\x13\xa5\xa0\xf1\x5e\xb0\x57\x21\xb7\xfa\x3b\x7c\x67\xcf\x45\x05\x16\xba\x37\xf1\xb2\x67\x57\x28\x73\x21\xf9\x51\xa5\xbd\x78\x4e\x31\x51\x98\x81\xa5\x6c\x9f\xf0\x98\xf8\x66\xf9\x75\xad\x4e\x4e\xcb\x59\x94\xca\xb5\x27\xbd\x1c\x71\x89\x43\x40\x38\x64\xc6\xc5\x11\xf2\xfb\x36\xcd\x43\x93\x29\x4c\xe6\x36\xb4\x9f\xf0\xcd\x6a\x8b\xdb\x31\x4a\x63\x1b\x96\x31\x7f\x0a\x26\x02\x70\x1b\xbe\x6e\xd1\xb7\x3d\xd2\xcd\xec\x18\x82\x4f\xe4\x05\xc0\x0b\x7c\x17\x96\x1e\x37\xeb\x5a\x70\xe3\x63\xd5\x8c\x9a\x2f\x47\x23\x48\x55\x7b\xf2\xd0\xfb\x35\xf2\x50\x3f\x59\x49\x9a\xe4\x36\xc9\xd9\x10\x49\x96\x99\xa6\x9c\x6f\x3e\x35\x59\xb1\x68\xe3\x38\x1d\x70\x94\x8f\x53\x0d\xcc\xff\xd8\xfb\x5c\x85\xc2\x50\x6f\x9f\xd1\xf9\x94\xa5\x34\x5e\xb2\x53\xca\xcf\x40\x38\x82\xfc\xd7\xf5\x89\x47\xd0\x9c\x74\x2e\x22\x89\x1b\xb3\xf6\x23\x52\xa3\xb7\x02\x95\xb5\xbd\xd5\xd6\x81\xd0\xcb\xca\xc8\xa7\xbc\x9d\x94\xa6\x6b\xc3\x39\xe3\xe8\x15\x16\xe2\x88\x33\x1b\x38\x72\x4f\x4e\x94\xdc\xcd\xc9\x5a\xa8\x32\x8a\x5e\xc6\x58\xd5\xb4\x22\x24\x8f\xa7\x50\xc7\xd6\x16\x8f\x79\x3e\x9f\xfb\xca\x79\xbc\x33\x51\x58\xd6\xfb\xb0\x69\x70\xdf\x3b\x84\x75\x40\x61\xfe\x6a\x53\x33\x5e\x32\x26\x95\x57\xce\x5f\x45\xc6\x96\x3f\xd0\xd8\xc4\xa4\x81\x96\x18\x97\x98\xe0\xce\x16\xac\x1b\x69\x73\x69\x2b\xa9\xa4\x0b\x0b\x11\x94\x35\xe6\x1d\xec\xa3\xe3\x3a\x31\x2f\x37\x2c\xaf\x17\x0e\xb2\x4c\x0a\x28\x4e\x87\xca\x2e\xbf\xad\x60\x01\x63\x13\x25\x05\xf1\x58\x7b\x52\xa1\x1b\x13\xa5\x12\x7b\x1a\x15\x0d\xf8\xe5\xd8\x2c\x78\xe0\x37\xb5\xda\x55\x96\xe6\xf9\xce\x7a\x17\x78\x35\x98\x7c\x33\x51\x07\x11\xfc\x30\xd5\x38\x2c\x55\xf0\x8b\x35\x30\x93\x0a\x35\xcd\x70\x4a\xc5\x52\x97\x54\x04\xfe\x9b\xda\x2b\x6e\x13\x34\x3b\x02\x9a\x89\x88\x3d\x08\xc1\xed\xd1\x1b\xc9\xa9\xe1\x7f\x69\x85\xb9\x90\x60\xdf\xde\x54\xb5\xa0\x37\x15\x32\x67\x9c\xa5\x4b\x29\x44\xd2\xaa\xaf\x71\x3c\x6d\x87\x0e\x39\xa1\x62\x95\xf5\xb2\x89\x2d\xa2\x70\x5a\x65\x08\x59\x9c\x9b\x91\xc9\xda\x8b\xa6\xef\x90\xde\x86\xa7\x5d\x77\x5b\x92\x53\x32\xd2\xe7\xfe\x5d\x4a\xc4\x0b\xd6\x5e\x56\xf9\x1e\x47\x70\x8a\x82\x36\xaa\x91\x3f\x08\x94\x12\x02\x9a\xb8\x84\x60\xd9\x37\x48\x6e\x6b\x34\x03\xcf\xcd\x55\xe6\xcf\x44\x19\xd9\x3e\xc0\xfe\x30\x03\x08\xaf\x1f\x28\xc5\x80\x75\x15\xc3\x0f\xd2\x6c\x60\x85\x0e\x1c\x73\x0a\x15\x02\xbe\x6e\x48\x3b\x52\x03\x4c\x34\x18\x0a\xdb\x26\x0c\xc3\x9d\x40\x29\x9a\xdd\x69\x01\x9f\xcc\x57\xa1\xdc\xa8\x27\xfb\x4a\x1a\x6a\x69\xbd\x48\xbc\xee\x91\x01\x8b\xa6\x57\xc6\xf8\x4b\x51\x6d\x57\xce\xe4\xa5\x40\xd7\xa0\x41\x4d\xbe\x9b\x1e\x46\xe6\x67\xea\xc5\xc3\x07\xe4\x65\x03\x1d\x0b\xe9\x36\x8b\xd7\xb8\xd0\xcc\x77\x98\x6d\x29\x51\x78\xd7\xfc\x5a\xad\x5c\xd1\x68\x3d\x38\x38\xdb\x1d\x9b\xac\x88\xc2\x68\x6c\x12\x86\x9a\xa3\x0f\x73\x76\xf3\xaa\x42\x87\xf7\x89\x85\xbe\xe3\x55\xb5\x60\xf9\xf9\x5a\xc9\x6e\xc6\x65\x12\x0e\x15\x7e\xee\xac\xc2\xcf\x9d\x6d\x67\x16\xcd\xad\x5d\xd4\x22\x87\xdf\x0c\x14\xe5\xc7\x37\x5b\x38\xa5\x66\xab\x8b\xc5\xea\x61\x36\xcf\x57\x8f\xb1\x79\xbe\x96\x22\x4b\xd3\xf8\x31\x05\x06\xb9\x13\x28\xee\xfb\xd3\x9a\x9b\xe2\xf2\x44\x77\xba\x70\x67\x9c\x80\x5d\xaa\xc7\x46\x7a\x75\x37\x19\x69\xc6\x2f\x05\x0a\xe6\x85\x44\x8f\x30\x9e\xfb\x0d\x9e\xe6\xc3\x29\x5f\x71\x7b\xa4\xc5\x67\x77\xcc\xe0\x27\x51\x31\x3a\xef\xdc\xe5\x70\x25\x8c\x25\x56\xda\xdc\xb5\xea\x7d\x05\x68\xcf\x08\xe0\xcb\xef\xf8\xaf\xa6\x51\x52\x80\x76\x48\x12\xd0\xbf\xa6\x13\xd0\xbf\xa6\x9e\x27\xcb\x57\x00\xda\x43\x8e\x92\x55\x01\x11\x79\x31\x8a\x5a\x84\x13\x54\x28\x3f\xb3\x4f\x91\xe8\x10\xb8\x09\x60\x17\x4d\xe7\x82\xca\x04\x83\xaf\x91\x8c\x7f\xd4\x88\xed\x9f\x9f\xa3\xe4\xf3\x42\x66\x46\x52\xca\xc5\x88\xff\x40\x31\x4b\xfc\xc0\xcb\x14\x87\x61\x6c\xa2\x11\x27\x58\x04\xa3\xe2\xe9\xbb\x5b\xcb\xdd\x69\xaf\x30\x91\x47\x87\x71\x05\x38\xd0\xd5\xe0\x96\x58\x69\x21\x2d\x93\xfe\x8e\xda\x2e\x56\x58\x86\x77\x55\xb7\xd3\x3d\xd5\xa7\xc1\x6e\x35\xd6\x50\xb3\xe8\x57\x59\x8b\xc2\x9a\xd0\x57\x84\x50\xcb\xf9\x5d\xda\x09\x7c\xdd\x08\xac\x9e\x9f\xa3\xa6\x48\xc5\x74\x8c\xc0\x9e\xaf\xdd\x42\x29\xb2\x68\x30\xb0\xd0\xfb\x90\x86\x42\x95\xb3\x6a\x1e\xef\xd5\x76\xc9\xd2\x9e\xb3\x5d\x52\xd5\xd0\xd5\x0e\x75\x4e\xa7\x71\x14\x46\x36\x9f\xee\x7c\xe1\x45\x69\x0f\xa2\xe7\xc0\xab\x9f\xd2\x4a\xb5\xe7\x6a\x79\x4e\xc9\xa4\xf5\x62\x9b\xf4\xa5\x4f\x5d\xe9\x10\x3f\xe7\x14\x8a\xb7\x66\xe3\x0f\x1d\x82\x34\x75\xa1\x9c\x37\x59\x58\xbe\xfc\x75\xb5\x41\x5f\x70\x90\xca\xf4\xa4\xd8\xcc\x14\x2a\xf4\x52\x4e\x5c\x47\x8b\x22\x38\x3f\xfc\x1b\x2a\xce\xa2\x6a\x6b\xb2\xa3\x73\x78\xde\x29\x73\xd1\x0a\x87\xb5\xda\x50\x5a\x77\x6f\xc1\x3b\xe1\xff\x98\x78\xfd\xb4\xb7\x6b\x8c\xa2\xd4\xb8\xb4\x93\x2a\xa7\x58\x1d\x90\xc7\x41\x6e\x69\x83\xca\xab\x58\x4e\xb7\x74\xa7\x18\xc8\x87\x91\x9b\xbd\xad\x24\x26\x36\x1a\x6f\xfc\x0b\xdd\x91\xc9\x34\x2d\x18\xe7\x57\x25\x04\xda\xba\xa8\x0e\xce\x76\x47\xa6\x0f\x8e\x53\x3c\x10\x67\x85\x31\xf1\xcc\x16\x8e\xec\xcf\xed\x86\xdf\x7f\xe8\x10\xd1\xef\xa2\x31\x8d\x73\x3f\xb0\x8e\xa7\x14\x47\xf8\x29\x75\xf0\x2d\x9b\x81\xcd\x3b\x9d\x83\x07\x79\x42\x1e\x29\x7d\xfb\x47\x8d\x6d\x7b\xec\xc0\x73\x5d\xfb\x72\xa1\x84\x71\x19\x95\x0a\x3b\x26\x10\xd5\xad\xfb\xf6\xd9\xae\x05\x5b\x1e\x59\x31\xa0\x2e\x10\x7a\xf3\xb5\x42\xcb\x45\xc9\x42\x6c\x8a\x5a\xae\x16\x64\xea\x7c\xdd\xd6\xc4\x9d\x98\x2c\x4b\x97\xe5\x91\x30\xb4\xdc\xc8\xc3\x37\xca\x01\x19\x95\x39\x22\x3d\x9a\x4f\x44\xda\x08\xd6\xf9\x5a\x99\xe1\x03\xe9\x0a\xb5\xf7\xa3\x40\x7a\x0e\x53\xc7\x37\x6d\x49\x5d\xd0\xe5\xd0\x3e\x12\xc2\xec\xea\x35\x84\xd7\x5a\x22\xa5\x81\xcd\x0c\x13\x9e\x3b\x41\x15\xdf\x40\xa8\x41\x18\x0f\x1b\x79\xe0\xd9\xa3\x04\x63\x8c\xa3\xc4\xd1\xf2\x48\x3a\x82\x5e\x48\xf2\x14\x6d\xac\xb2\x89\x19\x8f\xb1\x16\xb9\x96\x19\x78\xd0\xe5\x95\x9a\xfc\x13\x65\x69\x8f\x1d\xe0\x77\xe5\xf3\x98\x6f\x14\x82\x60\x58\x8e\x8c\x28\x58\x09\xff\x62\xb5\xd3\xa4\xab\xd7\x97\x15\xae\x29\x34\x3b\xf3\x12\x0a\x09\x86\xe2\x29\xfd\xb0\xb1\x1f\x8e\x1d\x98\xeb\xf6\x4b\xb4\x4b\xc3\x89\x7e\x3d\xf0\xca\x5a\xaf\xd7\x54\x15\x86\x69\x1a\xe7\x3b\x3d\x06\xe4\x82\x06\x99\x5d\x9c\xd4\x95\x16\x3d\xcf\x0f\x7c\x5e\x94\xcc\x6e\x52\xee\x81\xaf\x7d\x2f\x54\x9a\xc6\x95\xd9\x52\xf8\x50\x4a\xbf\x39\x44\xc9\x56\x44\xa9\xd0\xbc\x37\xf7\x4f\x37\x2d\xb3\xdc\xc6\x4b\x72\xac\x22\xcf\x76\x12\x6d\x6d\x7c\xd3\x8a\x6c\xcd\x6d\xdf\x71\x47\x62\x78\xcf\x69\x4c\xd4\x39\x95\x3c\xcf\x97\xa3\x85\x82\xd7\x86\xa3\x54\xaf\x06\x59\xd6\xe4\x56\x73\xfe\xe2\xec\xd1\xae\x43\x2d\xd6\xdc\xec\x57\x75\xc2\xf3\x55\x05\x00\x1d\x8f\x23\xc4\x9e\x52\xa0\xf2\xad\x49\xfe\xe4\xeb\xdb\x05\x1b\x16\x39\x82\x34\x0f\xce\xf3\x34\x48\xf4\x4b\xc2\x89\xec\x3d\x52\x92\x53\x98\xf2\x95\xb5\x53\x08\x3b\x55\xf6\x9d\x9f\xe8\xa1\x0a\xa8\xe2\x28\x94\x2c\x89\x14\x61\x3e\x50\xad\x4d\x1f\xb8\x3c\x45\x5a\x16\x0b\x11\x74\xe6\x81\xe6\x7a\xb3\x06\x74\xae\x66\x99\x7b\xcf\x5a\x29\xb1\xf2\x71\x16\x25\x03\xd9\x7b\xc8\x3f\x7c\x5f\x6b\xef\x7e\x5f\xeb\x00\xb3\xb4\x3c\xed\x75\xe9\x5f\x52\xce\xed\x4d\x45\xdf\xb3\xa9\x16\xf3\x20\x8d\xfb\x23\x93\xec\xf6\x99\xb0\x53\x98\x09\xaf\x89\x30\xef\x29\x9f\x9d\xd2\xdf\x0f\x26\xbe\x7e\xfc\x1f\x26\x8a\x79\xfb\x2e\x7e\x14\x7f\x05\xac\x04\xff\x87\x43\x3d\xe4\xc3\x32\x41\x9d\x01\x55\x2b\x44\xf4\x08\xff\xb8\x9f\x0b\x29\xd9\xbb\xce\x71\x18\xa7\x71\x9c\x17\xec\xda\x70\x8b\x1f\x3d\x8d\xb4\xfb\xe9\x6a\xac\x89\xd3\x01\x6f\x64\x46\x10\x06\xde\x73\xd2\xad\xa2\x79\x91\x99\x32\xcf\x95\xda\xd2\x29\x6d\x12\x4f\xb9\xdc\x73\x9e\xa6\xc9\x4e\x7a\x49\xcd\xfc\x8f\x08\xe0\xb6\x66\x1a\x81\xc6\xb7\x63\x9f\x11\xce\x82\xab\x3f\x43\xaf\x08\xef\x7b\x5b\x43\xae\xf7\xd0\xa1\xee\x20\x4d\xfb\xd3\x8a\x22\x7e\xa3\xc6\xc5\xef\x93\xf4\xac\xab\x24\xfd\xef\x1e\x09\x52\x26\x79\xb1\x12\x93\x1e\x7a\xf5\x2d\x52\x11\xf0\x07\xc4\xa5\x1a\x67\x53\xdc\x7f\xa2\x9a\x71\xd7\x2c\xe2\xf3\x56\x77\xb5\x99\x7c\x53\x09\x4c\xde\x55\x92\x21\x0c\x94\x13\x1d\xdc\xea\x45\x05\xcc\x45\xf6\xca\x09\x49\xce\x1e\x75\x3e\x36\x96\xb1\xf2\xa5\x67\x7d\x1a\xee\xe0\x41\xe7\x96\xd3\x30\x23\x44\x7f\x2d\x78\xd2\x79\xb6\xa6\x6f\x47\x26\x5b\x64\xc5\xc4\xda\x4a\x45\x26\xec\x81\x52\xbd\xbe\xae\x4e\xe1\xb4\x97\xdb\x6c\x89\xfb\x23\x60\x37\xde\x22\x87\x9d\xaf\xdb\xce\xaf\xcc\xe6\x65\x5c\x4c\xa9\x24\x09\x4e\x18\x8c\xe4\x23\x25\xaa\x71\x65\xf2\xb4\xe6\xab\x58\x4a\xc1\x3a\x39\xe5\xd3\x28\xe0\x4a\x95\x92\x40\xe5\x3a\x0b\x4c\xcf\x47\xd0\x0b\xa6\x5a\xdc\x3b\xc8\xba\x23\xf9\x07\x88\x26\xa2\xad\xd7\x68\x21\x21\x24\x83\x12\xbe\x93\x07\xac\x66\x0a\x9e\xcd\x8d\xc6\x81\x76\x78\xbe\x9b\x0f\x53\x10\x6d\x30\x24\x52\x31\x34\x5d\x71\x31\x95\x7d\x79\x1c\x9b\x28\x11\xa9\x4b\xf8\x31\x40\xd6\xe0\x44\x7d\xa4\x27\x6b\x6a\xc6\xf3\x0a\xa6\xe0\x7b\x16\xa6\xe3\x0d\x65\x9a\x37\x1a\x14\x40\x8e\x75\x2d\xb3\x26\x2f\xb3\x95\x29\xbf\x3f\xb7\xaf\xaa\xc4\x10\x4a\xc6\x2c\xc3\xac\x0b\x1f\x59\xba\x2c\x68\x30\x57\x27\x72\xdb\xfa\x74\xb0\xdf\x9b\x8a\xa8\x88\xc2\x45\x17\x2e\x48\xd6\xd4\x23\xf4\x2f\x3a\x14\x41\x2f\xb6\xa3\x08\xdd\x40\xb3\xff\x2f\x63\x6f\x1a\x23\x49\x7a\xa6\x87\x75\x67\x55\xf5\x31\xdd\x73\x0f\xc9\x5d\xad\x6d\xa5\xd7\x94\x46\x02\x06\x03\x03\x92\x0f\xed\x9f\xcc\xad\x2e\x72\xd8\x05\xb1\xa6\x50\xdd\xec\x21\xc6\xb0\x31\x5f\x45\x7e\x95\x19\x53\x91\x11\x39\x71\x54\x4d\x0d\xfc\xc3\xd0\x0f\xc3\xf0\x2f\x59\x82\x0d\xc3\x92\x01\x5b\x2b\x43\x90\x56\x2b\xad\x56\x36\x77\xb5\xe6\x32\x8b\xc7\x92\x5c\x0e\xc9\x1d\x92\x73\x73\x8e\xbe\xaf\xea\xea\xfb\x3e\xaa\x8d\x78\x9f\xf7\xfd\xbe\x37\x2a\xa2\x0d\xfd\x8b\xe8\xae\xcc\x8c\xf8\x8e\xf7\x7b\x8f\xe7\x7d\x9e\xc3\x4e\xb5\x46\x15\x7d\xcf\xeb\x3e\xfa\xe4\x4d\xae\x25\xa1\xb8\x3b\x49\x44\xae\xf0\xd3\x77\xc0\x5d\xe6\xff\x58\xf7\x8d\xf8\x3b\xd6\xfd\x17\x0c\x92\xd8\xae\x4d\x69\xba\x00\xf6\xf5\xf9\x06\x76\x14\xce\xd9\x8d\xb1\xef\x36\x7a\xd0\x51\x3a\x58\x47\x6b\x84\x2a\xbf\xd3\xb6\x2b\x2c\x3b\x25\x29\x2b\x2d\xab\x5d\x5a\x24\x2c\xdc\x53\xe3\x67\x5d\x93\x41\x6e\xa3\xc8\x06\x79\x61\xa2\x09\x8f\xfb\xfb\x69\x45\xf6\x41\x75\x01\x9d\x6e\xea\x88\x1c\x24\x99\x97\x1b\x76\xe2\xda\xb3\xb3\x8e\x14\xda\x77\xcf\x99\x6c\x64\x03\xc0\xe1\x45\x3a\xae\x75\x60\xc6\x89\xcd\x39\x32\xf8\xc4\xa4\xbd\x4c\x43\x05\x1f\xd2\xf9\xa3\xeb\xd1\xd2\x80\xb5\xdd\xb5\x38\x38\xd7\xce\x4c\x90\x86\x4b\x61\x20\x11\xa6\x53\x2d\x2e\x97\x81\xc4\xb6\x4d\x31\xb0\xe9\xa7\x56\x9c\x7a\xd4\x85\x99\xe3\x99\x6f\xaa\x52\xaa\x61\x34\xa9\xd3\x6b\x27\x15\x2e\xf5\x2f\xc6\x3e\x79\xfb\x6f\x31\x80\x42\xca\x27\xe5\x85\xa1\xcd\x32\xd3\x2a\xed\x00\xd6\xfb\x7d\x9d\x15\xbd\xef\x90\x1f\xe5\x89\x1e\xc6\x7d\x1b\x07\x00\xa8\x30\x2f\xaa\x02\x69\x5e\x68\xc8\x5a\x1c\x6a\xbf\x5e\x0c\x47\x74\xa0\x29\xcf\x74\xde\x39\xa3\xdb\xc3\xb8\x83\x73\xed\x38\x49\xf3\x81\x25\x03\x14\x6b\xc2\x10\x55\xc2\xaf\x4b\x51\xcd\xce\xb6\x23\x6b\x5c\xc7\x25\x0a\x3e\xbc\x71\xf8\xc6\xed\xb1\x91\x4d\x87\xd6\x51\x98\x33\x6b\xbc\xe2\x03\xfd\x59\x83\x0e\xe2\x7c\xfb\x8d\xc2\x2c\x73\xd1\x41\xfa\x5e\x3c\x4e\xe7\x62\xcd\xd8\x1d\x9c\x6b\xe7\x49\xbc\x86\xa5\x83\x43\xfa\xb8\xa2\x03\x42\x27\x35\x1c\xd8\x7a\xe2\x77\x61\xba\x9d\x0d\x93\x7c\x50\xfa\x17\xae\x48\x73\x8e\x86\x5a\x3a\x04\x14\x93\x43\x6e\x52\x70\xa5\x09\x27\x2d\xe6\x19\x67\xf5\xf7\x3b\x1e\x9d\xf8\x7d\x2c\x3c\x60\x6d\xaf\x28\x54\xfe\x15\x32\xe8\xcc\x42\xd5\x69\xbd\x32\xcf\xab\xe7\xa3\x06\x62\x96\x79\xf2\x52\x72\xdb\xa7\xd6\xf0\x23\x6a\xff\x28\xb1\xc6\x7a\xd6\x64\x01\xd0\xa1\x2c\x4f\x12\x5e\xd7\x2c\x78\x45\x6f\x25\xe2\x57\x0d\x7a\x7f\x26\xcf\x6d\x26\x19\x70\x91\xd5\xa2\x51\x95\x46\xad\x06\xe5\xba\xc5\x24\x42\x18\x0d\xd7\x16\x69\x76\xbe\x5e\x57\x5a\x35\x45\x1a\x53\x8f\xf7\x84\x87\x8c\xc1\xf9\x63\xca\x1d\x9a\x31\x16\xde\x74\x1b\xa6\x97\x9a\x7e\x36\xa1\x8e\xa0\x4d\x78\xf3\x0a\x54\x33\xdf\xd8\xee\x10\x24\x39\x4e\x00\xf1\x96\xb5\xeb\xac\x22\x8c\x15\x9b\xfe\x66\x39\x09\x38\xaf\xf7\x77\x7d\xd3\xf6\x93\x5d\x8f\xed\xfe\xad\xae\xa2\x17\xfa\x22\x89\x21\x03\xeb\x77\xb2\x43\x39\x79\x7a\xec\xff\xe4\xa9\xae\x02\xd3\xed\x5a\x27\x67\x88\xde\x6d\xf5\xb7\xbb\x74\xbc\x0b\x0c\x90\xe6\x04\xde\xca\x2e\xf0\xba\xc2\x81\x9a\x58\x2f\x57\x16\x7e\xe5\xe1\xd8\xe3\x82\x8e\x11\x88\x10\x89\x83\xd6\x7a\xeb\xeb\x33\x0e\xb0\x09\x5b\x84\x7c\x36\x07\xa2\x18\xfa\x7b\x63\x8f\xac\xde\x07\xe6\x28\x57\x03\xff\xc6\xd7\x7c\xcf\xc7\xc2\xf4\x02\xa3\x61\xcf\x8f\x5b\x5f\xf9\xa6\xef\x9f\x38\x28\x8e\xc3\x93\xdd\xd2\x5e\x55\xd8\x29\xb8\xb3\x72\x5d\x39\x95\x2f\x9a\x17\xa7\x94\xb0\xd1\xcf\x88\x27\x4b\x53\x25\xb3\xe9\xa6\x9d\x00\xde\x54\x28\xe3\x8a\xfa\xf9\x53\x4a\x94\x20\x26\x37\x4a\x89\x5b\xa1\x04\xea\xe4\x2b\x0e\x4a\x12\x7c\xa3\x76\x12\x90\xf2\x16\x2b\xfa\xb2\xfa\xb1\x2c\x7e\x15\xd4\x6e\x28\x8b\x9c\xf6\xed\x94\x9f\xd0\x2d\x2c\x29\xae\xf5\x75\xbc\x23\x8e\x03\xc8\xf1\xa4\x7b\x19\x83\xa6\x9e\x64\x62\x5f\x8f\x42\x9b\x02\x48\xc0\x9a\x4b\xf4\x6d\xa2\xbf\x54\x3f\x8a\x5e\x6a\x53\xff\x1b\x13\xc5\x08\x5b\x44\xcb\x33\x47\xb8\x90\xa4\x97\xf4\x33\x3e\x86\x14\x9c\x52\x78\x68\xd0\x15\x03\x97\x9a\xbd\x2b\xf1\x63\x7d\xa3\xfa\x6a\xd8\xb3\x11\x65\xff\x67\x1c\x47\x06\xbd\xb9\x54\xe5\x34\x7b\xc6\xb8\xa5\xc4\x51\x1b\x02\x98\x51\x64\x59\xb9\x57\x18\xd3\x7d\xc6\xe7\x21\xf9\x23\xe2\x30\x3f\xe1\xf7\xf5\xaa\x83\x80\xb1\xdf\xae\x30\xc5\x4c\xc0\x08\xd7\xe8\x44\xed\xac\xa3\xc2\x41\x1c\x06\x13\xde\xc8\x73\x53\x91\xb0\x8e\x63\x70\x58\x8c\x7e\xec\x89\xa1\x32\x6b\x87\x8a\xca\xe8\xa8\xc2\x96\x9c\xe8\x28\x7a\xef\xa3\x1d\x8f\xaa\x7b\x87\x7a\x6d\xe0\x18\x3d\x20\xeb\x8d\x78\x0f\x44\x8d\xa8\x49\xfe\xef\x18\x2f\x56\xc8\xa9\x80\xd6\xb2\xb0\x27\x47\x25\xbc\xf5\x73\x1d\xc5\xbd\x76\xae\xf6\x72\xb3\xb3\xed\xc5\x34\x64\xcd\x6b\x36\x6d\x4a\x9d\xfc\x84\x5b\xba\x8b\x49\xbf\x00\x93\x2b\xa6\xf7\x8a\xca\x4b\x9f\xa4\x60\x03\x6e\xcf\x67\xee\x13\x54\xc8\x9d\x54\xcd\x28\x98\x28\x84\xa6\x7b\xc9\x71\x15\xd7\xb4\xfc\x5a\x14\xc9\x77\x77\x9f\x76\xbd\x16\x71\xcf\xbe\xb5\x92\x70\x17\x20\xc6\xfa\x81\x8a\x2b\x9a\x44\x64\xe7\xdb\xab\x26\x62\x0c\xaa\x80\x63\xd8\x52\x49\x03\xb8\x0a\xca\x57\xc3\xa5\x3c\x82\xd3\x83\x81\x3d\x87\x73\x94\x6f\x9a\x8e\xfe\xc5\x24\x1f\x90\xec\x8d\xf0\xe5\x96\x01\xa5\x93\x96\x9a\x77\xe2\xb0\x3f\x43\x02\x4d\x94\x04\x4b\x4b\x0b\xa3\x7f\x9e\xac\xab\x40\xf6\x95\x76\xd8\x99\xb1\x2f\x4d\xa3\xd3\x4f\xf0\xaf\xdb\x5d\xa9\x85\x72\xc7\xc7\x84\x38\xf3\x84\x88\xcc\xc5\xa9\xda\x14\xee\x2a\x68\xff\x6a\x98\x0f\x4d\x8c\x75\x21\x80\x4d\x1a\x15\xc9\x5e\x3e\xae\x1a\xca\x83\x65\x30\xef\xc2\x9e\xdf\x25\x13\x8e\xa3\x72\x8b\x52\x89\xd2\xef\xf5\x9c\xcf\x84\xd8\x0c\xfd\x3f\xe5\x68\x3a\xc5\xbf\xa3\xf4\xd7\x7c\x5d\x9b\xac\x17\x20\xbf\xcb\x52\x52\xa2\xcf\xf0\xb6\x66\xc7\x7f\xbb\xe6\x0d\xbe\xd0\xce\x93\xb4\xf4\x8b\x68\xd2\x90\x3c\xfb\x48\x53\xb4\x7c\xa4\xe6\x77\x94\x96\xc1\x47\xaa\x5a\x96\xbf\x3b\xf6\x2d\xcb\xdf\x55\x24\x4a\xa3\x22\x58\xa6\x84\x86\x3b\x44\x6f\x41\xc3\x48\x1a\x46\x9a\x14\x3e\xcb\xf0\x12\x8e\x52\xa5\x1b\x86\x6f\x6a\xae\xe6\xec\x2c\x3e\xc1\xb8\x62\x09\x2e\x54\xa0\x51\xf3\x99\x25\x90\x0d\x4c\xd4\xb7\xcc\xaf\x09\x6b\xf0\x0b\x9d\x0a\xfa\x85\x87\x2b\xe5\x26\xb7\xd9\x94\xd2\xc0\xfe\xaf\x9f\xe9\x2a\x09\xcf\x7d\x5d\x0f\x55\xdb\xb5\xae\xe8\xc8\x1f\x5f\x57\xbd\x35\x77\x54\xb7\xc0\x52\x6a\x6d\x69\x3a\xd1\x0e\x26\x84\x79\x94\xd9\xc5\xa6\xbe\x83\x62\x15\x03\xe3\x6a\xa7\xd3\xdf\x6c\xdb\x38\x48\x8a\xd4\xf4\x91\x2f\x44\x1e\xee\xba\xe2\x06\xfe\xac\xca\xa5\xa0\xdd\x2a\x6b\x97\x68\xf2\x98\x94\x84\x6c\xbb\x10\x94\x6c\x13\xa2\x3e\x70\xa0\x8c\x49\xbe\x48\x2d\xbf\x92\x47\xa7\x07\x73\x9d\xe7\xe5\xc6\xc6\x78\x41\x75\x09\x51\xdf\x7e\xb0\x59\x62\xd2\x2e\x77\x94\xe3\xb5\xbb\xeb\xd7\xfa\x73\xeb\xb4\x2a\x45\xda\x84\xe6\xd9\xa9\x4c\x94\x03\x87\x81\x61\x19\x2a\x11\x5d\x22\x3f\x08\x1b\xec\xa8\x6e\x83\xd8\x09\x67\x4d\x20\x39\xce\xba\xbd\xfd\x1c\x30\x7d\x28\x45\xff\x92\x0e\x05\xa9\x0f\x90\xeb\x84\x08\xf9\x3e\x05\xb4\x82\x7f\xc0\x5c\xe3\x65\x3e\xef\x78\x80\xfe\x79\xca\x88\xe1\x80\xfb\xd3\x26\x7e\x9e\xd4\x8e\xac\x37\x1f\x70\x71\x19\xf0\xc5\x37\x4d\x14\xac\x51\x52\x64\x8f\x2e\xb7\x34\x61\x92\x98\x20\xac\xa5\xb2\x69\x97\x54\x55\xf4\x92\xeb\x17\x1a\x9a\x98\xa8\x8c\x54\xec\x7e\x51\xa5\x92\xeb\xa4\x73\xaf\xbd\x46\xcb\xb3\x97\x0c\xa9\x4e\xcc\x73\xa0\xe2\xe2\x9d\xe4\x54\x3b\xaa\xde\x72\x6c\x45\x86\xae\xd2\xcc\x94\x2e\x4e\xf9\x93\x89\x19\xe7\x10\x8e\x7d\x3a\xf6\x5d\x4e\x9f\x76\x14\xbf\x05\x00\x25\x70\x81\x5a\x8a\x30\x8b\x28\x31\x59\xd6\x85\x96\x9c\x86\x98\xf2\xb5\x3f\x21\xcb\x00\xef\x31\xdd\x98\x45\xeb\x0f\xa9\x80\x8a\xc0\xfb\xbf\xa0\x13\x56\x94\x71\x15\xc1\xef\x93\xb4\xa3\x61\xa9\x4f\xc2\xa4\x2b\x58\x9b\x00\x6d\xb7\x28\x35\x83\x69\xdd\xdb\xf5\xe0\xf7\x7a\x80\x3a\x73\xb8\xbd\x64\xa2\xc8\x69\x23\x4b\xfe\x4f\xe5\x02\x1b\x98\xf6\xdb\x26\x8e\x93\x22\x0e\x2a\x88\x80\x33\x5a\x44\xb2\x6e\x19\x66\x67\xdb\x99\x8d\x4b\xbf\x59\xb8\xb1\xb1\xa3\x7e\x8a\x4d\x88\x22\xf7\x4d\x2d\xf3\x7d\xad\xe3\x65\xb2\xb9\xca\x3d\x51\xa3\xe7\x84\x7d\x60\x0a\x3c\x14\x9f\xa8\x07\x41\x12\x63\xd6\xa4\xf9\xaa\x49\x87\x61\xdc\x8f\xd8\x14\x0b\x5b\x92\x0f\x0f\x2f\xb9\x32\x99\xe4\x1e\xca\xbf\xe3\x58\x07\xae\xbd\x04\x3e\x75\x5c\xd0\x7c\x3b\x4a\x92\xe5\xd2\xda\x6d\x1d\xc5\x54\x61\x7b\xdc\x52\xd4\xd5\x17\x95\xd3\xf6\x96\x19\x25\xb9\x0d\x54\x07\xc9\xbd\x8e\x52\x46\xba\xa7\xfe\xd4\xc6\xc4\xba\x4e\x48\x37\x2d\x1c\xe5\xa8\x24\xbe\x3e\xe3\xa9\x24\x14\xc7\x84\xe2\x2d\x1b\x98\x55\x4f\x8b\x8e\xff\xfe\xb5\x12\xa2\xfa\x75\x6d\x9e\xe4\x10\x32\x29\xb7\xb3\x0a\x7a\x58\x21\x89\xbb\xdb\x47\xe1\xf0\xcb\x00\x9f\xa8\x8e\x77\x54\xbc\xf9\xda\x71\xa9\x2f\x45\x45\xcb\x9f\x05\xef\xab\xa0\xe5\x7d\x15\x3f\x0c\x89\x6b\x63\x42\xf5\xa2\x4d\x32\x82\x89\xcf\x13\xbc\x2d\x4a\x5c\xd7\x1a\x91\xe9\x3d\x1b\x85\x2b\xd6\x09\x57\xc2\xf8\x32\x29\x27\xdf\x34\xc9\x0a\xa7\xc5\x30\x49\x51\xb7\x61\xe1\x5d\xfc\x94\xa8\xf0\xfa\x81\xa5\xbf\x64\xe8\x0c\x7c\x91\x73\xda\x31\x39\x57\x4b\x07\x1e\x38\xd0\x5e\xb4\x81\x29\x32\x4b\x8d\xb9\xd8\xc3\x48\x68\x08\x53\x9c\x26\x6f\xa3\x55\x27\x3a\x04\x5f\xf0\x04\x9a\x49\x9c\xd9\x74\x85\xe4\x9f\x77\x7b\xc5\xe3\x9f\x91\xf9\xe7\x6b\x25\x04\x07\x0f\xc0\xad\x91\xd2\xd2\x21\xd2\x3f\x87\x73\x9c\x6f\x68\x2b\xc1\x40\x4f\xac\x6f\xcf\xaf\xbf\xf6\x5a\x3b\x4b\x46\x83\x90\xa8\x14\x73\xa1\x61\x91\xae\x21\x55\xa1\xbb\xa8\x5c\xda\x07\x9d\xed\x5f\x73\x64\x7a\xae\x6d\x82\x20\x19\x8e\x40\xc7\x87\x89\x81\xb1\xff\x23\x85\xcc\xfe\x23\x8f\xc9\x2a\xf2\x41\xe2\x1a\xe9\x84\xc7\xd8\xdb\xcf\x7a\xf7\x5d\xf9\x1b\x8b\xa9\x35\xdb\x73\xf4\x27\x15\xa5\xeb\x49\x17\x27\x2e\x87\xbd\x9e\xe3\x48\x71\x78\xfc\xf2\x14\x97\x84\x84\x77\x8c\x52\x4b\xa2\xd8\x08\x44\x61\x4d\xef\xd1\xa3\xc0\x60\x53\xd6\x6c\xeb\x82\xe2\x18\xaf\x80\x58\xc8\x01\x40\x76\xe0\x1a\x39\x9a\x7c\xad\x70\x08\xd9\xc0\x46\x4b\x2d\x55\x18\xba\xa2\xfa\x32\xaf\x34\x34\x49\x1f\x6a\x67\x83\x64\x95\x2a\xfa\x4a\x96\x55\x3c\xab\xfb\x4a\xbd\xff\x67\x1a\xd7\xfd\x6e\x63\x2f\x12\xba\xbd\xb8\x06\x86\x2c\xe7\x69\x5d\x41\x78\x5b\x91\x3e\x7e\xa6\xb0\x37\x41\x62\xb2\x1c\xe5\x45\x47\x5a\xe2\xc8\x14\x3f\x52\x58\xda\xa3\xb0\x71\x22\xb7\xef\xab\x68\xab\x03\x93\xdb\x15\x9b\xee\xd2\x66\x41\xb5\x1c\x70\x42\x0b\x86\xe4\x18\xf9\x42\x48\x29\xdd\x86\x5b\xca\x37\x4a\xe1\xf1\x7e\x1d\x91\x74\xa0\x9d\x9b\x65\x78\xa4\x18\xab\xa9\xae\x2a\x33\xde\xa3\x6f\x95\x2c\x82\x02\x67\x47\x90\x15\x10\x50\x0d\xbd\x81\xa0\x6d\x1a\x41\xa5\xb1\x19\x5a\xae\xaa\xbb\x1e\x1e\x4f\xa5\xad\x32\x83\xbf\x9b\xda\x3d\xf8\x3b\xc0\x73\x3f\x55\x6c\x75\x1b\x98\x47\x3a\x0e\x92\x67\xba\x3e\x9f\x0d\x76\x47\x56\x4b\x1b\x7b\xf6\x06\xc6\x63\x89\xea\x77\xf9\x96\x58\x5f\x3f\x52\x27\x61\x9e\x9a\x38\x1b\x25\x69\x4e\x65\xc4\x5d\x65\x1c\x8b\x79\xbe\x08\xb3\x20\x66\xab\xa5\x19\x50\x7d\x73\xfc\x69\x7a\x40\xbe\xee\xf8\xfe\x8b\xf3\x2a\x00\x4b\xed\x52\x91\x31\x64\x8b\x75\xc3\x3a\x3e\x3c\x7c\xd7\xf9\x41\x83\x24\xcd\x00\x0f\x83\x87\xf3\x1b\x5d\x7f\x0c\x3c\xb1\x4e\x76\x09\xd0\x82\xd6\xfa\x63\xe2\xf0\x1f\x99\xfe\x6d\xc5\x00\xf0\x1f\x52\x2e\x13\x56\x60\x27\xe2\x70\xd8\x3e\x90\xdd\xe3\xd0\xbd\xcc\x89\x1a\xa1\x08\xa7\xbd\x25\x55\xe6\x9d\x5f\x16\x11\x7e\x25\x7d\x77\x52\xe7\x79\x76\x13\xa1\x3e\x20\x41\x7f\x49\xb9\x74\x67\xa6\x17\xa4\x4e\xfe\x93\x4e\x19\x2c\xc3\x03\xfb\x47\xe8\x67\x81\xa3\xd0\xea\x52\xea\x16\x16\xe7\x2a\x6d\x79\xcc\xe1\xb1\x4e\x79\x68\x3b\x3e\x95\xf2\x5d\x41\x2b\xb6\xd5\x69\x3d\xff\xbc\x6b\x46\x2f\xdd\x3f\x69\x7a\x2f\xe7\x13\xa1\xc0\x75\x56\x96\x83\x8f\xf5\x23\x34\x51\x63\x41\xff\xde\x58\xc5\x32\x9f\x43\x63\x5f\xb0\x3d\xad\xaf\x7c\xd3\xe5\xcc\x15\xb3\xff\x2f\x15\xab\xf7\xaf\x00\x2d\xc2\x31\xc7\x99\x6f\x94\x68\x9e\x40\xf4\x82\x06\xac\xeb\xaa\x78\xcc\xba\x39\xd8\xf6\xbb\xc0\x7b\x0e\x58\xe6\xe5\x8a\xbb\x1d\x71\xe3\x01\xac\xfb\x75\x4d\x42\x73\x7d\xdc\x7e\x84\xf7\x91\x85\xc3\x30\x32\x29\x11\x9d\x4a\x42\xff\xae\x4a\xf5\x32\x8e\x0d\x25\xed\x0b\x0d\x08\xef\x76\xcf\x66\x61\x3f\xae\x12\x8c\xaa\xe6\x12\x17\x43\x17\xa3\x81\x8d\xb8\xef\x0e\x51\xf3\xdd\x6d\x5d\x1c\xe5\x58\x60\x6f\x71\x1d\x15\x0b\x4a\xf3\xae\x37\x69\xa6\x1f\x6a\xe7\x03\x9b\x32\xe7\xbd\xd0\x96\x97\x53\x81\xbd\x89\x52\x0d\x13\xf2\x35\xd4\x59\xda\xa9\xcd\x06\xc5\xd2\x52\x24\x35\x47\xbc\xf8\x3d\xa4\xac\xf8\xa6\xd2\x33\x94\x9a\x78\x6f\xf9\x9d\x98\xc4\x2d\x64\x56\x5c\x7e\x79\x76\x96\x17\xda\x0e\xc4\xfe\xd8\x08\xef\x69\x70\xd4\x26\x95\x44\x1d\xa2\x6c\xce\x7b\xda\x34\x3a\x42\xd2\x59\x2e\x66\xf6\xb4\x55\x4e\x25\xb2\x26\x8d\x4b\x7f\xc8\x75\xbd\x5e\xa2\x4d\xc3\xd7\xaa\x64\x5b\x06\x71\xd1\x1a\x07\x01\x42\x09\x4f\x8f\x81\x85\xf5\xe3\x0a\x5a\x5e\xf1\x9f\x46\x76\x98\x30\xf5\x19\xd3\x46\x8e\x3d\x83\xc4\xa5\xa6\x31\xf4\xd2\x03\x5c\xdf\xaf\x68\xcc\x49\x36\xda\x37\x0a\xa6\x45\xfc\x58\xcb\xf5\x07\xbf\x03\x12\x74\x58\xc3\x3f\xd0\x6d\x25\xf8\x3c\x76\x1e\x77\xe6\x39\x17\xc8\x49\x5e\xbf\x4f\x65\x0a\x18\xbf\xb3\xf4\xa4\xfc\x4d\x63\x55\xda\x44\x93\x3d\xbe\xe9\x4c\x03\x6a\xee\x50\xe9\x79\xf4\x40\xc7\x2a\x84\x81\xe7\xc7\x8a\x5c\x12\xd8\x08\x6c\xef\x8d\xa6\x72\x6a\x8a\xc6\x13\x0c\xb7\x14\xd3\x15\x89\x44\x7d\xf7\xbc\xd0\x2e\x5d\x4c\xe7\x42\x09\xab\x4b\xcb\x91\x83\x7f\xac\x7c\xf5\x6c\xd5\xf6\x6c\x4c\x28\x07\x96\xa2\x26\x6b\x27\xb2\xd4\x4f\xa8\x03\x68\x2d\x89\xe1\x60\x60\xf5\xb0\x3c\x2f\xb6\x00\xc8\x1e\x04\x27\xe1\xd3\x93\x99\xe1\x64\xb5\xa3\x20\xf3\x74\x64\x0a\x41\xbe\x6a\xa3\x28\x48\x86\xa0\x3d\x41\xca\xff\xbc\xe2\x22\x3b\xaf\x3a\x90\x53\x9b\x8d\x92\xb8\xf4\xcc\x98\x0d\x59\x5a\x01\x14\xeb\xd9\x4f\x94\xdc\xc3\x52\x18\xd9\xdd\xd4\x21\x71\x59\x29\xa7\x7d\x86\xb5\xa1\xc9\x91\xb1\x3f\x2e\xd2\xc1\xec\xe4\xba\xb9\xb3\xa5\x1c\x6e\x4c\xf8\x67\xa5\x77\x22\x4d\x9e\x69\xdf\xc4\xe1\x5b\x20\x8c\x42\x87\x99\xe3\xaf\x29\x9f\xcc\xf9\xed\xe5\x74\x4b\x7e\xbf\x7c\x43\xd8\xd9\x4f\x68\xa4\xd9\x33\xa2\xe9\x01\xb4\xee\xbe\xf3\x70\xcd\xa2\x89\x7b\x49\x3c\xe5\x39\x5e\x1e\x74\x54\x87\xfb\x0f\x3b\xbe\x7f\xf9\x92\xd2\xda\x85\xa8\x28\x16\xe5\x3f\x74\xb1\xf1\xc0\x9a\x48\xdc\x76\x18\x0c\x50\x33\xf1\x75\x0d\x3d\xb2\x30\x5d\xce\xf9\x84\xaa\xf7\x82\x22\x0a\x63\xf3\x23\x4d\xb0\x7a\xba\x06\x3a\xa7\xdc\xbb\xa1\x99\x17\x9d\x0a\xdf\x10\x70\x49\xf5\x01\xaf\x9a\x9c\x9a\x1e\x26\x2b\xa2\x07\x15\x39\x84\xf2\x65\x9c\x47\x7a\xd0\xe5\x91\x9b\x68\xe8\x32\x13\x25\xc3\x24\xe6\xdd\x22\x20\x05\x85\x5b\x3b\xa1\xba\x5a\x83\xd4\x9a\x61\x28\xb9\x2e\xc7\xf5\xe5\x25\x01\x2a\x5a\x19\x61\x1e\xd9\x5d\xe5\xfb\xe3\x60\x39\x0d\x27\x57\xec\x33\x1d\x9f\x15\xdd\x0e\xfe\xb3\xb1\x97\xe6\x7c\xfd\x72\xb5\xf7\xeb\x69\x87\x51\x5d\xb1\x51\x32\xb2\xa9\xa4\x82\xa5\x0e\xa9\xba\x5e\xb6\x54\x93\x0d\xe7\xc6\x60\xe8\x1f\xef\xaa\x56\xf5\x4f\x1a\xd2\xf6\xe4\xd5\x39\x63\x00\x47\xe9\xa6\x72\x9a\x6e\xba\xca\x61\x64\x16\x19\x62\xc3\xc6\x90\x46\x5e\xce\xe8\x96\xeb\xd3\xfe\xc3\xda\x52\x99\x9b\x93\xfe\x7e\x2f\x60\xa6\x6a\x25\x97\x94\xe7\xbc\x9a\x30\x06\x5f\xb2\x63\xde\x8f\xbc\xa4\x7d\x51\x33\x0a\x7b\xac\xee\x84\x3d\x75\x0f\x11\x2f\x12\xb4\xf7\x31\xe0\x7c\x53\xa9\xf4\xab\xb2\x2c\xfa\x6f\xc4\x82\x37\xf0\xec\x65\xc9\xd0\xe6\xe1\x50\x5a\x86\xe1\xd5\x1c\x57\xb4\xe2\xc7\x1b\x38\x47\x66\xda\x41\x12\x45\x66\x94\x55\xe5\x66\xaa\xb0\x10\xf1\x95\xd3\x24\x59\xe2\x08\x55\x30\x13\x2d\xa5\xa1\xdf\x90\xe8\x7d\xdd\x44\x66\x64\xe3\xa4\xe5\x4b\x67\x1b\x8a\x7d\x7b\x43\x41\x3b\x6d\x96\x87\xc3\x32\xa4\xdf\x55\x7a\xcd\xa8\x80\x3f\xe8\x28\x5a\x86\x63\x74\x3a\x39\xd4\x8b\x0b\x5c\xaf\x50\xba\x01\x33\x7b\x94\x66\x00\x30\x93\xeb\xb5\xb3\xe4\xc8\x74\xbb\x17\xa6\x04\xd1\x72\x36\xe8\xa3\xb1\xaf\x6c\x7c\x54\xdb\xf9\x2f\xb4\x6d\x1e\xbc\x38\xe9\xb3\x47\x28\xf7\xc3\x4f\xe5\x6c\x9c\x33\xb5\x2e\xb1\x7f\xa9\xa1\x42\x70\x64\x7a\xee\x29\x9f\x11\x7e\x07\x06\x1e\x1d\x34\x40\x30\x20\x96\xfb\x2e\x76\x15\x90\xa1\xf7\xe1\x5f\xa1\xab\xec\x18\x16\x21\xde\xf9\x0e\xb9\x33\x42\x29\x4a\x8f\xe1\xe8\x0a\x14\x64\xa7\x74\xef\x51\x3d\x03\x8a\x10\x4e\xf8\x63\x70\xbc\xe9\x3f\x4e\xb4\xbb\xe5\x70\x4b\x3b\x67\x39\x2e\x48\x2c\x4f\xac\x7b\x27\x61\x13\xd3\xc0\x3f\x37\x7e\xd6\xab\x95\x73\xca\x39\x5a\x9b\x52\x9d\xef\x97\xb0\x84\x11\x89\xfc\x3e\xbd\x1c\x1c\xaf\x9d\x9e\x38\x29\xde\xb9\x5e\xfe\xae\xd4\xfe\x9f\x74\xc9\xd5\xdc\x8c\x46\xdc\xad\xa2\x81\x14\x52\xb2\x7a\x2a\xdc\x16\x41\xe2\x87\x91\x79\x3d\xab\x1c\x9e\xfb\x1c\x70\x61\xf7\xff\x64\xec\x0d\xf6\x19\x95\x3e\xf8\x56\x43\xbe\x6e\xde\x81\x37\xc5\x51\x91\x66\x24\xfa\x29\x69\x65\x6a\xa2\xce\x58\x4a\x8b\x30\x5f\x4c\x56\x23\x5a\x31\x88\x6c\x20\x8a\x2f\xce\x44\xb9\x04\x00\x0a\x61\x59\x70\xc9\x03\x79\xa3\x12\x07\xf9\x2e\xd5\x63\xc6\xe6\xd8\x39\xed\x6e\x60\x9e\x03\xd4\xc6\xb5\xcc\xfa\xe0\x02\x9d\xa9\x48\xb1\x6c\xd5\x1e\xf4\xb5\xd7\xda\x43\x33\x30\xa9\x79\xdd\x0c\xc0\x16\x2b\x8a\xb1\x5e\xf1\xed\xa2\x6e\x29\xc1\x1b\x20\x8e\xd5\xf0\x95\x37\x0a\x93\xe6\x36\x87\x2c\x6e\x53\xe5\xf2\x19\xd5\x85\x94\x97\x5e\x9c\x5d\xd5\x5c\xbc\x17\x34\xd5\xd0\x05\x55\x31\xee\x85\x59\x6c\xd7\x94\x00\x0d\xd8\x57\xf9\xba\x29\x55\x9a\x0d\x92\x22\xea\x91\xd6\x3e\x12\xb1\x08\x88\x14\xf0\x7b\x9e\x03\xb7\xb3\xca\x5d\x1c\x99\x7e\x12\xf7\xab\x74\x21\x5e\xad\xf1\x9e\x72\xb2\x37\x6a\xa3\x08\xb5\xe1\x41\x2f\x35\xab\x26\x6a\x29\xa2\x68\x30\xdc\xf1\xb5\x3a\x73\x7b\xa9\x19\x9a\x6d\x94\xb2\x73\x73\x8e\x52\xd6\xc3\xa4\x4d\x40\x5a\x46\xb4\x87\x90\x55\xb8\x03\x0f\xcc\x11\x26\xba\x5a\xe6\x71\xf5\x32\x83\x24\x59\xb6\x29\xbd\x8c\xa4\x6e\x3c\x3a\xf4\x7d\xcd\xa5\x76\x4d\x45\x4a\xd9\xd0\x44\x91\x4d\xf7\x61\xa1\xbb\x54\x80\x5f\x99\x3b\xbb\xea\x41\x1e\xa8\xd4\x28\x77\x9b\x54\xaa\x47\xae\x9a\xa1\xc5\x3a\x17\xa6\x9d\xb6\xaa\xea\x6a\x7b\x88\x13\x50\x9a\x49\xe8\x05\x19\x02\x55\xa1\xae\x35\xa3\x6c\xbf\xf7\xe7\x91\xc8\xc7\xfa\x7a\x00\x92\x65\x61\x32\xa5\x67\x96\x63\x93\xbe\x5b\x60\x24\x8a\x5a\x93\x35\xc9\x04\x20\xed\x53\xeb\x13\x5d\xca\x39\xf0\x97\x01\xde\xcf\x3f\x39\xf6\x8e\xc3\x0f\xe8\xd8\x11\x51\xa6\x3a\xb0\x69\xae\xdd\xb7\x71\x1e\x41\x43\xc1\x69\x17\x2d\x08\xc7\xf6\x86\xe6\x9a\xfc\x7f\x6a\xe5\x9b\x99\xc3\x6d\x13\xf7\x6d\xaa\xf9\xfe\xfe\xbe\xf2\x84\xff\x7e\x13\x28\x64\xc9\xb0\x26\x38\x4c\xe0\xd1\x8e\x2f\x44\x1d\xf5\x54\x44\x36\x5d\x11\x25\x79\xec\xe9\x4a\xcf\xd8\x85\x5a\x02\xf1\xb5\xd7\xda\x8b\x36\xcd\x43\x0b\x17\x4a\xbe\xaf\xe5\xb4\x7e\x2f\xe8\x0a\xe1\x4d\x45\x38\x1e\x85\x4b\x9c\x66\x60\x11\xb9\xb1\x52\x50\x3d\x4e\xd3\x27\x30\x02\x6f\x1e\x72\x93\xe5\x36\xb2\x19\x58\x0c\x24\x86\xf6\x1d\x05\xba\x99\x2e\x32\x3d\x1b\x4f\x28\x9e\x64\xf4\xb6\x62\x69\xdf\x51\xd9\xc0\xd3\x4d\x03\x9c\x25\x45\x8e\xd6\x74\xb1\x26\xac\x71\xdc\x72\x7a\x3d\x13\xdd\xe7\x34\xa3\x67\x19\xb4\x93\xfe\x0c\xcd\x9d\xd3\xd1\xf1\xa2\x05\x17\xb5\x80\x52\xb8\x92\xa4\x81\xed\x4d\xf9\x16\xb8\x9f\x50\x42\x17\x33\xf8\xda\x58\x29\x7e\x81\xab\x4d\x84\x29\xe8\xdb\x11\xea\x4f\x74\xb7\x71\x6d\xbd\xd0\x5e\x98\xdf\xeb\xd1\xce\xff\x53\x47\x79\xbf\x88\xbb\xe0\x48\x1c\x53\x34\xc8\xdf\xe9\xa8\x58\xe7\xa4\xc6\xb6\x9e\x54\xcd\xbb\xc7\x14\x03\xd9\x87\x63\xd5\x48\xf5\x63\x65\x90\x08\x33\x9c\xed\xa1\x8c\x22\x40\x8c\x20\xf2\xc6\xf5\x67\xf8\x6e\xac\xf6\xfb\x5a\xf2\x06\x6d\x42\xf0\x5e\xf6\xd3\xd1\x8f\x84\xe9\x77\xc7\x4a\xfe\x8f\x09\xae\xf0\xd0\x93\xeb\xde\x32\x2d\x59\xd2\x1e\xa7\x35\xeb\x72\x38\x0b\xd3\x2e\x87\xe3\xe8\xf8\x57\x4d\xca\x59\x3d\xf1\x01\x55\x3a\xee\x68\x43\x6e\xfc\x50\xdb\x69\x02\xcf\x55\x94\x5f\x94\xea\x89\x74\xba\x5e\x53\x09\x99\x28\xb4\x80\x94\x49\x40\xa5\x75\xff\xbe\x3d\x56\x3b\xe5\xdb\x15\x3d\xf5\x06\xdc\x5b\x14\x0e\x25\x3c\x71\xf5\x1b\x87\x8e\x39\xa3\x33\xbf\x97\x54\xfe\x61\x98\x24\x20\xc1\x93\x46\x17\x1a\x3a\x67\x68\x5d\xd8\x0f\xce\x7c\x11\xfe\x6e\x02\x46\x8c\xa2\xc2\x93\xf7\x56\x9a\x95\xc4\x13\x54\x2d\xcd\xe5\xd1\xfa\x85\xd2\xdf\xc4\xf4\x5d\xc1\x84\x03\x46\xf6\xcf\x3b\xad\xaf\x7c\xd3\xf1\xa6\xe9\xce\xea\x75\xa5\x4c\x31\x86\x75\x96\x1c\x4f\xb9\x62\x91\x5c\x7e\x9c\xbc\x40\xce\xde\xeb\xb5\xc3\x9e\x3f\x6e\x9e\xec\xd2\xda\x53\xad\x77\xaf\xf2\xff\x3c\x1c\xfb\xa6\xdf\x6b\xe4\xbf\x28\xdc\xea\x7c\xa5\x45\xcd\xf5\x4b\x3a\xb1\x4b\xe1\x0f\x41\x95\x73\x17\x78\x48\x91\x01\xda\x52\x1d\x08\x13\xeb\x3e\xaa\xfb\x7c\xac\x99\x4b\x4c\xb4\x2c\x2c\xd9\x2c\xbb\xd8\xf1\x6c\xec\x27\x9b\xe2\xa1\x20\x89\x7b\x49\x2c\x03\xcf\xe4\xc5\x18\x78\x61\x32\x6e\x40\xab\x67\xc5\x70\x68\x52\x86\xfd\x6b\x7f\x1e\xb5\x9c\x5b\xca\x3f\x3b\x3f\xf6\xf4\x60\x99\x89\xf7\x95\xc3\xe3\x68\x91\xcb\x13\x8e\xc9\x0a\x80\x16\x42\x12\xf6\x2c\x0e\x52\xa1\x31\xa0\x47\xc3\x49\x5e\x29\xe6\x5c\xe1\xe1\x42\xa0\xf2\x6f\xe8\x01\x90\x3c\x63\x21\x03\xe9\x9c\xf5\x5c\x21\x1b\xf0\x11\x60\xc4\xef\x75\x9e\x54\x46\xbc\x48\x2d\x13\xc4\x88\xbe\x86\xd6\x0a\x1a\x7f\x51\x73\x0a\x94\xa1\x61\x9f\xd0\x1a\x44\x76\x08\x94\x23\x52\x7b\x4e\xa9\xe3\x15\xa7\x8a\x78\x75\x5c\xae\x55\xac\x89\x7a\x5e\xa5\xf4\xef\x7b\x36\x0e\x05\xa7\x29\xa9\x52\x7a\x03\x49\x15\x34\x40\x0a\xfa\xa9\x61\x5e\x32\x44\xa0\x5b\x5c\xfe\x70\xad\xd9\x8e\xd9\xa2\x0e\x93\xa6\x5e\xbb\x3c\x4c\xb7\xf1\x0a\x7d\xaf\xe3\xa3\x84\xef\x29\xc6\xcb\x30\x7e\xbd\x88\x83\xf2\xd0\x69\xd1\x2c\xc1\x91\xbf\xac\x70\xee\x97\x15\x09\xdc\xb0\x3f\xa4\x15\xe8\x48\xe0\x0e\x3a\x42\x38\x8d\x82\xb6\x61\x7f\xc0\xe4\xf4\xae\x6d\x51\xb5\x46\x36\xe4\x6a\x7b\x36\x37\x61\x84\x51\x12\x86\xaa\x96\xd3\x22\x3f\xe9\x98\xc4\x82\x28\x1c\x55\xb4\x3d\xce\x28\x21\xe3\x33\x2e\x79\x60\x86\x61\x9c\x4c\xf8\xc4\xcb\x49\xad\xfc\x0d\xe9\x51\xe9\x75\x90\x5c\x92\x96\xbf\xd0\x8a\x17\x15\x2d\x0c\xa5\xee\x1f\xf6\xb3\x5d\xe5\xf7\x54\xda\xa1\x91\x2a\x63\x0e\x3d\x67\xb4\xe6\x44\xf4\x7c\x0b\x46\x0b\xf1\xd9\xc7\x30\x1b\x7c\xe3\x49\x19\x29\x4a\x50\xc1\xc0\x23\x23\x06\xd5\xf3\x1f\x59\xb3\x4c\x13\x23\x4a\xa0\xe5\x70\x8b\x42\xa8\xd2\x3b\x28\x32\xc6\x14\x20\xdb\xb2\xa9\x32\x2f\x9b\xca\xed\x31\x69\xbf\xb0\x54\x97\x46\xee\xf5\xbd\x8e\xca\x7d\x9e\x53\x88\xb0\x9b\x3a\x49\xc7\xb5\x0c\x1c\x05\x1c\xc0\x32\x3d\xa8\x2a\x9c\xaf\xd8\x15\xbb\xa6\x11\x2e\x58\x45\xd2\xb0\x50\x9a\x55\x0c\xd6\x2f\x55\xae\xd3\xf4\x12\x72\x8c\x76\x7b\xad\xba\x9d\xeb\x5a\x69\x86\x32\x11\x30\x1d\x13\xdd\x32\x32\x83\xfb\x71\x9f\x0a\x3b\x12\x4d\xd2\xe0\x8b\x73\x48\xab\x53\x3e\xed\x79\xc0\x06\x49\x14\x85\x99\xa8\x87\x0a\xbb\x69\xe5\x5d\x9e\x56\xda\x88\x2b\xd6\x6f\x34\xf6\xb4\x68\xbe\xc5\xeb\x6a\xc2\x69\xa4\x96\xc0\x56\x6c\x97\x5d\x2c\x3b\xe7\x63\x59\x3f\x13\xfd\x82\x1c\x55\x57\xe6\x3d\x37\xf6\xb3\x72\x4e\xf1\x40\x05\xc5\x30\x64\x47\x55\x88\x3c\x3c\xd0\x1d\x19\x64\x0c\xdb\x3b\x8a\x41\x25\x4f\xcd\x8a\x8d\x00\xfa\x81\x75\x66\x22\x49\xbe\x51\xc9\xc7\x70\x94\xed\xa7\xf1\x86\xdb\xf2\xa5\xae\x47\x14\x20\xea\xd2\x1d\x65\xd8\x8d\x7f\x05\x11\x18\x62\x36\x46\xe9\xe1\xc1\xef\xa9\xd6\xfe\xd6\xba\x9f\x52\x22\xd4\x66\x46\xb8\xff\xe6\xaf\x75\xd5\x1a\xb9\x41\x99\x30\x87\x17\x2c\xf7\x8d\x30\x43\x3c\xe3\x7b\x1f\x44\xf2\x94\x42\x14\x09\x63\xca\x9f\x92\xf0\xe6\x69\xdd\x72\x16\x45\x21\xca\x32\x2f\x71\x3a\xeb\xd4\x58\xcd\x5c\xc7\x93\x56\x9c\x53\xad\xf0\x84\x6d\x29\xd8\x53\xe4\xda\x13\x3c\x23\x29\x44\x3d\xa9\xb2\xe4\xc9\x6a\x0f\x93\xe7\xf8\xbe\x17\xa6\x1d\xde\xa6\x01\x91\x18\x24\x43\xa7\x01\x81\x14\x20\x1a\xa3\xf9\x7a\x7b\xa6\xef\x95\xf9\x2f\xb7\x8f\x4c\xc3\x1a\xba\x7a\xcc\xdc\xdc\x23\x05\xe4\x28\x66\x4c\x12\x24\xbc\x04\xfb\x5a\x41\xc5\xaa\x0e\xae\x30\xc7\x72\xd2\x45\x12\x24\x93\xa6\xba\x7e\x6b\x68\xd0\x5e\x60\x62\x13\x5b\x4e\x3b\xe0\x19\x6e\xa8\xe7\xb9\xa1\xe3\xaa\xb0\x3f\xc8\xf7\xf9\x08\xf1\xa7\x63\x25\x64\x3d\xd9\x55\x40\xff\xd3\xb4\xb3\xe1\x1c\x5d\x47\x2c\xe2\x14\x6b\x1c\x2d\xfb\x44\xd7\x8b\x87\xb3\x76\x32\xcc\x32\xc7\x0b\x8e\xe5\xb1\x3c\xe1\x9c\xe3\x5d\x86\xed\x38\x84\x6f\xaa\x4d\x61\xf2\xdc\xc6\xd2\x31\x0b\x2c\x19\x28\x33\x91\x9e\x84\x40\x15\x7c\xbd\x5f\x8f\x35\x04\x24\xb0\xe1\x8a\x9d\x54\xf1\xc9\x79\x38\x8f\x7c\x03\xaf\x01\x66\xee\xa2\x32\x79\x17\xb5\x22\x66\x91\xf6\x6d\x3a\xa1\xe2\x27\xe0\x0e\x84\xfd\x93\x76\x84\xb0\x3a\x28\x42\x52\x96\x56\xa3\xfc\x1a\x83\x61\x3a\x1e\xfc\xba\xa9\xf3\x31\xcc\xa8\x26\xfd\x1a\x3e\x25\x0e\xd5\xe2\x24\xe5\x7a\x31\xa6\x9d\x89\x78\xf8\x46\x1d\x7f\x4b\x26\x05\x4c\x1f\x5f\x04\x64\x25\x5f\x37\x18\xbd\x99\x76\x6a\x57\xa8\x8a\x86\x0d\xe7\x68\x5d\xca\x89\x16\x8c\x0f\xfd\x14\x1c\xc3\xbb\x35\xaf\xe8\xeb\x33\xed\x20\x4a\x32\xd4\x39\xf1\x3c\x0f\xc6\x5e\xe4\xe8\x81\x53\xa6\x0a\xa2\x24\x2f\x52\xf0\xf8\x38\xd1\x1a\x2f\x60\xd3\xf8\x70\xd9\x88\x49\xb4\xe8\xe1\x84\x44\xb0\xfc\x06\xe1\x10\x6c\x40\x88\x17\x31\xd1\x05\x39\x0e\xef\x53\x3a\xde\x3e\xa5\xd2\x5e\xc5\x28\xb7\xc3\x11\xdc\x11\xac\x51\xf0\x2b\xba\x75\xfc\x8d\xaf\xb9\x04\x81\xaf\xbe\x06\x26\x8d\xe0\x89\x60\x8d\x9f\x05\xe8\x85\x6f\x6a\x0f\xf4\x02\x89\xd7\xcb\xa1\x82\x72\xe8\x55\xcc\x1e\xdf\xb8\x4e\xf5\x2c\xb7\xa3\x60\x10\x46\xbd\x54\x72\x1b\x70\xe1\x6e\x28\x76\xd9\xdb\x1d\xaf\x7e\xf4\xa3\x2a\x25\xe8\x2a\xc2\x42\x6c\xcf\x6f\xc1\x18\xc3\x19\xc6\x69\x2b\x3e\x90\xf7\x37\x4f\xbb\x4c\x7a\x90\x86\x79\x18\x84\xd9\x50\x09\x6e\x9f\xc7\xe9\x2a\xdb\x44\x15\xd8\x07\x36\x5c\x46\x2b\x16\x9c\xfa\x9d\x5d\xc5\xe1\x74\x47\x2f\x9e\x63\x1a\xb0\x58\x0c\x47\x54\xae\x2d\xdf\x0c\x9b\x05\xa7\x26\x5f\x3b\x5f\xb2\xc8\xa9\x69\xc6\xe7\x30\x69\x11\x4b\x30\xe1\x33\xc4\x51\x92\x64\xa8\x75\xce\x73\x55\x1d\x39\x6f\xbe\x56\xb4\xab\x26\x4c\x83\xd4\x2c\xe5\x53\x8a\x08\xfa\xc1\xd8\x5b\xf0\xf7\xc6\x15\xbe\x24\x95\xa0\x7b\xa0\x94\xc4\xbf\xa3\xcc\x8a\xc9\x20\x5d\x58\xce\x06\xce\xf2\x13\x8a\xc4\xb9\xde\xc3\xb7\x30\xdd\xb6\x6f\xe6\xa9\x69\xf9\x4e\xb3\x8b\x5a\xed\xb8\x2e\xb2\x42\x38\xee\x22\x58\x76\x6d\x95\x88\xf3\x8e\x21\x8a\xe6\x9b\xda\xae\x99\x7f\xf9\x50\xdb\x44\xa5\xd3\x51\x60\x2e\x91\xca\xff\x4c\xa1\x11\x3f\x73\xec\x34\xcb\x6b\x91\x9d\x50\x4a\x2f\xa7\x15\xf5\xee\x3b\xe4\xf1\x09\x16\x50\x36\xf1\xb0\x48\xe9\x81\x5a\x8e\x86\x7b\x13\xf6\x9a\x6f\x6a\xc5\xc5\x85\xe9\x85\x76\x66\xe3\xd0\xa3\x66\x99\x7f\x4e\x15\x35\xff\x6d\x05\x9d\x95\xd9\xb5\xa9\xd2\x0a\x3b\x2d\xf1\x99\xc3\xd2\xac\x5a\x65\xac\xf1\x5f\x06\x3f\x4a\x22\xee\x2a\x23\x37\xba\xf1\x9d\x62\xe0\x5d\xc5\xb5\x78\xd7\xf9\x28\xc6\xa6\x49\x6c\x8a\x3c\x0c\xa4\x15\x00\x59\x8e\x1b\x63\xad\x4a\x8b\x9f\xc7\x71\xb3\xb3\xeb\x6d\x6e\x3f\x35\x8b\x13\xad\xc3\x2f\xf3\xc2\x42\x0b\x28\x83\x5e\xc7\x8a\x4b\xf8\x87\xe3\x6a\x9b\x46\x11\x11\xce\x62\x9f\x97\x1b\xbf\xdb\xf1\xdd\x1e\x37\x74\x46\x80\x7b\x89\x38\x4e\xc2\x12\x90\xa0\x89\xd6\x3f\x93\x2e\x51\x7c\xc1\x1d\x1b\x34\x72\xae\x7b\xc3\x01\x56\xae\x2a\xc6\x4a\x86\xdd\x70\x6d\xb1\xe3\x1f\xcf\xbe\x39\xb2\x69\x68\xe3\xc0\xb2\x34\xba\xfb\xb1\x72\x3c\xe4\x31\x7c\xba\x14\x29\x79\xbe\xf6\x56\xc5\xa4\xd6\x7a\xc1\x7d\xc1\xf2\xf9\x0e\x8d\x2b\x4a\xd0\xe3\xb3\x5a\x73\xf3\x91\xe9\x57\x59\xd6\x0b\xa9\xd7\xf2\xa7\x1d\x93\xa1\x53\x3c\xd9\x68\xa8\xd7\xae\x9a\x88\x78\x51\xbd\xe4\xe0\x9c\xd0\x57\xdd\xac\x3a\x8d\x36\x5d\xb1\xd9\x1e\x1a\x05\x01\x9f\x96\x9f\x93\x46\x19\xff\x56\x0f\x3b\x4a\x9e\x9a\x0f\x48\x44\x29\x57\x30\x03\xae\xcf\x66\x76\xd6\x47\x95\xe5\x23\xc3\x69\xbf\xa0\xb2\x19\x44\x61\x65\x7a\x61\x90\x27\xe9\x1a\xf9\xa1\xcc\xc2\x85\x84\x8c\x50\x72\x6d\x4b\x00\xff\x4e\xfb\xc8\xf4\x13\xb4\x3a\xb7\x6e\xd2\xdc\xb2\x5c\x05\x96\x98\x30\x37\x7a\x1d\xbb\xe3\x80\x23\x3b\xed\x7a\x77\x3e\x7f\xae\xc3\xe0\x4d\x55\x9a\xbd\xa4\x99\x2c\xa9\xb8\x0c\xcf\xfe\x38\x61\x58\x31\x7e\x1c\xa0\xc1\xf1\xfb\x97\x80\x13\xdd\xa4\x65\xc7\x5f\xde\x48\xe1\x67\xc2\xe5\x10\x91\x9b\xe2\xcf\x98\x77\xfc\x19\xfe\x1c\x4b\xa2\x1e\x74\xba\xa5\x41\xf1\x0c\xf0\xef\x02\xb2\x2c\xbf\xc2\x39\xed\x07\xe7\x9c\xd3\xfe\x98\xab\x1d\x07\x2d\xef\xcc\x6f\xe8\x6c\xe2\x46\x85\x1d\xd7\xe6\x6b\xfb\x68\x18\x84\x7c\xae\xe5\x84\x32\x2e\x63\xe7\x09\x45\x3b\xed\x3c\xa4\x9b\x36\xb1\xf3\xf8\x06\xf3\xce\x7f\x36\xae\x31\x4f\x20\x81\xc0\xa0\x54\xa4\xdf\x36\xa9\x0c\xc0\x98\x39\x8d\x3b\xfd\x07\xaa\x83\x32\x0c\x96\xc1\xd3\x86\x15\xf5\x27\xf0\x9b\x1d\xe9\x41\xb9\xa4\x18\xc1\xe2\xde\x7a\x31\xcc\xa7\x3c\xc6\x79\x6b\x9b\x96\xd1\x11\x91\x33\xff\x53\x05\xb9\x01\xd3\x12\x96\xf3\xde\xae\x93\xcc\x5a\xcb\xf2\x64\x14\x02\xe6\x04\x8f\xe9\x18\x5e\x80\x6f\x1e\xc9\x8a\x1f\x85\x8b\x36\xcd\xd1\x99\xd7\x98\x82\xd7\x8a\xd1\x4b\x39\x6c\x3c\xb0\xaa\x28\xae\xe1\xd4\xfe\x23\xcd\x6e\xff\xb9\x02\x7b\xa0\x63\x13\xff\xfe\xcf\x9a\xd8\x3c\x16\x8b\xb4\x67\x63\x6e\x18\x80\x49\xb9\xa9\xab\x12\xd0\xb9\x16\xea\x4a\xef\x5f\x2f\x85\xd9\xc0\x52\x91\x41\x95\x02\x36\xf4\x12\xa8\x13\x8a\x1e\x99\x6e\xc7\x49\x6c\x15\x0a\xf6\x92\x66\x7d\xa8\x25\xd2\x16\xa6\xa9\xf8\xcd\x11\x24\xe6\xff\x3b\xf4\x09\xbe\xae\x55\x96\x67\x0e\xb7\x47\x49\xb0\x6c\xf3\xc5\x24\x01\xdc\x10\x9b\x1a\x00\x39\xbe\x56\x2c\xe4\x45\x1c\x96\x6e\x66\x6a\x38\x9f\x8a\x18\xe6\xfc\xd8\x97\x68\xce\xd7\xec\xe4\xef\x50\x4e\xab\xa5\x72\x57\x58\xb8\x92\xd4\x92\x25\x39\x1a\xd8\xc8\xa0\xb8\xe2\x32\xf9\xe5\x67\xf8\xa6\xf4\x5f\xb5\x9d\x7a\xed\xb5\xf6\xdc\xdc\x33\x38\x46\x91\x3f\x58\x57\x2a\x27\xef\xd3\x72\xde\x62\xa2\x15\x2c\x8e\xeb\xf4\x98\x58\xee\xe8\x3f\x42\x50\x70\xbd\x53\xa1\xe9\x52\x8e\xde\x55\x44\x6d\x48\xe7\x3f\xa0\x99\x75\x2a\x2f\x0e\xbd\x72\x1c\x61\x29\x5c\xb2\x1b\x74\x64\x20\xcf\xf1\x50\xc3\xdc\xaf\x93\x2d\xe5\x6f\x62\xc6\x6f\x6c\x73\xfe\xff\xb1\xd2\xfb\x38\xda\xa4\x26\x14\xa4\x26\x1b\x4c\xfa\x5a\xc1\x7f\x5b\x39\x10\xc6\x15\xfa\x83\x96\xeb\x26\xbe\x5b\x6b\x63\x7c\xfe\xf9\x76\xdf\xe4\x03\x64\xae\x5a\x4e\xe2\x71\xb3\xa3\x00\x40\x9b\x2a\xae\x5f\x2a\x28\x38\xda\xe5\x21\xd6\x20\x78\xe0\xeb\x8e\x52\x9d\x62\xf4\x83\x4e\x3b\xf1\xb5\xc2\x07\x5c\xd4\x42\x05\xec\x3a\x91\x21\x82\x99\xbe\xab\x80\x9e\x17\x14\x7c\xbb\x8e\xc5\x28\x0f\xee\x6c\x90\x24\xac\x03\xe0\x90\x0e\x47\xa6\x1d\xd2\xc1\xa7\x1c\x46\x69\xb2\xf4\x22\x72\xd2\xf0\x3c\x41\x94\xc2\xd7\xaa\x5c\xd0\xb3\x41\xd8\xb3\xbb\x14\x63\xe3\x4f\xc6\xfe\x89\xae\x2a\xc4\x05\x6b\xd3\xe2\x8f\x6e\x63\x11\x39\x2d\xb3\xd9\x59\xf9\x84\x02\x72\xa7\x49\x69\xbd\x88\x2a\x43\xa4\x40\xcb\x87\x80\xf3\x75\xab\xa3\xd8\x85\xcf\x28\x58\x4d\xab\xab\xe4\xb2\xaf\xe0\x77\x50\xde\xba\x8c\xbc\x89\xd0\xb6\xd0\xdb\xf1\x97\x35\x0a\xb4\x85\x2b\x61\x14\xba\xd4\x23\xe2\x90\x5b\xf4\xac\x7c\xed\xce\x07\x54\x42\xa6\x7c\x3b\x2d\x63\x33\xe0\x96\x7e\x8a\xd3\x92\x8b\xb2\x8a\x53\xe7\x1e\x0d\x15\xff\x51\x8d\xd4\x64\x61\xba\x6d\xf2\x04\x64\x5a\xac\xea\x47\xef\x2f\x0a\x7f\xf5\x84\xd5\xab\xed\x25\x57\x17\xc0\x2b\xff\x14\xdd\x26\x7c\xe3\x2b\xb3\x61\x94\xdb\xde\xa4\x52\x9e\xb8\x89\x81\x42\x32\x12\x69\x74\x00\xfd\xb8\x74\xc8\x24\x9e\x2a\x72\x7c\xa3\x08\xe3\x08\xec\x11\x33\x9e\xb4\xcf\x95\x4a\x7f\xdd\xf1\x76\x30\x0d\x7b\x61\x50\x44\x49\x91\x4d\xa8\x90\xee\x6d\x35\x94\xd7\x3a\x1e\x81\xa9\x33\xba\xc1\x20\x8c\xcd\x6e\x9f\xa1\xc4\x32\x94\x96\xe3\x2a\xdd\xcb\x91\x69\xdf\x97\x3c\x3b\xcb\xc1\x02\x88\xb7\x38\x69\x82\x57\x91\x0c\xca\x93\x4a\x97\x95\x28\xa7\x50\x36\x12\x16\x69\x1a\x38\xa1\x91\x6e\x88\x1c\xb3\x41\xb2\xca\x07\x1b\x2c\x3f\xd3\xf6\x08\x77\x86\xe6\xab\xf1\xe1\xf1\xa8\x78\xeb\xad\x32\xf6\x39\xa8\x68\xee\x3c\x90\xd2\xeb\x77\x8f\x4c\xb0\x6c\xfa\x94\xa6\x72\x2e\xc4\x65\x2d\xcc\xcd\x65\x13\x58\xc0\x27\xd7\xbd\x0f\xf1\xa5\x5a\xdb\x2d\x29\xdb\xc7\x3d\xb8\x01\x58\x6d\x90\x05\xe5\x6b\x25\x0a\x18\x25\x86\x88\x46\x5f\x62\xc7\x12\x67\x15\x56\x2b\x3a\x0d\x19\x0c\x49\x2b\x57\x44\x79\x2a\xea\xf1\x0a\x39\xb6\x55\x71\xee\x72\x13\x3d\x47\x8b\xcc\xf9\xb2\xae\x97\x6d\xf7\x3a\x4e\x26\x84\x64\x5b\x63\x6f\x0a\x77\x10\xdf\x02\x7c\xbb\xc7\xb0\xb3\x25\x67\x44\xc7\x05\xdc\xed\xb3\x70\x87\x90\xc1\x7b\x6f\xac\x5a\xec\xef\x8e\x15\xd1\x2b\xb1\x1f\x6c\xbd\x83\xa2\xaa\xd3\x1b\x28\x6d\x02\x7f\x0d\xe6\x42\x32\x73\x4a\xdd\xe2\x73\x78\x6f\x48\xa6\x6c\x90\xd1\x74\x32\x7a\x73\x1e\x1e\x45\xfb\x9c\xbf\x18\x03\x81\x84\xfe\x2d\xd5\x11\x3c\x4a\x93\xc0\xda\xde\xa4\x87\x35\xdc\xea\x28\x88\x09\x8e\x5d\xa4\x70\x76\xac\x2b\x71\x9c\x07\x35\x57\xe1\xc8\xf4\x4c\xbb\xf4\x43\xbe\xf1\x35\xa7\x69\xa2\x05\x4e\x54\x19\xc9\xa4\x36\xe6\x54\x33\x7b\x77\x8a\xad\xfb\x9c\x93\xd3\xa3\xf8\xa7\x8c\xeb\x4c\xc4\x2d\x55\x58\x05\xdc\x8d\x05\x6f\xf7\x23\xda\x69\xd2\xd7\xeb\xc9\xd5\x02\x93\x0f\x92\x28\x0c\x04\x9a\x29\xd4\x4b\xf4\x51\xbe\x69\x32\xb3\x8b\x45\xaf\x6f\x73\xa1\x8e\x87\xe7\xfd\x4b\xc5\xf0\xf0\x4b\x85\x46\x02\xf3\x31\x9d\xc4\x8e\xc6\xe2\x26\x91\xed\xf0\x75\x67\x5b\xd2\x7f\x6e\xae\xbd\x30\xbd\x40\x6e\xad\xd4\xcf\x68\x14\x98\xbf\xb5\xb3\x3d\x53\x84\x0d\x7b\x4d\xe7\x80\x37\x54\x42\x2f\x0a\x63\x1b\x53\x42\x4f\x52\x65\x34\x73\x58\x77\xa7\x14\x8d\xcc\x1d\x4d\xba\xf0\xff\x56\x60\x73\xf1\x5b\x66\x42\xb1\x75\x9f\xa5\x4f\x21\x97\x7f\xbf\x42\x9b\xb1\xdf\xe7\x44\xb3\x37\x29\x5b\x8d\xef\x3e\xa5\x77\xfe\x49\xcd\x8c\x03\x50\xba\xe0\xb0\x1b\x40\x0e\x59\xa4\x65\x0f\x11\x8b\x80\xb2\x09\x15\x00\x6c\x77\xe9\xfb\x6b\xa8\x3c\x83\x4a\x66\x52\x89\x3a\x54\x75\x2c\x68\xdc\xa4\xd8\x8e\x75\xc0\x77\xaa\x97\x37\x8c\x7b\xd4\x22\x3e\xe5\x3d\xe8\xf7\x95\x07\xfd\x3e\xd9\x78\x6c\x8d\x13\xe4\x07\xe2\x24\xfa\x05\x82\x5c\x6c\xd5\x7a\x3b\xd2\x91\xe9\xf9\xb6\x89\x50\x0f\xae\x62\xec\x91\x19\x01\x4b\x91\x54\x57\x9e\xad\x38\x55\xa9\x59\x03\x5c\x64\xda\x91\x9c\x96\x7f\xcc\xd7\x4a\xd9\x33\xb7\x69\x9a\xa4\x61\xc6\x04\x69\x12\xd3\xfb\x87\x3f\xee\x88\x4b\xfa\xa9\x89\x7b\x59\x12\x13\x32\xc1\xe9\x92\x38\x63\x71\x5f\xc1\x01\xcf\xd6\x22\x8d\xf9\x85\xf9\xb6\x89\x6d\xd0\x4b\x88\xdf\x74\x41\x0c\xc9\x07\xf4\x53\x7c\xdd\x24\xe3\x47\x2a\xb7\x2d\x05\xec\x3b\x4d\xbf\xc9\xd7\x9d\x2f\x29\xd9\x94\xa5\xd4\x64\x79\x5a\x04\x54\x00\x50\xb9\xa0\x0b\x0a\xd2\x7b\x41\x57\x01\x8b\xb4\x1f\x06\x88\x65\x5e\x62\x37\x13\xb8\x03\xbe\x76\xee\xd0\x6a\x18\x2d\x16\xa9\x52\xc2\xe7\xcc\x02\xdf\x74\x3c\x80\xed\xf5\x72\xf3\x67\x7b\x26\xb4\x36\x2c\x19\x6c\x59\x43\xbe\xdd\xeb\xe2\xb8\x22\xc2\x4d\x5f\x08\xb3\xfe\x3e\xd9\x63\x7c\xe2\x9c\x8a\x5a\x76\x77\x15\x94\x7f\xd3\xc5\xe5\xa3\x22\x7f\x9c\xbe\x0a\x6b\x61\x0a\x8c\x47\x88\xf9\xf6\xae\xd3\xcb\x39\xe0\x96\xdb\x19\xbb\x88\x99\x4c\x0c\x26\x65\x84\x1c\x09\xb2\xe7\xe5\xfe\x52\x57\x21\x57\xfe\x14\xbc\x8c\x48\x1c\x7d\x57\xb3\xe3\xed\x20\xf6\x46\xac\xae\xc7\xa9\x3e\x88\x45\xfd\xf8\xba\xea\xa0\xfc\x8f\xba\xdb\x37\xf0\x0b\x4e\x58\xb6\xa7\x97\x1f\x17\x2e\xf8\xa6\x21\x65\xfd\x6a\x3b\x4a\x92\xa1\xe8\x82\x0b\xeb\x1c\xbd\x28\xdf\x34\x41\x9b\x06\x61\x7f\x40\x52\xa7\xba\x26\xd8\x52\x1c\xc6\xcf\x2a\xdd\xbe\xdc\x0e\x28\x49\x04\xdf\x53\xe4\x5e\x94\xdc\x8d\x06\x56\xe4\xa9\x09\x79\x03\x89\x76\x94\x67\x39\xb9\x34\xde\xe7\xf3\xb1\xc9\xd3\xe5\x40\xc1\x2d\xfc\x3d\xca\xa2\xa1\xf8\x7c\x07\xae\x16\x26\xf0\x56\xa7\xd2\x58\x55\x6e\x5c\x4c\x26\x47\x8c\x02\xab\x6d\x7d\xe5\x9b\x8c\x21\x3b\x0d\xdf\x01\xe6\xf4\x81\x6a\x52\x79\x57\x91\x29\xec\xc4\xea\x41\x15\xf7\x2e\x66\x19\x19\xb9\x07\x63\xd5\x09\xc2\x12\xde\x02\x18\x2b\x5f\x04\xf9\xf9\x5b\x30\x57\x8e\x6a\x67\x41\xf0\x49\x13\xeb\x1e\x40\xf1\x46\xe9\x79\x86\x49\x8c\xc2\x0d\xd2\xd3\x5b\xd5\xae\xbe\xf2\x83\xe2\xab\xf8\xb8\x6b\x14\x41\x06\xa4\x7c\x0f\xae\x71\xe2\x6d\xa5\xe0\xe9\x6d\xd6\x90\x5a\x26\x4a\xab\xef\x81\x9e\xd4\x92\xb7\x05\x88\x2d\x1b\xa4\x7a\x53\xd7\xfc\xcb\x87\xda\x8b\xe9\x9a\x89\x21\x59\xce\x44\x3c\xf8\x8c\xb0\xf2\xd4\x0c\xd7\xcb\x87\xda\xd6\xf4\x6d\x1a\x13\x14\xe3\x11\xa9\x18\x1f\xd2\x0e\xc2\x6c\x64\xe2\x10\x3c\x37\x38\x7d\x6f\xa9\x93\xf8\x56\xed\xa1\x66\x0e\xb7\xc3\xe1\x90\xf4\x0f\x7c\x99\xea\x96\xa2\x14\xb9\xd5\xfc\x4c\x6f\x06\x36\xcb\xc2\x15\x94\x1d\x98\x8e\x5a\xb5\x66\x9f\x52\x19\x68\x5b\xa4\xc9\xc8\x9a\x78\x9f\x72\x5d\x1e\x5b\xf7\x3d\x79\x10\x5b\xc0\xc4\x5e\xc7\xe6\xc3\xcc\x9e\x57\x9d\x6c\x68\xe5\x45\x7e\xe0\x14\x9c\x0e\xfc\x11\x8a\x1d\x7c\x3d\xf6\xfd\x3e\xbf\xb7\x17\x5d\x23\xfc\x55\x54\xc9\xe7\x8f\xab\x80\x68\x98\xf4\x2c\x08\xaf\x99\x4e\x60\xac\xc0\x79\xff\xa8\xe3\xfb\x57\x73\x1b\x0c\x62\x20\x3c\x26\x3c\x40\x19\x3d\x55\x40\x5f\xdc\xa8\xc8\x2c\x35\xa9\x28\x52\xd3\xa4\x75\x4c\x4c\xf0\xf0\xd9\x2f\x76\xb9\xd7\xf2\xe7\x01\x78\x3e\xda\x08\x68\xcd\x4d\xda\xb7\x79\x36\x51\x0e\x87\xa8\x32\xd0\x37\x60\x9b\x5c\xc3\x00\x62\x2f\xfe\x62\x3b\x68\xe3\xe0\x5c\x79\xae\x7f\xc9\x17\x47\xb6\xc6\x3b\xbf\xec\x15\xfc\x0e\x0a\xe3\xf9\xcf\x11\xae\x31\xd2\x40\x31\xb9\x6d\x94\xde\xea\xd6\x05\x9d\xfc\x39\x39\xf6\x64\xbb\x50\x08\x10\xc0\x9a\x6f\x23\x2d\xc3\xbf\x97\x0f\x39\x80\x18\x05\x0c\xc8\x5c\x9c\x27\x58\xad\x08\xe0\x21\x64\x14\x80\x03\xcd\x32\xb2\x10\x3f\xc0\x69\xa5\x98\x7f\x5d\xe1\xb8\xa3\xa6\x99\xc3\x6e\x6e\x3d\xd4\x1d\xed\xff\x3d\xca\x0e\x58\x01\x57\xb0\xb7\x61\xe2\x38\xf9\xce\x8f\x53\x29\xd3\x8d\x46\x42\xef\x8e\x24\xc1\x8e\x2e\x7d\x0e\x91\x05\xaa\xd4\x30\x25\x1c\x3d\xf1\x7f\xd0\xa2\x90\xd3\x50\xfb\xaa\x36\x5c\xfc\xff\x01\x22\x7b\x22\xfe\x7c\x35\x79\xda\xa3\x94\xe0\xbd\x8b\xf3\x44\xaf\x2e\xdd\xc7\x78\x38\xd8\xb9\x9f\x8f\xbd\x40\xca\x55\x6c\x04\xa1\xc1\xd2\xc1\x65\x39\xc9\xf0\x75\x7f\xaa\x93\xde\x9b\x08\xb6\x18\xbd\x0f\x26\x0b\x07\xe5\x2f\xdf\xcd\xc9\xc7\x96\x33\x8f\x63\x83\x4d\xba\x63\xcf\x2b\xed\xb3\x90\xae\xd0\xdc\xb9\xa1\xf7\x35\xc5\x7b\x15\xe7\x3d\x09\x99\x09\x1a\x79\xd3\xf3\x8a\x30\x88\xa3\x73\xcc\xeb\x0f\xb1\x13\xab\x7d\x1b\xc9\x00\xc7\xa3\x94\xab\xca\xc0\x8d\xaf\x9b\xc4\x8f\x7a\x96\xd4\x0f\x05\x68\xe1\x6a\x49\xce\x39\x3b\x59\xd3\x38\x58\x98\x6e\x0f\x6d\x1a\x94\xd1\xbe\xd2\x2b\x13\x91\x9f\x96\xe3\xb6\xbd\xae\xda\x42\xf2\x41\x18\x13\x7a\x11\x0b\x0a\x65\x25\xec\x82\x87\xb4\x30\x44\xd9\x4e\xe1\xe5\x38\xca\xc7\x0e\x7e\xd0\x51\xcc\x92\x9f\x9e\x6c\x52\xc0\x63\xa4\xb0\x3c\x10\x72\xd4\x10\x5a\xe0\xeb\xf5\xa7\x54\x2a\x2d\xce\x93\x74\x8d\xc2\x2c\x69\x32\xa1\x8f\x09\x9d\x53\x6b\x6e\x6e\xeb\x4b\xe4\x36\xe1\xd4\x7d\x62\xdd\x47\x88\xf6\xcd\x20\x2a\x7a\x4e\x99\x14\xb5\x23\xac\x7c\xbe\x76\x85\xd0\x2c\xe0\x42\x28\x1e\x4a\x31\x34\xc9\x75\x43\x1f\xd1\x7c\xbb\x17\xba\x36\x48\xc9\xd6\xd2\x8a\x90\x34\xae\xd2\xe9\xb1\x06\x9c\xee\xb3\xb3\x0e\x4a\xed\x2d\xf7\xa5\xca\xc2\x0a\x97\xd6\x26\x1f\x09\x29\x2e\x9f\x1e\x3e\x36\xe2\x12\xbe\xee\x28\x41\xd6\x24\x1f\x25\x45\x9a\x86\x2d\xd5\x7e\x53\x85\x49\x2a\x20\x66\x9e\x16\xfd\x7e\x64\x27\x15\xf3\x41\x47\x21\x8d\x58\x69\xce\xe1\x7f\x1d\x96\xed\xb8\x72\x40\x96\x8b\x70\x54\xc1\x1c\x30\xaf\x99\x80\xe5\xeb\x6e\xe8\x4c\x3b\x19\xa9\xf1\x16\x72\x4c\xcd\x2d\xb0\x3d\x05\xfa\xda\x6b\xed\xc5\xa2\x9f\xd1\x01\x26\xbd\xcc\x8a\x61\xff\xae\x82\x18\x5c\x50\x30\xed\xd7\x93\x22\x8d\x89\x6e\xb1\xe5\xf1\x67\x27\xc6\x4a\x62\xa8\xf6\x78\xb3\xb3\x6d\x13\xa6\x8b\x49\xca\x84\xaa\x8e\x1c\xdf\x1d\x09\x75\xae\xc2\x99\xc3\x54\x4c\x77\xdd\x51\x8c\xe5\x51\xc2\x05\xbe\x2b\x36\x8c\x57\xc2\x2c\x14\xd8\x03\x8a\x5f\xa7\x15\x57\x46\xbd\x25\x8a\x14\x05\x72\xe6\x49\x82\x99\x00\x3d\x35\x5f\x2b\x0f\x6f\x44\x92\x56\xa9\xed\x4d\x79\x49\x27\x66\x11\xc6\xc4\xb1\x04\x05\x9a\x8c\x77\xaf\xfb\x20\x7f\x37\xed\x41\x54\x48\x2e\x2b\x24\xcd\xc0\x8c\x46\x36\x66\x54\xba\x2b\x93\xbc\x32\xef\xc0\xb4\x4d\x1d\x72\x51\x68\x63\xc5\x76\xbe\x83\xb6\xa8\x68\x1e\xfc\xf6\x23\x4a\x94\xa9\x1d\x15\x8b\x51\x18\x98\x38\x03\xa8\x41\xb2\x6f\x30\x2a\x58\x91\x7b\x40\x57\x8b\x50\xea\x9e\x16\x06\xb9\xa8\xb2\x5c\xd9\x6a\x98\x65\xb4\xa8\xa5\x01\x4b\x81\x9e\xee\x28\xf9\x86\xf7\xc7\x8a\x54\xe1\x96\x2a\xb0\xac\x98\x80\x35\x86\x3d\x19\xef\x2d\xd5\xe5\x7c\xcb\x91\x29\x8c\x52\xbb\x12\x26\x45\x16\xad\x21\x8b\x8e\x14\xc5\xa6\x62\xc4\x40\x4b\x35\xab\xa3\xd3\xda\x43\x0e\xfd\x43\x87\xf4\x59\x31\x59\x3e\xa5\x73\xa7\xf4\x69\x24\x5b\xef\x28\x70\xc8\x13\xeb\xaa\x85\x1b\xae\x2e\x0d\xd1\xda\x5f\xad\xe9\x7b\xce\xcd\x11\xd9\xc0\x2a\x51\x0a\xb5\x14\x17\x1b\x0d\x2d\xc2\x22\x1c\xaf\x18\xd8\x9b\xbe\x57\x20\x29\x46\xb6\xa5\x08\x6b\x34\x81\xfa\xa5\x8e\xf7\x8e\xb3\x28\x59\xed\x25\xab\x0c\x06\xc6\x91\xbb\x3e\xae\x44\xf0\xbe\xd0\x7e\x5a\x7f\xb0\x18\x8d\x22\x92\xef\x74\x0d\x61\x17\x3a\x4a\x72\xe8\xbe\x4a\x3e\x71\xdb\x29\x42\xec\x4f\x9b\x28\x38\x22\x6b\x3c\x08\x91\x19\x81\x14\xed\x94\xee\x92\x0b\xe3\xd7\x6d\x00\x19\x34\xf8\x63\xa7\xb4\xbc\xe1\x35\x05\xbd\xd9\x52\x51\xaa\xc9\x32\x9b\xd3\x6a\xc2\x1e\x6a\x75\x95\x22\x38\x14\x3c\x35\x40\x03\x39\xc0\x4f\x9b\x6a\xc6\x8b\x61\x12\x25\x48\x9d\xf8\xa3\xe0\xf7\xd5\x51\xf0\xfb\xb5\x02\xfe\xc1\xb9\x72\xb8\x6c\x3a\x34\xe9\xb2\x15\x35\x0c\xc5\x32\x7f\xc8\xf9\xc0\x4f\x29\x24\xe7\x20\xb4\xa9\xa4\x5f\x61\xf6\x7f\x8d\x37\xe5\x1b\x35\x19\xa3\xa2\x74\x13\x32\x8b\xd4\x0b\x56\xe6\x6d\x35\x7e\xb7\xe1\xb7\xc1\x3b\x7b\x5f\x73\xda\x7d\x57\x45\x4d\x0f\xe0\x6a\x21\xd9\x76\x17\x4e\x2a\xdf\xc0\xe3\x96\x20\xd6\x9f\x1b\x78\xa3\xdf\x24\xc3\x02\x67\xe4\xaa\xaa\xbf\xb6\xd6\x55\x70\x71\x8c\xf2\x3a\xf0\xae\xce\x92\x5b\x02\xaf\xf6\x2a\xbe\x1b\x91\xec\x39\x2c\x6d\x9c\xbe\x3b\xc1\xa7\x26\x0a\xca\x8a\xf1\xed\x18\x9e\x14\x2f\x37\xc0\x69\x47\xcf\xf6\xfd\xe7\x48\x5b\x42\x16\x46\xcb\xf5\x5e\xed\x20\x1d\x0e\x58\x99\xef\x29\x6a\xe2\x3b\x1d\xe5\xe7\x3d\x0e\x42\x33\xec\xd9\x73\xca\x57\xfd\xb6\x6e\x0c\x07\xaa\x11\x9e\xf7\x95\x8e\x12\xe8\x7d\x1f\x65\x05\x1c\x7f\x57\x28\xc1\x21\xc5\x79\x72\x68\xd9\x9f\x1e\x6b\x0e\xc0\x3f\xaf\x61\x79\x5e\x68\x2f\xda\xd8\x2e\x85\xf9\x64\xf9\x05\x9c\xe2\xc0\x18\xf1\xc3\x28\xf6\x93\x7b\x34\xc9\x72\xb6\xfb\xc0\x92\x7a\x09\xbf\x44\xd3\x02\x3f\xeb\x2f\x3b\x9e\x11\x61\x0f\x5e\x13\x66\xf5\x2e\x3f\x0e\x86\xe9\x32\xa1\x67\x04\x4b\xa7\x32\xd3\x93\x9a\x1d\x9b\xeb\xa1\xf8\xb3\xa9\x75\x6f\xa3\xa7\xd0\x40\xc8\x10\x12\x2c\x3a\x21\x91\xa3\x21\x90\x3e\x12\x9a\x3e\xa1\x01\xa2\x21\x84\xa5\xb8\x8c\xf9\xc7\xda\xfc\x05\x85\x73\x70\x1a\xaf\xa9\x75\xba\x9b\xe6\x18\x8b\xf1\xfb\x54\x2f\x10\xfd\x7e\x0a\x22\x30\x64\x13\x5d\x05\x7f\xfa\x39\x55\x39\x10\x43\x4c\x52\xd7\x05\x02\x85\x9d\xdd\xa7\xb4\x78\x63\x36\xb0\x80\x05\xc1\x14\x40\xf8\x4a\xb7\x7d\x22\x2b\xf7\x59\x9d\x2a\xfe\xe5\x43\xed\x55\x13\x2c\x03\x7e\xa9\xeb\xf7\x42\xba\xd0\x14\x4b\x2f\xa6\x89\xe9\x41\x58\x7b\xde\xbb\xc3\x9e\xe9\xb4\xf3\x9c\xaf\x9c\x5a\x93\x91\x6b\x12\xad\xb1\x45\x10\x61\x64\xa5\xee\x7b\xa6\xe3\xeb\xb9\x43\x33\x1c\x26\xf9\xa0\xa5\xc4\xaa\xde\xd7\x3c\x05\x4e\xe0\x8c\x84\x7d\x46\x61\x1c\xb3\x17\x8c\x82\xe7\x49\x1c\x01\x7c\xe3\x05\xce\x6c\x1c\x0c\xca\x3d\xbf\x4b\x89\x51\xfd\x68\xec\xe1\x24\x57\x31\xcd\x98\x02\x26\x99\x14\xbc\x3d\xbd\xa6\x90\x11\x95\x3f\x85\x30\xee\x96\x4a\xc8\x07\x69\x58\x9e\x2a\x71\x9f\xa4\x96\x51\xe7\x3e\x09\x43\x24\xb4\x4c\xe5\xf8\xf0\x7f\x60\x15\x09\x45\xd3\x13\x2a\x45\xd6\x0b\x8d\x72\xb4\xb8\x1f\x8b\x6f\x54\x0e\x3c\x37\xcb\x36\x59\xb1\xe9\x5e\x1a\x44\x2e\x82\x91\x99\x42\x26\xf5\x32\x76\x80\x50\xbe\xb5\x1c\x59\xe9\x96\x6e\x0a\x03\xc2\x12\xae\xc1\xbf\x1e\x7b\x91\xd7\x73\x5a\xd3\xe5\x0a\x16\xb6\xa8\x55\x3c\xa1\x52\x66\xa9\xed\x4d\x6a\x72\xec\xa3\x8a\x8e\x73\x53\x55\x76\x37\x75\xae\xee\x68\x93\x77\xbd\x64\x42\xc4\x27\xb0\x92\x48\x09\xf1\x75\x45\xd3\x32\xb5\x41\x9e\xa4\xfb\x14\xf1\xeb\x67\x78\x55\x21\xae\xf0\xde\x15\x52\xe5\xb0\x36\x3f\x52\x4c\x5a\x9b\x58\x79\xb0\x69\xac\xf2\x88\x94\xdd\x64\x57\xb7\xc9\xd2\x18\x38\x83\xe2\xd3\x30\xdc\x54\x2d\xa4\x3e\x0d\xea\xc8\x3d\xbb\x64\x8a\x28\xaf\xb4\x3c\x5e\x52\x2d\x8f\x75\x26\x60\xe2\xc7\xcd\x53\x6b\x86\x92\x53\x87\x55\xe1\xae\x53\xbe\xd1\xbc\x52\x21\x28\x8a\xb0\xa0\xee\x2b\xea\xda\xfb\x8a\x0c\x6e\x68\xe2\xb5\xa7\x68\x78\x34\x63\x02\x5c\x87\xdd\xb0\x8b\x30\x12\xbb\xa8\xcb\x1a\x8b\xff\x3c\xe5\xb3\x1c\xf2\xd1\x99\x1f\x70\xaa\xe2\xac\xfc\x98\x72\x26\x1a\x23\x85\xa3\x7b\x6f\x57\xe1\x11\xef\xe8\xde\xe0\x4f\x35\xaf\xc6\x44\xd7\x67\x7a\x58\xc9\x1a\x2e\x66\x8e\xb1\x75\x02\x24\xe5\x31\x80\x89\xba\xab\xda\xfd\x8a\x38\x5c\xb1\x69\x26\xac\x2a\x38\x1b\xcf\x2b\xfe\xa2\xf3\x8f\x14\xab\x48\xed\x8a\x8d\x0b\xa8\x1c\x61\x32\xae\x51\x1c\xff\x5b\xd4\x8c\xe4\xfc\x5f\x07\x24\xdd\xd0\x3a\xbe\x8f\xaf\x3f\x5e\x91\xaa\x9c\xa2\x97\x45\xf2\x8a\xdd\x21\x3c\xf9\xbf\x1b\x2b\x18\x09\x6d\x8a\x8a\xd2\xb4\xe4\x7a\x9e\x56\x3d\x44\x61\xd4\xb3\x29\xd2\xef\x00\xe8\xb0\x92\xa2\x70\x28\xfa\xee\xb2\x26\x06\xf1\xf6\xd0\xac\x2d\xda\x28\x0a\x63\xd6\x8a\x43\x86\xf8\xb8\x22\xbb\x38\xde\x40\x96\x86\x9a\xb7\x2c\x39\x64\x1b\xf8\x54\xe3\x9b\x4a\x72\x20\x5f\xe1\xd8\xc8\x25\x5d\x7d\x8f\xfa\x26\x1d\x39\x0a\xfc\x3a\xe3\x7a\x00\xfc\xaa\xed\xf7\x51\x5d\xc7\x9f\x21\xf1\xc2\xd7\xaa\x18\x91\x16\x59\x1e\x91\xe2\xaf\x22\x0f\x3d\x53\xa1\x53\xf5\x89\x96\xd4\x9a\x40\x41\xc0\x05\x4f\x4d\x8f\xc9\x37\xb5\x44\xbc\x2c\x86\x51\x64\x62\xf1\x53\x99\x99\x5f\x73\x34\x7c\xa2\xf6\x9b\x29\x22\xe2\xd7\x40\x88\x0a\x34\x0f\x9c\xe6\x1b\x5a\x25\x0b\xb5\x77\xa4\x08\x3e\xac\xc0\x64\x30\xaa\x8e\x3e\x67\xde\xa7\xfc\xc6\x48\xde\x3a\x38\x8d\x0e\xc4\x7c\xf0\xd0\xa3\xd2\xc9\x1e\x1a\x11\xf8\x22\x9b\x1a\x6c\xb6\xae\xca\x58\xd7\xc8\x47\x95\x7a\x57\xcb\x89\x66\x7d\xa4\xb5\x0b\x4e\x77\x14\x00\x57\xb8\x87\x05\xc3\xe4\xc5\xcc\xf2\x34\x1c\xb6\x14\x35\xeb\x1d\xa5\xc7\x7b\xc7\xb5\x6f\x25\x69\xcf\xa6\xc2\x97\x81\xec\xf0\x8f\x14\x53\x28\x67\xa6\x30\x76\x57\x5d\x79\x76\x39\x4e\x02\x08\xd9\xce\xeb\x22\xe6\x8c\xcf\xac\x96\x93\x08\x43\xf4\x40\x45\xc7\x29\x89\x00\xda\x74\xaa\xe5\xf5\x70\x68\x2c\x60\xdf\x99\xf6\x56\x9a\xb3\xca\x59\x63\xb9\x38\x30\xf8\x08\xc9\x9c\x3c\x46\x4a\x50\x5a\xc5\x22\x02\xa1\x12\xbe\x56\x4d\x86\x23\x9b\x2e\x25\xe9\x70\x42\xa9\x19\xde\xe9\xf8\x48\x0a\x6c\x4a\x70\xee\xce\xd4\x0e\xb9\x72\x8f\x86\xd1\x32\x56\xa9\xab\x11\x7a\x0e\x10\xd5\x7a\x46\x21\x94\xcd\xa6\x94\xac\x03\xf7\x4d\x89\x5a\x85\x47\xcc\xf2\x01\x01\x53\x7a\xa7\xa3\x24\x94\xee\x76\x3c\x8c\x39\xb5\x24\xe6\x61\x7b\x8c\x2d\x03\xcc\x83\x29\xc9\xf9\xc6\x45\xe0\x8b\x26\x0b\x63\xd5\x8d\x73\x49\xeb\x3a\x5e\x52\x81\xfa\x30\x0c\xa6\xaa\xd0\xb7\x85\x69\x4e\x23\x81\xbf\x11\xde\xf4\x1f\xc3\x4c\x08\x68\xa4\xe5\x34\x83\xf7\x75\xf7\x3b\x8c\x82\xb5\xcb\x2d\x5f\x31\x7f\xb6\xab\xf8\xb8\x9e\x5d\xdf\xbe\x7f\x0f\xce\xb5\xc3\x9e\xa5\x60\x56\xf8\xf0\xa5\x4d\xcc\xd7\xdf\xce\x35\x01\x4f\x56\xc2\x24\xb2\x71\x80\x9c\x84\xe8\x8e\x96\x8f\x2d\xb6\xca\x9f\x4b\x1b\xca\x6e\xd9\x28\x69\xa9\xed\x02\xb4\xaa\xd4\xd7\xfc\x9f\x65\x36\x7d\xaa\x5c\x93\xc2\xab\x52\xa9\xc3\xb4\xbe\xfa\xca\xd6\x51\x38\x7e\x54\xe8\xfc\x5f\xff\x03\x9c\x95\x70\x91\x6e\x68\x71\x95\xfd\xeb\xaa\x33\x61\x57\xd7\x93\xf1\xa0\xc1\x99\xb6\xc7\x7f\xf5\x9b\xeb\xbe\xb0\xb7\x49\xb1\x84\x98\x05\xf2\x3a\x69\x1d\x7e\xe1\xb7\x70\x88\xe0\xf8\x9a\xa0\xda\xa1\x3e\x50\xf0\xad\x9f\xc2\x82\x09\x2a\x7c\xfb\xd1\x39\x3b\xdb\x5e\x2c\x52\x6b\x8a\x20\x35\x39\x57\x48\x1d\xbb\xab\xef\x6b\x6f\x5a\xf1\x91\xc9\xed\xa4\x4f\x20\xdd\x57\xba\x96\x50\x95\x63\x41\x75\x5a\x39\x78\x95\x1d\x5d\x7f\x2a\xbe\x5e\xf4\xc2\x20\x34\xd1\x44\x39\xa8\x0e\xbd\x5b\xfa\x04\x08\xda\x2e\x77\xfc\x10\xfc\x42\xb9\x89\xa3\x34\x19\x25\x59\xa5\xdf\x1b\xc7\x07\x5f\x57\x0e\x35\xdb\xb7\x7b\x2a\x7d\x13\x34\xf6\x9c\xaf\xa4\x17\x14\x0d\x66\xda\x69\x70\x60\x7e\x8c\xfd\xc8\x4d\x36\x0a\xac\xcf\xe8\x10\xc7\x22\x3a\x73\x98\xbf\xaa\xae\x72\x08\x71\xbb\x3c\xcc\x06\x34\xa4\x70\xbe\xf6\x60\xe5\xf3\xcd\x7a\x5d\x47\x61\xbe\x3d\x34\x91\x55\xdb\x73\xa3\xa3\xb6\xe7\x86\x92\x68\x28\xe2\x30\xcf\xf6\x79\x14\x1f\x90\xf0\x8c\x5b\xa1\xd1\x67\xdb\xa2\x73\xee\x20\xd2\x46\xec\x39\xb5\xae\x10\xf6\x4c\x92\x86\xac\xca\xdf\x83\x67\x06\x13\xf9\xaf\xb5\x2a\xf3\x04\x69\x41\xf3\x7f\x54\x7a\x6b\x15\xa7\x71\x90\x84\x71\x10\xf6\xca\x8d\x88\xcc\x2e\x3c\x79\x80\x6a\xf9\xba\xd6\x56\x31\x73\xb8\x8d\xde\xdd\x39\x29\x54\xdf\x56\xcb\xe9\xb6\x42\x36\x06\x03\x93\xf6\x2d\xcb\xc8\x63\xa5\xe0\xb5\x44\x42\xc9\x77\x8f\x32\x91\x12\x32\x1a\xf7\x14\x14\x77\xc9\x46\x91\x45\xcf\x2c\x46\xe9\x92\xc2\x4b\xb7\xba\xbe\x78\x7f\x47\xab\xa9\xfe\xc2\x11\x82\x2c\x86\x51\x34\xa1\x1a\x4c\x2e\x2a\x8d\x22\xce\xdc\xe0\xb4\x3a\xa5\x7c\x99\xac\x48\x49\x57\x30\x45\xd1\x88\xc5\xdf\x15\x09\xd8\x3b\x2e\xf8\x5d\x0c\x93\x2c\xa0\x1e\x3c\xa9\x8a\xc3\x5a\xb0\x90\xb6\xf3\xc3\x54\xd6\xcd\xf1\xac\x50\x56\x76\x37\x65\xa8\x10\x32\xfc\x06\x99\x18\x26\xa3\x24\x7c\x0a\x8e\xea\x93\x0a\x19\x0d\x40\x0b\xba\x0f\x39\x6f\xe9\x14\x31\xbf\x2e\x70\x7a\xdd\x16\x9f\x2c\xe6\x26\x8c\xf7\x78\x5c\x16\x18\xd4\x98\x9e\x56\xd5\xcc\x4f\xe3\xd4\xc2\xd9\xf6\x39\x6d\x19\x97\x3b\xf2\x0c\x74\x67\x15\xd8\xf5\x02\xbb\x2b\x32\x40\xf5\x8e\x9a\x43\xed\xcc\x41\x33\x44\x51\xd0\xe7\x08\x2e\xa8\x31\x0f\x06\x26\x8a\x6c\xdc\x67\x3a\x5f\x04\x7f\x3b\xd6\x29\xde\xe3\x9b\x6e\xa3\x3e\x69\x79\x4a\x26\x4a\xf2\xfb\xac\x92\xfc\x6e\x06\xd2\xf5\x53\xd3\x2b\xa4\xdd\x7b\xc6\x91\x3f\x28\x0c\x58\x3d\x30\x3c\x70\xa0\x1d\x92\x98\x22\x41\x46\xe6\xe6\x24\xc1\xaf\x44\x60\x37\x15\x18\xbe\xc8\xc3\x28\xcc\xd7\x76\x55\x98\xc6\x94\xd0\xd5\x1d\x1e\x39\x97\x7f\xf6\x0e\x36\x32\xfd\xd2\x8e\x41\x9b\x1d\x19\x97\x1f\x3a\x39\xa4\x2c\x0d\x55\x21\x8b\xf7\x0e\xdf\x74\x14\x09\x7a\xf8\x16\x78\x68\x10\x43\xfc\x6f\x30\x16\x02\x08\xf2\xb6\xf2\x74\xc7\xd3\x7c\x1d\xa7\x79\xc7\xe2\x60\x98\x2f\xac\x56\x63\xb9\xab\x18\x21\x58\x26\xc3\x89\x2f\xb8\xad\xe0\xa3\xb7\x5d\x4b\xf2\x20\x1c\x66\x36\x5a\xaa\x6c\x91\x4b\xe4\xf6\x6c\xf1\xaf\x88\x5c\xe4\x3e\xe7\xd6\x44\xe0\xe6\x63\x92\xfb\xb1\xe2\x9d\xdc\x52\xd5\xd0\xc7\xba\xb5\x73\x02\x25\xcc\xbb\x4d\x5d\x40\xd9\x20\x1c\xe1\x38\xc2\x89\xc7\x4b\x9b\x6f\x3a\xbe\x3a\x17\x27\x01\x51\xbd\x6b\x46\x6f\x4e\x95\xf1\x4d\x4d\x38\xe0\xe0\xdc\xf6\x8e\xdc\x19\x2f\x21\xe1\x55\xe8\xe1\x85\xc1\xdb\x78\xaf\xe3\xeb\xa5\xbf\x18\x3f\xeb\x96\x8f\x3f\xe7\x5b\x15\xfa\x44\x5a\xa2\x7c\xd3\x84\x28\x88\x93\xa9\xd6\x37\xbe\x26\xb0\x89\x8e\x47\x69\xbd\x8b\x35\x82\x13\xf4\x3d\x9a\x63\x98\x90\x1d\xeb\xbe\xf8\x73\xbf\x82\x02\xb0\x6b\x4f\xab\x5e\xae\xe7\xc8\xd4\x62\xf1\x82\x70\x58\xe0\x79\xad\x85\x79\x27\xea\x4a\x5e\x95\xa4\x38\xcb\x2f\xc6\x76\xfa\xbc\xa3\x34\x9d\x99\x55\xc4\xf1\x9e\x97\xa3\xe1\x58\x08\x67\x0e\x7b\x4a\xd7\x23\xd3\x1a\x3b\x33\xc3\x81\x04\x13\x8f\xc3\x80\x6c\x8d\x15\xe7\x04\x18\x68\xb0\x0d\xf6\x92\x22\xb5\x43\xc1\x2f\x4c\x1f\x72\x42\x2a\x0d\xa5\x15\xe2\xbc\x1d\x86\x59\x16\x32\x3d\x61\x13\x45\xee\x93\xba\x5e\x4e\x8c\x51\x73\x72\x8a\x5f\x57\xad\xa4\xd7\x55\x66\x6e\x94\x86\x43\xce\x03\xf0\x46\x57\xdd\xd8\xa7\xb4\x5f\xbb\x8a\x78\x1c\xe3\x78\x5c\x01\xb1\xea\xd9\x82\x85\xe9\xf6\x52\x91\xe6\x03\x66\x90\xc5\xfc\x5e\x1d\xfb\xfe\xb2\x4f\x30\xda\x22\xc7\xb4\x7d\x99\xce\x1c\x6e\x87\xf1\x52\x54\xb0\xc6\x94\x4f\xb1\xbc\x4d\x3f\xcb\xd7\x4d\xda\x28\x99\x4d\xe9\x13\x8e\xce\xee\x9a\x4a\xa9\x5c\xab\x38\x73\x45\xdf\xee\xc6\xd6\x81\xa3\x72\x1a\x13\x85\x83\xff\xff\x50\x0c\x06\x97\x55\x80\x82\x9e\x7c\xe1\xea\xa7\x55\x52\x01\xe0\xf0\x57\x29\x0b\x17\x15\x21\x73\xa8\x23\x61\xaa\x89\x87\x6e\x39\xe3\x13\x24\x71\x90\xa4\x3d\x85\x92\xbb\xa2\x51\x72\x57\x54\x7a\x21\x5a\xce\x48\xb7\x97\x8e\xdd\x7f\xfc\x9b\x3a\x35\xb7\x31\xf6\xa4\x1e\x1c\x8a\x89\x4c\x5d\xcb\xb5\xd3\xee\x5a\x57\xe4\x15\xa7\xe8\x08\x77\x25\x33\xbf\x6c\xa7\xa8\x7c\xfd\xa0\xfb\xe5\x86\x7a\xed\xbc\x0b\xab\xd9\xf6\xb8\x86\x13\x2f\xf6\x57\x6f\xdf\x7e\xfe\xf9\xf6\xd0\xa4\xf9\x00\x49\x6b\x87\xce\x9a\xf3\x3a\xdb\xb5\xfa\xc1\xc2\x74\xbb\x17\x66\xa6\x0c\xf9\x5a\x1e\x55\x7b\x46\x91\xab\x9c\xa9\x11\xee\xbf\xf6\x5a\x3b\x89\xed\x04\x85\xab\x4e\xa1\xc4\x51\xfa\xdf\xa6\xd2\x0f\x12\xc0\x2d\x15\x3e\x98\xa1\x8d\xc1\xf0\x70\x64\x7a\x8b\x44\x22\xb6\x2e\x77\x3c\x53\xfd\x9a\x89\xf8\x55\x85\x7c\x4b\x91\x6a\x9e\x71\xf8\xf9\x38\xa1\x45\x8f\x0d\x8a\xf8\x0c\xc0\x4b\xbe\x56\x2e\x5f\xce\x85\x6b\x31\xdb\x1e\x80\x71\x46\x61\xcd\x97\xc2\x45\x9b\x02\x1f\x20\x9d\x25\x64\xf0\x1c\xbb\x9b\x6f\x39\x41\x59\x5a\xa8\xde\x1e\x57\x94\x70\x51\x44\x21\x2c\x5e\x1a\xcb\x0f\x6c\xa9\x9b\x58\xf1\x70\xe0\x8e\x36\x10\xe7\xbc\xda\xb6\x26\xcb\x57\x4d\xb9\x30\x7d\xc6\xae\xe3\x53\x71\x9b\xca\x3b\x7a\xbd\x78\x33\x37\x65\x2c\x35\xa1\xbc\xa3\xcb\x63\x95\x6a\xdb\xd1\xd5\x42\x20\x1a\x05\x11\x46\x11\xc0\x53\x58\xae\x8c\x95\x06\xf4\xf2\xe3\xb1\x7f\xfa\xb7\xc7\x0a\x37\x7e\x51\x59\xa7\xb4\x3f\x98\xf0\x07\x3c\x1a\x08\xa4\x01\x51\x25\x39\x2f\x37\x91\x31\x8e\xd2\x64\x05\xeb\x4b\xda\xb4\xcb\x4f\x4b\xff\xf6\x93\x0e\x3d\x91\x04\x91\x09\x87\xf4\x98\x42\x5c\xab\x70\xff\xc7\xc6\xaa\xfa\x8c\x07\x10\xe1\xfd\x06\xbd\xc4\x30\x5e\x49\x96\x2d\x50\x42\xb0\x38\xeb\x5a\x8a\x88\x43\x43\x1c\x40\x57\x54\xc5\x2b\x48\xe2\xd2\x55\x6e\x79\xe8\xf5\x71\x55\xc6\xd0\x60\xa7\x3c\x0d\x83\x65\xe0\x68\xb1\xae\xc0\xdc\xa0\x39\x0f\x84\x05\x7e\xfb\x4e\x25\x85\x92\x94\xb4\x6f\x5c\x02\x66\x9b\xfa\x87\xce\xb0\x05\x36\x1c\xe5\x19\xe2\x10\x2e\x70\xd3\x4f\x49\xb1\xdb\x83\x9c\x82\x24\x49\x7b\x61\x6c\x72\xf8\xa7\xd2\xc0\x43\xdf\xcc\x37\x8a\x21\xb7\x57\xd8\xdd\x2a\x28\xb9\xc7\x35\x5c\xd4\x08\xce\x29\x89\x2f\xec\x1e\x6e\x01\x57\xc7\xd7\x31\x8c\xa2\x4b\x2c\x96\xf3\x83\x13\x70\x7f\xad\xe1\x70\x76\xb6\xbd\x64\x56\x92\x94\x52\x10\x40\x88\xfc\x77\x63\x2d\x8f\x0c\x97\xc0\x31\x41\x95\x46\x17\xbb\xfa\xa2\x82\xa9\x01\xd1\xc0\x5d\xd7\x8e\x17\xdc\xc9\xa5\x5d\x50\x4a\xe3\x7d\x1b\x3b\x46\x92\x72\x92\xe0\x5c\xea\xd6\xaa\xb3\x95\x56\xc4\x70\x29\x67\x9c\x2c\x7e\x16\xc0\x2a\x69\x73\xa4\xe7\x41\xed\xe5\x7d\xdd\xa5\xd3\x51\x27\xfb\x35\x95\xab\x35\xab\x66\xed\x31\x1f\x66\xfe\xf9\x58\x91\xff\x82\x0b\xb5\x22\xa8\x22\xda\x1d\x9e\x14\x90\x3b\x25\x58\x2c\x0e\x63\x2b\xb5\x0a\x1f\xf1\xbe\x47\x84\x51\xfc\x55\x1d\x55\x1c\xdc\xac\x91\xb4\x1c\x38\x40\xb6\x7e\x34\xb2\xc6\x69\x9b\x62\x03\x3d\xc4\xce\xe0\x9b\xc6\x1e\xe2\xa1\x59\xc6\x0e\x86\x37\xc6\x31\x09\xdf\x34\x92\x3c\x90\x84\xe5\x76\x2e\x18\x07\xb6\xdb\xa8\x9d\x5e\xb4\x27\x8a\xb4\x8c\x13\xbf\xfa\x8a\xa0\xb2\x3b\x2a\xf5\x78\xb2\x5a\xfe\xb0\xd9\x6f\x28\x75\x5d\x26\xc1\x17\xf7\xba\x3c\x73\xa5\x67\xd7\xf7\x7e\xec\x47\x02\x0e\x55\xc8\x1b\x63\xa5\x54\xb7\xaf\xab\x71\x6c\x9e\x09\x53\xe3\xb5\x1e\x87\xfe\xb7\xd0\xe2\x95\xe7\xd8\x7e\x74\x06\xc1\x36\xdc\x44\xea\xc5\xd1\x66\xea\xd0\x6a\xc1\x53\x56\x95\x8b\x55\xe2\x46\x1d\x09\xdd\x1a\x57\xe4\x43\x91\x1b\x46\x5a\xe2\x16\xf2\x6c\x58\x3c\x8c\x86\x41\xbc\x7f\xae\xa3\x5b\x9e\x28\xf1\x88\xa0\x91\xab\xda\xd8\x67\x57\x2b\x23\xb7\x98\xa4\x7b\xb6\x25\xe8\x67\x3c\x57\xab\x2f\x9f\xe0\x20\xe3\x94\xcd\x58\x69\xa7\x6c\x61\x31\x22\xaf\x74\x4d\x4f\xd1\x55\x7e\x23\xfc\xec\xd1\x26\xdc\x53\x6c\x57\xb3\x91\x19\x79\x4c\x92\xa4\xd1\x55\xfb\xe0\x19\x97\x59\x31\xd1\x62\xf1\x46\x61\xd3\x37\x0a\xd1\xc6\xc4\xf2\xf9\x95\x0e\x77\x7f\x55\x5b\x4b\x65\x80\xdf\x4b\xcd\x2a\x63\xa4\xe0\x70\x9d\xc5\xfc\xf0\x8d\xe6\x0c\x4c\x86\x8b\x8c\xc8\x75\xb2\x96\x8a\x66\xa8\x49\x9e\x3f\xb5\xa3\x24\x45\x99\x02\xa9\x74\x96\x7b\xe1\x9b\x46\x31\xb6\xb0\x1f\x27\xa2\xe9\x07\x9e\x2a\xf0\x34\xc0\xa8\x5c\xa6\xcd\x21\x14\x35\x0d\x8e\x77\x1e\xe6\x26\xe6\x17\x42\x16\xe6\x13\x9d\x92\xf9\xc4\xf9\x48\x72\x5e\x4c\xa9\x90\xfa\xba\x56\x7f\xb8\xc4\x76\x1e\xbb\xf7\x3e\xec\xae\xeb\x62\x76\x75\xdb\x8f\x9b\xb6\x35\x47\x1d\x53\x9e\x92\xe6\x6a\x47\x71\xd6\x5e\x54\x34\x71\x40\xf4\xe0\xed\x7e\x8e\x70\x04\xc6\xac\xd5\x7d\x4e\x55\x0c\xdf\x28\xc2\xd4\x12\x67\x27\xed\x25\x67\xa5\x1d\xf3\xf0\x59\x45\x3a\xb4\x4c\x95\xc8\xd2\x0e\x55\x3a\x77\xa5\x29\xf7\x19\x25\x14\xc8\x5c\xc4\xe4\x4d\x38\xc6\x1a\x1f\xcb\xfe\xd1\xd8\xc7\xb2\x9f\xeb\xac\xcc\xe7\x2a\x6b\x1b\xa4\x49\xc6\x26\xcc\x11\x21\x1e\x98\x71\x44\x88\x2a\x52\xb6\x66\xb8\xbb\xfc\x25\xe4\xed\xae\xd2\x8e\x67\x5e\x3a\xe5\x2a\x9d\xc5\x66\x83\x73\xc8\x34\x14\xcc\x0f\x8c\xf5\xc3\x1f\x57\x98\xcf\x07\x2a\x97\x9a\x8d\xc2\x38\x59\x5a\x6a\x29\x05\xc2\x0f\x34\xa1\xf1\x07\x2e\x77\x91\xe5\xe1\xb0\x88\x0c\xd3\xd8\xc0\x12\x5e\xe9\xf8\x7a\xca\x15\x17\x17\xe5\x54\xa8\xe6\xe6\x5f\xe4\x88\xfe\xc7\x8e\xc7\xe8\x02\xe8\xca\x05\x8f\x86\x36\xc2\x76\x6a\x7b\xd6\x3a\xa0\x84\x68\xf4\xb6\x14\xf5\xab\x3c\xd3\xc0\x0c\xb3\x3c\x2d\xb8\xe3\x10\xd9\x86\x16\x2c\x32\xdf\xac\x6f\x4f\x33\x3f\xff\x7c\xdb\x64\xcb\xbc\xe8\x2b\xb5\x5b\x29\xd0\x6a\xd0\x4f\x92\x65\x91\x89\xe1\x49\xc3\x0a\x1e\x55\x10\xdb\xa3\xb5\x76\x0a\x27\x18\x9a\x44\xc9\xa4\xef\xd1\x9b\xa4\x04\xac\x20\x8e\xcb\xd7\x97\x1e\x77\xc5\xcc\x52\x57\x73\x9f\x9b\x83\x4e\x41\xb5\x58\xa7\x74\xda\xd4\x06\xcd\x4a\xdf\x31\x9f\x54\x62\x9a\x90\xde\xc5\xc6\x6b\x75\x95\x15\xfe\x54\x6b\x0b\x5e\xac\xd5\x75\x9e\x7f\xbe\xbd\x6c\x47\x39\xfa\x4f\xf0\x9c\xf7\xc6\x8a\xb5\x63\x27\x51\x25\x30\xf4\x79\x7b\x23\xd5\xc2\xf4\xa1\xf6\xcc\xe1\xbd\x5e\xf4\xf7\xc4\xd8\x47\xff\x97\x00\xb3\x61\x14\x63\xa7\xca\x2b\xee\xf5\x16\x3b\x0a\x56\x72\x0e\xbb\x11\x99\xe0\xbd\xeb\xde\x4b\x99\xea\xaa\x62\xf4\x07\x0d\x6d\x00\x2f\xb5\xed\x9b\x81\x57\xe9\x47\x22\x6f\x4b\xc1\xbb\x1e\x6a\xb1\x82\x6f\x8d\xb5\xb0\xe7\x8a\x8d\xb2\x7d\xe5\x5b\xc2\x6d\x3b\xaf\xb9\x84\x76\xac\x3b\x18\xe9\xf0\xb9\xae\x92\xb2\x46\xfe\x1b\x25\xa3\x9b\xf0\x9b\x64\x88\x2b\xc4\xf6\xe5\xd8\x60\x87\x4e\x41\x5d\x58\x7a\x7c\xc8\x9e\x49\xbb\x15\x3d\x34\x5e\xfb\xb2\x0a\x2e\xf3\x22\xcd\x23\xf0\xad\x36\xd0\x8f\x6f\x28\xac\x19\x11\x64\xee\xf5\xa4\x2e\xe8\x07\x54\x38\xfd\x19\x8e\x07\x6f\x90\x73\xa2\x00\x2c\x87\x78\x79\x5f\x60\xa3\x0e\xdb\xcb\x72\x3d\x58\x79\xcc\xc7\x84\xc9\xe3\xf6\x4e\xe1\x4f\x6b\x88\xd6\x16\x6d\x94\xac\x92\x8d\xc5\x0e\x86\x92\x1d\x5f\xab\x67\xce\x9d\xde\x87\x94\x9c\x15\xf9\xce\xa5\xc6\x86\xcb\x22\xce\x6c\x9e\x3b\x25\x48\xc9\x6e\xe9\xac\xd7\x7f\xfc\x88\x4d\x1a\x0c\x4c\x6a\x82\xdc\xfb\x0d\x8d\xc8\x45\x1f\xaf\x26\x6f\x01\x45\x29\xd0\x2d\x0f\x23\xd7\xc8\xad\xb4\xe8\xb3\xcf\x8f\x09\xff\xd5\x58\x3b\x57\xb4\x1b\x70\x66\x82\xe0\x0c\x81\xe4\x24\xb2\xcd\x38\xcc\x2e\x8f\x9f\x53\x72\x32\xd9\x1b\x45\x68\x73\x69\xab\x15\xda\x80\x4a\x51\x41\x29\x5d\xdc\x52\x27\x5b\x36\x08\x97\xf2\xdd\xbe\x9c\x3b\xd1\x55\x0a\x8c\xff\xa2\xca\x6c\xa5\xd4\xe9\x7f\xac\xe8\xc2\xef\x61\xa1\x60\x97\x31\x7f\x08\xdf\x8c\xf7\xab\x40\xa7\xc7\x19\x78\x98\x0b\x0e\xab\x55\xc6\x4d\xfa\xde\x6f\x6b\xe4\x68\x32\x1c\xda\x34\x08\x4d\x84\xb6\x16\x69\xa4\x6b\x39\xce\xd5\xba\x72\xc9\xec\x6c\xbb\x97\x82\x5b\x42\x75\x80\x30\xa7\x21\xdf\x34\x7a\x4a\x59\x6e\x96\x44\xb9\xd0\x91\x8b\x3a\x3b\xac\x69\xf6\x83\x17\xc3\x17\x97\x26\x7c\x36\x01\x3e\x2b\x32\x6f\x8c\x5f\x41\xfc\x75\xcc\xa5\x19\x82\x64\xd5\xa4\xbd\x68\xad\xda\x9d\xb3\x30\xed\x4a\x6b\xdb\x5f\x43\x56\x60\x1c\x0e\xb4\x2e\xa2\x4e\x50\x6d\x74\x9c\xd8\xf8\x37\xbe\xf6\x38\x6d\x3d\x31\x46\xe5\x76\x85\xa3\xf4\x53\x72\x94\xb6\x8e\x92\x4d\xc1\x54\xfe\xcb\x8e\x6a\x48\x63\x90\xa3\xa3\xf4\x7d\xc5\x7f\x12\x06\xc6\xb1\xe3\x2d\x54\xa8\x46\x5e\xf5\x8c\x13\xdf\xf8\x1a\xa7\x61\xbe\x47\xe3\x80\xa4\x10\xda\x79\xb0\xbf\xae\xd7\xde\xee\xe0\x5c\x3b\x48\x6d\x2f\xcc\x13\xf4\x6d\x71\x07\x0d\x7d\x5e\xba\x69\x3c\xd4\xb5\x97\xac\xc6\x39\xe7\xb3\x0f\xb1\x71\x67\xb2\x03\xbe\x69\x6a\xcb\x58\x4a\xad\x75\x6d\x19\x38\xeb\xdf\xa5\x09\xe5\x6b\xe5\x71\xe5\x03\x1b\xa6\xfb\xe9\x0f\xb1\x0f\x1e\xa3\xda\x04\x3c\xc1\xa9\x75\xef\x8c\xec\xe9\xaa\x03\xe1\x22\x62\x27\x58\x60\x4e\xf5\x57\xf8\x3f\x11\x52\x4b\xc1\x0d\x59\x4b\x4e\x38\x30\xa1\x3e\x0c\x26\x00\x43\xbf\xea\xa8\xac\xc8\x8e\x75\x8f\x2a\x3a\xa3\x80\x41\x23\xb3\x96\x14\x39\x0c\x20\x0b\x29\x8e\x55\xb0\x7b\xa9\x16\x46\xbf\xb2\x30\x4d\x5a\xc3\x2a\x25\x85\x76\x4f\x56\xd0\xa6\x79\x85\x0f\xfa\x40\x25\xa4\x7a\x61\x16\x14\x99\x10\x51\x61\xde\x8f\xa1\xb3\x99\x6f\x1c\x2d\x75\x11\x9b\x22\x1f\x24\x69\xf8\x96\x58\x58\xc1\x4d\x29\x0c\x95\xf2\x27\x2b\x3c\xcf\x8e\xaf\xc6\xf5\xad\x9c\x52\xb4\x6b\xc5\x68\xd1\x9a\x7c\x17\x0d\x33\x82\x97\x9b\x18\x66\xbe\x41\xb8\x29\x7c\x24\xb4\xaa\x85\x90\xc4\x3b\x93\x00\x25\xf1\xb5\xea\x3b\x21\x67\xdd\x84\x59\x4b\xb5\x63\x30\x87\xaf\x54\x6f\xbe\x50\xf7\x5c\xe6\x17\xe6\xc9\x6b\xc3\xf9\x77\x9f\xb6\x95\x22\x42\x9f\x77\x04\x5f\xde\x1f\xbc\xaf\x54\x0b\x33\x1b\xa4\x36\x9f\xf0\x88\xbc\x4d\xdd\x42\x06\x48\x0e\xb2\x32\xf7\x6a\x9e\x63\xe9\xb0\x24\x2b\x36\xcd\x92\xa8\x37\xe1\x61\xeb\x17\xb1\xd8\xf0\x0d\x97\x55\xe3\xcc\x9f\x68\xe0\xda\xc0\x48\x17\xae\x38\x66\x67\x55\xa4\x7d\xb6\x06\xf9\x99\x39\xcc\xcc\xf2\x65\x90\xc4\xc5\x1a\x58\x6b\x6e\xe4\xe1\x9b\x9a\x5b\x35\x73\xb8\x1d\x25\x71\xbf\xdc\xaf\x13\xea\x58\x03\xae\xca\xb9\xfa\x0e\x34\xb4\x59\x43\x79\xcc\xce\x52\x1a\x6b\xc2\xa7\x35\x7f\x5d\xc1\x82\xb7\x1c\x69\xed\x66\x2d\x48\x3e\x30\xd3\x5e\x4c\xad\xc9\x30\xc2\x70\xb4\x4e\x8e\x95\x6a\x37\xf5\x11\x6c\x5d\x56\xa9\xfd\x55\xd3\x33\x6b\x2c\x1b\x80\xc3\xf5\x3a\x2d\x18\x81\xe0\xaa\x90\xd0\x2d\xf9\x61\xd8\x0b\x92\x38\x0f\x63\xcb\x84\x14\x8e\x5c\xd2\xcd\xca\xdd\x5a\x47\x74\xb9\x93\x40\xed\x9b\x50\xf0\x03\xc3\xe4\x0a\xa6\x73\xbe\xe7\xdc\x2f\x97\xc1\xda\x62\x1a\xf6\x26\x54\xb2\x9d\xdb\xf4\x5d\x09\xd4\xe5\xa3\x3f\x6a\x80\xa1\xcf\xb7\x53\x3b\x8a\x58\xc6\xe8\x55\xaf\xea\xe7\xc1\x3a\xf5\xe6\x0e\x39\x78\xec\x88\x01\x6f\x08\x3d\x36\x60\xb7\xf8\xa6\x09\xc0\x3f\x4c\xb2\xbc\x45\x5b\x55\x62\x48\xda\xaa\x12\x8f\x36\x34\x95\x52\x97\xe4\x84\x4e\xc8\x80\xee\x0f\xc7\x14\xef\x45\x60\xbb\xee\x29\xf2\x69\x13\xe7\x61\x10\x8e\x4c\x6e\x7b\x53\x74\x5e\xb9\x5c\x86\x2b\xcf\xe0\x24\x91\x44\x6e\xe9\x49\xa2\x9c\x77\x93\xea\xbc\x70\xa0\x27\xba\x5e\x50\xb6\x74\x34\x92\x18\xcd\x2c\x0e\xad\xa3\xe4\x19\xbd\xef\x76\xe8\x77\xff\xae\xa2\x5b\x3d\x0e\x9b\x2d\x47\xe1\xb3\xdb\x29\xbf\xe6\xdb\x7f\x63\x9f\x3f\x49\xb6\x3a\x8a\x73\xf0\x1e\x1f\x0b\xae\x5d\x73\x4e\x58\x59\x9f\x58\x6f\x7d\xf5\x15\xde\x2a\x5c\x18\x72\x35\x81\x83\x73\x0e\x98\xa3\xd4\x8e\xd6\x31\x39\x78\x8c\x6f\x51\xfd\x5a\x2a\x07\x2d\x47\xd2\x54\x67\x6d\xfb\x1b\xed\x4c\x4e\x06\x0c\xe1\x45\xad\xb7\x79\x51\xa9\x4a\xce\xab\xc3\x72\xc5\xf6\x4d\x36\xa5\x7f\x9d\x8c\x20\x42\x94\xe3\x9d\x2a\xe1\xd3\xec\xac\xb8\x89\xaa\x7f\xf9\xd6\xa3\x18\x41\xd3\x9c\x76\x3d\x83\x7f\x3b\xbe\xf2\x73\x7c\xac\xc2\xa0\xf7\x9b\x0a\xd3\x45\x1c\x2e\x85\x72\x00\xe1\xb0\x06\x46\x8b\xaf\xd7\x1d\xe1\x64\x5a\x64\x39\xb2\x39\x22\xe4\x41\x8f\x2c\x0a\x1f\xde\xed\x20\xa1\xde\xa5\x02\x65\x67\x6e\x1f\xc4\xeb\xf9\x5e\x42\xf6\xee\x06\x36\x58\x4e\x96\x96\x5a\xde\x53\x60\x3a\x12\x21\x8f\x72\xc8\xda\x24\x2e\x70\x7a\x63\xc1\xe3\xa0\xe2\x6b\xdd\x59\x93\xa4\xd2\x85\xcc\x84\x6a\x34\xc8\x38\x1a\xfe\x0c\x8b\x02\x06\x11\xfd\x2e\x70\x2e\x8e\xd6\x46\xe6\xc8\xf4\x7c\x3b\x37\x23\x67\x6e\xa4\x42\xd8\x72\x12\x9b\x9b\x9d\x2f\x28\xc2\x73\x97\x17\xa3\x19\x7e\x89\xf3\x04\x7b\xd7\x4b\xa3\xab\x49\xcf\xc9\xe1\xfb\xd9\x33\x5d\x0f\x05\xff\x55\xb9\x38\xb7\x2e\x3f\xd2\x91\x4d\x87\x61\xcb\xb7\x22\x9c\xd7\xe5\xbb\xf3\xce\x1c\xdb\xf8\xf5\x24\x74\xd2\x77\xc0\xc6\x1c\xa7\x21\xe2\xeb\x4a\x4e\x39\x5b\xe2\x23\x06\x0b\xf6\xf4\x58\xe1\x71\xa4\x35\x10\xe7\xfe\x44\xad\xdc\xfd\x02\xd4\xa1\x95\xf6\x06\xcb\x22\x77\x14\x7a\xe6\xb8\x5a\xf6\x59\x9e\xa4\x76\xd2\xe7\x35\xce\x76\x14\x0c\xf5\xac\x4e\x61\x54\x0a\x72\x4f\x2a\x61\xc6\x95\xd0\x66\x93\xb4\x90\x11\x96\xdd\x53\x22\x31\x9f\x8d\x55\x57\x1a\x70\xe4\xd8\x5d\x1f\xd6\x35\x1c\xca\x83\x64\x45\xd8\xe1\xdd\x90\xc2\xe6\x89\x5c\xc4\x93\x6e\xc1\xe5\xb9\x4f\xb5\x21\xbf\x04\x21\x20\xa1\x2f\xf6\x65\xdf\x1b\x4a\xc6\x24\x7b\x31\x78\x51\xe7\xb1\x31\xed\x02\xa4\xdb\xee\x2d\x1c\x38\xd0\x4e\x6d\x90\xf4\xe3\xf0\x2d\xb3\xc8\x42\x4e\x5c\x86\xa4\xa7\x92\x92\x64\x43\x2a\xaf\x17\x66\xa3\xc2\x4d\x02\xb7\x55\x8e\x7d\x21\xf4\xb4\x32\xbe\x7f\xe7\x6f\xff\xed\x56\xeb\xc0\x8c\x6b\x05\x57\xac\x48\xdb\x38\x2c\xb2\x90\xcf\x15\x40\xc8\x4e\x60\x8f\xc3\xd6\x32\x3d\x04\x1c\x02\xdf\x76\xbe\x42\xcc\xab\xf4\x77\x42\x81\x5a\xbe\xb2\x70\xa3\x3a\xb6\xeb\x24\x0a\x03\x4b\x12\x72\xc8\xe9\x22\xdb\x03\xcb\xc6\x34\x99\x12\x75\x7b\x58\xf9\x15\x3c\x00\x6d\x95\xff\xfc\xaf\x68\x6c\xfb\x87\xba\x26\x40\x2e\xa9\x92\x03\xfa\x14\xa7\x3d\x4e\x5d\x38\xd4\xae\x97\xca\x33\x7d\x7c\x5e\xf3\xfa\x17\xa6\x09\x78\x4d\x4c\xf9\x0b\xfc\x6c\xc8\xb2\x33\xfd\x0d\xec\x29\x37\xb5\x8f\xbd\xfa\xf0\xf7\xbd\xca\x4a\xda\x17\x49\x3d\xfc\xca\x19\xed\x01\x9c\x51\x45\xc7\x6c\xc4\xf9\x47\xa7\xfb\xb0\x30\xdd\xd0\xd6\xfb\x7a\x12\xe5\x99\x6a\xd3\x84\xb4\xb5\x2f\x8c\x78\x6d\x89\xa4\xc7\x36\x52\xca\x7e\x1e\x73\x77\x56\xb1\x8e\x27\xb1\x54\xfa\x9c\x20\x9d\x43\x14\x6c\x28\x06\xf7\x2c\xb7\x2b\x36\xce\x92\xb8\x52\xfb\xb9\xa1\xd3\xef\x37\xc6\x9a\x08\x30\x0e\x93\x54\x4b\xf8\x00\x3a\x2c\x80\xee\xba\x89\x7d\xb5\x3d\x8a\x6c\x9c\xaf\x61\x09\x63\x3f\xe3\xf4\xe4\xeb\x5a\x78\xba\x30\xdd\x5e\x31\xfd\xc2\x62\xab\x6c\x91\x08\x40\x69\x3c\x1b\xca\x93\xd9\x28\x0a\xa5\xed\x5e\xdc\x61\x7a\x69\xbe\x51\x65\xea\x61\x91\x1b\x28\x42\xfa\x82\xe3\xe7\x58\x28\x7c\xa3\x28\x61\x40\x02\xb2\x36\xe1\xf1\xe9\x3f\x47\x4f\x92\x78\x5f\xde\x8a\x5d\xa9\x97\xba\x5e\x3e\xd4\x8e\xc8\xcf\x56\x04\xb6\xd7\xc0\x06\x25\x5d\x29\x7e\xb1\xfe\x4c\x79\xb4\x8b\x45\x14\xd9\x5c\x71\xd6\xa0\x3e\x2b\x4e\xa6\x3f\x7d\x17\x4d\x9a\x86\x36\xa5\x43\x50\x00\x58\x17\x61\x73\x1d\x55\xdf\xc2\xb4\xd3\x19\xd7\xb8\xc0\x67\xaa\xa2\x60\xe5\x90\xec\xf2\x65\x92\x2d\xd5\x48\xc7\x6d\xae\x02\x5d\xa1\x71\xc3\xca\x05\xbb\x11\x36\xc5\x8e\xae\xc2\xf4\x5c\x52\xd1\xdc\xaa\x49\x87\xd1\x1a\xb2\xc7\xdc\xcf\x3f\xd6\xed\x27\x2a\x15\x74\x4e\xb3\x8e\x96\xfe\xff\xbf\x3f\x7f\x53\x93\x5f\x1f\xdb\xe5\x24\xc9\xa0\xc3\xe0\xb8\x7f\x34\x85\xbb\x52\x6f\xcf\x8b\x5e\x68\xb3\x3d\x58\xfc\x5c\x31\x53\x58\x18\x4e\xd4\xe2\xc4\xbb\x4a\x2e\x26\x1a\xbf\xff\x69\x47\x95\xef\xce\x90\xe7\xcc\xff\x81\x9f\x72\xc5\xb7\x23\xd3\x12\xd8\xd5\x60\x5b\x33\x87\xdb\xa3\xff\xec\x6f\xd1\x63\x0a\x0a\xb2\x1c\x20\x51\x7f\x92\x53\xca\x04\x79\xb8\x62\x72\xae\x53\x0a\x83\x42\xf9\x97\xae\xb1\xc8\xf9\x60\xd7\xc6\x5f\xf0\x78\x87\x7e\x3f\x05\x99\x5e\xb4\x36\xa5\xba\xef\xf7\x83\x21\x43\x5e\x96\x6a\x0a\x68\x40\x69\xad\xfb\xf3\x88\x3d\x3f\x04\xe2\xd7\xd4\xb2\x61\x7e\x90\x94\xdb\x0f\xe1\xc4\xdd\x53\xfd\x32\xf7\x1a\x15\xa3\x83\x41\x91\xc6\x95\x8e\xf8\x8e\xea\x88\x57\x20\x11\x53\x7e\x7d\x80\xbd\xea\xe1\x51\xa7\x94\xe2\xd4\xa9\x5a\x26\xfb\xf0\xcb\xed\x91\x4d\xb3\x30\x83\x4e\xc4\x11\xc1\x60\xdf\xa0\x4f\xf1\xb5\x4a\xb3\x44\x49\x9e\xdb\x74\x4d\xab\xfa\x7d\xa0\x6a\x71\x1f\x34\x54\x7b\xe7\xdb\x23\x45\xdb\xe1\xfa\xf1\xca\xb9\x16\x9e\xf3\xba\x96\x4e\x56\x04\x83\xa9\xca\x2e\xf2\x1d\xe0\x3b\xbb\x64\x51\x98\xd4\x47\x15\xf5\xae\x90\x75\x41\xdb\xec\x55\xc7\x64\x63\xd2\x30\x1f\x0c\x2d\x75\x18\xb9\x8e\xa1\x77\xe9\xa1\xf9\xba\xf1\xa1\x83\xc8\x64\xdc\x43\xa8\xa1\x65\x40\x1a\x7c\xa4\x01\x9c\x7f\xaf\x76\x50\xce\xce\xb6\x87\x49\x6c\x59\x36\xd9\x51\xbd\x3a\x09\xfb\xa3\x1d\xc5\xa9\xf3\x51\x2d\x57\x71\xe0\x40\xbb\x67\xd2\x65\x0a\xa1\xb4\x04\x0d\x22\x18\x34\x47\xc1\x8d\xfb\x43\x25\xcc\xb0\x62\x82\x20\x8c\xed\x84\x62\xaf\x05\xe1\x02\xdc\xfb\x3b\x8a\x7b\xf9\x8c\xdb\x22\x59\x02\x0c\x12\x65\x36\xf0\x9e\x20\x69\x56\x58\x89\x97\xb6\x2e\x8c\x1f\x73\x3f\xd3\x79\x86\xc6\x04\x89\xbe\x7b\x38\xf1\xf1\x22\xff\x27\xbd\x21\xfe\xe3\x06\xd8\xfd\x30\x79\xdf\xc7\x56\x71\x33\xe9\x40\xd1\x3b\x48\x38\x14\xa3\x38\xd5\xc5\x02\x71\x42\x60\x0b\xf2\x23\x77\xc6\xad\xc3\x2f\xb3\x5b\xc4\xb6\x5a\x08\x09\xcb\xf9\x86\xc3\xb3\xa5\xd9\xb9\x26\xd6\x55\x5e\x7e\x6f\xd7\x2f\x1d\xee\x3c\x12\xb6\x60\x5a\x60\xe8\x6e\x7b\x8f\x6c\x3d\x32\x80\xd7\x55\x87\xe3\xd0\x04\x61\x9c\x27\xd9\x00\x66\x55\xb4\x41\x55\xc6\x0b\x0d\x02\xdc\xe2\x5e\x61\x2b\xec\x45\x4c\x3f\x23\xf9\x48\xf2\x9b\x44\xbd\xce\xa7\x83\x6e\x12\xce\x14\x81\xd7\xa7\x28\x29\x38\x17\xc1\x39\x36\x57\x15\x5d\xd1\xf7\xc7\x4a\x39\xf8\x7c\xe7\x8b\x4a\xad\x82\x80\xdf\xb1\xf1\x12\xce\xce\xd4\x79\xb3\x57\x85\x8a\x2d\xda\x49\x75\x62\x5c\xe4\x04\x82\xf4\x9b\xd0\xf3\xbb\x96\xd0\x72\x88\xa5\x2b\xc5\x35\x6f\xfc\xf5\x68\xd2\x65\xdb\x9f\x7c\x46\x85\xc7\xb7\xf0\x01\x0c\xea\x4e\xa6\xc0\x67\xb7\x51\x51\xa4\x2e\x45\x09\x91\x52\x21\x30\x95\x34\x81\x0a\xc1\x78\xd2\x1d\x9b\xce\x41\x09\xe2\xae\x3a\x70\x4d\xb2\x18\x85\x7d\xc3\x4c\xb3\xea\xf4\xd2\xfd\x3c\xdc\x49\x8f\x2d\xb8\xa5\x52\x3f\xa3\x41\x18\x25\x59\x32\x1a\x84\xc1\x36\x9d\xc0\xaf\xbe\xe2\x1a\x40\x9b\x6a\x01\x85\xd2\x89\xc4\xd7\x5e\x50\xbb\xfc\x42\x93\x03\xdd\x33\xab\x82\x7c\x41\x6e\x95\x57\x21\xdf\x34\x12\x38\x98\x5e\x2f\x0c\x5c\x30\x23\x42\xce\x2d\x47\x29\xbc\xd1\xd0\x81\x3f\x4a\x93\x95\xb0\x67\x7b\x13\x1e\x2e\xf8\x87\xba\x7e\xc0\x45\x68\xd8\x89\xad\xc6\x52\x4a\x32\x5c\xf4\x51\x33\xf2\x8f\x08\xa1\xf8\xba\x96\x4a\x5e\x98\x6e\x27\x45\x9e\xe5\x69\x38\x62\xcb\x29\xca\x9e\x9e\xd4\xef\x2c\x32\x4c\x5c\xb9\x56\x0c\x7f\x76\x68\xd3\x3e\x75\xee\x79\x1c\xe9\x99\x8e\xc2\x91\x9e\xa9\x25\xfb\xe6\x49\xf8\x81\xe1\xb8\x4a\x35\xc2\xf7\xc6\x3f\xab\x04\x34\x87\x23\x13\xdb\x34\xd4\xea\x89\x97\x08\x02\x53\x77\xf0\x52\x1b\x98\x11\x74\x43\x0f\xce\x79\xaa\x3c\x07\xe6\x3f\xa3\x5c\xcf\x70\x38\x22\x21\x52\x27\xc4\x03\xfb\xc9\xd7\xba\xde\xc4\xba\x6f\x13\x64\x32\x51\xc1\xf8\x40\x41\xeb\xfe\x55\x47\x99\x87\x5f\xd7\xce\xa4\x99\xc3\xed\x61\x91\xd9\x62\x48\xeb\x1b\x80\x8a\x07\x1d\x15\xde\x5e\xac\xb0\x4b\xe8\xe2\x4e\x1e\xca\xe1\x2e\xd2\xad\x2d\xc7\x49\x78\x42\x1d\xee\xaf\x9b\x60\x99\xd7\xb3\x43\x69\x28\xe5\xc2\x8b\x2a\x93\x94\x87\x43\x9b\x3d\x4e\x06\x06\xe5\x24\x6a\x58\xdf\xba\x0b\xe7\x0e\x29\xf2\xdb\x54\x30\x14\xd5\x50\x55\x4f\xba\xa6\xd4\xe7\x2f\xd2\xb0\xc2\xf6\x3d\xd0\x18\x93\x33\xc4\x16\xa5\xf0\xa3\x52\x01\xda\x89\x1e\x3a\x11\x55\x2a\x67\x10\xe7\xcf\x31\xf2\x19\x61\x14\xbf\xd7\xc0\x65\x41\x67\x7a\x38\x34\x71\xce\x39\x30\x1c\x2f\xd7\xc6\x9a\xa8\xe1\xdb\x08\x83\xf8\xbf\x34\x4d\xce\xb7\xc7\xfb\x7c\x12\x4f\xba\x41\x5c\xa9\xd9\x4b\x7e\x1f\x53\x7c\x21\x1f\x77\x7c\x15\xfc\x14\xed\x02\x07\x54\xf3\x90\xed\x13\xba\x81\xa8\x8e\x97\x3b\x32\xdd\xce\x6c\x40\x8b\xd1\x69\x04\x1e\xed\xf8\x93\xef\xa8\x4f\x03\xda\x28\x4a\x94\x93\xc3\xb9\x6e\xbe\xa9\xf9\x7e\x73\xb4\xc7\x47\x49\x16\xe6\x12\x93\x57\xd4\xa3\x44\x5b\xd0\xd7\xef\x98\xe2\x71\x42\x21\x45\xa1\x90\x86\x67\x47\x79\x11\x1e\xd2\xb9\xce\xf6\x4a\x85\xa4\xec\xcc\xd0\xa6\x61\x60\x62\x22\xf3\x72\x0c\x73\x0b\x7e\x07\xfb\x56\xf4\x67\xd1\xaf\x8e\x3f\xfa\xad\xae\xa0\xaf\x96\xc3\x60\x79\xd1\x04\xcb\x1c\xa7\x4b\x38\xac\x42\x63\x15\xa7\x0f\x8a\x32\xe2\x63\x52\x29\xa1\x63\xfd\x40\xb1\x72\x7e\xa0\x80\x57\x36\xcb\xc3\x21\x29\x40\xf8\xde\x9a\x87\x4a\x34\xfc\x43\xed\x65\x9c\x1a\x57\x2a\xc7\xdb\x31\xca\x0e\x92\x65\x4d\x1a\x71\x95\xd9\x65\xd9\xcb\x6f\xe1\x1b\x05\x9c\xe8\xa7\x49\x31\x7a\x4a\xc9\x48\x21\x37\x8f\x20\x0a\x08\x4b\x8c\xf4\x43\x14\x4d\x9d\x6a\x94\x07\xc6\x8d\x55\x6e\x86\x7b\x0c\x51\xa4\xf8\x5f\x90\x85\x17\x63\xa6\xde\xe3\x23\x42\xf8\x09\xdb\x8c\xa6\x57\xfe\xb6\x46\xdb\xa0\x1b\x1d\x89\x90\xbd\xeb\x8a\x8e\x67\x77\x57\xb9\xb9\xd8\x84\xd2\xed\xda\x00\x37\x8d\x13\x52\x99\xa7\x8f\x88\x0c\xa1\x6f\x59\xf9\x07\xf5\xfe\x87\x99\x72\x58\x02\x0a\x3a\x1e\x45\x71\xd1\x80\xd6\x20\x84\xaa\x3b\x9c\x61\x2e\x91\xfb\xe7\x6b\x87\x1a\x1c\x65\x6b\x01\x9d\xfc\xe5\x1b\xe9\xfe\x46\x61\xd0\xae\x47\x27\x26\xc8\x59\x19\x09\x60\xf9\x1b\x9a\x04\x1a\x35\x49\xcc\xdf\xc7\xee\x57\x4c\x9e\x17\x71\x79\x1c\xbb\xda\xc5\x03\x9a\x4f\x81\xe7\x28\x4e\x9e\xcb\x8d\x5c\xe5\xb2\x34\x11\x09\x32\x25\x03\x15\x65\x84\x9e\x61\xfb\xfe\x3e\x32\xfd\x6a\x3b\x8c\x83\xd4\x1a\x27\xa8\x00\x4b\xf6\xae\x02\xfd\xbf\x5b\x3b\x55\x5f\x7b\xad\xbd\x08\xdd\x7c\x9f\xcd\xc7\x82\x95\xd4\xfe\xf6\x95\x3e\x3b\x5b\xba\x1b\xb9\xcd\x72\xe3\x5b\x4c\xa5\xdc\xa2\x5a\xf5\x37\x9b\x20\x5a\xe5\xee\x58\x23\xd3\x86\x6a\xc3\x05\xd5\xcd\xdd\x68\xb3\xb2\x22\x08\xac\xf5\x8e\x97\xab\xcd\xf9\x3a\x9d\xea\xf5\x59\x4d\xe2\xc7\x94\x4f\xf7\x8b\xb1\x37\x51\x13\x94\x62\x05\xc6\xfd\xe6\x58\x71\x6f\x4d\x61\x75\x63\x9a\x1e\x2a\xa4\x3f\x30\x74\x62\xa8\x69\x9f\x82\x0e\xe3\xaf\x02\x14\x88\x26\x96\xfd\x5d\x8d\x92\xf3\xd0\x00\x30\x43\x32\x3a\x1b\x2e\xd9\xd1\x8e\x2f\x04\x1f\x55\x59\xcd\x95\x72\x34\x5b\xde\x37\x40\x8c\xc1\xd7\xdb\xa1\x8f\xe5\xea\x78\x65\x1e\x89\x0a\x19\x37\xcc\x01\xb6\x21\x97\x13\x19\x55\xa4\x57\x1a\xc3\xf1\xf8\xa6\xa3\x19\x45\xb3\x22\xb5\x13\xde\xc5\x04\x90\x14\xa5\xc0\xbb\x58\x0d\x42\x25\xf4\x28\xbb\xb7\x6a\xd3\x18\x8c\x03\x87\x9a\xb9\xfc\x35\x60\x2c\x09\x96\x49\x05\x06\xc6\xf4\xd3\xb1\xd7\xe9\xfc\xb4\xa3\x78\x0c\x82\x41\x38\x5c\xb4\x29\xcb\x47\xa2\xbc\x78\x73\xec\x81\x5b\x37\x6b\x2e\xf7\xc1\xb9\xf6\x5a\x52\xe4\x03\x2d\xa3\xff\xa1\xd6\xb4\xea\xf8\xe5\x76\xd2\xd7\x37\x8a\xb4\x1f\x19\x2e\x84\xc0\xca\x82\xc3\x8d\xaf\x6b\xe8\xde\xdf\x69\x87\x2b\xd4\xcb\xe7\xca\xbb\x5c\x8b\x12\x08\xd4\x93\x0a\xdc\x6b\x7b\x61\xfe\x84\xef\xb1\xfc\x04\x7f\xc9\xaa\x44\x9a\xd3\x97\x39\x8e\x71\x80\xff\x80\xdc\x29\x14\xd8\x7f\xda\xf1\x92\xcb\xe7\x11\x83\x8b\xbe\x6b\xf9\xc4\xb0\x08\x7f\x46\x84\xc6\x4e\x95\xef\x88\x70\xd6\xdd\xe8\xe8\x6e\x1c\x78\x22\x92\xe2\xc0\xba\x71\xd4\xf4\xce\x40\x3d\x70\x86\x8c\x5a\x91\x98\xad\x05\xa7\xed\x6d\x75\xf2\xde\x56\x19\xfc\x9e\x35\x2c\xf0\xcf\x2d\x02\x63\x0f\x9f\xd9\xdf\xf5\x20\xb8\x07\x35\x9b\x5f\xc6\x56\xe0\x9e\x6c\xa9\x56\xa3\x4b\x55\x86\x76\x49\xd9\x0f\xcd\xeb\x49\xca\x07\x0a\xbc\xdf\x87\xaa\xf1\xf7\xa1\xb2\x05\xc3\xd0\x4c\x7a\xc0\xda\x55\x7c\x9d\x2e\x44\x01\x55\xb0\x87\x66\x1a\x87\xde\x65\x05\x8c\x4f\x62\xcb\x61\x0d\x7a\x54\x4e\x83\xc3\x94\x4b\xd4\x63\x4f\x75\x71\xbd\x96\xd1\xa1\x26\x22\x93\x53\xbe\x18\x89\xbb\x1b\x8a\xb6\x6f\x27\xea\x3b\xac\x00\xd8\x51\xac\x90\x67\x95\xd2\x03\xda\xf0\x44\x4d\xfd\xb9\x8a\x9a\x47\x2f\x89\x22\x93\x66\x53\xa5\x33\x2c\x9a\x7c\x7e\x5d\xc3\x5b\x44\xd4\xd6\xea\xaa\x02\x05\x37\xe0\x4b\x82\xaa\xe1\xa9\xed\x8a\x8d\x49\xc6\x0a\x01\x37\x0e\x46\x0c\xd9\x51\xad\x0d\xb6\xa9\x38\x9a\x1e\xeb\x6a\x02\x5f\x57\x5a\x49\x6d\x2f\x89\xed\x44\xeb\x1b\x5f\xf3\x1d\x62\x0e\x70\x7b\x87\x22\x31\x78\x44\x67\x55\xf0\xb2\x94\xa4\x76\xc5\xa6\xbb\x7c\xf6\xe2\x9e\x4a\x32\xdf\x82\xfd\xc2\x74\x1c\xc7\xf3\x38\xf0\xe4\xc2\xb4\xab\x75\x2a\xc7\xe1\x8c\x0a\xf3\xa2\x62\x91\x3c\xd1\x9c\x82\x64\x40\x42\x3e\xd2\x64\xc7\x2a\xab\xfc\x07\xde\xcb\x0e\xd3\x1e\x2f\x37\xac\x6b\x18\x71\xbe\x56\x6c\x34\x3d\x9b\x91\x8e\xb8\x8d\xd6\x50\x6e\x90\x93\x4a\x01\x86\xd9\x02\x8b\x14\x6a\xf9\x1c\x72\x86\x79\x74\x72\xcf\xf6\x13\x60\xa5\x50\x36\x64\x9a\x14\xbe\x69\xca\x32\xe4\x83\xd4\x72\xa3\x3e\xf6\xd8\x29\x1a\x5f\xbe\x56\xbc\x1e\x79\x6a\xc2\xa8\xb4\xd2\xe5\xeb\x48\x2f\x78\xf9\x3a\x7c\xdd\x94\xda\x5c\x09\xfb\x09\x7f\x42\x03\x86\x24\xa4\xf6\x89\x9d\x2c\x48\xf2\x3c\xcc\x06\x93\x4a\x68\xe8\xb8\x16\x7f\x3f\xd5\x51\x10\xf9\xe3\xf4\x2d\xa2\x08\xf3\xa4\x2e\xd9\x2c\x32\x11\x3f\xb2\x3a\xd7\xc6\xaa\x64\x78\x4d\xc5\xaf\x44\x5e\x2a\x3d\x25\x58\x07\x97\x54\xe7\xe7\xa5\x1a\xc3\xc4\x81\x99\x76\x31\x6a\xf9\x8e\x36\x70\xa9\x0a\x7d\x6a\x13\xb4\x7f\xd1\xc6\xd6\xe4\x03\x5a\x30\x98\xb4\xf3\x94\xa9\x84\x49\xf9\x44\x69\x02\x5f\x6f\x48\x8f\x2c\xb4\xed\x90\x30\x73\x40\x8a\x08\x56\x4f\xe1\x81\x1d\x66\x61\x60\xd2\x20\x29\x52\x84\xed\x0c\xe5\xc4\xb4\x0b\xae\xd3\x55\x39\x38\x9e\xda\x53\x89\xa1\x0e\xce\x55\x5a\x59\xb7\x2e\xeb\x35\x73\xa7\xa3\x33\x26\x2e\x6d\xd0\xff\x0d\xb2\xca\x38\x0b\x76\xad\xeb\xf8\xec\x09\x2d\xfa\xb0\xcc\xe8\x46\xe4\x3f\xb7\x3a\x8a\x3b\x79\xcb\x6d\xf7\xd8\xda\x9e\xed\x4d\xa9\xae\x58\xc6\xaf\x22\x1a\x7e\x96\x1c\x0a\xe0\x0a\x7e\xa9\xd1\xc2\x3f\x19\xfb\x30\x63\x7f\x8d\xa1\xed\x05\x92\xc0\xce\x07\x2c\x4a\xb0\x30\xed\x72\x9a\xba\xac\xa3\x5a\xa0\x8b\x28\x2f\x52\xbb\xab\xf5\xd5\x57\x04\x36\x8c\x64\x22\xc2\x8d\xf3\xaa\xfd\x74\x93\x06\x8d\xff\xbd\xc2\x8d\xe0\xd3\xda\xf5\xcd\x76\xf8\x65\x70\x6c\x4e\x78\xb4\xd2\x56\xa7\xd6\x7e\x27\x41\x8b\x67\x44\x61\x87\x99\xab\x41\xf3\x3e\xfb\xe0\xf5\xfe\xbf\xed\xf8\x71\x22\xcb\x50\x42\x4c\xe9\x0d\x9c\xf8\xce\x27\xfd\xea\x2b\x1c\xfd\xb5\xba\x4a\xbf\xa2\xb4\x3c\xa0\xd4\x10\x31\xfe\x6a\xb2\xc8\x81\xfa\xab\xf6\x36\xcb\xc2\x32\x3c\x9b\x9f\x39\xcc\xa9\x94\xab\x8a\x0c\xe4\x6a\x83\x66\xe2\x42\x7b\x58\xc4\x21\x3f\x20\x22\xca\x1b\x15\x85\x3d\x5f\x4e\xf8\xa4\xa9\xd3\x28\x1b\x98\x00\xe4\x23\xf0\x67\x3e\xc6\x90\xf1\x4d\x13\x5d\xd7\x20\xc9\x72\x12\xc8\x64\xc0\xe6\xd8\x17\x02\x1b\x83\x93\xa1\x89\x6d\xb1\x62\x7d\x38\xa8\xe1\x35\x82\xbb\x69\xc0\xc3\xb4\xc3\xa1\xe9\x4b\x0a\x74\x86\x41\x63\x6c\xbe\xf9\xa6\x49\xf0\x73\x29\x8c\xc2\x51\x18\x27\x48\x22\x08\x1b\x97\x2a\x18\x5d\x1f\x6b\x2a\x11\x0e\x9f\x65\xed\xfa\xca\x4c\x14\x3a\xd5\x50\xe4\xc1\x6f\xd2\x41\xc3\xd7\x0a\x3a\x92\xe6\x62\xc1\x1b\x89\x32\x84\x47\xe2\x75\x23\x6e\x12\x9a\xc3\x80\x44\xe1\xeb\xf1\x76\xdb\x78\x70\xae\xcd\xcc\x42\x2e\x07\xe7\x71\x31\x1b\xb5\xa0\x98\x84\x19\xde\x6c\xe9\x9e\xab\x0a\x37\x92\xe2\xa4\x25\xe2\xff\x30\x49\xc9\xb4\xb1\xe4\x05\x9c\x1e\xd1\xbf\xf0\xc2\x4b\xe6\x4d\x83\xc0\x5c\xba\xf1\x14\x92\xe6\x9c\x2a\x7e\xbd\x51\x84\xc1\x72\x39\x0a\xe5\xc6\x68\x12\xee\xac\x08\xf5\x26\xac\xf1\x08\x80\xd2\x29\xa5\x02\x74\x4a\x95\x7e\x82\x24\x86\x5a\x2c\x42\x7d\xb8\x67\xac\xb4\x85\x34\x0a\xa4\x45\xe1\xf4\xfc\x48\x1d\x59\xb9\x89\x7b\x76\xc8\x81\x30\x1a\x9c\xae\x74\x14\x43\xef\x95\xb1\xeb\xb1\x58\x98\xff\x12\x99\x4f\x6c\xe6\x1d\xc4\x44\xe4\xa0\x24\xe5\x2f\x21\x46\xb8\x89\xb6\x69\x40\xbf\xdf\x51\x25\xb4\x13\x70\x42\x25\x43\xeb\x9f\xe7\x4a\xc7\xf3\x15\x3d\xc4\xb0\xc1\xf3\xbc\xd6\xd1\xdd\x55\xdf\x45\x30\x80\x7c\xcf\x05\x98\x1f\x60\x15\xf6\x21\x0a\x86\x5f\xf3\x03\x3a\xe5\x00\x1a\xdc\x00\x22\x03\xcb\xeb\x04\x35\x6a\x2b\x15\x0e\xd9\x1a\x97\xc7\x3b\xbf\xec\x28\x1c\x55\xab\xd8\xe7\x74\xf6\x60\xd5\x9d\x53\x80\xfa\x3b\xa8\x18\xf2\xcf\x21\x59\x25\xcd\xdb\x4d\x6c\x85\xc5\x48\x26\x06\xdf\x85\x02\x1e\x5c\x59\xce\xdb\xc2\x7e\x6f\x8c\xbf\xa0\x3c\xa9\x2c\x48\xc3\x11\x13\x29\x78\xdd\xf5\x8e\x8f\xf3\xce\x55\xba\xa9\xb3\x3c\x89\x99\x8a\x9c\x79\xf3\x15\x5d\xf0\x09\xa5\x9c\x72\x62\x5c\x21\xd7\x6f\xb2\x26\xd9\x28\x0d\xe3\xe5\xc8\xb6\x54\x83\x23\xc3\xfb\xf9\x06\xbb\x8a\xbd\x65\x56\xb0\xa0\x8e\xa3\x23\xd2\x42\xbb\xa9\xf4\xaa\xeb\x40\xf5\x72\x5c\x0c\x18\x58\x9c\x34\xca\x71\x5a\x07\xe2\x22\xd7\x9e\xeb\xe5\x43\xed\x9e\x59\xed\x45\xdb\xc4\xb4\x40\x14\x22\xf0\x48\xb5\x77\x4d\x5e\xa4\x3d\xb3\x46\x91\x0c\x5e\xb6\x72\x56\xaa\xda\x31\x61\x89\x67\xb6\xee\x2b\xd2\xdb\x0f\xe0\xb9\xa1\xb3\xdc\x67\xe0\xfa\x49\x96\xc5\x66\x11\xfe\x2a\xa3\x2e\xc9\x5f\x15\x04\xa6\x2f\xe3\xac\x14\x51\x6c\x53\x21\xdf\xe1\xf4\x1b\x08\x8b\xf8\x5a\x11\xf1\xb8\x0c\xb1\x20\xfb\x5a\x4a\x7d\xf8\x09\x95\xf4\x1d\xa5\x56\x8f\xd8\x58\x11\x11\x1c\xd7\x86\x6b\x14\xa6\xd2\xd8\xf9\x2a\x1f\xa4\xf7\x79\x37\x55\x88\x4f\xb0\x6e\xcf\x21\x76\x64\xa3\x33\xb0\x4f\x96\x4f\x8c\x64\x2c\xb8\x18\x9c\xdf\xf1\x75\x11\x71\x05\x91\x12\x2f\xa9\xa7\xd7\x3d\x79\xc3\x39\xe4\x75\x91\xb1\x3e\x83\x45\x83\xd3\xfb\xb1\xf5\xd6\xec\x6c\xe9\xde\xcd\xbf\xcc\x48\xc0\x6f\x7d\xbf\xe3\x83\xb1\xbb\xd8\xd2\xb0\x3b\x4f\x74\x55\x1d\xe5\x06\x6d\x18\x6c\xbe\x07\x63\xaf\x3d\xfb\x07\xcf\x70\x25\x5e\x50\xa3\x8a\xd4\x66\x94\x64\x4c\x98\x85\x4c\xd9\xd5\x8e\xc2\xec\xd4\x9d\x83\xb9\xb9\x76\x94\xac\x58\x6e\x50\x73\xa9\xf7\x85\x69\x97\x7a\x97\xc9\x5a\x4a\xd2\x21\xbb\x10\xfc\x74\x1d\xdf\x1b\xa2\x09\x8f\x4e\x28\x1f\xaa\x67\x47\x84\xd3\xe1\x36\xec\x26\xd1\xa9\x06\x4e\x3b\x13\x04\x36\xcb\x12\x74\x7c\x3e\x8a\xb2\xa6\x81\x85\xe1\xcb\xed\x45\x72\x54\x16\x24\xbd\xfd\x43\xd5\x5e\xf1\x43\x45\x5c\xd3\xb3\x2b\x36\x4a\x46\xb6\x8c\xc7\x3d\xf7\x3b\xb9\x9d\x5b\x17\xc6\xad\xbf\x7b\xc8\x23\xdc\x9d\xb5\x26\xbc\xda\xd6\x85\xce\x7e\xf7\x2d\x45\xf6\x66\x95\xf7\xc6\xbb\x20\xe7\x15\xaf\x5d\xe9\xe0\xb6\x2a\x9b\x6e\xce\xe9\x55\x9e\xec\x54\xf8\x68\x57\x00\xec\x12\xde\x22\x95\x14\xdc\x70\x8d\xed\x49\x10\x14\x23\x13\x07\xc8\x7c\x89\x31\x2e\x87\x49\xce\x81\x67\xb5\xb4\x69\x9e\xa4\x21\x09\x5b\x95\x07\x82\x93\x1d\xf4\x29\x92\xf7\xd1\xad\xc1\xff\x43\x0b\x4e\xf8\x3d\x1a\xc8\x0c\x49\xdd\xba\xa5\xa2\x21\xfa\x80\x44\x46\x8a\x33\x3d\x5b\xde\x53\xa1\x76\x52\x1d\x16\x3f\x51\x94\x3e\xf8\x3c\x92\x61\x2c\xef\xe7\x68\x8d\x8f\x4c\x73\x1e\x72\x47\x57\x37\x4c\xb6\x9c\x86\x52\xab\xdb\x54\x81\x4d\x8a\x7c\xc0\x46\x85\xbf\x0a\x87\xa1\x7c\xaf\x6a\xb2\x09\xfb\x03\x9b\xee\xf6\xad\xb6\x1f\x8e\x7d\x63\xf7\x45\x1c\xc8\x4e\x0b\xc7\xeb\xc5\x8d\xc9\x9a\x62\xb0\x4f\x2a\xf5\x85\xcb\x1d\xa5\xbc\x7c\xba\x92\x1c\x58\x2c\xf2\x49\x74\xd4\x31\x12\x19\xc5\x21\x81\x25\x7b\xf4\xcb\x7b\x15\xaa\x46\xe5\xf5\x33\x55\x20\x20\x87\xec\xce\x74\xbc\xdf\xc9\x10\x78\x81\xda\xf9\x92\xb6\x8d\x6c\x00\xa4\x49\xf9\x36\xaa\xc5\xfb\x55\xc7\x5f\xf9\x8c\x8e\xe3\x73\xf8\xe0\xa5\x2b\x81\x00\x0f\x8c\xe3\x7c\x5d\x6d\x48\x84\x8d\x3f\x30\xe3\x35\x71\xca\x67\x10\x24\xb7\x5f\x0c\xdf\x38\x74\x48\x59\x17\xe6\x5a\xe3\x9b\xa6\x3c\x5c\x90\x04\x20\x95\x93\x4c\x83\xca\x3a\x34\x92\xaf\x10\x99\x3f\xd0\x3f\x40\xa4\xfe\xf3\xb1\x52\x09\xe1\x99\x44\x59\xf7\xc2\xf8\x51\x2a\x70\xd9\xc8\x06\x45\x64\x72\x11\xe8\x75\xfe\x56\xf9\xb4\x7c\xd3\x44\xfd\x95\x2c\x2d\x79\x02\x7c\x36\x15\x34\x33\x80\xb4\x9c\xd5\x8c\x37\x7f\xe8\x0e\x54\xfb\x66\x6e\xe3\x1e\x97\xa8\x44\x61\xd5\x63\x55\x21\x90\x86\x34\xc5\xf7\xea\x44\x0a\x0b\xed\xb9\x39\xb2\x5c\xf0\x78\xdf\xd1\xbc\x24\x6f\x2b\xc5\x1c\xf0\x1d\xbb\xe4\xcd\x41\x8f\x13\xaa\x83\x99\x67\x08\xc9\x9f\xa2\xc3\x10\x21\xc1\x09\xc5\x9c\xfd\x97\xf0\x1c\x51\x08\xf9\x50\xe9\xf4\xd9\x37\x47\x61\x6a\x11\xe9\x4b\xb3\x8c\xcf\x88\x5c\x6a\xa8\x79\xcd\xb5\x4d\x1c\x27\x45\x1c\x48\xcd\x4b\x5a\x70\x68\xa4\xa4\x39\xa7\xd1\xbe\xf7\x4c\x6e\x5a\xaa\xfc\x0f\xc8\x9c\x80\xd0\xfc\x92\xfb\x4f\xf3\xc1\xa4\x6b\xa4\xfd\x6b\x7f\x55\x49\x0c\x9e\x25\x38\x02\xda\x58\xfe\xca\xba\x12\x7b\x7a\xb7\xda\x48\x30\x64\xed\x03\xd5\xe3\x39\xe3\x7a\x3c\x7d\x19\x26\x0a\xe3\x65\x86\xf0\x60\xe6\xa6\x14\x11\xc5\x3d\x5a\x3c\x5b\x75\x96\xba\xd7\x5e\x6b\x07\x03\x6b\x46\xb4\xd0\x58\x2a\x8c\xde\x44\x64\xc3\xb6\x3b\x81\x87\x5f\x6e\xa7\x36\x8c\x97\x92\x34\x80\x5b\x25\xf2\xe2\xbe\xe8\x74\xb9\x12\x40\xbd\x69\xb3\x7d\x5e\xe8\x84\x3b\x26\x1c\x31\x96\xb3\xdf\x53\x50\xe7\x15\x0a\x7c\x72\xe9\x31\xc5\x10\xb6\x94\x22\x73\xb9\x74\x5c\xbf\xf3\x91\xe9\x97\xb6\xce\x52\xb4\x21\x18\x2e\xcf\xe1\x7e\x0b\x46\x1c\x89\xec\x2b\xaa\x5e\x96\x05\x26\xc5\xc6\x12\x82\x14\x7a\x24\x61\x4e\xf1\x29\xc9\x38\xc9\xc3\x20\x34\x08\x6c\x45\xaf\x50\xfd\xed\x87\x0a\xcb\x1e\x24\x41\x92\xe7\xf8\x5a\xce\x58\xd3\x88\x48\xf6\xda\xdb\xc1\x24\x5a\x1b\x8e\xc2\x00\xdf\xca\xb4\xec\x1d\x95\xf4\x3c\x3f\xfe\x82\x82\xaa\x67\x61\x6c\xb3\x2c\x0a\x97\x19\x14\xa0\x79\xc0\xf9\xba\xa3\x3d\xc7\xc8\x4c\xe9\x16\x83\xcf\x31\x08\x3a\x87\xce\x3a\xf1\x78\x11\x80\x6f\xae\x77\x7c\x5a\xe8\x56\x0d\xbc\x76\xe0\x40\x7b\x68\x87\x8b\x56\x12\x02\x28\xfe\x33\x45\x19\xdf\xf8\x04\x83\xc9\xf2\x74\x6d\xc2\xa3\x1c\xef\x77\x94\x70\xc7\x25\xed\x7c\x8f\x3d\x2f\x8c\x09\x06\xae\x41\x08\x19\x45\x24\x92\x5c\xd6\xca\x6d\xad\xef\xd6\x7c\x81\x99\xc3\xed\x95\x50\xfa\x83\x1d\x4b\xa0\x13\x77\x3f\x57\x59\x8c\x01\xd2\xeb\x33\x9e\xea\xcb\x75\xe3\x9f\xc4\x83\xf2\x7f\xd0\x83\xf2\x7f\x34\x69\x38\x0c\xc3\x3c\xec\x0b\xdd\x20\x06\xe1\x26\x39\x0a\x7c\xed\x10\x8f\x83\x62\xd0\xf2\x4e\xe6\xb6\x42\x9f\x37\x13\x0b\x5f\x3f\x34\x41\xff\x85\x48\xfb\x0e\x27\x44\x60\x8e\x8f\x8f\x95\x07\xb0\xb3\xdb\xd0\xae\xbc\x68\x99\xf2\x48\x68\x62\x3d\x4a\xe2\xb4\xc2\xb7\xa4\xc5\x70\x91\x45\x6d\x5e\x99\x39\xec\x00\xaa\xe5\x9e\xe2\xeb\xa6\x5e\xe8\xbc\x48\x39\x4f\xce\x62\x49\x6a\x1d\x69\xea\x91\xf9\x22\xdf\x43\x84\xee\x48\xcd\x7c\x77\xec\xc3\x24\xe6\x88\x13\x1e\x2c\x8a\xde\x95\xda\xca\x5c\x55\x57\x59\xc9\xe0\x08\x27\xc7\xde\x75\xcf\x67\x75\xbf\xf3\x84\x4a\xe3\x67\xcb\xd9\xae\x32\xf6\x41\x1c\xb4\xd1\xf1\xc1\xe6\xbf\x52\xbd\xec\xa7\xd0\x59\xc2\x7f\x04\x27\x10\x5b\xe4\x1e\x8a\x9a\xd2\xc5\xe1\x9d\xea\x41\xc1\x2a\x2b\x98\x2d\x16\x81\x74\xbd\x90\xca\x73\xf4\x65\xcc\xf8\xc5\xb5\x17\x55\x74\x78\x5a\x47\x87\xa7\x5d\xb4\xb9\x1a\xf6\xa4\x31\xca\x71\x89\x55\x4a\x97\xb3\xb3\x0b\x5b\x1f\x2a\x2a\x9c\xe3\x4d\x02\x5f\xc3\x50\x92\x7e\xae\xa4\xfd\xbe\xd7\x43\xbd\xf3\x7e\x13\xe9\xed\x52\x92\xda\xc0\x64\xf9\x94\x1f\x25\x56\x23\x14\xd6\x5e\xf2\x50\xe1\xed\xe2\xfc\xe6\xeb\x8e\xa2\xa1\xa6\xc2\xad\xb8\x94\x66\x2d\xdb\xe5\x81\x09\xd7\xe9\x50\x43\x11\x12\x59\x25\xc4\x7b\x93\x40\x67\x61\xf4\x58\x1c\xde\xb1\x37\x8b\xdb\x6b\x9f\xee\x8a\x1d\xe9\x59\x13\xd9\x14\x15\x54\x89\x3b\x7c\x60\xf7\x40\xa9\x27\xd4\x85\x92\x67\x0e\xb7\x97\x88\xca\xc7\x9d\x48\xdf\x51\xd0\xc9\xef\x34\xa1\x25\x7b\xd6\x8e\x24\x23\xa8\x4b\x87\x7c\xad\x02\x99\xc8\xf6\x43\x80\x6b\x26\x54\x7a\xf8\xaa\x62\x9a\x38\x81\xa1\x62\xa6\xd0\x26\x16\x3d\xd3\x5b\xb1\x29\xe4\x98\x1d\xb7\x89\x37\x11\xae\x58\x5d\x8c\xb2\xb0\x67\x27\xcb\x3f\xc3\x19\xf9\x90\x2a\xf9\xc2\x37\xde\xf2\xb2\x27\x1d\xdf\xe9\xd4\x5a\xaf\x97\xa2\x5e\x25\x85\x5e\x13\x46\x2d\xd5\xdc\x82\x5e\x35\xe9\x80\x52\x42\xdd\x26\xed\xdb\x68\x6d\x5f\x79\xaa\x22\x0b\xf7\x97\x8a\x08\xf6\x3c\xac\x24\x50\x06\x7b\xbb\xaa\x35\x1c\xa9\x1d\xfe\x04\xce\x6f\x25\x41\xf3\xaa\xe3\x3f\xa1\x5d\x24\x04\x28\xe5\x73\x23\x1b\xc4\x10\x19\xb8\x1d\x93\x90\xd8\xe4\xcf\x77\x7c\xb8\xdc\x4f\x4d\x00\xa5\x61\x24\x80\xc4\xcb\xd5\x9d\xb6\x75\x6a\x80\x99\xc3\xed\x51\x92\xe5\x4a\x9b\x72\xa3\xa3\xb8\xc2\xa8\x61\x62\x6b\xdd\xb1\xef\x2f\x1a\xf3\xb7\xb6\x51\x05\xf9\x22\x3f\xd7\xc4\x45\xa5\xb7\x01\x42\x62\x72\x11\xa8\x41\x34\xc6\xfa\x89\x7c\xe3\xa2\xe7\xd4\x92\x28\x37\xff\x29\xc7\x04\x34\xd2\x12\x1f\x78\xbb\x3d\x4a\xa2\x30\x5f\x2c\x52\x00\x36\x5d\x5f\x48\x39\x60\xa2\x67\xe8\x27\x70\x2d\x29\xe2\xbe\x4d\x5b\x1e\x63\x70\x93\xd6\x0d\x5f\x6b\x76\xe4\x41\x12\x2c\x53\xe1\x01\xc1\xf1\x6d\x8c\x0a\xba\x2a\x6e\xaa\x33\x64\xe7\xba\x02\x02\x9c\x71\xdd\x32\x44\x3d\x97\x26\x46\x4a\xdc\x88\x72\x50\x79\xe0\xeb\xf1\x17\x2b\x82\x38\xa6\x4f\x6a\xfc\xdc\x85\xe9\xd2\x19\x3e\xb5\xd1\x44\xe6\x91\x27\x45\x7f\x60\x85\xda\x01\xc7\xfa\xa6\x3a\xe2\x37\x95\xcf\xd6\xb3\x41\x28\x70\xaf\x57\xf5\xa1\x7b\x48\xa3\x6b\xe4\x8f\x93\x62\x31\xcf\x20\xd1\x02\xf3\x85\x09\x80\x7f\x79\x52\xc5\x4e\xcc\x75\xc0\x7f\xd4\x80\xb9\x6b\x2f\x25\x49\x9e\xe5\x76\xc4\xe0\x58\xa7\xc7\x5b\x7e\xb7\x78\x25\x4a\xfe\x39\x37\x71\xcf\xa4\xbd\xc7\x68\x0e\xe5\xec\xa1\xd1\xc7\x76\xf8\x63\xd5\xfc\xf7\x18\xc9\xd9\x20\x11\xfa\x0b\x72\x32\xb0\x14\x77\x28\x92\xd6\x3d\x54\x0c\xe0\xbf\xd1\xa2\xbc\xe7\xa9\xe4\x87\xbc\xc6\xcf\x70\xee\xc1\xe9\xfb\xd0\x45\x80\xab\x61\x3e\x48\x8a\x9c\x3a\xcb\x91\xd3\x7a\x12\xd2\xc1\x88\xfa\xb0\xb1\x99\x51\x1f\x07\x1a\x72\xca\x13\xeb\x5a\xf3\x23\xb7\x69\xb4\x46\x25\x44\x27\x81\x5f\xbe\x1b\x12\x08\x0c\x3e\x87\x3b\xd3\x8c\x59\x4c\x16\x5f\xb7\xbe\x71\x41\xea\xe5\x0a\xf1\x70\xbe\xe6\x99\x1e\x99\x6e\xf7\xd2\x64\x34\x2a\xc3\x9e\x05\x2f\x82\xae\xe0\x75\x8c\x96\x41\x44\xb0\xa7\xc6\xcd\xfc\x37\xdb\x51\x92\x2c\xcb\x6f\x3a\x76\x39\x9f\x04\xf5\x35\xf6\xa1\x89\x4d\x9f\x9a\x41\x15\x3d\x8f\xd6\xa4\x90\x1a\x16\xc6\x86\x51\x9e\xf0\x84\x8e\xd5\x0a\x86\x33\x87\xdb\x8b\xa9\x79\x2b\x8c\x42\x03\x1c\x18\x20\xa0\x6c\x2a\xf8\xa6\xa1\x00\x4a\x54\x0a\xbc\xc4\x30\xd9\x5c\x2b\xe2\x9b\xc6\xd6\xe0\xa1\x4d\xb9\xcd\x97\xcf\xb3\x0d\x55\x00\xaf\xf7\x83\x1c\x99\x7e\xa9\x3d\x34\x69\x18\x6b\x99\x23\x74\x17\xf1\xb5\xaa\x7a\x04\x83\x24\x0c\x40\x36\x8a\x65\x75\x56\xaf\x31\x40\x92\x60\x5c\xce\x93\x9b\xc9\xd7\xd5\x64\xe3\x62\xfe\x04\x8d\x39\x22\x86\xdb\x48\x5f\xbb\x1e\xae\xf2\xeb\x58\x4a\x03\xe3\x0d\x37\xe9\x84\xea\xc7\xf8\xa0\xb3\xad\x77\xc7\x8b\x93\x83\x53\x94\xbf\x4c\x31\xee\x5d\xd4\x5b\xf3\xbb\x58\x33\x40\x18\x4c\x76\x3d\x50\xf6\x81\xd2\xa3\x01\xa5\x24\xd2\x3a\x37\x3c\xa2\x82\x13\x08\x93\x3e\x61\x7f\x17\xcf\x8c\xbc\x12\x0a\x09\x58\x80\x0f\xe8\x59\x24\xfc\xd1\x43\xb0\xcc\xed\xe6\x8d\x35\xd9\xba\xc4\x35\x11\x95\xf0\x94\x0a\xba\x97\xde\x40\xe0\xbd\x5f\x72\x13\x14\xc6\x2b\x36\xcb\xa5\xdf\xa9\xa5\xb2\xe6\x08\xab\xf8\xba\x32\x21\x51\x92\xef\xab\xc0\xe7\x7c\x5f\xd0\x3b\xba\x99\x9b\xc9\xa7\x11\xb2\x6c\x6a\x9d\x80\x5d\x5d\x0a\x30\x34\xfe\x1a\x56\xe1\x1a\x96\x07\x77\x27\x2a\x39\x62\xe8\x6e\xb9\x12\xa4\x9f\xe7\x4b\xdb\x93\x4e\xf3\x0b\xf3\xed\xc3\x2f\x4f\x96\x36\x91\x1b\xa5\xe9\xa3\x82\xbc\xa4\x1f\x56\x64\xf7\x5e\xef\xd2\x3b\xad\xb9\x4d\x87\x50\xb1\x84\x6b\xfe\x2d\x25\xfc\x00\xb4\x21\x72\xa7\x53\x30\x1f\x4c\x4d\x03\xa7\x06\xc7\xe8\x7e\xa4\x2b\xf0\x1e\xe8\x25\xc5\xe2\xbb\xaf\xb5\x2a\xea\x6d\x48\x07\xe7\xda\xfd\xd0\x30\x67\x13\x62\x45\xb0\x10\xf0\xb5\x82\x10\x8e\x2c\x1d\xe2\xf3\xbc\xeb\xf0\x96\x7c\x5d\x99\xae\x30\x0a\xe1\x0d\x09\x48\x07\x9b\x41\xfa\x9a\x7c\x81\x7c\x64\x62\xc5\xf7\xda\xe2\x26\x3b\xe7\xf9\x7b\xb2\xfc\x1f\x62\x96\x98\x7a\xa5\xeb\x51\x70\xc3\x22\xed\x51\x5e\x16\x49\x46\x78\xe0\x37\x94\xe2\xf2\xa7\x5a\x0a\xb2\xc9\xb6\x20\xdd\x24\xbe\x36\x76\xd3\x47\xf4\x05\x7c\xad\x6a\x36\xac\x49\x40\x42\x15\xcf\x3f\xef\x96\xad\x6e\xfd\xc3\x56\x73\x7d\x80\xf3\x2f\xbb\xd5\x0d\xa5\x14\x89\xfb\x13\x40\x9e\xa5\xd7\x05\x6f\x8e\xe3\x75\xa2\xab\x21\xa9\x2d\x27\x62\x71\x4d\xcb\xb2\x5d\x53\x65\x94\xa5\x70\xc5\xee\x55\x52\x98\xb7\x14\xe8\xe5\xb6\x86\xc8\x9e\xd6\x71\xfb\xde\xae\xea\xe3\x3d\x37\x56\x91\x25\xbc\x7f\x78\xd1\x7c\x60\x21\xcc\x01\x31\x81\xfc\xd1\x13\x0e\x6f\x9c\x07\x03\x19\x40\xe7\x48\x7b\x56\x41\xf5\xa4\x76\xcd\x72\xa8\x0f\x17\xe3\xb8\x82\x2d\x55\x8a\x95\x6b\xc3\x91\xc9\x07\x10\x75\xc0\x13\xde\x51\x6a\x52\xd7\xc7\xba\x07\xa0\xc1\xf9\xc9\x72\x93\xdb\x6c\x68\x39\xb9\x2f\x30\x2b\x7a\x15\xc1\xaa\x3c\xa1\xb4\x47\xde\xb4\xbd\x5d\xad\xaf\x7c\x53\xca\x2d\x8a\x31\x0e\x49\x14\x87\x43\x76\x89\xe5\x3f\x54\x04\xdb\xa7\xb4\x54\xe4\x67\x4e\xff\x35\xb0\x71\xce\x6c\x0d\xaf\x32\x4d\xc0\x0f\x78\xa2\x11\xf9\x31\xd6\x14\xf5\x92\xb3\x5a\x50\xb4\xb5\xde\x00\x51\x19\x18\x11\x16\x17\x94\x6c\x0d\xc6\x08\x27\x81\x5b\xd1\xb0\x83\x9f\xe8\x7a\x33\xb3\x64\xa2\x88\x8a\x3a\xb0\x26\x7b\xba\x9e\xea\xfc\x4e\x55\x41\xa2\x34\x66\x48\xe7\x41\x69\x47\x58\x2b\xbc\x67\x7c\x09\xa0\x0e\xac\x46\x2f\x7a\xdb\x0b\xb3\x51\x64\xd6\xa6\x14\xa7\x3f\xbb\x1e\x18\x9e\xab\x8a\xd5\xeb\x2a\x26\x04\x03\xfd\xe1\x58\xe3\x47\x1d\x35\x55\x68\x87\x23\x44\x19\x4c\x0a\x81\x61\x12\x86\x88\x26\x1d\xfe\x20\x4c\x83\x22\xcc\x35\xa8\xfa\x52\x85\x8c\x48\x22\x9e\x28\x2c\xe3\x12\x21\x89\xe5\x46\xc6\xb1\xea\xcb\x00\xbe\xde\x93\x15\xb0\x6b\x19\x8f\x52\x1b\xd8\x5e\x39\xbd\xec\xa9\x01\x9a\x7f\x5b\xe9\x1c\xdf\x2e\x83\x44\x27\x60\x9f\xa7\x09\xa9\xd8\x4f\xf8\xaa\xc1\x0d\xbc\xbc\x63\xac\xf4\x49\xa7\xf7\x54\x44\xb4\x3a\xb0\x16\x35\x6b\x1c\x1a\x67\x28\x72\xe2\xeb\x46\x7a\xbb\xd8\xe6\xab\x49\xba\xac\x92\x30\xec\x23\xf3\x4d\x67\xdb\xe9\x35\x3b\xbb\xd0\x9e\x9d\xdd\x55\x7e\xad\x03\x0e\x2f\x78\x7d\xf2\x72\xf2\x5d\xbd\xa7\xdc\xe0\x72\x04\x57\x12\x44\xaa\x2a\x54\xdb\x8e\xc4\x44\x16\x0c\xa0\xb4\xab\x18\x4a\xdf\x1b\xb7\x94\x7a\x86\xcc\x09\xb4\xfa\x42\x9b\xed\x51\x52\x8c\x20\xba\x76\x1c\x6c\x4e\x8e\xfe\xa2\x66\xf4\xdd\xc0\x76\xc0\x11\xcc\xbc\x72\xd2\x3d\xe6\xdb\xba\x2e\xf2\x0e\x64\xf1\xd7\x9a\x07\x7e\x70\xae\x1d\x99\x8c\x21\xbb\x38\x42\xce\xa9\xe3\xe4\x9c\x2a\x92\x8e\x6c\xb9\xbd\x77\xd1\x40\x20\x29\xd5\xc2\x61\x0f\x88\xf9\x8f\xc7\xbe\xe5\x0d\x98\x56\xfe\x77\x58\x64\xa7\xad\xeb\x08\x7a\x7e\xad\x4c\x12\x51\xe1\xe8\x12\x10\xa0\x3b\x7c\x5d\xa3\xa6\x5c\x98\x26\x19\x31\x33\x1c\x9a\x3c\x49\xd7\x26\x5b\x8a\xff\x4c\x85\x2f\xdf\x1a\x57\x08\xb6\x7d\x65\xfc\xb6\x6a\xf1\xb0\xf9\x20\xae\xe4\x0b\xb6\x74\xeb\xfc\xd6\x23\xd9\xdb\x7b\x21\x4a\x7d\xb2\xa1\xff\x07\x2d\xd5\x72\xb1\x22\x20\x5b\x3b\x86\x4b\x17\xca\x47\x3e\xaf\xea\xc8\x69\xc6\x31\xe1\x3e\xa5\x32\xa1\x8b\x8b\x22\xd5\x04\x27\xe9\xf7\xc6\x5e\x1d\xee\xf7\x6a\x5c\x5c\x73\x73\x6d\x93\xe6\xe1\x12\xe9\xe6\x32\xa0\xc3\x55\x50\x5d\x81\xe6\x94\x6a\xd6\x81\x66\x4d\x14\xad\xed\xf1\xa8\x83\xc7\xc0\x74\x2b\x0a\xc7\x34\xef\x18\xca\xdb\x14\x56\xe0\xfa\x26\x96\xa1\xc8\xe0\xa8\xa1\xc3\x51\x02\xaf\x02\xb0\x3d\x09\x8f\x95\xac\x4e\x12\xe7\xa9\x61\x84\x28\x2b\x9c\x8c\xbd\x20\xe4\x67\x0d\x9a\x30\x2f\xb5\x93\x91\x8d\xe9\xa4\x14\x54\x5d\xb9\x81\xe1\x33\xdc\x21\x7b\x21\x47\x5e\x43\x25\x25\xcb\x93\xd4\xf4\xad\x92\xec\xbc\xa0\x24\x3b\x2f\x78\xd9\x36\x93\x05\xa6\x27\xe2\x1f\x68\xe4\x60\xc3\xc2\x37\xb5\x68\xf8\xf0\xcb\xed\x60\x10\xc6\x36\xb3\xf4\x70\xdc\x19\x4d\x2f\xce\xdc\xfd\x1d\x55\xef\xd6\xbc\x70\x80\x1f\x3c\x4e\xeb\x07\x31\x18\x47\x47\x2e\x0f\xec\x80\x09\x27\x55\xe5\xe9\x21\x75\x5d\xe3\x68\x60\xa4\x34\xfc\x05\x92\x39\x63\x37\x03\x14\x0c\x18\x91\x5f\x61\x2b\x62\x7a\xdf\xa6\x16\x25\xfe\x34\x4d\x15\x8b\x50\x77\x14\x7a\x85\x93\xd3\x18\xe8\x87\x8d\x01\xf1\x62\x9a\x48\x1b\xa1\xe4\x6d\xe8\x35\x25\x71\xa3\xd2\x5d\x23\x1b\xf7\x48\xaf\xdd\x85\xef\xe5\x33\x23\x1e\x03\xcc\x9d\x39\x99\x14\x4f\xd9\x39\x7a\x7e\x51\x67\xaa\xc8\xfc\x45\x66\x52\x95\x0e\x6e\x77\x54\x2b\xfc\x75\x6c\x46\xbe\x01\xa5\x09\xff\x99\xb2\x68\x49\xd4\xb3\x19\x50\xfb\xce\x11\xf0\xa8\xb3\x8e\x6f\x35\x1e\x58\x93\xe6\xab\x61\x66\xf5\xf1\x77\x56\xeb\xee\x9c\xad\x65\xb5\x0f\x1c\x60\x58\x3d\xb9\xea\x5b\x48\xe7\x49\x91\xb3\xe2\xa4\x3f\xa7\xaa\x98\x71\x60\x81\x78\x9c\xf4\xed\x47\xf7\xb0\xf7\x1c\x32\xc5\xe1\x8a\xc1\xe2\x87\x8a\xd9\x29\x95\x14\x88\x93\x3c\x8c\xfb\xa0\xe4\xc1\x8a\xb8\xad\x7e\x7d\x8b\x76\xaf\xb4\x52\xd1\x0b\x39\xa5\x5f\x17\x6c\x6f\x35\xf4\xe4\x3b\xea\x5a\x39\xd8\x5c\x91\xdf\xb3\x63\xd6\x3e\xf6\xca\xcc\xe1\xf6\x1b\x85\x89\xc2\xa5\x50\x1a\xd7\x65\x03\xd1\x12\x97\xad\xb5\x1d\xfc\x45\x14\x00\x66\x64\x82\x30\x4f\x1c\x21\x11\xdc\x7a\xee\x69\xe4\x9b\x4a\x09\x7e\x99\x32\xe7\xae\xdf\x63\xb2\x4b\x90\x26\xa1\x62\x57\x07\xd1\x5f\x8c\x15\x04\xfe\x2f\x10\xbc\x3b\x69\x23\xcf\x8d\x7e\x5a\xc9\x35\xdc\x27\x3b\x23\x7c\x95\x9e\xa5\xf4\x9e\x52\xcc\xdc\xb7\x4e\x39\x52\xfe\xc1\x9a\xf5\x9a\x39\xdc\xce\x02\x89\x3e\x5d\xc1\xcc\xe1\x52\x37\x9a\x20\x70\x41\x12\xc7\x49\x98\x65\xb6\x40\x33\xea\xa3\xf4\xf8\x79\x57\xac\xd9\xfc\x31\x55\x5c\x22\xc0\x21\xf8\xce\x00\xec\xda\x4d\xad\x22\x58\x58\x50\x95\x47\x06\xfb\xb7\xb5\x73\x7e\x9b\xbd\x06\xaf\xe9\x2f\x30\xb5\x9d\x5d\x95\xb8\x7f\x02\xca\x54\x42\x87\xe2\x6b\xec\x41\x1a\x0e\xc3\xd8\x44\x13\xca\x79\x3d\xad\xbb\x1d\x3b\x1e\xee\x70\xbe\xf6\xd2\xb3\xb3\xed\x30\x8a\x8a\x2c\x4f\x3d\x35\xa7\x6a\xbd\x9e\x71\x13\xd5\x20\xf3\xb4\x18\x8e\xca\xa3\x2f\xe3\xb4\x1e\xb6\x18\x10\x9c\x7c\xbd\xfe\x74\x25\xbe\x4d\xa9\x82\xe7\x28\x84\x7f\xae\x94\x05\x7e\xae\xf2\xda\x59\x5e\xf4\x88\x13\xd5\xfb\x49\x7f\xd6\xf9\xf7\x13\x0c\x54\x82\x58\xef\x34\x90\xbf\x64\x61\x3f\x36\x11\x94\xca\xe7\x3d\x75\xe0\x41\xa9\x33\x7c\x82\x2d\x8a\x9b\x49\x9c\xc9\x48\x06\x5f\x55\xa0\x8a\x30\x5a\x5e\x36\x8a\xa6\xf6\xfb\xba\xff\xe8\xfb\xd5\xec\x52\x0a\x44\xb0\xb0\x72\x57\x31\xb1\xe5\x57\xf0\xff\xe0\xb4\x70\xd0\xf5\xf2\x9d\x10\x0b\x71\x0d\x46\x80\x6f\x75\x29\x85\xf9\x76\x52\xe4\xbd\xb0\x87\x7a\x97\x20\xf7\x95\x9c\xc8\x29\x57\x8b\x25\x3e\x1f\xa4\x4f\x90\x08\x39\x46\x33\xc0\xd7\x2e\x30\x2a\x7d\x7c\x9b\xd2\xe8\x23\x3b\xfb\x38\xd9\x3e\x21\x4d\x57\x68\xe4\xdb\xaa\x7b\xf6\x73\xdd\x29\xee\x23\xf8\xb8\x08\x22\x6b\xd2\x49\x95\xa6\x27\x56\x70\xe9\x99\xee\xf8\xc6\xff\x0d\x95\x22\xfb\xa4\x11\x29\x9e\x5a\xa0\x33\xf0\xae\x8e\x00\xf6\xeb\x33\x2e\x16\x13\x28\x82\xed\x27\xe4\x19\x20\xe7\x79\x0a\xcf\xa6\xc7\x5d\x04\x09\x1b\x85\xbf\x4c\xcf\xa6\x4a\x2b\x15\x55\x1b\x91\x63\xf6\xfb\xff\xbf\xfc\x3b\xbf\xdb\x52\x2d\xca\x7b\xba\xad\x03\x33\x72\xbd\x5e\xe9\xf7\x8d\xf6\xaa\xa4\xeb\x65\x3c\x8d\x14\x74\x3c\x70\xfd\x8a\xa6\xf5\x99\xe8\x6a\x62\x1a\xaa\xe8\x3b\xe2\xcd\x6f\x7c\x6d\x5b\x63\x72\x45\x8b\x48\x20\x05\x1e\x36\xd8\x4b\x6d\x96\x89\x08\x00\x52\xad\xd0\x7f\xe5\xeb\xda\x49\x72\x70\xae\x9d\xdb\x60\x10\x27\x51\xd2\x5f\x6b\xe9\xdc\xd9\xb1\x71\x65\xfd\x7c\xd1\xf7\x76\xc8\xdf\x87\x81\x89\xf0\x4b\xc8\x40\xa1\x9d\x88\xaf\x5d\x30\x66\x96\x22\x93\x27\x6f\x86\xe8\xa2\x85\xe3\xfb\x54\x57\x95\xd6\x6e\x6b\x2d\x6d\x5a\x19\xb0\xf4\x9c\xbc\x03\xc8\xbb\x5e\x5e\x79\xed\x35\xd2\x31\x09\x73\x67\xce\x30\x84\x1b\x8a\xdb\xa7\x51\x98\x30\xcb\xad\xe9\xc1\x7f\xc7\x66\x43\xc9\x89\xaf\x6b\x8c\x1d\xc4\xdf\x97\x86\x49\x4a\x1c\xda\x78\x1a\x30\xd2\x33\x20\x60\xdc\x52\xcc\x8b\xaa\xa5\x7f\x68\xb8\x1c\x2e\x35\x09\xef\x33\x6e\x28\x4a\x99\xa1\xe9\x85\x9e\x44\x55\x84\x62\xe9\xd5\x45\x41\xb6\x81\x1e\x2f\xb7\x51\x34\xe9\xd7\xcd\x19\xad\x86\x06\x46\x21\x97\x3e\x2c\x57\x0a\xd2\x87\x67\xdc\xce\x8f\xac\x59\xb1\x0c\x8f\x14\x48\x93\xdf\x45\xac\x45\x24\x4c\x4a\xdb\x8f\x92\x23\xd3\x73\xa5\xf3\x16\xe5\x83\x15\x2a\x60\x7a\x86\x9a\x33\xc0\x02\xcb\xaf\x35\x60\x12\x46\x91\x59\x93\xf9\xe2\xe4\x6a\xc7\x5b\xff\x4f\xab\x5d\xaf\x69\xb2\xca\xc3\x22\x8d\x3b\xf4\x5b\x7c\x33\x7e\xba\x9a\x84\x78\xa1\xfd\x37\x1f\xa7\x17\x82\xe3\xf5\x6d\x72\xc5\x19\xbd\x30\x56\x38\xb3\xbf\xa4\x93\x17\xb9\x34\x3e\x07\xe0\x8b\xbc\x03\xd7\x59\x00\x0f\x1e\x7e\xbf\x41\x01\x10\x76\xc2\x8e\x75\x45\x28\xfd\x90\x06\x0d\x8e\xf7\xdd\xb1\xef\x54\x7f\xac\xeb\x43\x21\x4e\xb7\x33\x5f\xb1\x8a\x91\xb3\xa4\x8c\x24\xa7\xe8\x24\xd3\xa5\x1c\xd8\x95\xd3\x63\x95\x8c\x6e\x75\x7d\x84\x7f\xa7\x5a\x49\xf2\x46\x6a\xd1\xa6\x4f\x6a\x0b\x59\x7e\x17\xde\x72\x6a\xbd\xb4\x57\xc8\x56\x1c\x53\x60\xad\x3f\xfb\x6b\x5d\x9d\x33\xde\x50\x74\x07\xa4\x91\xfa\xea\xd6\x6e\x42\x28\xe1\xd0\x7d\x9a\x1e\x02\xeb\xed\xe1\x58\x89\x10\x9c\x83\xd1\xaa\x98\x26\x1c\xcd\x27\x81\xbc\x41\xa4\x76\x62\xac\xfa\xfa\x99\xfb\x15\x0e\xde\xde\x1a\x9b\xc4\x81\x03\xed\xd7\xed\x6a\x36\xa1\xf0\x35\x1b\x6c\x01\x61\x34\xc0\x05\x84\xd7\x3b\x3b\x6e\x10\x14\x39\x32\xfd\xea\xa4\x22\x79\x3e\x53\x59\xd2\x1d\x3f\x36\x27\xe9\x8b\xe0\x63\x9c\x73\xdd\x18\x79\x32\x0a\x83\x09\x0f\x6b\xbd\xab\xc0\x28\xd0\x75\x15\xd1\x87\x06\xcd\x7e\x03\xb4\x2e\x06\x92\xeb\xd6\x7c\x53\x47\xdd\xcd\xb4\x5f\x37\x23\x53\x06\xb8\xaa\xcf\x91\x33\x1d\xb2\x85\x05\xc3\x91\xa7\x05\x28\x49\x90\x6b\xc0\xaa\x50\xf2\x91\xf3\x2e\xce\x90\x42\xde\x52\xb8\x62\xd7\xac\x81\x93\x8b\x73\xed\x57\x1d\x7f\xc6\xfd\x4a\x61\x7a\x93\x10\xea\x1e\x95\x5c\x0b\xec\x01\xe8\x24\x10\x93\xed\x5e\xf7\x85\x93\x51\x64\x4d\xcf\x89\x38\x62\x6c\x7f\xa5\x07\xfa\x57\x15\xa2\xc5\x22\x5e\xde\x47\xab\x1d\x63\xda\x82\xee\xbf\x3b\xeb\x16\xa6\xf9\xac\x03\x9f\x09\xe2\x80\xfd\xe0\xab\x84\x7b\xf2\x13\xac\x20\xd8\xd0\x87\xaa\x75\xee\x9f\x91\x6d\x45\xb1\xe1\xe7\x1d\xcd\x5d\x3d\xf6\x58\xe9\x5f\xd3\xbe\xc7\x08\x5d\x6d\xe8\x6d\x9f\x6b\x97\x01\xe9\x80\x53\x3b\x12\x4f\x95\x8f\x22\xe1\x54\x43\x91\x60\x94\xda\x15\x95\xc3\x15\x14\x02\xed\x01\xbe\x69\x6a\xac\xfd\x72\x3b\xb6\x26\x75\xf0\x0f\x21\xf0\xaa\x78\xab\xbe\x64\x14\xc6\xb9\xed\xc3\x6f\xf7\x84\x34\x88\x71\x1e\xc5\x7f\x78\x64\xfa\xa5\x76\x5e\xa4\x8e\xbd\x10\xae\xc6\x1f\x77\x94\xa8\xd8\x1f\xbb\xd3\xc0\x84\xbe\x33\x98\x8b\x34\x1d\x8f\x4b\xdb\x50\xf4\x60\x8b\x69\xd2\xb3\x69\x18\x2c\xb7\x7c\x8f\x3a\x77\x1c\x48\x0f\x83\x4f\x4d\x04\x83\x70\x84\x16\x60\x04\xff\xff\xb0\xe3\x4f\xd0\x0b\x04\xa9\x13\x82\xec\x96\xa3\x24\xba\xa2\x3e\x3f\xb2\x51\xfe\x16\x79\x0d\x38\x08\xc1\x5c\x8c\x92\xed\xfa\x58\x71\x3b\x08\xb3\x26\x62\x9f\xcb\x38\x84\x24\x55\xbb\x9d\x85\xed\xc0\x81\xf6\x28\x4d\x32\x1b\x14\xd4\xbb\x03\x88\x2d\xca\xea\x40\x27\xf2\xb5\xe2\x2d\xca\x4c\x0c\x50\x22\x7e\x06\x1e\x25\xd7\x5a\xf8\xa6\xb6\x9e\x0e\x1c\x68\x0f\xcc\x5b\x36\x8a\x8b\x7c\xb2\x42\x5e\x4f\x8b\x5e\x74\x7d\xcb\xd5\x89\xfc\xf7\xe7\x63\xdf\x4b\xb5\xa3\xeb\x63\xa4\x81\x49\x7b\xab\x26\x45\x29\x1e\x26\xeb\x2e\xb6\x01\xdf\x60\xb9\x4b\xd8\x47\xdf\xce\x37\x0d\xdc\x51\xf3\xed\x22\x8e\xac\x23\x96\x79\xd5\x09\x5f\x97\xdf\xce\xd7\xe3\x0a\x2d\x91\xcd\x26\x1c\xd2\xff\xff\xba\x84\x98\xde\x75\x62\x2e\x4c\xf3\xa9\xf8\x6f\x9c\x8d\xca\xec\x9b\x6b\x8f\x14\x95\x6b\x8e\xc4\xf3\x30\xee\x5b\xe9\xb8\x82\x6d\x40\xfe\x90\xaf\x95\x53\x30\x0c\x7b\x11\xe7\xd5\x9d\xca\x88\xea\x6a\xe8\x78\x88\xc0\x30\x0c\xd2\x64\x94\x26\x68\x75\x9b\xac\x16\x30\xe7\x5f\x96\xb4\xc7\x69\x14\x24\xb0\xf8\xf8\x68\xe5\x1b\xc5\xe3\x11\x24\x71\xaf\x08\x58\x1f\xcc\x89\xd8\x29\xb1\x29\x1f\x03\x2c\xda\x2c\x7f\xdc\x2b\x82\x5f\xaf\x64\xcb\xc9\x25\xc1\x1c\xbf\x8f\x1a\x11\xbc\xe5\xff\x5b\x9d\xbc\xdc\x06\xec\x04\x43\xe7\x9d\x44\xc8\x24\xf2\x86\xb8\x41\xf9\xd2\xd1\xba\x1d\x99\xe6\xa6\x00\x98\x77\xac\x8d\xa3\xd4\x9a\x8c\xd5\xf0\x43\x42\x96\xf0\x17\xd5\x9c\xdc\x23\xd3\xed\x28\x89\xa5\x4f\x11\xe7\x1c\xfa\xc2\xf8\xba\x56\x4b\x5c\x98\x6e\x4b\x21\xd0\x09\x49\x97\xcf\x8d\xed\xb9\x03\x19\x0d\x9c\x53\xc7\xc6\xbe\x65\xf0\x36\xcb\x99\x94\x03\x21\xa0\xb7\x4a\x05\x52\x75\xbe\xf7\x51\xea\x72\x2c\x1d\x5f\x7d\xc5\x73\x9c\x7a\x64\xc0\xc3\x9a\x7b\xbc\x30\xdd\x5e\x22\xa0\xcf\x91\x69\x4f\x74\xe0\x35\xb9\x1a\x39\xc6\x89\x7b\xb5\xa5\xa4\x5a\x37\x3b\x0a\x52\x5f\x67\x06\x9a\x9d\x6d\x47\xa1\x8d\x5b\xfe\xa4\x42\x85\x47\x30\x20\xdb\xcd\xc1\xe1\x97\xdb\xa3\xc1\x5a\x46\x21\x93\xdf\xf4\x70\xd2\xa4\x1a\x56\xd3\x78\x9f\x69\xdb\x38\x1f\x14\x59\x68\x32\x91\x2a\x10\xd8\x87\xa6\xab\x69\x80\x90\xcd\x80\xe9\x93\x3f\x24\x25\x41\xfa\x10\xdf\x28\x47\xb4\x17\xc6\x31\x6f\x2a\xa0\x34\xaf\x2a\x65\x88\xab\xce\x27\xca\x22\x87\xd2\xe2\x79\xed\x78\xd6\xa0\x63\x8d\x75\x44\x1b\xf7\x8d\x93\xbb\x80\x37\xf3\x4f\x3a\x8a\xd7\xf8\x9f\x28\x2e\xa2\x5e\x01\xf2\x76\xab\xe4\x25\x2f\x55\xf4\xe6\xea\x8b\x76\xbe\x9d\x86\x99\x65\x61\x06\x26\x03\xa3\x8f\x08\x31\x98\x12\x97\x2c\xc7\x63\x17\xcd\x29\x56\xe2\xf9\x8e\x5a\xaf\x97\xc7\x8a\x16\x9b\xdb\x29\xf1\x88\x90\x96\x46\xbe\x66\xaa\xeb\x45\x5d\x6f\x2b\x51\x97\xd7\xcd\x5b\x6f\x4d\xfa\x7c\x25\x33\xcd\x30\x82\xae\xe3\xe1\x59\xd0\xa3\x70\xd0\xba\x67\x14\x8a\x94\x6b\xc1\xb4\xfd\x44\x2e\xbf\xfc\x46\x51\xcb\xf7\x32\x4b\xe1\x28\xb2\x7b\xc9\x2a\xa0\xf2\x73\x6a\xec\xd7\x39\x78\xae\xe0\xe8\xc3\x3b\x54\xc4\x33\xd2\x3b\x79\x9d\xac\x02\xfe\x08\xcd\x91\x1a\x0a\xe6\x84\x4c\xca\x29\x83\x49\xf1\x0d\xd0\xa5\x2b\x19\x25\x4c\x96\x8e\xbf\xbc\xa7\xce\x4c\xae\x54\xc9\x57\x37\xa4\x20\x83\x24\xa6\x93\x97\xba\x00\x1d\x7f\xe5\xbd\xb1\x6f\x43\xbe\xe7\x92\x58\xb1\x5d\xb1\xe9\xee\xf2\x85\x58\xb2\xbf\xab\x5a\xcb\x3f\xa5\xb5\xe7\xd0\x05\x4e\x1f\xee\x38\xde\xd4\xa1\x6a\x5e\x71\x3c\x11\x1b\x24\xcf\x28\x01\xee\x33\x8a\xe9\xaf\x74\xe0\x92\x94\x7a\x68\x5e\xe2\xe8\xeb\xae\x42\xaf\xdc\xed\x54\x9c\xae\x83\xfe\x38\x6b\x3f\xaa\x8a\x69\x87\x49\x90\x1a\xa8\xb6\x4b\xf8\x03\xed\x4b\xc7\xa1\xe1\x55\xac\xae\x69\xca\xe0\x93\x1c\xe5\x20\x69\xf6\xb8\x42\x29\x99\xa2\x17\xda\x38\xb0\xd9\xa4\x62\x4f\x38\xd5\xf1\xc9\x2b\x3e\x9c\x85\xe2\xca\x7b\xfc\x97\x9a\xca\xe9\xf6\xcd\x0a\x87\xa4\x68\xf5\xb7\x9c\x6c\xd6\x99\x9a\x4f\x79\xf8\x65\xe6\xe1\xe5\x6e\x4c\x24\xb9\xae\xaa\x26\xc8\xf7\x71\x1a\x4b\x9c\xe4\xe1\xdb\xa6\xc8\x72\x9b\x42\x3d\x19\xc5\xcb\x73\x0a\x1e\x75\xae\x89\x44\x66\xd1\x44\xd1\xc8\xa4\xcb\x15\x62\xbb\x4b\x8a\xd8\xee\xd1\xe2\xae\xbd\xbf\xbe\xa8\x5a\x98\xee\xeb\xa6\xae\xfb\x9a\xc8\x89\x98\x6d\xbc\x7f\xb9\x49\xbb\x47\x32\x30\xfe\xe1\xfb\xa9\x21\x0f\xdf\xa7\x5b\x36\x34\x18\x72\x43\x23\x47\x13\x50\x3e\x7a\xbe\x4d\x60\xba\xf9\x5a\x67\xea\xec\xa2\xd9\xce\x3a\xdc\xd1\xac\xc3\x4d\x8c\xe4\xa3\x34\x59\x4a\x8a\x98\xc2\x80\x2d\x32\x10\x5b\x27\x1b\x8a\x3c\x87\xda\xa9\xed\x87\x34\xe2\x3c\x55\xc8\xbb\x7e\x9f\xc6\x5c\x54\xf5\x68\xaa\x60\xe4\x3e\x56\x3c\xe1\xa9\xed\xd9\xe1\x08\x1a\x1a\x0e\x01\xc0\x0b\x56\xc8\x35\x7d\xf6\xaa\x6f\xd2\x9e\x8d\x33\x18\x56\x6c\xc7\x33\xf0\xaf\x38\xd5\xdb\x69\x3d\xff\x7c\x25\xed\x0b\x40\xd7\x51\x4d\xa1\x89\x0d\x8c\x09\xda\xd1\x15\x46\xfb\xd2\x56\x24\x51\xd8\xa3\x23\xc1\xc5\x97\x6f\xab\x15\xf0\xb6\x8f\xd7\xd3\x50\xd2\x59\x98\x94\xc9\xae\xd2\x41\xbd\xa3\x78\xf6\x2e\x55\xf8\x48\x73\x5b\x86\x00\xbb\x14\x94\xfe\xe6\xd8\x63\x82\x01\x62\x44\x3a\x9c\x8b\x9f\xf0\xd7\x50\xed\x03\x2a\xf4\x18\xc5\x9e\x7c\xed\xa8\x86\xf2\xa4\x6f\x26\x94\xce\x0b\x02\x51\x24\x52\xde\x57\x78\x8d\x6b\xb5\xc3\x7b\xfe\xe5\x43\xed\xa5\x30\x0b\x4c\x34\xe1\xa5\xba\x27\xba\x1a\xe2\xd8\x72\xd4\x19\x7f\x5e\x53\x86\x29\x03\xbf\x62\x34\x59\x86\xba\x04\xe4\x9a\x7e\x86\xdc\x38\x57\x92\x76\xad\x9c\x9b\x8a\x8d\xbb\xb5\xfe\x9c\xee\x68\x88\x6c\x6e\xd2\xd0\xb0\xe6\x0a\x0e\x01\xd4\xdc\xf9\x5a\xb3\xd6\xbf\x51\x84\xa3\xa1\x8d\xf3\xfd\xe5\x0b\x3a\xb6\xdc\xd2\xa6\x38\x01\x1d\xd5\x2b\x09\x5b\x87\x80\x9c\x69\xbf\x59\x91\xb1\xa3\x49\xc8\x91\x07\x16\xba\x5d\xdf\xd3\x73\xa6\xa3\x64\xdf\x4f\x62\x17\xf2\x8d\xea\x12\xbb\xad\x21\x86\x2e\x11\xdd\x33\x69\xbe\x98\x98\xb4\xd7\x52\x24\xac\x0f\x55\x3b\xd8\x43\x9f\xb3\x8e\xfb\x36\x5a\x0a\xb3\x01\xa5\x80\x90\x7f\xba\xa3\x44\x67\x90\x63\x46\xae\x4f\x53\xe1\xe7\x69\x32\x1c\xe1\x64\xc3\xe1\x7c\x87\xbc\x56\xbe\x76\xf8\xb6\x91\xcd\x6c\x6e\xd8\xb0\x61\xa9\xdd\x54\x9a\x26\x37\xab\x64\x73\xbd\x8c\x4a\x69\x98\xfc\x1b\x74\x00\xf1\x75\x0d\x3a\xb0\x30\x0d\xf9\x28\x64\x15\x9c\xde\xa3\xd7\x7e\xac\x50\xfb\xf4\x4d\xca\xb1\xa9\x84\xbf\x74\x5c\x22\x1f\xfc\x1d\x4c\x9b\x04\xc3\xe5\xaf\xf2\x7f\xd4\xf2\x19\x07\xe7\x10\x6d\xad\x9a\x15\xdd\x3a\xfa\x61\xc7\xc3\x81\x3f\x54\x9e\x98\x8d\x22\xd1\x68\x02\x4a\xe1\x61\x45\xbb\x48\x71\x9f\xdd\xac\x40\x13\xac\x4d\xf7\xf9\x26\x9c\xd3\x1d\x15\x48\x73\x2c\xae\xb4\x49\xe6\x7d\x45\xc7\x91\x40\x9d\xa0\xb7\x40\xa8\xb8\xb3\xab\xe4\xf6\xcf\x76\x74\x60\x7f\xb7\x53\xc1\x27\x3b\x87\x8c\xa5\x53\x84\x4a\x71\xfb\x28\x1c\x38\xd0\xce\x06\x26\x57\x46\x57\xe0\x3b\x1e\x67\xca\x1d\xa3\xe2\x32\x3b\x5c\xcc\x20\x59\x76\x27\x31\x76\xe7\xa7\xaa\xd1\xfa\x53\xa5\xa2\xd6\x37\x51\xc4\x96\xb9\x99\xd2\xdb\x69\x68\x85\xd2\x41\xc2\x6d\x32\x2a\x61\xfa\x4f\x69\x20\xf0\xee\x3f\x56\x5c\x81\xab\xa9\x35\xcb\x52\x3d\x12\xb6\x50\xef\xa6\x9d\xa9\xbd\xf3\xec\x6c\x7b\x34\xb0\x71\x32\xb4\x31\xea\xa4\x08\x7a\x6f\x8f\x15\xff\xe9\x6d\x85\x88\xca\x07\x49\x91\x99\xb8\x97\xed\x2d\xff\x98\x03\x56\x2c\x34\x37\x45\xdf\xf8\x1a\xef\x97\x7b\x2a\x5d\xb4\x8f\x3a\x81\x80\x4c\x65\x2e\x2f\x27\x5d\xe6\x99\x39\x36\x69\xe6\x24\x0f\xd9\x72\x08\xe1\x8b\x6a\x00\xb3\x3c\x0d\xe3\xfe\x2e\x8a\xfa\x25\x2f\x5d\xfe\x8e\x62\x23\x7d\xb5\xe2\xba\xa3\x32\xf1\x70\xbb\xb2\xd7\xcc\x23\x9d\xab\x72\x29\xb5\x83\x81\x49\xfb\xc2\x9b\x87\xf4\xd7\xaf\x3b\x4a\x7d\xe4\xd7\x8d\x14\x11\x8b\x45\xea\xc4\x56\xb1\xe8\xfe\xa4\xe3\x17\xe0\x9f\xd4\x3e\x33\x3b\xdb\x1e\x86\x04\x32\x6b\xf9\xf0\xe3\xaa\x8a\x38\xae\xd6\x9e\xce\x89\x10\x14\x79\xa2\xb4\xf6\x91\x5b\x93\x96\x7a\x1a\x53\x38\xd4\x37\xdd\x19\xdb\x2f\xe2\x78\x4d\x89\x2b\x5c\x56\x0a\x52\x97\xb7\xa7\xe0\x69\x10\x0e\xcc\xec\xa6\x25\x8d\x7c\xd1\xff\x5c\x01\x65\xd0\x3b\x0a\x9a\xdf\x23\x64\x59\x0f\xb9\x12\xe7\xc3\xc0\x7f\xc2\x9e\x31\xdf\xa9\x3c\x61\x9e\xf4\xcc\xda\x7e\xfc\x2f\xc8\x26\xee\x8e\x95\x2a\x2b\xf2\x18\xd2\xe2\xe2\xfd\xfa\x9f\x63\x33\x02\x93\xc2\x71\x03\x96\xe4\x2d\xf2\xaa\x91\x7d\xfa\xa4\xa3\x6a\x8b\xd7\x54\xcb\x2d\x98\xea\x90\x98\x3e\x8f\xa7\x16\x41\x0f\x5f\x21\x7a\xf1\xe9\xf5\x27\x75\x2a\x2f\x32\x31\x19\x73\x38\x52\x5b\x64\xcc\xf9\x5a\xf3\x46\x27\x7d\xf4\x12\x0a\x2b\x9a\x4f\x3b\x9d\x6b\xa2\x98\xea\x91\x7a\x50\x4b\x09\xed\x9f\x52\xd2\xde\x9a\xed\x96\x9a\x1b\x4b\x57\x76\x61\xde\xb7\x4d\xf9\xb2\xa4\x82\xcf\x05\x51\x92\x71\xbf\x25\xce\x0e\xd0\x7f\xf3\x75\xad\x1f\x77\xe6\x70\x3b\x2a\xe2\x60\x60\xd9\x38\x35\x1d\x01\xfe\xcb\x49\xec\x73\xed\x09\xa2\xef\xd8\xb5\xae\x18\x12\xce\x93\xb1\xc4\x9e\x9f\xec\x2a\x95\xcc\x4b\x95\x2e\x23\xdf\x34\x82\x9a\x33\xd6\xc4\xd3\xdd\x32\xb0\x85\x11\x3f\x39\x56\x32\xb2\x2c\xcd\x8d\x02\xc6\x75\x32\x0c\xc8\x59\x31\x78\x9e\x65\xa4\x14\x4a\xff\xe7\xda\xdb\x7b\x77\xbc\xdf\xcd\xe1\xf3\x29\x58\xcc\x5c\x57\xbb\xef\x77\xff\xe9\x58\xc1\x55\xfe\x7c\xdc\xfa\xca\x37\x5d\x59\x4f\xb5\x99\x5f\xa0\x9f\x67\x91\x76\x2c\x53\x96\xb7\x52\x6c\x30\x4f\x75\x7d\x7f\xd5\xa6\x6e\xe3\xba\x3d\xf6\x13\xc2\x62\xa3\x38\xa1\xd1\x0d\x0b\x03\x79\x8c\x0a\x1d\x22\x90\xd3\x3a\x30\xe3\xc6\xca\xf5\x77\xa5\x69\xe9\xe2\x70\xf4\x21\x62\x4d\x4a\x1c\x4a\x77\xc3\xc5\xe1\xf2\xb2\x0d\x69\xc9\x38\x1e\xf6\x83\x32\x36\x3f\xd0\x1c\x24\x51\xb2\xca\x5f\x89\x1f\xbf\x86\xaf\xe4\x1b\xd5\xaa\xb4\x5c\x0c\x6d\xab\xb4\xf4\x58\x77\x4c\x1d\xc8\x37\x4d\xdd\xb2\x26\x08\xc2\x9e\xd0\x41\xc0\x25\x46\xbb\x3c\x5f\x7b\xad\xbb\xd1\x28\x4d\x4c\x30\xb0\x3d\x6a\x31\x57\x44\x7c\x52\x63\x3e\xa5\xf2\x74\x1f\x8d\x55\x42\xa8\xce\x2d\x30\x37\xd7\xce\x46\x26\xf2\x51\x32\x52\xa9\xac\x29\xcc\x37\x4d\xfc\xac\x41\xc2\x16\xd9\xc9\xd0\x2b\xb8\xb9\xdf\x8d\xd4\x3c\xcc\x1d\x89\x8d\x89\x3d\xcf\xdb\x60\xde\xc2\xbb\x63\x45\x9d\x87\x89\xe1\x9b\x2a\x0d\x4c\x0c\xd0\x01\x5c\xc4\x5b\xca\x5d\xbc\xa5\x32\x56\x4b\x91\x59\x9d\x54\x69\x07\x86\x2c\x02\x5e\xfa\x63\xd5\x23\xfc\x63\x5d\xca\xba\x50\x73\x00\x0e\xbf\x4c\x20\x8c\x22\x0e\x33\x70\x88\xcb\xc2\x6e\x39\x7d\x23\x9c\x2c\x12\x7f\xd4\xe9\x8c\xed\x70\xb1\x5c\x8e\x59\x56\x15\x8c\xfe\x61\xc7\x57\xe1\x7e\xd8\x40\xcc\x3e\xdf\xce\x0d\x72\x96\xc2\xc1\x53\xbe\xa9\x48\x32\x78\x38\x5a\x66\x83\xd4\xe6\x22\x7e\x23\x24\xc3\xde\x25\xfb\x76\x83\x78\xf2\x5c\x7b\xc9\xb0\x0c\xf4\xec\xac\xe7\xd1\x9e\xf3\xce\xdf\xb3\x8a\x39\x2c\xb2\x59\x4e\x9a\xb9\x3e\xf1\xc8\x2d\xaf\x7c\x33\xde\xe7\x8a\xac\xbf\x3b\x4d\xe6\x1f\x91\x03\x13\xca\xf2\x4d\x23\xc7\x67\x6c\xca\x8d\xe2\x78\x45\xa0\xac\x24\x40\x48\xf5\x92\xc5\xe2\x28\xb1\xb1\xa1\x03\x1d\x76\xe6\x5d\x9d\x62\x42\xf8\x08\x2b\xb0\x63\x5d\x25\x45\x6d\x9c\x67\x8f\x95\x3b\x1b\x4b\x69\x8a\x42\x4b\x89\x52\x69\xc4\xb0\x51\x6e\xc1\xd0\xb9\xd9\x75\x49\xc3\xfb\x38\x44\xf9\xaf\xc8\x63\xc3\xef\x3f\x4e\xd9\x44\xe4\x4a\x5b\xeb\xaa\xd2\x7b\x0b\x46\x01\xa6\xfc\x94\x33\x49\x49\x91\x2f\x96\xee\x67\x4b\xad\x4a\xf0\x03\xf2\xb5\xd6\xab\xfe\x2f\xfe\x16\x97\xe2\x10\xdf\xbf\x47\xc5\x44\xbe\x56\x8e\x81\x89\x24\xcf\x88\x99\x38\xad\x72\xc3\xa7\xb7\x7b\x2c\xb3\xb3\x87\x4a\x1f\x0c\xeb\x44\xce\x0d\x5f\x36\xb8\x50\x2b\x1b\x1c\x99\x6e\xf7\xac\x2b\x34\x30\xe3\x65\xc7\x7b\xe6\xe7\x14\xd2\x31\xb0\x71\x96\xa4\x58\xe1\xa2\x9f\x0a\x86\x51\xbe\x56\x56\x61\x29\x49\x40\x46\x5a\x0e\x93\x23\xab\x5e\x98\x96\x6b\xed\xf9\xac\x86\x81\xdd\xeb\x53\x92\x77\x3b\x3e\x51\x02\xc1\x12\x38\xff\xbb\xd7\x15\x7b\xdb\x8d\x4e\xa5\xa7\xa2\x9c\x7d\x21\xa3\x54\xcc\xbe\x28\x4d\xc0\x08\xdc\x84\x57\x2c\x83\xf2\x4c\x8d\xe8\xb1\xb7\xbb\xd2\x5d\x74\x40\x88\x09\x2f\x83\x88\x8f\xcb\xbf\x8a\x70\x02\x01\xa5\xb4\x20\xb5\xbc\xf8\x30\x56\xad\xc4\xa3\xdb\x13\xac\xb3\xb3\xed\x30\xee\x15\xa5\x0f\x6f\xa2\xf0\x2d\x09\xb4\x90\x54\xc5\x22\xc7\x77\xde\xaa\xc8\xab\xd6\xb6\x38\xe8\x4a\x8c\xa7\x48\x83\xaf\xf7\x8f\xc7\xbe\xea\xf8\x8f\x3b\xbf\xa5\x3a\x6b\x23\xcb\x66\x0e\xea\xb2\xd9\x6e\xcf\x5e\x0f\x02\x2a\xf8\x84\x9f\x21\x23\x81\x43\x1c\x86\xcf\xd1\xa2\x1d\x9c\x73\x4d\x60\x4a\xf6\x98\x59\x28\x85\x96\xce\x1f\x91\x23\x93\x0f\x5a\x7e\xf9\x69\x4d\xd2\xfb\xaa\x72\x90\x86\x2b\x36\xcd\xc2\x1e\xd0\x23\x48\x7b\x83\xda\x84\xaf\x2b\x21\xb4\x49\xd7\x48\x76\x05\x39\xce\x5b\x63\x0d\xd1\x55\x6d\x18\xb7\x2b\xcd\xb6\x77\x54\x6a\xa2\x05\x01\x60\xd0\x56\x3d\xd4\xd9\xde\x5d\xb4\xdf\x05\x31\xa0\x64\xb5\x77\xac\x2b\x30\xe2\x24\xea\x82\xe8\x61\xba\x0f\x1f\x0d\xe9\xe6\x13\x64\x3b\xe0\xc8\xbd\x4b\x8b\x52\x78\x4c\xb6\x4f\xde\x0b\x2c\xcc\xe8\x4e\x65\x69\x29\xf7\x38\xc7\x4b\x35\x1a\x42\x56\xc4\x4f\x93\x51\x92\x96\x33\x68\x72\x4b\x5d\xc3\x82\x77\x2f\xe7\x53\x5c\x50\x7a\x44\xc1\x5f\xfb\x9a\xf4\xb7\x15\xdb\x76\x2f\xcc\x92\x45\xbb\x86\x04\x19\x42\xad\xd3\x9a\xd6\xa1\x2e\x0d\x29\x71\x57\x54\x04\x38\x56\xc4\xe5\x56\xae\x4f\xfd\x0c\x38\x70\xa0\xbd\x94\xa4\x0c\x71\xc5\x74\xdc\xea\xa8\xc4\x0c\x28\x86\x1d\xe7\x88\xea\x2b\x1b\x84\x51\x38\x42\xa6\xcb\xb9\xb7\x73\x73\x4e\x31\xb5\x21\x92\xe4\x46\x84\x09\xdf\x38\xdc\xea\x7a\xd4\x2f\xaf\x5a\xf8\x5b\x37\x6a\x93\x42\x0d\x7a\x68\x15\x50\xd0\x90\x6b\x1d\xcf\x6e\x79\xad\x01\xa6\x1d\x0e\x47\xd6\x61\x30\xc4\x12\x2a\x42\xdd\xe3\x8d\x10\x86\x6c\x94\x2c\x53\x63\x2e\xe0\x61\x42\x58\x45\xcf\x87\x50\xf3\x56\x47\xc1\xa2\x8f\x55\xb3\x48\x2b\x2f\xf2\xd9\x81\x6c\xd1\x5f\xe8\xd4\xd1\x5f\xb8\xfc\x6d\xbf\x10\x5e\x01\x1d\xa3\x4a\x58\x5a\xc7\x12\x1f\x6a\xc7\x49\x98\xe1\xb0\xc1\xd4\xa0\x16\xc7\xd7\x6a\x66\xa2\xf0\x8d\x22\xec\xb5\x74\x5a\xc5\x57\xbf\xce\x80\x1f\xa7\x32\x48\xcf\x4f\xb4\x9e\x7f\x5e\xb6\x4c\xa7\x52\x97\xa3\x44\xbb\xf4\xb9\x3d\xa3\xe1\x0a\x79\x18\xdb\x38\x9f\x50\x14\x20\xe0\xf9\x44\x42\xe4\x63\x55\x7c\xf9\x45\xc7\x1b\x1d\x1b\x65\x76\xd2\x47\xe9\x3b\xbb\xaa\x27\xe4\x97\x63\x50\xac\xba\xa6\x1e\x87\xdf\xa9\x93\x49\x96\xab\xa9\x8c\x1f\xd9\x3e\xf3\x0f\x8d\x7d\x71\x89\x51\x82\x70\x1b\xae\xd5\x36\x0b\x15\xb0\x93\xb8\xf4\xdc\x70\xba\x22\x74\x7b\x67\xec\x71\x68\xef\xd4\x96\x30\x71\x7f\x17\xbd\x50\x94\xe9\x84\xd1\x96\x66\x11\x63\xb0\x97\xfc\x1b\xb0\x53\x3e\xd5\xf5\xe7\xd8\x20\x8c\x7b\xcc\xcc\xea\x71\x96\x4a\xed\xef\x4e\x2d\x8d\x72\x70\xae\x9d\xa7\xd6\x64\x45\x6a\x79\x9d\x38\x72\x90\xaf\x7c\xd3\xb1\x86\x28\x85\xdd\x24\xcb\xc2\xc5\x30\x0a\x73\xae\x33\x62\x0a\x91\x54\x76\xb2\x79\xba\x41\xcb\x75\x01\xaf\xd7\x84\x24\x0f\xce\xb5\x7b\x36\x48\xe2\x2c\x4f\x0b\xcf\x2e\x23\x94\x07\xe5\x27\xf9\xba\x66\x4f\x88\x85\xdd\x2c\xe1\xb4\x70\x64\xf6\xe5\x54\x08\xc8\xf2\x29\x5f\x7d\x89\x89\xba\x06\x53\xc8\xb6\x9c\x8e\x34\x69\xcf\x57\xa9\xf8\xfb\x2e\x97\x99\xe5\x6b\x7d\xe1\x7f\x91\x12\x50\xa5\xd4\x53\x9f\xeb\x57\xdb\xc3\xb0\x7c\x95\x0c\x21\x0e\x4e\xf3\xb3\x4a\x74\xf2\xac\x7b\x2a\x92\x77\x4e\xa5\xd9\x47\x92\xaa\xe5\xa7\xf8\xba\x16\x60\xcc\xce\x72\x1f\xa6\x4f\x91\xa0\xe7\x0b\x18\x6e\xbe\x1e\x3f\xa7\xbb\x27\x03\x4b\x6c\xc0\x19\xd1\x71\xb0\xd2\x36\xac\xae\x74\x40\x94\xb3\x26\x12\xdc\x8a\x3b\xe4\x73\x15\xb1\x45\x79\x6f\x17\x0c\x0d\x30\xef\xb7\x95\x12\xea\x3d\xc5\x9f\xf2\xdd\xb1\xaf\xcf\x7c\x36\x56\x62\xfb\xa7\x74\x78\xf0\x50\x4b\x16\x25\x69\x12\xe7\xc9\x94\x6e\x42\xde\xd4\xcc\x2f\xd8\xea\x18\x91\xdb\x1d\x55\x93\xdf\x04\x93\xad\x28\x5d\x3e\xa9\xe8\x86\xd3\x30\xe7\xe3\x4c\x10\x00\x7e\x35\x1e\xeb\x78\xa9\x8d\x4c\x34\x55\xa4\x4a\xec\x43\x30\x24\x6c\xa5\xf4\xbe\xdf\xd7\x52\xa2\x44\x9d\x09\x6f\x6b\xb8\xe0\xdb\x8a\x06\x6d\xc5\xc4\x3d\x1b\x93\xb8\x9d\xc7\xf9\x41\x39\x59\x78\xac\x1a\x4e\x9d\xac\x48\x57\xc2\x15\x49\x65\xe8\xc4\xad\xe4\x67\x1b\xce\x54\x82\xbf\x93\x61\x41\x8e\xfe\xc7\xf0\x7c\xf9\xc6\xbd\xed\x4a\x98\x15\x26\x82\x35\x11\x66\x5f\x6f\x38\x91\x12\x96\x44\xd0\xf6\x08\xb5\x74\x38\x8a\xf2\x64\x5b\x10\x66\x4c\x7c\x96\xaf\x5d\xa9\x29\x4e\xd2\x7c\xb0\x2a\x8d\xc8\x42\xff\xd0\x72\x7d\xda\x9f\x29\xaf\x23\xb5\x91\xc9\x6d\x8f\xa0\x80\xa2\x6f\xaf\x1a\x85\x41\xf2\x22\x0a\x2b\x3e\x3b\x52\x3f\xad\xa1\x57\x49\xf2\xd8\x2d\xa5\x3c\x74\x1c\x8b\x9c\x6f\xc6\x55\x91\xf4\xe1\xa4\x47\x69\xb2\xfa\x3f\xdf\x60\x07\xe0\xc4\xfe\x18\x5f\xc1\x37\x0e\x15\x68\x7b\x7d\xf8\x05\xdc\x5b\xa4\x0a\xab\xe7\x9b\x8a\xff\x41\x12\x2f\x59\x9f\x12\x60\x9c\x39\x2c\x95\x80\xce\x7d\x86\x6a\x94\x14\x71\x8f\x29\xcf\x50\x1d\x82\xe6\x03\x02\x59\xc8\x6a\xf1\xbf\xab\x3e\xe8\xe3\x4d\x12\x2e\xb6\x07\x23\x84\x69\x65\xef\x8c\x6f\x9a\xb4\x38\xc3\x38\x4f\xc3\x7e\x11\x32\x26\x06\x7e\x1c\xc8\x57\x50\x54\xbc\x32\x56\xe6\xbe\x5e\xb1\x3b\x38\xd7\xee\xa7\xd6\xe4\x13\x15\x0c\xad\x5f\x64\xff\x4e\xc9\x14\x9d\x54\x68\xed\x30\x48\x5a\x7a\x91\x57\x10\x47\x3e\xcf\x93\x26\x86\x7b\xe0\xb8\xdf\x01\xc1\x37\xf6\xee\x07\x63\x9f\x2e\xf8\x84\xce\x73\xf8\x91\x1f\x34\x34\x88\xbf\xda\x1e\x99\x90\x67\xc3\x91\xd5\x39\x6e\xda\xcd\xf1\x3e\xcf\x36\x91\x3c\xe1\xcb\xfc\xdc\x8d\xec\x78\xe8\xbe\xf2\x4d\x61\x46\x54\xb8\x50\xd6\xcc\x46\xa8\xfa\x9e\x12\x26\xbe\x45\xb3\x05\xf3\x39\xb5\xee\xa3\xc4\x0d\x8d\x21\xfb\x78\xec\x5b\x8d\x4f\x70\xe0\x22\x69\x1a\x1a\x7a\xfe\x11\x64\x30\x30\x95\xb7\x3a\x0a\x3d\xbc\xa9\x74\x38\x4b\x3f\xe0\xff\xe3\xeb\x4f\x63\x24\x39\xd3\xfc\x30\x9c\x9d\x55\x7d\x90\x6c\xce\xf0\x9e\x95\xfe\x1f\x94\xfb\xc7\x58\x94\x60\x6a\x20\xd8\x80\xb1\x5a\xc0\x88\x44\x55\xcd\x72\xba\xa0\x29\x16\xaa\x7b\x9b\x2b\xfa\x0b\xdf\x8c\x7c\x2b\x33\x58\x91\x11\xc9\x38\xaa\xba\xe8\x0f\xb6\x05\x41\x10\x0c\x7d\xb0\x24\xcb\x80\x60\x58\x90\x64\x59\xf2\x5a\xe7\x4a\xda\x63\x66\x77\x95\xb5\x1c\xce\x70\x66\x67\x76\x86\x6c\x92\x33\xbc\x86\xec\x66\xdf\x47\xf5\x7d\x1f\xd5\x46\x3c\xbf\xe7\x79\xdf\x27\x2b\xa2\xfd\x2d\xa2\xbb\x32\x33\x8e\xf7\x7d\xce\xdf\xf3\xfb\x1d\x7a\xdc\x43\xec\x79\x78\x03\xf9\xce\x26\x10\x8e\x42\xe2\x40\xcf\x02\xdd\x83\x1d\x9d\x6a\x9b\x0b\x88\xb4\xba\x7d\x91\x17\xf5\x8d\xb6\x69\xa4\x4e\x78\x60\x37\x09\x09\x2a\xd4\x10\x0a\xb0\x7e\x6a\xac\x4a\x25\xa7\x14\x17\x73\x37\x4b\x8b\x81\xcd\x76\xaa\xb8\x69\x93\x23\x32\xc4\x36\xac\x20\x24\x4b\x85\x12\x6f\xfe\x9f\xb1\x9f\x2c\xb8\xd5\x80\x7e\x6c\x2f\x47\x71\x5c\x59\x75\x57\xfb\xb9\xa4\xe4\xab\xd8\xcf\x0b\xef\x7e\xc3\xf4\x6d\x51\x66\xa2\xe8\x8f\x0c\x97\x55\x4e\xf8\xe4\x21\xb9\x46\x2e\xe5\x5c\x31\x09\xf4\x19\xb1\x09\x4e\xc3\xc4\x8e\x2c\x06\x9d\x90\xb9\xfc\x07\x4d\xb5\x75\x1b\x9f\x11\x7e\x30\xc0\x61\xea\xc4\x62\xa1\x19\x8e\xac\x29\x11\xa6\x09\x76\x4b\xd1\x99\x9c\x6d\x5c\xef\x26\x0b\x07\x70\x88\x30\xfd\x18\x62\xe5\xe3\x9a\xb9\x3f\xf0\x72\xbb\x48\x4b\xd4\x40\xb1\xfa\x4e\xa9\x52\xd0\xf7\x15\x4d\xdc\x97\x3e\x54\x1a\x99\x2c\x13\x13\x27\x28\x86\x09\x7c\x83\x4e\x5c\x8a\x34\x6e\x69\x6c\x18\xeb\x01\xf0\x89\x6a\xae\x98\x18\x3e\x54\x11\x87\x4c\x28\x7b\x6c\x77\x06\x2f\xbc\xd0\x1e\x46\x49\x4a\x01\x80\x07\xd2\x5d\xd3\x4d\xc0\x6b\x81\x8f\x64\xcb\xc4\x24\xd1\x10\x74\xa5\x3e\x0c\x3a\xa7\x44\x82\xcf\x05\x93\x18\xab\x64\x4a\x41\xd4\xbf\xa4\xc5\x88\x97\x79\x43\x61\xa3\xce\x28\x6c\xd4\x5a\x14\x0f\x6c\x3c\x44\xf6\xca\x8e\x8e\xfe\x54\x9c\x9e\x87\xf0\x74\xe3\x34\x5c\x31\x3d\x8b\x9f\x70\x4c\x2f\x8e\xc6\x08\x51\xbc\x70\x9d\x35\x94\xea\x0b\x6b\x86\x1a\x25\x0b\x7a\x22\x3e\xae\x91\x80\x54\x61\xff\xc0\x24\x2b\x79\x3f\x5a\x75\xf1\x24\xfa\x37\xcc\xa2\xce\x27\x81\x26\x24\x35\x99\xfd\xaa\xe2\xd5\xbd\x44\x8f\x00\x36\x65\x37\x95\x4d\x60\x39\xf6\x74\xa8\xa1\x23\x52\x52\xd5\x52\x42\x0e\xc3\x5c\x05\x12\x82\x68\x2e\x74\xc0\xa2\xd1\x5a\x60\xf5\x29\xd7\x04\x9a\x15\x11\x75\x90\xdf\x0b\xb3\x70\x6b\x76\x96\x63\x8b\xb3\x81\x6a\x92\x5d\xd1\x1a\x55\xa7\xc6\x8a\xc3\xf3\xda\x43\x95\xec\xbb\x99\xb5\x3d\xe6\x50\x5f\x74\xa2\x64\x5a\xa1\xac\x89\xd0\x23\xb7\x85\x0f\xc6\x61\xb8\xe1\xf2\xf8\xb8\x16\xc3\xcf\xce\xb6\x4d\x6f\x35\x0d\x55\x0c\x2f\x13\xcf\xbe\x9a\x75\x42\x41\xc7\x13\x33\x04\xf4\x52\x13\x0e\xb8\xcc\xd3\x13\x70\xb3\xce\x35\x2a\x08\x3b\x79\x18\x0e\xd1\xf1\x9d\xe0\x39\x05\x5b\xd8\xfe\xca\x1d\xe6\xc8\x35\x1f\x8f\x2b\xf1\x8e\x15\x9b\xa4\xf9\xc0\xb4\x54\x9b\xe8\x82\x1a\xce\xd7\x65\xbe\xae\xe9\xe7\xe0\x5c\xd6\x55\x1a\x54\x0d\x1e\xef\xf8\x12\xec\xf4\x46\x43\x94\x54\x59\x06\xe6\x9e\x9a\x9f\xe7\x20\xf0\x16\xe2\x0d\x24\x4e\x47\x94\x30\xe0\x23\x8a\xc3\xcb\x1e\x8a\xc0\x8c\x2a\xad\x3f\x4f\x59\xc0\x9d\x20\x2c\xe3\x6b\x4a\xed\xf6\x5a\x20\x3d\x36\xaf\xdc\x38\xa5\x31\x5b\x7f\xa4\x2b\x30\x97\x83\x89\x1c\x5c\xcc\xb9\x5d\x25\x29\x11\x4f\x04\x29\x0f\x1d\x11\xc2\xf4\x86\x5a\x3b\x3f\x6a\x80\x94\xef\x6f\x9b\x21\xb5\x8a\x40\xa2\xed\xdc\x8d\x27\x10\xb9\xa6\x05\x24\xcf\x37\x60\xc6\xdb\xab\x51\x58\x44\x43\x25\xa7\x8a\xd2\xa3\x80\x41\xfc\x6b\xcc\x4d\x9c\x0e\xb9\x9f\xed\x48\xed\xbc\xbc\xb5\x03\x2a\x5b\x93\xdb\x09\x86\xdc\xf7\x02\x95\x8c\xbd\xa7\xa8\x48\x46\x26\xb6\x79\x11\x25\x8c\xad\xf3\xda\x46\xd5\xd7\x8a\xb4\x91\x6f\xeb\x0c\x6d\x2f\x82\xae\x83\xeb\xa8\x73\xc0\xcf\x27\xaa\x0f\x55\x26\x28\x62\x30\xa2\x15\x25\xcb\x6b\x6a\x8c\xe6\x9a\xda\x1f\xe1\x9a\xd1\x1c\x49\xdb\x7c\xaf\x8e\xfb\xd7\x8a\x01\x61\x75\xa4\xab\x4d\x16\x0a\x20\x8b\x7f\x8d\xc7\x2e\x0c\x30\xad\xf9\xf9\x2d\x7a\xf8\xaf\x6e\x5d\x0a\x14\x57\x4f\xa0\xb0\x80\xbf\x80\x59\x11\xec\x22\xbd\x43\xec\x89\xfa\x70\xdd\xe2\xcb\xfb\xdb\x85\x89\xe2\x74\xbb\x8b\x54\xc3\x09\xc7\x55\x0a\xdb\x2b\xbb\x5d\xdb\x9b\xaa\xe2\x2a\xed\x80\x11\x3d\x1e\xd7\xe3\x62\xdf\xd1\x71\x74\x06\x14\x0c\xee\x0f\x7a\xc7\x18\xd5\x7d\x4f\x7b\xcd\x77\x9a\x48\x1f\x7f\xf5\x5b\x7f\x63\xf1\x5b\xdf\x5c\x20\xe0\x23\x6e\xe9\xd1\x8e\xaf\xd2\x7f\x80\xc7\x83\xe2\xd9\x4e\x9e\x50\x73\x4a\x20\xde\x1b\xec\xd8\xf0\x1a\x3f\x3b\xc0\xfd\x21\xfa\x13\xd5\xc5\xc0\x82\x1d\xc6\x98\x92\x4c\x08\x55\xd1\xa6\x9a\x42\xdb\xcf\x65\x85\xdb\x08\x09\xb0\x97\x76\xd7\x24\x15\x66\xe7\xda\x03\x1b\x4f\x74\x59\x59\xa4\x83\x4f\x6a\x60\xd2\xbf\xdc\x8e\xd3\x9c\xc7\x62\x38\x06\xa6\xbd\x22\xf1\x70\x03\x06\xae\x17\xe5\x43\xb3\xee\x84\x2f\xe0\x91\x31\x7f\xe3\xe0\xf4\x8e\x58\xff\xfc\xf8\x57\x1b\xe0\xab\x51\xb2\x9c\x19\xd4\xb6\x4a\x2c\xfe\x2d\x7a\xe9\x5b\xc7\x5d\x1d\xa8\x6f\xe2\x55\x93\x44\x6f\x22\x89\x77\xcc\xfc\x6a\x28\xdf\x2f\x8c\x22\x5d\x73\x32\x1f\x4d\xba\xa7\x3e\xc6\xce\xcc\x30\xca\xec\x9b\xad\xd6\xb7\xe7\x1c\x1f\x81\xe2\xde\xaa\xd7\x1f\xc8\x06\x13\xc5\x33\x7f\x3f\xd7\xca\xd5\x95\x5c\x54\xa3\x1b\x26\xe4\x31\x1b\xe9\xea\x29\x45\xa7\x0b\x35\x1c\xc1\xbe\x85\xf6\xb2\x8d\x0b\x24\xe8\xcc\xf1\x49\x1b\x4b\xf8\x3e\xc5\x1e\x0f\x6d\x61\xba\x69\x1c\xe5\x30\x6a\xcc\xbd\x11\x4c\x10\x71\x6c\x0f\x64\x90\x63\x17\x59\xd4\x2d\x0b\xf7\xb2\x90\xb1\x9e\x52\x84\x06\xd7\x95\xb2\xfd\x97\xaa\x12\x31\xb2\x49\x1e\xa5\x09\x4a\x99\x28\x16\xbf\xaf\x2a\xe4\xef\x93\x98\xdb\x25\x28\xbe\x5d\x52\xc8\xa6\xbc\x30\x19\xc1\x9a\x51\x20\xf8\xee\xd8\x1b\x8a\x73\x94\x12\x09\x9e\xb3\xa1\xa2\xbc\x6c\xe2\x90\xad\xb1\x20\x66\x54\xc4\x75\x45\x75\x5b\x33\x6a\xd2\xf1\xa4\x95\x7b\x72\x0e\xac\x76\x7e\x52\x8a\x28\x1b\x7e\x95\x6c\x21\x32\x9c\x2d\xd8\x42\x38\x13\x16\x78\x50\xd8\x65\x41\x9f\xdc\x44\xed\x1d\xef\xee\xcb\xc0\x0f\xfc\xfd\x1d\x64\xbc\x7c\x12\xf8\x54\xf8\x06\xbd\x3b\x86\x39\x92\x36\x0d\x62\xeb\x0b\x3a\xe4\x9f\xea\x28\xc6\x90\xa3\x63\x35\x9a\x81\x9a\x16\x7e\x0f\x65\x6c\x04\x8d\xef\x35\x2a\x0a\x8f\x52\x59\x91\xdc\x2a\x08\x3c\xe0\xb2\x5e\x82\x75\x98\xc0\x84\x79\x31\x64\x46\x57\x11\x70\xd4\xb1\x1f\x0b\x54\x85\xce\x94\xf7\x73\xc8\x5c\x5f\x88\x39\xd9\x00\xaf\x58\x6c\x9b\xd0\xf4\xec\xd0\xb6\xc8\xda\xe1\xe9\x1e\xa3\x3d\xc9\xc7\xb5\x8d\xb6\x6f\xa1\xdd\x35\x59\x18\x9b\xf5\x09\x99\xe5\x13\x9a\x90\xe7\x32\xa3\x78\x11\x73\xd4\x01\x96\x0b\x0b\xed\x7e\x66\x2a\x27\xd1\x52\x72\x79\x3c\x07\x21\x05\xb0\xa6\x90\x23\x2b\x93\x44\x08\x3e\x1d\x4c\xa7\xfa\x06\x2c\x85\x8f\xf1\x9a\xf0\x6a\x6e\xd4\xa6\xf8\xaa\x5c\x32\xb3\xcb\x99\xcd\x07\x2e\x7c\x84\xf5\x23\x1e\x29\x39\xee\xf8\x84\x21\x5d\x4b\x6c\x6f\x7a\x62\x8e\x49\x15\x56\xe9\x4d\x82\xce\xf6\xe3\xb1\x62\xdf\xfd\xb8\x3e\x49\xb0\xb4\xd8\x1e\x98\xd1\xc8\x32\x90\x1f\x70\x48\xc4\xcc\x7c\xdc\xd8\xd7\x88\xc8\xa0\xc4\x56\x69\x1f\x5f\x54\xf1\x79\xbd\xfd\xb5\x34\xd3\xa6\x80\x90\x7b\x05\x5a\x34\x51\x66\xd4\xe8\x21\x33\x9b\x64\xf0\x9c\x1f\x6a\xea\x0d\xa3\x84\x27\x55\x54\x31\x00\x0c\x26\xd2\xd8\xaa\x2f\xbc\xfd\xed\xcc\xe6\x36\x5b\xc5\x63\xf2\xd5\x77\xd5\xc3\xe6\x21\x3e\x58\x6e\x26\xb0\x14\xf2\xf2\x89\xc1\xde\xd7\xa9\x85\xe3\xcd\x1c\xb3\x04\xca\x48\xbe\x6f\x0c\x98\xb2\x18\x54\x59\x72\x64\xf3\x3d\xd5\x7e\xc7\xef\x5c\xc2\x6a\x47\xbc\xbd\xa8\xd1\xeb\xe0\x4c\xc2\x2e\xdd\xe4\xb5\xc9\x7f\x16\xf8\xc4\xf9\x7b\xb8\x34\x84\x29\x00\x9c\xb0\xae\xb0\x2b\x43\xc7\x65\x31\xb0\xa0\x70\x40\xc3\x8d\x39\x13\xf9\xa4\xc9\x71\x64\x69\x0e\x02\x4f\x58\x92\xeb\x78\x18\xc0\x81\xfd\x12\x37\xa8\x1b\x4d\xc8\xab\xa7\x3b\x0d\x75\xe2\xa1\xc9\xb2\x88\xc8\x1d\x55\x77\xbd\xe5\x59\xdd\x5d\xc7\x34\x2f\x93\x15\x84\x16\x58\x5b\xef\x05\x7e\x84\xe3\x3d\x4d\xfa\x15\x47\xfd\x41\x11\xe3\xf2\x10\x9a\xde\x50\xca\x37\xef\x07\xde\xa3\x33\x4a\x58\xd8\x49\xea\x21\xd8\x42\x3b\x5d\xb5\x19\x17\x22\x1c\x06\xdc\x79\xaf\x4d\x15\x05\x0c\xa2\xb8\x48\x93\x87\x37\x9a\xbd\x8f\x2a\x6c\xc2\xb5\x64\x2e\x27\x4c\xea\x9d\xb7\x1c\xb3\x0b\x17\x6b\x44\x15\xdd\x07\x95\x0b\x33\xfb\x38\x33\x02\xfe\x09\x79\xa2\xe3\xf1\xf7\xd0\xbd\x5b\xb5\x92\xb2\xcb\xac\xd3\x75\x8e\x15\x1c\x53\xb2\x97\x86\xb9\x58\xc7\x09\xcc\x01\x09\x82\x8d\x8e\x07\x86\xd6\x0c\x1f\x07\xbe\xaf\x17\xae\x98\x22\x4d\xd9\x3d\x20\x94\x47\x21\x86\x8f\x27\x11\x23\xcb\xc5\x13\x95\x5f\x46\xe4\xcc\x06\x07\x1b\xf3\x30\x17\x22\x60\x15\xae\xd2\x34\xda\x2d\xed\x23\xdf\x0b\x3c\xf2\xef\x0e\xd5\x87\xb0\x31\xbe\x24\x7c\xaa\xf2\x71\xaf\xfa\x26\x56\x65\x1d\x1d\x00\xd0\xf1\x6d\x4e\x81\xa1\x4d\x54\x54\xc9\xc3\x4a\x0c\x2a\x00\xb2\x6e\x04\xb5\x0e\x5a\x0b\x22\x41\xe7\xf7\x4c\xbd\xcd\x70\x70\x66\xae\x5d\xd8\x6a\x6b\xd9\xde\xb4\x6f\x57\xde\x0e\x14\x44\x05\x32\x21\xd8\x9c\x6f\x8f\x95\x98\xcf\x97\x2e\xac\xcb\xec\x30\x0a\x59\x41\x03\x9e\x5e\x82\x7d\xac\xfd\xdf\xd6\xac\xa3\x20\x06\x92\x0a\xcd\xe3\x6e\x83\xff\x7f\x61\x42\xa4\x5c\x58\x98\xa4\xef\x58\x22\xe1\x5d\x3f\x0f\x14\x73\xdd\xe7\xb5\xba\xc9\x6b\xaf\xb5\xe3\x68\xd9\xe6\xc5\x7a\x6c\x99\x42\x1c\xf6\xf8\x28\xbf\x3a\xd7\xc9\xf5\x92\x8f\x9b\x3a\xe2\xbd\xd7\x34\xe5\xb2\x5c\x66\x49\x24\x91\xb9\x07\xdf\xb8\x39\xdd\x46\xed\xaa\x3c\x8d\xed\x34\x95\xcf\x9d\xe6\xb3\x9b\xa0\x42\x37\x14\x86\xf2\x84\x52\x76\xf9\xe3\x06\xba\xcc\xfd\xdb\x1b\xd3\x6e\xd8\x79\x7e\x5e\x68\x24\xb5\xb3\xb9\xe5\xd6\x47\x5c\xb9\x19\x99\x73\x6f\xea\x13\x3e\x6c\x2b\x66\x65\x2c\x01\x8e\xa3\xed\xad\x9e\x17\x9f\x4c\x14\x69\x07\x29\x66\x5c\x1d\xe7\x9d\xe7\xbf\xab\x99\xaf\xa5\x99\xf6\x28\x8b\xc2\xc8\x66\x53\xbe\xbe\x7d\x16\x19\x36\x32\xd8\x9b\x60\xcd\x94\x74\xd0\x8d\x8f\x45\xab\xa9\x68\x03\xc2\xf8\xdc\x0a\x7c\xed\xfe\x96\x9a\x5c\x2d\xd2\x32\x64\xaa\x8f\x97\x3c\x8e\xd5\x63\x5a\x55\xad\x21\xb3\x51\x3f\x11\x04\x04\xa2\xd7\x77\xe9\x4f\xf9\xb8\x11\x89\x93\xd9\x37\x4a\xc5\x1d\x83\xe7\x8f\x6a\x23\x1f\xeb\x8b\xa9\xd6\x4d\xf5\x03\x73\x07\x5c\x6b\xa1\x32\x0a\x7c\xdc\xc8\xeb\x39\x34\x31\xee\xb3\x91\xb8\xbd\x5e\xdc\x59\x68\x17\x59\x29\x60\x5f\xb9\x84\xea\x85\xc8\xa5\xc9\x33\xcc\xd2\x74\xd9\x5d\x37\xb0\x6d\x98\xf9\xe6\x63\xf7\x87\x6b\xd6\x14\x24\x63\xec\x50\x28\x47\x54\x01\xe2\x6d\xfa\x0c\x96\xda\xde\xce\x04\x95\x17\x19\x29\x6d\x45\xb0\xf3\x6e\x8d\x5b\xaf\x2c\xca\x37\x35\xce\xee\xda\x24\x4c\xcb\xcc\xf4\x99\xed\x87\x69\xaa\xb0\xa8\x85\xb3\xca\x17\xc0\x4d\x58\xbd\x02\xdb\xdb\xe3\xe9\xdb\x8e\x4e\xd0\x7c\x2b\xd4\x17\xae\x09\xb5\x02\x40\xb3\xb0\xd1\xd0\x67\x43\x9e\xb1\x83\xfa\x6c\xa8\xc9\xff\x49\xa0\x28\x00\x77\x75\xdc\xb3\xe3\x34\x59\x57\xee\x78\x9e\x97\x4f\x6a\x61\xf4\xfc\x7c\x3b\x1f\x44\xa3\x75\x51\xe6\x97\x86\x20\xdd\x94\xd4\x02\x7c\x43\xb7\xca\xff\x45\x0c\x42\xfb\x5d\x71\xb5\x4d\x5c\x13\xa3\x28\x4d\xac\xcd\xf8\xaa\xd0\x3d\x65\x63\xc6\x27\x4d\xad\xaf\x6e\x16\x75\xc5\xa6\x4a\xb1\x58\x8d\x05\x9d\x74\x92\x38\x61\x9c\x16\x55\x00\x3f\xad\xf6\xd2\xb3\x94\x87\x21\xaa\xfa\xf3\x1d\x8f\x57\xff\x72\xec\xa1\x05\xe7\x6b\x76\x65\xee\x40\x7b\xd9\xf6\x6c\x46\x4a\x69\x53\x3e\x9d\xbd\xa6\x88\x0b\xc7\xb8\x70\x09\x8f\x24\xd3\xcf\xed\xc8\x20\xb9\x55\x48\x99\x23\x0a\x29\x73\xc4\x19\x09\x53\x14\x26\x1c\x58\xfa\x7e\x94\x8d\x30\xbc\x04\xa4\xe9\x27\x64\x66\xa5\xe0\xa7\xc6\x0b\xb3\x68\x58\xb9\xd0\xd9\x39\xcf\xd3\xe4\xfa\xcf\xe7\x55\x88\xb3\x62\x23\x0e\x71\xb4\x9c\x29\x1e\xc5\x09\x1d\x05\x37\x12\x6f\xf6\xec\xb2\x35\x2c\xae\x80\x25\xfd\x9f\xe8\xf3\x7c\x5c\x6b\xcc\xcf\xce\xb6\x07\x2b\x5f\x07\x10\x43\x68\xae\x77\x7c\xdd\x49\xb3\x29\x9c\xcc\x17\xaa\xda\x9a\x8f\x6c\x18\xd1\x53\x06\x0b\x15\xdc\xd3\x17\x7a\x51\x9f\xd0\x22\xb5\xd2\x59\x91\xf2\xf3\x57\x54\x1b\xbd\x1b\x21\x76\x94\x52\x08\x7d\x8c\x4f\x1a\x97\xe3\x72\x59\xb9\x48\x86\xa2\xb1\xa2\xe1\x58\x07\x85\x97\xf4\xe4\xe2\x9f\x35\x15\x3c\x56\x6d\xbc\x6a\xf9\x29\x89\x93\xd2\xce\xeb\x49\x4d\x6e\x92\xe7\x51\xa8\xb9\x0c\x34\xd9\xcb\x66\xf0\x28\x7f\x6b\x14\xf1\xfe\x10\x82\x6d\xba\x06\xa1\xde\x6e\xd8\x1f\xaf\xa7\x20\x49\x50\x4d\x34\xad\x1e\xe4\x6a\xe0\x59\x5a\x39\xc9\x6a\xd9\x2b\x20\xb7\x63\xf5\x69\xa2\xe8\x19\x9a\x6c\xa5\xa5\xd2\x12\x7e\x15\xb2\x84\x9e\x91\xe2\x56\x94\xf7\xec\xd0\x9a\x24\x95\x1a\x1e\xf7\x14\x14\x43\xd9\x45\x25\x65\xb9\x6c\x42\x16\x7f\xd8\xe5\xbb\x27\x80\x9b\x8b\x1d\xa3\x7b\xe6\x65\x84\xea\x34\xaa\x09\x8f\x6c\x78\xa1\x0a\x88\xcf\xc8\x5a\xf3\xd9\xcb\x1b\xa5\xcd\xab\xfd\xb7\x53\x09\xbe\xff\x5c\xed\x11\xa0\xee\x91\x91\x6f\xea\x56\xd3\x0e\x1a\x17\xe4\xff\x70\x49\x93\xed\x9b\xde\xb4\x37\x01\xc7\x75\x42\xff\x4f\xb5\x60\xff\x55\x1a\x8c\xc5\xf5\x6c\x05\x8f\x7b\xc0\x42\xa4\x79\x81\xce\xe9\xf1\x21\x4d\x60\xfb\x57\xf8\x1d\x8a\xde\xa5\x2f\x42\x9e\x6d\xa2\xf9\xb0\xc9\x72\x64\x63\x30\x5e\xe0\x4d\x7f\xae\x1b\xe6\x9f\x2b\xff\xf3\xba\x4d\x92\x68\x99\xd3\x53\x07\xf8\xab\xde\xe4\xc3\x00\x7f\x04\xe1\x15\x46\xb5\xea\x53\xac\xe9\xa7\x14\x16\xcf\xea\x59\xc1\xd8\x24\x16\x14\xd1\x80\x55\x5e\x42\x54\xc4\xea\xf3\x64\x34\x11\x5c\xff\xab\xf1\xe4\xec\x68\xe5\x3d\x44\xa3\x5e\x48\x25\x6c\x5e\x98\x6e\x1c\x09\x01\x9a\x1f\xd7\xa3\xa7\xc8\x27\xb5\x4a\x0a\x71\x60\xc7\xf1\xb6\x8e\xef\x0f\xc7\xfe\xcd\xfd\x50\x81\x6e\xfa\x99\x20\x65\xb0\x3e\xee\x68\x23\x73\x47\x59\xdb\xa1\x59\xb1\xe5\x08\xd7\x21\x1a\x58\x3e\x06\x39\xae\x41\xc3\xa6\xec\x59\x40\xc4\xa4\x86\x49\xef\x43\x8a\x9b\x92\xdd\xd9\x43\x6f\x94\x51\x1e\xb1\x66\xb7\x8c\x91\xe9\xc2\x55\x4d\xbe\x61\xae\x3d\x1a\xa4\x36\x89\x0e\xb5\x7c\x0e\xc8\xde\x9c\x4f\x5c\x2c\x94\xa7\xf1\xaa\x90\x14\xc1\x77\x5c\x52\x40\xae\x4b\x4d\x74\x04\x69\x18\x96\xac\x78\x2b\xc2\xa1\xfa\x6a\xaa\x1b\x92\x12\x91\xfc\xca\x72\x66\xfa\x51\x6c\x55\xf0\x73\x64\x82\xd3\x4c\xcd\xab\x47\x49\x8f\x0a\x73\x4b\x42\x06\x86\xa8\x06\x76\xf9\xe7\xb4\xe9\xc5\x0b\xef\xe1\x6f\x5f\xd1\xed\x0f\x44\x15\x7c\xac\x38\xef\x4d\x96\xd9\xbc\x98\x9e\xd4\x95\x73\x55\x33\x90\x69\x03\xa2\xc3\x10\x69\xc4\x51\x77\x55\x8b\xcd\xf6\xfb\x34\x81\xc8\x1d\x1f\xfa\x88\xeb\xfe\x78\x50\xd9\x55\x2e\x0c\xf1\x99\xf2\x39\xc3\x17\xba\xe9\xda\x94\xaf\xc6\x5e\xa3\x5b\xc3\xed\xbc\x3b\x81\xf7\xaa\x3d\xf7\x03\x2f\xb7\x63\x6b\xb2\x84\xf6\x2f\xd6\x34\x06\x82\xf9\xb8\x49\xfb\x1b\xbd\x64\x09\x85\x54\x9f\x6a\xce\xdd\xc2\x76\xf7\x70\xe0\x65\x96\x4e\xa3\xdf\x71\x4c\x9c\xae\x66\xf1\x2f\x6b\x66\xbf\x0a\x6f\x73\x53\x60\xc5\xab\xf1\x56\xa1\x44\xd8\x54\x3e\x6d\x94\xa5\xbd\x32\x2c\xbe\xaa\x98\xea\xef\x42\x73\x82\xb5\x82\xe9\x79\xc0\xc8\xfc\x47\x14\xe1\x1c\xc3\xed\xfc\xbc\xa4\xb3\xbf\x33\x56\x6a\x32\x2c\x6d\x29\x13\xc2\xd5\xb2\x01\x72\xe2\xc6\xa4\x18\x70\x95\xa6\xc2\x27\xa2\x6c\x01\x10\xcf\x51\x6a\x50\xe0\x61\x3c\x18\xfb\x1c\x80\x89\xdb\x19\xd9\x0b\x62\x5c\xfe\xf1\x06\x8c\xfa\xfe\xf6\x5a\xd4\xef\xc7\x90\x33\x51\x11\xa7\xf4\x81\xb8\x82\x02\xa7\x51\x37\xce\x84\x8c\x37\x45\x11\xb3\x74\x3e\xfa\xdc\x47\x14\x04\xfa\x88\x5a\x43\xa3\xc8\x86\x76\x97\x9e\x8c\x47\x29\x0a\x35\x8c\x2b\x63\x85\x69\x3e\xa6\x12\x72\x26\x66\x11\x9e\x7b\x65\x0b\xee\xb8\xa2\xa4\x89\xe3\x48\x72\x70\x99\xb2\xf5\x71\xe8\x47\xf8\x10\x78\x0b\xde\x6d\x0a\x2c\x46\x59\x94\x84\xb6\xa5\x95\x65\x54\xd5\xa3\x8e\x52\x9a\x9f\x6f\xf7\x63\x93\x27\x29\xa3\xc4\x01\xdc\xbe\x44\x71\x2c\x1f\x37\xfd\xcc\x30\x45\xed\xd4\xb3\xb8\xd2\xb2\x11\x46\xd7\xaf\x28\x6c\xad\x5d\xce\xe9\x72\x30\xff\x76\x4a\xf1\x3f\x9f\x52\xa9\xc9\xc0\x64\x26\xcf\xa7\xbc\x78\x24\x0b\x63\x0a\x6f\x7f\xcb\x4f\x89\xd6\x65\x3b\x96\x66\xda\x3d\x1b\x47\xab\x7e\xa3\x49\x80\x44\xab\x54\x42\xa7\x87\x55\x22\xd2\xb8\x27\x59\x11\xcb\x9c\x28\xaa\x81\x7f\xdb\x4c\xd4\x1d\xa6\xc3\xa1\x4d\x9c\xaf\xc5\x3e\xbb\x39\xf6\xf8\xf3\x9b\x81\x27\x0d\xe9\xa5\x69\xc6\xd4\x2c\x13\x4a\xa5\x48\x4a\x7e\x36\x41\x4f\xed\x0a\x8a\x66\xd5\x66\x49\x5a\xe6\x8a\xbf\xf8\x2d\x5a\x8f\x7c\xec\xca\x5c\xe1\x72\x11\x72\xf8\x89\x37\xc6\x4e\x8c\x4f\x94\x13\x0b\x4d\x1c\x75\xcb\x6c\x4a\xd3\xba\xfe\x6d\xa5\xec\xc9\xe9\x11\xeb\x9c\x36\xc9\xfb\xf7\xa2\x49\x48\x38\x43\x46\x85\x14\xa6\x81\x6f\xba\x1b\xf5\x72\x3d\x7c\xca\xf3\xf0\x32\x1f\x2d\x17\x57\x44\xfd\x41\x61\x1d\xaf\x2e\x9a\x86\x77\x34\x46\xf2\xce\x43\x8b\xba\x43\x93\x73\xe6\x26\xaa\xed\x2a\x40\xfc\xcf\x4d\x4a\xc0\xb9\xcd\x56\x2b\x5f\x48\xbf\x85\xa4\xfc\x63\x7a\x0b\x7c\xfc\x90\x6e\x53\x5e\x64\x91\x1f\x0c\x11\x8d\x6c\xff\xf6\x6e\x28\xb5\xa8\x68\x38\x4a\x49\x56\xad\xe5\x74\x6a\x80\x07\xe2\xe3\xc6\xba\x29\xba\xfc\xb2\xff\xb1\x11\xc0\xe3\x8f\x58\xa0\x45\xb0\x36\xd1\x17\x91\x24\x61\x39\x4e\x53\xc0\x4c\xf1\xca\x4f\x63\xf9\x72\xb1\x41\x13\xa2\x1e\x9f\x28\x42\x87\x65\xf1\x55\x3f\x95\x74\x2c\x50\xee\xe3\x04\x61\x21\xd0\x49\xe5\x38\x0b\x85\xc4\x3f\xd1\xf0\x0b\xae\x7c\x08\x0d\x31\xbd\x58\x51\xe6\xf4\xe4\x20\x27\x10\x58\xc2\x02\x9d\x52\x13\xaa\x4c\x51\x81\xff\xf8\x5e\x95\xdc\x6f\x5d\x22\x18\x1d\xd2\x8f\x3f\x54\x7a\x36\x77\xc8\x49\x48\xc1\xe1\x29\x57\x9b\x16\x01\x15\x3c\x30\x21\x67\xa9\x3e\x87\x8d\xf6\xd8\x84\x9a\xca\x76\x87\xfe\x62\xbb\x6b\xc2\x95\xc9\xf7\x79\x0d\x6b\x8e\x4f\x54\x4f\xab\x0a\xb9\x46\xd5\xf2\xf7\x6c\x47\x97\x02\x3f\x5c\x70\x69\xfc\x8c\x02\x15\x97\xf9\xa0\xfa\x6a\x18\x34\xb8\xed\xcb\x81\x12\xdd\xf8\x74\xec\x7b\x94\xc7\xb5\xd8\xac\x09\x57\x08\x96\xeb\x24\xb4\xab\xcf\x08\x73\x6e\x75\x2f\x88\x95\xfe\x91\x2e\xc6\x36\xc1\xb1\x16\xdb\xd6\x14\x42\xe1\xd9\xd4\xc2\xf1\x78\xac\x6e\x96\x12\x51\x29\xac\x82\x10\x02\xd2\x12\x12\x46\xc0\xed\xfb\x9a\x34\xe1\x0c\x0f\xb6\x20\xad\xba\x89\x2b\xe2\x93\x66\xf1\x47\x93\x79\x1e\x1e\x98\x0c\x96\x30\xe5\x93\xce\xf6\x1d\xfe\xed\xb9\x76\x94\xd8\xd5\xa8\x4a\x2e\xd0\x81\x70\xdc\x65\x8a\x15\xed\x79\xef\x45\xd2\xac\x88\xc2\x32\x2e\xca\xcc\xc4\x2d\xc5\x73\x72\x8a\x6b\x04\x42\x77\xe6\x5f\x6b\xd7\x64\x45\x6c\x8b\x62\x67\xf5\x8d\x9e\x50\xcf\x23\xfb\x01\x06\x77\xb4\x7b\x4b\x32\xa0\xfc\x31\x86\xb0\xe5\x23\x5a\x27\x2e\x4e\x93\x48\x7e\x5f\xea\xbc\x8a\xa4\xff\x5d\xe5\x1f\x13\x9b\x0b\xa4\x80\x73\x6a\xa5\x2a\xff\x91\x4b\xd7\xcb\x24\x4a\x0a\x9b\x51\x37\x18\xcf\x4f\xfa\x57\x2d\xcf\xe4\xaa\xa2\xbc\xbc\xcc\x96\x4d\xc8\x06\x4e\xba\xff\x2d\xa7\xc8\x74\xcc\x39\x8f\xb2\x30\x83\xa9\xd6\x37\x7f\xcb\x31\x68\xfa\xf1\xa4\x0f\x61\x46\x59\x8b\x59\x7d\xf9\xeb\x65\x5e\x44\xcb\xeb\x3b\x95\xa6\xe3\x47\x34\xf3\x8c\x8a\xfa\x1f\xc0\x2a\xf0\x49\xa0\x60\xfb\x0a\x97\xec\xd5\x72\x88\x69\x89\x1f\x01\x17\x8c\x26\xab\x47\x4d\x32\xe5\x79\x68\xb2\x49\xda\xf6\xb1\xf2\xfb\xf5\x91\x92\xb9\x03\xed\x2a\xa9\x59\x8d\x30\x3c\x34\x3f\xcf\x1d\xb0\x5d\x1b\x7e\xb6\x67\x57\xc7\x15\x25\x79\x05\x4d\x6b\x46\x2c\xc5\xf1\xb7\xbb\xe3\xdf\xd1\x1d\x9d\xc1\xff\x5c\xb3\x0d\xd9\x64\x7d\x67\x65\xcd\x24\x3b\xa8\x16\x18\x6c\xdd\xa7\xf4\x2a\x50\x92\xf9\x70\xec\x13\xb7\xdf\x27\xe3\x28\x99\x85\x0f\x8e\xe2\x34\xe9\xa5\xc9\x93\x7e\xd8\xeb\xd8\x58\x01\x6c\x5b\x1d\xc5\xba\x75\x15\x95\x17\x47\x36\xe0\xee\xee\xef\x23\xc8\xe7\x8f\x6c\x28\x12\x8a\xf7\xc8\xd6\x4b\xc4\x84\x7d\x82\x6d\xcc\x96\x9b\xbf\x99\x2e\x6e\xa2\x0c\x05\xf3\xc3\xee\x06\x8b\x10\x33\x7c\x02\x6a\xa3\xf7\xc8\x95\x9f\x40\xc3\xdd\x9a\xea\x72\x26\x8e\xed\x7a\xae\x5b\xad\xfc\x33\x22\xdd\xf6\x55\x35\x4f\xb2\x1c\x97\x87\x5a\x2d\x2d\x25\xb2\x20\x21\xe6\xb9\x09\xa4\xe5\x1b\xa5\x05\x5b\x16\xa2\x88\x4b\x4a\xbc\xe8\x1a\x69\x12\x82\x7e\xef\xe7\x63\xaf\x10\x8f\xfe\x15\x5e\xc3\xef\xd2\xc2\x46\x67\xf1\xfb\x81\x16\x3a\xf7\x04\x5e\xd1\xaa\x4d\xc0\xd4\xe9\x60\x19\x55\xaa\x03\xef\x79\x56\x51\xc0\x94\x7f\x8e\xca\x58\x42\xaf\x4b\x8f\x8d\x05\x9f\x37\x5a\xdf\x9e\x73\xb0\x55\x2d\x3e\x9e\x80\xa6\x90\x75\x10\xc7\x5e\x15\xf8\xc7\xaa\x5a\x64\x93\xd5\x88\xa0\x25\x13\x1a\xa2\xf4\xf2\x84\x22\x7d\xfb\x8e\x58\x9a\x69\x9b\x30\x2c\x33\x53\xd0\x6c\xf9\xc1\x19\x9f\xbb\xbb\x40\xfe\x42\xb0\x5d\x86\xe3\xc5\xb6\xc9\x57\x5a\x1e\x42\x8f\x06\xa5\x94\x0b\x9b\x20\x53\x85\xc9\x60\x5b\xb1\xf2\xee\x13\x44\x4b\x30\x7c\xd5\xbb\xe0\x62\x1f\x3d\x73\x27\x28\xe9\x69\x4f\x7f\xd6\xc0\xcc\xb5\xbf\x9d\x17\x65\xb8\x82\xfa\x07\x4f\xf3\xe2\x31\x3b\x7e\x0c\x05\xee\x53\x13\xdc\x79\x49\xba\x8e\xb6\x37\xe5\x9b\x7c\x3f\x50\x58\xbc\x2b\xb4\x0a\xb8\xf4\x1e\x3c\xab\x19\x4d\x07\x76\x68\x8a\x28\x04\xa4\x85\x61\x25\x74\xcd\x02\x31\x51\x6d\x16\x13\x65\x9c\xbd\x37\x15\x55\xb7\xdf\xcf\xaf\xb7\xd7\xac\xf1\xdd\x3e\x19\xf8\xf3\x90\x8a\x4f\x5c\x0d\xc7\xc6\x65\x4e\xdc\x2b\xbe\xa9\x4d\x5f\x2d\x0d\xee\xa6\xbc\x78\x60\x92\x5e\xb5\x32\xaa\xc5\x80\x52\xed\x26\xa2\x0a\x3e\x51\xcb\x28\x8c\x8a\xe8\x4d\x9b\xe4\xd3\xbe\xc4\x7b\x44\x0b\x64\x1e\xa1\xcd\x20\x43\x1c\xb4\xc8\x65\xba\xc3\xdf\x7d\x9e\x96\xfd\x41\x01\xfd\x1d\x36\x43\x44\x5d\x22\x04\xd3\x6a\xbc\x66\x2b\xd0\xca\x58\xb7\x75\x6d\xfb\x6e\x43\x7c\xbc\xd8\xce\xd7\xac\x1a\x56\x80\xeb\x3d\xa6\x46\x65\x8f\xb9\xc2\x79\xd7\x1a\x61\x1a\x60\x12\xed\x09\x42\x6d\xd7\xce\x89\xb2\x35\xb3\x2e\x92\x8d\x30\x34\xef\x07\x0a\xfd\xf6\x7e\x53\x4e\x53\x99\xf6\x29\x45\xbe\x0e\x8a\x33\x18\x8c\xbb\x04\x5a\x04\xbc\xb9\xfe\x42\x48\xa3\xe4\x8d\x32\x2d\x4c\x4b\x0d\x52\xa0\x5e\xc6\xc7\x6a\x6c\xce\xbc\x59\xd8\x50\x39\x39\x16\x65\x95\x27\xe4\xeb\x87\x43\x9b\x26\x76\xba\x7a\xca\x0c\x80\xa1\x2f\xa4\x38\xe5\xa3\x27\xa9\x83\x86\x48\xee\xc1\x58\xd5\x54\xea\xf5\xaa\xf9\xf9\x76\x1e\x66\x65\x11\x55\xb7\xa7\x86\xef\xc7\x7e\x48\x08\xe3\xd6\x6c\xf8\x1b\x05\x34\x1d\x4b\xb7\xa6\xb9\xbd\xc8\xf1\x17\x9f\xd5\x9a\xd2\xfb\x16\xa8\x20\x8d\xbe\x9d\x53\x4d\x77\x37\xce\x45\x0c\x9c\x3c\x68\x42\x4f\xd8\x43\x23\x5b\xa5\x02\x76\x4a\x8d\xeb\x21\x9a\x41\x09\x01\x38\x51\x14\x14\x8f\x56\x71\x15\x7d\xde\x69\x5c\x2d\x2c\x2c\xfe\x79\x45\x7b\xfb\xf6\x58\x55\x00\xf6\x76\x68\xa9\xa3\x22\x7d\x07\x65\x30\x6c\xe6\x53\x44\x47\x87\x70\xe9\xbe\x9e\xed\xf9\x9b\x8a\x7c\x82\xc9\x79\xd1\x2c\x06\x3b\x11\x2e\xef\x31\xf2\x06\x82\x19\xf0\x4d\x81\x93\x64\x85\x60\x82\xef\x91\x3a\x1f\x0a\x3e\xa7\x91\xca\x39\x51\x95\xa5\x45\x47\x72\x48\xa1\x28\x90\x5e\xf7\xc7\x4a\x02\xea\x16\xe5\x53\x98\x1d\x79\x92\x5a\x25\x32\x64\xad\x81\x73\xb7\xc6\x13\x00\x43\x0a\xdf\xf0\x65\x7b\x3b\x7e\xc7\xdf\xa4\xa2\x90\x50\xa2\x92\x3d\x91\xea\x15\x6d\x76\xb8\xf6\xf7\x94\x3d\x89\x86\xa3\x32\xce\xd1\xad\x5b\x9c\xe0\xcb\xc0\xe6\x42\xeb\x14\x9f\x3b\x5a\xa3\x7d\x27\xc1\xde\x28\xf5\x3a\x7a\x4a\x3a\x1b\x1d\x1d\xc0\x97\x78\x18\x8b\x57\x18\x10\x09\x9f\x34\x71\x7a\xc6\x76\xb9\x88\x72\xd4\xd9\x79\x02\x4c\x19\xe6\xbb\x35\xf7\x45\x1f\x31\x19\xc3\x3c\x61\x8b\x2f\x20\x06\xe0\x93\xf1\x73\xfe\x5e\x13\xc2\xec\x46\x49\x3f\x5e\x9f\x56\xb8\xd0\xdf\xa6\xe9\x5c\xac\xaa\x23\x8a\x8c\xe7\xc8\xd8\xa7\x30\xbf\xdd\xd4\xcc\x16\x06\x58\x2e\x6d\x34\xe1\xad\x9f\x52\x5a\x13\xb9\xc9\x0b\x9b\x4d\x7b\x3c\xf2\x75\x2c\x54\x87\xf0\xf0\x94\x3e\xc8\x04\x50\x51\xa8\x0f\xae\xbe\xd8\xee\x66\x76\xcd\x19\x59\x5c\x21\xd8\x98\xf8\x58\x35\x2e\xc8\x6f\x4d\x2b\x59\xfe\xa7\xc8\xda\x20\xbe\x82\x94\x2b\x96\xd8\x1d\x8d\xad\x6c\x54\xac\xf1\x2d\x24\xce\x70\xd0\x00\x02\x37\x06\x1f\x6f\x78\xd8\xcb\x30\xcd\xa0\x17\xbe\xa4\xbc\xec\xbe\x05\x3d\x1a\xc5\x11\xe0\xa8\x04\x89\x36\xe2\xed\xfb\x28\x04\x63\x6b\x3e\x43\x8a\x93\x1c\x07\x68\x31\x87\xef\x06\x4a\xbd\x7e\x27\xc6\xa7\xb0\x23\x1e\x47\xd1\x42\x0b\x8d\xc0\x4a\x3e\x41\xa9\x04\x16\xf3\xdf\xd3\xfa\xa1\xcf\x75\xbc\x7a\xc4\x19\x3d\x9b\xf0\x79\x53\xc3\x20\x1c\xd8\x21\xe4\x4c\xdc\xcc\x28\x86\xdc\x04\xd6\xae\x75\xc2\xaa\x24\x85\x08\x26\xaa\xeb\x93\x12\x6f\x6b\xe1\xe1\xaa\xe2\xd4\x24\xb4\x99\x23\x76\x60\x16\x50\x45\x05\xae\x9b\xbe\x66\x68\x93\xde\xd0\x26\x45\x3e\x45\xdb\x5d\xd6\x92\xef\xd8\x43\xde\x50\x10\xc5\xcf\x28\x71\x68\x29\x8f\xd2\x8a\x14\x19\x71\x7a\xf4\xcc\x36\x1a\xa8\x09\x1b\xc0\xd6\x90\x74\x5c\x56\x5a\xd6\xa1\xcd\x73\xc6\x65\x38\x92\x8f\x5f\x2a\x0e\xd6\x5f\xd6\x16\xd2\xd2\x4c\x3b\x34\xa3\xa8\x00\x8f\x19\x16\x92\x4c\xe0\xf9\x95\x59\x67\x9d\x7b\xed\xb5\x76\x94\x38\xc2\x2f\xd4\x23\x4e\x29\x49\xb7\x3a\x5f\xd6\x81\x97\xdb\xe9\xf2\x72\x3e\x48\x59\x44\x0a\xd5\xfa\x5b\x8a\xc4\x6f\x4b\x71\x43\x03\x93\x85\xec\xed\x5f\x35\x51\x33\xd8\x43\x61\x5c\x7a\x4a\x4c\x46\xb8\xd2\x9b\x17\xb4\xab\xa4\xa7\xbd\x28\x2f\x4c\x12\xf2\x70\x2e\xae\xef\x98\x1a\xce\x3d\xa3\xe4\x26\xde\x51\xeb\xa5\xf2\x91\x21\x85\x4f\x1a\x61\x7a\x5b\x61\xd0\x6f\x6b\xa6\xda\xea\xce\x72\x52\xdf\x45\x1f\xf8\x26\x97\x42\xb8\xf5\x07\xa3\x0f\x96\xb2\xcd\x40\xb5\x5a\xce\xc2\x1b\x4d\xa8\xec\xc3\x6b\xdc\x9e\xc8\xcc\xcc\xaa\x7d\xd6\x0f\xf4\xfd\xed\xe7\x3b\x5e\x7a\x64\xca\x13\x0a\x7d\xfb\x16\x65\x69\xd8\xaf\xac\xe3\xea\x5a\xd1\x95\xa3\xc2\x42\x7c\x8e\xcc\x04\xae\xe6\x01\x61\xc1\x84\x4e\x41\x4f\x9f\x1e\x47\x62\x80\x60\x68\xcf\x06\xdd\x81\xc2\xc8\xbe\xea\xdb\x50\xfb\x98\x68\xe2\xbf\x78\x66\x43\x51\xde\xdd\xa4\xe4\x08\x7b\xff\x3e\xf4\xd0\x1c\x8d\x97\x2f\x6a\x5d\x45\xaa\x2d\xde\xbf\xb2\xff\xe8\x87\x9d\xa4\x2a\x26\x9e\x05\x11\x2a\xba\x1a\x54\x21\x43\xf1\x58\x21\x0f\xc8\x39\xf0\xf1\x04\x2a\x0d\x19\x1b\xa2\x79\xb8\x81\xff\x15\x2f\x82\x4f\x9a\xc2\xd5\x2c\x0a\xc1\x79\x87\x87\xf0\xae\x16\xee\x78\x17\x4a\x8b\x28\x33\x44\x5d\x82\x4f\xbd\xc9\x55\x6b\x79\xb7\xfe\xc9\x6e\x36\x4d\x7f\x8c\xb2\x74\x39\x8a\xa1\xa0\x08\xea\x85\xff\x83\x9e\x1f\x57\x92\x55\x92\x77\xb2\x36\xf8\x2d\x25\xfc\x30\x1d\x8e\x4c\x66\xa7\xaa\x57\x2d\x11\x46\xf5\x08\xf0\x0c\x59\xa0\x14\x51\xd3\x07\xf5\x5e\xfb\x6c\xdb\xc4\x61\x3a\x48\x61\x34\x5d\xcb\xda\xcd\x4d\xd5\x39\xd2\xe6\x0e\xb4\x69\x74\x24\x5e\x27\xf9\x59\xe1\xd5\x6d\x69\xc5\x5c\x17\x19\xbc\xaf\x8a\xa5\x0e\xc2\xe1\xd8\xe1\xf9\xe2\x84\x8d\x57\xb1\x87\x46\xb1\x25\x2a\xc4\x2a\x50\x13\x25\x4c\xa5\x8a\xe9\xc0\x13\x26\x84\x9a\x5a\x64\xf3\x9d\x13\xa4\x38\x58\xba\x30\xcb\xac\xb5\x0a\x27\x76\x5b\x87\x97\x93\x34\x04\x6e\x7a\xb6\xd7\x97\x71\x5e\xac\x23\x5e\xa2\x92\xb0\xd1\x46\x90\x66\xf9\xf6\xf0\xe3\xe0\x4c\xdb\x14\x45\x66\x42\x28\x0a\x1d\xf4\x94\x07\x3a\xac\xf5\x2e\xd6\xda\x95\xc7\xaa\x38\x95\x27\x44\xe9\xd5\x61\xc5\x5c\x55\xae\xe5\x67\x81\x1a\xbe\x79\x44\x73\x44\xc3\x6a\xd2\x8a\x3c\xf0\x1c\xf9\x64\x17\x76\x2c\xcd\x38\xd5\x29\x7a\x36\x40\x91\x6d\x2a\xae\xe0\xdd\x4f\xd6\x86\xb8\x2b\x37\xd7\x4f\xd3\x5e\x62\x73\x24\xec\x1c\x40\x07\x4a\x16\xe6\xb4\xaa\xd5\x25\xdf\x18\x7e\x43\x71\x94\x5d\xd4\x5c\x4a\x17\x27\x90\xc8\x51\x1c\x3f\xaf\x58\x3b\xb7\xfc\xd4\xe5\x3f\x79\x6e\xa3\x8a\x8f\x85\xb7\x01\xef\x4e\x56\x05\x6d\x51\xa1\x17\x21\x03\x8f\xc7\x73\x5f\x57\x2a\xfe\x39\xde\x10\x0c\x1a\xab\xd2\xc1\xb5\xbe\x45\x63\xc0\xcc\xb5\xe2\xc0\x46\xb3\x73\xd2\xf0\xa1\x07\x8e\x40\x6b\x0f\xb1\x75\xbb\xee\xdc\x2b\x8e\x8a\xf2\x2c\x19\x1f\x56\x2a\xa0\xe4\x01\x71\x0f\x24\x5f\xd5\x5c\xa6\x90\x79\xec\x80\xe5\x43\x78\xfd\x08\x75\x9e\x90\x21\x5c\x19\x57\xef\x1a\x3e\xee\xa3\x86\xa2\xcf\x62\x7b\x68\xa2\x78\x4a\xb9\x84\x6b\xf4\x98\x30\x0c\xf6\xc9\x58\x89\x65\x9e\x53\x71\x5a\xb7\x5c\x7f\x6c\xa2\x49\x4f\x5f\x40\x4b\xf4\xc7\x4f\x76\xbc\xd6\xdd\x34\xe5\x31\xc2\x12\x4a\x17\x8c\xba\xd1\x23\xa4\xaa\x8b\x17\xf0\x3c\xf9\x03\x14\x16\x2e\xab\x12\xeb\x2f\xf0\xc0\x59\xeb\x14\xef\x45\x52\x54\x1f\x5c\xf6\xd2\x42\xc6\x37\x5f\x75\x4d\x10\x35\x42\xf8\xb1\x22\x27\xbd\xd1\x54\x5a\xa3\xf8\x27\x0b\x85\x83\xd1\xe1\xe2\x97\x9c\xaa\x94\xeb\x7c\xe6\x6b\xd6\x52\xe7\x13\x93\x04\x4e\x62\xcb\xb7\xd9\xbe\xa4\xdd\x8e\x42\xe1\xbf\xd7\xc3\x31\x9f\x2b\x0d\x08\xc7\xde\xd8\xf2\xc5\xcb\x0f\x95\xb9\xf9\xb0\x81\x08\x79\x7f\xbb\x10\x20\x38\xfe\xe8\xbe\x52\xed\xbd\xef\xae\xd0\xe4\xb9\x89\x62\x62\x87\x3b\x28\xca\x94\x7f\x42\x4f\x80\x8f\x9b\xd8\x28\x2c\xe5\x23\x09\x35\xc0\x10\xd8\x61\x26\x0a\xaf\x6a\xba\xa3\x90\x36\x77\xd5\x04\x6c\x68\x93\xc2\x66\xf9\x6e\xef\x67\x2f\x2a\xd9\x5a\x34\x69\x91\xda\xfe\x0b\x72\x32\x22\xf2\x47\xcf\x0e\x21\xc7\x69\x4d\xc6\x74\x5f\xe9\x32\xff\xb7\xb7\x26\x74\x73\xfb\x69\xac\x09\x36\x4e\x28\xe2\xf3\x13\xaa\x04\x1b\x25\xcc\x09\x25\x84\x2a\xf4\x02\xf8\x44\x29\xf6\x0c\x6c\xd6\x8d\x42\x8a\x20\x3d\x5c\x73\x12\x80\xd0\xc0\x6e\x33\xb0\x06\x78\x40\x98\xce\xab\x0a\xe8\x70\x55\x19\xd8\xbf\xf1\xf2\x6f\x62\xaa\x13\x1e\x89\x89\x96\xf8\xa4\x11\x0a\x38\x32\x59\x91\x78\x2e\x09\xc4\x77\xf7\xf5\x0c\xe9\x16\x1e\x0d\x3f\x4d\xdf\x54\x2d\x33\x6b\xca\x30\x33\x85\x5a\xba\x93\x0a\xfe\x0e\x79\x60\x32\xbb\xc7\xff\xd1\x1e\xe4\x49\xd8\x80\xad\x0d\x45\x72\x79\x52\xa9\xa0\x7f\x85\xa9\x29\x84\xc2\x53\xcb\xb7\xf9\x9c\x67\x4f\x67\x62\x98\x54\x9a\x45\xcb\xa6\x9b\x45\xe1\xb4\x47\x09\xb1\x91\x12\x46\xa6\x09\x2e\xa2\x96\x23\x0a\x7a\xa6\xf3\xd0\xc0\xe3\x4d\x9b\xc7\x66\x4d\xe9\x7c\x9c\xd5\x8f\xe5\xac\xea\xe8\x17\x65\x96\xa4\xab\x36\x9b\x52\x42\x71\x77\xb1\x4f\x51\x7d\x84\xd2\x1f\x1c\xc3\x67\x13\x9d\xf6\x81\xc9\x9f\xf5\xb5\xe2\xe3\x14\x9f\x3a\x3d\x20\x4f\xf9\x36\xb5\xe1\x69\x2b\xaf\xea\xe6\xc9\x57\x36\x54\xf9\xf6\x3e\x2c\x11\x8a\x3a\xb7\x61\xc2\xe0\xaa\x40\x2c\x8b\x2b\xff\x39\x99\x5c\x58\xcc\x4b\xa8\xd5\x4a\xf2\xed\x55\x2a\xae\x92\x13\xe1\x5a\x16\x3a\x47\x00\x17\xdc\xd4\xd3\x55\xc7\x90\x32\xa3\xf7\xf5\xab\x54\x11\x42\x31\xf0\x87\x81\xa6\x21\x53\x82\x5d\xbb\x41\x00\x83\x45\xf7\x7f\xba\xa5\x55\x26\x3d\x9b\x85\xd5\x33\xa4\x98\x48\x43\x00\x65\x0a\xb7\x5e\xf5\x5d\xa8\xd2\xac\xc8\x99\x52\x07\xbe\x5c\x5a\x7c\x28\xf8\x72\x61\xa1\x9d\x45\xfd\xd2\x96\x99\x42\x3b\x7e\x46\xe5\x2b\xe9\xea\x3e\x1d\x79\xb5\x00\x6b\x42\xcc\x10\x57\x37\x03\x57\x7c\x2b\xa8\x5e\x11\x1f\x4f\xc2\x94\x7a\xd5\x0a\xa8\xde\x06\x0a\x1e\x70\x9f\x8e\x2c\xb7\x7a\x19\x78\xb1\xa7\xdc\xa2\x0d\xcd\xaa\x35\x85\x9a\x85\xc5\x00\x1d\x1f\x2b\x0f\x68\x5e\x8f\xe8\xaf\x44\x49\x8c\x96\x06\x9f\x28\x53\xbf\x96\xd9\xbc\x20\xd4\x6c\xf5\x35\x42\x0c\x53\x7d\x90\x8f\x1b\x06\xbc\x16\xdb\xa6\x9f\x59\x3b\x14\x76\x30\xbc\xb3\xd3\x7a\xbc\xe4\x74\x03\xea\xa5\x9d\x66\x51\x3f\x4a\x54\xd1\x5d\x88\x98\xfd\x86\x39\xa9\x55\x34\x97\xab\x44\xc0\xf5\xb8\x76\x74\x3c\x00\x10\x31\x1e\x46\xe3\x8e\x37\x0a\x6b\xe7\xa3\xcc\x71\x26\xb8\xc1\x5d\x07\x05\x46\xe5\x19\x9b\xe3\x84\xf7\x4d\xfd\x7e\x66\x56\x4d\x01\xe0\x1f\xda\x14\xd7\xf4\x8c\x32\xea\x47\x42\x50\xd1\x30\x0c\x35\xca\xd2\x12\xf1\xbc\x28\x06\xb4\x1c\xcb\x84\xe7\x6d\x35\xbd\x5e\x66\x73\x47\xbd\x2b\x9b\xcf\xa3\xa4\xff\xf7\xb1\x32\xf5\xb7\x15\xb1\x57\xbe\x9e\xf4\x98\xdf\xbc\xa5\xe4\x79\x91\xbc\x4a\x92\xea\x43\x8f\x94\x34\x02\xf3\x9d\x2d\xc7\x55\xf8\xff\xdb\xf0\x44\xf8\x8f\xa0\x14\xed\x34\x4f\x04\x74\xb8\xfb\x99\x8e\x9f\xff\x3a\x3f\xe1\xe6\xa2\x2c\xc5\x14\x25\xb6\x18\x00\xf3\xc2\x40\xe5\x0d\xee\x1d\x6a\xcc\x21\xc5\x3a\x5d\x63\x2c\x59\x7c\x79\x7f\x7b\x84\x41\x08\x35\xed\xec\x46\x9f\xfd\xb4\xb2\x49\xfa\x3b\x95\x2c\xcb\x2e\x88\xcd\x88\x00\x52\x75\x23\x9c\x0a\x6b\x96\x9a\xcf\xe9\x39\x4a\x5b\xb4\x8e\x6e\x6d\x17\x69\x4a\xf1\xe4\x4b\x5b\x97\xd4\x64\xd8\x9d\xc0\x23\x91\x8f\xfb\xa9\xcf\x68\xd5\xee\xf1\xb5\xfe\xcb\x0a\xba\x0c\xb6\x77\x2c\xa7\x47\x37\x14\xbb\x2f\x58\xbd\xf0\xad\x6f\xe3\xca\x68\x01\x7e\xf2\x4c\xc7\x97\xde\xf6\xc0\xa8\xc1\x40\x6e\xba\x95\x61\xc3\x34\x49\x87\x91\x4c\x82\x2a\xd4\xe5\xfe\x09\xc9\x58\x24\x75\x3f\xd7\x1a\xcb\xf5\x88\x60\x76\xd6\x11\x42\xce\xb1\x1d\xb9\x0c\xeb\xcb\x27\x8d\x2d\x3e\x7b\x28\xb4\xa3\x62\xda\x17\x4a\x4f\x22\x53\x90\xa4\xbd\x7a\x02\x08\xe3\x4f\x92\x91\x06\x08\xa4\xd5\x51\xb2\x66\x83\x28\xb6\x5f\xa1\x9d\x87\x1e\xf6\x8e\x0e\x7d\x03\x98\xa0\x2e\x2b\xbd\xa1\x2b\x08\xb5\x26\xfa\x32\x8c\xd8\x84\xf5\x43\x69\xfc\x4f\xe1\x18\xd1\x8e\xfa\x84\xae\x00\xde\xe0\xee\x04\x9d\x04\xe2\x0a\xa7\xfe\xf7\xcd\xdf\xe2\x1b\xf8\x3d\x7a\xb5\x4e\x86\x42\x49\x8e\xa9\x99\xda\x7f\x8a\x81\x26\x94\x83\x41\x1a\xcd\xc5\x4a\x2f\xd8\x7a\x53\xf5\x51\xb9\xaf\x8c\x64\xf4\x8b\xa6\x72\x7f\x18\x5b\x43\xe5\xf6\xad\x23\x94\x71\x1d\x51\x7e\xa2\x6b\xe2\x22\x1a\xa6\x19\x2a\x84\x8e\xe1\x4b\x89\x01\x6b\x8f\x9f\xbc\x50\x3c\xad\x71\x3a\xb4\x0a\x61\x9e\xde\xa5\x44\x0c\xab\x73\x7a\x63\xb2\x63\xef\x0b\x33\x47\x02\x9f\x26\x3d\xf1\x0c\xb6\x3d\xe0\x43\x37\x50\xd8\x17\xe2\xaa\x6a\xe5\xc2\x5a\xde\x43\x74\xc7\x4b\x20\xf0\xe1\x71\x6b\xc3\x6f\xbc\xa7\x3b\x3e\x84\xfe\x01\x96\x09\x9a\xb1\x67\xb5\xce\x52\x6b\xa3\xf2\xaf\xb2\x7e\x68\x5d\x20\x14\x3b\xac\x86\x8a\xef\xd6\xcc\xc4\xec\x6c\xbb\x6b\xfa\x84\x90\x13\x03\xaa\x8c\x69\xad\xe8\x3a\x77\xa0\x9d\x95\xb1\xb3\xf9\x02\xa2\xac\x3e\xc2\xd0\xc1\xb1\xaf\xc8\x9c\xae\x6d\x96\xd7\x5e\x6b\xe7\x69\x9a\x4c\xfb\xac\xef\x14\x2d\x34\x20\x02\xe0\x7b\xf0\x30\x2e\x28\xdf\xf3\x59\xad\x01\x4f\x4e\x20\x4a\xb3\x48\x4d\xff\xed\xa0\x64\x9e\x8f\x3b\xdb\xef\x73\xee\x40\x7b\xb9\x07\x69\x3e\x04\xb8\xb7\xc6\x2a\xda\xbd\xd5\xa4\x37\x30\xa4\x86\xf4\x84\xbc\x0a\x82\x78\x59\xe4\x4a\x7e\x64\x60\x73\xfb\x2c\xfe\xd4\xa1\xf9\x5f\x51\x30\x2a\xc5\xfe\xfe\x9d\xb1\x42\x15\xbe\x1f\x68\x92\x3a\x32\xe8\x6e\x44\xd5\x93\x6f\xc0\x06\x20\x81\x79\x12\xf6\x19\xd5\x4d\xd4\x6a\xf0\xe9\x2b\x54\x75\x95\x26\x22\x11\x0e\x4d\x6f\xf8\xf9\xd7\x1b\x9a\xb1\xe0\x93\xc0\x83\xee\x11\x0e\x31\xb4\x09\x61\x27\x76\xf7\x53\x9d\x89\x54\xa8\x5a\x5e\x18\xc3\x84\x72\x17\xde\xdf\xb3\x1b\x0e\xe9\x80\x3a\xdb\x94\x02\x54\x8f\x55\xce\xf3\x20\xd0\x33\x54\x4f\x29\x05\xb4\x35\x9b\x2d\x97\x10\xd0\x77\x6a\x37\x1e\xd9\xc3\xd4\xae\xa2\x7d\x43\x43\x05\xb0\x5e\xf7\x50\xce\x75\xc2\x97\xd5\xc6\x80\x09\xb9\x8c\x02\x2b\x9f\x28\xa0\x9f\x2d\xb3\xb4\x67\xbb\x05\x12\x02\x85\x5d\x11\x92\xe2\xbb\x81\x5f\x76\xa7\x1d\x5e\x68\xbd\xba\xb1\xbd\x2d\x27\xda\x72\x7e\xec\x7b\x28\x8f\x13\xe3\xad\xd6\x66\x03\x71\xe4\x4d\x4f\x75\x51\x3e\xdf\x51\x45\xec\x9d\xc8\x7f\xd0\x9b\x7a\x64\x43\x11\x7b\x5c\xd4\xe4\xdb\x90\x0d\x72\x24\xad\xb5\xa1\x7b\xfc\xe2\x03\x05\x4c\x5c\x1b\xd8\xcc\x3e\xe1\x07\x14\x49\x6f\x64\x71\xeb\xf8\xd8\xd3\xb2\x71\x6d\x7d\xeb\xb8\xe6\x62\x06\x4f\x2f\x3e\xd3\xea\xe8\x1a\x15\xfd\xaa\xcc\x44\xd2\xaf\xa2\x5a\xfc\x6f\x54\xda\xb7\x17\xf7\x06\x07\x75\x99\x56\x09\xd3\x58\xe1\xb9\xc2\x9e\xbd\xe3\xc6\x25\x06\x65\xbf\xcf\xd5\x6a\x27\x50\x57\x7d\x01\x9f\x34\x8e\x90\x0e\x4d\xe2\xd5\xf3\x11\xe2\x33\x7f\x33\x9f\x78\x06\x30\x4a\x0c\x68\xd0\x95\xfe\x18\xef\xeb\x34\xd7\xf6\x14\x3f\xa9\x50\x3e\x3c\xd6\x51\xd0\x91\x1d\x0d\x65\xc9\x76\x66\xf3\x51\x9a\xf4\xf8\x9a\x9d\xdd\xaf\xae\x59\x90\x5a\xbe\x20\xbf\x1c\x25\x26\xa9\x32\x9f\x78\x9d\xc2\x5b\x84\x1e\x47\x03\x45\x07\x73\x57\x4d\xcc\x5c\x09\x7c\xf7\x66\x40\xfc\x01\xbb\x95\x44\xc0\x29\xa5\xf2\x80\xf4\xc6\x31\xfa\x2c\xbe\x2c\x85\xd8\xc3\xe4\x35\x10\xdd\x7e\x38\x56\xb8\x85\xc3\x63\xaf\xaf\x78\x44\xfd\x4e\xd7\x24\x89\xed\xed\x52\x23\xc7\x6f\xeb\x8c\xf6\x44\x65\x0e\xb6\xce\x4f\x32\x51\xcc\xcf\x6f\xf1\xc8\x10\x7f\x42\xb1\xba\x96\x49\x54\xe4\x8f\xd1\xca\x85\xd7\x78\x07\xcf\x17\x25\xa4\xa3\x81\xe2\x03\xa1\x6f\xbd\xff\x3f\x3e\x8f\x45\x8f\xe8\xf1\x2e\x25\xb4\xac\x27\x4a\xbb\x4f\xf0\xa9\x8a\x36\x6f\x0f\x15\x13\xc5\x33\xd0\xb3\x47\x83\xf2\x0b\x68\x76\xb0\x0b\x4f\xc1\xdb\x8b\x2f\xfe\x02\x77\xc5\x27\x7e\x7c\x3d\x4d\x0a\x13\x8a\x34\x06\x76\x11\x4f\x8b\xe2\x2b\xef\x07\xfe\x3b\x3c\x67\x5d\x37\x7d\xd3\xc6\x5c\x7d\x42\x4d\xf5\x08\x87\x45\x7c\xa6\x3a\x0e\x83\x32\xf1\xd9\x97\x23\xb6\x74\x53\xfb\x67\x6b\xe5\xc7\x03\x2f\xb7\x87\x26\x8e\xfa\xd5\xda\x59\x9f\x52\xa3\x10\x17\x68\xef\x32\x4c\x83\xbe\x42\x38\x66\x3c\x1c\x3a\x36\x24\x37\xc9\x74\x60\x58\x2d\xe7\x15\xf0\xfc\x3b\x13\x8c\x55\x7e\x1d\x24\xe9\xb0\xcc\x4c\x4b\xe9\x46\x9d\x56\x73\x4b\xa7\x55\x9d\x6c\x68\x49\x60\xc3\xc4\x34\x5f\x88\x5f\xb8\x41\x46\x03\x68\x92\xd3\x9a\x35\xc1\x91\x23\xe4\x65\x92\x89\x10\x0c\x33\xc0\x07\x3e\xf9\xba\xdc\x3c\x7a\xd7\x2d\xb3\x2e\x6b\x66\xc0\x8a\x7c\x3a\x56\xc4\x73\x9f\xba\xb7\x38\x4c\xb3\xa2\x6f\xfa\xe8\xe3\x22\x5b\xfd\xb9\xa2\x56\xbc\x32\xf6\xa5\x14\x1e\x4c\x94\x70\xa3\x8e\x32\x59\x6a\x87\xb1\x29\xf9\x4a\xe1\xac\x80\xb7\xe0\xe3\x1a\x65\xe0\xc1\x19\x99\xc9\x8b\x56\x5d\x2f\x1f\x2f\x09\xbd\x33\x3e\xae\x65\xe7\x84\x25\x8b\x92\xd0\x26\x85\xe8\xb1\xc1\x24\x81\xb9\x80\x8f\x9b\x58\x63\x12\xb3\xba\x4e\xed\x3a\xa4\x5f\x67\xf5\xb8\x3a\x72\x24\x49\x72\x74\x22\x99\xc6\xf9\x5e\x0f\x2b\x7b\xa6\xa3\x8c\xd6\xbd\x49\x31\x4d\x35\xb9\x75\x5e\xc9\x47\x01\x1a\x07\xd3\xfc\x93\xb1\x6a\x5e\xdf\x1c\x7b\xf0\xfd\x7f\x1c\xd7\xe9\x3e\xf8\x23\x81\x9a\x64\x63\x9c\x33\x3c\xc8\xee\x26\xdd\xd4\x68\x38\x8a\xa3\x30\x2a\x34\x48\x3c\xf0\xf0\x32\xdd\x79\x78\xe1\xd7\xfe\x9b\x29\x8d\x0e\xa4\xdf\x11\xea\xfb\xca\xa0\x70\x51\xac\x0e\x3c\x9b\x53\x70\x37\x6c\x60\x84\xc9\x4c\xd6\xc7\x27\xe3\xed\x44\xcf\x20\x79\x89\x92\x55\x9b\x17\xae\x24\x23\x93\x0a\xf4\xeb\x32\xa8\xa0\x4b\x4f\x51\x2c\x96\x56\x31\x02\xca\x83\xde\xd1\xf1\x53\xf6\xe0\xa7\x45\xb6\x80\x6e\x89\x70\xb9\x6b\x3e\x41\x87\x27\x18\x65\x36\x8c\xd2\x92\xd9\xb9\x1c\x24\xd1\xd1\xcc\xc1\x86\xe1\xdf\x3f\xd1\x08\xc2\x5f\x36\x89\x80\x2c\x9b\x43\x52\x25\x71\x7a\x64\xd5\x4a\xc1\x25\xec\xec\x28\x65\x8d\xf3\x4a\x58\x3b\x2f\x4c\x61\x9f\xf2\xef\xea\x3e\x2d\x16\x00\x70\xde\x21\xe7\x23\x34\x9a\xca\x10\x5e\x19\xab\x4a\x1c\x2f\x16\x58\x91\x3f\x0a\xd4\xcd\x7c\xa9\x39\x21\x4e\xb0\xfb\x96\xee\x8d\xdf\x62\x3c\xdb\x04\x87\xf7\xd6\x04\x50\x99\xee\x00\xcb\x7b\x4f\x47\x4d\xbb\xde\x19\x7b\xe8\xc7\x7f\x52\xac\x94\x3f\x41\xab\x53\xc0\x48\x3e\x66\x1c\xa6\x49\x91\x59\x0c\x87\x08\x39\x35\xe6\x22\xf8\x58\xfd\x6d\xcf\x16\xf4\xce\x5b\xde\x7b\xa2\x19\xcf\xc7\x4d\x43\xe7\xbf\x3a\xb7\xef\xa5\x7d\x07\xf6\xef\x54\x0d\x73\xa6\xd2\x43\xd7\x73\x6b\xec\xb1\xc3\x0f\x02\x5d\x97\xa8\xd6\xb9\x88\xcf\x68\x22\xdf\xde\x63\xd5\x2d\xca\x64\xa1\x77\xaf\xd7\xc7\xad\xbf\xbe\x9f\xad\x22\x90\x2e\xc2\x03\x58\xbd\x2c\xd7\x34\xab\xae\x03\xcf\x07\x74\x74\x78\x71\xf7\x94\xf6\xf2\x6d\x54\x14\x5c\x9c\xe7\x09\x5f\xf7\x6e\x28\x7e\xbb\xca\xa1\xc5\x3c\xf3\x81\x87\xcf\x4d\x24\x3e\xa9\x4d\x77\xbd\xf6\x5a\xbb\x5b\xbe\xf9\xe6\xba\xd2\x81\x65\x45\x5c\xd1\xca\xd8\xeb\x0a\xb4\x45\x38\xd8\xe5\xe7\x3b\x80\x3d\x40\x5a\x3c\xdd\xf1\x15\xd9\x13\x5a\xd7\xf6\x82\xee\xa7\x33\xa4\x5a\xb0\x9c\x0d\x13\xb3\x61\x1c\x0d\xbb\x1c\x47\x22\xa1\xc1\x3c\x97\xa6\x32\x12\xe5\x22\x45\xdf\x73\x5c\xb3\xc3\xa6\x79\x41\x70\xbb\xca\x40\xa2\x10\x7a\x1d\x13\x1a\x52\x53\xf4\xa2\xfc\x5f\x04\xad\xdf\xfc\x96\x7b\x6b\x4e\x11\xdf\xe0\x1b\x5a\x8e\xa7\xb7\x35\x99\x96\xd1\xaa\xe4\xac\x0e\x6f\x42\x5e\x8b\x84\x2e\x51\x52\xb0\x02\xda\x4b\xbc\x85\x20\xe6\x07\x53\xb1\xab\xe3\x9b\x68\x8f\x6c\x78\xe7\xdd\x8d\xa3\x21\x48\x73\x90\x52\x4e\x6f\x78\x1d\x85\x2f\x94\x24\xe6\xee\x4e\x03\xa0\xab\x4c\xd6\x48\x59\xd9\xcd\x3e\x49\x38\xe5\xab\x86\x17\x6b\xc8\x12\x42\x50\xa6\x45\xda\xcf\xcc\x68\x10\x85\x53\x1e\x15\xf7\x3d\xdc\x18\x5e\xef\x2d\x35\x2c\x58\xe7\xd4\xd9\x57\xbd\xb7\xb4\xec\xe5\x13\x6c\x31\x0a\x16\x76\x51\x6b\x03\x46\x71\x5a\x00\x30\xe5\xf4\x89\x55\xec\x47\xcf\x59\x29\xa8\xf8\x79\x66\x25\x6e\x79\x4e\x49\x1a\x9f\xad\x59\x57\x1a\xbb\x4b\x51\x2e\x59\xf4\x0c\x4e\x4b\x33\x7c\x03\xd7\x94\x22\xc9\x8e\xce\x57\x15\x5f\xd9\x3a\x21\xce\x7d\x4f\xe6\x62\xa0\x26\x37\x2f\xaa\xd1\xf6\x7e\x69\xf3\x82\x62\x03\xa4\xed\x68\x48\xc2\xff\x31\x4d\x21\x02\xc1\xdb\x4d\x33\x56\x45\x66\x92\x3c\x72\x44\x4a\xf0\xe8\x80\xd5\xf0\xb1\x1f\xfb\x22\x8a\x83\xdd\x3c\xf4\x29\xb0\x9d\xdf\xf8\x95\x4e\x65\x76\x51\xec\x3b\x3c\xd6\x33\xd9\x30\xf5\xb0\x31\xe0\x52\x46\xd2\xcb\x0e\x13\x29\xe9\xd4\x46\x03\x6b\x67\x92\xf2\xf5\x00\xdb\x09\x16\x54\x3e\x6e\xec\x9d\x86\x69\x12\xa6\x2e\xaa\x67\xe9\x53\x0e\xd0\x61\x46\x8f\x4c\x80\x6e\xc6\x13\xcc\xa7\xab\x55\x4c\xb6\xcb\xcf\x9d\x1e\x0b\xd4\x6d\x1c\x83\xd5\x70\x95\x59\x0f\xad\x0a\x3c\xaa\x61\x33\xf0\xdc\x90\x9b\x8d\xe3\xe7\xdd\x28\x05\x8b\x3d\x9a\x62\xa2\xa4\xe4\x4b\x7e\xe7\xd4\x35\x91\x7a\x5f\x9a\x49\x84\xe2\x20\xaa\xd5\x1d\xf0\x49\x83\x54\xcb\x4b\xed\x28\x33\xf2\x19\xa5\xac\xec\x4e\x9c\xf9\x8c\xa3\xd5\x88\x3d\x3e\x02\xbd\x5f\x8c\xfd\xa8\xda\x75\x78\x1f\x79\xdc\x4f\x2b\x66\x00\x9a\x0d\x9a\x9c\xf8\x86\x94\xb0\x88\xe2\x6c\xf7\x6f\xfb\x16\xda\xd6\x64\x09\x71\x88\xcc\xcf\xcb\xbb\x38\xaf\x7a\xe6\x10\x87\x65\x1c\x00\x56\x8c\xcc\x1b\x3e\xee\x4a\x06\x49\x7f\x17\xfd\x24\x6b\x72\xc0\x55\x8b\xe0\x4b\xb5\x36\x50\x0e\x3b\x83\x68\x09\x85\x89\x93\x0a\x85\xf0\x9e\xae\x23\xdf\x0d\xbc\x05\x48\x52\x5a\xfa\xb4\xb5\xe0\xa3\x8f\x8e\xbd\x0e\xc9\xd1\x5a\x04\xbf\x34\xb3\xd4\x26\xa2\x4c\xb3\x5c\x50\x4f\xd4\x4f\xce\xf9\xa8\x64\xd3\x5d\x79\x16\x85\x66\xca\x27\x55\x1c\xa7\x22\xfc\xbb\x17\x4c\x12\xb4\x79\xfc\x82\x59\x79\x33\xdd\xe5\x55\xec\x37\x03\x35\x96\xfa\x43\xbc\x1c\x3e\x19\xab\x56\x3a\xf7\xa7\xe4\xa4\xba\x34\xf9\x7c\x03\x96\x2e\xb6\x49\xbf\x18\x80\x0a\x01\xb5\x3f\x90\xb9\xf0\x71\x53\x0e\xd2\x2f\xe3\xe5\x96\xaa\x57\x23\xa7\xe5\xe3\xe0\x19\xf7\x4c\xd3\xcc\x24\xaf\xdb\x61\x99\xf4\x5a\x0a\x30\xcc\xef\x86\x4f\x14\x50\x22\x2e\x87\x48\x5d\xd1\xa1\xbe\xa1\x70\x0b\x20\xb3\x14\xba\xad\x09\x0d\x20\x93\x10\xf5\x30\xa7\xbb\x58\xe5\xd8\x96\x67\x10\x3a\x8a\xdd\x9e\xd0\xc1\x52\x1c\x80\x3b\x01\x57\x10\x29\x67\x82\x6a\xf0\x17\x8c\xbd\x60\x7e\x7d\xe8\xff\xdb\x73\x6d\x1b\x47\xc3\x28\x31\x50\xe4\xdc\x42\xb0\xb6\x75\xc9\x05\xe7\x66\x34\xa2\x7c\x72\x4a\x8d\x42\x7e\x3a\xf6\xc5\xa3\x29\x04\x41\xb8\x8c\x47\x9a\xe4\x4c\xba\xa6\x6b\x89\xad\x0d\x5f\x01\xb7\xc1\x79\xac\x14\x78\x71\x5f\x52\xa1\x79\x5a\x55\xa0\x32\xdb\x35\x71\x9c\x63\x51\xc3\xc9\x9f\x21\x3b\xc3\xc7\x93\xb1\xad\x2d\x4c\xb6\xbe\x9b\xec\xdd\x04\xa5\x37\x96\xf2\xc7\x14\x32\x8a\x1c\x4d\xf5\x5c\xa4\x68\xac\x4a\x46\x9b\xaa\x4a\xf1\x31\xc2\x1b\xe9\xf9\x3f\x4c\x2f\x27\x8c\x8a\x28\x4c\xb3\xd1\x94\x92\x44\xc6\xdb\x41\x18\xfa\x63\x5d\xbc\xb9\xda\x00\x84\x6a\xd3\xcc\xda\x74\xeb\xdb\x22\xd8\x79\x7b\x42\x4d\xc1\x53\x8f\x32\x43\x1d\x12\xc5\x8d\xb1\x20\x38\xf3\x95\xf5\x2c\x0d\x57\xac\xa3\x4f\x95\xbe\x97\xe2\xa0\xbf\x01\x3b\x03\xa3\x73\x51\x61\x0a\xba\x66\x65\x05\x14\xc3\x12\x2c\x30\x2a\x90\x4f\xd4\x13\x5e\x37\x43\x13\x85\x83\xa8\xe5\x13\xfc\x4b\xaa\xa7\x79\x49\x35\x11\xd6\xa2\x55\x9b\x53\x2b\x9e\x79\x8e\xc8\x26\xa3\x46\x8b\xd6\x88\x20\x7b\x1a\xf8\x87\x32\x3b\x4c\x19\xf8\xc9\xd7\x4b\xbf\x22\xd7\xde\x10\x69\x9b\x6e\xba\x8a\x1e\xbc\xab\xea\x3b\x84\xec\xf7\x35\x5a\xe9\xd4\x43\x69\x3c\x8a\x41\x66\xed\xce\x2a\xc1\xa0\xdd\xf2\x9d\x67\x69\xbf\x22\xb4\xbd\x4f\x6f\x13\xbd\xa9\x4d\x3d\x0c\x76\x9f\x56\x8b\x10\x20\xfb\x38\xc6\xe6\xa3\x0c\x9c\xb1\xd8\xac\xc7\xd4\xe4\xec\x31\xa5\x29\xd4\x4d\x15\xb6\xc1\xb1\xfe\x38\x11\xd4\x23\xe3\xbd\xfe\x2b\x7b\xc0\x92\x22\x49\x3a\xa7\xc4\x8f\xce\x35\x12\x12\x65\x36\x4c\x33\x26\xc5\x77\xec\xbc\x0b\x0b\xae\x78\xae\x60\xdd\xbd\xd7\x4b\x9a\xec\xaf\xae\x17\xc1\x33\xec\x27\x1f\x2b\x0c\x7f\x3f\x36\xc3\x34\x13\x5a\x18\x09\x48\x27\x68\xab\xea\xc9\xc7\x62\x3b\x8f\xe2\x55\x83\x5a\x20\x4a\x26\x7f\xa6\xc8\xf5\x4e\x07\x6a\x99\x1e\x69\xc2\x4a\xaf\x99\xac\x67\x22\xf0\xfd\x20\x36\x63\xae\x74\x3e\x51\xf7\x32\x2c\xe3\x2c\x4d\x2c\x7c\x81\xa3\x86\xf0\xf4\x7b\x37\x27\xc0\x09\x45\xc2\x35\x43\x29\x28\xd0\x95\xc8\xa0\xc7\x57\xbc\x0d\xcc\xd2\x55\xc4\x54\x70\xc7\xf7\x74\x99\xff\x27\xaa\x63\xff\xea\x67\x64\x9c\x98\x2e\x05\xdd\x55\x74\x7f\x4f\xd2\x4a\xc1\xf6\x7e\xba\x23\xdd\x7b\xd0\x5b\x57\x31\x2f\x45\x14\x28\x48\x33\x36\x59\x7a\x6f\x1e\xe9\x78\xb5\x36\xa4\xe6\x34\x1e\x8a\x22\xcd\x12\xbb\xce\x2a\x4c\x68\x65\x72\xdb\x0d\x0f\xe9\x06\x85\x9d\xb8\xfc\x2f\xc7\x5e\x05\xab\x4c\xec\x70\x14\xa7\xeb\x43\x9b\x14\xd3\xaa\xf0\x7d\x51\xb5\x4e\xb5\x08\xfb\x54\x47\x45\x5a\xf5\x78\x77\x7e\xbe\x6d\xfb\x42\x43\x8e\xb4\x75\x87\x4a\x61\x77\x6c\x3c\xad\xa9\xc0\x0a\x1b\x16\x69\x46\x0d\x5b\xac\x05\x8c\xa8\xf1\x71\x93\x8c\x01\x8a\x56\x3e\x9a\x64\xf8\x05\x96\xa0\x60\x31\x1a\x18\xeb\x56\x92\x74\x2d\x21\x88\x02\x82\xa8\x1f\x51\x07\x4f\x38\x1e\xb4\xb6\xa3\xc2\x65\xdc\x6d\xca\xc8\xba\x6a\x58\x1a\x6b\x96\x23\x21\x3e\x69\x62\x3c\x36\xbd\x9e\x98\x66\xe0\x68\x3f\x52\xec\xae\xff\x24\x50\xd4\x4c\x9f\x28\x22\xbc\x9e\xcd\x47\x51\x61\x1f\xa5\x55\xe4\xb4\xc9\xe6\x0e\x38\x80\x3e\x5d\x03\x1a\x7f\xc4\xb3\xb8\x75\x04\x03\x2a\xa2\xef\x4b\x97\x05\x6c\xd8\x5d\xba\x47\x54\x0b\xae\xab\x8c\x97\x9b\xf6\x70\xc4\x8f\xd4\xa4\x02\x68\xf3\x16\x99\xb5\xae\xc0\xe8\x18\xa4\x3c\xdf\xfd\x64\x34\xb3\x1c\xaf\xef\x9c\x80\x60\x39\x55\xa3\xd6\x86\xaf\x72\xde\x19\xfb\x79\x8d\x3f\x0e\x94\x57\xbb\xa3\x98\x3e\xba\x26\xcb\x6c\x9c\x93\x5d\x82\x2b\x05\x7f\x0f\x1f\x6f\xc3\x19\xad\x2b\x5a\xbd\x4b\x78\x25\xd8\x42\x0f\x90\x01\x89\x52\x5e\x03\x5c\x6f\x22\x15\xe0\x26\x9f\x1e\x51\x78\xa7\x16\x3b\x57\x4e\xbb\x1b\x47\x7d\x02\x56\x09\xca\x55\x69\x01\xec\x97\x21\xc4\x89\xd9\xb6\xfa\xb0\xe3\x5a\x14\x2f\x13\x6d\x58\x75\xb9\x32\xd7\xac\xc8\x75\x4e\x37\xb0\xed\x11\xbd\x4a\x4b\x55\x11\x10\xbc\xf2\x71\x93\xa2\xcb\x28\x4b\x47\x36\x76\x34\xf3\x88\xd9\x99\xde\x8a\x4f\x94\x24\x46\x94\x65\xc4\x48\x4c\x62\x21\xae\x0d\xff\x73\x5a\x41\x82\xee\xac\x2f\x94\x2a\xfe\x4a\x47\x69\xbc\xae\xb4\x90\x58\x88\x4a\x06\xb3\xb6\x7f\xe8\xc5\xf6\x20\x2d\x73\x3b\x48\x63\xde\x1c\x8e\xc3\xcf\x35\x2f\x6e\x07\x8a\xb7\xb9\x2e\xf5\xf8\x97\xda\x26\x0f\xcd\xa8\xa5\x25\x42\x38\x4a\x96\xf6\xe2\xf6\xc7\xb1\x34\xb3\xbf\xda\x59\x69\xcc\x31\x2f\x43\x64\x8e\x29\x2a\x9b\x63\x4a\x81\xcd\x14\x85\x4d\x7a\x26\x09\xd1\x9e\x01\xec\x05\xc6\x54\x08\x59\xe9\xd2\x85\xaa\xb5\xe5\x44\xdd\x6e\x3c\xd4\x5a\xdb\x38\xb7\xd4\xe0\x9e\x6a\xfd\xe6\xb7\x04\xd9\xa2\x52\xbf\x07\xba\xd5\x50\x1f\x0c\xde\xb7\xd0\x1e\x44\xdd\x14\xfe\x50\xe4\xe8\x14\x75\xda\x7b\x6a\xb6\x6b\x2d\xcd\xb2\xf5\x47\xab\xc8\xd2\x51\xfa\x7b\x7a\xff\xb1\xba\xf2\x8b\xd8\x24\x30\x49\x1b\x70\x69\xc0\x29\x1c\x51\x85\x2e\xcc\x38\xc0\xbd\x5d\x03\x64\x01\x1f\x7f\x07\x97\x2c\xe4\x0c\x0d\x6e\x21\x8f\xa3\x11\x16\xad\xd4\x97\x7c\x5b\xeb\xac\x6a\xe9\xe6\x45\xd9\x8b\x52\xa6\x37\x74\x01\x7a\x65\xe9\xd0\xf5\xba\x4e\x9f\x63\xde\xc3\xc0\x97\x8a\xee\xc2\x92\xb9\xce\x4d\x75\x39\xfc\xf1\x26\xba\x97\xd0\x24\xab\x86\xfd\x94\xeb\xb5\xb8\x9e\xe4\xb1\xe0\x31\x99\x76\xfc\x8b\xdd\x96\x06\xc5\xab\x7c\xec\xea\x44\x7f\x2a\x4b\xd7\xbe\xa2\xda\x0e\x17\x50\xe2\x42\xb4\x75\x02\x26\x41\x9a\xd2\x64\xd0\x25\xdb\x51\x0d\x8d\x33\x6a\x8a\x92\x83\x70\x57\x11\x9e\x3b\xc0\x9e\xeb\x32\x61\x8f\x25\xd1\x06\xa0\x04\x15\x8b\x3f\x55\x82\x42\x20\x3a\x74\xe0\x5c\x47\x77\x79\x13\x4e\x83\x87\x60\x35\x21\x6f\x66\xbb\x69\x32\xe5\x87\x31\x36\x55\x97\xf7\xe7\x9a\xd2\xee\x9a\x7b\x36\x6f\x76\xbb\x4a\x96\xf0\xbc\x66\x37\x6f\x74\x83\xf9\x20\xcd\x50\xdd\x43\x4c\xd2\x52\x91\xc1\xe3\x1b\x8a\xc6\xe7\x6a\x63\x96\x6f\xca\xa4\x57\x59\xf9\x6d\xaf\xdf\x29\x3e\x55\xeb\x17\x18\xa3\x7f\xdb\x38\xcd\x3f\x34\x49\xb9\x6c\xc2\xa2\xcc\x44\x11\x41\xc2\x1b\x7a\x26\x12\xf7\x28\x7e\xe5\xbf\xf6\xd7\xa6\xd4\xeb\xf9\x90\xda\x0f\xe8\x71\xdd\x53\x3a\xd9\x37\x9b\x98\x67\x56\x53\x97\x8d\xb9\xe6\x85\x12\x09\x51\x63\x40\x37\xd5\xe2\x8f\xcd\x5a\xce\xe3\xc6\x92\x8e\xea\xdc\x54\x01\x75\x87\x36\x8b\x6c\x79\x68\x3b\x39\xf8\xa2\x23\x07\x57\x6c\x5c\xb6\x5f\x45\x77\x3b\x3d\x54\xe3\x03\x6c\x5d\x80\xa9\x18\xd0\x85\x7a\x01\x28\x09\x00\x24\xbb\xa3\x6b\x74\xd7\x15\xcc\x29\xb3\xb1\x35\xb9\xc5\xe4\x88\x30\xc5\xab\xe1\x8b\x7a\x07\x82\xc4\xa1\xd3\x11\x73\x76\x2a\x91\x43\xa7\x78\xd8\x48\xd9\x96\x17\xd6\x93\x6a\x8a\x13\x55\xd5\xaf\x3a\x05\xf9\xdc\x81\x76\xb7\x8c\x57\xa6\x54\x9f\x12\xf5\x5d\x78\xff\x07\x6a\xc5\x5c\xa8\xc9\x14\xd2\x1c\x74\x91\x99\x34\xeb\x45\x89\xc9\xa2\x78\xbd\xa5\xd1\xa2\x40\x44\xc9\xb4\xff\x43\x85\x45\xac\xe9\xad\xe3\xc5\x0b\xd7\x62\xf5\x9b\xe8\x3f\xb2\x96\x23\x0c\x68\x5d\x45\xed\x85\x17\xda\xa3\x34\x2b\x32\xb3\x8e\x04\x4b\x72\x3d\x32\x18\x92\xec\x35\x25\x58\x3d\x13\xc5\xeb\x98\xde\xc4\xfa\xc4\x8f\xf2\x31\xbd\x53\xe6\xd8\x0c\x26\x92\xbc\xdf\x78\xc5\x59\xa8\x06\x79\x5e\x55\xfc\xaa\xe2\x00\x57\xfb\x52\x16\x0b\x2f\x80\xc3\xd5\x24\xa5\x52\x12\x45\x44\xd5\x4f\x3a\x11\x81\xa5\x19\x4f\xb3\xb8\x4f\x82\x83\x2b\x6a\xd2\x3e\xb7\x49\x11\x0d\x5d\x67\x07\xad\x52\x4c\x6c\xb1\xc0\x06\xdd\x03\x2a\x85\xa7\x55\xa2\x5d\x0c\xd2\x9c\x91\xc3\x08\x4d\xae\x29\xd5\xa9\x1d\xe8\x2e\xc1\xa4\x33\x01\x22\x36\xe0\x57\x3a\x6a\x34\xf1\x9e\xe2\x66\xb9\x1e\xf8\x81\x5c\xae\x55\xc2\xa3\x30\x0b\xc3\x04\xe7\x98\x50\xab\xd1\xcb\x76\x63\x1e\xfb\x24\x00\x78\x7c\xc3\x45\x42\x3f\x7f\x86\x04\x38\x64\xcc\xd1\x33\x15\x8c\x06\x51\x9c\xe6\xe9\x88\xab\x97\xf8\x2d\x14\x55\xf8\xb8\xb6\x48\x08\x0c\x9f\x45\x43\x21\x7f\x45\x4e\xf7\x96\x02\xd3\xbf\xd5\x04\xec\x5e\x33\x09\xd7\xad\x11\x75\x9f\x50\x11\xf8\xa6\x62\x10\x3a\xaa\xe9\x99\xea\x9c\x88\x07\x89\xb8\x2b\x1d\x8e\xe2\x28\x1f\x90\x01\x40\x25\x6e\x53\x09\xc3\x6d\x3a\xb0\xe1\xc0\x52\x33\xe2\xe0\x0c\x73\x31\xed\xd8\xf0\xe5\xa2\xaf\x50\x13\x8e\xb6\xe2\xff\xfc\x17\x3a\x9e\xd6\xf2\x73\xcd\xe7\x7c\x5a\x27\xef\x75\xca\xa0\x7d\x0b\x34\xc0\x38\x92\x8c\x6c\xeb\x3c\xf0\x5d\xaa\x22\x90\x76\xf3\xc2\x84\x31\xcb\x12\x3a\x6c\xe3\xac\xb7\x21\x52\xeb\x1c\x18\x8d\x75\x42\xc3\x04\x69\x30\x1f\x2b\x6e\xa4\x22\x2b\x8b\xc1\xb4\x42\x32\x9e\xd7\xf2\x41\xcc\x4e\x80\x1d\xfb\x05\xaa\x88\x7c\x32\xde\xce\x69\xb6\x6f\xa1\x6d\x86\x2d\xcd\x4f\xc4\xd4\x6c\xa2\xf1\xf8\x35\xaf\x55\xc7\xba\x7a\x10\x0b\xd9\x4b\xb9\x9e\x2b\x37\xba\x65\x7b\x46\xb9\xfb\x33\x14\x38\x88\x46\x36\x7e\x44\x4b\x52\x23\xbd\x39\xa5\xc5\x51\x0e\x13\xf4\x16\x13\x02\x0f\x02\xb5\x1d\xb1\x60\x10\xdd\x5c\x19\xab\xa6\xf9\xfb\xb8\x5e\xac\xbd\xc7\x3b\xcf\xf2\x8d\xbd\x5e\x66\x51\x3e\xca\xca\x9e\x25\x4a\x68\x47\x85\xb4\xa7\xa3\x1a\x07\x7b\x36\xbc\xbb\xfd\xf6\x81\x83\xea\xcf\xde\xd6\xfd\x85\xb7\xbd\x5e\x56\x56\x56\x5e\x41\x4b\xb9\x7d\xa0\xd8\x61\xee\xd3\x32\x14\x28\x17\x7d\x83\xb0\x48\xc9\x6b\x4e\xbb\x85\x89\x12\xdb\xdb\x59\x3d\x26\xc7\x63\xe9\x78\x27\x37\xc7\x6a\xdc\x6c\x37\x15\x01\x51\xcc\xff\x48\x63\xf5\xea\xd8\x2b\xea\x8b\xd9\xa2\x90\xf9\x2c\x57\xfc\x70\xfd\x51\x56\x81\x82\xf1\xbf\x31\x56\x3c\x23\x83\x2c\xca\x8b\x88\xb1\x62\x48\x5a\xcf\x20\x50\xe3\x93\xc0\x37\x54\xf2\x28\x81\x73\xd0\x83\x76\x92\xa2\x3d\xa7\x7c\x74\x6e\xb3\x55\x18\xe3\x96\xd7\x28\xe5\x82\xb8\x2c\x68\x5f\x6c\xc8\xa2\x6e\xb7\xfa\x53\x95\xb0\x71\x60\x20\xb2\xb6\x5f\x55\x8a\xba\xab\x51\x82\x57\x8a\xd6\x2c\xa7\x1f\x7c\xd2\xa4\xf3\x99\xa4\x49\x99\x08\x93\x0a\x9e\x00\xea\x42\x7c\xbc\xf1\xac\xc2\x60\xf6\x6c\x96\x87\x29\xa7\xc5\xfb\x9d\x6c\x51\xcb\xd1\x77\xfe\x89\xf2\x00\x79\x5c\x0e\x47\xf4\xb5\x08\x6a\x01\x2b\xe1\x63\xd7\xef\x1d\x45\xfd\xbc\x80\xbd\x94\x78\xb1\xe5\x66\xc2\xbf\x9c\x98\xb1\xb7\x79\xf1\x35\xc5\xa5\xf5\x89\x9e\x38\x39\x87\xbd\xec\xfc\x93\x9b\x65\xda\xc1\x63\xa5\x70\x73\x5c\x24\x43\x30\x3a\xd5\xf1\xc5\xfc\xaf\x74\xc8\x0a\x89\xb4\x9b\xe7\x1b\xdf\xb9\xa1\x8a\x39\x3f\x85\xab\xc2\xee\xba\x4d\x5b\x18\xd1\xd9\x2f\x69\x88\x10\x51\xfd\x19\x00\x67\x99\x4c\x2d\xf0\x8a\x76\xb7\x02\x2f\x3d\xfd\x25\xb2\x10\x18\x5c\x80\x6f\x10\x8d\x1e\xd7\xc0\x6b\x16\xcf\x21\x23\xbb\xf2\xd4\x06\x81\xfd\x85\xcc\x92\x3c\x86\x23\xf6\xae\xd6\x2f\x50\x7b\x3f\x70\x13\x48\x23\x93\x30\xc9\x5f\xf5\xf5\x68\x8a\x72\x33\x8f\x4f\x1c\x5e\xba\x6b\x92\x15\x9b\x01\x1d\x24\x3c\xe2\x13\x63\xe7\x78\x88\x8e\x65\xd4\xcb\xc6\x1f\x55\x23\xef\xad\x8e\xa6\x54\xec\xe6\x51\x2f\xb2\xd0\x02\x72\x84\x7f\x8e\x99\x13\x86\x91\x73\x54\x45\xfe\xfc\x4e\x0d\xb1\x51\xc5\x9b\x51\x52\xd8\x3e\x4b\x31\x29\x22\xd0\x73\x8a\x34\xec\x9c\x8a\xd6\x8b\xcc\x10\x88\xc0\xc9\x80\x7d\x57\x31\x9e\xbe\x45\x3e\x46\x46\xe2\xe8\xdb\xa4\x02\x55\x5d\x1e\xec\xda\x07\x58\x5c\x8a\x38\xdd\x3d\xec\xc6\x9e\x78\x3e\x4a\x0b\x45\x35\x0e\x6a\x26\xa9\x5c\xd6\x22\xb8\xb9\x36\xa2\xb1\xb5\xa8\x67\x15\x02\xe5\xae\x1a\x53\xd9\x50\xc9\xfd\xfd\x5a\xd6\x45\xcc\x76\x66\x48\x9b\xfd\xe0\x8c\x53\x9d\xac\x3e\x22\x6a\x94\xcf\x2b\xc2\x91\x7e\x12\x2d\x47\xa1\x49\x8a\x78\x7d\x77\x6d\x2c\xd5\xcd\xc3\x39\xc9\xb5\x7b\x81\x9a\x33\xfb\x77\x6a\x9e\x9e\xe4\x16\x96\xb6\x4e\x6b\xa4\xf9\xa6\x02\xeb\x75\xe3\x34\x5c\x99\xf6\x80\xa9\x9b\xba\x25\x73\x11\x63\x1f\xfc\x3f\xb4\x2f\x04\x5e\xe4\x55\x0e\x14\xeb\x62\x63\x32\xd2\xc0\xa9\xb0\x5c\x39\x9e\xcc\xb8\x32\xa1\x2b\x48\x3a\x7a\xc3\x53\xb5\xe7\x57\xf9\xf6\xde\xaa\x11\xff\xe7\x9a\x59\xb3\x73\xae\x99\xe5\x86\x57\x4d\x34\xb2\xd1\x94\x1f\x46\x81\x4f\x42\x25\xff\xb0\xd6\xde\xba\xd6\xb0\x32\x5e\x25\x60\x0e\x15\x4a\x91\x7f\x23\x3f\xe5\x63\x17\x8e\xbd\x9e\x0e\xdc\x14\x10\x72\x03\x46\x92\xf0\x49\xcd\x72\x4b\x52\x33\xb0\x19\x3c\xae\xf4\x9e\x51\x77\x40\x75\xe0\xb1\x0e\x59\x0c\xc7\x2f\xe2\x4b\x99\x37\x14\xe0\x62\x64\x8b\x2c\x8d\x6d\x39\x54\x18\x82\xd7\xc8\x56\x03\xc6\xc2\x2f\x51\x34\x12\x7d\xfa\xba\x62\xe3\x38\xed\xf7\xe9\x7d\xbb\xf9\x01\xb7\x80\xc1\x35\x29\x14\xe3\xb4\xa0\x84\x63\x7c\xfb\x4b\x9c\x9f\xd7\xac\x76\x74\x3b\x28\x1d\x5d\x54\x63\x80\x75\x72\xc8\x85\x85\x76\x91\x59\xe8\x9b\xbc\xca\x1e\x03\x94\x9b\x7c\xdc\x50\xa2\x5d\x6c\xaf\x42\x47\xfd\x55\x06\x21\x6c\x2a\x12\x4b\x74\x74\x61\x7a\x8f\xe9\xde\xf0\x54\xa7\x89\x30\x2d\xb3\x3d\x6b\x87\x2d\xcf\x64\x71\x42\x89\x45\x9f\x50\xe5\x0a\x6b\x06\x54\x50\x44\xc2\xbe\x53\xf5\x2f\xf9\xa5\x00\x41\x7a\x6f\x42\xab\xa8\x0a\x58\xf6\xa8\x7e\xd3\x19\xfd\xfe\xde\xa6\xdb\x84\x0d\xe3\x31\x1b\x94\x06\x5a\x1d\xdf\x4d\xd2\x25\x6e\x28\xa8\xc0\x71\x5d\x1f\x2b\xb4\xa1\x06\x49\xa4\x45\xba\x53\x45\xf5\x67\xf4\xa4\xd0\x79\x3d\x6f\x71\x46\x65\xee\x7b\xd4\xed\x1c\x7d\xa8\x96\x46\x51\x66\x09\x8f\xd6\x30\xe3\x9d\xd6\x90\x39\xe3\xb0\x2c\x5d\xd3\x5d\xdf\xa5\x4a\xb5\x9a\x96\xe5\x53\x22\xad\x84\x5b\x7e\x57\xe1\x55\x19\x7e\x84\x1d\xf9\x96\x1e\x3d\x7d\x77\x22\x7e\x48\xd7\x4d\x13\x72\x0b\x09\x15\x03\x3a\x00\x47\x6b\x6d\x34\xd0\x44\x86\xa6\x1b\x25\x16\x56\x9e\x65\xfd\x26\x24\xfe\x26\xe8\x80\xf2\x91\x1a\xe4\xc1\xdf\xf1\xb1\x9a\xa5\x2a\xd2\x35\x56\xf2\x42\x8b\xe5\x5d\x4d\xe4\xf9\x6e\x43\xf3\x78\xb1\xf2\x33\x99\x00\xd0\x60\xb8\x45\xe6\x8e\xc9\x72\x71\x1b\x32\x5b\xd5\x04\xb0\xc9\xcc\xba\x0a\x53\xcf\xaa\x30\xf5\xac\xa2\x3e\x8a\x23\x9b\x53\xbb\x08\x41\xcd\x26\x95\x24\x5c\x57\xc3\x15\xac\xd0\x56\x45\xb1\x18\xf3\x10\xa8\xad\x1c\x57\xcb\xaa\x97\x1e\x42\x05\x04\xeb\xf5\xb3\xb1\x67\xa3\x38\xab\xc8\x5c\x6f\xaa\x09\x83\x8f\xe9\xe7\x84\xe0\xae\x2e\x63\xd0\xa6\xc6\x6f\x4f\xcf\x95\xe8\xce\xdd\x47\xe3\x27\xbc\xf7\xb3\x36\xdf\x43\x0f\x05\x63\x5c\x32\xa6\xc5\x67\xf4\xa3\x48\x57\x18\x35\xce\xc5\x37\x3d\xb0\x07\x59\x06\xa4\xe1\xd3\xc0\x79\xf3\x63\xc1\xd2\x93\x67\xe4\x93\x81\x5e\x19\xae\xd0\x0a\x70\x79\xbc\xcf\xe9\x1b\xa5\xfd\x51\xa1\x91\x5b\x12\x82\x47\x5a\xfd\xc2\xf0\xa8\x8b\xda\x44\x6a\xe6\xc6\x9f\x0f\x2b\xf1\xe6\xc3\x4d\x73\xac\xcb\x76\xcd\xe6\x45\x8b\x62\x46\xa7\xfa\xe0\xcd\xb3\x02\x12\x0c\x4d\xb6\x62\xab\x64\x9b\x76\x21\x87\x94\x81\x1a\x59\xbe\x8b\xc8\x15\x45\x59\x74\x2c\xe1\x6d\x1e\xd9\xf0\xf3\xbd\xd7\x91\x9f\xc2\x81\xbc\x53\x5b\xc9\xaf\x2c\xcd\xb4\xbb\x29\x72\x15\x57\x49\xfa\x2e\x5d\x91\xc4\x6b\xdb\x6f\x62\x76\xb6\x3d\x4a\xe3\x28\x64\x21\x26\xec\xef\x47\x54\x04\xff\x48\x6d\xcf\xce\xce\xb6\xab\x00\x2b\x61\x5a\x6f\xd4\x5f\x7f\xa9\x2b\xbc\x97\xf1\x92\x81\xcd\xbf\x55\x63\x35\x5f\x58\x68\xe7\xe9\x74\x75\x57\x78\x4e\x57\x11\x2d\x3a\xea\x9b\xa5\x19\xf6\x4d\xbf\xd0\x3d\x81\x13\x63\x2f\xb8\xcf\x24\x00\x21\x28\x49\x67\x67\x39\x49\xbd\xa9\x70\xf1\x37\x95\x4e\x45\x98\x26\x9c\x1c\xae\x5a\x70\x1d\xc1\x93\xdd\x50\xc5\xab\xa9\x8e\x72\x77\x00\x2f\x60\x29\xa3\x1d\xc4\x1f\x40\x1d\x19\xfb\x95\xb5\xf9\x11\x73\x7c\x30\x29\x88\x17\x25\xfd\xaf\x56\xff\xbb\xf5\x28\x30\x11\x08\x71\xa6\x36\x54\x65\xe4\x3e\xdd\x28\x8e\x8f\xd1\x76\x67\x80\x6d\xe0\x63\xea\xbf\xb9\x4d\x47\x83\x02\x4b\xa7\x3a\x5b\xbd\x30\xb4\xd7\x37\x60\x9e\x1c\xed\xe1\x41\x16\x83\xf9\xdf\xc0\x46\x8d\x4f\x70\xff\x0a\xdf\xfc\xcf\xc6\x8a\x76\x98\x87\x3c\x24\x0e\xf3\x58\xa9\xd0\xc4\xd1\xf2\x37\x76\xe2\x22\x90\x43\x5f\xc5\x45\xa0\xdc\x82\xde\xd4\x04\x7f\x19\xfe\xea\xb1\x4e\x4b\xb1\x49\x7b\x78\xa1\x3d\x84\x29\x21\xe6\xc0\x67\x41\x15\x44\xb0\xa2\xae\xa2\x34\x1d\xb2\xb2\xff\xa8\x62\x9d\x3f\x8f\x8b\x76\x95\xaa\x25\xcf\x32\xeb\xa7\x57\x18\x9e\xc3\x38\x52\x6c\x18\xb4\x13\xae\x2a\x4d\x09\x24\xa9\x70\xdc\xac\x8a\x22\x48\x9b\xed\xad\x6f\x2a\xb1\xe7\x51\x62\xf3\x7c\x08\xba\x02\x6f\xe3\xbd\xbd\xd7\xbc\x32\xf1\x90\x7a\xa7\x58\xdd\xff\x46\xd1\xc9\x5e\x09\x3c\x2e\x1a\xe2\xb5\x48\x8b\x4e\xbb\xe4\x72\x68\x0a\xd3\x4f\xb3\x9e\x99\x92\x61\x5f\x8f\xe1\xe0\xde\x19\xa0\x52\xd7\x6a\xb1\x2b\x78\xd0\x46\xb1\xd3\x7c\x11\x75\xa5\x96\x57\x5a\x6a\xe4\xb3\xe8\xd9\xd5\xb4\xb0\x48\x00\x61\x5a\x4e\x29\xc2\xc3\x53\x63\x3f\x7d\x39\xb0\x8e\x0f\x5f\xa2\x47\x15\x49\xd6\xa2\x94\x03\x2f\x3b\x76\xd8\x7c\x48\x0f\xce\x69\x4f\x7b\x1d\x6a\x2f\xc1\x55\x66\x3c\x80\x43\x57\x8f\xd7\x71\x56\xd3\x7c\xd7\x87\x2f\xab\xcb\x1f\x95\xe0\x31\xce\xc8\x12\x08\x98\xb8\xfa\x35\x3e\x6e\x70\x0c\xfb\xdb\xc3\x2a\x2c\x2e\xca\x61\x4b\x01\x26\x8f\xaa\x01\xc0\xa3\xba\x04\x65\x56\x50\x82\x12\xaf\x43\x9f\x11\xb7\xf3\x84\xea\x08\x98\x04\x5c\xa1\xae\xe1\x5c\xbd\x30\xe9\x44\x37\x90\xe0\xae\x57\xb1\xfe\x9a\x2a\x6b\x9f\x55\xb0\xa5\xb3\xe3\x67\x27\xe0\xdb\x99\x89\x9c\xb6\x39\x02\x2a\xa4\xd6\x7c\xdc\xc0\x27\x34\xd7\x8e\xe2\x98\xd3\x38\xdc\xa8\x70\x0f\x55\xbf\x22\xa4\x44\x6e\x6e\x64\x54\x66\xae\xfb\x84\x20\xe1\xb4\xa6\xc5\xaa\x13\xd0\x57\xa1\x93\x3d\x34\x02\x55\x4f\x4b\xcf\xd1\x04\x2d\x25\xb8\xe4\x43\xb3\x7c\x10\x8d\x80\x6f\x81\x6f\xff\x87\x63\x3f\x00\xfd\x0f\xb5\x84\x9b\xb5\x19\x5f\x31\x6a\x9b\x68\x9d\xf2\x71\x0d\x85\xf5\x62\x3b\x19\x16\x5d\xd3\xf2\x2a\x58\xdb\x34\xb3\x9d\x4e\x41\x14\xc7\xf9\x4e\xcd\x51\xcb\xe3\x5a\x40\x0c\xef\xe9\x78\x60\xc9\x05\x9d\x29\xee\x98\x24\x0e\x71\x4f\x6c\x90\xae\xd1\x80\x8f\x9b\xc2\x01\xe6\x07\xf5\x4f\x86\xa0\x0a\xa2\x9d\x2c\x11\x62\xe4\xdb\x8a\x5e\xca\x1e\x0a\xcd\xaa\x21\x58\xd8\xfc\xbc\x03\xb5\x28\x80\x4b\xed\xa9\x57\xc9\xb9\x89\x63\x43\x53\x84\xad\x89\xc9\x47\xef\xaa\x4e\xd6\xb2\xb4\x17\xdb\xc5\x20\xca\x30\xd1\x85\xe7\x72\x46\x71\x7f\x9c\x71\x63\xf8\x34\x55\x12\x66\xd1\xa8\x98\x52\x43\x7d\x67\x55\xd1\x19\x7e\x56\xc4\x7e\xb7\xbb\xf7\xd9\xd9\xb6\xf9\x06\x27\xdd\xc2\x37\xad\x5a\x68\x9b\x0a\xad\x51\x66\xcc\x0c\x20\xba\x86\x57\xb0\xde\xf8\xa4\x2e\x84\x45\xad\x20\xf0\x03\xa2\x84\x76\x9d\xac\x28\x1f\x3b\xed\xbd\xc2\xc6\x76\x39\x4e\x33\x70\x86\x4c\x70\x81\x4b\x9a\xd4\xd4\xae\x5f\x89\xb8\x61\x8b\x3f\xba\x1e\x28\xc6\xe2\xeb\xaa\x1e\x9c\x13\x8c\x0f\xb3\xa1\x4e\x29\xb2\x7a\xbb\x78\xd5\x9f\x04\x7e\x87\xc2\x11\x52\xe6\xd1\x81\x22\x80\xf4\x9a\xab\x30\x93\x8f\x15\xfc\x26\xb3\xa3\xb2\xa0\x22\xd6\x54\x6b\x76\x8e\x91\x6f\x58\x54\x88\xad\x30\x72\x81\x6c\xe0\x87\xae\x95\x93\xdb\xa1\xcd\x0b\xbe\x7a\x2e\x4c\x04\xde\x73\x6c\x2a\xef\xd4\x8f\xd7\xf7\xaa\xa6\xec\x61\x6f\x29\xc3\x5f\x21\x16\x16\xc5\x9b\xba\xa8\xc9\x2d\xe6\xf4\xff\x4c\x8a\xdf\xd2\x6d\xff\xb3\xff\x1a\x21\x94\x92\x8d\xde\xcf\xb9\x09\x18\x53\x65\x24\x07\x4b\x43\x38\x99\x5a\xc2\x32\xb7\xf0\x2b\x1b\x1e\x7a\xbd\x1a\x65\xfd\x28\x8e\xd2\x29\xf7\xf8\x36\xae\xc1\xb1\x23\xa9\x00\x9f\x3f\x00\x68\xde\x7b\x96\xc9\x28\x26\x86\x84\x96\xe2\x24\x42\x92\x20\xa3\x3e\x4d\xbe\xa0\x48\x2b\x17\x25\x8d\x30\x44\x51\x9f\xab\xd1\xb0\xcf\x9d\x0b\xcc\xcb\xee\x28\xb5\x09\xcb\x89\x08\xb8\x41\x01\x1d\x82\xbd\x6e\x95\xac\x44\x85\x22\xc3\xdd\xb1\xe1\xab\xc5\x3b\x3a\x3e\x58\xec\xc6\x86\xe2\xf5\xb9\x03\x6e\x24\xb5\x5a\x25\x32\xaa\xba\xdd\xc9\xbf\x42\x9b\x3f\x1b\x3a\x0d\x2f\xe1\x8b\x50\x63\x09\x87\x55\x31\xc9\x24\x87\x22\x5b\xac\x2b\x9f\x71\x2c\x98\x50\x73\x51\x50\x62\xd3\x4f\x6c\x11\x85\xd3\x3e\x13\x3f\xa9\x41\x81\x17\x03\xcf\x10\xcb\x54\xfc\xfc\x57\x6a\x7e\x24\x2f\xfb\x7d\x68\x8b\x63\x84\x41\xa8\xe8\xab\x7b\x92\x81\xd5\x26\x85\x31\x03\xa6\xf4\x96\xe3\x91\x61\x4d\x73\x11\xae\x7c\x56\xd5\xd5\xb2\xd0\x8e\xb8\xe9\x7e\x70\xc6\x75\x35\x15\x4b\xe3\x09\xc5\x3d\x5f\xe7\xaf\x9e\x3b\xd0\x1e\x98\xd1\xc8\x4a\xe1\x44\x00\x3c\xbe\x80\xa8\x27\x38\xe3\xbe\xe5\x74\x0a\xb6\xef\x3d\x3d\x95\xf7\x9e\x56\xfa\xb5\xd9\xb2\x0d\x59\xe8\x5e\x50\x59\xde\x19\x5c\x70\xc6\x49\x66\xd6\x7a\x10\xb1\x42\x61\xf4\x36\x36\x15\x0a\x66\x57\x02\x9f\xa3\x80\x45\x42\x7a\x7a\x8a\xf9\x05\xc9\x33\x62\xf6\x69\xd5\x21\x30\xc3\xca\x10\xf4\xcc\x90\xbc\xa1\x42\xab\x2c\x3a\xb4\x8a\xa3\x73\x31\xab\x56\x64\x7b\xd0\x3e\x78\x5f\x09\x7b\xbd\xaf\x66\x61\x2d\x8f\xb4\xd1\x45\x3a\x99\x9a\x25\x77\x61\xd5\xb2\x97\xdf\x3f\x64\x14\xb7\xf3\xa7\xd4\x15\xe0\x63\x25\x29\x96\xa4\x85\x4b\x3a\xb1\xc9\x6e\xa1\x7c\xc6\x27\x7a\xc6\x28\xed\xef\x54\xd4\x8c\x27\xf4\x84\xdb\xbd\xb1\x9f\xf9\x7c\xa2\xe3\x43\xb4\xd6\x86\x5f\x70\x3f\xd3\xa5\xa1\x81\x1d\x5a\x6c\x73\x16\x85\xa0\xd7\x2e\x02\x11\x0d\xd8\xd3\xf8\xaf\xfd\xda\xaf\xa9\x98\xff\x02\xdd\x0f\x1f\xd7\x22\xba\x83\x33\x2f\xb5\xbb\x51\xd2\x47\xf9\xdb\x71\xbc\xcc\xcf\xbb\x6d\xba\xd7\x95\xbf\xf3\xc2\x4e\x6b\x66\x51\xdc\x96\xd8\xc8\x96\x62\x1c\xa9\x3e\x0f\x3b\x7a\xaf\x86\xbc\xaa\xf6\x4e\x62\xd7\x30\x2a\x21\x55\x6d\x5d\xe2\x7e\x08\x61\x74\xc6\xe0\x77\x2c\x09\xfc\x1e\x2a\x34\xf7\x54\x5e\xca\x9d\x79\xf4\xc0\x1f\xed\x34\x50\xb8\xad\x46\x76\x0d\xe0\x17\x47\x2a\xbb\x34\xb3\xc5\x2c\x3d\x28\x71\x5e\x53\xbc\x71\x89\xed\xa7\x45\x84\x2e\xed\xb4\x0a\xf3\x0f\x07\x2a\xcc\x3f\x4c\xd6\x02\x2f\x98\x35\x4f\xf9\x24\x98\x9c\x67\x4c\x05\x99\xbe\xe0\x29\xa6\xaa\xaf\x11\x26\x2a\x17\xa6\x11\xc4\x92\x07\xb2\xd0\xa4\xc4\x74\x9a\xa3\x59\x77\xb4\x57\xd7\xb7\x4d\xaa\x1d\xda\xeb\x92\xe9\xe7\x29\xa9\xd8\xda\xa5\x47\xb8\x1f\xe0\xf2\x94\x0d\x7a\xd5\x31\xcc\x68\x35\xc3\x40\x19\x8d\x9b\xec\x00\x19\x14\x05\x3b\x27\x35\x3c\x45\x77\xf9\x0f\xe9\x45\x30\x7c\x9f\x1e\x89\x80\x39\x1a\x2c\x5a\x91\x19\x88\xc8\x3b\xc3\x77\x0d\xc6\x02\x09\xf2\x5d\x85\xd3\xdd\xad\x8c\x85\x4d\x5e\x4f\xd7\x01\x7c\x3e\x38\xd3\x3c\xdf\x22\x61\xe1\x72\x4c\xb5\x73\x49\x40\xf0\x18\xff\xb1\x12\x27\xf9\xc7\x8a\x85\x33\x4c\xcb\xa4\xb0\xd9\xc8\x64\xd0\x98\xc2\x1d\x7d\x9f\x6c\x99\x26\xa1\x44\xf9\xe2\xb8\x8f\xcf\x63\x6b\x56\x54\xe7\xe3\xd1\x8e\xe7\xbf\x3a\xea\x49\xb9\xae\x83\xba\x17\x4b\xfc\x8f\x6a\xbc\x78\xfb\x16\xda\xa3\x6e\xae\x35\xb5\x8e\xab\x0d\x75\x4d\x2f\xea\xad\x49\x8c\x4b\xb8\x32\xad\xe8\xd9\x03\x05\xba\x38\x3f\x56\x15\xc4\xb3\x2a\xa7\x3f\x5b\xa3\x98\xa9\x76\x58\x62\xcb\x2c\x8d\xd3\x7e\x94\xb3\x47\xd0\xec\xda\xe2\x4f\xeb\x9b\xb9\x9d\x17\x69\xda\xd3\x33\x3a\x27\x94\xfe\xca\x89\x26\x4a\xeb\xe5\x28\x06\x54\x1b\x59\xf8\x54\x67\x6a\x69\x66\x3f\x0f\x79\xa3\x02\x77\x45\x8d\x6f\xff\x58\xcb\xf3\x15\xa6\x28\x8b\x34\x5b\x57\xb0\xf0\x8b\x4a\xf9\xfe\xa2\x1e\xdc\x8a\xc8\xaf\xef\xd2\xe9\x3e\x55\x6d\x64\x6a\xb6\xe5\xa4\xa5\x18\x46\x86\x5c\xe9\x24\x2c\x01\x9f\x60\xad\x4b\xe9\xc0\x9b\xf8\x24\x32\xbb\xe9\xef\x04\x78\xe8\x5b\x63\x3b\x9f\xec\xe8\xf2\xd3\x45\x05\x63\xb8\x42\xd5\x6c\xb8\xec\xe3\x68\xba\x0a\xcd\xbd\xc7\x96\xdd\x51\xe3\x95\x61\x3a\x1c\x95\x85\xcd\xf2\xbd\xca\xa8\x30\x68\x0e\x80\x83\x1d\xa8\xd0\xb9\x5d\x5b\xbd\x07\xdc\x15\x17\x29\xb9\x23\xbf\xe1\x8b\x94\xa7\xa8\xf6\x84\x68\xf6\x53\x85\x2b\xbb\x1d\x50\x97\x10\x30\xb9\x1b\x48\x25\x9c\xb6\xa9\x2b\x77\x5d\x1b\x4f\x0c\x51\x36\x20\x49\x96\x6d\x96\x95\x6f\xbe\x19\x29\xb1\x8d\xf7\x35\xab\xe9\xfb\x81\xd7\xc0\x08\xb3\xa8\xda\xa2\x3c\xe4\x05\x9f\xf3\x09\x6c\x22\x9f\x34\x38\x90\x45\x82\x70\x4e\xb7\x14\x29\x8a\x56\x87\xc5\xba\x87\x3f\x98\x56\xe2\x76\xc7\xc6\xcf\x4e\xaa\xba\x1d\x9c\x59\x68\xbf\xf0\x42\x4b\xb1\x71\x01\x98\x20\x21\x60\x5d\x0e\x1a\x02\xdf\x53\x8a\x90\x01\xed\x65\x54\xb8\xee\x28\x1e\x9c\x0b\xea\x2d\xf6\xa2\x55\x9b\xf5\x25\x5a\x14\x8d\x45\x3f\x35\xb6\xa9\x46\xc4\x87\x25\x09\x4e\x7b\x96\x3f\xf0\xf3\xf0\x71\xe7\x09\x4f\xc4\x55\xf6\x73\xc5\xb7\x7b\x5b\x49\xc6\xde\xae\x8d\x54\x1c\x78\xb9\xdd\x8b\xde\x7c\x93\x4a\x82\x14\x83\x22\xe8\x00\x6b\x20\x92\x95\x3b\x81\x07\x52\xfd\xd0\x13\x91\xd9\x38\x15\xc6\x5e\xa9\x1b\xd3\x66\x81\x4d\xbc\xa0\x30\x01\xc7\x34\xd3\xe4\xce\x8e\x2f\x6c\xd7\x19\x7b\xe7\xe7\x89\xee\x92\x76\x31\x6c\xd2\x61\x65\x9f\x0e\xab\x10\xbf\x6f\x68\xfe\x9d\x71\x46\x52\x61\xf3\xf5\xe6\xb3\x2a\x48\xcd\x32\x4b\xe2\xeb\xd5\x37\xa1\x7b\xc4\xec\xeb\x7c\xa2\xd2\x78\x93\xf4\x6d\x86\x78\x42\x31\x9b\x28\x0a\x3a\x4f\x47\x37\xc1\xd0\x5f\xc3\xa4\xcc\xce\xb5\xb3\xb2\x6b\x13\x9b\xbf\x51\x92\x4e\xaa\x63\x27\xf8\x44\xb1\x48\x7c\xa2\xa0\x11\x85\xc9\x57\x58\x2e\x0b\x05\x98\xbb\xf4\x87\xe8\x9b\x9e\x19\x4f\xec\xba\xed\x6e\xf3\x85\x17\x98\x3c\x8c\x43\x60\xe1\x36\xa1\x37\x22\x3c\x22\x7b\x55\xeb\xee\xcd\x29\x2d\xda\xcd\x11\x9b\x18\x40\xda\x92\xf0\x30\x27\x75\x31\x38\x13\xa9\x6f\x95\x17\x4b\x2b\x78\x53\xd9\xc0\xc2\x1e\x9a\x52\x74\x69\xf7\x27\x84\xc5\x7c\xee\x78\x5e\xed\x04\xd4\x30\x4d\xb6\x8e\x44\x86\x79\xfa\x34\x43\xe2\x79\xc5\xa8\x1b\x96\x59\x66\x93\xa2\x4a\xff\xfd\xe4\xc0\x85\x40\x49\x9e\xef\xed\xf8\x6e\xf6\x2e\xda\x28\x08\x02\x1e\xe9\xa8\x64\x1b\x36\x5c\xcf\x05\x21\xf5\xdd\x03\x62\x40\x98\x35\x20\x7a\x11\x56\xf3\xdc\x15\x4a\x16\x8f\x6f\x28\x26\x01\x1e\x61\x41\x16\xf9\x65\x13\x5b\x78\x1e\xa5\x2c\x3c\x2c\x89\xa0\x82\x38\x3e\x64\xe6\x22\x5a\xc6\xcc\x85\xa8\x5d\xd0\x6f\x38\xe5\xd0\x05\xaf\xf8\xe2\xab\x2e\x76\xd5\x26\x45\x69\xe2\x78\x7d\xb7\xa2\x1c\xba\x17\x28\x9a\xb5\xb3\x8a\x1e\xf4\x67\x81\x07\x56\xfd\x82\xc6\x53\xf0\xef\x98\xa9\xc2\x3a\x04\xe3\x1f\x0a\x59\x75\xe0\xfb\xec\x5c\x3b\x1f\xd9\x30\x5a\x8e\x42\xac\x3d\x98\xbc\xe3\xca\xfc\x1d\x6f\x08\x0f\x16\xdb\x79\x19\x0e\x5a\xe4\x78\x59\x00\x8d\x76\xba\x88\xa1\x39\x0a\x7c\x12\x13\x6b\x29\x79\x86\x1b\x08\xea\xf8\xa4\x49\xae\x31\x1c\x98\xc2\x9a\x12\x45\x57\xa7\xa2\xb6\x20\x40\xef\x0f\x54\xaa\x3b\x28\xf3\xae\x49\x7a\x2d\x80\x62\x98\xb2\x08\xfa\xec\xc2\x5f\xf4\xb4\x12\xf4\x78\xa3\x8c\xb2\xc8\xe6\x53\x3e\xac\xdb\x9a\x50\xe8\xad\x1e\xac\x98\xf1\xa7\x54\x25\x8c\xa4\x0b\x50\xba\x60\x1a\x09\x42\x12\x09\xa5\xc4\x76\xe3\x41\x04\x7d\x61\x3a\x1c\x46\x9e\xe4\x0d\x41\xfd\xd1\xc0\xe3\x4c\x8f\x2a\x30\xfa\x5a\x94\xdb\x30\x33\xe1\x4a\xde\x52\x7a\x8d\x7a\xfa\x57\x37\xc3\xde\x28\xcd\x7a\x8c\xcc\xce\x81\x05\xab\x67\x2a\x92\xd8\x7e\x2b\x7f\xeb\x9b\x0b\x53\xe4\xfc\x61\xaf\xc0\x89\x3f\x41\x3a\x8d\x76\xee\xe5\xf1\xa3\x7c\x0f\xed\xaf\x4f\x2b\x16\x3c\xc0\xb5\x51\xb1\x7a\xa0\xfa\xef\xaf\xd1\xfb\x10\x74\xb3\x64\x37\x23\x9b\x98\xb8\x20\x15\x4c\xaf\xe2\xee\x31\x73\x8f\x2b\x8e\x96\x7b\xf8\x75\x69\x27\x35\x90\xf7\x2c\x9b\x0c\x9d\x1a\xad\xcd\x2d\x46\xdd\x87\x8e\xa1\xc9\x46\x24\x1d\x33\x5d\x85\x32\x8e\xc0\xd4\x17\x12\x3e\x55\x85\xfd\x0f\x61\x51\xf9\x3f\x6a\x25\xad\xb9\x03\xed\x38\x5a\x26\xcf\x88\x4e\x3a\xd3\x9e\xd2\x5e\x10\x0a\x54\x1f\x89\xbe\x9e\x52\x17\x64\xa7\x22\x7e\xf8\x0f\xf5\x26\x19\xfa\x5d\xb7\xc9\x3e\x01\x6c\x80\x56\x15\xe0\x56\xf7\x9b\x02\xad\xd0\xc6\xd1\xd0\x26\x28\x4a\x6c\x61\xa2\x76\xeb\x52\x43\xb5\x6a\xb1\x5a\x65\xae\x5c\x08\x43\x7b\x44\x71\x0f\x1f\xf1\xfe\x3e\xca\x07\x29\x4f\x01\x3a\x51\x59\x0f\x14\x3d\x1d\x78\xba\x83\xac\x4c\x1e\xd3\x44\xb7\xef\xd2\x2b\x84\xd9\xe2\xca\xa7\x83\xbe\xbb\x18\xec\xc7\x63\x45\xfe\xff\x19\x62\x4c\x97\x37\x57\xcf\xc7\x41\x43\x5c\x3d\x69\xaa\xe3\x27\x8a\x8f\x05\x4a\xc9\xf2\x91\x0d\x15\x62\xd9\x55\x1b\x63\x7c\x69\x7e\x9e\x8b\xd0\x9f\xe3\xca\xf9\xa4\x51\xf2\xbf\x30\x71\x64\x12\x52\x87\x70\x90\xe4\x13\x7a\xc1\xa3\x03\x8b\x91\xe5\x2d\x45\xb6\x98\xd9\x51\x9a\x15\x5f\xa9\xae\x6c\x42\xf7\x15\x5b\xf6\xe3\x40\x8f\x1b\x33\x9a\x07\x27\x80\xf8\x22\x35\x80\xf4\x80\xe3\x9e\x5f\x7c\x79\xbf\x13\xf3\xa0\x4b\x60\xd5\x2a\xa5\x7b\x78\x0e\x8f\x0f\x89\xf8\x59\x58\x7b\x3e\x51\x28\xbb\xfb\x3a\x12\xfb\x43\xc4\x6b\x88\xd1\xbe\x68\xa8\x26\x2f\xa2\x74\x9d\x44\x46\x19\x2e\x9e\x27\xe4\x93\x87\xa2\x0e\x7b\x16\x95\x46\x14\xf8\x8e\xe9\xb1\x88\x63\xb5\x9f\x9a\x3b\xa0\x4a\x7d\x78\x40\xa2\x53\x41\x9f\x13\x24\xee\xb3\x0a\x97\x20\xf3\x80\x56\x91\xb8\x5f\xc4\xa3\x66\xec\x6a\xe0\x31\xea\x17\xa8\xb5\x22\xf1\xb7\x9f\xc4\x7b\xdd\x24\x36\xca\xd2\x29\x2d\x60\xa1\x45\x2e\xe8\xd7\x99\x55\x7f\xec\x61\xee\xa2\x90\x34\x88\x46\x3b\x7d\x3e\x3a\xad\xf5\x1e\x77\x03\x46\xee\x78\xfb\x17\x64\x01\x5f\xc2\x8b\x12\x73\xf2\xec\xa4\xf0\x29\x09\x7f\xc1\xbd\xc0\x0f\x5f\xc6\x35\x08\xe2\xa8\xe5\x98\x8e\x7e\x30\x01\xf6\x29\xfb\xdf\x00\x97\x38\xb6\xcc\x53\x08\x60\xb0\x1b\x20\x70\x29\x39\xa7\xca\xb0\xd2\xa4\x88\x92\xd2\x12\x8a\xc4\xa9\xa9\x3a\x14\xc9\x69\xa2\x12\x63\xa8\x37\x75\xb9\x1d\xb7\x5a\xb5\x68\x11\x4a\x20\x37\x70\x82\x4c\x0e\x9d\x73\xb6\xe6\x96\x97\x66\xda\x45\x16\x8d\x5c\x4f\x1c\xf3\x60\x87\xf0\x34\xf8\x64\x82\x15\x20\x5f\x59\xdf\xe9\x0b\x5b\x22\x8b\x27\x3c\x11\xe4\xa1\xb1\x9e\x40\x4f\x8d\xba\x2c\x2b\xb0\xc3\x75\x6c\x35\xcd\x32\x32\xdd\x70\xf5\x11\x81\xf2\xd3\x47\xf8\x24\xd8\x5e\x80\x59\x58\x68\x9b\x7e\xba\xbb\x8a\x8c\xb0\x05\xff\x98\x2c\x10\x8c\x39\xe6\x20\xf0\xd1\xdd\x78\xe6\x22\x09\x47\x1b\xcd\x8d\x00\x3b\xbe\xe1\x1f\x6b\xad\xa3\x8e\xcf\x3b\xac\xa9\x62\x77\xbf\x98\xb8\x6e\xc0\x27\xb5\x1b\x99\x9d\x6d\xe7\x66\xdd\x19\x6e\x7c\x1f\xe2\x6c\x3e\x56\xa9\x92\xc9\x73\x3b\xec\x8a\xb8\xb4\x43\xb2\x3b\xcf\x08\x88\x84\x90\xcb\x28\xb8\xe9\x49\xe7\x98\xd3\x6e\x1e\x4a\xf3\x00\xb9\x1b\x28\xff\xf9\x58\x8b\xbf\xa6\x65\x56\xe4\xd3\xbe\x96\x06\x9e\x54\x59\x53\x6a\x3f\xdf\x18\xab\x9a\xd4\xe9\x9a\x1b\x73\xb8\xd0\x2a\x71\x9b\x3b\xc0\x79\x25\xb3\xc7\xf0\x49\xa0\xa6\xf1\xb2\x74\x98\xa2\x18\xeb\x63\xec\x6b\x63\x25\x77\x8a\x02\x3b\xff\x87\x96\x3e\xbd\xa7\xca\x0e\x94\x85\xc4\x31\x4f\x81\xe2\x65\xde\xa4\xf7\x87\x1d\xc2\xac\x97\x02\xe2\xd9\x7e\xd1\x07\x67\x2a\x07\x10\x9b\x90\xb3\x4d\x74\x73\xbf\x80\x07\xe3\x93\xda\xcb\x7c\xe1\x05\x48\x2c\x71\x13\x47\x40\x51\xd5\x42\x11\x1e\x29\x1f\x33\xf4\x6c\x16\xad\x32\xb3\xab\x13\x51\x70\x83\x39\x9f\x28\x50\xff\xc4\xcc\x34\x01\x35\x35\xbf\x95\x04\x88\x74\x65\xf0\xe1\x57\xc6\x13\xd9\x49\x75\x9f\x30\xa5\x8f\x38\x32\xed\xcc\x76\x4d\x21\x17\x8a\xa8\x6e\x0a\xd3\x95\x7c\xd2\x00\x83\xde\xdf\xce\x8b\x75\xb7\xef\xe1\xba\xae\x05\x4a\xf9\xe0\x9a\xea\xce\xbc\x6e\x92\xd2\x64\xeb\xc0\x5f\x73\x2a\x02\xab\xee\xf2\x12\x37\x10\x7b\x3d\xd0\xcd\xf3\x06\xc6\x99\x30\x4d\x12\x53\xf6\x07\x08\xa0\xd5\xf4\x8c\xc0\x5f\x8f\xd7\xde\xc5\xe2\xcb\xfb\xdb\x79\x74\xa8\x18\x50\xcb\xc9\x51\xd1\xbb\xa1\xee\x13\x0d\x50\xd3\x97\xda\xa6\x4f\x51\xba\xb3\xda\xec\xef\xe4\xfa\x7d\xaf\x28\x8b\xfa\x83\x22\x7f\xa2\xb2\x26\x58\x7b\x1f\x04\x0a\x79\x07\x59\x22\xfe\x0f\xec\x0e\x2d\xfc\x82\x54\xee\x06\xd9\x62\xd8\x79\x50\x73\x71\xf7\x5b\xf5\xbb\x1e\xe9\x28\x71\x50\x66\x96\x41\x83\x9e\x83\x29\xd1\xbf\xf0\xac\x03\x13\x83\x18\x97\x6b\x77\xb9\x34\x43\x2a\xd7\x79\x01\x68\x0c\xf2\x5c\x86\x0d\xf2\x89\x93\x72\x8a\x2d\x0f\x11\x33\xf1\x84\xee\xa5\xb3\xec\x26\xf2\xec\xab\x0a\x07\x69\xc2\x37\xca\x08\x0c\xa0\xf9\x6e\xa5\xf0\xa4\x35\xc3\x7f\x4e\xd5\x46\xd1\x92\xd7\xd5\x58\xf8\x24\x37\x43\xb4\xe0\x78\xab\x69\x22\x52\x24\x61\x1b\x60\xaf\xa1\xc9\xec\x5a\xde\x52\xb9\xc4\x26\x7b\x1a\x81\x1e\x6c\xcf\x2c\x0e\xce\xcc\x55\x11\x2e\x15\xcb\x90\x22\x9e\x1a\xab\xf6\x0f\x4a\x7d\x92\x03\x6e\x0f\x2d\x29\xb1\xeb\xd9\x30\x72\xe0\x33\x91\xb5\xf0\x90\xb2\xba\x86\xd6\xdc\x81\xf6\x28\x4e\xa7\x54\x5a\x75\x79\x82\xb4\x11\x09\xba\x44\xcb\x35\x5f\x31\xd7\xb6\xc3\x81\xc9\xb0\x40\x95\x78\x87\x10\x5f\x9d\x0e\x3c\x4e\x71\x54\xe6\x83\x69\x35\xcd\xc1\xf8\x57\xfc\xea\x3f\xa0\x8d\xc0\xff\x11\xa8\x01\xed\x7f\xa0\x5e\xa4\x9e\x25\x57\x14\x13\x6c\xfa\xf9\xc4\x39\x96\x37\xca\x94\xf4\x52\x5b\x8e\x0f\xe5\x8c\xd2\x41\xe7\x2e\x31\x3e\x74\x4b\x01\x12\x32\x33\xa4\xbb\x71\x73\x9f\xd5\x77\xf3\x89\xca\x5e\xcb\xbe\x9d\x56\xc3\x41\x5b\x93\x92\x25\x6a\xf6\x21\xf0\xcd\xa6\x2d\xf5\x34\x8a\x41\x89\x60\x0c\x85\x03\x60\x1e\x91\x8b\x5e\xd2\x55\xb2\x1f\x34\x36\x33\xd7\xd2\x6c\x85\x96\x89\xb4\x3c\x68\x59\x6b\xb1\x7d\x34\xc7\xde\x6f\xf8\xf4\x5c\xbb\x48\x8d\x16\xd3\xfe\xa5\x12\xd3\xfe\xa5\xf2\x07\x23\x9b\x8e\x62\xb1\xc8\xae\x67\xe0\x46\x73\xce\x29\xe3\x13\xa7\x79\x6e\x49\x22\xe3\x25\x2f\xc8\xbf\x24\x7a\xcb\xd7\x15\xcc\xff\xb1\x0d\x8f\x20\x38\x32\xd6\x68\x76\xbc\x75\xa1\xe7\xa5\xb5\x81\x5d\x77\x57\xc1\xfc\xbf\x1c\xab\x94\x87\x0d\x0b\x8c\xd4\xad\x5a\x0e\xba\x34\xd3\x5e\x4f\xcb\xa4\x6f\xb3\x16\xb9\x64\xd4\x9f\x3f\x0c\x7c\x03\xfc\x43\x87\x89\xe9\xd9\x2a\xf2\x2e\x33\x24\x65\x30\x8d\x88\x40\x1d\x6f\xeb\x82\x53\x65\xdd\x54\x30\xe6\x51\x16\xe5\x98\x0b\x14\x07\xc4\x70\x10\x3e\xd1\xd8\x87\xcc\xae\x9a\x28\x46\x4e\xce\x4f\x29\x50\xe2\x8c\xb7\xd5\xc8\x0c\x27\x5d\xee\x59\x3a\xd2\xc3\x53\xaa\xbe\x10\x25\x79\x11\x15\x25\xc8\xc0\x16\x1d\x83\x37\x3d\x54\x98\xe1\x2f\xc9\xac\x39\x5c\xb0\xef\x2b\xe1\x45\x22\x5a\x7a\x1b\x1b\xd1\xfd\x87\x9b\x36\xf8\x7e\xa0\x08\x48\x03\x55\x31\x38\xd1\x34\x13\x48\x13\xba\xfd\x74\xda\x57\xc3\xfe\xb9\xd6\x05\x06\x44\x03\x1e\xe1\x67\x63\xc5\xba\x70\x35\xf8\xf3\x3e\x56\x4d\x56\xa3\x2c\x4d\x10\x2a\x89\xc6\xcd\xa2\x5f\x21\x9e\xe9\x17\x09\xbe\x63\xa2\x73\xdd\xd3\xcd\x86\xc0\xe9\xd5\xb6\x59\x33\x91\x9b\x6f\x90\xc8\x47\x21\x31\xcf\xd7\x12\xc7\x03\x2f\xb7\x7b\xb6\xb0\xd9\x50\x66\x9a\x1d\xbf\xb7\x4b\x8c\x2f\x6a\xa5\x63\x43\xf3\xc9\x32\x41\x86\xd6\xe0\xbf\x1c\x2b\xf6\x9a\x7f\xa9\x32\xf9\x7e\x66\xde\x94\xfe\x82\xeb\x95\x3a\xa2\x86\xb3\x6a\x3e\xae\x1f\x97\xe1\x8a\x43\x54\x23\x65\xe2\xea\x18\x9f\xd4\x0a\xa0\x8b\x4b\x8b\xed\x5e\x24\xfb\x56\x88\x49\x26\x1a\x87\x4f\xab\x72\x5d\x5a\xb0\x3d\x3d\x38\xe3\x08\x80\x7c\x61\x42\xcf\x98\xaf\x24\x69\xa1\xaa\xcc\xa8\x5e\xf3\xb1\x0a\xd3\x89\x8c\xbd\x37\x51\xce\xff\x38\x50\xf3\x5b\x1f\x37\x11\x2f\x2d\xa7\xd9\x50\xde\x8f\x23\x2a\x77\xd0\xb2\x7a\x19\xf3\xc5\x76\x95\xd1\x0e\x4c\xd2\x8b\x72\x69\xb6\xcb\x5b\xf1\x3c\x73\x3a\x27\x35\x43\x9b\x45\xa1\x49\x9e\xa0\xdf\x10\x5c\x1d\x6d\x3f\xd9\xd5\xd5\x23\x90\x5e\x02\x2e\x1f\x99\x3b\xc6\xf5\x35\xc1\x2e\xfe\xfd\x1e\xb5\x56\x27\xd2\x4d\xa5\xcd\xe0\x67\x7e\x5a\x4e\xa2\xec\x73\xaa\x59\xaa\xec\x50\x78\x8e\xff\x0e\xb6\x17\x92\x9e\x9d\x1d\x27\x2d\x1c\x97\xcb\xcb\xe8\xf0\x38\x8a\xc0\x05\x47\x17\x58\x03\xe1\x57\x99\x70\x34\xec\xda\x2c\x36\x49\xaf\xde\xaf\xd1\x9a\x3f\xae\x5f\xf3\x8d\xd1\x37\xe8\xfb\x65\xde\x49\xc1\x62\x8e\xab\xb6\x7f\x6c\x57\x6d\xfc\xb8\x0f\x06\x50\xf7\x90\x7e\xbd\x22\x06\x3b\x8f\x5f\xe2\xf8\x85\x5e\x86\xeb\xd5\xcc\xce\x39\x62\x42\x55\x53\xfb\x9e\xe2\xd7\xe6\xa9\x23\x54\xe1\x58\xbc\xd1\x69\x37\x57\x09\x17\xac\xe0\x17\x0e\x9d\x15\xc6\x69\x2e\x6b\x1d\x5e\x9a\xc3\x37\x3e\xa9\x95\x6f\x0f\xce\xb4\x07\x26\x5e\x46\x7b\x80\xc5\x55\x50\x95\x17\xa5\x95\x06\xa1\x84\x91\x25\x49\x2f\x85\xc1\xbd\x35\x56\x18\xdc\x5b\x81\xef\x91\x0e\xd3\xb4\x37\xad\x74\x2a\x7f\x01\x13\xcf\x27\x8a\xbc\x86\xe3\x65\x3e\x51\xdf\x90\xa4\x05\x4c\x0e\xd6\xe5\x19\xa5\x01\x7e\x66\xfc\xb8\x5b\xd0\xd9\x37\xf0\x82\x1b\xa1\xdc\x4d\xe3\x7b\x44\x53\xce\x37\xe1\xb8\x40\x7d\xc8\x5d\xe7\x08\x9c\x3b\xd0\x2e\x93\x32\x2f\xa1\xf5\xe5\xc4\xcf\x6f\xaa\x89\xc2\xb3\x8a\xcb\xfa\x98\x1b\xa4\x4c\x6c\xc1\xaf\x44\xca\xd9\x13\x45\xef\xc6\x19\x76\x3b\x21\xfa\x0e\x40\x87\x50\xe9\x3c\xad\xfb\x1d\x80\x35\x4e\x79\x41\xf3\x73\x8a\x79\xfa\x8e\x8a\x65\xce\x4c\xf0\x19\x27\x2b\x36\x23\x75\x27\x74\x66\x2f\xeb\x11\xdb\x5f\x28\x0e\x80\x9b\xb5\xc4\x6d\x69\xa6\x9d\xbf\x51\x9a\xcc\x2a\xdd\xf8\xcb\x14\xde\x60\xef\x6e\x4d\xfc\xe6\x33\x93\xfd\xfe\x85\x85\xf6\xdc\x81\xbf\xd0\xfa\xe6\x6f\x71\xda\xf0\x67\xe4\x53\xf1\x25\xef\x51\x57\x4c\x58\xcb\xe8\x11\xd1\xc5\xfd\xf7\xcf\x6e\x90\x08\x20\xbe\xfe\x5d\xe4\x71\xd8\xf3\xef\x8e\x7d\x8a\x76\x87\x23\x75\xf8\xe4\x4d\x1a\x50\x75\xed\xd3\x6a\xcd\x21\x2f\x3b\x3c\x56\xd0\x06\x0c\x49\x8b\xc4\x16\xb5\x5f\x50\xde\xfa\x57\xa4\xbe\x86\x4f\xfc\x3f\x44\x97\xc3\x50\x43\x3c\xa1\x9b\x01\xda\x58\x12\x90\xa8\x42\xdd\x5e\x52\x47\x40\x13\xff\xdd\x71\xeb\xdb\x73\x1c\x88\xfc\x0e\x26\xa9\x64\x42\x75\x6a\xff\xdf\xf8\xb6\x2c\x1a\x7a\xb9\x28\x1b\xee\xd8\xa0\x1a\x34\x8a\x38\xf7\xc8\x44\x20\x74\xbd\x4b\xa1\x8b\x6c\x77\xda\x50\xd8\xa0\x1c\x1e\xc3\x44\xfc\x69\xa0\x10\xa1\xe7\x83\xd6\x0b\x2f\x4c\x8a\x49\x08\xd9\xbb\x62\x0f\xcf\x4c\x12\xa6\x22\xdb\xd5\x48\x52\xe7\xf9\x4f\x96\x4b\xeb\x34\xad\xb9\xfc\x06\x03\x25\xb5\xb8\x27\x54\xe5\x36\x2f\x76\x6a\x95\x19\x5f\x50\x9d\x10\xbb\xf9\xbf\x69\xb5\xc0\xbb\xfe\x88\xde\x06\x1c\xf9\xe1\x26\xc4\xc2\xb2\x89\x63\x84\x40\xb8\x11\x94\xc6\xf0\xe3\xef\x93\x2d\x91\xd9\xe7\x6a\x59\x08\x23\x4d\xd3\xfc\x4f\x98\xc6\xb1\x19\x39\xad\x68\xc7\x22\xee\x76\x1c\xcf\x26\xe2\x75\x5f\x6f\x30\x20\xed\x28\x59\x76\xf4\x98\x4d\xec\x2b\x13\x24\xbe\xab\x51\x8f\x64\x61\x7c\x01\xe7\x76\xa0\xb5\xba\x15\xdc\xfc\xf6\xd8\xa7\x07\x27\x1b\xfb\xb9\x50\x59\x73\x3c\xde\x7f\x77\xec\x5f\xdd\xdf\x55\x39\x59\xd7\x64\x3b\x55\x75\x02\xb2\x90\xe8\x36\xdd\x81\xb3\x15\x50\x4e\x4b\xf8\xe6\x7e\x04\x31\x65\x78\x67\x2f\x0e\xd3\x4d\xa9\x77\x35\xa5\x50\x87\x47\x94\x8e\xc9\xde\x8e\x37\xcf\x9a\xab\xc8\xf6\xcd\xae\x6a\xeb\x3c\xd1\xf1\xd1\xda\x9d\xb1\xd7\xcf\x07\x63\x23\x2b\x33\xe1\x8a\xf0\xcb\xdc\xfa\x10\xca\xc9\x06\x0b\x34\x4a\xa3\x44\x8c\x2a\x36\xe1\x4f\xb1\xaa\xf8\x44\xe5\x6d\xc5\xc0\x9a\x42\xc8\xdb\x59\x14\x0e\xab\x56\x14\xe2\x94\x36\x29\x05\xad\x26\x7e\x9c\x7e\x9f\xa7\xd1\x15\xa4\x12\x59\xd9\xd6\xbb\x63\x35\xee\xf4\x19\xac\x8b\x63\xb8\x52\xa2\x07\x74\x7f\x8c\x17\x55\x6c\xf5\xef\x6a\x56\x9a\x33\xd8\xcc\xc2\x89\xe5\x26\x1b\x7e\xfa\x4e\x4d\x92\xac\x4a\x56\xf3\x32\x0c\x6d\x9e\x2f\x97\x71\xbc\x8e\x3c\xce\xcb\xb5\x3a\x12\x8f\x5a\x6d\x7d\x7e\xbe\x1d\xa7\x6b\x53\x1e\xfb\x84\x1c\x14\xb6\x0e\x1f\x15\x4d\x3d\x3f\x99\x36\xb2\x05\x83\xad\x27\x94\xa2\xf8\xc4\x85\x1c\x85\xcd\xb2\x34\x9b\x52\xd8\x0d\x04\x6f\xbf\x41\xc1\xea\x09\xa5\x1b\xe7\x89\x3c\xfa\xb6\xca\x0f\x54\x65\x87\xc7\x66\x84\x1a\xcd\x2d\xc8\x7d\x9f\xa9\x26\x52\x94\xac\xa6\xf1\xaa\x25\xb4\x25\xdc\x16\x68\xbc\x84\x66\xc5\xeb\x6f\x9e\x01\xc4\x56\xb8\x58\xd4\xe4\x44\x99\x45\x5c\xd3\xc5\x6e\xfb\x0e\x6e\x8a\x4f\x1a\xc5\x48\xf3\x28\x31\x45\x66\x26\xb8\x9d\x59\x63\x8d\x4f\x9a\xda\x1f\xc3\xb4\x88\x96\x39\xe8\x74\xc3\x35\x7e\xd0\xa6\x8a\x5c\xf8\x9a\xd2\x01\x19\x4a\x60\xc0\xae\xc0\x50\x03\xce\xf1\x93\x71\xeb\x37\xbf\x25\x99\x68\xe0\xe1\x83\xe7\xc8\x41\xcb\xc8\x99\xcc\x99\x74\x4d\xd6\x37\x91\x4c\x28\x48\x43\x5c\x31\xf2\x3d\x9c\xba\x64\xdd\x16\x8f\xfa\xf5\xf3\x28\xed\x57\x27\x96\xeb\x1b\x8a\x37\xe9\x77\x19\x04\x34\xd6\xf1\xf4\xd8\xeb\xdf\x9f\x21\xcf\x8b\x2c\xf7\x09\x88\x62\x6b\x82\x01\x6e\xac\x37\x0d\x95\xf7\xac\x29\x06\x00\xc7\x71\x13\x77\xac\xf4\x44\xb0\x64\xe1\x64\x2f\x28\xb0\x54\xcf\xac\x3f\xaa\xae\x71\x07\xb1\xef\xc2\x0f\xa0\xba\x42\x6b\xca\x3c\xa7\x86\x77\x6f\x06\xaa\x9c\xc0\x60\x45\xec\x85\xcb\x94\x91\x30\xb5\xe1\x78\xa2\xd3\xed\x23\xbe\xbd\x35\x0a\xf0\x7d\x0b\xed\x91\xc9\x4c\x2f\xca\x51\x31\x41\xe5\x8a\x45\x1b\x61\x00\x2e\x4f\x84\x27\xef\xa9\x54\xac\x17\x01\xd3\x08\x62\x86\x09\x5a\x7a\x09\x45\x7d\xc1\x19\x92\x9a\x1c\x79\xea\x0a\xfb\x47\x0a\xee\x90\xa4\x49\x5e\xa4\x23\xd5\x51\x3f\xaa\x46\x6f\x98\x96\x43\x26\x23\x9e\x99\x80\xba\xc6\x91\x49\x42\xdc\x84\xf0\xe0\xb7\x1c\xf9\xd1\xd5\xc0\x93\xe7\x1c\xd7\xdc\x6c\xd5\x07\x4d\x94\x00\x43\x85\x9e\xe0\x4f\x15\x44\xf0\x4b\x4d\x7e\x77\xd6\x95\xaf\xbb\x69\x96\xd0\x66\xc6\x52\xbb\x35\x56\xa3\x83\x87\xf1\x56\x60\x38\xe0\x40\x10\x52\xde\xf7\x0c\x45\x61\x98\x66\xbd\xdd\x1e\xe6\xc6\x7d\xae\x09\x62\x3b\x98\x24\xb0\x57\x72\x61\x9e\x5f\x84\x83\xcd\x2c\x2c\xf0\x25\x03\x1b\x0c\x7f\x54\x27\xc8\x7f\xed\x35\x35\x0b\x29\x98\x3d\x0d\xe0\xab\xc1\x1b\x66\x67\x27\xa8\x2b\x5d\x63\x77\x12\x3d\x59\x0f\x4f\xda\x99\xcd\xd3\xb8\xa4\xb8\x5e\x4d\x1b\x9d\x1e\xfb\x81\xac\xff\x38\x09\x23\x52\x80\x3d\x53\x98\x38\xed\x97\x56\x77\x8e\x80\xa6\xe4\x63\x15\x21\xcc\xcc\x2c\x4c\x10\x3c\x9d\xd7\x04\x4f\xe7\x35\x6d\x48\xc9\x82\x66\x78\x9c\xb7\x34\x06\x82\xbb\x0e\xd8\xa4\x47\xb7\x07\xfc\x2f\xb6\x5f\x99\x3b\x40\x45\x30\x89\xc5\x3d\x9d\x37\x0a\x79\xc8\x19\x21\x4f\x08\x22\x93\xb7\x9d\x68\x8b\x09\x43\x1b\x5b\x45\x28\x85\x57\xf8\xa7\xd8\xbf\x7c\xa2\x5c\x96\xc9\x86\x39\xc1\x14\x26\x0a\x0f\xcc\xd3\xe8\x71\x7c\xbf\xf6\x34\xe8\x15\x99\x3e\x5d\x6b\x77\xd8\x74\x68\xab\xdd\x88\x58\x87\xb5\x29\xc7\xbe\xfd\x75\x7b\x42\x59\xee\x6b\xbe\xab\x32\x1a\x65\xe9\x28\x8b\x14\x99\xa0\xc4\xcf\xaa\xef\x74\xbe\x56\xa3\x00\x00\xcd\xd8\xdc\x64\x96\xb9\x0d\x51\xfe\xbc\xaf\xf1\x3b\xf7\x5d\x65\x36\xcd\xc2\x01\x8d\x75\x4f\xf9\x16\xf4\x26\x3d\x3b\x47\x07\xe4\x86\xa8\x37\x54\x3c\x1e\x9a\x0c\x6e\x4f\x3a\x29\x1e\xb5\x79\xaa\xd6\x79\xf9\xf5\xb6\x71\x54\x59\x42\x11\x5f\x59\x7e\x21\x8f\x57\xb3\x51\x6b\x16\x31\xf4\xab\xbc\x89\xd1\x34\x73\x04\xe3\xd5\xad\xa3\xef\xfc\x59\x23\x47\x6b\x1e\x66\xd6\x8d\x93\x69\x49\x3e\xa9\x74\x69\xa0\x42\xd2\xe3\x76\x25\xec\xf3\x6d\xea\xd5\xe1\xe5\x5e\xc7\xd6\xe7\xff\x18\x7b\x74\xfd\x75\x25\x9c\x3c\xb4\xc4\xa6\x42\x55\xd4\x97\x3c\x0b\x69\xb5\xae\x50\x00\xc7\x6c\xb3\x8a\xe4\xe6\xe4\x3f\xd4\x93\x4c\xd2\x04\xaa\x35\xf8\xaf\x5f\xd2\x8f\xf1\x71\x13\xb9\xd9\xc8\x64\x2b\x6b\x66\x5d\xf5\x91\xdf\x52\x7d\xe4\xb7\x3c\xee\xab\x5c\x67\x88\xda\xa2\x56\x81\x7f\x69\x22\xb9\xc0\x63\xc1\xd4\x1a\xfc\x1d\x30\xb7\x32\x2a\xd6\x80\x93\xab\xdc\x4b\x94\x84\xa8\x55\xba\x05\xe3\x17\x4f\x23\xbd\x03\xd4\x85\xc8\x15\xc3\x69\x5c\x0b\x14\x01\xd5\x69\x2d\x17\x7b\x54\xb9\xb2\xc4\x76\x33\x93\xaf\x98\x69\xad\x97\x38\x56\x75\x99\x13\x0a\xa1\xfc\xbe\xd2\x5c\xfe\xc3\x6a\xcb\x6b\xbb\xb1\x34\xd3\xfe\xcb\xc8\xcd\x10\x13\x42\x44\x1d\x79\xf1\x35\xfc\x3c\x92\x88\x3d\x1d\x1f\x20\x3a\x11\xcb\x83\x4a\xb8\xd2\x35\xa4\xaf\x4d\x50\x6f\x3c\x4c\xa8\x6a\xb9\xcc\xca\x15\xb3\x66\xd4\xc0\xd2\x4f\x61\x16\xf9\xa4\x56\x17\xda\xb7\xd0\x5e\x2e\x93\x90\x37\xbe\x63\x30\x63\xf6\x48\x3e\xa9\xc1\xd6\xe5\xf7\x78\x51\x02\x5e\xa2\x81\x1c\x7c\x5c\xf3\x43\xf3\xf3\x6d\x3b\x1c\x31\x4f\x27\x92\xaa\x93\x81\x4f\xb0\x4e\xd6\x22\xab\x57\xe6\x0e\xb4\xbb\xd6\x64\x1c\x18\x62\x5f\x30\xd3\x33\x9f\x34\x28\x5e\xcf\x41\x38\x3d\x4a\x86\xd2\x71\x77\x49\xb2\x97\xdd\x52\x53\x13\x79\x6a\x32\xdb\xa3\x59\x1f\x37\x07\x5c\x25\x36\x30\x05\x5f\x06\x1e\x80\x88\xe8\xd5\x6b\xd9\x2c\x3a\x2d\x1b\xaf\x6b\x73\x49\x3b\x1f\xbb\x86\xb1\x2c\x17\x55\x79\xee\x59\xa4\x0a\x70\xff\xf7\x02\x19\x3b\xb3\x49\x98\x96\x99\xe9\x4b\x7a\x8f\x1d\xfd\x81\x9a\xd6\xfd\x40\xcb\xa9\x1c\x1f\x6b\x0e\x80\xd5\xc8\x95\x05\x44\x0f\xd9\x87\x5c\xcc\x02\x0c\x5f\xf0\x40\x0d\x89\x56\xc1\x5f\xda\x52\x31\xcb\xcd\xb1\x6a\xe0\x69\xfa\xfa\x37\xa3\x75\xc3\xb6\x55\xaa\xeb\xb4\xbc\xa4\x5d\xa9\x58\x99\x97\x97\xa3\x30\x32\xf1\x6e\x3f\x87\xf6\x39\x6e\x5e\x50\x39\x6e\x8e\x1e\x38\xa8\x57\x45\x2d\x47\xb7\x5f\x59\x82\x17\x99\xf5\x4f\x03\xdf\xf3\xad\xf2\x7b\x3f\xb6\x68\x92\xfe\x1e\xfa\x0a\xa1\x6e\x50\x33\x46\xe7\x34\xc9\xfd\xef\x04\x7e\x2e\xff\xf2\x58\x53\x36\x9c\x51\x0a\x64\xc7\x70\xfb\xc0\xe8\xdd\x0c\x14\x40\xfc\x52\x8d\x73\x64\x7e\xbe\x6d\xe2\xc2\x66\x89\x29\xa4\x59\x8f\xcf\xc1\x5a\xf0\x71\x4d\xae\x80\x5c\x67\x7f\x90\xe6\x45\xb7\xcc\xfd\x1e\x42\xfd\xe6\xaa\x52\x23\xbb\x5a\x8b\xb1\x7e\xe3\x15\x42\x01\x96\x49\x94\x17\x93\x5c\x8f\xc7\xf5\x20\xec\xf1\x49\x22\xb9\x24\xdd\x33\xe5\x45\x29\xcf\xc1\xbb\xe1\x27\xd0\x13\x71\xef\x73\x7e\x7e\x69\x0b\xf5\x16\x44\x68\xa7\x94\x57\x06\x02\x01\xcd\xbe\x0f\x41\xe2\x79\x3c\x78\xda\x81\xf0\x4d\x16\x9b\xc2\x24\x8c\x61\x97\x20\xdd\xdb\xee\x3a\x02\x9b\x20\xfe\x16\x15\x21\x66\xe1\xd3\xda\x28\xe7\x54\xdd\x17\xa4\x9e\x3b\x3d\xca\x86\x27\xd3\x01\x5a\xfd\x10\x60\x3f\x36\xeb\xa8\xa7\x60\x30\xf5\xb3\xc0\x9b\x51\x4d\xe8\x16\x9b\xf5\x9c\xaa\xc8\xe8\x8a\x5e\x1b\xfb\x02\xde\x49\xda\xe5\x58\x3f\x0f\x82\xbd\x1e\x2c\xd5\x1f\x6a\x38\xbc\xa2\xa1\x3d\xa7\xb6\xd3\x72\x99\x24\xeb\xd3\xd5\x37\xa3\x21\x70\x58\xe1\x74\x0f\x6b\x1c\xe1\x0d\x5e\x81\x7c\xa6\xc4\x1f\x2a\xbf\xc7\x14\x36\x32\xd1\x7a\x46\x29\x5e\x9e\x69\x12\xa4\x28\x32\xc3\x5c\x71\x42\xfa\xeb\x59\x28\xbf\x70\x50\x8a\x15\x9b\xc5\x69\xa2\xe7\xb5\x2f\x68\x2a\x85\x0b\x1a\x17\x91\xac\x23\x3a\x12\xc4\x49\x75\xbb\x08\x88\xae\x29\xac\xea\x11\x55\x2d\x34\x79\x6e\xb3\x42\x68\xa0\x61\x76\xee\x03\x59\xc4\x27\x7a\xc4\xd2\x64\x19\x11\x90\x38\xf0\x03\xe8\xb5\x24\x65\x7e\xd6\x57\x73\x24\x13\xa9\x62\x5b\x3f\xdd\x02\x2a\x0f\x84\x18\x67\xc6\x5e\xeb\xe0\x72\xa0\x91\x86\x23\x69\x2a\xb2\xda\x4d\xe0\xfb\x9e\x47\x6a\x5c\x2e\xbf\xde\xee\xdb\x82\xae\x08\x34\x6f\x27\xb0\xfb\xf9\xa4\x41\xcd\xb7\x9d\xd9\xe5\x18\x83\x63\xca\xe3\x5f\x85\x05\xe1\x93\xe0\x31\xdf\x42\xf8\xba\xf7\x25\x7f\xa8\x1b\x85\xd7\x03\xdf\x05\xb9\x4a\x3a\x96\xae\xf1\xec\x31\x86\xef\x07\xd4\x4c\x00\x60\xfe\x23\x2d\xe8\xf3\xbf\xa0\x68\x84\x97\x38\x45\x1b\x1a\xa9\xe4\x4f\xa8\x28\x80\x37\x78\x9c\xde\x1a\x9e\xd1\x87\x28\xe1\xa2\x8a\x0f\xca\x3d\x78\xfb\xd3\xa4\xec\xcd\x38\x54\x6e\x15\x08\x21\x75\xeb\x15\x11\x37\xbf\x1e\x78\x74\xda\x1d\x7a\xf4\x08\x6f\xce\x6f\x33\xbd\xaf\x2c\xcd\x70\xee\xf6\x1e\x55\xf4\x71\x53\xbf\xaf\x45\x62\xb7\x02\xaa\x28\x0a\x61\x98\x86\xa1\xa1\xbc\x28\x5c\x55\xd4\x76\x40\x86\x7b\x04\xcf\x17\x28\xd5\xbb\xc1\x8e\xaf\xbb\xc1\xea\xd6\xb7\xe7\xd8\x3c\x7c\x4c\x15\x4c\xa1\x64\x22\xeb\xe0\x18\xf7\x66\x67\xf9\x95\x5e\x0d\x5a\xdf\xfc\x2d\x07\x35\xc5\x76\x84\xcd\xbe\xaa\x99\xb1\xb7\xb4\x66\xc2\x7b\x13\x96\x35\x29\xf2\x5f\x51\xfd\x43\x14\x8a\xf0\xe5\x00\xfe\x4a\x85\x4f\x91\xb9\x3c\x4a\xcf\x9b\xf9\x2e\xe8\x49\xa2\xe0\xf8\x5e\xa0\x46\xa7\x41\x92\xec\x60\x16\x78\x13\x58\x2c\x77\x03\x45\x26\xfe\x25\xb2\x00\xc1\x18\x55\x4f\x59\xe4\x20\xe9\x29\xf3\x58\x42\xa0\xd5\x99\x37\x35\xd3\xf7\x49\xac\x1d\xac\xbd\xe9\x8e\xaf\x6b\xe3\xc5\xa2\x9c\xc7\x8d\x55\xc4\x5c\xe7\x14\x24\xf0\xb6\x66\x05\xfc\xd7\xa8\x0e\xe3\x5a\xae\xd0\x92\xc6\x4a\x7a\xac\x53\xad\x2a\x71\xcf\xdb\xad\xd7\xec\x1c\x8a\xe2\x48\x20\x64\x25\xb5\xdc\xe0\xb3\x8e\x62\x8e\x8d\x27\xc6\x7b\xbd\xa1\x3e\xd5\x00\xba\x7c\xb5\xdd\xcf\xd2\xb5\x84\x3a\x9e\x12\x74\xa9\x59\x73\xb4\x3f\xe1\x40\x8e\xd6\x3e\xbe\x6f\xa1\xdd\x37\x7e\xee\xc5\x09\x8f\xfa\x5e\x93\x32\x96\x26\x29\x9e\xa2\xab\x77\x9d\xb4\xa5\x19\x8e\xed\xf6\x6e\xf8\x8b\xbc\x89\x55\x85\x6d\x70\x0e\x6f\x61\x42\xf7\xc6\x61\x08\x3c\xf2\x67\xc7\x06\x5e\x9d\xe3\xb5\x97\x3a\xd5\x2f\x7e\x15\x2a\x27\x0e\xfc\x4e\x4b\x44\xe6\xda\x69\x29\xd1\xbd\xfd\xbb\xe7\xa9\xae\x88\xc8\x69\x67\xc7\xa3\xe8\x1e\x43\x78\x85\xb0\xf5\x27\xb4\x2d\x54\x44\x26\xf3\x20\xff\x46\x29\xc4\x86\x03\x93\x24\x36\x66\x62\x14\xf8\x3e\x0c\xb9\xf0\x71\x2d\x5c\x79\xed\xb5\x2a\x8b\xb4\x49\x31\x48\xd3\x9e\x92\x7f\xe0\xb9\x09\x3e\x99\x10\xee\x0e\x49\x9f\xa7\x3f\xad\x81\xc6\xad\x05\x4f\x14\x4e\x77\xc6\x27\x81\x62\xc3\x38\xef\xe8\xa1\xba\x65\x1c\x57\xa9\x09\x15\x1a\x60\xb1\x2e\x53\x43\x52\xcd\xc1\xbc\xea\xd8\x72\x1b\x78\x61\x97\x9d\x9a\xde\xab\x93\x0a\xfb\x82\xc1\xa8\xab\xce\xb5\xcb\x24\xb7\x45\x11\x33\xa8\x9b\x1d\x25\x3e\x25\x5e\xb3\xae\x32\xb8\xd8\x4e\x47\x36\x63\x4d\x1d\xf5\x44\x8e\xf3\x7e\x85\x15\x3f\x4f\x3b\x91\xa5\x55\x03\x25\x89\x1c\x85\x03\x1b\x47\x49\xcb\x4f\x67\xfc\x92\xda\x0a\xa2\x77\x3a\xa1\xa0\x68\xe3\x5d\x7e\xbd\x6f\xea\xe8\x69\x93\xb6\xaa\xa2\xf9\x14\x6a\x92\xb7\x02\x85\x5a\x7d\x6b\xac\xa4\xcc\xeb\x54\x4d\x4b\x33\xed\xbc\xc8\xd2\xa4\x1f\xf3\x7c\xae\xab\x9a\xb9\x0a\xcf\xa6\xba\xf6\xb4\xfb\x3a\xfb\xcd\x05\xa7\x62\x79\x7b\xec\x3b\xaa\xb7\xd5\xee\xca\x0c\x17\x17\xc4\x48\x29\xba\x95\xd3\x58\xab\x0e\xbe\xef\xcc\xef\x87\x63\x0f\xb0\x79\xb7\xd6\xe6\x98\x3b\xd0\xce\xc3\xac\x5c\x66\xa1\x45\xcd\xc9\x2e\x73\x42\xdb\xdf\x96\x1f\x5b\x1a\x9a\x04\x6b\x19\xc5\xd7\x93\x7a\xa0\xe4\x64\x2d\x3d\x5f\x58\x68\xa7\xa3\x51\x9a\x15\x65\x12\x15\x91\x95\xa0\x5d\xa8\x30\x55\xac\x7a\x5a\x49\x26\x99\x3c\xaf\xa2\x40\xa8\xb6\xbe\x2a\x66\x58\x61\x96\xee\xc0\x71\x8a\x7d\xf6\x93\x66\x77\x14\xa8\xb1\x9f\x99\x9e\xcd\xa7\x7d\x28\xf8\x33\x7a\x42\x7c\xac\x43\x08\x7c\x35\x1f\xab\xe4\xd8\x92\x22\x3e\xdd\xad\x10\xf4\xd1\xdd\x0a\x73\x9f\x47\xbb\xbc\xf0\x6b\x7f\x95\x0d\x83\x14\x2a\x68\x25\x09\x79\xa8\x94\xce\x97\x4b\x4e\x10\x84\xf0\x43\x91\xe5\x9d\x50\x95\xf9\xcc\xe6\xa3\x34\x91\x89\x17\x99\xef\x6e\x39\x9a\x8f\xf3\xae\xfc\x14\x47\xab\x32\x3d\xcf\x96\x35\x70\xd2\x43\x8f\xe9\x1c\x02\xc3\x45\x53\x5e\xd5\x08\xd5\x65\xac\x9d\x7f\x8e\x06\x69\x1d\xee\x3f\x3f\xbf\xbf\x3d\xb2\x66\x85\x4b\x7d\x82\x99\x55\xf8\xd9\x5a\xed\x0a\x80\xd5\x2c\xb7\xf1\x32\x45\x93\x8e\xe7\xa3\x72\xa2\x02\xe4\x9b\x64\xfa\x1e\x3c\x07\xfb\xad\xcc\xcd\x4b\x5c\x8e\x98\x06\x61\x2b\x5c\xcb\x97\xb4\x57\x85\xf8\x4b\x81\xe0\x2f\xc0\x69\xc8\x5d\x57\xe6\x4e\x6d\xf5\xfd\x6c\xf3\x1f\x50\xa3\x80\xdb\x47\x08\xb0\x9c\x12\x9d\xd7\x34\xbb\x02\x77\x8f\x02\xc8\x23\x34\x42\xe9\xc0\x18\xde\x6c\x1c\x0d\x34\xb6\xee\x86\xe2\xdc\xb9\x44\x2f\x00\xf9\xe5\xef\xc2\xcd\x89\xc4\x9d\x5f\xa7\xbb\x36\x14\x27\xef\x39\x0a\xd7\x24\xb3\x6a\x60\xfc\xa9\x8c\xab\x73\xc6\xe8\x44\x82\x21\x87\x8f\x55\x66\x91\x17\x99\x2d\xc2\x01\x5e\x97\x1b\xec\xf5\x43\xbe\x4a\x46\x27\x34\x23\xd3\x8d\x62\xec\x4b\xda\x4f\x1c\xec\x2a\x7d\xc5\x33\x63\xbf\x1b\xe2\x34\x5d\xb1\xbd\x5d\xd5\xdd\x21\x48\xbd\x46\xf6\xd6\xe5\xfc\x07\x67\x5c\xce\x5f\xc5\x75\xfc\x37\x8a\x65\xfe\x22\x9e\xac\xa4\xdb\x0a\x69\x11\x8d\x2a\x53\x2e\x08\x38\x3c\x95\xab\x63\x35\x8e\x55\x77\xae\xc4\x0f\x59\x25\x5d\x04\x8d\x6e\x69\x09\x0a\x37\x66\x52\x6f\x57\x2e\x2e\x11\x23\xd6\x0a\xff\x92\x22\x73\x72\x9a\x59\x93\xac\x50\xb6\xf7\xb5\x6a\x35\x21\x44\x6f\x75\xe8\x75\xc2\x48\x5f\xe7\x0c\x01\x0d\xe0\xb3\x74\xcf\x30\x0c\x3f\x40\xda\x87\x32\xfd\x34\xad\x20\x07\x60\x7d\xc5\xe5\x83\xd3\x1b\xba\xf7\xde\x52\xcc\x57\x9e\x16\xf6\x13\x5e\x65\x30\x74\x10\xbe\x00\xac\xfb\x78\xa0\x84\xf3\x1e\xe8\x5e\xe8\x63\x1b\x8a\xb2\xf6\x32\x79\x4f\x14\x91\x4e\x62\x0b\x4e\x74\x98\x11\x07\x7c\x84\x95\x2d\xe8\x27\xb5\xfd\x78\x1a\x13\x7f\x86\x26\x01\x6a\x2c\x7b\x01\x64\x44\x6d\xef\x4e\x93\x43\x1c\x91\xd2\x2e\x33\x87\xa3\x04\x80\x7e\x1e\x7e\xe6\xc8\x58\xe1\x10\xaf\xa9\xe1\xd1\xea\x9d\xe6\xf9\xd0\x26\x05\xac\x1f\x4a\x71\xe7\x14\xd1\xe6\x39\xb5\x74\x08\xde\x9c\x99\xa4\x68\x79\x31\x2a\x90\x8a\xf1\xb1\x62\x9a\xcd\x07\x66\x64\x5b\x94\x47\x3a\xb8\x61\x15\x92\x3e\x0c\x6e\xf8\x0a\xb8\xfe\xdf\xb4\x2c\x35\x0f\x7f\xca\x55\x74\x3e\xd1\x8c\x3c\xa6\x18\xa4\x71\x14\xb6\x7c\xa5\x75\x43\x4b\x29\x6c\xd4\xac\xeb\x8b\xed\x2c\x4d\x97\xdd\xce\x16\x99\x88\xea\xf3\x7c\x5c\xab\x3f\x57\xcb\xde\x26\xbd\x34\xcb\xad\x63\x3e\xc0\xe2\x3a\xa7\xea\xf2\x75\xab\x5c\x25\x04\x40\x99\x32\x87\x3d\xe3\xa5\x94\xb1\xfa\x65\x2d\xc7\xff\x4b\x6d\xd3\xcd\x8b\x28\xd9\xa6\x72\x76\x9e\x3e\xc4\xc7\xae\xbc\x62\xd7\x6d\x37\x4b\xd7\x5a\x13\x0d\x2e\xdf\xbb\x68\x08\x35\x17\xdb\x51\xb6\x22\xd5\x03\x18\xf2\x2b\xf4\x11\x3e\x46\x08\x87\x57\x67\x57\x6d\xf2\x84\x17\x26\xb9\x02\x58\x9e\x60\x93\xe9\xf5\x60\x8d\xfd\x29\x96\x2f\xcc\xec\x79\xec\x12\x24\x65\x53\x1b\xbe\x30\x85\x1a\xac\x74\x22\xab\x4b\x46\x1a\x7a\x5f\x17\x8a\x99\xf5\x05\x35\xbf\x4d\x9d\xdf\x4d\x29\xce\xf3\xeb\x64\x05\x81\x7c\xb8\xeb\x48\xff\x92\x28\x29\x06\xb4\x7e\x91\x76\x42\xba\x8b\x8f\x9b\xb0\xe3\x43\x93\x75\x99\x72\x02\x79\xe3\xb1\xc0\xe3\x2e\x8e\x35\x75\x88\xfa\x71\x9a\x0e\x23\xd1\x64\x83\x21\x41\xde\x2d\x72\x07\x64\xad\xf0\x0d\x57\x1b\xc9\x01\x07\x5e\x2b\xc8\xe5\x65\x1e\xec\x7f\xce\x71\xb5\xe5\x66\x75\x75\x7d\x97\xc2\x9c\xbf\x4f\x91\x2d\xda\xb5\xdc\x29\xd2\x8a\xa0\x28\x52\x81\xfa\x83\xff\x1d\xfe\x56\x86\x59\x3d\x1f\xcb\x30\x2a\xf2\x72\x25\xcd\x07\x51\xcb\x83\xa8\xb0\xdb\x45\x77\x5a\x13\x85\xe4\x69\x99\x85\x96\xaf\x19\xbd\x96\x6b\xba\xcf\x73\xad\x96\x9e\x10\x51\xa3\x09\x99\x2c\xcb\xf7\x76\x10\x4f\x89\x6c\x8d\x77\x73\xcb\x69\x36\x34\xf1\xce\x6a\xad\x09\xfd\x88\x57\x65\xb8\xa8\x08\x8e\x20\xa0\x87\xf5\x78\x6b\xac\x12\x98\x23\x4d\xfd\xc4\xcc\xf6\xca\x90\xad\x21\x16\xcb\x7b\x7a\xb6\xf4\x0f\x14\x9a\xf4\x17\x4d\xf9\xf8\x72\x59\x94\x19\xaa\xec\x58\xb6\xcf\xd2\xab\xe6\xe3\x0d\x89\x30\xd7\xd2\x6c\xe5\x09\x8f\x59\xf8\x2a\x5d\x23\x22\xdb\x3d\xe4\x70\xe8\x9e\xd6\x9f\x26\xaf\x24\x53\x78\xf4\x6a\x90\x6e\xfd\x6b\xec\x25\x74\x39\x77\x23\xc9\xc6\xc7\x47\x63\x0f\xa5\xe1\x14\x1b\x76\xe3\x3e\xee\x1d\x38\x8f\x07\x30\xa9\x52\x86\x69\xbd\xb2\xe8\x30\xd6\xb4\x15\x85\x6f\xc0\xd7\x8c\x47\xb1\x79\xd3\x10\x6d\x97\xcc\x53\x55\x97\xc6\xc7\x35\xc7\x42\xdd\x03\xbc\xa2\xd6\x43\x07\x69\xa4\x2c\x5f\x25\x88\x61\x3a\x2a\x6c\x26\xab\x1c\x6f\x8b\x13\x70\x3e\x51\xb0\xda\xb4\x2c\xd2\x95\x72\x38\x2a\xa7\x94\x94\x83\xb0\x18\xa3\x3e\xc1\x60\x0b\x38\xbe\x5b\x2a\x59\x08\xd3\x24\xb1\x42\x00\xc5\xad\x1a\x14\x19\xa4\x6f\x33\xc1\x4e\x37\x8c\x0a\x56\x51\x7e\xc9\xd7\xcf\x5c\x05\x1b\xe5\x19\xfc\xe2\xf1\x5a\xab\x77\x76\x96\xde\xb3\xcc\x05\xa2\x32\xd6\x52\x95\xa2\xab\x63\xa5\xf3\x79\xd9\x41\xcd\x6c\x31\x88\xc2\x28\x07\x4f\x23\x9c\xd2\x8d\x09\x01\x1e\x45\xfb\x51\xd7\x5c\x3b\x38\xb3\xd0\x4e\xd2\xac\x18\xac\x11\x28\x61\x69\x46\xc6\x41\x02\x3d\x1a\xb2\xfd\x5a\x25\x73\x34\x3d\x82\xcb\x09\x41\xb7\x2f\xc2\x3f\xda\xf1\x20\xda\x9b\xb4\xc6\x04\x45\xa7\xc2\xed\x13\x0a\x4f\x08\xf9\x47\x3b\x8d\x27\xad\x39\x8a\xb1\x50\xff\x3d\x7d\x39\x06\x5d\x78\xd0\x58\x46\x4f\xeb\xb2\x59\xfb\x29\x82\x08\xd1\xc1\x72\x49\xe0\x86\x62\xe2\xf1\xdc\xa2\x45\x16\x0d\xdd\x7c\x8f\x63\x9a\x51\xe0\xb8\x26\x18\xe2\xc8\xc4\x43\x9b\xa5\x13\x30\xc4\x2f\x35\x0c\xf1\xcb\x9a\xb5\xa8\x7c\x7c\x37\xa3\xe1\x17\x7c\x4a\x49\x0c\xb8\x13\x85\x8e\x34\x65\x31\x48\xb3\x69\x55\xb1\x39\x87\x6a\xb9\x14\x6d\x69\x4b\xf2\x49\xa0\xf0\x7f\xe7\x6a\x93\xb4\xb3\xb3\xed\x51\x16\xa9\xb1\xca\x3f\xd3\x9b\xfb\xcf\x9a\x9a\xe8\x42\x93\xd1\x9b\x56\xa8\xe5\xbf\x85\xe8\x0e\x8b\x19\xf3\x22\x28\xc4\x5f\xa2\x1c\x0c\x4f\xb6\x49\x96\x68\xb1\x6d\x22\xf7\x8c\x45\xbe\xdf\xeb\x1c\xd6\x85\x27\xc0\xd1\xc3\x97\x80\xfe\x2f\x2e\x16\x05\x15\xc4\xed\x4c\x9e\x83\x07\x7e\x4f\x71\xb0\x9b\x62\x98\xe6\xa3\x01\x2b\x10\x34\x57\x3a\x1b\x44\x42\x12\x5b\x0c\x78\x3e\x89\x79\xe2\x90\x0d\xff\x02\x4f\x17\x81\x38\xdb\x45\x18\xc9\x9b\x35\x4b\x56\x45\x64\xe9\xc8\x26\x2e\xfc\x73\xa3\x59\x6e\x86\xf8\xa2\x93\x86\xed\x65\xd1\xaa\x83\x72\x63\x83\x9e\x54\xad\xd2\xdf\x1d\xab\x94\x2d\x78\x46\xab\xe1\xac\x46\x49\x48\x18\xf6\xca\xac\xcb\x2c\x8e\x02\x55\xa3\xe3\x2a\x83\x39\x0a\x60\x7d\x55\x15\xac\xec\xa1\x34\x0b\xa3\xdc\xb6\x14\x6d\x0a\x06\x9e\x44\xfb\x7a\x1b\x0e\x64\xdf\x42\xfb\xd7\x9f\xa1\x3f\x46\xe1\xfb\x5a\xa0\x84\x8f\x8f\xa0\x86\x8f\x64\x11\xa0\x16\xac\x9a\xb7\xc7\x2a\xaa\x2b\x90\xae\x38\x6a\x6c\x4d\x93\xad\x5b\x08\xb3\x73\x9c\x3a\xdf\x54\x2f\x7c\xc7\x06\xa5\x60\xc8\xc7\x7e\x6f\x3c\x41\x7b\x43\x51\x11\x2b\x05\xc3\x11\x20\xf1\x62\xa5\x34\xa7\xca\x35\x3b\xeb\x26\xa6\x2b\xcb\xe5\xa2\xff\xca\x59\x8a\xd0\xf0\x04\x60\xc6\x0d\x0e\x99\x28\x56\x12\x28\x77\x94\xa4\xdf\x1d\x85\x80\x5d\xe1\x72\x0c\xe2\xcb\x33\x68\xb7\xc1\x0e\x9e\xc1\xa5\x60\x51\xdd\xae\xb5\xea\x96\x66\xda\x26\xdf\xe9\xd9\x28\x37\x15\x8a\x7c\x07\x88\x75\x04\xea\xe6\x17\xd3\x29\x7a\x6c\x88\xcc\x3e\x69\x9a\x14\x85\x8a\xbd\xcc\x46\x08\x8d\xab\x9f\x4a\x3a\xa9\x10\x43\xc3\x28\x1c\x44\x7d\x93\x4c\xab\xb2\xd0\x5d\x45\x99\x72\x4e\x91\x89\x71\xc9\x99\xff\x48\x33\x07\x9b\xc2\x66\xa3\x28\x8e\x4d\xa6\x86\xa6\xce\xe8\x6d\x73\xa6\x81\x93\xab\x5d\xed\x3d\x33\x5a\x7f\x38\xd9\xae\x2f\x87\xac\x65\x95\x9b\x4d\x76\xfa\x9a\xdb\xed\xb1\xe2\x8d\xe6\x41\x41\x98\xa3\x9d\x1d\xc5\x36\x0e\xe4\x8b\x3c\x45\x45\xa4\x1b\xc5\xab\x36\x93\x51\x56\xee\x50\x29\x9e\x8d\x9f\x8d\x7d\x51\x70\x39\x15\xb5\x7e\x24\x34\xe8\x5f\x60\xe9\xdc\x08\x74\x03\x77\x7b\x6c\xbe\x6f\xa1\x6d\xca\x1e\x4b\x22\x60\x6f\x42\xc5\x88\x9b\x60\x63\x3f\xa2\x73\xaa\x96\xb5\x91\x5a\x73\x5a\x26\x3d\x67\x59\xf8\x66\x55\xfb\xd7\x63\x67\x72\x9b\xe4\x91\x03\x70\x60\x91\xe3\xb7\xf8\xb8\x26\x0a\x06\xb1\x56\xe3\x58\x07\x79\x0a\x95\x6e\x48\x26\x52\x1b\x28\xc3\xf2\x32\x1b\x65\x34\xe7\x3a\xe5\x03\x95\xcb\x81\x2f\xea\x32\x99\x01\xc0\x80\x1f\xba\x4c\x6a\x39\x4a\x4c\xac\x9a\xea\x9c\xa2\xf0\x49\xcd\x3a\xef\x5b\x68\xe7\x83\x74\x14\x47\xcb\xbe\x64\x86\x0a\x3c\x26\x74\xf8\xb8\x66\x8e\xe7\xe7\xdb\x99\x8d\xa3\xbe\xb0\x32\x88\x35\x56\x5c\x0f\xf5\xd6\xc7\xc2\x42\x3b\x0f\x89\x2b\x5b\x5c\x16\x2c\xc6\xf5\x40\x41\xdd\xae\x6b\xa0\xaa\x29\xe3\x34\xca\x2d\xe0\xae\xe2\xd3\x94\xfc\xe8\xfb\x4a\xae\x9b\xcd\x31\xb2\x85\x47\x1a\x98\x63\xda\x55\x24\x66\x13\x16\x33\x44\x04\xc6\xdc\x02\xb8\xcd\x9b\x0a\xb4\xb2\xa9\xc4\x9d\x12\xaa\xae\x4f\x79\xe3\x00\x98\x3d\x52\x91\x27\xc1\xd3\x85\x4e\xc2\xf5\x49\x1a\xad\xfc\xeb\x14\xf8\xc1\x8e\xff\x84\x32\x5f\x3e\x6e\x0a\x52\xfb\x36\xb1\x99\x89\x15\x26\x6f\x7a\xc3\xb3\x95\x4c\xd7\x48\xe6\x5f\xac\xd6\x6d\x7f\x50\x10\xf0\x78\x82\x8b\x5b\x50\x08\x0a\x3c\xa7\x55\xe8\x5a\x1d\x0f\x7b\x58\x31\x49\x7f\x3d\x9d\x56\x85\x7a\xe2\x24\x92\xe1\x33\x94\xbd\x61\xe4\xcf\x93\x49\x64\x6e\xe7\x09\xe6\xaf\xb2\x3f\xa0\x85\xba\xb4\xc8\x35\xfc\x2b\xaa\xac\xfe\x05\x7d\x0c\xd7\x77\x7c\xfc\x98\xf3\x92\x7f\x05\xee\x59\x10\x49\xde\x1a\x5e\xa5\x9d\x07\xac\xcb\x56\x6d\xbf\x2e\xcd\xb4\x7b\x36\x17\xd3\xeb\x2a\x26\x67\x14\xda\xf3\x8c\x6a\x6b\xe4\xa1\x21\x3e\x0b\xaf\x57\x73\x46\xf1\x53\x9d\xa9\x85\x74\x55\x10\x1a\x7d\x43\x99\xab\x47\x91\x95\xf0\xc9\x86\xcf\xae\x8b\x32\x4b\xd2\x55\x9b\xe1\x36\x70\xaf\x88\xa2\x50\x5c\x98\xee\x28\x23\xab\xb8\x35\xc3\x81\xc9\x28\xc1\x96\x78\x15\x5f\x7d\x4c\xe1\xaf\x8f\x29\x28\x51\x66\x18\x18\xa8\xf9\x9c\x51\xb2\x40\x85\x53\x08\x5c\x9b\xea\x71\x55\xc4\x24\xd0\x65\x84\x16\x27\xf5\x04\xf2\x54\x47\xd5\x2b\xef\xa9\xf6\x47\x39\xca\xa3\x1e\x00\xc0\xc8\x8a\xa6\x15\xeb\xdb\xb4\x9a\x7e\x8b\xe2\xf5\xbd\x1e\x4f\x83\x39\x28\x2c\xa3\xdd\xdc\x8c\x76\x5c\xa6\x0e\x51\xbe\x77\x43\xb1\x99\x3d\x42\x4b\x1c\x39\xcc\xa3\x1d\x15\x94\xdf\x1f\x7b\xbd\x90\xbf\xfa\xf4\x86\x02\xac\xdd\x20\xff\x4d\xbf\xf8\x3f\xfd\x57\xb8\x03\x41\x1b\xa8\xc6\xc4\xae\x8d\x1a\x78\x60\xb6\xfd\xba\xb5\x23\x89\x41\x1d\x83\x91\x4f\x13\xee\x22\xc0\x11\xa1\x5e\xa7\xfb\xb4\x3e\xb2\x6b\x44\x20\xde\xf2\x33\x0d\xe0\x2a\x10\x06\xe5\x09\xa9\xcc\x28\xff\x15\xaa\x04\x00\xf4\xfb\x1c\xa6\x5d\x1d\x33\xea\x2b\x4b\x22\x46\xfa\x2f\x38\x55\x9e\x30\x6c\x48\x02\x76\x40\x05\x1e\xaf\x69\x17\x3d\x7c\x88\xb2\x3f\x4b\x65\x39\x57\xe1\x76\x93\x2a\xa0\xcb\x13\x0a\x3b\x55\x96\x7a\x1c\xb1\x1d\xf9\x89\x7f\xfc\xe7\x3a\x14\x8f\xa1\x2d\xb6\xa7\xa3\xc0\x9b\xbb\x10\x08\x49\xaa\xa1\xa0\x8c\x47\xa8\x2c\xe1\x9a\x87\xb3\x73\x9e\x3b\x61\x9f\xf4\x35\x9f\x40\xa9\x1f\xa6\xf3\xfe\x58\x41\x70\xa7\x08\x26\x02\xfb\xfa\xe4\x86\x1f\x64\x7e\xaa\xe3\x35\xe9\x36\xc7\xcf\x6b\xe2\xb5\xd5\x34\x24\x8c\x64\xbc\xde\x52\x1a\xfb\x1c\x89\x4a\xa3\xca\x9b\x9f\xcc\xf6\x2b\xbb\xde\x9b\xf2\x44\x7a\xe7\x15\x92\x0f\xcc\x67\xb2\xc4\xf5\x7b\xb2\x39\x3a\x81\x68\x49\x00\x91\xcf\xc7\xaa\xb9\x68\x0f\x85\x03\x93\xf4\x6d\xfe\x58\x75\xf1\x48\x96\x28\x82\xdc\x3a\x8f\xe0\x56\x49\xb6\x0b\x7b\xf5\xef\x70\x23\xc2\x85\x4d\x7e\xfc\xf6\x08\x6e\xc3\x5d\x9b\x8b\x58\x08\xe8\xbf\xc5\xca\x0a\x08\xc4\x8f\x35\xc9\xe9\x9a\xa1\x3d\xd4\x52\x69\xfa\x97\x81\x1e\x41\xf2\x3b\x33\xb7\xf9\x13\x7e\x2e\xef\xbf\x7b\x11\x66\x8c\xda\x21\xe5\x73\xbc\x37\x01\x19\xfe\x9a\x57\x90\x1b\xfc\x45\x12\xba\x82\xb1\xfe\x00\xd7\x8d\x48\xf4\x01\x6d\x3a\xb4\x97\x1e\xd0\x9b\x77\x90\xf5\x83\x33\x9e\x1b\x54\xd4\x80\xfe\xdc\xf3\xe8\x44\xc2\x38\xed\xde\x50\x73\x35\x5b\x58\x1e\x14\xb1\xfe\x0f\xff\x65\xa7\x81\x21\x31\xb7\xc5\x2e\x45\xd2\x76\x71\x3c\x41\x51\xa6\xd4\x90\xe9\x27\x9c\xc8\x66\x75\xb1\xb4\x4c\x87\xcf\xc0\x85\x89\xa0\xfb\x84\x4f\xee\x01\xf4\x8e\xdd\xcf\xa5\x05\x3e\x71\xa8\x90\x28\xe9\xa5\x79\x69\xdf\x6c\x69\x3d\xbc\x1f\x8e\x15\x7f\xe7\x0f\x7d\xd5\x6c\xbd\xf2\x45\xa1\x8b\x09\xdd\xcc\xa6\xd3\x16\x3e\xe3\xda\xcf\x99\xcd\x4a\x89\x3f\x64\x72\x94\x6e\x14\x25\x11\x8c\xdd\xc0\x79\xd7\x3b\x00\x14\xaa\x65\x26\x59\x69\x69\x7e\x1c\xcd\xff\xb9\xa9\x60\xd5\x99\x5d\xb5\x49\x69\xf3\x47\xb7\xc3\x50\xb9\x1d\xa7\x87\x2b\x03\xbf\x34\xae\x7f\x14\x78\xf1\xa2\x0d\x7c\x39\xea\xb7\x9c\x06\x0b\x6f\x37\x19\x38\x9e\x6e\xa7\xf8\x1a\xd5\xb7\x6d\x0f\x3b\xa7\x32\xf8\x4b\xae\xfb\xe1\x31\xb9\x1f\x03\x93\x20\x2c\x12\xd5\x8f\x62\xec\xe3\x12\xed\x57\x69\xdb\xd2\xa3\xe2\x3f\x52\xcc\x24\x44\x50\x31\x8d\x8e\x22\xc2\xe1\x0f\xb4\xaa\xcc\x5b\x68\x9d\xf2\xff\xa8\x41\xb4\xb7\x14\x37\x60\xdf\xa6\x59\x3f\x32\xc4\xd3\x8c\x9f\xbb\x1f\x28\x6a\x60\x5c\xac\x70\xc5\xfa\x6b\xba\xdf\x90\x41\xcc\xb5\x6d\x52\x44\x45\x6c\x27\x67\x7c\xb4\x6e\xd3\x85\xda\xb8\xf2\xdc\x81\xb6\x1d\xe6\x8a\xf4\x63\x73\x82\x6f\xca\x15\x33\xe2\xb4\xb2\x3e\xc5\x14\x25\xfb\x6c\xe0\x27\x49\xe4\xab\x4f\x21\xec\xad\xab\xb8\xcd\x1d\xa8\x4c\x2a\x7d\x07\xd7\x7b\x9c\xa2\x82\x13\x8b\x86\xa8\x32\xea\x08\xad\x4e\x13\x23\x61\x31\x88\x92\x15\x4a\x74\x51\xac\x39\xa5\x26\xab\x4f\x35\xf6\x4a\x96\x4b\x1e\xdf\x87\xe3\xc0\x4b\xe0\x63\x55\x06\x1e\x99\xc2\x26\xc5\x4e\xc5\xde\x72\x53\x11\x7c\x82\xf5\x1d\x5e\xff\x03\xed\xd4\x58\x8a\x80\x3f\x51\x0b\x7d\x88\x44\xb1\x9b\xa5\x2c\xde\x21\x1c\x09\x2a\x90\x03\x30\x11\x65\x69\xb0\x90\x0b\x60\xda\x57\x4e\xbb\x51\xb8\x1e\xc6\x88\x82\xdc\x14\xad\x2a\xf9\x06\xbe\xe1\x36\xb0\x26\x2b\x76\xfa\x69\xb3\x47\x3a\x1e\xa3\x70\x8a\x7e\x4a\x44\x94\x14\x5c\x5e\xe1\x42\x4e\xa9\x8e\x4a\xcf\x9a\x5e\xbc\xae\x2a\x22\xf0\x12\x42\xe8\xa5\xaa\x71\x49\x61\xb2\xb0\x88\x42\xd3\x9a\xe0\xe2\xf1\x10\xe6\xf3\x63\x0f\x8d\x8e\x32\xea\x30\x9b\x2e\x8b\xe2\x38\xfb\xe3\xf1\xfd\x6c\x8c\x70\x49\xbf\xaf\x40\x1a\x37\x9c\xb5\x23\x09\xcc\xb8\x0c\x65\x5c\x46\x18\xf9\xfd\xdb\x3d\x0e\xe4\x3c\x5b\x80\x65\xbb\xbb\x06\xc3\xd0\x3c\xa3\x02\xe6\xa9\xf6\x17\xb2\x8c\x7b\x81\xaa\x7f\x30\x59\x27\x9f\x70\xb8\xc4\xbc\x8c\x4d\x18\xeb\xe5\x34\x8e\x49\x78\x74\xca\xaf\xe8\x0f\xc6\x6a\xea\x08\xde\x12\x00\x97\xf7\xc6\xcf\xf0\x27\x45\xe0\x0f\xaa\xd9\x4e\xef\xe9\x7b\xf4\xe6\xf8\xb8\x61\x6a\x7e\x7f\x7b\x60\x46\xb1\xcd\x91\x9e\x62\xdf\xfe\x08\x41\x81\x58\xc3\xea\x0b\xd0\x9c\x3e\xe2\x9d\xe3\x3f\xba\x39\x81\xe8\x59\x4f\xcb\xa7\x94\x1e\xea\xd3\x1d\xba\x5e\xd4\x2b\xae\xa2\x2b\xe9\x44\x25\x0e\x0a\xad\xc4\x87\x84\x06\x16\x26\x89\x96\x23\xd3\xb8\x33\x56\x7c\x5a\x5b\xf0\x90\x30\x14\x67\xe9\x21\xe3\xe1\x5f\x9b\xcc\xcf\x3c\x8b\x00\x4c\xd6\x04\x15\x02\x4c\x60\x6b\xa3\xf5\xed\x39\xee\xc8\xfe\x3d\x74\x27\xf1\xf1\x53\x70\x05\x42\x23\xed\x1b\xd2\x7f\x3b\xd0\x31\x9a\x89\xa3\x37\x99\x93\x40\x4c\x95\xef\xed\x6d\x2a\x21\xec\x61\x94\x44\x79\x98\x45\x5d\x3b\xad\x88\x2f\x78\x7e\x5d\x4e\xaa\xaf\x71\xc8\x24\x35\xe5\xde\x88\x9b\x2c\x32\x6b\xf2\x32\xf3\x09\x97\xd0\x20\x6b\x4e\x64\xe5\x18\x06\xd1\x30\xb7\xf1\x32\x68\x45\x26\x9a\x09\x8e\xe6\xc5\x55\x86\xa0\x3f\x83\xa8\xf0\xc3\x40\x59\xa8\xcb\x4d\x5a\x64\x26\x89\x86\x26\x96\x04\x04\x85\xe3\xef\xe1\xab\x01\xd1\xbe\x32\x31\x78\xdb\x30\x80\x4f\x22\x1e\xae\x52\xd3\xa4\x89\xab\x75\x53\x0a\x4a\xc9\x5d\x71\xd3\x81\x1f\x76\x20\x18\xc4\x3b\xbb\xd2\xb0\x91\x7c\x93\x00\x6d\x0a\x57\x6c\x3f\xe8\xcb\xca\xb4\x64\x51\xeb\xdc\xd5\x51\x70\x07\x4d\x15\x1d\x0e\x22\x2b\xf4\xc2\x3c\xba\x1b\xb8\x5c\xe6\x5c\xbd\x92\x77\x70\x66\xa1\x6d\x68\x8e\x74\x49\x20\xf0\xd3\x1d\xaf\x3b\x36\xad\xd2\xef\x2a\x8d\xee\xcb\x4e\x77\x64\xa9\x4b\x33\x5c\x88\x7b\x64\xc3\xdf\xee\xa7\x6a\xcc\x23\x0f\x4d\x66\x7b\xd3\xe4\x4c\x1d\x94\x73\x69\xa6\x51\xeb\x92\xba\x42\x82\xf1\xdc\xeb\xca\x41\x26\x2f\xa6\x7d\x9a\xcf\x84\x65\xb0\x35\x9f\x8d\x7d\x33\xf9\x8a\xd2\x29\x78\xb4\xe3\x9a\x8a\x59\xd7\x0c\xd3\x04\x4d\x45\x07\xd5\x74\x96\x94\xd3\x08\x91\x59\x71\xbd\xb4\xb4\xec\x0f\x6c\xb6\xc7\x57\xbb\x78\xf2\x0e\x11\xd8\x11\x18\x1d\xd4\x1a\x98\x65\x84\xae\xfb\x95\x67\x91\xd6\xb9\x42\xa8\x6b\x43\x22\xef\xdd\xba\xc4\x58\x70\x44\xc0\x17\x14\x54\x28\x1f\x99\x6c\x05\xda\xaf\xd5\xfa\x6c\xaa\xb2\xd4\x37\x9b\x57\x35\x17\xde\x1a\x55\x85\xdc\xef\xaa\x90\xca\xc7\x9a\x38\x4e\xd3\x84\xf8\xa4\x61\x68\xe0\xf3\x65\x46\xbe\x4a\x3d\x01\x38\xc2\x0b\x15\x88\x28\xd9\x1c\xfe\x8f\x8e\xd3\xc8\x4b\xd7\x39\x45\x57\xd0\x76\x1f\x32\xf8\xe9\xe6\x5e\x9a\x30\x49\xaf\x00\x87\x5a\x8e\xf5\xf3\xbc\x2b\xfc\x8d\xe2\xca\xc3\xf6\x53\x45\x1a\xd5\xea\x28\xd2\xa8\xba\xda\xf6\xc2\x02\xb1\x08\xb5\x94\x9c\xa2\x16\xd6\x39\x5b\xf3\x21\xfb\x16\xda\xf6\x50\x61\x93\x1e\x43\x1d\x24\xfd\xa4\x77\x8b\x1c\xf1\xb4\x2e\xe9\xdd\xad\x81\xa2\xf6\x2d\xb4\x13\x9b\x17\xb1\x55\xe8\x2f\xce\xff\xf9\xa4\xce\xd8\x30\x47\x5c\x16\x59\x3a\xa4\x1e\x55\x75\xad\x8e\xa0\x49\x91\x32\x29\x29\xa9\xcc\x9a\x62\x5a\x89\xea\x5e\x51\x23\x8b\xdf\x1f\x7b\x6a\xeb\xf7\x14\xd5\xe1\x49\x8d\xa6\x8d\x0a\x06\xc9\x4b\x97\xfd\x9c\x02\x70\x9c\x1b\xfb\xc0\x7e\x64\xa2\x6c\x42\xb9\x1b\x69\xb9\xd8\x9c\x7a\xa0\x37\x47\x74\x96\x52\x4f\x16\x7e\x4c\x5f\x17\xbb\xa0\x48\x92\x32\xb3\xde\x2d\x33\x8c\x9c\x61\x17\xc0\x62\xf0\x71\x6d\x3e\x78\xee\x00\xc9\x87\x45\x49\x1f\x4c\x44\x0a\xab\x35\x56\x83\x22\x7a\xf8\xde\xf4\xa3\x30\xe2\x76\x87\x00\x1f\x75\xd6\xf5\xb8\x22\x15\x60\xb5\x75\x4d\xaa\x87\xb0\x81\x25\x89\xa4\x0d\xa2\x44\x03\xcf\x06\xca\xea\x9e\x55\x65\xce\x01\xa9\x4a\x72\x93\x1f\x0b\xe7\x06\xe2\x1e\x54\xd3\xbe\xa0\xab\xe0\x63\xcd\xa8\x72\xa3\x11\x01\x34\xca\xd2\xe5\xb4\x4c\x7a\x8a\xa1\x1f\x48\x69\x51\x5a\x7b\xdc\x79\x99\xbf\x6e\x90\x56\x00\x10\xf3\xd9\xd8\x63\xab\x4f\x69\xaa\xde\x2b\xb5\xb5\x3f\x3b\xdb\xce\x6c\x6c\x4d\x3e\x49\x7b\x01\x36\x3f\xd1\x02\xaf\xb3\x43\xbd\xda\x4e\xec\xaa\xcd\x8a\x81\xad\x22\xaf\x96\xaf\xe5\x6e\xfa\xb2\xe0\x3f\xdd\x6c\xd2\xd2\x49\xd2\x84\xe4\xac\x14\xe2\xf0\x7c\xa0\x67\xbe\x9f\x56\x0c\xbf\x69\xc1\x22\x6f\x5e\xf5\x43\x11\x1a\x5c\x18\xff\xff\x1f\x02\xdc\x00\x7d\xac\xa7\xab\x86\x93\xe0\x14\x9b\x4f\xc6\x5f\xf3\x6c\x4f\xc3\x51\x4c\xd0\x44\x4f\xc8\xca\x18\x69\xd5\xea\xb9\xa1\xf0\x3f\x83\xc8\xa9\xd4\xc1\x11\xa0\xca\xcf\xc7\x8a\x79\x38\x34\x59\x91\x82\xa5\xf8\x25\x47\x1d\xdf\x52\xa3\xcb\xbe\xf3\x96\x97\x62\xe5\x91\x10\x9d\x54\x22\x49\x27\x9b\x9e\xa4\x29\x06\xb1\x2d\xdc\x7c\x02\x42\x0f\x16\xb4\xe4\x93\x60\x7b\x17\xf6\xc5\x76\x6e\xd6\x77\x79\x1e\x39\xd1\xae\x71\x21\xdd\xec\x2c\xd7\x25\xb9\xfa\x88\xe8\xe4\x02\x4d\x19\xa2\x50\x75\x05\xd9\x00\xa6\x1a\xcf\x37\x75\xcd\x46\xf6\xf5\x34\xf3\x03\xd6\x6e\x50\xd1\x25\x81\xa7\xc7\x7b\x15\x91\x42\x32\xad\x2a\x48\x27\x29\x0e\x96\x63\xc5\x50\x71\x92\xb2\x7f\x39\xf6\x34\xaa\xfd\xd4\x82\x98\x5e\x78\xcf\xe9\x1d\xa3\x94\x03\x4a\x65\xd4\xac\xbe\xab\x58\x80\x87\x76\x98\x66\xeb\x53\x8a\x05\xf8\x82\x22\x6f\xf8\x48\x71\xf3\x5d\xd7\xc0\x84\x41\x96\x0e\xd3\x3c\x1d\x82\xb3\x08\x7e\xef\x47\xb4\x1e\xf1\x96\x20\xbe\x8c\x40\xef\x94\x23\x2d\x5b\x33\x45\xce\xcb\xb0\xd1\x21\x6e\x7f\x80\x80\xa7\x2c\xa7\x99\x9b\x65\xdb\x22\xc2\xdf\xad\x4b\x93\x16\x9a\x73\x3f\x54\xb7\x7e\xa4\x2a\x5d\x3f\x02\x83\x08\x5b\x86\x10\x6d\x14\x44\x46\x1c\xd8\xf0\x89\x8b\xa6\xb2\xb4\x2c\xec\x4e\xaf\xb9\xf3\x3d\xcd\xa6\xc2\x13\x2f\xb2\x6b\x28\xac\x41\x31\xe0\xbc\x62\x44\xd8\xd5\xf1\xb9\x73\x44\x57\xaf\x60\xbe\x57\x03\xc5\x81\x73\xd5\xf7\xf4\x62\x93\xe7\x51\x98\xb3\xa2\x15\xd5\x7d\xb6\x2e\xa9\xdc\x7a\x90\x96\xb9\x1d\xa4\x71\x2f\x6f\xa9\x69\xbb\xf3\xb8\x3a\x3e\xa9\x59\xce\xf9\xf9\x76\x2f\xed\xf5\x48\x0a\x78\xca\x37\x7f\xce\xc1\x10\x63\x01\xfd\xe7\xb1\xf7\xd3\x55\x48\xe2\xc6\x05\x22\x01\xd5\x34\x41\xf4\x3c\xb6\x24\x8f\xfa\x89\x89\xab\x08\xd6\x73\x4e\x9f\x53\x8a\x22\x9b\x4a\x15\x77\x73\x12\x9e\xea\x29\x2e\x73\x33\x2c\x33\x13\x4d\xa9\x92\xd9\xdf\x44\x98\xa1\xf1\x61\x48\x09\xeb\x6a\x31\xf3\xf3\xed\x22\x23\x0e\x36\xc4\x8e\x92\x5f\xd0\xb7\x89\x52\x72\x53\x15\x89\xe4\x2a\xe8\xc1\x60\x40\x05\xbd\x1f\x61\x46\xae\xac\x37\x52\xfb\xe9\xce\xd3\xae\x10\xbb\x6a\xf3\x22\xea\x8b\x72\x96\xce\x43\x60\xb5\xef\xc0\x23\xf2\x2c\x9c\x86\x1e\xa4\x61\x64\x0b\xe6\xc4\x5e\x74\xb5\xaa\xd6\x92\xaf\x61\xf9\x54\xe9\x37\xf7\x7f\xab\xe5\xab\x31\x37\x35\xa5\x59\x9d\x1b\xb6\xb2\x33\x34\xa8\xd8\xf2\x43\x72\x0f\x94\x2c\xd6\x04\x11\x80\x01\xc0\x5d\x86\x88\xe8\x8b\xf9\x24\x68\x72\x6e\x65\xe2\x51\x48\x58\x0f\x18\xa7\x01\xb9\x02\x1f\xd7\x2e\x89\x7a\x7d\x6b\x89\x40\xef\x9d\x8e\x81\x6f\xab\xfb\x7a\x62\xb7\xf2\x9b\xe2\x73\x1d\x17\x8b\x17\xd8\xf1\x54\x7b\x69\x59\x44\x6f\x94\x40\xfa\xc1\x94\x1d\x56\xb4\xcd\x87\x6b\xd1\x18\xa1\xed\x0f\x8d\xd2\x0c\x2e\x56\x44\x67\x5b\x4a\x8c\xb6\x81\xe5\x32\x34\x65\xce\xa3\x90\x02\x21\x54\xad\xa8\x8d\x1a\x6f\x13\x89\x15\xad\x88\xef\x81\x2d\xfc\x6d\xcd\x84\xfc\xdb\xaa\x50\x3c\x8a\x8a\x70\xd0\xf2\x84\xf8\xc7\xc7\x9e\xde\xfe\xf8\x43\xe7\xf6\x46\x26\x2b\xaa\x78\xcf\xa9\x14\x7f\x00\x33\x22\xe2\x8f\xf5\x4e\xfc\xc0\x44\x4e\x93\xc6\x61\x29\x7d\xe6\x7c\xec\xa1\x3f\xb5\x5e\x16\x66\xc5\xb4\x2a\x27\x87\xe6\xfc\x31\x4d\x94\x72\xac\x61\x54\x64\x7f\x7b\x60\x92\x9e\xfb\x35\x96\xf2\x47\x19\x44\x74\xfd\xeb\x31\xdd\x62\x3b\x4a\xc2\xb8\xec\xc9\xc7\x90\x81\xb3\xea\x2c\x9f\x34\xcc\x23\x2e\x12\xb5\x7b\x1c\x47\x7d\x37\xd5\x80\x5e\xc3\xff\x85\xcb\xe4\x93\xfa\x4b\x9a\x6b\x17\x69\x82\xfe\x9a\xee\xc9\xf1\xb1\x5b\x63\x66\x34\x8a\x4d\xd9\xcb\x51\xeb\xc1\xfe\x69\xa9\xc1\x63\x88\x5d\xf1\x78\x0f\x9e\xa8\x30\x33\x36\xd5\xe3\xec\xa1\x81\x71\x4f\x46\xca\xaf\xf4\x29\xa9\xb9\x7a\x8b\xdb\x4d\x93\xde\xe3\xf4\x87\x08\xa7\xbf\xab\xca\x3a\xb7\x02\x95\xf4\xb2\x88\x15\xe3\xc2\x50\x9e\x84\xd1\x3a\x3b\xd1\xfc\x52\xc4\xb1\xe7\x15\x3d\xf5\x61\xcd\x1e\xfc\x29\xcc\x15\xba\x28\x9f\xd3\x62\x14\x39\x19\x65\x9e\xa3\x64\xdd\x64\x3d\x3c\x13\x6c\xf9\x4f\x83\x09\x93\x57\x5d\x1c\xba\x5b\x37\x70\x7b\x28\xcc\x9d\x70\x9d\xa6\x28\x09\xab\x68\x41\x8f\xf2\xbf\xa7\xa6\x5c\x2f\xe1\x96\xa4\x4a\xe9\x6b\x1b\x65\xc2\xaa\xec\x18\xec\x07\x1b\x1f\x1f\x2b\x20\x28\xb3\x26\xd9\x8c\xf5\x41\x85\x71\xb6\x7a\x82\x42\x38\xeb\x4b\x7a\xfd\x32\xea\xf9\x89\x35\x29\x06\xa3\x12\xc4\xc7\x13\xfd\xdc\x2a\x9d\xcd\x11\x5a\x89\xab\xf5\x45\x9e\xbf\x0f\x1f\x2c\x0c\x0d\xd2\xa3\xcf\xcb\x7c\x14\x85\x51\x5a\x6a\xd9\xb3\x63\x81\x6f\x5a\x1e\x53\xf9\x68\x6e\x8d\x08\x38\xb3\x90\x9d\x4a\x47\x2f\x8e\x3d\xe6\x6e\x35\x8d\xcb\xa4\x30\x59\x84\x49\xe5\x97\xb8\xa9\x7d\x4c\xa1\xb7\x8e\xd5\x20\x24\xc4\x60\x9b\x4e\x79\xf1\xd6\x07\x14\x40\x0a\x87\xfe\x04\xe0\x70\xfb\xbe\x59\x9a\x69\x8f\xca\x84\xc7\xa2\x35\x9d\x8a\x08\xfb\x88\x15\x5f\x4e\xd3\xc2\xf4\x39\x7d\x77\x83\x91\x0b\x0b\x72\x1c\x3c\x26\xf0\x4a\x1e\xa6\xc7\x22\xc0\x43\xe7\x63\xf7\xde\x33\xf3\x66\x9a\xa1\x2d\x29\xf4\x53\xbe\x3b\x74\x5b\x71\x1f\xd4\x45\x8f\x08\x08\x56\x94\x59\x02\xea\x44\x56\x25\x9c\x0c\xd4\xfd\xc6\x7f\x5b\xab\xa8\x44\x71\x5a\x58\xc4\x20\x82\x80\xf0\x35\x10\x70\x0d\x21\x04\xb9\x5a\x3d\x26\x87\xad\x2d\x32\x43\x63\xff\xac\xee\x2c\x23\x7a\xc7\x35\x09\xec\x71\xd5\x9b\x31\x59\xbf\x94\x9d\x80\xc2\xcd\x25\x8a\x02\x64\x98\x59\x15\xb9\xb5\xf2\x66\xb7\xcc\x5d\x59\x41\x98\x7d\x15\x5e\xe2\xa2\x9b\x52\x1e\x99\x3c\xa7\xbc\x06\xde\xe1\xed\xc0\x17\xe9\xb8\xbb\x82\x84\xe7\x41\xe0\xfd\xc9\xdb\x48\xea\x11\x88\x7c\xaa\xb5\xb9\xfc\xac\x72\x58\xe6\x45\x3a\x54\xea\xf3\x3b\x80\xb8\x74\x16\x66\x69\xc6\xf1\xa8\x6a\x23\x59\x97\x32\xd8\x5f\x25\x83\xfc\xb4\xb6\xb0\xf5\xb7\x2e\x35\xcd\x48\xc5\x51\xd7\x66\x26\x16\xdf\x0a\x38\xd6\x3b\x63\x35\x1d\xfb\x4e\xf0\xbc\x9a\x91\x36\x49\x4e\x45\x32\xae\x12\x2e\x32\xc6\xe8\x0e\xbd\x71\x3e\x56\x3d\xe9\x30\x8d\xd3\x61\x37\x62\xe2\x3c\xb7\x95\x54\x73\x4b\x6f\x2b\xad\x43\x53\x1f\x05\x8c\xf2\xcc\xd8\x18\x53\x50\xb0\xa6\xcc\xc8\xcc\x27\xaa\x0a\x2d\xbd\xd9\x69\x3f\x39\x71\x62\xac\xd4\xac\x91\x81\x89\xf4\x54\xf5\x58\x91\x64\xdc\x51\xac\xb1\x43\x93\x88\xd7\x6d\x2d\x2d\x3a\xbe\x48\x6a\x33\x0b\x61\xa4\xaf\x2f\xae\xad\x27\x48\xbb\x04\x74\xaa\x38\xa5\x4f\xa9\xee\xe7\x5a\x9a\xc6\xc2\x81\x00\xdc\xcf\x31\x0d\x02\x3a\x56\x23\x46\x5f\x5a\x6c\xe7\x45\x5a\x65\x0a\x55\x2e\xa4\xd9\xe1\xc4\x55\xd5\x01\xff\x2f\xb5\x4d\xe5\xbf\x4d\x91\x66\x2d\x3d\x1a\xd0\x5a\xf0\x23\x03\x6a\x3a\x22\x59\x5f\x33\xeb\xd3\xad\x87\xf1\xe4\x4f\x8c\x25\x55\x5f\x27\xc5\x91\x06\xc5\xf1\xd7\xd3\x28\x29\xa6\xd5\x5c\x0a\x54\xa7\x00\x6a\x7a\xa6\xa3\xb4\x3d\x2e\xaa\x2a\xe9\x53\x1b\x0a\xbd\x17\xf5\x13\xdb\x43\x0b\xd1\x81\x10\x3d\xcd\x6a\xa0\x44\x7e\xb9\x4e\xca\x27\x81\x6f\x1c\x5f\xd2\x03\x6f\xc2\x8b\x8b\x4d\xfc\xbd\xda\x55\x2f\x2c\xb4\x07\xe9\x68\x52\x3b\xf1\x5d\x58\x33\xa1\x35\xaf\x3f\xe1\xb9\xf6\xc0\x66\xdd\x28\x8c\x7a\x16\xb5\x30\xec\x15\xd0\x32\x32\x30\x94\x80\x53\x52\x1b\x68\x40\xe1\x86\x59\x34\x8c\x12\x13\x47\xc5\x7a\x4b\x03\xc3\xe9\xda\x05\x19\xae\xd9\xf6\x49\xf5\x2d\x4d\x60\x3f\xf1\x23\xa0\x45\x45\x76\x71\x5d\xb5\x81\x8f\x34\x74\x78\xf6\xb7\xd3\xb2\xa8\x7c\x32\x9b\x38\xa6\xc9\x09\x26\x38\x73\x7c\x1a\x16\x15\x11\x95\x55\xf2\x29\xc5\xa9\x72\x17\x30\x0b\x66\x7c\xa3\xbb\x05\x3a\xd4\x4b\x70\xbf\x5e\xe6\x45\xb4\xbc\xae\xa9\x0d\x74\x46\x7e\x51\x15\x16\x08\xa9\xa9\xf8\x1e\xb9\xb3\x27\x65\x5c\x95\x02\x97\x71\x1c\xad\x9a\x04\x26\x87\x45\xbf\xe9\x76\x45\x00\xbc\x61\xa0\x30\x4c\xd3\xd8\xa5\x54\x8e\xd4\x74\xc1\x93\x9a\x3e\xa9\xc4\xcf\xe3\x38\x32\x43\xba\x66\xdc\xe8\x77\xe8\xdb\xf9\x58\x0d\xc0\x61\x94\x28\x2a\x40\xe2\xe6\xd4\xf3\xe6\x0e\x70\xc3\xf6\x0f\xd0\x1b\xe5\x13\x8a\x02\xf8\x8f\xd4\xcf\x99\xd0\xf4\xec\xd0\xc2\x97\x09\xab\x86\x76\x50\x4f\xe8\x01\x15\x2e\x8e\x8b\x13\x6a\x2d\x78\xef\xd4\x84\x4b\x19\x94\x49\x2f\xb3\x3d\xc0\x4c\x26\x18\xbf\xf9\x44\x55\x0c\xd7\x06\xa9\x5d\xb5\xd9\xb4\x1f\x5c\x7c\xa0\xa3\x55\x8e\x5c\x98\xd5\x98\x36\x18\x6e\xe6\xbe\x9a\x3c\x36\xbd\xb4\xcb\x73\x2f\x5c\x8d\x82\xa5\x95\xd2\x94\xb7\x7d\x69\x3f\x8a\x57\x99\xea\x96\xe7\x32\xb0\xcf\xdc\x90\x86\x83\xe0\x1e\xd3\xc8\x8d\x63\xea\x8a\x79\x20\x68\x5a\xb9\xbf\x40\x65\x37\xbf\x43\xdf\x81\xba\xcb\x15\xdd\x13\xd1\x92\xf4\x49\x5e\xec\xf4\x58\xa8\x5d\xb0\x4a\x22\x58\xab\xa2\xe4\xf3\x24\x73\x22\xb6\xc6\xf3\xff\x7e\xd2\xbc\xb9\xc2\xb0\xcc\x1c\xcc\x1d\xd0\x80\xbb\x78\x14\x7c\x32\x01\x01\xc8\x6d\xfe\xec\x94\xd7\x31\xbe\x81\x1f\xd6\x9a\x5b\x08\xd9\x2e\x6b\xbf\xc5\xf3\x34\x92\x34\xd1\x5e\x74\x92\x21\xce\x32\x1f\xa6\x71\x1c\x0c\x62\xdf\xc2\x28\x11\x16\xf2\xc7\x68\xa2\x39\xb2\x89\x09\xe0\x52\xf5\x10\x58\xaf\x44\xb5\xf4\x7f\x8f\x40\x07\x80\xb8\xdc\xc6\x84\x37\x32\xce\x8b\xc4\xd9\xc6\xc7\x8a\x2b\xf8\x0c\xd5\x25\xf1\x34\xcf\x32\x03\x04\x5f\x22\x3d\x42\x54\x4e\xbd\x2c\xfc\x9a\x35\x23\xd1\x53\x93\x09\x91\x96\x9a\x1c\x69\xc0\x43\x2e\xc7\x06\xac\x7d\x4c\xc8\xaa\x26\x34\x4f\xd6\x3a\x3a\x34\x0f\x5b\xd8\x70\x90\xa4\x71\xda\x47\x7a\x2a\x26\x8b\x1e\x39\x9f\x28\x4a\xc1\xbe\xf5\xd0\x10\xc5\xb3\x0a\xec\x35\x1f\x37\xf4\xa5\xda\x49\x5a\x0c\xa4\x0e\xe8\x64\x64\xfc\xf8\xd4\x77\x91\x2e\xe2\x59\x9e\x1b\x4b\xb4\xde\xb3\xc0\xff\x33\x50\x9f\xd0\x98\x75\xd0\x3e\xd5\x60\x73\x3d\x75\xfb\x20\x50\x93\x33\x97\x14\xdd\xbb\x16\x11\x78\xe9\x2f\xbe\x04\x9b\x29\x44\x1e\xd5\x2b\x10\x1e\x0f\x45\xb7\x18\xf5\x7a\xa4\xf1\xeb\xdc\xd0\x7d\x25\xa2\x79\x87\x3c\x19\xd6\xfe\x7f\xa0\xb5\xc5\x6a\xe2\x9a\xef\xe5\x8c\xea\x2e\x74\x4d\xb8\xf2\xa4\x62\x8e\x38\x0a\xf4\x88\x08\xc4\x54\x2b\x15\x95\xb6\xfb\x63\x3f\x20\xc1\x09\x2a\xb2\x91\xcf\x15\xe5\x21\x83\xc7\x99\x5c\x19\x61\x34\x97\x0a\xd0\xf7\xc6\xb3\x3e\x37\xde\xf1\x75\x27\x50\xa2\x38\x2c\x8e\x62\x03\x31\xc5\x87\xd7\xa8\xfc\x5b\xcf\xfd\xbf\x8c\xfd\x59\x90\x24\xd7\x75\x26\x08\x57\x45\x66\x56\xa1\x50\x24\x50\x00\x08\xb6\xd8\xad\xb6\x3f\xd4\xbf\xda\xa8\x31\xa3\x6a\x46\xd2\xc8\x46\xc6\x17\x0f\xcb\x4c\x0a\xac\xb4\x66\x56\x4e\x56\x11\x50\xe3\x65\xe0\xe1\x71\x23\xc2\x91\x1e\xee\x41\x5f\x32\x91\x78\x9b\x79\x9a\xa7\xb6\xb1\xb6\x19\xeb\x51\xdb\x4c\x77\x5b\x9b\x96\x99\xd6\x32\xa2\xd4\x92\x9a\x2d\x89\x91\x24\xc5\x15\x5c\x00\x62\x21\x40\x6c\xb5\xef\x55\x59\x7b\x65\x6d\x89\x31\x3f\xdf\x39\xf7\x1e\x4f\x77\xb4\xcd\x13\xdc\x51\x91\x11\xbe\xdc\x7b\xd6\xef\x7c\x1f\x1a\xe5\x40\x30\x83\x8a\x14\xc5\xd7\x87\x78\x51\xd8\xb5\x77\x54\x56\x6b\xfc\x34\x1f\x7e\xa5\xf0\x57\xcc\x1e\x47\xf4\x81\xcd\x8a\x9e\x06\x93\xf1\xc8\x38\x11\x7d\xbf\xd4\x4b\x14\x5b\x34\x83\x31\x10\xc0\xdd\x98\x7c\xca\x61\x92\xc2\x8c\xc6\xf0\x23\x2e\x45\x49\x69\x55\x43\x44\x54\xa8\x64\x7c\x4b\x44\x26\x13\xb6\x95\xd1\x5b\x0d\xcb\x1a\x1d\xe4\x10\x5f\x09\x31\x2c\x59\x21\x06\x6d\x99\x86\x32\x39\x2e\x8a\x01\xae\x20\x70\xca\x7b\x52\xc9\xb4\xe6\x7e\x08\x07\x5b\x1a\x15\x9e\x86\x20\x7d\x29\x99\x8c\x70\x3d\xac\x2c\x48\x52\x3c\x34\xc4\x9f\xd3\x40\x8f\x33\x40\x1a\xc6\xc7\xa2\xa5\xcb\xb7\x2d\x30\x71\x17\xde\x70\x25\x95\x79\x94\xb5\xb8\x4d\x02\xd5\x5f\x90\xd8\x5a\x4d\x92\x85\x05\xee\x27\x5d\x80\x09\x44\x9b\xf0\xbe\x8a\x59\xee\x12\xf7\x8b\xe5\xa3\x2a\xd7\x2b\x9a\x90\x0f\xb0\x5e\xb9\x1a\x8e\x2e\x04\xde\xdc\xdd\x5a\xf8\xf8\xdb\xcf\xb5\x47\x45\xdc\x03\x64\x00\xfb\x85\x61\x87\x7c\xa2\x8a\xf0\xbd\x34\x8c\x57\x4c\xda\x2a\x2d\x27\x36\xc3\x0d\x60\x62\xf9\x44\x79\xd5\xdc\x50\xfa\x56\x1a\x78\xb4\x70\x21\x52\xcf\xc7\x0d\xba\x4d\x47\xda\xa9\xe9\x27\xe9\x08\x49\x39\xee\xe3\xe7\xf0\xfb\x42\xfc\x5e\x7e\x01\x12\xf4\x9b\xde\xd3\xf6\xd5\x84\x71\x6e\xd2\x71\x0a\xb6\xee\x72\xd1\xb1\xdf\x21\xc3\x2f\x3e\x48\x32\xdf\x15\x9f\x45\xeb\x2c\xcf\x6f\x79\xa7\x7c\xa2\xbe\xd4\x1f\xa4\x61\x50\x44\x79\x91\x96\x8b\xa9\x7c\x98\x48\x8f\xdf\xc7\x8e\xe5\x93\x06\x8a\xf6\xa5\x76\x14\xe6\x82\x6d\x40\x66\xcf\x5d\x36\x3e\x51\x35\x1d\xa2\x6b\x01\x23\xab\xc8\xa7\x94\xd7\xcf\xc7\x96\x35\xbb\x9f\xa4\x86\x3e\xca\x68\x58\x6c\x24\x8c\x1c\x09\x4e\x4e\xa5\xf9\xef\x36\xa1\x0c\x09\xed\xed\x20\x2e\x22\x30\xa4\x86\x99\x9d\x70\x50\x96\xa4\x86\xf7\xaf\x74\x46\xcb\x9f\x92\x96\xe9\x53\x7a\xce\x00\x2a\x77\xd9\x14\x6d\x21\x3d\x92\x0a\x74\x05\x48\x51\xc4\x5d\x29\x43\xf4\x52\x10\xe6\xd4\x44\x9e\x52\x12\x94\x0f\xb4\x9e\xca\x44\x3b\xc5\x4f\xa8\x3a\x58\xfe\x58\xcb\x52\xa8\xfc\x0d\x5e\x07\x22\xf3\xd7\xf1\x14\x10\x51\xff\x8c\xac\x34\x56\x0b\x4f\xcc\xda\x81\xbf\xf2\x09\x28\x15\xe8\x23\x96\xa7\x5c\x8d\x94\x5d\x27\x67\x2f\xb1\x93\xe6\x7c\x40\x71\x0b\xde\x64\x77\x47\x95\x90\x2e\x4d\xaa\x4f\xe1\x9f\x1d\xb1\xf5\xbf\x26\xb5\xb0\x9c\x18\xf1\x97\x67\xed\xa5\xb4\x2c\x9b\x38\x63\xfc\x11\x76\xdc\xaa\xb7\x4e\x96\x48\x41\x1b\xa9\x9b\xbd\x60\xba\x61\xfc\xc9\xb7\x2b\x65\x1f\x37\x09\x3a\x36\x41\xe8\x47\x39\x72\x65\xc0\xf7\x66\xdc\xa0\xce\x45\xee\xbe\xa8\xe4\xf4\x79\x8b\x5c\xd5\x06\xd6\x14\xe3\x96\xd2\x3f\x79\x0f\x0f\x91\x4f\x6a\x01\xcf\xc2\x42\x7b\x60\x46\x9c\x04\x20\x8e\x7b\x8d\x38\x02\xf8\xb8\xb6\x5c\x17\x16\xda\xe3\xe1\x7a\x06\x54\x8a\xaa\xb5\x9d\x55\xf9\xff\x59\x35\x02\x2c\x82\x6f\x74\xf1\x95\xc1\x24\xa9\x15\xec\x7c\x80\x47\x0f\x33\x09\x15\xed\x3d\x61\x98\x2b\x9f\x9f\x20\xcd\x1d\x92\x68\x64\xfc\x38\xdb\x4f\x0f\xda\xaa\xa3\x58\xc8\x1e\x7a\x33\x88\x3a\x77\x77\x14\xf2\x7f\xb3\xa2\x03\xa3\xc0\xea\xe8\xec\x23\x62\x98\x41\xe4\x6e\x15\x11\xe6\x8f\xb2\x91\xd8\x9a\x38\x0e\x85\x73\x30\xdf\xfc\xa1\x9a\xf9\x9e\x9b\x6f\xaf\x1b\x3f\x65\x7e\x4d\xe4\x40\x3f\xe3\xf5\x2a\xc4\xe4\xf4\x2c\x00\x54\xb8\x8a\xba\x49\xee\x0f\xa4\x9d\xf3\x4f\x4a\x87\x27\x75\x9e\x72\xcd\x22\x3a\x7b\x9d\xe8\xce\x84\x60\xb2\xbc\x1c\x14\x33\xae\xa3\x80\x64\x09\xef\x94\x12\x09\x0d\x6d\x89\x9e\x34\xbd\x0c\x69\x5a\xa9\x38\xe5\x7d\xdc\x8e\xed\x10\x7e\xf9\x8b\xdc\x98\xf8\x0e\x82\x73\x61\xad\xa2\x99\x33\x56\x34\x02\xd7\x05\x82\xd0\xab\x44\x6a\x2c\x6a\xa4\x8a\xed\xe7\x55\x4f\x89\x4d\x5d\x83\x37\xe4\xb1\x63\x78\x64\xdb\x4d\x9b\x9b\xe7\xe2\xc3\x8f\x88\x02\x00\x3b\xf9\x9b\x94\xea\x22\x1d\x78\x38\x51\xd4\xb3\xdf\xa5\xf7\x62\x87\x9f\x6c\x9b\xfe\x75\x8a\xf0\x64\x92\xb1\x4c\xb4\xb0\x3c\xae\x72\xce\xc0\xca\x1f\xa8\x3e\xc1\xa4\x03\x3f\x8e\x68\xe0\x3c\x62\x06\x91\xc8\xd5\x5c\x83\xd7\x11\xbe\xc1\x76\x9d\x23\xd2\x63\x69\x88\x36\x54\x61\x2c\xc1\x45\x18\xb4\x5c\xa9\x0a\x18\x34\x3e\x6e\xec\x3b\xa5\x26\x30\x04\x3a\x79\x76\xd6\x0a\x40\x29\x48\xf7\x05\x05\xef\x27\x2e\xff\xac\xe5\xf0\x63\x0f\xe9\x61\xf1\x71\x53\xe9\x22\xf2\xd7\x93\xbe\xa8\xac\x89\x6c\x91\x5b\xf8\x97\x14\x49\xe1\x8b\x45\x1a\x66\xbd\x90\x64\x3a\x5a\xca\x1a\x9f\x82\xfd\xe1\x13\xa5\xa4\x64\x5e\xf2\x47\xe8\xe3\xb8\xc1\x84\x4d\xdd\x31\xdb\x54\x29\x7b\x37\x19\x75\x4d\xfa\xf1\xe4\x87\x2e\xd3\x38\x72\x70\xcc\x01\xa6\x15\x5d\x2e\xd7\x93\xcc\xbe\x37\x95\xd0\xfa\x61\x6a\xba\x7e\x14\x65\xaa\x70\x5a\x85\x5d\x37\x88\x48\x1d\x69\xf7\xc2\x6c\x1c\xf9\xeb\x92\x69\xc3\xfc\x9f\xc2\x1d\xf0\x89\xa7\xd9\xaa\xb2\x2c\x8c\xa6\xdd\xf0\xca\xbb\x74\x03\xb6\x0e\x5f\x3e\x24\x58\xec\x9b\x13\x55\x6c\xbf\xd9\x04\xdc\xcc\x72\xe3\x47\x96\x65\x04\xd6\xf1\x3e\xbd\x17\xc1\x8c\xb7\x2c\x83\xfb\x59\x35\x50\x98\x25\x23\x53\xa6\x86\x9f\x85\xd9\x87\xc3\xf9\x00\xa1\x1f\x9f\xd4\xac\xf8\xa1\xc5\xf6\x5a\x98\x05\x49\x9c\x85\x80\x2f\xda\x68\xb4\x7c\xac\x02\xd4\x70\x76\xb6\x1f\xf9\x6b\xd9\x54\xb9\xd7\x38\xa1\xc1\x26\x44\x7a\xbf\xe5\x39\x69\x92\x4b\x8a\x82\x6d\xc5\x02\xba\x60\x84\x98\x8f\x89\x4f\x36\xf6\xab\xd1\xc2\x29\x35\x9e\x87\xb6\x93\x68\x49\x94\xc6\x0d\x36\x68\x4b\xc1\x20\x32\x7f\x0d\x95\x37\x9e\xfd\xa8\xcc\x81\x7c\x5a\x35\x08\xe2\xc0\xc4\x79\xea\xbb\x8e\x82\x8c\xe6\x39\x50\xe0\x09\x15\x34\x65\x3e\x35\xa7\x73\xa6\x7e\xc5\xfa\x7a\x45\x75\xe7\x5e\x51\x22\xe5\xe3\x34\x19\x9b\x08\x75\x36\x81\x7e\x2b\x06\x97\x4d\x55\x58\x1a\x25\x71\x98\x27\xe9\x74\x69\xde\x14\x98\x62\xd1\x51\xd4\xdb\x1e\x0f\x17\xa1\xf9\x1f\x6c\x63\x3b\x19\x97\x99\x88\x14\x1c\x2d\xb5\xa8\xa5\xf9\x68\x1c\x5f\x49\xba\x54\xa8\xcf\x13\x45\x1f\xf8\x06\xe5\xdb\x7c\xac\xf0\x2d\xdd\x22\x4d\x93\x62\x30\x84\x29\x91\x08\xae\x7c\xb3\x7c\xac\x72\xc3\x62\x3c\x4c\x22\xb4\x01\x91\xba\x6d\xd1\x95\xf0\xb1\xad\xbe\xf4\xfd\x30\x2d\xf7\xb7\x8b\x02\x41\x26\x24\xb5\x5a\xd7\x3b\x5f\xf3\x57\x0c\x35\x42\x60\xe3\xa1\x8c\xcc\xc7\x4d\x7b\xc5\x8f\xc2\xcc\x4f\x7b\x7e\xab\x62\x06\x5a\x8a\x02\xa3\xc1\xee\xad\xad\x27\x8e\x54\x1d\xfb\xeb\x2e\x16\x3c\x9f\x68\xd3\x14\x19\x3f\x00\x83\x20\x62\x06\x2d\x61\x76\x77\xf2\x28\x7f\x7b\xfb\xd0\xe2\x2f\xc1\xa3\x60\xfc\x89\x6b\x60\x48\x51\x7f\x06\xa7\x2b\x5b\xbe\x7c\x94\xd2\x9d\x50\x5a\x5a\x4f\x75\x5c\x28\xf7\x2f\x0f\x6c\xb8\xee\x15\xb0\xc4\x52\x04\x26\x87\x04\x44\xf9\x23\x1b\x0a\xc1\xfd\x08\x4d\x86\xb1\xc2\x1c\xea\xe7\x48\x4c\xdf\xf2\x14\xf7\xee\x1e\x64\xc4\x68\x85\xce\x10\x25\x3e\x0b\x43\x4f\x9c\x2b\xe2\xc2\x01\x76\xff\x27\x3b\xa5\x01\xc7\x57\xed\xdb\x20\x87\x6f\x9b\x83\x5f\xf8\x1d\x21\x68\xc7\x5a\x45\x3f\xf2\xd3\x98\x4b\x47\x43\xf2\x12\x3b\x4d\x7c\xc1\x19\xcf\xf1\xf9\xdf\xa6\x24\x9e\x29\xf5\x29\x0d\xc4\xc3\xba\x4b\xbe\x5f\xbb\x6c\x99\xa4\xa1\x68\xc1\xca\xc6\x3a\xda\xe1\x3d\x1b\xbb\x7f\x99\xab\x21\xf7\x28\x58\x60\xb5\x1e\xd4\x67\x10\xf7\x4d\x6d\x68\x5a\xe7\x48\x7a\x0e\xe5\x55\x0b\x58\x9c\x1e\x26\x7e\x0b\xd8\x6a\xa9\xe6\xab\x5a\xc8\x38\xc9\x73\x2e\xd7\xb1\x91\xc2\x9d\x8b\xc5\xfa\xa4\x03\x3c\x8c\x19\x21\xc9\x6a\x64\x08\x7c\x44\x9a\xec\x80\xfd\xdc\x68\x5c\xe4\x26\xe5\xf6\x87\xf0\x54\xa8\x9e\xe7\xae\x8d\x0a\xab\x80\x22\xbb\x5e\x31\x69\x0a\xa3\x83\x18\xfd\x86\x6a\x26\xdc\x68\xb2\xf4\x45\x1c\x98\x34\xf7\xd9\xd2\x33\xb1\x07\xfd\x91\x90\x7c\x38\x47\x1b\x99\x68\x0f\x7d\x37\x4c\xfb\x07\xe4\x73\x10\x3b\x6d\xef\x60\x79\xb6\xba\xc8\x98\x4a\xc3\x72\xdc\xd5\x71\xf0\xfa\xed\x1a\x1a\x81\x84\x61\x0f\x8a\x28\x2c\x9e\xf3\xdf\x61\x0b\xf2\x89\xea\x63\xe4\xc3\xf5\xcc\x44\xfd\x29\xc5\xe1\xf0\x21\xfd\x2a\x6a\x2a\xac\xd0\x84\x98\x7c\xd7\x86\x6b\x96\xe6\xa9\x41\x15\xa1\x69\x16\xa3\xa1\x3f\xe7\xf7\x7a\x92\xbc\xcb\x43\x74\x20\xf0\xe9\x8e\x22\x81\xb9\xa5\xea\x42\x5d\xd3\xf7\xa3\xc8\x00\x62\x6d\x1b\x21\xe5\x93\x93\x46\x88\x33\xad\x7d\xd3\x33\x29\xca\x6e\x8e\x47\x87\xec\x81\x00\x3a\x9d\xd3\x0c\x86\x86\x0a\xa5\xd8\x53\x8f\x76\x94\xa2\x29\x0a\x10\x42\x99\xd9\xd2\xd2\x60\xf3\x47\xb7\x4f\x29\x73\x9a\xe5\x66\xbc\x87\x2c\x86\x08\x95\xb8\xf0\x70\x5f\xc7\xa9\xff\x72\x3c\x24\x91\xa8\x1b\xee\x42\x36\x07\x10\xee\xee\x0d\xd5\xd2\x09\xf3\xb8\xcc\xcc\xe8\x9d\x48\xa9\x5e\x21\xc5\x36\x15\x93\x70\x6a\xbe\x52\x84\x28\x9e\x29\x71\xa0\x87\xf4\x3a\xf8\xd8\xa2\x6d\xcc\x4b\x26\x28\x54\x3f\x10\xe1\xf5\x54\x47\xb1\xdb\xdf\x43\x34\x85\x37\x71\x5e\x39\x2e\x25\xfd\xb3\x2c\xf4\xe4\x37\x54\x1c\x59\xe7\x5e\x2d\xc3\xc3\x71\x92\xf4\x15\xa6\xf6\x1a\x8a\x72\xc8\xf0\xf1\xa0\x65\x66\x7d\xe7\x5f\x2f\x1d\x3e\xd2\x8e\x8c\x0f\xf7\x27\xed\x37\xd7\xbd\x7a\xcd\x65\xf4\xc3\x64\x2d\x4d\x12\xc9\xae\x85\xc6\xdc\x81\x03\x36\x9b\x64\xea\x52\xbf\xe7\x63\xe8\x88\x6d\x61\x85\x94\xa5\xe1\x0f\xfc\x28\xe9\x83\x7f\x19\xef\xf1\xa6\xca\x2e\x6e\x36\xa2\x37\xba\x66\x10\x32\xbe\x06\x51\x1b\x88\x3f\x98\xa1\x8d\xf6\x98\x68\xf4\x2b\x0e\x60\x3f\xe2\x7b\xb6\x33\xba\xd6\xa6\x9f\x6a\xe4\x5e\x34\xa3\xae\x9f\x65\x0c\x47\x80\x8b\x3d\xa9\xaa\x04\x27\x6b\x99\xff\xe2\x62\x9b\x93\x07\x7a\x60\xdc\x70\xc0\xfa\x92\xee\x83\xab\x02\xf6\x92\xb5\x78\xec\xaf\x3b\xaa\x6a\x58\x23\x10\x7b\xf3\x71\x47\x57\x46\x92\xc8\x6f\x29\xf9\x9f\x63\x70\x90\x7c\xd2\x44\xa4\x5f\x06\x78\x89\x85\xb6\x2a\x6d\x9b\x79\x3b\x16\xb2\xdf\x1a\xf4\xc0\xa7\x8b\x00\xea\x66\x8b\xee\x93\x8f\x2b\xf5\xef\x20\x5e\x6b\x29\x5b\xf3\x0e\xbe\x4e\x3a\x68\x4d\x33\x9e\xfd\x34\x0c\x58\xe4\x14\xac\x23\xc7\x60\x31\xf9\xa4\xf6\x14\xe7\xe6\xda\x43\x3f\x8d\xcc\x88\xe1\xd4\x88\xca\x18\x76\xc1\x27\x0a\x89\xe2\xf7\x7a\xb4\x47\xfd\x08\x89\x07\xea\x81\xc0\x1a\xa0\x5e\x80\x79\x76\x40\xcf\xee\x36\x59\xd0\xd4\xf8\x3d\xd8\x36\x96\x30\xf5\x14\xdf\xe3\x15\x15\x5e\xbb\x59\xdc\x56\x65\xca\xb6\x32\x8b\xeb\xa6\x9f\xd6\xc2\x38\x36\xf9\x0a\xa2\xbc\x6d\x22\x72\xd8\xbe\xaa\x70\x8d\x14\xde\xf7\x0c\x31\x9b\xa2\x98\xf7\xf3\x89\x9b\x43\x06\xe3\x1e\xea\xfe\x50\x04\x6a\x9a\xa0\xdb\xe9\x2f\x5f\x78\x81\x4a\xdd\x41\x61\x2b\xba\x32\xfa\x5c\xde\x1f\xc2\xe6\xeb\x3a\x1d\x3c\xd7\x48\x57\x30\x28\xd6\x33\xdd\x76\xdc\x44\x3e\xc6\x27\x55\xda\x98\x30\x9a\xc1\x9b\x92\xc1\x84\x72\x63\xd9\x5f\xb5\x1b\xee\x87\x9e\x1b\xeb\x64\x76\x56\x31\xba\x4d\x74\x82\x26\xce\x4d\x1a\x26\x50\x39\x83\x37\x61\xfc\x3e\x9f\x34\x94\xf9\xdb\xdd\xa8\x88\x2d\x4a\x0d\x53\xc8\xdc\xe1\xe2\x93\x0a\x0e\x2e\xf5\xd7\xa7\x1c\xd5\x01\xf8\xa9\x84\x34\x91\x7e\x49\xcc\x69\xc3\xb2\x8e\x8c\xbf\x6a\x83\x71\xcd\x45\x29\xbd\x99\x9d\xad\xd6\x43\x8b\xed\x91\x1f\x17\x7d\x3f\xc8\x0b\xdb\x08\xc7\xbe\x79\xa8\x46\xe1\x1f\xaa\xe9\xb9\x30\x8a\xc2\x38\x09\xd9\x5d\xa1\x78\x75\x59\xf3\x1b\x5e\x56\xd3\x37\x5d\x63\xfa\xf8\x52\x6c\x2c\x78\x58\x3e\x6e\x1a\x5a\x1a\x25\xbd\xb0\x1f\xca\x95\xb0\xf6\xba\x1a\x42\x7f\x47\x8d\x80\x97\xfe\x22\x8c\x07\x7b\x5c\x0b\xf4\x2e\xf6\x88\xf5\xc3\xe5\x77\x48\xde\xed\xb2\xba\xbb\x70\x7a\x88\xa2\x4f\xc0\x60\xf1\x89\x06\xb0\xe4\x7e\xe4\x26\x6b\x59\x11\x41\xd1\x0f\x5d\xa8\x01\x84\x2c\x2d\x70\x34\x4a\xb2\x7c\xc6\x45\xdb\x88\xeb\x2c\x67\xb4\x83\x2b\x6c\xd1\xce\x42\x6c\xfa\x78\x47\x0d\x30\xd5\x5e\xee\xc2\x42\x7b\x25\x4e\x02\xa6\x96\x9f\x77\xf5\xab\x45\xa7\x66\xde\xd0\x9b\x69\x07\xa9\xf1\x73\x41\x4a\x59\x61\x11\xd7\x85\xbe\x52\x5b\xe6\x73\x73\x6d\xb3\x6a\xd2\xf5\x6e\xd2\x63\xe8\xa6\x34\x65\x9d\x6b\x3e\xee\x7d\xaa\x52\x0e\x48\x58\x72\x96\x92\x0a\x5e\x9f\x9e\x2b\xee\x5f\xb1\xcd\xa8\x2c\xe1\x96\x35\x6d\xd9\xff\xe1\x33\x1d\x45\xa4\xf4\x50\x41\x68\xa7\x49\xe3\x1e\xf1\xe9\xcf\xf0\xc4\xd0\xe8\xbd\xdb\x48\xe1\x6c\x19\x25\xb0\xf2\x19\xf3\x41\x57\x20\xf8\x8f\x06\xe4\x9b\x79\xc9\x67\x2d\x62\x58\xc9\x07\xaa\x2d\xfc\xa0\xe6\xba\x16\x16\xda\xc1\xd0\x04\x2b\xa2\x3f\x28\xd2\x51\x6e\x64\x53\xb7\xe7\xfb\x58\x3c\x14\x0c\x61\x5b\x7c\x7b\xe2\x20\xcf\x2d\xba\x3d\x78\xdf\xa9\x26\x09\x7f\xf3\x52\x60\xd2\x71\xce\xd6\x4e\xc8\x66\xca\x3f\x12\x16\x1a\x97\xba\x8c\x13\x56\x2f\xaa\x10\x42\x48\x39\xae\xa2\x5a\x1d\xc6\x6a\xce\xe5\xb8\x9e\x73\x39\xae\x95\x22\xa3\x68\x8f\x03\xb2\x3f\x50\x15\x60\xe6\x80\x84\x51\x98\x86\x5c\x86\xc5\x37\x5a\x5e\x15\x86\xc0\x62\x9b\x3c\x50\x41\xe5\x9a\x9f\x9b\x74\x20\x94\x80\xb0\xb3\x67\x55\x15\xfa\x6c\xed\xe5\xce\xcd\x11\xdc\x3d\x33\x0e\x16\xc6\x08\x5c\xcf\xc5\x02\x97\x6c\xc4\x3b\x2e\xd2\x60\xe8\x67\xcc\x0d\xfc\x0c\xd7\xd5\xee\x2a\xfe\x49\x44\xca\x32\x20\xab\x46\x6c\x4f\x59\xd0\x76\x19\x61\xa5\x83\x64\xca\x69\xcb\xa2\x78\xc6\x94\x93\x14\xa1\xa1\x88\xfd\x67\x8e\x46\x3b\x19\x8f\xa3\x2a\x8d\xf6\x49\x3c\x2b\x11\x3b\xb0\xe5\x9b\x68\xdd\x5e\x1e\xd2\x50\xf0\x54\x22\xd3\x7b\x6c\x43\x15\x47\x26\x4a\x4a\xeb\xfb\xb5\xba\xaa\x95\xaf\x4a\x8b\x41\xd6\xaa\x70\xf3\xd0\xdf\x09\x03\xc1\x13\x6e\x88\x23\x09\xe3\xdc\x88\x31\x80\x6f\xe7\x79\x50\x3e\x69\x18\x33\x6e\x47\xa5\x35\xf0\x07\x3c\x65\x8b\x1a\x3f\x70\x35\x7c\xac\xc8\x78\x7a\xa6\x4f\x03\x04\x2d\x4b\x4a\xc3\x1d\x46\x3e\xb1\xcf\x6b\xe4\xc7\xfd\x54\xc4\xc2\x44\x7d\x88\x9e\x97\xc8\xf7\xd5\xcb\xc8\x4b\x47\xda\x59\xd1\xcd\xc3\x28\xc4\x0f\xc0\xe3\x72\xaf\x87\x4f\xb4\x32\x4a\xee\x0f\xcc\x1e\xba\x55\xe1\xaf\x41\x40\x80\x05\xff\x0d\xd5\xa7\x3d\x8b\x1c\x13\x1e\xe6\x34\xda\x3d\xfc\x29\x35\x63\xb7\xab\xe3\xaa\x1e\x34\x0c\x0c\x18\xa8\xf2\x67\xe5\x37\x8a\x9f\x53\x1c\x6f\xd9\xfa\xde\x72\x8d\xdb\x36\x99\x8e\xdc\x15\x4d\xea\xa6\x06\xbf\xbd\xab\x94\xac\xde\x40\x03\xc9\x4e\xa2\x0a\x3b\xfb\x3f\x7d\xa2\xa3\xd0\xcc\x49\xda\x9b\x6e\x7d\xf6\xb3\x02\x3b\xf3\x1c\x6a\xea\x24\xc2\x24\xc1\xa3\xb9\xfb\xd6\xd3\x16\x03\x13\x87\xd2\xf8\x17\x0c\x0b\xfd\xac\x5c\x76\x83\x54\x72\x90\xc4\xb9\x89\x73\x9a\xe7\xa0\x1b\xb1\x33\xde\x6e\xde\xdb\x92\x12\xa5\x26\x1b\x16\xfd\xbe\xdb\xc8\x28\x2a\xde\x57\x05\xc6\xfb\x4d\x70\xf7\xf5\xa4\x50\xd4\x5a\xe8\x8f\xdd\x56\xa6\x1d\xb8\x7a\x38\xd7\x13\x0a\xa9\x9a\x26\x49\x3f\x9b\xa2\x5b\xb0\x35\x36\xab\x73\x71\xd7\x73\xc0\xf5\x73\x6a\x17\x17\x69\x98\x8d\x54\x81\xf2\xac\x62\xc4\x3c\xeb\xb9\x9e\xfc\xcb\xe1\x18\xa0\x48\x5b\xb9\x77\xaa\x2a\xa7\x95\x66\xfa\x9f\x6a\x5a\xa3\x3f\x6d\xe0\x4b\x6f\x87\x71\xe9\xa2\x99\x86\x8b\x45\x13\xe8\x0b\x44\x40\xa1\xa2\x14\x62\x52\x21\x6a\xb1\x2d\x39\x2b\x90\xf3\xba\x2d\x6b\xf7\xc2\x6c\xe4\xaf\x9b\xde\x0c\x99\x23\xa0\x03\xd0\x91\x85\xe1\x9b\xa1\x50\x43\x78\xef\x94\x38\x06\x5b\x03\x61\x16\xb4\x36\x2b\xf5\x03\x9f\x5f\x31\xc2\xe9\x0f\xe8\xb9\xf0\xb1\xd6\xcd\x0c\x07\x6a\x10\x91\x99\xb8\xf8\x44\x4d\x75\x8d\xfd\x2c\xdf\x8b\x7a\x95\xd2\x96\x7b\x46\x40\x6a\x8a\xc5\x10\x2f\x00\xb1\x0a\xe8\x4d\x51\xb3\x9c\xda\x50\x8d\xd0\x2d\x18\x19\xa1\x1d\x79\x5a\x37\x13\xfa\x26\xcb\x28\x11\x6b\x55\xdc\xa2\xf6\x97\x0d\xa6\x86\x40\xbc\x61\xcf\xd6\x12\xad\xda\x54\xf9\xce\x51\x8c\xdd\x62\x90\xba\x94\x8b\x1e\xb7\x06\x3e\x8c\x41\x79\x63\x49\x66\xce\xe0\xee\xd0\x12\xbd\x47\xbf\x2d\x13\xe1\xaa\xf6\x95\x14\x71\x8f\xc6\x65\xca\x25\x8b\x98\x10\x44\x58\x7c\x5c\x1b\x61\xfa\x5c\xbb\x1f\x46\x8c\x88\xc0\xfb\xc3\xd0\xd9\x36\x46\x67\x50\x32\x3b\xad\x22\x85\x72\xb3\xc2\xf8\xb3\xca\x8d\xa7\xe4\x46\x2e\xd6\xc2\xc7\xcf\xb5\xb3\xb5\x70\x34\xb2\xdd\x33\x99\xbc\x72\xd1\x0f\xbc\xa9\x14\x2f\x9f\xa8\xf2\xe5\xff\x57\xed\x83\xe0\x15\x64\xc2\x00\x15\x5d\x5d\xd5\x5c\xf0\x08\xa1\xe0\x21\xce\x4d\x54\x37\xeb\x8a\x1a\xdc\xbb\x52\x85\x63\x64\xc3\xbd\x4a\xb9\xe7\x5d\xac\x61\x3b\x65\xbf\xb0\xc0\x4e\x7d\x03\x2f\x4c\x90\x0b\xea\x6e\xef\x7a\x4a\x11\xec\x8a\x32\xb6\x5b\xcd\xc9\x6b\xee\x87\x11\xad\x86\xf2\xfb\x10\x76\x08\x46\x06\xdf\xbe\xa1\x87\x5b\x2f\xa3\x14\xa0\xbe\xe4\xf3\x34\x6c\x66\xcb\xe9\x8f\xa8\xc1\xa9\xbb\x94\x52\x0b\xa6\x58\x96\xd1\x6a\x98\x85\x79\x92\x0a\x0d\x95\x98\x2d\xba\x05\x18\xbb\x1f\x78\x6a\x28\x4a\xf3\x02\x9b\x97\x92\x3c\x0c\x5a\x6a\xd2\xea\x9c\x1a\xeb\x3c\xd7\xa0\x50\xb1\xd8\x1e\x25\x44\x6a\x6d\xa9\x84\xd1\x17\x95\xb9\x3b\x4d\x18\x20\x5e\xdb\x02\x1d\x2d\xa7\xc1\x66\x6d\x34\x75\x79\xb6\xed\x07\x41\x32\x1a\x25\x3d\xdf\x11\x62\xa1\x0b\x07\xbc\x1f\x1f\xab\xac\xae\x57\x5a\x39\x89\x7c\xad\x27\x52\xbf\xa8\x59\xf8\xd2\x70\xb5\x8c\x67\x9e\x9b\x3f\x6a\xcb\x1e\xe5\xc3\x94\xaa\x47\x13\xe5\x60\xe0\x17\x34\xe0\xbe\xb0\xc0\xd9\xc9\x3d\x3d\xec\xf7\x91\xa2\xe9\x7a\xcb\x1a\xc0\x6c\xe8\x77\xbb\xf0\xf5\x76\x88\xd2\x2a\x8b\xd6\xd9\xea\x17\x17\xdb\x3d\xb3\x6a\xa2\x64\x6c\x78\x3e\x54\xf5\xae\xe5\x3d\x5c\x9d\xec\x00\xc4\x4b\xed\xe3\x6a\x0d\xf1\xf2\xf9\x76\x5e\xe6\x2a\x89\xd2\x3d\xbf\xa4\xc1\xe7\x97\xbc\xc7\x34\x23\x54\x60\x88\x05\x57\x64\x9b\xb1\x80\xd0\xb2\xba\x35\x51\xd8\x72\x2e\xad\xf3\xe7\x26\x0e\xe3\xcb\xcf\x1b\xf1\x1d\x78\x8d\xf9\x1f\xd4\xc4\xec\xbf\x86\xb6\x37\x16\xe6\x35\x2c\x4c\x51\x10\x77\x4d\x1e\xd3\xef\x9b\x20\x7f\xb4\x65\xe9\x94\xff\x0a\x4d\x6e\x8b\xfe\x5b\x58\x60\x95\x7f\xf0\xd5\x0a\x12\xd0\x89\xea\xdd\x73\xf8\xdf\xe9\x2d\xea\x48\x09\xcf\x9e\xd2\x26\xfd\x0e\xf5\xb9\xa4\x20\xe3\x66\x3b\x6e\x37\x8e\xbf\xfb\xd1\x9a\x13\x09\x13\xfe\x59\xba\x65\x3e\xf1\x9e\x54\x0c\x2d\xa3\xb1\x1f\x0e\x62\x96\x42\x15\xde\x07\x7a\x5f\x4e\x9b\xc9\x51\x5b\x64\x79\x98\x17\xb9\xd9\x4f\x77\x69\x91\x29\x0b\x0b\x0c\xeb\x38\x47\x77\x29\xbd\x01\x65\x32\xce\x7b\x9a\xb9\x98\x7e\x4b\xe2\x1b\x7a\x4b\xfc\x2f\xfa\x39\xff\xbd\x12\x79\xbb\xef\x29\x05\xbf\x8d\x0a\x23\xab\xda\x2f\xc9\xd8\xc4\x11\x8d\x73\x2c\x72\xae\x76\xcd\x73\x8c\x0e\xb7\x70\x57\xfc\x0f\x74\xa1\xfc\x0f\x0d\x81\xcb\x7c\x3b\x1b\xda\x7a\x84\xf8\x03\xc8\x95\xf0\xb1\xd7\xae\xe3\xfa\xcb\xd0\xa4\x34\x04\x45\x98\x0d\x05\x07\x8d\xdf\x3b\xab\x7f\xfc\x6c\x6d\x0b\x3c\x3b\xfb\xbc\xe3\x9c\x13\x87\xa5\xf4\xda\x6a\x05\xdb\xf2\xc7\x32\x13\xbe\x8c\xc0\x0a\x0f\x9f\x99\x41\xf8\xe4\x63\xa7\xfd\x89\x87\x35\x45\xe8\x28\x74\x47\x6a\x3a\x8d\x07\x2f\x44\xb2\xb5\xf6\xc3\x87\xcb\x3c\x25\x95\xa9\x5f\x7c\xec\x2f\xe9\x55\xf1\xb1\xe5\x55\x89\x4d\x26\x86\x0e\xf7\x8d\xb8\x84\x8f\x6b\x66\x65\xfe\xa8\x8d\x16\xf9\xa9\xa3\x6a\x05\x40\x23\x1f\x5b\xd5\x34\x7f\x14\x42\x9e\x4a\x1c\x28\xdd\xbb\x0d\x48\x96\xec\xbf\xfc\x94\x9e\x23\xac\x00\x86\xdd\x11\xb0\x4d\xd5\x48\x66\x69\x30\x63\x8d\xe4\x83\xad\x73\xe0\xe1\x37\x49\x94\xeb\xef\xed\x99\x76\x9c\x30\x02\x59\x9a\x74\x5a\xec\xa2\x31\xfa\xca\x72\xbf\x8c\x85\xac\x12\x11\x12\x38\xd8\x66\x5c\xdc\x19\xad\x72\x72\xb3\x89\x84\x31\xf2\x57\x4d\xdc\x13\xa4\x04\xb6\x0f\x34\xba\xf8\xb8\x3e\xb7\x39\x4b\x08\x85\x95\x69\x37\x5d\xfa\xb7\xb4\xa0\xb1\xc5\xee\xd2\x0e\x45\x5a\x73\x5c\x29\x0c\x5d\x6e\x08\xcc\xba\x49\x3e\xdc\xe3\x3a\x46\x17\x88\x38\x09\x01\xd9\x0d\xd8\x4d\xf4\x4e\xa1\xc5\x6b\x29\x0e\xe7\x8f\xb2\x45\x7f\x5b\x8f\xf3\x6a\xad\x16\x96\x17\x8f\x07\x8f\xb8\xf9\x9d\x3f\x99\xa8\x2c\x97\x2d\x44\x85\x5b\x06\x21\xea\xdf\x78\x3b\xc3\x6a\xc1\xf6\x90\xad\xe2\xef\x52\xf3\xfe\xdf\xb7\x54\xdb\x59\xee\xa3\xf0\x45\xde\x43\x0f\x97\x09\x40\xb4\xae\x42\xd6\x4e\x56\x4d\x4a\xfc\x8f\x66\x5a\xa9\xb7\x9e\xd7\xea\xc5\xdf\x98\xb8\xc6\xf6\x03\x25\x93\x59\x2f\x65\xce\x1f\x6d\x17\x65\xea\xcf\x83\x97\x15\x85\x42\x3e\x51\xcc\x07\x59\x9e\xc4\x66\xe4\x13\xaf\x92\x0a\x63\xd4\x4a\x6d\x90\xd1\x3d\x7c\xa4\x3d\x48\x8d\x59\x41\x78\x03\x18\x3d\x6a\x92\x7c\x6c\x1f\x47\x6e\x22\x13\xf8\x92\x92\xa2\x9f\x73\x45\x65\x8a\x5c\x81\xc1\xb2\x39\xfe\x31\x99\x73\x56\x44\xb9\x1f\xcb\xfe\x17\x35\x96\x96\xe2\xcf\x69\x28\x59\x76\xc1\x3a\x6c\xe7\x4c\x2e\x2a\x00\xcd\x45\x05\x5f\x73\xe2\xf5\x74\x89\xa8\x21\x9d\xd6\x18\x8e\xd3\x16\x6c\xbf\x1a\x9a\x35\x93\x66\xc3\x70\x4c\xa6\x12\x05\x98\x1f\x29\xaa\x9c\x1f\xa9\x04\x6f\x64\x5e\x9e\xd2\x91\xd9\x44\xcf\xb9\xa8\x28\xed\xa3\xa6\x5c\xb7\x47\xf8\xf7\xd0\x57\x0c\x25\xe7\x3d\xd7\x5f\x3e\xdf\x48\x24\x17\xbc\x6c\x82\x61\x92\x45\xc9\xaa\xbf\xc2\xe6\x40\x6e\xc7\xe5\xe9\x0f\xf1\xc4\xe1\x79\x6e\xa8\x2a\xbe\x54\x0f\xf4\x10\xc0\xc9\x89\x22\x1b\x3a\xa9\x60\xd5\xe3\xd4\x04\xa6\x87\xea\xa4\xf8\xf6\x8a\x20\xe3\x93\xba\xd2\xe5\x17\x51\x2e\x7c\x89\xc8\x84\x6f\x2b\xc6\xef\xdb\x4d\x36\x29\xf0\x47\xdd\xa4\xc7\x0f\x40\x34\xa3\x15\x93\xcc\x66\x03\x7f\xf1\x12\xd7\xf0\xd9\xe4\x4b\x67\x55\x11\x5e\x1d\xab\x01\xd0\x8f\x1e\x6e\xe7\x43\x3f\x9f\xb2\x9c\xc1\x4f\x1f\x80\xec\x25\xea\x3e\xd3\x1b\xae\x89\xb7\x35\xd1\xd9\xbb\x3f\xa5\xe9\xe1\x26\xae\x75\xc4\x0a\x56\x70\x9d\x5b\x0d\x2f\x77\xa9\x1d\xf9\xc1\x8a\x59\xaf\x20\x60\x41\x13\xc8\xc7\xaa\xed\x1d\xa4\xfe\xcb\x46\xb5\xe3\xd1\x0c\xe5\xe3\x8d\x9d\x5f\x2e\x7e\x79\x6d\x3c\xc6\xde\x94\x86\x68\x79\x7b\xae\x1f\xea\xa6\x9c\xe2\xa4\x00\x35\x93\x8b\xb0\x6f\xea\x4e\xc9\xcd\x1a\x86\xe6\x73\xed\xd5\xb0\x67\x92\x56\x69\xa6\x85\x0a\xcd\xe5\x84\x97\x94\x8e\xff\xc8\x4f\x57\x4c\x6e\xd2\x6c\x46\xcf\xc1\xaa\xfb\x44\x19\x10\xd0\xf1\x63\xf8\x55\xd1\xce\xd3\xc3\x94\xae\x81\x52\x86\x44\xa9\xc9\xb2\x7e\x11\x4d\x55\xc2\x8c\xf2\xf6\x60\xc7\xef\xab\x51\xe3\x73\xb5\xb8\xe0\x73\x34\x10\x34\x48\xfd\x5c\xba\xab\x30\x58\x77\x95\xe2\x23\x83\x6d\x45\x09\x65\xa7\x79\x3d\x7a\xb8\xdd\xf5\xd3\x01\xc1\x99\x2c\x7b\xb5\xae\x9b\xd7\xc5\xa5\x28\x1a\x19\x1a\x4b\xb1\x85\x27\xf1\x23\xba\x7b\x3e\x56\x95\xe1\x20\x0a\x4d\x9c\x67\xfb\x48\x93\xff\x6d\x0d\x0f\x3b\xa9\x46\x05\xb6\xe8\x95\x62\x61\x5e\xd5\xd2\x59\xef\x13\xc7\xac\xb4\x5c\x88\x22\xe3\x6d\xcf\x69\xaa\xfe\x1f\x2a\x6b\xfb\xc0\xe2\x7e\xf2\x61\x31\xea\x4e\x39\x47\x7d\x43\xe1\x29\x59\x2b\x1c\xad\xe3\xb3\x0a\xe5\x33\x48\x93\xb5\x69\xa7\x2a\x77\x01\x45\x50\xe9\x28\x6a\xd4\x88\x1e\x38\x53\x16\x72\xbd\x6b\x1e\x71\xe5\x69\x66\x00\xb6\x28\x10\xab\xac\x89\x39\x4a\x65\x03\x2c\x91\xd1\x44\xad\xd4\x7d\x1b\xba\x73\x58\x2e\x02\xaa\x2f\xcf\xfd\xb2\xa5\xd3\x0d\x86\xc9\x38\xd3\xd2\xf8\x67\x95\x48\xd3\x59\xb5\xb9\xff\xfb\xff\xf6\x37\x5b\x8a\xab\x88\xed\x8e\xe0\x67\x1a\x58\x82\x0d\xa6\xcc\xc2\x4c\x3a\x06\x78\x15\xdf\xd6\x93\xe9\xdf\xae\x99\x9e\x43\xa4\xe0\x35\x9a\x52\xb3\x90\x13\xd7\x34\xbd\xa9\x18\x17\x5b\x9d\x7a\xe8\xd7\xf6\x83\xc0\x8c\x73\x5f\x68\xac\x1a\x5b\x5a\x3b\x49\x2b\x3f\xdf\x4e\x62\x33\x55\x26\x80\xa8\xcc\xdd\x44\x05\x1f\x4e\xe5\x4d\x7a\x1c\x42\x26\xde\x30\xa9\x93\x0a\xd9\xa8\x6e\x14\xcb\xfb\x7e\x42\x19\x7c\x50\x39\x3c\xaa\x48\x3d\xde\xf7\x14\x25\xea\x0f\x14\x9b\x05\x83\x49\x90\x40\xdf\xe3\x0c\x1c\x4f\xe0\x07\x28\xc6\x8b\x2e\x3e\x2d\x22\x21\x14\x76\xad\xfe\x3f\x44\x48\xc7\x9f\x9a\x54\x74\x56\x1a\x3b\x23\x66\x34\x8e\x12\x0b\xb0\x17\xec\xae\xd6\xb2\xab\x99\x0d\x31\xab\x2f\x1e\x0c\x0e\x52\xb1\xd2\xd2\x4f\x6a\x8e\x41\x45\xdf\xf0\x51\x13\xc9\x60\x66\x02\xe9\x3f\xa2\xce\x77\xcc\x73\xb0\xa1\x63\x15\x4c\xc6\xc8\x8f\x3f\xa5\x5e\x24\xe2\x69\xc6\xd5\x72\x2d\x4d\xf0\x9d\x0e\xfb\x7f\x0d\xce\x1a\xe9\xfc\x31\xd5\x2f\xdf\x9e\xa8\x0a\xf0\x25\x32\x96\xb8\xcc\x87\x4a\x3a\xec\x0e\x75\xeb\x6c\x7c\x52\xc6\x42\x28\xf9\x6d\x23\x16\xb2\xac\x44\xe5\x4b\x85\xd5\xbc\xa1\xa4\x88\x2e\x55\x78\xeb\x69\x5c\x07\x3c\x94\xcf\x58\xc1\x90\xd2\x63\x08\x39\x18\x3d\x38\x2b\x95\x36\x37\xcf\x71\xf4\x3b\x95\xa7\x10\x9a\xb5\xfd\xe5\x2f\xd8\xb0\x71\xfe\xa8\x15\x8f\x73\xf3\x6c\x0f\x61\x77\x90\x95\xf1\x98\x0a\x96\x06\x0a\xf9\x1c\xa1\x6b\xa4\x35\x34\x39\xf0\xb5\x57\x61\x76\x60\xeb\xa6\x00\x6d\x06\xe0\xff\x2d\x44\xfb\xf8\x97\x7b\xb5\x28\x78\x6e\xbe\x0c\xf6\x73\xc3\x95\x4e\x98\x62\xae\x9c\xb2\x76\x41\xa5\x76\xee\x2a\x3d\x91\xbf\xb6\x6e\xd2\xbd\xe5\x6d\xdb\x5d\x5b\x5e\xb5\x8c\xae\xb7\xbe\xf0\x3b\xfa\x1f\x64\x42\x68\x3f\x9a\xc5\xd2\x7b\x73\x93\x19\x5c\x10\x90\x29\xf8\x7a\x62\xd9\xf6\xbb\x49\x41\xaa\x24\x02\xef\xfd\xc1\xc4\x8d\xf6\x9c\x21\xfb\xca\xd9\x14\x21\xa2\x61\x90\x5f\x23\x57\x0a\xb7\xfa\xa3\x26\xb4\xce\x8b\x49\x91\xc6\x2c\xf0\x07\x77\xb9\xad\x88\xcd\xb6\x9b\x14\x7f\x00\x5b\x05\x58\x02\x8b\xe8\x38\x92\x3c\x3e\x51\x71\x63\xbe\x16\xf6\x7a\x91\xb4\x07\x30\x5e\xf9\xbd\x89\x42\xc8\xb0\xa3\x06\x36\xe0\x42\xa3\x54\xc2\xd8\x0f\x86\xeb\x3d\x93\x8e\x24\x3d\x96\x04\x4a\xb5\x72\xff\x5c\xd7\x96\xea\x7d\xb5\xa3\x87\xdb\x83\xc8\xcf\xe2\x24\xcb\xe9\x42\xb0\xbd\x10\xf3\xa0\xf3\x79\x99\x00\x53\xd2\x34\x7f\xcc\x36\xf1\x62\x7f\x24\x51\x06\xf0\xa4\xb7\xab\xc3\x39\xe5\xaf\x4a\x3e\xdb\x24\x0f\x1c\x24\x69\x6a\x82\x1c\x61\x33\xcf\xd4\xa9\xf1\xd9\xcb\x9a\xf4\x23\x48\x5a\x2d\x45\x4b\x49\xdf\x2d\x7c\x95\x3b\x2d\xf9\xc1\xb6\xf1\xd3\x68\x7d\xca\xe9\x10\x5c\x52\x2c\xd7\x7f\x88\x3f\x46\xcb\xcb\xb1\x6c\x16\x71\x9e\x5a\xb0\x91\x65\xb3\x77\xcc\xf6\x96\x9f\x2d\xec\x87\x1f\x3f\x15\xd1\x84\x65\x1d\xf9\x3d\xa3\xd1\x54\x00\xb3\xca\xfc\xe7\x01\xfb\x38\x57\xf5\x78\x92\x9d\x71\xb7\x80\xe6\x87\x4a\x67\xe7\xd5\x3a\x9a\x72\xa9\x3d\x4a\x8a\xd8\x55\xd6\xa5\xd3\xe6\x9c\xec\x15\xad\x90\xd9\x2b\x02\x21\xa4\x10\x7e\x0c\x5a\x32\x52\x84\xa7\x95\xb7\x53\xf9\x37\x0c\x98\x84\x4f\x10\xaa\xf4\x29\x81\xa8\xba\x95\x1d\x9b\xc0\x64\x99\xb4\xc4\x45\xeb\xbe\x65\x29\xaa\xaa\xbe\x60\x3d\x29\x1e\x2b\x5f\x15\x92\xa5\xb7\x3c\x05\x21\xfd\xbf\x28\x08\xc4\xb6\xdf\x4b\xf1\x0f\x5e\xdb\x35\x58\x41\xf4\xc7\xaf\x29\xa4\xf7\x63\x9d\xaa\x0d\xb0\x9a\x3c\x0f\xc8\x3a\x23\xf8\x3b\xed\x29\x16\xc9\x7f\xed\x29\xb1\xc6\x6f\xa8\x00\x94\x75\xf8\xd0\x50\x05\x8f\xcb\xf6\x55\xcb\xfb\x91\x0f\x0d\x24\xcf\xec\xfc\xa7\xf3\xf2\x53\x1b\x40\x17\xd8\xd6\x95\x83\x08\x4d\x1c\xf4\xec\x1a\x99\x7b\x7c\xe6\x33\x1d\x17\x5d\x0c\x92\xa4\x17\x8b\x46\x0d\x96\x6c\x8b\xbc\x81\xee\x71\x03\x27\xf9\x5e\x85\x03\xa5\xa9\x48\x58\x1d\x4d\x60\xd0\xb1\xea\xbe\xd5\xab\x2b\xe5\xc6\x4c\x4d\x90\xa4\x70\xe4\x2c\x17\xad\x76\xc2\x7b\x9e\xc5\x5f\x27\x45\x3e\x5c\xa3\x7e\x7c\x79\x19\x5c\xa3\x87\x6b\xb5\x4e\xda\x9a\xce\xdd\x36\x4e\x1d\x06\xfd\x20\xd3\x1a\x99\xa8\xe6\x81\x90\xfe\x0d\xad\xf0\x76\xcf\xf6\xe3\xb3\xa1\x89\x56\xcd\x7f\x69\x80\xdf\xb5\x8d\x4c\xcf\x44\xc2\xa3\x6d\x67\x5c\xca\x95\x2a\xa1\xdf\xe3\x5a\x58\xa2\xc8\x33\xa2\x74\x90\x21\x38\x8a\xc9\xf8\xa4\x96\x1c\x2e\x2c\xb4\x07\xa9\x0f\xc2\x6a\x11\x73\x51\x69\xf2\x05\x45\x9a\x11\x44\x26\x5d\xc1\xbe\x17\x50\xb0\xcb\x39\x2e\xa9\xdd\x32\x2e\xba\x51\x18\x54\x01\x24\xe7\x14\x80\xa4\xde\xa5\x23\x8c\x79\x9a\xac\x80\x83\x6a\xfb\x01\x16\xe7\x83\x06\x31\xe9\x67\xca\xa4\x20\x15\x4c\x06\x7c\x10\x98\x9a\xf8\x58\x69\xfe\x14\x63\xd7\x99\x7b\x5e\x54\xdf\xf0\x8c\x45\x02\x6e\xa7\x0b\x2a\x17\x4b\x3f\x2d\xb2\x3c\xb5\xfc\x9c\xd8\xa0\xef\xc0\x8f\xf1\x49\xcd\x63\x2f\x2c\xb4\x47\x49\xce\xd4\x39\xf0\x7c\x90\x6f\xe6\x63\xd5\xc1\xc4\x04\xa8\x2e\xad\x5c\x57\x80\x83\xeb\x15\x50\xdb\xd0\xac\x7f\xa6\xdc\x54\xa8\xb6\x7d\x54\x21\x21\x50\x63\x42\x37\x91\x4e\xa2\xa1\x71\x17\xc6\x00\xe5\x2d\xd8\x5b\x6c\xf9\x7d\x1b\x65\x9e\x89\x98\x74\x0b\x46\x09\x8b\x7a\x57\xa7\x0c\x6c\x50\xb4\xdd\xbd\x41\xb1\x19\x3e\x75\x8f\x23\x57\x24\x52\x0f\xb1\xe6\xe0\x80\x6e\x7b\x8a\xe9\xe1\x9e\xa7\x44\x3d\x31\xdc\x89\x2f\x78\xb2\xd3\xfa\xd2\x7c\x25\x05\xe0\x72\x01\xd6\x98\x45\xc9\xd9\xb1\xfd\x7b\x14\x4a\xd9\x91\xdd\xe7\x5c\x31\x79\xa3\xda\x66\xb3\xe6\x15\x83\x5c\x88\x8b\x7e\x8a\xad\x2a\xf5\xa6\x7a\xcf\x7f\x9c\x86\xca\xa3\xb0\xf1\x54\xe5\xee\xd3\xd6\x14\x28\xfd\x05\x5b\x67\xf9\x26\x9e\x2c\x9f\x38\xee\xd2\x64\x24\x59\x2a\x67\x48\xb4\xd6\x25\x5b\xb2\x93\x5e\x51\x18\x87\xc1\x94\x6b\x0c\x7f\x0d\x4b\xd1\x4e\x90\x2c\xca\x53\xbb\x6a\x7d\x78\x10\x25\xf9\x50\x46\x5c\xf0\xc1\x9b\xb4\xac\x44\xa2\xb1\x65\x89\x17\xdf\x54\x04\xb6\x7e\x94\x87\x79\xd1\x33\xad\xf2\x61\x0a\x6b\x82\x9b\xa3\xd8\x54\x35\xc4\x61\x92\x91\x5e\xce\x1e\xc7\xcf\xc1\x29\x19\x2b\x7b\xe9\x11\xb3\x33\xbc\x1e\x10\xd0\x6a\xd0\xec\x65\x3c\x1a\xe1\xef\xb1\x55\x8a\xb4\x88\xd6\xf7\xd2\xd7\x09\x8e\xa7\x7c\xd7\xf8\x36\x40\x61\x84\xfc\xc8\xe1\x7e\x38\x49\x03\xca\xe1\x01\x02\x6d\x30\x5a\x1c\x9f\x68\x34\x85\x6b\x1c\xd8\xc0\x53\x4f\x9c\xa3\x56\x25\xcd\xb1\x27\x77\xe2\x37\xe6\x8f\xa2\x79\x82\x18\x1c\xb5\x66\x3e\x6e\x84\xe1\x76\xfd\x4c\xe4\xd9\x14\x78\xad\xbc\x03\x3e\xae\x45\x6d\x65\xa8\x34\xec\xbe\xd8\xaa\xb0\x04\x38\x54\x6a\xbd\x47\xf3\xdc\x52\xbb\x97\x1a\x7f\x84\x60\xbb\x09\xcd\xe3\x42\xd5\xaf\x14\x26\xcb\x09\xc9\x6a\x65\xb2\x1d\x4d\x8b\x73\xd0\xef\x7d\xaa\x43\x5b\x42\xe6\xcd\x5c\xf7\x87\x9b\xec\x88\x75\xce\xd5\xc2\xaf\xb9\xb9\x76\x14\x0e\x86\x6e\xb3\x20\xa3\xf9\x29\x5d\x0e\x1f\xd7\xcc\xf8\xd1\xc3\xcc\x0c\x4e\x85\xb6\x26\x92\x65\x45\xc4\xf1\xd9\x6e\xb2\x06\xf5\x0b\xec\x70\x26\xb9\x6c\xa8\xbd\x7b\x4e\xc3\xee\x55\xbb\x9d\x86\x7e\x96\xf9\x31\x1c\xb5\x1e\x7f\x15\xe1\x06\x87\x4a\xbc\xa8\x7e\x75\x58\x8c\x92\x14\x98\x0a\xd1\xf2\x2f\x3f\xc8\xc7\xb5\x57\xb8\xb8\x58\xbe\x91\x35\x8a\x5c\x84\x8c\xc3\x01\x25\x70\x91\x15\xca\x02\xf4\xa8\x5b\x1a\xbb\xe8\xaf\x1a\x3d\xa2\x46\x0a\x1b\xdb\xdb\x4a\x68\xf5\x8e\x2a\x64\xfd\x56\x8e\x11\x62\x44\x57\xfb\xc9\x30\xf3\xf1\x86\xe2\x47\x2b\x7a\x03\x93\x67\x94\xdd\x08\x47\x6a\xcb\xea\x76\x68\x11\xd7\xd3\x93\xa7\x14\x9f\x70\x14\xf5\x92\x97\x89\x6a\xc1\x46\x5f\xdf\xa4\xfb\x17\xd2\x0c\x37\x2b\x35\x5c\x1f\x27\x83\x68\x3d\x30\xa3\xd0\x9f\x76\x80\xc4\x07\xb0\x0d\x7c\xe2\xa9\x60\xe0\xef\x55\x30\xf0\xf7\x4d\x53\x67\x79\x98\xb2\xc6\x14\x22\x35\x4c\x9d\x59\xea\xce\xb9\x79\x4e\x5c\x8f\x5b\x54\x6f\x6a\x06\x45\x44\xb2\x34\x53\x0e\x9a\x71\x45\xe3\xe1\xfe\x40\x30\x61\xfb\xc2\xf6\x38\x35\xfd\x5f\x6b\xcf\xfe\x23\x25\x33\x7f\x97\x5a\x93\xdc\x15\x84\x8f\xc2\x0e\x39\x4e\x3e\x0a\xb9\xf8\x93\x1d\xed\xe4\x7e\x91\xa6\x98\xd1\xa5\xba\x88\x4e\xb2\x05\x7e\xfe\xf6\x73\x52\x91\x21\x66\x15\x5b\xe2\xfd\xf2\x17\x79\x83\xbe\xee\xa9\x3e\xf4\x37\xa9\xac\x6b\xa3\xe9\xd2\x63\xc1\x41\xbe\x37\x51\x14\xa0\xbf\xb0\xa1\x26\x67\x6e\xc0\x7f\xe1\xba\x7e\xa2\x06\x81\xbf\x76\x90\x86\xb6\xa5\xb6\xa4\x50\xc1\x77\x51\xeb\x41\x24\xbb\x45\x85\x19\x84\x9d\xb7\x51\xf7\xb1\xdb\xc1\x0e\x18\x3f\xba\x61\x47\xf7\xfe\xfa\x1f\x6d\x50\x35\x51\xc3\xa2\xf0\x12\x48\x2f\xf9\x79\xe1\x87\xdb\x70\x7c\xe4\x23\x33\xea\xa2\xa1\x96\x69\xfd\x86\x2b\x6a\x44\xea\x8a\x72\x5f\x7e\x91\x89\x24\xad\x2a\x70\x3f\x6f\xb3\x87\x26\xe1\xbf\xcc\xf8\xdd\xc4\xe7\x70\x5d\x38\x67\xca\x87\x2f\x94\x2f\xe2\x5d\xd6\x92\x34\xea\x01\x05\x8d\x56\xf4\x89\x8a\x02\x88\xd6\xd0\xf8\x99\x12\x1e\xda\x85\x76\x11\x7a\x3f\xc7\x95\x78\xd1\x9b\x8a\xaa\x21\x4e\xd2\x91\x8f\x75\x27\x20\x14\x0d\x74\xa9\x94\xce\x34\x7a\x2f\x36\xeb\x8f\xb9\x69\x81\xbf\xd0\x11\xc3\xfe\x8e\xc2\xe5\x52\xd5\x46\x2c\xa4\x02\xbe\x5d\x40\x0a\x0a\x0f\xb9\x97\x5e\x15\xf3\x14\xa2\xb0\x84\x5b\xf8\x90\xcb\xae\xa0\xc7\xb9\xaf\x24\xa9\x39\x2e\x13\xb1\x11\xba\x53\xcb\x2a\xb6\x68\xf5\xe6\xee\x4d\x34\xa7\x41\xad\xff\xf1\xc2\x0b\x98\x93\x49\x62\xc3\x33\x81\x52\x58\x6f\xb9\x59\x54\xcb\x30\x36\xf0\xbb\x26\xa2\x9a\xf6\x36\xa8\x8e\xb7\xaf\x36\x14\x9f\x96\xda\x69\x32\xb0\xa3\x9a\x42\x94\x5b\x61\xd0\x6d\x68\x0a\xa7\x7e\x37\x44\x0c\x86\xd7\x70\xcd\x73\xaf\xe4\x5a\xcd\x6b\x7d\x8e\x1a\x4e\x49\x6a\x3b\x8a\x08\xbf\x5f\xc5\x43\xe5\x93\x26\x09\x90\x70\x34\x4e\x52\x66\x2f\x43\xf9\x60\x4b\xb5\x5d\x4e\x28\x51\xc5\x2b\x76\xf9\x0d\x92\xff\xef\x0d\xe3\x06\x61\xb7\x64\xd5\xa4\x6b\x43\x13\x39\x86\x09\xa1\xe2\x74\xeb\xa7\x0e\xfd\x99\x3f\xda\x5e\x35\x69\xd7\x8f\x54\x58\x81\x31\x38\x29\x6d\x35\xcc\xc8\xf6\x0b\x13\xa1\xb0\x35\xcf\xcb\x9e\xab\xfb\x08\x5d\xfe\x57\x9d\x0c\xdb\x18\x23\x2e\xd2\x2c\x8c\x07\x33\x0a\x31\x00\x05\x44\x18\x85\x7f\xdc\x51\x31\x34\x66\x7e\x98\x12\x8b\xbe\x0d\x01\xdb\xae\x8d\x46\x66\xc0\xd0\xf1\x92\x60\x43\x61\x04\x97\x8f\xad\x52\x65\x3f\x8c\xfd\x38\x90\x57\xc9\x5a\xb1\x78\x95\x22\x1c\xdb\x50\x21\x20\x14\x56\x14\x71\xe4\x8e\x28\x76\x0b\x21\x25\x9f\x34\x22\xbe\xba\x49\xe2\xe8\xf6\xe1\x25\xbe\xe1\xb9\x98\xea\x1b\x95\x0a\x4f\xd7\x87\xd6\x32\x5a\x29\xef\xd2\xf3\xc7\x36\xfd\xbe\xa7\x2a\x18\x98\x8d\x53\x73\xbb\x4e\xbe\xa1\x8e\x06\x98\x27\xe0\x44\x12\x85\x3d\xd7\x10\x47\x9b\x07\xe4\x79\x7c\xac\x88\x61\x03\x8a\xb5\x28\x4c\x23\x5b\x89\x86\xdf\x87\x14\x06\xf1\xb1\x92\xc9\xfb\xcd\xdf\xc0\x74\x9d\xe0\x6e\x4a\x57\x21\xac\x30\x2e\x1f\x20\xd2\xe0\x38\x58\x07\xe3\xb9\xe8\x6c\x2a\x03\x75\x86\xb2\x35\x5b\xdc\xd4\xe4\x61\xd6\x47\xff\x67\xac\x2e\xf8\x31\x74\x6a\xf9\xb8\xca\x93\x99\x85\xdd\xc8\x7c\x92\x1c\x98\x70\x9b\xab\x2c\xfb\x38\x28\xc4\x58\x85\x0d\x7d\x2f\x5b\x2e\x75\x43\x8e\x57\xc8\xe9\x31\x3b\x2a\x5d\x04\x4a\x6d\x3c\x73\xcb\xdf\xe5\xa9\x7a\xc1\x37\x26\x8e\x1b\x6e\x1f\xc1\x05\xf8\x18\xb1\x32\x8c\xe2\x43\x4f\xd3\x61\xdb\x4a\x63\x38\x1a\xa7\xe1\x28\x84\x36\x88\x28\xe0\xbb\x56\x34\x37\xc7\xd0\x46\xbd\x5d\xdb\xbd\xcb\xb3\x4c\x28\x8f\xbd\x88\xda\x36\x33\x46\xa3\xd4\x06\x9e\x21\x69\x50\x29\x4c\x46\x91\x87\x4e\x03\x52\x16\xb2\x5e\xe1\x0d\x96\x22\xcc\x22\x3f\xee\xe9\x06\x2a\xa6\xbd\x84\xda\x7d\x67\x9e\xb3\x3c\xdb\x2e\xe2\x70\xd5\xa4\x99\x60\x91\xd8\xc1\xd0\x0f\x89\xb3\x39\x50\x15\x29\xcc\x72\x85\x5a\x3a\xa3\x80\x53\x67\x1a\xc0\xd8\xf3\x6d\x3f\x0a\x4d\x3c\xe3\xc6\x5a\xa6\x3b\x0a\x37\x7d\x5a\x63\xd8\xe8\x2d\x01\x8e\xce\x5d\x04\x81\xf6\x3e\xa1\x07\xa1\xd2\x9c\xad\x94\x74\xd8\x7e\xac\xb8\x26\xa1\x13\xca\xff\xdf\x73\x39\xc1\x59\xcf\x89\x57\x6c\x4f\x3e\x65\x97\x7f\xec\x13\x47\x68\xf8\x32\x5e\xd1\xf3\x36\x3f\x2a\x17\x3d\x5c\xf7\x75\x4f\xf3\x52\x36\x4d\xf5\x90\x2c\x45\xdf\xa4\x78\xf0\x56\xd0\xcc\x82\x04\x75\xbd\x2e\x8c\x7b\x46\xe4\x14\x9b\xac\xb9\x7b\xd8\xa3\x24\x8a\xc2\xfe\x3a\xda\x13\xb8\x14\xb4\x27\x44\xbe\x8c\x2e\x0b\x78\xe3\xcb\x8a\xb2\x3d\x4f\x0b\xf3\x88\x0b\x72\xa0\x94\x8c\xb0\x74\x1a\xc1\x27\xfa\x31\xd0\x3f\x43\xf0\xb8\x7b\xa3\x0c\x37\xf9\xb8\xa3\x08\x07\x39\x6b\xc4\xaf\x9c\x9e\x38\xa5\xf2\x87\x15\x89\xc1\x3c\x0d\x83\x0a\x11\xb0\xe7\x28\xa2\xf4\x24\xa9\x79\x69\x1c\x25\x29\x8f\x79\x58\xaa\xa3\x32\x4e\x47\xb7\xfb\xb6\x4a\x2a\xde\x6b\xc2\x8c\x0d\x93\xd8\xac\xab\xe2\xe5\x96\xe2\x36\xdd\x52\x15\x82\xc0\xcf\x87\xc4\xa8\x02\xbb\xca\x1a\xe4\xb4\x50\x44\x8f\xbc\x01\x95\x37\x48\x93\x22\x66\xea\x7a\x24\x1c\x1f\xe8\x6e\xe1\x07\xc8\x17\xe1\xab\x8a\xb8\xe7\x63\x72\x8e\x15\xdc\x51\xd1\x3e\xa7\xd5\xe1\xce\x59\xbd\x77\x9a\x2e\x1b\x8d\x23\x67\xea\x79\x52\x53\x0d\x78\x9c\x6a\x98\x58\x5c\x84\xf0\x9d\x75\x9f\x0c\x9b\xa1\x25\x23\x10\x9a\xa7\xaa\xa5\x8e\xcf\x7e\xb6\xbd\xb8\xf8\x78\xb9\xf4\xb1\xe1\x38\x85\xe3\x9a\x20\x15\xe2\xb1\x5f\xd1\xfc\xc4\x6a\x62\xaa\x7d\xdc\x67\xab\xa3\x34\xdd\x8e\x2b\x19\xb8\x93\x5a\x94\xec\xd2\x44\x39\xf4\xff\x84\xd5\x28\x38\xe2\x32\x0d\x93\x99\x39\x7a\xbd\x32\x15\x4d\x6b\x84\x67\x85\xa9\x1d\x02\xbf\x35\x41\xe0\x2a\xea\x99\x5a\x51\x7c\xfc\x88\xea\x21\x3e\x98\x38\x8d\xa3\xdd\x1b\x8a\x6d\x88\x4b\xe9\xb2\x7b\x15\x52\xe9\x24\x2d\x5a\x2c\xe0\x47\x3b\x65\x2e\x7e\xdd\xe9\x5f\x9a\x03\x9d\x9d\xcb\x60\x6e\xae\xdd\xf7\xbb\xa9\x48\x35\x4a\xe5\x4d\xe5\xd8\x97\x1b\x06\xda\x97\xdb\xd9\x38\x94\x4e\x2b\xae\xef\x9a\x92\xa1\xbb\xd6\x40\x74\xd4\x06\x11\x94\x2d\xd7\x82\xc5\x5e\x58\xd0\x1a\x02\x1d\x3f\x0d\x86\x61\x6e\x02\xd8\x5f\x44\xad\xf7\x14\x29\xfc\x3d\x55\x57\x18\x15\xa3\x7d\x8e\xd0\x02\x84\x11\x62\x66\x29\x4f\x04\x0a\x90\x87\x45\xe1\x8a\xce\xb8\xfa\xdc\xf4\xf6\xc4\xad\xb0\x17\x40\xe0\x09\x0b\xf5\x0e\x2d\x07\x94\x36\x7e\x11\x96\x02\xd9\xe4\xfd\x26\x8e\x89\xb1\xc9\x72\xa8\x94\x94\x17\x83\xf2\xef\x0d\xc5\x15\xbf\xab\xe3\x46\xe3\x1d\x47\x56\x6a\x02\x3f\x8a\x08\x68\x4b\xc6\x4b\xd2\x55\x25\x66\xc0\x11\x01\xb6\xd9\x7f\x6c\x46\x97\x67\x45\x94\xdb\x76\x24\xcc\x37\x22\x2b\x00\x98\x10\x3b\xc0\xb0\xbe\x3d\xd1\x24\x60\x01\xc6\xec\x66\xdc\x67\x5f\xf3\x14\x44\xf1\x3a\xfc\xb7\x44\x30\xe5\xb7\xa0\x40\xfa\x10\xeb\x0e\x0b\xff\xb4\x22\xaa\x62\xe5\x6b\x52\x8d\x40\xf9\xe8\xa4\xa7\x36\xcf\xab\x6a\x6e\xe1\xa4\xd2\x19\x7d\x55\xc9\xaf\x84\x71\x50\x8c\xba\x04\xef\x99\x3f\x2a\x3b\x50\xe9\x3b\x5d\x52\xb9\x6c\x90\x8c\x43\x1e\x5c\x66\x0f\xaa\x1a\xb6\xf5\xd5\xbb\x3c\xdb\x1e\x9b\xb8\x67\x1f\x15\x97\xf5\xd5\xf8\xc3\x54\xa7\x5c\x3f\x28\x82\x5d\xb4\x1a\x2d\x23\x3f\xcb\x4d\x3a\x0e\x4d\x80\xfa\x9f\xed\xf9\x3b\xee\x99\x53\x95\xee\x46\xe6\x8f\x5a\x0a\xe9\xce\xd2\x3e\x12\x71\x39\x44\xe5\xc0\xc4\x26\x23\xb8\xbf\x90\xc0\x51\x5d\x86\x4f\x14\xf9\xe3\x0f\x15\xad\xc7\x0d\x58\x30\xec\xb7\x3b\x4d\x94\x80\x2f\xfa\x63\x3f\x36\x99\x28\x73\x69\xd9\x5c\xac\xcc\x9f\x79\x0a\x81\xf2\x61\x13\x8c\x8c\xc8\xca\xa3\x64\x6c\xed\x31\xea\xac\x10\xa9\xe7\xe3\xa6\xc0\x6c\x6c\xa2\x55\x26\x78\x85\xad\x47\x9c\xc2\xc7\x6a\xdf\x26\xa3\x2e\x6d\x15\xb8\x62\x60\x18\x50\x9c\x02\x12\x48\xe4\x32\x9e\x0e\x9d\x78\x1d\xb8\x90\x47\x3c\x0f\xb9\xa8\x9f\xc7\xbc\x65\x80\x53\x11\x48\x96\x15\x32\xae\xa2\xd4\xdb\x8f\x58\xf5\x76\x47\x9f\x23\x5a\x3a\xf4\xf8\x91\x2f\x5e\x55\xb9\x63\x3d\xeb\xa7\xa9\x83\xc4\x39\x39\xab\x9e\xba\xb0\x60\x51\xe1\x92\x6f\x8e\x29\x91\x61\xb1\x54\xbc\x36\x1e\x3d\xe6\x13\xc5\x68\x17\x25\xf1\x60\x3f\x3d\x70\x98\xe0\xbb\x64\xaa\x80\x51\x9d\xea\xec\xa8\x86\x2c\x5a\xac\x5a\xcb\x12\xea\x12\x82\x66\x7b\xcb\x53\xaa\x40\x13\x25\x3c\x74\x0f\xfe\x07\xa5\xf5\xe3\xd4\xd7\x46\x13\xeb\x9e\x66\x18\xff\x9e\x16\xd2\x32\xfe\x8a\x89\xa7\x77\x0e\x43\xe1\x26\x5f\xa7\x6a\x0f\x1f\xd3\xa5\xf2\x67\x6a\x75\x01\xc0\xe7\x07\x51\x32\x32\xa9\x70\xdb\xa3\x16\x84\x11\x02\x3e\xfe\x18\x7e\x1c\xb7\x67\xd1\xc9\x38\xd0\x71\xdd\xea\x99\x0d\xb7\x37\xee\x28\xf0\x2a\xc8\xd0\x60\x1d\xf0\x30\xaf\xa9\x0e\xd3\x35\x9d\xb0\x85\x51\x38\x0e\xe3\xa4\xe5\x78\x29\x21\xc9\x2e\x9c\x86\x4f\xa9\xb8\x8e\xd8\xd9\x88\x4a\x5e\x69\x2d\xa9\x69\xb7\xa9\x0d\x87\x90\xb8\xad\x60\xea\x5d\xa2\x14\xcd\xf7\x29\x8f\x8d\xc0\x00\x25\x9f\xd6\x46\x95\xf8\x48\x25\x85\x77\x95\x3c\xfc\x26\x85\xfa\xd2\x98\x29\x1f\x3e\x7f\x55\xc7\x79\xab\xd6\x86\x83\x6e\xce\x74\xdc\x96\xfb\xf5\x5f\xfd\xcd\x56\x99\x51\x5a\xd8\xbb\xe5\xe5\xaf\xc3\xde\x9f\x9b\x3f\x4a\xa1\x5c\x9a\x44\xd8\x40\xa8\x09\xdf\x80\x1b\xe5\x13\x2d\x17\xd4\xef\x87\x81\x49\xf7\xa8\xaa\xd7\x35\x5a\x83\xb0\xab\x1f\x29\x0c\x2d\x34\x48\x91\x36\x4f\x04\xac\xa1\xda\x4d\x35\xb3\xf2\xf9\x76\x90\x44\x91\x09\xf2\xe9\x96\xa2\x80\x77\x33\x57\x67\x29\xf0\xc1\x8f\xde\x47\x54\x8a\xf0\xec\x7f\xd3\xae\x62\x68\x82\x95\x6c\xda\x2d\x86\xe3\xf4\x57\x28\x0a\xbf\x8f\xdb\xd2\x9b\x18\x6c\x70\xbb\x3a\xae\x80\xe0\xc7\x79\x12\x85\x71\x38\xe5\x72\x53\xd6\x33\xc0\x97\x3c\xc4\x96\x44\x5d\x5a\xeb\x66\xbc\x68\x48\x0d\x2c\xe5\xd1\x45\x45\xb9\xb6\x64\x07\x03\xdc\xcf\xf4\x8d\xcf\xac\x4e\x4a\x52\xc2\x73\x81\x50\x9d\xb8\xf1\x4b\xf3\xed\x6e\x6a\x37\x88\x86\xb2\x08\xcf\x93\xd3\x78\x79\xd8\x20\xcb\x76\xa4\x9d\xac\x55\xe1\x54\xef\x21\x0a\x90\xc2\xd9\x4e\xff\x60\xd7\x46\x99\x50\xaf\x53\xc1\x00\xd9\xec\x6d\x4f\x15\xd7\x2f\x57\x31\xa0\x3b\x0d\x82\x00\x59\x83\x70\xd4\x8f\xcc\x4b\xe4\x32\x6c\xe5\xdf\x71\x73\xdd\xd5\x72\x5e\x65\x5c\xc8\xfa\xf3\x08\x4a\x36\x54\xab\x65\xa3\x16\x7a\x3e\x3b\xdb\xee\xa7\xc6\x4c\xab\xb9\xcc\x33\x13\x97\x46\x81\x23\x07\x76\x11\x2d\x5b\xa1\xe1\x74\x7c\x14\xc4\x28\x88\xcc\x54\x8b\xfb\x61\x79\x41\x38\x1a\x7f\x74\xdf\xa2\xce\x56\x06\x5d\x85\xc7\xd9\xc6\xcd\xf0\x49\x93\xe2\xb2\x83\xe5\x60\xfb\x7e\x4f\x21\x61\x4f\xab\xe6\xf6\xc5\x8a\xca\x6a\x1a\x72\xa5\xd4\x62\x32\x1c\x3e\x43\xc9\xa8\xd9\xb8\x74\x0f\xf5\x69\x24\x00\x75\x38\x27\x90\x6f\xca\xb1\xca\x6c\xff\x08\x0e\x81\x4f\xd4\x5e\xbe\x58\x7b\x95\xcf\xce\x3e\xdf\x8e\x93\xd8\xe4\x43\x13\x31\x25\xe6\x33\x96\x04\xbb\x7c\xae\x7c\xac\x18\xd3\xf2\xa4\x08\x86\x14\x00\xc0\xc6\x9e\x55\x74\x02\xa7\x2a\x03\x39\x0d\x24\x7b\xd9\x28\x59\x81\x07\xe1\x6a\xa4\xa2\x4d\xd1\x4f\x09\x25\x88\xe9\x32\xa4\xc3\x92\x44\x8d\x9d\x8f\x15\xc0\x8b\x55\xd0\xf8\xa4\x41\x18\x9a\x85\x58\x65\x97\x08\x22\x4b\x35\x4b\x2e\x34\x05\x62\xa3\x30\x18\x86\x03\x3f\x26\xb3\x63\x25\xbc\x2c\x2c\xf5\x8c\xee\x9a\xb7\xb8\x5b\x27\xba\x6c\x8e\x41\xa4\x1b\x21\x68\x55\xfd\xf9\xdf\xf3\x1c\xfa\xed\xf7\x9a\x94\x6e\xb3\x61\x91\x4f\xa9\xcc\x61\xbb\x2a\x58\x44\x17\x2e\x09\x5f\x83\x54\x43\x36\x34\x51\xbf\xe5\xec\xf4\xa6\x2a\x75\x6a\xf8\xf0\x38\x0d\x79\x4c\x6b\xa9\xd2\xae\xe7\x63\x4f\x69\x51\x97\xd6\x82\x61\x8c\x0c\xf8\xf7\x54\x4a\x76\x45\x8b\x73\xfe\xac\x89\x13\x2d\x8c\xfb\x51\xb2\xc6\x88\x11\x14\x4e\xb0\x81\x2d\xe6\xbd\xfc\x6a\x78\xcc\xf3\x13\xc7\x8f\xbe\x6e\xf2\xc7\xe9\x9f\x98\xa1\xdd\xe5\xc4\xa7\x21\xf0\xbc\x3d\xbd\x41\x31\x91\x85\x76\x5b\xea\xca\x4b\x80\x73\x03\x93\x79\xdd\x53\x04\xb1\xf7\x34\xf3\x09\x28\x43\xed\x74\xf8\xf2\xac\xfd\x13\xe5\x98\x3e\x84\x77\x40\x93\xe2\x09\x6a\x7a\x5a\x16\xd8\x43\x8b\xae\x08\xe5\xb0\x47\xc7\xbc\x1d\xf5\x8e\xb9\xf9\xf6\x67\x3f\x3b\xd5\x7a\xe1\x05\x5b\xbf\x6a\x2d\x56\x23\x4f\x54\x7c\xae\x2b\x68\x1b\x15\x55\xa6\x35\xfb\xa2\x02\x2b\xed\xee\xb8\x01\xa8\xf7\x74\xc3\xea\xac\x03\x23\xac\x9b\x58\x48\x64\x98\x33\x45\xe1\x36\xea\xec\x23\x73\x73\xed\x6e\x6a\xd6\x08\x2a\x6d\x19\x96\x8f\xe1\x69\xb1\x4a\x14\x5d\x00\x16\x62\xd3\x88\xfa\xf3\xed\x5e\x9a\x8c\xc7\x55\xa5\x71\x48\xd9\x4a\xe2\xe8\xc2\x8e\xa1\x49\x33\x5a\xa9\x76\xde\x06\xb4\x97\x7c\xac\x0c\x4e\x37\x4d\x12\x9e\xab\xb4\x1c\x70\x0a\xec\xe9\xe2\x5d\xea\x8f\xc2\xb4\xe2\xf7\x1e\x2a\xb5\x9f\x87\xb6\x5c\xfe\x95\xc2\x4f\x73\x93\x0a\x1f\x81\x90\x2a\xd3\x83\x12\xb6\xe5\xfd\x2e\xbf\x38\x88\x7c\x90\x91\xf9\xdc\xe4\x14\x9c\x7e\x4d\x37\x87\x28\x15\x2d\x86\x92\x67\xc1\xb0\xfe\x64\x30\xcc\x85\x75\xff\xf5\x6f\xfc\x3a\x8d\xd1\xf0\xac\x0e\x3e\x66\xa1\xe1\x16\x94\xf5\x4e\x53\xba\xd6\xf3\x47\x63\x93\x2a\xc3\x72\x4e\x19\x96\xfa\xcc\x1a\x0d\xad\x44\xe1\x28\xb4\x79\x8f\x00\x51\x54\x4f\xf0\xa2\x27\xb5\xc0\xd8\xac\x9a\x94\x9d\xc2\x8c\x55\x10\xfa\xf9\x2f\x76\x5c\x5d\xe4\x93\x1b\xce\xd9\x31\x56\x1c\x84\x30\x0f\xa8\xb4\xc6\x93\x14\x0d\x03\xea\xed\x7e\x92\x06\x3c\xad\x8f\xe7\x88\x1c\x92\x8f\xeb\x46\xad\x5c\x98\x45\x8e\xfa\x8c\x8d\x21\x17\x16\x78\xa6\xf9\x7e\x05\xb3\xe1\x6c\xaf\x85\x0a\xa9\x31\xa1\x0a\x08\xae\x21\x77\xce\x48\x3e\x00\x26\x9b\x16\xbe\x55\xe8\xb5\xc3\xb9\xef\x4f\x76\x8e\x43\x7d\x69\xbe\xdd\x4b\x68\x1d\x0b\x6f\x20\x99\x02\x29\x02\xd5\x1b\x0e\xed\x2c\x8c\x64\x8a\xaf\xa9\xbe\xee\x6c\x40\x37\x35\xa6\x37\xe5\xba\x2b\xb7\xd5\x66\xda\xd4\x68\xe8\x9f\x2b\xcb\x9e\x0f\x4d\x1f\xb0\x73\x29\x83\xfe\x1e\x3d\x5f\x61\x4c\xa5\x3f\x93\xa1\xcb\x9d\x37\xb3\xb8\xd8\xf6\x33\x9a\xc7\xb3\x6d\x16\x5b\xcd\xbc\xa1\xf4\x55\xb6\xe1\x41\xc5\xaf\xec\xfc\x9a\xe5\xd9\xf6\x20\x99\x76\xfa\xdf\x6f\x4c\x94\xbc\xd1\x96\xa7\x00\x3b\x5c\xd5\x45\xe1\xef\x47\x5a\x0f\x6f\x68\x0c\x68\x63\x60\x61\x91\x43\x23\xe6\xb8\x4f\xa6\x42\x14\x7e\x1a\x74\x26\x53\x53\xee\x42\xb4\x5b\x61\xb0\xce\x6a\x37\x7a\xd6\x13\x41\xc1\x5e\x98\x05\xa9\x19\xfb\x71\x10\x56\x41\x21\x95\xe8\x4a\xb5\x07\x58\xe1\x6a\x5f\x4b\x4d\xb0\xd1\x37\x0b\xe5\x30\x35\x08\xb9\x6f\xe0\x55\x9a\x08\x2d\x45\x5d\x57\x9a\x87\x6d\x94\xbd\xb7\x1f\xa0\xd0\xa6\x58\x54\xe7\x79\x9d\xbf\xa3\xd6\xf3\xc8\xf4\xc2\x20\x8c\x59\x4c\x59\xc7\xc4\xe8\xec\xfd\x39\xfe\x10\x15\xf1\xf3\x3a\xc1\x2b\xf2\xd4\x8a\xe2\x23\x50\x3d\xa6\x84\xee\x8e\x79\xae\xa6\x49\x22\x57\x8e\x17\xe5\xb8\xa6\x42\x39\x5e\xab\xf7\x12\x7e\xc2\xf4\x8b\x81\xa9\x62\xc6\x2f\x6a\xcc\xf8\x45\xc5\x4e\xbb\x12\x27\x6b\x9f\x20\xc7\x8c\xcc\xf9\xb2\x8a\xc2\xaf\x29\xfd\x95\x1f\xd2\x44\x82\x25\xe6\xfb\xd2\xbc\xb5\x0d\xe5\x6b\x17\x18\x02\x55\x7c\x2d\x70\xd0\x0d\x4c\x32\x90\x97\x4f\x26\xaa\xda\x5d\x85\xe2\x52\xe8\x80\xde\xf7\x59\x07\xa0\x48\x43\x83\xf0\x09\x9e\xfa\x1c\xbe\x8c\x4f\x9a\x12\xb8\x9e\x89\x7c\x74\x57\x2c\x1d\xdd\xb2\x3d\x56\x3c\xcf\x63\x13\x67\x61\x12\xef\x55\xe3\x57\xfb\x3a\x0a\xd3\x8f\x2a\xad\x50\x12\x95\x26\x54\x2a\x58\xca\x9b\xf2\x8c\x17\x36\x55\x45\x3f\xed\x51\x25\x10\x3e\x88\xc4\x05\x49\x92\x74\x41\x11\x48\x5e\xd0\xa8\xdc\x7c\x18\x99\xdc\x60\xc7\x23\xcc\x3a\xe1\xb9\xb1\x69\x8e\x6a\x6c\x2a\xbb\x3c\x2b\x1f\x6a\x2a\x67\x0b\x57\x3e\x02\x7c\x54\xc4\x4f\x2a\x5e\xab\x93\x8d\x08\x9c\x81\x89\xc3\x82\x6b\x32\x58\x16\xa7\x2b\xbf\x4a\x8f\x45\x34\x7a\x1a\x6a\x4c\x23\x7f\x10\x06\x7e\x04\xe4\x2c\xdc\xd1\x79\x45\x88\x58\x07\x50\x1e\x3d\xdc\xee\x16\x29\x06\xaf\x6d\x16\xe2\x32\x92\x89\xa6\xb5\x48\x0b\x10\x35\x4f\x39\x3a\x79\x8e\x13\xb1\x41\x6f\x21\xce\x14\x3c\xbe\xd6\x77\x1d\x64\x33\xe5\x1f\x89\x42\x9e\xe2\x9a\x64\x83\xc1\x33\xad\xca\x95\xdd\xd1\x40\x92\xcd\x89\x03\x6c\x0e\xfd\x55\xf3\xa4\x12\x39\xde\xb5\x41\x2b\x59\x68\x12\x1c\x2f\xcf\x34\x85\xa7\xf8\x10\x53\x81\x22\x57\x40\xc1\x8a\x4b\xe5\xac\xca\x81\x62\xf9\x94\x8a\x45\xef\xa0\x8a\x6d\xb1\xee\x15\x2d\x48\x11\xd1\xf9\xa7\x4f\x11\x68\x5f\xf4\x65\xcb\x95\x0a\x40\xdb\x49\x02\xca\xe3\xc7\xcf\xb8\xf6\xfc\xff\xf4\x24\xa2\x74\x2a\x69\x4c\x58\x29\xc6\xf2\x3a\x95\x06\xf0\xf1\xce\xd3\xd5\x78\xf9\xd9\xd9\xa5\xf6\xc2\xc2\x91\x29\x37\x85\xf3\x86\x6a\x27\x82\xc5\x19\xee\xf8\x86\xf7\x94\x96\x46\x29\x02\xcc\x32\x93\x11\xb6\x98\xc5\xf2\x07\xf9\xa4\x29\xec\x05\x67\x05\x13\xd7\x34\xf5\xd2\x74\x83\x20\x1d\x98\xc7\xe9\x83\x22\xbc\x47\x6b\xd5\xd2\x52\x96\x4f\x0c\x75\x9c\xb7\xa8\xd8\x2a\x1c\x70\x4a\x39\xee\x15\x4c\xbf\xe0\x99\x4d\x75\x34\xa9\x1d\x9a\xa6\xf0\x51\x3c\xc9\xae\x95\x4a\xf0\xc8\xef\x2a\x2d\x85\x7f\x4f\x7b\x12\x06\xfa\x9a\xa7\xe4\xcc\xb6\x34\x4d\xeb\x71\x44\xf1\x22\xcd\xe4\xe0\xb7\xfd\xd4\x8f\x83\x61\x98\x19\xc3\xc1\x30\x03\xec\x71\xb9\x82\xb6\xff\xb8\xfa\xcf\xc8\xa4\x41\x91\xa2\x8a\x64\x55\x21\xcb\x3f\x14\xaa\x2b\x85\xd9\x6f\x52\x88\x63\x3e\xd3\x1e\x3b\x0f\x3b\xa2\x5d\xfe\x95\x4c\x62\xbb\x76\x79\x96\x8c\xcc\xda\xd0\xa4\x46\xc9\x40\xbd\x37\x71\x32\x50\xef\x79\x8e\xca\x2f\x89\x4c\x9e\xfb\xb4\x7c\x2c\x5c\xa8\x7c\x98\x42\x24\xa8\x46\xf1\xef\xaa\x4e\xee\xaf\xff\xd6\x7f\xd3\x72\x37\xc3\xda\x2c\x7c\xb2\xf1\x98\x9b\x1f\x18\x8d\x0d\xe3\xf2\x84\x02\xd3\xe1\x17\xbe\xe3\x39\x83\xa7\xf3\xed\xbe\x89\x92\x18\x7e\x02\x8e\x9e\x65\xe4\xf9\xa4\xce\x9b\xb6\x5c\x3a\x57\x41\x00\x3e\xaf\x73\xe5\x25\x4e\xce\x6e\x2a\xf6\x9a\xd7\x6b\x06\x79\x79\xb6\x6d\x8a\x34\x19\x1b\x3f\x96\x54\x07\x6b\x86\xf9\xc8\xf9\xa4\x81\x77\x7b\xb9\x5d\xc4\x8a\x14\x1e\x3b\xe7\xa2\xaa\x23\xd4\x93\x47\x9a\x46\x28\xd6\x6d\xdc\x2c\xd2\x84\xe5\x16\xe0\x63\x5d\x03\x0b\x6d\x51\x44\x12\x2e\xfa\x2b\x49\xc5\x1a\x6a\x08\xd9\x30\x59\x23\xa0\xa6\x2b\x8c\xb0\x28\xa8\x7b\xfb\xbf\xea\x08\x3e\xfc\x74\xd4\x52\x6d\x5b\x45\x1a\x7e\xd1\x6a\x49\x87\x71\x6e\xa8\x38\x5d\xf8\x11\x17\x27\x60\xbb\x58\x66\x13\x49\xfe\x49\xa5\xd6\x73\xaf\xf1\x61\x65\xe5\x4b\x0a\x11\x34\x58\x10\xbe\xed\x45\xd6\x11\xa4\xc4\xea\xf5\x62\xc0\xdc\x2a\x02\xbf\xd1\xf5\x90\xa7\x54\x9b\x74\x44\x14\x3e\xac\x3b\x8c\x88\xed\xba\xe7\x3a\x06\xd7\x1b\x24\x3f\x96\xdb\xe6\x25\x25\xf9\x81\x60\x01\x7f\xc4\xc7\x3a\x69\x26\x30\xfb\xa3\x74\xc7\x92\x6e\xd2\xb3\x40\x98\x74\x47\xb9\xdf\x0f\x60\xde\xd8\x54\x91\x79\x63\x87\xed\xb9\xfe\xd1\xf7\xa8\x33\x85\x8a\x45\xab\xa3\x06\x10\xce\xc1\xec\x31\x1b\x07\xa2\x2f\xfe\x98\xc6\x72\xfb\x50\xf7\x16\x22\x39\xd8\xac\x5b\x13\x85\xf6\xa8\xab\xd5\xd2\x13\xcd\x86\x09\xc7\xb8\xf0\xd3\x27\xe8\xca\xf9\xb8\x16\x38\xcc\xcd\xb5\xc7\x26\xed\x17\x23\x98\x93\x66\x70\xa5\x93\xe8\x70\xfc\xb9\xc2\x50\xe3\x42\xc4\x3f\xc6\x46\xc6\x9f\x9d\xd7\x58\xf2\xbb\x9a\x48\x82\x85\xb1\xa4\x48\xe8\x10\x8b\xe7\x11\x55\xb2\x0b\xcb\xc3\x38\xe9\x46\x7e\x96\x27\x23\x7f\x4a\x25\x4d\x57\x14\x24\x01\xce\x15\xc7\x3f\x56\xf1\xb5\x5f\x0c\x0e\xe2\x9d\xa3\xa4\xc5\x34\x97\x7c\xa2\xba\xd7\x23\xff\xe5\x9e\x0f\xa6\x4c\x35\x52\xe5\xcc\xbf\xab\xe2\xb2\x0a\x8a\xf4\xb6\x1a\x8a\xe0\x83\x70\xd5\x4c\xbb\xbb\xd9\x05\x60\x8e\xf0\x51\xb8\xe4\xfb\xaa\x22\xf8\x39\xa6\x42\xd0\x71\x6a\x7a\x44\x80\x50\x06\x12\x52\x06\xaf\x00\xf2\xcb\x05\xc5\xf2\x6a\x96\xdd\x3a\xf3\xcb\x2c\x3d\xcc\x72\x3f\x9b\x56\xac\x1b\x77\xd4\x48\x27\x77\xf9\xe1\x00\xa6\x39\xe6\x41\x04\xf1\x40\x11\x0c\x99\x97\x82\xa8\xc8\x48\x1a\xb4\x74\xeb\xa0\x77\x05\xe6\x89\x8f\x35\xdf\xf2\x5a\xb6\x47\x91\xba\x4c\x01\x5d\x82\x5d\xf0\x78\x47\xb7\x12\x15\x1f\xc4\x83\x89\x92\x60\xd9\xa2\x7d\x23\x15\x57\x37\x98\xfe\xa2\x81\x3e\x69\xf9\x24\xad\x54\xa6\xaa\xe2\x56\xa2\x52\xe3\x8f\xa2\x32\x15\x6c\x3d\x3b\xbb\x7d\x55\x7d\xec\x23\x4f\x75\xb1\xb5\xc6\xcc\xd0\x8f\x07\xa6\x37\x4d\x51\xa3\x15\x68\x59\x96\x26\x16\xb4\xcf\xf0\x88\xbf\x35\x51\xc2\xab\x56\x19\xc8\x5f\x09\xe3\x19\x45\xbe\xf2\xf3\x89\xa6\x35\xa6\x87\x85\xaf\x7a\x94\xd0\x32\x76\x8e\x69\x71\x71\xbb\x4e\xfe\xb4\xb8\xd8\xce\xc3\x7e\xbf\xa5\xaa\xb2\x17\x94\x82\xdf\x05\xdb\x7e\x5f\x33\x66\xc5\xc4\x15\xd6\xfa\x37\xb1\xd9\xf8\x44\x85\x07\x04\x7b\x30\x59\x9e\x3d\xaa\x79\x03\x2a\x4a\x04\x14\xdb\x5a\x69\xad\xb9\x79\xc6\x60\x7e\x5d\x8b\xf7\x32\xe0\x83\x4f\xb0\x7f\x81\xaf\xe1\x20\x4a\x57\xd5\x11\xa4\xdc\xa6\x05\x2a\x32\x5d\xae\x52\x60\x2b\x9c\xf3\x47\xed\x80\x6a\xf9\x6c\xf9\x58\xc5\x06\x41\x94\x04\x2b\x19\x51\x6d\xda\x99\x86\x43\x6e\xa6\x41\xcf\x72\xa4\xfe\x4b\xf0\x81\x22\xec\xd5\xb2\x14\xb5\x1b\xaa\x65\xdd\x4f\xc3\x32\xb0\x42\xff\x0c\x15\x9b\x53\xf4\x51\x59\xd2\x2d\x2b\xf5\x85\xb9\x23\x19\x9f\x74\xf5\x17\x9a\x8c\xa0\xa1\x6d\x5b\xe3\x2b\xed\xb7\x40\xe6\x1a\xf2\xbf\x91\xf1\xe3\xb5\x61\x18\x19\x8a\x08\xd1\x5a\xbd\xc6\x05\x53\xee\x15\x4d\x94\x26\xd6\x5b\x13\x67\xf6\x41\x66\xe0\xa7\x61\xb4\xde\x72\x02\xad\xef\xd3\x63\xe0\x63\x3b\xc0\xe9\x47\x26\x85\xa4\xbd\x90\x78\xaa\xa0\x73\xd3\xd6\xbf\xc7\xc6\x5f\xa9\xf2\xf3\x5c\x44\x10\xc8\x27\x8a\x73\x36\xc9\x87\x26\x5d\x0b\x33\x33\xad\xe8\x81\x2e\x78\x6e\xd0\xe5\x96\xea\x6b\x01\x74\xc4\x1c\xdb\x0a\xd3\xfa\xa2\xff\xf2\xcb\x33\x0e\x7c\xba\x83\x43\x99\xbe\xd8\x16\x82\x14\x57\x13\x19\x1d\x24\x93\x1f\x29\xbc\x6a\x37\x29\xd2\xcc\x4c\x95\x71\x04\x5a\xf6\x0c\x79\x15\x80\x93\x6a\x4d\xd6\xd9\x38\x9f\x9d\x7d\xbe\x74\x87\x69\x6e\xd2\x69\xfa\x7e\x98\x55\x80\x4d\xe0\x80\xfe\x9f\x89\x8a\x0d\x90\x63\xa3\x0e\x73\xba\xb6\x5d\x8f\x1e\x6e\x67\x09\x3f\x71\x44\x68\x48\x53\xf8\xb8\x21\x5a\x5b\x6a\xf7\xfd\x28\x48\xe2\x56\x25\xb7\xa1\x1f\x91\x58\x60\x27\xcc\xfb\xd0\x62\x3b\x0b\x47\xe3\x48\xc5\x9d\x48\x90\x80\xfc\xe0\x63\xb5\x3c\x4b\x8b\x06\x84\x08\x2c\xd2\x19\x4f\x51\x1a\xd4\x61\xde\x54\x97\xcf\xc3\x55\x03\x0e\x49\xfb\x26\x2c\x03\xd4\x7d\xf5\x70\xce\x6a\x34\xf7\x30\x2d\x06\xa4\xc6\xb1\xbc\xc4\x8d\xa6\x0f\x3c\xc7\x27\xf4\x41\xad\xa5\xba\x3c\x7b\xa4\x8c\xbf\x4c\xb9\x03\xed\xa0\x08\x0a\x50\x5f\x9d\x38\xb8\xe5\x57\x6b\x8f\x60\x61\x81\x45\xed\x1c\x94\x96\x67\xfe\x54\x9c\x7f\x51\x01\x23\x32\x3f\xf2\x39\xfd\xe2\x39\xc4\x89\x02\x62\xa3\x45\x84\x8a\xc3\x0d\x3b\x41\xe3\xa7\x83\xc2\x7e\x3d\xfc\xe4\xab\xca\x67\xbe\xda\x50\xaf\x7f\xbe\x1d\x25\x42\xe8\xa8\x08\x85\xec\x04\xb0\xf2\xa5\x7e\x6f\x14\x12\x2e\x11\x80\x06\x91\x7d\x69\xed\x20\xeb\x03\xe2\xe7\x77\x55\x84\xd5\x37\x7e\x9a\xed\x29\xf7\x85\xf0\x6c\xb8\x8a\xfb\x2d\x4f\xc9\x34\xa3\xc9\x67\xe7\xd3\x6d\x9d\xfa\x23\x7a\xfd\xdb\x6f\x57\x72\xf5\xcc\xa4\x8f\x3a\xf9\xd9\xaf\x69\x31\x1d\x26\x8f\xe2\x99\x4c\xcf\x76\x3e\x8f\x1d\xd8\x70\x71\x2d\xda\x74\x78\x84\xfb\x37\xdc\xb8\x1f\x03\xa8\x65\x05\x94\x06\x4b\xc6\x7d\x69\x11\x22\x67\x9f\xa9\xe1\x76\x09\x65\xa7\x50\x8c\x64\xe0\x6f\x62\xce\x9c\x1e\xe6\xe0\x09\x6a\xaa\xa0\x8f\x72\x5d\x15\x7f\x01\x5e\x12\x31\x2a\x51\xef\xa1\x5b\x10\xc2\x02\xf7\x30\x07\x7e\x18\x67\x7b\xca\x70\x8a\x35\xe5\x11\x3d\xdb\xb1\x01\x1b\xd9\x5c\xf7\x94\xd8\xf6\x15\x05\x42\x66\x6d\x18\x91\xa4\x7f\xd4\x5e\xc7\xaf\x3c\xed\x0c\xe1\x5b\x8a\xed\x85\xb1\xae\xdc\x62\xa5\xf2\x2d\xe6\x57\xb8\xd6\x2f\x0a\xd7\x40\x4a\x89\xac\x63\xe9\x83\x11\x90\x2d\x79\x3b\xa6\x92\x96\xb8\xbe\x72\x03\x6a\xc0\x6c\xb4\x3c\x27\x69\xb9\x1b\x62\xc0\x4c\xe6\x3d\xd1\x00\x9d\x57\x51\x5f\xc3\x3f\xb1\xfc\x26\xda\xf6\xd7\x91\x67\x62\xe4\xe6\x34\xdc\x01\xf6\xd5\x35\x4a\xd9\xb0\x8d\x98\xb2\x41\x08\x93\xdd\x84\xc6\x5f\xa8\xdc\xfe\xc0\xc6\xce\xfe\xd1\x0b\x2f\xb4\x83\x24\x5e\x35\x31\x6d\x7c\x42\xe6\xa2\xfa\xd3\xea\x38\x7a\x78\x4c\x34\xa0\x90\x73\x5a\xe1\x72\x5f\xd3\xb4\xa4\x75\x5a\xe7\xa3\x87\xdb\x41\x5a\x30\x79\x94\x04\x3f\x6a\x05\x5f\x54\x52\x8d\xd7\x2b\xb3\xae\xbd\x30\x51\x78\x8b\x9f\x68\x32\x9b\x9f\x38\x66\x89\x22\x8a\xba\x3e\xc5\x20\x16\x63\xc3\x7d\x7d\x3e\x69\x00\x1f\xb1\x98\xa6\x22\xc1\xfa\xb9\x62\xa2\xf9\xb9\xa7\x85\x54\x30\xa2\x3b\xa5\xd0\xca\xaa\x25\x75\xba\xa2\xb3\xe7\x39\x08\x0f\xf9\xb0\xbd\x0a\x60\xa3\x15\xfe\x77\x6f\x28\x7d\x46\xa6\xc1\xb0\x22\x32\x96\xa8\xf6\xbe\xa7\xa8\xd9\x5f\xd7\x1d\xd6\xef\x35\x01\x16\xcb\xff\x5a\xf3\x08\x84\x20\x1e\x2d\x1f\x37\x4d\xa5\xae\x9a\x21\xf1\xec\xb6\x54\x81\x44\x29\xde\x5f\x54\xc9\x76\x3f\xec\x72\x11\x43\xd2\x81\x7b\x9e\x2a\xeb\x3a\x26\x9e\x61\xd2\xef\x8f\x7c\xb0\xeb\xa0\x3d\xc0\xd9\x0c\x9f\xa8\x94\xc4\xc4\x31\x5a\x42\x12\x1a\x28\x37\xab\xe5\x32\xef\x79\x3b\x8a\xac\x4b\xcb\x4b\xed\x67\x67\xe7\x9f\x2a\x1d\x1b\x16\xe1\x0c\x05\xef\x00\x12\xcc\x40\xf0\x05\x21\x06\xba\xd1\x18\xeb\xa7\x01\x9d\x67\x04\x1f\x40\xfb\x16\xc0\xd6\x56\xa7\x3a\x1b\x57\x5e\x13\x62\xb7\xdd\x1b\x0e\x28\x71\x9b\xfa\x39\x08\x6d\x6f\xc0\x8e\x32\x8c\x81\xac\x06\xb6\xe6\x1d\x98\x13\xdc\x2c\xca\x5c\xb8\xa3\x19\x54\x14\x60\x34\x5e\xc5\xdc\x06\xea\x4b\x57\x29\xa2\xc7\x33\x60\xc2\x18\x61\x48\x55\x50\x9d\xfb\x0d\x2d\x88\x23\xed\x3c\xf5\x7b\x32\xff\x26\x62\x8c\x74\xf9\x48\x10\xf6\x76\xdc\x00\xc3\xf5\xc9\x27\xac\xb7\xeb\xf7\x7c\xbc\x4a\x84\xba\x37\xd4\xac\xfa\x8d\x9a\x77\x7f\x76\xf6\x99\x76\x66\xe2\x5c\x05\x05\xd2\x57\xd3\xd2\x94\xb5\xe8\x6b\xfe\x68\xbb\x5f\x86\x2d\xe5\xdd\xe1\x39\x23\x8c\xab\x94\x32\x85\x70\xc1\x01\xee\x62\x3f\x4d\x93\x35\x06\x74\xc9\x2b\x69\x59\x3a\x97\x2b\x8d\xf3\xa6\x48\x13\x19\xea\x03\x27\x44\x82\x4a\x4b\x98\xa1\x96\x9a\xe1\xd5\x5a\x45\x18\x93\xd4\x45\x96\x13\x45\xa0\x94\x1b\x11\x5c\xde\xd3\x03\x39\xf7\x6a\x96\x6d\x79\xb6\x8c\x2e\x53\x10\xc9\x31\x99\x80\xa2\xc5\x3b\xad\x50\x7f\xad\xce\xce\x87\xf3\xdc\x52\x7b\x44\xb1\x49\x69\xaf\x65\xaa\x9e\xfa\x82\x7c\xa2\xb0\x9c\x23\x3f\xf6\x07\x96\x8f\xc5\x6e\x16\x4b\x07\x7f\xb1\x49\x8c\xcd\x1f\x19\x12\xae\xe5\xd6\xb0\xd0\x2b\xe0\xfe\xf8\xac\x19\x74\xe6\x67\x89\x05\x9d\x71\x64\xad\x74\xd9\x4f\xdb\x86\xe3\xd8\x1f\x9b\x74\x8f\x43\xdd\x73\xce\x29\xfb\x4e\xe1\x29\x8f\xd3\x3e\x60\x9e\x5a\x9a\x76\xb0\x1f\x52\xd1\x58\xad\x15\x7f\xf4\x70\x3b\x86\xb8\x9e\x65\x86\x5c\x9e\xb5\xfc\x81\xe5\x9e\x43\x3a\x76\xdb\xba\x0d\x3f\x36\xa3\xd0\xcf\xe8\x8d\xa0\xa8\xf3\x1a\x2e\x0a\x3b\xed\x7a\x85\x97\xc6\xa5\x2c\x41\x52\xa4\x4c\x00\x82\x6f\xff\x23\x38\x72\xab\xf9\x56\xee\x49\x38\xef\x7a\xfc\x4f\xa1\x51\x1a\xe6\x49\x6c\x18\xc2\x03\x58\xf9\x96\x52\x64\xda\xb2\x0f\x2d\x4b\xa2\x72\x4b\xd8\x5a\x07\xaa\x94\xf0\xfe\x6f\x53\x1c\x23\x65\x46\x27\x84\x19\x25\x33\x2a\xfd\xd1\x35\x70\x14\x1f\x90\x23\x5d\xf7\x5c\xfd\xe2\x16\x56\x2e\xee\xf4\xbe\xca\xd7\x93\xb1\x89\x4b\x6f\x66\x19\x70\xc1\xa7\x0d\x13\x75\x0f\xef\x0c\xfb\xf9\xfd\xc6\x8a\x31\x20\x89\x59\xcb\xc1\x98\x2f\x4f\xb4\x8a\x40\xc3\x4a\x7c\x5e\x06\x74\x78\x49\x71\x98\x0c\xdb\x21\x31\x73\x45\x90\x37\x1a\x3f\xe2\x24\xce\x6e\x7b\x2e\xe7\x7c\xdd\x73\x51\xed\xa6\xa7\x04\xe8\x76\x6d\x28\x01\x3a\xae\xe3\x69\xea\x77\x54\x7b\x6e\xd1\x9e\x11\x18\x64\xd3\x84\x62\x64\x4c\xbf\xc0\x4b\x94\x14\x41\xf3\x09\xab\x07\xd9\x2d\xd6\x4d\x9a\x41\xae\x40\x53\xd1\xb2\xda\x15\xfd\x2a\x52\xb5\x93\x74\x03\x80\xd3\xfe\xac\x49\x73\x3b\x2b\x46\xa3\x10\xf1\x11\xbe\x09\xe6\x0e\xd7\xff\x11\x65\x6c\xd2\x73\x6c\x58\x7b\x41\x32\x1a\x15\x71\x98\xe5\xd9\x34\xf6\x36\xe2\x8d\xc7\x3b\x0a\xa9\xd2\xa2\xd8\x5c\xb4\x5f\xb5\x02\x9a\xaa\xb4\xad\x25\xe9\x0a\x69\xe4\x7e\xe1\x77\xac\xd2\x4d\x79\xe5\x32\xa7\xeb\x34\x77\xbe\x49\x05\x38\x04\xa9\xff\xb7\x1a\x51\xbe\x3d\x71\xdb\xeb\x9a\xdd\x93\xdd\x22\x8d\x05\x9a\x87\xb2\xd3\x4d\xfa\x9c\x22\x89\x7c\xc6\x4a\x92\x4b\x23\x6c\x64\xe2\x6c\xcd\xf8\x29\xd1\xac\x0b\x3e\xb0\xfc\x2b\x3e\x56\xa1\x56\x3e\x4c\x8d\x79\x42\xd3\xfd\x9f\xf7\x94\xaa\xf1\x5d\xcf\xdd\x10\x71\xff\x6e\x5f\x22\xcf\x8f\x9f\x3f\xa6\x80\x81\x1c\x96\xc1\x8f\xdf\xa7\xfb\x45\xfd\xed\x7d\xcf\x69\xb0\xfe\x18\xf5\x10\x54\x10\x40\xdd\x8b\xa8\xfa\x96\xa7\x60\xa6\x6f\x78\x4a\xaa\xe1\xae\xde\x56\x4c\x52\x8c\x28\xe2\x0e\x62\x3f\xec\xe5\x33\x4a\x40\xf2\xa3\xca\xbc\x59\x1c\x31\x5b\x21\x73\x97\x60\x4d\x0a\x91\x49\xdd\x5d\xb7\x03\xbf\x20\xa9\x45\x16\x80\x10\xf9\x82\x96\x65\x5f\x3d\x69\x47\x67\xc3\xd8\xf4\xfb\x61\x50\x06\xfe\xeb\x2d\xd5\x3d\x41\x1a\x2b\x80\x13\x57\xac\x34\x71\x2f\x59\x73\xd3\x50\x4a\x19\x50\xc8\x01\xce\x37\xa0\x6d\xda\x61\x1c\x84\x3d\x63\x35\x2c\xd0\xf9\x3a\xe5\xa9\x9e\xd8\xa9\x06\xb6\xea\x23\xa4\x6e\x9b\x65\xe1\x2a\xa8\x0c\xdd\x54\xa0\x05\xe3\xbf\xea\x52\x06\x3f\x4d\x43\xd3\x9b\x71\xff\x76\x69\xa2\x74\x42\x1f\x57\x54\x44\x0f\xd5\xdc\x3e\x57\x04\x90\xf3\x7d\x67\xe7\xb8\xef\xe7\xca\xab\xf8\x45\x15\xe8\x9e\x99\x28\xee\xde\x3b\x94\x07\x8a\x4a\x28\xb9\x72\x24\xd0\x27\xd5\xf4\xe3\xbe\x8e\x4b\x10\x5f\x43\x74\x88\x17\x7e\x82\xb6\x11\x2b\xb4\x51\x12\x67\x49\x0b\xe6\xe6\xb8\xce\x3e\xd5\x29\x57\xaf\x1d\x0f\x3a\x24\x40\x82\x7f\xa7\x33\x68\x96\xb4\x60\xbd\x00\x44\x11\x76\x00\xfa\xcb\x5f\xb4\xea\xab\xad\xe7\x96\xaa\x2a\x94\xb8\xa5\xa9\x8e\x1a\xcf\x7a\x73\xe2\xc6\xba\x7e\x8a\xb5\x0e\x5e\x9d\x5d\xdc\x86\xc0\x92\x38\x4b\x21\x2f\xb3\x02\x60\x6e\x08\x51\xd7\x3d\xb2\x19\x98\x01\xe1\x61\x58\x54\xe4\xaf\x4d\x14\x8f\xef\x3b\xe0\x82\xc2\x4f\x3a\x15\xff\x35\x3f\x5a\xd9\x43\xcf\x17\x0e\x69\x1f\x39\x27\x5b\xd1\x2e\x1f\x9d\x0d\x72\xcb\x3b\x96\x7d\xeb\x3a\x0f\x04\xb6\xdf\x3e\x55\x51\xea\x48\x7a\x45\x60\xf6\xd2\xa5\x60\x5d\xec\xc5\x0d\x73\xe8\xa9\x78\xce\xae\x2a\xa1\x80\x4b\x4a\x84\xf9\x86\x82\x62\xdd\xc0\x43\x41\xca\xb7\xa5\xdb\xe4\x61\x16\xf8\xd1\x7e\x45\x58\xcd\x80\x00\x3e\xd1\x58\x67\x1e\x50\xd5\xce\x42\xd8\xab\x1d\x6a\xff\x9a\x12\xd3\xff\xeb\x89\x92\x08\xbe\xe8\x29\x40\xe0\xc5\x89\xae\x31\xd1\x0d\xa0\xd0\xfd\xbe\x7a\x08\x3d\x93\xa7\x49\x98\xef\xa5\x8b\xab\x30\xd6\x61\xdd\xff\x01\x45\x1e\xb8\xc1\xfb\x5c\xf7\xb6\x18\x6f\xab\x41\xf9\x75\x5c\x84\x14\x2a\xcb\xab\x66\x0e\xf1\x06\xba\xf7\xe5\xf6\x5a\x48\x9a\x4a\xe5\xeb\xb4\x10\x80\xf2\x25\x48\xdf\x58\x66\x57\x46\x83\xd1\x94\x62\xcf\xbb\xea\x69\x3f\xf6\xaa\x62\x6b\x39\x5f\x33\x11\x87\x16\xdb\x79\x6a\xfc\xde\x28\x8c\x22\x36\x2d\xc2\x9a\xd5\x72\x0c\x5a\x2e\x62\x35\x7e\x60\x66\xe8\x26\x2a\x95\x02\x4d\x38\x84\xd5\x3e\xd3\x51\x74\x57\x7f\x4d\x4f\xe7\xe3\x68\x38\xe6\xe6\xdb\xfd\xd0\x69\xd5\x62\x89\xdd\x56\xd0\xde\xdb\xb6\x57\x56\xc4\x19\x51\x27\x00\xdd\xc9\x41\x97\x96\x63\xbb\x57\xc3\x42\x50\x83\xb8\xeb\x07\x2b\x51\xc2\xf1\xbf\x16\x9a\x16\x61\xad\x7a\xe9\x73\xa9\x9d\x15\x29\x66\xa2\xf9\x15\x63\xc9\xa1\xab\xfc\x16\xcc\x87\xae\xea\xc3\x26\xdd\xb4\x7b\x71\x35\x10\x45\x53\x98\x0f\x4c\xd0\xc1\x81\x9f\xd0\x6b\xf9\xbe\x82\x85\x47\xd1\xc1\x56\xeb\x90\x22\xae\x72\x6e\x9a\x5e\x11\x1a\x71\xa8\x2d\xdd\x53\x74\x1b\x4c\x42\x6f\xc7\x77\x2c\xb5\xf1\x5d\xc5\x38\x72\xd3\x3e\x47\x4c\xce\x86\x92\xef\x21\x99\xb8\xed\x39\xb8\x03\xd3\x77\x88\xcc\x67\x3d\x63\x7c\xa6\x1d\x46\x91\x19\xf8\xd1\x94\x43\xc3\x9e\x9c\x28\x92\xab\xff\xa4\xb4\x82\xcf\xd8\x87\x12\x14\x11\x02\x35\xbd\x39\xf0\x96\xdf\xf6\x14\x34\xe7\x64\x2d\xcf\x2c\x93\xd4\xa1\xf1\x7b\x0c\xe1\x87\x64\x9c\xc0\x5f\x1d\xc2\xf1\xaa\x1a\xea\xbc\xd2\xa4\x71\x9e\x0f\x13\x9a\xe9\x8c\xd6\x21\xc0\xac\xa9\x28\xf9\x58\x49\x3c\x06\x49\x92\x02\xcc\x27\x7a\xc1\xf4\x5c\x44\x30\xb8\xe5\x74\xa8\xf4\x54\xd0\x69\xf8\x65\xf9\x93\x86\x86\x84\x79\x69\xcc\xcc\xec\x82\xa6\x43\xc1\x99\x8f\x37\x1a\xc9\x0a\xd2\xb1\xc9\x8b\x32\x45\x7a\x76\xd6\x8e\x32\xaa\xb1\x46\x5b\xd2\x1b\x85\xbd\x5e\x64\x84\x2f\x8e\xd5\x28\x35\x72\x6c\xa2\xea\xa2\x37\x6d\xd7\x6c\x35\xf4\xbb\x91\x51\xb8\xe9\x77\x15\x24\xed\xdd\x06\x56\x89\x76\xdf\xf4\x4c\xca\x39\x5b\x23\xd8\x51\xa8\x13\x73\x13\x0c\xe3\xf0\x2b\x85\xe0\xac\x79\xee\x57\x75\x04\xee\xa8\xee\x69\xd7\x4f\x83\xc8\x5f\x9f\xaa\x54\xb0\xdc\x86\x3f\x37\xd1\xe3\xfe\x72\xf5\xeb\x26\x62\x52\x31\xf1\xa4\x3f\xd6\x2c\x3d\xaf\x4d\x94\xec\xe7\xb1\xda\x2b\x39\xb4\xd8\x0e\x12\x82\x22\xc0\x76\x4a\x01\x58\x55\x38\x59\x01\x0d\xdb\x6a\xca\xb2\x82\xa1\xda\x22\x25\x24\xd4\x0a\x39\x2c\x45\x08\x71\x8c\x92\x26\x19\x5e\xd0\x79\x5a\xb1\x8e\x2e\x16\xec\xcb\x19\xed\x4f\xce\x78\x4f\xbb\x16\x31\x55\x96\x73\x52\x56\x9e\xa1\x3a\x9b\xed\x70\x2f\x4b\x66\xf5\x8a\x42\xbc\xfc\x98\x1c\x32\x3e\x73\x57\x4d\x1e\x9f\xb2\x25\x46\x22\x9f\x08\x31\xe0\x86\x04\x72\x4f\x47\x41\xc4\x2f\x29\xbf\xb9\xa9\x08\x35\x2e\xd5\xec\x00\x19\xd7\x28\x5c\x15\x48\x97\xc8\xf1\xbb\x35\x74\x52\xb3\xde\x44\x26\x1d\xac\x97\xeb\x52\xc1\xda\x78\xf6\xd7\x12\x53\x3a\x4e\xb0\xb3\x93\x0a\x36\x68\x68\x46\x7e\x4e\xbc\x27\x4a\xbf\x15\xaf\x58\x90\xd3\x0d\x4b\x94\xc7\xd0\xe1\x5a\x78\x80\xcc\x73\x25\x97\xfa\x0c\x35\x91\xaf\x61\xea\x1b\x11\xba\xb4\x45\xca\xfb\xe3\x63\x65\xb0\x5f\x4c\xd6\xf7\xea\xa2\x43\xcb\xd2\x01\x5e\xf6\x34\x28\x1f\x51\xaf\x50\xed\xba\x22\x35\x4f\xc0\x89\xde\x88\xc2\x94\x5c\x6e\x62\x2d\xed\xa5\x7e\x3f\xc7\x1e\xb2\x12\x25\xb6\x8f\x79\xd1\x5a\x80\x38\x89\xc7\x69\xd2\x0f\xc1\xc5\x82\x6d\xb3\x6b\xc3\x6d\xa1\x5d\x1d\x45\xc8\x94\xf4\x7a\x53\xe5\x2a\x41\x59\x71\x77\xa7\x5c\x55\x22\xfa\xe7\x80\x74\x67\xd5\xb4\x73\x98\x25\x44\x15\x34\xad\x56\xec\x09\x8e\x3a\xf8\x8c\x96\x4d\x93\xc6\xfa\x01\xdb\xca\x0f\x92\x61\x12\x31\xed\x04\xbc\xd8\x19\x45\xf9\x53\xaf\x2f\x90\xf0\x59\xf8\x95\x22\x64\xa1\x5f\x5b\xd3\x72\x44\x04\x6a\x62\xe5\x38\xc2\x4c\xe9\x6d\xba\x99\x88\x22\x2e\xb2\xc2\x8f\x08\xb7\x24\xea\x66\xb8\x74\x7c\x16\x9c\x4d\x88\x20\x4f\x6a\xb2\xfc\x6d\x3d\xdd\x99\x60\xd7\xef\x71\x33\x6c\x57\xbc\x4a\x37\xb6\xfc\x71\x84\xd4\x77\x00\x14\xe7\x13\xc5\x57\xb4\x43\x17\x4a\x9b\x86\xc1\x30\xff\x8c\x2a\x19\x7a\x65\xe6\x01\x97\x79\x16\xbe\x05\xd7\xf7\x08\x08\x53\x51\xb3\x12\xbc\x85\x28\xa1\xa0\xe1\x86\xbd\x9f\xeb\xc6\xda\x43\xc0\x39\x44\xbd\xa4\x4c\xc1\x98\x79\x1d\x85\x7f\x98\x04\x4e\x8a\x00\xed\xbb\x4a\x46\x0c\x76\x75\x0f\x6a\x45\x30\x36\x0f\x88\x0a\x55\xa6\xac\x15\x48\xf0\x14\xd5\x17\xf1\x5e\x6e\x4e\x14\x8b\x28\xea\x51\xb8\xc8\xa9\x8e\x63\x66\xbe\x8b\x7a\x14\x80\x75\x8f\x6e\x94\x69\x9b\x74\x5e\x94\xb0\xff\x55\x4f\x89\xeb\x1d\xa0\xb5\x0a\x07\x77\x5e\x81\xe4\x2e\xa8\x8e\x28\x01\x6c\xa6\x1d\x97\x58\x0b\x45\x0a\x9e\x1b\x25\x32\x06\xfe\x87\x0e\x5d\xbd\x0c\x94\xfe\xff\x3f\x06\xf9\xec\xc7\x79\x18\x84\x63\xa5\xb1\x8d\xbf\xb8\x80\xc7\xc5\x27\x0a\xc7\xe9\x17\x65\xc8\x11\xbe\x6c\xc0\x20\x8b\x94\x0f\xbc\x7a\x7c\xac\x6a\xf7\xd9\x30\x41\xaf\xd7\x45\xe2\xff\x42\x71\xd9\xfe\x8b\x26\x4e\xd2\xb5\xd4\xcf\x87\xad\x8a\x88\xa9\xca\xce\x1d\x6c\x8e\xa8\x14\x7b\x26\x95\x56\xb2\xcd\x78\x14\x71\x4b\x8d\x97\xfc\xb9\xa5\x96\xea\xe6\xb0\x6e\x09\x9f\x28\x6d\x83\x20\xf2\xc3\x91\x14\xa9\x10\xcf\x3d\xa0\xab\x90\x87\xe3\x68\xad\x2f\xdb\xa1\xa3\x38\x0c\x56\x58\xa3\x40\x14\xe0\x5a\x4a\xf4\xcd\xcd\x40\x84\xa9\xcf\x9d\x33\xb5\x22\xe6\x6d\x93\x4e\xe5\xaa\x21\xcd\x6c\x80\x2d\x12\x46\xf1\xbb\x0a\x44\xf2\x5d\xe4\x4f\x1c\x19\x63\x8f\xda\xf9\x05\xbb\x28\x19\x03\x8c\x64\xea\x6f\x35\x73\xd7\xdf\x3a\x69\x8e\xa2\x9b\xb1\x74\x9a\xd2\xcd\x6f\x59\xa1\xd7\xa6\x26\xcb\x22\xc0\xa4\x1c\x2f\x89\x9c\x78\x4b\xe9\x8c\xef\x64\xe1\x94\x35\x97\x9a\x55\xc5\x51\x2a\x48\x14\xb5\xde\x3e\xa8\xca\x5e\xc5\xf9\xe3\xe5\xe6\x43\x44\xbc\xa5\x55\x64\x6e\x7b\x8a\x65\xfe\x23\x18\x05\x91\xd6\xa0\x07\x2c\x62\x32\xaa\xbd\xc6\xe2\x0c\xba\x27\x6e\x75\x8b\x6c\xf4\x79\xc6\x53\xec\x82\x2c\x3b\x0c\x43\xbe\x87\xaa\x0b\x4c\x75\xe9\x29\x3f\xbc\xa5\x48\x19\x6e\xa0\x04\x02\x27\xb1\xbf\xe3\x8a\x77\x69\x92\x58\xe5\x4f\xc0\x3d\x50\xc6\xe4\xe3\x86\x72\xf0\x52\xdb\x0f\xf2\x04\xe3\xb1\x76\x50\xc5\xce\xd9\x5c\x9e\x3c\xed\x36\x5b\x6e\x4c\xb4\x96\xa4\x2b\xc4\x41\x6e\x5d\xf2\x8e\xb9\xd8\x26\xfd\xcd\xd4\x8f\xa2\x50\x26\xdf\x90\x43\x7e\x77\xa2\x92\xcb\xef\x36\x85\x22\x71\x92\x53\x80\x4d\x06\xcc\x66\xcc\x2e\x12\x50\xdb\x69\x9c\x64\x61\x4e\x1c\x5f\xb6\xde\xfe\x00\x6f\xc1\xca\x45\xce\x1f\xb5\xfd\x7f\xfa\x42\xa1\x40\xa5\xe7\x28\x42\x92\x3b\xf3\x1f\x47\xdf\xb1\x1a\x46\x53\x44\x2e\x61\xd9\xdd\x2c\x3c\x89\xd1\xca\x88\x68\x5e\x51\x2d\xec\xae\x1f\x45\x49\x4e\x8e\x53\xf1\xa3\x5a\xde\x68\x05\x1d\xde\xd5\xd1\xa2\xed\x4d\x73\xb0\xc5\x78\xcd\x4f\x7b\xd3\x8e\xf9\x74\x0f\xd9\x72\xae\x1d\xd3\x57\xe9\x32\x92\x08\x0e\xb9\x6a\x7b\x79\x2d\x4c\x80\xb2\xe4\x2a\x91\xca\x08\xd6\x96\xc6\xaf\x54\x87\xa0\xa5\x1b\xa7\xdd\xac\x04\xc8\x23\x3f\xcf\xb9\x3b\xf1\x3c\x27\x93\x57\x2b\x41\x02\xb7\xea\x98\xe7\xdb\x53\x20\x86\x33\x6a\x12\xac\x17\xa6\xb9\xae\x09\x5f\x44\xb0\xc7\x27\x4e\x96\xc2\xf4\x7a\xeb\x44\x28\x56\x91\x9a\xc3\x52\xc2\x8c\x96\x94\x89\x1d\xaf\xd4\x29\xca\x82\xe4\xff\xbb\xb9\x9e\x51\x12\x17\x20\x7e\x24\xd3\x84\x22\x37\x4f\x73\xf2\x89\x9d\x80\xcd\x82\x61\x92\x44\xb9\xf1\x83\xa1\xcc\x40\xa1\xe6\x7f\x59\xc9\xd1\x5e\x6e\x90\xbd\x59\x6a\x77\x4d\xf9\x84\xa8\x3c\x62\x09\xab\x1c\xdc\xf0\x7b\xaa\x26\xf8\x00\xb6\x44\x72\x96\xba\xc4\xcd\x3c\xe1\xc0\xc3\xc0\x79\x54\xc6\x86\xd0\xb6\x15\x9c\x88\x1a\xc3\xa5\x62\x3b\xc0\xfb\xc0\x6b\xfe\x9c\x3e\xc9\xc7\xca\xf5\x8e\x4d\x1a\x94\x8f\x62\xc0\x93\xb3\x88\xb4\xbe\xa5\x08\x59\xcf\x4c\x5c\x03\xa2\xce\x6e\x4d\x75\x77\x07\xc9\xc3\x3e\x7d\x57\x65\xfd\xef\x36\x6a\xe1\x07\x3e\x15\xd3\x5c\xa1\xe0\xca\x44\xd5\x03\xae\xa8\x71\x15\x3f\x1a\x25\x59\xbe\x5f\x55\x4a\x14\xa5\xda\x26\x50\xcb\x42\x36\x54\x5e\xa8\xe5\x4b\xb4\xb3\xb0\xd7\x26\x6e\x76\x76\x2f\x45\x53\x2c\xba\xea\xa9\x06\x2c\x70\xf4\x32\xf3\x4b\x0b\x12\xf9\xe8\x69\x6d\xf4\xff\x58\x21\x4b\x0e\x2f\xff\x73\x05\x1d\xba\xa5\x59\xa4\x6f\x35\x31\x97\xc4\x21\xbb\x42\xe6\xe0\xa8\xf0\x71\x7c\xd2\x02\xf7\xbb\x61\x6c\x5a\x3b\x1a\xde\x4b\x16\x6b\x56\x87\x53\x2e\xb7\xcb\xcc\xb7\x48\x4d\x96\x8c\x8c\xea\x2a\x82\xe8\x4b\xe8\x2c\x14\xd8\x3d\x2d\x82\xd0\x8f\x50\x76\xd3\x3a\x3f\x58\xf9\x00\x7a\x4a\x76\xf9\xb8\x82\x6b\xf7\x63\x93\x52\xab\x47\x84\xc4\x4b\x63\xc4\xc7\x35\x0f\xb0\x74\xf8\x48\xbb\x67\x46\x3e\x8d\xaf\xb9\x91\x5e\x0c\x0e\xf2\xb1\x4a\x11\x0f\x87\xd1\x4c\xeb\xcb\x5f\xb4\x5e\xde\x21\x4a\xf8\xfe\x6d\x22\x63\x5f\xfd\x27\x91\x8e\x73\x79\xdf\xd6\x38\x00\xa5\xd2\xc4\x0f\x13\x35\xd1\x7f\xae\x76\xa1\x62\xee\x23\x91\x11\x44\x35\x1e\x72\x60\xb0\x5d\x28\x34\xda\x6b\x73\x69\x92\x1f\xa6\x6b\xfe\x3a\xfc\x22\xf2\x9f\x07\x3a\x19\x7a\xe0\xb9\xf0\x2c\x2f\xd2\x18\x8f\xdc\xce\xe0\x3a\xc2\x1e\x05\x37\x7f\xcd\xf2\x70\x24\x45\x3e\x48\x2c\x16\x12\x2b\xf9\xa4\xa2\xf6\xb9\xa3\x66\x6c\x2e\xa9\x47\xb9\x78\xf4\xa8\xe2\xf8\x38\x8b\x0b\xe2\x13\x6b\x4e\x47\x61\x6c\x04\x87\x82\x96\x3f\xe5\x35\x82\x24\xdc\x55\xc3\x66\x2e\xcf\xb6\x7f\xe9\x8b\xff\x7c\xe9\x8b\x5f\x58\xdc\xe7\xd2\x91\xcb\xb4\xc4\x10\x35\xed\xd9\x50\xd3\x70\x2c\x84\x21\x49\x8b\xc3\xb2\xdd\x52\x72\x17\x3f\x9c\x28\xdd\x83\xbb\x4e\xab\xe1\x7f\x39\xb0\xa1\xf4\x87\xef\x78\x4f\xef\xb8\x94\xcf\xd1\xbc\x2f\xed\x24\xd6\xf0\x98\x28\xf5\x9d\xd7\x15\x4f\x62\x56\x84\x12\xe5\x08\x89\x7b\xf9\x2b\x7c\x5c\xaf\xd4\x1c\x06\xd6\xa9\xca\xf1\xf2\xc3\x89\x62\xbb\xbe\xaf\xba\xca\xdb\x8a\x44\x60\xc5\xc4\xb1\xe9\xad\x4f\xb7\xbe\x34\xef\x78\x7f\x4a\x7b\xc6\x27\x5e\x45\xfb\xad\xa5\x44\xe1\x1c\xa3\xd5\xc8\x8c\x92\x14\xe5\xc5\x43\x8b\x0e\x1c\x6c\x5b\x35\x17\x1d\x5a\xc3\x84\x5d\x4c\x7d\xc8\xb8\x45\x85\x6d\x42\x0d\x85\x96\xfe\x22\xf5\xd7\xb3\x29\x07\x50\x40\x6c\x88\x9f\x07\x01\x9f\xe2\x97\x92\xd5\x1a\x8a\xc4\x81\x2d\xa4\x4f\x1c\x60\xf3\x9e\x62\x2e\x1b\x90\x18\x7c\x3a\xe3\x06\xfc\xdf\x87\x55\x45\xd9\xe0\xa7\x13\xc7\xe2\xb1\x87\xd8\xfb\xf8\xff\xd3\x0f\x23\xaf\x68\x75\x9e\x50\x63\x2a\xab\x49\xb4\x6a\xb2\x69\x8a\xd7\xb4\xee\x3b\x12\x12\x6c\x15\x3e\x26\xb3\xce\x9f\xb1\x65\xd4\x6e\x12\x65\xb9\x49\xad\x43\x12\x69\x3e\xd7\x97\xde\x54\xb9\x64\x14\xc6\xbd\x8c\xe9\xa8\x65\x5c\xa2\x65\xb5\x1c\x36\xd5\x5e\xcf\x46\xc9\x8a\x15\xa6\xb3\x2e\xc3\xce\xc8\x6f\xaa\x82\xb8\x1f\x06\xc3\xb0\x6a\x89\x15\xb1\xd0\x2f\x35\xd5\x07\x47\x7e\x5c\xf4\xfd\x32\x31\xb3\x17\x2e\xed\x51\x67\x87\x7e\x5a\x9b\xd5\x9f\x3f\xda\x1e\xf8\xe5\x6a\xb5\x6e\x1e\x85\x3b\x06\x85\x4c\x2a\x06\xc7\x49\xbc\xaf\x26\x51\x11\xe7\x18\x27\x51\xe3\x68\xf7\x94\x54\x72\x7d\x96\x73\x71\xf1\x88\x9d\xe5\x54\x7f\x84\x4a\x33\x1f\xd7\x5c\xfd\xdc\x5c\x3b\x35\x99\x34\x34\x90\x88\x9d\xc1\x02\x81\xe7\x78\x4d\xc1\x47\xdf\xb5\x22\x9f\xe3\x70\x34\x6e\xa9\x41\x67\x2c\x01\x3e\x56\xc8\xd9\x6c\x98\xac\xa5\x49\x32\x6a\xe9\x9c\x58\xe7\xca\x0d\x72\xe0\x51\x92\xe5\x33\xd4\x46\x17\x31\xcb\x29\x27\x30\xbd\x97\x22\x49\x51\x6e\xa7\x26\xb7\x54\xab\x5c\x8d\xf7\x94\x12\xf5\x5a\x25\x26\x4e\x55\x6e\xe2\xbd\x28\x9c\x68\x6e\x55\xd0\x50\x21\x9b\x5c\xc4\x22\xec\x99\xf8\xa4\xe6\x99\x16\x16\xda\x45\x1c\xe6\x49\x91\x4a\xc5\x5d\xa0\xdd\x2e\x37\xde\xc0\x57\x20\xe6\xd9\xb5\x61\xbb\x1b\x26\xcb\x0c\x0d\xed\xbb\xda\xf9\x09\xaa\x42\x49\xe9\x51\x3e\xd9\x33\x71\x52\x38\xcc\x25\xbe\x68\x0b\x25\x0c\x3e\x51\x5e\x2c\x33\x7e\x3e\x4d\xab\x53\x9a\xa5\x2d\x4b\xd4\xb7\xaf\xe3\x56\x21\xf7\x01\x24\x6b\x6e\x88\x19\x8b\xb8\xef\x87\x29\xbd\xb7\xa6\xc8\xc0\xc5\xea\x3d\x33\x4e\x4d\x86\xcc\xbe\x8c\x91\xed\x40\x9c\x45\x10\x5c\xa8\x05\xdf\x87\x16\xdb\xe3\x34\x0c\x42\xde\x19\xb0\xe3\xd7\x95\xfe\xee\x49\x4d\x7c\xfe\xc0\xda\xd5\xae\x61\x4c\x71\x93\x32\xc2\xe3\x8a\x6e\x62\x3c\x36\x31\x0d\x62\x59\xe2\x95\x43\x96\xa0\x69\x52\xf7\x57\x71\xd2\xe3\x3c\x09\xe1\xde\x2e\x84\x2e\xc8\xcf\xdf\x9d\x28\xba\x0b\xf4\xd8\x84\x16\x7e\xe7\x8a\xf8\xed\xe7\xda\x59\x9e\xfa\x50\x0f\xb1\x78\x2f\x58\x2c\x29\x2f\x3e\xa5\xe7\xbc\xf3\x30\x0e\xf2\x68\xbd\xa5\xe8\x15\x50\x5c\xe5\x63\x35\x1c\x1b\x14\x5d\xa4\x0b\xe8\x4b\x61\x26\x9c\x8f\x6b\x36\x4b\x82\xa6\x24\xf5\xe3\x17\xcd\xa8\x88\xb9\xcc\x8d\xc2\x8e\xd6\xe1\xb9\x40\xe0\x10\xa4\x87\xdf\x99\xb8\x91\xb1\xe3\x93\x7d\x52\xe4\xce\x1e\xa7\xbf\x05\x9c\xe3\x91\x0d\x25\x79\xb3\x67\x43\x23\xb3\xe8\x99\x89\x61\x2e\x1f\x38\xad\xc1\xe3\xbf\x86\x52\x14\x82\xf5\x87\x13\xc7\xbc\x48\x20\xe5\x67\x98\x82\x15\x37\xfc\x99\x8e\x7a\xd6\x1f\x51\x00\x2b\xbd\x4d\xb2\x49\x36\xb3\x9b\x3f\x6a\xe9\x4c\x5a\x76\xfe\xf9\xc9\x0d\x17\x3d\xb4\x6a\x32\x39\xf3\x47\xdb\xb9\x3f\x96\xd2\xa1\xdc\xff\x5f\x29\x80\xee\x5f\x29\x88\x53\xcf\x64\xe1\x20\x66\xbc\xad\x04\x41\xd7\x28\x3a\x12\xa1\xf9\x06\x5b\x1a\xf8\x59\x18\x27\x2d\xc5\x14\x88\xb1\x31\x3e\x56\x25\xdd\x5e\x98\xad\x64\x53\xe5\x7d\xc0\x67\xdf\xf4\x94\x82\xde\x69\x7a\x7c\xc8\xc5\x4f\xd4\x7e\x87\x1c\x52\x6c\x82\x15\x0a\x1a\x64\x64\x9f\xee\x89\xd5\x4f\xd4\xa8\xf2\xed\x26\xce\x99\x28\x29\x13\x5f\x78\x55\x3c\x52\xb4\x73\xf8\xb8\x91\xd6\x51\x34\xc8\x11\x44\xdc\xf5\x14\x4f\xc2\x55\x05\xca\x3b\xa9\x22\xdd\x6e\xc8\x88\x2d\x4b\xc6\x57\x3e\x4a\x41\xde\x37\x44\xb0\xe1\x20\x4e\xec\xfb\x61\x6d\x28\x25\xa6\x7e\xc5\x8d\x81\xc5\x2f\x85\x26\xc7\xec\x98\xa6\xb9\x57\x35\x14\xc1\x7e\x5e\x53\x35\x58\x3f\x08\x7b\x2d\x87\x2b\xd8\x54\x16\x67\x53\xbd\x9b\x6e\x6a\xfc\x1e\x4a\x5c\x96\x84\x54\xd8\x63\x7e\xff\x8f\xaa\xb3\xdf\xab\x61\x52\x30\x4c\x1d\x2e\xe5\x27\x2a\x22\xfc\x49\x43\x6c\x8c\x59\x44\x25\x0d\x5c\x5e\x4f\x5d\x19\x38\x4f\x72\x3f\xda\xe7\xd2\x4c\x04\x67\xf0\xc3\xaf\xc0\xfc\xc3\x87\x6e\x79\xe8\x91\xc8\x60\xab\x8b\xdf\x2f\xc1\x8f\xc3\xa3\xf0\x40\x03\x6a\x53\x37\x34\xdd\xea\x2b\x74\x05\xac\x0b\xa1\xde\x5e\x3a\x5a\xdf\xa3\x72\xd0\x13\x9a\x1b\x65\xd3\xab\xe8\x24\xda\x0e\x38\x37\x42\xe1\x98\x20\x1a\x23\x35\x93\x06\x5d\x31\x13\x44\xbe\x8b\xa7\x1a\xc1\x09\x0d\x64\x7a\xb9\xff\x92\x54\xff\x71\x03\xf7\x3d\xd7\xbc\xbc\xaf\x2a\x57\x03\x93\x67\xa0\x85\x46\x88\x80\xe6\x21\x7c\xd2\x0f\x54\xc0\x72\xa0\x43\x35\x0a\xcc\x94\x41\x14\xd7\x6a\xd2\x95\xf7\x8f\x17\x70\xd5\x73\x1a\x8a\x59\xee\x17\xa9\x1f\x83\x16\x1a\x49\xd4\x5e\xa4\x67\xe8\x1b\x5d\xc2\x4d\xe0\xeb\xef\xa9\x08\xf1\x93\x8a\x14\xbb\x67\xd2\x03\xb6\x4b\xf7\xe0\x89\x0d\x57\x7a\x3d\xf8\xc4\x86\xa3\xe8\xf9\xe9\x3f\x01\x92\x19\xe9\xe7\xae\x4e\x05\xb3\xa3\x6a\x76\xf7\x26\x0e\xd0\xba\xdf\x4d\xb1\x2f\x3c\x05\x83\x0d\xcb\xff\x18\x4d\x01\x62\x11\xa0\xad\x2e\xe4\xa1\x3a\xee\xf9\x24\xad\x35\x98\xb9\xc7\x3b\xe4\xd5\xe9\xe4\xdf\xff\xc3\x4e\xeb\xb9\x25\xc7\x92\xe6\x66\x5c\xb6\x6a\x90\xa5\x85\x85\x23\xed\x20\x32\xea\xfd\x5a\x80\xab\x0d\xff\xca\x48\xd1\xd1\x18\x98\x34\x08\x33\xb3\x47\xc5\xd6\x08\x22\x60\xe7\x3f\x50\x82\xd4\xf7\x81\x6e\xb4\x34\x09\x65\xac\x28\x62\x08\x6e\x5e\xf2\x9d\x26\x1e\x96\x60\xe8\xc7\xb1\x61\x66\x71\x44\x8b\xe7\x14\x99\xdc\xb9\x5a\x40\x4a\xf3\xa3\x52\x7a\x10\x26\xeb\x96\xe5\xb6\xe4\x66\x92\xec\xb1\x27\x77\xe8\x89\xda\xf2\x00\x6c\x11\x4a\x92\x62\xf0\x5b\x96\xde\xe7\xcd\x86\xdd\x41\x30\xb5\x3c\x1c\x61\x1a\x1d\x5e\xf0\x0e\xbd\x32\x74\x1b\x98\xb9\x09\x1b\xe5\x84\xaa\x1f\xad\xc4\x45\x2f\x4b\xe2\xea\x2d\x52\xb3\x54\xee\x71\xe7\xbb\xfa\x5c\xbb\x88\xf2\x70\xe4\xe7\x86\xb1\xc2\x52\xbb\x6b\x29\x36\x06\x3d\xc5\x9f\xa4\xa1\x1a\x5d\x3e\xa1\x6b\x2a\x27\x54\x01\x2e\x1c\x18\x82\x67\x00\x6b\x78\x4a\x11\xc5\x9e\xa1\x58\x17\x25\xcb\x3b\x9e\xb2\x32\x5b\x8d\x69\x4d\xb2\x4a\x42\x43\x53\x2d\x45\x35\xa6\x42\x21\x0a\x20\x84\x35\xa5\x21\x05\x8b\x8c\x0f\x95\x54\x86\xd1\x00\xa4\x8b\xdd\x89\xf8\x01\x83\x0b\xa7\x15\x60\x45\x89\x0f\x61\xd0\x81\x39\x64\xe9\x99\x08\x9f\xec\xce\x05\xf6\xc2\x0b\xed\x28\xa1\x34\x14\x6f\x1d\x26\xe5\x81\x82\x20\xfd\x8d\xd6\xcd\xb9\x6f\x65\x59\x89\x95\xb1\xbf\x2e\x10\x14\x80\x95\x2f\x4f\x14\x87\xe7\x65\xcf\x05\x8e\x43\xe3\x47\xf9\x30\xf0\x53\x03\x4f\x59\x11\x6f\xe1\x13\x25\x31\xd1\x35\x39\x18\x78\xe6\x8f\xba\x12\x83\x9d\x27\x20\x2e\x49\xdd\x2f\x5d\x9e\x3d\xd2\x3e\xb4\x48\xab\x0e\xb5\xe6\xbf\x50\x62\xc1\x60\x5e\x90\x3a\xaf\xc4\xe5\x2f\x26\x26\x52\x10\x08\x5e\x10\x7c\xa2\x16\xc4\xfa\xaf\xfe\x46\x4b\x0d\x1e\xc0\xb7\x0b\xce\xcd\x0e\xc7\xe4\x61\x8c\xd0\x06\xfe\xe5\x1c\x16\x3a\xde\x2f\x04\x95\xa4\x0d\x66\xb9\x12\x92\x2c\xf7\xb1\x3c\x10\xa5\x02\x88\x86\xb2\xc6\x23\xb0\xcc\xd8\x75\x97\xec\x70\x81\x88\x71\xce\xa8\xf1\x2e\x04\x32\x80\xa2\x43\xc6\xc9\x52\x4b\xcf\x09\x89\xe3\xb1\x49\x55\xbd\xb3\x81\x52\xa6\x5c\xae\x33\x6e\xe1\x5f\xd2\x2d\xc6\x89\x43\xa9\x5c\x9a\x54\x28\x16\xca\x9f\xc3\x82\xd9\xdf\xd1\x9d\xd0\xf5\xae\x21\x7a\x43\x36\x21\x84\x0b\xb7\xe2\x0f\x5a\x6b\xa3\x8c\x57\xc4\xce\xc8\xc3\x5c\x49\x7a\xfe\x0a\x70\x86\x62\x36\x5c\x96\xf9\x1d\x4d\xc3\x70\x55\x51\xb4\xf4\xc2\x2c\x28\x68\x10\x9e\x96\xbe\x8c\xd2\x39\x10\xf0\x9f\xd6\x92\xe1\xc5\xc5\xa5\x76\x3e\xa4\x5a\x13\x2d\x61\x46\xb1\x6b\x92\xd7\x3a\x8b\xd1\xe2\x62\x3b\x37\x8a\xae\x96\x8b\xa8\x9e\xab\xf6\x9c\x54\xac\x3f\x44\x6d\x4b\x2e\x17\x6e\xe0\x16\x62\x50\x5c\xd1\x55\xc5\x2e\xfd\x47\x2a\x8f\x79\xcd\x49\x1e\x25\xc1\x0a\x1b\xf2\xed\x57\x75\x9b\x7b\xa2\x6a\x7f\x37\x14\x71\xf3\x20\x4d\x8a\xf1\x01\x35\x2a\x7f\x81\xf2\x0e\x6e\x91\xa1\x82\x2a\x8a\x16\x70\x9f\x22\x99\xef\x26\x69\xcf\xc2\xd6\x58\xbd\xe3\x65\x19\x63\xbb\x36\x51\xad\x50\xe8\x24\x60\xbf\x80\xbd\x08\xab\xe5\x03\x74\xba\x2d\x93\xa8\xe6\x7c\x29\x6d\x26\xd6\xe0\xbb\x78\x0e\x08\xfa\xee\x81\xa6\xca\x32\x4d\x5b\xc2\x96\x7b\xb6\x70\x8d\xd4\xc6\xa4\x33\xf4\xe5\x82\x54\x72\xe1\xf3\xcf\xe8\x6a\xb4\x3a\x2d\x96\x28\x53\x78\xc0\xbb\x7e\xdf\x6e\xfe\xd2\xdc\x4d\xab\xe2\xc4\x19\x35\x1a\x7d\xc7\x53\x53\x2f\x77\x70\x9d\x88\x5d\x76\x6f\x28\x03\x25\x02\x25\xe5\x7b\x50\x90\xb2\x45\x07\x73\x5e\x5e\xe2\xfe\xe6\xe3\xa4\xf8\x8b\x27\xb2\x6f\x83\x62\x13\x9b\x08\xda\xbe\xe2\x55\xc2\x1a\x59\x22\x93\xf2\x36\x85\xc5\xcd\xad\xcd\x9f\xd6\xd6\xf0\xdc\x5c\x69\x88\xd5\x7a\x44\x67\x12\x25\x30\x3e\xb6\x15\xfa\x20\x89\x92\x94\x60\x73\xa2\x75\x81\x35\x80\xfc\xe8\x2f\xd5\x1a\xc0\x33\x84\xb5\x7d\x14\x4d\x65\x5b\x9a\xb3\x1d\x20\x46\x69\xf1\x5f\x6b\xeb\xed\xa7\xa9\x29\x7d\x90\x65\x63\xbc\xad\x4a\xbd\xb7\xbd\x9d\xf3\x92\x0b\x0b\xed\x9e\xd1\x08\x55\xa8\x6c\x8b\x4a\x95\x2b\x28\xf4\x42\x9f\xa5\xfb\xd0\xc8\x39\xa5\x9a\x3a\xa7\x3c\xd5\x58\xf2\xa3\x55\xc6\xfd\x20\x3f\x7c\x53\xe5\x8a\x6f\x4e\x9c\x5e\x1f\x51\xed\xbf\xc4\x71\xc4\x4c\x4b\x8d\x71\x97\x0b\x17\x45\xa8\x63\x9a\x56\xe6\x1a\xe2\x6b\x3c\xbf\xbf\x54\xa0\xb2\x3b\x3b\x09\xe8\x9f\x9d\x9d\x6f\x7f\x7e\x7f\xf9\x08\xb0\x31\x76\x6d\x28\x38\xd5\x15\x65\x3a\x21\x02\x8f\xc2\xe1\xcf\x2b\xe8\x31\x76\x23\xe0\xc4\x7c\x13\x10\x03\x5e\xef\x74\x3f\x88\xb0\x1e\xe9\x38\xd2\xe7\xff\x48\xc0\x2a\x78\x00\x16\xf7\xc5\xda\xbd\x55\x26\x19\x7c\xd3\x45\x3a\x30\xe4\x59\x11\x42\x60\xba\x90\x8f\x3d\x37\x6b\x9d\x25\x2f\xb5\x5c\x91\x99\x03\x77\x99\x2e\x7c\xc2\x4e\x06\x0c\x43\x07\x6e\x12\xbc\xed\x1d\x25\xfe\x7b\x47\x39\xd3\x38\x1f\xee\x2b\x6f\x1c\x86\x0b\x8d\x08\x45\xac\x2b\xd1\xd9\x7f\x98\xa8\x36\xdc\x7d\xfc\x30\x2b\x5e\xd3\xb6\x92\xd4\xba\x7c\x47\x56\x22\xaa\x7c\x52\x88\xd1\xbf\xa9\xc4\xa8\x3e\xdd\x69\x0a\x53\xd3\x2c\x29\x43\x6a\x32\xcc\x16\x28\xea\x68\x92\x76\x75\x5a\x5f\xfe\xa2\xa3\x7a\xb5\xad\x9e\xd7\x6b\xcc\x33\x0b\x0b\xed\xac\xe8\x12\x83\x01\x01\x33\xdd\x68\xc9\x7e\x64\x3d\xd6\x9d\x5a\x96\x86\x9f\x6a\xd2\xe8\xd6\x86\x56\x1f\x49\xfb\x49\x3a\x32\xbd\x29\x37\x5e\x75\x5d\x71\x57\x9c\x27\xcb\x88\xe4\xe5\xed\x26\x4d\xd9\x7e\x92\x0e\x0c\x48\x83\x98\x9b\x9d\xa2\x20\xe1\x69\xff\x07\x2a\xcb\x4c\xd3\xf5\x91\x5f\xbe\x37\x0a\xb2\x9e\x9d\xe5\x07\x0f\xc8\x28\x1f\x37\x21\xcf\xe3\x30\xcb\xfc\x98\xe7\x2b\x90\x64\xbe\x5a\x41\x53\xb2\x45\x41\x8e\x70\x43\x8d\x51\xa4\x49\x32\x82\xa2\x10\xaa\xe2\x37\x68\xd5\xa9\xd2\xa9\x0c\xdb\xdc\xa0\x25\x2c\xe3\x68\x0d\xe4\x0f\x03\x7f\xd4\x8d\x6c\xbc\x8a\xa2\xf1\x2d\xd5\x6d\x6e\x75\xdc\xc4\xe6\x95\x26\x56\xa2\xaf\x14\x61\xba\xb2\xde\x52\x19\x91\x52\x6e\xbe\x5c\x43\x4a\x2c\xcf\xb6\x7b\x66\x60\x62\x92\xe2\xea\x69\x8a\xe7\x7b\x15\xb1\xb0\x5a\x8e\xb2\xb4\xbc\xd4\x1e\xa7\x66\xec\xa7\x02\x59\x92\xdd\xe3\xfa\x8c\x9b\xb6\x6a\x1e\x98\xc8\x74\x53\x61\x03\x87\x81\x79\x93\x2e\x8c\x8f\x9b\x78\x74\x57\x93\xa8\x18\xc9\xb7\xa3\x7c\x7f\x0c\x2b\x99\x4f\xd4\xe6\xfb\xe2\xe1\xa3\x53\xad\x2f\xcd\x73\xd9\xf2\xa2\x1a\x83\x62\x08\x3c\x82\xc8\x2d\x1b\x6e\x06\x49\x9c\x85\x3d\x93\xee\x55\x3d\xd5\x99\x8e\x4b\x4a\x8e\x4f\x74\x36\x4e\x5f\x81\x55\x7d\x7f\xe2\xe0\xb9\xff\xb0\x63\x73\xc1\x7f\xc3\x79\xbd\x30\x62\xd6\xe1\x49\x4b\x6d\x62\x33\xa0\x0d\x00\x96\x9b\x77\x68\x03\xc0\x71\xec\x21\x4e\x0b\x38\xe6\x7d\x0a\x49\x3d\x4c\xd6\x38\x3b\x76\x73\x41\x96\x02\x5e\x51\x25\xf5\x53\x93\x81\xf9\xba\x34\x7e\x88\x2d\xbf\x85\x18\xd4\xaa\x5c\x1d\xb2\x21\x81\xa2\xc4\xf3\xc7\x89\x25\x74\x55\x6d\xb0\x25\x3b\x28\xfd\x49\x0b\xae\x7e\x31\xf4\xa1\xde\x89\xbd\xf1\x53\x7c\x8e\x4f\xbc\x4f\xb8\x5c\xad\x1b\x4e\xab\x4d\xc4\x63\x91\x32\xaa\xef\x9a\x31\xe7\x34\x54\xe3\xdf\x39\x4f\x1e\x15\x86\x77\x21\x02\xcb\x8f\x54\x00\x8a\x1a\xa1\xf4\x13\x1d\x87\x5b\xc8\xe0\x9d\x4a\x5a\xc7\x27\xca\xee\x8f\xb2\x83\xd5\xb0\xc6\x35\xe4\x8f\x79\x0e\x85\xb8\xb7\xa3\xe6\x44\x90\x2f\xd8\xd1\xe4\xb9\x79\x1b\x61\xd0\xe3\xe5\x91\x03\xc4\x8f\x28\xf8\x82\x36\x5b\x98\x8a\x25\x30\xfb\x2f\x93\x14\x3e\xad\xf4\x92\x41\x14\x1e\x96\x2f\xc6\x85\x2a\x10\x46\x92\x84\x51\x5e\x60\x92\x0e\xfc\x98\x01\xef\x78\xb9\x6f\xa9\x29\xbb\xb7\x94\x9c\x26\x63\x86\xf3\xf5\x47\xc8\xb6\xc0\x27\x9e\x57\xbd\xe2\x3f\x24\xa1\x0d\x56\xb5\x87\x85\xc7\xae\xc1\x03\xb0\xaa\x57\xf3\x47\xb9\x17\x79\x03\xbb\x11\xfb\xe2\xb4\xce\x9e\xa6\x3a\x3b\x9d\x09\xf1\xb9\x07\xa9\xf1\x31\x73\xd2\x72\x03\x84\x50\xc3\xe0\xe3\xda\xbe\x59\x9e\x25\x54\x82\xd8\x26\xab\xb0\x5b\xbe\x43\x89\xe2\x95\x84\x78\xb2\x6a\x72\x3f\x8c\x00\x31\x91\x4e\xb3\x03\x1d\x6d\xaa\xf1\x0f\xa1\xf7\xce\xa3\xf5\x29\x37\x0c\xcc\x9a\xe8\x96\x80\xe8\x90\x38\xf1\xdb\x8a\xa9\x65\x9c\x26\x53\x0e\xe2\x07\xb9\x69\x8c\x71\x3c\xac\x44\x12\xb5\x72\xe9\xa1\xc5\x76\x6a\x46\xfc\xba\x50\x48\xf8\x13\x4f\xd1\x51\xfe\x49\x03\x5f\xda\x62\x1b\x52\x5a\x65\x68\x2d\x24\xcb\x6a\x50\xed\x8a\xd3\x5b\x20\xb6\x15\x18\x0b\xbc\xfe\x56\x47\x61\xbe\x5b\x1b\xca\x61\x99\xcc\xf0\xa4\x18\xd2\x94\x63\xb0\xf6\x7c\x52\x4b\x0c\x5f\x78\xa1\x9d\x9a\x7e\x64\xc7\xcb\x2c\x83\x88\x05\xd3\x1d\x9f\x38\x9c\x63\x14\x24\x11\xcb\x9e\x0a\x12\x03\xf6\x45\x30\x1a\xaa\xb4\x4f\x44\x6d\x6a\xba\x18\xbb\x10\xd3\xc5\x0c\x12\x66\xa9\x02\xa4\x58\xa2\x5b\x50\xbe\x31\x0c\x18\x5c\x27\x8b\x28\x5f\xad\x88\x58\xe3\x41\x18\x1b\x93\x66\x75\x35\x3c\xe6\x92\xd4\x14\x48\x7a\x7a\x65\xe8\x47\xfd\xc7\x5c\xbd\xe5\x1a\x9e\x0d\x72\x9c\x47\x50\x7f\x45\x41\x7a\x0a\x18\x1e\x94\x9f\xbe\xe3\x39\x74\xc3\x7d\x94\x8a\x04\x10\x57\xde\x12\x20\x77\x2f\x21\x1a\x60\xb9\x42\xdc\x1f\x56\xce\xdf\xa9\x01\x9e\x5b\xd8\x58\xfc\x0f\x78\xdb\xfc\x8b\x54\x05\xe1\x69\x08\x0a\x26\x78\x22\x57\x29\x87\x16\x07\xb3\x83\x4f\x93\x69\x12\xad\x60\x0a\xae\xb1\x5c\xb6\x27\xae\x4f\xf9\x17\x34\x2f\x8e\x27\xca\xec\xe4\x08\x8f\x00\xaf\x46\x51\x82\x2d\x01\xd3\x37\x53\x3b\x03\x4f\x8c\x75\x42\x11\xee\xde\x47\x2e\xa9\xa4\x27\xb6\xdf\xd6\xa4\x6f\x5b\x00\xc6\xe3\xe4\x26\xb7\x48\xb4\x90\xa5\xd0\x4f\xd3\xbd\x4a\x8d\x53\x8b\x23\xa1\x11\x80\xc6\xe2\x69\x2a\xba\xe0\x8d\x5e\xf7\x94\xba\x03\x33\xfd\xb2\x92\x4b\xad\x78\xfc\xb9\x76\x37\x4c\x7b\x15\xba\x03\x68\xf8\xf0\x71\x23\xc2\xa9\x9b\xa4\xa6\x97\x8c\xc8\x12\xa3\xa0\x80\x3e\x37\x1f\x37\x51\x96\xf4\x93\xd4\x84\x03\xf8\x4a\xb8\x77\xc6\xb9\xf1\x89\x12\x19\x18\xf9\x59\x16\x06\x49\x9e\x1b\x4d\x24\xc4\x2e\x98\x4f\x1c\xd8\xd1\xf8\x69\x64\xe0\x1a\x51\x8c\x3b\xa5\x12\x68\x0e\x53\xe0\x21\xee\x7a\x1f\x07\xfc\xcf\xf2\x82\x48\x1f\xf0\x35\xd8\x69\x28\x7e\xc3\x4e\x9c\xd0\x24\x41\xa7\x9b\x04\x97\xb2\xa8\x18\xf1\x43\x14\x40\xbb\xa3\x83\xb9\xe8\x06\xbb\x13\x11\x5d\xb5\xd3\x00\x8e\x01\xee\x82\xe7\x92\x83\x28\xcc\xf2\x32\x04\xe5\x79\x0c\x89\xe1\x68\xf9\xf0\x89\x85\x1c\x84\xfd\xfe\xba\x0a\x22\x21\xd5\xce\xc7\x0a\xfc\x9c\xe5\x19\xe1\xdc\x2b\x92\x70\x08\x82\xbf\x4f\xfb\x54\x08\x35\xe8\x92\xe0\x7c\x10\x5b\x23\x34\x3b\xae\x26\xd3\xca\x37\x34\x88\x65\x80\x46\x26\xab\x9c\x62\xd0\xa6\xa5\x80\xf7\xa3\xdc\xa4\xb1\x9f\x87\xab\x52\xb9\xe7\x18\xc0\x53\x02\x08\x57\x6c\xe1\xa7\x1a\xec\xc3\xff\x80\x1a\x16\x25\xa2\xf7\xd4\x5b\x79\x60\x35\xa8\xfb\x86\x84\xfe\xc9\x29\x38\x74\x3c\xf0\x36\x42\xb2\x2d\xb6\xd8\xc4\x59\x61\x7f\x00\xc6\x1d\xf4\x67\x1a\xa1\x8f\x86\x99\x03\x52\xf6\xc3\x38\xcc\x86\xd2\x63\x41\x9d\xe5\x86\xe7\x3c\xd6\x43\xbc\x19\x6e\x87\xdb\xdf\xca\x72\x7f\x7d\x47\xf3\x70\x4b\x4d\xe9\x6d\x4d\x3e\xad\x86\x36\xfd\x34\xec\x87\x01\x05\x03\xf0\x6c\x96\x09\xb3\xdc\xff\x7c\x32\xd9\xcf\x6b\xaf\xfd\xdc\xf2\xec\x67\xc8\xa2\x89\xd8\x16\x15\xd5\x44\x32\xa3\x7c\xd0\xa8\x3a\x9e\x80\x93\x10\x3e\x87\x32\xd3\x45\x08\x29\xd5\x20\x54\xcd\xdf\x9e\xa8\x07\xf2\xc7\xb0\x53\xf8\xe6\xdb\xb0\x95\xa8\xea\x71\xea\x80\xd5\xf1\x97\xb4\x6c\xec\x30\xeb\x17\x7e\xc7\x92\x6e\x50\x45\x11\x19\xf9\x1b\x9e\x4a\x8c\x51\x9b\x47\x0b\x8f\xe7\x7f\x30\x12\xa5\x09\xd1\x3f\x81\x66\xa7\xcc\x98\x51\x23\x8d\xbf\x6b\xa2\xd8\x55\xfe\x6c\xe2\xba\x05\x53\x9d\xd2\xfa\x21\x36\xdd\xa6\x78\x54\x64\x41\xcb\x15\x8f\x3a\xd0\xde\x8d\x32\x1b\x12\xc6\xba\x06\x13\x15\xa4\xc9\x5a\xcf\xf4\x54\x18\xf3\x7f\x2a\xac\xf0\x45\x84\xec\x42\x4e\xef\x9c\xea\x60\x3d\xf5\x21\x7a\xec\xd0\xf1\xd7\x15\xc7\x12\xef\x5a\x5c\xdc\x1b\x2a\x64\x5a\x0b\xe3\x3d\x4e\x79\xe9\x1c\x07\x04\xd8\xdd\x77\xf1\x06\x24\x97\x57\x38\xd0\x13\x13\x05\xdd\x78\x03\xaf\x03\x1b\xf4\xf4\x64\xbf\xe3\x5b\x5e\xd7\xc8\xcb\x4b\xaa\x1c\x77\xc9\xf1\x59\x24\x23\xe4\x24\x58\x28\x17\x14\x79\xc8\x74\xc7\x0d\x98\xbd\xaa\x49\x14\xee\x34\xc9\xde\xb5\xc3\xb8\x57\x64\x79\xba\xce\x39\x93\x14\xf5\xe8\xef\xa4\xaa\xf7\x84\x26\xd5\x35\xd9\xc8\x8f\xb5\x88\x2f\x70\x83\x7c\x5c\x8b\x78\x7f\xa5\x3d\x8e\xfc\x75\x63\x41\x6c\x30\x6e\xdf\xd6\x3c\x6e\xd7\xab\x04\x58\x72\x8f\xdd\x70\xac\x00\xf6\x1f\x6a\x6e\xce\x0f\x6b\xc5\x86\xf9\xa3\xed\x9e\x89\xca\x3d\x88\xc4\x89\xb9\x45\x37\x5a\x8a\x67\xd4\xe5\xd7\x07\x9f\x3d\x38\xa5\xa2\xa5\x99\x4e\x65\x44\xa6\x65\x35\x1d\xee\xd5\xdc\xe1\xa1\xc5\x76\x3e\xa4\x82\xf2\x94\x03\x52\x6d\x2a\x44\xcc\x1b\xb4\x6c\x11\xd2\xdc\x54\x10\x61\xc6\xfb\x4c\x2b\x9d\x69\xa6\xa8\xd5\xcd\x5b\xfe\x07\xac\x20\x69\xc9\xe8\xde\xe8\x9a\x9f\x7d\x9a\x76\xa8\xa4\xef\x88\x3d\xb0\x2d\x99\xe8\x0a\x28\xba\xa7\x51\x0b\x46\xd4\xf5\xc4\x86\xba\xc3\x8b\x0a\xcc\xb8\xbb\xe3\xaa\x9b\x0f\x3c\xe7\x63\x4e\xc2\x74\x71\xc8\x05\x3b\x80\x30\xef\x17\x28\x1b\x84\xf3\x39\x8d\xf9\x0b\x36\xaa\x00\x4c\xa2\xed\x71\xd3\xab\xea\x40\x95\x9b\x00\x09\xce\x47\x74\xa3\x82\x3e\x52\x51\xf0\x47\xb4\xf9\x91\xaa\x5c\x60\x03\x87\x6c\xfc\xca\xa4\x3a\x10\xb6\x2c\xac\x98\x8f\x6d\x54\x7a\x5c\xf5\x00\x69\x3d\x1c\x94\xd9\xd9\xdc\x9c\x95\xcc\xa1\x3f\x10\x31\x1d\xb7\xa1\x5f\x4c\xba\xfb\xe8\x11\x09\x49\x83\xc3\xfe\x6d\x79\x15\x4a\x40\x8b\x46\xb9\x36\x51\xed\x93\x4d\xcd\x33\x75\x49\x6b\xaf\x5c\xc2\xea\x96\xa6\x22\xbd\x21\x14\x46\x9a\x98\xec\x16\xdb\x49\xbf\xcf\xb5\x3e\x4b\xce\xff\xa6\xa7\x14\x8a\x74\x4d\x7c\x95\xa0\x88\x7d\xbf\x9b\x86\x2b\x2b\x5a\x08\xe0\x16\xbd\x4a\x3e\xae\x71\x7c\x2c\x2d\x2f\xb5\xb3\x82\x9a\x11\xcc\x13\xa3\xa8\x90\x1d\xb1\xb1\xdb\xf6\xfe\x78\x1c\xf9\x45\xc6\xb1\x9a\x7d\x44\x96\x36\x85\x59\x2c\x61\x40\xeb\x31\xe4\xa1\xc5\xb6\x1f\x0d\x42\x0a\x89\xca\xcf\x31\xf2\x56\x0b\x1d\x5e\x98\x38\xfc\x0b\x64\x5d\x44\xf8\x08\x3d\x8b\x5b\xf8\x30\x9f\x34\xb5\x45\xb3\x95\x10\xe8\x4d\x21\x7d\x73\x65\x8e\x53\x8d\x96\xcf\x0f\xf2\x70\x35\xcc\xd7\x15\xec\xf1\x75\x4f\x71\x73\xbc\xde\x94\xef\x06\x69\xc8\xa2\x28\xf8\xea\x37\x3c\x45\x2b\xf4\x46\x93\x60\x64\x31\xde\xe3\x0a\xe1\xdf\x24\xef\x8e\xbe\x13\x44\x9b\xb1\x25\x3f\xa4\xf5\x86\x7d\x34\x45\x3d\x28\x84\x34\x1f\x4d\x94\x42\xed\x26\x1a\x03\x6c\x09\xfa\x6c\xc2\xb0\x48\x1f\xa8\xc0\xff\x5c\x55\x7d\x52\x31\x06\x1b\x3f\xcf\xa6\xcb\x5d\xc6\xd2\x14\xd8\xd7\x56\xa7\xc2\x36\xd6\xde\xd1\x41\xf3\x3b\xaa\x30\xb9\xf4\x85\xb9\x19\x35\x28\xb2\xa7\xe3\x86\xd8\x50\x38\x87\x45\x3f\xa5\x2a\x96\x50\xfa\x92\xcf\xd8\x98\xd6\x5f\x31\x31\xfa\x7a\x58\xd6\xac\xf6\x27\x32\xc4\xad\x7f\x26\xd1\xcd\x29\x7a\x64\x12\x73\xbb\x02\x10\xad\x7a\xb2\xf7\x8a\x97\x03\x6c\xed\x42\xeb\xb4\xdf\x5e\xf7\x6f\xfd\x77\x0a\x90\x7f\x96\x0c\x0d\x1f\x37\x0c\xaf\xb6\xc3\xb8\xdc\x82\x49\xda\x52\xca\xb4\x60\x06\xe7\xe3\x0a\x11\x41\x56\xa0\x58\x6e\x47\x44\x16\x16\xf8\xd2\x5f\xc5\xe2\x90\xa1\x36\xd5\x9f\xfc\x50\xe5\x0b\x5d\x3f\x2a\x53\x86\x30\xc0\xcf\x61\x11\xa0\xce\xcd\xc7\x55\x74\xcc\xaa\x79\xca\x81\x52\x5b\x48\xe0\xd1\xf1\xdb\xdb\x51\x5a\x3b\xa7\x61\x34\xf1\xe0\x5b\x08\xd8\xb0\x5b\xa1\x61\x28\x1e\xce\x61\xe7\x51\xb4\x45\x74\xc2\x3c\x07\x30\xd9\xdf\x86\x33\x90\x61\x72\xba\x29\x1e\xa6\xa5\xa4\x1d\x7f\x82\x17\x85\x20\xe4\xa3\x0a\xf5\xa6\x96\x00\xdd\x84\x05\xc4\x16\x38\x4b\x71\x20\xea\x75\xf7\xc1\xd7\x26\x53\xcb\x14\xb8\xe2\x91\x9e\xb7\x4d\xf6\x70\x34\x26\xd8\xb8\xc3\x25\x90\x6d\x96\xf0\xdf\x41\x31\xfb\x49\x92\x13\xc6\x04\xd5\xe2\x7d\xa8\x6c\xa0\xcc\x7d\x41\xd9\xf6\x03\x1d\x97\x18\xa5\xc6\xa7\x2a\x25\x75\x86\x10\xb3\x5f\xd5\x92\x01\x57\x95\x1f\x40\x15\xae\x3e\x50\x32\xf6\xc3\xb8\x5f\x44\x2d\x45\x91\x8e\xa1\x23\x3e\xae\xa1\xc3\x17\x16\xda\x49\x0f\x36\x18\xe3\x30\xff\x4a\x8d\xc6\xfc\xab\x06\x71\x98\xa5\x76\x91\xc1\x00\x59\x04\xab\x1d\x80\xae\xb3\x39\x51\x07\x2d\xcc\x86\x7e\x37\x12\x26\x2b\x04\x04\xef\xc3\xb0\x60\x8b\xde\xa4\xdf\x14\xfd\xcb\x03\x4a\x64\x3b\x1c\x47\x86\x8d\x36\x22\xf1\xe3\xf8\x3b\x3e\x69\x28\x49\xf8\x2f\xe7\x26\x98\x2a\x53\x15\x84\x0b\xef\x2a\x5d\xf8\xdd\xd8\xe3\x30\x79\xf7\x15\xfb\x70\x64\x56\x0d\x54\x58\x1d\x6d\xc6\x05\x4f\xb5\xdf\x2f\x34\xf8\x76\x7f\xec\x8b\xfc\x1b\xd3\x63\x69\x95\x71\x6d\x36\xea\xb4\x37\xcb\xb3\x6d\xbf\x97\x8c\x73\x4e\x19\x10\x45\x33\x07\x07\x4a\x5b\xff\x33\x5e\x3d\xe2\x94\x9b\x8d\x56\x22\xf3\xbb\x26\x8a\xfc\x96\xcb\x40\x79\x2e\x9c\x4f\x76\x12\x3d\x7e\xbe\xfd\xec\xec\xf3\x8f\xd0\xae\xb4\xec\x00\xcb\xb3\x8c\x2d\x3c\x47\xef\x11\x68\xa5\x3f\xf0\x54\x0b\xea\xa2\xa7\x99\x2e\x68\xeb\xf2\x5f\x70\x8c\xa4\xcd\x2f\xca\x6a\x97\xd4\x34\x52\xdf\xcf\xfd\x21\x3c\x29\xd6\x14\x6b\x0e\xf0\x49\x53\xe7\x30\x0c\x4c\xd7\xa4\x03\x8d\x33\x3f\xa5\x70\xe6\xa7\x14\x94\x87\xc6\xdd\x47\x44\xba\x59\x3e\x47\xe1\xf2\x6c\x39\x5e\x4f\x35\x1c\x3f\x2a\x88\x9b\x4b\xfd\xbc\x96\xed\xba\xd2\x34\xc7\x61\xe2\x7e\x68\x22\xc0\x03\xac\x02\x70\xf9\x88\x45\x5c\xd8\x6d\xdf\x20\x0a\x63\x92\x3a\x75\x13\x50\x1f\xd2\xd7\x8b\xc5\xad\xd8\xec\x6c\x7d\xca\x95\x00\xd0\x91\x81\xad\xbb\xa3\xc5\xba\x3f\xa8\x6d\xa8\xa3\x87\xdb\x3d\xd3\x0f\xe3\x90\xd4\x52\xca\x97\x61\x45\xed\x6c\x53\x01\xe8\x41\x6c\xe1\x0f\x2b\xb6\x7b\x9c\x67\x7b\x69\x8d\x81\xaf\xf1\xe7\x58\x63\x42\xe7\xa7\x58\x5b\x6f\x79\x4e\xc4\xf3\xf2\xa4\xca\x99\x6a\x2f\x5b\xf7\x42\x6f\xd5\x7a\xa1\x52\x20\x23\xc9\x14\x58\x0c\x4b\x3e\x5f\xde\xa1\x50\x9d\x3b\xbc\xb9\x4c\xdf\x11\xdf\x36\x72\x46\x04\x79\x08\x08\xdf\x46\x7c\x8f\x04\xee\x3e\xea\x04\x7c\x42\xeb\xd8\xc6\xea\x2e\xb3\x6b\x75\x2a\xf3\x28\x50\xb4\xcc\x35\x55\x05\xd0\x58\x7c\xdc\xa4\xd2\x18\x8e\xc6\x69\xb2\x6a\x2b\x31\x16\xa6\x66\xb5\x12\x2e\xdb\x52\x7d\x2f\x0d\x57\x89\xa7\xe2\xd9\x59\xb6\xb7\x1f\x4e\x14\xe5\xc6\x87\x2a\x8e\x29\x4c\xef\x13\x2d\xe1\x22\xfa\xff\xfd\x23\x34\x3b\xe9\x06\x0e\xfc\x0a\x2a\xc4\x54\x26\xd9\xfd\x6b\xf0\xa8\xf4\x2f\x4b\xbf\xb0\xe1\x4a\x6d\x77\x15\xa1\x1e\xe0\xa6\x22\x60\x4f\x26\x4c\x90\x12\x8e\xbc\x61\x66\x43\x25\x08\x9f\x86\x77\x45\x79\x7a\x66\x43\x55\x47\xf7\x6c\x34\x48\x49\x8c\x49\x7c\x42\x75\xe4\x98\x4a\x44\x66\x93\x76\xda\xc6\x85\x85\x32\xe9\xe6\x24\x5d\x47\xeb\x3b\x49\xe7\xfa\x26\x0f\x86\x61\x3c\x88\xb8\xe4\x60\x9b\x62\x6a\xba\x48\x59\xe9\x30\x30\x71\xc6\x60\x1d\xec\xaa\x9f\xe8\xe6\xea\x4f\xd4\x68\xde\x9a\x31\x2b\x51\xc2\x59\x8c\x30\x09\x69\x5a\xa1\x26\x21\xa5\x55\x93\x83\x8b\xdd\xf2\x3e\xdb\x76\x21\x50\x34\x22\x94\x62\xf1\x87\xeb\x51\xf8\x52\xcb\xb5\xb9\xef\xaa\xf4\xec\x6e\xa3\x9e\x72\x16\x24\x79\x30\x6c\xb9\x21\x0a\x9e\x90\x16\x9d\x18\xcd\xe0\x15\x11\xec\xa2\xe5\xf0\x31\x5f\xa5\x0b\xe2\xe3\x06\x69\xa3\xb6\x9f\xe5\x69\x12\x27\x23\xd8\xa1\x67\x67\xb7\xa9\x7a\xb3\x7d\xc9\xfb\x94\x06\x3f\x86\x71\x69\xab\x4c\x4f\x49\x38\xbe\xef\x39\x7c\xcb\xfb\xb5\xad\x3c\x7f\xb4\xdd\x0b\x53\x13\xe4\x49\x2a\xf5\x0d\xa0\x5c\x5e\xc1\xc5\xf3\x49\xd3\x7c\x68\xbf\x78\x31\x9c\x81\x9f\x10\x92\x32\x5a\x15\x28\x92\xe9\x1a\xf1\x2d\x0d\x55\xd6\x38\xe2\x77\x1d\xfd\x71\xb9\x7f\xb3\x9c\xc0\x57\x88\x38\x9f\xec\x54\x9b\xf9\x56\xe6\xff\xb8\xe6\x3d\xf9\x3e\x40\xf4\xb0\xd9\x7b\x37\xb4\x80\x67\xbc\x1a\xc6\x01\x51\x82\x2f\x2c\x54\xa8\xc9\xf9\x18\x41\x00\xb8\x4d\xae\x20\x0c\xe5\x13\xcd\x6b\x07\x3a\x3e\x11\xe2\xd6\x16\xb7\xcf\x74\x8d\x4d\x53\x86\x3b\x1f\xf3\xc2\x42\x3b\xf0\x73\x7a\x87\xe3\x21\xe7\xba\xda\xfd\xa1\x8e\xb4\xed\xb9\x54\xcd\x29\x47\x81\xee\xa6\x37\xa3\xea\x85\x07\x60\x3b\x84\x12\x43\x95\x72\x19\x7e\x28\xe1\xa3\xca\x9d\xef\x59\x8c\x09\xa9\xbb\xe4\x26\x1d\x21\x26\x12\xaa\x99\x96\xa5\x0d\x7c\xa5\x01\x68\x3f\x4e\x93\x40\xa6\x25\x4b\x6b\x29\x74\xec\xae\xd9\x73\x41\x85\x06\xa5\x8d\xc8\x1f\x73\x38\xe4\xcb\xaa\xe2\x7a\x9c\x02\x0d\xe4\x05\x20\x9a\x55\xa2\x24\xf3\x5c\x44\xfe\x7d\xdc\x14\x8a\x68\xdf\xa3\x54\xc0\x46\x89\xaa\x22\xcd\x71\x8a\x2d\xaf\x59\x42\x94\x57\xf0\x1c\xf0\x42\x2f\x78\x0a\x17\x76\x1b\x65\xd3\xca\xc0\x95\x40\xcf\x9b\xf4\xdc\xca\x5b\xb1\x82\x12\x56\x79\xca\xe6\xa0\x1f\xb8\x19\x4f\xdf\xff\x75\xf2\xfc\x08\x3a\x3e\xd9\x71\x7e\xf1\x82\x6e\x76\xef\xa9\xf1\x8b\x96\x3f\x43\x1a\xee\x69\x55\xa1\x04\x1c\x2c\x7c\x6c\xd7\x03\x73\x26\xcd\x68\x9e\xe3\x69\xf4\xaf\xe1\x1b\xfe\xde\x73\x48\xd3\x4d\xa2\xcd\x46\xe6\x74\x7e\xa2\xa6\x35\x37\xed\xf7\x75\x23\xdf\x92\x87\x21\xa7\x79\x7f\xa2\x8a\x7d\xe8\xb3\x08\x82\x4d\xcc\xfb\x9a\x9f\xe5\x66\xcd\x27\xa1\xbb\xf2\x4b\xd1\x3c\x38\xaf\xf4\xe9\xa6\x3a\x6e\xc8\x6f\x8a\x84\xcb\x85\xf4\xc5\x15\xc9\x5f\x2e\xd2\x95\x62\x18\x99\xb8\xa5\xd1\x7d\x74\xf9\x12\x66\xa9\x12\xc3\x1a\xcf\x08\xcb\x24\xde\x25\xd5\x01\xc2\x36\x45\x0d\x07\x23\x81\x7c\x5c\xab\xb4\xcc\x1f\x6d\x77\x23\xe3\xaf\xb4\xdc\x14\xcb\x0d\xfa\x22\x3e\xb6\x1e\xa0\x67\xfc\x88\xd5\xa6\xad\x18\x83\x85\xa1\x6c\x23\xa0\xc7\xd6\x9a\xee\xec\x98\x44\x28\xdd\xc1\xd1\xc3\x8f\x4f\x39\x45\x58\x6e\x97\x60\xd9\xbe\x47\x17\xcb\x34\xd9\xb0\x3c\xc8\x0c\x18\x58\x0f\x0b\xf0\x50\x4d\x87\xdd\xc2\xcf\x21\x63\xc1\x24\x3e\xb7\xc9\x15\xe3\xee\x6d\x58\x34\x6c\x20\xce\xb2\xb1\x48\xbf\xce\xfb\x84\xdb\xf4\xb4\x9d\x2c\x78\x6d\xe9\xf0\x11\x8e\xf4\x18\xda\x8d\xf7\xb7\xbb\xf3\x29\xd5\x7b\x4d\xb3\xe1\x88\x48\x9f\xe8\xb1\xa1\xb0\x76\x46\x41\x56\xcf\xd4\xa9\x9f\x0f\x1f\x69\x07\x43\x7f\xd4\xe5\xda\xdc\x11\xbb\xcb\x5a\x8b\x6e\xf2\xa3\x09\x8d\x4f\x51\xb0\x90\xd5\xca\x3c\x5d\x85\xd3\xd7\x45\x5b\xc3\xa4\xd2\x5f\xfd\x96\x42\x7d\x7f\x4b\x41\x81\x57\x93\x3c\x8c\x07\xd3\x6a\x62\x51\x69\x1b\xc1\x55\xa9\xd6\xab\x40\x2c\x5a\x1b\x9a\x8b\xd8\x2f\xdd\x93\x05\xe3\xa0\x3c\xc1\xcc\x97\x88\xcc\x90\x1d\xbe\xa7\x12\x8f\x0f\xc8\xec\x09\x3d\xe6\xce\x3e\xf3\xe2\xe2\x91\x76\x2f\xec\xf7\x4d\x6a\xe2\x3c\xe4\xf4\x42\x66\xd4\x5c\x11\xa0\xce\x8c\x34\x7f\xb4\x1d\xf8\x23\x93\x22\x3f\xb4\x8c\x29\xb6\x43\x79\xd9\x76\x28\x23\xe3\x0f\x0a\x2b\xdf\xcd\x32\xf8\x13\x35\x23\xfe\x8a\x92\xbe\x0c\xe3\xc0\x64\x4c\x99\x85\xd5\x75\x53\xc9\xbb\xdc\xac\xf1\x99\x2d\x2e\xd2\xc0\x48\x3e\x4c\x93\x35\x96\xc2\x52\x34\xf6\x1c\xa7\x43\xae\x1a\x31\xc1\x9b\x76\x6f\x75\xc3\x54\xa4\x7d\x64\xbc\x44\x35\x7e\xcf\x28\x4f\x32\x0a\x07\xc3\xfc\x13\x8a\xb4\x63\x5b\xc9\x7a\xdc\x9b\xb8\xb6\xc2\xfd\x89\x62\x03\x02\x19\x93\x45\xb1\x5b\x20\x07\x22\x11\x54\x18\x37\x2b\xb5\x4c\x4f\xb1\x67\x7f\x8f\x44\x37\x2c\xcf\xef\xfc\xd1\x6d\x2e\x21\xa2\x9b\x50\x97\x43\x3a\x7a\xb8\xbd\x96\xfa\x63\x8a\xcb\x4e\x79\xad\xe7\x96\xb6\x4f\xd5\x42\x80\xc5\xc5\xb6\x1f\x04\xc9\x68\xec\xc7\x56\x69\xd3\x06\x1f\x8e\xa0\xf3\x8a\xe2\x6d\xf1\xd3\x3c\x8c\x22\x93\xea\x71\xe1\x2d\xa5\x93\x73\x59\x39\xbc\x93\x8a\xd9\x80\x7c\x75\xaf\x20\x72\x68\xb5\x8c\x54\xe0\x75\x51\xc1\xbb\xc2\x28\x2a\xb2\x9c\x60\xad\xe4\x03\x84\xa8\xa7\x65\x55\x6b\xa7\x37\x2a\x54\xb3\x3b\x97\xe3\xd1\xc3\x6d\xf3\xd2\xd8\x8f\x11\x75\x5a\x11\x57\xcb\xd9\x70\xa1\xd1\x36\xf8\xab\x21\xba\xda\x2d\xcb\xc1\x58\xa1\x43\xba\xda\x84\xfa\x05\xb9\x03\x43\x06\x04\xdb\xe9\xb2\xf2\x66\x7b\x92\x9a\xdc\x0f\x63\xde\x03\x96\xd9\xe0\xd9\x59\xc5\x6c\xb0\x03\xb3\xbf\xd8\xfe\x15\x7a\x14\x08\x3f\x2e\xc1\x76\x0b\x45\x47\xf9\xd3\xd8\x12\x5b\x95\x78\x30\x48\x13\xee\x74\xc2\x42\x1c\xf7\x54\x53\xbc\xae\x2f\x56\x86\x84\x89\x2c\x04\x98\x8e\xdf\x53\xcd\xbe\xdf\xb3\x00\x5c\xbf\xe7\x8f\x1d\x3b\x9b\x40\x9d\x1c\x92\xee\xef\x6a\xb3\xda\x73\xf3\xed\x9e\xe9\xf2\xc5\xa0\x7f\xc0\x9e\x85\x4f\xec\x77\x47\x45\x77\xdd\x8f\x57\x7c\x05\x83\x66\xa4\xbd\x70\x76\x1d\xd0\x62\x82\x7e\xba\x02\x0c\xda\xf6\xdb\x6a\xc2\x75\x1b\x29\x23\x0b\x52\xd2\xfa\x54\xe2\x94\xc2\xf6\xf1\x75\x4f\x81\x5b\xef\x29\x9e\xb8\x2c\x09\x42\x3f\x0a\xb3\x9c\xa7\xd1\x59\xc8\xbb\x22\xea\xad\x86\xbb\xc3\xde\x5e\x37\xfc\xfe\x0f\x10\xf7\x08\xc3\xbe\x02\x30\x1f\xa3\x8c\x41\x6c\xf5\x8e\x30\xd1\xe6\x7e\x7b\x37\x54\xcc\x79\xb9\xf6\x8e\x9e\x9d\x6d\xa7\x61\xb6\xd2\x52\x16\x5d\x89\xe9\x7c\x50\x5b\x6d\x2f\xbc\xd0\x1e\xf9\xc1\x30\xa4\x7e\xd1\x6f\x3f\xd7\xc8\xd2\x23\x3d\xe8\xf5\x62\x05\x06\x50\xe8\xfb\x5d\x21\xea\x64\x65\xa4\x3f\x34\xfd\x19\xfa\xa0\x32\x5b\xcf\x33\x28\xe2\x81\xa7\xc6\xcf\x36\x95\xe6\x07\x1e\x1f\x7c\xf3\x6e\xcb\xde\x92\x0f\x89\x54\x29\xe6\x7a\x2d\x6e\x83\x63\x47\xd8\xc1\xbb\x15\x34\xb7\x2c\x13\xd4\x49\x02\xd3\x52\xf9\xc4\x15\xb5\xc3\xaf\x28\x39\xe6\x7c\xe8\xe7\xff\xb8\x7c\x48\xf8\x92\xff\x4c\xd8\x12\x54\x95\xf8\x97\x98\x42\x91\x8c\x2c\x62\x8d\x69\x6a\x0f\x20\x4a\x9d\xa2\x49\x6f\x18\x9e\x63\x7a\x1e\x84\xa5\xcf\x79\xea\x88\x10\x79\x80\x76\xbd\xa7\x0a\x10\xd7\x50\x3c\xc2\xba\x79\x8b\x1e\x88\x55\x52\x73\x03\x17\xa0\xc3\xb0\x4c\xe1\xa5\xf3\xe6\x89\x51\x84\x43\x58\x1c\xdf\xc5\xbe\xe7\x99\x1c\xb2\x18\xcc\xef\xa1\x15\xcd\x2f\x6b\xaa\x6b\x16\xa8\x65\x92\x3b\x3d\xcc\x85\x90\x5a\x16\x91\x12\x3d\xf9\xc0\x73\x3a\x90\x37\x08\x58\x2c\x53\xee\xf4\xb0\x99\x33\x9f\x9b\xf1\x08\xf0\x6f\xf2\x7a\x66\x69\xa0\x8d\x4f\xa9\xac\x37\x1d\x27\x00\x9e\x90\xcf\x80\xdf\xfd\x3b\x45\x4e\x76\x16\x5f\x2b\xe8\x15\x87\x45\x8f\x7a\xe3\x69\x6d\xda\x1c\x14\x73\x6b\xa2\x28\x79\x59\x1b\x4a\xba\x92\x22\xc4\x14\x85\x71\x90\x44\x71\x36\x0c\x53\x54\x11\x14\xb7\xca\x92\x95\xbd\x52\x2a\x03\x45\x1e\x0c\x4d\x3a\x53\xfe\xa2\xa4\x8f\xe5\x73\xb0\x69\xe5\xc2\x82\x6d\x72\xb7\xac\x9c\xd8\x69\x1d\x25\xfc\x58\x35\xe1\x66\x8f\xb2\xb5\x93\x91\x3a\xfa\x1c\x9f\x78\x4e\xec\x3f\x0c\x86\x23\x3f\xe6\x74\x83\xbf\xb3\xf2\xfd\x4f\x58\xb4\x78\x38\x08\x63\x3f\x92\xf2\x95\x90\xaa\xb9\xb9\xa5\x4d\x47\x47\x1c\x0c\x4d\xaf\x88\x04\x51\xac\xd8\x05\x8f\xd8\xc2\x41\xd3\x70\x78\xe4\x77\x4d\x24\x1e\x40\x1e\x02\xad\x52\x79\x0a\xf5\x82\xdd\x52\x9b\xae\xc9\xd9\x0a\x20\x0a\x65\x44\xd6\xd2\x5c\x25\x49\x34\x55\xe5\x69\xb7\xa9\x12\x50\x3c\x68\x13\xdc\x6d\x62\x4c\xe9\xf9\xa3\x98\x1c\xac\x90\xbf\x94\x9f\x17\x52\x18\x5d\xea\x3e\x38\x3a\x38\x53\x6e\x24\x04\x06\x8f\x61\x77\x33\x5e\x44\xb1\x1e\xdc\xa2\xb7\x29\x85\x00\xc5\xdf\x77\x59\xb5\xb7\x98\x1e\xef\x80\xe2\x41\x3d\x8f\xa5\x86\x9c\x69\x0f\x60\x26\xd2\x5d\x2e\xbf\x11\xff\xf0\x04\x59\x3a\x11\x21\x28\xf7\x8f\x70\xc9\x28\xb5\x86\xfb\x30\x24\x78\x18\x55\x19\x49\xf4\xc4\x05\x9b\x5d\xde\x8e\x0c\xd7\xa9\x5a\xf6\x13\x54\x9f\xc5\x2d\x80\x07\x16\xff\x7f\x8f\x96\x45\x65\x4c\xad\x08\x82\x35\xd5\x80\x92\x38\x0f\x63\xf0\xc3\x2a\x4a\x19\x00\x0a\xf8\x58\xb1\xa9\x65\xb9\x9f\x53\xfb\xb6\x0c\xe4\x96\x45\x05\xe5\x03\xfa\x34\x1f\x2b\xf4\x65\x96\x1b\xbf\x17\x46\xeb\xc4\x98\x87\xf8\xf8\x14\x4a\x65\x7c\x82\xc7\x89\xf0\xe2\x18\x55\x0f\xb7\x54\x3b\x61\x53\x35\xc0\xb3\x20\xf5\x47\xdd\x88\xeb\xb1\x32\x59\xe9\x0a\x61\xa7\xec\x42\xcb\xc6\x3e\x94\x2c\xd0\x86\xfb\x97\x8a\x52\x99\x79\x1e\xf0\xed\xb7\x3c\xd5\x90\x7f\x5f\x4f\x08\x04\xd9\x8c\xaa\x5d\xb0\x64\xb6\x34\x20\xc9\x98\x73\x5e\x45\xb7\x0d\x33\x0b\x2c\x32\x8a\x66\x57\x15\xf7\x8c\x9f\x26\xdc\xc1\x64\x49\x3f\x4f\xe1\x18\x6e\x4f\x9e\x52\x9c\xa3\x51\x18\x24\x63\x92\xb2\x29\xaf\x4b\xea\x76\x6e\xc0\xe2\x4d\x05\x96\xbc\xe9\xb9\xb1\xc9\x24\x8e\xd6\x9f\x74\x74\xe5\x77\xc9\x2d\x48\x4b\x42\x0f\xd2\x52\x2d\x64\x7b\x0b\xae\x42\x9a\xfb\x53\x4e\x2c\xf9\x13\x1b\xe5\x5a\x93\x24\x89\x1c\x82\xa8\xab\xd3\x9a\x42\x56\xb3\xab\x43\x3e\x08\x96\x0c\x33\xf8\x70\x93\x2d\x9d\xdf\x7f\x00\xef\x02\x77\xf8\x06\x7c\x10\x4e\xb8\xda\x25\x63\x02\xa5\xd3\x84\xe9\x66\x9c\xb5\xcc\x44\xbb\xe2\xcf\xad\x06\x39\xa6\xe7\xdb\x5d\x93\xe5\x53\xd4\xa4\xe1\xef\xa5\xfb\x66\x01\x61\xd4\x60\x25\x3c\x69\x10\xce\xe8\xfa\x59\x18\xb4\x5c\x9f\xef\x3d\x65\x52\xde\xab\xf5\x09\x97\x67\x45\x76\xbd\xe5\xa6\xcb\x3f\x50\x7a\x4b\x1f\x34\xc1\x67\xd6\x86\x49\x04\x69\x52\xc4\x9b\x18\x36\x81\x35\xda\x56\x44\x1b\x57\x54\x49\x69\x4c\x50\x0c\xa5\x22\x01\xa3\x2d\x92\x12\xb6\xd8\x15\x66\x26\x48\xd1\x29\x71\xa1\x12\x8b\x6b\x4a\x92\xe9\xf2\x68\xd3\xef\x9b\x20\x7f\xc4\x3d\xd2\xcb\xd8\x79\x3c\xda\x4e\x81\x29\xef\x39\xcf\xed\xaf\x63\x5e\x85\xb5\x5b\x49\xcb\xbe\xab\x37\x12\xd3\x25\x08\xd1\xbd\x44\x93\x99\x1f\x4c\xa9\x21\x77\x4c\x2b\x09\xe3\x55\x19\x50\x09\xf8\x6d\x67\x6b\x61\x6e\xae\xed\xd3\xf5\x86\x49\xec\xe7\x06\xf5\x2e\x6b\xc3\x2d\x80\x83\x79\xec\x95\xdd\x96\x6e\x4c\x18\x45\x61\x3c\xd8\x57\x2e\x66\x64\xb0\x2c\xa8\x87\xb5\xc1\xd4\x59\x68\x4a\x82\x9b\x53\x90\x27\xb4\x64\x85\xa2\xd0\x4d\x38\x5e\xd6\x99\x38\x20\xaa\x58\x28\xd3\xbc\xbd\x24\xd8\x6d\x12\xf9\xf7\x83\x15\x7f\x60\x94\x20\xf8\xcf\xe8\x41\xf0\xb1\xf7\xa4\xc2\x1f\xf8\x31\x71\x4e\xce\x38\xc4\xc6\x3e\x62\x0f\x42\x70\xc1\xac\xe2\x78\x65\x8c\x49\x16\x36\x53\x05\xce\xbf\xa9\x88\xd7\xb2\x62\x5c\x7e\xa1\xe9\x4d\xd1\x76\x40\xa8\xf8\x23\x65\x52\x8e\x2b\x98\xf3\x1b\x4d\xee\xc1\x8f\x63\x6a\x33\xfa\x29\xe6\x52\xb9\xe5\x5e\x69\xbf\xb7\xeb\x29\x47\x2f\xcc\xfc\xf1\x38\x09\xe3\x1c\x6a\xe8\x16\xfa\x75\x51\x31\x2e\xbb\xd8\xa0\x1f\x19\x7f\x4a\x05\x71\xc7\xd4\x58\x32\x58\x62\x50\x1a\x7a\xbd\xd9\x83\x8d\xd7\xd3\x70\x30\xcc\x19\xdd\x27\xc5\xe9\x4a\xd5\xda\x8e\xdc\x75\x33\x93\xae\x1a\xd2\xb7\x11\x60\x01\xad\x2f\x6c\xe3\x9b\x0a\x8f\xf2\x61\x2d\x10\x79\x6e\xa9\x1d\x25\xa2\x9c\x89\x6c\xe7\x2d\x2c\x42\x3e\xf9\x58\xc1\x86\xd5\x30\x1d\x84\x71\xe8\x53\x04\x8c\xfa\x29\x52\x23\x99\x96\x51\x6d\xfe\x8f\x6a\x9d\xad\x85\x85\xe5\xf6\x98\x44\x86\xe7\xb4\xac\x96\xa2\xc5\x3b\x24\x78\xd5\xfb\x8a\xda\x66\x14\x12\xed\x88\xcf\xe4\x74\x96\xc2\x41\x83\x48\x1d\xd1\x63\x6c\xfc\xb4\xcb\xa1\xa5\x25\xd1\xb4\x62\x77\x27\x94\x7f\xcc\xfd\x6e\xcb\x39\x69\xe0\x6b\x45\x70\xc8\x7d\xdf\x20\xf4\xe3\x3c\x23\x61\x64\xa9\x24\xbb\x98\x0b\xd4\xa3\x58\xe3\xbb\x36\x6c\xd9\x3f\x0d\x7b\x76\x0a\x8e\xfb\x2c\xd5\xa6\x8b\x93\x26\xeb\x19\x29\xb3\xc2\x91\x81\xcc\x86\x8f\x27\x3b\xe4\xed\xcb\x07\xb8\xb4\xbc\x44\x57\x8d\x7d\xcf\x94\x23\x7c\xa2\x18\x9f\x52\x13\x85\x66\x15\x1e\x9b\x79\x3f\x69\x4d\x08\x07\x68\x9d\x9b\xab\x9d\x9a\x41\x11\xf9\x69\xb4\x8e\x25\x6c\xc7\xf3\x97\x67\xed\xe4\xb2\x6b\x49\x9d\x68\x90\x97\x5d\x6a\xe7\x69\x52\x74\x9d\xe4\xa1\x66\x06\x17\x5d\x90\x06\xbc\x08\x01\xe9\xe4\x6f\x78\x5e\x60\xe2\x72\xac\xfa\xec\xc0\xd2\xf2\x52\x7b\xe8\xa7\x3d\x93\x82\xa1\xd3\x8a\xc6\xd9\xaa\xfe\x1f\xa1\x6e\xcc\x93\x70\x9e\x52\xe6\xbc\xa0\xd6\xca\xc8\xbc\x14\x06\xc9\x1e\x07\x3d\xd8\xf4\x94\xb7\xc7\x4c\x81\x40\xfd\xd5\x9c\xed\xa6\xaa\x8d\x6e\x6a\x75\xbf\x3b\x8a\x7b\x7d\x9c\x44\x91\x89\x5b\x8e\x9c\xeb\xa4\x4a\x27\x4e\xaa\x0f\x06\x49\x14\xf9\xe9\x94\x82\xfa\x5d\xa1\x1b\xc1\x1a\x68\x75\x94\xc0\xd6\xad\x46\x26\xac\xbe\xf1\xf3\x02\xbc\x4f\xcf\xdb\xe1\x10\xfa\x2b\x3e\x69\x22\xf3\xff\xe5\xb6\xe9\x0d\x8c\xd2\xa8\xb9\xe2\x39\xb1\xc7\x2b\x4d\xf6\x89\x81\x26\xa5\x21\x9c\xaa\x3a\x5d\xdb\x67\xdc\x54\xed\x93\xa1\x63\x77\x0f\x7b\x6b\xfe\x3a\xed\x7a\x3b\x5e\xa1\x59\xe0\x5d\xb1\xe3\x5e\xad\x10\x0e\x09\xff\x30\xea\x0d\x93\xa4\xa7\x10\xbc\x3f\x54\x40\xe1\x1f\x2a\xea\x8d\xfe\xc1\xb5\x83\x88\xff\x6d\xef\xf8\x90\x8b\x41\x5d\x20\xd1\x4b\x06\x03\xd3\x6b\xe9\x1e\x3b\x43\x24\xf9\x44\xd5\xc9\xc3\x9e\xf1\x79\x52\x8d\x49\x0f\xe8\xc7\x41\xd8\x74\x4a\x35\xa7\xef\x36\x91\xe6\x8e\xfc\x34\x67\x8c\x33\xe2\x5a\xce\xb4\xf9\x44\x35\x5c\xe6\xfc\x54\x09\x1b\x42\xe2\x16\x8d\x3d\xd6\x5f\x47\x18\x78\x47\x45\xe5\xe3\xd0\x04\xe6\x51\x87\xac\x6c\x91\xd8\x88\xa4\xaf\x14\x54\x22\x31\x3b\x8b\xc8\x15\x27\x37\x14\x54\xe4\x67\xb4\x96\x51\x45\xb8\xa6\x24\x55\x8f\xab\xf6\xf3\x4f\x11\x69\x03\x3c\xf0\x43\x84\xa4\xfc\xb5\xae\xd5\xe9\xe7\x61\x37\xc9\x31\xdf\xc2\xb2\xc4\x4a\x28\xe9\x0c\x11\xce\xa0\xaa\xca\xb2\xd7\xd8\x3f\xfb\x3a\xfb\xed\x24\x5a\x9e\xb7\x5c\x93\x97\x0b\x0d\x02\x33\xdb\x59\x88\x7d\xe1\x85\xf6\x30\x59\x83\xd4\x0b\x0a\x96\x1f\x21\x14\xb4\x04\x4e\x0e\x20\xb2\xa9\x18\x2c\xcd\xaf\xfe\xda\x94\xab\xaf\x9e\xd1\x25\x9b\x16\x05\x29\xb8\xb1\xbb\xb5\x3e\x7d\x19\x03\xa5\xe1\x6a\x18\x99\x01\x83\x97\x45\x8f\xcc\xbd\xda\xe3\x4d\x90\xc5\x5f\x9a\x3f\xf4\xcc\xa1\xa3\x47\x08\xc1\x8d\xf0\xf7\x3f\x68\x0c\xfd\x23\x84\xc6\x96\x72\x7e\x79\x69\x68\x08\xeb\x0e\x59\x96\x14\xf9\x70\x5f\x99\x61\x20\xe7\x66\x0a\x25\xc4\x3b\xef\x79\x42\x99\x6b\xa1\xce\x7f\xa6\x82\xdf\x9b\x14\xf4\x6d\x8b\xcc\x8b\x44\x5a\xe5\x8f\xda\xd4\xec\x90\x40\x53\xee\xa8\xad\x94\x1a\xbf\x47\xf9\x27\x58\x70\x90\x9b\x8b\x46\x3e\x99\x49\xfe\x07\xcf\x21\xe5\xcf\x34\x35\xd4\xb2\x3c\x89\xab\x02\x99\xbf\xab\x04\x32\x7f\xb7\x81\x7b\xb9\x7f\xd0\x1c\x6c\xe9\xbe\xea\xeb\x9a\x03\xe5\xf5\xda\xbb\x59\x9e\x6d\x17\x71\xea\xaf\x9a\x88\x1b\x2d\x78\xb4\x57\x95\x60\x24\x87\xfd\x8c\x51\xaa\x39\xaf\x85\x05\xa2\x5e\x2e\xd2\x2e\x0d\x71\x58\x54\xe0\x7d\xba\x52\x3e\xb6\x30\x8f\x35\xea\xd7\x5a\x97\x85\x87\x7e\x55\x79\xee\xab\x2a\x13\x22\xc4\x6b\xcb\x31\x88\x5e\x9a\xa8\xe9\xed\xba\x6d\xfe\x9c\x8c\x2a\xb5\x1c\x4a\xff\x9e\x42\xe3\xdf\x53\xe3\x49\x3d\xd3\x0f\x83\x30\xdf\xeb\x8a\xd3\x98\xbf\x43\x8d\xf6\xcc\xc4\xe9\xde\xa2\xa1\x2c\x9b\x56\xf1\x53\xde\xf3\x54\x96\x7e\x1e\x56\x42\x46\xf9\x9e\xb4\x08\xa2\x41\x9c\x64\x81\x89\xf3\x10\x6f\x11\x2b\x74\x4b\xc1\x17\xb6\x54\xe8\x11\xc6\xfd\x28\x0c\x72\xcc\x54\xb2\xec\xad\x22\x72\x3a\x59\x6d\xed\x14\xd9\x27\xca\xcb\x14\xfc\xae\x0b\xb1\xef\xe0\x39\x09\xe2\x91\xbc\x1b\x4c\xd0\x7b\x5a\xb6\xe5\x22\x3c\xbd\x42\x49\x1e\x61\x2f\xb6\x63\xc9\xab\xf8\x9b\xc9\x72\x99\x02\x08\x4f\xc0\x22\x42\x6d\x90\xf4\xfb\xb5\x74\x7d\x79\xb6\x9d\x99\x38\x43\x16\x64\xd1\x07\xe5\x23\xe3\x13\x35\x54\x2d\x0d\x01\xd3\xab\xb4\x18\x50\x9f\x06\x6b\xc0\x31\x3d\x8b\x44\x8f\x68\xfb\x6d\x2c\x74\xfe\xf7\xda\x05\x50\xe0\x63\x7c\x24\xd6\xa8\x3c\x1c\xd3\x85\xa8\x63\x15\x69\xef\x51\x12\x87\x01\xc2\x02\x91\x3c\x52\x38\xf0\xcb\x8a\x99\x14\x21\x04\xf5\xf1\xb5\x38\xe3\xf2\x52\x85\xf2\x0d\x75\xa4\x37\x2a\x58\x77\xe9\x63\x84\x71\x36\x0e\x53\x19\xd8\xb5\x68\x08\xab\x4d\x70\xae\x3a\x94\xa9\xaa\x93\x86\x82\x3f\xda\xb6\x88\xe3\xee\x55\x74\x35\x1d\xae\xf3\x7f\x3c\xaf\x68\x96\x03\x3f\x4d\xd7\xe9\xef\x96\x97\x38\xa3\xbd\xaa\x54\x32\xbf\xaa\xe0\x01\x57\x2a\x95\xd5\xd5\x24\xdd\xe3\xc6\x94\xcf\x68\x41\xa8\x4a\x29\x83\x9e\x94\xb4\xea\x14\x72\xe1\xcf\x68\x57\x49\x7b\xd9\x31\x03\x9a\x32\x75\xdb\xeb\x0a\x69\x90\x8c\xc7\x17\x7c\xcd\x53\xe3\x13\x28\x2b\xc3\x4e\x6c\x50\x25\x6b\x37\x5a\x65\x58\xc2\x67\x26\x8a\xcf\xe1\x4c\xa3\x4a\x1b\xcb\x7d\x4d\x29\x74\x06\x9b\x37\x84\x0e\xef\x78\x7a\xb7\xb9\x48\x33\x1f\x86\xb1\x40\x52\xf1\x56\x4e\xe1\x36\xf9\xa4\x16\x7d\xcd\xcd\x95\xc1\x4f\x4c\x92\xda\xfc\x66\x2d\x6b\xe1\xc2\x82\xa5\x6f\xa1\xab\x47\xd0\x71\xbf\xf6\x1d\x0c\x56\x29\x83\x61\x2e\x1f\x68\x92\x76\xe9\x23\x3c\xa5\xd0\x20\x71\xbf\xfc\xd1\x80\x05\xe5\xec\xbb\x39\xe4\x84\xbb\x5c\xb5\x31\xe9\x46\xe1\x80\x9a\x32\x7b\xca\x0f\x48\x49\x9e\xde\x17\x4e\x3e\x54\x96\xef\x43\x5c\x2a\xb0\x06\x77\xf0\xc8\xf8\x04\xfb\x52\xb4\xf6\xeb\x30\xb2\xa5\xb6\x9f\xe7\xa9\x1f\x88\x70\x04\x3e\x78\xcd\x53\xca\x6c\xd7\xd4\xf2\x94\x8a\x31\x2d\x35\xc6\x10\xa9\x16\x34\x30\x4e\xdb\x5b\x9e\x6a\x51\x1f\xa3\xe5\x27\x12\xfd\xb4\x60\x80\x5a\x7e\x68\xd3\xc5\x41\x92\x86\x49\xce\x9e\x51\xe6\xf6\xf4\x10\x5f\xc5\xb4\xa6\x79\xf6\x94\xe2\x73\xf8\x16\xe1\xd5\x98\x07\x19\x19\x91\x50\x41\x38\x59\xe4\x0f\xd1\xb2\x43\x68\x0e\x7e\x71\x94\x1e\xc0\x4b\x85\x00\x6e\xf7\x86\xa6\xb6\xfc\x26\x9e\x23\xf7\xc0\x60\x8d\x2c\x00\xd3\x0e\x8c\x13\x85\xc7\x33\x42\x74\x89\x6a\x03\x4c\xe2\x47\x78\xf4\xa8\x5f\xa3\x5d\xc9\x2d\x3b\x32\x40\x48\x19\xb8\x01\x80\xc0\x92\xd1\xfe\x68\x70\xde\x9e\xb8\xe1\x8a\xab\xde\x93\x3b\x87\x37\x96\x67\x81\x70\x41\xc1\xee\xa1\x6a\x07\xfc\x50\x11\xeb\x9c\xf2\x1c\xfb\xce\xd7\xa8\xd3\x81\x47\xf3\xf7\xb0\xd0\x76\x36\xab\x7c\x68\x42\xff\xa1\x6c\x02\xca\x2d\x30\xda\x6f\x4f\x1c\xd0\xf6\xba\x7a\x00\x5c\xea\x90\xa4\xc9\xc9\x57\xc4\x88\x7a\x51\x44\x40\xeb\x97\x8f\x55\xd8\xea\xa7\xe1\x54\xf9\x1b\xc8\x61\x3f\xc0\x03\xc0\x5b\xc2\xe0\x82\x14\x60\x5c\xd3\x22\x36\xdd\xd4\xcf\x18\x80\x20\x43\x81\x0e\xe1\xf2\x8e\x4a\x41\x7b\x45\x96\x33\x2d\x1e\xfc\xf0\x39\x15\xf6\x40\x42\x14\xdb\xe4\x5b\x4d\x15\x65\x42\xde\x48\xfe\x29\xe2\xbb\xaa\xd7\xf0\xe7\xca\x2b\x46\x61\xdf\x64\xfe\xaa\x9b\x2c\x87\xaf\xe1\x69\x09\x51\x43\x54\x54\xc1\xd7\xd5\xcc\x1d\xeb\xbf\x9b\xb8\xa5\x1a\x56\x67\xf5\x38\xe4\x59\x1b\xa2\x99\x08\xc8\x6b\x40\xbf\xb0\xec\x6e\x29\x53\x70\x4b\xd7\xaa\x23\x3f\xec\x69\x71\x0e\x98\x09\xc1\xb3\xa8\x41\xca\xb9\x0c\x28\x49\x54\x20\x4f\xab\xea\xd5\xd7\x7e\xb1\xe3\x8a\xf0\x0f\x14\x0b\xca\xa5\x27\x37\xd4\x24\x7e\x91\xae\x86\xab\x12\x0c\xe3\x45\x9c\x57\x0c\x46\xe7\x55\x8a\x3a\x2c\x46\xe3\x7c\xbd\x55\xbe\x14\x8e\xea\x95\xce\xc8\x9f\x59\x9b\x50\x8c\xf3\x22\x45\x7e\x89\x52\xc5\x6b\x08\xe2\xf8\x44\x05\xf4\x2b\x61\x8f\xd9\x4d\x9a\x6a\x98\x0d\x10\xb4\x22\xee\x99\x74\x14\xc6\x62\xfb\x61\x22\xb4\x94\xcd\x75\x3c\x29\xc9\xd8\x76\x16\xfc\x3e\xdf\x5e\x4d\x2c\x6d\x96\xe2\x28\x9b\xb7\x1a\xe9\x1f\x37\xff\x62\x5e\x0a\xcc\x38\xa7\xea\x09\x20\x0a\x4c\x37\xc0\x27\x93\x03\x15\x1a\xa9\x74\x15\x49\x30\x07\xae\x9e\x9b\x8e\x3f\x87\x0d\x2c\x11\xad\x6a\x38\x83\xef\x5a\x10\x5e\xb4\x76\xd5\xce\x96\x52\x1d\x9a\xad\x88\x20\x6f\x68\x41\xb0\xb3\x4a\x72\xea\x5b\x4d\xea\xc5\x91\xf1\xb3\x7c\x9a\x52\x70\x71\x31\xe5\x57\xc1\x48\xcc\x6c\xe8\xf1\x42\x4a\xa8\xb1\xe7\xb7\x2b\x03\x4f\x41\xc8\xa8\x5c\x51\xd9\x77\x45\xb1\xf3\x8a\x0c\xe5\x4d\x2c\x37\x71\x1d\x8a\x8a\xcc\x2f\x06\xc3\x5c\x54\x60\x85\xf0\xc9\x89\x2c\x9e\xb5\x66\xa8\x67\x5e\xf4\xd1\x84\xd2\x48\x1e\xf8\x5b\xbc\x70\x3c\xc2\x1b\xca\x6a\x80\xa3\xa5\xe5\x1a\x0f\xa7\xd5\xf8\xeb\x69\x35\xd7\x39\xf0\xc3\xf8\x11\xba\x49\xdc\xfd\x25\x4f\x2d\x08\x0c\x4d\x21\x2e\xbf\xef\xa9\x26\x10\xd7\x63\x04\x30\x53\xbe\x5f\xc4\x18\xbb\x37\x76\x16\x60\x61\x37\xf6\x6c\x34\xe8\xb1\x12\xa4\x9b\xa5\x21\x14\xca\xc7\x22\x15\x6d\x9b\x27\x0d\x7b\xd3\x1a\xd7\x64\x2b\x59\x4f\x3d\xd9\xb1\x50\xcd\xa7\x9e\xac\xa2\x9a\xf6\xbb\xb2\xb3\xbf\xc7\x41\x65\xd8\x0b\xb2\x0a\x3b\xc5\x4a\xe8\xd9\x54\xf8\xaa\x4e\x2a\x75\x86\x73\x70\xf8\xcc\x61\x5c\x53\xf2\x5b\x58\x28\x0d\x9a\xed\x41\x30\x78\xce\xd3\x40\xba\x9d\xdd\x27\x82\xfb\x86\x7e\x99\xb9\xe5\x61\x20\xec\x8a\x58\xef\xd7\xf4\xc4\xe3\x35\xd5\x72\x4a\x0b\x92\x05\xa5\x30\x16\xef\x6a\x4f\xc7\x09\xa4\x73\x50\x6c\x47\xfa\x9c\xe4\xf1\xdb\x8a\x1e\xf4\xf8\x44\x71\xf6\x30\x3f\x21\xff\x7d\x9d\x5d\x79\xbe\x9d\x91\xa5\xae\x32\xfd\x7c\x9f\xee\x0c\x9e\xff\x3a\x76\x1d\x5e\xf7\x2d\x95\x93\xc6\x59\x1e\xe6\x85\xb8\xcf\x26\xb8\xf9\x13\x0e\x63\x35\x36\x69\x1e\x1a\x71\x3a\xb0\x0d\xef\x79\x8a\x6a\x98\xab\x72\x78\x33\xaf\xa8\xf9\xba\xd5\x70\x90\xa4\x49\x81\x2d\xc4\xa3\xfa\x95\xb1\xfd\xca\x84\xe2\xd0\x3c\x46\x5f\x8a\x10\x83\x51\x97\x88\xff\xae\xd3\xeb\x46\xda\x01\x2d\x7e\xac\x8f\x9b\x8a\xdc\xfb\xc7\x9e\xa2\x66\xbb\x46\x90\x09\x40\x99\xce\x78\x3b\xdb\xd8\x82\x1a\x7a\x40\x9d\x67\xdc\x32\x87\xe2\x3c\x58\x8b\x5d\xc6\xb2\xa9\x0a\x5e\x73\x43\x05\x3e\x8f\x76\x76\x86\xba\x73\x73\xed\xac\x18\x0c\x4c\x96\xcb\xb6\x41\xed\xf9\x3c\xbe\x8e\x4f\x26\xff\xe4\x63\x0c\x77\x90\xc4\x83\xd4\x64\x59\xe9\xa5\x5b\x5f\xb2\x9c\x05\x13\xd5\x52\xb8\xa8\x68\x3a\xe3\x24\xff\x05\xba\x33\x66\x23\xa5\xe7\xc2\xcd\x76\x0a\x9e\xd8\x2c\xd2\x33\x12\x90\x08\x35\x41\x2d\x7d\xa9\x9d\xe6\x6c\x75\x54\x55\xea\xb4\x16\xba\xb9\xe9\xe9\x36\x3a\x21\xd4\x10\x30\xde\x56\x72\x84\xf7\x10\xfa\x56\x2a\xae\x28\x26\xde\x66\x54\x0b\xde\xf8\x1b\x14\x47\x4b\xc1\x9f\xde\x04\x02\x78\xe0\x87\x51\x22\xde\xd5\x01\xaa\x4c\x84\x4a\xe8\xd9\x09\x01\xbb\xca\xdb\xae\xa1\xb4\x8a\x4a\x1e\x57\x86\x60\x69\x99\x4e\x06\x46\xf2\xaf\x89\x3e\x05\xff\x30\xbd\xa1\xe1\xc8\x7e\x90\x93\x68\x5a\x4b\x83\x3b\x54\xdb\xb1\xbe\xe7\x16\x16\xda\x7e\xd4\x4f\x4d\x16\x24\x64\xbb\x79\xfd\xab\x3e\xf1\xe9\x26\xc1\x8c\x22\x0e\xb1\xd3\x2a\xfb\x45\xfe\xf8\x80\x12\x6d\xc9\x41\x03\x52\xbe\x55\x4b\xa6\x7d\x68\xd1\x12\xc9\x4b\xe0\x12\x0c\xc3\x28\xc2\x40\x2f\x0c\x11\x60\x05\xa2\xf7\xdd\x5a\x9e\xdd\xde\x56\xe1\xec\x8b\x7e\x90\x74\xb3\x84\xe8\x27\xe6\x79\xeb\x9c\xd0\x33\x46\xf7\xe9\x57\x2c\x97\xb7\x13\xf7\xd7\x65\x03\x33\x32\xe9\x40\x4a\x7c\x70\x98\x28\xe0\xf2\xb1\xce\x96\x93\xf5\x24\xf7\xa7\xab\x84\x6b\x73\x6a\x45\x3b\x96\xbf\x4d\xcd\x7a\xa7\x5b\x07\xfd\x28\x49\xd2\x7d\xca\x65\x30\xa9\x0e\xf3\x29\x61\xc5\x09\xcc\x81\xde\x20\xd6\x18\xf4\xcf\x10\x13\xb6\x28\x25\x42\x31\x77\x57\x47\x81\xfe\x6e\x28\x32\xd6\x5b\x4a\x9f\xf4\x7e\xad\x4b\x34\x37\xd7\x0e\x92\x60\x25\xf7\xc3\x88\x26\x35\x2d\xa3\x90\x0c\xd3\xfe\xdb\x7b\x6a\x1e\xea\xfc\xe4\x13\x0e\xf6\x13\xf7\x7e\xa9\x4c\x87\x58\x40\xad\x43\x17\x2c\x5c\x2d\x6a\xd6\x7e\xaa\xa3\xe4\x25\x7f\xe8\x29\x2f\x57\x61\x67\x61\xe9\x67\xf6\xfc\x18\x4d\x46\xe5\x6a\x77\xa7\x7c\xb6\x22\x64\x4d\x8b\x07\x5f\xb6\x45\x66\x00\xb9\xde\x25\x6f\xf7\x2f\x4b\xd6\x49\xd0\x0b\x04\x28\xdf\xa6\xec\x0d\xbb\xfb\x06\xad\x02\xd1\x7c\xd0\x9b\xf0\xc7\x9e\x62\x25\xfd\x37\xaa\x27\x7c\x05\xf2\x08\x48\xe5\xa6\x41\xcd\x81\x8a\xd2\xae\x8d\xd6\x17\x7e\x87\xc3\xde\x3d\x5a\xe4\xee\x4d\x62\x97\xbc\xed\xb5\x3e\xfb\x59\x0e\x49\x7f\x40\xc9\x2a\xb2\xeb\x27\x88\x26\x12\xfd\xa1\xad\x49\x69\x05\x11\x2d\x0b\xb8\x14\xb9\xda\x47\x30\x4a\x80\x47\xee\xde\x68\x7d\xf9\x8b\x55\xe2\x20\xfc\xfd\x39\x95\xb5\xef\xda\x20\xcb\x87\xdd\x72\x47\x55\x5c\xd7\xfc\xf5\x35\x3f\x45\x7f\x8c\x39\x3a\xe8\xfe\x84\xaf\xa3\xde\x55\x5b\x2c\xa3\x37\x9f\x86\x38\x5b\xae\x67\x77\x4a\x0d\xa5\x9c\x52\xe3\xaf\xe3\xd4\x64\x65\x36\x42\x4c\x79\xe5\x45\x5b\x49\xab\xf2\x05\xf2\x49\x0d\x39\xf4\xb9\x76\x16\x24\xfd\x3e\x78\x56\x58\xa3\x42\xd3\x98\x6e\x6a\x37\x76\x93\xde\x21\xde\xdb\x2b\x0d\xd2\x47\xdd\x24\x4d\x55\xc9\x1d\x0d\x6f\xcc\x48\xf2\x71\x6d\x08\x88\xba\x9c\xe3\x34\xe9\x09\x8f\x31\xad\x4a\x18\x08\x8c\xd3\xf1\xb1\x0a\x80\xc2\x38\x88\x8a\x9e\xd9\x8f\x17\x55\xa9\xad\x61\x9b\xfe\x5b\xac\x4d\x99\x9d\x76\xf3\x74\x3f\xc1\xdd\x48\xdb\x51\x8f\x75\x28\xcd\x33\x90\x16\x60\x39\xbc\x8a\x1d\x8f\x70\xea\xec\xc4\x51\xc9\xbf\x0d\x6f\x89\x31\xb2\x3f\x57\xf5\x7e\x51\xb4\x77\xdd\x9d\x4b\x8a\xc6\xed\x92\xb2\x96\xd4\x33\x4d\x4d\xfc\xa8\x6b\x0d\xdc\xd5\x95\xea\x1f\xd0\xcf\x09\xa5\x93\x73\x82\x0f\xb0\x49\xa4\xb7\x5d\xbe\x13\xfe\x03\x85\x49\xbf\xae\x5d\x13\xeb\xe3\xe3\x37\xde\xa5\xcd\xca\x5f\xa5\xab\xb5\x69\x41\xa0\x47\x90\x40\x62\x63\x5f\xc2\x63\x45\x0a\xc3\x91\x0b\x82\x92\x7b\xb5\xb4\x90\x8a\x88\x84\xf0\x74\x54\x92\xcc\x52\x36\x71\xa4\x02\x50\xf8\x61\x32\x7f\x35\x0b\x39\x0e\x93\xd8\x90\x84\x42\xcb\xf2\x0c\xed\x81\x25\xe5\x93\x0d\x65\xf6\x4d\x1c\x87\x55\x3a\xf9\x89\x1b\x32\xd8\x54\x6f\xa3\x9f\x1a\xd3\x13\x4a\x3f\x19\x0b\x76\x53\x41\x9b\x1a\x92\x45\x8f\x58\x42\xe2\x06\xf3\xcc\xd2\xa7\xfc\xbb\x80\x2e\x5e\xd2\xa4\x0c\x97\x14\x20\x66\xb5\x0c\x66\x03\xa0\x95\xad\x1b\x3b\xaf\xf9\xa8\xeb\x72\x8d\x5f\x9a\x6f\x8f\xfc\x15\xa3\xb4\x7b\xd0\xf0\x97\xc8\x7e\xe7\x13\x7f\x8e\x5c\x7e\xcf\xa4\x59\x4e\x6c\x4d\xe5\x65\x89\xb6\x9f\x02\x41\x5e\xd2\xb4\x22\x34\x83\x15\x51\x4e\x68\xb1\x82\x5f\x57\x4c\xe0\x5f\x6f\xd8\xd7\x23\x3f\x8c\x79\x86\xc8\x4d\xb8\x9f\xc7\x5e\x92\x4c\x57\x17\x87\x47\xa3\x30\xcf\x8d\x54\x50\x90\xa3\x9c\xf2\x54\xd3\xe4\x54\xad\x44\xf5\xec\xec\x52\x7b\x98\x24\x2b\x52\x88\x40\x53\x18\x12\x1a\x7c\x5c\x2b\xf8\x3a\xd6\x01\xc1\xf1\x60\x63\x7f\x55\x8f\xc2\x7d\x55\x95\xff\x47\x61\x9c\xa4\xe4\x5c\x51\x15\xc7\xb0\x8e\x9d\xd8\xb2\x98\xea\x07\xb5\xcb\x83\xea\xfe\xb8\x60\x4e\x33\xf8\x00\x2c\x6b\x3e\x6e\x20\xec\xc9\xfc\xbe\xc1\xcf\xd9\xb9\xe2\x72\x17\x4a\xb8\x5b\x7e\x11\xea\x67\x17\x54\xa9\xe4\x2b\x85\x1f\x85\xb9\xae\x49\x23\xad\x96\xe6\xb5\x96\x4c\x73\x8e\xe0\x7f\xc7\x57\x4b\x68\x49\x2f\x1f\x85\xe9\x8f\x14\x4c\xaa\xef\xc7\x71\x68\xa6\xf5\xf2\xf5\xf4\xf2\x85\xd9\x94\xb2\x83\x03\x7a\x9d\x6d\x54\x75\x18\x25\x79\xb8\xca\xeb\x6e\xc9\x6a\x35\xd0\x02\x17\xb1\x06\x87\xe5\x16\x6a\x97\x24\xe6\x31\x27\x84\x31\x30\xb5\x7c\xec\x26\xf4\xf3\x34\x89\x07\x34\x8c\x59\x3a\x32\xa4\x5d\x50\x88\xe1\xe3\x5a\x3f\x7a\x71\xb1\x4d\xf5\x41\xcb\x97\x7a\x46\x83\xe5\xce\xd4\xe8\xe3\x5e\x78\xa1\xdd\xc5\x46\x63\xc2\x20\x2c\x4f\x61\x0f\x72\x6b\xe6\x2b\x45\x98\x9b\xbd\xf4\x94\xf0\x5d\x27\x26\xaa\x19\xfb\x0d\x84\x25\x88\x1b\x19\x7f\x64\xad\xac\x25\x47\xf8\x06\x3d\x4b\xfe\xff\x9e\x52\xd5\xd5\xaa\x55\x2f\x86\x3e\x93\x7a\xa0\x52\xf7\x63\xcf\xe1\x2c\x7e\x3c\xf9\xd4\x4e\x90\x59\xb9\x24\x0f\x94\x5f\x6b\x05\x48\xca\xaf\xb5\xce\xc2\x06\x16\x17\x11\xa8\x60\xd8\x67\x6f\x47\x0d\xa1\xdd\xf6\xaa\x4d\xd9\xf2\x2d\xda\x4a\xef\x73\x16\xe3\x7f\x85\xdc\x85\x3d\x9e\x9b\xb7\x74\x9c\xf4\x50\x98\x62\x8c\xd6\x25\x47\x77\x13\x57\xee\xb9\x80\xc7\x8a\x70\xf0\xff\x25\xec\x5d\x83\x24\xb9\xb2\xf3\xb0\x99\xea\xee\xc1\x0c\x80\x19\x3c\xf7\x65\x49\xa1\xe2\x7a\x23\x20\x45\xac\x20\xdb\x11\x0c\xd3\xfa\x93\xa5\x9e\x5e\x82\xd3\xc1\x6d\x4c\xf4\x0c\x01\x09\xc1\x08\xe3\x56\xd6\xad\xae\x44\x67\x65\xd6\x66\x66\xf5\xa0\x11\xfa\x61\x2b\x64\xff\xf0\x0f\x85\x2d\xc9\xb2\x23\x48\x87\x69\x51\x41\x99\x14\x2d\x53\xa4\xc8\x15\x49\x91\x55\xcb\xe5\xbe\xb0\xaf\x59\xbc\xdf\x98\xf7\x7b\xba\x7b\xde\xd3\xf3\xe8\x71\xe4\xf9\xce\xb9\xf7\x54\x67\x82\xfe\x85\x4c\x4c\x57\x55\xe6\x7d\x9c\x7b\x1e\xdf\xf9\x3e\x09\xd1\xf0\x67\xdc\xd3\x8d\x11\xff\x99\x4a\xa3\xcf\x72\x3f\xfc\xd6\xa9\xd2\x20\x6f\x9d\x1a\x79\xee\x93\xae\xc9\x8b\xb6\x89\x63\xc4\x17\x4e\x48\xc4\xf1\xcf\x71\x1b\xab\x3b\x12\x16\xbd\xc2\xc8\x17\x95\x14\x3e\x69\x7a\xe4\x85\x4d\xc2\xc8\x72\x10\xc4\xdc\x33\xd4\xb2\x24\x3c\x34\x2a\x8b\x66\xe3\x38\x3d\xc2\x89\x09\xe9\xdf\x9a\xe0\x0f\x54\x68\x99\x77\x95\xe0\x4b\xdb\x46\xc9\xd2\xa3\x34\xb4\x4e\xff\x70\x51\x18\xe2\x2e\x60\x02\x90\x2c\xfe\x0d\x8c\x14\x8a\x37\xb0\x2c\x30\xc8\xfb\xa8\xc0\x83\x13\xf8\x63\x2c\x6a\xa1\x75\x2b\xa7\x1f\xb1\xf7\x06\x66\x59\x94\x5c\x68\x14\x60\x6a\x37\x50\x45\xc2\xf7\x1e\xa7\x10\x15\x6b\xaa\x8a\xe3\x22\xd1\x81\x28\x59\x71\x69\x05\x57\xf5\xa2\x21\x96\x0a\xd8\xf6\x8f\xd1\x21\x64\xfb\x83\x38\x5d\xe5\xd3\x5b\xa4\xb4\xe8\x8d\x44\x19\xab\x86\x58\xb2\x33\xec\x53\xd3\x30\x8f\x0d\x8c\x1b\x5f\x2b\x00\x55\x16\xe5\x36\x99\x9a\x80\x9e\x97\xbf\x02\x5b\xcd\xe7\x0a\x72\x2b\x9b\x35\x2c\xe4\xcf\x35\x97\xd2\x18\x68\x5d\x04\x0c\xd0\x90\xe3\x6b\x47\x05\xde\xb3\x71\x2c\xa9\x27\x3c\x32\xd7\x3b\x10\xf6\xff\x08\x2f\x83\x40\xea\xaa\x3a\x50\x4b\x8f\x27\x8b\xda\xc3\xc2\x42\x96\x0d\xf1\xe0\x5d\xf5\x2a\xe7\x47\x13\x74\x6b\xde\x2c\xdc\x0a\x7c\x2e\x73\x53\x75\x67\x0c\x13\xfb\xea\x80\xf2\x6d\x10\x3c\xc0\x0e\x3f\x46\xfb\x50\x90\x6f\x3e\xa3\x82\x08\x11\xc8\xf4\x3f\x26\x04\x17\x5c\x98\x5b\x54\x22\x13\xd8\x5c\x4d\x57\x42\xd8\x33\x59\x1f\x47\xb4\xe0\xda\x1b\xaa\x9f\x7e\xfb\x34\x4b\xf2\xa8\x6b\x42\xdb\x21\x4c\xb3\xa2\x1d\x14\x88\xc9\x16\x16\xa8\xf4\xbf\x7a\x1c\xaf\x89\xb2\x87\x7c\x69\x95\xe9\x50\x11\x47\xff\xa5\xce\x45\x9e\x87\x0d\x95\x91\xf3\x8e\xf3\x55\x5a\xed\x22\x02\xa5\x9a\x37\x76\xb7\x9c\xf0\x4c\x3b\x1f\x66\xc0\x16\x49\xf4\xe6\xa1\x93\x57\x31\x9b\x42\x05\x52\xcb\x60\x34\x30\x99\x94\xde\xa5\x07\x82\x7e\x48\xba\x23\x9c\x26\x50\xcf\x12\x11\xd1\xb4\xa6\xd2\x65\xd6\x7a\x9d\x9a\xa7\xb4\xde\xea\xcf\x29\xb5\xa0\xbf\xa6\x5a\x79\x87\x03\x2e\x54\xe1\x05\x19\x70\x89\x06\xa3\xbf\xd9\xf2\xfb\x68\xef\xd8\x97\x80\x1e\x01\x89\x15\x17\x55\x7a\xa6\x1d\xc5\x51\xa1\xd8\xd1\x35\x97\xae\x70\x0c\x69\x6a\xd3\xc2\x68\xe0\xe5\xbf\x67\x83\x2c\x9e\x92\x0c\x64\x27\x7d\xcd\x26\xf9\x94\xcf\x62\x4f\x8f\x15\x33\xc6\x39\x5d\x07\x7c\xb8\x55\x85\x53\x1e\x2a\xd7\x48\x81\xc4\x55\x9d\x94\x5d\x15\x2e\xb1\x00\xc9\x61\x9b\x81\x92\x07\x5b\xe2\x9a\xd2\x7b\xb9\x36\x91\xc1\x35\x51\xf2\x85\x72\x71\x8b\x7a\x51\x79\x28\xa1\x7e\x73\x17\x7e\x10\x8c\xe2\xeb\xb0\x83\xc8\x22\x5e\xc5\x01\x09\x63\xfb\x32\x76\xf3\x44\xc3\x06\x53\xb8\x8c\xb4\x68\x02\x6c\x27\x7f\xdb\xc8\xcb\x4f\x30\xe9\x33\xd2\x88\x1f\x50\x56\x01\x2b\x6e\x53\x75\x94\xdd\x27\x1b\x80\x13\xf5\x21\x6e\xde\x10\x2e\x89\xc9\x42\x4b\xb9\xe2\x71\x72\xff\x85\x52\x56\xbd\x4e\x1b\x9e\x29\x53\x68\xc3\x4b\x8b\x1c\x32\x26\x4a\xb2\xe0\x39\x49\x53\x63\xfb\x61\xe6\xcf\x06\x4f\x3b\x13\xba\x92\xc6\xc3\xa4\x30\x59\x94\xf7\xa9\x33\x1b\x7b\x82\xc9\x85\xf9\xa6\x36\xe4\x19\x66\x61\xcf\x70\x53\x19\xb3\x94\x2a\xf1\xd2\x8b\xf0\xab\x38\x7c\x8c\xfa\x51\x42\xce\x2b\xcd\xbc\x08\x2c\x79\x05\xf6\x3f\x55\x07\x63\x98\x99\x04\xf2\xa8\x8e\xee\x74\xee\xb0\xcf\x2b\xba\xf8\xfb\x98\x92\x81\x3a\x56\xb1\x62\xd4\x70\xfe\x0a\xe8\x64\xe5\x5c\x83\x85\x15\x9e\x7c\x9f\x7f\x19\xd8\xac\x1f\x01\x19\x22\xb5\x3a\x64\x15\xf9\xba\x62\xf0\xbe\xda\x34\x1d\x8a\xe2\x3c\xeb\x13\x36\x24\x16\x26\x5f\x2b\xc7\x65\xce\xe0\x98\xc1\xb2\x38\xa3\x09\xb1\xcf\xd4\x06\x2f\x7d\xb3\x64\x5e\x8b\x12\xee\x2b\x77\x9d\xdd\x2e\x90\x3d\x59\xd7\x61\x4f\x45\x15\xc3\x15\x15\xe9\x59\xa3\x2f\xe0\x9b\x1a\xe2\xc9\x43\xc4\xef\x1a\x16\x4a\x0c\xf2\x86\x12\x83\xbc\xa1\x92\x12\x7d\xf3\x6a\xd4\x8f\x5e\xb3\xd3\xaa\xf5\x1c\xfe\xa4\x28\xe2\x35\x16\x16\xb6\x10\xf6\x12\xfd\xda\x84\x5f\xfa\xf5\xb9\xe6\x8b\x8b\xb3\x14\xf3\xc0\xb8\x03\x50\xc3\x16\x4e\xe9\x35\x9e\xae\x60\x2a\x0f\x2c\x34\xc3\xb4\x28\x52\x3e\xe9\xb5\x1d\x75\x89\x4d\xdf\xb8\x72\xc3\xcb\x08\x45\x9d\x23\xd4\x9d\xe7\x11\xcf\x3b\xc8\x65\x82\x67\x79\x3f\x50\x38\xa3\x3a\x5d\xff\xd8\x76\x8b\x86\x96\xfa\xa2\x34\x80\xef\x59\x91\xf4\x44\x1c\x0d\xa2\x24\xc5\x54\xc1\x7f\xbb\xad\xf8\xec\x6f\x7b\xed\x95\x65\x7b\x44\xdc\x27\x9c\xbe\x0f\x68\x45\xf2\x75\xa0\x9b\x0a\x86\x59\x91\x4f\x79\xb9\x08\x30\x21\x63\x4e\x60\x49\x44\xb9\x42\x89\xf6\x64\x4b\x68\xf3\x43\xdc\x89\x74\x8a\x68\x58\xd2\xc3\x09\x14\xd8\xff\x50\xdf\x26\x26\x64\xcd\x69\x38\xf2\x1b\x23\x85\x66\xdb\x70\xcf\x1e\x97\xae\x1f\xef\x26\x1c\xe8\x6f\x05\x1e\xed\xfc\x56\x2d\xbd\x48\x3f\xcd\x63\xdb\x97\xda\x25\x03\x79\x03\xc5\x9e\xe7\xa9\xb6\x96\x32\x6b\x13\x9b\x41\xd6\x18\xfb\xe7\x96\x0a\x00\xb9\x8d\x4a\x84\x17\xfc\xc6\x8a\xed\xab\x7b\xca\x51\x82\xcf\x76\x87\xfc\x7a\xe4\x2a\x3f\x19\xa9\xb6\x1c\x46\x74\xc0\x12\xef\x45\xd3\x1a\xde\xf0\x0e\x1f\x74\x92\xd4\xf2\x0e\xe0\x3d\xcd\xd1\x01\x62\x33\xb8\x08\x4f\x57\x34\x33\x0f\x50\x9f\xc0\xb2\xed\x30\xff\x0a\x5e\xe0\x63\x65\x0c\x3e\xae\xe9\x58\x3f\xd4\x5c\x8a\x56\xb4\x9c\xe1\x1f\x8e\x54\xbc\xfc\x87\x81\x66\x49\x2e\x4c\x14\x97\xc3\x5f\x9e\x07\x38\x9b\xce\x28\x88\xe4\x99\x0a\x82\x81\x8e\xda\x28\xeb\x4f\x2b\x81\xae\x29\x34\xc6\x6a\xfc\x1e\x72\x94\xd7\x95\x02\xfa\x8e\xd6\x17\x27\xf7\xed\xe1\xe7\xc5\xbf\x9b\x60\x89\xa4\x42\x80\x56\x51\x90\x98\x72\xbb\x33\xff\xf2\xcb\xcd\xd7\xa2\x24\x9c\x88\xbf\xcb\x53\x59\xc2\x6f\x1f\xe6\x86\xd1\x52\x62\x68\xfc\x1c\x93\xa7\x2b\x74\x9e\x53\x25\xdd\xa5\x38\x2a\x0a\x9b\xad\xa2\xe7\xc6\xb1\x1d\x7a\x72\x26\x6c\x16\x84\x42\xeb\xea\x64\xe9\x96\x87\xd0\x43\x9e\xff\xe8\xa7\xf4\x77\xb2\x4b\x7d\x46\xf9\x01\x15\x27\x04\xea\x45\x23\x88\x9c\xe8\x77\x47\x9e\x21\x76\x27\xd5\x75\xb0\xbc\x06\x0a\x64\x94\xe7\x29\xb9\x47\xf8\x79\xb4\xa5\x49\x7c\xa4\xa2\x9e\x1b\x0e\xb9\xd0\x19\xc0\xf8\x22\xd9\xf4\xba\x06\x04\xbe\x1e\x3c\xe2\x4d\x42\xe7\xe1\x49\xa0\xb3\x83\xa7\x6e\xc2\x7f\xe1\x7f\x08\x14\x66\x10\xb2\x0d\x02\x6c\x53\x5d\x54\x67\xf0\x56\xf2\x57\xb4\xeb\x44\x04\xdb\xb3\xd4\x3c\x44\xaa\x13\xf2\xbd\xae\x55\x24\x8d\x4b\x53\x30\x43\xdf\x80\xf0\x7d\x6d\xa4\x18\x23\xcf\xa8\xa2\xec\x27\xf8\x6a\x38\xf0\x28\xf6\xa2\xf8\x35\xdd\xaa\x91\x11\x35\x49\x11\x85\xd1\xc0\xcb\x88\xf2\x7e\xa7\xe5\x29\x7b\xdf\x11\xcf\xda\x7c\x10\x15\x76\x1a\x1e\x8f\xe0\xe7\xca\x9f\x86\xd3\xbd\x15\x78\xaa\x15\x3e\x70\xa5\x03\x66\xfb\xf9\x32\x3f\xdf\x5c\xca\xa2\x9c\xab\x99\x88\xf1\x71\x92\x3b\xc6\x64\xa7\x96\x7f\x74\x82\x5b\xd8\x64\xc5\x13\x34\xf8\xf0\xbf\x50\x02\x45\x42\x05\x60\x3d\x9c\x55\x0f\x8f\x4b\x9f\xd4\xe1\x85\x7c\x8f\xcd\xba\x56\x76\x7d\x17\xee\x9e\xd2\xb6\x58\x70\x9a\x74\x5e\xd1\xee\xa8\x52\x47\x05\xb4\x07\xab\x60\xe7\xb8\x9c\x6b\xc4\x98\x3f\xc3\x7c\x70\x1f\x0f\x3c\x3f\x8c\xfb\x45\xad\x04\x77\x49\xa3\xd5\x2f\x21\x4f\x80\xc1\xbb\xaa\x58\x65\x6d\xd6\x36\xfd\x94\xbd\x0a\xbc\xdb\x0d\x7c\x25\xdf\x28\x4e\xf1\xbc\x30\x9d\x68\xd8\xcf\xb5\x30\xb2\x4e\xc2\x28\x72\xa3\xcc\x84\xb6\x97\x66\xb9\x65\x50\x1b\x96\x1c\xe2\x3a\xbe\xae\x13\x1d\xa2\x9e\x3f\xd6\x10\x65\xa0\x91\xee\x36\xf7\xd2\x61\x45\x2f\x5a\x02\xe7\xac\x00\xab\x7c\xb2\xbd\xca\xf6\x5a\x9e\x01\x94\xcc\xee\x66\x86\xb5\x26\x84\x78\x7b\x02\x11\xfb\x79\x65\xad\xb2\x70\xd8\x2f\xfd\xad\xd0\xe6\x04\x3d\xc2\xc6\x3e\x4e\xbe\xb9\xe4\xb8\x1a\x8e\x6f\xf1\x38\xd1\xfd\xf0\xff\x9f\x58\x44\x49\xb1\xba\x47\x75\x09\x5e\x56\xba\xed\x27\x31\x5d\x4e\x69\x46\x25\x22\x03\x5f\x96\xfb\x04\xd3\x01\x57\xfa\xda\x48\xb1\x0a\x9f\x45\x98\xe2\xba\xd6\x5d\x1d\xff\x64\xc5\xc9\x2a\x0f\xec\x5e\x3a\x10\xc6\x7a\xda\x05\x6f\x3e\xde\x52\x45\x37\x74\x81\x4b\x6c\xb1\xfd\xc4\x39\xfc\x7c\xb3\x97\xf6\x2d\x7a\x1b\x9c\x1e\xa1\xe7\xe2\xaa\x6b\xae\xeb\xa6\x99\x59\xe5\xb0\x1a\x7f\xf6\xb6\x96\x2d\x7c\xbb\x4e\xce\x9d\xb2\x2a\x69\x9c\xcf\xf8\x6e\x51\xa6\xd7\xc5\x69\x04\x12\x17\x61\x51\x2c\x1f\x80\xb3\x72\xb0\x92\xc0\x0e\xfd\x65\x0d\x5e\xf2\x60\xf3\x95\x61\x27\x0a\x23\x69\x54\xc6\x77\x43\x49\x80\xaf\xdd\xe2\xca\x86\xb1\xcd\x67\x74\x0d\x92\xa6\xc6\x69\x7e\x79\xb6\x1b\x21\x8c\x67\x77\x2d\x50\x99\xd1\x5b\x2a\xff\x5e\xa4\x59\x26\xa4\xff\xae\x4b\x71\x61\xc1\xc9\x34\x3f\xa9\x34\xde\x99\x17\x91\x8b\x9c\xa8\x33\xef\x68\x29\xd4\xe8\x23\x04\xfa\xc2\xa1\x73\x87\x96\x23\xb2\xff\xff\x18\xbf\x0e\x3b\x72\x55\xf5\x00\x6c\xaa\xde\x27\xe6\xef\xe4\x12\x01\x16\x13\x62\xde\x63\xaa\xe8\xc8\xe9\x0f\xe1\x47\xff\xfc\x64\xdb\x0a\x91\xe6\x11\x83\xdd\x0b\xb3\x3e\x5a\xf3\x91\x9b\x8a\x0d\x59\x0a\x2b\x32\x31\x2d\xbc\x39\x7e\x9f\xeb\x30\x8c\x30\xfa\xef\x68\xca\xda\x3b\x75\xd2\xde\xf9\x70\x30\x00\x21\xd1\x41\x9e\x61\x78\x72\x7c\x3d\x81\xab\xcf\x53\x6e\x3b\x86\xc3\xc3\x72\x48\x7c\x03\xab\x2b\x25\x69\x45\x1b\x5f\x27\x86\x10\x75\x2c\x13\x09\x02\xc5\x71\x52\xe3\x48\x4e\x06\xca\x12\x71\xfa\x5e\xe4\xf3\xe8\xcf\xf8\xc6\xc5\x11\xf9\xb2\x1d\x14\x51\x98\x73\xea\xc8\xc5\xf0\x7e\xca\x30\x86\x0a\xcc\x77\x90\xcb\x33\x37\x2b\x5e\xd7\xe2\x6c\xf3\x15\x13\x2e\x93\xcb\x06\x14\xd4\x05\x45\xee\x76\x2d\xf0\x7c\x56\xef\x55\x6c\x21\x71\xfb\x66\xb6\x13\x85\xbe\xad\xdb\x55\xc5\xdc\x9a\xf1\x54\x9a\x02\xca\x99\xf6\x40\x3e\xc0\x91\x00\x0d\xd8\xd2\xbe\xf7\x87\x23\x75\xca\x54\xa7\x72\x7e\xbe\x69\xda\x29\x61\x21\x9c\x23\xbf\x46\x66\x4b\xa8\xa9\x9d\x1c\x78\x86\xb6\xe9\x09\xc1\x22\xce\xcb\xf2\x4d\x25\xa2\x9b\x3b\xdc\x4c\x4c\x9f\x8e\x0e\x71\x55\x54\xb2\xe7\x8c\x3a\xf3\xe2\xa8\x6b\x8b\xa8\x6f\x51\xaa\x76\x8c\x1b\x8e\xb6\x18\x1e\x33\x3e\xf7\x81\x3a\xff\x3a\x51\x3e\x88\xcd\x6a\x3e\xad\xd4\x03\x80\x67\xe6\xeb\x91\xcf\x9c\xb1\x39\x17\xa0\x72\x85\x7e\x64\xae\xd9\x31\x85\x61\x00\x84\x04\x51\xc8\xc7\x71\xf7\x02\xdf\x38\xa0\x64\x37\xcd\xfa\xc3\xd8\xbb\x4f\xec\x82\x06\xde\x1b\xbe\x58\x89\xd3\x5e\x98\x9d\x6b\xe6\x36\xe9\x6c\x4b\x64\xfc\xa1\x3a\xb9\xfe\x70\xf4\xb0\x04\x03\x8b\xb3\x3f\x47\x7f\x04\xdf\x18\x11\x1a\xe6\x12\x80\x1e\xc7\x23\x71\xf0\x79\xe1\x51\xa5\xbc\xdb\xa1\xad\x3b\x10\x97\x71\x4a\x0b\x4e\x29\xeb\xc7\xd8\xdc\xec\x48\x13\x5c\x06\x4e\x1b\xa7\xe5\xa4\x4b\xb6\xe1\xb8\x5d\x76\x11\xac\x07\xe3\x76\x6f\xb4\xf3\x2b\x6c\xe0\x2f\x01\x8f\x84\x78\x00\xe0\x4b\x78\x36\xdf\xe7\xac\x18\x82\x9d\x9d\x48\xd0\x21\x79\xf8\x1d\xb8\x5c\x30\xd5\x4f\x8d\x7d\xf3\xe0\xc7\x9a\xa4\x4c\x3a\x11\xb1\x61\x8e\x06\x3e\x6a\x60\x1a\x25\x91\x17\x2e\xbd\x3c\xf8\xba\x3f\x43\x80\xc4\x90\x7b\x52\x52\x74\x99\xfd\x5f\xf9\x25\x0f\x78\x38\xfc\xfc\xa4\x1e\xb5\x4b\x23\x2d\x0a\xdb\xe7\x0c\x11\xb6\xb2\xbe\x4a\x30\x21\x81\x4b\xbe\x01\xfb\x75\x95\xa3\xf2\xf0\xf3\x84\xfb\xb1\xd9\x0a\x97\xff\xb5\xec\xb1\x3c\x70\xb5\x51\x8a\x95\x54\xdd\x72\xc0\x1b\xdc\x50\x1a\xdf\x37\x94\x4e\x70\xf9\xc7\x53\xda\x15\xf3\x1d\x1a\xb7\xb0\xd3\xe1\xc0\x9e\x74\x5c\xe0\x9d\x88\x4d\x26\x72\x19\x3b\x5a\x3e\xaf\xb1\x63\xec\x12\x25\xc3\x25\x3a\x85\xdd\x93\x9e\xa5\xc3\x8a\xaf\x6b\x15\xdc\x32\x93\x74\xd2\xbe\x9c\x01\x42\xbb\x5f\x4e\x28\x5f\x7b\x41\x53\xaa\x47\x4d\x0a\x6e\xd0\x00\x51\xaa\xe1\xa7\x4f\xd0\x78\x3b\x72\x38\xd7\x5a\x75\x56\x8b\x39\xe0\x74\x82\xff\x7b\x5e\x75\x43\x9a\xbe\xcd\xa2\xd0\xec\xf1\x98\x2c\x86\x8c\x4f\x74\x41\x38\xc5\x16\x2f\x22\xab\x1b\xc6\x34\x78\xff\x6d\x2c\x50\xc7\x71\xb2\x7f\xce\xe9\x33\x95\x5b\x48\xf8\x4e\xbc\xe5\x5a\x8a\xfa\xfd\x28\x5c\xce\x41\x57\x24\xf2\x42\x0d\xa7\xc8\x08\x56\x0c\xa1\xda\xa9\xb1\xbf\xed\x72\x24\xa5\xdc\x85\x33\x6a\x47\x4b\x65\xbe\x39\x95\x82\xbc\xcc\x8f\x2b\xdf\xf0\xf7\x48\x1c\x38\x12\x56\x14\xc7\xe6\xe4\xc8\x59\xd6\x55\x39\xab\x1d\x0d\x4c\x56\x44\xb9\x49\x66\x68\x06\x26\x46\x17\xb3\x7d\x72\xa4\xa2\x5e\xb4\x0b\xf0\x3f\x68\x42\xc0\x1d\xe3\xaa\x68\x53\xb3\x3b\x4c\x3a\xbb\x28\x19\xb9\xa1\x3b\x2c\x8e\xd3\x08\x00\xaa\xb5\xa7\xa5\x24\xb3\xce\xea\x8e\x42\xac\x89\xad\x8d\xd1\x84\x70\x02\x61\xd6\x05\x4f\x23\x08\x0d\x7a\x51\xbe\xa9\x40\x9f\xf6\xef\x6f\xd2\x3b\x22\xae\xa5\x25\xed\x04\xa8\x1d\x5c\xf6\xf4\xc8\x53\xda\xbe\x42\xcd\x5c\xd3\x0d\x45\x05\xae\x0c\x24\xbc\x5b\xb8\xa3\x6f\xa2\x0b\xf1\xfa\x48\x77\x94\xb7\x4d\x61\x49\xe9\xfd\x90\x17\x87\x9f\x9f\x77\x37\x75\xd2\x43\x2b\xb6\xb0\x19\x87\x54\x75\xfc\xf1\x8a\x9e\x23\x4e\x8f\xa0\xc0\x2e\x9d\x96\x8a\x3c\x10\x9b\x05\x8b\xe4\x3a\x19\x78\xbe\xae\xac\x11\x62\xe9\x2e\x0a\x91\xa1\x46\xe2\x61\xa7\xe2\xe2\xb9\xa7\xd4\xc2\x3e\x50\xd9\xca\x24\x85\x57\xf9\xe2\x41\x07\xc6\xf6\x95\xcf\x5a\xa9\x7c\x93\x2c\x49\xe9\xa8\xae\x92\xe9\xbf\xda\x44\x99\x80\x29\xb9\xaa\xa8\x48\x18\xae\x7a\xfc\x89\x50\xf2\x22\xb1\xe6\x14\xe1\xe7\xe7\x79\x11\xcd\xd0\x6b\xc0\xd6\xb3\xc8\x0c\x4e\xaa\x2a\x6b\xf3\x81\x05\xea\x93\xca\x39\x04\x7e\x69\xeb\x28\x52\xe7\x47\x1d\xbd\xda\x30\xe9\x94\x73\xe3\xfa\xb2\x71\x30\x42\x60\x15\x59\xc2\x19\xad\xe0\xf7\x46\x65\xa4\x0f\x2e\x1e\x2c\x2f\x32\x36\x8b\x98\xd1\x73\xd8\x39\x7c\x53\xa1\x12\x7a\xf9\x65\x7e\x2c\x49\x4e\xca\xf1\xea\xfb\x60\x2e\xb9\x27\xec\xd8\x38\x5a\x81\x74\xa6\xe2\x52\xf8\x3d\x15\x4f\xfc\x9e\x12\xa3\x4a\xa2\x70\xd9\xc6\x70\x4e\x50\x5a\xba\x80\x68\x83\x6f\x9c\xcb\x9c\xa7\xc3\x98\x2d\x08\x32\x07\x60\xed\xe5\xeb\xb1\x4f\xe9\x75\xd2\xa5\xbe\x21\x2f\xd7\xf5\x58\xcd\xcf\x73\x2d\xf8\xae\xda\xe8\xe7\xea\x30\xf1\xa5\x63\xde\xf0\x58\xab\x33\xf4\x59\xbe\xae\xcb\x3d\xd8\x57\x07\xa0\x0f\x70\xd1\xe1\x59\x15\x1d\x9e\x75\xd0\xf8\x04\x84\x3e\xde\x39\xfa\x20\xf0\x64\x30\x1f\xd4\x16\x98\x0b\x02\x58\xd2\x51\x2a\x04\xb2\xfe\xa5\x36\x95\x9c\xc0\xf5\x8a\xbb\xbe\x7f\x7f\xd3\x26\x61\x3a\xcc\xcc\x92\x9b\x06\x11\xd6\x6e\x28\xd5\xd7\x1a\x0b\xb9\x64\xfb\xdb\xed\xb4\x62\xbd\xdc\x0e\x8c\xfa\x6a\x33\xb7\x16\xd9\x01\x58\xdd\x0f\x46\x1e\xb8\x7d\x72\xa4\xa4\xa6\x37\xea\xa8\x17\xb2\x54\x78\x0b\x5d\x43\xf3\x82\x18\xf6\x6f\xab\x6a\x5c\x91\x45\x4b\x4b\x2c\x01\x84\x60\xf0\x1e\x8e\x4d\xbe\x51\xf6\x28\x4e\x43\x50\x50\x0b\xa0\xb9\xb4\x40\x82\x67\xae\x99\xf0\x8e\xe9\x0f\x14\x39\xdb\xa6\xaa\x30\x6c\x8e\xf6\xc8\xda\xb3\x94\xbf\x65\x01\x6e\x2a\x4f\x63\x4d\xb0\x88\x9b\xb0\xe3\xd4\x79\xd2\xe9\xb0\xc8\xa3\x8e\x9d\xf1\x5c\x4c\x30\x6b\xc2\x6a\x53\x5a\x45\xb4\xc1\x80\xac\x87\xf9\xe4\xe8\x8b\xb7\x8e\x29\x43\x1e\x47\xc9\x32\xcd\xa6\x6f\x3a\xde\x41\x10\x7b\xbe\x1e\x3f\xad\x8a\xfd\x83\x61\x3b\x8e\x42\x93\x30\x68\x00\x05\x2a\xf0\x55\x61\xc7\x5c\x53\x4c\xbe\x4c\x3d\x2e\x4f\x24\x6b\xb6\x1d\x75\x3a\x9c\xbc\x41\xf9\x08\x15\x50\xbe\x0e\xa4\x6f\xcb\x84\x61\x3a\x4c\x0a\xd3\x16\xe3\xad\x95\x04\x98\x46\x69\x82\x28\xcb\x7d\xd0\x17\x4c\xe9\x6c\xa3\x48\xe1\x6b\x5f\x6e\x79\x53\xb6\x77\xac\x38\xee\xc7\x70\x88\xe8\x0b\xbf\xf1\xf9\x71\x4d\xdb\x72\x3e\x48\x0b\x17\xe9\x20\x27\x76\x5c\xe3\xc6\x8e\x3b\x97\xb3\x0c\xe6\x1a\x3e\x75\xc5\x3c\xcf\x7c\xa3\xea\x9b\xb6\x33\x0c\x11\x3c\x95\xc7\x05\xcb\x05\x23\x93\x2a\xda\xc1\x3e\xcd\xdf\xb5\x0c\xfd\x03\x86\x80\x53\xa9\x82\xbd\xd7\xf1\x02\x78\xf1\xa5\x81\xd0\x47\xf0\x8f\x21\x65\xe3\xa2\x73\x87\x83\x3e\x5e\xbb\xb4\xbe\x31\x2c\x8d\x67\x46\x41\xb6\x08\xd2\xd3\xb3\x61\xff\x41\x53\x1a\x5f\x76\x02\x59\x43\x66\xb8\xf2\x44\x5e\x66\x29\xb1\xac\x62\xe1\x98\xd0\x7c\x46\x4f\xd5\x9b\x4a\x27\x3d\x5d\x1a\x42\x6b\xcf\xf5\x0b\x7a\x09\x95\x07\x08\x3d\xa4\x33\xfe\x61\xe7\x22\xfd\xed\x27\xfd\x9e\x7e\xa8\x55\x6e\x1d\x97\x1f\xf3\x54\xce\x6b\x41\xe3\x97\x0f\xf9\xcc\x93\x4b\x76\x5e\x21\xa7\x01\x2e\xeb\x6d\x44\x0f\x18\x29\x89\xbf\x30\xaf\xb7\x91\x91\x85\x57\x7e\x92\x5c\x62\x98\x4c\xae\x5c\xa2\x48\xc7\x15\x4f\xc9\x99\x93\xd5\x82\x3f\x75\x83\x8a\x22\x82\x25\x6b\x38\xe2\xc9\x3d\x63\x85\x04\xbf\x8b\x70\x95\x1b\xbb\x02\x0f\x0c\xbe\x5b\x27\x57\xd0\x37\x11\x82\x1a\xa9\x95\x34\x9c\xc0\xcf\x7a\x4d\xde\xf3\x50\xd3\xc4\x29\x73\x9f\x20\xbb\xf4\x17\x81\x67\x4e\xbe\xaa\x0a\x7b\x1b\x0a\x3c\x7d\x24\x2a\x12\xe8\x4c\x4d\x79\x5e\xf4\xe3\x4a\x30\x07\x5c\x60\x48\x9d\x56\xa1\x34\x2f\x1e\x6c\x0a\x76\xac\xa1\xf0\xaf\x6b\x70\xe1\xf8\x46\x61\xfe\x3b\x69\x3f\x4a\x0c\xc8\xe2\x0e\xba\x59\xf1\xc6\x13\x27\xb2\x68\x58\xeb\x04\x5b\x6c\x32\x5a\x06\x4e\x7b\xa7\x9c\x49\x37\xde\x73\x87\x39\xea\x3a\x89\x49\xc1\x6e\xdd\x39\x56\xfd\x9b\x57\x46\x9e\x15\x06\x92\x3e\xf8\x99\x3b\x74\xde\x80\x91\x6c\x27\xc3\x66\x00\x99\x3e\xa3\x8d\xdd\x24\x44\x95\x56\xaa\x63\xb7\x28\xd7\x30\x92\x82\x4c\xde\x21\x72\xdd\xe5\xd0\xe1\xc5\x40\x75\x0d\x9f\xf6\xa2\x56\x42\xd9\x84\xfd\xc7\x5f\xdd\x55\x1a\x7d\x83\x34\xcf\xa3\x76\xbc\x4a\xfd\xee\x08\x1f\xd0\x16\xcd\xd7\x0a\xc3\x6d\x5f\x1d\xa4\x59\x91\xef\x2e\xff\x15\x5b\xe3\x7e\xa0\x9c\x60\xce\xea\xe1\xa1\x8e\x8f\x3c\x40\xfc\x6d\x55\xc9\x03\x58\x02\x99\xe1\x2d\x45\xbf\xb7\x11\x28\xf2\x9e\xdf\x0c\x84\x80\xbe\x1d\x9b\x70\x79\x82\xa3\xd1\x71\xb2\x78\xee\x9c\xe0\x73\xfe\x6d\xb2\x34\xb7\xe1\x90\x00\xd9\x33\xbe\x9e\xf5\x10\xda\x33\x15\xad\xf2\x41\x0f\xf7\x2f\xdf\x00\x33\xfc\xad\x91\x67\xe7\xb9\x5d\x59\xfb\x2f\xcc\x3e\xd7\x0c\x33\xf3\x1a\x73\x54\xe2\x28\x05\xa4\x15\xae\x0e\x70\x79\x28\x4f\x9d\x52\x75\xfe\x4e\x64\x58\xd6\x4b\x68\xff\xe9\x0b\xb0\xf0\xa1\x6e\x8f\x43\x7a\x4d\x39\x71\xdc\x05\x0a\xab\xfa\x74\xcb\xe7\xd0\xdb\x36\xb1\xdd\xa8\x0c\xb3\x28\xba\xc6\x70\x23\x20\xc3\x2b\x31\xc7\x1d\xdf\x50\x90\xc1\x7f\x54\x79\xa5\x67\x9e\x69\x9a\x61\xd1\x4b\x33\x04\x85\x82\xaa\x2c\xbf\x4b\x10\x99\x75\x16\xa0\x9d\x59\x83\xf4\xac\x94\x7a\x55\xeb\x30\xd7\xd7\x70\xf8\x56\x91\xab\x87\x9f\x27\x69\x32\x4d\x02\x7d\x47\xf5\x0c\xdc\x19\x79\x74\xd7\x20\x2d\x20\xa1\x14\xaf\x4e\xf9\xba\xe1\x45\x25\x3b\x88\x36\x44\x91\x0d\x77\xfc\x1b\xb4\x4e\x9d\x40\x15\xe7\x11\x28\xc7\x27\x39\x85\xba\x02\x52\x56\x46\x9f\x9c\x3b\x00\x52\xe0\x78\xa0\x48\x81\x1f\x6e\x29\x6e\xf7\x7d\xe3\x9f\xab\xc9\xe3\xbc\x32\xcc\xa2\x9c\x52\xcf\x69\xc2\x99\x22\xac\x8c\xd3\x6a\x95\x9c\xae\x52\x8a\x3e\x7f\xa8\x49\xc0\xed\x4c\x79\xe7\x57\x94\x77\x7e\xa5\xd2\x17\x70\xf8\xf9\x66\x7a\x04\x25\x0a\x16\xe4\xa0\x5f\x10\x71\x8e\xed\x0f\xe7\xa8\x2d\x56\x6c\x52\x0c\xd1\xbd\xe3\xb0\x6c\x8c\x6a\x11\x4a\xdd\xed\xb6\x97\x5a\xd9\xc2\xd8\x44\x7f\x95\xbb\xfd\x88\x62\x7e\x9f\xf1\xf3\xc3\x6c\x39\xae\x35\xd8\x65\x96\x1e\x6d\xf9\x64\xc2\xfb\xd8\xfa\xcc\xf3\x5a\x7b\xe4\x10\x11\x2e\x8a\xf6\x8e\x94\x7f\x22\xb5\xe4\x1a\x2a\xff\x88\x1e\x0b\x7b\x73\x67\xcb\x77\xbd\x57\xd5\x8a\x88\x75\x36\x1c\x66\x3e\xfe\x03\x1e\x16\xe2\x85\x7c\xad\x40\xfa\x99\x85\x82\x99\xc6\xb1\x9c\xa0\x94\x2f\x5f\xbb\x24\xdd\xb0\x30\x3d\x93\x48\xd6\x1b\xab\x67\x4d\x2f\xa5\xb5\x5a\x2e\xd5\x25\x9b\xf5\x9d\x1f\x0c\x43\x78\x96\x0b\x70\xa8\x94\xb0\x48\x07\xb3\x8b\x04\x8a\x65\xf2\x5d\x25\x13\x15\x25\xdd\x78\x68\x93\xd0\x76\x1a\xe5\xd6\x97\x3c\x1f\xa5\x74\xf9\x26\xd8\x9e\xaf\x97\xf5\x31\xc8\xd2\x50\x96\x21\x1f\xe2\xba\xca\xb0\xa1\xda\x8b\x8b\x2c\xb2\x9d\x5d\x0d\xd7\x68\xbd\x1e\x4c\xe2\xdb\x9c\x21\x65\xdd\x4d\x39\xb1\x7d\x9f\xc0\x27\xe4\x32\xf1\xb5\xc6\xc5\xa7\xe1\x32\xc5\xfc\xcf\x6d\x11\xdb\xc1\xd6\x39\xc5\xe7\x11\x47\x36\x99\x52\x4a\xa1\xe7\x15\x75\xf2\x5d\xcd\x37\xee\xac\x41\x37\x33\x7d\x53\xa4\x5c\x18\x67\x60\x0d\xde\x4a\x50\x36\xb5\xdd\x9b\x51\x52\x6e\x96\x34\x8b\xa4\xe1\x8b\x1d\x57\xfa\x11\x71\x62\x3f\x8b\x43\xa6\x1d\xe5\xbd\x74\x80\xcf\xe1\x40\x38\x87\x9f\xe4\x1b\x07\x4d\x33\x99\xe9\x47\x9d\x29\x9f\x72\x00\x2c\x02\x68\x8f\x9b\xaa\xe8\x7d\x56\x1f\x28\x43\xfb\x30\x19\x59\x40\x8f\xef\x8f\x54\xe8\xc4\xd6\x1f\x01\xdc\xbf\xd2\xb2\x2e\x1f\x8d\x3c\xd1\xd4\x6f\x93\xeb\x85\xff\x8f\xc4\x24\x8e\xe4\xbd\xd0\xbd\x47\x18\xba\xe5\x21\x46\xbf\xfd\x65\xe0\xce\xb8\x5b\x7e\xbc\x27\x6a\x0e\x32\xdb\xfd\x2f\x9b\x73\x5f\x54\x2d\x98\x9b\xa3\xa9\x43\xff\xf0\xeb\x9c\xfb\xba\x30\x6a\xfc\xca\x2f\xf1\x76\x17\xa1\x1b\x38\x26\xf7\x47\x5e\x13\xe6\x83\xd1\xce\xaf\xb8\x3e\x2d\x9f\xb4\xba\x07\xf0\xb2\x02\x9a\xcc\xb9\xbd\x43\xef\x87\x84\xf0\xb3\xe4\xa6\xb3\x6c\x1a\x0e\x21\x21\x16\xf1\x3c\x2d\xbb\x81\xf2\xc6\xc8\xef\x20\x58\x90\x23\xdd\xf7\xdb\xfe\x77\x60\x85\x90\xa0\x7e\x7f\xe4\xca\x5e\x6f\x3e\x49\x8a\x0e\x8e\xc9\xb3\x1c\x4f\xd1\xaf\xf2\xc9\xf6\xb3\x24\xf1\xc3\xd2\x36\x8a\x07\xf3\xea\x48\x51\x4d\xfd\x57\xcd\xd6\x13\xba\xc1\xa2\xeb\x34\x7d\xe1\x48\xdf\xa1\x87\xe6\xeb\xe0\x51\xe7\xcd\xe6\x06\xfd\x27\x52\x92\x53\x79\xf8\xda\x0e\x08\xe2\xe8\xc3\x26\x71\x53\xe1\x52\xcf\x77\x03\x25\x61\x55\x31\x8a\xfb\xf7\x37\x13\x7b\x24\x1f\x64\x11\xd3\xbd\x60\x38\xd1\x4f\xca\xd7\x2e\x26\x7b\xc5\x66\x69\x1f\x09\x07\x64\x4b\x79\x8d\xb3\x28\x5f\xa0\xc5\x7d\x6b\xd2\xa8\x3d\x33\x18\xd8\x84\x4e\x76\x7c\xfc\x8e\xca\x2a\x5f\x56\xf2\xe8\x3a\xce\xcd\x6d\x98\xd9\x22\x86\x76\x9e\x0b\xf6\x5f\x98\x65\x73\xc0\x94\xd5\xf0\x77\xee\x3b\x55\xae\x01\x67\x88\x1d\x31\xcc\x82\xd3\xe3\xbc\xec\xf2\x76\x6d\xdb\x4e\x91\x61\x71\xbd\xd7\x8a\xe6\x5d\xf7\xc6\xd8\x84\x3a\x75\xf9\x88\x17\x01\x4c\x5a\xa4\x92\xf6\xae\xb0\x67\x52\xca\xce\x14\x53\x3e\xe7\xfb\xa9\x92\x6c\xff\x71\xe0\xeb\xc4\x67\xd4\xa1\x93\x94\x81\x8c\xb5\x90\x28\x57\xd8\xd0\x83\x0e\x3d\xe3\xca\x4e\x36\x5b\x61\x06\x5a\x04\x6f\xf7\xb1\x6b\xb0\x9f\x1e\x6f\x29\x94\xec\xce\xb1\xee\x3a\x58\x4a\x8b\x3d\x54\xf2\xe4\xf6\x39\xd5\x31\xfe\x26\xad\x64\x54\xc5\x2f\xa3\xce\x84\x08\xf3\x24\x07\xb5\x58\x5e\x60\x91\x41\x3a\xe8\x16\x2c\x0e\xc0\xba\x4c\x5e\x09\x14\xf0\x3d\x5a\x0f\x38\xaf\x36\x15\xf2\x37\x4e\x0d\x36\x81\xaa\x25\x1e\x74\x5c\x8f\x75\xd4\x42\x99\xcd\xcb\x58\xd0\xb4\x59\xaa\x99\xb3\xa4\x13\x19\xd3\x3a\xda\x01\xd3\xb1\x49\x1a\x0a\x59\x81\xee\x94\x96\x0e\x6a\x27\x71\x40\x4d\x05\x29\xfd\x9d\x6b\x12\xf7\xc1\xcd\xf9\x3a\x18\x47\x3f\x8a\x05\x42\x2b\x52\x52\x8d\x05\x2f\x31\x25\xf3\x54\x64\x36\xe9\xac\x62\x77\xc2\x46\x5c\x50\x2a\x06\xa8\x4a\x23\x1a\x39\x5d\x9b\x6c\x1d\xa4\x71\x14\x32\x0b\x34\x2c\x22\x38\xa2\xf8\xda\x95\x21\xbb\xa6\xe8\xd9\x6c\x57\xf9\x38\x1a\x4f\x84\xc7\x99\x69\x95\xe6\x4a\x0a\x00\x64\xc1\x59\xd3\x84\x9e\x05\x66\xf7\xec\xe4\x21\xa9\xa3\xe4\x8e\x89\x1f\x52\x2c\xef\x90\x0d\x74\x04\x98\x9e\x9c\x84\x79\xb1\xf9\x86\xf6\x29\xce\x99\x0b\x23\xdf\x44\x82\x04\x1f\xfc\x80\xb5\x8a\x73\x5c\x46\x5d\xdd\xcc\xe4\x82\xdf\x56\x48\x6c\x07\xcb\x56\x31\xea\xc0\x90\x60\x03\x65\x9a\x70\xc2\x6c\xe9\x5e\xcd\x2d\x18\x70\x16\x1b\xa1\x1f\x16\xe1\x11\xc9\xb8\x99\xa4\x83\xde\x76\x47\x8c\xe3\xf9\xae\x2f\xa9\x3c\x93\x09\x21\xed\xfc\x90\x0f\x74\x8f\x2b\x92\xb4\xff\x03\xeb\x98\xff\x41\x57\x42\xd7\x95\x26\xf7\xaf\x05\xbe\x12\xca\x7e\xb8\x14\xbb\xea\xfc\xe0\xa8\xef\x90\x42\xf0\x16\x2e\x29\x42\xd7\x4b\x2a\x74\x22\xe1\xf5\xfe\x20\x16\xf5\x77\x16\xfe\x0f\x7c\x69\xea\x4c\x45\x68\x63\x7e\xbe\x39\xb0\x45\x96\x4a\x1b\x18\x0d\x02\x02\xa6\x0d\x05\xb8\xde\x50\xda\xb2\xfd\x74\x45\xe0\x41\xf0\x88\x40\xa2\xc4\xd7\x95\x57\xf8\x2a\x11\x7b\x47\x78\x85\x97\xf8\xa4\x03\x40\x95\xaf\x2b\x99\x9f\xc5\xd9\xe6\x91\x2c\x02\x0a\x89\x4e\x6b\x64\xf4\xde\xa4\xa9\xe3\xeb\xda\x68\xae\xb0\x71\xcc\xf8\x1a\xae\x90\x62\xc9\x48\xb9\xd4\x2f\x99\xc2\xbc\x5a\x9a\x92\x19\x9a\x22\x39\x71\xc8\x5c\x22\x09\x79\x54\x51\xee\x1f\x25\x8b\x88\xac\xe5\x45\xca\x07\x49\x83\x94\x2f\x14\xc5\xd1\x0a\x25\x8a\x17\x45\x94\xfb\xa4\xa2\x99\x63\x04\xad\x70\xca\xc0\x8c\xf2\x9d\xe2\xbe\x69\x47\xc5\x8c\x6f\xb5\x04\x26\x8e\x65\xa2\x47\x8a\x84\x68\x0d\x6e\xbd\x54\x0d\x7c\x9a\xe5\x3f\x56\x6c\xc7\xd7\xe7\x9a\x65\x30\x5d\x70\xa1\xc6\xd1\xf0\xb8\x6c\x13\x24\x2c\x84\x75\x58\x76\x43\x9a\xbe\xc6\xc6\x86\xd5\xdb\x54\xe2\xe5\xbc\x3b\x3a\x29\x3c\xdc\xdd\x70\x3a\xda\x7b\x5a\xf4\x5c\xf2\x11\xd5\x9b\x74\x5e\x91\xdf\x30\xd6\x10\x39\xcf\xcb\xa3\x8a\x9a\x92\x70\xe7\x78\xd1\xba\x4b\x75\x0d\xf2\x71\x7a\x04\x2a\xfa\x42\x3d\x4e\xdf\x2a\x12\x96\xe5\xc8\x09\xd0\xbb\xe1\x54\x82\x6f\x28\x5a\x84\xeb\xc1\xd3\x82\x8c\x4c\xe3\xd8\x66\xa4\x09\xcd\x35\x1c\x66\x35\x9a\x60\x38\x72\xae\x7b\xb2\x64\xe3\x94\x8e\x2e\xd5\xea\xe8\xfa\x1e\xdd\xb7\xf6\xa3\x24\x4a\xc2\xb4\x3f\x18\x16\x52\xce\xc5\x8b\xdd\x57\x4c\xa7\xf7\x47\x5f\x70\x31\x4e\x94\xb1\x1c\x4a\x54\x44\x96\x79\x05\x24\x11\xa0\x13\x04\x35\x45\xa2\x95\xc8\x1e\x99\xf2\x68\xbd\x7b\xf4\x9a\x13\x68\x3c\x69\x41\xdd\x7e\xb0\x52\xcc\x43\xd9\xb6\xa1\x7b\x7b\x29\x1d\xf9\xf4\xcc\xed\x89\x86\xc5\x61\x5e\x3c\x55\x8e\x2f\xd6\xdf\xe3\x63\xa5\xe6\xbd\x41\xa7\x3d\xdc\x80\xa9\x96\xd6\xba\x98\x86\x8b\x86\xf9\xd9\x4d\xc0\xef\x09\x30\x02\xf3\xac\x63\x07\xc2\x38\xbf\xa9\xc1\xe5\x0f\x90\xdd\x66\x06\x5e\xa5\xfa\xf1\xbf\xd3\x7e\x44\xba\xf3\xec\x36\x4c\xca\xa2\xd0\xf4\x36\xa8\x10\x85\xe8\x81\x8b\x36\x8c\xf2\x01\xee\x0b\x19\x68\xac\x72\x44\xcb\xf7\x75\x73\xfa\xbf\xf1\x81\xdb\x60\x10\x5b\x96\xe6\xc0\x72\xde\x52\x02\xec\xac\x6c\x8e\x6f\xbb\xa2\x91\xe3\x69\xd1\xcb\x89\x21\x87\xba\x04\xe1\x73\xf1\xc2\x41\xb7\xce\x3b\xaa\x6a\x07\xb9\x66\xa1\x59\xf4\x6c\xb4\x52\x33\xb5\x33\x1e\xb6\x78\x8d\xf6\x8c\xd3\x3e\x5f\x9c\x9d\x48\x95\xca\xb1\x4b\xcb\x0f\xce\xd5\x69\xa5\x47\x5b\x0c\xb3\x04\x1a\xc0\x6c\x20\xdf\x55\x88\xf3\xd3\x81\xef\xc8\x9f\xa6\x09\x73\x30\x6e\xa7\xf3\x09\xde\x0f\xfe\x7b\x25\x73\xb3\x94\xa5\x47\x8a\xde\x1e\x45\xc0\xfc\x2e\x66\x16\x39\xa1\xdb\x23\x45\x95\x47\x35\xec\x2d\x6a\xf6\x7c\x69\x0b\x0b\xc8\xf1\x86\xba\xc0\xfe\x3b\x23\xc5\x35\xf3\x1d\xbc\x0f\x16\xfb\xef\x8e\x9e\xda\xb6\xa6\x7f\xf1\xc5\xe6\x33\x8d\xc6\x33\xcf\x48\x4f\x3d\xa6\x58\x1a\xec\xa5\xba\x37\xb0\x59\xd8\x8b\xd3\xcc\x14\x76\x9a\x96\x16\x56\xed\x71\xe5\x0a\x7d\x3a\x52\x08\xe5\xd3\x4a\x75\xe3\x6e\x4d\xf3\xd2\xc1\xe6\x52\xda\xe1\x9c\x81\xc3\xe1\x97\xf3\x2b\x38\xfc\xed\xa6\x79\xff\xfe\xd2\xc3\x49\x42\xc1\x50\x4b\xc1\x0e\xbb\x46\x6a\x79\x7e\x4c\x7b\xe9\x30\xb7\xf9\x6e\x1a\x46\x14\x17\xc6\xf4\xac\x42\x28\xe4\x23\xdc\x4f\xb1\x0d\x50\x48\xda\x52\xa3\x78\x85\xe0\x7e\x22\xd2\x45\x83\xe8\xa8\x18\x16\x67\xdd\xcd\xe8\x73\x1a\x40\x14\x46\x71\x64\x8a\x34\x5b\x45\x53\x36\x2a\x68\x57\x74\x39\xed\x8a\x8a\xd4\x96\xe2\xc8\x76\xfa\x26\x51\xfd\x08\x97\x94\x40\xe0\xa5\xfa\x44\xa3\x19\x76\xa8\x9b\xd5\xf5\x8c\x77\xe0\xa5\x49\xec\x59\xd3\x5e\x19\x95\xd1\x58\xa1\x42\xb1\xfb\x8a\x27\xe4\x7e\x1d\xb0\x26\x8b\xf2\xe5\xd5\x86\x62\xd9\x87\xdb\x2b\x34\x13\x4f\x28\xfd\x8c\x41\x96\x9a\xb0\xb7\x4b\xe9\x81\x32\x83\xac\xf4\x0e\xfa\xaa\xfd\x31\x9d\x5f\xa1\x47\xc0\x59\x7c\x5d\x21\x19\x6e\x6e\x97\xd5\x2a\xe3\x92\x85\x85\x43\x4f\xa8\x98\xee\x3a\xd2\x12\x4e\xb1\xce\x23\xc5\xfe\x22\x50\x95\xc8\xbf\x40\x41\x08\x26\xee\xdb\x0a\xf2\xfa\x00\xb5\x29\x17\x84\x38\x47\xfb\x06\x5c\x52\x21\x13\x2b\x37\xb5\x3b\x25\x17\x05\xa2\xf0\x7d\xcc\x27\xcc\xeb\x29\xc5\xc2\xf5\x46\xe0\xf3\xd9\x2c\x53\xe9\x3c\x7e\xcf\xa2\x89\x22\x99\xa4\x54\xb6\xaf\xf4\xc3\xcf\x37\x8f\x58\x0a\x4c\xb4\x8a\x04\xb1\x93\x88\xa2\x84\x0e\x33\x86\x26\x99\x56\x5e\xf4\x69\x0c\x0c\x22\x1d\x44\x4d\x7c\xad\xfa\xdf\x4e\x57\x90\xd3\x2f\x1e\x6c\xe6\xb6\x00\x40\x1f\xeb\xfa\x41\xa0\x2a\x40\xcc\xc5\x0f\xe7\xe1\x13\x17\x02\x42\x8f\x05\xd9\x0d\xac\xd8\x3b\xc1\x84\x70\x8d\xeb\x3a\x3c\x53\xb7\xa1\xf3\x7e\xba\x2c\xae\xb1\x44\x9a\xf4\xf4\x12\x6a\x3a\x80\xbd\x4d\x0a\xb4\xfa\xb0\x57\x49\x33\x29\x1e\x66\x0d\x81\x26\xb5\x0b\x44\x08\x87\x54\xd3\xa0\xe3\x4c\x3a\xa7\x64\x4d\x73\x6b\xfb\x54\xae\x93\xa3\xb3\x1c\x75\xa4\x06\x01\x18\xc2\xef\xfc\x34\xf0\x38\x8f\xdb\x58\x56\xf2\x47\xb4\x18\xf8\x26\x50\x64\xfb\xeb\xc1\x04\x39\xb4\x07\x35\xc5\x71\xba\xda\xc1\xb3\xd5\x33\x33\x8b\x53\xf4\x57\x46\xcb\xfb\xf4\x2b\x74\xf2\x29\x5f\x68\xe7\x64\xa0\x6b\x5a\x28\x1f\x09\x5b\x7d\x73\x42\x9d\xc6\xc4\x36\xcb\x1f\xa6\xc7\x07\x7e\xf5\x9e\xca\x0f\x70\xb5\x1d\x07\xfc\x0f\xf0\xc6\x8e\x28\xc1\x13\xee\x7d\xaa\xe2\xa5\x37\x68\xbf\xa8\x76\xb3\x97\xb8\x48\x74\x77\xa4\x14\x3a\x41\x90\x22\x94\xdf\xdb\x1d\xb4\x72\xf9\x53\xb5\xfd\x05\xc7\x11\x1e\xf8\x4e\x8f\x73\x15\xe3\xf6\x22\x89\xbe\x98\x8c\xcf\x85\x89\xa2\x14\xdf\xd4\xd1\xd6\x90\xae\x3b\x64\x2c\x7c\xdf\x0a\x27\xf2\xf9\xc6\xb5\x22\xa4\x2b\x36\x3b\xd2\xb3\x71\x7f\x7a\xa2\x15\xc1\xab\xa2\xff\x19\x26\x5a\xda\x12\xca\xd7\xe3\x7f\x50\xd0\xe1\x81\x09\xa3\x6e\x14\x12\x38\x06\x6d\x87\x1b\x5a\x11\x7a\x1f\x3b\x80\x0e\xfd\xeb\x56\xde\x8e\xf1\x3e\xe5\x2a\x98\xd0\x4e\x4f\x00\x74\x69\xc7\x30\x83\x8a\x82\xa1\xbd\xa1\x84\x82\x2f\xd5\x44\x99\xf9\xb0\xfd\x8a\x0d\x0b\x12\xd7\x13\x2d\x97\x86\x97\x6f\xc4\xe4\x4f\xb4\xc8\x3a\x45\x16\xd7\x6d\xf0\x64\x8b\x31\xb4\x9e\x8a\xb2\x13\xe5\xcc\x89\xc3\x81\xa5\x80\x95\x14\xa9\xee\x49\x95\xa6\xff\x3b\x6d\xdd\xd2\xbe\xbb\xe5\x91\x59\x3b\xc6\x13\x7a\x61\x35\x8a\x50\xe1\x90\xba\x21\xa2\x15\x58\x20\xa1\xc8\xa0\x8f\xb9\xc6\xce\xf9\x79\x0e\x81\x37\xeb\x10\x13\x4c\x5a\xc8\x80\x5f\x97\xec\x51\xd0\x4f\xe7\xcc\x2e\x47\x9d\xc4\xae\x92\x4c\x98\x83\x13\x3a\x44\xc8\x7d\xd5\x2f\x72\x41\x4b\xb5\xbf\xb3\xad\x79\x24\xcd\x39\x69\x20\xa8\x34\x85\x50\x53\x2d\xd0\xf6\x55\x9b\x85\x11\x43\x11\xe1\xf3\x42\xd5\x8e\xaf\x15\x46\xae\x88\xfa\xf6\x71\x9a\x2d\x46\x0f\x60\x00\xa4\x13\xcb\x2f\xc6\x6b\xaa\x6f\xf7\x8f\xe8\x08\x62\x09\x64\x00\x88\xa5\xb6\xa9\x68\xb4\xfe\x14\xeb\x1a\xe1\xfb\x8e\xb1\x22\x2b\x79\x83\x56\x3f\x57\x53\xd4\xc9\x32\x33\x56\x84\xcb\x97\xb4\x26\xc0\x9f\x60\xa1\xa2\x9c\x72\x49\xa5\x0b\xa6\x48\x13\x0f\x7b\x67\xda\x11\xfa\xe4\x85\xa3\x52\xd8\xa2\x9c\xff\xd6\x1d\x65\xb3\x3b\x99\x3d\xf2\x90\x2f\x04\x40\xda\x0b\x27\xd0\x4d\xad\x21\xa3\x79\xc0\xd0\x93\x82\x23\xec\xbb\x13\x69\x6b\x3a\xd9\x31\x2e\x57\x83\xcf\x29\x49\xed\xa2\xdc\xb0\x91\x23\x72\x74\x7d\xc7\x0e\xf7\xb9\xa5\x89\xc2\x4c\x3f\x1d\xe6\xbb\xe8\x8b\x99\xdd\x88\x8e\x12\xec\x21\xc9\x06\x8b\x94\x8f\xcf\xaa\x7d\x7b\xa4\xb0\x00\xa7\x47\xaa\xbd\xe1\xa4\xab\xcf\x45\x49\x3e\x8c\x21\xc3\xe4\xf0\x5c\xf7\x31\xa0\x38\x0d\x1e\x1a\xfb\x20\xe7\xc9\xd6\x53\xee\x00\xc9\x4b\xc7\x2f\x1b\x64\xb6\xa0\x1a\x82\xc8\xd4\x2a\x72\xc6\xef\x2b\xc4\xda\x27\x0a\xa0\xd8\xb6\x49\xe9\x85\x68\x34\xd9\xd9\x91\x22\x1f\x3d\xab\x9a\x1b\x3b\x59\xb4\x62\x19\x1f\xe1\x48\xf5\x1d\xa2\x75\x2d\x10\xf0\x7b\x9c\x1e\x21\x28\x31\xba\xae\x98\xe2\x9b\x86\x02\xd9\xcf\x0f\x35\x97\xda\xfa\x76\x37\x70\x71\x96\xd4\x55\xa7\xfc\xd2\x41\x31\x44\x9d\x79\xfe\x0c\x75\x05\x8b\x28\x2b\x7a\xf4\x11\x04\x53\x57\x47\x5e\xa6\x05\x0f\x89\x99\xdc\xd1\xf2\x36\xa9\xe8\xe5\xbb\x1d\x84\xf1\x7f\xf8\x1b\x63\xda\x1e\xe2\xd3\xd0\xfc\x68\x89\x66\xec\xc8\x87\xd1\x42\x41\xe1\xc5\xf5\xff\x1c\x30\x08\x7c\x73\x83\x4a\x60\xf8\xf8\xfb\x6a\x3b\xde\xf0\x8d\x81\x85\xe9\x0f\x6c\x47\x5b\x31\xe4\x2c\x75\x90\x85\xdc\xef\x3b\x2a\x4c\x4e\xa2\xd0\x64\x66\x69\xc8\xe1\x03\x8b\xf2\x28\xa0\xe6\x35\x05\x67\xcc\x12\x88\x02\x8b\x8e\x60\xc3\xf1\x52\x81\x38\x0c\xb1\xc3\xa6\x0a\x77\xed\xab\x51\x6c\xb5\x0d\x87\x9b\x2c\x7b\xe6\x49\x55\xa5\x63\xd2\xcf\xc7\x7d\xa2\x6c\x83\x36\xb8\x26\xab\x44\x9d\xb1\x81\xda\x29\x6c\xcd\x87\xf0\x9c\x50\xd9\x3c\xa6\x39\x05\xd1\x3a\x03\xdf\xf3\x63\x8d\x20\xdf\x49\x49\x79\xc4\x12\xe7\x34\x22\x99\x09\x2c\x01\x05\x3a\x4f\x3b\x5a\x7a\x43\x7d\xd5\xe8\x13\x82\x22\xf0\x07\x02\x05\xe7\xe1\x32\x16\x6c\xc0\xce\xd6\x53\x8a\x92\x33\x05\xc7\x16\x58\x92\x5d\xb7\xbe\xa3\x26\x45\xf3\x9f\xfc\x7f\x7a\x20\xf9\x87\x1a\x85\xca\xb4\xdb\xb5\x09\x70\xf7\x2e\x25\xf3\x5e\xe0\xfd\xd2\xf7\xdc\xba\xcd\x7b\x66\xd9\xce\x28\x79\x02\x56\x80\x76\x34\x26\x4e\x54\xe9\xf6\x64\x03\x7b\x79\x3e\xf1\x27\x26\xf2\x50\x36\xb1\x0f\xd1\xb6\x73\x02\x6c\xee\xf0\xe2\x26\x60\xac\x3c\xa6\x86\x44\xfc\xc4\x34\x12\xa2\x77\xe4\xb1\xbc\xac\x04\x22\x02\xce\x8e\x1d\x2d\xd5\x64\xb1\xa8\x07\x6c\xe8\x36\x3f\xcf\x37\x33\x48\x87\xe4\x7c\xb9\xbd\x71\x59\x29\xb5\xea\x48\xbe\xf4\x27\xc2\xa2\xe1\x0b\xa5\x37\x94\xee\xef\x8d\xd1\x84\x32\x19\x13\x10\xa3\xd9\x08\x50\xd6\x29\x6c\x4c\xbe\x19\x2b\x04\xdd\xba\x6e\xf8\x0a\x54\xf4\xfa\xdf\x29\xb5\x74\x9b\x17\x51\xdf\x14\x96\x13\x3f\x1a\xff\xc9\xc4\xd0\x93\x98\x0e\x55\x9e\x40\x52\x49\xa0\x35\xd4\xca\xb3\x31\x69\x34\x49\xed\xcd\xc3\x17\xd7\x55\x59\x71\xbd\x86\x54\x36\x1d\xd8\x04\x55\x4e\x49\x0f\xd0\x7b\x4a\xde\xe0\x71\xd7\xb2\x11\x52\xa2\xa6\x83\x70\x0e\xd9\x8f\x9b\xda\x67\x07\x7e\x42\xf6\x8a\x27\x2e\xe6\xe9\x8b\x92\x25\xb8\x98\x48\xec\x80\x96\x4a\x48\x63\xcb\xe5\x0e\xbf\x01\xb0\x3e\xf6\x21\x26\x1a\xd8\xf3\x9c\x64\xe9\xa6\x14\xcd\xfc\x7d\x05\xdb\xc3\x09\x8a\x7a\xf6\xef\x6e\xa7\x37\x9d\x3b\xdc\x7c\x61\x76\xee\xe9\xf2\x67\xe0\x81\xdd\xc1\x1a\x94\x2e\x07\xca\x3e\xc1\xd9\xb8\x42\x65\x7a\x91\xa9\xa1\x00\xc5\xa9\xa5\x97\xa3\x8a\x6d\x00\x71\x4e\x81\xf8\x94\xdb\x03\xd5\xf3\x6f\xe9\xbe\xf0\x0d\xa5\x95\xf9\x9f\xb4\xbc\x14\xb3\x2d\xb0\xbc\x09\x08\xd5\xe1\xe6\xb1\xea\xae\x68\x18\xd0\x21\x01\x67\x15\x3d\x8f\x30\x58\xbf\x8f\x15\x01\x5b\x74\x6a\xe4\x11\x5d\x92\xba\x52\x69\xfe\xe7\xd8\xb8\xfe\xc1\x68\xbb\xd4\xfd\x0b\xb3\x2f\x31\x08\x31\x2a\x4c\x16\x71\xa5\x5e\x72\x60\xe5\x58\x49\x06\xcc\x97\x6c\x18\x66\xf3\x65\x7a\x7e\xb6\xb1\x81\x97\xc6\x78\x13\xdd\xb4\xb0\xb1\x6f\xd3\x48\x2a\x0e\xf8\xe7\x5c\xaa\xab\x7c\x62\x66\x46\x51\x42\xb2\x54\x9b\xdc\x3a\x87\x41\x67\xed\xb1\xa0\xf1\xf5\x39\x4f\x1f\xf4\xa2\x53\xc3\xfd\x30\x50\x6a\x68\x13\xfc\xb2\x7f\xa4\x85\x8b\x3f\xa2\xb9\x01\x1b\xd0\xbf\x86\x4b\xea\x04\x3d\x7e\xe5\x97\x1c\x69\x52\xe9\xb7\x62\x61\x9c\x09\x76\x7e\x85\xb3\x28\xff\x93\x5a\xa2\xa7\x08\x7d\xee\xb2\xb2\xfb\xf7\xb3\x73\xf3\xe7\x81\x27\xf1\x3b\x1a\x10\x08\x67\xc2\xb2\x3a\x10\x98\xcf\xda\x9c\x0d\x00\xc9\x51\x04\xc7\xbe\x79\xd9\x27\xaf\xbe\x8f\xa3\x04\xc5\xab\x0f\x47\x8d\xc3\xcf\xf3\x69\xfd\x5d\xa4\xe1\xf1\x9b\xc7\x18\xe6\x22\x0d\xb7\xb4\x44\x45\x7d\x5e\x43\xe8\x08\x98\xc9\x64\x40\x58\xe8\xb7\xb0\x05\x5c\x8d\x7a\xee\x30\x8f\xf9\x0c\x8c\x1b\xe6\x84\x7b\x95\x91\xae\xfa\x40\x79\x1a\xb7\x70\x36\x6a\x88\x37\x5c\x9b\x1f\x96\x5b\x63\x0b\x07\x10\x0e\xc2\xbb\xc1\x5e\x6f\x4f\x87\x6d\x43\xd6\x86\x99\x9f\x26\x58\xa0\xb6\x1f\x6e\x02\xea\x5a\x4a\x57\x0d\xb9\x23\x70\x2e\x58\x86\x84\x6f\x14\x34\x6e\x98\x2d\xd9\x0e\xd1\x82\x62\x71\xdd\x0b\x14\x19\xd7\x09\x85\x82\xdc\xd9\xf2\xc2\x91\xef\x06\x4a\xbc\x87\x0b\x02\xf0\x31\xa6\xa9\xb5\x5b\x92\xe7\x3e\xe8\xee\x99\x24\xa4\x1e\x22\x47\xa5\xce\x98\x61\xbe\x51\x75\xda\xd8\x64\xb9\x4d\x08\x0f\x28\xe2\xd3\x9e\x70\xfb\x4c\x1d\xa1\x4c\xf3\x95\x74\x98\x25\x26\x26\x66\xc5\xcf\x68\x0e\xa8\xa1\x28\xe8\x9a\x62\xca\x27\x01\xde\xd1\xa9\x11\x98\x54\x2c\xfb\x3b\x9e\x5f\xe2\x48\x14\xda\x47\x54\x53\x1d\x47\xa8\x38\xc9\xef\xe3\x0b\x84\x58\x5e\x11\x21\x5d\xf2\x89\xd7\xf0\x6f\xa3\xda\x28\x8c\x0b\x34\xd8\xae\x8e\xe3\x62\x9b\xb5\xc0\x27\x70\xee\x91\xb1\x62\x15\xe2\x91\x07\xb2\x3e\xa6\x78\x4c\x97\xa3\x02\x1e\x22\x0e\x19\xe8\x53\xf0\x75\x25\xc7\xf8\xcc\x33\x4d\x13\xc7\x34\xc0\x92\xce\xa2\x67\x92\x7c\x96\x02\x30\x7d\x63\x58\xc6\x2d\x9c\x22\x13\x9d\x3f\x2d\x00\xe8\xcb\x3c\x5e\x3c\x80\x06\x48\x00\x7e\x1e\xa2\xb4\x19\x6c\xb7\xa6\x54\x7e\x18\xb6\x6d\x96\x98\x22\xcd\x22\x0e\xc8\x99\xa4\x97\x36\x83\x10\xf6\x6e\xef\x90\x2b\x3f\xd9\xa6\xb9\xc6\xce\xba\xab\x19\x88\xef\x2a\x71\xc0\xdc\xc6\x31\x13\xc0\xa3\x31\x88\x8b\x38\x70\xd9\x8e\x62\xfc\x71\xdc\xdc\x53\xf2\x8b\x2b\x69\x6c\x8a\x28\x8e\x8a\xd5\xdd\x34\xac\x4c\x98\x08\x8b\xcc\x0d\x21\xb4\xbc\x90\x33\x7a\x64\xec\x60\xb8\x7f\x93\xd1\x4b\x2c\xe0\x89\x2a\x8e\xf0\x2d\xfa\x58\x02\x5d\xe5\x22\x0c\x3e\xe1\xc3\x0f\xa2\x98\x00\x04\x5e\xd4\xf5\x7c\xe0\x45\x5d\xcf\xd7\xb5\x92\x17\x26\x2f\xac\x60\x78\x91\x64\xe7\xda\x3d\xdf\x28\x6b\x92\x98\xa5\x5c\xe9\x19\xdd\x57\x85\x96\xfb\x95\xf3\x6e\xff\xfe\x66\x68\x06\x51\x61\xe2\xe8\x35\x26\x9a\x71\x4c\x7b\xe7\x55\x1a\xff\x7c\x19\x23\x4e\xe6\xe8\xa2\x64\x89\x73\xa6\x82\x1f\xf0\x46\xe6\x92\xca\xc1\x92\xea\xf9\x2e\x6f\xf9\x58\x75\x5b\x8e\x37\x55\x7f\x03\xc9\x93\xb0\x0c\x94\x43\xc2\xa1\x64\xe0\x99\x77\xae\x56\x36\xfa\xfe\xb9\x66\xb7\x78\x96\x56\xf0\x16\xa5\x9e\xb7\xce\xa9\xf1\xb6\xf9\x20\x36\x89\xe9\x30\x33\x23\x4e\xbd\x8f\x02\x25\xb2\xf1\x91\x06\xf9\x67\x36\x26\x86\xd5\x8c\x51\x21\x5c\xd9\x0b\xd4\xce\xff\x8e\x47\x4f\xd9\x57\x4d\x08\x8e\x3a\x24\x81\x18\x9e\x23\x0a\xc0\x98\x2e\xf8\x53\x9e\x6e\x6d\x60\x3b\x26\x96\x5d\x04\xdf\xec\xd7\xf1\x3c\x7c\xe3\xfe\x32\x8f\x5e\x73\xb0\x32\x17\xae\x29\xd8\xb0\xb7\xbe\x79\xdf\xc6\x02\x95\x66\x77\x4f\x09\x88\xfd\x6e\x05\x59\x29\x87\x48\x3f\xcd\x40\x10\xeb\xe8\x46\x4a\x37\x03\x0b\x71\x06\x1a\x47\x4e\x7e\x5a\xbb\x16\x9a\xe8\x3d\x2f\xb2\x61\xdf\x26\x88\xde\xe0\x89\x62\x27\x7e\xa4\x18\x92\xaf\x29\x21\xbb\x73\x2e\xdb\xf2\x8a\x89\x62\xaa\x1f\xd2\x83\x33\xc1\x3f\xfd\xa5\x90\xfd\x57\x09\x2a\xe6\x9a\x99\x5d\x8e\x92\x4e\x8c\x90\xc6\x89\x40\x7a\x41\xc8\x3a\x78\x67\x01\x25\x79\x7a\x3a\x58\xe0\x33\x2a\x27\x71\xa6\x62\xb9\xf6\x97\x3f\x43\xac\x1f\xf4\x62\x1c\x47\xa2\x1a\x8d\xb0\x88\xaf\xd5\xe2\xb1\xaf\x0e\x6c\x16\x11\xd8\x1d\x71\x11\x53\x69\xd2\xea\x85\x09\xba\x34\x9a\x10\x84\x2a\xbf\x13\xe3\xf3\x80\xcc\x05\xff\x91\x6a\x88\x2a\x7a\x59\x7a\x84\x74\x2b\x1d\xd9\x2a\x06\x88\xaf\xdd\x5a\xb1\x49\x27\x75\x94\xa8\x48\x46\xbf\x85\x55\xc5\x37\x2a\x15\x1c\xa6\x31\xe6\x09\x1e\x0c\xd2\x06\x2c\xd4\x17\xf8\x73\xf1\x23\x95\xa4\x62\x7c\xd9\x43\xb4\x24\xf4\x11\x8a\x0e\xb4\xbb\x58\x1e\xdc\xc1\x89\xda\x92\x74\x70\xfa\x04\xdc\x2d\x3c\x10\xc2\xf6\x3d\x2d\x45\xcb\xb7\x67\x5c\xd7\x83\x90\x66\x1d\x7f\xde\x20\xdf\xb4\x13\x34\x13\x7c\xa3\x0e\xc8\xb6\x59\x52\xfc\x51\x17\xc9\x7a\x88\x40\xd9\x17\xbc\xa7\x55\xb5\x75\x7c\x1e\x4f\x9c\xcd\xaa\x21\x0d\xec\x4d\x18\x7f\x57\xad\x76\xd1\xf9\x95\x4a\x55\x65\xff\xfe\xe6\x50\x68\x08\x3c\xb2\xcf\x89\x8e\x6a\x74\x60\x6c\xdb\x26\x49\x11\x61\xc0\x6c\xee\x18\x2b\x3d\xe7\x1d\x2d\x27\x29\x9f\x67\xc6\xc6\x91\xd8\x7f\x0c\xf9\x66\xa0\x14\xd0\x36\xdd\x96\x0a\x6d\x6c\xdb\x59\xc4\x1a\x2a\x12\xa5\xf9\x06\x88\x77\x2a\x4f\x7c\x60\xa1\xd9\x33\x2b\x16\xb5\x4d\xd7\x82\x5e\x2e\x0f\xe1\x0d\xf1\x43\x03\x08\x08\xec\xe6\x25\xe5\x4b\x0f\xac\x8d\xdb\x86\x5b\xc8\xb1\xfb\x41\x2a\xcd\xd7\x75\xa2\xba\x69\x16\x2d\x45\x89\x70\x2c\x49\x1b\xe6\x95\x40\x29\x7f\x5c\xa9\xfd\x1c\x95\x53\x20\x1e\x5c\x0e\x32\x6b\xc0\xe1\x91\x45\x10\x6e\x82\xc9\x7c\x60\x1f\xf6\x0e\xe6\x05\xda\x69\x70\x6f\x6e\x51\xa0\x85\x8e\xad\xb5\x09\x25\x85\x91\x5a\xe8\xe7\x11\x63\x09\x5d\x34\x2d\x6e\x64\x21\xb0\x05\x34\xeb\x06\x00\x4d\x2c\xeb\x8d\x2a\xf2\x1d\x65\xa7\xb9\xf3\x94\x18\xf7\x10\x4e\x73\x2a\x4b\x3a\x8c\x1b\xf3\xf3\x5b\xd0\x10\x15\x1a\x27\xb5\x22\xb6\x54\x62\xfe\x35\x9b\xa5\x0a\x76\x7e\x19\x81\xb8\x58\x99\x86\xa3\x4a\xfd\x17\x0a\x35\x91\x87\x59\x34\x28\x8e\x64\x91\x40\xaa\x70\x3c\x7c\xa4\xb2\x04\x1f\x55\x8c\xe7\xe2\x6c\x33\x4f\x57\x22\x0b\xd6\x4a\x71\x11\xb5\x2e\xb4\x5a\xd2\xed\x28\x8e\x85\xfc\x83\xd5\x30\xb4\xe4\xc6\x71\x85\xb4\xce\xa2\x90\xed\x31\xa6\x02\x8c\x47\x7c\x3d\x91\x50\x4b\xfb\x2c\x3e\x28\x0d\xe2\xe5\xb7\x8b\xa9\xf1\xc4\xb6\x3b\x08\x6a\xc2\xd7\xad\x27\xb4\x54\xd2\xc0\x64\x88\xf3\x9e\xe3\x9c\x00\x2b\x18\xa3\x60\xb2\xa6\x1f\xf1\x6d\xad\xbc\x7b\x43\x55\xb2\x8f\x61\x61\xc2\xdf\x7a\x53\x09\x20\xbe\xab\x32\xb0\x57\xb1\x6e\x94\x08\xa9\xa7\x63\x74\x8c\x87\xd1\x8a\xcd\x76\x7b\xec\x09\xd7\xd1\x90\x1e\xbb\xa8\x09\xcd\x51\xfb\x81\xe1\xf8\x03\x0e\x6a\xf1\x60\x27\x95\xfc\xcb\x93\xad\x09\xf5\x34\x5a\xab\x88\xfa\x6f\x56\x19\x2e\xe6\x34\x7d\x00\xaa\x03\x38\xd3\x51\x18\x77\xe0\x0a\x6f\x0c\x55\x37\x5d\x7f\xf5\x51\xdf\xdf\xf4\x3d\xbc\x1d\xe2\xef\x1d\x63\xdf\xf5\x30\xdd\x22\x97\x98\xff\x01\x56\x1e\x37\x27\xb0\xd6\x59\xe1\x95\x92\x0d\xae\x4a\xb5\x38\x2b\xea\x16\xf4\x6a\xd8\x3a\xe7\x46\x4a\x83\xe6\xa2\x3a\x22\x19\x46\x2d\xe2\x1c\x8f\x2b\xad\xf0\xac\x13\x5b\x68\xd4\x62\x5f\x9f\xc1\x9f\xf2\x8d\x6b\xc2\xc8\xad\x99\xf1\x0d\x1e\xcc\xcb\xa4\xe3\x34\xec\xf0\x1d\x63\xaf\xb9\xc3\x39\x47\x1c\xd8\xf7\x83\xa7\x2a\xec\xce\x0b\x0b\x5f\x54\x65\xbc\x75\xca\x81\x63\x5b\xfd\x68\xa4\x44\x1d\x69\xcd\x0a\xf5\x1f\xa5\x5f\x18\xce\x37\x52\xa8\x90\x1d\xe3\xc6\x2f\xbe\xc8\x87\x32\xb7\xda\x71\x36\x2d\xf0\xc0\xf5\xd7\xd9\xc5\x74\x1c\x42\x3e\xa1\x3c\xd3\xa2\x85\x00\x1c\x01\x3a\x3e\x71\xda\xbf\x81\x1c\x0a\x8b\x77\x50\x8a\x43\x54\x04\xe8\xf5\xf0\x90\x17\xe1\x09\x62\x83\xbc\x01\x9b\x27\xc9\x6e\x9a\x51\xb8\x85\x80\x31\xc0\xcf\x01\x6f\x02\xeb\xbc\x52\x3a\x08\x16\xe8\x5f\x03\x16\xcc\x4d\x1c\x94\xd8\xdb\xda\x50\x31\xa8\x19\x0c\xac\x21\x4d\xba\xf9\x79\xce\xeb\x5d\x55\x10\x90\xab\xaa\xdf\xae\x6d\x0d\xca\x6b\xf0\x1a\x46\x13\x54\xd5\x3a\x33\xa5\x20\x1b\x2b\x51\xc7\xa6\xd3\xaa\xdc\x75\x51\xf9\x4f\xdf\x0a\xbc\x5f\xf5\x2d\x9a\x23\xb1\xca\x3e\xc2\xcc\x88\x60\x89\x4e\x36\x51\x92\x9d\xe8\x23\xad\x21\x68\xe9\x59\xb3\x02\x0a\x64\xa4\x01\x6e\xc2\x76\xb0\xa9\x56\xdd\x6e\xc7\x54\xfa\xbd\x1f\x95\x91\x2c\xc0\xc3\xd2\x7b\xd3\x70\xaa\x8e\x1f\x60\xd8\xa5\xc9\xdc\x83\xf6\x7f\x88\x69\xe3\xbf\x72\x6d\x9f\x51\x66\x12\x49\x5f\x62\xe2\xaf\xeb\xac\x55\x95\x4a\xea\xc5\xb9\xc3\xc4\x95\xc2\xa7\x2a\xe7\xd8\x90\x89\x93\x84\x5b\xa5\x8f\x68\xf1\xe0\x57\x9a\x69\x62\x1b\xe5\xc8\x61\xe8\xf5\x34\x54\xa9\x82\xf6\xef\x6f\xe6\x71\x7a\xa4\xe1\xed\xda\xa4\x73\xa4\xcd\x7e\x61\xf3\xcf\x6b\xad\xee\x3f\xc5\xf2\x66\x24\x1a\xf6\x0a\x2c\xe8\xa3\x28\x98\x23\xcd\x33\x45\x39\x61\x98\xc9\x77\x35\x23\xc0\x1d\xea\x8a\x13\xd5\x9c\xf2\x89\x71\x7e\x6d\x06\xde\xae\xdc\x84\x85\x82\xcb\x7c\x2e\xf0\x29\xaa\x9f\x28\xac\xc9\xc7\x13\x32\x45\xd8\x28\xc2\x3e\x46\x1b\x85\x55\x2d\x21\x5b\x06\xc3\xb3\x15\x78\x6e\xfd\x86\xf6\x7c\x2f\x62\x3b\x0a\xa6\xcc\x83\x76\x21\xea\x80\xd2\xc1\x54\x6b\xa2\x95\xb1\xa6\x8b\xfd\x1b\x43\x1b\x03\xca\xe3\x98\x41\x5c\xcf\xc9\xda\x48\xca\xd4\xe9\x60\x90\x66\xc5\x30\x89\xf2\x82\xa7\xd9\x75\xc5\x7a\xed\x35\x0f\xc4\x18\x44\x61\x12\x85\x53\x84\x83\xa5\xda\xa5\x1c\xf8\x3e\x2f\xb3\xb3\xb5\x1d\xba\x3d\x3f\xbf\x58\x7a\xcd\x7d\x62\x6e\xe2\x04\x81\xc4\x35\x0d\x27\x73\x70\x49\x39\x0d\xbd\x34\x2f\xcc\x92\x05\xb4\x1c\x76\x05\x87\x00\x5f\x57\x0a\x34\x65\x10\xd8\x19\x22\x24\xc3\x79\xff\x56\xe0\xc9\xee\xdf\xaa\x43\xc0\x95\x5e\x09\xf5\xe0\x97\x2f\xcd\x8d\x62\x58\x1c\xd2\x35\x56\x93\x75\xc9\xad\xed\x4b\xf8\x21\x2b\x94\x96\x9d\x2c\xdd\x2a\xd8\x27\x6d\xe7\x21\x31\x56\x39\x90\xc0\x65\xa5\xc4\x7e\x59\x99\x95\x30\xca\x42\x6e\x7f\x40\x33\xe8\x51\xec\x4f\xc7\xde\xed\x02\xda\xe3\x6e\x53\x0f\x32\x5b\xd8\xa4\xa3\xa8\x9f\xd6\xf5\x41\x58\xcb\xdb\x96\x87\xe9\xc0\x36\x74\x9f\x04\x7d\x42\x92\x4d\x4f\x2b\x69\x04\xd3\xed\x46\x59\x9f\x1c\x03\xcf\x17\xf6\x43\x25\x8e\x7c\x35\xf0\x50\x90\x35\x47\x96\x1a\xa6\x49\x8e\x4e\x7e\xfa\x19\x76\xaa\xe8\xc8\x11\x07\x6b\x7b\x77\x8f\xe4\x1f\x62\x73\x24\x1f\x46\x05\xd8\x31\x84\x87\xcd\x33\x45\x7e\x53\x53\xf3\x9e\x83\xc3\x81\xbd\xc9\x45\x6c\x64\xb1\xaf\x57\x66\x7c\x71\x56\x3a\xd8\x69\x26\xf0\x99\x53\xba\x59\xf7\x54\xa0\x9b\xd4\xed\x4a\x44\x1d\x7c\x33\xe5\x8e\x47\x64\x7f\x17\x39\x53\x27\xd6\x57\x2e\x02\x16\xe3\xa2\xc5\x86\xc3\x0d\xca\x0a\x22\xd2\xf5\xa4\xa6\xfe\xe8\xda\x9c\x08\x92\x1d\x5a\xe1\x3f\x40\xcb\x84\x4e\x9b\xef\x3d\xde\xf2\x35\xbd\xbb\xb4\xb9\x04\xcf\xf1\x99\x5d\xdc\x59\x64\xbb\xf9\xb4\x67\x46\xe1\x28\x8d\xdb\x4b\x03\xdf\x59\xc5\xc9\x1a\x0c\xfe\x07\xdb\x75\x2f\xbb\xc0\xd8\x4c\x90\xe3\x0b\x5d\xa4\x1f\x93\x61\xd2\x35\xfd\x28\x8e\x4c\x36\xa5\x94\xa8\xa0\x96\x0b\x33\x80\x38\x58\x62\xc1\xc7\x94\x98\x63\x5a\x18\x96\x00\x92\xdc\x97\xc7\x1c\x5f\x08\xbc\x5e\x65\x61\xfb\x83\x34\x33\x59\xc4\x66\x02\x49\x9f\xe3\x2a\x01\x74\xbc\x16\x30\x6d\xdb\x36\x46\xe8\xe0\x78\x8d\x17\x3c\xaf\xf1\xe7\x7d\x43\x58\x94\x97\xde\x6e\x02\x76\x63\xaf\x0e\xf2\xb1\x8a\xe0\x3f\x9e\xc0\xf8\x46\xaf\x01\x5b\x21\x84\xbb\xe5\x60\x63\xb9\xdf\x44\x05\x8e\x95\xf7\x91\xe1\xd0\xe6\x10\x1e\xee\x75\xcd\x1e\x71\x93\xac\x39\xb7\x03\x04\xaa\x57\xfb\x51\x64\xd6\x44\xc5\xdf\xcb\x68\x30\x49\x8e\xe8\x79\xd1\x02\x94\x4e\x25\x5a\xfc\x1a\x2d\x8b\x75\xbc\x35\x09\x7d\x2d\xd7\x2f\x4a\x5d\x37\x55\xa1\x78\x60\x8a\xc2\x66\x09\xfb\x58\xc2\xfa\xd9\xf0\x0c\xa0\x2a\x39\xf4\xdc\xd7\x16\x55\xaf\xf5\x2d\x58\x0b\x51\xda\x9e\xcc\x63\xa7\x79\x54\xd8\x3d\x13\xec\x7a\x8b\xb3\x8e\x99\x80\xde\x91\x91\x13\x88\x4a\x5c\x97\xa0\xe6\xe6\x73\xd2\x1f\xe8\x18\x13\x2e\x83\x86\xe2\xe9\xa3\x91\x17\x0c\x86\x9e\xae\x2c\x27\xd1\x08\x81\xa7\xbf\xa3\xe8\x36\xde\xa5\x42\x2b\x7c\xb4\x37\xd4\x3c\xae\xc1\x8a\x88\x74\x95\xf7\xd1\x98\x3f\x91\x79\xd2\x51\x16\x75\x3a\x3e\xe5\x18\x20\xb4\xbf\x36\xd2\xd5\xe4\x0b\x2a\x70\x39\x16\xe8\x43\x54\xcd\x2a\xa7\x34\xb0\x10\xde\xa2\xc8\x11\xf6\x9a\xab\x8d\xa8\x21\xbd\x15\x28\xc5\x68\xd5\xd9\x99\x33\x2c\x06\xbc\x95\x5a\x7e\x0b\x36\xf2\x7b\x13\x9a\xbf\xae\x55\x2e\x4f\xe3\x0e\x4d\x0d\x3e\x71\x8f\x06\x14\x51\xe1\x97\xc6\xbe\x41\xed\x9f\x7c\x11\xd1\x23\xaa\xda\x33\x04\x6e\x83\x2f\xf3\xc8\xb8\x71\x60\x61\x0b\xfa\xfb\x0c\x02\x83\x11\x44\x85\xfd\x99\xd6\x04\x69\x9d\xa4\xaa\x32\x0b\x44\x02\x2d\x34\x27\x5b\xe1\x25\x2c\x6a\x34\x89\x17\x9a\x26\x5f\x96\xa4\x01\x0c\x11\x73\x9b\xf3\xcd\x67\x12\x84\x98\xd8\x64\x7d\xd6\x49\xc4\xbc\x9d\xd0\x76\x1a\xe8\x21\x38\x11\x37\xeb\xa4\xb0\x0a\xb3\xec\x3a\x39\x19\x0d\x4c\xcf\x2a\xc8\x60\x05\xea\xea\xe7\x8f\xaa\xa6\x08\x84\xbb\xd2\x05\xe2\x72\x5e\x3f\xf8\xeb\x18\x59\xa4\xb9\x1f\x1e\xfb\x76\xe7\x07\x0a\x1a\x71\x17\x2b\x10\x5e\xde\x7f\x46\x0c\x10\x38\xc6\xfe\x9d\x2a\x50\xfe\xcb\xbf\xd5\xd2\x4d\xed\xf7\x54\xaf\x0a\xd3\x6e\x0b\xa5\xc3\x63\x13\x32\xdc\xaf\x31\x66\x59\x64\xca\xe8\xdd\x98\x9c\x84\xde\x4d\x13\x95\x88\xb0\xd9\xf6\xdc\xeb\xdc\xe1\x66\x37\xb6\xaf\x46\x6d\x0e\x7b\x9c\x1a\x8d\xa7\x7b\x9f\x48\x91\xa6\x03\x9b\x15\xab\x7b\x7c\x3d\xef\x1d\xa5\x3d\x72\x3f\xf0\x4a\x32\x57\x27\x78\xbf\x34\xa0\xfa\x07\xd8\x23\x2e\xb5\x50\x9a\x0b\xa1\xcb\x2b\x47\x08\x9e\xf3\xf7\xb1\x47\x11\xed\x7e\xcf\xf5\x4c\x95\xe7\x88\xcd\x3c\x55\x28\xea\xa2\xe7\x14\xdf\xd9\xb9\x3a\xdd\xbd\xfc\x88\xb5\x03\x59\x78\x4c\x4d\x1d\x28\xaa\xee\xb3\x75\x84\x14\xf6\xd5\xb0\x67\x92\xa5\xc9\xfa\xcd\xa9\x91\xaa\xdf\x9c\x0a\x74\xbf\x40\x22\xcd\x57\x30\x78\xa7\x14\x9d\x7f\xb5\xf7\xea\xc0\x42\x73\x60\xd5\xa2\xe4\xea\x32\x7d\x46\x2a\xcd\xe2\x75\x11\xd7\x30\x2a\x55\x7e\x5e\x80\x45\xe7\x6b\xb5\x34\xa8\x3e\x13\x37\x14\xe3\xfc\x4f\x55\xad\xed\xa7\x0a\x3a\x9d\xd9\x38\x32\x84\x17\x9b\x9f\xe7\xad\x7e\x4c\xb5\x05\x1c\x53\xc9\xcc\xcc\x76\x86\xa1\xed\x00\xab\x2f\xe3\xe7\x59\x48\x98\xfd\x82\x6f\xc6\x9a\xff\xbb\x66\xc1\x85\x69\x12\x96\xde\x2d\xfd\x2e\xd2\x50\x17\x54\x4a\xea\x42\xad\x98\x79\x3e\xb0\xb6\xb3\xda\x50\xf5\xd8\xb3\xaa\xf9\xff\xac\xa2\x42\xed\x9a\xa4\x6b\xca\xe5\x71\x60\xc1\x3d\x05\x2d\x32\x79\xee\x2a\xbb\x01\x31\x77\xe5\x32\xd1\x08\xc4\x4e\x63\xa2\xf9\xa6\xa2\x66\x38\x77\xb8\x99\xa7\xc3\xa4\x53\x64\x92\x0b\xe7\x7c\xba\x6a\xa3\x39\xe9\x66\xb0\x1d\xa5\x71\xba\x14\x85\x26\xa6\x44\x2e\xc2\xf9\x7f\xab\xe9\x40\xde\x1f\xf9\x44\xea\xc7\x81\xcf\x83\xf4\x87\x79\xb1\x97\x9e\xc4\xe5\xd2\xf6\x8b\xde\xc7\xde\xb1\xda\x3c\x4c\xbe\x88\xe3\x06\x60\x34\xac\x3d\x96\x04\x70\xf9\x1d\xaf\x4d\xb3\xb7\xa5\x49\xc7\xae\xe8\xc2\x0e\x50\x07\x22\x79\x4e\xc3\xc2\xbf\x4f\x7b\x9c\x7f\x12\xdb\x5a\xc8\x72\xea\xd0\x1c\x61\xda\xef\xdb\x2c\x14\x3c\x00\x46\xf3\x7d\xc5\xac\xfa\xfe\x24\x79\x00\x48\xf4\x56\x30\x7b\x70\x81\xde\x20\x67\x81\xaf\x95\x4b\x59\x9e\x3f\x4b\x09\x4a\x91\x1e\x3a\x78\x51\x75\xdb\xbc\x87\x14\x2d\xe6\xfd\x53\xb5\x47\x90\x87\x22\xa4\x0c\x92\x73\xa7\x27\x51\xa6\x0a\x6c\x02\x67\x0c\x83\x72\x6e\x34\x21\x44\xe3\x65\xe4\xbf\x45\xbe\x01\xec\xed\x83\x1a\x0a\x90\x83\x4d\x93\x98\x78\xc9\xe6\x51\xd8\xf0\x65\x04\x70\x52\x09\x6c\xba\x4e\x5b\x27\xb3\x79\x3a\xcc\x42\xc7\x0e\x87\xf4\x17\x53\xea\x62\xb7\x70\x2d\x03\x67\xc7\x09\x45\x1b\x9d\x99\x30\xca\xfb\x53\x9a\x22\x1e\x9f\xd3\x64\x41\x92\x70\xf6\x4d\x12\x45\x96\x0e\xdb\xb1\xe8\x4b\x39\x58\x5b\xb9\x00\xf9\x46\x75\x54\x98\x95\x34\xe9\x98\xd8\x72\xb5\x0a\xa3\xce\xc9\x27\xbe\x19\x7d\x4e\xd5\x8f\x0b\x9b\x85\x69\x92\xd8\xb0\xd0\xfd\xcb\x88\x19\xb8\xd2\xa8\x1a\xc7\x3f\xad\x19\xc9\x97\xca\x45\xb2\x12\x81\x65\xcc\x9d\x6b\xac\x74\x28\x8d\x78\x7e\x10\xc2\x9e\xcd\x58\x99\x08\x29\xc6\x0f\x30\x5c\x7c\xa3\x5e\x25\xb3\x0a\x13\x2b\x52\x7a\xf4\x90\xa2\xa5\xb7\x4f\xe9\x0e\x0d\x97\x7a\x53\x2a\x2b\x05\xae\x53\x5c\x1f\x9b\xe8\x9b\xf0\x98\x9a\xa8\x0c\x80\x0a\x93\x14\xbb\x3c\x70\xfe\x36\x7e\x01\xf1\xe5\x13\xbc\x1b\x15\x13\xc4\x73\x9c\xbb\xbd\xe6\x69\xa1\x58\xe8\x80\xf5\xa9\xd5\xf9\x93\xbe\x96\x26\x76\x5a\x21\x5c\x8e\x2b\x5a\xab\xdb\x8a\xfd\xe0\x5f\x8e\x14\xfb\xf9\x9a\xf2\x7c\x96\x87\x83\xdd\x0a\x3a\xac\xa0\x69\x8f\xb4\x94\xbc\xe5\x19\x0c\x36\xeb\x02\x68\xd4\xd4\xcf\x14\x17\xe0\x89\x40\x71\xf6\x6d\x6a\xa2\xdf\x57\xeb\xf8\x03\xf2\x1e\x48\xf2\x45\x08\x08\xc2\x11\x70\xbb\x1e\x6a\x79\x17\x63\x53\xc9\x29\x9d\x50\x25\xa6\x24\x4a\xec\x6e\x7a\x48\x27\x52\x53\x46\x12\xc0\xc6\x6e\x8c\x14\x6b\xe9\x5d\xf2\xca\xb9\x04\x43\x3b\x90\xff\x48\x03\x3f\x2e\x07\x8a\x50\xea\xa2\xa2\x0b\xdd\x1a\x3d\xae\x7b\xd7\xdb\x51\x62\x15\x4c\x0d\x09\x49\xbe\x1e\x6b\xcc\x86\xc9\x04\xb3\xc1\x2a\x8a\xf4\xcb\xa2\xa8\x28\x59\xb8\xa5\x8c\x0e\xb9\x86\x13\xd4\x43\xe4\x26\x28\xa0\x4a\x8a\x75\xae\x49\x40\x00\x8f\x9c\xe7\x86\x0d\xbe\xf9\x4c\x40\xe1\xc0\x64\x85\xea\x10\xdd\xd7\x52\xd5\x8e\x7d\xe3\x47\x15\x23\xde\xea\xb4\xf7\x92\x4f\x07\x8a\x53\xec\xf7\xa7\x5a\x8a\xed\x73\x0a\x8e\x2a\xff\xdd\xc8\x23\x94\x8e\xd8\xa4\xd8\xa3\xb2\x50\x37\xf8\x3b\x90\x64\xba\x8e\xf5\xcf\x37\xf4\xae\x38\x65\xb8\xf6\x2f\xc5\x18\xef\xb5\xed\x20\x01\x49\x2c\xe4\xdf\x82\x07\xe7\x24\xb1\x9d\xd7\xf1\x6e\xc5\xcd\x95\x17\x2f\x6c\x32\x55\x4e\x3f\x50\x19\x40\xaa\xa0\xfe\xc4\x78\x1e\x6c\xc5\xb7\xb6\x03\xa8\x5f\x7e\x99\x9a\xa5\x7d\x2c\xfe\x16\xc5\x9c\xd2\xa4\x5f\xfe\x34\x13\x98\x50\x30\x88\x2c\xdf\x55\x6c\x61\xc4\x11\x3f\x51\x6c\x08\xfb\xb4\x9a\xce\x66\xa0\xd0\xea\x9c\x22\x66\xac\xbb\x86\x6f\xfe\x3b\x1c\xc2\xae\xe8\xec\x29\x58\x6f\x69\x81\xb2\x0d\xe4\x2e\xf8\xdb\xc8\xc6\x63\xb3\x9c\x51\x7c\xac\xcc\x8e\x29\x5d\x07\x1e\x2a\x97\xdb\xa2\x88\x6d\xe9\x41\x3e\xa4\x68\xbb\xb8\x19\x82\x0b\x54\x23\x9f\xc4\xbf\x3b\x52\x9c\x76\x81\x8a\x9c\xef\x2b\x8a\xec\xef\xe9\x2e\x80\xab\xc1\x23\x9e\xc8\xf1\x59\x9c\x31\x42\x11\x44\x7f\x26\x1c\x41\x13\xa1\x7f\x0a\xa9\x40\xb8\x33\x3f\x82\xc5\xc1\x9e\x98\x6e\xf9\x76\x83\xb3\xba\xa8\xb5\x59\xe7\x70\x77\xe8\x68\x63\x59\x08\x90\xf7\xed\x1c\x7b\x54\x1b\x97\x20\x85\x88\x7b\x9f\xea\x32\xcd\x0b\x83\x93\xd4\x49\xa4\xbb\xec\xe7\x46\xa0\xa4\xdf\xbc\x92\x62\x98\x0d\x6d\x4c\x7e\x09\x16\x09\x9e\x14\x15\x82\x3b\xf8\x21\x69\xa7\x9c\xc8\x4a\x25\xd1\xb4\x82\xf2\x5c\xc2\xcb\x6a\x12\x16\x44\x39\x5c\x15\x95\xa6\xff\xa7\x14\x04\xcf\x14\x51\x5e\x44\x61\x0e\x5e\x21\xc7\x6a\xb7\x28\xc9\xd5\xb7\x60\x23\x6a\xa5\xa8\x0f\x2c\x38\xf2\xfb\xaa\x97\x7c\xa8\xbc\x58\xb6\xd9\x94\x82\x6c\x5f\x50\x82\xd2\x9c\x40\x92\x38\xe9\x09\x95\x60\x8c\xba\xab\x12\x7d\x21\x0d\xf5\xa1\x4a\x49\x7d\xa8\xce\xa0\xc4\xae\x3e\xa4\xe8\x6e\x77\xf1\x99\x28\xca\xf2\x1e\x2d\xf1\x58\x4b\x35\x3d\xad\x8f\x26\x3a\x48\x1d\x94\x91\xe9\x02\xe0\x3b\xde\xae\x6b\x6a\x2f\xa7\x36\xea\x0b\xd3\xa6\xf3\xff\x54\x5b\x52\xd5\xab\x3d\x44\x74\xa5\xc2\x2a\xee\x90\x20\xdf\xd2\xd5\xe7\xb5\x40\x05\x60\x57\x6a\x08\xd5\x9a\xbd\x34\xee\xb8\xc2\xbc\x74\x95\xfb\x43\xef\x4d\x2d\x3e\x7d\xb9\x62\xc9\x0f\x3f\xdf\xcc\x87\xfd\x3e\x27\x54\x5f\x98\x65\xbb\xf9\x09\x99\x22\xbe\x56\x81\x7b\x1e\x15\x43\x82\xdf\x94\xff\xcc\x35\xeb\xc0\x63\xd6\xd7\x47\x8f\xfa\x12\x8d\xc9\xbf\x58\xae\x03\x71\xcf\x29\x3b\x06\x37\xe0\x7b\x81\xe2\xad\xdc\xd0\x7c\x50\x00\x97\x63\xc3\xa3\xd0\x2c\x89\x3e\x75\x48\xdc\x25\x08\x0e\x59\xbd\x9d\x8f\xb7\x94\xda\x0e\x73\xf2\xb3\xc0\xf8\xc8\x13\xe5\x9c\x82\x03\x0f\x73\x8f\x4c\x0c\xce\xe7\x1d\x63\xdd\xb2\x86\x35\x02\x97\xea\x5f\x29\xe1\x9f\x2f\x13\x79\xe8\xc1\x2d\xb0\x88\xb1\xb9\x45\xb3\x0b\xf7\xe2\x8e\x7c\x9b\xc7\x26\xf7\x25\x08\x67\x29\xed\x1e\x66\xc0\x81\x55\x56\x07\xc5\x21\x4e\x42\xfd\xa4\x1e\xc2\x6e\xbb\x5d\x9b\xe5\xa9\xa3\xe2\x45\x02\x88\xe1\x09\x7c\x53\x47\x94\xd5\x1d\x66\x45\x8f\x21\xce\x70\x51\x67\xc6\x34\x34\x48\x39\xdf\x0b\x74\x85\xad\xc2\xe6\xbc\x78\xb0\x19\x96\x7e\x06\x83\xac\x44\x23\x8f\xa6\x49\xd4\xf3\xaa\x20\xcb\xe7\x9a\x99\x7d\xc5\x31\xdc\x4b\x46\x61\x4d\xf5\x5e\xaf\xa9\xf3\x1c\x15\x26\xa7\x79\x74\x4a\xe1\x09\x4f\x05\x55\x64\xf7\xa1\xe6\x33\x68\xde\x75\x2d\x81\x07\x9f\x97\x44\xd7\x13\xad\xc6\x33\xcf\x38\xf4\x27\x3d\xb2\x44\x92\x8d\xf9\xf9\x2d\x6e\x71\x13\x06\xf1\x7d\xaa\x4f\x39\x5d\xe1\x2e\x3e\x97\x75\x5c\x94\xfa\xc3\xf5\x09\xe1\x5c\x4d\x41\x52\xae\x69\x54\xe5\x67\xc6\xbe\xc1\x18\x5e\xf9\x74\x43\xb1\xf2\xd3\x78\xa1\x2a\x70\x11\x27\x38\xff\x0b\x7d\x35\xff\x83\x4b\xbe\x76\x8d\x64\x7d\x5c\x0d\xd0\xd7\x03\x2b\x1e\x5b\x39\xdc\x83\x61\x41\xc7\x19\x7c\xe6\x4d\x9c\xeb\x98\x6d\xa0\x71\x1c\xdf\x6c\xf9\x20\xc2\x13\xb3\xd7\xf7\x30\x0e\x84\xfe\x89\x59\xdd\x95\x74\x08\x93\x20\x62\xc3\x7c\x12\xf8\xe8\x83\x35\x16\x6d\x67\xba\xfc\x63\xc7\xff\x78\x40\x54\xcd\x30\x6e\xdc\xe6\x12\x28\x74\xa5\x47\x1b\xa6\x49\x77\xe8\xa1\x44\x32\x5a\xe5\xc7\x90\xb1\x7b\x52\xf1\x0c\xec\x1d\x3f\xa9\x54\x59\x4c\x9b\xe0\xf7\xf8\xa0\x10\xee\xa9\x00\xf0\x8c\x6a\x14\xbb\x53\xb1\xd2\xcf\x3c\xd3\xec\xa4\x61\x91\x89\xab\x2d\xe5\x29\xc5\x0f\xfd\x7a\x05\xd4\x7b\xf0\xf9\x43\xcd\xcc\xae\xa4\x31\x51\xf2\x4b\xe6\xcc\xad\x05\x57\x70\xbd\xa1\x54\x55\x07\xb1\x35\xf9\x30\x23\x1c\x36\x2d\xc7\xba\xb6\xeb\xcf\xf2\x2c\x4d\xbb\xdd\x50\x1e\xe4\xb9\x89\xc2\xe1\xf6\xca\xd6\xdc\xe1\xa6\x2d\x7a\x22\xf7\x06\x20\xdc\xb7\x15\x53\xc4\xb7\x2b\x9b\xfb\xc0\x42\x33\x34\x43\x87\x64\xc5\xb8\xb1\xc4\x0f\xdf\xa8\x8a\x5e\x27\xca\xc3\xcc\xe2\xaf\x17\x67\xa5\x60\xa0\xba\xab\x4e\xe9\x1e\x9d\x28\xe9\xd8\x04\x9b\x1f\x6f\x79\x3b\x50\xa6\xfd\xb6\x8a\xb2\xc2\x34\x7f\x76\xc6\xa3\x09\xdf\x42\xca\x49\x9a\x85\xfd\x0e\x43\x49\x1b\x1e\xd6\x71\x1a\x09\xfe\xff\x13\x60\xcd\xb0\x93\x3f\xa4\x42\xd1\xd7\x95\x7e\xd9\x4d\xa5\x85\x75\x0f\x87\x00\x12\xfd\xd3\x54\x32\xc6\x2f\xb2\x40\x09\x0a\x52\xc7\x47\x8a\x98\x73\xb3\x46\x43\x61\xa1\xf9\x8d\xa1\x40\x1b\x9d\x8d\x73\xcb\x69\x4d\x15\x74\x09\xa6\x5e\xba\x3a\xa0\x9b\x92\x3a\x0c\x3d\x85\x14\x93\x6a\x5c\x89\x30\x8e\xfa\xa6\xe0\x0c\x0f\x92\x2c\xc8\x05\xf0\x75\x1d\x56\x1d\xac\xc2\x0d\x5d\xbc\xf0\x68\x88\x9b\xaa\xd2\x3a\xc8\xd2\x6e\x54\xec\x55\x12\x35\x77\x02\x25\x64\x73\x11\xa7\x1e\x8c\x29\x38\xa8\x11\xe2\xec\xa5\xa2\x83\xb4\x76\xd2\xaa\x46\xde\x1e\x5d\x49\xfc\x0f\xd8\x4b\x98\xaf\xfb\x14\xc1\x08\xb5\xad\xa2\x43\x40\x63\x0c\x3c\x81\x1d\x3a\x21\xb0\x46\x68\x1b\x21\x87\xf8\x9c\xea\x75\x13\x2a\x11\x2e\xfa\x6a\x52\x35\xbe\x56\xf4\xeb\x51\x52\xd8\x18\x76\x1d\x06\xe5\x7a\xa0\xca\x74\x77\x26\x18\xe9\x4f\xe1\x7d\xa5\xe1\xac\xe1\x58\x53\xab\x89\xf6\xc5\xd9\x66\xd8\x33\x89\x3b\xdf\x84\xf3\x86\xbe\x5b\xc8\x70\x9c\x2a\xaf\x53\x33\x2a\xff\x14\x45\x9c\x06\x05\xf5\x7c\x5d\x11\x55\xda\xbf\xbf\x69\xda\x43\xd7\x7e\x5e\xcb\xc9\xec\x97\x56\xda\xb6\x51\x4e\x39\x77\x22\xe1\xd8\x28\xf7\xc6\xd6\x86\xea\xa0\xa1\xb6\xb4\x69\x9f\x46\xc1\x7a\xd7\x19\x19\xb1\xdd\xb4\xf6\x05\x15\xa9\x43\x88\x22\x5b\x7d\xb2\x9c\x42\x89\x71\x69\x99\x88\x1e\x33\xbd\x17\x02\xfd\x3d\x63\x45\xf8\xff\xcf\x31\xd3\x8c\x66\xd5\x70\xa6\x9f\xc0\x13\x72\x1a\xc8\xfe\x68\x86\x05\x65\xaa\x5d\x96\x7e\xe1\xf0\xde\x91\xfa\x2e\x0a\xce\xfc\x41\xe0\x45\x6c\x2e\x6a\x82\x5f\x50\x81\xc2\xa7\x44\x7b\x02\x7c\x52\x2e\x90\x63\xb5\xee\xa2\x86\x45\x84\xd5\x77\xea\x29\x24\x4d\xb7\x4b\x34\x71\x32\x79\x28\x43\x6d\x28\x7c\xeb\xc6\xc8\x27\x8f\x07\xa5\xfb\xde\xa7\x40\x69\xda\x17\xad\xee\x8c\x14\xa9\x3c\x84\x50\x45\x74\x99\x46\x91\xff\x41\xb5\x5c\xe6\x85\x5d\x41\x5b\x8d\xe3\x3d\x71\x71\xcd\xb7\x69\x1f\x4e\x28\x4f\x23\x89\xb5\xa3\xe5\x51\xac\x45\xda\x36\x61\x98\xa2\xa7\x89\x3a\xa6\xb7\x36\x14\x8c\xa3\x63\x07\x36\xe9\x90\x36\xc3\x73\xce\xab\xf0\x4e\xc2\x63\x74\xe6\xc2\xa6\x73\x13\x26\xac\xcd\x75\x95\xd2\x0d\x7b\xd1\x60\x20\x9c\x60\x8e\xe7\xd4\x89\xbc\xae\x07\x5f\xfe\x8c\x33\x8d\x54\xe3\x8d\x12\xb4\xc6\xda\x43\x5f\x37\x5f\xd7\xc8\x6e\x2d\x34\x8b\xcc\xf8\xd8\x06\x80\x18\x4d\x5e\x81\xa0\x11\x96\xfe\xf5\x89\xb5\x9b\x76\xbb\xfb\x68\xb9\x49\x67\x9d\x5a\xaf\x70\xd6\x85\x77\x4c\x2b\x18\x97\xbf\x82\xb8\x60\x86\x78\x6f\xe4\x57\x68\xce\x80\xd0\x7b\x8f\xb2\x7e\xa8\xcb\x5f\xd2\x44\xf6\x3b\xc7\x1e\x78\x39\x21\x0e\x0c\x75\x23\xe6\x7d\xa2\x90\x06\xf1\x25\xea\xb3\x78\xbe\xef\xa8\xb2\x53\xcf\x24\xe9\x8a\xcd\xd8\xe3\x77\x02\x02\xbe\xe5\x7f\xbd\x72\xa8\x7f\xb5\xd9\xb7\x9d\x28\x34\x11\x88\xc1\xb1\x82\xde\xd4\x34\x3a\x6f\x56\x0e\x1a\x5a\xeb\x7d\x93\x49\xc1\x56\xf7\x5c\xf1\xb5\x3a\xb0\x8f\x08\xe9\xb8\x2a\x60\x48\x89\xe7\xdc\x67\xa6\x07\xdb\x86\xdb\xb4\x30\x75\xfc\x29\xbe\x09\x04\x56\x1d\xdb\xe2\x51\xda\xa2\x08\x7f\x67\x5a\xaa\x62\x70\x4d\x35\xe5\x30\xc3\x0d\x66\xeb\x1e\x8e\x69\xe1\x7a\x51\xc9\x78\x50\xba\x60\xf5\xfe\x8d\x96\x47\x97\x40\xa7\x08\x25\x51\x4e\x33\xb2\x92\x2b\xbd\x33\x7c\xe0\x4b\x34\x41\x08\xfa\x8f\xab\x58\xa1\x9b\x0d\xd1\x4d\xfb\x1c\x47\x97\x37\x3c\x2e\xeb\xb9\x1b\x81\x46\xfe\x86\xd4\x71\xec\x4a\xef\x77\xe0\x97\xf3\x8d\x02\x26\xe7\xc3\xa8\x78\xc8\x23\xb3\x26\xb4\xe6\x6f\x96\x67\x27\xc4\x43\x1c\x61\xbd\x62\x91\x62\x06\x47\xbe\x19\xf9\x1f\xdb\xa8\xf4\xf5\xfe\xad\xe6\xc0\x84\x12\x3e\xe2\xab\x38\xbd\xc2\x37\x95\x73\x6e\xee\x70\x33\x1d\x16\x61\xda\xb7\x13\x08\x68\x3c\x9e\xf6\x64\xe9\xdd\xcd\x13\x2d\x6f\x45\xa6\xc7\x7e\xc5\x14\x3d\xdb\x7f\xa2\x9c\x09\xcc\xea\xad\x40\xb9\x3d\x1b\xc1\x24\x51\xcf\x01\x0f\x52\xa6\xad\x26\x25\x9f\x29\xaf\x08\xcc\x55\x76\x11\xac\x54\xfe\xea\x19\x3a\x1c\x1c\x83\xe5\xfc\xbc\x9c\x01\x5a\xd3\xfb\x96\xae\xdc\x82\xf7\x1a\xc7\x09\xa4\xca\x11\x78\x0a\x09\x00\x43\x79\xe9\x25\x71\x00\x01\xa7\x2e\x11\x87\x5f\x16\x7d\xb3\x9a\x66\x28\xe0\x28\xbe\x97\x97\x38\x3d\x7b\x46\xc3\xde\x2f\x28\x2a\x8f\x8e\x2d\xa4\x1d\xa9\x0c\x5d\xa5\x85\x9f\x0e\x4b\xe9\xe1\xaf\xa1\x65\x3d\x54\x86\x7c\x0d\x05\xf6\xfe\x24\xd0\xaa\x0a\x95\xd0\x85\x08\x91\xd3\x64\x29\x2f\x0c\x49\xcc\x4f\x79\xa8\x13\x2b\x87\xa0\x6e\x30\x52\xe2\x4e\x57\x1c\x92\x37\x1b\x0e\x2c\x67\xf7\xe1\x28\xbe\x87\x5d\xc6\x37\x0a\x6e\x44\xf5\x38\x9b\x17\x4f\x2a\xe6\xd5\x1f\xd3\x18\x0b\xc6\x54\xb5\x9d\xed\x1e\xfb\x1c\xca\xc7\x81\xaa\x28\xdf\xe6\xbc\x89\x6b\x2b\x2d\x1f\x50\x28\x25\x69\xf1\xe0\x5f\xb8\x08\x8f\x95\xb8\x31\xf2\x04\x42\x3f\xd1\x65\x49\x68\xc5\xe8\x6e\x1b\x38\x7c\x9c\x65\xc5\x76\xf9\x4b\xac\x43\x58\xf3\x63\x23\x65\x77\xfe\x80\xce\x08\xac\x6a\xa9\xa7\xe1\xc5\x2f\x4d\xf6\x19\x15\xbd\xbd\x8a\xdf\x94\xa3\x51\x49\x20\xd2\xb7\x0b\x0d\x85\xd7\xab\x42\x3a\x1d\x09\x00\x1c\x34\xbc\x2e\x69\x3a\xf1\x33\x3b\x20\xf8\x26\x54\x1c\x1a\x99\xdd\x70\x04\x3b\xcc\xfa\x06\x6f\x02\xbd\x4c\xce\x20\x7a\x8d\xec\x33\x75\x64\x47\xb9\x29\x6c\x1c\x47\xcc\xae\xef\x44\x97\xbd\x00\xb3\xc2\xed\x81\x36\x30\x2c\xd0\x83\x26\xa0\x12\x7a\x39\x2c\xf4\x3b\xd8\x9c\xb0\xd2\x70\x77\x1c\x0c\xc5\x69\x01\x5d\xd2\x9c\x98\x85\xe9\x76\x77\x29\x61\xfc\x8b\x81\x92\x7f\xbc\x38\xf2\xca\x6c\x67\x94\xfa\xee\x19\x78\x72\xd8\xea\xb7\x47\x4a\xe8\xe7\x76\xa0\x21\x26\x65\xf8\x6d\xa7\x7d\x8d\xec\x56\xa0\x10\x5e\x40\x7b\xf0\x3f\x60\x61\x0a\xbd\xbe\x40\xa6\xc3\x5e\x9a\xe6\x36\x47\xa2\x9e\x7d\x22\x3c\x1f\x3c\x55\x46\x74\x88\xa3\x56\x91\x7d\x7e\xfe\x50\x73\x10\x9b\x24\xd7\x9a\x74\x9f\x6a\x76\xf8\x4f\x27\x88\x3e\xf3\x22\x4b\x57\x29\x1a\x66\x4d\x38\x22\xfe\x00\x8b\x94\xa8\xc4\xd1\x3c\x23\xbf\x78\x8d\x1c\x60\x66\x3d\xd1\x31\x75\x96\x0e\x66\xfc\x3a\x61\xb2\x53\x26\xf3\x52\xd4\xb7\x57\x54\x36\xeb\xcf\x68\x25\xf2\xf5\x04\x4c\xd2\xc4\xf1\x93\x9a\x3a\x00\xf5\x52\x94\x09\xf0\x04\x72\xe2\xa8\x97\x9c\xd1\xf5\x3f\xe0\x7a\x94\x26\xca\x9c\x6b\xfa\x57\x41\xd1\x26\x3c\x65\x69\xf6\x2a\x1f\x07\x47\x20\x6b\x90\xc2\x96\xcf\x8c\x2b\xc2\x6d\xbc\x69\x31\x32\xf8\xab\x3b\x48\xc9\x0a\x65\x40\xb9\xb1\x80\x83\xf9\x33\xcd\x94\x05\xc6\x75\x64\xf9\xbe\x5b\x71\x8b\x0e\x3f\xdf\x8c\x92\xd2\x97\xe2\x9d\x81\xfa\xb8\x56\xe8\x39\x5e\x51\x99\x5f\x58\x38\xd8\x8c\x4d\x3b\xcd\xc0\x2d\xed\x8b\xbc\x27\x46\xaa\x7d\xe6\x44\xb0\x8d\x32\xef\xc5\xc5\xd9\xd2\x46\x4f\x37\xfc\xc1\x14\xe8\x21\xff\x70\xf2\xcc\x52\xbe\xe6\x87\xca\x5d\x6c\xdb\xe2\x88\xb5\xc9\xe3\x5e\x8a\x07\x94\x74\xd2\x2c\x06\xa3\xca\x12\x9c\xb0\xa3\x8e\xe1\xbd\x1c\x53\xb8\x30\x0c\xbc\x72\x44\xfb\xe5\x38\x3a\xd9\xce\xf2\x29\x78\x15\x10\x47\x91\x5b\x11\xfb\xe7\xf8\x0c\x7e\x87\x4f\x4e\x25\x64\xf5\x1c\x7b\xcf\xb7\x35\xc3\xed\xa7\xda\x6f\x1c\x97\xbe\x37\xdc\xf0\x4b\x8a\xb6\x91\x84\xa3\x5c\x6f\x68\xe7\x51\x2f\xaf\xf4\x8f\x68\xe6\xa4\xf4\xe8\xb1\x18\x17\xb4\x6f\x74\x15\x10\x68\x44\x15\x6b\xe4\xad\xc3\x05\xf8\x98\x2c\x30\x56\xdd\x15\x5a\x68\x72\x64\x97\x13\x80\x24\x2a\xe3\x3f\xb0\x9c\x1e\x6a\x4d\x48\xf4\xa9\x56\xdf\x5b\x35\xf2\x77\xcd\xcc\xe6\xb6\xef\x52\x7e\x78\x97\x0b\x2a\x6a\xbc\xf0\xd9\x28\x7d\x5b\x14\x36\x9b\xd2\x69\x18\x4c\x94\xb4\x71\x95\x0f\x8b\xf5\xfe\x91\xab\x0b\x76\xd2\x23\x9d\xd5\x69\x8f\x11\x03\x98\x5f\xc8\x16\x3c\xa5\x0e\x07\xf8\xd2\x1c\x51\x75\x2b\x4a\xc3\x71\x84\x25\xe9\xf0\xe2\x7f\x42\x63\x8b\x5c\xc1\x69\xd5\x07\x7e\x42\x13\x6a\x0e\x8b\x61\x66\xf7\x68\x06\xc2\x91\x4f\xcd\x9c\x24\xb7\x1d\x05\xe7\x7f\x3a\xf2\xdd\x5d\x1f\xc1\x72\x0a\x0a\x96\x06\x5b\x48\xd2\x69\xcd\x09\x86\x0d\xab\x96\xef\x02\x5f\xb6\xbf\x38\x21\x53\x52\x14\xb1\x7d\x52\x35\x75\x5c\x50\x36\xf3\xc7\x30\x2c\x0e\x92\x5e\x4e\x25\x96\xcb\x19\x5a\x14\xf8\xab\xe3\xba\x82\xfd\x87\xf0\xc0\x24\xe9\x4f\x23\x82\xf4\xf4\x55\xd5\xde\x89\x50\x19\x23\x35\x21\xa0\xbf\x86\x38\x51\x88\x03\xe9\xe5\xa4\xe5\xbf\x1c\x1a\xc6\xa3\x06\x9e\xe4\xe5\x6d\xcc\x0d\x8b\x87\x8d\x3c\xd5\xea\x0c\x65\xdb\xf8\x71\x6b\xca\x8d\x8b\xcd\x9f\x9b\x3b\xf0\xdc\x81\xc3\x87\x1a\x4a\x9e\x68\x5d\xd7\xad\xab\x41\xe2\xfc\x7c\x79\x2a\xad\xba\x18\x1c\xf0\xa0\x6f\x2a\x09\x8f\x6f\xba\xe2\x40\x46\xd8\xcf\x69\x6c\x6a\xe6\x8b\x55\xae\x35\xd4\x87\xe5\xb4\x52\x1b\xe3\xed\x4a\x34\x41\x4e\x68\x9e\x0e\x8b\x1e\xc5\x44\x98\xa7\xdb\x81\x92\x8b\xb8\x5d\xab\x15\x9f\xa6\xcc\x0f\x8e\xc1\x81\xb4\x1e\x5f\x2b\xe6\xcc\x30\x36\x53\x9a\xd3\x86\x06\x7a\x82\x58\x05\xa7\xe1\x6d\x7f\xb8\xc7\x26\xea\xa3\x76\x2f\x70\x23\x26\x50\x47\x9a\x8a\xa7\x14\x47\x55\xa3\x55\x85\x90\xce\x95\xfe\x41\x2e\x89\x6e\xfe\x90\x92\x71\xbd\x30\xda\xa7\x34\x07\xa2\x24\xa7\x2a\x9c\x94\xf5\x1b\xdb\x9a\xff\x71\x56\xde\x70\xe2\x4d\xa1\x8d\x63\xaa\xea\x00\xc6\xf6\x60\xa4\x94\x11\x81\x1f\x42\x74\xb2\xaf\xe5\x93\xdc\x5e\x47\xfe\x48\x3a\x4c\x3a\x02\xf2\x83\xd9\x39\x31\x52\xaa\x41\x9b\x13\x52\x04\x02\x2a\xed\xd9\x7e\x94\x0f\x7a\x36\x03\xc9\x29\xb3\xa1\xd2\x2b\xb1\x03\x3d\xf2\x61\xf4\xff\xa5\x8c\x40\x2f\x5a\xea\xd9\x6c\x2f\x91\xc6\xc1\x09\xe5\x64\x9b\xa8\xf4\xd3\x86\xc0\x3a\x79\x10\xf8\xc2\xc9\xff\x43\x7b\x80\x3f\xa1\x5b\x20\x2e\xc0\xee\xa1\x06\xf5\xe1\xc8\x9b\xfe\xdb\xf4\x04\xc8\x1c\xd0\x5a\xd8\xda\x0d\xb6\x48\xfe\x25\x38\xf2\xb0\x7e\xf7\x69\x7f\xf3\xc6\xd5\x6c\x91\xc3\x2c\x6d\xa7\x04\xae\x2e\x77\x9d\x14\x5e\x75\x15\x56\x05\x35\x45\x2f\x4a\xd0\x62\xf0\xc2\xac\xc3\x3d\xaa\x26\x28\xe5\x79\x75\xad\xcd\x1f\x52\x24\x2d\x58\x85\x38\xf1\xae\x28\x59\x91\x69\x40\xfd\x99\xe7\x17\x8b\x4e\x48\x7f\xfd\x91\x7d\x4b\xab\x1f\x68\x92\x26\x93\x45\x06\x8f\xae\xb8\x02\xe6\x5c\xaa\x55\xd6\x40\x48\xbd\xc7\xd3\x7e\xf3\x7c\xb5\xd9\xf2\xc5\xd5\x2f\x8c\x3d\xc4\xf5\xda\x68\x02\x1c\xf5\x98\x6f\x73\x6f\xa7\x59\x82\x3e\x43\x9c\xb6\x8d\x96\xaf\x26\x5c\x1f\x29\xfe\xfa\xf5\xba\xcd\xdb\x8f\x38\xa7\x84\xc0\xee\x75\x05\x0d\x79\xbd\x0e\x54\xdf\x4d\x33\x1b\x9a\x9c\x43\x5b\xe1\x69\xa1\x19\x15\x06\x17\xbf\xe3\x9f\xfd\xf9\x9f\xa7\xd6\x61\x29\xd9\xea\xfa\xed\x24\x02\xa6\x6f\x9f\x9a\x60\xc8\xd6\x4c\xd6\x13\x04\xdb\xde\x06\xff\xa3\xc0\x47\x43\x1f\x05\x93\x94\xda\xbe\x34\x11\x54\xc8\xb2\xe1\x37\x6d\xc2\x0f\x81\xf9\x99\x82\xcb\x8a\x65\xf8\x7b\xa3\x09\x16\x6f\xef\x88\xec\xa4\x64\x95\x20\xab\x14\xef\xc1\x16\x2d\x62\x8e\xe6\x54\xb7\x31\xe7\xd0\xf0\xec\xd2\x58\x24\x32\x00\xd5\xa2\x7c\x33\xcd\x96\x4c\x12\xbd\x66\x3b\x53\x0e\x33\xf1\xdf\x5f\xd6\x91\xee\xa6\x12\x3c\x3b\xad\xd5\x4f\x6c\x62\xb3\x74\x88\x1e\x38\x64\x67\xc0\xf7\xc0\xd7\xaa\xd6\xb0\x6c\x7a\xdc\x34\x89\x15\xf2\x8e\xaa\x3d\xbd\xa3\x91\xc4\xb6\x18\x66\x09\x05\x91\xac\xd1\xa3\x6d\xd3\xbb\x81\xcf\x14\xe2\xb0\x41\x24\x8c\x76\x49\x38\x93\x77\x14\x4b\x57\xcf\x9a\x8e\x09\x7b\x16\x3c\x3b\x13\x0c\x7b\x7c\xa3\x6b\x93\x69\xba\x6c\x3b\xd3\x8d\xaf\x0b\xc1\xe8\x2d\xac\x62\xbe\x09\x3c\x63\xc3\xa7\x4a\x20\xed\xd3\x4a\x78\x70\x60\x81\xba\xd8\x62\xe9\x3a\xc0\x22\xb8\xa9\x3a\x34\x6e\x8e\x1e\x55\x29\xbe\xfe\x94\xee\x5f\xf6\x09\x48\xf0\x69\x62\xd4\x6f\x54\x72\x3d\x2f\xcc\xbe\x44\x4a\xd7\x53\xde\x8e\x40\x57\x51\x53\xd1\x22\x9d\xf2\x69\x65\x43\x1d\x58\x68\x9a\xce\x8a\x21\x64\xb3\xaa\xc5\xa2\xff\x8b\xaf\xeb\x3a\x9b\xa0\xfa\x86\x54\x3b\xd2\x74\x33\x63\x97\x30\xfa\x6f\xd1\x7b\xca\x7d\x8d\xaa\x4d\x10\xb2\x60\xfc\x41\xdf\xf2\xdc\x70\xe2\xb5\x77\xb5\xfa\xd4\xd9\x3a\x00\x53\x27\x8a\x6d\xbf\x6f\x94\x42\xec\xd9\xc0\xc3\x94\xab\x1d\x35\xa5\xcb\x6a\xfa\x03\x13\x2d\x25\x98\x7b\xa9\xf9\x28\x0c\xe8\x89\x40\x95\xe3\x57\xf3\xd7\x96\x23\x7b\x24\x0a\x5f\x6b\xa8\x76\xe0\x73\x38\x78\x24\xd9\xa7\x12\xb3\x03\x93\x34\x14\x75\xe7\x3f\x0b\x3c\xd0\xfa\x9f\xd5\x0d\x77\xde\x8b\x06\xab\x92\x20\x97\x94\x83\xce\x32\x88\xcf\xfe\x8d\x61\x14\x2e\xef\xf2\x58\xd1\xbd\x2d\x6f\x6e\x76\xe2\x3c\xc3\xac\xc2\x44\x20\x9a\x3a\xad\xdb\x40\x3f\x19\xf9\x8a\xdc\x59\xe7\x34\x14\xab\xcb\xac\x71\x27\x99\xeb\x86\x63\xe4\x3b\xae\xd4\x80\x3a\x11\xc9\x6a\x74\xa8\x75\x5a\x0e\x91\x89\x66\xfb\x17\xa4\x8f\x95\xdd\x5f\xe7\x57\xbb\x0e\x99\xbb\x95\x3d\xb1\xb0\xd0\x1c\x64\x69\x67\x18\x16\x92\x67\x66\xa9\x85\x40\x21\x2b\xaa\x0c\x04\x14\x35\x47\x71\xa1\x18\x1b\xcf\x2b\xcc\x8b\x6e\xa5\xfb\xd5\xbf\xcb\xa8\x49\x11\x55\xf5\xcd\xec\x1f\xd2\x76\xc5\xbe\xa8\x76\xa5\x2d\x2c\x1c\x6a\xe6\xc3\xa5\x25\x2b\x87\x0b\xd6\xe4\xe6\x48\xb9\x0b\x9b\x95\x78\x7e\x71\xb6\x99\x0f\x6c\x18\x99\xb8\x34\x9c\xd8\x44\x02\xc0\xf3\x1d\x50\x57\x54\x37\x78\xc7\xc6\x5a\xcf\x15\xf5\x45\x38\x78\x7c\x3d\x7e\x5c\x43\x68\x0a\x93\x14\x38\xa1\xb9\xc3\x73\xe4\x91\x82\x28\x13\x0b\x14\xb0\x34\x13\xd8\x3b\x3b\xc7\x4a\x44\xfc\xbf\xf9\x85\x5f\xa0\x5f\x72\x61\xae\x2b\xa4\xad\x8d\x7c\x3b\xe7\x11\x06\x86\xe0\xb8\x3f\x19\x28\xa6\xc1\x93\xde\xe3\x4c\x0d\x53\xbb\x39\x67\xcf\x25\x18\xf7\x28\x2d\xef\x5d\xe3\xed\x5d\x14\xd4\x57\xdd\x4f\x3b\x36\x76\x41\x85\x63\xbe\x70\x7d\x7d\x3f\xa9\x39\x95\x16\x9a\x47\x7a\x36\xb1\x24\x4b\x50\xfa\x8e\xdc\x42\x40\xc7\x9c\xb4\x13\xf8\xb2\xa3\x34\xfc\x4f\xa9\x2c\xde\x5d\xd5\x48\x7e\x55\xf3\x7a\x1c\x1b\x3d\x55\xa1\xac\x3e\xb0\xf0\x05\x72\x2b\x85\xaa\x8d\xce\x75\x11\x0e\xa2\x31\x71\x80\x82\xfd\xfb\xbd\x4e\xc8\xe2\xac\xb4\x1d\x1e\xd7\x2d\xda\x28\x40\x62\x7e\xde\x47\xd4\x2a\xc9\x4e\x3a\xe4\xe1\xd1\xff\x90\xf6\x15\x26\xff\xbd\x40\x95\xb9\x6f\x04\x3e\xb4\x03\x67\x0d\x0e\xe5\xff\x95\x80\xe0\x12\xb3\x97\x0b\x1c\xd9\xdb\xc6\x58\x91\x85\xcc\x90\xf8\x1f\xa0\x5c\x7f\x4c\xc3\x05\xcf\xe3\x9a\x6e\xf2\xf8\x70\xa4\x2c\x2e\x17\xe7\xf1\x1e\x0f\x8d\x55\xd3\xd6\x71\x4e\x36\x61\xbf\x9f\xad\x34\x53\x2c\x2c\x34\xfb\xa6\x63\x69\xd4\xb7\x8e\xd2\x93\x22\x71\xc4\xa8\x63\xa6\x1c\x99\xa4\x4d\x1b\xb6\xb1\x0e\x9c\x70\xa6\xe2\x8d\x98\xc8\x2f\xae\xa4\xab\x80\x39\x09\x91\x85\xdf\x2b\x47\xeb\x34\xd2\xda\xb6\x67\xe2\x6e\x43\x29\x40\x02\xc5\xc0\xd7\xc1\x53\x13\xdb\x8b\x1a\x2a\x00\x13\x16\xdc\x32\xfd\x98\xb0\x7b\xd7\xd9\xa2\x5e\x3a\xe0\xdc\x0d\xe2\x23\xf8\xbc\x7c\x5d\x81\x6b\x94\x71\xe0\x30\xe9\x0c\x19\x91\x82\x27\x87\x33\xc8\xd7\xa3\x87\xfd\x12\xfc\x32\xf2\x19\xae\x9e\x5c\x2e\x40\x8c\xfb\x7d\xac\x0d\x67\x80\x17\x16\x38\xde\xbe\xad\x09\x9c\x4e\x07\xb4\x4f\x84\xb7\x0d\x13\x07\x3b\xc9\x09\x54\x1c\x35\x9b\x88\x83\x50\xb7\xb8\xad\xd2\xf9\xa7\xb0\x50\x85\xf7\xb9\x5c\xe7\xc2\x0c\x49\x8b\xd6\x61\x9f\xca\xc9\x03\x62\xf7\xd1\xb1\x67\x50\xbd\x87\x29\x77\x44\xe5\x4e\x30\x78\x27\x56\x27\xfe\xea\x1f\x13\xc9\x38\xd6\xff\x95\xa0\xf1\xcc\x33\x9c\x7e\xdd\xa4\xcc\x06\xd3\x5d\x2b\xbe\xdb\xb7\x47\x0a\xa1\x7d\x6a\xd4\xf8\xda\x3f\xe0\x0f\xfc\x98\xf6\x02\x93\xca\x93\x09\x44\x52\xe5\xff\xa6\xf4\xa3\x53\x85\x3c\xb0\xe0\x5a\x99\x14\xbd\xf0\x6f\x22\x8b\x83\x80\xf2\x36\x18\x39\x24\xe1\x48\x7b\xda\xb5\x13\x1c\xfa\x87\x5f\x97\x3c\x4e\xd0\xf8\x95\x5f\x72\x10\x28\x41\x2a\x9a\x4e\x27\xb3\xb9\x63\x66\x14\xd9\x39\xd5\xc4\xfe\x7f\x3a\x5e\xff\x70\x98\x17\x69\x5f\xf0\x81\x9c\x33\xa4\xe9\x94\xfc\xe1\x5f\x01\x8e\x48\x6c\x58\x44\xe1\x10\x47\x21\xc6\xe6\x63\x0d\xdb\xd6\x7d\x9c\x69\x1f\xc8\xfe\x83\x5a\x94\xe6\x39\xb9\x51\x6d\xbf\x6c\x16\xf9\xc6\x3d\xa8\x19\x0c\x6c\x1c\x9b\x02\xe0\x20\xac\xd5\x19\x5a\xea\xd2\xbc\xa0\x1c\x02\x7c\x85\x84\x2d\x9e\x49\xd0\x3c\xdb\x7f\x76\x97\xf7\x70\xfe\x5f\x4d\x1e\xb2\x45\x5f\x00\x33\x7e\x5b\xe5\x1b\x4e\x42\x65\x81\xe9\x2e\x10\xd9\x1c\x55\xb0\x2d\x4a\x68\xea\xd4\xd4\x49\x95\x9a\x3a\x59\x69\xe1\xa3\x2a\x4b\x96\x92\x90\x3a\x1f\x73\xba\x3c\x20\x4a\xd5\xf2\xda\x83\xde\x6a\x1e\x85\x11\xfc\x00\x49\xeb\x1d\x55\x8d\x10\x47\xab\x08\x89\xe7\x0f\x35\xf3\xa8\xf0\xa8\x95\xba\x4e\x07\x7f\xac\x47\x79\x3e\x2c\xfd\x60\x6c\x4e\x6e\xa8\x98\x54\xeb\x56\xa3\xb4\x56\x71\x24\x17\x67\x9b\x1d\x1b\xc6\x86\xd9\x4b\xe7\x3c\x7d\xaf\xa7\xf2\xf5\xaf\x93\x45\x49\x18\x0d\x0c\x72\x45\xae\xac\xed\xec\xdd\x5d\xe5\x11\xfc\x51\xa0\x7a\x70\xd6\x6a\x49\x8b\x8a\x2c\x1a\xf0\x2a\x77\x8d\xff\x8e\xc8\xba\x2a\xb5\xbb\x7f\x7f\xf9\xdf\x65\xa1\x99\xc0\x90\x22\xd5\xc9\x14\xfd\x7c\xe3\x30\x1e\x45\x3a\xd8\x43\x16\xc8\x85\xc0\x6e\xf1\xfd\x75\x82\x64\xe1\x6c\xbd\x3a\x52\x1d\xa9\xd3\x63\x2f\x33\x07\xbe\x49\xd7\x24\xbb\x7f\x8e\x27\xf8\x7f\x43\x06\xd5\x31\xe3\x79\xf6\xf8\x2d\xc5\xf0\x97\xa4\x47\x90\xdd\x5a\x74\xca\x61\x8a\x94\xe6\x9b\x64\x49\xb0\x4f\x36\x82\xc7\x15\xd9\x7f\x77\x98\x9b\x98\xd2\x77\x3c\x92\xf4\x29\xee\xa8\xa1\xe3\x57\x68\x1f\x7c\x4e\x6c\x98\xc4\x36\xcf\x41\xc9\x86\xea\x28\xd3\x87\xc0\x04\x71\x77\x20\x40\x86\x60\xd8\x80\xed\x85\x2e\x05\xd7\xc5\x95\x90\xd0\x20\x8d\x63\xa6\x3c\x55\x1a\x82\x58\x4a\xa2\x6b\xe2\xfb\xfb\xf3\xd8\x76\xb3\x68\x79\xb9\xa1\x41\x8e\x97\x34\x25\xd2\x25\x27\xeb\x3c\x4c\x48\x35\xd6\xf3\xa9\xca\x00\x5f\x51\x29\x81\x2a\x5b\xed\xdc\x61\x4f\x24\xaa\x83\x59\x61\x45\xf4\xad\x4a\x9b\x9e\x69\x18\x70\xc8\x86\xc7\x83\x80\x45\x8f\xaf\x95\x15\x58\x1a\x0e\x06\xab\x1a\x35\x79\x43\x0b\x40\xdc\xa8\x16\x5b\x17\x0f\x36\x4d\xbe\x2c\xbd\x0a\x42\xf7\xa9\x20\x19\x97\x02\x55\x23\x8d\x0a\x0e\x94\xf0\x7d\xc7\x95\x4c\xf2\xf1\x0a\xe3\xd4\xc2\x42\x73\x39\x49\x8f\xc4\xb6\xb3\x64\x9d\x6f\x2f\xbd\xc1\x1e\x1c\xe2\xf5\xac\xa8\x75\x76\x46\x7b\xb1\x0d\x47\xbd\xfd\x98\x4a\xd8\x5e\xa7\x01\xc3\xbc\x9f\x9e\xec\xa2\x55\xd2\x97\x26\x66\x63\x05\x47\xf0\x13\xfc\x21\xdf\xa8\x1c\xf8\xd7\x0e\x1f\x9a\xe8\x9b\x3e\xa7\xfb\xa6\x75\x60\x3b\x18\x26\xcb\x8a\x91\xf5\x53\x65\x5f\x3f\x75\x53\x15\x13\x6d\x7c\xd1\x20\xb7\xc0\x51\xde\x2c\x78\x1a\x19\x0f\x42\x8d\xd3\x76\x7b\x95\x78\xe1\xca\x7f\x47\xa6\xf0\x86\xaa\xd1\xdd\xa8\x23\xc3\x08\x7b\x26\x8e\x6d\xb2\x84\xc5\x20\xe2\x55\x0a\xbf\xbe\xbe\xdd\x83\xff\x7b\xcd\xf9\xf9\x43\x0d\x8f\x94\xfa\x90\x5c\x08\x69\xf9\xf2\x2a\x6c\x85\xcd\xda\x26\x59\xde\xe5\x7d\xea\x47\x09\xb6\x83\xe3\xe7\x2c\x4c\xcb\x04\x9e\x4e\x40\xe6\x9a\x23\x19\x56\x94\x19\x46\x5c\x90\xd4\x59\x95\xd6\x2e\x60\x4d\x20\x6e\xc6\xd7\x0a\xd9\xd3\xb5\x1d\x9b\x81\x28\x5a\x09\xae\x9d\xd0\xe0\xa9\x13\xc1\x3e\x65\x62\x96\x22\x3b\xa5\xe8\x5b\x6f\x93\xe7\xa3\x32\xc4\x2f\xb9\xfe\x09\xbf\x8a\x53\x1b\x76\x68\xfb\x49\xdf\x92\x97\x5f\x62\x09\x34\xe9\x50\xae\xa9\x6e\x9b\xbc\x6d\xf3\x22\xcd\xa7\xbd\x81\xff\x19\x7d\x01\x72\xa8\xb7\x46\x8a\x8d\xfd\x18\xad\x5f\x64\x1b\x1a\xad\x1a\x5e\xe5\xbe\x89\x48\x94\x48\xd4\x20\x30\xd4\x3f\xd4\x55\xbe\x1f\x56\x72\x4d\xa5\xb3\x9d\x17\x69\x66\xa1\xda\x84\x97\x20\x04\x33\x4f\xc1\x49\xcc\x8e\xe4\xaa\xbc\x08\xe6\x77\x55\x27\x3a\xf7\x23\xc1\xf2\x7f\x5c\x5f\x77\x2a\xdd\x1c\xae\xab\xba\xa1\x5a\x9c\xe5\x1e\xa6\xf7\x46\x3e\xad\x73\xb5\x8e\xcf\xa6\xb3\x9a\x98\x7e\x14\xf2\xbc\x33\xb1\x94\x82\xa3\x5c\x57\x85\x9e\xce\x30\x01\x60\xe4\x39\xaf\xe8\xeb\xf8\xc2\xee\x2b\x95\x83\x99\xb1\xdb\x68\x51\x17\xa2\x81\x4e\x7e\x9f\x11\xa8\x4c\x73\xa5\x20\x1b\x9e\xcd\xaf\xf3\x8c\x89\x2d\xf7\xaf\x4c\xf0\x36\x48\x08\xed\x53\x9e\xdf\x18\xda\xa1\x85\xaa\x83\x34\x02\x79\x89\x49\x2f\xfb\x57\xb0\xec\x1f\x5c\x1c\x21\xba\xd3\xac\x77\x35\xfa\xa4\x6d\x1b\xa6\x7d\xcb\x07\xbf\x8b\xb0\xca\xd5\x2a\x11\x96\x37\x4f\x73\x5f\x5b\xdc\x35\x91\x08\xf2\x4d\x05\x67\x95\xff\xc5\xbd\x22\x88\x3d\x50\xc0\x16\xd2\x08\xcf\x83\x74\x4d\xe1\x7c\x06\x36\x8b\xfb\x26\x61\xd3\xe7\x32\xdb\xe5\x2f\xf1\x8d\xea\x5b\x0c\x57\xc3\x38\x0a\x4d\x8c\x4e\x0c\xd1\x82\xa5\xc8\x49\x14\x63\xf7\x29\x45\x87\x28\xcd\x30\x1e\xf8\xa6\x07\xaa\xef\xef\x41\x85\xc1\xa5\xf4\x13\xa3\x24\xb4\x09\xf8\x46\x14\xe7\xab\x5f\x60\x6b\x23\xdf\x59\x3b\x48\xf3\xa2\x6f\xb2\x65\xca\xc9\x8b\x50\x1c\x23\xc6\x59\x94\x09\x85\x33\x01\x79\xd7\x09\x70\x00\x51\x6d\x07\x8a\xd4\xdc\xb9\xd9\x7e\x27\x9e\x0c\x9e\x54\xc9\xe8\x7c\x60\x93\x8e\xed\xec\x52\x15\x73\x46\xa8\x48\xdf\xad\x3f\xa2\x80\xa0\x97\x6e\x3f\xa5\x46\x85\x84\xa1\x48\xd9\x3f\xad\xa5\x91\x4c\xc6\xb4\x63\x98\x12\x56\x08\xd3\x71\x2c\x38\xa4\x44\x5d\xb8\xe6\x74\x70\x02\x0a\x0d\xbf\x2d\xae\x62\x65\x08\x2e\xad\xa6\x07\x2a\x2f\xec\x80\xb7\x29\xb3\xf0\xd1\xe6\x11\x46\x3e\x5f\x42\xeb\xa5\x29\x3b\x0a\x02\x05\xa0\xaf\x96\x42\xbb\x02\x61\xa7\xab\xb1\x59\xb6\xc8\x3a\x0a\xbd\xa6\x6e\x49\x38\xae\x07\xee\x46\x25\x85\xf8\x22\xe9\x47\x98\x24\xef\xa6\x59\x9f\xe7\x87\xd9\xb7\x82\x09\x2a\xae\x9a\x5e\x1e\xd3\xed\x9a\x88\xab\xdf\xe2\xf7\x7b\x3f\x62\xbd\xb2\xfe\x16\x16\x9a\xb1\x49\x96\x86\x51\xde\x93\xd0\x01\x8d\xbb\x1b\x9a\x6f\x67\x43\xc1\xef\x96\xd2\x6c\x99\x9d\x2c\x78\x70\xe7\x74\xac\x78\x4e\x6d\xde\xd7\x5e\x33\x3a\xb1\x7c\x5e\x25\x96\xcf\x2b\x28\x46\x9a\x99\xf2\x44\xa7\xbc\x06\x60\x38\xc7\x46\x8a\x62\xee\x98\xda\x89\xb6\xdf\x2e\x17\x6e\xae\xfa\xa7\xce\xe8\x16\xbc\x33\xc1\x53\xfe\x44\x8f\xfa\x51\xc7\x14\xae\x2c\x81\xc3\x1b\x25\x55\x57\x1c\x72\x85\xd3\xb7\xeb\x78\xe8\x63\x33\x70\x7c\x4c\x4c\x10\xae\x89\xf6\xab\x92\xd5\x0b\x0b\xcd\x25\x3a\xd1\xa6\x14\xd7\x07\x8a\x64\xd2\xa9\xae\x14\x29\xce\xd6\x82\x17\x86\xcb\xb0\x03\xf0\xcf\x99\x4f\x80\x6f\x2a\xd3\xf7\xc2\x2c\xd5\x7a\x7a\xa6\xdc\x9b\x54\x2e\x62\x8b\xc0\x78\x58\x25\xf3\xec\x40\x39\xbe\x56\x9b\xc6\x51\xc8\xb9\xd1\x97\x38\x99\xcc\x3b\x4e\x0a\xf2\x0d\x27\xe0\x7c\x5e\x85\x44\x69\xb7\x1b\x85\x36\x9f\xf1\x45\xf9\xb7\xc9\x0b\x40\xcd\x81\x9b\x49\xa5\x03\xbf\xdc\xf1\xf0\x4f\xae\x4f\xb2\x96\xd5\xb0\x0a\x87\x69\x5e\x18\xa4\xf6\xf8\x9c\xa5\x03\x5c\xce\x5c\x6f\xbf\x63\x1b\x12\xfb\x1a\x39\x9a\x4c\x87\x38\xf2\xfd\x9b\xc7\xea\x5a\x17\x97\xe2\xf4\x88\x3b\xab\x18\x0e\x49\x2f\x28\xd0\x48\x17\x70\xa0\x13\x79\x4a\x45\x35\x48\x19\x4f\x28\x68\x8b\x7c\x98\xaf\x15\xd1\x9e\x0d\x4d\x62\x3a\x06\x14\x38\xc2\xfe\x89\xbd\xcf\x22\x7c\x18\x60\x74\x15\xde\xd4\xea\xa4\x17\x2a\x50\xdb\xf9\x79\x8a\x23\x09\x7f\x4d\x6b\x42\xd8\xb7\x14\x07\xe5\x4f\x54\x84\x52\x98\x65\xbb\xd7\x97\xda\x40\xff\xca\xe4\xa9\x23\x2f\xf1\xca\xf0\x60\xf8\x6f\x57\x08\x6b\x8d\x54\xcc\x59\x0d\x8d\xff\x2d\x4a\xbc\xa1\x6e\xf3\x29\x4e\x3b\xd5\x57\xb6\xc0\xd9\x36\x82\xeb\x51\x73\xfb\x81\x05\xc7\x8e\x43\x6f\x08\x7b\x70\x47\xd3\x98\x1e\x9f\xd4\x2d\xb5\xc5\xbe\xc6\xfe\xfd\x9c\x5b\xf8\x64\xa4\x0e\xd4\xb7\xb1\xcd\xa4\xf3\xc3\xdb\xe3\xa9\xb1\x3a\x83\xdf\xc6\xb2\x46\x6e\xf0\xb4\x92\xb4\x02\xdb\xb6\xf0\xa2\x4c\x64\x05\xb0\x2d\x18\x8a\x8b\xbc\xa6\xc2\xe5\x3e\x27\x85\x72\x0c\x04\xaa\x02\x8f\xb4\x7c\x56\x6e\x57\x6b\xe2\x0d\xfa\xf9\xd3\xf4\x29\x58\xaa\x0d\xd5\x02\xa8\x7d\xbd\x0b\x5a\x6d\xe9\x1c\x3d\x9b\x50\x49\x60\x65\x20\xe9\xf0\x08\x74\x0c\x04\x22\xef\xe5\x10\x79\x68\x26\x6c\x23\x5c\x52\x20\x00\x5c\xcb\xce\x8b\xae\x3f\xe8\x26\x5e\xcd\x79\xe2\x07\x7c\x13\x09\x0d\x87\x4b\x2e\x94\xa3\xe9\x9a\x62\x26\x48\x94\x5c\x1e\x8e\x96\xcb\x4b\x1e\xc7\x5f\x8e\x39\x03\xe0\xdc\x96\xe9\x99\x7e\x3f\x4d\x3a\xec\x4f\xb9\xee\xc6\x05\x27\x90\x79\xae\xd2\x5c\x52\x7a\xf2\x1d\x26\xca\x47\xa6\x72\x73\x02\xba\x4d\x4f\x03\x3b\xb4\x19\xa8\xe3\xf9\xac\x8b\x98\xe3\xd2\xba\xcf\x78\xc6\x97\xff\xf1\xf1\xb1\x52\x53\x84\xf1\x82\xbb\xff\x78\x4b\x5b\x54\x3c\xa4\xe4\x78\x6b\xe4\x69\xc2\x94\x89\x1d\x45\x8f\xa5\xe1\xa8\x93\xab\x62\x4f\x14\x2c\x14\xd6\xf4\x71\xd6\x39\xb6\x20\x47\xc6\x57\x8b\xa6\x2b\x32\x33\x18\xc8\xd9\xe2\x78\xa0\x1c\x42\xa8\xea\xdf\xcc\x1d\x6e\x96\x3e\xd2\x52\x66\x06\xbd\x86\x47\x6b\x02\xfc\xc3\xd7\x3e\xc3\x97\x66\x45\x66\xc8\xb4\xfb\xd8\xf8\x9a\xe2\x1a\x7d\x7f\xa4\x70\x42\x17\x15\x1c\xa3\xf4\x75\x99\xc0\x4b\xd7\x4b\xb9\xf9\x4d\xa9\x17\x1c\x9f\xa8\x9d\x6e\x3f\x97\xf6\xef\x6f\x0e\x13\xfb\xea\x40\x51\x3a\x38\xed\x27\xd7\xe2\x7f\xa2\x3c\x02\xc4\xaf\xed\x99\xac\x6f\x42\x3b\x2c\x88\x9f\x90\x1e\x1b\x45\xda\x37\x89\x88\xe1\x98\xca\x76\x9d\x77\xf1\xc7\x60\x98\x44\x4e\x2c\x4b\xa4\xb1\x1b\x4a\x32\x7b\x1b\x6a\xfa\x20\x69\xd0\x3e\x47\xfe\x21\x0e\x67\x38\x25\x7c\xad\x49\x88\x86\xed\xbc\x88\x8a\x61\x61\x49\xd6\xb0\x4e\x27\x7b\xfb\x0c\x31\xbc\xc3\x16\xdb\x38\x5e\xef\xab\x71\xbf\x3f\x61\x01\xdb\xa6\xf3\x50\xe3\x57\x7e\x49\x54\x4f\x15\x48\xf2\x77\x46\x3e\x65\x71\x03\xc6\x48\xc8\x20\x3c\xc3\x14\xf3\xfa\x2b\x31\x66\x9f\x0a\xaa\x11\x42\x48\x07\x36\x69\x78\x8c\xeb\x71\x05\x1b\x3b\xae\x72\x86\x5e\x60\x0d\xf3\xe6\xd4\x2e\x9c\x70\xe7\x39\xaf\x65\x3d\xb0\x66\x99\xb2\xc8\x78\xec\xd7\x03\x55\x30\x3c\xad\xe4\x6b\x4f\x2b\x52\xf7\xd7\x9d\x26\x4a\x31\xe0\xc3\x1e\xe6\xf0\x4e\xe0\x4d\xe3\x9d\x3a\xd1\x01\x52\xa3\x9f\xf2\xc0\xbe\x2d\x95\x84\x5a\x1f\xe9\x82\x9d\x87\x2d\xe4\x83\x34\x33\x1d\x6e\x88\x67\x20\xa5\xe2\x33\xbb\xa8\xe2\x70\xb0\x6f\x96\xff\x26\xfa\x26\x5e\x7a\x74\xbd\xa6\xc5\x74\x8e\x72\xdf\xcb\x12\x42\xc1\xa6\x9e\xd0\x06\xf6\x84\xc2\x4f\x98\x78\xd8\x8f\x92\x61\x1f\xde\x28\x17\xba\x46\xdb\x51\x1f\x88\xf8\x3e\x70\x0a\x0a\x79\x69\x8b\x96\x99\x37\x96\x3e\xe9\x98\x13\x5d\x53\xff\xa5\x1a\xc1\x82\x97\x9a\x69\x82\x2a\x0d\x8e\x44\x66\x9c\x81\xa9\xbf\xae\x2a\x2b\x3b\xc7\xe5\xa0\x23\xbf\x30\xad\xe8\xa6\x9c\x34\xc7\x73\x4e\xb7\x5a\x83\x88\x3c\xfc\xd3\x74\xe2\x68\xa9\x27\x65\x14\x01\x10\x37\x16\xbc\x18\xb7\xa7\x72\x6b\x9b\xce\x1e\x58\x5f\xe6\xa0\x56\xc7\x0c\x4b\x9f\x72\xc2\x68\xec\x01\x47\x57\x51\xe5\xc4\xc1\x74\x1e\x47\x01\xdf\x8c\x14\x47\xf2\x05\xf2\x57\x24\x95\x41\x27\xae\x24\x9f\xb6\x0f\xcf\xfc\x3c\xe5\x66\x11\xcc\x21\x8d\xfc\x40\xa5\x94\x1f\x54\x75\x47\x9e\x3f\x54\x86\x49\x1d\x25\x37\xc6\x79\x71\xbe\xa9\xc4\x70\xe5\x0c\x64\x36\x2f\xcc\x30\x33\xcc\x4e\x8d\x23\xfb\x92\x3e\xbf\x2f\x05\x3f\xf7\x19\x85\x3d\xcf\xa0\x35\xad\x68\x11\x04\xb3\xe7\xea\xb2\x3e\x3a\x86\xaa\x88\x64\x28\xb7\xbf\xf1\xe2\x6c\x73\x98\x8b\x4b\x2b\x22\x06\x1e\x97\xf3\x53\x0d\x3e\xdc\x70\x41\xd4\xc0\x64\x45\x14\x46\x03\x92\x1c\x6f\x38\xe6\xf2\x77\x46\x4a\x7e\x9c\x3b\x6e\x31\x72\x53\xe3\x47\x75\x0f\xe7\xdf\xf0\x8d\x19\x57\x83\xc6\xd7\xfe\x81\xd3\x52\x28\x1f\x15\xa9\x82\x0f\xd8\x39\x86\xab\x7c\x03\xae\x25\x30\x0d\xb7\x48\xcf\xc8\x21\x25\x1d\xac\xf9\xca\x44\xa5\x58\x91\x7f\x70\xef\x39\x00\xf5\x0f\x83\xdb\x49\x98\x8f\x29\x50\x40\x34\xb4\x49\x69\x52\xee\xeb\xc0\xa2\x43\x3c\x77\x6a\xd4\x78\xe6\x19\x4e\x55\x43\x76\x18\xde\xe0\x6d\xdd\x2e\xfc\x7d\x0d\xf9\x3c\x46\xa4\x3f\x28\xd7\x1d\x87\x33\xe5\x8a\x9f\xa5\xcb\x86\xf3\xea\x81\xd6\xc8\x42\x6e\x0f\x99\xaa\xcd\xc0\x4b\xe6\xb2\x84\x1b\x42\x81\x33\xa8\x3c\x3b\x2c\xba\x6f\x1d\xbe\x86\x02\xb5\x8b\x2c\xf7\x4b\xbc\x3e\x35\xf6\x61\xf2\x4a\x64\xcb\x48\x07\xa9\x75\x8c\xc0\x1d\x45\x82\x7f\xa7\x6e\x79\x2c\x27\xf6\x08\x9a\x51\x11\xef\x81\x59\x16\xbe\x35\xf3\x6b\x72\xe3\xba\x22\x6f\x8e\x92\x3c\xca\x9d\x9c\xaf\x24\xc3\x7c\x98\x7f\xb9\x16\xef\x65\x8a\xc8\x26\x0e\xef\x25\x5a\xe7\x8a\xa9\xfb\x72\xa5\xdb\xa5\xf4\x7e\xb2\x74\x25\xca\xa3\x34\x61\x16\x5f\xe1\x5c\xf6\xf6\xfa\x6c\x3d\xb9\x49\x1c\x33\xe9\xa5\xb0\x28\x97\xd3\x2f\xf4\xca\xdb\xd3\x63\xae\xb0\x6e\xb3\xc2\x44\x49\xbc\x0a\x57\x44\x83\x6f\x71\x64\xde\xa7\x01\x15\x7e\x36\x9f\x1e\x29\xec\xab\x26\x7f\x08\xaf\xe6\x6a\xbe\xaa\x23\x86\x86\x58\xb4\xd3\xbc\x59\x60\x51\x36\xd7\x3e\x52\x2e\x64\x76\xb4\x38\x94\x17\xc9\x01\xed\x40\xac\x0e\xd0\x20\x20\x50\x7e\x4f\xfe\x01\xc8\xa7\x70\xb0\xd6\x01\x50\x4c\x98\xa5\x79\x3e\xe5\x17\xf0\x1f\x07\xbe\x43\x00\xb8\x59\xd1\x7b\xd6\x3f\xd9\x8f\x5e\x9d\xa2\x3d\x07\x47\x15\x62\x8d\x18\x06\x0d\x33\xbd\x58\x27\x8a\xc3\x6a\x98\xba\xe9\x62\x5d\xa5\x0a\x77\xb7\xfc\xbc\xee\x18\xfb\x21\x35\x51\x66\x3b\xd3\xca\xee\xdf\xa0\x83\x59\xfa\xb7\x54\x2f\x17\xc6\x8d\xff\x48\x51\x11\x89\x0c\x27\xcb\x79\xd7\xb1\x8b\x7d\x16\xe7\x7f\x91\x45\x49\xba\x62\x94\x44\x05\xf3\xc8\xf2\x8d\xf3\x45\x4b\xbf\x29\x4a\x42\xe0\x30\xb4\xf2\x97\xf4\xc0\x3f\xea\xab\x73\xd6\xee\xa3\x75\xe0\x24\x22\x4a\x63\x81\xc9\x62\x04\x3f\xe6\xfe\xfd\x09\xcd\x65\xdd\xc5\x87\x36\x57\xf9\x7c\xf9\x93\x08\xfc\x6e\xd3\xc4\xc1\xa1\xbc\x1a\x28\x92\xac\xa3\x23\x45\x1e\x02\x8e\x7b\x2d\x4e\x02\xd3\x38\x85\xae\x35\x96\xd8\xa7\xd5\x0e\x6b\x7a\xa7\x26\x71\x78\xb0\x99\x87\x99\xe9\x83\xa7\x79\x02\x29\xe8\x39\x2a\x4f\xaa\x9a\x64\xc7\x1a\x1c\xa0\x42\x3c\x4d\x43\x20\xcc\xd3\x35\xd0\xd8\xbe\x29\x2c\x44\xbc\x17\x84\x86\x1b\xfd\x97\x7c\x5d\x51\x66\x9e\x9f\x3f\xd4\x34\x5f\x21\xeb\x80\x25\x7d\x7e\xb4\xf3\x2b\x72\xa9\x9c\xfb\x7e\x18\x9b\xe1\x52\x2f\x8e\x12\x55\xd1\xe4\xe1\x15\xf8\x48\x15\x6b\x7c\xb0\x59\x18\xef\x86\x61\x54\x7f\x43\x15\x21\x7e\x43\xe1\xcb\x1d\x0f\xcc\x04\x9d\xdd\x48\x71\x03\xaf\x29\x2a\xe7\x7e\x14\xc7\xcc\xae\x02\x93\x01\x07\x0d\xa7\xd2\x51\x05\xd8\xe6\x6c\xa0\x54\xde\x6a\xea\x4e\x71\x3a\xc8\xa3\x8e\xc4\x5c\xc0\x3b\x4e\x91\x33\xc5\xd7\xad\xaa\x45\x3e\xd8\xa4\x0c\x6c\x26\xb9\x77\x11\x1c\xac\x5a\x24\x78\xb5\x17\xea\x7a\x05\x26\x74\x0a\xe6\x7c\xc3\x41\xf9\x18\x92\x54\xa9\xd3\xe2\x28\xa3\x12\x79\x5c\xcc\xd4\xa6\x16\xa5\xd9\x74\x88\x03\x9b\x84\xe9\x30\x33\x4b\xc4\x0c\x4b\x4b\x02\xa7\xfe\x6d\xa5\xf4\x7c\x5b\x79\xf3\x7d\x4b\x8e\xd7\xdc\x61\x4e\xaf\xec\x44\xbf\x3b\xdf\xa8\xa6\x90\x5f\xf8\x85\xff\xa2\xd1\x50\x4a\xe2\xde\x1f\xd6\xcd\x62\x7f\x7f\x61\x4e\xa5\x1a\x76\xed\x21\x80\x1b\x32\x65\xec\xb9\x0a\x5f\x37\x06\x51\xa8\x90\x1b\xfb\xf7\x73\xb2\xef\x0b\x2d\x5f\xc6\x71\x2f\x03\xde\x64\x49\xbf\xf9\x68\xe0\xec\x24\x23\x4d\xd1\x7b\x4c\x77\x6b\x9c\xf7\xfa\xff\xbf\xf9\x7b\x13\x62\x8d\xa3\x09\xe5\x44\x4f\x58\x7b\x8a\xbc\x63\x4c\xc4\x5b\xea\x04\xe4\xe6\x6a\xbc\xc8\x77\x11\xbe\x09\x51\xa6\xd2\x21\x38\x3f\xf2\x2a\x32\xeb\x23\xcf\xcc\x79\x5a\xc3\x92\x40\x3c\x8d\x38\xf5\x87\xf4\x2e\x08\x4d\x77\x8d\x9f\x52\x51\x50\x6c\x97\x5c\x8d\x5b\xd4\x38\xd0\x90\xcb\xd7\x1a\x7d\x9f\xa5\xc4\xc5\x9f\x66\x04\x8a\x59\x70\x71\x8a\xe7\x43\xc0\xd3\xf0\x35\x5e\x06\x27\x08\x83\x57\x25\xd5\xa7\xf8\x03\xca\xa0\x75\xca\xd7\x08\xd7\x15\xc7\xf8\xd9\x91\xd7\xca\xbc\x3b\x81\x39\xb5\xed\xd5\x5d\x3e\x6d\x70\x0b\xa6\x15\x13\xfb\x3f\x07\xde\xe4\x3f\x04\x24\xbe\x74\xe2\x96\x03\xc2\x7f\xa4\xa5\xda\x4f\x3a\xe6\x46\x93\x85\xbd\xa9\x0a\x3b\x8a\xa0\x9f\xe9\x0d\x70\xd0\x5e\x53\xa2\x03\x61\x6c\xb2\x28\xb1\x65\x80\x40\xcb\x07\xa0\xcf\x9b\x0a\x00\x7a\x73\x22\xcf\xd0\xb1\x9d\x2f\xc1\x89\x80\x03\x0f\xe8\x10\x76\xc2\xd3\x2d\xdf\xfc\xfd\x54\xab\xf1\xc2\xec\xd6\x31\x85\x1b\xbf\x88\x86\x68\x9c\x46\xcc\x90\x8a\xb5\xc2\x7e\xbf\x53\xd5\x2f\xf7\x16\x86\x00\xb2\x0f\xa8\x43\xfc\xb5\x31\x1d\x06\xae\x49\xc7\xe5\x34\xaf\x06\x8a\x3d\xe1\x2e\x70\xa4\x38\xcd\xb6\x34\xf7\xe5\x83\x91\xe2\x98\x7c\x0c\x2e\x3d\x66\xed\x4a\xe0\x0f\x3a\x26\xe7\x43\xa4\xfb\x80\xc4\xcd\x38\x53\x34\x52\x4a\xcf\xf7\xcb\x2d\xb0\x75\x1b\x81\xb0\xc4\x1b\x65\x28\x21\xd4\x20\xd8\x61\x52\x35\xab\x92\xf7\xbd\xd4\x1c\x64\x51\x07\x99\x41\x47\xfa\xa9\x88\x3e\xeb\x24\x17\xba\x51\x62\x12\xa7\x3c\x01\x2c\xdf\xa6\xc6\x8d\x6f\x6a\x52\x51\xdb\x1e\x16\x33\x2a\xf9\xc6\x36\x58\x3a\xeb\xcb\xaf\x90\xf6\xa4\x72\xd6\x38\x55\xaa\x38\xa2\xd6\x14\x5b\x5f\x6c\x0d\x55\xa2\xca\x6f\xc0\x8a\x3e\xaf\x9a\x88\x80\x99\x60\x0e\x43\x17\xce\xe7\x61\x16\xb5\xdb\x31\x2b\x17\x0a\xfb\xc0\xc6\x48\xa9\xb7\x6f\x28\xbd\x82\x30\x36\x7d\x90\x7a\x2d\x1e\xe4\x0c\xf9\x37\xe9\x7b\xf9\x5a\x41\x0e\x6d\x9e\x93\x2a\x9a\x52\xb2\x60\xc0\x1e\xdf\xd4\x11\xf2\xf7\xd3\x0c\x24\xab\x5b\xfc\x08\x92\xeb\x51\x4c\x3f\x4f\xb7\x3c\xc0\xe8\x36\x16\x02\xcc\xdf\xed\x0a\x6a\x76\xee\x70\x33\x31\x79\xc7\x7c\xe3\x57\xff\x2e\x24\x3b\x26\x04\x41\xb8\xfe\x2f\x76\xb1\x9a\xef\x39\xd8\x1c\xd8\x8e\x89\xe5\x88\x43\x08\xf8\xeb\x23\x55\xed\xfa\x75\x45\x76\xca\x5d\x20\xc5\x2a\x26\x54\x34\x85\xe9\x35\x10\xcd\xbf\xaf\x84\x61\xa1\x46\x82\xe8\xef\xbb\xa8\x99\xb0\x57\x5e\x09\xd6\xbe\xda\x24\xb2\xe8\xe9\xf2\x64\x41\x2e\xf2\x61\xb8\x6d\xd2\x6b\xad\x92\xe5\xf7\x91\xe7\x95\xfc\xf0\xe7\x14\xed\x4e\x98\x66\x83\x34\x03\x36\x70\xc1\xf7\x0e\x29\xb6\x9d\xf5\xc0\x23\x13\x97\x4c\x96\xb0\x88\x37\x7e\xe6\xaa\xe2\x16\xbd\xaa\x8a\x60\x59\x1a\x2e\xdb\xae\x0f\xba\x98\x12\x56\xc7\x3d\xeb\xa3\x87\xbd\xc2\x2e\xd2\x1b\x72\xe8\xd1\xa3\x3b\xc9\x28\xd7\xfa\x8f\x93\x45\x28\xab\xea\x30\x41\x71\xd4\x45\xb6\xfb\xa0\xeb\xb1\x55\x94\xc3\xe7\x34\x51\xe1\x5d\x65\x49\x85\x16\x36\xb2\xf9\x0c\x0d\xba\x93\xa0\x77\x7e\xea\x09\xac\x29\x57\xe7\xdc\xbf\x9f\x41\xe7\x5b\x81\xcf\x38\xbe\xaf\x33\x8e\x36\x1c\x66\x51\xb1\xba\xdb\xf7\x3d\xa3\xc8\xe6\xf8\x4a\xcb\x97\xc4\x77\x4c\x90\x8f\x81\xd4\x8d\xaf\xe9\x09\xa4\x98\xab\xfc\x46\x56\x1c\xe3\x9b\xc9\x06\x8a\x8e\xfd\xbc\x57\xf7\xba\xa3\x71\x63\x37\x61\x72\xf0\x34\x9c\xa9\x80\x87\xf2\x2e\x5e\x0f\xcb\xe5\x86\x16\xf7\xdb\x1c\x29\x47\x7e\x13\x16\x1e\xaf\xf0\x9f\x68\xb1\xc2\x5c\x6f\x20\x03\x23\x0e\x93\x66\x3b\xda\x82\x33\x82\x70\x8c\xf3\x1b\x02\xd2\xf2\xd8\xba\x46\xcb\xf3\xb6\x1c\xd5\x64\x3b\x17\x41\x00\xc9\xd2\xc4\x81\x97\xb0\xdf\x04\x14\x5f\xa4\xe0\xe8\xec\x40\x92\x16\x07\xae\x14\xb7\xca\x73\x80\x15\xf5\x94\x4f\xd1\x37\x45\xcf\x12\x47\x6a\x8e\x3e\x7e\xac\x8a\x93\xca\x05\xb9\x4c\x6b\x1b\xa9\xbd\xb7\x14\xb0\x63\x10\x9b\xa4\x34\xa9\x3e\x0b\x88\x7e\x2b\x16\x12\x1d\xd3\x18\xc3\x91\x78\x57\x05\x03\x51\x7f\xc0\xad\x00\xe5\x1f\x63\x38\xfe\x3d\x0d\x21\x5f\xab\x6e\x35\x9b\x74\xf6\x96\x4b\x0c\x61\xf8\x5f\xe2\xfc\x02\xc1\x44\xb3\xe5\x7d\x16\xb0\x40\x31\x67\xf8\x48\x55\x94\x9f\x1c\x7b\x4c\xf7\x97\x94\x2e\x01\x0b\xd0\xe3\x66\x1a\x4f\x2a\x0d\x16\x34\xcd\xf8\xae\xbd\x63\x4c\xa0\x8b\x00\x9d\xff\x72\x8e\xbc\x02\x01\x0a\x2a\xaa\xff\xd5\xa4\xe8\x59\x1a\xcd\xf2\x97\x15\xf6\xff\xa0\x57\x69\x3c\xb0\xe0\x80\x94\x12\x2e\x13\x86\x20\x32\x31\x21\x2e\x71\x3c\x7d\xa9\xe5\xb9\x15\x79\x63\xe0\x8c\x7c\x40\x8e\x2c\x8c\xe3\x09\x72\x64\x75\xce\x9f\xa9\x3d\x2b\x49\xdb\xfd\x73\xd0\xe2\x6e\x4c\x78\xa5\x8e\x3c\xeb\x87\x9a\x9c\x32\xb3\x44\x11\xdb\x50\xd6\xf9\x38\xcd\x10\x5f\xd7\xda\x9c\x4e\x16\x75\x0b\x14\x30\x1c\x75\x8a\xa7\x51\xa9\x20\x82\x49\x74\x2c\xcb\x6c\x3e\x48\x3d\xa3\x1a\x3c\x9b\xc6\x58\x15\x9f\xef\x8d\xfc\xb1\xf0\x78\xcb\x63\xb0\x12\xf3\x1a\x1d\x59\x96\x60\x79\xd2\x42\x4f\x3f\xcf\x37\x95\x20\xfd\xc0\x42\x33\x33\x83\xa8\xc3\x31\x93\x57\x54\x9e\x28\x9c\xd4\x64\xcd\x0a\xdb\x1f\x88\x64\x33\x33\xce\xab\x90\xb4\xde\x04\x0f\xb2\xf4\x55\x10\x18\x31\x3b\x13\x6d\x46\x61\x6a\xf2\x0a\x4c\x89\x25\xd9\x82\xc2\x30\xc6\x42\x98\xe4\x90\x51\x73\xc8\x13\xaf\x6d\xa1\xb6\x47\x11\x31\x65\x07\x16\xc3\x86\x6a\xe3\xba\x1f\x78\x49\xd7\xf3\xaa\x0d\x67\xc5\x24\xa4\xf6\xec\x7b\xd0\x98\x68\x8d\x6f\x46\xa2\xea\xd7\x89\xf2\x28\x09\xe3\xc8\x85\xa3\x48\x84\x22\x3f\xc2\xd7\x75\x0c\x04\x6d\x93\xdb\xd8\xe6\xf9\x94\x3f\x1c\x77\xb4\xc8\xc2\x3a\xd0\x9b\x7b\x97\xeb\x8a\x19\x2d\x2f\xd2\xb8\x78\xad\x6f\x98\x0c\xc4\x11\xe1\x78\xa0\x89\x4a\x59\xd8\x15\x9b\xad\x16\xbd\x28\x59\xda\x53\xae\x7f\x81\x83\x35\x1c\xcb\x33\x88\x91\x5d\x27\x7b\xb9\xd9\x61\xed\xa7\xe0\xa8\x0b\x2d\x54\xb9\x01\x70\x90\xbe\x07\xf3\xec\x52\xc9\x6e\x8b\x9d\x51\x74\x73\xd5\xa6\xeb\xb9\xc3\xcd\x41\xb4\xe4\x82\x70\x29\xcb\x78\xd3\x76\xbe\xb2\x13\x5f\x98\x2d\xfd\xae\x02\xed\x4d\x8e\xd7\x61\x71\xf6\x33\x79\x1d\x28\xb9\x34\xcc\x56\xa2\x15\x4b\xd5\x45\xac\xd4\x5b\x7c\xba\xe0\xac\x41\xff\x0d\xec\x3e\x53\x43\xc1\xeb\x3c\x5b\x93\x17\x6a\x76\x59\xa1\x82\xc1\xb2\x8a\xaa\xe1\x52\x25\xf5\xb7\x38\x7b\xc8\xfb\xed\xdc\xa3\xc7\xb4\x57\xf4\x9a\x42\x81\xb5\x3d\x49\x3d\x3f\xdf\xec\x44\x2b\x36\xcb\xa3\x6e\xc4\x81\x3d\x96\xe3\xdb\x1a\x59\xfa\x76\xf0\xb4\xa2\x32\x4f\xf2\xa8\x43\x10\xda\x5d\xaa\x7b\xee\xbc\x52\xf8\xbd\x47\xc1\x3a\x33\x54\x4e\x74\xe8\x29\x08\x32\xd3\x71\x31\xd6\xb0\x92\x67\x99\x3b\xdc\x3c\x62\xb2\xc4\x41\xe1\xa4\x4b\xbb\xe1\x98\x3d\xa6\x5b\x9e\xd9\x63\xb3\x32\x7f\x5f\x6d\xda\xa8\xe8\x59\x68\xd5\xb9\xee\x84\xfd\xfb\xb7\xae\x8f\x14\x17\xe7\x7b\x88\xac\x24\xa1\x57\x8e\x1a\xbc\x94\x3d\xc4\x98\x81\xcf\xb1\x08\xba\x24\x2e\x3d\xa2\x2b\xb4\x99\x35\x71\xae\x1a\xba\x27\x45\x0c\xb6\x5b\x9c\xfd\x73\xcd\x74\x98\x84\x0c\x52\x76\xdd\x7b\x1e\xee\xf0\x9b\x15\x38\x15\xfc\xc4\xa5\x9e\xc7\x04\x8a\x0b\xef\xf3\x2e\x6c\x50\xf1\x46\x1b\x95\x20\xe0\xab\x65\x24\xd3\xb5\x59\x36\x09\x0b\x04\xc5\x13\x5f\x57\x90\x2e\x65\xe4\x68\xf0\x9c\x58\xa1\x53\xe4\xf2\xf0\xf5\xd8\x7b\x8e\xdd\x34\x2d\xda\x26\x8e\x67\x7c\x9f\x3e\x4b\xf6\xea\x5e\x0a\x2c\xf9\x93\x81\xae\x31\xfc\x8e\x6e\xa2\xfb\x9d\x3a\x38\x46\x52\xbe\x78\x18\x0f\xdb\x9c\xac\xad\xb3\xea\xfb\x94\x6d\xb2\x06\xf4\x13\xa2\x23\x56\x3e\x12\x36\x1e\x24\x45\xa5\x0a\xa2\x79\x19\x87\xdd\xee\xb4\xe7\x46\x3b\x47\xc5\x31\xc7\xf9\xeb\x39\x94\xd1\xcc\xe7\xb8\x69\xbd\x94\x2f\x7a\xe6\x29\xcd\xe2\xb4\xa3\x5c\x9e\xef\x28\x3e\x85\x35\xce\x12\xc7\x28\x90\xed\x69\x29\x28\xf9\x5d\x9a\x0a\x1c\xdb\xb7\xd4\x11\xdf\xb1\xa1\xed\xb7\x6d\xb6\x8b\x9c\x4a\x84\xb2\x9c\xb8\x43\xa0\xf5\xbe\x42\xa6\xac\x21\x87\xed\xd2\xb6\xe5\xd8\x4a\x46\xa1\x7c\x22\x38\x4b\x3b\x5b\x9a\xca\x22\x59\x89\x3c\xd8\x85\xd5\x08\x02\x25\xcf\x7b\x69\xa2\xdb\x24\xc9\x85\x8f\x1e\xf8\x28\xb4\x3e\xf1\xf5\xf8\x31\x7f\x7a\x45\xb9\xcd\x72\x00\x72\x84\x81\x5a\x43\x89\x99\xe0\x41\x8a\x02\xaa\x56\xfc\xb3\xe0\x09\x87\x06\x12\xcc\x38\x1e\x0e\x65\x54\xce\xfc\xf1\x4d\xad\x4e\x72\x9e\xa6\x89\xf4\x40\xa0\xfc\x74\x27\xf0\xca\x77\x2c\x46\x00\x2f\xf2\xbc\x6a\x31\x89\xa3\x2e\x18\x34\x45\x5b\x4a\x35\x36\x2b\x04\x0d\x3f\x2d\xe7\x50\x95\x87\xfe\x4a\x3a\xcc\x12\x13\x47\x79\x19\xd1\x95\x51\x87\xd4\xa1\xfc\xb1\xf4\x6b\xe4\xc8\xa1\xc8\x78\xba\x56\xb5\xd2\x35\x39\x36\x3c\xaa\xe6\x82\x42\xa1\x5c\x98\x08\x9d\xba\xa6\x68\x28\xc9\xf0\x53\x4a\x26\xfc\x54\xf0\x39\x67\xa4\x86\x89\x19\x16\xbd\x34\x23\x6a\x87\xd2\xa8\xb1\x10\x00\x3d\x8d\x88\x02\x38\xb9\xd5\xcc\x74\xf2\x22\xb3\xb6\xe0\x4a\x27\xb2\x7a\xdc\x8a\xc5\x37\x95\xac\xc7\xfc\x7c\xb3\x67\x56\xb8\x99\x5c\x12\xe7\x1e\xd9\x7a\x4e\x75\x0b\x16\x3d\x9b\x66\xc8\x4a\xea\x96\x31\x05\xa7\x58\xf0\xec\x08\xce\xf8\xec\x24\xe3\x23\x4a\x4d\x8a\x15\xfb\x9c\x2a\x98\x11\x25\x45\x96\x26\x51\xb8\xbb\x1c\x3e\x39\x71\xe9\xc9\xf9\x86\x1c\x06\x11\xa5\x21\x6b\xca\x2a\xa6\xca\x3c\x30\xd9\x29\x62\x96\xb3\xc8\xf2\x29\x85\x1b\xe1\x9b\x3b\x5b\x39\x82\x17\x16\x0e\x35\xfb\x26\x19\x76\x0d\xe3\x7c\x49\xa8\x80\xb8\xbb\x36\x82\xcf\x7b\x0d\xcc\xcc\x24\x39\x29\x5a\x12\x77\xa2\x17\x9d\x5b\xd7\x7a\x76\xeb\xaa\xf4\x16\xa6\xcf\x3e\x5e\x4e\x9c\x74\x3f\x2a\xda\x76\x74\x2e\x62\xcd\x32\x5b\x2c\x8e\x29\x74\x91\xc3\x1e\xbf\x49\xe7\x9a\xab\xcc\xb8\xd4\xf3\xaf\x05\xba\x75\x97\x02\x81\xad\x73\x74\x74\xbb\xca\x4d\xb9\xbc\xa4\x13\x45\xb5\x06\xdc\xd2\x58\xd3\xab\x98\x35\x3c\x1d\xdb\x7e\x97\x41\xf1\xb9\x91\xf7\x55\x9e\xa9\x3b\x4c\x42\xd5\x49\x8b\x23\xe0\x4f\x02\xef\x73\xfe\x49\x0d\x74\xe9\x60\x33\x36\x4b\x4b\xae\x98\x85\x77\xd8\x41\x75\x22\xbe\xae\xd4\x89\xca\x0f\xd9\xb8\x63\x33\xb6\x5b\xc2\xf0\x59\x7e\x46\x18\x42\x95\x73\xdb\x33\x71\x9c\x1e\xb1\x19\xcd\xca\xd6\x4d\x9a\x8f\xad\x9b\xca\xfd\x35\x6d\x93\x74\xd2\x84\x1d\x25\xe4\xec\xaf\xa8\x6a\xfe\x15\xd5\x2c\xd8\xb6\x4b\x51\x52\xfa\x2f\xbb\xbc\x71\xe7\xd2\x03\xbc\xa4\xab\x4a\x01\xee\x06\xd6\x99\x13\x70\x28\x17\x02\x52\x22\x8c\x77\xe5\x1b\xd5\xee\xb4\x34\xb4\xd4\x89\x38\x77\xd8\xf5\x97\x94\x53\xcb\xd7\x13\x96\x22\xed\xac\xee\x6d\x38\xee\xbd\x7f\x8b\xf9\x12\xe3\xa6\x3a\x2e\xd1\x30\x85\xf4\xc3\x3e\x20\x68\xb9\x7b\x18\xcf\x8d\x61\xbe\x35\xf2\x2a\x5b\x5b\xbc\x84\xb0\x41\x76\x02\xa4\x0d\xcc\xc5\xef\x2a\xe9\xd5\x47\xc7\xaa\x53\xe2\xa8\xd2\x1c\x9f\xa2\x92\x94\x24\x42\x6b\xed\xb9\x81\x54\xa8\xfb\x08\x47\xd9\xb2\x8b\x9f\x50\x2a\xb9\x2b\x69\xbc\x62\x3b\xf0\x4a\x71\x86\x1f\x53\x24\xa1\x37\x94\xfc\xc3\x1a\x25\xb7\x84\x98\x5f\x39\x17\xac\x0c\x24\x28\x6e\x55\xfd\x7a\x75\x60\xb3\xc8\x26\xa1\x9d\xa1\xef\xc7\xd1\x8a\xe8\x19\x9e\xd7\x55\xcd\x5b\x74\x46\x45\x60\x68\xee\x42\x94\xf5\x4f\x6a\x3d\x3c\x49\xbf\xa1\xab\xc1\x71\x4a\xb9\xce\xaa\x37\x46\x4a\x21\xef\xba\xd6\x95\x8f\x87\xfd\x36\x6f\x09\x21\xa3\xe2\xac\x15\xdf\xb8\x3e\xd7\xc1\xb0\x1d\x47\x79\x8f\x22\x0a\x27\xb5\xe4\xa2\xbf\x6a\x5f\xc8\xfc\x7c\xf3\xb5\x34\x11\x14\x3f\xbc\x96\x3b\xb0\x3d\x7c\xa3\x48\x1a\xb2\x34\x5c\x9e\xda\x8e\x3e\x16\x05\x2e\x35\x5f\xe3\x40\xa3\xf5\x96\x7a\x05\x09\xe2\x63\x5d\x9d\xc4\x52\x74\xc6\xb0\x1c\x0a\xbc\xfe\xef\x53\x11\xc6\x41\xfa\x9c\xab\xc5\xaa\x68\xfc\x47\x23\x1f\x0e\x7c\x5b\x01\x7d\x59\x67\x40\x1a\xcd\xb7\xaf\xb1\x17\x0f\x36\x4d\x3f\x1d\x26\x92\x39\xc0\x89\xc8\xf0\x29\xbe\xa9\xb4\x7d\x90\x34\x8e\x0d\x01\x23\x15\xb1\x6d\x7a\x7a\x8c\x3a\xe4\x71\x51\x49\xfc\x68\xe4\xd7\xee\x78\xa2\xc4\xb5\x1c\x25\xc8\x24\x63\xa0\x76\x70\x1e\x0b\x8b\xe6\x38\x1f\x1c\x1a\x79\x55\x8d\x71\x7a\xd6\x74\x04\x22\x87\x59\x61\x81\x21\xb1\x47\xe5\x38\x48\x09\xb4\x0e\x35\x6e\x62\x68\x37\xc0\xc8\xa3\x8d\x8c\xaf\x27\x9e\xd5\x44\x9d\xcf\x29\x9c\xc5\x0e\x0a\x8f\xf8\x0c\xc6\x7a\x93\x0e\x39\xd5\x7d\xda\x18\xfb\x8c\xdf\x6e\x7e\x3b\x8c\xd6\x34\x88\xb3\x11\x28\xed\x68\x29\xa8\xd6\xee\x31\x45\x64\x4e\xd0\xce\x89\x8c\x7e\x9f\x92\x68\xc8\x1a\x7d\x8f\x4e\x37\x7c\xf1\xdb\x81\xd2\x2a\xff\xa6\xea\xec\xbd\xab\x02\x9c\x99\x31\xad\x14\x05\x3b\x96\xbc\x69\xa3\xa5\xf6\x1c\x97\x3a\x30\x03\xbb\x60\xcd\xb0\xba\xae\x8f\xbc\x95\x7f\xbc\x55\xb7\x87\xdb\xc3\x3c\x4a\x6c\x2e\x10\x31\xe6\xb1\xd1\x34\x3c\xb5\x5a\xf8\x2b\x91\x2d\x12\xd3\xb7\xb9\x56\xf5\x7f\x23\x50\x3d\xae\x6f\xf8\x4a\x97\x89\x57\x4c\x27\xcd\x4c\x32\xe5\x7b\x84\xd1\x5f\xca\x6d\x2c\xf8\x9c\xf4\xb8\x09\x26\x32\x1d\x16\x03\x9b\x75\xd3\xac\x4f\xa4\x0a\x13\x2c\xe1\xd2\x14\xf3\x67\x8a\x0a\xb4\x74\x63\xa3\x64\x09\xf4\xf7\x58\x56\x37\x15\x07\x39\xd0\x0b\x30\x80\xf7\x47\x7a\xa5\x53\xd9\xab\xaa\x24\x45\xed\x06\xdd\xd8\xb2\x60\x17\x52\x4c\x9b\x4a\x4c\x6e\x53\xb7\x2c\xda\xcc\xee\xa3\x69\x80\x7b\xc1\xdc\xb9\x2e\x6f\xec\xb3\x5c\xe7\x55\x93\xcd\xdd\x40\x69\xd6\x5c\x0a\x94\x5d\xb8\x4e\x08\x49\xbe\x56\xb4\xb5\x7f\x4e\x47\x80\x64\x6e\xbd\x0c\xf9\x25\xac\x27\x85\x63\x14\x16\x35\x5e\xa7\x70\x13\x77\x8e\x55\x43\xd2\x71\x95\x14\xe8\x9b\x64\x39\x4a\xe0\x6a\x63\x22\x7e\xa4\xf8\x36\x7e\xe4\x68\x4b\xa9\x51\x8f\x8d\x0e\x0b\x0a\x6b\x2a\x11\xaa\xf8\xb8\x56\xd3\x30\x5d\x4a\xa2\xd7\x84\xe2\x09\x75\x53\x96\x5b\xe0\x1b\xd7\xd6\xd2\x8e\x53\xcf\x6f\xc1\xda\xd1\x23\x0f\xaa\xbe\xa1\x34\x98\xba\xcf\xa6\xcf\xb6\x1b\x7e\x97\x68\x08\xcf\x75\xa5\xc0\xee\x88\x64\xa7\x26\x08\x5d\x1a\x4e\xd4\x79\x0b\x26\x40\xfe\xa1\x76\xfe\x7b\xd6\xac\x20\xd5\xca\x8a\x58\xf4\x79\x51\xc7\xaa\x29\x18\x66\x26\x5c\x6e\xe8\xa6\x5c\xdf\xca\x7e\xca\x33\x01\x46\x09\x94\xb6\xb1\x57\x9e\x18\xfb\xfd\x7f\x51\x57\x80\xd1\xc3\x41\x86\xf4\x9b\x5f\x68\x79\x74\xf7\x30\xb7\x4f\xd0\x44\x6a\x2e\x1d\xd1\x58\xa0\xb9\x11\x98\x9e\x17\xca\xfd\x64\xd4\xf8\xc5\x17\xb7\x80\x08\x46\xbe\x92\x11\xde\xa8\x17\xdc\x0d\x26\x0e\x6b\x98\x03\xae\x68\x60\xca\x5c\xf7\xd7\xdc\x61\xf9\x02\x25\x3f\x3b\xd5\x2a\xdf\x81\x2b\x39\x8a\x60\x6b\x6a\xac\xaa\x83\x97\x46\x0a\x75\xbc\x67\x4c\x4b\x16\x1f\x3f\xa1\xfc\xec\xa2\xdc\x4c\xdd\x34\x23\x85\x77\x4f\x67\xe6\x03\x2b\xf8\x8c\xc2\xde\x44\xdf\x22\x0e\x64\xc3\x89\xdc\x5e\x54\x80\x31\x66\x21\x40\x02\x76\x0f\x52\xc6\xe2\x7e\xfa\xf6\xd8\x88\xc2\xb0\xe9\x72\xc8\x60\x1a\x2e\x21\x94\x90\x06\x7b\x8f\xb3\x01\xab\x8c\x74\xe1\x6f\x5f\x38\xd4\x5e\x19\x97\x71\x1d\xb9\x2d\x2e\xa1\xe9\xd2\xe2\x55\x58\xd7\xdc\xe1\xa6\xcd\x8b\xa8\x6f\x0a\x11\xb4\x50\x55\x62\xc1\xfb\x3d\x60\xb9\xb0\xea\x81\x3a\x30\x43\xb7\x2b\x61\x53\xaf\x05\x2a\x4f\x79\xad\x8e\x4f\xde\xe4\x84\xb0\x70\xf0\xce\xb5\xc0\x3b\xc8\x6b\xdb\x05\xd1\x0f\x2e\x1e\x6c\xbe\x30\xfb\x79\xd5\x13\xfd\x30\xf0\x26\xf0\xc3\xa6\xc7\x1e\xe5\xf8\x1d\x3a\xf1\x34\x63\x15\xec\xde\x26\xce\x58\x18\xe0\xf7\x27\xda\x06\xc6\x8a\x51\xf7\xd1\x96\x6a\xae\xfb\xae\x0e\xc5\x58\xa4\x5f\xb8\xfd\x1b\x5f\x9f\xf3\x20\x85\x32\x0c\x41\x95\xf5\x8a\x12\x79\xdf\xd9\x6a\xbc\x78\xd0\x8d\x01\x9d\xd0\x0e\x2e\xba\x38\xcb\x7e\xd2\x3d\x15\x5e\x5f\xa5\x79\xc5\xb9\x77\x05\x6e\x9a\x34\xd5\x95\xab\x42\x90\x1f\xb4\xe2\xd8\x33\x56\x36\xb4\x9d\xd9\x23\x36\x5b\x45\xab\x2c\x32\xf4\x48\x75\xf1\xb5\x33\x76\x59\xda\x6e\x13\xf0\xc3\x43\x4e\xf8\x0c\x94\xb2\xeb\x23\xce\xdc\x86\xcb\x33\xe5\xb3\xaa\x52\xbb\xf8\xf9\xf7\x68\x45\x89\xa2\x4d\x43\x49\xcf\xd0\x40\x03\xa9\x7c\x61\xe4\x63\xaf\x57\x86\x71\x34\x44\xde\x97\xc1\xa9\xaa\x0e\x54\x05\xd5\x94\xee\x41\x68\xb2\x4e\x94\x98\x58\x00\x8b\x28\xf8\xde\xd4\x31\xc3\x6f\x69\xcd\xe7\x1b\xb5\x05\x06\x6b\xf2\xc2\x66\x24\xc5\xbf\xb5\xa1\x9a\x21\x1e\xe0\xa5\xa5\x91\xef\x89\xc9\x1a\x0c\x91\xf4\xcc\xcf\x7b\xec\xd8\x01\xe1\x71\xdf\xd9\xf2\x62\x1c\x77\x75\xe2\x63\x3d\x50\x5a\x10\x9f\xaa\x2f\xcc\x6d\xdf\x96\xcf\xd0\xf0\x89\x87\x4f\x46\x3e\x71\xf6\x89\xa7\xe5\x8e\x4d\xd4\xcf\xf7\x4c\x30\x6e\xd3\x70\x0a\x66\x91\x96\xaa\xa0\x11\x15\xc3\x35\x36\x2a\x9e\xef\xaf\xd3\xb2\x07\x4a\xf1\x89\xb1\x52\xe0\x59\x9b\x48\x99\xd2\x06\x42\x49\x6d\x6f\xcb\x17\xa0\xd2\x01\x15\xb1\x49\xcd\xd5\xe1\x6b\x01\x19\xff\x2c\xa0\x0a\xe9\x8b\xf7\x39\x2f\x83\x67\x78\x87\x5e\x8f\xaf\xb5\x34\x78\x2f\x1d\xc6\x1d\x9b\x69\xbe\xd4\x4f\x15\x5f\xea\xa7\x9e\x2b\x4f\x5a\xec\x90\xc1\xa7\x2d\xf5\xad\x27\x7d\x7f\x67\xfa\x04\x65\x31\x60\x54\xab\x5d\xfd\x5f\x6d\xae\xd8\xc2\x66\x4c\x39\x8d\xc0\xf6\xba\xc2\x5a\x5c\x57\x16\x7f\x25\x0a\xa3\x74\x98\xc7\x4c\x2c\x87\x3f\x38\x15\xf8\x0f\x9e\xaa\x6b\xe0\xcf\x0b\x93\x4d\xf9\x5a\xdc\x94\x12\xee\xbc\xac\x33\x9e\xb7\xb5\xa4\x51\x68\xda\x39\x79\x93\x88\xf1\xdf\x54\xfc\x84\x6f\x2a\xda\x12\xca\x75\x45\xdd\x29\xd5\x6a\x75\x03\xfb\xde\x41\x33\x7f\xf1\x45\x46\x20\x34\x5a\x4f\x7a\x57\xd7\xe6\x03\xd2\x02\x6f\xf8\x10\x1b\x11\x2b\x5f\xbb\x8e\xbe\x76\x16\x99\xa4\x0c\xc5\x78\x4b\x00\x3a\xf7\xe4\xd8\x23\x1c\xbf\xa7\xe1\xef\x5f\x68\x79\x67\x93\x64\xfe\x14\x95\xe8\x0d\xa5\xa3\x79\x43\x51\xe9\x9b\x7e\xb9\xe6\x3b\xa6\xbf\x8b\x9e\x1c\x36\xe4\x16\xd6\x33\xdf\x20\xbb\xcf\x79\xec\x91\xcf\x4a\x31\x1e\x4e\xb0\xe5\xb4\x1f\xc4\xfc\x4d\xe0\x65\x8f\xf0\x93\x4c\x74\xec\x4b\x55\xf5\xb3\xa0\xfe\xdd\xcc\x24\xcb\x9c\xdd\xd2\x78\x12\xbe\x56\x24\x2f\xdd\xa8\x5b\xf4\x1a\x0a\x5f\x7a\x59\x09\x14\x5c\x56\x0c\xd7\x9d\x72\xb1\xf5\xa3\xc4\x72\x47\x08\x4e\x93\x4f\xb4\x2e\xff\xba\x4a\x4a\x6f\x05\x8a\x74\x7b\x4d\x79\x9a\x97\x27\x14\xf4\x74\xe6\xeb\x93\xba\xf2\xfd\x91\x34\xe9\xd8\x6c\x4a\x15\xe7\x8e\x2a\x16\x1a\x08\x12\x61\x66\xcf\x07\xbe\x30\xcf\x44\xcc\xd1\x4a\xc4\xa5\x5a\xf8\x4d\x8c\x16\xe1\x9b\x4a\x5e\x90\x40\x75\xc3\x22\x8a\x87\xa8\x80\xb3\x6a\x09\x1c\x20\x56\x73\xa2\x1f\x47\xda\xed\x1d\x97\x44\xe9\x9b\x72\xad\x31\x45\x08\xc2\x08\x2e\x09\xf0\x8d\x8a\xa2\x88\x33\x88\xf2\x7f\x8e\xf4\xe6\xb6\x4a\x71\x6e\x10\xf9\xae\xc3\x16\xa9\xfd\x5f\xee\x23\xbe\xc6\xa0\x4b\x8b\x5f\x4d\x0b\xd4\x37\x86\x51\x31\xa5\xf2\xbe\x53\x3a\x9c\xbd\x45\x5f\x2b\x92\xb2\xd5\x66\xf6\x66\x2c\xb9\x03\xb8\x02\x58\xfd\x4a\x30\x4f\xe0\xd3\x8d\x96\xec\x35\xd3\x26\xaf\x7c\x51\xc5\x85\x8b\x07\xe5\xba\x56\xd3\xdf\x14\x85\x4d\x3a\xc6\x37\x4f\x21\x0b\xc8\x74\x05\x7c\x53\x63\xf3\x32\x6b\x7c\x6d\x4a\x82\x4d\x7a\x26\xbe\x51\xb4\x62\x71\x19\x79\x83\xe6\xc7\xf1\x89\x7b\x7c\xa0\xa6\xd3\x61\x8d\x45\xbe\x51\x25\x86\xf5\xc0\x7b\xc2\xeb\x95\xb1\x7a\xf9\xe5\x66\x67\x50\x28\xa5\xab\xd7\xb5\xd2\xd5\xeb\x95\x9a\xeb\x8b\x73\x87\x9b\xe9\xc0\x66\xdc\x4d\xf1\x92\x47\x08\x95\xcb\x5b\x34\xa0\xb6\xcf\xe7\xe1\xe7\x9b\xfd\x61\xd8\x9b\xf2\xed\xf1\x60\x8f\x45\xdd\xe5\x84\x3a\x24\x2f\x2a\xd2\xfd\xde\xb0\xaf\x5a\xc5\x2e\x8f\x1a\x87\x9f\x77\x80\x50\xef\x92\x83\xbb\x17\xb3\x8d\x05\xf8\x01\xad\x0e\x47\xa8\xbd\x38\xcb\xe7\xec\xb1\x89\xc4\x4f\xb6\x0a\x45\x04\x49\x00\x96\x9f\x91\xfc\x9f\x3f\x0b\x4d\x7f\x60\x32\x93\xa4\x0d\x72\x0d\xa5\xe9\x8e\x86\x48\xa4\x63\x3f\xa7\xf0\xf4\xa5\x0f\x63\x58\x0f\xf2\x85\x59\xa6\x35\x78\x07\x7f\xcf\x37\x75\xb4\x31\xe5\x39\x9a\xa5\xfd\x28\x07\x97\x1e\xe0\x46\xe7\x55\x83\xff\xf9\xfa\xb2\x9a\xcb\x7d\xa8\xba\x34\x57\x4b\xf8\xa6\x32\x15\x2f\x1e\x6c\xc6\x69\xce\xed\xe4\x52\x13\x54\x9f\x58\xab\x24\xe3\xf6\xef\x6f\xe6\x3d\x1b\x77\xa7\xfc\x22\x99\x84\x5e\x28\x7c\xcb\xff\xe2\x20\x65\x1d\x3b\x30\x99\x5b\xe6\x8e\x92\xae\xfc\x53\xbe\xd1\x18\xfa\x34\x29\x6c\x52\x44\xa4\x52\xb1\xe8\xb5\xe6\x3c\xc6\xfa\xb2\x42\xfe\xf5\xa3\xb0\x67\x6c\xfc\x70\xf9\x97\x98\x84\x1f\x8d\x14\x13\xd6\xed\x91\x97\x8d\xbd\xc9\xf5\x59\xa4\xc4\x36\x69\xf3\xa0\x92\x38\x18\x29\x29\xf1\x35\x98\x7a\x27\xcc\x5c\x8e\x26\xc2\xb8\x47\x5b\x7e\x2d\x71\xb1\x10\x71\xea\xbd\x8a\x46\x72\xb9\x95\xa2\x7c\x90\xa5\xe4\x17\xa4\x89\x29\xac\xc6\x34\xbe\xa9\x8e\xce\x2b\x2a\x7b\x7f\xfe\xb3\xdb\x1e\x87\x59\x66\x93\x82\x0f\x41\xb8\x9a\xef\x8e\x94\x3f\xfc\x6e\x65\x2d\xb9\x8e\x65\xd3\x89\x57\xa7\x1a\xbf\x7c\xc8\xe1\xe9\x3d\xc0\xfc\x0e\x0c\x94\xb4\xae\x7b\x26\xa1\x7c\x40\x9d\xaa\x0d\xd5\xe2\x14\x78\x6b\x33\x21\xcc\xde\xb1\x26\x6e\xf8\x7e\x59\x06\xa4\x0a\x41\x48\x75\xad\x1e\x6a\xf6\x4d\x1c\x2d\x25\x26\x29\xa6\x94\x82\x1f\xd7\x45\x31\x10\x6f\x8f\x7c\x0e\xeb\xba\xf2\xb3\xfa\x84\x09\x36\x4a\x96\xe4\x82\x92\x25\xb9\xa0\xa4\xb1\x97\x6c\xbb\x47\x7e\x4f\xf9\x30\xc0\x0b\xbc\x4e\x87\x0e\x5f\x3b\x12\xdb\x30\x39\xc2\x36\x5b\x49\xf6\x1e\x74\xaa\x30\xda\xfe\x2e\x4f\x36\xd4\xc1\x09\xe1\x6b\x1d\x3d\x30\x83\xee\x94\x8f\x1e\xb8\x01\xd2\x51\xfa\x2a\x5d\x3c\xa5\x2b\x15\x31\xf0\xee\x25\x36\xd1\x80\xbe\x0a\x86\xb0\x9c\x35\x1c\xc0\xef\xaa\x28\xad\x4b\xc8\x57\xb2\x8d\x32\x8b\x7a\x4a\x55\xe5\x2f\xb3\x83\x18\x12\x88\xf4\x13\x4e\x01\x58\xc7\xb9\xaa\x0a\xd8\x59\x49\x43\xca\x2f\xa8\x9a\x62\xb0\x5d\x36\x09\x41\xf4\x5d\x27\x55\xb5\x92\xe6\x4b\x56\xa2\x3f\xe9\xf2\x57\x7e\xc4\xfd\x91\xd2\x92\xfc\xd0\x21\xfc\xfa\x69\x52\x2c\xa5\x71\xd7\x45\x0f\x0e\x46\xea\x32\x63\xb7\x55\xad\xe9\xb8\x92\x6a\x8f\xed\x52\x94\xc7\x64\x67\xa7\x7d\xb1\x1f\x29\x25\x3e\xf0\x03\xdf\xf7\x7c\x63\xe4\x23\xf9\xb7\x54\xf5\xb9\x63\x56\xd1\xf8\xc9\x7d\x2b\x08\x0c\x85\x5b\x97\x16\xa6\x44\x16\xe5\x8f\x38\x6c\x8f\xef\x08\xfd\x99\xae\x58\x9f\x47\x95\x07\x5e\x1d\xbb\x69\x88\xc2\xdf\x43\xd6\x16\xab\xe2\x9e\xaa\x44\x4c\x83\x40\x49\x1a\xf9\x3c\xa2\xf8\x9f\xc3\x9e\xb9\xf2\xde\x0b\xb3\xec\x4f\x4c\xb7\xaa\xc5\x79\x02\x7b\x86\xd6\x76\xa8\xcb\x9c\x3e\x28\xf4\x38\x4a\x61\xe8\xbc\xe2\x43\xe6\x58\x0a\x40\x16\xa7\xd7\xa5\xc4\xbb\x46\x7e\x15\x73\x67\xa8\x9c\x14\xde\x0a\xc7\x69\x9a\x5b\x39\x78\x5d\x69\xc7\xd1\x0e\x32\x0b\xa4\x20\x63\x9d\x1e\x5d\xd4\xe1\x7e\x96\x97\xd8\x15\x64\x6f\x9a\x6f\x2a\x1c\xa3\x2f\xcc\xce\x35\xbb\xe9\x30\xe1\x83\x44\xaa\xa3\xe5\x58\x49\xd9\xd4\xe3\x8a\x44\x2e\x87\x79\x2d\x38\x1f\xae\xd2\x6a\x27\x74\x0a\xf3\xcf\x31\x7d\x52\x8e\x2e\xbf\x12\x7e\xf8\xb7\x14\x77\xd4\x31\x72\x9f\xb0\xe6\x7f\x3a\x52\x0d\x54\xeb\x5a\xf2\x68\xbd\x72\x6a\x1e\x58\x68\x76\x4d\x28\xdd\xf8\x4a\x8a\x45\x12\xfb\xeb\x4a\x10\xac\x6f\xa2\xf8\x91\xf2\x77\x60\xad\x4f\xd2\x9e\xc3\x90\x5f\x27\x3f\x54\x0a\xb1\xbe\xa9\xec\x3f\x04\x13\x4d\xcb\x5e\xd3\xf5\xb8\xf2\x8d\xb9\xe5\x0a\x37\xac\x51\xc8\xca\xbc\x93\x32\xbd\x34\x2a\x92\xf4\x78\x4a\xe5\xe7\x93\x74\x98\x84\x54\x87\x2d\xff\x1c\xed\x8b\xe0\x00\xe3\xeb\x3a\xbe\x55\x52\x09\xa4\x6c\x8e\x63\x90\x06\xef\x0e\x82\x61\xee\xd9\x86\xb3\x75\x74\x22\x56\x3c\x92\xe4\x0f\x97\xef\x2b\x19\x13\x9f\xb6\x3f\x85\x3a\x08\x03\x61\x69\x80\x60\x30\xff\x0d\x62\x6e\x41\xc8\xd2\x0b\xe3\xab\xd1\x15\xe3\x1a\xab\x9d\x58\xe3\x71\xe4\xbf\x19\x4a\xaf\x30\x13\xeb\x0a\xdc\x6c\xa2\x6c\x77\x63\x7e\x7e\xeb\xba\x22\x0c\x78\x1a\xe8\x5d\xe7\xd5\x95\x3f\x05\x4b\x75\x8c\x26\x00\x68\xcb\xeb\x23\x55\xe4\x79\x0c\x86\xc0\x89\xa3\xba\x04\xf8\x75\xad\xd0\x95\x59\x9b\x44\x79\x8f\x72\x59\x68\xb1\xd8\xd1\x52\x2a\xc3\x67\x47\x8a\x2a\xe4\x9f\xaa\x7e\x41\xf6\xbd\x10\x96\x1e\xaf\xd1\x57\x3a\xd8\xcc\x43\xaa\xed\x4b\x8c\x02\x84\x69\xa3\xa5\xf4\x1a\xea\x24\x31\x9a\xed\x2c\x1d\x2e\xf5\xd8\x4d\x94\x4a\x4c\xf9\x8e\x52\xa2\x79\x4c\xe1\x7e\x2c\x49\xf1\xcd\xcf\x1f\x72\x68\x8e\x86\x53\x88\x5c\x53\x0e\xc6\x52\x66\xda\x6d\xe9\x82\x73\xec\xa4\xf3\xf3\x9c\x84\xd9\x41\x89\x23\x04\x41\xb7\xb4\x42\x69\x66\x88\xa2\xb6\x9c\x66\x96\x36\x08\x54\xc2\xed\x9c\xf2\x00\x6c\xbf\x6d\xb2\xa5\x94\x5f\x16\xf3\xc1\xa4\x94\x7c\x53\xa7\x8e\x52\x7a\x33\x54\x78\x44\xbd\xfa\x07\x18\x6e\x57\xa9\x5d\x90\x26\x98\x6b\x81\x1c\x5e\x45\x2f\xb3\xa6\xb0\x1e\xc5\x8b\xa1\xbc\xae\x4a\xe2\xbb\xe9\x6d\x58\xd2\xb5\x4e\x2d\xab\x97\xc6\x51\xc7\xa0\x72\xa4\x4f\x30\x39\xa9\xf6\xea\xf3\x1e\x25\x4b\xd7\xe8\xb8\x78\xd0\xb3\x2c\x94\xcf\xea\xe8\x17\x9c\xc3\xfc\xb1\x36\xfe\xc7\x5d\x4a\xa9\x88\xfa\xdc\x0b\x56\x37\x55\x3a\x3e\x8a\x32\xfb\x48\xc3\x69\x06\x9d\x42\xc0\x8e\xa4\x2c\x7c\x14\xb8\xde\x37\x09\x57\x05\x83\xfa\xc9\x48\x31\xbc\x33\x8d\x30\x76\x0e\x6f\x79\x24\x56\x76\xb6\xd0\xff\xca\x36\x0a\xa7\xa3\x02\x69\x4a\xc6\x9a\xbb\x43\xc5\x94\xd5\x91\x00\xe4\x51\xb2\xc4\xef\xc3\xf4\x7c\x30\xf0\xc2\xd5\xe7\x5d\xd6\x57\xd2\x65\x59\x43\x88\x21\x7f\x80\x35\xc4\x37\x0a\x31\x79\xc4\xda\x65\x56\xcc\x86\x89\x40\x42\x43\x72\x67\xd4\xee\xe4\x8e\x21\x8f\x4c\xc4\xeb\xc2\x90\xfc\x30\xf0\x84\x10\x37\x71\xca\xc0\x82\xef\x20\x26\x1b\xac\x26\x96\xb2\x75\x72\x60\x8e\x7e\xe4\x3d\xb5\xe4\xde\x55\xb0\x35\x3e\x71\x30\xd7\x1f\x80\x95\xc6\x89\x75\x56\xd0\x7c\xc0\x23\x6c\x51\x2d\x4e\x69\xda\x1f\x74\x01\x95\xdf\x60\xfd\x34\xe9\x98\xd5\x47\xca\x67\x16\x49\x04\x75\x32\xee\x1e\x7b\xe8\xf7\x5d\xd5\x49\xfe\xa3\x60\x22\xe5\xa7\x2c\x05\x82\x6e\x01\x2a\xd1\x8f\xf2\x01\x1a\x78\x44\xf2\x31\x24\x19\x71\x8c\x5c\x87\x11\xe7\x9b\x4a\x52\xf0\x85\xd9\x66\x37\x05\x84\x2d\xef\x45\x03\x24\xb1\xb9\x3d\x6c\xa2\x55\xac\x6a\xc9\x0e\x96\xae\xb9\x50\xfe\x8b\x8e\x80\x4f\x31\x5f\x52\x13\x5f\x0c\xb3\xe4\x11\x2f\x9c\xf6\xa1\xa6\x15\xa7\x5f\x41\x9a\x75\xc7\x58\x65\xa2\xae\xe0\x1c\x15\xcf\x9b\x46\x04\xa7\xcc\xb5\x40\xd1\x28\xfc\x36\x9c\x43\x97\x50\x5e\x9c\x75\xe8\x84\x72\x44\x44\x7b\x9b\x86\x4a\x3c\xa1\xc7\x14\x5c\x3a\x8f\x96\x92\x5d\x0d\x27\x76\x75\x32\x50\x6e\x1e\xa2\x5a\x7c\xc5\x19\xd2\xd5\x71\x12\x32\xce\x49\x3a\x4a\x3f\x23\x3a\x33\xca\xb2\xc4\x56\x78\x22\xf1\x0a\xb7\x75\x70\x78\xdb\xb9\x6d\x71\x94\x2c\x33\x00\x6d\x6b\x63\xa4\xc4\x4f\x7f\x8c\xb7\xc4\xaa\xff\x52\xab\xf1\xcc\x33\x52\x8a\x1b\xf9\x4e\xaf\x7d\x63\xd5\xf1\xb9\x5e\x89\x77\xe7\x0e\x37\xed\xab\x51\x4e\x19\x00\x42\x1a\xd3\x7e\x16\xad\x29\x9f\x77\x3d\xef\x6a\x5e\x99\x35\x31\xa9\x33\x38\x3f\xc1\xf1\x43\x9d\x52\x5c\x9f\xd3\xb4\x72\x29\x74\xf9\x83\x2f\xb5\x54\x5a\xee\x91\xb1\xd2\xb2\x8c\x06\x36\xc9\x81\xab\x46\xf6\xec\xb6\x12\x79\xde\xd1\xa2\x85\x89\xf3\xfb\x98\xcb\x6e\xf4\x0c\x49\xcb\x0f\x14\x31\xe5\x71\x45\x4c\x59\x6d\x51\x5b\x9c\x6d\x0e\x86\xb1\x6b\x57\x96\xbe\xc4\x29\xaf\xa8\xfe\xee\x67\xe7\x01\xb2\xa8\x88\x42\xe1\xcb\xe1\xa2\x1d\xe6\x49\x2a\x78\x8f\x2b\x57\x92\x50\x1a\x33\x3e\xd3\x71\x49\x11\x1f\x5c\x82\x95\x12\xf8\x86\x52\x1f\xe2\x6a\xb0\xe0\x95\xa5\xc2\x63\xe3\xd8\xe6\x7d\x9b\x61\xff\x60\xf5\x9d\xd5\x39\x88\xb3\x35\xbd\xd9\x2f\x35\xad\xc9\xe2\xc8\x66\xb0\xb7\x08\xab\xcf\x2a\xb1\x87\xb3\x5a\x68\x21\x33\x49\xd8\x8b\xa8\x23\xf3\x80\x78\xb7\x5b\x0a\x59\xb8\x15\x3c\xae\x91\xfd\xa1\xcd\x92\xdd\x7e\xee\xef\xc3\x28\x3a\x45\x38\xdf\x30\x82\x9e\x1c\x6c\xd3\xbd\x63\x1f\x03\x34\x5a\x13\xc9\x56\x55\xe4\x82\x3a\x32\xbe\xb7\xd1\xaa\xe9\x28\x32\x71\x7b\xf8\x8d\xa1\xcd\xbe\x31\xb4\xbc\x6b\x24\xb7\x43\xbf\xcb\x37\xaa\x0d\x83\x3c\xbb\x69\xfa\x09\xa1\x6d\x68\x78\x92\x63\xda\xb8\xf0\x39\x76\xb5\x94\x98\xc9\x69\x05\x51\xc9\xd3\xbe\xa5\x16\xf3\x19\x45\xc3\xb9\xae\xe4\x6b\xce\x51\x17\x34\xbc\xc6\x35\x95\xfa\x9a\x02\xa8\x07\x5e\xcc\x4f\x15\xa4\xb1\x48\x93\x7c\xda\x4b\xe1\xdc\x81\x69\x12\x4f\xd3\x63\xae\xee\x52\x5a\x56\x88\xd2\x14\x7f\x53\xcf\x0c\x57\xa2\x84\xd6\xa3\x83\x06\x5c\x57\xed\xd2\xd7\x3d\xa9\x75\x2f\xca\x96\x1d\xb0\x19\xee\xda\x31\xa5\xa1\x70\x4c\xcb\x20\xad\x44\xb1\x5d\x62\xb9\x63\x8e\xff\x47\x0a\xfd\x89\x0c\x0a\x36\xf6\xee\x96\x52\x50\x39\x53\xf1\x0c\xe6\xe7\x9b\xe0\xbf\xe1\x70\x18\xb1\x01\x98\x26\xf9\xba\x06\x92\xfb\x12\xc1\xb0\x25\x63\x29\x40\x6f\x9f\xee\xa9\xe2\x0c\xe7\xe7\x9b\xbd\x88\x45\x53\x94\x72\xbb\x27\x5e\x7c\x4c\xf5\xf0\x64\x69\xb2\xf4\xa8\xca\x84\xc0\x47\x10\xe8\x7f\x39\x92\x4c\x44\x8e\x43\x04\x05\xa5\x3b\x48\xac\xc1\xb4\xdd\x51\x75\x71\x16\xdc\x85\x5d\x62\xe7\x4c\x37\xc5\xc0\x30\x6c\x69\x21\xe2\x3b\x74\x06\x60\xe0\x6f\x22\x04\x12\xd8\x85\x8f\xa0\x33\x1b\x9a\xa4\x28\x0f\x05\x72\xd1\x90\xcd\x60\x6e\x66\xbe\xa9\x43\x8a\xc4\x5e\xbc\x40\xe5\x29\x0f\xb9\x3c\xa5\x67\x39\xe7\x36\x3e\x02\xa2\x6f\x94\xaf\x4d\x3d\x04\x95\x8c\x73\x37\x1d\xc6\x53\xde\x86\x21\x4a\x83\x1b\xc3\x2c\xd6\x42\x2c\xec\x5b\x55\xec\x52\x66\x97\x50\x24\x9e\xf2\xe5\x52\x2d\x09\xbc\xae\x11\xe2\xc7\x1c\xfc\x30\xb6\x4b\x11\x90\x35\xb4\x2f\xf0\x33\xa8\x22\xd0\xfc\xfc\x8b\xcf\x93\x2f\x8f\x13\xfb\x49\x60\x92\x3e\x4b\x52\x63\xff\xfe\xe6\x30\xf3\x60\x7e\x01\xd8\xf9\x7c\xef\x8e\x8a\xfa\xe6\x8b\x73\x87\xcb\xd0\xa8\x33\x74\x0d\x8e\x4e\x30\xc5\x0b\xfd\x2a\x10\x52\xde\x8b\x6c\xdc\xd9\x05\x03\x04\x97\x09\x24\x00\x30\x82\x37\x47\x1e\x4a\xc7\xf3\x8c\xe4\xfc\x35\xcc\x09\xdf\xc0\x54\xf2\xc7\xf5\x28\x96\x21\x54\x66\x72\xa1\x5f\xfd\xff\xd1\x2c\xca\xb2\xd5\x47\x68\xc1\x22\xd9\xc6\xfd\xef\xb0\xdc\x8f\x8f\x49\xec\x10\x5e\xff\xda\x48\xc3\xdc\x7c\x50\x7d\x8d\x3c\x5c\x47\x6a\xe3\x03\xdd\x2d\xcd\x81\xfd\x44\xcb\xc7\x29\x3f\xc1\xb3\xe0\xb0\xde\x4b\xa0\x32\x4c\xcd\xb5\x1a\x85\x9a\x66\x3f\x2d\xa2\xee\x84\xf4\xcb\x6d\xe5\x22\xdc\x9e\x2c\x55\x77\xf2\x47\x14\x0c\x8c\x1f\x87\x19\xdf\x10\xa7\x88\x5b\x42\xcf\x86\x95\x72\x86\xde\x0c\x21\xd0\x06\xc5\x66\x08\x66\xae\x63\xf3\x3a\x7e\xc1\x03\x42\xd3\x70\x66\xe4\x9b\x03\x38\x1b\x2f\x1e\x4e\x43\xd1\xd9\x28\x22\x82\xbf\xf3\xf7\x29\x37\x80\xd1\xe3\xdc\x80\x43\x2b\x3a\xfc\xee\x2e\x8a\x2e\x84\xb1\x43\x15\xa9\xa6\x5b\xdb\xf7\xec\xb3\xcd\xa8\x3f\x48\xb9\xde\x84\x59\x65\x97\x82\x6f\x14\x20\x62\xc5\x2c\x0d\x91\x68\xe5\x99\x84\xab\xc0\xbd\x66\x58\x61\xd2\x78\x56\xbe\xbd\xcc\xb7\x12\xed\xb6\xa6\x63\xb3\x5d\xaa\x50\x74\x8b\xc6\x4c\x0e\x27\xfa\x0a\xe9\x55\xa5\xa7\x40\xd6\xe6\x96\x22\x51\x04\x50\x4c\x54\x42\x7d\x79\x80\xa4\x98\xe3\xd5\x47\xcb\xe7\x03\x48\xe1\xf2\x88\x96\x1d\x60\x59\x8c\x7a\xc5\xf3\x71\x5a\x96\xff\x85\x0e\xcb\x09\x0d\x7f\x44\x6f\x57\x46\x8a\xd7\x9e\xfb\x19\x85\x7b\xc7\xc3\x34\xfe\xe3\x24\x0f\x4f\xf9\xe2\xfc\xf3\x30\xe0\xac\xe7\x1a\xec\x9b\x10\x80\x5b\x9d\x29\xa7\x9e\xe9\xfa\x35\x43\xe2\xa6\x1e\x54\x26\x77\x12\x64\x62\xf9\x6a\xc2\xf0\xef\xbf\xae\xdc\xa6\xc8\x1e\x48\x43\xaa\xca\xd4\x5e\x50\x6a\x61\x45\x2f\x4a\x1a\xbe\xdc\xba\xa6\x34\x7d\xd7\x2a\x39\xa3\x97\x5f\x6e\x9a\x22\x4b\x43\xd4\xe2\x1c\x1c\xfa\x32\x1d\x1e\xd2\x1b\xa2\x6a\x71\x69\x9a\x44\xa5\xeb\xf6\xcc\x33\x1c\x21\xaf\x63\x9f\xf0\x8d\x32\x5b\x83\xcc\x16\xc5\xea\xb4\xf7\x13\x58\x18\x55\x02\x31\x6f\x1e\xbe\xaf\x12\x8c\x1f\xd5\x30\x39\xbd\xd4\xec\x99\xc1\xc0\xba\x1e\x0e\x61\xa9\x26\x8b\x2b\xf4\xd5\x4a\x5f\x28\x4a\x13\xcb\xc0\x2e\x9c\xb7\x3b\xb0\x0e\xf8\xa6\x42\x49\xbc\x38\xdb\xcc\x6d\x52\x4c\xfb\x86\xfe\x4b\x9a\xc0\xe6\xfb\x81\x27\x02\xf9\xf9\x35\xcd\xaa\x77\xa7\xd2\x04\x73\x60\xa1\x99\x9b\xc2\xc6\x71\x54\xd8\x29\x25\xc5\x70\x49\x41\x4f\xc7\x2a\xed\x73\xae\xa6\x17\xa2\xe8\x99\x64\x99\x31\x9f\x38\xb1\x77\x42\xfe\x17\xe6\x07\xd2\xce\x02\xae\xf1\x2e\x47\x66\xe0\x54\xfb\xde\x4f\xd5\x53\xe7\xc5\xa5\x97\x13\x6b\xa7\x1a\xce\xc9\x98\x68\x0e\xfe\x70\xe4\x51\x6a\x57\x95\x3d\x7a\x35\x02\x85\x83\x42\x5d\x3a\x08\xa6\x73\xe9\x96\xed\x6a\x62\xf3\x88\xd1\x5d\x4c\x56\x02\x1b\x23\xcc\x25\x35\x0e\x55\x3b\x5d\x65\x63\x8d\x5d\x0a\x7c\x3e\x5f\x57\xbc\xb6\xaf\x8a\x28\x38\x3b\x1f\x6e\xcf\xfb\x2f\xb8\xa4\xec\x50\x94\xe7\x43\xdb\xa1\x18\x5f\x70\x2b\xba\x53\xf0\x07\xa3\x6d\xdd\x92\x07\x9d\x66\x9b\x6a\x18\x64\x8b\x27\xe4\x7f\xf4\x53\xe0\xd8\xf9\xfe\x48\x25\xc9\xd6\x95\xb7\x06\x0c\x06\xff\x11\x86\x80\x7f\x51\x75\xda\x86\x69\xd2\xcd\xd2\x04\x52\x62\xae\x16\xf1\x80\x26\x0d\x85\xa4\x4b\xaa\xdf\xf9\x4a\x0d\x22\xa0\x19\x9b\x61\xd2\x51\x22\x60\xae\x27\x6c\xa1\x2a\x17\x66\xf2\x41\x94\x6d\x23\x32\x87\xeb\xc0\xd7\x81\xf2\xe2\x07\x03\x97\xe9\x44\xd4\xb0\x35\xf2\xcd\x53\x38\x9b\x91\x80\x98\x1e\xd7\x20\xa0\xba\xa6\x9d\x31\xe9\xbb\x8b\x82\x1c\xb4\xa1\x4a\xee\x75\x60\xa1\xd9\x8d\x3a\x36\x16\xe4\x93\xd3\xc7\xf0\xac\x97\x6b\x55\x8d\xd7\xc5\x83\xcd\xcc\x76\x86\xa1\x38\xf0\x4e\x49\xd4\x8b\xcb\x5d\xae\x6c\xcf\xf2\x53\xb6\x3f\x88\xd3\x55\xce\x22\x32\xff\x50\xe0\xbb\xed\x4f\xd6\xad\xd2\xee\x30\x01\xf3\x10\xf3\xdd\xa8\xbf\xe7\x10\x40\xb6\xd9\x64\xb3\x43\xbf\x4f\xc2\x5d\xf4\x53\xd2\xa4\xe7\xe7\xf7\x9c\xca\xaa\x1f\x49\xa9\x47\xbc\x5c\xaa\x8e\x11\xad\x5c\x90\x9f\xc5\x88\x76\xf8\x79\x34\xa8\x93\x4d\x7c\x61\xd6\x51\x5e\xd2\x9c\xf1\x4d\x5d\xad\x26\x29\x9d\xbd\x22\xc5\xdb\x23\x35\xf8\xb6\x4a\x23\xbf\x3d\xf2\x8c\x00\x09\xc3\x03\x16\x7c\x9f\x8a\x52\x2c\x3e\xaf\x8e\xa6\x7c\x39\x4a\x72\xe5\x3d\xc2\xf2\x48\x2f\xa6\x4f\x3f\x0d\x9f\x5d\x7e\x16\x1b\x57\xe4\x44\x3c\x25\xd0\x59\x45\xb8\xd2\x0d\xdb\xbf\xfa\x77\x63\xdb\x06\x26\x55\xca\xaf\x57\x02\xc5\xcc\x7c\xa5\x8e\x1b\x25\x4d\x96\x52\xb7\x70\xc5\xe8\xf8\x22\x0b\x84\xc1\x91\xb2\xb9\x55\xf7\xf9\xb6\x09\x97\xe5\x95\x15\x51\xee\x73\xce\x57\xf9\xac\x94\x8d\xeb\x4f\x98\xf6\xb2\x0b\x33\x68\x2a\x70\xd6\xc1\x99\x9a\xf3\xa3\xc6\x2f\x1f\x72\x62\xe3\x4f\xb9\xf1\xce\x8b\x6c\x48\x1d\xd7\x9d\x29\x25\x54\x75\x1f\x06\x1a\xfb\x00\x94\x57\x72\x52\xfa\x96\x51\x3b\x1c\xf4\xd2\x2c\x32\x54\xd5\xd0\x1d\x9d\xc8\x36\xec\x6c\x29\x33\x7c\x4d\xf5\x01\xdb\x57\x6d\x38\x2c\xa2\x15\xbb\x47\xf9\x12\xb7\x03\x55\xe9\x82\x46\x25\xa6\xfc\xc7\x18\x0c\x38\xfb\x90\x39\xe4\xde\xb3\xb1\x62\xef\xe3\x72\x0a\xaa\x66\xa8\x90\xc0\x75\xbd\x07\x43\xca\xdf\xeb\xa0\xef\xfd\x28\x19\xd8\x30\x9d\xd2\xe4\x57\x77\xe9\xe1\x51\x39\x3b\x35\x52\x1e\xb3\x07\xd6\x76\xa2\x3c\xcc\x6c\x27\x2a\xb8\x89\xd9\x65\x66\xca\x1f\x97\xcc\x4c\x0d\x03\x3a\x11\x40\x74\x64\x8c\x91\xff\xe2\x46\x3a\x24\xab\xa0\x46\x20\xf9\x33\x7f\xbe\xb6\x87\xdd\xae\x2d\x14\x47\xca\x69\xc5\x91\x72\xba\x12\x18\x1e\x7e\xbe\x99\x0f\x07\x83\x32\x36\x7d\x61\x96\x9f\x1e\x2c\x4b\xba\x2d\x56\x56\x81\x84\xa6\xe9\x8a\xcd\xc2\x9e\xc9\x96\xec\xb4\x42\xb8\xf2\xa9\x23\xa2\xbb\x3e\xe0\x07\x6b\x1d\x4c\xf1\x85\x3a\x61\xea\xcc\x86\x36\x5a\x91\x34\x24\xcc\xce\x31\x64\x09\xf8\xa6\x4e\x47\x2d\xef\xa5\x47\x6c\x67\xda\x1b\xc8\x75\xcd\xff\xb1\x0b\xd0\x4c\x41\xe6\xaa\xc2\xf2\x7a\x1d\x77\x7c\x27\xca\x8b\xcc\xe6\x79\x77\x08\x3a\x08\x78\x31\x1c\x7d\xf0\x8d\x16\x59\x64\xda\x59\xb6\x9a\x30\xb8\xa0\x35\xe5\xeb\xb1\x0e\xe1\x42\x63\xa6\xb1\x72\x98\x43\x06\xbe\x80\x90\xb8\x36\x14\xd5\x90\xb2\x1e\xdf\xaa\xa5\x98\xce\xd3\xc4\x14\x86\x33\x7d\xbc\xca\xf1\x29\x59\xf2\xde\xc9\x0e\x7b\x16\x08\x39\xc4\x81\xf7\x02\x95\xba\x5a\xf7\x3d\x5a\xff\x75\x15\xc9\x37\x3f\xdf\x5c\xb2\x89\x2d\x20\x6a\xee\xe7\x72\x4d\x89\x38\xae\xd5\x22\x50\x3b\xe9\x91\x24\xe7\xee\xb9\x05\xa5\x8a\x57\x3e\xa1\xa8\xe2\x09\xe4\x29\x19\xbe\xda\xf0\x01\x14\x17\x80\xf9\x66\xbc\x7d\xa1\xbc\xfc\x72\xb3\xff\xff\x31\xf6\xae\x41\x92\x64\xd7\x79\xd8\x4e\x75\xf7\xcc\xee\xce\x3e\x66\x1f\x00\x49\x53\x0e\x97\x24\x9a\x6b\x87\xd7\x90\x48\x2a\x6c\x99\x7f\xb2\x3c\xd3\xe0\x62\x26\x8c\xde\x76\xcf\x60\x17\x5e\xeb\xc7\xde\xaa\xba\xdd\x95\xdb\x59\x99\x85\xcc\xac\xee\xed\x0d\xff\xa0\x1c\x0e\x07\xc3\x3f\x1c\x96\xc2\x0a\x49\xb6\x6c\x4b\xa4\x6d\xd2\x26\x45\x93\x10\x03\x84\xf8\x40\x35\x00\x82\x20\x01\x02\xd8\xf7\xfb\x31\xef\x57\xcf\xfb\xdd\xf3\xe8\x75\xe4\xf9\xce\xbd\xf7\xab\xae\xdc\x90\xfe\x55\xed\x4e\x57\x65\x65\xde\x7b\xee\x39\xdf\xf9\xce\xf7\xc5\x9d\x3c\x5b\x31\x29\x0d\xb6\x81\xfb\xe4\x32\xa2\x40\xa4\x59\xb4\xab\x0f\x92\x8c\xe2\x54\x8b\xb4\xbb\x75\xa1\x20\x2c\x9c\x41\x59\xe3\xbb\x59\x55\x61\xe6\xa8\xac\x8d\x7d\xb3\x8a\x41\x02\xa7\x53\x47\x8a\x11\xc1\xb3\x9a\x85\xb1\x36\x97\x3b\x43\x79\x05\xa4\xd9\xea\xe3\x8d\xaf\x7c\x69\x8c\x0c\x0a\x12\xd6\x55\x96\x1c\x38\xca\x94\xd5\x5d\x2d\xe2\x8c\x5d\x19\x35\xbe\xf8\xd5\x71\x41\x08\x14\x2c\xdf\x91\xe5\xa3\x93\x56\xac\x65\x70\x94\x47\xa9\xee\x8c\x68\x42\xe1\xbe\x16\xa1\x89\x1b\x23\x62\xdc\x3c\x22\x13\x2a\xaa\xc4\x27\x58\x20\x50\x83\x75\xdc\x31\xd9\xe8\xbf\xf8\xf9\xf5\x90\x38\x62\x4e\x10\x93\x47\x37\x89\x8e\xdd\xb3\x26\x07\xf5\x27\xa8\x55\x5c\x25\xae\xfc\x55\x2a\xe5\x07\x89\xe9\xd8\x07\x49\x58\xef\x0c\x93\xd4\x30\x24\x08\xe2\xc2\x61\xc1\x28\xd4\xb6\x8d\x47\xb1\x8e\x61\x65\xeb\x1b\xb9\xbb\x58\x46\xd7\x25\xc9\xc5\x0d\x39\x29\x40\x00\x9e\xc0\xd1\x51\x50\x12\xfc\x0b\xda\xd8\x10\xdf\x2b\xe2\x15\xcb\x2c\x83\xb3\xdc\x55\x3c\xeb\xf9\xe9\xb9\x35\x9d\x9e\x2d\xd8\x00\x62\xc7\x3a\x4d\xd2\x6b\x99\xee\xc2\xce\x98\x58\x74\x6e\x1e\xe4\x88\xf0\x0e\x6e\x30\x22\xcd\x8d\x11\x35\x9c\x6f\xc8\x1d\x46\x78\x50\x6b\x37\x2c\xb0\x1b\xf2\xe0\x81\x03\x4d\xb5\x1a\xbf\xf2\xbc\x46\xf9\x33\xe8\x50\x3b\x10\x8d\xcc\x41\xd5\xba\xd1\x81\x29\x35\xbd\x84\xc5\x7c\x58\x94\xb9\x78\x62\x36\x08\xe7\x63\xab\xba\xba\x00\x9e\xe5\x5d\x13\x54\xf1\x54\xbc\x87\x0c\x11\x37\x98\xc3\x62\xd3\xc6\x98\x1f\xb7\xfc\x24\x37\x79\xf1\x53\xa4\x3f\xdb\xad\xae\x25\x86\xe4\x53\x23\x4c\x54\x1d\x23\xeb\xa0\x63\x84\x12\xdb\x35\xdb\xce\xb3\x55\xd5\xec\xf4\xa2\x96\x9f\xa5\x9c\x3d\xa1\xd3\x37\xdb\xec\x24\x36\x17\x1b\xdf\x86\xd7\x92\xfd\xa6\x7c\x99\xbe\xae\x1b\x7f\x2c\x3a\x3d\xdb\x1d\x7a\x6a\x3f\x32\xa0\x9d\xd2\xe3\x03\x64\xf6\x00\x9a\x75\x78\x80\x1f\x12\x2d\xc4\x14\x03\xdb\x51\xa0\xde\x4b\xad\x93\xbe\x70\x6d\x37\x40\xa4\xc9\xb7\xcb\x2e\xfa\xc1\xc1\x73\x94\xab\x0f\xcc\xc0\xe6\x05\x14\xe9\xa1\x62\x86\xaa\x15\x08\xc1\x35\x64\x49\x08\x74\x9b\x4c\x01\xbb\x4a\xe5\xd6\x1f\xf8\xa1\xaa\xd5\x2c\x2f\x80\x6d\x10\x82\x7c\x84\xac\xe5\x8e\x8c\x2d\xef\x3c\xee\xce\xb0\x8d\x93\xa2\x83\xc8\xaa\x6e\x44\x14\x14\x2e\x92\x6d\xdb\x7b\x23\x1a\xa8\xbf\x6f\x7d\xcc\x08\x2d\x4b\x66\x42\xe7\xfb\x56\x44\x53\xc4\x1b\x18\x78\xc4\x46\x00\x39\x78\xcc\xe1\x5c\xff\x87\x67\x9b\xf4\xab\xa5\x2a\x58\xbc\x93\xdd\x0a\x39\xce\x6f\x8d\x98\x8d\x10\x05\xaf\xa2\x7e\x8a\x52\x71\x6c\xc2\x49\xdf\xf8\x9a\xb4\x93\xf5\x07\x71\xe2\xb6\x01\x96\xc2\x15\x12\x9c\xbd\x42\xf4\xaa\xd5\xb8\x1b\xb0\x22\xef\xb9\xb1\xb0\xd7\x8f\x38\xba\x3b\x9f\xda\xd5\x62\x90\xc7\x69\x39\x13\x14\x71\x71\xce\x20\x72\x28\x7c\xe8\xff\xc7\x9c\xdb\x80\x9f\xc3\x3d\x77\x8c\x84\x9a\x13\x1e\xa5\x5f\x69\x14\xb1\xf3\x34\x11\xcf\x3d\xfb\x21\xed\xdb\xb6\x41\xe1\xeb\xf4\x85\x02\xd4\xf2\x1e\x79\x2a\x74\xcc\xb0\xb0\x24\xfb\x78\x82\x64\x1f\x4f\x7c\xa6\x85\x4a\x27\x4e\x3a\x59\x8e\xc6\x35\xa0\xd8\x4d\x96\x23\xde\xa4\x5d\xd3\x8f\xbb\xab\x56\x55\xed\x81\x54\x1d\x26\x4a\xc1\xe1\x3a\xcf\xbd\x62\xd8\xef\x9b\x3c\xd6\x36\x86\xc3\x7c\x08\xff\x21\x16\xaf\xb8\xfa\x19\xe9\xf9\x3f\x2c\x6b\x4c\x25\x79\x10\x9e\x55\x65\x12\x47\x3e\x96\xe2\x51\x48\x0d\xbb\xf8\x25\x67\xb9\x7a\x22\x01\xe4\xc5\xf6\xb8\xc3\x06\x49\xb7\xb1\x01\x9c\x66\x65\x50\x97\x40\x76\x85\x60\x7d\x89\xc0\x0c\xe0\x90\x8e\x63\x53\x9d\x68\xfa\xe5\x75\x42\x8e\x39\x8e\xde\x06\x4d\x90\xa1\x4d\xe9\x32\x99\xba\x21\xee\x6e\x5c\x66\xde\x49\xc5\xd9\x7b\x54\x17\xa3\xaf\x27\x82\x91\x78\x19\xa6\x65\x9e\x25\xd3\x41\x22\xe6\x0d\xc2\x82\x60\xc1\xe3\xd2\x9a\xc0\x5d\xfd\x70\xe2\x11\xcd\x3f\x7b\x50\x06\xcf\xcd\x40\x97\x8e\xa3\xbc\x57\x7f\xe4\xb8\xf0\x35\x72\x2a\xab\x71\x82\x73\x01\x65\xd0\x15\x2a\x89\xae\xd4\x8d\x9a\x26\x26\x1e\xdb\x9a\xef\xcb\x1f\xe8\x6b\xf2\x37\x84\x82\x9b\x70\x7a\x02\x3a\x8b\x4f\xd7\xd7\x1e\xa7\x1c\x0e\xb2\xf4\x01\x12\x50\x7f\x6b\x14\x58\x70\xd8\xf9\x48\x0b\x1e\x5f\xa7\xa6\x0d\xf6\x39\xa2\xfc\x7b\xf2\xf4\x91\xab\x9c\xa0\x09\x3c\x68\xc9\x60\xb9\xfc\x35\xce\x5d\x37\x6a\x1b\xbe\xb6\xc0\x39\x32\x26\x51\xe9\x6a\x8d\xbf\xf9\x19\xbb\x6e\x98\x02\x65\xaa\x62\x80\x54\x09\x88\x67\x28\xdf\xfd\xdc\x0e\x8f\x77\x73\x88\x8f\x97\xd2\x3d\x41\x2a\x56\x7b\xc2\x4e\xf1\x7b\x8c\xf0\xc3\x0c\xa1\xea\x56\xe1\x96\x7c\xa0\x28\x27\x4e\xae\x1b\x72\xe3\x5c\xdf\x82\x58\x1f\x97\xa4\xb4\x07\x07\x4d\x7d\xc4\x71\x87\xfe\x2f\x64\xb4\x6e\xc4\x27\x90\x24\x7e\x18\x31\xd4\x16\xd1\x68\xe2\x71\x12\x8b\x3c\x37\x0a\xcc\x98\x4d\x52\xe9\xe8\x5a\x93\x14\x0f\x04\xd3\xdc\xdf\x88\x68\xf4\x0c\x19\x04\xca\xe4\x8f\x90\x13\x7a\x39\xc8\x60\xd0\x74\x15\x51\x40\xdf\x8c\x02\xdf\x58\x55\xdd\xfc\x67\xed\x9b\xf5\x1e\xa3\x8f\x73\x47\x62\xc5\xa6\x3a\xa4\xf4\x8c\x96\xb6\x9f\x8e\x42\x99\xfb\x69\x14\x1c\x93\x56\x7b\xa6\x7c\xac\xba\xc1\xaa\x2a\x47\x9a\xe1\xf7\x40\x0a\xc4\x19\xf9\x0e\xc2\x0f\x6e\xd6\x7d\x92\xbf\xe3\xc0\x83\x44\x3d\x40\xe9\x2b\x23\x12\x21\x3b\x49\xd9\xff\x56\x14\x46\xf9\x6f\x82\xd5\xa7\x1f\x8b\xb6\x0a\x96\xc0\x83\xeb\x84\xdf\x7c\x8a\xbb\x83\x53\x49\x59\x67\xce\x94\x5e\x56\x8a\xc2\x43\xd1\x58\xda\xdf\xd8\xb7\xcf\xf7\x36\xea\x86\xfc\x4c\x51\xc4\x4b\xa9\xa6\x3f\xd4\xf4\x9c\xf5\xad\xca\xc9\x9c\xe9\x99\x66\x7f\xad\xb0\xc9\x22\x86\xe5\x50\x28\x22\x4b\xd0\xd7\x75\xb4\xa8\x32\x37\x71\xa2\xdf\x33\x36\xa2\xef\x18\x15\x93\xac\xe6\xe6\x30\xcd\x6d\x62\xbc\x2d\x38\x90\xf2\xd7\x68\x72\x5e\x7b\x70\x5a\x38\xf1\x9c\x4e\xdf\x14\x3d\x41\xd8\x7d\x52\x72\x9a\x78\x2e\xdf\x90\x87\xaf\x1e\x96\x41\x79\xc6\xda\x45\x1f\xe6\x01\xfb\x23\x4f\xd7\xd7\x74\x28\x9b\x55\x93\xeb\x90\x3d\xaa\xe1\x37\xb1\x5c\xf5\x0d\x41\x6d\x65\x55\xbc\xf7\xe2\x41\x31\xc5\x12\xf3\x01\x1b\x82\x99\xb7\xb7\x6f\xa6\x91\xed\xb4\x63\xab\xca\x21\x19\xa3\xc9\x8d\x75\x91\x43\xee\xb3\x6c\x96\x87\x7d\x93\x0f\x31\x21\xe8\xac\x27\x48\x26\xfd\x44\x8d\x6e\x5b\xd3\xf4\x25\x3b\x4f\x1d\x6b\x1c\x6b\xeb\x18\x8b\xc1\x1c\x1b\x3d\x31\xae\xff\xf1\x74\x73\x7e\x61\xfe\x21\xf9\x17\x4a\x6a\xc1\x35\xa9\x8d\x86\xfc\x32\x9c\x18\xff\x3c\x6a\x90\xee\x80\x3c\x41\xb5\xd3\x8e\xc2\xb4\xf7\x3d\x39\x7b\x11\x4c\xb0\x5b\xb6\xee\x92\x16\xc5\x3d\xd6\x84\x3c\x8b\x2d\x87\x22\xf6\xe6\x88\x8a\x7f\xea\x59\xc5\x36\xdd\x49\x46\xc0\x27\x68\xe0\x13\x1c\x7f\x2d\xf5\x98\xb6\x09\x81\x3b\xdf\xdc\x61\x5f\xc5\xa0\x1f\xbb\x92\xc5\x1d\x97\x5d\xba\xf1\x3e\x12\x72\xbc\xec\x4f\x30\x6b\x0a\xb8\xc0\x3a\xfd\x72\x6e\x4d\xc8\xfd\x01\xe7\xf7\x18\xd9\x9f\x4e\xea\x47\xcf\xcd\x55\x35\xa0\xf5\xa2\xc7\x40\x13\x34\x6b\xd2\x37\x13\x72\xf7\xfb\xe7\x9a\x69\x96\xea\xbc\xa8\x5f\xca\x0e\x50\x0e\x53\x5d\xf7\x22\xe6\xf5\x9b\xce\x72\xb1\x33\x30\x5f\x3e\xc5\xbe\x54\x04\x90\x3c\x88\x5f\x8e\x58\x8d\x6d\xfb\x8c\x8c\xaf\x38\x27\x8e\xd3\xf9\x85\xf9\xe6\x60\x58\x4e\x93\xb5\xc5\x77\x47\xa1\x79\x31\xc2\x0e\xc0\x6e\xfc\x71\x44\x3a\xc5\x3f\x9c\x08\x0a\xe2\xce\x9f\x60\x06\x6f\x9a\xe8\x11\xef\x8f\xc6\xc8\x8f\xc1\xc6\xc0\x49\x36\x23\x86\x9e\x20\x8e\x21\xd4\xc6\xad\x08\xf8\x79\xf5\xb4\x20\xf6\xb1\x03\x88\x8e\xc3\x1e\xab\x05\xa2\xab\x50\xb6\xc7\xd6\x25\x1d\x39\xc5\xd1\x09\x20\x06\xad\xd5\xfb\xd7\x89\x9b\xfe\x00\x44\xd8\x70\x72\xbd\xe5\x89\xb6\xab\x71\xd1\xcd\x40\xf4\x44\x6d\x86\xd4\x46\x5f\x7b\x38\x24\x5b\xb1\xb9\x49\x12\xe9\x64\x7a\xa5\x2f\xa7\x98\xfc\xab\x3f\x2f\xd0\x12\x08\xe0\x3b\xd7\x49\x7b\xe5\x8c\xec\x0d\xa7\x3b\x43\x13\x26\x17\xa5\x05\x81\x33\xeb\x04\xcd\xb2\x20\x15\x03\x19\xe3\x09\xc8\x34\xb9\x27\x5b\x45\x2d\x00\xcd\xff\x7d\xad\x03\x81\x20\x36\xd2\x8a\xf2\xd3\xbc\xbe\xc3\x74\x9e\x68\x01\xa2\x3f\x89\xa4\x08\x11\xff\x26\xb2\x0d\x3c\xf6\x6f\xc9\xcf\x72\x85\xca\x63\x34\xab\x2a\x3c\x57\xd5\x87\x24\xf6\xd0\xac\x6f\x2b\x3e\xe9\xa9\x85\x59\x12\x2f\x5a\x82\x5a\x90\x15\xbc\x8f\xef\xd1\x37\x24\x40\xba\xa8\x16\xca\xa1\x05\x30\x9e\x1f\x87\x18\x5e\x5d\x79\x9c\x5a\xf5\x14\xd6\xe1\x08\x92\x4d\x3d\x46\xd0\xdb\x6a\x96\xe7\xe0\xd8\x2b\x25\x1c\x00\xa2\xcf\xe9\xaa\x87\xa1\x64\x4b\xb6\x87\x3e\x4e\x4c\xd8\x0f\xa3\xa0\xcc\xf5\x6d\x49\xf6\x98\x2f\x81\x23\xf6\x03\x79\x30\xc8\x66\x95\x62\x8f\xdb\xba\x03\x10\x27\x7e\xc4\x26\x9d\x6d\xdd\xc5\x2c\x07\xb6\x8e\x34\xf0\xfd\x11\x69\xf4\xbd\x1f\x85\x40\x27\x20\x4a\x06\x3d\x15\x44\x75\x0d\x96\x4e\x0f\xb3\xba\x09\x58\x37\x1f\xd3\x91\xdb\x49\x62\x71\x78\x69\x84\xee\x08\xd6\x82\x53\x93\x0f\xa6\x9d\xa5\xcd\x6d\x51\xce\x48\xda\xc3\x8c\x28\x80\xa1\x7f\x4d\xb2\x65\xdc\xa3\x0b\x4c\x6f\x7a\x0c\x74\x08\xd7\x59\x0b\x5f\xdd\x35\xab\xdd\x44\x57\xc9\x0b\x5a\x20\x4d\xb5\x24\x91\xd2\x37\xeb\xe1\x80\xe8\x0f\xca\x07\xc2\x08\xc4\x83\xad\xb0\xf2\x61\x41\x83\x93\x78\x7a\x9d\xfa\x1b\x63\xa3\xad\x22\x46\x77\xef\x57\xf7\xb4\x48\x59\xef\x2d\xc0\x3d\x18\x61\xd1\xc2\xd4\xcd\xa6\x4c\x06\xf6\x83\x32\x46\xec\x58\xab\x58\xc7\x27\xb8\x4d\x71\x82\x94\x09\x3a\x59\x7f\x60\x72\xdb\x7d\x48\x1e\xab\x9a\x58\xe1\xeb\x5c\xd6\x1f\x4e\xd0\x6b\xb2\x5a\x1c\xf7\x95\x12\xc1\x69\x84\x21\x7f\xdc\xf9\x76\x94\x66\xd6\xb8\xc1\xa7\x65\x11\xe2\x70\xb9\x21\x11\xda\xa9\xb1\x37\xfc\x54\x9f\xe2\xf9\xfa\x07\xb5\xf6\x92\xa9\x35\x79\x1b\xd0\x80\x9a\x39\x53\x74\xbc\x45\x29\x4e\x6a\xe3\xa5\x5e\x3b\xcb\x95\xf4\x82\xf0\xfd\x22\x1b\x0a\x6c\x90\xc3\xf6\x06\x31\x3c\xfa\x26\x2f\x2d\x3a\x1d\xae\x02\x64\x83\x5b\xd2\x1e\x94\x92\x3a\x6e\x0f\x4b\xdb\xdd\x45\x3d\x42\x6d\x32\x20\x5e\x7e\x24\x37\x04\xcb\xfb\x9e\x94\x89\xfa\xdf\x59\x26\xfa\x36\x23\x64\xc7\xc8\xd5\xed\x76\x1d\xb1\x75\x30\x4c\x92\x46\xc8\xf7\x31\x0e\xac\xaf\xd9\x81\x21\x4b\x3b\x76\x50\x0a\x5b\xcc\xf7\xd0\x7d\xba\xf7\x3d\xec\x3b\x50\x86\xfe\x4c\x2e\xd2\x69\x8d\x55\x17\xe9\x1a\xed\x8f\x84\xa1\x2f\x11\x13\xc3\xc1\x04\xec\x51\x67\x3e\xf5\x4d\xc4\x36\xd2\x8b\xa6\x2f\xe4\xaf\xd9\x43\xc1\xa4\x7b\xbf\xc3\x34\x36\x27\xd6\xed\xc2\x7c\x33\x1f\xa6\x1e\x60\x03\xf1\x6b\x33\x22\xf1\xa1\xcd\xed\xb9\xe2\xbe\x7d\xcd\x2f\xcf\x4e\x55\x1f\x8a\xc2\xe0\x72\xc4\x94\x85\x60\x50\xf1\x47\x41\x0a\x49\xc6\xd2\xf1\x03\x50\x4e\xa9\x49\x33\xbd\x71\x92\x72\xd7\x28\x96\x77\xe3\xa2\xe7\x98\xc9\xce\x16\x4b\xf6\xa7\x13\xeb\xda\x43\x28\xf8\x62\x92\xad\x16\xd3\x01\xfe\x06\xe5\xd0\xf3\x06\xc8\xd1\x86\xe6\x65\x2f\xd4\x35\x4c\xbb\x71\xba\xcd\x9c\xf6\x55\x22\x7c\xbd\x3a\xc1\x53\x9d\x3d\xd4\xb4\x69\x29\x84\x17\x0f\x51\xbf\x47\x12\xb9\xef\xd1\x24\x9b\x49\x97\xf2\xb5\x9d\x81\x41\xfa\x63\xa6\xdc\x42\xaa\xd4\x67\xa9\xb8\x61\xa8\x06\x6f\x60\x62\xcc\x69\x98\x84\x2a\xfe\xb2\x37\xc0\x2c\xac\xd2\x60\xc6\x9c\xfb\xdd\x4c\xc8\xa4\x94\x4d\x3f\x4e\xba\x76\x15\x60\x25\xbe\xe4\xa8\xac\x52\x7d\x3d\x1a\x53\xf8\xa8\x6a\x96\x38\x2d\x0b\xa2\x83\x01\x86\x71\x29\x58\x38\xdd\x07\x59\x51\xc4\x6d\x45\x11\xb1\x9a\x8f\x12\x85\xe4\xe8\x04\xc2\x3a\x7b\xa8\xd9\xb5\x79\xbc\x02\xe3\x28\x3a\x26\xe4\x72\xdc\x91\xe1\xf6\xc3\xa2\x29\x4a\x5b\x94\x53\x72\xce\xe0\x7f\xee\x6e\x05\x70\x18\x63\x43\x28\x62\x26\x09\x92\xcf\xed\x9d\x6d\x96\xbd\x3c\x5e\xf1\x0f\xd8\x71\xf2\x42\x6a\xbf\xa3\xc5\x6d\x2e\x53\x64\xa9\x69\x27\x76\x27\x37\x92\xcf\x91\x63\xce\x31\xc4\x1c\xd7\xfb\x0e\xdc\x75\x14\x41\x63\x0d\x72\x3c\xd9\xb7\xd8\x1e\xc4\x26\x89\x1a\xe6\x39\xbd\xf1\x90\x4c\xdd\xe1\xe0\xa4\xf6\x72\x8e\xd5\x51\x7d\x0f\xaa\x8f\xeb\x6c\x7a\xb6\x64\x1f\xa8\x6e\x3b\xca\x21\x1d\x6b\x24\xf3\x0d\x1a\xce\x08\x67\xdf\x55\xd9\xc0\xfa\x27\x9a\x59\x8f\xe9\x79\x52\x22\xed\x32\x9b\xdb\xf2\x6c\xf4\x50\xa9\x19\xf9\x7b\xa1\x29\x64\xb6\x15\x93\x0c\xc7\x9d\x3c\x0e\x93\xc9\xf0\xe1\x71\xfe\xf6\xf0\x15\x6c\x75\xe7\x41\x2f\x47\xbd\x33\xa7\xaf\x71\x42\xca\x33\xd3\xd5\xe3\xd6\x0f\x4b\x11\xd9\xe3\x81\x58\x2c\x66\x7e\xa1\xf9\x55\xd1\xba\x47\x63\x69\x4a\x66\x89\xdc\x0c\x64\x70\xd6\x01\xab\xdb\x29\x28\x10\x39\xf8\x2c\x53\x9a\x1f\x6f\x71\xaf\x65\x60\xd6\xee\x6f\x7c\x79\x56\x8b\xbd\xab\xd1\xb8\xb5\xda\x5e\xed\x20\x5d\x62\xba\x1c\x6e\xa1\xa3\xd7\x56\x97\xe5\x38\xde\xf2\x95\x80\x24\x74\x10\x4a\x3f\x76\x02\xe0\x99\x7f\xf6\x20\xcc\x7f\xdd\x8d\x45\x35\xf3\x93\x28\xb0\x2a\x7e\x42\x8a\xff\x83\x78\x60\x45\x89\xaa\x11\x00\x36\xa4\xb9\xfa\x9a\x44\x9b\xda\x45\xda\xa0\xb2\xed\x6d\x39\x90\xf4\x35\xed\xf0\x4e\x96\x2e\xe5\xb6\x28\x1e\x69\x90\xfa\x32\x25\x2f\x9a\x59\xa1\xf4\x3e\xac\x2b\xca\x29\x68\x50\xca\x82\x1d\x82\x0f\xd8\x12\x12\xb6\x17\xe9\x3f\x70\x00\xcd\xb8\xa7\x55\x5f\xd1\xc1\xd5\x44\x14\x9d\x59\x0f\x0a\x50\x97\x10\xec\x80\x91\x1e\x06\xd4\x81\xfa\xe6\x68\x14\x0c\x9e\xdf\x8d\xc8\x39\xde\xa4\xd3\x2c\x34\x71\x96\x1c\xf0\xae\x0a\xa1\xc1\xb5\xd2\x49\xef\x60\x3d\xd0\x2a\xcb\xdc\x9a\xbe\x7b\x02\x4e\xab\x84\x66\x29\xae\x7b\xd3\x18\x53\xba\x54\x05\xce\xcb\x48\xb2\xdf\x96\xc7\x85\xef\x38\xce\xa3\xd7\x10\x21\xdf\xba\x34\x0a\xed\x8b\x6b\x34\xe7\xda\xc9\xf2\x01\x9a\x95\x4e\x17\x07\xbf\x02\xad\x4b\xc5\x09\x1d\x74\x16\xf8\xd5\x67\xc9\xa2\x9f\xe9\xe5\x55\x9d\xf7\x68\x68\x77\xde\x1d\x91\x95\xfc\xd1\x51\x50\x8b\x46\xe2\xa8\x4a\xe5\x04\xe5\x68\xbd\x87\x7b\xfd\x0d\xd4\xfc\x40\xc1\x8f\xc9\xc3\x05\x4a\xb9\xa3\x85\x8b\xf4\x52\x9f\x3e\x23\x3f\x8e\x75\xe3\xc3\x4d\x15\x4a\x69\x28\xf9\x05\x8d\xf0\x3b\x5a\xd5\xea\x70\xd4\x1a\x52\xc1\x7f\x93\x30\x8f\xdc\x96\xc3\x3c\xbd\x9f\x45\xa3\xee\x61\xb9\x29\x03\x37\x0a\x83\x5a\x60\x4b\xf8\x29\xc4\x90\xe7\x43\x95\x5a\xb5\xcd\x68\x7d\x2a\xfe\x80\x90\xfb\xa3\x1a\x19\xd4\x83\xe2\x4e\x99\xad\x60\x2a\x03\x00\x86\x62\x5b\xfa\x66\x22\x71\x10\x05\xea\x62\x39\x46\x01\xe7\xac\x6c\xd9\xd7\x76\xe2\x00\x5b\xd8\xdb\x6c\x67\x65\x8f\x68\xc2\x0e\x58\x6f\x78\x81\xaf\x0b\xa3\xed\x08\x92\xeb\x64\x98\x36\xd4\xad\x88\xa8\x74\x94\x67\x51\x8f\x52\x5f\x7c\x25\x46\xbd\xe8\x1b\xa8\x9f\x90\xb8\xe7\x15\x00\xa3\x40\xe5\x4f\x78\x00\xc4\xe4\x2b\x71\xda\x6d\x90\x8a\x3e\x46\x0f\x42\xb1\xe8\xc5\x5e\xf2\x6c\x98\x76\x77\x05\x3a\xea\x1d\x12\x90\xfa\x56\x14\x7c\xd1\x55\x89\xc0\x77\x7e\x67\x0f\x8d\x93\x00\xf0\x93\x6f\x47\x3b\x7e\xce\x7b\x87\xd4\x78\x37\xf6\x4d\x9c\x62\xcb\x4a\x01\x0c\xe0\xe6\x53\x56\x36\x3f\x42\xfd\x87\xa9\xd6\x76\xa5\xbd\x43\xcf\x36\x97\x2d\x7c\xef\x50\x50\xbc\x46\xc5\xc5\x6b\x04\x54\x26\xe6\xe5\x69\x76\xc7\x23\xd3\xed\x73\xa4\x2f\x81\x93\xca\x8d\xfc\x7f\x96\x10\xd8\x62\x92\x65\xf9\x14\xd1\x34\x8f\x53\x1e\xaa\x54\x31\x2c\x94\x6f\xd7\xe9\xa7\x2e\x99\xa2\xdd\x20\xd4\xea\x28\x29\x6f\x1d\xa5\x9c\x34\x35\xdd\x38\xa7\xd3\xe1\x14\x9d\x0e\xa7\x68\x45\xe4\xc3\xa2\x88\xcd\xce\x30\x91\xf7\xff\x49\x8c\x42\xe4\x39\xce\x9e\x02\xdf\x96\x9f\xaa\x32\xbd\x51\xc8\x8a\x11\x58\x41\xa6\xd8\x20\x76\x75\xd7\xe6\x76\x69\x98\x98\x71\x9e\xe0\x3d\x3a\xd1\xee\x8d\xf7\xd4\x06\x48\x5b\x55\x3b\x85\x8a\xab\x23\x44\x50\x2e\x73\x33\xc0\x1e\x71\x6a\x9f\x81\x9e\x53\x97\x10\x83\xa6\xa4\x6d\x09\xc4\x9d\x1b\x2a\xc9\x4d\xf0\xe5\x07\xa3\xe0\x3a\x98\xad\xd8\xbc\x67\x86\x89\xc3\xa6\x50\x4c\x1f\x23\xb9\x9c\x63\xb5\xec\x94\x81\x95\x59\xd5\x00\xc2\xfe\x13\x84\x20\x7d\x53\x63\x65\xb5\xd0\x1c\x64\xaa\x14\xe8\xca\x83\x86\x17\xc9\x3a\x4f\x0b\xb0\xcc\xd7\x1e\x92\xbd\x49\x82\xad\x6e\x2e\x0c\x14\x29\x0f\xf8\xf8\xd1\xbb\x1d\xad\xc0\x86\xf8\x59\x61\x48\xe9\x38\xfe\x68\x8c\x07\xc9\x64\x1a\x6c\x1d\x95\xe4\x19\x11\x07\xe1\xc8\x68\x9b\x7d\x93\x3f\x76\xf6\xac\x07\x81\xfb\xb8\x2c\x7e\x7a\xfc\xb3\xab\xc0\xef\x64\x9e\xaa\x4d\x8e\x83\xe3\x43\x24\x81\x08\x0b\x17\x30\xc9\x8a\xfe\xda\x06\xf8\x04\x38\xb6\x6e\xcb\x42\xc4\xb9\xb3\x73\x9d\xdc\xd8\xce\x54\x59\xc5\xd6\xbb\x51\x18\xc9\xd8\x1c\xb7\x2c\xa5\x61\xf8\x9f\x8c\x02\x20\xfb\xcd\x11\xe7\x06\xb7\xe1\x83\xe4\x80\x01\xb9\xa3\xc0\x42\xef\xc7\x90\x24\xfe\xd9\x49\x76\xf5\xbf\x22\x4b\x1d\x40\xd2\xfd\xa0\x36\xe1\x48\xfa\x14\xcd\x4d\xa4\x43\xd0\x34\x76\x38\x72\xf5\x14\xb0\x81\xae\x8e\x68\xd7\xef\x5a\x27\x91\xac\x74\x6d\xb5\x67\x73\x0c\xfd\xe0\x49\x42\xa5\xdf\x29\xa8\x04\x02\x01\x1f\x8d\x45\xcf\x26\x6d\x55\x5f\xf6\xd6\xcf\xd4\xb1\x26\x44\xd1\xe4\x71\xd1\x9b\x26\x7b\xcc\x0b\x81\xac\xf9\x77\xf6\xc8\x4a\x01\xc8\x36\xb5\x4e\x7c\xff\xed\x82\xf2\x87\x9e\xad\x16\xed\x74\x68\xda\xdf\x21\x12\xc1\x6d\x52\x53\x3c\x86\x93\xc4\x65\x2c\x84\xe8\xd9\xf4\xa1\x90\x51\x9f\xd5\x07\x82\xd4\xf9\x1e\x09\x90\x6a\xf3\x04\x2b\x7c\x7a\xbd\xf1\x95\x2f\x8d\x53\x63\xd0\x40\xbd\x25\x7a\xf2\x8e\xfe\x1a\x9a\xf8\x9f\x5f\xaf\x1e\x93\x13\x56\x0f\xc5\xdb\x98\x65\xb7\xc2\x50\x92\xc3\x7f\xff\x3f\x98\xd0\xed\x5d\xd8\xdb\x94\xf2\x78\xa9\x07\x28\xd9\x51\x2d\x43\x51\x7a\x6c\x2c\x7a\x99\xfe\x1a\x91\x8d\xd1\x23\x40\xc1\xba\x63\x3d\x18\x3c\x5f\xa4\x21\xb8\x25\x93\xe7\xb6\x54\x87\x64\xaf\xfd\xe3\x09\x9b\x3c\xad\x39\xb0\x79\x3f\x2e\x67\xe8\xe1\x1e\x23\x09\x3d\x8c\x3a\x62\xf1\x7f\x5d\x6e\x03\xd2\xb0\xad\x51\xa8\x7f\x37\x89\xce\xd5\x4d\xcd\x74\xb0\xc1\xd6\x09\x6c\x97\xac\x05\x6e\xae\x8a\xd9\xea\xff\xa0\x0b\xcf\xda\x2f\xd9\x4e\x29\x62\x75\xcf\x78\xdb\xf5\x86\xd3\xf5\xf8\xa5\x69\x0a\x3c\x17\x59\x68\xf5\x42\xd0\x3c\x32\x69\x77\x4d\xc1\x2f\xcc\xb2\x69\x26\xa6\x6f\x7c\x46\x3e\xc8\xb3\xfe\xc0\xe9\x6d\x3a\x73\x66\x59\xc6\x8e\xcc\x1c\x98\x2b\xc2\x62\x57\x21\xdf\x2a\xf0\xe0\x4c\xf8\xba\xdc\x52\x7d\xed\xf1\x86\xa5\x2c\x8f\x93\xc4\xc8\xb9\x84\xae\xcc\xd7\x71\x01\xfa\x66\xa2\x32\x3d\x70\xa0\xd9\x8e\x93\x44\x2b\x53\x75\xbb\x8f\xa8\x91\xf3\xd6\x04\xbf\xeb\xc5\x17\x9b\x7d\xf3\xb5\x61\x9c\x88\x8f\x4e\x31\x55\x85\x60\x30\x85\x36\xd9\x06\x0c\xc7\xbf\x4b\x85\x42\xd9\xb6\x6a\x7a\x53\xcc\x22\xfc\x2b\xf9\x77\x7e\x88\x68\xce\x9b\x39\x5d\x25\x4d\xf6\xc4\xa4\xdd\xa2\x63\x06\x56\x9a\x84\xb8\x9b\x1f\x32\xfd\xe1\x3d\x6c\x01\x37\xdd\x24\xd7\x81\x44\x6e\x93\xa7\xe0\x4e\x8c\x05\xfc\x13\x11\x69\xc8\xe6\x6e\x58\xc1\xb1\x75\x36\x23\x22\xa6\x6c\xd6\x56\xb6\x48\xe2\x1d\xdc\x39\xa6\xd9\xed\x5a\xeb\x61\x80\x75\xc5\xf6\xe2\x4e\x62\xd1\x83\xc4\xa7\x7e\x2f\x22\x63\xad\xef\xe1\x5c\xf1\x23\xc3\xfb\xe7\xfc\x90\x21\x3b\xb4\x15\x36\xf7\x3c\x12\xdf\x87\x9e\x9b\x73\xaf\xc7\x5c\xeb\xda\xc3\xa4\x41\xba\xa7\xe7\xd9\x8a\xe7\x7c\x8d\x3e\xd9\x7c\x73\xd5\xac\x35\xa8\x29\x73\xdf\x7a\xc0\xe8\xee\x6b\x3d\x1a\x06\x60\xca\x61\xde\x56\xb0\x13\xd1\xf0\x34\xf3\x20\x4e\x07\xcb\xb4\xc4\xa4\x5e\x9b\x57\xc9\xa1\xf8\x97\x8e\x29\xfa\x18\x89\xaa\x56\x1f\x6b\x19\xb6\x83\xba\xa6\xbe\xae\x53\x40\xe8\x99\xdc\x14\xf0\xa0\xf7\x9a\xb3\xd5\xaa\xc0\x89\x7c\x9c\xb4\xe8\x2f\x4e\xa8\x49\x2c\xec\x6d\x0e\xb2\xc2\x5d\x9c\xeb\xe9\x90\xf7\x17\xcb\x6a\xb4\x6d\xc7\xa8\xc1\x14\x76\x3d\x3c\x51\xf5\xf5\xc4\xa5\x3d\x3f\xdf\x1c\x64\x82\x41\xd2\xbc\xc2\x39\x9c\xa6\xfa\x66\x22\x0b\x7e\x5a\x34\xd3\xf4\x72\xbc\xdc\x56\xe0\xc3\x6f\xd4\x08\x3a\xcf\x36\x21\xe7\xec\x2b\x2c\xac\x25\x14\x28\xfa\x9a\x74\xa3\xbb\xf1\xe2\x62\xdc\x19\x26\x65\x0c\xa8\xfa\x19\x0d\x83\x38\xe4\xf4\x35\x11\xa7\x7a\xc3\xbe\x49\x77\x12\xf1\xec\xff\x88\x42\xca\xfb\x13\x5c\x9c\x73\x6c\xa1\xad\xf3\x8f\x88\xca\xfa\x13\xac\x71\x17\x94\xf7\x78\x9a\xfd\xc0\xac\xc1\x4e\xfc\xb9\xbd\x2e\x5b\x19\x6b\x69\xd4\x30\x1a\x65\x02\x7f\x25\xb6\xab\x8d\x80\x47\x9c\x1e\x51\x87\xe4\x34\x2b\xf8\xe4\x6b\x45\x69\x12\xe4\xa1\x4e\x95\x3c\xa4\xfa\x17\xc7\xfd\x1d\xf3\xee\x1e\xe2\x56\xe2\x6c\x73\xa6\x71\x0d\x3f\xb0\xf1\xbe\x08\xb4\x51\xfc\x79\x21\x4c\x8c\x54\x57\x01\x08\xe4\xd7\x65\x69\xe0\x7e\x9d\xc4\xcf\x77\xdd\xe8\xa0\x26\xf9\x8f\x89\xfd\x35\x23\x72\x56\x8e\xef\x23\x61\x00\x69\x16\x64\x09\x90\xe6\xfd\x1a\x78\x59\x8e\x09\x24\xe9\x1b\x04\x02\x0e\xb3\xbc\xd2\xe4\xc0\xe6\xd3\xcd\x6e\x6c\xda\xb6\x8c\x3b\xba\x63\x9d\x6c\x82\x5c\x99\x53\x5a\x78\x94\x60\x96\x3c\xb5\x5d\x85\x26\xf0\xbf\xc1\x5b\xf1\xe2\x1e\xa1\xb9\x78\x92\x83\x16\xe6\x46\x74\xce\x89\x02\xd8\x71\x86\x25\xcf\x0b\xf4\x08\xd8\xe4\x3b\xbe\x18\x2f\xb3\x3c\xf6\x6d\x17\xfd\xed\xb8\x73\x20\x9e\xaa\x82\x01\xf2\xa3\xc3\x3c\x7b\x6e\x65\x3d\x10\x3b\xeb\x26\x65\x46\x37\xa9\xd8\x58\x2b\xca\x99\x31\xf1\xed\x00\xb4\xc2\x65\xcf\x6b\x55\x55\xdf\x84\x62\xe3\x23\xd2\xf1\x7e\xb4\x15\x00\xb9\xe1\x4a\xbb\x41\xbe\x02\xef\x8d\x02\x8f\xe6\x3d\xda\x3e\xa2\x6c\x49\xb6\xde\x9b\x08\x4e\x88\xa7\x40\xac\xf0\x5b\xc1\x84\x40\x92\x09\x73\x19\xfd\xef\xbe\x61\x32\x30\x49\xd6\x08\x15\xd1\x6b\x7c\x52\xbe\xe6\x1d\x63\xfe\x4d\xde\xe8\x75\xb3\xcc\xc5\x50\xda\xed\x02\x9e\x20\xfb\xf8\x64\x14\x72\x59\xd5\x28\xd7\xd1\x55\xff\x45\xb6\x3a\x03\x32\x49\xec\x1d\x5f\xbc\xe1\xb5\xe1\x3e\x66\xc7\xe0\x73\xb4\xb2\xfa\xb6\x34\x89\xb2\x66\x7c\x5f\xd7\xb7\x50\xd0\x04\xf3\x32\x7d\x01\xc1\xfa\x28\xb0\x51\xda\x2b\x71\x36\x2c\xa6\x02\x6d\x17\x62\xc6\x58\x24\x67\x48\xc4\x63\x33\x7a\x9c\x5a\x42\x43\x69\xf8\x77\xc7\xa4\xb4\x94\x64\xe6\x66\xaf\x1f\xe3\x25\x65\x73\x39\x17\xaa\x64\xdf\x73\x41\xab\xfd\xe6\x30\x2b\xff\x54\xb2\x7c\x59\x0e\x1f\xdc\x9f\xeb\xa3\x71\xe9\x2c\xcf\xfc\x6d\xb4\xc8\x23\x77\x60\x3b\x02\x1f\x4c\x49\x97\xcc\x39\x87\x79\x14\xf9\x77\x7e\x47\x36\x9b\xab\x7c\xa9\x57\x95\xdb\x2e\x9a\xf6\x61\xb7\x8b\xc7\xa5\x7b\x1d\x85\x2c\x6b\x29\xeb\xce\x50\x5f\x54\x65\x28\xf4\x0d\xf8\x19\x5e\x05\xdb\x37\xf5\x5f\x93\x95\xe7\x8c\x1d\x6a\xac\x15\x96\xb2\x04\x83\xe2\xc0\x22\x37\x89\x0d\xb2\x49\x99\x4e\xd1\x1f\x2e\x2d\x25\x56\x9c\x6d\x74\x1a\x4b\xb2\xd5\x30\x99\xe5\xc7\xad\xb3\xdc\xc6\x4b\xa9\xcd\x71\xe8\xab\x28\x31\x9d\xda\xc7\xa2\x80\x26\x67\x69\x99\xcd\x50\x52\x7f\x7a\x34\x91\x90\x3b\x9e\x69\x20\x3b\xeb\x78\x94\xa3\xf2\x07\x35\xb8\x76\x6e\x5e\x89\x93\xd8\x38\x07\x65\xe7\xad\x25\x67\x9a\xe3\x42\x6e\x9f\xa6\xf2\x60\x97\x49\x3a\x59\xda\x20\x55\x95\xf7\xe4\x17\x3a\xc2\x53\xcd\xf4\x2f\xa4\x15\xdd\xf1\xee\x95\xc0\x49\x16\x7c\x22\x89\x78\x6e\x6f\xb3\x6b\xed\xc0\xe6\x33\x34\x01\xf8\x36\x8d\x06\xa9\x84\x06\x12\x8a\xc3\x24\xcd\xfc\x97\x38\x1e\x5c\xd7\x35\x4c\x5a\x0c\x7a\x6b\x45\xdc\x41\xc2\xe4\xa7\x53\xab\x9f\xef\x74\x8d\xc2\x72\x7a\xcb\xef\x3a\xdb\xc9\xd2\xac\xbf\x36\x45\xa3\x87\xaf\x8d\x42\x6d\x7d\x9a\xa5\xae\x3f\xa6\xaa\x38\x4b\x97\xf6\x08\x18\x81\x4c\xfc\x26\xae\x16\x7f\xf4\xe8\x3a\x7d\x2d\xba\x23\x9e\xe7\xbe\xb0\x37\xa0\xef\xd8\xb1\x48\x2b\x71\x0a\x61\x15\x4d\x03\x39\x41\xbf\x67\x6b\x44\xc6\xb3\x0f\xcb\x5a\xdf\x7a\x75\x14\xaa\xc7\x9d\x2d\xaf\x9b\x74\xe3\x67\x5b\xb2\xed\x3c\x3b\xd9\x69\xfd\x3f\xf5\x39\x71\x48\x07\x74\xf0\x04\x5a\x5c\x00\x7c\xee\x4d\x64\x8e\x10\x86\x59\xb1\x53\xc1\xad\xed\xf7\x70\x1b\xbd\x9b\x81\xaf\x50\x4f\x90\x86\xcd\x4a\x5c\x42\x93\xac\xba\x0f\xe8\xa0\x1c\xe1\x76\xca\x91\x89\x0c\x4f\x84\xdf\x8a\xea\x74\xec\x28\x0d\x17\xf7\xff\x3d\x92\xcf\x7b\xcf\x47\xe5\xa5\xdc\xbc\x02\x4c\x70\x9e\xd9\xf5\xbe\xb1\x8b\xef\x42\x64\xd9\x64\x41\x90\xdc\x76\xa1\x89\xa9\x64\x34\x64\x6b\x6a\x83\xac\x6f\xea\xd2\xef\x45\x13\x46\xa3\x90\x29\x1c\xc5\xdf\xe8\x1b\x02\x6e\xfb\xd6\xa4\xe5\x4c\xc0\x52\x4e\x8d\x48\xaa\x73\x03\x10\x92\xaa\xe0\x72\x14\xdd\xa0\xf9\xb6\xbb\x24\x64\x5e\x98\xc4\x8a\x12\x13\x0e\xd3\x93\xf8\x5a\xaf\x04\x5b\x3d\x62\xd4\x39\xca\xa2\x74\x52\xb0\x61\xb8\x6d\x07\x34\xf1\x71\x6b\xbe\x83\xde\x8b\x9f\x31\x0b\x13\x99\xa7\xa9\xe1\x7c\x5a\xd6\x14\x12\x1c\xe8\x4a\xa9\xf9\x10\x0f\xa8\x91\xa9\x43\xb1\x1a\xe7\x18\x3c\x44\x92\xfc\xba\xfc\x3b\x7d\xfd\x99\x83\x53\x2b\x26\xf7\x9a\x48\x6e\x3a\x52\x2e\xc8\x8d\x47\x3a\x21\x82\xf6\x30\xb7\x66\xd8\xc9\x4d\x39\x46\xe4\xfa\x36\xd9\xb9\x7c\x7b\x92\x44\xb3\xb7\xd9\x36\x49\x92\x65\xa9\x44\x72\x07\x3e\x10\x10\x41\x3b\xf8\x8b\x49\x3c\x15\x6c\xbe\x35\x54\x78\x77\xa3\x40\xba\xde\xa2\xf9\xf4\xb8\x9b\x58\x84\x69\x77\x37\x03\x49\xe0\xbb\x58\x81\xde\x85\xd2\x67\x60\xe7\xb0\x00\x5c\x27\x62\xfb\x36\xd8\xb7\xaf\x8a\xd7\xdd\xa2\xcc\xad\x2d\xf5\x14\x07\xa2\xa6\xb9\x86\xbe\x99\xc0\x37\x66\x0f\x35\x57\x65\x64\xb9\x41\xf3\xc6\xa4\x9a\x7e\x98\x24\x34\xc5\xe9\x4e\x00\x06\xdc\x88\xab\x11\xd9\xb3\x40\x3d\xc5\x0b\x61\x7a\x9b\x86\x6b\xb2\x3c\x10\x81\x61\x0b\x1a\x64\xf4\x3c\x55\x3f\x2f\x7b\xc3\x7c\x9a\x9c\x3f\x4e\xc9\x69\xe1\x94\xa8\x1b\xde\xb9\x0a\xf5\x36\xfe\xcd\x07\x94\x48\x0e\xf2\xb8\x63\x1f\x61\x62\xbb\xdc\x47\xc7\x52\x20\xaf\xcd\xd7\xc0\xbc\xd0\x4c\x02\x37\x07\xc1\xe5\x3d\xa4\x30\x2e\xc7\x90\x27\x84\xdf\x06\x42\x09\x88\x6b\x1f\x08\xe8\xe6\x0a\xce\x30\xbb\x08\x91\x71\x8a\x23\xcf\x68\xbc\xfe\x74\x34\xa6\x56\x57\xfd\x2e\x57\xbb\x7e\x56\xab\xc8\xc6\x55\x5a\x2c\x97\xa6\x24\x02\x49\x42\x10\xe4\xcf\xc9\x90\x84\x0e\xa5\xb7\x68\xb2\x0b\xa9\x22\x58\xac\x33\xeb\xdb\xab\xc3\x7d\xb3\xcd\x81\x49\x7b\x26\xed\xaa\x02\x33\x1a\x6c\x7f\xc1\x74\xad\xbf\x98\xe0\x0a\x3e\xf5\x54\xb5\x89\xda\x89\x23\x6e\x39\xe9\x95\xc6\x97\x67\xbd\xf2\x4a\x4d\x23\xb4\x69\x92\x2c\x85\xe2\x8a\xd3\xfb\xa8\xee\x1a\x40\xac\x8d\x51\xf8\x7a\x4c\xe7\x3a\xa1\xb4\x1a\x51\x1c\xd3\xb5\x5f\x1b\x9a\x12\x97\x8c\xa7\x71\x8b\x94\xaf\x6f\xb1\x6c\x29\x46\x25\x1a\x54\x8d\x6f\x44\x3c\x6e\xbe\x11\x02\x43\x9e\x99\x6e\xc7\xc0\x64\xd2\x5b\x44\xbf\x25\x8f\xd3\xc1\x7a\x35\xcd\xda\x97\x86\x45\x19\x2f\xc6\x2e\xa0\x3b\xcd\x0e\x8f\xa8\xff\xc1\x61\x9a\x3f\x69\x5b\x93\x17\x6c\x80\x83\x06\xb4\xc3\x4d\x1d\xa1\xe0\xa5\x6c\x98\xa7\x41\x6b\x59\xb3\x7e\x6a\xf0\x5f\xa0\x86\x6c\xb5\x4d\x24\xde\x38\xa2\x67\xa0\x64\xdf\x63\x5d\xf7\x9d\xad\xed\x72\x38\x22\xa2\x61\xfb\x71\x27\x4b\xbb\xc3\x8e\x53\x19\xc2\x7d\x39\x85\xfd\xa1\x6f\x26\x0e\xf3\x43\xcf\x36\x3b\x46\xee\xd4\x73\x7b\x6b\x05\x5c\x9d\xb0\x45\xd7\x74\x49\x25\xea\x24\xab\x44\x9d\x9c\x88\x58\xcf\x2f\xec\xad\xb2\xdb\x72\x98\xba\xa7\xeb\x77\x3b\x8d\xab\x85\xa8\xb9\x18\xbf\xfc\x32\x0d\x76\xfc\x31\x3e\x5d\xdf\x44\xdc\x8b\x5e\xce\xfa\x00\x78\x7d\x3b\x2a\xcc\x1a\x5c\x24\xa8\xb0\x6b\x4b\x39\x9d\x77\x06\x70\x0c\x78\x18\xb3\xbf\x90\xa3\xa8\x83\xbb\xef\x51\x04\x1d\x93\x0b\xe3\x62\x29\x0e\xe8\x5e\x31\x49\x2c\x22\xdd\x73\xde\x17\x44\xda\x5d\x7e\xa7\x2e\xec\x1d\xf3\xb8\x46\xc2\x0e\xbf\x4e\x14\x3c\xd7\xc5\xb3\x12\xdd\x83\x0f\x26\xa0\xb0\x43\xcf\x36\x7b\x71\x57\x75\xec\x78\x3c\x1a\x50\xfc\x29\x29\x50\xd1\x31\xb8\xe3\xb3\x9f\x7f\x13\x15\x92\x06\x9a\xb3\x2c\x2f\x76\xca\xda\xf5\xfe\xcc\xfb\x1d\xd9\xe5\x96\xe0\x3d\x63\x9c\x68\x7c\xc0\x2d\x9a\x16\x3d\x39\x0a\x4a\xfd\x1b\x54\xa3\x15\x36\x2d\x6d\xda\xc1\x28\x3a\x62\xfa\x11\x36\x79\xb8\x49\x19\xc0\x05\x66\xca\xd8\x24\x99\x21\x1b\x03\x0c\x10\x03\x85\xfc\x14\xe1\x56\xf7\x04\xd1\xc6\x7e\x35\x22\x2e\xff\xc7\x7e\x1f\xb5\x87\x49\x62\x31\xe7\x80\x0f\xb8\x33\xa6\x26\x50\xfd\x52\xe0\x9b\x1b\xb5\x3e\x1e\x8b\x59\x56\x56\x19\x42\x23\xe0\xf2\x3f\x19\x8d\x49\xeb\x3f\x4c\xe4\xaa\x65\x8b\x73\xcd\xf9\x9a\x84\xb1\x6d\x58\xa6\xfa\xe1\x98\xfd\xae\x54\x3b\xe5\xc9\x46\x4e\x0d\xc2\xaa\xa2\x81\x6b\xcf\xb1\xea\xbd\x16\x00\xf8\x8d\xf7\xb7\x48\x57\x56\x58\x0d\x5b\x97\xea\xd2\xd2\xc1\xb0\xe8\xb9\x28\x06\xb2\xc8\x0f\x90\x78\xe8\x1b\xef\xae\xd1\xc9\xfa\xfd\xac\x1b\x03\x0e\x0d\x3f\xe3\xaa\xc6\x55\x7d\x57\x27\xaa\xd1\xb5\x62\x9a\x19\x8e\x0e\xef\xc9\x5b\x5d\xa1\x83\x3e\x1c\x4e\xb0\xb6\x92\xa5\x53\x10\x3a\x46\x27\xe6\x2c\xb9\xdc\x9e\x62\x7e\xe3\x66\xdd\x94\x5c\xd7\x0e\x6c\xda\x75\xbc\x67\xaf\x7f\x5b\xad\x0a\x7d\x53\xf3\x57\xf3\x07\x65\xee\xd5\xe6\xea\x39\x8f\x93\xea\xbb\xfa\xd3\x50\x1a\x5e\x8f\x88\x91\x78\x8b\x28\xca\x89\x59\x5d\xb3\x79\xf1\xa0\xdc\x42\x20\x3c\x37\xa3\xb0\x93\xe1\xdc\x8e\xfc\x6e\x57\x8b\x00\xde\x0d\xbe\xaa\xf3\x94\x3f\x3c\xb0\x1e\xf6\xfe\xf7\x65\xf3\xe0\xaf\x3f\x8d\x28\xa7\xd4\x20\xef\x6c\xe0\x6a\x88\x2d\xe9\x2b\x3f\x37\xb5\xe3\xe7\x34\x1e\xdd\x8d\x68\x34\x03\x72\x61\xa1\xab\xa0\xc7\xe6\xb0\x9d\xc4\x98\xc3\x94\x0b\xc3\xb1\xba\x45\x56\x3c\x9b\x14\x23\x76\xb7\xb8\xf5\x39\x54\xae\x13\x2e\x1a\x35\x9d\xbe\xa6\xe4\x4e\x55\x7f\x83\x22\xc2\xef\xd3\xbc\xee\xef\x13\xde\x5d\x1a\x8a\x4f\xb8\x5b\x7f\x18\x85\xce\xcd\x1f\x52\xda\x9d\x66\x5d\x92\x4d\x80\x33\x81\x73\xb9\xaf\x93\x8f\x1a\xc4\x49\xe6\xcd\x41\x9d\xdf\x28\x3d\xf4\x06\xb1\x19\x0a\xb3\x3a\x13\x08\xf7\xd7\x75\x39\x20\x69\xbd\x16\xd1\x40\x1b\x90\x35\xfd\x67\x6c\x61\xfc\x71\x8d\x2e\xf7\x7c\xb3\x17\x2f\xc1\x76\x13\x30\xea\x0c\x10\x27\x87\x49\x07\x45\xfe\x7b\x13\xcc\xb2\x85\xbd\xcd\x4e\x92\x79\xcf\x78\x27\xf2\x27\x97\xe2\xe4\xff\xd8\x29\x6a\x90\xe5\xa5\xed\xa2\x8c\x7e\xc1\xd3\xba\xc8\xdb\xeb\xc4\xc4\x57\xec\x9b\x6d\xb6\xe3\xbc\xec\x69\x9d\xe4\x65\xaf\x16\xf6\x7a\xd9\xab\x47\x7c\x2b\xd0\x24\xfe\x31\xd5\x8d\x4e\x04\x08\xa9\xac\x32\xac\xc5\x61\xe2\xbc\xc9\xd0\xfb\xb8\x4e\x6c\xfa\x33\x2c\x4a\xc5\x74\x9f\x64\x18\xbb\xe7\xe5\x5a\x03\x63\x22\x25\x35\x53\x87\xfd\x6c\x25\xb6\x45\x69\xf2\x06\x35\x34\xff\xa9\xac\x5e\x7d\x4d\x60\x77\x16\xe7\xd3\x4c\xc9\x57\x9a\x30\x0e\xeb\xd7\x49\xa6\xf3\xcf\xb9\x3d\x7a\x7e\x82\x1c\x2d\xd2\x13\x71\xba\x62\x8b\x12\xcd\x9a\x39\x07\x37\xfd\x95\xfc\x4c\x7d\xed\xf7\x5b\x27\x4b\x17\xe3\x6e\x75\x02\x4e\x53\x6b\xf3\x53\xea\xde\x03\x8b\x01\x73\x44\xb5\x61\x9c\xf1\x37\x19\x28\xbb\x3e\xd5\x34\xcb\x0a\x4a\xa4\xc0\x4e\xdd\x8a\x48\xc8\xe3\x6d\x22\xfb\x1d\xf7\xc7\xe0\x52\x12\x97\x9d\x1e\x1e\x38\xb6\x3d\x98\xf0\xfa\xba\x46\xc1\x7b\xbe\x59\xc2\x60\x2a\xcc\x95\xaa\xeb\x8a\xbe\xa9\x13\xa4\x2f\x7a\x59\x67\x99\x34\x2d\x3f\x62\xef\x9b\x8f\xb6\x0d\x26\x0c\xfb\x83\x32\xce\x52\x49\xc9\x94\x9d\x4f\x21\x00\x5a\x73\xc0\x30\xdf\x94\x92\x08\x2b\xea\x83\x11\x59\xbb\x9d\x62\xa4\xf3\x16\x75\x42\x86\x83\xb6\x35\x78\x42\x9e\x01\xc1\x8a\x5b\x01\x86\xea\x98\x3c\x8f\x6d\x77\x26\xa8\x3d\x43\xd0\xc1\x0b\x06\xfb\x99\x40\xe8\x7c\xe3\x13\xbe\x3f\x0a\x34\xfe\x07\xc6\x02\xe5\xdf\xfb\x5b\xbf\x38\x45\x6e\x68\x87\xe5\x36\xab\x24\x17\xee\x86\x73\xe7\x77\xcf\x66\xd0\x8b\xdb\xb9\x33\xcf\xc2\x91\xf2\x2a\x7b\x9e\xbe\x1a\x7d\xde\xdf\xb7\xb4\x0a\xb0\x71\x07\x13\xb7\x8d\x50\x9e\xa3\xce\xd2\xd7\x44\x96\xee\xdb\xf4\x7e\x52\xd2\x7e\x9f\x64\x38\x15\x2c\x40\x6f\x65\x73\x14\xf0\x8f\x4f\x23\x9a\x04\xfd\x58\x1e\x09\x92\x41\x85\xcc\xb0\xb6\x5e\x45\xd1\xec\x7e\x99\x27\x73\x58\x9b\x27\xb6\x80\x23\x27\x30\xc8\xe9\x56\xb0\x8c\xbd\x42\x10\xfd\x4d\x56\xce\x4c\x97\x86\xc9\xa2\x92\x08\xbd\xdd\x68\xb0\x1e\xad\x53\x67\x19\xa6\xdd\xdc\xc9\x82\x78\x1f\x1e\xaf\xc3\x78\x92\xa0\xc6\x32\x13\x25\x5d\x99\xad\x02\xf6\xb2\x01\x54\x4c\xdf\xd0\xbc\x68\xdf\xe4\xf9\x9a\x66\x27\x38\x13\xd5\xb7\x13\x2b\xf4\x96\x84\x49\x17\x66\x27\xf9\x44\x0b\xcd\xfe\x30\xed\x9a\xd4\xd2\x61\xb9\x41\x8d\xd6\x0d\x9f\x6d\x15\xc3\x76\xd1\xc9\xe3\xb6\x0f\xaf\x0e\x15\x23\xe5\xbb\xd7\x89\x1e\xb4\x6a\x92\x65\x67\x39\xec\xfc\x77\x64\x27\x38\xdd\xfa\x49\x5a\xe4\x92\xc9\x7d\x9c\x02\x50\x7c\x85\xc6\xc7\xaf\xd4\x65\x72\x32\xfb\x51\x1a\x2f\xbf\xea\x55\x37\x0e\x1c\xf0\xc4\xc0\x1a\xea\xc0\x62\x92\xad\xa6\x48\x31\x9d\x1c\x79\x68\x61\x5c\xac\xb3\x67\x5f\xb6\x65\x99\xe0\x2e\x01\x00\xbb\x46\xe6\xc6\xd7\x48\x0e\x69\x90\xf8\xb9\x60\xcf\x54\xc4\xc3\x73\xb4\x45\x1a\xdf\x13\xcb\x9e\x62\x8a\x1c\xbe\x00\x43\xf9\x56\xc8\xfe\x39\x4f\x60\xaa\xe1\xdd\x26\x59\xba\x34\x1d\x06\x9e\x9e\x94\x12\x0d\xe0\xc5\xb4\x6c\x7e\xe7\x63\x24\xcf\xc8\xe1\x23\x0f\xd3\xe0\x6b\x69\x65\x64\x05\xad\xef\xef\x10\xd3\x73\x17\xd0\x1b\x35\x2d\x1d\x91\x70\xd2\xf7\xc8\x81\x14\x9d\xf3\xad\x4b\x74\x38\xae\xda\xa2\xdc\x1d\x88\xe9\xff\x2f\xcd\x6e\xfd\xe5\x18\x79\x0b\xb2\x25\x58\x0d\x50\xf4\x45\xda\xa5\x22\x15\x3a\x0a\xa4\x29\x0e\x30\xe4\x93\x38\x45\xfc\xa8\xdd\x57\xbe\xa4\xa1\x0e\x7a\x28\xfa\xf7\x23\xf2\x28\x7d\x3b\xe2\x3d\xbb\x12\x17\x8e\x93\x0e\xec\xea\x86\x3c\x44\x7d\x4d\xc9\x81\x1a\x08\xb9\x55\xa5\x62\x68\xb8\x30\xa7\x8c\xb6\xfd\xb4\x9d\x5f\x98\x6f\xc6\x69\x27\xcb\x73\xdb\x29\x91\xe0\x38\x0a\x2d\x3a\xc4\xfa\xba\x66\xe6\x55\x6e\x9a\xcd\x21\x81\xae\xb3\x56\x11\xf5\x50\xaf\xd3\x94\x4d\x92\x69\x34\x95\xd3\xd5\x31\x9c\xa9\x7f\xb1\x81\x70\x08\x40\x0e\x52\xdd\xfa\x7a\xe2\x9b\xf7\xcf\x09\x39\xcb\x6f\x69\x67\x8c\x10\x86\x04\xce\x8f\x69\x66\x9a\x3c\x41\xc1\x88\x9c\x68\xb7\x1c\x79\xf8\x87\x9b\x64\xc8\x8b\x75\xeb\x36\xbd\xcb\x2e\x86\x69\x6e\x55\x3a\x90\xb4\xf0\x61\xbf\xe4\xe6\x7c\xb7\x03\x31\xf3\xcf\x56\x75\x50\x3f\xeb\xe4\xa6\xb3\x46\x8f\x02\x1b\xdc\xa5\x16\xdb\x77\xc6\x73\x7b\x9b\x6d\x6b\x07\xd3\x61\xf6\x00\x0a\x4a\xe8\x64\x5d\x1e\x05\xaf\xf7\x37\xe5\x18\x71\x1e\x89\x93\x9d\xa2\xb9\xa6\x59\xcd\xd7\x44\x67\xdd\x5b\x9a\xd3\xe0\x62\xf5\xa1\xc0\x67\x5f\xab\x93\xb0\xcd\x6d\x6a\xe2\xa2\x30\x69\x07\x81\xc3\x35\xba\xe5\x16\xea\x1b\x5a\x9f\xd9\x20\x4e\x71\x4c\x2e\xec\x0d\xc7\xb9\xe7\x36\x9c\x23\xb6\x64\xcf\x74\x9f\x94\x47\x8e\x86\x3b\x4e\x7d\xc4\x97\x3b\x51\x38\x19\xaf\x02\xbd\xc0\xa5\xff\xac\x1c\x6b\x40\x90\x77\xb6\x48\xdb\xe5\x2a\x16\x8c\xf7\x2b\x5d\xd8\x7b\x30\x28\xb1\x56\x91\xc9\x8b\x64\xed\x77\x2d\xf1\xb7\x24\xe5\x90\x2f\x3c\xfd\xb8\x10\x5b\xf1\xb9\xff\x2c\x22\x73\x9f\x8b\x2c\x5d\xd0\x58\x0f\xa7\xe3\x16\xc0\x6c\x4f\xbc\xae\xe2\x00\x8a\xc2\xd7\x59\x3b\x06\x44\x5e\xd7\x1f\x25\x37\xb9\x87\xd7\x6b\x6c\x74\x93\x61\xda\xe9\x91\x43\x01\xf2\x45\x60\x5a\x77\xc7\x9a\x15\x75\xad\x30\x9b\x24\xd9\xaa\x74\x04\x5d\x99\xd4\xf0\x46\x8b\xf0\x8a\x73\x3c\xbf\x50\xcc\x98\xc2\xa5\x84\xd3\xe1\x18\x57\x2a\x95\x03\x14\xc2\x59\xaf\xec\x61\x07\x2e\xd4\xe4\xea\xfd\xb8\xe8\xda\xbe\x35\x69\x96\x6b\xa9\xe3\xf8\xb9\x0d\xef\x2a\x18\x2c\x92\xbb\x71\xd1\x37\x30\x3f\x72\x8e\x4e\xf2\xcd\x78\x10\x70\x42\x72\x9c\xeb\x10\x9d\x5f\x1a\xe6\x18\x68\xc0\x33\xc5\x2d\xd6\xd7\x63\xbe\x9e\xbd\x61\x3e\xfd\x6f\xd3\xe6\x18\xeb\x8b\xd4\x91\x12\x7b\x06\x8a\xd0\x38\x30\x4e\xe1\x2e\xb0\x75\x22\x8d\x0f\xb8\xed\xba\xa3\x55\xeb\xef\x9c\x5b\xdb\x95\x5b\xed\x7c\xb5\x29\x71\xc7\x2a\xa2\x29\x37\x3f\x66\x85\xab\x52\x80\x8f\x41\x66\x9a\x27\x3b\x4b\x0f\x6a\xcc\xc4\x2c\x4b\x8b\x58\x54\x74\x76\x55\x37\x03\xeb\xe1\x9a\x64\xf7\xfa\x3a\x22\xad\xc7\x37\x46\xac\x83\xf4\x46\x14\xa8\x4c\x18\x06\x75\x1c\xff\x70\x18\x9c\x21\xe5\xb0\xa5\x2c\x81\x75\xa2\xee\x44\xa8\x50\xe3\x64\xbe\x14\x85\x74\xff\x0c\x20\x36\xe4\x2a\x5a\x5d\xb8\x80\x24\x17\xe3\x98\x9a\x04\x50\x9a\xbe\xdd\x1d\x1a\x50\xb7\xc8\x38\xe5\x78\x44\x3a\x8a\x1b\xd2\xbe\x71\xe1\x06\x3f\x06\xf8\xd1\xa7\x51\x40\x85\xcf\x62\x89\x23\xdf\x3e\x1a\x35\xbe\xf8\x55\x2d\x4d\xa1\xda\x0e\x94\xff\x8f\x24\x5a\x78\xcf\xf3\xea\xba\xf4\x93\xa8\xea\x29\x6c\xd2\xcd\xfa\xd3\x55\xf0\x42\xc9\x7d\x19\x91\xc1\x4f\xfe\x7a\x55\xbe\xcb\x88\x25\xfa\x3f\xa8\x93\xd1\xcd\x63\x45\x3b\x41\xb9\xbf\x4a\xea\xd3\x57\x99\xe4\x8f\x09\x1d\xf7\x4b\x8f\x8d\x88\xb0\x7d\x8c\x9e\x78\x31\xec\x74\xa0\x3a\x0e\x6d\x7b\x6f\x77\x32\xff\xec\x41\xad\x09\x1e\x5d\x0f\x07\x88\x0e\x3e\xeb\xff\x68\x51\x7b\x80\xa6\x8f\xb5\xf5\x8a\x7c\x14\x2a\x09\xfa\xd7\x12\xab\x9d\x9c\x4b\x4d\x6f\x23\x8f\x97\x62\x90\x76\x80\xe8\x5f\xa2\x99\xc1\x4b\x51\x28\xb9\x97\x6c\x6a\x73\x19\x6a\xa2\xbe\xee\xb4\xce\x42\xea\xbb\x75\xea\x69\xb6\x87\x85\x45\xc9\x83\x4d\x02\x89\xfe\x2d\xc4\x2b\x44\xdc\xe3\x24\xf6\x60\x3a\x65\xbc\x12\x97\x6b\xbb\x08\x51\xfc\xd7\x72\x29\xa0\xb5\xa8\x3e\xa0\xd7\xf2\xae\xae\xc1\x2d\x7c\x59\xd1\x78\x73\x86\x78\x27\x8f\x61\x52\xc5\x89\x06\x3c\x4a\x5b\x6e\x30\xd0\xce\x17\xc0\xc7\x53\x00\x19\xf5\x4d\x68\x38\x89\x26\xe4\xf4\x18\x8d\x73\xcc\xeb\xd3\xeb\xa7\x3e\xd4\xa2\xbc\xed\x4e\x5d\xef\x6c\x90\x67\x2b\xd9\xf2\x36\x97\x93\x73\x24\xbb\x3b\x09\x38\xbc\xf8\xa2\xf7\x2b\xf1\x39\xf3\x1d\x9e\xbd\xbf\x13\x74\x35\xb2\xb6\xe9\x74\xb2\xe9\x20\x58\xa1\x5d\x1a\x5c\xd1\x75\xb9\x54\x74\x29\x76\xb6\x02\x2e\x73\x98\x8e\x9a\x2a\x3b\xb4\x59\xb9\x36\x40\x37\x4a\x51\x06\x09\xde\x0e\x71\x78\x9c\x67\x0e\x06\xca\x81\x0b\xed\x1f\x9d\x65\x75\xf3\x27\x35\xc4\x82\xbe\x29\x4b\x6f\xba\xef\xf3\xed\xea\x8f\xf4\x4d\x9d\xc6\x58\x51\x66\xb9\x59\xc2\x24\xaa\x1b\x9a\x08\x2c\xff\x73\x44\x53\x19\xa6\xa9\xad\x76\x96\xc9\x95\x8b\x84\x87\x86\xf6\x86\xf7\x7e\x0b\xbc\xa4\xda\xf6\x46\x99\x2d\xd9\xb2\x57\x2d\x8f\x05\xa7\x70\x7a\x31\x1a\x6b\x61\x78\x8d\x8a\x38\x5d\x96\xab\x72\x60\x55\x18\x79\x7a\x2f\x7a\xc8\x37\x05\xe3\x55\xed\xc9\x6a\x1d\x42\xc3\xba\xa7\xfc\x67\x75\x87\xcb\x48\xe0\x10\x59\x4f\x71\x98\x3d\x45\x33\x28\xc5\xb2\x2d\x3b\xbd\x35\x29\xdb\xb1\x17\x4e\x8d\x02\x35\xe3\xd4\x98\x41\x69\xe6\x4b\x56\xe5\xc8\xca\x7d\x70\x7c\xd9\xed\xa1\xa0\xaa\x2d\x7a\x71\x6e\xa7\x68\xc6\x4e\xc9\x3a\xde\xdd\xe1\xcb\xb3\x7a\x13\x3e\xa8\x87\x78\x4d\xa2\x74\x6a\x6f\x3b\x57\xfd\x0a\x7d\x43\xec\xc3\x5e\x5c\x3e\x44\x63\x76\xd7\xe5\x93\x1d\xed\x28\x50\x80\x60\x4b\x8a\x2a\xed\x3a\xb6\x28\xd2\x00\xa5\x66\xba\xfa\x8b\x60\xe1\x13\x92\x6d\xeb\xbf\x42\x22\x80\x86\xdc\x51\x28\x63\x22\x4a\x28\xe7\x07\xa1\xfe\x86\xdc\x40\x74\x57\x6e\x92\x64\x93\x7d\x79\x90\x64\xdd\x6d\xae\xc4\xaa\xf5\xa2\x6f\xbc\x24\x55\xcf\xa4\xdd\xce\x70\xd1\xb9\xfb\x61\x11\x40\x5b\x4a\x5f\xd7\xc5\x84\xdc\x0e\x72\x2b\xfe\x5e\x54\x5b\x61\x50\x14\x31\xf3\x26\x7e\x81\x4e\x0c\x8e\x82\xe6\xee\xb1\x1a\xff\x90\xf9\x2a\xae\xad\x6d\x43\x29\x46\x63\xe8\xed\x63\x6c\x9d\x1a\xe7\x7d\x93\xee\xe6\x68\x4c\x8c\xb9\xdb\x32\xf1\xe7\x38\xc2\xc1\x6e\x1f\x93\x5a\x78\xed\xf4\xe5\xd0\x38\xbf\x4c\x8d\xdc\x87\xd7\x49\x44\xf3\x37\xb8\xcc\x14\x2d\xc9\xb9\xad\xe3\x38\xae\x9c\x05\x84\xdb\x2c\x26\x71\x7d\x76\x9c\x3f\x50\x06\xd1\xd7\x74\xd2\xc6\x2b\x98\xe4\xc2\xd3\x3c\x2f\xad\x62\xb4\x2c\x41\x43\x41\xb5\xa5\xb9\x0a\xb0\xd9\x4d\xea\xa5\xf7\xad\x29\x77\xf2\x24\x58\x95\x1d\x00\xf4\xfb\xde\x88\xe4\x3d\xde\x05\xcc\xc5\xfd\x70\x44\x91\xb3\x51\x38\x06\x6e\x4e\x70\x8a\xf6\xed\x6b\xb6\x93\x4c\x5b\x34\xda\x49\x95\x1f\xe2\xba\xaa\x35\xfa\xcd\xa5\x69\x27\x59\xdc\x9d\x1a\x9b\xe7\x6c\x90\x32\x36\xd5\x0a\xd4\x86\x6b\xdb\x24\xb6\x8b\x85\xdc\x32\x64\xac\x67\x88\xdc\x75\x86\x9d\xd5\x6d\xbe\x64\x73\x61\x2f\xa1\x97\x76\x9d\x25\x75\xd4\x24\x04\x59\x3a\x84\xec\x31\x3a\xf0\x2e\xbb\x8a\x9d\x63\x29\x8c\x73\x63\xb6\xe0\x76\x90\xac\xc9\x2d\x75\x3e\xd0\xd5\x17\xe1\x7a\xd5\xb1\xce\xdb\xd2\x06\xc6\xce\x51\xec\x69\xe7\x23\x5d\x7d\x2b\x2e\xe7\xda\xc4\x39\x00\xb6\x44\x3b\xee\x16\xac\xe9\xa1\xb2\x0a\xfa\x86\x30\xde\x8e\x49\x77\xcb\x85\xfb\x06\xc0\x73\x7b\x35\x90\x3c\x0e\x9d\x31\xe0\xb0\xc7\x47\x8d\xa7\x9e\x72\x2b\x24\x1a\x47\x7e\x16\x5c\xa1\xf6\x7f\xcb\xa1\xef\xc6\x76\x1b\x5e\xa2\xf2\x22\x4d\xa6\x4d\xaf\xd3\xb8\xac\xca\xac\xe0\x6e\x4e\x36\xd1\xe1\x3c\xb3\x34\x8c\x8b\x71\x9c\xe2\x4f\x08\xa7\xf8\x93\xda\x59\x9e\x6e\x5c\xe4\xc3\x81\x9f\x97\x72\x85\x5e\xf5\x67\xae\x1a\xac\xd7\xb5\xed\xba\x49\x70\x17\x4c\xc3\x9c\xd2\x8f\x47\x64\x42\x7d\x39\xd4\x7e\x36\x19\xbe\x2c\xa9\xc0\xd6\x25\x9d\x1b\x27\xdf\xd7\xd2\x24\x56\xfb\x6b\xae\x75\x22\x9f\xe2\x7a\x27\x93\x4e\xdc\xb3\x4d\x93\xeb\x08\x5d\xf5\x5c\xe8\xf9\xcd\xfa\xe7\xf7\x38\x09\x83\xc0\x81\xae\x80\x80\xad\x43\x9d\x43\xc2\xb5\x11\x05\x5d\x23\xbb\x62\x3a\x43\x01\xac\xb8\xa3\xff\x3a\x77\xf4\x5f\xe7\xa1\xf2\xac\xb8\x9f\xd4\x06\x5e\x93\xb5\x01\xdc\x66\x6a\x1d\x11\xcd\x97\xd6\x0b\x7b\xc3\xee\xf7\xa7\xf6\x06\x16\x8a\x27\x7a\x78\xc9\xa9\x5b\xd8\x2c\xb2\xec\xff\xe6\x4f\x4d\x14\x98\x07\x0e\x54\x37\xae\x9d\xf0\x41\x3f\x6e\x8f\xb2\xbd\xa1\x3d\x37\xd7\x5c\x1a\x02\x94\xc2\x7a\x85\x2e\xad\xbe\xa6\x38\xb0\x62\x4b\x9b\x9b\x74\x3a\x70\x0d\xf5\x81\xb8\xc1\xb2\x50\x29\x1c\x8f\xe8\x50\x66\x41\xe2\x8e\x59\x31\x49\x6c\xa1\xaa\x08\x68\xfe\x37\x47\x63\xa1\x1b\x37\x07\xc9\xd3\x39\x5c\x2c\xc2\x76\x5a\xc6\x9d\x78\x00\x59\x4b\xc9\xb9\x3d\x0b\x20\x30\x02\x98\xad\x98\xad\xda\x7c\x4f\xc3\xfb\x59\x3f\xb0\xde\xd8\xb7\xcf\xcd\x6b\x20\x12\x39\x70\x68\xcc\x40\x89\x34\xfe\x3e\xc1\xa4\xb5\x23\xab\x55\x1b\x14\x29\xe4\x8e\x75\x0a\xfa\xc7\x46\x41\xe5\xf2\x9f\x22\xde\xa1\x05\x75\x17\x70\x39\x4a\x8b\xff\x91\xa7\x6e\xce\x4a\xe5\xad\x13\xcc\xad\x70\xf0\x3d\x04\x0a\x14\x0a\x93\x23\x11\xc9\x4f\x1d\x26\x0d\x05\xc9\xf2\x01\x9e\x36\xe8\x80\xc2\x57\xbb\xd3\xca\x6d\xb1\xbe\xc9\x97\x95\xc6\x5b\x2b\xe1\xbe\x3d\x6e\x38\x7a\x64\xdb\x74\x96\xa7\x83\x47\xe9\xae\x56\x00\x98\x8f\xca\x9d\x70\x53\x50\xf2\x69\xd8\x5c\x93\xc3\x03\x5f\xfc\x6a\xd3\x0c\x06\xd6\xe4\x48\xf8\xdc\x53\x95\x5f\xa9\x5e\x40\xa3\xc0\xba\xdf\xa4\xcc\x12\x2c\x5b\x0d\xc4\x64\xc5\xe3\x7d\x79\x3c\x0d\xac\x28\xcd\x22\xbc\xa8\x90\xdb\xbc\x23\xeb\x50\xad\x7c\x58\x68\xe1\xdb\x3c\x82\x00\x2d\xf4\xe9\x30\xad\x70\x3e\x28\xca\xae\x1f\x25\x6d\x98\xa3\x72\xf0\xbb\xe4\x66\x32\x60\xce\x35\xb3\x76\x61\xf3\x15\xeb\xc0\x2e\x3c\xe2\xd7\x85\x8c\xa9\xaf\x3d\x76\xdc\x8d\x8b\xd2\xa4\x1d\xcf\x04\x51\xec\x42\xd6\x1c\x40\xcc\x9b\x94\x99\x9d\x81\x4f\xf5\xf8\xee\x5e\xec\x23\xd1\xc7\xb9\x77\x98\xf0\xbd\xc3\x5e\x93\xa0\xca\x14\xb3\x21\x1a\x50\x2e\x4d\x24\xb1\x91\x49\x03\x98\xd9\x43\xcd\x81\xcd\x17\x6d\x07\xf3\xf8\x8e\xb4\x1e\x2e\x6b\xc7\xba\x5b\x50\x79\x96\x24\xb6\x3b\x2d\x8f\x02\xd5\x91\x1a\xaa\x81\x7c\x8b\x58\x43\x1c\xfa\xf9\xad\xd3\x35\x93\x28\xf3\xd5\x13\xe8\xc7\xc3\x7e\x83\xcc\xd4\x6e\x92\x48\xdc\x64\xc6\x23\xda\x3f\xed\x21\x0c\xe5\xc6\x64\x06\xb0\x29\xcf\x92\x5a\xcc\x5d\x4f\x7a\x4a\xe2\x04\x2c\x34\xfc\xc5\x4d\x32\xad\x53\xa0\x11\xc0\x4c\x90\xe4\x19\x24\x50\xae\xf6\x09\xe2\x23\x2d\x62\x11\x6c\x06\x85\xd6\xaf\xdf\xe1\xb9\xfa\xc3\x63\xb0\x63\xdf\x76\x1f\x93\xe0\xe1\x3a\xb8\xd5\xc7\xa1\xa3\x75\x97\x7c\x69\x3e\x87\x1a\x01\xfb\xea\x63\xcc\xcb\xe8\x5f\x20\x5e\xe0\x9f\xdd\x43\x8e\xe8\x08\xa9\x88\x57\x4e\xca\x58\x16\x92\xf3\x0f\x09\x89\xc3\x4f\xad\x93\xb1\xfe\xc7\x11\x99\x28\x00\x8f\xc2\xeb\xfb\x65\xde\x04\x70\xa3\x66\x5e\xde\x3e\x7f\xf6\x90\x57\x4e\x91\x1b\x80\x95\xb0\xab\x45\x78\xca\xb0\x1b\xdb\xb4\x63\x67\xd0\xb7\x55\x9d\x11\xc0\xf0\xee\x1e\x57\x3f\x16\xe9\xc6\x87\xc1\x62\xfe\xc9\x6b\xe3\xca\x24\xae\xc4\x71\xcc\x45\xcd\x3d\x70\xe2\x4d\x41\x62\x56\xdf\xac\x3f\x46\x4d\xf9\x7e\x9c\x5a\x3f\xb1\x39\xa6\x0f\x39\x26\xee\xeb\x0c\x23\xea\xd0\x58\xd3\xce\x56\xac\xb0\x10\x70\xe2\x41\xf2\x05\xad\x5a\x49\x4a\xbc\xab\xd5\x18\x59\x2e\xc8\xb8\x4f\xa6\x43\x07\x0e\x34\xfb\x81\xf7\x5c\x27\x27\x56\x47\x35\x35\xc9\xa2\xc0\xfe\x4e\xe2\x33\xc0\xfe\x5b\x02\xaf\x39\x47\xc9\x1a\xff\xd8\xae\x79\xe5\x95\xc4\x07\x15\x6c\xa0\xeb\x24\xcf\x06\x78\x1c\xb0\xf7\x5b\xa3\xcf\x91\xf8\x29\x48\x7d\x42\x16\x25\x3f\xab\x93\xf8\x7d\xd8\xc5\xaf\x8e\x42\xce\x7c\xa1\x0e\x3b\xe9\xda\x95\xcc\xa7\x8b\xd8\x0c\x3a\x53\xa6\x6f\x88\x62\xda\x37\x89\x15\x18\x1d\xa7\xe2\x35\x24\x10\x8e\x15\x2d\x9f\xe0\xf8\xd2\x01\x96\xbb\x46\x13\x73\xa5\xed\xf4\xd2\x2c\xc9\x96\xc4\x87\xff\x05\xef\x44\xcd\x96\x19\x23\xe2\x81\xa8\x42\x9a\xd7\xfc\x5a\xd8\xab\x41\xf7\xb4\x94\x57\xde\x31\xe3\xb9\xf1\x73\xc0\x75\xb5\xc2\x66\xff\x53\x44\xb9\x31\xc2\x12\xee\xee\x29\x2f\xe9\x3c\x4c\xd3\xea\x24\x10\x86\xf6\xd6\x2d\xf9\x6d\x5b\xb7\xea\xc6\x41\xd6\x62\x9b\xa0\x9d\x80\xda\x61\xcc\x37\x0f\x24\x63\x65\x4a\x62\x01\x3b\x1a\xf3\x1e\x9a\x43\x14\xaf\x57\x70\xdf\xbd\x97\xcf\x7e\xef\xeb\x43\x47\x69\x62\x05\x10\x23\xe9\xb0\x06\x44\xa1\xd5\x8f\x35\x9a\x98\x6f\xd0\xa9\x92\xea\xf3\x20\xe5\xf4\x82\xf7\x6e\x95\x55\xe2\x5c\x89\xfd\x11\xbc\x6a\xd2\x65\x62\x5e\x68\x8e\xe1\x66\xdc\x7d\x64\xcd\xb2\xbc\x2a\x0f\x9f\xf3\x73\xe9\x04\x19\x4e\xaf\x57\xe7\xac\x97\xae\xaf\x62\x27\x7e\xca\xcf\xb4\x42\xff\x41\x67\x5b\x5d\xf6\x19\x8a\x85\x32\x37\x2b\x36\xb9\x9f\xa4\x61\x1d\xee\xef\xf5\x47\xfd\x1c\x28\xa8\x09\xb8\xd7\xc7\x88\x78\xf9\x2e\xe2\xaf\xf3\x42\x09\xd5\x0b\x54\x1d\xf1\xfa\xd2\xc4\x0e\x90\x73\x29\xb7\x85\xe5\xb3\xf3\x32\x1d\xe9\x97\x6b\x4c\xce\x17\x6d\x92\x18\x4c\x40\x82\xd6\xa3\x72\x21\x58\xfc\x57\x23\x8a\x78\x1f\x93\x89\x60\x3f\x2e\x8b\x61\x3b\x2e\x7a\xb1\x7a\xfc\xa1\x16\xba\x42\x9d\xb5\xc6\x7a\xf8\x75\x7a\x3e\xd2\x9b\x79\xdf\xe7\x0d\xd5\xfc\x4c\x8b\xdc\x51\x8f\xb3\x3b\xaa\x22\x28\xda\x19\x07\x04\x86\x5e\xdc\x24\xbe\x70\xe0\x40\xb3\x9d\x67\x69\x27\xd3\x34\x48\x27\x26\xd8\x6d\xeb\x1e\xc1\x23\xcb\xa6\x7c\x85\xc8\xdd\x23\x26\x77\x8f\xa8\xea\x5f\xcc\xf2\xbe\x43\x80\xb5\x5e\xd0\x07\xeb\xaa\x87\x50\x74\x7d\xd9\x74\xa6\x88\xe9\x75\x3b\x62\xda\x36\x56\xb6\x63\xd4\x3f\x4e\x1a\x88\xc5\x20\x83\x23\x6e\xe8\x40\xfd\x39\xe9\x05\x6f\xf0\x20\xde\x25\x9f\x58\x74\xbf\xd0\xf9\x02\x33\x11\xf1\xaf\x1c\x2d\xb1\xa6\x8b\x3e\x30\x89\x2d\xca\x38\x8d\x4d\x2a\x1d\x0b\x27\x8d\x13\xa2\xc0\x9f\x23\x5f\x7a\x75\x22\xcb\x84\xc1\xc0\xe2\x90\x28\x0e\x8e\xda\xd9\xf0\x52\x71\x67\xa8\x51\x96\x64\x4a\x5e\x71\xbd\xaa\x6a\x6f\xb9\x3f\xc1\x61\xed\x07\x1a\x7c\x43\xee\x0e\x3b\xf7\x7d\x42\x1e\x90\xd7\x79\xee\x5c\xcd\x82\x9d\x66\x67\x60\xdd\x68\xcf\x5b\x65\x35\x47\x34\xb7\x7e\x89\xa6\x11\xfb\xf1\xcb\xb6\x2b\xbf\xdf\x39\x96\x35\xbc\x0d\xa2\x96\x55\x68\xaa\x1e\x8b\xc6\xbc\x33\xad\xc9\x83\x23\xa6\x36\xd9\x47\xe1\x4f\x2f\x61\x9d\xb9\xa6\xb1\x4f\x56\xe3\x15\x93\x14\x98\x69\x40\x42\xa2\x54\x6f\x24\x73\x1f\x51\x2d\xfd\x1b\xef\xb2\x97\x10\x70\x31\xb4\xdf\x2e\x52\xd8\xcd\xad\x64\x87\x0a\xd7\xba\xd4\x51\x3e\x45\xdf\x50\xe0\xb5\x2f\xcb\x34\x9f\x04\x5e\xe8\x4e\x5c\x87\x2e\x1a\x30\xe1\x0f\x69\x42\x5c\x41\x26\xc5\x07\x23\xd2\x8a\xfb\x1e\x16\x16\x4a\xa7\x5b\xc8\xf6\x90\x36\x6d\x4e\xc4\x95\x6a\x9d\xa4\x5f\x58\xc1\xba\xf4\xee\x0a\xd5\x9f\xeb\x9b\x28\xd8\x9b\x2f\xc6\xa9\x75\x2d\x0c\x1c\x6a\x1f\x8f\xc2\x85\x22\x8d\x77\xd9\x0e\xb5\x06\x06\x59\x59\x7a\xb8\x9a\x66\x75\xe6\xfd\xac\xce\xf6\xa5\x5f\x95\x48\x62\x19\xd9\xce\x4c\xde\x6d\x04\x25\xd3\x73\x44\xc8\x65\xa0\xaf\x3d\xcc\xbb\x36\x45\x47\x0c\xc9\xd0\xe9\x88\xc4\xcf\x4f\x93\xd8\xc2\x79\x9a\x79\x3d\x4f\x9b\xba\xb4\x89\x1d\xf4\x64\x3c\xce\x93\xdb\x6e\x8f\xc9\x65\x61\xad\xab\xba\xda\x98\xcc\x61\x20\xb2\x14\x09\xdc\x93\xe4\xa0\xc6\x01\xa8\xce\x8f\x9e\x18\x52\x5d\x96\xbe\x21\x81\xe9\x13\x5c\x69\x0e\xf1\x19\x14\x14\xef\x6b\x05\x72\x36\x58\x08\x58\xf2\xe3\x03\xb0\xdb\x73\xc4\x17\x5f\x6c\x76\xad\x41\x17\xd5\x63\xca\x24\x28\x16\x68\x97\xdd\xa1\xf8\xb8\x0b\xdd\x07\xeb\xe6\x3e\x29\xe5\x58\xda\x03\xbf\xfc\x12\x4f\x0d\x95\xb9\x4d\x97\xca\xde\x2e\xc9\x0d\xb0\x27\x1a\xc8\x4b\x74\x8c\x1b\x5b\xc7\x89\xcd\x86\xc2\xf3\xf4\x88\x24\x85\x1e\x94\x31\x7a\xa7\x5d\x24\x77\xd9\xa1\xfa\x35\x55\x67\x6f\x58\xb4\x4d\x0a\x14\x1b\xa7\xa5\x52\x97\xf5\x4d\xad\x27\x5d\xbc\xd4\x93\x47\x82\x2a\xf9\x2d\xea\x94\xdf\xa4\x36\x8b\x72\x3a\xdc\x6c\x5c\x9d\x41\xb9\xed\x64\x69\x97\x64\x08\xae\xe0\x81\x7a\xff\x50\x3f\x4e\xb1\xa3\x55\x17\x92\x93\xb8\x6d\xf3\x30\xb6\x03\x26\xc3\x0f\xc7\x74\xf7\x7e\x48\xc2\x23\xed\xc4\xbc\x62\x21\x1b\x8a\xfb\x86\x75\xa7\xaf\x7d\xcc\xea\xf4\xac\x55\xbb\x42\xe4\x2e\x20\x7d\xe9\xeb\xf5\x1a\xd6\x8f\xc9\x97\x86\xe3\x25\x93\x62\x9e\xfa\xa6\x06\x29\x9d\x6f\xe6\x26\x49\x62\xe7\x8c\xae\xa4\x16\x9e\xf0\x3e\xc5\x36\x62\x43\x72\x94\x05\x66\x8f\x51\x64\x7d\x4d\x67\xf0\x7f\xf6\x1f\xff\x27\xf2\x0b\xb1\xad\x6f\x09\x11\x43\x5f\x13\x47\x24\xc9\xd2\xa5\x87\xab\xfb\xee\xb8\xa4\x61\xf2\xf4\x12\x1b\x81\x41\xd3\x19\x3b\xe2\xfb\xf2\x59\x9a\x09\x23\x20\x38\x56\x21\x4d\x99\x1c\x8b\xe8\x78\xc4\xd4\x37\xee\xdc\x16\xc2\xbb\x3a\x68\xe2\x78\x72\x43\xe4\x01\x05\xba\x87\x24\xc7\xb5\xb7\x27\xba\x2e\xb3\xcd\x81\x59\x72\x96\x25\x6c\xe0\xed\x5a\xf7\x64\x47\xbc\x8c\xfe\x11\xa2\xcf\x49\x61\x79\xe2\x3c\x85\x8d\x34\xb6\xc8\x4d\x5c\x3c\x6a\xb3\x9d\x13\x4a\x89\xf3\xcf\x1e\x6c\xf6\xe3\x6e\x99\xad\x82\x54\xe9\xc4\x34\x02\x50\x7c\x79\x02\xd0\x7d\x6e\xef\x0b\xcd\xa5\x0c\xed\x3e\x37\xcb\x5e\xfd\x7b\xc8\xc3\xa0\xbe\x71\x49\x67\x75\x81\x2e\x7d\x20\x86\x69\xbf\x9d\x9b\x8e\xed\xce\x34\x48\xe1\xb7\x31\x2e\x03\x1c\x9c\x95\x83\xd0\xcf\xc5\x71\x7d\xe0\x49\x85\xcb\x85\xbd\x0b\xb2\xdd\xc6\x92\x04\xaf\x7e\xed\xa5\xa8\xbe\x5b\xeb\xca\x3f\xc8\xad\xe9\xb2\x07\xf3\x1b\x44\xac\xbb\x82\x94\x19\x37\xf8\x66\x1d\x6d\xbd\xec\xd9\xdc\x0c\xd6\xc8\x2c\x05\x0d\x33\xd7\x41\xa9\x6b\x27\x94\xbd\x3c\x1b\x2e\xf5\xa6\xaa\xe2\x41\x6f\x59\x14\x5a\xf6\x53\xad\xd0\xa1\x7b\x60\x9d\x2c\xeb\x96\x72\x6b\xfb\x36\x2d\xa5\x13\x86\x3c\x4f\xb5\x21\xf4\xb4\xc7\x5a\x04\x7e\xfc\x8e\x3c\x10\x9c\x00\x3f\x8c\xa8\x71\xf1\x2d\x6c\x47\x05\x6d\x26\xd6\xe2\xd3\xcd\x4e\x62\x86\x85\xdd\x29\x2b\x16\xc8\x9e\x8e\x8a\xa2\x35\xbd\x31\xda\xe1\xb8\xf4\xa7\x68\xe8\xe4\xfe\x16\x8d\xb0\x1c\x27\xe9\xa3\x6f\xf8\x3a\x16\xe2\xcf\x06\xf7\x0a\xe7\xfa\x6d\xea\x92\xde\xae\x99\xff\x6a\x76\xe2\xbc\xe3\x65\x38\x9c\xbf\x9f\xfc\x66\x7d\xc3\x9e\x63\x89\x29\x4b\x9b\xb2\x14\xbc\x96\x3c\xfa\x66\xc4\xa1\x62\x05\xc1\x10\xa7\xc8\xeb\x51\x80\xcb\x5f\x27\x5b\x88\xc5\x78\xb1\xec\x89\xd2\x32\xfa\x2a\x2a\xb0\xe0\x40\x66\x12\x87\xb9\x16\xb1\x63\x19\xb4\x8b\xb4\x13\x8e\x6b\x70\x8d\xb7\x9a\x03\x78\x90\x67\x1a\xec\x75\x58\x66\x9d\xc6\x0e\x77\xb4\x3e\x37\xbe\xe0\x9f\x9f\x3d\xd4\x9c\x9b\x3b\xf8\x28\xe9\xf1\x3f\x00\x2c\x11\x87\x03\x6a\x4c\x84\x5b\xe0\x8a\xae\x84\x23\xab\x0e\xe5\x14\xe8\x1b\x09\x55\x60\xa3\x1d\xe1\xb6\xfb\x7d\xad\xa0\x96\x75\x63\xc4\xce\x37\x17\xb1\xd6\x10\x68\x7f\x5f\xe2\xe9\x18\x91\xd3\x4d\xc5\xc8\x56\xf4\x34\x86\x30\x04\x7c\x8f\x48\x6a\x10\x8e\x61\x38\xa8\x11\xdc\x53\x46\x41\xc7\x12\xe4\xcf\x06\x25\xd7\xa7\xa9\x57\x7b\x9a\x55\x9a\x86\x9d\x8e\xb5\xc8\x0a\xd5\xc2\x43\x2e\xd1\xd9\x79\x4c\x26\x93\xcf\x34\x4d\xb7\x1f\x97\x18\xbe\x0b\xa5\x2e\xa2\xb0\xbe\x26\xc5\x97\xb6\x49\x12\xed\x22\x38\x5c\x40\x7e\xb6\x83\x05\xd8\x31\x71\x48\xda\x36\x67\xc8\xc6\xf9\xcc\x44\x6c\x78\x5a\x84\xac\x0b\xef\x1f\x8f\xb5\x74\x9e\xc5\x3a\x27\xc9\x18\x07\x0e\xa8\xd9\x9e\x47\xea\x80\x2c\x7e\x4c\x5c\xec\x5b\x34\xe0\xc9\x0c\xc3\x4e\x96\x26\xca\xf8\xc7\x63\x45\x0e\xa9\xaf\xd7\x3d\x10\xd3\xcb\x56\x0d\x59\xda\x68\xf6\xaf\x6f\x88\x1c\x33\x48\x3a\xc8\x48\x7d\x36\xe7\xbb\x5e\x1b\xe3\x74\x0e\xac\x25\x97\xa5\xd7\x69\xa2\x98\x62\xd9\xca\xb0\xf6\x74\x98\xd5\xdc\x20\x8d\x9b\x13\x34\x14\x0b\xbc\x05\xa5\xdf\x8e\x56\x6d\x48\x8b\xfb\xea\x83\x85\x20\xff\x29\x42\xa2\xa7\xa7\xec\x9b\xf5\xd4\xb8\xb0\x30\x8b\x8e\xe0\x8a\xb3\x87\x14\xca\xfe\x10\x8b\x1e\x75\x2d\x30\x7f\x7d\x3d\x0a\x78\xf7\x87\x3e\xe5\xb2\xb9\x70\x70\xe4\x6f\xbc\x29\x73\x30\x68\xa6\x31\xa5\x24\x2e\xca\x42\x7e\x27\xf9\x4a\x79\x93\x29\xc1\xcc\xdd\x74\xae\x20\x73\x6e\x6c\x37\xac\x78\xd3\x37\xaf\xc4\xe9\x92\x8c\xbf\x72\x0d\xce\x1c\x69\x87\xcb\x54\xd7\x00\xb4\xf2\x2e\x1e\x8a\x13\x35\xa9\x61\x83\x2c\xc6\xb9\x9a\x97\x63\xc6\x1e\x28\xbf\xbe\x9e\x08\xd8\x2f\xbe\xd8\x4c\xb2\xd5\x60\xab\x59\x27\xb3\xb1\x27\x8c\x53\x96\x59\xee\x11\x5e\x77\xb8\x34\xbc\x47\xe0\x46\x34\x79\xd2\xcf\x2f\xcc\xdf\xdf\xf0\x72\x37\xd7\x00\xad\xe1\x6e\x28\x07\x16\x61\xf6\x13\xb2\x05\xb8\x23\xf7\xcf\x6b\xa0\x56\x37\x76\x6c\xf4\x1f\x28\x49\xa3\x15\x2a\xa0\xdf\x8c\x9e\xf0\x2b\xdf\xe4\xb6\x97\x25\x5d\x3f\x6a\xee\xaa\x1d\x2c\x60\xb5\x38\x1f\xd1\x62\xba\xe1\x35\x00\xfa\xb6\x1b\x97\xc6\xfb\x3c\x00\x5e\x78\x5f\x6e\x86\xbe\xae\xf7\x7c\xcc\xda\x71\xca\x12\xd3\x4a\x65\x73\xd6\xe4\x35\xdd\xbb\xa7\x8a\x86\x94\x57\x4e\xa2\x4b\x16\xba\x1b\x35\xdf\xfe\x1d\xfb\xe7\x9a\xf6\xe5\x41\x96\x97\x88\x16\x0e\x0e\x6c\x78\x8b\xd2\x4d\x6a\xec\x5f\x9e\x14\x07\x5e\x98\xff\x39\x1d\xe3\x6a\x84\xe8\xfb\x2e\xb1\x7c\xde\x0d\x4d\x2f\x9b\xc7\x4e\x80\xd9\x33\x3e\xe6\x02\xff\x3f\xa8\xe5\x75\x86\x79\x6e\xd3\x4e\xac\x12\xb9\x5e\xb1\xae\xba\x0b\x4e\xb1\x8e\x4a\xe8\x52\x1c\x2e\x40\x17\xf3\x7e\xb8\xbe\x43\xf8\xcf\xe9\xa0\x2f\x56\x0d\x6c\xd1\x81\xe8\xe8\x47\xea\x9b\x89\x05\xbc\x6f\x5f\xb3\x67\x95\x0c\x50\xdd\x1c\x80\xf4\xe7\xa9\x3b\x77\x9e\x54\x95\x8a\xd5\xb8\x80\x60\x23\x20\xe0\x1b\x34\xb0\xa8\xb8\x00\x96\xdd\x4f\x6a\x30\x95\x66\x1e\x17\xcb\xc8\x85\xb0\x9d\x30\xeb\xa3\xaf\xa3\xdd\x21\xa8\x16\x52\x96\x02\x2e\x3d\x21\xbb\x9a\x74\x89\xdd\x58\xd2\x89\x28\xb8\xec\x9e\x26\x6e\xec\xa2\xed\x8a\x6b\xa7\x63\x98\x00\x55\xfb\x3a\x6b\xba\x7e\xbd\x6e\xe6\x4a\xec\x71\xf5\x58\x56\xe1\xbd\x88\x45\xf8\x1c\x60\x99\x9a\xc2\xb0\xb9\xc5\x9f\x47\x8c\x3c\x4e\x98\x62\x0b\x93\x36\x8f\x4d\x6a\x1a\x84\x4c\x6f\x8c\xc6\x94\x7f\x42\xce\x5b\xc4\x25\xe8\x31\xa4\x5d\xb5\xc1\x7c\xf1\x3b\x63\x93\xb2\xd5\xbd\x51\xcb\xb1\x28\xf4\x5e\xee\x48\xd3\xdc\x59\x91\x71\x3f\xb5\x93\x15\x33\xa1\x3f\x7f\x52\x88\x83\xfa\x5a\x74\x1c\x50\xa6\x2b\x13\xd1\x49\xde\x8f\x2b\x62\x4f\x96\x49\xcd\x55\x5b\x4e\x55\x65\x19\x50\xd2\xbf\x94\x2b\xf4\x0e\x5f\xfb\x66\x3d\x14\x43\x62\x6a\x89\xb5\xcb\x58\x71\x8e\xd0\x48\xe4\x46\xae\xfe\x52\xb3\x93\x85\x64\x31\x3a\x87\xb6\xc7\x96\xac\x52\xcf\x15\x3e\x70\x20\xc8\x9c\x56\x77\xda\xa9\x20\x12\xee\xf7\x60\xab\x2e\x11\x4a\x4c\x67\x39\x19\xa2\xd1\x48\x5a\xbf\xe1\xc3\x4f\x12\x72\xd7\xcd\x86\xed\x44\x07\x7d\x1d\xc5\x28\x54\x94\x1b\x23\xe7\x1f\x9b\x66\xa9\x4e\xaa\x39\x13\x53\x57\xe7\x49\x6c\x73\x85\x5e\xc0\x8d\xda\x71\x92\x78\x75\x33\x00\x02\xaa\xb5\xab\x6f\x18\xda\x33\x69\xaa\x29\x93\x63\x70\x8f\x71\xbb\xeb\xb0\xc3\xc2\x94\x71\xb1\xb8\xe6\x77\xba\xd3\x4a\xa8\x3e\xc4\x69\x28\xf0\x52\x59\x31\xc9\xc3\x5e\x69\x71\xe5\x2e\xd6\xa0\xb7\xf1\xf5\xe6\x11\x1f\xc9\x5a\xf3\xc9\xde\xec\x21\x0f\x89\xc9\x43\x40\xf2\x71\x39\x1a\x53\x40\xaa\x56\x2a\x58\xb9\x37\xc8\x39\x5d\x4b\x3b\xfd\x8a\x88\x0a\xa0\x73\x0c\xb5\x21\x06\xe0\xe1\x9e\x27\x42\x79\x31\xb0\x9d\x58\xc4\xa9\xd0\x0f\x02\xe1\xe6\x38\x8f\x42\x6e\x92\x5f\xcb\x79\xa2\x86\xbf\x02\xf1\x47\xac\xbe\x0f\x49\x85\x61\xaa\x45\x45\xca\x7d\xeb\xe1\x01\x74\x6c\x51\xa4\x1a\x06\x90\xdf\x03\x4b\xd0\xd7\xd4\x51\x8b\xd3\x6e\xec\x1d\xbf\xf0\xd5\x77\x46\x01\x45\xfc\x21\x51\xa8\x7f\x88\x87\xa8\xff\x68\x52\xdf\xf7\xd9\x83\x02\xf8\x58\x95\xdf\x72\x14\x25\xba\x88\x49\xbd\xe8\x2a\xec\xda\xce\x5a\x55\x52\x82\x54\x88\x66\xe0\x71\x9a\xff\x57\x83\x7e\x3c\xa9\xef\x4e\x94\x6b\xcf\xcf\xcb\xec\xb6\xdc\x21\x00\xee\xa7\x47\x54\x89\xdd\xc6\xd9\xeb\xea\x80\x1a\xa4\x47\x32\xaa\xa9\x30\xc8\x00\x65\x69\x80\x1b\x97\x47\xc4\xb6\xff\x80\x1c\x38\x5f\x1a\x76\x97\x6c\x71\x3f\x09\xdb\x01\x29\x43\x7a\x77\x53\x02\x9f\x97\x68\x7b\x6e\xaf\x0f\x76\xd5\x47\x83\x2e\xf7\x2a\x29\xef\x9e\xc0\x38\x98\x93\x60\x91\x4a\xf0\xb3\x34\x58\x66\x0f\x35\x87\x69\x31\x70\xf6\xcc\x40\xa5\x37\xb8\x51\x3d\x89\x71\xa0\x77\x69\xe2\xae\x72\x15\x70\x37\xde\x8c\x02\xe0\xf8\x66\x8d\x1d\xcf\x5c\xb3\x28\xf3\x78\xa0\xe9\x82\x03\xd4\x83\x12\x7d\xd0\x31\xe9\x67\x69\x91\x69\x56\xe5\x08\x98\x0d\xaf\x84\x70\x81\x96\xdb\xc0\x14\x85\xed\xce\x54\x7b\xd2\xc9\x75\xc8\xa7\x03\x1c\x7a\x47\x56\x1e\x98\x29\x6f\x8f\x02\xa6\xff\x3e\xcd\x95\xde\xdf\x72\x1a\x69\x03\xe3\x54\x1d\xb0\x68\xde\xc5\xc3\xd2\x37\x13\x23\x8b\xde\xeb\xab\xe8\x0d\xab\x1c\x9a\x3a\x91\x17\xe9\x79\xb1\x24\xe5\x2f\xff\xd2\xdf\x9e\x26\x4d\x8f\xe3\xc4\xa2\x06\xef\x02\xcc\x87\xff\x73\x14\xbc\x52\xee\x6b\x85\xc3\xd2\x0e\xf3\x6c\x60\x55\xf5\x77\x96\x47\x43\xfd\x9c\xe8\x98\x43\x7b\x99\xda\xa2\x90\xf1\x32\x97\xf6\x06\xe0\xff\x37\x51\x68\x60\x25\xde\x11\x62\xa1\xbe\x0e\x3a\xd9\x8b\x8b\xa2\xad\xed\x19\x4d\x27\x49\x7b\x45\x27\xff\xb0\x0f\x8f\xf0\x51\x57\x65\x9e\xdb\x8c\x22\xaa\xed\x83\x94\xf0\xd5\x71\xd7\x88\x90\x2b\xbe\x4a\x1f\x31\x28\xfe\xde\xdf\xfa\x45\x49\xbb\x70\x3e\xe3\x10\xf4\x02\x1d\xfb\x66\x15\x1c\xbb\x42\xac\xdc\x76\x5c\xed\x7a\x1f\xed\xc1\x25\x3e\x45\x43\x1a\xa7\x88\x66\xfb\x4b\x7f\xe7\xef\x92\xac\xdd\x69\xf9\x48\x7d\x3d\x91\x2a\xb9\xc7\xdc\xcd\x44\x0c\xdd\x03\x6e\xd5\x6f\x02\x2a\xfc\x60\x0b\xad\x51\xe7\xde\x19\x32\x99\x53\x9c\x58\x7c\x5a\xeb\x50\x65\x92\xb6\xcd\x4b\xa4\x6e\x6e\x83\xd3\x4a\xda\xa8\x0d\x8b\x1d\xd3\x8e\x53\x5b\x92\xce\xd2\x79\xd2\x59\x3a\x4f\x52\x1a\xdd\xb8\x53\x8a\x88\xdf\xec\xa1\xd0\x9f\xd8\x1f\xec\x2c\x3c\x83\xca\x0b\x7b\x57\x3f\x12\xd9\xf3\xab\xf8\x91\x9e\x01\xe7\x73\xd4\x3b\xb5\xa2\x62\x71\x21\x5a\xe5\xce\xa2\xab\x8e\x17\xfd\x08\x29\x21\x99\x2e\x72\x4f\x15\x71\x61\xe5\xfa\x13\x35\x7c\xc9\x17\x9a\x45\xd6\xb7\x65\x2f\x4e\x9f\x6a\x84\x95\x71\x39\x0a\xcd\x96\xcb\x13\x9a\x9d\x07\x0e\x34\x73\x2b\x2a\x5a\x1d\x93\xa2\xba\x03\xb0\xbd\xa5\x39\x1e\x33\x95\x5c\xc9\x4b\x5e\x4e\x65\x96\xda\x62\x9a\xc0\xbd\x11\xfa\xa8\x88\xe5\x60\xcd\x01\x1d\xff\x34\x0a\x7d\xdf\x77\x7c\x4e\xd4\x37\x9d\x3c\x83\x00\xb5\xe6\x44\x8e\xad\x1c\x3a\x83\xe7\x49\x3b\x22\x8f\xbb\x76\x26\xe4\x85\xea\x0e\x81\xb2\xf0\x7f\x27\x65\xce\x6f\x46\xec\x6f\xf0\x3a\x02\x80\x13\xc3\xad\x91\x60\x33\x45\x31\xcc\x31\x86\xff\xdc\xde\x50\x67\x84\x9a\xa3\x96\x13\xbf\x64\xe2\xd4\x0f\xc4\x01\xec\x7f\x8d\x5b\xd6\xaf\xd5\x19\x77\x17\x46\x7d\x19\x11\x25\x6e\x45\xe4\x6f\x75\x6b\xc4\x16\x42\x59\xa9\x74\x6e\xaf\x3a\xe3\x27\x05\xb6\x50\xe9\x23\x00\x9e\xac\x3b\xb1\xfa\x71\x37\x71\xfd\x3f\x3c\x8d\xb7\xd8\xa7\xe1\x2d\x3a\x59\xc5\xc4\xb1\xd8\x1d\x5a\xb5\xd7\x46\x41\xdf\x46\x1d\x4c\x91\xce\xa9\xec\x18\x12\xb2\x0d\xc9\xf3\xd0\x57\xf8\x00\xd7\xa3\xff\x63\x44\x70\x86\x1a\x1f\x21\xf9\x47\xd4\xc7\xcf\xd1\xde\xa6\xc3\xf4\x1a\x5e\xae\xe1\x3a\xd5\xc4\xba\x34\x8a\xb2\x98\x96\x60\x0c\x96\x95\x4a\x26\xe2\x4c\x44\xcd\xa8\xaf\xe5\xf3\xf5\x1f\x85\x96\x7c\xcf\x8a\xc4\x36\x5a\xf2\x28\xf8\xce\x52\x03\xeb\x81\x56\x00\x5e\x1b\x13\xd2\xb3\x2f\xbe\xd8\x34\xd0\x66\x4d\x1d\x1f\x12\xe9\xf7\x35\x7e\xd4\x2a\xc1\x0f\x5c\xee\x41\xf2\x03\xb0\xdd\x61\xc7\xf8\x2d\xef\xcc\x86\x1b\x73\xc1\x84\xd8\x5d\xe6\x72\x9c\x2e\x0d\xe2\x54\x97\x93\xb3\x81\x97\xef\xd0\x37\x91\xf7\x11\xfe\x2f\x1f\x11\x06\x3c\x76\x24\xe4\x88\x9c\xea\x24\x2e\x31\x34\xe0\x7c\x3b\x89\x68\xf6\x67\x19\x5c\x7b\x60\x9d\x58\x1c\x5a\x1c\xc9\x2f\x7c\xec\xe7\x5b\x61\x26\xe8\x86\x1c\x01\x48\x1a\xbe\x8f\xe4\xc9\x11\x96\x04\x81\x42\xf9\xff\xae\x3c\x0c\x40\x9f\x18\x69\xc7\x7e\x9c\x59\x0f\x77\x64\x31\xcb\x6d\xc7\x14\x6a\xe0\xad\xcc\x77\x79\x70\x8e\x05\x1f\x7a\xfc\xa2\x59\xdb\xb1\xd3\xf2\x15\xc8\xe8\x00\xea\xfa\x2c\x82\xe7\x79\x16\x5c\xd6\xf7\xf1\x84\xed\xe8\x73\x7b\x9b\x71\x0e\x46\x52\x11\xb7\x13\xdb\x98\x62\xcb\xbf\xea\x53\x9c\xc4\xea\xf6\x2d\xbb\x7f\xae\xd9\xc9\x86\x03\xa4\x64\x28\x02\xde\xa3\x82\x80\x0d\x41\xd2\x78\x79\x39\x23\x77\x2e\x28\x00\xe9\x6b\x8f\x08\x65\x8b\x8b\xb1\xea\x7d\x80\x32\x76\x22\x22\xfe\xd8\x89\x51\x70\xd8\x5b\x8d\xcb\x5e\x37\x37\xab\x72\x36\xf9\xea\x60\xbf\xaf\x14\x46\x63\x6c\xae\xaa\x0a\x90\x7d\xa1\x7d\xb1\x11\xf7\xc8\x6a\x8c\xe2\x86\xe9\xa2\x89\x73\xc5\xfa\x91\x15\x1f\x89\x02\x66\x78\x64\x22\x73\x9f\x3d\xd4\x2c\xb2\x61\xda\x95\x98\x84\x3a\x4c\x03\x02\x56\xd5\x0d\x76\x23\x99\xd4\x87\x96\x94\xb8\x63\x4a\x93\x64\x4b\x9a\xe1\xaa\xae\x0a\xa9\xa6\xb2\xb0\x76\xc7\x0c\xab\xcc\x95\x88\x98\xef\x46\x63\x9c\x8e\xe7\x3d\xdd\x08\x25\xa0\xfe\x0f\x59\xe8\x2e\x14\x6d\x0f\x8d\x87\x9e\x15\x8a\x60\x9c\xc6\x12\x84\x5d\x8f\x92\x47\xbe\x48\x0d\xa3\x6f\x72\xdb\x90\xc5\xae\xa4\x70\x6a\x49\x5f\xa4\xc9\x91\x38\x2d\xab\x0f\x5d\x92\x69\xd0\x79\xe2\x77\x07\xf5\x98\xad\x88\x30\x9b\xff\x07\xb7\xca\xfd\xab\x40\xc8\x6a\x0f\xf3\x2a\x45\x2b\x9d\xfd\xc4\x78\xb3\xc0\x11\x69\xb7\xc7\xa8\xfd\x73\x4d\xb3\xb8\x18\x77\xcd\x4a\x5c\x36\x08\xde\xe5\x19\xb7\x8b\xd1\xe7\xdc\x02\x5c\xb1\xb9\x13\xeb\x52\xca\x98\x0a\x39\x22\x70\xa3\x02\x00\x5d\x1b\x6d\xd5\x8f\x09\xee\xb0\x2f\x0f\x12\x13\xa7\xb2\x26\x01\xa1\x7f\x88\x44\x59\xdf\x78\x1e\x5f\x96\x76\xec\x23\xf2\x9b\xd1\xfe\x80\xac\x8e\x70\xf0\x77\xfe\x42\x4b\xcc\x2a\xbd\xbb\x52\x20\x1c\x9f\xe3\x46\xeb\xf4\x7a\x15\xbf\x70\x97\x3e\xa5\xe3\xfd\xb6\xdc\x57\x9c\x64\xf7\xe4\x37\x0a\xd0\xf4\x5f\xff\xcd\x75\x62\x3d\x5f\x1c\x91\x03\x8b\xb2\xf9\x01\x60\xfe\x6f\xb2\x42\xe4\x69\xbf\xf1\x33\xad\x2a\xae\xb9\xc4\xaf\x86\x70\x2e\x6c\x0e\x0d\xca\x63\x8e\xa3\xfa\x66\x82\xff\xf2\xcb\xcd\x81\xf8\xb0\xe2\x94\x47\x7b\xf1\x6d\x26\x8b\xbd\x5d\xe3\x20\x3f\xd7\x0c\xd3\x91\x34\x4e\xe4\x87\xa7\x6a\xf4\x0c\x9b\xed\xac\xf0\xb2\x9a\x5e\xba\x3d\xb0\xf8\xce\xd6\xe4\x2c\xcd\xb8\x0f\x7d\x4d\x94\xfe\xde\x84\xc1\x67\xc6\xff\x62\x44\x40\xfb\x59\x9a\x51\xd3\x11\x57\xc4\x4d\x24\x66\x47\x88\x98\x75\xc4\x4f\x0d\x0d\x12\x93\x16\x0f\xc8\x0f\x41\xf0\x71\x47\x92\x53\x1c\x6a\x78\x4d\x96\x5d\xec\x8f\xaa\x5b\xc2\xb9\x31\xd1\x8c\xdf\x0e\x21\x3e\xd1\xcc\xe1\x9c\x87\x4d\xe4\xb7\xcb\x9f\x1c\xfd\xe9\x31\xd1\xc2\x2f\xc4\x5f\xd0\x4a\xd5\xcb\x4b\x06\x89\x87\xf3\x04\xaf\xbe\x62\x3a\x3d\x93\xc7\xa6\x98\x22\x67\xb9\x37\xb1\x5a\x54\xb5\x46\xae\xd8\xb1\x54\x49\x87\xc2\x14\x71\x9a\x4d\x07\x95\xd1\xbb\xb2\x42\xd1\x7a\x3c\x39\xc6\x17\x90\xa0\xed\x5c\x14\xdd\x79\x2f\x76\x67\x12\xb4\xab\xf8\xa2\x69\x89\xc4\x17\x97\xa2\xd4\x0e\x9d\x77\xaa\xed\xeb\x5a\x46\xce\xa4\x5e\xee\xa3\xbe\x21\x7a\x67\xcf\xa4\xdd\xaa\x28\x48\xd4\x6f\xd5\x99\xfa\x87\x9a\xff\x02\x71\xfb\x24\x0f\x5c\x8d\x0b\x64\xd8\x48\x65\xae\xb3\xa5\xc3\xfb\xe4\x6b\x70\x09\x9b\x5e\xdf\x90\x92\xcd\x79\x4f\x5e\x1f\xa6\x71\xc7\x4e\x85\x6c\x1d\x7a\x19\x80\x84\xb5\x9a\x71\x1e\x6c\x8f\xd0\x30\xb2\x78\x48\x55\x5f\x8a\x67\x81\x7e\xac\xb3\xc5\x94\x5f\xad\xff\x63\x3d\xf8\x31\x7c\x7d\x44\xd3\xa7\xa2\x99\x17\x17\xfd\x9d\x21\xa7\xdc\xa4\xd1\xa0\x4d\x71\x79\xc3\x81\x72\x03\x93\x84\x0a\x5c\x8e\x02\xd2\x32\xd5\x0a\x83\x84\xbb\xeb\xd4\xa4\x16\xad\x58\xb6\x78\xbc\x15\x4f\xce\x6d\xc3\x9a\x12\x43\xc4\xe5\xcc\x92\xb6\xe4\xbd\x7c\x56\x10\x90\x1d\xe3\x09\x99\xbc\x8a\x3a\x00\x9c\xbc\x66\xf8\x5c\x30\x41\xab\x41\xf5\x3a\x49\xdc\xf7\xd0\xb2\xb7\x3c\x9f\x0b\x96\xe7\xa1\xba\x9f\xcd\xe0\xb1\x07\xec\x4c\xfd\x77\xf5\x4d\x9d\x06\x9c\xa8\xdd\x75\x2d\xc2\x93\xd3\x9b\x6c\x78\xcd\xa6\x8d\x7a\x07\x6b\xc7\xa9\xf6\x63\x42\xd8\x55\x6e\x66\xc8\x35\x18\x83\x87\x80\x5e\xbb\x17\x5c\x24\x77\xc7\x70\xed\xfb\x67\xbf\x88\x44\x5e\x87\x39\xe5\xc9\x22\x01\xb9\xc6\x52\xdb\xf7\xea\xdc\x50\xfb\xc3\xd2\xb9\xa9\x80\xef\xf6\x47\xf2\x2d\xfa\x9a\xb0\x77\x58\x4d\xa8\x71\x15\x31\x5b\x67\x3d\x12\xf7\x18\x57\xea\x00\x99\x25\x1a\xe1\x54\xfa\x5e\x44\x64\xcf\x57\x99\x42\xf5\x41\x1d\xc1\x7f\xd5\xe4\x41\x3d\x5a\x75\x15\x24\x7d\x76\x1a\x0b\x9f\x65\xb6\xd1\xcf\x52\xbb\x36\x4d\x5c\xe3\xb3\x64\x56\x07\xc5\x59\xef\xee\x32\xe7\xcd\xf5\xdf\x9f\xe8\xa0\x3e\xdd\x6c\x0f\xd7\xa6\x83\xd7\xd9\x6e\x70\x99\x54\xfc\x47\x3e\x13\xab\x74\xc7\x7a\x68\xb2\x71\xf7\x72\x69\x68\x73\x71\xa7\xd5\xdb\xeb\x3d\x49\x43\x59\x74\x9e\x28\x9b\x03\x9b\x17\x59\x3a\x13\xb0\x89\xf7\x22\xb2\x99\x9e\x02\x3b\x96\x3d\x92\xb1\x15\x1f\x16\x29\x39\x14\x90\xb7\x6b\xd9\xfc\x6d\x9b\x76\x7a\x7d\x93\x2f\x93\x8a\xea\x51\x6a\x4a\x1e\xad\x11\x03\x9c\xaf\x0e\x79\x19\x11\x43\x3a\x79\x66\x44\x51\xe1\x3c\x8d\x36\xfd\x09\x41\x70\x6d\x53\x76\x7a\xb2\x97\x71\x93\x4e\x48\x70\xd4\xd7\x13\xcf\xf8\x69\x3f\xa0\x4d\xd0\x8f\x76\x7e\x9c\x32\x8d\x97\xad\xaf\x0a\x77\x99\x68\x00\xd6\x84\x36\x07\xc6\xe4\xd4\x93\x80\x8e\x89\x5f\xa7\x89\x64\x51\xbe\x61\x89\xb1\x0d\xde\xda\x1b\x1e\xcb\x2a\x87\x79\x7b\x98\x38\x40\xdb\x85\xc2\xea\x33\xf5\xf5\x28\x88\xf8\xaf\xd8\x14\xda\xbc\x63\x4e\x6b\x63\x2d\xab\x27\x28\x0f\xb6\x2b\x71\x98\x92\x57\x37\xf1\xa8\x41\xce\xe2\xdb\xbb\x85\x07\x0e\x34\x73\xa3\x9d\x59\xc7\x45\x61\xdd\x94\x5a\x2e\x7e\xcf\x18\xd9\x2c\x32\x45\x25\x02\xa3\x94\xb4\x9b\xc4\x76\xf0\x79\x48\xf7\x3e\xa2\x61\xb3\x49\xde\xf3\xfc\xc2\x7c\x33\xd1\x78\xe8\x7d\x9c\x7c\x3d\xfd\x3a\x49\x3c\x0f\xd3\x22\x4b\xe2\x4e\x5c\x62\x4a\xd7\xd1\x0b\x2e\x8e\x88\x78\xc0\x32\xb1\x2a\x65\xa7\x6f\xa2\xc7\x88\x9b\x95\xaf\xc4\x2b\xd5\xf1\xe1\x79\xe4\x68\x68\xe9\x6b\x4a\x4f\x72\x5b\x64\xc9\x8a\xf2\x9a\x5c\x91\x74\x49\x76\x04\xf9\x4f\xcc\xea\x26\xda\xa4\x2f\xd1\xd2\x59\x2d\xbf\xd4\xc9\x0a\xff\xd8\xd9\x5a\xd1\x50\x78\x9c\xac\xd8\x7c\x8d\xe6\x9a\x31\xa7\xe0\x2c\xe0\x89\xcc\xd5\xe9\xed\x66\x61\x67\xc8\x2c\x78\xda\x3e\x1b\x43\x49\x82\x80\x3d\x7c\x3f\xe6\xef\x5d\xb5\x45\xd6\x54\x34\x26\x36\xbd\x1e\x4e\xae\xc7\x5b\x55\x75\x37\x46\x7e\x75\x06\xe3\xb2\xa2\x9d\xb3\x7d\xc0\x71\x07\x79\xb6\x12\x77\xed\xc3\x02\x15\x20\xf3\xdc\xc2\x3e\x56\xa2\x0f\x72\x07\xef\x3d\xb3\xdf\xc1\x3f\x37\xa4\x90\x74\xc0\x01\x5b\x15\x91\x53\xca\x59\xd4\xe8\x4c\xd1\xd7\x32\x69\x14\xc8\x38\x7f\x06\x59\x03\xfd\x72\x59\x45\xfa\x15\x02\x9e\x20\x0b\xda\x22\xb2\x58\x6a\xfa\xd3\xc4\x15\x3c\x3a\x22\xa6\xf9\x51\x52\x54\x3c\xc2\x5c\xe6\x23\xd1\x93\xd4\x22\x2e\xfa\x26\xef\x2c\xc7\xd8\x41\x2f\xe8\x3a\x38\x12\xd1\xa2\x38\x42\x4b\xd8\xcf\xfb\xe4\x05\x74\x5a\xb5\xbd\x1f\x85\x81\x91\xd3\x34\x1f\x7a\x56\x6e\x93\xc3\x79\x02\x2b\x0c\xea\xc8\x41\x5f\x63\x9c\xd1\x13\x8c\xbd\x73\xdb\x37\x71\xda\xb5\x39\x59\x38\xab\x95\x1e\xe0\xb6\x4b\xd1\x58\xc1\x16\x80\x1f\x53\x96\xa6\xb3\x0c\xa5\x53\xc0\x6d\xb7\x89\x17\x1f\x38\xfd\xa9\x5d\xad\x62\x3d\x35\x93\x2f\x93\xbb\xcf\xe5\x51\x18\xcb\x59\x8a\xa5\x9f\x8f\xb5\x8b\x7a\xef\x13\xd6\xe9\xfa\xc4\x0f\xf9\xab\x81\xda\x0c\xcd\xa0\xdf\xe5\x25\x0b\x44\x54\x0f\xa1\x11\x4f\x96\x34\xbc\xc1\xb1\x78\x4d\xf8\x69\xa5\x32\x37\xd8\x86\x40\xc9\xbe\x89\x5f\xad\x6f\x26\x80\x92\x85\xbd\x55\xc2\xb5\x12\x0b\x9f\xb1\x41\x50\xe7\x49\x82\x3a\x4f\x46\x4f\xd2\xb4\x71\x15\xa4\xc5\x63\x17\xcb\xc9\x77\x3c\x9e\x73\xf3\x3c\x47\x88\x05\xbb\x41\xe3\x51\x1f\x47\x9f\xa7\x20\xb0\x94\x8a\x16\x7b\x5a\x26\x6b\x33\x81\xf5\xa9\x9d\x77\x15\xa4\x94\x3f\xf6\x83\x8f\xd5\xb7\xe1\xb1\xaa\x1c\x10\xaa\xf8\xbf\xa2\x10\x06\xe3\xfd\x78\x45\x31\x37\xec\x46\x65\x95\xeb\x1b\xdf\xd6\x8c\xfb\x83\xa1\xe7\xc3\x01\x87\x3a\x43\x3c\xb6\x33\xd1\xf6\xd3\x63\xdf\xbe\xa6\x29\xa0\xe3\xe6\x59\xf3\x64\x1b\x3a\x59\x68\xcf\x36\xcd\xaa\x59\x9b\x0e\x4a\xb7\xff\xcd\x38\xfa\xd0\xf0\x72\x00\xf7\xf0\xb3\x5d\xd8\x09\x30\x9f\xb7\x11\x70\x39\x91\xd2\x53\xf5\x4d\x1d\xe4\xd4\xad\xd2\x61\xdb\x25\xbd\xb9\xab\x23\x8a\xaf\x13\xa0\xe3\x2f\x83\xaf\xc9\x7b\x1a\x0c\x2c\xb7\x5f\x27\x1b\x65\xb3\xaa\xe3\xd4\x20\xed\x4d\x74\xbf\x5d\x7f\xf8\x89\x71\x2e\xe1\x81\x03\xcd\xe7\xe7\x95\x4a\x83\xf1\x79\x30\x5c\x7c\xce\x37\x2e\xfe\xf8\x82\x33\x25\x88\x48\x43\xed\x16\x76\x90\xfe\xb9\x27\x36\xf6\x4d\x9e\xa5\x71\x69\x9d\x09\x06\xae\xe0\x4a\x44\x92\x26\x57\x26\x0e\xe2\xb9\x39\x31\x17\x6c\x34\xc8\x4f\x30\xd0\xb8\xbf\x5b\xd7\x4b\x49\xb2\xd5\x31\x6d\x90\x0b\xd1\x98\x66\x24\x7b\xd6\x7a\xf5\xc6\xb9\x40\x59\x99\xf3\xaf\xa3\x40\xc9\xec\xb7\xc9\xc8\xc5\xa1\x2f\x0d\x52\x79\x99\xac\x75\xbe\x36\x34\x49\x5c\xae\x11\x15\xef\x30\x51\xf1\x0e\x93\xf3\x45\x95\x98\xda\xd2\xe6\x05\xc9\xf4\xe0\xd3\xc9\x67\xfd\x19\xdf\xe6\x78\x88\x85\x2f\xe4\xe3\xbd\x34\x7a\x70\x53\x38\x37\xa6\x8e\x94\x3f\x4c\x6d\x95\xa9\x75\x1a\x1b\xb9\x23\x3a\x7d\xd8\xf6\x47\x09\x98\x3c\x4a\xf6\x2d\x4f\x48\xd1\x21\xff\xe6\xa7\xfe\x06\xa6\x97\xb1\x4b\x8e\x73\xcb\xf5\xc1\x96\xf0\x25\x9c\xea\xb3\xdc\x54\x3c\xa5\x5d\xeb\x63\xc2\x3e\xa4\x26\x08\xfe\x35\xea\xb4\xdf\x25\x21\xf5\x38\xed\xc6\x1d\x53\x66\x79\x31\x13\xfc\xeb\xfe\x74\x44\xbe\x1c\x20\xb2\x02\x31\xda\x24\x40\xf3\x4e\x44\x4e\x1e\x9f\x50\x38\xec\x54\xf9\xa7\x53\x72\xf7\x00\xbc\x26\x0e\xfa\x86\x70\x9c\x41\x6e\xcb\x72\x4d\xb4\x8c\xf1\x3f\xdf\x97\x24\x40\x5f\x47\x04\xad\x5c\x8a\x08\x74\xb9\x54\x6b\x1b\x10\x7b\x9e\x03\xb0\xab\xf7\xe4\x67\xeb\x6b\x92\x6b\x58\xb2\x20\x63\xbb\x24\x04\x2d\x21\xc2\x2a\x67\xb7\x6e\x45\x8e\x76\xb1\x68\x2d\x86\x8e\x1c\x46\x5e\xfd\x5b\x4c\xaf\x4c\xd1\xc4\x23\x54\xcf\x5c\xb7\x78\x82\x77\x38\x5f\x9d\xfe\xde\xa4\xd8\xab\x00\x23\x86\xbb\x6e\x77\x0d\xb5\x7e\x90\xe5\xe5\x62\x96\xc4\xe8\x6c\xe8\x9c\x37\xb6\xb2\x1b\xfa\x0e\x99\x41\xbf\xd3\x51\x07\x22\x1c\x17\x6f\x71\xd7\x9a\x2f\x10\x29\x87\x1f\xa2\x71\x78\xec\xc1\xcb\x35\xa8\xe5\x0b\xcd\x61\xba\x98\x98\xe5\x35\x7a\x9c\x27\x65\xd5\xba\x56\x47\x8d\x1f\x43\x27\x33\x79\x01\x35\x54\x6c\xa7\x4d\x72\x3f\xde\xa4\x24\xa5\x1b\x17\x65\x9c\xe8\x84\xcd\x0b\x3a\x8d\xb4\x8e\x15\xa8\x6f\x68\xcc\x7a\x35\x1b\x26\xdd\x27\x11\xd6\x70\xd4\x03\x28\x77\x47\x65\xc3\xdb\x51\x1c\x97\x82\x10\xf0\xa8\x8e\xf8\x3b\x60\x8f\xb0\xc8\x23\x51\x60\x8f\x4c\xb7\xc2\x83\x7d\x1f\xa3\xe1\xe8\x4a\x7d\x17\x71\x4d\xcf\xa8\xa8\x71\xe8\x59\x7a\xe4\xf3\xcc\x64\x3f\xa8\xcc\x84\xc3\xd8\x7b\xce\xab\x5c\x56\x1a\x2a\xfb\xbf\x14\x4a\x9e\x27\x52\x04\x54\xfc\x47\x58\x09\xb8\xa5\xb7\x85\xfc\x09\x2e\xc0\x87\x48\xa3\x01\x18\x5e\xa1\xd9\x89\x76\x96\x15\xa5\x02\xd0\x4e\xb2\x45\x6a\x21\x7d\x43\x9b\x6c\x25\xce\x12\x5b\x4a\xd3\x40\x01\x52\xb9\x6b\x0e\x2c\xdd\x7e\xac\x3f\xdd\x34\x89\xd1\x99\x74\xa4\x7c\x87\x69\xcc\xef\x3a\x51\xa2\xce\x4e\xa4\x4f\x73\x73\xcd\x5e\x36\x2c\x84\xb3\xae\xa7\x83\x4a\xe6\x10\x1a\x76\x66\xb2\x3d\xf5\xec\x41\xe7\x27\x66\xf3\x06\x89\x49\x63\x9a\x5a\x5f\x13\xbd\xd0\x74\xab\x12\xab\x6f\xd3\xb2\xa0\x71\xc4\xf7\x71\xe3\x1d\x60\x4a\x93\x0f\x67\x23\x12\x34\x3d\x4b\xa3\x0f\x2f\x55\xf1\xa7\x51\x2d\x16\xc7\x68\x95\xca\x49\xdf\x90\xf8\x40\x3b\x5e\xb6\x18\xb9\x77\x49\x49\xf5\x47\x7e\x56\xbc\xfa\x23\xef\xeb\x58\x7d\xaf\xff\x3f\x41\x3a\x6d\x8b\x06\xa8\x3b\xc3\xa2\x17\xa3\xd1\xe4\xaa\x2b\x34\x57\xf5\xb5\xcf\xca\xda\xc3\x3c\xb0\x44\xb5\xbd\x17\x05\x02\xeb\x06\xc5\xb5\x6c\x55\xb3\x1c\x30\x2f\xfe\x17\x2c\x75\x7d\x13\x91\xa0\xa5\x91\xde\x45\x68\x3c\xc0\x9b\x5c\x5f\x7b\x53\x4e\x5b\xb4\x65\xf4\x0c\xff\x5d\x0d\xa5\x70\x22\x3d\xd0\x62\x8a\xc7\xff\x30\x0a\x84\x7d\x00\xf6\x50\x7b\xba\x31\xa2\xa1\xd7\xe0\x1e\x65\x92\xd8\xa6\xba\xbe\x1c\x43\x5a\x6e\x99\x9b\x55\x67\x8e\x49\x9d\xce\x70\x27\xeb\xf7\x87\xa5\xeb\xbe\x60\x89\x2a\xc1\x55\xdf\xd4\x34\x79\x9e\x69\x96\xde\x7e\xd5\xe9\x06\x34\x48\x50\xe0\x71\xa2\x1a\xc5\xe2\x84\xa1\x98\xa2\x4e\xb4\xf2\xb0\xbe\x2a\x04\x02\xeb\x3c\x46\x05\xfa\xbe\x2f\x1f\x6c\x84\x89\xc2\x93\x2c\x21\x70\x72\x22\xbc\x57\x69\xe3\xc0\xac\xc9\x22\x66\xf1\xdb\xf7\x58\xd5\xec\xbd\xb1\x9e\x6c\x6e\x15\xc3\x42\xd4\xd8\x24\x70\x65\x93\x16\x35\x7a\xe1\x14\xfc\xff\x54\xdb\x40\xfa\x6e\x22\xcc\xbf\xf8\x62\xd3\x14\x6d\x5b\x94\x99\x8e\x99\xe8\xf8\xe9\x28\x30\x81\xa0\x31\xef\x30\xf6\xcf\xf1\x09\x5e\xc4\x6a\x71\x3e\x4d\xb7\x05\x6e\xc7\x60\xf3\x6d\xe2\xf9\xea\xff\x18\x05\xe3\xab\x4d\xc2\xf4\x4a\x6b\xfa\x22\x6a\x31\xef\x23\xbf\xac\x79\x44\xcb\x77\x48\xc0\xea\x34\x71\xd8\x3e\x21\x09\x9c\xd3\x13\x8f\x7d\xff\x5c\x73\x71\xf8\x52\x5c\x28\xe1\x17\xc0\xc5\x0c\xc4\xcd\xfd\x04\xb3\x5f\x04\xdf\x60\xb5\x93\x2d\xca\x1c\xed\x4a\x96\x0c\xc3\x0c\x83\x1a\x32\x8f\x02\x7d\xf9\x4c\xc4\xee\x34\x49\x62\xcd\xd2\x10\xeb\x67\x36\x78\x70\x55\xbf\xcc\xeb\xd6\x31\x56\x53\xc3\x7a\x18\x18\x75\x3e\x03\x80\xfc\x2a\x8d\x30\xbd\x5a\x05\x6c\x57\x35\xf6\xec\x8a\xc9\xbb\xa9\xe9\xbe\x02\x6d\x37\x2d\x07\x71\xb4\xd4\x35\x47\xe4\x17\xba\xa2\x31\x00\x56\x6b\xa6\x6f\xe2\x4e\x2f\x6e\x30\x83\x45\x4b\x74\x7d\x13\x05\xa3\xc3\x34\x5b\x7d\xbc\xe1\x87\x57\x1b\xe8\x24\xa2\x70\x7b\x07\x64\x24\x80\x4a\xeb\x28\xef\x50\xa1\xdc\xd5\x3e\x3a\x00\x9e\x6b\x51\xe3\x57\x9e\x67\x77\x09\x87\xb0\x5c\x1e\x11\xd5\x5c\x35\xa3\x9d\xc2\x1b\xa9\x0b\x42\x97\x13\x49\x00\x98\x47\x80\x2c\x1f\x90\xde\x11\xe2\xed\x7a\xc4\xd2\x6f\x92\x75\x63\xa1\xfc\x16\x68\x33\x7a\x91\x50\x91\xf3\xce\x1c\x0b\xce\xaa\x78\x7a\xdd\xd3\x0f\x87\x22\x79\x92\xa9\xe0\xa3\xe7\xea\x7b\x22\x11\x06\xeb\x9c\x2f\x76\x9d\x8f\x64\xd7\x26\x59\xee\x4a\x32\x84\x94\x63\x3c\xa2\x73\xac\xa6\xaa\x7c\xa1\x99\xc4\x65\x99\x68\xfe\x09\x30\x4f\xb5\xa2\xb0\x8e\xce\x8c\x82\x8d\x14\x88\x54\xa8\x04\x26\xdd\xf4\xf6\xcd\x62\x32\x0e\x67\x2b\xee\xc8\x5d\xdc\x05\x7d\x43\x80\xa4\xe9\x8a\x15\xda\x54\xe0\x4b\xff\x01\x51\xf5\xef\xd0\xcc\xc7\x64\x1b\x60\xff\x9c\xd8\x48\x56\x07\x8c\x8b\xb6\xde\x99\xd4\xcf\x80\x7e\x9f\x64\xd9\xab\x0c\x70\x98\xb7\xa1\x56\x8b\xfc\x00\xbd\x40\x7d\x5d\xc7\xa1\x57\x95\xc5\xb1\x04\x63\xbc\xdd\x46\x60\x56\xdb\xa4\xdd\x2c\x9d\x1e\x63\x66\xc8\x42\x42\x35\x76\x85\x78\x92\xf7\xe4\x33\xd4\x7c\x68\x52\x12\xeb\xd9\x83\xcd\x57\xb2\x50\x9f\xe2\x90\x83\x4b\x9c\xbe\x9e\xb0\x9d\x72\xad\xa2\x8e\xb1\x85\x71\x5a\x9a\xc8\x44\x8f\xf2\x0c\xd4\x51\xea\x3f\x76\xb2\xfe\x20\xab\xee\x5e\xb5\xaa\x91\x05\x5e\x92\xe8\xa7\xaf\x7d\xa5\xdf\x96\xa6\xb1\xbf\x1e\xaf\x06\x37\x17\x14\xe0\x68\x98\x34\xb6\xa9\x21\x5d\xed\x8b\x24\xfd\x7d\x91\x50\x4d\x99\xac\x5b\xb5\x98\xaf\xa3\x39\x19\xd6\x43\x70\xb9\x89\x4d\x5f\xca\xd6\x6c\x77\x3a\x68\x32\x29\x8b\xc5\xa9\x5d\xf2\x28\x0e\xb5\x5b\xde\xf0\x24\xee\x62\x90\xc4\x2e\x8b\x75\x63\x07\xe4\x43\xf7\x01\x9d\x7e\x4b\xb9\x49\x55\xac\x03\xab\x1f\xcd\x69\x7d\xbd\x5e\x23\xa9\xd2\x4e\xec\x2a\xce\x70\xa7\xa5\x13\x76\xec\xf1\x11\xb5\xb9\x6f\x51\x6c\x5b\x35\x6b\x8f\x54\x77\xc6\x7b\x87\x86\xb6\x2b\x4a\x25\x04\xbd\xef\x44\xe4\x5e\x78\x8b\x1e\xcf\x9f\x8d\x18\x03\x93\xe4\xdd\xe9\xdc\x91\x2a\xe6\x15\xd4\x24\x5e\x7c\x2a\x8c\x1c\xa8\xf9\x93\x87\xc4\x3c\xb8\xf6\xaf\x46\xe3\x75\x08\x09\xd5\x3c\x39\xb6\x76\x92\xaa\xa6\xc7\xe6\x7b\xc6\x33\xe0\x43\x2f\xfb\x08\x65\xa1\x66\xd8\x81\x43\xd2\x73\x24\x5f\xe4\x41\x38\x50\x27\x68\x7e\x3a\x4c\x4c\x87\x94\xe7\x40\xdc\x9f\xae\xca\x15\xc7\x17\x0e\x8f\xfc\x22\x45\x27\x05\x4d\x10\x7e\x77\xb6\xbc\x2a\x8c\x64\x34\xec\x38\x71\x91\x46\x90\xb6\xa2\x06\x49\x49\x05\xae\xc4\x62\x36\x4c\x4b\x13\xa7\x88\x50\x68\xa8\xdc\xc4\x9e\x46\x2f\x00\xf2\x43\x0e\x0c\x0e\x09\xf2\xc0\x24\xfd\x06\x9b\x34\x5f\xe4\xc5\x76\x71\x22\x70\x63\x90\x04\xdd\x22\x3f\xbd\xb2\x49\x3c\xbd\x4d\xe6\x63\x0f\xe2\x5c\xdb\x4a\xae\x05\x45\xed\xa8\xba\x40\xb9\x6a\x4a\x9b\xaf\x66\xf9\xb2\xc6\x05\x94\x39\x77\xa9\xe4\xb9\x3b\x36\x03\x66\xcb\x6c\x2a\x34\x53\xaf\x51\x4c\x56\x46\x87\x6b\x34\x4d\x8c\x95\xce\x36\x7b\xe2\x6f\xa9\xd4\x23\x27\x32\x37\xf6\xac\xf6\xcd\x7a\x9e\xcd\x76\xfe\x3c\x66\x6e\xb3\x12\x59\x1e\x91\x69\x6f\x93\x7d\xef\x6d\x5f\x38\x0c\xb2\xc1\x4c\x90\x1f\x52\x7f\x1d\x9a\xff\x3b\xe8\xa7\xc9\xc3\x63\xba\x42\x9e\xb7\xa7\x7d\x80\x11\xba\x66\x9c\x4d\xc9\xca\x77\x32\x08\x0d\xaf\x2b\xf0\xb1\xc4\x30\xb4\x48\xae\x93\x4d\x90\xc8\x69\xc6\x5f\x1b\x02\x92\x0f\x2d\xf0\xb1\x78\x46\xbb\xb4\xba\x58\xd7\x33\xaf\x01\x96\x96\xed\x9a\x3b\xcb\xd4\x6a\x5e\xee\x9c\xb3\x9d\x0f\x7b\x61\x60\x60\x38\x03\xb4\xf2\x18\x4f\x95\x1e\x9b\xb8\xa9\x92\x15\xc4\xb9\xed\x94\x7d\x13\x63\x81\x29\x28\x2e\xd7\xe9\x00\xf2\x47\xb9\x1d\xa9\x5d\xe3\xad\xd3\xa2\x2b\x7f\xba\x86\x32\x77\xb0\x99\x67\xc3\xd2\x8e\x0d\x31\xc9\x1d\x73\x3c\x0a\x56\x7d\x33\xce\x69\xeb\x85\x70\x32\xf2\x98\x50\xd0\x29\xef\x5b\x53\x1d\x7c\xe2\xc8\xdc\x20\xc9\x21\x45\xdf\xdd\xb1\x4b\x6a\x31\x4a\xdb\x36\x34\xb6\x85\xbd\xed\x84\xc5\x6a\xf5\x65\x97\xed\x70\x40\xb2\x59\x78\x64\xee\xd1\xd4\xe9\xb3\x0c\xcb\x30\x2d\x0d\x80\xf3\x2e\x91\x52\xee\x52\x01\x5f\x0c\xaa\x87\x78\xe0\xc0\x41\xcd\xfb\x34\x24\xe9\x1b\x32\xf8\x30\x9d\x72\x68\x92\x04\x8c\x0c\x67\xb4\x8a\xa8\x81\x15\x0d\x70\xc9\xd9\xb1\xd2\xe0\xc6\xf1\x89\xc9\x13\x19\x87\xc9\xfa\x7d\x9b\x77\xdc\xce\x41\x1f\x08\xda\x65\xfa\x7a\x9d\xd9\x73\x6b\xcb\x20\x2f\x22\x70\xdc\x41\x67\x47\xdf\x10\x27\x30\x4b\x4b\x93\xc7\x19\x1e\x86\xc2\x34\x78\x18\x0e\xb3\x71\x54\xb0\xdc\x74\xe3\x6c\x17\x7e\x80\x7b\x50\x81\xde\xf3\x50\xab\xda\x43\x8a\x7b\x8d\x68\x91\xeb\x9c\x33\xaa\xd7\xb7\x47\x63\x47\x79\xd0\x9d\xf9\x16\xcd\x7a\x0f\xf2\x4c\x14\xb5\x86\x70\xd5\xc0\xa1\x79\x8c\x4f\xd0\x63\xb5\xd6\xd0\xd9\x6a\xba\x8d\x53\xc7\xc0\xef\xef\x84\x7c\x47\xed\x30\xdd\x28\x00\xd0\xb2\x5f\x67\xe8\xed\xdd\x88\xae\xed\x6d\x1f\x47\x52\x33\xe8\x95\x3d\x33\x1d\x42\xc7\x0e\x92\xa1\x50\x47\x3a\xc5\x04\x47\x8c\xf0\x91\x2a\x74\x3b\xcb\xab\xb3\x92\x7a\x73\xd7\xe5\x80\x73\x8d\x86\x6a\x4d\x20\x9d\xba\x2e\xa5\xaf\xf6\xae\x71\x2e\x39\xff\xf2\x9a\xe8\x32\xc8\xb3\xd4\x4e\x05\xa4\x5a\x8b\x65\x5f\x64\x78\x82\xf8\x89\x1a\xe7\xa0\x83\xcd\xb6\x49\x96\xd9\xce\xf6\x7a\xc4\x53\x7b\x93\x5b\xe6\xa0\xca\x47\x4e\x4d\x2a\x46\xfa\xfe\x46\x15\x10\x80\xcc\x5c\xa7\xe8\xd6\xce\xd6\x66\x1a\x5f\xf9\x92\x76\x34\xee\x6b\x05\x0c\xf8\x7d\xde\x4a\xb7\x29\xdc\x1c\x45\xb8\x47\x31\x77\x18\x9d\x07\xba\x9a\x2f\x34\xcd\x17\xa6\x1a\x4f\x3d\xe5\xf5\x10\x3c\x00\xf6\x77\x1f\x5b\xa7\x61\xeb\x27\x5b\x0f\x91\xa0\xc0\xea\x03\x72\x81\x98\xf1\x3f\x4a\x62\x3d\x2a\xf9\x8a\xac\xe8\x16\xac\x32\x71\x38\xfc\xe1\x88\x20\x7c\xcc\xe6\x63\xc5\x5f\xe0\x91\xa9\xab\x3c\x5a\xf1\x87\x11\xb9\xa0\x1c\xf5\xbd\xec\xa2\x1c\xf6\xdb\xc9\x78\x69\xa3\x5c\x13\xa7\x8a\x52\x07\x6e\x66\x2b\x36\x6f\x0f\xe3\x04\x43\x71\xf8\xb9\x98\x50\xd0\xd7\x93\x43\xac\xcf\x1e\x6c\xe6\x76\x25\x38\x9d\x80\x56\xf6\x9a\x6c\x44\x7d\x4d\xe3\x0f\x1d\x53\x76\xa0\x1f\xe8\xf0\x56\x29\xa8\xb0\x95\x21\xcd\xe6\xf5\xe1\x83\x48\xdc\xb1\xb1\xfc\x22\x51\xa9\x0a\xdc\xc0\xdf\x23\x71\xa3\xdf\x9b\xb4\xfd\xdf\xd7\x1c\x24\xa6\x83\x8c\xc2\xf9\x90\xdc\x42\x56\xeb\x6b\xf7\xe0\x47\x77\x7e\x02\xf2\x9d\x3d\xd4\x5c\x8e\xbb\xa9\x51\x2f\x6d\xcf\x9b\x43\xc8\xd7\xd7\x54\xc7\x25\x22\xe3\xb8\xc6\x96\xd5\x3f\x24\x67\x91\x1f\x4e\x0c\xc0\xce\xcd\x35\xe3\xfe\x20\xcf\x56\xac\x22\x6c\xd5\xa5\x39\x0a\x9e\x3c\x5b\x7d\x43\x63\x9a\xfd\x61\x51\x64\x32\x9f\x20\xd7\x0e\xe0\x02\x8c\x13\x7d\x4d\xe7\x44\xdb\x74\x96\x65\x9c\x22\x28\xb7\x6c\xe2\xe6\x3a\xd4\xab\xae\xa4\x6f\x67\xb9\x1b\x48\xd2\x71\x32\xc0\x1a\x6e\xb6\xac\xa6\x8e\x59\x8c\xf3\xfe\x54\x20\xb4\xc0\x3d\x14\x0b\xf3\x56\x14\x52\xa8\xd3\xa3\x27\x89\xfc\x41\x5c\x93\x50\xe8\xfc\x19\x4e\x13\xe4\x16\x57\x46\x04\x86\x7e\x03\x81\xd3\x09\x90\x4e\x6a\xca\xcf\x35\x17\x4d\xa2\x3d\x1d\x26\xe7\xe9\xeb\xb1\x4a\x73\xd9\x3a\xc4\xcd\x51\xf2\xaa\xe0\x88\x70\x7e\x0e\x5f\xe4\x79\x7b\xb3\x87\xdc\xff\xa0\xb6\xd0\x62\x96\xf7\x55\x34\xa4\x5a\xc5\xd8\xab\xdf\x21\x85\xff\xef\xd4\x0d\xc8\x74\x7a\xb1\x5d\xa4\xd1\x76\xdc\x1c\x64\xcb\x77\x19\xcb\xfa\x09\x89\x36\x2e\x66\x39\x36\x25\x69\x81\xcf\xfb\x59\xfc\x1a\xdd\x94\x9e\x35\x5d\x5d\x4d\xce\x95\x4a\x56\x93\xb3\xab\xa2\x8f\x4e\xec\x6a\xa3\x3a\x0a\x30\x1b\x03\x0d\x30\x7d\xed\x09\x2f\xd9\x40\x8a\x7d\x4c\xae\xf8\xe9\x83\xea\xc1\xa0\x5c\x3b\x41\xd6\x73\x6f\xe1\x5c\x04\x64\xf0\x0f\x27\xb6\x94\x68\xfb\x65\x89\xcd\xbd\xa7\x31\xc6\x24\x4e\x93\x68\xd2\x69\x7f\x9a\x66\x9d\xce\x30\xcf\xbd\x6a\x17\x72\x3e\xb4\x34\x99\xb7\xad\xae\xa2\x35\x06\x3b\xf3\xcd\xa5\x0c\xdb\x51\x63\xe9\x58\x5c\xa5\x1e\x6f\x96\xc4\x9d\xb5\x87\xe4\x37\x79\x7b\x37\x5f\x58\x1e\xc3\x7a\x50\x74\x4b\xf3\x2c\xfc\xaf\x53\x54\x8b\x22\x84\xe1\x58\x86\x53\x19\x38\x40\x53\xeb\x72\xe3\x80\xd8\xbd\x81\xe5\x8d\xb3\xe7\x2e\x09\xa2\x7f\x30\xa2\x31\xd1\x33\x92\xef\x3b\x4f\x94\xd0\x16\x31\xe9\x5a\x96\xc2\x34\x41\xab\x2a\x84\x33\xa7\x0b\x1f\x58\x48\x6a\x7a\x09\xd0\xe8\x0e\x9a\x3f\xae\x10\x7b\x84\x14\xea\x4d\x8e\xd2\xda\xe9\x12\x91\x94\x34\x1a\x5b\xfa\x9a\xc5\x8b\x88\x4b\xd9\xb3\x9d\x65\x04\x22\x57\x49\x35\x82\x51\xb2\x67\xfa\x2f\xda\x3c\x57\xb0\x1f\x9b\xea\x3c\x31\x49\xce\x53\xb7\xdf\x14\x85\xcd\x95\x4e\x1a\x7a\x5c\xe7\x47\xa1\xf9\x75\x9e\x7a\xad\x9d\x2c\xcf\xd7\x84\x23\xec\x29\xb0\x0b\x7b\x43\x93\xc7\x2b\xdd\x80\xb7\xa2\xff\x46\x12\x1f\xf4\x23\xfe\x25\x6d\x84\x2c\xb1\x08\xf1\xe8\x00\xbc\x11\x11\x55\xfc\x0d\x76\x17\xed\x99\x7c\xc9\xee\x0a\x94\xe3\x8f\xa3\x49\x03\x34\x67\xf1\x26\x8f\xc0\x57\x73\x5e\xae\xee\x1f\x45\x64\xa0\x77\x91\xa7\xfb\x8e\xd4\x3a\xb6\xb4\xf3\xb8\x8c\x8b\x5e\x83\x74\x69\x20\xc7\xa1\xaf\xa3\x40\xb3\x5e\x89\xbb\x36\x2b\xcd\x40\xcd\x59\xf1\x7d\x27\xe4\xf7\x3b\xb9\x8e\x50\x45\x1f\x9e\x88\x50\x07\x0e\x34\x3b\xe8\xd9\xf2\x6c\x51\xa8\x17\x2f\x52\xf9\x94\x0f\x8b\x5e\x15\x99\x7a\x8d\x30\x65\xd3\xd6\x8a\x45\xdf\x50\x69\xd3\xcf\x8b\x2f\x4c\xd3\x90\xd4\x5d\xac\x4f\xaa\xe9\x9c\x67\xf8\x75\xf4\x88\x91\xb6\x1d\x8d\x02\xd3\xb8\xb4\xf9\x20\xb7\x8e\x47\x8f\x03\xec\x0e\x52\x20\xef\xd6\x45\x15\x73\x2d\x42\xd0\x0f\x67\x6d\xf5\x77\x20\x28\xe0\x3c\xd7\xd7\x13\x51\xe4\xd0\xb3\xcd\x25\x5b\x36\x82\x94\x9e\x3e\x31\xc7\x8f\x70\x90\x82\xe9\x94\xf7\xcb\x95\x39\x4b\x75\x76\xe0\x96\xfd\x0c\x11\x39\x74\xa7\xf5\xf5\xc8\x87\xc0\x6f\x3f\xd6\x92\x83\x84\x9a\xb2\x4e\x9e\x07\xf8\x2d\x8a\xd2\xc6\x3a\x89\x6b\x0d\xe2\x24\x21\xab\x44\x95\x58\xd7\x37\x58\x8a\x88\x75\x47\x91\xfe\xe9\x1b\x22\xdf\xc5\x69\x27\x19\x56\x05\xcb\x6e\xd2\xda\x3f\xac\xad\x38\xdc\xe2\x77\x90\x7f\xe2\x0c\xfe\x18\xd7\x85\xf0\x7e\x92\xdb\xd7\x97\x28\x81\x3b\x12\x4d\x8e\xc3\xe1\xbb\x77\xb5\x82\xa3\xca\x49\xd2\x3e\xd4\xfc\x14\xc8\xe1\xe1\x3a\xc1\xea\xc2\xa6\x45\xa6\x14\x64\xdc\x16\xcc\x53\xe9\xeb\x28\x38\x1c\x24\xf1\xb2\x7d\xa2\xda\xe5\xc8\xcc\xaf\xd0\xec\xf8\x4e\x41\xdd\x70\x98\xdf\x80\xaa\x8b\xcb\xd3\x88\xcc\xa7\xd3\x78\x7e\x12\xa9\xfa\xf9\xc8\xad\x7e\x10\x91\x0d\xc7\x03\xad\xc6\x97\x09\x5e\x7d\x6e\xaf\x87\xeb\x71\xfb\x70\xf7\x2e\x23\x63\xc7\xbd\x3c\x86\x94\x57\x07\xd9\xf1\xb8\x10\x8b\xe0\x46\xa6\xa2\xe1\xeb\xc1\x1b\xe0\x53\xdc\x4a\x54\x8b\x67\x59\xe6\xae\x01\x2e\x95\x1b\x8a\xf7\x12\xb2\x59\x37\x5e\x8c\x1d\x8c\x86\x0f\xbc\x41\xf3\x57\xef\x21\xff\x73\xeb\xf2\xf3\x0e\x27\x7f\xb9\xcc\x4d\x96\x77\xe3\xd4\xe4\x71\xb2\x36\xc5\x53\x02\x63\xd6\xea\x17\xc8\x2f\x74\x8b\x9a\x24\x1d\x5b\x6d\xd0\x62\x67\x68\x61\xfd\x1a\xee\x1c\x6a\x95\x47\x64\x2e\x04\xaf\x2f\xd2\x3e\x85\xbf\x99\x2b\x16\x68\x06\xe5\x96\x07\xe0\x57\x6c\x1e\x2f\xae\x35\x02\x23\xed\x6c\xc4\xd3\xc1\x23\x46\x26\xfa\x36\x7f\xb4\x7a\xf4\x88\x2b\xd7\xf5\x49\xa8\x00\x33\xb2\xd8\xb1\xe9\x7c\x37\x08\x23\xa7\x0d\x62\xb0\xba\x53\x61\xbb\xa9\x3d\x06\x6a\x07\x54\x43\x80\x3d\x77\xc9\x33\x42\xa1\x3e\xdd\xa2\xe5\xfe\x2e\x89\xf9\xdf\x64\x22\x6f\x0f\x24\x1d\x5c\xcb\x19\x09\xc3\x3e\xfc\x2c\xec\xd5\xd5\xb2\x39\x91\x5c\x3f\xdd\x5c\x4c\x86\x31\x86\xaa\x9d\x62\x6f\x75\x19\xba\x22\x24\xb0\x20\x01\x7a\x9f\x46\xc3\x5f\x32\x03\x93\xda\xc2\x3e\x24\x3f\xd9\xe3\x40\x81\x4c\xfd\x4e\x14\x04\x7c\xee\x8e\x28\x55\xbc\xc8\xdc\xba\x9f\x8c\x42\xdf\xe4\x2a\x89\xe6\x02\x1a\x22\xb6\xb2\x2b\x18\x8f\x33\x9f\xe2\x1a\x65\xc3\x4a\x34\xc0\x2f\xf8\x5e\xad\x30\x7a\x62\xda\xd6\x97\xad\xd8\x2f\x1b\xa4\xb7\x53\xeb\xac\x9a\x9a\x72\x98\x2b\x6a\x85\x72\xe3\x02\x4b\x56\x72\x2d\x34\x4c\xe3\xc4\xae\x58\x55\xc7\xd5\xcd\x1d\x8d\xed\xf4\xed\xa1\x7f\x61\xef\x42\xd3\x80\x64\xee\x88\x33\xcc\xa8\xf1\x1a\x8e\x26\x29\x73\x90\xcf\xd4\x02\x4a\x8e\x4c\x67\x07\x55\x53\x06\x94\x3d\xbb\x58\x52\x45\x79\x95\x2a\xca\xab\x1e\x15\xeb\x54\xe9\xd9\x83\x72\x43\x11\x7e\x6e\x07\xd1\xe8\x5f\xfb\xf7\x5b\x21\x48\xfc\x48\x1e\x13\x1e\xd9\xce\xf5\xc0\x38\x7f\x42\x1e\x13\xa4\x92\x7e\x7a\x9d\x48\xd3\xf7\x24\x6d\x45\xff\xe8\xa3\x11\x61\x15\x3a\x21\x8c\x8d\xb0\x45\x93\x3b\x9d\x5e\x95\xb1\x27\x49\x96\x93\xca\xed\x51\x56\xb9\x3d\x3a\xc1\xc0\x15\xe3\x04\x3b\x10\x72\x3f\x32\x82\xdf\x23\xc9\xed\xcb\x63\xf8\xf6\x63\x94\xe3\x9a\x64\xad\x88\xd5\x1c\x14\x59\xf3\x06\xf5\xbc\x37\x26\x48\xde\x0b\x7b\x9b\x3d\x83\x16\x9f\x9b\x4b\x20\x19\xb0\x37\x23\x86\x77\x69\x30\xe9\x66\xf4\xd7\x6b\x92\x2d\xd3\xed\xc7\x69\x5c\x94\xb9\x90\x4e\xb5\x15\x83\xf3\x4e\x15\x9b\xf4\x4d\x9d\xf3\xeb\x72\x96\x5b\xb3\x24\x72\x41\x61\x50\x91\x25\x8c\x2e\x52\x3e\xa3\xa3\x50\xf0\xd5\x23\x47\xe7\x83\xa1\xa8\x5f\x70\xde\x75\x5b\x11\x47\xb9\x3c\xce\x76\x55\x4f\xdf\x5f\x56\x20\x0f\x2a\xfd\x1a\xc9\xde\x31\xd6\xbf\xf9\xdd\x09\x6f\x45\x95\x49\x93\x50\x14\xec\x2b\x5d\x08\x59\x31\x85\x6d\x10\x25\xed\xda\x88\x4e\xfb\x49\x0f\x5f\x49\xaf\x16\x93\x38\xc5\xba\x46\x1d\x73\x84\xc7\x78\x8f\xd4\x2d\x90\x55\x93\x80\x9e\x8f\x13\x45\x55\x03\xf5\xcd\x04\x60\x22\x5f\x52\x0e\xf3\xd4\xe4\xd9\x70\x5c\xbd\x46\x9e\xb2\x53\xb2\x09\xeb\x56\xee\x58\x27\x96\xae\xc4\x73\x7b\x35\xdb\x40\xd7\x57\x5f\x8f\x9e\x24\x57\xf5\xb4\x63\xe3\x95\xea\xa1\x20\x4a\x38\x41\x53\xb9\xc1\x4e\xe9\xb4\x0e\x1f\x4e\xcd\x8a\x46\x21\x47\xf9\xaf\x9e\x8f\x63\xfc\x87\xbe\xe0\xc0\x74\x96\xcd\x92\x58\x9b\xec\x9b\x0d\x6d\x6e\x4f\x06\xbf\x2b\x0f\x49\x71\xeb\x88\x47\x29\x5d\x31\xde\xb5\x49\x32\xec\x83\x1a\x87\x52\xf5\xb5\x11\x91\xb1\x5e\xab\x1b\x6b\x4d\x4c\x19\x3b\x45\x41\x9c\x39\xef\x11\x58\x8e\x5a\x75\xcc\x9a\xde\xe9\x6d\x85\x03\x65\x31\xb6\x79\xc7\xba\xce\x8a\x37\x34\xf1\x52\x84\x17\x6b\x70\x88\x83\xcd\xe5\xd4\xae\xa2\xfe\x46\x88\xd5\x81\x66\x7d\xe3\xeb\x43\xd3\xcd\x06\xa5\xf4\xe3\x40\xbf\xdd\x25\xb1\xcd\x4f\x85\x07\xdf\x00\x0a\x03\x3a\xab\xe6\x32\x56\xa7\x2a\xb1\x94\x9b\xb5\x99\x40\x33\x3a\x39\xae\x39\xe2\x5b\xa4\xef\x3e\x26\x61\xd2\x91\x88\x7c\x7a\xf4\x1f\xfe\x3b\x2d\x86\x1b\xb3\xbc\xff\x48\xf5\x61\x5e\x08\x61\x2e\xb8\x87\xe3\x76\xaa\xb7\x1f\xec\x85\x90\x6d\xa9\x06\x36\xf2\x8c\x6f\x56\x0f\x71\xeb\x38\xf2\x3e\x25\xda\x0b\xa2\xa4\xf4\x98\x31\x08\x17\xf1\x05\x79\xcd\x4e\x9a\x76\xbb\x8c\xd4\xc1\xf3\xf4\xf7\xcf\x79\x76\x0d\x84\xd3\xf4\xfa\x68\xe8\x18\xd0\x89\xed\xca\x90\x3b\xd2\xae\x53\x24\x8c\x7b\x8e\x15\x4f\x41\x7c\x45\xda\xf5\x03\x50\x8d\x9c\x0b\xb8\x98\x45\x02\xa9\x7f\xcd\xab\x72\x65\x1d\x6b\xd2\x6c\x29\x37\x83\x5e\xdc\x69\x30\xeb\x82\xbb\x97\x84\x8b\xc6\x1d\x9b\x16\xb0\x1f\x74\x2d\x87\x6a\xf9\xfb\xd1\xb9\x6a\x77\x39\x02\x2d\xb5\x99\xcf\x79\x20\x68\x98\xc6\x2b\x36\x2f\x4c\x32\x15\x18\xa1\xff\x40\x9e\x26\x42\xe5\xeb\x58\xb6\xa8\xae\xdf\xd8\x3e\xc9\xf2\x85\xe6\xc1\xff\xea\xcb\x8d\xc6\x57\xbe\xa4\xf9\x8e\xe2\x7b\xfa\x66\x4c\xee\x36\x4b\xd4\xf8\x5a\x15\xd4\x23\x1a\x56\x3e\x31\xe2\x1a\x63\xd1\xee\xae\xce\x50\x4e\xe1\x5c\x05\x49\x33\x56\xff\x00\x04\x26\x8c\xe5\xfc\x3e\x12\x62\x35\x2f\xe4\x87\x7d\x56\x41\x25\x37\x02\x5e\xfd\x32\x64\x3d\xd7\x91\xae\xeb\x07\x44\x61\x38\xf8\x1e\x2e\xcd\x49\x29\x7b\x6d\x52\xeb\x78\xd1\x28\xd8\xd0\xb4\x66\x3a\x20\x48\x0c\xef\x10\x29\x37\xb5\x06\x72\x9b\x58\xda\xca\x6d\xf7\x80\x8e\xb7\x76\x98\xec\xba\x57\x75\x99\x49\x6c\x81\x71\xed\xcf\x74\xa9\x21\x39\xfd\x64\x58\x76\x7a\x1a\x8a\xdc\x9c\xf6\xf8\xbc\x9c\x1f\x1f\xc3\x7a\xd5\xd7\xd1\x4f\xfb\xcf\xe8\xc6\x05\xa4\x69\x4d\xc7\x11\x1e\x9f\x71\xc4\xdc\x6d\x86\x52\x6e\x37\xe8\x5a\x05\x28\xe2\x0d\x38\xbc\x07\x3c\x8c\x95\xc1\xa5\xbf\x5a\xe7\x4e\xbf\x6a\x4d\x52\xf6\xd6\x28\xc0\x9f\xc1\xaa\x75\x3a\x0d\x13\x7f\x33\xdf\x2c\x44\x46\x48\xfb\xbe\x38\x9c\x2f\xd0\x5c\x36\xfb\x5d\xad\xf6\x32\xe9\x31\xe0\xc1\xb1\x3f\x1d\x40\xaf\xcb\xe4\xac\x7c\xd1\xcf\x5e\x2f\xd9\xb4\x4c\x6c\x6a\x0b\x4d\x95\x78\x1c\x5e\x5f\x13\x74\xb8\x98\xc7\x5d\xb3\xf6\xa0\xac\xcd\x31\xc3\x7f\x27\x80\x52\xc5\x39\xc5\x88\x64\x35\x23\x7c\x7d\x0b\xa7\x3e\x2a\x8c\xdb\x22\xce\x8c\xa2\xf0\x81\xf5\x40\x96\x53\x14\x06\xf5\xc0\x3f\x21\x84\xed\x48\xc0\x37\xfe\xf3\x1d\x2d\x77\x84\x2d\xc6\x55\x2e\x09\xf8\xd7\x09\x1b\x36\x48\xf0\x70\xb7\x2f\xfc\x9c\xfa\x09\xd6\xef\x75\xa2\xb3\x5e\x9f\xc8\x02\x67\x0f\x35\x3b\xab\x46\x13\x36\xaf\x28\x31\x47\x2e\xb4\xdb\x8b\x8e\xd9\x43\xcd\x6e\xb6\x9a\x16\x71\x17\xf9\x1a\xa6\x0d\xc0\x45\xd0\xd7\x63\xcd\xa7\xd8\xe4\x33\x81\xfa\x83\xf6\xac\xbe\x16\xdd\x01\x2f\x41\x13\x88\x2e\x5a\x4d\x61\x7a\xea\xd3\xe8\x49\x1f\xcf\xf0\xf0\xfa\x26\x55\x01\x71\x7f\x83\x17\x5c\x39\x77\x9b\x7d\x00\xba\xb1\x17\xc9\x77\x20\x4e\xf5\x57\x0e\xdd\x79\x98\x1c\x5e\xb2\xd5\x5d\xb2\x34\xf5\x00\x8c\x48\xcd\x73\x87\xc0\x1f\x6a\x4d\x28\x1f\xe0\xc8\x75\x41\x2e\xf9\xac\x94\x06\x0e\x2c\x25\x1b\xcb\x9b\x94\x0d\x74\x7a\x26\xce\xfb\x26\x85\xdc\x2e\xce\x25\xe5\xa1\x91\x23\xc7\x0b\x1a\x43\xde\x1c\x11\x7e\x7e\x51\x90\x12\x27\xeb\x27\x17\xe7\xdc\xfe\x64\x6d\xea\x87\x41\x1f\x43\xff\x3e\xda\x1d\x76\x72\xb6\x47\x3e\xcc\xe9\xbb\x57\x1f\x06\xf1\xc1\x3d\x10\x85\x90\x0d\x33\xf3\xe4\x3a\xcd\x79\xa3\x3b\xe6\x9c\x35\x83\xff\xc3\x1f\x47\x41\x9e\xe1\x47\x28\xd5\x5d\x0c\xa8\x1e\x27\xea\xa9\xcd\x11\x85\xa7\xc3\xb8\x9b\xc0\xc4\xaf\xc9\x42\xc1\x73\x56\x03\x79\xb5\xc2\x1a\x91\xac\xd5\x55\x58\x48\xeb\x87\x51\x5a\x58\x2b\x24\x2c\xd4\x46\x15\xea\x06\x51\xec\x34\x36\xa0\xbe\xa9\x11\xea\x7e\xa1\xb9\x92\x25\xcb\xc5\xaa\x59\xb2\xe9\x74\xe0\xa5\xdc\xc1\x1d\xf4\xba\xb3\x7e\x68\xfb\x5b\x23\xc2\x91\xcf\xd1\x10\x64\x3b\x8f\xed\x62\x02\x84\x0d\xa8\xd6\xed\x11\x31\x08\x6f\x47\x7f\xe3\x33\x98\xa3\xa6\xd3\x11\xea\xb1\xd7\xc1\x22\x7b\x42\xef\x55\xe8\x75\x8d\x30\x17\xa3\xd2\x95\xb8\x7b\xf7\xe4\x41\x20\xdf\x53\x9b\x4b\x2c\x83\x33\x34\x9b\x5e\xe6\x26\x15\x69\x5c\x48\x26\x6f\x09\x1a\xb3\x75\x8d\xb1\xf9\x7c\xd8\xb5\x85\x1c\xf4\x88\xeb\xf8\xd9\xfa\xda\x0b\xca\x0c\x4c\x5e\xa6\x36\x2f\x7a\xf1\xa0\x98\xa6\x65\x7a\x7b\x44\x93\xab\xf7\x6f\x33\x06\xf6\x6e\x87\x1f\x4d\x40\xf4\xb3\x87\x9a\x7d\xd3\xe9\xc5\xcb\x71\x0a\x2e\x97\x9f\xa1\x24\x2b\xd3\x30\x9c\x79\x5c\x6a\x2f\x27\x5e\xe4\xef\x4a\x92\xd8\x25\x87\x6f\x22\x15\x03\xec\xab\xaf\x89\x56\xa3\xed\x80\x47\xaa\x8f\xc7\xfd\xbb\x83\xe7\xe4\x14\x02\xa7\x82\x75\xe0\x71\xc9\x35\x55\xe2\x85\x6d\xad\xbe\x23\x3b\x07\xa9\xf4\x4c\xab\xda\xf2\x6e\xf6\xb2\xba\x00\xc4\xab\xa9\x75\xce\x71\x4f\x88\x2e\x92\x57\x8b\xa9\x7e\x28\x30\x9f\x5b\x48\x6e\xa1\x2f\xf3\x36\x8d\x01\xa8\x9b\xb0\xfe\x8f\xd1\xe7\xc7\xb3\xb2\xaa\x3e\xa8\x92\xd7\x3d\xa1\x79\xf8\x29\x2b\x39\x28\x2d\x05\xb5\xd0\x98\xc1\xc7\xef\x8e\x08\xe7\x3e\x11\x35\xbe\xf8\x55\x6d\x86\xde\xa4\xf0\x09\x31\x2a\xa7\x0b\x28\x8f\xd9\x89\xfd\x07\x4c\xeb\x04\x52\x75\x84\x80\xcb\xf8\x1d\x3a\xf2\x20\xa7\x18\x72\x25\x38\xa4\xf9\x0a\x66\x61\xaf\x13\x08\xf8\x3e\x92\x65\x94\x6e\x3b\xbc\x19\x50\x3b\xc9\x3a\xcb\x3b\x49\x87\xe2\x6c\x14\xbc\xd7\xa6\xc8\xdc\xff\x7b\x11\x0f\x57\x92\x4f\xc3\x4d\x16\xe0\xbc\x38\x86\x70\x66\xa6\x94\xe9\x74\x14\xef\x20\x18\xeb\xeb\xf5\x40\x99\x52\xd6\xa8\x43\x20\xb6\x17\xde\xb3\x87\x9a\x2b\x41\xaf\xd4\x5b\xf3\x55\x7f\x02\x86\x0f\xee\xa4\x23\x18\x93\x8b\xac\xc9\x97\x8b\x5d\x0d\x6f\xd1\xf3\xe3\x51\xe0\x1a\x6d\x48\xd4\x54\x09\x5f\xf9\x7b\xf5\xaa\xa5\x3c\x4e\xa1\x52\x74\x3f\xf4\x70\xc4\x22\xbc\x5a\x67\x3d\xd7\xb6\x4b\xb1\x93\x96\xd1\x41\x0a\xa0\x55\x6e\xaa\xc2\xed\x69\x33\x18\xe4\xd9\x20\x8f\x8d\x57\x07\xa8\x25\xff\xb9\x13\x75\x31\x37\xe9\xf2\xe2\x30\x2f\xa7\x49\x7f\xe8\xf2\x98\x28\xf0\x35\xd4\x5c\x38\x5b\x4e\x50\x32\x76\x87\x44\x23\x8a\x32\x37\x71\xda\x20\xb3\xe6\x9b\xa3\xa0\x10\x7c\x73\xa2\x26\x96\x21\xc2\xc4\x9a\xc6\xf6\xf1\x6e\x37\xd9\x5b\x93\x7b\xb6\x6d\x12\xdb\x15\x18\xaa\x22\x44\xbe\x39\xf2\xca\x81\x5f\x7a\x02\x42\x4c\x58\x29\x0f\x55\x2b\x60\xeb\x92\xbf\xc0\x32\x37\x2b\xc6\xdb\xcb\xa8\xba\xb6\x2c\x66\xa7\xb4\x1d\xa8\x53\xdd\x64\x6d\x37\xf1\x99\xb6\x24\x7a\xc9\xef\x78\xe9\x3f\x6d\x11\x8c\xfd\xc8\x3a\x49\xe7\xec\x5c\x97\x6f\x47\xd9\x72\x6f\x44\x1c\x79\x7d\xb6\xf8\x3f\xbb\xd6\xbd\x50\xec\x9f\x7e\x7e\x3d\xa4\x7d\x3f\xbb\xde\xf8\x2f\x0e\x8e\x51\x91\x41\xaa\xde\xd3\x0a\xca\xa5\x85\xed\x56\x2b\x95\x18\x7a\x8c\x97\x34\x04\x29\x70\xa5\xd2\x63\xec\x00\x6c\x3b\xa5\xed\x3e\x5e\xfd\x0a\x64\xb5\xd3\x64\xc5\x7a\x4c\xc6\x57\x5d\x86\x54\xed\x74\x44\xbc\xcb\x3c\x5a\x79\x24\x22\x76\xd0\xbf\x96\xbc\x41\xff\x07\x4e\x50\xa7\x57\x12\x76\xc3\x25\x29\x6b\xb5\x95\x4b\xea\x1a\x9b\x48\x1b\x10\xf3\xcf\x49\x49\xb8\x75\x45\xe2\x13\x1a\xcc\x2a\x54\xe8\xf2\x02\xc6\x1c\xcf\x62\x19\xba\xc4\x9c\x6e\xea\xd5\x09\x00\xf2\x97\x9b\x59\x3b\x89\x97\x4c\x99\xe5\x6b\x72\xba\x82\x8c\xf3\xdf\x91\xbd\xca\x29\x72\xf1\x9b\xd4\x85\x3e\x70\x40\xb5\x87\x40\xef\x74\x7c\x22\xe2\x16\x8d\x9e\xf0\x6b\x3f\x4e\x4b\xbb\x94\x87\x0d\xe7\x6d\x02\xbd\xc2\xef\xeb\x13\x3d\xd8\x7d\xfb\x9a\xed\x61\x11\x57\x35\x4b\xdf\xaa\x24\x4d\x9d\x63\x3a\xf5\x95\xca\x9e\x35\xa5\xcd\x67\x02\xde\x79\x96\x0b\x46\x4c\x43\x79\xd1\x66\x3f\x5d\xdd\xc3\x61\xe7\xbc\x23\xa9\x69\xda\xb1\xa9\x7d\x50\x3e\x41\x07\x9e\xd9\x51\xe2\xd8\x28\x44\xea\x7f\x46\x74\x02\x9d\x19\xf3\xe2\x8d\xd5\x0f\x46\x0a\x7a\x85\x7d\xad\xef\x90\xae\xc3\xff\x44\x2e\xd9\x7f\x11\x11\x58\x75\xa5\x46\xfd\x2b\xb7\x2b\x36\x1d\x3a\x7f\x53\x3d\xa8\xe4\x59\xb9\x43\x6b\x22\x94\x2c\xcc\x4b\xf5\x22\x16\x99\x00\x89\x9f\x68\x05\xfb\x95\x3d\xeb\xa1\xbf\x73\x9c\xeb\x03\x93\xdb\x46\x88\xed\x67\x64\x15\xea\x6b\xe2\xc9\x0e\xd3\xc5\x3c\xb6\xa9\x58\xfd\xf9\x0d\x86\xc5\xa3\xaf\x89\xf7\xb6\x6a\xcd\xb2\x4d\x05\x92\xdc\xba\x2b\xf7\x7d\xeb\x6e\x9d\x54\x6a\x6e\xd2\x25\x97\x22\x62\x39\xfe\x31\x9e\xba\xbe\xa1\x01\xa3\x7e\xa7\x63\xf2\xdc\xa0\xe2\xa9\x15\xb8\x0f\x95\xed\x8a\x4d\xe3\x8e\xaa\xc7\x00\x46\x7f\x8d\x7c\x98\x5e\xf3\x41\x5f\x30\x7d\xbb\xa4\x2a\x82\xee\x37\xcb\x87\xba\x9b\x11\x6e\xc0\xd2\x30\xee\xda\xa4\x5a\xa9\xb4\x15\x2e\x11\xcd\xee\x12\xe9\x34\x95\x19\x9c\xe5\xbd\x3b\xf4\x42\xa8\x70\xaa\xdb\x87\x67\xb8\x35\x81\x7f\xcf\xcd\x35\x0b\x9b\x76\xa7\x48\xa8\x02\x4c\x01\x8f\x8c\x54\x4b\xcb\x91\x1b\x6a\x76\x6b\xdf\xa4\x43\xe3\xe2\x3b\x86\xc2\x8e\x47\xa4\x4b\x74\x9c\xf8\x1a\xdd\xb8\x18\x24\x66\x4d\x9d\x88\x10\x8b\x20\xcc\xa9\xaf\xeb\x6c\xd0\xf2\x2c\x49\x62\x4b\x73\xd8\x7a\xc3\x9c\x31\xca\x43\xa1\x24\x34\xf9\x03\xf2\xbf\x9c\x0e\x20\xd9\x8a\x7e\x84\x0d\xa3\x52\x21\x2c\x81\x46\xba\xde\x2a\x0f\xad\x92\x04\x7a\x16\x23\x82\xfd\xcf\x51\x28\xbb\xaf\x45\x64\xbb\xf1\x01\x51\x19\x24\x57\x48\xe3\x74\xe9\x81\xd0\xcf\xb8\x8a\x4c\xd1\xb5\x9d\xe5\x2f\x81\x65\xe1\x2a\x90\xf8\x37\x5a\x44\x27\xc6\x51\x8f\x0d\xf5\x6a\x14\x34\xd1\xdf\x8e\x68\x1a\x5c\xf3\x46\x1c\x1a\xd7\x3d\x05\xa4\x5c\x55\xcf\x2e\x2f\xd4\x51\xdd\x10\x77\xce\x07\xfa\xa1\x88\x98\xce\x04\x4b\x0e\x60\xdc\x2a\xf2\x20\xb8\x0a\x16\xc0\x43\xc2\x96\x70\x3d\x3e\x12\x40\xfc\xb3\x3a\x3f\xc8\x38\x35\x5d\xfb\xb5\xa1\x74\x9f\xc2\x58\x00\xcd\x34\x6e\x4c\xe4\x23\xbf\xf2\x7c\x73\xd1\x74\xca\x8c\xec\x0b\x51\x9e\xe8\x6b\x1a\xbf\x35\x69\x9a\x0d\x85\xb4\x17\x24\xd5\x59\x6a\xbd\x2e\x7d\x1b\x0c\x13\xe7\x7c\xe5\x10\x5d\x59\x15\x0e\xeb\xad\x91\x41\xcd\x06\xe2\xc5\x96\x2e\x4d\x35\xc8\x69\xb9\xe1\x2d\xd6\x36\x47\x34\x48\x38\xd3\xda\xed\xf3\x97\xa7\x8a\x3d\xc1\xff\xfc\x13\xee\x33\x7c\x2a\xfb\xd1\xa9\xd1\x84\xf1\xc2\x4f\x47\x41\xa5\xef\xb7\x9f\x68\x11\xa9\x67\x46\x0b\x1f\x9c\x46\xc7\x80\xe1\xfa\xd1\xff\xa7\x9e\xf2\x22\x0d\x81\x63\x75\x46\x36\x3a\x88\x5f\xd7\x24\x0d\x40\xea\x2f\x5c\x92\x83\x5b\x97\x04\x55\x41\x9e\xae\x22\x18\x72\x8b\xff\xfe\xdf\x68\x09\x3c\xe0\xb8\xa6\xdb\xf7\xf8\xf3\xb3\x87\xb4\x60\x06\x89\x19\xcb\xfa\xcc\x88\x9c\x84\x6f\x51\x57\x22\x8c\x25\xb5\xd9\xa3\xcf\x9b\xc0\x04\x43\x18\xe2\x65\x17\xa5\x49\x30\xdc\xe3\x1a\xed\xd4\x74\x9f\xb8\xa2\x17\x5f\x74\xf3\xaa\xd2\xb7\xc4\xc9\xfb\xdf\xe2\x82\x9c\x6c\x25\x2d\x11\x7f\x41\xc3\x74\x31\x7e\xd9\x69\xcb\x38\x5b\xa8\xc0\xa7\x90\xc1\x78\x47\x2a\x5c\x1b\xd8\x3c\x4e\x17\x13\x32\xe5\xc3\xa3\x7c\x2d\xa2\xe7\xfa\x1a\x65\xaf\x3d\x9b\xb0\x6e\x02\x8f\xcc\x9f\xa4\xf9\x80\xc4\xb4\x65\x5d\x21\xab\xff\x14\xa1\xd2\xa9\xfc\x53\x92\x7c\x91\x38\x89\xc3\xb4\x6b\xf3\x7e\x9c\xea\x42\xae\xe3\xab\x86\xec\xe2\x6b\xc3\xb8\x84\x3e\x32\xea\x6f\x88\x10\x03\x62\xc5\x59\xab\xaf\xe5\xa7\x63\x4d\xde\xdf\x0a\xa6\x7a\x17\x6a\xe4\x4a\xe6\x9b\x3d\xd3\x6f\x0f\xf3\x25\x9b\x03\xe8\x75\x52\xdc\x61\x8a\xe2\x5f\x10\xfd\x69\xd5\xa4\x4b\x72\x68\x2b\x33\x49\x12\x57\xc7\x52\x0a\x95\x9c\x38\x1e\x4e\x87\xf0\xaf\xc5\xba\xce\x71\x48\xf2\xea\x66\x3a\xaa\x9f\xa0\xff\xc8\xb7\xec\xfa\x36\x71\x4c\x3c\x07\x95\x36\xfc\x88\x3a\x66\x42\x9d\x4d\x52\x68\x4d\x24\xc9\x6e\x52\x1f\x3b\x89\xfd\xe7\x59\x08\xd5\xed\xf7\x10\x46\x78\x30\x6f\x8c\x82\x7a\xca\x4f\x93\x02\xce\x49\xec\x71\x2f\xea\xef\x5b\x4f\x57\xa3\x30\x9b\xbd\x07\x24\x29\xa7\x30\x2f\x8b\x0f\xa4\x9d\xad\xba\x46\x69\x7b\x98\x57\x3b\x2d\x8c\xaf\x1f\x21\x39\xf2\x9b\xe4\x4c\xcc\x64\x72\x29\xf7\xa7\x65\xa3\x01\x54\xbb\x44\x16\xad\xa2\x5b\xb2\xf5\x2a\xd3\x22\x7f\x8f\xb2\x51\xd3\x6e\xc7\x16\x20\x94\x9b\x2d\x20\x5e\xd2\xf9\x31\xd8\x88\x34\xbd\x8e\xd3\xf6\x5d\x1c\xa6\x4b\x71\x83\xd3\x7d\xf9\x04\x7d\x33\x01\x93\xef\x9f\x6b\x2e\x65\x1a\x4d\x50\x0c\xdd\x1c\x73\x63\x0f\xa4\x8c\x63\x75\x21\xbd\xec\x65\xc3\x25\xe8\xda\xb2\x9d\x82\xf3\x5c\xf0\xfe\x34\x71\xd9\xe9\xb9\xa9\x09\x27\xa0\x28\xb7\xc8\x49\x2b\x6e\x8f\xfd\x0e\x4c\x4c\x45\xd6\xd6\x7b\x40\x6e\x46\x81\x3d\xf2\xab\x64\x32\xba\xe9\xd9\x37\xa5\x49\x97\x12\xdb\x68\x7c\x79\xd6\x87\x68\x79\xcc\xae\x23\xb4\xfd\x47\x54\x01\x6c\x30\xb0\x26\x97\x53\xd2\x99\x44\x11\x1b\x75\x63\x0c\x6f\x29\x96\xd7\x66\x88\x9b\xb8\x15\x05\x76\xc3\x4d\x64\x01\xfa\x3f\x64\x9b\xa0\xde\x6b\xac\x87\x29\xec\xb3\x1c\x7e\x6c\x77\x4f\x20\xc0\x3c\x8e\xd2\x5d\x02\xc2\xf2\x93\xeb\xc1\xc4\x03\x87\x94\x9c\x2b\xdf\xfe\x79\x90\xc7\x7d\x8c\xaa\xbe\x50\x72\xbb\x8f\xfe\x36\x34\x42\x50\x53\x9c\x8e\xaa\x4a\xda\x19\xa4\x50\x24\x43\xe9\x8d\x6d\xf5\x1e\x1d\x78\xff\xd1\xa3\x98\x5e\xc2\x72\x16\x72\xd0\x33\xbe\x23\x2a\xbf\x57\xfa\x2c\x9d\x5f\x68\x79\x12\xc2\xf0\x73\xd2\xe5\x40\x24\x38\xed\xb7\x75\x3f\x4e\x96\x77\x86\x71\xd0\x5b\x72\xf1\x68\x6b\x3e\x2a\x83\x7b\xea\xae\x37\x0a\xfa\x6d\xff\x72\x34\x99\x25\xe1\x42\x26\xcd\x74\x9f\xdb\xfb\x4c\x73\x90\x18\xaf\xfe\x0d\xbe\x27\xcc\x63\xf4\x75\xab\x06\x35\x31\xed\x2c\x89\x8b\x9e\x3c\x63\x74\xd7\x21\x10\xaa\xaf\x59\xfb\xcf\xca\x7c\xe6\xfd\x92\x1c\xe2\x64\xb9\x49\x29\xea\x07\x12\xb5\x91\x34\x4e\x89\xdf\x04\xb2\xc9\x07\xe5\xc6\xe0\x88\x01\xf2\xe6\x8e\x1e\x8a\x38\x37\x91\x3a\x38\xd6\x09\xa9\xd1\x9a\x32\xcf\xd2\x82\x38\x29\x17\xb9\x69\xc0\xdd\x73\x21\xa5\x98\x04\x65\x93\x23\x32\x30\xab\x21\xda\x6e\x66\xe3\x0d\xd7\xec\xa2\xcd\x73\xed\x26\x28\x42\x11\x05\xe6\xfa\x25\xaa\x8c\x4c\x3b\x16\x89\x42\xe2\x2c\x6f\xb0\x24\x68\x9d\xbf\x44\x2f\x0e\xc2\x0e\x3a\x3e\x27\x9f\xee\x46\xe9\xb8\x75\xf6\xf2\x10\x8c\x15\xd4\x03\x47\x90\xc4\xe9\x9b\x89\x40\x3c\x7b\xa8\x59\xe6\xc3\xb2\x27\x35\x15\x20\xd8\x3b\xa3\x89\xb0\x88\x40\x32\xdd\xe2\xd3\x7d\x69\x26\xa0\x0f\x27\x89\x88\x39\xd5\x62\xfc\x08\x21\x16\x07\x2e\xb6\x2d\x2e\xf9\xb4\x8f\x29\x45\x36\xcc\x3b\x76\x7a\x6c\xf2\xbe\xe1\x4d\x7b\x77\xb6\xc2\x30\x84\x86\x65\x9c\x75\x57\xd9\xff\x3e\x5b\xb3\x39\x73\x19\x2f\x23\x77\xd1\x37\x23\xae\x06\x06\x59\x29\xfa\x82\xf8\xad\xa7\x44\x77\xc6\xb7\xab\xfc\xa4\xe2\x8f\x99\xe4\xf0\x5d\x1f\x6a\x4b\xd3\x59\x0e\x8d\x66\x4d\x73\xa3\x40\x9a\xf9\x0c\x26\x7c\x37\xeb\x94\xb9\xd4\xb7\x24\x6d\xf0\x09\xf9\xd7\x7c\x42\x6d\xfb\x97\xb2\xc2\x0e\x7a\x92\xf0\x91\xa5\x84\x97\x80\xc0\x2f\x73\x0c\x42\x8e\x9e\xf1\xa2\x4a\xc3\xa0\x7f\xf5\x26\xd3\x0b\x8f\x92\x83\xef\x95\xf1\xc2\xa0\x46\xb3\xad\x6d\x17\xb3\xdc\xf6\xc4\xb3\x6c\x61\xaf\x86\xaa\x46\x2b\xcc\x96\x35\xd6\xbd\xe1\xb2\x38\x5f\x2e\x38\x65\x74\x34\x74\xdd\x88\xcc\x36\xc7\xf4\xa7\x9e\xaa\x6e\x87\x1c\x53\x0a\x4a\x0b\x8a\xed\x00\xea\x3d\xa4\x99\x94\xe7\xb6\x53\xce\x84\x2f\xd7\xf2\xdc\x07\xcd\xc0\x0c\xff\x41\x14\xe0\x62\xd8\x52\xaa\xe2\xe5\x04\x02\xf0\xe5\x59\xf1\xc1\x91\x38\xe0\x6b\xc1\x50\x17\x12\x22\xb2\x64\xf2\xae\x4d\xd5\x2e\x54\x59\x1f\x63\x66\xda\x7b\x3c\x93\x7b\x60\xd2\x22\x76\x0e\x41\x75\xea\xb0\x8f\x7a\x0e\x22\x48\x42\x33\xac\x11\xce\x49\x92\x0a\x82\xe0\x6e\x3c\xd2\x0a\x3b\x18\xe3\x72\xc8\xe3\x8e\xd6\xb9\xe2\x97\xbd\x38\x05\xb1\x4f\xa9\x88\x34\x83\x72\xac\x46\x77\xf7\x99\x66\x61\x6d\x7f\x8a\x64\x9a\xb4\x8b\x0a\x6c\x1e\xee\x16\xce\x01\x7f\x7b\xee\xf0\xfc\xc2\xde\x66\x5c\x98\xb6\x4d\x12\x40\xeb\xda\xb1\x62\x59\xec\x13\xd1\x18\x99\x35\x87\x0c\xfd\x74\xe3\x8b\x5f\x0d\xa7\xae\x27\x97\xa1\x21\xee\xe0\x1c\x39\x19\xf4\x4d\x14\x26\x00\x57\xf3\x2a\xf3\x90\x9d\x57\xfd\x03\x67\xc5\x54\xfd\xa5\x63\x73\x92\x2d\x52\x5a\x7d\x9d\x8e\x35\x81\x01\x04\x0a\xb6\xbe\x26\xca\xe2\xda\x70\x29\x2b\x12\xb3\x12\x1b\x59\xc4\x3a\x4c\x14\x85\xfa\xf2\xc2\xa8\xf9\x19\x11\x3f\xb7\x5d\xc8\xa5\xc8\x5d\x70\x2a\x41\x04\x08\xbd\x39\xda\x1d\xc4\xf8\x8b\x7f\x57\x6a\x4f\x67\xba\xd8\xd8\xb7\xcf\x63\x20\x92\x74\x60\x31\xff\x91\xe8\x9f\x13\x9d\x61\x3e\x8c\x58\x7d\xf1\xab\xe3\xca\xba\xde\x5d\xbf\xfa\x95\x0e\x5e\xf5\x13\xd3\xdf\xfc\x5d\xb9\xc5\x38\x52\x76\x4b\xd5\x03\x4e\x8b\x1a\xfd\x48\xfc\xf8\x95\x27\xd6\x79\x96\x98\xa6\x2f\xb7\xa4\x86\x46\x5e\x7e\x07\x53\x15\xf8\xf2\x2b\x08\xe8\x08\x46\x1f\xa2\x41\x87\x0f\xd6\x76\x13\xd2\xb5\xa9\x75\x31\x95\xd2\xea\x01\xcd\x3e\xd4\x2e\x77\x23\xd2\xb9\xd4\xb4\xcc\xb5\xce\xaa\x58\xec\x21\xe5\xaa\x6e\x77\xd3\xc2\x81\xb5\xbb\x7b\x3d\x18\x82\x5e\x26\xe2\xd3\xfd\x63\x12\x84\xf7\xb5\x26\x57\x7d\x13\xb6\xc1\x6c\x36\x27\x7f\xef\xd2\xbd\x47\x3d\xe9\x73\x91\x54\x87\x51\x66\x1f\x23\x85\xd4\x63\xf5\x6e\x6a\x4b\xb9\x35\xa5\x27\xd1\xe0\x66\xdd\xa0\x69\xf4\x1b\x23\xc6\xd9\x87\x79\xbb\x3a\xb1\x9e\xf7\x37\xfc\x38\xcd\xc4\xf2\x90\x59\xb6\x62\xf3\x3c\xee\xba\x19\x61\x6c\xea\x53\xb4\xc1\x4f\xd5\x18\xb5\x36\x07\x82\x71\xc3\x0d\xd7\x9d\x88\x81\x9c\x78\x91\x9c\x71\xbf\x31\x1a\x53\x9a\x92\x79\xad\x19\x72\x7f\x3a\x17\x8d\xdb\x7f\x1c\x38\xe0\x3d\xdd\x65\x1d\x39\xf2\x13\xd1\x9b\x7e\x3f\x0a\x1c\xdc\xbe\xe9\xf4\xe3\x24\x71\xa6\x12\xde\xf4\xc8\xbb\x0d\x8e\x3b\xe0\xf7\x8d\xb2\x04\x5c\xf6\x50\xad\x48\x50\xfd\x54\xe9\xcc\xcf\xfe\x05\xcd\xdb\xeb\x34\xb1\x6d\x3a\x3d\x9b\xb6\xcd\xb0\x2f\x9c\x5f\x67\x14\x27\xdf\x8d\x0c\x6e\x93\x8a\xd7\x4d\x5c\xb5\x53\x1a\xaa\xf1\xe5\x5b\x8c\x57\xec\x62\x96\xe8\x80\x8f\xf7\xa0\x5a\x70\x53\x60\x50\x5c\x74\x78\x9b\x83\x5f\x3a\xb9\x29\x7a\xae\x55\x03\x88\xf6\x35\x76\x17\x7a\xed\x33\xb3\x48\x33\x18\x24\x66\x58\x58\x1c\x27\x88\x40\x48\x78\xf5\x75\xeb\x71\x9e\xdf\x1c\x86\xd1\x5e\x9c\x4c\x63\x8e\x0c\x17\x08\x05\xed\x64\xc3\x01\xe0\x44\xc4\xf8\x23\x51\xe8\x8c\x1f\xf1\x2c\xb7\x62\xd8\x2e\xe2\x6e\xfc\x8a\x3a\xd1\x01\xf3\xda\xd1\x0a\x54\xc3\x73\x38\xa3\x50\xa3\x5f\x1f\x6d\xe3\x7e\x3e\xdd\x3c\x70\xe0\xa0\xaa\x98\x23\xa4\xdc\x44\x80\x70\xad\x7d\x89\x74\xce\xf6\x57\xf6\x89\x42\xac\x24\xa6\xff\x31\x17\xe5\x37\x09\x14\x4d\x4d\x27\xce\x52\x93\x4c\x55\x1b\xc5\x9d\xb4\x34\x9d\x7d\x44\xc2\x87\x3b\xc2\x42\x7b\xb2\xda\xf6\xd5\xfe\x79\xb4\xda\x0c\x48\xe8\x36\x25\xcc\x22\x99\x78\x13\x4f\x06\xbb\xe1\x24\xae\x4a\xc7\x92\x51\x50\x78\xc5\xaa\x6a\xb3\x02\x31\xbf\x1a\x4d\xcc\x3c\xa0\xea\xbb\x3a\x0a\x74\xe3\xf3\xdc\xeb\x82\xa4\x2a\xb6\xd4\x40\x8e\x17\x2c\x9a\x37\x51\xc1\x38\x91\x5e\x1a\xc7\x3f\x07\x1e\x85\x03\x79\xfc\x7c\x78\xb2\xd6\x1f\x68\x79\x06\xee\x8b\x8a\x38\xea\x9b\x1a\x91\x81\xa6\x38\x1d\x57\xd9\x4c\xa0\x19\x44\x01\x6a\x99\x24\xd9\xcf\x1e\x6a\xb6\x6d\xcf\x39\xd9\x3b\x40\x4d\xee\x8c\x43\xd4\x26\x67\xcd\xe7\x9b\x83\x3c\x2b\xa5\x11\xdc\x20\xfd\x14\x94\x77\xfa\x9a\xfa\x58\xed\x3c\xee\xfa\x06\x15\x72\x1b\xc0\xb7\xee\x4d\xdd\xac\x7d\xdf\x2c\xc6\x66\xaa\x7a\xcc\x3c\x84\x0a\xe8\x0c\x2c\x0a\x27\x81\xe6\x57\x74\x3f\x2e\x7b\xcb\xe2\x00\x28\xe7\x2f\xd2\x1d\x55\xb2\xd4\x37\x63\xe3\x1e\x3d\xe3\x24\xc1\xc6\x88\x9b\x8e\xa3\x4d\xd6\x66\xbd\x38\xe9\xf6\xb2\x0c\x15\x1f\x80\xe9\x23\xd4\x8d\x3a\x42\x7d\xd5\x34\xcb\xb3\x6e\xd6\x6f\x90\xb3\x25\xb2\x1e\x57\x35\xd4\x70\x46\x8a\x78\x09\x8d\x2e\xdf\x50\xa9\xd6\x06\x22\xde\x99\x31\x4d\xb0\xdd\xbe\x38\x19\x58\x64\x97\x7e\xc0\x25\xb8\x5c\xe2\x89\xe3\x7c\xd9\xd3\x0a\xe0\xda\xee\xf5\x90\xbc\x1f\x1d\xf1\xbc\xab\xf8\x36\x2d\xec\x75\x6d\xdd\x51\x80\x39\x4f\xfb\x71\xc1\xb6\x49\x96\xc7\x9f\xf7\x55\x6c\x27\x7d\x53\x57\xca\x76\xcc\x70\xa9\x57\x22\xa2\x2a\x0f\x2a\x0a\xd5\xaf\x32\x13\x1d\xb3\xd1\x8f\x7d\x25\x26\x4e\xdd\x84\x10\x26\x36\x6e\x46\xa4\xa7\x75\x73\x14\xc4\xa9\x4c\xde\xe9\xc5\xd5\x4a\x1c\xe6\x3a\x54\x43\x3c\xc9\x39\xdf\x2c\x1c\x1b\xf2\x31\x4b\x12\x56\x40\x67\xba\x26\x2c\x05\xfc\xd6\xc3\xf2\x48\xf1\x25\xa7\x26\x92\xe1\x03\x07\x9a\x36\xb1\x9d\x32\x73\x73\x71\x75\x2e\x47\x7c\xc0\x0d\xe3\xa2\x41\x10\x0c\xc3\x9c\x37\xfd\x1e\x7f\x29\x2e\x4b\x9b\xaf\xa1\x98\x73\x83\xc1\xbe\x8f\xfa\xd7\x1f\x6b\x85\xfa\x62\x37\x90\x25\x8c\x41\x4f\xce\x98\x3f\x5d\x9d\x12\x71\x81\x79\x1c\x95\x6e\x40\x90\x71\x3a\x0e\x8f\x33\xbf\x26\x86\x37\x48\xe3\x2b\x5f\xd2\x50\x75\x9a\xe8\x1f\x93\x72\xba\x87\x9e\x6d\x96\xd9\xcb\x55\x30\xf2\x9d\x33\x54\x60\xfa\xba\x56\xdd\xe9\xa5\x61\x77\x09\x47\x96\x57\xa6\xa9\x7e\x81\x53\xa3\xa9\x21\xfc\x15\xc3\xc1\x20\x89\x6d\x3e\x1d\x80\x9f\xfb\x80\xc7\xa1\x27\x80\x47\x84\xbc\xf3\xc4\xd8\x80\x55\x0d\xea\x3c\xc8\xe3\x3e\xf8\x3d\x80\xcd\x6e\x13\x48\x73\x96\x91\xe3\x81\x76\x45\x91\x66\x6f\x10\x2f\x6b\xb5\x67\x73\x2b\xa3\x2a\xa8\x76\x76\x22\x89\xc5\x3f\x9c\x5e\x0f\x2c\x98\xcb\xd4\x6a\xbc\x20\x27\x03\x49\x69\x3d\xe3\x1d\xc3\xc3\x51\xfb\x6a\x14\x26\x95\xee\x45\x94\x03\xdc\x88\x58\xe5\xfe\x12\x8f\xe3\x9c\x06\xe7\x15\xa5\xfd\x5f\x91\x49\xd0\x45\x1c\x20\xb8\xc6\xf3\x13\xfd\xbf\x2a\xc8\x67\x49\x51\x06\x03\x4b\xdf\x6d\xf1\xfd\xc9\xd3\xec\xb4\xb2\x1a\x17\x25\xcb\xce\xc8\x8d\x43\xef\xf4\xf8\x18\xe5\xb5\xa6\xf3\x9e\x5a\xdb\x9d\x09\x53\xb5\xdf\x8b\x1a\x5f\x9e\x55\x91\x54\xf0\xf5\x9c\x24\x83\xdc\x49\x34\x84\xe1\xdb\xe1\x08\xfc\x34\xd6\x95\x67\x30\x94\x98\x62\xda\x5d\x14\xc6\xa3\xa0\x03\xe4\x28\x2b\x81\xdd\xd4\x8f\xd3\x61\xa9\x40\x93\xa7\x8d\xd0\xf2\x0e\xf3\x9b\xaa\xd8\x8f\xb4\xe5\x27\x94\xb8\x0f\x72\xdb\x8d\x3b\x5a\x44\xb8\xf6\x40\xf5\x19\xae\x6f\x10\x60\x9c\x22\x5e\x1a\xe6\xdd\x06\xb7\xd6\xf5\x2c\xd1\x37\x51\xb8\xb2\xaa\x80\x5f\x2a\x1e\x0c\x4e\xf4\x77\xa5\xfc\x72\xc2\x2e\x72\x31\xf8\xab\x4b\x28\xf7\x74\x5c\x0b\xa9\x92\x73\x6a\x6b\x78\xe7\x74\xe5\xd3\x39\xd7\xb6\xa0\x81\x70\x93\x6a\xed\xfb\x04\x05\x77\x83\x5f\xa1\x07\x37\xb0\x79\x31\x14\xc3\xc8\x19\x9a\x34\xf8\x2d\xea\xbf\xbe\x15\x79\xcc\xfc\xef\xab\xa9\x84\x73\x5d\xc2\xcf\x45\xd2\x72\xa9\x46\x36\xa8\x99\x64\x85\x75\xc2\xb7\x8e\x7e\x30\x15\xfc\x6f\x2f\x32\xaf\x2c\x2d\xe3\xb2\xaa\xe3\x43\x8b\x8f\xa5\x51\xce\x8d\x02\x21\x22\x1d\x96\x7a\xa7\x01\xf7\x5f\xc7\xe6\xd1\x37\x94\x76\x14\x36\x49\xdc\xe4\x3c\x6e\xef\x15\xf2\xdb\x3a\x27\xd1\xc3\x89\x9a\x92\xfa\xc2\x15\x32\x34\x3f\x3b\x0a\x76\xa4\x67\xc9\x46\x71\x39\x5b\xec\x64\x3d\xd2\x37\xbc\xcc\xc3\xed\x97\x27\x12\xb3\xa7\x9b\xdd\x3c\x96\xab\x61\xb3\x8b\x73\x6c\x76\xc1\x6b\x24\xb1\x2b\x36\x29\xa6\x83\xec\x39\x24\xe6\xf4\x35\x50\x41\x5f\x04\x54\xdf\xeb\x8a\x00\x52\x32\x8c\x73\x61\xd9\xec\x22\x08\xea\xdb\xa4\xc7\xa1\x6a\x9c\x1e\x9b\xaa\x6e\x21\x6e\xc6\x74\x2b\x6c\xd2\x13\x1a\x8b\xf0\xcd\x97\xc8\x11\xf2\xbe\xf5\xb0\xfc\xb3\x97\xd7\x96\x2c\xa0\x11\x2c\xe9\xa3\x58\xc6\xfa\x86\xaf\x2a\x29\xe3\xbe\xc9\xd1\x56\x03\x31\x47\x27\x23\xf5\x0d\xd9\xc9\xd8\x97\x25\x99\x97\x93\x3d\x00\x9a\x1f\x92\x58\xe8\x87\x75\xa3\xc2\x83\xdc\x76\x6c\xd7\x11\x1d\xc0\x29\xba\x81\x20\x8c\xa8\x8d\x99\x70\x14\xb6\x3f\x98\x58\xb6\x87\x9e\x6d\x9a\x4e\x27\xcb\xbb\x63\xc7\x68\x83\xd4\x90\xb6\x87\xbc\x43\xcf\x36\x07\x26\x46\xd7\x0b\x8f\xf2\x5d\xf9\x06\x7d\x5d\xab\x3c\xd3\x1b\x26\x55\x14\xd0\x75\xec\xb2\xae\xcf\x60\xd6\x0d\xb2\xc4\x16\x72\x20\x82\xfe\x0a\x11\x23\x3c\xb9\xfb\x70\x1e\xe9\x9b\x75\xcf\x2d\xfd\x01\x0d\x81\x96\x59\x1f\xb3\xf6\x0e\x08\x95\x27\xef\x90\xd0\x70\xd6\xf5\x32\xaf\xc5\x58\x27\xc1\xc9\x9e\xd4\x79\xbc\xb8\xa8\xd5\x3b\x96\x93\x92\x9c\xf5\xcd\x18\x73\x82\x38\x9d\xa7\x49\xb8\xa6\xb4\xa6\xbf\x8b\x66\xb8\xee\x03\x19\xd6\xd5\x2c\x54\x7b\x6a\x6d\xe6\x12\xdd\xf0\xf4\xae\xa0\xa0\x72\x49\x2f\x7b\x33\xd5\x22\xa1\x49\x56\x94\xd3\xf2\x59\x4e\x72\x83\x9c\xca\x8f\x61\x27\x61\xa5\xef\xc0\xc5\x60\x99\x1d\xaf\x4b\xd9\x7b\x6b\x03\x55\x5a\x45\x5e\x7b\x81\xa4\x47\xb7\x4d\x37\x2d\xdb\x27\xab\x6b\x46\xd0\x7b\x68\x7d\x4c\xf6\x24\x18\xf3\xfc\x68\x5c\x36\x65\x4c\xa9\x84\xf5\x48\x42\xf3\xe5\xa3\x09\xd5\x12\x92\x43\x09\x33\x2a\x1a\x22\x7c\x9b\x95\x04\x5c\xe4\x01\x2a\xee\x16\xfd\x5b\x8a\xae\x7c\xa6\xce\x0a\x79\x01\x4e\xc3\xff\x0a\x18\xda\xfd\xd4\x49\x5a\x33\xaa\xc6\xee\xe5\x69\x7d\xc1\x88\x4c\x17\xeb\xe4\x1a\x03\xcc\x8d\xf5\xb0\xf2\xfe\xfa\xec\xfe\x67\xf6\x1f\x3a\xf8\xef\xc9\x0f\x47\xe9\xfd\x70\x6b\xc7\xcf\x05\xc4\xa2\xfa\x6c\x24\x5e\xa7\x80\x40\x20\xa6\x6d\x61\xa5\x80\x0d\xf4\x51\x84\xe1\x5e\x75\x30\xc1\x29\x8b\x27\xf7\xe3\x28\x68\x52\x7c\x2c\x77\xc4\x4b\xe2\xfc\xca\xf3\xba\x1c\x74\x94\x5e\xb5\xe5\xc8\x78\xe8\x65\x41\xb0\x14\x3a\x15\xd4\x17\x01\xf0\xe3\x11\x09\xdc\xef\x5a\x6f\x7c\xf1\xab\xfa\xa9\x5b\x78\x4c\x08\x2c\x2e\xed\xc3\x97\x5c\x8b\xaa\xc4\x1c\x57\x78\x16\xd3\xc2\x2a\xdc\x34\x0a\x86\x07\x3f\x46\x58\xc3\x33\xff\x84\xe5\x42\x14\x50\x40\x58\xb8\x13\x85\xc1\xbb\xb7\xb1\xca\x70\x67\xaf\x4b\x0a\x8a\xed\xf3\x1e\xd0\x10\xa0\xd9\xb7\x25\x25\x41\x21\xf4\xd7\x50\x75\xe0\x81\xdd\xd7\x0a\x86\x92\x4c\x7a\x69\x67\xbe\xe1\x55\xe7\x3c\x31\xae\x34\x99\x3e\x12\x5a\xf2\xe2\x77\xfc\x8c\x96\xb7\xb7\xb1\x52\x91\xcd\x5d\x92\x1f\x8a\xc5\xad\xc3\x09\x9e\xdb\x5a\xdd\x7f\x30\x02\x7e\x14\xe8\xf4\x3f\x50\x10\x06\x69\xdd\x5f\xe9\xed\x74\x5e\x9c\x0d\x6f\x77\xba\x03\xf5\x84\x9f\x02\x0b\xa6\xd4\x3f\x20\xdf\xbb\x7f\x35\x22\x33\xdc\x2b\x5e\x5d\x22\xb7\xfd\x4c\xf8\xab\x0a\x19\xa3\x9d\x83\x5f\xab\xaf\x6b\x30\xda\x39\xa1\x8d\x59\x05\x46\x5d\xce\x51\x7d\x99\xcb\x45\x02\x08\x1c\x04\x41\x30\x43\x81\xcc\x79\xba\x15\xba\xfc\x3b\xd6\x43\x17\x7d\x73\xc4\xa5\xec\x1e\xf2\xbe\x1c\xd8\xb4\xb0\x33\xd5\x2a\x54\xad\x3a\x59\x9d\x6e\x14\x54\x2e\x5e\x6d\x50\x64\xcd\x6b\x82\x3e\x0a\xf8\xe3\xc9\xd1\x67\x22\x97\x69\xcf\x0e\x0b\x6d\x99\xe1\x19\xeb\x8e\xd5\x37\xfe\xec\xe9\xca\x18\x07\x8f\xcf\x04\x8d\xf4\x8b\xa3\x87\x98\x8c\xde\x94\x4b\xc2\x2f\xd9\xdd\x0a\xc3\xf2\xc3\xc7\x85\x69\x81\x3a\x67\xa6\x55\xfd\x20\xa0\xc9\x27\x65\xf5\x62\x19\xfd\xaf\xd2\xda\xc5\xed\x39\xa1\x11\xcb\xf1\x51\x65\x5d\x03\xba\xbe\x37\x22\xf3\x95\x8f\x24\xb7\x83\xe4\xec\x93\xeb\xd5\x5e\x77\x1d\x35\x84\x07\xa7\xb8\x29\x9b\x4f\xc5\x7d\x46\x61\x36\xec\x13\xf6\xb5\x7b\x00\x74\x28\x12\xf4\x70\xf4\x62\xf4\xb4\x11\xc9\x9f\x58\x6f\x3c\xef\x1a\x6f\x00\x09\xf1\x51\x3b\xd0\x40\x71\x66\x19\x12\xb7\xa0\x9a\xf0\x33\xad\xc6\x53\x4f\xe9\xff\xb8\x19\x51\xcf\xe5\xa1\x96\xac\x5b\xe4\xe5\xbb\x30\x94\x89\x85\x7f\x5b\x0c\xbb\x3c\xf0\x1a\xce\xd4\x47\x65\x1a\x0d\xc1\x51\x87\x18\x51\x88\xaa\x5c\xae\x1f\x8f\xde\xaf\x51\xe4\xd0\x9e\x09\xfb\xf3\x85\xbd\xcd\xc5\xdc\x0c\xbb\x62\x62\x2d\x88\x15\xc0\x32\xb0\x77\xc6\x7c\xaf\x5c\x93\x6f\x77\xe8\xc7\x67\x9f\x0b\x52\x32\x58\x75\xd8\xb8\x77\xf0\x8c\x00\x90\x7d\x17\x0d\x24\x2d\xcc\x47\x72\x67\xc6\x4c\x1a\x1d\xc9\x42\x7e\xc1\x98\x01\x32\xae\x05\xa3\x79\x6e\x50\x91\x64\x37\x4e\xe9\xc2\xc0\x49\x78\x9a\x5b\xf2\x11\xcd\xf9\x4d\xaf\x07\xfa\xd0\xc6\x75\x12\x5c\xbd\x20\x46\x8e\x8e\xbf\x49\x56\x8c\xdf\x95\x7b\x86\x32\x7a\x66\x5d\x96\x2e\x2e\x72\xa6\x45\x73\x25\xda\x33\x43\xa2\xfb\xce\x44\xea\x5a\x25\x9e\x55\x11\x94\x0f\x15\xc2\x71\xd3\xbf\x0d\xaf\xbf\x72\xde\xcf\x39\x77\x32\xf1\xc4\xee\x1a\xdf\x93\x74\x52\xf3\xac\x3b\x4f\xba\x0a\x4b\xb9\xe9\x53\x16\xfd\xe6\x88\xa6\x9e\x28\x6c\xf4\x4c\xbe\x62\xf2\xee\x14\x75\xb8\x5d\x09\xe0\x88\x06\xa1\x04\x78\x7b\xf4\xa0\xfe\x86\xe6\xf3\xf3\x9f\x23\x42\xce\xb1\x88\x4e\xc8\xc7\xb0\x97\x81\x5a\x7d\x48\x5c\x21\x55\xc7\x02\xa2\x3b\x05\xba\xae\xd3\x03\x91\x67\x8b\x70\x3d\x85\xb6\x25\x4e\xac\x47\xa5\x23\x88\x0f\x6e\x48\xa3\xd3\x59\x7a\x04\x62\xc0\x65\xac\x3f\x1c\xe8\x4f\x48\xc0\x20\x26\xa6\x63\x47\xbd\x23\xab\xc4\xe3\xa5\x0b\x7b\xbd\x14\x04\x0d\x6b\x9d\xc6\xce\xd0\xbf\x18\x91\x02\x90\xf2\x1f\x11\x23\xae\x8d\x42\x89\xf9\x0f\x27\xc0\x97\xfd\x73\x4d\xd3\xe9\xc5\x76\xc5\x1f\x1a\x3a\xc3\x4f\xc0\xe1\x11\xa2\xdc\x66\xdd\xee\xae\x6a\xa7\xfa\xa1\x2c\x1f\x1a\xfe\xf1\x28\x74\x26\x37\x10\x97\x5c\xe3\xbf\xe1\x35\xc4\xa7\x90\x88\x29\x2c\x16\x05\x15\xc3\x49\xec\xff\xc0\x81\x66\x31\xc8\xad\x51\xf2\x30\x5a\x5e\xc7\xa2\x40\xb2\x9c\xb4\x93\x98\x3d\xd4\x2c\xca\x6c\x30\xd0\xe0\xaf\x64\x9a\x88\xe7\xc0\x6b\x70\xd3\x38\xfd\xda\x30\xc6\x18\x73\x18\x46\x42\x9f\xd5\x51\xc1\x27\x81\xa4\xf9\xe6\x53\x56\x61\x74\xda\xff\xb3\xee\x4d\xcd\x31\x3b\xdb\x84\x7c\xd1\x54\x10\x79\xbd\x40\x3e\xd1\x7f\x28\x80\x88\x13\x46\x08\x85\x66\x6a\x87\x79\x96\x64\x4b\xb1\x36\x41\x6a\xc7\x62\x42\xe7\x34\xcf\xb2\x7e\xdf\x94\xb6\x81\x63\x02\x51\x17\x41\x47\x5f\x93\x33\x48\x55\x83\xe7\x40\x35\x10\x79\x59\x72\xe2\x72\xed\xed\x8d\x97\x52\xaf\xcc\xeb\xa7\xcc\x3d\xeb\xe8\x7a\x14\xa6\x59\x27\xef\xda\x81\x03\x55\xb9\x37\x20\xda\xcd\x31\x89\x4d\xfa\xba\x8e\x11\xd6\x96\x05\x10\x10\xb5\xdf\x1e\x85\x71\xbe\xdf\xa6\x1e\x48\x31\xd4\x69\x74\x09\xfb\x0e\xaa\x0c\x39\xfb\x61\xdc\x2f\x84\x89\x73\x63\xd6\x00\x82\xa3\x49\x57\xfb\xb9\x20\x1a\x2d\x4b\xce\x69\xcf\xd6\x91\xb3\xcb\x9e\xcd\xf2\xd8\x8b\xa6\x3a\xcb\x25\x4a\x8a\x4e\x4e\xfc\xfe\x7d\xfb\x9a\xb2\xcc\x10\xb2\x5c\x0f\x57\xfe\x44\xdf\x44\xe3\xaa\x34\xf6\x21\x7a\xca\x3a\x0a\x82\xe8\xb9\x89\xac\x9d\x64\xde\xfd\xa6\xc2\x69\xa3\x06\x02\x34\x66\xba\x9b\xdd\xf6\x8f\x8d\x48\xe2\x06\x4d\x02\x40\x54\x57\x51\x8b\x38\xc9\x78\x89\x8e\x4a\xc6\x93\x56\xa5\x23\xe6\x6d\xdf\x47\xc2\x3c\xb0\x26\x17\x78\x9c\xe0\xd0\x53\xf8\x3c\x64\x38\xd3\xad\xb0\x7b\x2f\xe2\x17\xe0\xc0\xd9\x20\x64\xb3\x6d\xd2\xe5\x38\x5d\xda\x15\x00\x92\x6b\x11\x35\x46\x2f\x20\xfc\x3a\x97\x63\xfa\xe5\x77\x46\x0d\x92\x09\x92\x1f\x3b\x66\x8c\xec\x0c\x2c\x1d\xbd\xa2\x13\xe7\x9d\x61\x5c\x8e\x51\xe1\x4e\xd1\xb9\x7b\xca\x4b\xf2\xf5\x4c\xac\x33\xfa\xa8\x40\x6e\xc9\x37\xe9\xeb\xcf\x70\xdd\x4e\x63\xdb\x9d\x26\x21\x82\x51\xa0\xfa\xa9\x24\xa3\xbe\x89\x08\x23\xab\xf3\x62\x7c\xa6\x59\xc4\x5d\xbb\x6a\xd6\xf4\x42\x59\xf5\xd8\x09\x76\x90\x23\xe0\xcb\xb6\x3f\x28\x1d\x49\x43\x47\x33\xd8\xe2\xea\x22\xcd\xd0\xc1\x70\x41\xbc\x34\x9d\x0e\x54\x75\x95\x58\x3b\x6f\x4a\x06\xea\xb3\xf0\xe7\xdc\xf0\xf9\x87\x52\x7e\x8d\x41\x69\xfa\x3f\x26\xe0\x2a\xf1\x5c\xeb\x67\xb9\xce\x47\xf9\xf2\x3f\xd4\x85\x93\x41\x62\x61\x6f\xb3\x9f\xe5\x76\x6a\x8a\x6d\xd6\x09\x49\x79\x0d\xeb\xc6\x89\x62\x8e\xa9\x93\xa4\x1d\xab\x33\xb0\x2e\x0c\x87\xfa\xf7\x34\x6e\x02\x3a\xf4\x77\xea\x62\x4d\x6f\x98\xe7\xca\x85\xf5\xa7\x9b\x77\x1d\xbf\xc8\x6e\x3a\xc3\x74\x86\x26\x52\xce\x47\xa4\x75\xa6\xdb\x0f\x0b\xf7\x0a\x85\xd3\x4f\xf0\x23\xc0\x26\x98\x74\xcc\xd8\xb7\xaf\xd9\xb5\xa2\x8f\xe1\x89\xef\x37\x22\x52\x03\x7e\x7f\x34\xa6\xc3\x4e\xf8\x9b\x49\x6d\x22\xb1\x4b\xb5\x38\x23\x12\x69\x38\x3e\x0a\xa4\xbf\x97\xa8\x23\xae\x6c\x52\xdc\x92\x40\x2d\xf5\xd2\x50\x59\xde\x37\xca\x24\x74\xd3\xb7\x63\xe3\xc9\x55\x6e\xa5\xff\xf6\x0b\xbb\x1b\x5e\x14\xf4\x65\x59\x32\xce\xcb\x93\x2c\xe5\xce\xb2\xcb\xd6\x25\x92\x62\xd0\xc1\x2e\x9d\x58\x95\x3a\xc9\x89\xee\x93\x75\xc5\x45\x9a\x55\xf8\x94\x14\x1e\xce\xe9\x55\x39\xd9\xd2\x87\xc3\xcc\xa7\x2d\x0a\x69\xf3\x80\xe7\x72\x8f\x74\xb8\x2f\x8f\x68\x2d\xe3\x66\xe1\x52\x3e\x66\x5e\xcf\xa9\x09\x62\xc1\x53\x4f\x51\x75\xd1\x08\xd9\xd1\x19\xa2\x7a\x9e\x81\x13\xf0\xb6\xb3\xe2\x95\x46\x98\xd9\x39\xc1\x93\x94\x27\x6a\xb6\xfb\x7c\x73\x30\xcc\x3b\x3d\x53\x00\x57\x66\x07\x69\x37\x33\xfd\x33\xe3\x64\x97\x85\xbd\x07\x5d\xf1\x8b\x47\x86\xc2\xe9\x1a\xcd\x64\x5f\xab\x75\x68\x49\xe2\x65\xbb\xb3\xba\x9b\x38\xb0\x77\x08\x7c\xa2\xb3\xe9\x6c\x49\x85\x47\x41\x16\x85\xae\x7c\xbc\x40\x62\x27\x17\xeb\x0c\xaa\x8a\x52\x68\x09\xcf\x39\x41\x4b\xdd\x84\xfa\x66\x22\x5e\xcc\x1e\x6a\xf6\xe3\x90\x5f\x20\xf9\x06\x89\x15\x15\x36\x0e\x10\x70\xee\x26\x45\x73\xe5\x37\xb9\x25\xae\xaa\x7c\xf8\x42\x27\xd1\xf7\x38\xf3\xeb\xa1\xae\x34\xdd\x08\x1a\xf9\xd1\x98\x60\x7e\x75\xd9\x08\x17\x27\xe4\x11\xeb\xeb\xc8\x51\x6e\xd3\xb8\x63\x72\xb3\x34\x34\x53\x3c\xbe\x3d\x0a\x67\xe9\x07\x78\xd6\x4e\xba\x2a\x48\xd6\x74\x6d\xdf\xa4\xdd\x87\x02\x27\x4e\xc7\xd0\xbc\x02\x41\xe8\xb7\x1e\x95\x68\x8b\x70\x86\xb9\x5d\x2c\x1d\xe4\xe7\x28\x04\xde\xc5\x8f\x04\x92\x72\x82\x55\x50\x75\x4c\x1d\xa7\xef\xcd\x51\x80\x52\x3e\x26\xd2\xc7\x1b\xd8\x83\x2e\x55\x0c\xb9\x64\x9c\xbe\x34\xac\x12\x96\xa9\x90\xa6\xbf\x87\x0b\xc5\xad\x80\xe0\x6d\xf0\x55\xf0\xc9\x58\xd6\xeb\xdb\x7c\x86\x32\xae\xe3\xa3\x6d\x4e\x8c\xf3\x21\x76\x06\x5d\xde\xf3\x63\x0a\xe4\x9b\x13\x3a\xa0\x0b\x7b\x9b\xdd\xb8\x30\x83\x41\x16\xa7\xa5\xd3\xba\x46\x59\x0d\x05\x39\x87\x46\x11\x9f\x78\xc3\x73\x19\x92\xa7\xb2\xdc\x9a\xa4\xc1\xec\x4c\xf5\x07\xd2\x37\x13\x53\x53\xfb\x66\x9b\xc3\x45\x38\xdc\x2b\x38\x3b\x22\x3b\x83\x8f\x88\x5b\x9c\x67\x65\xaf\x10\x22\x4e\x83\x90\xe6\x53\x1a\x9f\xf4\x1d\x89\x16\x15\x65\x9e\xa5\x4b\x0f\xc9\x85\xba\xee\xb3\x04\x78\xf5\xbe\x47\x52\x80\x48\xaa\xdc\x6c\xa0\x31\xdf\xe7\x39\x6a\xda\x19\x7a\xaa\xba\xf6\x6e\xf5\xa4\x81\x3e\xfc\xff\x7c\xbd\x79\x8c\x24\x67\x76\x1f\xd8\x9d\x59\xd5\xdd\x64\xb3\x49\x36\x39\x1c\x8d\xa4\x59\x3b\x05\xcb\xa6\x05\xd0\x63\xec\x5a\x0b\xc3\x03\xec\x46\xba\xab\x38\x9c\x2e\x68\x8a\xb5\xd5\x3d\xe4\xec\xac\x81\xe5\x97\x99\x5f\x56\xc6\x54\x64\x44\x4e\x1c\x55\x5d\x84\xff\x30\x16\x82\x20\x18\x5a\xff\x61\xec\x01\x2f\xb0\xbb\x5a\x7b\x0f\x59\x2b\xad\x4e\x5b\xb2\x64\x4d\xa6\x34\x87\x34\x1a\xcd\x0c\x87\xe4\xf0\x3e\xfa\xbe\xef\xfb\xac\x5e\xc4\xfb\xbd\xf7\x7d\x2f\x2b\x82\x02\x04\x4d\x04\xbb\x32\x33\xe2\x3b\xde\xf7\x8e\xdf\xfb\xfd\xee\x21\x31\x83\xb4\xc2\x9b\x1a\x33\xcb\x04\x5d\xb2\x6c\xca\x19\xe2\xdf\xa8\xf3\x5c\x07\x49\x84\x9d\xec\x30\x65\x5a\x36\xf8\x93\xe4\x45\xed\xd7\x49\xb1\xac\xe1\xa1\x08\x0c\x75\xe4\x1b\x95\x04\x88\xed\x3a\x9a\x79\x5d\x2c\xef\x20\x47\x6f\xeb\xd8\xea\xec\x58\x55\x1c\xae\x29\x92\x9e\xed\x13\xf2\x0c\x15\xb2\x41\x6a\x34\x4d\x0a\xc6\x85\x06\x52\x43\xaa\x55\x32\xe5\x77\xc6\x8a\x73\xfd\x1b\x81\x8a\x53\x7f\x07\x63\xcb\xfd\x18\x1a\x42\x8c\x8a\x36\x8e\x9f\x63\x18\x5b\xc4\xc2\x77\x15\x4a\xa3\x9f\x86\x86\xf9\xa7\x15\x93\xc4\x57\x9d\xe4\xbd\x2f\x40\xc6\x26\x4d\x93\xf5\x68\x63\x46\xe5\x21\xd5\x7c\x5f\x52\x0c\x91\x33\x6d\xd5\x81\x32\x33\x79\x46\xc1\xd9\xac\x59\xcd\x07\x29\x35\xec\x29\x68\xd3\x5d\x9d\x78\xb8\x1b\x6c\xc5\x92\x53\x4c\x93\x9a\x38\x33\x79\x64\x62\x6a\xbb\x72\x64\x35\xd7\x54\x14\x71\xad\xa6\x76\x35\xdf\x7a\x75\x60\x92\x86\xee\xb7\x9e\xc2\x97\xd5\xd5\x18\xbb\x66\x14\xe6\x2c\x5f\x89\x63\x66\x3b\x52\xf9\x7c\xd3\xf6\x0b\x23\xcb\x4d\xba\x53\x71\xc9\x5d\x53\x9d\xc6\xf0\xd7\xa5\x65\x55\x91\xb9\x9d\x03\x4a\x12\xc6\xe9\x75\xda\x0f\xf0\xc9\xde\x23\x47\x9c\xff\xbb\xd2\x16\xee\x26\x71\x66\xe3\x7c\x46\xd1\x1d\xff\x40\x71\xa0\xbc\x1e\x34\x34\xef\xa8\x27\x48\xfe\x81\x02\x84\x0c\x6c\xdc\x23\x4e\x4c\xa4\xa8\x04\x39\x5a\x7e\x0b\x6b\x1c\x50\x59\x5f\x0a\x87\x4f\xbb\xae\xda\x3c\x4d\x46\x49\x14\xe6\x26\x56\x80\xa0\x9d\x4a\x89\xaf\x39\x29\x5d\x23\xa1\xc5\x56\x38\xa5\x1f\xbb\xe3\xc8\x31\x3d\xcc\x78\x78\xf6\x31\x4d\x12\xcc\xf9\x56\x64\x52\x6f\xc3\xc2\xc0\x3d\xfb\xd7\x95\xe4\x0b\xf5\xdf\x85\xaf\xbe\xca\x9e\x3b\xbc\x6d\x80\xfd\xf8\x3a\x78\xca\xb5\x78\x97\xef\x9c\x1b\x67\x91\xb1\x4f\xe0\x7e\x60\x8d\xdf\xc4\x2f\x23\xae\xf8\x8f\x1a\x49\x6b\x73\x96\x19\xf5\x2a\x68\x67\x03\x3f\x04\x67\x55\xe9\x21\x8c\x49\xc3\x4f\x52\x8a\xb0\xd9\xaf\xab\x82\xeb\xeb\x95\x48\x6c\x6e\xae\xfc\x5f\xcf\x50\x87\xea\x17\xb3\x9d\xf3\x4d\xf0\x48\xd8\x1a\xa5\xb6\xff\x9f\xb6\xbe\xf0\x19\xda\xd9\xd2\x69\x5a\xce\x14\xba\x34\xf7\xb6\x9b\x07\xfe\xeb\x2f\xb9\x03\x5e\x29\x6c\x5c\x25\x87\x17\x27\xf2\x43\xe4\xbc\x60\xbd\x36\xc7\x53\xfa\x72\xe5\x92\x93\xb6\xc5\xc6\x97\xe6\x7d\x62\xb8\xb4\x64\xc8\xff\xf1\x18\x21\x31\xf4\x1e\xbd\x16\xbe\x8a\x38\x35\x58\x20\xec\x4f\x3e\x35\xf1\x15\x56\x90\x4e\xd1\xd7\xfe\xca\xde\x89\xef\x04\xbd\x4b\x94\x6d\x92\x15\xc6\x09\x04\xe6\xc3\xcf\xb4\x15\xf3\xe2\x95\x40\xc9\x28\x6e\x8e\xb7\xff\xac\x13\x9a\x2a\x97\x1a\x66\xf9\x0e\x6d\x1c\x21\xb4\xa6\xb5\x44\x88\x9a\xe7\xfe\x5e\xdb\xa7\x50\xd6\x08\x56\x5f\xd8\x35\x74\xe1\x70\x9b\x37\xcd\xa2\xb4\x7c\x7b\x26\x9a\xa1\x49\x57\x77\xd1\x9b\x4a\x1c\xab\x4e\xba\x3f\xc1\x80\x4c\x29\x1c\x3b\x01\x1f\xb7\xe7\xdf\x86\x6d\x16\x7f\x14\x2f\xa8\xd9\x81\xa5\x51\xab\x2e\xa3\xd8\x35\xd2\x1a\x09\x27\x94\xbb\xd8\xf8\xc6\xe7\x06\x52\xad\xa6\x87\xb1\x7c\x6b\xac\x1a\xde\xaa\xa8\xe0\x85\x85\xd6\xa0\x28\xc3\x26\x0f\xaf\x38\x4e\x46\x83\xaf\x95\x8a\xd8\x28\x4d\x86\x61\x4c\x3d\x20\x1e\xb2\xf4\xb1\x62\x82\xfb\x58\xed\x11\x16\xc8\x05\xc6\xc2\xe9\x32\x97\xe3\x84\xd1\xbd\x8a\x71\xe2\x7f\xc1\xe9\xc4\xff\x52\xd9\x10\x14\x90\xd3\x36\xc2\x8e\x83\x95\xc0\xb9\xc2\xd7\x53\x18\xe4\x43\x26\xdb\x89\x44\x22\x27\xd5\xd9\xa1\xd1\xc8\x13\x21\xe4\x53\xb1\x24\x58\xbd\x54\xab\xe4\x01\xcd\x0f\xb6\xe4\x80\x18\x55\xd5\x8b\x81\xa5\x36\x82\xe5\x7d\x53\x2e\x26\x5f\x8f\x7f\x62\x2b\x97\xe0\xd2\x01\xfa\x7f\xb4\xee\x84\x9d\x64\x6a\x71\x78\xa7\x74\x94\xc4\xa1\xed\x29\x47\xe4\x7d\xda\x95\x7c\x5d\xc7\x12\x6b\xba\x69\x38\x4c\xe2\x8d\x4f\xa4\x6d\xab\x21\xb6\x0f\x53\x03\x8a\x17\x00\xcf\x7e\x05\xef\x2b\x72\x6c\x18\x3c\xa4\x3b\xb7\xb5\x95\xfa\xd1\xbb\x63\x0f\xf9\x3b\xad\xb4\x3d\xe3\x24\xb7\x9d\x24\x59\xa5\x47\x90\x56\xa1\x29\xfa\x0a\x9f\x08\x58\x29\xc2\x88\xd3\x26\x08\x90\x20\x1a\xef\x06\xde\x4b\x20\x9c\x53\x7c\xff\x51\x18\x93\x5c\x88\x54\xfe\xce\xe0\xdc\x14\x52\x6b\xdf\x05\x7d\x9a\xb0\x19\xc2\x2f\x89\x37\x41\xb3\xfd\x4d\xb8\x47\x8e\x97\x64\x59\x98\x8c\xde\xa4\x07\x80\x79\x6b\xe0\x74\xe7\x4f\xe0\x69\x04\x6a\xaa\xea\xea\xc0\x7c\x22\xba\x7f\x6d\xfc\x98\xcf\x48\x3c\x9b\x7f\x46\x25\x04\x1e\x43\xd9\x05\x49\xfd\x27\xda\x1e\x96\xb7\x6b\xa2\xd2\x8d\x42\xed\x27\x6d\x35\xba\xfd\x18\xaf\x29\x0d\x51\x0d\xc7\x10\x74\x1e\x1b\x08\x7e\x34\xe7\x52\x10\x49\x7c\x96\xea\xa3\x1c\x95\x05\x8d\x83\x2f\x7a\x34\x50\xf9\x66\x02\x54\x68\x2c\xef\xdb\x6c\xea\xfa\xe7\xff\x35\xf6\xe1\xd3\xdf\xa2\x82\x0f\xcc\x37\x8a\x77\x38\x80\x77\x22\x37\x8b\xfc\xc8\x71\x0a\xf9\x1c\x11\xf8\x92\x8b\xff\x4e\x22\x07\x84\x04\xc5\xbf\x21\x06\x4c\x91\x34\x2b\xe7\x09\x3f\xb1\x6d\x52\xa3\x46\x3c\x4a\x6d\xe6\xf4\x3a\xe1\x00\x9c\x0c\x94\x37\x70\x12\x0d\x82\x42\xd0\xa9\x50\x80\x13\x94\xa5\x84\xb9\x12\xc6\x80\x29\x9f\x69\xd8\x60\x0a\x7e\x5d\xf5\x3f\xa0\x49\x0e\x51\xef\x15\x5a\x41\x4c\xeb\x4a\x09\x64\x56\x40\xa4\x77\x14\xc2\x38\x7a\x12\x60\xcf\xef\x61\x34\xa5\x08\x45\x15\x2e\x81\x5c\xd0\xfc\x49\x81\x76\xfb\xcf\x6e\x4e\x02\xaa\xbf\x3a\xb1\x90\xe7\xbf\x52\xfe\x27\x8f\x97\x7d\xa2\xad\xd4\x34\x6f\x22\xbe\xc2\xa3\xbf\x46\x99\x26\xe6\xc1\xc7\x09\xe4\x4a\xba\xe5\x78\x33\x28\x37\xf0\xb0\x86\x3b\x74\xa8\x3a\x36\xac\x72\x8d\x00\x16\xc2\xe0\x1d\x07\xf8\xfd\xf2\x17\xd9\xa6\x34\x50\x6b\x95\x7a\x7c\xe9\x4e\x48\x56\x1d\xcb\x92\x25\x6e\x69\xc5\x03\x9d\xf1\xef\x51\x36\xc6\x9a\xf8\x5d\x97\x7e\x36\x43\x33\xe0\xe4\x2f\x86\x82\x0f\x2d\xbe\x19\x6f\x69\x6e\x5e\x58\x68\x2d\xef\x3b\x00\x8f\x19\x19\x85\x6b\x8a\x4c\xe5\x2c\x76\x2b\x22\x8a\x6b\xb4\x06\xb9\xe7\x42\x55\x01\xa0\x4b\xe5\x70\x68\xde\x95\xf9\x56\x5d\x96\x27\x4a\xd6\x6d\x0a\xe8\x9a\xe3\xbf\x79\x69\x9f\x74\x66\x62\x46\x10\x55\xfd\xd6\x58\x35\x8c\xde\xab\x1c\xd0\xcb\xfb\x96\x5b\xd9\xc8\x32\xe7\x8e\xe3\xb8\x70\xe5\xbb\xd3\x5b\xfb\xbc\xe6\xe6\x5b\x8b\x8b\x8f\x35\xe6\xe6\x36\x21\x41\x38\xb5\xa0\x18\x41\x85\x9f\x84\x41\x3b\x81\xdd\x3d\xc5\xab\xc1\x79\x02\x9a\x6b\xc9\x7c\xab\xda\xef\xbb\x81\xa7\x8e\x7e\x5f\x51\x91\x37\x10\x80\xf1\x3f\x68\x72\xc2\xfb\x2e\x0f\x69\x87\x9d\xa4\xc7\xdd\x13\xf8\x99\x46\xdb\xab\x3e\x5d\x52\x68\x39\x24\x25\x91\xb4\x7d\x4d\x95\x5b\xd3\x38\x24\x7f\xc2\x41\xaa\x16\x9d\x88\xf4\x0f\x2a\x67\xd6\xd2\x8b\x07\x5a\x59\x68\x87\xd6\xf5\xa7\xc0\x24\xb0\x54\x08\xdf\x38\xb4\x50\x11\x87\xfd\x24\x1d\x86\x39\x52\xe6\xc8\x3c\x5c\xa1\x71\x10\x8b\xe9\x8d\xf1\x64\x5c\x95\xb1\x5d\x2a\x7d\xf2\x3c\x2d\x20\xad\xa7\xb1\xb8\xbf\xac\xf3\xbd\xbf\xec\x7a\x67\xec\xa1\x6e\x91\x59\x92\xec\xe1\x1e\x1b\x85\x08\xbf\x36\xf6\x80\x1d\x24\xce\x45\x52\x6f\x6b\x92\xf4\x39\xfa\xdd\x30\x2f\x5c\x3e\x5b\x44\x5a\x68\xde\x45\xbe\x45\xe9\x0f\x24\xfd\xbe\xb5\xb3\x5a\x65\x87\x16\x3b\x9c\x2d\x68\x6e\xc0\x77\xbe\x1d\xa8\x48\x05\x9d\xb0\x0c\x28\xaf\x6b\x20\xf2\x42\xc3\x12\xa7\x7d\x2f\xd0\x89\x61\xfa\x2e\x38\xd8\x47\x5d\x9c\xe6\x82\xc4\xc6\x54\x29\x5c\x11\x7d\x69\x3d\x9e\x41\x92\x91\xb2\xbe\x70\x0c\x60\x60\x85\x70\xa0\x66\x33\xc6\xd6\x8a\x0a\xac\x23\xc3\x2d\xdf\x5b\x29\xe1\x4f\xc3\xeb\x6d\x6f\x46\x41\x07\xe0\xe1\x38\xbf\x70\x59\xf1\x81\x7a\x6e\xd0\x5a\x71\xab\x70\x18\xc2\xb1\x96\x9c\x8d\x4f\x4e\xbd\xad\x7a\x1f\x4c\xbc\x62\xa3\x64\x46\x75\x84\xb0\xdc\x86\x74\xef\x97\xbf\x29\x65\x70\x55\xb7\x3a\xa7\xdc\xa2\x5e\x32\xb4\x59\x1e\x76\x77\x2b\xac\x1c\x38\x91\x71\xa0\xff\x91\x0a\x55\x7e\xe3\x03\x9c\x1b\xc2\xa1\xe6\xf3\x45\x27\x60\xc6\xe1\x2a\xfe\x90\xe6\x1a\xc9\x9b\x8f\x02\x7f\xb0\x9d\x1d\x2b\x1a\x20\x6e\x3a\x45\xbe\x87\xe5\xe3\x84\x72\x51\x35\x14\x26\x2c\x01\x51\x3e\x03\xba\x84\xa4\x7c\xc2\x77\x8a\xdf\xbc\x17\xf6\xfb\x36\xb5\x71\xce\x59\x1f\x69\xab\xa3\x5f\xe5\x1b\x1a\x7a\x85\xa8\xd7\x6d\xb5\xae\xdd\xd8\xe6\xb1\xc1\xb4\xb3\x23\x03\xb3\x2d\x5e\x8d\xa7\xb4\x48\x6d\x5e\xa4\x71\xd6\x2c\xdf\x11\x1a\x09\xdf\x1f\x2b\x21\x3c\xf8\x7c\x58\x60\x57\xeb\xd4\xb5\x57\xd2\x70\x24\x58\x09\x39\x8c\xe9\x77\xf9\xc6\x35\x72\x75\xcd\x70\x64\x80\x17\xd0\x1d\xec\xb7\x14\x4e\x44\x77\xd5\x0e\xcd\x4a\x6c\xf3\xb0\xdb\x50\x65\xea\x29\x3e\xe1\x3a\xb1\xa1\xd6\x20\xcc\xbb\x03\x3c\x8c\x74\x7e\xf8\x9d\x7d\x49\x21\xba\xd7\x4c\x8a\x34\x24\x96\xe4\xb9\xc0\xf7\x27\x69\x42\xe4\x43\x61\x77\x46\xd1\xc4\x02\xd1\xcc\x12\x81\x81\xc7\xb1\x3c\x08\x74\xa7\x59\x4d\xde\x21\xb5\x71\x12\x3a\x25\x31\x0c\x27\xc3\x03\xf8\xa6\x6e\x13\x45\xe1\xaa\x0c\x2d\x22\xd2\x3f\xa4\x5d\xc4\xd7\x15\x4a\x17\xc9\xb2\xf6\x4d\x3e\xb0\x69\x53\x87\xfd\x5e\xe6\xe4\x97\x34\x57\xcd\xa5\xc0\xef\xa2\xa4\xc8\xfb\x51\xb2\x0e\x8a\x1e\x0c\xd8\x15\x65\x16\xab\xf8\x8f\xfd\x8b\xa4\xf8\xed\xe6\x13\xa9\x77\xd0\xff\xf0\xb5\x32\x2f\xa9\xcd\x4d\x18\x91\xce\x77\xe9\x41\x62\xe9\x1f\x85\x47\xc7\x37\x34\xb8\xf0\xfb\xee\x68\x3e\xa8\x3b\xea\x29\xbb\x49\xb2\x5a\x86\x40\x4d\xb8\x9e\xd8\x6e\xdf\x82\x9b\x26\xf8\xd7\x86\x53\x14\xad\x72\x69\x13\x30\xc1\x44\xa1\x8d\x75\x2a\x0b\xc0\x35\xbe\x0e\x3c\xb5\xf7\x5a\x68\xd7\xe5\x50\x71\xf2\x4f\x0e\x1e\x7f\xae\x86\xa7\xef\x40\xab\x9b\x44\x91\xaa\xad\x22\xaa\xb9\x1a\xa8\x10\xe7\x6a\x45\x63\xf0\xf3\x44\xa7\xd0\xf4\xd9\x15\xd0\xa5\x63\xc3\x3f\x54\x08\xf7\x2a\xcd\xca\x73\xad\x51\xd2\x5d\xb5\x28\x41\xba\x63\x74\x61\xc1\xb5\xad\x56\xf1\x08\x2f\xb4\x36\x4c\xec\xda\x63\x91\x0d\xbc\x16\x28\x98\xfa\x35\xe7\xb2\x74\x6d\x9c\x15\xbc\x04\x5d\x9c\xbc\xe8\xe3\x64\x0f\x1e\x0a\x87\xae\xb1\xc4\xc9\xdd\x2e\xfb\x83\x5d\x71\x79\x17\xa9\x8d\xd8\x0b\x42\x00\x7a\x05\x21\x9f\x3e\x71\xf8\x1f\x60\xf7\xe4\xf8\x99\x96\x61\x01\xa4\x53\x28\x09\x1b\x8e\x90\x8d\x4b\xaa\x92\x8e\xf5\x16\x65\xcd\xe6\x36\x35\xa5\xa9\x73\x5d\xaa\x28\xd6\x4e\x61\x82\xe0\xb2\x5e\xaf\x18\x97\x57\x5e\x69\x45\xe1\x5a\xd8\x6b\x2a\xd4\x05\x27\xff\x1c\xde\xd6\x31\x6c\xdf\xa8\x54\x72\x51\xac\xea\x46\xd0\x50\x2f\xdf\x0a\xc7\x11\x77\xf4\xa9\xb0\x5c\x52\x66\x7b\xda\x7e\xa5\x6d\x57\x6d\x05\xbd\xd4\x96\xa7\x74\x73\x4a\x72\x6b\xbf\x80\x0e\x2f\x50\x24\x05\x4f\x6b\x33\x98\xa6\xb0\x88\x1e\xf1\x5c\xd6\x9c\x35\x56\xcc\x77\x2f\x70\x2c\xc6\x2d\x5b\x02\x49\xa3\x27\xe2\x9b\xc0\x83\x68\x21\x4f\x8b\x08\xe6\x06\x0c\xbe\x23\xb8\x74\x6e\xec\x91\x4a\x4e\xa4\xb4\x19\x91\x81\x0b\x23\x26\xc8\x57\x31\xaa\x39\x94\x97\xe7\x0f\xb6\x3a\x05\x74\x5f\xa5\x71\x92\x06\x4c\xf2\x03\xcf\x4c\x47\x00\x07\x5f\xe4\x0c\x90\x07\x47\x90\x65\x17\xa0\x84\xa3\x26\x04\x25\x40\x46\xce\xa7\x43\x20\x55\xc4\xa8\x65\x95\xd0\xfb\x31\x2d\x6c\xdb\x9f\x9d\xd6\x64\xf9\xd0\xc4\x6c\xd5\x51\x69\x7a\x1b\x03\xcb\x37\x6a\xdd\xf7\x29\x2e\xa2\x6d\x8a\xa3\xf1\x07\x1a\x87\xf4\x83\x4f\xac\x99\x75\x6c\x1a\x9b\xb4\xa7\x34\x41\x18\x3e\xc1\x37\x8a\x93\xa5\x6b\xa3\xa8\x88\x92\xb0\x07\x10\x1f\xf0\xfa\xa7\x15\x76\x9f\x08\xfb\x84\xeb\xdf\xcc\xa8\xf3\x07\xed\xc6\x38\xe5\x7e\x14\x4c\xe1\x88\xf7\x2f\x3a\x66\x95\xc7\x15\x6f\x50\x64\x86\xb0\xfb\x42\x5b\x5b\x7e\x88\xaf\x2b\x47\xd3\xfc\xc1\x96\xc9\xb2\xa4\x1b\x7a\x10\x30\x76\xca\xf7\x02\xbf\x6b\xbe\x57\x69\x3f\x2b\x43\x98\xa1\xb5\xb9\x90\x48\xba\xdc\xd3\xc2\x82\x5c\xab\xc3\x3a\x5a\x33\x4d\x9f\x1f\x6c\xb4\x55\x54\xcc\x9b\x1b\x11\xd5\xfd\x1a\x7e\xc1\xaf\xb6\x06\x26\xee\xb9\x14\xaf\x68\x6e\xd3\x57\x48\x3f\xf4\x33\x5e\x32\x3f\xec\xd8\x34\x37\x69\x68\xe2\x8c\xd6\x1a\x22\x84\xbb\x63\x1f\x35\xde\xad\xf3\xc6\x07\x26\xcd\x06\xb3\xbe\x27\x79\x06\x1d\x71\xa8\xc2\x71\xee\x1b\xf5\xdf\xa3\x2a\xd5\xfe\xdd\xb1\xd2\xec\xbd\xa4\x5e\xf8\x55\x0b\x9c\xb4\xb0\x0f\xd3\x3b\xf2\x4d\x1d\xcf\xf8\xc0\x44\x38\x27\x44\x74\x0f\x87\xa8\xc8\xf1\xd5\xa0\xbc\x57\xc8\x95\x70\x47\xbc\x14\x99\x7c\x97\xfc\x8f\xb7\xa6\x1b\xca\xe3\x65\x6e\x7e\x46\x45\xc3\xe7\x02\x5f\xb1\xf8\x2f\xb8\xda\x22\x6b\xd7\x1f\x54\xe7\xea\xd6\x4c\x18\xf7\xec\xa8\x0c\x90\x24\x37\x2e\x6c\x87\xfe\x8c\xa8\x12\x81\xbd\xb4\xaf\x65\x0f\xd9\xb4\x1b\x66\xec\x3c\x6d\x12\x52\x62\xf3\x72\x65\xda\x17\x16\x5a\x51\x92\x8c\x06\x49\x04\x74\x4d\x5d\xc5\xa9\x9a\x3e\x5b\x6a\x75\x07\x49\x2a\x8e\x19\xfa\x33\x38\xeb\xc7\x37\xea\xd0\x19\x51\xf9\x34\x5e\x61\x1b\xc1\x33\x8d\xbf\x96\x69\xdf\x3a\x53\xe5\x6a\x7c\x35\x1c\x35\x4a\x07\xae\xce\x8b\xdd\xda\xea\x42\x82\xfd\x71\x9e\x9a\xae\x1d\xe5\xe1\x9a\x85\x4e\x06\x4b\xfc\xd0\xa9\x84\x12\xc8\x5f\x05\x1e\xb3\xf8\xfb\xaa\xd4\xde\x4f\xd2\x1e\x68\xdb\xc5\x03\xf2\x0d\xdf\xdf\x09\x7c\xee\x65\x93\xfa\xc4\xf0\xf9\x0f\x60\x2d\x11\x31\xa0\xf7\xd2\x55\x01\xf6\x4b\x89\xe4\x36\x10\x34\xf0\x8b\x8f\x50\x7e\x10\x67\xb9\xa7\x94\xc8\x4d\x14\x39\x72\x2a\x87\x6e\xf2\x48\x27\x97\xf5\xca\xc2\x95\x41\xde\xd0\x78\x9f\x86\xe3\x7f\xbc\x03\x9c\x15\xfb\x21\x66\x25\x8c\x0d\x8d\x83\xb6\xfc\xde\x3d\xba\xf3\xd7\x82\xc6\xcb\xf9\x5d\x49\x4d\x9c\x73\xd4\x2c\x31\x01\x4d\xb6\x04\x0b\x8f\x29\x1e\x29\xdb\x54\xfd\x7f\x0f\x03\xcf\x05\x71\x71\xac\xe5\x5d\xe5\x85\xcd\xba\x49\x7b\x92\x25\x60\x6a\x73\x45\x17\xc6\x75\x79\x18\xaa\xc3\x75\x1d\xbf\xbd\x24\xee\x18\x90\x86\xc2\xa8\x1f\xd7\x0d\xd1\xc7\x15\x1b\x7f\xb2\x1e\xef\xf6\x44\x29\xef\x4c\xab\x8c\x96\x3f\x89\x4c\x0b\x8a\xe6\x08\x6a\x1e\x87\xd1\x74\x22\x76\xe5\x1c\x8b\xe4\xe0\x54\xaa\x81\xcc\x81\x60\x8f\xe8\x5d\xe0\x7d\x7d\x77\x3c\x95\x52\xf3\xfa\x13\xbb\x26\x1e\xd3\x1b\x99\x8d\xa4\xdf\xcf\x1a\x0a\xf9\x79\x4a\xf1\x8d\x9f\xaa\xa4\xb2\xe6\xe6\x5a\xb9\x39\x34\x32\x1b\x36\x6d\x2a\x78\x2e\x66\x15\x21\xd8\x0d\xa5\xba\xf1\x8e\x22\xd2\xeb\x98\x6c\xd5\xe6\x1d\x13\x45\xd8\x16\xcc\x1e\x36\x56\xfa\x58\xbf\xad\x01\xc5\x67\x3f\xf1\x20\x8e\x92\xae\x17\x3a\x61\xa0\x72\xa0\xfa\xc1\xcf\x29\xc6\xb2\xa1\xed\xf5\xa4\xf1\x4e\x34\x5d\xbe\x1b\xa8\x12\xcf\x77\x55\x52\xa7\x53\x64\x83\x3d\xaa\xdb\x6e\x16\xa7\x02\x9c\xb8\xf3\xaa\x82\xf2\xad\xc0\xa7\xcf\xaf\x29\xed\xae\x6b\x98\x0e\x0c\x04\x0e\x62\x17\xd7\xcc\xcd\x39\x5e\x66\xd5\x41\xfb\xa3\xf1\x54\xf9\xb0\x7c\x7d\xd8\x0b\xae\x54\xbb\x51\xf2\x2e\xf1\x8e\x89\xf6\x26\xcd\x7a\xb6\x8b\x9e\x52\x34\x9e\xbd\x93\xf1\xad\xb1\x82\xbd\x5f\xdd\xc2\x56\xe2\x2d\x10\x63\xf1\xb0\x3a\x0e\xa3\x6f\x98\x4b\xce\xd4\x2c\x87\x1c\xf8\x47\xf5\xd0\xf2\x30\x2e\xc3\x88\x1e\x4c\xb0\xe2\x7d\x73\xae\x4a\x1d\x98\x50\x84\x9a\xca\xcf\x68\x5d\x61\x21\xad\xa8\xe6\x9f\xcb\xff\x5d\xb5\xac\xcd\xa1\xea\x46\x02\xdf\x64\x6d\x7f\x01\x8c\xea\x06\x84\x74\x14\x15\x99\xcd\x90\x07\x17\x73\xe8\xf1\xbf\x2c\xe9\xca\xff\x30\xf6\x3a\xc4\x37\x94\x38\x78\x2f\xec\x1a\x10\xdf\x38\x1f\x09\xc6\x91\xaf\x55\x78\x9d\x99\x98\xc0\x10\xd9\xac\xcf\x7b\xdd\x9d\xa6\x2f\x2a\x7f\x4f\xd5\x38\x96\xdc\x08\xab\x4e\xb5\xa3\x81\xa7\x5c\x83\x9e\x2b\x53\x7a\xc9\x51\xee\xbf\xf1\x9c\xaa\x60\xd3\xd6\x28\x7f\x9d\x92\x56\x42\xac\xdf\x70\xe2\x1a\xe7\xc9\x10\xa0\xc8\xf0\x06\x2c\x84\xd4\x17\x1f\x57\x99\xa8\x30\x46\xef\x3f\xca\x6d\x6f\xd2\x87\xf8\x7a\x2b\x65\xeb\xdc\x5c\xeb\xe5\xe5\x7d\x64\x05\xa5\xf1\xdd\x4f\xe5\x71\x95\xec\xcd\xba\xa9\x65\xbe\x07\x2c\xea\xe3\xca\x50\x1c\x1f\x3f\xb5\x85\x0f\x34\x64\xad\x17\x9c\xb5\xe7\x30\x50\x7c\x53\xa9\x9f\xcf\x1f\x6c\xf5\x0b\xe2\x70\x83\x29\x73\x88\x09\xe7\x84\x9e\xd1\x09\x96\x7e\x9f\x5c\xa9\xdd\xf4\x9d\x4a\x2f\xd3\xd5\x16\xb0\x71\x70\xc8\xfc\xb9\xaa\xbf\x7c\x0f\x4d\x0e\x4a\x2f\x4e\xc2\xbd\x6d\xbe\x63\xf3\xf2\xd3\x6d\x45\x69\x7c\x56\x61\xfe\xb8\xda\x8b\xe1\x7f\x6c\x42\xb9\x12\xc4\xbc\xe7\x95\x33\x69\xfb\xd9\xac\x22\xe9\x63\x54\x1a\xdc\xa0\x9b\x5c\xab\x66\xf9\x8d\xc0\xa3\xd7\xfe\xcf\xa7\xdb\x2e\x70\xf8\x9f\xf6\x4e\x3c\xa4\x31\x0f\x87\x96\x65\x4d\xb1\x1a\x8f\x2a\xce\xc9\xa3\x63\xaf\xe4\x5b\xc4\x0e\x7c\x6b\xa2\x68\x83\xd2\x56\x52\x5d\xf2\x02\x04\x57\x82\xa9\xa6\x16\xdf\xa8\x39\xb4\xbb\x3d\x6f\xee\xa3\x6d\xdf\x1b\xb4\x0b\xad\x91\x30\x5e\x13\xcd\x70\xb3\x7d\xe2\x49\x6c\xa0\xdf\x09\x5b\x75\x97\xa0\x2e\x5c\x8e\xd5\x09\x9b\xcb\x81\xda\xf3\x54\xd3\x15\xad\x41\x5a\xa2\x30\xa9\x7b\x55\x60\xd8\x8d\x4c\x38\xb4\xbd\x59\x4d\x49\x51\xfe\x25\xe6\xe6\x2e\x25\x94\x1d\xf5\x4e\xe9\x22\x01\x1b\x86\x95\x23\x7c\x16\x0a\xac\x60\xb2\x8c\xe9\x66\x60\xd7\x99\xdc\x86\x6f\x14\x6c\x8d\x14\x22\xb2\x0c\x67\x94\xc0\xf5\x54\xa5\xbc\x2a\xb0\x57\xda\x45\x44\xa6\x64\x20\x98\x7b\x30\xf0\xc0\x99\x37\x2b\x16\x78\x71\xb1\xd5\x4b\xd6\x28\x9f\xc7\x4e\x12\xcb\x16\xd1\xa7\x44\xc2\xc8\x3f\x7e\x94\xac\xc9\x52\x10\x5d\xf0\x72\x30\x24\x79\x51\xc5\x03\x1e\x68\x65\x79\xd1\x0b\xc5\x4b\x92\x80\xca\x2b\xe1\x9f\xd6\x88\x81\xf3\xaa\x85\xad\x5b\xba\x93\x3d\x20\x18\x70\x12\xf0\x81\x26\x12\x19\xaa\xeb\xfe\xf4\x58\xeb\x6d\x3f\xa4\xaf\x17\x0f\x94\x7e\xd7\x09\x66\xbb\x66\x01\xcc\xb7\x74\x85\x79\xad\x8b\x5f\x51\x80\x8d\xfb\x81\x97\x35\x3f\x89\xd9\x15\xe2\xac\x1a\x6a\x8e\x34\xcc\x11\x7b\xc0\xe3\x03\xa6\x9b\xaf\xbd\xcf\x98\x67\x45\x36\x08\x15\xae\xe5\x98\x4e\xdf\xd4\xb6\xca\xf5\xa3\x90\xe5\x55\xf1\x7e\x70\x32\x11\xca\x72\x07\x0d\x76\xc0\x9f\x55\x02\xaf\x97\xf6\x2d\xb5\xb2\xdc\xac\xac\xa8\xc8\x0f\x79\xa8\xc6\xc4\xe7\xa4\x1a\x4e\xca\x99\x8e\x55\xa6\xe6\x44\x65\x64\x47\x5b\x79\x54\x9b\x38\x31\x65\xd4\xa4\x1e\xd0\x4f\xd2\x15\x9b\x13\x01\x73\x53\x31\xd9\x5f\x52\xc3\x7d\x4d\x71\x03\xfe\x95\x13\x58\x1a\x85\xac\x91\xed\x2a\x14\x2e\x73\x01\x2c\x28\x2c\xc6\x8f\x2a\x71\xd5\x73\x2d\xb3\x66\xb9\x73\x4b\xba\x1f\xd5\x7a\x38\x5e\x43\x0b\xf5\x02\xf4\x64\x95\x19\x7b\x4f\x99\xb1\xf7\x54\xe7\x60\x19\xaa\x1e\x62\xad\x9a\x72\x70\xf1\xd4\x6f\xa2\xc2\xcc\x37\x53\x5c\x80\x79\xd8\x0f\xbb\x21\xc1\xa1\x95\x2f\x7a\x1d\x2b\x5b\xb2\x90\xf2\xce\xc3\xb8\x8b\x00\x58\x32\x71\x58\xba\x92\xa4\xf3\x27\x31\xe1\x7d\x7b\xc9\x3a\x4e\x3c\xa9\x2c\xd3\x77\x0a\xab\xd5\xd6\xc5\xb2\x7f\x91\xd8\x74\x36\x9a\xaa\xdf\xf5\x14\xe6\x4c\x4b\x51\x00\xde\x72\x4f\xf5\x2d\xa4\xb6\x9b\xa4\xbc\xd9\x00\x1c\xd9\x54\x7c\x6b\x2c\xe9\x0f\x8f\xa3\xc9\x2c\xc8\xf0\x16\xdf\x0d\x7c\x16\xec\x2c\xda\x96\x61\x81\x6f\xa3\xb9\x9e\x6f\x28\x7e\xc2\x1a\xda\x36\x51\xa8\x9a\x1b\x78\x1f\xc4\x9b\x17\x49\xf4\x82\xff\xaa\xad\x44\xef\x3f\xd2\xbc\xed\xe9\x46\x96\x9b\x68\xb6\xa1\xd8\x0f\xe9\x0b\x45\xf5\x4c\xb1\x31\x32\x53\x8c\xf4\x1d\xe1\xb9\x45\x29\xad\x06\x4c\x63\x0f\x0d\xc2\x4e\x88\xbc\x8a\x63\x07\x5e\xde\xe7\x9a\xc6\xa4\xd0\x6b\xfa\x7d\xdb\xcd\xb7\x54\x4b\xde\x21\x4b\xc8\xd7\xca\x8e\x0d\x4d\xba\xba\xca\x9d\x24\x38\x6a\xbe\xaf\xe8\x67\x38\xdb\x80\xf2\xeb\x49\x25\xe2\x6f\x22\x93\xaa\x8c\x10\x4b\x6b\x0b\xcb\x64\x15\xaa\xfd\xd5\x56\x56\x74\x07\x0d\x82\xc2\x60\x06\x61\x80\xf8\x5a\x79\x07\x9f\xfb\xf9\x9f\x27\xbf\xc8\x61\x15\xe6\xfc\x82\xaa\x01\xcb\xe5\xdc\x76\xd8\xd4\x89\x65\x15\xe2\x81\xbb\x97\xd5\x5d\x2a\xe5\x90\x97\xf6\xb5\x06\x09\x48\xa2\x25\xff\x41\xcb\x51\xe6\xa4\xb1\xb0\xb0\xb9\xa9\x29\xc8\x92\x75\x21\x85\x95\xc6\x2b\x1a\x39\x29\xbc\x3b\xc5\xd7\x30\x1b\x58\x8f\xff\x85\x43\xc4\xa1\x3d\xdf\xa8\xb3\x74\x40\xa4\x05\x1b\x33\x0a\x43\x77\x6c\xac\xb4\x7a\x8f\x05\x9e\x19\x9b\x8f\x71\xbe\xa9\xc9\xbd\x2d\xb5\xd2\x90\xa3\x41\xe1\xff\xf1\x1d\x3b\xd5\xd0\xa3\x9c\x9a\xbe\x75\xa7\x32\x1a\x57\xdf\xa1\x6d\xc3\xd7\x35\x2d\x5c\x4b\xad\x6e\x32\xda\x00\x94\x13\x0b\x96\x75\x00\xf9\x66\x8a\x59\xd4\x86\xdc\x9b\x02\x4f\x90\x75\xaf\xf9\xa6\x0e\xcd\x9a\xc2\x3b\x73\x01\xf7\x3d\x5a\xe5\xa8\x45\xee\xd6\xbc\x3b\x77\xeb\x24\xdd\x7a\x61\x36\x0c\x3d\xe8\xcc\xe9\x1c\x95\xc3\x29\x82\x1e\x3f\xf3\x09\x81\xb7\x89\xf2\x64\xc5\xe6\x03\x66\x0a\x76\x8d\x2c\xe5\x4f\xf2\x8d\x4b\xec\x47\x66\x68\x63\x17\xa5\xe3\x14\x7e\x4b\x23\x2f\xde\xaa\xe1\xbb\xfb\x5a\x52\x64\x7e\x67\x72\x9d\x54\xe9\x2a\xfc\x92\xfb\x7a\x13\xe7\xe1\xc0\xa6\x09\x82\x48\x58\x69\x88\xdd\xf0\xb5\x5a\x3f\x79\x92\x76\x07\x96\x47\x59\x0e\xde\x72\xdf\xf0\x75\x5d\x72\xc7\x86\x28\xdd\xce\x1f\x64\xf7\xe5\xae\xaa\xf6\xdf\x24\xcf\x13\x91\xcb\x6b\x75\xec\xea\x5f\x2f\x42\x9b\x97\xe7\x49\xe9\xe1\x4b\x0e\xa7\xfc\x0c\x5f\xd7\x39\x20\x91\xe9\x6d\x28\x3c\xe9\x35\x45\x3d\x7f\x4d\x71\x1e\x26\x69\x9c\xe5\x36\x8c\x9b\x3e\x57\x84\xa6\xc0\xa9\x4e\x3e\x21\x55\x99\xca\x14\x84\x43\xf2\x0c\xf0\xa1\x1b\x81\x2a\x3a\x22\x87\x07\x2e\x92\xd7\x6a\x1a\xa7\xbf\xda\x32\xdd\x34\xc9\x32\xd2\x7d\x75\xf2\x45\x1e\x24\x7f\x5a\x15\xbb\x2e\x2b\x31\x36\x08\xdc\x48\x77\x7f\x4d\x1b\x72\x27\x49\x86\xb2\x46\x1c\x2e\xd9\x9f\xbb\xc7\x5d\x09\xb8\x9f\x14\x69\x6e\x6d\xdc\xa4\x5f\x75\x2a\x30\x0a\x80\x53\x4e\xa8\x64\x64\xaa\x8e\xd4\x22\x35\x92\x84\x3d\x4f\x66\xea\xb4\x25\x5c\xa0\xa2\xb9\x85\xb2\x81\x7d\xbc\xb1\xe8\x3b\x4e\x9a\x5e\xf6\xff\x30\x4c\x0c\xce\x46\x46\xe1\x39\xb5\xfc\x72\x89\x21\x9c\xbf\x4a\x4f\x07\x60\x2d\x3b\x13\xd8\xd4\xef\xe0\x5c\xc3\xd4\x5e\x19\x6b\xa4\x15\x99\x25\x78\xd9\xf0\x5e\x1d\x69\xd1\x7e\xc9\xd6\x3c\xda\x2e\xd7\xa4\x90\xe1\x96\x6b\x12\x9b\xfd\xf6\x54\x8d\x71\x25\x1e\x35\x55\xdb\xd3\x59\x45\xf5\xf1\xa7\x34\x27\xd2\x3f\x3e\xc5\xe7\x1c\xc6\x0d\x2f\x90\x7a\x71\x3c\xd5\xdd\x5f\x11\x0f\x9e\x6f\xf5\xc2\x14\xcc\xc6\xec\x39\x23\x58\xbc\x0d\x7b\xc0\x37\x3a\x03\x9f\x26\x2b\x69\x19\x13\x79\xfa\xba\x23\x81\x67\xac\x3b\xa2\xa8\x64\xbb\x03\x6b\x57\x9b\x8a\x5f\xe4\x9b\x4a\x08\x1f\x50\x38\x89\xe6\xb6\x56\xfe\x4b\x8f\x3b\x49\xfb\x96\x28\x20\x67\xa6\x98\x8c\x1b\x8e\x6e\x0b\x38\x4a\xd1\x90\x2f\xc7\x46\x3a\x42\xa6\x44\xa1\x72\x9b\xc6\x88\x7c\xe0\xdf\x43\xe0\x86\xdb\x20\x31\x3c\x4c\x1b\xa7\x90\x43\xa6\xb7\x66\xd3\x3c\xcc\x88\x1e\x55\xe1\xde\x70\x72\x22\xa7\x70\x0a\x79\x42\xa4\xe9\x70\x1c\xe3\xc4\xc2\x71\x8c\x58\xe6\xa6\x3a\xf5\xd7\x6d\xd4\x54\x7d\xdb\x17\x55\x3f\x45\xa3\xed\xd3\x28\x37\xe1\x6a\xb3\x1f\x0c\x2c\x1e\x85\xf3\xb3\x2a\xc3\xdb\x68\x6b\x3d\x4d\xd6\x5f\x82\x0b\xf1\x86\x62\xc4\x79\xa8\x05\x8e\xaa\xe8\x85\xc5\xc5\xd6\xc8\xc6\x26\xca\x61\xb4\xb0\xce\x98\x6c\x85\x6f\x14\xf6\xaa\xf4\x6b\xb3\x1c\x40\x1f\x04\x8b\xd7\x29\x82\xe3\xeb\xca\xea\x92\x13\x27\x1b\x98\x55\x61\x40\x73\x8a\x40\x5e\x1d\xa8\x56\x13\xaf\x48\x1d\x23\xa5\x7b\x93\xf2\xa9\xf8\x46\x41\x25\x7a\x76\x18\x66\xb6\xe1\x05\x40\xff\xf1\x69\xf8\xca\x42\x6e\xec\x20\x53\x83\x24\xb2\x59\x6e\xd3\x24\x6a\xfa\xbe\xbf\x87\xb4\xfd\x50\x92\x39\x4c\x23\x87\xad\xdb\x6c\x57\xcb\x9a\xad\x81\x19\x8d\x6c\x2c\x91\xb4\xeb\xd3\x76\x52\xaa\xdc\x25\x87\xba\xed\x9d\xe0\x19\x8d\xe7\x88\x42\xce\xea\x35\x3c\x62\x02\x32\xac\x7c\xed\x9b\xa5\x5e\xdd\xd3\xf8\xf2\x17\x1d\x2f\x70\xe9\x91\x8b\xfe\x16\xad\x00\xe1\x80\x2c\x3f\x8b\xaa\x17\xb4\xdb\x90\x52\x05\xef\xd1\x94\xa7\x87\xe7\xf9\xfe\x98\x3a\xad\xf0\x2f\xa7\xc8\x32\x21\xbe\x7c\xac\xed\xd3\x84\xd0\x99\x44\xd6\xe1\x8e\x56\xbd\xfb\xbd\x40\xb5\xbf\xef\x98\x6c\x9d\x6b\xf8\x4b\x54\x36\x73\xfe\x82\xd0\x63\xaa\xde\xc8\x8b\xee\x2c\x28\x43\x2b\x72\x42\x28\xa4\x03\x62\xed\x0d\x85\x5e\x7b\xa3\x72\xbc\x2e\x2c\x90\x2e\xe4\xac\xea\xba\x43\xa3\x36\x80\x3d\x57\x02\x45\x2f\x79\x54\xe3\xce\x27\x9e\x55\xfd\xff\x98\x26\x84\x8f\xd3\x0d\x2e\x25\x72\x28\x30\x56\x02\x27\x9e\x96\x3e\xcb\x4d\xbf\x9f\x61\xef\x22\x9b\x40\x21\xf9\xe2\x54\x3d\x11\xe9\xa3\x07\x4a\x85\xcc\xbc\x9a\xf4\xfb\x0d\xd5\x15\xc6\x55\x1f\xbe\x29\x5f\xd0\x35\x6e\x65\x99\xe9\x0e\x8a\xcc\xe6\x39\xb2\xbe\x08\xa2\x91\xe3\xe6\x6b\xfa\x15\xa0\xb2\x4e\x6a\xac\xf2\x49\x55\xaf\xcb\xf2\x70\x58\x44\xac\xf6\xeb\x96\x25\xe4\x3b\x9d\x10\x68\x79\xf8\x22\xab\x7c\x64\xca\xb7\x58\xb1\x11\x95\xdf\x5d\x6a\x5e\xc9\xa6\xd4\x75\x3b\x75\x07\x44\x49\xd3\x98\x62\x33\xf0\x75\xe5\x4b\x35\x9e\xeb\x92\x08\x0f\x66\x4d\x0d\xde\xbb\x8c\xb9\x73\xe4\xa2\xe5\x97\xa0\xbb\xb1\x59\xe9\xb8\x38\xf8\x22\x75\x63\x16\xac\xc9\xcc\x0a\xff\xb4\x10\x44\xed\xff\x49\x05\x70\x8b\x73\xe2\xab\x73\x80\xa6\xd9\x76\x43\x69\x16\x2a\x3e\x9e\x4b\x2a\xf2\x5b\x0f\x21\x21\x2e\x89\x7c\x74\xc0\xe3\xbc\xc6\xf9\x21\x5d\xe7\x7b\x74\x6f\xf0\xfa\xac\x2a\x60\xb0\xa4\x3d\xd2\x5e\x17\x94\x6c\xc5\x6f\x93\xd1\x94\x62\x59\x43\x11\x9a\x3f\xa5\x5b\xd8\x21\xac\xbe\xab\xfc\x1c\x36\xfc\xbf\x83\x67\xc1\x59\x68\x8c\x98\xa4\xa4\x4b\xcf\x0d\xde\x00\x42\x4e\xd1\x6c\xf6\x41\x1c\xe3\xb7\xe1\xea\xdd\xd6\x6c\x88\xdb\xda\x8a\x08\xd8\xc4\xbd\x0d\x2c\x59\x27\x22\xe4\xc5\x29\x5c\x39\x43\xd0\x27\x16\xfd\x58\xc2\x87\xa2\xd2\x3f\x57\x75\x2a\x7e\x27\x8b\x3f\x23\x3e\xdb\x8b\xbc\x02\x6b\x64\x05\x3e\x77\x9d\xda\xb5\x24\xc2\x59\x27\x61\xe5\x0b\xae\xa2\xe5\x0b\xef\x87\xd5\xa0\x27\x23\xdb\xa5\x35\x8b\xb3\xe4\x0e\xbc\x3a\xbe\xa9\x1c\x48\xcf\xb5\x4c\x6f\x18\xc6\xa1\xa7\xc3\x17\x16\xc9\x1b\x3a\x43\x73\xa3\x52\xb4\xa4\x2a\x59\xd2\xf9\x9a\x25\xe5\x04\xc6\x2a\xc0\x2b\x44\x2f\x26\x5f\x57\x92\xbb\xfb\x17\x49\x32\x52\x65\x2a\x70\xac\x9e\x0c\xfc\x79\x5b\x95\xa1\x9f\x9b\x6b\xf5\xc3\x98\x44\x7f\xc8\xf7\xc1\xc2\x83\xd8\x34\x5f\xd7\x90\x9b\x2c\xb6\xe2\x24\x0f\xfb\xa1\x98\xdf\x3a\x52\xb7\x27\x15\x22\x38\xca\x6d\x66\x9b\xbe\x2e\xc2\xda\xcd\x38\x0a\x85\xfc\x57\x94\x56\x1e\x77\xed\xd4\x03\x43\x4c\x3e\x2f\x2f\xef\xf3\xa5\x42\xcf\xf3\x70\xb1\x62\x28\x16\x16\x5a\xeb\x61\xd4\xeb\x9a\x9c\x14\x27\x84\xff\xdc\x37\x6f\x9e\xaf\xab\x04\xa5\x76\x54\x6c\x61\xd4\x41\x51\x9b\xaf\xb7\x56\xb0\xbe\xfc\xc5\xd6\x4b\xfb\xe6\xc9\x35\x71\x85\x05\xc7\xe7\xf1\x6e\xe5\x2c\xd9\xbf\xd8\x8a\xcd\xab\xa1\x2a\xc6\x31\x75\x02\xdf\xb8\x10\xb5\x1f\x76\x6c\x2a\x62\xde\x58\x57\x6f\xe0\x7d\xf9\xe6\x13\x0b\xdc\xe4\x29\x1b\x44\x6b\x82\xfe\x52\xb0\xa9\xf3\x0a\x9f\xfb\xc0\x9d\x8a\x76\xd8\x49\xa5\xed\x61\x9e\xf1\x20\xf7\x02\x45\x4f\x7d\x7e\x4a\x20\xbd\xea\x39\x1d\x68\x99\x28\xe9\xe7\x70\xbb\xdd\xb8\xb9\x4e\xab\x7b\x8a\x43\xee\x92\x72\xeb\xbb\xc9\x70\x94\x14\x31\xd3\x01\x62\x09\xe0\x09\xf9\x5a\x31\x45\x66\x05\x69\x2d\xf1\xc1\x09\x68\xf0\xdb\x5a\x6a\xe7\x6d\x6d\x27\x6c\x96\x0d\x85\xd3\x47\xd2\x28\x1e\x6a\xaa\x1b\x77\x8b\x78\x3d\x0d\xf3\x9c\xcb\x8b\x4c\x6c\x3b\xf6\x58\x98\xeb\x95\xd4\x18\x75\xdc\xe6\x4a\x33\x55\x12\x40\x1e\x01\x72\xbe\x96\x84\x7d\x64\xd2\x2c\x71\x8d\x3c\x52\xbd\x53\x09\x9c\xf3\x95\xdf\x72\xa4\x1b\x59\x67\x9a\x90\xdd\x61\x68\x30\xce\xb2\xfa\xe8\xcb\x70\xe4\x3c\x54\xf4\x56\xff\xe8\x1f\xfd\xc3\x86\x8f\xdf\xef\x28\xb0\xc8\x1d\xbd\x39\xc3\x78\x64\xbb\x20\x47\x71\x7d\x0a\x8e\xc0\xff\x4c\x1d\xba\xbd\x97\xba\x8d\xcf\xba\xd3\x53\x1a\xd4\x75\x59\xc5\x30\xb5\x59\x32\x44\xd8\xa7\x5f\x47\x68\xe4\xb7\x9a\xcf\xfd\x8b\x04\xac\x5e\x4f\xd2\x55\x37\xe2\xac\x6f\xa5\x04\xd2\xde\x54\xcb\xca\xe4\x36\x0a\x09\xa5\x5e\x8e\x06\xa6\x71\x93\xda\x03\x71\xfd\x3a\x4e\x09\xc7\xef\xbe\x7f\xd1\x91\x02\x69\x50\xd0\xc6\x53\x0d\x27\xe8\x7f\x04\x1f\x41\xf2\x00\x42\xe6\x30\xbe\xaf\xc3\x39\x86\x0f\x70\x6f\xac\xc4\x0f\x2e\x28\x20\xe1\x61\xaa\x33\x21\xcd\xf2\x6b\x9c\xf7\x87\x19\xde\xa4\x30\x16\xab\xe6\xe9\x89\x02\x97\xec\x44\x2f\x0a\x8c\x64\xb3\xdd\x78\xfe\x2b\x0c\xb8\x7b\x5d\x4f\xf2\x77\x15\x9c\x77\xd3\xa3\xa9\x92\x27\x49\xb0\x99\xb3\xce\x81\xe2\x70\x98\xea\x36\xf9\x68\x2b\xf4\x76\x69\xfe\x60\xb9\x52\x09\x51\xab\x88\xe6\x96\x1c\xd1\x9c\x96\x34\x55\xa4\x5d\x3e\x41\x1e\x85\x36\x2e\x4f\x68\xc0\x2d\x04\x0e\x4e\xef\x25\xa4\xa8\xe5\xe7\xd8\xbb\x77\x06\x7e\x60\x0a\xcf\xff\x83\x89\xd9\xd9\xf6\x8d\xd9\x6f\xeb\x3e\xfd\x99\x89\x87\x4c\xac\xd9\xd8\xbe\x5a\xd8\xc8\x34\xca\xf7\x05\xc2\xe6\x2a\x6c\x2a\xdf\x28\xbc\x6b\x37\x2a\x6c\xd6\xd0\x52\x88\x53\x1a\x89\x35\x92\xae\x1d\xd3\x85\xf6\xa9\x50\x9d\x7a\x0e\xe1\xe6\xa4\x02\x74\x5d\x5e\x6a\x75\x4c\x4e\xaa\x22\xf4\xf6\xaa\xbb\xfb\x80\x43\x53\x6d\xfd\x95\x9f\xd3\xed\x5d\x48\x67\x5c\x50\x2c\xfd\x9e\x52\xa4\x34\x96\x45\x6e\xd3\xf0\x55\xe6\x03\xc1\x9c\x6c\x47\x4c\x80\x89\x80\xb7\xee\xde\xae\x1c\x33\x24\x0a\xae\x2b\xef\x25\x0b\x7b\x2c\x54\xe3\xa6\x78\x69\x59\x4d\xb1\x3b\xee\xaf\x69\xf5\xa4\x6b\x1e\xee\x97\xac\x9b\xb4\x97\xcd\x28\xde\xa1\xe6\xc4\xd7\x0d\x3f\x18\x7b\x1e\xaa\x5d\x68\x82\x66\x61\x1e\xb7\x4a\x06\x61\x5c\xc6\xcf\x39\x54\xbd\x6b\x9d\x78\x45\x4f\x1b\x1f\x6a\x4c\x51\x14\x8c\xd5\xb6\x3e\x5b\xa7\x30\x6c\x4a\x73\xde\x33\x71\xce\xab\x50\x09\xe4\x88\x5a\xce\xfd\x40\x07\x9f\x75\x39\xbf\xf5\xb0\x67\x99\xac\xd6\x77\xab\x9e\x57\x48\xca\xf3\x40\x7f\x49\x2a\xbe\xfb\x88\x0f\x94\x3e\x0a\x94\x20\xe3\x09\x6c\x3f\xbe\x51\x41\xe1\x43\xd8\x14\x38\xd0\xef\xe1\xe9\x00\x0a\x6a\xb6\x1b\x2f\xed\xdb\x3c\x8e\xd6\x61\xfe\x77\x64\xfe\x18\xdc\xad\x50\x6a\x2b\x49\xd2\xdb\x20\x11\xfc\xe5\x25\x4f\xaa\xee\x98\xb3\xce\xaa\x76\xac\x32\x4c\x26\x1b\x5a\xfe\x29\xa3\x88\x02\x87\x3d\x19\x9d\x51\x2d\x7d\x49\x27\x37\x21\x24\xe2\x58\xbb\x81\x06\x4c\xc4\x28\x55\xab\xfe\x6b\xb5\x3c\x74\x03\x13\xf5\x1b\xca\xd2\x20\x83\xc6\xd7\xaa\x73\xcd\xf6\x78\x2d\x95\x7f\x8a\x4c\xe8\x69\xfa\x53\xd4\xc5\x6e\x2b\xba\x1e\xe6\xe4\xe7\x3f\x52\xbc\x6f\xa4\xd9\xe4\x44\x4c\x61\x3c\xb6\x51\xb8\xc4\xd7\x93\xad\x0c\x7e\x9f\x6f\x65\x06\xfd\x08\x38\x04\x19\x98\xc2\x37\x15\xff\x66\x6e\xae\xd5\x49\x92\x4c\xd0\xa4\x92\xeb\xa6\x09\xe3\x1b\x55\x44\xee\xd9\x7e\xd8\x0d\x6d\xdc\xdd\xd0\xc8\x87\xeb\xca\x61\xe7\x06\x44\x96\xa4\xac\xfc\x1c\x49\x83\xa6\x43\x8b\x46\x1c\xe9\xcf\xa4\x98\x51\x1a\x37\x5d\x3a\xa3\xe8\xad\x58\x67\x37\xb1\x38\x66\xe9\xd5\x9d\x24\xbf\xa7\x23\xbb\xab\x92\x04\x59\x12\x99\x74\x9a\xd2\x88\xbe\x02\x50\xaf\xe3\xba\xeb\xf6\x8c\x6b\x24\x32\x69\x57\xc4\xfb\xe1\x0a\xee\x9a\x28\xb4\xfa\xae\x76\xa5\xf1\x63\xa9\x15\x85\x6b\x56\xe3\x27\x99\x01\x86\x6f\xf4\x2e\x1f\x8e\x66\x55\x46\x1a\x7f\x26\xe9\x69\x5f\xad\x3f\xa9\xfa\x57\x4f\xea\x96\xd0\x9b\x15\x67\xfb\xf3\x2d\x13\x45\xc9\x3a\x0d\x22\x0e\xc8\xbf\xc0\x34\xf3\x8d\x52\xa5\xca\xbe\x5e\x98\x18\xf9\xfd\xf2\xeb\x85\x03\xa3\xb4\x63\xc2\x6e\xf1\x84\x42\x83\xdb\x38\xdf\x40\x4d\x4f\x40\x07\x8a\x0e\xff\xb8\x1b\x2e\x64\x13\x31\x35\xc8\x17\xc3\x4c\x62\xb8\xfe\x47\x8c\x31\x92\xca\x33\x6d\x99\x51\xa1\x86\x99\xa5\x41\x73\x29\xb4\xf2\x45\x95\xe8\x04\xe3\xc8\x0e\x3f\x55\xce\xf5\xe6\x0e\xa8\x2e\x0b\xa3\xd3\xd6\x73\xe9\xb9\x56\x18\x87\x79\x68\xb6\xb4\x56\x9f\x09\xa6\x26\x59\x4d\xc5\x28\x7b\x54\x35\x6c\x7e\xba\xad\x28\xb1\x67\x39\xa6\xe6\x3b\xf2\x32\x50\x24\xe7\xb2\x2a\x32\x75\x9b\xca\x41\x7d\x88\x07\xa6\x7f\x58\xfa\x9b\x44\x48\x09\x2b\x09\xc4\xa4\x53\xb0\x93\x4e\xf1\x5f\xf9\x49\x85\x40\x8b\xad\xc9\x05\x5c\xc1\x72\x70\x9a\x28\xe1\x78\x1d\x14\xaa\x57\x06\x71\x80\x2a\x49\x8a\xbd\xe1\xe8\xb0\x4f\xd5\x95\xff\xcb\x53\x7b\xab\x37\x3f\x55\xda\xad\x7e\xe6\x40\x0b\xb0\x52\x3c\x1a\x86\x80\x59\x0a\xf9\x66\xe2\xb6\x4d\xa7\x90\x2e\x06\xdf\x9d\xe0\x3b\x15\xd4\xae\x24\xf1\xbf\xdd\x1e\x0a\xf3\x6f\xf1\xae\x48\xe6\x7c\x08\xcc\xa5\x6f\x11\x93\xbe\xd7\x2b\x58\x1e\x42\x1c\x5d\x0e\x30\x52\x2c\x02\xd8\xc0\x31\x77\x5b\x69\xb8\xdd\x0e\x14\xba\xea\x22\x0c\x2b\x26\x82\x79\x4e\xe4\xa8\xfd\xa4\xe4\xba\xe9\x7a\x64\x00\xbe\xe5\xa4\x1a\x64\x8e\xe9\xf1\x82\xd7\xd5\xde\x59\xb7\xe1\xca\x20\x9f\xc5\x63\x09\xe6\x5b\xf5\x03\x9f\xc3\x3b\x4a\xc3\x21\xed\x31\x87\x7d\xf5\xdc\x93\x87\xd5\xf9\x97\x15\xe9\x28\x0d\x33\xcb\x3e\x02\x43\xf5\x03\x45\xd2\xe3\xe1\x1b\x61\xdc\x2f\xa3\x36\x86\x39\x09\x74\xa0\xe1\x94\x5a\x8e\xeb\xa4\xf1\xed\x60\xb7\xa2\x63\x05\xe0\x13\x89\xa5\x1b\x74\x16\xe2\xb5\x7f\x1d\x59\x7f\x29\xc7\xd0\xbb\x70\x2f\x21\x55\x7d\x11\x31\x9c\xda\xc2\xd0\xe1\xb2\x86\x3f\x0a\xa6\x39\x3d\x1c\xbf\x1a\x21\x6f\xe6\x37\x8f\xeb\x28\xfc\xfa\x54\xde\x34\x1f\x6c\x10\x6a\x12\x4f\x8b\x66\x00\x24\xe6\x76\x4d\x54\x63\xc2\xa5\x40\x11\x22\x62\xd9\x30\x09\x48\xa0\xba\x78\x2e\xaa\xa6\xe8\x23\x98\x04\x2c\xae\x1d\x6d\x65\xe8\xb6\x29\xde\x32\x7c\x5e\x0e\xcd\x6b\x8a\xde\xbe\x9f\x9a\xb8\x3b\x08\x49\x8a\xaf\xe1\x18\xc3\x2e\x06\x53\x5d\x09\xbe\x92\x62\xe2\x8d\x24\xb6\x3b\x14\xc5\xf1\x6d\x25\x67\x06\xa2\x35\xd7\x66\xe8\xf5\xfb\x95\x43\xc1\xb9\x7e\x69\x8a\x91\xd9\xce\xbe\x5e\xa0\xb5\x59\x53\xdb\xdf\x0c\x3c\xf7\xc6\xcd\xb1\x3f\x29\xff\xe7\xf1\xa7\x94\xd1\xe9\xda\x2c\x33\x69\x58\x5a\x9e\x32\x42\x90\xce\x75\xa5\xaa\xab\x89\xea\x47\xc9\xaa\xcd\x86\x26\x26\x0f\x90\x5c\xbb\x6f\xef\x6d\x7b\xbd\xe8\x0f\xa7\xda\x29\x02\xb5\x59\x1f\xd2\x74\x28\xea\x92\xf9\x4d\xa8\x04\x3a\x56\xc0\x72\x1e\x11\x36\xbe\x33\x95\xbf\xa8\x69\xae\x18\xa5\x61\xec\xad\x58\x9d\x48\x58\x4d\xfc\x3e\x4a\xc3\x84\xdb\x31\x60\xb9\xe1\x3b\xa2\x12\xf3\x40\x31\xa7\x5f\xaa\x54\x4b\xff\x6e\x6b\xb4\x41\x1d\x98\x83\x98\xa9\x25\xb1\xe0\xa0\xe3\xce\xd7\x75\xca\xa0\x43\x53\xee\x43\x33\x44\x0a\x9f\x95\x98\x54\x28\x7f\xb7\x4e\xa5\x20\x4f\x8b\xe1\x88\x3b\xa4\xb9\x2f\x9c\x06\x44\x7a\xc4\x5d\x00\x9a\x0e\x41\xc4\x3a\xeb\x33\x17\x60\xd5\x73\x4d\x44\xcb\x9e\xba\xd8\x9b\xac\x1f\xea\x92\xe5\xee\x76\x9d\xb8\x6c\x96\x87\x22\xa7\x28\xd4\x61\xb0\x39\xe2\x6b\xd5\x08\x51\xf4\xc2\xa9\xde\x3b\xc7\xa3\xb8\xe8\x38\x15\x5d\x73\x54\x14\x0e\x3b\x49\x53\xf3\x76\x8c\xfd\xa0\x3e\x98\xd2\xa6\xdc\x3a\x15\xaf\xbc\xd2\x32\x9d\x2c\x89\x8a\xdc\x32\x31\x2b\x8c\xc8\x77\x14\x61\xe3\x77\xdc\x0f\x91\x4a\xed\xec\x96\x96\x8e\x85\x05\x1c\xa9\x3f\xfd\x37\xc9\x7d\xa4\x7c\xd2\xe9\x4f\x4f\x54\xbf\xd0\xeb\xa4\x46\x23\x90\x77\x57\x35\xec\xfd\x0d\x25\x87\xd6\xf8\x05\xc7\x8c\x4b\x95\x3e\xd4\x31\xf6\x4c\x14\x1c\xe0\x26\x91\x8e\x01\x03\xde\x6c\x13\x6a\x8d\xa1\xb5\x98\x01\x4c\xcd\xcf\x01\xf8\xed\x98\xab\x1d\x5f\x0f\x07\xab\x72\x72\x29\x48\xfb\x4f\x3e\x33\x71\x75\xd4\xe1\x4f\x50\x39\xd2\x4d\xbf\x0b\x4e\x37\x49\x63\xcd\x51\xc5\x2e\x2c\x08\xbd\xcd\x00\x87\x8d\x90\x5b\x36\xbe\xfc\x45\x57\x68\xa5\x28\x4c\x42\x65\x4f\x04\x47\x41\x1a\x7b\x68\xbb\xdb\xbe\x93\xfa\x54\x40\x05\x4f\x41\x4c\xd0\xbc\x23\x4a\x68\x22\x54\x17\x23\x47\x2b\x09\xe8\xcf\x5d\x64\x2e\x90\x04\xe4\xc0\x02\xd1\xd5\x63\x6d\x42\x56\xe2\x1c\x63\x7d\x05\xa4\x80\xaf\x54\xb6\x16\x95\x0b\x52\xbb\x16\x3a\x84\x16\x3c\xcd\x3b\x8a\x29\xbd\x8a\xd3\x9b\x3f\xd8\xca\xfe\x4e\x84\x50\x00\xb1\xd5\x5d\x85\x85\x9a\x51\x6a\x52\x55\xc0\xc4\xdc\x5c\xab\x5c\xde\xd6\xf4\x73\x9b\xce\x78\xc7\x83\x7b\x53\xb8\x63\x91\xc6\x0c\x65\x65\xb8\xf2\x08\x32\x0e\xd7\xf9\x6e\x03\x93\xf6\x18\xf2\x8c\xe2\xc1\x39\x04\x3e\x52\x5b\x69\x78\x9a\x58\xc5\x40\x39\xb0\x78\xe3\x17\x7c\x35\xca\xe1\x54\x2e\xd7\xc9\x11\xf4\xa9\x21\x67\x6e\xde\xb3\x84\x7b\x56\xef\x13\x35\x98\xe3\x41\x92\xdb\xa8\xd1\x78\xf6\x59\xe7\xb4\xe9\x56\xd3\x27\x15\x2b\x51\x69\xa4\xec\x0c\x3d\xb3\xb3\xeb\xda\xfa\x7b\x76\xf5\x6d\xb4\x66\xf8\xba\xae\xde\xd8\x2d\xd2\xdc\x84\x11\x41\x28\x1d\xb0\xc7\xd5\x4d\x50\x22\x93\xb6\x5f\xdf\xd6\x3c\x4a\xa2\xdc\xa6\x2b\xd6\x0b\x99\x20\x84\xb9\x08\x4f\x82\x6f\x2a\x41\xfb\xfe\xc5\x56\x12\xd1\xd0\x3b\xe3\xcd\xed\x4d\xb0\x8f\x40\x97\x78\x02\x6e\xd7\xf0\x13\x46\x76\x8a\xc8\xec\x26\xd6\x35\xdf\x4c\xf3\x3d\x74\xcd\x23\xe5\xa0\xc3\x8b\xe2\x56\x67\x58\x20\x6c\x26\x9c\xe0\xd7\x55\x61\x7b\x06\x59\x50\xec\x2c\x98\x29\xd8\x9a\x5d\x8a\xbb\xe0\x5c\xa0\x7c\xd6\xab\xd8\x71\x72\x64\xd7\xac\x31\xd3\x4b\x93\x30\x9f\x72\x4d\x1a\x8e\xe4\xf4\xa2\x0a\x84\x0e\xbe\xb8\x4c\xe7\x0d\x4c\x12\xa7\x15\xf9\x66\xfc\xd4\x74\xe6\x74\xff\x62\xeb\xb9\xcf\x94\x8f\xc4\x3b\x80\x8f\x06\xb8\x4a\xb7\x31\x92\x1c\x28\x61\x80\x04\x57\xef\xb9\x91\x8e\x01\x45\x8d\x1f\x80\x99\xc4\xd9\x7b\x63\xac\x64\x1b\x2f\xea\x2e\xe5\xef\x83\x3e\x10\x5e\xc1\x66\xa0\x64\x4b\xff\x6d\xa0\xf6\x03\x0b\xc4\x71\xab\xe8\xd8\xa3\x83\xb7\xb5\x7d\x7b\xeb\x29\x58\x56\x21\x6a\x24\x93\x8d\x5d\x7b\x1f\x7e\x08\x8c\x31\x40\x64\xb0\x26\xdb\x28\x2d\x8d\x5f\x3f\x0c\xd8\x37\xce\x8a\xdd\x13\x8f\x45\xba\xac\x33\x5b\xef\xd3\x51\x2c\xbb\x59\x91\xa2\x6d\xa0\xec\xc0\xc8\xb8\x40\xa5\x2d\x2e\x56\x4c\xd6\xc1\x17\x5b\x71\xf2\x39\xda\x17\xb0\x52\xdb\xe9\xe7\x00\xce\x60\x12\x37\xfc\xf6\x7f\xd4\xcc\x02\x36\x7e\x14\x93\xc2\x24\x95\xc8\xdc\x8b\x69\x2d\x07\x85\xc9\xa8\x15\x6b\xd9\xce\x89\x16\x89\xa5\xc9\xc2\x1e\x60\x65\x3f\x3a\xa8\xb3\xbf\xd5\x56\x2a\xda\x9c\x67\xc4\x04\xdd\xd2\xaa\xef\x55\x91\xfb\x32\xf6\x4c\x93\x55\x8b\xc2\x9b\xb3\x0b\xce\x3b\xb8\x4a\x2e\x27\xe6\xea\x62\xc5\xbf\x90\x60\x2c\x37\xab\x40\x25\xe0\x43\x6f\x51\xe2\x82\xaf\x2b\x11\xdc\xfe\x45\x62\x09\x1b\xa1\xa8\x8c\x9d\x2b\x1d\x59\x0d\xc7\xfd\x7a\xa1\x06\x07\xd9\x32\x69\x27\xcc\x53\xf8\xc5\x8d\xe5\x7d\x9b\x54\xf1\xda\x3c\xaf\x83\x31\x9b\xe7\x91\x10\x3d\x48\x0b\x81\x6a\x27\x50\x74\xf9\x26\xde\x58\x37\x1b\x33\xe5\xa3\x62\xe7\xdd\xa4\xa5\x01\x07\x8c\x7b\xf6\xf8\x26\xf0\xf0\xd7\x9b\xca\xef\xee\x98\x6e\x6e\xd3\xb0\x18\x22\xc5\x02\xb3\x78\x4b\x29\xa6\xb3\xe0\x08\xaa\x20\x47\xa6\x20\x38\x6b\xd9\xe7\xc8\x00\x28\x51\x4e\x09\x2e\x4f\x4f\x65\xa5\xb2\x47\x54\x28\x8b\xdd\xea\x54\x8d\xcb\x3d\x2d\x19\x3d\x5f\xe0\x64\x2c\x3a\xa5\xd5\xbe\xf3\xb7\xdb\x9a\x25\xec\xbe\xef\x6f\xdc\xfd\xd3\x13\xc5\x38\x79\x7a\xac\xdc\xca\x9d\xed\x67\x6a\x48\x71\xe7\xe6\x1e\xc1\x57\x21\x5f\xf7\xae\x72\x08\x39\x6c\xe5\x50\x53\x09\x78\xe8\xfe\x62\x74\x88\xc3\xb3\xbc\x36\x56\x01\xe2\xa9\x40\xf1\x06\xbf\xaf\xab\xea\x7f\xa4\x29\x84\x72\x9b\x3e\xe2\x1d\x9e\x0f\xc7\xbe\xb2\xda\x68\xd3\x9b\xc8\x06\xa7\x61\x41\x3c\xdc\x9c\x28\x3f\xe0\x66\xe0\x41\x25\x8c\x68\x94\xc9\x2e\x5f\x45\x51\x30\x1e\x70\x28\x90\x27\x94\x60\x67\x6a\x4d\x3e\xab\x3a\xde\xc7\xaa\x7f\xe2\x2c\xc6\x0f\x95\xeb\x33\x2a\xa2\xbf\x8d\xae\x4b\xfe\x07\x25\x84\x21\x4c\x66\xbb\x7c\x19\xf2\x08\xac\x8e\xa3\x29\xf3\x9a\x00\x57\xc7\xaa\xc2\x79\x49\xd1\x60\x9f\xd5\x5e\xe3\xd5\x40\x31\x92\xbf\x47\xab\x59\xbe\xab\x06\x4c\x1f\x0e\x29\x6f\x2d\x91\x01\x3c\xc4\x49\xe0\xc1\xd4\x13\xd5\x7d\x37\x34\xbd\x94\xa9\xf8\xea\x90\x1c\x7e\x57\xad\xd8\x24\x5d\xb1\x90\xb9\x96\x68\xc1\x67\x1b\xde\xc5\x42\x11\x16\x0f\x0f\xd1\x78\x43\xa7\x80\xee\xe3\x38\x75\x2a\xd5\x9e\xd2\xf0\x9a\xc2\x7c\x0d\xc3\x2c\x2b\xff\x6f\x34\x0a\x75\xb7\xc2\x79\x45\x10\x7c\x7e\xbc\x5b\x41\xb0\x67\x55\xad\xfe\xd1\x49\x79\xee\xd0\x48\x99\x9f\x68\x7b\x95\xbc\x4b\xe3\x29\x5a\xf6\x86\xd3\x22\x39\xaa\xbd\x3d\x93\x83\x70\x12\xa9\x30\x76\x36\x9d\xc2\xf0\xc2\x02\x1b\xff\xdf\x50\x76\xe3\x68\xc5\x11\x78\xae\x35\x32\x1b\xa6\x13\x59\x55\xec\x7c\x03\x5f\x25\xc6\xaa\xfc\x2a\x98\x71\x54\xcc\x45\x7f\xa6\x06\x94\xb6\x4e\x10\xcf\x18\x00\x08\x7d\xa4\x20\xb3\xb3\x13\x87\x12\x26\x76\x73\xac\x65\x63\xec\xc8\xa6\xb3\x53\x68\x8d\x72\xdd\xc1\x5e\xbc\x35\x56\xfd\x62\x57\x95\x54\x04\x4b\x0a\xf3\x5f\x29\x58\x6a\x96\xa7\xe1\x08\x58\x3e\x86\x28\xd3\x80\x08\x5c\x99\x96\x31\xf3\x5e\xd1\x2b\x09\x07\x56\x8d\xee\x6a\x6c\xa9\x94\x99\x0c\x6d\x43\xa5\xb0\x01\x70\xe1\x6b\x25\x52\xb6\x92\x44\x36\xee\x24\xdd\xd5\x86\x2a\x6a\x31\xc2\x9d\x6f\xea\x32\xaf\x3d\x33\x34\x2b\x12\xae\x08\xdb\xa0\x52\x19\x3f\x59\x49\xeb\x2f\x2f\xa9\x7e\x27\xb8\x44\xef\x29\xb8\xc6\x7b\xe5\x12\x15\x95\x0e\xd3\x49\x19\xfe\x3a\xa3\x9a\x54\xae\xe0\xa9\x58\x61\x22\x50\xbd\x2c\x57\xe0\x5b\x89\xf6\x84\x3f\x07\xbe\xf4\xfc\x72\xd3\x1f\x63\xb7\xc7\xaa\xc7\xfa\xdf\xd3\xb4\x48\xcf\xcd\xa7\x94\x81\x21\x35\x8c\xf0\x55\x2e\x2a\x08\xd1\x7d\xb9\xd8\xf9\xba\xb2\x26\x5f\x79\xa5\xd5\x29\x36\x9c\x4d\x80\xff\xd3\x6c\x7b\xc7\xa8\x39\x51\x53\xbd\x31\xec\x24\xd1\xac\xca\xd4\x9f\x52\xf4\xd3\xb7\xe1\xff\x89\xe3\x4c\x56\x90\xff\x8a\x26\x1e\xeb\xfa\x84\x2a\x0b\xf7\xc2\x6c\x15\xe9\x2e\x07\x12\xf4\x80\x41\xdf\xc6\x1a\xf5\xcb\xff\x83\xdf\xe0\x16\xba\x63\x71\xb9\xe4\xd0\xab\xe0\xa7\x6e\xe8\x34\xc3\xc7\xda\xe3\xff\xb8\x12\xbf\xbe\xf2\x0a\x49\x38\x15\x5d\x0a\xce\x5e\xda\xe7\x29\x58\x16\x16\xe4\x5a\xc5\x5a\xb1\x5d\x4d\x92\xcc\xcc\x96\x96\x44\xb0\x2c\x3e\xd0\xbf\x8c\xf7\xc7\x6f\x71\x2f\xb0\xdc\xf8\xbd\x7c\xb3\xb6\xb1\xc4\xf6\x93\x94\x2b\xe4\x42\xb4\x56\xce\x20\x96\xc5\x9e\xb6\x6f\x90\x06\xc3\x1f\xdc\xe7\x5b\x75\x30\xf7\x7e\x18\xaf\xd8\x94\xe3\x23\xd7\x37\xbd\xe8\xfb\xa6\x9f\xae\x44\x11\x2f\xed\xfb\x49\x0a\x03\x5c\x69\xc9\x37\xab\x61\x7e\x91\x96\x60\xb1\x18\x27\xc1\x3c\x37\xc7\x87\xf6\x5f\x8e\x4b\x9f\x9c\x93\xc2\xda\x47\xb9\x3e\x56\xd9\x87\xfb\xe3\xc6\xcb\x4b\x9e\xa8\x78\xfe\x20\xaf\xc9\x07\x88\x21\x24\x27\xe6\x6b\xbe\xbb\x28\x52\x00\xe8\x04\x90\x19\x0c\xc7\x43\x24\x51\x5c\x2b\x6e\x39\xe8\x48\xbb\xbc\xab\x29\x48\xb7\xb5\x55\x7f\x0a\x8e\x24\x24\xc3\xb7\x21\x05\x84\x94\xc0\x07\x63\x5d\x19\xf8\xd1\x18\xd4\x56\xf0\x38\xae\x20\x3c\x71\xd5\x4a\x3f\x3b\xc7\xc8\xcb\x81\xf3\x9d\x57\x56\x55\x19\x48\x27\xa3\x8d\x34\x5c\x19\x00\x90\x8b\xa1\x07\xe9\x82\x40\x48\xbd\x08\xd2\xad\xba\x04\x49\x6a\x7b\x3b\x1a\x5f\x78\x99\xe9\xca\x5e\xc3\x40\x22\x59\xb2\xa9\x4e\x51\x66\x92\xc1\x20\xdd\xa2\x79\x66\x86\x8c\x69\x2a\x60\x0f\x14\x26\xf1\x65\x0b\x75\x04\xa0\x36\x4e\x8f\x3d\x3e\xe5\x74\xb0\xdb\xd9\xd7\xf5\xcf\x91\x4f\x8d\xc8\xe5\xcf\x30\xce\x7c\xe3\xb7\x5c\x18\x25\x8e\xb5\x59\x1a\xbc\xe9\x91\xa4\xf3\xbb\x4e\x29\xbe\x3c\x32\x56\x01\xc7\x42\x31\x92\xa3\x2f\xbe\xa9\xdb\x21\xaa\x10\x8c\xe3\x99\x4b\xb1\x7c\x13\x3c\x5d\x29\xc5\xe6\xeb\x4d\x8f\x99\x42\xa9\x08\xcb\x95\xd1\x1c\x42\xae\x52\x13\x20\xf5\x4d\xd7\x6a\xe6\xbc\x8b\xda\x89\xf1\xa5\x70\x92\xfe\xa4\xa2\x76\xb9\xd0\xa4\xdf\xdc\x67\xaf\x20\x3b\x81\x32\xc8\x15\x95\xc0\xc8\x4c\xdf\xa6\x33\x34\x9e\x12\x35\x78\x78\xe6\xfb\xb4\x03\x1c\x70\xc9\x41\x27\xb7\xb7\x75\x30\xd1\xb1\x11\x81\xf3\xa6\x88\x07\x10\x32\xde\xa8\x96\xfd\x11\xdf\xdf\x1e\x3f\xa9\x98\xe8\x60\x25\x7c\x45\xe3\xa4\x6a\x5c\xac\xb2\xca\x2e\x2c\xb4\x86\x61\x14\x65\x33\x3a\xb6\x38\x19\x28\x51\x8e\x63\x4a\x27\x82\x3d\x38\xfe\xab\x3a\x70\x43\xd7\xa6\x6b\xe1\xa1\xa6\xe2\xe1\xf9\xe7\xaa\x1f\xff\x5d\xd5\x94\xf7\x4e\xc5\x51\x58\x7a\xf1\x00\xf7\xa7\xb8\x63\x4b\x64\xe0\xbc\xa3\x70\x41\x95\x00\xf3\x64\x9d\xde\x75\xbf\x64\xde\xcf\x05\x5e\x26\xfe\x9c\x8b\x38\x46\x45\xba\x62\x7b\xd3\xa4\x02\x8a\x33\xa5\x89\x52\xab\xb4\x2e\x6d\xe5\x90\x9f\x6b\x2d\x2e\x7e\x96\x0c\x13\xce\xb9\x1f\x07\x8a\x31\xfe\xdd\xb1\x12\xb7\xf8\x55\xb8\x7c\xb8\x39\xad\x44\x95\x3f\xc0\x78\xe2\x1f\x1a\x6d\x2f\xb8\xcd\x7a\x2c\xb0\x51\x3b\xb8\x1e\xee\x0c\xdb\xb2\x80\x79\x1f\x60\xb6\x11\x15\x9d\xa3\xaa\x0e\xcc\x07\x2a\x5a\xa8\xd4\x9d\x22\x63\x2d\x46\xa2\xf1\xe5\x2f\xfa\xa5\xe2\x35\x0b\x5e\x09\xa6\xf0\xc5\x73\x73\x7c\x28\xbf\x46\x36\x5c\x32\xe1\x3e\xe3\xf9\xd3\x30\xa9\xc2\x34\x47\xb3\xef\x7a\xf9\xbe\xf0\x32\x27\xd0\x0e\xc3\xe5\x77\x9a\x0e\x5f\x9a\x77\x7f\x44\xe3\xcc\x3c\xd2\x81\x52\x97\xbf\x39\xf6\xe9\xd7\x5b\x2a\x4a\x2e\x3a\x4c\x43\x29\x9b\xa3\x1c\x2c\x2e\x63\xb2\x45\x17\xfd\x64\xef\x73\x6a\x2a\xc6\x30\xb6\x87\xa8\x53\xa9\x13\x6d\x34\x3c\xe1\xdb\x15\x9c\x20\x7c\x13\x3c\xae\xfa\x2b\x4c\x77\xd0\xf4\xa9\xb9\x9b\x63\x25\x11\x81\x70\x52\xb2\x96\x9e\xba\x27\x5b\xb7\x26\x97\x9a\x24\x0e\x1f\xd8\x68\xbe\x9e\xca\x0f\xf4\x6c\xef\x29\x1a\x45\xd8\x84\xcb\xb4\x30\x10\x24\xcc\x50\xec\x02\x5b\x7e\x27\xf0\x0a\x69\x37\x02\xc5\x02\xf3\x00\x6b\x0c\xbe\x08\xf7\x65\x8b\x22\xbd\xea\x71\xe4\xc0\x92\xb5\x52\x95\x1b\xfb\x3a\xad\x24\x96\x91\x52\xa2\xd7\x7b\x50\x0f\x10\x21\x39\x5a\xe2\xa2\x24\x47\xcb\x12\x3f\x32\x8b\xf8\x00\xc1\xd6\xb5\xb1\x6f\x01\xbd\x3a\xf6\x8e\xd5\xdd\x4a\x58\x3a\x37\xd7\xca\x43\x13\x9b\x78\xc8\x70\x68\x57\x77\x28\x1f\x59\x3c\x3c\x1f\x96\x6e\x14\xa3\x51\x68\xe1\x34\xd6\xb1\xc2\x48\x0f\x5c\x6a\x4d\x7f\x8a\x66\x9a\x05\x26\xa7\xc4\x26\x7d\xdb\x93\x35\xbd\x8d\x59\x8f\x6f\x40\x37\xe1\xe6\x65\x05\xad\xff\x29\xa4\x09\x98\xef\x4a\xd5\x2b\x76\x29\xec\x48\x66\xd6\xa4\x21\x49\xc8\xe7\x5d\x81\xf6\xf9\xef\x8c\x55\x99\xf4\xa4\xe3\x25\xe9\x45\x5f\xa3\xf5\x31\x75\x38\xf1\x8d\x5a\x80\xe5\x99\xc4\xf0\x62\x39\xed\x69\x10\x90\x7b\x3d\xa3\xea\xca\x7f\xae\x7a\x78\x3e\x54\x11\x45\xcf\x1a\x15\xce\xa3\x9e\xc0\xd7\x38\x04\xa5\x9e\x30\x2c\x62\x69\xe1\xdb\xad\x88\x00\xae\x06\x9e\x3c\x90\x49\x70\x36\x2f\x2b\x06\xe5\x7b\xc8\xea\x20\xf7\xf5\xe1\x78\x2a\x8b\x4e\x63\xe7\x14\x0e\x3d\x2f\xf6\x25\xc5\xa4\x7c\x39\xf0\x52\x4a\x97\x60\x2a\xa4\x81\xdd\xcf\x7f\x3f\xc9\x72\xae\xd6\x38\x3e\x9d\x97\xf6\x39\x01\x1a\xdf\x45\x76\x57\x65\x5e\xa2\x30\xb7\xa9\xe9\x6e\xe1\x12\x52\x44\xc8\xba\x64\x50\x74\x07\x4f\xfb\x22\xf4\x0f\x55\xf4\x74\x6c\xec\x89\x90\x77\xb4\x7d\x0f\xf9\x69\xf8\xbc\xb0\xa9\x37\x30\x81\x22\x28\x4a\xef\x2a\xda\x5d\x34\xff\x8a\x4b\x6d\x9e\x9d\x50\x26\x20\x81\xdf\xca\x34\x7e\xec\x36\x60\x92\x31\xa6\xbb\x27\xd4\x8c\x22\x2e\x8f\xca\x9f\xbc\xa5\x74\x15\x38\x37\xc6\x4f\xa3\x88\x81\xee\x93\xd3\x0d\x1f\x0b\xee\xbb\x74\xbe\xfa\xa3\xb2\x97\x14\x9d\x1c\x47\x25\x32\x1a\xff\x14\x0f\xc0\x37\x1a\xb9\x6f\xd3\x30\x4f\x52\x76\xfd\xf0\x52\xcc\xa1\xcd\x37\xca\x5c\x87\xb9\xd9\x51\x3e\x08\x16\xca\x03\x3c\xba\x53\xac\x2b\xdf\x9d\x55\x16\x34\xf1\x04\x8c\x3a\xb3\xe6\x2b\xfa\xf0\xc6\xc4\x33\xad\x67\x49\x91\x76\x25\xe4\x43\x1a\x8c\x9b\x4f\xf8\xa6\x96\xbb\xa0\x88\x22\x5a\x41\x38\x70\x6e\xe1\x74\x15\x69\x0b\xdf\xde\x7c\x58\x39\x4c\xc9\xb3\xab\x61\x77\x35\x24\xfa\x6c\x2c\xbc\x1f\x2b\x52\x27\x36\xc4\x82\x0c\x70\x76\x65\xe4\x23\x6b\xd8\x80\x8f\x68\x3e\xf8\xda\x45\xb8\xac\x21\x3f\xab\x1a\x73\x8e\x61\x33\x89\x82\xd6\x94\xfa\x59\xc3\x31\x65\x6f\xa7\x90\x42\x2a\xea\x5b\xd5\x38\xa9\x3a\xdb\x49\x13\xd3\xeb\x9a\xcc\x83\xa7\x44\x71\xbe\xe1\x14\xb7\x6f\x2b\xfd\xc3\xff\x45\x6d\xb6\x4e\x91\x5a\x53\xcc\xd0\xbb\x4d\xe1\x70\x9d\xcb\xe7\x2a\x77\xc7\x68\x34\xf8\x8f\x94\xa2\x44\xb6\x6e\x6d\x4e\xa1\xb5\x94\x60\x1b\x8e\xde\xef\x70\xe0\x75\xc5\xbb\x51\xd1\x13\x10\x3b\xce\x33\x46\x74\xf1\x8d\xd6\x2a\x8f\x4c\xcc\x09\x22\xbc\xca\x9b\x1a\x8c\xf3\x66\xa5\x8c\xb0\xb4\xbc\xd4\x0a\xe3\x3c\x4d\x7a\x45\x17\x79\x9f\xaf\x7a\x3a\x04\x55\xf4\xd1\x9d\x3f\xb9\x4d\xc3\x08\x68\x11\x27\xde\xec\xd8\xf9\x4e\x28\xc9\xde\xd2\x0f\x35\x29\x3a\xd8\x3c\xe6\xfe\x18\xfd\x35\x5f\x4f\x69\xe1\xc5\xdd\xc1\x63\x4a\x44\xed\x92\x52\xe9\x9a\x99\x28\x4e\x77\xcd\x92\x71\x5c\xf5\x51\x32\x23\x1d\x56\xd0\xae\xf6\x16\xae\x9b\x17\x1c\x50\x85\xde\x92\x3d\x51\xac\x1e\x49\xbb\x7a\x7a\x7d\xc4\x27\xb0\x6d\xd7\x5c\x23\x98\x3d\x64\x86\x61\x2c\xed\x14\x08\x51\x59\x5c\x05\xb6\xe3\xa8\x42\xdb\xfc\x71\xa5\xd8\x33\x37\xd7\x2a\x62\x33\x4c\xd2\x1c\x79\x28\x87\xb7\x39\x8d\x18\x4f\xaa\x0f\x8a\xd9\x9f\x68\x19\x66\x3c\x2e\x89\x15\x5b\xb0\x36\xef\xea\x5e\x06\x86\x27\xf1\xbf\x78\xd8\xeb\x46\x37\x49\x62\xcc\xac\x40\x56\x7d\x92\xfd\x42\x0d\x4d\xce\x3c\x50\x04\xcd\xd2\x17\xc6\x19\x75\x47\xb9\xbc\x5c\x2b\x00\x4e\xf5\xc4\x14\x5a\x32\x8c\xec\x1e\xe4\x08\xe0\xd1\xdc\xd6\x9a\xdb\x8c\xb6\x80\x43\xbd\x1d\x76\x5c\xe4\xdb\xc8\xbb\xe6\xcf\x28\xce\xf3\x47\x80\x6f\x93\x84\x4e\xb9\x1a\xe0\xd2\x9e\x50\xc1\xe3\xc3\x40\xb1\x8c\x6c\x9f\xf8\xf6\x9d\xe3\x9a\xa9\xe9\x1a\x79\x8c\xc2\x8a\xf3\x49\xdd\x7a\x26\xcd\xc3\x6e\x64\xe1\x49\x70\xdf\x9d\x82\x16\x34\x55\x8b\xfc\x2f\x8e\x7d\x9a\xfc\xd4\x78\x2b\x7d\xb4\x7c\x61\x37\x89\xb3\x62\xc8\x65\x7c\x9c\xe4\x9c\xad\x44\xdc\x84\xda\x26\xa2\xed\x59\x07\x3a\x1e\x9a\x30\x8e\x4c\xdc\x6b\xfa\x14\x03\xa7\x6e\x51\x3b\x3a\x46\x8b\x0c\x56\xee\x4e\xa0\x70\xd3\x45\x27\xcb\xcb\xed\xc6\x64\x85\x8a\x2b\x7c\xde\x31\x8c\xaa\x2c\xea\x97\x5e\x20\xe3\x83\x4a\x1d\xab\x17\xf0\x8d\x16\x97\x30\xc3\xc2\x46\x0d\xc5\x77\x76\x4a\x7b\x29\xa7\x6a\x71\x23\x45\xcf\x69\xf4\xc2\xe5\x40\xb0\xa2\x55\x96\x25\x94\xdb\x3a\x19\xf4\xf1\xa1\x89\x43\x90\xc1\x97\xbb\x64\x93\x7c\xee\xcd\x9b\x5a\x02\x28\x4d\xca\x55\x3a\xa3\x33\x54\x58\xd8\xd8\x00\xef\xd0\xef\x21\x2c\x38\xa2\xf5\x03\x1e\x04\x02\xbc\x4a\xcd\x68\x1a\x0f\x8e\xf3\xcd\x35\x80\x78\x49\xfe\x1b\xaa\x6b\x83\xda\x1e\x43\x51\x16\x47\xac\xd1\x80\x7f\x0f\x23\x7b\x18\x47\x26\xdf\x8c\x55\xaa\xf3\x01\xad\x19\xa6\xd5\x23\x87\x43\x7a\xd5\xcb\xdf\x75\x09\x2c\x05\x8e\x56\x04\x52\xaf\xd1\x1e\x14\x4e\x3e\x3a\x76\xa4\xeb\x9d\x76\x09\xa7\xec\x94\xa1\xce\x93\x6c\x10\x96\xb1\xa0\x97\x78\x62\xaa\x20\xd7\x04\xb2\xb0\xc0\x28\x08\x26\x76\x10\xec\xb8\xb6\xca\xd9\x00\xba\x49\x38\x02\xaf\xd2\x36\xe4\xeb\xc0\x43\x98\xff\x48\x75\x05\xfc\xd1\xd8\x27\xca\x86\x1b\x4f\x94\x7f\x84\x4d\x83\x58\x1b\xbf\xbe\xbd\xad\xb0\x75\x22\xdc\xe9\xd8\xca\x5d\x86\x1e\xe9\x76\xac\x75\x88\x8c\x33\xd9\x1c\x85\xe7\x28\x00\xdc\xa4\xcd\xcd\x15\xcb\x89\xe7\xaf\xbd\x3f\x56\xb2\x87\x67\xc8\xab\x83\x85\x3d\x8e\x59\xc1\xca\xfc\x2b\xdd\xb5\x7a\x85\x5e\x0f\x41\xdf\xdd\x1a\xcd\xe6\xc5\x56\x77\x23\x0e\xbb\xb4\x33\x15\x55\xf8\x01\x0f\xb9\x73\x41\xc4\xed\xad\xdd\x7c\x0b\x0b\xcb\xad\xc5\xc5\x03\x4d\x85\xbf\x78\x83\x46\x10\x5e\xdc\x45\xc5\xb0\x74\xbd\x0e\x73\xb9\x1e\xc6\xb1\x75\x82\x47\x4e\xc6\xaa\xfc\x36\x69\x0f\x75\x4a\xd5\x26\x37\xa4\xe1\x4f\x0f\x8a\xc1\xff\x7d\x0d\xa9\x14\x85\x44\x58\xc4\x13\x75\xdc\x3b\x5b\x20\x8c\x9c\x6b\x0e\xbc\xab\x7a\xa1\x2e\xc5\x4e\x4d\x1e\x52\x41\x12\x91\x37\xad\xf8\x16\x88\x63\xd7\xb3\x6b\x89\xeb\x81\xc0\x6e\xb9\x1f\x28\x67\xe5\xbe\x12\xd6\xf8\xc2\x97\x66\xb4\xb2\xeb\xf7\xf0\x2a\x70\xe3\x7f\x8c\x6c\x83\xa3\xd3\x71\x61\xcc\x2d\x45\x89\xb4\x1a\xc6\x5f\x0b\x1b\x1a\x85\x4e\xa3\x2d\x88\x74\x89\x37\x3b\x26\x87\xab\xe2\x14\xf2\xdd\x94\xbc\x59\xc7\xc9\x37\xb2\xe9\x9a\x4d\x33\xab\x14\x04\x31\x8d\x7c\xed\x70\xb0\xdd\x28\xb4\x71\x6e\x23\xf6\x84\x44\x4a\xb8\xa1\x18\xc3\xb7\x2e\xb6\x97\xe7\x0f\xb6\x7a\xeb\x26\xed\x37\x54\x66\x88\x1b\x76\x84\x4f\x42\x49\xa1\x98\x61\x18\x6d\xec\xc6\x28\xa9\x5e\x51\x29\x12\x80\x51\x7e\x73\x42\x66\x07\x29\x9f\xeb\x14\x1d\x8a\x7e\x1c\x1d\x96\x18\x0f\xc4\x72\x4c\xd5\x1a\xe8\x50\x98\xea\x56\x9c\x97\x85\x13\x8e\xf3\xe2\x7d\x55\x84\xff\x46\xad\xe4\x48\x37\x4a\x32\x09\xff\xa5\x67\x82\x7e\x12\xdd\xb9\x50\x01\xc3\x8e\xda\xde\xf6\xd1\xe9\xba\x89\x56\x93\x22\x47\x32\x16\x2e\x1b\x5b\x73\xbe\x51\x43\x10\x27\x79\xd8\xb5\xd4\xb6\x24\x24\x9e\xa5\xb9\x11\x3a\x87\x72\x63\x73\x0a\x95\x16\x89\x2b\xbb\xcf\xb9\x12\x7c\x5d\x0d\xcc\x1e\xea\xda\x28\xa2\xe6\x75\xc7\xd3\xfa\x3e\x0d\x0a\x5f\xd7\x75\x55\xaf\x44\x61\x9e\x0b\x2f\x2a\x07\xc2\x34\x44\x12\x14\x8b\x77\x46\x0a\x36\x7c\x08\x89\x07\x49\xb3\x86\x27\xe5\xc2\x8a\x10\x22\xfa\xec\x99\xe9\xe6\x85\x89\xa2\x0d\xc2\x4b\xc0\x73\x62\x95\x6a\x47\xe1\xf9\xfc\x57\x1c\x03\x68\x39\x9d\x42\x00\x4a\x5f\xc8\x5d\x3e\x81\xf2\x97\xcf\x52\x98\xcc\x9f\x56\x24\x0b\xd3\x87\xc1\x9a\x81\xd6\x93\x60\x22\xbc\x0b\xcb\x72\x30\xdc\xb1\x56\x09\x34\x16\x17\x5b\x71\x12\xdb\x7c\x60\x23\x26\x53\xfe\xea\x54\x13\x84\xb0\xed\x54\x19\x2d\x96\x5a\x91\x35\x69\x2c\x0d\x85\xc2\x59\x43\x8b\x87\x6f\x9c\x4d\x59\x49\x29\xa9\xd8\x50\xaa\x85\x6f\x6a\x30\xd1\x9b\x4a\xd9\xc7\x14\x59\x9e\x9a\x88\x5d\x0c\xf7\xe6\xaa\x9b\xf5\x62\x2d\x77\x8d\x59\x53\x8a\x3b\xc2\x4e\xaa\x3a\x8d\xaa\x20\x47\xe2\x99\x18\x45\x56\x4c\xb7\x13\xc2\xf5\x58\xb4\x91\xd2\xbf\xe8\x14\x1b\x8f\x50\x5a\x51\xd8\x0f\x28\xad\x28\xf4\x07\xaa\x0d\xfd\x7d\xca\xbf\x08\x85\xb9\xef\xde\x42\x06\x0e\x39\x1a\xf8\x8a\x7c\x1d\x28\xf2\xa2\xd3\x9a\x87\xe2\x74\x9d\x71\xa3\xcc\x5f\x28\xa3\x89\x20\x03\x2b\x9f\xaf\xab\x09\xcb\xf9\x72\x92\x47\x69\xd2\x67\x40\xa7\x44\x8f\x0a\x4b\x58\x43\xc5\xd0\x4a\x8a\x9c\x0a\x82\x0d\x45\x1b\x0a\x6c\xb7\x64\x56\x7d\x6e\xa5\x67\xfb\x36\xee\x65\x08\xd7\x35\xfc\x17\xcb\x10\x3e\x09\xd2\xb9\x6f\x2a\xc0\xd2\xc8\x6c\x24\x05\x69\xb2\x2f\x6e\x12\x91\xcf\xe6\xdd\x1a\x76\xc4\xc5\x96\x89\x4d\x94\xac\x28\x5a\x68\x9d\xe4\xfa\xa1\x22\xb6\xcb\x6c\xcf\x60\x0d\x60\x69\x7d\x30\xf6\x00\xb6\x0f\x2a\x99\x95\xb9\xb9\xd6\x4a\x12\xf5\xa8\xea\x86\x45\xfb\xdd\xb1\xd2\xe4\x44\x0a\x47\x78\x0c\xc5\x41\xed\x94\x86\x47\x69\x07\x5e\xa2\x7a\x81\x14\x12\x5c\xd3\xa9\xe9\xae\xae\x9b\x14\xea\x65\x70\x94\x1e\x4c\x21\x68\xbd\x4e\x40\x55\xd8\xe7\x95\x57\xd0\x9e\x5d\x2e\x68\x7a\x38\x14\x42\x66\x14\xe8\x71\x73\xac\xc0\x32\xc7\xc7\x15\x30\xdc\x81\xd2\xbe\xef\x2d\x3f\xeb\x1d\xd5\x25\xf6\x69\xde\xc2\xc6\x00\x78\xfe\x36\x1c\x63\xd1\xf4\xf6\xb1\xd4\x6d\x55\x87\xb8\x3f\x9e\x12\x6d\x57\xbd\xaa\x80\xd8\x21\x13\xb5\x7d\xd2\xf0\x7d\x40\x80\x16\x20\xc1\x77\x19\x95\x25\x01\x88\xd2\x66\x81\xab\x75\x45\xe7\xf6\x39\x9d\x20\x9e\x68\x39\x42\x88\xb3\x6e\x42\xf0\x1a\x1e\x08\xa1\x1b\x9d\x92\x42\x24\x72\x0c\x4e\x6b\xfc\xc8\x58\x65\x23\x8f\xa8\x6c\x36\x97\x6c\xa5\x1d\xaa\xaa\x2f\x38\x34\xab\x2e\xe5\x84\x24\x1e\x90\xfd\x78\x88\xbb\xca\xed\x38\x5f\x09\x56\x17\x16\x5a\x61\xdc\xc7\xd3\x90\xe2\xa6\x57\x65\x0e\x7c\xc0\xf8\xba\xd6\x6b\x29\xb2\x30\xb6\x59\x66\xb3\x47\xcb\x41\x47\x9a\x9e\x21\x00\x22\xd4\x56\xce\x19\xd2\xe5\x47\x68\x9c\x11\xfd\x7e\x08\x33\xcb\x92\xde\xf4\x58\xf0\x17\xee\x69\x1a\xcd\xf3\xe3\xa9\x9e\x36\xc5\x13\xfc\x9b\x63\xaf\xb3\x78\x72\xbc\xb5\xef\x7b\x6e\xae\x65\x90\x4f\x75\xfb\x78\x79\x9f\x83\xf1\xd7\x20\xc4\xa2\x22\x76\xe8\x24\x1c\x90\x27\xf4\x69\xa9\xb3\xaa\x2f\x3f\xbf\x0c\xbb\x85\x30\xf3\x2e\x8e\x3a\xbe\x81\x85\xe6\x98\x39\x4d\xed\x28\x0f\xf3\x30\x29\xb2\x08\x5d\xe8\x8e\xcb\x63\xd1\x4b\xf0\xd4\xb0\xce\x94\x7e\x81\x87\xf5\xd7\xc1\x49\x14\xa0\x7a\xc5\xee\x6e\x38\xb2\xf8\xfb\x1a\x09\x7b\x85\xea\x86\xaa\xa8\xaa\x32\x1e\x2f\x49\x77\xe0\x1e\x64\x4f\xa4\x69\x4a\x91\x0f\xec\x6a\x7b\x0e\xcd\xe6\x44\xe5\x8b\x37\xb5\xa4\x1d\x96\x14\x79\xfb\xbf\xf4\xe9\xb6\x02\xbc\xa5\xe1\x5a\x69\xe1\x3d\x1c\xeb\x08\xfc\x3a\xbe\xa9\x73\x6e\x32\xdb\x4d\x89\x13\xd7\xf7\x7e\xa3\x83\x56\xc0\x9f\x5b\x01\x15\xbd\x06\xb2\x42\x4e\x65\x7e\x69\x59\xf8\x40\x2e\x07\x9a\xee\x7d\xcd\x66\xf9\xd0\xc6\xf9\x5e\x3a\xf1\x5c\x15\x64\xbf\x23\x50\x2b\x97\xe9\xe6\x4d\xf2\x61\x11\x6a\xbe\xae\x44\x97\x80\x72\x67\x5a\x4e\x80\xf7\x85\x4e\x5b\x41\x6d\xb6\xb7\xa7\xb5\x18\x97\xe6\x0f\xf2\xb1\x09\x4e\x05\xf8\x95\xb3\x6d\xd5\xf5\xf3\x1a\x66\x05\x37\x7f\x41\xb3\x22\x55\x57\xda\x1e\x5c\x66\x42\xa3\x91\xf3\xd3\x3d\xe9\xc9\xb7\x2a\xf2\x62\x92\x1f\x0a\x63\xd2\x07\x3f\x84\xc8\x04\xb9\xb1\xdf\xa5\xb1\xe4\x6b\x95\xda\xed\x14\x61\x94\xef\x28\xdd\x3a\xd7\x2e\xb7\xbc\xcf\xe3\xf8\xf7\x4b\x79\x90\x29\x10\x9d\x57\xb7\x2c\xc4\xeb\xbf\xa1\x2c\xd4\xd9\x1a\x9a\x88\x96\x29\x7a\x21\x70\xff\x48\xba\xfe\x39\x0d\x2e\x5f\xd7\x51\x28\x1d\x80\xd6\x74\xd6\xd0\x4a\x67\x1c\xca\x8b\xee\xd9\xa3\x6e\x31\x3c\xfb\x18\x6d\x48\xa7\x33\xe5\x80\x62\x0f\xc6\x9e\x99\xf0\x06\xc6\x1a\x25\x22\xce\x95\xc1\x96\x70\xc2\xc0\xf1\x37\x38\x3c\xef\xa9\xb1\x76\xab\xb8\xe1\x04\xe3\x02\x9e\x3f\xd8\xe1\xc6\xc4\xa3\xe0\xb7\x51\x83\x97\x30\xcd\x54\xc3\x7c\xdd\xb4\xce\x36\xee\xaf\xe5\x3f\x7e\xae\x55\xc4\x91\x35\xd9\x00\xcc\x19\x70\x45\x36\x03\x5a\x5c\xf0\xd5\xde\x18\x4f\x01\x9c\xf6\x7b\xf8\x8c\x56\xda\x88\xbb\x36\x7d\x54\xb5\x7a\xb0\x4a\x0a\xdf\x8c\x7d\x5a\xe4\x14\x79\x25\x9a\x04\x1e\xb1\xd3\x07\x0a\x15\xc3\xc5\x32\x29\x76\x2a\xc1\xf2\x0f\x03\xdf\xac\x71\x9f\x26\x02\xf0\x80\x93\x75\x68\xab\x11\xf3\xdf\xd7\x49\xfd\xf8\x67\xb7\x87\x46\x49\x06\x9c\xa0\xc4\x0d\x5e\xfc\xe3\x98\x73\xd0\xb3\xbc\x18\x76\x22\xdb\xf4\x1d\xa0\x77\x60\x6f\x44\x80\xd9\x47\x66\xb7\x5d\xbd\x3a\x8c\x73\x22\x4c\x20\xfd\x39\x1f\x68\xeb\x80\xe3\x4d\x05\x4e\xbe\x5e\xd5\xd4\x9e\x6f\x8d\x92\xcc\x25\x1b\x10\x68\x9d\xd5\xb8\xaa\xb3\x4a\x3b\xcc\xa6\xdc\x40\x8b\xd0\x94\xe3\x4d\xbe\xf1\x6f\x92\xac\x85\x36\xcf\x76\x60\xed\xa1\x55\xe5\x19\x4a\x50\x69\xd1\x0d\x47\xf9\xe9\x51\x50\xa7\x71\x40\xc2\x68\xfc\x2b\x7c\x39\x7a\x18\x66\x26\x9e\xf3\x77\x44\xb9\xe8\x70\xe4\x43\x0d\xd7\x4a\x5f\x3e\xb5\x97\xc0\x73\x51\x43\x9a\xac\xda\x5d\xf4\x3b\xac\x70\xa4\x95\xbd\x51\x6b\x87\x73\x77\x4b\xb3\x56\xbf\x4f\x3e\xd2\xe6\xe9\x80\x8c\x32\xf6\x26\x7a\x16\x9c\xdc\xd9\xfe\xc5\xcd\xd3\x35\x8a\x90\x8b\x54\x09\x8a\x24\x2e\xe3\xea\x00\xce\x59\x29\x15\x3c\xbd\x55\xc8\x72\xa9\xf5\x73\x4d\x45\x54\x74\x1e\xeb\xdb\xf5\x90\x3b\xd7\xeb\xf7\x6b\x88\x84\x96\x5a\xa3\xc1\x46\x16\x76\xc3\x2c\x6f\x28\x94\xd0\x6b\x2a\x9b\xfc\x5a\xe5\x63\xa8\xf3\x95\x31\xa7\xf4\xc1\x20\x57\xfc\xae\x92\x1a\x7f\x57\x09\x37\xa6\xe1\x4a\x36\xe3\xfb\xda\x36\x03\xff\x4c\x10\xcf\x82\x61\xf9\x7f\xe9\x14\x80\x39\xb8\x5d\x33\x38\x5f\xa5\x86\x9a\x81\x4d\x2d\x2a\x9c\xd8\x07\xdf\x54\x7b\xe2\x9b\x81\x56\x1a\x8b\xf2\x57\x3b\x45\xba\xa2\xc8\xb7\xcf\x6b\x60\xca\x79\x55\x6d\x1d\x84\x2b\x2b\x61\xcc\x36\x17\xd6\xfc\xa4\xb2\xec\x27\x5d\x63\x71\xcf\x0e\x79\xe9\x30\xac\x42\x71\x05\x9f\xd4\x74\x2b\x45\xb7\x6b\xb3\xac\x5f\x44\x3b\xcb\xc7\x83\x51\x61\xe2\x09\x2c\x25\xa6\xb4\x10\x99\x04\x2c\x79\x89\x76\x3d\x39\x00\x1a\xb8\x71\xe6\xde\xa1\x04\x84\x34\xce\xfb\xc4\xc5\xba\x35\xab\xa5\x2f\x4a\x69\x1a\x06\xe0\x93\x2d\xc3\xa6\x6e\x90\x63\xcf\xd7\x64\xbc\x61\x25\xfe\xf7\xb1\xe2\x54\x79\xa0\x10\xfb\x91\x35\xab\x22\x5a\x07\xcf\xf1\xa2\x62\xf3\xb8\x58\x93\xa2\x3c\xd0\x82\x00\x2a\xd6\x10\xa6\xf9\x34\x7d\x86\xaf\xa7\x12\x1e\x69\xba\xf1\x0c\xbc\x17\x06\xad\x8c\x95\xb2\xdf\x45\xec\x1a\xf8\x5b\xe7\x03\x85\x12\x3f\xab\x79\x05\xfe\x80\xc8\xee\x30\x3d\xb7\x29\x0d\x2d\x35\x74\x3a\x10\x71\x28\xdc\xa5\x15\x05\xff\xf0\x28\x76\x28\xbe\xea\x7a\xa0\x8a\x8d\x3f\x0a\xf4\xe0\x03\xab\xc7\xa5\x38\x44\x57\xf0\xe7\xb9\x40\x80\x9b\x3b\x94\x1e\xc7\xe4\xfd\x05\x4d\x97\xa8\x05\x36\x1c\xb3\xe0\x0c\x3c\x47\x57\xf3\x72\x42\xb9\x57\x68\x72\x04\xca\xe5\x8a\x8a\x89\xe7\xe5\x84\x89\xe3\x71\xe1\x9b\x3a\x92\x46\x7b\x68\x04\x0d\xf7\x86\x63\xbb\xde\x0d\x66\x0c\xbe\xa9\x70\x6d\x2f\x2e\x96\x0e\x64\xdc\x73\x0c\x6e\x18\x9d\xb3\x70\x70\xf8\xa6\xae\x99\xc7\x46\x99\xc5\xe6\x2b\x5f\x04\x96\x16\x02\x39\x7c\x5d\x57\xb3\xfa\x9a\x5d\x67\x57\xe6\x00\x17\x0d\xbf\xcd\x83\xcd\x77\x95\xb5\xe4\xca\x86\x43\x62\x9f\xc5\xc6\xe1\x7c\x13\xdf\x28\x69\x1f\x93\x65\xc5\x10\x27\xa4\x0a\x5c\x97\x5c\x53\x92\xa4\x8a\x63\x93\xa6\xc9\xba\xc3\x46\x60\x71\x1d\x57\x8d\x34\xc7\xbd\x74\xc6\x9a\x4d\xcd\x0a\x0b\x97\x8b\x4e\x34\xcd\x03\x0c\xdb\x43\x98\x57\xb8\xca\xd7\x2b\x91\xe4\xfe\xc5\xf2\x7f\x57\xb3\x9c\x29\xc9\x35\x65\x0b\xc3\x92\xf8\x46\xd5\xbf\x52\xbb\x66\xe3\x02\x33\x22\x40\xe1\x9b\xf8\x1d\xbe\x71\xd0\x0d\x1b\xd9\x15\x13\x43\x54\x1e\x16\x62\x16\x61\x8c\x3b\x21\x9d\xab\x79\xaf\x4e\x48\x38\x4b\xa2\xb0\x1b\xe6\x80\x08\x4a\x33\x99\xee\x2c\x53\x09\xfe\xd8\xae\xc1\x75\x12\x5c\xc8\x36\x8a\x8b\x5c\x52\xa1\xfc\x14\xbc\x96\x7f\x86\x87\x85\x29\x79\x52\x85\xdd\xcc\x8b\x80\x75\xb5\x1d\x48\x21\x4d\x92\xc8\x65\x9d\xb1\xaa\x0e\x9f\x50\xf4\x3e\xdf\x0f\xbc\xb4\x87\xe8\x29\xec\x54\x2c\x5e\xe7\x69\x57\xc9\xb5\x02\xcc\x9d\xd4\x1c\xdb\x0f\x03\x45\x60\x79\x47\x79\x76\xb7\x95\x8d\x3f\xea\x30\xe6\xc3\x24\xce\x07\x4c\x4a\x0e\x1f\x0e\xef\x2d\xed\xa6\x8a\xcc\xf7\xae\xea\xd9\xca\x92\x78\x03\x34\xd5\xce\xd3\xff\xc2\xcb\xce\xd3\xa7\x0f\x21\x35\xf3\x3f\xf0\x16\x70\x00\x15\x97\x58\xfc\xb8\x56\x21\xcd\x0c\xb7\xa8\xb9\x2a\xfe\x92\x73\x35\x58\x83\x56\x16\x0e\x47\x11\xdc\x3a\x17\x9f\x95\x46\x11\xa6\xeb\x7d\x24\x6d\x90\x4c\xba\x5f\xa7\x11\xd0\x29\xfa\x7d\xa6\x66\x13\xe1\x02\x5f\xb0\xa8\xa2\xe5\x41\x1c\x52\xb0\x3e\x0b\x8b\xdd\x05\x5e\xcb\xa0\xca\x14\xeb\xba\x7a\x07\x76\x07\x0e\x02\xa7\xe2\xae\xd8\x58\x1a\x8e\x5f\x0b\xed\x1b\xe4\xde\x9c\x7d\xa6\xad\xf4\x81\xd9\x5f\x45\x1d\xde\xab\x35\x0f\x4d\xbc\x1a\xc6\x3d\xa5\xb4\x04\xb5\x59\x01\x58\x38\xbc\xd4\x20\x0d\x63\xb0\x5f\x22\xfb\x74\x2f\xf0\xfd\xc1\xf7\xea\x38\xa7\x47\x69\x32\x24\xf1\x0a\xe4\x99\x58\x94\x5e\xd5\xe1\x91\xe5\x43\xe3\xc8\x85\x3a\x58\x7b\x36\x4a\x2d\x12\x90\x38\x1a\xdf\x51\x2c\x5c\xef\xb8\x34\xa5\xc9\xba\x66\xc4\xc6\x63\xea\x55\xf9\xa6\xa6\xd1\x6c\xa9\xd5\x0f\xa3\x2d\x6c\xd8\x47\x15\xe8\xb2\x5c\xe0\x1e\xd5\x98\xf6\x1e\x6d\x38\x16\xcc\x3f\xa1\xbd\x88\xd2\xed\x61\x1c\x8d\x38\x0c\x4f\x21\x2b\x82\xc3\xe4\x5d\x05\xbf\xe2\x22\x0a\xf2\xa6\x7f\x80\x47\x93\x62\xa4\xcf\xb0\x08\x79\x89\xd4\x2c\x3d\xff\xfe\xe1\x3a\x19\x75\x3a\x5e\x4c\xc7\xd5\xa6\x98\xdb\x24\x50\xe5\xd8\x6a\x0b\xd2\xf2\xbe\x56\x6a\x09\x69\xd5\x54\x9b\x8f\x85\xe1\x24\xd5\xdd\x70\x0c\xb2\xaf\x29\xb1\xa0\x41\x18\x45\x60\x0a\x2d\xdf\x18\x4e\xd1\x29\x64\xe7\x30\xcc\x48\x82\xc3\xc3\xff\x2d\x1c\x02\x00\xb8\xdf\xad\x1c\xc6\x0b\x0b\xc4\xc9\x3c\xec\x44\x1b\x33\xbe\xcf\x84\xc1\x44\xf2\xd5\xe5\xfb\xeb\xce\x4b\xa6\x40\x73\xeb\xb6\x67\x36\xf2\x90\x49\x83\x00\x9f\x00\x64\x8a\xaf\xc7\x9f\x76\x8f\xbe\x16\xf6\x6c\xd2\x2d\x7f\x31\xcf\x59\x97\x10\x96\x78\x93\x3e\x20\xef\xaa\xf8\xfe\xef\x2a\x0d\xd9\x91\x4d\xb3\xc2\xf4\xd8\x6f\x70\xf4\x8b\xbe\xd9\xf8\xa2\x33\x86\xbd\x30\x22\x41\x00\x07\xfb\xbb\x44\xe6\x59\xfa\xcc\x24\x9c\x2c\xe2\xb0\xcf\x18\xde\x86\x07\x9c\x33\xaa\x5a\x66\xa1\x26\xfc\x38\xd0\x0a\x63\x92\x4c\x97\x93\x52\xba\x14\x54\x6a\xf1\x74\x1d\x8d\x7b\x6a\x3b\x26\x17\x1f\x06\xe3\x78\x0f\x07\x00\xdf\x54\x7e\x6d\x79\x5f\x19\xf4\xda\x95\xd4\x38\x36\x49\x07\x21\x59\x58\xd8\x9c\x6d\x2b\x1a\x84\x33\x75\x65\xf8\xa4\x93\x75\x8b\x14\x63\x21\x3e\x59\xf9\xae\xe2\xac\xf9\xb8\x31\xb5\x99\xcd\x81\x11\x11\x62\x03\xd5\xcc\x7a\x51\xa1\xbc\x99\xda\x16\x2e\xc1\x0f\x2b\xa9\x82\xfd\x8b\xad\x6c\x58\x4c\x71\xc3\xfe\xba\xae\xa6\xfd\x7a\x8d\x58\xde\x52\xab\x63\xb3\xbc\x49\xb9\x3a\xc4\xa3\xa7\x50\xed\xe2\x96\x61\x95\x18\x3a\x13\xb8\xee\x65\x6b\xd2\x47\x68\x2c\xdd\x2c\x3b\xaa\xf0\xcf\x62\x64\x60\xd3\x80\xb7\xe1\x0e\x15\x38\xb8\x82\x42\x55\x02\x62\xaf\xd3\x22\xc1\x96\xe5\x64\x04\x56\xe1\x6d\x25\xc1\xbf\x67\x52\x27\x34\x6a\x78\x84\x61\x41\xb0\x9c\xf9\x7a\x2a\x88\x30\x66\xa5\xc1\xa0\xf9\xf2\xb9\x37\x2f\x07\x8f\x79\xc5\xc7\x64\x7d\x07\x3d\xf3\x94\x8e\x34\x60\x31\xc7\x54\xc3\xd4\x99\x40\x29\x52\xa1\x58\xeb\x82\x4a\x97\xd7\xfa\xff\x54\xbe\x90\x5c\x3b\x12\xab\xc7\xf8\x5d\xd7\x7a\xe0\xb7\xd0\x9e\x80\x30\xe6\x11\x24\x8a\x10\x75\x7d\x03\x45\x13\x9c\x2b\x57\x14\xe1\xf8\x89\xb1\x27\x87\xb8\x4d\xf5\x02\x27\x41\xb3\xb8\xc8\xb6\x86\xcb\xcb\x52\x5a\x57\xfa\x24\xdf\xd0\x88\xe7\x0e\xbb\xd9\xc8\x65\x5d\x51\x50\xcb\x2b\x75\x89\xf6\xf5\x41\x98\xe7\xae\x10\xc9\xa8\xe2\xb1\x62\xea\xbb\xa1\xaa\xa7\xa3\x22\x7f\x8c\xcc\x22\x3c\x08\x00\x0b\xb8\x2e\x4a\x81\x10\x5c\xba\x99\x89\xe6\x18\x52\xde\xf5\xe5\x29\x76\x32\xac\x66\xee\x0e\x21\x3f\x01\xd7\x97\x01\x85\x80\x57\xfb\x9a\xa6\xc7\xb8\x84\xf1\x83\x03\x36\xd3\x56\x5c\xce\xd7\x54\x3b\x72\x6c\x57\x12\x4a\x69\xc5\x2b\xb3\xde\x08\x5e\x9f\xee\xec\x50\xc4\x34\xd7\x75\x52\xf7\xba\x02\xb9\xbc\x51\x5b\xa3\x8e\x4c\x11\x43\x28\xcf\xab\x8f\x5c\xd3\xec\x95\xd7\xc6\xc2\xce\x1f\x99\x78\xa5\x08\x33\xf7\xc7\xf0\x49\x59\xbe\x93\x6f\x2a\x8e\xdb\xc2\x42\x6b\xc0\x1c\xbf\x0e\x7a\x0e\xaa\x79\xc1\x73\xd5\x11\xee\x9b\x9c\x94\x81\xb4\xbe\xf1\x39\xa5\x34\x74\x6e\x0a\x0c\xdc\x4b\x56\x1a\x2a\x7a\xe1\x07\xe2\x1b\xe7\x7b\xf4\x8b\xaf\x85\xd9\xac\x87\xcc\x31\x8a\x91\xa6\xef\xbf\xdc\x4b\x58\x30\xe0\xf9\xa4\xf3\x09\x7c\x80\x3f\x05\x27\x93\xa5\xd3\xc6\xbb\xf8\xdb\x5e\x55\x59\x89\x89\x42\xc9\x5e\x09\xa6\xe4\x97\xb4\x80\x92\xca\xc2\x5c\xfe\x44\xb5\xc5\x6e\x12\xf7\x6d\x6a\xe3\xae\x55\x85\xe5\x07\xf8\x2c\xdf\x28\x1d\xdb\x6c\x64\xbb\x74\x42\x39\x1d\x5b\x95\x45\x9c\x77\xc2\x41\x2a\x7d\x44\x05\x19\x93\x6e\xec\xd4\x6a\x0c\x1a\x25\xfa\xf4\xc4\x1f\x74\xb3\x94\xa4\x54\x58\x68\x1e\xae\x6f\x8c\xc9\xda\x22\xd8\xfd\xb1\xe6\x99\xd8\xde\x56\xbd\x5e\x03\x6b\xd3\x19\xef\x5c\x5d\xc2\x8e\xc7\x26\xe7\xf0\x4e\xf3\xe5\xa1\xce\x72\xb2\x12\x7b\xce\x1f\x6c\x0d\x6d\x9e\x26\xa3\x24\x0a\x73\x86\x60\xd4\x32\x8f\xd7\xd8\xdd\x1e\x75\xa4\xbb\xb6\x6f\xd0\x90\x89\x5a\x95\xea\xe9\x29\x58\x53\x12\x01\xd4\xa6\x82\x18\x6d\x56\x76\x8d\x87\x00\x77\x10\x1b\x08\xb4\x9d\x1e\x46\xb0\xed\x35\x3c\x8f\xd9\x20\x19\x8d\x64\x27\xa8\xe2\xa8\x68\xe7\xdc\x53\xc9\xc5\xb5\x24\xcb\x14\x88\x85\x29\xb7\xf8\xa6\xf2\xe5\x8b\x8b\x07\x5a\x5d\x02\xb4\xf0\xd6\xc4\x72\xbd\x8d\x7d\xcc\x37\x75\xc5\x8b\x7e\x9a\xe4\x03\xbc\x05\xca\xdd\x80\x25\xf2\x75\x1d\x07\x24\xa7\x00\x13\x16\xe2\x12\xbd\x71\x3f\xc6\x97\x82\x3d\x4a\x10\x3d\x83\xdf\x28\x1d\x48\x8a\x7e\x81\xe9\xc6\x60\xc1\x3e\x86\x91\xe4\x1b\x35\x33\x4b\xcb\xff\x18\xd8\x60\x1c\x32\x37\x03\xb5\x37\x9f\x3f\x4a\x28\x07\xe1\xa2\xd9\x33\xc5\xac\xfe\xa4\x96\x0e\x3e\x0d\x4b\xcb\x2c\x79\x94\xa7\x62\xee\x5b\x3a\x1d\x45\x0f\xd5\x63\x4f\x98\xca\x02\x6e\xe3\xdd\xb1\x07\xb5\x9e\x84\xcb\x83\x08\xe9\x8f\x02\x45\xc2\x04\xae\x43\x1c\x6e\xac\x0d\xe2\xd8\x47\x1d\xe2\xed\x07\xf4\xc4\x4e\x04\xb9\x1c\x41\xfe\xaa\xb1\xa2\x23\xfe\x37\x63\x05\x98\xbb\xe5\x9c\xd6\x15\x6b\x52\xf6\xf1\x36\x6f\x2b\x74\xe5\x09\x4d\xe0\x7c\xb6\x9e\x58\xd9\xf4\x58\x03\x5e\xba\xaf\x15\x9d\xac\xae\x2b\x85\x69\xb7\x40\x98\xe2\x58\xfc\xca\x37\x91\x36\xf9\xc7\x14\x86\x3f\x79\x4a\x01\x28\xf8\x90\x85\x6f\x81\x83\x11\xd3\x0c\xca\x4c\x04\xec\xbb\xa9\x96\xe6\x52\x19\x4b\x2f\x1e\xd8\xbc\xac\x18\x09\x4e\x04\x0a\x84\x7b\x6f\x3c\x9d\xb8\x5f\xde\xb7\xb9\x49\xf5\x27\xa4\x50\x1e\x20\x4f\x23\xf6\x8b\xe6\x01\xa5\x91\xbd\x4c\xdc\x04\xd3\xf2\xa4\xd7\xa2\xd8\xf3\xd4\x44\xa3\x4a\xc6\xd3\xda\x27\xcf\x7f\x85\xd7\xef\x15\x95\x88\x0b\xe3\x32\x04\x6b\xaa\x68\xe7\xd8\x14\x40\x89\x9e\x81\xb1\xa5\x95\xd8\xb5\xf4\xcc\x87\x23\x88\x5f\xbe\xb4\xcf\x37\x57\x3b\x86\x97\x0b\x63\x0f\x31\x4b\xd6\x6c\x9a\x0f\x52\x91\x0e\x67\x28\x7f\xe0\x53\x4e\x55\x12\xb1\xf9\x83\xad\x0e\x61\x07\xc9\x2f\x2e\x5d\x61\x24\x6b\xb9\x0d\x4e\x53\x83\x21\xd2\xbd\x36\xe5\x69\x46\xdd\x41\xc3\x17\x6d\x41\xd5\xc5\xd7\x95\x25\xf4\xec\xb3\x2d\x1b\x27\xc5\xca\x40\x77\xcb\xd3\xb2\x46\x14\x89\xb6\x25\xa1\xa4\xf1\x0d\xa0\x33\xea\x38\xc8\x4c\x9c\x9b\x59\x7a\x34\x84\xe7\x77\xc8\x33\x54\x59\x2e\xdf\x07\x4c\xe3\x8a\xf7\x6e\x12\xe4\x86\xff\x2a\xd8\xc2\xdd\x37\x7f\xb0\xf5\xf9\x27\x68\xd1\xb8\x90\xdd\x13\x83\xfe\x85\x4e\x73\x3f\x1c\x2b\xa2\xb7\x9c\x28\x4e\x39\x2f\x87\x3d\x2c\xe0\x8d\xf2\x9d\xe0\x38\xdf\x56\xc5\x01\x56\x6e\x71\x44\xc4\xcb\xfb\x36\xdf\x19\x2b\x35\xcf\xab\x94\x14\x53\x2c\x07\x52\xdb\xf8\x66\xa0\x21\xd8\xb7\x60\x3c\xe0\x64\x7f\x47\xab\x1e\x15\x29\x9a\x31\xf0\xd7\x78\xe4\x53\x7a\xeb\x9d\x0a\x7c\xd5\xb1\x17\x66\x5d\xfe\x4b\x09\xa1\xe9\x2f\x25\xb6\x16\x88\x72\xb6\x1a\x7e\x62\xcb\x74\x9d\x7e\x75\x94\x98\x18\xb5\x22\xe6\xfa\x0a\xbc\x5b\x70\xa1\xc2\xad\xc9\xaa\x9b\x4d\x5f\xdd\xfa\x00\x63\x8c\x4a\xc6\x35\xfa\x39\xac\xc8\xd3\xaa\xaa\xb3\x62\x63\x9b\x26\x05\x04\x61\x61\x2d\x41\x90\xcc\xd7\xae\x26\x95\x8d\x6c\x14\xd1\xce\xc1\x86\xfd\x90\x56\x28\x5f\x2b\xe9\x55\xc4\xd9\xd6\xd2\xc1\x3a\x7f\x90\x93\xdb\x20\x68\xe6\xeb\x3a\x31\xc2\x51\x11\xf9\xb4\x92\xb8\xd1\x0d\xd5\x39\xfd\x98\xda\x2b\xaf\x10\x5f\x37\x8c\xf3\x03\x25\xc1\xf7\x7e\xa0\xf8\xed\xbf\x05\x0f\x49\x80\x95\xb4\xac\xe0\xf5\x6f\x63\x93\x04\xc7\x13\xba\xcb\x8a\xdb\x73\x9e\x2d\xcf\x43\x22\xaf\x45\xa0\xff\x5d\x7a\x5b\xfc\x0a\x73\x50\xd1\xaa\x7c\x6b\xef\xc4\x53\x37\xd9\x08\x52\xbc\x18\x26\x57\xdc\x29\x9f\x42\x72\x82\xba\xa9\xba\x6f\x51\x0e\x75\x5d\xc3\x81\xc7\x29\x57\x59\xa2\xf7\x2f\x32\xa9\x4f\xfe\xd7\x8a\x37\xd5\xa0\x7e\x5c\x3d\xb3\x34\xaa\x38\x5b\xcf\xd0\x74\xf0\xb5\x2a\x11\xf4\xc3\x9e\x8d\xc2\x7c\x03\x26\x56\x0c\x88\xea\xc1\xf9\xe1\x58\xf3\x10\x5d\x53\x1f\x4d\xd2\x1e\xf1\x33\xcf\x34\x5c\x0c\xc5\xc4\xe8\x4e\xe4\xd9\x8d\x20\x90\x41\xa2\xa3\x24\x2b\x6c\x3d\x5c\xb3\x42\xc5\x81\x88\xee\xb0\x86\x14\x5e\x83\x83\x82\x7f\xf9\x15\x3a\xd2\x44\xca\xc2\xdb\x6d\xdf\x11\x09\xea\x58\x47\xac\xe4\xfa\x20\x1e\xaa\x82\x21\x20\xa7\xc8\x97\x6c\x9b\xf8\x42\xed\xa8\xe8\x44\x61\x36\x20\x9d\xeb\x4d\x8e\x5f\x60\xaa\x4e\x07\x2a\xd4\xfa\x41\xc5\x21\xdb\xbf\xd8\x5a\x0b\x13\x08\x78\x62\x8e\x04\xec\xde\x70\x14\x68\x47\xb4\xbe\x71\x41\x7a\x09\xc4\x77\xce\x0c\xa3\xb0\x92\xb0\xe3\xe7\x14\x9c\xff\xc2\xb8\x31\x7f\x70\x13\x22\xdf\xd2\x44\xd0\x5c\x02\x00\x40\x71\x32\xc1\xa4\xf1\xc7\x03\x35\x8d\xaf\xab\x9f\xed\x26\xc3\x51\x64\x0f\xa9\xf3\xe6\x9e\xae\xe8\x28\x64\xd7\xa8\x88\xc3\x6c\x30\xb4\x71\xde\x54\x0c\xd6\x27\xc7\x0a\x38\x07\xde\x7f\xfc\xfc\x9d\x60\x6b\xb7\x6e\xb9\xfe\xfa\x49\x6a\x87\x40\xaa\x8a\x43\x0c\x3b\x0e\xbe\x31\xbe\xae\xa4\xd2\x16\x16\xa4\xe0\x2b\x18\x7e\xee\x45\x0a\x7c\x6b\xcc\x61\xd8\x05\xfa\xfb\xd5\xb0\xd7\x54\xb4\xfa\x77\x03\x0d\x2e\xe2\x13\x0d\x39\x80\xd3\xaa\x1b\x78\x34\x48\x4d\xc6\x42\x8d\x4c\x76\x43\x4e\xa8\x10\xdf\x6c\xb5\xcc\x07\x5f\x6c\xf5\xa3\xc4\xa0\xfb\xd7\x79\xad\xca\x21\x55\x61\x4c\xd8\xa5\xfe\x70\x1c\xbe\x3f\x09\x3f\x00\x6b\x96\x33\x2c\x88\x08\x6f\x8d\xb7\x70\x9f\xb8\x83\x6e\x76\xa2\x02\xe9\xf7\xd4\x0c\x76\x6c\xf8\x35\x5e\x63\x8b\x7e\xb6\xcb\x75\x2a\x2b\xc7\x83\x48\x57\x36\x86\x31\x44\x5b\x67\xb4\x75\xc3\x76\x82\x01\x3f\x81\x43\x12\xa7\xe7\x9b\x63\x4f\x7c\x7e\x71\xfc\xa9\x2a\x10\x64\xfe\xe0\x13\xe5\xfe\x45\x0a\xea\x2e\x0c\x1c\x20\x49\x5c\x17\xc7\xf6\x80\x4f\xec\xb8\xb8\x97\x1c\xf4\x8f\xed\x82\xd4\x44\x3d\x84\x78\x13\xaf\x20\x80\x75\xda\x09\x30\xcc\xcc\xef\x81\x2f\xdb\x3e\xa1\xf0\x01\x03\x7e\x74\xec\xd1\xd3\x77\xc6\xca\x44\x1c\xa7\x00\x00\x1b\x9d\x29\x6a\x05\x1a\xbb\x47\xb1\x61\x86\xd9\x33\x18\x7d\xd7\x70\xfc\xf2\xf2\x3e\xf6\x39\xfe\x6f\xbc\x8e\x60\x17\xe8\x3b\xb0\x2e\xee\x92\x05\x83\x1b\x0d\x44\x1b\xec\xf6\x39\x8c\x06\xbe\x8b\x55\x86\x85\xa5\xb9\xe1\xc8\xc3\x81\x77\x44\x76\xf0\x31\x2c\x0b\xcc\xc3\x8f\x03\xcf\x65\xfa\xdd\x27\x41\x3f\x03\xc7\x71\x0f\x31\x33\xe0\xc8\x7b\x1f\x53\x87\x1a\x07\xa8\x76\xb0\xc8\x9f\x40\x1d\x14\x08\x9d\xab\xe0\xaa\x73\x71\x83\xef\x3e\x98\x99\x94\x43\x86\x7f\xb8\x87\x5c\x06\x4e\xb9\x99\x0a\xaf\xd5\xdc\x5c\xab\x53\x9e\xcc\x22\xb7\x8a\x11\xbc\xa1\x80\xc6\x37\x54\xa9\x63\x64\xd3\xae\x0d\xd7\x2c\x6c\x05\xdc\xbe\x43\x54\x55\x93\x4e\x55\x95\x68\xaa\xa4\xa6\xa0\x41\x3d\x94\x74\xbb\x38\xc2\x34\x3c\xe2\x09\xd7\x50\xb5\xb3\x48\xb0\x28\xbf\xc9\x69\xa3\xd4\x61\x2f\x29\x51\xa9\x51\x9a\xf4\x93\x22\xa6\xf0\xcb\x91\xc1\x1c\xc7\x20\xf0\x8d\x2b\xd2\xe7\x49\xd1\x1d\x4c\x77\xaf\xa0\xa9\x91\xaf\x27\x9f\x52\xb5\xf5\x6e\x1e\x46\x61\x6c\x4d\xaa\x3b\x64\xfe\x74\xac\x84\x91\xff\xb4\x8a\x6e\x9b\x6b\x0d\x2c\x55\x48\x14\x9a\xe2\x8e\xd6\x3e\xbc\xa3\x4a\xd3\x24\x07\x92\x84\xc8\x43\xc0\x35\x7f\x7c\xa2\xfc\xf4\xc7\xdb\x35\x3d\x02\x79\x18\xaf\x42\x37\xa1\x7c\x70\x21\x51\x52\x40\xcb\x32\x88\xf4\x56\x25\x07\x07\x8d\x13\xbd\xd8\xef\x45\x2f\x34\xec\x68\x64\xd3\x2c\x89\xc3\xee\x54\xb7\x32\x6d\x64\xe9\x5c\xae\x6d\xa0\x17\x3d\x90\x8d\x86\xe2\x2f\x44\xe0\x22\xa5\x1e\x8f\x40\x36\xfd\x34\xec\x9a\x78\xc6\xa3\xbd\x1e\xc1\x7e\xc2\x86\x38\xa3\x8a\xa8\x17\xb4\xae\xd3\xae\x49\x0d\x25\x7b\x4e\x4d\x2a\x0d\xc7\xea\x08\x93\xcd\xd7\x2a\xf5\x6e\xf2\x3c\xec\xaa\x56\xb7\x7b\xd3\x92\x8f\xe5\x4f\xf2\xb6\x73\xe5\xb4\x7e\x19\xf4\x95\x9e\x5c\x19\xea\xc0\x54\x80\xe5\x94\xaf\xa7\xa3\xbc\x3c\x7b\xa4\xe1\xec\x0b\xbe\x50\x68\xe8\x15\x75\xca\xfd\xc0\xcb\x54\x62\x16\x38\x52\x22\xb7\x07\xb9\x8b\xcb\x5a\x68\xec\x3e\x7c\x7d\x98\x81\x25\x1a\x51\xe4\xef\xee\x6b\x12\xe6\x28\x01\x19\x07\x22\x9e\xb3\x2a\x62\xfc\x2d\x6c\x33\x64\x75\xce\x2a\x1e\x20\x34\x2f\x8b\xc2\x90\x84\x48\x59\x77\x60\x7b\x85\x77\xd8\x1d\xad\xf7\xe2\xa2\xeb\x12\x79\x52\x0f\xaa\x1d\x8e\x38\x7b\xcc\xbf\x4d\x23\x24\xcf\xb1\xf5\xe4\x3f\xf8\x62\x19\xea\x87\x6b\x61\xaf\x60\x67\x1a\xce\xd1\x7d\xd5\xe6\x7d\x5f\xe1\x93\xcd\x7f\xe2\x15\x00\x9a\x20\xba\xa7\x33\xf7\x7b\x4f\x11\x28\x0d\x51\xcf\x93\x93\xc6\x2f\x48\x1b\xea\x31\xc2\x72\x89\xf2\x21\x8d\x23\xca\xd7\xcc\xdb\x02\x07\xeb\x01\xf0\xee\x48\x53\x5d\x0f\x3c\x42\x94\x43\x41\x14\x07\x1e\x9f\x00\x5c\xc0\x7f\x36\xf6\x78\x8c\x73\x01\x95\xc7\x70\xfc\xff\x01\xd2\x4b\x18\xd5\x9b\x81\x62\xb5\xda\xd3\xf6\xe6\xf8\xfd\xb1\x22\xf2\xd8\xdd\xd6\xb2\x28\x8f\x4d\x68\x85\x39\x8a\x84\xd2\xb8\x23\xe1\xbd\x9d\xb2\xe5\x08\xd8\x1e\x69\x2b\x9d\xf0\x47\x29\xdb\x42\x13\xf2\x33\x3f\x35\x51\xdb\x73\xac\xf4\x9f\xef\xe2\x68\xc6\x5e\xf8\x74\x5b\x49\x15\xbc\x8d\xc3\x4c\xd2\x18\xbe\xbf\x7a\x47\xdb\xfb\x4f\x20\x9e\xdd\xe9\x61\x14\x08\x6c\x5d\xb6\x69\x6e\xde\x71\x27\x95\xaf\x29\xda\x02\xe5\x84\xf1\xb5\x26\x33\x3d\xa7\x31\xfa\x9a\xec\xce\x94\x66\x8c\x6c\x18\x13\x24\xd1\x11\x24\x64\x49\x3e\xad\x91\x27\xc3\x21\x4c\xbb\xa8\x53\x7b\x0c\xd3\xf9\x4a\xbd\x95\x30\xa6\x3d\xdb\x91\x56\x90\x3a\x41\x9c\xbd\xba\xe5\x82\x83\xd4\x72\x85\xb9\x5c\xb9\xa7\x77\x52\x7b\xcd\xf6\x36\x1e\xf5\x9a\x9c\xc7\xd8\xc3\xd3\x19\x48\xe4\xa9\x58\x1a\x94\x67\x35\x50\x5d\x53\xdc\x20\x8e\x9c\xe7\x7d\x1a\x3c\xb6\x7c\x63\x8f\x35\xdd\xdb\x56\x1c\x1a\xef\x8c\x55\x99\xf7\x54\xa5\xcc\x3b\x37\xd7\xca\x6c\x4e\x85\x12\x1c\xf7\xdc\x05\x25\xca\x8b\xf4\x61\xd8\x1c\x50\x24\x73\x7d\x5f\xeb\xc4\xdd\xad\x18\xf6\xe5\x7d\x07\xca\x73\x9f\xba\x21\xf8\xa8\x14\xda\x2a\x5a\xe3\x7c\x53\x27\xe1\x6d\xca\x18\x04\x03\x23\xd9\x6e\x1a\x0c\x49\x77\x6b\x76\xe7\x68\x68\x7b\x33\xbe\x04\xb3\x7d\x42\x5f\xce\x37\x6d\x95\x3b\x3c\xa6\x74\x93\x8f\x55\x2c\xcb\xc2\x42\x2b\x32\xdd\xd5\xa8\xc8\xf2\x72\x39\x39\x44\xe5\x71\x95\x1e\x39\xae\x78\xf8\xd7\x07\x61\x9a\x4a\xf7\x33\x2c\x1b\xd6\xb7\xb4\xdf\xeb\x8e\x8d\x4a\x4e\xe6\xa5\x7d\x2f\xb4\x42\xe1\xd0\x81\xd3\x70\x41\xc1\xfc\x2f\xb8\x4e\xc0\xaf\x15\xbd\x15\x27\xb3\x8d\xe2\x36\x74\x2e\xf9\x5a\x77\x2f\x86\x91\xc9\x14\x76\xe3\x5d\xda\x62\xc2\x29\xad\x50\xe5\xa6\x74\x89\x7c\xcf\xe7\x25\x6c\x73\xd1\x52\xf1\xe0\x24\x6b\x65\xf5\x3b\x5a\xf6\x45\x47\xd1\xee\x85\xd4\x6d\x96\x87\x6b\x06\x42\xea\x4c\xf2\x4d\x4f\x28\x84\xdf\xd5\x56\xb9\x9e\x5d\x0b\xa3\x2d\xd2\x29\x0d\x47\xe2\x59\x6d\x27\x7d\x69\xdf\x7c\xab\x0f\xfe\x14\x25\x7b\x70\x33\x50\x99\xec\x9b\x4e\xc4\x37\x4f\x4d\x9c\x99\x2e\xe0\x8f\x4a\xb5\xe4\xbd\x40\xc3\x18\xde\xab\x2c\x80\xf2\x47\x7a\x61\x96\x17\x69\x47\xdc\x2e\xa6\x26\x0e\x3c\x0d\xda\x39\x45\x57\x52\xc4\xdd\x64\x8d\x71\x6a\x22\x49\x42\xdb\x46\x14\x7a\x7c\xfe\xa7\x9f\x24\x39\xa1\x7d\x1a\xbe\x76\x7f\x92\xec\x03\x5f\x57\x1c\xc0\xf9\x83\xad\x28\xcc\xf3\xc8\x92\x97\x03\x37\xf1\x5d\x85\xad\xd9\x33\x71\xe9\xe9\xff\x66\x2f\xe1\x1a\x37\x2f\x2b\x6f\x65\x60\xe3\x74\x83\x77\x90\xea\xe1\x73\x0d\x7d\x81\x0f\x74\x56\x92\xd8\xee\xf0\xad\x5e\x37\x03\x4d\xd7\x04\xfa\x43\xfe\x17\x9c\x2c\xc8\x09\xdf\x1a\x4f\x55\xf7\x7c\x1f\xca\x2d\xc5\x43\x27\x38\x1f\x5a\x94\x98\xa7\x8b\xba\xfc\x50\x0f\x23\x5b\x0d\x73\xd3\x03\x75\x9f\xe0\xd1\x15\x91\xc9\xa5\x4a\x6a\xe5\xb9\x56\xd7\x46\xb6\x93\x7a\x3c\x8e\x10\xde\x28\xb8\xfb\x39\xaf\x83\x9d\xc4\x36\x93\x44\x96\x30\x6e\xf8\xea\xe0\x8e\xb6\x2f\xbe\x6c\xab\x08\x50\x97\x41\x6e\x96\xdb\xd1\x48\x96\x08\x7c\xa9\xf7\x02\xd5\x80\xf6\x5e\x65\xb7\x1f\x7c\xb1\x35\xf8\xdc\xca\xe7\x68\xa5\x20\xe6\xe3\x06\x14\xbe\xa9\xa0\x68\x4a\x13\xd8\x29\x32\x54\x44\xa5\xb1\xbf\xe1\xc4\x88\xa6\x99\x1c\x23\xa6\xae\xe2\xda\x01\xd6\xa0\x23\x39\x2d\xdf\x12\x9e\xdc\xdb\x53\xb4\x7f\x89\x19\x2a\x1b\x00\xdb\x28\x64\x5e\x35\x44\x25\x6b\xa1\xcd\x63\xfe\xc8\x94\x5c\xa4\x08\x49\xfa\x27\x32\x2b\xb6\x87\x7c\x82\x93\xb0\x71\xa5\x3b\x3e\x58\x84\x93\x42\x51\x7e\x54\x99\x47\xe6\x0f\xb6\xba\x03\x33\xca\xf9\x74\x97\x96\x5c\xb5\x8c\x8f\xb8\x0c\xe1\x4a\x6a\xd6\x40\x13\x81\x50\xed\xb7\xf1\x3b\x0e\x7f\xa3\x91\xb9\x1e\xda\x72\x53\x09\xfe\x7d\xab\x0e\xdf\x6e\x7a\xf6\xeb\x85\x61\xfc\x19\x53\xdb\x06\x1e\x1a\xf8\xae\x5b\x54\xa3\xd4\x76\xc3\xcc\x12\x8f\x02\xf2\x00\x4f\xd3\x06\x95\x76\x23\xd7\xf0\xbd\xf8\x4c\xbb\xe6\xe4\xb1\x45\x9a\xf4\x92\xc8\x09\x06\x23\x1b\x72\x77\x4a\x01\x44\x97\x11\x3f\x49\x33\xb4\x97\x14\xd4\x89\xb5\x2c\x68\x17\x70\x70\xe3\x30\xdc\x36\x51\xa0\xb6\x5f\xf5\xc2\x23\x26\xee\x85\x90\xeb\x84\x69\x6c\x50\x24\x8b\x1a\xdd\xdd\xb1\x0a\x0b\x8e\x2a\xb7\xab\x13\x82\x60\xaf\x74\x83\x31\xe4\x10\xd5\xc1\x26\xba\x43\x05\x40\xd9\x0e\x8a\x50\xbf\x88\x7b\x66\x4a\xd8\xf7\x03\x15\x39\x7d\xe0\xe0\x60\x51\x92\xac\xa2\x67\x0e\xce\xcc\xe6\x58\xf5\xcc\x9d\x55\x98\x86\x5b\x64\x44\x51\x3d\xb8\xa0\x70\x22\xdf\xb8\x47\xee\x22\x92\x47\x24\xe1\xeb\x58\x11\x7c\x2b\xec\x2f\x7d\x0a\xfd\xd2\x48\xc1\x83\x29\x0a\xc9\x9a\xd9\x89\x22\xb5\x8d\x4c\x36\x90\x30\x19\x55\x19\xec\x16\xbe\xf6\x86\xa5\xc8\xca\xa3\x75\x46\x2d\xea\x0f\xc7\xaa\x77\x10\xe9\x3b\x14\xcb\x40\x64\x28\xff\xdd\xb7\xa4\xf7\xcd\x5a\x92\x9a\x4e\x84\x9d\xef\x98\x8d\xca\xe5\xcb\x37\xaa\xbc\x34\x4a\x93\x11\x09\x8d\xb3\xb4\x2a\xb9\xce\x22\xb3\xfa\x49\x98\xe7\xcc\x1e\x52\x0a\x8f\x38\xdb\x44\x73\x6c\xeb\x0e\x7c\xae\xd5\x4f\x93\xd8\xc3\xb4\x04\xdf\x43\x6f\x28\x00\x9f\xbd\x53\xd2\x6c\x45\x6e\xd3\xc7\xa6\x08\xa9\x68\x04\x04\x71\x50\x3e\x21\xba\x5e\xc0\x79\x2d\x4e\x87\xb7\x44\xbf\x17\xa8\x4c\x15\x11\xac\x6c\x12\x85\xd0\x57\x37\x59\xe5\x4a\x9a\x81\x7d\x25\xe5\x0e\xb5\xcc\x88\xf2\xab\x22\x10\x3d\x53\x83\x15\x27\x55\xe1\xcc\xce\x50\xcc\x85\x2c\xd0\x1f\x6b\xbc\x0b\x43\x25\xe1\xbc\x3c\x9c\x4a\x25\x38\x70\x74\xd1\x0b\x93\xd9\x32\x7e\x14\x3d\x20\x7a\x47\xf4\xa1\x5c\x50\xf8\xfe\xdd\x6d\x5f\x51\x40\xbf\x81\xfc\x8d\x0f\x1d\xb2\xdc\xf4\xfb\x42\x4d\x2e\xdd\x0c\xbe\x1f\xf3\x9f\xd5\x31\x8f\x44\x49\xbc\xc2\x8e\x87\x03\xa8\x95\x0f\x2d\x54\x5b\xfe\x70\x5f\x0f\x7b\x9c\xc1\x16\xdf\x6a\xca\xe9\x7a\xd4\x45\x25\xaf\x36\xa7\x20\x50\x1a\x1b\x55\x3e\x98\x74\x6c\x39\x2a\x78\xd6\xf6\x99\x51\x65\x3f\x8e\x64\x1c\x1d\xb7\xcb\x2a\xdd\x08\x54\xf7\xc1\x2f\xea\x4a\x57\xd7\xc6\x36\x9b\x41\x94\x8c\xe9\xbf\x85\xc8\x9a\x6f\x00\x6f\xc4\xcc\xde\x40\x98\xcc\x37\x95\x23\x73\x69\x79\xa9\x15\x25\x59\x0e\x7d\x18\xc9\x0a\xd0\xe7\x9d\x34\x46\xb9\xb0\x10\x42\x6d\x6f\x6b\x07\x68\xc3\x00\x82\x8d\xd9\xe1\x42\x33\xdf\x28\xa2\x61\x44\x7f\x22\x45\x3a\xa5\x8e\xdf\x27\xa4\xcd\xac\x07\x55\xff\x28\x50\xf9\x3d\x86\x30\xc8\x14\x78\xab\xce\x2e\x2c\xcc\xd4\x5f\x2a\xad\x97\x7e\x6a\xe2\xd5\x7e\x91\xe6\xa0\xcd\xc7\x96\x61\x71\x19\xdc\x00\x99\xcd\xff\x10\x78\x75\x85\x1b\x15\xef\x63\xff\x62\x6b\x68\x7a\x56\xfb\x2b\x67\xb5\xbf\x52\xed\x1b\x5f\xde\xd7\x4a\x93\xc8\x02\x0e\xa1\x08\xaa\x9d\x1c\x49\xf0\xb3\xd5\xb3\x3a\xb7\x91\x9d\x26\x53\x86\x8b\x25\xbc\x2d\x1e\x4b\x75\x49\x95\xab\x4f\xa8\x8a\x73\xd7\x44\x36\xee\x19\x30\x2b\xc2\x80\xa2\xc1\x1b\x0b\xec\xdb\xb4\x83\x24\xdb\xea\x6b\x72\xeb\xd6\xae\xda\xb8\x37\x33\xad\x83\x52\x9a\x04\xfc\xdc\xc7\xf4\x39\xbe\x0e\xa6\xf4\x51\xf6\x38\x9f\x30\x59\xb5\xbd\x26\x16\xa2\xa3\x11\xf0\x8a\x7c\x0f\x69\x53\x23\x1c\xde\xd9\xf6\xa5\xcd\x75\x1b\x75\x93\xa1\xed\xcd\xfa\xa7\xfc\x10\xc8\x06\x14\xda\x99\x94\x0e\xa9\x25\x1c\xe1\xf0\x1c\x7e\xa4\x29\x94\x2f\x28\x9e\xf6\x9e\x8d\xc2\x8e\x2d\x7d\x59\xce\x43\xbb\x3e\xcf\xe5\x7d\xae\xcf\xd3\x85\x5e\x46\xeb\x11\x63\x8b\x6e\x2a\xe5\x87\x4d\x45\x8d\x64\x0f\x75\xc3\xdc\x0e\xa5\x60\x56\x47\x6c\x56\xd3\x4b\x96\xd2\x94\x82\x1d\xb1\xa1\x38\xfd\xc1\x7c\x25\xf8\xf8\x6a\xeb\x7c\x9a\x44\xae\x8b\x18\xa7\x33\x03\xe8\xf8\x46\x1d\x79\x9e\x5d\x08\x13\xa8\x3a\x17\x96\x1c\x7b\x73\x0d\xd4\xb0\x13\x92\x64\x5a\x1c\x87\x1c\x7b\x22\xcd\x86\xb4\x0e\x5f\x2b\xf4\x41\xd8\x4b\x93\xae\x49\x3b\x45\xca\x9c\x71\x82\x54\x69\x38\x7e\xde\xf3\x53\x0e\x72\x14\x59\xda\xcf\x12\xcf\x97\x3f\x21\x74\x11\xf4\x05\x0e\x22\x3b\x7f\xd0\x35\x2e\x96\x2b\x4d\x3a\x1a\xb7\x40\x60\x9e\x7d\xb6\xf5\x79\xc2\x60\xc0\xb0\x80\xcf\xc7\xc9\xc3\x38\x0d\x8c\xd3\x2a\xc7\x90\x14\x79\x3f\xb4\x51\x4f\xb5\xeb\x9c\x0f\xf4\x91\xa2\x0a\xd3\x36\x36\x51\xbe\x81\x80\x57\x7c\x72\xed\xac\x3f\xa5\xd4\xc0\x73\x45\xd3\x8f\x48\xe7\x75\x85\x73\x7f\xbd\xce\x1e\x90\x23\xd0\xf0\xd2\xbc\xd3\xcd\x8b\x0e\xba\x1b\x1e\xb2\xbd\x9d\x1e\x68\x82\xc5\x88\x7d\xf3\xf4\x44\x81\xc6\x2e\x04\x9e\x4c\xf0\x37\x5b\xe5\xc6\xd8\x64\x81\x3e\x49\x86\x4c\x31\x30\x2a\x49\xa2\x24\x5d\x4f\x12\x0e\xbe\x5c\x99\xd9\x85\xa2\xd5\xda\xd1\xfe\x45\xd6\x89\x6a\xaa\x93\xef\x2a\xbd\xae\x10\x12\xf9\xd3\xf6\xb4\xaa\xd1\x3e\xff\x0b\x5f\x68\xd0\x59\x04\x03\xb6\xad\xad\xca\xc4\xdb\x2a\x95\x84\x97\xf6\xbd\x50\x5e\xa0\x99\x4b\x9a\x97\x1a\x8e\x4d\xec\x54\x25\xd2\x7d\x79\xfe\x60\xab\x5f\xe4\x45\xca\xe7\xb3\x28\x91\x34\xbc\x2a\x89\xc2\x67\x8e\xcc\x0a\x82\x0b\x81\x8b\x34\x9c\x80\xca\xf7\x68\xf1\xa0\xa4\x76\x3e\xf0\xd6\x74\x68\xd2\x55\xdb\x8b\x36\x9a\xe5\x9a\x84\x6d\x42\x27\x36\x77\x1d\x2b\xdc\xcd\x4c\x45\x8c\x9b\x62\xaf\x22\xed\x0e\x66\x14\x7a\x9d\xb9\xc6\x34\xe1\xab\xd0\xa4\x34\x1c\x0f\xfd\x07\x4a\xe5\x3d\xb5\xc3\x30\x0e\xcb\x53\x3e\x57\xd8\xde\x73\x0a\xdb\xab\xbb\x56\xd6\x6c\xda\x0b\x1b\x2a\x95\xc0\x9a\x3e\x7c\x33\xb5\x39\x33\xd3\x6d\x2a\x4e\x8d\xb3\x8a\x50\xe6\x46\xe0\x75\xe1\x49\x91\xd2\x29\x18\x9b\x14\xf9\x17\x77\x0e\x2f\x3b\xb7\x28\xf8\xc9\x2a\x05\x16\x7b\xcc\x4f\x35\x1c\xc7\xdf\xf1\x40\x31\x35\xde\x52\x14\x7c\x1f\x8d\x15\xa6\xe4\x6d\x10\xd0\x20\x2a\x7a\x87\x9e\x8c\x95\x76\x69\xf8\xf1\xe2\x5c\x28\x70\x78\x8d\x72\x39\xc3\x9c\x5e\xa6\xb4\x1d\xf2\xec\xdc\x78\x00\x13\xb4\xb3\xed\x81\x05\xdb\x58\x14\x05\x41\xcd\x1f\x22\xa1\xea\xc8\x75\x9c\x00\xf4\x07\xf0\x79\xd0\x4d\xf6\x1d\xe4\x90\x85\x2c\x54\xa5\x1e\xaf\xd5\xe0\x94\x97\x5a\xd9\xba\x59\x13\xa6\x50\xd8\xb4\x93\xba\xc7\xe6\xe4\x14\xb4\xbf\xe8\x70\x16\x02\xd9\xe0\xe3\x70\x89\xb1\xbc\x90\x17\x95\x42\xad\x9f\x91\x7e\x6a\x0a\x10\x22\x23\xad\xb1\x49\x0b\x43\xc4\x2a\xca\x97\x15\x90\x7c\x4d\x17\x79\x36\xb2\x44\xb8\x85\x53\x09\x49\x9e\x53\xaa\x6a\x76\x2a\xf8\x94\xc4\xe6\x36\x4f\x93\xee\xc0\x0e\xc3\xae\x01\x0f\x3e\x7c\x81\xcf\xa8\x4c\xcf\x4f\x4f\x54\x6f\xff\xa9\x1a\xa6\xc3\x25\xf2\x6f\xd6\xc2\x4c\x3a\xcc\xf0\xc8\x27\x35\xde\xf0\xa4\xca\xf2\xaf\xd8\xf4\xc9\x72\x7d\x39\xa1\x00\xd7\xa7\xf3\x5f\xfd\x1d\x24\xa5\xe1\x0e\xcf\x4c\x14\x30\x61\x53\xa1\x67\xd6\xf7\x4e\x3c\x55\xc2\xcc\x64\x9a\x43\xfd\x0b\x2f\xb3\x8d\x38\x3a\xf6\x62\x62\xff\xed\x67\xda\x3e\x51\x79\x45\x59\x38\xee\x05\xc2\xfe\x04\x9d\x36\x2a\xf4\x0f\x69\x90\xe1\xa3\xee\xe2\x15\x85\xbf\xba\x3c\x56\x75\xef\xd7\x1c\x50\x31\x29\xf2\xc7\xdd\x51\xbb\xfb\x67\x50\x77\x92\x7e\x59\x25\xfd\x70\x9e\x63\x01\x41\x3a\x97\x23\x81\xdc\xc5\xcf\x69\x59\x91\xeb\x58\xb7\x53\x3d\x02\xf0\x95\xf8\x85\x1d\x47\x9e\x03\x88\xcd\x12\xca\x14\xdb\x71\xcf\x14\x35\x8b\xc4\x88\xe5\x40\x4b\xb5\x53\xfa\xef\x53\x9b\xe5\x69\xd8\xcd\x79\x8d\x62\x0b\xde\xc3\x16\x40\x05\x97\x71\xe4\xb2\xed\x24\x11\xd1\x4d\xa2\x10\x67\xaa\xa3\x32\x77\xe4\x9c\xb7\xd5\x61\xd1\x31\xd1\x0e\x8f\xcd\x9f\x01\x38\xc7\x35\xd8\x0a\x98\xea\x9f\x73\xf3\xf0\xd4\x0b\x0b\x6c\xb3\x9c\x0a\xac\xbf\x8f\x3d\xb4\xb2\x70\x2b\x1c\x01\xf1\x07\xb4\x45\xf8\xda\x73\x06\xd8\x34\xe9\x84\xdd\x8c\xca\x20\x68\x20\x7b\x0a\xbf\x84\x82\xf0\xe3\x94\x8b\x12\x6e\x53\x6f\xcf\xde\x51\xf8\xb8\x2c\x37\xb9\xcd\xd6\x6d\x06\x53\x2d\x3d\xbb\x0d\xc7\x7d\x7c\x54\x05\x6e\x7d\x93\xe5\x36\x9d\x51\x2c\x9c\x77\x31\x7e\x02\x3f\x6f\x38\x92\x25\x80\xf8\x05\x6b\x52\xa7\x4e\x91\x74\x57\xe9\x27\x39\x8b\xa3\xc8\xe2\x2f\xb8\xdc\x0a\x51\xf5\x59\x64\xa9\x60\x0d\x3f\xd3\xf6\xb2\x7d\xc9\x67\x31\xe0\x58\x22\x57\x82\x1a\xc6\xa3\xd8\x2a\xce\x82\xe6\x4f\xb4\xb7\x26\x1f\x60\xd3\x9e\x9e\xd4\xe8\x45\xe6\xca\xce\xc0\x5e\x22\x07\xc8\xd7\x75\x95\xa4\x2c\x4f\x8b\x6e\x79\xb6\xb3\xa3\x22\xaf\xa3\x5e\x2d\xd0\xc7\x99\x8d\xfa\x4f\xa8\xc5\x78\x56\xef\x25\x54\x44\x91\x30\xff\x17\x81\x32\xab\x3f\xa6\xaf\x83\xb5\xdb\xcd\xbb\x17\x09\x09\x86\x71\xa0\x68\xf5\x68\x5b\x75\x47\xa3\x6c\x80\xdd\xd7\xa4\xd8\x4a\x5a\xc5\xcb\xad\xe4\xc0\x99\xa5\xdb\x23\xc8\x06\xda\x31\xc8\xa7\x20\x93\x8b\x3d\xb2\x13\xe3\x8f\x03\x68\x47\x5b\xd5\x37\x4d\xbc\xdb\x81\x27\xbf\xf8\x37\xda\xaa\x83\x7b\xa6\xad\x58\x3e\x76\x4c\x94\xf6\xc9\x4e\x2a\x54\x0b\x5d\x02\xde\x45\x40\x2f\x1e\x0f\xc0\x3c\xba\x4e\x3e\xb8\xb4\x3e\x52\x61\x2b\x9f\x9f\x9d\x20\x32\x17\xa2\x35\xf8\x84\x52\xce\x5e\xb3\x29\x4a\x1d\x6e\x75\x3b\xb7\x9b\xcc\xe2\xe6\x6b\x63\x45\x99\x72\x22\x50\x24\xe2\xa8\xcc\x8a\x50\x8b\x4f\x1e\x74\xac\x8d\x1f\xf5\x95\xe9\x1f\xd2\xd3\x22\x7d\xcb\x36\x0c\x8f\x3e\xd3\xa6\xe2\x09\x5c\xb6\x37\x74\x76\xfa\xfb\x38\x96\xf9\x5f\xe8\x91\xf0\x78\xcc\x0f\x88\xc3\xaa\x41\xa7\x01\x86\xe4\x82\xce\xea\x7f\xac\xe2\x85\x51\x11\x87\x90\x1c\xf7\x44\xaa\xd3\xd4\x39\x5b\xd7\xea\x73\x54\xf2\x4a\xc3\x4e\xe1\x8a\x27\x30\xc0\xef\xc3\x38\xf2\x4d\x05\x5d\xf5\x32\x49\x36\x7e\xbd\x08\x53\xde\x94\x70\xd2\xb8\xc1\x05\x45\xe7\xd3\x9a\x94\xe3\xdf\x55\x7e\x5a\x12\x92\xa3\xc8\x74\x41\x1e\x26\x3d\xad\x1e\x25\xf0\x11\x4c\xa4\x50\x49\x7a\x5f\xb1\x17\x66\xab\x19\x41\x28\x51\x4a\xc0\x71\xe7\x38\xff\xe6\xe6\x78\x70\x2f\xe0\x7c\x14\x8c\x8c\xe2\xe6\x61\x0f\x05\xa5\xad\xaa\x00\xe0\xdc\x7c\x6b\x25\x4a\x3a\xc8\xc3\x4e\xc9\x61\xf3\x8d\x82\x5f\x75\x4c\x66\x3b\x26\x8a\x76\x79\xca\x7a\x2e\xff\x62\x73\x5d\x1b\x2b\xd4\xdb\x55\x5e\xdd\xac\x0e\x4b\xcf\x0d\x27\xf6\xbf\x53\x34\xb7\xa0\x93\x73\x3c\x97\xe5\xbc\x48\x6f\xde\xd6\xa9\x58\x58\x68\xc5\x76\x3d\x1b\xa5\x21\x7b\xd9\x38\x34\x91\xa3\xe6\xeb\xba\x0e\xdc\x7e\x18\x85\xa3\x30\x4e\x54\xe6\xff\xb2\x22\xfc\xbf\xaa\x9b\xf7\xbf\xa3\xc9\x7a\xd3\x64\x34\xb2\x3d\x2a\xb6\x38\x5f\x6d\xbf\xd7\xe7\xa5\x01\x07\x33\xd1\x75\xda\x89\x6e\x69\x94\x83\xcf\xff\x50\x81\xf4\x96\x01\xbd\x49\x57\x4c\x18\x53\x4d\xdd\x6d\xf9\x4d\x95\x68\x38\x0f\xb3\x86\xc9\xbc\xec\xce\xe8\xaf\x15\x59\xbe\xd3\x53\x1b\x7c\xb6\xad\x9c\x54\x48\x07\xe0\x20\x06\x4f\x12\x3a\xcf\x51\x6c\xc7\x90\x3e\x20\xc8\x8f\x83\xb4\x6b\x9a\xca\x67\x6a\x44\x0f\x97\x0e\xec\x69\x38\x4a\xac\x1b\x81\xe2\x97\x39\xab\xe8\xc0\x8f\x2b\x8a\xde\xef\xc1\x86\xe2\x97\x41\x2f\x23\x95\x77\xac\x05\xec\xf7\xeb\x9a\xa5\xf3\x01\x81\x23\x45\x0c\x4a\xc9\x0b\x1c\x0b\x14\x7f\x22\x5a\x2d\x30\x47\x47\x71\x68\x48\x26\x62\x2b\x31\xeb\x73\xad\x3c\xdd\xa0\x81\x15\xb9\xef\xf2\x39\x1c\xc3\x5b\xf9\xcb\x48\x2f\xbd\xe5\x51\x8e\x83\x30\x8e\x1d\x80\x8d\x99\x4d\x03\x5f\xe5\xb9\x52\xb7\x16\x7d\x09\xbd\xe1\xd4\xf3\x91\xb4\x10\xb1\x74\x7d\xf0\xad\x6e\x14\xd4\x0b\xc2\x4d\x38\x34\x68\xd2\x90\xe3\x04\x7a\xd6\x4c\x54\x98\x1c\x36\x02\x93\x7f\x33\x50\x31\xf3\x47\x63\x1f\x18\x57\x75\x60\xca\x48\x96\x75\xa2\xb3\x9c\x49\x00\xa5\x8c\xa6\x4a\x6a\x75\x84\x1a\x79\x4a\xe5\x34\x26\xf6\x60\x99\x1a\x8c\x32\x6a\x7c\x40\x62\x08\xda\x58\x92\x89\xe0\xcf\x6c\x62\x6a\x61\xd6\x7f\xa2\xad\xce\x95\x6b\x5a\xf2\xee\xa9\x1a\xc1\xd8\xf9\x56\x96\x24\x31\x97\x3d\xb1\x36\xde\x82\x1d\xe3\x9b\x5a\xf6\x8f\x6e\x37\x29\x62\x01\x6c\x08\xb3\x61\x43\x51\x1e\x2a\xa6\xf9\x3c\x32\xb1\xc0\x19\x91\x62\xbb\x49\x5b\x15\x03\xca\x14\x43\xf0\xa6\xee\x05\x3e\x87\x36\xb4\x69\x77\x60\xe2\x5e\x98\x59\x72\x35\x81\x84\xfc\x13\x5d\x92\xbd\x33\x56\x02\xa5\x3f\x52\xbe\xe6\x7d\x2d\x92\x65\x7b\x26\x6e\x7a\xa4\xf0\x3d\xe4\xf9\x1d\xfb\x9c\xd3\xcf\x39\x59\x13\xf9\x1d\x68\x8d\xd2\xa4\x4b\xcd\x7a\x8b\x8b\xbc\xf6\x3f\xd2\x1c\x0f\x1f\x8d\x55\xef\x49\x27\x37\x61\xcc\x8b\x51\xe0\x94\xe5\x22\xe3\x6b\x65\xc5\x87\x61\x6c\x53\x23\xb0\x14\xc7\xa1\xec\x1a\x2c\x2f\xa9\x9e\xca\x0d\x9b\xef\x2e\x63\x1a\x59\xaa\x9e\x02\x9c\x49\xec\x5d\xe3\x68\xf9\x58\x08\x0a\x0e\x07\x2a\x01\x0f\xfe\x7e\x1c\x25\xa8\x8a\xe1\xdc\xd8\x36\x99\xc2\x2c\xf8\x08\xf0\x6d\x85\xa0\x7c\x10\xa8\x36\xd2\x93\xce\x0e\x66\x89\x19\x35\x55\x73\xf4\x71\xd5\xed\x8e\xdc\x33\x56\xc2\x3d\xf7\x89\x41\xb1\x92\x34\xbc\xe3\x75\x49\xf7\xf6\x5d\xaa\xe3\x82\xa2\x20\xa1\xe9\x51\x40\x77\x54\xc7\x2c\x23\x3b\x60\x51\x66\xda\x8f\x48\xc8\xb8\x81\x98\x0b\x43\x25\x70\x37\xf1\xd4\xe8\x23\xb0\x3b\xb7\xeb\x9a\x98\x87\x36\x5d\xcd\xcc\xd0\xa6\xbc\x9d\x44\x81\x47\x61\x8d\xb4\xfc\xdd\xd9\x0a\x2b\xef\xdc\x5c\x6b\x58\x44\x79\x18\x83\x5b\x1b\x99\x62\xa7\x03\xed\xa4\xef\x4e\xd7\xa9\xa8\xfd\x6c\x69\xcc\x86\x61\x96\xf1\xc7\x04\xad\x51\x7e\x4c\x60\x1c\x3a\x07\xb2\x6e\x62\xce\x61\x73\x78\x8b\x8d\x21\xb1\xae\x53\xbf\x4b\x86\x23\x13\x6f\xcc\xe2\x4f\x9d\xaa\xa3\x64\xed\xff\xe6\x53\x6d\x1f\xe5\x3c\x18\x2b\x7d\x13\x6e\xb7\x14\x08\xb6\xd2\xad\xb3\x79\x6e\xd3\x9d\xaa\x72\x76\x4e\x01\x7d\xa1\xac\x2b\x69\x27\x7f\x02\xfc\x99\xa6\x95\x3b\x82\xa4\x15\x0c\xfb\x85\xb1\x2e\xc9\x9d\x0b\x3c\xc6\xac\xc8\x08\x77\x3b\x37\xe7\x62\x50\xc5\xfc\xf9\x81\xaa\x05\x87\xc3\x91\x09\x53\x91\x9f\x93\x5e\x66\xc5\x24\x72\x71\x2b\x91\xe8\xe2\x62\xeb\xf9\xaf\x34\x54\x43\x29\x73\x02\x4a\x0e\x41\x35\xe6\x24\xd4\x97\xa8\x18\xa0\xb0\x4f\x85\x45\xbf\x06\xde\xb8\x62\x73\x2c\x43\xe6\x28\x1d\x7b\xb7\xe0\xb6\xe2\x3a\x39\x5e\x29\x81\x97\x8e\x92\xed\x95\x86\xa1\x5c\xf6\xac\x90\x0a\xe3\x74\x54\xf7\x8e\xdf\xa9\xc3\xf0\x50\xd2\x9c\xd0\x18\xd8\x22\x70\x10\x44\x72\xd5\x3f\xf2\x15\x65\x1b\xf3\x41\x98\xf6\x76\x4f\x77\x51\xbd\xb4\xcf\xab\xfb\x3a\x10\x10\xf3\xf0\x63\xfa\x9a\x08\xb3\x10\xf4\x40\x7d\x03\x0e\xe6\x87\x0a\xa9\xff\x68\x5b\xa5\x5b\x40\xa2\x82\xd5\xf7\x6d\x1c\x6a\xfc\x55\x13\x45\x9a\x54\xcb\xfa\x38\x4a\x93\xdc\x3a\x92\x74\x4e\x99\xc0\xba\x49\xfe\xe4\x31\x07\xe4\xc8\x24\xae\x40\x3c\x79\x5f\x27\x5d\xee\xab\xf8\x3e\x0f\x53\x8b\x23\x9e\x55\x2a\x15\x96\x75\x4f\xdb\x77\x83\x6d\x9f\xec\x51\x22\xc5\xe9\x88\xc9\x7a\xe1\xc7\xa3\xe0\x8e\x0c\x27\x22\x26\x7c\xc1\xec\x44\x65\x43\xce\x6a\x08\xda\xa3\xb4\x39\x04\xb1\xbb\xd5\x08\x90\x70\x5e\xb8\x32\xc8\x95\xf6\xb6\x40\x8f\x34\x26\xc9\x1d\xfd\x59\x64\x2d\x1b\x61\x67\xc3\x97\xe5\x6c\xb8\x43\x86\x1e\x1e\x70\x95\x54\x8a\xa0\x65\xdd\x24\xb5\x5b\xc9\xe7\x15\xce\x4e\xbb\x4e\x26\x7e\x75\x97\x77\xdd\x2f\x6a\xf2\xe8\x40\xe1\xc1\x38\xcb\x85\xca\xd5\x69\xdd\x7f\xfc\x40\x51\xbb\x72\x77\x12\xdf\x68\x12\x86\xc3\xaa\xf8\xb2\x66\x53\xe4\x3f\x1d\x56\xf3\xa4\x22\x36\xf7\x27\x91\x71\x6a\x51\x58\x0f\xb3\x34\x15\x7c\xad\x52\x05\x23\x9b\xef\x54\x98\x1d\xa1\xe6\x91\x3b\x0f\x63\xba\xa4\x8e\xb2\x47\xb1\xd4\xe1\xb7\xfd\x88\x86\x87\x97\xbd\x6e\x08\xba\x53\x89\xe8\x68\x27\xaf\xb3\x6e\x9f\x4b\xaf\x97\x7e\x87\x30\x56\xf8\x05\xf7\x41\x5d\xc0\x54\xe7\x61\xfd\xce\x58\x0d\xf5\xef\xa8\xea\x4b\xc7\xc4\xdd\x34\xe9\xe7\xaa\xd3\xf9\x41\xe0\xb1\x4a\x0f\xea\x38\x3e\xd0\xb9\x4f\x09\x0a\x16\xd1\x98\x56\x64\xf0\x94\x86\x87\xa7\xa0\x3e\xde\xfb\x40\x86\x09\x21\xc0\x7b\xd3\xf9\xf9\x98\xf5\x22\xc5\x99\x99\xf2\x72\x9c\xd6\x0e\x34\x8e\xb0\x80\xf1\x0c\xf0\x22\x60\xe4\xae\x51\x69\x02\xc6\xe4\xe8\x78\xb7\xaf\xad\xe6\x3f\x45\x03\x89\x43\xf8\x28\x9e\x5a\xba\x2b\x1b\x2f\x3b\x3c\x1b\x7d\x1c\x03\x70\x4d\xe3\x3c\x2e\xe9\x62\xc8\xe3\x50\xfd\x65\xd4\x7f\xe0\x95\xdc\xf7\xb6\x29\x0e\x81\xd3\xf4\x50\xe3\x7c\x76\x51\x61\x05\x9b\xe4\xe9\x49\xc3\x29\x11\xb0\x26\x03\xd2\xb5\x8f\xb7\x75\xeb\x32\x49\xcd\x09\x13\x28\xed\x6b\x64\xdb\x76\x61\x75\x21\xe9\x33\xe3\x39\x29\xfe\xfb\x99\x89\x4f\xa8\x5f\x53\x7a\xfd\x8f\x53\x84\x29\x76\x8a\xda\x3a\xf8\x09\x03\x7d\xc0\x7f\x9b\x8f\x54\x47\x8b\xfd\x85\x97\xa7\x33\x6c\x30\x41\xbb\xdb\x7e\xb7\xf5\xac\x89\x6c\x9a\xd1\x7a\x80\x31\xbf\xa5\xa5\x57\x8e\xc3\x69\x96\xf5\x44\x63\x8e\xe3\xe4\x1c\xdc\x4e\x1c\x75\x7f\xa5\x18\xcf\xde\x53\x27\xf9\x9a\x89\xc2\x9e\x5a\x9d\xe0\xbb\x90\x44\xe5\xa7\xbd\xaf\x0e\xc2\x56\xa6\x93\x6d\x28\xc1\xc7\x29\x86\xc3\x27\x7c\xff\x4f\x38\x1c\xda\x88\x1d\x21\x9c\x75\x8c\x18\xe3\x1b\x75\xd8\xc5\xa6\x17\xa6\x38\x98\x5d\xbe\xa6\x7c\x74\x60\x9c\x4f\x63\xfa\x30\x32\xf7\xea\xf4\x77\x06\xe1\xca\xa0\xa1\x84\x33\x4e\x28\x5a\xc3\x13\xca\xb7\x37\xf1\x46\x19\xcc\xae\x3c\x36\x5d\xb0\x28\xc7\x4f\x58\x45\x3d\x27\x38\x57\xf9\x30\xed\xc7\xb0\x38\x90\x33\xe2\xae\x73\x61\xa1\xc1\x2b\x02\x97\xf7\x01\xd5\x38\xc4\x75\xf6\x27\x0f\x5a\x92\xe1\x7c\xbd\x1d\xa8\x20\x8e\x85\xba\x04\x2d\xe5\x43\x96\x3c\x15\xb8\x45\xf9\xc7\xac\x0a\x85\x67\x15\x89\xa8\x5a\x5f\x95\xa8\x41\x63\xc1\x77\xb8\x49\xf5\x89\x75\x85\xc3\x4c\xcb\xb8\x16\xb2\x37\x42\xca\xd3\x70\xea\x60\x60\x15\x74\xff\x7d\x6e\xde\xfd\x77\x39\xe6\xd2\xb0\x3b\x90\x63\x4a\x4b\xca\xf1\x75\x25\xcb\xff\xec\xb3\xad\x48\x50\xb4\x8e\x83\x70\x59\x44\xf2\x2f\x2a\x0e\xb5\x51\x6a\x7b\x61\x97\x45\x79\x96\xf7\xf9\xfc\xc1\x7e\x9f\x3f\x50\x28\xc0\x73\x0a\x55\x74\x2e\xf0\xf4\xab\x2b\x61\xd7\x44\x0d\xc5\x7a\x83\x1e\x5b\xbe\x0e\x3c\x2f\x57\x41\xaa\x3b\xb9\xef\x83\x84\x5f\xff\xae\x4e\xdf\xbd\xeb\xc5\x9b\x4c\xca\xe2\x3c\x92\xf8\xa2\x39\x14\xe2\xf0\x1a\x46\xb5\x3c\xcc\x8d\xb4\x21\xd4\x71\x57\xd4\x1c\x52\x99\xcd\x8b\x51\xc3\xf7\x19\xe1\x1d\x05\xae\x59\xe7\xa1\x8c\xc2\x98\x84\x21\xe5\xd0\x15\xe5\xbb\x86\x52\xc4\x53\x1d\x33\x84\x33\x7e\x4c\x55\x9c\x7f\x5b\xdb\x8b\xd9\xb6\xe7\xbd\x69\x52\xad\x10\xc6\xbb\x31\x51\xce\xe3\x1b\x63\x05\x9c\xfd\x4d\x5a\xfa\x22\xe8\x44\x5b\x16\xae\xda\xfd\xc0\x63\x1a\x27\x94\x94\xc5\x6a\x07\x85\x27\xfe\x06\x1a\xb2\x38\x5e\x66\xdb\x4f\xaa\x72\x14\x29\x52\x03\xa6\xe9\xb8\x1a\x1c\x12\x11\x22\x20\x58\x11\x57\xe9\xeb\x90\x66\x3e\x52\xd5\x2f\x9b\x6b\x8d\x6c\x3a\x34\x6e\x67\x20\xd9\xfa\x2f\x55\x9b\xe7\xbf\xac\x63\x62\xea\xa7\xc5\x70\xc4\x5d\x02\x42\x37\x57\x7e\x1c\xee\x9b\xce\x94\xfe\xa5\x62\x1a\xe8\x25\xeb\x14\x50\xe3\x08\xc0\xd4\xf1\xb5\x32\x7b\x2b\x26\x4f\xd8\x2b\x76\x34\x54\x9e\xdc\x95\xda\x9b\xa4\x8f\x23\xc9\x6d\x04\x79\x3e\x84\xbb\xb7\x34\xfd\xf3\x3b\x8a\xa3\xf8\x81\x12\xb6\x1a\x84\xd9\xc8\xc4\x61\x97\x09\xbd\x61\xfc\x31\x1b\x7c\xad\xaa\xf0\xa3\xc8\x6c\x60\xb3\x31\x1b\x7e\xa0\x7e\x01\xad\xf2\x7c\xad\xe4\x91\xcf\x8d\x3d\xdb\x65\x9e\x6e\xec\x56\xe7\xd2\x65\x4d\x1c\xfe\x1d\x95\x01\xfe\xb1\x4e\x83\xb2\x54\x1a\x0c\xe3\x35\xd5\x27\xcf\xba\xde\x48\x23\xdc\xa2\xd4\xac\x6a\x83\x95\x5a\xc0\x51\x45\xa9\x7b\x5d\x71\x85\xce\xb6\x3d\x3c\xba\x9f\x24\xbd\x1d\xf4\x65\x52\x9e\x57\xbe\x2a\xd6\xa9\xd4\x7e\x7d\x05\xe3\x02\x1e\x12\xf6\x9e\x6d\x8d\x10\x06\x7a\x85\xa9\x41\x92\xe6\x61\xb7\x88\xf2\x22\x35\x51\xb4\xd1\x54\x6d\x3f\xdf\xd7\xb5\xbb\x77\x54\x5b\xc5\x37\xa7\xbc\xf7\x30\x83\x24\x85\x88\xcb\xd1\x87\x90\x4f\x43\xc5\xcb\xb1\x7d\x7b\xde\x83\x5b\x95\x60\x8c\x9a\xdc\x4d\x41\xb4\xb7\xd3\x38\x6b\xcf\xf2\xe6\x84\x50\xd3\x64\x7d\x56\x53\x8c\x4e\x93\x92\x3a\x4c\xea\x6d\x05\xe6\xd9\xd4\x19\xa1\x2b\xd3\x25\xcb\xf5\xec\xc9\x72\x3d\x60\x6f\xc0\x9e\xe3\x17\x39\x43\xad\x64\x79\x5f\xe0\xb7\xf9\x01\x0e\x40\x26\x90\x08\x54\x26\x95\xc3\x42\x1c\x8d\xe0\xb3\x46\x41\xed\xa1\x3a\x58\xb8\xff\x5d\xaa\x41\x54\x50\x73\x14\x91\x5e\xad\xec\x77\xc6\x9a\x6d\x1c\xb1\x90\x10\x96\x7a\x68\xda\x9b\x74\xb2\x49\x43\xe1\xd6\xb4\x51\x69\x56\x89\x3d\x60\x38\x8a\x3c\x59\x1f\x22\xa2\xe3\x0a\x61\x78\x5c\x61\x00\x3e\xf7\x0f\x7f\xbe\xa1\xc0\x0d\x1f\xd1\x0f\xf0\xb5\x46\xed\x9b\x22\x9a\xd1\x07\xc2\xd8\xa7\xa4\xae\x6a\xc9\xe6\xdf\xe3\x70\x48\xf8\x9f\xc5\xc5\x0a\xe3\x81\x4d\x2d\xeb\x00\x23\x8a\x7d\x1c\xda\x77\x8e\xc0\xde\x75\x2f\xee\x6d\xd7\x54\xdc\x47\xc2\x22\xcc\xc4\xaf\x4a\x59\xf0\xb6\x72\x44\xa4\xf9\x85\x52\xbd\x8a\x0e\xc1\x25\x5d\x02\xe5\x73\xa2\x3e\x2a\x3c\x09\x9f\x52\x84\x32\x31\x11\x84\x0a\x18\xd4\x91\x3d\x7b\xd6\xbe\x8b\x75\x54\xc9\xc9\x28\x0f\x87\xc8\xd8\xd3\x9a\x41\xb6\x1c\x26\x98\xaf\x2b\x90\xba\x85\x85\xd6\xc8\xe4\xd6\x85\x68\xec\x6b\x2b\xf4\xd1\x25\x85\x98\x5c\x4d\x86\x23\xb3\x8a\x92\x19\x94\x8a\xc0\xc1\xca\xd7\x4e\x77\x39\x0b\x87\x45\x64\xf2\x04\xe9\x78\x21\x06\xa0\x79\x12\xc6\x80\x2a\x18\x70\xb1\x95\x9b\x68\x15\x8f\x21\xc5\xab\x86\x62\xa7\xf7\x39\xf5\x11\xd1\xc2\xa5\xc9\x6a\x68\x9a\x0d\xa7\x6c\xb8\x1d\xbd\xea\xce\x39\xdd\x2f\x2d\xa8\x57\x5d\xac\x96\xac\x24\xf1\x46\xb2\xda\x2c\x2d\x24\x40\xc5\xc0\x90\xa8\x9e\x27\xd9\xb9\xf7\x6a\x79\x28\x7b\x61\x16\x85\xab\x0c\x3f\xe4\xea\x62\xe0\xdb\xe5\x2f\xd5\x66\x28\xca\x4f\x30\x41\x21\x76\xfb\x13\x6d\xbf\xf3\x9f\x98\xf8\x63\xe5\xeb\x45\x38\xe2\x33\x4e\xa8\x48\x15\x3b\xdf\xb8\x46\xa8\x73\xa9\x65\xfa\xa9\xe1\x56\x24\xb4\x1f\x5d\xc5\x12\xd3\xfd\x33\xc2\xf3\xf6\xa4\x83\x9c\xa2\x8c\x29\xfc\x50\xd8\xdd\x7b\x11\xec\x21\x6b\xf6\x9d\xb1\x87\xca\x9f\xd0\x34\xf6\xbb\x95\x38\x53\x11\x8f\x52\xdb\xb5\x3d\x1b\x0b\xce\x84\xf5\x1a\x28\x68\x85\x39\x3c\x4e\x45\x39\xd9\xb6\x0e\x5f\x46\xe8\x65\xd3\x09\x89\x1f\xab\x9c\x02\x49\xf1\x34\x9c\xc4\x13\x48\x97\x11\xad\xfe\x58\x1d\xbe\x6b\x69\x92\x0c\x31\x03\x42\x20\xe0\xf3\x3d\xa7\x2a\x0b\x6b\x71\xb1\x55\x64\x36\xe5\x71\x85\x51\x3b\xab\xbb\x57\xea\x24\x16\xfb\xd6\xa4\x4e\x31\x00\xf6\xe2\xb6\x4a\x9b\x9c\x51\xa5\xd0\x53\x2a\x46\x58\x09\xd7\x6c\x19\xf1\xcd\x1f\xf4\x8a\x08\x4e\x36\xe6\x92\xe2\xf7\xfa\x9a\x89\xcc\xc8\xc6\x50\x99\xc3\xc1\xf9\x1a\x61\x30\xf9\xba\x4e\x85\x60\x18\x12\x2d\x8b\x76\x8b\xa7\x3c\x3d\x4f\xcb\x92\x15\x1d\x4a\x98\x77\xe1\xbd\x71\xad\x33\xf0\xb5\x9f\xa3\xda\x64\x45\x79\x38\x34\x69\xd8\xf0\x88\x0c\x3e\x1a\xf8\x46\x69\x10\x14\x23\x1c\x9a\x4e\x83\x1a\x2e\x81\xa7\xe2\x92\x27\xe8\xa6\x61\x1e\x76\xb3\x9d\x34\x7e\xd8\xf2\xef\x29\x8f\x01\x89\x54\xc0\x50\x36\x11\x3a\xe2\xf0\x87\xde\x80\x64\x4b\x4a\x1f\x99\xaf\x03\xa5\x36\x72\x24\xf0\x3f\x94\x5b\x02\xcd\x53\xc0\x0f\xb8\xce\x4d\x3c\xbc\x6e\x9b\x40\xde\x8b\x29\xcf\x44\x8d\x41\x4b\x33\x8c\x3d\x46\xe7\x54\x1d\x73\x7d\x66\x15\x09\x19\x4e\x31\xc0\xb4\xf9\xba\x62\x8d\x5f\x79\x85\xc8\x8e\xc3\x9e\x23\x3b\x16\xb5\x10\x65\x62\x34\x0c\x25\xb5\x2b\xa8\xb5\xd0\xc3\x03\xda\x08\x65\x43\xbe\x0e\x7c\x92\x23\x4a\x86\x1d\x93\xf6\x1a\xbe\x45\xf4\x84\x97\xb5\xdc\x71\xa2\x52\x13\x5a\xde\x57\x3e\x4c\xd7\xa6\x8e\x30\x4c\x94\xf0\x1b\x8e\x06\xec\xf7\x83\x27\x54\x93\x36\xfa\xc0\xcb\xc5\x25\x59\x05\xef\x3a\x9e\x76\x31\x63\x6e\x7b\xa1\x2b\x2a\x38\x7a\x15\x45\xc3\x2a\xed\xe5\xb6\x7c\xde\xd4\xb0\xf6\x98\x2b\x06\xdc\x0f\x94\x6e\xc3\xfd\xf1\x33\x53\x7c\xa1\xeb\x03\x1b\x0d\x79\xcc\x45\x09\xb4\x39\x21\xff\x85\x6f\xda\x2e\xb4\x4e\x92\xd5\xd0\x2a\xae\x46\x78\xb7\x38\x9d\xd1\x35\x28\x65\xd2\x9a\xe3\xcf\x84\xe9\x28\x49\x73\x2d\x81\x10\x28\xc9\x65\x65\x78\x48\xd3\x7f\x07\xbd\x2d\x93\x70\x92\x61\xdc\xbc\xcf\x59\x0d\x09\xe5\x55\x6a\x0c\xf6\x17\x3e\xea\x87\x4a\x03\xe6\x58\x2d\x7a\xb8\x9b\x0c\xfb\xf2\x28\x30\x67\xef\x07\x8a\x04\xfa\xfd\x0a\x09\xc5\xdf\x25\x35\xe5\x86\xff\x0d\xa0\xca\x45\x4c\x59\x27\x33\xc3\x95\x01\xf1\x3c\x22\x62\x7d\x13\x0f\xc9\xba\x5c\x2a\xa9\xcd\x54\x4f\x8e\x1b\x63\x59\x00\x2b\xaf\x07\x53\xb1\x57\xc3\x51\xc7\x9c\x84\xf3\x0e\x3f\xf2\x0c\x1d\x86\xe8\x33\xe5\xdc\x32\x32\x29\x4c\xdb\x8f\x51\xb9\xac\x3c\xc0\x8d\x18\xc5\x51\x81\x71\x36\x1c\x8b\xce\x58\x97\xd4\x8f\x05\x0a\xc8\x94\x9a\xa1\x69\xfa\x7c\x91\x8e\x99\xaf\xe2\xc5\x00\x82\x3e\xa6\x38\xde\x52\x33\x0a\x7b\xd1\xc6\x4e\x95\x38\x3c\x85\x53\x80\x6f\xc8\xcf\xe5\x53\x33\x50\x7c\x18\xc7\x30\x22\x88\xee\xaf\xe0\x70\xe5\x1b\x7a\x58\x46\xb6\x2b\xb5\xd7\x72\xf9\x9a\x28\xda\xa1\x9a\x71\xdf\x84\xe7\x8d\xea\xd9\x1f\x2a\x02\xfd\x37\x31\xac\xfc\x0f\xda\xf1\x87\x4c\x9d\x44\x5b\x4f\x6b\xef\x30\xcb\x4d\x9c\x47\x1b\x10\xd9\x44\x42\xe8\x2d\x3c\x18\xf2\xab\x68\xd0\xe1\x6b\x3a\x81\xf8\x8f\x6a\x32\xe8\xf3\xad\x7e\x6a\x99\x9d\xd1\xb1\xf1\x96\x1f\x47\x2c\xf0\x20\xd0\x4c\xc2\x8e\x30\xc2\x66\xb9\x21\x56\x47\x77\x48\xc2\x8d\x45\x77\xf8\x14\x07\x3d\xe6\xe5\x70\x05\x64\xf2\xd2\xbe\x17\xc0\x3b\xd1\xb7\x69\xca\x68\x03\xce\xc2\x6b\x54\xce\x7b\x35\xa7\xf3\x7a\x98\x0f\x92\x22\x27\xc9\x64\xee\x3c\xc3\xf2\x92\x36\x34\x87\x05\x1e\x24\xc9\xea\x8c\x62\x9c\x44\x5d\xd7\xb1\x3b\x96\xe3\xc7\x52\x73\xaa\x57\xe9\x74\x0d\xcf\xc5\x0b\xad\x6e\x94\x74\x3a\x36\x45\x9f\xfe\x22\x07\xdb\x40\x6b\x38\x8e\xf4\xf2\x87\xd8\xe7\xc4\xe2\x47\x14\xfd\x83\xba\x3e\xfd\x7e\x6a\x86\xa5\x5b\x02\xdb\x81\xbd\xf4\xbb\x63\x95\x3b\xf9\x5d\xa7\xd4\x42\xfd\x64\xe9\xab\x1d\x13\x03\xf5\x5b\xab\xd1\xbf\xdb\x41\x7f\x6c\xbc\xc7\xb3\x3c\xdd\xa5\x53\x94\x45\xe1\x15\xb6\x64\x13\x13\x8b\xa7\x7d\x64\xe2\x14\x0f\xbf\xf7\xb9\x76\xe9\xbe\x28\x0a\x99\x03\x3c\xb7\x9b\xba\x06\x08\x56\x2b\xf8\xfd\xdb\x00\xda\x44\x66\x8b\xb9\x88\x1d\x4c\x6c\xff\xa2\x23\x3f\xa4\x95\x8e\x7d\x7e\xce\xe9\x2e\x0c\x92\xa4\xb7\x1e\xc6\xab\xa2\xef\x82\xed\x8e\xc6\x78\x97\xbd\x2c\xbf\x1e\xe6\xfc\xaa\x83\x0c\xf5\x23\xb3\x5e\x7e\xa8\x3c\xa5\xa4\x2f\x52\xf1\x3b\x72\xb6\x02\x71\xcf\xaf\x2b\xd7\x64\xc5\xc6\x45\x18\x33\x8d\x8c\x50\xf8\xd2\xa3\xf1\x4d\x85\x75\x73\xe9\xc5\x03\x5e\xf7\x7c\xe0\x5c\x74\xb8\xdb\x87\x35\x3d\xf7\x61\x55\xcd\x1f\x86\x51\x44\x1d\x9d\x34\xc1\x9b\x97\x75\xf5\x08\x85\x6c\x89\xe9\x6b\x32\x14\x3f\xdb\x4a\x6d\x6e\xc2\x48\xb5\x00\x01\x8e\xc2\xd7\x15\xcc\xf5\xdc\x1c\x29\xe5\xc4\x90\xd6\x77\x1d\xce\xe5\x54\x60\x37\xa2\xa1\x44\x04\x17\x65\x65\xd1\x06\x1c\x19\x84\xc6\x2e\x84\x38\x1d\xf8\x3c\xf2\x61\xd5\x8e\xf6\x9a\x22\x33\x20\x1e\x17\xb8\xba\x22\x55\xaa\x64\x4b\x55\xaa\xab\x0f\x59\x67\xaf\x39\xe3\x53\xb3\x97\xea\xd2\xbf\xa9\x89\x7b\xc9\x10\x49\x44\x2d\xbc\x24\x7d\xd1\x7e\x44\x3e\x56\x2d\xe1\x79\x92\x0e\x11\xc5\x96\xc6\x48\x88\x49\x7d\x75\xf2\x74\xb0\x15\xdc\xf7\xec\xb3\xad\x38\x41\x5b\x23\xc2\xbf\x3f\xa1\x48\x85\xaf\x95\xaf\xde\xdb\x88\xcd\xc8\xa6\xf0\xa5\x45\xe3\xce\x17\x98\xbe\x5f\x27\xd9\x67\xf2\x3c\xcc\x8b\x9e\xd5\x75\xcf\x33\x8a\xad\xfc\x4c\x8d\x06\xdc\x52\x6b\x68\x4d\xcc\x24\xc6\x70\x58\x00\x48\xe5\x6b\xcd\x09\x91\x9b\x15\x8b\x2a\x17\x92\x25\x37\xa9\x38\xe6\x62\x0e\xaf\x8f\xac\x98\x35\x0f\xe3\x74\x61\xb9\x63\xa5\x68\xf3\x40\x55\x7d\x92\x22\xef\x47\xc9\x7a\xd6\xf4\x5d\x2e\x17\x28\x9f\xe9\xa8\x8e\xf7\x2f\xba\x6c\x98\x77\x19\xd7\xcd\x4a\xb9\xd4\xbd\x0b\x76\x7e\xac\xd8\x3a\x19\xf1\x09\xff\xfc\x03\x15\xa8\x84\xc3\x51\x9a\xac\x85\x99\x10\x62\xd6\x89\xc7\xd7\xc9\x34\xe4\x26\xcd\x3d\x5f\x1e\x43\xc2\x68\x95\x08\x3c\xcc\x7b\xcb\x76\xad\xf4\xc2\x73\xca\x1c\x32\x1e\x11\x71\x13\xa6\xef\x82\xea\x4b\x60\xbc\x2d\xff\x43\x0d\x29\xf8\x81\xd6\xc0\xa6\xac\xe2\xee\x68\xf2\x97\x96\x45\xa2\xf4\xa2\x6e\x66\x1a\x9a\x19\xb5\x86\x8f\xaa\x9e\x78\x24\xe2\xb1\x05\x6e\xe8\xa6\xa1\xd3\x53\xe9\xce\x94\x49\x80\x98\x03\x40\xf1\xf4\xfe\x62\x4d\xf7\x70\x39\x6b\x6e\x44\x04\x5d\xa6\x90\x66\x15\xab\x26\x58\xf2\x7e\x12\xe9\x8f\x4a\x76\x4f\x73\x87\x55\xe6\x60\x79\x5f\x2b\x2b\x46\xa5\xdb\x2c\x11\x05\x0c\x0b\x1c\x0f\xbe\xae\x55\xd2\x33\x6b\x6b\xdc\x70\xeb\x28\x1e\x7c\x6f\x6e\x25\xc1\xb1\xb4\xbc\xd4\xea\x27\xc4\x2f\xaa\xea\x8b\xc0\x87\xf0\x75\xe0\x39\x05\x4c\xaf\x97\xda\x2c\xb3\xe8\x8f\x13\x57\xae\xe1\x54\x06\x6e\x2a\x8c\xcf\x91\x1a\xc2\x54\xf0\x07\xf1\x0b\x71\x9d\x3b\x50\x04\x80\xe7\x55\xeb\xcf\x4a\x69\xfe\xe2\xa1\x1d\xc2\x2c\xb8\xc4\xa9\x27\xb5\x7f\x5f\x91\x06\x47\x26\xee\x65\x51\xd8\xb3\x19\x0a\x6c\x1c\x10\x60\x1d\x4a\x74\xb0\x57\x93\x23\x94\x8b\xb6\x37\xe3\xeb\x3c\xdb\xdb\x0a\x23\x79\x46\xe1\x90\xe0\xa3\x23\x93\x71\x54\xa9\xe7\x98\xee\xd7\x8b\x30\x0b\x99\x54\xe0\xe5\xf9\x83\x9e\xf7\xde\x39\xcb\x23\xf2\xd6\xa5\xa1\xfe\x09\x5d\xfa\x4d\x62\x74\x72\x33\xf3\x4d\xe0\x4b\x12\xb7\xb0\xb3\xf1\xeb\x40\xcb\xc2\xd3\x38\x4a\xb6\x41\x18\xad\xea\x04\x87\xbb\x49\x9e\x27\xb1\x96\x7e\x55\x40\x89\x4b\x8a\x3a\x35\xb6\xdd\x5d\x34\xe1\x48\x1d\x20\x53\xee\xae\xf7\x4b\x4a\xf1\xa2\x6e\x03\xb9\x83\x03\x16\x4d\x9c\xc7\xc7\x5a\x9a\xe0\x8c\x26\x53\x1d\xab\x2a\xc6\xdd\xba\xd6\xe7\xb5\x30\xcd\x0b\x04\xed\x22\x6b\x41\xdf\x2c\xba\x16\x3e\x2d\xfd\xb5\xa4\x93\xcd\xd2\x68\x08\xfd\xaf\xaf\xf5\xc3\xf2\x32\x36\x30\x50\x2d\xa5\x17\x35\x0a\xa3\xca\xe0\x44\x04\x02\x79\x98\x4e\xe7\xcf\xaf\xab\xfc\xf9\xf5\x4a\x18\xf8\x1c\x25\x9e\x9a\xbe\xfb\xf3\xa1\xea\x34\x67\x21\x5e\x9c\xe0\x77\x5d\x65\xe3\xd5\x84\x55\x81\x74\x6b\xb2\xc4\xbf\x5a\x09\x65\x63\x87\x8a\x00\x10\x1a\x63\x3b\xfd\x99\xa2\x9d\xdc\xa4\x0c\x8a\xcc\x4a\xe9\x71\xc2\xc7\xfe\xf3\xc0\xbb\x89\xef\xb8\xe8\xa1\x67\xd7\x6c\x94\x8c\xe8\xc0\x9e\xa5\x29\x44\xbc\xf9\x2e\x7d\x8b\xd0\xa6\x62\x06\x9d\x84\x8e\xc7\xcd\x31\xcb\xa3\xe8\xe9\xd4\xa9\xa9\x8e\x52\x67\xd0\x90\x30\x7f\x8f\xde\x8f\xaf\x9d\x63\xdd\x0b\xa3\x32\x2c\x34\x22\xc7\xec\x82\x09\x8f\x3a\xbe\xa8\x45\xd1\x93\x75\x08\x17\x8b\x85\xa3\xe7\x10\xd3\xe7\x98\xf7\x93\x34\xcb\x77\x2a\x3c\xcf\xaf\x8e\x7d\x0d\xf5\x31\xa0\xea\x90\xed\x7c\x4d\x47\xb8\x37\x14\x86\xfb\x71\x74\x89\xc2\xda\x7f\x16\x08\x19\xe0\xcc\x37\x2b\x48\xcd\xe7\x5a\x66\x68\x59\xda\x02\x41\xc9\x1d\x92\x5a\xe0\x6b\x2f\xd4\x3f\x2a\x52\x41\x75\xa3\x3a\x77\x46\x83\x59\xcf\x4c\x41\x9f\x46\x69\xb2\x43\x29\x13\xa1\xba\xe4\x60\xb2\x8b\x8b\x5e\x98\xf0\x0b\x2f\x73\xe6\x00\x49\x6d\x27\x72\x52\xbe\xa5\x78\x90\xfe\x54\x1c\x84\xa0\x43\x73\x6c\xdb\x4e\x5d\xf4\xb4\x4a\xb4\x74\xca\xd9\x43\x19\x12\x48\xfb\xb7\x68\x61\x48\xa3\x5e\x43\x43\x76\x5d\x4f\x22\x20\x18\x78\x6b\x08\xd9\x21\x0d\x71\xa4\x92\x0f\xfb\x7c\x19\x23\xa5\x40\xb7\x68\x5d\x01\x64\xd1\xa4\xc9\x68\x8f\x12\xa9\xeb\xae\xce\x7a\x0b\x74\x3d\xf0\x16\x08\x99\x26\x4c\xe0\x76\xe4\xcf\x35\xdb\x00\xa6\xf9\x76\x9d\x87\xd8\xb3\x99\x4d\xd7\x04\x11\xe2\x68\xf5\xbd\x3e\xf3\xf9\x4a\x5c\x20\xe4\xa0\x96\xf3\xba\x82\x90\x51\x68\x19\xc5\xb0\x43\xf9\xc7\x74\x68\x7b\x10\x38\x16\xb0\x8f\xd2\x22\x04\xab\x0e\xc2\x41\x66\x57\x17\x18\x50\xc3\x11\x28\x3e\xa8\x58\xa8\x83\x2f\xb6\xa2\xb0\x6b\xe3\x0c\x7b\x41\x90\x24\x0a\x55\xe2\x29\xe6\x22\xcb\x9a\x66\xdc\xf6\x40\xf3\x28\x2d\x10\x3e\xa3\x13\x25\xab\x16\x05\x12\x69\xe5\x52\xc4\x11\xc7\x35\xa7\x43\x12\xa1\x1d\x1d\x85\x06\x66\x91\xe7\x52\x8e\xe6\xc3\x54\xfe\x3b\xc8\x61\xa2\x0c\x44\xb3\x70\xbb\xc0\x6f\xc3\xd7\x75\xae\x40\x96\xa7\xd6\xac\xc2\x2b\xd5\xa3\x25\x1c\x30\x8f\xab\x71\x36\xdd\x01\xfe\x90\x17\xff\x94\x54\x7c\x0d\x5a\x65\x54\x3a\xef\x0d\x15\x36\x42\x76\x9f\xaf\x55\x8c\x15\x99\x72\x9d\x12\x19\x05\x52\xaa\x97\xe9\x15\x61\x5a\x4f\xd1\xde\x43\x7c\xfb\x7a\xdd\x31\x62\xd2\x61\xe2\x8e\x11\xad\x85\xc7\xd7\x75\xbd\x03\xfd\xc8\x64\x83\x8e\xe1\xee\x62\xac\x71\xe0\x06\xf8\x5a\x21\x5b\x57\x52\x13\x8b\xe1\x14\x35\x48\x1f\x70\x5d\x1e\x7b\xa2\xac\xe7\x1b\x7e\x6b\xb2\xdc\x1f\xdf\x68\x87\xc5\xa6\x49\x6c\x8a\x9c\x60\x48\xba\x25\x80\x0b\x87\x7c\xa3\x24\x43\x3b\x45\xfe\x99\x72\x5b\xc2\x46\xbd\x37\x6e\x3c\xff\x15\xce\xe0\xbc\x36\x6e\x7c\x49\x44\x12\x2f\xaa\xea\xd0\x2e\xa2\x5d\x76\xd2\xc6\xce\x76\x01\x2f\x2e\x4a\x37\xe5\x78\xbb\x4c\xdd\x97\xbf\xc8\xc7\xee\xe5\x40\x45\xfd\xef\xe0\x44\x47\x61\xee\xda\x58\x91\x5f\xfd\x87\x40\x57\xa0\x8f\x05\xaa\xb7\xbe\x39\x51\xf4\xde\xdf\x46\x70\x0e\xdb\x75\x25\xa0\xb5\x29\x34\xab\x65\xbc\xe5\x98\x07\x5c\xed\xe0\x4a\xa0\x78\x13\xae\xa2\xb9\x09\xce\xfd\x5b\x54\x36\x07\x9a\xe7\x06\x0e\x2f\x91\xfb\x52\x5c\xa4\xd5\x44\x03\x54\x70\x40\x27\xde\x70\xda\x91\xa7\x54\x0e\xef\x54\x25\x15\xb6\xf4\xe2\x81\x96\x3d\x64\xbb\x05\x35\xcd\x36\x1c\xa5\xca\x1f\x2b\xe6\x9c\x3f\xae\xac\x7a\x42\xb3\x65\x39\x67\x4e\x5c\x98\xb7\xdf\x87\x79\x0a\x06\x5c\x84\x51\xcf\xa6\xd9\x4c\xf9\xcf\xd2\x63\xa0\x04\x3e\xa0\x1a\x00\x97\x1c\xbd\x05\x72\x82\xd4\x38\x73\x79\x38\xec\x4c\x51\x5d\x7f\xa8\xa8\xae\x3f\xd4\x52\x06\xe0\x5d\xa5\x23\xa1\x9c\xb2\xda\x7a\xbd\xa3\x72\x1b\xd8\xee\xaa\x14\x33\x5c\xd4\xbd\xa8\x2b\x7d\x1c\x7c\xc6\x2b\x61\x6c\x6d\x0a\x2b\x2c\xcd\x48\x00\x68\xe0\x08\xfd\xa7\x9a\x04\xe0\x9b\xaa\x55\xe2\x32\x4d\x2a\xd6\xea\x69\xf7\xcb\x59\xd2\xcf\x89\xcc\xa7\xe1\xd4\x66\xae\xa8\x62\xfd\x15\x45\x12\x65\x7a\xbd\x90\x19\x7d\xcb\x95\x06\x8b\xc9\xae\x28\xdf\x8c\xb7\x72\x92\xa1\x53\x61\x64\xd3\x7c\xe3\x9f\xfc\xfd\xae\xc9\x0a\x22\x48\xf2\xc9\xfe\xdb\xca\xdf\xbf\xad\xa8\x22\x56\x8a\xc8\x4b\x34\x8b\x30\xba\x07\x02\x7f\x1c\x78\xe2\x81\x4b\xe7\x94\x3f\x30\x4c\x3a\xcc\x20\x26\x9c\x4b\x1e\xa0\x71\x5b\x71\x36\x1f\xad\x93\x62\x8a\x93\xdc\x76\x92\x64\xb5\xe9\x23\x1a\x16\xa1\x76\x1c\x83\x3e\x00\xff\x17\x53\x28\x8d\x64\x24\xf8\x9f\xaf\x3a\x06\x40\xfa\x63\xc9\x9c\xd5\x95\x67\x3a\xb6\x6b\x88\x60\x76\x79\x9f\x87\x6a\xed\x77\xb0\xad\x8a\x3d\x5d\x58\xa0\x9c\x5c\x3a\x4c\x7a\xa6\xe1\x5b\xd1\xf8\x0c\xe6\x9b\x1a\x20\xc4\x7c\x6b\x50\xa4\xf9\x8c\xcf\xc0\x20\x7e\x71\xf8\x2a\xdf\x21\x3e\x33\x45\x89\x59\x25\xde\x5d\x6c\xf5\x8b\x34\x1f\x30\x39\x37\x52\x5b\xe8\x7f\xe5\xeb\x4a\xcb\xeb\xc2\x42\x2b\x59\x6d\x94\x56\x0f\x6f\xf5\x51\xe0\xbd\xd2\x8f\x14\x4d\x11\x93\x94\x9b\xb8\x6b\x51\xe4\x85\xed\xba\xad\x18\x8e\x2e\xa0\x2f\x58\x08\xa1\x15\xab\x1b\x90\xb3\x70\x16\x20\x81\xa7\x30\xed\x07\x5c\xa3\xef\x53\x4a\x67\xc4\x66\xac\xb3\xeb\xca\xc3\x97\x03\xdf\xa5\x73\x59\x2d\xfb\xd4\x66\x96\x89\xd4\x96\x25\x1e\xba\x46\x7f\xcb\xd7\x9f\xd8\x55\x9f\x85\x2b\x82\x3b\x85\xd9\xb9\x8f\xd5\xc4\x37\xca\x58\xd8\x43\x24\x7d\xc8\xfe\xa3\x20\x92\x79\x09\x09\x60\xd3\x1f\x6d\x48\x73\x11\x91\x5c\xd6\x54\xea\x97\xa7\x94\x14\x2b\x8e\x76\x4c\xcb\x8f\x2b\x09\x17\x92\x5d\xcf\x36\xb2\xdc\x0e\xa5\x4b\x16\x29\x27\x48\x3f\x48\xbf\x97\xea\x99\xff\x65\x95\x18\x89\xc3\xae\x49\xcd\x4a\x61\x1a\x2a\x0e\x3d\x3b\xa5\x9a\x5f\x39\x1b\xe6\x0f\xb6\x86\x49\x9c\x8c\x12\x11\xdf\x95\x2c\xbe\xce\x5c\x57\x1f\xf3\x40\xab\x9f\xa4\xb6\x6b\x20\xc6\x26\xa8\xf4\xc3\xd8\xff\x7c\xa3\x81\xdb\xeb\x9e\x91\x48\x5c\xd1\xab\xb0\x88\xd2\xfa\xef\x1d\x8e\x61\x12\x67\xd4\x69\x51\xfe\xb3\x30\xc2\x61\x30\xa6\xe2\x29\xf8\xfd\x77\xc6\x9f\x94\xf1\x22\x66\x23\x50\xd6\x2b\x22\x57\x45\x5c\x51\xed\xe0\x3a\xf8\x22\x15\x9d\x06\x49\x84\x04\x3b\xaa\xa8\xd7\x15\x67\x0b\x92\xcd\x70\x21\x0e\xeb\x3c\x79\x94\x64\xb6\xf7\x48\xe9\x77\x30\xd5\x8a\x8a\x32\x1a\xc4\x42\x2e\xbd\x71\xf0\x15\x58\x65\x9c\x56\x2c\xa2\x9f\xcb\xba\x0a\x73\x5e\x9d\x78\xf7\x15\x22\x9c\xb9\xd6\x24\x63\xe7\x6a\xe3\xa6\x1b\x9a\x88\x72\xfb\xb0\x90\x8f\xd2\xe9\x09\x27\x82\xdb\xd6\x58\xb9\x63\x2a\xbf\x9c\x86\xab\x96\xb8\x22\x9c\xe8\xa9\x92\xa3\x51\xe5\xb9\x46\xdb\x33\x7a\x9d\xd5\x24\xa0\xcc\x2c\x0c\xe4\xea\x43\x95\xdc\x32\x61\xda\x49\xd2\xd8\xc2\xf8\xaa\x63\xd6\x53\x17\xf9\xf3\xa1\xbb\xca\xcc\x83\xb5\x42\x44\xae\xdb\xfd\x50\xd7\xa6\xa3\x3c\x9b\x51\xda\xa0\xcd\xb6\x4f\x9e\x5d\x52\x0d\x65\xfc\x5c\x78\xc8\x23\xfe\x5c\xcd\xcd\xc8\x67\x94\xb1\x9c\xd0\xc6\xc3\xd7\x15\x88\x87\x27\x07\x36\x29\x5b\x0d\xfc\xe9\x76\x8c\x2a\xdf\xb4\x75\x4a\xb7\xc8\xec\x67\xca\x53\x1d\x2f\x70\x6e\x8a\xa9\x03\x35\x67\xd8\x9a\xd9\x49\xe9\x9b\x0a\x6b\x2f\x0d\x94\x00\x62\x4b\xdf\x90\xf1\xbc\xd8\x27\x58\x23\x8f\x01\x1a\x81\x24\xc1\xe5\xf1\x14\x9b\xf5\x4b\xfb\xd8\x26\xbd\x41\x2e\xb2\xfc\x38\x76\x0e\x3c\x96\x6b\xfa\x54\xd9\xde\x6e\x3c\xfb\x2c\x9f\x84\xc7\x74\x39\xef\x8f\x91\xba\xe2\x47\x09\x3c\x90\xfa\xcf\x09\x73\x2c\x71\x6b\xb9\x72\x31\x09\xd7\x28\x56\x47\x81\xfd\x8a\x92\x26\x63\x99\x2e\x9c\x68\xbc\x09\x90\x7b\x6a\x40\x32\x05\xd0\xa0\x93\xb5\xa4\x62\x44\x7e\x32\x14\xc8\xa2\x7c\xfd\x37\x03\x55\xcc\xff\xe6\x78\xb7\xc7\x1d\xdb\x27\x68\x68\xe4\xa9\x95\xc8\xdb\x8d\xb1\x22\xf9\x7a\x74\x52\xc6\x0c\x48\x92\x02\xd0\x2f\xca\x77\xf4\x78\xba\x9e\x02\x5f\x0b\x74\x13\x22\x5c\xe0\x45\x81\xb7\xb7\xb5\xfc\x38\xe7\x1b\x31\xb2\x8f\x83\x3c\x9b\xfc\xa7\xdf\x64\xba\x29\x38\x0f\x7b\x15\x69\x2b\x75\xa4\x6d\x6a\x90\xc4\x9c\x89\xa1\x35\x04\xfb\xb2\x8b\x1e\x95\x7e\x6d\xe7\xa7\xd1\x7c\x25\x05\x7a\xfa\x7e\x2d\x8c\xc2\x0c\x18\x2e\x24\xa7\xae\x87\x5d\x8a\x9e\xeb\x2e\x3d\x3a\xe6\x6b\x47\xdb\x17\xe7\x76\x81\xac\x08\xc6\xe1\xe6\x58\xc9\xfa\x5c\xc4\xb0\xe1\xc1\xdf\x57\x28\xbd\x3b\x34\x3a\x58\x77\xa7\x54\xa4\x98\x15\xe9\x28\x2a\xd0\x09\x25\x54\x30\xe5\x5f\x0a\x47\x8c\x87\x4e\x44\xe1\x30\xcc\x6d\x6f\x47\xf9\xaf\x40\x6d\xbd\x8b\x4d\x82\x14\xe2\xaf\x05\x5a\x5d\xee\x9c\x6a\xcc\x66\xdd\x21\x6c\xeb\x7f\x45\x2e\x0e\x60\x42\x6f\x2b\x11\xac\x30\x8e\x93\x91\xe9\xd2\x73\xb0\x37\x45\x48\x45\xf1\xac\xb6\xc6\x0f\xcb\xfb\x5a\xc3\x10\x5d\xac\xe5\x33\x20\xf4\x3b\xaf\x82\x75\x4d\x43\x3e\xb0\x71\x8f\x84\xbc\x74\x41\xe4\x37\x60\xb0\xf8\xa6\xe2\xa1\x95\x3f\x60\xe2\xd8\xba\x30\xdd\x45\x80\xaa\xff\x6c\x6b\xc2\x6f\x61\xa1\x95\x25\x71\xd3\x43\x9c\x00\xba\x70\x5c\x0a\xe5\xd4\x4a\x11\x6e\xab\xd1\x5a\x5c\x6c\x8d\x92\x34\xef\x27\x51\x98\xb0\xd1\x92\xd6\xaa\xc6\xa2\x9f\xdf\x3a\x67\xbb\x08\x33\x43\x60\x36\x97\x1a\x42\x2d\x96\xaf\x15\xd4\x26\xb3\xe9\x5a\xd8\xb5\x3b\xcb\x7f\xc5\x7e\xe4\x8d\x26\x62\x56\x64\x45\xb4\x4c\x2b\x4c\x12\x16\x85\x6b\x69\xf0\x60\x54\x46\x3a\x08\x91\xbc\x4f\x07\x45\xe1\x9a\x7d\xa4\x5c\xbe\xf0\x2c\x6e\x2a\x1d\xac\x4d\xfc\x24\x8e\xaf\xff\x0d\xbe\x8e\xeb\xc2\x5b\xde\x27\xab\xff\x28\x9c\x54\xbe\xa1\x87\xc1\x23\xdf\x99\x8a\x4e\x95\x72\xea\x85\x60\xb7\x5b\xd8\xcf\xf6\x76\xfa\xa2\x37\x48\xc7\x60\x9b\x37\xc9\x36\xc8\xe1\xe6\x2d\xf0\x29\xac\x07\x78\xec\x97\x21\x22\xe3\xa4\x12\x3d\x6c\xf7\xb2\x0a\x87\xd3\x64\x48\xc4\x23\x33\x9e\x74\xe2\x1c\xfe\xd6\xa5\x9b\x1c\x23\xc9\x7d\xcd\x00\x7c\xbf\xd2\x9a\xbd\xb8\x08\x90\x40\x16\xf6\x43\x59\x71\x8a\x72\x7e\x5e\x6e\xea\xdc\x1f\x71\xeb\xc8\xfd\x71\xfd\xd3\x0e\x5d\x7a\x56\x35\x1a\x8d\x2b\x95\xd3\x2f\xcd\x13\x2c\x85\xf2\x85\xa2\x69\xe2\xd9\x87\x2e\xba\x26\xb9\x4e\x91\x6c\xd8\xde\x8c\x6a\x3c\x7f\x0b\xaf\xca\x37\x18\x3d\xf1\xb6\x75\x77\x54\x0d\x48\x68\x40\x5a\x30\x0d\xea\x8c\x15\x05\x23\xc5\x3e\x70\x2c\x78\x42\xa7\x08\x37\x4c\xac\x94\xe1\xb7\x54\xf2\x9e\x50\x49\x2f\x6b\xf2\x6c\xd6\x63\x25\xb6\xb7\x55\xc4\x79\x09\x59\x19\xb9\x29\x5f\x51\x83\xc4\x61\x25\xaf\x69\xef\x70\x90\xa4\x45\x06\xc2\x72\xb8\x4a\xa8\xa8\xf1\xf5\xd8\x93\x53\x22\x63\x29\xd5\x90\xc7\x95\x4c\x4e\xba\x92\x68\xad\x73\x0c\x98\x68\xa6\xf9\x33\xe4\x6f\xff\xbd\x7f\xd0\xf0\xcb\xfb\x0a\x19\x3e\x39\x99\xb7\xfa\xf1\xe2\xdb\xd8\x35\x9b\xee\xf0\x7d\xc2\xd3\xfb\x40\xa7\x92\xe1\x1f\x22\x59\x71\x78\xec\x1a\xa3\xbe\xb0\xb7\xed\xb5\xd3\xcf\x56\xea\x56\xf3\x07\x5b\xa3\x04\x7d\x7b\xd2\xee\x54\x7e\x0d\x5f\xd7\x69\xce\x9b\x22\x2f\x86\x12\xa4\x71\x8b\x59\xe0\xd3\x13\x67\x95\x7e\x50\x6a\xd7\x42\xbb\x2e\xc2\xd9\x18\x8f\x8f\xd5\xf1\xfd\xb1\x42\xbc\x9a\x38\x1c\x9a\x68\x97\xef\xe2\xfb\x0f\x1a\xae\x78\x9a\x4e\x48\xb8\x0c\x60\x6f\x11\xf9\xae\x86\xeb\xb0\xff\xd3\x29\x16\x37\xcc\x81\xa2\x74\x5b\xe2\x15\x7c\xb2\xb6\xc4\x6d\xd2\xa4\x88\x7b\xcd\xd2\x57\x82\xff\x0e\xe4\x2f\xae\x1b\x34\x84\xd2\xe6\x54\x93\x63\x58\x0b\xbb\x79\x92\x86\x9c\x68\x47\xd5\xea\xa4\xc6\xc3\x9d\x74\xfd\x0f\xeb\x03\xd3\x5d\x95\x9d\x2f\xc4\x48\x0d\x47\x57\x59\xc5\x07\x2e\x2e\xb6\x28\xe7\x31\xa5\xa9\x79\x25\x50\x9a\x9a\x57\xea\x3e\x13\x0e\x1d\xa4\xd6\x85\x06\xe5\x20\xf0\x4d\xcd\x47\x96\x5a\xd6\xa4\xd1\x46\xd3\x27\x14\x09\x77\xb9\xb4\x79\x5e\xa9\x4d\xff\x48\x75\xf9\x41\xe9\xe9\x49\x7a\x12\xa9\x6c\xd3\x6f\x08\x37\x28\x79\x42\x18\x75\x24\x31\x10\xfe\xbf\x0d\x1f\xd6\xc1\x95\xe7\xe6\x1d\x5f\x82\xea\xc1\xbb\xbc\x45\xee\xd8\xbb\x83\x88\x2b\xf8\xbb\x68\x57\xe3\xac\x7d\x9c\xfa\xe9\x19\xd4\x11\x28\x05\xb0\x6b\xd3\x5a\xc9\xe5\x52\x72\xcf\x5b\xfa\xa5\x38\x3f\x1b\x8a\x9c\x9f\xd2\x53\x16\xb0\x5e\x14\x64\xb8\x33\x85\x6f\xd4\x01\x94\x7e\x4e\xf5\xe2\xfc\xda\xb4\xab\x54\xd3\x21\x04\x58\x7e\xf8\xaa\x64\xea\xf0\x4a\x70\x37\x14\x17\xd3\xbc\xd3\x4f\x7a\x52\x11\xf6\xc5\xb1\x34\xfc\x22\x73\xf9\x81\x2a\x32\x7f\xb0\x95\xf6\xed\xa5\x7d\xf3\xad\x97\xf6\xbd\xb0\xb3\x5c\xd3\x08\x14\x8f\x91\x53\xe6\x60\x93\x8e\x11\x8d\x41\x37\x88\xa8\x0f\x6b\x3c\xa5\x52\x3e\x61\x3a\x37\x89\x02\x9f\x54\x50\x89\xb0\x1b\xc6\x2b\xb3\xaa\x70\x76\x53\x0b\xa5\xbf\x3f\xf6\x15\x82\x8b\x8a\xbc\xe8\xbc\x76\xcc\xce\xbb\x0d\x52\x2e\xdc\x8c\x7b\x59\xf0\x6f\xb7\x35\x1f\x02\x93\xd4\xa2\x16\xf2\x64\xbb\x56\x00\x31\x4f\x72\x13\x29\xe5\xbe\x7f\x4d\x8b\x8f\xaf\xb5\xe8\xb4\xe9\xae\x0e\x12\x64\x13\x11\xee\xc0\x9e\xf0\xb5\xf2\x2c\x21\x30\x5e\xba\xc5\x34\x52\xf8\xf5\xbb\x5a\x0a\xff\x7f\xa5\xb7\x44\x5d\x68\xcf\xc4\xcf\x26\x12\xcd\xfc\x37\x81\xa2\x75\xfc\xc5\x4a\xf7\xde\x73\xad\x55\x1b\x45\x1b\xff\xe4\xef\xaf\x99\x34\xb6\x51\xa4\x45\x65\xc1\xbb\xcf\xd7\x2e\xeb\xdb\x4d\x93\x2c\x73\xfa\x72\x48\xfa\x1e\x1e\x2b\x01\xc6\xc3\xea\xf4\xf9\x07\xff\xf9\x7f\xd6\xf0\xf1\xe2\x25\xda\x77\xd2\xc5\xe2\x13\x55\x61\xdc\xb7\xd4\xc9\xce\x18\x2b\x54\xb7\x98\x5c\x95\x6f\x5c\xc8\x9e\x8c\x46\x49\x16\xe6\x96\x1c\x23\xa7\x29\xeb\x38\xcb\x50\x26\x60\xee\x0f\xa0\xb4\x24\x39\xe2\x0b\x8f\xa3\xd0\x76\x2d\xcd\x36\x93\x92\x07\x1e\x53\x77\x7f\xac\xf0\x03\xd7\xab\x86\x9b\x50\xa1\x43\x93\xa2\x56\x86\x31\xfe\x98\xf6\x04\x5f\xab\xb8\xa6\x6b\x86\x23\x6b\x8a\x59\x9f\xa9\x7e\x8d\x86\x40\x1a\xac\x3c\x5e\xfb\xbe\x3e\x2e\x98\xd4\x96\xb5\x9f\x2b\x10\x2e\x82\x25\x27\x45\x9c\xdb\xb4\x1b\x99\x70\x38\x25\x0f\x78\x54\xb5\xee\x1e\xad\x03\x20\x0f\x8a\x95\x15\x97\xf1\xd0\x14\x8f\x7c\xad\x36\xff\x68\x90\xd8\x38\x3c\xc4\x99\x47\xc4\xb2\x67\x02\x05\xe3\x62\x92\x1c\x9c\xac\xff\x8f\x92\x90\xd8\xd2\xcb\xb8\x49\xd2\x90\x9b\xc7\x15\x92\x2a\x8c\x7b\x2c\x7e\xd2\xd0\x51\x8f\x97\x37\x7d\xcf\x27\x69\xa2\x70\x34\x32\x2b\xdc\x7e\xe7\xf0\xed\x8b\x1e\xf7\xee\x15\x1b\x06\x1b\xa3\xa4\x9b\x86\xd9\x86\xc6\x1b\xe8\x6a\x51\x85\x1b\x63\x61\x81\xf8\xff\xb5\xfe\xe1\x45\xd5\x26\x5d\x15\xde\xc3\xf0\x0f\x3b\x26\x57\x3a\x8e\x97\x94\x8e\xe3\x25\x87\x78\x31\xdd\xae\x8d\x6c\xaa\xba\x88\x98\x46\x20\xf0\x8b\xf4\xb7\xff\x7f\xc6\xfe\x34\x48\x92\xf4\xbc\x0f\xc3\x67\xaa\x7b\x66\x76\xf6\xc4\x1e\x00\x44\xfe\x83\x7f\x17\x25\x04\x20\x45\x00\x30\x45\xdb\xe1\x30\xec\x70\x96\x67\x06\x58\x4c\x07\xd9\x3b\x31\x33\x98\xa5\x36\xfc\x61\xb3\xb3\xde\xae\xca\xed\xac\xcc\x42\x66\x56\xf7\x36\xc2\x1f\xf4\xc1\x76\x28\x6c\x05\x83\xb6\xe5\xa0\x22\x24\xd2\x92\x6c\x53\xb2\x28\x45\xf0\x02\x49\x51\xb0\xb3\x48\x1c\x04\xb0\xe0\x62\x17\x7b\xef\xec\x31\xf7\xd1\x33\x3d\xf7\x7d\xf4\x38\xf2\xfd\x3d\xcf\xfb\xfe\xaa\x2b\x37\xe8\x6f\x99\x33\x5d\x55\x79\xbc\xc7\x73\xfc\x0e\xca\x98\xfb\x26\x19\x8c\xca\xfe\x0c\xb9\x5f\x9f\x25\xf1\xc9\xcb\x18\x24\x98\xe4\xaf\x4f\x75\xdb\xf6\x1c\x6c\x97\x99\x35\x0d\xf3\x2a\xc6\x48\x5b\xd5\x14\xff\x53\xe4\xa5\x94\xc7\x4b\x8a\x4b\x73\xf8\x7f\x57\x53\xbe\x40\xfd\xd6\x22\x7e\xf9\xe1\x96\x93\xf2\xfe\x63\xc2\xa6\x0a\xff\x1d\x3d\xc3\x07\x52\x59\x12\x5c\x99\x7d\x93\xc8\x8a\xde\x47\x92\xae\xe2\x8f\xf6\xe6\xb0\x63\xde\xc4\xfa\x8e\xcd\xe4\x56\xe0\xd5\xbb\x84\xcc\x2d\x1f\x69\xa2\xaf\x16\xe1\x72\x9c\xf6\x64\xe8\xe3\xef\xfe\x07\x7b\xaf\x72\xdc\x00\xe3\x6c\xa7\x46\x1c\x73\xb0\xa3\x3e\xa8\x7c\x4b\xe7\x9e\x0d\x11\x71\x27\x8f\x75\xa6\xa5\x23\x9e\xad\x9f\x58\x58\x9a\x5e\xac\x3d\x7c\x27\x60\xb2\xdf\x8b\x02\x3e\x49\x3a\x73\x49\x6c\x96\x8d\xe0\x9c\x10\x33\x9d\x0c\x5a\xcf\xef\xf3\x76\x91\x75\x14\x20\xff\x61\x07\x28\x6a\x31\xb3\x63\xb2\x3b\xbc\x1d\x10\x68\xd6\x99\x39\x3f\xec\xc3\x92\x0b\xc1\x04\x9b\xd9\x7e\x14\x03\x1d\x52\x3d\x1b\x97\x98\x15\x7f\x19\xeb\x0a\x2a\xca\xa0\xf0\xe2\x45\xfe\x2f\x68\x72\x63\x59\xba\x1a\x50\x99\xe8\x0a\xe9\x91\xde\x9a\x8a\x2d\xea\xc5\x30\x4e\xa3\xdc\x84\xba\x7b\xaa\xcb\x92\xfd\x55\xac\xc8\xaf\x54\x84\xab\x3a\xe6\x90\x68\x2f\xc9\xcc\x17\xb3\x39\x5c\xbb\x3a\xcf\x35\xbc\xbc\xc5\x4c\x9f\xbc\x8e\xb0\x09\x4b\xc4\x69\x38\xd8\xb3\xed\x24\x5b\x31\xf9\xac\x67\xb4\x9e\x45\x9e\x86\x64\x7b\xc6\x16\xfb\xb0\x74\xbd\x53\x91\xcf\xde\xb5\x09\x02\x95\x09\x87\x56\xf1\x81\xab\x40\x88\x1c\x91\x81\xcb\xb1\x1d\x3e\x5a\x1d\x6a\xc8\x60\xec\xae\x55\xe7\xb8\x75\xea\x3f\x11\x79\xe2\x6a\xce\x90\xde\xdd\x69\x8e\x3d\x2e\x10\x2a\xcf\xf4\x84\x17\x87\x4c\xff\x23\xb0\x8b\xe4\x64\xaa\x2b\xe3\x9c\x0e\xc3\x32\x9c\x61\x01\x9e\x0d\xbc\x60\x2c\x0a\x52\xb6\x46\xf8\xf1\xb6\x87\x8d\x99\xb0\x97\x8b\x89\x25\x8a\xd3\xe2\x6f\x28\x27\x4d\x59\x9a\x60\x83\x67\xc9\x38\x00\xde\x73\xf8\x4c\xab\x43\x12\x11\x27\x59\x51\xcd\x8d\x89\x7e\x5c\x3e\x51\x7f\x00\x70\x0e\x38\x32\x62\xe9\xdb\x32\xb6\x4f\x0e\x05\x9f\x1f\xe2\xc9\xa1\xc9\xfc\x64\xc7\x6e\xf2\xf8\xb3\xb3\x30\xe5\x56\x0d\x7d\x8f\x18\x10\x36\x09\xb6\xe8\xc7\x3b\x88\x33\x48\x46\x43\x4b\x46\xd7\xec\x7c\x56\x3d\x2f\x7b\x27\x78\x29\xf7\xed\xc6\x8d\x1c\xf8\x28\xab\x0c\x5f\x65\xcb\xd5\xdb\x3e\x4c\xca\x86\xab\x79\xdc\xeb\x8b\x6c\x1b\xe2\xdc\x3b\x41\xeb\x57\xf7\x78\xf7\xbb\x43\x5e\x7b\xbd\xbe\x52\x64\x14\xf7\xb0\x5a\x2a\x25\xd7\x07\x29\xa7\xd8\x53\xe6\x1c\xe1\x76\xa3\x6c\x35\x2b\x65\x77\xc4\x63\x38\x8a\x12\x93\x9c\x38\xb1\xb9\x61\x56\x94\x3b\x7d\x26\x72\xd4\x52\x8f\xe5\xca\x98\xa6\x8f\xfe\xb2\x34\x28\x71\xaf\xb2\xf9\xcb\x1a\xcf\xe0\x51\x3b\xfc\xfe\x5b\xf1\xd0\x46\x59\xe0\x0a\xde\x8f\x46\x8e\xdc\xa4\x8d\x4c\xbc\xac\xf9\x84\x13\x68\x73\x80\xe3\x23\xd5\xce\xb8\x3d\xcc\xcd\xe2\xdf\x6d\xff\xea\x2f\x78\xfc\xd3\x43\xd0\x39\xc3\xbe\x77\x1f\xf2\x9b\xa8\x61\xdc\x47\x74\xab\x6a\x16\xb8\x3a\x70\x16\x7e\xa1\xd3\xfa\xc6\xd7\x9d\x18\x02\x75\x25\xb7\x8e\x6d\x2a\xe8\x42\xc7\xfd\xbb\x24\xf5\x94\xbe\x98\x5d\x86\x7f\xff\x4b\x1d\xc2\x76\xcd\x8c\xeb\x95\x5b\xa7\xb7\x2d\x1d\xda\x5a\xc0\xff\xef\xe9\x4e\xfd\x08\x05\xe8\x8a\x78\x55\x64\xaa\x02\x8f\xe6\x81\x4c\xbb\x38\xbc\x02\x08\x8a\xb7\x7b\x1b\xcb\x0e\xbe\x77\x23\xb0\xb6\x82\xe4\xb1\xf1\xac\xcb\xb5\xed\xe3\x44\xf5\xe1\x0a\x06\x25\xde\xe0\xd3\x63\x2f\x9c\x71\x83\x38\xb8\x5b\xc6\xa4\xae\xf6\x86\x1d\x68\xe0\xb7\x7c\x4a\x7c\xf6\x31\x5a\xef\x5a\xc8\x2e\x2e\xec\xec\x54\x99\x66\x6e\xae\xdd\x4d\x81\x60\x50\x1b\x66\x72\x38\x15\x29\x07\xac\x4b\x89\x89\xca\x3c\x1b\x84\xbd\xd4\x94\x82\x3b\xc1\x80\x01\xa4\x50\x8e\x9b\x98\x01\x8b\x59\xae\xf1\xab\x64\x6e\x81\x87\x56\x1e\xf6\xfa\xda\xa2\x2f\x6d\x2b\x70\x36\x46\xde\x78\xaa\xe3\xc1\xa1\xb2\x94\xea\x50\x6e\x39\x97\x0a\x51\xcf\xd0\x47\xf7\x49\x4b\xe4\x20\x2b\xca\xed\xf6\x91\x61\xca\xdc\xc5\x1c\xd4\x8a\x97\xb7\x04\xb9\xc8\x01\xef\xa7\xc6\x3e\x60\xda\xc0\xa8\xb0\x00\xa3\xdf\xfe\x1b\x9d\x47\x7d\x8d\x29\x37\x3f\x67\xdf\x32\xb2\x90\x37\x6d\x85\x18\x6b\xe0\x6d\x0b\x45\xc3\xe3\xfc\x41\x35\xd1\x7a\xf2\x2a\xd1\xf7\x83\xd6\x57\x7f\xcd\xd9\xd9\xd5\x73\xc2\xae\x7a\x9f\x7d\xc6\x0e\x6f\x44\x4e\x47\xd0\x44\x44\xb1\xe8\x51\x40\x3a\xb1\x93\x42\xc8\x1d\x4f\xf3\x11\x8b\x82\x13\x83\x63\xac\x25\x48\x4f\x61\xa3\x84\x07\xb6\xb5\x43\x44\xe0\xed\x98\x29\x98\x03\x5b\xac\x7a\x1f\x06\xcb\x23\x63\x3b\xed\x50\xb1\x7b\x48\x1a\x5f\x6a\xf2\x61\x1f\x04\x22\xa9\x8f\xa9\xd3\xf6\x0f\x9e\x1c\x93\x5e\x10\x1c\x35\x30\xf2\xb7\x63\x6d\x97\xe6\x3a\xca\xf4\xf2\xf9\xe0\x33\x9b\x95\x6f\xf7\x59\x50\xc4\xc3\xbe\xf2\x29\x1a\x3a\x52\xc0\x93\x25\x00\x37\x23\xac\x60\x04\xf2\xc7\x10\x2a\xe1\x59\xfc\x6e\x40\xae\x68\x02\x18\xc2\x9c\x44\xd9\x5e\xf4\x99\xec\x48\x42\x67\xfe\x2e\x42\x1a\xed\xb0\x90\x47\xdc\xa8\x1b\x9b\x34\x32\xc5\xec\xa4\x1b\x38\x21\xde\xec\x04\x44\xad\x6d\x8d\xea\x6e\x6b\x14\x8f\x77\x2d\xef\xaf\xd8\x41\x26\x97\x97\x6c\x17\x15\x1b\xf3\x05\xfc\x3a\x86\xc4\xeb\xb6\x04\x8e\x57\x7f\x8d\x69\xd8\xaf\xdb\xf1\x21\x9f\xb0\x03\x0d\x95\xcc\x56\xe7\x49\x37\x8f\x4c\xd8\x1d\x58\x7b\x75\x02\x49\xa1\x0b\xa4\x15\x7a\x0f\xd3\x30\x2f\x97\x26\x8f\xb3\xbc\x55\x8f\x53\x31\xd4\xc0\xd3\x56\x77\x8d\x86\xba\x64\x68\xf2\xac\x18\x86\xd2\x32\x42\xe0\x39\x6b\x93\x72\x39\x1e\xfb\x1f\xb0\x14\xad\xb8\x5c\xb5\xd6\xbc\xea\x2c\x58\x4f\x04\x75\x1c\xf4\x36\xed\x8b\xf1\x62\xd9\xb7\x5f\x29\xef\x09\x33\x51\x5f\x9a\x4f\x57\x06\x03\x86\x0b\x9d\x9a\x98\x3e\x5e\x9d\x2e\x8d\x42\x02\x0a\x5d\x64\xa0\x21\x9b\xc2\x2e\xe6\xc6\xec\xf0\xca\x8f\x7f\x55\x91\x69\xe0\x1b\x2c\x4e\x8f\x47\x88\x80\x57\x04\x37\xdd\xe4\x52\x8e\xed\xff\xc8\x10\xf2\xb5\xca\xf7\xb3\xa2\xb0\x30\x8f\xd5\xbf\xa2\x8a\x61\xf5\x78\x91\x30\x1e\x50\x4e\x8d\x2e\xec\xdc\xc0\x9a\x77\x98\x74\x05\x2e\x22\x12\xc4\xdc\xbe\xc8\xed\x6d\xc1\x96\xcb\xff\xe0\xe5\x21\x9c\x38\x16\x30\xa0\xe8\x18\xa6\x8a\x13\xc5\x72\xc5\x57\x50\x72\x55\xef\x6c\x1a\xb5\xf6\x82\xe8\x15\xba\x27\x8e\x11\x2e\xc7\xae\xc2\x26\xbd\xe0\x99\x89\xf6\x9e\x1f\x14\x3b\x3a\xbe\x08\xb0\x65\xec\x93\x9e\xd4\xf4\xb2\x32\x86\xa4\xd0\xdc\x9c\xac\x95\x57\xa8\xdf\x77\x85\x9a\x34\xb9\x59\x0e\x07\xc3\x96\x7f\x11\x90\x92\x91\x63\x8f\x8d\x19\x2d\x2c\x98\x7c\x9b\x5d\x73\xd8\xd7\x08\xbd\x84\x9d\x1d\x2f\x7e\x20\xbb\x07\x2a\x37\x10\x8f\xc5\xf6\xec\x1d\x0c\x06\x59\xa9\x36\x67\xa2\xd6\x4a\xa6\x4c\x57\x27\x33\x89\xc5\xf2\x71\x72\xba\xbd\xee\x9d\xce\x5f\xbd\x48\x46\x2e\x6b\x36\x2a\x53\x87\xcb\x7a\xa6\x23\x5e\xfc\x51\x45\xd6\xa5\xf0\x09\x03\x56\xe3\xf1\x0e\x81\x55\x8f\x57\x13\x66\x23\xb4\x71\x79\x78\xc6\x0c\x16\x62\x24\x75\xb2\xd9\xe0\x1e\x7f\x8f\xcd\x01\xa6\x55\xa3\xe6\xe7\xdb\x65\x3f\xcf\x46\xbd\xfe\xb6\xfa\xdb\x10\xec\xed\xe8\x4c\x60\xff\xea\x71\xe8\xb4\x0b\x1d\x79\xe2\x5f\x54\x13\xae\x6c\x0d\xc9\x43\x62\xb5\xa3\xc5\x3d\x1b\x09\xc3\x19\x04\x77\x72\x42\x61\x64\x51\xe6\x59\xda\x53\xff\x2d\x84\x99\xc0\xb8\xcb\xf1\x54\x27\xf3\x8b\x56\xd9\x30\x2e\x4b\xb5\xa8\xc0\x80\x16\xd4\xb4\x36\x43\x5b\x4e\x4c\xfe\xe8\x54\xac\x32\x3f\xdf\xb6\xf0\x31\x24\x60\xaa\xd8\xe6\x19\x87\x27\xd8\xb4\x21\x89\xbb\x06\x45\x1c\x55\x20\xa1\xba\xfb\x29\xae\xb5\xdf\x99\x4a\xdb\xc8\x6f\x46\x55\x02\xb0\x92\x88\x46\xbe\x9c\x10\x2c\x31\x1c\x95\xd9\x20\x5b\x88\x13\x33\xc1\x1d\xc3\xcf\xe8\xca\xa3\x3b\x40\x98\x2f\xc4\x65\x6e\x67\x94\x1d\x8c\xce\x4c\xd3\x0d\xc0\x53\x4d\xc4\x88\xae\x19\x8e\xd4\x33\xd5\x09\x28\x3b\x06\xed\x7a\x40\x2c\xc2\xe1\x30\x31\x85\x1d\x20\x48\xa3\xce\x20\xeb\xc6\x08\xbb\x16\x78\x8d\x82\x35\xac\x93\xf2\x57\x80\xc1\x29\x42\xbb\x41\x8b\x6d\x61\xd4\x93\xf5\x03\xeb\xf4\x36\x1a\x78\x5b\xac\x92\x01\x32\xb5\xe3\x53\x1f\xde\xbd\xbb\xbd\x90\x2b\xd9\x18\xb1\xd7\x3a\xeb\xb8\xaf\x53\x4f\xb8\xc8\xa2\xc8\xc8\xb3\x71\x11\xc1\xfc\xbc\xdb\x75\x26\xb0\xb0\x83\xb8\x28\x62\x6b\x41\xbf\x7f\x9f\xdf\xec\x3d\x80\xa0\xc9\xbb\x27\x09\x47\x69\xd7\x78\xa2\x9a\x14\x5d\x48\x78\xeb\x2a\x49\xe0\x8d\xbe\x9c\x7e\x99\xeb\x4d\x3f\x0d\x3c\xde\xfc\xa7\xd4\x56\x10\x5e\x91\x2d\x8a\x23\x71\x7b\xb3\xa2\x07\x8a\xf6\xb2\xfc\x07\xa6\x95\xfc\x47\x93\x07\x76\x3f\x1b\x18\x00\x8f\x54\x8c\xd0\x55\x3d\xfe\xcb\xa7\x20\x2d\xad\xfb\x26\xf5\xba\x2b\x0f\xfc\xde\x3e\x25\x54\x30\x37\x67\x8d\x8e\xb5\x03\x05\x48\x08\x9a\x6a\x80\x51\x6c\xf0\x70\x65\x25\x75\xeb\x11\x63\x04\xe4\xe7\x9c\x88\x9d\x6f\x27\x80\x91\x6a\xd4\x43\x22\xb3\xc7\xdc\x90\x8f\xd3\x34\x5b\x0e\x1d\x71\x01\x21\xec\x4d\x4a\xca\xd8\xfa\xac\xcc\x46\xa5\xe9\xce\x7a\x46\xe2\x2d\xf2\x19\x03\xdc\x41\x65\x08\xec\x8f\xa1\x62\xff\x2a\x35\xf7\x01\xed\x21\xc0\xcc\x6d\x02\xcc\xdc\xa6\xf0\xaa\x27\x8c\x07\xcc\x5a\xd5\xa3\x21\x21\xe7\xd3\x4c\x0e\x0e\xf3\x32\x2e\xc2\xd4\x0e\x35\x57\xb6\xdf\xeb\xcb\xf6\xba\x23\x0d\x47\x79\x77\x64\x5a\x24\x23\x7d\x91\x6a\x4b\x17\x27\x8d\x90\xd3\x30\x2d\xb7\x91\x24\xe7\x03\x0a\x4f\x25\xdd\x93\x13\xa2\xc7\xc0\x12\x42\x73\xd3\x46\x92\x78\x31\x34\x69\x57\xdb\xc7\x18\x69\x62\xc5\x22\x27\xae\xe4\xd3\x1d\x46\x54\x92\xbd\xca\x9a\xad\x5b\x3a\x44\x27\xf4\xd8\xd6\x78\xe0\x89\x54\xb8\xf9\xbb\x04\x9e\xb8\x3b\x55\x09\x7c\x7e\xcf\xc1\xf6\x37\x47\x71\x69\x26\x4c\xdb\x2a\xef\x2a\x73\xb8\xd1\xbf\x65\x25\x2e\x8a\x59\x6a\xa7\xdf\xda\x54\xdf\x26\xe0\x19\xb4\xe4\x31\xbb\x6e\x05\xde\xa8\x61\x71\x54\xe8\x80\x47\xf6\xf7\xc4\x98\xe8\xa6\x15\x71\x89\x9e\xae\x23\x74\x4e\x74\xfe\x76\xfb\xcb\xdb\x28\xd2\xfe\x7d\x1b\x14\x88\xa6\x92\x5c\x08\x62\x17\xd0\x76\x44\x70\x86\xac\xdd\x5e\x6d\x82\x5d\x94\xd9\x2a\x36\x58\xf7\x10\x9c\xe8\xee\x61\xde\xbf\xfa\xf1\xb0\x40\x19\x4f\x60\x76\x88\x7b\x15\x73\xe7\xdb\xea\x18\x5a\xba\x18\x34\x59\xdf\xa9\x15\x00\xb6\x43\xa8\x26\x5d\x45\x98\x21\xdd\xe6\x8a\x68\xd6\xaf\x4f\x44\x4c\x83\x28\xde\xc6\xd2\xe9\x78\x62\xca\x56\xb6\x8f\x47\x53\x74\x3c\x12\xb4\x3c\xef\x23\xb9\x15\xc3\xae\x46\x9d\x8e\x3c\xaf\x97\x15\x19\x44\x4a\xa4\xa0\x9d\xfd\x7c\x83\x9e\xe0\x01\xbb\x82\x91\xa5\xcf\x77\x2b\xb2\xeb\x11\xac\x1b\x3a\x52\xb7\x82\xa7\x69\x65\x5e\x34\x69\x37\x4c\xcb\x02\x0a\x42\x82\x93\x0c\x3c\xea\x04\xea\x5d\x72\xcc\xa3\xe2\x74\x03\xbe\xa9\xcc\x43\xef\x30\x8f\xd5\xf6\x5f\xda\x17\x22\xc7\xd4\xe5\x2c\xca\x2c\xeb\x42\xa6\xc9\x89\x32\x3a\xa8\xd3\x39\xd2\x6c\xf8\x49\x03\x32\xe3\x40\x3b\xcc\x7b\x23\xa9\x2a\xaa\xc3\x89\x37\x6a\x3b\xd7\xc0\x46\x2f\x54\x37\x9a\x28\x2b\x0e\x65\xd9\x84\x80\xf9\x5c\x7b\x29\x35\x66\x02\xd6\x73\x81\x98\x46\xd3\x80\x44\x38\x0d\x99\x22\xce\xcd\x0c\x3b\xaa\xd8\xfb\x42\x49\xec\x2e\x19\x8d\x9d\x22\x75\xd5\xa1\xc9\x23\x33\x14\x69\xfe\xbd\x84\x1f\xad\x43\x10\x1d\xe5\x54\xb6\x49\xa3\x87\x7c\x13\x5d\xa4\x8e\x10\x3e\x4b\xe8\x80\xe9\x77\x3b\xf0\x68\xf9\x8f\xc8\x6a\x42\xd0\x08\xf2\x89\xc0\x63\x6d\x51\x4d\x42\x0b\xe6\x48\xe5\x01\x5d\x4b\xc6\x0c\x0b\x32\x9d\x43\xde\xc8\x5c\x46\xa9\x5c\x10\x76\x3d\x0f\xeb\xa0\x79\x1b\xd9\xc4\x40\x9f\x59\xf5\x12\x3d\xaa\xf7\xb1\x31\xa9\x26\x9f\x25\x93\xe0\xa7\x3a\x0d\x21\xca\x62\x12\x0e\x16\xb2\xd5\x50\x5e\x27\x16\x88\xe3\x81\x5f\x2c\x8e\x37\xf5\x1e\x97\xe3\x22\x2e\x49\x3f\xe1\x24\x0d\xeb\x93\x84\x6a\xee\x86\x29\x36\x73\x6c\xbe\xff\x6b\xd5\xda\xc4\x0c\x77\x31\xb3\xef\x37\xbc\x36\x15\x49\x89\x70\xde\x30\x4c\x63\xa3\x71\x32\xea\xb0\x47\x02\xc2\xc3\x1c\x21\x7a\x43\xd4\x0f\xf3\x9e\x79\x88\xba\x10\x47\xf1\x1b\x0a\xdf\xc2\xb7\x10\x7e\xeb\x59\xa7\x64\xe3\x19\xae\xb3\x63\xd2\x4c\x3e\xc7\xe8\xa1\xb7\xc9\x35\x71\x47\xa7\x21\x81\xe8\x86\x71\xb2\x6a\xbb\x49\x60\x09\xfc\x10\x83\xc4\x51\x6c\x1c\x45\xff\x3d\xa2\x20\x5c\x99\x42\x02\x5b\x56\x0a\x50\x95\x9a\xa9\xd9\x4b\x52\x48\x26\x2f\xa1\x05\x88\x33\xfb\x1c\x22\xa0\xe5\x4c\xfd\xae\x52\xff\x6a\xfa\x85\xd6\xcf\x37\x89\xd5\x91\x48\x7d\x1c\xd8\xd4\x61\x33\xf6\x67\x6e\xce\x96\xe6\x66\xa9\xdf\x81\x40\xcd\x19\x49\x39\x8c\x04\xda\x65\x72\x4c\x56\x30\x99\xe5\x2e\x1a\x41\xf8\x3b\x4b\x74\x97\x50\xdf\xac\x7c\x41\x68\x25\x37\xd1\x12\xc8\xdd\x92\xa0\xdb\xe9\xa7\xc9\x7a\x93\x9c\x67\x99\x87\xa3\x02\xc6\xf6\x13\xbe\xd2\x1a\xad\x3b\x9e\xe7\x28\x19\xe6\xb1\xee\x59\xce\x57\xc2\x5b\x0d\x5d\x27\x2f\x52\x2f\x3b\xb7\x90\x84\x03\xb3\xc3\x53\x39\x41\x13\x14\x35\x25\x7c\x1c\xd1\xcf\x5b\x36\x80\x42\x89\x04\x6d\x48\xac\x0d\x68\x8a\x61\x4b\x7b\x68\x4c\xbd\xfe\xed\x9d\x27\x5c\xe5\x2a\x09\xd3\x48\xa3\x0a\xed\x7b\xd4\xbf\xa9\xa1\x31\xc1\xf7\xd7\xa6\xbd\x5a\x77\x43\x65\x81\x58\x86\x4f\x74\x48\x3b\xe8\xd5\xca\x47\x10\xf7\x88\x48\xf0\x80\x34\xb7\x86\x19\x92\x1e\x68\x2a\xa2\xb6\xff\x7d\xdc\x1e\x10\x5c\x47\x31\x01\x51\xa0\x3c\x11\x78\x8b\x61\x6b\xe1\xba\xf1\x5a\xe5\x89\xc6\xb7\xc9\xf3\xff\xfb\x84\x1b\x9a\xff\xea\xf3\xdb\x5a\x7b\x0e\x4e\xd6\xfa\xa4\x8e\x4b\xc1\xd6\x8e\x89\x62\x4d\x6b\xf7\x1e\x29\x00\x7c\x3c\x85\x80\xdf\x3b\xef\xe9\x70\x29\xd9\x7e\x7c\x18\xd0\x50\xfb\x90\xec\x09\x22\x93\xcd\x10\xba\xec\x5a\x40\x16\x1e\x82\x96\x13\xc5\xb9\xa9\x87\x2c\x78\xb0\x21\xed\x85\xad\x8e\xa7\x72\xb6\xc8\x96\x2b\x2e\xcd\x60\x96\x02\xc4\x23\x44\x07\x44\xda\x80\xc5\x70\xab\x6d\xf4\x68\x2c\xd8\xe0\xc0\xbb\x9c\x39\x57\x62\xf1\x3c\xab\x48\x89\xf0\xed\x4f\xa4\x31\x0d\xb3\x91\x20\xb9\xc4\xcb\x36\x20\x8f\xc0\x2b\xb4\x6a\x27\x59\x4e\xad\x43\x0d\xb8\xd4\xb1\xd8\xb3\x08\x9e\x41\x03\x01\x23\xe1\x2e\x82\x22\xe7\xca\xe4\xd6\x1b\x4e\x1c\x8f\x57\xa4\x94\x2e\xe4\x28\xe9\xde\xb0\x2f\x4d\xf7\xa5\x11\xc8\x7b\x24\xfa\xdc\x9a\xf7\x35\xfc\x26\xa0\x56\x18\x6f\x96\x0b\x7b\x25\xf0\x3b\xda\x2b\xb4\xfd\x0e\xb2\xd4\xac\x3e\x59\xe7\x56\x18\x65\x57\x50\x9b\x40\x91\x11\xb5\x74\x27\x85\xe6\xca\x80\x33\x1d\x5b\x44\x54\xf7\x4f\x5b\xfb\xc2\xbb\x3b\x89\x62\x1d\x36\xdf\xbf\x24\x30\x22\x5a\x0a\xd4\x24\x50\xe5\x48\xf1\x35\x40\xf4\xf0\x1a\x81\xfb\xff\x18\xad\x04\x32\x44\xd5\x02\xb4\xc0\x81\x10\x90\x81\xeb\xaa\xd5\x1c\xea\x52\x4d\xdb\x7b\xcd\xcf\xb7\xc3\x95\x50\x43\x28\x76\xb5\x41\xeb\x00\x10\x3a\xcd\x7a\x7c\x65\x67\x21\x37\x61\x81\x90\xc0\xe1\x68\xe7\xe7\x1d\x12\xa5\x61\x9b\xea\xd7\xbb\xcf\xbe\xfd\xfb\x9c\x3a\x0a\xba\x8f\xc0\xd6\xdd\x09\x58\x11\x8a\x64\xde\x61\x6c\x13\x2e\x24\x06\x62\xc4\xa8\x85\x9e\x20\x0b\xf2\x13\x53\x91\xa1\x23\x79\x8a\x32\x05\xb6\x3b\x29\x6e\xca\x09\x29\x73\x99\x97\x2d\x1f\xc2\x06\x83\x4e\x42\x19\x71\xb8\xbe\xe6\xa6\x02\x60\x16\x4a\xcd\x51\xac\x28\x49\x54\x60\xdd\x9b\x8b\xf6\xe3\x61\xcb\xd3\x25\xde\x27\x33\x91\xf7\x59\x99\xd6\x2c\x26\x26\x2a\x11\xfc\x62\x9c\xad\xd9\x7e\xac\x1c\xbb\x7c\xb7\x6b\x06\x61\xda\x7d\xc4\xcb\xdf\x9c\x26\x60\xba\x98\x2e\x39\x7c\xa5\x1b\x36\x82\x21\x54\xf4\x24\x7b\xbe\xdb\x51\x83\x95\x0c\x30\x2d\xfc\xc7\xbb\x18\x5b\xd8\x95\x65\xc9\xc5\x0f\xde\xf7\xb6\xc1\xbf\xfc\x0b\x1d\x45\x38\x0c\x40\x85\x36\x79\x8b\x45\xb7\x5e\xc7\x07\xe5\x24\x78\x9a\x84\x31\x53\xeb\x9f\x6e\x0a\xfb\x70\x70\x95\xa7\x70\x31\x72\x42\x59\x53\x3d\xd4\x8a\xb8\x67\xa5\xab\xe7\xe6\x0e\x48\xe4\xba\x1e\xd8\x06\x88\x9c\x34\xbc\xa2\x03\xed\x22\x5e\x2c\x79\xe1\x7e\xd1\x3e\x2c\x27\x90\xeb\xe0\x2c\xe7\x2b\x8f\xab\x29\x57\xb2\xa7\xeb\xbf\x42\x55\xea\x2d\x44\x7e\x58\x78\x0f\x63\x8e\x49\x58\x16\x90\x13\xdb\x4d\xde\x11\x84\x15\x01\xc8\xce\x56\x74\xdf\xf1\x20\x8f\xe3\x3d\x60\xa9\x7b\x85\xa8\x33\x1f\xd9\x45\x05\x13\xf6\xd8\x84\x8b\xe8\x4d\xb4\x50\x11\xfe\xbd\x6b\x5f\x9d\x23\x9d\xd4\x37\xa6\x60\x6a\xee\xdf\xbc\x1d\x78\x3d\xb8\x1b\x14\xf8\x0b\x0f\x51\x9d\x37\x3d\x1f\x7e\xda\xe8\x7c\xcf\xc1\x76\x31\x08\xf3\xd2\x16\xb9\xeb\x1b\x50\xbe\xad\xbd\x1a\xc5\x60\x37\xf5\x04\xb2\x95\x30\xef\x16\x33\xde\x56\x51\x44\x53\x26\x62\x03\xe5\x9f\x36\x60\xf9\x96\xb2\xdc\x84\xa9\x46\xf1\x5a\xd0\x22\x22\xf1\x74\x12\x6f\xd3\x71\x16\x4c\x73\x2b\x9f\x27\x34\x9d\x9a\x5a\x92\xbe\xd2\x1e\x8c\xa2\x7e\xcb\xd3\x82\xcf\x12\x87\xee\x2c\xed\x76\xe6\xe5\xf2\x71\xea\xa2\xdd\xb1\x2b\xb8\x3a\x30\x7b\xa4\xe0\x53\x1d\xd2\xf5\xfb\xb7\x9c\xb0\x5c\xf1\xb2\x94\xdf\x7d\xa6\x33\xa9\x27\xf4\xb5\xe7\x59\x8a\x58\x2b\x02\x1f\xdb\x17\x4d\xac\xb0\x17\x64\xa0\x6c\x54\x64\x4b\xb9\x6d\x8c\x87\x84\xb4\x0a\xd6\x9a\x0a\xb3\xf3\x99\x7f\x1e\x96\x71\xb6\xad\xde\xc1\x36\x8e\x54\x5c\x5d\xf3\x80\x28\xb1\xa3\x45\xb9\xe3\x4e\xd0\xaa\xff\xd4\x55\x4c\x6d\xc9\x26\x5f\x15\x81\xb1\x03\xbe\x8e\xe8\xc4\x9e\xa6\xa9\x57\x56\xab\xa0\x6f\x12\x79\x1f\x28\x93\x09\x10\x50\x4e\xa6\x0a\x44\x87\x76\xed\x69\x2f\x98\xb0\xcc\xe3\x08\x72\xe0\x88\x83\xa1\x79\x8b\x80\xf6\x03\x3c\x55\x6c\x32\x1b\x4d\x66\x93\x49\x98\x76\x07\x61\xbe\x44\x5f\x20\x2e\xd9\xaa\xea\xe1\xe3\x8e\xd3\x8d\x03\x49\x74\x1d\x5a\xbe\x4d\x2f\xb8\x4a\x25\x46\x6e\x16\xb1\xae\x63\x0b\x0b\x71\xce\x12\x1f\x60\x60\xbd\xd9\x57\x79\xd2\xfd\x3e\x82\x6f\x5a\xc9\xdd\x58\xe5\x47\x54\x22\x55\x9e\x8f\x9c\x34\x99\x6b\x0d\xb2\xae\xc9\xe1\x00\x8e\x7c\xf9\x3a\x15\xae\x05\xbc\x27\xfe\xa9\xee\xf5\x41\x37\xc3\xa4\xa5\x3a\x7d\x60\x7d\xfd\x41\x40\x50\xae\x9b\x1c\xe8\xdd\xc0\x78\xc3\x38\xfe\xab\x06\x02\xa1\xdc\x6e\xbc\x30\x2a\x21\xff\xa5\x39\x1d\xd9\xa1\x9d\x0f\x3c\xba\x7b\xc1\x24\x59\xda\xb3\x00\xdd\xfa\xca\x51\x22\x43\xbc\x26\xc7\x53\x63\xe1\xc5\x17\xdb\xa5\xc9\xf3\x2c\x8f\x8b\x81\xfd\x10\x12\xf8\x1f\x92\xe2\xf4\x0f\x83\x69\x35\xf1\xf9\xf6\x30\x4c\x4c\x51\xc6\xa9\x52\xa1\x1a\x2d\x17\x1a\x96\xad\xdc\x0c\xc3\x38\x97\x96\x12\xc2\xb6\xbb\x6c\xc8\x75\x81\x40\x79\x4d\xda\xe0\xed\x91\xb5\xd0\x28\xad\xc9\xcb\xfe\x5d\x6e\x8b\x6a\x39\xdd\xb3\xe9\x1d\x6a\xcf\xc1\xf6\x42\x96\xa9\xeb\x0e\x76\xa5\x1b\xac\xd4\x78\x23\x78\x66\xca\xeb\xf9\xf9\xfd\xbb\x1e\xb2\xc3\x04\x40\x2f\x31\x0d\x95\x13\xbc\x01\xc4\xa3\xe8\x60\x62\x30\x9d\x0c\xa8\xff\x28\x90\x5e\x39\xa1\x08\x16\xb5\x5c\xf9\x84\x4b\x64\x53\x6b\xfe\x6a\x3f\xe2\x50\x04\xf5\x7c\x42\xfe\x72\xc7\xde\xa1\x9a\x05\x6a\x1d\x7f\x25\x2e\xed\xc0\xc0\x06\x70\x8f\x6c\x32\xee\x4d\x25\x1f\x73\x73\xed\x6c\x21\x89\x7b\x16\xfe\x4f\xaa\xad\x97\xa8\x76\xf7\xaf\x19\x6c\x76\xa1\xfa\xc5\x4f\x88\xf7\x92\x70\x21\xb3\xdd\xcc\xd5\x19\x4f\xc7\x40\x51\x0e\x9b\xb1\xc4\xc2\xd8\x4c\xcf\x4f\xd4\x46\xb2\xc2\x3c\x4d\x48\x0d\xd1\x6e\x47\xb0\x28\xe6\xa6\xce\x4e\xc7\xf5\x29\x01\x03\xc0\xae\x7f\x5f\xb6\x60\x7c\xe4\x12\x42\x31\x95\x04\xf7\xb4\x97\x9b\x40\x63\x3a\x19\x0d\x6f\x56\x79\x9f\x5d\x6b\xbf\x87\x49\x08\xcc\xfc\x29\x3c\x71\xc1\x54\x05\x1e\x87\xb4\x8e\x1d\x4e\x63\x7b\xef\xae\xfa\x88\x75\x20\xc4\xbe\x70\xd3\x06\x92\x28\xf3\xfc\xa8\x22\x3a\xc0\x11\xa7\x17\xbf\x12\xc6\xd0\x1a\x9a\xa0\x2b\x6a\x9d\xa7\xe5\x2c\x03\xcf\x58\x57\x5a\x2d\xf9\x34\x69\x23\x67\xa3\xd2\x6e\xfd\xc8\xd9\xee\x59\x64\x02\xae\xfb\x91\x8e\xe7\x7e\xdd\xad\x3e\xad\xab\x53\x3f\x2b\xb3\xc5\x3a\x1a\xec\x6f\x52\xeb\x3c\x45\x6a\x9d\xd3\x56\x51\x73\x73\x10\xe0\x6a\x79\x62\xd5\x35\x52\x0e\xbd\xe6\x1a\x2f\x51\x3e\x8a\x0b\x93\x23\x1b\xd6\x86\xa2\x1f\x8f\x47\xd8\x5e\x30\xcf\x56\x52\xab\xb7\x8b\xdd\x19\xf0\x5f\x6c\xf4\x68\x70\xab\xf4\x32\xc9\xab\xbd\x33\xa1\xd7\x9c\x2c\x67\x96\x6a\x8a\xb0\xea\x1c\x23\x89\xbc\x0d\x28\xda\xf3\x76\x15\xc7\x45\xc0\x7e\x1b\xb1\xc2\x43\x56\xf6\x03\x89\x9f\x67\xbd\x98\xe5\x2c\x59\x76\x0f\x48\x4d\x29\x3c\x00\xea\x38\x35\x2d\xbb\x26\x8a\xbb\x70\x1f\x53\x45\x88\x96\xd3\x3f\x3e\x45\xe2\xad\xa7\x2a\x9f\x73\x9d\x73\x63\x21\xcf\x86\x52\xe8\x47\x76\xff\x7d\xaa\xa7\x7f\x3f\x98\xa2\xf8\xbd\xd0\x3e\xb4\x6b\xdf\x0e\xca\x50\xab\xc9\x5e\xd8\xfe\x5d\xde\x12\x71\xaf\x56\x36\x6e\x58\x40\x2c\x76\x64\x40\x09\x95\xab\x6c\xef\x4f\x7f\x4c\x1f\x58\x91\xc6\x43\x11\x70\x23\xc1\xfd\x7d\x6e\x76\x69\x12\x62\xd2\x97\xb2\x55\x9b\x2a\xfa\xba\xc0\x45\x06\xf7\x4d\x3a\x81\xaf\xa4\x85\x85\x0e\x0a\x5d\xdf\xea\xfc\x21\xe9\x5d\xab\x26\x4d\x26\x7d\x15\x02\x1a\xb2\x08\xb3\x6f\x05\xa4\xaa\x79\xd6\x86\x72\xca\xf9\x99\x12\x2e\x46\xa0\xb4\xad\x43\xdd\x8d\x6b\xd4\xd0\xcd\x46\x65\x61\x92\xa4\x68\xd5\x61\x1f\x46\x9f\x98\x17\xc8\x09\x91\x9a\x4d\x1a\x65\xa3\x5c\x28\x50\xcf\x3a\xb5\xfd\xfa\xba\x54\x85\xbf\xa1\x08\xd5\xce\xe3\x05\xd9\x69\x54\xd1\xd8\x57\xe7\x9b\x42\xea\x7d\xed\x38\x2d\x46\xb9\x50\x39\x30\xd8\xd1\x5b\x75\xbe\x10\xf5\xf5\x29\xd4\xde\x8f\xbf\x85\xb8\xdb\x55\xec\x0e\x36\x99\xef\x62\x99\x93\x13\x47\x88\x2a\x46\x0b\x45\x19\x97\xa3\xd2\x19\x88\x20\xca\x03\xa4\xcb\x55\x41\x29\x49\xf2\x1d\x1c\xb3\x68\x59\x82\xcb\x26\x59\x7d\xa8\x1e\x3f\xf8\xa4\x68\x4c\x69\xff\xc0\xfe\xaa\x03\x23\xd5\xc3\x00\xf1\xc6\xdd\x80\x3c\x1c\xff\x90\x24\xe6\x66\xed\xb2\x29\xdf\x55\x91\x09\xdb\x39\x52\x10\x19\x8c\xba\xdd\xc4\xc0\x7a\xc9\x99\x70\x79\x31\xe2\x69\xdd\x38\x4b\x71\x4f\x92\x91\x13\x4a\x17\x6f\x9c\xca\xc7\x71\xeb\x0d\x30\x9b\x03\xed\xa5\x34\x5b\x49\x51\xb1\x57\x08\x1d\x29\x4d\xdf\x0f\x98\x4c\xa9\xd3\x77\x31\x51\x77\x12\x35\x75\xf2\x45\xc4\x0f\xf1\xca\x10\x8f\x48\xc1\x48\xd1\x90\x1e\x09\x30\xa8\x93\xed\x65\xb3\xdd\xfe\xb7\xe6\xad\xde\xd0\x56\x3c\x3c\xe4\x64\x92\x77\xe3\xdd\xa8\xa4\x2a\x2a\x38\xf7\x8e\xae\xc6\x61\x59\x86\xd1\x92\x84\x59\x22\xd2\x41\x36\x8a\x98\x2b\xda\x0a\x6e\x40\xee\xa4\x26\xcc\x67\xa9\x73\x8f\x70\x1e\xd1\xcf\xab\x95\xe7\xf0\xfc\x25\x81\x5f\x6f\x04\x4f\x4f\x2f\x5a\x7f\x67\x27\xf9\x53\xff\x69\xe0\xc1\x43\x67\xf1\x88\x35\xb1\xb1\x39\xbe\x43\x62\x3a\x62\xd6\x23\x1d\xa2\x45\x5d\x90\x84\x5d\x71\x91\xde\xb1\xeb\x5a\xe5\xa1\x71\x1f\xb9\x8e\x42\xd7\x0c\xb2\x28\x17\xc6\xa0\x28\x8d\x54\x24\x63\x74\x3b\xf0\xbc\x11\xb1\xec\xda\x5e\x7f\xa7\xab\x3f\xea\x2d\xff\xa3\x9f\x63\x3c\x26\x9e\x38\xde\xf4\x33\x68\xf1\x61\xe5\xbd\x16\x90\x07\xc8\xe9\xa6\xc7\x5a\x5a\x07\x29\x07\x75\x3e\x51\x4d\xf8\xa5\xeb\xcb\x33\x2f\x47\xa3\xc2\xa8\xf6\x9c\xd6\xa5\x49\xae\x0f\x1c\x1b\x95\xa6\xa5\x11\x15\x27\xc6\xae\x57\xde\x38\xfc\x55\xf6\xf4\x7e\xb5\x59\xeb\x2e\x09\x89\x9c\x2a\x16\x0a\x04\x4e\x3e\xe6\xf0\xa4\x8b\x71\x6e\x06\xa2\xdd\x81\x45\x57\x94\xd0\xe4\x64\xec\xd9\xc5\x45\x14\x9b\xb4\x8c\x8b\x72\xb6\x5e\xae\x45\x29\xba\x9a\xe0\x16\xfb\x91\xb3\x81\xd1\x0d\xa6\xc8\x6b\x0d\x6b\x64\x9d\x36\xe4\xb1\x59\x36\x98\xa4\x8a\xc4\x22\x39\xe7\xdf\x20\x4f\xa1\xd7\x08\x59\xb6\x1c\x9b\x34\x0d\x67\x49\x44\xe9\x5c\x35\xe1\x11\xda\x72\x5a\xac\x77\x31\xe1\xb0\x52\xdf\x6e\x88\x84\x0e\xb4\xfb\x61\xb2\x38\x63\xe3\x4a\x07\xac\x73\x14\x66\xe4\x01\x40\xf4\x7c\xd8\x74\x0f\x2b\x59\xda\x35\x5a\x2a\x55\x13\x0a\x3b\x00\xe4\xa4\x41\xe2\x6f\x0a\x95\x48\x76\x4f\xee\x84\x14\x4a\xb2\xb0\x88\x0b\xa2\xb9\xaf\x51\x85\x79\x2d\x98\x10\xac\x2e\x01\x16\xf2\xb1\xcd\x39\x82\xdc\x4d\x6b\x29\x7f\xed\x79\x58\x36\xb4\x7c\x39\x02\x70\x0a\xa5\xcf\x39\x1f\xa8\xf8\xe5\xb2\xbf\xcd\xa3\x8c\xe1\x77\xa4\xbd\x28\xea\x12\x9f\x47\xbd\xc0\xf1\x3d\xe6\xe6\x64\xc7\x9b\xed\x6c\x2e\x21\xd5\x0f\xc2\xe0\xa7\xa5\xd4\x4f\xc2\x9a\x27\x27\xd0\xc8\xbd\x30\x07\x90\x4c\x67\x31\x2d\x81\x17\xec\xa7\x50\xc3\xdd\x62\xb7\x20\x39\xee\x3c\xe5\x60\x4e\x83\xb8\x97\x4b\x8a\xe4\x5b\xbd\x04\xd9\x79\x25\x20\x90\xd7\xb4\xae\x73\xbd\xe6\xc5\x69\x1d\x45\x6a\xbb\x10\x0b\x19\xb2\x23\xb5\x94\x98\xf0\x7d\x6b\x6a\x02\x77\x33\xf1\x73\xc5\x4a\x75\x8e\x01\x6a\xe7\x88\xd0\x9d\x9b\xe1\xa8\xf4\x84\x6e\xb5\x6f\xa5\xae\xc6\x79\x92\x37\xea\xe6\x21\x24\xb6\xea\xc7\xa0\xe2\xdd\xbe\x70\x7f\x81\xec\x16\x8a\xa5\xb8\xc0\xac\x41\xe8\x8c\xfc\x13\x1b\x22\xdc\x98\x31\x81\xfe\x12\xf7\x22\x6f\x94\x8a\xfd\xb9\x79\x69\xb4\x6c\x52\xb5\xd5\xc7\xf6\xfe\x0e\x1e\x9e\x9c\xd4\x7b\xa9\x84\x88\xff\xd9\x2f\xcf\x40\x87\xad\x45\xc6\xd0\x9e\xb4\xff\x80\x55\x28\x2c\xa6\x58\x48\xd4\x98\x7a\x6f\x57\x7e\x1a\xbe\x4d\x0d\xcd\x2f\x95\x99\x0d\xaa\xb0\x87\x42\xf2\x41\xf7\x61\x52\xb9\xba\x48\x70\x85\xae\x59\x8e\xc5\x45\xd2\xf5\x93\x7d\x6f\x99\x92\x98\x70\x38\x4c\x56\x77\x60\x43\x72\x90\xd5\xdd\xbb\x55\x4d\x0f\x7c\x39\x55\xd1\xf2\x3e\x51\xe7\x2a\x66\x53\xd4\xd1\xb9\x6b\x38\x51\x5f\xc8\x25\x09\x2f\x65\x45\x9f\x48\xf5\x27\x98\x6c\x7c\xa2\x89\xa1\xbd\x98\xe5\x26\xee\x49\x05\xb1\xb1\xdf\x3e\x5d\x53\xd9\xd7\xee\xc6\x45\x6f\x54\xb8\xb8\xc9\x89\xd7\x52\x44\xd3\x80\x38\x04\x3f\x4c\xa5\x99\x51\xfa\x3e\x4d\x65\x70\x76\x6b\x35\x61\x11\xd7\x21\xa4\x53\xa2\x7b\x05\xab\xad\x8b\xdd\xf7\x1c\x94\x41\xf4\x1a\x66\x2c\xfb\x5b\xa8\x04\x2a\xe3\x5e\x6d\x0d\x01\xf1\xd0\x4d\x2a\xf0\xd7\xd1\x0c\xd1\x7b\x2c\x93\xc6\x29\x01\xec\xf3\x05\x98\xfd\xae\x18\x33\x31\x9b\xc2\x22\x4b\xeb\xc4\x66\xbb\x2f\xf7\x49\xee\x8f\x57\x76\x9d\x79\xa2\x82\x3e\x03\x42\xe5\x56\x40\xd2\x33\xb7\x50\x95\xd0\x98\x93\x34\x36\xc3\x7c\xc6\x35\xfb\xff\xde\x67\x6d\xc9\x15\x83\xe4\x19\x9b\x8f\x62\x9c\x9d\x72\x9e\x61\x56\xa3\x0f\x66\x68\xdb\xb8\xaa\x28\xf2\x9f\x78\x39\x37\x71\x51\xae\x23\xef\xc8\xd2\xa2\xc1\x25\xf6\xf2\x04\x82\xcd\x4d\x62\xd9\xe3\xb3\x9e\xb4\xb7\x16\x78\x87\xbf\x35\x16\x1b\x0b\xbc\xbe\xe5\x0c\xb1\x88\xa2\x2c\x5d\xcc\x33\xb5\xd0\x72\xe8\x74\x57\xd8\x5f\x9f\x32\x01\xab\xc3\xca\x6c\xc6\x67\xed\x3b\x3b\x1e\xaa\x04\x55\x00\xb5\x90\x6e\x68\x6a\x16\x06\x95\x2e\x54\xc0\xa4\x64\x28\x27\x9f\x28\x3e\xeb\x9d\x58\x3d\x46\xe8\x36\x3e\x2a\x27\x13\xa5\xa9\x85\xb8\xf7\x08\x1e\x32\x31\x51\x9e\xf5\x6c\xe1\xfd\xbb\x64\xc0\x9d\x64\x89\xa0\x16\xc8\xa5\x58\x7d\xb6\x77\x3c\x30\x1a\x85\x15\x80\x1c\x66\x3a\xf5\x62\x86\x84\x40\xb2\x22\xd7\x18\x7c\x9e\x2c\x00\x7d\xea\x7e\xbe\x49\xe2\x7a\x25\x4e\xbb\x8b\xa1\x23\x92\x09\x10\x8f\x34\xe4\x2f\x92\x83\x4a\x2f\x4b\x16\xe1\x27\x83\xf0\xeb\x26\x86\x2b\xd2\x15\x78\x35\xc9\x7f\x04\x13\x6e\x54\x2d\x27\x85\xf4\x23\x4e\x2e\x6e\x53\xe3\xde\xbc\x1c\x17\xe5\x0e\xbf\x7a\xfd\x0e\xe9\x8d\x8a\x88\x8f\x2e\x01\xf6\x02\xc4\x1f\x9f\xdd\x87\xdf\x25\x71\x2f\x94\x2c\xb0\xbb\x1d\x26\xc9\xc1\xdc\xa4\x62\xee\x82\xa7\xb8\x65\xec\x4b\x8c\x37\x58\x7c\xf1\x4c\x60\xb9\xca\xea\x79\xef\x95\x7a\xd1\x95\x53\xcf\x39\x7b\x61\xf2\x55\x53\x82\x42\xf5\xb6\xbb\x1c\x26\x23\x5d\x04\x01\x76\x11\x68\x8f\x9c\xb0\xce\xe6\xd0\x44\xf1\xe2\x2a\xa1\x38\xb6\xd8\x77\x2c\xc7\x63\xd2\xbd\x09\xd3\x18\x3a\x98\x02\x44\x0a\x7c\x33\xfb\x2d\xc2\x56\x8d\x8a\x38\xed\x3d\x6a\xb7\x35\xe5\x9e\xd7\x8b\x9f\x1a\x6e\x4c\x08\x01\xd4\xdf\x20\x8b\x1f\xee\x0a\x95\x26\xe4\x41\x28\x73\xbe\x41\x15\x63\x29\x45\xab\xf0\x85\x7d\xdd\x6a\x97\xe4\xa7\xf7\xfd\x8a\x08\xb8\xaf\x23\x71\x90\x2b\x21\xaf\x13\x95\xe4\x88\x66\xfc\x5e\x0d\x5a\x15\x82\xac\x8f\x58\x0e\x6d\xcd\xb5\x47\x16\xb3\x7c\xd1\xc4\xe5\x28\x37\x08\x2b\x14\x2c\xd5\x52\x36\xfb\xec\xd6\x0e\xa1\x73\xed\x17\x62\x31\x3d\x32\xd5\x06\xa8\x13\x7d\x93\x17\x26\xf2\xa9\x3e\x02\x39\x48\x02\xc9\x31\x75\x16\xcb\x41\x28\xf1\x33\xf6\xf1\xd3\x98\xc0\x72\xe2\x76\xdb\x2f\x94\x71\x82\x02\x26\xde\x0e\x80\x52\x72\x4c\x7a\x68\xf5\x9b\x32\x36\xb9\x56\xda\xe8\x2d\x0b\x15\x57\x6b\x1b\xfb\x15\x5a\x9a\xd4\x5a\xfd\x30\xeb\x32\x49\x1b\x85\x4e\x39\x26\x79\xbc\x28\xc9\x52\x29\x7a\x20\xc5\x46\xea\x2d\xc7\xee\x52\xbb\x59\xb4\x44\x95\x91\x2d\x96\xd9\x2b\xc7\xae\x0a\xb0\x38\x4a\xbb\x22\xd8\xb5\x8f\xe5\x15\x9e\x95\x21\xb2\x63\xec\xaa\xba\xdf\x7c\xda\xae\x5c\xa8\x6a\x8b\xfb\x28\xa6\xcd\xd1\xa6\x30\x23\x37\xc3\x2c\x57\x8b\x09\x24\x97\x77\x2a\x92\x38\xbd\x43\xdc\xa4\x97\xc2\x38\x31\x72\xef\x4e\x60\xc1\x67\x1a\x53\xeb\x9c\xed\xf3\x85\x79\x52\x66\xa9\x60\x12\x11\x18\xdc\xab\x18\x70\x7a\x8f\x76\xd5\xf4\x4b\xbf\xdc\xf2\xe8\x99\x8d\xc0\xe3\xfd\x37\xbc\x34\x44\x38\x18\x86\x5e\x74\x1e\xb5\x48\x80\x6e\xe4\x78\xac\x65\xd0\xb0\x97\x1b\xd3\x7d\x88\x2e\xf8\x53\x63\x27\xb3\xf8\x03\x70\x8d\x50\x77\xd8\xa8\xa8\xdc\xbd\x7d\xec\x2d\x19\x6f\x11\x96\xf4\xb3\xc0\x31\x63\x1e\x7f\x01\xbc\x41\xc4\x1e\x9f\xa9\x13\x1d\x27\xf8\xd3\x4b\xe3\xc5\x38\xb2\xba\xaf\xf6\x1d\x49\x7e\x3f\x61\x43\xd3\x24\x00\x92\x84\x45\x5f\xa7\x81\xd3\xdd\xae\x7f\xd1\xd3\xc4\x64\xd5\x2e\xd0\x3a\xdb\x5e\x5f\x27\x2a\x32\xf0\x54\xb2\x31\xf1\xb7\x9f\xec\x10\xea\xe2\x24\x2d\xcf\xd2\x0b\x07\xf1\x5c\x40\x17\x98\xa6\xef\x05\x6c\x4b\x99\x17\xe1\xca\xac\x7f\xa0\xa7\x28\xec\xfd\x6e\x45\x95\x40\x81\xcf\x60\x8f\xf9\xbf\x5c\xf5\xb9\xac\xb3\x13\x61\x40\x28\xbe\x0c\xf1\xb5\xc6\xb1\xac\xa7\xf2\x66\x45\xc2\x1c\x5b\x9c\x3f\xf9\x42\x66\x85\x48\x89\xfb\x43\xfe\x4a\xb7\x69\xb5\x8d\xb2\x3c\x5f\xdd\xe6\xc5\x8f\x44\xad\x02\x27\xd7\xb0\x23\xb2\xec\xbf\xfb\x2b\xaf\xfc\xfe\x41\x83\x0b\x84\x35\xc9\x2f\x43\x94\xc6\xc5\x88\x76\xe3\x92\xeb\x2f\xe4\x26\xca\xf2\xae\x48\x2a\x60\x0c\x7d\x87\x6d\xc7\x05\x9c\x80\x1f\x7b\xa8\xd3\x22\x86\x38\xa9\x2f\x5e\xa5\x2a\x75\x69\x12\x33\xec\x67\xa9\xd9\x4e\x64\xcf\xd3\x93\x4c\xfb\x96\x53\xce\x6f\x75\xa8\x01\xbd\x16\xf8\x01\xdb\x12\x88\x83\xfc\x4f\xa3\x79\x75\x14\xbb\xe5\x16\xcd\x1a\x3c\x5b\x39\xae\xfc\x58\x0e\x97\xc3\x38\x09\x17\xe2\x24\x16\x43\x13\x91\x00\xb7\x0f\x52\xe5\xc0\xc9\x63\xdc\x2c\x00\xf6\xab\xd2\x68\xd7\xa9\x98\x83\xc4\x13\x8d\xb4\x37\xa7\xc6\x3f\x34\xa2\xc2\xa1\xb4\x22\x18\x71\xa4\x92\x65\x9f\xa6\x70\xa2\x28\xf3\xd8\x6a\xde\x15\xd6\x24\x80\x91\xf9\x5a\xe7\x64\xdc\x5f\xe0\x4d\x16\xc5\x13\x12\x51\xc5\x25\xbc\x32\x04\xc8\xa7\x30\x10\x1d\x54\xd0\x63\x20\xce\x51\x57\xfa\xee\x44\x47\x64\x30\x34\xb2\x1f\x29\x2f\x9d\xca\x68\x6b\xc1\xdf\x6c\x58\x11\xeb\x91\x33\x18\x98\xb4\x1b\x8a\xcf\x8c\x17\x84\x43\x1d\x5f\x8e\x3f\x51\x6e\xa3\x37\x08\x23\x3b\x3b\x55\xa0\xa6\xe5\xfc\xa9\xff\xb1\x5d\xd2\x44\x5e\x0c\x97\x22\x2e\x9e\x4d\xa8\xd7\xd4\xac\x48\xf3\x5d\x60\xa5\x01\x43\x4c\x7d\x90\x58\x18\xd3\x2d\x66\x3d\xfa\xe0\x2a\xd5\xa2\x8e\xd9\x84\x4f\xab\xfa\xf5\x77\x69\x5e\x43\xd2\xd6\x51\x3f\x5c\x74\x40\x37\x3c\xec\x89\x27\x7f\x69\x6a\x94\xee\xdb\xbf\xaf\x5d\x98\xb4\x2b\x1b\x93\x22\x68\xec\xcc\xf0\x54\x3c\x5d\x00\x44\xe9\xd1\x96\x08\xf0\xc6\x9e\x1a\x53\x30\x75\x8a\x33\x85\x27\x3a\xd3\x73\xfd\xd9\x76\x5c\x14\xa3\x38\xed\xd9\x48\x48\xac\x40\xb0\xb6\x61\xec\x22\xc8\x56\xfe\xde\xa4\xc3\x78\x14\x87\x89\x60\xdd\x91\x3a\x48\xa5\x4a\x10\xa0\x44\xf7\x9a\xa6\x09\x1c\xda\x35\x5f\x2f\x74\xfd\x56\x6b\xf7\x6e\xdf\x31\xde\x73\xd0\xb5\x95\xb9\x0c\x33\x4c\xe2\xc8\x99\x2e\xa2\xe5\x72\x8d\xa8\x9c\xd7\x28\xff\xb5\x36\x76\x5d\xe3\x7c\x66\xb4\xcc\x47\xec\x28\xe1\x5e\x38\xed\xd5\x3a\x46\x54\x89\x9e\x96\x33\xd0\xbd\xc1\x1a\x3b\xe7\x39\x74\xfd\x61\xe3\x76\xdf\x0b\x07\x0b\x1e\xd3\xc3\x22\x68\x72\xcc\xa0\x61\xd3\x8d\xc3\x19\xdf\x25\x86\xbb\xb2\x72\x7b\x48\xea\xe0\x5a\xf5\x18\xbb\xb2\x60\x85\x70\xc4\x4a\x87\x9d\x3e\xd5\x54\xab\x4d\xc2\xb4\x37\x8a\x8b\xfe\x2c\x41\x74\x4e\x12\x84\x03\x31\x86\x6a\x2d\x7b\x40\xee\xfb\xe4\xac\x18\x97\x66\x50\x3c\x6c\x9f\x9d\x96\x1f\xed\xb3\x43\x20\x70\x99\x5a\x30\xc7\xc8\x16\xe0\xf5\xc0\xe3\xa1\xe1\xca\x84\x4d\xf8\x03\x06\x21\x43\x24\xd4\x39\x67\x90\xb1\x2c\x5d\xef\xfa\x14\x82\xea\xd0\xae\x76\x12\x16\x51\xbc\x1c\x67\xa3\x62\x62\x0e\x9f\x63\x89\xb5\x26\x1e\xf8\x20\x4e\x4b\x92\xbf\x3d\x11\x78\xb0\xd0\x89\xa9\x25\x07\xbe\xaa\x82\x03\xf7\x81\xd9\x0d\xec\xaa\x72\x42\x8a\x9d\xc3\x3c\x5b\x70\x6f\x1f\x53\x07\xc2\x4a\x72\x1c\x68\x0c\x3d\x2a\xe2\x59\x92\x00\x17\xce\x21\x20\x17\xeb\xe4\x54\x7c\xba\x62\x9e\x9d\x6e\xbe\x75\xec\x93\xc7\x61\xb2\x6d\xc2\x3a\xa5\xa5\x4e\x83\x37\x7e\xbe\xe3\x03\xc7\xc7\xc7\xa4\x44\x35\x81\xcb\xbd\x48\x49\x60\x94\x84\x45\x61\x8a\x6d\x24\xd5\x7d\x92\xea\x85\xa2\xa5\x0f\x36\xc7\x4d\xbc\x1b\xac\x06\x77\x44\x07\x44\xfe\xab\xc9\x1e\x30\x4a\xe2\xe1\x42\x16\xe6\x20\x0a\xa8\x9c\x8e\x97\xea\x3c\xd6\x84\x73\x8a\xc2\x38\xcf\x5a\x1e\xed\x7e\x8e\x6b\x7f\xe7\x5c\xbf\xab\x18\x86\xbd\xbe\x29\xcb\x98\xa5\x41\x1e\xeb\x78\xde\xd0\x8e\xb1\xef\x79\x4e\x77\xb2\xf6\x1c\x6c\x87\x49\xb2\x3a\xa9\xc4\x49\x01\x72\x83\xb7\x83\x35\x12\x91\x8a\x38\x56\xa9\x2b\x34\xb8\xa5\xc7\x0d\x48\xd4\xeb\x53\x46\x59\xf3\xf3\xed\x34\x6b\xf9\xea\xdf\xd6\x4e\xbd\xd8\xc9\xf1\x78\x33\x70\x6e\x6e\xae\x6d\x5e\x8e\x92\x51\x11\x2f\xdb\xf8\xc3\x79\x7d\xbc\x45\x19\xf1\x5b\x04\x0a\x58\xc9\xf2\xa5\x15\x63\x96\x66\xbd\x0a\x1d\xba\x03\x6a\x07\x5d\xcf\x48\xad\xd6\x7b\x20\xfe\xa9\x60\xc2\x6e\x66\xb0\x40\x82\xda\x70\x9b\xd2\x7a\xbd\xb7\xc2\xbe\x4d\xad\x29\xc4\x82\x3b\x3d\xfc\xfd\x21\x34\x13\xd1\x06\xbb\x44\x7e\xd1\x47\xc9\x63\x46\x5a\x3f\x18\xe7\x10\x39\xc2\x96\x7a\x8b\xca\xdb\x8f\xd9\x52\x84\x96\x87\x6c\x60\x8b\x35\xe1\x7e\xd3\xa0\x59\x8c\x13\x33\xa1\xe9\xf9\x3e\x69\x7a\xbe\xcf\x56\x5c\xcb\x26\x2d\x47\xf5\xab\x7f\x88\x90\x2e\xa8\x60\x39\xc8\xcf\xfe\x5d\x12\xa1\xdf\x0a\x3c\x36\xf9\x48\x40\x04\xc0\xf7\x02\x0a\x31\x4e\xc9\x4c\x70\x1c\xbc\xfd\x0a\x00\xbb\xe5\x26\xee\x8a\x49\x92\x28\x1b\x20\xac\xc7\x00\x15\xe9\x4a\x39\x21\x07\x52\x55\xc6\xdc\xc9\x8f\xcc\xb3\x34\xfe\xfb\xc0\xe3\xe5\xae\x55\x64\x03\x84\x15\x0d\x6f\xf9\x32\x9e\xb1\xd3\xe5\x71\x25\x8a\x2d\xc8\xde\x54\x49\xd8\x4e\x68\x0c\xc3\x37\x08\x46\x1f\x2e\x96\x26\x4f\x33\x71\x03\x7c\x56\x13\x27\xfb\x3d\x9a\x44\x7d\x9a\x99\x5d\xe5\x30\x4b\xad\xcb\x0e\xfe\x1e\xe9\xd3\xcf\x02\x9f\x4a\xfd\xac\x11\x37\x32\x30\x61\x37\x5b\x91\x58\xc7\xb9\xda\x7a\x61\x99\xf3\x6e\xdd\x4c\xba\xc3\x16\xe9\x26\x4d\xbe\xdf\xcd\x31\xf5\xf3\x56\xf6\x23\x4e\x34\x8a\xc2\x83\x43\xf5\x5d\x8e\xab\xcd\x8a\xd6\xf5\x8a\x30\x1c\xe6\xd9\xcb\x8c\xcd\x14\xc5\xa6\xc0\x4f\x8b\x37\xa8\x41\xc4\x7c\x57\x57\x43\x13\xc9\x2d\x45\x40\x3c\xe9\xb0\x91\x71\xaf\xbf\x90\x8d\x14\x38\x8a\xc2\x10\x2c\xc1\x5c\xf7\xd5\xe1\x46\x3f\x60\x65\x89\x78\x60\xd4\x55\x0d\x09\xe7\x3a\xa3\x89\x3c\x81\x64\x61\xd4\x9d\x60\xa6\x7f\x10\x78\x88\xe4\x07\x4d\x6c\xb3\x76\xd1\xcf\x56\x50\xd5\x50\xf1\x71\xfb\xc5\xaa\x3e\xde\x80\xbf\x1c\xe6\x71\x1a\xc5\x43\x37\xdb\x90\x95\x5e\x26\xa5\x8a\xcb\x4d\x76\x1e\x51\x56\x94\x2d\x0f\xea\xbb\x3c\x21\x4e\xec\xe3\xe5\xc5\x2c\x1f\x8c\x92\xb0\x45\x14\x94\x6b\x01\x29\xfa\x5e\xa3\x82\x58\x2f\x2b\xa5\xd4\xed\x6c\x90\xf6\x6f\xca\x41\xc5\x14\x15\xec\x07\x0c\x5b\x64\x4a\xe2\xfb\x53\x51\x07\x02\xfc\x2c\x84\x8b\x0f\xec\x12\x89\x3f\x82\xe0\x1c\xb6\xbc\x47\xc7\xfe\xd5\xfe\xf3\xcf\x75\x48\xf3\xe8\x02\xbd\xaf\x28\x2e\x2d\x53\x72\xde\xb1\x37\xec\xd7\xa1\x66\x3c\xc6\x84\x75\xf1\xb2\x77\x56\xb8\xd6\x60\xe0\xdc\x2e\xcc\x30\xcc\xb5\x01\xa9\xf8\x1d\xfb\xbb\x9a\x78\xf8\x60\x6d\x31\xcb\x7b\x80\x0a\x8a\xf5\x5b\x40\x9e\xc1\x48\x28\x01\x2f\xb9\x47\x35\x04\x8b\x83\xdd\xe1\xb3\xeb\xf3\x0c\xd9\x91\xaa\x09\xd2\xdd\xab\xdc\xf8\xbe\x32\x61\x78\x70\x84\xec\x3c\x3e\xc0\xe5\xa1\xe2\x78\x33\xf0\xcc\xf8\xee\x08\x1c\x57\x3c\x30\x90\xb8\x3c\xf4\x73\x97\x2c\x55\xa8\xab\xa9\x20\x8f\x7d\xdc\xaa\x18\x31\x21\x6f\x6a\x7f\x04\xc5\xe0\x9b\x53\xaa\xbf\x75\x3c\x5e\x2c\xad\x0a\xfa\x04\x85\x6f\x68\x18\x38\x7d\x77\x22\x2b\x92\x58\x5c\x62\x7a\x61\x82\xc4\x81\x62\x2b\xab\xd5\xe9\xdc\xc4\x9d\x27\x8a\xf0\x0f\x11\xa2\xdd\x08\x48\x00\xff\x9c\x3c\x1d\x75\x2d\xf6\x4b\x7b\x9a\x95\x71\x14\x87\x60\x8f\x89\x6a\xa3\x45\x03\xaa\x82\xa3\xd7\x07\x44\x75\x3e\x46\xc4\xf1\x82\x07\x82\x1d\xda\xe5\x9c\x85\xbc\x27\xce\xaf\x53\x2d\xe2\xa5\x51\xb7\x67\x76\xe0\x0a\xdc\x1e\xbb\x7f\x97\xe7\x10\x3b\x9d\xcc\xdf\x25\x58\x68\x55\x79\x07\xc1\xdf\xb1\x98\x4b\xa4\x09\xa2\x1e\x05\x1c\xe2\x1f\x04\xbe\xdf\xbd\xb7\xd8\x36\xa1\xcd\x35\x43\xb6\xff\xf6\xf7\x10\x04\x9c\xe0\x62\xdb\x23\x50\x10\xb3\xff\x33\xfa\x1b\x0e\xb2\x50\xf6\x4d\x1e\x0e\xcd\xa8\x94\x26\x83\x84\x9e\xe4\x25\x7a\xa1\xfa\xfc\x34\xec\x5f\xb4\xec\x73\xb3\x9c\x25\xa3\x32\xce\xd2\x30\x47\xad\x46\x09\xe2\x1e\xd9\x7d\xce\x6d\xc4\xa9\x59\xa9\xf7\x61\x40\x13\xd4\xcb\xde\x5e\xa2\xba\xdc\x37\x94\xea\x17\xc2\x74\x29\x1f\x0d\xcb\x68\x55\x52\xf9\x46\x2d\xc1\xcf\xb8\xd7\xfc\xd2\x28\x8f\x8b\x61\x3e\xb2\x89\x68\xab\xf5\x85\x2f\x38\x79\x10\xcb\xf5\x54\x74\xf8\x67\x7c\xfd\x28\x2e\xc2\xa1\xf5\x5a\x13\x6c\xc3\x86\xd5\x38\xda\x98\xa1\x26\xcc\xa8\x30\xb9\xe8\x82\xbb\xce\xf2\x9e\x83\xae\xfd\x4c\xfb\xf4\x6d\xf2\x1c\x1b\xdb\x77\xac\x06\x90\xd3\x58\x8f\xf9\x76\x99\xf5\x8c\x35\x7d\xb5\x99\x30\x66\x08\x1c\x65\xe4\xd8\xf3\xdb\xf3\xd8\xa6\x1f\xb3\x84\x32\x12\x82\x3a\xc2\x91\x67\x10\x5c\x28\x16\xc3\x03\xae\x77\x8e\xfd\xc2\x1d\x0f\x42\xcb\xd1\x76\x72\x48\xf5\x54\x56\x2b\xf8\x99\xe7\xf7\xef\xda\x38\x43\x7c\x76\x29\xd6\x22\x28\x7c\xa8\x43\xcb\x6c\x98\x97\x06\xb2\xec\xda\x8e\xb0\x37\x80\x5d\xf1\xdf\x55\x5e\x2e\xe1\xd2\x94\x2f\xa0\x38\x59\xab\xd3\x80\x7d\x74\x32\x8f\xed\x4f\xeb\x9c\xe6\xe8\x38\x2c\xe0\x9b\xa4\x5d\x4a\x92\xb0\xbf\xe8\x70\x6f\x20\x1f\x4a\xd4\x81\x96\xa1\x50\x75\xe4\xa4\x41\x99\x25\x4e\xa3\x64\xd4\x15\x20\x35\xf2\xf1\x53\x94\x9b\x9f\xa2\xd5\xba\x88\xbb\xa6\xb0\x15\x5f\x9d\xd8\xf6\x43\x48\xc7\x21\x96\xe9\x6c\x3f\xf7\xea\xfe\xf7\x66\xc0\xcb\x68\x9d\x99\x38\x9f\xbd\xa1\xc9\x17\xeb\xf5\x28\x69\x51\x66\x7e\x91\xa2\x9d\x8b\x0e\x38\x57\xe6\x71\xaa\xb9\x08\xaa\xbe\xff\x94\xe9\xfa\xff\xb4\x21\x53\x7f\xb6\x7e\xc8\xbd\xdc\x14\x85\x23\x84\x39\xdd\x59\xff\xc9\x23\x4d\x9e\xf7\x51\x96\x88\x3a\xa2\xb2\x84\x99\x3d\xec\xd0\xf1\x61\xde\x8b\xd3\x6d\xf5\xbe\xaf\xe8\x1d\xfb\x2b\xce\x15\xc9\x39\x3d\xbd\x4f\xdb\xdf\xa7\x3a\xa4\x00\xb4\x7d\xcc\x85\xa6\xd2\xa1\x8b\xf6\x3a\xe5\xb6\x80\xb0\x13\x17\x27\x0c\xa3\xea\x58\x48\x8d\x77\x14\xa0\xc0\x68\x85\x26\x3d\xbc\x24\x5c\xcd\x46\x08\x17\x15\x32\xc7\xf8\x39\xae\x8a\xf7\x73\x13\x96\x46\x98\xc6\x1a\x5b\x7a\x2c\xd0\x05\xea\x93\x97\xa1\x90\x04\xd0\x14\xbb\x6a\xef\xd6\x95\x73\x3d\xc9\x6c\x18\x7c\x7a\xe2\xfa\x4d\x61\xec\x8a\xb3\xc3\xd6\xba\x50\xa8\xfa\x88\x09\xc0\xd0\x85\x71\xba\x1f\x7b\xb5\x9a\xf5\x91\x5d\x7a\x04\x89\x6b\xf7\x21\x87\xca\x75\x92\x42\x1f\x53\x4c\xf4\x92\x59\x59\xc8\x56\x67\x26\xd6\x0d\xac\xa4\x58\x63\xee\x20\x56\xd1\x6c\x9d\xb4\xc6\xb2\x24\x8e\x0c\x9e\x01\xb7\xfd\xe5\xb8\x91\x8c\xda\x8f\xf3\x25\x37\xad\x91\x1a\x1d\x21\x06\xef\x11\x57\x3f\xad\xc7\x4f\x98\xc7\x29\xb2\x32\x71\x30\x0d\x7c\x2d\xf5\x38\x85\x9b\xbf\x12\xa2\x46\x2a\x5a\xe0\x1d\x9f\x68\x9f\x67\x2f\xe0\xeb\x94\x94\xf7\x4d\xfd\xe5\x3d\x49\xa1\x9c\x09\x9e\xb7\x08\x71\x80\xc3\xc5\xdc\x98\xdc\x42\xfe\x30\x74\xb7\x42\x2b\x06\x60\x12\x14\x35\xf0\x91\x53\x54\x9a\x59\xa3\xab\x8b\x8b\x2f\xdb\xc5\x49\x93\x1b\x7b\x45\x9a\xf5\x90\x79\xca\x00\x46\xd4\xcb\x66\x9b\x5d\x2b\x9d\x73\x92\x23\xb2\xfc\x3f\x28\x7b\xaa\xd7\x12\x19\xe1\x82\x42\xad\xe6\x22\x7e\xec\xf5\xc3\xa4\x9c\xa1\x31\x86\x3e\x2e\x3b\x24\x2a\xc4\x89\x81\x2a\x69\xfc\xb2\xa0\x81\x50\x55\x10\xf2\xb4\xeb\xe8\x3b\xbf\xa7\x75\xaa\xc9\x4a\xc6\xac\x82\xdf\x0d\xd3\xab\x6f\x92\xa1\xd6\x68\x64\x2e\x54\x1e\xb6\x20\xa8\x45\x7c\xf1\x03\xea\xef\x16\xc3\x6c\xc9\xa4\x24\x3c\xfc\x87\xa4\x31\xfb\x87\x04\xe8\xcf\x33\x5b\x11\x9c\x61\x1f\xe6\xca\xbb\x87\x42\x06\x0f\xdb\xfb\x0d\x12\x5c\x32\xc3\xa1\x23\x2e\x08\x5e\x84\x2e\xeb\x3e\x99\x72\x5f\x69\x20\x51\xee\x53\x14\x90\x1b\xd4\x58\x39\xff\x4d\xe0\x17\xe3\x7f\x33\x95\x75\xd5\xeb\x6f\x2f\x1c\x52\xf1\x12\x38\x28\x39\x26\x60\xdb\x68\xb8\x12\xe6\x5d\x6c\xea\xf8\xb6\xf3\x36\x3a\x97\x63\xac\x07\xd8\x8c\x7e\x4c\x1b\xd3\x8f\x27\x30\x87\x51\xdc\x05\xc3\x13\x00\x4b\x30\xcc\xe4\x98\x5a\xac\x2f\x85\xd1\x92\x11\xa2\x3d\x60\x2c\xeb\x24\x9f\x8a\xf6\x9a\xa2\x6b\x1a\x5a\x93\xb9\x29\x46\x89\x6b\xe1\xe1\x43\x27\xb1\x82\xca\x09\x8d\xcc\x24\x5c\xc1\x3b\x55\xef\xfc\x16\x99\xea\xfb\x0a\xe8\x4a\x1e\xa7\x4b\xd6\xf9\x71\xcf\x41\x8f\xec\x7e\xde\x2b\x34\x37\x74\xac\x73\x13\x46\xa5\x0e\x34\x29\xdc\x07\x9e\x44\x79\x93\xe9\xe4\x17\xea\x45\xd7\xb5\x27\xb2\xa1\xf5\xf5\x71\x16\x2f\x13\x44\x4b\x50\xd8\x2e\x10\x90\x18\x0b\x17\x3a\xdd\xaf\x55\x04\x72\x3a\x52\xf9\xa6\x73\x96\x0d\xb1\x42\x2a\x7a\x88\x42\xb2\x13\x54\x58\xea\xae\xa6\xe1\x20\x8e\x44\x38\x72\x42\xab\x58\x4e\xa6\xe6\xd4\xdc\x5c\xbb\xa8\xf7\x39\x19\xbc\x6a\x96\xea\x57\xc2\x6d\x1d\xf2\x10\x5d\x6b\x12\xcd\xeb\x9a\x30\xf1\x96\x3b\xce\xc7\x75\xde\x7b\xb7\x6e\x2e\xc5\xec\xde\xdd\x1e\xc4\x51\xdf\x24\x56\xc3\xd3\x01\xc7\x11\x42\x5d\x47\xf0\x20\x27\x8e\x21\x14\xa7\x42\x10\xca\x52\xa5\x1d\xe0\x02\xdf\x0d\xa8\xda\xf8\x2f\x03\xaa\xbd\x1f\xfe\xc4\x46\x63\x58\x7e\x1e\x24\x47\x95\xea\xa9\x07\xb3\x9a\xbf\xb5\x9c\xba\x8e\xa4\xc4\x68\xd3\xbe\x1b\x3c\xac\xac\x91\xbd\xf3\xbf\xd8\x72\xce\x5d\xc2\x2d\x42\x2e\xb8\x73\xdc\xfa\xea\xaf\x49\x5c\xb6\x4d\xdc\x44\xd4\x61\xae\xe5\xb8\x9e\xaf\x10\x4c\xf4\x76\x45\xa8\xda\x9b\x01\x95\xf4\x3f\xae\xb6\x7e\x4e\x99\x28\x50\xfb\x46\xa2\x5e\x05\x54\xef\xb8\x6f\xb3\x4b\x2d\xa5\x78\xd6\xe3\x85\xaa\xf5\x8d\xaf\xcb\xdf\x5c\xb6\xfe\x42\x68\x12\x9e\x64\x4f\xfc\x07\x80\xb7\xe3\xa2\x0e\x43\xa3\x19\x81\xf8\x05\x50\x53\x91\x80\xff\xb9\x45\x0d\x63\x89\xfe\x80\x1a\xc6\x37\x21\x7b\x81\x67\xf8\xbe\xc5\x42\xe3\x42\xae\x90\x59\xee\xe9\xca\x5b\x9b\x1c\xad\x88\x48\xf4\x53\x24\xfc\xd8\x03\xcf\x54\x75\x12\x25\x2d\x49\x54\x6b\x35\xba\xae\xa3\x3f\xb1\xe1\x86\x7e\x06\xba\x98\xb7\x26\x38\xb6\x6b\x98\x3a\x58\x8f\xae\x36\x88\x51\x1c\x68\x27\xb1\x47\x0f\x23\x56\xbe\xcb\x81\xf3\x64\xf7\x3b\x4b\xbb\x4f\xf9\xad\xed\xaa\x35\x42\xc0\xb6\x72\x16\x4f\x5f\x9a\x38\xf8\x06\x2c\xb9\xef\x43\x85\xdd\x79\x62\x78\x6b\xc0\x5b\xc0\xfe\x29\x42\x8f\x90\x4b\x60\x3c\x3a\x07\x5b\xc7\xd3\x9c\x19\xdb\x47\xab\xac\x43\xd2\x57\x0c\x30\xa8\xe4\x7f\x30\xf6\xf1\x78\xc4\x39\xd1\x01\x27\xf6\x7b\xa8\x48\x3d\xdc\x90\xca\xfc\xd4\x36\x61\x95\xdf\xf4\x49\xea\x4f\x51\x56\x94\xa1\x65\x17\x68\x0d\xd2\x13\x7f\xaf\xb0\xfc\xeb\x96\xce\xd3\x31\xfb\x12\x9a\x32\xb6\x0a\xd2\xf5\x23\x42\xe5\x62\x0d\xc3\x4a\x4e\x82\xa7\xa8\x0a\xde\x45\xd7\xd7\xe2\x6d\x11\x52\xa3\x5c\xea\x8a\x1a\x7b\xe7\x1d\x92\xc6\xa7\xc9\x2b\x59\xbe\x54\x48\xf9\x03\xe3\xf3\x6c\xe5\x3b\xd1\xd0\xa2\xc4\xce\x23\x86\x2e\x72\x42\x46\x9d\xe7\x2a\x32\xdc\x62\xd7\xfd\x7b\x53\x3e\x88\x20\x4b\x44\x59\x3e\xcc\xf2\xd0\x8d\x1f\x91\xe9\xc0\xdb\x57\xcd\x8e\x27\x48\xd3\x61\x35\x4e\x7b\xb3\x78\x53\x88\x94\x6e\x81\x58\x24\x27\xa4\x80\xf8\x1e\xa6\x81\x9c\x4c\x80\x7d\x47\xd1\x12\x7a\xb3\x0a\x39\xb1\x0b\x0d\x0a\xcb\xdf\xab\xfc\x57\x6c\xe9\x78\x04\x3a\xda\xc6\x48\xa4\xc4\xa2\x07\xa9\xf7\xc7\x15\x41\x05\xae\xdb\xa7\xe4\xc0\x21\xf5\xd4\xc1\x6e\x22\xe5\x41\x9d\xeb\x4f\xd1\xc6\x36\x58\x90\xd4\xc9\x71\xc3\x50\x73\xd4\x49\xcb\x2e\xc6\x66\x60\x5e\x96\x45\xbd\xb1\x17\xd2\x90\x11\x16\x2b\xe1\x50\x4a\xe7\x48\x6c\x6e\x92\x22\xd7\x45\x42\x22\x7e\x48\xbf\x94\x84\xc3\x42\x12\x34\xa5\x59\xd8\xdf\x51\x9e\xc5\x53\x93\x6c\xbf\x83\xcf\xb5\xff\xb6\xbd\x7e\xf5\xcc\xac\x7f\x41\x8e\x29\x99\x59\x8e\xc3\x28\x1b\xec\xf0\xc0\x88\x1f\xda\xc7\xa5\xec\x08\x72\x48\x39\x35\xc9\x5b\xc0\x1d\x23\x92\xff\x99\xdd\x53\x1c\xca\xc6\xd5\x98\x7f\x38\x15\x00\x3a\xc9\xb5\x3c\x5b\x8c\xcb\x19\xda\x45\x4f\x93\x7e\xda\x2c\xf6\x61\x3c\x8f\xfb\x14\x1c\x84\xcb\x26\xd9\x5e\x5f\x2b\x56\x8e\x1d\xe3\x69\xa7\x74\xf1\x21\xaa\x7c\xe0\x7e\x87\xab\xee\xff\x9a\x5d\x90\x66\x3b\x3e\xeb\xc8\x8b\xbe\xfd\x66\x34\x93\x20\xe8\x8f\x98\xe7\x6d\x96\xa3\x9d\x40\x84\x89\xf0\x84\x92\x54\xeb\x87\x80\x4c\xfc\x47\x9c\xcf\x8e\x52\x63\x97\x17\xa7\x8d\xee\x19\x27\x81\xdf\x5a\x7f\xa3\xc1\x63\xb1\x1d\x85\x85\x2f\xea\x60\x7d\xbe\x5d\x79\xb0\xf1\x6d\x8a\xe6\x23\x93\xd7\xf1\x50\x8b\xd8\xbb\x52\x51\x51\x58\x90\xb6\x56\x7a\x61\xda\x9b\xf5\xd5\x9f\xe3\xf8\x2b\xcd\x12\xed\x13\x55\x61\x8b\x96\x33\x65\xdd\xd2\x99\xc0\x07\x2c\xc7\xbd\xcc\x16\x16\x30\x36\x44\x42\x56\x4e\xdc\x0b\x0b\x17\xb2\x51\xda\x45\x69\x15\xf0\x96\x13\xf8\x31\x44\x99\x8f\xdb\xc4\x93\x1b\x46\x58\xe3\xee\xda\xd5\x10\xdd\xeb\xe3\x53\x71\x8d\x55\x16\x1c\x26\xe1\xaa\x0b\xe4\x90\x76\xbf\x4b\x92\x8a\xf7\xc9\x40\xe9\x66\xf5\xf4\xb4\x7f\xce\xdf\x99\xa5\xe0\x43\x25\x2c\xb0\xb5\x08\x13\x56\xfe\x0b\x51\x91\xfc\x8f\xc3\x46\x02\x4e\x01\x48\x2a\xf6\xe1\xef\xda\x5f\xb7\x7f\x76\xfd\x0b\x68\xd2\x08\xff\xd5\x56\xb9\x71\x93\x8f\x8e\x1d\x77\xe8\x1f\x7c\x66\x4c\xb1\xea\x29\x16\xc8\x02\xd3\x4a\x1b\xb8\x0d\x45\x81\xb0\xbb\x1c\x17\x99\xd4\x87\x11\x4e\x6f\x50\x68\xbd\xd1\x00\x50\x7a\xa1\x9d\x9a\x97\xcb\xd9\xfa\xb9\xaa\xa2\x95\x4f\xb1\x7f\xa7\x9a\x50\x70\xf2\x54\xbe\xcb\x84\x5c\x8a\xd3\xd2\xe4\xc3\xdc\x94\xc5\x66\x95\x01\xbf\xbb\xf8\x82\x4f\x98\x47\xfd\x3c\x5e\x0e\x93\x16\x03\xf0\x30\x43\x75\x9d\x78\x82\x84\x07\xf3\x3c\x2e\xec\x24\x51\xf1\x12\xfb\xbd\x28\x79\x9e\x21\x02\xc1\xb4\x9a\xe7\x9e\x83\x70\xe3\x6d\x11\x10\x0a\x8d\x17\x39\xf6\xf5\xcc\x3c\x5c\x50\x7d\x1c\x30\xff\x44\x69\x5d\x4e\xdc\x1f\xf6\xc3\xbc\xe8\x9b\xdc\x2a\x5a\x28\x7b\xd8\xde\x86\x9c\x50\x93\xaf\x67\xca\xd2\xd2\x04\xea\x59\xe3\x34\xfa\x0e\xed\x72\x72\x7b\xf5\x6e\x25\xd6\x53\x78\xe1\xce\x64\xdd\x77\x80\x6e\x07\xde\xeb\xfe\x7e\xc0\x46\x59\x04\x9d\x3e\x45\x4d\xe2\x0d\xd0\xd9\x1c\x9e\xcb\xdb\xbf\xc1\x38\x5a\xf3\x5b\x4f\xdd\xe8\x86\xcb\xc2\x43\xc6\xb8\x7a\x93\xb4\x40\xde\x24\x22\xea\x30\xcf\xe0\xe6\xb2\x7d\x22\x38\x71\x76\x0b\xd2\xb9\x92\xff\x98\xf0\xfd\xa4\xb6\xf7\xbb\x4c\x05\x7e\x77\x4a\x81\xec\xd0\xae\x76\x77\x64\x66\xea\x0f\xe3\x7e\xe0\x81\xc0\xaa\x39\xca\x50\xd6\xa2\x52\x36\xea\xf5\xcb\x1d\xde\x45\x68\xeb\xb8\x8e\xb4\x6d\xbc\xf4\x93\x5f\xb4\x9f\x56\xc1\x64\x0f\xbc\xbf\xcf\x0a\xa5\x1b\x15\x79\x46\xaf\x23\x40\x51\x9d\xb1\x4f\x13\x06\xc4\xd7\x11\xd1\x42\xc0\xc4\xbd\x13\x10\xbd\xf1\x0e\x47\x3f\x22\xf1\x5f\x0f\xa3\x26\x21\x72\xd2\xde\xce\x33\xcb\x90\x50\x0c\x16\x96\x14\xb8\x0c\xca\xf1\xb8\x01\xb8\x95\x9a\x15\x9b\xb3\xca\x5e\xe9\xd8\xb9\xae\xa6\x84\xd0\x01\x0b\xe7\xd1\xa6\x2e\x37\x14\xe2\x2c\x9c\xc1\x77\x22\xde\xab\xa8\x6e\xfc\x5e\xe0\x6a\x77\x59\x34\x2a\x1e\xf2\x37\x70\x7b\xd2\xc3\xb4\x5e\x97\xdc\x13\xf4\x86\x09\xd7\x49\x9d\xf8\x7e\xc5\x42\xe6\x76\xed\x43\x10\xb7\x45\x1c\xd2\x34\x4f\x7e\x92\x78\x81\x61\x37\x89\x53\xd3\xb2\x83\xba\x49\xe4\xe5\x61\xbf\x0a\x3d\x53\xa7\x67\xda\xd3\xb7\x39\x88\xeb\x46\xd5\x6f\x08\x21\xfc\xb6\x31\x15\x05\x7e\x86\x97\x8d\xa0\xfc\xb7\x51\x9a\xc3\x04\xd9\xb0\x69\x2a\x32\x95\x7b\x36\x87\x40\x32\x2b\x12\x18\x08\x3f\xee\x92\xbc\x10\x88\x51\x28\x25\xfd\xc3\x80\xcc\xc3\x7e\x9b\x03\xeb\x2b\x18\x77\x13\xd9\xac\xd3\x50\x72\x5d\xbc\xe3\x84\x96\x78\x9b\x3d\x59\xdf\x0c\x48\x4f\xec\x16\xb5\x96\x2f\x4c\x41\x43\xbe\x58\x8f\xaa\xee\x28\x52\x5b\x17\xf4\x4e\xce\x32\xae\xf1\xec\x54\x2f\xc3\x6a\x0c\xd4\xc3\x3c\xca\xe3\x05\x0d\xf2\xb1\xf3\x48\x8a\x27\x27\x6e\x1b\x5f\x09\x93\x44\xf8\x7e\xaa\x12\xd8\x72\xb6\x37\x67\xa7\x88\x85\x5f\x7b\xbe\x9d\x84\x98\x12\x2a\x01\x51\xe7\xed\xba\x1d\x36\xe8\xbb\x0d\xb3\x52\x65\xf3\x31\x5b\x01\xb6\x91\x63\x12\x24\x36\x49\x8c\x72\x9b\xd3\xfa\xdc\xef\x79\x39\xd4\xbf\x7c\x30\x95\xdb\xcc\xcd\xb5\x47\x69\x64\xf2\x32\x8c\xd3\xd2\xf9\x17\x8b\xf1\x7f\xe0\x6f\xe7\xe8\x44\x6a\x9c\x77\x8b\x27\x3c\xdf\xa3\xd5\x21\x23\xc5\x0f\xb0\xec\x8a\xa2\xa3\x7d\x4d\x68\x1b\x7c\x34\x01\xfc\xb2\x63\x5a\xb3\x26\x24\x49\xb8\xf6\xbf\x0c\x08\x8c\x68\xdd\xa8\x9e\x95\x50\x4b\x74\xea\x51\x7d\x7b\x6f\x42\xc4\x02\x45\x08\xf9\x02\x12\x19\xda\xb0\xfb\x8c\xba\x08\xd7\xa3\x1a\xf3\xf7\x5c\xf0\x8c\x8b\x58\xba\xb1\xc0\xed\x35\x6c\x52\x7a\x94\xbf\x79\xac\x25\x4a\x05\x9b\x32\x3a\xb6\x81\x57\x5e\xaf\x8e\x91\xe2\xe5\x89\xd5\xef\x74\xca\x48\xb0\x58\x1b\x93\x4f\xb4\x9c\x76\xd7\xf5\x80\xf4\x73\xfe\xa7\x80\xc4\x1f\xde\xb1\x0f\x51\xa0\x2d\x98\xa7\xd8\xd4\xde\xb3\x97\x85\xe5\x6e\xeb\x98\xfc\x26\x8e\x57\x8c\x4d\xf8\xe7\x18\xf7\xa8\xde\x5d\xc0\x02\x85\x7a\xd4\x77\x02\x2f\x3e\x7c\x8a\x90\xd9\xe7\x03\x96\x1c\x3d\x57\x91\xb2\xe9\x84\xad\xf7\xc7\x14\xab\xd4\xa9\x7c\x98\xda\x48\x0a\xb5\xdd\x23\x64\x32\x78\xc4\xfe\x90\x02\x9b\x5a\x4e\x74\x72\x9d\x8c\xee\x92\xac\x28\x76\x7a\xa1\xd2\x35\x84\x16\x62\x15\x8c\x5b\x70\xaa\x8f\xf5\xad\x22\xbe\x44\x85\xc0\x61\x5a\x1d\x71\xe3\x6e\x45\xd1\xf5\x07\x76\xa2\x21\xa8\x43\xc2\x87\x57\x72\x2f\x78\x8c\x71\x5e\x5f\xb6\x22\x20\x2a\xd9\xeb\x6b\x5c\x47\x49\x48\xe0\x34\xee\x5f\x75\xc8\x7c\x9e\xf4\x8d\x5d\x07\xc0\xb4\xd3\xda\xbf\x7d\x83\x4e\xa6\x7e\x7e\x5e\x35\xad\xa6\x60\xa3\x87\x76\xb5\xd3\xb0\xd5\x3a\xf8\x9c\x82\x9c\x08\xff\xb9\x4e\xb8\x12\xeb\x82\xa6\xb2\x08\x12\x0f\xda\xf1\xad\xb1\xe1\xd3\xbc\xa9\x76\x47\x96\x41\xb2\x9d\x2e\xe3\x24\x06\x0f\x6e\x04\xb6\xc2\x98\x1a\x78\x3d\xb8\x71\x94\x05\xf0\x7c\xde\xae\xa8\x86\x7f\xb2\x49\x5f\x33\x5b\x5c\x24\xbb\x2a\x7c\x33\x92\x0c\x39\xa6\xfe\xd5\xd2\x08\x86\xb1\xda\x5d\x23\x31\x95\xad\x63\xea\xa8\x85\x83\x38\x29\x45\x29\x42\xe4\xa4\xf0\xd0\x55\x5b\xca\xa5\x51\xc5\x6a\x32\x1a\xd8\x9e\xa8\x76\x26\xc9\xbc\x1a\x80\x25\x4c\x9b\x9b\x93\xc8\xcb\x64\xd4\x35\xc5\xa3\x2d\xa7\xc5\x39\x26\x87\xee\x33\x44\x5a\xbd\x6b\x8b\x9e\x58\x32\x1e\x60\x5d\x73\xf6\x25\x5e\xf3\xf0\x3c\x56\x1f\xd5\xb0\xad\x1f\x25\xbe\xf6\x0e\xca\x5e\xda\x36\xf6\xcb\xcf\x83\x09\xd5\x5b\xdc\x1c\xca\x2d\x25\xd1\x37\x07\xa3\x72\x14\x26\xdb\x36\xa3\xd9\x85\xa9\x16\x78\xe3\xf1\x4b\x95\x97\xd8\xfb\x19\xb7\xdd\xff\x21\x75\x6f\xe2\xb4\xde\x10\x5b\x3e\xe1\xfe\x6e\xe5\xbd\x0e\xbe\x4b\x03\xf9\xc0\xee\xe7\x66\x29\x93\xb1\xb5\x65\xf6\x2a\xd5\x1e\x16\x21\x38\x77\x52\xbd\x20\x5c\x2c\x1f\xa2\xb2\x27\x4a\x20\x0e\xbc\x51\x0f\x27\x27\x8a\xe6\xf5\x13\x84\x2f\xa3\x86\xeb\x2d\xe7\x2d\x30\x6b\x33\x43\x84\x25\x4f\x63\x9b\xc1\x88\x39\xe3\x42\xe0\xa8\x3f\x4a\xa1\xfb\x87\x2b\x43\xff\x5c\x8e\x9b\x94\x68\xdb\x69\x56\x1a\x21\xf0\x49\x91\x4b\xd6\x4b\xc4\xd0\x67\x70\x65\x18\x52\xd2\xfa\xd0\x7a\xf3\xa3\xbe\xe4\x92\xaa\x80\x2a\xfe\x4f\x0a\x6d\x08\x38\x6f\x23\x6f\xa5\x3b\xd5\xa8\xfa\x51\x7a\x54\x4b\x66\x60\x39\x8e\x08\x1d\xef\x92\xc0\x37\x7c\x0c\xdc\x0a\xe7\x1e\xc1\xfb\x95\xaf\x0c\xbc\xcd\xb2\xd2\xc7\x08\xe0\x56\x98\xf8\x5b\x70\x9d\x43\x7c\x7a\xd7\x0e\x15\x39\x9e\x28\x2e\x96\x11\xb0\x1e\x9f\x8c\x74\x9a\x08\xaa\x46\xc3\xc2\x94\x33\x9e\x8c\xf7\x66\x35\xb3\xd9\xaf\x0d\x31\xed\xd6\xb1\xb3\xea\xde\xfb\xb4\x6f\x9c\x7f\xf9\x4b\x1d\x3f\x18\xb6\x8d\x5b\xbf\x72\xc0\x29\x7d\xd7\x9f\x45\x9a\x28\x84\x79\xec\xf2\x0f\xe4\xc5\x60\x7d\xff\xf9\x0e\x81\xd1\x1e\x60\x30\x61\x9f\x9f\xe9\xd4\x13\x55\x8d\x67\xb1\x79\x29\xb8\xc5\xc6\x99\x8a\xcc\x21\xd5\x37\xa9\xef\x60\x23\x02\x85\x1a\x3b\xf1\x7b\x81\x47\x89\x3e\x3c\xa6\xfd\xf6\x81\x7d\x13\x08\x0f\xd0\x73\xc1\xed\x7e\x60\xa7\x36\xca\x49\x3b\xc6\x64\xf6\x16\x17\xb6\x32\xc9\x5b\x9f\x13\x2d\x58\x27\xb9\xf7\x28\x31\x61\x3a\x42\x1b\x57\x44\xbf\x03\x5f\x86\x38\xe6\x28\x59\xc3\xb0\xcc\xb3\x34\xfe\x96\x5b\x70\xb1\xbb\x62\x5d\x90\x63\xc2\x55\xf4\xe3\x52\x13\xb6\x03\x3e\xba\xaa\x9f\x80\x46\x4a\x9f\x8a\x37\xd7\xe1\xed\x7f\xa3\x4a\x09\x8f\x0f\xc4\xdb\x22\x01\x86\xd0\x7f\x66\xca\xbf\xc6\xf2\x1b\x6d\x73\xd8\x35\x35\x3f\x20\x6d\xc0\x0f\xbc\xbf\xaa\x49\xe2\x65\x81\x41\x21\xac\xbf\x46\xed\xf4\x6b\x13\x41\xa6\x89\x96\x1e\xa9\xdf\x8a\xb6\x1c\x7c\xb6\x7d\x1c\x2f\x15\x49\xf2\xb1\x09\x9d\xe1\xca\x3b\xa6\xac\xdb\x34\x06\xc5\x6e\xd9\x41\x5c\xdc\xcd\x52\xb2\xf5\xd3\x51\x05\x68\x7b\xfb\x18\x88\x7f\x64\xbb\x67\xf8\xf1\x8d\x29\x39\x9a\x17\x5f\x6c\x9b\x65\x93\xf7\x92\xb0\xab\x41\x33\x96\xb2\xf7\x03\xe2\x48\x4e\xa3\xd6\xe7\xe6\x0e\xb4\x87\x59\x5c\xc8\xfe\x86\xed\xe9\x43\xc2\xdc\x7f\xe8\xd0\x58\xc3\xb8\x28\x63\xd5\xd0\x70\x1c\x44\x97\xc6\x4f\xf3\x57\xea\xa4\x36\xec\xf5\x34\xeb\x71\x6e\x1a\x9e\xf6\x38\x05\x3f\xde\x3b\xdf\x8e\xeb\x50\xb4\x1b\xa2\x6a\x86\x65\xf3\x67\x04\x56\xf8\xd9\x54\xbc\xfb\xc5\x76\x3e\xea\xc6\x75\xe2\xac\x58\x4c\x55\x7f\x62\x32\x49\x03\xe7\xf1\x73\x96\x44\x30\xeb\xeb\x4c\xa2\xc2\x88\x1b\x17\xff\x64\xac\x0e\xc8\xa4\xf0\xee\x1e\x4c\x55\x80\x77\xef\x6e\x2f\x98\x28\x1b\xa8\xab\x89\xb6\x3d\xc8\x31\xe9\x94\x1b\x72\x8b\x26\xc9\xd2\xd5\x19\xc2\xf1\xde\xa1\x2f\x7f\xc8\x2e\x5b\xaa\xd5\xd1\x64\x24\xf5\x92\xa9\x63\x9c\x42\xa0\x6a\x28\x3a\x89\x99\xa4\x9c\x10\x3e\xdb\x96\x3d\x76\x62\x01\xd2\x2d\xc8\x17\x83\xde\xa1\x16\xc6\x65\xe4\xb6\xc8\x93\x77\x42\x2b\x1e\xab\x61\x6b\x4c\xa6\x2f\xd0\x8a\xb7\x2b\xde\x1b\x4f\x76\xbc\x6c\x86\xb4\x20\xf4\x37\x38\x0e\x2f\xac\xe8\x09\x89\xa8\xf2\x1a\x7a\x95\x4a\xeb\xa2\xd0\x8d\x80\xf9\x7e\xe5\x7b\x63\x17\xf9\x49\xfe\x80\xa5\xeb\x7f\xc8\x78\xa4\x34\x94\x1d\x50\x23\xdb\xd6\xfc\xfc\xc6\x9d\xca\x63\xd4\x44\x82\xdc\x2e\xbe\xd1\xb4\x9b\x98\x1d\x12\x45\x19\xa6\x5d\xa5\x8f\xa9\xd3\xb0\x0f\xcd\x7e\x8f\x24\x3d\xe2\x81\x25\x55\x96\x80\x72\x39\xaf\x3c\x12\x70\x27\x23\xa2\x3c\x1b\x66\x45\x98\x3c\x4e\x12\x03\x0f\xd0\xd0\x46\x31\xe3\x0a\xc6\x9e\x96\x86\xbd\xb7\xd8\x1b\xe4\x9c\x79\xd5\x2e\x21\x58\xf5\x24\x00\xd4\xd6\xae\x6f\x86\xfe\x1e\x91\xa8\xde\x40\x23\x0d\xdb\xcd\x4d\xe4\xa8\x78\x16\x17\x11\x32\xca\xc7\x95\x70\xcf\x18\x2e\x37\xf1\x7b\x79\x38\x18\x84\x22\xb2\x8d\xed\x06\x95\x2d\x14\x20\xa0\x80\x2f\xb8\xf8\xea\x33\x14\xd8\x96\x26\x49\x4c\x54\x47\x8d\x85\x45\x36\x68\x78\x48\xed\x8e\xad\x24\x9f\x2f\x74\x36\xed\x55\x35\x36\x14\xfa\x59\xd2\x75\x99\xb1\xa2\xff\xfd\x6a\x75\x95\xc4\xb7\xa6\x5b\xc9\x73\x73\x75\xa6\x5b\x8c\x12\x9f\x5c\xe3\x4f\x31\xd8\x98\x57\x82\x21\xc4\x25\x64\xf1\x19\x78\xb4\x0e\x64\xb4\x57\xef\xd3\xe5\x59\x54\x8d\x91\x94\xb6\x3a\xd4\x7c\x92\x66\x33\x5e\xa6\x6c\xf2\x98\x26\x7f\x01\x50\x81\x03\x34\x1c\xda\xe5\x9a\xa7\x76\x19\xc1\xb5\x09\x4c\x47\x2d\x6e\xea\xc1\xa0\xc4\x94\x7a\x90\xa8\xcb\xd3\x93\x6c\x7d\x53\xf6\x73\x83\xf5\x41\xc0\x02\x78\xd9\x8a\x1c\x68\x62\x45\x7d\xcb\x84\x49\x28\xf6\x4a\xa8\x83\x3c\xa8\x88\x5e\xc0\xc8\xb5\x61\x1c\x2d\x19\x50\x6b\x9c\x3b\xfa\x5e\xbd\xdd\x0b\x01\xeb\xe7\xc6\xdd\x38\xcc\x63\x23\x8c\x6d\x55\x3d\xb2\x37\x84\xf7\xbf\xdd\x36\xf0\xf0\xd1\xed\x63\x1f\x2b\x2c\x98\xdc\x7e\xae\xe5\x24\xd2\x6e\x92\x44\xda\x45\x56\x41\xfd\xb8\x01\xb4\x35\x0f\x09\x30\xa1\x6f\x63\x75\xff\x10\xb1\x86\x9c\x50\xf7\x3e\xcc\x4d\x58\x3c\xe2\xe7\xf0\x4d\xb6\xba\x80\x0a\x1d\x42\xb4\xc3\xb4\x76\x5e\xc7\x46\x8d\xec\xe7\x34\x02\x00\x39\xb1\xc8\x0c\x47\x10\x72\x8e\xa7\xc7\xec\xe4\x95\x4f\xb3\x1c\xe2\x69\xe4\xc1\x12\x2e\xd2\xea\x1d\x65\x69\x2a\xd6\xaa\x4a\x72\xb0\xcf\x51\x7a\x08\x15\x69\xc0\x5f\x20\x0c\x39\xe2\x2f\x0c\x8c\x07\x4d\xd2\xe4\x8b\x61\x1a\x61\xa7\xc4\x22\x0c\x08\x9c\x1c\x93\xbb\x51\x6e\x86\xa3\x85\x24\x8e\xc2\x54\xda\x36\x4e\x42\x76\x6e\xce\xc9\x82\x36\x16\x3b\x87\x99\x73\x93\x45\x4c\xfa\xe6\x04\x03\x94\xac\xea\xdf\x9d\x9a\xe7\x73\x73\xe0\xd1\xc1\x91\xc1\xd5\xb8\x2f\x4e\x30\x38\x1b\x41\x63\x7d\x6f\x57\x20\x70\x6c\x0a\xfa\xce\x38\xce\xda\xc0\x84\x40\x5a\xa9\xbb\x88\x57\xfb\x3e\x4c\x5d\x8d\x19\xa4\x5a\xf8\xa3\x5b\xb4\xee\x47\x26\x2d\x47\xb9\xf8\x0d\x3e\xeb\x0c\xae\xea\x4f\xca\xf1\xa4\x78\xe4\xca\x42\x18\x2d\xc1\x1a\x08\xc8\x22\x80\x14\xe4\xb8\x41\x33\xe4\xd9\x3a\x9f\x8b\x96\x5a\x14\x3b\xda\xeb\xd2\x38\xb2\x01\xcf\x3f\x20\x61\x21\x2d\xfe\x52\xe9\xf4\x2c\xf5\x8e\xcc\xcb\x65\x3e\x2a\xc4\xdc\xe3\x05\x2f\xd8\x55\xff\xb5\xc2\x81\x36\x97\x65\x3d\x48\x2d\x09\x53\x4b\x99\x71\x48\x4b\xe9\x16\xaa\x53\x6b\x43\x44\x67\x06\xc3\x24\x5b\x35\x90\xf0\xc3\xfe\xf1\x57\xb4\xa5\xfe\x7d\x9b\xba\x20\xe2\xfe\x09\x65\x21\xe2\xad\x35\xeb\xab\x4f\x1f\x12\x9a\xf2\x43\xda\x16\x2f\x57\x3e\xb2\xbe\x4c\x9a\x97\xcb\x61\x9e\x9a\x24\x91\x1a\x28\x0a\xfd\xa2\xa5\x2a\x27\xd4\x53\x0a\x93\xd2\xe4\x29\x60\x92\x2d\xda\x1b\xd6\x49\x0b\x6d\xdd\xe3\x6b\xa3\xd8\xa4\x91\xd1\x9c\x1b\x1d\xd0\x87\x21\xbb\xec\xa4\xc7\x7c\x79\x7f\x9d\x9d\x1d\x1e\x26\x82\x4d\x92\x2d\x8b\x4f\x1c\xba\x20\x20\x0d\xc8\x31\x35\x6a\xbb\x66\xd1\xe4\x46\x44\x8e\x5e\x98\xf4\xc5\x91\x93\xa9\x9c\x60\xef\x7c\xdb\x16\x93\x8d\x4d\xfb\x08\x51\x8b\x74\x5e\x8e\x37\x03\x52\xe6\xe7\xdb\x5f\x7c\xda\x9b\x66\x9f\xa5\x4d\xee\x32\x42\x0e\xa1\x04\x33\x0d\x58\xca\xbd\xc8\xd5\x1f\x05\x92\x1c\xab\xde\x5a\xe5\x69\xe0\x0f\x02\x72\xb5\x7f\x1d\xbc\x24\x67\x8f\xe7\x18\x43\xb7\x08\xa9\xb7\x7d\xec\xe7\xc0\xeb\x01\xc9\xc3\x3f\xdc\xb1\x7b\xa7\x60\xf8\x02\xc2\xc4\xc2\x84\x0a\x53\xf8\x3d\x6c\xb7\x78\x9c\x33\xe3\x7a\x94\x88\xdf\x2c\xde\x07\x42\xdf\x59\x62\xf8\x0c\xc2\x3c\xca\x8a\xed\x5e\x57\x53\x0a\xa7\x5a\x85\xd8\x44\xc5\xaa\x7f\x56\xd7\xed\xfa\x4a\x35\xe5\xaf\xef\x40\x8b\x64\xe4\x8b\x9e\x95\x61\x99\x39\x0b\x58\x51\x90\xb4\x53\x5b\xd5\x24\x37\x77\x81\x74\xe2\x7d\x73\x14\xa6\xe5\x68\xd0\x22\x20\x28\x6e\x41\x51\xa1\x4e\xbd\x3b\x37\x45\x37\x15\xae\x99\x62\xfe\xc9\x92\xf2\x02\xad\x04\x61\x77\x39\x4c\x23\xc9\xde\xf7\x78\x98\xac\x73\xc1\xe1\xf6\x9f\xcc\x62\x38\x37\x60\x13\xbd\x49\xea\xbc\x37\xd9\x11\x44\x74\x36\xe5\xa4\xf2\x90\xad\xd0\xe4\x59\x31\x0c\x45\x55\x04\xf1\xdb\x15\x36\xfd\xb8\x42\x68\xbc\xae\x29\x2c\x70\x19\x55\x42\x4c\xef\xa3\x94\x2b\x1d\x6d\xd2\x7f\x80\x9f\x90\xab\x48\xa0\xbf\x73\x89\x7a\x3d\x97\x18\xab\x95\xa5\x3d\x93\xef\xac\xd7\x1f\x05\x9c\x7a\x5a\xea\x1f\x05\xe4\x60\x26\xfe\xee\xe8\x2f\x1e\xa9\xbc\x65\xde\xbd\xc0\x0b\x92\x00\xa3\x8c\xbb\xbe\xc5\x51\xae\xa0\x52\x55\xa1\xf7\xe9\xcd\xfe\xe9\xf3\xf3\xfb\x76\xda\x87\x00\xfe\xe3\x47\x32\xcc\xd8\xdb\x07\xa1\xc2\x6d\x7c\x2b\x2a\x6e\x28\x71\xa1\xb4\xfa\xdf\x54\x2c\x7d\x47\xd3\xec\x72\x45\xb6\x2d\x72\x17\xa8\x10\xbe\x36\x61\xf0\x17\x76\xe3\x64\xd5\x96\xff\x54\x60\x6e\x9a\x08\xab\x74\xae\x49\x4d\xba\xbd\x13\xb0\xee\x17\x1c\xac\xfb\x09\x57\x37\x88\xca\x51\xee\x96\x4a\xf5\x57\x22\x4c\x19\xb8\xee\x13\xd8\x47\x05\xb9\x34\x10\x23\x97\x4d\x6a\xbe\x35\x32\x89\x40\x44\x90\x0d\x6d\x61\x28\xda\x96\x71\x83\x14\x86\x04\xc4\x78\xc2\x88\x58\xe5\x78\x2a\x44\xfa\xc2\x17\xda\x49\x58\x2a\x3b\xd1\xf9\x0a\xee\xdf\xa5\xc7\x54\x9e\x36\x19\x72\x1b\xcd\x5a\x08\x51\x71\x87\x72\xdb\x3b\x3c\x07\x7f\x36\x55\xcc\xdc\x3b\xdf\x0e\x8b\x25\x55\x5b\x9c\x70\x13\xd3\x96\xd1\x94\xaf\x97\xb4\xf9\xb4\x3f\xec\x41\x46\xe7\x09\x64\x74\xbe\xc9\x5c\x38\xcf\xb2\x45\x37\x43\x9c\x3f\x88\x2b\x05\x9e\x75\xea\x93\xf1\x20\xec\xc5\x29\xdc\x2d\x0f\xed\xda\xb7\x61\xb1\x5b\x1b\xef\x4e\x70\x14\x17\xca\x62\x07\x89\x60\x00\x4b\x20\x81\x5e\xf5\x89\xea\x64\x76\x08\x69\x38\xd8\x22\xa9\x32\x3b\x84\x94\x05\xc1\x45\x64\x33\x28\x1e\xa2\x62\xe1\x45\x86\x1e\xdd\x09\x3c\x75\xf4\x16\xb7\xe3\xce\xd9\xab\x51\x00\x49\xfd\x3b\xe8\x94\x41\xf5\x03\x7d\xdc\x1f\x60\xa4\x6b\x1c\xed\x27\xc5\x8a\x09\x87\xa2\x46\x31\x0f\x8d\xed\x8d\x4b\x0e\x82\x61\x95\x80\xb7\xf9\x49\x27\x7e\x15\xc8\xec\xe0\x03\x80\xfb\x7e\xcf\xfe\x2c\xba\x04\x47\x2a\x12\x24\x9f\x76\xcc\xdf\xbd\xa7\x1d\x99\xdc\x84\x09\x2d\xf3\xd8\x19\xe5\x98\x45\xa7\xe2\x5e\x98\x9b\xb2\x14\x8b\x4a\x07\xd7\x76\xad\x8a\x8b\x2e\x56\x59\xcc\x4d\x6a\xca\x38\x02\x83\x08\x2b\xc1\x11\x42\xe1\x5d\xb7\x29\x8e\x7a\xe5\x6f\x1e\x9a\x2f\xbe\xd8\x8e\xd3\xa8\xdf\x22\x1c\xbf\xbd\x3b\xc5\xf4\x13\xd3\x2b\x5d\x36\xa9\xb8\xd6\x3b\x6f\xb3\x07\xec\x6d\xf6\xc0\x5d\x53\x94\xa5\x8b\xa3\x62\xb2\xc0\x0b\x29\x2c\x2c\xb1\x02\x06\x45\x74\x71\xc6\x55\x9c\x47\x69\xd7\xe4\xb6\x44\x53\x10\x31\xf6\x1c\x5e\xb9\xea\xfa\x6b\x9c\xbf\x6c\xca\x6c\x3b\x29\xa7\xa3\x5f\xa4\xfa\x89\x2d\xa7\x32\xfc\x54\x87\xb8\x5b\x17\x49\x6e\xed\x06\xf7\x84\x6e\xb8\xfc\x21\x19\x45\x4b\x33\xd4\x31\x3b\x5c\x91\x00\x0d\xa4\x21\xc5\x1a\x61\x2a\x52\xdf\xbf\xab\x3d\x30\x49\x92\xad\x4c\x80\xf3\x5a\xf3\xec\x00\xe4\x84\x29\x92\x58\x0c\xa4\xd0\x52\x97\x9c\x51\x4e\xaa\x67\x36\xbb\x86\xec\x6b\x1f\xda\x65\x43\x6c\xc4\x83\xe7\xed\x9c\xd0\x82\xb7\x6f\x68\x7c\x40\xfb\xdf\xc0\xa4\x65\xa6\x52\x71\xb8\x19\xe9\x83\xca\xc9\x94\x4a\x90\xc6\x23\x65\x3f\x1b\xf5\xfa\xdb\xeb\x55\x54\xd5\xa6\xbc\x44\xf5\x45\xe6\x4f\x03\x3a\xe5\xa4\xdb\x3d\x2a\xbe\xf2\x68\xba\xcb\xa4\x6a\x25\xae\xe1\xdb\xeb\xb0\x91\x23\x24\x8c\x8b\x33\xa8\x64\xa8\x00\xac\x1f\x30\x67\x02\xdf\x74\x5c\x63\x4b\xcf\x26\x23\x30\x6b\x41\x8d\xaa\x3f\x0a\x0a\xef\x10\x12\xf1\x9d\xc6\x94\x39\x8b\x46\xc8\x46\xa5\x54\x1c\x30\xc8\xca\x6f\x07\x7b\xf6\x3e\x37\x43\x08\xf4\xc0\x17\x1f\xcf\xb1\xaa\xd5\xef\xb2\x3e\x83\xe9\xd9\xac\x03\x43\x0a\xb8\x66\xd4\x0d\xb0\x26\xde\x22\x49\x95\x13\xa4\xd3\x5e\x47\xf6\xc3\x32\x5b\x8a\xd3\xb0\x60\xb7\x80\xd3\x24\x4a\x36\xed\x21\x79\x68\x57\xbb\xec\xe7\xd9\x8a\x5b\xff\x05\xcc\x1a\x4c\x20\x5b\x3f\x45\x94\xdd\x30\x89\xbf\x85\xd7\x81\x75\xeb\x22\xbb\xfc\x48\x30\x80\x32\xe2\xcc\x98\xda\x84\xd8\xe0\xe5\x23\x81\xb7\x96\x98\x71\x3a\xbb\x71\x5a\xc4\x5d\x93\x6f\xe7\xce\x95\x7d\xbb\x58\x44\xd7\xa8\xe9\x78\x18\x0f\x0f\xc8\x82\x77\xc8\x49\x0d\x30\x44\x24\x0e\x4f\x4c\xf5\x81\xac\xc9\xee\x30\x14\x93\x22\x04\x07\xa2\x45\x8f\x3c\xe0\xc3\xca\xcf\xc3\x73\x34\x31\xea\x8c\xdd\x74\x77\xb2\xc6\xd2\x55\x90\x51\xc1\x4b\x86\xb4\x14\xa0\x15\x97\x08\xa1\xb0\x65\x4c\xb2\x0e\x57\x2b\xff\xd0\x2e\x53\x89\x65\x1d\x58\x33\xf9\x26\x14\x7f\x14\x30\xe8\xd9\xb9\x61\x1a\xd1\x78\xbb\x4b\xa1\xf6\x5d\xee\xa9\x8d\xd2\x5e\x98\xaf\xa2\xe8\xa1\x4e\xe4\x64\x08\xd6\xd4\x71\x3e\xd0\x2e\xfb\x76\x69\x71\x15\x99\x35\x62\x68\xac\xd1\x12\x64\xf2\xac\x0b\x00\x28\x6e\x55\x04\x0a\x95\xe2\x42\x1e\x39\x5b\x3b\x5e\x6a\x30\x4c\x56\x23\x33\xe3\xf9\x59\x7f\x44\x16\x63\x57\x6d\xe0\x85\x00\xf4\x5a\x93\x41\xef\x4a\x9c\x74\x23\x31\x1f\x42\x0b\xf1\x3c\xb5\x13\xcf\x4f\x89\xdc\xef\xde\xdd\x2e\x3e\x3f\x9c\xa1\x1a\xc4\x1b\x14\xec\xbf\x4a\xe0\x9e\xa3\x53\x0b\xc1\xf3\xfb\x77\xb5\x5f\x92\xce\x97\x82\xb2\xec\x17\xc9\xc9\x54\x31\x63\xcf\x41\x3b\x9c\x96\xd4\xbc\x01\x13\x54\x64\x6f\xe5\x64\x0a\xc8\xe7\x96\xcc\x3c\xac\x37\xaf\x19\x0a\x54\x15\x18\x85\x25\xec\x1a\xb6\x1b\x15\xe9\x6b\x58\x85\x56\xfa\xb1\xa8\xf4\x3a\x8b\x0c\xe7\x84\x70\x9c\xb8\x0c\x2f\x8d\x52\x63\xb5\x72\x51\x71\xbd\x44\x41\xfa\x06\x86\xbf\x02\x32\xbc\xa5\xb6\x54\xdf\x15\x35\xe9\x90\x05\xd9\x8a\xc9\x67\x49\x48\xe1\x3c\xc5\x71\x82\x93\x40\xaf\xf3\x03\xac\xba\x98\x97\xc7\x7c\xbf\x2b\x5c\xce\x72\x5b\x00\xde\x23\xc5\xbb\xfb\xac\xf4\xbd\xbd\x43\xa9\xe2\x85\xea\x19\x5f\x65\x36\xf9\xd0\x58\xd1\x74\x09\x12\x9c\x6c\xa4\xbb\x65\xc9\x51\xb0\x3f\xff\x8b\xea\x11\x77\xff\x5f\xfa\xd2\xa7\xed\xff\x20\x3a\x9c\x1d\xdb\x81\x8a\xad\xe6\x3a\xe7\x43\xdf\xb3\x9b\x16\x5a\x07\x8f\xe3\x42\x30\x56\x44\xb7\x16\xfc\x5e\x2b\xc1\xe4\x7c\x96\x2c\x2c\x02\x23\x6d\x66\xec\xc5\xe6\x9e\x9c\x04\xbc\xb5\x9c\x56\xfd\x96\x8e\x87\x68\x6f\x1b\xdb\x99\x8f\xc5\x4e\x0c\xdf\x35\x5d\xaa\xdf\x04\x28\x90\x97\x81\x91\xc5\x0a\xfe\xbf\x05\xde\x6a\x79\x9b\x60\x73\x45\x52\xc9\xa2\xc8\x50\xb7\xbc\x8e\xc5\x09\x09\xcd\xab\x76\x7d\x54\x09\x34\xe7\x93\x6c\xd2\xd2\xa4\x69\x2c\xd1\x25\xc2\x08\xf4\x6e\xe4\x78\x3c\xa1\xb5\x6b\xbe\xd5\x9a\x61\x6b\xc2\x09\x56\x91\x2f\x98\x58\x71\xbb\xe2\xd1\xd6\xf3\x5a\x29\x7d\xd3\x3e\x20\xb5\xec\xa9\xef\x0a\xd1\xdd\x9f\x06\xd4\x14\xb9\x11\x90\x62\x13\x5b\xd3\x9f\xad\x7c\x91\x46\x72\x3a\xf9\x0f\xbb\x85\x28\x18\x8e\x48\x6e\xc7\xc9\xfd\x61\x0b\xd8\x75\x72\x21\xd5\xa3\x6e\x30\xad\x9a\x62\x47\xeb\x1b\x5f\x97\xad\xf8\x3a\x91\xac\xb6\x76\xea\xef\x55\x21\x28\xfb\xd6\x55\x6a\xb9\x45\x42\xfd\xf6\x07\x1d\x0f\xb5\xbe\x11\x39\x21\xb5\xd4\x22\x1b\x98\xa7\xec\x20\x42\x69\x77\xc6\x72\xe0\x84\x4c\x8a\x77\xaa\x2f\x88\xf4\xcf\x1f\x25\xfd\xf3\x4b\x58\x49\xb0\xa4\x6e\x1b\x7b\x70\xed\x36\x7b\x63\x1b\xdb\xc7\xbe\x9d\xd0\xea\x78\x41\x9b\xd9\x0e\x87\x70\xc0\xfb\x0b\xc2\x16\x57\x0e\xf0\xd0\x1d\x5c\x39\x40\xdf\x5b\xa0\x25\x86\x55\x4b\xc8\x09\x18\xef\xef\xd9\x27\x8a\x65\x48\xe8\xc6\x58\x22\xee\xb8\x96\xe0\x42\x6e\xd2\xae\x58\x9a\x21\x46\x7f\x8d\xdb\xb2\xaf\x4d\xad\x9c\x87\x76\xbd\xd0\x5e\x30\x51\x38\x2a\x40\xb2\xc2\x14\x60\xca\xc8\x1f\xdb\x6d\x54\x68\xa3\xa4\xe1\x35\x08\xd3\x9d\x1e\xc3\xf6\xcf\xec\xe2\x2e\x50\x75\x4c\x39\xac\x0b\x12\xb7\xa2\x5a\x73\xbb\x62\xe7\xf1\x75\x42\x25\x9e\x43\x58\x82\xd4\xec\xbe\x85\x54\xc8\x47\x02\xcf\x2a\xbb\xeb\x52\x88\x85\xb8\x94\xde\xd5\x84\x3f\x3c\xee\xf2\x12\xe5\x41\xd3\x84\x17\x8b\x41\x19\x45\x7d\xc0\xe5\xf1\x4a\x2f\xd9\xc5\x4b\x8e\xa9\x10\x57\x9a\xa8\x9f\xc6\x51\x98\xd8\x52\x02\x9e\x81\x80\x11\xd4\x95\xd2\xf3\x0f\x44\x89\x4f\xbd\x2b\xb5\xdd\x36\xcc\x92\xd5\x28\x4b\x33\x4b\xb6\x67\x32\xba\xec\x69\x72\x32\x55\x25\xde\x73\xb0\xdd\x8d\x8b\x2c\xef\x9a\x3c\x41\x53\x48\xa8\xc3\xa4\xdc\xf0\x7e\x13\xbd\xa9\x97\x8d\x92\x6e\x16\xa3\xf2\x80\xed\x59\x84\xbb\xe4\x84\x64\x49\x4a\x93\x0f\xe2\xb4\x5e\x7a\x5c\xb8\x75\x9a\xd2\x9e\xd3\x2c\x2b\x1a\x96\x51\x3f\x4e\x7b\xdb\xa9\x74\x8b\xf6\xb6\xf3\x9b\xf7\x64\xc7\x35\xa6\x2a\x9d\xb6\x4b\x84\x7c\xc2\x7e\x3b\xfe\xfd\xf2\x54\x1a\xb6\x77\xfe\xaf\x53\xbc\x27\x60\x5d\x84\x60\xc4\x71\x79\x89\xb2\xdb\xa0\x9e\xd7\x0f\xf3\x41\x62\x0a\xb0\xa4\x9c\x34\x99\x73\xd2\x44\xcf\x18\x65\xa4\xd3\x0d\x1e\x66\xed\x85\xb0\x50\x18\x89\xd2\x39\xec\xfd\xca\xc9\x44\x1b\xb6\x97\x98\x12\xbe\x7a\x78\x1a\x1b\xec\x48\xf3\x26\x01\x6d\x6e\x37\x8c\xce\x7d\xed\x22\xcb\x4b\x52\x84\xbe\x45\xbd\xca\x57\x69\xe1\xbe\xc7\xe2\xe2\xa3\x85\x3c\x2b\x33\x5c\x1f\x56\x8b\xcb\x98\x51\x72\xe2\xb6\x9b\x41\x98\xc4\xbd\x34\x4c\xa3\xd5\x19\x4a\x06\x2f\x90\x08\xe3\xeb\x13\xaa\x06\x7e\x47\xb1\xa1\xaf\xd9\x4e\x84\x9b\x0e\x41\x8e\x2e\xe3\x8d\xbb\x36\x92\x93\xaf\xbc\x83\xd8\x14\x2b\xdd\xdb\x58\xcf\xe4\xa4\xc1\x85\x6b\x7f\xdb\x7c\x73\x14\x0f\x87\xda\x18\xc1\x2f\xdd\xa5\x69\x76\xd7\x15\x30\x47\xe9\xb2\x89\x13\x15\xc5\xe3\x32\x81\xc6\x3a\x04\x04\xbd\x35\x15\xd4\xee\xdb\xbf\xaf\x5d\x86\xc9\x92\xe2\xa0\xdc\x60\x75\x5d\xc7\xd3\x44\xf4\x1d\x64\x69\xd9\x2f\x1e\xf3\xd8\x9e\x4b\xe8\x2d\x8b\x90\xae\x8d\x06\x54\x0f\xc9\xce\x10\xdd\xec\x3c\x18\xe0\x24\xc5\xd8\xff\xc0\xae\x7d\x58\xf1\xe1\x2c\xc1\xce\xa4\xd8\xa5\x7f\x8b\xfb\xdd\x92\xb7\xa9\xec\x15\x2d\xea\xb7\x30\xba\xb4\xfd\xe6\xa1\xbc\x51\xdf\x98\x5c\x84\x96\x90\xd4\x5c\x0f\x88\x34\x8d\x5c\x56\x17\x92\xcd\x4f\xc7\x2a\xdd\xf5\x7a\x61\xcf\x10\x5e\x61\x9d\x34\x7c\xd6\xa7\x6a\xc0\x7b\xe7\xdb\xc3\x30\x2f\xe3\x68\x94\x84\xf9\xac\x47\xca\x1c\x0f\x48\x3a\xf2\x22\x65\x8f\x40\x80\x8b\x40\x04\x41\xfc\x87\x59\x96\x6f\x23\x21\x97\x3f\x67\xa3\xdc\xd3\x01\x89\x94\xae\x61\xfb\xd6\x04\xb8\x45\x2a\xcf\xbe\x72\x91\x9a\x95\x41\x98\x2f\xb5\x68\x93\xbd\x87\xb5\x5a\x4e\x3e\xc1\xb3\x50\xb5\xdb\x44\xc3\x27\x20\x39\xd5\x1b\x54\x5a\xc8\xca\xe2\xe1\x3a\xe2\x73\x02\x82\xf5\x37\xbb\x35\xb1\xbe\x3c\x8e\x90\xb1\x90\xbd\x4e\x2e\x0b\xf3\x7f\xab\x43\x4a\x61\x98\x89\x1a\x3a\x73\x69\xbe\x65\x21\x19\xb6\x11\xfc\x7f\xfc\xe2\xd8\x23\x1e\xcf\x53\x70\x9e\x9b\xae\x19\x0c\xa5\xd6\xe7\x42\xe8\x9b\xe0\x3b\x2a\xc6\xbd\xa1\x92\x98\xc4\x61\x6e\x57\x46\xe4\x93\x6f\x12\x8c\x08\xb5\x4b\xed\xcb\xf2\x4f\x81\xe7\x1f\x42\xe7\x77\x8f\xf3\xf4\xb1\x8f\x59\x3b\x1e\xfe\x31\x7d\xb5\xd7\xb3\x63\x62\x22\xa1\x43\xa8\x78\x99\x38\x34\xb0\x1c\x23\xfb\x05\x17\xf9\xc6\x61\xdf\x6e\x53\xf8\xbb\x59\x64\xf4\x72\xd2\x99\xd0\xae\xce\xcb\x47\xd8\x28\x2c\x20\x61\xbc\x75\x60\x7b\x10\x84\xbf\x1f\x70\x97\x58\xbc\xf7\x9d\x4c\xb2\x13\x8f\xc4\x83\xc7\xc3\x7e\x17\x6b\x8a\x23\x01\xbb\x41\x7e\xdd\x4e\x6e\xf9\xde\x8a\xd4\x89\xff\xcc\xcb\x4d\x86\x03\x53\x84\x4b\x98\x50\x4d\x85\x61\xbf\xd9\x76\xb3\xd1\x42\xb9\x38\x4a\xe0\x75\xa4\x3c\x7a\x1f\x77\x5e\xa0\x65\xe5\xac\xfd\x65\x27\x81\xe2\x4a\xa9\xd7\x83\x4f\x32\x92\x5b\xc8\xb3\x25\x93\x87\x3d\xf4\x0c\x51\x35\xd8\x62\x41\x83\xd8\x0c\xdf\xb2\x9a\x17\x13\xa2\xef\x5a\x1a\xff\xa4\xba\x63\x9a\x2d\x64\xdd\x55\x3b\x84\xd8\xd4\x57\x78\x8c\x01\x09\xce\xff\x61\x13\x83\x2d\x4e\xbd\xa0\x55\x13\xb2\x82\xd1\xe8\x2f\x4b\xc1\x0f\x81\xa7\x58\xc0\xc8\xc9\xd8\xe7\x9a\x61\x6c\xc5\x42\xa4\xa9\x8d\x19\xe0\xc0\x3f\xae\x75\x7e\x95\x88\x14\x45\x69\x56\xc4\x3f\xe3\xaf\x85\x36\x35\x14\x01\x12\x8b\x50\xf0\x45\x00\x01\x05\xc9\x49\x53\xac\xb3\x18\xa6\x69\x6c\x5a\x54\x42\xbb\x68\xf7\x11\x39\xf6\x45\xa7\xb0\x3b\xe9\x01\x7e\x92\x9d\xec\x4e\x06\x8c\xcd\xc8\x5e\x32\x51\xb9\x93\xc8\xc4\x5b\x3a\xac\xe2\x32\x41\x3f\xa6\x56\xfd\xd9\xc0\x4b\x5c\x4b\x24\x87\x60\x4a\xb0\x99\x40\x15\x5d\xc6\x56\x83\xed\xfb\x1a\x31\x60\x5a\x63\x0f\x89\x28\x22\x93\x86\x79\x9c\xc9\xea\x29\xee\xc6\x58\x3d\xd5\xea\xd8\x17\xca\x7a\x49\x3c\x18\x18\x91\x81\xf1\x82\x42\x5e\x5d\xa8\x69\x9b\x19\x64\xa9\x29\xc3\x3c\x2e\x40\x7a\xc4\xca\xf9\x91\x7d\xad\x72\xec\xdd\xa7\xbb\x71\x99\xe5\x85\x2d\x7b\xb9\x52\x75\x7d\x29\x98\x30\x77\xa9\x52\xc3\x13\x30\x0a\xd3\xb0\x1b\x87\xe9\xa3\xd4\x3d\xdf\x08\x26\x2b\xc1\x2e\x25\xf8\xb6\xdd\xcc\x91\xfd\xbf\x6a\x9f\x8a\x6c\xf8\xcc\xf6\xbe\x1a\x78\xd2\xda\xab\x56\xe8\x08\x41\x86\x74\x85\x81\x4a\xf8\x57\xa8\xdd\xe9\xad\xdb\xd9\x8f\x22\xea\x4f\x2a\xaf\x2b\x72\x9c\xf5\xbe\x46\xbd\x7e\x8b\x30\xbe\xb0\x69\x54\x31\xfa\xc7\x68\x45\x31\xc5\x63\xf6\xed\x39\x92\xce\x5e\xbd\xb4\x73\x13\xdd\x3d\xc6\x57\x1f\x45\x90\xe3\xd8\x4c\xf5\xed\x00\xcc\xb6\x11\x90\xef\xdd\x0d\xac\xaa\xba\xc4\xb6\x0e\xed\xba\xff\xf7\x3f\xdf\xf1\x04\xf5\x63\xf6\xa2\x30\x5c\x45\x0f\x4d\xf9\x02\xbe\x1a\xf6\xc4\xb8\x29\x42\x03\x14\x60\x86\xc8\xe4\xd0\x5b\x44\x7e\x2c\x6d\x07\xc4\x4b\xd7\x1b\x30\x6f\x71\x1a\x25\x71\xaa\xb3\x07\x48\x94\x6b\x2c\xb3\x79\x8d\xa0\x14\xa2\x01\x22\xd2\x32\xb8\x2a\x8c\x2a\xe7\x8f\xed\xf6\x9f\xb3\xd5\x04\x38\xc5\xb6\x62\x09\x69\x4d\xc8\xf8\x0b\xa4\x12\x5f\x8c\x86\xc3\x2c\x2f\x4d\x6e\x79\x45\xcf\x7a\x06\x82\x0b\x97\xdf\x24\x36\x05\x9c\x8f\x37\x6e\xd1\x74\x29\xe3\xa2\x18\x99\x82\xda\x0a\x1f\x07\x04\x68\xf8\xd8\x51\x35\x86\xc9\x68\x30\x30\x4e\x85\x08\x5f\x2e\x68\x58\x39\xe9\x34\x2c\x49\xb9\xc9\x47\x1a\xf7\x90\x0a\x98\x66\xe6\x27\x27\x5a\xcc\x89\x29\x1f\x61\x3e\x22\xd1\xf8\x7f\x33\xf0\x48\xb4\x07\xc4\xb7\x7c\x40\x0a\xd7\x6b\x76\x08\x22\x88\xbd\x56\x79\x35\xe8\xeb\xaf\x61\xa2\x29\xd1\x7b\x42\xbb\xd3\x0e\x34\xe9\xda\xda\xd7\x81\xee\xf2\x43\xec\x3d\x57\x66\xd1\x52\x3f\x4b\xba\x26\x87\x79\x38\x76\xe8\xc3\x64\x0b\x75\x78\xc2\xb8\xa2\x67\x71\xe5\xce\xb1\xf5\x86\xfd\x43\x39\x66\xd5\xf2\xd8\x7c\x22\x8d\xa1\xc1\x54\x70\x25\xcc\x17\xc3\xdc\x90\xbe\xeb\x09\x3c\x21\x39\x71\x72\x75\x83\x38\x8d\xa3\x6c\x30\x1c\x39\x68\x03\x36\x7c\xf4\xd7\xe4\x98\xe0\xa7\xc5\x8a\x49\x92\x99\x09\x3a\xf9\xfe\x5d\x9e\xf0\xbe\x57\xab\x63\xa7\x49\xdf\x77\x94\xda\x7a\xaf\x42\x06\x5e\x70\x66\x94\x64\x40\x70\x64\x4a\x69\x62\xcf\xc1\x76\x1e\x2f\xb4\x3c\x6c\x15\x30\x1f\x39\x9e\xda\xd2\x76\xef\x6e\xf7\xb3\xa1\xdb\xc8\x11\x58\xbc\x1e\xf8\x20\xe3\xf5\x26\x6e\xe8\x30\x4b\xe2\xd2\xcd\x3a\x95\x7b\xf7\xd4\x9b\x35\x52\x18\xbc\x41\x30\x24\xb3\xb8\x68\xa2\x32\x5e\x46\x4a\xca\x8a\x40\x88\x5c\xde\x66\x72\x1d\xba\x9a\x68\x06\x5d\xa2\x3c\xec\x5d\x84\x37\xc0\x57\xde\x09\x3c\x3e\xb4\x88\xc2\xb4\x1b\x26\x98\x69\xd2\xb9\xad\xb8\x8b\xdb\xe4\xa1\x00\x57\x0f\x47\x7e\xbc\xc4\xd8\x83\x69\x7b\xaf\xbd\xf3\x16\x66\x98\xac\xce\x7a\x94\xc4\x6b\xd5\x66\xfb\xbc\x3d\x13\xc2\x47\x78\x53\xad\x8e\x5f\xb4\x96\xc3\xd1\xcb\xfd\x30\x11\xd9\x66\xe5\xc3\xd9\x6f\x91\x13\x07\x1b\x19\xe6\xa6\x7e\x64\xa3\x5c\x7a\xac\x4e\x32\xce\x55\x0b\xcf\x4f\x0d\x81\x17\x5f\x6c\x0f\x8c\xd8\x22\x3b\x75\x42\xe7\x46\x74\xde\x83\x77\x43\x69\x8a\xab\x84\x0c\x09\xe1\x9e\x9b\xca\xbd\xbf\xd2\xee\x66\x03\x53\xa8\xc8\xbb\x50\xe6\x49\x0f\x77\xad\xf2\xf3\x6e\x38\x2a\x1f\x25\x88\xb8\xa8\x8c\x8b\x33\x39\xa6\x94\xae\x40\x88\xe7\x5d\xef\xd8\x61\xbb\xde\x21\xcd\xe8\x2d\x58\x04\x55\xc4\xcc\x73\x65\x5e\x21\x8b\xae\x59\x30\x6d\x10\xf4\xdf\x40\xd5\x42\x4e\xec\x48\x52\xdf\x37\x0f\xa1\x1b\x8e\xf2\xa8\x1f\x16\x62\x76\x8a\xb4\x5a\xa0\xca\x72\x32\x7e\xc4\x83\x5a\xd3\x4f\xd9\xff\xc1\x15\xfd\xb8\xf2\xa9\x17\xbe\xde\xf1\xad\x5d\xb9\x01\x1e\x38\x62\x79\x8b\xac\xd7\x6d\x1e\x7b\x7d\xbe\x85\x07\xa0\x00\x3f\x3b\x0d\x51\xec\x7a\x83\x6d\xe3\x1e\x01\x75\xc8\xc1\x46\xdc\x92\x0c\xe7\x72\xec\xb3\xaf\x22\x16\xc1\xcf\x5f\x20\x68\xea\xa3\xa8\xfb\x20\xd2\xba\xd3\x54\x82\x1c\x84\xe5\xc8\xd3\xbd\x71\x63\xdf\xb3\x37\x23\xc7\xe4\xc2\x33\x34\x79\x64\xd2\x32\xec\x99\x87\x5a\xbf\xa2\x8e\xb6\xd8\xe3\x45\xbf\x88\xbd\xe4\xef\xe3\x9e\x18\x5c\x8f\x62\xf2\xe5\xaa\x8e\xf0\x5c\x8f\x7b\x9f\x93\xa4\xbe\x16\xcc\x1c\xf8\x7b\xbf\x2a\xc1\xc7\x75\x4a\x48\xff\xab\xd2\xcc\x90\xc0\xe5\x6d\x96\x1d\xb9\x3f\x91\x19\xbe\xd6\x68\x59\x97\x1a\xdd\x5c\x35\x90\xf3\xa5\xcd\x8b\x24\xb4\x9c\x9a\x95\x22\x31\x65\x69\xf2\x19\x46\xa9\xde\x25\x4a\x8c\x80\x9f\x31\x56\x67\xc6\x4f\x4c\x08\x18\x9a\x7c\x9b\xaf\xba\xa0\xd0\x44\xe1\x81\x2f\x34\x91\xaa\xe5\x69\x0a\x5a\x4e\xd0\x18\xed\xc5\x49\x62\x1c\x9d\x44\x15\x3f\xed\x6f\xcb\xc9\x14\xc2\x7c\x7e\xbe\x3d\x08\x7b\x71\x01\xaf\x31\xb1\xc2\x69\x02\xc8\x50\xf9\x26\x8c\xbb\x0f\x51\xbf\x76\xeb\xd8\xa3\x0c\x4e\x11\x66\xe4\xdd\x80\x30\x0a\x8c\x36\xdb\xb0\x43\x1a\xb9\xe3\x0d\x3b\x22\xe5\x98\x25\x2c\xbf\xed\x96\x9e\x97\xc2\xf4\xcb\x3b\xb6\x7e\x4e\x0a\x49\x1f\xda\xc9\x84\xb4\xef\x41\xe0\x89\xc4\x67\x49\xda\xe8\x1c\xde\x35\xea\xe1\xe0\xaf\x62\x32\xfd\x79\x45\x31\xcc\x96\x06\x93\xc4\x7d\xb6\x90\xbc\x38\x4a\x5a\x44\xa2\x38\x43\x4b\xf3\x99\xa6\x5d\x71\x30\x2a\xa2\x44\x80\x24\x2a\xed\x43\xbd\xc4\xd3\xb4\xc3\xdd\xf1\x62\x42\x49\x38\x14\xd6\x84\xe6\x90\x9c\x5c\x36\x5d\x9b\x59\x8e\xbb\x2a\x54\x84\x09\x7d\x8c\xf8\x1d\xc7\x68\x50\x3a\xa5\xa6\x02\x5a\xc7\x28\x19\x40\xd6\x5d\x8e\x2b\xd5\x3e\xb1\x56\x48\xc3\x3c\xb6\x56\x9d\x2d\x8f\xba\x3f\x4a\x23\xf8\x68\x23\x83\x3e\x0f\xd3\xa5\xcd\xe6\x95\x7e\x93\x9f\x16\xfb\xdd\x3b\xdf\x36\x45\x19\x2e\x24\x71\xd1\x77\x8a\x4b\xe2\xbe\x42\x65\xa8\x75\x46\x2e\x47\x7d\x93\x2e\x84\xa3\x81\x4c\x2e\x95\xd3\xf2\xd8\x1c\xa9\x10\x60\x7f\xbd\x56\x7d\x86\x3a\x1a\x49\x12\x65\xcb\x86\x84\xd9\x9b\x76\x44\x5f\x48\x4c\xe2\x05\x93\x87\xc9\xc3\xf5\xa0\x42\xae\x73\x17\xfd\x5d\x15\x02\xa3\xe0\x6d\xb6\x33\x49\x33\xa8\xd3\x28\xd5\x0e\xb3\xaf\x5e\xfe\x6c\xcc\x12\x88\x81\x0f\x2f\x91\x9f\x61\x27\x13\xad\x1b\xd5\x49\xdc\xbc\x18\xc1\xfe\x24\x11\x19\x2d\xb7\x34\xfe\xaa\xc3\x4e\x52\x73\x22\x8c\x22\x33\x2c\xb7\x93\x56\x31\xd0\x7d\x2a\x6b\xe5\x4b\xff\xa2\xa4\x86\x1a\xda\x7a\x35\x19\x00\xb8\xbe\xdf\x91\x06\x8d\xf2\x03\x6d\xcb\x45\x89\x87\x61\x89\xa6\xa2\x6a\xcf\xd9\x5b\xc5\x2b\x14\x65\x2c\x55\xfc\x74\xf4\x8d\x6c\x60\xf2\xc2\x94\x13\x80\xdb\xf3\x0c\xb8\x3d\x5f\xe7\xb4\xee\x7d\x14\x0a\xcd\x55\x52\x34\xad\x65\x1f\x7a\x77\xf1\x3c\x1b\xee\xf0\x58\xf5\xcb\x04\x5c\x79\x97\x50\x13\x8f\x77\x48\x03\x4f\x00\x54\x48\x66\x50\x6e\x53\x2f\x3c\x32\xbb\xba\xcf\x06\x99\x83\x61\x04\xb3\x42\x2c\x38\xdf\xb6\x0f\x56\x8e\xa9\x46\x53\x66\x45\x51\xef\x8d\x60\xff\xe2\xd7\x8e\x43\x3b\x47\x4e\xa8\x03\x19\x65\x69\x6a\xa2\x52\xa2\x8a\x09\x6b\x55\x39\x99\x5a\x6f\xac\xd9\x46\x92\x15\x66\x3b\xf1\x32\xd6\xc9\xd2\x0a\x91\x24\x4a\xaf\xe0\xf9\xe1\xb9\xfc\x08\x2f\x19\xb3\x06\x2d\x60\x31\x50\x99\x8a\xdf\xf6\x1c\xac\x67\x8f\x77\x56\xd0\x22\x4f\xcb\x71\xef\x7f\x4a\x1b\x42\x14\x16\xfd\x47\x7c\xa7\xf0\x4f\xb0\x3d\xe3\xc9\xbc\xb5\xc9\x62\x62\xb7\x4a\x24\x5f\x08\x88\x27\x05\x8e\x3e\xe2\xd9\xd6\x98\x70\xdd\x44\x02\x9a\x19\x53\x4d\x7f\xcd\x4a\xb2\x38\x94\x9b\xa3\x07\xde\xa5\xe9\xdc\x1b\xa5\xa9\x4d\x11\xbd\x6d\x4c\x40\xf4\x93\xf5\x26\x01\xf3\x62\xb4\x30\xcc\x4c\x1a\xb6\x26\x8a\x24\xfe\xa5\x1f\xf5\xf0\xfa\x3c\xab\x57\xe3\xae\x6d\x1d\x23\xe5\xfb\x3d\xdc\xab\x28\x0f\xd9\x51\xa8\x26\x9c\xf6\xd2\x45\x00\x71\x6a\x4a\xd9\xbc\x3c\x5c\x5c\x8c\xf3\x81\x7b\xe2\x0e\x9e\x32\xef\x61\xfe\x9f\x9e\x86\x9e\xce\xcf\x1f\xf8\x0c\x31\x60\xaf\x23\x7f\x46\x11\xb9\x85\x3e\x3d\x5e\xca\x5d\xdc\x3a\x60\x20\x3f\xb0\x4f\x4f\x47\x9b\xcf\x86\xaf\x49\x58\xe4\x66\xc2\x26\x35\x60\xb2\xa6\xb4\xa0\x6c\xaf\x25\x7d\x9a\x14\x7a\x2f\x5b\x24\x8a\x03\xe9\x39\x07\x1b\x41\xf2\x61\xc5\xf9\x7d\x2c\xa6\x88\x64\xa5\xd7\x46\xc3\xd4\xab\xdb\xd6\x03\x03\x37\xf7\x46\x40\x70\xa8\x3b\x55\xeb\xab\xbf\xe6\x03\xe1\x7a\x29\xc3\x90\xf9\x33\xa7\x42\x5a\x94\x59\xae\x20\x26\x8c\x94\xab\x24\xbc\x71\xb4\x22\x4d\xb8\x93\xd5\xdf\xfa\x84\xc2\xf7\x30\xee\xf5\x56\x17\xc2\xc8\xcf\x05\xc7\x4f\x75\x68\xcf\xe3\x44\x52\x5c\x8a\xbb\x69\x68\xfb\x9b\x78\x94\x82\x70\xe1\x00\xf0\xdc\xd4\x00\xd8\xbd\xbb\x6d\x92\x78\x10\xa7\xa1\x97\xb3\x95\x1e\x27\x61\x1d\x8e\xd1\x62\x94\x98\x30\x4f\x5b\xe4\xdc\x40\xfe\x10\x93\x66\x53\xb9\xb1\x02\x50\x89\x29\x0a\x28\x5c\xe2\xc1\x1e\x26\x1b\xf1\xc3\x81\x27\xc6\x15\x7d\x5b\x7c\x70\x5f\x76\x82\xac\x52\x6f\xb2\x97\xda\xda\x74\x86\xfc\xdc\x81\xb6\xcf\x0a\x04\x44\x4b\x76\x71\xb7\xa6\xbc\x99\xbe\x52\xcf\xa2\xc8\x74\x47\x39\x42\x4f\x07\x47\x5a\x27\x17\xb3\x75\x2a\xe1\x9b\xc1\x30\xce\x61\x7f\x83\xa6\x99\x40\x87\xa4\x94\x34\xa1\xd5\x46\x44\xe3\x85\x51\x61\xec\x3c\x75\x4e\x6f\x8e\x1a\x80\xe6\x8f\x0b\x5e\xbf\xf6\xbc\x92\x83\x1b\x44\x20\x20\xf2\xba\x6c\xd2\x7a\x54\x4d\xc4\x7a\x1e\xda\x77\x86\x8d\xec\xa6\x81\xe8\x96\x3d\xb2\x1c\x1b\x00\xd1\x1d\x97\xc7\x89\xef\x9c\x9b\x28\xc0\x2d\xc5\xa1\x6d\x72\xa0\x81\xb4\x15\xdc\x3b\xb7\x65\xb9\x69\x7b\x85\x74\x1f\x7a\x61\xde\x35\xe9\x76\xfb\xa6\xa5\x29\x8c\xcb\x13\x71\x7c\x92\x1b\x7f\x9d\x83\xe1\x8f\xc9\x47\xec\x12\x32\x43\xed\x29\x37\xc8\x6e\x5a\x01\x7d\xdf\xd2\x51\xf6\x99\xa7\x61\xad\x39\xc8\xd2\x62\xdc\xeb\x97\x42\x42\xc5\x3b\x13\x05\x05\x75\x53\xac\x2f\x48\x7f\xd7\x67\x6f\xab\x89\xd9\x46\xb8\xfb\x9d\x96\x90\xe8\x6e\xdd\x0d\xcf\x0f\xec\x2b\x43\xee\xf4\xa1\x47\xdb\xff\x17\xcf\x74\xfe\xf6\xa6\xab\xfe\x72\xdb\xa4\x26\xef\xc5\xc6\x8a\xa2\x2d\x95\xb1\x59\x30\xdd\x3c\x7e\x69\xb1\xc5\xd6\x81\xe7\xb9\x5e\x74\x9e\xf8\x46\x91\x91\xf8\x1e\x59\xe7\x29\x92\xa1\xb9\x3d\xc1\xcb\xf6\xa1\x6b\xd9\x37\x59\x1e\x17\xa0\x07\x2b\x63\xf0\x76\x40\xf4\xc1\xdb\x9b\x29\x69\x5f\xac\x77\xf7\x87\xeb\xc5\x19\x53\xe6\x44\xa0\x24\x98\xbd\x0a\x17\xf9\x1e\x59\x30\x7d\x14\x90\x66\xee\x3a\x48\x42\x76\xc1\x54\x4f\x56\x7b\xc5\x28\x97\x7d\x84\x99\x82\x2f\xf9\x47\x95\x4f\x35\xae\x52\xe9\x31\x0d\x97\xd5\x20\x4c\xf9\x49\xf6\x72\x95\xa0\x44\x1c\xf9\x7e\x6c\x16\xb7\xe3\xd1\xf1\x9c\xc5\x77\xa2\x24\xac\x4d\xa5\x96\x73\x4e\x16\xe9\x50\x31\xaf\xc0\x77\x23\x1e\x99\xe9\xf8\xb8\x2f\x0a\xf3\xb2\xd5\xda\x3b\xbf\x71\xad\x6a\xed\xdf\xb7\x31\xed\x96\x79\x68\x57\x1d\x8d\x85\x71\xae\x19\x3a\xb6\xa5\xd6\xd8\x73\x96\x5b\x1d\xd7\x96\xcd\xf2\xd8\xf4\x84\xb5\x86\x49\x7f\x2f\x20\x68\xd6\x3d\xe2\x04\x88\x5e\x68\xb1\xcd\x13\x1c\x04\x32\xe9\x86\x47\x3d\xb1\x00\xd0\xb9\x45\x74\xf2\x3f\xaa\x48\x16\x6e\x83\x74\x8e\xea\xf9\x68\xe9\x4a\xa8\x2e\x6d\x05\xfa\x8f\x69\xf2\x08\x87\xee\x91\x34\xe2\xc3\x88\x74\xf0\xfb\xb7\xaa\x87\x1d\x7f\xbe\x7c\xc8\xc3\x83\x44\x9e\x1f\x5d\x8c\x6d\x63\x12\x8a\x04\x5a\x11\x79\x3b\xe4\xfd\xb0\xd3\xef\xc0\xd7\x22\x8f\xfd\xff\x23\x18\xc6\xeb\xfa\x74\x87\xb6\xdc\xad\xe4\xdf\xb7\xff\xab\x7b\xb6\x53\x0d\xe5\x71\x0b\x8d\x9c\xf0\xbd\xc1\x40\x7c\xa4\x43\x5e\x08\xf7\xf1\xc4\x9c\x92\xf2\xdc\x9c\xec\xec\xaf\xbb\xad\xd9\xa4\xdd\x51\x8e\x25\x19\x61\xff\xad\x80\x2c\xf1\xde\x9f\x60\x07\x78\xf6\xe0\xab\xc4\xef\x5f\x30\x49\x6c\x96\x4d\xb1\xdd\xae\x89\xc8\xee\xdf\x9b\xf0\xf3\xaa\xa7\x8c\xfc\x3b\x1e\x15\xb2\x9b\x23\x54\xc6\x39\x8e\x4e\xa4\xfc\x87\xab\xa3\xd6\x39\xe3\x82\x95\x54\xb6\x24\x78\x54\x92\xff\xd4\x66\x5c\x78\x8b\x27\x2a\x96\x9d\xb5\xb7\x8e\x4d\xd1\x9a\x7a\x3a\x94\x4b\x5e\x2e\x66\x49\x9c\x3d\xe4\x2b\x1f\xb0\x1c\x54\x5b\x63\x32\x0e\x5a\xc3\xb7\x60\x1f\xbb\x8e\x87\xe1\x3c\xbc\xf7\xef\xf2\xe8\x84\xfa\x65\xb8\x34\xcd\xd9\xf0\x9f\x0d\x1e\x63\xc7\x92\xfc\x33\x76\x38\x88\x4d\x19\x96\x5b\x54\x34\xef\x05\xad\x2f\x7c\x41\xe2\x10\x51\x11\x07\x16\xe5\x2f\x88\xcb\x7f\xd2\x8e\x45\x2c\xff\x3f\x62\xed\xd2\x1b\x95\x97\x93\x39\x61\x85\x38\x36\x2e\x49\x49\x52\x0b\x0c\xf6\x9e\xf0\xc3\x77\x03\xb2\x46\x3c\x6a\x83\x42\xa9\xfe\x8d\xfd\xe2\xd9\x42\x21\x16\x2b\xfb\x1a\xd2\x24\x31\x88\xb4\x41\x2a\xd6\x96\x0f\x6d\xe1\x02\x61\xe0\x5d\x2c\x64\xb2\x6c\xa0\xd2\x89\x6c\xed\x66\xe5\xd5\x0d\x66\xc6\x75\xaa\x81\x58\x60\x4b\x47\xa7\xd0\x4b\x9f\x47\x6c\x83\x30\xf8\x0e\x89\x27\x0a\x60\x05\xcd\xd8\xf3\x5e\xdb\x37\xcb\x9c\x66\x0d\x32\x00\x80\x9a\x94\x52\x4c\xcd\xbc\x26\x41\x8d\x41\x98\x2f\x75\xb3\x95\x54\xea\x3c\x62\xe6\x46\x4d\x8c\x35\x6a\x33\x16\xc3\x24\x2e\x0b\xbb\xe1\xa3\x8c\x85\x96\xb2\xcb\xd7\x5c\x93\xed\x63\xea\x38\xf6\xad\x3a\x74\xaf\xaf\x78\x59\xa7\xf3\xed\x5e\xd4\xbb\x88\xa7\xf1\x88\xae\xbb\xa4\xb9\x58\x8a\x53\x2b\x74\xaa\x32\x67\xd4\x5f\x58\xa7\x40\x0a\x4a\x41\xa2\x83\x44\x46\xe0\x96\x12\xb8\x62\x5d\x42\x21\x17\x83\x38\x62\xc6\xd6\xb1\x51\xae\xde\x3a\x26\xb5\xad\x37\xa7\x9e\xcf\xfc\x7c\xbb\x9b\x75\xbb\x10\x0e\xf5\x70\x9c\xe3\xe4\xe5\x7a\x9c\xbc\xbb\xfa\x71\x1d\xd0\xaf\x5a\x21\x4c\x14\xf4\xb1\xb3\xa8\xa5\x04\x49\x71\xbf\x61\xe7\xaa\x1c\x07\x54\x62\xb3\x7a\x64\x5e\xa9\xd6\x0c\xd2\x78\x31\x8e\x50\xf8\x22\x34\x83\x20\x24\x54\xd3\xfd\x11\x8f\x7d\x28\xec\xf0\x99\x20\x47\xb1\x7b\x22\x16\xda\x2b\x53\x21\xd3\xdc\xdc\x01\x2b\x25\x91\x0a\xc8\x74\x1f\x5b\x8b\x1e\x70\xd6\xa2\x4f\xb3\xd0\xbc\x28\xb7\x3e\x46\xb1\x38\x16\x09\x67\x3e\x54\x4f\x6b\x2d\x4d\x79\x2e\xcd\x6b\xc1\x84\x90\x3d\x15\xe4\xfe\xc4\x8e\x0a\x90\x2f\xdf\xc2\x2c\x52\xe9\x32\x7b\x27\xd8\xca\x3e\xb0\xf3\x4e\x94\x7d\xed\xaa\x80\xf8\xe2\x7a\xe0\x05\x95\x45\xc3\x1b\x71\x69\x13\xd9\x6d\xbe\xbd\x90\x25\x45\x69\xf2\x96\xb7\xfc\xff\xc8\x4e\x62\x39\x26\x2c\xc6\x62\x18\x27\xa3\x5c\xb0\x35\xe0\x09\x1f\xb3\x61\x9d\x1c\x37\x6d\xff\x45\x36\x30\x65\x3c\x30\x2d\x86\x50\x56\xde\x44\xff\x22\x35\x12\x07\xd9\x72\x2c\x55\xf1\x43\x93\xde\xd3\x9a\x9c\x35\xe1\x03\x7b\x59\x62\x7d\xf2\xb4\xa2\xf5\x1e\x99\x29\xff\x13\x7b\x79\x28\x4b\xfc\x15\x46\x81\xfa\xd3\x7d\x12\x0b\x29\x35\x2b\xf5\x86\x40\x2d\xb4\xd3\xdc\x42\x3b\xdd\x50\xe6\x11\x6c\x04\xb2\x36\xac\x83\x57\xf1\xd2\xe5\x84\x8d\xc8\xb3\x3c\x4b\x43\x62\x6f\x8d\x2b\x82\x84\x8f\x03\x85\x0d\x2c\x98\x41\x16\xfa\xc0\x5d\x30\x09\x13\xf8\x04\x4e\x40\x0a\x53\x3e\x69\x37\x58\x4c\x85\x9b\x01\x03\xdc\x65\x38\x2a\xac\xde\x2f\x13\x5b\x3b\xad\xe7\x95\xca\xfa\xef\xa9\x82\x71\x85\x2d\xe7\xa5\x42\x8e\xda\xe1\x84\x39\xcd\x0f\x31\x34\x51\xe2\xbf\x4f\xdb\x9f\xe8\x73\x21\x65\x3f\x8a\xbd\x5b\x4e\x2a\xea\x1c\x1c\xb5\x1b\x23\x5e\xc8\x59\x6a\x12\x42\xdc\x53\x85\x3e\x9f\x60\x79\x10\x87\xa3\xd0\xe4\x8f\x9a\x69\xa7\x5d\xc5\xde\x2e\x79\x33\x13\xb2\x70\x24\x17\x67\x3f\x82\x4d\x73\xba\xb4\xb4\xe7\x60\x7b\x94\x94\xf1\xc0\x96\x4c\xe7\xe6\xdc\x0e\xec\x03\xc0\x0b\xac\x2b\x72\xdc\xcb\xda\x86\xa3\xc2\x58\x7d\x08\x2c\x67\xac\xaa\x2c\x82\xeb\xf8\x4d\xd1\x9a\x55\xf7\xcc\x96\x53\x43\x5e\xab\xd8\xf0\xd7\x01\xc5\xfb\xd9\xa8\x30\xfd\x2c\xe9\xca\xde\xa4\xc2\xe2\xbe\x73\x74\x96\x7a\xb4\xd9\x4a\xfa\x38\x69\xb0\xff\xc0\x3e\x7c\xa9\x00\x69\x70\x57\x2f\x15\x58\x82\xe0\x35\xa3\xa2\x4c\x1e\xd6\xf8\x63\x0c\x00\xa7\xec\xed\x2b\xb0\xb7\x82\x7a\xc5\xd6\x6a\x59\xeb\xd0\xae\x8d\xed\xe3\xfa\xcd\x4d\x54\x88\xb1\x6b\x5f\x01\xea\x4a\x0d\x3b\xeb\xd7\x81\xf5\x78\xd6\x31\x5c\x87\x61\x32\x30\x79\xd6\x62\x5b\x38\xd1\x6a\x94\x93\xc0\x03\x5d\x0b\x13\xe5\x16\x6d\x26\xb0\x1b\xaa\x0f\x6b\x24\x73\x71\xaa\x72\xb1\x7f\xd7\x81\x76\x9c\x2e\x26\x23\x93\x46\x3a\x76\x34\x69\xac\xbf\x44\xd3\x85\x27\x1c\x06\x24\xea\xc7\xbd\x30\xdd\xd6\x22\x9d\x5d\xcf\x86\x82\xeb\xa0\x83\xb5\xfb\x05\x65\x87\x30\x8c\xb0\xf1\x1f\xaf\xbc\x27\x7b\xd6\x9f\xf1\xed\x39\xe8\x2d\xb8\xa5\xed\x1b\x5f\x77\x8c\x9a\x86\x1a\x67\x92\x2d\x2c\xac\xba\x25\xa0\x19\x8b\xe2\x5a\x22\x61\x21\xc6\xdb\x88\x82\x61\xad\x8f\x46\xfd\xff\x6d\x57\x41\xa5\x81\x4f\xeb\x04\x5b\xd6\xe4\x0e\xaf\x04\xff\x73\x1d\x2f\xe9\x76\xd1\xba\x7f\x4b\xc6\xc1\x94\x74\x74\x76\x10\x86\x48\xcb\x96\x81\xe5\x0a\xa5\x6d\x92\xd2\x2b\xca\x30\x77\x13\x59\xbf\xcd\x7e\x83\x4a\x57\x78\x65\xf4\x78\x30\xcc\xb3\xa1\xc9\x93\x55\x9b\xea\x81\x29\xb7\x75\x4c\xf0\xc7\x5b\x18\x66\xca\xb1\xf4\x31\x89\x2c\x0e\x2a\x62\x42\xdf\x99\xbe\x34\x4a\xed\x9e\xcd\xd4\xa5\x93\x12\x20\x3b\xad\xe4\x79\xf2\x12\x27\xbd\xce\x5e\x9a\x49\x65\x4b\xd7\xa0\xfa\xa1\x60\x45\xfc\xd3\xca\x33\x6c\xd6\x02\x6f\x9a\x32\x08\xd3\x78\x38\x4a\xc2\xd2\x14\xd2\x6e\xc0\x9b\xf9\x2b\xe8\xde\xc8\xc9\xd4\xc3\x3a\xf8\x9c\x35\xe8\x4b\xc2\x18\x25\x44\x15\xce\xf2\xb0\xd9\xf5\x89\x5d\x60\x10\x46\x33\x7e\x7c\xca\x42\xa5\x6a\x98\xad\x5f\x39\xe0\x00\xad\x0d\x6d\x84\x30\x49\x4c\x4f\x5f\x0a\x5a\x6e\x60\x66\xca\xf1\x78\xba\xf5\x6e\xdd\xab\xa4\xad\x88\x60\xe5\x2c\xab\xe8\x9f\xa5\x12\x7f\x38\xc8\x46\x69\x59\xec\xf0\x50\xad\xc3\x76\x41\x50\xdd\x40\xbb\x77\xe1\xb9\xdd\xb0\xe3\x07\x4b\xc8\xdb\xd6\x05\x53\xfe\xdd\xae\x5b\xf2\x01\x26\xf2\x9c\xa1\xaa\xee\x62\x1e\xf6\xe2\x24\x2e\x81\x80\x56\xb8\x24\x3f\xaf\x7a\x2a\x80\x77\x71\x7f\x42\x4a\x29\x8a\x0b\x6b\x53\x6a\xaf\x44\xf5\x93\x7c\xd7\xfa\xfb\x24\x59\xf5\x2e\xb5\x54\x52\xd5\xa0\x40\x74\xfe\xbd\x8a\x34\xf1\xbe\x47\x0e\x12\x2b\x7d\x63\xbe\x55\x67\x28\x1e\xfe\x24\xeb\x3d\xb6\x4f\xf4\x2e\xb0\x8a\xde\x70\x09\x6e\x6f\x64\xf2\x3c\x4e\x92\x50\xd6\x7e\xa7\xe6\x32\x3f\xaf\xc7\x53\x84\xef\xbd\xf3\xed\xe1\x7f\xf2\x1f\xe1\xef\x1d\xa9\xc8\x11\xbe\x9b\xdb\x54\xbd\x38\x57\xe1\x62\x44\x03\xb7\xc9\x78\xec\x76\x45\x9d\xbe\xf0\x5b\x90\x20\x77\xa9\x9f\x9b\x07\xe7\x9a\x2c\xad\x96\xc2\xf4\xa5\x78\xc6\xe3\x93\xaf\xd3\xe2\x70\x9d\x96\xa5\x6d\x9d\xcd\xf1\xd8\x8b\x2f\xb6\xbb\x71\x11\x0e\x87\x99\x18\xba\x3b\x17\x88\x35\x6c\x4e\xfa\x10\x37\xaf\x67\x7b\x0e\xb6\x87\xc9\x08\x40\x63\x04\xa6\x20\x7c\xe0\x2a\x2f\x93\xe9\xf8\x6b\x53\x9f\xfd\x4a\x7b\x29\xcd\x56\xd2\x16\xe9\x95\xfc\x30\xf0\xe5\xa8\x1f\xba\x74\x73\x21\xcc\x8d\x60\x30\x90\x2a\x8b\xcf\x84\x9c\x50\x7d\x34\xcf\x56\x1e\xf1\x59\xd7\xc7\x58\xac\x50\x91\x68\x59\xf2\x08\x52\x91\x7b\x28\x7d\xa8\x13\xb2\xfd\x32\x29\xfb\xd9\x35\xc5\xc6\x0e\x7f\xf2\x54\xc7\x17\x7f\x37\x26\x64\x34\xed\x16\x8d\x3d\x7f\x87\xc5\xec\x68\xf7\x85\x84\x0f\x6e\xb9\xcb\x8f\xfa\x71\x1e\x02\xf2\xe5\x04\x3a\x99\x27\xf8\x18\xe1\x5c\xd3\x55\x6b\x90\x27\x44\x9a\x80\xf5\x82\x7c\x3d\xce\xca\xc6\x0e\x4c\xbe\xbd\xe5\xf4\x28\xff\x12\x55\x05\xd5\xaa\xb0\xd7\x81\x41\x20\x48\x17\xdc\x86\xb6\xb2\xe4\x0c\x21\xa5\xea\xc6\x6c\x2e\xed\x1f\xda\xf5\x42\xdb\xbc\x6c\xed\xa7\x96\x81\x01\x45\x65\x1f\xaa\x80\x72\xec\x75\x68\xac\x8b\xbc\xb3\x1b\x59\x67\xaf\xa8\xf5\x86\x5c\xe2\x40\x7b\x38\x1a\x0c\xed\x4a\x2b\x64\x5a\x3c\x56\x65\xd6\x7a\xd8\xd8\x30\x82\x1d\x01\x82\x82\x7b\x01\xc9\xe0\x40\x70\x03\xc7\x17\xec\x1a\x27\xc7\x9f\x30\x50\xe1\xa2\xa5\x5d\x44\x66\xbc\x93\x5f\x50\x62\xd2\x16\xc9\x94\xff\x4c\x9e\x99\x5a\x36\xb8\xe0\xc5\x7a\xe7\xbb\xae\xbd\x94\xaf\x38\xfb\x7d\x3f\x60\x5a\x5a\x98\xf6\x8c\x35\x23\x43\xe6\x74\xb3\xf2\x08\x36\xe1\x8a\x29\x55\xc9\x7e\x05\x0a\x92\xe7\xf1\x8a\xc4\x09\x20\xa0\x97\x40\x77\xfe\x3f\x37\xf4\x6c\x0f\xb4\x57\xe2\xb4\x9b\xad\xc8\x8e\xa1\xec\x74\xfb\x3b\x72\x42\x0d\xf7\xdc\x44\xf9\x28\x2e\x4d\x77\xd6\x03\x69\xdf\x21\x11\x57\xd4\x61\x9d\x8f\x98\xd7\xc0\xac\x97\x21\x05\x59\x14\x45\x58\x14\xb6\x5b\x97\xa5\xc5\x2c\x71\x78\x3e\xaa\xc8\x9b\xa8\xd5\xf1\x98\x63\x11\xce\x57\x07\x2c\xb2\xa3\x1f\x2d\x58\x3e\xac\x2f\x5c\x75\x3c\xb6\x6b\x66\xfc\x28\xa9\xe5\x96\xb3\xdc\x52\xfc\xb8\xf2\x1d\x57\x60\x95\x35\x98\xa2\x56\xe3\xc7\xa4\x82\x18\xf5\xe3\xa4\x9b\x9b\xd4\x2e\x1b\x2a\x52\x57\x7f\x0e\x91\x1d\x6e\x5c\x62\x0c\xac\x1a\x08\x59\xe0\x56\xad\x45\x50\xfb\x58\xf1\x2e\xff\x84\xa2\x92\x53\xb8\x3f\x04\xf3\xa7\xc0\xc6\x51\x4e\xe1\x64\xfb\x69\xaf\x83\xd8\x7e\xa2\x62\xc7\x37\x47\x75\x20\x97\xcf\xda\x5c\x57\x71\xbc\xf5\x55\x23\xe6\x12\xf2\x31\x56\x22\xf8\x01\xe0\x7d\xb5\x3a\x8e\x37\x11\x46\x16\x7b\xea\x82\xed\xd3\x64\x98\xc6\xdc\xc1\x85\xb8\xd7\x33\x45\xd9\x9a\x70\xcd\xb2\x89\xa5\xc6\x8c\x9f\xa6\x1c\x7b\x30\x34\x69\x61\xdf\xfa\xac\xbd\x04\xd4\xd4\xce\x22\x93\xc5\x97\x5f\x26\x16\xa0\x94\x68\xe4\x3f\xa6\x76\xc8\xf9\xf9\x76\x61\x6c\xda\x81\xf7\x8a\x51\x73\x96\xb1\xbd\x67\xa9\x9e\xbc\x62\xba\xa9\x29\xba\xe1\xea\xf6\x3a\x55\xc2\x22\x7e\x9a\xaa\x4e\x58\x21\xb0\x35\xb5\x50\xd0\x77\xb6\x1a\xfb\x75\x71\xbd\x6c\x5f\x00\xae\xe8\xa7\x13\x41\x5e\x18\x2d\x3d\x63\x67\x20\x62\xe1\x63\x34\x34\xb6\x8e\xed\x13\x51\x14\xaf\x0d\x65\x84\x06\x80\x82\x2d\x12\xba\x53\x76\x04\xe1\x1d\x5d\xa9\x88\x96\x7a\x59\x7c\xa4\xe4\xcf\x58\xb2\xfe\x12\x9e\x9d\xd6\xd0\xec\xad\xab\x86\x13\x9b\x74\xa0\x54\x8d\x38\xe6\x12\x65\x9a\x37\x48\xbe\xfb\x32\xd1\x37\x44\xeb\xc7\xe9\xfe\x3a\xa9\x8a\xad\x63\x3c\x6c\xc4\x6d\x37\x79\x5a\x1e\x23\x32\x74\x6e\x0a\x93\x24\x24\x10\x7b\x8d\xa6\xc7\xb5\xa9\x90\x64\xf7\x1e\x5b\x4e\x7c\xb9\xe5\xcb\xfb\x6b\xbc\x3e\xae\xb1\xe8\x40\x96\x18\x4b\xb5\xb6\x7f\x2c\x8e\x45\x01\xf5\x16\x59\x0b\x2f\x1e\x0c\x93\x58\x48\x6b\x5a\x73\xb6\x6f\x49\xb5\x24\x7d\x3a\xc6\x54\x37\xc4\xc5\x3b\x3d\xb0\x1f\x76\x4e\x3a\x5e\xeb\xe7\x87\x81\x72\x0f\x11\xaf\x96\xb0\xed\xcb\xa0\xf4\x5c\xab\xf4\x57\x11\x49\xa3\x66\x0d\x4c\x82\x13\xc9\x7a\x5e\x9b\x63\xb7\xa6\xe2\xff\x3a\x2b\x33\x2f\x0f\x8d\xd4\xbd\xf0\x93\x17\xd8\x3a\xeb\x02\x85\x34\xbf\xf4\x4b\xff\xb1\x8d\x7c\x1c\xf9\x72\xb7\x23\x62\xba\xaa\xf5\xa2\x15\x86\xf0\xf4\x9d\x35\x36\x24\x11\x46\x1e\x8a\x45\xf7\xa6\x8a\xb0\x16\x41\x99\xc4\xbd\x58\x48\x12\xf3\xde\xb8\xd1\xa9\x85\xbd\x32\xd1\x7f\x37\xdd\xe2\x61\x7b\xb1\xe8\x55\x1f\x93\x54\xce\x65\xaa\x8e\x9e\x72\xc5\x3e\x12\xcc\x9c\x4b\x24\x29\xf3\x7f\x06\xde\xae\xfd\xae\x5d\x2e\x55\x5d\x86\xdc\x6d\x8f\x61\xa4\xcb\x09\x62\x03\xa5\xf0\x35\x48\xe9\x2f\x8c\x72\x13\x8e\xa2\x5c\xc4\x9a\xa4\x00\x10\x70\xcb\x6c\x73\x48\x50\xdf\xf9\xaa\xa2\xfc\x91\x27\xa1\xae\x26\xc7\x84\x5e\x33\x2f\x97\xc6\xaa\xfc\x39\xb7\xe9\x57\xed\xf6\x2d\xc7\x64\xa0\x35\x0c\xa3\xa5\xb0\x27\x21\x34\x26\xd7\x91\x8a\x2c\x2b\x8e\x4c\x95\x04\xf6\xef\x6a\x83\x7d\xe4\xe5\x96\x40\x90\x55\xf9\xb3\xcd\x9b\xfb\xbe\xe7\x0e\xd8\x66\x5c\x12\x22\x3b\xc0\x43\xfd\x76\xe0\x75\x1d\xbe\x4d\x0d\x82\x30\x2d\xe3\x6f\x8e\xe4\xd5\x2a\xaa\x94\x40\xdf\xeb\xcc\x9d\xcf\x8d\x2d\xc5\xed\x39\x28\x5b\xed\x10\x23\x5c\x84\x0f\xed\x6b\x53\xf0\xaf\xd7\xe5\x5a\xc8\xd2\x6e\x01\xee\xb1\x98\x62\x60\x31\x44\xd1\xee\xae\xfd\x94\xf0\x74\xec\x1c\x53\x9b\xef\xfa\x51\x6b\x08\x5e\xdf\x07\x12\x45\x01\xb4\xa9\x1d\x3e\xd1\xbc\x40\x67\x40\x86\x78\xdd\x0e\x1b\x4c\xf7\x2d\x1d\x82\x06\x5d\x98\xaa\xed\xd4\x8f\xab\x80\xe3\xee\x0c\x51\x3c\x65\xc5\x50\x77\x06\x1f\x4d\xdd\x23\x7c\x43\xcf\xc0\x41\x0d\x7b\xc9\xad\x6a\x52\x76\xd7\xf1\x36\xb6\x74\x7c\x0b\x36\x0a\xf3\x34\x5e\x0e\x93\xd9\xfa\x56\xd1\xb9\xbd\x54\x11\x6c\xfa\x3c\xc1\xa6\xcf\x93\xf1\xee\x25\xf2\x92\x0f\x87\x43\x13\x26\x48\x60\x75\x3f\xfd\xfd\xca\xf3\x65\x40\x5b\xc6\x9e\xb2\x65\xdc\x54\x23\x0f\x57\x16\x47\x58\xa8\xa5\xc2\x49\x82\xf0\x17\x09\x09\x55\xa7\x12\x71\xd7\xe4\x76\xfb\xb6\xb7\x8a\x2d\xf6\xea\x84\xaa\x26\xc9\x57\xbc\x3a\x35\x1c\x9f\xb7\x4c\x66\x0b\x10\x40\x13\x07\xef\xf7\x0c\x96\x1d\x39\x99\x9a\xb2\x16\x28\x6d\x8a\x61\x96\x3a\x96\x2f\x56\x58\x31\x4e\x97\x13\x07\x2c\x5c\x4c\x8c\xf1\x30\x30\x2c\x4b\xdb\xc6\x7e\x89\xda\x36\x65\xa0\x32\x37\xd7\x2e\xac\x0e\xfd\x8a\x09\x73\x68\xee\x61\xbc\xfc\x2b\x6a\x37\xaf\x91\x24\xdb\x59\xaf\x07\x1a\xe6\xa9\xe9\xc5\xd8\x8b\x04\x66\x57\x11\x9b\xfb\x0d\x2a\x51\xe5\x66\x10\xc6\xe9\x36\x3b\x32\xa4\xdd\x8d\x91\xe5\x9c\xed\xe6\x49\x95\xd2\x09\xee\x1c\x63\x41\xf6\xf7\x78\xa9\x49\x2c\xf2\xd5\xbe\x0b\x54\x1d\xae\xd9\xa5\xc6\x55\x46\xbc\x78\x44\x13\x73\x2d\x35\x2b\x33\x24\x54\x05\x0d\x11\xcc\xc4\xad\xb6\x09\x89\xe0\xff\x63\x02\x0d\x98\x30\x07\x18\xbc\xe5\x3c\x97\xd6\xa9\xe0\xbd\xce\x72\x38\x26\x5c\x4a\x4d\x51\xb4\x08\x67\x6a\xe7\xb4\x62\x4e\x3f\x45\x8d\xc4\xe5\xb8\x54\xf7\x27\x6c\xb7\xeb\xc4\x12\x5e\x27\x67\x87\x7a\x10\x96\xf9\x08\xb7\xed\xec\x1b\x1f\xd8\xbf\x66\x35\x18\x34\xef\x3e\xa0\x05\x6b\x68\xf2\x38\xeb\xee\xb4\xcf\x1b\x68\x53\x71\xae\xd1\x90\xc4\x8e\x5c\xb5\x9b\xf2\xf0\x15\xb1\x14\x42\x28\x7f\x0d\x61\x06\xaa\x0e\xe7\x29\x76\xf8\xb7\xac\x22\x7e\x81\x39\x6a\x6f\x34\x8b\x7d\x67\x83\x38\x55\x4f\x5a\xac\x32\x20\xd3\xcb\x71\x43\x47\x70\x8f\xf5\x41\x73\xcd\x74\xe0\x81\xd0\x5c\xd6\x56\xb8\x7f\x66\xd7\xab\xbf\x39\x3d\xc6\x31\x89\x8a\x78\x21\x4e\x62\xef\x51\xfb\x09\x5c\x15\xb7\x46\x89\xc0\x89\xd8\xd0\x07\x5e\x9d\xe4\xbb\xbe\xea\x92\xd5\xa3\x02\x8c\x5d\x94\x2a\x30\xdf\xec\xb6\xf1\x73\x9f\xed\x78\x62\xc9\x16\xc0\x0d\xb0\x64\x5f\xa0\xe1\x82\x80\xab\x9e\xdf\xde\x08\xfb\x58\x40\xac\xe6\x63\x13\xc1\xf6\xe2\x30\x41\xca\x21\x72\x0f\x01\x59\x71\x4f\x48\x9b\x0d\x33\x71\xb6\xe6\x92\x9b\x13\x8f\x9c\x9b\xdb\x18\x4f\xad\x37\x87\x76\x3d\xdb\xee\x9a\x65\x93\x64\x4e\x65\x07\x0f\xfb\x3c\x01\xb1\xce\x37\xb1\x0c\x16\x40\xe7\xf0\xf0\x77\xb1\x4b\xd3\xb0\xb1\x61\xdd\xe9\x9a\x41\x56\x87\x22\x71\x34\xe3\x87\xc2\xc7\x84\x8d\xbd\xc8\x9d\xbd\x23\xc1\x63\xa4\x37\x5b\x98\xed\x3e\x06\x81\x40\x25\x36\xea\x16\x08\x68\x92\x07\xd8\x0e\x9e\xdb\x55\x1d\xb2\xfd\x22\x21\x5e\xdf\x9c\x1a\xa4\xf3\xf3\x56\xea\xd8\xd3\x65\x90\xfe\xdc\x26\x41\xab\xdb\x54\x8e\x5a\x32\x43\x58\x93\x38\xc9\x6a\x07\x50\xc1\x10\x45\x7a\x7f\xaa\xa2\xbd\xff\x23\x0a\xd3\xfb\xf1\xa0\x30\xc9\xa2\x85\x67\xb9\x76\xc5\xde\x79\x8f\x31\xdd\xef\xca\xcd\xec\x0c\x75\x76\x02\x8d\xe9\xa3\x6a\xd1\xab\x96\xfc\x9b\x95\x13\xcf\x37\x44\xb5\xed\x30\x4d\xb3\x91\xef\x43\x89\x2f\xe4\x84\x81\x36\x17\x40\x7a\xa3\x24\xcc\x93\x55\x5b\x00\x41\x9b\xe8\xa4\x7d\x2c\xb8\xad\x4b\x01\xdd\xe3\x25\xbb\x15\xcb\x1f\x05\xbe\x18\x31\xf8\x7c\x68\xa7\xbe\x7e\xdc\xbe\x63\xff\x67\xae\x3b\x91\xe5\x2d\xa6\x7a\x4f\xf8\x7b\xfb\x20\xc0\x4a\x42\x0d\x4c\x5a\xee\xa4\xa1\x7e\xac\x22\xd0\xcd\xb7\x49\x49\xe8\x7e\xe0\x0b\x18\x20\x34\x39\x96\x95\xb3\x5f\x14\xa7\x6e\x57\xfc\xab\x73\x41\xc7\xc4\xf0\xba\x53\x27\x27\x6c\x30\x8b\xb2\x78\xb2\x1e\x03\x28\xb6\x5e\x27\x34\xc1\x16\x34\x5a\x71\x83\x8f\x75\xbc\x5d\xda\xbf\x7f\xd2\xbe\x5a\x25\xa4\x50\x1b\x70\x27\x24\x11\x51\xc2\xfa\x8b\xca\x47\xb9\xe8\x42\x63\x05\xf9\x75\x7b\xc9\x08\x00\x00\x0d\x53\x44\x85\x5d\x1c\x5c\x50\xed\x7d\x9b\xce\x61\x9d\x47\x20\x75\x01\x95\x0a\x11\x90\xb0\xc8\x2e\x15\x93\xa0\xb2\xeb\x77\x1b\x23\x92\x6e\x98\x97\x0b\x99\x1a\xae\xe1\x29\x5f\x65\x7a\xc4\xd5\x06\xbc\xce\x3e\xa8\x59\x0a\xec\xd2\x23\xd4\xec\xd3\x51\x24\x5a\x13\x51\xcc\xaa\x1a\x60\xc5\xd3\x86\x7f\xcb\x71\x71\xa7\x03\xd9\xbd\xf3\x2e\xb8\x9c\xf1\xd0\x84\x13\x15\x6d\xf7\xd0\x92\xd4\x02\x87\x36\x7e\x8b\x30\xcd\xc3\xa5\x91\x14\x54\xa4\xe9\xcc\xa8\xf5\x1f\x37\xd6\x67\x93\xac\x28\xb7\x91\x2c\xe3\x91\x8a\x4a\x4f\xff\xb8\xa2\x35\xf4\x44\x40\xc0\x97\x37\x08\x68\xf0\x9e\xdb\x4d\x5e\x1a\x0d\x86\xa6\xbb\xcd\x2f\x3a\xc7\xf1\x7c\x30\xe5\x1f\xe9\xf8\x25\x0c\x5d\x5b\x92\x09\xd1\x4e\xe9\x34\x97\x7c\x7e\xbe\x5d\x8e\xa2\x25\x9d\xe2\xb8\x19\x29\xba\xc9\x09\x95\xfa\xc2\x74\x75\xa5\x6f\x72\xde\xf9\xae\xd3\xce\x77\xbd\xfa\xac\xc3\xa7\xfe\x7f\xdd\x52\x9b\x1a\xae\xcb\x71\x92\xe8\xfe\x2a\x72\x3b\x78\xd6\xaa\xbd\x43\xba\x16\x79\xb8\xb8\x18\x47\xdb\xbd\xa6\x31\xba\x4d\x3a\xf6\x49\x48\xe5\x37\x2b\xdf\x91\xfd\x6d\x06\x6f\x49\x1e\x83\x28\xf8\x74\xc3\x8b\x6c\x2f\xc7\x5d\x03\x8a\x96\xc8\x8f\x04\x2d\xb2\x2e\x6d\xc0\x64\xc0\x80\x5d\xec\x2b\x11\xc0\x83\x94\x2d\xc7\x0d\xc4\xe0\x3d\x16\x96\x33\xe3\xeb\xd3\x82\x47\x50\xa5\x08\x5f\x26\xfa\x19\xd5\x19\x8b\x3a\xc9\x09\xb5\xd2\xa7\x3c\x2d\x32\x23\x9b\x36\xda\x05\x19\x55\xf8\x2b\x0e\xed\xe0\x1e\x8d\x64\x0f\x28\x77\xbd\x1e\x78\x19\xe8\x72\x35\x81\x72\xb0\x66\x01\x47\x88\x99\x8d\xc0\x1c\x8d\xd4\x75\x5b\x61\xf1\x02\xf8\x3a\x76\xc2\x64\xf5\x5b\xa2\x20\xa0\xfd\x06\xd2\xfb\xbd\xd0\xd4\x8f\xeb\x9b\x04\x8d\x3e\x47\xae\x92\x56\x82\x52\xad\xa6\x95\x5b\xba\x79\x36\xf4\x5a\x12\x58\xda\x61\x4f\x25\xc7\x44\x1a\x8c\xa3\x7e\x9c\x67\xf6\x25\x61\xc9\xf8\x01\x9b\x1e\xff\xa0\xc9\x58\xef\x40\x3b\x4b\xe2\x65\xf1\xe3\x69\x6c\xd4\x6c\xbe\xa4\xfd\xbb\xf6\x5b\x82\x87\x04\x0c\xa2\xd1\x47\xfa\xdf\xbf\x45\x52\x32\xa2\xa1\x5e\xcc\xc2\xc0\xd1\x2e\x9c\x1b\x97\x6c\x0d\x61\xc3\x0a\x93\x6f\x5c\xa2\x22\x7f\xd4\x37\x65\x19\x52\x71\xf0\x02\x59\xcf\x5e\xa0\x61\x12\x85\x45\xa9\x68\x48\xc5\xdc\x33\x00\xbf\x49\x87\x24\x31\xd6\x9c\x41\x9a\x03\xca\x31\x23\x75\xe7\xf7\x89\x97\xf1\x3e\x37\x92\x4f\x50\x72\x97\x98\xa2\xc8\xa4\x43\xe9\x82\xbf\xfa\xad\x6b\xf0\x47\xad\x47\xd3\x7d\xda\xee\xa8\xa8\xcd\xc2\x0e\xc7\x8e\xe2\x57\x9e\xea\x78\x95\x66\x99\xae\xe8\xa7\x5e\x0b\x1c\x57\xe9\x8b\x4f\x8e\x3d\xe1\xff\xd3\x9f\xb5\x38\x5d\xec\xe6\x8f\x74\x7c\xb5\xe6\xef\xfd\x92\xed\x9e\xd8\x27\xff\xcb\x7f\x63\x6c\x1b\x0a\xaa\xcc\xe4\x91\xeb\x5f\xfd\xa5\x0e\xc1\x04\x9e\x91\xda\xae\x1a\xd5\xb7\xbe\xf6\xbc\x57\xc9\xf5\xba\xc7\xbf\x60\xfb\xa3\x42\x45\xaf\x08\x2c\x29\x66\x31\x6a\x15\xdc\x52\xd2\xf6\xb7\x3f\x37\x7e\xdc\xb3\xfe\xbc\x78\x25\xee\xf3\x26\x9e\x93\x9c\x54\x1e\x9d\x61\xd2\xc5\x2c\x8f\x8c\x23\x3a\x63\xaa\x1e\xa5\x2a\xf5\x51\x6a\x2a\x59\x6e\x11\x5a\x4a\x61\x62\x66\x1a\x9c\xc8\xb1\xc2\x7c\x97\xfb\x03\xeb\x14\x50\x27\x66\x79\xf5\x93\x25\xd5\xa7\xcd\x18\xf6\xb5\xe3\x34\x95\x05\x09\x97\xf3\x5e\x45\x9a\x7b\xef\x05\xde\x33\x64\x30\x8c\x13\x55\x47\x45\xc4\xfd\x1d\xe6\xe2\x7d\xa7\x7a\xd8\x5d\xc5\x97\xff\x03\x1b\xf7\x38\x53\x1a\x97\x71\xdc\xb1\xa2\x73\x2a\xab\x6b\x03\x17\x2c\xfe\x13\xc9\xcf\x86\x8d\x88\x50\xef\x39\x06\x14\x0b\x8a\x65\x10\x46\x10\x31\x57\x1b\x42\x61\xf2\x6f\x85\xb4\xb7\xf0\x9b\x03\x4a\xcf\x8e\x59\xc4\x39\x5b\x90\x88\xcb\x13\x36\x77\xfc\xf8\x25\x59\xa7\x30\xca\xb7\x77\x26\x83\x00\xcf\x55\xb9\x58\xb5\x7e\x45\x2f\xb8\x65\x5d\xc6\x91\xea\x6c\xb1\x50\x76\xb4\x39\x76\x76\x5a\x5f\xfd\x35\xe9\x7a\x3d\x32\x26\x52\xfa\x0d\x14\xd9\x9d\x46\x5b\x3d\xe2\xd0\x53\x7f\xbb\x62\x65\xc9\x7a\xc0\xab\x0a\x3d\x89\xed\xde\x0b\x5a\xdf\xf8\xba\xd4\xdf\x5a\x1d\xb4\x52\x90\x33\xdc\x47\xa3\xcd\x21\xd6\xf6\xef\xd2\x86\xf7\x6b\x24\x75\x03\xbc\x97\x68\xa9\xe1\x46\x65\x29\x94\x93\x26\x6d\xe2\xa1\xe9\x9a\xa2\xcc\x63\xe1\xcd\x60\xec\x5d\x27\x4d\xa4\xeb\xd4\xa6\x37\x2f\x47\xc6\x74\x91\xfd\xaa\x65\xea\x1a\xd8\x9e\x72\x32\x05\x27\xf9\x4a\x3b\x0b\xcb\xc2\xb6\xd1\xb1\xde\x8b\xec\x8b\x9c\x34\x89\x58\x2e\x64\x49\x97\x1c\x6e\xde\x21\x36\xf2\x3b\x54\x29\x09\xbb\xe1\xc0\xc0\x29\x11\xcf\xec\x14\x7b\x40\x9d\x9a\xda\x2c\xf6\xef\x6a\x0f\x73\xc8\xa9\xb7\x48\x57\xef\x37\xd8\x2d\xf3\x37\x1a\xc1\xeb\x71\x11\xf6\x72\xa3\xfa\xb2\xea\xf3\xd6\x22\x03\x38\x8d\x09\xfb\xa1\x0a\xd9\xee\x71\x48\x18\xaa\xf7\x5e\xa4\x25\xed\xbf\x3b\x3e\xb5\xc1\xee\xdb\xbf\xaf\x9d\x5b\x5b\xf5\x43\xbb\x64\xdc\xbd\x83\x8f\xcb\xc9\xd4\xb6\x70\x68\xd7\xb3\xb0\x8b\x6d\xd0\xf0\x77\x22\x80\x7e\xd6\xdd\x03\xe9\x5e\x4b\xc1\xd9\x63\xf5\xc3\xc3\x10\xdb\x8e\xfa\x11\x12\xd9\x1d\x50\x33\x50\x50\xda\x8c\x37\xf4\x80\x93\x2f\x56\x8e\xbb\xc1\xd6\xcf\x79\x6b\xa1\x43\x0e\xc4\x66\xe7\x23\x76\x9e\x0d\x32\x6a\x5a\xc7\x7c\x44\x9d\x78\x9b\xad\xf7\xe2\x3b\xdf\xc2\xb4\x91\xf9\x8f\xe1\x81\x08\x71\xcb\xd8\xe3\x20\x9f\xcb\x2d\xbf\x06\xe3\xec\x0e\x49\x3f\xbd\xc6\x9f\xb8\xc0\x29\x2a\xc8\xf2\xfa\x1c\x3c\xd7\x65\x7d\x93\x1e\xd3\xee\xdd\xd2\xa5\xfc\xf9\x29\x87\x93\x7d\xcf\x1d\x68\x2f\x5a\xad\x4f\xd7\x21\xbc\xc2\x48\xe7\x69\x17\xe5\xe7\x0e\xb4\x07\x61\x1e\x96\xfd\x2c\x9d\xb1\xd3\x04\x6b\xc3\xbb\xc4\xeb\xb8\x4f\xb6\x35\x37\x1b\xaa\x2d\x07\xda\x51\x3f\x8f\x8b\x52\x27\x65\x13\x9d\xe4\x29\xaa\x35\x46\x4b\xb1\x2d\x61\x12\x84\x08\x14\x19\x39\x6e\x72\xae\xcc\xd5\xf0\x52\x26\x83\x73\x7a\xf2\x3c\x85\x73\x8d\x29\x5e\x91\x5a\x39\x93\xfa\x33\x88\xe3\x21\x34\x2e\xc7\x8c\x78\x88\x42\x9b\x40\xd6\x5f\xc8\xce\x21\x72\xec\xe8\x6e\x2b\xfd\x55\xab\x5f\x8a\x54\x5d\xa4\x1f\x50\x6a\xbe\x01\xf4\x28\xe2\x8f\x6d\xa0\xc5\xaa\xf9\xb8\x0f\xa6\x24\xe7\xd8\x49\x0e\x5a\x15\x39\xc7\x5e\x04\x90\x48\xf5\x34\x66\xbc\x5d\xd6\x75\x72\xfe\x93\xd4\xdf\x55\xf4\x7c\x81\xe5\x58\x45\xa6\x07\xe7\x49\x87\xe5\xca\x54\x68\xb9\x77\xbe\xdd\x8f\x7b\xfd\x95\x70\xd5\xe6\x0d\xce\xa1\x73\xf7\x1e\xd7\xc6\xf4\x5d\x99\x3b\x81\x27\xd9\x14\x43\x13\x59\x86\x8a\xd2\xa3\x1d\xc8\xd1\x15\xce\x0e\x37\xf9\x2c\xe5\x59\xb4\xd4\x22\xf6\xff\xc7\x95\x4f\x47\x3f\x6e\x94\x36\x2b\x46\x83\x89\xb7\xf7\x9b\x01\x39\x87\xfc\x26\xf9\xb5\x4e\x10\xe2\xbd\x54\x3d\xf8\xc8\x2a\xed\xd0\xd4\x08\x46\xfb\x00\x79\x85\x28\x1b\xdb\xf7\xae\x2a\xc7\x1c\x5c\x47\xc9\xa8\x6b\xba\x16\xf5\x85\x97\x2c\xc4\x07\x24\x96\x67\xd9\x43\x1d\x8b\x9a\x24\xe1\x81\x9f\xfe\xe7\x2b\x0f\x5b\x39\xdf\xe4\x78\xd3\x4b\xc3\x15\x57\x8e\xc6\x20\xbb\x5f\xf9\xa9\x04\x8b\x0e\x94\xda\x8f\x34\xf9\x21\xe6\x75\xdc\xfd\xad\xe5\x4c\xe4\x6a\x31\x5c\xee\x13\x72\xf1\x3e\x75\x0e\x85\xaf\xbf\xe7\xa0\x14\x75\x7e\x42\xee\x19\x3f\x99\x7a\x21\x7b\x0e\xb6\xcb\x7c\x94\x2e\xb1\xbd\xd0\xa4\x5f\xa9\xcf\xac\x53\x13\xe6\x46\x36\x77\x94\x18\xde\x0a\xbc\x78\xf0\x5b\x95\x4f\x0c\x87\x49\x98\x1a\xa4\x5b\x88\x1e\x11\x8a\xca\xf1\x54\x7a\xbc\x7b\x77\xbb\x9b\xc7\xa9\x17\x3e\x70\x4b\xac\xe3\x2c\xdc\x99\xa2\xbb\xd4\x49\x6b\x9c\x76\xe3\x45\xbb\x8a\x94\x76\xc7\x52\x5f\x7b\x5f\x47\xbd\xe0\x88\xa0\x0b\xa6\xce\xa3\x2c\x41\x16\x5b\xd1\xcf\xec\x83\xc1\x02\x75\xdc\xee\x18\x08\xed\x2e\xdb\x75\x1a\x9b\x84\x08\x7c\x0a\x35\xd0\x8b\xa5\x66\x89\xe9\x22\xfd\xc7\x7f\x1d\xe5\x82\xd1\xd1\x80\xe3\x95\x61\x98\x76\x4d\x17\xfe\x3a\x78\xc7\x60\xf3\xaa\x11\xa8\x47\x1b\x7d\x54\x91\xa8\xe3\x2d\x5a\x5e\xc2\x5e\x18\xa7\x45\xf9\x24\xd7\x9a\x2e\xb1\x8a\xfb\x35\x2b\xbc\x06\x79\xb6\x9b\xe4\x5f\xf0\x30\x7c\x7a\x85\x3c\x8e\xaf\xa7\x36\xcc\x1e\xf9\xc8\x2c\xd0\xe8\x60\x7b\xad\x07\xde\x5b\x06\x81\xad\x34\x71\xec\xbb\xc6\x22\xf2\xc7\x15\xed\xce\x1b\x24\x5a\x72\x1f\x93\x47\xd9\xea\xa4\x9d\xbd\x95\x54\xa1\xc5\x49\x56\xa1\x20\x4f\x6f\xaa\x18\xa3\x25\x59\x5f\xb8\x4a\xee\xd9\x2f\x55\x04\xdd\x74\x59\x7a\x5e\x50\x58\xe2\x3e\xe1\x90\x6a\x04\xfb\xdf\x3c\x7a\x76\xef\x6e\x2f\xc6\xb9\x19\xaa\x51\xa6\xaf\x88\xde\x45\x2c\x20\x27\xae\x58\xb1\x92\x5b\xad\x0d\xf4\x3c\x55\xb7\xde\xde\x9f\xe0\x82\x31\x52\xb0\x8b\x7b\x04\xe7\x20\x5b\x36\x90\x1c\x54\x1a\x9e\x57\x09\x94\xda\xab\x42\x12\x28\x8c\x3f\x61\x87\x20\x6e\x18\x04\x77\x3c\xab\xcf\x74\xec\x7e\xee\xa8\x2a\xf5\xb5\x20\x6f\x7d\xb2\xe3\xeb\xfb\x37\x27\x38\x85\x95\x17\x11\xfc\x31\xb7\x81\x2f\x51\xf3\xc7\x84\xc5\xaa\x5d\x02\x91\x2b\xac\x55\x08\xfd\x55\x7f\xdb\x26\x47\x72\x42\x75\xa1\x5f\xb7\x5f\x2d\xc7\x01\x71\x76\xd6\xa6\x48\x2c\xd2\x94\x2b\xc3\x25\x93\x26\xab\x33\xe4\xf6\x80\xa8\x08\x81\xd0\x03\x88\xbd\x4c\xbd\xe1\xfa\x65\x8d\xf2\x38\x1b\x15\x89\xf8\xa0\x39\xc9\xc5\xfd\xbb\xf4\xb8\x51\x2d\x2d\x5b\x76\xeb\x2e\x82\x3b\xe0\x10\xb1\x1a\xa2\x42\xa5\x0e\x12\x13\x64\xb4\x7e\xc8\x23\xa9\x22\xcc\x63\x43\xff\x67\x5f\x7b\x60\xc2\xc2\xf2\x0a\xe9\x85\x8a\xff\xad\x9c\x10\x3c\x60\x10\x96\x7d\x33\x08\xcb\x38\x8a\xc3\x54\xb2\x6f\x07\xd9\x70\x32\x68\xe2\xaa\x89\xec\xf6\x1a\x71\xc8\xfa\x61\x7d\x4f\x8f\xd6\x77\xae\xea\x8a\xf5\x90\xc2\xe5\x89\xa4\x94\x6e\x5e\xf5\xfb\x41\xe6\x75\xd2\xce\x64\xa7\x87\xe4\x7d\x9a\x8e\xd9\x6c\x17\x0d\xb0\x23\x18\x51\xda\x0c\xf2\x5c\x1c\x04\x9c\x18\x76\x82\x2f\x75\xa9\x94\x9f\x2c\xd7\x9b\x76\x97\x28\x2b\x4a\x3c\x4c\x6c\x55\xe2\x71\x29\x27\x4d\x3c\x8e\x65\x93\x77\x63\xb1\x64\x51\x65\x2a\xdf\x60\xba\x40\x30\x9c\x24\xcb\xd2\x58\xd8\x9c\x2a\x67\x5e\xdf\xb2\x57\x33\xd7\x65\xa5\x1c\xe5\x9e\x8a\x88\x9b\xc5\x2a\x2c\xc7\x53\x55\xf0\xb9\xb9\xf6\x42\x58\x2c\x99\xb2\x45\x72\x07\x17\x29\xb6\x99\x96\x61\x9f\x9b\x6b\x2f\xc6\x85\x2e\x42\x98\xee\x68\x55\xcb\x31\x3b\xdf\x67\xd1\x92\x41\x16\xe8\x27\x9d\x7d\xae\x3a\x83\x7c\x8c\x92\x2d\x9b\xbc\x1f\xaa\x4e\x20\x6c\x51\x2e\xe3\x8f\xe5\xa4\x71\x4c\x86\x71\x9e\xd4\x41\xb9\x8c\x30\x84\x70\x8f\xa1\xdf\x89\xf1\x7f\x8f\x2d\x17\xef\x4f\x3d\x82\x43\xbb\x44\x18\xd7\x32\x51\x18\x79\x81\x6b\x14\x2b\x20\x34\x63\x8e\x36\x3a\x5f\x0c\xb2\x30\x25\x33\xa8\x99\x0e\xf9\x4a\xb3\x5b\xf0\xa5\xa9\x71\xf0\xe2\x8b\xed\x5e\x1e\xae\xea\xd2\xcc\x60\x25\x39\x6e\x80\x9e\xb5\x93\x30\xed\xda\x36\x0e\xb6\xa9\xad\x64\xcc\x26\xfd\x02\x81\x69\xd2\x9e\xb3\x18\x2d\xfc\xd7\xff\x61\x62\x16\x8c\xba\xa4\x62\x5e\x9c\x62\x22\xe0\xa9\xa6\xa8\x6e\x21\x1f\x15\x7d\x6d\x64\xe8\x6b\xe3\x45\x94\xf4\x59\xcc\x60\x98\xe5\x61\x8e\x45\x16\xc9\xf7\x1b\x15\x69\x57\x40\x0f\xdc\x11\xe4\xfc\x16\x11\xb0\xe4\xa1\x5d\xee\x00\x1e\xff\xce\x84\x91\xc1\x70\x08\xe5\x5f\x17\xe2\xef\xd5\x47\x80\x2b\x12\xaa\x3e\x19\x0d\x4f\x33\xa8\x76\xef\x46\x4d\x5a\x9c\x46\x1d\xfe\xdf\x73\x01\xd8\x36\x32\x2d\x4d\xbe\xd3\x93\xac\xff\xd8\x86\xc0\x72\x1c\x4c\xfa\xe9\xdb\xad\x04\xbf\x2a\xc3\x16\x95\x8e\xf3\xd8\x57\x50\xd8\xbb\x41\x24\x95\x3b\x94\x66\x5e\x41\xca\xae\xf2\x47\x0d\x86\x0f\x5d\x53\x98\xbc\xb4\xd9\x8e\x9b\x48\xa4\x44\x4d\xd8\x9e\xeb\xd4\xba\x88\xc2\xbc\x0b\x5b\x6f\x2d\x2c\xda\xb7\xe1\x4a\x8e\xf5\x54\x13\xd1\xd8\x8a\x8c\x06\xcf\x04\x9b\x4c\x79\x7f\x75\x4f\x9d\x6f\x5b\xe8\x8e\x03\x0b\xec\x39\xa8\xc7\x8d\xbd\xac\x28\x1b\xe5\xb1\xb4\x0b\x9c\xde\x79\x7d\x93\xca\x84\xf1\xf5\xef\xbd\x5f\xdb\x6b\xff\x0c\x41\xaa\x84\x08\x72\x12\x6c\x96\xbc\x3c\xb4\xab\xdd\x35\x51\x12\x16\x45\xbc\xe8\x49\x97\x02\x20\xa1\x6d\xfb\x02\x89\xc0\xaf\x84\x8b\xae\x0b\x80\xf0\xef\x2d\x1b\x4a\xca\xf1\xd4\xa4\x3e\xf8\x5c\xfd\xe4\xf2\x55\x1b\x6d\x23\x5c\x3e\x8b\xd7\x2d\x27\x5e\x42\x26\xec\x6e\xf3\x25\xd9\x47\x2c\x21\x53\xa9\xa5\xf6\xe9\xa2\x93\x7d\x97\xb8\x87\xd2\x0b\xd5\xbf\xe2\x01\x3e\x4a\x92\xed\xf6\x76\xf0\x82\xa4\x51\x8d\xe8\xf5\x78\xe5\x63\xf7\xf7\x02\xbf\x17\xc0\x96\x18\xe9\x1a\x88\x21\x2a\x4d\xb9\xb9\x42\x68\x2b\x6c\xc3\x19\xcf\x31\x40\xcf\x18\x1d\xd2\x5b\x01\x61\x27\x8f\xb1\xc6\x7f\x1e\xdb\x98\xd3\xa6\x14\x9a\x0f\x71\x6b\xe4\x7c\x40\x7c\xb4\x7f\x62\xc7\x85\xa6\x4a\xf4\xee\xa7\xd6\xb1\xdd\xbb\xdb\xcb\x51\x5e\xb0\xee\x17\xa4\xc3\x50\x5a\x3b\xc6\x7e\x37\x77\xa7\xde\xd0\x17\x27\x84\xd3\xa5\xee\x35\x51\x03\xfb\x14\xf1\x91\x93\xc5\xb8\x80\x17\x0e\xba\x17\xef\x12\xb9\xec\x5d\x72\xcb\xb5\xc4\xf5\xbc\x45\x38\xed\xfb\x78\x2c\x72\xe2\xe2\xdd\xc2\xd9\xe9\xe1\x19\xa0\x1b\xa3\x0b\x08\xa9\x4d\xbe\xdd\xb4\xf5\x0f\x46\xc9\x62\x26\x40\x01\x41\xd7\x73\xa3\x60\xba\x7c\xfc\xfc\x9e\x83\xed\x9e\x49\x4d\x6e\x89\xa9\xf6\x77\x9d\x03\x6f\x3d\x9f\xb5\x1d\xf7\x8b\x9f\xc0\xff\x30\x61\x5e\xf6\xbf\x39\x0a\x97\xcc\x2c\xd6\x29\x27\xdb\xea\x3a\x0b\xa0\x27\x20\x26\xda\xc0\x96\x87\x71\x77\x78\x2a\xa9\x98\x9f\x6f\xd7\x09\x72\x3e\xb2\xca\xe8\x72\x3d\x2a\x5a\x40\x25\xc2\x4b\x8e\x73\x5f\x8c\x7a\x21\x28\x67\xa8\x4d\xcc\x62\x87\x74\x78\xa4\xb9\x39\x89\xba\xde\x6c\x30\xd6\x50\x1d\x5a\xea\xb3\x9d\x0f\x88\x72\x15\xc3\x21\x56\xe9\xc3\xf5\x2c\x41\xb5\xf8\xc7\xa4\x74\x04\x41\x52\xd5\x94\xf0\x4a\x6f\x1f\x4c\xbd\x9f\x83\xcf\xb5\x0b\x93\x2f\xc7\x91\x21\xc7\x00\xd4\x31\x54\xe5\xd8\x53\x23\x5f\x99\xfa\xf8\xfe\x5d\xed\x28\xcb\x73\x13\x21\x55\xc7\xfe\x76\x9c\x00\xf1\xc7\x27\xb6\xb4\x34\x32\x9f\xc5\x64\x12\x0c\xa2\x05\x9d\x40\xa1\x06\xf0\x32\x14\x52\xa4\x6b\xe9\xcc\x9e\x1d\x14\xea\x12\xc9\x3d\xff\x01\xba\x40\xf2\x69\x3c\x3d\xb0\x02\x7e\x1c\x78\x5a\xb2\xc8\xfd\xa8\x41\x95\x1d\xdf\xe8\x86\xde\x0d\xc8\x3f\x45\x88\x8e\x68\x77\xdd\x43\x81\x08\x9f\xb9\xcc\x9a\x98\xb3\x63\x1f\xb8\x9c\x43\x87\x02\xa5\x41\x01\x50\xaa\x27\xa6\xcd\xe8\xe4\x7f\x02\xe2\x2e\x5f\xb1\x0b\x31\x6a\x86\x7f\x61\x73\x59\x21\x7e\xd9\x80\x1d\x8d\xa3\x99\xce\x74\x32\xfc\x02\xb6\x71\x87\x00\x16\x16\xbc\x7d\x64\xca\x88\xa7\x12\xe9\x4a\x5c\x46\x7d\x0e\x72\x4f\x53\x90\x3b\x0d\x7d\xd8\x73\x50\xdc\x89\x38\xaa\xbc\x58\x4d\x38\x81\x37\x81\x80\xa2\x24\x2b\xfb\xb1\xc9\xf5\x83\x48\xf8\x0e\x33\xfe\xf3\x70\x13\xfe\x33\xca\x4d\x11\x99\xb4\x9b\xb5\xe8\xa5\x5d\xa8\x98\xe3\xa1\x45\x99\x61\x16\x17\xa0\x4b\x1d\x98\xd0\x51\xb7\x0f\xfa\xeb\x48\x90\x11\xce\xad\x31\x52\x70\x76\xdc\x60\x38\x5d\xc6\x90\xa7\x76\x8f\x7f\x6e\x4e\x8f\x27\xf6\xa5\xd2\x24\x3b\xec\xa0\xd1\x94\xa3\xe5\x54\x3f\xff\x5d\xe0\xe5\x44\x04\xb7\xad\x42\x82\xd4\xd0\xfc\x00\xc3\x57\x5d\x7e\xf0\x70\xd4\xe4\xaf\x01\x46\xd2\x8d\x8b\x32\xd7\xec\x88\x6c\x55\xf6\x39\x41\xad\xe9\x48\xf5\x40\x7b\x10\x16\x85\x8e\x07\xd2\x12\xdb\xe3\xfc\xc4\x9d\x06\x48\x9d\xad\xcd\x92\x3c\xc8\xe9\xca\xc7\x48\xd7\x84\x94\xa2\xe1\x9b\x4f\xea\x76\x74\xa6\x2b\xc3\x07\xda\x8b\xa1\xec\x18\xae\xe7\x51\x7f\xaf\x9c\x50\x5d\xb1\x6b\x8a\x61\x18\x23\x20\x42\xaa\xf4\x4e\x40\xda\x05\xef\x50\xc6\x37\x88\xf3\x30\x4a\xb0\x00\x11\x71\xd8\xc9\x34\xd9\x17\x8e\xa6\xfc\x83\xa6\xe1\x54\x64\xa3\xb2\xbf\x62\x1b\x5c\xf3\xa4\xdc\xe0\x3d\x01\x59\x28\xc1\xaa\xba\x16\x0f\xfb\x50\x67\x9d\x38\x70\x37\x88\x9a\x74\x06\x0b\x07\x0a\x41\x52\x0a\x54\xbf\xce\x7a\xd5\x55\x7f\x20\xbb\x08\x61\x27\x39\x62\x4b\xf2\xd8\x3d\x81\xe4\xd1\x68\xb3\x5e\xc1\xb0\xcc\xb7\x3a\x3e\x12\xfc\xbb\xbf\xf4\x9f\xce\xd4\x9f\xd0\xe2\x9f\x07\xa8\xc8\x60\x46\x9d\xe1\x15\x06\x24\x67\xc5\x97\x67\x7c\x23\x16\x2b\x35\x8a\x0b\xd2\xe2\xc0\xe0\x6c\x75\x98\x05\x9d\x64\x79\xd8\x55\x3d\x13\x11\x66\x0b\xe8\xc5\xfd\x88\xa0\xc8\x66\x94\x67\x43\x13\xa6\x3b\xed\x58\xd2\x02\xb8\x5d\x2a\x85\xaf\x6d\x37\x14\x1c\x6f\x54\x64\x9f\x7d\xb8\xf2\xd0\xa7\x1d\x40\x3a\xbb\x5a\xfa\x7e\xd5\xbb\x13\x97\x2c\xec\x53\x62\xcf\x81\x18\xe8\x4a\xf0\x94\xbc\x53\x3b\x1f\x4c\x51\x28\x33\x03\x4b\xfc\x6c\x87\xf4\x1e\x67\xa7\xc8\x1c\x7b\x0e\xb6\x97\xb3\xd2\x01\xb1\x15\x53\xe9\x91\xa9\x6b\xa4\x24\x73\x05\xcf\x0a\x45\xb3\x5b\xc4\x63\x29\x95\x1f\x86\x80\x75\x8b\x45\x91\x68\x83\xdc\x03\x70\x2e\x39\x74\xd1\xd0\x98\x64\x41\xcd\x4d\x14\x68\x58\xff\xa8\x1c\x07\x5e\xcb\x71\x21\x2c\xcd\x0c\x69\x79\xe2\x0b\x91\xd2\xdc\xb3\x17\x8a\xfd\xfe\x4c\x43\x3f\xf6\x85\x76\x94\x98\x50\xad\x97\xc4\x7b\x2a\x98\x30\xa2\xf2\x99\xe9\x20\x4e\xe3\x41\x9c\x88\x3b\x0d\x9a\x96\x90\x4e\x90\xe3\x89\x36\x5f\x5a\x86\x71\x6a\xf2\x6d\x3e\x3e\xbb\x4a\xc8\xae\xff\x9d\xeb\xd7\xe0\xa6\xb1\x95\xaa\x7c\x80\xa4\xc7\xc2\xe8\x9b\xa3\xb8\x80\x24\x9a\xd7\x65\x87\x12\xa9\xab\x36\x69\x01\x36\xcd\xd2\x28\x94\x60\x15\x35\x3b\xb0\x03\xe5\x98\x99\xb6\x59\x96\xd7\x61\xad\xdd\x66\xb1\x58\xbd\x0b\xa5\x32\x39\x99\x0a\xdc\xf6\xce\xb7\xd3\x7a\x30\x17\xa3\xbc\x67\x94\x72\xeb\xac\x7d\x1d\x92\x18\xf2\xab\xb8\xb0\xef\x59\x3c\x05\x8a\xe9\x1f\x56\x8f\x12\x04\xa2\xdc\x56\x07\x1e\x00\x47\x5c\x09\x68\x77\xb8\x6b\xe5\x72\x1c\x63\xc9\x25\x2a\x22\x98\xad\x5d\x89\x06\xef\xb2\xcf\x41\x9c\xa9\x35\x21\xaf\x44\xe4\x23\x37\x72\xa2\xb0\x18\x85\x52\x29\x72\xd0\x3b\x0f\xc3\x0b\x7e\x9e\x6c\x1b\xb0\x95\x2c\x8c\xea\xe7\x1f\x17\x03\x0c\x17\x07\xc8\x74\x1c\xbf\x8b\x53\x49\xf7\xf3\xfb\xda\x51\x3f\xcb\x0a\x41\xee\xb9\x64\xc7\x0b\x8f\x9f\x27\xfd\xe8\x7a\x49\xf9\xb2\x1d\xf2\xd8\x6f\x01\xe2\x92\x63\x32\xfb\x1b\x9a\x3c\x1e\x18\xc9\x32\x74\x31\x3d\x59\x51\xbd\xfd\xa4\x53\x15\xb1\xf2\x58\x45\x99\x65\xdd\xed\x24\xfe\x7f\x85\xe9\x3f\x8f\x23\x92\x96\xff\xa9\xbc\x6e\xfb\xc7\xa4\xce\xb2\x41\xcb\xd0\x8d\x26\xb1\xf4\xae\x81\xaf\xb5\x4b\xa8\x1c\xa8\xce\x03\xec\x9a\xba\xa2\xc3\x2c\x49\x08\xdb\x77\x12\xd3\x4f\x4e\x36\x4b\xf1\xce\xcf\xb7\xbf\xf0\x85\xc7\xa9\xfe\x70\x1e\xfd\x5e\x35\x80\xf1\xde\x66\xa2\xca\x89\x9a\x11\xdc\x46\x14\x9d\xe5\x59\x55\x87\x03\x22\xaa\x0a\xc1\x01\x0f\xf0\xfb\x36\xd8\x85\xf3\xcf\xef\x63\xdf\x54\x5d\xe8\xfa\xe6\x36\x2e\xa1\x0e\xe1\x82\x2c\xb7\x2b\x9d\xa8\x26\xec\xaa\x1b\x2a\xed\x51\x3f\x2b\x8c\xa8\x11\x69\xa2\x59\xff\x18\x10\xf6\xc2\x66\xc0\x28\xbc\x3d\xb5\x31\xa3\x2b\x9c\x2f\xc7\xcb\x46\x84\xf0\xb0\xda\x1e\x63\xdf\x2d\x21\x8b\xa9\xa7\xa7\xbd\x47\xa4\x2a\xf7\x88\xba\x0e\x9f\xf5\x6f\x8e\xcc\x0e\x7b\x29\xa8\x08\xdd\xc2\xe3\x17\x8c\x6a\xe5\x3b\x25\xb7\x83\x89\x30\xaa\xfe\x4a\xd7\x74\x71\x6d\x6f\xe8\xbb\xca\x71\x63\x78\xb5\x98\xe5\x03\x0d\xaf\xb0\xef\x9f\x62\xfd\xb9\x53\x54\x38\xeb\x87\x69\xb7\x98\xfd\x24\x39\x92\x3a\x58\x40\x48\xf1\x9d\xc0\x5b\x13\x7e\x67\x2a\xc9\xff\x8a\xa0\x42\x5b\xa4\x5b\x0d\xe1\x52\x39\xa6\x24\x7f\x29\x4e\x12\xd7\x04\x51\x0a\xaf\xbd\x54\xe5\x60\xf9\xed\xe4\x8f\x26\x52\xb0\x5e\x56\x3e\x6e\x1f\x9c\xe2\xed\xed\x1a\xaa\x04\x36\xfb\x15\x68\x78\x5e\x0e\xbc\x92\xe8\x69\x62\x98\x6d\x20\xd3\x71\xf4\xb7\xdd\x93\x0e\x64\xa8\x64\xde\x09\x08\x0a\x73\xdc\x6a\xed\xbb\xd0\xd3\x41\xb8\x5b\xb6\x7b\x88\xd9\xf1\x0f\xed\xc0\x92\x66\x65\xe5\xe3\xab\x1b\x9e\x65\x95\x84\x03\xc5\x4a\x39\x37\xb7\xbd\x5e\x0d\xed\x93\xac\x67\xcb\x78\xe0\x9e\x94\xda\xcc\x11\x5e\x24\xa0\xfe\xe9\x6f\x55\x4f\xb9\xb5\x68\x38\xb2\x36\x33\x3a\x02\x90\x27\x5c\xa9\x7c\xce\x30\x0d\xd3\xb0\x23\x3e\xc9\x86\x93\x50\xc7\xf3\x01\xc9\xec\x53\xd4\xbb\x90\x8f\x4a\x5b\xa7\x71\xca\x58\xa0\x58\xaa\x43\xbe\x06\x18\x2b\x61\xde\xcd\xb3\x05\xd9\x27\x10\x55\x9c\xa1\xf2\xc5\x99\x26\x4a\xcf\x30\x2b\xca\x61\xe6\x8c\x2d\x31\xe4\x3e\x20\x0f\xa5\x0f\x28\x04\x28\xb2\x64\x04\x29\x92\xfa\x65\x22\x18\xfb\x71\x45\x51\x10\x08\x86\x98\x5d\xa0\xb6\xa9\xe3\xd0\x53\x1e\xe3\xb9\x98\xe5\x65\xb8\x90\xa0\x8a\x08\xf2\x20\xe8\x3f\x72\xcc\xb9\x41\x1c\x2d\x19\x8d\x65\x50\x46\xfa\x83\x8a\x00\xe3\x7f\x30\xc5\xd7\x3c\xb4\xab\x1d\x8d\x90\x1f\xa1\xf2\x26\xf5\x46\x39\x71\x76\xae\x51\x16\x65\x65\x69\x5a\x34\x44\xc1\x58\x56\x79\xc2\xc7\x08\xb1\x9c\x76\x2d\x40\x48\x5d\x55\xea\xc1\x84\x25\xf5\x26\x96\x6a\x39\xc1\x0c\x51\xfa\xcf\xe6\x59\xfb\x7c\x9d\x80\x94\x66\x30\xe3\x59\x3d\xff\xf9\x45\xd2\xf8\xfd\x29\x56\x20\x1d\xfd\x4d\x6c\x48\x93\x0f\x4d\x39\x92\x16\x93\x04\x28\xf6\x1b\x34\x58\x69\x6a\xbc\x42\x1a\xdc\xdb\x32\x60\x4f\x3c\x42\x5e\x8f\x47\x1a\x71\x56\x69\xbc\xe4\x12\x7d\xdc\x93\xd0\x76\xe4\x84\xd8\xa6\xc3\xac\x10\x6a\xc7\x2a\x20\x67\x58\xf7\x11\xaa\xaa\xca\x43\x8b\xe8\xaf\x0d\x21\xf9\x4a\x36\x4a\xbb\xda\xae\x42\x1f\xfd\x18\x86\x16\x4b\x58\x6a\xf4\xf3\x04\x99\xaf\xc4\xa9\xe1\x16\xe3\x45\x6e\x31\x7a\x19\xca\x6c\xd9\xe4\xc3\x3c\x8e\x44\x47\x40\x15\x9a\x68\x70\x1c\x66\x87\xa6\xb0\xd7\xb3\xde\x3a\xf6\x72\x58\xa9\x44\x31\xbf\xbe\x25\xdb\x0b\x51\x71\x7d\x9e\x10\xb2\xde\x73\xe9\x22\x39\x84\x66\x79\x69\x7a\x21\xa4\x97\x10\xfc\x1d\x0d\xc8\xf2\xfc\x34\x5b\x9e\x9f\x46\xbe\x28\x7f\xd6\xc8\x91\xca\x16\x17\xad\xa6\x31\x46\x94\x13\x7b\xad\xd7\x2f\x95\xf1\x6e\xcd\xcf\x6f\x5c\x99\x2a\xe3\xec\xde\x5d\x8f\xc4\x70\xd0\xa2\x72\x23\x1b\x18\xbd\x4b\x5b\x6a\x94\xa5\xd1\x28\x77\x4c\x2c\xf4\x90\x2f\xe1\xcd\xc8\x49\x93\xab\xcf\x5f\x1f\xaf\x3b\x47\xd1\x61\x2f\x0f\xbb\x82\x17\xc2\xbb\x3e\x6e\x07\x8e\x1c\x53\x30\xb9\x60\xf2\x3c\xb4\xcb\x86\xa6\xeb\x9c\xbb\x93\xa7\x7c\x14\x0e\xe3\x32\x4c\xe0\x89\x50\x0f\x48\x95\x7b\xb3\x85\x38\xd5\x7b\x9b\x9e\x2d\x2f\x88\xf8\xb3\x05\x93\xf0\x3c\xb5\xcb\xb9\xce\x59\x6d\x2c\x97\x79\x98\x16\xf5\xee\x6f\x0b\x12\x88\x07\x6f\xb0\xd6\xb9\x94\x59\x54\xd8\x49\x37\xa8\x6e\x36\x5a\x48\xcc\xc3\xf6\x0f\x5d\x6e\xa0\xd6\x71\x7f\xe7\x53\x8c\xe8\xfe\x67\x14\x89\xfc\x2d\xcb\x79\x40\xd3\xf7\x43\x72\x45\xbf\xb2\x49\xbd\x72\xaf\xc2\x82\xff\x0c\x71\x1b\x7a\xb7\x17\xec\xbe\x29\x6a\x12\xd4\x8b\x8e\x12\x88\xc5\xda\x3f\x45\xd7\xed\x46\xc0\x76\x0b\x6f\xb1\xac\xeb\x65\x4f\xdf\x59\x59\xaa\x37\x1c\xc2\x19\xde\x21\x97\xf3\x73\x36\x3f\xd2\x86\x64\xd3\xe0\x15\xe1\x69\x69\x17\x20\x62\x38\x2f\x25\x26\xec\xbe\x57\xd9\xed\xfd\x0d\xc2\x40\x98\xc1\x30\xc9\x56\xb1\x61\x69\x22\x4c\x49\xf1\xd4\x70\xb4\x20\xe5\x2c\xd1\x5e\x47\x63\xdd\x47\x4b\x60\x49\x3c\x58\x90\xc4\x1e\xf5\x5e\x34\x5f\x90\x30\x5c\x9b\x20\x52\x11\x56\x31\xec\xe5\x71\x34\x4a\xca\x51\x1e\x26\xdb\x48\x0f\xf9\x35\x8c\x06\x27\x45\x4a\xaa\xc2\x72\xab\xf2\x77\x4c\xa3\xb9\xd5\x20\x71\xba\xe8\x2d\x28\x90\xc5\xbe\xc8\xbd\xd4\x17\x83\x4f\x4f\xa6\x46\x61\xda\xc5\x0e\xbb\x5f\xad\xc5\xd7\xa9\x68\xbe\x4e\x09\x6b\x16\x2e\x51\x03\xe8\x3c\x35\x80\xce\xbb\x36\x45\xb8\xb0\x10\x1b\xdb\x58\xc7\xcf\x09\x7d\x05\x9b\x8e\x18\x4d\x20\x29\x39\x32\x49\x3e\xef\x86\x2d\x12\x12\xbf\x5a\xf9\x3e\xe3\x55\x02\xc9\x59\x46\xbb\xb6\xfa\x05\xb9\xd6\x61\x14\x9b\x6f\xba\xe5\x71\xd4\x1f\x64\x69\x77\x42\xc8\x6a\xcb\x98\x88\x2a\x5b\x3a\xff\x2f\x63\xef\x16\x24\xc7\x95\x9e\x07\x02\xd5\xdd\x00\x08\x92\xe2\x75\x46\x23\x79\xb5\x2e\xc9\x13\x4b\x2b\x62\x96\xe1\x70\xc4\x7a\xd7\x7a\xc9\x32\x80\x11\x05\xac\xa7\x89\x00\x20\x50\xcb\xd8\x07\x66\x57\x9d\xae\x4a\x22\x2b\xb3\x26\x33\xab\xc1\x66\xf8\x61\x9f\x1c\x0e\x87\x1f\x64\xaf\x63\x77\x23\xec\x88\xb5\xb5\x11\xbb\xd6\xae\x76\x2d\xcd\xc8\x96\x2d\x59\xae\x9e\x8b\xe6\x22\xcd\x68\x78\xe7\x90\x1c\x92\x00\x88\xfb\xfd\x7e\x47\x63\x23\xff\xef\xff\xcf\xf9\xaa\x2b\xe9\xf0\x03\x23\xb2\x88\xee\xea\xaa\xcc\x73\xfe\xf3\x5f\xbe\x4b\x08\x17\x55\x3c\x72\x20\x4e\x79\x02\x82\x04\x69\x8c\x3b\x2e\x4c\x98\xa6\xd0\x7a\xc9\x94\x70\x2f\x34\x41\x89\x46\x71\xe0\x44\x62\x9c\xac\xac\x25\x7d\x41\x19\x77\x6f\x35\x8b\xcb\xfa\x20\x0c\x7a\x88\x28\x86\x7c\xef\xcb\xe3\x0e\x79\x24\xfd\xf5\x71\x5e\x29\x73\xd5\x08\x04\x84\xf6\x3f\x49\xe2\x12\xa3\x22\x5f\x71\xd9\xeb\x08\x84\x06\x30\xa2\x2e\x20\xcb\x1f\xf6\xf2\xbc\x78\xa4\x5e\x05\x08\x48\x73\x12\x42\xf0\x3d\xa1\xd8\x69\x14\x73\x12\xa5\x56\x0c\xb6\x09\x0b\x11\x4a\xe4\x4e\xc4\xbc\xa7\x1f\xb3\x2f\x9d\x7c\x2b\xf4\x46\xd6\x69\x84\x1d\xaf\x96\x8f\xd7\x1f\xd3\x54\x5b\xf0\xfb\x60\x64\x7d\xb1\x43\xee\x23\xdb\xd1\x06\xc4\x23\x3f\x27\xef\x0c\x98\xca\xdd\x09\xe9\x4a\xa8\x3c\xa9\x8c\x78\xc6\x3f\x2f\x56\x3d\xc8\xfe\xd7\x08\x34\xd0\x16\xa6\x97\x2d\x75\x59\x9d\xb6\x00\x43\x90\x7b\xee\xaf\xa2\x34\x96\x7b\xf1\xbd\xbf\xd6\xa1\x24\xd7\xc5\x45\x77\xa0\x25\xbf\x55\x0d\xef\x4f\xa8\x9c\x78\xbf\x41\x76\x5f\x12\x69\x78\xd5\x12\x58\x8a\x3a\x46\xc7\x1b\x91\x8b\x75\x56\x22\xf2\xf2\xf5\x57\x31\x1a\x71\x8b\x74\xac\x83\x42\xf2\xab\x2e\x3b\x54\xd2\x1e\xf9\x3e\xee\x85\xbe\x08\x6e\x9f\x45\xde\x57\x54\x0a\xd0\xa1\x50\x4b\xd3\x6b\x8a\x59\x66\x9c\x2c\x90\x6f\xf9\xaa\x26\xc4\x41\x15\xd9\xdb\x33\x53\x88\xaf\xb4\xcb\x51\x5c\x1c\x82\x94\xce\x9e\x3d\x8a\xef\x7c\x30\xe5\x52\x26\x47\x39\x3a\x88\xd7\x68\x31\x1c\xee\x69\x26\x8f\x35\x73\x4b\xea\x1d\xbd\x6e\x3c\x8c\xcb\x71\x9d\xb2\x95\xbe\xfd\x82\xc0\xb4\x6d\x2d\x04\xac\x6d\x5e\x8a\x3b\xc9\xca\x2a\x4e\xd3\x39\x6a\x33\x5f\xa2\x6d\x87\xca\xc4\xfe\x7f\x83\x83\x36\x80\x24\x53\x70\x1e\x42\x3b\xb1\x6d\xfa\xd2\xb8\x28\x2b\x94\x89\x3a\x38\x9d\x84\xa2\xf7\x76\x14\x8e\x98\x73\xfe\xc4\x4f\x93\x15\xed\x37\xef\xf5\xe0\x10\x79\x03\x84\x7f\x40\x9d\xd1\x5f\x41\xe8\x33\x42\xb7\x65\xaf\x3d\x37\xca\xcb\xa4\xca\x0b\x08\x03\x1b\x68\x34\xb0\xa4\xf0\x6b\xd8\x25\xad\xb5\x20\x38\x32\xce\xba\x6e\xa1\xde\x9b\x36\x50\x0f\xfc\xb4\xfb\x38\x9c\x10\x8a\xfe\x82\xb4\x82\x4f\xb0\xb7\xee\x54\x44\x4f\xaa\xd7\xe7\x03\xef\xf8\x22\x39\xdc\x9c\x9a\xf2\xa6\xaa\xff\x20\x36\xe0\x15\xaf\xa8\x36\xc8\x0b\xa5\x7d\x7a\x2d\x08\xdf\x67\x3e\x41\x2a\x37\x0a\xd6\x83\xfc\x8f\xf7\xee\xf2\x99\x37\x6e\x30\x5a\x3f\x42\x80\x65\x38\xad\x49\xc8\x5e\x64\x9a\xd6\x72\x9d\xce\x41\xc1\x07\x8b\xf5\x5a\xbd\xf0\xd6\x2f\x13\x49\xe9\x2f\x26\x61\x9f\x8d\xd2\xf8\xf5\x98\x74\x32\xf7\x62\x9f\xe9\x8b\x46\x7e\x63\xe6\x00\x8b\x57\x23\xd4\x28\xdc\xbe\xf3\x3e\x5f\x1a\x38\x31\x4f\x59\xa0\x36\xd6\x1f\x88\x01\x06\x5a\x1c\x3f\xd3\xd0\xa8\xff\x82\x10\x8c\xf2\x0c\x42\x9d\xf8\x87\x87\x93\x30\xef\xcc\x8b\x74\x75\x2e\xc4\xf3\x33\x84\xa5\xb9\x4b\x24\xfc\x73\x93\xa0\x56\x5f\x25\xa6\xa5\x83\x22\x03\x00\x45\xbd\x66\x68\xc8\x28\x71\x7d\xa7\x9d\x64\xdc\xa2\x7b\x74\xbb\xee\xd1\x1c\x64\xa9\x3e\x60\x16\x17\xf5\x43\x3c\x81\x98\x8e\x7d\xa6\x8f\x84\xbb\xe7\xa8\x18\x6e\x92\x4f\xf9\x55\xfd\xe2\xc8\x26\x1e\x20\xda\x23\xc9\x55\xa6\x9e\x49\xb1\xcb\x9d\xc3\x79\x7b\xa7\x41\xaf\x6e\x5f\xdb\x2d\x2f\x27\x5d\xff\x0d\x71\x27\xf0\x30\xf4\x7a\xf2\x0c\x8b\xc7\xa6\xa9\xcb\xfa\x8a\x1f\x55\x52\x0f\x0e\x3b\x63\xf8\x10\x17\xb7\x72\xdd\x4a\x90\x3e\xea\x48\x11\xd1\x37\x03\x81\xc3\x6b\xed\xfb\x34\xe9\xb7\x71\xdc\x20\x7f\x7d\xe8\xa1\x51\xf9\x70\x89\x95\xaa\xf5\xe8\xd6\x17\x24\xdf\x68\x76\x01\xab\xdb\x49\x89\xe1\x2d\xb9\x8b\xe8\x37\x3c\x00\x3a\x10\xd8\x07\x78\x51\xb0\x58\xa3\x2a\xbf\xa0\x09\x87\xf0\x3f\x95\xab\x29\xd9\x57\x7f\x9d\x59\x7a\x6f\xe1\x21\xe8\xef\xac\x35\xa9\xbf\x75\x8b\xfc\xb0\xc7\x18\xe0\x36\x80\xf1\xa5\xd7\x53\xea\x86\x95\xf9\x44\xe1\x73\x3f\x8c\x48\xc6\xf4\x1a\x63\x00\x36\x75\x82\xc1\x37\x60\x8c\x06\x4a\x20\xba\xf8\x07\x58\x55\xa6\x61\x24\x19\x1d\xfa\xd4\xb0\xf8\x46\xa6\xb3\x1e\x85\xac\xe7\x2d\xe8\xb2\xf8\x4c\x61\xe7\x2e\x5d\xad\x6f\x22\x08\x9b\x7a\x9e\xdc\x02\xe4\x10\xdf\xc3\xb3\xb3\xec\x28\xa0\xf0\x3e\x8a\xa6\x44\x5b\x01\x1b\xf2\xad\x18\x6f\xc4\x7a\x43\x26\xbf\xc8\x7a\x6e\xe3\x11\xd8\x6e\xc4\x72\xc7\x0a\x3f\x3a\xc3\xf7\x11\x9c\xcc\x50\x74\xaf\x4a\xf0\x30\x51\x85\x01\x5b\xa0\xd7\x4d\x78\xe5\xc3\x71\xe5\x0a\x3d\xf8\xd1\xa4\x04\xb1\x5c\xaf\x27\x4f\x86\x91\xa9\x98\xfa\x6a\xab\xdd\xd3\x0f\xea\x1b\x8c\xb6\xcb\x6d\x02\x8b\x6c\x86\x74\xa0\xa6\x62\xb3\x42\x80\xfb\xf6\xb6\x0b\x57\x9f\x32\x3d\xe2\x8c\x6e\xea\x10\x67\x74\xd3\xda\x53\xfe\x84\xee\x17\xae\x97\x18\x4b\xdd\xf7\x85\x83\x44\xda\x14\xb8\xc2\x39\xe9\x3f\xef\x5d\x7f\x83\xee\xe5\xcd\x09\xe9\xb3\xbe\x83\x87\x6f\x42\xcc\x81\xe8\x04\xc0\x3a\x72\xef\x1b\x13\x52\x66\xbc\x82\x81\x1c\x4a\x65\x35\x32\x31\x73\x3e\x79\xae\xa8\xa8\xd7\x27\x41\xa6\xe3\xb1\x0e\xe9\x67\x29\xb8\x14\xf7\x06\x3a\xe5\xc6\x41\xfc\xbc\xae\xf2\x21\x37\x1c\xb9\x62\x8e\x24\x2b\xf0\x5c\x4c\x22\x38\x28\x6c\x7f\x63\xea\xa8\x4d\x87\xe5\x1c\x1b\x43\x4c\x42\xcb\xf7\x26\x9b\x9f\x5d\xf2\x4f\xb6\x4c\xdc\x30\x71\x41\xfc\x03\x05\xd1\x09\xa6\xf1\x9f\x20\xe7\x76\xd1\x01\x28\xab\xb8\x52\xff\x4b\x6b\xb7\x84\xd4\xfb\x2a\x06\x27\x4d\x5e\xe6\xf5\x37\x37\x07\x25\x1a\xe2\x15\x42\xc4\xa9\xe3\x42\xfd\x60\xbc\x47\xd6\x4b\x7b\xbd\x47\xd6\x23\xbe\xa6\x14\x92\x9a\xe5\xfb\x94\xca\x9e\xa3\x86\xd9\x28\x2e\xbb\x83\xa4\x15\x66\xb0\x97\xa4\xaf\xa0\xd7\x84\x92\x17\x6b\xf9\x95\x38\xdd\x46\xe0\xd2\x3f\xc5\x5a\x01\xe9\xfd\x04\x8d\xcb\xfe\x3d\x02\xa7\xfe\x03\x62\x3e\x3e\xdf\x0d\x89\xa2\x68\xc1\xaa\xe3\xab\x16\xb6\x24\x6d\x71\x71\xc2\xf6\x59\xae\x97\x74\x05\x4c\x10\x46\x70\x37\x10\xe0\x10\xbb\x50\xcb\xe8\x3f\x20\x12\xe8\x3f\x50\x0b\xb1\x3b\x88\x8b\xbe\x7b\x54\xfe\x20\x7a\xa7\x00\x98\xa8\xac\x31\x96\xb0\x72\xac\x80\x9b\x36\x48\x74\x7d\x13\xd1\x9c\x50\xb9\x5b\xac\xed\x73\xca\xe1\xd1\x1f\x8b\xc8\x9f\xe2\xad\x49\x70\x5d\x07\x42\x03\x0b\xfd\x3a\x7d\xd0\x5b\xf5\x3a\xb1\x6e\x4b\xd6\x2b\xf2\x6e\x21\x5a\xf4\xbe\x60\x7c\x2f\x22\xb9\xda\xf7\x66\x26\xea\x07\x77\xbc\xd0\xce\xf2\xcc\xbd\x26\xf6\xad\x95\xc8\x9f\x22\xd2\xe0\x76\xa0\x61\x74\x3d\x0a\xf9\xe3\x47\xa4\x67\xa1\xa2\x72\x43\x97\x55\x62\xb8\x81\x91\xc8\xdf\xc3\x5d\xd0\x17\x98\x55\x9a\x7a\x8e\x3c\x75\x8f\xfa\x9a\x16\xf0\xde\x1f\x26\xa9\xfb\x76\x68\xa8\xbe\xd1\xa0\xe4\xd2\xee\x15\xda\xf4\x95\xc7\x60\x96\xf7\x01\x07\x76\xd1\x4f\x5a\xea\x14\xb5\xae\xdc\xb6\x72\xb4\xc5\x1a\xc6\xa2\xfa\x56\xd0\xd8\xfa\x9d\x67\x40\x1b\xc6\xb8\xeb\xb2\x4c\xb8\x18\xd0\x6f\x92\x43\xc1\x4d\xe4\xf3\x27\x54\x65\x55\xe4\x90\x5c\xb5\xa1\xf8\x3d\x68\x31\x78\x98\x88\x27\x3c\x2c\x74\xa6\x81\x6a\x23\x51\x44\xc2\xc6\x78\x44\xc6\x69\x5e\x0e\x2a\xc8\x6c\x5e\x94\x79\x1a\xce\xe2\x53\xa4\x77\xbe\x79\x4d\xee\x36\x66\xca\xf7\xa8\x69\xd1\x4f\x5e\x1f\xe6\x2d\xd1\x86\x40\xbf\xf2\x34\x69\x15\x9f\x9e\x96\xb9\x4e\xca\x6a\x2e\x80\x50\xef\xca\x97\x57\x14\x65\xc4\x6a\x9c\x61\x5a\x9a\xa7\x3d\x05\xca\x1b\xb8\x28\x70\x92\xce\xfb\x7c\x6a\x69\xbc\xba\x3d\xd4\x79\x5f\x94\x64\x0c\x0d\xc4\x2b\x58\x17\xd8\x50\xba\x16\x30\x8d\x80\x9a\x06\xf6\xe1\xfb\x11\x71\x21\x1f\x22\xf5\x31\xe0\x8a\x04\x10\xd4\x47\x4f\x76\x82\xf3\xc9\xbc\x08\xbb\x98\x8c\xfa\xc6\xc3\xf8\x2b\x36\x74\x65\xc5\xa1\x13\x24\x2c\x77\x62\x4a\xa8\xd3\xe6\x61\x4e\x1c\x3f\x90\x07\xde\xa0\xec\xe5\x2c\xdd\xd2\x23\x34\x77\x5c\xce\x8b\xbe\x94\x95\x2d\x22\x16\xa3\xa9\x65\x2d\xbf\xe0\x27\x98\x17\x5f\xa2\xe3\x1e\x34\x3e\x6f\x1f\xbf\xcf\x04\x9c\x16\x3a\x24\xe5\x72\x5c\xb0\x3d\x9a\x89\xcb\x13\x02\xa0\x6a\x01\xac\x52\x84\xe0\x85\x35\xd2\x66\xf8\x58\xbe\x23\x70\xaa\x7f\x1f\xe7\xa9\x5a\xdb\x8a\xc4\x01\x92\xf0\x7f\x45\x48\xf8\x13\x88\x65\x1a\xbf\x64\x45\x18\xae\x48\x1e\x96\x71\xfa\x5b\xbf\xf9\x1b\xa6\x45\x89\xbc\x0c\x08\x31\x3d\x07\xf1\xe0\xef\x20\x19\x40\x5c\x83\x6f\xaa\xe9\x2a\xca\xe2\xc5\x37\x7f\x5b\xec\xbf\xcc\x04\x94\x0d\x99\x9f\x80\xe4\xb1\x81\x28\x9e\x25\xc2\x9e\x20\x6a\xe3\xac\xeb\xe6\x03\xd5\xf5\xcc\x24\xe8\x05\x5f\x64\x47\x89\x4f\x48\xf8\x60\x73\x87\x4e\x28\x95\x4a\x9b\xa3\x39\x07\xd8\xf2\x48\x4d\x94\xf1\x87\xd6\xda\xad\x06\x85\xf3\x76\x4f\x70\x61\xda\x42\x41\x32\xab\x60\x66\x7d\x41\x7d\xbf\xa5\x71\x7a\x68\xfe\xf3\x01\xf1\x04\x05\xd5\x36\xa3\xbe\x98\xca\xc0\x86\x49\x3c\xc7\x80\x74\x79\xbc\xf8\x41\x08\x0d\xaa\x88\x75\x83\x0d\x4d\x95\x8f\xfb\x83\x05\x9c\x41\x36\x27\x0e\xdd\x3a\xe4\x12\x3e\x9d\x0f\x28\x86\x33\xf2\xb6\x58\x73\x2d\x36\x6a\xce\x47\xab\xad\x06\xdd\x29\x93\x97\x0a\xe3\x8c\xa5\x24\x5d\x2a\x1c\x3a\xdf\x68\xae\xe0\x63\xeb\xf5\xcc\x54\x76\xdf\x8e\xf6\x20\xce\xfa\x7a\x57\x35\x54\x44\x24\x0f\x39\xab\x28\x73\x70\xc7\xcb\xed\x18\x98\x26\x63\x56\x11\x64\x96\x67\x93\xe5\xb8\x58\x71\xab\x73\x21\x82\x1d\x61\xd9\x3a\x33\x39\xb4\x87\xf2\x8c\x75\x0a\x56\x47\x79\x35\x70\x65\xf2\xba\x15\x58\x5e\x70\x9a\x54\x55\x66\x85\x6f\xf7\xb6\xe3\x5e\x3e\xf2\xc6\x64\xfe\xd4\xf3\x26\x39\xaa\x57\x6b\x10\xfb\xfc\x49\xd9\x31\xde\x58\xca\x7b\x47\x9f\x46\x96\x8c\x6a\xe0\x2d\x01\xa2\x1b\x44\x45\x36\xb5\xca\x71\xad\x11\x1f\xe4\x7d\xd9\xd5\xa6\xcd\xc7\xc8\xfd\xdf\x9f\x90\xd4\xd1\xd5\x88\xbc\xf1\x2e\x12\xba\xe2\x3b\x4c\x2b\xbd\x85\xfb\x0f\x60\xce\x96\xb5\x70\x38\x3c\x94\x58\x85\x26\xce\xb7\x90\xc4\x21\xd2\x3f\xda\x09\xa7\x46\x55\x8c\xab\xc1\x42\xb0\xf5\xff\x18\x81\xc1\x58\xd3\xf5\xed\xc0\x93\xfd\x4b\x59\x18\x7a\x2d\xdb\x19\x4f\xf0\xc6\x34\x13\x61\x3c\x9c\xa7\xbf\xa4\xf2\x30\xfa\x02\x59\x88\x8a\x08\x50\x95\xf8\x59\x93\x95\xa8\x64\x43\x3e\x5e\xe3\x56\xc3\x2c\x4c\xaf\x67\x7a\x4b\xbb\x0e\xb4\xfb\x71\x92\x61\x13\xa2\xfd\xf5\x09\x91\x87\xae\x91\xa6\xfd\x29\x02\xe6\x96\x55\x3e\x1c\x59\x27\x1a\x60\x8c\x0f\x08\xf6\xf4\x41\xa3\x2e\xc7\x30\x2f\x2b\x0c\xef\x2d\x8e\x49\x66\x01\xbc\xe2\x65\x84\x0f\x3c\x9e\xa3\x3c\x3d\x1c\xc4\x59\xe6\x74\xe6\x85\x64\x53\x00\xbd\x2f\x6b\x13\xe5\x92\x54\xdb\x38\x2b\xf4\xb1\xea\x3f\x10\xaf\xfd\xa6\x6f\x5e\x67\xf1\xd0\x95\x0b\xf5\x61\x81\x0c\xf1\x13\xde\x2f\x73\x10\x05\xf2\x5a\x97\x81\xca\xba\x59\xcd\x0b\xb1\xc9\xae\x53\x1c\x2c\x2b\x37\x94\xca\x74\x4a\x9e\x4d\x5f\x34\x41\xc4\x5d\x6f\xac\x36\xbd\x01\x42\xf2\xcf\xa2\x80\x18\xf8\x67\x34\x3b\x2b\x7d\x50\x42\x61\xa0\x58\x6c\x7d\xc1\x1c\xde\xd1\x28\x2f\xa5\x46\xd8\x3d\x65\x18\x18\xc6\x8f\xb2\x24\xd0\xc5\x40\x70\xd4\x6b\x7f\x67\x4a\xf7\x9a\xb6\xaa\x70\xcf\xde\xe1\x0e\xe1\x3b\x54\x32\xc5\xbd\x61\x52\x95\x28\xc0\x10\x48\xdf\x95\xb5\xad\xd7\x4d\x89\xaf\xa5\xb3\xad\x40\x4f\x45\xb2\x6c\xb9\x69\x98\xd5\xa5\xe3\x43\xee\x70\x5c\x0c\xe5\x47\x4d\x56\x2d\xa0\x3c\x42\x8a\x3c\xcc\x45\x02\xdf\x51\x5f\xf4\xaf\x74\x42\x5f\xf4\xaf\xac\xcd\x96\x0c\xed\xb8\xdb\xcd\x87\xa3\x38\x0b\xf4\x45\x64\x3d\x6f\x50\x06\xf4\x46\x83\x7c\xe5\x62\x3b\xcf\x1c\x99\xb4\xbd\x3b\x21\x8d\x92\x49\x70\x19\x3b\xd1\xc4\x67\x71\xaf\xbd\x66\x00\x64\x54\xd7\x6f\x91\x4e\xff\x5b\x84\x29\x18\xc6\xa9\x5b\x8e\xbb\x55\x5e\x00\x2d\x6d\xdc\x1e\xe2\xf9\xcc\xb2\x6a\x77\x09\xdf\xb3\x34\x9e\xb0\x37\x19\xf7\xbd\x9c\x8f\x9b\x08\x80\xcb\xe3\x0c\x5e\xfe\x6a\x26\x8d\xdd\xa7\x92\x44\x11\x3d\xa5\x49\xa0\xcd\x02\x3a\x8f\x98\xf9\x41\x83\x9c\xe8\x0b\xed\x6a\x10\x57\x52\x05\xe0\x8d\xae\xa2\x28\xc4\x47\x87\xac\x16\x8a\x97\x0b\x64\x5f\x7b\x43\xe2\x3a\x56\x99\x8a\xba\x9b\xd7\xc3\xc6\xef\xfa\xb5\x5d\xa6\xa7\xd3\x22\x30\xeb\x6d\x62\x90\xdc\x9e\x41\x6b\x7d\x45\xe4\x20\xe7\xa8\x1f\x78\x6e\x03\xd3\xad\x8e\xaf\x66\x77\x48\x11\x2e\x75\x2e\xd0\x1c\xfd\xb4\x27\x4c\x78\x08\x43\x56\xb8\x61\xbe\x12\xa7\xad\x80\xb4\x04\x82\xcb\xe2\x48\x18\xec\x64\xf9\x92\xd3\x01\x92\x61\x3f\xc9\x2d\xe7\xf6\x94\x87\xee\xcf\x91\xc3\x47\x5e\x62\x45\x20\xed\xd6\x8e\xa6\xbe\xa0\xc1\xc6\x72\x9a\x1f\x76\xba\x78\x70\x8a\xff\x09\x61\x9a\xfe\x24\x68\x8d\xc4\xe9\x21\x0f\x44\xb4\x90\x1d\xa0\x15\x57\xb8\xf4\xbe\x3d\xd3\x40\x14\xbc\xb8\x59\x00\xcb\xdf\x62\x67\x51\x6b\x26\x35\xc8\x7b\x8e\x0f\x15\x71\x5d\xe4\xcb\xbb\x23\xf3\xfe\x8c\x94\xb5\x3e\xa3\x41\xde\x57\xb3\xde\x1c\x0d\x45\xd6\x69\x7c\x35\xd7\x21\xae\x5a\xf8\x4a\xae\xd7\x93\x01\x58\xfd\x4b\xb8\xb7\x57\x26\x54\x1d\xdd\x9a\x04\x6c\xd0\x63\x9d\x00\x13\xb8\x42\x7f\xb4\xca\xdd\x1c\x4d\xe7\xbe\x27\x55\x81\x97\x7f\xf4\x6a\x11\x57\x9b\xc6\xf7\x85\x4b\x93\x15\x5d\x97\xa8\x62\x40\xb9\xd7\x6b\xff\x39\xd3\xf8\xf0\xaa\x2b\x0c\x85\x66\x1d\x31\x62\x38\x4f\x91\x61\x3e\xa0\xa1\x60\x99\x0b\x2f\xfa\xa5\xbd\x5a\x13\xdc\x25\x95\x9f\xbb\xf4\x2d\x96\x2b\xe4\x83\x20\x08\xdc\xa5\xae\xd4\x02\x04\xf0\x6c\x31\x3f\x16\x40\x46\x5d\x87\x1b\x87\xb5\xf0\x43\xe9\x51\xa9\x5e\x94\xa6\x90\xfa\x2f\xf2\x6e\xa6\x24\xb5\xf1\x70\xdb\xbd\x28\x16\x49\x59\x99\xac\x38\xf1\x84\x00\x19\xe8\x02\xdd\xbb\x93\x34\xd1\xbf\xe3\x65\x39\x61\x58\x68\x85\x87\x51\x03\xe9\x2c\x3e\x45\x09\x41\xe1\x46\x69\xdc\x75\x5b\xd9\x6d\x8b\xec\x00\xae\x13\x74\xfe\x24\xe9\xa6\x9e\x9f\xb0\x45\x0d\x52\x0f\x94\x42\x1f\xa3\x58\x31\x21\xaf\x59\x99\x8a\xbd\xed\x58\x1e\x6e\x9d\x1a\x9a\x19\x64\xc8\x79\x4f\x45\xa1\x8a\x58\xcd\xc7\xc5\xb6\x30\x9f\xb9\x2c\x99\x2d\x56\xe3\x26\xdc\x7c\x26\x4d\x68\xfa\x3b\x45\xb6\x8d\xc8\x37\xec\xae\xa6\xb9\x06\x5d\xaa\x6f\xa9\x29\xca\x37\x9c\x33\xc3\xf8\xd5\xdc\x34\x26\xbc\x7b\x5d\xfd\x6e\xfa\x22\x9c\xf4\xa3\xc4\xee\x35\x92\x80\x23\x11\x79\xa7\x1e\x21\xe4\xdc\x72\x5c\x0c\x21\x8e\x66\x7d\xa7\xa3\x12\xd9\xcc\x91\x75\x4a\x23\xc2\x15\x8f\x93\x27\xc7\x11\x56\xb9\xfb\x84\xd6\x2a\xbc\x04\xc9\x01\xec\x65\xb3\x3d\x91\xbb\xa5\x51\x27\xa2\x56\xdc\x3f\x9f\x10\x2c\x49\x39\x04\xc8\x95\xfe\x02\x39\x0e\x3a\x2b\x70\xa5\x22\xbf\xe5\x17\xb4\xe9\xf4\xc7\x24\x7e\x21\x7a\x8b\x5a\xc7\x1d\x72\x18\x01\x7b\xf8\x9a\x97\xe8\xdb\xd2\x09\xa3\xc4\x63\x53\x63\xa2\x20\x33\xf0\x29\xdd\xa7\x41\x9c\xf5\x92\x14\xce\x4e\xe8\x6d\xbc\x21\xbf\xa5\xd7\xd4\xcf\x1a\xb8\x5e\x1f\x99\x04\x4e\x39\x38\xbd\xb1\xe2\xb6\x59\x55\x85\xf8\x3f\xc8\x2b\x97\x0a\x3b\x0f\xa3\x23\x6c\x22\xdc\xc1\xcd\x92\xf2\xa0\xc1\x70\x73\x42\x76\xbd\x49\x3c\xac\x3f\x94\xb5\xea\xf1\x13\x97\xf1\x50\xf4\x85\x87\x2a\x97\x95\x2b\x92\x14\xdd\x57\x7c\xe9\x47\xd6\xc2\x0d\x78\x64\xc6\xa5\xc7\xba\x85\x85\x4b\xd4\xa9\x5f\x25\xe5\xf1\xf6\xa6\x2f\xef\xfb\x67\xea\xcd\xb9\x7e\x5c\xe4\xa4\x8f\xcf\x9c\x0d\xbb\x17\x05\xd3\x34\x4c\xba\xcc\x71\x38\x4b\x03\x89\x59\xc5\xa7\x5f\x6b\x8f\xb3\x72\x5c\x8e\x5c\x37\x10\xed\x3c\x73\xc9\x43\x75\x37\xd1\xed\x79\x87\x85\x11\x4f\xcd\xce\xc5\xf6\xaa\xfb\xa6\x00\x99\x5b\xde\xf4\x07\x45\x5c\x78\x2a\x3e\x1e\x0f\x62\xbd\x65\x3e\x26\xec\xdc\xe5\x63\xc2\xcc\x11\xb1\xab\x3d\x4c\x7a\xbd\xd4\x21\x15\x61\xd6\x1d\xa6\xcf\xe7\xa8\x31\xf1\x20\x0a\xd2\x59\xaf\x8a\x34\xa7\x67\xfd\xfe\xee\x84\x44\xb4\x7f\x97\x9a\xe8\x7d\x97\x55\xa9\x83\xcf\xcf\xa2\x89\xa2\xc1\x95\x43\xaf\x1b\x52\xb6\x97\xdb\x3d\xf7\x6a\x4c\xae\x22\x28\xf8\xf4\x7a\xba\x89\x38\x72\x55\x52\x25\x2b\x4e\xe0\x19\x5a\x21\x23\x7b\x02\x70\xe0\x5b\xf2\x05\xd0\x6a\xba\x36\x25\xeb\x12\xce\xa6\x7d\x7f\xe7\xef\x0a\xb7\x0f\xc5\x2d\xd2\x40\xd3\x48\x97\xef\x85\x0d\xaf\xe0\x5f\x9b\x22\x87\x58\xbb\xb5\xc3\xe7\x9c\x74\x48\xd6\x4f\x4b\xf0\x5a\x9f\x65\x2a\x8a\xb0\xa1\x70\x7e\xe6\x42\x49\xae\x5e\x80\x38\x8d\x70\x56\xa0\xbc\xfd\x88\xd4\x28\x32\x68\xdc\xb6\xfc\x14\x04\x13\x0d\xc4\x86\x4d\x6b\xc1\x08\x8f\x19\xb4\x7f\xbb\x1a\xb0\x05\x35\xfa\x00\x56\x64\x35\x68\xee\x96\xe3\x62\x94\x8e\x4b\x8b\xc4\x66\xd5\x21\x6f\x61\xe0\xbd\x06\x81\x5f\x97\xf5\xc7\xe9\x32\x5a\x30\x2f\x7b\xbf\x10\x89\x96\x66\x18\xc2\x0a\xb8\xd5\xca\x56\x04\x00\x0e\x72\x9a\x1f\x45\xd4\xbc\x7e\x8f\xf0\xc7\x8a\x62\x33\x3d\x2c\xf9\x44\x68\xa8\xdc\xc4\xf1\x64\x9a\x2f\x8c\x02\xcc\x74\xc8\x17\xb4\x68\xa7\x19\x8e\xe8\x6b\x83\xb5\x89\x45\x02\x43\x34\xc4\x98\xab\x4d\xea\x50\xf9\xe1\xc0\x8b\xc3\xfe\x03\x8c\x49\xaf\x9b\x5c\x48\x25\x54\x96\xcc\x4f\xf9\x6e\x14\xf8\x29\xdf\x6d\x72\x18\xee\xbd\x9a\xc4\x2d\x56\x49\x53\xf2\xb2\xbe\x20\x20\x4a\x3c\xae\x90\x26\xe1\xce\x7c\x22\x69\x92\xba\x56\x4f\xc2\x46\x3b\x4a\xc2\x5f\x47\x66\xfe\xe2\xde\x17\xf7\xb7\x53\x87\xce\x09\x62\xdb\x37\x88\x6b\xf3\x0d\xe2\xc2\xc4\xe3\x2a\xaf\x53\x6c\x0c\xbe\xbd\xcc\x02\x81\xcc\x9e\xf0\x7c\xde\xae\x13\xd1\x04\x79\x6e\x18\xa2\xa8\x3d\xb1\xbe\x68\x32\x3c\xaa\xe2\xac\x0e\x1a\x89\xb2\x3d\x94\x89\x47\xce\xe9\xc7\xe9\x84\x7b\x35\xce\xc6\x71\x01\xa7\x1d\xe0\x36\x15\xf8\xe8\x25\xa1\xbc\x53\xa4\x3a\x15\x9a\x3e\x54\x18\xde\x26\xc3\x91\x2b\x96\x45\xa0\xc3\x4f\xe8\xde\x93\xbf\xa7\xd7\x4d\x45\x43\x99\xa7\x49\x4f\x81\xc6\x4a\x9e\x9e\x22\x52\xd3\x88\x33\xce\x2a\x9f\x00\x79\xb3\xcf\x10\xf2\xaf\x35\x08\x47\xec\x6f\xf7\xf2\x61\x92\xc5\xbe\xa7\x69\xba\x71\xf2\x15\x4c\x51\x2e\x1c\xc5\x43\x57\xc5\xe9\x96\x0d\x83\xd8\xfd\x1a\x8e\x2f\x00\xfc\xaf\x2f\xc8\xb9\xec\xe6\x84\x4d\xff\xf1\x99\xcc\xa9\x3d\x1c\x28\xf1\xb8\x52\xe1\x23\xcc\x31\x7e\x10\x91\x08\xe6\x0f\x1a\xc0\x9d\x2f\xb7\x87\x71\x16\xf7\x37\x54\xa9\xad\xb5\xb0\x44\x5a\x9d\x10\xd4\x5c\x52\x0d\x5c\xb1\x25\x88\x10\x5d\x47\x4f\x08\x8b\xf6\x0f\xea\xe7\xf0\x70\x8d\x7c\xe3\x55\xc5\xcf\xfc\xdb\x5a\x5e\xb3\xeb\xdb\x33\xd1\xec\x2b\x82\x32\x3d\x2c\xf8\x33\x79\xb6\xa6\xed\x1a\xb8\xf6\xfc\xa0\xca\x71\xaf\xe7\x32\xb9\x8b\x26\xc3\x4c\xdc\xde\xcb\x34\x5e\xbd\x18\xcd\x36\x46\x4d\x63\x90\xd5\x94\x42\x2d\x3e\x74\x71\x1d\x34\xd4\x42\x02\x23\xd1\x77\x68\xee\x7c\x8e\x88\xac\x0a\x0a\xd0\x1f\x8a\x9e\x9e\x66\xcd\xee\xd9\xd3\xfe\x32\xab\xd6\x5e\x24\xd5\xda\x8b\xd3\xde\xaa\x43\xf7\x68\xbd\x2f\xac\x6f\x11\x60\x07\xd8\xae\x68\xc1\x5d\xc1\xe0\x0f\x81\x54\xe7\x9d\xfa\xa2\x43\x26\xea\x6a\x16\x8c\xa5\x07\xac\x04\xc6\x1b\x5b\x3a\xb4\x96\x37\xa9\x3f\x84\x22\xd7\xa2\x30\x70\x3f\xcf\x38\xee\x71\x96\xc0\x07\xfe\xe0\x8e\x75\x39\x90\xd6\xcf\x7b\x9e\x5c\x39\x5e\xca\x8b\x9e\xac\x7d\x39\x1f\x01\xb6\xb8\x4c\x5e\x64\x3f\xc2\x0e\x47\xe9\x77\x66\x66\x1e\xf0\xdc\x73\x7e\xf3\x50\x03\xf4\x38\x37\x40\x8f\x13\xe1\x69\x34\x2e\xca\x71\x82\xf5\xa1\x9d\x66\xb2\x9a\xfd\x64\xca\x2a\x7f\x38\x1a\x57\x28\x27\xac\xee\xd8\xb4\x46\xb6\xf7\xff\x0f\x63\xc9\x36\x61\xfa\xed\x1f\x2f\xf1\x38\xc9\x74\x5e\x56\xd5\xfa\x36\x74\x8e\xb1\x84\x80\x05\x43\x31\x7b\x5c\x4b\x2d\xfd\x63\x9d\x50\x43\x7e\x88\x84\x81\x10\x1b\x46\xd1\xbc\x10\x31\x09\xbd\x9b\x0f\x25\xad\x37\xde\xa8\xfc\x16\x76\x12\xb4\xe7\x4c\x97\xc3\x77\x02\xd4\xde\x34\x64\x9a\xaa\xdc\xad\x3e\xd1\xa8\x60\x70\x54\xdf\x69\x14\x83\xcc\xcb\x32\x01\x0b\x9c\x3d\xd8\x0c\x95\xc7\x2b\xf4\xd0\xa1\x42\xc0\x30\x38\x64\x3e\x94\xbc\x4b\xaf\x3d\xd7\x48\x30\xe9\x95\xeb\x56\xf3\x01\x52\x7e\x57\xea\x1d\x43\x2b\xca\x77\x37\xac\x64\x78\x74\x8f\x76\x9a\x34\xb2\xd1\x95\xd4\x68\x6c\x90\x11\xc6\x8f\xd0\xd2\xe8\x0e\xe2\xe1\x92\x2b\xb6\xb6\xbc\x5f\xe4\x6d\xe9\x0a\x82\x1f\x73\x93\xe9\x76\x77\x10\xb4\x10\x63\x4f\xc8\xa9\x83\xa2\x08\x63\x0b\xac\x8f\xb9\xb5\xd6\xce\x9d\x2c\x15\x10\xe0\xc5\xd9\x73\x22\xca\x07\x7c\xcf\x14\xa2\xf7\x13\xda\x6b\xa8\xaa\x6c\x88\xf4\x14\xb1\xbf\x8b\xc2\x3c\x97\x77\x69\x75\x77\x1b\x6f\xa2\x2f\x9a\x98\x6a\x65\x9a\x1f\x16\x67\xf6\x40\x5c\x84\x2c\xb3\x5e\x4f\x02\x65\x54\x4c\x7b\xe6\x49\x66\x00\xa8\x22\x2c\x38\x6d\x21\xa0\x59\x79\x81\x9a\xf8\x47\x28\x77\x8d\x93\x02\x1e\xb4\xd6\xaa\xbd\x46\x54\xb7\xf7\xf1\x59\x91\xa3\x9d\x6b\x22\x49\xba\xee\x20\xb7\x5e\xb2\xe2\x66\xa6\x30\x34\x34\x7a\x1c\xe4\xe3\xb4\xf7\x58\x50\xd7\xfd\xce\x84\x04\x01\xcf\x32\x69\x57\x51\xaf\x78\x20\x47\x36\x08\x03\x84\x99\xfa\x11\x52\x85\xf8\x0e\x77\xb7\x64\x53\x63\xbe\xfa\xc8\x5a\x50\x4e\x3b\xab\xbd\x29\x2f\xaa\xf8\x92\x4f\xd2\x6f\xcd\x3c\x87\x9d\xbb\x20\xe4\x96\x74\x5b\xe1\x7e\x9c\x23\x76\xec\xb9\x99\xfa\x68\xcf\x9e\x76\x91\x94\x87\x4a\xd9\xd7\x68\xe4\xa9\xc8\x0c\x96\xd9\x39\xc6\xb7\x6e\xe9\x10\x9f\x3a\x17\xa8\x24\xfa\xab\xe8\x3b\x1c\x23\x3a\xdd\x4d\xb2\xfd\x3b\x43\x8f\xae\xac\xe2\xbe\xdd\x7b\x2c\xa7\x23\xbc\xb6\x8e\x44\xcf\x6e\xf8\x80\x5f\xfd\xad\xf6\x73\x4a\x6f\xc3\x1d\x9c\xeb\xc8\xf8\x14\x8d\xa5\x9b\x88\x92\x86\xbf\xe4\x6d\x90\xa6\xab\x5f\x0c\x2c\xbe\xf5\x09\x09\xe4\x7f\x7f\x42\x5c\x4f\x68\x69\xa0\x17\xf9\x30\x0a\x42\x6e\x47\x05\x6e\x61\xdd\x42\x39\xca\x10\xde\xe6\xd6\x08\xda\xf4\x0d\x46\x4d\x6d\xea\x90\x47\xc1\x5d\xf8\xe1\x58\x97\x0a\x8f\x11\xbb\xe1\x2a\x8e\x49\x8c\xee\xaf\x49\x18\xf0\xfe\x55\x5e\x25\x1a\x5c\x0b\xc9\xa7\xf6\x7d\x69\x8d\x30\x84\x97\xd9\x2a\xe8\x48\x14\x88\x9c\x0f\x81\xaa\xb5\x99\xc3\xdc\xde\x5d\x07\xd6\x2f\x03\xb5\x8b\xf3\xff\x67\x54\xa6\xae\x1e\x52\x8a\x3b\x1a\x95\x47\x49\x80\xfc\x28\xcd\x08\x86\xf1\x6b\x49\x37\x2e\xdc\x16\x7c\x7e\x44\xab\xe3\x11\xb5\x22\xde\x26\x67\x38\xad\x3c\x51\x17\x5c\x8d\xc2\x54\x56\xbb\x26\xfa\xeb\xd4\xf7\x59\x1a\xa7\x4b\xa8\xe6\x4d\x12\xb1\xe5\x2d\x63\x1e\x4c\xbe\x40\x7e\x4b\xd0\x04\x4c\xf2\x8c\xb1\xe6\xd8\xf8\x7a\x3d\x83\xf8\xaa\xeb\x10\x37\x2e\xf2\x5e\x9e\xa6\x71\x21\x4b\x5c\x6d\x88\x3a\xe1\xa3\x9d\xe7\x49\xc3\x8d\x99\x22\xe2\xe0\x8e\xc5\xfa\xb0\x1e\x26\x95\xcf\x9f\x4d\x3d\xb6\xe5\xf5\x17\xfe\xc3\xe4\xe7\x03\x95\xda\x15\xc5\xea\x30\xce\x7a\x60\x15\x87\x21\x17\x38\x90\x66\x8d\x4a\x26\x37\x67\x27\x1b\x17\xfd\xae\x03\xed\xe5\xa1\xec\x61\x93\xf8\x23\x78\xe5\x67\xa1\xa7\xfc\xf5\xb1\xf8\x00\xce\x53\x4d\x74\x69\xca\xf5\xfe\x16\x57\x48\x53\x44\xdf\x5b\x93\x50\xd9\x0e\xe2\x34\x9d\x0b\xc7\xc9\x1f\x52\x05\xfa\x97\x74\xae\x7f\x97\x7e\x25\x4e\xd5\xd5\x44\xf3\x90\x88\x5a\x1b\xff\x88\xf2\x9c\xc2\x55\x71\x92\xba\x62\x2e\xa0\xa1\x35\x13\xc6\x80\xf7\x24\xdb\xf1\xdd\xf1\x4c\x1d\x71\xd2\x10\xea\x31\x89\xd2\x1e\x63\x10\xc4\x69\xd2\x14\x6a\x02\x22\xee\x6d\x1f\x8e\xb3\x00\x14\x30\x98\x6a\xfd\x4b\x86\x65\xe5\xec\x61\x58\x3e\xff\x48\x50\x0b\x39\x22\xd1\x18\xa7\xd3\xd6\x4e\xbd\x3f\xa9\x51\xb0\x97\x9d\x5e\xd9\x7f\x86\xe8\x72\x75\xc0\xc7\x61\x0e\xc6\xc7\x94\x47\x15\x40\x58\xf3\x9d\x29\x05\xa9\xcc\x95\x79\x15\xe3\xc3\x22\x30\x41\xa9\x59\xaf\x9b\xc8\x56\x4b\xf5\x9a\xc4\x9d\x45\x4f\xed\x1a\x20\xb3\x5e\xff\x3e\xb8\x98\xd1\xc6\x1f\x17\xee\x89\xd6\xaf\xbf\xe4\x8d\x24\x5a\x3b\x77\xad\x43\x39\x02\xb1\xee\x5a\x44\x2c\xda\x5f\x00\x2b\x14\xc5\x09\xf0\x7e\x98\xb9\xfc\xb5\x8e\x3c\x37\xe4\x25\x0a\x56\xc0\x5e\x00\xec\x1b\x8b\x6c\xae\x43\x4d\x1b\xa0\x33\x0d\x9a\x15\x64\xd5\x37\x77\xc8\x96\xfc\x3d\x3c\x63\xfc\xc1\x2d\xd3\xc3\x1c\x62\x17\x56\x71\x25\x4e\x6d\xf3\x41\xb6\x1d\xe9\x9a\xd2\x61\x88\xa7\xfb\x31\x96\x26\x50\x0d\xc7\x67\x0e\xc0\xaf\xed\x6a\x2f\xb9\x7e\x92\xb5\xc8\x64\x28\x9a\xd2\x88\x6a\xb0\x3b\x1d\x15\xae\x2c\xc7\x85\x6b\xe9\xcd\x5b\x5c\x5c\xbf\x4c\x38\xcd\xc1\xb8\x57\x2a\xf6\xc1\x4e\x43\x82\x76\xdc\xf4\xb9\xd0\x72\x92\xa5\x71\xd6\x13\x1d\x10\x83\xbf\xc8\x0f\x5a\xb6\x86\xad\x8c\x02\xf2\x14\x89\x55\x3d\x68\x24\x50\xc5\x3d\xe5\x5c\xa3\x6f\xa0\x22\xb7\xd6\x7a\xc5\x7b\x19\x48\xc6\x42\x48\x9a\x8f\xca\xc4\x73\x50\x90\x25\xcc\xad\x85\xec\x61\x8e\xaa\xeb\x6e\x5c\xa4\xb9\x36\x60\x3c\x66\xaf\xfe\x13\x56\xc8\x6e\x0f\x4d\xd0\x39\xc2\xa3\x5d\xd0\xbf\x8d\x7c\x1b\x6a\xd2\x18\xa0\xdc\x6c\xb0\x05\xdd\xbb\xbf\x9d\xc6\x87\x5b\x01\xdd\xaf\x61\xcb\xa8\x41\x33\xc6\x06\xbb\xda\x85\x5b\xc9\xd3\xe0\x52\x80\x6e\xc2\x75\x12\xed\x7a\x38\x45\x16\x08\xdf\xa8\x18\x0f\xeb\x4c\x37\xb0\x07\x60\xd6\xa1\xd7\x33\x7b\xee\x95\x57\xda\xf5\xa2\xd3\x66\x92\xd5\xb2\x61\x16\x76\x7e\x7a\x84\x97\x17\x55\xf9\x48\x00\x17\xbd\x3d\x09\xdd\x80\x16\xca\x61\x4c\xbd\xe6\x60\x3e\xac\x4e\x63\x93\xc0\x87\x78\x9f\x30\x27\x5a\x1a\x23\x4f\x51\x0f\x5f\xfc\xc6\xbd\x88\xe0\xfa\x37\x1a\x80\xb4\x85\x1b\xa5\x4e\x2b\x60\x6c\x2c\x30\xd6\xcc\x98\xbe\xfe\x23\x40\x28\xbd\x43\x5f\xa0\x3e\xbf\xea\x85\x11\x26\x72\xf0\xfb\xd7\x6b\x2f\x97\x86\x81\x02\x72\x09\xe4\xaf\xa7\x49\xf9\x79\x56\x2e\x47\xfc\x0c\x44\xc3\xd6\x56\x9d\x21\xef\x5b\x5e\x53\x8c\xbb\x1d\x3d\xd7\x8d\x7b\xae\x9c\x0f\x79\xb3\x56\x69\xb8\x47\x37\x22\xc6\xce\x92\x31\xd3\x3f\x99\x7c\x61\xba\xd9\x71\x70\xc7\x0b\xf5\x7f\xd2\x9c\x47\x05\xf6\x0e\x0b\x87\x7e\x2c\x8f\xde\x86\x16\xe4\x7a\x7f\x9a\xc0\xf6\x17\x67\x66\x34\x12\x0d\xf2\xd2\x75\xc7\xe1\xb0\x41\xe4\xff\x23\xb9\xc9\x7a\xdd\x04\x45\x5d\x71\x65\xe9\x3b\xb9\x5e\x63\x7c\x31\x18\xd6\x07\x19\x4d\x71\x13\x2e\x08\x8a\x76\x81\xbc\xc8\x2f\xf8\x26\xe9\x38\x4b\xf3\x40\xb1\xc7\xc2\x39\xc1\x36\x07\x27\xa6\x9a\x3a\x59\x5e\xce\x07\xb2\xd7\x75\xea\xef\x62\xb8\xa1\xd7\xc4\xae\xb9\x4e\x18\xa9\xd2\x65\x49\x5e\x6c\x23\xb4\xd6\x45\xe2\x4a\xfd\xbf\x11\xe9\x69\xdc\xe0\xbc\xf0\x0d\x64\xbf\xde\x59\xda\x6f\xa5\xd3\xe8\x84\xf9\x59\x76\x10\xab\xbd\xeb\xe3\x55\x96\x74\x07\x79\x1a\xeb\x4d\xb3\x69\x2b\x45\xa1\xd6\x5a\xa8\x51\xfa\xae\x18\xc6\x59\xb9\x10\x40\x4d\x17\xb8\x5e\xc0\x84\x5b\xff\x81\xac\xc9\x95\xc7\x85\x09\xd1\xbd\x99\x05\xbc\x6f\x47\x3b\x1e\x8d\xf2\x24\xf3\x0b\x18\x75\xd3\x7d\x02\x43\xdc\x9f\xc9\x23\x9f\x7b\xae\x3d\x72\x85\xa8\x9c\x15\x1a\x43\x6d\x79\xc9\x57\xd1\x17\x5e\x83\xa2\x5b\xe7\xac\x95\x2b\xe2\x34\x79\x1d\x34\x33\x4b\xb2\x31\x1a\xc5\x47\x7d\x48\x1c\xad\x87\x08\xc6\xaa\x16\xd7\x04\x51\x03\xbf\xc7\x7a\xe8\x28\x33\xbe\x83\xc3\x4e\x5f\xd0\x38\x6c\x39\x2f\x5c\x37\x2e\x2b\xff\x71\xbd\x5a\x58\xe8\x00\x79\x5a\x32\xd4\x9d\xfc\xc7\xba\xc4\xae\x3c\xf0\xcd\xd6\x7f\x88\xa6\x00\xf4\xa1\x8d\x17\x57\xd0\x5b\x66\x70\x8a\xd2\x63\xd4\x7c\x45\x0f\x11\x53\xd8\x7f\xca\x93\xb3\x8b\x9e\xab\x5c\x9a\x62\xc4\x67\xea\x9b\xf2\x9b\x26\xbf\xb9\xf1\x09\x1e\x78\x11\xaa\x33\x75\x84\x96\x73\x1f\xf0\xd9\x53\xc4\xf7\x65\x24\xa8\xe0\xe9\x0a\x57\xb6\x02\xf9\xe3\x5d\x22\xdc\xbd\x4b\xe5\x4c\x3f\x8f\x55\x06\x14\xcb\xfb\x64\x14\x8a\x8e\x93\xc4\x78\x4a\xb2\xae\xcb\x7a\x89\x78\x59\xfb\xda\x47\xf3\x0e\xf3\x1c\x6a\xf0\x0d\xa8\x8a\x71\xc9\xd2\xdf\x97\xc8\x82\xf0\xd2\xcc\x92\x43\xa2\xb2\x12\x27\x41\xbb\x0e\x9f\xe4\x36\x19\xdc\x3f\x9c\x42\x34\x35\xa9\x2b\x40\x76\xda\x62\x9b\x07\x77\x78\x91\xe0\x0b\x8d\x5a\x84\x49\x56\x9f\xc9\xa6\x20\xd7\x24\xd4\xd7\x94\xb3\x27\x59\x09\xb9\xa1\x7a\xf9\x98\xfb\x98\x2c\x19\xb3\x25\x6b\xb2\xf8\x1e\xb8\x74\x34\x17\x2a\x67\x96\xf5\xbc\x41\xb6\x37\xcd\x72\xf9\xab\xf5\x12\x07\x9c\x08\x49\xc9\x6d\x69\x02\xa8\xb3\x0f\xca\x67\x03\x0a\x72\x7f\x21\x4f\x87\xf3\x61\x08\x76\x9e\x41\x2d\xe7\xb1\xfc\x31\x92\xff\x2e\xf6\xb7\xbe\x88\x1e\x25\xea\xe0\x5f\x25\xbd\x14\x90\x38\xb4\x4e\xc7\xc4\x05\x79\xcc\x71\x01\xff\xaa\x90\x91\xc0\x47\x94\x6d\xcf\xed\x43\x8e\x21\x0b\x62\x78\xeb\xed\x8b\x7e\xf3\x37\x14\x12\xa6\x48\x19\xd3\x8e\x62\x43\xd3\x88\x94\x20\x4f\x8b\x77\x2e\xea\x86\x1f\x4e\xa6\x9c\x9c\xeb\xa7\x87\x5f\x3f\x8b\x0e\x00\xfa\xab\xdf\x9e\x90\xf5\xee\x39\xa2\x8a\x6f\xef\x4c\xb9\xc0\xed\xdb\xb1\x3f\x40\x02\xeb\x23\xc0\xb3\x51\xf7\xbe\x68\xc3\xdb\x47\xd7\x5a\xcf\x3d\xe7\xe1\xb3\x92\x17\xa1\xc6\x7b\x6a\x2d\xcc\x9a\xe6\xd6\x02\x58\xe7\x04\xce\x7f\xe4\x35\xe0\x64\x21\x44\x9c\xc0\xe0\x1e\xf3\xba\x39\x31\xfb\xb5\xe1\x05\x22\x09\xda\x34\xeb\x4d\x23\xd6\x2a\xaf\xea\x7d\x2c\x5f\x0b\x5b\xe6\x26\xf6\xa6\xbe\xf8\x5c\x6e\xd9\xd2\x78\xd5\xef\x35\x8f\x2e\x5d\x5c\xf4\x32\x8d\x81\x16\x7a\x7c\x6a\x31\x95\x55\xbc\x40\xf2\xbd\xa7\x09\x8f\x63\x1f\xd7\x46\x6e\x72\x4f\xfc\x7e\xf2\x82\x4d\x77\x49\x0b\xa8\x3b\x70\x59\x92\xa6\xda\xe0\xc1\xd9\xfc\x6d\xe2\x5e\x7e\x7b\xf2\x38\x09\x98\x64\x6e\x5b\xc0\x28\xdc\x9a\x84\x6e\xd4\x26\xd1\xb9\x31\x3f\xfe\x80\xdb\xb9\x39\x09\x80\x93\xdb\x28\x39\x71\xea\x9d\xc6\x2d\x47\xfa\x02\xeb\x10\x34\xc6\x1e\x52\x4f\xf5\x50\xd2\xeb\xb9\x62\x7b\xfd\xd6\x2a\xe2\x24\xfb\x0d\x77\xe5\xb6\x7c\x71\xe4\x1d\x8f\x41\x5b\x06\x4b\x09\x62\x07\x88\xcd\x57\x88\xd5\xa9\x76\xb4\x5e\xea\xa0\x5e\xd4\xfa\x53\x13\x0a\xc3\x58\xa1\xfa\x56\xd1\xb3\x34\x86\xc9\x47\xae\x88\x2b\x8f\x6b\xc4\x3e\x5b\x93\x6f\xa8\xd7\x33\xae\x89\x7b\xf6\x08\xed\x37\x4d\x5d\xb7\x1a\xc7\xe9\x5c\x68\x83\xfc\x28\x6a\x6d\x74\xdd\xb0\x36\x87\x57\x96\x49\xf3\x22\x96\x5f\xf1\x6c\xc1\x69\x07\xc4\xfd\xeb\xb3\xd2\x55\x7b\xf6\xa8\xe3\x67\x60\x4a\x1e\xa5\x5c\xeb\x68\x93\x51\x44\x5d\xa9\x08\x02\xff\xe0\x8e\x30\x42\xf3\xde\x12\x97\x18\xe5\x13\xaf\xac\xac\xb6\x88\xc4\x0f\x8a\xa0\x79\x02\x3f\xc9\xcd\xdb\xfa\x2d\x05\x1d\xe3\x89\x31\x8b\xd3\x9c\x51\x63\x96\xd6\x81\xca\x28\xa7\x4d\xda\xe1\x49\xb7\x4a\x00\x80\x37\x31\x88\x80\xc2\x3e\x4e\x99\x6f\x16\x8f\xd4\xcc\xdc\x78\xe9\x6a\x26\xa4\x2f\xa2\x9f\xa3\x8a\x25\xed\x9a\xea\x3a\x92\x86\xa3\x6c\x9c\x7d\xd4\x27\x91\xd5\xa0\xc8\x83\x99\x28\x1a\x21\x0f\x10\x47\x58\x13\xc6\xb4\xe1\xc3\xb1\xdd\x73\xcb\x49\x96\x54\x2e\x5d\x85\xe4\x25\xfa\xa5\x17\xb0\x07\xf4\x45\x03\xca\x63\xb1\x5d\xc5\xd9\x21\x7d\x7c\x6a\x32\x17\xb1\xe1\x5c\xd0\xab\x00\x4c\x34\xc9\x33\x24\x42\x28\x47\x3e\x92\x3b\x6b\x70\x9c\xd0\x56\x58\x6f\x92\x4d\xae\x17\xa6\x3c\x74\x1d\xb8\x45\x61\xe3\x5e\x64\xbb\xc2\x55\xf4\x0d\xcd\xa5\x1d\xfa\x1b\xe8\x53\xfd\x08\xf7\x42\xff\x41\xba\x3e\xfa\x0f\x5e\x38\xa5\x88\xb3\x6e\x5e\x60\xdc\xd3\x24\xa6\xfd\x45\xff\x87\xf2\x51\x9d\x66\xc9\x94\xd6\x95\x0b\xf2\x17\x4d\x13\x95\x3b\x95\x0a\x10\xd6\x17\x11\xc9\xd2\x61\x58\x8e\xd2\xef\x16\xf1\x41\x7a\xae\x2b\xe6\x6c\x62\x28\x6d\x02\x5f\x21\xd8\xaa\x7e\x82\x59\x0e\x4a\xd8\xf4\xe6\x60\xe4\x6a\xd9\x0a\xff\x3f\x22\x7d\x0d\xdd\xbe\x98\xbe\x7f\xd8\x24\xd7\x5c\xc4\x85\x53\xd0\x06\x1e\x3d\x72\x0d\xbd\x9e\xfc\x4a\x13\xa4\xbc\x1c\x8f\x5c\x31\xad\xb0\x62\x80\x6b\x02\x5f\x37\xf1\xeb\x96\x93\xd7\xa6\x39\x69\xa7\x88\x93\x76\x8a\xed\x1d\x5c\x51\x24\x29\x00\x1c\xf8\xd7\xcf\x26\x41\x6d\xe8\xf2\x84\x94\x02\x7f\x86\x2f\xac\x2f\xf0\x85\xf5\x57\xe4\xcd\xf5\x57\xa2\xa7\xf9\x64\x19\x26\x5d\xc9\x71\x77\x1d\xd0\x16\xd1\x29\x1c\x49\xfa\xc2\x03\x2e\x07\x79\x9a\xf4\xe2\x55\xa5\x2f\xa2\x17\xf7\x2e\x49\x42\x6c\x46\x6b\x11\x49\xc7\x77\xa3\x40\x6e\x3f\x45\x53\xce\x6d\x33\x56\xde\xbb\x17\xe1\x3b\xd6\x9a\x32\x48\xa3\x6e\x91\xb7\x51\x5a\xca\x87\x4b\x73\x81\xe6\x81\xc9\x82\xe2\x3e\xe4\x34\xc1\x3a\xe1\x00\x67\x06\xa5\x81\x61\x8d\x64\xd0\x1b\x4d\xef\x5e\xf4\xe2\x8f\xb3\xdb\xfc\x85\x76\x9c\x78\x0d\x6b\x8c\xef\xfe\xa1\xfc\x51\xbd\xa6\x53\x37\x53\x8e\x80\x21\xb8\xfe\x90\x14\x86\xff\x90\x88\x98\x71\xda\xcd\x07\x79\x4a\x96\xc5\xa7\xe4\x03\xe9\xf5\x84\x85\x28\x04\x27\x9a\x17\xa5\x64\xa5\x1e\xe9\x40\x4e\xa3\x84\x6b\x53\xab\x51\xfd\x29\xc2\xd4\x8e\x8a\xbc\xeb\x4a\x45\xec\x99\x56\xd8\x55\xe2\xa9\x5e\xa5\x1d\xb8\x94\x17\x45\x7e\xd8\xdc\xc1\x9b\x64\xdd\x69\x66\x9b\xc5\x69\x0e\x7d\x07\x34\x8d\x55\xff\x10\x19\xe8\x3d\x8d\x05\xfa\x0a\x9f\x4e\x7f\x6e\xca\x2e\x22\x41\x5c\x44\x76\xfe\x38\x4d\x54\xb6\xae\x85\xb6\xf3\xa9\xa6\x44\x3f\x4e\x54\x23\xce\xcb\x0c\xfd\x64\x12\x96\xcd\x4f\x70\xe6\xda\x88\x5a\x10\x59\x60\xb0\x4d\x97\x22\xf5\x1f\xb7\x52\x64\x16\x6a\xd5\xce\x5c\x3f\xaf\x92\x78\xe3\xa8\x08\x27\x96\xcd\x8d\x9e\x22\xa8\x15\x3c\x4f\xb7\x84\x74\xe3\x2a\x76\x13\xbe\xd4\x5d\x4a\xf0\xb0\x45\x40\x37\x38\x31\x21\x22\x94\xba\x37\x11\x83\xd1\x6e\xf9\x8a\x2b\xe2\xbe\xeb\xcd\x07\x79\x8a\x37\x38\x5d\x82\xd6\x95\xfe\x43\x44\x92\x51\x67\x82\x38\xab\x4b\x5d\xbf\x88\x47\x83\x16\xfb\x26\x2b\x45\x4f\x5f\xcc\x94\x7f\x07\x5e\x6c\x97\x71\xb7\x48\x96\x93\x2e\x50\x33\x68\x34\x9e\x8e\x02\xb1\xe2\x74\x43\xf5\xb7\xbf\x3d\x4a\xaa\xee\xc0\xda\x13\x68\x6a\x20\x25\xb2\x17\x3e\xb8\x8c\x52\xf1\xb5\x9c\x27\xf9\xb7\x23\xb4\xd5\xee\xcb\x93\x05\x66\xf7\x41\x44\x04\x81\x63\x5e\xf0\xa0\x1b\x8f\xe6\xeb\x1c\x05\xfd\xd8\x9f\xe0\xcf\xa0\x20\x51\xa5\x7d\xef\xed\xe5\x87\xf4\xeb\x33\x13\xf7\xfa\xab\x8e\x5c\x2c\xbd\xb9\x83\x3b\x42\x82\x52\xff\x45\x4b\x50\x66\xb5\xff\xe2\x51\x5c\x54\x43\x91\xf4\x58\xb4\xd6\xe5\x05\xca\xb9\xd4\x1e\x16\xd8\x86\x37\x67\x4e\x83\xdd\x8b\xed\xe5\x78\x9c\x2a\xd1\x94\x4f\x5f\xd4\x50\xea\xb0\x66\xc0\xb1\x8d\xbf\xfe\xd7\xdb\xf1\xb8\x1a\xe4\xe8\x26\x22\x35\xba\xc7\x9d\x96\x7b\x53\xe3\xbb\x7e\x92\x67\x31\x02\x10\x6e\x21\x50\xb4\x7a\x5d\xa7\xd2\xd6\xd2\xe8\xb9\x3c\xcd\xfb\x70\xf3\xdb\x6d\x78\x1d\xb5\xaa\x65\xc9\x7a\xc4\xae\x4f\x85\xb7\xe2\xed\x7e\x02\x6f\xf9\x04\x4d\x9f\xc7\x85\x40\xbe\x57\xd9\xc9\xfa\x16\x3b\x59\xdf\x22\x29\xc6\x6e\x9e\xf5\xd3\x7c\x08\xc2\xa4\x6c\x22\xe5\xe6\x48\x44\x32\x9e\x4e\xc3\x34\xa7\x70\xdd\xbc\xe8\xc1\x97\x7a\xd1\x9f\xf8\xf5\x47\x45\xf2\x7e\x73\xfa\x3b\x3c\xe3\xff\xe2\x72\x92\xc5\x59\x37\x71\x85\x9b\xab\xbf\x0c\x16\x09\x48\xd0\x28\x35\xfe\x1d\xcb\xad\xbd\x4b\x14\x89\x61\x7c\xc8\x95\x8f\xc9\xea\x35\x43\x08\x02\x2a\x9f\x9c\x08\xcc\xc3\xf4\x9c\x02\x9a\xfc\x5b\xa8\x9b\x51\xe0\x5c\x9a\x3a\x77\x27\x81\xa4\x86\x2a\x18\x3f\x34\x27\xd3\x4b\xb5\x63\x93\xf6\x8b\xb2\xae\xf0\xc9\xb0\x5d\x6e\xcb\xf0\xd2\xd6\x5e\x08\x4f\x65\xd7\x65\x71\x91\xe4\xb4\x52\x30\x70\xd7\x6b\x42\x0d\x25\xd9\xab\xe3\x22\x31\x64\x87\x2e\x3d\xb9\xf1\xb6\x0c\x43\x14\xff\x3b\x2f\x7c\x75\xa1\xf5\xd2\x5e\x8d\xef\x17\xc9\xd8\xe6\x56\xc0\x1f\xfe\xa3\x2f\x90\xd9\xf9\xbb\x1c\x70\x66\xbd\x88\x84\xec\x59\x8d\x0b\x90\x4e\x50\x42\x03\xcd\x89\x2d\x04\x21\x10\x0c\x2e\xcf\x37\xf4\xb8\x4c\x22\xd3\xa2\x36\x22\xf1\x6d\x22\xcc\xde\xa6\x67\xb7\x9c\x26\xae\x68\x91\xb4\x86\x8a\xea\xe9\x0b\x12\xbd\xe8\xc7\x59\x7f\x69\x8c\x16\x6a\x30\x71\x82\xfa\x9c\x5e\xcf\x7c\x9a\xaf\xb4\x87\xae\x97\x54\x81\x3d\x8d\x1f\xfc\x90\x7e\xe9\xc3\x26\x88\x77\x1a\x17\xfa\xe9\x51\x98\x1f\xa1\x22\xfd\x08\x62\x10\x22\x67\x9c\xba\x3c\xab\x6c\xab\xa6\xab\x50\x30\xb3\xa6\x84\x2c\x49\x60\x07\x6f\x4f\x41\xed\x42\x41\xf4\x6f\x9b\x66\x19\x22\x3f\x6c\xf7\xcf\x2a\x47\xd9\xd5\x56\x52\x36\xb2\x56\xab\x05\x9a\x88\x9f\x94\xac\x0c\xd9\xe8\x11\xf6\x92\x7d\x07\x5d\x38\x53\xa5\x0c\xac\xa3\x39\xd2\x29\x3e\x1c\x67\x55\x29\x51\x58\xd7\x15\x27\x11\xb3\x51\x70\xdf\x8e\x76\xaf\x10\xdc\xa8\x1f\xb8\x9c\xa5\x6c\xe9\xec\xcc\xe9\xee\xa5\xc8\xf2\x5e\x7c\xa8\x55\xef\x77\xe4\x01\xdf\xc3\xd3\xd7\x17\x51\x20\x41\x66\xbd\x0d\xe8\x03\xec\x64\xbd\x26\x4a\x6b\x5f\x0c\xa1\x4a\x1e\xa1\xfd\x54\x76\xa4\x5e\x47\x8f\x05\x6d\xb0\x38\x6b\x31\x92\xe8\x22\xf7\xfc\xa7\x11\xbb\x55\x0c\xf8\xb1\xd9\x3e\x4b\xe4\xb0\x27\x13\x8c\x22\xce\x33\x54\xfb\x7b\x93\xa0\x95\xf7\xb1\x2c\x7f\x3c\x99\x4d\x4d\xf0\xc7\xfd\xed\x7e\x3c\xf4\xe6\x06\x3a\xa4\x66\xd3\xb9\x53\x93\x2f\x90\xfe\x55\x9a\xf4\x07\x95\x33\xb6\x83\x09\xaf\x7d\x8a\xb8\xa7\x2f\x68\xa8\x58\x0e\x9c\xc2\xbe\xbc\x5c\x5b\x7d\x7b\x0c\xcf\x10\xea\xbc\xf3\x4d\x16\x7f\x65\xbc\xb2\x92\x78\x3c\xa2\x79\x83\x05\x28\xcb\xf1\x99\x5f\xda\xb3\x47\xce\x01\x01\x74\xb6\x82\xa2\x05\x61\x18\xff\x92\x86\x23\x49\x56\x25\x75\x9e\x27\x0b\xc8\x03\xdd\xbe\x45\xf0\x92\x6f\x91\x99\x16\xe4\xf0\x57\xb7\x05\x3c\xc7\x8d\xa8\x0e\x80\x88\x67\xf7\xa5\x04\x35\xcb\x1a\x62\x97\x5d\xc7\x6e\x54\x14\xa1\xc4\x30\x20\x9d\xbe\x4f\x89\xab\xa2\x0b\xf5\xad\x66\x12\x94\xaf\xb4\xcb\x41\x32\x0a\x2c\x6f\xdc\xb3\x9b\x74\xff\x66\x05\x33\x76\x2f\xb6\x5f\x77\x05\xa2\xbe\x6f\x52\x79\xdf\xbc\x8b\x7e\x89\x17\x6e\xe4\x62\xd3\x9e\x57\xad\xb0\x28\x38\x95\xeb\x04\x0f\x7f\xe5\xf7\x7c\x03\x2c\xef\x82\xe9\xb7\x53\x63\x0e\x94\x1a\xbc\xab\x7e\x40\xcf\xfe\xeb\xc9\x33\xa4\x89\xe7\xca\x6e\x91\x2c\xb9\x9e\x04\x52\x65\x56\x46\xe4\x6c\x31\x0b\x0c\xd8\xbd\x68\xe5\x93\xe2\x21\x51\xb9\x61\x24\xa3\xd7\x93\x5f\x20\xfa\x57\x1d\xc1\x8a\xca\x15\x45\x5e\x24\xe5\x90\xac\xf0\xd4\x60\x52\x5f\xd0\x83\x1d\xd6\x7f\x20\x1d\x52\x4d\xa1\xf8\x5f\x7b\x66\x4f\x71\x61\xb5\x92\x1f\x52\xdf\x0c\x1d\x69\x45\xe1\x5c\x3d\xd1\xc8\x7d\x10\x75\xc1\xa4\x4e\xd5\x82\x10\x2d\x3e\x8b\xe9\x60\x6e\x7c\x76\x07\x5e\x6c\x83\xdb\x77\xd0\x74\xc1\x2e\x23\x67\xd0\x17\x54\x5b\xa6\x39\x54\xab\x39\xca\xcb\x66\x34\xa4\x75\x03\x5d\x29\x4d\xaa\x2a\x05\x92\x00\x6b\xf4\xbb\xe8\xd4\xf8\x61\xee\x3e\xf3\x94\x3c\x33\x13\xf0\x77\xee\x6c\x57\xf9\x48\xa0\xc9\x66\xf9\x26\xcf\x8f\x73\x43\x44\xeb\xfb\x72\x63\xd0\x19\x78\x67\x0a\xa6\xb5\x5a\x56\x5b\x83\x16\xca\x03\x8c\x86\xbc\xd4\x9a\x97\x04\x50\xc7\x2e\x83\x1b\x92\xd4\xdb\x9f\xc9\x47\xf4\x80\x24\xdf\x4a\xbb\xdb\x58\x90\xc4\x59\xdf\x79\xcb\x00\x73\x22\x99\x92\x8d\x24\x85\xe4\x71\x2f\xa9\x50\xc9\x99\x9d\x02\x5a\x1f\x96\xa0\xcf\x05\x27\xd9\x53\x84\x4d\xd9\xd4\xa1\x07\x7a\x45\xf6\x8f\x1a\xa1\x7e\xee\x11\xb4\x14\x17\xa6\xb6\x61\xe4\xbb\x7a\x57\x18\x29\x6f\xe3\x4a\xf2\xc2\x77\x71\xaa\xd2\xdc\x5e\xaf\x3e\x68\x20\x7c\x12\x3d\x1b\x10\xda\xa5\x2b\x56\x24\xb8\x95\x0b\x44\x26\x50\xae\xf6\x83\xff\xe9\x0b\x1d\x9a\xbe\xbf\x27\x77\x11\xb7\x5a\x2b\x1f\x7c\xb1\xd9\x3c\x6d\x71\x71\x6f\x3b\x5d\xcd\xe0\x95\xeb\x55\xa6\x71\x43\xed\x70\x0f\xb3\xd4\xe5\x38\x85\x3d\xde\xa2\xf7\xf8\x24\xbb\xec\x73\xbe\x46\x2d\x5c\x99\xa4\x89\x54\x53\x1e\xa7\xb1\xbd\x13\xba\xe3\x2a\xb1\x64\x68\xcf\x26\x1b\x0d\x37\x1e\x0d\xf2\x22\x89\xe7\xa8\x6f\x4a\x62\x0a\x7f\x89\x3d\x07\xc8\xf1\xc9\x26\xcc\x92\x90\x83\xe6\x5b\xfb\xf6\x7a\xe3\xa2\xfa\x81\x20\x95\x51\x94\x09\x96\xc1\x35\x2c\x59\x75\x9c\x6b\x3a\x85\xba\x71\x2f\x49\xd3\xb8\x2b\xe1\x17\xab\xe2\x1e\xef\xf9\x7b\x4d\xd9\x5f\xe1\xe2\x82\xb4\x76\x4e\x91\xd6\x0e\x37\x89\x20\x20\x18\x67\x5d\x25\x32\x92\x8a\xce\x0b\x53\xe4\x18\x2b\xef\x02\x5b\xe1\xfa\x84\xbd\x09\x23\x56\x74\x49\xc4\xd2\xd2\x2c\xf0\xc1\x89\xc3\x16\xd6\xeb\x20\x9b\xeb\x52\x55\x6f\x6a\x79\x8a\xe6\x47\x11\x91\x40\x3e\x6a\x9a\x15\x54\x8a\xd2\xf2\xf2\x18\xb7\x68\xec\x7d\x2b\xe8\x49\x26\x85\x2b\xf3\x21\x1f\xc8\x67\xe8\x40\x3e\xe3\x7f\x30\x4e\x53\xd7\x8f\xb3\x55\xe9\x61\x4e\x49\x24\x19\x93\x7f\xf6\x09\xef\x6f\x2f\xa7\x71\x35\x47\x22\x16\x20\xbf\x21\xd8\xdd\x93\xc3\xd9\x46\xae\x5c\xe6\xad\x2e\x19\x3f\x04\xa9\xd7\x69\x3c\x4a\x7d\xd1\x00\xd6\xaa\xf2\xa5\xb8\xdb\xcd\x45\xec\x93\x27\x44\x26\x29\x1a\x9e\xc8\x91\x86\x90\xe5\x7b\x3e\x73\x64\x2d\xf7\xae\xc4\x3c\x6c\x4a\x45\x03\x29\x92\xdc\xa3\x28\x96\xf3\xbc\x57\x56\xe3\xe5\x65\xcd\x42\xd5\x1f\x47\x6e\x9f\x79\xe5\x18\x32\x25\xc9\x7a\xe3\xb2\x2a\x12\x20\x53\x64\xd3\x61\xa1\xff\xd3\x09\xc1\xa9\x94\x1d\x64\x8d\x33\x4e\x9d\xca\xaa\x18\x0f\x5d\x56\x81\x74\x80\x3e\xeb\x5b\x13\xb2\x02\xf8\x80\x3c\x4e\x4e\x30\xe2\x28\x5e\x49\xb2\xfe\xd6\x3a\x77\xc0\x71\x76\x1e\xed\x2c\x76\x34\xf7\x15\x34\x63\x61\xf0\x04\xf4\x77\xb0\xde\xcc\x40\x20\x60\xc9\xff\xa8\x49\x39\xac\xcc\x97\xd1\xa5\x51\x20\x92\x74\x2d\x14\x83\x42\x02\x49\x0f\xc9\xf2\x78\xa4\x46\xd1\x61\x84\x7f\x9a\x66\xe2\xa7\x1b\x0e\xfa\x17\xda\xfd\x3c\xef\x1d\x4e\xd4\xef\xd2\xa6\x75\x04\xdf\xbc\x34\x75\x0a\x76\xc7\x29\xd1\xe5\x21\xf7\xa7\xd7\x33\x4b\xf7\xe0\x8e\xbd\xed\x43\x6e\x54\xf1\x19\x06\x06\x99\x79\x0c\x3d\x49\x49\x7a\x39\x96\xcd\xb9\xeb\x40\x68\x2b\xed\x0e\x43\x9d\x26\xec\x45\xe6\x5e\x03\x9b\x0a\x39\x3f\x76\x02\xe6\x18\x10\x1f\x37\x56\x8d\xfc\x7d\x1c\xbc\x9f\x4e\xb9\x51\xa7\x2e\xee\xbb\x6d\x02\x7f\x60\x3e\x10\x9e\xdd\x7f\x94\xf7\x30\x79\xf5\x90\x5e\x60\x0c\x66\x3e\xf9\x74\x2e\x5c\x12\xda\x86\xe6\x20\x13\x3a\x3d\x82\xc1\x6b\xdc\x0d\x70\x16\x7c\xd2\x63\x34\x7d\x39\x46\x0d\x90\x81\x2b\x92\x2a\xee\x3b\x22\x7c\x2a\x72\xdf\xbc\x99\xc3\xe4\x2e\xee\xad\xb8\xac\x12\x50\xf0\x41\x33\x9b\x52\xcd\x29\x93\xbe\x68\xd8\xaf\xcb\x2e\xae\x7f\x47\x7b\x9e\x38\xf8\xff\x2c\x22\xeb\x98\x3f\x9b\x84\x74\xbb\x3e\x96\xd1\xe3\xc0\x51\x04\x82\xa8\xaf\x04\x83\xd5\xf1\xff\x3c\x53\xee\xee\xdc\x69\xb2\x1c\x1e\x81\xf3\xfe\x24\x50\x2d\x80\xda\x40\x11\xf8\xc9\x4c\x54\xda\xb7\xa3\x3d\x1c\x8b\x65\x9e\x7c\x77\xec\x76\xb4\x73\xf5\xda\xc7\xd6\x5e\x11\x0f\xe3\x4a\x13\x6e\xb3\x02\x6a\x79\x67\x83\x0b\x4d\xbd\x83\xb8\xdb\x2d\xc6\x76\x0b\x6c\xba\xcd\xa3\xee\xc9\xb3\x1b\xcd\x5e\xf7\xb7\x77\x1d\xf8\x22\x71\x72\x5a\xe0\xe4\xe8\x71\x8d\x92\x08\x67\xec\x2d\x90\x62\xd0\xe8\x3a\x46\x82\x6c\x6f\x6f\x00\x7f\xfa\xb2\xe2\x4a\xd4\x7a\xee\xb9\xa0\x2e\x3c\x9d\xdc\x58\xbf\x75\xd3\x5a\xc8\x63\x4f\x00\xda\x82\xc3\xe3\x18\x16\xa3\x51\x60\xe4\xa1\x98\x0a\xb2\x7c\x41\x93\x8e\xa9\x93\x05\x75\x07\x9a\x1a\x84\x6a\xa2\x88\xfd\xbc\x40\x32\x4e\xf3\x42\x0b\x43\x77\xeb\x32\xc8\x45\x00\x4a\x5c\x90\x25\x8f\x1e\xdf\x1d\x12\x2c\xe8\xe7\x2b\xcf\x8b\xac\x8d\xa2\x33\xe4\xcb\x1b\x52\xa3\x81\x08\xd6\x7d\xbe\xf7\x7c\xa9\xac\x62\xdc\xd6\x77\x22\x02\x61\x82\x30\x68\xe5\x0a\x49\x74\x3c\x20\xde\x33\x68\x80\xb2\x46\xd5\xc6\x84\xd4\x36\xbe\x3f\x75\x10\x85\xa1\xd3\x20\xe9\x0f\xa4\x3d\x80\xc3\xc7\x6c\xe6\xc2\xd0\x6b\x96\xb7\xf6\x95\x76\xdc\x2f\x9c\xeb\x09\xd7\x1b\xbd\xdd\x33\xd4\x28\x55\x80\x34\x9a\x77\x37\x23\x92\xa8\x9f\x1a\x0b\x43\x3c\x1a\x1f\xf4\x12\x21\xfe\x84\xb5\x92\x61\xb0\x65\x77\xf9\x04\x41\x62\x4f\x78\xa2\x8a\x95\x8b\x86\x59\xc3\x14\xe6\x4f\xb0\x54\xf4\x85\x0f\x3c\x87\x5c\x5d\x3d\x11\x2f\x00\xfa\x59\x7a\x4d\x81\xf8\xd5\x71\x55\x59\x3e\xa5\x92\xbd\xf2\xd7\x4d\xbe\x77\xe3\x11\xf2\xca\x2b\xc8\xda\xb3\x72\x0c\x76\x54\x93\x05\x75\xa0\x4f\xf4\x92\xb2\x1a\x17\x4b\x0a\xee\x36\x51\x28\xa6\x44\x85\xba\x75\xa9\x18\x57\x75\x99\x88\x84\xc2\x00\xc7\xe1\x63\x7f\xc8\x9e\x4e\xb3\x44\x9c\xdd\x8b\xed\x5e\x7e\x38\xab\xf2\xc3\x2a\xc0\xe9\x45\x86\x3c\x50\xe6\x1e\x25\xab\x97\xa8\x4d\xec\xd2\xf4\x49\x59\xe5\xa6\x66\x23\x0f\x43\xe6\x47\xff\xe2\x0b\x9d\xa0\xbd\xf5\x34\x48\x26\xd8\xa4\xdb\x90\xec\xe3\x5f\x16\xc4\xc3\x0a\x3b\xfc\x0e\xe2\x23\x8e\xfa\xa7\x55\xea\x52\xe9\x43\x44\xf4\xbd\x1b\xb5\x7e\xf3\x37\x34\x6b\x79\xbc\x13\xc4\x2f\xa0\x96\x84\x5c\xe5\x19\x68\x37\x2b\xcc\x60\x8d\xec\x01\x37\xcb\x16\x35\xef\x66\x59\x03\xa8\x62\xb7\xcf\xf8\x7f\xec\xdc\x69\x10\x49\x5d\x39\x26\x62\xd9\x22\x73\xbd\x59\x95\xc6\x5d\x6d\x19\xaa\x79\x1d\xbb\xef\x13\x49\xe8\xfb\x33\x07\x0c\xdc\x52\xe3\xc2\x3a\xb3\xeb\xd0\x9c\x5a\xbf\xed\x0f\x15\x97\xf5\xeb\x74\x71\x0b\x51\xb2\xbe\x1d\xd1\x51\xbd\xd0\x21\xcd\xd2\x8f\xc9\x9c\xe4\x53\x00\x09\xd8\xc3\xc8\x66\xeb\x1b\x3f\x35\xdc\x38\xdc\x3c\xad\x20\xdc\x4e\xf6\x75\xc3\x2d\xdf\x0a\x75\x52\x95\x79\x6f\x82\xe6\x15\x24\x06\xe1\x25\x18\x7c\x9b\xfc\x2c\x1d\xde\xdd\x54\xe4\x42\xcb\xb9\x16\x69\xf7\xd6\xcb\x06\x4d\x71\x36\xf5\xbd\x3f\xd3\xac\xd8\xb3\xa7\x3e\xfc\x5b\xa8\xe0\xfd\x6e\xf2\x3c\xe0\x59\xf4\xea\xbe\x1d\x22\x15\xb5\x22\x4d\xc7\xfa\xce\x78\xab\x05\x4f\xc5\x66\xab\x85\x3a\xe4\x1d\x8e\x57\xa7\x24\xca\x7e\x30\x21\x6d\x9d\x1f\xf8\xa8\x31\xc8\xbd\x0c\x2d\x4a\x9e\x6b\x13\x1a\x1c\xcd\x2a\x7e\xd4\x15\x93\x18\xae\x87\x31\x34\xe6\x9a\x80\xf8\xe8\x35\xb9\xc6\xa7\x4e\x8b\x06\x91\x75\x33\x68\xe1\x94\xdd\x8a\x2c\x78\x53\x44\xab\x6f\x83\x04\xd6\xbd\x4f\xcb\x8c\x06\x3b\x07\xbe\x31\xbe\xa7\xe7\x7d\x4c\xd4\x01\xc2\xc0\x8c\x86\xce\x28\xf3\x24\x45\x39\xe5\x8d\xbb\x7d\xb8\xc7\xea\xc0\x11\x7a\x9f\xc2\xa2\x20\x91\x8d\xee\x88\x83\x4c\x9d\x42\x4d\xa1\x45\xde\x50\xff\x65\x12\xaa\xd1\xb3\x33\x18\xbe\x5d\x07\xda\xe3\x2c\xe9\xb9\xac\x4a\x96\x13\xed\xca\x29\xa2\x70\x0a\x5d\xb8\x71\x5d\x1c\x78\xb1\x1d\x77\x61\xbd\x62\xa0\xe2\xfa\xab\xea\xb5\xc7\xc3\xf7\x45\x30\xc2\x7f\xa1\x19\x37\xdd\x00\x2d\xcf\xca\x51\xa2\x39\x23\xf6\xcf\x7b\x84\x53\x79\x8f\x82\xf6\x72\xe1\xbe\x3e\x76\x59\x77\x95\x1b\xb9\xb7\xc9\x04\xfc\x36\xc9\x75\xc6\xd9\xaa\x80\x1d\x88\x76\x81\xf6\xb7\x5e\xd3\x47\x50\x00\x64\x57\x46\x98\xca\x82\x95\x5b\x80\x72\xe9\x34\x2b\x05\x1d\x9d\xf1\xa8\x90\x39\x40\xe9\xba\xe3\x42\xf0\x5d\x2d\x2a\xa3\x2f\x46\xd3\xaa\x4c\xb3\x73\xf0\x51\x5c\xc4\xe9\xea\xeb\xd3\xba\x34\x3c\x24\xbe\x44\xed\xca\xb2\x3b\x70\x43\xa7\x9a\xbc\x8a\x48\x96\xac\xcd\xd0\xc9\x34\x60\x3c\x70\x80\xc4\xcd\x2e\xb2\x42\xe0\xc5\x26\xf5\xda\x3a\x44\x2a\x75\x8e\xed\xd1\xbc\xc3\xa5\x07\x99\x1c\x0f\x79\x6e\x9c\x0c\xe2\xaa\x1c\xb7\x68\x34\x0c\x26\xf4\xe7\x59\xfe\xd5\x49\x6b\x37\x1e\x1b\xa6\xc4\x7a\x40\x5b\x24\xab\xd2\xeb\xb5\xd0\x83\x1b\x8e\xe2\x4a\xdd\xa0\xf1\xe3\x38\x55\x90\xe4\xe8\x75\xd3\xd6\x2f\x5c\x99\x8f\x65\xf4\x34\x47\x2e\x3d\x37\x48\xdb\x06\x79\x9c\xc1\xdf\x78\x7e\x3e\x1c\xe6\xd9\x61\x17\xa7\xd5\xa0\x15\xe6\x03\xff\x81\x15\x64\xfe\x43\x93\xf6\x83\x48\x3a\xd8\xac\x05\xb9\x22\x06\x0c\x7a\x3d\xf3\x31\x77\x2f\x02\x08\x57\xe6\x99\x56\x0a\xaa\xd6\x40\x4a\xae\xe7\x26\x7f\xf5\x73\xda\x98\x71\xf7\xeb\xe3\xa4\x70\x2a\x9e\x6a\x1c\x13\xd2\x93\x80\x4b\x3e\x76\xfe\xff\xd9\xb0\xec\xba\xf9\x68\xb5\x80\x8e\x4f\x18\xa3\x44\x53\x8a\x0d\x01\x54\x9a\xc6\x55\x17\x8e\xb7\xfe\xa8\xdb\xed\x87\xda\x33\x07\xd4\xae\x03\xed\x9e\x4b\x4d\x05\xda\x0a\xcf\x00\x21\x6b\x52\x9c\x6f\xd7\x1b\x3b\x38\xd3\x9a\xae\x70\x68\x66\x5e\x9d\x89\x42\xfb\x76\xb4\x47\x31\x74\x94\x54\xa0\x59\xee\x9c\x89\x35\xdb\x2a\xea\x8f\x97\x5c\x91\xc5\x55\x5e\x98\x00\x16\xde\xf0\x2c\x09\x52\x9d\x9d\x39\xae\x77\x2f\xb6\x0f\x25\x87\x93\x56\x48\x2c\x10\x9b\xad\xff\xdd\x50\xc1\x2d\xa7\x82\xa7\x65\x4d\x76\x34\x00\xf5\x9a\x6a\xd8\xb8\xe7\xbd\xb6\x51\xd5\x9f\xc0\xf9\x80\x6c\x72\xcb\x5a\xc0\x6a\x3c\xda\x69\xa8\x97\x93\xe1\x68\x9c\x7a\x41\x39\xb3\x77\x26\x75\xd1\x7f\x31\xd3\xc5\xd9\xb7\xa3\x5d\x3a\xb5\xd6\xf2\x8a\xf3\x81\x64\x7c\xa6\xa9\x23\xbc\xbf\x9d\xba\xb8\x3f\x36\x3c\xc3\xb4\x88\x83\x69\x8d\x7e\x1e\x09\xa0\x97\x14\xae\x5b\x49\xa5\xed\x29\xaf\x9e\x1a\x75\x23\x9a\x62\xe5\x3e\xe5\x37\x7c\x92\x75\xe5\x3c\x92\xfb\x8e\x5d\x0b\xe5\x60\xbd\x9e\xa9\x9c\x05\x50\xda\x73\x4b\x6a\xd4\x6f\x32\x53\xa1\x17\x73\xae\xb1\xd7\x5d\x8e\xeb\x6d\xae\x47\x1e\x79\x8d\x1a\x4d\xfb\x33\x92\x02\xeb\xc5\x2b\x49\x6f\x7b\x60\x7d\x4e\x01\xbf\xfe\x9c\xfd\xe4\xde\xc4\x2d\x65\x45\x6d\x84\xf0\x85\x35\xf2\x12\xdd\xdc\xa1\xce\xc6\xc7\x92\x48\x78\x75\x5b\xef\xe1\xb1\x19\xf9\xbc\xbe\x6f\x63\x93\xd3\x15\xf9\x52\xd2\x45\xff\x10\x5b\xf1\xa6\x6c\x32\x33\x07\x26\x39\xbf\x8b\x24\x5a\xb0\x94\xe7\x6a\x9e\x69\xf3\x2a\xf9\x3a\xfa\x22\xfa\xc2\xc6\x2e\xc3\xde\xfd\xed\x83\x3b\xb4\x7d\x8b\x6f\xa6\xf3\x6d\x7d\x41\xf8\x17\xc5\x10\x15\xa4\x4d\xf1\x3e\xde\x5d\x5f\x34\x9d\x3b\x4b\x85\x8b\x0f\x01\xdb\x64\xfa\x43\x2d\xb2\x51\x6c\xd8\x98\xaf\x3e\xdf\x7b\x7e\xea\x03\xe9\xbc\xd1\x24\xce\xbd\xca\x4e\x32\x5c\x4e\xdd\x6b\xd4\x0a\xbf\xc3\xce\x4a\x77\xd8\x38\x3a\x2e\xca\x41\x9c\x6a\x6f\x07\xb5\x30\xf8\xc1\x7a\x4d\xd6\x64\x3d\xa7\xda\x63\xd8\xe9\x26\xd3\x11\xfa\x48\xb3\xc4\xf4\x03\x2f\xca\x30\x19\xa2\x82\x46\x98\xab\xb7\x06\x9a\x2d\x77\x64\xb2\x0c\xa4\x1e\x2a\x6c\xe0\xa7\xaf\xcd\x54\x92\xaf\xbc\xd2\x5e\x8a\xd3\x38\xeb\xea\xd2\x55\x2b\x0a\xc4\x6d\xf3\xa5\x68\x38\x9d\x46\x71\x19\xbc\x6f\x31\xeb\xba\x4b\xa6\xcd\x77\x09\x6e\x96\x2f\xa1\xec\x97\x8a\x81\x55\x3e\xb1\xe3\x55\x78\xc5\xc4\xea\x1a\xe4\xaa\x46\xd4\xc5\xf0\x4a\x69\x5e\x07\x37\xf8\xa3\x1f\x8e\x57\x2c\xdc\x1b\xa4\x87\xfc\x63\x3e\x9c\x89\x2c\x10\x9b\xca\x96\x5d\xe1\xb2\x2e\x37\x10\xae\x4e\x48\x58\xe0\x6a\x9d\x7e\x6a\x0a\xd4\xfb\x7c\xbf\xb7\xf6\xe7\x9d\xab\xbd\x95\xbc\x0b\x6f\x9c\x30\xb7\xbf\x1b\xd1\xe9\x7f\x77\xaa\x0b\x5d\xe8\x5c\xda\x10\xf6\x9c\x55\xcc\xc2\x10\xf2\x71\x95\xa2\xa5\x12\xbc\xcc\x4f\x60\xf4\x67\x7c\xad\x26\x1c\x47\x95\x2c\x2f\xd7\xb9\x05\x37\xd0\xa7\x3a\xeb\x4f\xd1\x70\x6b\x79\xdc\x77\x0e\xf4\x4b\x8d\xaf\xd3\xc1\xd6\x2a\xaa\xb2\x8a\x57\x31\x22\xd9\x65\x0e\x60\x11\x1b\x02\x93\x8d\xe3\x49\x9a\xf6\x57\x71\x76\x48\xd9\xb0\xc6\xa4\x3c\x1b\x31\x51\xa4\xc1\x84\xa0\x2b\xd2\x2a\x5e\x50\xf9\x06\xc2\x24\x67\x96\xf8\x3b\x1f\xce\x68\xc0\x7c\xa5\x1d\xc3\xe7\xc8\x78\xac\x2a\x59\x6f\x54\xa7\xa0\x5a\xf6\xfd\xa6\xa1\x59\x9e\xf6\xa4\x11\xf7\xb5\x5d\x81\xd3\x5e\xdf\x37\x8c\x72\xd7\xa9\x66\xbe\xb8\x41\x3d\xac\xf7\x2c\x02\x0c\x8e\xc7\x7b\x24\x2c\xfd\x94\x80\x09\x91\xd5\x5d\x44\xfd\x6f\x43\x84\x30\xed\x5b\xc7\x8e\xf4\x3f\x15\x60\x86\x67\x65\x19\x5a\xcf\x34\xf4\xf5\x7f\x3c\x6d\x17\x56\x07\x72\x74\x4d\xd0\xbf\x41\x63\xe7\xbe\x18\x20\x62\xfc\xf8\x0e\xd8\x1c\x2a\x6b\x17\x91\x0f\xac\x8e\x32\xd5\x7f\x4a\x07\xf0\xda\x9b\x92\x8e\x2b\xfa\xd5\x15\xe6\x46\xd0\x04\xd1\x5e\xaa\x29\x23\x3c\xce\x4c\x8a\xae\x70\x9d\x90\x59\x28\x9e\x0d\x49\xf4\x4d\x02\x07\x6a\x0c\xd2\x7f\x98\x69\x25\xec\x3a\xd0\x1e\xba\x0a\x28\x19\x03\x18\x73\x9e\x4b\x3a\x7f\xb7\x09\xeb\x5e\x96\xb1\xa0\xcc\xf0\x21\xef\xb3\x8a\xc9\x7d\xef\x72\x34\xce\x12\x65\x89\x2b\x13\x05\x1b\x55\x44\xa8\xed\x3a\x2c\x7b\x91\xfc\xfd\x4f\x52\xa9\x68\xf2\xae\x6f\x68\xde\x87\xa1\xe3\x77\xd1\xab\xea\x77\xf3\xf1\x48\xa3\x85\x0e\xb4\xe5\xc7\x6c\xb8\x4d\xce\xbf\xc3\x5c\x05\x14\xd1\x3f\x7d\x93\x7a\xa9\x6f\x4e\xb6\xfb\xf3\xe5\x57\x9f\x0d\x38\xda\xb3\x51\xf0\xbf\xde\x0a\x89\x18\x35\x07\xe7\x73\xf5\x0b\xda\xc9\x33\x33\x9a\x30\x0a\x3b\xca\xe8\x92\x6f\xb2\x32\xfe\xb6\xb5\xd6\x6f\xfe\x46\x30\x37\xac\x9f\x0b\xa2\xc0\x0d\x90\x70\xb5\x7f\x47\xea\x9b\xf7\xa3\x40\x57\x84\xf0\x9e\x71\x03\x65\x4f\xe9\xd8\x2a\x22\x15\xc5\xcd\x6b\x33\x74\x42\x2c\xca\x79\x59\xd3\x4a\x9c\x95\xa4\x05\x91\xe1\x41\x14\xa0\x24\xa9\x4c\xd3\xe7\x08\xf1\x19\x6d\xb4\xfd\x32\xd0\x46\xe8\xbc\xaf\xc4\x82\xbf\x0d\x99\xd7\xe6\xb5\xc0\x14\xd9\x3c\xa3\x6f\x2e\xab\x72\x98\x17\x71\xd6\x1b\x0f\xe7\xc8\x53\x08\x76\x6a\x48\x9e\xae\x93\xca\xc4\x99\x86\xda\x5f\x60\x0f\x4b\xe3\x24\x0d\x50\x47\x7c\xcb\xcf\xe8\x1b\x7f\x36\x85\x82\x72\x2b\x2e\x43\xb3\x7c\xaf\x47\xe4\xb6\xbc\xac\xd0\xf9\x88\xf5\xb8\xb3\xaa\x48\x96\xc6\x95\x95\x7a\x48\x31\x1e\x22\x84\xe2\x0e\x5e\x9c\x4c\x09\x0c\x05\xa3\x77\xe1\xe9\x89\x47\x83\x6f\xa6\x6c\x95\xba\x57\x59\xef\x64\x6a\x3f\x6b\x64\x5f\xa7\x66\x69\x9e\xf7\xc0\x0a\x47\x7f\xea\x21\x96\x13\x27\xb8\xc8\x8f\xb6\xce\x60\x23\x0f\xee\xd8\xa5\xbf\x4f\xd8\x2a\xf4\x2a\x6c\x36\x3e\x5b\x94\x2e\x8f\x8b\x2c\xc1\xf8\xd0\x6f\x21\x98\xbb\x9b\xe9\x6c\x13\x9a\x66\x94\x1f\x76\xc5\x3c\x9b\x9e\x5f\x40\x30\xc5\xe4\xff\x02\x79\xcb\x7f\x07\x11\x04\xf7\xed\x2e\x8d\x89\xe2\x62\x88\x1e\x29\xda\xf1\x77\x64\x6f\x4e\x31\x19\x80\xca\x3a\xdb\x84\x9d\x2f\xbb\xc5\xb8\x4a\xb2\x55\x44\x15\xdb\x6c\xa1\x0f\xf2\xcd\x90\xf3\x24\x5e\x26\x06\x29\xde\xc7\x24\x39\xf7\x71\x83\xd5\xd7\xae\x3a\x3f\xce\x7a\x31\x60\xd0\xde\x7a\xaa\xfe\x40\xb6\xdb\x1f\x27\x17\x87\x4c\x17\x95\x1e\xe2\x24\x7b\x1e\xd6\x45\xbf\x48\xdc\x4a\x9d\x42\x96\x73\x24\xf7\x34\x99\xb2\xd5\xa6\xc2\xbd\x69\x58\xd9\xcd\x87\x4b\x42\xde\x0a\x0e\xca\xd0\x93\xd6\xeb\x99\x9b\xe4\x71\xc3\x87\x8a\x16\x05\xae\x73\xec\xe3\x75\xce\x23\x64\xba\xf1\x70\x29\xef\x25\x2a\xae\xa6\xa8\xec\x88\xf8\x24\xc7\xa7\xd2\xf1\x65\xd7\x05\x77\x39\x10\xb0\xfe\x98\x78\x30\x7f\xdc\xa8\x78\x10\xbf\x96\x0c\xeb\x3d\xbf\x6f\x87\x85\x2e\x00\x2e\x90\xa5\xe2\x0e\x20\x86\xde\x21\x96\xf0\xd0\xf5\x92\x18\x66\x12\x1e\xb8\x53\x9f\xc2\x06\x3c\x68\x2d\x2e\xae\xff\x14\xd8\x0a\xa4\xce\x67\xc8\x01\xe9\x4c\x13\x68\x69\x34\xb6\xa9\x99\xb5\x16\xa8\xcd\x30\x79\x2c\xf0\x93\xff\xab\x74\x41\x74\x08\x4c\xde\x81\x58\xde\xda\xf8\x41\xb8\xfa\x36\xa2\x81\xfe\x58\x44\x2a\x27\x97\x66\x48\x4a\x07\x77\xbc\xd0\x5e\x2a\xf2\x6a\x50\x67\x74\xd8\x40\x40\x34\x9e\x67\x08\xee\x79\xea\x3e\xaf\xc4\xe9\xd8\x1a\xf1\x40\x8f\xa0\xd8\xd6\xeb\xb0\xc8\xf2\xbc\x74\x4b\xae\x28\x56\x91\xbd\x11\xa7\x67\x91\x1b\x2a\xeb\x77\x9b\x24\xf3\x93\x2c\xcb\xbb\x3e\xcb\xf7\xd6\x22\xde\x70\x2a\x28\xa9\x2e\xe7\xc5\xe1\xb8\xe8\x6d\x0d\xb0\x2f\x95\xd9\xd1\xc1\x2b\x6e\x93\x31\xfe\xc3\xa0\xf3\x69\x19\x6b\xa1\xa1\x79\x5a\x92\x22\x9d\xc3\x44\x81\x01\x3c\xb7\x16\x1e\xfc\xab\xc9\x70\xb8\x8a\xa5\x6b\xbe\x9e\x2d\xaf\x35\xfd\x11\xb1\xa3\xbb\x79\xaa\x5d\x13\x8c\x93\xd4\x9e\x33\xa2\xb6\xd6\x3a\x3e\x94\x92\xae\xa6\x78\x35\x72\xdc\x7a\xd5\xfc\x45\x93\xa4\x5a\x9f\x4c\x61\x68\x85\xe4\x28\xe0\x28\x24\xf5\x9b\xa1\x8c\xec\x31\x7b\xbb\x0d\x37\x7a\x75\x66\xe9\xd7\x4f\x3c\xc9\xca\xa4\x07\xe3\x1e\xcf\x8d\xdd\x6d\xbd\x93\x5b\x11\xc9\x3a\x9f\xf7\x93\x8a\x34\x3e\xe4\xe6\x08\xd5\xab\x10\x3e\x76\xb5\x37\xee\x5d\x80\x2a\x2d\x8d\xcb\x24\x5d\xfd\x7c\xef\x5a\xeb\x23\x2f\x17\x89\xcb\x7a\xe9\xea\x42\x68\xce\xff\x0a\x9a\x24\x5e\x84\xd8\xe3\x55\x7f\x71\x2d\x34\x49\x14\x5e\x65\xf6\x11\x0d\xa5\x53\x3c\xae\xf2\x6e\x11\xa3\x9f\x84\x7b\x89\xae\xac\x5e\xcf\xe4\xa9\xbb\x17\xdb\xaf\x27\x23\x59\x76\x26\xc4\x4f\x5a\xcd\x97\x26\x5f\xe4\xf9\x71\xb7\x70\x55\x92\x67\x71\xb1\xba\x85\xc8\x66\xc7\x90\x57\x7b\x70\x56\x00\x1e\x9f\x27\x26\xe3\xf9\x49\xf0\xd7\x39\x21\x53\x23\x74\x97\x36\x77\xc8\x12\x3c\xa9\xaa\x72\x69\x5c\xf4\x07\x5b\xe5\x1e\xa2\x76\xbd\x86\x4f\xe4\xc3\x85\x4f\xd6\x3e\x90\xdb\x04\x7d\x24\x56\x49\x5e\x58\x0b\xc0\xef\x4f\xc4\x99\xe5\xfc\x4c\xff\x52\x2c\x42\xf2\xf1\x52\xa5\xa9\xac\x89\x0f\xd5\xef\xa2\xd7\x04\x70\xc8\x97\x97\x4b\xa7\x40\x40\xb4\xa8\xb0\x6f\x3c\xdb\xde\xbb\xf3\xad\xb3\xe8\x45\x51\x67\xe9\x72\x6f\xbd\xea\x7b\x80\xd0\x5e\x24\x66\x70\xe5\xd4\x17\xd0\x4b\xc9\x90\xae\x0c\xc1\x2e\xcb\x71\x51\x68\xa3\x7f\x5e\xde\xca\x7a\x7e\x92\x91\x1a\x5d\x2c\x40\xf8\xe1\x1f\x85\x68\xf0\x56\xb0\x49\x1a\x24\x45\xc5\xa7\xc7\x87\xf2\x2b\x7a\x1d\x6d\x6c\xc1\xa3\x7f\xb8\x54\x26\xbd\x04\xd9\xa6\x84\x58\xeb\xb4\xcb\xdb\xe8\x0b\xaa\xcb\x0f\x27\x3d\xa5\x7d\x84\x2e\x2d\x12\x75\x33\x26\xb4\x9d\x56\xe4\x39\x2a\x7d\xf5\x6c\x8e\xc2\xd0\xe2\x2c\x41\xc6\xba\x71\xb1\x94\xf4\x10\x20\xbd\xbe\x47\x68\xe4\x9d\x6c\x34\x37\x2c\x34\x8f\x50\x0d\xd2\x09\x99\x1e\x9f\xa3\xaa\xeb\xbf\xf9\xdb\xff\x6d\xab\x4e\xd0\x91\x8e\xea\xc9\xab\x2f\x7c\x21\x55\xe5\x85\x42\xb6\x28\x0f\x0d\xc9\xd5\xc5\x99\x25\xb6\x67\x4f\xbd\x6e\x5c\x61\xb8\x4c\x9b\x8c\xb6\xbc\xe4\x85\x9a\x62\x21\x76\xfd\x8c\xbd\xf1\x07\x49\x2a\x04\x0e\x87\xb1\xa7\x49\x43\x92\x99\xfd\x35\x08\xe8\xe8\xbf\x20\xdc\x5a\x17\x2d\x1c\x5f\xaf\x27\x69\x9a\x58\xff\x13\x61\xe8\x4c\x44\xbc\xcb\x33\xbe\xac\xfb\xfa\x38\xa9\x74\x1c\xe6\x15\xe0\x7e\xf3\x37\xb4\xa2\xd7\x82\x09\xb6\x27\x9b\x3a\x0d\x13\xfa\x9e\xeb\x17\x0e\x4f\x47\xcd\x6b\x89\xf8\xfb\xfb\x74\xa0\x0e\xe2\xa5\xa4\xaa\x03\xd4\xbe\xbd\x5e\x20\xb5\x8e\x0c\xa6\xc1\xfa\xcc\x06\x75\xb0\x58\x20\xa3\x3b\x77\x19\xb2\x6b\x12\xf6\xda\x5d\x1e\xb0\x7e\x7f\xaa\xa1\xf1\x9c\x1b\x4a\xbc\xf7\xec\xcc\x3d\x7b\xa6\x05\x91\x4c\xbb\x6e\x16\xf4\xdb\x1e\xc5\x65\x15\x33\x28\xe9\x14\x4d\xa9\x4f\x35\xb4\xe9\xda\x2e\x75\xdd\xaa\xc8\xb3\xa4\xab\xd1\x04\x7d\xaa\x37\x08\x01\xfa\xc6\x0c\x98\x49\x3c\x3a\x5c\xf7\x79\x80\xb2\xb1\x38\x6e\x48\x85\x82\x7b\xa6\x6a\x91\x20\xbd\x9f\x9c\x04\xe8\xcb\x8f\xb1\x0c\xb0\xdb\xff\x60\x12\x78\x62\x55\x3c\xc2\xde\x34\xdd\x6f\x62\xca\xf0\x72\xaf\x5c\xf1\x4c\x28\x67\x35\x62\x0b\xca\xe5\x7f\xfc\xe5\x4e\xa8\xbf\x37\xad\x05\x89\x52\xd5\x76\x43\x99\xfb\xac\x7a\x34\xa0\x43\xf5\xad\x3a\x9b\x58\x3f\x4e\xfe\x77\xef\x4e\x3c\x82\xf8\x27\xcf\xb0\x18\xec\x96\x35\xc9\xe8\x3c\x11\xe3\x25\x0f\xaf\x9f\x78\xd3\xf6\x8b\x4f\xe3\x24\x94\xc2\xe6\x57\xbf\xb4\x16\x94\x6c\x6e\x4d\x82\xe4\x65\xf9\x0b\x6b\xc1\x3f\xf8\xd7\xff\x1a\x0b\x6b\x7e\x97\x35\x3c\x4e\xd2\xd7\xee\xbb\x54\x44\x01\xad\xb0\xa9\xbf\x9d\xe5\xfc\x04\xb5\xdf\x8e\xbf\x8f\xed\x8f\x21\x8e\x0d\x9b\x9f\x26\x73\xdc\x38\xeb\xc5\x45\xaf\x9c\xa7\x74\xf8\x0e\x49\xc9\x7d\xc4\x6f\xf9\x51\x14\x92\xe2\x3b\x1b\x15\x2a\xeb\x75\xf0\xd2\xae\x03\x5b\xeb\x1f\xf1\xb2\x60\xf5\x27\xb0\x5e\x77\x7d\x07\x70\x9b\xae\x92\xfb\xd4\xb7\x99\x3e\x7d\x83\xe5\xef\x3f\xa2\xec\xe1\xd4\x14\x3b\x30\x1f\xb9\xc7\x83\x3b\xfe\xfd\x49\x50\x4a\x7f\xb2\x43\x71\xfa\xb8\xfc\x49\x74\xad\xee\xeb\xf8\x8b\xd1\xd6\xb8\x81\x2a\xae\x8e\x46\xdd\x8f\x58\xeb\xf1\x36\x53\xd1\xe7\x25\xad\x43\x3a\xfc\x18\x9e\xff\x94\xcd\x0e\x1a\x80\x1f\x49\x46\x60\x36\x3b\x24\x95\x9b\x25\xe5\x00\x51\x09\x0d\xe3\x1f\x93\xfb\x8c\x92\x68\x70\x6f\xee\x37\x49\xcb\xed\x6f\x77\x07\x71\xd1\xd7\x8e\x2a\x12\x91\xeb\x34\x5f\x7b\x1f\xcb\xda\xe4\xed\x9a\x6a\xfa\xae\x2b\x9c\x52\xe1\x71\xaf\x71\xf2\xeb\x35\x9b\x99\xa6\x71\x71\x48\xda\x5d\xbe\x26\xaf\x3f\x9d\xbe\x68\x12\x94\xec\xe6\xd9\x72\x52\x0c\x75\xf4\x80\xa5\xf8\x13\x16\x79\x7d\x30\xa1\xb9\xd5\xa6\x4e\x28\x7c\x2b\x41\x8f\xec\xdb\xa1\x1b\xb2\xd5\x09\x16\xdc\xad\xb5\x8d\x29\xde\xe2\x62\x7b\xa5\x7c\x7e\x21\xe8\x79\xfe\x0e\x8a\x24\x23\x94\xb7\x7e\xfd\x25\x3d\x46\xb6\x92\xcd\xf0\x69\xa2\x52\x5f\x23\x98\x45\x1a\xaf\xc8\x5f\x36\xed\x1d\x92\x34\x3f\x49\x99\xca\xa8\xc8\xbb\xe3\x02\x72\xcd\xf2\xf8\x80\x62\x3c\x46\x72\x51\xe7\x29\x31\x3d\x2d\x6b\x16\x6d\xea\xcd\x9d\x27\x7c\xe5\x5e\x27\x3b\xe3\x51\x2b\x34\xf8\x4e\x50\xa1\x7a\x02\xa6\xec\x5a\x15\xbb\xd1\x56\x79\xca\xd6\xdf\x6d\x79\x6b\x65\x90\xf3\xf1\x15\x01\x58\x52\xfd\x19\xf9\xa3\xe8\x13\xdd\xa6\x58\xad\x55\x1b\x92\x9a\xef\xb1\x14\xd6\x20\x2f\xaa\x74\xb5\x15\xa4\x35\x7e\x10\x05\x35\x8d\x1f\x34\xac\x9f\xf6\xd7\xc7\x79\x90\x88\xc5\xf6\x3e\x43\xd0\xe8\xc0\x4f\xa9\xea\x75\x5a\x59\xae\x80\x88\x77\x85\xb4\x85\xfe\x0d\x8e\x6d\x9c\xc7\x57\xa9\x44\x2f\x8c\xcf\xfd\xb2\x7e\xad\xb9\x0e\x61\x10\x55\x66\xd8\x46\xbe\x75\xc8\xb5\x89\xef\x0c\x98\x6d\x6f\x3b\xcd\xb3\x7e\x95\x0c\xd1\x40\x33\x55\xcd\x30\x78\x02\xd5\xcf\x94\xc6\x67\x9b\x37\x2f\xb4\xe3\x61\xe6\xca\x6a\x95\x90\x24\xbf\x47\x8a\xf9\xbf\xd7\x20\xe4\xb8\xd8\xce\x5c\x0c\x3d\x73\xd4\xd4\x37\x26\x41\x71\xf3\x4f\xe5\xc9\xa1\x5d\x72\x6b\xe6\x03\xef\xd9\xd3\xae\x0a\x90\x90\xe6\x48\xa6\x12\xf7\x17\xf1\xfb\xa7\xb2\xde\x90\x0c\x7f\x48\xfe\xe3\xdd\xa5\x52\x94\xdf\xf1\xc0\x2f\xb3\x12\x06\xdc\x73\xb4\xb7\x10\x4d\x91\x12\xbc\x81\xd0\x3f\x07\xd8\x1c\xbf\x70\x47\x90\xd8\xfa\x4e\x93\xa0\xf0\x75\x45\xb4\x5b\x10\x28\xee\x10\xb8\x64\x29\x3e\xe4\x0a\xcc\xa1\xac\xf9\x2a\x4f\xcf\x66\x42\x92\xd7\x21\x1d\x3a\x3f\xe5\xa7\x5f\xe5\xb8\xb1\x08\xac\xe8\x23\xeb\x35\xd5\xcb\x62\x06\x12\x57\x6e\x41\x76\x03\x16\x8f\x4a\xc7\x78\x05\x18\x2f\x86\x7c\x95\x90\xa7\xe7\x58\x52\xfa\xa8\x4f\x0c\x47\x2e\xeb\xba\x85\xa0\xe6\xfa\x29\xde\x0b\x5b\xf0\x0b\x12\x31\x10\xb7\x1f\x52\xc4\x78\xc8\x03\x8e\xb3\x74\x70\xe6\x4b\xae\x97\x48\xa7\x43\x9e\x98\x9f\x6b\x79\xca\xd1\x85\x06\x33\xb3\xbd\xed\x6e\x5c\x09\xa5\xd7\xba\x36\x38\x8e\x8e\x33\x45\xf7\x78\x93\x34\x4f\x5c\x4d\x75\x93\xd7\x2f\x63\x6b\xe3\xbe\xff\x5f\xec\x49\x30\xcd\xa3\x2f\x92\x74\x4b\xa8\x43\xbe\x4d\xcc\x69\x95\x69\xc1\x3b\x5c\xe1\xb7\xbb\x22\x0f\x44\xa5\x32\x65\x1d\xa0\x87\x7e\x87\xdd\xb7\xab\xb8\xf0\x54\x38\x54\xa8\xa0\x59\xeb\x75\x63\x9d\x5a\x24\xdd\x41\xbd\x62\xea\x34\x0d\x81\xe1\x0e\x9d\xc3\x17\x31\xbf\xc0\xa0\xf7\xb3\xe9\x61\x6d\x86\x69\x92\x79\xb8\x13\xa8\x6f\x96\x67\x7a\x70\x47\xdb\x65\xdd\x7c\x2c\xa0\xd0\x16\x0d\xd8\xdf\xc1\x6d\xd2\x17\xbe\x1e\x8a\xeb\x68\x88\x53\xc8\x70\x7b\xf5\x77\x26\xb8\xa3\x17\x9f\x28\xaa\xcc\x15\xe5\x16\x02\xba\xaa\x0e\x94\x4a\x7b\x47\xd4\x47\xd6\x0e\x96\x17\x6d\xdb\xb3\x47\x23\xfa\xed\x88\x4a\xa1\x8b\x0d\xad\xe3\x17\x4c\x7d\x8c\xf8\x54\xe7\x48\xfd\x70\x16\x19\x63\x5d\xda\xa1\x9c\xdc\x01\x62\x87\x0f\x67\x78\xbb\x10\x35\x7a\x79\x26\xb1\xdf\x1c\xa4\x5b\x7e\x1e\x79\x84\xd4\xfc\xca\xa4\x9f\xc5\x68\xea\x93\x5c\x6e\xb0\x41\xb8\x40\xd3\xe5\x43\xc1\x8c\xdd\xbb\x4a\xe2\x76\x9b\xc5\xe4\x13\xe4\x9a\xb2\xea\x8a\x72\x81\x6a\xce\xb3\x93\xa0\x3f\xf4\x0e\xee\x9b\x39\x0a\xf0\xac\xb1\xbe\x05\x18\x0d\x2c\x74\xd8\xdc\xbd\x9b\x8c\x6c\xee\xcf\x1a\xba\xd6\x3c\x0d\x7f\x59\x70\x73\xe5\xe3\xb2\x63\x91\x1d\xac\x81\x60\x83\xa0\x77\x57\xb8\x33\xb4\x3d\xcc\xf3\x05\xe4\x15\xf4\x82\x14\xe7\x8c\x2c\x07\x4e\x10\x4c\xa3\xf4\x4c\xbb\x45\x93\x86\xdf\xde\x91\x64\x91\xb4\xef\x17\xc3\x6f\x7b\x51\xfb\x33\x5c\xce\x2d\x74\x1a\x34\x34\xbb\x71\xe1\x84\x7f\x6e\x52\x65\x04\x74\xf8\x19\xa9\xf3\xff\x44\x96\x8a\x89\xd9\x37\x24\x51\xbd\x5c\x41\xde\x2a\x5c\x3e\x21\x73\xbb\xd3\x6c\x99\x36\x88\x4b\xf5\x82\x57\x63\x28\xc5\xc4\x9a\x4d\x94\x1d\xf9\xaf\x8e\x7b\x49\x37\x51\x2d\x51\x73\x46\x0d\x0d\xe0\xb9\x35\x3a\x95\xae\x44\x1b\xa5\x05\x03\xf0\x6c\x59\x21\x22\xfa\x2c\xbd\x4c\x2c\xa9\xc9\x3e\x43\xb4\x9b\xb2\xca\x8b\xa4\x0b\x5e\xd7\x7e\x4f\x9d\x6c\x79\xf9\x8b\x93\x84\x58\xef\xe6\x59\xd7\x89\x21\xc0\xae\x03\x3a\x01\x80\xae\x8e\x5e\x93\x66\x67\x32\x1c\xe5\xa5\xf6\x2b\xbc\xca\x48\x7d\x87\xf4\x05\xf5\x75\x94\xfd\x6d\x36\xba\x64\x36\x91\xa7\x69\x5e\x20\x5b\xf7\x42\x41\xbb\x8d\x02\xa3\x75\x05\x76\x51\x38\xa0\xf2\xb4\xe7\x0a\xa1\xe0\x63\x8d\x3f\x05\xa6\x06\x5a\xa6\xbf\x8c\xd2\xd0\x58\x7e\x81\x80\xa0\x4a\x84\x1e\xca\xb0\x6f\x87\x37\xef\xe5\x64\xb7\xb7\x95\xbc\xf6\x3e\xc4\x62\xf3\x84\x45\x62\x06\x84\x03\xec\x28\x96\x2a\x76\xc0\x79\xb4\x8d\xfd\xa1\xe0\xd1\x95\xf3\x33\x1a\x87\x75\x1d\x58\x56\x6e\xd4\x0a\xf5\x9e\xde\x27\x7d\x11\x46\xfa\xab\x45\x12\x67\xb2\x6a\x50\x5d\xdc\x93\x55\xa3\x8a\x71\x4c\xd2\xe2\x51\x4e\x37\x4e\x8a\x7c\x2e\x24\x94\xd7\x22\xb6\x7d\x97\xcf\x8c\x8d\xf0\xe9\x14\x27\xaa\x1c\xe5\x59\xc9\x0c\xc2\x3b\x93\x90\x81\x5f\x20\x9c\xc8\x2c\x45\x5e\xac\xfc\x52\x75\x0f\xb7\x3a\xa8\xbe\x69\x56\x20\x59\x9d\x17\x17\xe2\xf6\xc0\x2e\xf9\xda\xbc\xd0\x17\x33\x39\x81\x2d\xfe\x0a\x20\x57\xaf\xf7\x78\x8d\xa1\x7a\xd7\xfc\x1f\x28\x0f\xbb\x34\xb5\xdc\xda\xd4\xb3\x5b\xc1\x83\x00\x67\x3a\x62\xe4\xe6\x4e\x33\x80\x32\x4d\x93\x15\x2f\xc4\x63\xf0\x4c\x52\x2e\xf9\x6c\xe6\xfb\xef\xdd\xb7\xb7\xbe\x38\x24\xd1\x87\x4c\xb4\x2c\x5c\x9d\x05\xdd\xc2\x72\xe3\x80\x38\xbf\xc9\x84\x96\x7c\xc5\x55\xf9\x18\x33\x7e\xcf\x9a\xd8\xe7\x15\xd5\xa9\xc1\x51\x74\xdd\x63\xf2\x45\xc0\x55\xbf\x87\x87\xaa\x51\x16\x5d\x1e\x14\x05\xaa\xb3\x84\x01\xc6\x15\x8d\x4e\xea\x1c\x4d\x7e\x10\x1f\x90\xa7\xf2\xcf\x0b\xf7\x0a\x4f\xfd\x0a\xf2\x55\x9f\x7e\x04\x7a\xfc\x16\x6c\x2a\x04\xf3\xf5\x28\x24\x8d\xf7\x22\xa6\x3f\x80\x79\x32\x1f\x30\xd5\xb7\xa5\x2a\xc3\x39\xff\x0f\xc4\xc3\xcc\x5e\x90\x8a\xe9\x6d\x4f\x5c\x2f\x5c\xcf\xb9\x61\x2c\xfa\x00\x41\x5b\x8e\xa8\x83\x9f\x36\xb1\x59\xa5\x19\xab\x8b\xcc\xf4\x98\xc2\x4c\x62\x76\x3c\x5f\x57\xff\x3d\xb7\x22\x0a\x61\xf5\x9f\xc1\x61\x77\x1e\x77\x55\x5f\x34\xc8\xa5\xec\x6a\xc7\x01\xd7\x0d\x28\xf4\x1b\x44\xb3\x7b\x63\xb2\xdd\xdf\x89\x5f\x7d\x36\x64\xcc\x1f\xe0\x3e\xa2\x5c\x58\x90\x83\xd3\x16\x59\x20\x01\xbd\x8d\x80\x80\xc7\xf0\xef\x05\xf1\x6e\x1e\x2e\x64\xf8\x78\x0c\x33\x5a\xad\x1b\xa5\x8d\x8b\x8a\xe4\x4e\x14\x14\x50\xaf\xcb\x10\xd0\x5a\xcf\xf2\xd8\x50\xdb\x5c\x97\x5b\x8e\xfa\xe7\x3e\xbe\x2c\x6a\x29\x28\xcc\xe1\xb7\x7f\x84\x25\x80\xe8\xf1\x76\x04\xc8\x95\x71\x3f\x25\x4f\x30\xcb\x84\xcd\x5f\xd6\xba\x6e\xa1\x23\x79\xaa\xcd\x29\x43\x22\xb2\xe4\x62\xa4\xc4\x07\x77\x04\xfa\xe8\xee\x30\xd1\x6c\xda\x8e\x55\x11\xaf\x24\xb1\xb5\x69\xf1\xb7\x34\x15\xd0\x17\xe4\xc2\xb9\xec\x8a\x2a\x49\x5d\x4b\x66\xdf\x66\x06\x58\xdf\x54\xbd\x8e\x42\x1b\xa1\x74\x59\xbf\xc5\x9e\x13\xfa\xa6\xfa\xc2\xcb\x8f\xf4\x92\x72\x94\x07\x84\x29\x6e\x23\x2b\xd8\xdc\xa7\x93\xd1\x65\xaf\xe6\xab\xaa\x66\x8d\x65\x0d\x1a\xb5\x5e\xd3\xad\x10\x09\xfa\x74\x55\xb1\x1d\xc8\x45\xee\x46\x04\x6c\xfe\xb6\x6c\x4f\xf4\x67\xd5\x03\x1a\xe9\xda\xdb\x8d\xb7\x29\xae\xaa\xb8\x3b\xb0\xc5\xa8\xe6\x8e\x11\x75\x98\xce\xf1\x01\x91\x8f\x8b\xea\x89\x96\xb7\xef\x3e\x89\x1f\x44\xa3\xe2\x1a\x4f\x18\x3e\x96\x8f\x8f\xbb\xa7\xc1\x00\xdd\xc2\x3f\x96\xf0\xee\x7d\x61\x3c\x6e\x50\xc5\x29\x71\x8c\x2f\x48\x4f\xd7\x0e\x51\x7c\x55\x13\xdc\x93\x85\x0b\x48\xca\x19\xa0\xfa\x8c\x74\x41\xc7\xf8\x5f\xca\xf2\x40\x5c\xbb\x02\xf5\xf4\xfb\x33\xbd\x97\x9d\x3b\xdb\x71\xb7\x3b\x2e\x2d\xea\x1b\x94\xa4\xe5\xfd\x86\x74\x9c\x62\x7d\xfd\x27\x37\x8a\x42\x41\x05\x07\x85\xd9\x7b\xb2\x73\x4c\x9a\x43\x3e\x8b\x09\x63\xc9\xd3\xb1\x71\x29\xbe\x8d\xcd\x91\x1e\xf3\xa5\x52\x12\x67\xf3\x32\xa3\xe3\x81\x84\x27\xae\x2c\x2e\xfa\x74\x5f\xee\x13\x5e\xbc\xed\x1d\x8d\x59\x6d\x85\x78\x60\x68\x07\xeb\xb5\x3f\xeb\x7a\x6e\xd9\x65\x3d\x8d\x73\xfe\xa0\x09\x9e\x00\x67\xc9\xb6\xb0\x70\xa3\xc2\x95\x2e\xab\xbc\x18\xbe\xe1\xed\xc4\xdf\xcc\xae\x19\xa0\x18\x83\x7d\xad\x2a\x37\x94\xd1\xfc\x9c\xb4\x02\xcc\x60\x5d\x4e\x1b\xcf\xb9\xf4\xc9\x95\x36\x22\x4c\xc5\x85\x64\xdc\x8b\x64\xb9\x22\xbd\xc4\x8b\x92\x9d\x18\x56\xb5\xc9\xe3\x71\x94\x17\xd5\x72\x9e\x26\xb9\xa6\xbd\x26\x0f\xd6\xf2\xc6\xa7\x97\x26\x4f\x7b\x30\xa2\x13\x24\x4b\xe5\x7a\x73\x75\x38\xc4\x6a\x45\x3e\x86\x47\x77\x2b\x62\xc3\x24\x7f\x33\x97\xea\x63\xbf\x1c\xc8\x09\x8e\x6a\xfe\x4d\x42\xcd\xb4\x88\xc6\xa5\xd3\x09\x7c\xe2\x63\x54\xe2\xa5\x60\xbf\xe0\x79\x00\xfb\x7a\x06\x3d\x1e\x7d\x31\xd5\xe3\x29\xf2\xe1\x97\x5a\x5f\xfd\x2d\xef\x8d\x88\x05\x05\x04\xd9\x51\x85\xb6\xaa\x9b\x24\x10\xac\x53\xd6\x92\x6a\xce\x29\x0d\x29\xd3\xa2\x96\xd3\xd4\xe6\xa9\x92\x70\xa8\xc4\x2c\xc4\x01\x91\xc0\x5e\x11\x06\xb4\x39\x39\xb3\x55\x23\xbe\x16\xb6\xa4\x4a\x6f\x99\x36\x50\x68\x06\xfe\x54\xea\x39\xb5\x5a\x8b\x68\x3e\x7c\x56\x0e\x76\xe5\x81\xac\x05\x54\xfd\xb1\x88\x8c\xe3\x2f\x48\x07\xc4\x4b\x6f\xef\x9e\x52\xdd\x32\x12\x29\x44\x11\x94\x9e\x58\x9f\x2a\xc6\x4e\x6e\xc0\xa7\xad\xb8\x62\x29\xae\x92\x21\xcb\x85\xa3\x0c\x36\xde\x57\xa8\x6d\xc5\xd3\xa9\xdc\x5e\x7f\x7e\xe3\x53\x04\x44\xcc\x3a\xfa\x7c\xe8\xef\xdc\xc1\x67\x36\xe4\x4f\xe0\x5e\x9d\x61\x4f\xc8\x7b\xf2\x65\x50\xc1\x2d\x74\x42\x8f\xfe\x9c\x88\xff\xe9\x3b\x4d\x48\x52\xe3\x3c\x89\x42\x2a\xba\xa7\xd5\xda\xa0\xa4\x60\x47\xe1\xc6\x20\xb7\x7b\xb1\x5d\x15\xe3\xe1\xc8\x55\x2d\x66\xc4\x92\x0c\xd3\x59\x52\xff\x3f\x54\x24\xaf\x4b\x21\x67\x28\xd8\xfa\x56\x1b\xee\xb6\x61\xa6\xdb\x5d\xed\xa6\xae\xe4\x2e\x06\xdb\xfd\xcf\x36\xea\x0e\xee\x30\x97\xfa\xe5\x71\x0a\x86\x0b\x96\x31\x90\x93\x7a\xed\xb3\xb8\x40\xc4\x9d\x0f\x1d\x8a\x2d\x70\xea\x07\x10\xeb\x9d\x88\x9a\x09\x57\xb1\x12\xb1\x2c\x1f\xeb\xf8\xda\xa1\x27\x19\xda\xdc\x14\x7c\x3f\x80\x68\xaf\xe2\xd9\xe0\x19\x3c\x20\x66\x69\x91\x8f\xcb\xd2\xa5\xad\x60\xfb\x03\x18\x87\x79\xd1\xcd\x7e\xb9\x97\xdb\x65\x5c\x25\xa5\x67\x0e\xa3\xde\xda\xd4\x21\xd7\x82\x4d\x6b\x5f\x24\xb7\xa7\x95\x3c\x1d\x67\x55\x5c\x24\x8a\xaa\xc6\x78\xe3\xa6\xac\x70\xbd\xfe\x5c\xe0\xa0\x4b\x13\x79\x54\x8d\x80\x10\xee\xf1\x3d\xdf\x37\x6e\x10\xaa\xaa\x37\x79\xec\xf4\x26\xc9\xdf\xd4\x67\x21\x2a\x6b\xb3\x57\xab\x3f\x87\x41\x29\x58\x53\x26\x48\x59\x15\x81\x4d\x6e\x72\xf6\x01\x67\xf8\x0f\x9b\xd8\x4d\xa3\x3c\x75\xe5\x1c\x0b\x20\x6b\x08\xc3\x67\x3f\x1d\x91\xfe\xfd\xcf\x1a\xe4\xf4\x5f\x6e\xc7\x69\x9e\x39\xa2\x66\x9f\x91\x9c\xc2\xda\x40\x8f\x58\x44\x8f\x31\x15\xf4\xda\x14\xac\x02\x52\xff\x75\xf4\xa4\xef\xcd\xda\x65\xef\x6c\xff\xf2\xae\xdd\x2f\xec\x3e\xb0\x5f\x7a\xda\xc8\x98\xcf\x4e\xa6\x18\xbd\xe4\xab\x84\x39\x92\x09\x47\xd6\x5b\xdb\x84\xd9\x37\x7e\xf9\x97\xea\x6f\xef\xfa\x53\xa2\x3e\xca\x39\xd4\x17\x53\x08\x85\xb1\x4b\x81\xab\xd4\x39\x7e\x44\x9c\xfd\xeb\x24\x9f\x72\x0b\x0b\x58\xff\x81\x44\x2b\x66\x6d\x34\xeb\x7a\x7b\x9c\xf5\xf4\xf6\x5b\x9a\x8f\xdb\x8f\xce\xd9\x67\xf8\x6a\x08\x6e\xc7\x67\x36\x70\x7d\xac\xe6\xe3\x2a\x3f\x34\x1e\x8e\xc6\x44\x66\xfd\x74\x42\x50\xec\x4f\x09\x45\x3c\xc8\x87\xee\x29\xd9\xe8\x54\xde\xbe\xec\xb9\x75\xa4\xe2\x7e\x62\xc2\x77\x1b\x9f\x09\x11\xff\x18\xab\xb6\xac\x49\x4c\xd2\x79\xbf\xdc\x05\x14\x96\x1f\x30\x3e\xf3\x36\x75\x0c\x5b\x6b\x64\x24\x7e\x3d\x6a\x7d\x6d\x97\xc7\xca\x05\x44\xfb\x37\x80\x8f\x32\x72\x96\xdc\x69\x6f\xb6\xb9\xcf\xab\x44\xa2\x1c\xc7\xa7\xfa\x90\x6d\xea\xb2\x2c\x1f\x67\x5d\x37\x87\x8f\x8d\xec\xf8\x18\x62\x21\x8a\xba\xcd\x1d\xe6\xd9\x35\x79\xb2\x41\x36\xd5\xf5\x34\x14\x28\x52\x3b\x0a\x81\xef\x02\xf5\xe8\x46\x85\x1b\xc5\xab\x43\x97\x29\x4a\xcb\x13\xba\x02\xb9\x6b\x26\x5e\xef\xd9\xd3\x46\x1d\x85\x51\x18\x6e\x21\x7c\x88\x71\x8d\x41\xbc\x3d\x81\x27\x3d\x97\x64\x20\xdc\xef\x55\x92\x28\xbd\x80\x55\xab\x2f\x9a\xbe\x4d\xcf\x15\xc9\x4a\x10\xc2\xb5\x5e\x57\xcb\xcb\x26\x9d\x9f\xf9\xad\x7a\x6d\x95\xf9\xb8\x1a\x1c\xf6\xac\x71\xc5\x14\xc8\xd7\x32\x7c\xc1\x54\x80\xee\x0f\xd2\x55\x49\xbd\x90\x29\xbd\xcb\x38\xd2\x53\x92\x7e\xa0\x51\xb1\xa9\x43\xb6\x93\x97\x88\xfb\x59\xa6\xc9\x68\x41\xd6\xa7\xca\x3f\x71\x9a\x74\x6a\xc2\x71\xf3\x5e\x44\xea\x3d\x97\x90\x28\x99\x66\x94\x05\xd1\x24\x2b\x45\x6f\xfc\x60\x60\xb0\xca\x27\x42\x09\xc1\xac\xc1\x46\x93\x9e\x43\x6e\x54\xc1\x7d\x07\x19\xd4\x23\x1d\xaa\xa9\x6e\x71\x53\x47\x76\x01\x72\x88\x93\x44\xd6\x1f\xac\x8e\xf2\x7e\xba\xda\x75\xc3\xa4\xcb\x70\x41\x12\x79\x38\x3f\x43\xd8\xf0\x42\xa0\xa3\xc4\xf5\x5d\x3a\xc7\x10\x18\x2a\x20\x6f\x44\x53\xb0\x97\x8d\x8f\x6f\xdf\x8e\xf6\x72\x5c\x2c\xbb\x2a\x94\x93\x88\x6a\x9b\x05\x6c\xa9\xd7\x9d\x50\x28\xf4\x4a\xc5\x4b\x7a\x59\x38\x1f\x4e\xd4\xa8\x11\x5b\x67\x16\xc6\xfa\xca\x2b\x75\x79\xdf\x3d\xe4\xab\x1d\x3c\x64\xb5\x75\xd2\x17\x33\xeb\xff\xa5\x7d\x3b\xda\xdd\x42\xbc\x3e\xc2\xbc\x9a\x1d\x98\x59\x8c\x3e\x1d\x3b\x4c\xa3\x30\xb9\xbf\xcb\xe4\xa2\x6b\xda\x0f\xf3\x3a\x35\x7e\xe2\xaa\xb9\x30\x8a\x97\x73\xd4\x3f\xdc\x3a\x83\x88\x3b\xb8\xe3\x85\x3a\x17\x52\xa1\x5d\xa4\x25\xd0\x9b\xd3\x6b\x0f\x1c\x8f\x7b\xaf\x8e\x4b\xf1\x85\x68\x05\x58\x00\x92\x5d\xbd\x5e\x6b\x82\xa5\x0c\x9d\xf7\x21\x52\xad\x3d\x72\x06\xfa\x88\x5a\x0a\x87\x32\xcf\xd2\xb7\x8f\x0e\x21\x5a\xbd\x9e\x61\x86\xc2\x54\x7a\x28\x8a\x8d\x61\x8b\xeb\xde\x22\xec\xcc\xa5\x09\x57\xcc\xa3\x24\x1f\x97\x73\xe4\xe9\x46\xb0\xfe\x73\x6c\xc8\x75\x62\x66\xb4\xf2\xca\x2b\xed\xd1\x18\x72\x82\xd8\x17\xf7\x69\xad\x7c\xc6\x28\x23\x00\x93\x4c\xbd\x27\x74\x14\x07\xf1\xeb\x2e\xcd\xc6\x60\xdf\x7b\xb0\xfd\xaf\xbf\xa4\xd7\xb7\x68\x30\xf9\x69\x13\x39\xa2\xc8\x57\xe3\x54\x51\x0b\x2a\xb3\x39\x25\xb9\x69\xfb\xdf\xc5\x65\xe2\x8a\xad\x12\x1b\x70\x6c\x5f\x41\x00\xf0\x06\x43\x7e\x0b\xbf\x3f\x45\x44\x98\x30\xf1\x24\xac\x82\x47\x31\xa9\x90\x45\x74\xec\x99\xce\xe3\x1e\x7b\x6e\x76\xbe\x86\xf2\xbb\x80\x77\xb3\x01\x45\xc3\x57\x50\xa4\xe9\x14\xd1\x5d\xbe\x83\x91\xde\x1b\xa4\xf0\xbb\x71\x51\x40\x4f\x42\xd9\x0a\xd1\x14\x75\x21\x48\xb5\x65\x79\x71\xd8\xf5\x93\x38\x6b\x91\x36\xf9\x84\xf4\xc8\x27\x0d\x7e\x27\xae\x37\xee\x06\x43\x03\x3f\x1b\x09\x6c\xd6\xa3\x33\x50\xca\x3d\x7b\xda\xa9\xeb\x27\x65\x2a\xeb\x8e\x69\xb0\x47\x27\x84\x24\x97\xa5\x05\x68\xcf\x7b\xd4\xbf\x5a\xc9\x2b\xd7\xdb\x12\x24\x78\x01\xf5\xd1\x6b\x59\x39\x36\x48\xae\x1f\x93\xc9\x44\x87\xb9\x17\x0c\x8f\x90\xb5\xfe\x98\x1c\xe6\xe2\x5e\xcf\xf5\x1e\x09\x6d\xf1\x7f\x29\x7f\x1f\x7d\xed\x3b\x48\xdb\xd0\xb0\x51\x55\x76\xaf\xe8\x57\x07\x18\x5b\x8d\x84\x88\x03\xaf\xcf\xe4\x14\xea\xcf\xeb\x45\x61\x76\x1d\xd0\xe4\xee\xfe\x24\xd8\x15\x16\x6e\x39\x75\xaf\x25\x2b\xb2\xdf\x7d\xe7\x0c\x28\x17\x53\x9f\x6d\x50\x0d\x58\x8e\xd3\x14\xb7\xd0\x4c\xba\x5a\xde\xa0\x1b\xb2\x40\x48\x57\x6e\x10\x82\xb4\x70\xab\xe8\x92\xa2\x3b\xf8\xcf\xf0\xb1\xf5\x45\xc4\xa6\xf0\x59\x2f\x01\x6c\xcd\xdb\x3e\x04\x43\x81\x63\x94\xa8\xdc\x8a\x02\xaa\xd9\x75\xf3\x2c\x1f\x26\x65\x55\x6e\x0b\x60\xb4\xb7\xd0\x3f\x54\x69\x3e\xe9\x19\xa2\x72\x43\x15\x87\xc3\xf9\x5b\x9c\x23\x9e\x8e\x68\x58\xf5\x3e\xd6\x2c\xba\x20\x57\x27\x61\xba\xf4\xad\x99\x25\xb9\xeb\x40\x3b\xae\xd2\x38\x33\xa1\x4a\x24\x93\x3a\x07\xd4\x17\x9d\xf0\xd8\xcb\xca\xc5\x43\x39\x2d\x11\x70\xee\x4e\x8d\xae\x5a\x64\x33\x19\x82\xed\x72\xdc\xad\xf2\x62\x75\x4b\xe8\x26\x5c\x22\xf1\xc9\x4b\xe8\x8a\xd9\xe8\x4c\xc2\x88\x19\x7c\x86\x39\xc6\x8d\x09\xa1\x9a\x6f\x44\xdb\xc3\xcc\x63\x5b\x98\x0d\xb7\x3a\x75\x78\xf3\xf4\xb8\xa0\x84\xfa\x34\xa4\xf0\x64\x59\xc4\x5f\x5a\x0b\x18\xec\x5f\xee\x90\xd4\x91\xda\x82\x99\x99\x3d\x97\x08\xb3\xaa\x8b\x07\x77\xb4\x97\x5c\x3f\x81\xa9\xa4\xaa\x2e\x92\xbb\xce\x99\x30\x97\x1c\x39\xd7\x53\x0c\xb9\x47\x06\x78\xb6\x1f\xbe\xa3\x71\xa1\xa7\x8d\x30\x4c\xf6\xd0\x2a\x0c\x1a\xf6\x7f\x4a\xc7\x76\x56\xc5\xf3\xa1\x59\xaa\xc9\x1c\x9e\xdc\x5d\x2e\x36\x20\x32\x62\xbc\x93\x19\xe3\x98\x5d\xfa\x9c\xc8\x3b\x1a\x99\xb8\xe1\x7c\xe9\x81\x26\x59\x1a\x67\xbd\x39\xe1\xb9\x91\x10\x9e\x4e\xfe\x2c\x19\x9f\xf2\x57\x2f\xab\xa7\x82\x89\x0d\xd2\x3a\xf4\x62\xfe\x2d\x71\x1f\xb5\x95\x86\xdb\xb4\x2e\xe7\x03\x3a\x1b\xda\x19\x43\xab\xfc\xba\x38\x6a\xe2\xeb\xde\x42\xbf\x4e\x53\x28\xfc\x7d\x75\x5d\x9f\xb0\x4f\xd7\x65\xc6\x8f\xcc\xaf\x85\x6e\xe5\x76\xc8\xa5\x9a\x8b\xb7\x6c\x3b\xec\x9b\xf3\x52\x05\x81\x93\x70\x1e\xeb\xd2\x67\x6a\xf5\x93\x40\xdc\xdb\xdc\x79\xda\xf3\x97\xe2\xac\x3b\x48\x4a\x67\x90\x03\xbc\x27\x04\x44\xf4\x9a\x35\x1d\x93\x9e\x3c\x36\x22\xb5\xef\xf7\xad\x5d\xf9\x6b\x5e\x2a\x60\xdf\x0e\xbf\x42\x8d\x1f\xd2\x75\x99\x66\x92\x96\x77\x04\xcc\x06\xec\x66\xb1\xc0\xef\x52\xc8\x94\x4d\x9e\x8c\x44\xd7\x22\xf0\xd9\xef\x13\x9f\xfd\xbe\x87\x0f\xc4\x69\xac\xe4\x1b\x85\x26\xc9\x4f\x19\x4c\x29\x20\x5a\x7b\x49\xa9\xe8\x28\xb4\xc4\xf0\xe8\xb5\x34\xd6\x17\x04\x80\xed\xe6\xc3\x91\xab\x84\x8e\x3c\x1f\x54\x6a\x94\xc6\x68\x54\xab\x20\x39\x72\x21\x62\x9a\xd7\xc6\x25\x5b\x17\x90\x49\xf7\x90\x43\x3a\x89\x87\x76\x04\x7f\x59\x5f\x44\x6c\xba\xb7\x9a\x67\x6e\x81\x6c\x54\xd0\xc4\x40\x69\xa3\x75\x8e\xfe\xc3\x24\xa8\xc3\x9e\x9f\xf2\x17\x79\xca\xa3\xff\x5e\xcd\x29\x0d\xc4\x6d\x81\xb4\xb5\x5e\xd3\x83\xce\xe3\xd1\x1c\xf9\x5e\x1f\x27\xeb\x1b\xc8\x10\xaa\xba\x44\xa3\xc4\xe5\xc0\x15\x0b\xa1\xeb\xa3\xd6\xd8\xf8\x98\xdb\x3a\xc1\xf5\x1a\x9e\xc4\x08\x23\x17\xb5\x21\x6e\xd0\x23\xde\x86\x49\x5e\x3c\x5e\x6f\x43\x6c\x91\x33\x72\xb0\x68\xd7\x5e\xe9\x0b\x36\xd8\x22\x52\x12\x75\x00\x8f\x4d\xcb\x23\xc9\xde\xc3\x02\xfe\x57\x11\x79\xf6\x5c\xe7\xd1\xe9\xdf\xc3\xde\xb1\x2c\x9b\x8c\x99\x7e\x26\xfd\x75\x3f\x56\xdf\x67\x22\x51\xeb\x0d\x4d\xd4\xc5\x76\x91\xe7\xc3\x61\x10\x65\x69\x24\x04\x3f\x4b\xc4\xbc\x42\x3c\x20\x45\x7d\xd0\xd3\xfe\x6e\xd3\x74\xf8\x36\xd1\xf8\x24\xb5\x4f\x24\xb7\x57\x29\x17\xc0\x37\x94\x4c\xa3\x2f\x9a\x24\x10\x97\x12\x04\x69\x8c\x0f\x14\x7c\xaf\x2f\xd6\x08\x69\xd1\x93\x81\x89\x3f\xcf\x1e\x44\x9b\xbf\xac\x4d\x15\x28\x86\xa2\x81\x7e\x0b\x37\x0e\xfd\xbb\xa3\x8d\xf6\x0a\xa3\x71\x2a\xcc\xc4\x75\x64\x17\xeb\xe7\xc9\x93\x34\x2e\x86\x65\x55\xe4\x3a\x36\x26\x47\xf3\x45\x4f\x2f\x09\xd0\x7c\xd7\xeb\x25\x9a\x4e\xda\x88\xa3\x45\xa2\x43\xe1\xb3\xb2\xb8\x93\xd9\x34\x22\xa5\xf6\x55\xac\x37\x6f\x3d\x4b\x63\xe3\x2c\x5f\x79\xfe\x51\x89\xae\x44\x97\xd9\xa5\x2b\x49\xd5\x2a\x51\x59\x5f\x96\x5a\xc4\x5a\xe1\x53\x29\x62\x48\x1a\xde\x9e\x04\x88\xd5\x25\x6a\xf9\x9d\x8c\x08\xc0\x82\xd9\x9b\xd2\x6d\x91\x44\x21\xb4\x7d\x63\x83\x60\xcf\xf0\x17\xe5\x4e\xe3\xb7\xb6\x83\x37\x83\x58\xf0\x59\x14\x8c\xb7\xef\x44\xb4\xde\xd5\xdd\x15\x6d\xcf\xdb\x13\x0a\x25\xbf\x33\x09\x36\xa9\x7f\xcc\x7a\xd4\xf7\x64\xbd\x19\xe2\x95\xe7\xa0\x57\x27\xf4\xfd\x11\x5d\x71\x1e\x6e\x59\x0b\xd1\xe7\x6e\x24\xee\x77\xc8\xea\x4f\xca\x00\xcb\x6c\x78\xea\x9d\x83\x5b\x7e\x71\x42\xc6\x5a\xf7\x64\x4b\x63\x31\xcd\xad\x05\xc8\xe7\x56\x49\x8d\xb0\xd5\x4f\xc9\x4d\x45\x6e\x69\xc2\x30\xc6\xf4\x95\x5b\x69\xfc\x7f\x32\x76\xbb\x17\xb5\xbe\xfa\x5b\x1e\x9e\x2f\xfb\x1e\x07\xcc\xcd\x46\x87\xde\xbc\xe8\x43\xe4\xc4\xb4\x2c\xea\xef\x67\x1a\x17\x8d\x0e\xdd\xaf\x25\xdd\x58\x1d\x46\x4d\x90\x5a\x1e\x90\xa5\xc0\xd6\x9a\x5b\x8e\x93\x62\x39\x71\x69\x4f\xfb\xfb\xb8\xb5\x17\xd9\xd0\xbf\x91\x74\x58\xb8\x15\x17\xa7\xea\xd0\x64\x02\xc7\xf2\x05\x75\xe0\xcc\x72\x0a\xb3\x6e\x14\xfb\x76\xb4\xdd\xd0\x29\x69\xe6\x65\xdf\x7c\x09\x18\x26\x85\xf5\x59\x17\xda\x12\xd4\x41\x5c\x09\x64\x1a\x01\xef\xbb\x58\x34\x1a\x31\x27\x01\x18\xb1\xa9\x23\xb7\x14\x5b\x43\x07\x92\x88\x52\xdf\xc5\xa2\xb3\x51\x53\x38\xd0\x52\x17\xf7\x5c\xb1\x40\x1e\x1a\x5b\x05\x8a\x82\x5f\x3b\x4e\x9e\x2d\x17\x89\x11\xfc\x1e\xf6\xa0\xfd\xc3\x46\x78\x84\x08\xe9\x8d\xe2\xe2\x90\xa1\xb1\xbd\xd3\x52\xbd\xc4\x4c\x67\xc0\x92\x90\xe5\x71\x89\xa7\x8c\xd6\xf9\x3b\xf2\x37\xf5\x7a\x86\xda\xf3\xca\x2b\x6d\x68\x02\xe7\x5e\x65\xc0\x12\x1c\x22\xdd\x9e\x0d\xa9\x7d\xd2\xc7\xbd\xa6\x5a\xca\xce\x17\x9c\xca\x4a\xd8\x8a\x02\x63\xb8\x1c\x25\x99\x58\xcf\x78\xa4\x60\x68\x14\x03\xcd\xa8\xd7\xb2\xc5\x0d\x41\xd8\xe0\x96\xe5\x5e\xab\x5c\x56\xda\xf9\x8e\x73\xec\x66\x14\xa8\x0e\x37\x9b\xd5\x5f\xf1\x05\x87\x26\x5d\x68\x79\x24\xa5\x24\xe7\xbd\xf3\x7a\xcf\x0d\xe3\xac\x67\xcd\x09\x9d\x7a\xe2\xe9\xd8\x08\xf4\x59\xd2\x25\x46\x03\x20\x2f\x74\x05\x5b\x18\x24\x95\x83\xcf\x58\x7e\xfc\xce\xcc\xd9\xb1\x7b\xb1\x9d\xe5\x45\x35\x98\x0b\xa1\x06\xcd\x6f\x84\xad\x9b\xdc\x8e\xba\x42\x38\x9d\x32\x8f\x0b\xd7\x5b\x60\x38\x9c\xde\x57\x46\x79\xa2\xea\xf9\x53\xd9\xe7\x26\xd3\x8e\xe3\x69\xe6\xd0\xfc\x4a\x3b\xcd\x4b\xdc\x20\xeb\x41\xca\x07\xb7\xee\x24\x35\xd0\xe2\xa1\x2b\x62\x24\x96\x66\xbc\x41\xad\xea\x4b\xb3\xa4\xc1\xbd\xed\xbd\x2f\xee\x7f\xa2\x8e\x93\xb6\x70\x5b\xfb\x76\xac\xff\x14\x9f\x17\x8b\xfe\x3d\xf6\x08\xfe\x4c\x8b\x04\x6c\xcf\x9b\x48\xff\x3d\x90\xcc\x77\x1e\xaf\xe0\x18\xc0\xbe\x55\x0d\x7d\xe4\x33\xf7\x26\x34\x62\x3e\x29\x7d\x0b\xad\x18\x10\x95\xcd\xd2\x25\x70\x20\xe7\xd7\xea\x48\xac\x9b\x5b\x8e\x07\x33\x86\xf9\x02\x51\xfe\xfb\xfd\xd5\xa5\xd0\xed\xb5\x30\x81\x0e\x85\x5e\x37\x8d\x20\x0e\xc7\x65\xe5\x0e\xc7\x95\x2b\xe6\xa6\x78\xa4\xbe\x85\xf7\x48\x27\xa0\x3b\xe6\xd6\x02\xad\xb8\x84\xcd\x66\x5c\xa8\xc1\x2c\xe2\x18\x86\xbf\x7a\xdd\x28\xe3\xfb\xf5\x71\xe2\xfc\x34\xd4\x26\x08\x72\xb3\xf4\x45\x93\x06\x98\x8b\xd5\x34\xd4\x37\x8d\x3d\x96\xef\x1c\xb9\x8b\xf6\xf3\xbc\x57\x6e\x09\x5c\xfd\xbb\x34\x4a\xd8\x84\x26\xa1\x2f\xbc\xbd\x50\xda\xd5\x09\x77\xec\x09\x2f\xf3\x16\x69\x2f\x95\x6e\xc5\x15\x2a\x27\xfc\x82\x27\x58\x06\xd2\xce\x05\x5f\x07\x55\x2e\xcd\xb5\x78\x37\xe6\x5b\xfd\xb7\xbc\xd4\x6e\x18\x40\x5f\xa6\x62\xe3\x70\x5d\x96\x14\xad\x19\x4d\x6f\x43\xa7\xd2\xee\x72\x75\xac\x9d\x27\xaa\xd3\x49\x86\x8e\x02\x4b\xe3\x51\x42\x01\x50\x71\x89\x74\x18\x0e\x3b\x77\x28\x5d\x15\xe0\x28\x3e\xe3\xd5\x28\x94\xd7\x57\x27\x81\x69\xfa\xd3\x09\x9d\x16\x3f\x9d\x39\x25\x45\xb7\x7d\x18\x27\x99\x4e\x6b\x01\x6f\xb9\xc0\x6e\x93\x4d\x6c\xd0\xbd\xed\x58\x18\x89\x62\x15\x1f\xd8\xcf\x3b\xb4\x43\x76\x45\x62\xad\xf5\x82\x79\xd8\x3b\xc8\x0f\x3f\x2b\x90\x1f\xc4\xaf\x3b\x93\x50\x0d\x5c\x90\x37\x40\x1c\xdc\xa4\xba\x66\x5e\x09\xc1\xcb\xf5\xdd\x95\x8c\xc8\xec\x8b\x36\xaa\xdf\xbc\xa0\x40\x94\x47\x20\xbb\x0a\x78\xe0\x1c\x2b\x8a\x20\x11\xd2\x89\x0b\xf2\x51\x2c\xa8\x2b\x13\x96\xd6\x66\x90\x30\x00\xa2\x08\x55\x0b\x72\xde\xa2\xe8\xfa\x10\x45\x0e\x7a\xa6\x1a\x62\x4c\xfb\x23\xa0\xc1\x9e\x90\x92\xcd\x1a\xa6\x4d\xce\xec\x62\x1e\xab\x31\x1e\x99\xf8\x0d\x4d\x1b\x31\xc4\x50\x04\x78\xc0\xa4\x7b\x38\x67\x9e\x57\x4b\x71\x9a\x6e\xa1\x29\xd2\x5d\xf9\x7e\x88\x47\x6f\xe0\x96\x98\x3a\xa8\xef\x45\xfe\xd2\x93\x9d\x90\x9f\xbc\x23\x01\xcc\x7e\x66\xb6\x1e\x7d\xa1\x9d\x26\x2a\x00\x83\x9e\x12\x48\xed\xa8\xf3\xc1\xcb\x34\x2c\x57\xd8\x6c\x87\x5d\x9a\x76\xc5\x8c\xcc\xaf\x89\x3f\x91\x35\xa1\xd7\x1e\x8f\xe6\xc6\x45\xde\xcb\xd3\x34\x2e\xcc\x7a\x05\x30\x1c\xcd\xd3\x10\x50\x6e\x91\x18\xc9\x45\x6e\x0a\x6e\x5e\xb3\x8e\xdb\x28\x8d\x33\xab\x12\x71\x9e\x7d\x40\x56\xcd\x1f\xf8\xce\x5c\x91\xa7\xa9\x03\xc9\xd2\x3a\xc6\x54\x2a\xc1\x12\xdf\xf0\x0e\xb3\xf7\xa2\x9d\xe5\x95\x6a\x5f\x79\xcf\xdc\xe0\x9f\xdb\xb0\x4f\x5e\x16\x7c\xae\x4b\xf1\x3b\x48\xe8\x7e\x1c\x05\x1c\xd1\x8f\x1b\x34\xb6\xf6\xb7\x5f\x1d\x0f\x47\x0e\xd8\x27\x44\x0f\x3d\xe6\xf5\x05\xb1\x52\x44\x4e\x6e\x1c\xa7\x92\x91\x21\x85\x87\x6a\x9a\x5e\x33\x81\x25\x1e\x25\x55\x9c\xea\x3d\xf2\x0e\x4a\xc1\x4d\xc9\xc7\xbf\x32\x49\x57\xe2\x39\x5a\xce\x18\x43\xa1\x9d\xd5\xea\x10\x2c\xe9\x08\x77\x2f\x53\xe7\x96\xc7\xa9\xe8\xe8\x33\x19\xc3\xcf\x91\x79\xde\xec\x85\x7a\xf3\xac\xeb\x12\xc5\x6c\x61\x83\xfe\xc9\x24\x54\x30\x7f\x32\x93\xd1\x1c\x78\xb1\x3e\x49\x54\xa1\x1d\xd3\x02\x85\x1c\xe8\x8b\xb5\x10\x23\x7b\xae\x74\x45\xb5\x10\xda\x49\x6f\x46\xa4\x09\x8f\xdc\x10\x71\xfc\x2e\x51\x72\x8e\xc9\x3a\xd5\xff\xdf\xa4\xdb\x35\xcc\xcb\x6a\x81\xa6\x18\x9b\x3a\x32\x28\xc0\xce\xfa\x2f\x3b\x32\xd0\x47\xcf\xf1\x17\xa5\xe7\xc8\x29\x13\xa2\xde\xc3\xa6\x99\x78\xea\x96\xab\x79\x42\x10\x5f\xc4\xc2\x44\x3c\x82\xc9\x19\xa0\x52\x6f\x4d\xc8\x58\x7a\x53\x87\x7c\x6d\xf2\xc3\x59\xbf\x88\x7b\x48\x60\x15\x0f\x24\xc7\x82\x61\x83\x02\x9d\x3c\xce\xb2\xc4\x95\x8a\xe3\xc0\x1f\xbc\x3d\x8d\xea\x93\x6f\xa8\xce\xe9\x8d\xab\x74\x25\x4e\xc7\x96\x05\x98\xf9\xb7\x7c\x32\xb3\x05\xdf\x38\xd4\xda\x75\xa0\x9d\xe5\x59\x4f\xac\x6c\x47\x48\x06\x51\x7a\xe1\x90\xd7\xeb\xcf\xe5\x26\xa6\x89\x0a\xe1\x22\x2a\x9f\xa7\xbc\xe8\xbc\x47\x71\x98\x95\xb9\xba\x64\x98\xb3\x36\x67\x7c\x47\x26\xa4\xc2\xa7\x8b\xc7\x26\x55\x4d\x54\x24\x7b\x30\x96\xb4\x5d\x9e\xd0\x2c\xe9\x27\x78\x4a\x08\x5a\x9b\x05\xe5\x68\xe5\x4a\x43\x32\x5e\xb8\x51\xf9\x3c\x08\x71\x68\xbf\x6c\x5b\x63\xbf\xa9\x6d\x24\x6c\x50\xc6\x59\x0f\x9d\x4b\xa5\xe2\xcb\xdc\xce\xd3\xf2\x49\xf3\x55\x6e\x1e\x06\x18\xd7\xc9\xb4\xfa\xad\x99\xb1\x8f\xcc\xb3\x93\x62\x94\x17\xd5\x1c\x8b\x68\x73\x36\x7f\x82\x01\x99\x77\xa7\x00\xb9\xbd\x3c\x7b\xb2\x3e\x08\xf1\xa7\x8e\x4f\x02\x4b\xe1\xa3\x09\xc3\xf4\x31\x31\x46\x50\xd9\x04\xe5\x52\x85\xba\xa2\x12\x46\x52\xaa\xec\x61\x1c\x1d\xd7\x70\x92\x02\x8c\x71\x3b\x22\x7e\x80\x96\xd8\x2a\xbe\x13\x05\x42\xc6\x49\x34\x22\xf5\x57\x04\x8f\x86\x03\x52\x23\x0d\x66\x1e\xa0\x51\xe2\xe9\x7c\x12\x4d\xe9\xe4\x07\x90\x51\xcf\x8d\xf2\x32\xa9\xf2\x62\x95\x45\x63\x2e\x4d\xa6\xc0\xd4\x4d\x72\x6a\x83\x58\x34\xcf\xa7\x4d\x18\x03\x84\x87\xe6\xc6\x65\xdc\x2d\x92\xe5\xa4\xeb\x90\x69\x23\x33\x38\x85\x6f\xad\x2f\x08\xac\x33\x1a\xa7\x23\x34\xe9\x34\xcf\xa1\xe1\xd1\x9f\xc9\x23\x36\x62\x40\x48\x2a\x41\xb4\x9d\xa7\xa5\x7d\x14\x2d\x05\x9c\x04\x17\xe8\x2d\x8e\xe2\xd6\xe9\x3f\x10\xc8\x71\x84\x31\xb8\x47\x07\x7f\x4a\x8d\xf0\x4f\x49\x4b\xa9\x88\x57\x97\xc6\x05\xc6\xd9\x88\x10\x57\x38\x5c\x5c\x89\x02\xa6\x6a\xc5\x25\xa9\x87\xaf\xa0\x4d\xf0\x23\x82\x15\xff\x88\xf1\x19\x49\xaf\x97\x78\x43\x75\xdc\xf7\xcf\xf8\x21\x7c\x36\x03\x75\x79\xe5\x95\xf6\x70\x5c\x3f\x83\x39\xba\xad\xe7\xa8\x25\x31\x87\xed\x8d\xb4\xf8\xee\xe4\x51\xff\x40\x9e\x1b\xca\x0c\x51\x05\xc1\x64\x2d\xae\xb7\x30\x31\x44\x94\xfd\xf3\x09\x3f\x80\x49\x40\x7e\xfc\x1c\xde\xd2\x0b\xd4\x04\xe3\xbd\xfb\x51\x98\xda\x30\xc6\xe6\x75\x75\xb3\xf5\xb4\x6e\x26\x7c\x6f\x8c\x76\x3b\x77\x61\xcc\xdd\xf5\x0a\x18\x66\x0a\x4d\xb1\xf5\xde\x24\x28\x03\xfd\xee\x1f\x7c\xae\x51\xf2\xd7\xc7\xc9\x48\x03\xa1\x19\x10\x6c\x30\x33\xd8\xaf\x43\x86\x6b\xd3\xce\x06\x53\xaa\xe2\xf5\x67\x81\x42\xaa\x0e\xcc\x26\x21\x5a\xaf\xcb\x57\x36\x64\xc5\xd4\xf0\xaf\x9b\x23\x68\x7a\x2b\xda\x5d\x07\xf4\xa0\x81\x34\x84\x5e\xd3\xfc\xfd\x4c\x93\x8e\x9f\xaa\x64\xa1\x21\x60\x4b\x96\x14\x4b\x83\x46\x4e\x77\x90\x27\x5d\x73\xcd\x47\xf4\xf8\xdf\xd8\xb3\xf0\x41\x14\x4a\xce\x07\xb4\xdb\xf2\x61\x8c\x89\xae\x8d\xe1\x43\x9f\xe9\xad\x28\x74\xf3\xe3\x15\x83\x19\xd9\x54\x5e\x6e\x99\xbe\x88\x82\x59\x7b\x55\x1f\xc1\xc3\xb8\x38\x84\xcf\x8c\xb5\x77\x8c\xba\xbd\xc7\x9a\x30\x65\x71\x59\xa9\x9e\x5d\x2b\xc0\x19\x2e\x4c\xb1\x63\x66\x1a\x77\x2f\xee\x37\x37\x5a\x20\x76\x54\xe9\x16\x1f\xcc\x64\x6f\x59\xa0\x32\xeb\x8d\xbb\x95\x48\xe6\xd5\xf7\xc8\x6c\x1c\x48\xea\x0c\x14\x74\x34\xb8\xaf\x12\xe1\xf8\xcf\x67\x12\xb1\x9d\x3b\xdb\xdd\xdc\xfb\xfe\xe1\x59\x9c\x89\xe8\xc1\xb0\x11\xf0\x38\xab\x92\x14\x63\x01\x9b\xb4\x87\x61\xa4\xe6\x33\x68\xb1\x5f\x8e\xc8\x1b\xe5\x82\x7c\x02\x74\xdf\x8e\x93\xe2\xfb\xa7\xa4\x3a\xf9\xf6\x84\x36\xc9\x59\x92\x94\xbb\x8a\x0f\x63\x28\x76\xb9\x27\xaa\x73\xdd\xd4\x27\x2b\xe3\xe5\x3a\x94\xd7\x61\xc4\xd4\x07\xea\xf7\x32\x36\x92\xe5\xc6\xab\x49\xbf\xce\xb6\x77\xee\xf4\xcc\x19\x79\x63\x7d\x41\x58\x99\xd5\xc4\xa5\xbd\xc7\xea\xf3\x12\x41\xf1\x87\xd8\xbf\x78\x2a\x60\x8e\xe3\x30\x47\x45\x89\x2e\xfd\x03\x9c\x90\x3e\x41\xf5\xfe\x7b\x08\x40\x26\x5e\x1c\xc6\xbe\x9f\xa2\x4e\x35\xde\xb1\x04\x7c\x7d\x31\x69\x7d\xf5\xb7\x78\xd6\xfa\x82\x1e\x83\x27\x27\xdb\xf5\xdb\xb7\x0f\xbc\xf8\x4b\x98\x04\xa0\xf1\x70\x02\xe7\x02\xfe\xe2\xff\x8a\x5c\x19\x25\xdf\x9f\x45\xc1\x13\xf7\x81\xd6\xa6\x88\x22\xd7\x89\xd0\x79\x1c\x93\x4a\x55\xb8\x97\xca\xde\x5a\x2b\x75\x51\x80\x73\xff\x1d\xb8\x85\xa2\x2e\xfb\x97\x80\x23\x23\x64\x2a\x0b\x0d\x49\xf5\x5d\x11\xe8\xc1\x88\xef\x67\xd1\xe6\x2f\x6b\x6e\xf1\x86\x34\x77\x70\x22\x81\xfc\x8b\x7b\xf5\xa9\x24\x00\xd8\xdb\x37\x90\x3f\xe0\x17\xd6\x26\x64\xe0\xf7\xf8\x1a\xad\xfb\x87\xa8\xf7\xcd\x55\x9c\xc4\x13\x3e\x24\x56\xdd\x99\x89\xb0\x86\x6c\xda\x2b\x37\xd8\x7a\x4b\x21\xa1\xbf\xc1\x8d\xea\xd3\x51\xbd\x3c\x90\x4e\xbd\x1b\xf0\x0c\x4f\xfc\x52\x27\xe8\x67\x64\x4b\x5d\x34\x98\xd8\x0a\xc1\x1c\x39\x5a\xde\x55\xe2\xd4\x54\xef\xa4\x48\x62\x64\xdb\x6a\x3d\x19\x51\x0b\xf5\x43\xb6\xed\xcd\x45\x90\xbc\xd4\xfe\x2d\x4a\xdb\x7f\x8d\x8f\x68\x06\xb9\xf5\xdf\x43\x3a\x8c\x79\x34\x6e\xe9\x93\x6b\x44\x1a\x7f\x30\x73\xdc\x7e\xc5\x7a\x15\xd8\xf4\x1e\x65\x51\xbf\xb1\xbe\x68\x6a\x50\x12\x88\xbb\xe5\x75\xae\x90\xbe\xeb\x35\x09\x80\x76\x93\x8a\xbb\x06\xd0\xc5\x35\x77\x83\x46\x28\xf5\xc0\x2d\x63\x38\x14\x54\x2b\xb4\xe9\xa5\x2f\x1a\xa8\xc9\x75\xb9\xe5\x34\xd7\xb1\xda\x25\xf0\x60\x67\xeb\x80\x83\x3b\xda\x49\x59\x8e\x37\x88\xf8\x7b\x20\xdc\x9b\x33\xb3\xa3\xbd\xfb\xf6\xb6\x07\xe3\xc2\x6e\x15\x96\xfb\xb7\x74\xeb\xe8\xab\x49\x40\x53\xf7\x92\x38\xd3\xfe\x87\x69\xda\xd6\xef\x8e\x45\x84\x96\x3d\x16\xea\x67\xac\xa6\xc7\x6a\x64\x6e\x54\xfd\x9c\xac\x07\x84\xcb\x67\x3b\x64\xca\xa0\x81\xc1\x24\x86\x08\xa9\x7d\x4e\xba\x69\x68\x93\x9d\x20\x89\xa9\x76\x27\x7c\xd1\x13\xb2\xe7\x7c\x54\xf1\xf4\x9d\x4d\x6b\xa1\x4f\x09\x74\x0d\x02\xc4\x5f\x20\x88\xe1\xaf\x3d\xe4\x04\x6e\x7e\x8d\x26\x76\x9b\xd6\x02\xda\x2e\x7b\x7e\x05\xfd\x06\x2c\xc9\xf3\x5a\x4f\x98\xbb\x72\x98\xc7\xdc\xa5\x36\x6a\x9c\x75\x07\x79\x21\x4f\xc4\x20\x34\xa1\x4d\x78\x91\x7e\x50\x7c\x86\xca\x29\xf0\x2e\xa9\x15\xcc\xea\xdf\xef\xdb\xd1\x1e\xae\x96\x2e\x5d\x6e\x91\x1f\xc2\x51\x59\x1f\x7a\x4d\x58\x4b\xe0\xa7\xe4\x1b\x9b\xdf\x33\x91\x85\x67\x01\x2c\x68\xa8\xf5\x07\x30\x09\x46\x4f\xeb\x2a\xed\x05\x95\x5c\x43\xc0\x39\x42\x67\xe8\xe1\xe7\x57\x62\x23\x38\x4d\xa1\x89\xcd\xd4\x7c\x23\x7c\xb9\xde\x1c\xc3\x38\x1b\x2f\xc7\xdd\xba\x34\xf0\x13\x38\x2c\xaa\x7b\xb8\x07\xfa\xe2\x73\xb1\xf2\xcb\xae\xe7\x8a\x38\x15\x30\xa9\x02\x42\xf1\x44\x6d\x99\xca\xbb\x98\x91\x49\x58\x10\x60\x32\x1a\xcf\x36\xa0\xf2\xb7\x76\x02\xe1\xd0\x2d\x2f\xe7\x45\xb5\x4d\xce\x19\x9c\xdf\x9f\x44\x01\x84\x3a\x87\x46\x93\xd5\x52\x84\x3d\x50\x73\x09\xb3\x72\x6e\x79\x63\x37\x45\x62\x18\xa7\x16\x67\x9b\x4a\x85\x36\x74\xf3\x5e\x6e\xc7\x69\x3a\x5f\x9f\x6c\xfe\x7e\xd6\xb1\xde\x5b\xf4\x86\x26\xca\x24\x28\xa8\xce\xcf\x20\xdc\xc5\x7d\x38\x4d\x63\xa0\xe8\x6c\xaa\x14\x1a\xac\x37\x1b\xd6\xc0\x62\xdb\xbd\x26\xed\x8c\x83\x3b\x34\x23\xfa\x6d\x16\xd1\xf9\xed\x99\xda\xfd\xc0\x8b\x6d\xb7\xe2\x8a\xd5\x9e\xfa\xde\x79\x01\xb3\x3d\x7b\xec\x3a\x7a\x34\xb4\x05\x2b\x69\xc3\x99\xdb\x65\xfd\xf0\xd4\x45\x18\x4f\x1d\x1b\xfe\xdf\x90\x0c\x5c\xe9\xdc\xd6\xd6\xd7\x0c\x2c\x77\x8e\xd4\xc8\xdf\xd4\xcd\x88\x93\xe3\xb3\x88\x04\x9a\xce\x61\xa7\xe3\xf4\xd7\xb6\x8a\x11\xb2\xa9\x41\x76\xd1\x77\x7b\xd3\x38\xeb\x95\xdd\x78\xe4\x2b\xc2\x26\x3e\x4f\x03\x99\x0b\xde\x62\xd4\x83\xc6\x6e\x34\x57\xce\xd0\x02\x1b\x15\xf9\xb2\x2b\xcb\xba\x0a\xa8\xb7\x2e\x86\x01\x27\xa8\xf5\x06\x70\x06\xda\x9a\x97\x67\x5a\x4d\x07\x77\xec\x6a\x97\xe9\xb8\xdf\x4f\xca\x41\x8b\xc6\xac\x6c\x78\x71\x89\x58\xaa\x6a\x79\xbf\x85\x3b\xcd\x24\x97\xab\x1b\x14\xf7\x67\x41\xa2\x38\x42\xea\x0d\xa4\x3a\xbe\xe5\x42\x6a\x73\x4d\x9e\x8a\x95\xcb\x62\x1d\x2f\xe3\x1e\x3d\xa4\x16\xfc\xc3\x26\x02\x94\xd0\x46\xb4\xd5\x6b\x1f\x3b\xdc\x84\x26\x1b\xc6\xbd\xed\x72\x40\x2e\x86\xda\xe4\x89\x02\xb5\xe3\x38\xe1\x10\x46\x2e\x2e\xba\xda\x08\xb7\xfd\x3e\x05\xd2\xdf\x78\x63\x0f\xbc\x58\xef\x91\x7c\xb8\x24\x72\x3d\x7e\x40\x71\x9a\xda\x9a\x2a\x01\x6d\x4c\x83\x8d\xef\xb0\x67\x0f\xb0\xb7\x81\xfa\x6f\xa4\xb9\x30\xcf\x3e\x36\xd3\xa5\xd9\xbd\xd8\x4e\x93\xae\xcb\x4a\x90\x61\xbc\x35\x42\x60\xfb\x04\x77\x8c\xaa\x88\xb3\x72\x94\xc6\x06\xb2\xd4\x11\x2d\xf5\x40\x90\x2a\x29\x4b\x88\x48\x1f\xfd\x22\x76\x3d\x25\x14\x79\x65\x84\xfa\x4f\xd8\x10\x4f\x76\xd0\xfa\xdd\x99\xb9\xe8\x5f\x6f\x0f\x5c\xda\xe3\xb5\x8a\x1d\x8d\xd2\xe6\x2f\xd8\x71\xe9\x32\xb1\x3c\xac\xe8\x7b\x5a\x3e\xa7\x79\xe5\xca\x5f\xb4\x38\x3a\x3d\xe2\xae\xdf\x13\x49\xdd\x95\x88\xc7\x67\x75\x90\xf0\x2d\xc5\x3a\xf7\x47\xbe\xbe\xb0\x56\x47\x0c\xec\xf1\x8f\xa2\x00\xf6\xb8\x3e\x21\xdf\xe9\xb7\x60\xfe\xe3\x75\x83\xeb\xac\xde\x1c\x3f\x65\x61\xe8\xef\x50\xa9\x73\x84\x64\x1a\x54\x34\xd7\xc4\x29\x65\x0b\x58\xf0\x93\x6c\x45\x3f\x4a\x87\x24\x49\xc6\x05\xa4\x72\xbc\x88\xb9\xe7\x8c\x2c\xfd\xb6\x84\x68\x5c\xbf\x12\x4d\x75\xe4\x48\x39\x3d\x4d\x86\x4b\xae\xb7\x20\xff\x8c\x06\x25\xea\x17\xb4\xd3\x3e\xc0\x1b\xea\x3f\x50\x97\x43\xcf\x64\x6d\xff\xfa\xee\x16\x58\xcd\xce\x21\x07\x31\xba\x44\x6b\x31\x9c\x94\x0d\xd3\xd6\x6e\x3e\x5a\xf5\x4b\xd8\xfa\x71\x2d\xaf\x45\x15\xc4\xbc\xdc\x8a\xd9\xa0\x34\x5a\x1d\x36\xf8\x42\x2e\xb9\x34\x71\xde\x59\xcf\x23\xeb\xea\xdb\x6c\xd0\x91\x60\xea\x90\x61\xa6\xd7\x69\xed\xdb\x01\x2d\xc8\x5d\xeb\x97\x19\x01\x52\x89\xf8\xe1\x86\xa6\xcb\x5e\xdf\x74\x69\xb0\xee\xe8\xe6\x59\x37\x1d\x7b\x74\x0b\xb0\x47\xb7\xf1\x98\xf5\x05\xc9\x67\xa4\xa5\xdb\xee\x07\x3d\xbf\xf3\x14\x8e\x74\xab\x7a\x3c\x72\xe2\x9f\x3c\xdb\xa1\x32\x69\x41\x60\x72\xc8\x04\x7f\x11\x09\xae\x07\x0a\x85\xce\xf2\x69\x61\xbb\x60\x1c\x74\x86\x9b\x6d\x00\x16\x22\x34\x7f\xd6\xe8\xc8\x12\x97\xd5\x76\xf2\x5b\x50\xcf\x38\x2d\xbb\x27\xa4\x9e\x72\x3c\x74\x61\x7f\xed\x4b\xf8\x88\xf8\x07\x95\x9f\x30\xd8\x1b\xb6\xa1\x35\xa6\x83\x8d\xc9\x45\xd6\xd1\x8c\x82\x07\xc7\xa5\xa6\xa1\x63\x2f\x3f\x9c\x09\x20\x18\xc7\xf6\x15\xc2\xa8\x3f\xd2\xd9\xfc\x65\x7f\x0f\x02\x54\xf2\xa1\x1c\xf9\x7a\xbc\x34\xba\xf4\xc6\xc3\xb8\x8f\x98\x68\x5a\x53\x2d\xaf\xc3\xf3\x0f\x66\xbc\x87\x45\x68\xc8\x75\x07\x59\x9e\xe6\xfd\x30\x37\x32\xbc\x02\x61\xd2\x6f\xb1\x62\x24\xeb\x3b\x8e\x47\x65\x37\x4e\x51\xda\xe1\x43\xc2\x7b\x44\xaf\xbd\x16\x42\x59\x15\x63\xc9\x57\xa1\x85\x60\x5d\x42\x59\x45\xec\x29\x49\xf0\x52\x5b\x6b\x17\x67\x9b\xa9\x3b\xdb\xe5\x78\xe9\x55\x69\xa6\xf2\xae\x50\x8f\x55\x7d\xb1\x36\x23\xaa\xb2\x6f\x6f\x1b\xfe\xcc\xde\x58\xce\x6c\x95\xe4\xf7\x6c\xa4\xd9\x70\x63\xcb\x81\x94\xa2\x72\x47\x4c\x10\xbc\xe5\xc9\xc0\x3f\xa2\x0d\x30\x18\x97\xdb\xe4\x5e\x19\x4f\xb6\xf5\x77\x4d\x98\xe6\xc3\x49\x60\x33\xfe\x52\x27\x90\x95\x54\x84\x0a\x07\xd0\x39\x69\xb0\x78\xdd\x10\x82\x9e\xd5\xb7\xd5\x14\xb3\x1e\x63\x57\x35\xd9\x70\xde\x9d\x24\x64\x20\xc8\x6f\x8d\x95\x58\xbf\x95\x51\xbf\xeb\xb7\xd2\xff\x1f\x51\x88\x3e\x12\x11\x59\xe1\xff\x46\xd8\xd4\x17\x38\x5b\x51\xbe\xdc\x47\x0f\xc9\xe4\xc2\x1a\x04\x08\xc4\xe4\x2c\x87\x45\x24\xf2\x6b\x88\x92\xe3\xe0\x7c\x93\xe4\x2b\x2e\x7f\xae\x21\xf6\xa8\x5c\x4d\xd3\x64\x0c\x86\x12\x96\x45\xab\x13\x94\x93\x35\x70\x29\x8e\xab\x4e\x45\x19\x3e\xf6\x6b\xed\xdd\x8b\x5b\xa6\xf0\xc6\x9e\x5d\x77\x95\x88\x08\xbf\x8b\x6f\xef\x45\x7a\x7f\xf3\x37\x82\x5d\xbe\xd7\x64\x98\x25\x88\x8b\x12\x42\x91\x0f\x92\xa5\xc4\x3a\x01\x8d\x93\xd2\x86\x0a\x74\xc9\x75\xf3\x21\x18\xd6\x28\x9e\xdf\x67\x43\xa3\xdb\x3c\x76\x5c\x0f\x32\xf1\x85\x2b\x07\xe9\xea\x5c\x20\xd6\x5f\x23\xfa\xe6\x79\xd2\x42\x9d\x55\xc9\x7a\x69\x6f\xbb\x2a\x92\x7e\xdf\xc8\x93\x2f\x87\x20\x58\x7f\x54\x7d\x41\x62\x00\x65\x9c\x06\xcf\x3d\xc5\xfa\xc8\x2d\x33\xdc\xcf\x93\x9e\x57\x92\x26\x31\x54\x39\x83\x20\x84\x36\xf1\x0d\x87\x45\x27\x4f\x9d\x84\x96\x8f\x04\x28\xeb\xfd\x0d\x80\xc7\xbd\x2f\xee\xf7\x50\x3a\x2a\x45\x7f\x14\x11\x38\xfb\x18\x56\x9e\xc9\x73\x84\x46\xa1\x7e\x1b\xab\x99\x5b\x5e\x13\xfb\x36\xe7\x09\xf1\x70\xa9\x48\xe2\x56\xf8\x0c\x9f\x44\x04\xa1\xfd\x84\x84\xd0\xd5\xbc\x1c\xbd\x6d\xf3\x54\x92\xfd\x60\x56\xc3\xb2\x53\xbc\x09\x71\xa0\x8b\x23\xd3\xc3\x30\x73\x4e\x30\x42\x0a\x5a\x8f\xc2\x8c\x61\x9b\xb4\x58\xbc\x1d\xd1\x5e\xcf\xe2\xc4\x26\x57\x8c\x78\x44\xae\x64\x57\x1a\x9a\x5d\x2f\xc0\xd1\x52\x9e\x93\xb6\x8d\xa7\x5a\xc8\x0d\x51\x73\xb9\x18\x27\x55\xea\xca\x92\x2c\x94\x31\x42\x34\x8d\xc0\xa6\x16\xfa\x20\x2f\xd0\xd6\xc0\x41\x35\xbf\x16\xee\xfb\xbf\xa6\x8d\x35\xdf\x79\x8a\x9a\x38\x71\xba\x5a\x56\xe5\xcf\xd5\x0b\x1d\x37\x06\x72\xa2\xb8\x19\xad\x8e\xdc\x3e\x34\xf1\x2f\xd3\x97\xbe\xad\x19\x2e\x92\xd4\x53\x78\x3c\xfa\xfb\x2c\xda\xf0\x07\xe8\xf2\xe2\x97\x8e\x4d\x68\x1a\xb8\xb0\x26\x69\x37\x2b\x81\x23\xb0\x7e\x93\x25\x40\x2f\x91\xf4\xc6\xa6\x35\xd2\x89\xbd\xdf\x60\x04\xbf\x7f\x0a\xed\x83\x47\xc8\xd8\xb5\xb3\xd4\xa4\x1d\x15\xf9\x52\xbc\x94\xae\x6e\x93\xf5\x8c\x1b\x76\x14\x1f\x16\x47\xfb\x7a\x14\x1a\x56\xf7\x08\x64\xba\x3e\xa1\x66\xd3\x2d\xd6\x33\xbb\x4c\x98\xcf\x05\xc1\xfe\x1b\x91\x31\x00\xb3\x92\xe1\xa8\xc8\x57\x5c\x4f\x4a\x56\x6f\x9e\xef\x51\x84\x17\xa7\x86\x26\x11\x09\x68\xb4\xd6\x02\xbe\x10\xd9\x8b\xf5\xd2\x36\xde\x87\x3a\xe8\x2d\x8d\xf3\xd5\x3a\x7d\xdc\xb9\xd3\x1b\x79\xc9\x13\xd2\x17\xd1\xa3\xa1\x7f\xd6\xdf\x42\xdc\x2f\xd6\x61\xb8\xa4\x8f\x98\x15\x99\x8d\x22\x46\x76\xa6\x4a\x05\xd1\x17\xb4\x35\xe3\x22\x1f\x97\x88\x65\x2f\xe8\x3e\xfb\x50\x1e\x86\x5e\x53\x72\xa2\xd2\x49\xad\x30\x56\xba\xc2\x88\xe1\x2b\x53\x6d\x78\xd7\x5f\xc5\x64\x13\xa9\x9c\x3a\x02\xe9\x8b\x28\x48\xe6\x5f\xa5\x3f\x76\x75\xf2\x0c\x19\x42\x88\xd0\x9c\x57\xe0\xb4\xe4\x94\xf1\xd5\xa4\xfe\x91\x77\xab\x7c\xc9\x15\xdb\x03\xd1\x4c\x95\x9c\xac\xae\x9f\xea\x53\xc8\x02\x32\xbd\xee\x96\xb7\x12\xb8\x27\xcf\xd8\x8b\x7a\xd7\x7f\xd6\xf0\xfb\x64\xe7\xac\x0a\xa6\x68\x7a\xfd\x10\xcf\xc2\x54\xc6\xa7\xdc\x53\x92\xf4\x69\xf9\x08\x18\xf5\xfc\xe9\x84\x69\x19\x60\x2b\xa3\x88\x6a\x75\xea\x15\x80\x07\x78\x6a\x12\x70\x55\x3f\x80\xbc\xa1\x37\x40\xf5\xa8\x8e\xab\x92\xa2\xe3\x6b\x22\x13\xc0\xce\xc0\x00\xca\x63\xb1\x03\xfa\x65\x0a\x8e\xab\x6a\xae\xbe\x60\x09\xba\x03\xdf\xe4\xc8\xfb\x30\x22\xe2\xc5\x6d\x2c\x72\x1c\xff\x37\x26\x14\x6e\x6e\xd3\x6e\x1d\xe6\x43\x97\x55\xe3\xe1\x3c\xa9\xa1\xdc\x91\x3a\xc3\xac\x6c\x49\x5b\xe5\x8e\xdc\x6c\xfd\x07\xea\x9a\xf4\x93\x38\xab\xca\x47\x09\xbd\x85\x86\x82\xcf\xdf\x77\x9b\xf1\xe8\x11\xa6\x47\x5c\x8f\x42\xc3\xef\xa1\x94\xec\x96\x77\xb5\x9e\x7b\xce\x8b\x73\x90\x29\xdf\x59\x9c\x84\x78\x8c\x1f\x70\xa6\x70\x0c\xa7\xa7\x19\x1e\x36\x4c\x39\xe2\xc3\xf1\x21\x4c\x39\x6c\xa6\x57\x3f\x1c\xbd\xa6\xf1\xe6\x68\x90\x67\xec\xc1\x00\x89\x05\xeb\xf7\x7d\x5e\xaa\xe6\xe5\xe8\x5a\x5e\x45\x56\x3b\x85\xfa\x82\x34\xda\x52\x57\x95\x22\x79\x83\xb3\xfe\x49\xc8\x57\xe3\xf8\x41\x21\xe8\x75\xb1\xf7\xec\xd1\x3c\xf8\xdd\x59\x72\xcb\x8b\xfb\xc5\x3e\x6b\x38\x32\x7f\xbb\xff\x1c\x94\xfb\xae\x03\xed\xb8\xe8\x8f\xeb\x67\x2e\xe7\x19\x7a\x9f\xc0\xd1\x9b\xc1\x71\x6b\xf7\xe2\xfa\xe5\xc9\x17\x03\x5d\x23\x3e\x2c\xda\xe3\x2b\x49\x9a\xaa\xe8\xb9\x15\x60\xdc\x77\x3f\x41\xdd\x4a\xf7\xda\x28\x2f\x24\x10\x84\x50\x0f\xf4\xb7\x5e\x7b\x32\x21\x48\x26\x1a\x30\x74\x3c\x1c\x51\xd9\x75\x8e\xa0\xe1\x71\x7a\x38\x5e\x2d\x21\xf6\x63\x50\xa6\xfa\x76\x79\xe6\x58\x68\x1a\x5d\x24\xfd\x93\x87\x32\xe6\x31\xb2\xc7\xc6\x2c\xe2\xd7\xda\x4b\x85\x73\x3d\x57\x48\x46\xca\x2e\xc7\xde\xc4\x9c\xd4\xf8\xa3\x67\x3d\x57\x3f\x15\x8e\x41\x39\x48\x46\x8a\xcc\x30\x5d\x1d\xf9\x18\x88\xe7\x5b\xa9\x35\x3a\xb7\xf6\x04\x11\x14\x0a\x4b\x41\x70\xd7\xa1\xdc\xa0\xd7\x34\xfc\xfa\x5b\x7f\xfb\x6f\xe0\xe1\x1a\x8d\xac\xb5\x73\x97\x67\x91\x35\x35\x79\xab\xbc\xef\xaa\x41\xfd\x6d\xf6\x19\xc6\xe7\xfb\x51\x50\x31\xff\x48\x75\x7c\x0d\x7d\x3b\x6b\x4e\x3f\xec\x26\xad\x30\xf2\x3a\x35\x85\x6e\x25\x72\x66\x52\x97\x37\xbd\x71\x17\xc9\x97\x42\x06\x49\x98\xf3\x27\x64\x75\x57\xb8\xbc\xe8\xc7\x59\xf2\xba\x23\x8f\xa5\x33\x11\x79\x68\x9e\x69\xd2\x3b\x11\x10\x5a\x89\x75\x8a\xb2\xe9\x03\xb4\x2d\xcc\x39\x47\x6e\x8c\x0d\xe5\x0d\x01\x3a\xcc\xc7\x45\x68\xa5\xe2\xf4\x38\x45\x2d\xe2\x53\x7c\x90\x8a\x56\x04\xd2\x61\xac\x1b\x00\xf1\xf4\xda\x83\x79\x0b\x57\x8d\x8b\xac\x5c\xa0\xa1\xc0\xef\x4b\xec\x32\xdc\x10\x4b\x78\x6a\xfe\x2f\x4d\xba\x1f\x3e\x45\x8b\x7e\x61\xcd\xfb\x21\xc6\xd9\xa1\x05\x9e\x8a\x4c\x02\x17\xe4\x36\x99\xe9\xfc\x08\xe7\xa1\x4e\x2b\x11\xf6\x01\xa8\x3c\x4e\xb7\x37\x1e\x8d\xe2\xc2\x65\x55\xba\xba\x2d\x00\x47\xef\x4b\xa8\xc6\x29\x0f\xa9\x69\xaf\x51\x49\x32\x80\x81\x50\x02\xe9\x0b\x74\x64\x61\xd3\x6a\x22\xc7\x92\x9c\xeb\x2f\x13\x77\xb6\x97\x94\x55\x91\x74\x2b\x88\xe7\x23\x79\x3f\xce\xc2\xf4\x8a\x49\xd6\x7f\x91\x27\x80\x53\xe4\xb3\x09\x59\xb9\x1d\xa7\xf4\xf9\x3e\xc2\x3b\x72\xd2\x33\x93\x9f\x67\x8b\x02\x8c\xeb\x64\xc7\xb5\xa6\x98\xa7\xec\xe4\x78\x75\x26\xde\xed\xd9\xa3\x59\x89\xfa\xee\xe2\x8f\xfe\x53\xc6\x82\xfe\xd3\x26\x83\xc0\xb2\xbe\xa5\x02\x0d\x43\x3a\x3a\xd7\x09\x25\xd3\xa6\x35\x7a\x74\x6f\x34\x79\x92\xb5\x5d\x5c\xa4\x89\xc9\x0b\xa3\x24\x53\x20\x9a\x4f\x67\xea\xe3\xd6\xd3\x0e\xf6\xd9\x31\xf8\x58\x67\xca\x19\x64\x63\xff\x66\xf7\x62\x7d\xdf\xe3\x62\x18\x7b\xd0\x81\x49\x7b\x71\x03\xbf\x41\x7e\x69\x29\xee\xb5\x42\xc9\xad\xc9\x85\xf9\x06\x36\x88\x3c\x06\xc9\x04\x8b\xf5\x61\x6c\x3f\x8b\x9a\xde\xb3\xa7\xed\x32\x37\x0c\x20\x47\xb3\x9c\x60\xff\x09\xdf\x09\xab\xbf\x42\x59\x15\xa2\x26\x15\x3c\x6c\x65\x85\x18\x31\x47\x8e\x76\x24\x72\x3f\x23\x0c\x45\x99\xe7\xd9\x3c\x01\xf3\x90\x22\xa2\x82\xc7\xd4\xde\xe7\x7b\xa1\xb4\xdf\xd4\x69\x68\x29\xf7\xf2\x61\x92\x09\x9d\xde\xb3\x87\x61\x83\xa5\xd7\x93\x90\xc8\x57\x87\xe5\x3e\x18\xa5\xb3\xe5\xd5\x31\xcf\xce\xb4\x37\xea\x67\x9f\xe6\xf9\x21\x3d\xcf\xfc\x80\xea\x6b\xc1\x64\xf1\x49\x3a\x57\x8b\xbe\x2b\x2b\x6a\x1c\x7e\x93\x98\xe3\xdf\xa4\xfc\xaa\x74\x88\xb4\x3e\x53\x7c\x63\x42\x02\xfa\x6f\xcc\xb4\x56\xa5\x60\x8b\x5f\x6b\x85\x02\xed\x66\x44\x98\xbe\x9b\x74\xc0\xfc\xd7\x7f\xf3\x6f\x4a\x04\xc7\x5e\xb8\xcd\x1b\xe3\xf6\xac\x7d\xd8\x8e\x7d\xed\x51\xd2\x85\xf1\xcd\xbe\x1d\xfa\xb4\x7e\x38\x09\x4f\xee\x87\xd1\x13\x53\x2c\x3c\x07\xd9\x5d\xe4\xba\x0f\x10\x11\xd0\x4f\xfe\x69\x14\xba\x2b\x27\xe5\x7b\x23\xfe\x7d\xc2\x3c\xe6\x13\xac\xff\xf2\xdd\x49\x38\x5e\xb6\xae\xcd\xed\xff\x1f\xbe\x66\xe4\x4c\x39\x15\xd5\xba\x22\x22\xdf\xe8\x4f\x82\xfd\x7a\x9e\x95\xa3\x44\x7d\x5a\x77\x69\xee\x7f\x99\x39\xe1\x97\x98\x2e\xf3\xbf\xcf\x34\xbc\x76\x1d\x68\x27\x59\x37\x1f\x8e\x52\xa7\x1a\x0c\x8a\x25\x94\x45\x63\xb8\xc2\x90\x01\xad\xc4\xe9\x58\xa5\xb1\x0e\x06\x69\xd3\x16\x49\x9e\x36\x88\x1a\x6b\xd3\x70\x4a\x71\xe5\x02\x29\xae\x4c\xfb\x96\x14\x8f\x06\x87\x1d\x3b\x82\x2c\x69\xa2\x32\xee\xe2\x54\x27\x79\xe2\xd5\x54\x5e\xf9\xb2\xf4\x66\xac\xe5\x1b\x3a\x6b\x7f\x46\xca\x3f\xaa\x21\xe3\x8f\xa3\xa0\x2b\xb2\x7d\x8d\x06\x10\x5b\xd7\x36\x7e\x9b\x9d\x3b\xdb\x3d\xb7\xe2\xd2\x7c\xa4\x7b\xc1\x0b\x7b\x1d\x0c\xb2\x3d\x0d\x81\x77\x30\x1e\xea\x70\x48\x55\xc1\xe4\xc3\x98\x42\x58\xc8\x05\xc7\x59\x52\xae\x96\xb2\x25\xcc\xbd\xbb\x5e\x43\x7a\xdd\x30\x06\x5e\x6c\x8f\x8a\x7c\x98\xe8\xbc\x54\xfb\x86\x72\xe8\x59\x0f\x31\x38\x98\xb9\xb4\x74\x87\x07\xae\x70\x5b\x90\x2d\x01\x59\x7f\x84\x8c\xa6\x2e\x51\xc7\xf1\x1a\xd0\x81\xfa\x43\x72\x23\xbd\xdb\xda\xa2\xf7\xfe\xbd\x1e\x3d\x13\x40\x51\x6e\xe4\xb2\x9e\x3f\x94\x14\x13\x4a\x8c\xb3\x0b\x34\xb0\x5a\x4e\xb2\x38\x45\xae\xe8\x85\xeb\x3c\xe8\xf0\x88\x5f\xe1\xc3\x24\x1b\x97\xdd\x71\xea\xe6\x65\x60\xc9\xde\xa6\x68\xf8\x20\xff\x46\xf9\xaa\x1e\x69\x78\xde\x67\x48\x3a\x64\x9c\xf5\x92\xb2\x9b\x8c\xd2\x24\x73\x3d\xe8\x84\xa9\x16\x27\x86\xa2\x26\xcc\xd9\x60\xc2\xb4\x14\x27\x38\x91\x0c\x45\x46\xe8\xdb\x37\x59\xb0\x73\x9c\xc1\x89\xcb\x9a\x62\xa4\xe5\x7b\x02\xfd\x93\x2a\xee\xb7\x0f\xee\x78\xf9\x97\xeb\xf4\xc4\xeb\xfb\x79\x81\xf9\xa3\x02\xed\x42\x29\x7b\x75\x42\x82\xae\x27\x45\xd6\x01\x43\xf7\x8b\x12\x74\xbd\xa7\xe1\x73\xcf\xe9\xc9\x70\x1f\x82\x16\x5e\x0d\x2f\xd4\x12\x9f\x2a\xac\x06\x53\xb8\x1f\x41\xac\xc2\x2c\x66\xb9\x29\x89\x9d\x86\x24\xe7\x77\x45\xf2\x1b\x5f\xf2\x1f\x23\x41\x43\x42\x7a\x8b\x4a\x88\x8f\x23\x72\x21\xb8\x33\x21\x1a\xff\x15\x01\x6d\x18\x64\xb4\x7e\x56\xec\xab\x62\x50\x05\x89\xf5\x5e\xe2\x7c\xd7\x01\x53\x7b\x93\x6e\xbd\x0e\x34\xd0\xed\xc0\x77\xbf\xca\x8a\x85\xdb\xe0\x0e\xa9\xe3\x73\x94\xc9\x46\xcc\x90\xe7\xab\xec\x0b\x59\x54\x48\xf3\xbe\x19\xd1\x04\xf2\x07\x2c\x1a\x73\x1b\xab\x00\xb7\x72\x9d\x68\x20\x87\x93\xb2\x0e\xb1\x49\x36\x4f\x10\x6d\xed\xe0\x98\xc8\x6c\xcb\x8b\x57\x6a\xcf\xcc\xa4\x68\x43\x13\x2f\x5e\x8a\xb3\x5e\x9d\xe2\xc9\x73\x01\x16\xf0\x94\x3c\x7a\xbd\xe6\x00\x98\x67\x22\xef\x8c\x33\x40\xab\x3f\xfc\xd8\x95\x49\xc8\xa1\xa1\x1b\x82\x28\xf7\x58\x87\x46\xbd\x67\xa8\xe3\x8f\xee\xa6\x13\x11\x30\xad\xc4\x8f\x52\x69\xa9\xc4\x1d\x33\x75\x27\xdb\x91\xba\x74\xcc\x87\x94\x77\xcf\x09\xc2\x00\x7f\xe1\x63\x79\x58\x88\x05\xef\x6f\x50\x19\x38\xb8\x23\xb8\xf1\xf8\xca\xef\x31\xe9\x2a\xe9\x2f\x70\xd8\xbe\x3b\x53\xeb\x59\xe3\x61\x90\x0f\xdd\x1c\x16\x2e\x8b\x22\xe3\xa0\x5f\xc0\xf7\xc5\x59\x7a\x8f\xfc\xeb\xba\x69\x32\x5a\xca\x45\x86\x9e\x74\xab\x02\x02\x61\x56\x7b\xb8\x3e\xfa\x57\x01\x46\xf5\x3e\x54\xc7\xa3\xa0\xc1\x76\x9c\x15\xd5\x1c\xbc\xf1\x64\x79\xa1\xc0\x3b\x81\x85\xa3\x2f\xa6\xba\x8e\x55\xea\x9e\x09\x8d\xd2\x6d\xe8\x86\x20\x98\xfe\xbe\x6c\x0f\x9c\x7d\x47\x27\x44\x23\x9e\xda\x44\x9b\xd7\xea\x38\x61\x44\x35\xb9\x6b\x48\xe2\x16\xb0\xf4\xcd\x5a\x48\x96\x3e\x52\xa6\x7f\x87\xb0\x81\x17\x3f\x95\x16\x9c\xf7\x42\xa0\xfe\x06\x59\xd8\xdd\x22\x39\x21\xf5\x69\x55\x99\x38\xc4\x10\xe3\xf3\x22\x38\xd8\x50\x95\x9c\x63\x89\x38\x7e\x8c\xdc\xb7\x86\x71\x16\xf7\x5d\x51\x3e\xb6\x91\x04\x80\xf9\xf0\x9f\x47\x7c\x92\x23\x12\xf8\xe7\x1c\xae\xe5\xe8\xb0\xa1\xaf\xdc\x01\x3a\xfb\xcd\x60\x1c\x2c\x1e\x13\x19\x98\xed\xd0\xe2\xbd\x1e\x4c\x63\x88\x9e\xe6\x82\x6f\x98\x94\x65\x9c\xce\xb3\x77\x5b\x44\xad\x27\xa5\xc1\xe9\x0b\x09\x61\xd6\xc9\xe2\x07\xbe\xfb\xc0\xfe\x2f\x91\xde\x3c\xb4\x32\xb1\x19\x6e\xca\x03\x87\x9b\x1c\x44\xf4\x11\x8d\xff\xd1\x24\xd0\x58\xe6\x60\x1f\x80\x4f\xfb\x01\x42\x1d\x12\xc4\xf3\x68\x12\x7b\x92\x87\x87\x3c\x7e\x2a\x85\x2e\x1e\x91\xe2\x8c\x11\xc2\xce\x4e\x68\xc3\x21\x3b\xf5\xce\x19\xf5\x6a\x31\xc1\x1f\x59\x2d\xa6\x89\x8a\x47\x6c\x72\xe4\xd3\x3e\xcb\x1e\x38\x7d\x85\x38\x39\x3a\xcb\xc0\x3a\xbc\x1a\xb5\x5e\x79\x65\xfd\x32\x62\x2f\xf2\x1a\xb5\xe9\xb0\x08\x8f\xdd\x6c\xdc\xe5\x59\x7a\xde\x62\xbb\x4a\x86\x4e\x75\x87\xcd\x40\x28\xf0\x33\xef\x4e\xb6\x87\x21\xd4\xaf\xc8\xbd\x52\xb4\x60\x14\x90\xab\xb7\x27\xd4\x74\x44\xf1\x88\x6d\xa6\x5d\x06\x3b\x86\xf0\x59\x68\x31\xbd\x10\x2a\x90\xfa\x0b\xf8\xb3\xbe\xfe\x02\x58\xf5\xb7\xe4\xc6\x5b\x0b\xa5\xbe\xbf\x58\x65\x77\x90\x26\xa9\x3a\xa4\xac\x0e\x55\x01\xc0\xed\xc5\x4f\x3d\x14\x76\x07\xd2\xd8\x1b\xd2\xb8\x43\x3b\xe0\x28\x1e\x08\xb2\x9e\xa7\x45\x75\x04\x4b\xe3\x88\x1c\xf4\xde\xf8\xb1\x8e\x32\x00\x87\x6d\xc5\xee\xf7\x5e\xd1\x8b\x46\x80\x3b\xc6\x78\x3c\x15\xa5\xc2\x72\xb8\x8e\x0d\xe6\xb1\x9b\xbb\x17\xd7\xef\xcb\x21\x3b\xc5\xc8\x31\x01\x9d\xcd\x5f\xd6\xb6\xf4\x4d\xb9\xfb\x5e\x75\x25\x94\x2f\x47\x35\x1c\xe0\x66\x6c\xea\xd4\xb9\x02\x22\xf3\xfc\x5a\xeb\xc0\x8b\x9a\xcf\x3c\x6c\x54\x46\x8b\xc7\x55\x3e\xc7\x1c\xda\x9b\xa4\x63\xfb\xff\x61\x11\xab\xcc\x1a\xcd\x54\x96\x0b\x97\xf4\x07\xd0\x94\x5f\x17\xad\xbb\xf5\x37\x08\xd3\xbd\x34\x4e\xd2\xde\xa3\x61\x36\x0c\xaa\x07\xda\x1a\xff\x11\x8f\x41\x6f\x37\x46\xbd\xfe\xde\xd7\x77\x52\xdb\x5b\x53\x2a\x9c\x11\xfb\x3c\x05\x6f\x5c\x24\x4c\xbe\x1f\x46\xf0\x80\x09\x19\x17\xfc\x5e\xf4\x68\xa0\x78\x97\x10\xb5\xc7\x8e\xb8\x46\x3b\xe9\x01\x69\xf1\x7e\x36\x53\x32\xec\xd9\xb3\xaf\x3d\xcc\x71\xd8\xec\xd3\xb3\xe8\x34\x96\xa3\xbe\x68\x92\xf4\x5a\xca\x73\xc5\x28\x23\xe4\x62\x18\xaa\xd7\x24\x32\xb9\x9c\x17\xae\x1b\x97\xc2\x2c\xab\x7f\xda\x8b\x2f\x79\x54\xaf\x68\xf2\x68\xc4\x7a\x43\x4e\x50\xbd\x6e\x78\xa8\xfb\xdb\xcb\xb1\x6a\xcb\x63\x85\xb5\x70\xd8\x21\x63\xbc\x22\xef\x8a\x8c\xf5\x3a\x33\x6c\xc7\xc5\x4a\xb2\x62\xf4\x39\x0c\x87\xa0\x04\xae\xd7\x8d\x5d\x88\x3a\x2f\x28\x00\xf7\xc4\xee\x7d\x4f\xde\x1e\xa3\x93\x6b\x74\x30\x9d\x6f\x9a\x11\x14\xae\x0c\x43\x72\x1c\xa6\x37\xa8\x3b\x72\x83\xd0\xfb\xe5\xb8\x1c\x24\xf2\xd1\x80\x4a\x41\xa3\x48\xaf\xa7\x88\x93\xd5\xc0\xb5\xbd\xfc\xf1\x7f\xf7\xac\x24\x4a\x12\x45\x0f\x3c\xd9\xa9\xf7\xb0\x01\xa6\x08\x03\xfb\x28\x14\x08\x10\xd1\xbf\x81\x43\x1b\x80\xa3\xbb\x1a\x86\x15\xb5\x16\x4d\xa9\xad\xf8\x4e\xd5\x33\x6b\xb2\xbb\xcd\x10\x4e\x82\x21\x56\xee\x13\x1d\x59\x95\x28\xc6\xeb\xbc\x6b\x97\xd7\x40\xae\x8b\x05\xfc\xc6\x2d\xc9\xee\x91\xcc\x5d\x13\x7c\xa9\xf5\x2b\x24\x94\x61\x4d\xbe\xcf\x78\x8f\xad\x6b\x12\x41\x84\xbf\xfa\xab\xbf\xd0\x41\xf8\x34\xb6\x07\x21\x6d\x3e\xa6\x81\xf8\xf8\xe9\x35\x89\x6d\x88\xf8\xb7\x65\x1b\x61\x67\x7f\xca\xb3\x87\x47\xd6\xc8\x1f\x6d\x4b\xa7\x0e\x8d\xa8\xc6\xa0\x46\x81\xdf\xd8\x2c\x91\xd1\x13\xd5\x3c\x2a\x70\xa1\x43\xf6\x18\x0f\xb0\xb9\x2d\xff\x0c\xb3\xaf\x7e\x91\x97\x25\x2d\xb3\x73\xb4\xcc\xce\xf9\x0e\x7b\x77\xb5\x9b\x8a\xb9\x6c\xfd\x83\xd0\xcd\xbb\x1f\xda\x0a\xed\xfb\xc4\x18\x2d\xab\xc2\xc5\xc3\xba\x98\xc4\x52\x44\x00\xfe\x50\x96\x22\x3e\x0b\x60\x3c\x36\xbf\xf5\x8e\x3f\x65\x39\x1e\x3a\x6d\xb8\xa3\x97\xb3\xbd\x13\xac\x8c\x34\xd9\xf7\x25\x91\x6f\x9f\xaa\xaa\x90\x75\x41\x36\xf6\x41\xf7\xec\x69\x67\x0e\x03\x05\xad\x94\xf0\x46\xc0\x1f\xdc\x26\x62\xc4\xc2\x4c\xcf\x70\xd7\x81\xf6\x38\x4b\x93\x43\x76\xf0\x7a\xe8\xc8\xbe\x1d\x1e\x3a\x12\x0a\x83\x91\x13\x19\x8a\x16\x16\x80\xc7\x72\xd4\xab\x46\x5f\x80\xac\x88\x76\xc3\x94\xc5\x61\x14\xf6\xd2\x19\x4a\xaa\x07\x71\xf7\x50\xaa\x5a\xb7\xc8\x7d\xce\x48\xb8\xd1\xeb\x99\x1e\xe0\xce\x9d\xed\x81\xf3\xfd\x58\x4d\xa9\xb0\x9e\x2c\xbf\x7a\xc2\x8f\x23\x46\xae\x74\x8a\x12\x30\x38\x54\xc0\xe4\x5f\x9a\x16\x5d\xad\x12\x44\x6a\xd3\x43\x6d\x2d\x06\x48\x6e\x18\x68\x49\x14\xb5\x46\x67\x52\x0d\xf2\x7e\x11\x8f\x06\xab\xad\x30\x59\x3e\xcb\xd9\xda\xac\x39\x95\x88\xf7\x0d\xf3\x15\xb4\x48\x50\x0f\xa8\x3e\xaa\xbe\xa0\xbe\x70\x9c\xba\x6e\x8b\x25\xae\x4f\xb1\x9d\xcd\xa9\x68\x83\xb4\xda\xde\x17\xf7\xb7\x5f\xda\x75\x40\xbc\xe8\xac\x8f\x12\x3a\x41\x47\x22\x56\x4b\xef\x3d\x4a\x86\x58\x2a\xe7\x60\xbd\x4e\xb2\xae\xf8\xc7\xb2\x10\x8c\x80\x1e\x72\xbf\x53\x38\x8b\x14\xe3\x15\x91\x5a\xce\x99\x09\x0f\x7a\x88\xbe\x4e\x13\x9a\xb3\x93\x29\xb6\x09\x01\xb9\x80\xb3\x98\x0f\x3b\xfc\x12\xfe\x90\x79\xb3\x07\x3c\xf1\x75\xe2\x1a\x5f\x27\x98\xe6\xdf\xfa\x1b\xff\xfd\x5c\x38\xc7\xe6\x64\x04\x8c\x88\x76\x8e\x6f\xde\x1d\x5a\x83\xee\xb5\x51\x52\xb8\x92\xf0\x88\x5b\x85\x1e\x87\x48\xb2\x49\xa8\x75\xd6\x99\x6f\xe8\xb9\x77\x8b\xa4\x72\xca\xf5\x7c\xd9\x33\x90\xd8\xe3\xc9\xdb\x29\x66\xc9\x6b\x00\xb8\x04\x2b\x66\xd9\xd9\xfa\x82\x74\x59\x87\xcf\x1f\x7e\x9e\x42\xd6\x25\xd6\xb3\xbf\xe4\x6d\x5d\x86\xf1\x21\x57\xa8\xf4\x99\xb1\x51\xa7\xfc\x7c\xb0\x78\xd0\xe5\xf8\x5f\x26\xd6\xaa\x2b\x0f\x25\x55\x95\x94\x83\xcc\x69\x5c\xd4\x23\x26\x0a\xc6\x34\x17\x48\xa6\xb7\x9b\x14\xdd\xf1\xb0\x1c\xb9\x6e\x85\x7c\x04\xc7\xcb\x07\x78\x34\xfa\x82\xe6\x8f\xd5\xc0\x15\xf1\x68\xb5\x45\xcc\x1a\x34\x16\xed\x91\x6e\x58\xb7\x3b\x77\xca\xb6\xd0\xa8\x62\x88\x9a\xfa\xae\x5b\x21\xd7\xd8\x86\x95\x59\xbc\x9a\x4d\xd8\xc8\x47\xce\x22\x1b\x06\x35\x74\xf3\xf2\x15\x57\xcc\x73\x0c\x08\x09\x1d\xd2\x72\xdd\xfe\xcc\x0a\x7a\x9f\x70\x25\x55\xdc\xad\xe0\x40\x4e\x87\x1e\x1b\x30\x7e\x1c\xa4\x92\x8a\x44\x54\xa1\x48\x75\x0f\xa6\x46\x7a\x1d\x3d\xcb\xed\x49\x57\x1c\x96\x65\x24\x4b\x1f\x65\xca\x87\x44\x2d\x79\xb2\x13\xb0\x35\x5b\xd7\xa8\xff\x3a\x2b\x12\x2f\x6e\xdc\xae\x58\x51\xba\xcf\x94\xd9\xa7\x91\x5d\xc2\x34\x23\xcd\xb3\xbe\x2b\xb6\x05\x43\x35\x98\x9f\x0a\xa2\xe7\xea\x53\xe2\x77\x6a\xda\x93\x41\x54\xed\xad\xa0\x03\xfd\xe1\xb3\xf4\xc9\xe6\x91\xf8\xd9\x92\x0d\x73\xc6\x3b\xbc\x3a\x8a\x64\xc5\x95\x55\x8b\xc9\xce\x8a\xde\xd2\x17\x33\x0f\xee\xc0\x8b\x92\xf8\x49\x66\x8b\x87\xf5\x90\x4c\x0c\x1f\x46\x8f\xf9\x37\x5f\xca\x97\xf4\x8d\xd1\x61\xd2\x48\xa3\x2f\x68\xd0\x5f\x26\x15\x06\x19\xdb\x29\x5c\x9f\x24\xf7\xb2\x53\xc8\xef\xa1\xb3\x06\x13\x0e\x4f\xcf\xdb\xb7\x43\x8f\xf9\x2b\xa4\x47\xf8\x31\x6b\x7c\x68\xbb\xc2\x0b\x62\xd6\xb7\x05\x79\xc4\x26\x39\xf0\xd5\xb0\x7b\xad\x09\xfe\x52\x38\x79\x7c\xe0\x47\xa3\x48\xba\x8e\x85\xad\x2f\xa8\xcf\x52\xa6\xf9\x61\xa1\x1b\x50\xf5\x72\x06\xfb\xd2\x2b\x17\xf8\xc1\xde\x87\xf8\x4a\x9e\x28\x5f\x7f\x28\x2b\x66\x1a\xc6\x36\x71\x39\x4a\x0a\x0f\x39\x40\xd9\x71\x93\xe6\xda\x37\x67\x82\xa1\x1c\x6e\x52\xa9\x0d\x88\xfc\x76\x2e\x0a\x07\xf0\xb9\x66\x4a\x78\x15\x17\x55\x6a\xb5\x00\xd6\xd2\x19\xf2\x0b\x3e\x43\x5c\xaa\x72\x75\x38\xaa\xf2\xa1\x24\x51\x86\xd6\x3b\x4b\xd0\xdc\xb3\x74\x72\x9f\xc2\x77\x44\x52\xa4\x72\x59\x66\x23\xc6\xad\x9b\x57\xe3\xd5\x16\x47\x4a\x5d\x35\xfa\x82\xea\x50\x51\xd2\x4c\x57\xff\x13\x44\xba\x8d\x7d\x8d\xfa\xeb\x2d\x15\xa6\xd7\xb8\xd7\x87\x43\x8e\x8d\xa4\xa6\x3a\x4c\x0e\x0d\xe2\x24\x5d\x90\x45\xe9\xa7\xcd\x81\x19\x8e\x9d\x87\x34\xfe\x1c\xd3\xcd\xde\x92\xd2\xd4\xcc\x88\xc3\x98\x25\x1f\xb9\xcc\xf5\xb6\x50\x83\xf8\x9e\x6c\x1d\xa4\x6b\xdf\x89\x08\x89\xa1\x46\xc9\xf8\x50\x57\x08\xca\xaf\xc1\xc3\x2c\x2e\x9e\x24\x00\x43\x59\x8d\x87\x2a\x36\x68\xd0\x25\xdc\x48\xab\x94\x88\x99\x77\x97\x6e\x64\xd9\x8d\x65\x69\x05\x08\xd3\x59\x6a\x4c\x9f\x6d\x9a\x22\x0e\xe2\x91\x7c\x17\xb2\x93\x57\xe7\x5a\x7d\x11\x05\x1f\xe1\x6e\x32\xac\x13\x79\xdf\x99\xff\x8e\x2c\x0a\x93\x5b\x09\x09\xd6\x28\x4f\xf3\x39\x72\xd0\xba\xa1\x9f\x1e\xb9\xf9\xe6\x0e\x39\x6d\xcd\x4a\x2d\xd6\xf5\xe8\xe1\xb8\x98\x23\x1e\xdf\x3a\x76\x3a\xfa\x0b\x36\xbc\x34\xd4\x03\xa7\x9b\xa3\xaa\xdc\xd2\xf2\xca\x53\x77\x71\xe7\x81\x18\xd0\x31\x87\x3f\xa0\x7c\xa9\xaa\x00\x32\x1b\xa5\x11\xbb\xec\x5e\x43\xff\xa0\x9d\xc9\x19\x10\xda\xbb\x0a\xb3\xd6\x17\x34\xd3\xb5\xb1\x5d\x25\x56\x17\x38\x7b\x2e\x92\x51\xe1\x45\xf4\xc4\x50\xee\x1d\x41\x2f\x4a\x5f\xd0\xbb\xc4\x69\xea\xfa\xae\xa7\x1a\xa7\xa4\xaf\xfb\xb2\xd5\x70\x1d\x02\x4b\x9f\x47\xdf\xcb\xaa\x3b\xde\x8c\xf1\x30\x46\x34\xc3\x9c\x48\x99\x13\x56\x4a\x85\xe2\xec\x3c\xd6\xae\x61\x67\x09\xc4\x24\xb8\x47\x6b\x15\x16\xfd\xb1\x5b\x08\xac\xeb\xa3\x04\x8a\xff\x80\x0d\x47\xbf\x25\x65\xa5\x0d\x75\xd8\x46\x30\xda\x88\x8e\x3c\xb8\x63\x51\x0c\xf5\x96\x97\x93\x6e\x22\x56\x87\xa1\x7f\xc6\xe2\x07\xa7\x9b\x58\x77\xbd\xa4\xec\x8f\xc5\xf7\x35\x50\x75\x7f\x1b\x3b\x19\xe7\x8b\xba\xc5\x9a\x28\x4e\x20\x89\xc7\xfd\xf9\xc0\x2e\xd0\x21\x2c\xe1\xab\xf7\x7a\x9a\x25\xe3\xb3\x9f\x62\x68\x9b\x2b\x5c\x59\x3d\x16\x4c\x5c\x3f\xc4\x5d\xb3\xc2\x83\x7a\xde\xff\x31\x0a\x42\xdc\x3a\xef\xc2\xb3\xba\x11\x71\xf6\x8a\x0e\x1a\x7e\x05\x26\x54\xc8\x4a\x4e\x4f\xa6\x1a\x68\x9e\x66\xff\x0e\x9e\x99\xbe\x95\x74\x54\x01\x24\x3d\x1d\xb1\x84\x95\x9e\x7f\xb2\x44\xd0\xe4\x7f\x0f\x9f\x54\x5f\xd0\xc0\xbc\x5f\x67\x74\xd9\xdc\x14\x64\x68\x9f\xf5\xbf\x54\x86\x13\x67\xf8\x69\x6a\x3e\x15\xae\xce\xe3\x72\x0b\xca\xe8\xce\xdd\xa1\x99\xfc\x1d\x0a\x12\xe3\x52\x0d\x8c\x40\x51\xfc\xa1\xf4\x9b\x0d\xa9\x2f\xb5\xaf\xbe\x20\x39\xb1\x4f\x26\xc1\x27\xea\xdb\xf2\x3d\x95\x45\x2b\x89\x84\xef\xab\x79\xb1\xa8\x6b\xd3\x5a\x5c\xae\x78\x8a\xc6\x42\x27\x26\x61\x92\xa3\x14\x2d\x3f\x01\x5e\x5c\xd4\xf5\xfb\x10\xb7\xd6\x18\x46\xf5\x67\x44\x58\xfc\x3f\x50\x90\xe2\x24\xbd\x25\x9f\x0b\xd7\xef\x4e\x48\x5f\xef\xee\xa4\xf5\xb5\x5d\xbe\xc8\xad\x3f\xa4\xfa\xe2\x4f\x58\x02\x05\xf2\xb1\xd6\x9f\x91\x15\xe8\x65\xa0\xea\xb0\x80\xa1\xe5\x3a\x16\x0c\xb2\x84\xb9\xb5\x00\x3d\x5c\x98\xc1\x53\xec\x5e\x6c\x0f\x5d\xd1\x1d\x18\x5d\x1e\x61\x14\xc3\x43\xbd\xf6\xc5\xce\x72\x11\x0f\x2d\x9f\xf6\xea\x7d\x7b\xf6\x78\xc5\x89\xcf\x53\x55\xeb\x17\x71\x97\xcb\xed\xb9\x35\x2a\xb7\xe7\x3a\xbe\x36\x73\x45\xcf\x88\x92\xb8\x41\xd7\xd8\x21\xff\x1a\xb7\xd7\xe7\xd6\xa8\x48\x4f\x7a\xe5\x16\x3a\x01\x6f\x10\x35\x05\xac\x0e\x73\x9b\x92\xb5\x66\xc2\xb5\xf2\x7c\xbd\x2c\x43\xfd\x77\x10\xfe\x8f\x34\xb6\xcd\xd3\x3c\x3f\x44\x7e\xa2\x77\xb0\x0b\x6d\x48\xee\x79\xb9\xbf\xa2\x14\x74\x93\xde\x6d\x80\x9f\xf6\x92\xb2\xb2\xbb\xcd\x86\x87\x7a\xed\x35\x6e\xd2\x3c\xb3\x9e\x10\xaa\x86\x2d\x9d\x60\xfe\xb6\x65\xe6\x41\x1e\xdc\xb1\x17\xfa\xad\x2b\x48\xd3\xfd\x7e\x0f\xa6\x3a\xef\x50\x07\xfa\x70\x52\x0d\x54\xf6\xa8\x45\xba\xef\x27\x23\x12\x9c\x39\x39\x73\xe2\x3e\xf7\x5c\xbb\x14\xe3\x94\x7d\x3b\x74\xcf\xbd\x4f\x86\x8b\xef\x4f\x73\x1e\xd2\xde\xb3\xcc\xe6\xbd\x31\x69\xfd\xfa\x4b\xeb\xb7\x65\x72\xa3\xc6\xbe\x51\xe8\x0d\x5c\x23\x74\xeb\x6e\x88\xe4\x61\xa8\x7b\x21\x0a\x9b\x57\xcd\x36\xd5\x65\x47\xb6\x98\x09\xe1\xd5\x9b\x07\x9d\x11\x14\xae\xd8\xb8\x67\x30\x5a\x02\x2e\x01\xe8\x6b\xa4\x6e\x7f\x14\x31\x6f\x01\x0f\x13\x39\x07\x46\x0c\xd8\xd2\x27\xd8\xbe\xe4\x43\x1c\x0b\xe6\x8d\x2e\x7b\xda\xb2\x87\x3a\x8b\xb2\x1d\xd1\x00\x3e\x12\x6b\xe5\x16\x01\x5a\xff\x30\x0a\xa0\xd1\x3f\x64\x40\x5e\x95\x67\x66\x1b\x63\x3a\x79\xb2\x9e\x4c\x41\xcf\x90\xbe\x7d\xa7\x46\xd7\x53\x62\xc1\x36\x1e\x7e\x82\x05\x1a\x96\xeb\xea\xd2\xc3\x02\xb6\x4b\xb5\x88\xee\xf6\x1c\xfc\x34\x54\x9b\x1b\xbb\x03\xa1\xfa\x3e\x49\xfd\x1e\x99\x4c\x7b\x29\x70\x4f\x41\xcc\x0b\x2e\xcf\x2c\x13\xc1\xf3\x39\x58\x04\xd9\xf0\x23\x48\x25\x51\xf7\x24\xcf\x9c\xb1\x0c\xac\x66\xc5\x92\xb1\x3e\xcb\x93\x34\x0f\xe8\xf7\x5d\x59\x6d\x25\x77\x9c\x8b\x6c\xda\x73\x67\x42\xa5\xef\x67\xd2\xb7\x57\x2d\x74\x89\xf2\x80\xd5\x9c\x90\xa1\x9e\xd7\x48\xf7\x42\x59\x9f\xd1\x33\x78\x75\x9c\x8a\x8e\x80\x5f\x2b\x37\xb0\x27\xf4\xc5\x4c\x94\xdb\xb3\x67\x5f\x5d\x13\x2d\xe5\x69\x52\x02\xd9\x8a\x83\x02\x04\x0f\xbd\xa6\xa6\x84\x78\x39\xcf\x05\xf2\xf8\x3c\xe6\xce\xd8\xfe\xf7\xf1\x95\xcc\xf1\x3c\x1c\xb3\x4b\xf9\xb8\x3f\xa8\xd0\x33\x34\x02\x3a\x6e\x95\xcd\x4d\xeb\x77\x44\xc1\x72\x17\x31\x08\x7d\xa1\x2b\x78\x47\x7d\xc1\x46\x0c\x48\xf8\x4d\xc1\x4d\x36\x0a\x1b\x8a\xf9\x13\x6e\xf7\xa2\x67\x59\x93\x50\xec\x42\xa7\x01\xdd\x2b\x3a\x4d\x24\xc1\x70\x8f\xe0\xd9\xf7\x08\x63\x33\x70\xc5\x7f\xc1\x88\x86\x7b\x6c\xe9\xf1\xe8\x5a\xeb\x25\x6b\x26\x1f\xc1\x06\xb6\x6c\xb6\xde\xf1\x36\x45\x95\xb5\x2b\x81\x6a\xf5\x97\x3a\xc4\x2f\x16\xc2\x8f\x17\x01\xfc\xbb\x56\xfc\xfc\xfd\x49\xf0\x5e\x7e\x7a\xad\xf5\xd5\xdf\x0a\x72\x48\x5e\xfa\xff\xae\xdc\x11\x0c\xac\xbf\xd4\x09\x1e\xfa\xbf\x20\x53\x11\x74\x26\xaf\x20\x72\x20\x4b\xf9\x92\x74\x37\x65\x2c\xf2\x37\x9f\xc5\x4c\xc8\x38\xd4\xc1\x1e\xe9\x03\x16\x1a\xd9\xb6\x46\x83\xfd\x07\xd8\x4d\x92\xac\x7e\xe5\xe7\x41\xaf\xc4\x18\xea\x09\x41\xec\xc8\x59\xf7\xe8\x33\x3a\xee\xc1\x50\xe7\x17\x3a\x54\xe1\xcc\x63\x16\x6d\xa0\x03\x79\xd2\x20\xb5\x3f\xbb\xe6\x01\x7c\xae\x38\x54\xc6\x43\x57\x50\x7b\xf5\x6d\x56\x2f\x3d\xab\x0b\x09\x99\x23\x2b\x94\x1f\x72\x59\xe6\x7a\xd0\x4f\xc2\xb4\xef\x58\x14\x24\x19\x8e\x4d\x83\x38\x8a\xf1\xa8\x5e\xd8\x78\x2f\xcf\xd8\xf5\xf9\xf2\xdb\xcc\x54\xbc\x42\x05\x82\x28\xef\xcc\x93\x7d\xc2\x19\xe2\xe6\x6f\x70\xaa\x23\xc7\x85\x33\x33\xda\x30\x8b\x8b\xed\x43\x50\x46\x0f\x19\x35\xf7\xf8\x03\xb3\xa1\xec\x16\xf1\x70\x29\x4d\xb2\xfe\x5c\x68\x72\x62\x1e\x8c\x84\xe0\x0a\x65\x86\x67\xa6\xcc\x8a\xc7\x59\xe9\xd2\x85\xc0\x4d\x01\xfa\x11\x5f\x57\x35\x7d\xb1\x58\x6f\xd2\x39\x82\xd8\x24\x72\x21\x5e\x08\x29\x29\x93\xaa\x94\x3f\x8f\xfb\xf3\x11\x29\x26\xdd\x90\xa3\xcd\x10\xb8\xb3\xb4\xd9\xf6\xa8\x70\xc3\x64\x3c\x6c\x91\x09\x06\xf0\x59\x7a\x4d\x81\x63\x34\x2e\x07\xae\x37\x47\xf3\x05\x74\x99\x51\x80\x9c\xc5\x36\x42\x01\xff\x47\x44\xfe\x50\xc5\x9c\x24\x4e\xb7\x6c\xa0\x45\x1c\xdc\xb1\x6b\x7d\x0d\x41\x05\xff\xef\xb4\x04\x3a\xa4\xdd\xb7\x69\x45\xff\xde\xf1\x69\x0e\x85\x57\xcb\x1f\xb8\x42\xf9\x5e\xc6\x5b\x0d\x09\x5b\x50\x5c\xa9\x92\xd4\x41\xa5\xd8\x5c\xd9\x68\x1c\xd9\x09\xc0\xc9\xab\xf4\x7c\x94\x2c\x20\xcf\x87\x55\x0a\x51\x7a\xde\x41\x94\xf1\x12\x65\x7e\x1c\xa2\xf3\x72\x04\x16\xd1\x95\xb6\x2c\x29\x4e\x0f\xcd\x05\x0e\x0d\x94\x26\x7d\x56\x1f\x70\xca\x77\x68\x70\xbd\x1c\x27\xd5\x60\x4e\xc6\xb5\xf8\x08\x9f\x4d\x48\x25\x59\x85\x39\x94\x35\x45\x8d\xc4\x34\xc1\x68\x7c\x8e\x14\x83\xc0\x0c\x05\xb9\x13\x49\xa2\xee\x58\x9f\x24\xc6\xbd\x71\x5a\xe9\xfc\x01\x1f\x7f\x4b\x67\xca\xc9\xae\xb5\xb8\xb8\xbe\xde\x44\x58\xaf\x0a\x98\xd4\x15\xda\x78\xd3\x16\x07\xfb\x89\x9d\xf3\xc2\x3d\xc3\x38\x4d\xfa\x59\x9c\x55\x72\x67\x51\xe2\x3c\x8e\x9b\x66\x30\xc9\x96\x17\xe7\xdb\xbc\x16\x06\xa7\x3f\x9e\x90\x57\xda\xbb\xfe\x14\x1c\xe5\x87\x83\xe5\xf4\x7f\x96\x52\xc8\xce\x9d\xed\xc3\x71\xe6\x55\x49\x34\x37\xc4\x03\xb5\x44\xd1\xd2\x9e\x51\x9c\x64\x55\xbd\xb9\x49\xc4\x15\x1f\x90\x8d\xe4\xac\x43\xd9\x70\x6f\x92\xac\x3e\xa6\x4b\x37\x65\xfd\x70\x7d\x42\xfe\x33\xd7\xc9\x81\xe7\xd5\x7c\x90\x95\xc0\xff\x7b\x43\x89\xdd\x8b\x81\x37\x50\x7f\x08\x23\x46\x7d\x21\x68\x2c\x26\x32\x6b\xcb\xb2\x44\x27\xde\x8a\xe9\x65\x7d\xc0\x8f\x1b\x29\x44\xe9\x78\x38\x42\x94\xc3\x36\x83\x4a\x85\x5e\x47\xc1\xba\x70\x39\xae\xe2\x14\x8a\xd8\x68\x8e\x9e\xa1\x41\xf4\xbf\xc7\xad\x33\x71\xe1\xb0\x85\x06\xf1\xff\xcf\xd8\x9f\x05\x49\x92\x65\xe7\x61\x70\x55\x64\x66\x55\x2f\xd5\x4b\xf5\x32\x03\x6e\xff\x1f\x5c\x61\x26\xb5\xc6\x40\x51\x34\x99\x41\x92\x79\x20\x33\x81\x46\x95\x88\xec\x52\x56\xb1\x9a\x6a\xe3\x43\xdf\xf0\xb8\x19\xe1\x9d\x1e\xee\x31\xee\x1e\x99\x9d\xfd\xa4\x07\x3e\xd2\x64\x12\x4d\x46\x89\xda\x8c\x02\x37\x91\x14\x09\x02\x23\x81\x1c\x12\xa4\xc7\x00\x33\x03\xcc\x60\x06\xbd\x77\x4f\x2f\x55\x5d\xfb\x5e\x59\xfb\x5e\x9d\x25\xf3\xf3\x9d\x73\xef\xf1\x0c\x2f\x9a\x5e\x66\xdc\xbb\x32\x22\x7c\xb9\xf7\xac\xdf\xf9\xbe\xb1\x3c\xe6\x57\x9d\x39\x51\xa6\xa5\xb1\xd2\x15\xad\xe2\x59\xb9\x95\x53\xd6\x16\x55\x8d\x15\x3f\xb6\xc3\xdd\x7e\xf4\x95\x9f\xaa\x9b\x51\x73\xad\x80\x4d\xdd\x42\xe7\x01\x30\x94\xdf\x2f\x29\x5d\xfd\x9b\x81\xea\x1e\x6c\x06\x2f\xa8\x21\x11\x9b\x45\x71\x54\x6c\xcc\xf8\xca\xf4\x96\x1e\xeb\xd1\x1c\xfe\xd3\xa4\x93\x95\x8d\x35\x20\x5a\x71\x5a\x01\x48\x76\x1d\xc5\xe6\x61\x61\x6a\x28\x55\x27\x93\x14\xa2\xf2\xe1\x8c\x9f\x25\xba\xaf\x94\x5a\x4f\xd7\xc9\x95\xb4\xc0\x51\x98\xd9\xe2\xf1\xf3\x91\xcf\xa8\xc5\x96\xdb\x96\x0a\xc8\x4f\x6a\x2e\x8b\x93\x6a\x7d\x85\x69\x92\xa7\x71\xd4\x33\xde\x29\x0b\x75\xa5\x2a\x09\x33\x01\xa4\xc8\xde\xf9\x08\x6d\x64\x7b\xcf\xba\x51\x84\x53\x7f\x02\x31\x2a\x45\x08\xff\xc5\x2f\x74\x34\xd9\xe8\x31\x6a\x4b\x49\x98\x5b\xdd\x37\xec\xd5\x33\xd4\xc1\x15\x2a\x36\x5a\x4d\xc8\xcf\xbe\x28\x3d\x55\xe2\xb3\x13\x0f\x80\xfe\xdb\x3f\x0f\x83\x82\x5c\xf2\x45\x15\x27\xfd\xad\xbd\x28\x18\x88\x6f\xa6\xeb\x87\xdd\xa1\xa9\x62\x8e\xe4\x7e\xa2\xac\x69\x98\xd9\x3c\x4c\x0b\x91\x6d\x40\x9e\xce\x04\xee\x32\x83\x4f\xdf\x29\x0d\x62\x1f\xf4\x8c\xb2\x34\xb4\x79\xfe\x44\x75\x2b\x32\xf7\xad\x61\x48\x8a\x58\xe9\x2b\x4d\x2f\x74\x36\xa8\xf5\x17\xbc\xa1\x84\x44\x33\x42\x84\x7f\x80\x27\x21\x89\x50\x83\xf6\xfa\xc0\xc6\xa3\x96\x72\xa2\xf5\xdd\xdd\xd0\xfd\xb6\xc3\x6e\x66\x1c\x57\x8c\xe4\x36\xf4\x0d\x92\x00\x35\xb0\xaa\x75\xa3\x77\x4c\x26\xf2\x07\xb0\xd5\x00\xc7\x61\x29\x3c\xd9\x69\x29\x72\x5f\xc5\x00\x73\x45\x0d\xc4\x66\x36\x5d\xab\xb2\x3c\x47\xbd\xb4\xb3\xe3\xab\xfc\x3b\x1b\x2a\x14\x6f\x08\xb9\xd4\xac\x8f\xf0\xc0\xd5\x2b\xe0\x95\xea\xbb\x84\xad\x89\x9e\x2d\x0c\x03\x19\x4e\xbf\xb3\x47\xe1\x20\x8a\x7b\x99\x4d\x60\xdd\x1c\x7a\xce\x45\x65\x20\x14\x40\xb0\xaf\x45\xd6\xc3\x74\x38\x32\xc9\xc6\x0b\x7e\xc9\x02\x4e\x0c\x3b\xf5\x87\xa5\x4a\x82\xee\x04\x2a\xd3\xe4\x0a\x01\xcc\x08\x08\x14\x51\xa1\x3a\x12\x78\x3a\xe0\x1b\x64\xf6\xb1\x65\x5b\x94\x3d\xc0\xec\x3e\xdd\xa1\x60\x00\x8b\x81\x91\x41\xe8\xfa\xdd\x53\x91\xd8\xee\x89\x1a\x55\x7f\x17\x91\x13\xd6\xf8\xb3\x2c\x79\xe2\xf0\x76\x8e\x3b\x93\xe9\x71\x10\x40\x5e\x43\xd7\x51\x72\x01\x5f\x1f\x5b\x31\x43\x86\x49\xc1\xab\x5c\x53\xb2\xb0\xff\x9c\xcc\xef\xd6\xf5\xa9\x85\x75\x78\x7e\xb1\xbd\x92\x99\x31\x81\x3e\xfd\x8f\xdc\xa1\x5f\xe7\x63\xd5\x4e\x7a\x2b\x2a\x0a\xcb\xa4\xfa\x78\x02\xc0\x78\xf1\xb1\x73\xfc\xb9\x8d\xde\x19\x33\x56\x11\x57\x73\x47\x55\xeb\x76\x52\x3a\xc5\x51\x65\x53\x47\x34\x8d\x37\x86\xa3\x28\x94\x2a\x21\xea\xc1\xf7\x34\xa5\x0b\x77\x0e\xd1\xa1\x38\x57\x2b\xea\xc6\x69\xbe\xab\x86\x0e\xf6\x0c\x44\x57\x54\x7b\x8a\x75\xb6\x9d\x92\x58\xe5\x5f\x98\xee\x9d\x5e\xb0\x50\xbf\x37\x40\x22\x30\x48\xcc\x8d\x2f\xd5\x7a\x5e\x74\x5a\x8c\xda\x11\xae\x8c\xe3\x3d\x33\x5a\xd6\xb2\x4a\x4a\x05\x14\xd7\xf2\xcc\x45\xfa\xf6\x18\x63\x8c\xe5\xb3\x63\xa2\x89\x66\xaf\xe8\xd5\xfb\x99\x02\xce\x61\x02\x16\xd9\xdd\xdf\xa7\xec\x58\xca\x27\x1e\x9b\x34\x03\xd8\xa2\xc0\xea\x9f\xdf\x2e\x65\xfc\x2c\xe5\x0f\xc0\x12\x30\xfd\x2a\x4a\x72\x5c\x0e\x77\x0d\x05\x17\xc8\x5c\xa3\x6f\x47\xfe\xc3\x0d\x71\xfe\x38\xee\xc7\xb1\xaa\xf9\xe9\x65\xf0\xf7\x4b\xac\xe8\x2b\xcb\x37\xf1\x46\xc4\x9a\x69\x9d\x22\x3c\x5d\x6c\xdf\x0f\x31\xbc\x0a\x3b\x7d\x67\x0a\xf8\x55\xb9\xf4\x34\xca\x25\x82\x44\x6b\xed\x04\xbe\x80\x4f\xb6\x4b\x65\x2e\xcf\x2f\x57\x1b\x81\xf8\x76\x84\x3a\xd7\x0f\x03\x33\xbf\x21\x2b\x2a\x06\x7e\xdc\xf6\x43\x5a\x27\x02\xa3\x51\x3e\xe7\xe3\x86\x7e\xd4\xc1\xf6\xca\x38\x49\x6c\x2c\xd7\xc5\x90\x7f\x5c\x97\xe0\xff\x1b\x62\x54\x4a\x01\x7d\x10\x8d\x2d\xc9\xaa\x92\x7c\x32\xd5\x0b\x7f\xa5\x1d\xc6\x76\xcd\x66\x4c\xd1\xe7\x80\x3e\x4a\x73\xab\x41\x82\x2a\x8f\xfa\x83\x22\xb7\xd6\x21\x11\x50\x4b\xc3\x78\x2e\x1f\x07\xdb\xe9\xb0\x0f\xcf\x1f\x68\x17\x76\x38\xb2\x19\x66\x76\x7c\x4d\xe8\x8b\xd2\xd7\x84\xbe\x68\xa6\xc5\x1c\x8e\x62\x2f\xb0\x28\xba\x2f\x2d\x25\x08\xd3\x50\x56\x67\xde\xed\x96\x6f\xea\xb1\xbe\x3a\x9f\x34\xb3\x2e\x99\x24\x91\x27\x88\xa2\x18\x6b\x2a\xf0\xc9\x54\x8d\xe1\x95\xf6\xaa\x1d\x15\x80\x3c\xb1\x16\x14\x82\x4a\x11\x86\x6a\xb2\xa3\xe9\xca\x8a\x7f\x51\xd2\xd2\xab\xae\x53\x4a\x59\x8d\x94\xe7\xf6\xed\x31\xb0\x61\xd2\x73\x53\xb5\xef\x4f\xa6\x22\x07\x12\x44\x91\xf9\x70\xd1\x3f\xf1\x3d\xc0\xcb\xca\x1f\x74\x6d\x61\x10\x61\x30\x87\x4f\xa0\x44\x1e\x6e\xa9\xa8\xf4\xdb\xe3\xb4\xb0\xbd\x39\x15\x95\x5d\xd4\x7c\xb6\x9b\xaa\xba\xb3\xbb\xe3\x4d\xde\xbf\xd1\x39\xe4\x35\x1d\x94\x0d\xaa\xc7\xcd\x33\xa7\xd8\xff\xe7\xb0\xce\xf9\xa4\x66\xae\x69\xec\xd3\xa1\xf5\xd1\x1b\xe4\x63\x97\xfe\xda\xa4\x6f\xfa\x96\xfa\x32\xa8\x9f\xf2\x98\x17\x0f\x3c\x05\x0a\x10\x84\xfa\x88\x0c\x70\xd5\x54\x22\xd6\xec\xb3\x5a\xd6\x8d\x05\x6e\x9d\xd0\xe8\xeb\xce\x93\xff\x26\x6d\x72\xb4\x16\x8e\x68\x1d\x93\xcf\x95\x04\xc5\x15\x35\x66\x75\x02\xd0\x72\x80\x8d\x8e\x6b\xfd\xa0\x1f\x95\xaa\x49\x53\x2a\x2b\x76\x85\x72\x20\xd4\x20\x1f\xc0\x6e\xf2\xc7\xd5\x10\xff\x2d\xf7\x04\xba\x26\xf9\xf6\x18\xcd\x35\xc4\xdd\x6c\x51\xf9\x44\x11\x10\x75\xb3\xd4\x60\x10\x11\x95\xdd\x87\x0a\x50\x7f\x5c\x51\xa1\xde\x98\xb6\x36\x8b\x24\xb8\x10\x9a\x42\xa2\x4c\x47\xb0\xe7\xdb\x73\xd3\x12\x10\xfb\xf7\xb7\x57\x23\x6a\x7c\x54\x1f\xa9\x69\x28\x09\x22\xd5\xaf\x8d\x6e\x36\xce\xf3\x6a\x6d\xd4\x84\xd1\xb4\x2a\xc5\xb1\x5a\x16\x99\xc6\xf1\x53\x1e\xa4\x7a\xad\x54\x60\xa4\xcd\xc0\xb7\x58\x1f\xc1\x5b\xc0\x06\xfc\x5d\xac\x5e\x6e\x00\x06\x5e\x41\x1e\x71\x2b\xdc\xed\xdf\xc7\x4d\x39\x0e\x35\xd7\xa1\x7a\x97\x12\x1d\x19\x37\x7f\x4e\xad\x6a\x9b\xd8\x8d\x59\x6a\xbf\x72\x51\x8d\x5e\xa1\x6b\x21\x2d\xcf\xbb\x7f\x28\x55\x6f\x49\x81\xe6\xde\x0a\x47\x2d\xcd\x3f\xcd\x18\x52\x3e\x69\xd6\xd8\x33\x09\x88\x37\x24\x68\x51\x01\x8c\x2b\x84\x74\x9d\x40\x92\x0b\xab\x4e\xe1\x19\xf0\x49\xa0\xc9\x74\x72\x6b\xb2\x70\xc0\x6d\x1b\x04\xe7\x9c\x1e\xf2\xc9\xc4\x5f\x71\x61\x0d\x62\x6f\x96\x5f\x55\xc5\xcb\xaf\xb1\xa5\x51\xc7\xd6\x7a\x0c\x66\xa5\xb0\xd9\xde\xea\x09\xe0\xdf\xae\x06\xaa\xc5\x8e\xb1\x43\xbc\xcd\x7f\x49\x75\x7e\x21\xd6\x57\xd2\x05\x57\x4b\x85\x74\x47\xb4\xc0\xbd\x40\xec\x20\x69\x43\xb6\x9c\xc2\xce\xce\x89\x92\x68\xe4\x7e\x17\x22\xa4\xe3\x08\x5c\xa4\x4c\xe5\xc5\xdf\xb7\x34\xbb\xfc\x11\xcd\x6a\x27\x22\xb3\xa8\xec\x5c\xac\x55\x94\xb6\x13\x1e\x91\x90\xf8\x9c\x9e\xbc\xaf\xee\x0f\x61\xc0\xce\x8e\x9f\xfd\xc2\xc8\x4c\x4d\x73\x09\x59\xd7\xbd\x06\x02\x98\xb6\x89\xb2\x30\x33\x2b\xc5\xac\xa2\xa4\x3a\xaa\xda\x9a\xd0\x53\x94\x27\x4a\xcf\x44\x78\xe3\x45\x31\x3e\x8d\x50\xbe\x16\xfd\x5a\xfa\x49\xad\x2a\x00\x3f\xf0\x4c\x47\x4b\x86\xd1\xb0\x9a\x90\xcf\x35\x70\xe1\x84\x03\x3b\x74\xa3\x1b\x32\x52\xe5\xb7\xce\x49\xa5\x3e\x3f\xa2\x68\xc0\x31\xf4\xa2\xa8\xf2\x38\x05\xc8\x57\x00\xa2\xe2\x3a\x1c\x93\xc3\x63\xdc\x41\x98\xe2\x65\xad\x9b\xb0\x18\x3b\xf2\x61\x11\x02\x57\x38\x5d\x0d\xeb\xcf\x07\xd1\x08\xc5\x41\x0d\xf4\x95\x39\xfc\x96\x57\x33\x2b\x9f\x76\x05\x91\x5f\x3a\x88\x02\x97\xb4\xf9\xab\x75\xcc\xc7\x0d\x0c\xa2\x07\xc0\xed\xa9\x84\xf1\xc1\x09\x21\x39\xfd\x34\xc5\xd6\xab\xed\x9e\x0d\xe3\xc8\x69\xf2\xa2\xbe\x05\xde\x28\x3e\xf6\x93\x32\x69\x52\x64\x26\x2f\x28\x30\xd5\xe5\x7f\x7a\x28\xff\xf0\x79\x0c\xe5\x38\x20\x7c\xb5\x9c\x85\x00\xc7\x8f\x95\xb0\xf0\x02\xd3\x1a\x6c\x0f\x7d\xab\x5b\x38\xf0\xda\xc1\x59\x5d\xd3\x08\xea\x78\x72\x1d\xe3\x56\x3e\x52\x42\xc8\x86\xe0\x6c\xcd\x16\x36\x33\x09\x69\x6c\xc8\x20\x60\x0d\xd8\xe0\x8a\x6c\xad\x89\xaf\x41\x8d\xdf\x8a\xe8\x0e\x71\xed\xb7\x74\xf5\xa6\x05\xc3\x84\xd7\x77\x33\xa8\x8f\x68\xb4\x1c\xb1\xc9\x69\xb2\x24\x28\xd6\x5c\xf4\x72\xe5\xe3\x95\x02\x03\x2f\x92\xef\xa8\x06\xdd\x66\x20\x3b\x85\xf8\xbe\x7d\x98\x5c\xab\xdd\x69\xee\xdb\x6c\x1c\x46\x26\xa6\x20\x44\xd2\x4e\xc5\xa5\x0b\xde\x3c\x84\x03\x50\xb8\x47\x25\xe8\xff\x99\xaa\xed\xbe\xd2\xce\xad\x71\x79\x00\x67\x0c\xa5\xa2\x8d\xfc\x58\x61\xb4\xc2\xd8\x44\xc3\x88\xa1\x18\xdc\xaa\xa5\xad\x24\x6d\x5b\x1f\xc6\xad\x26\x69\x51\x30\x64\xb6\x49\xda\xc2\x57\x8c\xbb\x99\x74\xbe\x85\x5a\x49\xf3\x2c\x4d\xb5\xf9\xf7\x2d\xb5\x57\x37\x84\xba\x8f\xa9\x09\x88\xee\x41\x68\x0a\x9e\x8b\x74\x79\x93\xf7\xa6\x53\x26\x75\x58\xc7\x26\xbe\xa3\x83\xd5\xc5\x20\xe1\x90\xa0\x77\x17\xa4\x51\xf9\x64\xf2\x38\xb4\x51\x91\x8e\xfb\x83\x99\x6a\x75\x4a\xb3\xc4\x23\xa1\xef\xd4\x2d\x82\x5c\x5f\x92\x66\x43\x67\x3b\x50\xa7\x61\xc6\x22\x3e\x51\xda\xa7\xd1\xb0\x6b\x62\x26\x67\xae\x56\x3d\x8b\x10\x51\xcc\x21\x82\x44\xba\x61\x38\xec\x46\x09\x0c\x1e\x03\x9f\xe9\x2d\x09\x08\x7a\xfb\x8d\xef\x5b\x6a\x0f\xa3\x1e\x69\xd6\x38\x11\x8d\xb3\xf4\x09\x3e\xf6\x36\xc0\x0c\xbb\x69\x8f\x39\x97\x05\xe1\xaa\xca\xa4\x57\x54\x31\xbc\x6b\x8b\xc1\x4a\x9a\xf5\x2d\xf2\x37\xae\x76\xa9\x98\xf5\x0f\xa7\x36\x2d\xc9\x71\x99\xa4\x27\xd4\xd6\xb0\x19\xef\x97\x4a\xa1\xf2\x7d\xd5\x35\xe8\x9a\xac\x6f\x22\x4d\x4a\x74\x83\xb6\x21\x1f\x07\xa2\x67\x93\x8f\x6c\x38\x8e\x99\xc0\x68\xf1\x90\x27\xfa\x5f\xf2\xfc\xc1\x0d\x13\x72\x61\x9a\xac\xc4\x51\x08\x1e\x18\x07\xdf\x70\xf5\xe5\x0b\xa5\xbe\x92\x70\x55\x42\x1e\x37\xdd\x55\x6d\x28\x69\x09\x7b\x10\xe2\x28\x36\xa1\x05\x65\xa5\x07\xa7\x94\x8a\xe8\xe1\x01\x42\x19\x79\xf4\xdb\x8d\xf6\xf2\x7c\x7b\x38\x2e\xa2\xd8\xb8\xb6\x14\xb6\xfc\x07\x0a\xf2\xff\x81\x42\xe8\x66\x36\x4f\xc7\x59\x68\xf3\x27\x15\xdf\xf5\x69\x35\x0b\xf9\x1c\x19\x42\x20\x1f\x9e\x98\x28\x1e\x6c\x2e\xb9\xd4\xd8\xcf\x90\x79\x33\x0c\x19\x80\x9e\xa7\xb8\x32\x8f\x84\xe1\xe3\x52\x4d\xbc\xb6\x26\x0a\x6f\x1c\x8d\xe2\x74\x68\xc2\x0d\x2c\x07\xc4\x56\x1f\x29\x21\xde\x8f\x54\xa3\x3a\x4b\x13\x13\xf7\x66\x6b\xb4\x0e\xf8\x15\x46\x01\x83\xfa\x45\x55\x3b\x0e\x38\x7c\xf0\x8b\xdb\xc6\x8c\x16\xdb\x0b\x8b\xdf\xa0\x1d\x2d\xcd\x1f\x9f\x76\x9c\xa5\x6c\x55\xe2\xfe\xd6\xc2\x02\xdb\xc9\xaf\xc1\xcd\x88\x5b\x62\xf5\x58\x9c\x1c\x29\x55\xf5\xec\xcb\xd2\x13\x82\x5f\x25\x3c\x96\x70\xa9\xa9\x16\xde\x16\x2e\x4f\x68\x88\x3d\xc3\x2f\xc7\xac\x2c\xb8\xa8\xa4\x26\xee\xaa\x55\xc6\x79\xa1\x03\xd5\xfe\xca\xeb\x1c\x00\xfc\x53\x40\x42\xf0\x0f\xef\x53\xef\x1e\x0f\x7d\xb3\x26\xcb\x76\x1b\xd9\x1c\xe2\xc1\x8f\x91\x57\x4a\xe2\xdb\x54\x76\xb1\x45\x11\xd3\xf2\x44\x19\x40\x2a\x0c\x2a\x73\x9f\xde\x2b\x0b\x0b\x55\x70\xb3\x52\xb8\x5a\x0d\x23\x4d\x15\x33\xf0\xc7\xb5\x2c\x7b\x18\x01\xbb\xab\x21\x41\xe8\xd3\x5c\xa4\xe7\x23\x93\x03\x8f\xb3\xb6\xd9\x86\x13\x9a\x82\xff\xfc\x24\xf0\xd0\x51\x8d\x13\xce\x37\x9c\x73\x61\x9e\x5d\x32\x99\xc2\xb9\xdb\x20\xc9\x44\x52\xfd\x92\x10\x82\x89\xe3\x36\xee\x9e\x4f\x5c\x7b\x7a\xc3\x9a\xac\x0b\x7a\x3c\x4f\x70\x76\x1e\x51\x09\x9f\x4c\x85\x96\x0b\x0b\x60\xd4\x03\xc7\x2a\xe3\x7f\x02\x05\xa8\x80\xae\x83\x44\x08\x8f\xe3\xc9\x09\x63\xd3\x9b\xad\x45\x09\x3e\xda\x7a\x44\x8f\x02\x81\xf6\x47\xa5\xa2\xcc\x39\xad\x1a\x6d\x69\xbc\x82\xcd\xe5\x90\x7c\xdb\x65\xbe\x28\xee\x5e\x7c\xa1\xe3\x2f\x67\x76\x22\x5e\x60\x25\x4a\xa2\x7c\x60\xf5\x10\xe1\x67\x5a\x9e\xf6\x33\x35\x73\x9a\xff\x85\xd1\x2e\xda\x7c\xc8\x15\xfe\x91\xb2\xff\x73\x28\xff\xb2\x1e\x06\x9e\x02\xf0\x82\x67\x4a\x8f\x6f\x79\x54\x2a\xd6\x0f\xcd\x19\xb7\x6e\x7b\x7b\xbc\xf4\xed\x16\x2e\x00\x5f\xf6\xf4\x44\x29\x5a\x9c\x53\xfd\xc1\xdd\x13\x9f\xb6\xfc\xa9\x89\x9f\xae\xda\x78\xa5\xe3\x27\xb7\xaf\x51\x8e\xe7\xe8\xe7\x3d\x85\xe5\x7f\x08\x9a\x7b\xd1\x61\x54\x39\xe2\xb3\xe8\xa3\x20\xac\x7d\x6a\xe2\x11\xaf\x61\x6c\xb2\x28\xb1\x45\x94\x17\xad\x5a\xbc\xaa\x00\x19\x57\x82\x67\x14\xe2\x2e\x1d\xce\xfa\xee\xe2\x47\xaa\x79\x7e\x3e\x50\x96\xe7\x6f\x94\xbe\xd9\xeb\x89\x01\x7b\xb6\x30\x4a\xc8\x5b\x70\xd9\xd5\x3d\xcb\x53\xda\xab\x8a\xec\xc3\x34\x8b\x6c\xbe\x8b\x2e\xc5\x31\xda\xb9\x41\xaf\xef\xeb\xc9\x80\x0b\x6a\xfc\x1e\xf3\xb8\x28\xc0\x00\xbf\x24\x8c\x80\x1e\x5f\x35\x4a\x63\x81\x94\xe2\x4e\x58\x18\x9b\x4f\xd4\x28\x62\x66\x47\x26\xe2\xe9\x58\x04\xac\x68\xe8\xf2\xb1\x83\x6d\x8e\x13\x9b\x87\xe9\xac\xaa\xae\x82\xe8\xd9\x91\x50\xfd\xca\xeb\x35\x42\x2a\x18\xdf\xeb\x1e\x03\x19\x65\x61\x2c\x79\x8e\x9b\x0b\xf7\x33\xe2\x4d\xda\xa0\x7f\xae\x3d\x4c\xf3\x02\xd4\x4f\xd2\xe3\x23\xc7\xc0\x27\x53\xc1\xe9\xc2\x42\x15\x09\x66\xb3\x7a\x61\xd3\xd5\x20\x71\x7c\xa0\x84\x13\xff\x1d\x96\x00\x93\xbd\x35\x4a\xbd\x75\x63\x9b\xbb\xd6\x01\xde\xc3\x6d\x05\x7b\x9a\x56\x2c\x5c\x3c\xd4\x8e\x6d\x7f\x3c\x44\xe8\x87\xde\x29\x0a\x13\x7c\xdc\x04\x39\x48\xc6\xfd\xbe\x95\xc1\x4c\xd4\xfe\x2f\x6a\xf9\xd2\x8b\xc1\x5e\x05\x19\x18\x99\xcc\x14\x16\x6a\x90\x08\x75\x3f\x57\x60\x27\x86\x54\x3a\x76\x51\xa7\xf6\xfb\x21\xec\xa2\x7b\xee\xfb\x96\xb4\x6e\xc9\x1b\x75\xbf\xc9\x4d\x5f\x55\xab\x1a\x85\x48\x9d\x9a\x58\x39\xb6\x3f\xb9\x37\xdf\x6c\xf7\x63\x93\x27\x44\x8a\xb2\xb4\xe4\x07\xcd\x7e\xe5\x75\x37\x68\xe6\x49\x1d\x4c\x51\x64\x51\x77\x5c\xf0\x84\x99\x30\xae\xfa\x86\xcb\xa6\xba\xfd\x51\x9c\x16\xe2\xe5\x96\x7c\x9b\xa9\xba\x65\x3e\x51\x5b\xa0\x1f\xad\xd9\x7c\x77\x8d\x59\x5f\x51\x3b\x54\x81\x03\x03\xc4\x10\x1f\xb0\x9c\xe6\x44\x53\xce\xce\x10\x04\x14\x13\xf6\x68\x73\xa1\x9b\x75\x63\x2a\x8d\x23\x29\x9a\x7e\x44\xbd\xe9\x03\x5b\x20\x08\x72\xd4\xf0\x87\x65\x3e\xe5\x93\xa6\xd0\x3f\x5d\x59\xc9\x6d\x31\xa7\xc6\x86\x99\x21\x8e\x69\xb5\x15\x99\xf7\xef\xa9\x8a\x1b\x2a\x61\x82\x86\xf3\x89\x5f\x96\x86\xab\x56\x0f\x1a\x70\x3d\x95\x4f\x34\xa5\x6a\x9c\xae\xc7\x1b\x44\x7b\x07\x60\x2b\x9b\x54\x84\xe4\x77\x10\xdf\xc8\x6c\xa3\xdf\x38\x8c\x1e\xe4\x7f\x68\x28\x00\x1f\x6c\x27\xf6\x6d\x5c\x81\x53\xff\xd9\xb7\xe4\x90\xba\xdb\x9d\x6a\xf5\x08\x98\xd1\x9b\xb7\x5a\x13\x5f\xc8\x1e\xf7\x5e\xd7\xd3\x94\xd6\x15\x82\x14\x6c\x48\x3e\x6e\x40\x4d\x1e\x68\x9b\xa4\xef\x4b\xcc\xb0\x6a\xbb\x3a\xaa\x8c\xbf\x6b\xf2\x38\x55\x57\x66\xf4\x9e\xd5\x1c\x45\xa5\x67\xa9\xbb\xa4\x46\x3a\x3f\xd4\xdc\xb2\xf7\x5d\x8c\xf2\xff\x41\x75\xb9\xa9\x28\x94\x0f\xa2\x91\x57\xff\x74\x32\x84\x0e\x09\x79\x45\x61\x83\xe2\x34\xb7\x4f\xd1\x37\x4a\x63\xbc\xf5\x6b\x42\x73\x87\x31\x64\xa0\x29\x2e\x04\x2a\x8b\xfb\x0c\x6f\x1a\x01\xc7\x23\x2a\x37\xf1\x5f\x01\x1a\xb0\x6b\xa2\xa4\xb9\xbe\x44\x74\x82\x91\x23\x6c\x4d\x78\xf6\x9f\xa9\xf9\xf2\x6e\x14\xc7\x51\x9a\x3c\xa7\x80\x6f\x9f\x04\x9e\x3e\x06\xf4\x22\x2c\x81\x8a\x0d\x27\x35\x28\xa5\x87\xba\x1b\xb5\x5a\xc0\x21\x66\x26\xb5\xdc\x60\xff\x7e\x2e\x02\xdc\x26\xf4\x05\xf2\xa5\xab\x68\xb5\xe0\x03\x3b\x09\x7e\x81\x38\x1f\xf5\x51\xc4\x10\x37\x35\xf1\xf9\xf7\xb4\x10\xc8\x1f\x2a\x9e\x8d\x3f\x6a\xa2\x3b\x20\xf9\x59\x49\x2c\x71\x8d\xac\xee\xc8\x27\x8a\x02\xe3\x3f\x4a\x11\x54\x3b\xc8\xb7\x67\x95\x79\x44\xef\x01\x76\x64\x5a\x7a\x68\x61\xb1\xbd\x92\xd9\x24\x1c\xcc\x2a\x24\xf1\x1c\x67\x75\x6e\x92\x62\xff\x7e\x67\xe3\xfc\xe0\x51\x63\xff\x65\x68\x92\x34\x6b\x29\x4e\xc3\x93\x8a\x62\xea\x64\xf0\x82\xaa\xfe\xc7\xe3\xb0\x30\x49\x41\x65\x2c\x7c\x23\xf7\xd2\x24\xef\xf0\x53\xdd\xf7\xd4\x64\xf8\x91\xa9\x8d\xb6\x6f\xa9\x3d\x2e\x0a\xd7\x64\x7e\x0c\x09\xad\xd0\x19\xa7\xc3\x28\x44\x0d\x03\xf6\x94\x0b\x7b\x7c\x32\xf1\xf9\x43\x32\x1e\x76\x6d\xf6\x64\xcb\xe9\x60\x00\x03\x0c\x5b\xf6\x93\x52\xb9\xf9\xdf\xc1\x3a\x02\x58\xf0\x23\xae\x0d\xba\xe1\x50\x25\xce\x51\xfd\x2a\xac\xe6\xec\x44\x29\x18\x9d\xd5\x2e\xf7\x56\x23\x32\x66\x68\xad\x4f\xb1\xb0\xfe\xf0\x75\x7c\xac\x00\x14\x04\x46\x95\x14\x09\xab\x10\xac\x46\x7c\xac\x28\x47\xe2\x6f\x8d\x44\xaf\x5a\xc2\x49\xc5\x29\x78\xd4\xf1\x9c\x8f\xe3\x22\x1a\x9a\x62\x3c\x64\xe0\x2f\x2b\xf2\x2b\xe7\x0f\xae\x2a\x49\x2e\x15\xea\xdc\xc4\x3d\xfb\x0e\xa1\x6f\x5c\x42\x5d\x7d\x03\x10\xb4\x47\x14\x95\xd7\xad\xa9\x0e\xf3\xfe\xfd\xed\x6c\x9c\x0f\x6a\xcc\xc2\xb5\x79\xe8\x17\x94\x7e\x78\xba\x6a\x33\xd3\xb7\x4f\x10\x22\x43\xcc\xbd\x96\x1d\x0a\x7c\xc3\x65\x53\xa9\x54\x6d\x06\x8a\xda\x9e\x81\x3d\x7c\x52\xfa\xda\x52\x5d\xce\x48\xdd\xdf\x28\xb6\x49\xb1\x31\xdb\xfa\xab\xbf\xca\x61\xde\xf7\x4a\xd5\x39\xf8\x9e\x9a\x6b\xf9\x2d\x55\x2c\xfd\xad\x86\x72\xfc\x52\x7b\x9c\xac\x98\x48\x56\xb1\xf0\xec\x78\xa7\x7b\xb2\x91\xa0\xdf\x84\xa4\xc0\x41\xbb\x5f\xb2\x54\xbf\xe1\x2f\xd7\xde\xa7\x32\x99\xa3\x2c\x5a\x33\x85\xdd\xa5\x8c\xfc\x03\x15\xf8\x40\x73\x55\x64\xb4\x54\x76\xf6\x89\x9e\xe3\x90\x6a\x03\x93\xe0\xa9\xba\xee\x4a\x9c\xa6\xd9\xee\xea\xf1\x6f\x61\x86\xc6\x09\xc1\x2c\xcf\x6f\x5d\x52\x74\x4f\x7f\x27\x50\x5b\x07\x93\xd4\x78\xfa\x33\x0a\xa5\x77\x45\x85\x61\xd5\x32\xcc\xa2\x62\x03\x89\x25\xae\xf0\x68\xe9\xc1\x1e\x77\x4a\x2f\x54\x78\x42\x4d\xf5\x61\x0a\x1c\x0d\xce\xef\x6b\x12\x81\x2a\xd4\x74\xfb\xc1\x5a\x06\x7a\x61\x97\xdf\x54\x13\x55\x3c\x8b\x24\xd4\x00\xdb\xba\x17\xaf\x2f\xcf\x57\x61\xfb\xac\x12\x39\x65\x92\x71\x25\x7d\xb7\xe4\xa6\x34\x7d\x75\x76\x73\x6a\xd9\x33\x4c\x64\x46\xf5\xbd\x99\xd5\x02\x27\x5c\x23\x94\x26\x78\xc3\xb0\x46\x04\x95\x57\xc2\x9e\x39\x8d\xb4\xe5\x03\x72\xc3\x0a\x33\x75\x1c\xee\x49\x69\x0d\x48\x64\x32\xe3\x07\x8d\x7e\xeb\xb2\x1b\x91\x18\x58\x33\x52\x01\xd0\x3f\xa4\x07\xcc\xc7\x4d\xed\x43\x08\x24\x58\xe8\xae\xc3\xb9\x80\x7c\x9c\x8f\x9b\x2a\xfc\x69\xaf\xc7\x66\x06\xfd\xbf\x3d\xd5\x95\x6c\x6d\x91\x21\x45\xac\xf8\xc0\xf5\x16\x4d\xbe\xba\xab\xfa\xef\x82\x76\xf3\x9a\xaa\xe7\x69\x1d\x60\xbb\xa1\xca\xc9\xc4\xac\xf5\x71\x59\x35\x51\xf0\xe3\x46\x95\x6e\x52\x42\x9f\x51\x8a\xb3\x98\xbf\xc1\x43\x82\x5d\xc5\xec\xea\x89\x29\x77\xb8\x78\x08\x7e\xa9\xa5\x09\x1d\x3c\x26\xe4\xa2\x22\x19\xaa\x9e\x51\x95\xbb\xd3\x2b\x43\x25\x02\x0b\x96\x8f\x71\xd1\x70\x80\x0f\xb0\x94\x34\x47\x20\xec\xd2\x7f\xab\xb5\xcc\xcf\x39\xd1\x6c\xfb\x36\x81\x9b\x9c\xf7\x40\x87\xf4\xac\x22\xa3\x3c\x5b\x4e\x83\xa9\x5e\xa5\x89\x4f\x62\x3e\x62\x8b\xd4\xc4\xa7\x26\xf4\x52\x23\x9b\x24\xf9\x46\xbc\x66\x92\xc8\xb0\x43\x11\xf4\x2e\x5d\x93\x64\x75\x35\xd6\x87\xee\xc6\x1c\xfe\x54\x56\x99\xaf\x55\x80\xdd\x9f\xe5\xad\xf1\x15\xfc\x47\x58\xfc\xc8\xff\x6e\x39\xdc\x41\x3a\x2e\x98\xe8\xbd\x7a\x34\x0c\xdb\x0e\x54\xf9\xe6\x9a\x9a\xb1\xe9\x65\xe9\x68\xb7\x8f\x89\xaf\xc3\x04\x09\x0b\x00\x3d\x23\x4d\x04\x2a\xd7\xee\x5b\xc8\x4c\x80\xa8\xe5\xea\x95\x8c\x9f\x24\x97\xbd\xb5\x28\x4f\xb3\x0d\x5c\x92\x24\x9f\x2d\x47\x32\x76\xc1\x75\x07\x69\x32\x6b\xd6\x3b\x9b\x3b\x6a\xf0\xe6\xc7\x81\x2f\x02\x31\x98\x5f\x0a\x31\xde\x09\x55\x91\x81\xe5\x3d\x23\x4b\xa1\xe5\x88\xdb\xee\x05\x1e\x8c\x71\xb7\xd1\x87\xc4\x51\x37\x33\x8c\xa5\x75\x04\x3e\x9e\xcc\x47\xf3\xa6\xf5\x6c\x4c\xb2\x06\x8b\x87\x38\x22\x3e\xa3\x51\x62\x67\x1a\x30\x90\x07\xdb\x26\x8b\x72\x40\xa6\x60\x0b\x99\x33\x0a\xc5\xac\x8f\x4a\x3f\x63\x0e\xbb\x08\x73\x72\xb3\x89\xcb\x2b\xa4\x8a\x8c\xc7\x57\xd4\xf3\x92\x69\x2d\x97\x83\xed\xb5\xb4\x10\x92\x21\xb1\xb7\xbe\x1b\xb6\xd9\xb4\x65\xb3\x74\x5c\xa0\x86\xe2\x8a\x93\x55\x5e\x20\x05\x9d\xe9\xe7\x77\x90\x48\xc8\x1d\xef\x17\x9c\x21\xc3\xcc\xf8\x64\x6a\x84\x97\x3e\x95\x26\xa1\xcd\x12\xdb\x9b\x55\x99\xef\xd9\x72\x66\xbb\xb2\x25\xaa\x97\x4f\x42\x4f\x07\x27\x4f\x4f\x3c\x27\xa1\xc9\x73\x3b\xec\xc6\x1b\x43\xae\x75\xd7\x86\x1f\xf9\x64\xca\xc7\x1c\x7a\xad\x72\xd1\xeb\x8a\x2b\xe6\x48\xe9\x87\xd8\x8f\x04\xdb\xbb\x03\x92\x95\x0e\xc7\x99\x29\xcc\x8c\x42\x8d\xb0\x78\x95\x4c\xbf\xb7\x9c\x9e\xe2\x07\x1e\x28\x91\x6c\x14\x03\x32\x6e\x4e\x42\xed\x2c\x41\x9b\x44\x0d\x45\xf1\x9a\x5c\xc3\xfe\x43\x01\xef\xa9\x89\x6b\x43\xcc\x7d\x03\x8b\x86\xb5\x06\xa7\xe4\xeb\xf6\xef\x6f\x47\x49\x5e\x44\xc5\x98\x01\xd1\x7a\xab\xd0\x63\xf4\xdb\xc6\x37\x29\xbb\xd6\x64\xaa\xf4\xb3\x2d\xfa\xf5\x2d\xbe\xf5\x28\x49\x48\x03\xce\x0d\xe6\x7d\xa2\xb2\xdb\x4f\x74\xf0\x3d\xce\x07\xae\x48\x04\xd9\x9f\x9f\x90\x2d\xe3\xe3\xed\x21\xb5\x8d\x37\xa8\x6c\xc3\x89\x0e\x28\x40\x11\x63\x3c\xdb\xf1\x36\x6a\xf7\xc4\x27\xdd\x83\xa8\xc8\x67\x7d\xf5\xf3\x1e\xb9\x76\x6c\xa0\x33\x0a\xb3\x7a\x4f\x6d\xac\x33\x4d\xf2\xc5\xe1\x20\xcd\x6d\x42\xa1\xb9\x90\x74\x2a\x2e\xbd\x1b\x81\xae\x1a\x34\xa4\x5c\x26\x2b\xa2\x30\xc6\x4e\x41\xf6\xff\xdd\x52\x95\x02\xbe\xdb\xa0\x4f\x97\xd9\x21\xa1\x6c\x5b\x9a\xe4\xb0\x8a\x72\x64\xf8\xbe\xe1\x67\x72\x9b\xad\x45\x4c\xe6\x01\x1b\xb6\xa5\xec\xd9\x56\xe3\x0e\x36\xbd\x28\x6d\x69\x52\x2a\xb8\x16\x3e\x6e\x50\x85\x3d\xd0\xee\xc7\xa9\x11\xf1\x3e\x04\x10\x3f\x0d\x94\xfc\xf6\x4f\x35\x12\x26\x4c\xc3\x82\xbb\x38\xc2\x43\x85\x1f\x43\x9a\x78\x4c\x83\xaa\x9a\x92\xe4\xe5\xf6\xd0\xe6\x48\x41\x25\xa1\xa0\x4f\x48\xa2\xd2\xa0\x49\x35\x48\xb3\xe8\x9d\x34\x69\x29\x96\xa4\x9f\x95\x1e\xc3\xf2\xb3\x40\x47\xf6\x28\x1c\x7b\x89\x62\x78\x1d\xd1\xb7\xf5\xdd\x68\x9b\x63\x09\xe6\xbb\xd4\xd8\x22\xb0\xfb\x12\x29\xd2\xd2\x44\x6f\xe9\x33\x5a\x4f\x4e\xa7\xc8\x69\x00\x5c\x27\xec\x21\x6c\xf0\xa7\x4a\x1c\x72\xd5\x14\xef\x28\x5d\xc0\x6b\xaa\x94\x78\xad\x94\xee\x7c\x66\xab\x5d\x6b\xe2\xb8\x8e\x89\xc6\xee\xe2\xe3\xa6\xc9\xcc\x6e\x66\x4d\x38\xa0\xe6\xbf\x56\x9c\xe7\x63\xb7\xc9\xe2\x68\xc5\xe6\x66\xad\xda\xba\x78\x43\x42\xc4\x4d\xcf\x9b\x4f\x34\x19\x69\x6c\xf2\x81\xed\xd5\x54\x28\x55\x80\xb5\xe9\xbe\x78\x94\xa5\x44\x8e\x39\x06\xb4\x58\x2a\xd8\x2d\xa5\xae\xf5\x52\x3d\x41\xf8\xb5\xc5\xf6\xe1\xf9\x37\xe8\x8a\x79\xc2\x48\x55\xbe\x36\x15\x75\xb1\x87\x61\x33\x3e\xa9\xa3\xda\x1e\xad\x49\x43\x01\x27\xb3\x7e\x4c\x15\x01\xdd\x6f\x28\x9e\x93\xdf\x98\x72\x3e\xd5\xae\x22\x16\xab\x68\x25\x0a\xe9\xfa\x79\xa2\xa0\x54\x58\x95\xeb\xee\x5e\xfb\x31\x8d\xda\x98\x22\xe2\xdc\x88\x55\x47\x90\xde\xa0\x46\x84\xa0\x98\xa5\x23\xca\x97\xa6\x49\x6a\x0f\xcf\xcf\xfa\xc6\x1a\x26\x8a\x10\x9b\x5f\x57\x26\x8b\x83\x45\x60\x74\x7e\xec\x0b\x99\x26\x8e\xf2\xee\xb8\x1e\xa0\xe0\x4f\x25\x5a\x79\xd1\x93\x92\x85\x61\xe5\xa3\x6c\xbc\x01\xe2\x52\x34\x12\x8f\xc3\x89\xf3\x89\x8b\xbc\xcc\x3b\x85\x0d\x67\xaa\xe4\x1d\x65\x7a\x8c\xc4\xa3\xf9\xbe\xb3\xa3\x7e\xe1\xc1\xd4\x22\x3c\xf4\x5a\xbb\x6f\xb3\xa1\x81\x01\x15\x7c\x8f\x9f\xd7\x64\x20\x2b\xfc\xf5\xed\x46\x94\x7e\xb5\x88\x8b\xc1\x86\x8e\x59\xbf\xd0\x71\x6f\xd3\x40\x49\x1e\x66\xd6\x26\xad\x3a\x8e\xd5\x39\xf1\xcb\xaa\x36\x9b\x47\xe1\x2a\xfe\xce\xc9\xd6\x78\xb6\xb3\xa9\x1e\xc2\xa1\xd7\xda\x45\x3a\x0e\x41\xe2\x88\x46\xdd\x97\xf4\x01\x3e\xae\x45\xee\xe1\x90\xdb\x7b\xa8\x77\x9e\xd1\x22\x5d\x67\xf4\x64\x6f\x3a\xce\x8b\x34\x69\x79\x95\xa3\x9b\x81\x8a\x16\x6f\xfa\xa1\xf2\x95\x15\x13\x65\xb3\x6a\x41\x61\x3f\xa3\x82\xf9\x15\xed\x14\x84\x04\x1f\xe0\xbd\x0b\x5d\x89\xaf\x0b\x54\xff\x33\x8a\x0d\x53\xd0\xf2\x30\xba\xe6\x18\xbd\xe2\xc5\xee\x8b\xa2\x5a\xfc\x29\x5e\x1d\x02\x12\x0c\x05\xca\xf8\xa4\x22\x97\x3e\xd5\xf0\xea\xde\x68\x9b\x70\x10\x59\xe1\x5b\x15\x49\xdf\xea\xd1\xf1\xb1\x1f\x3f\x23\xce\x7b\xbb\x4b\x73\xbc\xbf\x57\xfa\x75\xfc\x15\x4c\x2c\x52\x48\x68\x0d\x23\x66\x9b\x9b\x28\x2f\x72\x96\x5e\x05\x8e\xbf\x56\x48\xc0\x22\x4a\x22\x9b\x17\xad\x7a\x2d\xc4\x75\x4b\x8e\xea\x3f\x15\x86\x5e\xdf\x71\xe3\xf2\xb7\xa0\x06\x1b\x06\x63\xcc\xca\x4a\x14\x47\x22\x2e\xe8\x20\xe5\x8e\x75\x5c\xe3\xe9\x47\x59\x3a\x4a\x73\x13\x53\x5f\x1e\xb8\xf0\xb3\x78\xfe\x8e\x26\xc5\xa9\x14\xdc\x63\x87\xa9\x8a\x6b\x92\xb7\x3f\x08\xfc\x74\xe7\x59\x54\xd8\x71\x81\xf7\xd1\xfa\x91\x07\xac\xda\x02\x17\x94\xb5\x2b\x55\x8b\xa0\x35\x51\x1c\x2f\xe7\x1c\xca\x32\xcc\xb8\x11\x2c\x2d\x4e\xdd\xef\x54\x84\x14\xf9\x38\xe9\xc7\x55\x74\x0d\x6b\xcc\xca\x2c\x74\x79\xa2\xd2\xa2\xfa\x59\xa3\xcc\x9a\xde\xac\xaa\xf8\xdc\x57\x72\x77\xc0\x9e\xa2\xa3\x71\xae\x54\x84\x57\x9f\x4c\xe1\x70\x96\x96\xda\xa1\xcd\xc8\x34\x1b\xce\x43\x14\x27\x9f\x27\xa3\x51\xbc\xb6\x83\x71\x41\x54\xaa\x33\xaa\x98\x81\xb7\xc4\x8a\x3f\x74\xcd\x32\x4a\xf7\xac\x46\xa3\x45\xc9\xac\x1a\x94\x3e\xab\x84\xbb\x10\x4a\x22\xad\x3d\xa9\x87\xbc\x4e\x2a\x08\x7f\x2f\xca\xab\x77\xde\x8d\xed\x5c\xf5\xd6\x95\xdc\xb9\x58\x1d\xf6\x12\x30\x4f\x37\x14\x75\xd7\x0e\x70\x43\x0a\x24\xb4\x81\x5a\xa5\x1b\x15\xe0\x03\x74\xc2\x7e\x4b\x9e\xba\xc1\xb7\x3e\xa2\xbc\x78\xce\xc1\x15\x1f\xbe\xd8\x71\x80\xbd\xcd\x97\x31\x06\x2b\x2a\xac\x55\x98\x22\x20\x03\xcf\x6e\xfa\xe5\x8b\xdc\x75\x85\x8b\xdf\x09\x10\x9c\xf0\x94\x7b\xe5\x1f\xd6\x33\x15\x31\x9b\x2a\xe7\xc7\xfb\xbc\x84\x1d\x4c\x4f\xfa\x07\x2f\x74\x14\xfb\xc1\x83\xd2\xa3\x3b\xb7\x28\x62\x12\x4b\xa4\xb6\xf6\x8c\xd3\xd2\x35\xb1\x01\x51\x35\x5e\xc0\x5d\xcf\xb8\xfc\xc6\x97\xf8\x04\xb2\xd6\xa3\x81\x6f\x2f\xdd\x9d\xca\xec\x16\x0f\xb5\x13\x8b\x9c\x72\xa9\xd6\x82\xa9\xa1\xec\x71\x42\x37\x7b\xd0\xa5\xb6\x62\x8d\x33\x53\x19\x8b\xdd\xd5\xcf\x13\xae\xee\xef\xbe\x48\xcd\x2d\x96\xf8\xd1\x4a\x0e\xb7\xb1\x27\x85\x25\x81\x1e\x9d\x93\x98\x57\x04\x49\x84\x9f\x97\x9e\xbd\x42\x22\x8d\x36\xe6\x94\x05\xbd\xaf\xab\xef\x78\xdd\x28\x13\x22\xe2\x57\xf2\x68\xee\x13\x8a\xb2\xbc\x3b\xce\xa3\xc4\xe6\xf9\x50\x86\xb4\xdd\x18\xc4\xfe\xfd\x6c\xae\xd8\xa5\xe3\x0a\x6f\x56\x91\xb9\x6c\xf5\x74\x34\x88\xf2\xa2\xda\x72\x95\x5b\xa0\x95\x89\xcc\x09\xa4\x3a\x32\xd2\xe6\x67\x64\x8f\x4d\x65\xa0\x8b\x87\xda\x43\x93\x8c\x57\x4c\x58\x8c\x33\x57\x33\x44\x8c\xb9\x4b\x71\xd2\xe3\xc6\xf0\xfc\x1e\x96\x2f\xaa\xb8\x3d\x0d\x6d\x6f\x9c\xd9\x7c\x56\x5d\xfe\x71\xec\x7a\xa9\xd6\x56\x17\x83\xfd\xc3\x44\x4c\x7c\xd2\xf1\x34\x0c\x23\x9b\xad\xa4\x55\x60\x12\x22\xb0\x17\x39\xef\x49\xa0\x6a\xaa\x13\x65\x1e\x2e\x6b\xf2\x2e\x6e\xce\x0a\xdd\xbb\x9f\x43\x25\x86\x1f\x2f\xfa\x3d\x0e\x57\x89\xc9\x17\xef\x01\x14\x76\x7c\xfc\x58\xe4\xda\xfa\xc0\x0c\x67\x49\xed\x14\xd5\xf5\x4b\xb4\x46\x50\x9e\xd7\x58\xa2\xcf\x34\xab\xd1\xb1\xa9\xda\xe4\xc2\x02\x8d\x23\x18\xc8\xde\x72\xdc\x8b\x1c\x85\x4b\x7e\x7c\x52\x9b\x7d\x8e\x0a\xbb\x57\x77\x2b\x5a\xd8\x08\x2c\x15\xdf\x51\xd9\xdc\xbf\x0c\xfc\xb4\xca\x5d\xc4\x8d\x02\x40\xf3\xfc\x6d\x57\x74\x9d\x02\xe4\x95\xd8\xb6\x57\xa1\xbc\x24\x6f\xcf\xb3\x1d\x7f\x82\x6b\x93\xa0\x9c\xae\x5a\xa4\xbf\x7c\x87\xe4\x7a\x4d\xc8\xb3\x7a\xaa\x30\x9d\xd7\x4a\xdf\x5f\xde\xd4\x48\xf1\xa7\x54\x65\xa0\x97\xd9\x75\x2c\x3b\xa4\x15\x27\x14\xaf\xd5\x4d\x85\x04\x9b\x2e\x07\x1c\x9e\x3f\xd0\x1e\x46\x85\xb0\x24\x31\xed\x39\x7b\x69\x21\x41\xf7\x1b\x77\xde\xfc\xa5\x59\x0f\x90\xd8\x43\x7d\x51\x5c\xff\x0f\xe9\x19\xe1\x27\x59\xa4\x03\x8e\x67\xc7\x44\x41\x69\xb2\xf4\x2d\x1b\x16\x39\x51\xac\xaa\x7e\xea\x92\xa7\x48\xa8\x4f\x41\x1c\xac\xab\x3d\x23\x32\x3b\x17\x28\x19\x68\xcc\x56\xc1\xe7\x60\xd9\xc2\x47\x1f\x2b\x3d\x1c\x71\x98\x0e\x77\xd1\xaf\xc8\x74\x0b\xed\x20\xf4\x69\xff\xd7\xd2\xfb\xf5\xeb\xf4\xdc\x05\x35\x5b\x3d\x77\x14\x64\x00\xcd\x95\x31\x19\xef\xfb\x47\x69\x9a\xd9\x0c\xde\x57\xd4\xf3\xaa\xbf\x74\x5a\x6a\xce\xe9\x7d\xd5\xd4\xad\x29\xd2\x04\x24\x76\x0b\x0b\xde\x57\x39\xfa\x9b\xf3\x2a\x9e\xce\x07\xe9\x7a\x94\xf4\x9f\xa4\x5f\xc2\x73\x3b\x57\x3a\xf1\xa1\x8f\xd0\x10\x16\x50\x19\xb9\x4e\x9e\x4f\x54\xe4\x62\x77\x02\xc5\xfa\xc0\x7a\x6e\xcc\x57\x47\x8b\x95\xbf\x0a\x26\x1b\x2e\xea\x2b\x35\xc8\x14\x46\xf6\x5b\xf4\xea\x59\x40\x50\xe3\x7b\x7e\x42\x98\x0b\x94\x8c\x26\x64\x11\xe0\x07\xdf\x77\xf9\xd6\x5b\x66\x18\x61\x32\xbb\xd6\x53\x13\x46\xc0\xed\x0f\xe7\xcd\x37\xdb\x61\x4c\x25\x0a\x6a\x6f\x02\xe4\x7d\x35\xf0\x8d\x29\xae\x88\x0b\xfa\xdc\xf7\x1f\xab\xb0\xad\xd8\x5d\xad\x0f\xb4\xa7\xef\x60\x7d\x00\x80\xf2\x35\x3d\x0e\xc7\xeb\xe5\x54\x20\x6f\x62\x0d\x62\xf3\xdd\xa4\x35\x28\x9d\x9a\xea\xc9\x20\xa8\xbc\x54\x4e\x63\xcc\x5f\x3f\x80\xf9\x6c\x5c\xe0\x29\x7c\x0d\x9f\xf8\x5a\x84\x49\x7a\x79\x1c\xf5\x2c\x69\x85\x6f\xfd\x0c\xeb\x1a\xef\x81\x25\x4f\x84\x53\x67\x5a\x29\x8f\x9e\x43\x17\xa2\xcf\xb2\x8b\x77\x10\xdf\x0d\xde\xf0\xef\x6a\x98\xc9\xce\x8e\xc7\xa0\x9a\x3c\x4f\xc3\x88\xdc\x1a\xf5\x26\xb7\x48\x2a\xfa\xc0\x16\xeb\xe6\xb2\x3a\x5e\xa9\x38\x09\xb6\x1a\xf5\xbe\x8a\x34\xe6\x1f\x47\x1d\x89\x7f\x90\x47\x02\x30\x32\x09\x5e\xc8\x73\xaa\xcb\x1c\xa6\xe3\x24\x8c\xe2\x39\xc5\xbf\x70\x1f\x0b\x53\x6a\x71\x7e\xc5\x32\xcd\x42\x8d\xda\x86\xff\xc5\x57\x02\xec\x9a\xcd\x2a\xcf\x46\xeb\x81\xc5\x91\x54\xc2\xa0\x75\x0b\xbf\xa7\x6a\x62\xdd\xcc\xf4\x62\xbb\x31\xe3\x5b\x38\x3c\xf0\x2a\x33\x7d\x74\x33\x32\x1a\xa2\x38\x9d\x46\x69\x92\xa7\x19\x0b\x0a\x39\x9a\x11\xd7\x70\xbc\x58\xb6\x1b\x9e\x55\x2d\x0c\x40\xcf\x0d\x26\x14\x25\x3b\x3e\x56\xa3\x55\xcc\x51\x82\x26\x3e\x33\x6a\xd2\xaf\x88\xd5\x6b\x39\x32\xf3\xf3\x35\xa7\xb6\x66\x93\x97\x2b\x1f\xca\x60\xcc\xd2\xcb\x99\xec\xea\x28\xad\xba\xff\x91\x8c\x32\x8b\x4c\xb1\x51\x17\x02\x2b\xba\x3c\x57\xee\xf3\xa2\x83\xdf\x0f\x14\x13\xde\x53\x1d\xe5\x64\x9f\x9c\xb4\x9c\xb4\x20\x00\xa6\xb8\xa3\x87\x74\x77\x08\xae\x76\x4f\xd4\xd0\x05\x73\x66\xc0\xb9\xdf\x0b\x28\xe6\x74\xa3\xe3\x55\xc8\x28\x70\x12\x15\xd1\xcc\x74\x3c\x5c\x03\x4a\xb4\x18\x75\x9a\x45\x5a\x8c\xda\xd1\x89\x52\xc9\x7d\x7a\x36\xb6\x81\xc9\x86\x44\x6c\x57\xdd\xb5\x0c\x2a\xf9\x39\xb8\x07\x8a\xfc\x4f\xcb\xf0\x0e\x4d\xf2\x8c\x0f\x63\x8e\x7a\x30\xfe\xcf\xbf\x00\x68\x98\x8b\xfd\x5d\x21\x73\x17\x03\xa5\xf0\x65\x4c\x8e\xe3\xa2\xaa\x03\xaf\x1d\xc4\x3e\x7b\xc3\xe9\x53\x57\x4f\xce\x15\x2c\x17\x16\x9d\x7d\x56\x98\x18\x44\x19\xc8\x2d\x9e\x50\x45\x80\x67\xf6\x76\x1a\x10\xc7\xf9\x5f\x88\xb9\xf1\x87\xbd\xc2\x03\x27\x58\xe4\x77\x4b\x2d\x8c\xa2\xdb\x14\xc4\x86\x9e\x66\x88\x9d\xb0\x30\xf0\x88\xf8\xd8\xed\xb8\x35\xdb\xb7\x45\x95\xe0\xd1\x0e\xc0\x2e\xdb\x41\xd1\x2c\x1f\x4f\x6a\x0c\xcc\x49\xb1\x4b\x0b\x45\x02\x74\x03\x47\xf6\x19\x3d\x76\xd6\xa4\x56\x94\xf9\x3f\x09\x3c\xc7\x0d\x47\x7e\xfc\xe1\x29\x3b\xf8\x4a\xbb\x9b\x66\x59\xba\x2e\x41\x1f\xa7\xba\x58\x5e\x92\xf7\xfa\x5d\x3f\x1c\xc7\x2b\x69\x86\xbd\xab\x0a\xda\x8b\x0e\xf8\xf1\x0d\x45\x3e\xb9\x66\x93\x22\x5a\xb3\xa4\x8f\x44\x5f\x0e\x00\xcd\x1d\x05\xa6\xb9\xa3\x94\xc0\xc2\x71\x5c\x44\x6b\xc6\x35\x17\x11\xfc\x9c\x55\x70\x9d\xb3\x35\x96\xe5\x71\x2f\x4a\xe7\x54\xa9\xe7\x04\x82\x0f\x7c\xf1\x11\xcd\xa3\x7a\x89\x9e\x07\xff\x43\xa0\x92\xce\x0f\xa6\x5a\x09\x87\xe7\xdf\x68\xf7\xc6\x05\xea\xa2\xd2\x77\xf4\x68\xc1\x73\xcd\xb0\xf6\x81\x35\x78\x26\xa2\x08\xe0\x13\xa4\xcf\x55\xf9\x23\x1c\x67\x99\x4d\xc2\xc8\xe6\x53\x15\x4e\x78\x45\xc6\x2e\x23\x2d\xbc\xac\x86\x0b\xc2\x94\x9e\x0b\x4a\xe3\x52\xec\xa6\x1b\x91\x6a\xf7\xf6\xa2\x47\x75\x23\xa4\xba\xdd\xf3\xb4\x25\xd8\x26\x78\xa2\x7c\xac\xb2\x25\x0d\xdd\x5e\x9e\xe7\xed\x08\x98\x20\x1f\x4f\x0d\x10\xed\x5b\x02\xcd\x62\x2f\xea\x32\xa2\xc1\x51\x31\x29\x3d\xef\xed\x6b\x8e\x88\x2b\xa3\x91\x6b\x50\x20\x2f\xf8\x7e\xa0\x64\x06\xbe\xef\xaa\x7d\xe3\x51\x3f\x33\x3d\x90\x4d\xa1\xc6\x89\xa9\x53\xc7\xa7\xe1\x02\xa7\x5b\xca\xf0\x98\xa8\x78\x52\x3d\x9e\x0b\xaa\xa0\xf0\xcb\x7b\x3a\x0a\xa2\xba\x73\xe2\xcb\x48\x97\x14\xc8\xb4\x45\x7a\xac\x88\xb3\x59\xa4\xd4\x29\xb3\x1d\x16\xf4\xe1\x39\xda\x8b\x92\xbd\x34\x42\x5d\xc2\x22\x0a\x1f\x3b\x06\x2a\xd5\x81\x9c\x31\xde\x4b\x4b\x3a\xf6\x76\x7a\x5c\xe5\x1e\x2d\xb1\xf7\x6c\xf5\xfb\xd8\xce\x3f\x0c\x3c\x88\x84\x09\x4a\x71\xc5\xdf\xc3\xfd\xa2\x41\x7a\x3b\x50\xfc\xc2\x77\x15\xb1\xc9\x4e\x52\xb6\x64\x11\x65\xba\x30\x7c\xed\x4d\x25\xf6\x7d\x8f\x5a\x51\xb8\xc5\x47\x25\x91\x23\x3b\x2d\x2c\xdf\x8d\xbf\x84\x75\x8b\x60\x8b\xb9\x09\x59\xb8\x5e\xc7\xda\xd6\xae\x46\x49\x1f\x15\x3d\xb4\x34\x81\xcb\x40\x36\xc7\x5d\x19\x3e\xc1\x04\x10\xff\x95\x7b\x52\x85\xc9\x0a\x6e\xca\xc3\xce\x5f\x0f\x7c\xc4\x76\xbd\x7c\xca\x2d\x80\x55\x2c\x2d\x87\x91\x73\x40\xde\x4d\x35\x1d\x14\x25\xab\x28\x44\x0a\x87\xb2\x1f\x67\xbf\xa0\x17\xd3\x68\xc0\xa8\x1a\xf9\x37\xba\x03\x2c\xef\x2f\x14\x69\x07\x84\x1d\x84\x3f\xb4\xc6\xce\xac\x44\x7b\xc6\x59\xdf\xa6\x89\xf6\x13\x17\xf5\x88\xea\x45\x85\x42\x79\xc7\x8c\x56\x6c\x4c\xec\x97\xa8\xf2\xe2\x79\x09\x76\x9d\x5e\xb2\x10\xd6\xf8\xe9\x8e\xa8\xc8\xf7\x7a\xde\xae\x1d\x80\xc5\x8a\x2c\xbf\xb7\x84\x1f\x93\xbb\x74\x1a\x9d\x12\x46\xfd\x27\xdf\x40\x59\x0e\x65\xd6\x47\xa5\x12\xf4\x86\x03\xc7\xe2\xe1\xca\x12\x50\xc6\x1f\x22\xb2\x11\x84\xa6\xca\x40\x76\x60\xde\x1b\x0b\x6b\x13\xb1\x89\x2c\x6b\x3c\x53\xa6\xdb\xc2\x20\x10\xea\xd2\xd7\x11\xd0\xe0\x92\x99\x61\x04\x0f\xe7\xeb\xc6\x91\x80\xae\xc9\x65\xff\xc8\xf4\x36\x5d\x82\x8c\x75\x4f\xa9\x65\x2d\x1f\xa0\x82\x4b\xbf\x1f\x0b\x19\x0e\x22\x34\x56\xc3\xe1\x13\x25\xfb\xb2\x6e\x8a\x70\xd0\x4b\x19\x84\x80\x97\x7a\x15\x9e\x8f\x4f\x6a\xb2\x09\x26\x7b\x87\xbb\xa3\x08\xca\xee\x6b\x3e\x1f\xe6\x19\x81\xcd\xcd\x32\x93\xf4\x69\x40\x14\xd7\x81\x07\xf5\x49\xa0\xb8\x41\xa6\xbb\xb5\xd5\x3d\x0f\xd3\xa4\xb0\xfc\x23\xa2\x27\xa7\xe2\xb8\x0f\x14\x87\x6c\x91\xae\x27\xf9\x5c\x4b\x4d\xaf\xab\xd2\xe7\x75\xcd\xcb\xb6\x49\xe5\x23\x99\x6b\xf7\xb3\x6b\x3b\x3a\x9e\x01\x26\xb4\x31\xb3\x3f\x61\x85\xfc\x14\xad\x06\x3e\xd1\x34\xaa\x83\x28\x4c\x57\x56\xe8\xb5\x08\x54\x43\xc1\x36\x54\x8f\x38\xb3\x2b\x69\x36\xcc\x67\xab\x5c\xd7\x11\x78\x48\xa9\xb4\x8d\x81\x3b\x16\xea\x57\x75\x84\x6b\x6a\x4e\x8f\xb5\x97\x66\x3c\x76\x69\x17\x8d\x1b\x88\x9a\xa8\x37\x6e\x7b\x3a\x4a\x87\xd0\x66\x59\xd4\x8d\xed\x4c\x65\xe3\x58\xf4\x15\xc6\xd2\xc1\x4c\xf6\x79\x80\xe9\xf6\xea\xa4\xd4\xe0\x46\x59\xba\x16\x25\x8c\xa7\x50\x53\x10\x6e\x24\x42\x11\x0f\x84\x26\xa6\xd1\xf9\xca\xc7\x2e\x1e\xe2\xaa\xcb\x25\x25\x0d\xad\xc9\x9e\x88\x6b\xe7\x79\x55\xfb\x3a\x8f\x08\xc7\xe1\xf9\x9c\xda\x2b\xb3\x52\x49\x4d\x55\x25\xe6\xbb\x3b\xbe\x89\xff\x29\x76\x29\x56\xe1\x55\xcc\x03\xf1\x09\x9c\x07\x36\xf3\x17\xfa\xae\x15\x91\x15\xdb\x67\x2e\xef\x4d\x3c\x38\xfd\x2e\x15\x29\x04\x3e\x46\xfb\xb8\x06\x76\x40\x46\xfb\x99\xb2\x50\xd9\x38\x79\xba\xba\x2e\xd6\x5f\x27\x43\x24\xb3\xae\x7e\x18\xf2\xe9\x8e\x1e\x2e\xc4\x23\x75\x63\xbd\x8e\x2d\xec\x98\xd2\xef\x07\xf7\x24\x8c\xc8\xdd\xd2\x2f\xa7\x3f\x42\xed\x45\x66\x6b\xab\xfb\x63\x6d\xe8\xa9\xb8\x69\x79\x7e\xb9\xdd\x8b\xf2\x30\x1a\xc5\xc2\xf9\x20\x4c\x7c\xbe\x93\x78\x56\xe1\x4c\x7b\x36\x8f\xfa\x89\xcd\xe6\xb4\xf4\x0f\x3d\x04\x3e\x51\x55\xc2\x13\x0a\x03\xf8\xa9\x4e\xf7\x7f\xd4\x24\xb4\x6d\xc2\x6f\x8f\xa3\xcc\x82\xef\x0b\x05\xa5\x4d\xcd\x6b\x74\xaf\xe6\x6e\x9a\x18\x5b\x4c\x18\xca\x4d\xe8\x3a\x1e\x1f\xab\xe2\x4e\x66\x47\x96\xe4\x38\xdf\xd8\x82\x82\xd5\xd6\xa9\xa6\x36\xc8\xc0\xc4\x85\x26\x49\x38\xa1\xe0\x19\x27\xdc\x68\x69\x3e\x8a\x56\x79\xfe\x0f\xe1\xc8\x79\x1d\x9b\x68\x19\x42\x61\x09\xa4\xd0\xd1\x01\xb9\xd5\xea\x9b\x2e\xaa\x2e\x0a\xc1\xc9\xe1\xf9\x2a\x13\xa4\xc2\x4b\xf0\xa4\xf4\x21\x11\xb7\x63\xbd\x7e\x8c\x15\xc3\x27\xae\x68\xd4\xcd\xc6\xf9\xa0\x6b\x42\x19\x34\x97\xf6\x57\x4b\x09\xb1\xd4\x25\x70\x86\x2d\x1f\xb4\x71\xb9\x54\xfc\xf6\x4b\xce\x02\x85\x36\x29\x32\x13\x47\xef\xb0\x2e\x88\x74\x44\xe8\xce\x11\xd0\x63\x30\x0b\x81\xeb\xe9\xb2\xd6\xe6\x2d\x2c\x51\x25\x56\x3b\x92\x77\x77\xa0\x91\xbb\xd3\x59\x1b\xf3\x0c\xd5\xf8\x08\xbf\x2e\x55\x3b\xf3\x6b\x27\x97\xdb\x4b\xfb\x43\xa3\x91\xac\x27\x14\xb0\xe7\x56\x50\xa3\x5a\x6d\x80\x7e\xe5\xa3\x8c\x99\x4c\x10\x82\x9c\x55\x72\xf8\x67\x55\xbb\x76\xdd\x9a\x55\x9b\xcc\xb4\x16\x16\x3c\x72\xd1\xa9\x2c\x62\x72\x0d\xd1\xdc\xf1\x1a\x6e\xd8\xb0\x74\x11\x87\xe3\x1d\x9f\x6b\xed\x9c\x02\xe6\x10\x4c\x20\x5f\x95\x9a\x9d\x46\x9f\xb2\x12\x63\xa9\xd5\xec\x1a\xb4\x06\xdb\x7d\x6b\xa0\xa1\xc1\x63\x46\xf4\x61\xd6\x95\x81\xb5\x12\x74\x8b\xf4\x10\x7b\xd9\xb8\x3f\xe7\x8b\x3d\x75\x71\x9b\x0f\x95\x82\x2a\xe6\xa7\x91\x3e\xb0\x03\x40\x01\xe1\xea\x94\x03\x7f\x7d\xf1\x50\x3b\x8d\x89\x74\xc1\xcb\xb6\x9f\xd0\xca\xeb\x27\x54\x6f\x28\x34\x49\x68\xb3\x5d\x8a\x32\x95\xb5\x24\x35\x6d\xbf\xfb\x87\xca\x43\xc0\xfc\x5e\xab\xf5\xf8\x3c\x9d\xfd\xb5\x06\xec\xec\x81\x76\x61\x63\x3b\x1a\xa4\x6c\x2e\x1a\x25\x89\x74\x9d\xac\x9f\x26\xa4\xbd\x88\xb9\xd1\x63\x41\xeb\xd0\x6b\x6c\x84\x77\xa9\x31\x87\x19\x3d\xc8\x7f\x41\x37\xae\x2f\x53\x69\x5c\x8a\x35\x4d\x82\x9f\xb9\x89\x4d\x06\xea\x77\x7c\x19\x07\xbc\x08\x2c\x7f\x57\xa1\x59\x4e\x36\xd8\x89\xa5\xb6\xe9\xf5\x64\x7f\x20\x10\xfc\x92\x9e\x07\x1f\x97\x8a\x8e\xfd\x5b\x16\x2a\xd1\x4c\xf1\x81\x9b\x16\xbe\x8f\xed\xbd\xb2\x7d\x4b\x80\x19\x57\xdb\x5d\xc6\x9c\x9d\x90\x5f\xf5\x63\x02\x74\xf7\x80\x3c\x10\x08\x89\x5e\x98\xce\x62\xf9\xd8\x4b\x42\x65\xa6\x3b\xe7\x4b\xe9\x33\x13\x9f\xad\x7d\xae\x5b\x54\x0f\xa9\x51\x83\xa7\xf7\x5b\xa5\x92\xa4\xbc\xe6\xf4\x3b\xb9\xbc\xbd\x9b\xfe\x51\x64\x45\x7d\x5a\x7e\x0d\x49\x2d\xcb\x6d\x95\x1a\xe2\x53\x7a\x7f\x71\x5e\x69\xff\x7d\xfe\xc7\x3b\xca\xf9\x7c\xad\x48\x01\xd7\xab\x90\x70\xc6\xeb\x89\x9d\x54\x90\xab\x93\xaa\xc1\x7a\xa3\x01\x27\xda\x5e\x37\x91\x1f\xc3\x63\x89\x05\x3d\xc2\xdd\xa8\xbf\x36\x20\x56\xfc\x0d\xe5\x9e\xaf\x28\xf7\x3c\x9d\x8b\x23\x62\x5e\x93\x68\x1f\xe6\x6e\x06\xf1\x05\x9f\x4c\x51\x9d\xef\xdf\x0f\xe0\xa7\x70\xdd\x39\x5d\x25\x25\x0c\xa9\x77\x44\x11\x6f\xbc\x50\xbd\x15\x44\xaa\x27\xd4\xa0\x03\x9a\x1d\x42\xb8\x4a\xf7\x26\xc0\x95\x96\x53\x02\xbc\xe1\x91\xfa\xbb\xbf\x39\xa1\xa8\x0f\x81\xc2\x3d\x64\x4d\x02\x55\xa2\x77\x80\xa4\xe9\x29\x02\x11\x30\x11\x23\x5e\x21\xd6\xca\x5d\xbc\x5c\x18\xe9\x27\x90\x82\x31\xb5\x76\xa0\xe4\x53\x8e\xa3\x25\x80\x74\x67\x07\x2a\xb2\x48\x1f\xa0\xaf\x8c\xf6\xcc\x4d\xea\xa5\x4a\x62\xa5\xb0\xae\xc3\x51\x9c\x6e\x58\x9b\x3f\xa9\xc6\x7f\x3e\x09\x94\x11\xbd\xa1\x56\x69\x8b\xaa\xcf\xd8\xc8\xb7\x68\xed\xcb\xc8\xab\x62\x78\x01\xb2\x40\xa6\x8a\x7c\xbb\xeb\x96\x6e\x4a\x69\xd7\x99\x8f\xac\x71\x4c\x51\x82\xdf\x50\x58\x8e\x1a\xa7\x54\x6e\x05\xd0\xaf\xeb\xd1\x7c\xac\x32\x74\x93\x14\x83\xcc\xbc\xdd\xd2\x9d\x7e\xc5\x13\x39\xa9\xc2\x8d\x51\x66\x57\xfe\x62\x7b\xed\xe7\x28\xd0\x63\xe9\x73\xc4\xdd\x48\xae\x77\x68\xd4\x0a\x17\x90\x98\xbd\x5b\x31\x79\xbf\x04\x38\x8d\x14\xa9\x3c\x57\xcf\x73\x8a\x44\xfd\x36\xb8\x12\x6b\x38\x1b\x44\x17\xcf\x21\x22\x47\xa4\xff\x67\x27\xbe\x44\xf6\x09\xe5\x71\x78\xe3\x1f\xc0\x3c\xb8\xd5\xeb\xdc\xc3\x59\x0a\x90\xe1\x1e\x76\x77\x74\xba\xfa\xf4\x84\x96\x82\xe3\xeb\xac\x5e\x2f\xae\xeb\x87\xf0\x2f\x0e\xbc\xe1\x00\xd1\x3b\x49\xeb\x4a\x48\xd0\x69\xc1\xba\x21\x08\x57\x94\xbf\xe0\x06\xa8\x88\xc3\x3f\x8b\xf2\x34\x41\x60\x82\xdf\x3d\xa6\x20\x14\x00\xcb\x0b\x7f\xef\xb6\x06\xe1\x9b\x6f\xb6\xf7\xef\xdf\xdb\xd2\x9a\x1c\xd5\xd3\xe6\x99\x1e\x4a\x47\x90\x4e\xf1\x16\x47\x8d\xe4\x11\x09\xca\x61\xb5\x33\xbd\x1f\xbc\x17\x0f\xb0\xe1\x87\x7f\x40\xcb\x1d\x09\x17\xd3\x54\xf2\x09\xb5\x1a\xd0\xcf\x46\x1d\xc5\xa5\x55\xd5\x5b\xc0\x66\x39\x45\x4b\x1e\x35\x01\xa1\x76\xc7\xeb\x45\x1a\x8b\xe0\xec\x0e\x76\x09\xbe\x6b\x37\x49\xed\xe0\x4a\xde\x6b\x82\x0c\xf6\x09\x3c\xe4\x6c\xa4\xeb\x52\xbb\x4e\xff\x39\x95\xec\x87\x69\xc6\xa8\x5e\x86\x10\x05\x35\xd5\x15\x5f\x52\x1e\x27\xeb\x69\x56\x0c\x20\x4e\x89\xf5\x04\x18\x14\x1f\x37\xcd\xcf\xb3\xa0\x14\xbe\x9f\x07\xc6\xb0\x35\x65\x7a\xac\xc6\x8d\x6f\xb8\xa8\xe1\x54\x62\x3c\x27\xe6\xcd\xa9\x91\xec\x37\xdf\x6c\x8f\xf2\x8d\x38\x8e\xc6\x43\x05\xd5\x3e\x17\x28\xa8\xf6\x74\x7c\xba\x6f\xa9\x6d\x86\x51\x66\x34\x8a\x7f\xa2\x29\xc3\x27\x2e\x0c\x8e\x23\x23\x28\x45\x56\xfe\xa6\xbb\x15\x15\xf0\xa7\xdd\x13\xec\x23\x18\x70\x03\x9c\x7e\x7e\x65\xd3\x39\x57\x13\x65\x45\xc4\xbc\x30\x88\x41\xde\x55\x95\xdd\x77\x5d\x65\xa2\xca\x33\x56\x22\x2e\xc0\x4b\x41\xf7\x6c\xa0\x86\x42\xce\x36\xcd\x91\xe4\xa9\xd7\x6c\x60\x16\x32\xca\x1d\x84\x91\xac\x21\x59\x8c\x4d\xd2\x1b\x9a\x6c\xb5\xe5\xfb\xa1\xef\x69\x60\xef\xf4\xca\x7a\x85\xfa\x03\xa3\x28\x23\x12\x39\xcf\x6e\xa0\x71\xc2\xd3\xe4\x64\x4b\x4b\x74\x53\x71\xda\xcf\x15\x2b\xce\x45\xcd\x34\x73\xd1\xb5\x0d\xc3\xcc\x9a\x61\x54\x85\xb9\x95\x3d\x41\x4b\xef\x86\xea\x15\xde\xf0\x62\x52\x26\x2b\x12\x1e\x6a\x15\x3a\x1e\x35\xc1\x71\xbb\x81\x68\xb3\x6b\x57\xd2\xcc\x52\xc2\x21\xd4\xb3\xde\x1e\x5d\xa5\x0d\x8a\xb5\xb6\xa5\x21\xb5\x26\x33\x49\x1a\x31\x21\x22\xbb\x41\x35\x32\x7f\x3c\x78\x41\xa9\x55\x76\xf3\xc2\x48\x65\xa7\x49\x10\xf2\xcf\x3f\x8e\x69\x64\x34\xca\xd2\x51\x06\x90\x80\x0c\x4a\xa0\x86\xca\xc4\x7f\x7c\xd2\x10\x10\x1d\x6c\xf7\x8d\xcf\xec\x44\x4d\x4f\x81\xb0\xce\x2b\xca\x87\x7e\x1a\xf7\xf2\x61\x54\x00\x64\x2e\x8d\x7e\x2f\xc0\x72\xb6\x96\xca\xae\x98\xec\xe9\xca\x3c\xc1\x0b\xff\x33\x45\xee\xc8\xee\xca\x51\x50\x7a\xdc\xcd\x35\xea\x9d\xa1\x9d\x8c\x6f\x86\xf1\x67\x5c\x18\x4f\x0f\x07\x50\x37\x14\xe8\xa9\xbf\x98\xa7\x27\x8a\x2f\x9d\x47\xe7\x85\xae\xd9\x47\xe0\x49\xba\x66\x1e\x5f\x3e\xfb\xc6\xb6\xd9\x87\xe5\x03\x7f\xae\x7a\x4e\x04\x81\xd8\x82\x2c\xd1\xd6\xd5\x52\x75\xcd\x55\x68\x0d\x58\xa9\x90\xe1\x69\x3d\x95\x6c\x48\x25\x38\xf7\x80\x5f\xf7\x27\xf5\x5a\x6e\x6c\x9f\x69\x39\x27\xcd\xfc\x81\x9a\x59\x4b\xbe\x9c\x6e\x14\x08\xab\xdf\xc3\x0e\xe7\x68\x58\x25\xa8\xb7\x28\xeb\x81\x13\x78\x57\x97\x61\x21\x61\x83\x42\xd9\x5d\x20\x08\x58\x04\x3c\xf0\x6d\xa1\x3d\x13\xd5\x73\x41\x29\x14\x76\xfd\xfb\xc1\x73\x0a\x92\x95\x14\x83\xfc\x09\xfa\x4b\x9e\x07\x81\x77\x64\x1f\x4b\xef\x10\x40\xc0\xab\x4a\x61\xe7\x42\x9d\x6f\xb1\xba\x00\x04\x96\xd0\xbe\x72\x8d\x54\xe7\xa0\x77\x4f\xb6\xaf\xdd\x43\xaf\xb5\x33\x5b\x44\x99\x9d\x96\x86\xc1\x32\xa1\xcc\x70\xeb\xb6\xcb\x76\x36\xac\xc9\x76\xf9\xb1\xbb\x16\x5a\xf3\x0c\x16\xe2\x3c\xdb\xb1\x5a\x2c\xcf\xd7\xd0\x5f\x54\x98\xfe\xcf\x7f\xae\x53\xeb\x81\xf8\x82\x7d\xd7\x00\xc0\x8d\x7d\xae\xa0\x6e\x0e\xf7\xa6\xc0\x22\xeb\xa6\x0f\xff\xda\x72\xac\x2c\xdc\x35\xe1\x13\x5d\xfe\x8e\xcd\x98\xb3\x08\x11\x2c\xa7\xab\x96\x69\xe5\xc6\x61\x56\x8a\x76\x78\xb4\xc1\x09\x1c\xbb\x69\xe2\x69\xc1\x09\x5a\xe2\x90\xec\x80\x65\xe6\x46\x24\x7d\x48\x9a\x92\x0e\x5b\x9c\x76\x53\x1e\x5f\xd4\xe2\x5c\xa8\xe8\xff\x7a\xa9\xf8\x9e\xef\xd4\x08\xda\xb6\x57\x47\x5e\x69\xaf\x44\x4e\xe2\x58\x34\xd5\xd4\xf4\xde\xe5\xa9\x54\x98\x6a\x94\x2c\xc7\x44\x3a\x9c\x8a\x74\x5b\xd1\x96\x82\xf2\x41\xee\x55\x85\x80\xc3\x71\x12\xe5\x45\x3e\xab\x46\x1a\xee\x68\xfe\x8b\xff\xf3\xe5\x8e\x12\x46\x7b\x72\xa2\x67\xee\x74\x6f\x3c\x59\xb3\x09\x46\xcc\x84\x44\x15\x78\x0a\x3e\x9e\x5a\xa8\x4b\x4b\xed\xc2\xc4\x44\x4c\xa9\x36\xed\x95\xda\xd8\x94\xa7\x34\xb3\x6f\x9b\x7e\xdf\x56\xc9\x3e\xfe\x1a\x99\x10\x0f\xac\xf3\x89\x9a\x0a\xc9\xd3\x78\x4d\x20\x0c\x88\x8a\x6e\x28\x7e\xb5\x1b\x6a\x8d\x56\xd9\x25\x98\x41\x5d\xf5\xf3\x13\x8a\x31\x25\x95\x52\x2c\xda\x59\x8c\xd5\xd3\xa8\xb3\x38\x05\x62\x59\x6c\x8f\xe2\x71\x3e\xe7\xbb\xd3\x67\x95\x50\x1e\x20\xcf\x4c\xcc\x4a\xe4\x4b\xd8\x63\x1f\xd7\x58\xdc\x3d\x6a\x21\x1e\x77\xb3\x28\x34\x49\x01\x49\x4e\xc4\xb9\xc8\xb2\x60\x52\x40\x89\x86\xa2\x1b\x47\xb6\x7c\x52\x2a\xe5\xee\x8b\x53\x97\x49\xf6\x22\x86\x32\xad\x63\x18\xf2\x6c\x43\x0d\xe5\xbb\x03\x6d\x13\xf5\x90\x31\xa0\x43\x73\xa9\x06\x69\x57\x90\xbb\xab\x0d\x74\x30\x6f\xb4\x8b\x2c\x1d\x77\x63\x2e\xda\x20\x51\xbb\x11\x28\x68\xca\xb4\x6c\xc6\xfe\xfd\x6d\x3b\x4c\x95\x22\x14\x0f\x99\xa8\x48\x59\x2b\xee\x15\xf9\x46\x4b\x0f\x19\x91\x81\x95\x81\xa3\xe9\xa9\xa7\xb6\x19\x5a\x7a\xb6\x2d\x5f\x98\xe1\x49\x4a\x3e\x69\x80\x15\x2f\x92\x7a\x1a\x2f\xdd\xa6\x09\xfc\x3d\x7e\xa2\x72\xcd\xce\xaa\xfe\x2d\xe6\x67\x1c\x35\xc4\x3e\xb1\x25\xc7\xe9\x05\xc2\xa7\xfd\x58\x51\x00\x15\x03\x9b\x66\xd5\x0e\x6d\xa9\x31\x32\x46\xfc\xf3\xc9\xd4\xde\x5a\x9e\x6f\x87\x69\x1c\xdb\xb0\x68\x79\xa0\xc4\x29\x44\x14\xc2\xd9\xf4\x9c\xaf\x9a\x47\x79\xb4\x06\xf8\xaa\x43\x20\x3b\x06\xa6\x73\x4d\x7c\x05\xdf\xfa\x8f\xff\xd3\x5f\xa0\xbd\x25\xac\x31\x95\x7f\xe7\xe3\xa9\x19\x7b\x12\x22\x4a\x8a\xcc\x84\xbe\xc4\x84\xf5\xb1\xa9\xf0\xe5\x9b\x0d\xf4\x50\xaf\xb6\x8b\xcc\xf4\xdc\x87\xa4\x2d\x5b\x7d\x48\xba\xb2\x6e\x70\xd5\x66\x79\xb5\x3c\x62\x9a\xbc\x58\xd4\xa5\xd3\x83\x9e\x42\xd3\x15\xc7\x9e\x20\xd3\x24\x02\x32\x33\x4b\x4a\x6f\xd3\x97\x20\x06\xb6\xd7\xa7\xe9\x78\x87\xa0\x06\x2a\x99\x8f\x95\xef\x1a\x86\x3d\x9b\x0d\x85\xf1\x13\x43\x28\x17\xd5\x74\xca\x45\x85\x77\x18\x98\x78\x65\x97\x8f\x5f\x77\x74\xbc\x3b\xb8\x81\x08\xb3\x86\xba\xe3\x13\xda\x93\x28\x19\x7c\x8a\xeb\xc5\xde\xfb\xb2\x01\x54\x7b\x80\x66\xd6\x6c\xdc\xf2\x9a\xc8\xac\xad\x24\x95\x39\x47\x27\x3f\x34\x71\x6c\xf3\x62\x86\x2a\x28\x28\xf5\xcd\x75\x7c\x8a\x0c\x44\x31\xd2\xfb\xf3\xca\xda\x67\x76\x64\x31\xa3\xe0\xa9\x83\xfe\x20\xf0\x0b\xe2\x0f\x1a\xa5\x2d\xd2\x7c\x68\x0b\x9e\xcc\xc5\xad\xdc\x50\x43\xd9\x37\x9a\x68\xd7\xd6\xd3\x4c\xa4\x98\x58\x7b\x00\x45\x77\x11\x22\xd8\xfe\x33\xcb\xf3\xcb\xed\x95\x34\x1c\xe7\x75\x49\x5c\x8c\x9f\xf2\x71\xf0\xb2\x22\x5d\x4a\xa2\x91\x63\x51\x77\x94\x56\x77\x15\xa5\xd5\xdd\x72\xbb\x20\xc9\x2b\xed\x74\x65\x65\xb7\x12\xae\xba\x48\x24\xdb\x4e\x6c\xb5\x5a\x02\x4e\x71\x52\x9c\xca\xdc\x9f\xa6\x62\x1e\x62\xe3\x3d\x93\x9a\x70\x5b\x15\xf3\x31\x2f\xd3\xd4\xbc\xd8\x2b\xed\x78\x9c\x0f\xc8\xa9\xcb\x24\x5f\xf5\x56\x79\x4e\x94\x6e\x4b\x14\x10\x7d\x7e\xf5\xd6\xb8\x17\x85\x11\xdb\x4a\x94\x34\x7e\x97\x9e\x34\x1f\xd7\x07\x48\xfa\x0c\xb4\x74\x12\x0e\x55\x9a\x88\x98\xeb\x16\xfa\xd3\x68\x19\x7d\xe6\xc7\x5a\xa3\xd8\x0d\x02\x81\xb8\xe2\x9a\x02\x15\x80\xa8\x13\xed\x9c\x69\xd3\x44\xa4\x04\xd1\x9a\x4d\x58\xe6\x96\x9b\xea\x88\xe8\xa5\xc3\xee\x89\x29\x73\x5b\x90\x7e\x28\xed\xe0\x0f\xf7\x12\x62\x56\x0c\x8d\x1f\x76\xfb\xeb\xe0\x3c\x17\x8e\x7c\x8f\x89\xfd\x5a\x45\x78\x1f\xc2\x35\x21\x3d\xba\x13\xa8\xb1\xf2\x47\xaa\x42\x39\x34\x19\xcd\xf6\x22\x02\x12\xe8\x34\x5d\xaa\x90\x97\x28\x96\xb4\x2c\x0a\x6d\x6f\x57\x75\x51\xe8\x15\x70\x74\xeb\xc8\xf8\xdd\x74\x29\x9a\xce\xa8\x2f\x61\x34\x1c\xb5\xfd\xd3\x0a\x75\x7d\x52\x59\x7d\x36\xdf\xdc\x77\xd6\xac\x5d\x35\xdd\x79\x11\x57\x52\xb9\x75\x9a\xe7\x51\x97\x29\x48\x05\x97\xe8\x53\xb1\x2d\xca\x30\xf0\x70\x2e\x2b\x32\x34\x64\x51\xfc\xdf\x55\x43\xb1\xb2\x0f\x1b\xf9\xac\xd2\x5a\xfd\x54\xb1\xf5\xa2\x41\xca\xff\xbd\x54\x54\x72\x9b\x9a\xc5\x27\x5d\x37\x59\xef\x09\x55\x97\x3d\x1e\x78\x36\x90\xeb\x4a\xb1\xe0\x5d\x15\xfc\x00\xff\xc6\xc3\x37\x74\xd1\x70\xf4\xdc\x75\x83\xcd\x78\x10\xa8\x70\xf3\x66\x9d\x8e\x7d\x88\xa2\x9a\x68\x51\xf9\xd6\xd2\xdf\x6f\x1c\x5a\x1f\xc5\xd6\x38\xab\x81\x05\xff\xec\xc4\xf7\x4b\x9f\xed\x34\xc4\xdd\xfd\x41\x9a\x17\xdd\x71\xee\x25\xb2\x65\x0e\xc9\x17\xaa\xaf\x2b\x42\x95\xa3\xe5\x0b\xf5\x2c\xfa\x95\xf6\xbe\xa5\x67\x3d\xd9\x03\x17\x00\x44\x2a\x88\xb6\x84\xd0\xbb\xd0\x5d\x63\xdb\x5f\x52\x65\x95\x9b\x7a\x14\x79\x67\x4d\xdf\x74\xb3\x54\xeb\xfd\x1e\x95\x5d\xe1\xd2\xb7\xd4\x3a\x7a\x80\xe8\x10\xa6\x91\xa7\x13\x50\xb4\x3b\x10\x78\x68\xcb\xdf\x29\x7d\xef\xe5\xbb\xc1\x53\xde\x43\xa2\x07\x8c\x1c\x15\x18\x5a\xf8\x5a\xd6\x7c\x15\x4e\x83\x86\x80\x6e\x14\x85\xab\x8a\xfa\xd1\x89\x6d\x2e\xf9\xe9\x31\x8f\x62\x5a\x37\xf1\x6a\x3a\x46\xe7\x8e\x29\x53\xe9\xea\x84\x3e\xb5\x61\xb0\xc4\x24\x76\x18\x19\x36\x6d\x9a\x92\xc1\x69\xdc\x3a\xda\xb5\xf7\xd5\xf6\xe9\x45\xf9\x68\x5c\xd8\x1e\x45\xd9\x28\xb7\x9f\xd1\x54\x5f\x27\x4b\xcd\x02\xc6\x9a\xd1\x58\x57\xff\x43\x6d\x5b\xfb\x16\xcd\xd0\x66\xe1\xa0\x8a\xdc\x69\x2b\xbb\x54\x7a\x9f\x54\xb3\x6e\x2b\xb2\xb9\x4d\xcf\x6e\x36\x8c\xfa\x50\x41\x9d\xf1\xad\xe0\xaf\x15\x72\x84\xeb\x38\x32\xc2\xd7\x84\xa1\x1e\xa6\x79\x31\x4b\x28\x3e\xac\x8f\xf7\x01\x89\xc1\x5b\x79\x14\xa8\x6a\xd3\x59\x8a\xe0\x24\x29\x7d\xb6\x1e\x02\x69\x95\x6c\x36\x70\x7c\xd2\x10\xb3\xb5\x07\x26\xeb\x85\x69\x66\x67\x7d\x52\xf0\x10\x3f\x05\x18\x10\x70\x60\xf0\x96\x1f\xc0\xd9\x08\x9e\xc8\xbf\x86\xbe\x19\x76\xa9\x72\xe0\x9d\xdd\xcf\xe0\x59\x65\xca\xa4\x69\x0f\xf7\x6d\xe2\x94\x2b\x6b\x22\xb6\xd2\x76\xdb\xbe\x0e\x29\xc5\x5f\x8d\x92\x95\x34\x5e\xc5\x4a\xc1\x75\x5d\xad\x49\x8d\x7b\x90\xd4\xcf\x6a\x9e\xd3\x8e\xbe\xd5\xaa\x0d\x38\xd0\x6f\x89\x86\xfe\xf6\x30\x98\x12\x2d\x9a\x30\x2d\xa4\x99\x09\x8f\x8e\x06\x1d\x1f\xab\xd6\x5e\x61\xb3\x8c\x22\x7f\x3c\x7f\x80\x00\x01\x0c\x92\x93\xc0\x33\x73\xbf\x65\x86\x96\x0b\x4e\x28\x13\x7d\x14\x28\xf0\x3d\xd8\xc8\x64\x6c\x7a\x5a\xf5\x04\x8e\xf7\x6b\xba\x12\x79\x72\xd5\x23\x40\xb3\xef\x86\xf2\xe8\xa7\xa7\xe6\x56\x17\x0f\xb5\xe3\xa8\x18\xa4\x45\x16\x8d\x84\x12\x91\xa1\x2c\xc0\xba\x09\xae\xa5\xc6\xe5\x13\x46\xb9\x25\xb5\x18\x11\xa9\xf6\x18\x10\xfc\x1c\x82\x89\x8f\x9a\xf8\xe0\xd3\x6c\x34\xe0\x74\x4d\xe4\x95\xfc\x84\xd1\x99\x52\x4f\x30\x8e\x93\x1e\xb4\x8a\xd1\x9f\x43\xd3\x13\x2e\x99\xe9\x3d\xdc\xa8\x4a\xf5\xb4\xdc\x3c\xcb\x82\x18\x4e\xf0\x45\x22\xdf\xbe\xad\x28\xc1\x07\x26\xe9\xc5\x76\x77\x75\x07\x48\xc0\x1f\x52\x1c\x87\xb2\x1c\x90\x36\x58\xd6\xd0\xe4\xaa\xf1\xe3\xab\x86\xe4\x92\xa3\x8f\xad\x5e\x10\xec\xf3\xb1\xd2\xd3\xbe\xac\xa4\x59\x37\xea\xf5\xa4\x96\x01\xd3\xfc\xdf\xd0\xd7\xf3\x71\xc3\xce\x7f\xb5\xbd\x3e\x30\xc5\x4c\xeb\x75\x51\x59\xfc\xbf\x51\x59\x45\x41\xe0\x34\xe5\xc3\xf0\x11\x27\xd4\x5e\x5f\x4f\x87\x26\xc1\x0a\x02\x68\xee\x43\x8c\xb4\x09\x57\xa9\x2f\xfc\x9c\x81\x6b\x92\x09\x53\x5a\x4e\xae\xd2\x7b\x78\x9e\x3d\xf5\x16\x2a\xa8\x6c\x60\xd4\x83\xbf\xaf\xe2\x1c\x1b\xa6\x49\x3a\x8c\xf2\x82\x20\x26\xe8\x46\x3f\x50\x48\xf1\x9a\x58\xeb\x8e\xce\x34\x66\xa6\xdd\x4b\xd7\x93\x3c\x7a\x47\x9e\x90\x00\xcc\x5b\x4a\x72\xc4\x57\x9c\xdf\x1a\xc7\x1b\xb3\x1a\xc9\xd7\x52\x93\xaf\x4a\xbe\x82\x3d\xa1\x10\xd4\x36\x55\xe9\xe2\x98\x13\x13\x69\x4b\x79\xf1\x8a\xcd\x46\x6c\x0f\xb7\xea\x33\xfe\x18\xc2\x9f\x73\x78\x7a\x7c\xd2\x34\x29\xda\xcd\xac\xe9\x15\x03\xc5\x4e\xfa\xdb\x8a\x9e\xfd\xb7\xcb\x97\x54\x8d\x2c\x8c\xc7\x55\x2a\x1f\x33\xf7\x0e\x1e\x27\xb0\x62\x7c\xdc\x20\x81\xd9\x0e\x07\x91\x05\x42\x18\x95\xe7\xcf\x95\xea\xd2\xe7\x0d\xcb\xab\x9d\x17\xd1\xca\x8a\xe2\xe5\xbe\x4a\x8b\x57\xda\x6e\x3e\xde\xb9\xa9\x86\x89\xd3\xf5\xc4\x66\xf9\x2e\x7a\x9b\x58\x94\xd7\x11\x7a\x08\x98\xd3\x4f\xeb\x00\x70\x43\x1e\xf6\x5b\x2f\x10\x62\x01\x01\xc6\x47\x81\x47\x25\x1e\x55\xd9\x68\x62\xfa\x7d\x9a\xcb\xd1\x33\x7f\x35\xba\xaf\xc7\x4d\xee\xf7\xd3\x18\x01\x36\xea\x82\x3f\xa5\x1b\x77\xd2\x73\xd5\xa5\x62\x8d\x1f\x73\x3d\xc7\x95\x28\xe9\xdb\x8c\xc3\x0a\xec\xc0\x37\xa7\x99\x9e\xa4\x40\xe8\x31\x76\xeb\x69\x96\x00\x5a\xc8\xb2\xf2\x75\x8d\x79\xbf\x21\x7a\x69\x38\x26\xa9\xa2\x39\xff\x42\x3e\x80\xd9\xe0\xd0\x01\xa9\x12\xf2\x8d\xb3\xa5\xc2\xa0\x5d\x85\xc5\x97\x08\xc3\x47\xe0\xc3\xb4\x17\xad\x70\x4d\x0c\x19\xcf\x45\x45\x2d\xa3\xc9\x3d\x89\x61\x3b\x4a\x33\x8c\x74\x29\xe1\x8c\x83\xb5\x59\x6c\xe4\x91\xb7\x55\x68\x7b\x02\x37\x2e\x53\xd6\xde\x8b\xf5\x33\xd3\x1b\x03\xa3\x75\x78\xde\x73\x60\xec\x5b\x72\xfc\xa3\xcf\xb8\xde\xf0\xb7\xc7\x51\x6f\x17\x3d\x24\xe4\x00\xef\xd1\xba\x82\xb5\x3c\x0e\x9b\x23\x34\x31\x74\x49\x70\xca\x83\xd2\x23\x70\xef\xa8\x61\xbc\x8f\x1a\xfb\x7a\xf1\x38\x5c\x95\x30\x1f\x56\xfd\x3d\x3c\x5d\x3e\x51\xf5\xde\xac\x9f\x3e\x51\x7d\x35\x7e\x66\xd7\x44\xcd\xf0\x6d\x91\xa7\xc4\x52\xbc\xa9\xaa\xb0\x97\x08\xf6\x80\x12\xdb\xbf\xd0\x09\xd1\x43\x18\x7b\xdc\xd7\x29\x0d\x16\xbb\xa1\xe2\xdc\x71\x12\xa7\xe1\xaa\x66\x49\xbb\xa4\x4c\xfd\xa5\xed\x04\x64\xcb\xf3\xcb\xed\x43\xaf\xcd\xd6\x66\xa1\x96\xc4\xb4\xff\x11\x19\x24\x36\xf9\xa5\x9f\xd0\xfa\x58\xed\x9c\xbc\x30\x90\xb5\x55\x39\x15\x97\xb5\x65\xeb\x08\xbb\x50\x3f\x19\x51\x43\x89\x21\x12\x6a\x82\x89\x53\x10\xc4\xe2\x57\x5d\xd7\x3d\x4b\xc3\x81\xcd\x1d\x61\xbb\x74\xa5\x35\x20\x4b\x58\x76\xf3\x81\xc9\x46\xf9\x20\x4d\x25\x7c\x60\xb5\x0c\x9d\x76\xdf\x99\x0a\xde\x16\x16\xda\x3d\x3b\xb4\x26\x91\xae\x07\xfc\x2d\x67\x34\xa8\xf7\x7e\xaa\x24\x0b\x77\x74\x9a\x48\x5c\xc3\x81\x91\x32\x2e\x27\xd3\xaa\x35\x7e\x45\xcd\x47\xc4\x69\xd2\xb7\x22\x9c\x23\x4d\x45\x8a\xa7\x05\x6f\xb7\x3d\x24\x7d\x7d\xf1\x50\x3b\xa2\xe6\x3e\x77\x9d\x9c\xf7\xf6\x9e\x7c\x2a\x9a\xaa\x3c\x05\xed\xc2\xb5\xc8\xae\x0b\x64\x81\x71\xf2\xd8\xdf\x02\x9a\xf7\xed\xb0\x7e\x66\x6d\xb2\x5b\x83\x7b\xab\xfd\x05\x3b\xf6\xb3\xb2\xf5\x6b\x6e\xaa\x49\xf5\x37\x8f\xd2\xde\xe2\xbf\xd7\xaf\xfc\xa2\x26\x11\xbf\xa8\x8b\x1d\x66\x83\x72\xb0\xe5\x79\xde\xe6\xd7\x15\x47\xc3\xf5\xa9\x80\x5c\x66\x32\xd7\x2c\x32\x18\x14\x8a\xd0\x5c\xa8\x75\x6f\x84\x2d\xd5\x97\x53\x41\xb9\x65\x99\x76\x0a\x61\xf8\x23\xc5\xd9\x72\xa3\xf4\x1d\x8a\x9f\xea\xa9\xb7\x26\xcc\xe1\xc1\xf6\xc0\x8c\x46\x1b\x5a\x09\x27\xa8\x91\x83\x7b\x5b\xd5\x8b\x56\x56\xa2\x70\x1c\x17\x4a\x59\xe4\x5c\x8d\x1f\xf9\x1b\x1e\x78\x97\x14\x99\x1d\x65\x36\xb1\x63\xf1\xe8\x32\x9b\x48\xef\x9a\x4f\xa6\x1e\x0b\x69\x49\xf4\xa3\x30\x32\x8c\xba\x72\x54\x16\xee\x19\x61\xa4\x80\x95\x6a\xa6\x42\x09\xcf\x3a\x13\x85\x83\x59\x8a\xeb\x50\x80\x79\xbe\x53\xbd\x5d\x37\xf4\xa1\x28\xd0\xb0\x8f\x60\x0a\x76\x4c\x54\xad\x2b\x65\x51\xbc\xfd\xfb\xb9\xe1\x7b\x8c\xee\x96\x8f\x6b\xf5\x94\x6c\x6c\xa9\x6a\x2d\xb1\x6b\xcb\xd1\x91\xfd\x2b\x20\xcd\xe0\xf3\x78\xf5\xf0\xbf\xd0\xcb\xe6\x7f\x80\xdb\xe2\x8f\x37\x70\x31\x1c\x68\xa7\x42\x80\xe0\x24\xf2\x3d\x3f\xf6\x2d\x7a\xe5\x78\x56\x3b\x3b\x1e\x7b\x91\x87\x03\xdb\x1b\xc7\xb6\x37\xeb\xfa\xd1\xbf\x73\x0e\x17\x04\x8f\xf0\x03\x8a\x48\xf1\x20\x50\xf8\x90\xa5\xe2\x94\xdf\x4c\x94\xd1\x78\xb4\x87\x04\x9e\xd3\x8c\x91\x9a\x8d\x6f\x98\x66\x45\xdf\xf4\xed\x13\x3e\x9d\x82\xbd\x40\xde\x78\xa6\x24\x28\xa1\x4c\x83\xf8\xf9\xac\x67\x89\x5b\x80\xff\x7b\xa0\xf2\x2f\xa6\x9d\x22\x6f\xfe\x4f\x5f\x60\x00\xa0\xd4\x12\x1b\x60\x68\x23\x93\xe7\xb6\x0a\x41\xb4\x92\x21\x3d\x66\x51\x17\xd1\xc3\xf0\xf9\x38\x2e\xf2\xe7\x15\x35\xd1\x47\x6a\xba\xf2\x5f\x07\x1e\x38\xf1\x45\xa0\x28\xe5\xfe\x46\xa9\x54\x35\x99\x95\x5d\xe6\xde\xe9\x6a\xe1\x03\x18\x4a\x86\xac\xfe\x61\xd0\xfa\xe5\xbf\xe6\xa5\x89\x0e\xcf\x33\x28\x02\x33\x8d\xd8\xe2\x37\xb1\x33\x04\xd4\xdc\xfa\x2b\xd2\xcd\xfa\x47\x64\x48\x60\xe7\x65\x22\x11\x66\xe5\x6a\x50\x25\x31\x82\xf4\xd9\xa3\x45\xab\x66\x14\xa9\xff\x85\xa9\x3e\x9a\x60\x5c\x9f\x71\x8d\xee\x24\x1f\xc7\x20\x78\xd6\xaa\xe3\xf0\x9b\x77\x03\x35\xb2\x70\xba\x6e\x89\x42\x6b\x7b\xd8\x22\xf8\xe7\x07\x8a\xbf\xfe\x81\x6b\xf3\xad\x47\x3d\xf0\x73\x1d\x60\x0c\xd3\xb5\x80\xe6\x74\xa5\x36\x5a\x85\x05\x30\xdc\xe7\x9a\xf4\x04\x8a\x41\x46\x14\x38\x08\x61\x81\x9b\xfd\x6d\x35\x09\xfd\xdb\x53\x1b\x86\xcc\x6b\x98\x6e\xa8\x9a\x18\xea\x5b\x7c\xac\x45\x05\xa3\x21\xfc\x8f\x14\x6d\x6b\x85\xda\x06\x60\x37\xf9\x63\x8b\x11\x0d\xbc\x87\x87\xa5\x12\x7c\xc7\x6c\x01\x9e\xfc\x55\xf7\x04\xba\xe3\xac\xcf\x8e\x54\x98\xb5\x5a\x8a\x8b\x4b\xc2\x02\x6b\xb2\xa1\xc9\xdc\xf8\x08\xd2\x12\x94\xec\x45\x7f\x54\xa9\xde\x4f\x8f\xfa\xef\xdf\xcf\xbc\x44\x80\xb3\x31\x1a\x25\xf0\xe5\x14\x4d\x21\x38\x18\x67\xd4\xd9\x45\xb9\x85\xc9\xef\x14\xdb\x51\xe3\xdd\x87\x71\x9a\xbb\x9e\x18\x9c\x04\x7a\xb6\x4e\xf9\x5b\x8d\xa0\x3d\xa3\xe4\x5d\xd3\xe1\xee\xd6\xb2\x2f\x14\xfa\xde\xcc\x0e\xc5\x22\xcb\xb8\x43\x37\xea\xb9\x2c\xdc\xa5\x77\x68\x0d\xab\x51\x6e\x27\xd3\xae\x5e\xe5\xa1\xbf\x70\x68\x97\xff\xae\x93\x8a\x14\x81\xf5\xe7\xb1\xf8\x76\x76\x3c\x00\xf6\x4c\xa9\x8d\xca\xa7\xf4\x8b\xf2\x91\x5a\x35\x2b\xef\xd2\x5a\xc2\xb6\x3f\xaf\xf5\x89\xcf\x4f\x45\xd2\xb4\xfa\x7a\x36\x97\xf9\x2d\xae\x38\xab\xf0\x73\xb3\x7c\x59\xc1\x61\x93\x95\x6a\x7f\x14\x91\x89\x91\x59\x08\xc8\x91\xae\x19\x96\xf0\x5a\x4d\x45\x59\xeb\x90\x5f\x2c\xd5\xf0\xf1\x15\x85\x11\x5f\x8b\xb2\x62\x0c\x4e\xf4\x83\x7c\xa9\x80\x11\xf2\xf1\xd4\x44\xca\x2b\xed\xcc\x86\xc6\x65\xee\x4c\x29\x45\xe6\x4a\xe8\xa5\x94\xa8\x71\x96\xae\x45\x3d\x41\x24\x35\x2d\x34\xed\x1f\x6d\xb6\x3a\xe7\x7b\x0c\xc7\xd4\x82\x3e\x56\x7a\x25\xef\xcb\x7a\xf0\x60\x8b\xf2\x59\xf1\xff\x5a\xc8\xd4\x3e\x4d\xb7\xc4\xe2\xa7\x9a\xc7\x8e\xfb\x56\x3a\x68\x60\x8a\x5f\xf0\xb3\xe1\x27\xef\xa2\xd0\x2b\xd0\x08\x7a\xe4\x7a\xd6\x0a\xe1\xcc\x8b\xe0\xd2\x71\x1a\x05\xbf\xf2\x3a\x83\x53\xfe\x2d\x2d\x12\x79\x8f\xb2\x73\x57\x6c\x56\x44\x71\xc4\xb4\x1c\x4e\x6b\xd8\x79\xd4\xb3\x6a\xb6\x34\x1d\x17\x7b\x2b\x87\x20\x5d\x40\x3f\x9f\xf3\x59\x49\x01\xb4\x74\xbc\x28\x7e\xc1\xe5\x6c\xc1\x79\xe2\x45\x7c\x4e\x25\x38\x27\x50\xfd\xba\x2b\x74\x23\x8c\x90\x4a\xb5\x1f\xa4\xdf\x4d\x63\x18\x70\x01\xbb\x27\x40\x42\xb2\x6e\x3f\xea\x50\x48\xd6\xae\xe2\xc9\xb8\xfd\xe3\xc0\x39\x4f\x76\x7c\xbe\xcd\x89\x34\x8b\xf7\x00\x7e\xce\xdf\xd5\x24\xec\xd2\xb5\x76\x85\x90\x5f\x0e\x89\xe3\xf4\x9f\x19\xfa\x2e\x70\x77\x3f\x56\xab\xf9\xfa\x47\x99\x2d\xcc\xdb\xbb\x7c\x1d\xe2\x1e\xde\xb8\xa0\x6b\xc8\xd0\xd5\x54\x0c\xa5\x21\xeb\xb9\x84\x50\xae\x85\xa3\xdc\xd9\xf1\x01\x8b\xa8\x46\xce\x78\xd9\xb8\xd3\x4a\x21\xe5\x37\x14\x4a\xf4\xa4\xc3\x01\x0f\xcd\x3b\xef\xd8\x0c\x60\x50\x5c\x3a\x73\xbf\xf3\x89\x22\x98\x31\x59\x38\x88\x0a\x1b\x16\x63\x2a\xbc\xbb\x92\xff\x25\xa5\x86\xa3\xf9\x64\x07\x36\x1e\x49\x4a\x88\x42\x05\x2e\x87\x8f\x1f\x5b\xa9\xd9\xb0\x26\x83\xf7\xd6\x9c\xe4\x58\xa2\x0f\x03\x8d\x4b\xac\x4d\x03\x0d\xec\xcf\x55\x37\x8e\x70\xf4\x2a\xde\xa4\x0b\x54\xab\x20\x11\xb6\xf7\x7b\x81\x9e\x1b\xae\xae\x1c\x0b\x64\xd6\xb3\xae\x26\xcf\x70\x70\x06\xcc\xe3\xf3\x1d\x5a\x47\x78\xf8\xac\x61\x81\xef\x7a\x71\xa2\x7a\x62\x1f\x05\x7a\xac\xa0\xb5\xb0\xe0\x84\xfa\x69\xad\x3b\x4a\xa5\x6a\x4b\xc0\x42\x40\x76\x85\x71\x83\x28\x12\xe1\xaf\xee\x05\x8a\xb4\x7e\x2f\x58\x32\xdd\x44\xba\xe2\x3e\xed\x28\x2a\xc1\xb9\x8e\x6f\x8b\x83\x6d\x0a\x7d\xf4\xe7\x27\x6a\x88\xe1\x54\xa0\x06\x63\xf6\x4c\x35\xec\x17\x16\xda\xa1\xc9\x7a\x91\x09\xa9\xd0\x00\x87\x08\x06\x46\xa7\x5b\xe0\xd0\x42\xc8\x36\x25\xed\xd8\xde\x02\x39\xb0\x7c\xa0\x3d\x4e\x7a\x36\x5b\xcf\xa2\x82\x73\x62\x99\xf1\xf0\x19\xdd\xe9\xf2\x69\xdf\x3b\x16\x19\x37\x74\xa6\x99\xcf\x83\x4f\x82\xed\x24\x65\xfb\x96\xda\x51\x96\xd9\xfe\x38\x36\x59\x54\x44\x22\x8c\xeb\x4c\x95\x37\x5b\x8a\x0b\x6d\x64\x13\x13\x57\x7f\x3c\xe7\xfb\x3c\x03\x32\x2c\xf0\x22\x97\x15\x18\xa4\x45\xe3\x3d\x88\xe3\x2e\x05\x8a\x15\xeb\xc8\x94\x87\x5c\x9e\x6f\x8f\x62\x93\x24\x3c\x89\x8c\x6a\xed\xdf\x2e\x95\x60\x30\xcf\xfb\x8b\xc9\x51\x5a\x1b\x83\x8d\x3c\x0a\xf3\x96\xa7\x23\xc3\x9a\x94\x7c\xe3\x79\xb5\xfb\x48\xab\x82\xb2\x11\x21\x7f\xf4\xbd\x13\x70\x26\xb9\xba\xdd\x3e\xa5\x0c\x58\xbd\x70\x6c\xce\x73\xba\xbb\x09\x95\xe8\x3a\x35\x08\x22\xe4\xc9\x54\x1e\x4a\x21\x40\x0d\x3a\x87\x3b\xd9\xdd\x51\xdb\x74\x1a\x9f\xbc\x3c\xdf\xee\x67\xc6\x95\xeb\x45\xa2\x99\xd6\xa3\x48\x80\x3a\x1a\xfb\x75\x93\xd9\xdd\x2e\x23\x7d\x7a\x2f\xb6\x96\x56\x20\xc4\x92\x99\xa1\xf4\x4a\xb5\xfc\x84\x18\x06\x68\x19\x74\x2d\xee\x97\x0e\xf3\xb5\xfe\xe7\xa7\x3a\x09\xfb\xf7\xb7\xf3\x22\x33\x51\x7f\x40\x25\xab\xca\x36\x30\x6f\x85\xca\xef\x2e\xa8\xa2\xcb\x30\x4a\xc6\x44\x79\xe8\x07\x1f\x34\xba\x73\x61\x81\xdd\xef\x6d\xdd\x0a\x4e\x93\xbc\xc8\xd2\xf1\xbf\x8f\xa8\xdb\x97\x82\x13\x1b\xda\x3c\xaf\x1c\x2e\x3d\x1d\x07\xda\x70\x32\xe2\x97\x9b\xd0\x8c\x2b\x76\x18\x25\x44\x38\xb0\x7f\xbf\xe3\xae\xf7\xc6\xf2\xcc\x14\xc4\xa8\x0a\x79\xc7\xd0\x69\x12\x90\xa4\x12\x37\x3f\xab\xb5\x3d\xbf\xa6\x7b\xe4\xe3\xa0\x81\x29\x78\x94\xa5\xb9\x0d\xc7\x45\x9a\x09\xfc\x08\xb7\x75\x52\xc5\x4d\xd3\xed\x94\x7d\x4b\xed\x95\xcc\xda\x5d\xba\x8e\x5e\x59\x41\x21\xac\xf1\x58\xbd\x1b\xa5\xa6\x0b\xd0\x3c\xac\xd0\xb4\x42\x8c\xf1\x62\x47\x72\xfb\xb7\xcc\xc8\x24\x36\xb7\x7b\xe8\x63\xa0\xb5\x9a\xe9\xa8\xe4\x7e\x37\x43\x26\x64\xd0\xb8\xe5\x04\xf7\xfe\x24\x11\x33\x21\x6a\x3a\x85\x38\x05\xe9\xcf\x3f\x2e\x6b\xc4\x8c\xfb\x54\x33\xe9\xf0\x7c\x4d\x6f\x1e\x11\x2b\x4b\x62\xba\xed\x56\x3d\x5b\xaf\x33\xe6\x2b\xef\x34\xd5\x45\x76\x68\xff\x7e\xde\x75\x00\xc7\x08\xb0\xbe\xfa\x29\x74\x0b\x7f\x40\x29\xdc\xd6\x55\x0c\x02\xf2\xbf\x07\xdb\x81\x6a\x8b\x87\xda\xe3\x7c\x86\x7c\x9e\xc8\xa4\x4e\xe5\x0b\xf8\x87\x9f\x36\xc9\x67\x1d\x6c\x47\x49\x1e\xe5\x28\x86\x71\x24\xa6\x79\x6a\x2e\xd4\x26\x34\xa2\x55\x43\xed\x5c\x6e\x94\x2b\x2c\xec\x0f\x35\x09\xd3\x8f\x6b\xcd\x86\x15\x82\x38\x91\x21\x68\x92\x74\x69\x14\x0c\x4d\x93\x62\x10\x6f\xcc\xa8\x09\xcc\x0b\xf4\x42\x1c\xba\xde\x81\x78\x4f\xfa\xd0\x35\xb6\xf9\x60\x94\x16\xb5\xbe\x0d\x14\x61\x24\xae\xf3\x60\xe4\x23\xb5\xca\xaa\x49\x7a\x73\x9e\xee\xe6\x9e\xf2\x75\xa0\xcc\x07\x59\x27\xb2\x3d\x61\x92\x21\xeb\x21\xe1\xf3\x33\x0a\x08\x92\x1b\x24\x1e\x58\xcc\x5c\x08\xe2\x13\x3f\x7e\x9e\xa6\xbd\xa7\xe9\xad\x69\x8e\x47\xfa\xab\x4f\xff\x62\x47\x51\x1a\xc0\x1b\x39\xdd\x64\xa7\x2f\x0f\xd1\x12\x58\xa5\x3f\x85\x69\x15\x98\xaf\xbb\xf0\x38\x80\x50\xec\x02\x95\xa5\x08\x84\xd0\xa5\x60\x4f\xec\x9a\x54\x69\x2c\xd7\x6b\xa7\x32\x64\x89\xc8\xfe\xfa\x7f\xa0\x5a\x86\x17\x4a\x2a\x32\xc9\x14\x8b\x03\x3f\x9b\x58\xa4\x55\x05\xae\xd4\x72\x4a\x98\x57\xd4\xc4\xd7\xfb\xae\xcf\xd0\x1b\x13\x94\x6a\x51\x53\x57\xbd\xe1\xe4\x06\xe8\x92\x31\x7d\x7f\x77\x2a\x56\x84\xcb\x1d\xe7\x11\xd1\x3a\xfa\x75\x14\xa8\xf5\x55\x6a\xc5\xcd\x28\x29\x4c\x94\x90\xf7\x74\x6d\x1d\x97\x3d\x72\x06\x8c\x52\xf5\x75\x3d\x68\x70\x1d\x91\x18\xbb\x74\x55\x4e\x38\xa1\xc9\x57\x1f\x90\x39\x10\xbf\xef\x23\x66\x9b\xac\x45\x59\x9a\x0c\x6d\x52\x18\x62\x90\x3d\xa0\xc9\xdc\x24\x1b\x3e\x4f\x57\x02\x83\xf5\x50\x2d\x4e\x56\x66\xe7\x3f\x6a\x1c\xb1\x37\x5d\x29\xd3\x3b\x91\xe1\x7d\x4e\x70\x38\x78\xc1\x17\xc4\x0a\x9b\x17\xc6\xcd\x5f\x38\x69\x36\xd7\x7f\xd1\x40\xa0\x22\x33\xe1\xaa\x9a\x28\x42\x01\x18\xe1\x2f\xe0\xb2\xf8\xcc\xc9\xa9\x4b\x7a\xa5\xbd\x3e\xb0\x99\x35\xf9\x8c\x27\xbf\xb8\x17\x68\xa2\x01\x3c\x68\x29\x9a\x6e\x77\xcc\x8b\x87\xda\xe9\x9a\xcd\xb2\xc8\x03\xc1\x5d\x37\x43\x31\xc2\x34\x91\xfb\x0e\xa5\xaa\xeb\x86\x84\xaa\x1f\x7a\xfc\x90\x10\xe8\x43\xdd\xcf\xb0\xca\xb6\xc2\xeb\x9f\xd7\xcc\x5a\xdf\x1e\x9b\x4c\x42\x4c\x06\x79\xaa\x26\xf6\x89\x29\xc2\xb3\xc3\xf3\xaf\x32\x1f\x67\xca\xc3\xbb\xa8\xed\xdd\x57\xa2\x50\xf7\x15\xb9\xe6\x20\xea\xf5\x2c\x71\xec\x38\x09\xde\xea\x43\xc2\xef\xa6\x58\x38\x23\x48\x91\x3a\xe4\xc5\x19\x2d\xbe\x32\xad\x5d\xb8\x7f\x7f\x7b\x68\x87\x72\x11\x2e\xca\x71\xa8\x2c\xa5\xf2\x82\xce\x3a\xb0\x8d\xa2\x37\xd2\x72\xc4\x2d\x3f\xa9\x31\x4c\x6e\x53\x8e\xad\x6e\xf7\xf5\xc5\x43\x8a\x5f\xf5\xac\xfa\xf3\xb3\x6a\xf0\x70\x24\xf4\x48\x35\x92\x29\x91\xe5\x9c\x2e\x82\x1f\xa8\x62\xaf\x34\x93\x4a\x84\x8c\xf0\xd2\xa7\x64\xb8\xf7\x19\xfd\x18\xad\x2a\x92\x5e\x50\x45\xd2\x0b\xba\x7c\x17\xe5\xf6\x69\xca\xe9\x18\xf6\x05\xe8\x33\xdc\xd9\x6d\x24\x62\x7c\x82\x72\x94\x4c\xd7\x54\x8f\x1d\x8f\xe6\xa6\x42\xfc\x3f\x00\x7b\x9e\x83\x90\xed\xdf\xcf\xe5\x84\x63\x30\xfa\x6e\x50\xc7\x73\x6c\xfc\xf3\x52\x8f\xff\x5f\x6a\xd2\xa6\x4b\x6c\x54\x0c\xaa\x57\xbd\xac\xf4\xc1\x16\x16\x9c\x3e\x98\xd2\x00\x4c\x8b\x22\x05\x67\x12\xbc\xdd\x7b\xaa\xeb\xf8\x5e\x0d\x2f\xbc\x6e\xb3\x95\x71\xbc\x9b\x42\x09\x87\x9e\xd9\xa7\x68\x1b\x1d\xa3\xc1\x09\xb4\x56\x1d\xd4\xc7\x0f\x78\x62\x67\x39\x8e\x75\xaf\x83\x7f\x63\xbb\x5e\xd8\xe1\xf9\xa5\xf6\xd2\xd2\x5e\xef\xad\xae\x52\xc2\x0b\xf3\xf4\x28\x50\x22\x1c\xd7\xa9\x2e\x87\x32\xf5\xff\x4e\x23\x59\xdc\x64\x09\x54\x6f\xeb\x7a\xa9\x99\x8a\x81\x22\x41\xcd\xfd\x2b\x35\x80\xfa\x14\xd4\x4f\x50\x7a\x01\x03\x81\xf0\x32\x54\x77\x8a\x1d\xfb\x63\xe4\xc1\x42\x4b\xa1\x32\x92\xef\x13\xfe\x58\x78\x84\x68\x29\x20\xda\xa8\xcd\x68\x4c\xa3\x21\xab\x7c\x37\xcc\xac\x57\x73\x70\xe8\x05\xa5\x78\x33\x55\xd9\xaf\x32\xa4\xb1\xc9\x7a\x64\x6d\x65\xc0\x46\x4d\x2d\xde\x42\x44\x8e\x0a\xc5\x17\x53\x86\xef\x17\xdb\x03\xb3\xe6\x6c\x18\xf7\x47\xf0\x5c\xa5\x59\xe2\x8d\x98\x89\x4d\xd7\x0c\x0d\xfd\x94\xd3\x1a\x76\x1b\x16\xc1\x94\x90\xe5\xfb\x4e\x70\x6c\xba\x36\xce\x67\xa6\xf4\xbd\xf8\x39\x62\x27\xc2\x77\x9d\x6a\x64\x05\x0a\x63\xcb\x9a\x30\x92\x3e\x2b\x65\xfd\x2b\x0a\x48\x77\xa4\xd4\x8d\x36\x89\xea\xab\x58\x39\xee\x0b\x8f\x8c\x20\x5a\x14\x7b\xce\x45\x67\xc1\x7a\x76\x65\x9c\x84\xc5\x1c\x5d\xab\x13\xe0\x77\xf9\xc4\xee\x8e\x1a\x7d\x60\xee\x27\x57\x5b\x74\x79\xd6\xc7\xa5\xf6\x9a\x3c\xc8\x04\xa3\x88\xba\xd5\xbf\x55\xd2\xd3\x08\xb2\x45\x90\x5d\x55\xf9\xcc\x46\x94\xf4\x09\x30\x88\x75\xfc\x5b\x74\x9f\x80\xee\x4c\xc7\x45\xfc\x37\x30\x3c\xb8\xbe\x9b\x08\x2c\x11\x98\x81\xca\x85\x3f\xed\x0d\x76\x81\x59\x16\x6c\x8a\x9a\x2c\x8f\x48\x87\xbd\x3c\x2d\x62\xb7\xb4\x74\xe0\x1b\xf4\x3b\x12\xe4\x2a\xee\x42\xd8\x2e\x34\xf0\xae\x12\x71\x89\xa0\x9e\xe8\x5b\x11\xe5\x7e\x42\x7b\x18\x55\xc9\x1f\xc1\x16\x20\x29\xf9\x10\x1b\x44\x38\x74\x5a\x8e\xeb\x61\xae\x43\x11\x2e\x0c\xd7\x1d\xe0\x28\xb0\x62\x6e\x07\x7e\x90\xf1\x01\x2a\x63\x6e\xdb\xf8\xdb\xff\x01\x99\x28\xe5\x30\x0e\x32\x28\x69\x07\x97\xe9\x50\x73\xfb\x59\x89\x4a\xb0\x70\x36\x28\x54\x1f\x37\xa4\x11\xd2\x1d\x23\xdc\x8e\x6c\xea\xea\xc9\x82\xff\xe6\xc9\x6d\x34\xe0\xa6\xa5\x3a\x16\xe7\xf1\x9c\x24\x16\x53\x50\x11\x4b\x53\x6b\x90\x72\xc7\x0a\xf9\x67\x4a\x21\x79\x77\x47\xcd\x43\x7f\x15\xa8\x79\xe8\xaf\x4a\x8f\x76\x83\x48\x2c\xd2\xe1\x0f\x95\x3f\x7b\x2b\x85\xfe\xdd\xab\x1e\x21\xe4\xd1\x42\x8d\xf8\x87\x30\x75\xd3\x83\x0a\xa2\xf0\xc6\x63\x21\x0a\x4b\x4b\xa8\xd2\x85\xe3\x82\xf8\xa4\x64\x77\xf8\x1a\xcf\x3f\x81\x05\x83\x71\x3a\xe5\x58\xda\xc2\x74\x3c\xda\xed\x9b\x86\xb3\x9d\xea\xa1\x02\x95\xc3\x23\xa9\x8e\x64\xc7\xcd\x7f\x9c\xd3\x5c\xf7\x9f\x95\x7e\x64\x0d\x88\x60\xa4\x07\x1a\x16\x4d\x4c\x5e\x43\x9b\x80\xbc\x93\xe9\x7c\xc8\x8c\x0b\xb5\x4f\xd3\xb4\x66\x86\xfa\xf4\xb2\x82\xa0\xf9\x0d\xd7\xc0\xca\x61\xdf\x26\xda\x29\x67\x47\x19\x34\x13\xf8\xa2\xca\x51\x97\xb0\xe5\x85\x1d\xce\xf9\x91\x0a\x56\x15\x43\x35\x19\x0a\x77\xb8\xb2\x2f\xb1\xfc\x50\x35\xc5\x94\x94\xb4\x18\x3c\xae\x98\x48\xe9\xd1\x6f\x16\x3d\xed\xea\x1b\x44\x67\xbb\x81\x1b\xb0\x67\xa2\x58\xc3\x5b\x4e\xd0\x37\x4b\x9d\x56\x2c\xc3\xba\xc9\x4d\x11\x02\x46\x5a\x93\x23\x12\x49\xa4\x06\x37\x94\x0f\x52\x59\x38\xe2\xe7\x5b\x8e\x3b\x6d\x53\x4d\x67\x6b\x0e\x13\xef\x36\xcf\x95\x0a\x93\x11\xec\xd5\x6f\xd0\x46\x23\x48\xcd\x7a\x56\x34\x25\x2e\x72\x1b\x26\x04\x49\xd5\xe7\x2a\x83\x36\xbd\x8c\x59\xec\xa5\x5e\xa3\x60\x0b\xb7\x55\x48\x99\xa5\xb1\x7d\x92\x4c\x1a\x1a\xcc\x77\x68\xc5\x21\xce\xba\xa0\x04\xd7\x58\x89\x0f\x05\x59\xf4\xe3\xf8\x8f\x60\x1d\x10\xf1\xfd\x4f\x0a\xd5\xcc\xd9\x8a\x58\x53\xdf\xfe\xfa\x50\x21\x07\x57\x23\xb0\x2f\xe0\xf5\xde\x54\xba\x88\xe0\x27\x84\x73\x7b\xd4\xb8\x5b\x57\xa2\xb8\x2e\x7a\x7a\x4b\x0b\x2c\xdd\x9a\xca\x8f\xde\x7c\xb3\x3d\x4c\x93\xa8\x48\x3d\x39\x91\xcc\xb5\xfa\x77\xfd\x23\xe7\x3b\x87\xb6\xd7\x8b\xa5\xfa\x2a\x83\xf3\xf4\x29\x01\x65\xf9\x02\x64\x95\x77\x11\x01\xc2\x8c\x86\xc4\xf9\xa8\x0c\x7a\xa7\x18\xa2\xb9\xa5\x6e\x7f\x10\x85\x20\x4a\x74\x23\x85\xd5\x12\x82\x0f\x61\x7e\x09\x58\x45\x00\x6e\xc9\x10\xbc\xff\x67\xa8\x6a\x41\x3d\x94\xd5\x97\x27\x5a\x28\xc9\x07\x1e\xb9\xc1\xc3\xf1\xd4\x42\x23\x96\xfd\xe0\x33\xbd\x56\xb2\x2e\xab\x42\xb2\x4e\x15\xd0\xec\x22\x5a\xb5\xc7\x8d\xc0\xa6\xab\x76\xb7\xea\xb7\xdd\xc7\x2e\x45\x14\x7e\x5d\xb1\x37\x32\xde\x05\xf6\xec\x7d\x7a\x0c\x2c\xe5\x15\xf8\xc1\xe2\x8b\x4a\xa6\x72\xa6\xe3\x18\xd3\xd3\xa1\xc9\x07\xad\xda\x14\xa1\xce\xb3\xb7\x83\x00\x1d\x85\xcd\xd0\x14\x76\x9c\xcd\x56\xdf\x0f\xb3\xc1\xa4\xda\xe8\xff\xde\xa5\xa8\x18\x0b\x03\xb8\x6b\x44\x38\x33\x9d\xed\x9d\x97\xc5\x43\x30\xe9\xfd\x2c\x1d\x27\xe8\x48\x38\x5e\x7a\xdf\x5d\xdc\x54\x72\xd2\x47\x14\x31\x6d\x1e\x15\x95\x49\x72\x79\x00\x66\x22\xf8\x78\xaa\xc2\xbf\x78\xa8\xbd\x92\x99\x7e\xc4\xda\x1a\xb0\x7d\xc7\xe8\xf2\xf8\x58\x4d\x43\x77\x6d\x5e\xec\x52\x78\xa8\x3b\x5a\x8b\x4c\x91\xb4\x7d\x89\x10\x81\xf5\x1c\x91\x5c\x21\x46\xf8\x91\x22\xe0\xf5\x7c\x1c\x36\xcb\x4d\xf1\x0e\x75\x3d\x05\x11\xe7\x27\x02\x6e\xab\xa9\xd0\x2f\x54\xc6\xbd\x12\xd9\xbc\x30\x2d\xc5\xde\x79\x25\xf0\x45\x8b\x69\x70\xe1\xbe\xa5\x76\x31\xb0\x51\x96\xcf\xa9\xaa\xf4\x23\xcd\x04\xaa\xaa\x72\x17\x40\x7f\x8c\x5d\x86\x9c\x1f\xe1\xd6\xce\xce\xb4\x48\xe4\x81\x76\x17\xda\xa4\x8d\x52\x20\xb2\x97\x8b\xcc\xac\x45\xa6\x30\xb3\x0a\xd6\xf4\x00\xf1\x84\x28\x9f\xfb\x17\xfa\x6f\xa9\xc1\x2f\xe0\x2b\xff\x15\xc4\xb1\xcc\x86\xc3\xe1\x12\x96\xa4\x81\xb9\x55\x7e\x53\x36\xca\x78\x94\x99\x35\x9b\x14\x59\x14\x8e\x63\xd6\x97\x67\xfa\xc0\x1a\x95\xa0\xcf\x2d\x4d\x6f\x18\x15\x34\x4c\xb7\x3c\xcf\x8d\xcb\x7b\x81\x9f\x98\x61\xfa\x37\x94\xf3\x78\xae\x53\x78\x7c\x5a\x4e\xb5\x76\xd3\x5d\x6b\x2f\x1d\x77\x9d\xe9\x92\xcb\xab\x5d\xb7\xa2\x16\x4a\xc7\xd9\x53\x4a\xc3\xeb\x14\xe7\x89\xd2\xf2\x6c\x39\xe6\x88\x2d\x6a\xcb\xc2\xa0\x6d\x21\xe9\x47\x83\xef\x98\x8e\x7c\x35\x37\xe7\x8d\xd2\xeb\xf6\x1c\xa3\x46\x05\x02\xc7\x6b\xc8\x1f\xf8\xd3\x8d\xe8\xf3\xa1\x2d\x0c\xd0\x27\x07\x1c\x07\x02\x7d\xf3\xe3\x48\x10\x7e\x6d\xd1\x71\x5b\xd3\x7a\x70\x3d\x6a\xa7\xd5\x33\xcd\x0e\xb6\x3c\xdf\x36\xa3\x91\x35\xce\x8f\xc8\x8e\xa6\x45\xc4\x27\x0a\xd8\xdb\x4d\xfb\x26\x2b\x76\x79\x0f\x79\x53\x49\xbb\x7d\x8a\x47\xc2\xff\x80\x0e\x3a\x8a\x61\x3f\xa5\xe7\xc3\x7f\xc5\x71\x36\xff\x8b\x72\xf6\xc4\x2e\x6d\x0b\x3b\xeb\xc1\xe3\xe7\xf8\x5d\xa8\xc2\x8d\x3b\xa1\x17\xc3\x7f\xa6\xca\xc8\xd9\x6a\x0e\x30\x30\x43\xfb\x35\x0f\x39\x47\xb3\xd2\x3f\xd3\xf5\x80\x47\x53\xb1\x60\x15\xd5\xa8\x84\x5c\x02\x40\x7a\x32\x12\x19\xaa\xfe\x6a\x5c\xd8\x0c\x50\xb5\x57\x9d\x34\x56\x75\x85\x20\x31\xff\x3f\x4a\xc5\x9b\x78\x69\x2a\x82\xe2\xb6\x16\xd3\x9c\x39\xea\x6a\xa5\x32\x11\xbc\xa4\x30\x52\xe3\xa4\xc8\x36\x72\xa9\x56\xa1\x1e\xc8\x89\x3b\x9f\x68\x20\xd8\xe2\x7f\x49\xdb\x00\x73\xfa\xe7\xf1\x3c\xf8\xc4\xc5\xe3\x2b\x69\x36\xdc\xa5\x06\x87\x1f\x96\xaa\xdc\x74\x86\x2c\x2d\x6e\xe4\xbf\x0f\x7c\xef\x9b\xb1\x90\x4e\xc8\xca\xe7\x30\x5f\x4f\x2d\xe9\x7d\x4b\xed\x6e\x3a\x4e\x42\x49\xc5\x1d\x8d\xb7\x83\xfd\x6a\x3a\x28\x0a\x27\xac\x41\x49\x16\x51\xc3\x4e\xd0\xa2\xf2\xc9\x44\x86\x5f\x07\x96\xfa\xb0\x09\x1e\xfd\xa2\x9b\xf3\xa5\x77\x06\x20\x1b\xc8\x85\x90\x65\x7a\x11\x02\xdb\x1b\x87\x7e\x68\x16\x39\x34\x72\x6b\x16\x55\xd3\xe4\x67\x47\x1a\x75\x2c\x46\xa6\x9f\x26\xfd\x96\x06\xa0\xbd\x5b\x2a\x76\xa9\x77\xa7\xde\xf3\xe1\xf9\x37\xe8\xde\xa8\x4f\xc4\xf5\x2a\x45\xe4\x05\x3a\x6d\x57\x5d\x71\x10\xa0\x93\x64\x3a\x10\x22\x9e\x52\x12\x4c\x99\x25\xc6\x79\xc8\x51\xf8\xae\xcc\x47\xa5\xf7\x86\xd3\xa3\x2d\x55\x1e\x60\xe3\x78\x3c\x44\xea\x50\xd3\xb4\xe5\x13\xc5\x57\x62\xe2\x38\x32\x49\x68\x67\x35\xd3\x8f\x6f\x38\xdc\x2c\x95\x43\xb9\x55\xfa\xc1\x82\x3d\x9d\x1a\xfb\x74\x82\x21\x5f\xa1\x5d\x50\x63\xaa\x5f\x96\x2a\x10\xbd\xa1\x67\x56\xbf\x74\x12\x5c\x2c\xe8\x6a\x59\x1f\x9d\x01\x33\x4a\xf0\xe2\xae\xea\x81\x9c\x23\xef\x25\x52\xe0\x0d\x02\xf2\xc3\x88\x14\xad\xe9\x1a\x5c\x51\x52\x0f\x26\xfa\x12\xce\x38\x29\x6c\xd6\x8d\x18\xd5\x0b\x23\x72\x59\x07\x77\x97\x15\x77\x62\xba\x9e\x08\x04\x10\xc1\xd5\xb5\xc0\x57\x79\xaf\x4d\x41\x5c\x68\xca\x97\xf0\x8e\x7d\x9a\xf2\x75\x2d\xa0\x59\x4a\xe7\xf9\x78\x2a\x3e\xab\x52\x54\x37\x7d\x80\xb2\xb6\xd0\x1d\xb4\x1c\xdf\xd1\x34\xa0\x66\xff\xfe\xb6\x49\x8a\xa8\xba\xf7\x88\x7b\x5e\x48\x65\x30\x93\xc4\xc7\x4d\x95\xe4\x75\x6b\x47\xce\xed\x8b\x15\x6c\x39\x2a\x49\x6d\x04\xd9\x32\x3d\xd7\x72\xb4\x67\x4f\x4c\x3c\x0f\xe6\x5d\x4d\x44\x01\xb8\x85\x90\x7b\x2b\x96\xe7\x89\x56\x82\x3b\x1e\x28\x91\xf3\x99\x8e\x22\xc9\xfb\x1c\x1e\x54\x18\x00\xc9\xf6\xc8\xe8\x67\xb5\xb9\x44\xc2\x1b\xce\x06\x2b\x06\x4d\x08\x47\xb4\x56\xf9\x27\xfe\x07\x40\xfd\x50\x41\xf8\xae\x33\x11\xf4\x72\xb2\xa1\xed\xcd\x56\x7e\x1f\xae\xe6\x52\xa9\x24\x65\xd0\x0a\x71\x3b\xbf\xba\x3a\xe6\x99\x57\x69\x7a\xda\x8f\xe2\x35\x90\x6c\x30\x95\x93\x0e\xd1\x6e\x07\x9e\x6b\xfa\x7e\xa0\x34\xdd\xc0\xa7\x0c\xdb\x3a\x3b\x51\xe1\x4a\x14\xc7\xb3\x1e\xaa\x72\xa1\xf4\x05\xe7\xcd\xa0\xd6\xca\xdc\xe7\xc8\x48\x55\x19\x97\x9b\xe2\x73\xbe\xbe\xf6\x69\xe9\xff\xf2\xf3\xba\xc2\x3a\x3d\x55\xc7\x01\xed\x5e\xe4\xe7\x4d\x44\x4f\xfd\x68\x8d\x71\x5a\x8f\xc5\xbf\x22\x8c\x1c\xd8\xcc\xbe\x54\x5d\x34\x2b\x56\x51\x5b\x02\xbf\xf8\x08\x3f\x8f\xaa\xfc\xef\x03\x16\xcf\x58\x7f\x78\x37\xd4\x4a\xef\x63\x89\x88\xc4\x7d\xf5\x30\x10\xd4\x7f\xad\xd5\x9a\x4b\x5f\x14\xfb\x0e\x52\x02\x78\xad\xfb\x48\x09\xf8\xa4\xf4\xa0\x3f\x1e\x32\x82\x2b\xe0\xdc\x0e\xb5\x91\x9d\x1d\x17\xdb\x2f\xbd\x4c\xe8\x51\xfc\xc6\xec\x44\xc1\xa3\x4e\x61\x45\xca\xa0\x05\xa5\x06\x88\xf6\x66\x69\x13\x48\xab\x42\xcf\x9c\xe7\x85\xed\xd1\xcc\x39\xbe\x0f\x41\x38\x8c\x29\x2b\x39\xf1\x3f\x04\x1e\x34\xf0\x5e\xa9\x29\x3a\x03\xc5\x48\x75\xab\x81\xea\xe0\x40\xdb\x10\x25\x3a\x47\x31\xae\x51\xe9\x58\xfa\xcf\x4f\x35\xc7\xf7\x2d\xb5\xbf\x3d\x36\x71\xb4\xe2\x60\x71\xb0\x0e\xc7\xb0\x4d\xf9\x44\x45\x85\x79\x3a\xce\x42\xbb\x9b\xfe\x54\xe2\x0f\x15\x3e\xdc\xc4\x26\x46\xed\xe3\x3b\x6a\x7a\xe9\x38\xc5\xd3\x22\xaf\x52\x5d\x92\x20\x09\x5a\x8e\x4d\xfd\x53\x27\x04\xd2\x37\x59\xdf\x24\xc5\xd8\xc0\x63\x63\xf1\x32\x43\x81\x93\x96\x71\xf8\xbb\xeb\x6a\x07\xe2\xfa\x5a\x8a\x40\xff\x62\xa0\xba\x24\x17\xb5\xb0\x0a\xf1\x82\xc1\xa3\x63\xb1\xef\xe8\xa8\xa8\xfb\xf3\xd2\xcf\x5b\x41\x37\x17\x86\x80\x27\x3e\x85\xd8\x69\xbb\xdb\x5f\x58\x68\x17\xe9\x38\x1c\xb4\x3c\xc6\xf2\x47\xb4\x9f\xa4\xfc\xf2\xb2\x6b\x57\xac\x64\xc6\x31\x3f\xcc\x78\x19\x0b\xd0\x72\xa2\x13\x05\x46\x32\x18\x9a\x7b\x0a\x9e\x98\x86\xe1\x78\x64\x12\x16\x55\x71\x22\xc4\x0e\x76\x36\x51\x96\xba\x97\x16\x4e\xb8\xb1\x49\x51\xc5\x4f\x7e\x59\x93\x25\x51\x9f\x6b\x69\xa2\xc0\x4a\xdb\x94\x4f\x82\x3f\xf3\x98\x92\x44\x98\x26\x45\x94\x10\x78\xa1\xe5\x1b\x1d\x2c\x5f\xca\x27\x53\x5c\x39\xaf\x2f\x1e\x6a\xe7\x85\xb5\xf1\xd0\xac\xba\x01\x78\x89\x82\xe8\x4d\xf0\x89\x22\xb4\xa8\x8c\x74\xbe\xa7\x7a\x58\x6e\xc8\xdc\xb1\x49\x5e\xa2\xb5\x04\x6f\x72\x07\x5b\x0a\xf6\xf5\xa9\x0e\xed\x50\xfe\x17\x7a\x1b\xa8\x2b\x1c\x27\xcb\x89\x24\x83\x65\xed\xe0\x32\xfe\x16\x99\x6a\xd8\x23\x0d\xf7\xfd\x7c\x1b\x55\x43\x75\x91\xc2\xb5\x32\x5d\x60\x6e\xbf\x65\xd7\xa3\x7c\xa0\xa0\x52\xbf\x8b\x3d\xcc\x27\xba\x41\x13\x8a\x2e\x8f\x90\x02\xd1\x4b\xe0\x13\x45\x2b\x5c\x98\xbc\xb0\x31\x41\x18\x1c\x73\x25\xd0\x7f\x7c\xac\xd2\x81\xbf\xf2\x4b\x07\x5b\x8a\x9d\xff\x32\xb5\x33\x84\x59\xa2\xd6\xc2\x58\x47\x50\x52\x03\x81\xc9\xd0\xc9\x8b\x9a\xa1\x39\x7d\x7b\x23\x1f\x32\xa6\x5b\xd2\x7c\xa5\x36\x77\x45\xfd\xba\xcd\xf3\x6f\x2a\xbb\x36\x43\x70\x7f\x6c\xc3\x67\x3a\x8a\x81\xef\x8f\x4d\xc8\xf8\x2b\x15\x25\x51\xb8\xbb\x57\x2a\x9e\xff\x67\x27\xbe\x3c\xf3\x42\x87\xec\xba\x46\x05\x4a\x12\xe9\xa3\x6d\xd6\xb7\x13\x01\x49\x05\x91\x7f\x7a\xa2\xa6\x43\x7f\x2f\xf0\x77\xfe\x11\xd2\x5a\xf4\x9f\xf6\x52\xa3\x02\x6b\xe0\x2b\x9a\x4b\x13\x7c\x40\xb5\x80\xd0\x57\x7a\xb6\xe3\xcd\x9a\xf4\x98\x50\x77\x6e\x4d\xc8\x0f\x21\x93\xba\x83\x7a\x1a\x16\xe3\x9e\x4e\xeb\xaf\xfe\xaa\x7b\x5b\x0d\x30\x8c\x9c\x7a\x82\x48\x2f\x65\x1e\xcb\x27\x47\xf7\x94\x60\xff\x29\x55\xd9\x4c\xec\xdb\xc5\x93\x1e\x51\x80\xe9\x22\x74\x53\x76\xe3\x71\x49\xf5\x87\x9e\x44\x8d\x38\xa6\xa6\x37\xcf\x25\x45\x2e\xa1\x22\xb5\xb8\x84\xc8\x5d\xd0\x05\xf4\x8e\x18\x2f\xd7\x30\x8f\x78\xa0\x6d\x86\x51\x68\x04\x70\x85\x6f\x7f\x57\x43\x31\xde\x9d\xc2\xc1\x80\x0f\x92\x40\x2b\x2c\xc6\x82\xa2\xd4\x3d\xc5\x9f\x74\xcf\x61\x80\x87\x26\xcf\x2d\xb5\xa1\x84\x3d\xbf\xfa\x2b\x44\x06\xe7\xc9\xcf\xc3\x4d\xdc\x6f\x68\xfb\xbc\xda\xee\x65\x51\xb2\x4a\x0b\x1e\x4e\x08\xc3\x7b\x7c\x3c\x55\x4a\xaf\x1c\xeb\xd0\xc4\x51\x3f\x31\x2c\x63\x27\xb3\xa2\xd5\xef\x0b\x63\xb6\xcf\x3b\x6f\x4c\xa5\x82\xfb\xf7\xb7\x07\x69\xd2\x33\x74\x5b\x4e\x87\xcc\x2b\xb6\x5d\x51\x2c\x7d\x0c\xde\xce\x1f\xab\x9f\xe2\xdf\xf8\xba\x35\xd9\x6e\x9f\x4b\x6c\x52\x78\xc8\x02\x4f\x81\x2f\x05\x9d\xc5\x0b\x77\x09\x87\x4b\x3b\x9f\xa2\x50\x47\x14\xa1\x68\x21\xf0\x37\x35\x36\xcb\x4c\x15\x1e\xb7\x54\xb2\xfd\xfb\x4a\x59\xfe\xf7\x03\xdf\x66\x59\x35\x85\xdd\x5d\x99\x62\xbc\x6b\xa6\xc3\x72\x63\x37\x7e\x15\x9c\xa4\xb7\xc6\x28\x3e\x3d\x7e\x7d\xb7\xfa\xe6\x2d\x96\x97\x14\x2c\xa6\xaf\x8a\x44\xc9\x9a\xcd\x0b\x9a\x52\x7e\x42\xc1\xca\x1f\x22\x8a\xc4\xce\xbc\xa0\x08\x9a\x2e\x61\xfb\x31\x22\x1b\x91\x37\xd6\x35\x6b\x0a\xf2\x47\x14\x73\x05\x38\x05\x65\x3a\x4e\xec\x74\x15\x32\x44\x92\x4f\x22\xfa\xe3\x98\x81\x4f\x26\x8f\xad\xd9\x27\x26\xde\xc8\x0b\x2a\x06\x60\x69\xfe\x04\x2b\x00\xd0\xf0\x23\x0a\xa0\xdf\x02\xdf\x9b\x63\xe0\x53\xe8\x28\xef\xd4\xc7\xf9\xb8\x0a\x5f\x70\xfb\x42\xfe\xe7\xe7\xb3\x4e\x94\xba\x55\xa4\x5b\xe4\xe7\xe9\x0b\xa5\x87\xa4\x38\x7f\x02\x35\x5c\x76\x1a\xf1\x2d\xdc\xd4\x43\x97\xf7\x82\x61\x89\xfd\x14\x7c\xe0\xa3\x52\x89\xa9\x3c\x52\x8a\xb2\x99\xcd\x8b\x14\x14\x07\x4b\x3e\xf5\xf2\x33\x9c\x3f\x69\xb0\x00\x07\xda\x3d\x1b\xdb\xbe\x29\xac\x10\xf3\x2b\xfe\x14\xcf\x05\x2d\x46\x20\xb1\xeb\xf1\xc6\xae\xca\xf8\xcb\xde\x68\x39\x36\xf7\x47\xe4\x08\x24\xcb\xa7\x8f\x63\x37\x80\x25\x80\x9e\xfa\xd5\x3f\xd1\xf1\x58\xd3\xaf\xa7\xe7\x52\x5e\x3b\xd8\x36\xe3\x9c\xa4\xe3\x78\x96\xc1\xe1\x14\x7d\x21\xe4\x9e\x82\x43\x66\xe9\xd0\x24\x2d\x25\xea\x71\x8c\xeb\x8e\x02\xf2\xf2\x4d\x85\x2a\x52\x1f\x82\xea\x4a\x30\x1d\xd5\x8e\x41\x92\x7c\x55\x41\x3b\x2f\x2b\xff\x9b\x93\xae\x55\x5f\xd0\xd7\xa8\x7a\x7e\xa9\x29\x69\xbe\x6c\x82\xf5\xf5\xb3\xa8\x28\xd0\x0b\x46\x9c\x8b\x4e\x07\x1f\x6f\x17\x70\x59\x3c\xd4\x3e\xf4\xda\x5e\x5d\x57\xa1\xd5\x03\x47\xf6\x3e\x41\x3a\x10\x8f\x93\x43\xdf\xfa\x19\xf6\x16\x1e\xe2\x8f\x34\x55\xe0\x29\x45\x19\xb1\xf4\x42\x47\xf1\xd3\x00\xcb\x23\xf5\x74\xa5\x6f\x51\x06\xaa\x62\x79\x9c\x1f\x1e\x92\x90\x2f\xe9\x9a\x85\x64\x57\x41\xf2\x8e\x2b\x9c\xf7\xa7\x54\x69\x70\xc5\x79\x2f\x23\xa3\xa7\xf5\x47\x36\x8b\xe2\x74\x9c\xb7\x2a\xd7\xcd\x21\x77\xe0\xa9\x8a\xee\xa8\x41\xef\x74\x65\x85\x08\x48\x94\x9c\xc6\x0d\x85\xc9\x99\xe6\xa4\x26\x6e\x8f\x22\x8b\x42\x53\xc0\xf7\x21\x34\xd8\xa5\xe8\x7c\x77\x4d\x1a\xd4\x1b\xd3\x9e\xb0\xbb\x23\x3c\xbb\xa6\x84\xb4\xaf\x35\x89\xe5\xa5\x09\xba\xfb\x5b\xd7\xab\xdb\xdf\xba\x1e\x78\x68\x53\x16\xad\x49\x85\x14\x6d\xcd\x33\xaa\x39\xcb\xd5\x52\x20\x35\xef\xab\xee\xec\x2f\xfc\xc2\x5f\x9e\xa9\x01\x08\x9d\x66\xc3\x39\x8a\xaf\x90\x37\x3f\x0c\x04\x91\x9d\xf7\xa2\x19\x8f\x71\x66\x81\x5b\xa7\x45\xe1\x7c\xd7\x17\x0e\xc2\x6d\x0d\x68\xa7\x05\x0d\xae\xc6\x9c\x34\xe2\xb2\x88\x6c\x6f\x46\x89\xa3\x60\x7c\x1d\x4e\xea\x07\x8a\x4b\x52\x97\x90\x7b\x51\x4e\xe5\xa8\x27\x14\xac\xe8\x64\xa9\x51\xa8\x8a\x5b\xeb\x6e\xa9\x5b\x61\x9a\x28\xf3\x34\x2f\x38\xa1\x57\xf2\x3d\xdb\xb9\x8e\x22\xae\x3c\x39\x95\x7a\xbf\xd2\x1e\x9a\x70\x10\x25\x36\xdb\x50\xea\xbb\xa7\x95\x77\x3b\xad\x52\xe8\xcc\x44\xb9\xed\x51\x63\x45\x70\x69\xd5\x73\x61\x65\x79\x45\x48\x8f\xb2\x86\x42\x15\x49\x41\xec\x0c\x5e\x22\x1b\x74\x35\x23\x46\x33\xf4\x45\xfe\x3c\xfd\x2d\xb6\xc1\x31\xec\x15\xe6\x08\x25\x83\x8f\x30\x96\x61\x9b\x38\x41\x35\x1c\xeb\x6d\x37\x29\x5f\x6d\x71\xc4\x8c\xf8\xe6\x16\x59\x27\xfc\x20\x53\x4d\xe1\x1f\x10\x66\x0a\x89\x08\x39\x53\xf6\xb9\x58\x11\x08\xdc\x9e\x9e\x78\xd9\x83\x13\xb4\xf9\x51\x48\xbb\x13\xa8\x16\xe9\x0d\xd5\x16\xbd\xae\xa6\x2d\x62\xd3\x4d\xb3\xdd\x9e\x1b\xea\x11\x5e\xa0\xab\xfe\x2b\xdd\x92\xc0\x8f\x2b\x61\x0a\x1e\x9c\x25\x97\x54\xad\xe5\x8a\xe2\x1a\x7a\xb4\x1d\x86\xfa\xfa\x81\xf6\xe1\xf9\x37\xe0\x54\xa5\xaa\xa8\x62\xdd\x9b\x58\xb4\xa8\x7b\x1c\x05\x72\x40\xa2\x13\xc5\xdd\x04\x17\xcb\x9f\x2f\x15\x62\xe4\x36\x6e\x57\x32\x3c\x85\x4a\x08\x8b\x7c\xd6\x27\xaf\x58\x04\xb0\xcf\xd7\x95\xad\xbe\x5e\x7a\x49\x80\x26\x0e\xfe\xea\xff\x57\x67\x7d\x83\x98\x91\x6d\x1a\xe0\x82\x2f\xda\x85\x81\x11\xd9\x49\x4d\x0d\x8f\x7c\x94\x66\xec\x34\x10\x56\x1f\x0f\x7c\x88\x7d\x7c\xca\xf0\x1d\x7a\xad\x5d\x85\xc7\x63\xa7\x96\x5f\x93\x95\x91\x02\x96\xd2\xea\x18\xd0\x8c\x85\x8b\x6b\x19\xf3\xec\x06\x2d\x0f\xcf\xfb\x50\xa4\x5a\xa6\x28\x81\x80\xef\x45\x20\x29\x3e\x2d\xff\x2d\x2c\x72\xfc\xd1\x1f\x62\xe1\xc2\x16\xdd\x69\x22\x29\x68\x5b\x93\x47\x36\x9b\xa1\x57\x23\x00\x16\x72\x63\xcc\x3a\x84\x34\xf0\x71\xfc\xa0\x55\x42\x30\x48\xf3\x51\x54\x80\x65\x40\x80\x17\xb0\x18\x7c\xac\x6a\x16\x66\x35\x4b\x13\x18\x64\x89\xc1\xe8\x0a\x45\x7c\xb9\xa5\x38\xa0\x1b\x86\xe0\xf2\x11\x3b\x20\x66\x5c\x57\x2c\xa4\xe7\x95\xe1\x1c\x46\xa3\x6d\x72\x46\x78\xa4\xa2\x6d\xe4\x0b\x5f\xdd\x68\xd5\xe6\x33\x1e\x51\x71\x52\x61\xa2\x3f\x09\xf4\x90\x7f\x43\x22\x43\xc8\x70\xba\x1c\x01\x9f\xd1\xaf\x08\x2a\x6d\x9a\xe6\xbf\x0a\xea\x86\x69\x98\x19\x21\x79\x47\xed\xff\x3d\xad\x6e\xfb\x9e\x2a\x6d\x45\x49\x8f\xdc\x67\x6f\x8e\x5e\x3c\x6c\xee\x03\x1d\x9d\x1e\xa7\x27\x20\xdc\x33\x2d\xc7\xe1\x71\x53\x8f\x08\x3c\x50\x52\xb6\x5d\x6b\x31\x93\x89\x10\xf0\x0b\xfa\x0c\x1c\xdd\x57\x3a\x50\xfe\x8d\x26\x20\xdd\x5b\x69\x2c\x70\x37\x21\x9b\xf7\x1f\xbf\x58\x2b\xa3\xc4\x4c\xbc\x02\xf3\x0d\xd3\xc8\xc7\x93\x1a\xa9\x46\x51\xcc\xd2\x72\x10\x8d\x38\xbc\x36\x99\x4f\xa3\x2b\x12\x29\x39\xa5\x38\x71\x52\xc5\x8f\x85\x4d\x7a\x36\x53\xcd\x01\xde\xeb\x48\x6b\xee\x97\xbe\x57\xb4\xa7\xe3\x69\x74\xae\xf8\x04\x3a\xed\xd9\x78\x97\x1f\x81\xda\x0d\x0f\x27\xe0\x0a\x05\x49\x44\xa5\x15\x01\xc3\xed\x52\xf1\x7a\xfc\x91\x66\x62\xfa\xa9\x42\xef\xac\x9b\x2c\x9f\xf5\xcb\xe8\x2e\xd5\xd2\xf8\x98\x2e\x4c\xb4\xee\xfd\x34\xe0\x85\x7a\x39\x2a\xcd\x9e\x68\x39\x3e\x13\xa0\x85\xb7\x20\x27\xe1\xc6\x0f\x96\x65\x22\x19\x3d\x0d\x16\x62\xc5\x32\x61\xfc\x64\xfd\xd9\xb5\xdc\xd4\xf3\xce\x29\xca\xb7\x7d\x4b\xed\x21\x89\x55\xce\x7a\x1b\x77\x8f\xee\x1b\xa1\xe8\x67\x30\x42\x48\x4e\x77\x63\xc8\x1f\x6e\xe6\x8a\x72\x54\x83\xb4\xb0\xf1\xac\xca\xeb\xff\x9e\x1e\x68\xc2\xed\x22\xe8\x05\x96\x06\xbd\x84\xb9\x89\x6f\xf2\x86\x51\x16\x8a\xf0\x00\x19\x27\xf8\x7b\x4c\x5e\xf0\xb1\x8e\x7b\x58\x69\x9a\x8a\x12\x6e\xbe\xc1\xe1\x71\xff\x67\xcd\x78\x75\xc4\x71\x48\x73\x8e\x25\x25\x61\x27\x61\xeb\x07\x03\x3e\xdf\xee\x17\xf7\xef\x6f\xef\xdf\xbf\x0c\xbd\x5a\x47\x61\xe0\x32\x90\x1d\xa8\x9c\x3a\x3d\x11\x5f\x0e\x3c\x1b\x28\xb0\x0d\xf7\x06\x34\x55\x18\x98\x23\x6e\xba\xe6\xaf\x25\x5f\x6f\x0a\x94\xc3\x01\x35\x87\xda\x04\x3e\xf5\x8c\x9a\x61\x7c\x58\x6a\x12\xba\x70\xd5\x66\x9a\xcc\xad\xd4\x64\x6e\x81\x67\xce\x8d\x86\x95\x5f\x23\xe5\x38\x32\xf8\x28\xd9\x9c\x85\xc1\xe7\x93\x86\xa9\xb1\x03\xed\xb5\x54\xb8\x09\xe0\xfe\xcf\x28\x1e\xa6\x69\xad\xb8\x7d\x4b\x20\x8a\x91\x5e\x6a\xd3\x94\xb6\x4f\xe6\x87\xe3\x21\xa4\x6f\x96\xe7\x3d\xe6\x6e\xdf\x92\x9b\x00\x6c\xe8\x31\xe4\xeb\x11\x97\x80\x79\xa6\x40\x37\xcd\x3c\x3b\x4b\xc1\x88\x09\x58\x6c\x67\xbf\xf6\xef\x77\xf6\xcb\xf3\xe6\x64\xa6\x32\xbc\x31\x2e\xd8\x39\x62\xcf\x7e\xd0\x84\x2e\x18\xc5\x26\xb4\xdd\x94\xbe\x1d\xe6\x02\xf4\x02\x7c\xdc\x24\x54\x49\x2a\x24\x59\x95\xbd\x38\x66\xdc\x1f\x06\xfe\xcd\xfd\x50\xcd\x62\x0e\xcc\x30\x8a\x8b\x94\x53\x6a\x11\xc3\xd0\x90\xad\x9b\x81\x47\x32\x17\xe1\x40\xf8\xa3\x9c\xf6\x88\x43\x34\x7e\x84\x38\x4e\x38\xec\x9a\x66\x88\xf3\x38\x1a\x8d\xa4\xc2\x05\x60\x08\x57\x3a\xf9\x64\x2a\xee\x5f\x58\x68\xdb\x62\xb0\x11\xdb\x84\x97\x06\xfc\xe9\xbf\xa1\xa7\xc6\xc7\x6e\x6d\x87\x96\x59\x54\x5b\x7e\x6d\x73\x78\x24\x94\x12\x8f\x91\xd4\x67\xc2\x73\x6c\xa9\x8b\xd8\x45\x7c\x02\x52\x0c\x1e\xac\xfb\xff\x93\x5d\x62\x1a\x36\x04\xe9\x6e\x54\x74\xf1\x10\x1f\x7f\x3f\xf0\xc0\xf1\x4d\x34\xc6\x11\x81\x7d\x48\x24\x1d\xc2\xdb\x8a\x5e\xba\xa3\xac\x5b\x3e\xe0\x85\xe0\xaa\xa8\x17\x11\xfb\x03\x5a\xa5\xb5\x07\x8c\xbe\xe5\x6d\x10\x99\x30\x12\x2b\xf0\xbc\xd9\x57\x70\xf5\x4c\x05\x42\x0c\x3e\x58\xe4\x27\xca\xd6\x2f\xff\x35\xd1\xbe\xc3\x53\x11\x91\x9c\x2a\xe6\x65\x91\x5a\xb4\x73\x11\x44\x71\xd3\x14\xeb\x00\xc3\xb0\xf0\x25\x0f\x83\x9d\x7f\x8e\xb3\xdd\xbb\x28\x4e\xa0\xc2\x72\x02\xe3\xfa\xe8\x20\x5c\x0b\xfc\x28\xec\x77\xd8\xff\x22\xff\xff\x54\x71\xd9\x5e\xa0\x8e\x09\x02\x0a\x1e\xc9\x40\x85\xf4\x36\x32\x01\xc4\xb5\xad\x0e\x59\x0f\x78\x9d\x8f\x1a\xa8\x91\x0f\x10\x1d\xf5\x9c\xe7\xe3\x98\xa3\x59\x6a\xf8\x54\xd4\x06\x40\x51\x70\x5c\xf1\xf5\x7c\xa0\x7a\xf5\xd3\x06\xe6\xf0\xfc\xab\xed\x15\x9b\x65\x11\x8c\x80\xf3\xa8\xde\xbb\xaa\xd0\x70\x64\xa2\x4c\xe9\xce\x1e\xab\x0d\x1e\x7e\x43\x41\x3a\x12\xf4\x23\xa3\x34\xc9\x91\x83\xcb\x9a\xab\x2e\x45\xa4\xf0\xab\x47\x82\xcb\xfa\x60\xea\x5e\x17\x0f\xb5\x0b\x33\x92\x6d\x88\xc6\xcf\xd7\x35\xd2\x1f\x0d\xe1\xdc\x1e\xec\x2e\xcf\xb7\x13\x67\x66\x39\xac\xc1\xb2\x92\x18\xe7\x59\x57\xfa\x2b\xaa\x5c\x47\x41\x62\x58\x8f\x41\xa6\x5b\x9b\x0c\x4f\x3c\x1e\x76\xc5\xeb\xc1\x08\xff\x03\x25\x0a\xf3\x0f\x54\x3e\xd6\xb5\x96\x51\x56\x48\x14\xbf\x2a\x7d\x01\xe8\x2b\x55\x34\x89\x92\xde\x73\xd5\xf2\x44\x34\xfe\xa3\xd2\xaf\x96\xb3\x3a\xef\xbb\xa4\x3a\x05\xe7\x15\x5d\xf5\xff\x0f\x69\x18\x1c\xe7\x4d\x4a\x7a\xb0\x0e\x9e\xee\xf8\x1d\x87\x82\x13\x32\xcb\x27\xb5\xca\xe4\x73\xd4\x10\x43\x40\xf1\xb3\x40\x8d\x1c\xb2\x46\xb4\x14\x8d\x15\x23\xe2\x5c\x47\xe5\xdb\xba\x72\x99\x87\x99\x19\x69\x9a\xc1\x4f\xd4\xf8\xf1\x27\xcd\x22\x88\xb1\x19\xf7\xb8\x16\x8c\x15\xcb\xd4\xf9\x7c\xa2\x60\xb7\xbd\xc8\xb2\x5c\x01\xaa\x21\xe8\x4e\xf0\xb1\x03\x67\xf7\xa2\xcc\x86\x00\x9c\x22\xab\x6b\x79\x82\xbc\x53\x2f\x81\x97\x80\x29\x6c\x4a\x37\x60\xf1\x9d\x3f\xd6\xd1\x0b\x95\x9e\x21\x4a\x55\x5b\x2e\xd6\x0d\x33\x6b\xb1\x54\xa4\x4f\xac\xf4\x61\x2e\x35\xc9\x3a\xaf\x99\xd0\x24\xa1\xc3\x44\x08\xf0\x9c\x9e\x31\x9f\xa8\x8c\x25\x4c\x87\xc3\xb4\x27\x83\xc7\xc8\x3b\x11\x3d\xf2\xb1\x5a\x31\x23\x93\x60\xea\x10\xf8\xba\x23\x2a\x89\xfd\x5b\xb8\x2c\xa4\xee\x98\xab\x72\x8c\xfb\x9e\x79\x85\x75\x9c\xe1\xb1\xa3\x7e\xd4\xab\xb5\x62\x15\xfa\x7a\x2a\xab\xaf\x12\xdf\x9e\x0d\xa3\x1e\xa2\x2b\xc1\x7b\xd2\x77\x33\xc2\x8f\x8c\x22\x0a\x17\x27\x7c\x0c\x61\x63\x3b\x1a\xa4\x3c\x8d\x5d\x23\x59\x11\x38\xc1\x8b\x53\x05\xb1\x24\x9d\xa9\x7c\x0e\xac\x25\x92\xca\x1a\x17\x3a\xea\x51\xa7\x6a\x64\x21\xe3\x55\x6e\x17\x30\x29\x9d\x4a\x3c\x7e\x47\xd1\x1b\xd9\xb7\x47\x36\x2b\xf2\x27\xbd\xf6\x19\xa4\x21\x50\x52\xe2\x91\x21\xdc\xdd\x1f\x91\xe3\x13\x3d\x2e\x35\xe7\x8f\x27\x25\xf2\xfc\xd5\x8e\x14\x6f\x43\xcb\x94\x2b\xcb\x81\x1a\x42\x3b\x5e\xfa\x84\xbe\x67\xd6\x22\xc9\xb5\x5d\xcd\xa1\xba\x2b\x3e\xa9\x49\x6d\x87\x83\x8d\x19\x95\x63\x5e\xd3\x75\x6c\xfa\x65\x24\x50\x1f\xab\x70\x76\xc5\x84\x45\x9a\xcd\x79\xe5\x3f\xee\x60\x08\x35\x78\x75\xed\x5c\xf0\xa6\x6f\xe3\x3a\x2d\x7c\x2b\xf0\x1f\xb7\x9b\x84\xa8\x57\x62\x4c\xee\x2b\x1a\x8c\x4d\x45\x83\xb1\x59\x67\x7e\x7c\x87\x04\x0a\xc5\x5a\x9f\xd9\xc6\xcb\xef\x58\x8d\xee\x29\x35\xf8\xdf\xad\x51\xd7\xe4\x2a\x95\x79\xb5\xa6\xe2\xc0\xc7\x0a\x1f\xd5\xb7\x49\x34\x86\x2f\x43\x62\x7f\x37\x50\xc4\xea\x77\x9b\xf4\x3e\xf0\x94\x94\x9a\x19\xba\xe4\x7c\xdc\x08\xb4\x1f\xc5\xe9\xba\x44\x78\xac\x42\x54\x97\x24\x7a\x46\x0d\xe6\x66\xab\xb3\x1a\xbe\x7e\x5c\x35\x65\x76\x55\xa6\x77\xeb\x21\x2e\x11\xe9\xc8\xfd\x60\x8f\x72\x1f\x32\x6b\xeb\xaa\x83\x9e\x85\xf3\x72\xd0\x34\xd8\xf1\xf3\xf9\xee\x7a\x11\xa0\xe5\x44\x89\x1e\xa1\xd0\x08\x23\xf1\x27\x31\x21\x8b\x20\xef\x5f\x04\x2a\x49\x24\xb0\xcd\xc1\x2d\x0e\x9e\x90\x0d\x5e\x6b\xa6\xb3\x08\xd3\xac\x27\x3e\x1a\xeb\xfe\x5e\x6d\xd2\x98\x1e\x89\x70\x31\x4a\xfd\xde\x24\xbd\x39\xc5\xac\xf4\xe4\xc4\xef\xef\x5a\xed\x41\x70\xfc\x4e\xb1\x7c\x61\x81\xcb\xa7\xdf\xec\x88\x45\xee\xa7\x92\x6b\xd7\x30\x64\x4e\x1b\xbd\x5a\x2f\xb0\xe2\x2c\x7e\x25\x18\x1b\x27\x51\x58\x64\xe3\x7e\x3f\x06\x31\x34\xca\xd6\x10\x43\x14\x15\x24\x37\x41\xf6\x5f\x9d\x2a\xf7\xf8\x97\xfa\x97\xff\xd2\x9c\x87\x7d\x9f\xc5\x0f\xe1\xbb\x8f\x07\xaa\x91\x09\x83\xc2\xff\x50\x2a\xb0\xf9\xd1\xd2\x4f\x88\xd9\x38\x26\x43\xca\x53\xf1\x78\x06\x58\xaf\x17\x14\x21\xd0\x29\x97\x01\xf4\xa2\xbc\x3b\xce\x9c\x9c\x18\x9e\xfc\x87\x0a\x38\xfc\x61\x13\xb7\xb3\x70\x59\x73\xd7\x19\x96\xfa\x52\xa9\xa8\xab\x2e\x05\xdb\x5a\x78\x3f\xff\xf3\xed\xe5\x79\x32\x1f\xb0\x5d\x5f\x53\xf5\x5e\x08\xa1\x14\x59\xd3\xe7\x88\xd3\x35\x95\x14\x5e\xe2\x6d\x55\x65\x88\x92\xb7\xc6\x48\x42\x96\xe7\x85\x19\x2a\xf0\x14\x9b\x3f\x2d\xb7\x33\x7e\x1d\x9e\x7f\xa3\xdd\x4f\xbb\x55\x4a\xbb\xd1\x4f\x53\xb8\x5e\x20\x6f\x50\xd9\xe6\xe3\x9a\xb9\xd9\xc8\x0b\x4c\x46\x8b\xa2\x31\xad\x08\xd8\xc9\x19\x6a\x1f\x88\xee\x31\x96\x17\xff\x4b\x47\x21\x71\xbf\xd6\x0e\xfa\xeb\x26\xe0\x6a\x1c\xad\xc2\xf9\x39\x2e\x09\x87\x1b\xbd\x48\x77\x2f\xa9\x90\x02\x33\x24\x76\xbd\xe5\x07\xdc\xff\x3b\xfa\x33\x3e\x76\x23\x15\xeb\x51\xd2\xa3\x62\x1a\x16\x3d\x5f\x15\x76\xd0\xbf\x29\xa7\xa3\x31\xfe\x97\xc0\xc7\x3a\x67\x94\x24\x81\xaf\xd2\xe5\xa1\x61\x51\x28\x19\x08\x50\xcd\xe5\x53\x81\x0f\x41\x4c\x3f\xb3\x34\x1b\xf0\x14\x3d\x02\x34\x6b\x7f\x53\x21\x49\x8f\xe1\x79\x0a\x2f\x03\x2d\x7c\xc4\x9d\xf7\x4b\x9f\x88\x7f\xa2\x6a\x69\xff\x9a\x7c\x27\xcf\x44\x04\x6a\x96\x1e\x65\x6e\x07\x4d\x59\x58\x74\x30\x64\xef\xa3\x47\x36\xc9\xa3\x34\xa1\x67\xa2\x32\xbf\x45\xfe\x0a\x26\x4e\xe2\x13\x60\x30\x00\x7f\xbe\xaf\x54\xe8\xae\x28\x58\xf4\x7d\x57\xbe\x1a\x27\xdd\x38\x4a\x56\x1d\x42\x4a\xe8\x21\xab\xcf\xb9\x69\x32\x25\x32\xaf\xa9\x7b\x6d\x4e\x84\xc3\xcf\xf8\xf6\xc2\x2d\xce\xfd\x10\x75\x6d\x95\xbe\x2b\x57\x06\x9a\xa0\xb7\xe5\xe4\x9e\x2e\x69\xd0\xfa\x65\xa2\x08\x45\x11\x9b\xe9\x0a\x51\x82\xc1\xd2\x42\x9e\xbb\x17\x51\x3b\x36\x2b\xb3\xb3\xc1\x66\x7d\x4d\x77\x08\x6b\xf4\xa9\x62\x51\xb7\xcf\x77\x1a\x06\xaf\x89\x1f\x63\xc6\xeb\x7a\xec\x9e\xa8\xf5\x8e\xc1\x78\xc4\x88\xcf\x76\xd4\x18\x57\x66\x4d\x31\xc0\x50\xb5\xbe\x34\x24\xc8\x47\x29\x60\x96\x7e\xe5\x73\xaa\xb2\x98\x24\x51\xae\xd4\x85\xd8\x42\xf3\x89\xc2\x2b\x85\x59\x54\x44\xdf\x1e\x63\x95\xe2\x85\xde\x54\x11\xc1\x4d\x08\xa5\x4a\x7e\x59\x64\x51\x77\x4c\xfa\x95\x0e\x5e\x09\xcd\x3d\x98\x7e\xcc\x5a\xf3\x28\x7c\xf9\xb2\x52\x40\xe9\xd9\xac\xa0\x0a\x2d\xeb\xf9\x30\x75\xbf\x62\x1f\xd8\x6a\xf0\xf8\x07\xda\xeb\xe6\xed\xa1\x11\x6f\x5c\x93\xc8\xe3\x93\xa9\xa2\xcb\xa1\xd7\xaa\x08\x33\xcd\xd0\xad\x46\xf8\x79\x4c\xd1\x1b\x1d\x6b\x22\x2a\x2c\xa2\xa1\x55\xb2\xe2\xb7\xf0\x2e\xf9\xa4\x59\x2c\xc9\xe9\x44\xbb\x62\x88\x5b\x30\x9b\x53\x7e\xe0\xf5\x03\x32\xce\x2d\xad\x7d\x98\x20\x26\x1d\x43\x59\x8b\xe7\xdf\x84\x4b\xd6\x27\x1d\xc3\xd1\xc6\xac\x52\x3c\xbc\xa0\x56\x33\x90\xcd\x58\x4f\x08\x84\x65\x48\x48\x5c\x6d\xbc\x31\x1a\xa4\x43\xc8\x6e\x48\x83\xae\xd5\xd1\x72\xb3\x78\xb8\x92\x76\xd0\xd5\x61\xa5\x9d\x50\x92\x65\x23\x02\xb6\xd1\x88\x28\xf9\x31\xd1\xd1\xa0\x3f\x17\x21\x0d\xad\x1c\x3f\x0e\x07\x4e\x83\xc6\x09\x4a\x7b\x71\xe9\x29\xf8\xd0\xc2\x42\xdb\x14\x7e\x7d\xb9\x0a\xc7\x29\x5c\x11\x0b\x87\xc1\x45\xa0\xe0\xf6\xbe\x4a\xa5\xba\x36\x4e\xd7\x77\x55\x16\x0f\xff\x76\x4d\xd1\x00\x5e\xd3\xe3\x1e\xbb\x3a\x2a\x45\xd9\x52\x7c\x11\xbf\x1f\x78\x76\xd8\x6b\x4d\x40\xfb\x7c\xdc\x1d\xa5\x36\x31\xfc\xda\x79\xc6\x44\x8d\x36\x36\x92\x3b\x0d\x4d\xf6\xb6\x08\xa1\x21\x9d\x84\x5a\x1d\x4c\xfc\xf7\x4a\x25\xbd\x70\x7d\x2a\xda\x13\xf4\x59\x3a\x06\xf2\x0c\x95\x33\x11\x94\x10\xa0\x9c\xd2\x20\x42\xa5\x02\xaf\xf2\x43\xad\x80\x3d\x3b\x51\x14\x64\xe3\xa2\x48\x93\x59\xf5\xe6\x2e\x61\x19\xca\x77\xe0\xeb\x6b\xe2\x10\x7c\xd2\xac\x99\x6e\xad\xc8\x39\x33\x5e\x03\xab\x42\xc0\x1b\x12\x3f\xe5\x69\xb5\x12\xd3\xcc\xce\x2a\x50\xf3\x79\x35\x72\xff\x1e\x2d\x60\x89\x90\xfc\x60\xdc\xd6\x54\x39\xe8\x17\xdb\x43\x9b\xf4\x4c\x18\x71\x8b\x1b\x65\x39\xd4\xf4\xf9\xb8\xc1\x9c\xb4\xc3\x41\x9a\xba\x79\x32\xe1\xcd\xa6\xb7\xc9\x27\x0d\x85\xe5\x37\xda\x99\xed\x8d\x43\x89\xfa\x1c\x5f\x82\x63\xd8\xbe\xf2\x58\x54\xbd\x19\x17\x83\x14\x9c\xc5\x33\xaa\x9c\xc4\xe4\x28\x82\x09\xa0\x87\x21\x3a\xbe\xcf\xab\x59\xe7\xac\x2f\x02\xee\x0c\x04\xad\x81\x42\xbd\x5d\xb6\x6f\x0f\xa2\x6e\x44\x55\x3f\x4c\xb9\xa3\xda\x7a\x5d\x11\xd1\x5f\x57\xbe\xc1\x14\x03\x9b\x98\x96\x16\x95\x3d\x5a\x2a\xda\x9f\xa3\x4e\x5e\x23\xb3\x5d\x1b\xf3\x72\x77\x83\x6b\x7e\x88\x4d\x4d\x1e\x84\x83\x28\x34\xfd\x94\x2e\x56\x26\xbf\x75\xa5\xd0\xc7\x63\x2b\x26\x62\x91\x07\xd4\x82\x6e\xa2\x75\xc3\x27\x53\xb6\x79\x61\xb1\xca\x13\x91\x27\xa0\x80\xd9\xea\xf8\xae\xc0\x6d\xc4\x66\x42\x96\xee\xa0\x4a\x49\xef\xa9\xea\xde\x11\xfc\xdc\xd3\x73\x8f\xbb\x28\x14\x45\x66\x80\xfa\x14\xad\xd2\x97\xff\x38\xf1\xc2\x3a\x2d\x08\xc7\xfc\x70\x4b\x01\x83\xcf\x52\x29\x1b\xe8\x85\xef\x23\x10\x94\x3a\x80\x4a\xef\x1f\xa9\x47\x9d\x87\x06\x7d\x21\x81\x56\xcd\x76\x3c\xa9\xf9\xec\xc4\x9b\xaf\x74\x3d\x61\xc5\x69\x11\xf2\x27\x2f\x89\x2d\x72\x44\x81\xc9\x8e\xe0\x8e\x01\xd8\xb9\x86\x67\xc7\x27\x74\xd5\xd2\xc4\xf3\x5f\xbd\x12\x9b\xa1\x9d\x51\xe8\xa3\xeb\xb0\xa1\x8e\x91\xdf\x15\x23\xce\xba\x9d\xda\xcd\xec\xba\xcd\x22\x07\xe3\x44\x80\x74\x4a\xb7\xfc\xf5\x4f\x54\x81\x4d\xd2\xaa\xc1\xb2\xbc\x2f\x3d\xaf\x1c\xd9\xbe\xc5\x5f\x6a\xb5\xfe\xca\x41\x0e\x5e\x38\x26\xe1\x13\x55\x64\x7b\xed\xaf\x2e\xcf\x2a\x3e\x98\x4b\xea\x1d\xb0\x67\x46\x80\xf9\x05\xb7\x39\xf0\x67\x45\x2d\x1f\xe9\x8d\xc1\x3c\x8c\x37\x84\xe6\x33\x8c\xfe\x53\x1d\x3f\x09\x08\x98\x29\x1c\xe1\x1f\x50\x9b\x04\xaf\x17\x81\xa4\x30\x39\x36\x17\xa3\x93\xbe\x6b\x0f\x6a\x96\x10\x61\xa5\x74\xda\x82\xd6\x90\x34\x2c\x19\x00\x91\x7a\x56\xa2\xb7\x97\xa6\xb9\xf4\x5e\x6d\x2f\x2c\x3c\xef\x63\xb0\xeb\x81\x22\x32\xb9\x8a\xa6\x30\xb7\xd6\x69\x8b\xcb\x08\x6e\x6b\xf1\xd0\x16\x37\xcd\x11\xd1\xff\x2e\xa5\x87\x5b\xe7\x60\xdd\xa5\xf2\xe7\x5b\x82\x50\x72\x42\xcc\xf9\xfb\x5a\x78\xfd\x5d\x8e\xaa\xa5\xc9\x58\x3d\x18\x47\xd3\xe7\x75\xc4\x4e\xa2\xff\xe4\x06\x3b\xab\x95\x29\x3d\xff\x26\x85\xac\x71\x5c\x44\x23\x1e\x2a\x40\xd1\xfe\x88\xea\xa8\x1e\x51\x1c\x35\x55\x24\x60\x42\x1e\xe8\x97\x19\x90\xdb\x74\xe9\x7c\xdc\xa0\x35\x45\xf3\x96\xe8\x4b\xe2\x62\x7f\x5d\x71\xae\xfd\x7a\xad\x54\x99\xdb\xb7\x67\x5b\x9a\x27\xd8\xcd\x6f\x9f\x55\x64\x55\x67\xb1\x0b\xa5\xee\x53\x13\xce\x8a\x86\x73\x1a\x66\xa6\x18\x07\x37\xd9\x7f\x0a\x0a\x56\x0d\x40\xa2\x40\xcb\x7f\x56\xfb\xbe\x6e\xd4\x7b\xda\xa3\xce\x7e\x8c\xee\x03\xd3\xb0\x95\x9e\x86\xed\x33\x8d\xc5\x07\x5b\x8d\x23\xdf\x72\x10\x39\xe6\x2f\x64\xe8\x03\x36\x0c\xfe\xea\x93\x40\xa1\x04\xa0\x6d\xca\x1f\x0f\xa8\x46\x25\xbc\x6f\x8d\xc2\x30\x59\xda\xe5\xb1\x06\x51\x6e\xa2\x6b\xe1\x13\x05\x90\x1c\x27\x51\x61\x49\x1a\xfe\x0d\xde\x72\x5f\xe2\x4f\x9d\xf4\x45\x75\x45\x88\x03\x7f\x56\x7b\x58\x0f\x02\x35\xb9\x7c\x51\x0d\xcd\xf0\xb4\xa9\x46\x8c\xe0\x5e\xcf\x36\xc1\xe8\x7a\xe9\x9a\x85\xc3\x45\x8a\x82\x77\x8a\xba\xd7\x67\xa5\xd2\xde\xbb\x3e\xbd\xf7\x16\xdb\x87\xe7\x77\xd3\x16\x73\x8f\xcc\xab\x35\xb0\xb8\x2f\xec\xc2\xa6\xa2\x32\xfb\x6e\xe0\xf1\x8d\x77\x54\x59\x00\x9c\x1b\xf0\x43\x37\xa6\xa8\xbc\x09\x07\x4c\xa9\x14\xe2\x9c\x9b\xca\xd0\x73\x96\x83\xbd\xf5\x99\x0e\xc4\x33\xdb\x8b\xa8\xc7\x47\xef\x02\x75\xad\x59\xb2\x69\x7c\x3c\x71\xea\x8e\x66\x44\x8e\x13\x8f\xed\x6b\xb5\xf8\x98\x4e\x5f\xc0\xc2\x92\x9b\x9b\x61\x37\x5a\x33\xb1\x4d\x8a\x59\xdd\x89\xa4\x9b\x46\x92\x79\x44\x73\x56\x82\x98\x13\x4f\x63\x47\xe7\x45\xdd\x50\x19\xa5\x89\x4d\x8a\x7c\x56\x61\xdb\xff\x26\xbf\x6a\xd1\xbe\x6f\x39\x11\x4e\x50\x02\x08\xc9\x7e\x13\x7a\x23\x34\x19\x62\x00\xfc\xd1\x0d\x0d\x5d\x7a\xc0\xc6\x0a\xd1\xeb\xb1\x86\xf9\x9f\xb6\xc9\xf3\x34\x8c\x4c\x61\xb9\x2d\x8a\xdd\x78\x8c\x3f\x88\xaf\xf9\xdf\xf0\x48\x44\x88\x76\xba\xc8\xdb\x1e\x99\x0d\xc2\x9c\xe3\x49\x5c\x56\xf0\xe0\xcb\x0a\x9e\x5e\xa4\x59\x65\xef\x7b\x84\xc6\x46\xbd\x06\x21\x8b\x54\xcd\xaa\xf7\x8d\xce\xfa\xad\x9a\xc7\x4a\x63\xfb\xa4\x87\x06\x7e\x97\x50\x57\xb8\xa7\xab\x0a\x90\x7d\x07\xf5\x07\x2d\xb9\x2a\xbe\x40\x8d\xfc\x72\x44\xc2\x62\x8a\x9a\x30\x02\x3c\x88\x78\x23\xa7\x94\x00\x6e\x3e\xb0\xd9\x06\x5e\x97\x34\xa3\x15\xb0\xff\x8a\xba\xd9\x8f\x6b\x2c\xf0\x35\xfc\x9c\x79\xbb\xa5\x30\x0c\x97\xc0\xf3\x28\x89\x52\x03\x68\x6b\xdd\x64\xb9\x59\x6f\x4d\x15\x92\x85\x26\xa5\x21\x84\x1f\x65\x34\x5d\x07\xbf\x80\x2a\x39\xc6\xd7\xf9\x58\x05\xa5\x23\x53\xd0\x1a\xf4\x98\xe9\x0b\xf4\x50\xdd\x18\xa0\xcb\x31\xcf\xe9\xba\xdc\x39\xc7\xa6\x9d\xd9\x7c\x94\x26\x9e\x79\x9c\x27\x50\x02\x05\x11\xbb\xa1\xf8\xf2\xf2\x71\x37\x2f\xa2\x62\x5c\xd8\x96\x9a\xaf\x3e\xaa\x80\x46\x47\xd5\x80\x4d\x34\x34\x7d\xa2\x48\x76\x2c\x4a\x0c\x66\xe7\x13\x47\x6d\x61\x63\x1b\x16\x19\x69\x4b\xb6\x7c\x02\x00\x14\x10\x1f\x37\xd0\x73\xc7\x69\x28\x84\x38\x8b\x5b\x4f\x50\xa5\x69\xeb\x89\xce\x5e\xc5\x47\x82\x5a\x5a\x7d\xac\x58\x31\xbc\xf8\xf0\xce\xac\xd9\x8c\x7b\x60\xd2\x28\xf6\xe4\xea\x8c\xd4\x42\x0c\x72\x3f\x78\x51\xd5\x7c\xd2\x6e\x6e\xb3\x35\x6e\x31\x23\x6a\xdc\x81\xca\x2a\x9f\x4c\x5e\x8a\x6a\xb2\x5c\x79\x94\x26\x26\x46\x59\x50\xd6\xb1\xef\xf3\xed\xf0\x54\x72\x17\xa7\x27\x37\x28\xd5\x4e\x7a\x06\x34\xdc\x6e\xe8\x1a\x6b\x43\x7a\xbe\x0a\xd3\x3b\xb0\xa6\x87\x4e\xae\x5e\x0e\x6e\x99\x2c\x2c\x38\xca\xe7\xd6\xe2\x21\x8e\x37\xcf\xd6\xcb\xed\x3e\x60\xfd\xa5\x1e\xd3\xd7\x09\xe7\xb3\x6f\xd0\xfe\x73\x25\x56\x38\xce\x23\x30\x7f\xbb\xb8\x4a\x81\xba\x5c\xcd\xb8\xb0\xd1\xbf\xb7\xfd\xf4\x8c\x46\x5a\xae\xfc\x29\xb2\xc7\x28\x12\xdf\x2d\xfd\x62\x7a\x3f\x68\xbd\xf9\xe6\x16\xf3\x1a\xc3\x01\x3c\xdd\x51\x7c\x18\x67\xb4\x8e\xfb\xad\xb2\xf5\xba\x87\x93\x23\xa8\x76\xb4\xba\xae\x8a\x3c\xd3\xa1\x20\x01\xcf\xe8\xa9\x89\x12\x05\x7c\x81\x46\x0e\x38\xad\x7a\x40\xf1\x0a\x80\xfb\x2f\x60\x72\xdb\x61\x2a\xbc\xd5\x06\xf5\x07\x72\x75\xd0\x27\x22\x52\x9f\x9b\x54\xcf\xde\xcd\x20\x54\x06\x84\x19\x78\xe9\xa1\x0a\xef\x47\xb5\x8f\x51\x84\xff\x33\x13\x0a\x42\xe5\x15\x93\xeb\xc6\xfa\x7a\x0a\xb8\x46\xe1\x95\x68\xc9\x8c\x68\xf9\xcd\x4e\xeb\xd7\x16\xd9\x82\x9d\x60\xaf\x84\x48\x61\x06\xd8\x50\xd4\x59\x66\xb1\x58\xb9\xb4\xe9\x92\xa3\xd1\xb8\x1b\x57\xe6\x92\xcb\x08\x2c\x15\x01\x6b\x29\xba\x11\x7e\x9a\x27\x24\xae\xa8\xea\xd2\x15\xb0\x44\xba\x97\x67\xa7\xc0\x0b\x8b\x87\x08\x8e\x30\x4e\xa2\xbc\x98\x55\x66\x7b\x27\xd7\x7c\xa4\x91\xe6\xeb\xa6\xd0\x55\x47\xd0\x70\x43\x51\x4f\x09\x52\xb2\x88\x59\x23\xdc\xe9\x06\x78\x0d\x81\x06\x68\xfc\x52\xfb\x2d\x33\x34\x4e\xfd\xc7\x4d\x51\xe8\x58\xf7\x39\xc5\xc1\xd0\xef\x73\xb5\xce\xc9\xd2\xbb\x11\x4e\x94\x63\x44\x7d\x74\x1a\x01\xb5\xd4\x1e\x27\x99\xe5\x61\x38\x37\xb7\xe4\xb6\xc4\x15\x05\xc1\x5f\x8f\x92\x5e\x0e\xdf\x02\x84\xcd\x69\x32\x7f\x7c\xec\x12\xff\x51\x9c\xce\xe0\x39\x89\x0e\xab\x47\xc8\x5e\xd0\x13\xbb\xd7\xa6\x5c\xcb\xfe\xfd\x95\xfd\x8e\xa9\x0e\xac\x88\xba\xb4\x6b\x52\xe8\xed\xa8\xd7\x8d\x8a\x56\xb5\x82\x1d\x2a\xa2\x5a\xe7\x32\xe1\xe8\xa1\x33\xe1\x4a\x11\xb6\xbc\xde\xf9\xfb\xf4\x85\x7c\xec\x90\x33\x83\x34\x2b\x38\x9c\xc3\x75\xff\x63\x2d\xa1\xf8\x8f\x15\x34\x7b\xc5\xc4\xf1\x13\x5e\x72\xfd\xd3\x52\x11\x6d\x3d\x50\x54\x0a\x77\x15\x1f\xfe\x27\x40\xdd\xa1\xe1\x71\x0b\x93\x16\x7c\x52\x7a\xad\x93\x77\x95\xe6\xcd\x51\xcf\x2b\x6a\x12\x43\xd3\xcc\x2a\xed\xf8\x91\x2a\xad\xfe\x48\x97\x7c\x63\x93\x45\x89\x2d\xe0\x29\xe4\x51\xb4\x9c\x84\x37\x67\x22\x42\xeb\xaa\xa9\xb1\xf2\x91\x0d\x89\x22\x97\x56\x12\x0a\x02\x20\xbc\xd5\x0c\xca\x78\x1c\xdf\x75\x95\x6d\x33\x1a\xd9\x22\x2a\x40\x57\x85\xe5\xf7\x75\xa0\xac\xd2\xc7\xd8\x6a\x82\xbb\xf6\x0b\xe6\xf8\x54\xd2\xf0\xe6\x9b\x04\xf1\x9b\xf1\x12\x29\x3f\xa0\x9f\x44\x5a\x72\x4d\x81\xa9\x36\xcb\x17\x75\x43\x24\x1f\xc7\xd5\x1e\x9b\x51\x84\xe3\x9b\x0a\x23\xcf\xa8\x36\xe6\xc2\x71\x36\x3e\xb3\xb9\x2d\x08\x22\xcf\x09\x0a\xd2\x1b\x26\x34\x28\x15\xfd\xcb\x1e\xe0\xa6\x44\x1d\xbc\xe5\xe8\x36\x77\x76\xd4\x10\x33\x0f\xd8\x0a\xa7\x89\x1f\xa2\x7c\xaa\xd3\xa0\xdf\x70\x60\xf9\xc0\x13\x3e\x62\xba\x55\x2a\x99\x3b\x9e\x6c\xc1\xc5\xdf\x07\x2f\xa0\x93\xe6\x53\xd3\xc9\xd5\x5a\x71\x71\xc8\xf2\x01\x17\x87\x78\x40\xf3\x56\x93\x69\x5b\x33\xf1\xd8\xb8\xd4\x45\x12\xf3\x96\xd3\xa8\xf8\xf5\xf2\x39\xc5\x7e\xb4\x16\x71\xbe\x29\x50\x7d\xba\x49\x3e\x69\x82\x6c\x9b\x21\x24\xc8\x68\x53\xb8\xe1\x47\x3f\x08\x19\x68\x1e\xd9\xe1\xc6\x9c\x27\x06\x86\x5a\xa8\xd3\x10\xac\xf6\xb2\xe3\xd3\x73\x35\x9d\x1b\x8a\xb2\xe8\x63\x15\xf7\x99\x2c\x2a\x06\x43\x5b\x44\x61\x4b\xf1\x5d\xb0\xda\x2b\x9f\xa8\x60\x61\xe1\xd7\x0e\xcc\xf8\x0a\x14\xe3\xa9\x90\x2e\xde\xa7\xcb\x10\x55\x3c\x59\xe7\xfd\xcc\x24\xc4\x4d\xaf\x47\xc9\xe9\x1e\x61\x67\xef\xe3\x97\x3c\x08\x48\xac\xf3\x30\x7a\x9b\x7d\x0f\xaa\x5a\x68\xec\xf1\xf1\xd4\x1e\xf8\xc5\xf6\x8a\x35\x42\xe3\x82\x64\xe5\x3c\xbe\x99\x4f\x9a\xb8\x2e\x40\x9d\xdf\xf2\xa1\xf4\xfd\x40\x85\xd2\xf7\xcb\x97\x3c\x76\x22\xcc\x6c\xf5\xea\x0d\xc7\x67\xa8\x96\xde\x53\xe3\xa1\xf7\x14\x98\xbd\x30\x59\xb4\xb2\x92\x13\x08\x4d\x02\x34\x7a\x2d\xf0\x41\x33\x14\x3d\x08\xab\x84\xd8\xd1\x3c\x49\x8b\x82\x45\xa4\x90\xe1\xfc\x5f\x0a\xf4\x73\x5a\x11\xa0\x9e\x52\x69\x42\x3f\x4b\xd7\x6d\x96\x2b\x99\xcb\xdb\x0a\xf1\x7a\x7b\xca\x71\xbd\xf9\x66\xf5\xff\xab\x6e\xa1\x21\x38\x82\x43\xe2\x63\x95\xae\xd3\x6c\xeb\x1a\xf1\x4d\xea\x59\x72\x7e\x67\xa2\xad\xd1\xf2\x42\x80\x0d\xd3\x7c\xed\xdc\x86\xe3\xac\x2e\xae\x8c\x2e\x12\xb7\x9e\x75\x8b\x6c\xb3\xa1\xf4\x76\xb0\xfd\xa7\x7f\xf5\xbf\x3e\xf0\xab\xbf\xbc\x34\xab\x66\x94\x2f\x2b\x5a\x0a\x70\xe4\xe0\x3d\x3f\x31\xa9\xe2\x37\x19\x1e\x77\xcd\x9b\x68\x18\xc5\x26\x8b\x37\xe6\xbc\x83\xdf\x8b\x80\x12\x85\x95\xcb\x4a\x62\x02\xc9\x3d\xab\x2c\x6b\xe1\x88\x4b\x6e\x51\x87\xa6\x18\xa4\x71\x14\xce\xe8\x0a\xf3\x84\x3e\x87\xc2\xcb\x4d\x3d\x51\x78\xdd\x13\xfd\xd9\xac\x88\x56\x68\xc2\x8c\xf6\x03\x0a\x02\x3f\xad\x89\x6f\x28\x99\xb6\x1b\x6a\xe6\xca\x7e\x7b\x2c\x63\xdd\xcc\xdb\x18\xf8\x29\xa5\xba\xc4\x68\xcf\x1a\xf2\xda\xf8\x75\xb0\x52\xf2\xf1\xa4\x81\xa6\x30\x1f\x38\x46\x12\x29\x64\xb5\x1c\x8d\xe7\x03\xb5\xf7\xb3\x08\x72\xcc\x02\x4d\x52\x30\xa5\xa9\xfc\xf8\xf5\xc5\x43\x6d\x13\xa7\x49\x7f\x96\x5c\x80\xc0\x6d\x2b\x73\x8b\x06\xcc\x51\x32\xc9\xd8\x3b\x08\xa7\x85\x3a\xb5\x89\x9a\x01\xa4\x1b\x69\x26\x35\x7d\x7c\xee\x6b\x3c\x65\x3e\x69\x82\xe9\x75\xa3\x7e\x5f\x74\xb9\xf1\x67\xb7\xf4\x67\x6e\x39\xb0\x4b\x2f\x2a\xc2\x41\x4b\xc9\xa9\xfe\x0e\x57\xfa\x44\x0d\xd2\xbf\x89\x64\x3c\xec\x32\xb3\xa6\x94\x2f\xe9\xfd\xa1\xa6\x77\x07\x3b\xdd\x55\x26\xab\x35\x06\xc7\x33\xd3\x51\x80\x14\x85\x2f\xc8\x2c\x90\x8a\xf9\x20\x1a\xcd\x78\xb2\x2e\xc0\xc0\xd0\x36\xba\x5f\xea\x01\x42\x15\xc1\x5a\xd3\x13\xe9\x5a\x91\x72\xf7\x71\xd4\xb9\xa6\xa1\x99\xd0\xc6\x45\x9a\x98\x96\x46\x5e\xaa\xaa\x7b\x13\x74\xb1\x5d\x45\x38\x11\xf3\x2e\x61\xd3\xbf\xa7\x26\xda\xde\x53\xdd\xbc\x2a\x22\xce\xb8\xc0\xa7\x4a\xa8\xec\x4e\xf8\xa4\xc9\x48\x64\x36\x8c\x4d\x34\x9c\x55\x33\xc3\x3b\x3b\x75\x61\x45\x0f\x63\xfd\xaa\xf4\xaa\x5f\x1a\x38\x92\x5b\x4b\x50\xb1\xc5\x43\xfc\xac\xbe\x83\x9c\x97\x4f\x14\x70\xa4\x9b\xa6\x39\x54\xb5\xaa\x8c\x0b\xbd\x1e\x94\x18\xf9\x78\xca\x0e\xed\x5b\x02\x73\x8f\x83\xfe\xa0\x7f\xda\xa2\x04\x06\x6f\x0c\x99\xa0\x04\xdc\x8e\x5e\x6b\x14\x15\x45\x6c\x67\x14\x8b\xc8\xc5\x52\x07\x7d\x7e\x32\x63\xb3\x2e\xdf\x6d\xf2\xe7\xaa\x5b\xe1\x5e\x5e\xe0\x4b\xfb\x0c\xa1\xe2\x61\x36\x44\xc8\xce\xb5\x56\x4b\x5d\xb6\x18\xbd\x58\xee\x8f\x69\x15\x42\xc4\xd1\x40\x71\xdc\xd7\xb4\x19\xa3\xd2\x87\xbc\x97\xf5\x23\x87\x2e\x35\xfa\xfe\x8f\x54\xaf\xe9\x54\x50\xe3\x33\x5f\x58\x74\xc5\x66\xb9\x7f\x13\x86\x69\xd6\xcb\x67\xb1\xb7\xd0\xd1\xbd\x89\xf5\xc0\x76\x93\xbe\xba\x36\x51\xcf\x91\xbc\x22\xc3\x10\xce\xe6\x19\x4f\x9c\x74\x39\x50\xfa\x0c\x4f\x00\xe6\x04\x67\xb9\xa3\xb3\x57\xb9\x30\xd3\xb5\x32\xfd\x8b\x06\x23\xef\x6c\x3e\x99\x9a\x7a\x3e\x3c\xdf\xce\xa2\x10\x63\x65\x8e\xce\x59\x71\x3b\x37\x8a\x8c\x9a\x2c\x8e\x0c\x09\xe8\x71\x84\x20\x05\xf8\xea\x5b\xf8\x78\x8a\x53\x7f\xf1\x10\x55\xb2\xfa\x09\xf6\x3f\x9b\x1f\xd7\x2b\xf5\xde\xee\x48\xb0\x47\x2d\x8c\xff\xec\x45\x5a\xb5\x4c\x16\x8f\xca\x29\xea\x59\x47\x03\x85\x04\xff\x5f\x4a\x4d\x09\xc6\xbb\xc9\x05\x2e\x4e\xb8\xf3\xbc\x2a\x4d\x60\x35\x23\x76\xe0\x02\x82\x28\x15\xab\xe9\xc3\xeb\x84\xbb\x43\x88\x7f\x24\x50\x64\x3d\x17\x4a\xd5\x50\x04\x23\x2b\x2c\xd1\x43\x1a\xb6\x12\x7c\x51\x8d\x3e\x4d\x89\x50\x7d\xa5\x8c\xca\xec\xc4\xb3\x15\x7f\x30\x35\xd8\x5d\xa5\xdf\x84\xc4\x8f\x6c\x12\x82\x3d\xce\x55\x01\xd5\x98\xc0\x5e\x57\xbc\x4a\x7a\x63\xa5\x90\xc4\x8a\x31\x2a\x15\x3c\xad\x54\x56\xcf\x36\xed\x7d\xfb\x76\x38\x30\x49\x1f\x75\x7c\x38\xbd\x39\x04\x10\x12\xdf\xfb\xbd\xff\x50\xe1\x57\xf3\x38\xcd\xbb\x36\x13\xf2\x66\xb9\x4a\x3d\xc0\xa0\x86\x39\xd6\x6d\x2f\xb1\x79\xcf\x6c\xec\xa2\x67\x8f\xd8\xe4\x9e\x9e\xc9\xde\x49\x3d\x78\x04\xd9\x3b\x89\x26\x8a\x95\xbc\x4b\x25\x23\x5a\x53\x3a\x9f\x72\xcd\x4b\x4b\x07\xdb\x71\x15\x35\xce\xd2\x32\x62\xe9\x21\x18\x0e\x84\x80\xb3\x1d\x4f\x22\x7b\x5e\x3b\xb7\x8b\x6a\x6e\xb4\x6f\x93\x22\x16\x5d\x62\xd8\xa5\x1d\x1d\xfa\x12\x3e\x99\xbc\xec\xb9\x1d\x93\xc2\x66\x85\x89\x12\x41\xf2\x36\x29\xfc\x35\x14\x35\x7a\x59\xea\xa7\x22\xe5\xef\x94\x7a\xe8\x05\x07\x6f\x5e\xaf\x3c\x8f\x57\x0d\x80\x33\xdb\x31\xf1\x5e\x6e\x47\x83\xbc\xf2\x72\x7b\x98\x8e\x73\x5b\xd0\xf8\x91\x52\x3f\x2e\xfd\x28\xcd\x45\x8d\x73\xcd\x73\x13\xc5\x26\x29\x70\x3d\x78\xbe\x08\xaf\xf8\x58\xe1\x94\xd2\x30\x1c\x57\x71\xb9\x53\xc4\xc2\x1c\xb5\x70\x63\x7c\xb3\x56\x40\xa0\x3a\x7d\x14\x47\xc5\x06\x29\x90\x81\xa8\x88\x87\x2d\x05\xab\x56\x7d\x13\x1c\xd9\x2d\xba\x3e\x00\x27\xde\x9f\xea\xf5\xbc\xd2\x4e\xd2\x04\x34\xda\xa8\x8f\xfe\x9e\x9a\x08\x65\xc2\x30\x19\x00\x6d\x29\x46\x9b\x97\x15\xfc\x6d\x48\x96\x8c\xe2\x2d\x35\x61\x85\x55\x2b\x55\xf4\xbd\xba\x75\x30\xce\xba\x86\x40\x59\x6f\xb0\xf3\xbe\x0b\x0b\x8f\x2c\xfd\xa2\xd2\xe5\xfb\x04\xb6\x14\xa1\xc0\x47\x35\xc6\xc6\x0d\xb4\x3d\xa5\x11\xdd\x72\xd3\xd6\xf7\x03\x0d\x93\x6a\x28\x9e\x8f\xb2\x74\x98\x7a\x95\x4c\x57\xbe\x51\xb7\xb7\xfd\xed\x2f\xcf\xb7\x47\x36\xcb\xd3\xc4\x48\xdb\xdd\xf1\xa5\x3a\x29\xb6\x1f\xa9\x31\xc6\x6e\x26\x28\x44\x78\xaa\xbb\x9a\xc1\xe6\x2e\xb0\x2c\x70\xc8\xc7\x61\x12\xf9\xa4\xdc\xde\x37\x5d\x9e\x6f\xff\x7c\xae\x73\xed\x09\x46\x2c\xf8\xa4\x89\x05\x62\xb8\x51\x0c\xb8\x8a\x25\x00\x75\xdf\x4e\xbc\x3c\xd5\x73\x5c\x9e\x27\x76\x3e\xb0\x6c\xc0\xe1\xf2\x90\x04\xa0\x9a\x4c\x83\x8d\x52\xc7\xed\x29\x2c\xe3\xa1\xd7\xda\xfd\x2c\xb2\x6b\x86\x48\xf4\xb5\x0c\x1f\x5d\x81\x64\x1f\xcf\xf9\x2a\x31\xe9\xa0\xce\xf8\x95\xb2\x19\xa8\x22\xc6\x7d\x25\x99\x32\x3b\xd1\x8a\x3c\x29\x5d\xa0\x4c\x8d\xb7\x34\x63\x92\x1f\xf5\x98\xd6\x4b\xa8\x82\xd8\x81\xc9\xfa\xf6\xb1\xa4\xb2\xdb\xfd\xec\xf2\x7c\x1b\x2e\xd6\xc4\xd1\x3b\x62\x4e\x90\x11\xbd\x1d\xf8\xec\xe8\x6d\x17\xb3\x84\x26\x33\xa1\xc1\xcd\xa3\xea\xc6\x21\x00\x9f\x4c\xc5\x0c\x87\x5e\xab\x2c\xfd\x3a\xdd\x10\x3b\x01\x2d\xcb\x5c\x7a\x5c\xf9\x45\xa7\xd1\x95\x99\x11\x6e\x01\xbf\xce\x31\x11\x9f\x34\xc4\xc8\x07\xdb\xb9\xf5\x97\x2f\x08\x2f\x35\x57\x76\xab\x49\xee\xa1\x9f\x66\xab\x1b\xec\x7d\x1c\xab\xae\x67\x2d\x3a\xef\x3a\x3c\x3d\x9b\xdb\x8c\x6b\x81\xae\xc2\xea\x12\x96\x39\x32\x73\x28\x46\x4f\xb3\x6e\x1e\x7a\xad\x6d\x8a\x41\x5c\xc5\x59\xbc\x4e\x1d\x42\xdf\x05\xad\x9a\x3c\x32\xcc\x2c\xb7\x19\x85\x7e\xbd\xda\x80\x7c\xac\xe6\xa0\x56\x0c\x4f\xcc\x22\x40\x40\xdb\x90\x8f\x5d\x52\x6d\x7a\x6f\xa5\xe3\x8c\xd4\x8b\x5b\xda\x70\x2b\x52\xb0\x69\x65\xdd\x03\xaf\x1d\x24\x9d\x25\x67\x33\x90\x7c\x23\xe9\xe2\xe3\xf2\xc5\xc8\xf5\xf7\x42\xdb\x1b\x67\xce\x54\xe8\x1a\x84\x20\x1e\xd4\xc0\x67\x5e\xa0\xda\xcf\x94\x9c\x4a\x31\xfd\x46\xd3\x6a\xa6\x9e\x4c\x38\xab\x18\xb0\x81\x1f\x45\xec\xb4\xa7\xe3\x23\x57\x2e\x47\x08\x91\x9d\x67\xff\xe8\x66\x2c\x19\x25\xf0\x00\x84\x00\xc2\x92\x4a\xfb\x1d\xa1\xdf\xc7\x9a\x2c\xed\x22\x83\x08\xb4\xdf\x73\x9a\x3d\xd5\xc2\x92\xa9\x83\xe9\xfe\xc7\x81\xf6\x28\xb3\x2b\x2c\x01\x23\x28\x72\x45\xab\xb6\x59\xbe\xe4\xae\x2e\x1a\x0e\x6d\x2f\x32\x85\x65\x51\x38\x51\x3b\xf4\xcb\xeb\x62\x93\xf7\x4f\xd7\x6c\xd6\x1b\x23\xe4\x12\x72\xe0\xea\xe9\xe3\x18\x83\xe4\x38\xbe\xad\x48\xb8\x57\x32\x9b\x84\x83\xa7\x34\x35\x27\xe5\x2b\xae\x04\xe1\x32\xe9\xef\xe0\x7a\x19\x34\x87\x08\xd7\x65\x32\x8e\x14\xf8\x66\xe0\x69\x33\xf9\x49\x22\x44\xbd\xc4\x0f\x4f\x06\xff\x55\x4d\xec\x92\x96\xa9\xb6\x79\x81\xfa\x1c\x32\xc6\xef\xe0\xc9\xf2\x89\x9a\x0f\xa3\x22\x8c\xe3\x90\xbc\xa7\x67\x66\xee\x35\x3d\x9e\x2c\x8d\x63\x62\xae\x56\x8a\xed\x81\xcf\x46\x4f\x37\xd0\x21\x1d\xac\x2c\x67\x12\xda\x38\x4e\x33\x0c\xba\x6b\x06\x5b\x3e\x6e\x62\x90\xcd\xd3\xb1\x60\x69\x61\x64\x51\xcc\xe0\xe3\x26\xbd\xad\x70\x23\x8c\x5d\xc0\xed\x70\x66\x4b\xa2\xe1\x7b\x5f\xc9\x16\x4e\x17\xfd\x5e\x69\xdb\x71\x96\x76\xd3\xa4\x97\x73\x89\x8d\x39\xfc\xf1\x90\x65\xbe\x56\xc1\x61\xa6\x2b\x9d\x0b\x8b\xed\xdc\xc6\x3e\x24\x44\x9c\x7c\xaa\xf4\x90\xf7\x53\x5a\x70\xc8\x9a\xc2\x26\xaa\x99\xf7\x28\xf0\x84\x84\x8f\x1a\x60\x3d\xe0\xfc\x68\xf9\x3a\xe6\x95\x40\x75\x54\xa7\x0b\xa1\xcb\xf3\xed\x81\x49\x7a\xf1\x76\x5d\x9a\x1a\xba\x71\xaf\x6b\xb1\xac\x44\x49\xf5\xa2\x58\xa8\x47\xe9\x24\x38\xc5\x5e\x47\x86\x38\x5e\xeb\x02\x18\x24\x22\x17\x2d\xa7\x8a\x41\x45\xff\xad\x73\x53\xf6\xba\xb2\x7e\xd4\xff\x19\x32\x39\x0b\x32\xea\xd3\x78\xa2\x7c\xa2\x49\xc4\x7a\xe3\x98\x87\xe8\x45\xf0\x8b\x5e\x84\x48\x81\x29\x7c\x76\xbc\x6e\x36\xf2\x27\x95\x8a\xd6\x51\x45\x6f\xc9\xd8\x7a\x86\x3c\x63\xfb\xa1\xd0\x7a\x15\x0f\x02\x35\x9d\xdd\x94\x7f\xc8\x64\x92\x9f\x7e\x79\x62\xe2\x67\x87\xb7\xd4\x2c\xdc\x7d\x4d\x67\x03\x32\xc4\x5d\xad\xed\x4a\xd0\xc2\x66\x4e\x15\x21\xc7\xbb\xe6\x09\x85\x6f\x50\xf5\xc2\x09\x49\x3b\xea\xb9\x07\xee\x41\x9b\x5e\xef\x49\xa5\xdf\x72\xa6\xac\xa1\x26\xe8\xab\x84\xe9\xca\x07\xeb\xa8\xe7\x0a\xb1\x8e\x4a\xa9\x59\xf5\x42\x20\x82\x2d\xa7\x28\xb0\xa9\x00\x18\xcf\x74\x3c\x4b\xfb\xb8\x27\x8c\x07\x28\xc3\x7c\x56\xaa\x71\xbb\xcf\xa6\x1c\xcb\xc2\x42\x7b\x48\xe0\xdd\x59\x8f\x4f\x38\xa7\xa1\xf2\x3b\x3a\xbe\xb1\xff\x29\x5d\xa5\xd0\x17\xa9\x01\xab\x41\xb6\x91\xc7\x36\xc3\x74\xa4\x34\x58\x75\x34\xe3\x29\xa0\x8f\xaa\x70\xe1\x62\x4d\x71\x17\x2f\x5a\xe4\x77\x9f\x53\x74\xf2\x5d\xde\x0f\xd2\x43\xda\x54\xf0\xc3\xcd\x26\x4d\x9d\x95\x34\x0b\xb9\x67\x2f\x8e\xca\xc3\x8a\xf8\x7d\xc2\x27\xe8\x81\x9e\xb5\x28\x8d\x6d\x51\x98\x27\xe8\xa7\x10\x99\xff\x66\xe9\xb9\x18\xef\x95\x6a\x42\xe9\x76\xa0\x86\x98\x41\xea\xca\x63\x8c\x8a\x94\xf3\xa8\x56\x2e\xe3\xc6\xa3\x74\x77\xfc\x0d\x86\x26\x8f\x92\x74\x4e\xf5\x28\x6f\x60\xfd\x89\xc3\xa5\xcf\x61\x09\x7c\xa6\xd4\x00\xcf\x04\x9e\x6e\xec\x4c\x9d\x9d\x2c\x2b\x5e\x84\x45\x74\x2d\x71\x5f\xcb\xc2\x48\x3f\xec\x03\x73\x80\xe0\x95\xfe\x36\xdd\x05\x12\xab\xab\xd4\xf3\xe4\x82\x8d\xd2\xe4\xb9\x54\xee\xac\x89\x12\x2f\xea\x89\xe8\x03\x1e\x9a\xf7\xfa\xe2\x21\x47\x1d\xe7\x47\xb9\x6a\x82\x9d\xf7\x03\x4f\x8f\xc0\x84\x99\xa8\x0a\x9e\xd6\xdd\xe1\x7f\x86\x92\x03\xb6\xe2\xc9\xc0\x57\x6d\xff\x1e\x83\x78\xb8\x3b\xa2\x7c\xfb\xc8\x26\x06\x63\x59\x07\xb8\x06\x72\x9c\x9d\x30\x9f\x4d\x2d\x99\x85\x85\xf6\x60\xdc\xb7\x1c\xb7\x39\x46\xb3\x25\xdf\x59\xf7\xd5\xf4\x38\x4d\x7a\x69\x82\x28\xca\x01\x63\xaa\xdb\x45\xdb\xed\xba\x42\xf2\xdf\xa1\xa0\x80\xff\x3b\x05\xb9\x8e\x6c\xc5\xb5\xa2\x4e\xd7\x6a\x5b\xbe\xf1\x5f\x14\x51\x31\xee\xd9\x39\xfa\x1d\x90\x90\x31\xe2\x11\x0b\xf3\x3c\x2d\x4c\x47\xe3\xea\xd0\x29\x5f\xd0\x77\xa3\x9a\x3b\xd7\xf1\x64\x34\xd9\x5a\xca\xe4\x05\x4c\x8d\x47\xb7\x27\x34\x79\xdb\xa6\xb3\x7f\xe5\xf5\xf6\xfe\xfd\x78\x80\x5a\xda\x5b\xe4\x96\xbc\x1d\xcd\xd2\x70\x55\xb2\x3a\x11\xda\xa1\xfb\x81\xaf\x3a\xa9\xb8\x74\x3e\x51\xd1\x4e\x1c\x25\x36\x6b\xd5\x49\x04\x35\xd9\xe0\x74\x20\xd9\x5e\xc9\xcc\xb8\x3f\xe0\xa2\x0a\x76\x1a\xfa\x1d\x7c\x3c\xd5\x8b\x97\x09\xa5\xa1\x49\x36\x9e\x52\xf3\x63\x88\x08\x91\x9f\xfe\x59\x52\xcf\xe1\x51\xe4\xba\x54\x86\xea\x96\x3c\x39\xa9\xc3\xc5\x68\x0d\xe3\x52\x3f\xa2\xb7\xe0\xec\xb9\x1b\x8f\x7c\x61\x42\x1b\x18\xf5\xa7\x2d\xc5\x8f\x6d\xf2\x3c\xca\x0b\x93\x14\x79\x8b\xfe\x42\x06\x00\x7d\x64\x75\x4a\xf9\xc9\x7c\x3d\x4a\xfa\xf9\x2c\x2d\x2f\x9e\xd4\x28\xbd\xa2\xc0\x29\x45\x70\xf7\x37\x4b\x0f\x01\xbd\xda\xf0\xfc\xde\x68\x63\x36\x15\x51\x0e\xa3\x28\x02\x0f\x51\xd8\x6c\x88\x1d\x97\xdb\x49\x5a\x44\x3c\x99\x24\x80\xa5\xea\xe7\x45\xb3\xdb\x27\xc5\xff\x4a\x99\xd1\x22\x43\x09\x6f\x17\xf6\x1c\xea\xe1\xa7\x55\xc7\xe9\x94\xea\x49\x9e\x2c\x15\xfd\x15\xec\x7a\x4d\xfc\x9d\x3f\xad\x9f\x60\xd7\x54\x1b\x50\x38\x42\x50\xef\xb9\x8d\x5d\xc4\x27\x4a\x30\xae\x97\x45\x14\xdd\x11\x80\x06\xf6\x0f\xf1\x81\xa3\x1a\x5b\x9e\x77\x80\x68\x55\xb8\x79\xba\xd3\x30\xdd\x91\x87\x54\x49\xe6\x10\x17\x59\x3e\xf7\x17\xf8\x64\xaa\xce\xf6\x8b\xed\x51\xcc\x3c\xde\x22\x35\x50\xd9\x01\x11\x17\xa8\x35\x64\x7b\x1b\x33\x6a\xcb\xdd\x09\x54\x03\xe9\xa4\xaa\xce\x5d\x6c\x98\x07\x38\xd0\x1e\x44\x85\xe6\x75\xbc\xa7\x37\xd4\x43\x84\x4d\xfc\x2f\xf4\xf4\x85\x93\xcc\x97\xae\xf2\x6f\x99\x6f\x61\xcb\xa3\xfe\xd3\x9a\xe0\xfd\xf1\xd9\xd4\xb4\xf7\xd2\x52\xbb\x48\x0b\x13\xcf\xf8\x92\xf6\x55\x35\x3a\xf7\xef\x68\x41\x4a\x42\xe6\xc7\x5e\x90\x0f\x66\xb6\x07\x0b\xca\x32\xf1\x0a\x03\x7b\x9f\x6c\x3c\xbe\xe4\x7a\xa9\xd8\x88\x37\x35\xf9\xd0\xe7\xe4\xab\x44\x64\xbe\xe5\xa8\x67\x2f\x4f\x15\xaa\x16\x0f\x69\xf4\x8a\x87\xeb\x81\x1e\x92\x8f\x7d\x4d\x67\x23\x29\x06\x91\x51\x99\xd8\x17\x5a\x27\xee\x8b\x29\x66\x94\x57\xda\x03\x9b\x75\x35\x7d\x0e\x46\x06\x04\x26\xe9\xfb\xf4\xb7\xd4\xe4\x63\x37\x7a\xc7\x64\xcc\x9b\x80\x38\xf1\xa8\x52\x28\x3f\xaa\x18\x01\xa2\xa4\xb0\x49\x6e\xe3\x1a\x43\x4f\x5d\x59\x8c\xde\xb4\xe0\x68\x1b\xa2\xa1\x28\x09\x07\x0c\x93\xe6\x7a\xf0\x3d\x2c\x5a\x3e\xa9\xb2\x4b\x57\xae\x2f\x5e\xac\x1e\xbf\x08\xaf\x7a\xf2\xd6\x9b\xec\x42\x51\x14\xfe\x1e\x85\x07\xa8\xe3\x71\x0b\x88\xa7\x97\x75\x70\x05\xda\x84\xad\x73\xea\xd6\x9e\x9d\x28\xc8\xc3\x39\xa2\x26\x70\x28\xe6\xe5\x79\x4e\x8c\x99\xff\x5c\xe8\x42\xa9\x6a\x2a\x73\x31\x14\xaf\xc0\x05\x7e\x46\xef\x9d\x1f\x7a\xa0\xc4\x94\x4e\x04\x0a\x12\xfc\x29\xf6\x11\x33\xd6\x29\x6a\xb3\xe7\xa6\x12\xd2\x7d\x4b\xed\x5e\xb4\x56\xc5\x8e\x6a\x06\x08\xed\x07\x3e\xae\x45\x59\x79\xb1\xb1\x5b\xb1\x9e\xd2\xba\xc5\x5d\x9e\x28\x6b\x70\x25\xd5\x6c\x80\x89\x73\x42\x23\x95\x61\x77\xba\x77\x6e\xd4\xe6\xb2\x52\xc8\x7b\xcb\x66\xd4\x67\x54\x20\xbb\x13\x41\x6d\x80\x5d\x2a\x85\xc5\x60\x9c\x68\x85\x71\x98\x59\x11\x3a\x90\x05\xde\xb5\xb1\x57\x91\x45\xb4\xf9\x9b\xf4\xd3\x7c\x3c\xe5\x3b\x5e\x27\x1e\xa3\xb5\x54\x60\x53\xae\x78\xab\x26\xa3\xfc\x58\x6a\x1c\x11\x9e\xa9\x36\x04\x28\xee\x51\x4d\x5e\x6c\x69\xb9\xa8\x81\xcd\xec\x0a\xcf\x4c\x1f\xd4\x54\x58\x4a\x8d\x7a\xa9\x46\x7f\xb5\xe8\xba\x25\x2f\x68\xa4\x62\x61\x93\xea\xd6\x7c\x33\x55\xcb\xa5\x5c\x50\xc0\xbb\xdc\x3a\x5e\x26\x07\x9c\x3a\x2c\xcc\x31\xa7\xb5\x1c\xff\x38\xc9\x77\xd7\xa8\xea\x3d\x97\x1e\xc7\xf3\x52\x8f\xf4\x75\x26\x1e\x22\x45\xc0\x7e\x9e\xfb\xab\x30\xea\x60\xa5\xc2\xe7\x1f\xa8\xc2\x42\x11\x25\xab\x9c\x64\xb3\xa6\x46\xa9\x3a\xd5\x97\x83\xed\xb5\xea\xca\xe2\xdb\xa4\x1f\x25\xd6\x12\xef\x8d\xfe\x0d\x7e\xd0\x12\xac\xbd\x54\x67\x25\x8b\x48\x93\xa6\xa5\xb1\x3b\xf4\xd8\x05\xd4\xa3\x17\xf8\xa8\xf8\x16\xde\x89\xc0\x9f\x14\xd9\x16\x2a\xd7\xfc\x0f\x81\x62\x66\x7e\xa8\xe2\xbc\x61\x94\xa4\xb8\x2b\x44\xb0\x0f\xe9\x7d\xf0\xb1\x96\xc7\x2f\xd2\x70\x35\x7f\x4e\x8d\x8c\xde\x0d\x14\x47\xda\x8e\x89\x87\x15\x5c\x2e\xd5\x76\x3e\x01\x54\x43\x8d\xe6\x1b\xfe\xfb\x7a\xe9\xe9\x3b\x98\xf0\x41\xca\xb1\x64\x1b\x50\x2a\xf8\x09\xb0\xf4\x4c\xb9\x4a\xb6\x01\x99\x29\xf8\xc6\x35\x6f\x0b\x3e\xc0\xf5\x3b\xa7\x11\xe2\xb4\x12\x7f\x30\xb5\x6f\xde\x7c\xb3\x9d\x59\xd2\x64\x52\x62\xaa\xd0\xc4\x14\x4a\xaa\xa7\xfd\x3c\xe1\x88\x34\x28\xd1\xdd\xb9\x4e\x03\x09\x48\xb2\xfe\x09\x6e\xca\x0d\x6b\x56\x31\x23\xc0\x46\xdf\x57\xa1\xd8\x56\xe0\x11\x57\xa7\x55\x55\xf8\x0f\x34\xbb\xfe\x43\xf2\xc8\xc0\x03\xec\xa5\x59\x70\xac\xd0\xef\xd1\xda\x17\x1d\x54\x15\x1f\xb6\x26\xf4\x74\x55\x43\x7e\x99\x13\xbc\x9f\x60\x25\x20\xcb\xb8\xa7\x61\x1a\x73\xc0\xec\xe2\x15\xb3\x06\x25\x8c\xba\x90\x70\x88\x25\x55\x84\x15\xd3\x02\xf5\xcb\xf3\xed\x38\x4d\x57\x05\x0f\xe8\x52\x1e\xd5\xbe\xa1\xcf\xe3\x49\x3e\x54\xb2\xdd\xab\x69\x91\x76\xc7\xab\x51\x0d\xa5\x75\x3d\x50\x28\xad\xeb\xe5\x37\x55\x53\x72\x64\x33\x6e\xfc\xa7\xd9\x8c\xd2\xac\x38\xad\xa6\xc6\xf9\xc7\x04\x32\x3c\x3d\x7d\xb7\x08\x71\x56\x1a\x36\x52\x00\xc6\x8b\x2a\x2f\xa3\x16\xb1\x6c\xc4\x30\x4d\xd2\x61\x64\xf3\xd9\x1a\x16\xfc\xf0\x3c\x4f\x8c\xfe\x2b\x55\x9c\xfb\xac\x86\x0b\x7f\x5e\xe1\xc1\x8a\x88\x74\x34\xab\xb7\x82\xa5\x0d\xed\x11\x3e\x0e\xa4\x2d\x61\x6c\x96\x26\x66\x5c\x44\xa1\x89\x77\x3c\x2e\x49\x1a\x98\x78\x85\xd4\x1d\xf0\xfb\xa8\xc1\xc2\x63\xcd\x10\x96\x40\x06\x82\xe8\x39\x8a\xc4\x87\x8e\x5e\xbb\xe3\xe2\xe7\xe8\x29\xa1\x7e\x70\x93\xbc\xa1\x93\x30\x5c\x5a\xf2\x44\xdc\xd5\x37\x20\xd4\x7b\x18\x78\x55\x91\x07\x00\x61\x21\xf0\x38\x4d\x95\x0d\x74\x03\xbf\x0f\x4b\x00\x6f\xb7\x13\xfa\x1d\x6e\x62\xcf\xa9\x16\x7e\x1e\xb4\x7e\xf9\xaf\xf1\xda\xb8\x85\x45\x8c\xb5\xc1\x25\x43\xa6\xed\x0d\x3c\x69\x29\x37\x2a\x85\x67\xad\xb2\xeb\x5c\xb4\xd1\xc2\xf1\x9f\x94\xaa\x47\xc3\xf3\x87\x08\x5e\xc0\x73\x00\xe7\xfd\x8f\x60\x87\x70\x57\xc7\x68\x9f\xa1\xbc\x2e\x02\x41\x38\xfb\x0c\xb6\x47\xc0\x32\x4a\xff\xd2\xe6\xa3\xa8\xb0\x4f\xd1\xa5\x62\x0d\xbc\x87\x48\x07\x35\x68\x56\x21\x46\xb0\xfa\x65\xad\x98\x43\x3b\x9f\xe7\xa1\xfe\x5f\xca\xfe\x34\x46\xb2\x2b\xbb\x13\xc3\xab\x22\x33\xab\x58\x2c\xb2\xb8\x77\x6b\x30\x83\xbf\xa2\xe7\x2f\x9b\x23\xb8\x41\x0b\x96\xe0\x19\xcb\x1f\x5e\x38\x2b\x5b\xec\x2a\x4b\xc9\x42\x56\x35\xa9\x69\xfb\x03\x6f\xbe\xb8\x19\x71\x99\x2f\xde\x8b\x7e\x4b\x66\x25\x3f\x0d\x0c\xc3\x18\xd8\x80\x00\x69\x06\x16\xc6\x92\x6d\x19\x63\x68\x46\x90\x3d\x6e\xb7\xd4\xd3\x23\x5b\xad\xc8\x1e\xf5\x2a\xf6\xc2\xb5\x9b\xcd\xb5\x58\xfb\x9a\xb5\xef\x55\x59\xc6\x3b\xbf\x73\xee\x3d\x91\xf1\xe8\x81\xbf\x10\x11\xac\x8c\xed\xbd\x7b\xcf\x3d\xcb\x6f\xa1\xbb\xe6\x3d\xf3\xeb\xef\xad\x14\x04\x9f\xf7\xb8\x26\x85\xbf\xa2\x18\x22\x7d\xe3\x06\x8c\xc0\x73\x03\xae\x09\xbc\x7a\x67\x50\xf2\x54\xf8\xe2\x57\x4c\xbc\x5c\x64\xe9\xb4\xae\xf8\x7e\xa0\x6a\xff\x6b\x63\x33\x30\xd5\x86\xfe\xb6\xc2\x43\x77\xcd\xc0\xf4\x58\x62\x1c\xf5\xc4\x1f\x2b\x52\xc2\x1f\x37\xa9\x45\x16\xa5\xcd\x13\xd1\xcb\x45\xe4\x66\xde\x2c\x3f\xa9\xd3\x75\x3f\xf1\x31\x55\xb7\x4a\x2c\xb1\x85\x5a\xde\xdd\x15\x1d\x7c\xd1\x6b\xd6\x2b\x3a\xb1\x87\x77\x2a\xf5\xc4\x75\x4e\x80\x71\xc7\x31\x05\xe3\x8d\x40\xe8\x36\x45\xef\x9e\xd3\xb9\x8a\x4f\x5c\x68\xb5\x22\xa7\xbd\xdb\x34\x2a\xb0\x83\x61\xc9\xe0\x06\x0f\x37\xf6\xd2\x3d\x10\x83\x46\xcb\xe8\x07\x13\x30\x05\xd9\xc6\xb9\x49\x86\xfd\x56\xeb\x4b\x5f\x0c\xee\x2a\xa1\x64\xda\x50\x0c\xde\x81\xc9\xf3\x35\xb9\x70\xd8\x80\xb0\xac\xe0\xc7\xaa\x9c\x77\xe9\x52\x16\x67\xf9\xb0\x35\xc6\x55\xf1\x9e\x89\x1f\xeb\x6e\x10\x72\xcb\x87\xd4\x25\x60\x2e\x18\x9e\x90\x6d\x9c\xa4\x80\xb7\xa2\x30\xc6\x3a\xa7\x55\x22\xd9\x80\x14\x5f\x1a\xc6\x50\xb4\xa6\x8b\x27\xd7\x43\x23\xe2\xea\x98\x80\xe9\xb2\x2d\x9f\xa8\xe3\x0d\xfa\x98\x37\x28\xac\x60\xb3\x20\x4d\xf1\x12\x71\x21\x2e\x7c\x37\x52\x65\xdd\x9f\x61\xcb\xa3\xb6\x01\x7d\x4c\x2e\x0a\x7d\x7d\xfc\xd4\xbb\x38\x4d\x71\x13\xfe\x02\xc9\x3b\x33\x0d\x69\xcb\x63\x65\x7c\x23\x0a\x52\x12\x47\x15\xe3\xf2\x28\x7e\xa3\x22\xcd\xc8\x44\xf5\xd8\x48\x19\xd8\xde\x84\x4c\x01\x8e\xaa\xd3\x3e\x6d\x77\x69\xd7\x99\x94\x3b\x0f\x48\x3f\xee\x72\x6c\xe1\x67\x0d\x95\xe9\xaa\x4d\x92\xe9\x7a\x35\xd0\xce\xfb\x9f\x9e\xa2\x69\x9c\x68\xb9\x86\x09\xf5\xa3\xeb\xca\x03\xb5\xc9\x24\x76\xae\xbd\x94\x25\xcb\xfc\xe1\x58\xe7\xb0\x78\xe1\xc7\x13\x2f\x21\x31\x05\xd3\x73\xc3\x56\x68\xb5\x9c\x1f\x03\xc9\x6f\x55\x25\xd8\xbb\xb7\xfd\xe2\xec\x81\xdd\x74\x21\x84\x98\x11\x14\x79\xdf\x42\x8a\x01\x94\x0a\x84\xd4\xb5\x85\x22\x2e\x23\x80\x6e\xde\x43\xac\xbe\xa1\x58\x5d\x17\xb5\xb1\xea\x19\xdc\x44\x0a\x0f\xff\xdd\xe7\x3a\xad\x97\x44\x9d\x65\x83\x56\x0d\xae\xfb\xc3\x0a\x81\x92\x65\x4b\x3b\xc7\x68\x2e\xf5\xd7\x12\x4c\x4e\x98\x3a\xb1\x4c\x98\xb4\x05\xe9\xe3\xf5\x98\x08\x9d\xda\x07\x91\xd2\x90\x7a\x5f\x57\x24\xc3\xdc\x9a\x2e\xf9\xa0\xa3\x49\xcd\x6e\x5a\xfc\x04\x87\x81\xd7\xee\x79\x71\x56\x67\x26\x12\xa1\x36\xf5\xa4\x32\xcf\xc4\x6e\x02\x55\x3e\x6c\xfc\xf9\x71\x47\xe0\x1c\xaf\xd8\x55\x9b\x08\xa4\x14\x9f\xf5\x1d\x2c\x4d\x7e\x12\x05\xb0\x4b\x9a\xa5\x0e\x85\x31\x32\xf1\x4f\x70\x43\xf9\x49\x03\x80\xf0\x40\xbb\x6b\xc5\x18\x48\x5a\x23\xf4\x12\x29\xd9\x03\xcd\xac\x6b\x97\x5c\xea\x4a\x12\x83\xf2\x3e\x0d\x5b\xe8\x45\xf2\x9d\x07\xb6\xf4\x56\xcc\x4a\x58\xfd\xe0\xa7\x0a\xab\x93\xba\x42\x62\x8d\x38\x3a\xf8\x98\x13\x46\xe7\x93\xf4\xf2\xba\xec\x2d\x73\xd3\xb5\xd0\x25\xc4\xa9\x7a\x93\xa2\x09\xc2\xc4\x89\x91\xf2\xaf\x3b\xeb\x1b\xf7\x4b\x59\x56\x2e\x9a\x24\x51\xbf\x83\xb3\x4f\x49\xee\x1f\xd7\xf8\xf2\x65\xe9\x63\xe2\xa0\x04\x05\x8d\x1f\x8f\xe9\x8d\x24\x6e\xd9\x22\xb0\x8a\x62\x90\x6a\xe1\x5c\x8f\xd4\x98\xe0\x83\x51\xe8\x8b\xf2\x04\x56\x74\x19\x94\xfe\xfc\x15\x8e\x1e\xfc\x2c\x0a\xa5\xe7\x5d\xd5\x6c\x8d\x5d\x1a\xbb\x34\x35\xa5\x6b\x05\x92\x19\xff\x1e\x7e\xa2\x58\x62\x8b\x36\xb5\x4b\xce\xdb\xb6\xb0\xca\x5f\x34\x26\xf9\xd7\x00\x3e\x8a\x4d\x61\x05\x7c\x24\xc6\x59\x2a\x47\x38\xed\xc1\x47\x36\xe9\xda\x5c\x66\xfd\xe8\xb8\x4e\x03\xaa\x08\xc8\xd1\x51\xbc\x0c\x13\xd9\x07\xe3\x8a\x5c\x09\x16\x8c\xb4\x12\x43\x8f\x80\x45\x6a\xb0\xb4\xb2\xdc\x24\xc4\x0c\x40\x86\x89\xc2\x93\x1f\x77\x9a\xdc\x37\x57\x4d\x69\xf3\xd5\x2c\x5f\x2e\xa6\x54\x3a\x79\x5d\x19\x99\xb5\x3a\x4a\xef\xa1\x71\x5a\x99\x64\xc5\xb8\xe6\xff\x77\x46\xca\x91\xe5\x3b\x4d\xd0\xbb\x61\x9e\x0d\x5c\xea\x61\xcd\x98\x81\x5d\x57\x92\xd7\xd7\xa3\x00\x19\xe9\x2f\x66\x2d\x65\x76\x70\x46\x35\x0f\x27\x79\x34\x92\x4a\x24\x2e\xed\x1a\x8d\x1a\x39\xa3\x7d\xd2\xce\x44\x5b\x48\x97\xf3\xf3\xf5\x36\x3b\x08\x70\x27\x62\xf3\x25\xad\xc8\x7a\x89\x16\x36\xa3\x90\x95\xa0\xe0\xeb\x0a\xdb\xf9\x2b\xcf\xfd\xc7\xad\x90\xf1\x9c\xa3\x3c\x95\x1f\x37\x55\xd7\xab\xb6\xdb\x95\xce\x3e\x9a\x30\xbb\x3b\x01\xcb\xc9\x4e\xd1\xc8\xb5\x2f\xe3\x82\x8a\xef\x7a\x83\x3a\x66\x62\x52\x78\x14\xe1\x40\xbf\x86\x4c\xdd\x03\xf3\x16\x66\x05\x48\xef\x01\x65\xc3\xdc\x62\x72\xce\x51\x45\x38\x2c\xa1\x59\x70\x7e\xac\x5b\x98\xba\xf8\xe1\x20\x5d\xcb\x18\x21\x14\x45\xdc\x55\xc0\x8a\x7e\x40\x9f\x86\x4d\x7e\x3a\x0a\xfb\xe8\x6f\x28\xcb\xc4\x61\xcf\x59\x15\x74\x67\x5f\x1f\x05\xbc\x03\x1c\x1a\x3c\xf3\x21\x74\xf3\x37\xc7\xa5\x98\x8a\x94\x98\xdd\xd8\xfc\x3f\x45\xf4\xe0\x27\x2a\x23\x5f\xcc\xb3\xb2\x6f\xf3\x69\x65\x9b\x72\x3c\x52\x03\x38\x8c\xad\x44\xa6\x55\x29\x9d\x69\x37\x78\xb2\x15\x16\xce\xaa\xc0\x18\x5f\xc7\xe9\xc6\x4f\x54\xbb\x7b\x29\x37\xe9\xf2\x52\x95\x83\x31\x8f\x9e\x32\x34\x83\xf8\x71\x93\x00\xe5\x92\xb5\x01\xc1\x23\x2c\xdf\x96\x57\xd2\x38\x33\x81\x55\x5a\x98\x25\x4a\x64\xda\x52\x12\x6c\xe3\xf3\x80\xd0\x35\x23\xd8\xa0\x49\x5c\x51\x16\x33\x61\x08\xf3\x07\x1a\x52\x79\x8e\x52\x15\x94\x1c\xaf\xe1\x62\x7a\xb9\xb4\xfd\xfb\xf9\x36\x7d\x3f\x70\x7d\x5c\x6a\xca\x5c\xe4\x09\x91\xd4\xbc\x87\xcb\xc7\x4f\x26\x86\x99\x75\x94\xac\x4f\x30\xb8\x42\xd5\x8b\xc5\x17\x73\x7e\xae\xd5\xc8\x51\xc9\x28\x44\x78\x55\xec\x33\x4a\x15\xfb\x4c\x13\x18\x6a\x60\x0f\x7b\x61\x04\x36\xa9\xd5\x32\xd7\x97\x26\x40\x42\xfb\xf7\x1f\x6c\x97\x55\x9e\x66\x2b\xa0\x98\x1d\xf4\x8c\x80\x90\x6c\x9e\xf1\x30\xe0\x61\x96\x97\xf5\x56\x6b\x85\x85\xb3\x45\x22\x6f\xe2\x3b\xed\x6d\x27\x18\x32\x6b\x80\xd6\xb8\x26\xe9\x96\x5c\xb2\x8e\xcb\xfb\xf7\xcf\x8c\x51\xa9\x43\x3f\x1f\xb5\x28\x3a\x4a\x2d\x74\x23\x7c\x43\xa0\x2e\x99\x83\x61\xc4\x7f\xe0\xcd\xe2\x8a\xbe\x4b\x7b\x65\x96\xee\xa9\xaf\xa4\xd8\xc4\xd0\xfb\x73\xdb\x2c\x0a\x18\x60\x74\x6e\x37\x8f\xa0\x3e\x10\x45\xf3\xd6\xde\xbd\xbc\xb6\xfe\xd7\x91\xc2\x16\xdd\x8d\xb4\x50\x58\xa4\x84\xa7\xce\x51\x13\x10\x6f\x79\x1d\xc1\x02\x69\xd3\xff\x4c\xdf\x1f\x71\xed\xfe\x28\x20\xf9\x78\xa6\xa3\x44\x0b\x64\x88\x5c\xe5\x2b\x76\x4d\x40\x62\x48\x70\xff\x9c\xde\x84\x1f\x37\x32\xed\xaa\x34\xf5\xd7\x1c\xdf\x08\x3a\xbc\xfc\x78\x7d\xb2\x09\xf6\x7c\x1b\x70\x34\x39\xcb\xbc\x11\x72\xfd\x16\x82\x2c\x6a\x16\x40\x2e\x3d\x42\xd1\x43\xae\x42\x71\x76\xb1\xd1\x86\x7b\xb0\x56\x17\xff\x41\xbf\x11\x5b\xfd\x44\xa4\x84\x93\x4f\x28\x2c\xf1\x92\x89\xcb\x5d\x41\x5f\x16\x8e\x46\xb8\x21\xdb\x40\x0a\x43\xaf\xf8\x67\x23\x25\x81\x7a\x35\x52\x26\x83\xa7\x47\x41\xad\xfe\x01\x6e\x2e\x12\x8d\x6d\xeb\x01\x44\x7b\x60\x14\x92\x87\x53\x8a\x73\x38\x30\x79\x61\x06\xfc\x55\xbd\x9d\x5d\xfd\x55\xc5\xce\xae\xa1\x03\xba\x98\x54\x39\xf3\xc4\xd0\xda\x7d\x47\x69\xfe\xbf\xd3\x88\xfd\x1e\x66\x85\x0c\x77\x36\x81\xa9\xd8\x3c\xdd\x84\xf7\xae\xeb\xf4\x7c\x3a\x50\xaf\x58\x44\x07\x05\xc6\x03\x55\x99\x1f\x43\x25\xc3\xbe\x53\x4a\x18\x62\xd5\x14\xa5\xa5\x3b\xc7\xf9\x98\x27\x26\x2b\x0d\x0a\x35\xb4\xba\xa5\x00\x3a\xb1\xc9\x17\xb3\x74\x3a\x20\x19\x6e\x51\xb7\x9e\x1f\x47\x61\x2c\x73\x5b\xa5\xa5\xb7\x27\x52\x95\xbd\x7b\xdb\x03\x57\x24\xd6\x74\xfd\x4a\xc5\x4d\x44\x7f\x82\x1f\x8f\x1d\x7c\x59\xbc\xfc\x34\xfd\x21\xee\xe3\xf6\x4e\xa0\x88\xbe\x43\xdf\x01\x17\x17\x4b\x1d\xb7\xf4\x5e\x14\x86\xf7\xe7\xd0\x27\x40\x5b\xf3\xc2\x48\x29\xd1\x7e\x4d\xa9\x12\xef\x82\xe8\xb9\x70\x2a\x42\x93\xf2\x64\x34\x36\xce\xa6\xeb\xb6\x79\x09\x27\x09\x9a\xe4\xef\x8e\x02\x8c\xf8\x0e\x3a\x01\xb8\xf4\x97\xb1\x14\x51\x38\x5e\xc6\xdd\xe2\xaf\x41\x9d\x56\x85\x9c\xfa\xb2\xbc\x64\xa4\x14\xbe\xcf\xa8\x6e\x1d\x5b\x30\x3f\x4a\xe1\x4e\x08\xc1\xca\x4e\xf6\x8e\xb2\xb0\xbd\x56\x2f\xe8\xcd\xe3\xda\xc0\x7d\xd7\x7a\x00\x47\x9f\xe2\x2a\xc2\x8b\x19\x85\xbd\xae\x64\xbb\xff\xff\x6d\x50\xbe\xf8\xed\x23\xa5\xd1\x74\x36\x6a\xed\x9d\xdb\xbc\x44\x7b\x0b\xf9\xf2\xcc\xba\x0c\x34\xed\x8a\xcd\xc9\x6b\x09\xa3\x85\xcf\x76\x42\xfa\x74\x96\xf6\xd9\x58\x23\xd7\xd3\x51\x43\x7f\x79\x53\xa9\x71\x8f\xd9\x35\xdb\x15\x9b\x3c\x14\xf8\xfb\x00\x6f\x8b\x11\xb3\x62\x24\x9f\x56\x6e\xcd\x60\x3d\x8a\x21\xae\x9a\x3e\xfc\x31\x7e\x0f\x6b\xda\x69\xbc\xe6\xed\x48\xd7\x7a\xa6\x1c\x78\xd3\x15\x69\xef\xa8\xb1\xc4\xe9\x89\xe3\xfb\xe5\x97\xdb\x03\x6b\xcb\xa9\x40\x5c\x7c\x4d\xdf\x87\xf3\x94\x10\x8a\xaa\x73\xf8\xa4\xa5\xca\xfa\x9e\x28\x83\x48\xd5\x91\x71\x31\x48\xf2\x54\x69\xc9\x33\x47\x04\x75\x8e\xba\xfc\x44\x7d\xf7\xa2\x5a\x2c\x5c\x77\x0d\x28\x6d\xd6\x09\x8b\xc2\xdb\xff\x99\x82\xa5\x4e\x16\x78\xbf\xdc\x8e\xb3\x2c\xb1\x70\x05\x10\xb1\x4a\x5a\x0e\x38\xcf\xb0\xc7\x85\xae\x21\x5f\x2e\x7b\xd5\xe4\xcb\xc5\xb4\xd2\xe4\xb9\xa0\xd4\xb2\x4f\xeb\x59\xf2\x36\x06\xaa\xe0\x9f\x1e\xed\x3c\x12\xc8\x87\x15\x66\x6f\xac\x3d\xaf\xec\xb6\xdf\x6e\xe4\x11\xba\x62\x58\x95\xe8\x40\x78\x3f\xad\xc0\x94\xbd\xa8\x64\x47\xb2\x6e\x37\x81\x97\x96\x76\x18\xe2\xc7\x4d\xb6\x1e\xb9\x2b\x60\x32\x82\x1f\x83\x10\xcb\x8f\xb5\xab\x5b\x96\x0d\x50\x43\xb1\x43\x18\x35\x13\xd9\xd8\x1e\x0c\x30\xb1\x0e\xab\x97\xac\x38\xde\x37\x14\x34\x43\x32\xb3\xf7\xf8\xae\xaf\xe1\x8a\xf1\x13\xdd\x59\x28\x5c\x9a\xe5\x54\xfa\x60\xd3\x00\xd6\x85\x65\x75\x59\x9f\xc3\x0f\x7c\x1d\x5e\x9a\xa1\xef\xc0\xa0\xfd\xc3\xa2\x44\xfc\x24\xe8\x88\x65\xe5\x30\xab\xf2\xdc\xe1\x70\x47\xac\x39\xa2\x06\x94\x47\x14\xd8\x6d\xc5\x99\x38\x1b\xe0\x5d\xd9\xd0\x09\xef\x2a\xee\x4e\x5b\x53\xcf\x85\x59\xa6\x45\x76\x05\xcf\x80\xe6\xe2\x2e\x6d\x66\xb1\x6b\x02\xc8\x55\x67\x2a\x85\x7b\xd5\x88\xe4\x61\x93\xc2\xe2\x56\xb9\xf3\xfa\x6c\xed\xba\xc2\x0c\x87\x99\x4b\x4b\x8c\xd0\xb5\x10\xce\x48\x77\xaa\xb6\xf6\x36\xe7\xe7\xdb\x0b\xb3\x5c\x1a\xa3\x45\x73\x44\x03\x23\xce\xe1\x57\xf2\xbf\xd0\xd7\x10\xdb\x09\x49\x9b\xdd\x60\x98\x67\x2b\xb6\xbb\x23\x58\x61\xdc\x56\xdb\xe1\xb8\x76\xb5\xbb\x86\x34\x56\xf8\x91\x74\x5d\xd0\x49\x80\xf2\x80\xe8\xb0\x3e\xad\xde\xdb\x16\x85\xcb\x52\xc7\x3a\x65\x5e\xc8\x77\x5e\x56\xd8\x35\x35\x78\x2c\xed\xe1\xd2\x25\x76\x26\x4c\xf5\x8f\xe8\x69\x30\x54\x17\x78\x60\x1b\x29\x24\x35\xa6\xb7\xe8\xea\x5f\x6a\x50\xbb\x5f\xed\xbb\xb8\x6f\xa9\x8a\xa8\x8f\x55\x94\x7b\xb7\x54\xe9\x77\x6b\x1c\xe2\x5c\x98\xe9\x60\x4d\xf6\x09\xea\x49\x9e\xcb\xd3\x89\x28\x96\x58\xf4\x15\x64\x60\xaf\x48\x63\x89\xe9\xcd\x28\x72\x26\x5a\x42\x4c\xe0\x89\xc2\x7c\x63\x06\xe8\x26\x74\xba\xf9\x74\xc1\x81\xb0\x7d\x42\x26\x65\xff\xfe\x05\x0a\x76\xbc\x36\x38\x01\xa0\x9f\x20\xc9\x80\xd7\x86\xc9\xcd\x60\x20\xb6\xa9\xe8\xd5\xb1\xbf\x31\x3f\x51\xb8\x8d\x6e\x16\x57\x22\x1a\xa0\x72\xfc\x71\xe0\xd7\x84\xde\xc0\x8b\xb3\xf3\x64\xe1\x11\xf7\x5d\xd2\xcd\x2d\x8b\x97\x4b\x9c\xd5\x74\x39\xed\xd6\x5c\x12\x36\x6f\x2a\xec\x0b\xc8\xe6\x20\xd0\x6f\xa7\x76\x18\x2a\xb5\x9f\x4e\x56\x8f\x7b\x45\xc4\x07\xdf\x12\xaf\x39\x17\x8c\x10\x7f\xf5\x9c\x3a\x53\xca\x6c\xd1\xc4\x71\xb6\x63\x2a\x58\xd9\x7e\xac\x0c\x72\xee\xd2\xc9\x8b\xbe\x25\x4b\x26\xe3\x8f\xee\xab\x33\xfd\x78\xa4\x84\x8e\xef\x35\x28\x84\x0e\x13\x93\xa6\xf2\x7d\x58\x73\x67\xa4\x78\x1e\xd7\x9a\x14\xbc\xcc\xc0\xe6\x75\x0d\x2c\x8d\x46\x7c\x77\x1e\x41\x30\x86\x18\xe7\x02\x12\x96\x49\x47\xf9\x17\x67\xdb\x45\xdf\x2c\xdb\x62\x68\x45\xd4\x17\x3d\x63\xd0\xc0\x59\x66\x7c\xa4\xde\xe3\x86\x47\x50\xa5\xb6\xdc\x45\xff\x40\x8d\x5d\xf7\xf8\xba\xef\xbb\xfe\xda\x2f\x76\x42\x27\xfd\xf1\x4e\x7d\xf8\x33\x80\x63\xa4\x98\xe6\x68\x56\x61\x4d\x6f\x52\x96\x84\x61\x22\x9b\x7f\x29\x88\x90\xe8\x34\x4d\x4f\xd4\x72\xfb\xe6\xdb\x5d\x9b\xb8\x15\x60\x8b\xe8\xe2\x23\x17\xfe\xaa\x82\x94\x7d\x55\x61\xe2\x8b\x41\x96\x95\xa0\x39\x79\x97\x58\x5f\x10\x4f\x8e\x06\xe8\x22\x67\x15\x33\x31\x05\xa8\xd4\x52\xf6\x6e\x0d\xcc\xd9\xb8\x6f\x57\x69\xb7\x68\x10\xb1\x88\xc6\x3d\xaa\x86\x81\xa9\xd1\x94\x66\x64\xec\x28\x91\x91\x42\xf0\xc8\x5e\xf1\x57\xba\x55\x0e\x8e\x49\x4b\xb9\x46\xd1\x32\x11\x52\xaa\x22\xea\x99\x42\xf4\xb7\x3c\xed\xdc\xcb\x7b\x7d\x47\x9b\x25\xdf\x9c\x70\x1d\xab\x4f\x11\x68\x14\xb9\x9e\x29\x85\xe3\xc5\xf5\xfe\x78\xf1\x1f\xba\xa2\xbf\xf6\x2b\xbf\x32\x1d\x32\x12\x20\x3f\xa5\x73\xd2\xda\x2b\xe3\x00\x96\x92\xc2\xad\x69\xad\x87\xe6\x6f\x9a\x95\xcf\x28\x06\x15\x74\xed\x50\xb8\xee\x00\x56\x07\xa0\xb5\xa9\x4e\xb0\x89\x7a\x88\xca\x22\x88\x85\x5c\xc1\x71\x82\x02\xe6\x6b\xd8\x04\xf8\xf8\xbf\xc2\x25\xf2\x0c\x93\xe0\xe1\xca\xa6\xcd\x78\x33\x78\xeb\x03\xed\xfd\x3e\x45\x66\xe4\xd6\xad\xf5\x90\xda\x5f\x01\x7e\x42\x0c\xd8\x28\xcf\x41\x7b\xf8\x69\x5a\xff\x48\x40\x66\xd6\xd5\x8e\x79\x6f\xa4\x4a\x8a\x0d\x0d\x0a\x03\x5d\x85\xf1\x76\x28\xd4\x65\x0e\xf8\x99\x50\x03\xd9\xb2\x9f\x75\xb3\x24\xeb\x89\x02\x9f\xf0\xf3\x02\x78\xf7\xa2\x8f\xd6\x8c\x0a\x65\x34\x12\xa6\xa6\x77\x95\x3c\x27\x87\x62\xec\xc0\xd3\x63\xe7\xd4\xb0\x80\x78\x23\xcb\x89\xd3\x8b\xbc\xb4\xf8\xbe\x79\xaf\x8a\x47\xdf\x93\x9f\x28\xad\x8f\x7a\x1f\xc6\x2e\xab\x8a\x19\x25\x06\x72\x3b\x52\x73\xf4\xef\x62\xf7\xa3\x48\xfe\x50\x55\xbe\xc7\x08\x44\x83\xb2\xe4\xb6\xca\x31\xbb\x79\x35\x68\x8d\xb1\x7b\x3c\x99\xea\x6c\x83\xac\xd6\x41\x9a\x3d\xc7\x01\x34\x8a\x04\xe2\x1e\x7e\x32\x3f\x89\x34\xc9\xd8\xb8\x74\x67\xbd\x80\xb0\x32\x4e\xe0\xde\x78\x49\x74\x3f\x16\x63\xca\x10\x32\x82\x3b\xca\x93\xfd\x75\x0c\x49\xfd\x84\xb3\x5e\x72\xfc\xa4\xa1\xc5\xf9\x7c\x7b\x50\xae\xd0\x1d\x64\x5c\x9c\x2e\xaa\xbe\x3d\x91\x68\xbc\x38\x1b\x54\x82\x68\x05\x09\xde\xb2\xfe\x7c\xd4\x90\x2d\x48\xb6\xe0\xfc\xbb\x39\x76\x37\x9f\xcb\x9f\x53\x33\x55\xf8\x39\x0a\x8a\xba\x21\xca\xe5\xd9\x62\xc5\xc6\x48\x88\x24\x77\xe9\x15\x5e\x41\x6e\x7e\xde\x0f\xbc\x1a\x0f\xa2\xc5\x2a\xa1\x8e\x6f\x68\xfb\x7c\xa8\x90\x7e\x1f\xaa\x28\x51\xe5\x8b\xe4\xa6\xc8\xae\x21\x91\xca\x7a\xce\x29\xb6\xd1\x43\x74\x00\xa1\x53\x73\x57\xdb\x04\x9c\xf7\xac\xd2\xa2\x4e\x4d\x16\x93\x2d\x02\xe4\xe7\x54\x7a\x7c\x4e\x35\xb6\xfa\xb6\xdb\xe3\x0d\x24\x19\xbd\x7a\xd7\x23\xa3\xe0\x38\x1a\x57\xc9\x54\xbd\xe0\xf1\xdd\xaf\x2b\xeb\x3a\xb6\xaf\x94\x25\x18\xe2\xb2\x49\xca\x7e\x56\xf5\xfa\x8f\x05\x5e\xda\x2d\x02\x6a\x79\x6f\xf8\x3a\x34\xb1\x35\x0a\xad\x76\x14\x20\xdc\x06\x19\xab\xe1\x90\x02\xbf\x83\x8f\x62\x14\x0e\x95\xfd\x28\xda\x4e\x20\x02\x89\xcd\x4a\x48\x94\x8f\x23\xe4\x09\x17\x1c\x29\x01\x62\xe9\x77\x55\xe4\xdf\x0e\x43\x6b\xfe\x62\xb8\xfc\x62\xcc\x26\x48\xbc\x38\xcb\x7d\xbd\x82\x48\x82\x6b\x81\xcc\xd8\x23\xc7\x83\x95\xe7\x8d\x48\xeb\xbf\xf5\x0d\x89\xbf\x18\x96\xb7\x62\x38\x6c\xa4\x10\x9e\x3f\x55\xe6\x50\x47\xf5\x8e\x77\x79\x39\x5d\xbf\xc6\x5b\x6a\x06\x87\x47\x56\xe3\xf1\x93\x2e\xb5\x24\x43\x21\xbd\x94\xac\x81\x84\x84\xf6\x07\x38\xa1\xaa\xe1\xe2\xbb\x2f\xa4\xe0\xc4\x7f\xb4\xde\x24\xd2\x98\x56\x79\xe1\x09\xdf\x12\x3c\xeb\x0f\xe5\xa1\xad\xea\x4b\x5f\x1a\xb5\x3f\x65\x36\xb9\x96\x15\x7d\xd7\x77\x85\x51\xc6\xd2\x0c\x2d\x10\x89\xe6\xd0\xbd\x1f\x9a\xd8\x0e\xcc\xb2\x65\x99\x1d\x2c\x4c\xd8\x70\xf1\x63\x85\x8b\xca\x56\x6c\x5e\x56\x79\x0a\xb2\x04\x5b\xfa\x8f\x54\x3b\xef\x6c\x93\x17\xf7\x6a\xdf\xda\x24\x71\xcb\x3c\x9a\x11\x4f\x89\x96\x72\xbd\x0f\xad\x83\x22\xab\xca\xfe\x2e\x5a\x6d\xaa\x7a\x9b\x0f\x13\x3f\x8f\x94\xbb\x8a\xf5\x2d\xeb\x30\x1c\x97\x40\x18\x62\xfa\xc1\x3c\x54\x4d\x2e\xc2\x4a\xba\x35\x52\x0e\x65\xef\x2b\xd5\xec\xa2\xcc\x6d\x5a\x65\x55\x91\xac\xb5\x26\x8e\x4d\x41\xe7\x2a\x72\xaf\xc9\x6d\x62\x0b\x5c\x3d\x8c\x33\x1e\x28\x8e\xe3\x03\x45\x00\x2f\xfb\xd6\xe5\x8f\x87\xaf\x70\x65\x8c\xe8\x55\xef\x4f\xdc\xf1\xbb\x5a\xfb\xf9\x2a\xb7\x10\xd1\x4c\xfb\xef\x29\x7d\x45\x07\xf1\xdb\xd8\x7a\x58\xb4\x9b\xd8\xa0\x08\x5d\xdf\xd3\x84\xa6\x53\x8a\x5a\xf6\x28\x09\x82\x09\x3e\x95\x7e\x1d\x8e\xcc\xf7\x47\xaa\xd0\x98\xe9\x04\x4b\xa4\x87\x90\x04\x61\xc6\x7a\x27\x52\x26\x52\xf7\x9a\x64\x51\xdd\x80\x31\x02\x9f\xa2\xb0\xd9\xc4\xa1\x37\xdd\x15\xb0\xf4\x43\xea\xf6\x3b\xe8\x19\xf2\x93\xa6\x0f\x22\xa9\xe9\xa5\x35\xca\x78\x95\x79\xa7\x64\x55\xe7\x95\x7a\x58\x6e\x87\x59\x5e\xda\xee\xc3\x2d\x2f\x7d\x3b\x43\xa5\x02\x06\x8f\xbc\xbe\x90\x8b\xbf\x47\x19\x18\x36\x5b\x8b\x2e\x03\xd2\xbc\x6b\x23\xd5\x3f\xbf\x8e\x6e\x30\x93\xb7\x30\x0a\x67\xab\x80\xd1\xb8\x35\xc7\xc2\x2c\xbf\xef\xdf\x34\x39\x48\xc6\xa6\x2a\x20\x61\x8a\xd9\xf2\xd9\xb1\x95\x4e\xdb\x5e\xec\x50\x45\x17\x65\x68\x56\xc4\x3e\x12\x97\xf4\xb5\x91\x82\x2e\x20\xbd\x41\x2d\xae\x95\x07\x62\xb7\x22\xca\xc4\x42\x0f\x53\xca\x03\xef\x35\x29\x5c\xfe\x3b\x79\x30\xa1\x5f\x6e\xea\xaa\x38\x35\xad\xfa\xc4\xe2\x3e\x3b\x36\x9d\x34\xdd\x43\xa9\x3e\xcc\x33\x31\xaa\x43\x84\xf7\xb6\x95\x5e\x3d\xf8\x16\xd6\x98\x30\xbd\x02\xf7\x2a\x67\x9b\x90\x26\xd5\xb3\xad\xfc\x0f\xf2\x6a\xcc\x57\xac\x4b\x42\x82\xd0\x44\x57\x7a\x4c\x61\x33\xbb\x55\x6c\x77\xd6\x77\x4c\x4c\x7f\x5b\xde\x3a\x75\x5b\x87\x6e\x38\x9f\x9e\x4a\x42\x99\x82\xc8\x97\x37\x8f\xe0\x72\xe2\x08\x7e\x4f\x17\xae\x93\xf7\x7d\xdf\x7c\x7b\x68\x52\x17\x4f\x69\x4f\x3d\x25\x93\x7f\x4d\x09\x6e\xbd\xa5\x2e\x5d\x69\x13\x0b\x7f\x0c\xae\x8b\xb4\xc2\x97\xf8\x49\x35\xe9\xbf\x54\x65\x62\xcb\xb1\xf1\x21\xd8\x1b\xc2\x9c\x0c\x33\xab\x61\x52\x9f\x05\xd2\xbc\x13\x85\x83\x8d\x31\x91\x91\xad\x1b\xf8\xe5\x97\xdb\x55\xea\xd2\x15\x57\xf2\x06\x46\xbe\xf0\x0e\xee\x22\x3f\x19\xcb\x11\x5d\x81\x99\x1d\xda\xa9\xa7\x95\x24\xf3\x69\xdf\x18\x4d\x89\xcc\xec\x6c\x4e\x51\x15\x85\xe4\xeb\xa8\x68\xf8\x49\x23\xcb\x60\x98\x67\x4b\x4b\xd6\x77\x58\x30\x07\xf8\x43\x45\x03\xfe\x43\x2f\x30\x34\xb0\xb9\x2b\x5b\xaa\xcc\x3f\xad\x38\xc6\xa7\x95\x13\xdd\x73\xff\x39\x93\x7c\xd0\xea\xfb\x37\xb4\x54\x91\xc7\xc0\xda\x69\x6c\x98\x87\x44\x63\xd2\xc8\x76\xff\xfe\x76\x8c\xa3\xbd\x15\xe6\xfe\x9f\xa0\x71\x23\x9d\xb8\xad\xc7\x39\x09\x5b\x0e\x73\x5b\x90\x8c\x9c\x60\xff\xb4\x98\x1b\x3f\x0e\xc8\x89\xc4\x0d\x87\x12\x1f\x50\x5e\xcc\x74\xc6\xf0\x16\xea\xa8\xbe\xb7\x95\xd5\x7e\x60\xe1\x40\xfb\x39\x5c\x39\xa5\xc8\xe0\xe5\x19\x54\x1f\x2c\xce\x52\x22\x69\x53\xeb\x06\x94\x97\x9d\x94\x39\x4b\x12\x4a\xd7\x02\x95\xc3\x75\x55\xad\x55\x29\x0b\x61\x53\xd8\x66\x0b\x57\x64\x5b\xe2\xe7\xfa\xb8\x02\xf4\xc6\xa6\x64\x7a\x94\x37\x5a\xf7\xfa\x92\x6f\x4d\x6c\x2c\xaa\x27\xaa\x5e\x5f\x29\x91\xc3\x2f\x86\x1f\xaf\x6f\xad\x8d\xe6\x0e\xb5\x07\x2e\x01\xd6\x02\xcb\x1b\xe2\x04\xfc\x38\x92\x8c\xbf\x9f\x15\x43\xc7\xde\x04\xca\xaa\x2e\x70\x57\x6e\xea\x23\x20\x54\xc5\x2e\x5d\xc9\x92\x15\x5b\xcc\x28\xbb\x8f\x8b\x63\x26\xe1\x41\xea\xef\xeb\x4f\x74\xd4\x60\xec\xc4\x48\x51\x86\xee\x35\x80\xe1\x0f\xb6\xfb\x36\x19\x6a\xfb\xff\x8b\x0a\x4f\xf2\x3f\xe2\x24\x14\xfc\x9e\x62\xb8\x15\xf5\x5a\x72\x26\xa9\xf3\xd5\x20\x32\x89\xa2\x5e\x7c\x27\xb4\xd8\x58\x18\xe9\xfd\x49\xf4\x99\x89\xd5\xf2\x4b\xed\x03\x73\x87\x14\x9d\xf0\xc7\x8a\x4e\xf8\xe3\x26\x08\x7f\xaf\x72\x5d\x5c\x44\xec\x93\x6b\x3a\x29\xbd\xaf\x8d\xed\x3e\x99\x68\x1a\x2e\xcc\xb6\x13\xb7\x68\x73\xa8\xcf\xe1\xa7\xe3\x6c\x3e\xaa\x78\x4f\x8c\x15\x47\xa4\x9e\xd4\x09\x5b\x98\x6d\x57\xc3\x45\x6b\x4a\x6d\xdc\x32\x52\x84\xe4\x91\x1a\xc3\x7f\xa5\x32\x79\xce\x53\x3d\x2f\x1e\xe1\x1d\xba\x21\x72\x26\x24\xc6\x09\xec\x63\x7d\x75\x96\x5c\xb7\x8a\x9d\x68\xd9\x22\x77\xb8\xad\x06\x18\xb7\x15\x8d\xc0\xf4\xa8\x74\xe9\xb6\x42\xff\x89\x07\xe8\xfc\x64\xa2\xb4\xdf\xbb\x37\x78\xa2\x89\x26\x5d\x7d\xef\x04\x69\xa1\xc0\xf8\x67\xc6\xd8\x00\x55\xd7\x71\xeb\xd6\xfb\xec\x86\x31\x8f\x36\xe8\xb9\x3f\x01\x8d\xa8\x13\x2f\x93\x48\x03\xdf\xb3\x38\x34\x2f\x35\xc0\xe3\x62\xd3\x5d\xb5\x49\x82\x91\xee\xe6\x69\xca\x09\x36\x4f\x4f\xf0\x54\xf6\xce\x51\xca\x6d\x06\x12\xb6\x95\x30\xcf\x9c\x17\xe6\x09\x32\xa8\x26\xcf\x4d\xda\xc3\x39\x85\x9b\x23\x99\x76\x80\xb4\x6d\xa7\xb6\x18\xba\x6d\x6f\x8e\x21\x1c\x92\x6c\x48\xa5\x9e\xc8\xb5\x8c\xa3\xa0\xfc\xdd\x45\xee\xc6\x7f\xd4\xc4\x99\xcf\x6d\x9c\xf5\x52\x5a\x8a\x1a\x93\xa9\x58\xb9\x77\x94\x90\x80\x96\xd1\x19\x16\x6b\x49\xe2\xaa\x01\xa8\x2c\x08\xae\x17\x22\x35\x6a\x39\xaa\x8e\xc4\x5b\xa3\x30\x54\xcc\x7b\xb6\xdc\xe5\x9b\xe5\xfb\x3f\xdb\x51\xf3\x8d\x13\xb8\xdd\xa2\xc3\x4b\x0b\x07\x6b\xf6\xd8\x48\x75\x8b\xce\x8d\x94\xa3\xdb\x55\xe5\x12\xf2\xed\x28\xc0\x30\x76\xac\x07\x0f\xe6\x23\x0d\x74\x87\xf9\x76\x9c\x8b\x59\x3a\x60\xbb\x47\xb5\x67\xdb\x51\x95\x1a\xf6\xab\x9c\xc4\xba\x5a\xde\xab\xe8\xa8\x32\x49\x3f\x3a\x0a\x48\xea\xae\xcb\x6d\x0c\x01\xe7\xfa\x5b\xa1\x05\xf8\x96\x6e\xfa\xbe\x35\xd1\x7c\xdb\x37\x4f\xf4\xff\xbc\xa8\x77\x0e\x44\xcf\xb5\x3d\xba\x87\xf3\x2a\x69\x08\xfa\x9e\x92\xb8\x87\xa6\xdc\x52\x96\x57\x34\x58\x7e\x5e\x38\x44\x51\xa8\xb3\x00\x18\x17\x6e\x51\x7d\x6d\xf8\xff\x37\xe9\xb0\xc4\x26\xef\x3a\x03\xa1\x6c\x5c\x73\x64\x5b\xfc\x58\x09\x9a\x27\x2e\x95\xb4\xcc\x9b\xbf\xd5\xab\x47\xcc\xdf\x9a\x2e\x3c\x64\xf0\xc6\x3a\x7e\xf5\xf7\x91\x56\x60\xa8\x4a\x87\x7d\x97\x24\x6e\x58\xa0\x87\x87\xed\x0c\x8f\x53\x9c\x10\x97\x47\x41\x47\x77\x5b\x67\xf2\x77\xcc\xb5\xeb\x7a\x9d\x99\x60\xa2\x91\xad\x61\xbe\x4a\x54\x3c\xb7\x2b\x8e\x44\x4e\x17\x0e\x78\x2d\xb3\xf0\xee\x67\x95\xe5\xda\x62\x62\x5c\xce\x10\x0f\xe5\x52\xe8\x75\x91\x26\xba\x91\x34\x31\xec\xbb\xd4\x16\x98\x45\x03\x9d\xc0\xc7\x06\x3f\x51\x79\x49\x51\x52\x68\x60\xe9\x1c\x2f\xb2\x16\x08\xf1\x67\x27\x4e\x04\x0a\xd4\xab\x59\xbe\xac\x9a\x88\x17\x54\x13\xf1\x82\x9a\x89\x9a\xae\x83\xcf\x89\x68\x69\xb4\x82\xae\x86\x92\xef\x2f\xaa\x5e\xcf\x16\xbc\x96\xf7\x09\x3b\x8a\x5b\xed\xfc\x64\xa2\x62\x39\xf4\x02\x18\xfa\x83\x61\x96\xd3\x89\xf1\xa2\x58\x34\xde\x1a\x85\xfc\xf5\x56\xfd\xfd\xe5\x30\x4f\x4b\x4a\x0f\x53\x5b\xe5\xce\x24\x60\xba\x4a\xca\x4e\xb7\x5d\x72\xf6\x09\x2f\xd7\x17\x0e\xb6\xab\xd4\x9a\x42\x83\xe7\x2e\x28\xf0\x5c\xd0\xe1\xec\x1a\x97\x90\x8e\xb6\x37\x21\x40\x04\x61\x57\x76\xd5\x99\xfb\x5c\x27\x10\xe0\xee\x8f\x54\x2d\x48\xab\x0e\xd1\x6c\xf7\xfa\x56\x1d\xdf\x43\x2f\xb4\x17\x81\xd1\x17\xa4\xa8\x42\x54\x9c\x1b\x69\x77\xff\x9e\x4b\x77\xd0\x0e\x05\xc3\xed\x89\x8e\x12\xc3\x51\x7e\xfa\x3b\xd6\x95\x10\x08\xd2\x2d\x96\xa0\xa4\x25\x8f\x3f\x7a\xa3\x49\x9d\x7c\x98\x67\xdd\x00\x95\x13\x91\xda\x90\xe2\x9f\xd1\x8a\xe4\x43\x56\x45\xac\xdf\x13\xcd\x91\x4b\x04\x90\xe3\xc7\x2a\x06\xf2\xf4\x8c\xb8\xcc\x28\x77\xa7\x3a\x4a\xfe\xe2\x06\x5d\x1f\x5c\xcf\xf3\xca\x28\xf2\xbb\xea\xc8\x58\x76\x79\xcf\xbd\x5a\x2f\xbe\xb9\x43\x1e\x55\x15\xc4\x35\xff\x58\x6d\xb1\xa1\x39\x5c\x71\xf9\x36\x26\xc3\xc0\x4f\xa2\x49\x39\xcb\x76\x51\xba\x41\x95\x40\xa8\x9a\xee\xb4\xf8\xea\xd2\xb7\xe4\x27\x0d\xac\x21\xb0\x2c\x0a\x39\xb6\x31\x47\x65\x82\x27\x3f\x69\x30\xd3\x9f\x6b\xe7\xc6\x25\xab\x66\x8d\x12\x17\xec\xe1\x7b\xca\x87\xf8\x06\xdd\x32\x7c\xea\xcf\x9a\xfc\x86\x7a\x49\x56\x14\x6b\x2d\x95\x74\xe0\x2e\xf3\x63\xc5\x23\x8f\xab\x3c\x27\x3e\xeb\xa3\xad\xbd\x73\x9c\x17\xfd\xd1\x48\xd9\x11\xe2\x94\xc7\x62\x3b\xa5\x85\x30\x8f\x8c\x34\x66\x0a\x07\x00\x8e\x10\xa4\x7d\xa8\xfe\x19\x9a\x88\xcc\xf3\xfe\x68\x0c\x07\x19\xec\x97\x6f\x47\xad\x2f\x7d\x91\xd3\x8a\xdf\xa7\x89\x33\x3f\x8e\x54\xd3\x60\x33\x1a\xf7\x81\x2d\x1e\xa1\xb7\xc6\x49\xf5\x01\xfa\x4d\xa0\xf1\x31\xb7\x01\xfd\xbc\x6b\xf8\x35\x48\x27\xaf\x62\xd7\x63\xc4\x01\x67\x7b\xed\xa9\x23\xe8\x9b\x60\x5a\x70\x1b\x49\x03\x12\x4c\xb8\x9d\xa1\x6b\xc1\xd3\x52\x76\xd0\xa3\xa6\x29\x8e\x8d\xbb\x13\xf5\xff\xfc\xfc\x81\xf6\xa2\x49\x4c\xd0\x7d\x02\x82\x98\x95\x57\xf9\x49\x13\x2b\x61\xd1\xa9\xdd\x06\xc0\xc2\xcc\x7a\x00\x2f\xcc\x74\x9e\x50\xc4\x29\x53\xe6\x2e\xb6\x2d\x35\xa9\xdd\xd0\x62\x8b\x4a\xe7\xc4\xc4\x5f\xa9\x5c\x1e\xf4\xb5\xbc\xa8\x9f\x47\xd4\xdf\x40\x23\x81\x65\xbc\x71\xab\xc4\x50\x46\xd5\x5d\x5f\xc5\x2f\x40\x37\x68\xa6\xa3\xd8\xdc\x36\x5d\x76\x29\x1a\xbe\xca\x07\xfb\x80\x97\x7e\x19\xb7\x7e\x82\xe7\x15\xe0\x4d\x02\xbc\x56\x05\xfa\x03\xc0\xd6\x3c\x3e\x3b\x68\xa6\x3c\x50\x41\xa4\x97\xb8\xb2\xb4\xf9\x94\x4a\x13\x01\x96\xf0\x23\x92\xf9\x79\x1e\xe3\x5e\x6d\x64\xa8\xae\xf6\x1d\xe3\xb9\xbc\x54\xf8\x3e\x51\x0d\xd8\x68\x68\xda\x1f\x6c\x17\x59\xe2\xba\x6e\x69\x0d\xc1\x44\x06\x18\xf4\xcd\x65\xb4\xf1\xa4\xdb\x3a\x2d\xc6\xc1\x85\x3b\x78\x5e\x41\x51\xce\x2b\xe3\xb5\x6c\x68\x91\x1f\xe1\xe6\x31\xd0\x83\x9f\x4c\x96\x39\x73\xc4\x5f\xa1\xe3\x99\x75\x85\x95\x30\xe2\x24\x14\x62\x7e\xbe\xdd\x77\xbd\xfe\x4c\xf8\xa9\xdb\xc6\x2d\x70\xc2\xfe\x9d\xa6\x11\x3b\x2c\xc9\xb7\x77\x14\xc9\xf8\x8c\x4a\x6f\x8c\xcd\xb3\x45\x52\xe4\xae\x2f\x03\x72\xea\xd7\x94\xf5\xcc\x6b\x4d\x7c\xca\x83\xed\x2e\x59\x92\x50\x8c\x43\x79\x72\x3b\x52\x8c\x98\x53\x9a\x7d\x35\x29\xdb\x4c\xfd\xd7\xd4\x26\xd5\x61\x45\x34\x79\x7b\xa4\x88\x26\x6f\x6b\xf8\x69\x3f\xcb\xcb\x64\x6d\xba\xb5\x77\x6e\xf3\x08\xf5\xaf\x3d\x56\x6e\x5f\xc0\xa0\xb5\xe6\xe7\x37\x8f\x8c\x69\xfc\x7c\xa5\xb2\x09\x7e\x95\x96\x98\x12\x30\xa7\x72\x6c\x88\x4b\xb7\x62\xa4\xbf\xd7\x84\x3c\x6f\x38\xd5\xbb\xe8\xf1\x88\xb6\x21\x7d\x75\x7e\x12\x7d\x46\x99\x24\xc8\xc8\x4f\xb0\x5e\xde\xea\x28\x4c\x08\xcf\xfb\xa4\x79\x68\xf2\x60\x1d\xa4\xe5\xb6\x71\x0e\xa2\x29\x26\x6e\x33\x5b\x4f\xba\xb9\x43\xf5\x81\x45\x3e\x93\xd4\x4b\xf3\xd3\xa7\x93\xf4\x5b\x84\x78\x1e\x3a\x7f\xc3\xc2\x4d\x85\xd1\xf0\xcf\x47\x0a\x61\xf0\x40\xfb\xca\x4c\x4d\x68\xbf\xed\xdf\xdf\x1e\x26\x66\x8d\x8f\x53\xd6\xcc\xa6\x4f\x11\xfd\xec\x86\x57\x2c\x92\x4d\xac\x92\xf5\xd9\x50\x4a\xa9\x1b\x51\x60\x6b\x2e\x67\x71\xbf\x15\x86\xd9\x6f\x21\x8a\xf3\x13\xed\xb4\x31\xa0\x4e\x7b\x55\x4c\xab\x7e\xf1\xc9\x91\xb2\x1a\x39\x06\x28\x09\xff\x4b\xa4\x5a\x42\xc7\xc6\xd4\x28\x7b\xfd\x92\x94\xbc\xb0\x92\x39\x31\x40\x81\xf8\x81\x66\x94\xc8\xac\xca\xab\xb4\x2a\xb1\x9c\x4e\xf8\xf9\x3b\xd6\x43\xa1\x3d\x99\x58\xd4\xd1\xca\xae\xd9\xc5\x3c\x43\xbf\x5f\x2a\xe4\xfa\x35\xfc\xd8\xa7\xa7\x24\x0b\xa2\x12\x89\xf3\x91\xf2\x45\xc1\x0d\x43\xe2\xf3\x27\xbe\x8e\x1e\xda\xe1\x90\x61\xdd\xde\x85\xeb\x37\x5e\xf2\x2e\x5c\x5b\xbf\xcd\xc2\x2c\x69\xa1\xdb\xd2\xc5\x34\x56\xf6\xf2\x5b\xf5\x55\x44\x67\xf1\x88\x02\x95\x5c\x57\xd7\xdf\xa5\x4b\xf5\x39\xc4\x8a\x5b\x5e\x39\xdb\xf3\x3c\x8f\xab\x98\x58\xba\x14\xb6\x7a\x5e\x3a\xdd\xd3\x24\x99\x39\xcf\xb2\x0c\x38\xfd\x71\xc7\x8e\xea\x0c\xed\xe2\x78\x8f\x27\x2f\x20\xd3\xeb\x79\x6d\xde\xf8\xff\x28\x85\x05\x91\x7a\xa5\xa5\x81\xd4\xe8\x1f\x21\x21\x11\xc6\x36\xdd\x3c\x46\x3f\x28\x30\xd9\x79\xfc\x74\x0c\x28\xfe\xf9\x44\x1d\x23\x33\xe8\xd4\xc5\xfd\x2c\xc1\x21\xe9\xd7\x69\x50\x1e\x79\x6b\xa2\xb5\x44\x2c\xf4\x2c\x4b\x54\xfb\x16\x1f\x2b\xe2\xea\x5b\xef\xcc\xcb\x2f\xb7\x17\x6d\xbe\x6c\x13\x4f\x8e\x1e\x53\xc6\x94\xca\xe0\x09\x3d\x7c\xea\xe5\x66\x50\x3c\x1c\x22\xc6\xbd\x91\x52\x9c\xe1\x17\x4a\x23\x50\x19\x1a\x6c\x57\xf6\x34\x47\x70\x78\x23\x69\x7a\x07\x7b\x0f\x0b\xee\x1a\x5d\x64\xb4\x36\x4e\x46\xc1\x59\xf4\x5f\x45\x61\xe8\x7a\x76\x4c\x42\xc5\xe6\x6b\x4f\xd2\x35\x07\xbc\x80\x85\x26\x94\xc0\x8d\x58\x4b\x7e\xc8\x1b\x0b\x37\xea\xb4\x46\x96\x7d\x48\xb5\x96\x78\x3c\x29\x4b\xb2\x7b\x91\x92\x6b\xba\x3f\x0a\x07\xc9\x07\xf4\xdd\x50\x9d\xb1\xe0\x02\x76\xcf\x15\x64\x93\xc0\x23\x9f\xa0\x81\x34\xc0\x3b\x3b\x3a\x8a\xa9\x04\x23\x00\xe1\x96\x04\xf5\xa5\x47\x3a\x61\x1a\x30\x8d\x81\x19\x7e\x73\x6b\x7d\xeb\x22\xd9\xbf\xbf\xed\x06\xc3\xc4\xc5\x6c\xd9\x15\x50\x93\xe7\xc7\x1d\x98\x1a\x7a\xc8\x45\xe9\xa4\x4e\x61\xeb\x2d\x44\x20\xf1\xe1\x6a\xb0\xa8\xb1\x69\x9c\x55\xb9\xe9\x09\xa2\x90\x93\x3d\xa5\xc0\x7d\xd1\xab\x04\xd6\x47\x0c\xb9\x12\x7a\x71\xe9\xc0\x42\xbb\xc2\xf0\x16\x01\x3b\x07\x38\x24\x3c\xaf\x19\xf7\xa7\x3d\x1b\x30\xc5\x08\x43\x3b\x59\x95\x74\x03\x65\xbd\x36\x48\xa9\x0e\xcc\x8a\xcd\x5d\xbc\xac\x27\x54\xe3\x2a\xb8\x0d\x1a\xcd\x49\x56\xa5\x3d\x3b\xd6\x57\x54\x42\xfd\x77\x94\xd9\xe7\x29\x45\x29\xb6\x83\x61\xdf\x14\xee\x55\x8b\x0e\x02\x16\xf6\x19\x1c\x06\xfc\x44\x35\x96\x8a\xb5\xc1\xd0\x94\x7d\xae\xbf\xb0\x22\x30\xb2\xe4\xc7\xaa\x48\x26\x47\xff\x2e\x77\x48\x91\x47\x5f\xc7\xa2\xf4\xd6\x49\xc1\x1a\xba\xb1\xb2\x28\xca\xaa\x6b\x7d\x9b\x4c\x56\x85\x82\x72\xea\x39\x7f\x37\x1b\xb8\x94\xec\x3d\xf7\xee\xf5\xd8\x91\x3a\x1d\x12\x84\x48\x83\x50\x40\x99\x9b\xb4\xe8\xd9\xd4\xc5\xd0\x71\x12\x5b\x80\x50\xf2\x68\x93\xff\x5f\xf9\x07\xff\x60\xaa\xde\x15\xa8\x29\xae\x45\x9a\x15\xa2\x54\x1c\xde\x53\x53\xeb\x57\xb2\x45\xb4\x4f\x54\x87\x78\xce\x7b\x93\xd3\x15\xc7\x0e\x65\x54\x1d\x0a\xb0\x2b\x63\x68\x5f\xba\x15\xc2\xef\x96\xa9\x14\x7d\x73\xe7\x9d\x94\x11\xc2\xae\x2a\x26\xd3\xd5\x51\xc8\xb3\x4c\x77\xe0\x52\x57\x94\xb9\x11\x5d\x47\xc4\xff\xcb\x51\x98\x68\x5d\x9e\xa8\x1b\xf6\xcd\xb7\x13\x6b\x7c\x81\x2f\x86\x5a\xf5\x4b\x04\x3a\xe7\x65\x3d\x12\xd3\x2b\xfa\x0e\x2a\x48\x68\x2f\x4f\x53\xd0\xe4\xc7\x0d\x96\xa9\x07\xdb\x65\x5e\x15\x65\x4b\xe9\x8f\xa1\x4a\xe3\xc7\x9a\x1c\x66\x88\x6d\x3b\xad\x18\xce\x7f\x34\x0a\x27\xda\x49\xb5\xca\xff\x88\x82\x9b\x64\x34\x7e\xda\x5b\xa5\x8e\x15\x28\x44\x11\xa4\xe5\x95\x16\xb5\x6f\xc7\x07\x4d\x9b\x31\xeb\x76\x5d\xe9\x24\x7a\x48\xc5\xa5\xe4\xb0\xcf\x44\x9f\xfb\x94\x63\x90\xda\x6c\x2e\xb5\x45\x31\x15\xe8\xf3\x50\x98\x17\x72\x7f\x08\x7e\x97\xa2\x87\x7d\xf2\xf0\xf9\xbf\xeb\x85\x9d\xae\xfe\x08\xba\x86\xe8\x7b\xcd\x90\x37\x2f\x32\xac\xbb\xa4\xea\x06\x98\xcf\xd4\x7a\x60\x99\x5d\x19\xb5\x5e\x0a\x8b\xb1\xde\x02\xb2\x39\x69\x95\x72\xe3\x89\xfa\x12\xe8\x77\x3c\xd2\xa1\x83\x03\x0b\xe1\x26\x3a\x95\x54\xa8\x3c\xf6\xd4\x3a\xfd\x68\xb1\x1d\x0b\xa1\xff\x2d\xfa\x11\x22\xdb\xa1\x2e\xc6\x0c\x21\xa5\x39\x23\x87\x4d\x21\x12\x99\xcd\x68\xea\xe0\x3f\xfc\x2d\x6f\xed\x49\x1b\x01\x4f\x4e\xa2\x06\x46\x3c\x7c\x30\x6a\xfd\xe6\x41\x9e\x9b\xb4\x3a\xf5\x5e\xc6\xff\xff\x99\x12\x63\x6b\x75\xa6\x5e\x5a\x50\x96\x5a\x07\x16\xa4\xab\xcf\xca\x14\xb8\xcb\x70\x72\x41\xa2\xb9\xbb\x83\xe0\x8d\x46\xf0\xbd\x08\x9a\xe5\x48\x62\x77\xaf\xd3\xca\xc2\x3f\xed\x5e\xa7\x5d\x89\xa9\xfe\x95\x48\x39\x52\xb0\x88\x2e\xab\x98\x8e\x02\xc3\xe0\xcc\xd8\x88\xc9\xe6\x15\x6d\x31\x9c\xfe\x67\x47\x21\x13\xd0\x92\x35\xb9\x5b\x4a\xd8\x19\x0c\x67\x3c\x7c\xf6\xf8\x71\xe7\xd3\x94\x08\x97\xd7\xb8\x8c\x17\xa0\x9e\x12\x62\x7f\xbd\x09\x76\x50\x17\xc3\xab\x66\x4d\x1b\x71\x8e\x95\x49\x0d\xe7\x25\x19\x56\xd3\x81\xa9\xe8\x37\x47\x95\x7d\xdc\x51\x05\x9c\x49\x6c\x51\x64\xa9\xa6\x90\x8c\x59\x85\x04\x4a\xcf\x52\x5e\x57\x9c\x29\xe0\xbe\x08\x80\x8f\x29\xf2\xcc\xce\x75\xc5\x1d\x9a\x74\x7e\xd9\x37\xdf\x36\x4b\x4b\x36\x2e\x8b\x29\x25\xf2\xc9\xe9\x82\xf8\xf5\x2b\x71\xb8\xcb\x13\x9d\x4e\xca\xe4\x2b\x8a\x81\x5b\x1c\xe2\x6f\x28\x87\xf8\x1b\xd1\xe3\x2a\x6a\xae\xb8\xc2\xe6\xd3\x21\x54\xbc\xcd\xcb\x46\xd4\x1e\x68\xe1\x89\x0e\x44\x60\x7c\xbd\xad\x44\x7f\x86\xb9\x1d\x9a\xb5\x81\x97\xbe\x44\xbb\x01\x22\x5d\xfc\x58\xc1\x58\x87\x79\xb6\x04\xb6\x99\x49\x1e\xd2\xe3\x5f\xfa\x7b\xcc\xbb\x37\x14\x47\x01\xec\x66\xfc\xfe\x77\x90\xb2\xb2\x4b\x8a\xd2\xed\x7b\x67\xab\x7b\x8a\x4c\xce\x37\x94\x0b\x72\x42\x2e\xc8\x3b\x83\x81\xf5\xb7\x94\xa7\xc1\x39\xe4\xb9\xc2\x34\xf4\x89\xc4\x4b\x4f\x12\x46\xce\xeb\xdf\x06\x92\xe3\xff\x19\x29\x39\xb3\x6d\xeb\x8f\x29\x0d\xa1\x15\x97\xf6\xc8\x59\xc6\xb3\x18\x83\x3a\xee\x49\x04\x0c\x64\x91\x47\xe0\xb0\xcb\x4f\x94\x37\x28\x0b\x5a\xf1\x13\x0d\x4c\xa9\x8a\x32\x1b\xd8\x1c\x66\x21\xdc\xe4\x8d\x14\xb4\x71\xa4\xec\x1f\xc6\x67\x67\x01\x92\xa4\xfa\x0d\x96\x1a\x13\x3b\xeb\xa8\x27\x9c\x07\xfa\x59\x5e\xd9\x35\x78\x4b\x02\xcc\x89\x7d\xfe\xd9\xf5\x3a\x36\x20\xd5\x3a\xa7\xf8\xa2\xf0\xac\xc7\xc6\x98\xea\xa8\x4e\x43\x1f\xe3\x01\xec\xc9\xab\x7a\x06\x7f\x61\x34\x91\x01\x4a\x4e\x3e\x29\x35\xd2\x4e\xdc\x57\x2a\xd7\x75\xe5\xda\x38\x73\xe8\x37\x5e\xf2\xb9\xc4\xd6\x17\xd5\xd5\x36\x72\x71\x57\xb6\x02\xaf\x1d\x98\x00\x7e\xdc\xa4\x90\x40\xaa\xeb\x6a\x18\x76\x46\x0d\xc3\x26\x67\x97\x73\x87\xea\x0f\xc9\xf2\x52\x0d\x8d\x37\x95\x7a\xe5\x66\x93\x1f\x65\x61\x12\x57\x2c\x56\x39\x7e\x0c\x4b\x75\xe2\xda\x88\x6e\xe7\x98\x68\x0f\xe6\x1e\x32\xe2\x41\x94\xe3\xc7\x63\x00\xb4\x65\xa7\x79\x9c\xe0\xe1\xf3\xe3\xf5\x47\x95\x8f\x89\x49\xb5\x2f\x06\x58\xff\xd2\x1d\xa3\x48\x83\x2c\x96\x85\x9f\x7c\x7b\xdd\x23\x88\xee\xa8\xd9\x51\x0b\xed\x45\x36\xcd\xa1\x4d\xab\xe0\xf7\x07\x3d\x20\x44\x4b\x16\x9e\xd3\x22\x25\xc3\x2c\x2d\xc4\x49\x14\xbf\x1e\x5a\xd9\xfc\x38\x0a\x46\x05\x4b\xc4\x6c\x5e\x98\x6d\x24\xee\x86\x8e\xf2\x52\x95\xe7\xd9\x6a\xa1\x30\x65\xef\x2a\x4c\xd9\xbb\xca\x52\x2d\x4b\xed\x67\xea\x7f\x41\x6a\xfa\x26\x5d\x07\x00\xfb\xbe\x49\x33\x0f\x65\x6c\x22\xae\xa1\x3b\xf1\x73\x01\xb0\xbd\xa4\xcd\x95\xcf\x2a\xdb\x98\x4d\x1c\xfb\x1e\x0d\x55\x87\x3b\x64\x48\x9b\x74\x85\x30\x6b\x7e\xa8\x53\x6f\x3f\x01\xae\xd3\xe9\xce\x9f\x38\xaa\x13\x18\x84\xb8\xaf\x8f\xc2\x20\xee\x4d\xbe\x8a\xc8\x3a\x18\xde\x8b\x73\x75\xc7\xba\xa2\x61\xb1\x57\x24\x52\x1b\x26\x4f\x21\xc7\xda\xb1\x5e\x87\x41\x5f\x09\xd5\x11\xc9\xab\xa7\xd6\x11\x49\xd4\x53\x03\x6a\x3d\xcf\x16\x5d\x3a\xde\xbc\x53\x78\xc0\x8d\x89\xc3\x48\x8e\xf3\x6e\x56\x2d\x0a\x57\x5a\x76\x1e\x7d\x2b\xd9\x7a\x4d\x36\x1b\x55\xbe\xe2\x56\x24\x1d\xe5\x45\x18\x29\x4b\xda\xc9\xde\x27\xed\xf2\xb4\xb4\xb9\xf5\xfa\x27\x1c\xd0\x80\x94\xe1\xc7\x1d\xa9\x82\x97\x8c\x4b\x76\x04\xd0\xec\x2e\x5c\x36\x64\xd8\x53\x1d\x3a\xf5\xd0\x32\xf8\xe1\x28\x4c\xee\x90\x05\xb2\x58\x05\x0e\xf8\x9d\x6a\x88\x93\xdb\xc2\x9a\x3c\xee\x3f\xac\xba\xb7\xa7\x70\x71\x45\x58\x9e\x2e\xae\x28\xce\xd3\x72\x40\x5f\xe3\xbf\xd5\x08\xaf\x48\xcd\xe9\xa4\x22\x47\x41\x06\x72\x38\xd2\xb3\x4b\xb4\x20\xf8\xe5\x91\x12\x5e\x7a\xa0\x76\x55\xcf\xe4\x5d\xb2\xda\x09\x10\x11\x0e\xf0\xb2\x39\x15\x2f\xa1\x9f\xad\x16\x3b\x94\x9c\xe4\x79\x05\xe5\x9b\xc6\xea\xc1\x5e\x97\x5d\xac\x92\xc6\xe7\xbd\x7a\xa8\xef\x82\x3e\xf1\x4c\x47\x29\x5e\x0f\x86\x49\xb6\x66\x6d\xb1\xbb\xbe\x9c\x18\x3f\xb1\x74\xdf\x98\x3e\x01\x76\xc7\x1d\xba\xc2\x68\xc6\x3e\xa6\xa4\x58\xd6\x23\xe5\x32\xfd\x31\xf6\x93\x18\x94\xd2\x97\xc0\x80\xe8\x94\x76\x98\x7c\x73\xa4\xc6\x3b\x90\x08\x45\x48\xde\xbd\xfe\x68\x60\x3c\x55\x4b\x4b\x63\x8e\xa4\x23\xcd\x04\x6d\xe8\x65\x2f\xb9\xbc\x28\xa7\xc3\x4d\xdb\xd9\x51\x2d\x63\xd4\x5b\xe0\x2f\x6e\x2a\x8f\xc8\xef\xaa\xe9\x44\xd7\x76\xab\xb8\x6c\x05\x3e\x3f\xeb\x92\x4a\x2f\x7d\x9c\x92\x92\xbb\xae\x9d\x56\x22\xf6\x53\x1d\xad\x1d\x06\x11\xd4\xb1\xe6\x20\x2a\xa0\xa3\x9f\xaa\xee\xb7\x9a\xe5\x45\x39\x53\xaf\xcd\xcd\x19\x7c\x75\xd1\x92\xa3\x4b\x27\xa3\xe4\x96\x36\x4d\x0b\xcb\xe6\xba\xc7\x31\x17\xae\x6b\x93\xba\xfc\x9b\x52\x57\xef\x81\x6a\xc4\x8c\x5d\xc9\x89\xa9\xc0\xaf\xb7\x5f\xa9\x06\x43\xf1\x26\xf1\xf5\x77\x30\xb7\x56\x4c\xb3\xc5\xdc\xa4\xdd\x02\xd0\x5f\xdf\xe0\xf2\x7e\xb0\x17\x68\x3b\x88\xa0\x55\x58\x78\x83\x2a\xef\xda\x9c\xac\xaf\xf6\xcd\x7b\xcb\x67\x7a\x13\xe9\xf0\x3d\xaa\x9c\xe6\x8a\x65\xc8\x86\x89\x0c\x72\xcb\xab\xcb\x9e\xd2\x17\x80\x65\xf2\x65\x8f\xe3\x66\xf0\x78\x7f\x22\xa2\x91\x4e\x75\x6e\x5c\xaf\x8f\xd2\x00\x7f\x87\x63\x19\x51\x1f\x8a\xc3\x98\xca\x1e\x6f\x34\xa1\x5d\xcc\xed\xaa\x60\xab\x21\x57\x84\x79\x01\x3f\xd6\xc4\x56\x53\x14\x26\xee\x57\x85\x2d\x59\xb0\x4e\xb0\x68\xf4\xa3\x59\xdf\x3d\x0a\xe3\x49\x6e\x84\x4b\x75\xa0\x78\x29\x27\x31\x7b\xe4\x41\x56\xda\xcb\x25\x71\x9f\x51\x29\xdb\x3d\xfe\xf5\x68\x6a\xbc\x8e\x4d\x29\x60\x3c\x05\x7d\xd7\xe9\xf2\xa4\x35\xf0\x8b\xb3\x5f\x6e\x17\xd9\xc0\x2e\x66\xdd\x35\x45\xea\x3a\x16\x05\x10\xf2\xb1\x09\x3a\xf5\xe7\x69\x02\x61\x8a\x32\xaf\xe2\xb2\x62\x37\x1d\x9f\xfa\x2a\xf5\xfe\x27\x94\xf2\x54\x69\x7b\x19\x03\x56\x71\x30\x6e\x07\x9e\x86\x9f\x74\x02\x66\xce\x95\x26\x59\xdb\xa1\xf4\xd9\x40\xc1\x62\x04\x04\xfd\x36\xa4\x3b\xdb\x3a\x6a\x40\x85\x44\x1b\x27\xc9\xbd\xd1\x58\x3b\x76\x52\xa0\xb9\xbe\x59\xdc\xdb\x17\x98\x95\x9a\xe9\x5c\x88\x02\xe6\x0a\x36\x40\x6e\xc9\x89\xca\x9e\x06\xff\x89\x96\x67\x43\x7f\x2b\x5b\x4d\xfd\x40\xd1\x13\x25\xfd\x00\xe2\xcf\xe9\x57\xb0\x82\x55\x13\x4b\xa6\xcc\x5d\x2a\xd9\x36\x4a\xbf\x3b\xb8\x91\xfc\x64\xab\xf4\xde\x8b\xb3\xf3\xed\x43\x2f\x4c\x2b\x8f\x9f\x7f\x39\x52\x8d\x54\x88\x61\x61\x44\x7c\x4c\x95\x5f\xb7\x15\x3d\xcd\xc4\x71\x56\xa5\x64\x91\x36\x33\xa6\xce\x17\x70\xf2\xb8\xbb\x28\x2e\x3f\xa0\x8d\x8f\x7d\xc0\x44\x52\xd9\xe5\x93\x8c\xa4\xe7\xdb\x71\x56\x70\x9d\x2a\x9d\x9d\x90\xb0\x6f\x4c\xd8\xac\x40\x61\x8c\x12\x8b\x61\xce\x4a\x4c\x38\x70\x4e\x68\x23\xdf\xef\x8f\x59\x3e\x6a\x51\x67\x93\x2f\x17\x53\x61\xc8\xa7\x39\xe3\x67\xa8\x87\x25\xe6\x1a\x61\x52\xf6\x4a\x95\xaf\x4d\x2b\x1e\xe1\x49\xad\xae\xc2\xf0\x6f\x01\x5e\x6a\x45\xf1\x3a\xee\x78\xe4\xdc\x8a\xcb\x33\xf2\xba\x86\x70\x25\xb0\xa3\x52\x38\xd3\x62\x40\x3a\x8f\x8c\x82\x1f\x53\xc3\x47\xaa\xe8\xa6\xa9\xa5\xc9\x07\x99\x27\x9f\xe8\x41\x9e\x4c\xe8\xfe\xb6\xaa\xf3\x5d\x1a\xdb\x32\x4b\xff\xcb\xff\x30\xb5\xab\x75\x65\x34\x15\x26\x08\x50\x75\x91\x06\x4d\x4b\xa9\x89\x49\x7e\x66\x12\x53\x4c\xd5\xd9\x2f\x4e\xf4\xeb\x91\x92\x45\xc6\x82\xc2\x96\x3c\xd2\x34\xcf\x44\x1f\x45\x30\xf4\xe2\xd0\x10\xe8\x54\x1c\x0a\x51\x66\x7e\xa2\xda\xb0\x4b\x36\x2f\x5d\x62\x5b\xea\x24\x3e\x11\x12\x9a\xdf\x3d\xa1\x4e\xe5\xae\x1d\xe6\x6e\x65\x3c\xd5\x1c\xd7\x0e\xf8\xb4\x8c\x38\xcd\x06\x55\x6e\xe8\x6a\x88\x32\x47\xfd\x11\x9e\xf2\x39\xef\x7d\xb7\x67\x26\x14\x87\xbd\x38\xef\x5a\xda\x65\x1f\x62\x81\x58\x68\xbc\x45\xc3\xca\x9f\x6f\x0f\xb2\xa2\x9c\xa2\x04\x14\x41\xf8\x1a\x52\x53\xdc\x3a\xc6\x4d\x23\xbd\xfe\xb9\x1a\x9e\x98\xd4\x24\x3d\x5b\x60\x7c\x70\xd0\x7b\xe5\x86\xf0\xb9\xd1\x68\x20\x3d\x30\x2e\x2d\x8d\x4b\x2d\x44\x75\xc5\xaf\x43\x49\xa4\x6f\x46\x6a\x1c\xb0\xb1\x95\xaa\xb3\x7f\x7f\x7b\xdf\xfc\x67\x68\xa1\xb2\x0f\x0e\x75\x66\x91\x47\xfc\x35\x2d\x54\x6c\xff\x1f\xea\xe1\xd8\x27\x54\xae\x01\x3d\xf4\x11\x66\x0f\x98\x2a\x30\x3b\x1b\xd1\xe3\xb5\x48\x71\xfe\x3e\x41\xcb\x13\xc9\x1a\xfc\xca\x82\x3c\x83\x2f\x62\xff\x40\x41\x2b\x7f\x17\x41\x5d\x68\x1c\x41\x11\xf4\xc6\x28\x50\xac\x7f\x8f\xd8\xe8\x5e\xdf\xe9\x80\x3a\x13\xf5\x88\x8d\xc5\x85\xc0\xd1\x45\xe2\xc3\x45\x68\x14\xe0\x5c\x3c\x05\xc7\xcf\x3a\xd9\x20\x86\x49\xc2\x65\xa6\x24\x93\xb7\x96\x77\xa1\xfa\xcb\x91\x42\xd8\xfd\x65\x03\x0a\x61\xbe\xdd\xcf\x92\x80\x50\x13\x34\x71\xfd\xc1\x02\x26\x0e\x95\x44\x6e\x89\x3c\x87\x79\xb7\x1f\x07\xfb\x2d\x35\x29\xcb\xfb\xd2\xdc\xa1\x76\x16\xc7\x95\xcc\x32\x95\xcb\xf2\x01\xbf\x74\x42\x87\xe8\x0b\x07\xf8\xd4\xc0\xf6\x79\x10\x8d\xab\x15\x79\x52\xf8\xdb\x34\xb5\x45\x81\x72\x5a\x61\x78\x8a\xa1\x8d\x9d\x49\xf8\xa8\xc2\x89\x7b\x57\x0d\x40\xef\x2a\x1a\xa0\xa1\x26\x69\xe2\x4c\x8a\xac\x55\xf0\x76\x4a\x23\x1a\x1d\x45\xe4\x44\xd7\x26\x20\x5b\x0b\xb3\xed\xd4\x1e\x46\x93\x45\x26\x5d\xf5\x02\x11\x3c\x61\xc3\x41\xda\xcf\x0a\x0a\x2d\x81\x70\x84\xc0\xc7\x8f\xd5\x95\x4e\x33\xa2\xf9\xaf\xe1\xb2\xf9\xd3\xa6\xbe\x6c\xfc\x44\x35\x5f\xeb\xc3\x72\x30\x4c\x5c\xd1\x9f\x52\xa8\xc9\x23\xa3\x50\x65\x71\xb3\x5a\x80\x9e\x5a\x28\x67\xb1\xe4\xdc\xc3\x2b\xbd\x78\xdd\xa1\x33\x57\x94\x38\xff\x20\x2b\xb3\x3c\x5e\x8b\x13\xc6\x27\x0a\xa7\x5d\x99\x22\x9d\x6d\x70\x32\x3f\x28\x54\xa4\x40\x5b\x41\xd2\xca\x8f\x27\x02\xc7\xfe\xfd\xed\x61\x96\xac\xe5\xfd\xb5\xb2\x3f\xe0\x91\x28\x3b\xdf\xaa\xde\xf3\x69\x8f\x74\x59\xb4\x89\xb3\x5c\xb7\xb1\x6f\x90\x72\xc0\x39\xa1\x11\x45\xa6\x9f\x2a\x5f\x99\xcd\x28\x94\x81\x9b\x6a\x61\xc4\x7d\x3b\x70\xb1\x49\x60\xb6\x78\x20\x08\x35\x85\xf3\xee\x9c\x46\x47\xdc\x6e\x9a\x47\x0c\x6c\x62\x52\xc7\x72\x5b\x68\x9d\xa3\x20\xe4\xc7\x8a\x7a\x59\xba\x02\x8b\x1e\xe1\xe7\xa1\xf5\x30\xe6\x7b\xa2\x13\x20\xbf\xbb\xa9\xdb\x8a\x7e\xc4\x24\x97\x61\x61\x96\x4a\x44\x93\x24\x4a\xb5\xeb\x14\xbe\x26\x72\x55\x80\x18\x70\xa6\xdc\xf5\x22\x7e\x5d\x1b\xe7\xd6\x62\x95\x41\xc3\x02\x8b\x9e\x1f\xab\xce\x79\x2f\xcf\xaa\x61\x01\x13\x0c\xe4\x6e\x5c\x0d\x62\x51\x89\x93\x00\xb3\x91\x46\x2a\xbd\xd8\xa6\x8a\xf7\x5b\x68\x76\xa3\x49\x71\x5b\xd9\xe5\x7d\x10\x8d\x4d\xd4\x87\x59\x61\xbb\x8f\xd2\x9b\x78\x60\xd9\xfe\xfd\xbc\xf6\x39\xc3\xc3\x77\x3c\x81\xc1\x31\x72\xbf\x1f\x51\x8a\x20\x7f\x15\x6c\xa2\xdf\x8f\x94\x3e\xc5\xfd\x28\x9c\x46\x57\xd5\x22\x60\xd4\x11\xbe\xdb\x87\x38\x39\xf8\x6d\xa9\x2c\xdf\xbc\x34\x52\x96\x7e\x17\x14\x67\xa9\xd7\x93\x1c\x40\x6c\xbe\xe8\x0b\x8a\xff\x57\xb8\xd7\xb9\x13\xed\x4f\xb4\x16\x99\x4f\xcb\x4f\x26\x32\xcf\xba\xe8\x1b\x66\xa5\xb0\x19\x5b\x41\xa3\xe7\x92\x62\x32\x5d\x52\x95\xae\x49\xec\x61\x93\x76\x6d\x3e\xa5\x2a\xd8\x33\xaa\xa1\x7e\x9f\xfa\xe4\x38\x53\x2e\x29\xbd\xd0\xa2\x34\x25\x49\xff\x7d\xe9\x8b\x82\xbf\xa1\xbb\x23\x58\x1c\xe5\x1a\x14\x77\xeb\xf2\xaf\xab\xa6\x7f\xe3\x18\xbe\x06\xbe\xd0\xc0\x1c\x76\x83\x6a\x40\x2f\x11\xba\x99\xa2\x9e\xa9\x66\x55\x95\x16\xae\xe7\xd5\xda\x50\x0d\x43\x0e\x83\x1f\x4f\x40\x61\xff\x5e\x3b\x7e\xce\x3d\xb7\x34\x15\xc2\xfc\x55\x45\xf2\x80\x06\x19\x8b\x05\x4c\xe4\x89\x84\xbe\x20\xd3\x15\x3e\xa0\xd0\x62\xbb\x15\x29\x75\xf5\x5b\x2a\xd2\xba\xf4\x15\xe6\x6f\x4d\x29\x8e\x31\x46\x45\xbe\x85\x55\xdf\x7a\xac\x9b\x33\x4d\xc2\x43\xf6\xf0\x90\x12\x53\x9d\x34\xfe\x4c\x91\x33\x7f\xd6\xf0\xa2\x2f\xb7\xeb\x4a\x7e\x5c\x53\xfb\x03\xad\xa9\x3d\x1e\xd3\x07\x6b\x0f\x05\x46\x08\xeb\x67\x22\x03\xfe\x1e\x32\x25\x11\x07\xa9\xaf\x8d\xd6\x21\x92\xde\x67\xbd\x46\xb8\xdc\xa5\xa3\x56\xa9\x78\x1f\xf0\x10\xe3\x26\xaf\x97\x32\x37\xb1\xe5\x25\x2e\x22\xe4\xf4\x89\xfc\x64\x62\x89\x1f\x7a\xa1\x6d\x7a\x68\x2a\xac\x10\x13\xeb\x45\x11\x93\x38\xab\x84\x25\xce\xaa\x78\x99\x25\xc9\x0e\x25\x6c\x74\x33\x0a\x0d\xca\x29\x8c\xf1\x91\x20\x5e\x47\xc6\xc4\xc2\x66\x68\x5d\x22\x47\x03\xa4\x05\x07\xc4\xee\xce\x67\x94\x01\x5b\x69\x73\x97\xe5\x06\x78\x13\x8f\x64\x80\xca\x1c\x3f\x9e\x64\x76\xee\xfd\xff\xaa\x0c\xd6\xa8\x45\x5a\xae\x05\xb5\x25\xa1\x4e\x04\x00\xe9\xef\x6b\x1f\x13\x6b\xf2\x47\xea\xeb\x24\x96\x8a\xca\x3c\xfb\x4d\x1a\x29\xb0\xcc\x14\xda\x30\x42\x52\x69\x79\xdd\xd9\x0b\x5a\xc0\x9a\x5b\x8e\xfc\x5e\xda\x70\xf3\xa3\x88\x5a\xe0\x80\x4b\x9c\x50\xf4\xc0\x0b\x4a\xb3\x6c\x77\x07\xb3\x62\xfe\x2b\x25\xb9\xd3\xb5\x45\x99\x67\x6b\x2e\xed\x31\x0f\x57\xac\xee\x03\xda\x78\x3b\x21\xee\x36\x6f\x4d\xb4\x04\x7f\x6b\xae\x5d\xa5\xae\xb4\xea\x26\xbc\x3d\x0a\x7e\x5e\x6f\xfb\xf3\x2b\xb5\x49\xc1\xd8\x20\xa5\xc8\x2f\x37\xfa\xbc\xa2\xc9\x98\x22\xc6\x9c\x73\x8a\x7e\x95\x78\x06\xb5\xbc\x6c\xcb\x6d\xca\xd6\xe5\x80\x6f\x38\x60\x57\x5c\xe1\x88\x1e\xef\x69\x26\x77\xc6\x30\xfa\x2d\xaf\x64\x72\x42\x35\x9b\x16\x2b\x47\xf9\xf5\x4e\xe5\x9b\x75\x41\x23\xc5\x4f\x62\x1f\x7b\xa0\x8c\x3f\xc0\x2e\xab\x84\x61\xcc\xff\x10\x95\x17\x46\x42\x1f\x2a\x3f\xe9\x81\xc9\x4b\x97\x3a\xa4\x2d\xa8\x8c\xfe\x92\xde\x43\x24\xf4\x69\x15\xca\x00\xa6\xa1\x4f\x94\xdb\xd2\xb8\x64\x3a\x44\xe9\x4b\x74\x4d\xd8\x19\x95\x6e\x00\x4a\x29\x04\x7c\x31\x54\x6b\xc8\x7f\x6c\x11\x67\x79\x29\xe2\x99\xbe\x6d\x11\xac\x60\x50\xfd\xe3\x0a\x6c\xf8\x51\xb4\x07\x3f\x68\x88\xc3\xa7\x23\x21\x9e\x52\xc7\x17\xda\x7f\x26\x69\x05\x52\xe6\x1d\x6c\x00\x21\x2a\x6f\xad\x99\x88\x14\x19\xe7\xb6\xeb\x44\x80\x41\x9c\x7b\x43\x5a\x72\xbc\xc1\x0f\xb1\x5b\x0d\x86\x2d\x45\x74\x81\x15\x97\xe4\xb6\x4f\x8e\xd7\xb0\x2f\xbf\xdc\xfe\xe5\x29\xa5\x3d\x76\x82\xc6\x79\x42\x96\xa8\x3f\x48\x60\x05\xa1\x03\x9d\xb8\x65\xfb\xa4\xb2\xf7\x8a\x54\x09\xfc\x37\x74\x47\x90\xd5\xfc\x93\x51\xeb\xb7\xe6\x3c\xff\x91\x16\x08\xab\xba\x44\x6a\x82\x73\x0b\xd3\x44\xd1\xff\x50\x0d\xe0\x0d\x2a\xa1\x51\xe8\x5e\x8e\x94\xe4\x32\x23\x9d\x50\x04\x7c\x77\x14\x1c\xd5\xfe\x2a\x52\xe6\x51\x3f\xe6\xa6\x2f\x02\xc1\x7f\x15\x05\xf4\x30\x24\x43\x30\x4c\x38\x8d\xf1\xa7\xb4\xe3\xea\xe5\x0d\x96\xe7\x71\xb5\x72\xcb\xac\xca\x5d\x31\x50\x86\x20\x1f\x45\xea\x8b\x7e\x34\x86\x27\x1e\xa4\x0e\x61\x52\x58\xe7\xad\xc0\x40\xf7\x4e\x65\x8b\x89\xe9\x76\xc1\x91\x95\x26\x24\x70\x05\xfc\xb8\x11\x90\xdf\x37\x79\xd1\xe7\x3c\x8b\x4b\x40\xfa\x55\x52\x0e\x36\x8c\xef\xa9\xc5\xe5\x86\x89\x45\xc2\x85\xdf\xbf\xa9\xb6\xc7\x1e\xca\xe1\xb1\xef\xef\x37\x59\xdc\x2e\xd9\x81\x91\x76\x93\xe0\xad\xeb\x97\xf0\xe3\x4f\x1d\xaa\x0e\x5c\x61\xf3\x35\xf2\x6b\xc5\x3a\xf9\x86\x72\xbb\x81\xc4\xa0\x87\xb5\x28\xcf\xa6\xa6\x7d\x6f\xbb\xae\x28\xb3\x56\x40\x8c\xb3\x8f\x0f\x3f\x51\x37\x2a\xaf\x52\x23\xac\x46\x0e\x95\xb8\x51\xc8\x13\x5f\x1e\x29\x5a\xaa\x26\xb6\x12\xc2\x72\x2a\xe8\xe8\x9f\xa3\x4e\x0e\x2b\xc7\x53\xcc\x13\x02\x84\x57\x0d\xcf\xed\x8a\x71\x89\xe4\x49\x3e\xd9\x57\x99\xbf\x3f\x05\x06\x55\x59\x99\x64\x4a\xb5\xc4\x71\x09\x05\xc1\xaa\x70\xdd\x93\x3d\xcd\xbd\x7b\x69\xe8\x50\x12\xd9\x7f\x41\xcc\xff\x80\xca\x97\xa8\xe3\xcb\x25\x1a\x54\x4d\xd3\x37\x62\x87\x29\xa5\xbb\xf3\x36\xbe\x9d\xd8\xbc\x06\xbe\xcd\xc6\x68\xc2\x28\xeb\x60\xbd\xe0\x1e\xa3\xf8\x84\xa4\xeb\x0a\xe1\xe7\xb1\xb1\xdf\x8a\xf4\x4a\x55\xca\x9e\x17\xa2\x31\x97\x83\x80\xe6\x39\xae\x8f\x74\x80\xda\x85\x12\x12\xd4\x29\xaf\xd3\x4e\xc6\x49\x7f\x03\x15\x1a\xb6\xf8\x47\x08\x11\xb8\xa1\xdf\x18\x05\xd1\xe5\x07\xb8\xb9\x2a\x8b\x11\xc1\x95\x93\xa3\x5f\x9a\x4c\x6d\x4b\x9b\xd8\x38\x1b\x0c\xaa\x34\xe0\xc1\x83\xf3\x1c\xc6\x14\x62\xc0\x18\xb0\x75\xf5\x7f\xc4\xae\x84\x1c\xc2\x36\x2f\x45\x01\x5a\xec\x06\x46\x23\x0e\xfe\x15\xae\xb1\x70\x0e\x54\xd9\x9e\xe5\x2e\x2d\xfb\xce\x70\xd1\x8d\x63\x06\xba\xdb\xfc\x58\x85\xd8\xa1\x93\x1d\x8b\xb0\x7a\x87\x60\xa2\xdc\xb6\x1b\x85\xd5\x7d\x5b\xe5\x5d\x89\x79\x15\x8d\x25\x6f\x2e\xee\x6d\x3d\xaf\x28\x12\x63\x9c\x9b\xa2\x6f\x8b\x16\x1d\x5b\x32\x9a\x53\x63\x3a\x35\xe5\x18\xe6\xa4\x02\xec\xb2\xaa\x68\x51\x5d\x8c\x9c\xfb\x12\x9a\xb2\xfc\x44\x4d\x05\x0a\xd7\xb5\x6c\xaf\xeb\x79\x61\x5f\xf8\xed\x30\x73\xf2\xce\xe5\x2c\x77\xc9\x7f\xa4\xd4\x5e\x06\x26\x35\x3d\x8b\xf0\xc9\x5a\xc0\x74\x85\x44\x17\x58\x5a\xef\xb9\x71\xa0\xf5\x61\xe5\x20\x51\xe3\xd8\x72\x1d\xeb\x00\xd3\xe5\xb3\xa3\x5d\xbc\x0e\xda\xcf\xed\x69\xed\xdd\x2b\xf6\xa9\xe0\x5c\x61\x83\x3f\x18\x29\x5d\xfe\xe3\x38\x9b\xc4\x9f\xad\x5e\x9d\xe2\xb9\x11\x5a\xfd\xac\x92\xc3\x6e\x1a\x6a\x27\x5d\x8a\x94\xaa\xff\xf1\x51\xeb\xd9\x67\xf9\xab\x5f\x89\x82\xbf\xfa\xb6\xce\xb8\x13\x7e\x18\x1f\xfe\x29\xe2\x1a\xfa\x17\x0f\xad\xef\x51\x47\x2e\x19\xdd\xd5\x47\xa0\x07\xfa\x04\x6f\xd6\x8b\x6a\x15\x94\x19\xeb\x16\x34\x59\xbd\x3d\x39\x5e\x4b\xf4\x08\x0f\x59\x6f\x4c\x14\x8a\x47\xa3\xd0\x92\x3b\xea\x21\xa3\x44\x89\xf3\xf3\x39\x44\x80\x7f\xae\x4e\x50\x4d\x69\xb8\xdd\xa4\xb0\xb7\x98\x5b\xb3\x4c\xdf\x09\xbd\x98\x3f\xa7\x0b\xc6\x8f\xc7\x40\xac\x83\x01\x17\x36\xe8\xa9\x1e\x53\xae\x1b\xc7\x3c\xdd\x2c\xee\x9b\x7c\xd0\x9a\x30\xdd\x90\xda\x21\x0c\xe3\x7b\x49\xb6\xc2\x8a\x18\x82\x10\xae\x97\xa0\x34\x1d\x3e\xab\x38\x62\x22\x77\x0d\x22\x4c\x18\x90\x44\x1a\x74\xd8\xe0\xf0\x74\xb0\xbd\x64\xbb\x36\x77\x71\x46\xaf\x52\x5e\x2f\x7e\x24\x38\xd1\x98\x9d\x3b\xd4\x5e\x32\x49\x42\x82\xcb\xd8\xdd\x60\x36\x21\xd1\xd9\xb6\xae\xa5\xc2\x90\x5a\x49\x06\x1f\x28\xcd\x3d\x9b\x12\x60\x20\x59\xd3\x73\xae\x73\x1a\x7a\x72\x2e\xb0\x69\xaa\x92\xd9\x87\x74\xf3\xae\x3d\xd3\x51\x93\x3b\x58\xae\x62\x82\xf0\x60\x14\xf8\x85\x17\x3d\x7c\x62\xa9\xca\x53\x57\x56\x39\xd0\x91\x52\x25\xa9\x5e\xef\x3b\x8a\x41\xb2\xa3\x13\x0c\x71\x83\xc5\x46\x37\x5b\x4d\x73\xd7\xeb\x97\xd3\x8a\xc3\x80\xf6\x9a\xf7\x38\xab\x97\xa1\xb8\x86\xfa\x46\xd2\xc6\x93\x13\xce\x18\x07\x16\x0e\xb4\x73\x4b\x02\x54\xb4\xa6\x70\x6e\xde\xc1\x17\xe2\x27\x8a\xff\x17\xe7\x26\x5d\x8e\x4d\xc1\x6d\x61\x49\x20\x5b\xde\xcd\x74\xa3\xd1\x14\xb6\xe7\x23\x0c\x8e\xbf\x5b\x6a\x9a\x7b\x9c\x4e\x20\xf1\x75\x9b\x9c\xed\x8d\xab\xa5\xe0\xec\x3d\xad\x4d\x71\x4e\x47\x0f\x07\x40\x96\x2a\x0e\x6f\xa8\x1c\xf5\x86\xd2\x70\x1a\xe6\x2e\xe6\x0d\x28\xe4\x98\x07\xb4\x32\x3d\x06\xca\x6b\xd3\x5e\x6e\xf2\x8c\x59\x35\xf9\xc0\x6f\x60\xd4\x57\x98\xa9\x32\x1e\x22\x0a\xb4\xb4\xd3\x4d\x06\x56\xa6\x2a\xb3\x41\xb6\xe8\x58\x7b\x0d\xa9\x10\x98\xef\xb8\x7d\x3f\xa7\x85\x23\xea\x04\x12\x38\x56\x0d\xc4\xf9\xf1\xb9\x5e\xfc\xd5\x47\x3b\xc0\x13\x80\x21\x7b\x5d\x9d\x50\xec\xba\xc0\x6d\x1a\x96\x04\xa5\x3b\x26\xf2\xa0\x0d\xe3\xa5\xa2\x5a\x1c\xb8\xd4\x77\xf1\xd0\x86\xbf\xa7\x5a\xf2\xf7\x94\x33\x4e\x6a\x06\xb6\x98\x09\xfa\xc0\x3f\x40\x41\x81\xb7\x7f\x53\xa9\x6c\x23\x4b\xc2\x86\x3a\x36\x0e\x4e\x51\xdf\xb7\xca\xd3\x65\xcb\x14\x7d\x8f\x5f\xd8\x37\xef\x85\x9a\xc7\x78\x09\x65\x89\x7a\x0b\x15\x01\xea\x4c\x7c\xf0\xd1\x91\xf6\x86\x6e\x00\x74\x15\x03\xf1\xec\xc5\x06\x3b\xa5\x03\xcd\x29\x9f\x6e\x16\x36\xe9\x66\x83\x1d\xf5\xaf\xc0\x87\x1c\x1f\xa3\xa8\x06\xb0\xe0\x67\x3f\x4b\xad\x6f\xb6\x7d\x58\x1f\x1b\x95\x28\xe1\xb2\xab\x23\xad\xe6\x01\x6c\x77\xb1\x9b\x02\x8a\xd8\xa6\x8d\xa9\x3c\x20\xd7\x43\xa7\x1d\xfc\x23\xb4\x23\xae\xa1\x13\x84\x25\x73\x9b\x7e\x2c\xcf\x4d\x35\x06\x94\x3d\xcf\xf1\x57\xdf\x1a\x69\xcf\xc2\x30\x1c\x41\x63\x44\xf4\x56\x03\x1c\xa6\xe8\x67\xab\xe2\xf0\xcf\x14\x17\x95\xab\xfe\x63\x85\x5e\x67\x62\x32\xff\x83\x92\xae\x28\x86\xd9\xb2\x2d\x06\x86\xb5\x51\xbd\xf2\x7a\x50\x3e\x18\x9f\x10\x2b\x24\x45\x69\xf2\x12\x14\x23\x69\xeb\xd7\xaf\x42\x6d\xf5\x09\x7e\xa3\x90\x65\xa4\x0e\xcc\xed\x52\x62\xe3\x52\xf5\x34\x6e\x8d\x65\xe9\xf4\xfb\xd1\x3b\x63\x45\x6c\x84\x90\x56\x67\x6b\xa7\x92\x9c\xf5\x4c\x5e\xba\xd8\x0d\x89\x7f\xf7\xe2\x2c\xe7\x1e\x1f\x21\xa5\xe1\x27\x0d\x7d\xd1\x83\xf5\x75\xcb\x96\xa7\x54\xde\x74\x54\xcd\x16\x4f\xeb\x71\xd2\xf5\x86\x70\xd9\x8e\x93\xac\x90\xf6\x22\xa2\xc3\x76\x15\x1d\xb8\x2a\x42\xea\x74\x7b\x22\x60\xce\x1d\x6a\xf7\xab\xb4\x9b\xdb\x2e\xa7\xe3\x38\x80\x40\x71\xe3\xc7\x1a\x62\x97\x98\xdc\x76\x09\xdd\xb5\x09\x97\x26\x91\xff\x68\x79\x87\x59\x58\xdd\x8b\xd9\x59\x98\x06\x6f\xef\x84\x92\x8f\xa0\xa4\x60\x77\xe0\x45\x1b\xca\xfb\x07\x7c\x21\xa4\x4d\x8c\x9c\xf6\x0b\x61\xee\x10\x6f\x92\x7f\xad\xb7\xd5\xf7\xa2\x09\xbc\x69\x10\xe2\x0a\x29\x72\xcf\x0c\xec\x74\xe0\x8e\x5d\xd5\x48\xc8\x6b\x94\xe4\x03\xfc\x0c\x5c\x39\x1b\xe9\x7a\x11\xcc\xdc\x92\x74\xa7\xd8\x71\xb3\x3d\x27\x4a\x25\xf1\xea\x7c\x42\x21\x05\xf3\x9e\x2d\x99\xf9\x89\x55\x3f\xdd\x09\x1d\x41\x16\xb8\x96\x36\x48\x43\x47\xb1\x28\x73\xb7\x2c\x10\x67\x19\x9f\xe8\xb1\x4a\x18\xbf\x95\x66\x48\x1c\x8d\xb9\x43\xdc\x7f\xe7\xd8\x24\x3c\x41\x74\x61\x05\x3f\x36\x96\xfa\xf8\x8e\xfa\x95\x91\x52\x4c\x42\x4d\x02\x0a\xe1\x9d\xa6\x61\x35\xef\x9c\x96\xee\xfa\xd1\xeb\xf9\x49\x14\x58\x04\x55\xc1\xea\x77\x48\xb1\x20\x9b\xc1\x8f\x7d\x8e\x02\x45\x43\x51\xc0\x40\x7b\xed\x34\x2e\x2d\x3f\x51\x92\x32\xc4\xfb\x1c\x66\x79\x09\xee\x18\xf7\x3a\x47\x4a\x6d\xe7\x43\x55\x47\xd9\xc3\x71\x52\x61\x80\x30\xa5\xf2\xa6\xeb\x08\x09\x80\xe1\x6f\xd0\x4e\xc7\x81\xfc\x6e\x43\x0b\xfe\x80\xb7\xcc\x53\x2d\xf8\x8f\x55\x0b\xfe\x63\x4f\x4a\x8d\x2d\xb1\x14\xfa\x6e\x88\x93\x06\x93\xa6\xab\x4a\x73\x05\x89\x86\x30\x8c\xb6\x5e\xdc\xcf\xb7\x07\xa4\xe1\x9f\x02\x3c\x80\x40\x77\x44\x09\x29\x1e\x09\xca\x64\xab\x26\x5f\xd2\x8c\x4c\x2e\xc2\x45\xcd\xac\x81\x40\x56\xa5\x4b\xee\x30\x83\x40\x44\x71\x8e\x5e\x23\x5a\x74\x72\x8c\x55\x24\x9f\x47\x3a\x91\xf2\xb1\xf5\xe2\xd5\xfe\xe0\x18\x92\xa2\x4c\x10\xb9\x9b\xa7\x94\x7d\x4a\xdc\x37\xa4\x0e\xa9\xc6\xea\x67\x23\x7d\x06\x3c\xa3\x46\x67\x45\x69\x92\x84\x67\x2b\x7b\xf7\x72\xeb\x01\x91\x84\x1f\x37\xe9\xd6\xb5\xcd\xaa\x71\xe5\xa7\x2b\xb8\x48\xa0\x4f\xdd\xe1\x6e\x96\x2f\xb5\x82\xd6\xd5\x16\xff\x58\xf9\xd9\x3d\x9b\xba\x8a\xc1\x70\x1a\xaa\x0d\x75\x02\xcc\xbe\xc4\x0c\x54\x55\xd1\x57\xfd\x27\x25\x36\x4b\x4d\x0e\x4c\x93\x4c\xc2\x5b\x5b\xb5\x45\xb9\xf2\x55\x73\x53\x5b\xef\xa6\x9c\xeb\x2f\x84\xd4\x93\xda\xb2\xed\x64\xb4\xdb\x67\xf3\x2b\xcc\x6f\x17\xa7\xc4\xfa\x1e\xa1\x4f\xfc\x73\xed\xd7\x71\x45\xcd\xe7\xcb\x7e\x36\x30\x1c\xe0\x3d\x5a\xdb\xd7\x24\xe5\xc5\xc6\x2c\x7c\xc5\xe5\x55\xa1\x1c\x0c\xcf\xd0\x74\x98\x1f\x37\xb8\x3c\xb7\x5f\xa9\xba\xbd\x41\xe0\xaa\x23\x14\x9d\xa3\x57\xf1\xe3\x86\x02\xf5\xf9\x76\xdf\x9a\xee\xa7\xc2\x96\x1b\xc8\x1f\xd0\x15\x62\xca\x02\x66\x7b\x20\xc6\xf2\xe3\x89\xaf\x76\xe8\x85\xb6\xcd\xf3\x2c\xb5\x04\xf2\x7e\x71\xd6\x77\x3b\xeb\x0f\x12\xb7\x7a\x35\x87\xcf\x96\x74\x67\x4a\xcf\xa4\x4e\x44\x01\x46\x1d\x67\x69\x61\xf3\x15\x92\xa5\x66\x15\x56\x9c\x24\x97\xd0\xd1\x40\x24\xc4\x2c\x5e\xea\xf6\x06\xa6\xa9\x4b\x97\x92\xca\x92\xf8\xbf\x6a\xa7\xb1\x0a\x16\x3f\x99\x98\x33\xd4\x11\x69\x60\x5b\x34\xac\x42\x16\x78\x52\xf7\x31\x4f\xfa\xe5\xb8\x98\x55\xf2\xd6\x02\x60\x66\x7b\x33\x7e\x32\xd1\xea\xa6\xc1\x47\x4a\xbf\x6a\x2a\x24\x50\xdf\x1a\x05\xb4\xda\x4f\xe8\xba\xb1\x1b\xad\xef\xa9\xf7\xb3\xa4\x5b\x0d\x0b\x2d\x8a\x70\x83\x42\x03\x3f\x56\x40\x07\x3b\x30\x53\xa1\x73\x0e\x00\x02\x0e\x75\x36\x7e\x45\x9e\x16\x6a\xe8\xc4\x94\xf6\xd1\x31\x70\x49\x7d\x17\xbd\xcf\xab\xaf\x8a\xfe\x3d\x14\xb2\x28\xa6\xae\x8d\x94\x19\xc2\x43\xeb\x5e\x82\xf1\x8b\xcf\x75\xc2\x6f\xe1\x0d\x89\xfb\xf3\xe8\xba\xc7\x1e\xfd\xe9\x2f\x81\x0e\x8e\xbe\x06\x0b\x08\x7a\xbe\xc2\xbe\x79\x3f\xe7\xa6\x5d\xc4\x6e\xfa\x4a\x23\x62\xd1\xc4\xcb\x4b\x2e\xb7\xad\xd6\x17\x7e\x5b\xac\xc5\x68\x8d\x8a\xcd\xd8\xd3\xe3\xa3\xd0\x2a\xc6\x05\x7f\x71\x36\xd0\x64\xf6\xef\xe7\x04\x19\x18\x19\x84\xa3\x2b\xea\xd8\x37\x05\x49\x41\xd5\xc7\xbe\x9f\xd9\x2c\xcc\x72\x7e\xb0\xbd\x13\x50\xcf\x57\x47\x4f\xab\x65\x9b\x0f\x69\x8a\x5d\x0c\x5a\x8a\x6e\x7c\x4a\xe9\x3a\x9f\x52\x15\x7c\x9e\xc5\xcb\xb6\xf4\xde\xfc\x22\x65\xa6\x63\xfe\x13\x5a\xeb\xcd\x9a\x82\xcd\x7e\xc0\x44\x43\xc4\xe7\xc7\x6a\x26\x37\xc8\xba\x36\x37\x65\x7d\x28\xd7\x3f\x5a\xa4\x61\xe8\x96\x21\x3c\x1e\xa3\x96\x1f\xfa\x61\x37\xbc\x8c\x81\x2d\x0a\x93\xb7\xea\x1b\x28\x11\x82\x7e\x84\x84\x8e\x90\xa9\x2e\x25\x6b\x94\x13\xf9\x44\x18\x54\x0d\x9c\x73\xdb\x68\x39\xe0\xae\x3f\x50\x5a\x30\x37\x23\xa5\xc5\x7a\x3e\xd2\x32\xad\xe7\x69\x28\x21\xb6\x9b\xa1\x62\xa9\xb3\xc2\x9c\x30\x92\xff\x2f\x28\xfd\xc7\x94\xb1\xb0\xbf\x40\x9e\xc8\x5b\x87\x0e\x21\xf2\x6e\x8d\x10\x44\x76\x5b\x5a\x72\xb1\xb3\x9c\x11\x48\xe7\x5f\x4d\x01\xb6\x4e\x10\xea\xa8\xfa\xd2\xc2\xec\x0e\x65\x8e\xc2\xf1\x01\xdd\xb4\x73\x6a\x9d\x6c\x53\x3e\x20\xef\xaa\xd9\xd2\x19\x2c\x6d\x7e\xb5\x5e\x40\x2e\x8f\x2b\x3e\xaa\xa9\xa4\x94\xab\x45\x7b\x4f\x2e\xd6\xd6\x40\xbf\x30\xdb\x5e\xcc\xb3\x65\xb4\xb1\xd0\x75\x80\x10\x94\xa7\x6a\x05\x83\xa7\x6d\x9d\x7a\x49\x63\x8e\x73\x61\xb4\x4b\x42\xd9\x7f\x34\x15\x74\xd9\xcf\x29\x0e\xc5\x36\xf4\x9f\x59\x01\x72\x22\x56\xee\xdd\xdb\xce\x52\x3b\xa5\xa4\x52\x69\x21\x40\xe3\xe9\x24\xc5\x35\x64\x18\x77\xa2\xa7\x55\x2b\x9c\xe8\x14\x26\x8d\x2d\xb4\xeb\xd1\xca\xff\x69\x14\xda\xfa\x3f\x55\xfd\xba\x63\xca\x8a\xff\x0d\x5a\x28\x72\xf8\x3d\xa5\xaa\x63\x9b\x94\x5c\x3e\xec\xf3\xde\x97\xd1\x98\x0a\x5e\xa8\xa5\x07\xd9\x8a\xed\x3e\x54\xbf\x13\xee\x31\xf0\x8d\x02\x94\xa9\x53\x24\x8f\x16\x08\xf2\x97\x48\x7e\x80\x89\xfb\x84\xbe\x9e\x44\xb9\xfa\xeb\xe1\xde\x73\xde\x2b\x9d\x86\x4f\x13\xaf\x5a\xed\xbb\xb2\x4c\x2c\xc0\x87\xc8\x2e\xde\xa0\xaf\x00\xf9\x83\x93\xaa\xb3\x7d\x9c\x68\x0a\xc8\x12\xdf\x6e\xd2\xa8\x82\x93\x23\x8b\x80\x09\xa2\x48\xc1\x9a\x27\x79\x2f\xbf\x4c\xd3\x0c\x3a\xab\x91\x33\x1f\x57\xf9\xf3\x71\x05\x85\xb5\x87\x4b\x9b\x76\x51\x91\x4a\x2f\xe6\x7d\x2d\x04\xfe\x03\xfc\x5c\x5f\x3f\x2e\xcc\x7a\xe8\x11\xf6\x2b\x6e\xd4\x75\xa5\x84\x5d\x0c\x73\xc3\xd8\x5a\xe5\x52\xf0\xbc\xe7\xd2\x6b\x8a\xde\xa2\x29\x51\x51\x4a\x73\x52\x61\x37\xa0\x12\xc5\x8f\x75\x07\x53\xe5\x7d\xab\x54\xf8\x94\xc5\x74\x68\xe2\xbe\x41\x5f\x92\x45\x7a\xb1\x3c\xf8\x1f\xa2\x60\xea\xf5\x86\xea\xa7\x15\xa5\x4b\x12\xc2\xfc\x60\x5f\x71\xc7\x80\x9f\x10\x24\xc0\xab\x6b\xd7\x6b\x45\xca\x03\x85\x9e\x9d\xea\x68\x4e\x3f\x5f\x19\xd6\x37\x53\x80\x5c\xc0\x4f\x91\x33\x5f\x05\x00\x48\xa4\xba\x03\x3d\xed\xb4\xaa\xde\x4f\x4f\x24\x96\x2f\xbf\xdc\x5e\xb6\x83\xa1\x78\xf8\x8a\x99\xa5\xb2\x15\xd7\x13\xa9\xbe\xa1\x9b\x1b\xa2\xd2\x09\x55\xa8\x4d\x75\x94\x6e\x0e\x61\xb8\x44\xd6\x1d\xf5\x3b\x82\xc9\x8d\x31\x88\x7a\x61\x07\x8b\x89\xd5\x43\xc0\xb3\x6a\x08\x78\xb6\x71\xf5\xa6\xa5\x2b\xb2\x54\xeb\x09\xdc\xa4\xe8\xc3\x8f\x9b\xf8\xc9\x8b\x59\xd9\x17\x13\x96\xe7\xc3\x60\x22\x4c\x86\x2f\x4e\xbc\xea\xf3\xed\x62\xd5\xda\xd2\x32\xbc\xf1\xcb\x41\x6d\xa1\xbe\x99\x32\x11\x99\xd4\x35\x7d\xbe\xdd\xcb\xcd\x8a\x55\x2e\x50\x5f\x1d\x05\x44\xe4\x57\xfd\xc8\x3c\xee\x9b\xc1\xd0\xf4\x52\x64\x75\xd8\xc5\xe8\xab\x4b\x7d\xa7\xc6\x17\x93\x3c\xcc\xb9\x43\xed\xc5\x8c\xf8\x21\xf5\x8f\x40\x94\x7f\x5b\x99\xa5\x5e\xa5\x34\x5f\x34\x9c\x43\xae\xf7\x0f\x2d\x73\xb4\xa4\xe8\x0b\x92\xb1\x67\x49\xe5\x06\xf1\xfc\x2d\x7a\x2b\x74\x5f\x70\xf0\xa3\x7d\x3b\xdd\x79\x46\xdd\x3d\x9c\x3a\x75\x6d\x3d\x13\x50\xba\x8f\x77\xe8\x22\x63\xf2\x7c\x14\x5d\x4e\x1e\x3f\x2a\x58\xf0\xf6\x75\x05\x5a\xd8\xbe\xae\x21\x23\x2e\xb7\x4f\x29\xb3\xf8\x4b\xd8\xed\x40\xe4\x68\xde\x25\x80\x1b\xc2\xcd\xa4\xab\x85\xf3\xfd\x07\x40\x21\xb1\xeb\x04\xc6\xe5\x32\xe9\xac\x43\x80\x80\xe7\xb7\x08\xa7\xd4\xc7\x25\xff\x19\xce\x5a\x16\x24\xc4\x2e\xc5\xbf\x7c\xa2\x04\x3a\xae\xd2\x56\x16\x9f\xa3\x3a\xa2\x23\x6b\xfa\x9a\x86\x7f\xfd\x18\xdb\x12\x1d\xb7\x7f\x4b\x17\x00\x89\xe3\xdb\x91\xaa\x69\xde\x68\xa2\xa0\x0e\xf3\x6c\x90\x89\xdf\x3f\x12\x02\x0c\x30\xf9\xb1\x4a\x7a\x8a\x6a\x71\x60\x72\x97\x5a\xa5\xa9\xa3\xfd\x31\x2f\xf8\xa6\xd9\xb0\x9f\x95\x59\x2f\x37\xc3\x3e\x36\x1d\x9b\xcd\x8d\xc2\x51\xf0\x7e\xa4\xfd\x32\x72\x00\x59\x17\x0e\x04\x15\xc1\xa0\x28\x38\x51\x3f\x91\x4c\x5c\x6a\x60\x85\x41\xdf\x45\x49\xb4\x7b\xf1\x54\x55\xdb\x2d\xba\x57\x5b\x21\x0d\x44\x54\xe6\xc7\x13\x9d\x98\xf9\xf9\x83\x5c\x3f\xcd\x04\x1d\xd7\x7b\x91\x62\x72\xbe\x46\x5f\x4e\xd0\x27\xa1\x4f\xf0\x2e\x85\x40\x84\xc6\x0b\x0a\x47\x9d\x5b\x13\xf7\x01\x11\x79\x5e\x78\x8d\xa3\x80\x04\xbd\x49\xa1\x08\x03\x6f\x80\xeb\x24\x9b\x7a\x5a\x87\xb0\x2c\xa9\xbc\x9c\xde\xbc\x5f\x03\x2d\x2f\x7d\xf5\xb5\x31\xe1\x5a\x96\x82\x26\x27\x74\x3d\x57\x45\x77\x19\x84\x55\x7e\x4c\xe7\xb8\x84\x9d\x09\xef\xee\x39\x2a\x6a\x92\xac\x87\x1b\x09\x34\xc9\x05\xe5\x8f\x73\x21\x0a\xe9\xbd\x59\x2c\x4a\x97\xd6\x65\x2d\x82\x99\x38\xfc\xa9\x36\xfc\xb1\x48\xcf\xd8\xec\xd0\xe4\x16\xb0\x08\xde\x79\xb4\xc2\x65\x17\x7e\x36\x40\x35\x87\xc3\x3c\x1b\xe6\x0e\xa1\x80\xe6\x2c\x00\xb9\x9d\xa5\xe3\x91\xf9\x0c\x91\x9a\x7a\x21\xdf\x63\xa3\x9c\x48\x79\x04\x9c\x45\xb0\x10\x0b\x9d\xa7\x94\x26\x6f\x52\x97\x9c\xb9\x49\x90\xe1\xa2\x50\xbd\x8a\xd7\xf2\x13\xd5\xbd\xea\xba\x22\x5b\xb4\x5d\x57\xff\xdc\x3a\xbf\xdd\xa4\x64\x6d\xf3\xf4\x48\xfd\xf4\x8b\xda\x51\xf3\xe2\x44\x9a\xbf\x77\x2f\x79\x1f\xb8\xb4\xda\xe2\xa7\x7d\x5e\xf9\x69\x9f\x57\xe3\xfa\xc5\xc4\x0c\xb8\x8e\x68\x72\xc7\x96\x72\xa9\x67\xaa\x1e\x36\xa9\x97\x5d\xac\xef\x80\x24\xc2\x8a\x68\x62\x93\x87\x5b\xcf\x3e\x1b\x42\xb3\xcf\x73\xa7\xd7\x5b\x4a\x2d\x5e\x69\x75\x9e\x0f\x9d\xe4\x3f\x7c\xa6\xa3\x61\xbc\x17\x88\x65\x87\x73\x05\xc8\x0d\xb4\xa4\x78\x0e\x8b\xc6\xfa\x6e\x6a\x3e\x4b\x1d\xbd\x55\x3f\x79\xee\x50\xbb\x5c\xa1\xcc\x0a\xc5\xf5\x19\xed\xaf\x72\x87\x3e\x19\xab\x7d\x77\xa7\xa5\x64\xd0\xa4\x63\xd0\x7f\xae\xf7\x5c\x2b\x40\x95\x98\x4a\xc1\x4f\x54\x63\xac\xa8\xf2\x5e\xbd\x21\xc3\x4c\xf0\x87\x91\x82\x0f\xfe\x90\x3e\x08\xbd\xbb\x6f\x44\x41\x51\xe6\x1b\x0d\x4e\xf2\x4b\x2e\x15\xa3\xbd\x4d\xea\xfa\x6c\x5e\x1a\xed\xf6\xf7\x6b\x19\xee\x1a\x98\xd2\xfe\x64\xa4\x94\x16\x7f\x82\xec\x97\xd3\xd9\xa1\x8d\x4b\x13\x8c\x33\x30\x6f\xfa\xa1\x42\x46\xfe\x50\xc9\x3d\x32\x3b\xaf\xd8\xa5\xf0\xa9\xa8\x07\x50\x70\xc3\x54\x00\xf9\xee\x6d\x3a\x49\x58\x25\x03\x2b\x13\xdb\xf6\x76\xa4\x02\x33\x3a\x2b\x5e\xd0\x31\x4c\x04\x6e\x8f\x94\xdb\xf9\x29\xdf\xed\x1e\xd8\x32\xcf\x06\xb6\xeb\xcc\xb8\x38\x06\xfd\x3e\x51\xc7\x68\xe4\x02\xf4\x73\x6b\x19\x01\x8c\x0c\xe2\x1b\x78\x11\x30\x45\x53\x24\xf1\x87\xb2\x68\xba\x23\xdd\x59\xaa\xc9\xba\x53\x9a\x98\x40\x5f\x11\x55\xce\x4d\xa5\x7d\x72\x44\xfb\x4a\xad\x58\x56\x3e\x0d\x66\xce\x37\x95\x78\xf7\xcd\x89\x22\x88\x85\x78\x87\x36\x87\xe9\x9c\x76\xf9\xff\x77\xf2\x68\x0f\xb4\xfb\x36\x19\x67\x40\x47\x8a\x01\xfd\xa9\x82\x1b\x36\x5f\x75\x69\x2b\xfc\xb6\xbf\xc6\x07\xf1\x93\x26\xe2\x8c\x4b\xeb\x2a\x29\xaf\xaf\xc7\xe6\x25\x65\x9b\x8d\x01\x03\x3a\xd3\xef\x2b\x63\x8c\xa2\x6f\x6d\x8e\xc3\x47\x74\x5a\x29\x59\xf0\x26\xd0\x9e\xf5\x0f\x61\x44\x19\xfe\x87\x03\x2c\xce\x86\xce\xb2\x04\x93\xe7\xeb\x05\xee\x9e\x2a\x4a\xba\xb9\x19\xe0\xef\x90\xa5\x69\x5e\xd5\xfd\x09\x9d\x86\x7d\xc4\x50\x35\xc3\x61\xe6\xd2\x20\x4d\xe7\xf9\x43\x61\xe8\x35\x21\xd3\x3f\x77\xa8\x0e\x9c\x4b\x55\xe1\x5f\xe5\xdb\xe2\x5e\x91\xfa\x94\x1a\xcb\x59\x93\xa7\xf5\x96\xd9\xa3\xfc\x89\x01\xdc\x11\xc8\x1a\xed\x1f\xde\x01\xc8\xac\x04\x29\x47\x2b\x1c\x01\xf2\x4d\x85\x88\xb8\x81\xdd\x24\x39\x4a\xbd\xe5\x00\xb1\x98\xa2\xd6\x0a\x26\xaf\xc7\x70\xd6\xa0\xfd\xc7\x95\x8b\x27\x05\xd5\xc7\x0a\xff\x0b\xc9\xcf\x20\xf0\x6e\x68\x61\xc3\xef\x7b\x60\x47\xb1\x0a\xdf\x95\xa9\x70\xbb\xae\xa9\x16\xea\x2d\xa4\xaf\x08\xd1\x3b\x26\x74\xd9\xf7\xcd\xb7\xb3\x57\xa9\x1f\xe2\xc7\xa0\xc8\x5c\x64\x26\x11\xc6\xb0\xd7\x26\xf6\xc5\xfe\xfd\x0b\xd2\xaf\x2e\x1d\x5b\xdc\xb2\xc4\x66\x14\x5a\x7e\xef\x4d\xe4\x0e\xf5\xa6\x88\x6d\x5a\x0a\xe4\xda\xd3\x16\xea\x4b\xc2\x4f\x7c\xcb\x7a\xc5\xc5\x65\x96\xaf\x4d\x29\x93\x1d\x14\x1a\x48\x8c\x30\xdb\x46\x68\xb9\xaf\x0e\xb0\xff\x6c\x76\x6f\x4b\xa3\x1f\x8f\xe9\xf9\xcc\x31\x05\x31\xa8\x7f\x00\x45\x58\xd2\x38\x16\x14\xb3\x8a\x6e\x9c\x3c\x20\x7d\x6b\x75\x42\x4b\xe5\xa6\x62\x71\xb4\xd6\x83\x6f\xb9\x8b\x79\x22\x23\x9d\x17\xe5\x6a\x02\x4d\x3c\x71\xe6\x93\xdf\xb8\x94\xe5\x8b\x4e\x68\x65\x6c\x80\x8a\xc4\x52\xdc\x50\xe5\x20\x73\xb9\xf9\x0a\x05\x05\xd4\x46\x1c\x59\xf9\x49\x14\xbe\xc3\x2b\x46\x24\xc0\xf1\x8b\xce\x6a\x90\xf6\xd9\x68\xab\xb1\xe6\x4b\xf5\xbe\xe9\x9b\xdc\xc4\xa5\xcd\xdd\xab\x32\x66\x46\x1b\xfd\x43\x7c\x15\x7e\xa2\x02\xc8\xc0\x96\x52\xb8\xe3\x66\x40\xcd\x8f\x1f\xaf\x7b\xc9\x1f\x46\x4c\x17\xbb\xe8\x42\x50\x76\xf9\x6b\xcf\x90\xa0\x98\xd7\xf3\xad\x3f\xc0\x1f\x16\xf5\x47\x8b\x23\x73\x18\xad\x5f\xd4\x20\x11\x5e\xd6\x38\x2a\x8e\x8d\xbc\x36\xc2\x77\x9f\xed\xd4\xa1\x4a\x70\x5e\x21\x03\x75\x69\x51\xba\xb2\x62\x91\x87\xe7\xbd\x83\x44\xc8\x92\x3e\x8e\x02\x5e\xf7\xbb\x13\x43\xa3\x3a\x23\xab\xf2\xd2\xa3\xcc\xbd\xfb\x3c\x62\x82\x58\xd1\x3f\xae\x92\xc6\xaa\x5e\xe1\x3b\xb4\x78\x16\x75\x80\xc0\x19\xc5\x2e\xf3\x8a\x77\xf5\x1b\x62\x6d\xbe\x35\x52\x41\xe6\x2d\x3a\xa5\xf9\x15\x2a\x41\xee\x67\xab\x76\xc5\xe6\x33\x21\xdd\xbd\x15\xa9\x25\x07\x96\x89\x27\xe5\x2d\xf8\xbc\x87\x7e\xa2\xf4\xbf\x03\xaf\xb7\xb4\x31\xa4\x4a\x84\x06\xaf\x56\x2c\xe8\x3b\x42\x1f\x0b\x0d\xf5\xc4\xc4\xcb\xb6\x4b\xd3\x59\x19\x13\xd4\x1f\x24\xe3\x83\xd0\x3f\x4b\x4d\x51\xae\xb5\x08\xa5\xec\x29\x65\x61\x96\x72\xc1\x07\x32\xd3\x1d\xb8\xb2\x14\xaf\x56\xef\x21\x5b\xff\xaa\xb1\x8e\x09\x02\xeb\x2d\x45\xd6\x5e\x74\x49\xb2\x27\x34\x74\x47\xca\xf8\xf3\x47\x94\x7a\x4a\x6d\x45\xcb\xcc\xcf\xa9\x7d\x53\xf9\x36\x95\x0a\x98\x25\xb1\x82\xa5\x00\xf3\x94\x75\xd3\x7d\x25\x33\xf5\xf1\x28\x64\x4f\x9c\xd7\x23\x13\x64\x59\x0c\x51\xbd\x52\x11\x9b\x0f\x0f\xe4\x33\xb7\x27\x12\x46\x9a\xb3\x0d\x5c\x8a\xae\x28\xde\x0c\xf8\x3c\x7e\xdc\x04\xd5\xa9\x52\xb7\x62\xf3\x02\x19\xbd\x18\x4d\xb7\xbc\xd1\xdf\x09\x95\x1b\x7e\xa5\x82\x01\x1b\x15\x7e\xdc\xde\xc7\xbe\x66\xc9\xe7\xb1\x66\x20\xad\x19\x74\x10\x7e\x3a\x7a\x5a\xf6\x71\x99\xdb\xb4\x57\xf6\x6d\x2a\xe4\x52\xa4\x0d\xac\x07\xc5\x4f\x9a\xfd\xe4\xbc\xfa\x01\x72\xac\x77\x68\x5d\xf3\xe3\x86\xf3\xe1\xcb\xed\x38\xcf\x56\x25\x22\x72\x51\x10\xe9\x02\x61\x6b\x8b\xf8\xa5\x03\xed\x61\xc5\xa3\x7f\x01\x9e\xd2\xcd\x13\x48\x6a\xc8\xbd\x07\x6b\x3b\x15\xb8\x68\x4c\xf2\x94\x6e\x1e\xe2\x17\x17\x27\x8a\x61\x24\x8a\x17\x40\x66\x7b\xd9\x28\xbf\x8d\x2f\xab\xdd\x5f\x18\x97\x96\x09\x6b\xc2\x7b\xf6\x87\x07\x0b\x9e\x6b\xb6\x47\xed\xda\xc4\xc5\x84\xf0\x6f\x79\x0b\x74\x36\x03\xe2\x27\x13\x57\x77\xee\x50\x3b\x57\x9c\x72\x8c\x71\x4f\x2a\x17\xba\x93\x91\x78\x12\xd9\xb4\xec\x57\x85\x33\x85\x48\x25\xa0\xcb\x79\x4d\x75\x3c\xaf\xf9\xa0\x50\x24\xd9\x6a\xb2\xb6\xa3\xbe\xe4\x9e\x11\x25\xe3\x99\xf9\xa7\x28\x93\xf1\xb2\xdf\x01\xb0\x7f\x5e\xf5\x1a\x6f\xe1\x6a\xca\x41\xf5\xd4\x04\xd7\xed\xd9\x67\x09\x4f\x22\xb6\xe0\xba\xa3\xdf\xf2\xce\x86\xac\x31\x21\x21\xa6\xc9\xf8\x77\xd9\xda\x14\x37\x1e\xc9\xd8\xb5\x51\x40\x4d\x5c\x8b\x9e\x92\x86\x67\x36\x18\x64\xe9\xaa\x35\x49\xd9\x6f\x69\x32\x1a\x7f\x02\x3f\x89\xbc\x57\x71\xd7\x92\x14\x92\x82\x78\x9e\x53\x46\xe4\xe7\x46\xcf\x38\x2d\xb5\x95\x53\xd5\x53\x4a\x0d\x83\x78\x79\x3e\xd2\x73\x6d\xfa\x18\x3c\xf9\xe6\x04\x33\x9d\x14\x42\x2c\x8a\x19\x9c\xd2\x3b\x3a\xca\x5f\x89\x35\xc7\x44\x62\xa8\x81\x97\xc4\xdd\x98\x02\xa0\x26\xa5\xed\x27\xca\xe1\x77\x68\xa5\x8b\x39\x6a\x13\xa2\xb5\xb4\x16\x72\xf5\x58\x0c\x70\x11\xe6\xc7\x7e\xb0\xbf\x54\x25\x4b\x2e\x49\xa6\x82\x10\xe1\x55\xc4\x11\x24\xb6\x6f\x69\xa9\xa4\x10\xdc\x07\x2e\xb5\xb9\x49\x0a\x08\xc1\x09\x7a\x31\xa4\xa9\x3f\xd5\x16\x25\x3f\xc1\xce\x15\xb7\x01\x6d\x65\xf2\x93\x26\x4a\x5a\x41\x7e\x3c\xb4\x67\x44\x6f\x3b\xb4\x66\x37\x94\xbc\xd6\xd0\x38\xb6\x72\x9f\xf7\x40\x1a\x8d\xaa\x51\xe6\xf2\x8b\x59\xda\xad\xeb\x69\x2a\x6f\xfc\x3d\xd9\x88\x42\x92\xb8\xa1\xfa\x6a\xb9\x2d\x84\xa8\x1f\xd4\x3b\xcf\x44\x4a\xbd\xf3\xcc\xc4\x1d\x7f\xf6\xd9\x76\x51\xc5\xfd\x29\xa5\x74\x7a\x5a\x29\x23\xb3\x6d\xa0\x44\xa6\x31\xc7\x5e\xb3\x4a\xaa\xd4\x20\x4f\xdc\x1c\x69\xe2\xec\xcf\x10\x8c\x05\xbe\xdb\x0a\x12\xc4\xb4\x16\x45\x4e\x8b\x6e\x83\x97\x83\x0d\xf2\xa1\xff\x72\xf4\x19\x55\xdd\xa5\x75\x96\xae\x28\xee\xa2\x7a\x16\xc6\xd5\x1b\x9a\xed\x62\xd2\x65\xaa\x42\x50\x3b\xfc\xb5\x6a\x5f\x32\x17\x17\xf7\x70\xd2\xe0\x68\xee\x50\x7b\x31\xcf\x4c\xd7\x8a\xe0\x14\xc6\xa8\x77\xc1\x6d\xc2\x0e\xb8\xa8\xe8\xd7\xa7\xb4\x91\x43\xbc\x9c\x66\xab\x89\xed\xf6\xa4\x08\x62\x71\x7c\xe5\x61\x00\x1f\x1a\xc4\xb1\xf3\x2a\x87\x19\x66\x89\x8b\xd7\x1e\x56\xf3\x31\x86\x3d\x4a\x99\x40\xf7\x46\x64\xe9\xea\x4b\x2e\xc5\x44\xa8\xae\xdf\xc5\xb9\x2e\xea\xab\xf5\x17\x10\x06\x1d\xfd\x66\x7e\x75\xa4\xb4\x82\xbe\x89\xce\x21\x9b\x32\xe9\xf6\x53\xb6\xe2\x6c\xb9\x9b\xbe\x02\xde\xf0\x9a\x36\x2e\xfe\x53\x0a\xc1\x00\x76\xdf\xc1\x5d\x43\xab\xf6\x5d\xfa\x6e\xc8\xd7\xde\x1c\x05\x98\xfd\x79\x1a\x67\xf3\xdf\xd0\xd2\x45\xf2\x03\xbd\x01\x24\x3f\x2c\x90\x22\x4c\x3d\xe5\x90\x73\x75\x82\x2d\x73\xe8\x85\x36\xb8\x99\x1e\x91\xf5\xa1\x36\x59\xa7\x6f\x21\x2c\xc1\x26\xf9\xa8\x45\x1b\x9b\xaa\x7e\xfd\x3e\x69\x8d\xef\x24\xe4\x05\x52\xaf\x5d\x9d\x90\x69\xbe\xae\x4a\xb9\x2c\xeb\x3e\x16\xd8\x8b\x57\x14\xbd\xe1\x1c\x52\x2f\xaf\x53\x7b\x60\x41\xc2\x10\x1a\x57\xd8\x05\x77\x68\xb0\x84\x98\xf3\xa1\xc6\xf9\x9d\xa2\xce\xb7\xa0\x75\xa8\xfa\x94\xc6\x61\xc8\x26\xff\x0f\xdc\x46\x64\x61\x4f\xad\x2b\x02\xeb\xdf\x86\x3f\x09\x2e\xf5\x2d\x04\x41\x24\xa7\xdb\xd7\x3d\x91\xc0\x7c\xb6\xa3\x3a\x2e\x43\x51\xfb\x47\x27\x1f\xfd\x44\xec\xcf\xab\xb8\xf4\x48\xce\x6f\x4e\x9c\xf3\x9f\x6f\x0f\x13\x53\x94\x2e\x6e\xa9\x24\x16\xa4\x0d\x7e\xec\x23\x74\x2f\xb7\xa6\x64\x66\xb2\x07\xe8\x28\x0f\xc2\xad\x65\x7c\x1d\x41\xab\xe1\x30\xb1\x90\xff\x53\xb9\xc7\x47\xb4\x85\xf9\xb1\xaf\x41\x0b\x6b\x07\xbb\x54\xab\x9c\x19\xe0\x9e\x59\xf8\xa2\x40\x69\x6e\xab\x65\x76\x01\x3f\x0f\xfb\x91\x09\x42\xb4\x04\xbe\xf5\x0b\x54\x52\x7b\x7a\xfc\xbc\xcc\x25\xee\x62\x61\x22\x77\x3f\xa6\xda\xf1\x64\x58\x60\x7b\xce\x16\x3b\xd4\xf1\x76\x5e\x49\x00\x5f\xa7\xfb\xa7\xc1\xdb\x00\x87\x31\x28\x99\xff\x88\xbe\x1d\xd6\xce\xf4\x04\xb3\xe9\xc5\xd9\x76\xd7\x0e\x13\xeb\xc5\x57\xb4\x90\xa4\x98\xac\x7a\x07\x35\x93\x3b\xc3\x13\x2d\x28\x7a\x5c\x50\x12\x7d\x17\x02\xf7\xd8\x38\x51\xe1\xf3\xad\x40\x45\x65\x78\xd8\x2f\xf9\x5f\x7d\x28\x70\xa2\x34\xfa\x7f\x73\xa4\x72\x5a\x80\x55\x70\x72\x6c\xeb\xd4\x6b\x1c\x4b\xf9\xb1\x4e\x30\x82\x39\xab\x33\x00\x8e\xf4\x18\x25\x5e\x6d\xf2\x58\xcc\x6d\xe9\x72\x8b\x7a\xc2\xe7\xc7\x0a\x88\x3f\x39\x13\x6b\xe7\x59\x55\xba\x94\x39\xe9\x5a\xd3\x99\x1f\x37\xd9\x32\xe5\x95\xf3\xb2\x3d\xde\x6a\xaf\xfe\x61\xe2\x5e\x13\x5a\x8c\xbd\x2a\x4d\xa5\xc5\xc8\x1a\xbb\x74\xcd\x44\x6f\xb7\x01\xde\xb3\x66\x53\x3d\x5c\x3c\xa7\x86\x8b\xe7\x26\x34\x65\xf6\xcd\x13\x72\xd3\x75\x2d\x79\x12\xd3\xe7\x00\xd3\xfa\x4e\x14\xb0\xae\xef\xf8\x5b\xed\x7a\x69\x96\x5b\x3a\x7e\xf9\x96\xd0\x05\xf2\x5e\x5d\xf5\xaf\x10\xe6\x9c\xa2\xed\x4c\xd1\x3d\xc1\x4e\x82\x10\x37\xd6\x10\x7b\xd1\xcb\x2b\x9a\x2a\xa1\x3a\x2d\x14\x3e\x07\xf6\xd5\x5f\xd3\xf2\xc6\xcc\xfe\x4d\x45\xec\xfe\xa0\xc9\x92\x58\x48\x0a\x53\xa1\xbb\xc1\x7c\x6e\x7c\x9b\x56\x27\x70\x3c\x03\xcf\xb0\xc8\xaa\xb2\xbf\x4a\xa0\x1b\x8f\xaa\xbd\xa8\x9d\x06\x2e\x4e\x74\xa0\x3f\x5f\x07\x1e\x9b\xba\x02\x56\x8c\xde\xeb\x25\xf8\xbe\x28\x9a\x56\xd1\x27\xd3\x8b\xa9\x96\xd6\x7e\x08\x2b\x00\x0c\x5d\x54\x06\xef\x29\xa6\xec\xc0\x94\x36\x77\x26\x29\xa6\xc3\x7c\x73\x53\xcf\xbb\xff\x2a\xd2\x11\x91\xde\x11\x41\x6a\xc7\xba\xf2\x67\xcf\x92\xc4\xd2\x04\xa0\x3e\x5b\x7d\xe5\xe2\x2d\xfe\xf5\x84\xf8\x25\x47\x53\xb5\xcd\x75\xfa\xf1\x9b\xeb\xaa\xed\xd0\x37\x69\x77\x47\x7d\x82\xb0\xd0\xa2\x12\xae\xbe\x49\xe3\x5a\xd5\xb6\x38\xe0\xc7\x8a\x01\x86\x79\x37\x0a\x70\xfa\xf3\x0a\x2c\x1a\x1b\xc1\x85\xf9\x84\x83\xdb\x0a\xd2\x79\xde\xa3\xd9\x14\xe8\x8d\x0a\x77\x04\x18\x0e\x1c\x82\x58\xf9\xd8\x29\x27\x9a\x6c\x61\x87\xe4\x2e\x18\x1c\x05\x95\xd0\xef\x79\x2d\x89\x1d\x77\xb3\x34\xb5\x49\x02\xe2\xaa\xe7\x66\x07\x01\x73\xb6\x14\x60\x38\x61\xa4\x30\x2a\x93\x95\xee\xdc\xa1\x76\xd9\xb7\xb9\x19\xda\xaa\x3e\xce\xea\x8f\x14\x96\x48\xfd\x55\x84\x3e\x22\x23\x4b\x92\xa3\x45\x1f\x00\x7b\x98\xcd\x36\xf9\xc9\xc4\x32\xac\x2b\xc2\x35\x93\x2e\x23\xbe\x1c\xf0\xa2\xb1\xca\xa6\xf7\xcc\x98\x31\x64\x1a\xaf\x3d\xa1\xc5\xd1\xdf\xc3\x9f\x4a\xb0\x19\x53\x24\xa1\x5f\x29\x04\xc1\xf1\x1e\x6f\x00\x7c\xeb\x82\x7a\x1b\x35\xf0\x71\xf2\x7e\x7f\x14\xac\x1f\x79\xca\x86\x0f\x61\x0f\x05\x2c\xa3\xa3\x5a\x4c\xee\x1d\x8c\x1f\xfc\xc7\xd7\xf7\x19\x17\xe8\x46\x14\x98\x31\x77\x22\x15\x69\x20\xbe\x84\x23\xee\x7e\x68\xae\xb9\x3c\xce\xcd\x52\x49\xe7\x0a\x5e\x75\x6f\x14\xf8\x86\xbb\x3a\x63\xa2\x53\xaa\xa5\x09\x73\x0b\x75\x86\x7f\x79\xdc\x19\x1a\x5b\x7b\x13\x5f\x0d\x49\xd2\xcf\xfc\xa7\x82\xcb\x9d\xe5\xb4\xcd\x3d\xbc\x36\x94\x69\x08\x28\x62\x4f\x10\x74\x1c\xf2\x57\x72\xf4\x58\x75\x19\xcd\x8f\x7d\xd3\xbc\xe8\x67\xab\x56\xc4\x42\x21\xbe\xf1\x01\xbe\x13\x3f\x99\x88\x86\x87\x5e\x68\x0f\x4c\x8f\x9c\x4b\x5b\x4a\x32\x87\x2e\x98\xb4\x73\xb6\x9e\x56\x2f\x41\xa7\x6c\x99\x3f\x87\x63\x15\x2e\xb8\x04\xae\x80\x49\xa2\x2a\x26\xae\xf3\xb4\xb4\x87\x29\x32\xc2\x3c\xf8\xb9\xe8\xd4\x7e\xa4\x78\x72\xfa\x08\x1f\x03\xd4\x58\x72\xb2\x5b\x61\xdd\x09\xe4\xca\xc7\x55\x41\x75\x45\x81\xee\x8f\x4c\xc8\xbe\xbc\x38\xdb\x5e\x4c\xb2\x78\x79\xb1\x2a\xc8\x22\x3b\x0c\x3a\x7f\xa4\x34\x44\x2f\x28\x29\xf0\x13\xca\xdd\x64\x90\x81\xb6\x2b\x1a\xc6\xad\xa0\x67\xac\x6a\xa7\x6e\x96\x24\x26\xdf\x53\xff\xa1\x20\xef\x69\xe1\x4a\x3a\x5c\xaf\x7b\x25\xc1\xf8\x65\xee\xe8\x6e\x5f\x1f\xdb\x29\xca\xf5\x11\xe0\x28\x6c\x95\x1b\xda\xb8\x9d\xd9\x6b\xe8\xc2\x5e\x1f\x05\x9e\xf9\x76\x70\xe7\xd1\xec\xe7\xfe\x2a\xbf\x17\xad\x5a\x40\x62\xdf\x50\x45\xf0\x03\xad\xb5\x5d\xe6\x55\xbc\x4c\xbf\x94\x31\x05\xf4\x87\x82\x2f\x68\x40\xbc\x15\xfd\xcc\x8e\x91\x59\x2e\xaa\x69\x8e\x56\x04\x88\x4d\xe2\x96\xb2\x3c\x75\x86\xce\x29\x95\xcf\x06\x97\xd1\x10\x76\x39\x2d\xc3\xea\xf8\xe9\x44\xd1\x55\x9f\xe1\x7d\xcb\xc4\x2e\xcf\xbe\xf5\x3e\x3a\x17\x94\x83\x5a\xe2\x06\x43\xc7\x28\x43\x99\x1c\x85\x6c\x7e\x23\x12\xec\xf4\x00\x0a\x09\xa8\x24\xd7\xe9\xcd\xf8\x71\x83\xef\xf9\x81\x76\x6c\x93\xa4\x4a\x4c\x4e\x95\x8b\xfe\xe5\x48\x8e\xb8\xcd\x8d\xf9\xd0\x3b\x0a\x5f\xc9\x6e\x61\xc5\x0c\x7d\x75\x41\xaa\xb6\xbc\x56\xce\x71\x04\x57\xc1\xb6\xd6\xef\x8e\x69\xda\x6d\xdd\x7b\x9d\xb4\x8a\x39\xb0\x70\x80\x92\x36\x0c\x74\xd4\x31\xc9\x4c\x4f\xf1\x5f\x08\xbd\x4c\x92\x3b\x08\x1c\x46\x64\xc8\xa8\xbf\x37\x46\xba\x57\x44\xb7\x08\xe5\xe8\xb6\x75\xdf\xbc\x32\x71\xdf\x96\x96\x74\xd9\x37\x8f\x68\xa6\xd4\x5b\x08\x38\x82\xa7\x6d\x68\xaa\xe5\x2e\x36\xc8\xf8\xc5\x80\x4f\xc1\x1a\x4e\xa8\x16\x52\x56\xe5\x85\x4d\x56\xd8\x00\x0f\x5d\x31\x4c\xee\xf9\xb1\x4a\x8a\x07\x26\xef\xb9\xb4\x78\xb8\xe5\xed\xee\xb9\x7c\xc5\x4e\xbc\x35\x52\x92\x5e\xef\x2a\xd5\xd2\x0d\x34\x34\x94\x0a\xd8\xf3\x3c\x52\x6d\xad\x87\x10\xfd\x70\x47\x71\xc6\x6f\x29\xc0\xdd\xff\x40\x67\x8e\xd8\x21\x4d\xf2\xfe\x0f\xb6\x73\x3b\x30\x2e\xf5\xb3\x77\xac\x8f\x0b\x6a\xad\x04\xa3\xea\xd4\x2d\x67\x90\xd8\x45\x09\xf6\x9a\xb6\xcb\x78\x2d\x7a\x44\xf5\xbb\x3e\xf7\x28\xfd\x38\x44\xad\x9f\xe3\x02\xa2\x66\x7a\x6c\x9d\x5c\x0f\x31\xcc\x3b\xae\x3a\x1f\xbb\xd1\x3c\x05\x5e\xec\xeb\xb0\x59\x94\x4c\x8b\x7e\x9d\x08\x4a\xb7\xbe\xf4\x45\xee\x83\x41\x2d\x03\x89\x3c\x47\x16\x21\x9e\x86\x98\xc9\x94\x3a\x74\x51\x7f\xae\x8d\x94\x26\xb9\x69\xfb\xe6\x71\x74\xf8\xcb\x21\xd6\x98\xba\x79\xde\xc0\x9b\xcb\xed\xb0\x5a\x4c\xc8\x60\x3f\x28\x8b\xbe\x1b\x85\x5d\xfa\x6e\x18\xfe\x7f\xa5\xb2\xf6\x55\xa9\x0e\x10\xe3\x30\x01\x02\x17\xe2\xd2\x48\xf5\x2b\xde\x6d\x42\x5f\x0f\xaa\x7c\x08\xef\x5a\x41\xa3\x9d\x22\xe8\xae\x34\xda\x1e\x53\xcc\x96\x25\x02\x8f\xf9\xca\x1a\x54\x4f\x01\xe9\x4e\x42\x91\xdb\xdd\xdc\xad\xd8\xb4\xa5\xf7\x1a\x7d\x4f\x7e\x32\x71\x3e\xbf\x34\x77\x88\xd9\x7c\x7c\xda\x7a\xab\x6e\x3f\x38\x3a\xa3\x0e\x49\x71\xb7\xe5\x80\xa7\x45\x0c\xf9\xb1\x47\x3b\xc3\xd4\xc5\xdf\x08\xd6\x3a\x8b\x5a\xca\xce\x2f\x30\x94\xfb\xae\x2c\x68\x32\x81\xdc\x16\x9a\x71\xdc\x56\x52\xb8\xfd\xd3\x91\x26\x7e\xed\xf1\xc3\xd4\x81\x49\xbb\x05\xd5\x05\x58\x7d\x08\xd6\xde\x21\xd9\xc3\x3b\x4f\x20\x90\x28\x55\x7a\xb1\x89\xdf\x45\x50\x38\xa0\x27\x36\x26\xf6\xd9\xcb\x2f\xb7\x57\x4c\xda\xb5\xe9\xa2\xcd\x31\x86\x43\xbc\xfa\x99\xd6\x2b\xfa\x99\x22\x30\x24\xf6\x70\x55\xec\xa8\xbf\x2c\xf2\x3b\xe6\xd0\x2b\x9b\x1e\xcf\x02\xc5\x79\xac\x9e\x1c\xf0\x7f\x16\x64\xeb\x2f\x29\x5c\xcf\xd0\x38\xdc\x2c\x99\xa8\xdf\x50\x42\x94\x37\x26\x02\xe2\xdc\xa1\x76\x2f\xc9\x16\xed\xa7\xda\xd8\xeb\xc4\xfc\xb9\xf4\xb9\x96\x62\xf9\xfd\x24\x0a\xbf\xf5\x27\x9a\x3e\x68\x86\x3b\x03\xef\x1b\xab\x1f\xe9\x05\x00\x37\x18\x1d\xed\xc2\x00\x45\x6e\x89\x6a\xb1\x42\xe1\x06\x64\x83\x1d\x1d\x1d\xcf\x55\xb2\x50\xe6\xa6\x2b\x48\x5d\xb4\x65\x7e\x4c\x3f\x54\x0a\xc6\x96\x77\x02\x7d\x0f\xb7\x01\x07\xca\x8f\xf5\xfe\xa9\xab\xce\xae\x32\xd8\xb9\x15\x05\x35\x24\xd8\x14\xf3\xff\xa7\x2f\x84\xef\xf0\x86\xf2\x4a\xdd\x68\x6a\xbf\x0c\x73\xbb\xe2\xec\x2a\x1d\x1a\xb8\xea\x47\xd4\x1d\x38\x12\x85\xe6\x63\x7d\x8a\xb3\xf4\x50\x23\xae\x23\x8c\x1e\xbe\x19\x85\xa6\xee\x37\x15\xde\xa3\x74\x65\x62\x5b\xad\xb9\x43\xdc\xfa\x86\x2a\x3a\x3f\x56\x44\x44\x82\x3e\x14\x3b\x34\x91\x2f\x00\x34\xcf\x52\x78\x11\xfe\x37\x21\x7c\xe5\x2c\xd5\x64\xf0\xa0\xc7\xfd\x56\xb3\x18\xa7\x4d\x32\x32\x4f\xa5\xb3\x15\x8d\x36\x68\x09\xf0\x63\x25\x28\xb8\x94\x64\x59\x0e\xda\x01\xd2\xee\xa3\x23\x35\x5a\xfb\xbf\x71\x0e\x6a\x7b\x70\xfe\x07\x26\xfc\x21\xfb\xbe\xa5\x58\x90\x76\xd1\xa6\xc5\x62\x95\xa3\x7f\xa1\xa5\xc3\xa4\xd8\x0e\xae\x96\x77\x14\xbd\x67\xc9\x25\x6e\xe8\x52\xa8\x27\x4a\x44\xa1\x3b\x22\x5d\xeb\x50\x03\x0d\x6d\xbe\x43\x25\x8c\xac\x31\xee\x2f\x4f\x00\x06\x20\x55\xf6\x17\xb4\xfe\x2d\xec\x00\x88\xdd\x8c\x48\xfe\xda\xc4\x49\x33\x77\xa8\x6d\xca\xd2\xa6\x5d\xd1\x16\x68\x6a\x49\x3e\xe2\x8b\x2d\xd3\x1b\xf3\x8a\x3f\x85\x5b\x27\x19\xfa\xd6\x5b\xb4\x6f\xbe\x3d\xcc\x8a\x72\x60\xf2\x65\xc1\xcb\x08\x42\x9c\x7e\x94\x54\x20\x4f\x6a\x51\xf1\x2a\x8d\xfb\xc9\x1a\x70\x99\x92\xdc\xaa\x44\x77\xb4\xdb\x5f\x9c\x67\x07\x44\x73\x65\x39\x78\xda\x2f\x28\x98\xa1\x64\x83\xed\x3f\x69\x19\x3c\x77\xa8\x5d\xda\xb4\x04\x8a\x33\xa0\xdc\xce\x29\x8f\xf0\x49\x4e\xfa\xdc\xa1\xf6\x62\x95\x17\x25\x54\xf7\x44\xd0\x3d\x74\x56\x2e\x28\x01\xc2\x5e\xc6\xd3\x1b\x16\x6e\x51\xfe\x2e\xd7\x91\xb7\x78\x50\xcd\x6f\xf9\x38\x3b\xa6\x86\x7f\x05\xbd\x00\x1f\x82\xeb\x6b\x81\xee\xeb\x7b\xd1\x98\x3a\x1c\x05\x2a\xe1\x4b\xd5\x5b\x4d\x6b\xc5\x88\x25\xbe\x6f\xd9\xaf\xba\x01\xda\x21\x92\x53\x8f\x49\xbb\x2a\x95\xc1\xbe\x4b\xb2\x22\x1b\xf6\x31\x68\x50\x8e\x9e\xf5\x8b\xc5\x59\x51\x47\xe9\x3c\xee\xef\xd2\x40\xbb\x8b\x4a\xe6\x89\x41\x25\xc8\x4b\xde\x18\x6d\x45\x1c\x6f\x1e\xc7\x72\x65\xb5\x02\xca\x34\xa5\x67\x4b\x3f\xcf\xe3\x76\x02\x29\xfb\x9f\xa8\x38\xd3\xcd\xb2\x01\x8f\xcc\x05\xda\x4f\xef\x87\x82\x02\xd1\x00\xf5\xe0\x31\x85\x84\xc9\x6d\x6c\xdd\x0a\x1b\x93\xe0\x7b\xc2\x49\x97\x1f\x2b\x81\x98\xbe\x41\xeb\xe9\x00\x37\x58\xb5\xbf\xfd\xb5\x06\x6f\xba\x72\xb5\xce\xe0\x89\x8e\xcc\xae\xcd\xd1\x98\x85\x73\x38\x0c\x56\x6c\xca\x30\xc1\x03\xc1\x1f\xcc\x03\x77\x2e\x28\xa8\xc8\x9f\x4d\x34\xd0\x48\x7c\x39\xce\x7a\xa9\x7b\xd5\x67\x34\xde\xe2\x58\xd9\x1a\x3f\xae\xec\x9d\x96\xb2\x3c\x46\xa5\x84\x1b\x70\x43\xf1\x08\x6e\xf8\x74\xb2\xeb\x8a\x38\xb7\xa5\xd6\x4a\x03\xe1\x80\x1f\x37\xe9\xd2\x58\xd3\xb3\x39\x4f\x9b\xb4\x2d\x8d\xdc\xc8\xad\x2f\x39\xf4\x42\xbb\x6b\x97\x4c\x95\x00\x59\x21\x79\x66\xfd\xd5\x24\xff\x6c\x00\xa9\xba\xdc\x71\x19\x85\xb6\xd4\xd7\x34\x68\xe3\x6b\x7e\xf4\xd5\xcd\x5d\xe2\x65\x60\x79\xf4\xac\xc0\x24\xe7\xb5\x3a\x55\x69\xcd\xf2\x18\xc3\x5e\xed\x8f\x3b\xd1\x18\xbc\x7d\x8f\x82\x11\xc6\x55\xae\xf0\xce\x67\x14\xde\xf9\x8c\xa2\xbe\xc7\x89\x4b\x5d\x6c\x12\xdc\x1d\x34\x81\x4e\xa9\xd9\xd1\xa9\x89\x29\xdc\xde\x39\xca\xb0\xf3\x45\x57\xf4\xfd\x6d\xc5\xfe\xc6\xb8\x99\x1f\x7b\x38\x4f\x69\x73\xca\x7f\x1d\x6b\x9a\x8b\x82\x9e\xa2\x9c\x6e\x28\xdd\xba\xc4\x2e\x95\xae\x28\x89\x59\xaa\x2d\xef\xbc\xa7\x6b\xfd\x32\xcf\xf5\xae\x77\x9f\xb4\xc7\xe4\x0c\x30\x8b\x59\x55\xee\x69\x05\x7a\x31\xee\x01\xca\x9f\xab\xa3\x20\x67\xf0\x8b\x9d\xc0\x02\x7a\x62\x9d\xce\x09\x2f\x56\xec\x27\xb4\xac\x0c\x8a\x3b\xb8\x81\x5c\xd8\x73\xf8\x03\x29\x07\x9a\x65\x34\x2e\xfd\xc1\xd3\xeb\x5e\xb5\xf4\x37\xfe\x1e\xe5\xc8\xd8\xb2\x8f\xaf\x53\x00\xda\x64\xa5\x0d\x50\xb9\xb7\xaf\x6b\x27\xc8\x2c\x5b\xe6\xdc\x47\xa8\xbf\x88\x59\x08\x2a\x3b\x3b\x0a\x1d\xcb\x82\x18\x62\xe5\x12\x64\x13\xbb\xdd\x30\x48\xc1\xeb\x6e\xea\x41\xca\x5f\xd1\x06\x96\xd8\x13\xf2\xd3\x81\xed\x3e\x1e\xb8\x94\x7b\x9e\xeb\xa8\xce\xef\x23\xeb\x81\x1c\xdb\x02\x25\x11\xa1\xfb\x6d\xce\x3d\x04\xfb\x40\x3f\x8c\xda\x7d\xff\xf4\xb9\x8e\xf7\x31\x1f\x3d\xb9\xae\x5a\x2b\xad\xf5\x20\x35\xfa\xf0\xfa\x18\xd5\x34\x34\x6e\xd8\x7a\x90\xae\xc2\xc2\x67\xd7\x5b\xbf\x79\x90\x0b\x0d\x00\xb0\xe8\x78\xea\xfc\xff\xd6\x5b\x7b\xf7\x7a\x51\xc5\xfa\x9e\x89\xbb\x71\x38\xaf\x4d\x1c\x67\x89\xe9\xda\x42\x29\x5a\xb1\x5e\x87\x57\x02\x5d\x98\xf5\x38\xde\xad\x1e\xf2\x90\x01\x42\xa8\x62\x88\x1b\x3f\xf1\xda\x0e\x45\x56\xa5\xdd\x5d\x01\x6f\x7d\x41\x49\x12\x23\x62\x43\x12\xfa\xf1\x4e\x80\x4c\x7e\x8f\xf0\x9e\xdc\x5e\x1a\xa9\xc1\x2d\x4f\x0d\x04\xbc\xa5\xac\x88\xe1\xc2\x85\x33\xea\xb2\x1a\x51\x2d\xdb\x34\xb5\xdd\x35\x06\x74\x71\x7a\x81\x63\x17\x57\xe3\x04\xde\x05\x35\x79\xd0\x7d\x5e\x72\x45\x6c\x12\x8c\xa6\x81\x33\xf8\x33\xed\x05\x03\x13\x79\xd1\xa5\xaa\x8f\x0a\x89\xd7\xa1\x86\x00\xc6\x01\x97\xf1\xbe\x32\xbb\x71\x85\x59\xb4\x49\x62\xa6\xd4\x1c\xe6\x34\x7d\x7d\x71\x0b\xa4\x9b\x2b\xc7\x4d\x28\x69\x57\x5d\x92\x7c\xa6\xf5\x92\x78\x14\xc3\x4c\x1a\x53\xb2\x9f\x8c\xc2\x49\xb0\xa3\xa3\x88\x3a\xa7\xa8\xdb\x83\x2f\xf4\x6f\xe9\x8b\x4a\x1e\x52\x7f\x39\x80\x1b\x7e\x01\xcb\x0c\xb1\x9e\x3d\x24\xf0\x8a\x3d\x1d\xc5\x5a\x7e\x7c\x9d\xa0\x19\x0c\x2b\x19\xd5\x11\x61\x93\x5b\x13\x58\x7c\xbb\xd7\xeb\x45\x86\xd8\xfb\x3b\xbc\x35\x71\xb9\xa6\xd8\x33\x42\x20\x29\x74\x4b\xd9\x46\x28\x52\x12\x63\x90\x62\xc0\x48\xf6\x51\x02\x95\x00\x49\xb1\x07\xdb\x0d\xc1\x64\x5b\xa7\xf5\x85\xdf\xe6\xdf\x7a\x7c\xcc\x2a\x3d\xcf\xdd\x54\x38\x73\x79\xbf\x61\xfe\x78\x63\xcc\x04\x7c\x8f\x02\x93\xe5\xe5\xda\x6e\xfa\xfd\x22\xa1\xa9\xda\x54\x67\x46\xda\x3e\xb6\xbe\xdc\xac\xab\x16\x05\xc4\xfe\xf9\x67\xc6\x04\xd7\xea\x2f\xed\xd1\x2b\x2a\x75\xa1\xeb\x24\x7d\x86\x40\xe5\xb9\x89\x15\x2d\x3c\x95\xc9\xd1\xef\x41\x2a\x0e\x6d\x5a\x4e\x29\xd7\x0e\x68\x5c\x0a\x82\x4d\x59\x0f\x1d\x1b\x05\xf6\x40\x6e\xd2\x1d\x21\x3b\xda\x54\x16\x28\xdf\xc4\x95\x11\x44\x7e\x28\x79\xc0\x54\x91\x36\x6c\x7d\x37\xb9\xdd\xa6\x48\x09\xab\xfd\xec\x89\xd0\x32\xda\xb3\xae\x0e\x80\x27\x61\xa1\xcd\x6a\x1e\x74\xbd\x64\x28\x48\xbf\x12\xc9\xf9\x4e\x8a\x70\xd8\x70\x70\xbf\x60\xca\x0a\x1a\xc9\xd8\xc3\x77\x71\x96\x00\x84\xfa\x08\x89\xfb\x88\x51\x2e\x9d\x2b\x82\xb0\x09\x9d\x98\x07\xb8\x71\x18\xc2\x5f\xc3\x66\x15\x89\x1a\xba\x42\x28\x71\x1f\x25\x76\x03\x1b\x6b\x8f\xd4\xd0\x79\xd3\x27\x50\x7e\x74\x4b\xcb\x02\x47\x08\x78\xe2\xfc\x38\x0a\x5a\x93\x71\x5e\xb9\x52\x09\x5d\xfd\x48\x4b\xd7\xfc\x48\xa9\x1e\xc4\xfd\x2c\xb7\xec\xfb\x25\xc5\x6d\x7d\x81\x05\x57\xae\x8a\x5e\xda\x9a\xfc\xff\x27\xf2\xd3\x97\x5f\xae\x8b\x2c\x26\xcc\x01\xc7\x7e\x5f\x31\xc2\x99\x24\x2d\xec\xed\xad\x9c\x2c\xe1\xa5\x2d\x9a\xc2\x2e\x92\x64\xb2\x67\xa5\xbf\x41\x3b\x7a\x0c\xfc\x81\x38\x33\xd3\x51\xbd\xda\x9b\x8d\xbe\x8f\x55\xea\xd2\x62\xe8\x72\xe9\x61\x6a\x3f\x29\x99\x0b\x29\x67\xb2\x73\xfe\x52\x2f\xd9\x81\x4b\x89\x72\xee\x27\x6b\x27\xe9\x52\xf0\xe3\x7a\x39\x7b\x5d\x8e\xa4\xa5\xe2\xf6\x85\x48\xdb\x6a\x5d\x98\xe8\x5c\xbe\xb4\x30\xdb\xee\x39\xa9\x8a\x19\x39\x14\x69\x14\x91\x72\x06\x4c\x83\xc6\xe7\xdc\xa1\x4d\x22\xc0\x6c\x4e\xad\x37\x31\x08\x8b\x2c\x76\x59\x92\xf5\x5c\xc1\x30\x75\x41\x11\xb5\x94\x4d\x6d\x38\x7e\x96\xb2\xdc\xba\x5e\xfa\x54\xc8\xd1\x6e\x93\xce\x0b\xa6\x01\xbb\x3b\x14\x44\x19\x63\x22\xd5\x62\x70\xb4\xbe\x86\xb6\x82\xc8\x47\x07\xff\xf9\x3f\x41\x15\x89\x8c\x81\xb1\xdb\x8c\xd7\x44\xf8\x96\xab\xa2\x84\x5f\xaf\xea\x62\xf3\x22\x36\x8b\xf8\x72\x68\xce\x47\xcb\x3b\x08\x61\xca\x83\xdd\xf1\x30\x30\x73\xde\x37\xad\x2e\x6f\xb1\xd5\x3e\x00\xbe\x93\x9f\x7c\x2a\x13\x32\x8b\xad\x49\xa7\x43\x2b\x0f\x06\xfd\xf8\x69\xa7\x28\x0a\xe0\x9a\xb0\x11\x05\xc6\xe8\xe4\xd5\x34\xc1\x58\x77\x22\x46\x27\xd8\xcb\xb0\x35\xcf\x6a\x5b\xbf\x2c\x5d\xb1\x79\x90\xb9\xc2\x5b\x6a\x16\xf4\xd9\x71\x08\x81\x8b\x1f\xd6\xe2\x50\x30\xc2\x12\xda\x6c\x7d\x57\x70\x7c\xdd\x56\x5d\x3e\x30\x34\xd1\xc1\xd8\xd1\x19\xd3\x39\xa3\xfb\xe0\x85\x6e\x16\x66\xfd\xb0\x42\x59\x5c\x4e\x77\x14\x9f\xed\x81\xaa\xe0\xbd\x7e\x18\x63\x76\x71\xa2\xb0\xbe\x28\x3f\x51\x90\x53\x93\x2c\x56\x03\x2e\x72\x25\x70\xd4\x5f\x4c\x82\xcb\xd6\xab\xb8\x7f\x7f\xbb\x67\x0d\x44\x21\x10\xc7\xbf\x47\x3f\x8a\x1f\x37\x10\xa1\x13\x6b\xca\xbe\x05\x06\x00\xdd\x0f\x9e\xee\x6a\x11\x1e\xb4\x75\x3f\x56\xf9\xe5\x30\xcf\x62\x5b\x14\xec\xb6\x83\x5a\xe4\x94\x32\xe9\x3e\x35\x11\x4e\x16\x66\xdb\x83\x2c\x2d\x7b\x59\xb2\xe4\x85\xae\xb5\xdf\x92\x06\xc8\x88\xfd\xf3\xd6\xaf\x7b\xe8\x85\x76\xdf\xf5\xfa\x32\x34\xf7\x59\x5f\xbd\x67\xbc\xe7\xe1\x8b\xb3\x7c\x13\xae\x2a\x56\x89\x8d\x49\x7c\x00\x2d\x72\xa8\x92\x23\x5f\x3a\xa9\x0c\x5e\x98\x5b\xca\x47\x31\x76\x9f\x37\x1e\x09\x22\xb5\x27\x15\xca\x28\x77\xa6\xdb\x52\xd4\xdf\xf7\x23\x25\x95\xf4\xbe\x56\x7d\xb5\xe4\xe5\xd7\xf2\x2e\x58\xff\x94\x56\xb7\xaf\xd5\xb4\xed\xf0\x13\x7a\xa9\x97\x79\x96\x10\x37\xef\x80\xf7\x23\x0d\xdf\x7e\x43\xe9\xc3\x5e\xc2\xd6\xf7\x87\xbc\x17\x93\x86\x41\x1f\x0e\xec\x4d\x7c\x3f\xcc\x3b\xce\xe0\xc8\x95\x81\x6c\xbd\x13\x84\xc2\xd9\x04\x75\xeb\x57\x03\x93\x9a\x56\x98\x38\x32\x42\x84\x9f\x8c\xed\xb9\xa2\xeb\x94\xfe\xd9\xa6\xd2\x3f\xdb\x54\x58\xaa\xac\x2a\xeb\x72\x1a\xa7\x04\x7b\x46\x47\xa1\x80\x3b\xa5\xe5\xf3\x48\x73\x6f\x57\x00\x71\x5d\x44\xac\x42\xa4\xe3\x03\x1f\x63\x3b\x34\xcb\xb1\x7e\x67\x10\xde\xb0\xfe\x67\x3a\x14\xd1\x10\xcd\x99\x17\x81\x50\x7b\x61\xcc\xa1\x8e\x36\x32\x0b\xc6\x37\x81\xf6\xb2\x15\x9b\x17\x59\x82\x69\x01\x7b\xbe\x8c\x82\xb0\xc1\xfb\x23\xe5\x73\xf3\x1d\x65\x18\x32\xdd\xa9\x13\x03\xd9\x20\xa1\xe6\x5a\x32\xc4\x11\xde\xa9\x92\xb7\x53\x23\x25\x93\x7a\x1f\x32\x31\x3e\xa3\xf0\xbf\xee\x04\xab\xd4\xe8\xd0\x00\x00\xe0\xc7\xb4\x48\x04\x18\xd4\xe0\x7c\x65\x4a\xc3\xe2\xdf\xb2\xf1\xd4\x88\x6b\xdc\xd7\x55\xe3\xd7\x42\xbb\x21\x37\x8b\x9c\xf5\x20\x59\x79\x78\x5d\x17\x06\x33\x48\xec\xb1\x4a\x6f\xa9\x14\xf5\x42\x83\xaa\xe8\x5c\xdb\x9a\xa2\xe4\x52\x4e\xb6\xa8\x32\xb0\x66\xcd\x38\x2c\xff\x9b\x4d\x2d\xe0\x38\xa1\xa8\xb7\x7f\x7f\xa3\xe6\x61\xc3\x0b\xcc\xaa\xc9\xbb\x0a\x3d\xa9\xbd\x07\x6f\x36\x9a\x4b\x0e\xcc\xab\xaf\xda\xdc\x28\xeb\xfc\x23\xb8\x32\xd2\x98\x6c\xe8\xbe\xc5\xd9\x8a\xf5\xc6\xe5\x5a\x32\x5f\x44\x50\x68\x71\x62\x09\x4e\x82\x65\x17\x66\xdb\x8b\x0e\xe2\xb4\x5e\x28\xa7\xfe\x7b\x56\x5c\x8c\x82\x3d\xf5\x9b\xa1\x95\x5c\x1a\x26\xb5\xa2\x3e\x7d\x63\xa4\xa4\xc6\xe8\xa2\x20\x05\x68\x75\xb4\x77\x86\x9a\x7b\x5e\xc5\x85\x97\x21\xe8\x13\x4a\x11\xcf\x0d\x87\x42\x2d\x1c\x2b\xb1\xf9\x49\x33\xb5\xb0\xcc\x56\x53\x9a\x06\xb0\x45\xde\x28\x6c\xef\xf7\xf1\x72\x26\x0e\x34\x79\xcf\xb9\xb4\xeb\x4c\x5a\x8c\xd9\x1a\xb3\x09\xa6\x68\x0e\xeb\x09\x78\x8f\x54\x0e\x43\x9e\x7a\x5e\x1b\x5a\x9d\x1f\x3d\x2c\xbd\xa2\xca\xee\x56\xce\x35\xb7\x09\x65\x80\xe0\x74\x04\xbf\xde\xcb\x40\xfb\xd6\xc3\x9f\x04\x45\xfd\xff\xfa\x69\xa5\x14\xb0\x63\x5d\x49\x4b\xdd\xc7\xc6\x47\xb6\xff\x80\x2e\x2a\x65\x65\xb3\x9f\xeb\x28\x71\x99\x1d\xe8\x24\x89\x53\xfa\x98\xb8\x55\xda\xfb\xc5\xd6\xb3\xcf\x7a\x83\x38\xda\xf6\xde\x65\x6f\xc1\x9f\x59\x51\xd0\xc5\xfd\x04\xa7\x9f\x87\x80\xec\x9d\xe3\xce\xc1\xc7\xba\x7c\xbc\x3f\x0a\xc7\xf4\x6d\xcc\x86\x58\xd9\x0a\x49\x1e\x6e\xf7\x19\xba\x12\xd8\xa7\x9c\x7c\x7a\x8f\x86\xb9\x43\x5e\x34\x50\xf9\xf5\x63\xc6\x88\xdf\x75\x13\xe7\x0f\x72\xa6\x1b\x60\x57\xe1\x20\xfe\x99\x46\xbc\xdc\x1b\x29\xc5\xac\xab\xa4\x62\x84\xa4\xf8\xcf\x51\x19\x0a\xd6\x59\x09\x77\x6c\xe7\xd0\x82\xa1\xeb\xcf\x23\x04\x3d\x26\x0c\x51\x35\x4b\x15\xe4\xaf\xfc\x2d\x52\x7c\xf6\x49\xc5\x17\x7e\x9b\x83\x09\xd3\xd1\xa1\xea\xff\xaf\xe9\xbe\xe0\xc0\x9f\xe9\x50\x65\x4a\xd1\xf9\x77\x9e\xa4\xb6\x1a\xa3\x4c\x9b\xd0\x89\xb1\x4b\xed\x30\xb1\x87\x5b\xaa\x1b\x3e\x1a\x83\x66\x78\xe0\x47\x59\x75\x6d\x5a\x16\xc0\x07\xe2\x46\x41\x0a\x41\x59\xc0\x4b\x40\xbb\xad\x3a\x41\x3d\xb3\x62\x77\x29\xc9\x47\x86\xe0\xf9\xbe\x47\xfd\x6d\xfd\xec\xe2\x25\xdf\x25\xfa\x18\xf5\x84\x74\x96\x70\xb5\xf8\x1d\x46\xc1\x65\x06\x9d\x0e\x16\x4f\xc5\x57\x60\x27\xff\x26\xf5\x71\x97\xae\x64\xc9\x0a\x53\x07\x04\xcf\x1b\x66\x07\xa7\x14\x04\xd9\x1e\x1e\x9a\xb4\x70\x59\xba\x33\x9c\xf9\xaf\xe3\x3b\x09\xbd\x4d\xb9\x40\x9d\xd1\xda\x31\x77\xb9\xdc\xd3\x74\x76\xfc\x8e\x7f\x81\x05\x2c\x75\x4d\x28\x18\xfb\xae\x7c\xa4\x5e\xe7\xa2\xa1\xa6\x79\x90\xf5\x62\xc0\x26\xe1\x86\xad\x50\x6e\x69\x05\x78\xce\xbd\x67\x32\xbd\x8b\x0f\x91\x6b\x1a\xa8\x4f\xd3\xd8\xb2\x02\xb7\x0e\xa7\xfb\x29\x0d\x2a\xfb\x01\x96\x39\x36\xd9\x65\xcf\x66\x1d\x9a\xc4\x16\xa5\x4b\x55\xf0\x42\xdb\x9b\x73\x0b\x7e\xa2\x10\x0c\xa9\x19\x58\x71\x28\xc2\x79\x7a\x51\x11\xda\x2f\x36\x29\x6b\xdb\xc3\x8e\x90\xac\x48\xa5\x71\xd4\x7f\x9d\x16\xb7\x7c\x56\x40\x64\x4c\x8e\x80\x0f\xbd\x00\x1f\x70\x16\x63\xf3\x76\x7e\xbf\xaf\x19\xbd\xbf\xef\xcf\x95\xd2\xa6\xdc\xa1\x17\x04\x66\xbd\x94\xfc\x78\x20\x74\x53\x67\x28\x38\xca\xd7\xd6\x7e\xcb\xac\x9c\xcd\x25\x1e\x52\x96\x4d\x55\xcd\x6c\xaa\x51\x7c\x6e\x93\x2c\xa6\xb2\xdd\xdb\x5f\x9d\x47\x6b\x4e\x44\x0b\x1b\x48\x8a\x71\xdf\xc6\xcb\xd9\xd2\x52\x2b\xb4\x70\x2f\x44\xca\x67\xe0\x42\x93\xd6\x78\xb5\x9c\x1b\xba\x51\x63\x04\x55\x05\x12\xd9\x18\x23\x77\xf6\x4c\xb2\x3b\xd4\x99\xbb\x3a\xc1\x25\x0b\x12\x68\xac\xc8\x15\x29\x93\xb5\xcb\x0a\x86\xba\x9d\xac\xdf\x71\xa5\xce\x61\xed\xc8\xa6\xa5\x5b\xef\xb9\x72\xf5\xde\xf6\xf2\x1b\xc1\xf4\x99\x47\xa8\x38\xdb\xaf\x2b\x42\xac\xe9\x52\x49\x5c\xb8\xb4\x37\xa3\xb4\x3a\x1f\x28\x5b\xb0\x53\xca\x4f\x08\xb2\xd8\xfc\x37\x88\xce\x58\x34\x3f\xd6\x9e\x76\x36\x5f\xca\xf2\x81\x21\xa1\xb4\x85\xd9\xa0\xa8\xed\x91\x35\xdf\x8e\x5a\xca\x40\x68\x0c\xd8\x3a\x61\x93\x78\xa0\xae\x21\x1e\xd7\xa0\xac\x90\xae\x7d\x5f\xf9\x5d\xb2\x98\xba\x22\x2b\xc8\x2e\xbc\xa5\x6a\xbb\xfb\x88\x85\xf8\x1a\xb7\xe8\x0c\xdc\x64\x3f\x3a\x6f\x62\xba\x30\x1b\x76\xdd\xfe\xfd\x0b\x9b\x8c\xe4\xc5\xfe\xde\x1c\xa7\x41\xd4\x71\x43\x76\xa5\x6a\xa7\x1c\xe3\x58\xca\x4d\x01\x05\xdb\x32\x49\x96\xf6\x76\xb6\xbc\x72\xe9\xef\x51\x53\x41\xf2\x29\x05\x60\x79\x5f\x65\x96\xe7\x28\xc0\x00\xe5\x74\x13\xc7\x1d\xff\xd1\x28\xe8\xe7\xdd\x54\x50\x96\xaf\x54\x19\x04\xc6\x30\x53\x10\x43\xa5\x10\xf1\xde\x8b\x14\x3d\xf8\x8a\x3a\x49\xba\x19\x9b\x6a\x79\x0b\x6e\x3f\x7b\x9e\x14\x81\xd8\xbf\xbf\x3d\x34\x45\x5f\x4c\x07\x90\x01\x7c\xa2\xb2\xf6\x4f\x1a\xba\x83\x07\xc6\xf6\xb4\xea\x67\x45\x8a\xc6\x77\x51\x55\x7b\x45\x69\xd3\x94\x4c\x9d\x94\x6c\x04\x2e\x95\x38\x22\xb4\xbc\xf9\xfc\x24\x3a\x8d\x3c\xe4\x12\xc7\x07\x92\x60\x08\xe9\x2e\x0a\xb8\x30\xc4\x53\xea\x10\xc2\xd0\xce\x0f\xed\xbd\x70\x78\x63\x20\x28\xd2\x6c\x75\xd1\xe5\xdd\xe2\xd3\x89\x3d\x9a\x9a\x9c\xe5\x12\xae\xbd\xe0\x54\x50\x89\x39\xa7\xf4\x06\x97\xaa\xb4\x6b\xc0\xdd\xc4\x5b\xab\xde\xb5\x6f\x64\x47\xe3\x12\xa7\xe5\xb4\xd2\x1f\xdc\xd6\xa1\xbc\x4a\xcb\xf8\x79\x3e\xba\xaf\x00\xde\x6b\xf0\x41\x99\xa7\x2e\xe5\x8a\xcd\x5b\x81\x48\x0b\xed\x5f\x41\xd4\x2b\x6f\xeb\xdc\x91\xa3\x0b\xd7\x84\x48\x99\x87\x0a\x47\x03\x98\xa7\x18\x02\xd2\xa2\xe3\x3f\xf2\x4d\xf3\x32\xcb\xe3\xbe\x8c\xf7\x99\x23\x8e\xe3\x55\x08\xe3\x61\xfb\xf4\xf2\xac\x28\xa6\x83\xbc\xec\xc9\x48\x69\x37\x82\x24\xc3\x8f\x23\x85\x0c\x3b\x19\x38\x9d\x2e\xc9\x4a\x8d\x12\xda\x46\x91\x95\x1f\x77\xc2\x60\x9d\x3e\x48\xcc\x64\xf0\xcf\x50\x1b\xc3\xe8\xf3\x8e\xea\xcf\x4f\x2e\x8b\xba\x34\x1d\xe6\xd9\x4a\x46\x30\xa9\x20\x59\xcc\x3a\xbf\x92\x3c\x05\x33\xd2\xbe\x35\x25\xf1\xa7\x45\xf8\x55\x9d\x03\xff\x0b\xdd\x2e\x41\x9a\x7e\x46\x49\x11\xa5\x65\x4e\x2d\x05\x52\xe9\x5a\x10\xfe\xf3\x39\x8a\xd1\x72\x56\x84\xd6\x1b\xf5\xe4\xab\xdc\x76\xa7\x03\x1b\x92\x7d\xa3\x24\x77\x56\x25\x1a\xa2\x29\xff\xc3\xd8\x32\x4b\x4c\xdc\x1a\x17\x6f\x18\x13\x79\x50\xbc\x05\xb3\x5a\x64\xe9\x0e\xe5\xef\x73\x5e\x15\x8c\x38\xde\x3c\x98\xd6\x07\x5d\x28\xae\x63\x09\xb7\xa8\xf1\x81\x94\xe9\x6a\x93\xf7\xf2\xc0\x96\x66\x50\xc5\x2e\xe1\x26\x80\x86\xfb\x89\x02\x09\x7d\x3b\xe4\x76\x57\xa2\x87\xfd\x48\x07\xad\x4b\x04\x90\x5d\x9d\x10\x19\x99\x82\x8f\x00\x7f\xb3\xc1\xca\x4b\x00\xd0\x8a\x54\x70\x4e\xa5\x4c\xe7\x26\x5e\x32\x77\xa8\x6d\x16\xf3\x6a\x58\xe2\x25\x32\x6e\xd0\x63\x88\x30\x3f\x5a\xb1\x29\x6b\x79\xa2\x83\x78\x3c\x52\xe3\xe8\xe3\xc1\x26\x3d\x8f\xfb\x86\x79\x76\x22\xd5\xdd\x0a\xb2\xdd\xaa\xbc\x7d\x25\x2b\xec\x90\xf5\x28\xa4\x3a\xd7\xe0\x1f\x7a\x7b\xae\x77\x14\xbe\xa1\x57\xad\x4d\x8f\x3b\x0d\x7b\xab\xb0\xdb\x74\x44\x7a\x58\xea\x8b\xb3\xbc\xa0\x47\xcd\xce\xa4\xd9\xb2\x9d\x09\x0a\x95\xe0\x4c\xb1\x49\xf9\x28\x20\x4d\xdf\x45\xc8\x0c\xe0\x5d\x5f\x3b\x34\xa1\x10\x8b\x65\x3b\x2c\x5d\x2c\x86\xe1\x9e\x69\xb8\x10\x8c\xaa\xb6\x7e\x97\xcf\x8b\x9a\x2a\x5d\x09\x6f\x76\xb3\x30\xeb\xcd\x6e\xc2\x29\x60\xd3\xd2\xe5\x7c\x60\x70\x2f\x0c\x09\x85\x34\xc6\x9e\x52\x53\xa8\x6e\x15\x97\xce\xeb\x8d\x63\x06\x7b\x52\xcd\x63\x4f\xfa\xe1\x56\x56\x95\xab\xd6\xf5\xfa\x33\xea\xbd\x3e\xa4\x0b\xe8\xd5\xd6\xeb\x4f\xc4\xb6\xc7\x54\xc1\x37\x5a\xf6\x89\xf0\xde\x2d\xd5\x00\x5c\x34\x69\x9c\xe5\x43\x6a\xad\xe2\x5f\x8f\xea\x39\xe7\x51\x75\x3f\x4d\x9c\xf1\x1e\x41\x65\x73\x56\x89\x5d\x9c\xd7\x22\x94\xda\xde\xac\xe8\xbb\xe1\x40\xd0\xb8\xc8\x65\xfe\x2f\xdc\x27\x7e\xd2\xa4\xf9\x91\xb8\xfa\xc0\x66\x85\x69\x5f\x40\x2a\xeb\xd6\xa7\x94\xb7\x49\xe1\x7a\x69\xfd\x09\xd3\x21\x67\xb8\x0e\xc5\x07\x5c\x85\x6d\x0c\x14\xe0\x67\xeb\x01\x55\x7e\x3d\x88\x9e\xc3\x6f\x9a\xd7\x82\x57\x62\x0c\x93\x91\x63\x13\xfc\xa7\xbd\x7b\xdb\x4b\xae\xe8\xdb\x7c\x20\xac\x72\xb6\x4a\x88\x02\x4d\xe7\xec\x68\x8b\x91\xff\x73\xed\xf9\xf9\x99\x20\x99\x09\xd8\xa0\xe4\x61\x5a\x13\x4c\x69\x64\x9f\xe1\x32\x55\xf8\xaa\x01\x63\xbf\x68\x7b\x26\x65\x8c\x25\x32\x61\xf4\xd9\xd0\xe0\x78\x40\x55\x81\x97\x68\x0d\x47\xd9\x25\xcd\xef\xb9\x84\x84\x1f\xeb\x6c\xa6\x13\x68\x45\x77\x68\xc1\x00\x3c\x73\x7f\xa4\x66\xed\x17\xa3\x50\x7d\xe7\x59\x61\xd3\x25\x9b\xc0\x28\x4c\xa9\x3e\x08\xad\x39\xc4\xa5\xd5\x2c\x5f\xa6\x12\x21\xf8\x9d\x80\xd9\x85\xef\xc1\x88\x4f\x9c\x16\x20\xc5\xfb\x64\xdd\x63\xc6\xa6\xd6\x9f\x51\x85\xbf\x29\x20\xbc\x8a\x14\x55\x78\x72\x70\x13\x15\xea\xcd\x58\x17\x2e\xac\x9a\x34\x0b\x08\x39\xcf\x77\x7b\x57\xc7\xc9\x77\x9b\x54\x10\x06\x26\x29\xc5\x31\xd6\xdb\x68\x86\xd7\x9c\x56\xe4\x83\xff\xe4\xef\xff\x7d\xfa\x33\xf1\x73\xac\x53\x74\x31\x7a\x7c\x5c\xb9\xe6\x2c\x2e\x12\x55\x35\x00\xbc\xae\x28\x9c\xee\x95\x89\x29\xdb\xbe\xf9\x76\x2f\xcb\x60\x16\x88\xdd\xff\x20\x10\xdb\xef\x3d\x41\xf8\x16\xa4\x68\xd3\x9d\xa7\x14\xb2\xaa\xeb\xea\x1f\x6b\x92\x5d\xa1\x40\xfd\x3a\xd2\x40\x0f\x86\xf4\xf6\xf9\x53\xe0\xfc\x7a\x89\xe6\xfd\xfb\x35\x8a\xf6\xcb\x22\xea\xaf\x7d\xf1\xce\x52\x08\x42\xe1\xf2\x16\x75\x42\x10\x75\xae\x6a\xdc\x7a\x36\x44\x7b\x58\x13\x05\x95\x21\x77\xe0\xbe\x85\xee\xc3\xb1\x71\x0f\xa5\x50\xbd\xbf\x3e\xb1\x1f\x5f\x9c\xad\x63\xae\x49\x7b\x1e\xe6\x89\xe5\x7a\x33\x00\xc2\x7e\xf5\xa6\x8a\x66\xd9\x92\x51\x1c\x99\x73\x91\xae\xa1\xf4\x7c\xa4\xe8\x93\x38\xde\x16\x07\x4b\x96\xc7\x57\x79\xd5\x1b\x91\x1a\xc8\x46\x21\xc7\x1a\xb8\x22\xb6\x49\x62\xe0\x2a\xa6\x94\x2d\x36\x94\x77\xe2\x46\xf4\x74\x40\x0e\x84\x7a\xfa\x21\xec\x6d\xdc\xd0\x7b\x2a\x58\x5c\x46\xcd\xee\x99\x02\xf5\x16\x46\xf3\x11\x7c\x11\x31\xe4\xac\xaf\x1e\xff\xff\x91\x12\xd8\xfa\x4e\xa4\x18\x41\x17\x15\x21\x62\xd1\x25\x49\xf1\x50\x60\xe8\x5e\x8f\x82\x8d\xc6\x71\x84\x0d\xb4\x65\x8f\x2b\xae\xda\xd4\xba\x5a\x2f\xac\x56\x83\x53\x61\xba\xa3\xf4\x3b\x2f\xe3\x6b\xf2\x1b\x4f\xa8\x0e\xcc\x1d\x6a\x2f\x39\xd6\xd9\x10\x13\xbc\x00\xdf\xbb\x18\x05\xd0\xb2\x71\x79\xe2\x52\xbb\xab\x5e\x66\xc2\x90\xae\xaf\x3d\x82\xca\x27\x91\xc2\x4e\x5f\x54\xb5\xe7\x15\x04\x03\xa4\x8b\x77\x91\x9c\x8a\x0b\x66\x98\x1e\x1f\x8b\x82\xe9\xce\x9f\x8d\xb4\x97\x98\x4a\x4b\x17\xfb\xa6\x67\x4a\x75\x56\x9c\x1b\x13\x57\xd8\xa3\x1c\x28\xab\x64\x6d\x2a\xc4\x81\x3b\x23\xa2\x25\x8a\x2c\xab\xc2\x41\x8e\xe5\xc7\x55\x6e\x9f\xae\xbf\x86\x8c\xfa\x15\xd8\xff\x6f\xc6\xfa\x3b\xa3\xba\xf2\xc0\x85\xff\xb9\x1e\x4e\x6c\xe2\x00\xf4\xda\xfb\xfe\x9a\x7e\x8f\xd2\x22\x5c\x90\x7b\xe8\xdf\xf3\xfb\x62\x6f\x63\x77\x4d\x75\xc2\x6d\x3f\xcd\xc7\x0f\x72\x61\x96\x74\xe4\x15\x41\x8b\x00\x1f\x7f\x79\xa4\x0c\x71\x61\x4d\xc3\x78\x84\x75\xe5\x50\x37\xdd\xa1\x35\x20\x26\x5a\xad\x97\x24\xe9\x07\xb2\x0b\x3d\x95\x1b\x2a\xf5\x8c\x93\x6a\x50\xb0\xc9\x8e\xa0\x47\xb5\xa9\xbc\xc2\xe4\x17\xd6\x2e\xef\xa4\x8b\x83\x0d\x79\x97\x7e\x2a\x7e\xf6\x75\xba\xd4\x7c\x7e\x29\x23\xee\xc7\x3a\x81\x5b\xfc\x73\x55\xf4\xf0\x6e\x91\xdc\xe6\x29\x2d\x7d\xb6\xe2\xd2\x58\x86\x51\x98\x9f\xfd\x6e\x14\x00\xbe\xbf\x1b\xc6\x94\x03\x52\xb4\xf2\xc8\xfa\x7f\x84\x78\x8b\xe3\x0e\x07\x35\xa6\x0f\xa7\x55\xaf\xb2\x57\x99\xdc\xa4\xa5\xb5\xdd\x87\xea\x57\xca\x7c\xbb\xfe\x63\xac\x20\x06\x9e\x89\xd6\x8a\x12\x3e\xdd\x18\x29\x4e\xc5\x19\xba\x9e\xaa\xe9\x7d\x70\x5c\xab\x85\xdf\x4c\x0b\xaf\x98\x15\x97\xf6\x0a\x52\x8e\x45\xc7\xef\x9c\xc2\xde\x9f\x1b\x37\xdc\x6b\x29\x6d\x2f\x35\xa3\x3d\xdf\xd0\x39\x69\xbb\xa2\xa8\xc6\xd4\x62\x54\x57\x4a\x33\x1f\x56\x4d\x9e\xdb\x14\x9d\x5e\xd9\x20\xda\xb1\xfa\x4a\x34\x26\x1b\xa9\xce\xdd\x2b\xbe\xa6\xc9\xaa\x32\xb1\x02\xe5\xf1\xcd\x51\xdf\x49\x98\x54\x57\x9d\x9f\x3f\x58\x3f\xc8\xe1\xda\x83\x9b\xcf\xbe\x50\xfc\x44\x6d\xfb\xc2\xba\x57\x2d\xa6\xa2\xc8\x97\xae\x20\xd8\x21\xf1\xb8\xa1\x80\x83\x6f\x28\xf5\xbb\xbe\x35\xdd\x1d\x01\x70\xf1\x71\xa4\x0a\xf8\xeb\x63\x1e\x96\x6a\xa0\xf3\x1a\x05\x5e\x59\xf1\xb8\x0c\xc2\xd7\x9a\xd4\xd7\x31\x49\x62\x7b\x1e\x5d\x28\x3e\x2e\x41\xb7\xe6\x6d\x15\x92\x96\x4c\x6e\x99\x98\xe9\x4d\x5a\xbd\xda\xc3\x19\x6d\x09\x92\x96\xfd\x2c\xc9\x7a\x6b\xad\x00\xa0\xc5\x8e\x17\x1b\x10\x59\xe9\xa5\x1b\xb8\xae\x52\xd8\x7b\x80\xc5\xa2\xdb\x46\x58\x2b\x97\x55\x4b\x6e\xc9\xc4\x2e\x71\xe5\x1a\xb5\x12\x00\x27\xbb\x4f\x61\x43\x7a\xee\x2d\xcf\xbe\xbf\xa5\xc1\x1e\x53\x13\x8a\x5c\x07\x5e\x20\x40\xeb\xc0\xd9\x1c\x14\x31\xa0\x3a\x61\x58\xc7\x8f\xd7\x9f\x54\xe3\x80\xb2\x2e\xce\xea\xd4\x6f\xee\x10\xf7\xef\x90\xfe\xf0\x63\x5f\x6c\x0d\xf3\xac\xb4\x85\x2c\x27\xb1\x4e\xa3\xdf\x26\xe0\x19\xe1\x5c\x64\x2b\x36\x4f\x0c\xa6\xd4\xe3\x46\xfa\xf3\xf3\xf2\x58\x5d\xdb\x61\x56\x94\x55\x2e\xba\x84\xc0\x99\x5d\x51\x0b\xf5\x82\x12\xf4\x7b\x7d\xf4\x77\x1b\x26\x30\xe9\x8a\xcb\xb3\x14\xcd\x3d\x11\x23\x65\x9d\x18\xe5\x3d\x77\x54\x23\x5e\x86\xc3\xac\x10\x53\x6a\x84\xa4\x5b\x0a\xe2\x7d\x4b\x49\x9f\x9b\x7c\xd1\x95\xb9\xe9\x59\x5a\xb7\x22\xe6\xd9\xf2\x6e\xc4\xcc\x50\x06\x12\xe4\xae\x76\x4e\x63\x9b\x6b\x7e\x89\x12\xdb\x38\x11\x3d\xad\x83\x28\x99\xbe\x90\xa6\x5c\x90\xd7\xd7\x4a\x3c\x17\x1a\x0c\x0e\x17\xea\x82\xc7\xa5\x41\x45\x00\xe9\xea\x09\xd5\x2c\x3e\x31\x36\xd0\xcc\x45\xea\x5c\x68\x02\xb4\x8c\xf8\xc9\xd8\x81\x3b\x30\xe0\x40\xe9\x2e\x96\x34\xae\x54\x66\x56\x0e\xb2\x62\xd8\xb7\xb9\x8b\x5b\x8a\x4f\x15\x85\x5e\xf7\x24\x13\x77\xee\x10\x54\x60\xdd\x40\xe9\x29\xdd\x52\x16\x0a\xba\x63\xd2\x75\xdd\x87\x82\x28\xc3\x59\x5c\x65\x74\x23\x4e\xea\xaa\xea\xa8\xaa\xbc\xef\x8c\x94\xef\xfb\x6e\x4c\x95\x01\x0c\xfa\xaa\xd6\x19\xbb\x4f\x1f\x89\x43\xbc\xd5\xd9\xad\x9a\x0f\x3b\xe9\xf6\x49\x99\x4b\x9f\x82\x9a\xe0\xed\x28\xf4\xc4\x2f\x51\xa6\xe1\x93\xfd\xbd\x7b\xb9\xe5\x71\x3b\x9a\x70\x03\x47\x34\xfc\xb1\xd7\xb6\xeb\x9b\xe1\xd0\xa6\x33\x41\x02\x92\x25\x18\x44\x94\x60\xdc\x5e\xdb\xaf\x4d\x08\x4f\xc8\x76\x68\x42\x08\x2f\xe5\x96\x88\xbe\xcc\x31\x6b\x72\x05\x7e\xcc\x37\xc5\x0a\x9b\xaf\xd8\xee\x8c\xba\x56\xdf\xd1\xaa\x49\x1b\xba\x18\x62\x48\x17\x40\x03\x08\xeb\xe2\x52\xaf\x32\x93\xbc\x72\x85\xe5\xa6\xb5\x38\x29\x87\x9c\xe0\x93\x28\xb8\xf3\x7d\xa2\x4b\xfb\x2b\xa3\x90\xb2\xbc\x52\x15\xe5\xe3\xa1\x13\x7d\x29\x52\x8a\x9b\x77\x46\xc1\xd8\x89\x07\x5c\x38\xfa\xae\x6a\x74\xe0\xb6\x8e\x9a\x8c\x32\x5c\x1d\xc3\xe9\x8f\xb4\xfb\x2e\xbe\x00\xd2\x75\x58\xe3\xa1\x93\x72\x79\x5c\x69\xf7\xc0\xdc\x21\xbe\x7d\x4c\xa1\x40\x73\xf1\xa4\xe2\xd7\x7c\x9f\x12\x0b\x94\x39\x97\x22\xb5\x74\x2e\x2a\x92\x5b\x1d\x0d\xeb\x63\x0f\xb4\x78\xc1\x16\xd2\xd7\x46\x4a\xfb\x6d\x25\xe7\xc8\x1d\x6d\xfe\x87\x48\x6f\xe0\x57\x0d\x05\x2b\xa4\xb1\x0f\x22\x85\x5c\x78\xa0\xee\xc4\xc0\x1e\x76\x71\xd6\xd2\xda\xdb\xf4\x97\x8a\xa6\xc6\xfb\xeb\x4b\xf3\x7b\x5b\xa1\xb3\xc0\x64\x1f\x71\xe0\x0c\x95\x6a\x5c\x0d\xa7\x42\x4b\x0d\x24\xbb\x31\x28\xbe\x80\x84\xb7\xae\x4a\x01\x26\xf7\x6d\x5c\x32\x3e\x15\x9b\x94\x35\xc3\xf9\x49\x93\xfa\xc1\x92\xcb\x8b\x72\xa7\xdf\x3f\xff\xac\x4d\xa7\x17\x75\x6f\xfe\xf1\x53\xeb\x34\xae\xc5\x79\x7a\x07\x37\xd9\xd7\x37\x0b\xb3\x1e\xd8\x4e\x77\x03\x7d\xbb\x1b\xda\xd5\xe2\xba\x0a\xed\xa4\xdd\x9b\xa7\xb6\x3b\xdd\xd2\x6a\xb0\xde\x15\xfb\x98\x62\x18\x3d\x4a\xbd\x73\x6c\x90\xed\xeb\x7a\x16\x9d\x75\xed\x43\xa1\x77\xc3\x00\x3e\xbc\xc1\xa9\xf1\x56\x13\xf6\x87\x9a\x5d\x88\x61\xc6\x09\xe5\xc7\xfc\xa3\x48\x29\x2f\xbf\x87\xda\x05\xbb\x6f\x5b\x67\x6b\x40\x3d\x30\x77\xa8\x5d\x94\x36\xb7\x19\x45\x6c\xed\x0d\xcd\x8f\x27\x65\x01\x5e\x38\xd8\x2e\x86\x36\x76\x26\x29\x91\xe8\xa1\x73\x0d\xc4\x2f\x3f\x9e\x98\x62\x2d\xcc\x8a\xd3\x1d\xf7\x13\x30\x21\xe7\x69\x1b\x3f\xf1\x06\x47\x45\x15\xc7\xd6\x76\xfd\xd9\xc4\x22\x1d\xca\xee\x64\x43\x9d\xc5\x2b\xb6\xef\xe2\xc4\x16\x64\x2d\xc2\x01\x3e\x52\xca\x32\xff\x1b\xf0\x57\xfc\x84\x6e\x0f\x32\xce\x3f\x8e\x5a\x5f\xf8\x6d\xef\xdf\xd9\x08\x7b\xeb\x5b\x97\xb7\xd4\x52\x00\xb0\x45\xbe\x8f\xf2\x90\x1a\x98\x94\x18\x0a\xc2\x13\xf5\xce\x88\x01\x81\x70\x54\x59\xdd\xda\xb4\x9b\xe5\x85\xdd\xd2\xcc\x3d\xaa\x64\x80\x8e\x8e\xe1\x15\x06\xe6\x70\x4b\x91\xb2\x2e\xa9\x66\xdf\xa5\x89\xea\x7f\xef\x5c\xbb\x97\x25\x80\x45\x22\x7e\x5d\xa3\xbf\xe7\xc7\x8d\x24\xa6\x15\x57\x38\x7f\x73\x3c\xae\x2f\xe8\x94\xbc\xaf\x1a\x95\x71\x3f\x77\x45\x49\x58\x0b\xcf\x88\xe5\x23\x95\x9f\x28\x13\x8d\x62\x98\x91\x9b\x47\xfd\xcb\x44\x8d\x53\x29\x73\x4e\xcc\xb0\x17\x66\xdb\xfd\x2c\xb5\x05\xac\x32\x24\x13\xa0\x3d\xeb\x85\x08\x3c\xf8\xfa\x46\x83\x30\x61\x3b\x5b\x5a\xb2\xb9\xed\xce\xd4\x21\xdf\x2b\xb4\x07\xd5\xdf\xab\x4a\x70\x9d\x79\x62\xd8\xd9\x97\xf5\x62\xfc\xd3\x26\x25\x47\x93\x24\x58\xf2\xdc\xb3\x57\x5d\xaa\xb3\x8a\x08\x9e\x2d\x16\x71\x95\xdb\x99\xfa\x94\xc7\x31\x83\xea\x8f\x4d\x85\x71\x59\x45\x6d\x84\x7e\x99\x10\x3b\x43\x8e\xb0\xe1\x21\x3b\xe9\x92\x5b\x6c\x4d\xe0\x78\x05\xe0\x2b\xc5\x9a\x35\xf5\x3e\x4e\x1f\x1a\x6f\x6f\xb7\xbc\x7d\xc4\x26\xe5\x19\xde\xc9\x7d\xef\xdc\xe6\xa5\x51\x90\xa3\x78\x18\x30\xdf\x31\x54\x1b\x8a\xfd\x1d\xd4\xbd\x10\xea\x75\xc3\xd5\xfe\xdc\xdc\xbe\xe7\xf7\x1d\x3a\x48\x57\x5b\xec\x33\xe9\xcd\xb4\x5c\x94\x0f\xb0\xbe\x1e\xfe\x17\xf8\x10\x60\x63\x2e\x7b\xe7\x4a\x97\xe7\x86\x14\xfe\xd9\xa0\xc4\x5b\xd5\x06\xad\xc4\xaf\x29\x0e\xe2\xe9\x26\xb4\xee\xaa\x4d\xe2\x6c\x80\x6e\x81\x77\xa2\xdb\x3a\x36\x16\x5c\x5e\x58\xd5\xa6\x2a\xca\xdc\x24\xce\x4c\x85\x6f\xfc\x40\x43\x5b\xef\x20\x71\x90\x8e\xed\x44\x2c\xad\xe3\x05\x51\xbf\x5a\x4a\x4e\xf0\x75\xe5\x50\xf9\xba\x62\x84\xe4\x26\xa8\x17\xe2\xee\x6f\x72\x78\x47\x95\x79\x44\x01\x04\x76\x77\x60\x6c\xd7\xb0\x22\x73\x6b\xb0\xcf\xd5\x0f\xf5\x4f\xa2\xdd\xa1\x1f\x60\xf7\x04\x00\xf1\xbf\x19\xf9\xd4\xea\xf4\x13\xeb\x2a\xac\xdc\x53\xe2\x30\x1f\x8d\xc2\xfc\x7b\x3b\x08\xd0\xa8\xd3\xee\x52\x04\xc5\x0a\x3b\xa1\xe8\xe5\x1b\x4f\x90\x83\xb8\x08\xb0\xb5\x7e\x6b\xce\x4b\xcb\x2a\x8d\xfd\x19\xf6\x2c\x44\x56\x7d\x07\x94\x42\xf9\x5a\x4a\x03\x7c\x7a\xc2\x44\xab\x8e\x52\xa9\x3d\x8c\xb9\x3c\x9c\x40\xff\x4e\x67\x5c\x3c\x49\x26\xb8\x1f\xfd\xc2\x7a\x18\x4f\x90\x05\xd6\x30\x77\xac\xa8\xee\x71\xc0\xde\x55\xea\xe7\xb8\xc9\x28\x58\x3f\x50\x39\xd3\xc0\x0d\x59\xbd\xd6\x33\x31\x7d\x53\xeb\x62\xd3\x0c\xcb\xa6\x71\x56\xd5\xa5\x5e\x6b\x6c\x96\xfe\xe2\xac\x3c\x8e\xc2\xd7\x4a\xdc\x57\x2a\xd7\x35\x94\xda\xf8\x8b\xfe\x53\x25\xfa\xff\xd3\xa0\x3f\xd6\xcf\x86\x43\x2f\xc2\xc9\x32\x63\xb8\x58\xa2\x39\xb6\xf5\x94\x5e\x98\x5d\x68\xf7\xb3\xaa\xb0\xab\x59\xbe\xdc\x52\x6e\x39\xc7\x94\x23\xd2\xb1\xa8\x01\xdd\x35\x3f\x7f\xe0\x6f\x29\xb5\xe4\x52\x01\xbd\xaf\x6a\x6f\xa8\x4d\xba\x18\x78\x3c\x03\x68\x8b\x00\x49\xe8\x76\xe3\x20\xbe\x33\x6a\x3d\xfb\xec\xe6\x11\x74\xab\x05\x7d\xd5\xfa\xd2\x17\xf9\xf1\x59\x5e\xf3\xac\x0f\x4e\xd8\x0f\xe4\x83\xec\x19\x8a\x0e\xfd\x6b\xb4\x9a\x40\x79\xde\xc0\x92\x41\x02\xbd\x1d\x84\x56\xc4\xad\x2b\x14\x8e\x91\x16\x5e\xa2\x70\x27\x96\x6e\x75\x6c\xc2\x86\xbe\x3c\x52\x9c\xd1\x37\x91\x97\x8b\x3e\x64\xbd\x7a\xb1\x2c\x6f\xa9\x70\x7d\x23\x52\x60\xf0\xcb\x51\x68\xb0\x30\x5f\x0f\x01\xf4\x1b\x1e\xc9\x50\x9a\xc3\x33\x98\x91\x8a\x69\xbe\x6e\x38\xe1\x20\x40\x63\xf7\x84\xda\xe2\xbb\x3a\x4a\xf5\x99\x38\x25\x22\x3d\x4c\xb8\x46\x2c\x5d\xae\x3f\x68\x8d\xa0\x11\xf0\x2d\xfa\x69\xd8\x97\x3f\x19\x4b\x18\xe2\xbe\x9d\x0a\x16\xa2\xc7\x70\x03\x04\xab\x5e\xdf\xb9\x4f\x0b\x63\x24\x84\x69\x52\xef\x75\xc3\x81\x16\x7b\x58\xa2\xee\xd6\x5c\xfd\xf3\xed\xb2\x6f\xd2\xe5\xa2\xe7\x56\x7c\xd2\x26\x95\x8c\x1a\xfc\x5e\x9c\x10\x06\xdf\xbb\xb7\xdd\x75\x75\xee\xb1\x62\x53\x5b\x14\x63\x9d\xcd\x31\x33\x78\xfd\xdb\xcc\xc0\x3e\x49\xbf\x07\x19\xf7\x2e\x0e\x29\x68\xc3\x6e\x87\x33\x35\xf6\x10\xea\x5e\x56\xe2\x05\x4e\xd3\x2b\xc7\xef\x9d\x0b\x98\x8b\x7a\xa9\x01\xf1\x78\x05\xcb\x4b\x6c\x9e\xe8\x12\xb0\xdc\x54\x14\xc4\xd9\x5e\xa7\xc2\x4d\x32\xc7\x30\x11\xe0\x35\x81\x57\xdf\xc7\xf2\xf2\xc2\x03\xfb\xa4\xb9\x39\x85\x70\x2a\x63\x07\xda\x3b\x48\x11\xb7\xad\x2b\xec\xce\x6d\x8f\x92\xca\xed\xd0\xb8\xee\x43\xaa\x59\xc6\x65\x3f\x2e\xc0\x71\x45\xd2\x7e\x63\xbc\x3f\x5d\xaf\x36\x0d\x70\x41\x74\x3e\xa3\xc4\x71\x6f\x8c\x14\xf3\xe1\xf6\x44\x35\xf5\xf9\xf6\x8a\xeb\xda\x8c\xdb\x76\x62\x16\xdf\xf2\x4a\x29\xe7\xb4\x72\x59\xdf\x0e\x6c\x4b\x39\x7b\x41\x3f\x97\x1f\x8f\xf5\x88\x32\x9b\xb6\xb4\xa1\xca\x39\x2d\x86\x72\x6e\x02\xc6\xb0\x77\xae\x9d\xe5\xae\xe7\x52\x36\x4e\x10\x15\x96\x90\x7f\x6e\x34\xb9\xf5\xc4\x36\x37\x03\x2f\xf1\x28\xfa\xa1\x21\xf2\x9f\x19\xb3\x17\xea\xda\x25\x97\xba\x92\xf1\xdb\xcf\x8b\x0c\x7c\x14\x48\x6d\x7f\x3d\x86\x82\x34\x83\xa5\x2c\xc7\xb0\x5e\xdc\x80\x55\x4e\x13\x14\x5d\xb2\x38\xae\x72\x92\x3a\x14\x1e\x9f\x6a\x8f\xdc\x19\x13\x02\xf3\x0e\x7b\x3b\xc2\xcd\x2f\x48\x8b\x9d\x02\x00\x1b\x0c\xd0\x4b\x30\xb0\xbe\x1a\x29\x71\xe7\x4d\x6f\x1e\x91\x53\xfe\xec\x5b\x64\x7b\x3a\x1a\xef\x41\xdb\x00\xed\x82\x1d\xeb\x7b\xb4\xff\x72\x96\xee\x50\x74\x2f\x96\x2e\xc5\x1a\xdb\xde\x09\x25\x2e\xdb\x24\x21\x05\x00\xee\x80\x1f\xa3\xc9\xc6\x2f\x6f\x72\xd1\x5a\x71\x45\xc5\xf7\x50\x5b\x7b\x35\xf9\xef\xbc\x62\x57\x28\x1c\x88\x2e\x19\xfd\x50\x11\x2c\x9b\x8c\x5a\x07\x98\x65\xc4\xcb\x6a\xcc\x5e\x8c\x9f\x4c\xbc\x6a\xee\x50\xdb\x24\x75\xf9\xcb\xb1\x0e\xed\x90\xbf\x88\x42\x9f\xe4\x2f\x54\xc3\xe3\x37\x66\xf7\x31\x64\x07\x79\x2e\xe2\x37\x0a\x09\x76\x7e\x14\x87\x7f\x81\xc2\x2c\x55\xb9\xcb\xaa\x82\x9b\x6a\x82\x0e\x50\xfe\x67\xe7\xb5\x54\x72\x35\x18\xd8\x7c\xb7\x92\x3c\x98\x5a\xa7\x3f\xf5\x68\xf6\x20\x8a\x7a\x41\x1b\xe8\xe9\x0e\xe8\x11\x25\x03\xbb\xa7\xa3\x42\xcb\xd9\xd1\x04\xaa\x9a\x1f\x2b\x30\xd3\x06\x05\x0c\x1c\xdd\x1f\xa9\x51\x76\xfd\x9f\x62\x87\x32\x9f\x38\x83\x03\x45\x30\x71\x41\xb2\x01\x9c\x5c\x19\x80\x28\xc4\xc8\x8d\x91\x62\x74\x4d\xd6\x6d\x2f\xce\x3e\xdf\x5e\xb5\x66\x59\x38\xc1\xe8\x61\x62\xec\x20\x82\x98\x61\xf4\xab\xed\xa6\x4c\x32\xc8\x8a\x92\x9c\x09\x11\xdb\x79\x79\xe2\x1d\x78\xdc\x81\xeb\x09\x64\x85\xf4\x17\xe9\xcb\xf1\x5f\xe1\xe7\xe0\xd0\x00\x71\x1a\xd2\x29\xd2\x9e\x7a\x4f\x39\x2c\xcc\xac\x87\xb6\x32\xdb\xd0\x7a\x94\xd9\x82\x88\x47\x60\xbf\x20\xc4\x72\x75\x85\xdd\xff\xba\x66\x5f\x9b\xdc\xc0\xa6\x3f\xf4\xf6\xaf\xd2\xc5\xe4\xc7\x6a\xf2\xb5\x58\xad\x91\xc4\xb3\x1c\x67\x30\xd5\x44\x44\xb8\x16\xa9\xec\xe1\x67\xb8\xea\xa2\x7b\x80\x15\xcb\xff\x34\x91\xb4\x86\x26\x9b\x10\x3a\x44\xd3\x9e\xde\x91\x9f\x8c\x89\xb8\x64\xc3\x62\x67\x50\x3a\xb8\xce\x1f\x20\xe3\x9e\xfa\x57\x8b\x26\x89\x62\x39\xf2\x18\x50\x77\xa6\xb1\x95\x99\x13\x8a\x97\x1f\x6f\x40\xb4\x2f\xb4\x57\x4c\xe2\x10\x66\x99\x97\xab\xa4\x73\xdf\xf7\x51\x96\xbc\xcf\x5a\xa1\x74\xe3\xd6\x19\x3f\xf1\x72\x47\xc3\x3c\x3b\xbc\x36\x1d\x1a\xb5\xac\x7c\xc2\xa2\x3b\x23\xbe\xf3\x2d\xaf\xd2\xf9\x61\x13\xc8\xbe\x30\x89\xe1\x29\x27\x87\x02\x0a\x19\x12\x16\x1e\xd7\xa0\xb2\x9e\x61\x5f\x15\xcc\xa7\x6f\x60\xe3\xf2\x13\x25\x74\x53\x5a\x93\xf3\x2d\xf0\x2a\xb8\x41\xbf\x72\x8c\x5e\x68\xf3\xe2\xef\x04\xdb\xf8\xe9\x75\x5a\xbb\xb8\xb4\x9c\xad\xa2\xce\x7f\x80\xe6\x1f\x66\x2f\xc7\x28\x23\x16\x76\xbd\xd2\xb1\xfe\x1b\x84\x79\x50\x53\x6f\x29\x25\xf3\xbf\x8a\x14\xb3\x01\xba\x13\x88\x0c\x47\x09\x0c\xc0\xaa\x24\x9a\x11\xf6\xcf\x68\xed\x22\xf8\x7c\xc2\x0b\x43\x28\xf4\x74\xff\xd1\x1e\x7e\xbc\xd3\x7a\x49\x36\x16\xf7\x56\x99\x87\x42\x59\x19\xd3\x08\x23\x85\x81\x78\x40\xb7\x1c\xe9\xeb\x9b\x80\x7d\xa0\x62\xbd\xa1\x50\x13\x8f\xad\xd7\xa9\xdb\xe6\x23\xd4\xb1\xe0\x06\xfb\x88\x68\x91\xa2\xab\x45\x79\x1e\x22\xdd\xb6\x4e\x5d\x52\xa0\xc6\x39\xa2\xc6\x0b\xbf\x1b\x6d\xa5\xef\xfe\x7a\x7b\x2d\xab\xf2\x16\x72\x7a\x4f\x42\xd8\x3b\xe7\x49\x08\x5b\x5f\x70\x60\xe1\x40\x3b\xcd\x80\xf0\x95\x4b\xdc\xf2\x60\x1d\x20\xf7\x05\xb6\xf5\x69\xfb\x71\x40\x00\xf4\xb9\x43\xfe\xf2\x85\xb1\x32\xb7\xee\x71\x95\x6e\x05\x51\x9c\x3a\x69\xf7\xc9\x37\x9a\x2f\x40\x39\xf1\x63\xa5\x52\x57\x94\x55\xd7\xd9\x82\xc6\x48\xc8\x84\x58\x97\x0f\x3b\xb7\xd5\x51\xee\x01\x27\x23\x85\xff\xc2\xf7\xc0\xf2\xb8\xa3\xe0\x68\x4b\x26\x7f\xb2\x7e\x33\xc4\xbe\x6d\xe0\xe7\x23\x40\x7c\x82\xb5\xe6\xf1\x5e\x9e\x68\x75\x57\xeb\x7a\xff\x88\xde\x98\x6d\x5b\x91\xa8\xf3\xcb\x11\x99\xf9\x25\xe8\xe4\x2a\x3f\xdf\x2f\xfb\x4c\x2e\x64\xb7\x3c\xfb\x14\x59\x41\x8d\x45\xc3\x92\x44\x86\x75\x93\x56\x31\x7e\xcb\x4f\x95\xf0\xf2\x35\xba\x59\x02\x01\x55\x3a\x26\xdb\x3b\x61\x4c\x62\x96\x96\x6c\x5c\x52\x1c\x1c\xb3\x67\x65\xff\x33\x95\xd4\x5c\xc6\xf5\x93\xb1\x50\x80\x76\x02\x58\x2f\xba\x07\xf5\x67\xf2\x63\xd5\x25\x1a\xac\x15\x36\x59\x9a\x51\x7d\x49\xa4\xf4\xc2\x41\x57\xe2\x02\x00\x40\x21\x21\xb8\x16\x29\xee\xc2\xe8\x69\x35\xad\x5f\xb1\x69\x99\xe5\x0e\xa0\x85\x39\x3f\xbe\x9d\x0a\xb6\x97\x17\x3c\xfe\x63\xe8\x62\x53\x14\x90\xd1\xc5\x5a\x60\xd5\x65\x7e\x32\xa9\x2c\x7e\x80\xf4\xea\xaa\x54\xac\x64\x3c\x41\x2e\xf0\x0a\xcf\x69\x71\x48\x9b\x16\xb6\xa5\xac\xf7\x00\x5c\x12\x9d\xaf\x67\x74\xfa\xb1\x5c\x80\x40\x05\x41\x51\x36\xa6\xa3\xa8\x2b\x26\x75\x92\xfb\xca\x41\x79\x20\x88\xf6\x07\xf2\xcf\x45\xd5\x60\xd9\xc4\xd9\x8d\x83\xf2\xe1\x4e\x20\x89\xdf\x6c\x50\xdd\x27\xff\xe6\xbc\x3e\x64\xf8\xb7\x89\x94\x9d\x0a\x7f\x97\x27\x28\x11\xf3\xf3\xc1\x97\xbb\x35\x76\x15\xea\x5f\x21\x97\x27\x20\x96\x12\x93\x76\x8b\xc4\x75\x2d\x8e\x0c\xaf\x10\xe0\xf1\x56\xc7\x46\x0a\x41\x53\x95\x25\x63\x6e\x71\xeb\xee\x2a\x13\x91\xbb\x0d\xe0\xff\x2f\xb7\x07\xa6\x6b\xb5\x8a\x3d\xe4\x12\xb0\x05\x6f\x8e\x94\xe1\xf6\xef\x35\x0e\x09\xe2\xdc\x85\xc6\x80\x8c\x33\xe9\x55\xfc\x44\xcd\xfd\x16\x5d\xef\x09\xfa\x27\x2e\x54\x10\x89\x11\x8b\x3e\x40\x05\x84\xa0\x7f\x49\x6f\xea\x3f\x18\x05\xbc\xe4\x05\xa5\xb9\x07\xbe\x83\x67\x90\x06\xe2\xfb\x2d\x9c\xa7\x1e\x99\x1d\xee\x28\xd4\x10\x70\xac\xdd\x41\xd1\xc3\x9f\x8e\xc0\x83\x7f\xf9\xa1\x06\x52\x5e\xa0\x2b\x2d\x1c\x64\xd5\x60\x63\x64\x32\xba\x78\x9f\x44\x4f\x4d\xb6\xcd\x3e\xff\x64\xc8\x06\x6e\x13\x1b\x7e\xcc\x97\xca\xcb\xa6\xef\x53\x02\x44\xf5\x77\x45\x2c\x92\xae\x28\xe2\x27\x3c\x12\x70\xa0\x7f\x0d\x7d\x30\x76\x03\xc2\x46\x05\xb7\xfd\x6b\x74\x08\x61\xb2\xb7\xce\x5c\x7a\xa6\xec\x44\x5a\x17\x47\x0f\x84\xc1\xb6\x44\x31\x0b\xdf\x6b\x54\x9e\x8f\xaf\xd7\x1b\xcf\xab\x16\x07\xcb\xa9\x47\xd7\x15\x34\x6c\x67\x43\x4f\xf6\x40\x7b\x60\xf2\x65\xd5\xef\xfc\xba\xbe\x54\x5f\x57\x8a\xc0\x03\x5b\x14\xce\xd8\xb4\x35\xe6\xf5\xa4\xf4\xfb\x26\x0e\xd2\xfd\xfb\xdb\xd5\xca\xa2\xe2\x05\x11\x6c\x66\x93\x8b\x3a\xfc\xa4\x0f\x26\x66\x12\x2f\xbf\xdc\x1e\x16\x6b\xb1\xd7\x56\x16\x4c\x42\x4b\x59\x60\x7d\xda\xb1\xbb\xfa\xdc\x2b\xcf\x4d\xb5\x3e\xc5\xda\x4b\xeb\xa7\xf8\x0a\x8f\xf8\xa3\x85\xeb\xda\x69\x4d\x40\x57\x9c\xa9\xd7\xb0\x00\x24\x29\x0a\x9d\x9a\xbb\x1e\xd4\x61\x8b\xd8\x0c\xd1\x33\x16\x3f\xc1\xe0\x34\x7a\xd6\x8f\x78\x8a\xaa\xd7\xb3\x45\xb9\x43\xc1\x2e\x6e\x63\x5d\x23\x20\xef\x82\xd4\x1f\x6a\xd0\x5f\x00\x96\x01\xfb\xe2\x1e\xbd\x9f\xe8\x4a\x87\x09\xe6\x7b\xaa\x79\x43\x5a\x38\x34\x33\x91\x86\x0a\x6d\x4b\x2f\x90\xe5\x25\xb6\x6f\x6b\xc8\xbd\x1d\x66\x79\x59\x3c\x1a\x30\xfc\xeb\x91\x82\x44\x5e\x52\x36\x95\xf7\x95\x2b\xfe\x19\xcd\x85\xbe\x89\x15\x8e\xfd\xbf\x9d\x24\x2a\x05\x26\xd9\xf2\x9a\xb6\x67\x70\xd8\x8b\x88\x18\xed\x79\x91\xc4\xad\x03\xcb\x26\xab\x26\x01\x38\xb5\xa3\xa3\xf7\x59\x33\xc5\xdc\x0c\xbd\x0f\x2e\x6e\xf6\x7d\x25\xd4\x7b\x57\x41\x2a\x46\x4d\x04\xb2\xc2\x26\x36\x2e\x5b\x3a\x9f\x78\x43\x1b\x28\xbd\xd1\xe0\xcc\x7a\xa0\x6d\xd2\xc3\x8e\x81\xeb\x07\x3c\xf6\xb2\xe5\x75\xbd\x2e\x2a\x62\xe5\xaa\x2b\x4b\x86\xea\x7a\xf1\x8b\xfa\x9a\x09\x33\x4c\xd9\xd9\x96\x59\x62\x53\x9a\xdf\xe3\x6d\x6e\x46\xea\xfd\x6f\x2a\xfc\xbd\x3d\x3c\xb4\x79\x59\x80\x35\x02\x2c\xdf\x3a\xa7\x44\xa8\x4d\xef\x61\xeb\x63\xe1\xdd\x41\x98\xc4\x62\xfd\x44\x29\x09\x35\x93\x88\xe3\x6c\x30\x70\x25\x06\xda\x7e\xc2\xf0\x96\x1e\xa9\xbe\xa5\x7a\x29\xa9\xb3\x3b\xf4\xc5\xbb\xa0\x50\xb0\xff\x3b\x05\x36\x8f\x1e\xf3\x28\x28\xd6\x27\x90\xc2\x96\x7e\x05\xba\xd8\x7b\x3a\xe1\x54\xcc\xb3\xee\xc0\xa4\x53\xaa\xcd\x7f\x43\xe1\x19\xb8\xdc\xc4\x1b\x1e\x9d\xb8\xb3\x0b\xb3\xed\xdc\xc6\x26\x49\xb4\xdf\xd9\x9f\x63\x07\x4b\x59\xf2\x98\xa7\xc9\xf6\x6c\xd9\xb7\xf9\x63\x08\xbd\x08\xa4\xc7\x28\xa9\xc4\x16\xdc\xd9\x19\xcb\x7c\xe9\x4d\xd0\x28\x38\x4b\xf1\x01\xe1\xf6\x92\xd6\x77\xb9\x38\x36\xb6\xd0\x62\x62\x23\x4f\xd9\xfb\x2f\xfe\x7d\xfc\x06\xf4\xe2\xef\x69\x80\xc7\x11\xa5\x76\xf7\xd8\x3a\x6d\x2b\x0c\x34\x4e\x93\x8a\x0a\x2e\xd6\x69\x32\xea\xc5\x17\xf9\x6f\xb4\x58\xba\x89\xab\x6a\x30\xad\x8c\x12\xce\x69\x48\x12\xeb\xae\x62\xcf\x22\xd3\xe0\xc7\x0a\x0f\x6b\x07\xc3\x72\x6d\x1a\x17\x44\x66\x9e\x2d\x2f\xfe\x07\xc2\xbb\x48\x3e\xd3\xf7\x96\x21\xe9\xe3\x61\xd4\x95\x97\x4b\x26\x49\xa6\x94\xec\xea\x25\x25\x76\x79\x4f\x21\x1f\x4e\x37\xcc\xa3\x0f\xb6\x17\x5d\x62\xd2\x57\xb1\xc7\xfc\xf0\x22\x5c\xb0\xd3\x0a\x22\xe8\xd2\xe5\x3d\x74\xf5\xd1\x12\x3a\x42\xb7\x45\xaa\x78\xe5\x7f\x08\x0d\x20\x0a\xfd\x57\x1e\x5f\xaf\x57\x27\x9a\xdf\xa7\x94\x33\xf0\x6d\x02\x93\x48\x37\x30\x20\x4e\x37\x75\x03\xea\xe8\xc8\x2b\x74\x3c\xfa\x4c\x87\x82\x8f\x37\x9e\x08\x55\x16\x8b\x3f\x8a\x6f\x40\x98\x71\x5e\xfb\xdb\x1d\xd5\xf7\x2a\x0a\x9b\x96\xd3\x2a\x44\x6c\xeb\xa8\x26\x3d\xab\x97\xf9\xf4\xc9\xbb\x2e\x9d\x6e\x98\x23\x1f\x6c\x0f\x6d\x4e\x68\x75\x19\x5a\xa9\x5c\x70\x43\xb9\xa3\xec\xe9\x28\x76\xd8\xc6\xb8\x4c\xed\xd6\xa4\x79\xee\x50\xbb\xeb\x8a\x32\xb7\x05\x09\x51\x7b\xc4\xe4\x95\x48\xe9\xfe\x5e\x69\xcc\x99\xab\xc5\x81\x2b\x3d\x1c\x05\x87\x15\x6b\xe8\xf0\x93\x89\xad\x4b\xca\xee\xa5\x71\x68\x2e\x33\x95\x25\x0a\x13\xb6\xf3\x0a\x31\x4c\xf6\xb2\x26\x8d\x2d\x57\xf5\x62\x50\x41\x97\x5d\x1c\x2a\x02\x9e\x63\x35\xcb\xa9\x64\xfa\xd4\x10\xdb\x70\xc2\x98\x81\x25\x53\xb2\xe9\x30\x1c\xda\x41\x2d\x41\x16\x5c\xd2\x28\x8e\x6f\xd1\x3e\xdb\xbc\xd4\x70\x29\x0e\xb4\x4d\x5e\x12\xba\x09\x11\x09\x65\xe9\xb7\xb1\x38\xf9\x49\xd3\x08\xaf\xa8\xf2\x61\x52\xb1\x70\x91\x77\xe1\xf2\x72\x39\x9b\x4a\xe2\xf1\xa2\x87\x5d\xd5\xc5\xa1\x4b\x8c\xbf\xee\x68\x52\x00\xab\xcc\x8f\x27\xd6\xce\xaf\xd7\xe7\x4f\xbc\xac\x7a\x61\x3c\x92\x10\x61\xa8\x70\x19\x59\xa2\xb2\xa5\x4c\xea\x59\x17\x84\x9f\xf8\x91\x47\xea\xe2\xbe\xfc\x62\x05\x2f\x3c\xe8\xe1\x85\x3e\x25\x2a\x4d\xd1\xe7\xc5\xe5\xdb\x7e\x41\xc7\xf6\x94\xda\xeb\xcb\x36\x7d\x44\xd9\xf2\xf0\xfe\x46\xc7\xe0\xaa\x4a\x0e\x4f\xd2\xe9\xe3\xe9\x92\xbf\x29\x78\xd4\xe3\x5a\xe1\xe2\x5b\xb4\x9f\x3c\x39\xda\x37\x6c\x19\x9c\x8a\x1e\x3d\xb0\xa1\x4c\xf5\x51\x72\x88\x4f\xa8\xf1\xc9\x7f\xfa\xb9\xce\x23\xbe\x6e\x7d\xf5\x55\xf4\x14\xe5\x28\x51\xb2\xbe\xc7\x9a\xe1\x26\x24\x9f\x40\xeb\x52\x4b\x70\x8a\xc5\xcc\xa7\x49\xbd\xc6\xb6\xac\x98\x26\x29\x4d\xd0\xfa\x37\xf3\x63\x15\xce\x97\xb3\xdc\x1a\xea\x12\xe1\xe8\x38\xcf\x1c\x12\x6f\x42\xee\xf7\xf4\xf4\x7a\xf0\x72\xff\x58\x73\xd8\x1f\xea\x3c\xbd\xe5\x5b\xfc\x72\xdb\xc4\x65\x4b\xb9\x72\x9d\x57\x66\x62\xda\x14\xb8\x30\x79\x4b\x89\x35\xa3\xe9\x26\x60\x64\xd5\x38\x5d\x75\xb1\x05\x57\x81\xc7\xa1\x91\xb2\xc8\x3c\x1e\x56\xb7\xeb\x65\x39\x0d\x63\xa6\x82\x67\xd2\x06\xdd\x48\xfc\x86\x7b\xca\xd4\xea\xac\xca\x55\x92\x38\x03\xf5\xde\x4b\x6f\x78\x99\x53\x88\x81\xf9\x84\x39\x74\x32\x3f\x50\xaf\x7f\x21\xb5\x0f\x29\xe0\xc8\x28\x8c\xe5\x2f\x6a\xb9\x7c\xce\x68\xf0\x21\xbb\xd6\x43\x3e\x74\x9f\x7e\x38\x4e\xaf\x9d\x1d\xa5\xf1\x0e\x53\x69\x91\x37\xda\x9a\x94\xbd\xfc\x72\x3b\xb7\x2b\xae\xfc\x7f\x18\x7b\xf3\x18\x49\xb2\xf4\x3e\xac\x3b\xab\xfa\x9a\xee\xde\xb9\x76\xb9\xb4\x24\x5a\x29\x99\x06\x49\x69\x34\x34\x65\x59\xb2\x16\x30\x22\x5d\x5d\xcb\xdd\x6e\xed\xd4\x16\x6a\x9a\x3d\xf2\x40\x06\xfa\x65\xe6\xab\xcc\x98\x8a\x8c\xc8\x8d\xa3\xaa\x6b\xe0\x3f\x08\x41\x10\x08\x83\x96\x6d\xd0\x86\x65\x19\x12\x0c\x99\xb6\x48\x53\x82\xb8\x22\x2d\xee\x92\xd4\x66\xcd\x72\xb9\xab\x25\xb9\xc7\x6c\xcf\xec\xdc\x33\x7d\x1f\x55\x7d\x5f\xd3\x67\xb5\x11\xdf\xef\xfb\xde\xfb\xa2\x22\xc6\xf0\x1f\x03\x44\x4c\x57\x66\xc6\xf1\xde\x77\xfe\xbe\xdf\xcf\x44\xe1\xab\xbc\xa3\x37\x09\x64\x3c\xbf\x79\xcd\x15\x4b\x56\xc2\x38\xc3\xcd\x61\x61\x43\xcc\x0b\xcf\x66\xd7\x9a\x17\x54\xf8\x3e\x8f\xab\x0a\xcc\x5e\x37\x04\xc6\xb6\xa7\x06\x0d\x3f\xd2\xe8\xb1\x8f\x2a\x4d\xdf\x71\xd8\x9f\x56\xfc\x37\x1f\x4e\x14\xe8\xec\x43\x7a\xf8\x28\xd2\xfc\x11\x3d\x61\x3e\x76\x59\x52\xf6\xfc\xf8\x79\xf3\x7c\xab\xda\x6e\x50\xcd\x83\x46\x8a\xcf\x7c\x98\x02\x92\xd0\x72\x6a\x7d\x27\x50\x31\xe0\x93\x86\x21\xa6\x79\x9a\x9d\x64\x1b\xe8\xde\x6d\xf9\x28\xa4\xed\xac\x64\xd1\x46\xc9\x0e\xbf\xf2\x59\x1c\x0e\xf9\xf9\x37\x27\x8a\xcc\xed\x34\xee\x95\xe7\x3d\xe9\xfe\x04\x8d\xfe\x29\xd5\xe2\x09\xa3\x7c\x77\xb9\x3c\x5c\x85\x73\xce\x89\x35\x5e\x55\x12\xe4\xf7\xe9\x0b\x50\xc0\x78\x08\x6f\xea\xd6\xd0\x4b\xb3\x87\x39\x54\xbd\xa4\xea\x46\x1b\x8a\xb5\x5a\xab\x60\x2f\x86\x7d\x1b\x85\xb9\xe8\x2f\xc8\x08\x98\x0f\x23\x2f\x69\xbd\xbb\x6d\x1d\xdf\x12\x34\x99\x19\x86\xfc\x36\x98\xf9\x3d\x50\x89\xc5\x99\x8a\x16\x50\x14\x92\xb7\xad\xc8\x8f\x78\x20\x78\xbd\x9d\x7b\xf8\xcb\xed\xd4\xae\xa4\x21\x8b\xe4\x20\x76\x47\x3d\x88\x8f\x1b\x24\x54\xdb\x2b\xa9\xcd\xf2\xc8\xd5\xc0\x59\x9f\x6a\xcd\xd7\x2f\xb7\x75\x54\x6b\xc6\x64\x4b\x36\xcf\xa6\x14\x29\xcf\x09\x95\x28\xbc\x39\x51\x89\xc2\x7a\xcd\x94\x42\x86\x33\x4f\xad\x78\xcb\x59\xe1\x5b\x0c\x54\xd8\x75\xb1\x99\x81\x34\x49\x63\x99\x79\xc4\xae\xe6\x61\x79\x3e\xa9\x74\xc1\x0b\xe6\x41\x43\xd8\xc0\x91\x2c\x9f\x28\x3c\x31\x05\x5a\x61\xb7\xc8\x93\x74\xda\xc3\x5b\xdf\x9d\xf8\xf1\x3a\xc4\xa4\x48\x2d\x6e\x68\x12\xfc\xa9\x8e\x07\xb4\x0f\x4d\xda\x4d\x52\xb9\xb8\xa6\x2a\xab\x13\x0c\x37\x59\x19\x31\xba\xd9\x15\xbc\x4f\xd4\x9c\x3e\x05\x69\x53\x07\x20\x73\x8a\x4b\xdb\xd7\xe8\x69\x23\x06\x39\xd3\xa4\x95\x36\x4e\x93\x3c\xc9\x57\xc7\x96\xaa\x3e\x88\xbe\x41\x51\x82\x60\x85\x67\x49\x25\x60\xf0\x00\x47\xdb\xdb\xa3\x26\x9e\x18\xb8\x53\x01\x29\x32\xeb\x72\xb9\x88\x36\xcf\x28\xe6\xf4\x0f\x81\xf8\x81\xcd\x7b\x37\xf0\x57\xfb\x18\x1b\x98\xff\x01\x3f\x8c\x34\x6d\xaa\xa3\x36\x6d\xd2\x35\xe9\x94\x72\xa6\xdf\x46\x7f\x0a\xa5\xb8\x1b\x8a\x8b\xfc\xca\xa4\x3a\xb5\x45\x83\x73\x05\xc2\x4a\xe9\x2b\xd1\x3d\x48\x63\xc9\x8d\x04\x26\x63\xf3\xea\x74\x99\x58\xe2\x86\xc0\xaf\xc5\xda\xa3\x8a\x46\xf8\xb2\x2e\xcf\xff\x48\x59\xa9\x99\xbf\xf6\x0b\xad\x0a\x2f\x5d\xf9\x19\xb1\x31\x3e\x40\xeb\xa5\x45\x66\xfa\xc0\x8d\x21\x66\xfc\x50\x71\xaa\x72\xea\x0c\x7b\xe6\xe1\x29\x5d\x9b\xda\x45\xa6\xd2\x41\xf1\x04\x24\x01\x7c\xac\xb8\xa9\xc6\x61\x9e\x67\x79\x22\x08\x0d\x24\xc9\xe7\x02\x05\x9c\x38\xe7\x6e\xd9\x8e\x53\x7b\xac\x45\xcb\x48\xb0\xc7\x2a\x60\xbe\xd8\x44\x98\x3e\x4a\x96\x2d\xa1\x6c\x90\xc2\x9c\x46\x88\x2e\x32\x92\x7a\xf8\x5c\x41\x92\x4f\x37\x31\xa6\xf4\xd2\x70\x14\xc6\x26\xa2\x35\xc8\x8f\x3c\xf0\x76\xe8\xac\xa6\xcd\xfa\x61\x53\x7f\x98\x07\xad\x3d\x39\xca\x45\x35\x56\x77\x71\xe2\xe8\x25\x87\x49\x9e\x50\xff\x3f\xec\x4d\x29\xd6\x13\xdd\x84\x85\x43\x96\x0b\x6f\xa0\xf7\x34\x79\x0e\xe1\xf4\xf2\xf3\x22\x41\xed\xbb\x74\x57\x54\x37\x3a\x8c\x17\xa3\x64\x85\x79\x13\xdc\x2c\xb7\xf3\xdc\xb7\xeb\x39\xd5\x81\xf6\xa2\xe9\xa6\xcc\x6b\x24\x45\x93\x96\x93\x7f\x38\x55\xe5\x3b\x5b\x09\x5b\x4a\x50\x0e\x8f\x59\x90\x51\x5b\x6b\xbb\x65\x72\x58\x60\x4e\xd0\x21\x72\x3d\x3a\x37\x78\x82\xff\xbc\xbd\x30\xf3\x17\xe9\x3d\x22\xe4\x7c\x44\x7d\x60\xf8\xd7\xbb\x18\xb1\x42\x2f\xe7\x16\x7a\xbb\x48\xc5\x6f\xa2\xa6\x8f\xc6\x03\xf2\x75\xd6\x7b\x42\xc2\x8a\xfe\xdb\x2e\x65\x56\x38\x73\x66\x7d\x9e\x35\x6a\x55\xb0\x64\x2c\xd5\xf2\x99\xbe\x03\x9d\x0a\x47\x55\x5e\x6e\x73\xc0\xf1\x36\x48\x34\x42\xf2\x01\x25\xb7\x7e\x1d\x09\x0e\x62\xb4\x27\x3b\x0a\xee\x7d\x83\xaa\x9b\x2e\x3d\xff\xfc\xdf\x75\x7a\xb9\x54\x16\x40\xb0\xf8\xb1\x62\x18\xb8\x83\xe2\x3d\x2a\x75\x6b\x81\x47\xb7\x7f\xac\x54\xe0\x2f\x23\x87\x85\x27\xf9\xf7\xb4\x7b\x61\x9f\x59\x44\x0b\x97\x78\x2d\x68\xfd\xcc\xcf\x78\x01\x29\xc7\x03\xb9\x8b\xa2\x78\x51\xdf\xc7\x36\x15\xa0\x69\x83\x5c\xdc\xa8\xd7\x33\x2b\x2d\xdf\x99\x7e\x84\xbd\xcc\x27\x13\x3f\xeb\xd9\x33\xe3\x10\xa3\xb5\xbc\x4e\x1d\xe8\xcf\x03\xc3\x37\x94\x16\xcb\x8a\x35\xcb\x65\xa2\xe8\x93\xd0\xaa\x06\xbc\x37\x59\x8b\xb6\x6f\x53\x13\xed\x57\x6e\xf1\x4e\xe0\xc7\xcd\xae\x56\x78\x1f\x77\xa3\xaf\xcd\xb3\xf6\x8a\x74\xe3\x2c\x56\x8f\x93\x56\x71\x1a\x3b\x57\x51\x01\x83\xd7\xfc\x30\x50\x9c\x17\x1f\x68\x6a\x0e\x96\xfb\x82\x45\x9d\x5a\xf3\x80\x41\x26\x87\x14\x99\xe8\xad\x51\x04\xa1\x5f\x33\xd3\xa5\xd9\xed\x29\x8f\x0c\xc6\x3b\x81\xe9\xba\xab\xf0\x87\xa7\x9b\x88\x3e\x8a\xe7\xe3\xe7\x35\xb7\x13\xac\x93\xf4\x57\xbc\xf9\x35\xa3\xb0\x67\x88\x17\xcb\xf7\x90\xce\xd1\xa6\xe3\x63\xf5\x02\xa2\x70\xc9\x46\xab\xfb\xf0\xf0\x24\x9d\xa4\x87\x87\x98\x01\x8d\x2c\x89\x57\x68\x5d\xe2\xb1\x80\x6f\x06\x3d\xf9\xe9\xb5\x72\xeb\x30\x82\x7b\xa2\xc0\xd2\x57\x15\xd3\xcb\x3b\xd8\xab\x2e\x0e\x2a\x1f\x17\x7f\x95\x1e\x3c\x9c\xa2\x28\x0e\xaf\xf1\xa9\x26\xc5\xd1\xd4\xf6\x92\xb4\x2f\xc2\x71\x70\x3e\xba\x72\x71\x7e\xa2\xde\xfd\x07\x6a\xb2\x79\x64\xfa\xf6\x49\xcf\x7b\xc6\xe8\x3c\xdc\xc1\xbe\x8e\x47\x15\xec\x5d\xd3\x64\x60\x93\x0a\x93\x3f\x5d\x35\x6c\xf4\x69\xf4\x39\xdd\xdc\x91\x57\x4c\x7a\x1d\xb1\x39\xac\xc7\x1f\x06\xbe\xe1\x76\x5f\x4f\xe4\xa3\x42\x08\x2c\xca\x59\x05\x23\x98\x06\x8f\x90\x64\xa7\x7e\x52\xf1\x56\x2d\x12\x3e\x38\xd7\x2e\xe2\x65\x1b\xfa\x48\x58\xd4\xaf\x5b\x4e\x56\xfb\xcf\x9c\xa7\xed\xaf\x3a\xee\x61\xb8\x3a\x70\x20\xe1\xd6\xee\x2b\xc2\xa2\xb7\x54\x44\x5f\x5a\x7c\x9b\xf2\xdc\xa3\xab\xd4\x2f\xcc\xb0\x27\xf9\x17\x0a\x7f\xb0\x1e\x78\xe4\xd6\x1f\xb8\x64\xae\x1f\x96\x5f\x80\x22\x2d\x9c\xde\x29\x35\x3d\x7b\xaa\xb1\x12\x96\xda\xbc\x48\x63\x49\xcc\xf0\x26\x4f\xc2\x84\xf0\x09\xf4\xec\xe9\x03\xaf\x98\xd5\x96\xaa\xb8\x73\x72\xce\x27\x35\x9f\x5d\x7e\x7d\x9c\xa4\x3c\xb8\xe1\x64\x7b\xca\x8f\xf0\x89\x1a\x0b\x19\xd3\x80\x87\x9b\xdf\xff\xaa\x52\x1e\xff\x6a\xf0\xe9\x6a\x6b\xf8\xe0\x5c\xf9\xdd\x9f\x2d\x1f\x07\xd3\x2c\xd2\xec\x37\xcc\xf0\x19\xcd\x8a\x7b\x8d\xea\x02\x4e\x74\xac\x5c\x5e\x6e\xd0\xd3\x47\x9e\xdb\x50\xd5\x47\xee\x78\x87\xb0\x2d\x30\x4e\xdf\xc6\xf6\xc4\x52\x7b\x47\xb1\x50\x3c\x56\xec\xa2\xe7\xa8\xbd\xe0\x08\x73\x3e\xff\x77\x45\xff\x1a\x1d\x75\x19\x49\x43\x51\x54\x58\x31\xe9\x29\x72\x67\x46\x6b\xcf\x01\x12\x29\xe4\xb8\x4a\x8e\x04\x40\x79\x94\xeb\x39\x27\x44\x7c\x3a\xdd\x51\xd2\x12\x7b\x9e\x46\x7b\x84\x19\xef\x9b\x88\x1d\x63\x9b\x2e\xdb\x0c\x40\x2a\x35\xfa\x2b\x6d\x81\x87\x81\xd6\x72\x73\xa4\x7e\x69\xc8\x64\x08\x0e\x69\x73\x37\x50\xe3\xfe\xf5\xd9\xd4\x23\x33\xed\x95\x30\x1f\x0e\x6d\xd4\xd7\x94\x52\x28\xd9\x49\x43\xb6\x89\xf4\xb0\x18\x8f\x13\xa7\x5f\x24\x23\x07\x18\xb5\x94\xa8\x64\x6b\x51\xe6\xc8\xcc\x17\xda\x43\x1b\x0e\x86\xb9\x8d\x45\x50\x02\x77\x00\x7e\x41\x29\x10\xd0\xe3\x94\x3e\x90\x07\x6e\x25\x5d\x1a\xbd\x6f\x95\xeb\x09\x79\xc9\x29\x5a\x36\x7c\xdc\x04\x70\xee\x9a\xde\x52\x14\x62\xca\x14\xad\x17\x80\x6a\xf9\x78\xed\x49\xd5\xbc\xe9\xa6\xab\x09\xfd\xa1\x30\x6f\xf9\x59\xc7\x2b\x9e\x16\xa6\x1b\x85\x5f\x29\x2c\xe5\x23\x58\x56\x24\xd9\xb4\x79\x9f\x5e\x07\x0a\x14\x0c\xb1\x10\xc3\xb1\xd5\x6b\x2d\xcc\xb4\xbb\x36\xcb\xa7\xcb\xdb\xc0\x75\xfc\x73\x6d\x03\xd7\x61\x43\xf9\x84\xbe\x96\xff\x2a\xf0\xcd\xcc\x7e\xd2\xcb\x93\x94\xe7\xb3\x24\xc1\x2a\x1d\x8e\xd0\xfc\xa8\x36\xcf\x22\x87\x1d\x70\x3f\x08\xa9\xf9\x78\xed\x13\xc6\xf8\x12\x56\xb3\x69\xaa\xab\xfa\x02\xe9\x2b\x49\x6c\xb3\x29\xff\x6f\x1b\xca\xd8\xdd\xd3\xe3\xed\xe7\xd4\xe5\xe4\x66\x48\x35\x23\x60\x66\x98\xa7\x9a\x79\xa7\x26\x5e\x3a\x11\x65\x51\x54\x31\xef\x60\x05\xf3\xb0\xb7\x22\x30\xee\x9b\x91\x19\x58\xaa\xe0\x6d\xde\xad\x70\x67\xf8\x6e\xfb\x57\x75\x27\xe8\x03\x55\xde\x1d\x27\x61\x9c\xef\xa6\xed\x25\x01\x99\x5f\x4c\x3c\x87\x2e\xc1\x99\x52\x60\x3c\xae\xd4\xdb\x8f\x07\xca\x84\x43\xba\xcb\x39\x9b\x83\x1e\xbb\xdf\x64\x6f\x07\xc9\xc8\xbe\xda\xaa\x17\x40\x25\x72\x71\x35\x7e\xab\x14\x98\x39\xc4\xa6\x85\x29\xe1\xb6\x67\x3a\xef\xd9\x34\x0f\x17\x43\xc7\x38\x2f\xe2\x22\xa5\x99\x14\xd5\x91\xbd\x6e\xd2\x74\x29\xab\x74\x79\x03\x0f\xd2\xfd\xdd\xfa\x30\x09\x11\x08\x8f\xc6\xae\x37\xc2\x36\x10\x76\x4f\x0c\xa2\x47\x53\xac\x98\xdc\xa6\x04\x0f\xf4\x60\x43\xa1\xec\xf8\xb1\x1a\xf3\x3d\x15\x28\x78\xd0\x65\x32\xc9\x30\x07\xe7\xd5\x10\xc2\x03\x8a\x48\xe1\x9d\x4f\x36\x54\x39\xe7\xdb\xd9\x30\xb4\x51\x5f\x34\x0a\x44\x6a\x92\x1e\x27\x9f\x34\xb9\xbc\x17\xdb\xfd\xc4\x32\x1a\x41\x75\xf4\x5e\x96\x93\x5a\x64\x71\xe8\xd0\x02\x23\x1f\xe5\x31\xe0\x2e\xd6\x15\x3a\x9e\x39\xb0\x11\x9d\x47\x21\x4d\x7e\xcf\xfb\xed\xe1\x38\xf4\x36\x54\x62\x3a\x8e\xcc\x6a\xb2\xb8\x48\x62\x87\xc8\x4a\xbe\x0b\x8f\xc4\x27\x15\x72\x3f\x6f\x95\xaf\xa8\x2e\xc0\xa8\xc8\xc2\xde\x2e\x45\x0c\x71\xab\x4c\x9d\x36\xef\x2a\x27\x75\x1c\x1a\x29\xb2\xbe\xc8\x91\xe2\x9a\x6f\x91\x8d\xe1\xe3\xf2\x61\x6f\xde\x55\x9b\x3c\x32\xc5\x60\xd8\xf2\x29\xf9\x87\x2a\xbd\xfe\xd0\x8f\xe9\x24\xbd\x1e\xeb\xaf\x21\x91\x43\x75\x1e\x9d\xea\xed\x18\xe4\x80\x57\xf8\xb7\x8d\x5e\xa1\x97\xc4\x8b\x36\xcb\x84\x3f\x80\x01\x63\xba\x27\x70\xb6\x56\x85\xe4\xb8\x77\x59\xa9\x61\x0a\xa6\xb0\xe5\x88\x88\x37\x94\xc0\x47\xdf\xc4\x03\x9b\x26\x45\x46\xc9\x86\x70\x30\x78\x08\x35\xc6\xe2\x78\x02\x5e\x3d\x82\xb4\x88\x6c\xb6\xa7\xf5\xc2\x2c\x7b\xf2\x8b\x9c\x57\xc9\x2f\x28\x04\xf9\x05\x58\x1b\x27\x55\xe4\xf0\x85\xdb\xd7\x7c\xc1\x73\x4f\xc7\xcf\xc6\x7f\xa4\x65\x27\x36\x34\x05\xe8\x0f\x9b\x2a\xfa\xa9\xcd\xc3\xd4\x4d\x2b\x34\x65\x87\x5b\x86\x5a\x17\x66\x16\xda\x47\x66\xe6\xa6\x94\x12\xb2\x9a\x20\x6f\x41\x14\x10\x97\xb2\x7b\x4d\x65\x96\xc5\x2b\x61\x9e\x15\x30\x11\xb8\x35\x66\xe9\xe4\x93\xa6\x7e\x77\x56\x64\x63\x1b\xbb\x97\xc8\xc3\xff\x4a\xba\x6f\xa3\x0a\xe4\x8f\x81\xae\x45\x41\xf4\x87\x54\xdc\xe0\x63\x35\x7c\x43\x33\xe5\x3b\x7d\x03\x1f\xba\xc5\x48\xeb\xbf\x47\x23\x27\x58\xd2\x8f\x03\x9f\xcc\x61\x9b\x48\xc8\x49\x46\x8a\xff\xc1\xb5\x7e\x96\x43\xbb\xb2\x9b\x9e\x36\x50\xdf\xef\x4f\x3c\x49\xde\x3f\xa1\x0d\x81\x4b\x86\xe6\x10\xa0\x93\x7b\x3b\x6a\xa6\x83\xe5\x11\x10\x8b\xee\x50\xe4\x7f\xbc\xda\x61\xf9\x2e\x2a\x98\xf8\xb0\x9b\x68\x91\x3d\x06\xcf\xf2\x89\xe2\x17\x5a\x2c\x32\xb7\xa0\x11\x50\x80\x3e\x89\x8f\x1b\xdd\x49\xd7\xc4\x4b\x19\xb7\x31\x70\xdf\x8f\xf0\xf5\xc2\xdb\x48\x3f\x2c\xc5\x6a\xfd\x16\xbe\xf2\x37\xfe\x33\x54\xdf\x00\xb5\x79\x80\xa8\x1c\x99\xcc\xf9\x8a\x82\xf9\xd5\xc6\x5f\x5e\x19\x12\xd5\xa6\xf3\xb7\x30\xd7\x7c\xec\x75\xb6\x87\x66\x6c\xc9\x23\x38\x54\xaf\x53\xcc\xd7\x24\x09\x1f\xc3\xa5\x88\x74\xa2\x82\x24\x9c\xc6\xf3\xe6\x7f\xa1\x37\x24\x73\x56\x9f\x76\x48\xc2\xdc\x74\xa3\x30\x1b\x8e\x6c\x8c\x01\x40\xbc\xdb\xbb\x8a\x77\xe9\x72\x99\x81\x6c\x9e\xa9\x74\x19\x22\xd3\x9f\x2e\x17\x1f\x8f\xe1\x90\xb3\x82\x81\x43\xfa\xc6\xc7\xaa\x51\x7b\x46\xa1\x00\xbb\x21\xe9\xde\xd1\x23\x40\x4a\x0b\x22\x01\x3e\xae\x34\x0b\x4d\xb6\xba\xcb\x4f\x8b\xa1\x08\x26\xcc\xdb\xc8\x3b\xb0\x6c\x00\x04\xd4\xca\xea\xcc\xc3\x85\x1a\x9c\xbc\x61\x3f\x30\x79\x32\xd0\x38\x77\xf0\xbe\x32\x18\x6d\x93\x3a\x61\x9b\x97\x6a\x71\xe8\xd1\xa3\xed\x28\x49\x96\xa8\x0a\x89\x8c\xfd\x41\xa0\x06\x70\x1f\x4c\x3c\xce\x20\x5c\x8c\x24\x15\x41\x58\x7e\x3f\x50\xc4\xdb\x40\x97\x0a\x9f\xdb\xfe\x0a\xe5\xfe\xf4\x94\x97\xcb\x87\x7e\xb6\x23\xd6\x77\xf6\x90\x51\xcc\x7c\xe2\x14\xce\x2c\x37\x2e\xb9\xfb\xae\x21\x6f\x97\x14\x59\x67\x9a\x64\x1c\x07\xe3\xdd\xdc\xa1\x05\xc8\xc7\x41\xfb\x93\x50\x00\x49\x9c\x15\x23\x47\x98\x8c\x35\x76\x5c\x0b\x41\x6b\xc0\x9e\x31\x7f\x7d\xca\x77\x9b\xf7\x53\x08\xed\x48\x34\x3d\xf3\xd3\xce\x35\x41\x72\x25\x45\x9e\x2c\x15\xa3\x71\xa1\x88\x81\x3f\xd2\xcd\xc4\x8f\x34\xbb\x7d\x18\xef\x55\x90\xfd\x5d\x04\x80\x96\x5a\x18\x7d\x06\xb6\xe8\x19\x92\xa6\xa6\xdf\xfd\x22\x04\xe9\xa5\x21\x53\x26\xb6\x8e\x32\xbb\xdc\x33\x5c\x89\x80\x6b\x42\x5a\xcd\x06\x01\x31\xde\xe6\xc4\x37\x54\x34\x9f\xdb\x95\x5a\xed\xe1\xc0\x81\x36\x29\x62\x64\x79\x6a\xe8\x19\x08\x74\xd2\xd7\xf4\x01\x1c\x97\x4e\x85\x84\x04\x83\xd2\x33\xc7\xd4\x93\x80\xf9\x64\xb5\x3e\xd4\x56\x00\x37\x40\x62\xbd\x7b\xcd\x8f\x25\x5c\x53\x12\xb9\x9e\xc1\x14\xec\x5f\xb8\xc3\x75\xad\x6e\x87\x59\x13\xfe\x87\x40\x51\x93\x7d\xe0\x56\x6f\x18\x2f\xb9\xfd\xc9\xc2\xfe\x58\x6f\xa2\xf2\xef\xd1\x93\xa4\xa5\x90\xed\xa0\x27\x08\xdc\x33\xa8\x98\xb1\x32\x01\x75\x41\x79\xee\x7f\x46\xcd\x94\xff\x88\x1e\x26\xaa\x6e\x97\xf5\xfc\x8a\x49\xc3\x98\x85\xf4\x1d\x27\x8d\x6b\x88\x61\xf6\x59\xa4\x7b\xbc\x3d\x29\x43\xa1\x24\x1d\x29\xfe\x22\xe6\xe9\xe1\x13\xe7\x29\x56\xad\x49\x3d\x83\x21\xc2\xae\xf3\xaa\xed\x70\xbe\x16\xc1\xce\x1e\x6e\x2f\x16\x51\x94\xf5\x0c\xb3\x23\x4b\xe6\xec\x61\x0f\xa7\x54\xbc\x34\x0e\xe3\x25\x9b\xe6\x49\x8c\x11\x1c\x71\x94\x95\xaa\x9e\x1f\xd4\x38\x4e\xa1\xcf\xe6\x05\xad\x98\xf6\x7a\x6d\xa2\x7e\x61\xa6\x6d\x7a\x05\x77\xb6\x79\xb8\x4e\xb1\x51\x9f\xd7\xc8\x13\x9b\x3d\x45\xd6\x03\x49\xe4\xfd\x89\x9a\xc0\x65\x6a\x1a\xd6\x02\x54\xa3\x12\x4c\x5c\xe7\xd4\x55\xcb\xa5\x42\xa6\xf3\xa9\xbf\x42\x51\x17\x4c\x27\x7b\x39\xfa\xc8\x7f\xfa\x97\xfd\xb0\xea\x97\xff\xf2\x5a\x19\xe6\x39\xc8\xd8\xc2\xbc\x23\x2a\x54\x13\x43\x9f\xa6\x46\x01\x1e\xf2\x6d\x5a\x14\x12\x5d\xc0\x5d\x62\x89\xfc\x85\x8e\xaf\x25\x3c\xbd\xf6\xa4\x22\x2f\x0f\xe3\x3c\xdb\xed\x19\x85\x77\x53\xc9\x1c\x7b\x84\x29\x18\xd1\x57\xd9\xd1\x51\x13\xaf\x17\xc8\x2d\xa1\x07\xf7\x04\x21\xbc\xa5\xec\xa7\xd8\x69\xce\x4f\x7c\xd2\xf5\x8e\x7a\x93\x26\x1d\x65\x79\x9a\xc4\x03\xa2\x8f\xa9\xd0\x42\x21\x40\xb8\xa8\xc6\x45\x1e\x3a\x3e\xa2\x41\x1a\xf6\xa3\xa4\xb7\x24\xb5\x1a\x24\x1e\xa7\xd4\xdf\x5e\x80\xbf\x46\x65\xf1\xdb\x13\xdf\x4b\x8f\xec\x62\xbe\x18\x5a\xe6\xe1\xaa\x58\x20\x3e\x51\x24\x7f\x39\xa9\x97\xc5\x83\x9d\xf4\x2b\x30\xac\x37\xf0\x22\xe1\xf7\xde\x56\xe9\x29\xf3\x14\x3a\x95\x8d\xb9\xb9\xcd\xcd\x89\x42\xfb\xbe\xdd\x14\x9a\x2e\x26\x45\xdc\xf7\xfc\x64\x00\x0c\xa3\x58\xc5\xc7\xae\x24\xbc\x6a\x72\x2b\xb9\x64\x23\xbb\x97\x10\xb5\x16\x71\x6a\x07\x85\x42\x0c\x3a\x6c\x87\xa7\x8d\xac\xc5\xf0\x65\x3c\xce\x7a\xc8\xe4\x78\x85\xfb\xbf\xe5\x34\x56\x2e\xd4\x9a\x4d\x04\x30\x2f\xa4\x7b\xd4\x54\x9f\x6b\x68\x8c\x74\x13\xbe\x57\x06\xf0\x05\x8a\xf2\xbe\x0e\x3e\x38\x58\xa6\x16\xbd\xd5\x9e\xaf\x9a\x0b\x59\x7a\xcb\x13\xa7\x2b\x30\x7d\x18\xbf\x52\xa4\xcc\x6b\x06\x13\x86\xc9\x6d\x3e\x76\x61\xb6\x5d\xe9\x77\x29\x08\x01\x76\x63\xf3\x82\xab\x40\xac\x58\x03\x5a\x08\xc7\x15\x57\xee\x6e\xc7\xd5\xef\x63\x79\x15\x1d\x6e\xaf\x09\xae\x1f\x3a\xd4\xce\x92\x08\x79\x04\x1a\xf5\x67\xe8\xa5\xf2\x71\xc3\xa3\x7c\xb1\xdd\x37\xa9\x9d\x52\xdc\x37\xb7\x02\x25\x8a\xf4\x51\x85\xea\xc5\x39\xb3\x91\x49\x73\x7b\xac\x55\x61\x73\xd1\x03\xca\x5b\xeb\x68\x07\x66\xdb\x51\xd8\x5d\x35\x71\x56\xd1\x02\xfa\x18\x3f\xc5\x4c\x16\x7a\x46\x7b\xa3\xf6\x4a\x50\x8a\xb3\x91\x7f\x25\x4e\xb6\xc8\xe3\x93\x82\xbf\xf8\x09\xf1\x4d\x31\x1e\xa4\xa6\x6f\x33\xda\xf0\x82\x81\xa1\x8d\x03\xb4\x0f\x4b\x13\xb3\xe8\x69\x03\xc2\x67\xfe\xc5\xb6\x89\xf3\x30\x8a\xdc\x66\x10\xa0\x99\x46\x9d\xd5\x6e\x7c\x61\xa6\xcc\xd8\x22\x87\x20\xe3\x39\xd4\xa0\x32\x94\xba\x5f\x55\x8a\xa2\x5c\x89\x11\x5f\x50\x52\x7c\x17\x14\x55\x40\x56\xc6\x12\x36\x1c\xc4\x2d\xdf\x79\xbb\xa5\x7b\x67\xb7\x1a\x07\xfe\x16\x43\xf8\xd1\xcd\xfb\x34\x3a\x75\xbf\x89\x52\x77\x1c\xe6\xbd\xa1\xd0\x3d\x33\x5b\xad\x42\xdc\xbf\xa1\x04\x68\x4c\x7f\xd9\xc4\x3d\xdb\xe7\xd9\x0d\x24\xf6\x3c\x2e\x8c\x58\xfd\x26\x85\x0b\xcc\xd2\xa0\xd4\x9b\xdf\x56\x33\xff\x4c\x2e\xc0\x9f\x5e\xdb\x6a\x20\x5e\x98\x65\x52\x63\xc6\x07\x20\x8d\xf8\x31\x2a\x65\x7c\xd2\xc4\x85\x16\x85\x4b\x76\xda\x03\x2d\xa1\x60\xa9\xc7\x27\xd0\xe4\xbe\xa4\xb5\xcc\x36\x1a\x14\xd2\xbf\x00\x02\x6a\x70\x76\xb8\x81\x6f\x07\x0b\xba\xec\x10\xa5\xa9\xed\xd9\x70\x99\x7a\xaa\x7e\x46\x6d\x37\x39\x3d\x3e\x5e\x53\x9a\x6a\x59\xce\x82\xfe\x08\x99\x98\x75\x8c\x4f\x1a\x78\x77\x5e\x49\x42\xd7\xec\x92\x6a\x0a\x5d\xf9\x27\x11\x56\x96\x3b\xae\x0c\x88\x2a\xc3\xb7\x98\xb0\x93\x6e\x78\x03\x7e\x64\xd9\x44\xa1\x61\x16\x4a\xe6\x0c\x0d\x5c\x34\xf0\xdf\xbf\x5b\x1b\xca\x9b\x3d\xdc\xee\x99\x31\xdd\x08\xf3\x4e\x51\xd9\x42\x38\xa8\xe4\xd9\x98\x22\x1f\x26\x69\xf8\x2a\x22\xd7\x59\x91\x49\x09\x94\xc0\x20\x4f\x28\xb8\x1f\x3d\x74\x48\x18\xfe\x9a\xb8\x7c\x46\x61\x96\xa7\x45\x96\xc3\x05\x08\x73\x53\xcb\x2b\x67\x05\x2e\x09\x8e\xf3\xd4\x8e\x53\x1b\xdb\x22\xcd\xa6\x7d\x60\xcd\xbb\x1f\x61\xc6\x1d\x8a\x13\x2a\xe4\x43\x78\xbd\xbb\x15\x46\xb0\x9f\xae\xc6\x36\x43\xb1\xcc\x01\xa2\x9c\x6d\xbd\x53\x91\x43\xdf\xfa\x9c\x0e\x7f\xb9\x3d\x36\xab\xb4\x80\xb1\x8f\xf0\xe7\x7c\xac\xb9\x8f\x13\x93\x66\x8c\x8d\x14\x94\x1d\x5d\x8f\xc0\xef\x94\xcc\x4a\x34\x62\x4b\xe4\xd8\x47\x3c\xa0\xe4\x8e\xfa\xc3\x03\x2f\xfe\x22\x2c\x35\xb3\x3a\x04\x3e\x5e\xb9\xab\xe2\xcb\xcf\x7f\xe9\x45\xfc\x2e\x2c\x3f\x33\x0b\xf0\x49\x9d\x56\xf4\x40\x7b\x31\xb5\x56\xcd\x08\x7e\x1f\x2e\x4b\xf4\xd9\x3d\xde\xe9\xba\xca\x01\x8a\x78\xd1\x84\x29\x95\xdf\x90\xf8\x81\x1a\x85\xd1\x0d\x8a\xc5\xe4\x4c\xe3\x38\x4f\x18\x2f\xdb\x2c\x6f\xa9\x2e\xe4\x07\x64\x62\xa4\x93\xef\x92\x9c\x2c\x2b\x5c\x27\x9b\xd3\x15\xba\x6d\x77\x75\xce\x41\xfe\x4a\x53\xb3\x31\x29\xf2\xc5\x30\x6f\xf9\xcb\x44\xcf\xa7\xae\x57\xb2\x98\xa4\x5d\x9e\xcf\x76\x60\x08\x07\x65\x3d\xab\x72\xa9\xae\x89\xa2\x24\x47\x62\x0e\x2f\xa3\xe7\x42\xaf\x2a\xb3\x1a\x41\x01\x38\x9b\xf2\x69\x28\x86\x45\x50\x44\xc2\xf4\x8e\xc0\x6a\x1a\x54\x8c\x56\x4d\x04\x69\x57\x57\x2f\xf9\xa5\x2f\x0a\x1f\x90\xee\x4e\x63\xb9\x20\xaf\xbe\x57\xc3\xd0\x1d\x38\xd0\xce\x86\x66\x45\x55\x43\xae\x6a\x29\xc1\xab\x6e\xe6\x75\x9c\xa4\x79\x6a\x56\x61\x9c\xe6\xdd\x04\x1f\xed\x73\x3e\x09\xf6\xab\x49\xc6\xd4\x02\xf6\x8d\xba\x07\xd3\x4a\x89\xec\x37\xe5\x52\xfc\x2f\x2a\x70\xb9\xa4\x55\x16\x22\x6b\xf3\x1d\xba\xc6\x8c\xe2\xbd\x90\x99\xb4\x9c\x98\x35\x2b\xb7\x23\x11\xbd\x0e\x2c\x14\xff\x55\x83\xc6\xd1\x17\xda\x69\x61\xcb\x74\x10\xa6\x1e\xb8\x27\x10\x28\xf1\xb1\x8b\xe2\x86\x12\xab\x49\x34\x4e\x77\x8e\x57\x75\x47\x85\xe6\x17\x2a\x3d\xac\x06\xe7\x42\xa4\x07\x49\x0a\x70\x60\x53\x1c\xe5\x77\xe7\xdf\xfc\xcf\xa1\x7a\xc5\xd2\x31\x54\x9a\x17\x19\x99\xa7\x1d\x84\x30\x8c\x92\x2c\x19\x0f\x57\xa7\x7c\x95\x16\xb5\x58\x57\xda\x70\xed\xff\xf5\xc6\x60\x30\x0d\x33\xe0\x26\x15\x6f\xba\x18\x8e\xf7\x27\x7e\xae\xe7\x9d\xa0\x32\x0e\xf0\x69\xc5\x7a\xdf\x8b\x4c\xea\x05\xc0\x84\xd9\x4a\x51\x6f\x5d\xaa\x11\xff\x1d\x99\xa1\xf8\xd0\xa6\x6a\x3c\x81\xd3\xc6\xff\x13\x6f\x97\x4f\x9a\xf6\x6a\xb7\x08\xa3\x3e\x57\xe3\x98\x07\x25\x50\x8a\x4c\x67\xf5\xcc\xfb\x25\x57\x1c\xed\x25\xf1\x20\x45\x8b\x85\xe1\x01\xc0\x11\xec\xeb\x28\xd8\xec\xbe\x5a\x43\x98\x4b\x06\x96\x75\x21\xb0\x95\x78\xf0\x9a\x4f\x1a\xc0\xe8\xf3\xed\xd4\x66\x49\x91\xf6\x2c\x5b\x6c\xc7\x64\x5c\xfe\x96\x88\x1d\xd4\xd7\xc7\x5c\x3b\x35\x71\x3f\x19\xa9\x7e\xfd\xba\x1a\xa1\x24\xad\x71\x01\x6b\x17\xfd\x8c\x1f\xb9\xb4\x41\x54\x25\xee\xaa\xc2\xdf\xf5\xed\x48\x70\xa6\xaa\xa8\x72\x5f\x91\x42\xdf\x9f\x68\x56\xf3\xd1\x28\xe9\x87\xf9\x2a\x74\x11\x91\xf1\x5f\x9c\xa8\x15\xff\xfb\x13\x85\xf4\xc7\x84\x27\xff\x03\x83\x06\x01\x99\x3a\x59\x43\x7d\xce\xcd\xb5\xd3\x22\x26\x21\x0c\xe0\x88\x7f\x0f\x8b\xca\x15\x38\x3d\x31\xc3\x1f\xe2\x07\x71\x79\xdf\xd8\xa2\x46\xe9\xfc\xf1\x66\xad\xaf\x49\x5a\xaf\x91\xe9\xb1\xfe\xa3\x70\x80\x78\xb0\xdf\x65\xad\xc2\x38\xca\x76\xd1\x05\x28\x15\x63\x5f\xcb\xf0\xdb\xfa\xda\x44\x8d\x2e\x30\x58\x14\x66\xf4\xcf\x75\x3c\xc5\xe2\x7d\x35\xd7\xf1\x64\x2d\xac\x9d\x9b\x6b\xf7\x4c\xae\x5a\x75\xa2\x31\xec\xcb\x03\x1b\x15\x05\xa6\x38\xdf\x53\x9a\x25\x34\x97\x4f\x4d\xfc\x10\xd0\x89\x89\x9f\x3a\xba\x41\x25\x1a\x96\x0b\x0b\x74\x37\x1d\x25\x3e\x19\x9f\xf3\x48\xb2\xed\x1d\x45\xdf\x71\x45\xb1\x8d\x6d\x5f\xdb\xa7\x3a\xb2\x00\x82\x08\x83\xba\x4f\xb8\xfe\xa5\xf2\x70\xf6\xd8\xd8\xf6\x70\x95\x78\x4f\xcc\xb6\x06\x83\x01\xe1\x2b\xe9\xbb\x63\x61\x30\xf1\xba\x22\x95\xbd\x8d\x2a\x07\xa6\xba\x99\x26\x4a\x08\x70\x3d\xad\xc0\x14\x9e\x39\x52\x86\xc7\x95\xf6\x4d\x68\x7a\x53\x4a\xde\x89\xbe\x1a\x66\xb2\x3a\xe5\xa8\xbb\x10\xb6\x18\xd3\xed\xa1\x1d\x74\x5d\x71\xe6\xd5\x39\x5c\x24\x9f\x4c\xc2\x88\xe7\x29\x71\x49\xc0\xbb\xc8\x4c\x2d\xdd\x37\x9c\x43\x3d\x25\x9c\x3d\xdc\x1e\x25\x71\x96\x0b\xb9\x9d\x74\xc6\x7c\xd1\xf1\x96\xd6\xcf\xf0\x4d\xe5\x95\x24\x5d\x12\xa1\x0d\xb4\xa7\xbf\xa1\xc1\x86\x4c\x2e\x82\x6d\xc1\x42\x1b\x8e\xc2\xc9\xf7\xd9\xb4\x53\xc9\x13\xd6\x50\x46\xf1\xee\x34\x9e\xbe\x04\xe4\x3e\x9c\xbe\x56\x95\x98\x59\xb4\xa9\x13\x08\xff\x02\x5f\x26\x04\x6f\xf8\x58\x05\x48\xa9\x8d\x42\xbb\x48\xb1\x0c\x9e\xce\xff\x1e\xf8\x22\xc9\x47\xf4\x21\xf0\x9c\x7c\xd0\xd4\xd0\x1e\x85\xb0\xd0\xec\x22\x81\xfb\xc6\xbc\x39\x1f\xab\xae\x0c\xd1\x58\x4d\x69\x8c\x2f\x53\x18\xa8\x21\x6e\x11\x9f\xba\xae\x60\xc3\x5f\x29\x4c\x9a\xdb\x74\x0f\x01\x02\xa4\x84\xa4\xe0\x12\x8f\x01\xc2\x96\x42\x93\x22\xc2\x3d\x41\x6b\x4a\xb4\xcc\x7c\x6e\x75\xde\x4f\x76\xff\x77\xe7\x03\x2f\xce\x0d\xf5\x75\x8c\xe3\x6c\x5b\x73\x8c\xce\x3d\x93\x0f\x9d\x21\x70\x14\x08\x2e\x71\xbc\xec\xda\x86\xb9\xb5\x31\x97\xbd\x10\xd0\x71\xf5\x81\x4f\xbc\x64\x82\x19\x99\x34\xcc\x7d\xb9\xc5\xf5\x7e\xfd\x47\xb7\xa9\xc0\xfb\x4a\xcd\xaf\x1e\x3a\xd4\xee\xdb\xae\x48\x6d\x70\xd7\x54\xa1\x50\x2e\x2b\x32\xc2\x41\x1a\x4a\x26\x02\xb0\xc0\x6d\x3d\xaa\x76\x5b\x39\x29\x13\x85\xe5\x0d\xa8\x29\x03\x55\x4f\xbb\xad\xa0\x6d\xc3\x22\x2a\x43\x60\x2d\x07\xfc\x3d\x38\x07\x3e\x51\xb5\xb7\x91\x39\x16\x8e\x8a\x91\xa2\x07\xbd\xa8\xca\x0b\x5a\x0f\x3d\xcb\xc3\x51\x11\x15\x19\xc9\x53\x89\x25\x70\x04\xe2\x7f\xe7\x6a\xa5\x37\x99\x9a\xe8\xb3\xf4\x42\x44\x4d\x57\xb1\xff\x5e\x9c\xa8\xf9\xeb\x16\xf5\xa7\x10\x9c\xef\x06\x8c\x11\xbb\x66\x0b\xd1\xca\x41\x99\xd2\x99\xea\x68\x4a\x68\x16\x69\x41\x68\xf4\x67\x8a\x6c\xf0\x09\xd2\x08\x11\x6d\xac\x96\xa8\x22\x19\xd6\x2c\x61\xf8\x08\x02\x34\x27\xce\x5b\xa6\x17\xa8\x20\xee\x20\x16\x1f\x3c\x84\x7b\x81\xca\x93\xa7\x69\x06\x02\x16\xff\x47\x94\xae\xcb\x66\xa4\xb7\xe6\xa6\xdf\x0e\x1c\x70\x02\xed\xb4\x33\xa4\x00\x44\xf1\x98\x90\xe0\x6b\xdb\x6b\xd2\xfe\x33\xbe\x32\x32\x85\xf1\x2e\x6c\x53\xa8\x75\x61\xe9\xdc\xd4\x1a\x66\xf7\x09\x64\x86\xe4\x96\x27\x06\x50\x93\xbd\x40\x0f\x8c\xf9\xe8\x02\xb5\x33\x98\x03\x0e\x4d\x96\xc7\x81\x0f\x68\x7f\x84\x07\x89\xd8\x03\xe2\x19\x78\x41\xd3\x40\x20\xe0\x4a\xee\xa1\x5f\x83\x67\xcf\x6c\x33\x08\xc0\xee\xe2\xa5\x22\x8e\x79\xc8\x2e\x0a\xbe\xe3\x04\xf9\x55\xf1\x29\x7e\x99\x8e\x8a\x6c\xb8\x64\x78\x7e\x59\x34\xc5\xe8\xfb\x05\xb3\xa2\xe6\xa9\x92\xd1\xd8\xa4\x76\xa7\x1f\x87\xba\x4d\xb7\xe8\xc8\x3a\x66\x0f\xcb\xb1\xf6\xdc\x1b\x3a\x87\x00\x3a\x87\x3f\xad\xa8\xdc\xfa\x76\xd9\x44\x85\x0f\xba\x59\x65\x90\x9e\x81\x28\x0e\x36\x8c\x1b\x44\xa6\xb7\x14\x15\xa5\x27\xc2\x70\x95\xb0\xdc\xfa\x6d\xfe\xf5\x5a\xc1\xfe\xe0\x5c\xbb\x97\x2c\xdb\x38\xaf\x50\x5e\xbe\xa3\x5d\xfd\x3b\xd5\x7d\x14\x67\x9f\x29\x17\x1c\x1c\xfc\x34\x56\x05\xfa\x36\x37\x09\xaf\x02\x4c\x35\x82\x32\x94\x0a\x59\x26\xd7\x89\xb9\xbe\x24\x02\xb6\x1f\xa3\xdf\x8f\x62\xeb\x26\x56\x05\xe2\xb3\x77\xb5\x2a\xcf\x79\x7e\x79\x80\x27\xdd\x83\x2b\xc4\x1e\xbf\xcd\xdc\x58\x82\x69\x55\xa0\x95\x4b\x93\x2a\x43\xd4\x91\x19\x7e\xd2\x8f\xe9\xdd\xc0\x48\xa1\x14\xcf\x51\x18\x56\x0f\xdf\x0b\xf6\x1e\xff\x95\xaa\x7b\x9e\x52\xd4\xf8\x77\xd4\x54\x85\x35\x59\x18\xad\xee\x52\x72\x6f\x4c\x84\x84\xf4\xf7\xa1\x5a\xd9\x57\xe8\x39\xc1\xb1\x23\xc0\x16\x2e\x8e\xca\x54\x72\xf9\x3b\xfc\x47\xb5\xb8\xe5\xb9\xb6\xfd\x4a\x11\x2e\x9b\x88\x59\x42\xe4\x89\xbe\xae\x9a\x57\xfb\x3a\x1e\xfb\xd5\xc2\xb8\xb7\x84\x0c\x8e\xe0\x6a\x4c\xed\x3a\x11\xe4\x10\xad\x5e\xba\x0c\xda\x9e\xff\xf0\x19\x4a\x37\x69\x3f\x27\x4f\xaf\xed\x75\x78\x97\x22\xdf\xe9\x47\x96\xef\x68\x6a\xb6\xa9\x35\x6f\x26\x5f\x9b\xf8\xe0\x8b\x13\x37\xa5\x86\x26\xe1\xf4\xee\x4e\x83\xbb\x32\x59\x19\x7e\x4e\xab\xd9\x9b\xdf\xc2\xf3\xd4\xeb\xcb\x89\x83\x1f\x3a\xc4\x2e\xf9\x4d\x77\x6f\xc9\xb2\x4d\xf3\x22\xb5\x15\x8d\x4b\x96\x96\x17\xb1\xb4\xad\x89\xeb\xdc\x5c\x3b\xcb\x53\x1b\x0f\xf2\xa1\x75\xf5\x59\x47\x24\x5f\x5e\xbe\xd4\x23\xb7\x36\x26\x0e\xce\xb5\xc7\xa9\xed\x93\x5a\xb6\x13\x5a\x13\x94\x7d\xcb\x11\xc9\xd4\x41\x46\xb3\x87\xdb\xe6\x58\x98\x8c\xa4\x0d\x21\x75\x68\x55\xb5\xf4\x01\x43\x56\x84\xb9\xc5\x33\x51\x43\xe9\x22\xab\xb1\x31\xd1\xe3\x5a\xe5\x05\xa0\x3c\x56\xaf\xbd\x95\xa9\xe8\x38\x5c\x32\xa1\xd1\xa3\x89\xe7\x54\x22\xc5\x03\x12\x58\x7f\x77\x9b\xb0\x7a\xf6\x18\xa4\x04\xc8\x6c\x60\x07\x01\xce\xcd\xc7\xaa\xe7\x3f\xb4\x66\x39\x8c\x56\xf7\x2a\xca\x8c\x89\xe7\xa8\xe6\xf9\x7b\xbc\xd7\x6d\x18\x2f\x96\x32\x9a\xc7\x1c\xf3\x74\x00\x1b\x7a\x94\x99\x60\x0b\x6f\x06\x7e\xc8\xed\x7d\x84\xbc\x52\x91\xd3\x5d\x05\xbc\x79\x06\x24\xa8\x28\x82\x74\xbe\xfa\x96\x41\x36\x18\x72\x06\x87\x13\x1f\xfb\xa7\x9f\x9b\xd5\x6c\x5a\xf1\xe6\x72\xbf\x4b\xa7\xca\x02\x8a\xf6\x3a\x7b\x5a\x29\xd4\x1e\x1b\xa7\x36\xcb\xa2\x55\xfc\x18\x3e\x78\x9f\xfc\x06\x1f\x2b\xee\xeb\x5e\x92\x0c\x4c\x8c\x35\xc8\x75\x4e\xc4\x4c\x52\xf4\x6c\x2c\x7a\xd9\xde\x52\x44\x62\x0b\x0e\xcf\xb3\xae\x04\x42\xd7\x6b\xf0\xd4\xd9\xc3\xed\x1e\x54\x54\x42\xdb\xb3\x68\x66\x32\x13\xdf\xd3\xba\x0a\x64\x47\x5d\x9b\xee\xa0\xcb\x96\x39\x43\x35\x75\x7c\xb3\x22\x9d\xa5\x44\x07\x5e\x57\x62\x0a\xd7\x26\x5b\xe9\x42\x9e\x6b\xaf\x26\x45\x8b\x9c\x80\xb4\xea\x68\xd9\xf1\x49\x6d\xdd\x1e\x3a\xd4\x1e\x16\x69\xdf\x31\xe6\xa0\x0c\xf6\x00\x4b\x83\x4f\x1c\xb6\xbc\x97\x8c\xba\x61\x6c\x51\xc7\x64\x1a\x4c\x25\x79\xff\xb1\x4a\x19\xb2\x22\x5d\x0e\x97\xb1\x94\xf1\xaf\xdb\xd6\x54\x4e\x5a\xd7\x56\x3b\x70\xa0\x1d\xdb\x30\x1f\x5a\xd4\xbe\xd1\xd7\xfd\x0e\x05\x59\x0e\x2e\x3f\x7b\x98\xcd\xe3\x35\x85\x9a\xee\xa7\x45\xbc\x84\xcc\xc0\xd5\x7f\x7d\x2d\xd8\x09\x8d\x8c\xcc\x18\xd7\x2d\x0c\x31\xaa\x3c\x77\xba\x89\xd9\x2c\x8b\x92\xa2\x37\x54\x6c\x02\x97\x94\x01\xb8\x54\x8b\x16\xa8\xfb\xba\x62\x00\x2e\x46\x59\x1d\xfb\x0f\x33\xc3\xc2\xd2\xaa\xd1\x5d\x3e\x42\x1f\x9b\x34\xec\x9a\x0c\xfa\x46\xc8\x5c\xef\xc2\xf3\x4a\x11\xd8\x23\xae\xef\x62\x73\x4b\x0d\xd8\xc3\x45\x57\x6d\xbc\xa7\xb4\x07\xa8\x40\x81\x63\xdb\x11\xf6\x38\xa6\xd3\xb3\xe5\x57\x6d\xde\xd7\x9d\x25\xd0\xa8\x39\x85\x6a\x17\x8a\xa0\x19\x06\x93\xf2\x2e\x3d\x7d\xfe\x9b\x5a\xfb\xed\xc8\xcc\x6c\x7b\x28\x1a\x6a\x0e\x53\xed\x39\x5b\x95\xe5\x8a\x4c\x4a\xb4\x8c\x0e\xd7\xf4\x17\x9f\x21\x34\x17\x16\x68\x8b\x48\xa9\x9d\xc6\xb7\xa2\x94\xff\xa6\x1a\x09\xf8\xf3\x1d\x45\xe3\x75\x66\x0b\x43\x7c\x6f\x58\xf0\x3c\x03\x47\xf0\xb0\xbb\x12\xce\x7b\x3d\xed\x7e\x98\xf5\xc2\x71\x14\xc6\x18\x08\x61\xd7\x79\x26\x50\x60\xba\xc0\x57\xa8\xce\x4c\xf4\xc0\x69\x93\x96\x73\x36\x34\x4b\xc8\xc2\xf1\xe2\x5f\x53\x3c\xd9\xaf\xd5\x3e\xf1\xb3\x68\x78\x30\xe6\x82\x05\xa5\xb0\x57\x45\x5d\x4a\xa7\x0e\xd1\x6a\x3c\xa5\xd9\x84\x6e\xc3\x50\xca\x6a\x54\x78\xaf\x0f\x1b\x59\x34\x86\x66\x34\x4a\xe2\x3e\xbb\x44\x69\x98\xd3\xc7\xa4\x93\xde\x64\xc7\x92\xd1\x62\x92\xe6\xe8\xd9\x3a\x88\x2a\x1a\xd5\xc2\xb7\xf6\x6c\xcd\x02\x25\xc3\x56\xeb\x97\xbe\x28\x72\x56\xaa\xde\xf9\x6e\xc3\x30\xd9\x6c\xbb\x88\x47\xc9\x32\xb3\x52\xa1\xb4\xb6\x0d\x35\x37\x3e\x59\xdb\xfa\xe8\x7e\xe6\x67\xda\xd9\x30\x2d\x24\xfb\x15\xa7\x42\xdb\x42\xbc\xcd\xd6\x52\xea\x73\x6d\x3f\xb0\x86\x1b\xde\xc4\x3e\xe2\x13\x35\x2a\xd5\x4d\x92\x57\x05\xff\x57\x41\xec\xcb\xc2\xde\x32\xb4\xf8\xd2\xec\xe1\xf6\xd1\xa3\xd3\x64\x73\x05\xf9\xab\x88\x29\xde\x44\x28\x27\xf8\x60\x85\x49\x7b\xb3\x56\xf0\x3d\x38\xd7\xce\x4c\xaf\xa5\x80\xd8\xa8\x7a\xf1\x71\x65\x2a\xea\xd8\x4e\x5f\x09\x6d\x11\xa0\x93\x87\xb0\x27\x1a\x81\xa8\x10\x40\xdc\xfe\xc4\xf8\xe9\x75\x0a\x6b\xb1\x9c\xb7\x37\x10\xd5\xb6\xa3\x70\x14\x82\x2b\x4b\xc0\x3c\x0a\xd8\xd3\x50\x89\x6f\x67\x36\xcf\x1d\x8a\xc3\x81\xad\x3c\x8b\xac\x72\x0e\x66\x39\x09\xfb\x08\x91\x45\x92\xf3\xbb\x0a\xd3\x07\xac\xb7\x14\xd2\x7d\x8d\x37\x5f\x5d\x02\xc4\x01\x61\xf1\x03\x3c\x4b\x3e\x51\xe3\xb6\xbd\x84\xc0\x46\x19\x8d\xd2\xc0\xc4\x9d\x26\x53\xc6\xc7\x95\x8d\x95\xc4\xf9\x6e\x8a\x70\xf0\x7b\x6f\xea\xd2\xa4\x0c\xf5\x3b\x56\xc8\x85\x19\x3f\x9a\xe3\x2a\xc4\xbf\x07\xb7\xed\x98\xe1\xcb\x68\x0b\xd9\xe8\x69\x35\xde\x7d\xb9\x66\x34\x0f\x1d\x6a\xc7\x49\xd7\x46\x2d\x3d\xa2\x43\xbf\x2e\xb3\x3b\xca\x41\xd8\x74\x68\xc6\x5c\x50\x95\xd1\x26\x0f\xd8\xf8\xd7\x64\x9c\xe0\x1b\x4f\xa8\x66\xb9\x3d\x96\xdb\x18\x23\x45\xc2\x65\x52\xa1\x84\xaf\x77\x03\x5e\x6e\x47\xe1\x60\x88\xde\x0d\x0c\xef\x15\x45\x43\x79\xa5\xd6\x12\x7b\x61\xb6\x9d\x25\x45\xf9\x1b\xce\xf3\x00\xdd\x2b\xf4\xe8\x4d\xe4\xa7\x61\x4c\xa9\x48\x22\x1a\x6d\x30\x25\xdc\x94\xe2\x13\xcf\xd4\xcf\xaa\x44\xd3\x4a\x09\x1d\x05\x4e\x11\xd8\xa3\x67\x06\x70\xee\x5d\x46\x54\xf2\x99\xe2\x0a\x77\x13\xef\x60\x90\x11\xd9\x48\x3f\x5b\x76\xa5\xb2\x2c\x62\x9b\x3d\x4d\x45\x1d\xa1\xf1\xa0\x35\x82\x26\xdb\x03\x44\xc1\x98\xb6\xda\x41\xd8\x4e\x96\x4b\xa3\x55\x26\x08\x0d\xba\x35\x24\xdf\xeb\x8a\xd5\x67\x87\x02\x2f\x33\x50\x10\xf5\x4e\xa9\xa8\x38\xb2\xb3\xd2\x86\xe0\x69\xfc\xa3\x89\xea\xf1\x3d\x08\xfc\x0d\xdc\x99\x28\x35\x7d\xae\xfa\x0b\x0d\x1a\x45\x96\xce\xb1\x68\xa1\xc3\x27\xd5\x08\x60\x19\xa8\xee\x56\xc5\x2f\x2e\xad\x23\xfd\x7f\x86\x47\x90\xd1\xdf\xbd\xa4\x14\xd8\xae\x11\xcb\x9a\x2a\xd0\x09\x29\xcd\x35\xa5\xa3\xbd\x17\xca\x5d\xd2\x92\xd9\x6a\xfc\x0f\x1d\x6a\x87\x71\x2f\xb5\x26\x83\xbf\xd6\x29\x8a\xe4\x1b\x7e\x2d\x0f\xd2\x70\x14\xad\x2a\x37\xf4\x0d\xe5\x86\xbe\x31\xf9\x8c\x82\x1a\xd2\x77\x86\xf1\x20\x02\xa0\x84\xe7\x3a\x15\xa3\xf2\x57\x27\x8a\xe8\x21\x36\xd1\x6a\x16\x66\x20\xda\xc6\x96\xfe\x28\x50\x63\x9e\x1f\x55\x7a\x21\xa1\x8d\x77\xf8\x0a\x12\x16\x22\xcf\x23\xe2\x65\x2a\x91\x00\x59\x23\x5c\xb7\x90\x2d\xa1\x95\x25\xac\x89\xf2\x21\x5a\x0c\xac\xa8\x41\x0f\x19\xf6\x83\xcb\xc4\x78\xa1\xb7\x15\xd0\x7d\x9c\x26\x3d\x9b\x95\xb7\x88\xfc\x41\x64\x8d\x69\x91\xc2\xd7\x9e\x23\x6b\x85\xba\x09\xf8\x27\x50\x61\x19\x4e\xbc\x3f\x3e\x17\x3c\xad\xc2\x68\x33\x18\x08\xf5\x1b\x52\xeb\x1f\xa8\x34\xfb\x07\x6a\x6e\xb4\x88\xfb\x36\xcd\xcd\x52\x18\x0f\x08\x40\xc6\x93\x00\x81\xe7\x06\x44\x33\x50\x04\x1a\x7c\x9b\xe4\x84\x2a\x8a\xa7\x61\x2f\xd9\xa5\x02\x90\x1b\x5a\x3f\xeb\x8c\x42\xff\x30\x0d\x8d\x70\x7a\x28\xa6\xda\x3b\x4a\x4c\xeb\xa2\x9e\xfb\xdf\x08\x7e\xa2\x52\x56\x4c\xed\xd0\xc6\x59\x99\x8f\xd0\x57\x39\x11\xaa\x72\x87\xf1\x49\x53\x73\x65\x1c\x99\x30\xce\xc3\x45\x19\x88\x66\x6e\x62\x05\xf8\xaa\x8f\x3f\x1c\x3a\xb4\xd0\xee\x27\x2b\xf1\x8a\x49\x81\x76\xc5\x8a\x7b\x87\x9e\x08\x1f\xd7\xda\xfb\x84\xa6\x05\x74\xc7\x51\x42\xbb\xa7\xaa\x66\x2d\xfc\x6e\xc8\x00\x23\xf6\x2f\x68\x5b\xc7\xd7\x47\xb6\xad\xed\x57\xf8\x9b\x24\x47\x76\x84\x7f\x3b\xad\x48\x78\x4f\x07\xfe\xef\x7a\x74\xbd\xce\x13\x9d\xd3\x9e\xe8\x9c\xcb\x00\x53\xb3\x5a\x86\x91\x53\xae\x84\x75\x15\x71\x81\xd4\x68\x55\xb3\x45\xcf\x84\x0e\xc2\x34\x02\x2e\x0c\x7f\xf8\x43\x35\x06\x80\x2d\x24\x4c\x0e\x5b\xab\x40\xa5\xbb\x28\x62\x74\x4e\x6d\x9f\xab\x40\x4a\xd1\xc4\x0b\x7d\x6c\xc5\xe7\x1c\x99\x99\x6b\xc7\x56\x23\xf5\xd6\xd5\x8b\xd3\x8c\x95\x0b\x2f\x1c\xd4\x25\x17\xad\x4d\xb6\xae\x9e\x50\x97\xd8\x72\x17\xe6\x9d\xe2\xa2\x57\x2e\xaf\x17\xa1\xca\xc0\xd6\x74\x93\x22\xa7\xd9\x75\x94\x22\xde\x9e\xf8\x7e\xc5\x34\x42\x5c\xb8\x01\x6c\x17\x07\x5c\x39\xe8\x01\x35\x3e\x5b\x31\x59\x96\xa4\xb9\x1b\x54\x73\x5c\x46\x6e\x75\x9c\xd2\x72\xa3\x97\xd4\x70\x75\x6a\xe2\x81\xdd\xa1\x5a\x7b\x57\x55\xaf\xe1\xbb\x81\x42\x32\x4e\xbc\xae\xd6\x36\x52\xed\x62\x89\x17\xa5\xc3\x6a\xa3\xe4\x2b\x85\x8d\xf3\x68\x75\xaa\x82\x4d\x2c\x3f\x09\x36\x86\x5b\x9a\x88\xa6\x5e\x55\x9f\x5f\x98\x6f\xf7\x6d\xd6\x4b\xc3\x2e\x82\x45\xaf\x49\x43\xaf\x53\x64\x07\x55\xa8\x1b\xda\x1d\x70\x43\xc0\x26\xa1\x92\xb7\x09\xda\x45\x6e\xe5\x4f\x7c\x7b\xfa\x72\xa0\x56\x6e\xab\xe3\x93\x43\x4b\xa3\xd8\xe1\x32\xe4\xe3\xf1\x3b\x53\x6b\x1e\xee\x7c\x1f\x81\x3a\xf2\x5d\x66\x58\xe0\x93\xc0\x0b\x9c\x1e\x83\x99\x82\x69\x3a\xa1\x44\x2e\x9f\xa6\xe2\xb0\x60\x2e\xf6\x29\x91\x92\xc1\xce\xd6\x0b\xbe\x58\x4f\x3c\x58\xa8\x48\x63\xa2\x87\xfb\x3c\xe4\x50\xf9\xb5\xd2\x1a\x50\xcc\xbb\xf2\x38\xbf\xe3\x66\xdd\x16\xa3\xd5\x9d\xe5\x45\xc1\xf8\x7d\x4c\xd7\x21\x55\xe1\x4a\x3c\x59\xae\x32\xa7\xec\xe2\x45\x30\xef\x2b\x9a\xc2\xd3\xba\x9e\xd6\x2f\x7a\xd4\x26\x99\x52\x28\xe5\xab\x0a\xcf\x7b\x3d\x50\x3c\xbb\xdb\xd6\x7c\x62\x3f\xb0\xe9\xc8\xc4\xd9\x2e\xbc\x2a\xac\xa8\xfd\x64\x94\x00\x15\x02\xd4\x00\x35\xac\xaf\xc3\x53\x21\x33\x40\x70\x84\x3f\xba\x35\x51\x9d\xa8\xa7\x3a\x8a\x77\xf1\x59\xd7\x0d\x5e\xb6\x43\xaf\x04\x2f\xc4\xc8\xe5\x77\x0b\xcd\xe1\x53\x6e\x90\x2b\x4b\xa2\x65\xb1\xa7\xb8\xfc\x93\x2a\x12\x3b\xe9\x20\x7a\x7d\xdb\x2b\x13\x12\x36\x2f\x28\x51\x9d\x54\xc3\xd8\x27\x6b\x66\xfe\xe8\x51\xe2\x87\x2b\x6c\xdc\x03\x8a\x1a\x86\x00\x82\xb5\xb8\x49\xb4\x6e\x11\x22\xbd\xa7\x94\x70\x2f\xd7\x8c\x9c\x60\x26\xb2\xdc\xa6\x11\xe9\x5c\x7b\x19\xff\x9d\x65\xb8\xf8\xe8\x97\xd1\x35\x80\xd9\x3e\xaf\xd5\xe6\xae\x2b\xe4\x5f\xd6\xb3\xcc\xc3\x01\x33\x0b\x41\x2b\x3e\x6e\xea\x60\x67\x39\xbc\x88\xd3\xe4\xdc\x06\xb2\x65\x3e\xe9\x3c\xad\xb0\xbd\xc9\x78\x4c\xe1\x81\xab\x69\xa0\xdb\x2d\xcd\x83\x9f\xfe\x84\x7b\xb2\xc7\xf2\xd4\x50\xe4\x2d\x18\x05\x29\xe1\xd1\x4d\xf0\x89\xb2\xc6\x7f\xeb\x6f\xfe\x2d\x78\x5b\x01\xa4\x95\xfb\x42\x08\xca\x7d\xbc\x62\x7a\x79\x61\xa2\x68\x15\x84\x1c\xc2\x9b\x57\x3e\x7d\xd4\xad\xcf\xa0\xf9\x25\xd5\xbe\x96\x26\x8a\x2e\xed\x0c\x7a\x4f\xdf\xc6\x06\x41\x98\x74\x1d\x31\x9b\x23\x8d\x75\xf8\xdc\xcb\x2e\x19\x29\xc6\x59\x6e\xc2\x94\x13\x31\x04\x66\x67\x95\x46\x34\x18\x8e\x59\xf5\xa4\x2e\x75\x36\x7b\xb8\x6d\xc2\x96\x2a\x01\x5c\xa6\xc8\x4c\x3a\x14\x0d\x9d\x8c\x30\xce\x99\xff\x79\xde\xf1\x45\xfb\x75\xff\x51\xf0\x8c\x1a\x03\x1c\x8d\x4d\x1c\xda\xec\xd3\xbe\xeb\xb8\x0b\x5e\x06\x29\x32\x74\x72\xd0\x77\x9d\xa6\xde\x37\xf7\xdf\xc8\xf2\x30\xc0\x1f\x4f\x0d\xfe\x0a\x94\x0c\x58\x86\x7f\x82\xa7\x26\x2c\x89\xd4\x60\xc7\xd2\x3e\x8e\x26\x1f\xcf\x28\x72\xfe\x25\x3b\x9b\x52\x28\xac\x5a\xf0\xee\x01\xb7\xb9\xab\xa3\x1a\xb8\x90\xda\x93\x5e\x20\x19\x06\x44\x10\x17\x90\xc2\xc0\x56\x12\x41\x85\x13\xe4\x55\x3c\xe8\xbc\x1b\xa8\xc9\xf8\xaf\x9f\x71\x56\x22\x4f\x4d\xe6\x31\x23\x08\xf2\xce\x29\x09\xd2\x73\x0d\x74\x1d\xed\x71\x6a\x17\x39\xff\x75\x84\x10\x98\x36\x14\xd8\x4a\x23\x9d\x48\xd2\x0b\x6d\xbe\xba\x43\x8d\xcc\xb3\x98\xb1\xab\xa9\xba\x61\x2d\x80\xac\xa5\x73\xad\x25\xec\xb5\xb6\x69\xd7\x2e\xb2\xaa\xc6\x3c\x1b\x0d\x26\x60\xe7\x13\xb5\x0f\xc6\x36\x2d\x96\x43\x13\x4f\x29\x44\xe7\x6d\x45\x0e\xf6\x63\xbc\x38\x61\x1d\x53\x15\x7a\xd4\x6b\x76\x79\xb0\x11\x46\x40\x30\x3a\xfc\x1d\x7c\x0c\xed\x40\x58\x68\x94\xe4\xe1\x31\xb1\x61\x3e\x40\xc6\x8e\xc8\xfc\x3c\xf5\x60\x61\xb9\xdf\xab\x2d\xe5\x83\x04\xe7\xcb\x23\xc6\x19\x32\x31\x1b\x5d\xa7\x90\xb4\x35\xe8\x19\x11\x8a\x74\x61\x86\x35\x1a\x18\xb0\xc9\x27\x0a\x82\x89\xc8\x39\x49\xb3\xa7\xfc\x18\xd8\x66\xa0\xc6\xff\xcf\xa2\xf7\x8c\x65\xf5\xbb\x9c\x67\xe3\xa6\x4f\x2b\x55\xe4\x29\xf4\x74\xdd\xd3\x38\x38\xe7\xfa\xbb\xa5\x61\x41\x98\x70\x6b\xa2\xf4\x18\x9e\x40\xbd\x5a\xa0\x92\xe5\x5a\xdb\x04\x5d\xa4\x43\x52\x3a\x9a\xb7\xab\x41\xeb\x25\xcf\xce\x4e\x8f\x01\x49\xfc\xf7\x03\x35\xd7\xf5\x03\x55\xa1\x0e\x47\xe3\x24\xcd\x89\x0b\xba\xa5\x95\xbe\xb5\x64\xb5\xc2\x4f\x14\x69\x6a\xe3\x7c\x9f\xb2\xab\x27\x54\xc6\xfe\x64\x47\xdd\xdc\x03\x4d\x83\x0d\x0a\x46\x14\x3a\xce\x05\x7e\xe0\xf3\x07\xc8\x82\xe5\x11\xd0\x46\x42\x8d\x99\x87\xc6\x59\xb9\x14\x71\x85\x23\x56\x7b\xc9\xe9\x30\xf2\x38\x2d\x92\xe0\xaf\xd7\x32\x2c\x70\xf2\x13\x3a\x3e\xcc\x5b\x15\x48\x87\xcf\x81\x37\x82\x67\x54\x66\xdf\x27\xb6\x22\x24\x2a\xd2\xa2\x55\x04\xea\x1b\x2a\xe7\x58\xb5\x26\xcd\x3e\x55\xde\x0d\x16\xd8\x7d\xea\x9b\xc1\x35\x5f\x24\x93\x87\x1f\x78\xb6\xa3\xca\x63\x81\x1f\x0b\xd8\x8e\xc5\xe0\xaa\x31\xa5\x91\x83\xc1\xe7\x5e\x29\x1b\xa9\x89\x87\x1b\xdc\x20\x4b\xc6\x3f\xa1\x46\x12\xd7\xf1\xb8\x58\x44\x46\x33\x21\xf0\x08\xba\xe8\x60\x6d\xdd\x35\x65\xb0\x9c\x96\xf6\x68\xca\x8f\x7e\x9e\x98\xf8\x61\xe2\x8f\x35\x87\x89\x73\x52\x84\x09\x8c\xa4\x4d\x8f\x08\x11\xad\x0c\x3e\x6e\xe2\x6b\x8a\x6d\x4e\xba\x81\x2d\x55\x66\xdb\x50\x65\xb6\x8d\xc9\x9e\x90\xec\xe3\x2f\xb4\x8f\x3c\x49\x17\x4d\xa8\xc4\x7f\xf6\x57\xb9\x44\x84\x17\xc0\x13\xc8\x0e\xe9\x53\x7e\x17\x3a\x2f\xc0\x7a\x21\x3c\x7e\x5b\xe9\x47\x6e\x5f\x53\xf8\xca\xab\x0a\xaa\xbb\x8b\x0c\x8d\xd0\xf5\xd3\x4a\x74\x35\x4c\x3f\x8d\xff\x70\xe2\x01\x3f\xbc\x19\x79\x21\x13\x73\xa0\x8c\x9c\xd0\xab\x94\x04\xab\x61\x24\x64\x60\x46\x08\x9c\x14\x58\xc0\xfb\xe8\x86\xb1\xf8\xa1\x89\xa2\x64\xc5\x5a\xb4\x6f\xe4\xb9\xd2\xa7\xe4\x81\x37\xa1\xdc\x99\x91\x8e\xab\xe4\x5c\x9d\x81\xa9\x95\x52\x4d\x03\x9f\x42\x99\xfb\xf5\x42\x23\x40\x05\x11\xeb\xf6\x40\xa9\x47\x81\xc6\x19\xf8\x64\xa5\x0e\x73\x99\x9b\xf3\xbb\x68\x4a\x89\xdf\x3e\x52\x14\x24\xac\xf5\x8c\xc6\xfb\xd9\x5a\xdd\xba\x5c\x94\x2b\x26\xce\x69\x0a\x02\xdb\x63\x57\x47\x09\xbc\xdc\x9c\x54\x29\xf6\xcb\xef\x12\xc4\x81\xaf\x68\x27\xe3\x71\x92\xc9\x1a\x05\x40\x94\xcb\x07\x7c\x52\xfb\xdd\xcf\xb5\x47\x26\x5d\x0e\x63\x74\xb7\x45\x52\x48\xb9\x84\xf3\xb5\xb6\xc4\xc1\xb9\xf6\x28\xec\xe7\xc9\x4a\xbc\x53\x5d\x13\x44\x4e\xf1\xb4\x20\x31\x87\x14\xac\xc2\x18\x02\xa0\xa1\x9b\xb4\x71\x10\xfc\x8f\xb7\xb6\x7f\x0e\xcc\xb6\xe7\xe6\x5e\x54\x0c\xf0\x3c\x06\xc4\x27\x8a\x7d\x2e\x2b\xe2\xbe\x59\x05\x3c\x19\x81\xcc\x75\x84\x5b\x00\x35\x9f\x53\xa2\xac\xd7\x69\x59\xc3\x88\xb3\x9a\x22\x50\x54\xff\x4a\x81\x45\xf3\x62\x94\x48\x28\x0a\xbb\x4c\x24\x29\x9b\xd7\x14\xe8\xf6\xcc\x64\xaf\x7b\xe4\xcb\xcf\xb7\x7c\xd3\x07\x5d\x72\xe9\x73\xfa\x26\x4b\x3f\x1c\xc9\x0c\x06\x36\x0f\x27\x7c\x7c\x32\xd1\x15\xa3\x68\xa4\x74\xa6\xb9\x1c\x23\x85\xdb\x06\x72\xec\x57\x92\xc8\x01\xa3\x58\x8a\x3d\x50\x55\x90\x73\x9a\x16\xad\xf6\xf9\x97\x48\x6c\x2c\xb3\xcc\x9d\x2e\xea\x2b\x2d\x25\x4d\xfd\xac\xcb\xfb\x48\x7b\xd4\xb3\x83\x35\xa9\x27\xaa\x26\x49\x0c\x22\x5c\xf7\xf0\x81\x69\xc0\xeb\xbb\xa7\x40\xcb\x7f\x54\xdb\x9b\x0b\x33\x0b\x65\xf0\x51\x66\x99\xbc\xa5\x99\x34\xa8\x42\x20\xb4\xd5\xef\x1d\xfe\x32\x05\xeb\x36\xce\x88\x79\xef\x88\xcb\xdc\x03\x5f\xc5\x38\x5b\xfb\xd4\xa1\x43\x8a\x5e\x81\x9e\x3b\x93\x28\x54\x19\x15\x7c\x22\xf5\xa5\x83\x87\xb5\xb8\x93\x96\x81\xbc\xe4\x38\x09\x6c\x4c\x79\x43\x96\x89\x39\x70\xbc\x10\xae\xb0\xc4\x75\x52\x74\x12\xee\xd6\xbc\xf8\xd1\xa3\xed\x5e\x91\xe5\xc9\x28\x7c\xd5\xa2\x30\x08\x57\xc0\xc2\x46\x28\x33\xfd\xe6\x44\x41\x5a\x3d\x23\x89\x3d\x36\x8e\x92\xbe\xac\x09\xb4\xd9\x76\xc3\x85\x20\xd2\x05\x0b\x9a\x64\x1d\xf5\xae\xe3\x6c\x99\x07\x26\xa2\x04\x2e\x68\x70\x4f\x73\xf4\xc9\xb9\x76\x11\x2f\x86\x51\x24\x77\x0d\x73\xf9\x1b\x74\xd7\xac\xe9\xa5\x99\xf6\xd7\x27\x5b\x34\x4c\x3f\xff\x77\xdb\x07\xe7\x08\xc3\x20\x8a\xe6\x6a\xf8\x87\x55\x17\x04\x54\xef\x27\x67\x3f\x02\xf4\x95\xff\x0a\x01\xaa\x34\x1c\x9a\xc6\xd1\xbb\x49\x3e\x9c\x2e\x43\x0a\x38\xbe\x07\xd5\x61\x86\x96\x6b\xef\xfc\xae\x2a\xe2\x11\xb7\xc3\x5f\x77\x6d\x82\x2c\x37\x83\xc8\x94\x2b\x5c\x4b\x1a\xdc\xd6\xa5\xd3\xdb\x9a\xd0\x26\x89\xbb\x86\x9f\x26\xbb\x5e\xfc\xa9\xf8\xe1\xad\x6f\x9f\x2e\xd3\xc6\xbd\xa1\xd3\x35\x45\x36\xf0\x3b\x8a\x87\xfb\x77\x9a\x26\x3c\xb2\x61\xb2\x22\xe9\xd9\x26\x75\x96\x36\x2f\x81\x90\x98\x97\xef\xcf\x3e\xed\xc7\x02\xde\x0c\x3c\x74\xf3\x84\x96\x8e\x6e\xad\x95\x5e\x1e\x91\xf3\x23\x18\x13\x56\x90\xa1\x6c\x04\xfe\xec\x9c\xa6\x26\x9e\xe2\x78\x05\x41\xe1\x8d\x40\xa5\x23\xdb\x81\x4d\x47\x01\xf4\x22\x22\x3e\x89\x4b\xe8\xc9\xc3\xb6\xdd\x9e\xa8\x87\xf7\x78\xa2\xf8\x20\x4f\x29\x36\x15\xc4\x7f\x48\x9e\x31\xe9\x84\xf7\xb3\xa7\xb3\x35\xf8\x9a\xff\xf2\x8b\x6d\xb3\x6c\x53\xc3\xc8\x3f\x47\x1e\xe4\x58\xf7\x2e\xd5\x1c\xdb\xd1\xa3\xed\x41\x9a\x10\xee\xad\x7c\x4a\x18\x10\x81\xd5\xe1\xe3\x26\x5e\x26\x6a\xdc\x80\x47\x63\x6e\x8e\x7b\x74\x98\xfa\xc1\xb0\xd2\x0d\xba\x7e\xa7\x9d\x52\xde\x18\xfe\x68\xdc\xc0\x96\xf0\x85\xf6\xd0\x2c\xc3\x7c\x31\x8c\x08\x0b\x5a\x30\x45\xba\x69\x16\xf7\x93\xe9\xad\x24\x2c\x0c\xd5\xb8\xaf\x95\x66\x29\x66\xe3\xff\xef\x7a\x0e\xfd\x22\x0d\x53\xb6\xe4\xa8\x12\xf0\x0b\xe5\x93\x60\x2b\x06\xee\x73\xed\x95\xec\x95\x96\xaa\x86\x5f\x50\xfd\xaf\x3a\x11\xc0\xc2\x4c\x3b\xb2\x59\x26\x94\x0e\x5c\xd4\x09\x54\xc0\x7f\xd6\xcd\x8d\x74\x4d\x14\xad\x0e\x93\x44\xcc\x7d\x93\xdc\x67\x13\xe9\xdd\xd0\x9a\x65\x3d\xc4\x7a\x7c\xa2\x98\x41\x8e\xab\xf1\xdf\xbe\x19\x8d\xf1\xd5\x52\x35\x55\x44\xe6\x57\x34\x59\x68\x18\x9b\x68\x17\xfd\x25\x1e\xd8\xdd\xc0\x37\xa2\x39\xf1\xc2\xab\x38\x1f\xa8\x47\xb1\x63\x8d\x96\x3f\xb3\xdf\x62\x77\xed\x5b\xf3\x93\x49\x7b\x55\xc1\xbc\x6b\xa3\x28\x4b\x8a\x1c\x6c\x9e\x42\x96\x46\x3f\x29\x6c\x69\xde\xdb\xfc\xed\xbf\xfd\x0b\x2d\x15\x89\xac\x2b\xc9\x98\xf5\xe0\x19\x85\x7b\x5c\xb4\x71\x9f\x18\x14\x94\x66\x6f\x4b\x51\xd3\x28\x1c\x69\x6a\x4d\x1e\x2e\xdb\x29\xcd\xb2\x4a\x4b\x54\x60\x9e\x0a\xe6\x7a\x56\xa9\xdb\x0c\x9f\xaf\x4c\xdb\x70\x8a\x28\xfc\x9d\x6e\x1e\x8a\xd9\xa8\x7d\x6c\x77\x55\x83\x60\xaf\xaa\x36\xf9\x72\x98\xe6\x85\xc8\x1f\xa2\xc4\xb1\x01\xa4\x3d\x9f\x34\xb8\xa6\x97\xdb\xfd\x22\xee\x19\xcc\x1b\x34\xf2\x93\xd6\x63\xf3\x17\xdb\x2b\xa1\x8d\xfa\xae\x6c\xe5\x18\x54\x3d\x9b\x6a\x0d\x61\x2d\x0e\x2d\x2e\x7a\x91\x6c\x6d\x44\x44\xf7\x55\xd1\xf9\x35\xc5\x32\xfe\xbe\x6e\x29\xdc\x56\xd8\x3c\x28\x37\xc2\x89\x4b\x61\x56\xf1\xd6\x7e\x5f\x01\x60\x6e\xaa\x81\xb7\xd4\x66\x79\x1a\xf6\x40\xed\x5d\x2e\x01\x46\xad\x56\x10\xac\x4d\x02\xe9\xa9\xed\x26\x45\xcc\x94\x17\x6e\x98\xc1\x4d\xab\xb2\x4e\x04\xc2\x89\xb7\xe8\xc7\x71\xcd\xe7\x55\x1b\x79\x98\x64\x39\x26\x6f\x61\xaa\x7e\x99\xf6\xba\x5b\x2c\x8e\xcf\xe8\x87\xf4\x30\xf8\x58\xd3\x67\xeb\x4d\x95\xa4\x4b\x76\x84\xa6\x94\x2a\xbb\xb9\x1a\x9c\x26\xc9\xb6\x8b\x7b\x2b\xe6\xae\xfc\x55\xa9\x85\xd3\x43\x00\x62\x66\xfb\x9a\xca\x24\x91\x9a\xe1\xe5\xdc\x22\xbb\x47\xa5\xbf\x77\xff\x03\x2a\xbc\xc1\x18\xfc\x64\x47\xd1\x8f\x6e\xe2\xf1\xf3\x7c\x26\x3d\x01\x6c\xe3\x13\x70\x48\x88\x57\x1f\x6b\xf5\xbc\x57\x42\x58\x3e\xcc\xb6\x5f\xa2\x42\x07\x1f\x37\x89\x92\x98\x81\x83\xab\x62\xb3\xde\xa2\xcd\x28\x9c\xfe\x2d\x25\x54\x57\xc7\xee\xbd\xdc\xee\x0d\x4d\x46\xd8\x89\xf2\x8e\xb1\x64\xee\x2a\xee\xd1\xbb\x6a\xee\x7d\x64\x7a\xbd\x61\x68\xd2\x24\x32\xbc\x3b\xdd\x88\x89\x07\x9c\x5c\xf1\x83\x14\xfd\x51\x98\x7b\xb6\x78\xce\x6d\x2b\x79\xae\x7f\x6f\xdd\x22\x1d\x64\x9a\x80\x66\xa2\xca\xea\x95\x11\x2c\x6b\x96\xf6\x55\xd4\x4b\xa6\xbc\x6a\x30\x06\x11\x91\x8c\x4c\xad\xf9\x4e\x2f\xf0\x68\xa8\x3c\x3f\x0c\x54\x15\xed\x3c\xd0\x54\x4e\x19\xe6\xe0\x9c\xb4\x28\x03\xc5\x90\x3a\xe1\x89\x1a\xfe\x33\x45\xbe\x7b\x5e\xa3\x01\x2f\x37\xf8\xd8\xf6\x62\x92\xe6\xc3\x29\x1f\x41\x02\xdc\x87\x0d\x01\x05\x6e\x61\x3f\xff\x49\x9f\x97\x45\xe5\x3b\x21\x5e\xef\x30\x91\x69\x48\x19\x96\x50\x83\x13\x4d\x52\x4c\x59\x31\x1a\x85\xf9\x94\x67\xc1\xfb\xe1\x8f\x2a\xec\x51\x2d\xc7\x2c\x7d\x4a\xef\x41\x1b\x8d\x49\x14\x84\x05\x85\xb4\x7c\xd4\xc7\x13\x95\x06\x7c\xcc\xa5\x57\x94\xcb\xfe\x3e\x42\x2c\xa7\x70\xec\x65\xa3\x2f\xa1\x60\xe6\x74\x90\x9d\x10\xc8\x99\xc0\xcb\x6b\x32\x0b\x28\x62\x3c\xf8\x1b\xd8\x48\x46\x3b\xa1\x06\x09\x1c\x32\xf2\xf8\xef\x6b\x41\x86\x53\x81\x27\xc2\xd8\xee\xda\x06\x51\x11\xf7\x86\x96\xa7\xc4\x50\x62\x7a\x5b\x29\xc1\xbe\x5d\xb3\x63\x87\x0e\xb5\x97\x6d\x1a\xe6\xa9\x01\x59\x00\x0b\x96\xe0\xae\x45\xbd\xc4\x35\x25\x44\x5f\x51\xe1\xc3\x51\x79\xe1\x63\xc7\x54\x61\xc6\xe3\x34\x31\xbd\xa1\xb0\xa8\x02\x1f\xc1\x23\xeb\x52\xd9\x2f\x1f\x39\x4a\x1f\x8d\xb2\xed\x34\x24\x22\x44\x0c\x42\x96\x4a\x9d\x1b\xa1\x51\xf5\x76\xe3\xbf\x3c\xf0\xc5\x29\x95\x20\x6e\x5b\x53\xa9\xc6\x47\x64\xb6\xb0\x2f\xa6\x3b\xcf\x54\x33\xa1\xb9\xb9\xf6\xcf\xee\x6a\x69\x29\xf8\x83\x73\xdc\x2a\xe0\xc0\x03\xfd\x47\xee\xc7\x21\x3a\xbd\xa8\x6c\xc4\xfb\x13\xa5\x13\xc4\xfb\x91\x4f\x9a\x64\xb0\xa8\x1b\xe6\x99\xc8\xb0\xa2\xa5\x02\xf1\xa4\x02\xc3\x47\x51\xb2\xd2\xf2\x1d\x2f\x30\x02\xf2\xb1\x9b\x89\x1e\xd9\x34\x0d\xa3\x68\xda\x13\x71\xdc\x57\xc3\xf6\xf7\x70\x03\x8e\xe9\xe4\x88\x60\x1c\xde\x6f\xa0\x06\x29\x33\x9a\x71\x85\x72\xef\x47\x2a\xae\xf9\x51\x2d\x42\xf8\x39\xa2\x94\x1d\x87\x29\xcf\x53\xa0\x5a\x80\xd1\x1b\x3e\xae\x7d\xe6\xa5\xd9\xc3\xed\xae\x1d\x84\x31\xd3\xd0\x0b\x63\x3f\xbd\x2c\xa1\x0e\xf0\x15\x9a\xd8\xae\x64\x7b\xfd\xe8\xd9\x4e\x74\x23\x5c\x96\xec\xe0\x70\x9c\x8a\x62\xef\x9d\x09\x54\xaf\xe4\x0c\x2d\x4e\x40\x06\xde\x98\xf8\x82\x2c\x86\x31\xb0\x8c\xb8\xcc\x2b\x44\xc7\xe5\x53\xe2\x6f\xc2\x26\xc0\xcd\x7c\xb7\xc9\xdc\xa4\xb6\x6b\xa3\xff\x0f\x31\xb6\x26\x1d\x49\x4e\x62\xb8\xff\x2f\xcd\x5a\x5a\x43\x7e\xe6\xd6\x35\x45\x4d\x37\xb2\x7b\x5a\x8e\x46\xec\xfa\xc4\x03\xa5\x79\x62\x0e\x8f\x03\xb5\x17\x74\xe2\xee\x2a\x6d\x99\x7b\xda\x7c\x6d\xeb\xb4\x5e\x98\x75\x4f\x00\xa6\x0c\xff\x72\x92\x9e\x8d\x8c\x6c\x37\xf0\x71\xd9\x63\xe3\x24\xcd\x2d\xa6\xc5\x39\x8a\x51\x7c\x0b\xe7\x1b\x39\x1c\x57\x92\x74\x09\xb1\x8d\xa0\xcd\xca\x87\x8b\x68\x80\xc9\x71\x5d\xb6\xeb\x10\x3d\xd7\x27\x8a\x1b\x41\x73\xfe\xa7\x61\xb6\x94\x11\x68\xdc\x09\x2e\x1f\x3a\x24\xf5\x1e\x8a\x9a\x50\xa9\x3f\x85\xe5\x84\x3d\xcc\xdd\x26\x3e\x51\xf9\xe1\x09\x37\xc4\x95\x9a\xe5\xaa\xde\x36\x13\xbf\xcb\xaa\xf9\x24\x5d\xe5\xa4\x97\x33\xf8\x19\x4b\xe7\x9a\x96\xa7\xbd\xd6\x44\x86\x12\x59\x44\xeb\xc8\x86\xce\x29\x01\xe2\x73\x9f\x58\xe7\x09\xe3\xac\x48\x6d\x5a\x51\x52\xab\x90\xc1\x3e\xd6\x23\xa7\x45\x9a\x8c\xed\xbe\xf2\x7b\x61\xfa\xce\x2b\x8c\xe9\x3f\xc2\x22\xc3\xda\xfe\xd6\x44\x8d\xb6\x9e\x9d\x54\x68\xc1\xbc\x2a\x08\xcb\x35\xa2\x92\xfe\x98\x57\x0c\x30\x3e\x17\x61\x0f\x91\x3f\x70\x20\x00\xab\xf3\x7f\x68\xb9\x2a\x2d\x77\x72\x51\x75\x88\x33\x6b\x22\xee\x83\x61\xd5\x83\xc6\x92\x8f\x55\x6f\x34\xcb\xd3\x84\x28\x21\xa7\xca\x80\x46\x10\x54\x2d\xa7\xc5\x77\x9e\x56\x2e\x7c\xfd\x7d\x47\x0a\x17\xc6\x79\x9a\xf4\x8b\x9e\x8a\x20\x64\xd2\x56\x81\xa4\xbc\xca\x4d\x9a\xac\x9a\x28\xc7\xc0\xb3\x83\x46\x39\x9b\x7a\xa2\x99\xab\x72\x31\xcc\x63\x9b\x65\x2d\x72\x49\x32\x4e\xa2\x46\x4b\x54\xe9\x7c\x31\x4c\x47\x9c\x98\x20\x14\x01\x2b\x1a\x6a\xec\x37\x75\x7d\xc7\xeb\x80\xae\x20\x4d\x2f\xaf\x5d\x51\x19\xca\x5c\x63\x5d\xff\xf8\xc8\x0c\x32\x4e\x57\x4e\x74\xb3\xc5\x8e\x6a\xef\x4a\x85\xf7\x87\x68\x3e\x2c\x0b\x44\x0a\x3d\x81\xe6\x2a\x68\xcc\xf0\xfa\x76\x1c\x59\x27\x83\x2b\x7a\xe7\xaa\xa7\xbc\xde\x30\x86\x38\xdf\xee\x87\xd9\x48\x48\xc4\xa4\x69\xf3\xd6\xc4\xaf\xd4\xb7\x3e\x51\xbf\x3c\x0b\x8f\xe5\xab\x53\xad\xd9\xc3\x9b\xd7\xa8\xf1\x01\x48\xd3\x03\x4d\xa1\x72\xae\x0e\x55\xf9\xf2\x8b\x6d\x93\x4d\xf9\xe6\x08\x9a\x0a\x08\x88\x3f\xa2\x35\x23\xef\xd6\x57\x0f\xd1\xd3\x99\x52\x84\x65\x3f\x9c\x28\x52\x88\x93\xea\x49\xfe\x48\xa5\x9d\xc9\xcf\x74\xd3\xd0\xc6\xad\x0a\x48\xba\x82\xa5\x56\x30\x65\xbb\x18\x3a\x39\x60\x16\x56\xa7\xaf\x15\x91\x75\x15\xd2\xfc\xd2\x97\xa6\x34\xbf\x32\x70\x3a\x9c\x96\x75\x14\x7d\xc9\xbd\xc9\x3e\xf7\xfd\x2b\x36\x6f\x95\x0f\xc9\xb1\x0d\x39\x77\xb1\x51\x2b\xc2\x1d\x38\xd0\x1e\xa7\xc9\x72\xd8\xb7\x3b\x7c\x9f\xf4\x91\x62\xec\x3e\x37\xf1\xb9\xe8\x3a\xd9\x4e\x34\x65\xa6\x3a\xaa\x63\x7e\xa5\xc6\x2c\x37\x7b\x98\x98\x03\xa7\x15\x89\xf0\x5d\x85\xc0\xbb\x18\xf8\xdd\x7b\x55\x75\x71\x6e\xbb\x95\x9f\x26\x86\xa3\x3e\xe7\x94\x17\x66\x9c\x5a\x41\x43\x16\x38\xb4\x8b\xf9\x6a\xab\x42\x84\xed\x2b\xe1\x57\x15\xfc\xb3\x5b\x7a\xdf\xac\x6b\xe2\x25\x64\x99\x1c\xe8\x29\x7c\xc8\xf9\x40\xeb\xde\xa5\xcb\x76\xd5\xf6\x77\x68\xf0\x9b\xaa\x7a\x33\xb7\x92\x73\x87\x9e\x74\x09\xbd\x77\x86\xa2\xa8\x42\xcc\x62\xd8\x2d\x6d\x79\xf9\x97\x6e\x6e\xc8\x81\x39\xbf\x3b\xd9\xd2\x9a\x3b\x7a\xb4\x4c\x52\x9f\x52\x02\xae\xdf\x81\xa5\x86\xb9\x03\xa9\xa5\x08\x04\xf8\xb4\xf7\x89\x35\x8f\x66\xfd\x07\x1a\x77\xf3\x1a\xd5\x27\x1d\x35\x59\xe9\x00\x90\xc8\x1d\x27\x21\x2a\xb4\x60\x80\xa0\x40\x66\x7e\x99\x7c\x01\xc2\xf5\x87\x13\x45\x96\xb2\xa7\xa3\xe8\xba\xee\xe8\x06\xdf\xf7\xe8\x86\x50\xd7\xbf\x03\x4a\x3e\xd1\x65\xde\xba\x4e\x9e\x6b\x67\xb9\x1d\xb1\xeb\x95\x26\x18\x3d\x38\xe9\x8e\x3d\xe9\xf1\x8d\x91\x49\x2d\xeb\xc9\x63\x57\x9d\x9c\xa8\xb1\xa5\xb3\x4a\xd8\xf6\x6a\x05\xfa\x53\x33\x93\x47\x8f\xb6\x4d\x37\x4e\xd2\x91\x01\x21\x35\x5e\xfb\x5b\x6a\x09\xbc\xe5\xa9\x0f\xd3\x24\xb7\x99\xe3\xbb\x96\x06\xbc\xee\xc6\x2b\x41\xf7\xd8\x8c\xc2\x6e\x4b\xd5\x72\x2a\x35\xe8\x0b\xc1\xd3\x4a\x9a\x77\xd9\xc6\x84\x03\x39\x32\xd3\x48\x6e\xda\x40\xd6\x18\x93\x46\x99\x82\xd1\x94\xaf\x4c\xd0\x1d\x75\xf0\x38\xb1\x4c\x2a\x0a\xbb\xd7\x03\x3f\x9f\xf8\x7a\x75\x34\x33\x7c\x95\x0b\x1a\xaa\xfe\xe3\xdc\x51\xed\x52\xe6\x17\xe6\xdb\x5d\x9b\xef\x28\x57\x06\xfa\x8a\xef\x4d\x7c\x9b\x0e\x62\x22\x48\x53\xb6\x77\xbc\xfe\xc9\x1f\x4d\xd4\xf0\xf2\x55\x55\xfa\xe8\x25\x59\x4e\xac\x6c\x52\xcf\xfa\x11\x7d\x1b\xde\xde\x34\x61\x98\x90\xfc\xde\xa5\x8e\x08\x82\xb2\x4b\xf4\x2b\x9c\x46\x62\xc9\x20\x26\xdc\x0e\xfc\x27\x0a\x46\xd7\x9a\x50\x5c\x71\x32\x2a\x52\xd3\xd2\x03\x00\x6a\xac\x50\xa7\x60\xc3\xa4\x20\x5a\xe0\x83\x42\x60\x75\x73\xe2\x7b\x15\x37\x6b\xee\xea\xd0\xa1\xf6\x38\x89\xc2\x3c\xec\x85\x26\x56\x13\x10\xeb\x81\x6e\x45\xfa\x09\xfa\xb1\x4d\xb3\x24\x36\xd1\x4e\x65\xc9\x61\x43\x44\x94\x87\xf2\x18\xad\xf0\x04\x4b\xfc\x7d\xc5\xf1\xbb\xa1\xd5\x94\xae\x36\x76\x39\xca\x88\xb0\xa5\x64\xc7\xfe\x78\xe2\x47\x7e\xfe\xb8\x81\xae\x9d\x84\x01\x4d\xaf\x4a\xd2\x78\x91\x7e\x9f\x8f\x15\x66\x8b\x51\x10\x53\xbe\xac\x75\x0f\xa5\x0f\xdc\x0f\xe0\xa4\x82\x8e\xa8\xcf\xb4\xf6\x43\xe9\x9d\x22\x47\xbd\xaf\xe7\xbc\x10\xdf\x4b\x65\xdb\xcf\x03\x40\x49\xae\x35\xb7\x05\xa2\x21\x4d\xf2\x67\x55\xf2\x34\x4a\x8a\xc5\xc8\x0c\x2c\x0a\x42\x08\x04\x2e\x28\x8a\xd4\x07\x74\x5b\x32\x77\xea\x77\xf2\x22\x61\x28\x95\xbd\x5b\x57\x5e\x71\xbd\xee\x48\x67\xdb\x63\x93\x2e\x89\x5b\xe7\x81\x9e\xca\x70\x4f\xc3\x74\x0e\x25\x82\x91\xd7\x63\x85\xf9\x85\x4e\x35\xa2\x0f\x8c\x08\xc0\x90\x3f\xd4\xc3\x33\xc9\x72\x68\xf3\x27\xca\x7f\x64\x35\xd1\x40\x09\x56\x9c\x20\xca\x27\xa9\x5b\x7b\xbf\xfb\x38\xd0\x79\xee\x44\x0d\xaf\x42\x5d\x08\xee\x7c\x27\x76\x90\x6c\x54\xb2\x66\x0e\x78\xec\xfb\x30\xbf\xd2\xc0\xa0\xfe\x62\x3b\x4e\xd2\x7c\x68\x4d\x96\x4f\xf9\x5a\xe6\x3d\xc5\x26\x88\xe1\x10\x21\x80\x57\x73\x64\x68\xa6\xee\x52\x9e\xee\xde\x44\x33\x87\x78\x18\xdc\x15\x72\x49\xae\xb9\x54\xde\x91\xa3\x1a\x71\x2e\xbf\x45\xd1\xb5\x70\x85\x35\x18\xd3\xd4\x46\xab\xd3\x1a\xae\xe1\x67\x11\x6e\x23\x97\xf1\xc4\x3c\x33\x02\xf6\x68\xea\xbc\xf5\x92\x3c\xe7\xde\x1e\x22\xb8\xe3\x2a\x9a\x3b\xae\xe6\x5f\x68\xa7\x84\x20\x70\x3a\x32\xe3\xf8\x14\x94\xd0\xe2\x86\xcb\x48\x97\x93\xb0\xc7\x43\xfd\x08\x8d\x2e\x2a\xaa\xc9\xfd\x1d\x9f\x98\x6c\xea\xf9\xcb\x2b\x4d\x4c\x1e\x79\x6a\xe2\xac\x67\x62\xd3\x97\xaa\x35\x70\x5a\x6c\xe4\xf9\x24\x50\x69\x81\x49\xc7\x34\x54\xa9\x69\x4d\xa6\xd6\xd4\x70\xda\x54\xc7\xcb\x59\xb2\xbf\xe6\x93\x5a\x11\xaf\xf4\x15\x24\x58\x27\xe4\xc1\x22\x06\xa8\xc8\x2b\x7c\x43\xab\x67\xa2\x91\xdb\x0d\x22\x68\xd0\x72\x9a\x22\x28\xcc\x7b\x26\x3c\xdf\xbe\x59\xb6\x71\x61\x41\xa7\x8c\x92\xf5\x63\x35\x38\xb0\x86\x44\x15\xdd\xb3\x6d\x6b\x0d\x82\x0a\x63\x13\xb1\x85\x74\x22\x58\xae\x86\xb3\xde\x80\x98\x26\x29\xd8\x28\x14\x52\x2d\xb7\x46\x15\xeb\x8d\x6e\x1e\x8f\x8a\xd1\x94\xd2\x36\xbb\xa0\xf8\x9d\xae\x29\x21\xa9\xd7\x03\x0d\xe9\xb1\xe9\x60\xb5\xa5\xc4\x99\xee\x21\x6f\xe5\x13\x9d\x48\x13\xbe\x96\xba\x66\x92\x54\x11\x48\x03\xcf\x8c\x39\x6e\xf8\xa4\x92\x6e\x79\x6b\xd7\x1b\x86\xe3\x8c\xc0\x20\xd2\xef\x54\x2e\xe9\xb7\x26\xbe\xd1\x09\x1a\x0f\xfe\xff\x81\x6a\x90\xc2\xb9\xcb\xd8\x77\x03\x8a\x2d\xb5\x34\xca\x42\x4b\xdf\x59\x26\xdf\x5d\x53\xa6\x37\x8c\xed\x38\x9f\xf2\x84\x1e\x1b\xac\x13\x26\x84\xb8\xd4\xb1\x60\xa1\xcc\xc6\xa6\x9c\x3d\x36\x0e\x49\xab\xda\xe1\xc2\x99\xe7\x15\xd7\x7a\x4e\xf1\x2e\x32\x72\x51\x04\x1c\x3f\xe5\xa2\x3e\x3b\x36\x61\x9f\x9c\x9a\x42\xcc\xca\x2c\xcc\x3d\xdd\x96\x54\x7e\xa9\x1b\x25\x09\x0b\x37\xb1\x66\x12\xbc\x19\xec\x2a\x24\xcd\x9d\x98\x92\x17\xfc\x9d\xea\xd4\x31\x29\x58\x3a\xbd\xd0\x72\x9f\x59\x74\xec\xf4\x94\x58\x13\x7b\x7a\x2f\x4a\x32\x71\xdc\x3c\x03\x81\x4c\x44\x06\x22\x9e\x74\xf5\x91\x7e\x98\xda\x1e\x6a\x90\xb0\x81\xb0\x99\x7c\xbc\xa6\x33\xd6\x71\x94\x94\x89\x7b\x69\x83\x91\x7b\x7f\x2f\xf0\x63\x46\xdf\x6b\x12\x58\x5e\x36\x3d\xaf\x3d\x23\x98\x89\x4a\x59\x6f\xeb\xd5\xbb\x72\x57\xb6\xc3\x63\x6b\xcf\x54\x4b\x81\x6a\xd6\x7e\x5f\x47\xfb\x7c\xbc\x1d\xa1\xd4\xf6\x61\xb6\xcd\xf2\x70\x64\x72\x14\x50\x01\x6f\x78\x6d\xa2\x78\x96\x60\x5d\x9c\x3e\xd7\x41\xa1\x53\xfd\x33\xad\x58\xc1\x34\x87\x1c\x24\x60\x3f\x09\x14\xa3\xe5\xbf\x2a\x50\xd4\x6e\xeb\xae\x61\xd2\x0f\xb3\x71\x91\x97\xab\xd1\xa9\x44\x7f\x1b\x2f\x1f\xb1\xc4\x7f\x4b\x72\x3e\xdc\xa5\x86\x4d\xbf\xe1\x8a\x58\x71\x12\x8f\x6d\xba\x98\xa4\x23\xd7\x72\x41\x89\x0e\x39\x3a\x1f\x3b\x28\x5c\x56\x8c\x6d\x3a\x32\xe9\x92\x45\xdc\x8f\xe7\x01\x88\x35\x1f\x37\x54\x66\xda\xa6\x6f\xe3\xa4\x27\xd3\xbe\x52\x2a\x54\x65\x43\xe7\x96\xa2\x64\x59\xf0\x66\x48\x1b\xff\x74\xa2\x7b\x12\x74\x5b\xc8\x7f\x4f\xeb\x21\x80\xd8\x1e\x4b\x52\xd3\xe5\x61\x76\xd9\xf1\xba\xd1\xae\x48\x14\x69\x7a\x05\xce\x67\xde\x55\x68\xc8\xcc\xba\x62\x89\xc3\x01\x9c\x08\x14\x01\xa5\xa7\xb0\x1b\x86\xd9\xd8\xc4\x61\xaf\xca\x14\xfb\x64\x47\xa9\x79\xb2\xdf\xc4\xc9\xb6\xb5\x26\xda\xac\x3c\x19\xd8\x7c\x68\xd3\x69\x5f\x76\xbc\x4d\x29\x17\xbc\x30\xc8\x34\x44\xe1\x95\x8c\x92\xcc\x10\xff\x84\xe2\xeb\x1a\x8d\x6c\xda\x0b\x89\xf4\x1c\xbb\x52\x49\x3a\x49\x29\x76\xdb\xda\x93\x7a\x4a\x96\xd2\x36\x97\x42\x63\x90\x9c\x8f\x1b\xfa\x09\xf3\xed\x2c\x1c\x15\x91\x11\x22\x57\x51\x7e\x57\xd3\x9f\xe7\x94\xf4\xc0\x38\x4d\x5e\xb1\xbd\x3c\xdb\x51\xbe\x0a\x11\x23\xa1\x07\x23\xa0\x11\xba\x4a\x64\xac\x77\x15\xc7\xca\x77\x03\xa5\xbc\xff\xaf\x6a\x7b\x9e\x54\x09\xd2\xfe\x4a\xc2\x20\x3a\x84\x52\xaf\x07\x0a\x50\xfe\xfa\x64\x4b\xe7\xed\xc0\x81\xf6\xe7\x9e\x6a\xbd\x20\x58\xe2\x07\x9a\x03\xf4\x2c\x55\x2a\xe0\xaa\x38\x5a\x90\x1a\x32\x6d\x40\x6c\xe6\x7b\xb4\x01\xb9\x9f\x4b\xeb\x1c\x5e\xfe\x3d\x42\x0d\x88\x78\xb4\x02\xf1\xaf\x73\xff\x16\xd1\xe8\x09\x35\x69\xfa\x2e\x5c\x18\x6e\x16\xdd\x10\x98\xe7\xf5\xc0\x27\xb1\xf7\x68\xf1\x61\x01\xbc\x8f\x7b\xc3\x37\x6d\xaa\x6a\x60\x69\x5a\x0d\x73\xe0\xc2\xb4\x6c\x5b\x53\xb4\xa7\xdb\x3a\x0e\x21\x90\x92\xda\x10\xd3\x6c\x62\x15\x63\x10\x96\x8f\x1b\x5f\xb7\x1d\x91\x39\xb6\xac\xe3\x88\xb4\x75\xdb\x9a\xa6\xde\x68\x20\x27\x9b\x6d\x9b\x6c\x58\xa4\x59\xce\x41\x20\xb6\xe9\x5b\xba\x8f\xf0\x56\xd3\x98\x00\x92\xd4\xd8\x46\xc8\xa0\xb8\x14\xa8\x4a\xf5\x97\x14\x99\xf6\x83\x26\x21\x97\x6e\x6a\x89\x69\xa1\xa5\xda\xa7\x55\xa0\x9f\xa7\x85\xe8\x15\xb4\x94\x19\x32\x35\xef\x40\x9b\xde\x49\x7d\x5f\xd1\x09\x9f\x0f\xfe\xe3\x86\xc2\x63\x48\x53\x73\x7f\xef\xe7\x3d\xc5\xc4\x94\x62\x11\x85\x94\x9b\x08\x5e\xb7\x94\x5e\x91\x9b\x0e\xf9\x3b\x4f\xfa\xf8\xfc\x2a\x72\x70\xe9\x51\xd3\xd3\x02\x6d\xea\x7f\xc2\x30\x4c\xec\xa1\xe9\x8e\x17\x12\xd9\x0f\x7f\xc1\xdd\xfb\x89\xeb\x91\xfd\xe9\x4f\xac\xa9\xb1\xd0\x9d\x04\xfc\x64\xe0\x78\xa0\x18\xd1\x6e\x4c\xd4\x0e\xfc\xe5\x40\x85\xa5\xa8\xc6\x8a\x66\x8e\x1a\xb1\x45\xbc\x8a\xc7\xf9\x93\x6b\x4f\xa9\x1e\x0b\x01\x50\xa0\x48\xaa\xf5\x18\x25\x41\xa5\xad\xc4\x41\x8d\x26\x53\xbc\xe7\x7c\x4a\x3f\x5c\xb6\x69\x16\x2e\x86\xb6\x8f\x72\x2e\x92\xd1\xcd\x40\x61\xad\xf7\xad\x79\x30\x37\x46\xf0\x64\x7a\xaa\x21\xe9\x25\x6c\xfb\x72\x68\x57\xb0\x41\xdc\x64\xb7\x22\xef\x6f\x5a\x87\x59\xd8\xb7\x51\x18\x5b\x9e\x16\xc0\x65\x3e\x56\x19\x1f\x0a\xc9\x72\xdc\xe0\xe6\x92\x5e\xaf\x48\x3d\x1b\x3f\x1b\x10\x05\x7c\xbc\xe7\xd4\x3f\xc6\x91\x59\xdd\xe5\x0b\x31\xa7\x60\x7f\x9c\x34\x5e\xf9\x46\x58\xf3\x9f\x76\xab\x12\x13\x90\x11\x9f\xf3\x6a\xde\xee\x89\x8e\x5f\xbe\x9b\x6a\x52\xbd\x1f\x66\x66\x20\xfd\x17\xb1\x68\xe8\x6c\xf1\x71\xd3\x83\x48\x6d\x56\x44\xb9\x5b\xd5\xc2\x06\xeb\x6d\xee\xb6\x35\xef\x3c\x5a\x35\x62\xac\xf2\x0d\xf4\xad\x01\x60\x00\x79\xc7\x3b\x81\x7f\x65\xa0\x91\xde\xbc\x46\x1c\x7b\xd7\x9a\x60\xcf\x2b\xd6\xc0\x2b\x3a\x82\xcd\x87\x8a\x88\x19\x01\x15\xaa\x6f\xdf\x42\x21\x48\x86\xbb\x74\x46\x54\xf4\x2c\x09\x5c\x3b\x82\x15\x27\x4a\xf0\x55\x58\x55\x2c\x78\xd4\xb7\x99\xa0\x5e\xe1\x63\xee\x04\x4a\xfd\xf6\xfd\x5a\x81\xf2\xd0\xa1\xb6\x8d\xfb\x28\xb2\x8b\xec\x97\x82\x93\x6e\xd4\x3e\xf0\xc2\x6c\x7b\xc5\x46\xa8\x06\x4b\xd7\xbc\xbc\x3c\x69\xb3\xfb\x8a\x52\x36\xb6\xe4\xcd\xb9\xc0\x81\xae\x36\x6c\x8a\x28\x57\xb4\x1c\x71\xdf\x39\x55\xf7\xef\x26\x2b\x4b\x36\x55\x1a\xa0\xbf\xa5\xf9\xe7\x7f\x2b\xf0\xe4\x34\x61\x14\x15\x59\x9e\x9a\x32\x68\xd4\xe3\xb5\x6f\x28\xfd\xe0\x5b\x4a\xd1\xfc\x16\xbe\x88\xff\xa8\x82\x15\xcb\x53\xb3\xc3\xcb\x48\xfc\x10\x0b\x54\xa8\x2e\xe9\x89\xa0\xea\x06\x1a\x1a\xe6\xf8\xa0\xd5\x80\xe3\xdf\x76\xb0\xe1\x51\xb9\xe6\x22\xb3\xca\xb7\xa0\xa7\x74\x85\xab\x5a\xc5\x18\x10\x98\xc3\x06\x07\xb6\x77\xdb\x9a\x07\x4c\x6f\xeb\xf8\x64\x6f\xc5\xc4\x7d\xc3\xb7\x89\x2c\x0c\xa3\x93\x78\x2c\xa8\xce\x21\x0a\xfd\x50\x53\x04\xfe\x78\xf2\x49\x2a\xc7\xe5\xab\x29\x93\x67\xe1\xce\xe5\x19\xd9\x89\x82\xb3\x9d\x6e\x18\x9c\x5e\x68\x87\x71\x2f\xf2\x02\x6c\x3c\xeb\xac\xc2\xdb\x4b\x0a\x76\x5b\xe4\x43\x33\xa2\x9e\x90\xf0\x4a\xe3\xc7\xe4\xac\xe5\xa4\x79\x6e\xa8\x80\xe1\x92\xae\xb8\x7c\x5c\x4b\xdf\x16\x66\xda\xe3\xa4\xb7\x64\x45\xf5\x52\xe0\x0b\xbe\x2d\x71\xb5\x06\x9d\x9d\x3d\xdc\xce\x93\x63\x61\x2f\x89\x92\x81\x54\xfb\xe1\x5e\xbe\x15\xf8\x92\xfc\xb7\x1a\xe3\x88\x30\x0e\xf3\xd0\x44\xd1\x6a\x4b\x6b\xfb\x03\x9f\x27\x34\x2b\xcf\x28\x57\x12\x67\x61\xe9\x98\xa7\x55\xa3\x1f\xe2\x7f\x02\xd2\xf6\x04\x75\xb0\x7e\xfc\x37\x8d\x8a\x7b\xa9\x1d\x99\x3e\xaa\x01\x78\x29\xac\xcb\xcf\x27\x6b\x0d\xb5\xf5\x5e\x32\x1a\x47\xa1\x9b\x25\x96\xac\xcb\xaf\xdc\x33\x0d\xdc\xcd\xf3\xed\x22\x0e\xf3\x61\x12\xf5\x1d\x82\xc2\x4d\x85\x94\x2f\x43\x02\x8c\x86\x1a\x4f\xb2\x6c\xd3\xa1\x29\xa2\x69\x55\x84\xb9\xaa\x76\xf7\x54\xc7\x8f\x8e\x6d\x68\x99\x9f\x53\x1e\x02\x3a\x48\xe2\xf0\x55\xe7\x72\x50\xb9\xc2\xb0\x32\x1f\x77\x7c\x09\xb4\x9b\x30\x7d\x95\x47\x7c\x11\x63\x80\xa0\xbf\x7c\x42\xde\x8d\x92\xde\x12\x3d\x3e\x27\x05\x73\x96\x42\x03\x3e\x56\x7d\xa6\x2c\x59\xcc\x57\x4c\x6a\x77\x29\x08\x80\xce\x60\xdf\x46\x70\xcc\x27\x1a\xbf\xf2\x3e\x02\x0c\x27\xcd\x32\x27\x2d\xc1\x8b\x70\xfd\x82\x27\x90\x7b\x4d\x6d\xb2\xb8\x48\x75\x3e\x6f\x20\x5a\x6b\x4a\x9e\xcb\xd7\x1e\xb2\x3c\x0d\xfb\x82\x7f\x42\x1f\xe2\xa2\xa2\x21\xbb\xd8\x24\xa3\x15\x9b\xf1\x30\x1f\x9a\x56\xeb\xf0\x97\x1b\xe7\xff\x9a\x66\x52\xba\xb6\x67\x8a\xcc\x2a\xc6\x0f\x50\x38\xf0\x71\xa3\x3a\x56\xd7\x9a\xbc\xca\x6f\xa1\x98\x30\x2f\x37\x39\xc4\x64\x14\x87\xdd\x02\xc6\x4e\x1e\x6a\xcb\x69\xcf\xbd\xdd\xb8\x28\xb9\xad\x68\xe2\x5c\xec\x14\x2a\xb8\xef\x06\xaa\x9c\xfb\xae\x7a\xb6\x03\xc9\xf0\x8e\xcc\xb8\x60\xb4\xfc\x11\x3e\x56\xb5\xbc\x41\x94\x74\xb1\x32\x5c\xe3\xe2\xe0\x9c\x6b\x5c\x34\xf4\xc3\xba\x45\xf9\xde\x68\x4f\xa1\x2e\xff\x16\xed\x29\x3e\x9e\x68\x13\xf0\x95\xc2\x42\x4a\x40\xed\x08\xac\x06\xd9\x1e\xf2\x8a\x17\xa3\x24\xf1\x53\x00\x5a\x6e\x86\x8f\x6b\x36\x58\x0c\xf8\xc8\xf4\x56\xa7\xfc\x1b\x43\xe1\x5b\x66\x37\xe9\xe9\x20\x17\x7f\xa4\x6a\x06\x61\x1c\x27\x63\xd3\x53\x90\x57\x90\xae\xf0\xb1\xab\xa7\x8c\xb3\xd5\xde\x30\x01\x5f\x1e\x8c\x25\x56\xf4\x5d\x85\x8f\xf6\xbc\x8d\xa5\x23\x89\x6d\x2e\x19\x93\x8b\xf2\x94\xe6\x96\xe2\x0c\xef\x9b\x91\x71\xf4\x73\x70\xab\xc0\xdd\xf2\xb1\xe6\xed\xb5\x34\xde\x19\xdb\xfe\xb4\x2f\xa1\xde\xd1\x28\x52\x0e\xc6\x5d\x77\xdd\xf7\xe1\xee\x55\xf5\x38\xf2\xe1\x6e\x2a\x3d\x88\x9a\xbf\x0f\x4a\xb8\x5a\xe6\x4e\x34\xfd\x1b\x0a\xaa\x58\x13\xff\x37\xf6\x39\x4c\xc7\x77\x27\x3e\x13\x7d\x54\x9d\x9b\x6b\x9a\x80\x4b\x8c\xe7\x8a\xc6\x0e\x99\xee\xf8\xc1\xac\xfb\x9a\x3c\xb4\xc6\xf3\xfd\xb9\x76\x64\xd1\x09\x01\x48\xe2\xb4\xd6\xfd\x3f\x5d\xd1\xa0\x7d\xa5\xc8\x72\x21\x5b\x85\x83\xf8\x81\x52\x9c\x3e\xab\xea\xc8\xef\xaa\x28\x24\xb7\x51\x94\x1b\xe6\xeb\xd8\xbc\x16\x20\xa2\x6d\xe6\x3d\x4e\x56\xd8\x39\x28\x42\x88\x97\xe5\x44\x8f\x57\xf4\x2c\xe8\xd7\x9b\xd9\xc3\x1b\x5c\xfa\x20\xf5\x53\x82\xec\x1f\x18\x53\xc7\x27\xb5\x0f\x1d\xfe\x32\xb0\xd3\x5c\x2c\x17\xe6\x5c\x8f\x8f\x6c\xb2\x8f\xb3\xed\x71\xb9\x58\x57\x15\x5d\x39\x6b\xad\xf0\x49\x63\x08\x20\x6a\xde\x0c\xd1\x46\x94\xc1\x0c\xf6\x28\x4d\x41\xfb\x7e\xf3\x5a\x03\x0b\x2a\xa1\x7f\x8b\x08\x46\x8c\x3e\x82\xd7\x7e\x23\x50\x00\x88\x1b\x4e\xda\x6a\xd5\xc4\xac\xaa\x3e\xef\x09\x0f\x3d\xb4\xea\x26\x56\x1b\x50\x87\xef\xaa\x6a\x8a\x1d\x75\x4d\x96\xad\xaa\x3a\xf5\x87\x81\x62\x19\xff\xb0\x76\x65\x44\xca\x99\xdb\xd4\x66\xb9\x6c\x47\x27\x6e\xe4\x85\x8e\x6a\x19\xe2\xc2\x4c\x3b\x1c\x8d\x23\x26\xe6\x3a\x22\x82\xa3\xa8\x54\xf0\xf1\x64\x9f\x5b\x5d\x45\x66\xf7\x12\xec\xcf\xe9\x0a\x78\xd6\xdc\x56\xa7\x34\x3e\x30\x11\x4c\xb5\x01\xa4\xc2\x87\x81\x1e\x5b\xa4\xbb\x07\x66\x06\x85\x7d\x07\x67\xf0\xe8\xf0\x27\x00\xf3\x72\x0a\x75\x8e\xc1\xfb\x22\x92\x2b\x6c\x81\x27\xd6\xf6\xeb\xf6\x5d\x34\xad\xaa\x6e\x7b\x29\x4c\xc1\x28\xef\x3d\x65\x90\x20\x66\x25\x46\xad\x49\x64\x34\x29\xd2\x29\x58\x0a\xe4\xfc\xb9\x42\x79\x70\xf1\x4b\xc8\x72\x1a\x98\x81\x17\xed\x8a\x0c\x24\x62\x09\x5e\xd6\xeb\xf1\xb2\x82\xb9\x75\xd3\xa4\xa5\x59\x5a\x79\xb8\x89\x4f\xb4\x1c\x6e\x12\xef\xf1\xd4\xfa\xcf\x74\x1c\xce\xfd\xd6\x33\x1d\x35\xf0\xb1\x73\x4d\x91\x8e\xde\x2c\x9f\xd9\xe6\x05\x0e\xd0\xe1\xd4\x3e\x9a\xa8\xb6\x0c\x14\x7e\x71\x87\xd3\x18\x1a\xc0\xc3\xaa\x2f\x91\x72\xcb\xf4\x43\x8c\x8a\xf1\x15\xbb\xb1\x3b\x45\x82\xe2\x18\xfb\x87\x5d\xc8\xb4\xa3\xca\x7c\x42\x97\x9c\x4f\x34\x93\x95\xc7\x79\x0a\x5a\x30\x5a\xb6\x48\x7c\x7f\x55\xd1\x8f\xfe\xaa\x22\x4f\xe8\x0d\x8b\x78\x49\xeb\xd2\x7e\xa0\x79\x0e\x3e\x00\xed\xb4\x3c\xb9\xc5\x9f\x6a\x1d\x38\xc0\xd9\xf3\x37\xb0\x74\x50\xf7\xfa\x5a\xd0\xfa\xa5\x2f\x72\x8a\xc5\x4b\x52\x3a\xf5\x6a\x24\xea\x0e\xf4\xd1\xb0\x0c\x6f\x20\xfb\x16\xa5\xcf\xf2\x02\x10\x11\xdf\x25\xdc\x01\x5c\xd1\x7b\x01\x31\x67\xb9\x62\x7f\xb9\x09\xf0\xde\x6e\xc2\x3e\xc0\x5f\xec\x24\xa5\x2a\x9e\x99\x21\x7c\x0f\x70\x32\xf7\xb1\x9f\x50\x40\xd9\xd4\xb4\x24\xf7\x82\xa9\xf9\xd9\xc3\xfc\xf1\x0f\xf0\x5e\x37\x1f\x06\x9e\xdc\xff\xbd\xc9\xf6\x9f\xe6\x4a\x12\x1b\x15\x84\x1c\x0f\x26\x9e\x88\xe9\x4f\x69\x27\x49\xbd\xad\xdc\x08\x28\x5f\xdc\x99\x28\x9e\xb2\x16\xe5\xac\x70\x02\xdb\x3b\xe4\x66\x59\xc0\x82\x3b\x92\x8e\x55\xfb\x25\x21\xc5\x3c\xad\x56\xeb\x5f\x3b\x7a\x94\x1a\x88\xe0\x2e\x03\x1e\x11\x0e\xf8\xc6\xa4\x75\xf4\xa8\x83\x01\x6b\x16\xa8\xdc\xa6\x5d\x13\x2f\x4d\xfb\x8e\x0d\x1b\x00\xe0\x84\x79\x70\x1b\xcd\x5c\x46\x3a\xf1\x60\x50\xad\xa6\x71\xf8\xcb\xe4\xd7\xc8\x94\x39\xfa\x08\x25\x19\xbc\xd5\x87\x3c\xd7\xee\x26\x49\xe6\xe6\x49\xb9\xf6\x8d\x17\x27\x85\x70\x7f\x73\xf3\x5f\xfa\xf2\x94\x1e\x1f\x78\x5d\x25\x46\xcc\x3f\x8a\xf4\xef\xba\xaa\x6c\x80\x04\x55\x91\x33\x4a\x71\xc6\x63\x70\x1e\x78\x15\xb4\x93\xf5\xce\x3b\x67\x81\x49\x11\xeb\xde\xec\x76\x6c\x7e\x3d\x75\x2e\x72\x73\x75\xc0\x61\x9a\x44\x11\x17\xdc\xb0\x13\xb9\x6f\xc7\x27\x35\x37\xb9\x30\xf3\x62\x3b\x2b\xb2\xdc\x94\xe1\xda\x94\xaa\xcc\x5e\x53\xd3\x57\x1b\x9a\x89\xff\x5b\x35\x8f\x74\x70\xae\x1d\xdb\x41\x92\x87\xc6\x33\x86\x3b\x78\x4d\xf9\xe3\x7c\xd2\x80\xa8\x51\xba\xea\xf8\x71\xf0\xf9\xbd\x19\x7c\xb2\xc8\x7a\xc3\xa4\x7d\xd7\xf6\xd3\xa4\x87\xc6\x8c\x88\x0d\xf8\xda\x8c\x96\xe5\x89\xac\x1d\x49\xef\xa2\x11\x1d\xe7\xdf\x66\xdf\x8e\x0d\xf8\x5c\x59\xf6\x83\x91\xd8\xe8\xe2\xa0\x5b\x7f\x4a\xe9\xcc\xa0\x8a\x2f\xf9\x64\x43\x65\xb3\x17\x85\x36\xce\x2d\xab\xeb\xa3\x2b\x73\x4d\xf3\xff\x5f\xd3\x4a\xae\x71\xff\x69\x2c\x40\x38\xa4\xfb\x1a\x81\xf0\x19\xef\xf3\x0e\x3d\x4b\x2c\x4c\x8e\x05\xa1\xb4\x7c\x15\xb2\x1c\x2c\x95\x3d\x84\x54\xc4\x22\xd8\xdb\xa1\x3b\x70\xec\xc0\x07\xa4\xeb\xb5\x9f\x88\xb6\x84\x48\x4f\xf1\xf1\xec\xd4\x7e\xe3\xe2\xa4\xf5\xc2\xac\xc3\xd8\x96\x5b\x0e\xc7\xd7\x34\x52\x86\xf1\x34\x88\x7d\xf6\xac\xf9\xa1\xc6\x7d\x4d\x15\xdb\x61\x31\x4a\x38\xeb\x82\x69\xfa\x98\xb6\x1b\x1f\x6b\x20\x47\x32\xb2\xd9\x8e\xd6\xec\xe1\xcd\x0b\x30\x93\x4e\xfb\xc4\x49\x8f\xdc\x50\xac\x4b\x3c\x1c\x2c\x7a\x2d\x3e\xce\x2d\xd2\x01\x27\xf2\x52\x16\x56\x25\x62\xc5\xd7\x99\x5a\xd3\x5f\xdd\xe5\x69\xb3\x4f\x05\x9e\x4e\xfb\xd4\x44\x31\x53\x30\xb7\xaf\x60\x7c\x5b\x8e\xcc\xf2\xde\xa4\x82\xf7\x55\x3c\xe2\xdb\x3b\x9f\x34\x28\x6e\xe2\x63\xa1\xcd\xa1\x80\x8d\xb5\x05\xee\xe8\xca\x82\x45\x98\x54\x97\x77\x3d\x7a\xb4\x6d\x8f\xd9\x5e\x91\x8b\xb8\x0f\x5e\xc8\x35\xe5\xc7\xea\x59\x42\x69\x4c\x7b\xa9\xe5\x84\x05\xdb\xee\x9e\x82\x51\xde\x73\xc5\xc1\x41\x5a\x8c\xba\x11\x04\xb6\x79\x34\x06\x37\xc5\x9c\x6c\x1d\x7f\xeb\xd7\x15\x69\xf2\xdb\x8a\x6f\x77\xd1\xf0\x80\x20\x16\xed\x79\xfa\x1d\x3e\x56\x3b\x20\xca\x51\xd9\x40\x71\xf1\x84\xa6\x7e\x3a\xa1\x0a\x77\xa9\x5d\x4c\x7a\x45\x26\x54\xc5\xf0\xf4\xd3\x1d\x82\x08\xf1\xc9\x9a\x9f\x71\xce\x92\x5e\xa8\x8b\x89\x4d\xa3\xe7\x4d\x82\x08\x59\x31\x18\x70\xc0\xad\x60\x0a\xe7\xb1\xe4\x85\xf4\x55\xb7\x48\x63\x88\x7f\x7a\x3c\xe2\x35\x25\xec\x75\xad\xa9\xbd\x1c\xc6\x8b\x54\xb2\x6c\x29\xca\xc6\xab\xda\xd5\x68\xe3\xe4\xa8\x92\xa3\x55\xd5\xe9\x7e\x80\xeb\x71\x41\x49\x19\x62\x08\x9f\x1e\x59\x06\x61\xbe\xa3\x47\x85\x0a\xee\x85\x1a\x6a\x75\x61\xa6\x6d\x59\x2f\x82\x75\xd6\x15\xa0\xab\xee\xb4\x8e\xcc\xcc\xb7\x33\x13\x2d\x9b\x81\xa5\x15\x0b\x0b\x08\x6a\x03\x9e\x2c\xa5\x5e\xb7\xc4\x09\x5b\x88\x7a\x5e\x9a\x6f\x1f\x9c\xdb\x4b\xd7\x8d\xf8\xf2\x7f\x51\x32\x52\x77\xe0\xbc\x54\x17\x71\x4e\x43\x9e\xa4\x3a\x08\x42\x21\x11\x1b\xa6\x9b\x93\x7c\x59\xf5\xf4\x6e\x51\xa3\x9b\x3f\x41\x73\x23\x6e\x96\xb9\x5c\x2c\xb0\x6e\x27\x27\x7f\xe9\x93\x0a\x37\x61\x7f\x94\xa4\xb1\x2b\x08\xc0\xc4\x9c\xa4\xd5\x2b\x2c\x64\x0a\x57\xfe\x4e\xed\xb9\x1e\x99\x69\xf7\xfa\xbc\x26\x84\x36\x86\x3e\x20\x9e\xfd\x49\x57\x0e\x1b\x9b\x30\x95\x52\xbd\xf4\x5a\xfc\xfe\x3d\xa7\xa7\x63\x43\x5b\x1c\x9b\xd2\x9a\x1a\x80\xff\x62\xa1\x31\xce\x47\x08\x7d\xfd\xe0\xe9\xc8\x9a\x78\xa7\x96\xb0\x3e\x47\x8f\x50\x86\xc0\xcb\x87\x23\x60\x51\xdf\x82\xfc\x98\xde\x0c\x9e\xff\x6d\x58\x3f\xfe\xb0\x42\xba\x52\x3b\xbc\x18\xb7\x3c\x22\xe9\xb2\xea\x41\x5e\x76\x3d\xc8\x3c\xb5\xb6\x22\x98\x84\xda\x33\x56\xc9\xe3\x8a\xd2\xb5\x17\x7e\x27\xb0\xa7\xa1\xa1\xb7\x7d\x8a\xb6\x6e\x47\x47\x25\x8b\x3c\xa1\xec\xe6\xfb\xca\x58\x1e\x8d\xeb\x56\x47\x69\x36\x1e\xa7\x90\x1a\x3e\x63\x5d\x97\xa3\x6e\x81\x00\x5c\x68\x40\x95\x67\xa1\x6d\x80\xef\x6d\xad\xf9\x7b\xba\x3d\xf1\x9d\x81\x8f\x2b\x64\xcf\x49\x6a\x15\xa5\x0c\xc8\x1a\xf9\xb8\xa9\x96\xd2\x4d\x93\x62\x30\xcc\x81\x4b\x05\x77\xce\xfa\x44\x05\xc1\xa7\x82\x2d\x63\x3a\x72\xff\x37\x02\x0f\xd2\x5b\x19\x5a\x93\xef\xf4\xe0\xf1\x56\xa7\xdc\x7c\x82\x89\x2e\xbf\x40\x52\x72\xfa\x19\xe1\x76\x55\x96\xea\x92\xe2\xeb\xfd\xf9\x7a\xe5\xb9\x0c\x52\x53\x6b\xc7\xce\x16\x6a\xda\x04\x61\x5a\xd0\x5a\x3f\x23\x8a\xa1\x30\x01\x81\xf5\xa2\xc3\x86\x2b\x8a\x09\x82\x4b\x3a\xc2\x98\x50\x6e\x57\x6c\xea\xed\x1d\x85\x27\xe4\x67\x82\xd4\xfe\xbd\xa6\x1e\xfc\x38\x0d\x97\x4d\x5e\x06\x95\xd8\x42\x08\x6f\x3e\x50\xa5\x8e\x0f\x34\x16\x3e\x2d\x53\x12\x55\x0c\xe4\x00\x5f\x30\x1f\x0e\xd6\xb8\xfd\x29\x8a\xbb\xe4\x4d\x37\x55\x9c\x7a\x91\x09\xbb\x49\x1a\xdb\x56\x65\xc4\xa4\x3a\x7d\xe2\x7d\xdc\x2f\x7e\xfe\xf3\x53\x0a\x56\x07\xfa\x63\xc7\xad\xec\x89\x4d\xb4\x1c\xca\x38\xb5\x83\xd8\xc4\x60\x1c\x95\xd5\x44\x0f\x57\xb4\xb9\x3c\xfc\xff\xa6\x42\x6f\x66\x61\xb4\xc4\x88\x5b\x54\x46\xdf\x9d\x78\x08\xc0\xbb\xba\xa7\x32\x34\xe9\xe2\xa8\xc2\x8b\x73\x51\xf3\xe2\x5c\x74\xc1\x40\xd7\x44\xc0\xe6\xba\xc9\xec\x6b\xf4\xd2\xf0\xe3\x80\x4a\x20\x21\x7d\x4f\xf5\xd0\xeb\x7a\x61\xb3\x87\xdb\x26\xce\x56\xb8\x4a\x0f\x88\xf1\x37\x03\x05\x7d\xff\x66\x53\x79\x96\x30\x70\x2c\xe8\x86\x54\x75\x8d\xd6\x20\x1f\x37\xea\x4d\x0c\xc3\x7c\x8a\xb6\xb7\x8c\x0f\x2a\x4d\xd6\x3b\x81\x07\xb0\xd6\xf9\xe4\x0f\x7f\xd9\x69\xe1\xf0\xaa\x42\x0f\xf7\x91\x52\x0f\x7c\x34\xd9\xef\x3d\xf4\xb2\x4d\x77\x53\x55\x01\xde\x7b\x43\xcf\xd5\xa1\xeb\x89\x98\x07\x9a\x44\xc8\x27\x1e\xea\x97\xfe\x98\x9e\xa5\x0c\x01\x63\x09\xe1\xc9\xbe\xa6\x86\x9e\x3f\x54\x70\xd0\xae\x8d\x42\x4b\x4a\x6d\x0b\x33\xdc\x46\x38\x0b\x80\x0d\x9f\xa8\xe9\x58\xb3\x98\xdb\x34\x4e\xca\x54\xb5\xb4\x9d\x52\x28\xf3\x5e\xe6\x4f\x28\x33\xc0\x2b\xbf\xa9\xa0\xdb\x69\x11\x2f\xd9\x08\xd1\x16\x8c\xe1\x15\xbc\x2a\x3e\x71\x3d\x75\x34\x01\x4c\x5e\x75\x64\xe0\x2c\xe7\xe3\xb5\x26\x7c\x73\xd7\x66\x61\xdf\x66\x04\xc7\x55\xbc\xcd\xf3\x0e\x4b\xf3\x69\x15\x9f\x8f\x6c\x3f\xf4\x48\x5c\x99\x03\x51\x33\x21\xb5\x17\x79\x70\xae\x9d\xf4\x7a\x26\xf3\x83\xd3\x8c\x89\xad\xe0\x63\x75\x9d\xfd\x58\x1e\xb2\xfc\xe6\x17\xfc\x7c\xf6\x9c\xa7\x92\x11\xbf\x3d\xb6\x69\x56\x48\xdb\x57\xc4\x77\xcb\x4b\x11\xed\xdd\x06\xae\xd7\xae\x1d\x25\x26\xde\xd2\x42\x7d\x43\x0d\x02\xbc\x31\xf9\x4c\x35\x60\x3a\x32\x33\x5b\xfe\x47\xd3\xe2\xa8\xb1\xb0\x26\x00\x4f\x97\x05\x5e\x23\xe4\x81\x56\xe1\x4c\x5e\xb5\xf1\x94\x42\xe2\xb0\x84\x28\x92\xc5\x87\x81\x06\x6f\x7b\xb8\x66\x94\xa4\x79\x68\x5b\x8a\x06\x66\x3d\x50\xcc\x2f\xeb\xae\xfc\xdd\x4b\x8a\x38\xe7\x3a\x3b\xd9\xef\x53\xcf\xa2\x6c\x41\xfd\x91\xcf\x41\x42\x52\x82\x32\x7f\x55\xe4\xad\xb0\x96\x1c\x62\xdd\x13\x45\x9e\xad\x71\x0c\xfc\x5c\x3b\x4a\x92\xa5\x96\xea\xd1\x43\x2b\x45\xc2\xe5\x27\xb5\x78\xe4\xc8\x44\x2d\xc5\x44\x0c\x8c\x06\x1f\x77\x3e\xe3\x5f\xf0\x30\x21\xc7\xdb\xa5\xe6\xee\x82\x60\x56\xa0\xf1\x21\xaa\xb7\x0d\xd4\x3f\xbd\xd0\x2d\x6d\x99\xe2\x55\x3e\xf9\x8c\x0b\xd2\xc6\x66\x35\x4d\xa2\x68\x87\xca\xfd\xbe\xaa\xa3\x27\x8c\xd4\x63\x86\x0c\xe5\x46\xd8\x4c\x9e\x9a\x17\x89\x17\x9f\x5d\x2c\xdb\x38\x2f\x52\xbb\x07\x26\xc1\x4d\xf8\x3a\x0a\xfb\x87\x60\xf5\x17\x81\x17\xfa\x5d\xc7\x48\xe3\x07\x19\x51\xf3\xe4\xbf\x02\x9b\x9e\xcc\x2c\x2b\x4e\x31\xee\x46\x00\x87\xb5\xb3\xe3\xa0\xd2\x76\xd9\x46\xbb\x5c\x21\xa3\xf3\x19\x25\x70\x78\x5a\x53\x2f\x70\x38\xc6\x1a\xd8\xb8\x18\x41\xdf\x54\xb0\x54\x0a\xf6\xd6\x24\x82\x9b\x5a\x92\xa4\x6b\xf9\xd6\xf3\x6f\x04\xbe\x25\xfd\x1b\x4d\x7b\x2b\xcb\xd3\x62\x30\x70\xca\xb9\x92\x98\xa8\x94\xe2\x7e\x55\x69\x30\xcd\x3e\x43\x6f\x10\xd7\xb4\xaf\xa3\x4a\x20\xd3\x65\xc0\xb7\x79\x06\x05\x16\x78\x98\x4b\x28\x1e\xe2\x99\x63\x2c\x14\x39\x01\x9a\x59\x78\x2f\x4f\xac\xd1\xb3\x70\xc2\xb7\xb3\x87\xab\x5c\xd4\x6c\xc4\x2b\x72\xef\x37\x83\x0a\x67\x7d\xb9\x0c\xf1\xf8\x2e\x06\x4a\xd5\xe2\xe6\x44\xb3\xd8\x53\x98\xcb\xe2\xd0\x54\xb0\x45\x10\x35\x1f\xa8\x2e\xe9\xa9\xc0\x4f\xb8\xff\x10\x6f\x02\x8f\xe1\x69\x2a\xfc\x88\x20\x6f\x03\x56\x24\xb5\x9e\x49\xc1\x59\xfd\x89\xb6\xfa\x4a\x0a\x11\x0d\x4d\xb0\x7d\x01\x52\xf1\x8e\x9a\xb8\x7e\xc7\x03\x51\x7f\xe1\x89\xf2\x7a\x10\xd4\x3d\x64\x07\x87\x80\xe6\x36\x82\x53\xd7\x22\x5f\x98\xe1\xec\xfc\x8e\xa2\x03\xfd\xd5\xa7\x51\x3b\x26\x1b\xf8\xfe\x5f\x58\x73\xe5\xb7\x7f\x00\xa5\x1f\x54\xbb\x3e\xb3\x56\x11\xa1\x2a\x7d\x1a\x19\xc7\x9f\xfb\xa9\xce\x7e\xb7\x96\xb3\xcc\xa6\x3b\x2a\x7c\x92\x2d\x27\xbe\xf3\x40\x03\xf3\xe8\x52\xf0\x98\x37\xb0\x16\x50\xeb\x78\xa6\x46\x1a\x4a\x61\x68\xd2\x75\xca\xac\x3c\xc2\x46\x4b\x43\xc6\xd9\x94\x34\x40\x12\x97\x7e\xa6\xe5\x53\xa0\x0d\xfa\x29\x3e\x56\x65\x91\xbf\xf5\xd7\x7e\xa1\xe5\xeb\xf6\x17\xe8\x86\xf8\xb8\x66\xa4\xca\x88\xb4\x1b\x46\xe0\x70\x61\x21\x4a\x6c\x67\x51\xa5\x94\x56\x4e\x64\xba\x60\x97\x12\x94\x54\x65\xea\xb6\xe5\xa6\xf9\x1f\x2b\x54\xc2\xd0\x74\xc3\xdc\xe4\x4a\x50\xf7\x62\x85\x9a\xae\x69\x7e\x07\xb3\x4b\xad\x0a\xbb\x82\x5f\x04\x75\x9c\xd2\xa1\x43\xed\x84\x06\x85\x0c\x6e\x82\x69\x5c\xd5\xb0\xf0\x29\x95\x7b\xae\x98\xbc\x37\x64\xd2\x15\x04\x8e\xef\xd2\x5f\xf2\x71\x53\xa5\xc3\x65\xe4\x48\x34\x4e\xe9\x21\x9e\x53\xca\x84\xa7\x3d\x1b\x31\xa7\x93\xd3\x54\xf4\x16\x4b\x03\x25\xc6\x69\x32\x48\xcd\x28\x7b\xc2\x5f\xc5\x95\xca\x00\xaf\x62\x8f\x01\x1f\x2d\xd6\x16\x46\x89\x61\x5a\xce\x68\x6e\xdb\xd3\x8a\xa4\x82\xaf\x8f\xc9\xc6\xa8\xae\x22\x54\x61\xb4\x1a\xf9\x13\x0d\xba\xa1\xb3\xed\x6c\x2c\xad\xdf\xca\xd4\x18\x9f\xe8\x08\xcf\x2e\xdb\xf2\x79\x1f\x74\xda\xee\x94\x2b\x8b\xce\xbb\x36\x99\x83\x24\xe2\x4e\xa1\x28\xc2\xd3\xf5\xf1\x49\xad\x6f\xfa\x5c\x7b\x64\x96\x6c\x31\x46\xdf\xd4\x95\x62\x9c\x4c\x58\x5d\x83\x75\x61\xbe\x6d\xe3\x9c\x47\x08\xa4\x8f\x50\xde\x83\x34\x18\x94\x7c\x58\x64\xba\x49\x6a\x72\x0b\xa5\x79\x20\x2d\x10\x69\xf3\x71\x13\x0c\x6e\x64\x62\xe0\x5a\xc8\x98\x23\x1a\xba\xab\x64\xbf\xea\x22\x41\xcf\x11\x74\x8e\xcc\x9b\x63\x77\x3e\x28\x23\x2c\xbf\xdb\xc4\xf3\x36\xb6\x36\xea\x9a\xde\x52\xcb\x23\xe3\xce\xa8\x10\xaf\xce\xf8\xf1\x5c\xbb\x97\x26\x2b\x82\x09\x81\xef\xbd\x80\xd7\x85\xa2\xf8\xbd\x40\xf1\x6f\x6c\x28\xd0\x75\x37\xec\x2d\x29\x85\x73\x41\xa7\xb4\x1c\xe3\x00\x49\x9a\x6d\x5e\x70\xd8\xab\x6c\x35\x5a\x66\xd4\x53\xb9\xe4\x1c\xc3\xd4\x9c\x93\xe4\x3e\x55\xeb\xe5\x02\x5e\x49\xf1\xfd\x31\xae\xa3\x0b\x2b\x7e\x85\x3b\x5f\x49\xdc\x59\xd3\x1b\xee\xa6\x2f\x45\xf4\xf9\xd5\xc0\x8f\xde\xdc\x56\xfe\xf2\x2d\x44\x25\xdc\xd2\x44\x93\x95\x47\x15\x70\xff\x68\x9b\xc3\xdd\xba\xfa\x9d\xe6\x34\xf5\x45\xae\x34\xec\x19\xac\x34\x49\x42\xe9\x16\xf9\xa4\xa1\x10\x39\x37\xb7\x87\x7e\x03\x48\x78\x46\x18\x21\x8f\xd8\x8f\x68\x16\x7e\xf8\x4d\xda\xb6\xf0\x48\x97\x74\xcf\xf2\x86\xe6\x69\xc3\x04\x15\x16\xf6\xd7\xf1\x40\x79\x9c\x61\xe2\x27\x79\xae\xaa\x49\x57\x26\xb1\x2d\x17\x13\x53\xb2\x11\x40\x52\xe8\xd9\x7c\x6b\xdc\x14\x83\x82\x85\x77\xe4\x11\x94\x1f\x92\x36\xf3\x1e\xa9\x23\x1a\xcd\x18\x78\x4b\xa1\x99\xdf\xa4\xbf\x97\xb4\x64\xbf\xca\xed\x22\xbb\x57\x49\x69\x5f\xa5\x8d\xef\xfa\x01\x0b\xf3\x1c\x49\x6c\x6a\x83\xb6\xa1\x31\x96\xbf\x82\x82\x9b\x4b\x27\x0f\x0a\xa3\xf9\x9e\x8e\xd7\x59\xc4\x24\xa6\xf3\x2e\x87\x0e\x61\x40\xf0\x65\xa7\x2e\xd3\x80\x78\x8f\x93\x9c\x27\xc6\x65\x33\xfb\x6a\x1a\x84\xb3\x98\x16\x9e\x8c\xa2\x8c\xcf\x2b\x19\x26\xd0\x65\x65\x4f\x78\xeb\x7b\x05\x05\x65\xec\x8b\x87\xb8\x70\x94\xfa\x3e\xa4\x0b\xe7\x63\xbc\x53\x44\x13\xc0\x7c\xa1\x60\x79\x9a\xec\x90\x03\xc8\x96\x4f\x0d\x21\xef\x9b\xf4\xa4\x71\xdb\x7f\x8a\x27\x25\x3e\xc3\xcb\x1d\x8f\xa3\x62\x34\xb2\xbe\xa3\x80\xd2\xd3\x87\x1a\x94\xf6\xa1\x4a\x94\xa2\x22\x1e\x30\x91\x15\x2c\xc0\x4d\x7c\x31\x9f\x28\x56\x8f\x30\xee\x25\x23\xfb\xa9\xf2\xda\x9c\xc4\xd1\x81\x03\x1c\x68\xde\x0f\x3c\xaf\x08\x6b\x0f\x62\xdf\x3d\x46\x04\xe9\x54\x5e\x94\xc6\x50\xb9\x04\x00\xa6\xf8\xf7\x8a\x32\xfd\x4f\xe8\xf9\x23\x14\xfa\xbd\x40\xd5\xef\x6f\x13\x4a\xc2\xa9\xe7\x94\xdb\x0f\x8b\x86\xc1\x07\xf0\x70\x77\xf5\x74\xd9\xa5\x40\x42\xb1\x2e\x55\x40\x77\xfb\x79\xb8\x7f\xfc\x97\x3a\xea\x2a\xf7\x81\x95\x07\x06\x71\x53\x81\x8a\xa6\x95\xe8\xd5\x65\x3d\x47\x8b\x52\x23\xf6\x30\xf8\xa5\x50\xa8\xfa\x4c\x6d\x26\x12\x42\x61\xe5\x2b\x19\xa1\xf1\x24\xd4\x01\xe5\x87\xe4\x9b\x95\xb7\x61\xbe\x40\x4c\xe5\xbb\x5b\x77\x81\x16\xe3\xfd\xa4\x7c\xf3\x6c\x8d\x94\xf3\xc0\x2c\x92\x0d\x6c\xef\xdf\xa4\x97\x84\x9d\x0a\x61\x2b\x01\x7a\xd2\x13\xc4\xef\xdf\x26\x04\x09\xde\xd1\x6d\x8a\xfc\xdc\x98\x5b\xb9\x84\x24\xfb\xf2\x45\xde\x7f\x07\x8b\x87\xaf\x65\xe3\x24\x6d\x52\x7a\xdf\x80\xdd\x6c\x2a\x46\xbc\x53\xc8\x18\xd0\x32\xf9\x9f\x26\x7e\x38\xfb\x4d\xe4\x28\x9b\xe0\xdf\x64\x3c\x08\x4c\xaf\x0c\xcb\xd2\x9b\x42\x6e\xf7\x23\x3d\xce\x70\x03\x09\x0d\xba\x41\x6f\x2b\xdd\xe3\x7b\xb5\x9d\x7e\xf4\x68\x7b\x90\x24\x80\x3f\x88\x62\xa3\x6a\x92\xbc\x4d\x37\x87\x68\xf1\x96\x5b\x35\x45\x1c\x25\x3d\xae\x0a\x88\x78\x9c\x8f\xb9\xcf\xa9\x38\x3b\x4e\x56\x86\x36\x65\x8d\x33\x26\x4f\x0d\x14\x61\xdb\x47\x0d\x0c\x33\x2f\xb7\x87\xc9\x98\x07\xf6\xb4\xa4\x94\xd0\xe0\xd3\xf3\x12\xd6\x06\xbf\x0f\x0d\x91\x36\x4c\xfb\xfe\xc1\x39\xcd\x54\xf9\x9b\x81\xb7\x30\xe7\x02\x0d\x35\xf9\x4d\x55\x1f\x4e\x72\x33\xfd\x89\x84\xdd\x2d\xc7\xba\x73\x1f\x9b\x49\xa0\x45\x4e\x34\x33\x59\x89\x07\xa9\xe9\xa3\x2f\x87\x86\xc6\x4d\xdc\xad\x74\x17\x5a\x8e\xda\xff\xc7\x15\xee\xc2\x34\xb4\xd9\x7e\x0f\xac\xfe\x27\xb4\x0e\x44\xd2\x0a\x57\x8b\xfd\x75\x0a\x70\x08\xad\x2a\xad\x2c\xe2\xac\x9f\xfa\x3c\x70\x80\xfd\xf8\x71\x2c\x13\xbc\xcf\xd6\x9a\x62\x20\x7d\x47\xa9\x0e\xfc\x09\xad\x12\xa7\xee\xba\x30\xef\xd5\x91\x67\x0f\x73\x82\x7e\x4b\xa1\x68\x23\xd3\xb5\x11\xe3\x21\x37\x29\x7e\xdb\xbc\x3b\xf9\xb4\xaf\xf1\x27\x45\xdc\x07\xdd\xf2\x0e\xaf\x72\x7c\x37\x50\x2f\x95\x09\x63\xf0\xf3\xd7\xd4\xa5\x5c\x9b\x28\xee\x99\x4b\x3e\x27\xc0\xa4\xf1\x6e\x3c\x0d\x18\x4b\x38\x25\x0a\x94\xbf\xf3\x1f\xa2\x67\x21\x02\xc2\x35\x05\x76\x58\xb4\x3d\x6b\x7e\x12\xf7\x8a\xe6\x25\x5f\xd7\x98\xbb\xef\xb8\x92\x7b\x9e\x8c\x43\xd1\xe9\x94\x61\x31\x9d\x9f\x3e\xad\xd4\xe6\xf2\x32\xe6\xcc\xa6\xf4\x74\x64\xe0\x63\xb5\x7b\xba\xbc\x74\xa1\x96\x31\x50\x37\xc3\xc4\xfd\xd5\x69\x55\x73\xb8\xac\x74\x32\x1e\xaa\x79\x64\x0c\xc4\xa0\x60\xf4\x8d\x4f\x24\xc0\x5f\x0c\xe3\xd8\x84\xe9\x94\xea\x35\x61\x42\x59\x04\x02\x14\x63\xdd\x4d\x85\xfa\x18\x9a\x22\x46\xb4\x23\xe9\xb0\x4e\x93\x2b\x15\x9c\x2c\xa3\xe1\x56\xc1\xa7\x2b\xd2\xc6\x53\x70\x45\xc0\x17\xdd\x9e\xa8\xf1\xdb\xf5\x89\x9a\xb6\xbb\x43\xef\x06\xa6\xf0\x47\xe4\x06\x39\x84\xd6\x3a\x24\x57\x68\x41\x22\x96\x81\xc2\x30\x56\x0a\xf6\x27\xca\x06\x1c\xa1\x3b\xac\x48\x69\x87\xf9\xc7\x03\xc5\x06\xbc\x4e\x93\xdc\x12\xae\x28\x95\xa7\x24\xce\x14\x50\xed\x46\xa0\x80\x6a\x37\x26\x4f\xf0\x13\x2e\xcd\x25\xfd\x03\x62\xda\xeb\x14\xa2\xc9\x98\x24\x01\x64\xb0\x6b\x36\xe8\x4e\x98\x09\x97\xf7\x2f\x56\xfd\x34\x6a\xc7\xf2\x4f\xad\x97\xe6\x7d\x1d\xf9\x17\x5f\x12\x3d\x2e\xc4\xe1\x28\x0f\x3f\xd2\xbd\x20\x40\x7b\x60\xf2\xdf\x0d\x5a\x5f\x72\x9a\xa3\xb4\x7d\x81\x56\x9a\xee\x28\xb6\xd9\x5b\x08\xb3\xf0\x7b\x5f\x0f\xfc\x44\xc3\xdd\x80\xfa\x32\x58\x4f\xff\x5b\xd0\x7a\x61\x96\x1f\xd7\x45\x5d\x67\x79\x0b\xcf\x0e\x3f\xf8\x6f\xe0\xdd\x9c\x9c\xfe\x01\x21\x9d\xf8\x13\x02\x7d\xc2\xc2\x9c\x20\xdf\x86\xe7\x73\x3c\xf0\x2c\x48\x53\x54\xb0\x64\x15\x46\xbc\x2b\xf8\xb4\x8f\x40\x76\x00\x9f\x79\x81\x78\x03\x91\xb2\xbc\xce\x73\x05\x15\x2d\x5a\x64\x7d\x6f\x80\xb5\x1b\x7b\xfd\x5a\x6d\xf4\xed\x39\xa2\x9e\xf6\x1d\x53\xe1\x30\xf0\xb0\x0a\x2f\xe0\x3e\x2e\x7a\x4b\x61\x36\x6c\x69\x29\xac\x96\x53\x24\xbd\xaa\xca\xc0\x59\x32\x4e\x4d\x9c\x4c\x29\x19\x24\xe8\xb3\xe0\x72\x31\x09\x8d\x45\xfa\x50\x95\x6d\xb2\x7c\x35\x92\x39\x2c\x57\x42\x77\x52\x40\x3a\xa1\x1e\xa7\xc9\x78\x35\xb2\x31\xd7\x6b\xf0\x6a\xfe\x40\x89\xe9\xfe\x41\x93\x26\xff\x4a\x9a\xc4\x83\x7e\x22\x40\x4b\x54\x0d\x4e\x62\xfd\xf2\x89\x1f\xfc\x49\x92\xd1\x08\x00\x7d\x9f\x1e\x9d\xab\xf4\xba\x4e\xc2\x28\x22\xe4\xbb\x55\xe1\x1d\x1a\x86\xf9\x3e\xba\x32\x0e\x7c\xb0\x36\x44\x50\xb4\x5c\x41\x48\xbe\xee\x61\xf9\xe2\xfb\xb6\xab\xdc\xe3\xb6\x9e\x4b\x3f\x15\xe8\x5e\xa0\x22\x02\xe2\x51\x52\x24\x85\x3f\xd6\x18\x8f\xdb\x13\x3f\x51\x7b\x5a\x25\x75\x37\x55\x4f\x0e\x8c\x61\x69\x3c\xed\xed\x12\x84\x01\x45\xeb\xd4\x43\xd6\xef\xea\x48\x67\x7b\x47\xfa\x68\x03\x1b\xdb\x94\xa0\x95\xb0\x9c\xb8\x0f\x34\xb9\x5c\x9e\xa5\x7a\x20\x8a\x5a\x38\x29\xc0\x56\x46\xee\x02\x37\xc0\xdc\x47\x7c\xd2\x54\x11\xe1\xbe\x5d\xa4\x2a\x1c\x18\xf9\xe4\xe3\xe0\x27\x6b\x34\x17\x6c\xe1\x7f\x92\x76\x01\x3c\x0a\x73\xf9\x3a\x45\x78\x3f\x3b\xfe\x04\x49\x1b\x63\x73\xb7\x28\x73\x83\x3b\xaf\x40\xbc\xee\x50\xc4\xe0\x58\x30\x5c\xac\xb4\xaf\x53\xc1\x1c\x90\x31\x81\xb5\x5e\xa7\xb2\xb7\xe8\x09\xd1\x8b\xa5\x2d\x73\xfc\x29\x08\x58\x62\xdb\x3e\x46\x6f\x44\x10\xbf\x64\x40\x60\x99\xf6\x77\xca\xad\x8e\x6d\x7f\x8d\x0c\x08\x8c\x06\x10\x30\xf0\x36\x18\xf1\x82\xdb\x68\x69\x89\xe4\xeb\xb4\x12\x10\x04\x3c\x00\x34\xd1\x4d\xae\x1f\x98\x75\x79\x3f\x59\x32\xe4\xaf\xbb\x15\x8f\x81\x9e\x01\xc1\xdb\x3d\x8b\xb7\xc4\x27\xaa\xa6\x31\xb4\x69\x57\xc9\x18\xb4\x3a\x4a\xc6\xa0\xb5\x26\xdd\x99\xd8\xda\x7e\xb6\xdb\x4b\xce\x43\xfa\x42\x82\x34\x7a\x17\xf4\xfc\xb3\x3f\xd7\x51\xb3\x6e\xb7\x27\x1a\x16\xeb\xe1\x1c\xac\xb4\xa5\x3e\x3e\xef\xb4\xd3\xbc\xb5\xe0\xd1\xf1\x1c\xb4\x73\x32\x5d\x42\x6f\x0b\x0b\xe7\x21\xed\x29\x1d\x48\xf0\xff\xaf\x75\x1c\x24\x60\x78\x25\x1c\xd1\xa8\x9c\x4b\x85\xca\x7b\xc5\xb5\x3e\xa2\xf5\x21\x5c\xc4\x4d\xb9\x5c\x6c\xc3\xc1\xb0\x9b\xa4\x5c\x9f\x14\xa4\x8f\x9f\x8a\x5b\xd7\x4c\x8a\x49\x9a\x02\x50\x47\x2f\x41\xe4\x0d\xca\x1f\x17\xdd\x03\x6f\x41\xad\x49\xa3\xd0\xa6\x2c\xa4\x2f\x35\x2c\x55\x00\x40\xce\xa8\xfa\x5f\xb3\x4e\xff\x7c\xca\xab\xb7\x73\x05\x99\xe7\x0c\x26\x95\x81\x93\x06\x84\x44\xd6\x1b\xda\x11\x67\x2e\x52\xfc\xd4\x45\x51\x1f\xec\x16\x71\x6c\x7b\x36\xcb\x4c\xba\xba\xb3\x5c\x96\x68\x05\xfd\x0f\x13\x5f\x65\xbb\x8a\x90\x07\x15\xac\x0b\xb4\xc0\x5d\xc1\xe7\xe0\x9c\xf7\x7d\xb3\x87\x9d\xbe\x98\xe4\x5a\x80\x45\xd3\x12\x04\x21\xc7\x1f\xd3\xd2\xe7\xe3\x26\x0a\xe6\xc5\xd4\x42\x21\xd7\x05\x6d\x1f\xd7\x81\x4c\x22\xf6\xa9\xed\x7b\x32\xca\xf6\x2a\x52\x95\xb3\x9a\xb6\xf5\x2c\xf6\x12\xf6\xf1\x8f\x03\x9f\xf2\xde\xa4\xdb\xc4\x96\xde\xdd\xa1\x85\xcb\x7f\x34\x51\x54\x23\xdf\x98\x6c\xad\xf6\x6c\x9e\xa0\xe0\x49\x00\x6d\x2d\x17\x8b\x10\xf6\xc1\x91\x37\x8d\xc7\x56\x56\x14\x4c\xcd\x1d\x2d\xde\x75\x47\x71\xbd\x98\x51\x37\x5c\x36\x91\xe5\xd0\x15\x4b\x15\x85\x37\x3e\x6e\x68\x2a\x7f\xa1\x1d\x85\xa3\x31\xad\x41\x44\x6e\x3f\x08\x3c\x76\xfa\x07\x7e\x74\x73\x75\xd4\x4d\xa2\xb0\xa7\x86\x72\x4f\xa8\xa1\xdc\x13\xca\xff\xa4\x49\xdf\xa6\x61\x6f\x89\xb1\x76\x68\xac\xdf\x54\x54\xce\xcc\x91\x83\x02\xe6\x7a\xe5\x05\xd8\x28\xdf\x5d\x5e\x2f\x8a\x01\x3c\x35\x28\xa4\x93\xb4\x10\xf9\x44\x4b\x31\x5e\x51\x23\x83\xdf\xc3\x7a\xc7\x43\xfd\x31\xac\x35\x7f\x59\xd0\x52\x3a\xfc\xfb\xdc\xe5\x7e\x65\x19\x2a\x2d\x58\xa7\x8f\x14\x3b\xc0\x23\xd5\xe8\x31\xf1\xc0\x46\x36\xdb\xad\x1e\xfd\x99\x40\xbf\x95\x33\xba\x22\x72\xdc\x2b\x39\xbd\x7c\x49\x35\xdb\x37\x03\x45\xe0\xb1\x3e\xf1\xe6\x92\x6f\x4e\xae\x54\x20\x8b\x2b\xc9\x12\x4b\x9d\x09\x13\x1b\xdd\x90\x53\x74\x2b\xd7\x31\xac\xc1\xe3\xda\x3e\x98\x3d\xdc\xee\xa6\xc4\x13\x84\xc2\x3c\xa2\x14\x14\x8c\x9c\xa6\xb6\x23\x5c\x78\xbf\xa1\x79\xd6\xee\x0d\x0d\xc1\xd6\x95\x1e\xe6\x14\x72\x4c\x3e\x59\x6b\xe0\x25\x34\xfd\x51\x98\x8a\x8a\x2f\xcc\xf9\x3b\x78\x8f\x7c\xa2\x2a\x87\x7d\x9b\xdb\x5e\x8e\xee\x89\x50\x1d\x96\xaf\x5f\xb8\x11\x65\xcc\xb8\x1f\x12\x12\xba\x08\xb3\xa1\x30\x56\x57\x86\x06\x64\xe2\xd1\xbf\xbb\xd3\x78\x38\x4c\x21\xd2\x44\x2f\xdb\x4d\xc3\x9c\xc2\xde\x43\x87\x78\x7b\xb0\xac\x2d\x9f\xa8\x15\xed\x88\xf6\x4b\xbb\x03\xeb\xf9\x86\x36\xa5\x6f\x34\x51\x4f\x30\x4c\xbc\xe5\xed\xe1\xfd\x40\x71\x57\xdf\xff\x84\x61\x38\xd3\xb5\xb9\x30\x51\x49\x1d\x1e\xeb\x4c\x2a\xf4\x5b\x2d\xf5\xcf\xb6\x97\x34\x38\x92\xeb\x42\xb8\x17\x29\x12\x89\x9b\xee\x9b\x95\x98\x31\x33\x28\x3f\xb1\xe2\x49\xa5\xb3\x80\x6c\x5b\x17\xb1\x7a\xc3\xb0\x67\x06\xc9\x5e\x5c\x08\xf7\x53\x54\xd5\xef\xa4\xa6\xf0\x39\x1f\xf0\x84\xeb\x94\x17\xf2\xfd\x90\xd6\x3a\x16\xf1\x7b\x13\x45\x39\xce\x33\x8c\x42\x19\x55\x2e\x4e\xb8\xdb\x8f\x11\x50\x09\xfc\x5e\x4d\x86\x9e\x57\x17\x96\xa7\x66\x60\xfb\x60\x94\x76\xd3\x18\x0a\x3f\xeb\x71\x83\x60\x81\x53\xd5\x97\x13\x0a\xfa\x78\x22\xd8\xaf\x78\x65\x4c\x3e\xa5\x98\x64\x36\xaa\xb1\xb3\xd3\x4e\xbb\x10\x7c\x46\x4d\x89\xc4\x59\x9e\x42\x1b\x63\x77\xe9\xc3\x44\xc2\xd5\x0b\x9c\x9f\x08\x14\x07\xeb\x25\x55\x6b\x5a\x57\xf4\x2c\x7f\x4a\x29\xb0\x93\x28\x9c\xf7\xdf\x34\xf1\xb1\xf7\xa3\x26\x97\x97\x27\xb1\x73\x79\xb0\x3b\x1c\x91\x22\xa4\x3c\x4d\x59\x25\x5a\x31\x7f\x5c\xdb\xea\xe5\xe7\x57\x42\x22\x65\xf7\xf4\x30\xcc\x43\x2b\x45\x6d\x1f\x3b\xe6\x69\x38\x18\x30\x6d\x8d\xa3\x54\x71\x43\xa4\x57\xdd\x5a\x0b\xb3\xac\xb0\xbb\x14\xb4\xf8\x8a\xe6\x0c\xda\xb6\x56\x3e\x1b\x09\x6c\x3d\x46\xe1\xd9\x0e\x85\xcb\x82\xd0\xa6\x17\x06\x9b\xff\x8e\x2a\x25\xed\x57\x6c\x9a\x8b\xa2\x8f\xe8\x09\xa2\x4e\xd1\x33\xe5\x63\x0d\x49\x4b\xcd\xd8\x42\x2c\x1c\x79\xe1\x5d\x35\x1d\x77\xb7\x69\xe8\x36\x8b\xc2\xbe\xad\x0e\x48\xa8\xcc\x47\x99\xb2\x45\x33\x0a\xa3\xd5\x3d\xe5\x35\xa0\x89\xf9\xfb\x55\x3a\x68\x7a\x98\x32\xb7\xab\xa7\x99\xfd\x48\x3f\x84\xc7\x39\xb7\x08\x7c\x8f\xfa\xbb\xd8\x49\x32\xe7\xeb\xb1\xdf\x57\x9b\x40\x62\x79\x38\x0a\xf5\xa4\xd1\x79\x35\x69\x74\xde\xd5\x12\xbb\x36\xb6\x51\x71\xac\xe5\x01\x51\x6f\xc0\x2b\xf3\xc9\x56\x49\xf3\xb9\xb9\xf6\x4b\xb3\x87\x77\xa9\x2a\xf6\x5b\x6a\x12\xed\x54\xa0\x14\x0a\xd7\x75\x55\x7e\x1d\x36\x4f\x7c\x7d\xcb\xc9\x0b\x91\x81\x7e\x79\xb3\xae\xe9\x7e\x64\xa6\x8c\xa4\x8f\x21\x86\x71\x72\x6f\x87\x0e\x39\x51\x38\xef\x94\x5f\x31\x71\x61\xd2\xd5\x6a\xc1\x9a\x9c\x09\xde\xcf\x1f\x29\x92\x95\xef\xaa\x96\xf9\x25\x5d\xea\xb3\x66\x79\x75\x07\xdd\x3a\xb6\x07\x12\x05\x81\x26\xd1\x57\x23\xd9\xf9\x6f\x60\x2a\x59\x53\xb9\xa2\xaf\xec\xeb\xe7\x2f\x26\x32\x1b\x81\x45\x85\xa5\x5d\x61\xba\x40\xf8\x7c\xbb\x09\x3f\x96\x2c\xdb\xb4\x5b\x84\x51\x4e\x2d\x1e\x54\x09\xb6\x75\x14\x36\x6e\x5d\x91\x77\xdc\x6c\x20\x42\x69\xe7\xb6\x37\x8c\x69\xde\xc8\x56\x38\x04\x7e\x99\x9d\x08\x9f\x35\x0e\x82\x9a\x34\x5d\x75\x6e\x44\x68\x57\xfd\xb0\xc9\x7a\x93\xc2\x59\x5a\x44\x12\x20\xa0\xcd\xf6\xdb\x13\x25\xdc\xfd\xdb\x15\x6e\x8d\x22\x8d\x76\x94\x11\x2f\xe2\x69\x4c\x0f\xcb\x9c\xb4\x6e\xf3\xa9\x0e\xcf\xd5\x40\x3f\x3e\x09\x46\x7b\x66\xd4\x4d\x43\x13\x4f\x79\xf9\xb5\xdf\x9d\x54\x69\x28\xe9\x49\x0b\x8d\xa5\xdf\xa5\xdd\xb0\xdf\x2f\x4d\x97\x8b\x31\xd6\x03\xcf\x77\xb9\xee\xe2\x8d\xd4\xf6\x92\xb4\x5f\x71\xab\x7a\xde\x9f\x8f\x6b\x76\xb8\x8c\xa6\x17\x59\x06\xc3\xc5\xd3\x30\x8e\x22\xb6\xd8\x30\xc9\xba\x18\xc6\x03\x9b\x8e\xd3\x30\x46\x92\x03\x2f\xf7\x5e\xe0\x3b\x1b\xef\x29\xeb\x9b\xda\xe5\x70\x99\x11\x47\xb0\x8b\x0f\xb4\xa2\xd4\x83\x4f\xd4\xd6\xca\x93\xa5\xd5\x02\x73\xa5\xc8\x06\x1f\x04\xca\xac\x7c\x8f\xaa\x06\x70\x16\xe7\x95\x8e\xf8\x85\x4a\x78\xde\x37\xab\x3f\x41\x11\xac\x14\xde\xe9\xd1\x20\x30\xf9\x5f\xe1\xd6\x1d\x84\x6d\x41\x56\xfa\x63\xad\x2a\x82\xc6\xb9\x08\xc6\x96\xde\x4e\x54\xea\xe9\xad\x0b\xb1\x51\xf9\x62\xd1\x88\xf8\x88\x2e\x0c\xae\xf2\xce\xa4\x12\x80\xc0\xb4\x68\xfc\x1c\x5c\xed\xd7\xe8\x9d\xe2\x26\x9f\xea\x50\xe4\xe0\xd4\x9e\x4a\xd3\xef\x46\x18\x3c\x37\xd3\x43\x14\x1c\x84\xcd\xa0\x5c\x1f\x9c\x86\x06\xaa\xe9\x7d\x1d\xf9\x04\x62\x92\x5d\x6b\x1e\xff\xfd\x40\x31\x06\x77\xb3\x5e\x0a\x49\x1a\xba\x23\x91\x83\x56\x48\x94\x93\x13\x5f\x06\x30\xe3\x71\x12\xc6\xb9\xb5\x98\x10\x96\xda\xac\xaa\xd3\xaa\x2e\x59\x6e\x48\xe8\x5f\x8d\x2d\xa3\x54\x24\x2d\x86\xa6\x10\x3e\x35\x65\xcc\xdc\x52\x2d\x99\xd7\xb1\x43\x85\x4f\xb6\x29\x0c\xb5\xc7\xc6\x91\x61\x49\x41\xc1\x49\x5f\x0f\x14\x4e\xfa\x7a\xad\x8d\x3a\x37\xd7\xee\x26\x71\xd2\xf2\x99\x3d\x70\x11\x22\xb6\xd1\x40\xb4\x96\xda\xf2\xce\x07\x44\xcc\xa7\x10\x8b\x3f\xc2\x7a\xe1\x93\xaa\x54\xeb\x28\x69\x55\xa8\x37\xd5\x9d\x5c\x54\x23\x9a\xa3\xb0\xdf\x8f\xec\xc8\xc4\x18\xb2\x91\xa9\xec\x72\x55\x61\x9b\xb0\x8e\x30\x5a\x0a\x1f\x60\x25\x88\x96\x85\x9e\xf4\xcc\xec\xa8\x4b\x70\xde\x72\x11\x31\x69\x07\x6a\xbb\xc2\xe0\xe1\xe3\x90\xa1\x89\xfb\x59\x22\x05\x13\x2c\xcb\x93\xf4\x26\xf9\x58\xfd\x6d\x6a\xf3\x50\x98\x33\xbd\x7d\x53\xd4\x97\xaa\x52\x14\x59\xd3\xb7\x69\x36\x0c\xc7\x3b\x54\xd3\xf5\xee\x44\x19\xbf\x40\x15\x06\xaf\x2a\xc0\xc8\xa7\x3a\x0e\x2f\xbd\x76\xc7\x15\x54\xa2\xa4\x67\x72\x4b\xc6\x13\x66\x1a\x6c\x85\xd2\x37\xf4\x1d\xa5\x8f\x94\xaf\xed\x99\xa2\x8c\x6e\xa7\xd1\x91\x90\x46\x49\x19\x55\xba\x01\x13\x97\xe0\x5f\xc5\x3e\xe3\x3f\x52\x38\x3f\x20\x45\xf6\xd0\x4b\x71\x4e\xb5\xdc\x78\x48\x8f\xd7\x02\x05\x37\x61\x45\x2c\x51\xa7\xa1\x9d\xe7\xe6\xf6\x0e\x2a\xa5\xaf\x23\x33\x8e\x1d\xb5\xa5\xb4\x68\xc9\x4e\xf1\xf7\xd6\x72\xa6\xa3\x47\xdb\xbd\xa8\x88\x97\x38\x76\x80\x47\x7a\x7d\xe2\xeb\x88\x8f\x02\x1f\x41\x5e\xa3\x85\x8c\x9d\x7e\xb2\x09\x29\xd4\x37\x23\xcc\x2e\x09\x5d\x83\x57\x73\x58\xaf\xd1\x48\x94\x4e\x3a\x01\x22\x55\xda\x70\xeb\x81\x17\xe3\x58\x57\xa2\x24\xdd\x22\x1d\x99\x61\xcb\x4f\x2b\xb3\xcd\xe2\x93\xda\x9e\x3a\x38\x47\xd0\x45\x3b\x4e\x6d\x6c\x0b\xcc\x36\x09\x63\x57\x4b\x31\x79\xf9\xa6\xdf\xa0\x88\x16\xa7\xfc\x08\x13\xfb\x4d\xb8\x81\x8f\x51\xac\x10\x4e\x61\xdf\x06\xca\xa9\xc6\x04\x83\xe5\x88\x30\x94\x76\x4c\x9d\x0c\x12\x32\x3e\xdd\x22\x4d\xaa\x6a\xe0\xaa\x07\x53\xd7\x3c\x2b\x1f\x6c\xb2\x12\xef\x54\xb3\x2d\x13\x3f\x82\x72\x49\x95\x4a\xdf\x9c\xf8\xb5\x07\xe1\x31\x49\x2e\xcb\xe7\x8a\xff\xff\x9d\x5a\xe7\xe8\xc0\x81\xf6\xb8\xe8\x46\x60\x37\x9e\x52\xca\x34\xb7\x54\xfd\x5d\x87\xfb\xc7\x6b\xef\x7e\x61\xa6\x3d\x24\x9a\x77\xd7\x1b\x47\xfa\xc9\xc7\x2e\xfd\x34\x7d\x33\x76\xa3\x1b\x02\xc0\x6f\x29\x26\xce\x06\x21\xd4\xbe\x1d\x17\x3c\x92\x0f\x9b\x8b\xf6\x1a\x9c\xd7\xf1\xa0\x82\xe5\x6f\x58\xde\x84\x32\xd5\x84\x57\xef\x28\xb2\xa6\x77\x1a\x58\xbb\xe6\xdb\xfd\x64\x30\x32\xf4\x83\x68\x18\xdc\xd6\xd0\x5a\x66\xaf\x61\x0c\x86\x8a\x78\x5f\x7d\x75\x95\x48\xd7\x84\x21\x44\xc5\xb8\xa7\xeb\x76\x09\xab\xe9\x41\xf0\x59\xb7\x9a\x5e\x29\xd2\x30\xeb\x87\x94\x3b\x63\x7c\x66\xce\x29\x03\xb4\x94\x94\x50\xd3\x15\x53\xac\x3c\xad\xcb\xed\xa7\xe0\x3c\x60\xe5\x41\x26\x2c\xc6\x81\x36\x1c\xbc\xfa\xd1\xa6\xf8\x77\x60\x46\xdd\xc8\xc5\x7b\x3c\x3e\xa2\xb8\xb8\xb5\x44\x48\xdf\x8c\xc6\x36\x9d\xf2\x4b\x93\xa5\xd3\x90\xe7\x70\x3a\xc4\x9d\x65\xed\xed\x7b\x79\xb8\x1c\xe6\xa1\xcd\xe8\x91\x21\xdc\x98\xd2\x0d\xa6\x47\x13\xd5\x71\x03\xf1\x30\x16\xd3\xdd\x60\x0b\xd7\xfb\xec\xe1\xf6\x73\xc0\x73\x09\x61\x3a\x41\x9e\xd0\xcb\x3b\x83\xc4\x19\xc9\xdc\x19\x98\x55\xd6\x6e\xd1\x81\xd6\x54\x47\x47\xcd\x6f\x28\x86\xd3\x0b\xd8\xfc\xc0\x20\x82\xfb\x0f\x6d\x9a\x7b\x81\x07\xe6\x5c\x45\xfc\xe7\xb2\xda\x5f\x7c\x89\x37\xde\x59\xf8\x48\x98\xf8\x0b\x30\xf1\x48\xc3\x9e\x59\xf3\x6d\x7a\x70\x5b\xc0\xc6\xfe\x5b\x25\x8f\xf0\xcf\x50\xed\x91\xa4\x58\x39\x67\x86\x4c\x22\xff\x61\x52\x01\xa1\x6c\x11\x0c\x6a\x81\x67\xeb\x20\xcc\x73\x73\xf3\x9b\xc0\x58\xb0\xe1\x80\x73\xc2\xbf\xef\xee\x78\xf8\x8a\xcc\x32\x4e\xab\xaf\xbd\xa8\xba\x6c\x3f\xc0\x6a\x76\xf4\x9a\x87\x0e\xc9\x3f\x6c\xd1\x7e\x8b\xb9\x4f\x83\xb8\xe4\xbb\x28\xfc\xc8\x98\x9f\x8f\xf0\x8f\x4f\x54\x4d\xe0\xa4\x0e\xc6\x4f\xd2\xe5\x62\x0f\x7d\x47\x93\x11\x9f\x08\x9e\x51\x63\xd7\xe1\x28\x0b\x7b\x0c\x9b\x6f\x6a\xdc\x6f\x4d\xd7\x8e\x1e\x6d\xaf\x1a\xd3\x35\x53\x9e\xa0\xea\xc3\x89\x5f\xdf\x17\x75\x59\xfe\x56\xad\x45\x36\x7b\xb8\x3d\x32\xe9\x6a\x64\xe2\x7e\x25\xc8\x53\x43\x1c\x1b\xea\xf2\x4c\xda\x1b\xa6\xe1\xb2\x11\xb4\xbe\xb0\xd7\xa9\x79\xeb\x1b\x2a\x31\xeb\x25\x8b\x8b\xd6\xaa\xb2\xc5\xe9\x89\x2f\x5b\x9c\x56\xdf\xdb\xb7\xbd\xb0\x6f\xfb\x11\x28\x2d\x25\x2b\x56\x08\x62\xd4\xeb\x50\x2c\xb8\xef\x64\x07\xed\xa8\x6b\xf2\xdc\xe5\xaa\x92\xf0\xf9\x80\x61\x3d\xd0\x92\x11\x63\xdb\xcb\x49\x35\x85\x79\xe2\xe8\x6d\x3b\xce\x38\x47\xba\x79\x5b\xf7\xe6\x81\x7a\x45\xac\xf9\xae\x06\xd6\x84\xd9\xb0\xa5\xbb\x70\x81\x77\xe8\x57\xd5\xfc\x6e\xdf\x9a\x68\x97\x1f\x81\xb8\x39\xf1\x23\x10\x24\xf2\x3e\xbf\x79\x01\xf7\x89\x76\x37\x31\x8a\x73\x9d\xe2\x1d\x35\xd1\x80\x2a\xb8\xf4\xe8\x1a\x8a\x0c\x7d\xdb\x0f\x7b\x7e\x48\x96\xa9\xb9\x3a\x2a\xcf\x69\xad\x79\xe4\x37\x09\x33\xad\xee\x55\xe2\x63\x9a\x5f\xe6\x1c\xdd\x33\x8a\xa3\xdf\x82\xcd\x11\x1a\x04\x9f\xd1\x6f\xef\xb4\x9c\x7a\xf8\xb7\xb0\x1b\x50\x10\x3c\xa5\x56\xdf\x6d\x18\x50\x78\xdd\xdb\x1a\x1a\x7d\x45\x35\xe3\xaf\x38\x35\xfc\xb1\x13\x23\x6e\x29\x0e\xd3\x8b\x6a\x4c\xf6\x62\x53\xe8\xb5\x1c\xda\x95\x96\x0a\x2c\xdf\x50\xcd\xbb\x37\x5c\xdf\xa5\x78\x7e\xe9\x79\xa4\xca\xf8\xd9\x9d\x1d\x05\x09\xf9\x9a\x12\x42\xdd\xbe\xa6\x10\x27\xb5\xd4\xfb\xd0\xa1\x76\x11\x5b\x93\x85\xa4\x69\xdc\x72\xcc\xa4\xdf\xa7\x87\xc3\xc7\x1a\x2b\x6a\xc3\x7c\x68\x53\xd4\xe7\x71\x13\xac\x30\x07\xe7\x70\x73\xa2\x84\xe4\xce\x23\x1a\x41\x5c\x9d\xa6\x36\x1b\x27\x71\x16\x76\x99\xec\x49\xfa\xc9\x4a\x3b\xe9\x72\x53\x8f\x77\x64\x47\x5d\x9e\x82\x47\x2e\x71\x41\x13\x98\x5c\x50\xb1\x7b\x2f\x19\x8d\x92\x78\x77\xcb\x09\x13\x7c\x18\x78\xf9\x22\x9e\x13\x74\x55\x5b\x1f\xa5\x7e\x34\xf1\xc2\x46\x17\x95\xdc\xee\x3f\xd7\x1a\x93\x8c\x11\x15\xe6\x33\x4d\xe1\x9c\x40\x2b\xb4\xfc\x76\x84\xa5\x57\xf5\x4c\xc5\xd5\x9a\xc8\x77\x19\x16\x24\xe9\xc0\xc4\xe1\xab\x7e\x4a\x1b\xf1\xdb\xaf\x69\x6e\x9b\x5f\x73\xa6\x61\xd9\x44\x05\x28\xd4\x5a\x4e\xef\x00\x58\x17\x58\x17\x16\x21\xe7\x92\xab\x4a\xe2\x32\x1b\xe7\x36\xee\xb1\x0c\x0d\x3c\xdf\x07\xd8\x1d\x7c\x52\xab\x10\x11\x89\x72\xb8\x14\xc6\x21\x56\xad\x74\x4c\xbc\x57\x38\xef\xd2\xb4\x34\x19\xb8\x2a\x02\x5c\xd7\x9d\x89\x82\xb0\xdf\x51\x03\x90\x43\x93\x2e\x97\x71\x28\x5d\x08\x42\xac\x8f\x55\xb8\xf5\xb1\xca\x26\x69\x8a\x66\x9c\xda\x3c\xd3\x44\x76\x13\x45\x64\xa7\xde\x79\x9c\xa4\x79\x12\xb7\x94\x32\xc5\x5b\x13\x05\x5c\x7b\x4b\xf1\xbb\x2c\x86\x71\x7f\x9f\xc2\x35\x6f\x60\x0b\xbb\x81\x80\x05\x19\x5c\x00\xfb\x00\x5c\xf8\xf7\x08\x33\x25\xa8\x6b\x1f\x75\xa3\x5b\xcc\x14\xbc\xf8\x45\x25\x5c\x23\x15\x89\xcb\x5c\x0e\xe2\x1e\x14\x41\x09\xdd\xf8\xbe\x27\x14\xa9\xb6\xf8\xd3\x82\xe7\xea\x9b\x68\x60\xb7\x56\xe7\x8e\xcc\xb4\x29\x9b\xca\x20\x2d\xab\xa8\x3d\xce\x2a\x6a\x8f\xb3\x8d\x19\x0f\xc0\xba\x5c\xd9\x60\x2d\x87\x40\xb1\xda\x9d\xa9\x65\x13\xb3\x87\xdb\xa9\xc9\x90\xef\xe1\x8a\xf0\x2b\x7c\xdc\x44\x29\xda\x4f\x92\x51\xcb\x27\x3f\x3c\x18\x23\x73\xd8\x0d\xda\x31\xbd\x24\xee\xd9\x7e\x95\x20\xe1\xf7\x27\x8a\x47\xed\xf7\x9b\x1c\xff\x72\x98\x85\xc4\xb4\x87\x07\x2e\xbb\x99\x7e\x4c\x0c\x40\x13\xbd\x8c\x8d\xed\x62\x88\x09\x40\xa7\x33\xa1\xc5\x28\x9e\xa9\x19\xf3\x8c\xa3\x79\x1e\x88\xd2\xd6\xef\xeb\x13\x3f\x17\xc1\xb1\x0a\x6a\x94\xbf\xae\x30\x10\x8b\x36\xef\x95\xf9\x5c\xb4\x8a\x3b\x64\x70\xa8\xe2\x14\x3a\xae\x19\x3f\x93\x64\xcc\x9d\x2c\xd1\xa0\x52\x88\xb0\x0b\x9a\x8c\x9a\xb4\xdd\xe4\xb9\xb9\x8b\x28\x9f\x1b\x9f\x04\x7e\xbe\xff\x58\xf4\xf7\x7e\xbe\x6f\x72\xd3\x4b\x46\x63\x0c\xb9\xa1\xbd\x07\x4e\x12\x3e\x56\xa8\xb9\x22\x16\x46\xb1\x96\xd3\x5b\x44\xe2\x29\xa3\x92\x8a\xe3\x27\xb7\x69\xcc\xef\x41\x6c\xa0\x4a\xda\xaf\x6a\xdc\x25\xc4\x6a\x80\xe1\x43\xf8\x0d\xaa\x16\xf8\x83\x07\xb4\xe1\x70\xf5\x6f\x2a\x59\x4d\xd3\xcd\x92\xa8\xc8\x6d\xb4\x3a\x45\x91\x32\xa3\x7b\xe9\x93\xf0\xdb\x37\x28\x1f\x10\x85\xca\xcf\xf8\x48\xc7\x8e\xa8\x11\x6a\xa8\x83\xed\xa5\x76\x51\xb0\x11\xbc\x4f\x43\x17\xc1\x44\xe1\x12\x46\x60\x44\x6e\xc9\x4f\x63\x6c\x73\x18\xb3\x57\x92\x25\x5b\x61\xb3\x82\xee\x23\x1f\xbb\xd6\x56\x6f\x68\xe2\x9e\xfc\x61\xd3\x78\xa5\x0f\xb9\xc2\x34\x89\xa7\xd5\xe3\xb9\xac\x1a\x46\x97\x15\x69\x3b\x23\xd7\xf9\xe4\x13\x65\xf5\x07\x91\x8d\xe3\x29\xb5\xee\x36\x14\x47\x02\x2f\x2d\x84\x41\xf7\x5d\xa8\x31\x36\x89\xa8\xaa\x31\xfd\x8f\x62\xa7\xfd\x97\xf8\x0c\x50\x06\x4d\x88\x81\x17\x4b\xb7\xdc\xf5\x2a\x1b\x48\xdc\x6f\xea\x59\xcd\x9b\xb5\x71\xd2\xd9\xc3\xed\x5e\x81\x58\xdb\xcd\x0d\xce\xc9\x30\xdf\x85\xda\xec\xe5\x81\x03\x15\xfa\x67\x32\x9e\x00\x9d\x3c\x52\x6a\x66\x8f\xdc\x6c\x4c\xd2\x2d\x0d\x9f\x2a\x2f\x42\x52\x02\x37\x01\xd1\x19\xc4\xff\x6f\x37\x8a\x4d\xf6\xa2\x70\xd4\x15\x72\x4e\x17\xa7\x3b\x6e\xaf\x8b\x5a\x3a\xe8\x7e\xed\x62\x0f\xce\xb5\x4d\x3a\xb0\x71\x1e\xc6\x21\x13\x0a\x35\x56\xe0\xb7\x96\xce\xa8\xe0\xb2\x6c\xa3\x64\x4c\xdc\x51\x28\x7c\xb3\x9a\x8f\x4e\xc9\xdf\x51\x5b\xb1\x17\x25\x05\x4b\x1a\x6b\x51\x07\x3e\x76\xc5\x9f\xa5\x94\xd0\x2b\x2d\xdd\x86\xa5\x6b\x91\xfe\xac\x62\x9b\x4c\x93\x31\x63\x6e\x1d\xf5\x62\xf9\xf5\x02\xd1\x2c\xbf\x42\x20\x27\xfe\x53\xdd\xd4\xc4\xfd\x69\x2d\x39\x37\xf1\x95\xbf\xaf\xa9\xca\xdf\xd7\xaa\xac\xca\xfb\x15\x19\x40\x84\x8e\x12\xcb\xbd\x57\xa4\xdf\x1b\x0c\x7b\x92\xf6\x6d\x5a\xed\xfb\x9d\xd0\x7d\xbf\x13\xb5\x37\x7b\xe0\x00\x93\xd5\xca\x9b\x15\x2a\x78\x9f\x26\xdc\xc5\x37\xc8\xb4\xf2\x96\x06\xf4\x81\xd9\xf6\x91\x99\x97\xf7\x61\xa7\xb8\xe8\xc1\xf9\xe0\x7f\xea\xb5\x7c\xfe\xc6\xb3\x04\xb4\x17\xe9\x05\x85\x6f\x39\x83\x37\x89\xd4\xe5\xc6\x44\xf5\x39\x79\x5e\x1e\x01\x3e\x73\x6e\xa0\xff\xf2\xf7\x03\x25\xea\x8f\x38\x49\x31\xcd\xce\x3b\x36\xab\x06\x24\x54\x16\x25\x03\x23\x94\x3f\xcc\x6a\x1e\xf8\x40\xe8\xaa\xea\x34\x24\xdd\x2c\x37\x3d\x26\x0e\x91\xf1\x94\x7b\x13\x4f\x74\x70\xaf\x49\x68\x22\xeb\x19\xf7\x16\xe0\x52\xc1\xbd\xcd\xc7\x0d\xad\xf5\xd9\x76\x6c\x4d\x3a\x5d\xe6\x63\x0e\xd1\xe9\x86\x64\x37\xd5\x7c\xcd\xc7\x15\x0a\x00\x2f\x9b\x61\x16\x17\xc3\x74\xc4\xfb\x43\x91\x10\xbe\xe8\x1e\x64\x43\x2c\xc4\x88\x11\x89\xe3\x9d\x26\xbe\xbf\xd5\xcb\x95\x36\xcf\x2b\x49\x77\xa7\x6f\xe1\x41\x41\x8b\xd3\x25\x60\xfd\x90\x42\xdc\xd1\x13\xa4\xf7\x54\xda\x7f\x07\xb8\x7c\xfe\x84\x03\xa4\x74\x6d\x18\x0f\x76\xd0\x5b\x47\x15\x15\x7d\x46\x87\x35\x7c\x69\x61\x86\x97\xe5\xfb\x93\xd6\x97\x04\xa8\x72\xba\x02\xc6\x6f\xd2\xbf\x4f\x93\x22\x17\x7f\xc3\xa5\xda\x40\x97\x6d\x2b\x08\xd3\xc5\xe7\xa7\x94\xf8\x04\xe6\xe4\xd1\x83\xfc\x43\x58\x28\x44\xb0\x17\xd5\xee\x1c\x9b\x5e\x8e\xed\xed\x08\x2c\x16\x3c\x81\x85\x6f\x15\x6e\x03\x34\x9b\x4f\xd6\xf6\x29\x98\x5d\xb7\x45\xc5\x41\xa6\xdb\xc3\xe3\x11\xee\xbd\x9a\x96\xf7\x6c\xdb\xac\x18\x26\x6e\x73\x18\x28\x17\xb8\x78\x4d\xed\xd8\xbc\x1a\x4a\x48\xc8\x04\x62\x55\x36\x31\x87\xe0\x0d\x6d\x26\x7a\x87\x7a\x7e\x80\x2b\xf6\x6a\x30\xff\xf5\xda\x32\x9f\x3d\xdc\x8e\xc3\xa5\x25\x1b\xb2\x93\xd4\xda\x74\x15\xce\x5d\x6c\xc4\xfb\xb5\xa4\x7f\xf6\x70\x3b\xb2\x06\xf4\x90\xe8\x29\xae\xab\x51\xcd\x3a\xa8\xe1\xd0\xa1\xf6\xa2\x09\x85\xd2\x5a\x0a\x5b\x8a\x9d\x64\x43\x15\xbf\x8b\xde\xd2\xfe\xf2\xd1\xa0\x28\x58\x81\x08\xaf\x4f\x2a\xd4\x35\xe5\x4a\x63\xb5\x6a\x5d\x35\x45\x4a\x2c\xa8\xf2\xd2\x6e\x21\xc4\xfa\x10\xc5\x14\x1e\x9e\x0f\x94\x7e\xd5\x2e\xa5\x0d\xf8\x0f\x27\x4a\xe9\xff\xe9\x8e\xca\x4f\x9e\x06\x10\x59\x30\xe8\x52\x35\x09\xe3\xc5\xa8\x28\x73\xd6\xfe\x0e\x45\xb2\x74\x89\xc1\x21\x7c\x36\x51\x94\x04\x28\x55\xb8\x26\x5c\xf9\x6b\xa8\x76\x9c\x0d\x2a\x4d\x6c\x6b\x52\x08\x49\x69\x60\xb7\x1a\xb9\xaf\x6a\x8b\x9b\x48\x84\x2b\xb8\x60\x4e\xeb\x4b\x92\x55\x35\xbf\xbe\x51\x53\x39\x39\x38\xd7\xee\xf5\x09\x1e\xe3\xe8\xc9\x5d\xb5\xf7\x6d\x4d\x22\x71\xcb\xb1\xa4\x8d\xcc\x32\x01\x92\xb1\xa2\x65\xf6\xd2\xa3\xff\xce\x34\x79\xab\x91\x35\x59\x91\x0a\x01\x91\x74\xd1\xe8\x1b\xea\x6d\xb4\x72\x81\x13\x91\x17\x36\xef\x1f\xd3\x06\xe5\xe3\xc9\x13\xe2\xc2\x5e\x98\xfd\xf3\xe8\x9e\x0a\xc2\xbd\x7c\xdd\xa8\x72\x9f\x25\x1d\x5c\x69\x18\x68\x91\xba\x33\x81\x92\xbb\xf8\x36\x20\x0f\xb8\xf3\xcf\xae\x51\x91\x1d\x59\xf2\x4d\xcd\x85\x7d\x7f\x52\x11\x75\x5a\x98\x61\x53\xb4\x4d\xd9\xbb\xff\x88\x24\x35\x18\x56\x1c\xf8\x11\xd7\x6f\xa1\x3c\x2e\x5a\xca\xb4\x8a\x10\xa8\xbc\x87\x75\x81\xaf\x7a\x80\xd5\x2d\xda\xd6\xdb\x7f\x9a\x21\x9c\x4c\x8d\xe1\x44\x63\x17\x44\xd9\x07\x40\x28\x2c\x5b\x1e\x3b\x82\x99\xb8\x8d\xe1\x15\xc7\x3e\x5a\xee\x20\xf8\x92\x6b\xe4\x83\x84\x34\x58\xb5\xe0\x4f\x90\xd5\x94\x9e\xa0\xcf\xa3\x46\x61\x1c\xdb\x2c\xc9\x4d\xcb\xa3\x86\x4e\xab\xa9\xa5\xd3\x4d\x3a\x58\x8b\xa4\x8f\x0c\xf2\x28\xc7\xe7\x5a\xde\x83\xf0\xb1\x4a\x92\x6a\xe3\x7e\x92\x66\x2c\x67\xe2\x64\xe1\xae\xa9\xa6\xc9\x35\xd5\xbb\x1d\x9b\x2c\x4f\x57\x51\xca\x73\x52\x08\xbe\x88\x78\x57\x55\x38\x7e\x47\x7d\x6c\x31\x1c\x14\xa9\xdd\x59\x3e\x37\xd8\x14\x96\xcb\xc2\x32\xb9\xae\xa9\xcd\xfe\x1d\x2a\x2c\xc0\xc0\xb7\x68\x82\x1f\xa1\xd0\x1e\x90\xa7\x4b\x83\x5c\xcc\xf5\x8a\x71\x44\xfd\xa2\x03\xaf\x46\x71\x36\xd4\x9c\xdf\xa8\xe0\xc6\xc2\xec\x61\x2e\xc8\x9c\x87\x61\xe7\x13\x38\x41\x18\x94\xd1\x38\x4d\x96\xc3\xcc\xe8\xf6\x9d\x2b\x2a\xf9\xa6\xb0\xe2\x12\x59\x4c\x52\xb3\x9a\xa1\xe1\xca\x64\x8f\xf4\x97\x8e\x14\xd1\x13\xf1\xd6\x8c\x39\xcd\xc6\xdb\x74\x07\xad\x12\xb9\x8b\xf2\x32\x65\xce\x0d\x1b\x0c\x5b\xe7\x7d\x45\xda\x74\x45\xab\xdc\x6f\x77\x44\x5c\x79\x38\x0a\xe3\xc1\x74\xeb\x20\x2b\x86\x0b\xcd\xfe\x34\xd5\x75\x61\xbb\xf7\x77\x94\xfa\xc9\x3f\x6d\x20\x59\x9e\x6f\x0f\x12\xaa\x71\xa8\xf1\xfe\x79\x37\xde\xaf\x84\x64\x92\x2c\xdf\x57\x5e\xac\xe3\x9a\x29\xdf\x05\x8a\x54\xb7\xab\xfd\xaf\xf2\xc5\xb2\x65\x50\xc2\xc9\xd7\x68\x3f\xa1\x26\x00\x97\xec\xc6\x8e\xcb\x17\x29\x89\x3a\xdd\x07\x2a\xf9\x4c\x19\x06\x9c\xe2\x2d\xec\x66\x3e\x99\x28\x92\x91\x0b\xaa\xe4\x3a\x32\xe9\x32\x33\x4f\xc9\x1e\x62\x32\x5c\x3e\x59\xdb\xea\x31\xe7\x17\xe6\xdb\x8b\x61\x8a\x66\xb3\x94\x46\x54\xad\xc6\x65\x42\x23\x93\x1e\x23\xa1\x4f\xc7\xd2\xbe\x8f\xac\x02\x62\xc0\xd7\x34\x7f\xc5\xde\x35\x89\x39\xc7\x36\xcd\xc3\x58\x36\x9d\xac\x40\x5f\x2b\x3c\x1f\x78\xb2\x75\x1b\x2f\x97\x29\x7d\xb9\x45\x77\xab\x61\xc0\x47\x78\x23\x3a\xe4\xe2\x19\x2a\x7a\xb8\xaa\x56\xfe\xb2\x9b\x08\xd5\x41\xfb\xc4\x67\xe4\xef\x6b\xc2\xf3\x73\x81\x1f\x23\x89\xfa\x63\x94\x3c\x60\xa9\xd7\xa9\x1a\xc9\xc7\xaa\xb8\x32\x48\x93\x22\xee\x77\x4d\x14\xe9\xb2\x0c\x5e\xb2\x4a\xf9\x5e\x66\x1b\x7f\x5f\xed\xca\x5e\x64\x8a\x7e\x98\xec\x50\xd2\xed\x1b\x4a\x5d\x6c\x03\x57\x86\xe5\x74\x76\xa2\x38\x35\xee\xea\xe2\xfc\x86\x22\xe8\xed\xa5\x26\xac\xa8\x48\xe3\xb5\xf1\x71\xe0\x68\xf3\x3e\xff\x59\xfa\x4d\x74\xe2\xcf\x07\x3a\x10\xfb\x2c\x56\x1b\xe4\x98\x9f\xc2\x68\x37\x9c\xca\xf4\x1a\x3d\x8e\xca\x4d\x61\xbb\xef\xa5\x71\x4c\xfc\xc3\x8e\x8e\x67\x8e\x7d\x13\x3d\x67\xa4\xa7\xbb\xc0\xa2\x87\x0a\x1f\x13\xb9\xe0\x15\x80\x55\x13\xbb\xe3\x26\xde\x13\x0f\x93\x4f\xbc\x98\xdf\x55\xf8\x0b\x1e\xce\x64\xb3\x80\x94\xe7\xd1\xc4\x53\x43\xfc\xc1\xa4\xf5\x4b\x5f\xe4\xb8\x0c\x04\xf2\x08\xcb\xae\x4f\xb6\xff\x74\x55\x64\x94\x0a\x07\x7f\xf5\xaf\x90\xd7\xc4\xd6\xbe\xaa\xa4\x19\xde\x55\x45\xa5\xc5\x30\x46\x2d\x0b\xd8\x68\x44\x50\x7c\x5c\xd1\x10\xca\xc3\x96\xb7\x32\xcc\xd5\x21\xdd\xb3\xca\xd4\xb1\xed\x3f\x85\x67\xae\xe1\x2e\xd8\x27\x3c\xf4\x0f\x7b\x79\x0f\xa3\xa6\x72\x79\xaa\x4f\x72\x1b\x8f\x16\x1b\x8d\xa7\x35\x60\x3e\xaf\xc3\x30\xe2\xd1\x9e\x99\x78\x50\x3e\xe3\x8e\xe1\xa4\x5f\xa3\x4d\x43\x05\xb4\xd7\x9e\x59\x53\xd9\xd5\xad\x89\x92\xdd\x98\xee\x68\xfe\xd0\x89\x7b\x06\x9f\x65\x14\x26\x5f\x98\xf6\x92\x76\x40\x03\x46\xe5\xc5\x21\x66\xb8\x8d\xcb\xe6\x93\x06\x2a\xb4\xb1\x09\xfb\x80\xf5\xc1\xb2\x33\x5b\x12\xcf\xdb\x4f\x54\xaf\x02\x89\x85\x68\x4f\x35\xe4\x05\xe1\xe2\xe2\xaa\xe2\x9c\x3e\x19\x78\x2d\x8a\x93\x4d\x8c\xa0\x63\x1b\xf7\x1d\x56\x08\x6b\xf6\x03\x45\x09\x3a\x54\xb1\xfc\x07\x0d\xbd\x84\xb9\x76\x2f\x0d\xf3\xb0\x47\xda\x33\x5e\xe7\x15\x4d\x7b\xe1\x98\xa2\xeb\x47\x27\xf7\xb1\xde\xfc\x28\x6a\xd2\x4c\xb7\x94\x10\x7d\xea\x78\x4b\xc1\xc2\xcf\x4e\x14\x41\xec\x1b\xc1\xd6\xfe\x58\x79\x19\xfd\x30\xeb\x25\x71\x1e\xc6\x85\x45\x28\x8d\x27\xf9\xfd\x89\xda\xbe\xa7\x15\xb3\xd0\x5b\x15\x80\x43\x2f\x59\x99\x52\xf4\xa6\xff\x97\xee\x39\x60\x28\x00\x48\x36\xda\x13\xae\xb3\xd9\x5b\x2a\xbd\x2c\xaf\x1a\x38\x32\x3e\x86\x8b\x02\x27\x0c\xd2\x59\x3e\xd6\x11\x49\x12\x87\xa2\xf6\xcc\x78\x1e\x35\xd6\x70\xd5\x8d\xf7\x8f\x92\xde\x12\xaa\xff\xe5\xf3\x65\x06\x2d\xfa\x4b\x61\xd3\x6a\x48\xf7\xf2\x70\x64\x33\xd6\x26\x80\x3d\x06\x6c\x93\xc7\xde\x69\x1d\x23\x3c\x3d\x37\xa9\x50\xef\xd0\x8d\x23\x2c\xe0\xa5\xcf\x1a\x7f\xb5\x2c\xf6\xc0\x81\x76\x54\x1c\x2b\x52\xe0\xb9\xa4\xa4\x53\x7e\xb1\x84\xcd\xbe\x0e\x76\xae\x81\x9c\x2f\x0a\x97\xdd\xc2\x83\x11\x00\x1a\x0c\x4f\x1a\xbc\xe7\x58\x34\x75\x5d\xc2\x83\x73\x35\x25\x09\x78\xf2\xeb\x6a\x32\x11\x7a\x2f\xb2\x20\xb7\xd4\xde\x5e\x5a\x98\x69\x2f\xcc\xec\xda\xaa\x21\x0a\xdc\x37\x67\x1e\xca\xce\x3b\x4f\x46\x73\x2e\x58\x5a\x1b\x30\x33\x4e\x76\xdf\xdd\xed\x8d\x5a\x95\xaa\x0c\x27\x06\x26\x1b\x03\x21\xe9\x90\xa6\x47\x66\x1c\xa0\xb4\xce\x83\xff\xe2\x56\x31\x7a\x98\x65\x8c\x2f\xf0\x71\x6d\x47\x42\x20\xae\xfc\x98\x15\x0d\x64\x85\xa7\x9d\x77\x93\x05\x0d\xd0\xe5\x9e\x19\x87\xb9\x89\x06\x00\x49\xab\x42\x89\xe2\x66\xaf\xf7\xdf\x8e\xcc\x10\x25\x26\xd9\x10\xbf\xbb\x36\x2a\xb4\x36\x74\xf5\xb0\xc6\x7f\xd8\xc0\x95\x30\xdf\xb6\x7d\xb4\xe2\x4a\x27\x26\x90\x65\xd5\xea\xb8\x50\x17\xee\x5d\x98\x6f\x0f\xcb\x14\x5d\xf0\xdc\xf2\x6c\x14\x5d\xcc\x7a\xcd\xd0\x1e\x38\xd0\x4e\x16\x17\x89\x4c\x0a\xd6\x14\x78\x77\x99\x0a\x28\xf7\x32\x92\xbf\x6d\x44\xe5\x8b\x50\xef\x81\xd2\x64\x5d\x4c\x92\x7e\x96\x17\x8b\x8b\xe0\x2b\x13\x5a\x32\x3f\x0c\xc1\xa3\x87\xa8\xd3\x6e\xe8\x69\xf7\x63\xbd\x22\xb3\x59\x45\x45\x7b\x43\xf3\xc3\x6e\xb8\x82\x64\x6e\x23\xbb\x1c\xf6\xad\xe8\x1d\x56\x94\xcd\x05\x1d\x59\x2b\x70\x1d\x68\xe7\x43\x93\xef\xa4\xfb\x87\x19\x3f\x39\x51\x21\xf7\x93\x6b\xde\x7b\x9f\x53\x62\x11\xfb\x09\xc7\x02\x2b\x3b\x4d\xa9\xb4\x4c\x75\xc8\xe5\x0c\x8a\x30\x8a\x6c\x3a\x82\x4a\xe1\xff\xaf\x8b\x99\x9b\x6b\x67\x49\x3c\x98\x56\x48\xc9\x0d\x05\x62\xd9\xd9\xf1\x93\x40\x8c\x97\x05\x8e\xef\x5a\xcd\x41\x1d\x9c\x6b\x9b\x11\x91\xa2\xb7\x3e\x71\x82\xe6\x59\x55\x13\x5c\x4c\xcb\x78\x92\x05\x3d\x91\xdd\xb0\x80\x28\x9f\x7c\x62\x9f\x6b\x1c\x99\x98\x67\x24\xf1\xa7\x0f\xd4\xe0\x26\xe4\x31\x81\x95\xba\xaf\xc4\x49\xa2\x64\xc5\xa6\x7b\xcb\xa7\x06\x5b\x3a\xdd\xf1\x09\xcc\x26\x7d\x1e\xd1\x32\x08\x0f\xd1\xe5\x78\x82\xb8\xaa\xb0\x1b\x2e\xe9\x1a\xdc\xf6\x8e\xd2\xae\xe5\xc8\x17\xa6\xe9\x11\x56\x95\x50\xd9\x7b\x0b\x74\x73\xa2\x38\xdc\x7f\xad\x09\x6d\x9c\xc4\x3d\x10\x97\x21\x08\x03\x7b\x84\x40\x83\xca\x0b\x41\x60\x73\xa7\x6e\xdd\x67\xdb\x24\xd5\xcd\xfb\x4b\xfa\x3a\x74\xbd\xd2\xf1\x69\x9a\xcd\x28\x7f\x90\x99\x0d\x1c\x8e\xda\xe3\xf7\x3c\xd3\xfd\xd0\xa6\x28\x25\xcc\x73\x7a\xfa\x6f\x54\x01\x04\x82\xb9\xc8\x78\xef\x34\xa9\xc0\x0d\xc3\xbe\xed\x96\x59\x47\x4b\xd9\x26\xfa\x90\xd8\xa9\xa6\x11\x90\xd4\x46\x4a\x79\x02\x4f\x81\x7b\x3c\x7c\x52\x07\xb7\x2c\xcc\xb7\x7b\x6e\xdc\x64\x96\x3d\xcb\x05\xe4\x55\x7c\xa2\x60\xe4\x7d\x42\x56\x64\x2d\x45\x18\x78\x81\x5c\xa2\x90\x41\x34\xbc\xa2\xa1\x8d\x38\xf8\x13\x80\x9b\x62\xa7\xd8\xd0\xf0\xa8\x8d\x40\xb7\x6a\xf6\xfa\x47\x09\xbc\x3b\x9c\xcf\xa6\x26\xa2\xd0\x64\x03\x97\x2b\x45\xfb\xc8\x9a\x5d\xe4\xbe\x78\x74\x55\xe9\xd4\x1f\x67\x8a\x26\xd6\x66\x84\xf9\xc6\x73\x3d\xaf\x64\x91\xee\x60\xbe\xc8\xf1\x98\x97\xd7\x29\x0a\x34\x0d\x11\x49\xb7\x48\x45\xcb\x4b\x44\xd3\xfd\xb0\xd1\x65\x4f\xb7\x67\x17\x6d\xea\xa9\x77\x51\x99\x7b\xa4\xca\xe9\xd7\xd5\x30\xc7\x79\x45\xa8\x91\x9b\x30\xc2\x7a\x72\x7a\x59\x6e\x0d\xc1\xe2\x60\xff\x6c\x5f\xab\x70\x9d\xd9\xec\xa9\x96\x17\x47\x9d\x28\x8c\xef\x1d\x7a\xda\xe8\xc4\xec\xe8\x28\xca\xa9\x4d\x3c\x55\x34\x98\x50\xab\x05\xbf\xdf\x33\x6b\x4a\x9d\x9b\xc7\x71\x90\x87\x4d\xd3\x64\x30\x70\x94\x9f\x26\xe7\x82\xaf\xfa\x26\x01\x8c\x85\xf7\x8c\x12\x0a\xd4\xf0\xf9\xe1\x62\x3b\x80\xf9\x9d\xb1\x09\x81\x62\xbf\x0f\x2a\x33\x9e\x8d\xc3\xf7\xf4\x5c\x50\x99\x9e\xe5\xba\xda\x7d\x3d\xcc\x0a\x25\x11\xd4\x62\xce\xb9\x69\xc4\x15\x99\x3f\xa6\xdb\x96\xde\x9b\xea\xc3\xa9\xe9\xbd\x91\x25\x02\xd6\x3d\x2a\xbe\xf8\x07\x2a\x9b\x7b\x8c\x28\x49\xa6\xf1\xfd\x20\xcf\x4d\xce\x60\xf9\x5f\x60\xe3\x5c\x9d\xfd\xc8\x8c\x53\xad\xa1\x5a\x2a\x9c\xf4\xb7\xf0\x8c\x50\x2c\x9c\xee\x6c\x35\x5a\x62\xcc\xbb\x53\x9a\xa0\xb5\xfc\x49\x27\xd9\xfd\xe2\x7f\xf5\x02\x3f\xd5\x47\x95\x84\x34\x2f\xec\x0e\xba\x50\x57\x85\x38\x74\xc8\x03\xb4\x34\x52\x02\x57\x2d\x05\x8a\x96\xe3\x53\x3f\xd7\x24\x32\x3d\x4e\x93\x71\x1a\xda\xdc\x30\xf9\xb6\xc3\x75\x29\x9e\x81\xfa\x14\x40\xdb\x64\x4b\x5b\xa6\x56\xcf\xa9\xa9\xd5\xba\x1c\xf8\xec\xe1\xf6\xa2\xc9\x7a\x21\x93\x54\x01\x5c\xb4\x9b\x42\x68\x3e\x56\xf0\xd7\xd4\x84\x99\xed\xef\xa2\x9b\x42\xc5\xe3\x36\x31\xc5\x09\x0f\xb6\xae\x85\x80\xcd\x88\xa9\x47\xe8\xad\x22\x60\x45\x09\x5e\x18\x24\x15\xa3\xf0\x86\x82\xda\x75\x93\xa8\x0f\xd0\x92\x10\xc9\xae\xeb\x01\x7c\x2d\x29\x3a\x2c\x06\x83\x90\xc9\xfa\x44\x09\x90\x2e\x50\x34\x02\x15\x25\x63\x52\xa4\xa1\x15\x1e\x2f\xac\xc7\xfb\x15\x5b\x42\x1b\x8f\x19\x03\x6a\x16\xf7\x73\xed\xe7\x57\x86\x26\x9f\x2a\xb7\x11\xb2\xbd\x6f\x23\x50\x82\x1b\xba\x46\x7b\x4d\x66\x2b\x1b\xe2\x91\xdc\xa4\xe1\xe2\x62\x86\xe0\x86\x35\x38\xb8\x7c\x84\x27\x70\x4f\xcf\xb1\xac\x4f\x14\x4b\x7f\x9d\x28\xec\xb9\x76\xdf\x62\xb6\x92\x9d\x12\x4a\x35\x67\xf5\x68\xbd\xa6\x87\xea\x99\x71\x5e\xa4\x12\xe0\x08\xf0\x83\x3e\x29\x90\x10\x27\x46\x90\xe4\x3b\x3d\x19\x4b\x8b\xa7\x22\xb0\x8d\xd0\x6c\x80\xe5\x7f\x62\xcd\x87\xed\xbb\x48\xe6\x4c\x5c\xa8\x1a\x71\x38\xa9\xfa\xfa\xfd\x24\x1d\x95\xe1\x3a\xa3\xd1\xb0\xe3\x7f\x7d\xe2\x53\x8d\x5f\x77\xe5\xf9\x3c\x0d\x6d\x7f\xa7\xdf\x49\x2c\xc2\x2b\x9b\xb1\xe5\x94\xb3\x1e\x4e\x54\xe0\x7e\x43\x9b\x82\xeb\xba\xce\xf9\x40\xf5\xdc\xfa\x09\x74\x91\x14\x71\x3a\xdb\x43\xc1\x3d\xf9\x38\xcd\x44\x91\x8d\xb1\x0e\xa5\x3b\xa8\xfa\x16\x97\x9c\x2b\x35\x59\xa8\xfb\x2c\x7f\x80\xef\xe3\x13\xe7\xa2\x30\x54\xe1\xf6\x27\x53\x29\x29\xd5\x86\xb3\xae\x3d\xbf\x92\xa4\xf9\x70\xaf\x97\xbb\x60\xa2\x48\xc4\xe4\x00\xab\xa1\xef\xf1\x2c\xf5\x3a\x50\x24\xf8\x74\xc7\x2b\xb8\xdf\xe3\xdd\x08\x17\xf1\x90\x1e\x19\xcc\x17\xaf\x11\x51\x04\xac\x52\x71\x96\x37\x87\x52\xdf\xf6\x35\x45\x00\x73\x31\x50\x4d\x82\xae\x4d\xa7\x7d\xa1\xe7\xc6\xc4\xcf\x27\xff\x0b\xad\xe4\xb7\xae\xe2\xd8\x6d\x1d\x5f\x68\x1d\x25\xcb\xa5\x11\x29\xd7\x08\xfc\xe5\x35\xd4\xe3\xb8\x91\x43\xf7\x86\xd5\xf6\xbe\xd2\x84\x7a\xa3\x4a\x2b\xad\x10\x00\xdf\x26\x77\xcb\x2d\x73\x07\x7c\x5b\x49\xd2\x25\x52\x51\x73\x4a\xb6\x13\x35\xa5\x32\xd1\x54\xe0\x69\xb8\x1c\x46\x76\x60\xb3\xa9\xf2\xe7\xb0\x17\xaf\x07\x3a\xa5\x29\xb7\x3c\x60\xed\xbf\xaf\x2a\xc6\x61\x9c\xdb\x68\x1f\x39\x7e\x38\x6b\x66\x8b\x46\xb3\xf8\x0e\x1a\x17\xfc\x2f\x81\x6f\x8c\xff\x3f\x54\xef\x11\xb9\xd3\xd6\x16\x0a\x29\xd4\x59\xae\x63\x0f\x01\x2c\x77\x82\xd2\x2e\x04\x27\x3b\xa9\x5c\xcc\x12\x34\xe8\x86\xca\xfc\x10\x39\x38\xf9\x39\xdf\xc2\x88\xed\xca\x38\x49\xf3\x0a\x0f\xdb\x8d\x40\xe1\xf9\x6f\x28\x6b\x3a\x4e\xc3\x11\x91\x48\x94\x8b\x02\xa9\x09\xd8\xbd\x24\x9f\xf6\xd0\x41\xa4\xbd\xfc\x37\x2e\x9c\x0a\xe3\xdc\xf4\xf2\x5d\xbe\x96\xc2\x0b\x57\xe8\xf6\x95\x00\xfa\x47\xea\x4d\xff\x14\xb4\x21\x9d\x5e\x47\xf9\x76\x9d\xde\xf1\x91\x19\xc1\x33\x34\x91\xb5\xac\xa4\xd6\x2c\x31\x5a\x54\xc6\x33\x69\x81\xf3\x49\x2d\xa4\x3c\x38\xd7\xce\x56\x92\x34\x9e\x72\x9b\xe8\xbf\x60\xb1\x73\x18\xe5\x3d\xe4\xfd\x04\x3c\xf6\xa4\x22\xaf\x1e\x15\xa9\x99\x52\x3d\xc3\x3f\xc2\x85\x22\xbe\xba\x51\x2d\xfd\x34\x55\x3c\x87\xc9\x28\x89\x92\x41\x52\x64\x14\x66\xe0\xb5\xdf\x55\x54\x5c\x3c\x8e\x25\x63\x6b\x1e\x5a\xb1\x12\xad\xee\x76\x72\x06\xff\xf8\xe7\xe8\x0a\x81\x16\xd8\x81\x4b\x77\xf4\x5a\x07\x3c\xdb\x7d\x4b\xb4\x57\xbe\xf7\x34\xa5\x8e\xf8\x00\x3f\x5d\xec\xf8\xed\x14\x5e\x0a\x69\x97\x5f\xda\x24\x4f\xf7\x54\xb9\xa2\x36\x7f\xa8\x5b\x81\xdf\xd4\x11\xec\x05\x5a\xc8\xa8\x75\x02\x88\x81\x8a\xdf\x0d\x85\xec\xfe\xaf\x59\x87\x0c\xae\xe1\xb1\x1e\x48\x9c\x5e\xa3\xdd\x22\x74\x38\xae\x46\xb9\xfe\x14\xca\x87\xf0\x90\xc0\x48\x3a\x24\xd1\x01\xd1\xfb\xbd\x3e\xd1\x84\x63\x5f\xd3\xe3\x36\x98\x91\x61\xd6\x93\x5a\x7e\xfa\x5c\x3b\x8c\x15\x98\xa1\x82\xad\x16\xe5\x09\x8f\x10\xc9\xd3\x70\x50\xb8\xa4\x02\x6e\x6a\xe7\x9a\x7b\xb2\x2f\x3c\x49\xaf\x02\xab\xfb\x7a\xd3\x4c\x49\x2f\x0d\x47\x36\xd3\x32\x93\xf7\x35\x75\xca\x15\x55\x26\x3f\xeb\x1c\xc5\x62\x92\xe6\x85\xf3\x51\x9c\x2f\xd0\xde\x93\xdc\xa1\x9e\x41\xcf\xb7\xcd\xc0\x8b\x44\x71\x05\x2d\x50\x00\x84\xf3\x13\x99\x0a\x34\x2b\x53\x8a\xde\xe6\x3e\xb5\x7d\x60\x6a\x36\xc9\xe2\x8a\x7e\xcc\x27\x31\x49\x77\xed\xb2\x4d\x79\xe8\x0c\xc0\xc8\x8d\x4f\x96\xfd\xf6\x8b\xb8\x6f\x46\x6c\x85\x1c\x84\xa6\xfc\x43\x3e\xa9\x04\xd5\x69\xf6\xfc\x13\xe5\xe2\x12\xc9\xba\xd6\x81\x03\xfc\x77\x77\x61\x56\x61\x1c\xf6\xad\xf9\x28\xfa\xfb\x9a\xaf\xeb\x61\xa0\xa6\x8b\xef\xaa\xee\xf0\x0d\x5a\x1b\x68\xde\x61\x14\x0b\x16\x73\x0a\xde\x0e\x5f\xf5\xa9\x4e\x43\xb6\x3d\x12\x25\xa7\x46\x8a\xd0\xcf\x3a\x7b\xbb\x64\xa3\x68\xf5\xef\xfd\xfc\xb2\x49\x63\x1b\x45\x9a\xa1\xe1\x63\xcd\xd0\xf0\x71\x03\x61\xca\x5c\xbb\x88\x57\xc2\x0c\x6f\x1d\xbb\xf8\x7c\xe0\xb5\x35\xce\xbb\x11\x81\x64\xd9\xa6\x2b\x43\x1b\x8d\x24\xfa\x83\x7d\x24\x95\x34\x39\xee\x6c\xcd\xea\x16\x66\xda\x51\x62\xf2\x21\xd1\x32\x94\x7f\x88\xd5\xfc\xad\xc0\x07\x60\xdf\x72\x2b\xb0\x88\xfb\xc4\x43\x0b\x66\x04\x6c\xbf\xd7\x11\x51\xe1\xfb\x31\x05\x88\x85\x7b\xd3\x85\x2d\x4b\x71\x32\x5e\x6c\xa9\x5a\xcf\x71\x8d\xee\x3d\xae\x66\x08\xb2\x3c\xb5\x86\xaf\xff\x0b\x8d\xf2\x5c\xb2\x09\xb3\xaf\x14\xa6\xab\x86\x91\x85\xb1\xd3\xe3\x7f\x2f\x05\x5b\xf4\x1d\x16\x66\xda\x2f\xcc\xee\x57\xdd\xfe\xfb\xe4\x45\xe8\x5d\x7d\xe5\xb3\x94\x46\xf3\x30\x6f\xe0\x01\x41\xaf\xe1\xf5\x20\xb8\x6d\xad\x4d\x55\x44\xf8\xca\x1b\x47\x88\xb1\x7d\xcd\x97\x9b\xb8\xb3\xec\x52\x54\x0d\x22\x72\xdb\xfa\x24\xe5\xa1\x9b\xd7\xe0\xd2\x61\x03\x6e\x54\xc8\x4f\xe3\xac\x88\x72\x13\xe7\xbb\xcb\x2f\x60\x6a\x05\x4d\x8f\xf7\x43\x25\xbb\xf0\x63\x3c\x50\xfc\xfe\xeb\x74\x5b\x80\x60\xdd\x81\x9d\xc6\x3c\x14\xc4\x92\xb1\x49\x98\x66\x59\xe4\xe2\xb7\x3a\x26\x62\xe7\x83\x4c\xb0\x1b\x85\x81\xf3\x7b\x4c\x3f\xcb\xc7\xb5\xe5\xea\xea\x9f\x6c\xdc\x10\xc1\xfe\x8f\x95\xde\x0d\x5d\x2a\x2c\xc4\xf9\xc0\x47\x5c\x23\x13\xf7\x86\xac\x7a\xe4\x57\xef\x3a\x9e\xbf\x48\x97\xd4\x59\xbc\xbb\x49\xb1\x3a\x28\x04\x5c\x8a\xd4\x92\x61\x9e\x7c\xb2\xd6\x30\x74\xd8\x0f\x17\x17\xc3\x5e\x11\xe5\xab\x4a\x8f\xff\x5d\xa5\xe7\xfd\xae\x93\x61\x4b\x47\xa1\x12\x2f\x63\x09\x00\x3e\x51\x76\xec\x95\x24\x05\x60\x10\x3b\x79\xfb\x1a\x8c\x9a\xab\x91\x3b\x0e\xb3\x67\x3a\x7e\xde\xee\x7c\x55\x89\x46\xc9\x24\x99\xb1\xdd\xe5\x21\x3f\xbb\xd0\x1d\x46\x08\xfd\x21\x99\x66\xc7\x90\xe9\x54\xa4\xde\xa5\xf7\x0e\x63\xc5\xf3\xbe\xfc\x0f\x81\xe6\xd2\xf3\x97\x3c\x1a\x0f\xf1\x96\xa4\x65\x51\x55\x9d\x75\x1c\xd8\x0f\x3d\xba\x79\x68\xc3\x78\x90\x44\x7d\x36\xd9\x22\x59\xa7\xf5\xeb\xdc\x98\xf9\x2b\x42\xca\x2a\x8c\x9f\x4a\x26\xed\x78\xd3\x0c\x55\x2f\x4d\x56\x62\xc9\x46\x01\x5d\xb9\xae\x64\x05\xae\x4f\xf6\xf0\x67\xda\x9f\xfb\x29\xc5\x74\xfa\x1a\x95\x1b\x1c\xec\x65\x41\x36\xc8\xce\x35\x8a\x9b\xb0\x54\xaf\x6b\x2a\xfb\x0d\x7a\x82\x8c\xfe\xa3\x5f\x40\x6f\x1c\xe8\x3f\xb7\x86\xca\x18\xde\x31\x2f\x3b\xe8\xf4\x37\xc9\x71\xf0\xf4\x09\xec\x3d\xcc\xc9\xfe\xb5\xd2\x21\xc1\x52\x3c\x02\x64\xcf\x21\x29\x5d\xc1\xed\xdc\x44\x49\xb5\xbe\x3b\x51\x12\xda\xe0\x3a\xdf\xbc\xa5\xc5\x81\x4f\x4e\x94\xe6\xe2\x3d\xf4\xfd\x11\x68\x9f\xe0\x72\x17\x0f\x06\x50\x19\x4f\x54\xe9\xf1\xd4\x91\x1a\xec\x58\xa3\x95\x23\xed\x46\x5a\x15\x08\x0b\x6f\x11\x37\x37\x3e\x7f\x0a\xfe\x93\x33\x0b\xd5\x94\xfc\x8e\x42\x26\xe5\x59\xd1\x47\x3e\xeb\x04\x14\x3c\xd9\xce\xa9\x26\xda\xf9\xd2\x88\xd9\x38\x2f\x58\x28\x50\x0b\x92\xf0\x71\x4d\x4c\xf6\xe0\x5c\x7b\x6c\xd2\x9d\xf4\x7a\x45\xf9\xb4\xe5\x68\x14\xf7\x77\x7c\x65\x1a\x5a\xc8\xa8\xdc\x5e\x55\xd3\x93\x90\xe6\xc3\xdf\x6f\xa8\x0c\x3f\x1c\x8d\x00\x92\x9a\x52\x52\xf4\x78\x01\x02\x29\xf9\x09\xf7\xc7\xa5\x2f\xcd\x86\xa6\x9f\xac\x90\x87\x29\x1f\x8e\x23\x58\xf1\x2a\x5d\xb5\x30\x92\xd8\x4e\xe2\x7e\x04\xa0\x17\x93\xd0\x06\xff\x2f\x63\xff\x1a\x64\xc9\x79\xde\x87\xe1\xd8\x33\xb3\xbb\xc0\x2e\xee\x00\x49\x5b\x2c\xd9\x47\xfe\x53\xe6\x5f\x29\x8a\x71\x6c\x2b\x49\x29\x1f\xfa\x64\x76\x28\x08\x53\xe1\x60\x6b\x76\xb5\xa0\x51\xfe\x80\x77\xfa\xbc\xe7\x9c\xc6\xf6\xe9\x3e\xe8\xcb\xcc\x0e\xa2\x2f\xa9\x52\xb9\x52\xfe\x16\xbb\xa2\xa4\x9c\xc4\xa5\x44\x89\x64\x29\x32\x25\x5a\x8a\x6c\x51\xb2\xce\x88\xa4\x78\x31\x41\x12\x24\x80\x25\x40\x10\xc0\xde\xef\xf7\xfb\x75\x36\xd5\xcf\xef\x79\xde\xf7\xe9\xe9\x5e\x57\xbe\x75\xef\xce\x39\xa7\x2f\xef\xe5\xb9\xfc\x2e\x34\x0c\x45\x91\xb6\xd9\xf1\x9c\xef\xe6\x23\xb2\x2d\xa2\xdc\xc3\x39\x91\x56\xc3\x04\x3b\x19\x4a\xc7\xbc\xeb\xb4\x76\x3c\x33\x1b\x1b\x71\x7d\x93\x0e\xb5\xda\xb7\x2e\xba\x09\x1c\x47\x79\x61\x13\xeb\x78\x8a\xca\x17\xc9\x9d\x38\x54\xb0\x0d\xd3\x24\x1d\x47\xe1\xcc\xe6\x78\x53\xe5\xdb\xd2\xd0\xff\x93\xc6\x9b\xa4\xe0\x33\x9f\x6d\xb8\x2c\x62\xe5\x67\xd1\x06\x16\xf5\xa4\x87\x8a\x81\x7d\x43\xd3\x87\xd2\x32\x81\x60\x27\x3b\xa7\x4e\x3d\xd9\xf3\x3c\xbd\x7e\x49\xe7\xbc\x12\xed\x24\x9d\x94\xb1\x61\x9c\xb5\x14\x11\xe9\xb7\xa4\x20\xa9\x98\xfb\xaf\x97\x26\x83\x55\xba\x40\x3c\xb5\xf3\x87\x22\x50\x6e\x28\x2c\xc5\xfd\xc6\x6e\x29\xbb\x5e\x98\x96\x13\xe6\x53\xa3\x90\x78\x46\x93\x39\xcf\x28\x99\x13\x5a\x81\xc3\xc8\x26\x05\x72\x08\x94\x6a\xce\xa8\x66\xc4\x4d\x05\x9b\x39\xa6\x94\x76\x4d\x52\xd8\x38\x9d\xb0\xef\x1a\xca\xa7\x28\x8f\x60\xc2\x63\x93\x17\x58\x1d\x3d\x7d\x04\xb3\x6f\x4e\x3f\xa1\xe4\x7a\x07\x03\x9b\xd9\xa4\x88\x4c\x8c\x8d\x13\x6f\x05\x9b\x3b\x1f\xb7\xb5\x5d\x62\x6b\x56\xd8\x76\x09\xd5\x4e\xae\xd6\x0a\x4c\xd7\xb3\xaa\xae\xb8\x50\x6d\xb9\x1c\x0c\xc0\xb3\xd4\x40\xba\x0f\x15\x90\xee\xc3\x86\x4e\x53\x35\x78\x28\xda\x5c\xcd\xa2\x42\xd2\x17\x04\x2b\xdf\xd5\x58\xbd\xef\x36\x72\x9e\xdd\x2f\xed\xe9\xe6\x69\x62\x18\xe2\x8c\x10\xf6\x86\x86\x2b\xdc\x98\x76\x1f\xf2\xfe\x28\xc1\x5d\x25\xb9\x22\x67\xe3\xf7\xd3\x40\xc3\x56\x5a\x59\x71\x12\x4b\x10\xc4\xdd\x01\x69\x18\xfc\x22\x21\xa5\x84\x13\xaf\x45\xe3\x59\x2d\x93\xdf\xd1\x8e\x11\x9b\x75\xf5\xf1\xfa\xb7\xb5\x19\xd9\xf6\xd3\xb0\x48\x33\xd6\x51\xe4\x96\x8f\x32\x48\xba\xf0\xd0\x3c\x2d\x4f\x63\x5f\x6d\x44\x80\x70\x01\xf7\xc8\x27\x6a\xb0\xa5\x65\x11\x47\x89\x3c\x7f\xc1\x09\xfb\xf4\xea\x42\x9b\x31\x71\x5e\x64\x06\x4a\xbb\x4b\x73\x1b\x1b\xaa\x90\xc9\xd8\x6c\x34\x2a\x4e\xb7\xf1\x84\xe2\xe8\xf5\x32\x82\xd1\x98\x40\x67\x74\x42\xa1\x3c\x0d\x47\x0a\x0d\xb1\x4c\x66\xc1\xfd\x1a\x95\xd1\xd3\x21\x0f\x37\x56\xcc\x17\x17\xbb\x99\x49\xfa\xe9\x38\x5e\xd3\x4c\xc2\x1f\x4f\xbd\x6b\xd0\x35\x95\xff\xb4\xd6\xed\x27\x36\x1b\x94\x63\x40\x62\x9c\xf9\xd7\xaf\xbc\xec\x74\xbb\x9a\x79\xdc\x2b\x5d\x7b\xc0\x8e\x27\xc0\xf6\xe2\x26\xe0\xfc\x27\x2c\x8d\x19\x6f\xa5\x79\xca\x95\xce\x6c\xf2\x5a\xba\xc6\x7a\xd4\x08\xf9\xd0\x87\x41\x5c\xf8\xc8\xba\x32\xf9\x6b\x0a\x40\xd1\xde\x12\xc5\x31\x20\x7c\xdc\xc0\xaa\xb9\x0d\xfa\x5e\x40\x5a\x8c\x6c\xe6\xf2\x4c\xcc\xe7\x8b\x0a\xb4\x70\x51\x97\xe1\xc3\xfd\xb4\xc1\xa1\x54\x88\x5a\x20\x1f\xb7\x29\x7c\x14\x99\xe9\xdb\xb1\xc9\xf6\x73\x90\xce\x78\x43\x95\x8d\xb4\x0a\x6f\x2c\x67\xe9\xfe\x2a\x19\x78\x18\xf6\x6d\xf3\x23\xde\xfb\x52\xb7\x6f\xf3\x89\x89\xb2\x19\x0f\xf6\xda\x82\x54\x40\xb0\xb0\xd5\x55\x4b\x8d\xdb\xcb\x54\xac\x44\xd9\x30\x4a\xb8\x58\xef\x8a\x92\xd5\xe7\xf8\xa4\x56\x86\xc8\x6d\x42\xa0\x1f\x94\xfb\xbf\x1d\x78\x76\xcd\xb7\x95\x16\xd2\xc7\xb5\xaa\xa6\x6a\x38\x51\x68\x91\xc6\x7d\x55\x2d\xff\x77\x24\xf2\xe0\x4c\xcb\xf7\xcd\xf9\x2d\xc8\x9b\x61\xde\x69\xe5\x37\x56\x7b\x34\x46\x3e\xa0\x17\xdf\xa6\x47\xc4\xc7\x6d\x10\x8e\x55\x13\xb3\x2b\x1f\x36\xe5\xdf\x56\xc2\x74\xbf\xdd\x86\xc1\x18\xc6\x51\x51\x05\x27\x4a\x7e\xff\x98\xf2\xf9\xbc\x4a\x5b\x26\x82\x13\x6f\xce\x5c\x66\xb6\x18\x65\x78\xa0\xd8\x97\x20\x19\xc7\xc7\xaa\x80\x3a\x32\xe1\x7e\x9b\x11\x6a\x53\xa1\x0c\x5e\x70\xfa\x20\x1a\x30\xaa\x84\x94\x2e\xb6\x99\xa3\xed\x21\xd4\x52\xc7\x17\xe6\x7f\x84\x5e\x1c\x9f\x28\x42\x70\x61\xf6\x5b\x98\xb1\x38\x11\xbb\x17\x17\xbd\x93\xe0\x92\x6f\x7e\xf8\xbc\xfe\xb6\xca\x45\x2e\x06\x4a\x3c\xff\x42\x4d\x4a\x0c\x3f\x29\x21\xbb\x22\xc2\xf5\xd7\x76\xd0\xeb\x44\xea\xf0\xa6\x6e\x0b\x7c\x1f\xdf\x80\x8d\xf7\xe3\xc0\x77\xb5\xb7\x02\x49\x5c\x2b\xd2\xba\xd4\xc0\xf3\x4d\x00\x94\x14\x0b\x7c\xcf\x77\xbc\x47\x0d\x0b\x7c\xe0\x6e\x63\xad\xae\x96\x87\xb0\xcc\x96\xdd\x6e\xd0\x66\xe5\xf6\xb8\x82\x37\xfc\xc2\xd3\xd5\xd7\xa1\xba\xf5\x57\xca\xe2\xee\x02\xd2\x07\xd6\x1c\xa1\x5c\x44\xf4\x47\xe8\x7b\x31\xe3\x8e\x2b\x39\xe3\x2f\x4f\x6b\x86\xa4\xd5\x3d\x02\x46\xcd\xdc\x36\xc4\x35\x77\xb5\xfd\x13\x0b\xb6\xe1\xd7\x6f\xd3\x33\x42\xa4\x34\xb3\xee\x7b\x0e\x1f\x05\xaa\x7c\xfc\x11\x9e\x97\xc3\xfb\x57\xcf\x0b\x89\xd7\x96\xf5\x96\xe6\x7a\x94\x90\xa8\x55\x94\x0a\x60\x11\x88\xbd\x0f\x95\xd9\xe8\x87\x53\xc5\x29\x4f\x33\x9b\x50\xa0\x80\xdb\x80\x9e\x13\x1f\x37\x00\xaa\x2f\x2e\x76\x97\x05\x7b\x29\x3d\xc0\x93\x81\x82\x9a\x9e\x9c\xee\xf4\x36\x95\xf9\xdf\x54\x48\x9b\x19\x2a\x4d\x21\xf6\xfc\x3a\xd1\x6e\x1d\x92\xbb\xca\x07\x11\x30\x5c\xc3\x70\x02\x96\x66\x7b\x8f\x80\x09\xa8\x2a\xdd\x0b\x94\x42\xc2\x9b\x8c\x37\x40\xaf\x88\xad\x40\x44\x6c\xcd\x1b\x8e\x6e\x59\x27\x32\xac\x10\x74\xaa\xb7\x8e\x95\xf0\x41\xe0\xa3\xee\xad\xf4\xdc\xa9\xbc\x7b\xe8\xef\x23\xd7\xe6\xaf\xe5\x2a\xbc\x04\xb5\xf4\x30\xb1\x5a\xf0\x2d\x4b\x45\x55\x83\xa5\x34\xf8\xec\x36\x06\x14\x1b\xb9\x29\x57\xcd\xed\x3d\x1f\x7c\xdc\xa3\x41\x4f\xed\xd9\x5b\x9f\x26\x42\x3b\x32\xf7\xdf\x0c\xbc\xf5\xf6\x28\x5d\x49\x0c\xe9\x1c\xa8\x4a\xee\x47\x8a\xf5\xf4\x51\x4d\x38\xda\xc4\x51\xb1\xb6\x5d\x25\x43\x1f\x07\x4a\x84\xe8\x03\x5a\x18\xd8\xa6\x8c\x06\xb3\x58\x96\x75\x16\x17\x37\x48\x22\x76\xe3\x06\x3d\x45\x19\xe4\xca\x1d\x25\x7c\xbd\x8c\x32\xbb\xa3\x7a\x7c\xda\xc7\x83\xff\x32\x50\x03\xee\x30\xfd\x8c\xf3\x6a\x70\x40\xc7\xc3\x48\x24\xb1\x84\xc2\x1f\x01\xd3\x84\x5d\x39\xf8\xd3\xaa\x33\x77\x0b\x60\x17\xfe\x84\x7a\x2c\x63\x4b\x6e\x0c\x26\xee\x60\x38\xa0\x46\x7f\x15\x8d\x26\x3e\x71\x39\xa3\x89\xe3\x68\x68\x8a\x34\xab\xfb\xbd\x2f\x69\xbf\x77\x9f\xb1\xad\xd8\xc4\x24\x45\x3e\xe3\xcb\x47\x57\xe8\x8a\xd0\xc8\xfd\x1e\x66\xa1\xf0\x8c\x7c\x2a\x36\x89\xc2\xfd\xe5\x04\xc4\x6f\xe7\x00\xe4\x5a\x60\xac\xba\x2a\x78\x4d\xd9\x65\xf2\x49\x66\x4d\x3f\xdf\xda\x51\x9a\x78\xca\xae\xf3\x04\x16\x03\x76\xd3\xa4\x27\xa9\xa8\xc3\xaf\x38\x78\x75\x0b\xe0\xb4\x6f\xc3\xcf\xd3\xed\x62\x1b\xe0\x5c\x90\x4f\x34\xaf\x37\x2e\xd2\xa1\xad\x42\xa7\x6d\x9b\xda\xf2\x2f\x38\x6c\x40\xc7\x15\xa1\x66\x7b\x3e\x56\x38\xa7\x65\xb0\xb6\xf4\x94\x40\xd6\x96\x75\x1f\x95\x15\x36\x49\xaa\xe0\x96\x3d\x6e\xc4\xa0\x53\xaf\x6b\x78\xf9\x52\xad\x6e\xad\xc2\x8c\x27\x26\x33\xa4\x7b\xf6\x10\x6b\xa2\xc7\x23\xa5\xd8\x45\xc5\x7d\xe5\xd2\xb7\xe4\xac\x75\xaa\x8f\x60\x4d\x38\xaa\xa2\xa7\x28\x8e\xcb\x9c\x74\xc4\x9c\x6e\x25\x92\x50\x3e\x76\x41\x81\x19\xa6\x49\xf4\x06\xdf\x8a\xb3\xdd\xdb\x37\xe7\xd0\xb4\x3a\x2c\x69\x44\xed\xd5\x40\xed\xe6\x11\x15\x88\xab\x99\x06\xd3\xfc\x3b\x4d\x72\xfe\xae\xee\x28\xe5\xc8\x9c\xa1\x54\x6a\xbe\x9f\x50\x2b\xf8\x38\x32\xe3\xa8\x53\x7b\x96\x1e\x54\x75\x5c\xdb\x06\x87\x59\x9a\xe7\x33\x3e\x30\x43\xa2\x2e\x50\x33\xaf\x41\xf1\x95\x87\x96\x06\xc0\x6a\x9b\x99\xd1\xfe\x7b\x1d\x67\xac\xf1\x28\xa2\x54\xcc\x91\x2d\xeb\xce\x79\xbb\x8a\xb4\x79\x33\xc2\xc6\xf2\x55\xb5\xc9\x7c\x55\x45\xef\xe3\xb4\x6f\x59\x54\xa8\x7a\xb8\x20\x56\x5f\xc7\xaa\xc2\x27\xaa\x14\xb6\x9a\xd9\xbc\x88\x2d\x33\x4c\x01\xe9\xda\xa2\x18\x12\x80\x69\x89\x8d\xbd\xa7\x67\xe6\x54\x9c\x7d\x71\x71\xe3\x56\x35\xa8\x37\x6e\x35\x30\x82\xbb\x97\x76\x57\x53\x27\x16\xd1\x8d\x57\x7c\xb7\xc3\x0f\xf6\xc3\x8d\xd0\xed\x0b\x5f\xea\x8e\xca\x64\x98\xad\xe9\xfc\x00\x7a\xf5\x7c\xac\x1c\x4a\xb2\x94\x9e\x49\x35\x2e\x11\x75\x7e\x59\x95\xc7\xbe\xac\xd2\xc2\x95\x74\xcd\x0c\x59\xb9\xcf\x95\xe2\xaa\xef\x97\x52\xdc\xe6\xab\xdf\x37\xf7\x42\x77\xcd\x1a\x62\x81\x20\x20\x02\x5c\x13\x30\x55\x3e\x56\xab\x68\x6c\x57\x6c\x52\x8c\x9c\x80\x27\x47\x69\x81\x12\x09\xbd\xd0\x98\x90\x68\xe8\xc5\xa9\xf1\x80\x48\x71\xa3\xe9\x38\x47\xac\x53\xd3\x4f\xd6\x8b\x60\x36\x0b\x63\x13\x8d\x73\x1d\xa7\x5d\xac\x89\x30\x37\x19\x1f\xbb\x9d\xfc\x1e\x37\x70\x30\x75\xef\x07\x4a\x2d\xee\x7e\x8d\xb7\x54\x96\xe3\x59\xb5\x59\x33\x35\x16\x6b\x17\x44\x97\xf8\x78\xaa\x1c\xb7\xce\xd6\x92\xa3\x34\x2d\xb6\xd2\x7f\x82\xb5\xc3\xc4\x0b\x3e\x51\x5b\x13\x86\x9b\x70\x4c\x6b\x0d\x9f\xb6\xba\x40\xb5\x06\x72\x2a\x88\x4b\x00\x78\x99\x8f\xa7\xcf\x39\xc4\x55\x9e\x86\x11\x3c\xa5\xf9\xa5\x60\x6d\xf9\xd7\x53\x25\x39\xff\xaf\xbd\xee\x41\x94\x53\x26\xd0\xa1\x5a\xbf\xf8\x45\xd3\x9f\xf2\x49\x8b\x3c\xe8\x9e\x2e\x71\x08\x4c\x94\x20\x98\x6b\x33\xfe\x93\x1f\x18\x59\x53\x45\x7d\x10\xdc\xc5\xc6\x7a\x1f\x61\x9b\x70\x97\x55\x2f\x7e\x67\x8f\x6e\x50\xca\xe4\x1e\x8c\x6c\xfa\x9c\xc2\x03\x56\xf1\x18\xf1\x02\xf8\x78\xdd\x57\x6b\xc0\x34\x17\x6c\x39\x7a\x7e\x7f\x81\x10\x8f\x4f\xda\xf2\xbb\x68\x3c\x76\x75\x24\xc4\x33\x47\x95\x2e\xc5\x51\xd7\xfc\x35\xfd\x15\x93\x84\xac\x96\x26\x9d\xfc\xef\x6b\x5d\x59\x68\x12\x4a\x33\x6b\x33\x43\x6a\xf7\x67\xba\xbb\x76\x51\xd9\x40\x6f\x27\xd2\x19\xdd\x5c\xad\xaa\xa6\x89\x3d\x60\x86\x43\x9b\x79\x21\x56\x8c\x90\x19\xd5\xd0\x9e\xe9\xd5\x06\x5f\x06\x5a\x89\xc8\x07\x56\x39\x86\xe8\x0a\x3e\xab\x3c\x7a\xc7\xb6\x18\x45\xc9\x90\x74\xd3\x9d\x63\xb4\xd3\x5e\xe0\x74\x0e\x1f\xfc\xa9\xd6\x59\x3d\xa3\x5a\x0b\xb7\x29\xcd\x41\x4d\xf9\xa4\x0a\x64\xc6\x29\xb8\x47\x52\x8b\xda\xff\xf4\xba\x67\xc7\xee\x7f\xba\xa7\x18\x7b\xe6\x40\x34\x2e\xc7\x98\xd2\x2c\x7c\x42\x97\x21\x22\x28\x2d\xbd\xfa\xcc\xc6\x65\x58\x98\x04\xe2\x61\xa2\x3f\xa5\x70\xea\xe7\xd4\xaa\xd9\x04\xce\xef\xda\x05\x92\x09\x7d\x1a\x29\xe2\x3f\x0b\x14\xb5\xf4\x03\xec\xf7\x22\xf1\xe3\x6d\xd5\x6d\x41\x7e\x43\xae\x53\x06\xb9\x40\xc9\x43\x5a\xe4\xd3\x46\x51\xb1\x55\x51\xee\x41\x87\x43\xd8\xb7\xbd\xe7\x21\xf2\xa8\xe2\xe3\x6f\x40\x4e\x46\xcc\x7f\xac\xb1\x0a\xbc\x3c\xbf\xb7\x3b\x88\x9c\x2a\x8a\x10\x65\x15\x1b\x87\x37\x19\xb1\x91\x6f\x42\x7c\xc8\x70\x5e\xc6\x12\xc2\x81\x1b\x81\xe2\xc9\xde\x98\x3e\xa9\xc4\x29\xb2\xa2\xc6\xf0\x67\xef\x7c\x3e\x09\xfe\xee\x43\xf6\x79\x16\x0f\x4d\x57\xa2\x24\x8c\x78\x56\x39\x93\x56\xdf\x2e\xbb\xd0\x78\x35\xbf\xdc\x7d\xad\x4c\xa2\x14\xb5\x2b\x60\x02\xd1\x02\x40\xeb\x83\x0b\xc2\xdc\x2a\x74\x6f\xa6\x1f\xe5\x21\xd5\xab\xdd\xfb\x3c\x81\x3b\x12\x6b\x14\x4f\x30\x5d\x2e\xf3\xd1\x33\x8a\xb0\xfc\x15\x2c\xe2\x00\x4e\x81\x70\xee\x18\xb6\x5e\xff\x1c\x7e\xab\x6e\x65\xac\xe6\x82\xe8\x3c\xd1\xb8\x71\xf1\x71\xf5\x52\xb8\xc5\x1c\xf8\x6a\x23\x66\x0c\x32\x13\x48\x34\x73\xfb\x06\x36\xcd\xcc\x80\x20\x3b\x3c\x5e\xcc\x67\xea\x49\x61\x95\xd6\x01\xb8\x7c\x97\x02\x69\x11\x12\xf6\x35\x8e\x0b\xaa\xac\x33\x28\x63\x20\xc4\x5f\x70\xe6\x19\x1d\x27\x4c\xf0\xeb\x53\x4d\xbd\x2b\x93\x3e\xed\x13\x68\x35\x22\x47\x78\x4f\x89\xbc\x3e\x82\xeb\x50\x46\x92\x3e\x8a\xa8\xc6\xac\x68\x01\xfb\xda\xa7\xae\xa6\x66\xe9\xb2\xcd\x8a\x3c\x4d\x94\x5d\xdc\x41\xd5\x3b\x3b\xd8\xe2\x14\xb5\x7b\x4f\x77\x60\x78\x4f\x71\x24\x42\x4f\x28\x74\x7b\x4a\x1e\x11\xee\x85\xe3\x42\x26\xc4\x29\x5a\xd4\x59\x2f\xe7\x55\xc5\x8f\xb3\xaa\x97\x7a\x16\x84\x07\xc7\x58\x77\x80\xfe\x59\x9a\x93\x22\x5f\xfd\xd0\xd6\x41\x61\x32\x27\x4f\x27\xfa\x82\x1d\x25\xc8\xa9\x58\x66\xc7\x55\x52\x91\xac\xd9\x8e\xc2\x96\x9e\x09\xea\xf6\xbf\x4f\x29\x77\x73\x5b\x54\x09\xb8\xef\x19\xb2\xa4\x0e\x93\x8b\xe9\xc7\xb0\x8a\xb0\x63\x3f\x22\x8b\x1b\x81\x0a\x33\x6e\xd0\xd0\xc2\x32\x70\x4a\x6d\x32\x67\x15\xbe\xa2\x4c\xa2\xe2\x49\x8d\x61\xe7\xf2\xbb\x28\x9d\x6f\x66\x6f\x0b\x98\xe4\x9b\x58\x2d\x51\xa5\xe8\xa0\xfa\x8e\xfa\xfd\x5b\xd8\xd6\x31\x5b\x37\x02\xef\x6f\x72\x2d\xf0\xe2\xdc\x97\x02\xc5\x58\x3a\x4e\xd7\x89\x6d\xfc\x81\xaa\x6c\x7f\x13\x93\xc9\x39\xde\x29\x3b\xfe\x87\xf7\x74\x56\x22\x5b\xe4\xd0\xe5\xc7\x5e\x7f\x8a\x8b\x30\x48\x19\xd9\x18\xdb\x09\xc7\xef\xf2\x3d\xd9\x36\xd7\x08\x5a\xc5\x38\x80\x52\xdd\x2c\x0f\x90\x7a\x5e\x59\x4c\xa7\xfb\x6d\xbe\x9a\x8e\x4d\xb2\xad\xa3\x64\xe5\xab\x9b\x46\x82\xdd\xa1\xb5\x85\x8f\x29\xec\x13\x1f\x1d\x05\x85\xf8\x37\x74\x4d\x02\xa0\x92\x78\x2e\x2f\x97\xc3\x74\x3c\x8e\x8a\xc2\x72\xc3\x53\x5b\x0c\x62\x85\x7a\xb2\x57\x5b\xa1\xaa\x47\x87\xae\xf2\x7d\x17\x41\x8d\xed\x38\xcd\xa8\xd7\xb3\x7b\xe3\x92\x22\x13\x3d\xdf\xf3\xbc\xdb\xa7\x1b\xa2\x2d\xfb\xe6\x5e\xe9\xc6\x56\x94\x2e\x51\x5c\x45\x08\xcb\xc7\x6d\xc9\xf6\x24\x4b\x43\x6b\x7d\x6c\x8f\x60\xe1\xa4\xf2\x79\x3e\xe9\x50\xf3\xe3\xa8\xdf\x37\x00\x20\x39\x90\xb1\xeb\xb4\x3f\xd6\x80\x2d\xcd\xef\xed\xc6\x51\x11\x0d\x59\xb4\xdb\x51\xd0\x4e\x29\xa1\x2e\x2d\x47\x9e\xef\x8f\xc6\x13\x4e\xa9\x50\xfd\xbb\xa5\xe0\x71\xb7\x02\x79\xc8\x61\x9a\x84\x51\x1c\x19\x22\x61\xf8\x52\x0d\x28\xf3\x7c\x5c\x3d\x1c\x07\x70\x1f\x64\x06\x5e\x9e\x25\x4c\x7a\x5e\x71\x68\x4d\xfa\x2d\xc1\x71\xfa\x0a\x81\x1d\x4f\x46\x26\x8f\x72\xaa\xcc\xbb\x42\xcd\xcb\xfe\x44\x39\x0b\xa0\xa6\x43\x52\x61\x8e\xdd\xb4\x34\xe7\xd8\x4d\xca\x63\x27\x2b\xc3\xfd\xd6\x92\xb7\x83\xb3\x0d\x58\x58\x70\xb6\x01\x0d\xd2\x7c\x15\x95\xa4\x13\x40\x33\x94\xa0\x8d\xaf\x46\x79\xa4\x73\x61\xf2\xfd\x39\x74\x10\x75\x57\x1d\xa1\xed\x65\x9a\x92\xd8\x37\x3f\x56\xac\xfb\xe3\x1a\x6e\x7c\xa5\x4d\xe0\xa0\x88\xe2\xa2\xd6\xa7\xac\xb1\x2e\x5a\x45\xb2\xc3\x91\x19\x4f\xcc\x30\xb1\x33\x9e\x77\xc6\x24\x53\x9d\x77\x00\x8f\x76\x2b\xa8\x29\x7d\x95\x85\x15\xb2\x83\xab\xb0\x78\x46\x72\xb3\x01\xbb\xf7\x25\x46\x41\x77\x3c\xba\x1e\x44\x31\xa9\x6a\x6f\xae\xb5\xbc\xfa\x6a\x37\x37\xe1\x7e\x65\x74\x5a\x1f\xe9\x8a\x6a\x94\x8e\x27\xb1\x2d\x6c\xff\x31\x55\x1b\x3b\x44\x2f\x4c\xe4\xcb\x7c\xc5\xf0\xdb\xb8\x41\x66\xff\xd1\xfb\x47\x68\x72\x94\xfa\x19\xe0\x10\xdc\x08\x94\x8a\xc7\x0d\x8a\x33\x9c\x35\xbe\x57\xbc\x39\xde\xe8\x7a\x2c\xcd\x75\x73\x6b\xf2\xd4\x29\x02\x4b\xdf\xc6\x5f\xcb\x31\x25\x1c\x3f\x88\x48\x8d\x80\x6a\x8c\xe8\xd0\xad\x6b\xfd\xff\x43\xda\x96\x9a\x1d\x6c\x39\xa5\xa0\x1b\xe2\xde\x45\x63\x34\x54\x8b\x4b\x3f\x33\xab\x2c\x1d\x2f\x90\xd2\xea\xf6\x04\xe8\xf3\xb8\xab\xbf\x2e\x97\x63\x24\x5d\x5a\x36\xcc\xe9\x84\xb8\x00\xe3\x5f\xfa\x5c\x2d\xb1\x61\x3f\x2d\xaa\xf8\xd3\x41\x8f\x7e\x4c\x37\x28\x9a\xaf\xcf\x2a\xb3\x5a\x6b\x8a\xb1\x4d\x8a\xed\xde\x16\x18\xa6\x27\x8e\x48\xaa\x45\x08\xaa\x2f\x41\x3c\x75\x4f\x6d\x6c\x1f\x61\xc7\x64\x76\x46\x50\xa3\x6a\x48\xdc\x92\x59\x58\x29\x6c\xef\x7c\x71\xde\x43\x1e\x84\x50\x73\xef\xb9\x9e\x5f\x9c\xb8\x19\xe0\xf8\xf9\x0b\x0b\xce\x1f\x55\xed\xcc\x1b\x78\x11\x78\x10\xf7\x14\x79\xc7\xe6\x13\x5b\x45\xdf\xf1\x1a\x55\x65\x05\xab\xe0\x43\x81\xeb\xb4\xdb\x60\x36\x1d\x0b\x6a\x70\x16\x1f\x47\xfd\xb1\x36\xe3\xbd\xa9\x50\x11\x13\x53\x64\x51\x98\x0e\x3a\x5e\x4c\xe9\xac\x56\x18\x3f\xeb\x42\xb5\xcc\xe0\x32\x66\x3c\x64\x10\xdc\x42\x87\xf3\x5f\x58\x70\xc2\x29\x7e\xee\xf6\xa3\x7c\x1c\xe5\x39\xc4\xe2\xe6\xb9\x28\x87\xc2\x3e\x1f\x37\x56\xb7\x57\x5f\xed\x26\x76\x95\x55\x5d\xa4\x10\xa5\xf9\x1d\x9b\xa7\xee\x2f\x74\xf3\x51\xba\xca\xc8\x02\x84\x3d\x77\x02\xa5\x8a\x70\x52\x09\x98\x9c\x57\x69\x44\x31\xb2\xc9\x4e\xdf\xe6\x3e\xaa\xc5\x10\x4f\xe0\x0b\x98\xa3\xc1\x51\x1e\xa2\x20\x68\x19\xa0\xde\x7c\x4f\x83\xcb\x31\x8b\x45\xa5\x06\xed\x08\x59\x6e\x14\x44\xe5\xab\x8a\xa7\xb5\x7d\x5d\x21\x49\x2f\x2b\x2e\xe1\xeb\xa5\xcd\x21\x91\x5f\xfd\x98\xb3\xbf\x53\xaa\xd2\xb8\x24\x65\x9d\xfc\x82\xd3\x22\xf0\x3b\x8b\x3d\x60\xaa\xc5\x6a\x66\xb3\x6f\x1e\xda\x8d\x0f\x02\x8d\x12\x68\xd1\x40\x4a\xd2\xc2\x2c\xf3\x9b\x70\x4a\x3c\x5e\x95\x47\x01\x70\xd7\xd2\xfd\xf4\x23\x35\x77\x21\x64\xb6\x77\x83\x2a\xf3\x11\xaa\x7d\x8b\xfa\xe6\x4a\x3a\x8e\x0a\x91\x49\x51\x86\xe0\x2f\xd4\x9a\xc5\x1b\x87\xda\x4a\x3e\x59\xb4\x62\x37\x99\xad\x1d\x99\x2a\x2a\xed\x91\x06\x98\xef\x57\x5e\xee\x92\xab\xd1\xae\x5d\x0e\x72\x47\x17\x2b\xdc\x2a\x47\xb0\x8b\x0a\xe7\xe4\xe2\x04\x19\x3d\x00\xe3\xf2\x66\xcd\xea\x85\x85\x2a\xde\x7c\x42\x29\x73\xb3\x57\xab\xf8\x16\x68\x3b\xd3\xff\x1d\x2f\x0c\xa1\xc0\x79\x95\x79\xb1\x91\x3a\x5b\xd9\x53\x12\x87\x50\xfa\x0e\x96\x25\xa9\x64\x57\xcf\x1a\x69\x0b\x0a\xf8\x28\xe6\xf3\xad\x63\xd2\xdf\xd4\xf0\xdb\xe3\x34\x83\x10\x1f\x5e\x56\x5d\xae\x22\x33\x49\x3e\xb0\x19\x5a\x02\x28\x62\x1e\xd7\x36\xd5\x4a\x51\xe4\xcf\xfd\x62\x60\xa9\x94\x9b\x6b\xf3\x1a\x56\x6e\xc6\xc8\x3a\x5a\x03\x83\xf9\x61\x12\x15\xa3\xad\xda\x89\x44\xeb\x09\xff\x70\xaa\xb2\xc0\x0f\x94\x9e\xe4\x07\x78\x8e\x48\xc3\x9b\x5e\x55\xfb\xe6\x16\xbb\x45\x16\x8d\x1d\x59\x44\x90\x2e\x1d\xa7\xb4\x73\xd1\x37\x6e\x62\x93\xef\x67\xad\x78\x68\x13\x30\x1b\x8b\x4f\x1a\xa1\xf3\xd2\x5c\xd7\xbe\x5e\x72\xf9\x03\xa3\xfb\xc3\xc0\x8f\xf4\x0f\x6b\x55\x67\x13\xe7\xcf\xf8\xce\xd2\x75\xbc\x0d\x8c\xe8\x2d\x50\x3d\x40\xad\xa8\xd3\xa3\x90\x11\x4b\xd2\xfb\xd4\x67\x15\xb0\x16\x25\x12\x82\xe2\x52\xdb\x15\xec\xe5\x31\x2e\x0e\xf2\x7a\xc4\x6b\x1d\x8d\x12\x64\x6b\x7f\x34\x55\xc4\x17\x3c\x4f\xfc\xc8\xef\xe9\x0d\xe6\x02\x46\x1f\xf7\xbf\x50\xb2\x10\xd7\x9c\x6a\x98\x88\xce\x18\xbd\x5d\xc9\xdf\xdb\x1e\x7b\x68\x94\x4d\x80\x02\x66\x7b\x9a\xa0\x8c\x18\x13\x9a\x49\x19\x87\x29\x92\x67\x21\xa5\x55\x17\x2b\x9c\x34\x89\xe1\x07\x65\xd2\x37\xd5\x26\x6e\x62\xae\x0b\xb8\x3e\xad\xaf\x4a\xb7\x81\x17\x43\x53\x54\xc1\x7c\x3a\x19\x45\xe1\x43\xd5\x4f\x14\x5b\x1e\x52\x50\x84\x64\x91\x49\xfa\x27\x78\x4a\x92\x14\x29\x3a\xd3\x61\x2d\xb0\xf7\x01\xd2\x3d\x3e\x09\x14\xda\xed\xdb\x14\xe1\xe1\x91\xff\x70\xea\x8d\x3e\xaf\xd1\xdb\x63\x6d\x9b\xa9\x2f\xfa\xfe\x8b\x96\xd1\xfc\x42\x37\x2f\xd2\x2c\x92\x06\x98\x2c\x9c\x8a\x26\x70\x3e\x78\x46\x07\xc7\x11\x51\xb7\xe8\x2a\x9c\xf1\x9a\xb7\x3f\xbc\xa2\xfe\x38\x1f\x45\x93\x89\x73\x09\xc1\xea\xf3\x40\xd5\x95\xae\x4d\x7d\x3d\xf3\xb8\x7b\x77\x13\x13\xee\x37\x43\x99\x5d\x08\x6b\x50\x65\xe1\x63\xed\xcf\x6f\x56\xd2\x2c\x2a\x2c\x3a\x27\x82\x6f\xf3\x15\x53\x0e\xa8\x90\x72\x9c\x0d\xea\x0a\xb2\xce\xca\xec\xb6\xf2\x19\xa9\xbf\x56\x17\x2d\x82\x87\xc2\xc7\x81\x77\xc7\x1a\x9b\xa4\x1c\x18\x4a\xe8\x32\xb8\x1e\x21\x47\xf8\x70\xaa\x0c\xa4\x3f\xac\x29\xd0\xa7\x39\x1a\xe4\x62\xf9\xa6\xd8\x99\x17\x14\xea\xc9\x46\x31\x61\xbb\xc4\x93\xa1\xe3\xcc\xc0\x6e\x2b\x15\xa3\x77\xa8\x54\x2f\x96\x94\xbe\xe1\x58\x8c\xca\x7c\x27\x3d\x14\x00\x8d\x0e\xd2\x67\x9c\x05\xe0\xa2\xc8\xbe\x72\xd1\x13\xe3\xf5\xba\xd6\x6d\xfd\x0b\x55\x80\x44\xc1\x05\xc7\x97\xb1\x57\x62\x01\xf9\x0f\x18\xa7\x48\xa1\xaf\x4c\x55\x2f\xfe\x43\x05\xac\xba\x13\x3c\x57\xf3\x7c\xcb\x80\x3a\xa5\x45\x09\x31\x3b\x22\x2e\x3e\x6e\x13\x1a\x22\x80\xf1\xd8\x14\xa3\x8e\x82\xb2\xde\x99\xfa\x56\xfc\x1d\xf5\xe8\x4c\xd6\x7f\xce\xd3\x26\xae\xd5\x4d\xbd\x28\xea\x12\x44\xbb\xd7\x98\xd8\x41\x0c\x16\x51\x2c\xab\x82\x7f\xac\x14\xb7\xe8\x3e\x28\xc6\xfd\x8d\x4f\xa3\xb2\x89\x62\xd9\x5b\xca\x15\xfc\xbd\x40\xcd\x50\x06\x40\x22\x50\x7d\x14\xf8\x04\x60\xaf\x98\xf1\x87\x64\xeb\x30\x45\xd2\x08\x1b\x58\xe9\x12\x4b\xef\xb3\x4c\x80\x42\xad\xeb\xe6\xd4\x4b\x41\xdc\x44\x11\xd2\x79\x44\x78\x9f\x84\xd9\x75\x99\x3d\x2b\x51\x1a\x5b\x11\x9b\xc2\x24\xd8\xd2\x73\x70\x9f\x03\xd8\xfc\x79\x6f\x53\x85\x46\x53\x8a\x53\x0c\xae\xe8\x5e\xa0\x54\x3d\xce\xd4\x57\x73\xb5\x9d\x8f\xd2\x32\x37\x49\x3f\xd7\x34\xee\xbb\xb8\x4b\xf4\xf8\x79\x55\x93\x37\xfb\xa4\xab\xaf\xa6\x86\x25\x49\x3c\xc1\xa3\xba\x4a\x29\x14\x3f\xaf\xb2\x2c\xd3\x8f\xa0\x00\xbd\xdd\xbd\x8a\x59\xa4\xad\x08\x7c\x3a\x60\xbb\x63\x42\x80\x45\x8d\xc8\x02\x18\x68\x94\xc9\xce\xa0\xca\x88\x0c\xf3\x98\x46\x0d\xde\x54\x3d\x28\xa8\xcd\x3f\xd6\xf9\xc2\x97\xf8\x91\xcf\xae\x2b\x9e\xd7\x4f\xb5\xc7\x89\xf0\xd4\xf0\x2c\xb7\x43\x98\xc8\x71\xc5\x9d\xa5\x01\x90\x2b\xfc\xef\x3a\x61\xfa\x1d\x7a\x13\xc2\x30\x68\xc6\x9a\x7b\xba\x79\x9c\xae\x4a\x4f\x12\x7b\x24\xeb\xa6\xf2\xc9\x7a\x1b\xa1\x65\x64\x21\x39\x8e\x8b\xc3\xb8\xfb\xca\x54\x91\x6b\xbf\xa2\x5c\x9c\x62\xb3\x6c\x63\xdb\xdf\xd6\x71\x0a\x9f\x4f\xd2\x42\x8b\x08\xe9\xbc\x52\x0e\xe6\x34\x4d\x10\x1e\xf8\x76\x27\x3c\xb0\xe4\xe1\x1d\x2d\xa5\x91\x41\x94\x44\xf9\xa8\xe3\x19\x62\x67\x54\xcf\xf0\x8c\x76\x8c\x8e\x56\xec\x93\x04\xbc\x42\xab\x9b\x4b\xa7\x52\xf4\x44\x8a\x83\xad\xe3\x10\xad\x48\xc8\x30\x6f\xd3\x2b\xc7\x2e\xf8\x88\xe2\x39\xdd\xd1\xfa\xb5\x77\xb5\xf1\xca\x91\xa9\x77\x87\x85\xab\xb2\xe0\x79\x94\x60\xed\x21\xea\x53\x62\x4c\x73\x7b\x8f\x0d\x59\xa6\x3a\x38\x6b\xc3\xf1\x87\x36\x31\x59\x94\xd2\x1c\x44\xa0\xbd\x81\x78\x1a\x63\x91\xe1\xa8\xc2\x1a\x70\x44\xb1\x6a\x6f\x35\x31\xd5\xab\x50\x0a\xac\xa1\x9b\xce\x2b\x87\xc3\x6b\xad\xa8\x05\xfb\x7a\x19\x91\xc7\x10\xc2\x1e\xac\xf6\x40\x61\xf2\x71\x5d\xa7\xa3\xca\x83\x56\x2c\xe4\xe9\x79\x8b\xa4\x07\x23\xdb\xe5\x93\xca\x10\x36\xcd\xed\x0e\xba\x05\xa9\x18\xd2\xb3\xe5\x7a\x7c\xa0\x9a\xcc\xff\x22\xf0\xad\x97\xff\x13\x03\x1e\xaf\x03\x64\x2c\xd7\x13\xac\x9e\x00\x1e\x34\x57\x23\x1c\xca\x5e\x79\x00\xfb\xec\xef\xed\xe9\xf3\xca\xa7\xb5\x20\x36\xb5\x33\xb9\xc7\xf4\xfa\x40\x99\x67\x7e\xd0\x00\xb9\xcf\xef\xed\x8e\x53\xdc\xaf\x92\xb4\x3c\xa6\x24\x38\x8e\xa9\x7e\xca\xeb\xa5\x5d\xb6\x21\x81\x0f\x58\x05\x81\xd6\x12\xa7\x88\xb0\x24\xdb\xe1\x79\xb5\x4d\x9e\x77\xce\x5b\x83\x28\xb6\x8f\xd2\xcf\x30\x9c\x98\x86\x2b\xd6\xea\x99\x9e\x87\x7b\x41\x5c\x17\x51\xc2\x13\xc4\x9b\x84\x56\xbc\x6c\x1f\x68\x12\x21\xae\xd9\x06\x44\x33\xc6\x7c\x53\x00\x14\xb0\x95\x71\x94\x98\x8c\xa6\x9a\xe3\xf7\x39\x62\xd4\xc5\x1a\x5f\xdc\x8e\xc7\xf4\xfc\xaa\x8b\xc4\x82\x02\xc6\x09\x1f\xeb\x45\x71\x30\x48\xb3\x3e\x80\x43\xd8\xfb\x0e\x4d\xbd\xbc\xec\x21\x95\xff\x67\x65\x92\xb0\x54\xe1\xa2\x93\x7f\x53\xbd\xe5\x63\x0e\x80\x58\x16\x05\x99\xf6\x54\xb7\xa7\x10\xcf\xf3\x0e\x0a\x2d\xfb\x59\x3f\x8d\x63\xdb\x07\xc0\x51\xc6\xc8\x37\x11\x68\x08\xb2\xd8\xe7\x20\xc7\x1a\xe9\xf7\xc2\x42\x77\x85\xe3\x2d\xa1\xf1\x56\xfb\xa9\xf4\x5b\x5b\x4a\x9c\xd4\x82\x76\xcd\x6e\xa7\x83\xa6\xb4\xfc\xea\xd1\x70\x5e\x40\xe0\xe5\x15\x5e\x4f\x7e\x07\xef\x4f\x84\xf1\x14\x24\xe6\xb6\x86\xbe\x9f\x51\x2d\xf3\x61\x56\x0e\x06\x4a\xef\xe8\x6c\x6d\xa6\xf8\x1c\xc2\x8e\x27\x71\xba\x26\x56\x47\x6c\xa0\x34\x55\xf8\xdc\x26\x97\xf4\xe5\xa5\xb9\x6a\x07\x5d\xb1\xf1\x26\x9d\xa4\xc3\xda\x5e\xb8\x69\x2f\xbb\x48\x44\x9d\xbc\x34\x2d\xea\x73\x8b\xde\x11\xea\x09\x57\xbd\x08\x45\x34\x06\xb5\xc1\x0d\x2c\x09\x7c\xa2\x10\x81\x2b\x26\x89\x0a\x74\x4b\xc4\xcc\xb3\xba\x59\x51\x78\x53\x1d\xe9\xd8\x30\x16\x91\x0b\xa8\xca\x33\xef\xec\x54\xb7\x3d\xac\xd9\x8f\xba\x89\x80\x8d\x35\xf2\x38\x78\x42\xc1\x5c\x86\xe3\x6d\x74\x2b\x52\x6d\xec\x38\x21\xbd\xbf\x54\x45\xbb\xf7\xb5\x60\xeb\x61\x25\xb0\xf6\x0e\xcd\x75\xa9\x54\xb4\xc9\xfc\xc5\xa6\x24\x2e\x3e\x2d\xa9\xd2\x71\xa3\xc1\xc1\x27\x35\xc8\xd7\x38\x89\x66\x55\x9a\x7e\x1c\x79\x32\x9f\x04\x9e\xac\xc4\x09\x16\x9f\xd4\xbd\x59\xc7\x83\x12\x1c\x61\x96\xa3\x57\xe4\xc7\x53\x0d\x4c\x65\x15\x55\x4c\xca\x6a\x37\x26\x50\x6b\x5d\x38\x65\x61\x41\x8e\x95\xdc\x11\x1b\xd7\xcd\x7a\xc5\x84\x0b\xd8\x0a\x25\xd7\x52\xe0\x8a\x0b\x75\xb5\xed\x96\x36\xce\xd8\x78\x39\x3d\x86\xb7\xd0\x6d\x0a\xd4\x65\x87\x5b\x49\x7e\x7e\xb6\x8a\x8e\xb1\x6b\x3d\xd5\x53\xe5\x64\xec\x09\x10\xb5\xb8\xa5\x75\xed\x6f\xb4\xc9\x6f\x93\xee\xd7\x8c\xef\xd6\xff\x99\xaa\xd2\x9c\xa5\x9c\xc3\x53\xf7\x5c\x4e\x99\x99\x64\xbf\xdb\x5a\x9c\xf1\xb7\x03\x76\x9d\x55\x69\xd6\x30\x8e\x96\x3b\x7e\x14\x1d\x54\x93\xe3\xa0\x02\x35\x50\xf6\x92\xa4\x69\x32\x53\x45\x2a\xd8\x1b\xa1\x61\x8f\xc5\x00\x3a\x31\xd8\xda\x8f\x4c\x37\x99\xf1\x7f\xbe\xbb\x34\x47\xbf\x81\xf5\xee\x7b\x1a\xb3\xfe\x3d\x15\x8c\xf7\xa3\xdc\xe4\x85\x65\x08\x95\x68\x3f\x55\x5f\xcc\xc7\xc1\x27\xdc\xc0\x79\xad\xcc\xa2\xbc\x1f\x29\x8f\x6b\x67\x94\xeb\xcc\x31\xf5\xfe\x9f\xd9\x95\x30\x55\x93\xf1\xa4\x9a\x8c\x4d\x0d\x8c\x5d\xbb\xba\x99\xf5\x8d\xce\x6a\x37\xc2\xc8\x3a\xa2\x4a\xf8\x47\x1a\x6b\xce\xde\x97\xba\xcb\x26\x8e\xd3\xd4\x8b\x89\xcb\xc4\xf0\x6c\x28\xed\x33\x74\x43\x35\x1e\xc7\x66\xbf\xcd\x9f\xf1\x65\x8f\x6d\x3d\x95\x99\xfe\x34\x50\xf6\x42\xc7\x95\x4f\xde\x6d\x0c\x59\xbc\x05\x66\xbc\x49\xb5\x08\x31\xae\x54\xd4\x7d\xe7\x12\xe2\x7c\xb2\x3a\x77\x3e\xfb\x59\x4f\x25\x72\x6d\x98\xc7\x00\x70\x40\x37\xef\xc1\x94\x4a\x5e\x82\xee\x50\x09\xc5\xbd\xc0\x6b\x93\xfe\xf7\xcf\xae\x57\x69\x87\x78\x36\x29\x1f\x84\x8f\x54\x45\x33\x37\xf9\x8c\x32\x9b\xbc\xae\x95\xdb\x3a\x3d\x4f\xbe\x3d\x07\x73\x2b\x44\xf9\x91\x2d\x0b\x26\x17\xd0\xef\xa9\x56\x91\xe7\xb0\xd0\x05\x23\xab\x3f\xa3\x98\xe4\x93\x74\xd5\x66\x8f\xd3\x53\x72\x36\xbb\xd5\x83\xc5\x5c\xe8\xac\xfb\x48\x68\xcb\xba\xf2\x35\x39\xab\x8d\xd3\xfe\x29\xc5\x74\x40\x57\x6c\x4c\x55\x77\x9f\x9d\xe1\x91\x29\xdd\xa5\xc2\x24\xfb\x91\x2a\xa1\xd9\x4f\x28\x5f\xd9\xff\x91\xc6\xb3\x78\x96\xfa\xde\x4a\x1e\x47\xd8\x7d\x98\x0a\x48\xaf\x42\x68\x81\x9b\x17\x22\x68\x09\xf7\x87\x16\xe9\x27\x12\x63\x2c\x44\x7c\x3c\xf5\x81\xd2\x28\x8d\xe3\x48\xc0\xd0\x52\x8b\xf7\x05\xeb\xcb\xae\xd9\x38\x4a\x73\xc1\x91\x38\x81\x3c\xd7\xec\x99\xe2\x3d\xb5\xc1\x8f\xdb\x2a\x72\x71\x15\x9a\x0b\x5c\x48\x8b\xd6\x60\xe5\x7a\x1b\x81\x84\x94\x5a\x9f\x97\xc2\x59\xbe\x16\x8e\xd2\x38\x1d\x46\x61\x95\x45\xec\x9b\x73\x42\x58\x1d\x67\x42\x7c\x47\x89\x76\xb4\xff\x76\x66\x07\x29\xb9\x30\xfa\xea\x38\x38\x2b\x0f\x83\xbd\xec\x9b\x7b\xa5\x3b\x28\x5f\x8b\xf2\x8e\xea\xee\x0a\x88\x46\xbc\xde\xdb\xe2\x92\x28\x19\xd9\x2c\x72\xed\x14\xa9\x04\xd5\x0a\x06\x9b\xd7\x74\xb0\x32\xa2\x90\xd6\x74\xe4\xef\xff\x56\x89\x0e\xa1\xbc\x81\x0d\x41\x6b\xcc\x64\x7d\x03\xf3\xe7\x8d\x63\xca\xd6\x06\x7b\x09\x76\x06\x66\xb9\x61\x92\x76\x7a\xaa\x87\x10\xf7\x77\xd6\xd0\x59\x9d\x5f\xfb\x55\x99\x27\xb4\x84\xe3\xf3\xdf\x51\x29\xe5\x85\x69\x9d\xf5\xed\x24\x9f\x00\xe0\xc4\xbf\x83\x8d\x2c\x12\xbc\x4a\x9e\x88\x4b\x2f\x18\xe4\x2c\xa4\x85\xcc\x41\x2f\x04\x69\x96\x3c\x56\x7d\x01\x0c\x61\x9f\x5e\x57\x02\xe6\x57\xa7\x9e\x88\xfc\x28\x2d\x56\x02\xb6\xa5\xe7\x4c\xcb\xe3\x3f\xee\xf6\x7c\xb9\x65\x66\x5d\xb1\xa4\xb9\x20\x09\x6c\x16\xd4\x28\x11\xfd\x1c\x6a\xac\xf3\xd5\x44\x8a\xc6\x13\x9b\x99\x2a\xaf\xa2\xf9\x87\x0b\xfd\x7e\xe0\xd3\x9d\xef\x2b\xfb\x9a\x49\x9a\x17\xe4\xbe\x29\x3b\x30\x52\x7a\xa7\xa8\xec\xa0\x5f\x17\x14\x4d\xe4\x0a\xdd\x0e\x1f\xd3\x46\x29\x5a\x34\x3a\x96\xb2\xcb\xc5\xd3\x7e\x68\x77\xd6\x69\x91\x02\xc6\xf2\x08\x16\x79\xe7\x22\xb2\xb4\xdb\xcb\x9b\x2f\x89\x7b\x38\xe3\xb1\xf1\x32\x6f\x52\xea\x8f\x55\xf5\x5e\xa0\x5c\xe9\x59\x06\x5c\x9c\xad\x28\x4e\x74\xf6\x46\xae\x61\xf2\x97\x53\xdf\x0f\x98\x25\x41\x51\x5c\x3d\xa7\x76\xd2\x55\x57\xaf\xec\x62\xbd\xc2\xf6\xbc\xd2\x76\x2a\x46\x76\x6c\x8a\x28\xcc\x01\xe2\x97\x3e\x23\xdd\x9f\x74\x20\x7d\x23\xd7\xf4\x5f\x2b\x11\x04\xd4\x00\xab\xbe\xa8\xf3\x95\xe0\x29\x05\xfa\x24\x54\x6f\xc7\x79\xc2\x1f\x56\x9e\xf0\x87\x9b\x1c\x95\x97\xf6\x74\x6d\x99\xa5\x13\x6b\x12\x94\xf4\xa5\x61\xea\xd1\xb6\xec\x55\x82\x85\xe7\x76\x8b\xce\x2e\xf7\x39\xa5\xdd\x20\xd6\x0d\x0a\x6a\xa9\xa5\xad\x08\x4e\x37\xb0\x19\xeb\x43\x38\xef\x8f\x7d\x73\xae\xe5\xe3\x34\x63\x4b\x28\xd4\x78\xa4\x2b\x5d\x09\x9f\xb4\x51\xc0\xb3\x88\x42\x75\x45\xf5\xc1\x26\xc0\xc7\x8d\x9a\xdc\xab\xaf\x76\x97\x0d\x79\xc0\x74\x3c\xb7\xf9\x34\xc6\x0d\x9f\xa8\x10\x6b\x62\x93\x24\x5f\x8b\xab\x7c\xc7\xcc\x2a\xae\x02\x1a\x4b\x6d\xb8\xab\x9a\xb2\xe7\xf3\xae\x28\x14\x8e\x6c\x6c\x92\xa1\x8d\x53\xa9\xea\x29\x92\xd2\x6e\x47\x52\x7a\x52\x29\x6b\x56\x8f\xd7\x73\x62\xce\x29\x15\xff\x73\x6d\xfc\xda\x62\x64\x33\x3b\x53\x45\x1f\x88\x70\xee\xd2\xbc\xd0\xee\x4c\x4c\x6a\x53\xd1\x66\x94\x8c\xcc\x32\x2d\xde\xda\xb7\x9f\x99\xe6\x52\x79\xf2\xcb\xd5\x2f\xff\x83\x5f\xea\x54\x11\x3d\x96\xec\x1f\x07\x4a\xca\xec\xc7\xcd\x26\xfd\x3c\xf9\xcb\xc7\x2e\x0c\xd4\x56\xe2\x98\x56\xd8\x83\x45\x1f\x4b\x59\xd8\xc7\xe5\x98\xc9\x90\x58\xf3\xbe\xab\xe6\x22\x8a\x83\x00\x41\xdd\x7b\x88\x33\xc1\xb0\x8c\x4d\x01\x04\x83\xe0\xe1\x69\x50\xb9\x8e\x81\xd2\x97\xf4\xa8\xd8\x51\x39\x4c\xb7\x2a\xff\x1e\x66\xef\x48\x2f\xbd\xe3\x84\xdf\xb0\xe4\x60\xfb\xe0\xba\x17\xbe\xf9\x63\xf5\x6d\xfd\x34\xb1\x8f\xd1\x6c\x47\xe9\x93\x6b\xd7\x7c\x12\xf8\xd5\xfd\xe4\xd4\xbb\x4a\x21\xac\xc5\x8b\xba\x39\xf5\xdd\xa2\xab\xb8\x7e\x71\x91\xf5\x65\xf3\xdf\xa5\x78\x0b\x53\xf8\x92\x7a\x55\x85\xdd\xcf\xef\x14\x90\x1f\xce\xa7\xf9\xa4\xa5\xde\xb9\xbb\x3b\xb1\xe9\x24\xb6\x39\xb6\x58\xc7\x33\x52\x5d\xbf\x3a\x14\x51\x55\xd1\x9b\x75\xac\xf9\xbd\xdd\x51\x35\x97\x37\x51\xc9\x2e\x4e\xf5\xb4\xd1\x96\xaf\x55\xb8\xc2\xf1\x19\xf6\xcc\x2d\xaa\x59\xb8\x65\xbd\xf9\x9a\xa9\xb2\x91\x26\x89\x65\x05\x1f\x57\xe0\xf3\xc5\xbe\x16\xf2\xd9\x0b\xdd\xb4\xcc\x72\x1b\xaf\xd8\x9c\xb2\x38\x89\xb3\xe9\x2b\x10\x0c\x9e\x46\xf9\x18\x98\xee\xbb\xae\xd6\xc5\x40\xb8\x59\xba\x1b\x14\xcd\xfe\x5d\xe0\xe3\x17\x44\x21\xf8\xf7\x2b\x78\x36\x08\x95\x1f\xe9\x35\x1d\xca\x62\xb3\xc6\x2b\x27\xa2\xbf\xc3\x81\xea\xba\x1f\x6e\xa3\x74\xf6\xcb\x7c\x7f\x9d\x7f\xec\xfa\x9e\x17\xa7\x3f\xf7\x10\x58\x74\x66\xc3\xcc\x12\x5c\x56\x99\x4a\x3d\x08\xfc\xb2\xf7\xfe\x54\x91\x67\x6f\x6f\xa6\x82\xe7\x63\x95\xb0\x9e\xd6\x09\xeb\xe9\xa9\x97\x0a\xb3\x79\x61\x96\xe3\x28\x1f\x8d\x6d\x02\x71\x17\x67\x2c\x59\xed\xb8\x22\xe1\xa5\x5c\xcb\x0e\x57\x3b\xa3\x6f\x24\xda\x6c\x6c\xb2\xfd\x96\x78\x73\xa2\x42\x7a\x53\x2d\x0c\x30\x1a\x57\x1c\x17\xe9\x25\x00\x4c\x8d\xe1\x78\xb7\x25\xa0\x5d\xec\xee\x37\xcb\x65\x4c\x55\x1c\x71\x75\xd0\x16\x0f\x6d\xf2\x65\xe9\xf2\x6b\x36\x2c\x28\xd9\x45\xd7\xf3\x98\x42\x3c\x1f\x6b\x55\x98\x85\x6b\xfd\x8c\x2a\xeb\x02\xd6\x87\xa0\xf0\x28\xae\x58\x92\xcb\x36\xc3\xf5\x15\x9b\xad\x75\xbc\xe1\xfa\x49\x65\x21\x7f\x52\xcd\xe8\x51\xba\xfa\x78\xb5\xf8\x22\xa0\xf9\x48\xb7\xa6\x9f\xea\x79\x04\xea\x13\xba\xc0\x7c\x9b\x56\x07\x2d\x3f\x86\x22\xf9\x93\xf4\xe8\x10\xf3\x3c\xd5\x53\x06\x2e\xbc\xe4\x21\x02\x7e\x1c\x61\x2b\xde\xda\x77\xe8\xa6\xd8\x81\x07\xd1\x14\x16\x93\x47\xd6\x5b\x94\x68\x32\x13\xe5\x6e\xe1\x77\x6e\x66\x4e\x76\xfc\xe8\x54\x09\xc4\x69\x35\x94\x34\x2f\x38\x96\xc1\x03\x38\xaa\x06\xfa\xd1\xb6\x96\x72\x9a\xad\xda\x38\x8e\x18\x9d\xe3\x54\x3f\xab\xeb\xe6\x13\x87\x37\x9f\x8c\xbc\x5d\x0d\xc2\x45\x66\x30\xf0\x49\xaf\x85\x2e\x96\x47\xc3\x11\x07\x17\x22\x71\xdb\xf1\x72\xb7\x6a\xbb\x1e\xa4\xb1\x45\x41\x94\x17\xec\xda\xe2\xdd\xea\xed\xb3\x62\x33\xc9\x0e\xb1\x7e\x1f\x54\xae\x14\x8c\xca\x42\x20\xf1\x5d\xd5\x49\x25\xba\x79\x41\x64\xe7\x59\xea\xb2\x89\x9d\x28\x96\x6d\x67\x37\xe0\xe5\xe5\xce\x52\x1c\x2c\x84\x24\xbf\xcb\x66\x51\x5a\x30\xa3\x56\x70\x16\x0a\x73\xd1\x08\x31\xf6\xbe\xd4\x5d\x35\x94\x21\xec\x93\xfe\x2d\xa4\x8f\xf8\x58\xc1\x2f\x08\x20\xc6\x51\x53\x47\x35\x50\x6e\x29\xde\xd2\x2d\xf7\x5e\x56\xd2\x28\xb4\x04\x37\x97\xa2\xc6\xa9\x69\xad\x17\xac\x89\x18\x3f\xd5\xe8\xe6\x9b\x41\x0d\x16\xfc\xa4\x36\xe5\x88\x39\x93\x45\x44\x7b\x48\x71\xc9\x88\xef\xef\x05\x06\x3a\x7e\xba\x3d\x42\x61\x3e\x1f\xaf\xb7\x68\x32\xe5\x65\x24\x42\x10\x8e\x0c\xe5\x4a\x68\x17\x55\xc1\xa1\x9c\xf4\x4d\x21\x31\xa6\xf4\x95\x54\xbf\xe3\xbc\xee\xe1\x95\x59\x38\x32\x39\x31\x32\xbd\xef\x46\xa0\xca\x06\xb0\x95\xe1\x63\x25\xf7\x72\x06\x28\x0e\x71\xea\xf0\x36\x84\x67\x54\x25\xd4\x4c\x26\x59\xba\x62\xb0\x0e\x0a\xfd\xce\x1b\x93\x5e\x50\xab\x71\x3f\xca\x8b\x2c\x5a\x2e\x0b\x21\x1b\xe3\x31\xff\x9e\xd2\x1d\xfc\x3d\x0d\x6e\x59\x59\xdb\xea\x81\xd2\x67\x82\x9a\x48\x05\xbd\x41\x97\x61\xef\x9b\xf3\x06\x4e\x0b\x0b\x1b\xcd\xb8\x6d\xd7\x7c\x77\x92\xa5\x03\x95\x54\x20\x24\x3e\xaf\x49\xfc\xe7\x1b\x83\x72\x69\xae\x1b\x47\x2b\x32\xab\x31\xe3\x79\x56\xf3\x49\xaf\x51\xd7\x9c\x57\x2c\x95\x5c\xb7\xce\xde\xa1\xf8\x86\x8f\xdb\x5c\x61\x98\x8b\xbe\x55\x41\x43\x64\xde\xf1\x99\x32\xee\x28\xa6\xca\x83\xfa\x03\xe5\x47\xfc\x41\xf0\x9c\xaa\xea\xf5\x87\x36\x5b\x4d\x53\xd6\x0b\x00\x95\x82\x61\x91\x7c\xd2\x06\xb2\xad\x06\xf8\xaa\x59\xd3\x76\x97\x53\x0f\xf4\xbd\xa8\xf5\x02\xec\x72\xc9\xa2\x9f\x48\x1e\x2e\x4d\x7d\x52\x71\x49\xd9\xf1\x15\x69\x14\xdb\x22\x13\x15\x3f\x91\x3d\xeb\x28\x39\xb4\xb6\x5c\xd2\x94\x45\x9a\xa4\x63\xf0\x78\x58\xb7\x0b\x97\x2f\x22\x5e\x4d\x2d\xb8\x79\xb6\x44\x98\xf1\x08\x2a\xa8\xf7\xba\x7a\xb7\x5b\xf4\xaf\x7b\xde\xdf\xc4\x86\xd1\x20\x0a\xe1\xdb\xec\x14\x1e\xab\x67\x2c\x20\x04\x5f\x08\xe0\xe6\x3c\xde\xe5\xb1\xa9\x72\x9d\x05\x0c\x16\x15\x02\x60\xb0\x70\x01\x7f\xab\xe7\x17\xdf\x8d\x5a\x51\x22\x1d\xaf\x3d\xda\x71\x5a\x15\x6c\xae\x22\x42\x77\x84\xe5\x41\x78\xf0\x1e\x2e\x86\xad\x39\x30\x7f\xb1\xf5\x5d\x55\x6f\x9f\x0d\x6d\x94\x5d\xe8\x0b\x9c\x6e\x3c\xd6\x93\x5b\x1d\x1a\x4a\xe6\x78\x73\x70\x70\x0b\xc7\x74\x60\xdd\x56\xa9\x53\xb4\x98\x71\x7e\xf6\xb3\xb4\x4c\x33\x46\x1c\xc9\x83\x00\xc6\x1d\xad\x99\x70\xfc\xfb\xc9\xbb\x47\xca\x67\x3e\xfe\x66\xd8\x06\x5e\xfd\x6d\xa7\x6a\x9c\x1e\xe8\x78\xba\x15\x33\x9e\xc4\xed\xb4\xa5\x15\x90\x17\x99\x4d\x86\xc5\xa8\x5a\x66\x9d\x23\xca\x51\xa8\x03\xf3\x89\x76\xa1\x59\x4b\xcc\x38\x0a\xf3\x8e\x6f\xa4\x9c\x20\x59\x41\x3e\x76\xe8\xc2\xe5\xcc\x96\xe8\x51\x7b\xc0\xfd\x11\x8d\xc1\x3b\xe2\x45\x72\xaa\x5c\x52\x16\x08\x6c\x55\xfc\xf8\xf8\x44\x75\xbe\x27\x66\x2d\x4b\x63\xd8\xda\x73\xf4\xbe\x5e\x0b\xe5\x55\xd3\xce\xc6\x13\x9b\x81\x5d\x24\xb4\x8f\x8e\xa3\x9e\x9f\x56\x7b\x91\x35\x59\xbc\xf6\xb8\x97\x45\x3a\x83\x87\xc6\x05\x47\x2d\xb0\xa4\xa3\xa2\xb3\x58\xda\xc5\xf5\xc2\x83\x5e\xf9\xe2\xdd\xf6\xe3\xec\x0f\x2f\x71\xb1\x16\x3d\x6b\xe4\xb8\xec\x5b\x8d\xa2\x04\x17\xdf\x03\x5f\xee\x9c\x6d\x28\x6b\x56\x51\xf3\x6a\x9a\x65\x51\xbd\x9e\x0b\x8b\x6a\xd1\x3c\x10\x65\xd3\x55\x53\xd8\x6c\x90\xa5\x80\xaa\xec\x11\x53\x7d\x65\x15\xf7\x53\x55\xa7\xaa\xc6\x9a\x5d\x53\x6e\x01\xe0\x56\xf3\xf1\xe6\x7e\xd9\xc2\x42\xf7\xff\x4f\xec\x15\x60\xbd\xee\xa8\xce\xee\x9f\x05\x6a\x6f\x3a\x3d\x55\xc6\x70\xb0\x0d\x41\x93\x96\x63\x03\x26\xb9\x34\xe9\x70\x2f\xed\xe9\xc6\x65\x3e\xa2\x15\x54\x1b\x1a\xf3\x71\x23\x9f\xf8\x5c\x77\x10\x0d\xbd\x45\x46\x6b\x9d\xbb\x2d\x3d\x40\x72\xa3\xac\xb8\x3e\xd6\x56\x5c\x5a\x19\x31\xb7\x79\x1e\xa5\x09\xf4\x9c\x44\x18\xb2\xe3\x7c\x1d\xce\xab\x72\xec\x19\x35\x51\x19\x9b\x81\x6a\xcd\x4d\xc5\x39\x23\xeb\x8b\x2a\x2b\xdb\xe9\xfb\x99\x97\x74\x0f\xed\x3a\x3d\x2e\x20\xf1\x4f\xeb\xfa\xc0\xd7\xa7\x35\x6e\x30\xbd\x27\xcc\xab\x7f\x13\x28\x7c\xc7\x75\x65\x9e\x79\x51\x01\x97\x79\xf1\x45\x16\xfe\xb5\xa9\xd2\x36\x54\x73\x6d\x60\x81\x66\xf0\x84\x58\xd6\x06\x97\x69\xe9\x67\x50\x51\x66\x49\xbe\x95\xca\xb4\x48\xb6\x8f\x2a\xf9\x3b\x28\x91\x39\x8e\x90\xff\x9b\xa9\xaa\x02\xaa\xfd\x70\x64\x4d\xd6\x47\xae\x29\xe4\xfd\x8e\x63\xf0\x70\xcd\x1f\x8d\x69\x90\x78\xc5\xd9\x41\xc9\x04\x9f\x6c\x20\xc9\x97\xe6\xd8\xbb\x21\x06\x9e\xc9\xcf\x80\x43\x53\xa5\x71\x53\x43\xd9\x40\x12\x14\xf5\x26\xd7\x21\xf5\x62\xb6\x78\x86\x4e\x87\x6a\xf7\x4b\x7b\x6a\x98\x02\x40\xc7\x8f\x29\x4c\x46\x3a\x18\x44\xa1\xdd\x59\x7d\x05\xee\x1a\xf5\x23\xb4\x18\xef\x2b\xc1\xc1\x13\x18\x03\x8e\x4a\xbc\x24\x7c\x50\x76\x6e\x40\x11\x43\x96\x13\xd1\xd5\x50\x36\x13\x5c\xf2\xc2\x88\x7a\xae\xe7\x5c\x24\x2e\x3f\xd2\x53\x3c\xf4\x4b\x6a\xee\x0f\x4d\x94\xd8\xfe\x36\xe5\x1d\xb0\x95\x2d\xd4\x90\x8f\xae\xd3\xa5\x0a\xc6\xcf\x97\x18\x19\x6b\x29\x16\xfa\x1e\xf5\x7a\x43\x6b\xa7\x99\x24\xb1\xd0\x80\x40\xf0\xf9\xb6\xa6\xcf\xbd\xdd\xe8\x5a\xed\x9b\x7b\xa5\xfb\x7a\x99\x16\xa8\x8c\xd0\x9f\x8a\x54\x6e\xc7\x59\xf2\x1d\x56\x09\xc3\xee\x46\x45\x86\x76\x36\x86\x68\x01\x3c\x7c\x4a\xe9\xa0\x9e\x6a\x2c\x1e\xbf\x20\x10\x8c\x19\xdf\x46\x67\xa5\x7b\x21\xe4\xa8\x8a\xfb\x87\xaa\x43\xf4\xf7\xff\x1e\x9b\xe3\x49\x11\xd1\xb3\xaf\xe0\x32\x2a\x26\x49\xd5\x43\xc3\xc3\x7c\xaf\x0d\xbe\x99\x91\x75\x65\xc7\x07\x59\x77\xbc\x15\xd2\x17\xef\xa8\x55\xc8\xac\xa4\x51\xdf\x01\x27\x30\xa1\x7f\x84\x59\xcf\x27\x2e\x80\x08\x47\xa6\xb0\xa6\x9c\x51\x64\x88\x77\xe8\xfa\x50\x3b\x63\x8f\x8d\xcd\x66\xb5\xb1\x41\xc1\xc3\xf3\x64\x71\xef\x42\x9a\x6d\xb1\xe1\x9f\x90\xe2\xae\xe2\x03\x74\x9c\x0e\xc2\x69\xf7\xbd\x2b\x36\xcb\xd9\x44\x0a\x05\x9e\xeb\x0a\x06\x01\x55\x7c\x71\xcd\xf7\x63\x67\xd9\x66\x09\x97\x1d\x9d\x7e\xa9\x77\x01\x3a\xd6\xa6\x01\x6e\xb2\xcc\xe8\xcb\x47\x88\xcc\xc7\x2d\xf5\x68\x82\x74\x90\x0b\xd1\x8c\xf2\xf3\xba\xa7\x0b\xab\xa7\x95\x7e\x7f\xb3\x35\xbb\x6b\xbe\xdb\x8f\x32\x2a\x4b\x39\xe7\x0c\x44\x94\x7c\xdc\xc2\x07\xd9\xdd\x9d\x94\x6f\xbc\x11\xcb\x2e\x8e\x5a\xd4\x07\x4a\x59\xf5\x03\xc5\xaf\xa5\x42\xb5\x6f\x34\xbd\x4f\x63\x49\xf6\x65\x35\x95\x18\xef\x89\xda\xe1\x03\x5a\x36\x1d\xe0\xd4\xb5\xb5\x61\xfe\x44\xb7\xf2\xdf\xfe\xdc\xba\x2b\x39\xfd\x77\x3f\xdf\x53\x19\xe1\x85\x5a\x80\x6d\x32\x43\x99\x00\x6b\xce\xd2\x55\xb2\xac\x3e\x45\x2e\x1b\xa7\x1a\xdb\x77\x95\x43\x14\x69\xdc\xdf\xa6\xca\x27\x8f\xf6\x3a\x5f\xf8\x52\x8d\x1e\x87\xe9\x78\x0c\x6b\x17\x77\x0e\xa7\x1e\xce\x7b\x61\xaa\xf0\x1d\xdf\x52\xdc\x7a\x56\x85\x9d\xad\xc6\x8c\x93\x78\xf5\xa1\xf8\x89\x7a\xa2\x51\x7d\x07\xff\x47\x4b\xa1\x67\xb7\x9b\x7a\x6e\x6d\xbf\xa7\x84\xca\x9b\x99\x70\xf5\xf2\xf2\x72\x32\x49\x5d\xb1\x0a\x10\x88\xb7\x02\x0f\x8d\x78\xcb\xdb\x27\x96\x71\xdc\x4f\xdf\xe0\x31\x8c\xae\x08\x8a\x1d\x7c\xec\xe6\x47\x96\x16\x85\x4d\x66\xfd\x97\x6c\x20\x8e\x42\xf0\x82\x85\x05\x91\x24\xe8\x28\xd2\xae\x91\x98\xbb\x4c\x06\x51\x1c\xdb\xfe\xac\x76\x80\x41\x64\x09\xa4\xda\xbf\x9a\xfa\xa2\xed\xdd\x40\x59\xe4\x9e\xd1\xda\x7b\xa6\x08\x47\x36\x13\x9e\x02\x5e\xca\x49\xe5\xe5\x73\x4b\x13\x20\xdb\xc1\x6f\xdc\xdf\x49\xd1\x1f\xdd\xcd\xb7\xc3\x45\x7c\x3e\xa9\x41\xf4\x4c\x79\x60\xa6\xba\x25\x44\x37\x9c\x5d\x0b\x92\x94\x7e\x4e\x78\x0e\xaa\x07\x45\x82\x85\x8a\x91\x48\x2f\x0d\x89\xc0\x1d\xad\x06\x72\x4c\x03\x72\x6d\xb6\x12\x85\x36\xa7\x5d\x18\xab\xd0\xb6\x75\xef\x0f\x7f\x9d\xe2\x13\x64\x6d\x0f\xb4\x34\xdc\x36\xb2\x9c\x43\xb9\x8e\x60\x04\xf3\x1b\xe7\x20\x5e\x8a\xdf\x60\x6f\x42\xa7\x17\x54\x8d\x67\xdd\x88\xc4\xd7\xb3\x49\xb2\xb8\x83\x3e\xab\xbc\x3f\x20\xc9\xc4\xbd\x18\xc4\xc4\x6f\x06\x1e\xe8\xf9\x66\xc3\x13\x60\x7e\x2f\x0a\x47\x93\xac\xae\x27\x87\xa8\x9b\x41\x56\x7c\xd2\x28\x00\x57\x43\x38\x4a\x0a\x67\xef\x80\x21\x76\x42\xd9\x15\x9f\x55\x36\x0d\xdf\x6c\xab\xeb\xc2\xfa\x3c\xb1\x50\xc3\x17\x1b\x61\x1a\x6d\x88\x35\x10\xeb\x8b\xd5\x72\x9b\x8a\x4b\x06\xea\xb9\xab\xd5\xfd\xa0\x96\x6f\xa8\x7d\xff\xb8\x8a\x54\xf6\xa7\x99\x35\xe8\x97\x88\xc9\x51\xc7\x29\xcf\xdd\xc5\x7b\x67\x5e\x43\x8b\x86\x55\x6c\x8b\x82\xa7\xa2\x68\x6f\x2a\x60\xef\x09\xd5\x61\x21\xe8\xb6\xed\xcf\x76\x9c\xce\x2f\xfa\x9a\x08\xe3\xb1\xc3\xf1\x31\x6d\x5d\xfc\x37\xeb\xbe\x5e\x13\x8e\xc8\x88\xd5\x71\xec\x18\x5d\x12\x78\x00\xc7\x47\xda\x51\x29\xcd\x2d\x09\xd4\xe0\x8b\x76\xf4\x7c\x31\x7e\x3b\x6c\xbd\x30\x5c\x3f\xa4\xb5\xcd\x31\x1c\xaa\x25\x5b\x9e\xb1\x02\x86\xdd\x55\xd1\xf9\x20\xb3\xd5\x7d\xec\x53\x4d\x96\x6a\xea\x4b\x93\x85\xc2\x76\xe1\x22\x28\x5e\x82\x62\x02\x84\x69\xf2\x5a\x99\x38\x18\xe3\x1e\x87\xcc\xa8\xae\x97\x8f\x15\x21\xb1\x6f\x21\xa5\xa1\x7c\x92\x90\x07\x0b\x18\xab\x45\x38\x8e\xcc\x34\x86\x69\xc2\x70\x59\xd4\x22\x8f\x91\x92\x15\x1f\xab\x98\xcb\x0c\xd3\x1d\x4e\xe9\xee\xff\x7e\x9e\x30\x36\x98\x61\x9f\x02\xd4\xad\xd6\xeb\x17\x18\x96\xaf\xf4\xf2\x30\xc1\x62\xda\x59\xaf\xf6\x49\x67\x54\xe2\x00\xa8\x04\xd7\x11\xc1\xe7\x9b\x78\xb8\x42\x3c\xda\x1c\xb1\x4a\x43\x2f\x89\x46\xdc\xcb\x73\x86\x29\x2e\x2d\xff\xf2\x54\xe9\x5c\x9f\x53\xef\x27\xb1\xb6\x0f\x45\x00\x44\x4c\xff\x97\x82\xd5\x41\x9b\x58\x54\xed\x6b\x12\x6b\x4f\x7b\xda\xb6\x8d\x56\x88\x69\xef\xb0\xc5\x3f\xc2\x8e\x8a\xfa\xd3\xf7\xe9\xa6\x50\x02\x3b\xa4\x50\x1f\x83\x28\x31\x49\x18\x11\x28\xc1\x31\x30\x2f\x68\x7c\xc4\x5d\xb5\x02\x35\xb7\xf8\x57\x5f\xed\xc6\x69\xba\x9f\xf3\x6d\xcc\x54\xcc\x0b\x3e\x6e\xc3\x26\x4f\xaa\x4d\x0e\xcb\x36\xc6\x30\x2b\xdc\xd5\xde\x98\x74\x12\x5a\x84\x8f\xe3\x52\x4a\xc2\x5a\x35\x43\x30\x60\x7e\x88\xfc\x17\x9f\xff\xcf\x08\x09\x01\xb0\xcb\x0f\x30\xcb\xf9\xa4\x4d\xc1\x73\x35\xcd\xf6\xf3\xc2\x20\xbe\x5b\xf4\x11\x3e\x99\xee\x74\xaf\xeb\x35\x92\xf7\xe5\x9c\xff\x36\xde\x09\x9f\x04\x5e\x15\x35\x0f\xb3\x68\x52\x90\x3b\x0c\x43\x85\x91\x92\xbf\x4f\xd7\xcb\xc7\xd3\xc7\xbd\xcd\x74\xb6\x46\x3b\x3f\x5a\x7e\x68\xc5\xf1\xf1\x54\xf7\x50\x02\x4d\xb4\xd7\x7c\xd7\x65\x86\xc3\x23\x44\x3c\x4c\x6b\x12\x1f\x37\x82\x9e\xdd\x2f\xed\xe9\x4e\x62\x4b\xd8\xcc\xea\x51\x0a\xaa\x44\x51\x98\x54\x99\xc2\xb9\x2a\x02\x76\xc9\xf0\x5e\x85\xb7\x43\xc2\xeb\xe4\x1a\xfd\x46\xf8\xcf\xda\xc4\x1d\x26\x16\x7d\xfa\x8e\x73\xf2\x41\xec\x8f\xe0\x72\xa6\xa7\xd0\x08\x67\x35\x1a\x41\xa1\x62\xa0\xe9\x45\x8a\x5e\xf3\x7b\x19\xd6\xfe\xbe\xfe\xe1\x27\x7a\x75\x6d\x30\xcf\x3e\x3a\x84\x1a\x06\x97\x7d\x15\xfe\xf5\xa9\x75\xad\x59\x58\xe6\xa0\x19\xb3\xe2\x20\xc6\xa8\xc8\x0f\x3a\xe3\xa0\x34\xcb\xc8\x80\x8b\xc1\xc2\x82\x95\xa2\x67\x8a\x3f\x7e\x80\x4f\xca\x72\xdd\x82\x75\x2a\x32\x33\x18\x44\x21\xe5\x9d\x22\xac\xd9\x71\x1a\xa1\x2c\x8e\x8f\x93\x4b\xaa\x11\x0b\xbd\xe6\xad\x35\xa1\x25\x7a\x72\x1a\x7f\xe0\x12\x49\x27\x40\xf6\x03\x7a\xd4\xd8\xd6\x37\xd4\x92\x6d\xaa\x77\x9c\xa7\x49\xcd\x70\xf9\x82\x36\x5c\xd6\xd8\xfd\x32\x29\xcc\x64\xc2\x7d\x60\x91\x31\x51\xae\x47\x17\x55\x3c\xb9\x6c\xc2\xd1\xd8\x24\x09\x22\x1b\xd4\xfb\xaf\x28\x0a\xd4\x15\x35\x09\x6c\x5e\xa0\x75\x83\xea\x27\xc4\x37\x11\xb9\x3f\x89\xca\x05\x9e\x10\xd0\xa5\x78\x87\xd7\x95\x89\xab\xd6\x81\x89\xd3\x64\xb8\x93\x3e\x83\x1a\xc1\xce\x9e\x82\x78\xde\xa2\xd1\x8b\xed\x08\xc2\xc1\xe8\xd3\x5f\xd7\xca\x55\x0f\xb4\x80\x13\xcc\x04\xb0\x92\x5f\x22\x70\x23\xae\x6b\xcb\xba\xcf\x67\xd9\xfe\xd2\x61\xd6\x17\x16\x44\xf1\xdf\xc5\xe8\x63\x9b\xd9\x7e\x54\x8c\x3a\x0d\x8d\x8c\xdd\x72\xa2\xfa\x77\xcb\x45\x0e\x7a\x1b\x60\x45\x3f\xdb\xeb\x7c\x71\xbe\x46\x8e\xd3\xe3\x1b\x73\xf1\x69\xf4\xd6\xdc\x2a\xa0\x80\x6f\xaa\x58\x86\xb8\x01\x55\x9b\x4b\x81\x56\xb9\x8f\xd3\x22\x7f\x14\x17\xc7\xd6\x7b\x4a\x55\x1d\xf3\x05\x3b\xed\xbb\x8a\xa5\xf3\x1d\x0a\x9b\xf9\x18\xc3\x5f\x00\x19\x4a\xd0\xeb\x6a\xe0\x2b\x40\x67\x15\x1f\x35\x33\x13\x5e\x87\x5c\x33\xc6\xbd\xdd\xab\xaa\x30\x98\xc7\xd6\xee\x9f\xf1\x75\x28\xa6\xe9\x0a\x28\xc8\xa3\xc5\xaf\x2a\xc6\x75\x6c\xc2\x8e\xa6\xd1\xfe\x00\x57\xc4\x27\x41\x0b\xd6\xf6\x33\xdd\x2c\x8d\xd3\xbe\x3d\x60\x79\x5a\xcb\x60\xc4\xd7\x08\xc0\x9b\x2e\x58\xba\x3d\x0a\xc7\x9c\x8d\x77\xd6\x27\x65\xf5\x77\x8e\xa1\xe0\x4b\xb8\x88\x47\xb0\xf6\xdc\x0c\x7c\x7d\xe3\x69\xdc\x95\xa3\xe6\x56\x23\x0a\x4d\x06\x70\xe4\x11\x3f\xb0\x8c\x87\xe3\x74\xef\x9b\x73\x81\x29\x65\x25\x88\x99\x9a\x30\xc4\xf9\xbd\xdd\xd8\x14\x51\xa2\xd4\x9a\xd9\x7d\x8e\x4f\xd4\x7b\x19\x58\x5b\x6c\xad\x46\x3a\xc0\xc2\x5b\x14\x09\xe1\x7b\xca\x6f\xf2\x12\x85\x76\xcc\xf8\xc5\x72\x87\xd8\xe5\x94\x82\x69\xa6\x59\x34\x8c\x12\xc3\xe2\x47\x4e\x8f\xfe\x87\x98\x6f\x4e\x96\x4b\x69\x74\xa9\x41\xf0\x43\x67\xf5\x30\x8a\xb2\x34\x1f\x45\x63\x33\xab\xa0\x03\x70\x44\x66\x41\x95\xe9\xcc\xcb\x4b\x73\x1b\x58\x42\xc5\xaa\x50\x49\x1a\x5b\x93\x48\xa4\x84\xdc\xe8\xaa\x5a\x8a\x40\x3c\x13\x2a\x92\x7e\xa7\xf6\x49\xfa\x3d\xf0\x16\x7e\x48\xe3\x18\xf7\xb8\x9d\x62\x4f\x11\x66\xe8\x38\x75\x9b\xa7\x7b\x3e\x92\x3e\x49\xd9\x3a\x7a\x3b\x67\x01\x66\xd6\xe2\x18\x18\x1b\xdb\xd6\xab\xb9\x2d\xa5\x1f\x7a\x2a\x58\xa5\x3f\xd2\x1c\x5e\xb6\xcb\x15\xee\xd7\x8c\xb7\xbd\x65\x65\x49\xec\x3a\x3b\x1a\x6d\xa3\x17\x17\xbb\x66\x6c\xb3\x28\x64\x1c\x8e\x24\x79\x74\x5b\x92\xbc\x3d\xa1\x42\xd2\x08\x74\x37\x3c\x18\x64\xa2\x7c\xec\xa9\x18\x5e\x92\x40\xb5\x71\xf7\x38\x08\x52\xc7\x53\x62\x15\x0b\x73\x39\x36\xc9\xfe\x8e\x82\xd3\xc1\x67\x4b\x84\xbc\x5a\x1c\xa1\xfa\x96\x85\x7a\x44\x43\xd3\x67\x46\x17\x1b\xb5\xe3\xc5\xc5\x3d\xd5\x36\x12\x8d\x4d\x61\xfb\xb3\xf5\x02\xae\x6f\x29\x5c\x53\x84\xdf\x83\x81\x32\x39\x3d\xd3\x86\x2a\x18\x5b\x5b\xc8\xa8\x11\xcf\x4f\x7a\x0f\xa8\xb7\x3e\xba\xee\x11\xf1\x4f\xf7\xbc\xbe\x25\x71\x7a\x72\xb4\x88\xf1\x53\x98\xc1\x28\xc0\x5c\xd4\x54\xa0\x23\x4a\xbd\x6d\x68\xf3\xa2\x14\x28\x36\x9a\x6b\xb0\xc8\xe6\xe3\x9e\x93\xe7\xa4\xf0\xa3\xa3\x21\x29\xde\x8a\xf9\xbc\x4a\x65\x4d\xb2\x36\x4e\x33\xbb\x55\x09\x44\x6b\x9c\xe7\xb7\x02\x6f\x7b\xf9\xbb\xf4\x60\x90\x0c\x9d\xa6\x89\xcd\xff\xde\x00\x90\x3a\x4f\xc2\x6c\x3c\xeb\xc1\x2a\xd8\x2d\xb0\xcb\xdc\x51\xfc\xda\x8b\x5a\x5c\xfa\xab\x6a\x9b\x1e\x96\x49\xbe\x75\x33\x57\x04\xf3\xe9\x1b\xf8\x0c\x9f\xd0\xa4\x43\x2a\xc2\x85\x79\x66\xe9\x34\xb2\xc9\x17\x17\xbb\x79\xb9\x9c\x17\x26\x09\x35\x2b\x0e\x64\x07\xe1\x5e\xaa\x9e\xb6\x35\x90\x2b\xf6\xa8\x8b\x53\x74\xe5\x62\x75\x50\x83\x1a\xc4\x09\x94\x22\xa4\xfd\xe1\xa3\xd8\x66\x5d\xf8\xd5\x57\x6b\x54\x4c\x81\x92\x56\x1f\x11\x24\x69\xcb\xb5\x13\x18\x7f\xd9\x24\xd8\xea\x70\x11\x57\x14\xca\xe3\xeb\x53\x95\xcb\x5c\x74\xee\xea\x99\xcd\x27\x69\xd2\xb7\x89\x53\xa5\x40\xa8\xc3\x65\x01\x3e\x71\x60\x0d\xd3\x4f\x27\x85\x03\x00\xa2\x14\x79\x4a\xcd\x8a\x13\x2a\x69\xfc\x23\x2f\x28\x62\xb3\xc4\x64\x7d\x00\xb7\x04\x55\xa4\x10\x46\x8d\xe9\xcb\x90\xac\x8e\x6f\x3a\x5c\xac\x09\x32\x3f\xa5\x28\x18\x59\x1c\x25\xaa\x89\xf0\x6e\xe0\x53\xe2\x77\x95\x35\xe9\xfe\x28\x4e\xc7\xd6\xa5\x55\xd8\x8f\x01\xbe\xe7\x63\xe5\xb1\xd1\x8f\x86\x51\x61\x62\x44\x95\xc8\xde\x8f\x2a\x7c\x09\x4b\xa2\x3a\xfa\xb9\x63\xb0\x1e\x57\x72\x7e\x3f\xd6\xfc\x47\xb8\x7d\x56\x4f\x54\x97\x65\xf9\xb8\xcd\x34\x7a\xc5\x26\x7d\x5b\x14\xa6\x53\x0b\xc5\x14\xc8\xda\xef\x33\xaf\x97\x30\xa4\x93\xe4\x87\x2e\x9a\x4f\xda\xba\x2e\x89\xe1\x55\x1a\xc1\x02\xe6\x1b\x1f\xbb\xaa\x72\x99\x0c\x4c\x84\x94\x15\x1d\x62\xa0\x72\xf9\xb8\x21\xe2\xbb\xb8\xb8\xbb\x1b\xa6\xc9\x20\xea\x73\x71\x70\xb7\x03\x77\xfa\x21\x78\x5b\x89\xae\x7a\xcb\xfb\xcc\xe6\x36\x21\xa5\x4e\x65\xab\x77\x43\xd9\xea\xdd\x70\xe3\x28\x4b\x0f\x2c\xa7\x19\xeb\x86\x89\x28\x53\x47\xa9\x35\x3d\xaf\xfc\x0a\xe0\x65\x51\xa4\x13\xba\x09\x74\xe0\xbe\xa7\x7c\xf7\xbe\xb7\x19\x5f\xb3\x6f\x6e\xbe\xfb\x2b\x2f\x53\xe5\x0e\x31\x15\x37\x47\xb1\x31\x9d\x50\xf2\xef\x27\x68\xc7\xe7\x3f\x0a\x9c\x77\xbf\x33\xbf\x9d\xf5\x99\x3e\xda\xa8\x90\x23\x39\x8f\xbd\x04\x91\xf8\x2d\xc5\x97\xf0\x02\x41\xc4\xb9\x33\x43\x50\xeb\xd1\xae\xfe\x1a\x5e\x28\x9f\xb8\x5f\x33\x45\x91\x99\xd0\x49\x25\x3a\x62\xa7\xf7\xc5\x87\x2c\x17\x2f\xaa\x2d\x8a\x14\xdd\xcc\xf4\xdf\x58\x1b\x47\x92\xbd\x39\x3a\x83\x97\x75\x39\x13\xec\xe4\x8f\x75\xf7\xcd\xed\xfe\x5b\xd5\xa3\x01\xda\xea\x1a\x3a\xd7\x12\x93\x2a\x3f\xae\x5b\x04\xec\x91\x92\x1d\x85\x2d\x22\xfa\xd1\x79\x79\xb7\x0f\x3b\x3c\xc5\xe4\xc1\x54\xb9\x33\x5c\xc2\xfe\x46\xcf\xf6\xd3\x9f\x62\x15\x1f\x46\x81\x68\x2f\xb8\x0d\x44\xd2\x58\x97\x4f\x04\x9d\x2f\x7c\x89\xa1\x57\xdf\xa4\xed\x07\x9d\xf2\xc3\x08\x0d\x9d\x66\xff\x92\x8c\xca\x9b\x8a\xfd\xf9\x83\xa9\x97\xa4\x7c\x00\x8e\x80\xd0\xb8\xaa\x89\x81\x22\xda\x3b\x01\x59\xa9\xb0\xbd\x7d\xa0\x1a\x4f\x1d\x04\xde\x88\xf1\x76\xa0\x52\x2f\x8e\x28\x1d\xa7\xb5\x72\x63\xda\xd9\xfb\x92\x1f\xb2\xae\x11\x76\x8d\xf6\x5e\x71\x69\x9e\x59\x58\xd8\xb3\xb1\x1e\x74\x7e\xed\x57\x9d\x1c\xe5\xe6\xf9\xfb\x85\x2f\x91\xd3\x26\x09\xe0\xba\x3d\xf9\xc5\x45\xd7\xcc\xd8\xbc\x99\x2c\x2c\x74\xb3\xb4\x74\xab\x8f\x58\x46\x7a\xdc\xdb\x8f\x5c\x45\x30\x27\xe4\x72\x34\x44\xa8\x27\x68\x1b\xdf\x9b\xbc\xd9\xc2\x48\xdd\xdd\x0d\xd7\x92\x28\xe4\x48\xcb\x61\x0b\x3d\xce\xb0\xd5\xbc\x75\x39\xcd\xa4\x62\x0b\x3c\x3b\x3a\x98\x7c\xac\xe0\xb6\x43\x93\xa7\x71\x84\xbf\x7d\xc1\x39\x06\xf8\x72\x77\xd3\x4c\x84\xba\x6c\x45\x96\x26\x43\xc1\xba\x72\x35\x33\xf0\xc5\xca\xef\xbb\xdd\xcf\x1e\x98\xc4\x26\xf1\x12\xe1\x0e\x46\xab\x6c\xdd\x7d\x40\x64\x93\x21\x49\xdf\x75\x84\xd9\xb9\xef\xfb\x4a\xb5\xf0\xfb\x6a\xff\x30\x93\x49\x1c\xd9\xfe\x63\x3a\x85\xbc\x18\x78\x7f\xe4\x2d\x3d\x9a\x31\x18\x34\xc7\xa7\xca\x64\xf0\xf8\xb4\x96\x64\xcc\xef\xe5\x5d\xe6\x26\x6d\x3f\xc2\xbf\xd4\x6e\x87\xec\x94\x86\x5b\xbb\xe6\x96\x55\x7b\x60\x62\xb3\xc8\x26\xa1\xa5\x38\x89\x49\xa6\x34\xa4\xa5\xa7\x5d\xfd\x92\x54\xc9\x15\x28\x10\x79\x21\xba\xc1\xf7\x5b\x35\x09\x6b\x42\xab\x4a\x4e\x79\xde\x39\x36\x3f\x2c\xec\x1b\x19\x02\x3f\x4a\x3c\x79\x3b\xa8\xf2\x2e\xee\xdf\x83\xfe\x24\xf5\x64\x5f\xe8\x5e\x36\x49\x98\x12\x76\x0f\xb7\x7f\x89\xfe\x8e\x8f\x1b\x45\xca\x6a\x7c\x0d\x94\x30\x0a\xf7\x2d\x6b\x3d\xcc\x4f\xa9\x92\x54\x98\x26\xd5\x18\xeb\x1b\xe9\x3c\xa0\x91\x74\x59\xf1\x01\x2e\xab\x14\xa7\x4f\x54\x56\x4d\x52\xd5\xb4\x56\xcd\x45\x7d\x28\xb3\xb4\x46\x6b\xd5\xdc\xd7\x87\x73\x5c\x6b\x74\xd9\x87\x72\x5c\x6b\x2c\xd5\x87\x11\x5e\x6b\xbc\x56\x3f\xb6\x27\xd5\x5e\x69\xe1\xde\x2b\x8e\xf5\xca\x2f\xe8\x1c\xae\x14\x99\xcb\x4f\xd4\xc2\xf6\x27\xad\xe2\x68\x93\x32\x1f\x09\xcc\x15\x11\xfa\x75\xba\x6d\x69\x84\xa8\xba\xe8\x8f\x55\x75\x72\x39\x33\x6f\x10\x70\x7f\xb7\xb7\xc3\x72\x8c\xb8\xb3\xb5\xde\xf8\x28\xcd\xc4\xcf\x14\xcb\xfb\x41\xd5\x79\x3c\xa8\xf2\x22\x7b\x20\x22\x5d\xd2\x6d\x0a\x90\x75\x15\x9b\x07\x9f\xd0\xa3\x72\xd0\x30\x97\x54\xfe\x1e\x95\xca\x50\x1e\xc1\xd0\x64\x83\xcb\xe9\x4e\xdf\xb2\xd2\x8b\xc1\xc1\xa9\x52\xa8\x38\xd8\x10\x3b\x5a\x9a\xeb\x8e\xd3\xb1\x4a\xcf\xd0\xf8\xe7\xe3\x96\xb5\x75\xbe\x1b\x47\x49\x48\xa9\x43\xf5\xbd\x28\x4b\x7c\x47\x49\xb2\x7c\x47\x51\x91\xab\x61\x5c\xc6\x85\x49\x44\xe6\x40\xb0\x55\x58\x82\x44\x2a\xd0\x57\x47\x58\x62\x48\xa0\x63\xfe\x25\x58\x93\x15\x23\x76\x9b\xc1\xfb\xba\xaa\xa4\xbb\xae\x36\x94\x75\x5e\x5c\xec\xda\x03\x85\x4d\xe0\x95\xe8\x41\x18\x81\xd7\x5d\xaf\xc3\x42\xca\xfc\xc0\xa3\x3e\xbf\x62\xa8\x34\xeb\xa0\x07\x5e\xe4\x18\x62\xed\x4e\x1f\xfd\x65\x27\x3c\x07\xd4\xac\xe8\x1a\x57\x2f\x06\xf3\xfa\xbe\x66\x8d\xdc\x6c\xeb\x16\xc6\x51\x5e\x58\x6f\x83\x27\xba\x7f\xfe\xee\x7c\x91\xbe\x1f\xe5\xa1\x85\x65\x9e\x4e\x6d\xe9\x73\x7c\xd2\x96\xb5\x90\x08\xa6\x6f\xe4\x9d\xa8\xa5\x46\x4a\xc9\xfd\x80\x0d\x4b\xae\x6a\xbd\xe8\x45\x4f\x15\x67\xe7\xae\xca\x4c\x7e\xaa\x94\x10\x7e\xa8\xfa\x19\x83\x34\x2d\x46\x51\x1c\xe7\x35\xb0\x2b\x4d\x3a\x41\xbb\xb6\x38\x1b\xf4\xcb\x31\x54\x71\x34\x0a\x54\xdc\x62\x5a\x3a\xf6\x71\x34\x1c\x15\x0e\xfd\x88\x3d\xfa\xb2\xda\xaf\x2f\xab\x42\xd9\xc4\x66\x59\xc4\xfd\x30\x71\xd4\x54\xea\xdf\x47\x35\xbd\x3d\xab\x12\xed\xc7\xbc\x74\x29\xfb\x5c\x49\x4b\xbd\xe3\x64\x05\x1e\xed\xa9\x06\xd2\x69\x6d\x59\x7a\x43\x05\xff\xb3\xeb\x0a\x98\x7f\x97\x86\x05\x1e\x42\x07\xea\x0b\xfc\x71\x2f\x02\x97\xa6\x7d\x55\x15\x3e\xab\x64\x3f\xb8\xcf\x2b\xc5\xae\x67\xeb\x1e\xe7\x85\x29\xa0\xa6\x20\x7c\xa7\xea\xf9\x09\x0f\xca\x37\x3b\x26\x59\xda\x2f\xc3\x2a\x08\xa9\x5e\x2a\x4a\x8e\x00\x13\xf2\x71\xdb\xf0\x59\x4d\xb3\xfd\xb3\x44\x3d\x70\xdc\x1f\x97\x4e\x83\x2c\x24\xda\x5e\xb4\x36\xcb\x5a\xef\xab\x12\x03\x6b\xb2\x3c\x1d\xdb\x4d\x02\x21\x6e\xbe\x34\xc5\x92\x1d\xa9\xd4\x14\x09\xd5\x9d\x3c\x2f\x7f\x5b\x4f\xcb\x84\xbc\x33\x55\xb5\xeb\x99\x75\x09\xa1\xa2\xa4\x5f\xe6\x45\x16\x99\xb8\x66\xe7\xcf\xf6\xc8\x58\x56\xef\xd5\xdb\x59\xde\x07\xf4\x3f\xee\x84\xff\x49\xbf\x3b\xa5\x79\x1e\x2d\x47\x71\x54\x44\xe2\x6a\x88\xeb\xb8\x45\x31\xb3\x9c\x28\x59\x9d\xcc\xae\x54\x19\x7c\xf4\x06\x0b\xb2\x6d\x00\x21\xbd\x71\x49\x99\x17\xbf\x96\x8e\x92\x3c\x4d\xb0\x5e\x62\x7f\x3c\xa9\xad\x34\x4f\x22\x30\x13\x3f\x54\xba\x07\x3e\x51\x28\x07\x13\x86\xe9\x78\x9c\x56\x01\x84\x06\x6c\x80\xec\xc2\xc7\xc1\xe3\x3e\xd9\x15\xe7\x1d\xc1\x97\xd2\x0f\x0a\xc0\xd4\x09\xc5\x9a\x2c\x82\xb5\xad\x7a\x1e\x7e\x2d\xb9\xd0\x2a\x30\x68\x62\xa7\x49\xba\xe8\xcc\x54\xe9\xaa\xc5\x65\x55\x77\x7e\xd7\xd8\x43\x05\x8b\x27\xeb\xaa\xf3\x49\xab\x87\xa8\x29\x0a\x43\x42\x72\xf4\xfd\xdc\xde\xc0\x53\x91\x5e\xc7\xf3\x4a\x81\x60\x90\x66\x63\xaa\xdc\x3f\x41\x63\x55\x1c\x4f\xab\xd9\x22\x0f\xb1\x9a\xa4\x0c\xb6\xd2\x7a\xef\x17\x35\xf5\xfe\xa6\xb2\xaa\x3f\xac\xd1\x67\xcc\x7e\x90\xea\x04\x8d\x22\x3c\xc6\x3b\x84\xae\xc7\x68\xfb\x11\x65\x7a\x48\x07\xdf\x0d\x54\xab\xf3\xae\xea\xa8\x5f\x57\xeb\x12\xd1\x9e\xad\x5a\xeb\xd0\x91\xe3\x63\x25\xbe\x36\x4e\x93\x62\x14\xaf\x6d\x53\xe2\x30\x40\xb6\x60\xcb\xda\xb9\xae\x04\x9e\x19\xf5\x8d\xf8\x7a\x67\x4f\xef\xc9\x17\x94\xe4\xcd\x56\x45\x44\x19\xaf\xe5\x85\xcd\xd6\x30\x56\x6a\xee\xfc\x92\x5b\x6f\x6e\xd2\x7c\xae\xbb\x12\x85\x42\x63\x54\x4a\xe1\xbb\x9d\x52\xf8\x53\xca\x53\xd3\xc6\x7d\x43\x7c\x1c\xe7\x09\x30\xbf\x57\x8e\x5b\x99\x69\x76\x6c\xa2\x84\xc7\x6e\xdb\x88\xfc\x84\x0a\xb9\xaa\xd4\x03\xb2\xed\x9a\xa1\xc6\x8c\x06\x3e\xd1\x68\xdd\x32\x8b\x6c\x7f\xab\x5f\x8d\x4f\xe2\x4e\x11\xbe\xde\x0c\x14\xa5\x1e\x6e\xfb\x22\x02\xa2\xc2\xe7\x93\xad\x92\x11\xa1\xcd\xec\x38\x4d\xd6\x3a\x4a\x04\xfd\xad\xa9\x5f\x85\xdf\x0a\x36\x03\xe4\x64\x3d\x1c\x64\xb6\x6f\xb3\x88\x5d\x80\x58\xa0\x6e\xaa\x3a\x7b\x7f\xd6\xc0\x89\x2d\x2e\x76\x13\x43\xe0\x2f\x27\x16\xc9\xc8\x14\x54\x53\xb6\xf5\x3c\xca\xe5\x7c\x4d\xd2\x6b\xfa\x5c\xbd\x14\xf5\xcb\x55\x14\xfd\x3c\x7d\x94\x09\x69\xc0\x5b\xa1\xfe\x79\x9b\x26\x0e\x86\xee\x61\x0e\xf0\x44\x08\x5d\xd1\x38\x58\xd0\x1a\x51\x2e\xa6\x11\x9e\xdb\x7d\x9a\x1f\xa8\x10\x72\x28\x8c\x25\xfe\xd6\xd4\x73\x49\x8f\x60\x65\x75\xa2\x2e\x8e\xff\x78\x68\x4a\xeb\xaf\x43\x2d\x54\x89\x2c\x8a\xed\xc7\xa8\xf1\x8e\x97\xf6\x87\x98\x6b\x40\x90\x1e\xd3\x66\xde\x8f\x52\x45\x4c\x0a\xd4\x94\xff\x89\x64\x10\xbd\x67\x74\xc8\xee\xb5\xc2\xfb\x4d\x1e\x02\x06\x82\x5d\x95\x1f\x41\xe0\x71\x32\x87\x15\x7f\x20\x23\x3b\xa4\xad\xd5\xbd\xea\xbb\xc0\x64\xb8\xaf\xb8\x88\xf7\x55\x4a\x76\x02\x2f\x0c\x15\xa7\x77\x74\x4a\x9f\x14\xa3\xcc\x1c\xa0\x29\x83\x7a\x08\x7b\x7d\xf1\x49\x23\xde\x9f\xdf\xdb\x4d\x07\x03\x4a\x66\xda\xf6\x61\x2d\xdf\x47\x4c\x4e\xef\x6e\xf0\xb1\x72\x37\xf8\xb8\x86\xd6\x19\x09\xef\x1a\x37\x74\x52\x21\xe1\x4f\x06\x4a\x70\xad\x8c\xd8\xae\x18\x08\x00\xc8\x1f\xb9\x25\xc1\x87\x59\xdb\x7a\x54\xc6\xe3\xbf\x42\xe8\x88\xf1\xf2\x60\xfa\xb8\x82\xcc\x26\x5b\x3d\xb0\x08\x6b\xca\xc6\x21\x14\x21\x36\x0e\xe1\x53\xda\x6d\x0a\xdf\x7d\x4b\x79\xd3\x4e\x4c\x66\xe2\xb5\x6a\x2f\xae\x1e\x07\x5e\xf7\x51\x7a\xea\x7c\xac\xed\xcb\xcd\x7e\x9b\x6d\xf7\xdd\x0e\x86\xf5\xa2\x84\x7a\xbf\x5e\x38\xd4\xea\x36\x87\x75\xb5\xf6\x88\x7a\x32\x33\x3d\x1a\xc9\xf8\xb6\xd3\x0d\xb3\xc1\xf9\xbd\xdd\xac\xda\xd7\x0a\x6b\x33\x89\x72\x51\x63\x3c\xa5\xfa\x97\xa7\x54\x0d\x60\x6c\xb2\xfd\xdb\xf0\xd3\xa2\x8c\xda\x71\x16\x98\x2c\x07\x8a\x0e\x26\x63\x0d\xb0\x61\x81\xe7\x82\x02\x10\xdb\xc1\x30\x17\x56\x45\xd0\xb1\x19\x2f\xdb\xac\xf0\x9e\x24\x3f\xc3\x05\x7d\xa1\x0f\xb6\x10\x11\x88\xda\x41\x6d\x2b\x7a\x52\xa8\xfe\x02\xec\xc2\xc7\xda\x26\x78\x92\x45\xc9\x7e\x72\x49\xaf\x9e\x0a\x4a\x95\x20\x88\x62\xe2\x9f\x50\x82\x38\xff\x93\xeb\xda\xbe\x61\x9c\x36\x73\x8d\x47\x2a\xb8\x44\xef\x06\xb3\x62\x93\xd2\xe6\xfc\x7c\x1c\x86\xb1\x5a\x89\xb0\x3b\xff\x2b\x5a\x64\x58\x4f\x1a\x53\x1e\x0b\xea\x7d\x6c\x92\x18\x65\x8c\xbb\x11\x51\x0c\x0f\x2f\x18\x95\xc3\x14\x11\x9b\xf2\xca\x95\xa5\x1d\xb2\x6d\x42\x08\x56\x8c\x8f\x2b\xea\x1b\xfa\x11\x8d\x43\x61\xad\x5e\x54\x0e\xe0\x17\x95\x97\x6a\x3e\x89\x6c\xbc\x92\x0e\xad\xf8\xa0\xbb\xdf\xf3\x09\x4d\x5b\x23\x79\x77\x37\x37\x85\x8d\xe3\x88\xd3\x04\xac\x0f\x18\x22\x7c\x1c\x78\xce\xcc\x2a\x29\xc4\x2e\x2c\x08\x4b\x24\xf0\xc5\xfc\x36\xd2\xc9\xee\x2a\x3e\x19\x0c\x58\x42\xec\x15\x37\xb2\xe8\xc9\xf1\x89\x8a\x51\x96\xcb\x38\x26\x75\xf7\x45\x2f\x2d\xa0\xd5\x04\x5a\x14\x3e\x56\x4d\x96\x99\x04\x52\x29\xae\xd3\xee\x26\xe3\x79\x05\xbb\x8a\xcd\xea\x53\xd5\x74\x46\x64\x77\x38\x50\x0b\xe7\x86\x66\x26\x9f\x54\x60\xd4\x6d\x5c\xd1\x47\x38\xb5\x75\xbd\xb3\x6b\x17\x97\x20\xb7\x13\x1c\x03\xc1\xc4\x06\x66\x07\xf2\xec\xbb\xd8\xfe\x51\xec\xdc\xda\xf3\x06\xd1\x3f\x0e\x7c\x61\xf3\x32\x46\x01\x5a\x2b\xac\x75\x89\x81\xb4\x85\x10\x58\x88\xaf\x08\x9b\xfb\x82\xac\x17\x35\xf1\xe1\xb1\x05\xfe\x06\xb9\xd6\x25\xcd\xf2\x7e\x5f\x1b\xe3\x6d\x59\xf7\x56\x7d\x3b\x7a\xd5\xed\x23\xf5\xbb\xa6\xa8\x32\xe8\xec\x23\x0c\xbc\x43\x28\x0e\x2c\xb0\xd7\x03\x45\x6b\x58\xa7\x69\x80\xd5\xe0\xa6\xb2\xf9\x7b\xa6\xd7\x02\x33\xed\xdb\x9c\xea\xf2\xae\xae\x7e\x56\x17\x6c\xcf\xb6\x35\x10\xc3\x74\x3c\x31\x8e\xd6\x2a\x43\x5d\x39\x52\x69\x7d\x96\x7e\x99\xec\x8f\x18\xa4\x8d\xf5\x9f\xf3\x6c\x3e\x69\xf1\xf9\x9b\xef\x86\xa3\xc8\x0e\x66\xd4\xb3\x39\xa4\xbb\x6b\x81\x87\x3d\x9c\xd4\x18\xec\xc4\x3e\x4a\x3c\x08\x36\xb7\x92\xd5\xb5\xfa\x6b\x34\x24\x8e\x68\x25\x10\xf6\x44\xc3\x73\xdd\x46\x2f\x1f\xff\x41\xaa\x18\xec\x7a\x4a\x8a\x10\x7b\x9f\xe9\xe9\x9d\x32\x59\xe3\x36\xa1\x80\xc8\xb4\x6d\xfe\x55\xb7\xac\x15\xcb\x69\xd2\xc7\x3d\x48\x75\xaf\xe3\xe8\xf8\x33\xb4\x9a\x60\xd5\xba\xa5\x64\xfc\x32\x5b\x65\x7c\x36\x41\xfd\xc0\xf9\x92\x6d\x56\x24\x17\xaf\x2f\xb5\xa4\x14\x59\x39\x1c\x82\x1e\x3b\xbf\x57\x78\x51\x0a\xc6\x7a\xa6\x25\xea\xd9\x2d\x1c\x43\xc9\xbc\x18\xb9\x86\x10\x59\x60\x6c\xca\xd7\xc7\xc6\x36\x14\xb0\x34\x4a\x2b\xef\x52\x60\x86\xa9\x09\xd4\x1f\x3a\x0f\x57\x03\x5f\x27\x0d\xd3\xa4\xc8\x4c\x5e\xcc\x28\xc5\x8d\x6f\x4f\x15\xe6\x0a\xbf\x87\x48\xef\x4f\x5a\xca\x95\xaf\x38\xea\xaf\xf2\xce\x3f\xaa\xb4\xd9\x8f\xaa\x61\xf0\x8b\xe9\xa0\xe3\x57\x95\x1f\xaa\xb2\xeb\x0f\x9d\xf9\xd3\x68\x6d\x92\x0e\xe3\xb5\xd0\x8e\x45\xa3\x0f\x80\x36\xdc\x01\xe6\x3d\x34\x3b\xdd\xbf\x3b\x21\xdb\x2b\xea\xb7\x5e\x78\x71\x37\xde\x30\xf6\xe4\xfb\x41\xcd\xdf\xc1\xc3\x37\xce\xa9\xaa\x31\x2d\x82\x43\xde\x27\xda\xc2\x37\xa9\x45\xaf\x8e\xa2\x2c\x5e\x8d\x12\xf4\x0e\x24\x14\xab\xe6\xbc\x84\x68\x9b\xd7\xd8\x17\x17\xbb\xe5\x24\x0f\x4d\xac\xf5\xd3\xef\x2b\xbd\x99\xfb\xd3\xbf\xdd\xfc\x48\x35\xe6\xb2\xfe\x7e\x6b\x27\xee\x09\x0b\x94\xbc\xe3\xa4\x0a\x6e\xb7\xca\x9e\x0f\xd3\xb8\xbf\x6c\xb3\x21\xdd\x8b\x02\x1b\x3b\xe4\x71\x2b\xd0\x5b\xf1\xdb\x91\xbd\x1c\x09\x54\x63\xf8\x48\x9b\xdc\xe8\x67\xba\xb1\x5d\xb1\x99\x19\x4a\xe9\x1f\x7d\x11\x28\xbe\x61\x05\x46\xc4\x8a\x9a\xf7\x0d\xad\x9c\x6c\xc5\xb7\x5a\xde\x05\xe5\x15\x4a\xa4\xdd\xef\x26\xf4\xfa\xd0\x2d\xde\x4a\x24\x0c\x24\x51\xac\x93\x8a\x09\xf1\x28\x2d\xd3\x38\x7e\xbc\xa7\x6c\x57\xb7\xf7\x3c\x23\x72\xf0\xff\x23\xb8\x9d\x24\x64\x9e\x0d\xbf\x85\x16\x70\x84\x36\x6f\x2a\xb6\xca\x8e\x75\x15\xb5\x7d\xab\x91\x80\xef\xda\xd5\x8d\xad\xc9\xa1\x4f\x28\x4e\x28\x74\xe9\x20\x2f\xde\x54\x90\xe1\xf3\x6d\x88\xb1\x15\x13\x9a\x24\x04\x09\xb5\xad\x38\xbd\x79\x5c\x78\x77\x7e\xaa\xc1\xe1\x83\xc8\xe1\xd9\xc9\x8e\x4f\x1a\x4c\xae\xa5\xb9\x6e\xf5\x53\x56\x8a\x76\x78\x23\xe7\xb0\x41\x61\xc2\x7f\x65\xaa\xc4\x6a\x4e\xab\x77\x35\x31\xf1\xa3\xf4\xe5\xd8\xb8\xdf\xa1\x0a\x0b\x06\x20\xa8\xb9\xb8\xdc\x47\xd6\x29\xb7\x90\x65\x75\x66\xcf\x3f\xfa\xa2\x96\xba\x90\x80\x44\x2f\xb8\x9f\x46\x77\x0a\x29\xef\x95\x36\xdf\xe0\xd5\x6a\x5a\x3a\x7d\x01\x89\x4f\x14\x4e\xea\xbc\xf6\x1b\xa5\x5d\xd3\x0a\x9d\x50\x44\xfe\x69\x34\xc8\xc8\x6a\x23\x98\x85\x59\xba\x6a\x39\xe8\x73\x96\x44\xd5\x0d\xf3\x49\x23\xd5\xfb\xe2\x3c\x35\x36\xbd\x2c\xe5\x31\xdc\x21\xb3\x0a\x83\x1a\xb2\xf7\x19\x55\xa3\x1c\x54\x4b\x35\x6b\x05\x60\x82\xbc\xad\x79\x8b\xdf\xd6\xe8\xf8\xb7\x15\xb9\xe3\xaf\xa7\x2a\xbb\xfe\x9f\x5d\xd5\xd0\x26\x45\x94\x59\x38\x37\x2d\xd6\xec\x8e\x64\x34\x29\x75\xaa\x91\xc9\xc6\x26\xa4\x7a\xea\xc2\xc2\x92\x63\x83\x75\x94\xfb\xd8\xc3\x6a\x23\x36\x8e\xde\x30\xcb\xb6\x18\x29\x61\xb4\xd3\xba\xd4\x74\x5a\x15\xd4\x26\xb1\x49\x8a\x9c\x88\x57\x3c\x60\x10\xf4\xcb\x4a\xe4\xc9\x7b\x87\x75\x49\x0e\x13\x47\x84\xf7\x54\xd2\x7b\x31\x50\x3a\x1b\x97\x69\xf0\xe1\xe3\xef\x4f\xb5\xf5\xa0\x8a\x28\x3a\x3d\x65\x72\x9b\xd9\x95\x28\x2d\x79\x48\xb8\x49\xe6\x27\x9c\xb6\xcb\x8e\x86\x23\x64\x62\xb5\xba\xa4\x6c\x07\xb2\x05\x84\x51\x16\x42\x97\x94\xbe\x93\x9d\x9b\x95\xe6\xda\x6d\xa5\xd3\xfc\x8d\x06\x80\x67\xc5\xce\x7a\x09\x1d\x5e\xea\x44\x85\xc8\xe1\x88\x16\x9e\xee\xf9\x5a\xed\x96\x75\x7f\x3f\xfd\xb5\xbc\x48\x27\x11\x10\x60\x68\x17\x01\xa5\xca\xc7\x8d\x01\x5e\x85\x86\xa3\x28\x33\xa1\xd2\x98\x62\xa6\xbe\x58\xc6\x4a\x76\x92\x66\x43\x23\x4d\x56\x57\x41\x59\xf2\x84\x95\xcd\x8b\x8a\x0c\x8f\xea\xe9\xee\x5e\x12\x75\x9d\x73\x81\x92\xda\x39\x57\x2b\x67\x58\x33\x86\xe3\x22\xda\x04\x57\x94\x0b\xf3\xe3\x04\x1b\x47\x69\x0f\x2e\x5d\xc8\x18\x1f\xe9\x29\x75\xf5\xcb\x08\xd3\x99\x06\x3a\xd5\x96\xe9\x74\xd1\x0e\x37\xe7\x1a\xbc\x57\xe8\x06\xf0\x5a\xee\x2b\x74\xe0\xb0\x8c\xfa\x55\xf0\x62\xf3\xd9\xc6\x4b\x44\xbd\xf5\xa4\x82\x4b\xdc\xd0\x16\x37\xc7\x55\x72\x5d\x6d\x7f\x6b\xcb\x69\x7f\x6d\xd6\x8b\x67\x5c\xa0\xca\x2a\xe0\x3e\x57\x6a\x2c\xcc\xea\x7a\xf9\xdf\x5b\x85\x5b\x33\x9b\xa7\x59\xc1\x7a\x77\x62\x07\xad\xcb\x7d\xf7\x94\x5b\x98\x29\x0a\x3b\x9e\x14\xb3\xbe\xd2\xf3\x60\xea\xe3\x8b\x07\x94\xf6\xe1\x19\x60\x7c\xa0\x25\x70\x4d\xe1\x2c\xc2\x38\xcd\xed\x4e\x25\x4f\xf2\x1d\xba\x65\xe6\x49\x29\xcd\xef\x6b\xb0\x4c\x70\x06\xa8\x2f\x2e\x3a\x0a\x92\xa2\x17\x80\xb7\xe1\x80\x60\xbe\xb5\xc9\x86\x54\xae\xa6\x5d\x0d\x15\x31\x50\xad\xae\x92\xbf\xab\x11\xcb\xec\x9b\xeb\x9a\xc9\x24\x25\x9c\x42\x47\x21\xe9\xea\xe6\x4f\x6d\x62\x8f\x45\x9a\x58\x68\x62\xe3\xb9\x31\x88\x82\x15\xea\xe9\xce\x18\x82\xd2\xa8\xe9\xce\xef\xed\x0e\xa3\x7e\x1f\xf0\x20\x17\xd3\x3a\xb6\xe7\xd1\xcd\x95\xdb\x17\x17\xbb\xf3\x7b\x77\x7a\x78\xe0\x31\x55\x6b\xe5\x95\x4b\xd4\x18\xe8\x91\xb0\xd3\x94\x72\xa7\x80\x8e\x9b\xb3\xc4\x7f\xd9\xe1\x40\x0e\x6a\x0d\xcf\x6f\xf2\x40\x10\x4f\x04\xd5\xc4\x0d\x94\x6f\x9f\xf6\x7f\x36\x21\xe9\xdc\xc1\x64\x47\x4c\x8f\x3c\x0b\xea\x5d\x85\x63\xfd\x33\xfa\x3e\x51\x6d\xa3\x9f\x75\x58\x25\x4f\x81\x7d\xb3\x69\xde\xf0\xd2\x9e\x6e\x5e\x98\xa4\x3f\xeb\x3d\xf6\xce\x4e\x95\x02\xe4\x2d\x2d\x21\x77\x44\x89\x8a\x4c\x55\x7d\x2d\x1c\x84\x35\xb8\xda\x05\xb5\x96\x5f\x50\x6e\x95\x65\x32\xc9\x6c\x95\xe4\xa2\xac\xe8\xec\x90\xbd\xcf\x46\x20\x5d\x4a\x52\xae\x24\x6e\x25\xcc\x8d\x9d\xa0\x8c\xd7\x39\x03\xbb\x0c\x2b\xef\x99\x46\x78\x2b\x6b\x5b\x68\x32\x61\x82\x63\x45\xfb\x03\x2d\x0a\xfc\x07\x8d\xfc\xed\xc5\xc5\x6e\x3a\x18\xe4\xb6\xf0\x92\xc9\xce\x6d\xc5\xf1\x6e\x8f\xb4\x2a\x4c\x15\xe9\xd8\x70\xed\xc6\xd1\x07\x14\x84\xbb\xb5\xf4\x14\xa7\x69\x95\xff\x99\xc1\x0c\x4d\x51\x20\xbd\x20\x99\x84\xd1\x7e\xbb\x4e\xce\xf3\xdb\x74\x38\x4a\x27\x13\xb8\x7b\x8b\x53\x7f\xf5\x50\xc5\xc1\x5f\x89\x68\x18\x92\x11\x9b\xa5\x91\x89\x80\xee\x23\x5a\x03\xf8\x18\xcf\x14\x53\xfd\x3c\xa7\xdd\x7c\x56\xb3\x4a\x59\x85\x63\x1d\xf6\xf1\xab\xf8\x14\x2a\x77\xef\xe1\x3e\x31\x30\x90\xf4\xbb\x15\x6d\xc9\xdb\x80\xaa\x5e\xe0\xa7\x81\xa7\x43\xac\x7a\x5e\xc7\xdc\x8f\xaf\xfb\x56\xfd\x4f\x54\x99\xf6\xa0\xea\x03\x8f\x4d\x99\x59\xcb\xe5\x0f\xd7\x9e\x59\x74\x3e\x2e\xde\xef\x2c\x1c\x71\x91\x98\x5e\xa4\xd3\xef\x70\xbc\xeb\xb7\xda\x24\x7a\xfa\xd5\x18\x45\x41\x8d\xa3\xb7\x5a\x24\xe7\x4c\xd7\x54\x52\x88\xe1\x8b\x95\x80\x8f\x1b\x48\xd0\xbd\x2f\x75\x0b\x9b\x17\x34\x9c\x31\x39\xef\x07\x4a\xb5\xf0\x9c\xb2\x02\xf7\x2e\x86\x58\x3e\x45\xa5\x03\x1b\x3e\x3f\x7b\xac\x44\x67\x74\xb1\xeb\x91\x9e\x04\x2b\x93\x2c\x1d\x44\xf0\x7f\x57\xeb\xe8\x05\xe5\x92\x74\xa1\x51\x23\xda\xb5\xab\x3b\x5e\xcb\x6d\x3c\x40\x34\xa0\x7d\x78\xf8\xd8\x21\x01\xf2\x72\x79\xcc\x70\x7f\xa9\x7d\x56\xb7\x25\x35\xd1\x87\xf1\xe6\x8b\x74\x62\xde\x50\x02\x95\x3f\xc2\xc5\x8b\xb8\xd1\x0e\x0f\x8b\x40\x15\x8c\xe9\x6d\x81\xca\x5e\x9a\x5c\xb7\x85\x85\xee\x20\x8a\xc7\xb9\x02\x87\x20\x98\x14\xaa\x1b\x3d\x00\x9c\xdc\x6f\x30\x01\x5f\x5e\x9a\x23\x18\x5b\x14\x47\x26\x61\x34\x85\x74\x48\xf1\xd0\x6b\x82\xcc\x58\x86\xef\xb6\xe8\x47\xbf\xd0\x0d\xd3\xd0\x28\x9c\xfe\xb9\xc0\x63\xf3\xce\x79\x0f\x73\x72\xa5\xcc\xf5\xee\x86\x85\xac\xee\xaa\x8e\xe0\xf6\xeb\xed\xb0\x01\x5b\xd8\x2c\x31\x8a\x11\x74\x9c\x8a\x96\x62\x1f\xe9\x58\x74\x69\x3e\x89\xc8\x89\xbb\xc6\xf6\xc5\x8d\x08\xe8\xcb\xaf\x13\xaf\x97\x26\x8e\x8a\xb5\x47\x55\x50\x8e\x26\x24\xe6\xf5\x1f\xd2\xf8\x74\x19\x41\x95\x82\x08\x4e\x96\xa6\x2f\xa6\xc7\x23\x3d\xaf\xe2\xfb\xf1\xd4\xab\xf8\xc2\x01\x1d\x7b\xbe\xae\xf5\xfc\xe7\x9f\xff\xa5\x9a\xd9\x5c\x67\xd7\xbc\xf3\x9a\xf3\xec\xce\xe5\xa8\xd8\xea\x3b\xf5\x9f\x04\x76\x00\xe9\xe8\x9f\xd2\xc3\xa3\x1a\xe3\x6f\x3e\x03\x48\x11\x62\xcd\x2d\x30\x2d\x41\x41\xb4\x89\xcb\x86\x24\x60\x32\xa3\xdf\xf1\x31\x55\x9a\xd9\x8e\x7c\x1c\x19\x5b\xc7\x91\xc6\x87\x51\x92\xdb\x2a\x9b\x75\x4c\xcc\x47\xa8\xf6\xc0\xc7\x3d\xa5\x22\x48\x66\xda\x0c\x47\xd3\xd2\x35\xd2\x68\x6e\x0a\x1b\xf6\x6d\x6c\xd6\x24\x56\xc2\x2f\xc3\x6f\x9c\x8f\xdb\xa0\x7c\x79\x61\xe2\x28\x21\x8d\x78\x17\x91\x9c\xd2\xad\x9e\x53\x8d\xb1\xfa\xea\xab\x04\x08\xc6\xa6\x88\xc5\xe7\x06\xa6\x18\x9f\x68\xf5\x1d\x5b\x94\x13\xc5\xff\x3e\x5b\xd3\x8e\xf1\xa9\x71\x18\x9b\x2c\x4a\xb8\xfe\x84\x15\xf0\x1d\x82\xca\xf3\x71\xcb\xdd\xd6\xa4\x70\x38\x62\x0a\x7c\x36\x7b\xb0\xa1\xbe\x31\xbf\x97\x45\x30\x1c\xe0\x03\x7f\x79\x47\x29\xd0\xdc\x51\x1d\xe0\x34\x2c\xd2\x65\x9b\x3d\xee\xe1\x20\x5c\x4b\xe0\x12\x07\xa5\x16\xa8\x9d\x40\xdb\xc5\x79\x40\x56\xcf\xdf\xd5\x41\x3c\x96\xf7\x82\x6e\x8b\x21\x6e\xe1\xca\x18\x14\x9c\xf8\xaf\x74\xd1\x7e\x3b\xa5\x42\xa2\x83\xa6\x78\xc1\x77\xdb\x34\x13\x1c\x66\xa3\xfa\x02\xd1\xa5\x52\x72\x5d\xf7\xdc\xc6\x56\x8c\x32\x6b\x0a\x9b\xcc\x54\xd7\xed\x1c\x6d\xf7\x09\x91\x0a\x71\xa2\x84\x80\xca\xe7\x88\x97\x0d\xa5\x0f\xb9\xdb\x89\x05\x6f\xae\x56\x2d\xcd\x91\x05\x6a\x98\x26\xfd\xd2\xe1\x54\xd8\xff\x39\xf0\x79\x51\x03\x0c\x31\xbf\xb7\xbb\x6b\xd7\x27\x15\x8e\xe4\x1b\x88\x8a\xf1\x14\x6e\x73\x88\xc1\xee\x90\xf4\x45\x78\x70\x2c\xae\x84\x88\xee\x3f\xe0\xc1\x23\x76\x3a\x4a\xeb\x02\x26\xce\x55\x8a\x5d\x30\xad\x0f\xd3\xba\x87\xbd\xef\x37\x48\xd0\xfa\x86\x76\x06\x3e\xa3\xf7\xd7\xdf\x0a\x94\x40\xd8\x47\x81\x32\x41\xbc\x89\xd5\x4c\x78\x80\xf4\x8e\xd1\x30\x3a\x47\xc9\x00\xd3\x9c\x15\x0a\x85\x21\x15\xc2\x65\xa4\x11\x8c\x28\xe7\x47\x53\x8d\x1f\xa0\x7d\x54\x82\x1c\x15\x91\x8d\xa8\x56\xbd\xb5\xba\x11\x51\x9e\xe8\x38\x21\xde\x93\x53\x25\xd5\xf3\x03\x1a\x65\x40\xa5\x01\x8e\xc2\xc7\xeb\xb2\xca\x0f\x4c\x52\x98\x3c\x7a\x03\x55\x4c\x2c\xc9\x27\x71\x13\xc8\x49\x38\x84\x17\xc7\x08\x95\x81\xf6\x57\xa2\xbc\x8a\xc5\x1d\x54\xfa\x27\x40\xad\xf0\x49\xeb\xe6\x53\xa5\x24\x61\x14\xeb\x8d\xf2\x4e\xd0\xf9\xe2\xbc\x37\x7b\x57\x3d\x2f\xbf\x3e\x2c\x5b\x12\x39\xb6\x33\xbe\xea\x7e\x55\x55\x57\x41\x3a\x97\xfc\xbb\xb9\xb9\x6a\x3a\x31\x5e\xf7\x39\x65\x54\x7b\xce\xc1\xf5\xec\x81\x28\xb6\x5b\x95\x2f\x3c\x00\x99\x08\xab\xd9\xff\x19\x21\xfc\xd7\x94\x6e\xc3\x9f\xd2\xf0\x12\x6e\x54\x0b\xbd\x93\xfc\x73\x50\xf6\xc1\x76\x36\x0b\xde\x90\xa8\xa1\xfb\xaa\x1a\xe7\x5b\x48\x89\x2f\x4d\x9f\x53\xc4\x85\x6a\xc9\xcd\xa3\x82\xed\x6d\x25\x50\xa1\xef\x61\xa9\x4b\xc5\x66\xbf\x8a\xd1\xca\x32\x3f\x35\x11\xb5\x2c\x9d\x60\x8f\x96\x5f\xec\x2c\xcd\x6d\x60\x9d\x01\xc7\x62\x66\x5d\xe1\xf8\xef\x06\xde\xfa\xf3\xc3\xc0\x37\xae\x8f\x62\xc9\x62\xd0\x9d\x16\x39\xed\xac\x2b\x80\x7f\x6a\xb2\x7e\xbe\xad\xb3\x6b\x17\xef\xdd\x27\x50\xe7\x97\x9e\x1e\xfd\x10\xae\xfe\x3a\xfd\x10\x62\x85\xad\x3d\x8f\xc1\xbe\x4e\x73\x08\xfd\xa9\x4b\x53\x91\xaf\xee\xa3\xfa\x2a\x40\x7c\x0f\xac\xff\x23\x3c\x40\xdc\xc9\x4f\xbc\x7a\x74\x9a\x0d\x47\xe5\xb8\xe3\x35\x66\x7f\xa8\xca\x00\x3f\x6c\x0c\x99\x5d\xbb\xba\xf9\x28\xb5\x50\x77\x91\x6c\xa6\x96\xe8\x38\x84\xa7\xe9\x9b\x6c\x46\xfd\xd7\x71\x45\xf5\x44\x2b\x04\xdd\xcc\x9b\xd3\xbf\xf3\x90\xb0\x36\xb1\xd9\x4a\x5a\xe6\x89\xcd\xf3\x99\xea\x51\x39\x02\xaa\xeb\x36\xf2\xd2\x86\x74\xe9\x50\x8b\x8a\xe2\x62\x77\x9c\x66\xa4\xbc\xb3\x7b\xe3\x12\xd6\x23\x2c\x00\x08\xa8\xb0\x33\xb1\x73\x11\x7a\x1b\x6f\xd6\x00\x2e\x51\x4c\x01\x12\x3e\xb3\xb3\xa7\xbf\x07\x57\x83\x5e\x06\xff\x3f\x42\x23\xb1\x4a\x52\xa4\x7d\xd3\x8f\xd7\xb6\x2a\xb7\x5d\x5e\xab\x55\x5b\x47\x66\xec\x03\x25\xc7\xf6\x08\x88\x34\x28\x32\xfc\x41\x0b\xcc\x6e\x4f\xd7\x0e\x87\x5c\xc2\x15\x8d\x66\x45\xae\xbd\x50\x93\xc9\x9f\xd8\x18\x88\x61\x26\x61\x62\x11\x17\x46\xe6\xd3\x4a\x4a\xc9\xae\x0d\x50\x18\x9e\x77\x1d\x45\x9a\x5b\x7c\xe2\xea\xa2\xe1\xc8\x3a\x98\x2d\xf2\x7e\x66\x2d\xf2\x49\x6b\xb7\x9c\x78\x28\x34\x7c\x9c\x37\x51\x75\xf9\x52\xa8\x78\xca\x25\x5a\x36\xcf\xcb\xcc\x6e\xab\x76\x22\xf1\xd5\xe9\xec\x9a\xdf\xb8\xa4\x8a\x71\x8c\x94\x41\xa5\xfc\xc1\x54\x19\xae\x79\x59\x8a\xf1\x33\xbd\x67\x15\x18\xdd\x0c\xc9\xa7\x4e\xe5\xf7\xe8\x3b\x0b\x05\xd9\xbf\xfc\xd5\xcf\xbf\xf6\x79\x7a\x08\x1b\x77\x00\x99\xbe\xd3\x8a\x54\xb7\x79\xb1\xdd\x97\x65\x7e\x82\x69\x86\xd1\x79\xa3\x56\xa4\xfc\xbe\x6f\xd7\x9e\x7b\x0e\x50\x2c\xfc\xd9\x2d\xbc\x7f\xd4\xc6\x18\x4c\x27\xe0\x03\x2f\x87\x10\x25\xaf\x95\xd9\x1a\x54\xa2\x75\x36\xc6\x78\xed\xa9\x47\x77\x5c\x9e\x7a\xba\xdc\x23\x3d\x65\x94\x72\x52\x99\x32\x2f\x9b\x6c\x68\x22\x96\x15\xc2\x38\xbc\xad\x38\x8e\xb7\x95\xdb\x49\x3f\xca\x29\x87\x19\x08\x5e\xc8\xb9\x8c\xb9\x7d\x96\xc8\x01\xee\x42\xf3\x12\x9c\x06\x85\x57\x63\x9c\x17\x42\xe7\x77\x94\x42\xd3\x4f\xf5\x82\xcc\x81\x20\x66\x16\x42\x62\xf4\x91\x0e\x4d\x7d\x61\x85\xb1\x52\x88\x05\x2e\xf3\x4c\xe2\x2f\x76\xab\xcf\x80\xaa\x61\x0a\x11\x75\x4a\xfb\x8d\x34\xe9\x92\xf3\x7b\xd9\x1a\x89\x0c\x60\x5c\x87\xe1\xa4\xf2\x69\x6a\x02\x6b\xf7\xcd\x75\xc7\x69\x12\x15\x69\xb6\x49\x7f\x5f\xd9\xc6\x9c\x78\xa8\xf2\x43\x6e\xc6\x9d\x6a\x83\x7f\x08\x8c\xcc\x67\x00\xd6\x24\x79\xc7\x0b\xc9\xdc\x0a\x3c\xed\xef\x96\x6b\x79\x11\xe1\x9c\x3c\xcb\x9d\x7e\xf2\x6d\x65\x23\x7d\xdb\x35\xea\x53\x72\xc2\x4c\x33\x4e\x95\x51\xd9\xc1\x2a\xa6\x74\x51\x5e\x71\x36\x68\xae\x2c\x93\xc4\x69\x28\x6a\x75\x78\x8c\x4c\x05\xe0\x13\x2d\xc6\x58\xc6\x96\x2c\x25\xd8\x1a\x38\x50\xa0\xa4\x5b\x1a\x52\xf4\x3f\xd0\x3b\x46\xce\xfc\xac\x02\x28\xb1\x2d\x9b\x54\x16\x7d\x73\x1b\x1e\x18\xc8\x89\xb7\xa9\x89\x9d\xd9\x55\x93\x11\x20\xb6\xda\x28\xb0\x1c\xc3\xc5\x8e\x8f\xdd\x83\x1a\x98\xbc\x58\x36\x71\x3c\xe3\x73\x46\xac\xb9\x0a\xa8\xec\x29\xc5\xc2\x92\x59\x36\x19\x0a\x21\xd2\xb5\xa6\xc7\xc0\xba\x55\x5a\x36\xf8\x66\x23\xdc\x87\xbe\x33\x69\x92\xbc\x5e\xda\x18\xa5\xc5\x36\x8f\xdd\xcd\x89\xcb\xe7\xba\xc3\xac\xb4\x79\x3a\xd6\x8d\x74\x20\x84\xd0\xce\x86\x03\xa2\x88\xf7\x39\x2c\x9d\x1d\x9a\x70\x4d\x8b\x47\x4e\x7d\xa9\x49\x2b\xd4\xd3\x12\xcb\x1e\x8c\x98\x66\xb0\xcd\xe2\xe3\x86\x3f\xd0\xbe\xb9\xdd\xdd\x41\x74\x40\xc6\x3a\x06\x08\x34\xad\xf8\xd8\xb1\xc6\xaa\x05\x23\xe9\x5b\x37\x2f\xb0\x4a\x00\x04\xc3\xc7\x8a\xbf\x65\xc2\xd0\x4e\xe0\x26\xe4\x28\x44\xe8\x0a\xf1\xb1\x72\x71\x61\x8b\x9a\x22\x9d\x74\x14\x64\xf2\xb8\xf6\x9c\x38\xae\xaa\xb9\xab\x36\x1a\x8e\xf2\x19\x05\xf5\xbd\xa0\x55\xe3\xb5\x16\xef\x39\xd5\x06\xeb\xdb\x89\x4d\xfa\x36\x09\xd7\xb8\x90\x81\x8e\x11\xa2\x70\x88\x4e\xdd\x56\x1a\xfd\x27\x55\xb3\xdd\xf4\x5f\x4b\x23\xe1\xd6\x79\x87\x20\x95\x7a\x9e\x69\x40\x6f\x59\x75\x07\x3e\x73\xf2\xcc\x80\x95\xbb\x89\xb9\xc3\x27\x6d\x20\x9a\xe5\x2c\x2a\xa2\x7c\xc4\x17\x2a\x26\xba\x5e\xa4\xe1\xd2\x54\xd1\x26\xef\xaa\x47\x39\xb1\xd9\x38\xca\x41\x57\xdc\x37\xc7\xb7\x02\xb1\x04\x3e\x5e\x7f\x46\xf3\x2a\x8b\xcc\x64\x6b\x34\x14\xf1\x24\x0f\x22\x66\x45\x25\x6e\x96\xe2\x29\x6c\x68\x5b\xd6\x5b\x18\x01\xe3\xb4\x0f\x2b\x43\xc9\x44\xd1\x62\xe7\x63\x6d\x13\x91\xae\x2d\x5b\xd7\x6f\x15\x0f\x08\x5f\x85\x39\xe6\x3a\xc7\x45\x99\x25\x86\x84\xfc\x3a\x1e\xcb\xa5\x53\xf4\xdb\xad\xae\x79\x6a\x0c\x63\xc0\x40\xa7\x93\x8f\x1b\x8f\x78\x69\xae\xbb\x6c\x43\x53\xe6\x48\x54\xd0\xb5\x62\xe5\x13\x71\x52\xae\xee\x1d\x73\x72\x3b\xad\x62\xb4\x83\xbd\xfc\x6c\xcf\xb3\xa3\xf2\x72\x39\x0f\xb3\x68\xd9\xf2\x3a\x82\xe2\xc0\x0d\x2d\xb4\x7c\x48\xf9\xac\x6a\x5b\xfb\xe5\x68\xbf\xcd\x29\xc1\x43\x90\x72\x10\xbf\x0d\x61\xfc\x43\x53\x8f\xda\x3d\xeb\x48\x7d\x2b\x69\x61\xe1\x23\xe4\x22\x5c\xef\x2b\xf8\xa7\x53\x9f\x2c\xde\xd5\xc2\xac\xcc\xf7\xc3\xb0\xb9\x36\xf5\x6f\xfa\x9e\x77\x9c\x0d\x9f\xeb\x69\x7f\x96\x36\xa3\xd6\x30\x4b\xf3\xbc\x6e\x97\xe4\xa5\xf6\x2f\x78\x2d\xbf\x34\xb1\x85\x61\xb0\x0e\x32\xdb\xb7\x35\x9a\xf3\xed\x46\x2f\x98\xe0\x5f\xc4\x3b\xac\xd5\xf2\x0e\x04\xbe\x96\x77\xa0\xc6\x7b\x58\xb6\x71\xbe\x55\x89\xff\x22\x6b\x45\xa2\x76\x52\x93\xab\xbe\x35\xf5\xcc\x51\x40\x6b\x45\x80\xf6\x61\xfd\xaf\xb1\x49\xfa\xcc\x62\x76\x22\x29\x1e\x66\x7d\xae\x55\x28\xdd\x0c\x48\x4b\x86\xfe\x0e\xb1\x34\x88\x90\x7c\xdc\x26\x4d\xd2\x8f\xf2\x09\xdc\x34\xbd\x28\xe6\xd9\x40\xad\xa9\x67\xd5\x3a\xda\xb7\x79\x94\x51\x11\x4f\x61\x30\x99\x42\xc4\x27\x6d\xfa\xfd\xcb\x76\x18\x25\x9e\x0d\x2c\xfc\xfa\x8e\x53\xac\x3f\xe2\xdc\x91\x6c\x42\x44\x55\x31\x44\xea\x2c\xfa\xa0\xcc\xa3\x6b\xbe\x4e\x4b\x37\xb6\xc3\x1d\x3d\x35\x8b\x4f\x29\xad\xc9\xd3\x54\x62\x42\x25\xe5\x0e\x52\x11\x15\xde\x09\xb6\xe2\x63\x15\x00\x67\x66\x52\x65\x0e\x4a\x1c\xe0\xbc\xea\xd4\x9e\x57\xa0\xc5\x7e\x64\x96\x6d\xc1\x3b\x1b\xf6\xbd\xab\x78\x3b\x7c\xa2\xe0\x3f\xc5\xc8\x8e\xe1\x97\x4a\x2e\x32\x40\xca\xdd\x44\x1a\xc3\xea\x82\x08\xcf\x45\x6a\x90\xee\x87\x41\x03\xda\x33\x14\x8a\xae\x0c\x19\xe3\xa8\xd4\xcd\x24\xa7\x4c\xbb\x15\xfa\xac\x08\xef\xb7\x40\x22\x99\x4d\xe1\x03\x1f\xd9\x1c\x57\xaa\x46\x7b\x22\xac\x6e\x22\x5f\x4d\x3f\xc9\x27\x8d\x04\x0b\xc0\x78\x3b\xe1\x30\x0d\x97\xb9\xa1\x19\xee\x1b\x2a\xd3\x8b\x92\x7c\x12\x65\x16\x7f\x2b\xba\x7d\xbe\xbf\x7f\x36\xf8\x94\xc7\xb8\x47\x61\x15\x5f\x72\x36\xae\x54\x57\xbe\xab\x54\x57\xbe\x5b\xab\xa7\x4c\x46\x96\x10\x55\x1b\x6f\x91\x6e\xc3\xc6\x5b\x0e\xd0\x6a\x48\x98\x24\x1d\x43\x2f\x65\xdf\xdc\x06\x15\x9d\x36\x74\xd4\xfb\x7a\x19\x65\xfb\xb1\x34\x20\xf9\x63\x82\x25\x9f\x4c\x3f\xe5\x73\xf4\x28\xcf\xec\x04\xe2\x49\x96\xa5\xb5\xd0\xcf\x93\xdc\x80\xcf\x5a\xe4\x90\xf7\x74\xcb\xdc\x52\xa9\x57\x09\x13\xc9\xd8\x03\x14\x55\xa2\x11\x4f\x7e\x5e\x2e\xa3\x98\xac\xf5\x68\x2b\xc4\x8e\x37\x43\xbb\x26\xc2\xd5\xbf\xd0\x43\xad\xb3\xbe\x49\x5c\x69\x69\xae\xbb\x34\xb7\xf4\x68\xf5\x9b\x28\xf6\x5c\xa6\x71\x83\x82\xdb\x3d\x2a\x9d\x63\x40\xbf\x3f\xd5\xab\x9a\xf2\x27\x61\xd0\x0d\xee\xea\x28\x9a\x44\x4e\xaf\x74\x69\x6e\xe3\x52\xb3\x68\x33\xdf\xcd\xa2\x15\xd6\xa6\x41\xad\xe4\x56\xe0\x09\x22\xb7\x54\xe4\x6e\xca\xe1\xe7\x3b\x1e\x4a\x7c\x8c\x06\xa5\x98\x74\xe9\xb7\x9b\x94\x61\x87\x72\x51\xbc\xfa\x9b\x6a\x18\xdc\x6c\x69\x0a\x75\xb3\x32\x61\x88\x25\x12\x65\x76\x09\x63\x31\x3f\xba\x1a\x10\xcf\xee\xb5\x09\x65\xe7\xd6\x64\x8c\xff\x41\x2a\xfb\x5d\x12\x51\xe2\x63\x50\xb4\x04\x51\x4d\xde\x04\x0e\xe3\xfd\xdf\x88\x4a\xec\x8e\x9e\x17\x24\xfe\xf1\xb4\xf6\x9c\x17\xa5\x4e\xbb\x01\x74\x26\xde\xe9\x53\x3d\x25\xa1\x0f\x60\x89\xa6\x1d\xf2\xa7\x03\x4d\xef\xae\x2b\xee\x79\xae\xf3\x24\xff\x3c\x87\x67\xf8\xbf\x47\x7b\x1e\x4b\x7b\x08\x1f\xc2\xc4\x9f\x75\x0d\xb1\xdc\x44\x49\x11\xaf\xd1\xb6\xef\xe0\xc3\xae\x9d\x79\x56\x01\x84\xae\x69\xbd\x36\x20\xe4\x15\x70\xf6\xa4\x02\xce\x9e\x74\x7b\xaf\x29\xfb\x51\x21\x81\x1f\x3a\x06\x90\xe7\xe7\xe3\x75\x4f\x60\x9e\x94\xcb\x71\x14\x3a\x2f\x21\xd1\x3b\x01\x52\x87\x45\x51\x14\xb8\x5d\x63\xf2\x62\x93\x0c\x4b\x33\xa4\xc2\xf1\x0b\x1c\xc2\xfe\x3f\x10\x71\xd1\x02\xd5\x48\x65\xbf\xaa\x20\x38\x32\x73\x45\x66\xa5\x61\xbd\xbe\xab\x3b\x28\x93\xc4\x3a\xff\x17\xcc\x58\xb6\x64\xe6\x93\x06\x3a\xf5\xd5\x57\xbb\xe3\xbf\x0b\x27\x16\x4c\x3d\x2e\x4a\xb8\x0d\xe9\x65\xdf\x9f\x70\x69\xf5\x78\x92\x55\x19\xf3\x8c\xc7\xa8\xc1\x58\x08\x3b\x1a\xcc\x60\x50\x06\xef\xac\xef\x70\x8b\xf6\x2e\x08\xac\xb2\x8d\xf6\xb4\xa3\x84\x9a\xb6\x7c\xc6\x51\xf6\xfd\xb2\x7e\xbc\xd1\x94\x5b\x58\xa8\x32\x89\x32\x67\x41\xb8\xff\x8f\xf2\x9d\xfb\xe6\xc0\x77\x29\x22\x8e\x02\x5e\xe0\x98\x0f\xd0\x21\x3e\x6e\xf4\x3b\x97\xaa\x8f\x25\x09\xd1\x25\xf0\x40\xd1\x1f\xfa\x78\xea\xc9\x2b\x1f\xab\xdd\x20\x31\x45\x99\x99\x38\x7a\xc3\x14\x22\x76\x82\x92\x14\xab\x5c\xf0\x89\x06\x04\x1e\x08\xe3\xb2\x2f\x84\x0f\xe1\xba\x2b\xde\x7b\xa0\x8d\xe5\x63\x3b\x43\x25\x56\x76\xf4\xd3\x32\xcc\x4a\x67\xe8\x62\x5b\x3d\x6e\x50\xa5\x42\x9d\x4d\x66\x3b\x78\xe0\x1f\x69\x61\xa0\x83\x2d\xb4\xf1\x55\xca\x59\x29\xca\x17\x3f\x03\x5a\x02\xd0\x07\x44\x5f\x05\x8d\xfa\x43\x53\x65\x42\xdd\x54\x17\x99\xdf\xdb\x4d\x27\x16\xfa\x61\x18\x6a\x5b\x7b\x7e\xd8\x6d\x6d\xb8\xbd\xef\x9b\x7b\xa5\x9b\xb3\xb0\xfb\x8c\x42\x08\x5e\x56\x5b\xd0\x0c\xf5\xc3\x41\xb7\xbb\xde\x02\x93\xec\x46\x49\x58\x66\xae\xea\x25\xca\xd2\x8a\x29\xf3\x1d\x8d\x72\x32\xe3\x89\x80\x7f\x51\xbf\x99\xa8\x3e\xdc\x44\x69\x7d\x44\x49\x61\x87\x99\x54\x96\x90\x18\xea\xdc\xf7\x76\x63\x76\xbe\xb8\x48\xa5\x85\x72\x0c\xfa\xc3\x2b\x4e\xb1\xb5\xe3\x2c\x8b\x18\x0a\x2e\xb6\x70\x8a\xb1\x3b\x2a\x69\x51\x02\xa3\x69\xa3\x89\xf6\x99\xdf\xdb\x1d\x97\xe1\xa8\xe3\x0d\xa5\x7e\xa6\xe7\xbb\x2f\x3f\xb3\xde\xb2\x54\xc0\x20\x58\x46\x36\x37\x9a\xd6\x15\x16\x7d\xb6\xe1\xa1\xbb\xb0\xd0\x1d\x9b\x2c\x1f\x8d\x49\x4a\x42\xd1\x09\xd8\xae\x97\x4f\x1e\x5a\xdb\x2b\xd2\xf1\x8c\x52\x9e\xbf\x13\x40\xa8\x0c\xe3\xf6\x24\x89\x2c\xf3\xa0\xbc\xa0\xfa\x97\x79\x41\x64\x1b\xd2\x9e\xc2\xa6\x75\x19\x03\xd0\x29\x09\x2d\x8a\x29\xc1\x65\xb4\x99\x14\x7c\x4d\xb4\x3c\xca\x84\xe8\x2a\x0b\x0b\x4e\x6b\xa6\xa3\x44\x68\x5a\xd2\xb5\x3c\x35\x13\xce\x2f\xc4\xd3\xc4\x2f\x4c\xe7\x95\xa6\x8a\x3d\x30\xa9\x26\x48\x1f\xeb\x0a\xba\x4a\x57\x94\xf2\xcc\x95\x87\xfa\x7a\xbc\x56\xc6\x91\xad\x61\xa1\x35\x58\xf0\x5c\x1b\x58\x90\xf5\x58\x5d\x56\xe2\x24\x7a\xbd\x5c\xaf\x62\xa2\x4d\xcc\x78\x32\x8a\x6d\xc1\xf7\x81\xe7\x7c\x96\x82\x17\x3e\x6e\x7a\xfb\x2e\xed\xfe\x4c\x77\xd5\xf6\xfb\x42\xa2\x60\x2c\x67\xe0\xb1\xd7\x6f\x4e\x77\xc8\x36\x50\x14\x1a\x59\x74\x46\xf7\xc8\xb4\xb3\xdd\xe5\x46\xde\x47\x02\xcc\xe3\x34\x89\x80\x33\x77\x82\x11\xaa\xdc\xea\x67\x65\x6c\x4d\x22\x93\x06\x5f\x78\x5a\x57\xc4\x2f\x52\xce\x84\x87\x7d\xaf\x8d\xeb\xd8\xb7\x65\x91\x87\x23\x54\xb0\x31\xe9\x41\x5a\xe5\x63\x85\xf5\x1b\x98\x28\x2e\xab\xd8\xdf\x0b\xa7\x9d\xa7\xf5\x58\x04\x17\x55\xc9\x2d\x8b\x8a\x28\x24\x05\x99\x2a\x4c\x27\x76\xe3\xc6\x21\x35\x6e\xd3\x71\x12\x2d\x63\x35\x91\xc2\x2e\x8c\x4c\x04\x04\xe2\xfb\xd5\x63\x9b\x85\xb6\x2f\x6c\x4c\x9e\x1d\xa8\x41\xc8\x54\x79\x5a\xe5\x66\xe9\x38\xaf\xf6\x97\xf9\xbd\xbc\x95\x42\x2a\x85\x8f\xdb\x16\xc1\xbc\x28\xc7\xcb\x2e\x2c\x70\x8d\xff\x6a\xae\xf3\x89\x62\x68\x8f\xc9\xb5\x71\x46\xf1\xf6\xef\x4c\x35\xcd\x88\x3e\xc6\x0c\xdd\x9e\x6f\x0c\xe5\x26\x26\x3f\xb9\x17\x1c\xce\xa1\xa3\xfc\xa4\xe9\xdb\xb0\x3f\x1f\x05\x68\x42\xc4\x0a\x95\xb0\xcc\x45\xdd\x27\xbb\x45\x3f\x8a\x9b\x82\x18\xbb\x44\xc5\x4a\x0b\xe6\xeb\xae\x65\xbb\x6a\xf3\xc2\x66\xc9\x56\x15\x0d\x3f\xbe\xae\xf2\x96\x9a\x81\x06\x16\x5d\x14\xd9\xfe\x06\xed\x41\x62\x01\xd1\x86\xb4\x4b\xec\x81\x82\x22\x4e\x31\x19\xae\x26\x90\xee\xc0\x08\x23\xca\xc7\x78\x45\x3a\xb4\xc5\xc8\x66\x54\x17\x40\x3e\xc1\x4a\xa0\x58\x72\x9e\x45\x14\x2d\x86\x44\x74\x69\xb8\x68\xc6\x77\x20\x67\xe0\x77\x84\xf0\xf3\xf1\xf5\x2a\x6c\x07\xc6\xfe\x18\x76\xda\x9a\x3b\x0a\x32\x88\x3b\x4d\xb1\x90\xa5\xb9\xa5\x8e\x87\x9c\x7f\x83\x82\x64\xa1\x9b\x28\x67\xd6\x18\xca\xe2\x1d\xa7\xa7\x73\xbf\xe6\x82\x43\x57\x22\xf8\x42\xc9\x59\x43\x43\x98\xbf\x28\x2f\x78\x26\x63\xf7\xbb\xa9\x64\xda\x6f\xaa\x52\x4c\x9c\x86\x2c\xba\x54\x5d\x03\x76\xd5\x63\xca\x72\xf3\xd8\xd4\x83\x32\x7f\x71\xfb\x8c\x77\xfc\xbe\x80\x84\x0e\x2f\xe0\x47\xf4\xf6\x90\x9b\xb2\xdf\xaf\x48\xc5\x57\x09\x8c\x34\x09\x3d\xde\xec\xad\x40\x49\xdf\xfb\x52\xdb\xc0\x86\xfb\x63\xcb\x45\x39\xe6\xe0\x4d\x7d\xdd\xfe\x66\xad\x29\x90\xf6\xcb\xb0\xd8\xd1\x71\x2a\x2b\x1f\xd3\x65\xe3\x31\x6e\x04\xbe\x41\x70\x4b\x5b\xc1\xdc\xc4\xb8\x17\x99\x02\xba\x07\x25\x24\xf2\x8a\x57\x83\xdc\xb5\x4b\xbe\x17\xec\x09\xfe\x0f\x1a\x6a\x18\x3f\xc7\x14\x53\x78\x25\x4a\x63\xb1\x3d\x70\xb6\xdc\xd0\x57\x41\x30\xfb\x91\xd2\x55\x7e\x1b\x17\x01\x16\xd4\xe9\x36\x59\x1a\xd8\xbf\xd3\x05\x31\x2c\x45\x79\x22\x5f\x74\x2f\x7b\x39\xb3\x66\x7f\x31\xca\xd2\x72\x38\x9a\xf1\x2c\x84\x0e\xa1\x69\x44\x8d\xa2\xfa\x20\xd2\xf3\xc7\x7a\x5e\x0c\xa0\x48\x27\x4f\x76\x9c\xb9\xc3\xd6\x1e\xad\xaf\x2e\x16\x5d\x9a\xe3\x06\xd2\xff\x36\xf5\x72\x2c\x90\x34\x15\x5f\xbf\x8e\x77\xb9\xd7\xf5\x75\xb6\xd3\xd2\x66\xc4\x8e\x4c\xe1\x84\x82\xff\x97\x43\xa8\x0d\x20\x61\xef\xb0\xbe\x12\x12\xb3\x0f\xa6\x4a\xd1\x8b\x21\x73\x40\x8f\xbc\xa7\x44\x0f\xd3\xe5\xc2\x44\xc9\x36\x5f\x53\xfe\x16\x04\x7f\x25\xed\xa4\x42\x1d\x9f\x28\x7d\xfa\xef\x22\xa4\x11\xf1\x1d\xc5\xa8\x72\xcb\x56\x66\xfb\x65\x28\x1e\xa1\xb8\x5a\x16\xa2\x77\x77\xeb\xa5\xa1\xde\x6e\x84\x12\xfb\xe6\xba\xab\xa3\x28\x9f\x28\xd8\x39\x03\x30\x14\xd5\xf2\x66\xdb\xf6\x5b\xad\x96\x51\x0c\x0d\x0a\xc4\x6d\xc8\xa4\xf9\xd8\x65\xdc\x66\x39\xcd\x24\xff\x79\xb0\xde\x59\x58\x70\xa0\x6f\x6b\xb2\xb1\xc9\x9c\x12\xfd\xc6\x31\xda\x01\x8f\xa9\x1d\x90\x75\x6e\x67\x3c\x76\x0a\xeb\xa5\x68\x8a\x79\x95\x8d\x7f\xdb\x88\x68\x5f\x5c\x24\xa2\xc7\xac\x6f\xd2\x69\x51\x83\x3f\x7e\x7a\x5d\x83\x08\xae\x69\xc5\xce\x27\x1b\x3e\x15\x84\xfe\x1c\x45\xcb\x51\x51\xb3\x15\xe3\xf6\x18\x9f\x28\x18\x2a\x69\xcc\x6c\x53\x3c\xf5\xaf\x7b\x2b\x95\x4f\x3f\x0f\x3c\xb0\xd3\x06\x12\x47\xa4\xef\x3d\xb3\xae\xf4\x46\x79\x5f\xc3\xf6\x75\x47\x69\x16\xe7\x65\x36\x30\x61\xf5\x40\x5f\x76\xca\x48\xe7\xa8\x77\x2d\xe5\x63\x25\x36\x66\x62\x93\x31\x5d\xd3\xf9\x5f\xb8\x0e\xd6\x1d\xa5\x32\x37\x4e\x93\x62\x98\xc6\x83\xa8\xca\xc9\x9d\x92\x13\x44\xd9\x95\x67\x8c\x54\x77\xae\x2b\x41\x9d\x24\x15\x35\x00\x9e\x2c\xca\x36\xe6\x1d\xac\xae\x82\xbc\xf4\xe5\x8f\xc2\xc6\x76\x25\x22\xdf\xf2\x8e\x57\x30\x87\x7e\x3a\x1f\xab\xe7\x99\x41\x3d\x77\x7e\x2f\xe7\x23\x58\x31\xf8\xb8\xe7\xd5\x4e\x0a\xe9\x03\x3b\x49\x64\x9f\xd4\xbb\x55\x5b\xe4\x9b\x1f\xf5\xdb\x18\x74\x1e\x30\xaa\x18\x6d\x84\xe8\xe2\x0c\xf2\x01\xa8\xec\xfd\x9d\x5e\xad\xe1\x42\x93\x0c\xa8\xee\x2b\x4a\xfe\x17\xc6\x9d\xf2\xcc\x64\x16\x8c\xcb\x3c\x74\xf1\x13\x42\xb2\x77\xb0\x23\xf2\x89\x92\x4a\xf0\x60\xd9\x7d\x73\x0e\x2c\x4b\x17\xe5\x6c\xfd\x1d\xfb\xe9\x76\xab\xd5\x48\x66\x97\xd3\x52\x72\x0a\x6f\xf4\xaf\x60\x4f\xcd\x6a\xe6\xd2\xdc\x9e\x6e\x9e\x96\x90\xee\x77\x56\x1b\x4b\x73\x8e\xa1\xdd\x54\x42\x5e\xac\x62\xd8\xb1\xe8\xf6\x00\x11\x80\xde\x3b\x1f\xb7\xb1\x43\xb3\x28\x1c\x89\x2a\xa3\xe8\xd5\x78\x80\xcc\x59\x95\x18\x0d\xb3\x88\xfc\xbf\x90\xba\xa3\x1d\x70\x5e\x61\x5c\x6e\x29\x7c\xc1\x51\x15\x0c\x9b\x71\x14\x3a\xcc\x35\x76\x2d\xc6\x39\xf2\x89\x72\x39\xa4\x80\x62\x87\xd7\x5c\xb9\x01\xb2\x37\x56\xf0\xb7\x74\x3a\x7d\x3d\x50\x10\xe1\x6b\x53\x2f\x6d\xf7\xa1\x92\xb6\xfb\x50\x13\xb9\x4f\xa9\x9c\xe7\x1a\x20\xb8\xfc\x1f\xaa\xcc\xf8\x53\x85\x8b\x1b\xc4\x66\x55\x6b\x26\xaa\x51\xf5\x41\x8b\xf4\xc2\x9e\x6e\x62\xb2\x2c\x5d\xb5\xac\x79\x8d\xae\x29\x6b\x42\x21\x32\xbc\x32\xd5\x0a\x04\x2d\x6a\xad\xb1\x14\x9a\x98\x78\xa0\x65\x59\xce\x07\x7f\xb3\x1e\x09\xee\xf9\x47\x5f\x94\xdc\x73\x56\x75\xf8\x2f\x21\x14\xe1\x93\xa0\xd6\x92\xef\x28\x17\x8e\x26\xa6\x3e\xa4\x81\x5e\x33\x22\xbd\x80\x67\x2e\x22\x97\xcf\xe8\xd0\xa1\x9f\xae\x4a\xff\x5a\x28\x06\x3e\x5a\x38\x57\xab\xa3\xf7\xcb\x14\x9a\x1e\xd8\x05\xdf\x9e\xfa\x52\xdf\x14\xf7\x28\xc8\x73\x6c\x03\xec\x6b\xa9\xb0\xe7\xab\xb6\x98\xa9\xe2\x21\x17\x1a\xfc\xda\xaf\xf2\xe2\xf7\x1d\x05\x10\xbb\xda\x82\xfe\x7d\xa5\x6b\x56\xeb\x05\xbf\xad\xeb\xbe\xe0\xb7\xb5\x27\x90\xa1\x38\x2d\xa3\x3c\x32\x89\x61\xc2\x0b\x37\xa9\x74\xe1\xba\x49\x18\x5d\x5c\xdc\xdd\x5d\x8d\xe2\x98\x30\x4e\x88\x61\xd8\x55\x97\x4f\xd6\x15\xe4\xd0\x8c\xcd\x50\x62\x03\xa7\xcf\x24\x8d\x21\x9e\x71\xbf\xad\x84\x12\xf3\x49\x66\xd6\x18\xc1\xe4\x78\xee\x8b\xf2\x6a\x60\x9a\x81\xfe\xf8\x7b\xb5\xa7\x9d\xe5\x69\xa7\x91\xba\x0b\xd6\xb5\x19\x72\x2c\x76\x4d\x9e\x9b\x28\x16\x1d\x28\xd4\x5e\xfe\x6a\xea\xeb\x30\x7f\xd5\xd8\xce\x5f\xde\xdd\x2d\xd2\x28\xee\x28\x90\x1a\xc3\xc6\xf9\x24\xf8\xb9\xe6\x5a\x63\x93\x95\x28\x4b\x13\x48\x45\xc6\x6b\x64\xf2\x8e\x0d\xf9\xb2\x4a\x1a\xd0\x70\xc5\x74\x7c\x53\xa9\xc7\xae\x19\x2e\x11\x83\xeb\xfe\x26\x6e\x8b\x4f\x82\x67\xb5\x27\x6f\x94\x2c\x9b\x70\x84\x52\x0c\x12\xb4\x93\xca\xa0\x4e\x03\x04\xc7\x51\x3f\x36\x09\x37\xd4\x04\x9d\xe9\x59\x28\xe7\xd4\x08\x5c\x2e\xb9\xda\xe5\x7c\xb9\x1c\xf4\xeb\x92\xaa\xbf\xfe\x4b\x15\xd7\x0f\x8d\x0d\x47\x11\xcc\x09\x7c\x68\x72\x5a\x61\x73\x4e\x2b\x48\x48\x94\xe4\x51\x5e\x48\x65\xa4\x46\x0f\x60\xa8\x78\xe0\xb1\xc5\x5f\xd6\x54\x5f\x92\x6a\x85\x65\x9a\x98\x4e\x28\x16\xca\x8f\x14\xf1\xf6\x0f\x69\x05\x92\x3a\x59\x53\xd6\x67\xb1\x3b\x88\x12\xff\x44\x1c\x8d\xc8\xcf\xeb\x9a\xf6\x9b\x89\x71\xb9\xe2\x46\x7d\x6e\xaa\x40\x53\xa7\xb1\xc3\x61\x21\xba\x53\xeb\x9a\x46\x71\x7f\xa7\x1e\x3a\x58\x65\x64\x6b\xab\x2e\x91\xcd\x86\xa8\x16\x84\x7c\xeb\x91\x5e\x95\x55\x61\xfd\x3d\x4b\x70\x71\x3e\xc6\xb8\x03\x35\xf4\x8a\xae\x26\x30\xf8\x41\x28\xa0\x9e\x75\xf5\x2e\xdd\x10\xa6\xce\xb9\xe9\xcf\x6e\x86\x5d\x65\x76\x25\x8d\x49\xb0\xdb\x85\x6b\x62\x6f\x4b\xd7\xc9\x27\x35\x67\x4c\x13\xaf\xe5\x11\x17\x87\x5c\x10\x5b\xfd\xb1\x77\x6a\x70\xa3\x22\x8a\xc9\x61\x1a\x93\x47\xbb\x30\x48\x75\xc5\xe3\xac\xc2\x34\x8e\xed\x30\x32\x31\x56\x01\x61\x31\x7a\xa8\xff\x4d\x95\x9f\x1c\x6d\x95\x90\x8b\x92\x7e\x9a\x97\xf6\x0d\x5e\xd6\x44\xeb\x49\xa5\x46\xdf\x56\xc2\x02\x79\x91\x66\xe2\x48\x83\x55\xf8\x10\xad\x4e\x7c\xdc\x58\x3e\xe6\xf7\x6e\x06\x28\xa1\xdc\x03\xd9\x01\x3e\x6e\xc1\x94\xce\x77\xed\x01\x30\x59\xe8\x43\x5c\x26\x56\xf3\xe8\x02\xe4\x9d\xd5\x87\x3e\xdf\x35\xa2\xde\x25\x3e\x16\xd5\x88\x10\x31\x24\xdc\x9e\x84\x3a\x4f\x2b\x80\xcc\x6b\x69\x94\xa0\x2a\x20\xa5\x3a\xfa\x12\xa9\xe1\x35\x43\x2f\x88\x23\x28\xa1\x8e\x93\x53\xaf\x4f\x01\x1c\x15\x62\xe8\xff\x03\xe3\x5d\x98\x1c\x9b\x7b\x71\xbb\x97\x76\x77\x87\x29\x2d\xaa\xe2\xc2\x41\x63\x95\x4f\x1a\x79\xdc\xab\xaf\x76\x97\xd3\x64\x10\xb1\xd9\x32\xd6\xa0\x4e\x4f\x29\x9b\x5d\xaf\xdb\xf9\xf9\x96\x42\x3a\xb1\xc9\xa3\xbe\x13\xf3\x7b\x3a\x17\x3a\x1d\x28\x7a\x33\xd4\x41\x71\xf9\x27\x74\x71\xea\xbb\x35\x55\x48\x25\xa2\x74\x0e\x8b\x09\xe2\x86\x13\x4a\x29\xd4\x24\x6b\xcf\x52\xda\x83\xdf\x44\xf7\x58\x44\x2e\x15\x34\x63\x87\x66\x43\xa2\x0e\x88\x4a\xd7\x8d\xa9\x42\xe7\xbf\x8b\x3c\x19\x65\xef\xcb\xca\xd4\xfb\x1b\x53\x55\xb6\xbf\x4d\x35\x21\x8c\xfd\xdb\x81\x42\xfa\xbf\xab\x0b\x2d\x27\xa7\xaa\x38\x77\x15\x25\x1c\x51\x2a\xf7\x6f\x95\xd5\x45\x50\x82\x3b\x35\xf5\x64\xb8\xa7\xa8\x3e\x89\x3d\xff\xee\xb4\x65\x27\xcb\xa8\x5a\x53\xef\x0d\xb2\xef\x90\xca\xe8\xce\x38\x60\x6d\x31\x32\xc5\x33\xd5\x85\x63\xcd\xb9\x81\x75\x84\x8b\x4a\xf4\xc3\x34\x82\x7e\xfe\x73\xbd\xce\x17\xbe\xe4\x97\x7e\x4f\xf8\x7b\x82\x14\xae\xb0\x59\xee\x5c\xf7\xf5\xb2\x67\xd6\x7d\x6b\xf6\x67\xc0\xdc\x41\x8d\xec\xda\x54\x71\x8c\x3a\xeb\xf4\x9a\xb0\x14\xfd\x5c\xcf\xeb\xdf\x6e\x5d\xef\xbc\xec\x39\x85\x98\x41\x2e\xd2\x10\xd7\xe4\xff\xea\x3f\xe9\x29\xca\xf8\xf6\x75\xd5\xed\x7a\xe0\xf6\xe7\x62\x94\x96\xc3\x11\xf4\x5d\xa4\x8a\x4d\x3f\xea\x8c\x4c\xa5\x0b\xfa\xfb\x5d\x28\xfc\x3b\xa0\xaa\x43\x15\xf2\xfb\xc0\x5d\xde\xa6\x0b\x90\xfa\x2e\x3d\x0a\x3c\xbc\x5b\xca\xfa\x03\x7c\x7f\x68\x1d\x3c\xba\xfe\x9c\x02\x4a\x9b\x3c\x4d\x40\x60\xf7\x86\x8e\x68\x0f\x0b\xcf\xf2\x13\x35\x37\x8d\x22\x2a\x4a\xb2\xc5\xab\x7e\x15\x05\x8a\x99\x75\xaa\x4c\xf1\x49\xaf\xcd\xa5\x3a\x5a\x49\x0b\x46\x9c\x30\xcb\x21\xf0\xb4\x9d\x5b\x2d\xfb\x6b\x37\x4a\x56\xd2\x78\xa5\xca\xd0\x9d\xb6\x01\x8b\x09\x8a\x0b\x66\xc7\x69\xea\x6e\x34\xb2\x0c\x69\x35\xad\xad\xa4\xc9\x8c\xef\x7e\xf1\x46\x27\x39\x28\xda\x70\x92\xe5\x6b\xd0\xee\x4a\x1a\x1a\x29\x0f\x00\xea\xf5\x43\x8c\x13\x6c\xb1\xe8\xd8\xa0\x5a\x7c\xdc\x25\xcb\x61\x3a\x1e\xa4\x19\xb4\x66\x84\x59\x40\x2f\xca\x91\xf7\x5d\xb7\x8a\x75\x5c\x31\x55\xef\x3e\xd4\x7d\x20\x37\x93\x49\x9a\xa5\x2a\x23\xfc\x2b\x9d\x11\xfe\x55\xe0\x9d\x4e\xc8\x9f\x64\x0c\xae\x6f\x75\x01\x2e\x93\x59\x58\x70\x99\x8c\x0a\xe7\xca\x9c\xe0\x56\xb4\xac\x70\x6f\x09\x8b\x84\x34\x9a\xda\x16\xfb\xcc\xac\xc0\x03\x52\x84\x98\xb4\x2a\x53\x6b\x46\x5f\x26\x21\xd9\x67\x71\x5b\x85\xcb\x8d\x0a\xdb\x71\x15\x4f\x08\xb4\x84\x3f\x57\x4c\xbe\x3c\xcc\xcc\x78\x39\x16\x23\x37\x97\xce\x2c\xcd\x79\x98\xed\x8b\x32\xa3\x1f\xb8\x60\x4b\xc7\x86\x8b\x1b\x57\x34\x8f\x1a\xbf\x84\x89\xfe\x40\x81\x11\x80\x65\x0e\x8b\x7c\x3b\x2d\xf2\xce\x8b\xd2\x21\xa2\xde\xa2\x02\x33\x8e\x4f\x05\xca\x19\xf6\x5b\x4a\x03\x7f\x3b\xaa\x60\x60\x0b\xce\xe8\xad\xe8\xb4\xf2\xa3\x99\x98\xd8\xe6\x45\x94\x44\x26\xa1\xd6\x84\xe8\xeb\x54\x4b\x9e\xd8\x3d\xb5\x99\x0c\x90\xc5\x86\x35\xb9\x2a\x3f\xa3\x9c\x82\x3a\x3f\x66\x93\x84\x96\x3a\x2a\x4a\xf2\x72\x6c\xb3\x7c\x87\x8a\x1b\xff\xbd\x96\x15\x38\x8b\xfb\xc1\x22\xf9\xef\x03\x0f\x00\x82\xcf\x0f\xe3\x1b\x02\x0f\x15\x7b\x6f\xea\x25\xcb\x18\xf7\xc0\x0d\x1c\xba\x06\x04\xb1\x87\x50\xf7\xe1\x9f\x68\x64\xd0\x0b\x0b\xdd\xd0\xc4\xb1\x14\x00\xf0\xf2\xb9\x57\x86\x35\xf1\x90\x8e\x48\x3f\x6a\x94\x7f\x49\x50\x67\x94\x45\xc9\x7e\xa1\xfe\x63\x85\xf8\x7d\x4d\x12\xfe\xfd\x46\x32\x46\x82\x74\x2b\x76\xc6\xb3\x96\x10\x4e\x32\xde\x19\x8f\x02\xf9\x68\x13\x7e\x5b\xfd\x66\x56\x12\x32\x76\x46\xa1\x36\xe1\x26\xcb\x8f\x5e\x49\x20\xdd\x0e\x36\xf5\xa3\x3e\x53\x05\x73\x74\xad\x2e\x38\x75\x3b\xf7\xb9\x06\x4d\x64\x61\xa1\x9b\x87\xa3\x34\x8d\x0b\x6b\x7c\xe1\xc9\x31\x61\x17\x5d\x2c\xd5\xd6\xd7\xa0\xf0\xbc\xa3\x44\x7c\xc0\xaa\xe6\xe3\x06\x12\xea\x97\xbb\xe3\x28\xb1\xb3\x55\x8c\xe8\x64\xc2\x95\xab\x28\x65\x87\x6c\x1a\xd3\x53\x50\xb2\xc6\x6b\x5d\x9a\xeb\x9a\x6c\x58\xb2\x61\x98\xca\xcb\xe6\x9d\xad\x7d\x3b\x42\x35\x15\x84\xaa\x60\x5f\x15\x8f\xef\xbc\x73\xa5\x5b\x2e\x33\x6b\xca\x30\x33\x21\xe9\x88\x6d\x5c\x42\xb8\x83\xcc\xfb\xbc\xca\x5b\x41\xe0\xe1\xf8\xae\xed\x2a\xf3\xfd\x9e\xa9\xc8\x1f\x99\xfa\x4d\xe2\x41\x0b\x51\x71\x77\xb5\x53\xb2\xdc\x15\xef\x07\x94\x4f\xc8\xde\xa0\x11\x17\xe3\x89\xed\x6f\x45\x88\xe0\x78\xf5\x6e\x76\x62\x2a\x89\x8c\x55\x35\x02\x84\xc6\xaa\xca\xd4\x57\x35\xdc\xbf\xec\xf7\xd7\x74\x30\x7f\x8b\x8c\x10\xf1\x2e\x0f\x4d\x95\x10\xab\xb2\x79\x19\x56\xeb\x05\xd5\x0f\x60\x07\x8c\x7d\x76\x83\xa6\xae\x0b\x5b\xf6\xcd\xb9\x24\x91\x06\x3e\xfa\xa8\x97\x40\x4e\x17\xe2\xe4\xe6\xdc\x82\xc8\xe9\x1d\xb5\x79\x1d\xaf\xe1\xd6\x5a\xf0\xe4\x93\xb4\xb0\x49\x51\x65\x66\x9e\x17\xc9\x52\xd4\xce\xa5\x78\x51\x54\xe3\x1e\x73\x55\xf1\xcc\xc6\x36\x29\x3a\x0a\xf0\x82\xbd\x8c\x8f\x1f\x2a\xfa\x59\x03\x3d\xa0\x58\x76\x5a\x57\xce\xb4\x06\x63\x66\xf3\xb0\x04\x59\x1e\xa5\xd9\x1b\x08\xe7\x6b\x3a\x14\x62\x1c\x2e\x21\xea\x30\xb5\x35\x9f\xee\x47\x7a\xca\x12\xf8\x1a\x7e\x4a\xac\xd9\x5a\x78\x85\x45\x34\xb6\xde\x4b\x05\xbf\x04\xbf\x44\x3e\xd6\x10\x9b\x32\x4b\xfb\x76\x99\xc5\x87\xb1\x4c\xde\x55\x03\xe8\x94\x2a\xad\x5c\xd0\x5d\x11\x3b\x4e\x33\xb3\x1c\xc5\x91\xa1\x30\x0d\xa3\xf4\x30\xbd\x7e\x3e\xf6\x86\x4f\xd6\x40\x4e\xa4\xcd\x83\xd9\x6b\xc3\xf4\x4b\xbb\x4d\x4d\x11\xfa\x2a\x94\xf5\xbf\x4d\x89\x06\xc6\xe6\x06\x8d\x47\xb4\x62\xef\x04\x9a\x0d\x51\x8d\x74\x56\x8b\xed\x3d\xe9\xd1\x94\xb1\x6b\xc0\xb2\xd9\x05\xa6\xbe\x38\x5f\xf8\x46\xea\x24\x02\x2c\x47\xe4\x83\xb5\xdd\x83\x52\x76\xef\xdb\xd0\xf4\x6d\x3e\xab\x1b\x00\xd5\xa5\x0a\x1d\x9d\xde\xa8\x23\xaa\x57\x7b\x94\xb4\x0c\x54\x6c\x64\x92\xd2\xc4\x39\xba\x8a\x8e\xb2\xe8\xb1\x82\x1f\x29\x84\x2d\xe2\xe7\x5c\x5b\x3e\xd6\x43\x2e\x4f\xb9\x1e\x94\x36\x46\xd4\x8c\xaa\xcf\x75\x84\xfd\x7c\xd2\x50\x4c\x5a\x9a\x03\x52\x6d\x92\x45\xe4\xac\xb5\xcf\x53\xfb\x7c\xe0\xab\x9d\xb7\x4d\x1c\x47\x26\x09\x2d\x43\x8b\x11\x9c\x9e\x57\x9c\xff\x53\xba\x94\x71\xa7\xb1\xc8\xcd\xef\xed\xc6\x36\xe9\xcb\x56\x83\x79\x76\x83\x46\x18\x1f\xb7\xca\x28\x4f\x32\xdb\x8f\x42\x69\x30\x4a\x79\x82\xa6\x91\xd4\x27\x14\x89\xda\x9a\xfd\xd4\x4d\x76\xae\x65\x3e\x7b\xfe\x0d\x44\xf7\x4e\x66\x64\x69\xce\x99\x93\xd1\x57\xe3\x3f\x8e\x69\x63\x96\x63\x6d\x60\xc3\x41\x66\x5f\x2f\x05\x25\x8b\xd7\x70\x4d\xd5\xf3\xaf\xa9\x4a\xe5\x70\x94\x6f\xf3\xb1\x32\x18\x68\xf4\x9b\xff\xe4\x6f\xac\xab\x92\x1c\xca\xce\xf8\xa3\xa7\xd6\x3d\xe3\xf5\xc8\x27\x30\xf5\x11\x8c\xff\x8d\x9e\xb7\xfa\x89\xa3\x62\x94\x16\x59\x34\x11\x51\x3c\x76\x77\x56\x12\x93\x17\x1a\x1b\x53\x75\xed\xf1\x9a\xeb\x67\x0b\xa2\xdc\x93\xd1\xde\x77\x5b\xe1\xc4\x66\x51\x3e\xaa\x56\x11\x5e\x8a\x44\x28\x52\xa1\xd2\xae\xd1\x23\x04\xcb\xb6\xd9\xc4\xa8\x5e\x5d\x92\x66\x05\x00\x0d\x8e\x90\xb3\x34\xc7\x97\xf7\xfb\x18\x2c\x9e\x07\xcf\x2b\x12\x81\xfe\x68\x34\xb2\x30\x5a\xe0\xf1\xf2\xcd\x5f\xf9\xe5\xae\x81\xf2\x35\xbd\x0c\xa4\x3e\xa7\x15\x68\xef\xb4\x53\x9c\xcf\xa3\xb4\x3c\x40\x7f\x25\x98\x6b\xfa\x7d\x3e\x69\xe3\x30\x98\x30\xb3\x39\xfa\x39\x4e\xc2\x58\x61\xf2\xe8\x57\x9c\xd2\xe9\x8b\xbe\x9d\xe3\x5b\xd2\xab\x99\x99\x4c\xa2\x64\x38\x4b\xcf\x1b\xa0\xb8\xe3\x0a\x5d\x0c\xbd\x6b\xfe\x77\x7a\x9a\xfc\xef\xbd\x4f\xa9\xa2\x59\x3e\x49\x13\x76\x61\x5b\xdb\x56\x4d\x6f\xe9\xf8\x69\x73\x5e\x15\xb1\x5d\x47\x6f\x56\x10\x8c\xb4\x08\x39\x5b\x3b\x87\xca\x3e\xa8\x16\xa4\xd7\xcb\xb4\xc8\x80\xb7\x7f\x85\xd1\x36\xa7\xea\x4e\x77\x34\x58\x51\xd1\xbb\xdb\x28\x96\xbd\xbc\xbb\x6b\x92\x7c\xd5\x99\x63\xb8\x2a\x92\xe7\xe3\xbf\xdb\x26\x93\x04\x39\x16\x0e\x93\x30\x42\x58\x82\x82\x4f\x7a\x35\x2f\xff\xb4\xff\xbc\x87\x34\xc2\xa5\x12\x19\xc3\x25\xaa\x3e\xca\xbe\x4d\x37\x0f\xf0\xff\x71\x3c\x22\x81\xa0\xd1\xc5\x89\x4e\x7d\x35\xc2\x90\x58\x89\x47\x01\xc2\x6a\xce\x17\xb1\xdb\x6e\xe9\x79\x5f\xcc\x27\x75\xca\x35\xb3\xae\xfc\x5c\xff\x98\x36\x28\xac\x81\xeb\xe0\x96\x41\x5f\xe0\x06\xc1\x0f\x1c\xc7\xab\xca\x7e\x9d\x69\x47\xf5\x56\xb0\xc8\x14\x81\x02\xd1\x1c\xc3\x0e\x22\x5c\x1d\xaa\xa4\x71\x22\xab\xbd\x42\x0f\xd8\xf1\x84\x16\x20\xf8\xeb\xcd\x6f\x5c\x6a\x94\x3c\x77\xed\xea\xe6\x29\x8b\x2b\xb2\x31\x95\x5f\x7f\xb6\x35\xa5\x56\xaa\x09\x6b\x4d\x96\xe0\x1d\x8a\xe5\xa7\xca\x58\x8e\xa9\x46\xc7\xc8\x84\xa3\x12\xfc\xda\x3d\xdc\xc9\xfd\x75\x2d\x51\xfa\xeb\xaa\x79\x96\x66\x7d\x9b\xe5\x4f\x54\xcf\xc8\xb5\x8f\xab\x8f\xa1\x0c\x78\x8b\x52\x42\xec\xc7\xdf\x45\x93\x19\x5b\x3d\x6e\x8c\xb7\x19\x06\x26\x23\x14\xbf\x4e\xc3\x18\xd5\xb5\x59\x92\x92\xe7\xef\xd5\x1e\x95\x98\x5b\x18\xeb\xd7\xb0\x13\x8b\x19\x2b\x8d\x10\xe4\xf8\x27\xf0\xec\x19\xfb\xd7\xd2\x92\x7b\xa1\xbb\x62\xe2\xd2\xd7\x16\x9d\x00\x59\xf5\x4b\xa2\x92\xed\xd3\x6f\x63\xb3\xb4\xbf\x96\x98\x31\xa3\xf6\xb0\x72\xdf\x54\xa6\xc6\x37\x15\xed\x9b\xe4\xdb\x06\x59\x8a\x5c\x4a\xc2\xd0\x13\x53\xad\xf3\x77\xa2\x0d\x92\xbe\x1c\x73\x54\xc9\x5a\x2d\x58\x96\x05\x13\xd3\x71\xa4\xf1\xbb\x6e\x5d\xed\x9b\x84\x0c\x69\x1c\x43\xf1\x6c\xa0\x68\x63\x67\xb5\x13\x92\x8d\x72\x42\xea\x56\x8f\x0c\x6b\xf5\x11\x3c\x32\x3e\x69\xcc\xff\xf9\xbd\x62\xca\x37\xe3\x41\x4f\x1a\xa9\x88\xaa\x8a\x70\x3c\xfc\xc8\xb0\x09\x95\x2a\x3d\x64\xf4\x27\x81\xd7\x46\x61\xa0\x8f\x18\xc3\x78\x19\xcf\x0f\xa9\x98\x21\x5a\x36\x1e\x31\xf0\x68\x8f\x2e\x19\xc5\x6d\x5e\xbf\x44\x3a\x4d\x57\xd3\xe8\x8d\x63\x95\x6b\x1a\xaf\xee\x9b\x7b\xa5\x9b\x96\x05\x49\x52\x77\x74\x75\x34\xf0\xca\x72\x17\x5a\x20\x1f\xaf\x74\x07\x26\x8e\x6d\xa2\xd5\x69\xc0\x66\x13\x5b\xa8\xb6\xea\x55\xdf\x16\xd0\x00\x99\x51\xa1\x27\x7d\x0a\x2f\xf6\x7f\xc5\x5d\x20\x5a\x3e\xa9\xc2\x42\xc0\x66\xf2\xad\x9e\x46\x7c\x51\x19\x1d\x31\x30\x11\x65\x93\x0f\xa6\x9e\x02\x73\x0a\x0b\x22\xd2\xa2\xfb\x4e\x61\xb2\xac\xa2\xb2\x55\x6b\xc0\x45\xc1\x30\xe2\x07\xe8\xca\x62\xae\x23\xb1\x5d\x71\x0f\xaf\x28\x74\x89\x4d\xd2\x6c\x9c\x96\x2d\x5d\x72\x2c\x86\x4f\xf5\x3c\xc1\x70\xfb\xfa\x73\x0a\xb7\xb5\x9c\x73\x40\x55\x9b\x54\x7a\xb6\x39\x96\x9a\x5d\xb1\x49\x31\x82\x56\x38\xca\xaa\x10\x00\xc3\x4f\x80\x53\x86\x6d\x8a\x1d\x6c\x90\xc6\x5e\xf2\x1a\x42\x59\x94\x5b\xd6\x07\xc5\xa6\xf8\xae\x86\x83\x23\xa6\x11\xf9\x63\x8f\xe5\x1a\xa5\x49\x9a\x01\x38\x51\xf3\x03\x47\x70\x7f\x5c\x71\x59\x4e\x05\xca\x48\xe0\x50\xf0\xb8\x7b\x65\xa3\x28\x7f\xbe\x1a\xb8\x4e\x48\xd3\x19\xab\x5f\x43\xf3\x05\x95\x5f\x94\x46\x30\x6e\x6f\x62\xfd\x67\x0d\x10\x1a\x81\x62\x94\xa1\x74\x55\x4f\x05\xda\xdb\xe9\x32\x96\x4d\x74\x09\x6f\x90\x23\x0a\xba\x57\xa7\xa6\x1e\x52\xc0\xb5\x66\xce\xf1\x31\x5a\xd0\x7b\xe2\xc7\x86\xb9\x0a\x85\x1e\x74\x88\xbe\xa6\x55\xb0\x0f\xd2\x63\x12\xff\x7d\x9a\x76\x18\x79\x77\xb9\xe4\xed\x94\xf3\xaa\xe1\x86\xdf\xfc\x4a\x9b\x50\x6d\x3f\x7d\xc3\x0a\x51\x53\xba\x3f\xf4\x3b\xc8\x5a\x60\x16\x2a\x12\xe3\x4e\xf8\xdf\x66\x85\x89\x92\x78\x6d\xab\xf7\x25\x7a\x7f\xaa\xf2\x3a\xac\x0a\xa8\x49\x40\xc3\x0c\x63\x02\x12\x42\xa8\x87\x7c\xe0\xbe\xce\x94\x45\x3a\x36\x85\x65\x09\x2a\x3c\x07\x36\x45\xe4\x13\x57\xfd\x5d\x49\xc7\x51\xe1\x0a\x74\x78\xb0\xc0\x48\x6e\x40\x19\x01\xe1\xce\xe9\x56\x92\x92\xc9\x60\xcd\xd9\x71\xea\xc2\x75\x84\xc3\x93\x6a\x4e\x0c\x4d\xb6\x4d\xb9\x84\x62\xde\xba\x15\xcc\x37\xf1\x8e\xf1\xcb\xe7\x33\x8a\x44\x9c\xb3\xa8\x5f\xf4\x5a\xea\x62\x64\x17\x1a\x16\x98\x4b\x18\x88\xa8\xbe\x71\x89\x68\xaa\xac\x40\x51\xcc\x11\x65\x37\x9d\x72\x26\xc9\xda\xac\x92\x90\xfe\x76\xed\x72\x98\xb0\x0e\xa8\xd1\x59\xbd\xa0\x1c\x6d\xc9\x17\xc8\x7c\x57\x56\x5d\x74\x34\x2e\x23\x52\xe0\x93\x46\x49\x86\xd2\x43\xcf\x17\x05\x04\x6a\x03\xa6\x21\x1b\xc7\xdc\xaa\x51\x6d\xc8\x79\xb1\x36\xe3\xd7\xa2\x1f\x11\x9a\x41\xd0\xdd\x74\x91\x98\x71\x4d\x81\xd9\xea\xc5\xa5\xd0\x01\x58\x74\x65\x83\x8e\x13\x3d\x3a\xab\xc2\xe8\x91\x35\x71\x31\x22\xe5\x5d\xaf\xe8\x53\xbd\x6c\x20\x23\xaf\x21\xcd\x44\xac\x72\x6a\xda\xf9\xe2\x7c\x4d\x4f\x96\xff\x48\xd3\x01\x6e\x60\xfe\xf3\x27\x30\x4d\xf9\x7f\xda\xc4\x15\xc7\x69\x91\x02\xa5\xea\xb6\x84\x7d\x73\x1c\x0a\x7f\xa8\xe2\xe5\x1b\x8d\x9b\x5c\x58\xe8\x0e\xd2\x32\xeb\x74\x76\x09\x9d\x95\xe1\xff\x82\x18\xf7\xcb\x7c\x3f\xca\x6c\x58\xa4\xd9\x56\xba\x4e\x34\x73\xee\x2b\x9b\xd2\x0d\xdd\xf0\x3d\xab\x12\x8e\xdf\xc1\x37\x8a\xe0\x52\x53\x6c\xf4\xe5\xdd\xdb\x3c\x32\xe0\x3a\xad\x5c\xf8\x24\x0a\x1e\x02\xa0\xa7\x11\x01\xb0\xd1\x25\xed\x4a\x79\x76\x5a\x17\x41\xd8\xbc\xdf\xee\xda\xd5\x1d\x9b\x70\x14\x25\x51\x5e\xf0\x26\x25\x1f\xac\xe5\x3d\xf8\x16\x5c\xe6\x6d\xbf\x6f\xa4\xe9\x84\x53\x6d\xfc\xf6\x29\x8d\x7a\x3a\x15\xf8\xa4\x6f\x25\xcd\xd2\xc4\xbe\x31\xc2\xb4\xe0\x2e\x78\xa0\x29\x7d\x3e\x48\x3a\xaf\xc9\x0a\x27\x35\x5f\x32\x9d\x6c\x9a\x0a\x6f\xeb\xa9\xf0\xb6\xf2\x90\x9b\xa4\x50\xff\x74\x7e\x2c\xe7\x55\xb4\xa9\x49\x6b\x61\x9a\x14\x51\x52\x5a\x40\xbf\x31\x7c\xdf\xc6\x6e\x51\x6b\x5e\x02\x99\x73\x5a\xd9\x51\xfe\x58\x47\xb8\x21\x31\x7e\x13\x92\xa2\xd7\x66\xe7\x54\x6c\x42\xb4\xf6\x5e\x4d\x09\xbb\x5a\xc6\xf8\xdf\x6b\xe0\x38\x1b\x16\xcf\x2b\x56\xe4\x55\x0c\x1c\x67\x63\x5e\xdd\x3a\xb2\xb0\x2b\x58\xdb\x31\x18\x1e\x85\xa2\x85\x7b\x96\x6a\x54\x77\x5e\x16\x8a\xdf\xb6\x75\x4a\xb6\x18\x63\x8e\x0d\x4a\xf8\x5e\x74\x9d\x28\x6f\x3e\x42\xe8\x02\xf1\x24\xa8\x9e\x20\xb2\xe9\x6f\xd0\xbd\xb3\x19\x07\x12\x32\x96\xc0\x0b\x94\xc9\x01\x82\x62\xe1\x94\x55\x77\x89\x3f\xba\x8a\x81\x8e\x1d\xec\xfe\x54\xfb\x19\x5d\xc2\x4e\x2f\xd8\xf7\x66\x18\x39\xdf\x1d\x7b\x35\xe5\x0d\xda\x1e\x36\xce\xa9\x88\x39\x2d\x46\x36\xcb\xb7\xf9\x6d\x99\xe5\xf8\xd9\xd3\x9a\x26\x8d\xa8\x51\x6c\xae\xa6\xb2\x9f\xdc\x54\x83\xda\x1a\x15\xb7\xdd\x2f\xed\xe9\x4e\x4c\x41\xe2\x16\x33\x2a\x31\x3f\xa7\xf8\x3b\xb7\x31\x68\xd8\x59\xbc\x55\x5e\x76\x98\xa5\xab\xae\xd0\x84\x87\xfd\xa6\x6a\x21\xbe\xd9\x12\x41\xbf\xd0\xcd\xd3\x30\xe2\xed\xb1\x15\x75\xdb\xb2\x6a\xad\x92\x12\xff\xe6\xf6\xbb\x3c\x6c\x3c\x7a\xf1\x1d\x7f\x4a\x09\xd7\x84\x99\xb5\x0a\x87\x74\x5e\xd1\x07\xcf\xab\x04\x2d\x4c\x93\x15\x9b\x44\x14\x9b\x56\x63\x48\x74\x2e\xe9\xcd\x4b\x9a\xf2\x4c\xe4\x7b\xa1\x08\x64\x15\x21\x1c\xb2\x46\xce\x81\xd5\x0d\xab\xeb\x81\xdf\xed\xfb\x65\x5e\xac\x75\xbc\xa7\xe5\x11\xa5\x45\x76\xa4\xd1\x4c\x5b\x5c\xec\xbe\x66\x99\x1e\xea\x90\x34\x8b\x02\xc0\xbe\x17\xf8\x0d\xa7\xdd\xad\xde\x75\xe6\x7d\xfa\x07\xf9\x2e\x3e\x6e\x19\x95\x8b\xdd\x22\x1a\x33\x6f\x75\xe3\x52\x15\x87\x6e\x5c\x6a\x80\xa6\x3f\xd7\x0d\x47\x51\xdc\x47\x3c\x81\x35\xe4\xbc\x0e\xca\x00\xfc\xc4\x2a\xfe\x40\x29\xd8\xbe\xdd\xf8\xa6\x2f\xce\x77\x5f\x2f\x23\x40\x60\x85\x67\x56\xcd\x3b\x3e\x76\x81\xdb\x68\xad\x9f\x99\x32\xae\x52\x6d\x27\xe7\x81\x86\x3c\x1f\x2b\x3d\xd2\x11\xf9\x38\x7a\xa6\xc4\xdb\xf4\x8c\x65\x69\x55\xcc\x90\xb5\xbc\xb0\xe3\x67\x3a\xe2\xe1\xb8\xf4\x34\x10\x3b\xb5\x16\x32\x56\xc5\xc7\x68\xf5\x40\xf4\xf9\x51\x0d\xb2\xf3\x48\xaf\x9a\x87\xc8\x07\x7e\x0b\xcb\x84\xf2\xe3\xf1\x48\x43\xd5\x74\xeb\xf4\x14\xa0\xf1\xda\xd4\xf7\x96\xce\x83\x95\x85\x6e\xf2\x7d\x0a\x6c\x31\x23\x99\x9a\x03\xb4\xe5\x35\xd5\x6d\x7b\x10\x50\xd4\x20\x10\x46\xd5\x04\x56\x95\xe9\x64\x7f\xa4\x60\x0f\x3f\x56\x49\xd4\xd7\x74\x78\x79\xa8\xa5\x97\x1b\x47\x83\x02\x96\x5b\xb2\xc7\x78\x37\xd9\x6f\xd0\x75\x60\x88\x5f\x56\xa1\x51\x1e\xbd\x21\x42\x51\x12\x1a\x9d\x0c\x6a\x7c\x4c\x1f\x61\x14\x99\x35\x85\xb4\xdd\xc5\x17\xa6\xe3\x3d\x62\x02\x6d\x65\x15\x0d\xd9\x7d\x19\x23\x0e\x99\x18\x1f\xb7\x88\x62\x75\x87\x99\x79\x63\x73\x05\x7c\xea\xa3\xde\xf7\x55\x91\xcd\x4c\x26\xb1\x70\x38\x30\xd1\xbe\x46\x7f\xc9\xc7\x2d\x74\xe0\x3d\x5d\x13\x47\x43\xc7\xf1\xc5\x66\xd2\xe9\xf9\xae\xe2\x41\xac\xd6\x58\x9f\x1e\x69\x28\x1e\x2e\xcd\xc1\x26\x7a\x38\xe3\xc3\xed\x59\xec\x77\x78\x9b\x77\x95\x4d\xdc\x19\x57\xac\x0f\x47\x59\x3a\x4e\xf3\xd4\x31\x4e\x50\x89\xbe\xa0\x9a\x12\x17\x5a\xd4\x88\x76\x77\x5f\xff\x87\xbf\x84\x10\xc3\x09\x03\xeb\x62\xf7\xe6\x68\x7b\xdf\x5c\x77\x92\xa5\x71\x34\xb0\x99\xf1\xae\x3a\xa2\x38\x5e\xdd\xa4\x08\x8e\xb7\xe8\x7d\x44\xc9\xa0\xba\x31\x6e\xdd\x3b\xde\x59\xf5\x34\xa4\x1e\xe5\x47\xc0\x4a\x94\x97\x26\x8e\xe1\xe6\x85\x3d\xe7\x7b\x88\x0e\xf8\x31\xa8\xe5\xfa\x30\xbe\x44\x74\x32\x65\x31\xce\xcc\x24\xea\x5b\x88\x99\x38\x28\xec\x06\x85\xfd\x7c\xac\xb0\xbd\x83\x38\x5d\x0d\x47\x26\x2b\x1e\xce\xfd\x6f\xf1\x44\xec\x97\x45\x34\x28\x63\x66\x56\xc9\x02\xe1\x63\xab\x8b\x53\x0d\x83\x23\x53\xb7\xe8\x0d\xdb\x51\x24\xcb\x3b\x54\x04\xe0\x63\x2d\x50\xc9\xf0\xb0\x7c\x9b\x0a\x99\x4f\x4e\xbd\xe3\x0c\x24\xc6\x51\x7c\xb8\x1c\xa8\x4a\x17\x3c\xf9\x9d\x1e\xbe\x67\x38\x36\x95\x02\xe6\xf7\x76\x97\xcb\xd4\x61\xf9\xb9\xea\x43\xd7\x2f\x15\xa0\x67\x14\x97\x2d\x1b\x1b\xdc\xaa\x44\x36\x10\x10\xe3\xe3\x36\x10\x44\x34\x4c\x58\x0b\xfb\x15\x2f\xf6\xbe\x4f\xd0\x55\x97\x82\xcd\x6b\x81\x43\xb9\x6a\xa2\xde\x5a\x3f\xb1\x6b\x9d\x9a\x05\x08\xad\xa7\x12\x20\xf8\xfa\x4a\xdf\x1c\x98\xf1\xc0\x72\x66\x25\xd5\xa8\xf5\x48\x56\xde\x6d\xc3\x10\x94\x45\x14\x47\x45\x15\x72\xd7\xf4\x7d\xa7\x4a\x4d\xee\x9d\xc6\x13\xfc\x5c\x77\x90\x66\x63\x9b\x55\x03\xf5\xc5\xba\xef\x23\x6a\x19\x4f\xab\xda\x03\x77\x36\x24\x9f\xf6\x8c\xbf\x74\x32\x49\xb3\xa2\x4c\xa2\x62\xad\xa3\x42\xdb\xbf\x9e\xfa\x94\xe1\xaf\x1b\xe9\xfb\xe7\xba\x26\x8e\xed\x50\x52\x04\x76\x5e\x0f\x54\x26\x7e\x6e\xea\x65\xb3\xcb\xa1\x89\xb8\x6b\x8b\x87\xff\x9b\x4a\x84\xea\x42\x7d\xd6\x6b\x61\xe5\x15\xd2\x60\x4b\x66\xaa\x51\x8a\x10\xe6\x3d\xf4\x94\xb1\xb2\x5d\xa1\x8a\x94\x74\xc1\x7d\x8f\x7c\xd5\x64\xcb\x65\x36\xe4\x47\x89\x11\x72\x5c\x07\xc5\xc7\x15\x50\x70\x39\x36\xfd\x3e\x67\x56\x08\xf7\x0f\xe2\x4f\xf9\x44\x05\xbf\xe3\x08\xfa\xb1\xce\xc6\xfe\x84\x82\xf8\x9e\x50\xa8\x34\x7b\x80\xb4\x66\x81\x39\x7d\xc5\xa9\x55\xd2\x80\x13\xe4\x44\x93\xca\x9a\x97\xf4\x26\xa4\x21\x85\x60\x83\x3b\xcd\x7c\x52\x27\xf7\x84\xa3\xa7\x69\xa7\x45\x14\xf1\x5d\x2d\x93\xf8\x14\xb5\x25\xb0\xa1\x3e\xd6\xab\xb6\x60\x0c\xbe\xc3\x78\xd8\x08\x9d\x4f\xd7\x72\x83\x75\xbd\x90\x01\xc1\xc8\x85\x33\x2a\xe0\xd6\x3c\xb6\x80\x9c\x62\x4b\x5e\xc9\xad\x7c\x07\xff\xd2\x54\xed\x19\x8f\xac\xfb\x07\xb6\x41\x2a\x37\xec\x45\x82\xfa\xd8\x37\x1b\xc0\x80\xbd\x2f\x75\xc3\x51\x1a\x93\xec\x43\x4a\x82\x79\xdc\x9b\x42\x85\x8b\x8f\x5d\xf1\x38\x5d\xb6\xfd\xc8\x26\xa1\xad\x49\x41\xd3\x6d\x8a\x16\xb4\xde\xb0\x57\x6d\x7f\xa7\x27\x4d\x1c\xc7\x78\x92\x4d\xca\x5b\x58\xb0\x70\x21\x32\xa5\xbb\xf4\x04\x04\x74\xa7\x4c\xca\xae\x52\x2b\x40\x4b\x4f\x20\x24\xe1\x35\x51\x5b\x9d\x2a\x15\x4e\xef\xaa\xf9\xa4\xe2\x54\x9a\x28\x99\xf5\x2d\x15\xdc\x2b\x5e\xda\x71\x44\x2a\xfc\x1f\x81\xf7\x8f\x3f\xde\x00\xb1\xce\xef\xed\xa6\xfd\x7e\x0c\x1c\x17\xda\xb1\x00\xe3\xf3\xb1\xab\x27\x2c\x97\xd9\xd8\x8c\xe8\xe1\x8a\x36\x19\xdd\x97\xc8\xb1\xfa\xd9\x34\x2a\x93\x7e\x66\xfb\xb3\x18\x2b\x80\xbb\x30\x24\x88\x01\x74\x81\x67\x15\x5d\xd4\xaa\xa0\x8f\xac\xab\x4a\x9d\x5d\xb5\xd9\xf6\x8e\xd3\xa0\x66\x51\x4f\x49\x03\x7d\x78\x7d\x07\x83\x43\x34\xd1\xb5\x45\x19\xd7\xf6\x98\xd8\x34\x55\xb7\x18\x7c\xd2\x27\x33\x36\x8c\x4d\x9e\x47\x83\x35\x01\x0a\x0b\x4a\xa3\xe3\x45\x88\x1c\x38\xa8\x9f\xe6\x18\x37\xec\x79\x18\x68\xff\xc3\x16\x9b\xa4\x41\x94\x44\xf9\x48\x24\x74\x10\xe6\x7f\x1f\xa3\x9d\x4f\x14\x62\x99\xd8\x43\x55\xa4\x12\xf3\xca\xca\x26\xc1\x34\xb7\xc4\x30\xd8\x35\xc8\xca\x24\x34\x90\xd0\x72\xcd\xe3\xea\x51\xf2\x49\xb0\xd3\xcb\x58\xe6\x7f\x5b\xab\x3f\x07\xb4\xa1\x0b\x4b\xae\x9a\xea\x18\xda\x97\x69\x6c\x22\x2b\xbb\x85\xbc\x1f\x7b\xf4\x77\xa6\x9d\xcf\x7e\x96\x9f\xc4\xf7\x03\x45\x99\x82\x1a\x0c\xa2\xbb\x0e\xc6\x3f\x97\xd8\x03\x25\xc1\x78\x99\x56\x5d\xbc\xee\xb3\x64\xd9\xc2\x65\xac\x40\x13\xf7\x37\xa6\xaa\x43\xf0\xf4\x3a\x41\x2c\x51\x40\xb9\x47\x2f\x02\x4b\x0b\x17\x79\x69\x36\x7c\xf6\xd9\xf5\x2a\x8e\xe7\xeb\x42\xcd\x04\xbb\x05\x77\x4c\x01\xc6\x7a\x02\x12\x13\x80\xa6\x3d\xbf\xee\xfd\x6e\xe0\x94\x8b\xa0\x6c\x2b\x7a\xe5\x6c\xe1\x0f\xdc\x37\x12\x8a\x3b\x53\x34\x08\x30\x88\x76\x50\xa2\xe4\x3a\xdf\xd5\x62\x8a\x2f\xbb\x49\xfd\x3e\x04\x5f\x1f\x06\x24\xf6\xe0\x6a\xaf\x5f\xf8\x92\x23\xd4\x3f\xad\x1c\x4e\xd2\x9c\xb8\xf0\xbb\xe6\x3d\x28\x43\xc9\xb8\xf9\xf9\xb4\x9c\xa5\xa6\x1f\xaf\x21\x44\x47\x33\x1c\x51\x93\x38\xff\xd0\x23\x41\x49\xee\x07\x8d\x3a\xc5\xde\x97\x44\x00\xbb\xe3\x9d\xce\x81\xab\x10\x01\x24\xbf\x0f\x8d\xcb\x24\x0a\xa3\x89\x61\x9b\x1d\x3c\xda\x23\x58\xb5\x99\x76\xaa\x7c\xd9\xdf\x6a\x14\x63\xe6\xf7\x76\xcb\x64\x35\x8b\x8a\x82\xc5\xdd\x84\xae\xe4\xa9\x26\x17\xd5\xbe\x5b\x26\x51\x15\x90\x74\x54\xd3\xe5\xbc\xe2\x8e\x9e\x57\x58\x2e\x82\xa4\xa7\x71\xae\x00\x31\xa7\x10\x61\xf3\x89\xca\xdd\xa4\x21\x5c\x0d\x67\x49\xc1\xaa\x21\x24\xa9\xd9\x53\xea\x5b\xc7\xb6\xbf\xb6\x55\xb9\x6d\xfe\x84\x06\x1b\x06\xc5\xf1\xa9\x5a\xb4\x1e\xa0\x18\xee\x04\x5c\x3c\x31\xf6\x7d\x15\xfe\x15\xa3\x2c\x1a\x70\xed\x05\x23\xe6\x44\xa0\x28\x44\x27\xda\x78\xf4\xaa\x80\xc6\xa3\x14\x90\x58\x3e\x6e\xf3\x1d\x2c\x46\x36\xb3\xb3\x35\x16\xc0\x17\xbe\xe4\x0c\x5f\xbd\x1c\xc2\x1d\xaa\xaf\x61\x84\x7e\xec\x90\x45\x66\x6c\x72\x88\x35\x88\x4d\x81\xd7\xe0\x39\xf7\x50\x8d\xb2\x61\xb4\x62\x93\xd9\x19\xe7\x87\xfb\x4f\x9f\x23\xac\x89\xd4\xcd\xe9\x81\xa0\x89\xf7\xd8\x7a\x35\xc9\xb1\x5b\x9f\x51\x02\xc5\xcb\x76\x14\x25\xfd\x47\x7d\x97\xe7\x32\x5d\x1e\x02\x88\xe3\xa8\x73\x8a\x6d\x1b\xcd\x7f\x04\xa2\xd7\x95\xe3\xcb\xb7\x48\x84\x52\x7c\xde\x30\x33\xf9\xaf\xe8\xb6\x45\xd6\x7c\xf3\x33\xfb\xe2\x3c\xb5\xae\x33\xba\x6b\xf6\xd2\xa0\xbb\x16\x5f\x8d\xcd\x1f\x78\x79\xf7\x67\xba\x45\x2a\xf9\xa9\xd6\x56\x94\xc9\xea\xc9\x6c\xcb\x16\x05\x34\x74\x61\x59\xf6\x07\x15\xad\x33\x4a\xf9\xf3\xa4\xaa\xa0\x99\xe5\xb4\x2c\x3e\xad\xa4\xcb\x6e\xa3\x73\x22\x1d\x2b\xdf\xd6\x7e\x44\x2f\x5f\xc7\x54\xb1\xec\x6b\x94\x8b\x89\xbf\x75\xb5\x8c\x60\xc1\x9a\x65\x3d\x14\x50\x9e\xde\x9a\x2a\x66\xd7\xd6\x1e\x3d\x56\xe7\x50\xb5\x24\xd4\x86\x07\x88\x51\xc4\xda\x9d\xd6\x7e\xe4\x36\xc0\xac\x62\x64\xfd\x13\x54\x76\x6a\x32\x50\x18\x35\xeb\xda\x12\xe3\x78\x50\x2d\xcb\x08\x5f\xfe\x9c\x57\x4f\xa7\x47\xbd\xe4\x3d\x4e\xe8\x31\x09\x52\x80\x46\x3f\xee\x7e\x27\xa0\x4a\xb8\x98\x6f\x62\x5d\x77\x10\xb6\x2f\x7c\x89\x6f\xec\x18\xe0\x49\x7c\x95\x14\x88\xa1\xb5\x71\xcb\x9b\xb0\xa6\x25\x71\xa8\x31\xb5\x44\x14\xcd\xe7\x8e\xe7\x94\x4c\x57\x58\xc6\x93\x2c\x2a\x72\x65\x54\x8f\x7e\xa4\x98\x5d\x3d\xa5\x34\x64\x43\xd3\x07\xc5\x13\x9b\x25\x23\x30\x5d\xe5\x67\xc9\xfd\x07\x1e\x8b\xac\x41\x7e\x99\x58\xce\xac\x09\xb1\x20\x8b\x8f\x0a\x8d\x05\x31\x52\x91\x46\xe0\xa0\xcc\xb2\x74\x95\x73\x26\xe4\x30\x37\xf0\x63\x7c\xe2\xe6\x74\x9f\xd6\x1d\x0f\x3c\x3f\xaf\xa5\x5b\xcf\x7b\x4d\x79\x26\xd0\x6b\xbb\x50\xba\x60\xb1\x0e\x7d\x5c\x89\x84\x73\xa1\x0a\x28\x1a\x60\x41\xf9\x58\x71\xe6\xfb\x69\x1a\x47\x45\xc1\xe8\x6d\xb1\x89\xaf\x86\xa3\x17\x38\xf2\x29\x48\x6c\xb2\x67\xbd\x46\xdf\x11\xad\xd4\x3c\xb3\xae\xbb\x5a\xca\x90\x91\x29\x8f\xc8\x68\x6e\x00\x88\x26\x94\x94\x6a\x0a\xf0\x78\xa0\x0d\x58\x98\x94\x34\x50\xa5\x3c\xde\x71\x5a\xc2\x97\xa6\x2a\xa5\xfa\x16\x2d\x00\x22\x91\x4f\x8f\x0b\x61\xfd\x15\x8c\x46\x90\x5e\x0f\x63\x9c\xa1\x1c\xb6\x05\xb6\x44\x7c\xb2\xae\x0a\xa5\x77\x29\xc8\xc1\xcc\xdc\x51\x83\x01\x86\x45\xfe\x0c\xdd\x19\x76\x0b\x01\xef\x61\x3d\x43\x8d\x19\x3f\xcb\x36\x71\xd0\x63\x64\xfd\x4a\x27\x27\xba\x24\x46\xdd\x67\x03\xcd\x09\xae\x6e\x0d\xdd\xd6\xc7\xa0\x23\xc7\xa2\x08\xc8\x52\xb0\xb2\x72\x64\x86\xc9\x75\x0e\x7b\x1a\x4b\x96\x28\x4b\xf6\x27\xd7\x95\x84\xf6\x86\x72\xff\x9b\x59\xaf\x5e\x26\xe6\xf9\x6e\x3c\x26\x14\x7d\xaf\x78\x1e\x8a\x49\xf6\x9b\xb1\xcd\xa2\x50\x14\x30\x5c\x19\xa3\xfa\x73\x3e\x09\x3c\x1c\xdf\x26\xcc\x97\x17\xb1\xcc\xb6\xc4\x40\x19\x06\x92\x2f\x40\xbe\x55\x99\x63\x9c\x41\x84\x89\xc8\xf5\xb4\x36\x70\xc1\x68\xe1\xff\x08\x3c\xbb\xe8\x1b\x2e\x01\x9c\x64\x69\x18\x9b\x68\xcc\xf3\x8a\x95\xf4\x03\x8f\x68\xfa\x78\xfa\x09\x0f\x5c\x32\xc3\xc4\x16\x51\x88\x59\xe3\x36\x22\xa8\x86\x8a\xa8\xaf\x6b\xdc\x93\xd7\x1e\x04\x4a\x01\x68\x9b\x81\x46\x94\xa0\xb3\x3b\x4e\x42\x9a\x3d\xec\xc4\x37\xa5\x59\x81\xdc\xc3\xc5\xcb\x28\xc4\x34\x14\x9b\xc8\xea\xbb\xf9\xb8\x69\x2a\x3c\xbf\xb7\x6b\x0f\x90\x59\x8c\xa0\x0b\x5c\xbb\x53\x77\x38\x5b\x15\x80\xe2\x34\x97\x42\x30\xd2\xfd\xfb\x4a\x3a\xee\x81\x76\xb1\xfc\x53\xb7\x9e\xf4\xa3\xbc\x88\x92\xb0\x50\x4f\xe6\xbe\x7a\x32\xf7\xb5\x72\xad\xb5\x63\xce\x09\xb9\x61\x8b\xa1\x28\x92\x08\xd5\x37\xb0\xc6\x42\xe0\xbb\xd6\xef\x3c\xdc\x60\x3d\xca\xc2\x32\x57\x2a\x3b\x67\xb5\x80\xe4\x59\xa5\x95\xbf\x1a\xf5\x2d\xe2\xe7\x57\x1c\xbe\x6f\xc6\x3b\x8a\x3d\xd6\xf3\xe4\xac\x2d\xeb\xca\x7d\xa3\xc8\xac\xa8\x27\x08\x23\xd6\x53\x87\x4e\x68\xf4\xe8\x2d\xb5\xb5\xe7\xab\x51\x4e\x43\x55\x5c\xe6\xe0\x6b\xc6\x28\x01\x7a\xa4\xc8\x1f\xde\xd3\xc0\xab\xb7\xb8\xb4\x82\xab\x6f\xd5\x69\x4b\x27\x05\x0c\x01\x9c\x86\xc0\xd7\xe8\x41\x09\xac\xec\x13\x5a\x88\xd6\x86\x05\xcb\x02\xd2\x7b\xc3\x1a\x81\x40\x4f\x2a\x7a\xf4\x08\x38\xc3\x53\x4e\x58\x7f\xee\xda\x55\xb9\xcd\x56\xa2\xd0\x6d\xa0\x0c\xde\x52\x76\xcc\xa7\xda\x1a\x16\x61\x1a\xa6\x24\x51\xa1\xb8\x24\xaa\xfa\x7b\xba\xd5\x8e\x7e\x5c\x2d\x07\x26\x4a\xc4\x70\x1c\x51\x25\x57\x0d\xd0\x82\x3b\xaa\xb1\x13\x37\x95\x24\x7f\xdf\x9a\x84\x97\x1d\xa4\xa5\xb7\xf0\x97\x7c\xa2\xac\x22\x76\xbd\xf4\x5f\x77\x94\xe1\xe2\x69\xd5\xb5\x3a\xed\xe5\x43\xa3\x24\xb1\x99\x5c\x08\xb6\x7f\x1e\xaa\x08\x16\xef\x29\xc5\xf8\x8b\xb5\xeb\x48\xd6\xb6\x57\x8b\xb3\xc3\x6e\xb9\x3d\xf6\x1a\x40\xd6\x22\xd7\x4e\x4f\xde\x25\xb4\xd5\x4a\xed\xc6\x97\x2b\xa2\xc1\x6e\x56\xfc\x64\x9f\x51\xc6\xc8\x86\xcc\x31\x15\xa3\xf0\x81\x06\xaa\x3c\xf0\xc1\x43\x66\x6d\x3f\x1d\x93\xf9\x9e\x58\x62\xaa\x40\x85\xcb\xa8\x08\x24\xfe\x64\xea\xf7\xc2\x43\x4a\x29\xe8\x59\xca\x77\x45\x19\x43\xf5\x12\x8f\x4e\x77\xf0\x6b\xec\x7e\x71\xfe\x93\xb4\xc6\xb1\x29\xeb\x54\x09\x5d\xce\xf4\x3a\x9f\xfd\x2c\x6f\x5c\xd0\xc4\xa6\x91\xff\xab\xcf\xae\x3b\xce\xf4\x5f\xfe\x22\x2c\xf9\xa5\x79\x58\xa5\x0e\x08\xcf\xde\x9b\x2a\xa5\x4f\x24\xee\xe2\x21\xe8\x65\x26\x9f\xe9\xd1\xf6\x8c\x49\x74\x0d\xc1\x01\xe3\xe2\x03\xd5\x1b\xb9\x8d\xc7\xcc\x3e\xf6\x0a\xb4\xbb\x85\x6a\x08\xce\x87\xa7\x7a\x4b\x58\x78\xce\x69\xa1\x85\xab\x08\xe4\x58\x76\x8a\x66\x1d\x6a\x78\x3f\xbb\xae\xf8\x2e\xd7\x35\x63\xf1\x3b\x4e\x1b\x79\xd9\xfc\x03\x0a\x16\x11\x82\xb0\xa3\x11\xf2\xf8\x47\xd6\xfd\xbc\x7b\x9c\x2a\xb0\x78\x88\xdf\x6c\xac\xd0\xa4\xc6\x1c\x8e\xec\xca\x9a\xf6\xf5\xc6\x77\x09\x28\xcb\xb5\xd7\xa8\x1f\x99\x26\xe4\x23\xa9\x20\x7e\x5e\xfb\xe1\x74\xf0\x9c\x52\x9e\xb7\x61\x89\xfd\xa2\x8a\x32\x5c\x72\xe4\xca\xc1\x17\xea\x8e\x28\x11\x11\xa2\xbc\xb4\x10\xf6\x58\x29\x1d\xb6\x70\x6f\x27\x69\x29\x44\x0b\x51\xca\x57\x48\xa3\x8f\x1b\xb7\xba\xb0\xd0\x5d\x8d\x0a\xb2\x51\x51\xca\x89\x6f\xa9\x46\xcf\x5b\x0d\xee\xc0\xde\x97\xba\xcb\xac\x8c\x20\x18\x1a\xef\x4a\xdc\x59\xf7\xb5\xb7\x19\x65\x39\x35\x49\xe3\x38\x4a\x18\x2a\xbf\x34\xe7\xab\xaf\x9e\x13\xea\xca\x9f\x66\x30\x48\x33\x80\x96\xf0\xba\xd8\x58\x84\x4f\x74\x96\x9b\x45\xcb\xdc\x35\x14\xef\xae\x9a\xa9\x57\xab\xce\xf6\x24\x36\x49\x22\x85\x7c\x54\x5a\x20\xdc\xca\xc7\xae\xfe\x98\xa4\xfd\x7c\x56\xb5\x50\x78\x89\x44\xd0\xf8\x81\xc6\xf8\x22\xbf\x13\xd5\x85\x06\x77\x9b\x7e\x95\xa0\x88\x74\xa9\x0c\x59\xad\xc1\x57\x95\x13\x5a\x96\x12\xee\x3b\x4d\xe0\x00\x8c\x34\xe0\xab\xca\xf3\x03\xf0\x67\x8c\xc4\x3f\xd7\x7a\x88\xd7\x34\x7b\x81\xf5\x2a\x1c\x74\xd9\xd9\x4a\x1f\x9c\x2a\x3e\xc1\x4c\xaf\x05\x6b\x49\x1a\x82\x3c\x8c\x84\x67\xab\xc4\x5d\x9a\xa8\x9e\xf9\xbd\xdd\x7c\x94\x66\x45\x58\x22\x3b\x17\x82\x01\x5d\x8e\xbb\x68\x17\xe0\x9c\x54\xd4\x4e\x3b\x31\x84\x58\x12\x9b\x1f\xba\x1d\x24\xb7\x0f\x90\x8f\x32\x26\x5a\x6b\x56\x3d\x50\xa9\xfe\xd9\xa9\x52\x06\xfd\xd8\xbd\xbc\xac\x2c\x46\xbc\x53\x39\x9b\x44\x4f\xd1\x39\xaf\x5a\xf9\x2b\xca\x21\x8f\x15\x7b\x68\x46\x8a\x7a\x8f\xac\xf1\xa3\x74\x62\x07\x65\xdc\xd1\xda\x40\x53\x5d\x78\x93\x45\xa8\x3f\x08\x3b\xca\xfe\x75\xaa\xc0\x92\x17\xd5\x0e\xf9\x5f\xfe\x3d\x60\xb5\x1c\x93\x7f\x17\x17\x5b\x7f\x97\x6b\x07\xba\x7e\x88\x20\xe0\xc9\x75\x5f\x1e\xfc\xd5\x4f\xf5\x14\x24\xfe\x7a\x9d\x16\x1a\x8e\xa4\x9c\x22\xf2\x08\xf4\x90\x44\xec\x5a\xd9\x74\x45\xf9\xb0\x04\x46\xd0\xfb\xff\x07\x5a\xb7\xe2\x93\xee\x55\xb9\x66\x24\xe9\x4e\x2b\x9f\xc9\xdb\x0a\x4d\x7c\x5b\x11\x2e\xe3\x28\x4d\x66\xa9\x3e\xdb\xda\x9e\xed\x3c\x4c\x57\xc4\x15\x15\x6c\x1c\x47\x79\xf1\x1f\x09\xae\x9b\xbe\x19\xb9\x8d\xc9\x0b\x6d\x69\x8e\x37\x87\xcb\xca\x98\xeb\x72\xa3\x26\xb8\x6b\x17\x47\x70\xf4\xc6\xb0\xb2\xfe\xb5\x16\xe5\xf9\x6b\x35\x52\xc6\x66\x94\x19\x28\x8c\x8a\x5c\x86\x27\x22\x9c\x54\xaa\x58\x5f\x6e\x5c\xd8\xae\x5d\xd5\x62\x65\x07\xca\x9f\x04\x83\x47\xb0\x83\x0a\x5a\xc2\x36\x00\x4e\x6c\xf0\x9f\x2b\xa9\xcf\x7f\xde\xd6\x55\x9a\x94\x71\x6e\x11\x3c\x3b\x41\x36\x17\x56\x5c\x0b\xd4\xda\x36\xd5\x2e\xa5\x79\x99\x0d\x6d\xc2\x68\x31\xb4\x32\x30\xd8\x7c\x05\x69\xce\xfd\x6c\x0b\x42\x20\x0f\x7d\x6b\x0f\x81\xfa\x05\xed\x38\x7c\xc1\x4d\x08\x03\x1c\xb8\x64\xcc\x4f\x50\x7c\x41\x3f\x38\xfd\x64\x4f\xbd\x5b\x48\x15\x20\x70\xb8\xae\xf0\x48\x9f\xff\x87\xbf\xa4\x05\x2c\x47\x53\x5f\x81\x1b\xd5\x5e\x4f\x56\xc0\x45\xd8\x41\x6f\xe9\x76\x04\x86\xfb\x30\x99\x9e\x22\xb3\xfb\x3b\xda\xbd\x94\xae\x55\xa8\x3d\xcf\xaa\x42\x62\x9e\xc6\x2b\xf2\x6e\x9c\x8e\xa9\xeb\xc4\x7f\xa8\x76\xa6\x55\x13\x27\x25\x42\x02\xc4\x4b\x4c\x29\xe5\x13\x95\x31\xc5\x36\xcf\x79\x53\x14\x5b\x78\xdf\x02\xbd\xda\x18\xb0\xb4\x99\xbc\x66\x22\x48\xce\x3a\xf5\xeb\x85\x05\x27\x8b\xbd\x43\x60\xd3\x9f\xfd\xec\xcf\x7a\x8d\xbe\xf7\x10\x70\x61\x81\x39\x82\x78\x0d\xb1\xe6\xe5\xa9\x47\x17\xde\xc0\xd0\x17\xab\xbd\xce\xab\xaf\x32\x22\x06\x26\xe9\x22\xee\x85\x42\x23\x7a\x22\xb7\xa8\xb0\xec\xa0\x92\xbb\x76\x71\x96\xf9\x53\x14\x73\xf8\x07\xb1\x94\x23\x8e\xfc\x18\xe5\x7d\x34\x80\x2e\x69\x40\xda\x55\x14\xa6\xd9\xd6\x12\x7b\x8e\xb4\x97\xe9\xf1\x21\xb7\xff\x29\x95\x60\x51\x99\x3e\x14\x78\x24\xe0\x6f\x05\x55\x08\x8c\x65\xf3\x34\xca\xda\x7c\x8d\x35\xe5\x1e\x85\xf7\x60\x24\x88\xf4\x7f\xb1\x5f\x28\xe2\xcd\x12\x07\x8f\x68\x32\x23\x3c\xfe\x89\xb2\x3e\x39\xaf\x65\xd1\xaf\xb5\xe1\xee\x57\xb3\x94\xbd\x64\x45\xd3\xd6\xf7\x91\xaf\x05\x7f\xd3\x97\x49\x26\x36\x2b\xd6\xfe\xf1\x7f\x1a\x9a\xbc\x34\x71\x81\xd0\x13\xeb\xf5\x4e\x6a\x9e\xf1\x71\xc3\xaf\xe7\xd5\x57\xbd\xcb\x35\x8d\x09\x16\xae\xa5\xd9\x2b\x22\xb6\x8e\x23\x15\xc5\x2b\x36\x03\x15\x0f\x03\xfc\x46\xa0\xf2\xc5\xa9\xcf\x59\x9b\xb2\x93\x8b\x8b\x24\xd7\x50\x3a\x23\x5d\x54\x46\x98\x8a\xc9\x27\x8d\x12\x02\x8d\x57\x56\x8f\xe6\x18\x59\x30\xd5\x34\x20\xf9\x44\x01\x70\x57\x4d\x96\xfc\xbf\x94\xfd\x69\x8c\x24\xe9\x79\x27\x86\x77\x67\x55\x75\xf7\xdc\x27\x49\x69\x17\xff\xbf\x53\x6b\xc2\x94\x8c\xf1\xd8\xc6\xc2\x36\x2c\x7f\x88\x54\x75\x51\x64\x97\xc5\x62\xa3\xba\xd9\x23\xd2\x07\xe6\xcd\xc8\xb7\x32\x63\x2a\x32\x22\x19\x47\x55\xd7\xac\x3f\x2d\x8c\x85\x61\xd8\x0b\xac\x17\x8b\x5d\x03\xb6\xe1\xf5\x1a\x96\xd6\x90\xb4\x3a\xa0\xa5\x2e\x32\x8b\xe2\x39\x14\x45\xcd\x0c\x39\xf7\x70\xa6\xaf\xea\xab\xba\xbb\xfa\xbe\xbb\xc6\x88\xe7\xf7\x3c\xef\xfb\x64\x45\xf4\xc2\x06\x08\x22\x62\xba\x32\x33\x8e\xf7\x78\x8e\xdf\x61\x33\xa2\xef\x60\x21\x3a\x4e\xdb\xb1\xb3\xa0\x7d\x49\x16\x8f\xe0\x96\x0a\x84\x3e\x40\xe4\xb7\x53\x42\x3a\x4a\x56\xd2\x65\xe1\xa9\x63\x47\xbf\xa2\x46\x0c\xe3\x2a\x84\xd3\xe5\x97\x9c\xbf\x5b\x0c\x66\xaa\x41\x86\x91\xf1\xc8\xba\xc2\xd7\x9f\xa4\x37\x48\x83\xe4\xa3\xe7\x3b\x1e\x09\xc0\x65\x60\xd1\x72\xdb\xf9\xf8\x16\x67\x17\xdb\x45\xba\x6a\xb2\x1e\x0a\xdf\x48\x51\x3e\x54\xbe\x53\x1f\x2a\xc8\x01\x39\x8b\x3e\x55\x4d\x4c\x4e\xaa\xf0\x94\x05\xe2\x46\x97\x83\x0e\xd0\xed\x89\xd6\xee\x47\x4a\x03\xe3\x6d\x65\xc6\xb0\x5b\x65\x3c\xb7\xc7\x4a\x2d\x61\xd7\xba\x5a\x99\x37\x29\x92\x67\x62\x05\xba\x24\xa8\x0e\x30\xb6\x15\xff\x32\xbd\xae\x96\xd8\x63\x28\xe0\x8a\xa3\xaf\xc7\xde\x6d\xa8\xd5\xb0\x4c\x72\x6b\x93\x69\x0f\x85\xdb\xdd\xa9\x45\x02\xf2\x75\xfe\x5d\x9f\xab\xe1\x12\xab\xd4\x23\x4d\xb1\x57\xe3\xc2\xae\x28\xe5\x9d\x2b\x0d\xd2\x39\x55\x30\x34\x62\x06\x84\xe2\xab\x3b\xdd\x92\xda\x94\x7d\x89\x95\x28\x5a\x9a\xe2\x35\x56\x70\x34\x5d\xed\x1a\xd8\x78\x64\x7b\x8f\x54\xaf\x49\x50\xd5\xbe\xaa\x7a\x06\x95\x71\x07\x9f\xac\xbe\x42\xd8\x01\xd5\x4d\x62\x03\x03\xd9\x9c\x86\xed\x3f\x6c\xa3\x2a\x2d\xba\x6c\xbe\x40\xc1\xf5\x7a\x29\xb2\x37\x74\x29\x73\x9b\xe4\xdc\x43\xd0\xba\x36\x02\xe1\xf0\x9b\xe4\x52\x94\x0f\x18\x51\x85\xfc\x14\x10\x54\x3e\x5e\x7f\x5a\xc5\x07\x2b\xe4\xd3\xa8\x8c\x07\x27\xd7\x94\xe7\x6b\x24\x9d\xf9\xf9\x43\x08\x26\xb0\x9c\x00\x88\x88\xd2\x10\x9a\x73\x58\xcb\x5f\x57\x22\x33\x99\x5d\xb1\xb1\xcd\x28\x1f\xde\xbe\x5d\x3d\x97\xed\xdb\xb5\x77\x72\x60\x01\x64\x32\x7c\x39\x26\x2b\xec\x48\x90\x68\x00\x8d\x29\xe4\x31\x67\xbb\x1f\x97\x69\x46\x53\x0d\x55\xe0\x07\xd8\x42\xf8\xc4\x05\x99\xd5\x3b\xac\xf6\xe0\x29\x9f\xf3\xa2\x24\x8f\xb0\x1e\xf0\x77\xdc\xd0\x74\xc7\x63\x66\x6c\xb6\x1a\x81\xf5\x8d\xdc\x9a\xc3\x7c\x3e\x09\x7c\x2d\x76\x54\xc6\x4c\x85\xd7\x74\x59\x3e\xae\x29\x1c\xbd\xd0\x36\x11\xde\x0e\x13\x33\x03\x4f\x08\x3c\x5b\xcb\x67\x5d\x7d\xd6\xe4\x2c\xd3\x83\xcc\x77\x8a\x96\x25\x54\x5d\xb8\x7f\x8e\x17\xfc\x49\x53\xd1\x60\x29\xca\x04\x2b\x88\x8a\xdf\x0f\xc6\x8a\x01\xf5\x83\xc0\x2b\x3b\x89\xa1\x43\x94\x26\x33\x0a\x26\xf6\x11\xb5\x47\xa5\x7b\x47\x9f\xe5\x7f\x40\x29\xc8\xf9\x0b\x3b\x54\xfd\x9f\x7b\x33\xfb\xd4\x14\xd3\xfe\x7e\x21\x4f\x2f\x9a\x9e\xba\x53\x8a\x35\x0f\x71\xf7\xf1\x86\xcd\xe9\x50\x7b\x29\x0d\xcb\x5c\x36\xa7\x09\x81\x3f\x11\x49\x50\x6f\x25\x4d\x0a\xe4\xf6\x12\x80\xd3\xd7\xbb\xc8\xdc\xed\x2b\x67\x94\x5e\x7e\x5d\x74\x6c\xee\x70\xbb\x1f\x99\xa4\x90\x12\x26\x1e\xf9\x34\x82\x5a\x54\xf6\x79\x81\x45\x61\xf5\x03\x95\x7a\x8d\xd2\x18\xf2\xc5\x4a\x2c\x0a\x5c\x13\xa9\xcf\xd5\xab\xb7\xe0\xa3\xa6\x45\xb4\x62\x1f\x2e\xb2\xad\x7a\x9f\x36\xae\x72\x0e\xc5\x9d\x62\xc9\x58\x81\x48\xf8\xe9\x1e\x47\x85\xcd\xb8\xe2\x8d\x5d\x06\x0e\x03\x7c\xdc\x64\x2b\xd8\x8d\xd3\xd5\x29\x3f\x3c\xb7\x75\xad\xf5\xb8\xa2\x41\x4e\x75\xfc\xcf\x8c\x6c\x36\x30\xa3\xfc\x31\x0a\x07\xd1\x20\x38\xa9\xdb\x6f\x27\xc7\xca\x04\xec\x9c\xf6\x97\x44\x38\x89\x52\xf0\x03\x04\xb3\x7c\x82\xa5\x15\xb1\xc2\x2d\xd5\x12\xfe\x2e\x2d\xb3\x7c\x1c\x78\xad\xd8\x73\x14\x00\xa0\x30\x32\xd5\x99\x70\x17\x24\xc3\x21\x3b\x5d\x45\xb4\x88\x02\x61\x32\xa4\x89\x40\x8e\x35\xe5\x64\xfc\x36\x95\x21\xef\xc0\x46\x89\x1d\x9a\x04\x90\x1c\x5c\x13\x6a\x62\x7c\xec\xf4\xa7\xc2\x81\x35\x23\x80\xcf\x0e\x72\x6b\xea\xba\x12\x55\xbc\xae\x6c\x0f\x97\xd2\xb4\x18\x44\x71\x9c\x73\x4f\x47\xba\x03\xf4\xbc\x51\x75\x7a\x5d\x49\xb3\xbf\xae\xb9\x23\x1a\xac\x43\xa5\xa5\x1c\x12\xa1\x62\xbf\x4e\x3f\xaf\x1d\x7f\xb5\x5c\x28\x2e\xe5\x74\x2d\xa8\xab\x92\xbf\x22\xb3\x66\x18\x47\xae\x92\xa6\x55\x64\x04\x24\x5f\x33\x40\x9c\xab\x06\x40\x3e\x30\x19\x86\xaf\x03\x6e\x38\x8a\xeb\xf9\xda\xcc\x7e\xf9\x65\xe6\x7e\xc5\x80\x7a\x6f\x5f\x66\x67\xe1\x9d\x7f\x38\x3f\xdf\xb6\x49\xbf\x8c\x97\xb8\x98\x21\x52\xea\x34\xe0\xf9\x44\x39\x7b\x8e\xd2\x34\x9b\xf6\x7c\xa0\xf3\x93\xa6\xba\x0b\x5e\x96\x9d\x1e\x26\x96\xb0\x99\x5a\xb5\x8c\xb6\xde\x38\xe6\x1d\xb5\x49\x35\xe9\x61\xea\xaa\xa3\x74\xa5\x8a\xf8\x5b\x3e\x80\x3c\x1e\x28\xf7\xbe\xe3\xae\x35\xd4\xb5\x26\xe9\x9a\x38\xe6\x32\x88\xa6\x05\x4b\x69\x5a\x79\xda\xa5\x49\x1e\xd9\x32\xfb\x7f\xe9\xdb\x37\xe1\xfe\x90\xe6\xca\xdb\xf5\x63\x65\x03\xf3\xb1\x0b\xa7\xbb\x66\x60\x86\x46\x56\x3b\xd4\xb4\xe0\x3b\xeb\x5c\x6f\xab\x5b\xc0\x76\x49\x52\xbf\x1e\xfd\x45\x78\x88\x8c\x61\xd7\xd8\xb8\xa1\x72\xcd\xc7\xde\xa3\x38\x35\x3d\x26\xe1\x3a\x2d\x6f\x27\xa1\x70\x01\xc1\x2b\x4b\x43\x8d\x9f\xf0\x19\x77\xba\x0c\x18\x9a\x2b\xe9\x2e\xce\xba\x92\xae\x6f\x19\x8e\x06\x69\x62\x89\x3d\x8f\xfd\x8a\xcd\xd8\x51\x7e\x87\xec\x34\x2a\xa3\xd7\x69\x36\x20\x08\xb8\xa3\x90\x39\xf8\x62\xe1\xbe\x7a\x0c\x47\xdf\x16\x3c\x3d\xb9\xf9\x10\x28\x44\xdb\x3b\x81\x97\x4a\xdc\xd4\xa9\xac\xa6\x5d\xe5\xc3\x7c\x4a\x19\x02\x20\x96\x44\xad\xef\x69\x24\x20\xc0\x15\x3c\xdf\xa9\xe7\x99\x73\xed\xd8\x2e\x15\x34\x9e\x9d\xf3\x90\x77\x18\xc5\x68\x51\xd2\x50\x73\x72\xe2\x1a\xf5\xb6\x6b\x93\xbc\x5b\x66\xfd\x69\x97\xdd\xfc\xd7\x27\x70\xa5\x42\x20\xf0\x1a\x54\x58\x1d\x20\xae\xb0\x51\x9b\x88\x07\x16\xa0\x18\x9b\xc6\x90\x30\xe6\x1e\x1d\x52\x08\x76\xdc\x1e\xeb\x92\xd6\x33\xca\xe8\x21\x8e\xa3\x34\xc9\xf7\xe0\x49\x62\x7d\xdd\xd5\xd1\x90\x46\x15\x54\xff\x11\x2d\xea\x7c\x8c\xb8\x03\xd7\xf4\x9a\xde\x10\x2f\x34\x4a\x03\x90\x11\x66\x5e\x64\xa2\xed\x20\x81\xc0\xe6\x04\x66\x64\xb3\xa9\x63\xf2\x4a\x99\x17\x51\xc8\x05\x37\x2c\x5b\x30\x6f\x40\xe7\xf7\x4f\x02\xa5\xc2\xf8\x83\xa6\xb6\x6d\x52\xc6\x71\xb4\xb4\x06\x9e\x1c\xf2\xfa\x5b\x93\xca\x72\xd5\xb7\x09\x0f\x40\xc1\xa7\xa3\xa5\x25\x9b\x41\xcf\x92\x15\x02\x51\x48\x38\xa5\x4c\x73\x4e\xa9\x4a\xb0\x3d\x4a\xe1\x1a\xe8\xf8\x78\xa7\xb7\xe9\x35\x22\xc2\xe0\x2c\x4c\x64\x44\x7d\xfd\x92\xb7\x72\xfe\x44\x6d\x09\x23\x69\x05\x9b\x45\xa3\x41\x15\x32\x08\x2d\xc6\x61\xe8\x7c\x23\x69\x57\xad\x5a\x51\x85\x0d\x26\x2e\xa2\x61\x9a\x59\xbd\x64\xea\x76\xde\x7b\x93\x5b\x56\x68\xf3\x7c\x1f\xdd\x01\xeb\xf2\x60\x20\x21\x77\x7c\x30\xb1\xdf\x54\xd3\x1a\x91\x27\xb3\x1c\xdc\x3f\x2c\x8a\xc2\xe8\x7d\x65\xee\x77\x76\xac\x59\x5c\x3b\x37\xb9\x2a\xa4\x1c\xa5\xa3\x32\x56\x84\x36\x7e\x27\xe8\x47\xc9\x0b\x7a\x5c\x99\x8c\x87\x58\x78\x31\xeb\x4f\xaa\xf7\xc8\x77\x88\x9a\xec\xe5\x40\xf3\x82\x47\x51\x26\x70\x78\xdc\xd4\xf1\xb1\x92\xf8\x3d\x1e\xec\xd4\x22\x61\xe0\x08\xc2\xf3\x77\xe8\xd5\xb3\x0f\xba\x36\x95\xbe\x14\xec\x7c\x6d\x44\xdf\xb6\x59\x3e\x82\xac\x10\x2d\xf6\x42\x14\x6f\x79\xd2\xb8\x8a\x1f\x87\x65\x51\x9a\x98\xf2\x76\x36\x0e\x0d\xfc\xea\x70\x69\xac\x24\x90\xce\x63\xfa\xf1\x49\x93\x1f\xec\xaa\x8d\xfa\x03\x51\x35\xe7\xb4\x96\x26\xf6\x04\x4c\x04\xf9\xcb\x4d\x25\x23\x92\x17\x26\x42\x8b\x0f\xcb\xe2\x6d\x4c\x2f\x3e\xd1\x7a\x8a\x26\xde\xe7\xa1\xd6\xcf\x75\x3c\x4e\xe9\x01\x91\x50\xd9\x9c\x6c\xac\x84\x9e\xff\x44\x6d\x12\x57\xf5\x02\xc2\xb9\x22\xea\xba\xf7\x78\x49\x90\x92\x9f\x9f\x5f\xcb\x36\x8e\xd3\x3e\xbd\xba\x6d\x1a\x4c\xdb\x5a\xec\xa1\x28\xb3\xae\x48\x45\x79\xcd\x05\x4f\x44\xb9\x58\xab\x57\xcc\xcf\xb7\xc3\x32\x2f\xd2\x61\x4b\xc9\x0e\x5d\x50\xee\x5d\x75\x2d\x42\x22\x96\xae\xd8\xb0\x55\xdb\xe3\x05\x0a\xe6\xe3\x48\x6b\xfa\x36\x4b\x6c\x9e\x53\x04\x28\xb5\x01\xfa\xa0\x2b\x1a\x38\xe9\x65\x7e\x04\x7c\xa2\xe0\xe1\x5d\x53\x98\xa4\x6f\x72\x92\x10\xf7\x76\x0f\xb3\x72\x5c\xe3\x86\x7a\x71\xdc\x25\xd7\x6a\x13\x9d\x29\x60\xbb\xf8\x78\x67\x49\xe1\x57\xaa\x95\xe6\x50\x4b\xcb\xa6\x06\x2a\x57\x52\xef\xfe\xcb\x8b\xff\x39\xfe\x4c\x3c\x8d\xe9\xda\xc5\xd4\xf8\x19\x0f\xc6\x2e\x6c\x99\x89\xd6\x19\x42\xe0\xef\xd3\x57\xf2\xb1\x4a\xcf\x32\xdb\x37\x99\x33\x64\x16\xc3\x9e\x96\x37\xef\x71\x01\xda\xc8\x44\x89\xe7\x7a\x36\x89\x06\x38\x9d\xc9\x41\x6a\x73\xea\x1f\x39\xfe\xb6\x77\x50\xdc\xdb\xf1\x90\xd2\x4f\xd4\xbd\x99\x28\x7e\x92\x96\x3f\xe0\x92\xb9\x7a\xe7\xca\x7d\xfb\x45\x11\xf1\x18\x05\x2f\x08\xdf\xaf\xe1\xad\x62\xb7\x7e\xa2\xa3\x32\x50\xf8\x4d\xe2\x76\x1f\xe9\x28\x71\x27\x96\xda\xc6\x77\xfd\x98\x5e\x28\x5e\xcb\xf4\xba\xa2\x8a\x3e\xb2\xee\x9b\xed\x84\xb4\xa9\xe2\x71\xb4\x03\x44\x57\xc6\x87\x64\xdd\xb4\xb7\xb6\x8f\x3e\x8c\x44\xe2\x7d\xbc\x16\xf1\x93\xd5\x8c\xa1\x37\xe9\x2d\xa0\xee\xc7\x38\x1d\xe7\xd2\xe8\x58\x37\xd7\x26\x1c\x1b\xe9\x31\xf0\x17\x2b\x0d\x92\x6e\x59\x14\x36\x5b\x22\x6d\x5f\x8f\x14\x7f\x93\xbe\x46\x4a\x47\x82\xde\x58\x1d\xd8\xcc\x12\x3e\x9c\x83\x6b\xc4\x84\xa8\x2b\xf3\x71\x6d\x92\x52\x45\xbb\x88\x32\xdd\xf8\x42\x79\x4b\x60\xf8\xf5\x9d\xa4\x6d\xc2\xe5\x24\x5d\x8d\x6d\xaf\xcf\x3c\x77\x2c\x7a\x77\x14\x12\xf2\x8e\x56\xea\xb7\x79\x1e\x0d\xd9\xe0\xd7\xd5\xdc\xee\x28\x63\xba\x3b\x35\x40\x62\x95\x8a\x94\xdd\x2a\xd0\x8e\x0a\xcb\x66\xda\x12\xc5\xf8\xae\xe3\x66\x13\xdc\xad\xc8\x4c\xcf\x49\x91\x62\x3d\xbe\xa1\xba\x1c\x48\x68\x26\xc4\x8f\xa5\xe8\xe5\x78\x0e\xab\x26\xeb\x4d\xfb\x5c\x79\xba\xe3\x3f\x72\x4b\xad\xb2\x13\xd2\x68\x3f\x57\x6e\x95\xc4\x41\xdb\xa7\x18\xf0\x2c\x69\xe4\xcc\xff\x5c\xb5\xef\x01\xde\x3c\x77\x73\x02\xa5\x3c\x76\x49\x47\xd6\x2c\x67\x27\xf4\x16\x45\x62\x73\xf0\xb3\xd0\x24\x26\xb1\xa6\x35\xc1\xc1\xf7\xd8\x88\xb7\x03\x5d\xb7\xb0\xdd\x18\x4b\xb9\x08\x63\x9c\xa4\x32\x02\x1f\x8f\xdb\xf5\x1d\x2f\xb3\x45\x94\xa4\xdd\xd8\x54\x2b\xba\xa1\x7d\x4f\xb8\x8c\x0a\xe8\x08\xdd\x00\x6e\xc5\x35\x0a\x6f\x86\x26\x8e\x69\xd1\x40\xfc\xf3\xba\x42\x52\x20\x33\x62\x20\xa3\xe2\x0d\x67\x76\x14\x9b\x90\x28\xee\xa8\x72\x29\x5d\xa2\x43\xae\x21\xea\x23\x87\x0b\xca\x3e\xe1\x42\x63\x24\x04\xec\xce\x6a\xd4\xb3\x08\x5b\x91\xe4\xdc\xa7\x6b\x01\x22\xe6\xd1\x8e\x27\x39\x90\x90\xa5\x0f\xe1\x96\xa2\xc2\xbb\xbc\xb8\x56\x83\x03\x10\x6d\x36\xc9\x41\x77\x53\x2b\x8b\x6f\x23\x09\xd2\xdf\xec\x52\x66\x12\x46\x0d\xd3\x63\x12\x69\x43\x55\x59\x81\x0b\x1f\xd0\xd7\x97\x1d\xa2\xd6\x0e\x47\x03\x93\x47\xd8\x0e\x51\x59\xbc\xa8\x65\xfd\x1f\xa8\x52\xed\xe3\x34\xa0\x45\xad\x6c\x02\x6c\xe1\x5d\x80\x9d\xb0\x95\xeb\x49\x6c\xaa\xed\x37\xb3\x51\xb2\x94\x66\x21\xf4\xb4\xb1\xa4\xfd\x31\x16\x6a\x3e\x69\x82\x27\x8c\x6c\xbc\xc2\xc0\x21\x44\x30\xa7\xe9\x5d\xf1\x71\x53\x2f\xc0\x64\x69\x6e\xa1\x57\x27\x75\x7b\xe5\xbf\x5b\xa7\xe3\x2f\x2c\xb4\x97\x62\xb3\x92\xb2\xfd\x5d\x93\xcd\x83\x4b\xcd\xa3\xdc\xc2\xd2\x06\xb0\x24\x44\x53\xdb\x77\x95\x0c\xff\x39\x45\xca\x1e\xa4\x59\x6e\x19\x4b\x8e\x32\xee\x6d\xcc\x4a\x3e\xc1\x14\x97\x65\xb3\xe5\xb4\xdf\xd9\x62\x08\xcb\xf5\xd5\x66\x40\x55\xcf\xc6\xe5\x51\xcb\x32\xb7\xa4\x3d\x53\x9b\x83\x12\x78\x54\x9b\xb3\xcd\x0a\xae\xb4\x0a\x66\x50\x03\x08\x6b\xf2\x41\x54\x16\x4f\x7a\x33\x9e\xc3\x74\x15\x6f\xca\x19\x29\x2c\xce\x72\x0e\xfd\xd7\x48\xa8\xb1\xfd\x6d\x6a\x53\x92\x93\xea\x51\x64\x36\x2b\x13\x4e\xda\xc0\xa2\x00\xa3\x93\x8f\x5d\x3b\x22\x49\x0b\xdb\x4d\xd3\xe5\x19\x05\x37\x3c\xa3\xf9\x9a\xa7\xc6\xca\x63\xee\xb2\x02\x7a\xec\xa1\x11\x8a\x56\xf4\xbb\xb5\x71\x71\x70\xf1\x60\x7b\x60\x4d\x6f\x4a\x3b\xae\xd0\xa7\x81\x0f\xb8\xac\x8a\x56\x3a\xb2\xfa\x8d\xcf\x1f\xc2\xa5\x60\xb5\xba\xaf\x5a\x03\xff\xfd\x33\x1d\xcf\x53\xb9\xa9\x42\xc7\x4d\x8a\x4a\x50\xed\xf8\xa9\xaa\x31\x0f\xa3\x9e\x35\xdc\x04\x46\xf7\x0b\xf3\x92\x8f\xdd\xb6\x4c\x34\xe1\xcc\xeb\xea\x8a\xca\x14\x5d\x07\x9f\xd4\xb2\x9b\x17\x94\x58\x82\x93\x47\x13\x93\x4c\x35\xa9\xbf\x1d\x3c\xa7\xf8\xc8\xe4\x23\x48\x86\x52\x0b\xd2\x9b\xd8\x52\xfa\x43\x1a\x73\x9c\x17\x76\xa8\xa9\xc2\xaf\xd3\xd3\xe3\x63\xc5\x36\x1d\xa5\x79\x6e\xf3\x9d\x52\xa7\xae\xac\x0f\x1d\x45\x8c\xf3\x1b\x2a\x58\xca\x52\xd3\x9b\xf1\x0b\xc7\x3b\x88\x95\xb0\x2f\x8c\x03\x65\x13\x0f\x56\x8a\xf3\xad\xf7\xa8\xed\xcd\x09\x05\x82\x91\x49\x1e\xf5\x94\x93\xc7\x69\x71\x66\xc6\x09\x46\xb2\xcb\x2e\x1c\xc9\x61\x1b\x81\x17\x76\xbf\xab\xe3\x49\x4d\x7d\xcf\x13\xbb\x34\xf6\xd0\xcc\x0f\x50\x89\x67\xcc\x3b\x36\x77\xe4\x91\x97\xd4\x8b\x67\x4f\x55\xc4\x24\xa8\xd7\x7c\x40\xb1\x0c\x1f\x2b\x54\x5c\x68\xe2\x27\x54\x47\x1a\x82\xb2\x78\xe5\x2f\x92\x56\x82\xf4\xea\xab\x8f\xe3\x16\x8e\xa1\x81\x80\x01\x7a\x5b\x8b\x20\x80\xdd\x0f\x08\xc7\x03\x2d\x6c\xc0\x3b\x30\xea\x4b\x7b\xd7\x5d\xe0\x7c\xea\x79\x66\xf4\x09\x57\xc4\x57\x67\x3f\x19\x6b\x1f\x0c\x45\xb6\x58\x31\xd9\xda\x94\x5a\xd5\x4e\xab\xc6\x2d\x54\xb5\xe5\x19\xfa\xbb\xb4\xff\xde\x2c\xc6\x07\xa2\xa5\x7f\x34\xde\x49\x34\xc0\xa4\x5c\x6f\x92\x23\x49\x97\x96\xc8\x78\x9e\x43\x56\xc1\xea\xd0\xdd\x89\xfe\x6c\x3d\x36\x3c\xd4\x1e\x46\x79\x6c\x29\xce\xc3\xd5\x0a\x5c\xd5\xff\xf4\xb6\x92\xd3\xbf\x5a\x5b\x41\x8e\xcc\xb6\xf3\xa2\x0c\x97\x49\x57\x18\x3f\xf4\x36\x16\x70\x0c\x98\xbb\x4a\x6f\x0f\xd6\x30\x8e\x2b\xbf\x38\xbb\xe8\x24\xd8\xd5\x84\xb2\xb6\xb7\x47\x25\xba\x3f\x53\x42\x4e\xa7\xc7\x8a\x4b\x71\x17\x3f\xa3\x35\xf2\x25\x92\xa7\xbb\x16\x37\x70\xc5\xf8\x36\x59\x46\x86\x17\x9e\x43\xa2\x22\x74\xdd\xf7\xe2\xfd\x7b\xaa\xe5\xc0\x42\x77\xe9\xda\xf1\xcb\xf7\x03\xaf\xb3\xfa\xbd\xf1\x73\xfc\x24\x8a\x81\x49\x96\xf3\x7e\xb4\xb2\x43\x2c\x6a\x02\x94\x7e\xc3\x85\x99\x26\x29\x06\x69\xc2\x36\x3a\xe2\xb3\xea\xe1\x3d\x67\x68\x28\x8b\x88\x48\x4d\x3f\x7f\xee\x70\x3b\x4f\x33\xcb\x8c\x28\xd1\x33\xd1\x3a\x27\x0d\xad\xb9\x5e\xda\x97\x66\x91\x2a\x3a\x0b\x76\x1f\x4b\x90\x63\x48\x54\x97\x25\x4d\xb6\x9d\xab\xea\xe2\xec\x62\x3b\x4c\x87\x23\x92\x51\x95\x56\x8f\xd0\xdb\x5a\xce\xdd\x43\x93\x19\xbb\x65\xf1\x94\x87\x17\x70\xab\x0e\xe1\xca\x9f\xd1\xad\xaa\x3a\xf4\xd7\x74\xfd\x4f\x7c\xa7\xf7\x21\x5f\xc5\xdb\x68\x81\xf9\x27\x7a\x69\x5e\x3f\x87\x4d\xc7\x85\x4a\xae\x94\x0e\xaf\xeb\x8d\x15\xf5\x62\x07\x01\xae\x46\x22\xb6\x4b\x66\xb5\x39\x46\x9a\xf3\x10\xfc\xc0\xbd\xb8\x6e\x96\x96\xfd\x41\xf1\x88\x27\x2f\xc3\x89\xd1\x01\x7b\x95\x45\xb4\x32\x63\xdb\x52\x24\xa4\x47\xe1\xf6\x48\xb3\xa2\x7c\xba\x53\x2d\x34\x80\x7c\xff\x25\xd5\x68\x5c\xbf\xdd\x5b\xa6\x3f\xbf\xa3\x23\x19\x25\x79\x04\x3c\x31\x86\xc8\x55\xbc\x30\x3e\x51\x04\xdc\x15\x9b\x14\x19\xfa\x49\x13\x25\x47\x3e\x71\x25\xc7\xae\x49\x96\xb3\x72\x54\x84\x6b\xd3\x93\x66\xac\xf4\x0a\x40\x66\x3f\xa5\xc0\xb9\x2c\x59\x09\xf6\xd2\x7b\x4d\xa3\x2d\x4d\xe2\xb5\x69\xe5\xa3\xb3\xa5\xf0\x13\x4f\x52\xc1\x80\x52\xb2\xbb\x9f\x56\x35\xb9\x2d\xa5\xa4\xe8\x72\x95\x7c\x2f\xfd\x14\xb6\xac\xe9\x8e\xb6\x9d\xa1\x27\x24\x4e\x8c\xd5\xa3\x73\xae\x21\xca\x8f\xc6\xeb\x6c\xbe\xa3\xd5\x05\x3f\x68\x0c\x79\x33\x9b\x87\x29\x06\x34\x4a\x0a\x1f\x2a\x9f\xb2\x0f\x95\xe2\x58\x37\x4b\x93\xa5\xa1\x61\x0b\x0c\x09\x1f\xf1\xec\x44\x31\x48\x31\x03\xae\x04\x0a\x6d\x17\x85\x62\xb3\xc0\x8a\x20\x4a\x4f\x6e\x23\xf8\xec\x43\x02\x56\x13\x17\x36\xab\x32\xae\x15\xcb\x55\x25\xe7\xf3\xee\x8b\xc8\x4d\x0a\x8e\x6d\x7b\x74\x94\xb2\x20\xc3\xac\xb3\xba\xf6\x7b\xd0\xff\xa6\x82\x9f\x28\x29\x6c\x46\x38\xb3\x96\xef\x1e\xc0\xcb\x8f\x8f\xc7\x1e\x8f\x96\xd8\xac\x47\x6f\xe7\x10\x47\x3c\xec\x9f\xce\x1b\xc7\xd8\x33\xb4\x2f\xf0\x93\xd1\x5b\x0a\x66\xfc\x1d\x7a\x57\x2e\x6f\xaf\x1e\xa6\x28\x53\x37\xa9\xb9\x94\x49\x62\x63\xb7\xc2\x8a\xe2\xa5\x2f\x54\x9f\x68\x14\xd8\xa9\x36\xc7\x69\x85\xb5\x02\x83\x4c\x7c\x50\xfd\xba\xc7\xb0\x45\x04\x20\x75\xc5\x27\x12\x7e\xc8\xd4\x0a\x2f\x72\xc0\x3e\x49\xa9\x57\x52\x0e\x2c\xb4\xc3\x81\xcd\xca\xee\x44\x35\x09\xa5\x40\x3e\x9e\x90\x3b\x5a\x31\xf1\xbe\x09\x95\x3b\x1a\x8c\xe2\xf3\xaa\xb4\x32\x81\xab\x03\x7a\xf6\x24\x8d\x72\x2d\x5e\xe0\x24\xdc\x9d\xc5\x34\x32\x50\x00\x6c\x5f\x77\x5c\xa5\x51\x6c\xd6\x56\xb3\xa8\x3f\x28\x98\xed\x83\xb9\x7e\x36\x50\x13\xff\xec\xce\x1a\xec\xe2\xec\xa1\xf6\xe2\x6c\xcb\x27\xbf\xe8\x25\xf2\xb1\x8a\x5f\x47\xd6\x8e\x10\x74\x8b\xd7\x8d\x92\x1b\x3c\x1f\x3c\xa7\x40\x44\x76\x25\x4a\xcb\x1c\x6b\xc6\x1c\x87\x67\x2c\x95\x33\x41\x98\xc4\x30\x44\xe6\x8d\x7d\xf3\x91\x9a\x2c\xe2\xcb\x2f\xb7\x63\x4f\x77\xd8\x26\x83\x8b\xed\xbb\xca\x36\x36\xb3\xa8\x3b\x53\x36\x41\x5f\x8b\xe7\x82\x2d\x98\x8f\x1d\x1c\x29\x2f\x93\x35\x05\x8e\xdb\xd0\xe0\xa9\x0d\xe5\x71\x32\x34\x45\x35\x7b\xf6\xd1\xe6\x24\xc5\xb0\xea\x05\xa0\x31\x7d\x7a\xec\xe5\x3f\x79\xd2\x62\xb7\xbe\x4f\x6f\x0c\x43\x10\x98\x6a\x71\xfc\xf7\x45\xfe\xcb\xc1\x84\xf6\xc3\xb3\xae\x78\x1c\x8d\xba\x65\x14\x3b\x93\x2c\x4d\x6b\xe7\x63\x8d\x56\x8f\xe3\x74\xd5\xeb\x6a\x36\xe5\x36\x0d\x50\x0b\x93\x0c\x6c\x99\xc3\x09\x5f\x5a\x66\xe7\x03\xcf\x07\x3c\xef\x8a\x27\x65\xd2\x27\x9d\xfd\x96\x07\x86\x1f\x0f\x7c\x1b\xe0\xb8\xe7\x2d\xdb\x51\x6c\x5d\xd7\x0a\xdd\xb6\xef\xd1\x75\x4c\xb0\xc8\xb1\xb6\x9f\x57\x68\x33\x9b\x17\xa6\x1b\x47\xf9\x80\x01\x1d\xce\x79\x55\xad\x22\xfe\x7e\x5f\x49\x07\x49\x5e\xa4\xab\x28\x4f\x88\xb5\xbc\x07\x37\xbf\x45\xb1\x07\x76\xb1\x7a\x9d\xed\xc0\x42\x7b\x25\xea\xd9\xb4\xe5\xc1\x90\x30\x29\xe1\x63\x05\xb1\x78\xd5\xc4\x65\x37\x0a\xf9\xb9\x3a\x15\x72\x57\x55\x3f\xaf\xa4\x2e\x46\x59\xba\x92\x2e\x57\xd7\xbf\x28\x5c\xd5\xad\x40\xf9\x25\x6d\xa9\xde\x37\x5c\x56\x2d\x48\x41\xd8\x4a\x6e\x11\xb6\x1e\x4b\xc7\x7b\x08\x5e\xb8\xc7\xac\xdd\x01\xb9\x11\x27\xd8\x78\xd5\x48\xfe\xb0\x89\x3e\xd0\x5e\x89\xec\xea\x44\xcf\x9b\x15\x16\x65\x3c\x35\x89\xe0\xd8\xa3\x52\x22\x17\x70\xbe\x2f\x0f\x7b\x0f\xe2\xa1\xcd\xfa\xe4\xf4\xa4\xe0\x8e\x0a\x9b\xb9\x35\xb1\xfa\x65\xa3\x17\x9f\x54\x0b\xc0\x45\xba\x57\xe7\x78\x5e\xdd\x2b\xe2\x80\xb3\x60\x08\x38\x79\x23\xe7\x12\xf6\x67\xfa\x56\x2f\xa8\x89\x75\x5a\x61\x36\xd1\x31\x72\xfe\x4f\xd5\x4d\x23\x0f\xff\x63\x3c\x42\xe7\x9c\xe8\x79\x00\x5b\xa8\x51\x31\xf8\x89\x96\x5b\x44\xea\x57\x6a\x35\x77\xb7\x61\xf7\xd2\x78\x34\x68\xb5\xf6\xef\xf7\xf2\xa5\xca\x41\x47\x19\x04\xaf\x98\x5c\xca\x1a\x4e\xe6\xdd\xb7\x1a\x2f\x2a\x1c\xfc\x28\xb5\x55\x3c\xa7\xe0\x47\xa7\x68\x22\xf2\xb1\x52\x42\x1a\xc5\xd6\xe4\xb6\xe5\x95\x18\x6f\x02\x25\xcf\x27\xaa\x0a\x95\x5b\x2b\x0a\xb2\xf8\xc7\x56\x47\x79\x27\x01\x6f\xc7\x22\x5b\x0f\x05\x9b\x16\xd1\xd0\xce\xb4\xbe\x34\xe7\x08\x72\xbe\x74\xf2\xc1\xd8\x37\x2b\x90\xa7\x21\x8f\x3d\xa5\xf9\xcf\x33\x1d\x25\xc6\x98\x14\x69\x49\x16\x6d\x6a\xe7\x60\xa8\xa7\xf8\xe2\x49\x9b\x2d\xb1\x7d\x8a\x88\x78\x78\xa1\x00\x8d\xc2\x35\x1f\x2b\x3d\x7b\x53\x0c\x62\x5b\x44\x21\x88\xb6\x12\x99\x78\x6c\xe0\x85\xa6\xcd\xbb\x67\xa2\xa1\x40\xb9\x24\x1f\x53\xc1\xf6\x25\xb5\xfe\x33\xc7\x6e\x9a\x9e\xb3\x88\x7b\xf9\x91\x0e\x81\x75\x3e\x1e\x7b\xa3\xaf\x8b\x6e\xa3\x31\x65\x91\x72\xfc\x8d\x88\x13\x66\x87\x08\x2d\xb0\x33\x08\x29\x83\x2e\x01\x0f\xf5\x0f\x6a\x0b\x57\x95\xec\x59\x86\x83\x7c\x8d\x47\x11\xe3\x4f\xf9\x64\x5d\x29\x2d\xc7\x69\xdf\x24\x3b\x8a\x5d\x07\xfc\xb8\x7f\x46\xe1\x63\xe3\xb5\x21\xe1\xb2\x8f\xcc\x36\x3a\x5b\xc8\x7d\xc4\x36\x01\x7e\x57\x0c\x73\x15\x08\x14\x91\x0f\xf2\x9d\x9b\x7a\x95\xbf\x39\x01\x3c\x5b\xc9\x5f\xac\xbe\x61\xfb\xdd\x60\x02\x91\xe0\x7a\xa9\x6f\xe0\x09\x30\x1e\xbb\x49\xf3\x3c\x25\x03\xe1\x39\x5e\x29\x77\x75\x26\x77\x65\x37\xa6\xbf\x41\x6f\x42\x16\xcd\xa7\x95\xf9\x41\x5c\x0e\xf9\xb1\x38\x31\xaf\xf9\x79\x39\x6e\xaa\xca\x17\x69\x14\xdb\x42\xed\x7d\xa8\x97\x8b\x20\xd0\xa7\x15\x29\x2d\x29\x97\x4c\x58\x94\x59\x94\xf4\xf7\xd1\x70\x61\xba\xc8\xd8\xc7\x74\x28\x01\xb8\x05\xbc\x5a\x7d\xa4\xbe\x3f\xe1\x16\xed\xeb\xfe\x58\xb1\x71\x5b\x7b\x3b\x0a\x08\x7a\xb6\x56\x41\x38\xb0\xd0\x36\xf1\x52\xf5\xbf\x56\xcd\x7d\x69\x27\xf5\x1a\x76\x6c\x20\xeb\xe1\x45\x88\xe1\x18\x2e\xee\xff\x1c\x2b\xcb\x38\x34\x2f\x19\xdf\x5f\x03\x08\xcf\xcf\xb7\x97\xac\x8d\x95\xc2\xf2\x05\xd4\x1d\xf9\xa4\x41\x18\xe5\x60\x7b\x50\x26\xfd\x6a\xcd\xab\xde\x5f\x13\xc5\xb6\x21\x8f\x1b\x9a\xa5\xc8\x30\x4f\x5b\x54\x96\xe8\x77\x98\x13\x86\x2b\x46\x35\x00\x85\x0f\x99\x6f\xda\xfd\x62\x38\xb2\x05\x75\x40\xab\x3f\x76\xa6\x8b\xae\xe7\x88\x5b\xe5\x63\x6c\x4e\x52\x8d\xf2\xa5\xa4\x25\x93\x15\xc4\xad\x58\x94\xd5\x15\xab\x13\x1f\x3b\x35\xc9\x25\x53\xc6\x05\xb7\x12\xf1\xfe\x39\xf7\xe6\x13\x85\xb5\x48\x6c\xb1\x9a\x66\xcb\x58\xc5\x80\x5e\x86\xed\x20\x1f\xaf\x3b\xce\xfc\x8a\x4d\x4a\xcb\x48\x2c\x57\x60\xa9\x5e\xa3\x00\xfd\x14\xa0\xa0\xbb\xb6\xc7\xc3\xd5\xd8\x75\x58\xf0\xe9\xd5\x16\xc6\x92\x83\xf4\xe4\x5d\x5b\xc3\xb7\xf1\xff\x52\x1b\x29\xbc\xee\xc6\xce\x20\xf2\xb5\x45\x16\x79\x57\xbe\x32\xdb\x4a\x7c\x7a\xd3\xc7\xb4\x65\x37\x2f\x4c\xe2\xe0\x48\x18\xdd\x6f\xaa\x0e\xd7\x9b\x0d\x2e\x6c\x6d\xd3\x4d\x25\x2e\x9c\x9f\xe7\x11\x78\x1a\x2b\x0f\x9f\x3c\x94\xec\x69\xfa\xd1\xa8\xa5\x78\x24\xbc\xc2\xf3\x49\xa3\x45\xf8\x2b\xe5\xb0\x9b\xb6\x54\x0b\xed\x38\x3d\x19\x3e\x6e\xfc\x48\x37\x73\x8f\x42\x2f\x0f\xc8\x6e\xce\x60\x7c\xa2\x80\x71\x57\x03\x86\x32\xb3\x62\xd9\xf4\x52\xb8\x47\x7f\x35\x56\xa8\xdf\xbf\x52\x3b\x50\x98\x96\x59\x0e\x66\xdb\x17\xbc\x95\x9e\xfb\x91\x07\x8a\xb7\x50\xb7\x82\x5e\x58\x38\xd4\x1e\x5a\x93\x97\x8e\xf9\x21\x74\x6f\x45\x21\xda\xac\x2d\xb5\x73\x87\xdb\x4b\x71\xa9\x82\xf1\xb7\x03\x1f\x8c\xbf\xed\x54\x38\x46\x36\x7b\xcc\xd3\x38\x9e\x26\xd9\x0f\x67\x6b\x50\x0d\x36\xe9\x10\xd0\x73\x70\xc6\xc2\xb2\x36\xcf\xfc\x0a\xf6\x2f\xed\x1e\x8f\x51\xfc\xd8\x7a\x15\x23\xa2\x42\xbc\xa7\xa3\xba\xc9\x5b\x20\x6b\x8a\x88\x99\xa7\x5b\xde\x57\xc1\x4f\x68\x8a\x22\xb6\xd3\x0a\x3d\x78\x4e\x55\x0a\x4f\xe1\xd2\xf0\xa3\xf7\x55\xd9\xe2\x2d\xed\x8c\x60\x62\xf2\xaa\x44\x3d\xe1\x0e\x6e\x00\x0d\x9b\x3b\x63\xef\x42\x08\x2b\x06\x64\x73\x40\xff\xbb\x18\xbe\xfa\x0d\x07\x73\xa9\xae\x59\x60\x33\x74\x59\x08\xc1\xe1\xea\x4f\x97\xb8\xf0\xef\x12\x71\x4f\x18\x16\x98\xdf\x6e\x99\x73\x7c\xa6\x5f\x7c\xba\xa3\x0a\xe9\xdb\x2a\x5b\x09\xa3\xa4\xca\xbf\x8e\x4e\x2b\x50\xaa\x60\x5c\x5d\xf1\xaa\xfa\xe9\x46\xd9\x7d\x1f\xa9\xe5\xe5\xa8\x4a\x4f\x7a\x08\x33\xb9\x9c\x4b\xc1\x83\x94\x76\x1f\x06\x74\x4f\xd2\x6c\x35\x4d\x7b\x53\xad\xdf\x10\x01\x09\xf8\x4d\x41\xbe\xf6\xae\x66\x5b\xef\xea\xec\xdc\x45\x5e\x7e\xb9\x1a\xe8\x23\x8a\x58\x45\x76\xb8\xe5\x54\x51\x4f\x51\x25\x10\xdc\xc3\x5b\xc1\xce\xf6\xef\x0b\xed\xd1\xc0\x64\x43\x13\xda\x92\xe0\x01\x02\x5b\xc7\xc3\x64\x35\x0f\x0c\xa6\xab\x1a\xb7\x3e\x59\xa4\x19\x99\x78\x4f\x15\x5b\x20\x9c\xd8\x9c\xa0\x9d\xd1\xcc\x41\x47\xf8\x94\x16\x8f\xfe\xc1\x78\x42\xd3\xd5\x27\x74\x7f\xa5\x6d\x2f\x86\x29\x72\xf9\x87\xa1\xfa\x1b\x84\x35\xd3\x30\x2c\x21\xac\x29\xde\xc4\xd5\x40\x13\xd3\xe2\x9d\x7c\x21\xea\x93\x27\x66\x68\x73\xb3\x0c\xb4\x92\xa8\x41\xf8\xee\x43\xfd\x67\xf6\xef\x6f\xc7\xd6\x2c\x33\x67\xd6\x79\x43\xfa\x25\x13\x8d\x1e\xc1\x4b\x3c\x3d\xe1\x21\x65\xf3\x62\x8a\x14\x1f\x9c\x40\xc2\x81\x85\x49\xa3\x60\xdc\xdd\x9d\xa6\xad\xdc\xd7\xa6\x44\x02\x97\x95\xbf\xf8\x44\xb1\x37\x96\xa2\xcc\xce\x78\x4c\xfd\x96\x06\x6f\x5e\x54\x81\xd2\x9f\x29\x11\x30\x06\x0e\x63\x56\x5f\x09\x3c\xf6\x28\x8c\xcb\x2e\xa2\x3f\xfc\x1b\xfb\x9b\xf1\x89\x0b\xd9\xc3\x34\x7e\x91\x77\x58\x0c\x39\xde\x61\xf9\x24\xf0\xb5\xb0\xbe\xc9\xe0\x28\x37\x61\x07\x86\xbc\xf3\xc6\x84\x52\xf6\x09\x17\x15\x0c\xac\x87\xf6\x32\x35\x81\x5e\x93\xb3\x15\xaa\x1e\x1e\x5a\x1f\xbb\xd7\x15\xea\x35\x0a\xf7\xd2\x2a\x84\x55\x0c\x4d\x19\xb4\x3b\x9e\x20\x0f\x1a\x2c\x55\xfc\x80\xc4\x21\x42\x81\x0b\x3e\x20\x70\x34\xee\xe1\x0d\x15\xc4\xde\xd2\x18\xdc\x32\xeb\xa3\xa4\x2c\x43\xcd\x0b\x0b\x5c\x70\xc9\x6d\x9a\xf5\x12\xb0\xd0\x1d\x5e\xf8\x47\xea\x55\xfc\xa8\xa6\x46\xb6\x7f\x7f\x3b\x4c\xb3\xac\x1c\xb9\x4e\xbf\xd3\x5d\x74\xa1\xf1\x66\x0d\xbd\x5f\xc5\x89\xa6\xdf\xcf\x6c\x9e\xfb\xfa\x38\xb6\xa0\x13\x6a\x3b\x3a\xd1\x14\x08\x77\x6d\x68\xca\x1c\x8e\xaa\xc8\x64\xae\x29\xfb\xd9\x93\x74\x5b\x28\x6d\x3e\xa8\x45\x10\x24\xe1\x91\x9a\x5e\x5e\x18\xd0\x4a\xc5\x32\x42\xb1\x76\xde\x6a\x4a\x2b\x63\x9b\xf4\x5c\x1d\x19\x4b\xcc\xae\x75\x5f\x98\xda\xd5\xf1\xf1\xde\xd7\x4b\x93\x15\x36\xcb\x09\x08\x00\x88\x07\x97\x26\xea\x38\xb8\x3b\x84\x03\xe0\x3f\x42\x0b\x5c\x62\xf1\x27\x14\xe4\x22\x8e\x11\xd4\x22\x44\xb8\xa5\x14\xea\xcf\xe9\x2b\x67\x9f\x7b\xfe\xab\xe6\xa5\x64\xd5\x64\xbd\x2c\xed\x32\xcf\x58\x6f\xcf\x7c\xac\x1c\xf1\xe2\x34\x59\xa3\xbc\x10\x8f\x16\x51\x2b\x18\xeb\x17\x94\xa2\x0d\xeb\x3a\x88\x85\xbb\xa7\x56\xe7\xa3\xcc\x9a\xde\x23\x4a\x36\xe2\x01\xed\x36\xc8\x04\x36\xb5\xc7\xf2\x0d\xc5\xd4\xd9\x54\x12\x22\xb7\xe8\x77\xb0\x3c\xb3\x16\xa7\x54\x1c\xbd\x7e\xf1\x7b\x81\x92\x0f\xfa\x41\x53\xa3\x68\x94\xd9\xc2\x1c\x55\xaa\x8b\x67\x94\xea\x62\x23\x25\x34\x2f\xcc\xb2\x73\x0b\x41\x46\xff\xb1\xa6\xd4\x7e\x5c\xc3\xc7\x1f\xfe\x32\x95\xff\xc2\x74\x68\x69\xab\x93\x31\x48\xaf\x5e\x44\x2c\xfd\x98\xbb\x58\x13\xe5\x22\x0b\xd1\x35\x25\x62\xb3\xa1\xf0\x5b\x1b\x4d\xe2\xe1\xe0\xbe\xf4\x19\x5a\xf6\x34\xeb\xad\x29\x02\xc1\xb7\x82\x47\xa2\xea\xe6\x97\xfe\xc3\x76\xf7\xdf\xaa\x9e\x30\x36\xec\xdb\xc8\x4f\x39\x91\xa7\x0d\x18\x0b\xdb\x86\x72\x5a\xff\xbe\x32\x95\x7b\xb2\xd3\xfa\xca\x17\x19\xbc\xfc\x63\xdc\x11\x8a\xaa\xbb\x21\xb7\xec\x02\xa0\x83\xce\x9e\xf4\xc1\x78\xd2\x28\x5d\xf5\x5c\xab\x25\x0d\x17\x32\xd3\xf1\x06\x02\xbb\x09\x1a\x82\xe1\x30\xbd\xde\xfa\xfc\x6f\xba\xeb\xc0\x4b\xa0\x7d\xe1\xab\xff\x7f\xf4\x92\x91\xf7\xfc\x10\xd9\x28\xf6\xe5\x33\x18\xfd\x62\x34\xa0\xe4\x15\x66\x3a\xaa\x81\xfc\x16\x4a\x91\xce\xbe\x73\x51\x44\x05\xb8\x1b\x46\x6b\x75\xf9\xc2\xba\xdb\xc5\xfb\x9f\x02\x92\x0d\x39\xd0\xee\x8e\x12\xd4\x5d\x0f\xbc\x72\xf7\xa5\xf1\xd4\xa1\xaf\x7e\x89\x15\x94\x10\xb9\x3b\xb3\xe6\xc5\x59\x69\x2c\xde\x51\xd2\x84\x85\x19\xd9\xbc\x60\x25\x0f\xa6\x4b\xd3\xb0\x14\x80\x80\x96\x4c\x82\xd7\xd0\x24\x0f\xd3\x00\x8e\x80\xe2\xcc\xd5\xc0\x9b\x9f\x7d\xa0\xc5\x87\x1b\xcd\xac\xf3\xa2\x5a\x7b\x69\xbd\x66\xda\x1c\x5d\xb1\x50\xe8\x1a\x1a\xc4\x79\x6c\x57\x5b\x3e\xe6\xbb\xa4\x1c\x82\x2f\xd5\x96\x9a\xc5\xd9\x43\x24\x18\xa1\xfc\xff\x31\xc0\xfe\x89\x42\x51\xfd\x93\x40\x5b\xbf\x84\xcb\x76\x4d\x1b\xf4\x9e\xd1\xae\xc5\x67\x26\xc2\x39\x5b\x66\x7b\x27\xb9\x91\x3a\xfd\x6b\x29\x29\x23\xcd\x93\x9c\x24\x57\x38\x92\x24\xf4\xeb\x44\x50\xd7\x6f\xca\xa3\x28\x9c\xf6\x15\xbc\x3b\xf8\x0d\x40\x66\xce\xd3\xaa\x8d\xca\x36\x98\x1d\x48\x54\xee\x06\x5e\x53\x54\x81\xc5\x7b\xd3\xbe\xfc\xbc\x89\xaa\x2e\x9f\x8c\x3d\xb5\x0e\x0b\x12\x1f\x37\xe4\xcb\x0b\x6d\x93\xac\x15\x03\xaa\xfc\x3a\x6c\xd1\x29\xed\x95\xf2\x31\x69\x00\xa1\xde\xf5\xdd\x26\x7f\xe2\xae\x09\x0b\x9b\x45\x5c\x42\x62\x7f\x16\x25\x54\xb4\x81\x15\x69\x47\xc9\xcb\x82\x51\x8a\xdd\x41\x17\x5f\x5a\xeb\x9f\x52\x86\x8b\x99\xed\x13\xcb\x2a\x4d\xa6\x54\x84\x86\x02\xb2\x54\x8b\xe8\xed\xca\x3c\x90\x88\xc3\x64\x05\x63\xe4\x5d\x1a\x47\x58\x50\x39\xd6\x66\x51\x36\xb3\x09\x82\x60\x47\x6f\xf7\x54\xf7\xc6\x55\xdc\xac\xb8\x24\x9e\xd1\x96\x81\xa7\x82\xfc\xa1\x56\xca\x52\xa1\x52\x38\x88\x46\x5c\x16\xe6\x97\xac\x5a\x6e\x77\x94\xb1\xe0\x1d\x9a\x73\x32\x10\x3c\x53\x76\xd5\xe4\x85\x5d\x35\x85\xcd\x68\xfb\x74\xdb\x97\x57\xc8\x44\xd6\x8a\xf7\x36\xd5\x51\x01\xe3\x39\x6d\x13\xb6\xb4\x14\xc5\x91\x29\x2c\x1e\x29\x0f\xbe\xb1\x03\x63\xbc\xfa\x5d\x0d\xeb\xa8\x93\x38\x09\x76\x34\xb4\xab\x03\x53\x10\xff\x0b\x5f\x30\x03\x09\x50\xac\x86\xc7\x15\x0b\xf4\x13\xfa\x66\x8c\x85\xd7\x54\x1d\x39\x8e\xf2\xc2\x26\x6c\x06\xe0\xdc\x60\xf5\xda\xa4\xa2\x4c\x13\xdb\xfc\x69\xfa\x47\xfc\xc0\xff\x8a\x46\x8c\x43\x77\x38\x48\x43\x6b\x5d\x11\x62\xfe\x02\x8b\x27\xfb\x95\x8f\x95\x50\xcd\x6e\xd8\x33\x0a\x75\xc8\x2f\xd1\xff\xd1\x2e\x82\xfc\x61\xbd\xfd\xb6\xd6\x0f\x38\x3e\xae\xd2\x54\x6c\xd3\xbf\x35\x41\x35\x0e\x5c\x1d\xf9\x89\x67\xb1\x8e\x3b\x7f\x63\x27\x0c\x8e\xb8\x58\xbc\x42\x1e\x96\x10\x2f\x99\x6c\xe8\x55\x6f\x31\xb4\xee\x62\xc1\x46\x6a\xfa\x21\x2e\x15\xb7\x77\x35\x78\xd4\xad\x2b\x47\xa7\xe8\x56\x51\xf3\xf8\x23\x2a\x38\xa0\x36\xfc\x0e\x5d\x36\x5a\x1b\x1f\x36\xc7\xa0\x45\x51\xb2\x40\x14\x0a\xa3\x80\xff\xf3\x71\xed\x5a\x3f\xf7\x39\x42\x0b\x4b\x3c\x3a\x01\xa4\x53\x02\x1f\xa7\xd5\xeb\xb3\x47\x8b\xcc\x4c\xf9\x0a\xd4\xa6\x1a\xf8\x27\x09\x11\x2c\xf2\x2f\x9e\x8d\xbd\x1c\x25\x3d\x26\x3d\xe3\x39\x40\xa5\x55\xf1\xd6\xa5\x53\xba\xa7\xf3\xb4\x62\x09\xe7\x39\x49\x0b\x56\x3b\x33\x06\x26\x4b\xe1\x22\x32\xde\xbd\xee\x21\x8a\x77\x91\x38\xf1\x3f\x74\x1a\x52\x10\x9b\xf4\xb2\x34\xcc\xa2\xc4\x4e\x29\xa0\xfa\xdb\xca\xc2\x08\x8a\x6c\x9c\x44\x4e\x60\x07\xc3\x68\x24\xfc\x3e\xc7\x3c\x73\xa6\x39\xbf\x75\x69\xfc\x98\x82\xc0\xe2\xdb\x19\x57\xa8\x80\xa5\xec\xee\xc9\xb6\x35\x2e\x1f\x34\xf9\xb2\xa3\xe4\x60\x91\x86\x63\x9c\x30\x6b\x7d\x7a\x09\xa5\xfd\xed\xcb\xb5\x45\xec\x05\x76\xa6\x96\x50\x54\xc0\xa6\x74\x21\x7c\x52\x9b\xf8\x55\x7a\x95\x9b\x84\x24\x58\xe9\xc6\x94\x5d\xab\xf3\x6e\xd5\x16\x54\x26\x09\xd3\x70\x99\x5e\xbc\xa8\x99\x56\x03\x13\x3d\x02\x26\xa2\x61\x3a\xff\x4d\x2d\x36\x78\xf9\xe5\xf6\x6a\x14\x43\x9e\x49\x88\xa4\x1e\xd0\x75\xde\xf1\x0e\x8a\xac\x0c\x79\x25\xd3\x0a\x87\x58\x43\x98\x3b\x2d\x7a\x3d\x2e\x5d\x2f\xbb\x66\x5a\x53\x25\xe8\x06\x50\xb6\xdf\x4d\xb1\xa3\x78\x65\xe2\xe9\xc8\x88\x76\x65\xfa\xd8\x38\xd3\x4c\x21\x73\x28\x62\xc7\xd8\x03\x15\x4c\x6f\xc5\x56\x3b\x11\xb5\x4e\xaa\xdb\x15\xd0\x0b\x2d\x3f\x12\xf3\xd0\x9a\x21\xd8\x98\x6a\x9d\x90\x00\xe8\x71\x05\x5b\xfd\xbb\x53\x7e\xe8\x3e\x41\x1b\xa6\xe0\x0b\x55\xca\xbe\x67\xbd\x49\x90\x23\x0d\xa3\x34\x4e\xfb\xa4\x44\x3c\x3f\xef\xb4\xce\x5b\x4e\x82\xf0\xf5\x26\xa6\x7e\x9c\xae\x5a\x14\xab\xab\xef\x17\xfd\x1b\x05\x73\xbf\xa9\xd4\x27\x3f\xa8\xbd\xc0\xfd\xfb\xdb\xc3\x34\x2f\xa6\x29\x5e\x97\xe6\xb3\x53\xb4\xfa\x09\xab\xb6\x70\xad\x23\x50\x9b\xf8\x96\xeb\xeb\xa6\x65\x11\x2b\x5e\x28\xcb\xf7\xd1\xaf\x8a\x94\x9f\xbc\x92\xea\xff\x38\x26\xdc\xbe\x1c\xb0\x1a\xc8\x63\xbe\x63\xfe\xa2\xb2\x6d\xde\xd0\xc3\x7c\x43\x49\xff\xe4\xa3\x88\xa1\x7c\xaa\xc7\x7b\x48\xc8\x65\xf4\xbb\x18\xae\x9b\x8a\x50\xb5\x92\xc6\x65\x52\x98\x2c\xca\x87\x2d\x8f\x53\xb8\x1b\x28\x10\x5c\xbd\x4f\x38\x77\xb8\x5d\xbe\x98\xbf\x68\x5e\x9c\xd2\x66\xd3\x5b\x13\x99\x99\x7a\xad\x3f\x55\x11\x64\x19\x2f\xb5\x6a\x56\x50\x7c\x5c\xaf\xa3\xcc\xb5\xbb\x78\xf7\xa2\x59\x8f\x89\xc8\xd8\x5e\x3e\x51\xba\x65\xa3\x34\x2f\x6c\x36\xe5\x19\x1b\xb8\x26\xa5\xb0\xf1\x05\xbe\xd8\x07\x2a\xce\x26\xac\x20\x37\x27\x44\x9e\x9b\xf2\x21\x3e\x71\x64\x40\xbb\x2a\xcc\x2d\xc7\x12\xaa\xae\x83\x4f\x74\x09\x94\x0c\x95\xf3\xc7\xbd\xa2\xc6\xc7\xb4\x76\x38\x3c\xe6\xa2\x2c\xc7\xdf\x57\xed\x8c\x7d\x58\x30\x19\xe2\x83\x05\x46\x50\x9b\x13\x5a\xbb\x2d\xa7\xe8\xf5\x43\x12\xa6\xe4\xaa\x3d\x92\x03\x87\x10\x72\xfe\x89\xd7\xc6\xca\x49\xe0\x99\x75\x8f\x4f\x1d\xda\x5e\x14\x7a\x3a\x0a\x12\x43\xa0\x8c\xf9\xb8\xd6\x96\x5f\x9c\x5d\x6c\x0f\x52\x5e\xd9\x38\x62\x0c\x94\xc6\xfa\x1f\xaa\x4d\xb0\xb0\xbd\x1e\xaa\x58\x6c\x67\x4b\x85\x0e\xb1\xb6\x6d\xe8\xab\xa6\x09\x57\xbd\xb0\xf9\x43\x0d\x99\x8f\x1b\xc8\x7b\x07\xdb\x26\x0b\x07\x51\x61\xc3\x42\x76\x02\x94\x14\x78\xf4\xf1\x49\x2d\xd7\x5b\x58\x68\x8f\x0c\xd8\x31\xf4\xce\x11\x2b\xfc\xfe\x58\x19\x4b\xfe\xfe\xa4\xdf\x72\x31\xf8\x45\x5a\xe5\x58\x9e\x9e\xee\x03\x00\x9b\xbd\x48\xbd\x11\x2c\xbe\x17\x78\x84\xc5\x75\x2c\x0a\x78\xe8\x2d\x50\x8d\xb1\xc9\xc0\xe6\x4d\xaa\xd4\xb4\xd7\xe3\x65\xde\x47\x05\x42\xe1\x0a\xbe\xc6\x41\x02\x98\xa6\xe8\x2e\xdd\xa6\x72\x84\xf8\x03\x50\x71\x41\xc1\x4b\xa4\xe4\x74\x19\x09\x36\x5e\xe3\x59\xd2\x15\x45\x78\xfc\xdf\xb2\xe3\x95\xa0\x50\xaa\x49\x0f\x3c\xf4\x1f\x04\x4a\x40\xf0\x3c\x28\x33\x0e\x38\x54\x2d\x83\xfc\x65\x08\x2b\xa5\xef\xe5\x51\xa8\xbb\xa9\x2c\x8b\x16\x5b\xab\x83\xf7\x81\xcf\x7f\x12\x78\xed\xe4\x4c\x74\x66\xb9\x57\xa6\x80\xaf\x97\xdc\x16\x57\xe6\xb6\x87\xea\xaf\x4b\x5a\x5d\x22\xf4\xb7\xd7\x55\x17\x71\x8b\xa6\x95\x28\xd1\x7a\x9c\xe2\x36\x42\x2c\x44\xd5\xfb\x90\x4b\x00\x44\xdf\xee\x28\x63\xa4\xc4\x70\xe8\x88\x14\xf8\x3b\xca\x95\xe1\x3b\xaa\x66\x37\x32\x05\x99\x82\x2e\xce\x3a\x0e\x6e\xf5\x21\x3e\x56\x88\xea\x6a\xfd\x19\xa5\x09\x88\x90\xc0\xa7\x43\x42\x9d\x8f\x95\x5e\xcf\xd0\xac\xa5\xd9\x1e\x7a\x49\xce\xbe\xa9\x7a\xc8\x62\xdf\xe4\xbb\xca\xdc\x29\x15\x7a\xb8\x66\x3f\x6c\x29\x41\xa7\x5d\x9d\x26\xe3\xfb\x62\xb0\x96\xdb\x6a\xcd\xad\xc6\x09\x87\xa2\x1d\x25\xa3\xb5\x6b\x5d\xf9\x57\x99\xe1\xc8\x44\xfd\x84\x0c\x28\xf0\xb2\x4f\xd1\xd5\x63\xdc\x1e\x57\xd2\x59\xcc\x70\xc4\xc6\xc8\x65\x04\xfe\x44\xe0\x91\x86\x8f\xae\x57\x13\x85\x3f\x5d\x6b\x63\x49\xda\x90\xa7\x65\x31\x00\x7f\xce\xf1\x6c\xdf\xa3\xfb\xe7\x63\xc5\x7f\xe9\x45\x66\x24\xe8\x1d\xd1\xf2\xf1\xa1\xd0\x89\x40\x53\x0c\xf2\x92\x7c\x30\xa7\x7c\x32\x7f\x0f\x3b\x80\x68\x1c\x79\x26\x77\xbd\x3f\x37\x77\xb8\x3d\x32\x71\x4a\x97\xc4\x48\x56\xed\xd7\xf7\x86\x02\x68\x8e\xd2\x78\x8d\x7c\x63\x75\xfb\xfd\xbc\xe2\xe5\x9f\xaf\x6d\xa0\x07\x16\xda\x3d\x9b\xac\x30\x24\x4b\x80\x7e\x5a\x3e\xa9\x46\x03\x5c\x58\x68\x17\x36\x1b\xb2\xd7\x00\x87\x6f\x28\xb1\x5c\x50\xd8\xf6\x0b\x2a\x71\x89\xd3\x34\x87\xc3\x9f\xc0\x13\xaa\x6b\x12\x69\x73\xfa\x02\xfe\x07\xbc\x4d\x2f\x74\xee\xea\x1d\xa6\x6f\x67\x94\x1a\x0a\x22\x60\xc0\xdd\xce\xea\x08\x18\x99\x04\xaf\x82\x9a\xe2\x74\x6a\xa2\x48\x95\x16\x21\x82\x21\xe4\x83\x68\xb8\xf1\xb1\x77\x31\x8f\x56\x6c\xb6\x94\xa5\xec\x62\xae\x89\xa9\x7c\xec\xa5\xeb\xcb\x61\x19\x47\x49\x4b\xb9\xba\x40\x16\x9d\x8f\xc7\x3b\x1c\x30\x6d\xa2\x41\xef\x37\x14\x32\xed\x86\x52\x87\x29\xb2\x74\xd5\xc6\xd8\x1b\x04\xde\xee\x7b\xdd\x17\x95\x07\xd5\xc8\xae\x65\x36\x4e\x93\x7e\x09\x98\x07\xae\xef\xf6\xd8\x5f\xb7\x77\x92\xeb\x9a\x70\x39\x2f\xd2\x11\xf5\x99\x85\xbf\xe9\xc1\xa6\xdf\x56\xf6\x0c\x85\x7d\xc2\xe5\xb3\xf6\x17\xa9\xc3\xe0\xb2\xe9\xea\xa2\x04\x5c\xa5\xb8\x7e\x5b\xe3\xd6\x57\xbe\xe8\x1a\xdf\xd5\xb4\x93\x47\x50\xfd\x9c\x53\xb7\x3a\x22\x62\xdc\xbb\x28\xe7\x42\xe0\xf5\x24\xa1\x0f\x44\xe8\x55\x59\x78\x31\x90\x81\xf2\xf5\xe1\x33\x1d\x15\x49\x6f\x2a\xa9\xd3\xea\xdd\xc2\x85\xcb\xbb\xa8\xa0\x15\xe2\x45\xc1\x3d\x4e\x33\x7a\x95\x51\xcf\x68\xfc\xdc\x1c\x2b\x01\xb0\x9b\xb5\x40\x9e\x64\x02\xc8\x62\x83\xa1\xfd\x4e\x2c\xff\x25\x77\xac\x28\x8b\xa6\xf8\x77\xb0\x8a\x20\xc4\xbf\x8e\x1d\x91\x4f\x54\x64\xb2\x14\xd9\xb8\xb7\xa7\xe5\x1c\x71\xef\x2b\x21\xb6\x16\x98\x4d\xd8\x85\xef\x6a\x4c\x14\xc4\x16\x18\x92\x42\x9b\x38\xe2\xab\xbf\x0e\xfe\xce\x43\x09\xda\x49\xcf\xc0\x2f\xaf\xe5\x2b\x54\x30\xa6\x93\x9d\xa4\xe9\x96\x7f\x69\xee\xc0\x17\x0e\x1c\x3e\x44\xb6\x3b\x82\x22\x56\x4a\xb9\x6c\x25\xe4\xac\xd9\x7c\x13\xf6\x38\xb6\x87\xed\xcb\x2a\x3d\xba\x40\x35\x0a\xf1\x40\x7f\x58\xf1\x26\x4f\xcb\x2c\x94\xb4\x50\xd0\x8c\x8a\xaf\x76\xd3\x2d\x0b\xdd\x2c\x4d\x42\xa6\x01\x63\x4f\x65\x1e\xa3\x0b\x09\xdc\x9e\x74\x5a\x2b\xc7\x0f\xd2\x58\xa4\x12\xc4\x6f\xb7\xe5\x94\xb9\x7e\x52\x6b\xe5\x1c\x99\x6d\x97\x49\x92\x16\x51\xc8\x70\x28\xa1\x7d\x78\x18\xda\xeb\x4d\x02\x8e\xa3\x2c\x1d\x65\x91\x25\x49\xbe\xd6\x0e\x29\x5d\x3e\xae\x95\xe6\x0f\x2c\x68\x0b\x9b\x87\xba\x32\x34\xf0\x92\xf2\xb2\xdf\xb7\xb9\x44\x92\x78\x1c\xbb\x3b\xea\xd9\xec\xae\x09\x66\x1f\x99\x85\xfa\x97\xed\xf1\x4f\x71\xcd\x1d\xd1\x9f\x14\xe0\x9b\xf4\x90\x46\xa5\xfc\x10\x37\xbf\xb1\x88\x4b\x27\xdc\x8f\xef\x34\x5b\xb6\xc3\x69\xfd\x8f\xf8\x72\x00\x74\x7e\xae\x82\x36\xbc\x2d\xfe\xef\x4d\x79\xf4\xc0\x64\xbd\x55\xc3\xa2\x30\xd8\x63\xce\x2a\x55\xb6\x3a\x2c\xf3\xc8\xec\xc1\xf6\x52\x96\xbe\x6a\x93\x29\x65\xc8\xce\x38\x20\xef\x12\x2d\xae\x95\xdf\x69\x6a\x67\x67\x36\x5c\x0b\x63\x84\x51\x4d\xa2\xad\xcf\xba\x3a\x79\x66\x92\x3e\x51\xec\x5a\xbe\x03\xb0\xaf\xe3\x11\xda\xfb\xd6\x9f\x51\x8c\x99\xd0\x46\xa3\x42\xfb\xff\x4e\x61\xf2\xf0\xc9\xfa\xf3\x91\xcb\x08\xfb\x76\x75\x10\xe5\x14\x6c\xd0\x13\xe7\x65\x36\x98\x58\x73\x9b\xe6\x6e\x6c\x4d\xcf\x71\x05\x1a\x8d\x34\x5d\x33\x39\xb3\xa6\xb0\xd3\x4a\xb8\xe0\x86\xaa\xdd\xe3\xcd\xe8\x7d\x17\x85\xa0\x93\xb5\xd0\x60\x7e\xbe\x3d\xac\x12\xce\x0c\xec\xa3\x96\xcf\x3a\xb7\x7c\x71\xf7\x7f\xac\x5f\x2d\xfc\x7b\xa2\x38\x2d\x74\xff\x60\x17\xed\x06\x7c\xdc\x91\xd4\x37\x8c\x6d\xb6\xdc\x52\xda\x95\x27\x15\x3d\xe7\xa4\x73\xc4\xe8\xa7\xc5\xa3\x3e\x8a\xfb\x9f\x95\x82\xc4\x3f\xfe\x6c\x47\xb5\xbc\x6e\x20\x78\xd0\xbc\x7b\x7c\xd5\x27\x1c\xdf\x3a\xd5\xd5\x45\xbf\xce\xfb\x90\x70\x6a\xdd\xa7\xc0\x8f\x23\xb7\x12\x83\xaa\x9d\x81\xdc\x4b\x73\x87\xdb\x59\xc9\xee\x19\x22\x68\xef\x8b\x94\x17\x1b\xb2\xc3\x83\xed\xc2\xe4\x85\x95\x42\xb6\x3c\x3e\x45\xfe\x60\x20\x0d\x56\xa1\x63\x4a\x35\x65\x49\x8c\xda\x5d\xcc\x8f\x82\x8f\x48\xea\xa9\x35\x74\xd9\x26\x7b\x7d\x6f\x61\x8a\xe0\x70\x48\xc4\x8e\x8f\x55\x9f\xf6\x5d\x05\xfa\xfb\x9d\xb1\x27\x05\xdc\x1e\xeb\x1e\x7a\xe0\x37\xea\x8b\x75\x5d\xc8\xf9\x79\xd8\xc2\xd3\xfa\x66\x98\x4b\xcb\x70\xf1\xc0\xb3\xaf\x2f\x29\x8b\x9b\x30\x1a\x72\x4f\x4c\xa8\xa6\x2d\xe7\x32\xf6\x81\x22\x5b\x66\x76\x54\x66\xe1\xc0\x40\x98\x65\x61\x12\x73\x28\xae\xaa\x4d\x6b\x59\xcf\x9a\x9e\xf2\x0b\x38\xa5\xf8\x0e\xa7\x6a\xeb\xf3\xfc\x7c\x3b\x1a\x8e\xb2\x74\x25\xca\x25\xcc\xc6\xb6\x71\x5a\x71\x40\x4f\x37\xc9\xce\x0d\xd3\x6e\x14\x23\x38\x73\xc4\x00\x4f\x12\x70\x09\x67\x5c\xe6\x03\x02\x28\xb0\xa4\x37\xdd\x2d\xdb\x39\x76\xfc\xdc\xb8\x55\x9b\x43\x2f\xb4\x63\xdb\x8f\xf2\xb8\x9a\xc8\xbe\x45\xf0\xaf\x68\x44\x8b\x04\x8a\xf6\x88\xf6\x95\xee\x53\x8a\x85\x3a\x2c\xf3\x28\xdc\x43\xa5\x00\x4c\x89\x13\xba\x96\xc3\x52\x76\xf2\xaa\x5b\xfe\xaf\x26\xbb\xe1\xad\x2f\xcd\x39\x4c\xc5\xce\x8d\x71\xff\xfe\xf6\xd0\x44\xe4\x8f\xb8\x43\xa9\xee\x8c\x52\xaa\x3b\xa3\x46\xc0\x20\x8d\xed\x94\xaa\x98\x69\xf6\x37\xd6\x29\x71\x63\x90\xc0\x7d\x94\x45\x49\x18\x8d\x62\x9b\x4f\xf9\xd4\x8a\xe7\x8d\x40\x82\x5a\xce\xc8\xe3\x8a\xf2\xec\xc9\x07\xe9\x6a\x96\xa6\xc3\x9c\x26\x0e\x20\x0e\xa7\x29\x8a\xe5\xe3\x5a\x74\x70\xf8\xcb\x3a\x6f\x74\xa5\x35\x46\xa4\x09\x6c\x67\xe7\xdb\xaa\x16\x83\x51\x1a\x25\x5c\xee\x3b\xe8\x74\x8f\x68\xb8\xf2\x49\x0d\x1d\x7c\x60\xa1\x3d\x14\xe9\x42\xd1\xe7\x6d\x39\x1d\xfa\xf3\x81\x36\x4b\x5c\x35\x98\x5d\x02\xbf\x68\x39\x19\xa9\x33\x4d\x51\x47\x66\x0b\x32\xda\x93\x57\x22\x46\xa9\x7e\xc8\x7d\xd2\xa8\xf2\x9a\x59\x08\x0f\x7b\xfc\x95\xf0\xac\x5a\x8a\x80\xd5\xa0\x89\x1f\x47\x09\x67\x9d\x78\x93\xa0\x36\xf2\xb1\xb7\x18\x48\xb3\x62\x30\x33\x61\xba\xe6\xe1\x86\x57\xd5\x72\x0d\xac\x88\x88\x97\x57\x8b\x35\x56\xba\x6b\x0f\xc5\xa9\xbf\x52\xbe\x92\x6a\x96\xee\x05\xc5\x48\xb9\xa0\x40\xcd\xc5\xc0\xa6\x19\x6b\x4b\x38\x14\x83\x6b\xa1\x3d\xb2\xee\x37\xc7\xdd\x9d\x06\x0f\xa7\x91\xc9\x4c\x2f\x3d\x3a\xa5\x74\x34\x40\x83\x47\xdf\x1d\xfa\x3c\x22\x1c\xa5\x2a\xa2\x69\x92\xc6\x69\xbf\xe4\x06\xbf\x96\xcd\x17\x3d\xfd\x67\x54\x83\xbf\xc8\x4c\x58\x40\xfe\x65\xfb\x6a\xd0\x3a\xb0\xb0\x7d\x55\x93\x24\x4d\x16\x03\x37\xe8\x9d\xf8\x75\x07\xf4\x98\x7b\xde\x85\x35\xe1\x00\x89\x36\xba\x30\x28\x17\x23\xe1\x7c\xb4\xa3\x34\x0f\x91\x68\x23\x01\x64\x05\x7e\x29\xe4\x34\xc5\x51\x26\x8a\x57\x0d\x0b\xf2\x3a\x5b\xfc\x6a\xb8\xb8\x32\x93\x6b\x00\x5e\x6e\x04\xfc\x97\x49\x24\x31\x27\x23\x7d\x31\xc3\x04\xf6\xfb\xbc\x46\xc9\x52\xb7\xa8\x1b\xdb\x69\x35\xe5\xb1\x55\xa3\x32\x00\xfb\x4e\xf0\x03\x18\xa6\x81\x34\xeb\x4d\x05\x12\x89\x12\x13\x16\xd1\x0a\x97\xa5\x5d\xd2\x74\x4a\x25\x4d\xa7\xd4\x43\x8e\xd3\x6e\x77\x4d\x6a\x8a\x0e\xb6\xe3\x21\x3c\x4d\x34\x8b\x91\xed\x45\xa6\xc8\xa2\x50\xb5\x8d\xc1\x0a\xe1\xe3\xda\xc2\x71\x70\xf1\x60\x3b\x8f\x92\xbe\x43\xee\xa0\x8a\x7d\x51\xdb\xfa\x69\x75\xa9\xa3\x69\x32\xdd\x52\x6e\x57\x74\xaf\x98\xd0\x7b\x3b\xda\xc0\x18\x60\x10\x81\xef\x35\x69\x50\xa4\xaf\x5a\xad\x5f\x76\x4e\x75\x59\xce\x05\xde\x6f\x90\xb8\x86\xd5\x9f\x49\xaf\x92\xde\x99\x58\x32\x7a\x35\x8d\xe1\x28\x2d\x93\xde\x94\x9f\x0a\xb7\xb5\x1d\x15\xf2\x76\xb1\x2c\xf0\x1d\xa8\x22\x6d\x53\x05\xd1\x89\xf2\x2f\x0a\xd6\xe7\x67\xe4\xa7\x0f\xac\xdb\xcc\x3a\x95\x00\xd0\xc6\xff\x00\x8d\x41\xc7\xf6\xa8\x16\x13\xd4\x79\xaf\x52\xd3\x02\xd9\xeb\x03\xaa\x5b\x20\x90\x82\xd3\x2b\xbe\xf6\x94\x46\xa4\xdd\x19\xb7\x0e\x7f\xd9\x25\x6f\x74\xb9\x78\xe4\xf7\x02\x1f\x1f\x3e\xbe\xee\x5b\x12\x27\x18\x8b\x8c\xc5\xeb\xaa\x76\x55\xf8\x0e\xab\x7a\x22\xa5\xbf\x43\xf5\x6f\x6c\x7e\x7f\x15\x28\x8a\xdf\xad\xc0\xc7\x26\xbb\xd6\x69\x67\x46\x79\x0c\xee\xb2\x78\xae\x27\xd0\x08\x75\x81\x9a\xc3\xbd\x5c\x0d\x14\x93\x68\x9b\xf2\x6f\xa7\x71\xe7\x3c\x51\xdf\xc4\x4c\x9c\xa8\xa6\x89\xdb\xa7\x2a\x47\xa0\x29\x84\xf0\xf6\x38\xaa\x00\xb8\xf9\x6b\xb5\x09\xfb\xd2\xc1\x76\x3e\xb2\x66\x99\x27\xac\x10\x95\xe9\x0b\x3c\x53\x59\x26\x6c\x12\x85\x03\x3b\xc1\x09\xad\x6e\x59\x28\xa1\x3e\x49\x29\x93\x90\xf7\x02\x65\xdc\xb8\x7d\x5b\xf3\x1b\x4e\xd3\x72\x25\x24\xcd\x96\x33\x4d\x3c\xae\x0a\xff\x5d\xb2\x18\x74\x13\x13\x4c\x44\x6d\x33\x2a\x7d\xee\x4f\x6b\xcb\xd0\x38\x5a\xb2\x4a\x31\xcd\x19\x5d\x38\x74\xe0\xb9\x5a\x00\xff\xc2\x04\xdf\x68\xc1\x63\xda\xbd\xa7\xfb\xc5\x09\x9e\x66\xdf\x16\x4f\x55\xd7\x8f\xee\xce\xdb\xba\x0d\xb2\x8b\xdc\x2b\x45\xa0\x82\xde\x17\xfe\x41\xe8\x83\xa2\x89\xdf\x72\x3e\xcd\xc7\x14\x77\x83\x1d\x0a\xf0\xec\xbf\x11\x4c\x44\xf2\xf3\xf3\x9c\x59\xfc\x53\x1a\xc4\x78\xdb\x97\x69\x7c\x20\x88\xfc\x44\x79\xb3\x5d\x9a\x14\xdd\xa7\x47\x8f\xb5\xea\xfa\x44\xa7\x2a\xb7\x66\xcf\x04\x31\xd8\x19\x85\x5c\xc0\xd0\x41\xa4\x7f\x5e\x07\x65\x7f\x3d\x56\x98\x63\xa1\xd0\xa0\xe8\xf3\x23\xf5\xfe\x8a\x28\xd6\xf8\x72\x6e\x69\x31\x9c\x93\x6e\x07\x1d\xb1\x99\xce\xbf\x5d\x07\x43\x2c\x47\x49\xcf\x66\x45\x5a\xd8\x24\x8e\x6c\xaf\x0a\x41\x7e\xfd\x25\x9e\x9e\x5c\xc0\xe2\x93\xf5\x86\x35\xd0\x64\x43\x44\x55\xa2\x78\xa0\x48\x2d\x6f\x05\x1e\x66\x10\xdb\x82\x3c\xab\x18\x79\x1b\x78\x98\xf6\x1e\x00\xab\x30\xd7\x76\xaf\x2b\x7a\xc3\x06\x15\xf2\x28\xfe\xf8\x2f\x3e\xdb\xf1\xea\x5e\xbb\x60\x06\x86\x2a\xea\x63\xeb\x9e\xb1\xf0\xb6\x96\xa6\xab\x32\x08\x27\xd0\xbb\xf6\xb7\xe8\x47\x44\x03\xb6\x7a\xf6\xc8\x76\x3f\xc1\x02\x04\x6e\xd6\x1d\x05\x2d\x3e\x47\xbd\x3c\x6c\x8e\xff\x92\x9a\x74\x2c\xfb\xc4\x4d\x3a\xa9\x7d\xd0\xc0\xc3\xac\xbf\x85\xf7\x88\x80\x69\x1b\xd7\x82\x37\xcc\xb5\x0c\xac\x86\xd7\x00\x50\xe0\x9f\xc4\x52\x8c\x76\xfe\x09\x2c\xc5\x98\xa0\xf7\xc6\x4a\xc3\xfb\xe9\x8e\x5f\xc1\x50\x6f\x47\x09\xeb\xa3\xc0\x6f\x39\x3f\xc7\xba\x8c\x60\xe4\x1d\xb4\x1f\xa5\x2a\xe3\xf5\x9f\xdf\x42\x5b\x53\x8a\xe7\xf4\x24\x59\x6d\x52\x09\xab\x7e\x40\xd9\x3d\xb2\x88\x4b\x3c\x9f\x30\x07\x2f\x2b\x77\xd6\x51\x66\x7b\xe9\x30\x4a\x4c\x52\xc4\x1c\xc9\xa0\x90\xf2\xd6\x58\x73\xf4\xd4\x90\xd8\x70\x8b\xd7\x52\x9a\xe7\x11\x4a\xaf\x78\x91\xdf\x50\xdd\x81\x6f\xd4\xda\x32\x2f\x1d\xfc\x6c\x7b\x29\x8a\x87\xb9\x4e\x31\xd1\xa1\xe4\xe3\xf1\x2f\xd5\x53\x4c\xc2\x87\x85\x65\x96\x45\x61\x19\x33\x85\x02\xe5\xcf\xf7\x95\xee\xdc\xfb\x2e\xd7\x1c\x5a\x93\xec\xf1\x0d\xac\x56\x47\xfb\x46\x2b\xce\x2a\x5b\xab\x61\x3f\x82\xee\x30\x62\x86\x4f\xb4\xe6\xd9\x85\x49\x8b\x65\x28\xd2\xda\x19\x7a\xe1\x52\x30\x52\x2a\x5c\xec\x5d\xcc\xff\x42\x4f\x10\x7b\x0e\xd7\x13\xc4\x61\xe8\x29\xad\x66\x47\x78\xad\xea\x0b\x71\x61\x0f\x94\x40\xe4\x05\x4d\xf6\x03\x64\x50\xdc\x0c\x9e\x9a\x50\x00\xe1\xba\x94\x93\x12\x3c\xb0\xe0\x0c\xb0\x14\xf7\x33\x36\x65\xce\xb1\x37\x36\x4f\xe8\x36\xf1\x71\xed\x85\xd1\xd3\x8f\x5c\xf9\x15\x3b\xfc\x49\xac\x95\x7c\x52\x4b\x82\xaa\x1c\xb0\x48\x33\x96\x39\xc1\xbe\x7a\x65\xac\x36\xd9\x2b\x2e\x5a\x2a\xd2\x51\x3f\x33\x3d\x04\xf0\x0c\xde\x55\x04\xca\x0d\x95\x38\xf4\x6c\xd7\x26\x84\x0c\x9e\xf1\x81\xc3\x5f\xe0\xc9\x03\x8a\x7a\x4e\x6b\x0a\x5e\x57\x3e\x21\x67\x68\xe2\xcb\x98\x7e\x5a\xa1\xa5\xc3\x94\x4c\x15\x17\x67\x45\x44\x66\x52\x51\x66\x67\x8e\x7f\x60\xa1\x1d\x25\x2b\x36\x2f\xfe\xcb\x7f\x3f\xb1\x30\xac\x96\x98\x51\x2b\x9d\x06\xd2\x22\x50\xf9\xb7\x0d\xcb\x2c\x2a\x6c\xae\x70\x65\x27\xc6\xca\x99\x11\xad\x43\x3c\xd2\x69\x14\xf2\xb0\xfd\x5c\x1d\xff\x82\xae\x05\x65\x36\xb7\x49\x01\x39\x8b\xe9\x6a\x35\x61\x8f\x15\x0a\x81\xb4\xdf\x0a\xf7\x07\x68\xbb\x93\x5e\xc1\x63\x2e\x7c\x5e\x48\xf7\xf9\x02\xc3\x79\xc5\xe8\x07\xde\xd2\x71\x26\xbe\xf2\x45\xa1\xc3\xd2\x97\x42\x75\xeb\x87\x54\x21\xa1\x02\xe2\x2f\x31\x7d\x54\x10\xee\xf4\x18\x10\x78\x4e\xaf\x2b\xff\x00\xd2\x77\x49\xc2\xb5\x47\x3d\x96\x9f\x95\x08\xd8\xf0\x02\xef\x0e\xed\xb2\xeb\x58\xf5\x04\xe5\xa6\x44\xbb\x4f\x8c\xab\x58\x58\x50\xa2\x1a\x40\x11\x78\x03\xd2\xcd\xb1\x56\xa6\x50\x92\x1f\xb7\xb5\x57\xf2\x52\x16\x85\x66\xda\x3b\xd3\x20\xef\x73\xe1\xe1\x01\x11\x8f\x66\x6c\x8f\x88\x4b\xee\x2c\x0d\x0b\xb7\x2b\x34\x79\xe1\x40\xdf\x12\x92\xfb\x2e\x25\x44\x72\xb1\xf6\x9e\xd7\xcc\xe2\x2c\x4d\x97\x59\xdc\xd7\x59\x48\x39\x70\xd5\x9d\xe0\x59\xc5\xda\x8e\x63\x1b\x52\x5d\xc5\x87\x05\x1f\x4c\x40\xec\x74\x8a\x97\x17\x51\x81\x6e\xcb\xde\xd6\x91\xd9\x6d\x86\x66\xb1\xc1\x2e\x3d\x2c\xe7\x46\x5f\x6d\x63\x18\xb9\x6f\x62\x89\xe2\x13\x0a\x98\xb7\x2f\xa8\x5e\xc4\xff\xe2\xfa\xc2\xa4\x8c\x25\x0c\x70\x31\xd1\x54\x80\xc7\x2b\x1a\xd8\x6e\x93\x02\xbc\x34\x8c\x12\xb6\xce\x95\x5a\x2a\x2d\x6f\x78\xd6\x1f\x07\x7e\x87\xfb\x39\x1a\x83\xfc\x0f\xde\x89\x81\x6c\xec\xba\x14\x2a\xb9\x92\xe3\x53\x04\x83\x40\x52\x75\x8f\x9e\x3a\xaa\x74\x9f\xae\xb9\x6e\x1d\x99\x9d\x6b\x7f\xbd\x8c\xc2\xe5\x29\xbf\x27\x9c\x54\xa1\x22\x43\xbc\x44\x41\xc2\x2f\x9c\x5d\x56\xfb\xa4\xc7\x88\x01\x7e\x4d\x75\x79\xee\x29\x7b\x89\x9f\xd7\x56\x44\xd4\xd2\x12\x60\xba\x30\xac\xc1\xed\xe5\x63\x57\xa6\x20\xf4\x3e\x05\x62\xce\xb4\xc8\x0b\x98\x6c\xa9\x1c\xbe\x17\xe5\x45\x16\x75\xcb\x42\xf0\x72\x2e\x29\x55\x19\xaa\x92\x83\x30\x51\xb6\x6a\x56\x2c\x8f\x34\x84\xc2\xbf\xaf\x92\xa0\xdf\x77\x12\xa5\x26\x8e\x89\x4d\x9b\x44\xcb\xbc\x4b\x8b\xc2\xbc\xa7\x8a\x5c\x51\x5a\xac\x45\x16\x8d\xf0\x54\xb0\x5d\xc2\x87\x51\xdb\x07\xb0\xdb\x93\x6a\x68\x8f\x4c\x66\xe2\xd8\x22\x6e\x40\x96\x31\xd3\xf1\xd9\xc7\xcc\xba\x0f\x8a\xfb\x59\xba\x3a\x43\x13\x1d\x0d\x8b\x0d\x8a\xd9\xc5\xa0\x9d\xae\x0f\x81\xd6\x06\xc2\x36\x3e\x19\x7b\xbf\x87\x0f\xdd\xd3\xed\xa6\xa9\x90\x84\x91\x49\xdc\xc4\xe3\xe5\x13\x85\x1d\x22\xf0\x65\xcb\x03\x07\xb7\x34\x88\x76\x2b\x78\x4e\xbb\xe0\x93\xf2\x49\x0c\x06\x9d\x8b\x4a\xe6\x0e\xbb\xa8\xa4\x49\x41\xc1\x8c\x46\xd6\x38\x3b\x64\xd4\x8d\xa6\x10\x41\xf3\x49\xcd\xa9\xeb\xe0\xe2\xc1\x76\x62\x6d\x6f\x4f\x95\x1d\x8b\x07\x75\xf5\x9b\x82\xe7\x51\x2c\x26\x56\x1c\x76\xd7\xee\x3d\x68\x49\xf1\xe5\x6b\xce\x4d\x40\x59\xa0\x47\x71\xcf\xae\xa2\xe7\x8c\xfa\xd1\x75\xe5\x03\xfb\x49\xe0\xe5\x13\x4e\x8f\x1f\x57\xf9\x90\xf9\x05\x45\x06\x79\x2d\xf0\xaa\x82\x53\x94\xd8\x61\xc6\x7f\x00\x78\x1b\xa0\x66\xbb\xd7\x15\x27\xea\x01\x45\xa8\xce\x08\xb5\x5a\x0a\x00\x4d\xbf\x1f\xec\xfe\x2c\xc7\x84\xe2\x53\x2c\xd1\x75\xcb\x89\x24\x3f\x86\xbb\x71\x38\xb0\xb9\xc3\xce\x52\x9f\x9e\x06\xe6\xcd\xd4\x3a\x6d\x27\xc2\xde\xa6\xc0\x19\x99\xf4\x39\xac\x8a\x20\xef\xbd\xa9\x1b\xa8\xc7\x95\x7c\xef\xbe\xf5\x6a\xad\x40\x3e\x70\x1f\x43\x4e\x9a\x67\x44\x58\x97\x7c\x95\xd6\x2b\x5c\xfd\x4c\xa7\x7a\x5e\x12\x2c\xfb\x80\xe6\x91\x8e\xd2\xab\xb6\x6c\x91\x2b\x20\x0e\xc5\xd3\xbe\xd0\x14\x88\x45\x59\x9a\x30\x63\x09\x0f\xe6\x5b\x2a\x70\xfe\x56\x13\x1b\x3f\x59\x4b\xec\x51\xd5\xe3\xdd\xd2\x65\xb2\xad\x5a\xd7\xe8\x85\xf6\xaa\xa1\xca\x7d\xf5\x13\xbc\x49\x63\x58\xc9\x8e\xed\xab\x82\x66\xc5\x66\xa6\x5f\x8d\x60\xef\xaa\x7d\x2e\xd0\x16\xcc\x0d\xcc\xd1\x2a\x90\x2f\x45\xc5\x6c\x9b\xba\xdc\xdb\x67\xbd\x82\xa2\x49\x96\x67\x14\xb2\x09\xa2\xb7\xac\xb9\x4b\x05\x0c\x3c\xf6\x07\x4a\x1f\x0c\x44\x38\x2e\x78\x2a\xf1\x8a\x55\x53\x84\x03\x29\x5a\x02\x3e\xfc\xa3\xc0\xe3\x8a\x7f\xa4\xfe\x34\x1a\x8e\xb2\x68\x18\x81\xa9\x82\x08\x02\xfc\x79\x3e\x56\x08\x0b\x6b\x72\xfa\xce\xfd\x73\x5c\x50\x63\x05\x4c\x3e\x19\x3f\xa7\x18\x49\xa5\xcd\x96\x33\x53\x16\xb4\x4d\x01\xed\xb3\x4b\xf1\xd8\x6e\x8f\x35\x74\x79\x02\xc2\xd5\xb3\xfb\xaa\x49\x21\x4e\x63\x34\x29\x44\x66\x8d\xc6\x18\x8a\x1a\x20\x46\x63\xbc\x4f\xad\x7b\x03\xb3\xfb\x81\x32\xed\xb9\xc2\xc5\x38\xa4\x0c\xbb\xb8\x32\xca\xd6\xdc\xae\x59\x9a\x99\xcc\x42\x54\xf3\xe0\x04\xd1\x19\x4b\xd8\xa3\x94\x19\x61\x2e\xdc\x18\x2b\x04\xb5\x96\xfd\x2a\x06\x59\xea\xc0\xdb\xf8\xb5\xb3\x2a\x59\xf1\x6f\x79\x29\x36\x05\x25\x67\x58\x4d\x50\x13\xc3\x14\xfa\xdb\x1d\x1f\xcd\xdc\xc0\x6c\xc4\xd2\x8c\x87\x85\x45\x7f\x17\xca\x22\xe2\x24\xd6\x54\x52\xff\xa5\xaf\x7e\xfe\xd7\x16\xa7\xaa\xb7\x84\xc7\x26\xc2\x09\x48\xee\xb8\xb8\x21\x82\xc3\xcf\x2a\x59\x5b\x02\x6b\xa7\x19\xa8\x33\xb8\xc7\x2b\x63\xdd\xca\x6e\x39\x81\xc8\x2b\xa8\x38\x48\xbf\x7b\x67\x47\xeb\x97\xdb\xc9\x5a\x2e\xaa\x4a\xc8\xd2\x19\xde\xc8\x27\x13\xf5\x31\x6b\x46\xf4\xdc\x44\xb6\xb0\xe5\x2c\x47\xce\xaa\x74\xa5\x6f\x8b\x6a\xbb\xdf\xd7\x72\x54\xc2\xcb\x5a\x79\x86\x35\xf4\x9d\xf9\xd1\xa2\x38\x9d\xbf\x43\x9b\xa1\xab\x2e\xe8\x8d\xac\x1a\x67\x6c\x8c\x4c\x3f\x2a\x59\x6b\x03\xa0\x3b\xb3\xc3\x74\x45\x22\x3e\x81\x68\xd1\xcf\x8b\x84\xd0\x13\x6a\x10\x2f\x0d\xf9\xde\x45\x1f\x81\x7e\x96\x4f\xd4\x46\x1b\x85\x66\x90\xec\xad\x16\x6e\x5e\xab\x3b\xde\x61\x97\xf5\xcc\x5c\x22\x33\x3f\x3f\xd1\x67\x92\xa4\xc6\xfb\xf3\x1c\x53\x37\xfa\x40\x9b\x08\x44\xf9\xa8\x2c\x2c\xc2\x08\xa4\xa0\x40\xca\x73\xf1\x08\x19\x86\xc3\xfe\xcf\x1d\xe6\xd5\x9a\xdd\xf2\x25\x19\x6a\x00\x27\x95\x49\x1c\x2d\x8b\xc2\x3a\xda\x44\x78\xf2\x7c\xac\xde\xde\x20\x5d\x5a\x1a\x9a\x04\xca\xb5\x78\x31\xcc\x40\x70\xbe\x04\x9e\xf4\xa6\x2c\x54\xdf\xd9\xa9\xab\x5b\xa5\xd7\x07\x16\x9e\x50\xde\x66\xbb\x88\xb7\xce\xf3\x89\xae\x1f\x8d\x07\x96\x48\xd0\x8a\x62\x98\x68\x4c\x6d\xc3\x10\xfb\x71\xe0\x53\x47\x08\xe9\x89\x73\x1b\x3d\x16\x7c\x15\xcb\xb8\x60\x61\x3e\xcb\xa5\x24\xa9\xb2\x7b\xf9\x60\x06\x21\x89\x19\x61\x3d\xf4\x39\x48\xdc\x86\x28\xe9\x0b\xf6\x03\xd3\xf0\x81\x06\xcb\x32\x7c\x1a\x61\xe3\x53\xeb\x7a\xa2\x84\x69\x57\x21\xd5\x26\xee\xef\x58\x8d\xbc\xb8\x7f\x3f\x29\x06\xdb\xa4\x50\xca\x08\x6c\xee\x83\xd5\xf1\x13\xa5\x1b\x78\x5b\x51\x7e\xa3\x04\xba\xc0\x1e\xff\xf1\x46\xe0\x41\x37\x6f\x4c\xb8\x65\x44\x66\xd8\xf2\x61\xd8\x9f\x06\x3e\xfb\xf8\xd3\x9d\x6f\xee\xc8\xec\x42\xfb\xc8\xec\x2f\xe0\xc6\x1d\x62\x78\x51\x62\xa1\xdd\x1d\x8a\x53\x30\x1c\xde\xa7\x1f\x64\x36\x6a\x47\x3d\x7c\xee\x49\xe2\x27\xce\x05\x2a\x02\xf9\x16\x18\x09\xa2\xab\x4f\xeb\x93\x08\xee\xd3\xfb\xc6\x12\xbe\xa1\x80\xd3\xa7\xab\x28\x8b\xd5\x5c\xc6\xbe\x55\xc7\xda\xf7\x78\x62\x90\x18\x44\x2c\xf3\x4d\x4d\x96\xdc\xbb\x5e\x0d\x35\x2c\x87\x2c\x50\x80\xbf\xba\x81\x12\x98\x20\xa4\x68\x16\x63\x12\xbd\x03\xd2\x03\x7e\xfc\x26\xd5\x33\x9d\x41\xd9\xfe\x39\xde\xdf\xdf\xa2\x24\x9f\x15\x3f\x14\xe0\x3c\x4c\xf3\x21\x29\x73\x3e\xa2\x54\x06\xdf\xe4\xb5\x5d\xfa\x1c\xf4\x76\xb1\x34\x5c\x0f\x54\xcd\xea\x06\x4d\x2f\x85\x16\x13\x4f\x92\xbb\xca\xa7\x7b\x23\x50\xde\x47\x0f\x70\xaf\x08\xe8\x4e\x35\x58\x99\xb6\xf3\xb2\x9b\x66\xbd\x28\x31\x62\x4e\x29\x44\x7d\xfa\x16\x44\x1a\x6f\x06\xca\xb6\xec\x4a\x33\x16\x2a\xcd\x32\x31\x08\x43\x8c\x7b\x49\x97\x93\x2e\x4d\x28\x60\x9b\xb0\x88\x42\x01\xdd\xa3\xd7\x70\x35\xf0\x74\x82\x63\xda\x64\xed\x64\x0d\x10\x51\x25\xa2\xa8\x44\x45\x4e\x66\x04\x17\x3d\xdd\x51\x52\x03\xd3\xb5\x56\xf7\x91\xd9\xb6\x4d\xfa\x71\x94\x0f\x5a\x6a\x72\x42\xce\x8e\x8f\x9d\x4d\x80\x49\x4c\xbc\x56\x80\x51\x76\x64\xd6\xb1\xf6\x7c\x59\x5a\xeb\x14\xf2\x1d\xd9\xbd\x8a\xfe\x73\x42\x53\x63\xce\x28\xdb\xd9\xe3\x4a\x6d\xe2\x0c\x62\x77\xd6\x3c\xa7\x31\x8d\x65\xe7\x9a\x42\x2c\x7d\x54\x5b\xb4\x8f\xcc\x7e\xad\xdd\xcb\x4c\xbf\x8f\xe4\x6b\xce\x95\xc0\x14\xfb\xfb\xbc\x2b\x6f\xe7\xa1\xc9\x42\x02\xe8\x8b\x00\xf4\x35\xd5\x1d\xbe\x83\xd8\x0c\x3d\x8f\x63\x63\xd7\x7a\x7f\x0c\x91\xab\x18\x22\xf8\xf8\x31\xb6\x79\x1c\x59\x40\x26\x44\xc5\xa9\xe5\x84\xe5\x99\x13\xc8\x60\x01\xa7\x82\x9d\x17\xd6\xc4\xae\xf4\x80\x4e\xd7\x3d\xb5\x41\xe0\xc9\x7a\xc5\x0a\x59\xc4\x06\x26\xe9\x51\xf1\xc7\x99\xb4\xab\x5a\xe9\xf1\xf1\x04\x4c\x98\x9e\x37\x72\xfb\xbf\x19\xfb\x20\xfe\x0a\x3d\x6f\x45\xc5\xf3\x4c\xc4\x9d\xd3\x81\xe4\xd6\x92\xa5\xa8\x07\x93\x61\x8c\x12\x47\x7e\x75\xee\xf7\x75\x5b\xe4\x23\xb3\xd5\x3c\x7a\xc5\x86\x05\xd6\x5b\x7d\x53\x82\xdb\x7d\xbe\xce\x31\x37\x1a\xc9\x74\x49\x21\x99\x9a\x94\x18\x0f\xb5\x49\xfe\x7c\x4a\xc1\x3c\x70\x51\xd8\x33\x7f\xa4\x68\xc7\x1b\x9e\x46\x5d\x14\x26\x1c\x4c\xf9\x96\xed\xe9\x1d\x96\xf7\xce\x3f\xef\x8a\x56\x1f\x0a\x07\x69\x1a\xef\xad\xae\x07\x9d\x5b\xf6\xd7\x11\x5f\x2f\x7a\x88\x6c\xdf\x12\x78\x53\x8f\xf3\x8a\xa8\xf0\x07\x28\xbc\x9d\x42\x7d\x93\xbf\xa5\x49\x4a\x96\x8d\xee\x94\x83\x10\x2f\x1c\x7c\xa2\xb8\xd6\x65\x12\xc6\xd6\x64\xc8\xd6\x30\xc9\x2f\x13\xc4\x9f\x8f\x5d\x61\x6f\x35\xcd\x96\x7b\x0c\xb1\x72\x2a\xf4\xd5\xb8\x11\x9c\x6c\x7d\x42\xcd\xb5\x4d\x18\x96\xb9\x54\x33\x50\x1c\x43\x07\x99\x8f\x1b\x96\xbd\x43\xa4\x12\x20\x9f\x91\x8c\x54\x15\xc4\x27\x25\xbf\x97\xba\x51\xcb\xdb\xfe\x6d\xf1\xa2\x2f\x12\x8e\x0d\x91\x19\xa8\x35\x8e\xc0\x8e\xfe\xdb\x06\x16\x7e\x3e\x51\xd9\x4b\x2f\x33\x43\x53\x44\xec\x85\xeb\xea\xcb\x1e\x2e\xbe\xd9\xa4\x6d\xbe\x14\xc5\xf1\x1a\x4a\x26\x28\x41\x80\xc0\xc5\x99\x12\xad\x5b\xc2\x43\xae\x45\x02\x07\xdb\xf3\xf3\x4f\xd1\x9a\xe7\x44\x2a\x5c\x28\x72\x99\x2a\x19\x78\x76\xbf\x8b\x45\x01\x7d\xc2\xf3\x14\xb0\xb3\xd4\x23\xb4\x8a\x95\xcb\xc9\x41\x37\x03\xd4\x74\xfe\x24\x98\x10\x37\x55\x62\x77\x37\xc6\xbe\xc8\x7d\x6f\xac\x44\xa0\x37\x14\xe4\x0c\x15\x3c\xe7\xe0\xe6\x0b\xf6\xef\xa8\x5a\xc0\x52\x66\x92\xe5\x38\x4a\x54\x69\xe2\xbc\xd6\x31\x3c\x5f\x9b\x92\x8b\xb3\xed\xcc\x8e\x4c\xc4\x20\x41\x84\xf5\x8c\x69\xe5\x93\x26\xbd\xea\x81\x5d\x2a\xd6\x94\xa3\xc4\x19\xe5\x28\x71\xa6\x86\xed\x59\x9c\x25\x1d\xe1\x29\x3f\xcb\x50\xd2\x16\xa7\x85\x40\x03\xd0\x1e\xaa\xcf\x9e\xe7\xb6\xc8\x89\x52\x24\x16\x75\x0a\x28\xb0\xa9\x0a\xf4\xf6\x68\x91\xd9\xa1\x05\x03\xe3\x6b\x9c\x6c\x56\x31\xdd\x97\x25\xf3\xdc\xbd\xee\x8c\x9d\xf2\x41\x99\xe5\x62\xfb\x2f\xc6\x33\xd5\xf5\xa0\xf5\x74\x82\xde\x8d\xb2\xd7\x11\x0e\xf4\x76\xf0\x98\xe2\xe2\xfc\x22\xbd\x5b\x2c\x42\xe8\x5f\x20\x82\x3a\x87\x89\x04\x54\xc5\x2d\x6a\x28\x6f\xbf\x4b\xab\x0d\xa2\x19\xa9\xa8\x09\x2b\xd4\x57\xcf\x4f\x62\x20\xe1\xcf\xae\x62\x5f\x10\x9d\x9e\xea\x19\x38\x4b\xac\xc5\x83\x5e\x3f\xc3\x3b\x96\x4c\x18\x07\xed\x5b\xd7\xbe\x03\xc1\xc4\x32\xd5\xfa\xf5\x97\x78\x27\xba\xa8\x70\x40\x1c\xb1\x49\x3f\xa1\x0a\x03\xb9\x83\x87\x9d\xd6\xd5\xe6\xbe\xf2\x45\x8e\x21\x2f\xd3\x58\xc5\x55\x5d\x27\xd4\x13\xe3\x62\x28\x9e\x44\x1b\x9a\xc9\xb5\xc2\xab\xf4\xd1\x94\x66\xa4\xf8\x06\xfa\xa5\xb1\x82\x13\xab\xd6\xe9\x52\xd4\x2f\x33\x9b\x53\xfa\x8d\x3e\xd8\x31\xcd\xd1\xbc\x8a\x59\x87\xa9\x72\x3e\xf0\xb5\x19\x28\x8f\xf1\x7f\xd7\x79\xf0\x99\xb1\xd7\x26\xdd\x52\x55\xcd\x2b\x4d\xce\xff\xfd\xcc\xf6\x53\x26\xdc\x28\xc5\xdd\x83\x4e\x71\xf7\x71\x37\x2e\x56\xd3\xe4\x11\xd5\x6a\xbe\x10\x28\x08\x03\x73\x20\x01\x90\x3e\xc6\x79\x1c\x62\xf3\x2b\x8a\xca\x70\x12\x8f\x0c\xeb\x2b\xb7\xb7\x19\x3a\x1f\x28\x04\x1a\x8f\x16\x01\xd5\x7b\xda\x5e\x34\x1c\x12\x02\xd0\xc6\x6b\x54\xeb\x71\x08\xc0\xc5\x83\x13\x46\x33\x8e\xa2\xef\x6a\x61\xd0\xbc\xc7\xd0\x62\xab\x1f\x7c\xfd\x15\xed\x50\x22\x12\x45\x2d\xd5\xa7\x3f\xa5\x18\x59\xa7\x6a\x4a\x07\xf0\x5e\xce\xcc\x8a\x89\xd8\xdd\x4d\xdc\x64\xe9\x2b\xc4\x4e\xd6\xbf\xee\x28\xc9\x6d\x58\xb0\x96\xa9\xab\x0d\xf8\x6a\xa2\x22\x2c\x9e\x53\x85\xbf\x91\xc9\xe2\x88\x18\x69\x53\xf4\xd4\xf0\xaa\x67\xa8\xa3\xbb\x7d\x5f\x49\x6f\x6d\xd5\x94\xf8\x7e\xb5\xdd\x75\x2d\x01\x27\x9d\x52\x7d\x87\x48\xa7\xd4\xf5\xeb\x0f\xb6\x23\xae\xc8\xc8\x0d\x28\x07\xc4\x4d\x25\xea\x14\x9a\x61\x37\x8b\xc8\x43\xba\x1a\xa5\xdc\xaa\xa1\x67\x2d\x6d\x9b\x06\x0d\x8a\x41\xd4\xeb\x59\x2c\xeb\xd8\x94\x6f\x28\xdc\xf4\x0d\xd7\x93\x4b\xec\x6a\x3e\x32\x4a\x2e\x46\x80\x66\x5a\x5d\xa5\x86\xf8\xdc\xbf\x9f\x0a\x33\x69\x6e\x20\xf5\x2e\x4b\xba\xf2\x73\x3b\xd3\x08\xcd\xce\x47\x36\x8c\x96\x60\xdb\xdb\xf2\x65\xca\x13\x0a\x0b\x72\x42\xbd\x11\xb2\x42\xeb\x97\x52\x9b\x74\x83\xdd\x01\xe8\xaf\xd4\xea\x14\xfb\xf7\xb7\x4d\xb7\x57\x86\x0e\x15\x27\x22\x11\xba\xab\xd4\x00\x62\xcf\xad\x99\x9a\xe0\xca\x54\x9f\x05\xaa\x68\xaa\xe3\xe9\x1d\x77\x6a\xc1\xc4\xaf\xb4\x57\xa2\xdc\xe1\x80\x45\x59\x8b\x26\x17\x9f\x28\x65\xce\x34\x2c\x5e\xa4\x1a\x34\x82\xf4\xe3\x78\xe7\x7c\x32\x21\x84\x69\x48\x00\xde\xe5\x60\x98\x73\x7c\x3c\x51\x80\x0c\xcb\x6e\xcb\x03\xee\x4f\x2b\xf9\xd8\xd3\x0a\x73\xfb\xf9\x85\x03\x34\x16\x26\x96\x12\x59\x64\x9e\x57\xb1\xe6\x52\x9a\xc1\xe3\x10\x39\x0b\xd6\x41\x28\xe1\x0b\x61\xdb\x3f\x8d\x33\x13\xe5\x94\x61\x9a\x29\xbf\x6b\x98\x80\x39\xef\x6b\xaf\x90\x73\x49\x61\x2b\x0a\xb3\x6c\xc9\x02\x07\xf1\x3d\xc6\x1b\x9a\xb3\xc8\x56\x3e\xa6\xf7\xc6\xae\x04\x35\x50\x07\xad\x0c\xdd\x34\x43\xfd\x1a\x57\x8c\x0d\x0c\xba\x73\x5a\x19\x0a\xc7\xaf\x8d\xbd\x67\x61\x62\x8b\x27\x68\x92\xa2\x12\x0c\xb4\x3f\x36\xf1\xcb\xd8\xb4\x58\x8b\x92\x76\x01\x57\x7e\x7b\x49\x71\x86\x35\xdf\x90\x66\x24\xbe\xea\x8a\x92\xed\x7c\x54\x41\x3e\xaf\xd1\xe6\x89\x1a\xc5\x14\xca\x2e\xd8\x8e\xde\x1d\x6b\x0c\x45\xa0\x76\x9a\xdd\xb5\x7c\x7e\x81\x0c\xc7\xaa\x39\x3b\x61\x99\x10\xe8\xd6\xb3\x7e\x2d\x3d\x7b\xf4\x71\xba\x68\x2c\x2d\x67\xb4\x0f\xf9\x25\xed\x58\xb3\x9b\x5b\x0c\x6e\x5b\x5b\x10\x5d\x88\x6f\xe1\xf2\x9c\x75\xa5\x73\x64\x3d\x4f\x8f\x46\x90\xcb\xca\x7b\xfd\x4a\xa0\x40\x43\x6f\x29\x03\xb5\x33\xf4\x42\x31\x12\xde\x77\x89\xf2\x2b\x69\x99\x7b\xa2\x07\x00\x23\xff\x40\xe9\xfa\xfe\x83\x87\xda\x3c\xe7\xe9\xd0\x16\xd1\xd0\xe6\xd3\xaa\xe0\x0b\x29\x76\x3c\xda\x27\x69\xf6\x3a\xc5\xf8\xea\x76\x19\x36\xea\x7e\x5d\x4c\x98\xe0\x27\x81\xae\xc7\x54\x47\x65\x8c\xc7\x30\x1c\xa4\x95\x50\xdd\xda\xf6\x65\x95\xaf\x77\x6d\x96\x99\x56\x75\x63\xb2\xdb\x68\x49\x1a\xd7\xc4\x8e\xb2\x65\xd9\x24\x04\x7c\xed\x6f\xb1\xee\xbd\x7a\x60\xa1\x1d\x47\xfd\x41\x31\xe3\x7b\x0a\x2d\x92\x3c\x15\x76\x69\xcb\xd9\xa4\x7f\x4c\x63\xd7\x09\x39\x55\x03\x4b\xfa\x3c\x9f\x52\x30\x94\xe1\xa8\x2c\x6c\x06\x96\xb9\xdb\x18\xae\xa9\x8d\xe1\x5a\x13\x69\xb8\x17\xe5\x5f\x2f\x23\x5b\x48\x4f\x8e\x05\xff\x94\x10\xe4\x6b\x4a\x34\xc9\x64\x7d\x9b\x14\x51\x12\x99\x84\x56\x78\xc6\xf7\xd2\xec\x10\xac\xaf\x4f\x6e\x4d\x18\x5a\x61\x9d\x0a\x6d\xc0\x8b\xe2\x34\xb2\x74\xfa\x91\xc1\x0e\x7d\x70\x22\xd1\x41\xfd\x09\xd6\xc1\xc8\xbf\x76\xad\x3f\xa3\xb5\x31\x86\x69\xd2\xcb\x5b\x14\x1c\x61\x64\x30\x1f\x8a\x4f\x94\x90\x46\x5e\x66\x2b\x76\x2d\x27\x15\x4e\x67\xe7\xb7\x13\xb2\x89\xdd\xea\xcd\xc0\x63\x07\xde\x54\x64\xfb\x55\x1b\xc7\x4f\x4f\xd8\x75\x55\xf1\x13\x23\xe3\x11\xa1\xb1\x50\x01\xcd\x07\x2e\x66\x60\x06\x39\x8f\xe6\xb9\xc3\x5c\x17\xdb\x50\x04\x40\x36\x7e\x11\x47\x6c\x55\x4f\xbd\xce\x31\x21\x7e\xe5\x72\xa0\xb3\x5b\x2c\x5b\xfc\x6d\x6a\x76\xbc\x8b\x25\x4c\x64\x95\x3c\xdf\xf1\x04\xcd\x72\x94\xe8\xa6\xd6\xfd\xce\xe4\xfd\x14\xe6\x9c\x06\x2a\x7d\x37\x0a\x61\x6c\xb0\xea\x04\xa6\x0e\x48\x85\xec\xbc\x0b\x39\x56\xec\x80\x48\xc9\x9c\x6d\x6d\x53\x1e\xb0\x7d\x39\x10\x69\xb0\x81\x19\x76\xcb\xac\x5f\x2d\x6f\xd5\x38\x46\x79\xf7\x9f\x2b\x82\xdd\x3f\x9f\xa0\x19\x85\x19\x7c\xb0\x94\x54\x96\x57\x6f\x38\x3f\xfe\x4c\xe4\x42\x09\x9b\x85\x69\x35\x32\xbd\xe4\x00\xc2\x53\x56\xb9\xe3\x13\xad\x75\x91\xae\xa5\x85\xd9\x47\xff\xca\xf8\xaf\x40\x23\x71\xb1\x15\x3a\x77\x5e\x2f\xc4\x8b\x87\x00\x22\xf4\x26\x3d\x6d\xe4\x42\x5b\xca\xff\x7a\x82\x2d\xed\xcd\xc2\xc2\x18\xa6\xa8\x2d\xdd\xee\xe5\x7c\x41\x6a\x72\x0d\x95\xe8\x43\xed\x3c\x5a\x16\x85\x02\x41\x60\x2a\x41\xfb\x0d\x47\xc4\x0b\xd3\xd2\x59\xc6\x8a\x48\x98\x56\x0c\xab\x55\x64\xf6\xcf\xb5\xf3\x70\x60\x7b\x65\x6c\x5b\xfa\x1e\xf5\xbd\x7b\x98\x6d\x66\x8b\x28\xa3\x5b\x98\x56\xd1\x30\xc2\x29\xa1\x48\xa8\xc8\xf8\x5c\xa0\xcc\x77\x2e\xd6\x7c\x66\x5f\x7e\xb9\x1d\x66\x06\x01\x0e\x42\x0e\x70\x4f\xf8\x58\x45\x12\x43\x93\x2d\x5b\xf4\x58\x1d\x6a\xf2\x4d\x24\x21\x68\xe8\xb1\x98\x06\x6a\x42\x77\x02\x2f\x57\x7f\x5d\x15\x9d\xef\xe3\xcd\xe1\xe3\x97\x68\x0a\x48\xec\xe1\xab\xd4\xcd\xf8\x88\xbc\x88\x86\xa6\xb0\xbd\x69\xcf\x41\x63\xc4\xb2\x13\x2f\x74\x31\xc1\x35\xfc\x0c\xca\xc5\xc7\x82\xcf\x68\x16\xbe\x89\x43\xd6\xc5\xe5\x2e\x16\xab\x3c\x29\x2b\xeb\x4b\x6e\x2e\xe5\x69\x1c\xf5\x4c\x16\x15\x6b\x0a\xab\x70\x5e\x99\xb3\xcd\xac\xab\xa6\xf1\x63\x1d\x6f\x07\x9c\x2f\xdb\xa2\x6b\xe2\x98\x68\xd6\xd8\xa6\x77\x51\x53\x48\x44\x63\xe9\x69\x89\x38\x5c\xb5\xc8\x39\xc4\x9d\xeb\x4e\x63\xe1\xa5\xdf\xf9\xf3\x4f\x61\xbf\xc4\x70\xfe\x81\xdb\xf2\xf2\x81\xe9\x21\xf3\xc5\xb6\xca\x7d\x3f\x3e\xa9\x11\x21\xab\x1c\x61\x18\xc5\x51\x61\x32\xc6\x34\x08\xdc\xbb\xe5\x04\xee\xee\x2a\xb2\xdb\x31\x2d\x76\xf7\x97\x63\x2d\x0f\x9d\x90\x14\x92\x2b\x14\xb3\x21\xa7\x20\x17\x1a\x60\x7e\xfd\x38\xcd\xd6\xa6\x74\x63\xe5\xbc\x9a\xd3\x0c\xcd\x10\xbe\x8c\xf2\x5a\x49\xe3\x74\xd8\x8d\x4c\xcb\xb3\x5c\x20\xb6\xc5\xc7\x0d\xb3\xf5\x50\xdb\x1e\x2d\x6c\xc2\x15\x34\xa0\x64\x7e\x42\x77\xc5\xc7\x5a\x5e\x2b\x2d\x48\xc0\xc1\xa1\xed\xc0\x7f\xe5\xe3\xda\x7d\x50\x44\x4c\x66\x07\xae\x9e\xf7\xd1\xd8\xe3\x1b\xe1\x04\x20\xf8\x89\x9d\x4f\xff\xe0\x97\x0f\x41\xc4\x3f\xe2\xbc\x0e\x15\xca\x8f\x68\xe8\xf1\xb1\x52\xc0\xc4\xa5\x45\x55\x2e\x37\xa3\x80\xaa\x62\x25\x48\x21\x93\xc8\xd9\x7a\x80\xfe\x2d\xf0\x2d\x64\xcb\x7c\x46\x29\x0d\x66\x36\xe9\x17\x83\x3d\xb4\x3b\xe2\x5b\x78\xa2\x38\x71\x37\x67\x46\x71\x0a\xbf\x85\x88\x07\x09\x03\x9e\x37\x80\x3a\x18\x5f\xeb\xca\xca\xa6\xb0\xb1\x5d\x89\x72\xee\xf6\x21\x7a\x65\x9a\x96\xe4\x62\x3e\x5f\xb9\x1c\xec\x4c\x5e\x25\xdc\x1c\x94\x49\x2f\x73\xe2\x24\xa2\x5c\xa6\x2a\x67\x75\x76\xf9\xdc\xe1\x76\x99\x50\xd2\xeb\x72\x52\xe7\x81\xea\x83\xef\xad\x89\xa4\x6e\x79\x39\x52\xe5\x22\xae\xe2\xf0\x49\xad\x22\xff\x62\xbb\x5b\xe6\x51\x22\xf2\xec\x8d\x8a\x5c\x3b\x6b\x2a\x2e\x7c\x0e\xd3\x02\xa3\xcb\xa5\x34\xd5\xc7\xf8\xa4\x51\x9c\x20\xb7\x71\x8c\xf0\x8b\x2b\xb3\x63\x2f\x15\x7d\x82\x56\x0a\x69\xd3\x3c\xad\x31\xac\xa3\x34\x03\xa0\x0a\x91\xec\x87\x78\x81\xc8\x68\xaf\xb1\x81\xaf\x77\x8f\x2d\x8b\x6a\xcf\x99\xf6\xb5\x46\x68\x74\xa2\x18\xb5\x4e\xc3\xc9\xed\x26\xbe\x5a\x7d\x79\xfc\xbc\xe3\x91\x64\xe1\xc0\x24\xbd\x28\x77\x89\xa1\x5e\xed\xd1\x30\x02\xbb\x44\x10\x55\x35\x71\x8c\x83\x55\xc4\xbc\xc3\x49\x97\x5e\x84\xe0\xd3\x1b\x76\xab\x5e\x99\x43\x6d\x05\xf5\x7c\x20\x6a\xf9\xb8\x49\x62\x9d\xd9\x78\x00\x0e\xa3\x1a\xf9\x43\xad\x9f\xf1\xc3\xf1\xa7\x04\xe8\x65\xf3\x51\x9a\xe4\x51\x37\x8e\xe2\x62\x0d\xe3\x4f\xe8\x41\x2d\xe7\x43\x7b\x69\x82\xf1\x16\x47\xe1\xe3\x3e\xeb\x6f\x11\xd2\x0c\xd9\xc6\xf6\x58\x2b\x97\x4d\x34\xe2\x1f\xa7\xa7\x82\x19\xf2\x26\x26\xab\xf3\x25\xa8\x1e\x05\xb7\x6a\x03\x15\x92\x9c\x41\xe0\x8a\x14\x1b\x28\x6e\xce\x09\xc7\xca\xc6\xf5\x8c\x26\xd3\x9e\xad\x3d\xbd\x17\xa8\xd3\xc7\xad\x44\xc9\x97\xe9\x79\xf3\x49\xad\xcc\xb5\x7f\x8e\x60\xb5\x92\x53\xa1\x99\xfb\x61\xa0\xd8\x6c\x1f\xd6\x26\x0b\x91\x95\x6d\xdc\x4b\x87\x53\xda\x0a\x62\xec\x9d\x4a\x6e\xe3\x0b\x84\x0c\xf8\x9c\x82\x01\x0d\x6d\xba\x5a\xed\x2b\x53\x5e\x2b\x8c\x59\x8c\xda\x4b\x00\x4f\xeb\x3b\x35\x53\xed\x83\xed\x23\xb3\x73\x8f\xfb\x52\xff\xc5\xc0\xc7\x17\xe7\xb5\xcc\xff\x96\x8a\x2b\xef\xe3\x0d\x28\x6d\xf4\x05\x4f\xb6\x75\xd8\xd6\xef\xaa\x2c\xe2\x2e\xe5\x2a\x22\x1c\xa7\xe0\x12\xdf\x07\xb6\x83\xbf\x0a\xaf\x0c\x81\xca\x27\x0a\xe0\xdd\xb3\x61\x6c\x32\x5e\x27\xc5\xa6\xbb\xe5\x1c\xaa\x98\xac\x2c\x93\xb8\xbe\x81\x3b\x84\x38\xd7\x5f\x11\xb2\x5c\x0d\x94\x87\xc0\x6b\x78\xad\x6c\xbc\x51\xdf\x86\xaa\x57\x54\xf6\x7a\x36\x91\x86\x8c\xd6\xb0\x14\xc8\xad\xcf\xb5\xc2\xa5\x22\xa4\xe4\x1b\x65\xaf\xdf\x0b\xbc\xd4\xe5\xef\x39\x6c\xbc\x3d\x3a\xb2\x59\xa4\xe4\xc6\xb8\x18\x35\x51\xa5\xaa\xbb\x52\x2c\x56\xdb\x52\x94\xf4\x65\x0f\x86\x6c\xc9\xbb\xca\x6f\xe0\x5d\x35\x42\x44\x45\x84\xf3\x6b\xe9\x5c\xf9\x50\xfb\xcd\x26\x65\xd7\xb0\x8c\x8b\x87\x6f\x0b\x0a\x82\x90\xe6\xb9\xcd\x67\x3c\xfb\xe1\x46\xe0\x15\xa5\x99\x91\x84\x29\xcc\x10\x01\x3e\xc1\x08\xc2\xa0\x39\xe7\xc0\x9c\xdd\x28\xc3\x55\x0a\x56\x56\x63\x68\x1b\x02\xdc\x24\xea\x0f\x8a\xa1\x88\x5d\x21\xab\x40\xa7\x98\x8f\xbd\x5e\x4c\x37\x65\x05\x34\xac\x3b\x37\x27\x9c\x2a\xe8\xe6\xb0\x52\x6c\xd4\x5e\xfd\x81\x05\xc8\x7f\xe5\xae\x25\xed\x0a\xc4\x8e\x38\x78\x42\x31\xcb\x40\x29\x29\xa2\x15\x4b\xe6\x96\x88\x36\x4e\xe1\x86\x1d\x8b\x74\x71\x76\xb2\x85\x83\x8d\x7a\x37\x51\xe2\x81\x2a\xc2\x7d\xe0\x41\x4e\xd5\xe4\xe2\xab\xb0\x28\xb3\xd5\xfe\xe5\x2a\x54\x62\x53\xd5\x52\xf6\x55\x3b\x57\xf7\xf9\x79\xe5\xb6\x58\x3d\x0d\xd9\x54\x7d\xd9\xa6\x1e\x82\x1d\xfe\x32\x5a\xb2\x4b\x65\x56\x70\x0a\x28\x1e\x5f\x74\xed\x7c\xa2\x44\xa3\xd3\x9e\x99\x56\xc1\xc8\x15\x25\x2e\x78\xd3\xc7\xe7\xff\xd9\xc7\x81\x02\xff\xec\x72\x3a\xaf\xab\x26\xee\xa5\xd9\x12\x0d\x04\xac\x5b\xff\x02\x3f\xc4\x27\xc1\xf3\xda\xd6\x3c\xb4\x16\x00\xc0\xea\x99\x4a\x87\xce\xb7\x62\x21\x7b\x85\xc5\xfe\x4e\x2d\x97\xdb\xbf\xbf\xdd\xcb\xec\xea\x04\xb8\x74\x4b\x37\xd5\xb6\x1c\x0c\x49\xec\xfb\xe5\x71\x23\x42\xfb\x63\x7a\x72\x7c\xac\xb9\x80\x3d\x92\x3e\x82\xd9\x21\xc0\x90\xa7\x02\x15\x5d\x6c\x29\x2f\x3e\x5c\x2e\xff\x91\xea\x7a\x0d\x6d\xf1\xaa\x4d\xba\xa6\x1c\x4a\xe6\x8d\x4d\x7b\x1b\x8f\x8d\x4f\x54\x41\xfd\x6b\x9f\x9f\xa3\xfa\x10\x86\xdc\xcf\x70\x1f\xce\x94\xf4\xa5\xc5\x59\xad\x35\x21\x08\xa4\x4f\x9a\x3a\x29\x51\xb2\x92\xc6\x2b\x93\x2e\x70\xf7\x34\x09\x82\xad\x43\x95\x5f\xb3\xf7\xce\x58\x31\xbd\x34\x53\xf0\xf7\xbf\xc1\x85\xf0\x89\x03\x43\xd9\x3c\xcc\xd2\x55\xe5\xd3\x00\x91\x22\xb4\xf6\xce\x2b\x15\xad\x63\x4a\x76\x9d\x24\x09\x7d\xc1\x0f\xb9\x03\x1f\x6b\x83\x6e\xe1\xb6\x55\x97\x8f\x2d\x14\x94\x39\x3e\x1e\x7b\xcf\x3d\xc2\x35\x3d\xa2\x70\x03\x1f\x8e\x3d\x95\xf1\xfb\x74\x19\x68\x39\x1f\x53\x23\xe9\x07\x1a\xb7\x7e\x0f\x09\x01\x56\xf7\x9f\x30\x13\xdc\x95\x31\x0e\x2e\xfa\x32\x06\x6d\x1c\xbc\x20\x28\x35\xa9\x7c\x90\xae\x26\x7b\x7c\xe9\x72\x43\x83\xfc\xbe\x89\xd2\x29\x86\xc7\xeb\x4a\x7d\xe4\xa7\x63\xc5\xbd\xe1\xdc\x58\xf4\xfe\xfd\x98\xb0\x51\x48\x2d\x1b\x3d\x33\xf8\x78\x22\x2c\x2b\x7b\xf6\x19\xdf\x50\x61\x24\xb8\xd0\xef\x5b\x9f\xff\x4d\xef\xa2\xef\x50\x1e\x3f\xd0\xa2\xf3\x22\x20\x2d\x85\x0d\x0f\xff\xfe\x04\x5b\xbc\xc3\x4a\xbe\xe4\xa0\xa0\x60\x05\x20\x2a\xb8\x4a\xa5\x45\x5c\xd9\x0f\x28\x62\x17\x3d\x18\xba\x7d\x91\xe2\x53\xfa\xdf\xff\x7b\x30\xa1\xd1\x4d\x93\x0b\xeb\xeb\xf7\x02\x55\xa4\x38\x5d\x9b\xf4\xf3\xf3\xed\x22\x4b\x01\x91\xe7\x28\x84\x7a\x20\x12\x91\xf8\x62\x5b\xb5\xec\x85\x69\x4b\xbd\x8d\x73\x4a\x05\xa3\xae\x5d\xf7\xf2\xcb\xa4\x29\xd5\x52\x75\x8f\xc0\x03\xf2\xce\x2b\x7e\x54\x46\x89\x5f\x4b\xf1\xa3\x00\xa8\xe6\x63\x5f\xab\x88\xad\x5d\xa6\xef\xc3\x52\x0a\x5e\x1b\x1f\xaf\x3b\x88\xe4\x08\xfa\xe8\x2c\xd7\xe9\xca\x97\x3b\x03\xcd\xc5\xd9\x76\x3f\xb3\x89\xe9\x19\x64\x10\xd2\x7f\x52\xfb\xdf\x6b\x4e\xd6\x36\x1f\x98\xd5\xe9\xea\x45\x34\x40\xe8\x68\x2a\x48\xe5\x56\x61\xc4\x66\x6a\xba\xcc\xf3\xf3\xed\xbc\x0c\x07\x53\x84\x00\x16\x1a\xdf\xa4\xfd\xb7\x13\xb0\x79\xa0\x7c\x35\xfb\x52\x62\xc3\xf0\x42\xad\x8b\x8f\x6b\x01\xf4\xcb\x2f\xb7\x6d\xaf\x0c\x4d\x01\x05\x4a\x44\x88\xdf\x0e\x7c\x56\xf5\xed\xa6\xf2\xd8\x52\x1a\xc7\x68\xd2\x55\x7f\x88\x7a\x53\x6b\xdd\xd5\x15\xbe\xfa\x7c\x87\xc6\x14\x72\xf8\x3d\xeb\x92\x08\x8e\xaa\x77\x97\x96\x28\xe4\xb0\x2b\xb5\xe6\xc8\x6c\x36\x60\xda\x0e\xb6\x8b\x2a\x54\x91\xf6\x98\x38\x1d\x7a\x2e\xc8\x39\xb5\x77\xe4\x45\x96\x52\xdd\xd4\x33\xf8\xb7\x94\x05\x36\xcf\x5b\x6c\x11\x6b\xc5\x00\x72\x56\xbc\x1d\x5c\x55\xd0\xc5\xab\xae\x7c\x1d\x46\x19\x49\x1d\x70\xf8\x0b\xc8\x01\x8b\xd1\x61\x96\xdc\x0e\x34\xeb\xd3\xd5\x65\x07\x26\x77\xd2\x98\xd8\xa6\x5f\x53\xc2\xd1\xd4\x62\x91\x8b\x0e\x23\x9b\x14\x69\x9c\xf6\xd7\x5a\xaa\xd1\x04\xea\x81\x94\xe9\x76\xa2\x3c\xa9\x32\x94\x0f\x6c\x5c\x90\xf5\x47\x4b\x41\x70\x41\x45\x16\x33\x70\xef\xb3\xb5\x6c\x92\xdc\x70\x28\x87\x31\x87\x8c\x19\xab\x08\x47\x24\xe8\x66\xde\x50\x7c\xdb\xa5\xf2\x95\xa8\xc8\x4b\x0a\xc9\x85\x16\xa3\xbc\xb1\xce\xd6\xf0\x90\x55\xc0\x6f\xba\x69\x09\x79\x62\xa4\xf2\xbf\x47\x0f\x97\x8f\x15\xe8\x38\x1d\xd9\xcc\x14\x36\xdf\xa3\x64\x20\xb9\xf0\x84\xe2\x19\x30\x40\x0e\x99\xe7\x4a\xbb\xff\x30\xf0\x0c\xa0\x7f\x81\xb5\x4d\x70\xea\x8f\x29\x9d\xae\x3d\x74\x53\xd8\x0c\x85\x73\x85\x08\x6a\xaa\xe3\x1f\xef\x96\x62\x7c\xdc\x99\xe0\xa0\xe0\x45\x0b\xb3\x7f\xe7\x4c\x20\xc1\x4d\x4b\xb6\xed\x0c\x5c\x42\x9a\xff\xdb\x63\x45\x46\xfb\xed\x87\xea\xc3\x15\xe6\x68\x04\xd5\x37\x94\xc7\x20\x51\x86\x37\x70\x8e\xb2\x49\xcc\xda\x3f\x6c\x2a\x35\x8c\x6c\x92\xbc\x9a\x46\xb1\xe2\x28\xbf\xa3\x39\xca\xef\xd4\x96\xb0\xb9\xc3\x6d\xa3\x90\x14\xa2\x24\xa9\x0a\x2e\xa7\xd1\x4e\xe7\x7d\xed\xef\x3d\xa5\x9b\x49\xd8\xd6\x40\x76\x78\x4d\x97\x93\x47\x1a\x4f\x3e\x56\xcf\xfb\xbf\x09\x94\x40\x8d\x6a\x9b\xdc\xd0\x96\x98\xaf\x05\x8a\x13\x7b\x03\x72\x03\xa8\x8c\x6d\x29\x98\xdc\x87\x4a\xc9\x12\xa2\x02\x2c\x9d\x85\xa1\x22\x3d\xbf\xd6\xdc\x61\x5f\x13\x27\xb1\xf2\x2a\xbc\xd5\x22\xc7\x9b\x81\xba\xa7\x4d\x15\x48\x64\x65\x9e\xa7\xb4\x2e\x09\x6f\xb5\xe5\xc4\xe4\xcf\x8c\x77\xc2\x9e\x5f\x7e\xd9\xc1\x7d\x44\x59\x52\x41\xc0\xce\xa8\xef\x5d\x4a\xd3\x5e\xae\x70\x14\xdc\x4c\x62\x62\x2f\xfd\x08\x3a\x55\x9f\xd4\x5e\x32\xa9\xb9\xe6\x79\x64\x92\x1d\xed\x23\x4d\xef\x9f\x50\x27\x8f\x6d\x8f\xfc\xfb\x7d\xf7\x18\xfc\x49\xf1\x94\xad\x1e\x9c\x34\x0a\x7d\x18\x57\x64\xd6\xa2\xd6\x28\x81\x86\x22\x68\xd4\x36\x8c\xf9\xf9\x76\xd7\xe4\x76\x68\x12\x6c\xee\x4e\xbd\x56\x15\x42\x64\xf1\xec\x45\x79\xbf\x74\x55\x5a\x4c\x87\x3f\x41\x2c\x2c\xfa\x8a\x0a\x74\x7c\x25\x10\xad\xe3\x42\x84\x35\x08\x56\x74\xd0\x5b\xe3\x2b\x4d\x72\x9f\x48\x17\x59\x19\x2e\x43\x8b\x44\x62\x00\x25\xd7\xcf\x3a\x02\x42\x03\x53\x23\x1f\x23\x5a\xb8\x62\x8d\xab\x58\xd6\x2f\xb9\x62\xe8\x34\x91\xab\xcf\x88\x26\x72\x13\x87\x04\x9e\x5f\x58\x8f\x85\xc4\xe0\x0b\x7a\xe7\xbd\x6e\x43\x06\xd4\xb5\x37\xb1\xbb\xa6\x3c\x0b\xae\x29\x27\xea\x81\xcd\x79\x0c\x3b\xd8\x43\x75\x11\x02\xc0\x7e\x5a\x65\x3d\xbd\x28\x34\xf1\x63\xb4\x3a\xb3\xe0\x63\xe0\x19\xba\xeb\x81\xb7\xea\x78\x0f\x41\x1f\xe2\x90\x2b\x63\x25\x03\xb6\xbb\xa3\x90\xb9\xad\x75\xa5\x19\x0d\x1f\x2a\xa4\xac\x57\x03\x05\xb5\xb9\x46\x03\x4b\x14\x26\xe9\x4a\xb1\x4f\x5e\x72\xe6\x5f\x4b\x26\x13\xc6\x22\xc2\x0a\xd6\x75\xe7\x13\x6f\x08\x60\x8f\x16\x4f\x62\xb0\x8b\x99\x1f\xfd\x90\xb2\x1f\x97\x9c\xe7\x63\xbc\x65\x2c\x04\x77\x95\xbe\xc1\xf3\xc4\x12\x17\x0d\xa0\xea\xd2\x90\x90\x3e\xdb\x51\x8c\x1c\x5e\xa9\x90\x59\x5f\xf5\xfa\x11\xff\x53\x9b\x08\xe3\x82\xbc\xa9\x16\x61\x67\x83\x55\x5d\x3d\x36\xce\x6d\x94\xcd\x00\x6b\xf8\x5d\x05\x1d\xe9\x67\x26\x62\xe3\x85\xa6\x28\xd6\x27\x17\xff\x46\xc3\x0d\xa5\xe9\x90\xa6\xcb\x8f\xf8\x88\x91\x07\x33\x40\xa3\x8c\x16\xc0\x98\xff\xd9\xd8\x03\x81\xa7\x68\x5b\x47\x53\xfb\xbe\x32\x50\xde\x4b\xc2\xcb\xf8\xef\x33\xeb\x74\x91\x78\xc8\xb7\xb4\xb3\xf1\x9d\x86\x52\xae\x89\xd3\xc4\xb6\x26\x04\x0b\xaa\x9f\x90\xa2\x9b\xcf\x61\x57\x6c\x16\x15\x99\x09\x5b\x8a\x7d\x08\xaf\x4b\x3e\x6e\x32\xa9\x0c\xcb\xb8\x28\x33\x13\xd3\x2a\x81\xad\x10\xb4\x1a\x81\xa5\xa9\x12\xc6\x56\x2d\xdc\xf8\xd2\x5c\x7b\xd5\x9a\x65\x9b\xb4\xbc\x97\x30\xe3\x16\x04\x01\xdf\xc0\x74\xe9\xa7\xf1\x92\x9b\xa7\xee\x3a\xdd\x83\x3e\xa7\x7a\x4d\xf9\x5a\x52\x0c\x6c\x11\x85\x28\xcc\x88\x7e\xab\xef\xdb\xdd\x50\x92\x32\xac\xce\x85\x32\xf0\x1f\xfa\x64\xc4\xda\xe5\x7c\x8f\xef\x6b\x71\xc1\x1e\x0b\xdf\xa7\x3a\x5e\x8e\xf9\x98\xa2\x9f\xbc\x81\xb1\x8f\x12\xc9\x27\x18\xee\x22\xa5\xe9\x65\xa9\x47\x65\x37\x86\x14\xf7\xb4\x26\x79\xd1\x8d\x61\x7a\x41\x97\xd4\x55\x4f\x5c\x21\x78\xaa\xf3\x9c\x22\x5a\xe6\x51\x52\xda\xa4\xc7\x39\xdb\x84\x48\x97\xc0\xa0\x9c\x2d\x5f\x66\x51\x7d\x00\x4d\x81\x47\xa5\x18\x26\x56\x23\x43\x78\x04\xf2\x89\x51\x99\xac\x21\x82\xc6\xfd\x9f\xf5\x1c\x2d\xde\x05\xf1\x89\x63\xb5\x40\x77\xee\x70\x7b\xb0\x36\x4a\xf1\x06\xb8\xd8\x2b\x42\xff\x9e\xf8\xb3\xa5\x5a\xb8\xb6\xcc\xd2\x91\x35\x90\x1c\xc7\x10\xba\x87\x01\xee\x48\x6d\xaa\xc7\x44\x8b\x22\xa3\x9c\xc7\x1a\x31\xc7\xb4\x36\xed\x93\x0a\x06\xee\xe3\x9d\x67\x14\xe0\xe9\xeb\x65\x44\x4b\x5b\xb5\x1e\x70\xab\x40\x77\x59\xbe\xe3\x1e\x81\x59\xb1\xe1\xd4\xa4\x6d\xf1\x84\x23\xb1\xb2\x2a\xae\xc3\x8b\xdb\x9f\x4b\x3e\xd7\x6a\xed\xdf\xef\x84\xda\xa8\x11\x23\x4a\x6d\xde\x8d\x2d\x34\x79\x94\xa4\x6c\x20\xa2\x95\xd4\xf9\x38\xd0\x6e\xba\x71\x2f\x1d\xaa\x52\xe1\x96\x6a\x77\x6c\x29\x08\x58\x61\x9d\x95\xb1\x4a\xa7\xef\xe8\xea\xeb\x9d\x5a\x6b\xf1\x2b\x5f\x6c\x8f\xb2\x28\x85\x44\x1c\x80\x3e\xef\x29\xfd\xe5\xf7\xc6\x9e\x4d\xea\x40\xcb\x33\xbe\xd6\x79\x0a\xfb\x8b\x68\x8f\x7a\x44\xec\xb7\x68\x78\x01\x3b\xc5\x46\xb1\x02\xc3\x52\x12\x2a\xa6\x28\x33\x3b\x39\x90\x3d\xe6\x61\x4b\xb9\xd7\x75\xcb\x5e\x9f\x58\x25\xae\x64\x06\x21\x49\x71\x1b\xf2\x9b\xeb\x2b\x69\xbf\x4f\x0b\x46\xf5\xa2\xe5\xc1\xfb\x68\xe2\x92\x0b\x5e\x46\x36\x23\x73\xd3\x2e\x6b\xb1\x6b\x9d\x53\xd1\x6d\x69\xa0\x90\xc5\xd6\xac\x4c\x6e\x91\x17\x03\x9f\x91\x5f\x1c\x7b\xf9\xdb\x74\xd5\x12\x0b\x06\xab\xef\x75\x85\xc0\xbc\xae\x36\x98\x5f\x3b\xf4\x6b\x53\x1e\x48\xf7\x7d\xbc\x2d\x11\x60\xc5\x38\x47\x68\x7e\xd2\x75\x59\xd3\x2c\x1c\x58\xf2\x94\x97\x1c\x81\x25\xc1\xf0\x61\xd1\x07\x93\x8c\x72\x29\x36\x45\x61\xb3\x35\xb2\xc9\x46\xd9\xfc\x1d\x94\x9c\xf4\xc0\x03\xb2\xe3\xba\x42\x2a\x6c\x36\xe8\x14\xcf\xb5\x43\x53\x16\x54\x1b\xa0\xb7\x26\xd1\xa7\xa6\x0a\x3f\xe3\xb0\x5f\x61\x66\x7b\x51\x97\x31\xe7\x5c\x10\x0b\x3c\x19\x89\x1d\x45\xf0\x36\x06\x26\x1b\x9a\xd0\x96\x58\x3d\x94\x56\xed\xbb\xfc\x14\xf8\xac\x41\xbf\xa2\x5d\x8e\xf2\xa8\x67\xa7\x3c\xe1\x7c\xb7\xaa\x21\x61\x5b\x43\x68\x7d\x53\xad\xc7\xc3\x2a\x5b\xee\x56\x2b\xf2\x23\x1e\x4c\xbf\x85\x25\x12\x8b\xdc\x77\xb5\x40\x12\x77\xbc\x91\xed\xde\x9d\x00\xa4\x41\x51\x01\x0f\xf0\x66\xa0\x28\x59\xdf\x1d\xfb\x45\xfc\xb1\x75\x05\xd3\xdf\x52\x22\xa6\x71\x14\xeb\x0e\xfd\xb6\x72\x85\xe1\xc2\x13\xc2\xd8\x6b\xb5\xc4\x63\x7e\xbe\xdd\x4b\x57\x93\x55\x93\x41\x3c\x99\xf9\x6b\x63\x4f\xfb\x03\x67\x13\xe1\x7e\x9d\x24\x53\x85\xce\x43\x9b\x31\x01\x4b\x54\x6e\x3e\xa0\xcf\xf3\x71\x13\xa7\x8c\xd4\xea\xf5\x27\xce\x28\x28\xeb\x99\x06\x6a\xe1\xa1\x76\x91\x99\x9e\x43\x04\x48\x05\xb3\xfa\x19\x09\xf2\xfc\xa4\x3b\x5f\x4b\xc3\x17\xc9\x9c\xe6\x15\x55\xee\x46\xcb\x88\x59\xe3\x7c\x32\x21\x1d\x18\x5b\xca\x9f\x81\x2c\xc6\xa6\xf1\x36\xb2\x31\x3e\xa1\x7b\x14\xc5\xea\x96\x52\x25\x7c\x4a\x69\x11\x27\xb6\x58\x9b\xf6\x52\x0f\x6c\x29\x84\xc0\xe7\xb7\x14\x87\x98\x77\x5f\xd1\xd4\x69\xa8\x0f\xf6\x33\x26\x88\x02\x06\x70\x5b\xc9\x84\xde\xae\xdd\x2f\x69\xf0\xe7\x69\xbc\xe2\xe2\x1e\xc4\xaf\x80\xca\xf0\xb1\x0e\x51\xa3\x08\xf8\xa9\xed\x77\xb1\x7d\x3a\xb4\x5b\x35\x78\xc4\xc2\x7e\x42\x81\x21\x8c\x38\x53\x45\x2d\xfc\x84\x76\xe6\x3f\xe1\xb9\xdc\x69\x9a\xd8\x8c\xe8\x48\x88\x64\xef\xd2\x75\x23\xb4\x46\xb0\x82\x71\xfa\x24\x1c\x27\x91\x20\xdf\xc2\xda\x82\xbf\xfa\x85\x8e\xb7\x46\x7a\xb4\x33\xd1\xd5\x62\xb6\x48\x3e\x8d\x6e\x02\x3a\x30\xdf\x56\xd0\xec\xb7\x03\xff\xc4\xde\x46\xc5\x81\xff\x68\xfc\xa9\x9d\xe4\xd0\x2f\xb4\xe7\xe7\x17\x01\x5d\x03\xe0\x84\x25\xc4\xe5\x03\x2d\xa7\x21\x79\x9b\x72\x05\xf9\x35\x0f\x5d\xb3\xc3\x6e\xda\x5b\x9b\xa1\x07\x21\xca\x00\x78\x46\xa8\xc5\xef\xee\x50\xba\x86\x46\xc9\xeb\x81\xa7\x25\xdd\xa3\x8d\x88\xff\xbb\x4b\x1b\x0b\x13\xc3\xcd\xf3\x61\xc6\x4d\xfe\x97\xbb\xa4\x25\xd4\xaa\xfb\xd6\x4a\x3f\xc2\xe3\xb6\xf3\x22\xcd\x4c\xdf\x4e\x29\x42\xe5\x03\x5d\xa8\xb8\x80\x70\x55\x52\xbc\x86\xa5\x32\x4b\xfb\xae\xdc\x89\x35\xf1\x7d\xdd\x44\x7b\xbf\xc6\x1c\x7f\xa1\x9d\xbc\xf8\x0a\x8d\x5d\xa4\x1d\x0c\x8a\xe5\x93\x06\x77\xb4\x43\xed\x51\x6c\x92\x44\xe6\xaa\xf8\xbf\xd1\x14\xe1\x13\xc5\x01\x75\x52\x90\x33\xbe\x37\x70\x96\xb4\xd3\x26\xae\x0e\xfb\xe6\x09\x84\x62\xa8\x32\xc2\x35\x9c\xff\xc1\x85\xbc\x26\x1b\x82\x40\xe7\xa2\x04\xa7\x2e\x72\x0f\x25\x2c\x6d\xf4\xc5\x15\x2c\x4c\x1b\xe9\x73\x2b\x42\x58\x1d\x8a\xf5\xab\xed\xa2\x0c\x97\x27\x59\xd8\x67\x34\x0b\xfb\x8c\xd2\x71\x1c\x65\x66\x05\xe9\x23\x50\x53\xc7\x95\xd3\xf2\xf1\x1a\x53\x4b\xca\x8d\x3d\x13\x0d\x0c\x55\x72\xdd\x70\xf9\xe9\x58\xe9\x28\x6b\xef\xe2\x22\x03\x5a\x8b\x21\xf9\xbc\x2d\x21\xf1\xbe\x45\xf7\x2e\x60\x7d\xd5\xa0\xbc\x55\xeb\x17\x2d\x2c\xb4\x43\x93\x59\x60\x73\xb0\x26\x73\x0b\x43\x86\x92\x87\x81\xdd\xaf\xed\x23\x47\x66\xbf\xd6\xce\xa3\xe1\x88\x03\x29\xb1\xc8\xf4\x4f\xfe\xbd\x09\x66\x7a\xcf\xac\x3d\x4f\x73\x09\x8b\x47\x0b\x8b\x07\x8a\xf4\xdf\xd7\x70\x61\xd6\xbd\x43\x85\xec\x0a\x71\x58\xd9\xca\x59\x75\xd2\xde\xa1\xe8\x0b\xed\x80\xc7\x3a\xfe\xf9\x3e\x0b\x71\x40\x4c\xfa\xed\x40\xf1\x7e\xbf\xa3\x72\xe2\xdd\xeb\x2a\xbf\xe3\x15\x13\xf3\xea\x8a\x12\xf6\xb9\x31\x56\xf0\x83\x47\x41\xd2\x45\xaa\x7e\x0a\x48\x2b\x7c\xf1\x2d\x0a\xf1\x90\xbf\x4d\x77\xaa\x3c\x1f\x83\xf0\x26\xbf\x16\x3c\xcb\x7d\x1d\xbf\xf7\x5b\x53\x1e\x9d\xaa\xde\x1f\x42\x3c\x76\xc0\x64\x6c\x92\xae\x7c\xd4\x3d\xcd\x08\x7d\x8e\xd0\x5d\x51\x71\x4f\x2b\x2a\xee\xe9\xda\xe0\x3d\xb0\xd0\x5e\x49\x7b\xcb\xec\xa2\x84\x9f\xf9\xfb\x0a\x37\xf6\xf7\xdd\x34\x8a\xd3\xdc\xce\xf8\xa6\xea\x73\x1d\xc5\x96\x7f\x94\xd6\x74\xa4\xbe\x8f\x53\x33\x49\xd8\xb9\xf4\xc4\xb1\x8b\x3c\xb9\x2e\x5f\x35\x48\x63\x84\x9e\x08\x43\x7e\x1e\x78\x88\xeb\xd5\xb1\x8a\xf3\x6e\x06\x4a\x48\x7b\xc3\x6b\xdc\xc5\xe5\x70\xa2\x32\xac\xdc\xe8\x37\xeb\x68\x87\xb9\xb6\xed\x4b\x29\xb9\xc9\xc6\xc9\x4f\x9d\xd1\x60\x6d\x6f\xf5\xe8\x45\x1c\xc5\x43\x77\x1f\x41\xa8\x86\x1e\x34\xcf\x1c\x27\xad\x72\x64\xd6\xbd\x1f\x2d\xb2\x08\xd0\x32\xe1\x0d\x6e\x7f\xba\xb3\x63\x7f\xa2\x26\xd0\xcb\x2f\xcf\x54\x3b\x0f\xca\x12\xf0\x5b\x64\x61\x80\x71\x4d\x05\x40\x2c\x1b\x5a\xce\xd3\xfe\xb4\x46\x59\xdb\xa4\xe0\x8c\x0d\xc9\x16\xbb\x22\xf2\x89\x8a\x71\x99\xa7\x41\x35\x87\xfd\x73\x8e\x4c\xa9\x44\x4a\x21\x55\x87\xea\xfd\xdd\xb1\xda\xfd\x7e\x5f\x3d\xaa\x3c\xea\x29\x07\x21\x16\x75\xe7\x93\xf5\x06\x99\x87\x70\x10\xd9\x25\x25\x71\x8e\x70\x9c\x8f\x1b\xcc\x07\x0f\xb6\x8b\x32\x4b\x96\x2d\x62\x24\x6c\x02\x57\x95\x31\xcb\x55\x45\x1f\xec\xd9\x08\x6d\x43\x29\x36\xd3\xc5\x48\xb5\x79\x27\x88\xa8\xca\x58\x6c\x62\xb3\x3e\xb1\xaf\x14\xdb\xef\x12\x85\x9f\x7c\xec\xd1\x59\x99\x49\x5a\xca\xc8\x12\x4b\x28\x1f\x2b\xaa\xf3\xaa\x89\x97\xa3\xa4\x3f\xd3\x72\xab\xd8\x7b\x78\x05\x52\x95\xaa\x26\x3f\xe2\xfe\x37\x68\x46\xf2\x1f\xa9\xca\xfe\x31\xd5\x7c\x20\x4d\x37\xc2\xb5\xa0\x7e\x7a\x99\x3e\xcf\xc7\x08\xa7\x70\xf2\x13\x00\x0d\xf8\x44\x61\x52\xc4\x47\x10\x91\x01\xae\x02\x8b\x36\xbf\xda\xc0\xa3\x2a\xce\x68\x2c\x8b\xe0\xab\x54\xbe\xa4\x19\x4c\xe7\xc6\x5a\x92\x7a\x14\xa7\x6b\x36\xcb\x67\x94\x80\xf5\x3d\xa5\xf6\x77\x4e\xb9\x21\x9d\x43\x24\xc2\x8a\xd4\xbc\x00\xa2\x6e\x7a\xae\x66\xbb\x5c\x25\x22\xc4\x81\x2d\xca\x84\x28\xf0\xb4\x67\x62\x25\x38\xae\xba\x1c\xde\x0d\xaa\x67\xa2\x6c\x6d\xca\xdf\xdf\x3e\x5a\x93\x64\x3b\xaf\x3e\x81\xdf\xda\xb5\x2e\x9f\x18\xc5\x26\x02\x4b\x84\xf3\x0f\xfa\x2b\x2c\x3d\x1c\xd9\x23\x64\xfd\x88\x4a\x10\xca\x9b\xc4\x33\x6d\x0d\x12\x35\x07\xf8\x74\x4c\x4d\x26\x74\xa2\x77\x70\x7a\x3c\xc1\x89\x4f\x97\x4c\x36\xe5\x0b\x23\x33\x1d\x0f\xa7\xbc\xaa\x42\x98\xdb\x2e\x74\x5c\x8a\x4d\x3e\x90\x46\xa5\x23\x17\x7a\x9b\xc3\xad\x26\xcc\x5b\xd7\x0e\xcc\x4a\xc4\xa0\x24\x80\x57\xc0\x2b\xe3\x63\xf7\xed\xb1\xe9\xda\x58\x60\x4f\x08\xae\x31\x38\x5c\x78\xe7\xcd\x76\xcf\x2b\xd5\xe2\x9e\xa9\x5e\xcb\xdc\x61\x7e\x7c\x1b\xca\x4b\x62\xc3\xa5\xfc\x65\x62\xf2\xbc\x1c\xba\xc4\x45\x32\xd7\x96\x33\xcd\xbf\x16\x7c\x5a\x4d\xe5\x61\x9a\xb8\x3a\x06\x8d\x6c\x41\x5b\xf9\x36\xe2\x56\x2d\xdc\x38\xb0\xd0\x8e\x86\xd5\xb8\xcd\x5b\x13\x4f\xa5\x5a\xcc\xe5\x71\x3d\xad\x66\x06\xf5\x7d\x9f\xf2\xf8\x4d\x96\xc6\x40\x1d\xf7\x87\x81\xd2\x4f\xbd\x40\x1b\x38\x0b\xfb\x69\x35\xed\x33\x63\x2f\x1c\x7f\x3b\x50\x3d\xa3\xbb\x10\x03\xe7\x36\x0a\xea\x5c\x4e\x50\xb7\x8a\x71\xb0\xac\x5f\x1f\xef\x1c\x37\x68\xcf\xb0\xc5\x0e\xd7\xcf\x03\x6d\xbd\x3a\x56\xc4\x99\x1f\x35\xc1\x5c\x86\x66\x34\x72\x0f\x1a\xc5\x87\x9f\xa9\x4a\xce\xcf\x82\x1d\x40\xe8\x5f\x7f\xa9\x0a\xce\x69\xc9\x72\x49\x86\x8a\x1c\x5b\x9f\xff\x4d\xa7\xca\x5a\x3d\x2b\x00\x80\xee\x61\x59\x93\x20\xb2\xe1\x55\xe4\x69\x5c\x4a\x09\x0d\x8d\xe6\x77\x95\x4a\xf6\xbb\x6a\x33\xca\x47\xb1\x4d\x7a\x51\x2f\x5e\x9b\xa1\xbb\x96\x4c\x88\xee\x1a\x75\x95\xd3\x78\x82\xae\xb5\xee\x0c\xd1\x78\x39\xc1\x18\xbd\x57\xdb\xf6\xe7\x0e\xb7\xc3\xb4\x07\xfd\x69\x71\x9a\xa3\x0b\x17\x0b\x3a\xdf\x45\x1d\x0d\xc4\x0c\x1f\x51\x12\xf4\xc4\xf8\x78\x82\xe2\x38\x2a\x95\xe6\x1b\xc2\x1d\x8e\x10\xf9\xa4\xf6\x38\x0e\x7f\xb9\x1d\xa6\x49\x1e\xb1\xff\x9f\x88\x0b\x79\x62\xc2\x25\xdd\x05\x36\x45\x99\xf5\xcc\x1a\xa1\xda\x51\x6d\x6f\x21\xcc\x12\xe5\x7e\x7a\x16\xe8\x2a\xdc\x53\x7d\xe0\x55\x93\xf4\x0c\xe6\xef\x84\x7c\x1e\x76\x85\xb7\x75\xd5\xfc\x23\x8d\xc7\xaa\x5e\x13\x6f\x10\x4e\x8e\xdd\x21\x13\x61\xbe\x2d\xde\x83\x3b\xf7\xf4\xc5\xd9\x45\x6a\xf9\xb5\x3c\xa9\x1b\x2a\x73\x42\x6e\x57\x7e\x19\x69\x12\xda\x2c\x79\x42\x99\x36\x3f\xde\xd1\xa2\xe1\x64\x56\x25\x6d\x5e\x3c\x5c\x11\x70\x53\x1a\x9b\x17\xb4\x89\x01\xf8\xee\x80\x4d\xde\xa5\x39\xca\xc7\x4a\x0f\x71\x22\x46\xdf\x54\x12\x85\x8f\x83\xb9\x8b\x5d\x77\x5b\x59\xaa\xbd\xdb\xc8\xb3\x59\x8e\xc2\x65\xf0\x6c\xb1\x5e\x73\xce\x89\xb0\x4d\xa0\x29\xf8\xe6\x8b\xca\x0e\xf7\x84\x0a\x97\xe2\x34\x9f\xc1\xdf\x21\x04\x78\x2f\x50\xb4\x91\xef\x2b\xf1\xcf\x4d\x95\x84\x7e\xa0\xe3\xcc\x2b\x70\x51\x93\xd8\xf1\xd3\x5e\x22\xe1\x53\x88\x4d\xe9\xcf\x4e\x3d\xdb\xa1\xd5\x07\x85\xf5\xdb\xf4\x60\x44\xa9\x4a\x95\xbf\xdf\x0e\x54\x43\xf0\x89\xf5\x2a\xb4\xc0\xb6\x77\x96\x16\x00\x6c\x45\xd7\xb1\xaa\x09\x9f\x48\x45\x4a\xff\x5a\xc5\xcf\x8f\x74\x54\xa0\x79\x99\xd4\x83\x84\x7f\x45\x8f\x0c\xf5\xd0\xa9\x75\xc5\x21\xbc\xe5\xf1\x9c\x33\xcf\x10\x8f\x1e\x99\xd3\x75\x8e\x09\xf0\x23\x77\x21\xbe\x89\x81\xf0\x48\x47\xc7\xbd\xbe\xef\xf3\x24\x32\x2f\x64\x1b\x77\xbc\xdc\x5f\x98\x66\xc9\x52\xa9\xb5\xf1\x8f\x2b\xb6\xde\x71\x65\x20\xda\x4d\x33\x14\xcc\x99\x29\x1a\xf8\x92\xb8\x96\x66\x26\x81\x7a\xb7\xb6\x32\x6f\x4f\x31\x60\xeb\x00\x72\x32\x85\x37\x5e\x1a\x49\x08\x18\x4c\x07\xe7\x93\xda\x82\x31\x77\x18\x05\x10\x8b\x08\xc1\x69\x8f\x7a\x34\xe9\x0c\xcd\x4b\x6e\x38\x29\x49\x93\xa1\x1d\xa6\xda\x4b\xec\x9c\xf6\x12\x3b\x17\x3c\xaf\xdc\x06\x4c\x92\x1b\x2a\xb5\x51\x5f\x13\x95\xbc\x77\xc7\x9e\x5b\xf2\x89\x46\x3d\x6f\x8e\x15\x89\xfa\xde\xd8\xef\x9a\x1f\x63\x7c\x8a\xe3\x53\xbd\xf7\xbc\x04\xc3\x5a\xf7\xb5\x1f\x8c\x55\x6b\x08\x5a\xbd\xd8\x5f\xea\x96\xfa\x52\xf9\xe8\xf7\x00\x59\x45\xd5\xe0\xd6\x58\xe9\xb6\xde\xf2\x2c\x35\x32\x72\x08\x0b\x8d\xc8\xfa\x24\x98\xf4\x45\x6e\x29\x8b\xe9\xc7\x5d\xe0\x93\x89\x79\x27\x36\x75\x58\x3f\xca\xc6\x53\x4d\x05\x51\x1a\x68\xd8\x6d\xab\xb8\x26\x13\x05\x4c\x2c\x99\x67\x34\xca\xe1\x4c\x8d\xbb\x48\x09\x7a\xd4\xb3\x69\x9c\xf6\xa5\xa7\x71\x68\xc2\x38\x5a\xca\x82\xba\xbe\x57\xf6\xa2\x94\x65\x59\x9c\x5f\xf6\xe2\xac\xb7\xc3\x3b\x20\x37\xf6\x4f\x27\x72\xa2\x1c\x8a\x9b\x9a\xf3\xec\x8c\x9b\x7d\x6d\xea\x86\xca\x3a\x77\x75\x94\x85\xca\xae\x75\xed\x17\x9d\x24\x26\xca\x74\x81\xeb\xa7\xba\xc0\xf5\x53\x55\x23\x37\xdd\xbc\xcc\x7a\x98\x26\x40\x97\x7e\x73\xec\x91\xa6\xdf\x54\x3e\x68\x59\xda\x9d\xe8\x99\x69\x58\xc9\x45\x25\x54\xb5\x66\xf3\xc2\x56\xdb\xe2\xe3\x1e\x64\x03\x45\x71\xdc\xdb\xae\x8e\xc2\xb7\x31\x20\x46\x68\x39\x54\x8a\x11\xf5\x41\x7a\xd1\x58\x43\xf6\x50\xdf\x1e\xd1\xbd\x64\xed\x8e\xc8\xec\x95\x4f\xd0\x14\x40\x90\x77\x0c\x6b\xa6\x30\xfd\x94\x08\x62\x5d\xfb\x08\xf9\xeb\xb0\x1b\xbb\x15\x83\x15\xf8\xd5\xf8\xaa\x63\x1b\xc8\x00\xbb\x6b\x0a\xa1\xa9\xa8\x52\xe2\xd7\x1e\xda\x4b\x59\x9c\x25\xcd\xd0\x32\x97\x00\x9e\x11\x26\x8a\x89\x7b\x57\xbb\x22\x9c\x75\xb6\xf4\x65\xd2\xb3\x59\xb5\x52\x4a\x1a\x2c\x59\x28\xfd\xb5\xa8\xb3\x69\x4a\x7c\x9a\xf5\x4d\x12\xbd\x4a\xc1\xf9\x23\xaa\x7c\x06\xf3\x17\x44\x10\x17\x69\x40\x62\x8a\x6f\xd3\x4a\x8d\x27\x76\x95\x06\x9a\xd0\xcd\x7d\x13\xf4\x04\xe2\x27\xa4\x88\x7f\x8d\x2b\xc5\x68\xbe\x0d\x97\x09\xa9\xf3\xee\xf4\xeb\x93\x15\xa2\x0a\xaf\x6c\xb6\x42\xa0\x33\x6d\x87\x8b\xef\xf5\xd1\xbf\xa3\x89\x67\x65\x3e\xe0\x5b\xde\xa6\xf6\xc5\xf6\xdd\x5a\xc3\xe5\xc8\xec\x5c\x3b\xb3\xba\xc1\x24\xea\x9a\x2d\x65\x7d\xbf\xb3\xb4\x40\xa4\xdc\x72\x54\x25\x22\xf2\x31\x44\xfe\x3f\xc5\x33\xe5\x93\x46\x22\x7a\xd7\x86\xe9\xd0\xc2\xba\xc1\xb9\x19\x1f\x99\xe5\x72\xc7\x6d\x64\x05\x0c\xbd\x43\x6e\x8a\x6a\x0d\x30\x95\x18\xbb\x17\x9a\x96\xa9\xb2\x88\xe2\xe8\x55\xc4\xb7\xd8\x27\x01\x7a\xe1\xe3\x46\x71\xdf\xa1\xc9\xb2\x88\xb9\x73\x08\x1f\x76\x23\x64\xe2\x93\x75\x85\x45\x28\xb2\x68\xc4\xad\x5f\xb4\x38\xcf\xea\x7e\xe7\x59\xc7\x4f\x29\x93\x38\xf5\x2d\xbf\x6d\x58\xc5\x21\x86\x02\x04\x4c\x84\x42\x3c\xbc\x1a\xf0\xf6\x28\x4d\x18\x3c\x02\x80\x03\x1b\x23\xf2\x49\x47\x41\xc8\x4d\xbc\x42\x06\xb3\xd5\x84\x03\xc6\x12\x44\x28\x3e\x0e\xfc\x76\x6e\x46\xa3\x2c\x5d\xb1\xbd\x3d\x35\x42\x32\xd2\xbe\x53\xca\x1e\xe3\x71\x18\xa4\xc8\x3e\xaf\xa6\xe6\xb5\x49\x0d\x05\x5d\x18\x28\xac\x51\x86\xca\x8c\x89\xa8\x93\x60\x8a\xb4\xec\x0f\xf6\x50\x5a\xe8\x8c\xd3\x17\xc5\xa3\xf4\x7b\xf4\x6a\x45\x3b\xde\x97\x19\x4f\x04\xca\x92\xf5\x18\xcd\x2b\x04\xdd\x57\xc6\x8f\x79\xa1\x6f\x43\x59\x04\x72\x85\x8b\x13\x46\xed\x63\xff\x13\x7f\x3c\x71\xd1\xaf\xda\x64\xc6\xc3\xa9\x7f\xaa\x4d\xf3\x36\x29\xde\x46\x2c\x01\xe1\x03\x64\x3c\xf7\xc6\x0a\xb0\x5f\x2f\xbe\xfe\x6a\xdb\xe4\x51\xcf\x12\xbc\x49\x4c\x58\x15\x04\x16\x97\x82\xbc\x70\x77\xc7\xe3\xcc\x3f\xaa\xad\xa8\xf3\xf3\xec\x1a\x97\x66\xa2\x7a\x8f\x7b\x66\xd5\x7b\x67\x78\xa1\x5e\x48\x6d\x68\xb3\x4a\x59\x2f\x92\x15\x96\xab\x5f\x74\x3f\x52\x09\xf3\x59\x55\xbc\x46\xa3\x55\x53\x8c\x7c\xbb\xf5\x0e\xbd\x1c\x8e\x9a\x9b\xb2\xcf\x74\xc5\x66\xd3\x55\x64\x8d\xd1\x75\x5e\xd1\x1f\xa1\x89\x86\x09\x08\x63\x09\xa1\x03\x35\xc1\xd4\x45\x14\x6b\x4a\xc5\xec\xbc\x1e\xa8\x2d\x6b\x6e\xfb\xb2\x13\x23\x11\x40\x46\x8c\x4c\x52\x30\xaf\x1e\x5b\x8c\x38\x47\xe4\x94\x9f\xd5\x93\xd9\x28\xfb\x68\x07\x5a\xf6\x76\x0b\x9b\xb5\x45\x8f\x24\x0e\xab\xf7\xa2\xd0\xce\x22\x8d\x49\xcf\x8e\x4f\x9a\x18\x77\x50\xdf\x90\x9f\x73\xdc\x45\xcf\x63\x54\x58\xe1\x15\x13\xc7\x76\x6d\x4a\x7b\x15\x8e\xd5\x63\x0c\x54\x05\xfa\x83\x06\x39\x93\x43\x6d\xd3\x5b\x31\x49\x28\x3f\x86\x82\x07\x37\x28\xf8\x44\xa1\x8b\xd2\xb2\x88\xd3\x74\x99\xef\x67\x42\x5b\x9c\x4f\x6a\x19\x71\xb5\x67\xe4\x64\x94\xb0\xe0\x77\x61\xfa\x2d\x84\x6a\xbb\x69\xc5\xc3\xa5\xdf\x70\xc5\x37\x80\xdd\x39\x43\x70\x0b\x4e\xf5\xdc\xf8\x64\xfd\x39\xed\x85\x6c\x32\xd3\x2f\x0d\xe3\x54\x51\xd0\x44\xce\xc9\xc7\x0d\x2a\xc1\x8b\xed\xa5\xd8\x5a\x10\x9b\x31\xeb\xdf\x0a\x7c\x55\xe4\xad\x26\x0c\x49\x96\x0e\x4d\x52\xb0\x4f\x12\xbb\xa8\x06\x2a\x4e\x7e\x67\xec\x45\x78\x73\x43\xac\xe9\x45\x01\xc2\xa0\x7a\xc2\xc7\xc1\x23\x92\xb4\xfe\xf2\x73\x34\x62\x51\x91\x38\x41\xab\x09\xe6\x3d\x33\xda\x04\x60\x44\x4d\x7d\x24\xd3\x7f\xa0\xf2\xab\x6b\x6a\xea\xfd\xae\x92\xcd\xba\xaa\x58\x73\xbb\x3b\xad\xaf\x7c\x91\x13\xa3\x9b\x5a\xd0\xf1\xd6\x58\xe5\x5f\x97\xf0\xca\xc5\xf5\x9a\xd6\x38\x14\x39\xee\x51\xc4\x8f\xc2\xdd\x9f\x69\x64\xc7\x37\x28\x8f\x66\x3c\x22\xb1\x3b\xb0\x58\x7c\xc0\x39\x86\xab\xc4\x57\x2f\x05\x99\xf0\xd5\x86\xbe\xc3\x42\xdb\x9a\xbe\xcd\x9c\x3e\x08\xd2\xf7\x4b\x4a\xed\xd0\x93\x90\xd2\xcf\x85\x71\x1a\x2e\x4f\x7b\x45\x0f\xb0\x5e\x90\x99\xa2\x7c\x8a\xf9\xcb\x49\xd5\xc3\x8c\xe4\x17\x16\xda\x36\x59\x89\xf2\x2a\x0d\x9d\x52\x52\xb0\xd7\xf0\xd8\x05\xd3\xa7\xdc\x16\xce\x37\x4d\x71\xc2\xe5\xc1\xf1\xc0\xb7\x90\x79\x33\xe4\x93\x46\x69\xd5\xaf\xbf\x38\xa5\x34\xbd\xee\x05\x93\x9c\xe3\x96\xa2\xa3\x3b\x2b\xef\x41\xd4\x13\x34\x9d\xa8\x51\x55\xef\x58\x54\x46\x9e\x56\xbe\x71\xfd\xa8\x30\x31\x6d\x2e\x2c\x0a\x49\xe3\x0a\x8b\xc3\x69\x65\x8a\x84\x0a\x11\xff\x77\x15\x06\x44\x71\xcc\x56\x5a\x8e\x50\xbb\xa1\xd4\xf4\x36\x94\x8e\xdc\x30\xcd\xec\x67\x94\xd2\xc6\xcc\x7a\x6b\xff\x7e\x8e\xe8\xae\x21\x52\x45\x27\xfa\x62\xa0\xd4\xd2\x6e\x21\x9b\xc0\x9b\xba\x85\xfa\x2f\x72\x61\xac\x06\x0a\x0f\x2f\x68\xe1\x7b\x5a\x5f\x9d\xc5\x7b\x30\xa6\x9e\x55\x8e\x08\xd8\x2d\xd1\x58\xbd\x3a\xd6\xab\xee\xeb\x34\x8a\x15\xf2\x5d\x3a\x12\xf7\xc7\xbe\xd0\x7b\x83\x30\xe7\x88\xb8\x00\xdb\x41\xbb\x6c\x73\xac\x28\x92\xec\x06\xe8\x7c\xf2\x16\x85\xd3\xf3\x63\x02\xcc\x70\xe3\x9d\x9a\xf0\x58\xae\xef\x35\x11\x61\xfa\x59\x69\x63\x51\x2c\x74\x7e\x95\xd5\x53\xe1\x93\xda\x62\x4d\xed\xc2\x2c\xca\x8b\xa1\xc9\x27\x16\xe0\xd3\x63\xb5\x00\x9f\x56\x0e\x48\x61\x66\xcd\x70\x5a\x0b\xe6\x8c\x3d\x87\x13\xdc\x2c\x3c\x9c\xfb\x81\xe6\xd7\x37\x72\xc0\x21\x63\x37\xe5\x01\x9c\xfb\x3a\xba\xcc\xe3\xab\x48\xbb\xd6\x3f\xad\xc1\x4b\xe4\x69\x1c\xc5\x51\xb1\x36\xe3\x5b\x4a\x17\x11\x1e\x31\xf1\x8d\x46\x24\xaf\x61\x81\x4a\xb9\xee\x06\xca\x03\xe3\xac\x5f\x5b\xfb\x26\x4a\xf2\x62\xa6\xf5\x25\x1f\x4d\x57\x97\x85\x15\xee\x7d\x0a\x1c\xa0\x4d\xb2\x07\x12\xa6\x8e\xf5\xee\xd5\x14\x2f\x78\x1c\xb7\x89\x7a\xfb\xe8\x47\x69\xdd\x3d\xf1\xff\x43\x65\x19\x63\xe0\xaa\x22\x79\xb1\x95\xd3\x44\xbc\x2b\xf4\x15\xff\x0e\x1f\x5d\x77\x54\xc5\x9f\x7e\x1a\xc0\x0a\x0c\x88\xbf\xd5\xd9\xa9\xbb\x44\x95\xb0\x34\xc9\xcb\x18\xba\x0d\x5e\x8b\xff\x5b\x58\x32\x45\xdb\x54\x95\x8c\xcb\xcc\x48\x43\x9b\x5d\xca\x02\x0f\xd8\xba\x54\x93\x76\xa2\xc8\xce\xd8\x2c\xcd\x47\x26\x84\x30\x06\xfb\xf9\xe0\x61\x88\xb9\x8f\xd2\x98\x8e\xcd\xda\x2a\x99\x74\x6a\xff\xd5\x77\x00\xde\xe0\x93\xe0\xb9\x9a\x19\x2c\xaf\x7f\xa8\x7d\xb2\xd8\x00\x9f\x34\x81\x29\x3f\xdb\x5e\x1d\xa4\xdc\x0a\xc1\x7e\x8b\xc6\x37\x1f\xaf\xd7\x37\x89\xaf\xb5\xcd\x70\x14\x47\x4b\x91\x04\x2a\x08\xf8\x7e\x14\xf8\xbe\xe0\x8f\x6a\x28\xae\xb9\xc3\xed\xa5\xc8\xc6\xa2\x86\xe5\x58\xeb\x1e\x31\xd6\x58\x9e\xcc\xa3\x7e\x62\x38\xda\xfb\x9a\xab\x8e\x29\x58\xd6\x96\x76\x19\x4b\x7a\xf6\xe8\x93\x7e\x2a\xdd\x1d\x2b\x34\xcd\xa5\x09\x44\x7c\xa0\xd8\x16\x67\x03\x2d\xd0\x4e\x4f\x57\xba\x05\x4a\x73\xfb\x8c\x32\x59\xff\xd7\x9a\x5b\x3d\xd5\x51\x95\x24\x00\x70\xd0\x27\x7b\x6c\xdd\x7b\x3b\x09\x0d\x9f\xd5\xe9\xb1\x66\x0a\x66\x60\x27\x2b\xc1\x09\x88\x59\x13\x17\x03\xc8\xf5\x09\x84\xb7\xfa\x4a\xd7\x6c\xa8\x2e\x42\x92\x2f\xdf\x33\x19\x95\x59\xdf\x02\x5c\xeb\xba\x55\x9e\x30\x7d\x5d\xf9\x0f\xb4\x6a\xb4\xf0\x2a\x04\x48\xd2\x17\xb1\x50\x69\xf6\x1d\xe7\x52\x13\x46\x52\xae\xdd\x5d\x8f\xd0\x8e\xcc\x1e\xf4\xf0\x77\xc7\x10\xb8\x80\xa9\x2a\xf8\xf7\x06\x26\xc2\xc0\x14\xc0\xbf\x62\x6d\xf8\x6d\x58\x13\x40\x35\x86\x57\x2a\x74\x61\xbe\xab\x64\xe0\xaf\x3e\x44\x37\x6f\x64\x43\xf4\xbe\x25\xf2\xa8\xde\x33\x07\x4f\x18\x0d\xb2\x1f\xfa\x8e\xf1\xaa\x8d\xe2\x29\xed\x7b\xb6\xb7\xa3\x70\x8b\xcc\x16\x02\xe8\x6e\xb7\x6b\xd3\xaf\x44\x3d\x9b\xee\xf1\x24\x8e\xb3\xd4\x64\x90\x8a\x87\x12\xbb\x78\x5d\xe9\x2f\xfc\x60\xec\x81\x57\x7f\x85\xef\xc5\xaa\x7d\xce\x11\xdb\x48\x88\x94\xf7\x17\x4c\xe1\x0b\x7a\x3e\x5f\x68\xc2\x4a\x0d\x4d\x11\x0e\x5a\x13\x77\xa7\x96\xbe\x8b\xda\x0d\xc5\x2e\xc5\x6e\x09\x43\x39\x72\x53\xd1\xc2\x37\x9b\x9c\x36\xba\x65\xbe\x06\xb1\x4e\xb1\xad\xf7\x1b\x06\x40\x02\xee\xbf\x2b\xed\xfd\x86\x2c\x97\x72\xc6\x6e\xc4\xb5\x69\x66\x21\x21\x65\x14\x4a\x52\x83\xd1\x5b\xcf\x0e\x0d\x29\xf3\x56\x43\x44\x3a\x25\xf4\x7e\xa4\x85\xf2\x30\x7c\x62\x1c\x2d\xdb\xd5\x28\xb7\xd3\xbe\xcd\x7b\x57\x83\x42\x19\x5f\x24\x53\xcb\xd1\x8c\xfe\xab\xa7\x3b\x0f\x2b\xeb\x8d\x6c\x16\xa5\x3d\x11\xa8\xff\x8d\x43\xae\x7c\xe0\x49\xe5\xa7\x1b\xa0\xa6\xed\x9e\x5d\xb1\x71\x3a\xe2\x58\x17\xe1\xf2\x14\x46\x19\x9b\x0e\x51\x7c\x84\xad\xae\xc9\xa4\xf1\x50\x3b\x1f\x65\xd6\xf4\x00\x1d\x46\x67\xea\x82\xee\x7e\x7d\xa4\x88\x99\x5c\x2c\x45\x7c\x46\x92\x6f\x2e\x5c\x4c\xec\xda\xb3\x55\xc0\x85\x54\x61\x46\xd3\x31\x61\x36\x86\xe9\xc5\x19\x88\x93\x83\xaf\x66\xa4\x32\x2e\x70\x6e\x72\x78\x7b\x48\x54\xa6\x28\xf8\x43\xec\x79\x85\x56\x4e\x1c\xdf\xc2\x60\xc4\x6a\x76\x1f\xfe\x73\x58\xa4\xbe\x83\x8d\x16\xef\xf1\xa2\x96\x7f\xbb\x8d\xdd\x1e\xe1\xea\x3f\xd2\x86\xff\xe3\x6a\x9a\x21\xbe\x40\xb1\x0e\xbd\x90\x6b\xca\xd9\xa6\xd5\x79\xd8\x88\xb0\x5f\x2f\xa3\xd1\x88\xe9\xc3\x7c\x0d\x5a\xe4\xf1\x1c\x6e\x8e\x35\x99\xdd\x9c\xcc\xd3\x9e\xe1\x4d\x0c\x0f\xfb\x72\xe0\x4b\x83\x97\x9b\xc4\x42\x97\x32\x6b\x33\x2a\x6e\xe2\x55\xed\x06\x76\x94\x4f\x6a\x4b\xf0\x0b\xed\x7c\xd5\x9a\x42\xa1\x6f\x6e\x62\x1f\x9a\xf0\x79\xe6\x26\x6d\x93\x7e\x06\xaa\x50\x8e\xb9\x80\xb7\x73\x55\x79\x52\x7c\xac\x5a\x13\x77\x9b\x8a\x1e\xe1\x20\xcd\x8a\x6a\xd7\xdd\xb1\x87\xcc\xe9\xee\x8f\x13\xc0\xce\xab\x75\x76\xcf\xce\x08\xd4\xa9\x9f\x7d\xfe\x37\x85\x5b\x4f\x9b\x97\xf0\xec\x95\x69\x04\xe3\x35\xf0\x52\xaf\xa8\x15\xea\x15\x9b\x24\xd1\x92\xcd\xb4\x45\x23\x8f\x20\xe9\xb6\x3d\xa3\x70\xcb\x55\x80\x6b\x7b\xd3\xf4\x74\x05\x43\xd1\x72\x92\xb5\x2c\xd8\x23\x48\x8b\xea\x5a\xa4\xe3\xf3\x30\xc1\x78\x28\xf8\x0d\xa2\xd1\x94\xd2\x82\xff\xcb\x09\x62\xd6\xd4\xa1\xaf\x7e\xc9\xd1\xaf\x9f\x55\x00\x9e\x51\x66\x73\x9b\x14\x2d\x05\x14\x39\xaf\x74\x5b\xcf\x37\xb9\x59\x81\x60\x50\xdd\x82\x16\x62\xf1\x11\x71\x17\x80\x07\xf6\x20\x40\x4d\xed\x58\x93\x26\xde\x67\xdb\xbf\xf4\xc5\xaf\x1e\xfc\xe2\xe7\x17\x50\x3d\xc6\x3c\x3a\xa5\x6d\xab\x28\x3f\xc2\x75\xdf\x0c\x3c\x8d\xee\x9e\xb6\x8e\xba\x35\x29\xf9\xd0\x54\x2e\x20\x6a\xdd\x6a\x9a\x2d\xb7\xfc\xad\xbd\xad\x49\x47\x6f\xd7\xc6\x17\xed\x51\x59\xdf\x64\x56\x54\xcb\xb0\x25\xbf\xaf\x0d\x90\xde\x0f\x3e\xa5\x9e\x65\x3f\x9a\x20\x8e\x89\x5f\x5c\x4b\x09\xdf\x3c\xa1\x90\x26\x6b\xf9\x23\xd5\x8a\xc3\x28\x37\x25\x8c\xb2\x67\x5d\xe3\xb5\xe8\xf3\x88\x33\xfe\x3b\xda\x8b\x1d\x2c\xce\x57\xe7\xaf\x54\xeb\xe0\xf6\xeb\x98\x73\xe8\xb2\x6d\x07\x1a\xc0\xa5\x10\x14\x51\x68\xa6\x3c\xa0\x88\x77\x6a\x94\x9d\xf7\x74\x74\x19\x66\x5b\xa5\x11\x2b\x91\x5d\xb5\x59\x4e\x58\x63\xb6\x5d\xd5\xe0\xae\xb3\x18\xb4\xa2\xf5\x48\x97\xcf\x27\x8a\xc4\xdf\xb7\x26\xdb\xe3\x59\x86\x3f\xa6\x5a\x82\x40\xe3\x5a\x0e\xd0\x05\x61\x79\x0e\x03\xe9\xb1\x20\x2a\x39\x35\x56\xa8\xaf\x4b\xae\x67\x5d\x0d\xe0\x6c\xc5\x42\x60\x62\xc2\x20\x1f\xb5\xe0\xfb\x98\xc3\xd2\xae\xdc\x19\xf1\xbf\xd0\x4e\x97\x96\xac\x6b\xdd\x61\x2f\x79\x57\x37\xfa\xde\x55\xcf\x81\x4b\x9f\xf4\x5b\xc8\x32\xa7\x00\x9c\xc0\x12\x78\x5f\x5b\x80\x35\xf4\xf1\x4d\x37\x5d\xb1\x53\xd5\x6d\xa3\x30\xf0\x20\xf0\x65\xa9\xf3\x58\xba\x24\xc0\xf7\x8f\x2d\x8c\x4b\x4b\xca\x33\x32\xa0\x54\x9f\x7c\xcb\x75\x85\x46\x99\x0d\xa3\xdc\x72\xa5\xda\x2d\x71\x8b\xb3\x9c\xcc\x5e\x57\x88\xaf\x37\x26\x18\x32\xf1\xab\x26\xa4\x65\x7c\x42\xde\x8d\xe3\x8d\xc0\x3f\xd5\x93\x2e\x03\x1e\xd8\x78\xf4\x68\xf5\x33\xc8\x60\x1f\x23\x3c\xbe\xce\x6c\xb1\x55\xb7\x80\x55\xc1\xa0\x46\xd8\x25\x20\x28\x05\x92\x67\xc9\x62\xa4\x57\x9b\x4a\x25\x6d\x6f\x47\xe9\x3f\xf2\x36\x87\x24\xe9\xee\xf8\x51\x77\xfd\xaf\x12\xea\x0e\x1c\xfe\xd7\xb4\xd4\x2f\xca\x7c\x82\xe0\xf0\x35\x97\x53\x14\xb6\xc8\x7f\x6f\xe0\xe0\x99\x3c\x32\xc9\x94\x0f\x18\x19\xee\xe6\x54\x3f\xe7\xe7\x65\x34\xfd\x64\x42\x08\x2e\x8e\xb9\x7b\x27\xf1\xa4\x07\x74\x6d\x3a\xde\xd7\xc8\xf6\xfb\xd2\x60\x66\xfb\xb3\xb1\x9f\xe0\xff\x4c\x43\x7d\x6e\x07\xff\xa6\x4e\x6d\x91\x29\x1d\x1b\x94\xf4\x5a\x40\x10\xf1\xc9\xba\x4f\xb5\xc8\x0e\x3d\xdf\x53\xbd\x25\x3c\xda\xdd\x94\xf3\xf1\x31\x3d\x27\xf1\xaf\x26\xd0\x13\xfb\x3e\xc3\xd4\xc1\x99\x40\x3b\xb9\xca\xd3\x8a\x61\x99\x47\x85\x9d\x56\x1e\x0f\xa7\x54\xa4\x7d\x51\x91\xda\x4f\x05\x0a\xe2\x72\x51\xf3\x78\xd2\x28\x29\xf6\x79\x2b\x8d\x3b\x34\xfb\x91\x80\x3e\xd2\xf1\x80\x07\x46\x41\x39\x93\x97\x6a\x89\x71\x3e\x82\xd5\x0c\x14\x2b\x73\x5a\x24\x30\x30\xe1\xc7\x26\x16\x81\x7e\xdb\xeb\x99\xa4\x6f\xb3\xb4\xcc\xf7\xd0\xed\x8a\x44\x09\xdd\xae\x73\x60\xad\xbe\x13\xdd\xc9\x3f\x42\x55\x49\x3b\x63\x03\x3c\x01\xdb\x09\xe4\x46\x77\x14\x84\xdd\xae\xd9\x6e\x96\xae\xd2\x6a\xc9\x6a\xbc\x5a\x93\xef\xa2\x52\x6f\x3c\xa3\x45\x4e\x2f\x2a\x19\xaf\xcc\x90\x72\xcf\xde\x96\x93\x99\x43\xec\x88\x8d\xe7\xbe\x6a\x56\x9f\x0a\xb4\x16\xa7\x86\xba\xdd\xd3\x22\xc6\xb7\x14\x93\xf6\x94\x82\x8e\xda\xa1\xcd\xd6\x56\xa2\x38\x06\xa3\x1a\xbb\xc7\x7d\x85\xd6\xbd\x3f\x56\xf0\x20\x93\x17\xb6\x5a\xc4\x0f\x6e\x9f\xa2\xef\x63\x10\xba\x27\x01\x7e\xf4\x7c\x87\x82\x0d\x11\x16\x6c\x39\xdd\x5f\x6e\x37\x23\x6c\xdd\x50\x68\xcd\x70\x60\x87\x10\x6d\xa9\x9e\x91\x9b\xca\xd5\x0b\xc0\x78\xd9\xc0\xc6\x86\x7f\xf9\x53\x05\x52\x64\xf4\x08\xc2\xbd\x29\x92\x3f\x45\x4d\xf3\xfd\xb1\x42\xe0\xa0\x7e\x83\x88\xe2\xe7\x58\x3d\xf1\x48\xa0\x0c\x84\x69\x78\x4c\xdb\x86\x4c\x75\x64\xbe\x0e\xd3\x22\x5a\x9a\xa8\x06\x61\x5d\xe1\xe3\xf5\x67\x14\xbe\x28\x2b\xfb\xfd\xea\x29\x2e\xba\x6e\x31\x8d\x65\xe9\x1c\x37\x44\x18\x5d\x13\x57\xdb\x09\x67\x8a\xf0\xf2\xfa\x2e\x5e\x27\x9f\xb8\x56\xe4\x28\x4b\x0b\x1b\x52\xbc\x5c\xdd\xa6\x68\x39\xd3\x6d\x22\x9d\xbf\xaf\x64\x56\x2e\xd5\x2a\x5b\x2f\xb4\x97\x52\xe5\x8b\x8a\x01\xf2\xe7\x63\xa5\xfe\xfd\xe7\x6a\xab\xce\xca\x24\xa7\x12\x95\xb8\xb2\xd3\xdb\x70\x93\xcf\xc3\xd8\xce\xa0\xcf\x84\x2c\xe1\xc7\x63\xbf\xb5\x5d\x63\x25\x4b\xfe\x17\x8c\x44\x91\xc7\x50\x9c\xde\xbb\xda\x17\x9b\x43\x07\xd9\xc5\xbd\xea\x31\x58\x1b\x28\xb0\x1c\xa7\xc6\x11\xb0\x91\x1b\x5a\x81\x61\xa3\x89\xee\x3b\xca\x2c\x4b\x21\xb4\x9c\x52\x20\x06\x84\x90\x5c\xea\xac\xcc\xb0\x84\x43\x91\x2a\xb2\xcf\x79\xa5\xaf\x23\x52\x3d\xb8\xab\xca\x10\x44\x76\x13\xaa\xb3\xa6\xb3\x0c\x6d\x5c\xbc\x5a\xe5\x06\xbe\xe3\x71\x32\xf0\x22\xed\x27\x55\x67\xa4\xb0\x66\x88\xc2\xb2\x13\xe3\x75\x36\x8c\x17\x35\x4b\x51\xb8\x88\x22\x01\xe1\xa1\xb2\xad\x8e\xb2\x91\xbe\x84\x39\x84\xf7\xf1\x06\x1e\xad\xc8\xa8\x3e\xed\x00\x9e\x99\xb5\xe1\x40\x4a\x97\x22\x02\xa2\xd0\x43\x97\x54\x33\x77\x54\x92\xb8\x16\xa6\x03\x97\x50\x14\x1c\xe9\x82\x8a\x94\xf2\x61\xba\x4c\xdc\x28\x87\x9e\x7a\x9d\x92\x75\xe5\x23\xb2\xe0\x30\xe7\x0a\x36\xaa\x50\x2b\x61\x9a\x24\x20\x9b\xe7\x53\x74\xf1\x28\x07\xde\x54\x72\xc3\x1f\xe3\x16\xa5\xea\xe4\xc1\x49\x99\x4d\xcc\x90\x81\x37\xd8\x5b\x07\xba\x9a\x3f\x50\xec\xe4\x61\xda\x8d\xe0\xff\xb3\xe0\xc2\x59\x0f\xde\x40\x03\x44\x94\x04\x95\x09\xde\xee\x4e\x43\xbb\x65\x68\xa2\x64\x29\x33\x43\xab\xdc\xfd\x4e\x2a\x77\xbf\xba\x09\xfa\xfe\xfd\xed\x32\x86\xd1\x0a\x73\x73\x1c\xa3\xd9\xc3\x18\x75\x39\xcc\xa9\x12\x38\x8a\xff\x15\xa5\xfd\x09\xe3\x6f\xec\x5b\x27\x95\x60\x46\xd7\x64\xd8\xa6\xb1\x73\xdd\xd2\xe0\x11\x94\xd3\xf8\x1f\xb4\xe9\xe9\xe6\xf8\x33\xfa\x65\xf4\x33\x53\x90\x91\x8b\x60\xf1\xd8\x33\xd5\xd3\xf3\x8e\x6a\x36\x40\xcf\xc6\x06\xec\x44\x64\xa4\x77\xb1\x06\xf0\x09\x5e\x9c\x33\xd3\x58\x94\x60\xf2\xaa\x4a\x55\x7a\x51\xb1\xd7\xb7\x9f\xfe\x86\x7e\x87\x8a\xe1\x7f\xfb\x39\xa0\xb3\x05\x6b\x4d\xaf\x45\x40\x88\xd5\x2f\x62\xcd\x9d\x01\xa0\x5b\x4c\xad\x95\x54\xd4\x31\x5f\x28\x59\xb5\x71\x3c\xad\x6a\x5c\x9b\x0a\x6b\x77\x09\xc5\x22\x0d\x7c\x97\xa9\x55\x4f\x33\xc9\x87\x28\xb7\x1e\xaa\x88\x04\x78\x43\xb1\xb8\x36\x6a\x39\xc1\x91\xd9\x2f\xb4\xbb\x51\x6f\xda\x9b\xe6\xaf\xd3\xdf\x03\xb8\x7e\x6b\xac\x16\xeb\x7b\x81\xef\xd6\xff\x89\xeb\x6d\xe5\x65\xb5\xc2\x61\x75\x63\x8c\x73\xa0\xf1\xce\xca\xa7\x34\x8e\x6d\xdf\xf6\xe2\x35\x2d\xdd\x70\x77\xac\xcd\x77\x4f\x6b\xb6\x36\xcb\x22\x62\x6e\xdd\x55\xc5\xe7\x41\x99\xc5\x50\x0d\x65\xc7\xd1\xc0\xdb\x8a\xd5\xcc\xa5\x17\x67\x0f\xb5\x17\x16\x28\xf6\x74\x1d\x45\x57\xd9\xff\xbf\xb1\xd0\x88\xd7\xbb\x5a\xfb\xb0\x46\x22\x76\x84\x2a\x29\x36\x85\x07\xd8\xa4\x44\x9e\xf8\x45\x5d\xe2\xba\xad\x4a\x5c\x75\x6b\x0a\x06\x00\xc5\xa9\xe9\xb5\x54\xc1\x40\x67\x1c\x9b\x6a\x55\xe8\x0f\xd2\xbc\x80\x5f\xa5\x98\xeb\xa9\xe1\x7b\xc9\x2d\xa0\x90\x51\xb7\x22\x8e\x8a\x7a\x12\x03\x76\xf0\xe8\x50\xb8\x90\x74\xbb\xde\xd3\x3b\xd4\xee\x67\x51\x2f\x4e\x3d\xf5\x5d\xd8\xf2\x3e\xe4\x3e\xe1\xcc\xae\x72\xcb\x78\x73\x51\x88\xf8\xc6\xf3\x1d\xe5\xa5\xc2\xc0\x69\x0d\x85\x76\x59\x8c\xdf\x67\xcf\xe8\x66\xde\x7d\xe5\xcd\x83\xc8\x18\x2f\x57\xfa\x7e\x9e\x3b\xf9\xad\xa6\x0d\x76\xc9\xf6\x6c\x66\x44\x58\xbb\x49\xa6\x50\xc5\x48\xf0\xd6\x27\x44\xf5\x17\x7c\xec\xa8\xf0\xda\x74\x91\x22\xc5\x4f\x0f\x11\x61\xf7\x7d\xcc\x71\xe1\x3c\x36\xa8\x2f\x8c\xb2\xe8\x55\xc1\x76\xc9\xfa\x47\x5f\x80\x7a\xc9\x6d\x65\xc8\x7a\x49\xe5\x1f\xa1\xc9\x6d\x4e\xaa\x06\xa8\xd5\xfd\xcb\xb1\x12\x52\x81\x7e\x89\xc8\xee\xd3\x63\xc6\x44\x79\x53\xbb\xf8\xbc\x89\x6b\xe3\xcf\xab\x4e\x5f\x61\x47\x51\xaf\xa5\x6c\x5a\x31\xa3\xc4\xb3\x55\x49\x56\xa5\xc3\xa1\x49\x50\xe3\x45\xc1\x13\xe5\x5a\x11\x18\x69\xfd\x86\x18\x8a\xbd\x36\x41\xf7\x1f\x99\xb5\x27\xbd\x6e\xda\xbb\x14\x24\x21\x5e\x38\x1e\x28\x4b\xb2\xb7\xe8\x1d\x22\x00\x7e\xa0\x10\x43\x67\x71\x3d\x82\xa6\x54\xe2\x6a\xc7\x55\x88\x72\x4d\x99\xb1\xfc\x5f\x3a\x8a\xd8\x52\x5d\xc4\xab\x54\xa9\x63\xbd\x5a\x3c\x1c\x8c\xfe\xbf\x08\x14\x40\xb0\x4e\x38\x9c\x3b\xdc\x0e\x07\x51\x62\x73\xcb\xf6\xe3\x58\xeb\x9e\xe8\xf8\xf5\x6c\x5d\x99\x2d\x70\x7a\x03\x5c\xef\x9e\xf5\x9d\xc3\x60\x7e\xbe\xca\x75\xcb\x9c\xeb\x99\x02\xc5\x50\xb0\x8c\x46\xa1\x9e\x51\x66\x8b\x02\x9b\x2f\x36\x91\x13\x78\x7a\x7c\x52\x33\xd7\xdd\xbf\xbf\x0a\x90\x11\x31\xa0\x96\x75\x5b\xc9\xf2\x6a\xb8\xf1\x87\xd8\x40\xf0\x8c\x2e\x2b\xca\xa7\x35\xe5\x51\xca\xb7\x5c\xaa\x7c\x60\xc1\xcd\xd4\x4f\x4f\x54\x8b\x6d\x9e\x13\x72\x97\xab\x0b\x62\x1e\xa4\xf0\x7b\x0f\x34\xf5\xad\x30\x49\xcf\x6d\x41\x4d\x31\x9a\x93\x51\x21\xa3\x1e\x9e\x31\x58\x17\xf6\x74\x26\x3c\xd2\xe8\x59\x8b\xf2\x51\x5d\x99\xe2\x0b\xed\xcc\x56\x89\x82\xb6\xe8\x43\x6e\x2b\x9d\x50\x4f\x95\xe9\xdb\xc4\xa2\x36\x9a\xef\xad\x46\x0a\x76\x9f\x9f\xa8\x08\xf7\xdb\xf4\x08\x26\x94\x31\x15\x5d\xed\x0b\x3c\xbd\xce\xd1\xc0\x44\x93\x07\xc6\x58\x2c\x61\x51\xdb\x90\xa5\x58\x92\xd9\x7e\x84\xed\x51\x74\x03\xe9\xb6\xf8\xa4\xb6\x92\x1c\xfe\x72\x3b\x33\xbd\x28\xcd\x95\x2a\xe9\x0d\x5c\x0e\x9f\x78\x41\xcf\x17\xd3\x17\xbb\xf4\xcd\x08\xfb\x31\x69\xf8\x58\x09\x62\xe6\x36\x8e\xb1\xc4\x80\xa4\x73\x41\x35\x87\x20\x8a\xb5\x7d\x79\xec\xe1\x34\xac\xb2\x89\x92\xc0\x6e\xbc\x11\xa0\x08\x3c\x5a\x30\x4a\x0a\x9b\xe4\xb8\x2d\x5a\x20\xcd\x67\xe8\x61\xf0\xb1\x6b\xf9\x2e\x9b\xe4\x95\x48\x71\xb9\x21\x50\x8e\x65\xe5\x06\x15\xc2\x90\x54\x3f\xee\x12\xde\x9e\xb5\x43\x29\x50\xe1\x19\x3d\x50\x82\x3c\xdc\x5f\x91\x75\x49\x53\x81\xf3\x24\x0a\x97\x5b\x48\xfa\x94\xf6\x8b\x97\x32\x7e\xce\xed\x98\x4b\x65\xd6\x85\x5c\x63\x4b\x69\x17\x23\x8f\x11\xba\x84\x8f\x78\xf3\x41\xb4\x24\x31\xa7\xcc\x63\x6e\xaf\xf0\x89\x0a\x72\x56\xd2\x35\x5b\x66\x51\x3e\xd4\x76\x66\x50\x2e\x14\xdf\x50\xc5\x60\x48\x93\x5e\x9a\x90\x34\xcb\xc2\x36\x44\x11\x5c\xdf\xc7\x57\x09\xde\xd0\xdd\x9b\xc8\xf6\x86\x69\x22\x2d\x01\x34\xad\xd8\x75\x95\x4f\x9a\xd4\x3d\xe3\x34\xe9\x17\x36\x1b\xb6\x14\x88\x9e\xde\xb8\x24\x84\x0d\xea\x9c\xa3\xd8\x1a\x97\xae\x8b\x41\xad\x22\xa2\xbd\xa6\x26\x7d\x94\xac\x50\xb6\xd5\xd2\x9c\x3b\xba\x28\x21\xe3\xed\xdc\xb8\x5f\x60\xae\x57\xb7\x2c\x00\xd1\xc2\xd5\x5f\xc7\x6a\x8d\xad\x82\x60\xc1\x4d\x9d\x9b\x2f\x1f\x6a\x17\x83\x28\x49\x6c\xb5\xd0\xce\xcf\x8b\x2a\xd6\x15\xa5\x48\x7f\x65\xec\x03\x24\xc6\x2b\xa1\xcf\x87\x9a\x3a\xa6\x2e\x61\x24\xfe\xd9\x33\xeb\xbe\x9a\xde\xea\x3c\xab\xcc\xa9\xe2\x78\x6d\x35\x4d\x7b\x53\x13\xe0\x48\xd5\xe3\xba\x34\x11\xbc\xfe\x1f\x0d\x4b\xd4\x42\xbb\x30\x59\xb4\xb4\x34\x55\xad\x39\x8c\xd4\xd7\x0f\x06\xb4\x06\xcc\x81\x0d\xc5\x50\x8e\x92\xa5\x34\x1b\x32\x5b\x42\xbb\xe9\x79\x63\x73\x27\x0d\x69\x92\x65\x9b\x4d\xa9\xf6\x3e\x12\x22\x81\x35\xe8\xea\xae\x9b\x96\x49\x1a\x2e\xd3\x63\x07\xda\xf8\x4e\x30\xa9\xd6\xaf\x46\xc9\xf3\x13\x66\xc7\x26\x8b\xf2\x34\x81\x79\x00\x70\x2f\xdf\xa3\xcb\xe2\xe3\xa6\x6e\x5d\x98\x9a\x6a\x87\xe5\xc7\xaf\x6d\x2e\x31\x21\x60\x3f\x8a\x98\xe4\x94\x97\x32\xb0\x44\x6a\x9a\x51\x8d\x94\x53\x08\xce\x30\xfa\x8e\xf3\xa3\xe7\x7f\xc2\x02\x89\xe6\x39\xaa\x2b\x80\xa5\xbc\xaf\x62\xcb\x55\xc2\x89\xcc\xa8\xe4\x43\x08\x63\x88\x14\x18\xa1\xc4\xa8\xce\x75\xcf\x76\xdc\x8d\xba\x36\x42\x88\x3b\xaa\xf6\xff\xf7\x9e\xfa\xff\x2e\xb5\xde\x9a\x3b\xdc\xd1\xa2\xea\x0f\x55\x71\x9f\x50\x58\xd7\x92\xec\x13\x72\xeb\x13\xf2\xf0\x2d\x25\xd0\x3e\x29\x15\xaf\xf5\xdd\x15\x5f\xde\x9a\x65\xbc\x4b\x8c\x40\x98\xd2\xf3\xf1\xd8\x6b\xf8\xbf\xf2\xe2\xb4\xd7\x0b\xc2\xbb\x13\x8d\xb0\x96\x93\x0b\x65\x8f\x75\x3e\xa9\xa1\x62\xf6\xcf\xb5\xd7\x2c\xab\x65\x60\x5d\x47\x6f\x47\x54\x9f\xe8\xc3\x88\x23\x2f\xa8\xe6\x53\x9e\xb2\x47\x2e\x53\x59\x02\x4d\x6b\xf1\xe4\x25\x2a\x63\x72\xd4\xe5\xdc\x5d\x17\x0f\x3a\xa4\xb8\xf2\xb7\xca\xf3\x34\x8c\x4c\x61\x73\xd2\x40\x92\x0a\x2d\x06\x02\x02\xae\x9b\x4a\x1e\x6a\x4b\x49\x28\xbd\x39\x56\xb4\xd4\x2b\xca\xb6\x53\x0a\x45\x61\x59\xe8\xe5\x72\x43\xf3\x76\x37\x6a\xeb\x32\x4c\xd9\xfa\x7d\x5a\xc5\xaa\xd7\x28\xda\x43\x4a\x87\xc8\xf7\x6d\x4c\x91\xa5\xf1\x94\xbf\xe4\xf1\xd8\x43\x74\x2e\xd0\x05\xa3\xb4\x7e\xb6\x81\xce\xf0\x85\x36\x84\x63\x5d\x3d\x15\x1f\x90\xf0\xa6\x01\x41\x14\x66\x65\x6e\x7a\xf8\x08\xba\x1c\xcc\x99\xe0\x93\x87\x46\x3b\x26\x1a\xee\xf4\x19\x53\x58\xb0\x13\x93\xb2\x36\x69\x99\x14\x6c\x11\xef\x1a\xa7\x55\xe6\x27\xda\xda\x9e\x4d\x0f\xe3\x1e\xe1\x62\xd4\x25\xce\x0e\xb5\x47\x25\xeb\x56\xe2\x71\xbf\xa7\x9f\xfd\x7b\x5e\xf6\xb0\x8c\x1c\xa3\x4f\x94\xf2\xe9\x0f\x05\xc4\xe7\x9b\x56\x55\xd4\x64\x81\xfa\x42\x69\x01\x6c\x29\x3e\x56\x65\xd3\x70\x10\x8d\x5a\xd5\xfa\xee\x42\x6e\x5f\xe7\xa9\xbb\x25\xce\xcf\x33\x04\x83\xe5\x1a\x38\x94\x51\x2d\x82\xef\x61\x98\x81\x85\xb9\xa1\x9b\x1f\xd5\x86\xcc\xb5\x7a\x36\x93\x1c\xab\x14\xf5\x4d\x05\x37\x19\xa5\xab\x36\xb3\xbc\x73\xb9\x72\xb6\x93\xa2\xbd\xab\xb0\x0c\x1b\x6a\x41\xe8\x67\x26\x1f\xb5\x7c\xcb\x04\x59\x20\x1f\xab\x28\x27\xb3\x21\xb2\x02\x0a\x52\xa5\xf2\x42\x97\x2d\x25\x99\x27\x34\x36\xff\x45\xc6\x0a\x62\x95\xd7\x56\x54\x67\xf4\xcd\x5e\x53\xf5\x0f\xd2\xf2\xc8\x29\x45\x71\xfc\xb8\xaf\x7c\x51\x8e\x75\x91\x2e\x85\xc2\x11\x1a\x53\x37\x03\xa5\x7d\x7f\x53\x19\x09\x16\x76\x38\x2a\x18\x1c\x71\x44\x30\x2d\xd8\x53\xf9\xb8\x19\x21\x02\x2f\x3c\x7e\xea\x13\xb2\x26\x75\x90\xcf\x20\x2d\xf3\x22\x4d\xa6\xf4\x43\xa9\x7e\x60\xc2\xdd\x05\xeb\xfb\xbd\xa6\x30\x2d\xb7\x23\x93\x99\x02\xed\x7d\xdc\xc2\xde\x8e\xdf\x5e\x3f\x41\xf2\xcb\xbb\x9c\x56\xdb\x4e\xf2\x92\x34\x0d\xaa\xa7\xe5\xc4\xac\x0f\x38\x76\x87\x0a\x7d\x45\x9c\x73\x05\x3f\x22\xfc\x00\x7f\x95\x37\xc7\xaa\x46\x70\x56\xc9\x11\x7e\xf9\x37\x0e\xb5\xbc\x10\xd3\x4f\x75\x6c\xfd\xd3\x26\x1f\xd1\xfc\xeb\xa5\xc9\xec\x94\x47\x70\xef\x5d\x57\xa0\xff\x4b\xaa\xb1\xff\x49\x0d\xa0\x39\x3f\xdf\x1e\x58\xb3\x82\x92\x0e\xf6\xdd\x2b\x8a\xdb\x77\x45\x25\xb2\xb9\x89\x8b\x29\x45\x5a\xdd\xb5\xee\x1f\xde\x8f\x30\xb7\xb1\x09\x6c\xeb\xd2\x70\x96\x8e\xb0\xf1\xa1\x8f\x07\x75\x6b\x3e\x9e\x94\x53\xed\xd9\x67\x7d\x2b\xe6\xa6\xfa\xbb\x89\x26\xc5\x6d\x8d\x3d\xbb\x31\xf6\x22\x95\x97\xc1\x5c\x47\xf5\xe2\x32\x96\x37\xae\x96\x50\x8c\x80\xe7\x7c\x81\x20\x7a\x48\x71\x6e\xa0\x82\x86\xc9\x79\x0d\xf9\x3b\x5e\xcd\xcc\xba\x6f\x6f\x1d\x27\xe6\xb5\x88\xb7\x2b\xa8\x0d\xa3\xc4\x30\x48\x44\xd3\x44\xf2\x14\x55\x41\x3c\x4d\x05\x13\xec\x25\xff\xaa\xa9\x2c\xb2\x1c\x15\x79\x38\xc0\x2b\x90\xdd\xc8\xef\x85\xe7\x1b\x16\x61\x6a\x20\x4d\x29\x1e\x1e\x2f\xe7\xce\x2e\xcd\xe9\xad\x7d\xa2\xde\xc5\x20\xea\x0f\x80\x7e\x56\xd6\x43\x73\xce\x49\xa8\xa1\xc4\x42\xbe\x99\xac\xaf\x2e\xc2\x81\xb8\x4f\x69\x4f\x3d\xaf\x3a\x46\x59\x54\x98\x24\x0a\x4d\x4c\x1d\x0b\x5c\xd8\x35\x42\x1e\xbb\x10\x7c\xee\x30\x17\x27\x4e\xa9\xee\x8f\xc9\xed\xa8\x10\xd8\xea\xe2\x41\x07\x0d\xf5\xb6\xa8\x97\x1e\x2a\xf3\x19\xa6\xc3\x6e\xe4\x64\x52\xdd\xef\xb8\xe4\xe8\x64\x83\x3c\x4d\x3b\x0f\xd3\x11\x76\x5c\x04\x77\x47\x03\xc5\xdf\x3f\x3a\x81\x9a\xcb\x07\xe5\xd2\x52\xcc\x06\x6c\x62\xc0\xae\x44\xa5\x2e\x35\x7c\xff\x41\x02\x51\xd1\xda\x84\x09\x71\x1e\x61\x21\x4e\x38\x7a\x43\xb7\xf4\x43\xd5\xb8\xc9\xcd\x70\x4a\x8b\x74\x63\xf1\x16\x82\x19\x7d\x08\xe8\xf6\x1b\x4d\x10\xc9\xd8\x94\x09\x75\xf7\xaa\x9f\x45\x55\xe6\x2d\xbc\x5f\x3e\x09\x1e\x73\xb7\xb5\x66\x5a\xad\x97\x5c\x6a\x05\xcc\x83\xe4\x59\x0d\x0b\xc4\x28\xb2\x21\x74\xc1\xb1\x27\x70\x0e\x80\xa0\xfb\x1f\x2b\x6d\xd8\x8d\xe0\x33\xbe\x2b\x58\x76\xc3\x34\x29\x32\x13\x16\x29\x9b\xd9\x63\x3c\xbf\x1f\x28\xcf\x88\xf7\x15\xb1\x9b\x0c\x16\xf7\xf9\x0c\xf1\xbb\x4a\xa7\x63\x8b\x7b\xcc\x32\x71\x3d\xf5\xe1\x7c\x30\xc1\x6c\x74\xd3\xe6\x7d\xcc\x67\x07\x12\xae\xe2\x7a\xfe\xb4\x0a\xf5\xca\x7c\x92\x37\xc7\x14\x3f\x3e\x69\x94\x6e\x17\x1e\x7c\x4b\xf5\xc6\x11\x34\x09\x69\xf8\x53\xee\x95\x96\x49\xb4\x62\xb3\x1c\x24\x40\xa5\x44\xc7\xfc\x60\xb1\xb9\xf3\x53\x34\x4b\xd3\x61\x0e\x8c\x24\x42\x30\x60\x24\xb1\xc5\x71\xee\x88\xd0\xf9\x6d\x6c\x51\x7c\x82\x9b\x15\x52\x90\xa7\x00\x35\x91\x1b\x0f\xf9\xb1\xa2\x5a\xb3\x27\x31\x58\xf8\xa4\x36\xc2\x88\xa9\x4b\x54\x67\x94\xa2\x50\x21\x3b\xae\xfa\x89\xc7\x55\x92\x10\x9a\x2c\xaf\xb6\x7f\x87\x43\x7b\x4f\x99\x7d\xbd\xa7\x18\xca\x61\xb5\x8d\x0f\x27\x19\x6b\x9a\x32\x5c\x37\x0f\x78\xa1\x6d\x4d\x16\x47\x36\x83\x7e\x25\xc2\xf2\xed\xc0\x93\xe2\xb7\x95\x86\xb9\xab\x48\x4c\xab\x64\x01\x85\x4b\x8c\x98\xdd\xeb\x2a\x78\xbd\xa8\xf0\x59\xbb\x3b\x8a\x2a\x17\x5b\x93\x11\x82\xd3\x59\xd1\x54\xdf\x06\xb2\xce\xcf\xe8\x43\x08\xf6\xae\xeb\xbd\x69\x53\x75\x14\x38\x3f\xc1\x92\xfc\x73\x6c\x54\x22\x5e\xa5\x86\xe9\xd9\xb1\x8e\xbd\x1d\xdd\x39\x7a\xd5\x64\x99\x9d\x56\x2e\x96\xd7\x14\x51\x13\xd0\xa9\x09\x26\x92\xb4\xdf\x7c\x48\x71\xe0\xf3\xbf\x3e\xa5\x48\x64\x57\x95\x74\x3a\x80\x97\x68\x87\xff\x89\xab\x5b\x14\x83\xcc\xae\x42\xc1\x0b\x3a\x98\xcc\xb0\x46\xcd\x07\x75\x0f\xac\x46\x0f\xc6\x5a\x14\xd0\xd7\x81\x49\xca\x78\x68\x93\x2a\x0b\xa8\xfe\x02\xe0\xc0\x8b\xb4\x63\xf3\xb1\xe2\x96\x45\xc3\x61\x99\xf0\x3c\xf1\x0c\x9b\x5b\xf4\x40\xf8\xb8\x91\xa1\xbe\x12\xa5\xb1\x71\x89\x06\xe3\x9f\x34\xf2\xe7\x56\x83\x31\x76\x95\x17\x0c\xa2\xae\x4f\x50\xd8\xf2\x8e\x22\x25\xb1\xbf\x7b\xc2\x71\x69\xb2\xa2\x64\xb1\x70\x24\xec\x17\x95\xea\x05\xdc\x62\xc5\xad\xc3\x2f\xe6\x9f\x8b\x91\x42\x72\x04\x83\xf9\xc9\x3c\x6b\x7a\x60\x28\x20\xfd\xbc\x06\x62\xa6\x2e\xa1\x29\x06\x24\x9d\x05\x09\x23\xc9\x98\x54\x4c\x71\x7b\xec\x7b\x5c\x53\x1d\x49\x5c\x42\x9b\xad\xc0\x36\xe6\xc8\x2c\x7f\xea\xde\xd8\x17\x90\xea\x8a\x7f\x54\xdf\x4b\x91\x87\x20\x0c\xb8\xaa\x60\xb8\x57\x9b\xfc\x33\xd7\x22\x1b\xf7\x44\xc2\x09\x70\xa4\xdf\xc1\x7c\xe0\x93\x26\x79\xae\xd8\xac\x56\xf9\xe0\xb4\xce\xf6\xe9\x33\xac\xb6\x83\x0d\x45\x4b\x14\x20\xfb\x7d\xac\x23\xe3\xd1\x14\xb1\xc1\x2e\x82\x8d\xf3\xd8\x58\xed\xa2\xc7\x9a\xa2\x2a\x11\x64\xa1\xdf\x41\x50\x09\x2a\x2b\x1f\xab\x04\x79\xc9\x76\xb3\xd2\x64\x6b\x88\x6e\x91\xac\x83\x96\x86\x15\x6b\x63\xa2\x49\xa4\x52\x27\xca\xac\xa1\xb6\x85\xf7\x09\x99\x00\x3e\x56\x45\xf3\x62\x60\x0d\xa9\x8c\x3b\x48\x11\x34\xaf\xb9\x1d\x30\x21\xb7\x84\xd6\xc1\x74\xe7\xb3\x0f\x09\x79\x86\x26\x29\x97\x4c\x58\x94\x99\x75\xc2\x1e\x48\xf1\xb8\x0d\x8a\x7d\xe8\x96\x56\x1f\xd8\xac\x75\xb6\xaa\x24\xa8\x04\xa6\x54\x12\x7f\x55\xbb\xda\x01\xce\x61\x22\x27\x40\x36\xa0\x59\xbf\x11\x28\x92\xfa\x1b\x0d\x2e\x5a\x4b\xb6\x08\x07\x68\x39\x89\x6b\xd1\x44\xb0\x5e\xfd\x98\x18\x47\x35\x29\xba\x99\x38\x4e\x19\xf4\x2a\xe4\x4c\xcd\xd4\x6c\x82\xd7\x24\x69\xb2\x9a\x66\xde\x91\x4e\xb2\xc1\xea\xaa\xf9\xb8\xc9\x1d\xde\x24\x49\x5a\x26\x21\x33\x6f\xb8\xf8\x38\xa1\x37\x49\xe3\x02\x51\xd9\xa9\xf1\xdf\x79\xc8\x7b\x59\x2a\xb3\x6a\xda\x0e\xd3\x0c\x86\xee\xc8\x2b\xde\x18\x6b\xcc\xea\x58\xa9\xb4\xc3\x3b\x0a\x29\xca\xe3\x9d\xd6\x81\x85\xed\x53\xba\xec\x75\x6b\xa2\xff\x1b\x17\x83\xbd\x9a\x05\xf8\xa6\x6a\xa1\xdc\x0e\x26\xbe\x95\x9e\xac\x63\xe7\x55\xcf\x1f\x23\xee\xfa\x58\xc1\x0d\xb9\xc8\x84\x36\xee\x4f\x9a\x52\xe4\x7e\x69\xb2\x5e\x64\x12\x95\x19\xf2\x00\xe5\x93\x06\x05\xa8\x2f\xb4\x57\x6d\x5e\xac\x9a\x0c\x4b\x3e\x56\x04\xd8\x59\xf2\xb1\xee\x5f\xa6\x4b\xd5\x9f\xda\x69\x55\x92\xe3\x86\x32\xba\xfa\x40\xc5\xf1\x3f\x68\x05\xb6\x4d\x0d\x54\x8b\xcd\x9a\xcd\xd0\x6a\x94\x3a\x93\x2f\xe5\xdf\x09\x94\xb0\xf5\xbd\xb1\xaf\xad\xde\xa1\x88\x41\xe4\x20\x14\x89\x63\xac\x2b\x56\xe3\xe7\x26\x21\x2e\xbf\x5a\xdd\xe3\xb4\xaa\x26\x31\x93\x55\x0c\x00\x7d\xad\xfd\x62\xa0\x7a\x8f\x13\x28\xe8\x2c\x1a\xda\xbd\xba\x70\x15\x28\xd1\x21\xce\xae\xc4\xe0\xc8\x3f\xb8\xdf\xa1\x3c\xca\x59\x81\x39\x63\xaa\x0d\xbc\x54\xf6\xcc\xaf\x25\x23\x24\x75\x36\x8c\x42\x6c\x5f\x52\x32\x9f\xf2\x66\xed\x1b\xca\xd7\xe7\xae\xaa\x41\xfc\xa7\xff\xf1\x7f\x32\xed\xa9\x4a\xe7\x54\xf5\xe6\x9c\x36\x41\x80\x67\xa0\x80\x04\x9e\xd2\x34\xd1\x28\x85\xc5\x95\x86\x2e\x8a\x3b\x14\x7d\x03\x93\x10\xb0\x12\xb0\x3a\xc8\x58\xe5\x59\xa7\x95\x36\x5f\x1e\x1d\xdd\x47\x03\x40\x4c\x7f\xe9\x16\x50\x8d\x7b\x5f\xb5\x35\x8e\x51\xc0\xc0\x39\x53\xa0\xda\x3f\x9b\x94\x32\x48\x32\xe5\xab\x2b\x57\x94\x7d\xf0\xc9\x1a\x64\xe7\xe5\x97\xdb\xc3\x32\x8e\x8a\x68\x44\x11\xa7\x5f\xdb\x37\x94\x34\xa6\x2f\x1c\x66\x36\x5c\x8e\x6d\x0e\x82\x0a\xcd\xac\x17\xd1\xac\xa5\x95\xe3\x3f\xf8\xd4\x7a\xeb\xd7\x5f\x62\x24\xdf\xc7\x0f\xad\xeb\xf6\xad\x5d\xe6\x8a\xa5\xb0\xed\xaa\xaf\x70\x89\x8c\xdf\x22\x8e\x4d\xac\x10\x79\x9a\x3c\x55\x8d\x24\x71\xe6\xab\xee\xd1\xd9\x41\xf8\x7e\xea\x8d\xb1\xea\xa7\x7e\x8c\x50\x14\x6b\x10\xcb\x28\x0b\x95\x91\x32\x26\x8c\xab\x0b\x2a\xc8\x79\x9b\x92\x78\x56\x94\x0d\x94\x3e\xe0\x4f\xb8\xb2\x8f\x1a\xc4\x35\x34\x4f\x84\x59\x4d\x53\x9c\xcd\x38\x35\x3f\x16\x90\x39\x84\x5c\xd7\xdd\x73\xec\xc6\x69\xb8\x6c\x7a\x28\x9c\x29\x12\x94\x48\xf6\xe0\x53\x18\x3f\x77\x83\xa7\xb4\xe2\x40\x94\x17\xd3\x44\xe2\x94\x6a\xaf\x32\x2a\x3e\xa5\x24\x60\xd0\x5b\xe1\xff\x1e\xf8\xd6\x5b\xda\x85\x32\x5e\x9a\xad\xed\x70\x21\xd5\x7e\x26\x0d\x9a\x71\x54\x62\x17\xdf\x6e\xad\x5f\xc5\xc7\x3a\xe9\x89\xab\xbc\x53\x9b\x12\x5d\x54\x52\x3d\x17\xc7\x8f\xca\x72\xf3\xf9\xdf\xa4\xb6\x57\xb5\x2f\x54\xb7\xc4\x21\x23\x36\x14\x24\x16\x5c\xc2\x62\x6b\x20\xb8\x5c\x4a\x2e\x41\xef\x59\x24\x91\xab\xd5\x43\xd4\x05\xe8\x12\x91\x2c\xb5\x08\x7d\x23\x43\x92\xde\x12\xb6\xb9\xd7\xa9\xea\x85\xd7\xf7\x3f\xd0\x0a\xc5\xb8\x9e\xb1\x87\x0b\xbd\xa3\xba\x9f\x9c\x38\x03\x37\x7e\xb3\x01\xfc\xd8\x4e\x22\x66\x53\xa1\xff\x0c\x37\x6e\x21\xd4\xb6\x1c\xb7\xf4\xbc\x82\x53\x50\x5b\x9c\x3e\x83\x77\x7d\x35\x50\xd6\x0a\x67\xa9\x92\x87\x58\xe7\x1d\xd5\x7c\x0c\xcd\x28\x2a\x4c\xcb\x97\xe0\xb7\xf1\x29\x3e\x71\x69\xd5\xd7\x4b\xeb\xe3\x43\x6e\x01\xd0\x38\x97\x76\x80\x27\xfc\x2d\x65\x90\x7e\x75\x15\x2a\x8c\xc9\x8f\xe8\x59\xf0\xb1\xf2\x1a\x1c\xa6\x3d\x9b\x17\x7b\x3c\x47\xe1\x2f\x03\x30\x23\x31\x18\xb1\x8c\xbe\x85\x39\xe1\xa2\x61\x5f\x51\xd9\x9a\x70\x00\x75\x66\x22\xab\x51\xc2\x65\x28\xec\x60\xbf\xa5\xba\x83\xbf\xd5\x00\x2b\x58\x60\xc0\x62\x4b\x71\xd8\x37\x54\x67\x7b\xc3\x11\x0e\x32\x9b\x5b\x43\x6e\x78\x28\x85\x70\xfa\x18\x4c\xe4\x92\xbe\x25\x31\x30\xa3\x91\x4d\x28\xa9\xae\x32\x35\x67\x93\xe0\x84\x0f\xdf\x08\x7c\xbe\xf7\xc6\xb8\xf5\x92\x18\x3a\x5c\x7c\xa8\x37\x78\x12\x1a\x83\x2a\x23\x2f\x73\x0a\xfb\x73\xa1\x16\xba\xbe\x50\xad\x75\x68\x45\x60\xca\x7c\x53\xab\xea\x7e\x53\x01\x4a\x46\x69\x1e\x91\xc8\xa5\xaa\x0e\x3e\xc0\xc4\xe0\x93\xe0\x71\x8f\xe1\x4b\x19\xe8\xc5\x3a\x34\x98\x27\x78\xc0\xfc\x30\x26\x14\x6a\xf8\x5f\x76\x22\xb2\x4c\xd6\x9b\x9e\xa0\x40\xf8\x4e\x2f\x5c\x18\x00\xf7\xb9\x16\xa8\xcb\xd8\xdc\x19\x68\xfc\x72\x95\x07\x3e\xe2\x97\x73\x31\xbf\x41\xb1\xf9\x24\x16\x57\xcc\xc8\x93\x0a\x52\xfd\xa1\xfa\x31\x36\x6a\xe2\xd9\xb6\xee\xa3\xb8\x93\x8a\x51\xf4\x21\x3d\xb9\xed\x63\x2a\x6f\x4f\xb3\xa8\x1f\x25\x0e\xfb\xfd\xff\xf0\xf5\x67\x51\x92\x64\xe7\x7d\x18\xde\x9d\x55\xdd\xd3\xd3\x3d\x3d\x2b\x06\x0b\x71\xf4\x57\x42\xc2\x5f\x90\xe5\xe1\xd8\x96\x6c\xd9\x47\x2f\x91\xaa\x2a\x71\xd0\x6d\xa0\xa6\xdc\xdd\xec\x11\xe7\xf0\x61\x6e\x46\xde\xca\x8c\xa9\xc8\x88\x44\x44\x64\x55\xd7\x3c\xfa\x41\x47\x2f\x3e\xa6\x17\x1d\x1f\xd3\xb4\x25\x11\xe7\x88\x94\xe9\x23\x42\x24\x28\x92\x10\x81\x4c\x2c\x04\x89\x7d\x00\x0c\x66\x6f\x4c\xef\xfb\xbe\x6f\x53\xed\x13\xdf\xef\xfb\xee\xfd\xa2\x22\xc6\x6f\x11\xdd\x95\x99\xb1\xdc\xfb\xad\xbf\xef\xf7\x7b\x59\x6b\xaa\xec\x77\x8a\xb3\x4d\x69\xab\x29\x18\x66\xd2\x52\x12\x62\x4c\xab\x2e\x16\xb1\x12\xd3\xda\xde\xb3\xe5\xa5\x20\x3c\x7d\x14\xe3\x95\x0a\x7d\x24\xf9\xc1\xff\xac\xf8\xc3\xae\x06\x55\x66\x65\xd7\x33\xfc\x26\x2d\x34\x00\xcc\xce\x4e\x50\x2d\x14\x7e\x73\x2d\x0a\xc6\xa4\x6c\xd8\xb5\x5b\xa7\xb4\x84\xc5\xab\xd0\x53\xc5\xd7\x6d\x87\xa4\x11\x4a\x2c\xa7\xe0\x0c\x81\x58\xdb\xda\xf1\xb2\x22\x5b\xc9\x88\x61\x21\xa0\x69\x09\x5f\xb8\xb5\xa3\x10\xa4\x4c\x55\xc4\x37\x46\x76\x15\xbf\x7e\x2a\x50\xc2\xf9\xf7\x14\x13\x02\xa9\x63\x52\x3f\x07\xd3\x9d\x34\xf4\xcb\x51\x16\xee\x59\x74\x43\x75\x03\x25\x8f\xc2\x5d\xbe\xd1\x72\x45\xb3\x6c\x1c\xc5\xb4\x1f\x6e\xed\x36\x9e\xad\x94\xfd\x7d\x0f\x9c\x71\xcf\xf0\x0c\x5f\x09\x74\x71\x90\xd6\x98\x88\xd9\x56\x1a\x74\x2d\xaf\xb3\x88\xb1\x3a\xfe\x11\xa7\x66\xd1\x8b\xf2\x62\x9c\x75\x05\xb3\x84\xb7\x70\x5f\x11\xed\xdc\xaf\xd5\x28\x69\xe2\x1f\x93\x62\xc2\x66\x25\xb3\x89\x6a\xe6\xed\x78\x4d\x3d\x77\x71\xb1\xd2\x77\x53\x3c\x22\x97\xd5\x00\x4f\x5d\xc9\x9c\xda\x8f\xab\x91\x5d\xe3\xb8\x0b\x13\x36\x1b\x2a\x34\xbc\xac\x6a\xaa\x5a\x7e\xa0\x9b\x59\xb3\xe2\x10\x6b\x08\xcf\x4f\x7b\x7d\xed\xa7\x4f\xab\x12\x57\x98\xa6\x59\xaf\xdc\x59\x6c\xc6\xc5\x28\x7a\xfd\xee\xba\xd6\xdc\xc1\xb9\x97\xcb\x83\xdc\x62\x2c\x06\x2b\xf0\xb6\x42\x4d\x9c\x87\x2d\x12\xfa\xfc\x9d\x6e\x98\x6d\x44\x45\x20\xa4\x92\x60\xeb\xe4\xe3\x5a\x85\xff\x8b\x0b\xed\x7c\x64\x63\x5d\x35\x3a\x4c\x17\xc5\xc7\xd5\x28\xd3\x24\xbb\xf5\xe8\x38\xe6\xd2\x36\x1e\x04\x1e\x86\x83\x35\x81\xec\xf7\x5f\x83\xbe\x48\x21\x20\xbd\x2e\x20\x2d\x23\x9e\x3a\x83\x71\x11\x71\xd2\x0a\x9b\x32\x3d\x59\xbe\x71\x7a\xb2\x70\x0b\x77\xc8\x28\x48\xd4\xaf\x98\x42\xa6\x1e\x82\x30\x30\x19\x00\x8e\x0b\x1a\xf9\x2c\x63\xdb\x40\x1e\xe3\xdb\x76\x4c\x3f\xe9\x9d\x46\x45\x44\x35\xdf\x56\x9a\x28\x58\x51\xe6\x1a\xe1\x93\x40\xe3\xa2\xb6\xa0\x3c\x0a\x17\x74\x78\xa2\x12\x9c\x7b\x4d\xc4\xac\x79\x1a\x33\x39\xbe\x87\xab\x42\xd3\x8b\x8f\xfd\xd4\x47\x98\x59\x9b\xe4\xa0\x56\x11\x50\x3b\xfd\x16\x2a\x81\x28\xff\xaa\x42\x85\xc8\x3d\xdc\x50\x23\xa6\xc3\xfe\xf0\x37\xff\xb3\x31\xcb\x5d\x60\x83\xb6\x08\x1b\x25\x25\x5c\xd5\xfb\x7c\xbf\x96\x05\x2d\x1c\x68\x17\x36\xb6\xf9\x7a\x5e\xd8\xa1\x6c\x48\x18\x96\xc3\xb8\x14\x3e\x69\x6a\x21\x8e\x32\x5b\x98\x43\x2d\x5f\x6f\x3e\xa6\x04\x29\x8f\x35\x89\x2b\x16\x03\x93\xac\x30\xd4\x98\xd9\x10\x02\x45\xc1\xf4\xcf\x1d\x1b\x77\xba\x6a\xb3\xe5\x38\x5d\x73\xf5\x1e\x1e\x8c\xa0\xed\x21\x43\x12\x4d\xd2\x8a\xdd\x2c\x1d\xf7\x07\xdc\xcc\x46\xae\x0d\x22\x2b\x89\x71\x69\xc9\x20\x2b\x39\x51\xdb\x2f\xe5\x37\x7c\x69\x1c\xbd\x36\xa3\x58\x53\x00\xf4\x95\x95\xa9\x0a\x69\xc7\x15\xc2\xaa\x4c\x6b\xe0\x52\xe1\xd4\xcf\x69\x9d\xee\x73\x6e\xee\xc3\x26\xbd\xb1\x63\x29\x50\x9a\x38\x0b\xae\xcc\x20\x79\x92\xe9\xa6\x99\x9b\x0c\xaf\x70\x83\x0b\x03\xf8\xc7\x36\x4b\x7c\xb6\x17\x17\x97\x76\x93\xc9\x10\x61\x2d\x7a\x72\x18\xa5\x79\xb3\x02\xb9\x0c\x94\xc9\xf9\x29\x61\xbc\x10\xd2\x9d\x0c\xbc\x72\xdd\x3b\x6a\x10\xe7\x4d\xdd\xa6\xc7\x24\x0f\x53\x58\x62\xd7\xa1\x7c\x7a\x2a\xf0\xbb\xee\x5a\xa0\x5e\xf2\x0d\x2c\x5e\x6c\xd4\x37\xd4\x0c\xb7\xe3\x91\xdb\x56\x03\x45\xa0\x36\x72\x4f\x21\x1c\x6e\xb3\xb3\xe7\x4e\xa5\xa2\xea\xff\x40\x31\x3d\x9b\xe2\x57\x14\x9f\xcf\x15\x78\x47\x26\x16\x84\x41\x65\xa6\x64\x2a\x6f\x00\xdb\x71\x57\xcf\x9b\xbf\xaf\x78\x56\x7f\x8e\x0b\xc7\x1e\xd8\x3a\xa5\x54\x0d\x21\xf6\x61\x94\xfb\xa4\x39\x4a\x4f\x1a\xcd\x8c\x5d\x24\xce\x21\x52\x46\x74\x2f\x70\x4e\x6f\x05\x9a\x59\x7f\x03\x8f\x14\x43\x05\x77\x26\x2a\xa0\x3b\x53\xbe\x90\x8d\xe9\x64\xeb\x67\x3d\x5c\x7e\x71\xd1\x0d\x16\xb7\x7e\xed\x25\xae\x09\xdf\x0e\x50\x67\x56\x53\x56\x6f\x4c\x54\xf5\x64\x63\xd2\xfa\x27\xff\xd4\x35\xb3\xcb\x97\x26\xc3\x3a\xe4\xcd\x9d\xa4\xd3\x41\x61\x62\xfe\xdd\x5a\xb1\xf0\xc0\x8b\xae\x84\xaa\x28\xd3\xd1\xff\x12\x19\x4c\xff\x3a\x9d\x36\xc1\x93\xf4\xd8\xa4\x34\xa7\x1c\xbb\x60\x0c\xb0\x60\x40\x31\x43\x91\xc2\xda\x53\x54\x41\x81\xed\xf8\x2e\x5e\x14\x5e\xf4\xfb\x74\x7b\x42\xd5\x52\x5e\x04\xca\x4e\xcc\x5d\xe2\x4a\xb1\xe5\x2d\xa9\x4a\xca\x7e\x4d\x5d\x2b\x53\x8e\x27\x95\xf8\xc2\xee\x8e\x32\x99\x8f\x80\xfe\x11\xc9\xef\x7d\xbc\x5b\x91\x89\x6a\x10\x96\x6c\xc7\xb6\x6f\x42\x8d\xac\x81\x67\x94\x01\x99\x86\x1c\xd9\xae\xda\x84\xca\x6e\x58\xd8\x77\xe8\xae\xb0\x62\x0e\x53\xdd\xc5\x59\x9b\x7d\x12\x1c\x7f\x4b\x0d\x17\x0d\xd2\xbc\x88\x62\xfb\x08\x5d\x19\x5e\x3f\x3a\xd3\xb8\xe5\x37\x60\x46\x39\xff\xa4\xef\xe3\xff\xa0\xc2\x68\x65\x6c\x1e\x31\xf9\x14\xcf\x98\xbf\xaa\x56\xe4\x7f\xe5\x95\xf6\xc8\x66\x76\x46\xd5\xa4\xb0\xce\x84\x63\xa2\x7c\x5b\x38\xfe\x99\xea\xca\xa6\x23\x4b\x54\x95\x9c\x6e\xb2\x6e\xd7\xa4\x22\xe2\x55\xe7\x64\x2e\xdd\xf9\x8a\x4d\x60\x16\x5d\xea\xa3\xb2\x1a\x9f\xc2\xf4\xa2\x3c\x8c\xd3\x7c\x9c\x31\x57\x0c\x80\x60\x3f\x0f\x7c\x0f\xfa\xac\x16\xd6\x77\x96\x77\xd9\x44\xd9\x1a\x6b\x4c\xc3\xd6\x7d\x2f\xf0\x69\xed\xf7\x14\x16\xaa\x9f\x99\xf5\x59\xe5\x85\xb9\xea\x2e\xd1\x13\xad\x26\x86\xd6\x07\x7e\xc8\xf3\xe7\x6a\x1b\x84\x29\x75\x3c\x73\x10\x02\x0a\x97\x81\x2b\x16\x7e\x65\x06\x18\x2e\xec\xb9\xed\xae\x0f\x96\xa4\x5d\x86\xe9\x22\xc0\x7c\x4f\x05\x9b\xef\x05\xcf\x68\x76\xd5\x11\x9c\xc3\xac\x07\xa3\xbe\x81\xd7\x29\x45\x69\x8f\x4c\x7d\x03\xb6\x9e\xff\x43\xe5\xc4\x61\x8f\x81\xe1\x78\x6c\x47\x27\xd5\x11\x7e\x8d\xd6\xf7\xe0\xe6\x9b\xaa\x0e\x7e\x56\xf1\x4f\x64\x76\x34\xee\xc6\x51\x68\xf8\x25\xb2\x58\x7f\xe0\x1b\xe8\xdf\x75\x5d\xd7\x3c\x2a\xad\xc4\x8c\x6f\x73\xdf\xa2\x78\xcf\x69\x13\x3a\x62\xd3\x77\xd5\x33\x4d\xec\x5a\x98\x0e\x2d\x16\xd6\x0b\x6c\x84\xff\x52\xb5\x03\xfe\x72\xf2\x68\x54\x46\x24\xcb\xff\x45\x7b\xf4\x69\x32\x06\x98\x4e\x65\x62\x4e\x98\x47\x96\xb9\x85\x1f\xe3\xa9\x1c\x58\xa9\xa7\x3a\xf4\x98\x60\xd3\x7e\x42\xab\x1b\x1f\x61\xaa\x39\x3c\xa4\x9d\x14\x91\xc1\x6f\x7e\xba\xd3\xfa\xa2\xd7\xc0\x42\x56\x8a\xfb\xb9\xa4\x95\xf1\x76\x4e\xcb\x9b\xc3\x46\x7f\x8c\xb0\x67\x28\x12\x3c\xde\x51\x8c\x69\x1b\x74\x23\xb0\x51\xdb\x20\xb0\x00\x27\x3c\x4b\xce\x44\x92\x9b\xd6\xaf\x7f\x5e\x34\x86\xd9\x8e\x22\x59\xfc\x9b\x53\x4f\xd5\xb9\x93\x82\x3f\x04\x09\xbb\xa8\x36\x88\xc6\xca\x16\x0c\x5b\xbb\xdc\xee\x9f\xfc\x53\xc5\xd0\x20\x82\x57\x0f\x90\x0d\x2b\xb6\x43\x06\x46\xfc\x4f\xbf\x3a\x55\x22\x3c\x08\xcc\x66\x7c\x89\x0c\xba\x3b\x52\x5d\x2b\xbf\x0f\x9e\x86\x32\x5f\x97\x60\x98\xcc\x70\x84\x29\xfc\xbd\xf4\x03\xa2\x93\x51\xaf\x3b\xb4\x7b\x44\x6d\x96\x9b\xa4\x50\xe2\xf0\xa7\x94\x04\xfa\xa9\x89\xa0\x32\xbb\xe3\xcc\x9a\x71\x98\x19\x22\x6a\xf7\x92\x9b\xb4\x15\x44\x7e\xb3\x09\x30\x36\xb0\x96\x0b\x69\x8e\x1b\x46\x66\xb0\x8e\x5e\xaa\xaa\x58\xfc\x9d\x82\x78\x8a\x9c\xa0\xad\xc3\x30\xdd\x47\x00\x01\xd3\xce\xf4\x88\x0c\xfe\xc4\xf2\x13\x24\x68\x53\x5f\x6d\x90\xe6\xa3\xa8\x30\x71\xcb\x7b\xf9\x0b\xaa\xef\x71\x41\xd9\xa6\x55\x5b\xa4\x8f\xa9\x69\x76\xe4\xa3\xc8\x10\x1f\x20\xdc\x73\x28\x43\xf7\x52\xc1\x30\x09\x48\xd5\x9d\x0a\x9f\x37\x5d\x1a\x4a\xc7\xb3\x1d\x2f\xe0\x70\x41\x71\x3c\x9c\x06\x30\x49\x02\x66\xba\x33\x37\x8b\xec\x8b\x68\x8d\xca\x87\xcc\x48\xae\x14\xab\x60\x98\x44\xdb\x63\x73\x32\x52\x66\xc4\x99\x25\x21\x29\x37\xea\xc2\x83\xa9\x15\x06\x31\xdd\x13\x92\x78\xb9\x34\x8a\x36\x2b\x20\x79\x0a\x33\xfb\x08\x45\x17\x30\xd5\x27\x35\xdb\x62\x6b\xea\xeb\x31\x99\x5d\x66\xc2\x44\x20\xb6\x4e\x2b\xbd\x85\xd3\x8a\xf1\x38\x1f\xd9\x30\x32\x31\xf5\x20\xca\xa7\xa6\x5a\x17\x8a\xfd\x6d\xef\x5e\x89\x91\x11\xf8\x49\xc0\xac\xa7\x1c\xc2\x95\x2c\x35\x54\x91\x2d\x5f\x8b\xf4\xae\x55\x1f\x5b\x25\x77\x85\x2d\x4c\x32\x86\xa7\xc3\x93\xe0\xc5\xe5\xbc\xb0\x7b\xb4\x77\xdd\x44\xe3\x30\x2d\xd2\x6c\xd6\x77\x1e\x0f\x23\x06\xd6\x73\x49\x08\xde\xf1\x80\x44\xf5\x5f\x81\xf6\xc7\x49\xcf\xac\xc3\x83\x57\x74\xb7\xf9\xa4\x69\xd6\x21\xb3\x84\xd5\x99\x51\xe2\xa8\x1b\xb8\x54\x40\xc8\xc0\xd2\x23\xa1\xbb\xaa\xb2\x10\x71\x2f\xe3\x88\x70\x59\x27\x55\x7e\xd1\x38\xf0\xf1\x59\x06\xee\xb4\x7c\x6b\xe1\x1b\x15\xac\x4e\xc3\x20\xde\x5a\x54\x90\xd2\x80\x92\x41\x42\x14\x2b\x40\xbd\x27\xdc\xd3\xeb\x45\xcb\x91\xcc\xa0\xc3\x70\xb0\xaa\x8a\x08\x1d\x29\x7a\x9b\xf3\x93\x67\xd4\x5c\x7c\x36\xca\xa2\x9c\x2c\xa3\xeb\x54\xde\xa0\xa2\xa0\x60\x45\xcb\x9b\x64\xa4\x98\x57\xb3\x35\xc9\x32\x61\xbc\x0f\x0a\x90\x19\x2a\xa5\x30\xe1\x78\x47\x48\x66\x66\xa7\x0d\x0f\xbe\x9f\x99\xe5\xa2\x2a\x51\xc2\x12\x60\x7c\x32\x7d\xd6\xcf\x2b\xe7\x85\xe9\xc6\x18\xda\xc4\xf6\x42\x2e\xf4\xed\x89\x0f\x24\x6e\x29\x8d\xe2\xba\x80\xe7\x73\xed\x22\xed\xdb\x62\x60\xb3\xd9\xd2\xb5\x20\x8c\xe7\x5d\xe0\xa4\x28\xf7\xcd\xc9\x6c\xb7\x12\xb1\xb9\xe2\x9e\x70\x98\xa5\x63\xc0\x59\x95\x6b\x9b\xf1\x3a\x65\x97\xdd\x4a\x36\xbd\x61\x54\xe0\x45\xa0\x0a\xc2\x79\x12\x72\x09\x70\x9e\xa1\x74\x7a\xbc\x82\xec\x5d\x4e\xb3\x21\x93\x39\xbc\xc0\x8b\xf6\xc3\x89\xef\x35\x6d\xa3\x0f\x0a\x47\x98\xbc\x07\x34\x97\x62\x4f\xad\xfc\xfb\xff\x7f\xf0\xc8\x03\x31\x0a\x47\x42\x61\xd4\xff\xd8\x46\x05\x19\xb9\xf1\x29\xcd\x83\xb7\x01\x3b\x23\x9a\xb1\x7e\xba\x80\xaa\x89\x1c\xbe\x2c\x6a\x29\x41\xa7\x2b\x58\x5b\xe9\x9f\xfb\x5c\xdb\x1e\x0a\x63\x13\x0d\x39\x9a\x56\x52\x5e\x9e\x13\xb2\x4e\x61\xf2\x42\x19\xb9\xe7\x69\x92\x58\x96\xd4\x73\xd8\x89\x45\x8f\x7e\xa8\x57\x23\x97\xda\xc3\x30\x34\x6b\x2d\xd5\x59\x3f\xcd\x19\xab\x38\x9b\xa6\x0f\xc5\xa9\x29\x06\x68\xae\x88\xbc\x88\x9f\x83\xf8\x0e\x3d\x34\x04\x3f\x1f\x22\x90\x92\x08\x4b\x7a\x5f\xc9\xf3\xc3\xe7\x69\x23\x3b\xd4\x45\xf9\xfb\xc2\x3b\xe9\xc7\xe7\xf2\x94\x46\x08\xd0\x1d\xb8\x0a\x7f\xcb\xaa\x12\x8a\xa8\xfc\x88\x86\x69\xfe\x47\x2d\x71\x7b\x92\x9c\x1a\x8c\xe8\x09\xb8\x4a\xbc\xd8\x87\x13\xbf\x43\x2f\x05\x8a\x14\x89\xbb\xa9\x4e\x60\xba\x5c\x0b\xcc\xeb\xa0\x75\x21\xee\x52\x1a\x06\x98\xc5\xcc\x54\x53\xaf\x7f\x2b\x20\xc3\xeb\x4a\xa7\xf3\x42\x11\x87\x5e\x9d\x34\x26\xe9\xd9\x31\x85\xed\x44\x4b\x89\xad\x0b\x2d\xae\xd4\x58\xf5\x78\xb9\x87\x9d\x0c\xd3\x55\x9b\x3f\x5a\x3e\x03\xcc\x18\xed\xee\xa8\xb2\xe8\x2d\xdc\x04\x88\xcc\xdf\x0f\x14\xab\xf9\xfb\x13\x45\x96\x04\x20\x95\xcc\x05\xa9\x06\x2b\xee\x14\x7d\x83\x13\x5a\xfd\xe0\x6a\x03\x2e\x2c\x1e\x87\x51\xda\x52\xb2\x2a\x1c\x42\xf2\x49\x43\x26\xdd\x66\x50\xd7\x8c\x62\x7a\x43\xe3\x9a\xb9\x35\xe9\x5a\xb8\x10\xa0\x98\xa1\x4a\x0b\x64\xbb\xeb\x84\x42\xc1\xc5\xfd\x16\x25\xba\xa2\xbe\x59\x7e\x0a\xaf\xb4\x35\x55\x9d\x8f\xdf\xc2\xc3\xe6\xfa\xba\x2b\xb6\x15\x6b\xbe\xd4\xff\x02\x1b\x35\xa8\xb0\xf1\x71\x25\x8c\xcd\xcc\x08\xed\x51\x45\x77\x22\x72\xd7\x6f\xd2\x3b\xe2\x63\xf2\x63\x12\x70\x7b\xb6\xc5\xfe\x78\x3d\xd7\xe1\xac\x66\xc3\x38\x15\x48\x05\x34\xa1\xe9\x30\x93\x45\x4c\x06\x8a\x2b\x79\x40\xd6\x55\x2b\x71\x60\xa9\x5f\x57\x2d\xed\x3c\x1e\xf7\xfb\x51\x3e\x80\xbf\xf3\x2d\xf0\xc3\x4a\x97\xf0\x70\x13\x9c\xa8\x6b\xe3\x74\x8d\x6a\xe2\x88\x70\xd1\x02\x13\x21\x43\x85\x20\xb9\xac\xc6\x26\x5f\x57\xa4\x07\x7f\xac\x82\x88\x22\x33\xa1\x05\xac\x13\x26\x1a\x2f\x85\x8f\x6b\x8b\xa7\x0c\x17\xcd\x5a\x32\xab\x14\xbe\x8f\x4f\xfc\xac\x09\x9a\x34\x22\xba\xee\xdf\xee\x4c\x8d\xd2\x7a\xe1\x40\xbb\x30\x63\x2d\xc4\x7c\x53\x69\xc2\xdd\xd4\x1b\x6c\xdc\x8d\x2d\x4f\x8d\xe2\x8d\xfd\x52\xeb\x10\xff\xd2\x7b\x68\x08\x7e\xa2\x81\x84\x6d\x75\x44\x35\x42\x4e\x6a\xea\xe2\xeb\x0d\x50\xe6\xa5\xf6\xd0\xf6\xa2\x90\x9b\xfc\x4b\x5e\xd0\xd0\xad\x81\x4b\x8a\xcf\x60\x68\x12\xd3\xe7\x8d\xef\x86\xd6\xfd\x00\x7b\x85\x2b\xd6\xf6\x2c\xa7\x46\x52\xef\xd0\xb0\xac\x86\x39\x72\xd6\x63\x64\x87\xd2\xc8\x45\xfb\x51\x18\xc8\x30\x4d\xf2\x51\x14\x8e\xd3\x31\xde\x2a\x73\xa4\x23\xd0\x15\xc2\x74\x9d\x2e\x99\x24\xdc\xae\x40\x44\x5c\x43\x46\xb2\xb2\xa5\xd3\x7a\x69\xc9\xc7\xe6\x07\xe7\x96\x36\x40\x7a\xc6\x7f\x1b\xf8\x10\x50\x6b\x1c\x15\x29\x8d\x2d\x6d\x53\x43\x92\xb0\xa5\xd8\x11\x20\xd7\x62\x79\x79\xd5\x40\x3e\x89\x90\x0d\xfe\xba\x3e\x07\xb3\xf4\xe2\xfe\xb6\xef\x34\x38\x09\x0e\xb7\x68\x4e\x2b\x36\xa0\xbc\x48\x13\x6e\x82\x23\xbe\x3a\xad\x06\xfd\x9b\xd8\x82\x87\x51\x38\x80\x83\x53\x8a\x7f\x4b\x8e\xb3\xdf\x47\x08\x03\x33\x4e\xa8\x33\x8f\x52\x82\xc8\x33\x51\x42\x2e\x1a\x4e\x0d\x29\xf2\x9a\xb1\x59\x91\x47\xb1\xb1\x2d\xad\x1b\x4e\x3f\xc2\x27\x6e\x72\xb1\x46\x39\xcb\x6c\xad\x81\x22\xef\xbd\x5b\xf3\xf2\x4b\xfb\x96\xda\x3d\xdb\x1d\x43\xb3\xdd\x15\xd9\x7c\xc1\x2d\x78\x56\xf1\x90\x76\x4d\x96\x99\x3c\x27\x0c\x89\x9f\xb7\x39\x0a\xf7\x29\xb2\x6c\xf4\x3a\x44\xaf\x4d\xcd\xe8\xd4\x5d\xc4\x73\xed\xe1\x38\x0f\xc7\xb1\x01\x44\x4f\x78\xa3\x5b\x8a\xa8\x67\xf3\x43\xd9\xb3\xd8\xce\xc3\x2c\xea\x2a\xbd\xd9\x26\x85\xea\x06\x67\xd4\xb3\xcb\x51\x22\x50\x19\x01\x4b\xa9\xf6\xe5\xeb\xd5\x11\xf8\xf1\x70\x54\x3e\x49\xaa\x09\x60\xad\xce\x74\xc8\x31\x38\xe8\x8a\xc7\x33\x7c\x10\xf8\xe8\xe5\x03\x72\x0c\x48\xe1\xca\x5c\xd4\x6f\x99\x38\x4a\x76\xd1\xb3\x41\xf2\xf0\x7f\xc3\xb5\x68\xc2\x19\x71\xd7\xb4\x97\x84\x54\xb7\xfc\x3a\x07\x67\x2f\x9f\x33\x7f\x5c\xd3\xb9\x1f\xa1\xbd\xc1\x7f\x35\xf1\xb5\x7c\x04\xc6\x78\xf7\xdc\x83\x47\x15\x6b\x57\xc7\x03\xaf\xf2\xc2\xac\xdb\x1e\xa2\x49\x67\x84\xbd\x41\x0e\xbc\x84\x74\x5e\x70\xe6\xa4\x06\xde\x45\x85\xe5\x44\xc5\x21\x36\xc8\xaa\x95\x6e\xb8\xf4\x5a\x22\x48\x89\x14\xe8\x67\x81\x4f\x87\x7e\xd6\x34\xf2\x91\xd8\x7e\x5a\x44\x7e\x54\x84\xc9\x1f\x82\x96\x22\x82\xf0\x39\xf5\x8a\xb5\xa3\x28\xe9\xef\x70\x40\xce\x7f\xf7\x04\xd1\x54\x38\x6f\xee\x49\x52\x4f\xc1\x6e\xc0\x1f\xa0\x8d\x28\xe3\x44\x74\x7d\x32\x74\xa4\xa8\xa5\x05\x91\x82\xaa\xe2\xee\xce\x93\x1a\x83\x54\xda\xae\xd9\xd6\x26\x42\x6b\x6d\xae\x00\x42\x3a\x5c\x3e\xa7\x8e\x07\xec\x7e\xfe\xd7\x17\x67\x14\x47\x06\x27\x41\xb0\x66\x48\x82\x04\x30\xec\xdf\xd8\xb0\xfc\x2d\x34\x28\xb0\x7c\xce\xd0\xe5\xf3\xf1\xc4\x97\x81\x63\x9b\xb6\x3c\xba\xe5\x9c\xe6\x59\x3f\x57\x2b\xd5\x2f\x1c\x68\x23\x21\x99\xf1\x30\x65\x66\xa1\x44\x64\xdb\x42\xca\xc4\xd8\x52\x4d\x8b\x9a\xa6\x2b\xbb\xca\x94\x11\x4b\x86\x05\x74\x1d\x79\xdc\xfc\x42\x55\xd3\x9c\x7b\x64\xf4\x0a\x61\x1a\xee\x2a\xa8\xf9\x96\x8e\x17\xef\xc4\x1c\x11\x0c\xe4\x77\x35\xc5\xd3\xc3\x89\xee\x66\x5f\xa4\x92\xae\x10\x24\x6e\xf6\x00\xcf\xb5\x57\xa3\x7c\x6c\x62\xec\x7c\xd8\xe6\x4b\xaa\xb6\x76\x29\xf8\xf8\xe6\x6e\xeb\x0b\xa4\x5f\xae\xb4\xf2\x21\x39\x21\xa0\xaf\x4f\x78\x62\x64\xa0\x47\xbb\x51\xaf\x57\xe6\x7f\xde\x72\xfd\x5f\xb8\x55\x3e\xf1\xd0\x86\x18\x8a\x7f\x9e\xd2\xe4\xb7\xb0\xc0\x24\xce\xdd\x1c\x60\xec\x9b\x6b\xf7\x6c\x18\x1b\x2f\xc8\xef\x28\x76\x1d\x8b\xd7\x51\xd5\x4a\x2a\x2d\x74\xc4\x20\x3b\x4c\x1c\x1c\xa3\xe7\xcc\xc7\x15\x1f\x6e\xf3\xe2\x13\x2a\xbc\x3d\x17\x28\x90\x05\xf3\xfc\x49\xeb\xb0\xb5\x4f\x1c\xce\x1b\xf4\xc3\xa8\x2b\x1e\x51\x9e\xfc\x2c\xbf\x11\x91\x36\x56\x85\xf9\xf7\x29\x09\x43\xcc\xff\x3d\xc5\x42\xf7\x26\x5c\x05\xde\xc2\x0d\x64\x7d\x30\x6e\x1b\xf4\x42\x5d\x91\x77\x9f\x80\xa8\x98\xfd\x0c\x8e\x7f\x1b\x80\x67\x80\xe0\xfc\x02\xfb\x86\x65\xb5\x02\x1f\x1e\x5c\x05\x54\x5a\xc4\x11\x15\x1c\x78\xcb\xd4\xa3\xb3\xce\x13\x4c\x1f\xe5\xf7\x29\xf0\x50\x02\x1d\x69\x70\xcb\x26\x0b\x07\x51\x61\x43\x31\x87\x8c\xc3\xd6\x7b\x05\x2b\x5a\xe6\x21\x1e\x57\x03\x45\x51\xd2\x7f\xb4\xbc\x3c\x44\x35\x7f\x83\x56\x3b\x6a\x9a\x4f\x4e\xfd\x18\xec\x33\x53\x85\x1c\x78\x17\x45\x3e\x17\xe9\xcf\x8b\xf0\xc1\x3d\x44\x10\xae\x34\x5d\x5e\x37\x16\x29\x33\xf2\x60\xfd\xfd\x58\x4d\x14\xfe\x6a\x3f\x6d\xf9\xbc\xfd\x47\x6a\x19\xfd\x48\xa5\x9d\x79\x91\x86\x2b\x8f\xd3\x25\x38\x92\x92\xf2\x31\x0a\x60\x84\xde\x15\x16\xc1\x1d\x45\xfc\x7c\x57\xe5\x69\x0c\xcb\x13\x3c\x87\xef\xa0\xde\x0f\x7c\xa3\xe4\xe1\xc4\xc7\xb4\x3f\xa4\x65\xc2\x84\x07\xba\x37\x7f\x58\x17\x90\xde\x52\x1d\xe3\xd9\x8e\x62\xef\x78\xaf\x69\x98\xac\x6b\xe3\x62\xcd\xac\x73\x67\x02\x6d\x17\x0e\xe9\xf9\x44\xcd\xd9\x17\xd9\x38\x2f\x30\xc4\xab\x87\x75\x04\x0c\xd1\x52\x74\x0c\xf4\xbb\xf0\xd0\x1f\x43\xc3\x0f\x27\x27\x03\xdd\x03\x79\xaa\xf3\xa8\x80\xe9\xd2\xdd\xf4\x30\x2b\xd2\x3b\xf4\xd6\x7e\xe7\x6f\x51\xa6\x87\x3b\xbd\xaf\xbc\xfd\x45\xad\xfb\x01\xe1\x4a\x18\xf8\x6d\x53\x9f\xb9\x81\x21\x4e\x7a\x1b\xf4\x98\xd4\x4f\x48\xc7\xef\x3e\x77\xb0\x44\xf6\x80\xae\x5e\xd8\xed\xcb\x37\x46\xef\xb8\xf3\xc9\x8e\xe3\x96\x8a\xba\xeb\x26\x91\x21\x35\xbc\xaa\xdb\xb8\x69\x74\xb2\x4f\x4c\x2a\x33\x1a\x7e\x24\x2f\x4f\x87\x76\x6d\x60\x8a\x6d\xe5\xa2\x80\x5b\x07\x77\x30\xb6\x3f\x0a\x6d\xd8\xb2\x87\x69\x1d\x20\x47\x7a\x13\xd7\xce\xff\xd1\x38\xfc\x9c\x59\x48\xbb\x22\x3e\x17\x50\x9c\x02\xc8\x35\x0d\x43\x45\xb9\x1e\x33\x95\x71\x91\xf2\x1a\xf8\xb8\xe6\x05\xff\x2e\xb1\x78\xc5\xf6\x90\x62\xf0\x3a\xac\xaa\x6b\x87\x9b\x0a\xe4\x79\xa8\x0c\xb4\x94\xfc\x5a\x4e\xa1\xed\xbc\x1b\xcf\x1d\x65\x51\x28\x3c\x9a\x12\xbd\xa8\xac\x18\xe5\x35\x24\x83\xdb\x3b\x8a\xfa\xf3\x8d\x46\x8a\xb7\xdc\x24\x51\x61\xb2\x75\x35\xb0\x7d\xb6\xd2\x2c\x97\x3a\x5c\x6e\xc5\x54\x71\x87\x51\x45\x5d\xba\xd5\x75\xb9\xca\xec\x11\x0f\x79\x76\x8d\xcb\x4d\x13\x35\x9d\xb7\x65\xea\x47\x89\xef\x23\xc9\x84\x15\x3b\xa6\x49\x82\xf1\x14\x10\x2e\x7e\x2b\x50\x09\xf2\x2d\xd5\xf3\x4e\x47\xc0\x7b\xa7\x09\x2f\x38\xfc\xfd\xb1\x49\x95\xc2\xda\x63\x85\x1a\xba\x89\x4b\xed\x5e\x94\xd9\x90\xe6\x3f\xbc\xdb\xbe\xa9\x47\x89\x6e\xa2\x4c\xc3\x37\xf7\xca\x2b\x9f\x50\xe4\x0e\xb7\x08\x79\x83\x10\xec\x2f\xe0\x07\x85\x5f\xda\x57\xf3\xbe\x4e\x0b\x99\xdd\x8a\x9e\x78\xba\x32\x29\xb3\x33\xc4\x7a\xb8\x63\x89\xa3\x15\x17\xe3\x1f\x00\x84\x88\xa8\xf4\x71\x14\x99\xf1\xf1\x07\x81\x6f\xaa\xde\x01\xf0\x12\x15\xc3\xd7\x27\x9e\x4a\x63\x67\x47\x49\x2e\x5f\x0a\x5a\x5f\xd8\xcf\x71\xd1\x31\x6c\x45\x74\x7a\x1e\xd0\x76\x06\x3a\xe4\x16\xa2\x5d\x5c\xd6\x4d\x6a\xc3\x0b\x53\x06\x1e\x33\xea\x9d\x27\xe0\x85\xe1\x50\x5e\x27\x1b\x8c\x8f\xd4\x93\xc5\xc5\xc5\xf6\xd0\x0e\xe5\x11\x3b\x66\x70\x37\x9b\x7b\xad\x59\x86\x7e\x44\x94\x78\x1f\x89\xa7\x79\x4a\xf5\xeb\xbe\x34\x8e\x32\xdb\x7b\xa4\xbc\x6d\x37\x3d\xed\x07\x01\xdf\xa2\xbb\x43\x39\x62\x16\xcf\x83\xb9\xaf\x27\x7e\x1e\xf6\x3d\x72\x96\x3c\xa0\x8b\x30\xf2\xc3\xe0\x69\xd5\x93\x2a\x0a\x9b\x2d\x1b\x14\x91\x84\xa5\xa2\xa5\x46\xf1\x3f\xd3\x40\xa1\x30\xb0\x26\x2b\xd6\x4c\x36\x8c\x92\x3e\x93\xc0\x3b\xe5\x51\x97\x61\x5d\x6e\x08\x3d\x97\x4d\x1c\x0b\xf8\xc5\x71\xf2\xaa\xa9\xc5\x86\x44\x15\x44\xac\xf1\x36\x5a\x9e\x58\x3b\xa7\x35\x19\xfc\x65\xa5\x1b\xf6\x64\xc7\x07\xd1\xdf\xc3\x62\x47\x1a\xba\x6d\xfa\x8c\x66\x53\x90\x39\x11\x9f\x17\x5d\xa6\xc5\xec\x19\x07\xfe\x53\xcf\x66\x82\x40\xb9\x42\x31\x2b\x2c\x6a\xbe\xc0\x66\x92\x7c\xcd\x66\xb3\x0a\x2f\x7f\x4e\x8f\x8e\x9d\xd0\xf4\xcb\xcc\x82\x22\x89\xa2\xcf\x4f\x6c\xd2\xdb\xa5\xea\x53\x9c\x38\x20\x9c\xda\x4a\x78\x0a\x19\x2f\xf5\xc4\x21\x8c\xf0\x67\x01\xdf\xc0\x8f\x96\x3f\x36\xf5\xa3\x8a\x8c\x50\xc4\xb2\x39\x4d\xb7\x2a\x8a\x86\x6a\xbe\xf3\x2c\xae\x58\xa0\x92\x4d\x1a\xa6\x8e\xb0\x0e\x3e\xf6\x1c\xfd\x1e\x1f\x57\xc8\x55\xbf\x34\x76\x2c\x75\x78\x58\xaf\x60\x27\xf3\x49\x13\xf5\x4b\x77\x1c\xc5\x3d\x26\xb9\x78\xc1\x0d\x7c\x7b\xe4\xe3\x2e\x25\x27\x03\xed\xc2\x8d\x2b\x9a\x77\x25\xcd\x72\x28\xc2\x48\x13\x8b\x0c\x0c\x9f\xd4\x1c\xdb\xc1\xb9\x25\x1a\x01\x5a\x6f\x11\xd2\x11\x43\xac\x68\x0d\xf0\x71\x2d\x80\xfa\xb5\x97\x64\x00\x5e\x29\xa1\x9f\xa7\x90\x43\x9a\x60\xe2\x61\x8a\x70\x38\xa2\x52\xb6\x10\x67\xb4\x1c\x77\x2a\x77\x7d\x64\xa8\xc2\x6f\xc5\x74\x79\x39\x0a\x23\x13\xe7\x8f\xd3\x03\x40\x5a\xf8\x1d\x14\x93\xb0\xa3\x3e\x50\xea\x7a\xd7\x29\x5c\x90\xa1\x0b\x35\x1f\xbd\x41\x36\x0b\x66\x99\x79\x80\x55\x0e\x23\xb9\xe7\x9f\x23\xdd\xc7\xee\xb8\x8e\xd5\x89\xcd\x85\xf1\x62\x94\xe0\x37\x94\x82\xc0\x1d\xd5\x55\xdc\xda\x51\x02\x06\x1b\xb5\xc9\xa6\xbd\x7b\xdb\x69\x62\x67\x55\xe5\xf2\x22\x45\xe9\x2e\xb5\x29\xa3\x74\xa7\xea\xe9\x24\x97\x9a\xe1\x87\x49\x5a\x44\x21\x57\x93\xd9\x45\x07\xa5\x7f\x11\x77\xbd\x79\x99\xd2\x5b\x32\x05\xf8\x37\x60\x35\x4f\x06\xde\x82\x9e\x6c\x32\xe3\x7d\x9b\x64\xd5\xb1\x31\x8e\x0a\xf9\xe4\x23\xa5\x84\x47\x59\xba\x1a\xf5\xd3\x59\x55\x15\xbf\xcb\x31\x2f\x20\x59\xdf\x9f\x28\x3a\x64\x90\xb7\xca\xfc\x89\x82\xa7\x8d\xc1\xca\x0c\x6f\x76\x2a\xf0\xbd\xfe\x53\x7a\xe4\x3a\x36\xeb\xf9\x76\xcd\x24\x87\xa9\xa7\x2b\x48\x3f\x10\x7b\xa0\x41\xe8\x14\x39\xf6\x48\x4c\x72\x5b\x36\x8c\x52\xc2\x22\x11\xe1\x7d\x7e\x6c\x46\x1b\x98\x26\x4e\xc8\x34\x61\x5b\x8f\xbb\xf9\xd3\x89\x77\x19\x7f\x1a\x3c\x5d\x69\xff\x52\x5e\xd7\xf2\x13\x46\x57\x14\x29\xff\x15\xb5\xe6\xc3\x34\x59\xb5\x59\x61\xa1\x27\x81\x2a\x29\xaa\x74\xb2\xb2\x3d\x30\xfb\x0a\x6c\x95\x80\x70\x9e\xd1\xf4\x56\x69\x3c\x26\x90\x20\xed\x1c\x7c\xcd\x9f\xab\xa0\x0e\x44\x31\x42\xdb\xa7\x38\xa8\xee\x06\xcf\x2a\xb8\x4a\x12\x46\x71\xa4\x86\x66\x91\xaf\x82\x4e\x9e\x8f\x6b\x4b\x74\x7e\x9e\xa8\x67\x5d\x5f\x0f\xd7\xfd\x36\xfd\xb8\x50\xb6\x96\x3f\x2e\x62\x1f\x9e\xaf\xd6\x24\x2e\x46\x46\xa0\x8f\x60\x95\x8f\x5d\xef\x23\xb6\xfd\x28\x2f\xa3\xf6\xd9\xf2\xd1\x23\x13\x43\xbd\x46\x53\x2b\xc1\x63\xfc\xe1\xc4\x37\x7e\xef\x29\xd1\xb3\xd0\xe4\x70\xf0\x22\x26\xd2\x52\xfa\x2b\x1f\x53\x0c\x96\xfd\xcc\xf6\xc1\x79\x48\x16\x81\xbb\x12\x14\x0d\x4a\x87\xc2\x17\xc0\x49\x71\xa2\x3b\x26\x4d\x54\x5a\x17\x78\xd8\xa7\xe8\x5d\xf3\xb1\x1a\x6b\x06\xc5\x81\xd2\xa9\xfb\x91\x2e\x76\x6a\xed\x8e\x23\x2e\x52\xef\x9b\x18\x33\xb0\x2e\xd3\xf6\xd3\x60\x87\x27\x7e\x1d\x2d\x93\x2a\x68\x34\xce\x49\xbc\x00\x46\xf7\x3a\x6d\x05\x3e\x56\x45\xd1\x70\x60\x46\x85\x10\x20\x0b\x0d\x8b\x1f\x3e\x7c\x03\x51\xaa\x84\xaf\x4f\x28\x5d\x67\x53\x0c\xf2\x19\xfd\x8e\x54\xe1\x0a\x2d\x1d\x84\x21\x37\x6a\xbe\xf3\xc0\x8b\xed\x9c\x58\x3f\x0f\xce\xb1\x61\x78\x97\x6e\x9e\x8f\x27\x9e\x72\x20\x4c\x87\x6e\x59\xb0\x0c\xb7\x1a\x95\xab\x4b\x72\x1f\x78\x91\x06\x16\x4d\x58\x90\xbf\x41\x1c\x00\x28\xa5\x23\x76\x74\xed\xee\x3b\x35\xe3\xb7\x6f\x8e\x20\x8e\x31\xaf\x78\xe1\xfe\x2a\x1f\x87\x70\x82\x3d\xcb\x7f\x3a\x58\x1f\xd9\x2c\x4a\x96\x63\xaf\x18\x2a\x59\xa3\xca\x20\x6b\x41\xdf\xfc\x3c\xea\xa8\x48\x54\xe1\xd5\x0a\xba\x79\x3e\x56\x71\x43\x6c\xcb\x68\x34\xdf\xe6\xfb\x51\xef\x4d\x2a\x32\xcb\xad\xf9\x85\x0d\x26\x5d\x11\x4a\x3d\xbf\xb9\x8e\x4d\x76\xb9\xcd\xbc\xf6\x7c\xab\x62\x45\xe6\x17\xe4\xb8\x29\x61\x4d\x4c\x31\xce\x98\x3c\x9b\x67\x9d\x27\x8a\xbe\xeb\x5b\x81\x12\x35\x2b\x9d\xb4\x74\x22\x45\x5b\xc7\x37\xc2\x2f\xd5\xd4\xd7\xf7\xee\x6d\x2f\x47\x85\xba\x1a\x4c\x73\xc8\x2c\xff\x6e\x65\x0b\x33\x3b\x5b\xbe\x37\x29\x23\x50\x60\xa2\x0b\xae\x02\x46\x54\xd2\x0b\xb5\x16\x2c\xa5\x18\x26\xcb\x6d\xc2\x68\x44\x44\x1d\x37\x03\x1f\x81\xdc\x54\x1b\x67\xc5\xae\x27\x36\x27\x7e\x14\xd7\x32\xf9\xa9\x2a\xbb\xfc\xb4\x86\x5c\xdc\xbb\xb7\xdd\x8b\x4c\x3f\x49\xf3\x22\x0a\xf3\x8a\xd4\xec\x29\x3d\x8c\x70\xaa\x82\x27\x7d\xcd\xc6\x6a\x6e\xf2\x7c\x45\x42\x33\xf8\x54\xb5\xe0\xfc\xd2\xbe\x39\x71\xb0\x8f\x97\x9e\x1e\xe9\xe6\x8f\x02\xbf\x28\x31\xb2\x8f\x46\xd5\x9d\x89\xe2\xe3\xfd\x85\xe6\x3d\xf9\x45\xa0\xa0\xae\xdf\x9f\xe8\x41\x42\xdd\xfd\x44\x29\x0f\xd8\x73\x70\xb5\x08\x9d\x8c\x62\xfd\x39\x8f\x08\x1a\x0d\xb5\xe3\x15\x59\x14\xaa\x95\x4a\x98\xd3\x10\x5c\xac\x9a\x90\x40\xbd\x7b\xf7\x3a\x5e\x81\xf2\xea\xf9\x58\x01\x3d\x42\x9b\x14\x99\x89\xb7\xab\xb8\xe9\x43\xce\x4d\x11\x33\xb0\xb0\x04\xe2\xbc\x5b\xaa\x19\x7c\x5d\xa9\x50\x73\x61\x0a\x96\xf4\x4a\xb0\x69\x74\x6a\xe9\xc5\xfd\xed\x7d\x73\x33\x7e\xb4\x8c\xc9\x96\x90\x2c\xfe\x40\xf1\x71\x9d\xfb\x48\xf9\xe6\x6e\x94\xe6\xe9\x38\x0b\x79\x00\xd4\xc1\xda\xfc\xf8\x4f\x7d\x2a\x64\xe1\x00\x0d\x0b\xc2\xad\x60\xeb\xde\x50\x38\xc6\x1b\x0d\x24\xd4\x2f\x97\x16\xb7\x37\xe3\x7b\x3e\x2c\x8b\x0e\xcf\x8d\xd2\x19\x22\xdb\xfb\x8a\xf9\x82\x88\x8c\x07\x29\x31\x22\x7a\x27\xf9\xd7\xf4\xb0\xf8\x58\x91\x42\x51\xfc\x06\xb5\x92\x59\x35\x74\xf8\x6f\x50\x91\xe4\x7c\x49\x97\xa4\xee\xc2\x03\xc9\xd4\xe8\xe6\x34\xe6\xb9\x76\x37\x4b\x4d\x8f\xfc\xad\xba\x58\x34\xee\xf9\x58\x0b\x0d\xd8\x6c\x35\x8d\x32\xae\xf3\x38\x25\xcf\xf2\xe7\x50\xf4\x41\xc9\x15\x77\x79\xd5\x5b\xa1\xd8\x9a\x9e\x4f\xbd\x99\xce\x2d\xf0\xea\x18\x17\x6b\x33\xc5\x8e\xa2\x20\x5d\x1b\xd8\x0c\x9a\x8f\xd2\x32\xd7\xfd\x73\x3d\xdf\xb2\x6a\xb3\x32\x27\x23\x53\xb7\xf1\x80\xfe\x6c\xe3\x41\xed\x45\xed\x59\x6c\x2f\xa7\xe3\x04\x20\x8e\x8a\xf4\x29\x9f\x94\x49\x11\x5b\x81\xff\xfa\x1f\xce\xe8\xb6\x74\x69\x95\x51\xb5\xe1\xde\xa9\x04\xbd\x4f\x2b\x29\x92\xa4\xb0\xa2\x38\x29\xa8\xa9\xd3\x6a\x72\xb8\x3e\x1a\x49\x16\xd0\x0e\x47\x51\xc6\x0b\xb4\xa9\xca\xe2\xa3\x18\x13\x86\xe3\xa1\xa8\xc4\x79\x8d\xe0\x0b\x58\x02\x7c\xa2\xfe\x7e\x60\x87\x69\x96\x0d\x4c\x5f\xa2\x1e\xf4\x65\x6e\x92\xd1\xe4\x63\x15\x7a\x0d\xd2\x91\xe5\xb2\xa1\x23\xd9\x74\x12\xca\xa7\x60\xe3\x85\x8f\xa1\xe5\x69\xc9\x28\x89\x73\x0c\x0e\xe5\x5d\xc8\x90\xa0\x9e\x18\xac\xb0\x8f\x67\xab\x36\xaf\xcc\x1c\x5c\xd0\x33\x07\x17\xfc\x60\x26\x88\x27\x1f\x2b\x2f\x03\xc6\xed\x93\x1d\x0f\x7c\xff\xaf\xfe\x36\xa6\x43\xa8\xce\x78\xe7\x63\x1d\x35\x4a\xb9\x63\xea\x00\x7a\x37\x7e\x65\xaa\x78\x8c\x18\xd2\xca\x3a\xde\x93\x9a\x7b\x86\xc1\xda\x45\x15\x0c\xcc\x5b\x9c\x9d\xa8\x5c\xeb\xfa\x44\x41\x37\xef\xd7\x4c\xe8\x9e\xc5\xb6\x49\xc2\x41\x9a\xb5\x3c\xde\xfd\xde\x44\x5d\xd7\x3d\x85\x28\xea\xa6\x6b\x31\xd7\x10\x44\x14\xf0\x2e\xa1\x21\x45\x19\xc1\x4b\x75\x83\xae\x45\xfa\x87\x8d\x74\x7f\xb9\x97\x0e\x44\x60\xf5\x65\x85\x00\xfb\x72\x13\xae\x2c\x4f\xe3\x55\x8c\x0f\xba\x52\x8d\x22\xff\xda\x6c\x15\xf7\xcd\xb5\x43\x93\x59\xf0\x23\xc2\x7c\x23\xc7\x97\x6a\x93\x27\x5f\xb9\x55\xd1\x91\x2b\xd6\x48\x67\x17\x99\x0e\xa6\xbb\x1c\xc3\x6e\x79\xe7\xe8\x45\x71\xd9\x07\xd9\xe0\x43\x3c\x32\xc0\x35\xaf\xb1\x5f\xc1\xae\x47\x8f\x99\xd5\xa6\x6b\x77\xf5\xd2\xc2\x01\x95\x51\xbb\xa1\x1a\x0f\x6f\x70\x2b\x2b\xb3\xcb\x9e\x89\x56\xb4\x2f\xe9\x12\xf8\xc4\xc5\xf5\xdd\x34\xee\xcd\x6a\xe6\x59\xc5\x0f\x3b\x03\x35\x79\x47\x4e\xe3\x90\x0d\x4f\xd4\xb4\xd0\x17\x17\xdb\x03\xd3\x8d\x0a\x6e\x21\x23\xa3\x39\xa1\xb2\x9b\x13\x0a\x03\xb7\x1c\xe5\xa1\x89\x67\x3d\xd4\xf1\x1c\x1c\x3c\x8f\x03\xab\xb2\x07\x9b\x60\x99\x13\x7e\x4a\x41\x8a\x98\x87\xd5\x03\x18\xae\x4e\xfc\x8b\xf8\xa9\x26\xe5\xf8\x06\x82\x0c\xa6\xde\xa8\x04\x43\x51\x3f\xdf\xd5\x72\xa4\xc8\x0f\x02\xa5\x5d\x74\x16\xbb\x07\x65\x96\x77\x03\xcf\x56\xfc\x06\x3d\x71\x57\x3b\x2f\xbf\x1a\xd7\xf7\x6f\x03\x5f\xc5\x64\xc2\x0e\x06\xd8\xe2\xf6\x44\x15\x54\xa9\x2a\x5c\x9b\x78\x00\xfe\x1d\xd7\x8c\x19\x58\x1b\xf3\x83\xd4\x0c\xb3\x82\x02\xf1\x4d\xf5\x38\x4a\xec\x90\x19\xf5\xb4\x20\xa7\xd7\xe0\xac\xcd\x57\x86\x03\xc3\xe2\x4f\x30\x7c\x28\x2c\xf1\xb1\x82\x72\x74\xa3\x95\x28\x81\xfe\x93\x93\x66\x2b\xaf\x5b\xa4\xea\xe8\xe1\x48\x95\xb6\x36\x15\xbe\xd8\xde\xbb\x77\xbb\x57\xaf\x43\xcd\xdb\x89\xad\x38\x09\xeb\xeb\xc0\x2a\xbb\x21\x93\xbd\x7b\xdd\x49\xe0\x65\xc6\xff\x4a\x31\x38\x11\x61\xf0\xa3\xde\x15\x33\x05\x04\x57\x75\x02\xcd\x9c\xaf\x13\x2f\xba\x74\x18\xc2\x7b\x2a\xfc\x3c\xce\x9b\x0f\xf8\xa6\x13\x94\x9c\x20\x48\xbd\xa6\xea\xa9\xd7\x1a\x68\x9b\xdb\x71\x14\xda\x24\x17\x44\x43\x93\xf0\xea\x66\xc7\x8f\x41\xa3\x51\x9a\xe7\x36\x77\xea\x4c\xcc\x43\xa5\x2a\x7a\xd7\x14\x05\x7a\x94\x14\x69\x6c\x33\xd3\x8d\x2d\xf6\x3c\x23\x84\x02\x0f\x97\x3d\xe5\x82\x98\x28\x59\xb5\x79\x91\x66\xf9\xf6\xd6\xbe\x39\x6e\x33\x20\x3f\x3f\x5b\xfa\xb0\x8d\x2b\x3a\x7a\x62\xc1\x77\xdc\xe0\xee\xa9\x26\xb4\x79\xb2\xa3\x8c\xb8\x19\x98\xa1\x61\x97\xcf\x13\xfa\xb4\xcd\x64\x5a\xff\x09\x55\xc4\x4a\x4c\xc1\xa3\xbb\x28\xd1\xfc\x1c\x9b\x43\x82\xe1\x96\x93\x73\xbd\x56\x63\x84\x28\x9f\x4d\x12\x85\x26\x33\xfd\x31\xaf\x67\xa9\xec\xeb\x32\x7f\x53\x50\x3f\x4a\x3d\xb9\x01\x36\xe5\x71\xdd\xdd\x3a\x5e\x4b\x03\x0f\xce\xb5\xbb\xe3\xf5\x6d\x2a\xfe\x85\x6e\x8b\x70\xb1\x79\xec\xfb\x55\x85\xf1\x3f\xa3\xa8\x42\x8e\xa8\x5c\x31\x4b\xc3\x15\x8d\x6b\xe5\xf4\x44\x08\x58\x9b\xc8\xdc\x63\xbb\xca\x73\x4e\xae\xd1\xe9\x9b\x9e\x8d\x5a\x33\x6b\x29\x49\x2a\xb5\x94\xc4\xff\x9b\x13\x45\xfc\xf0\xa6\xd2\xec\xe8\x8d\x71\x41\x4b\xbe\x2c\xee\x36\xc5\xf9\x40\x51\x74\x45\x79\x61\x92\x10\xb4\x40\x88\x4c\x30\x6b\x5d\x21\xa5\x67\xe1\xf4\x0a\x65\xcb\xab\xe1\xa8\x12\xdd\x70\x24\xc4\x27\x3a\xa8\x1e\xd9\xd0\xf5\xb8\x11\x46\xbf\xab\xfa\xae\xef\x36\xf0\xed\x2c\xb5\xbb\xe3\x3c\x4a\x6c\x9e\x0f\x6d\x52\xa9\x84\x20\xdc\x17\x27\xb5\x99\xbe\x7f\xef\xde\xfd\xbe\x0a\x46\x8f\x4a\xcd\x52\x07\x3e\x5c\x69\x04\x6e\x8e\x62\x13\x25\x45\xb4\x2c\x6a\xed\xac\xc5\xa5\x28\x19\x35\x1c\x78\x64\x72\x12\x05\xa7\xe7\x8f\x48\xeb\x0c\x5a\x2a\x7c\x52\x5b\x71\xcf\xb5\xd7\xcc\xba\x80\x16\x84\x16\x99\x5c\xab\x48\xb5\xab\xc0\x5f\x77\x52\x8a\x74\x14\x85\xdb\xe9\x65\xe2\x45\x1f\x53\x63\x88\x27\xc8\x0a\xf0\xbf\x2b\xb2\x86\x13\x58\xfe\x4e\xf4\xac\x7c\xf8\x62\x07\x9f\x74\x0e\x34\x1b\xa5\x19\x95\x32\x0f\xce\x79\xf1\x49\xa7\x1e\xf3\x49\x02\xf8\xa1\x0f\xbb\x6b\xaa\xd4\xa1\xee\x29\x48\xc5\xc8\xac\x0f\x6d\x52\xe4\x84\x1a\x12\x2e\x15\xfa\x6d\x60\xe1\xde\xa1\xd0\x19\x3b\xe1\x03\xac\x11\x07\xb6\x70\x84\x0a\x37\xb4\xcf\xfd\x50\x8b\xbf\xd2\xba\x65\x7a\x71\xba\x3d\x3c\xde\x2b\x4d\x01\xe2\x88\xaa\x8e\x28\x05\xa1\xe1\xfc\xf8\xd4\x8f\x19\x3e\xde\xa9\xb3\xcf\xbf\xd0\xfe\xd2\x38\x2d\x32\x2e\x9f\xe1\x2d\x5f\xc5\x45\xf2\x49\x13\x21\x70\x94\xf4\xa2\xd5\xa8\x37\xe6\x0a\x15\x4a\x42\x6f\x29\x11\xf2\xb7\xb4\xb6\xcb\x70\x14\xa7\xeb\xd6\x02\x38\xee\xa4\x0e\xca\x65\xa3\xb0\xba\x0b\x1a\xa2\x2d\xf5\x85\x8d\x4a\x4d\xb2\x21\x85\x5f\x8e\x58\x12\x10\x6f\x16\x44\x46\x7c\xdc\x34\xf1\x32\x30\x59\xd7\x11\x24\xc8\xc0\xad\x02\x19\x5f\x50\x48\xac\x17\x8c\x64\x2f\x4e\x6d\xc2\x43\x4d\xeb\xf0\xcc\xbd\x7b\xdb\x2b\x59\x9a\xa4\x10\x08\x03\x5a\xe0\x18\xf5\xe2\x60\x81\x7f\xa0\x63\xb8\xb3\x81\xef\xe8\x0e\x4d\x38\xd3\xfa\xc2\xfe\x8a\xf0\x2f\x9c\x1a\x1b\x1f\x54\x7e\x1f\x06\x9e\x05\x3d\xec\xe5\x33\x8a\xb7\x97\x29\xe9\x9c\x97\x2f\x57\x12\xea\xf2\xa7\xb4\x9e\xfc\x28\x4a\xd2\xd8\xb4\xb4\x68\x8b\x2a\x1b\x5d\xd0\x94\x5a\x26\x8b\xf2\x6e\x96\xa6\x2b\xfc\x04\x1c\xa9\x7e\xf9\xf7\xc2\xc3\xdf\x80\xe7\x31\x45\x11\x15\xe3\x1e\x27\x10\x0e\x79\xac\x96\x56\xcb\x51\x85\xbe\xd7\x34\xb6\x1c\x47\xfd\x01\xd5\xc2\x4b\xb3\x00\xef\xfa\xa1\xe2\x69\x7d\x80\xee\xa3\x68\x5f\x0b\x6c\x33\x1b\xc7\xae\xdf\x01\x3f\x0b\xf5\x3b\x3c\x9e\x27\x3a\x1e\xfe\x7d\xdf\x55\xb6\xd7\x4c\x61\xfd\xa8\xb3\x9b\x74\x71\x93\x25\x37\x2b\xd3\x44\x0d\x9b\xc0\x84\xa1\x2d\xa3\x92\x02\xe9\x15\x50\x41\x7f\x12\x28\x5a\xc8\x3f\xd1\xb8\xbe\xff\xf2\x3f\x47\x53\x4e\xc8\x6d\xca\x20\xcb\x31\x6e\xba\x41\x9d\x87\xaa\x88\x76\xb1\xe2\x6e\xa2\xbc\xd8\xdd\x72\x12\x5b\x47\x03\x25\xc4\x73\x83\xd6\x0c\xfe\x83\x6b\x52\xaa\x47\xbf\xb1\x43\x93\x1a\x6c\x99\x96\xd6\x48\xb4\x11\x35\xd2\x89\x8b\x90\x68\x25\x60\x64\x98\xd9\x29\xe0\x73\x50\x20\xfe\x7d\x2d\x4f\xf5\xdb\x81\x9a\xa7\xa8\x6b\x4a\x3f\x47\xc9\xe4\xf2\x18\x56\x42\xe6\x0f\x7c\x7a\x72\x51\x3d\x9f\xbf\xff\x0f\xf2\x19\x65\x20\xbe\x4a\xcf\x07\x31\x47\x0b\x22\xf4\xa8\xba\xb6\x3a\x4a\xc9\xbf\x34\x42\x36\xe9\xcd\xfa\x67\x76\x52\xe3\xea\xce\x4f\xd4\x10\xea\xb7\x15\xa4\xf8\x5e\x13\x49\x4c\x79\xad\x2d\xed\x22\x95\x72\xb9\xea\x10\xf6\xa2\x3c\x4c\x87\x52\x41\x87\xd9\x60\xc9\x29\x3e\x69\xda\x18\xe1\x20\x8a\xfd\x48\x04\xcb\xc7\xaa\xcd\x70\xd3\x65\x3d\x89\xb5\x3d\x88\xfe\x6b\x2c\x18\x80\x32\x00\xd8\x20\xb2\xe6\x3a\xa9\x48\xf3\x2b\x85\xd5\x34\x2b\x32\xc3\x63\x6e\x4e\x9c\x4d\x31\xf4\xaa\x0a\xff\x38\xeb\xb6\xd4\xd0\xec\xdd\x89\xb7\xa5\x77\x9b\x6e\x23\xed\xe6\x85\x09\x99\x29\x05\x33\x0c\x88\xf6\xf9\x78\xe2\x5f\xce\x60\x9c\xf4\x32\xdb\xcb\xb7\xfb\x47\x7a\x6d\xe2\xd3\xfa\x5b\xe4\xd7\xf8\x98\xd6\xd4\xc6\xeb\x54\x17\x41\x7e\x0a\xf4\x79\x13\xea\x6d\xc8\xd3\x28\x28\x9c\x5d\x57\xfc\x62\xd7\xab\x75\x54\x52\xa2\x20\x92\x52\x0f\x6e\xb9\x40\xb9\x0d\x1f\xab\xf1\xf1\x32\x8b\x1e\x9a\xc2\xc6\xeb\xdb\x2a\xfd\x6c\x9f\x56\x5f\x57\x10\xf8\x1f\x56\x49\xd3\xcb\xab\x16\x24\xf1\xe6\x88\x7e\xdf\x5c\x7b\x9c\xf0\xe0\x17\xf3\xfc\xe3\x9e\x99\x41\x89\x4f\x5c\x17\x76\x2d\x1d\x27\x3d\x89\x15\x11\x75\xbe\x43\x57\xc1\xc7\x4d\x38\x95\x2c\x35\x3d\x8a\xac\x68\xe9\xc3\x7a\x21\xb6\x80\xad\xf9\x3f\xb0\x52\x10\xd2\x9c\x73\xba\xfb\x43\xd3\x4f\x60\xac\x37\x95\xf4\xcb\x3f\x76\x6c\x00\x2e\xe0\xb8\xd3\xd4\x69\xce\x6c\x98\xae\x32\x87\x83\x24\x65\x64\x00\x25\x2b\xf3\x73\xe7\xd1\x68\x14\x8b\x2c\x32\xb6\x3f\xc6\xeb\x45\x79\x85\x1e\x07\xe3\x15\x6b\x00\x8e\x3d\x8b\xed\x62\x35\x57\xd4\x9d\xac\xba\x07\x63\x71\x0b\xd7\x8c\x3b\xdf\xda\x91\x9a\xce\x68\x3c\x44\x83\x13\x69\xd3\xbf\xd2\xe3\xb4\xff\xaa\x66\xac\x5e\x22\x6d\x8b\xf5\x2e\x4a\xd1\x88\xd0\x2e\x6a\xc5\x93\x8b\x5a\x7c\x3c\xe9\x31\xa7\x25\x56\x04\x4c\xb8\xa3\x86\x72\x03\xfd\x3f\xac\x17\x83\x5f\x24\x42\x57\x3b\x1c\x15\x33\x2a\x20\xf8\xde\xc4\x07\x4f\xb0\xbd\xd2\xc5\xf0\xa9\x65\x37\x4b\x57\x6c\x36\xd3\xda\x27\x12\x7c\x6c\xdf\xf8\x09\x2a\x4e\xb6\xb7\x26\xbe\xc4\xfd\x0f\xfe\x61\xcb\xcf\xf6\x1d\x23\xb3\xca\xc7\x4d\x30\xcd\xfd\x6d\x7b\xa8\xb0\x59\xc2\x91\x5d\x45\xcf\x91\x4f\x6a\x4f\x8e\x3e\x16\x47\x2b\xa0\x51\x80\xf5\xb8\x8a\x65\x80\x9b\xc0\xcc\x15\x12\xcb\x3a\x19\x7c\xe9\x4a\xc7\x45\x3a\x4c\xbb\x51\x6c\x61\xb5\x44\x20\xb0\xa2\x89\xeb\x1b\x01\xa3\x2c\x8d\xd3\xa4\x6f\x7b\x98\x72\x93\x31\xce\xf2\xc1\x34\x8d\x77\xd2\x43\x92\xff\x70\x73\xa5\x69\x38\xce\x85\x69\x02\xef\xe0\xa1\x76\x6d\x97\x74\x75\xbe\x21\xe1\x5e\x6a\x2f\x67\x26\x01\xdb\x0d\xcf\x54\xd0\x6b\x93\xf9\x8a\xcd\x39\xdd\x9e\xc5\x76\x5e\x64\xd6\x0c\xe3\xc8\xc3\x2c\x98\x97\x8d\xde\x9c\x70\xb4\x35\x74\xea\xc3\x71\xd7\xb4\x36\x55\x03\x97\x5c\xcd\x50\x06\x0c\x73\x53\x44\xf9\xb2\x61\x8c\xed\xde\xbd\xbc\xa1\x77\x74\x3c\xc6\x67\xc7\xd4\x27\xc8\xdd\xb4\x87\x3f\x63\x08\x63\xe0\xdd\xc5\xe9\xda\xfe\x5b\x5c\x6c\xaf\xdb\xa2\xe5\xa9\xc5\x31\xfa\x24\x51\x86\x8e\x53\xc6\xaf\xa6\xad\x32\xea\x45\xc5\x97\x43\x4c\x3e\xd1\xa2\x79\xe9\xc8\xe6\xdb\x14\xe9\x18\x62\x2f\x14\xf7\x58\xcf\x43\x13\x6a\xa1\x34\x77\x2c\x50\x7d\xb0\xbb\x6a\x80\x73\x64\x93\xc2\xf4\xd3\x04\xef\x93\x1b\x86\x13\x25\xc5\x7d\x51\x35\xb9\xff\xac\xf6\x90\xcb\x44\x68\x79\xc0\x5c\xd9\x4c\x35\x42\xaf\x53\x68\x47\x74\x81\x27\x8e\x6d\x36\x4b\x45\x3a\xde\xfc\x28\xdf\x69\x4b\xa0\x49\x5c\xe5\xa4\x49\x22\x65\xcd\x9a\x15\xe2\xfc\x9e\x51\x83\x80\xf8\x14\xcb\x27\x4e\xbc\xf7\xff\xb0\x4a\x4b\xbc\x12\xd1\xe2\x6b\x4c\x4e\x36\xef\x31\xa7\x71\x33\x2e\xc6\x26\x9e\x51\xed\x8d\x5f\x4c\xfc\xf8\xd1\x4c\x47\x15\x3b\xb6\x4c\xeb\xd5\xa9\x17\x30\xfb\x6f\x96\x8b\xd2\xe6\xbb\x31\xb0\xcb\x2a\x44\xb9\x5c\x09\x5a\x47\x69\x41\xfe\x9f\x35\x29\x60\xe4\x45\xe6\xb7\x35\x3f\xcf\x2d\xb9\xbb\xc8\x7e\xf9\x3f\x14\x95\xcf\x9b\x88\x0c\xae\xd4\x0a\x48\xcf\xb7\xbb\x26\xf9\x12\xd3\xd0\xb8\xc2\x69\x79\xf5\x52\x38\x7d\x5a\xc7\x02\xc3\x11\xba\x69\xf3\xf3\xbc\xd7\xdf\x99\x78\x2e\xf5\x77\x9c\x4b\x5c\x4e\xd3\x22\x2f\xec\x88\xcd\x02\x42\xca\xb3\x9a\x8f\xed\x3e\xae\x54\x42\x44\x8d\x58\xef\xa5\xcf\x2a\x19\x97\xd3\xf4\x03\xe8\x13\xdf\x57\xd5\xe8\x0f\xe0\x52\x80\x9a\x9f\x9d\x2a\x76\xa0\x6f\x4f\x14\xd9\xd9\x4d\x25\x7f\x06\x20\x1c\x76\xf0\xb6\xa9\x16\xfc\x3e\x03\xdb\x86\xca\xf4\x95\x89\x52\x6e\x1b\x29\x39\x89\x53\x04\x7f\x17\xbd\x6b\xba\x33\xc9\xd2\x7d\xd9\xe3\x54\x30\xf3\x92\x87\x73\x61\xc4\x8a\xaf\x0b\x78\x84\x8a\xbe\x14\x53\x52\x21\x09\xc1\xcf\x6f\xeb\x28\x9a\xa2\xd9\x4e\x85\xb4\x61\x25\x27\x09\x0d\xf1\x5a\x2d\x27\xc9\x7b\x07\x1b\x1d\x5d\xca\xdb\xf8\x6e\xe1\x45\x2f\x6f\x00\x49\x1b\x37\xbc\xa5\x4c\xa8\x38\xa0\xae\xe1\x0a\x1c\x08\xc3\xe1\xff\x81\x46\x65\xa1\xeb\xc0\x97\x95\x6f\x68\x09\xdb\xcb\xe4\x32\x98\xa8\x09\x68\x7c\x19\xec\x54\xb4\xc0\xa7\x54\x37\x2f\x5d\x5e\xb6\x99\xed\x3d\x8a\x97\x80\x50\x04\x14\x07\x78\x3d\x47\xf4\xb0\xfb\x9b\xfa\x2b\xdf\x9c\x7c\x64\x51\xde\xc7\x4b\xcc\x40\xcc\x8d\x1c\x3d\x1c\x71\xd9\x75\xaa\x5e\xb3\xac\xc2\xe0\x4a\x4d\xe5\x5f\x09\xa1\xaf\x07\x1c\x2d\x8b\xfc\x1f\x42\xf3\xe3\xf8\x3b\x3e\x09\xb4\xfc\xec\xd0\xee\x6c\x39\x36\x46\x18\x1c\xbc\x10\xd6\xe7\x12\x7b\xa8\x56\x0e\xaa\x52\x68\xdd\x81\xf1\x18\x16\xfe\x1e\x16\x24\xd6\xda\xe9\x89\x12\x1d\xe2\xfb\xc4\x5a\x39\xa5\xd8\x25\xae\x56\x0c\x46\xcf\x76\x5b\x5a\x8f\x69\x1b\x4c\x12\x9f\xd4\x38\x98\x0e\xce\x2d\xb4\x33\x13\xb9\xa1\x65\x8c\x42\x7d\x1d\x49\x20\x9f\x28\x2f\x81\x19\x94\x78\x7d\xbb\xf7\x7b\x7f\x40\x7b\xc0\x29\x3c\x3a\x05\xb9\x0f\xb5\x36\x19\x8f\x6e\xb9\x3e\x9a\xd6\x22\x91\x1a\x44\xb1\x66\xa9\xd3\x3a\xbf\xe0\xa6\x16\x66\xbc\xea\x54\x7d\x92\xe0\xe0\xdc\xcb\xed\xd5\x28\xeb\x47\x49\x4b\x71\xb9\xfd\x1e\xed\x7b\x51\x9f\x78\xcc\x33\xeb\xe6\x2b\x2d\x5f\x0b\x03\x0b\x1f\x1f\x37\x31\x6e\x25\x69\x92\x93\x00\xdd\x3e\x69\xb0\x7e\x8b\xbe\x58\xb8\x71\x9e\x56\x20\xd3\x71\x52\xc4\x36\x07\x38\x85\x3b\x16\x6a\x38\xf2\xe7\x0d\x40\x98\x05\x42\xde\xce\xf8\x89\x1f\xd6\x0d\xd2\x52\x26\x58\x41\x47\xdd\x64\x6d\x99\xd6\x18\x88\x8e\x20\xb9\xfa\x32\x16\x24\x4e\x90\x78\xc2\xe6\xdf\x0b\xb4\x3e\x11\x04\xb4\x9d\x40\xe0\x9e\x45\x87\x2e\xa9\x17\x33\x89\xd3\xdd\x8b\x8f\x20\x87\x81\x48\x3f\x1f\xab\xa6\xe1\x1a\x46\xd1\x5b\x0a\x56\xcd\x55\x62\x2f\xcd\xc1\xab\xc6\x32\x71\xc3\x2a\x22\x5c\x5c\xf2\x1f\xd3\x03\x65\x16\x12\xa5\x6a\x76\xcc\x7f\x2e\xca\xcd\x68\x64\x4d\x26\xb2\x7e\x08\x04\xb6\x63\x8a\x82\x4f\xa6\xf5\xc7\xdb\x36\xdd\x74\x15\x69\x08\xd3\x82\xd1\x7d\x0b\x45\x58\x85\x15\xb1\x58\xdf\x41\x46\x06\xb5\x82\x13\x30\x3f\x7c\x12\xb4\x3e\xf7\x39\x3f\xb6\xb0\x6f\xce\x73\x2c\x2e\x1c\x70\x25\x26\x7a\x09\x7c\x42\xe6\x50\xc8\x17\xc9\xe8\x0b\xdc\x7c\x73\x9f\x61\x71\x71\x3f\x58\xf9\x96\x59\x5f\x98\x36\xb7\x9b\xdd\xde\x37\xe7\x6a\x42\x3e\x11\xf9\xc7\xcf\x3f\xa2\x66\x3b\xc4\x91\x21\x3a\x03\x92\x83\x22\xef\xbf\xf9\x2b\xe8\x19\x4b\x45\xa1\xf4\xd9\x52\xf1\x28\x6f\x08\x4d\x4a\x84\x59\x32\xcb\x5b\x83\x78\x2e\x94\x01\x61\x68\x89\xa2\x08\xae\xf6\x21\xdc\x86\x8c\x86\xf8\xd1\xe2\x0f\x26\x1e\x10\xf0\x3b\x4f\x76\x5a\x6a\x2c\xf8\x09\xa5\x47\x10\x25\xfd\x7c\xc6\x6b\x9b\x01\x5d\x83\x90\x0f\x18\x0e\x24\x89\x0f\x6b\x51\xde\xfc\x7c\xbb\x67\x0b\x9b\xf5\xa5\x30\x2f\x71\xbb\x06\x61\x4b\x3f\x6a\x79\x9c\x10\x41\x88\x90\xf9\xe1\xda\x79\x1c\x42\xd0\x5f\x3e\x32\xf8\x65\x2d\xbd\x3c\x38\xb7\xd4\x2e\x06\xc4\xc3\x3e\xe3\x6b\xe1\xd8\x92\x88\xad\xaf\x06\x5e\x1b\x64\xea\xd6\xaa\x2a\x52\xd0\xe7\x60\x04\x77\xe1\x55\xc0\x23\xdf\x9b\xa8\x4d\x7e\x5f\xd1\x0b\x2c\xdb\x38\xde\x59\x3e\x50\xbc\x9a\x1b\x5c\x55\x14\x51\xb2\x96\xe3\xd0\x43\x37\x9b\xf5\x42\xe8\x01\x3a\x66\x79\x57\xe1\x3d\x13\x28\xde\x8c\x0d\x4a\x57\xf1\x45\xe7\xb0\xb6\xd1\x53\xe1\x19\x61\x26\x1b\x50\x1a\x50\xcb\x66\x98\x8e\xf3\x59\x8f\x71\x61\xca\x17\x74\x80\x4f\xd2\xf7\x21\x29\x05\x25\x12\xe2\xa8\xbf\xa8\x3d\xc7\x85\x03\xed\x5e\x66\x86\x20\x34\x75\xd3\xe0\x17\x2b\xd5\x59\x5f\xbc\x1c\x67\xc9\x63\xbe\x96\x71\x17\xae\x0e\x8f\xf0\x13\x1d\xc5\xa9\xc6\xe2\x34\x78\x9e\x77\x26\xaa\x21\xf8\x00\x77\x87\xe0\xef\x5f\xd3\xeb\x02\x60\x64\x03\xbe\x0c\x27\xb7\x68\xdd\xa2\xe5\xff\x68\x47\x8b\x5a\x5f\x50\xba\x5b\x3c\x85\x8f\xfb\x7f\x7c\x2a\xaf\xb8\x1b\xa7\x69\x0f\x39\x68\x95\x39\xc1\x75\x70\xce\x2b\x1c\x6e\xb5\xb1\x0f\xf3\xf9\x4d\x65\x4a\xbf\xd9\xc4\x21\x12\x25\xbd\x28\x2c\x86\xb2\xd2\xb1\xe0\x60\x80\xf9\x58\x93\x54\x0d\x32\x96\x10\x92\xdb\x63\xb9\x0a\x3e\xa9\x19\xf8\x7d\x73\xed\x68\xc8\x85\x34\xdd\xb6\x0e\x14\x22\xbb\x09\x01\x39\x4e\x42\x9b\x15\x26\x42\x43\xdd\xb5\x2a\xcb\xd7\x22\xad\xca\xcd\x2e\x74\xef\xde\x76\x37\x4b\xcb\x64\x47\xe1\x1a\xce\xab\x51\x96\xf3\x6a\x5a\x66\xc5\x82\x0b\x4d\x4f\x1b\xc0\x70\xbe\xa5\x55\x03\x4e\xd1\xc7\x59\xed\x92\x56\x39\x8d\x8b\x89\xab\x1b\x67\x5d\x93\xd0\xde\x43\x62\x06\x05\x3d\x51\x9e\xa7\xfb\x45\xb2\xf4\x75\x85\xd0\xb5\x59\xda\x23\x27\x56\x2e\x1e\xe1\x90\xf0\x63\x19\x5a\x53\x35\x2f\xc6\x26\x2b\x5a\x6a\x68\xfd\xbc\x82\xc9\x9f\xaf\x81\x3b\xa8\x9d\x18\x25\x61\x34\xe2\x5a\x10\xe2\x64\x34\x56\xf8\xb8\xe3\xbf\xde\xac\x46\x3d\xf8\x01\xa1\xc1\xfd\x23\x25\xb6\xff\x47\x0a\xf6\x64\x8d\x5b\x56\x82\xa2\x57\xb8\x94\x4b\xae\x10\x6e\x7c\xd3\x1c\xa8\xc0\xbb\x30\xe1\x7c\xa2\x6e\x8d\x84\xd4\x81\xf7\x74\xfb\xd4\xef\xd9\xc9\x66\xd8\xf0\xe2\xe2\x52\x3b\x2f\x4c\xdf\xae\x0d\xa2\x7c\x64\xa5\x1d\xe8\x1a\xec\x7a\xee\xa0\x41\x91\xce\xac\xda\xcc\xb0\x5c\xb7\x63\x23\x76\xf8\xe9\x73\x3a\xb6\x8a\x4d\x34\x34\x49\x91\xcf\xb4\x7e\xfd\xf3\xde\x8c\x79\x6a\x57\x56\x37\x91\x54\x7f\xb3\x1b\x5b\x38\xd0\x4e\xd2\x28\xb7\x8a\x2d\xe4\x9c\x62\x0b\x39\x57\x6b\xff\xd3\x9d\x0d\xa2\x91\x4c\x2e\xb6\x54\xe9\xeb\x9c\xa6\xba\x3b\xa7\x24\x29\x57\x6d\xf2\x24\x3d\x58\x26\xe8\x24\x54\xa4\xc4\xbd\x9a\x1c\x5f\x35\x66\xb7\x4f\xcb\x94\xd2\x33\xab\x2e\x71\x21\xfb\x1a\x7e\x04\xa9\xee\x43\x5a\x89\x70\x61\x60\x51\x40\x8d\xeb\xb6\xaa\x77\x3d\x09\x5d\x07\xc7\x6b\x34\x2f\xe2\xc7\x37\xa8\xac\x2e\x52\x2f\x4a\x33\xe9\x33\x1d\x25\x03\xf2\x21\x9e\x26\x62\xec\xfa\x1a\x2e\x9f\x07\x8f\x7e\x72\x4a\x8f\x26\x18\xd4\xb2\x9d\x24\x56\x79\x5f\x80\x62\x6f\x34\x44\x95\x2f\x10\xf0\xd8\xc4\xd8\x05\x2e\x83\xdb\x37\xe7\x9c\xab\x2f\x35\x98\xa1\xcd\xa2\xd0\x24\x50\xb7\x81\x73\x79\x80\x1c\xd5\xa1\x0b\x16\x0e\x70\xe4\x7e\x4e\x13\x92\xc0\xb5\xf0\xb1\x73\xcb\x26\x29\xa2\x72\x07\x16\x0c\x62\xdc\x20\x5d\xec\x8d\x2b\x2e\x1b\x5c\x89\xc2\x15\xe6\x2b\xc0\x2a\x82\x88\xb6\xe8\x16\x29\xcb\x78\x0c\x5e\x09\x79\xda\x96\x1a\x14\x60\xe9\xc5\xfd\xed\x71\x12\x2d\xa7\xd9\x90\xee\x13\x0f\x0a\x34\x29\x7c\xdc\x44\xb5\x42\xdd\xb0\x55\xeb\xf4\x80\x04\x6e\xaf\xa8\x1e\x27\x8a\x10\xff\xc2\xa4\x4a\xe6\x58\xcc\x2a\xd1\xab\xf3\x81\x52\xe2\xae\xa2\x55\x54\x53\xe6\xbc\x9a\x18\x4c\xd2\xc2\x3e\xe2\x6b\x18\xe7\x2a\x22\x25\xdf\xa1\x6f\x70\xc7\xce\xf1\x7f\x30\xa9\x64\x3a\x0a\x15\xa4\x5a\x0a\xdf\x51\x46\xb6\x9f\x99\xa4\x90\x18\xde\x11\x9a\xce\xbb\x63\x95\x54\x44\x85\x89\x23\x93\xcc\x6a\x1e\x2a\x14\x36\xf9\x38\xf0\xb5\x78\xa6\x80\xe1\x93\xa9\x14\xa6\x0d\x28\xe2\x08\x91\x02\x93\x71\x23\x50\x9c\x53\xa8\x4b\xc3\xb4\xbd\x13\x28\x12\x99\x53\xb5\xc2\xfa\x81\x17\xdb\x3d\x6b\x62\x9b\x95\x26\x81\x13\x64\xc7\x66\x7a\xd0\xcb\x4a\x35\x51\x57\x8c\x32\x9b\x8f\x87\x1c\x0c\x62\x64\x99\xe7\x38\xe4\x45\x2a\xb0\xec\xf1\x9a\x99\xfc\x47\xa8\xaf\x3b\x13\xa4\x85\x7c\xa5\xbe\xfe\xa4\x7e\x8d\xa6\x1b\xaf\xcf\x52\x31\x8c\x0b\x43\xa8\x40\xb9\x2a\x91\x66\x3e\xf2\x73\x16\x97\x27\x3e\x43\x5e\xb7\xc5\x2e\x3c\x76\x21\x9c\xa7\x0f\x39\x71\xcf\xf2\x11\xa2\x4a\xf2\x67\x64\x97\x90\x24\x21\xb5\xe2\xa2\x06\xe6\x80\x1d\x2b\xb8\xab\x0d\x5d\xd4\x83\xa5\x0a\xcd\x30\xd3\x29\xed\x3a\x6b\xc6\x4d\xd4\x30\xe8\x6d\x2f\xb9\x1a\xc5\x71\x94\x26\xec\x62\xb0\x82\x7f\xae\x97\xf3\xcf\x03\xd1\x16\xeb\xa7\x98\x2d\x91\x65\xee\xad\xcd\x71\x8d\xbb\xb8\xad\x8a\xe8\xa3\x28\x5c\xc9\x67\x15\x6d\x2e\x83\x47\x1d\xde\x71\xd1\x6b\xac\x94\x5f\x87\xf6\x5a\xdd\xd1\x00\x5c\xb7\x62\x35\xed\x38\xab\x35\xf1\x49\x53\xf3\xaf\x6b\xf2\x3c\x4d\x13\x95\x13\xb3\x2d\x15\xda\xab\xf2\xe7\xf1\x98\xef\x04\x1f\xd7\x23\xb6\x79\xd4\xb3\x19\x4f\xed\x39\xca\xbe\xa3\x98\x3d\xe0\x93\x86\x2e\x13\x0d\x06\x8a\x14\xac\x53\xb0\x2a\xb3\x5f\x29\x85\x79\xc6\xe2\xc4\xcc\x28\xf9\xeb\x6f\xe1\xf5\x63\xcf\xb3\x04\xaf\x6c\x7a\x15\xc7\x61\x26\x70\xb1\x34\xb2\x8b\x8b\xca\xc8\xf6\xd3\x78\x79\x9b\xe2\x36\x66\x75\x6a\xbd\xbd\xb1\xe6\x3e\xde\xf1\xb9\xd9\xec\x54\x35\x13\xae\xaa\x06\x02\xd9\x4b\xf4\x32\x45\xf8\xce\xa7\x48\x18\xfc\x44\x5e\x73\x7b\xf3\xac\x54\xe9\x8b\xf6\x2d\x3d\xe2\x15\x05\x6e\xd1\x6f\x3b\x6a\x10\x57\x39\x3a\xad\x38\x63\x58\xaf\xde\xf5\x26\x0f\xce\x79\xe6\xb7\x7d\x4b\x6e\xac\xb4\xb1\xa9\xf7\xaa\x59\x17\x0c\x94\xf0\x58\xd3\x97\x09\xf7\x87\x0f\x22\xec\x30\x7f\xcc\xd7\x07\x7f\xfb\x6f\x20\xb0\x41\x50\xf0\x71\x18\x3a\x32\x1c\xff\xfc\xd9\xa9\xaf\xbd\x3d\x45\xb1\x24\x2e\xf3\x93\x98\xdf\xc0\x86\x67\x52\x73\xa9\x35\xd2\xfb\x82\x6b\xbc\xaa\x18\x07\x44\xd5\x9b\xa2\x90\x53\x7f\xb3\xd3\xfa\xb5\x97\x18\x97\xfd\x53\x0a\x24\x44\xfc\xcf\x55\xf7\xb3\x71\x54\x74\xd3\xb5\x78\xd6\xd7\x83\xc1\x98\x8e\xc2\xd3\x2f\x27\x8a\x3f\x0f\xa8\x25\xd4\xcb\x36\x1c\xc7\x62\x37\x5b\x37\xc9\x47\xb7\x5d\xfc\x6c\x3c\xa1\x8b\x1e\xd7\x33\x21\x60\x7f\x90\x71\x69\xa5\xea\xfb\x2d\x6c\x34\x18\x59\x48\xe5\xc2\xe1\x22\x03\xc0\xca\xfa\x51\xe0\x0b\xe8\x2d\x14\x90\xf8\x03\x93\x0a\xc5\x98\x07\x58\x9c\xa1\x35\x20\x53\x84\x7a\x72\x90\xd9\xa6\xf8\x23\xcc\x0e\x20\x93\x2b\x9b\x7d\xfc\x73\x32\x12\x1f\x75\x63\xe8\x0c\x03\x0e\x79\x0b\x59\x97\x0c\xc2\x95\x57\x27\x04\x9b\x9e\x30\xa6\x6f\xf2\x34\x8e\x12\x8b\x31\x78\x21\x33\x6e\x39\xc6\x9e\x8b\x9a\x33\x96\x5c\xb1\x10\x32\x6e\xb6\x50\xff\xa8\x6d\xb2\x84\xe7\xf5\x5e\xf6\x25\x65\xdd\xae\xdb\xec\xfe\x08\x4d\x36\x8c\x0a\xb2\x33\xec\xfe\x90\x6c\xb3\x1a\x3e\x9f\xd4\x32\xc6\xf9\x79\x8a\xf8\x46\x26\x62\xb8\x02\x0b\xa9\xe1\x8e\xdd\xf4\x83\x13\x91\xad\x93\xda\x3e\xd7\xce\x53\x2a\xfb\x29\x50\x3c\xde\xf2\xe6\x09\x95\x3c\xb2\x43\x9b\xc8\x26\x13\xaa\x3e\x45\xdc\x7d\x36\xf8\x58\xbd\xb8\xf5\x39\xf6\x27\x58\xc3\xc7\x00\xbb\xe5\x93\x26\x2a\xfb\xe5\x34\x2e\x4d\x27\x93\x88\x36\x5e\x90\x6c\x12\xd3\xc7\xc8\xfd\x26\x28\x94\x03\xad\xd7\x51\x5e\x7b\xf7\xb6\x0b\x9b\xf4\x4a\xc3\xec\x29\x4a\x11\xa6\xf0\x71\xe0\xf9\xb1\xed\xa1\x91\x0d\xf9\x95\x50\x8c\x8c\x82\xdc\xa9\xc0\xf3\x1a\x41\x13\xc7\xcd\xa6\x39\xb9\x99\x7f\x43\x5f\x29\xa4\x19\x8f\xfb\x19\x98\xe2\x73\xbd\xe7\x91\x27\xa2\x05\x79\x57\xb5\x23\x1b\x19\x75\x3f\x4b\xbc\x73\x9a\xe5\xf1\x8c\x22\xd5\x6e\x12\xc3\x59\x6a\x2f\x47\x89\x49\xc2\x88\x73\x61\xd7\x09\x50\xe3\x35\xae\x13\xb0\x3c\xb6\x31\x47\x4e\xf0\x7e\xd7\xb4\xdc\xdc\x36\xec\x5e\xd4\x43\x6e\x2b\x66\x1f\x93\x99\x19\xbf\x35\x50\x35\x11\x50\x00\xb9\xa5\x33\x18\x27\x2f\x3d\xc1\xe2\xe2\xfe\xbf\x4d\x7b\x0a\x26\x84\xbb\x24\xe8\x1b\x3d\x04\x1b\x21\x9a\x53\x3f\x20\x6a\x12\xbc\xba\x73\x41\x25\x0d\x7d\xc9\xe9\xe9\x5d\x44\x6b\x07\x85\x75\x26\x64\x44\x29\xa9\x85\x64\x0b\x3b\xe5\x53\x1d\x32\x35\x0e\xad\x3f\x3f\xef\xe3\xba\xf9\x05\xb6\x0b\x6f\x53\x91\x56\xb3\xcc\x20\xe3\x78\x64\xda\x7a\x49\xc0\x37\x4b\xf4\xb6\x51\xe0\xbd\x49\x1b\x49\x64\x2b\xa9\x07\x89\x8b\xba\x0a\xd7\x8e\xe4\xb3\x45\x62\x16\xb8\xa5\x0a\x4c\x63\xdb\xb4\xf5\x05\xa5\xdc\xed\x84\x95\xae\x4f\xf4\x08\xeb\x96\x29\x3d\x73\x98\xd2\xab\x5e\xcf\xe6\x6f\x3f\x3b\xf5\x9a\xa8\xcf\x7c\xa2\x43\x01\x08\x3e\x72\x03\x91\x14\xc6\x2d\x9f\x98\xc2\x64\xb2\x50\x01\xa1\x7a\x85\x35\xa5\x5c\xac\xc8\xb0\x76\x29\xca\xf6\xeb\x68\x12\xe1\xe4\x89\xe9\xcc\xfe\xdf\xf8\xa2\x93\xcd\x11\x67\x92\xdb\xa8\xcf\x13\xa1\x4e\xc9\x69\x71\xd1\x09\xda\x34\x40\x14\xd7\xd2\x6c\x65\xc6\x4f\x49\xdc\x08\x54\x0f\x7e\xe2\x67\xfc\x7e\xa6\x32\x12\x13\x0e\x22\x2b\x65\x36\x27\x1e\x54\xde\xb4\x0c\xec\x7b\x22\x8a\x65\x43\xd2\x1d\x3b\xe9\x35\xbb\x94\xdc\x91\x06\xfd\x25\xdd\x2b\xca\xb4\x5b\x3a\xde\x75\xff\x1e\x5d\x86\xe8\xd3\x94\x2f\x0a\xf9\xff\x4f\xb0\xac\xb0\x2e\x8e\x4c\x14\xbd\xfb\xb1\x40\xab\x0f\x6b\xfa\xdd\x8b\x4d\x94\x3b\xfb\xdb\x5d\x93\xac\xc8\xe4\x00\xbe\x8f\x47\x09\xf1\xb0\x7e\x0c\x8b\x29\xce\xa8\x42\x19\x59\x0c\x10\x30\x3a\x79\x25\x37\xa8\x7f\xa1\x66\xf9\xf7\xee\xdd\xd7\xce\x0b\x1a\xae\xa2\x6d\xce\xf2\xaf\xaa\xbb\x53\xb7\xf5\xa4\xa0\x17\x2d\x83\xed\x02\x11\xe1\x55\xf5\x01\x6e\x57\x63\x6f\xfd\x54\x4d\x33\x27\x69\x56\x0c\xac\xc9\x0b\xbe\x2d\x94\xc2\x5b\x1d\x85\x46\x6f\x4d\x15\x1f\xef\x57\x2b\x28\xc8\x22\x4a\xb7\xa9\x10\xeb\x5e\xb9\xa3\x36\x8e\x50\xa5\x81\xc9\xdc\x75\x3b\x57\x14\x68\x37\xc3\x7a\x5e\x79\xa5\xdd\x1b\x5b\x85\x0f\xbb\x44\xaf\x52\xe2\xc3\xcd\xe5\x25\x41\x91\xf4\x32\x80\x59\x01\x9d\xd6\x12\xe9\x95\x01\x02\x81\xb3\xf8\xea\x7c\xdf\x0c\x69\x86\xab\xb4\x29\x70\x3c\xa7\x03\x9f\x3d\xd4\x27\xa7\xcb\x80\xb7\x6b\x43\x33\xce\xd1\x0e\xc3\xab\x47\x64\xc3\xc7\xaa\x90\x75\x20\x5b\x9f\xf5\xa8\xa4\x0b\x93\x0a\x3b\x4f\xf9\x33\xac\x30\x89\x74\x1a\xdd\x9f\x7f\x59\x0b\x1b\x16\x17\xf7\xb7\xa3\x9e\x4d\x8a\x68\x39\x42\x55\x63\x49\xab\xc5\xba\x81\x5f\x44\x03\x22\x43\xd3\xc4\x88\x29\xcd\x1c\xdc\x2f\x13\x89\x2b\x18\xd2\x85\x5a\x65\xf2\xe0\xdc\xcb\x6d\x33\x1a\x65\xe9\x21\x46\xa3\xb6\x3c\x2f\x02\x7a\x38\x7c\x1c\x7c\x5c\xa5\x13\x49\x3f\xb3\x39\x38\x03\xb6\xab\x71\xb6\x0d\xba\x67\x54\x0a\xae\x4e\x7c\x61\xf9\xf1\x8e\x1f\x92\xf9\x2a\x56\x27\xf7\xd4\xd4\xdc\xd3\x9d\xa6\xf2\xbe\x1f\x4d\xdb\x44\x04\xd9\x72\xda\x16\xec\x89\xb0\x0e\xb6\x4e\x3d\xcc\x60\x14\xf5\xf3\x0a\x87\x79\x85\x87\x71\xb3\x93\x9e\x9f\x6f\xf7\x29\xa6\x98\xf1\x23\x69\x37\x61\x52\x1d\x7f\x97\xe7\x33\x6a\x9a\x0c\x01\xc3\x90\x83\xec\x02\x54\x24\x10\x2d\x87\x4a\x4d\xc7\x59\x61\xf3\x75\x8d\x1a\x83\x11\x46\x3a\x7d\x4f\x8d\x69\x9d\xaa\xad\xce\x3d\x8b\xed\xae\xcd\x56\x6c\x6c\x41\xb8\x28\x13\x72\x3e\xdb\xd9\x71\x46\xa9\xcf\x77\x4d\x12\x02\xb9\x81\x11\xb1\x13\x4a\xe8\xf0\x44\xb0\xcb\xcf\x83\x3c\x5f\xae\xe2\x8d\x0b\x74\xbb\x1b\x17\x94\x94\xc2\xf5\x89\x62\xe2\xb8\x5e\x0b\xf4\x16\x17\xdb\xbd\x2c\x1d\x8d\xa4\xba\x0e\x8b\xfa\x2f\x90\xac\xf2\x89\x23\x84\x0b\x4d\x1c\xef\xf0\x71\xd2\x07\x44\xd6\xe0\x24\x6a\xcb\x05\x2b\x50\x20\xdf\x4b\xfb\xef\x35\x01\xc9\x65\x0d\x3c\xd9\x31\x75\x28\x8a\xf5\xa7\x3a\x3e\xa5\x3a\x57\x91\xe8\x42\x83\x31\xcb\xc1\x4a\xe8\xd0\x7d\x07\xe7\x1c\x97\x13\xfd\xb0\xc8\x65\x2a\x19\x0a\x95\xa5\x0f\xa3\x43\xdb\x2b\xe3\xec\x2e\x4c\x7d\x80\xc5\xcc\xfc\xee\x58\x2d\xa2\x52\xa4\x62\x2e\x10\x75\x08\x2a\xc6\x27\x2b\x61\x16\x91\x32\xf9\x6c\xf9\xbb\x22\x32\xaa\x93\xdf\xc3\x6a\xcc\x82\x63\x74\xe1\x9f\x6d\x90\x22\x0f\x33\x13\xae\xf4\xd2\x35\xa4\x8b\x18\x6a\x3b\x41\x0f\x93\x8f\x55\xf6\x9c\xc6\xbd\x8f\x95\xf7\x84\xdd\x7d\x95\x4a\x4f\xf8\x1d\x26\xcc\xa3\xd0\xf1\xda\xd3\x53\xcf\x8e\xb6\x93\x18\x95\x60\x98\x8e\x4d\x34\xc6\xae\x7c\x91\x78\xd9\xd7\x49\xb4\x52\x94\xed\x68\x19\xb8\x39\x82\xf9\x05\x27\xcb\x8b\x7b\x44\xb1\xf6\x0f\x61\xe3\xf0\x74\x7e\xa5\x53\x51\x46\x56\xb4\xcc\x5b\xa6\x9e\xd6\xea\x21\x85\x5d\x8e\x0a\xc8\xf1\x9a\xed\x44\xf3\x18\x41\xdb\xa7\x3a\x6a\xf3\xde\xd6\xb2\x13\x4f\x4d\xfd\x73\x88\x4c\xc2\xd0\x2a\xa7\xdf\x29\x45\xb0\xff\xed\x79\x25\xff\x79\x17\xd5\x41\x2c\xd7\x1f\xe3\x92\x2b\xd5\x7c\x44\x7a\xdb\xa6\x9e\x61\x60\xe9\xd3\x53\xff\x84\x31\x60\x27\x0b\x50\x9a\xef\xf9\x78\x64\x33\xa2\x6b\x51\x42\x86\x2d\x35\x3c\xc4\xea\x73\x58\x93\x37\x9b\x78\x3e\x7c\xef\xdd\x21\x02\x6e\x06\x9e\xa1\x0e\x40\x68\x51\x29\xdf\x1c\xe9\x94\x9f\x5f\x8e\xfa\xe3\x0c\x03\x45\x3c\x88\x8b\x3d\x21\x53\xb9\x9b\x3d\x78\x69\xe9\x22\xc3\xe6\x58\x3e\xd1\x72\x7a\xf7\x27\x75\xd3\xe7\x9e\x12\xff\xce\x07\xd1\x68\xdd\x64\x3d\x16\x29\x62\x9a\x56\xa5\x60\x73\x4f\x57\xb5\x93\x24\x1d\x99\xb0\xe5\xc5\xe5\x1e\xe8\xef\x7d\xa0\x24\x5a\x96\xed\x9a\x24\x82\xff\x5f\x1c\x72\x45\xba\x96\xa8\xaa\x34\xe6\x01\xae\xaa\xd1\xa0\xab\xbe\x82\x9a\xc6\x3c\xca\xfa\x91\x32\x6c\x8f\x2b\xa5\x83\x9e\x59\x7f\x42\xd1\x55\xfe\xaf\xd8\xf9\x58\x36\x47\x03\xd5\x64\xe7\x52\x16\xf2\x8b\x37\x78\x13\xe0\xd5\x9c\x62\x6d\x6f\x2c\x53\x9e\x97\xc7\x4f\xe2\x5b\x4f\x28\x5a\xbb\xb7\x51\x35\x12\x52\xf0\x72\x63\xa1\x79\x06\xa6\x08\xb4\x7a\xe0\x54\x44\x95\x90\xf6\x85\x23\x5b\x77\x03\xfe\x5b\x6b\xf0\x36\xe2\xd5\x36\x99\x15\x80\x8d\x06\x58\x09\x71\x8c\x24\xc2\x23\x43\x31\x80\xa2\x41\x63\xc4\x9e\x94\x73\x15\xf6\x3a\xea\xa6\x19\x55\x5e\x31\x80\x76\x81\x96\x25\x1f\x07\x9e\x7e\xcf\x1e\xc2\x0c\x4d\x9a\xe4\x33\x6a\xac\xed\xa8\x62\x96\xbb\xa4\x6d\xee\xed\x0a\xac\x70\x3d\xff\x98\xd6\x0f\xa0\xe4\xc1\xd5\x13\x16\x17\x37\x8e\x04\x2a\x2b\xbe\x10\xa8\x74\x76\x2b\x06\xd6\x10\x4c\x6f\x21\xa9\x5f\x67\xdc\x54\xc7\x9a\xde\x2c\x03\x59\xc8\x59\x08\xc1\xb5\x27\x93\x38\x82\xd2\x08\x72\x96\x3b\x41\x99\x82\x3a\x98\x49\x99\xe4\xc8\x64\x48\xf9\x40\x91\xd0\x3d\xc2\xb8\x24\x54\x28\x5b\xd0\x30\xc0\x96\x38\x81\xad\x08\x4b\x77\x53\x4f\x7b\xb3\x9a\x31\x5e\xe3\x69\x57\x37\x1e\xa4\x43\xcb\x3d\x09\x21\x1a\x77\x1e\x64\xee\xe9\x8e\x33\x32\xa3\xbf\xd3\x21\x7b\xe6\xac\x4c\xf9\x9b\xc0\x87\x31\xf1\xba\x83\x4d\x0a\xf1\xde\xd5\xcf\x4c\x3d\x14\xe4\xf1\xa9\x92\x5d\x78\xc8\xe5\x3d\x11\x7d\x55\x20\xd2\xed\x1d\xff\x7e\xba\xb6\x00\x9e\x49\x91\xce\x2b\xca\x97\x3d\x52\x5f\xbc\xd9\x84\x8d\x20\xcd\x17\x8e\xaf\xf0\xca\x30\xd0\xce\xc7\xae\x7d\x49\xd2\xe2\x39\x41\xe0\x66\xfd\xff\x9f\xd2\x9c\xc5\x53\x76\xb1\x82\xb9\xf2\x46\xfe\xb6\x0a\xed\xc7\xd1\x6b\x33\xaa\xed\x7b\x1c\x86\xd8\xa9\xb6\x3b\xf4\xd0\x9d\x5a\x75\xea\x95\x57\xda\x99\xed\x49\x48\xc4\x4a\x96\x78\x77\x22\x6b\xd9\x64\x87\xc3\xcc\xca\x60\x27\x8a\xae\xef\xe1\xe5\xf3\x89\x83\x35\x8e\x6c\x11\x15\xc8\xa0\x70\x05\x37\x14\x96\xe9\x46\xa3\x30\xaf\x19\x92\xc4\x98\xe2\x97\xe2\xc4\x42\xd0\x10\x6a\x46\x63\x5c\x3e\x64\x07\xd7\xba\x40\xcc\x6e\xd2\xe9\xf1\x1d\x85\x61\x9a\x14\x83\x9c\x30\x28\x88\xcd\x76\xd1\xda\xc2\x9b\xdd\x4e\x1a\xd8\x2c\x31\x4d\xdb\x44\xb8\xad\x69\xc7\x21\x81\xbe\xa1\xd9\x54\x52\x30\x3e\xb6\xf6\xee\xdd\xa0\xbb\xd9\xb8\xa1\xa6\xdd\xd7\xd2\xb4\x97\x8d\x97\x97\xe9\x71\xa2\x69\x7e\x46\x69\x55\xff\x77\x67\x82\x67\xb4\xc8\x5b\x1e\xf5\x22\x93\xad\x13\x39\x10\xc2\x82\x0f\x27\x0a\x6c\xc0\x77\xce\x2a\xba\xde\x60\xfe\xce\x33\x1d\x05\xc3\xe0\xce\x2c\x6e\x9c\xf5\x23\x45\x60\x60\x73\xe8\xbf\x77\x6f\x3b\xb3\xa6\xb7\x89\x2e\x74\x51\x0b\x9a\x29\xde\xed\x71\x5c\xe4\x8f\x7a\x00\x30\x98\x1f\x1c\x89\xa2\x23\x68\x61\xfc\x8d\x9b\x41\xf6\x73\x64\x4b\xb8\x1b\xfe\x9f\xa0\x8c\x84\x50\x9b\x81\xa9\x82\x71\xc2\x63\x17\x76\x49\xff\x7c\x46\x36\x63\xb5\xd4\x96\x77\x15\xdf\x57\x33\xef\xdf\x6f\xc8\x2b\xdb\xcb\x69\x66\xcb\xec\x86\x3d\xa2\xe3\xc1\x28\x9f\x97\xf0\x60\x3c\xa9\xc4\xe1\xfb\xe3\xd8\x64\xdb\x7c\x42\xf0\x27\x81\x57\xc8\xbd\x14\xf8\x28\xb2\xd2\x74\x39\xaf\x84\x3f\xce\x54\x39\x53\x93\x22\x7f\xcc\x13\xaa\x42\x8b\x4a\x29\xc9\x2e\x71\x36\x09\x59\x09\x19\xbb\xa2\xa7\x24\x02\x29\xf4\x30\x9d\x7e\xa8\x6b\xcc\x73\x78\x85\xe7\xf4\xbe\x2e\x82\x5f\x0c\x7c\x91\x90\xe7\xb9\x04\x68\xe0\xd1\x0e\xe7\x26\x9b\x2b\xe5\x2f\x2d\xb5\x3f\xd7\x9b\xd1\x12\x67\x13\xa5\xce\x79\x2d\xf0\x1b\xe3\x44\xe3\x84\x57\x91\x45\x02\x2c\x87\xb7\x3d\x8e\x88\x80\x4f\x94\x7d\xb2\x09\x54\x5b\x9a\xc4\x8d\xc5\x1b\x64\x2e\x03\x76\xbb\xd9\x51\x91\x5d\x50\x31\xcc\xb2\x89\x63\x96\xcf\x15\x16\x4b\x3f\x6d\xfb\x30\x50\x78\xf8\x1b\xaa\x87\xbe\x06\x6e\xb0\x6d\xe5\x83\x42\xcd\xe3\xaa\x52\x05\x02\xf2\x52\x28\xf5\xfc\xfc\xc5\x7f\x50\x2c\xfc\x97\xd5\xd6\x18\x65\x69\xc1\x7c\xe9\x2f\x38\x6a\x38\x0f\xd1\x3e\xd5\x48\xcf\xf2\x99\x85\x3d\x2f\xec\x39\xb0\x7f\xa6\x7c\xac\xd8\xb8\x7f\x35\xf1\x03\xaf\x17\x34\x51\x61\x5d\x05\x8a\xf8\x18\xfb\x7d\x64\xd2\x70\x77\xf7\x14\xf7\xe5\x3d\xc5\xa8\xd8\x8b\xf2\x22\x8b\xba\xe3\x42\xac\x28\xee\xf7\x03\xba\x40\x3e\x6e\x10\x7b\x5f\xc0\xf4\x86\xc3\x24\xb8\x56\xa9\xfb\xd4\xe9\xa0\xa2\xb0\x93\xa2\x86\x8f\x40\xe7\x96\x12\x97\xb8\xa8\xc0\xbf\x47\x2a\x88\x96\x34\x5d\x79\xba\x7c\xea\x48\x99\xb6\x83\xc6\xce\x71\x6d\x3b\xcc\x11\x24\x4e\xd0\xfd\xfd\x3e\x7d\x19\x5a\xe6\x37\x39\x0c\x15\xf8\x4e\xcb\x09\x09\xfc\xbb\x89\x1a\x17\xbe\x80\x8d\xe2\xe8\xa3\xcb\x48\x46\xfc\xa7\xaa\x8a\xf2\x54\x3a\x0f\x01\x07\x08\x0b\xb8\xe5\x4c\x77\x23\x11\x1f\x95\xbd\x1d\xc4\xfe\x25\x09\x71\x3e\x44\xfc\x88\x55\xf3\x1d\xb2\x14\x28\xd4\xdd\x74\x98\x85\x65\x0b\xde\x37\xdc\xef\xeb\xb8\x14\x27\x83\xb0\x6f\xce\xe5\x3a\xe5\x3d\x4a\xc7\x95\x2e\x11\x89\x18\x87\x1d\xa8\x87\xcd\x4e\xfd\xfb\xfe\x54\xc7\x6f\x88\xb5\xa8\x67\x13\xc5\x57\x5b\xad\xa1\x69\x79\x48\xd3\x27\x92\x77\x0e\xdd\x97\x36\xae\xd0\x16\xc0\x2e\xfa\xda\xc4\x9b\xbd\xaf\x35\xd1\x81\x66\x96\x9b\x3b\x2c\xca\x14\x54\x14\x9a\x36\xb5\xe2\xf7\x2d\x95\xc1\xf9\x23\xde\xae\x5f\x20\x60\x17\x36\xd5\xcf\xe9\x67\x51\x80\x85\x7e\x28\x2b\x57\x4d\x3c\xc6\xeb\xe4\x44\x11\x5f\x9d\xa3\xd7\x81\x52\xca\xef\x2b\x9e\x8f\xbc\x78\x7e\x46\x95\x7c\xde\xe1\xe5\x21\x1b\xca\xef\xdd\x0f\x14\x9d\xf4\x72\x66\xfa\x51\x5c\x01\xd6\x32\xc7\x89\x68\x0a\xf8\x34\x70\x39\xcd\xfa\x96\xac\x9c\xb7\xa3\xa8\xf8\x08\x96\xdf\x67\x0d\x61\x96\xae\xa1\xa3\x89\x0e\x39\xe8\x52\xf9\xd8\x25\xd1\x6b\x51\x31\xe8\x65\x66\x4d\xa6\x0c\xb1\xfa\xce\xab\xa5\x8c\x8c\x1a\xe0\x89\xdb\x0a\xc0\x63\xfb\xfd\x96\x72\xb3\x60\x29\xe7\xe3\xc9\x6e\x85\xf0\x8e\xe3\x1d\xf4\xd5\x52\x91\x57\xb0\x2d\x10\x14\xa2\xb0\x71\x94\x32\x0e\xa1\xf8\xf7\xd0\x5f\x50\xaf\xc2\x17\x1e\xa5\x07\x0f\x2f\x7d\x23\xf0\x84\x99\xbe\x28\x10\xc6\x65\x5e\xb5\xec\x86\x4a\x50\x73\xf8\xa5\xd2\x4b\xfd\x65\x43\xcf\xbc\x9b\x26\xbd\x41\x1a\xf7\x1c\x05\x13\x53\x9e\x04\x7e\x82\xe0\x3d\xd7\x07\x22\x4e\x53\x02\xd0\xc3\x41\x42\x51\x0d\x8e\xe1\x06\x3d\x38\xaa\x75\x2f\x3c\xc9\xa9\x89\xcc\x99\xb4\x7e\xed\x25\xa7\x29\x48\xd6\x01\x1e\xf9\xd1\x8e\x87\x66\xfd\x3f\x6d\x7a\xd8\x48\x86\x6e\x4c\x2a\xd1\x5f\x79\x59\x70\x2a\xf7\x75\x89\x3e\x8e\x8a\xd7\x50\x77\xe6\xee\x8c\x42\x6b\x9e\x9e\x7c\xa2\xba\x0d\xfe\x91\xe7\x45\x76\x75\xcd\x4f\xd0\x3c\x98\x08\xfc\xf8\x29\x87\x6d\xd3\x4a\xef\x1e\xf7\x22\x14\xb4\x64\x38\x9c\xe4\xd5\x1e\x59\x04\x5c\xc4\xc7\x8d\x6d\x9d\x2a\x2e\xe5\x93\xf4\x90\x9c\x0d\x5f\x38\xe0\x6d\x63\x79\x63\x58\x0e\x4c\x3f\x88\xf5\xc0\x1a\xe8\x48\x1a\xae\x20\x58\x80\x3f\xb1\xbd\x71\x48\xf8\x86\x5c\x97\xfb\xef\x60\xd3\x88\x9c\x62\x79\x53\xc2\xcc\xb8\xf9\x85\x53\x4f\xb9\x67\xc6\xc4\x5d\x83\x76\x93\x0c\x67\xe9\xa1\x2d\x1f\x45\x9b\x61\x14\x12\x9d\x9d\x47\x65\x7d\xa8\x65\x00\x3e\xac\x8d\xb4\xec\xdd\xdb\x4e\x7b\x3d\x26\xd8\xc5\x6d\xa3\x39\xce\xc7\x4d\xa9\xc6\x72\x04\x1d\x00\x9f\xa6\x9d\x52\x48\xb6\xb7\x10\x48\xc3\x5a\x5f\x6d\x00\xbe\x2e\x88\x90\x00\xfc\x25\x2a\xda\x0f\x26\xbe\xd4\xfd\x20\x50\x4c\xe9\xcc\x4d\x5a\xbe\x09\x6e\x58\xd1\x62\xf7\xcd\xab\x5f\x55\x14\x1e\x03\xb2\x23\x4a\xd9\x62\xc9\x8d\x1a\x79\x06\x91\x7c\x90\x8e\xcb\x2d\xd4\xaa\x4c\x4e\x2a\xdc\x6d\x83\x18\xe3\x28\xb3\x61\x3c\xee\x09\xd1\x04\x2c\x0e\x76\x2b\x16\x11\xf7\x6d\x10\x40\x5d\x9b\x78\x5b\x9b\x7c\xae\x78\x9a\x16\xa8\x8a\x86\x5f\xf0\x62\x00\xe5\x87\xe8\xb9\xed\x7e\xa6\xa3\x6a\x21\x2d\x2a\xc9\xc2\xb0\xbc\x4e\x66\xdf\x95\xb5\x17\x0e\xb0\x87\x86\x5f\x43\x56\xf1\x5d\x0d\x65\xbe\x4c\x11\xa8\xcb\x1d\x0e\xce\xf1\xd6\x7e\x1a\xc9\x0f\xf7\x96\xc8\x2c\xc1\xcc\x73\x43\x10\x01\x36\x44\x13\x00\x15\xbb\x0f\xec\x1c\x3c\xc8\x2d\xb4\xae\x9d\x5a\x6d\x19\x83\x30\xf9\x87\xae\x75\x72\x31\x1e\x7e\x42\xcc\x9a\x52\x20\xfd\xa5\x0a\xfb\xfb\xb6\x37\x8e\x11\x0e\xa1\xaa\xc9\x15\x75\xe1\x78\xf5\x73\x3d\xc7\xab\xa4\x45\x19\x04\x4e\x61\xcc\x8e\x28\xf2\xdd\x23\x6a\x37\x64\x36\xcc\xc6\x51\x01\x27\x04\xfb\xc0\xa8\x35\x3e\xa9\x75\x22\xe7\x17\xda\x2b\x49\xba\x16\xdb\x5e\xdf\xba\x7d\x84\xd0\x06\x24\x69\x7c\xac\xca\xfb\x43\xe2\x7b\x32\xec\x3b\x5c\x71\xd5\xf7\x6a\x50\x9c\x87\x09\x46\x29\x12\xa5\xa9\x07\x78\xf9\x52\x81\xa5\xfb\x46\x4d\xfd\x0c\x55\xfb\xf0\x68\x37\xe8\x19\xc8\x84\xb3\x14\xe5\xa2\x64\xd5\xc4\x51\x6f\x46\xd1\xf0\x9d\x9a\xa8\xf1\x3f\x64\x4f\x78\x6d\x77\x54\xe6\xdc\x8b\xf2\x91\x29\xc2\x01\xd6\xf1\x0b\x8c\x8c\xb9\xad\x26\x2a\xf0\x49\x69\x25\xe8\x04\xad\x7c\x26\x2d\x8f\x03\xbb\x40\x0b\x4b\x8c\xe3\xe6\xb8\x67\x71\xb1\xfd\x9b\x7f\xef\x37\xff\x5e\x8b\x00\x0a\xfc\x36\x15\x4a\xd7\xcb\x83\x14\xda\x14\x30\x95\x87\xd2\x76\x3f\xde\x34\x41\x45\x16\x21\x12\x36\x2f\xb4\xd1\xd0\xf7\x13\x76\x14\xa5\x80\x76\x7c\x22\xba\x0e\xaf\x8e\xb3\x28\xef\x45\xd4\x3b\xe5\x90\x4c\x04\x96\x5b\x4e\x3c\xef\xa4\x87\x51\xac\x59\x3b\x9a\xf5\x98\x3c\x6e\xa1\x0b\x8c\x56\x3d\xed\x4b\xda\x6b\x2b\xc6\xa4\xa1\xe9\x67\x63\x02\x30\x95\x7f\x0b\xf0\xec\x75\xad\xec\x71\xbd\x66\x6a\xf6\x2c\xb6\x5f\x35\x51\x4c\xbc\xee\xaa\xd9\x06\xf8\x9e\xa0\x5f\x9e\xd4\xa4\x51\xa3\x71\x61\x1f\xa1\xbd\x86\x62\xf8\xd1\x40\x55\xc9\x8f\x56\x01\x0c\xf0\x8d\x7c\x46\x26\xcf\x31\x94\xbb\xc4\x12\xa8\x09\xb8\xb6\xfb\x2a\x71\x19\x58\x93\xe5\xac\x63\xee\xe0\xf3\x4b\xbe\xf6\xaa\x68\xde\x30\xa0\x9a\x46\x2c\x06\x00\x97\xfd\x81\x1e\x3b\xff\xa0\x96\x53\xef\x59\x6c\xf7\xd3\x96\xef\xa6\x9f\x57\x5a\x99\xbf\x79\xde\x55\xa3\xd7\xa2\xcc\x16\x66\x54\x99\x5c\x51\x00\x48\xbf\xae\x46\x26\x2b\x04\x55\x05\xd3\x32\x4b\xc5\x2b\x3e\x9e\xfa\x67\x98\x0f\x6c\xd6\xb5\x05\x5c\xb4\x48\xcd\x54\x06\x76\x5b\x8b\x8b\x1b\x9a\x7b\x3b\x1f\xa5\x85\xb0\x2e\xc1\x4e\x1e\x55\x36\xf3\xa8\xbb\x86\x61\x5a\x44\xab\x16\x90\x5c\x54\x81\x99\x9f\xb0\x82\x6a\x86\x17\xbf\xd7\xd4\x76\xcd\xc7\xc4\xf1\xc9\xb6\xd4\xdd\x6f\xf9\x29\xb9\x5f\xe9\x7c\xd8\x30\x4d\xd2\x61\x14\x82\x17\x0b\x45\xa4\x1b\x2a\x4a\x3a\xa5\xe7\x83\x18\x29\x0e\xa0\x3e\x53\x1e\xe1\x64\x7b\x47\x53\xf6\xb6\xa6\x62\xd7\xfb\x26\x5e\x35\x49\xf4\x9a\xed\x51\x25\xc0\x41\xb9\x7d\x9a\xcc\xb5\x2c\xdc\x1a\x70\x01\xb8\xe7\xb7\x03\x45\x5a\xb9\xad\xb3\xb9\xd3\x74\xe0\xc5\x76\x6e\xd6\xe9\xcd\xbb\x9d\xbc\x28\x20\xca\xc6\x66\xd6\x67\xdb\x5f\x1a\x9b\x15\xab\x7a\xe3\x37\xd4\xe6\xbf\x51\xb3\x45\xc4\x27\x95\xf0\x0b\x96\xae\xa5\xc3\x6a\x7d\xf9\x0e\x19\x32\xa1\xd1\xf6\x39\xcc\x60\x3c\x1c\x0d\x50\xa9\x29\x9f\x9c\x53\xb9\xf4\xd8\xdb\x63\xb5\x1a\xf6\x41\x8a\x14\x08\xe1\xe9\x21\x77\xcc\x3f\x21\xf4\x67\x1e\x88\xfb\x4d\xf5\x6b\x43\x13\x47\xfd\xc4\x24\x05\x3a\x32\x9a\x1c\x4c\x94\x7d\x1a\x00\x92\x89\x35\x59\x97\x25\x6d\x04\xeb\xe6\xcb\x63\xc7\x2a\xf4\x72\xe0\xb4\xcb\xa9\x39\x2f\xf5\x3c\xba\x30\x41\x40\xd3\x0f\x0b\x10\x44\xcf\x67\x94\x81\x02\x0f\xa4\x4f\x7c\xb3\x13\x78\x4a\x3c\xf4\xf7\xe9\x57\x85\xb5\xf8\x71\x1d\x8f\x66\x46\xbd\xdb\x53\xea\xdd\x9e\x9a\x68\x1d\x75\x93\x97\x3b\x0a\x8b\xaf\x61\x5d\x9e\x76\x40\xd2\xfe\xd8\x66\x59\x14\xc7\x66\x46\x53\xa1\xd3\xfb\x44\x6b\x1b\x4f\x58\x90\x6f\x6a\x86\x2a\x07\x27\x2f\x03\x34\x55\xbe\xb2\xe4\x24\x1a\x3f\xa1\x6b\xcc\x61\x9a\x90\xde\x50\x2a\xc9\x16\x0f\xaf\x05\x8a\x26\xe9\x92\xe2\x86\x33\xbd\x57\xc7\x39\x4d\xa9\xe6\xe4\x36\x70\xe5\xe7\x03\xd5\xf9\xbe\xa9\x30\x02\xdc\xe9\xe1\xbf\xaa\x87\x22\xf3\xed\xa1\x49\xc6\xcb\x26\x2c\xc6\x59\x19\x4f\xe1\xd9\x34\x0a\x9c\x36\x15\xa5\xcc\x68\x64\x32\x9a\x98\xd5\xf5\x25\x87\xf9\x68\xe2\x39\x78\xa1\x3d\xb4\xb1\x49\x22\x34\xfb\x84\x5b\xa9\xfc\xbc\x90\x2e\x49\xf3\x34\x2f\x4c\x31\x2e\x2a\xa6\xed\xcc\x44\x1b\x29\xcd\x9c\x76\x57\x2d\xc3\x7c\xdc\x7d\x15\xac\xc5\x9e\xdc\x03\x9b\xd1\x53\x39\xe1\x2f\xd3\x2c\x4a\x63\x94\x49\x97\x2a\x55\x59\x29\xea\x7a\xd7\xf4\xaa\x19\x99\x64\xb7\xee\xaf\xa1\xcc\x2c\x32\x90\x6a\x61\xff\x5c\x95\xcc\xa1\xad\x28\x28\xe0\xd2\x0a\x40\x72\x69\x41\xa8\x82\xf1\xe6\x50\xb4\xba\x8e\x8e\x9f\x57\x6e\x9d\x73\x65\xef\x4a\xcf\x58\x01\x66\xff\x44\x61\xe4\xde\x50\x32\x6e\xa3\x2c\xcd\x47\x36\x8b\x58\xca\x5f\xaa\x8c\x0a\x56\xf6\x41\xad\x8e\xb4\x77\x6f\xdb\xe4\x2b\x79\x85\xd7\xba\x22\xe6\xbb\x39\x75\x14\x4c\x9d\x5d\xb5\xd9\x3a\xa9\x2d\xa1\x85\xf3\x14\x79\x41\x24\x16\x0f\x54\xc3\xf7\xaa\x56\x2a\xba\xa9\x19\xb8\xad\x89\x77\x2b\xfe\xa6\x9f\x72\x14\xc1\x67\xf4\x24\x94\x10\x80\x08\x14\x1d\x9d\x28\x8c\xc7\x06\x7c\xb4\x88\x97\x7b\xd4\xf7\x96\xa9\x82\x25\x7e\x85\x0c\xb1\x4b\xc3\x5d\x48\xf6\x4d\xad\x75\x74\x94\x5e\x20\x2c\x0d\x8b\x6b\xf0\xa7\x9b\xec\x7e\x9a\x14\xe9\x4c\xeb\x8b\x0b\x0e\x36\xe4\x81\xb0\xbf\xa4\x72\x00\x9e\xf7\xcd\xcd\x13\x31\x8b\x8b\x4b\xed\xf9\x85\xc7\x15\x20\xf8\x0a\x5d\x9c\x9e\xe1\x60\x26\x12\x35\x12\xc2\xa3\x61\x2c\xe8\x85\x7b\x56\xec\xa9\x42\xfc\xc4\x19\xb9\xcc\x64\xe2\x71\x22\x27\xb8\xa6\x73\x82\xf7\xa8\x12\x23\x74\x07\xb4\xfc\xa4\xfb\xdc\x72\x6a\xda\x5b\xa0\x87\x8b\x64\xef\x0d\x65\xee\x06\x66\x38\xca\x07\xac\x0d\xb3\x54\x61\x4d\xe0\xe3\x06\x9a\xf8\x05\x62\x5e\xec\x93\xa3\xc7\x08\xa5\x23\xb0\x3d\xe8\x55\x63\xe9\x2e\x45\x07\x97\x2e\x58\x78\x4e\x9a\xa6\x3f\x57\xcb\x7d\xcc\xa1\xa0\x6b\xe1\x2c\x2e\xca\xb1\x8f\x96\x6c\x31\x30\x89\xad\x70\x08\x28\x2b\x77\xbe\x59\xff\xa6\x67\x87\x32\xc9\xac\x47\x21\x65\x86\xaa\xc1\x67\x76\x4d\x92\x20\x78\xdb\xc0\xb4\xe1\x46\x5d\x01\xf5\xe0\xdc\xcb\xe5\x36\x1d\x49\xd5\x85\x7b\xca\xf4\xdc\xa5\xbf\x5c\x17\x5a\x7d\xb9\x3d\x1e\xe5\x88\x24\xab\xa0\x30\xac\xbe\x07\x8a\xfe\xe6\xb2\x1a\x5c\x1f\xa4\x85\x8d\xd1\xaa\x63\x20\x78\xe0\xb3\x0e\x5d\x29\xcd\xa2\xdc\x32\xea\x53\x68\xbf\x35\xdf\xc8\x4e\x17\x23\x27\x3b\x3c\x1a\x99\x6b\x78\x08\xf4\x3f\x44\x85\xdf\xf1\xfd\x95\x5f\x25\x25\x2d\xff\xd8\x7e\x42\x5b\x03\xa1\x30\x0a\x54\xf8\xaa\x9d\x1d\x5f\xd5\xbc\xa4\x52\xe0\x32\xe9\x8f\x23\x9b\xcf\x6a\xe5\x0e\xad\xbc\xe1\x9b\x44\x57\x14\x69\xc3\xd1\x26\x2b\xd7\x33\x85\xc0\x8e\x90\xbe\xfe\xf5\x44\x91\xc6\xff\x82\x9e\x0c\x12\x98\x6f\x6a\xa9\xc3\x34\x29\x4c\x58\x50\x95\x08\xcd\xc5\x6b\xa8\x5c\xf0\x49\x0d\x8d\xbb\x70\x00\x3c\x8b\x83\x28\xb7\x76\xd3\x10\x8f\x0f\x51\x2e\xa9\x06\xf5\x30\x4d\x6c\x61\x32\x50\x32\xb0\xd4\x1a\x3d\x7e\x18\x42\x10\x6d\x0a\x03\x6c\x79\xc3\xc0\x50\xbc\xa7\x81\x12\x37\x9d\x77\x8b\xf2\xcc\xd8\x38\xe2\x81\x5e\xe1\x7c\x2a\xbf\x1a\xc5\x4e\x10\xc6\xb8\xc1\x8b\xf2\x2b\x78\x3e\xca\xe5\xa7\x2b\x49\xba\xc6\x64\xa1\x42\xbb\x4c\x0b\x8f\x27\xf2\x60\x71\x58\xd2\x5b\xb5\x14\xd3\xbc\xf8\x24\xfd\x17\x5e\xd4\x63\x53\x5f\xf9\xda\x02\x30\x1d\xbe\xe0\x83\x89\x9e\xb0\xc5\x52\x81\x93\x9b\xa1\xba\x13\x50\x05\xbb\xc1\x34\x87\xe6\xca\xa7\x69\x9a\x02\x85\xaa\x99\xa9\xd2\x46\x27\x43\x86\x9a\xd9\xce\x8e\x52\xea\x7d\x86\xc0\x26\xa8\x47\x7d\x17\x73\x19\x68\x64\x3d\x24\xab\x8a\x4f\x03\x6d\x28\x85\x26\x5a\xcc\xa8\x79\x3d\xda\x51\x48\xd1\x16\x06\xfe\xb5\xfe\x2c\x16\xed\x15\x06\x82\x08\xc6\x89\x6a\x58\xa8\x86\x7e\xba\xe3\xe9\xb7\xd6\x3f\xde\xf1\x23\xa3\x17\x29\xb4\x95\x39\xe6\x4f\xf8\x70\xb6\x37\x8c\x92\x28\x2f\x32\x53\x26\x76\xb3\x8a\x3d\x87\xa7\x9e\x9c\x09\xf2\x18\x4a\x74\xc1\x04\x50\xb9\x79\xc5\x3f\xd7\x1e\x0d\xd2\x22\xc5\xa6\x76\x25\x61\xd7\x0b\xa9\x5b\xa6\xbd\x7b\xdb\x61\x3a\x1c\xc5\xf6\x10\x16\xad\x70\xc8\xfa\xdc\xb6\x41\x2a\xf1\xc5\xfd\xed\x61\x14\x47\xe5\xf2\x6d\xf9\xe6\x0a\xb4\x5b\xf9\xb8\xa1\x51\xbd\xbf\xbd\x1e\xd9\xb8\xb7\xcd\x0b\x05\xf0\xe3\xaf\x0c\x53\xc2\xb0\xcc\x76\xca\x27\xa6\x27\x57\x45\xb2\x49\xe2\xf6\x7c\x94\x99\x35\x8f\xee\x87\xd1\x7a\xab\xa2\xd6\xde\x72\x6c\x86\xb7\x6b\x97\xf3\xca\x2b\xa5\xa9\x37\x2c\xbf\x26\xdb\x9a\x16\x80\x6c\xf8\x7a\x69\x7b\x7f\x3b\x4d\x42\xdb\xaa\x5c\x9a\x57\x40\x08\x24\x9a\x2d\xc6\x59\x32\x8a\x56\x98\x5d\xde\xcd\x18\x39\x20\x38\x77\x0b\x64\xe4\xd8\x11\x89\x64\x43\x50\xc5\x2e\xb9\xd6\x4b\xeb\x0b\x12\x22\x7e\x5f\x69\xf2\xf0\x50\x3b\x5c\xfc\x9d\xc0\x2b\x78\xac\x46\x76\xcd\x15\xbf\x98\xdf\x91\x0c\xa4\x70\x3d\x36\x01\xf7\x6c\x42\x48\x50\xba\x56\xb7\xbf\x1c\xf7\xfe\x2d\xfa\xbc\x4c\x3e\xfb\xfe\x4b\x6e\xed\xa8\xf4\x7a\xfb\x04\xeb\x74\x93\x3e\xc4\xc7\xb5\xb6\xc0\xe2\x62\xbb\x18\xd8\x61\x65\x8c\xe8\x94\x8a\x9e\x4e\x05\x1f\x53\xdd\xc4\xcc\x14\xb6\x1f\x31\x74\x64\xc9\xeb\x35\xb9\xd6\xc6\xbf\xd5\xed\x54\x13\x0e\x72\x35\xed\x76\x4e\x29\x51\xd4\xe5\x0f\xe6\xe7\xdb\xcb\x36\x49\x6c\xdc\x52\x61\xf6\x69\x5d\xaf\xf2\x2b\x6c\x90\x45\xc9\x8a\x91\xd9\x27\x47\x72\xe9\xf2\xdd\x4b\x0e\xa5\xde\x8b\x46\x6c\x3a\xe1\x96\x36\x94\xc6\xc4\x65\x15\x5d\x5d\x74\x19\x4f\x2f\xea\xdb\x24\x5d\xc5\x28\x9d\x7b\xad\x9e\xeb\xe7\x0e\x9a\xda\x48\xae\x4e\x36\xaa\x3c\x16\x54\xb4\x38\x38\xe7\xf5\x0f\xcb\x87\xc5\x27\x35\x04\xee\x9e\xc5\xf6\x38\x07\xae\x5f\xee\x84\x7e\x4e\x6e\xa5\x4e\x8a\x3f\x34\x89\xe9\x4b\x87\x02\xd1\xc3\x9b\xd8\xb0\x48\x92\x99\xef\x01\xa5\xc7\x8b\x0a\x41\xbf\x9c\x66\x36\xea\x27\x36\xcb\x77\x94\x6b\x02\x16\xe1\x08\x3d\x38\x7c\xf2\x8d\x4d\x9a\x27\x7e\x36\xfe\x0c\x6e\x42\x78\xf7\x5b\x8e\xe2\xeb\x26\xbd\x7d\x54\x10\xbe\xa7\x99\x67\xeb\x54\xe3\x0b\x07\xda\xf9\xd0\xc4\x31\x01\x43\x4a\xeb\x8c\xfd\x09\x7b\xc0\xc7\x4d\x1c\x21\xe1\xc0\x94\xe9\xb9\xeb\x35\x20\x41\x38\xab\x45\xf6\xce\xaa\xaa\x64\xdf\x64\x7d\x93\x14\x63\x93\x60\xbf\x89\x47\x69\x39\x59\x96\x73\x55\xf1\xb2\xd5\xf5\x19\x45\x3b\xc0\x02\x08\x78\xf5\xf7\x2a\xbb\xb4\x01\x73\xf2\xaa\x19\x46\xe8\x1e\x20\x21\x7e\x77\xa2\xf0\x35\xef\x2a\x89\xc2\xbc\x10\x85\x31\x40\x1d\xce\x69\xf5\xba\x73\x0a\x34\x6b\xf2\x3c\x0d\x23\x9a\x70\x7d\x1c\x55\x58\x69\x8c\xf8\xb6\xfa\x35\xdc\x3b\xde\xfd\x83\x89\x8f\x4e\xee\x02\xdc\x84\xd8\xf3\x3d\xda\xf9\x88\x33\xee\xe8\xa1\xa5\x09\xd6\x30\x82\x9b\x7b\x15\xcc\x08\x90\x7f\x28\x77\xff\xb8\xb2\x1a\x68\xf7\x22\x96\xbf\x45\xcd\x29\x3e\x0e\x14\xc0\xe0\x9b\x0d\xd3\x50\x4b\xed\x28\x29\x32\x93\x17\x24\x6b\xe5\xcd\xc6\x9f\xab\xed\xf7\x0b\x3d\xa9\xae\xe6\x1a\xa2\x61\x97\xf6\x21\xf6\x0e\x5e\x06\xf2\x6c\x20\xa8\x25\x19\xdf\xbc\xd2\x08\xb4\x99\x8f\x63\x47\x00\x25\xfd\x16\xba\x21\x3e\x09\x3e\xe5\x29\xa5\x92\xd5\x28\x4b\x93\xa1\x4d\x0a\x13\x47\x39\xf1\x9b\x6d\xbc\x5d\xa6\xbc\x1b\x6f\x37\x0c\x95\x2d\xb4\xc3\x38\x1a\x76\xe5\xcb\x91\x28\xbc\x82\x0c\x89\x4f\x1a\x2c\xfa\x52\x3b\x1f\x45\x3d\x9b\xb5\xb4\x78\x26\x37\x2f\x05\xa7\xd8\x90\xc6\xa4\x6b\x89\x43\x01\x60\x9b\xf1\xec\x08\x9f\x34\x9a\x74\x6b\x86\xbc\x59\x64\x9c\x5a\xcf\x56\x2b\xcf\xd4\x1f\xc7\xa6\xb0\x6c\x23\x65\xcc\x4f\xa3\xd7\x11\x24\xde\xae\x99\x2d\x00\x09\xa9\xb5\xca\x93\x13\x81\x42\x00\x5f\x9e\xec\xf4\x8a\xcc\x18\xd7\x11\x04\xb3\xfa\x56\x48\x1f\xc0\xd0\x7d\x57\xd9\xef\xef\x06\x75\x45\xab\x32\xf4\xef\x11\x96\x7c\x13\x00\xeb\xbc\x02\x60\x9d\xaf\xb2\x36\xf7\xc6\x61\x69\xeb\xc8\xd6\x38\xd8\x76\x99\xac\xcb\x89\x2f\x5e\x1f\xa1\x72\x83\xb8\x74\x55\xa2\x41\xf5\x53\xe0\x7f\x7e\x99\x1e\x06\x69\x37\x7f\x93\x22\xbe\x33\x49\x92\x8e\x93\xd0\xf6\x1e\x53\x03\x7e\xe7\x10\x8e\x72\x75\x02\xe5\x03\xf4\x03\xbe\x86\x2b\xe2\x31\x3b\x02\x80\x32\xb4\x55\xa9\x7c\xfe\x50\x65\x97\x70\x74\x9e\x39\x52\x9a\x86\xf7\xf1\xfc\xb1\x55\xae\x4c\xd4\x0c\xc3\x57\xe9\xde\x64\x90\xcf\xb7\x16\x09\x9c\x3f\xe3\x35\xa4\x36\x70\x5d\x28\xc6\x5c\x57\x2a\xeb\x27\x1a\x55\x08\xba\x86\x48\x2d\x5b\x7a\xe0\x86\xe1\x85\x7c\xd2\x34\xf1\x46\x64\x5a\x6e\xa8\xd1\x31\x8a\x2e\x2e\x3a\xe2\x50\x25\x01\xfb\xa5\xb1\x91\xba\x86\xcc\x97\x2a\x10\xcd\x25\x65\x29\xf2\xdc\x12\x90\x0c\x48\xe0\xef\xd1\x34\x1a\x90\x1a\xf7\x74\x5d\x56\x47\x50\xec\xd6\x79\xee\x98\xb3\x07\x37\x85\xec\xf4\x78\x27\x2a\x37\xec\x66\xd6\xac\x08\x22\x42\xc8\x43\xcb\x3f\x55\xb3\x36\x8b\xae\x78\xd4\x30\x01\x39\xca\x4c\x7f\x68\x80\x7d\x77\xb8\x1a\x24\x02\xa2\xa2\xf4\x58\xe4\xf3\xd0\x75\x82\xdd\x52\x9c\xfa\xec\x93\x1d\xcf\xf2\xc2\x97\xce\x84\x9c\x6c\xc0\x19\x44\xa0\x49\xeb\xef\x2b\x90\x77\x12\xf5\x07\x45\x3e\xeb\xeb\xfa\xa7\x55\xe4\xfa\x86\x52\xc6\x64\xf3\x22\x73\xe8\xbe\x42\xf8\xea\xf3\xf6\xf9\x96\x52\x76\xbd\xac\x31\xff\x97\x6b\x76\xe8\xb9\x76\xcf\xe6\x65\xce\xd3\xf2\x4c\xff\xc8\xe4\x84\xf6\xbf\x6e\xb9\xf6\xb7\xbb\x36\x2f\x40\xe4\xa4\x38\xc8\x96\x3c\x7e\xa1\xdc\x46\xd8\x14\xa0\xba\xc1\x7a\xdf\xd5\x69\x20\xda\xcb\x43\x33\x1c\xa1\x2b\xeb\x10\x70\x58\x0c\x02\x87\x6b\x98\x67\x1e\x65\x52\x96\x40\xac\x70\x4c\xcd\xc3\xb1\xb1\x16\xd1\x73\xe9\x99\x75\x4d\xb8\xd2\xcf\x9c\x64\xb4\x30\xdd\xf8\x89\xd9\x8b\x0d\x7a\x01\x4b\xed\x74\x79\x79\x56\xf3\xf2\x96\x76\x06\xb9\x33\x7a\x3b\x4e\xfd\x51\x0f\x56\xd4\x8b\x51\x60\x09\x64\x6b\x2f\x37\xa6\xe6\x39\xde\x71\xb3\x06\xeb\xe3\xc2\xac\x18\xcd\xe0\x78\x9c\x18\x1d\xf8\xb8\xc1\xd1\xbd\x4c\x05\x97\x2c\x8d\x69\xc1\xc3\x94\x41\xf8\x13\xdf\xbd\xad\xe3\x0b\x20\x97\x37\x29\x6d\xaf\x0d\x6c\x3c\x24\xeb\x22\xa4\xda\xe5\x0d\xb2\x44\xfd\x44\xf7\x4d\x1a\x84\xe8\xf2\x35\xdb\x8b\xf2\x41\x4b\xd5\xaa\x5b\x54\x8d\xe0\xe3\xda\xeb\x5e\x5c\x64\x9d\x38\x7e\x10\x02\xc8\xd5\x20\xaf\x06\x0a\xaa\x30\x76\xf4\xca\xe2\xc7\x4e\xc3\x8f\xf3\x49\xed\x43\x07\x5e\x6c\x97\x61\x02\x4d\x4a\x1d\x9c\x6b\xc4\x8c\xd4\x1b\xbc\xfb\xdb\x61\x66\x86\x43\xf9\x21\xe4\xef\x0c\x26\xe7\x93\xc0\x23\x14\xc3\xd4\x26\x6c\x55\x05\x03\xae\x72\xa2\xf3\x2e\x9d\x5d\x8b\xc2\x15\x2b\x90\x2e\x61\x8f\x6c\x29\x56\xc9\x5a\xa1\x7c\xa1\x3d\x34\xcc\x00\x01\x2b\x0f\x6a\x7b\xd4\xd9\xde\x01\xef\x07\x20\x44\xf5\x89\xf4\x97\x96\x44\x19\x0a\xb7\xb1\xe4\x29\xa0\xcb\xdb\x10\xe2\x4c\x51\x13\x19\x65\x36\x0f\xb3\x68\x54\xc8\x4c\x19\x02\xfc\x0f\x54\xd5\xf6\x03\xdf\x66\xb2\x45\x11\x8b\x5d\x45\x8e\x8d\x2b\x43\x2f\x83\x15\x50\x25\x88\xfb\x28\x71\x0a\xb3\xdc\x1f\x18\x56\xbb\x44\xe1\xe7\xa2\xc6\xc4\x5d\x0c\x74\x25\x33\xe9\x91\x6a\xa7\xea\xb3\xdc\x63\x17\x20\x22\xa9\xf4\x51\xa4\x8d\x67\x4a\x4b\xe1\xc5\x64\x6d\xb6\x8a\x25\x40\x80\x26\x2c\xef\xc3\x81\x6f\x6e\xdd\x51\x3c\xf0\x57\x03\x45\xe7\x1d\xa6\xe3\x0c\xc3\x3b\xe5\x32\x40\x00\xcd\x6d\x73\x3e\x51\x2e\xed\xf3\xff\xed\x67\x51\x74\xc0\xab\xda\x02\xf8\x23\xd2\xb1\x0b\x93\xad\x9f\x65\x8f\xf1\x44\xc7\xb7\xb8\x2f\x34\x41\xda\xf2\x71\xbf\x6f\x73\x47\x40\xc8\x99\xab\x36\x84\xf5\x34\xf6\x8b\x0b\xed\x41\xea\x46\x44\x24\x6b\xf0\x45\xe8\x89\xc2\xfa\xaf\x0d\xa2\xd7\x5e\xb3\x39\x6d\x75\x87\xba\x2c\xd7\x07\xd0\x6b\xd7\xd5\x00\xe7\x2f\x54\x29\xb7\x6b\x57\x6d\x16\xaf\x6f\x53\x33\x92\x77\x02\x0d\x50\x3d\xa7\x51\x07\x88\xf2\x00\x5d\xba\xa7\x83\x8c\xdb\x8a\xce\xb1\x67\xc3\xe7\x77\x78\xc4\xc8\x0d\x2d\x95\xf1\xd8\x54\xf5\xc0\x67\x01\xc1\x73\x4a\x11\x4e\xa9\xe8\x4f\xf0\xd5\x22\x2e\xea\x63\x23\xb4\x47\xb1\xc3\xef\x35\xc8\xd1\xee\x6f\x8f\x9d\x18\x31\x4a\x5b\x0c\x00\xe2\x93\x9a\x1d\x79\x6e\xd3\x34\x81\x93\x9d\x70\x94\x7b\x75\x20\xc0\x73\xed\xbc\x28\xf3\x67\x7e\x93\x78\x68\xdf\xd0\xc3\x5f\xdf\x68\x8a\xd3\x6d\x42\x3d\x1e\x21\x02\xb9\xe7\xa3\x2d\xf3\x24\x19\x70\x69\x4d\xfb\xaa\xee\xdd\x8f\xe4\xee\x28\xf7\x75\xd4\x8b\x52\x5a\xfa\x18\x84\xb9\xa0\x42\x77\x2e\xd5\xa1\x86\xfd\xba\x9e\x0a\xb3\x49\xbf\x18\xa0\x2c\xc9\xd5\x02\xba\x57\xa9\x1c\x78\x1e\x23\xcb\x02\x6d\xcc\x42\x11\x54\x28\x29\xea\x41\x06\xca\x64\x2d\x6f\xc7\x20\x37\xcc\xc7\x6a\xc1\x8d\x47\x79\x68\x62\x4b\x2d\x7b\x3c\x09\xc8\xc4\x63\xbf\x9f\x50\x92\xb0\x47\x94\x8b\xbb\x58\xa1\x4d\x89\x8a\x74\xc6\xdf\xec\x2d\x5a\x20\x6e\x50\x72\xef\xde\x7d\xce\x4f\x37\xe0\xe4\x8a\xcc\xda\x96\xe6\x6a\x41\xfd\x54\x80\x18\x9b\x77\xee\x73\x60\x97\x30\xe3\xb8\x97\x57\x74\x82\x8f\x4c\xd4\xe4\xe8\x11\xbc\x70\x8e\x4e\x53\xd3\x0b\x19\x47\xab\x09\x72\x98\xff\x91\x4f\x14\x61\x0f\x7d\x02\x11\x12\x93\x18\xfd\x2f\x87\xe8\xa2\xf8\xd8\x85\x0e\x26\xe9\xc7\xd2\x3e\xc1\x93\x3d\xaa\x3a\x34\x47\x15\x99\x7b\x3c\x66\x15\x44\x9e\x3b\xa1\x97\x21\x33\x28\x9b\x17\xf4\xbe\x25\xf7\xfa\xdc\x32\x44\x5f\x4f\x6a\xf2\xfe\x02\xd6\xd7\xcc\xfa\x23\x9a\x2f\xd3\x57\x78\x9f\xc6\xbc\x2f\xea\xb6\x5f\xc1\xcd\xf2\xf4\x04\x05\x1d\x78\xc3\xbf\x35\xf1\x98\xcc\x99\xa9\x22\x98\xbd\xec\xfd\x50\x38\x2e\x8a\xd8\xb2\x92\x3f\x73\xfd\x2a\x20\x0f\xfb\x3a\x69\x89\x7a\xd4\xea\xe5\x3a\x25\xe6\x8b\xfb\xdb\xaf\xda\x35\x79\x75\xcc\xa8\x19\x28\x32\xf9\xb3\x5a\x0c\x79\xfc\xda\x6b\x31\xdb\x50\xbc\x58\x4c\x67\xc0\x9f\x1c\x51\xef\xe4\x6d\x05\x3c\x0f\xd3\x21\xcd\x8f\xa6\x59\xbe\x5d\x11\x7c\x33\x0d\x06\x6e\xee\x27\x8a\x5c\x09\xd4\xcc\x62\x36\xca\x27\x23\xb7\x48\xb7\x85\xf5\x31\x5b\xa3\xf6\xa5\xd9\x16\xaa\xdf\xb0\x81\x93\x46\x7c\xcb\x09\x58\x7e\xa5\x36\xc3\x20\xf6\x02\xac\x25\xaa\xc8\x81\xc7\x26\xa3\xca\x7a\x73\x85\xe3\xd1\x8c\xcf\x15\x6e\x4d\x14\xe9\x1f\x98\xc0\xb0\x55\xb6\x74\xbc\xc5\x5f\xe3\x41\x53\x7e\x50\xef\x2b\x27\xfc\xbe\xea\x91\x87\x69\xb2\x1c\x47\x61\xc1\xf8\x7c\x46\xc0\xd2\x13\xc6\x86\x05\x35\x3b\x32\xa8\x7b\xb5\x00\x83\x1a\xd0\x49\x9a\xad\xd9\x7e\xc4\x45\x3c\x41\xb1\xd0\x8d\x09\xbc\x65\x97\x12\x07\xf9\x14\x5d\x3d\xe2\x7f\x88\x09\x21\x4d\xff\x01\x85\xdc\x4c\x96\xc1\xfe\x0e\xdb\xe3\x1a\x6a\x04\xbc\xbc\x03\x85\x3b\xfd\x31\xea\x75\x02\x7c\x2e\x5f\x1c\x2f\x12\xb8\x48\x99\x77\x2e\x57\x8f\x50\x43\xb7\xe6\xe7\x19\x8a\x77\x11\x95\x0a\x37\xfd\xba\x6f\x6e\x9f\xc3\x24\xd0\x7b\x87\x6f\x66\xd5\x01\x0c\x4c\x1e\x55\x32\xed\xdb\x88\x18\x13\xc1\xd7\x57\x61\xe5\x98\x03\x2e\xf0\x81\x27\xf7\xe8\xe0\xb9\xef\x29\xf1\xd5\x37\x88\xcf\x8d\x71\xcd\xd4\x2f\x43\x5e\x07\x1e\x78\xb9\xa8\xd6\x17\xf6\x73\xba\x7e\x43\x75\x10\xc2\x01\x31\xce\x97\xf7\x8e\xf4\xfd\xb6\x9e\x3a\xb9\x1d\x6c\xa6\x3f\x92\x35\x57\x0c\xd2\x71\x6e\x92\x1e\x87\x2f\x78\x3d\x6f\xe0\xb3\x7c\xd2\x54\x69\xcb\x47\x51\x62\xe2\x2d\xde\x67\x85\x71\x64\x93\x22\xdf\x5e\x5e\xb5\xb6\x27\x30\x34\xad\x8e\x37\x6d\x1b\x13\x0f\x90\x7a\x5d\x95\x95\x5e\x9f\x78\xf0\xfd\x9f\x7a\x8e\xc4\xe1\x28\x56\x23\x41\x08\x3f\xbf\x1f\xf8\x21\x83\xef\x3b\xbb\x97\xdb\x70\x9c\x41\x87\x44\xda\x20\xbe\xe9\xb6\x95\x7a\xba\x18\xe1\x39\xa2\xb4\xb8\xb6\x77\x2a\x10\xc8\x8a\x03\xeb\xa7\x2d\x2a\x38\x39\xe6\xf9\x3d\x9e\x79\xde\x5d\x5f\x16\x0e\xb2\x68\x95\x51\xb5\x58\x83\xf7\x94\xb8\xea\xbd\x9a\x7b\x7b\xe5\x15\xe9\xc0\xcd\xb9\xf2\x7c\xf9\xcd\x52\x9d\xf7\x51\x6d\xd6\xcb\x77\xab\xf6\xc4\x55\x25\xe3\xb1\xb5\xe3\x91\xe6\xb7\x26\x9a\x56\xf4\x53\x14\xe3\xd2\xc4\xc4\xc3\x36\x28\xf7\x18\x4d\x4b\x2b\x8d\x99\x06\x60\xf8\xd1\xa2\x7e\x72\x5a\xbe\x28\x61\x1a\xf2\x00\xde\x67\xe8\x91\x29\x55\xa6\x97\x37\x6e\x04\xbe\x41\xf4\xf6\xaf\xd6\x32\x4b\x58\xbf\x91\x0d\x51\xb2\x41\xe1\xed\x7d\x55\x84\x7b\xbf\x2e\xd9\xb2\xd0\xb6\xbd\xd2\x2c\x13\x30\x79\xd1\xd1\x5c\xd3\x1b\x16\xca\x6b\x5f\xe6\x1a\xa6\x65\x46\x89\x58\xdf\x31\xfa\x1e\x9c\xe3\xde\xc0\xbb\x28\xe9\xc3\x6f\x9d\x50\x2a\xb2\x7f\xa1\x62\x9b\xa1\x1d\x76\x6d\x96\xef\xa2\x27\x2b\x7e\x94\x50\xdb\x6e\x48\xd4\x51\xba\xed\xec\xa8\x18\x17\x58\x2c\x9e\x13\x56\x70\x94\xd9\xa9\xea\x2e\x3d\x98\xe8\xd9\xcf\xef\x07\x5a\x17\x8c\x69\x00\xe0\x54\x4e\xd1\xeb\x10\x4a\x50\xcf\xb9\x54\x98\x6c\x46\xe5\x1b\x50\x3c\xc3\x8b\x3a\x56\xd5\xf4\xf3\x61\x60\x62\x43\xaa\x2e\x33\x6d\x39\x99\x0e\xa1\x30\x57\x34\x21\xe9\x72\x31\x4b\x0b\x5a\xca\x87\x7e\x60\xea\x6b\xf4\x19\x29\x31\xd2\xa3\xe1\xff\x68\x08\x23\x87\xd1\xa1\xc2\x42\xab\x05\x5d\x63\xae\xa7\xf2\x89\x82\xf1\xf4\x4d\x1c\x73\x4e\x0b\xe7\x77\x4f\x39\xc2\x7b\x35\xc3\xb2\x6f\xae\xdd\x8b\xe2\x31\x93\x41\x38\x1a\x65\x2f\xf7\xaa\x0c\x5e\x37\x4e\xd7\x92\x99\xd2\xdc\x62\xe5\x3e\x54\xcc\x03\xf7\xe9\x57\xd0\x08\xfe\x41\xcd\x45\xed\x59\x6c\x87\x69\x3a\xb2\x40\x2c\xb4\x7c\x5e\x7a\x56\xe9\x02\x9c\x9d\x3c\xab\x70\xc8\x1e\x73\x8a\xec\xc0\x4d\xd7\xfb\x76\x29\x2a\xe4\xb8\x33\x8c\x0b\x21\x95\x3e\x5b\x1d\xc7\xb2\x87\x5a\x15\x55\xc1\x89\x6a\xd7\x9f\x51\x33\x5e\xc3\x70\xc5\x26\x89\x51\x3c\x40\xff\x4c\xf3\x00\xfd\x33\xdf\xe1\x2d\xad\x5e\x54\x48\xc4\x89\x75\x77\x4c\x15\x59\x8e\xb9\x90\x6d\x68\x0f\x91\x60\x42\x45\xac\xee\x3a\xde\x1d\x9f\x4c\x1e\x57\xaa\x34\xab\x36\x27\x94\xa4\x63\x1f\xf0\x4c\x04\x81\x6f\x7b\x33\xfc\x9b\x4f\xd4\x60\x4d\x42\xd4\x25\x14\x0a\x79\xe0\x0e\x6c\x1d\x1f\x6b\x51\x51\x26\xc1\x6f\xf9\xb9\xe4\x6b\x6a\xe9\x5f\xab\x52\xd8\x0f\xa2\xa4\xbf\x83\x36\x13\x96\xec\xbb\x81\x02\xda\x5f\x06\x2c\x15\x43\x63\x28\x4f\xf3\x5f\xd1\x6f\xcb\x96\x23\x7f\xc7\x7f\x84\x67\xe0\xba\x77\x4e\x5a\xb7\x8e\xde\xdb\x37\xc7\x18\x05\xf1\x48\xc2\x6d\xde\x72\x14\xf2\xe7\x2b\x5e\xe4\xd5\x68\xb8\x43\xa5\xba\x3c\x19\x29\xe4\xe6\x7e\xae\x84\xc1\xa6\x8e\xe6\xf3\xe0\x9c\x03\x2a\xe1\x75\x69\x54\x8b\xb4\x05\xc9\x1e\x88\xc0\xa4\xac\x88\xd0\xd8\xdc\x64\x96\xa3\x2f\x14\x21\x3e\x0c\x14\xa6\xfb\x43\x05\xd0\xa6\x1c\xa8\x6f\xca\x3c\x68\xd6\x03\x8f\x4e\x69\x19\x04\xcd\x46\x70\x29\xd0\xdd\x95\x7a\x07\xb3\x1d\x25\xab\x96\x01\xdf\xad\xca\xd8\x69\xa0\xca\x4b\xf5\x22\xca\xbe\xb9\xf6\x6a\x1a\xb2\x0b\x60\x22\x79\xc5\x86\xf7\xad\x06\x61\x99\xb6\x8d\x6d\x58\x64\xe9\xd0\xf4\x13\x2b\xe5\x17\xf4\xd3\x8f\x6a\xa8\xf5\xd1\xe0\x19\xdf\x70\xea\xd9\x2f\x8d\x99\xed\x51\xe9\x5b\x97\x3f\xc4\xc7\x1e\x0e\xb1\x6e\xb3\x99\x6a\x95\xab\xe5\x84\x8e\xbf\xab\xa5\x2d\xaf\xba\xd4\xcf\x16\x83\x24\x0a\x29\x02\xc1\x6f\xef\xee\x54\xe2\xcc\x85\x03\xfc\xb2\x2f\xea\x47\xaa\xe5\x1d\x7c\x16\x17\x47\xc3\x51\xd4\x53\xa3\xf8\x27\xd4\x28\xfe\x09\x9d\x0f\x65\x51\x18\x25\xfd\x6d\xb4\x1d\x10\x18\xe2\x4f\xd1\x1b\x83\x10\x3c\xba\x40\x6f\x4e\xfc\x74\x24\x82\x14\x94\x30\xce\x4e\x76\x09\xca\x77\xef\xde\x7d\x9f\x2e\xff\x83\x99\x41\x80\x6b\x40\xa8\xfa\x6c\x47\x61\xbf\x7f\xa4\x29\xea\xce\x92\x2f\x43\xa0\x0e\xc9\x0f\x2c\xb4\x3f\x0c\xbc\xfa\xc3\x03\xda\x7c\x6e\xb8\xec\x25\x29\xb1\x5c\xc0\x52\x43\x60\xfd\x23\x28\xa3\x3a\x08\x8f\x4b\xe5\x7e\xbf\x0c\xd2\x37\x2e\x70\xa4\x83\x44\xe4\x3e\x02\x6c\x44\x34\x8f\x74\x14\xaa\x03\x5c\x04\x12\x9e\xd3\xc2\x40\x7c\x7e\x02\x79\x83\x63\x47\x5f\x38\xc0\xb1\xce\x87\x98\xdb\x42\x2d\x66\x1a\xe8\x16\x2f\xc0\x6a\x2e\x0b\xf0\x7c\xcf\x7f\x00\x5e\x67\xd4\x60\x7f\xc0\x9c\x0f\x4c\xf1\x84\x40\x04\x6f\x60\xeb\xd4\x87\xc9\x70\x3b\x4c\xcb\x0a\xe3\xc3\xe0\x0c\x3e\x51\x74\x32\x7d\x9b\xd8\xcc\xc4\x8f\x96\x3e\x0e\x6f\xe0\xbb\x5a\x9c\x03\xb5\x1b\xf4\xa4\xb6\x10\xca\x10\x29\xed\x8f\xaa\x2e\xc5\x57\xde\xaf\xf0\xd3\x13\x32\x0d\x3f\x9e\x3c\x43\x09\x06\x0c\xe3\x7b\x2a\x00\xdd\x1f\x1d\xda\x5e\xc9\xc2\x5b\x5f\x5c\xe0\x00\xe8\xb7\x27\x95\x51\xb9\xf9\x05\x8e\xb9\x1f\x05\x71\x35\xee\xfc\x5d\xfa\x0d\x61\x03\xaa\x4f\x64\xbc\xdc\x5e\x8e\xfa\x83\xc2\x15\xf6\xf0\x97\x57\x95\xf4\xd9\x55\x1f\xdd\x8f\xbb\xe3\xac\xdb\xd2\x38\x40\x7a\xe3\x02\x10\x6c\xe8\x58\x50\xf9\x39\x82\xc6\x0e\x6a\x0f\x1f\xd0\xc6\xe0\x63\x3f\x17\x97\xa5\xcb\x51\x6c\x67\x5a\x8a\x74\xc5\xcf\xa7\xfe\x9f\x13\x4f\x8e\x59\x1f\x47\x3f\xf0\x62\xfb\xd5\x71\xaf\x0f\x38\x44\xcb\x17\xfa\x4e\xd0\x83\xe7\x63\x15\x11\x65\x36\xb7\x71\xac\x98\x57\x58\x52\x8d\x4f\x6a\x0d\x11\xf2\x37\x5f\x1a\x47\x99\xed\xcd\xfa\x98\x7a\x16\x5b\x11\xc6\x84\xb4\x47\x80\x41\x58\x70\xbc\x68\xde\xc2\xaf\xa6\xf1\x38\x29\x4c\x16\x95\x46\x6f\xe1\x00\x97\x2e\x78\x4e\x8d\x4f\x6a\x91\xd8\xc2\x81\xf6\x0a\x75\x41\xd9\x88\x57\x28\x02\xf8\x44\xa9\x82\xad\x45\x45\xe1\xcc\x25\xc0\xd0\xef\x2a\x8d\x8c\xdb\x1a\x85\x51\x9f\xb7\x5f\x38\xd0\x2e\x32\x93\xf0\x5c\x0b\xef\x54\xec\x41\xd9\xb6\xd2\xe9\xed\x59\x9b\x59\x25\x91\xc6\x0d\x58\xd9\x3c\x1e\x17\xde\x8f\x4c\x52\x28\xbe\x94\xaf\x28\xda\x8f\x7b\x1a\x3e\x7d\xb8\x8a\xc5\xf0\x23\x38\x77\x02\x15\xad\xdf\x52\x2d\xca\xb3\x75\x0a\xdd\x05\x0e\x0a\x5a\xad\x57\x5e\xd9\xb8\x82\xf7\xe1\xbc\x42\x5e\xd8\x38\x4c\x67\xf4\x2e\x57\xe5\x35\xee\xf3\xa2\x83\x7a\x4b\x41\x0e\x72\x09\x37\x5f\xae\x62\xd3\x51\x77\x7d\x43\xf7\xae\xff\x52\x09\x51\xdd\x50\x41\x24\x35\x5a\xcb\x40\xc5\x1b\xf1\x2b\xe0\x65\xe4\x93\x26\x3f\x1c\xa6\x43\x19\x31\x52\x63\xa7\x2f\xbb\xb1\xd3\x7a\x5b\x75\xa1\xcc\x08\x6c\x0f\xed\x09\x51\x57\xc6\x5a\x40\x5e\x76\x49\xcb\x7a\x73\xe7\x1f\xff\x83\x7c\x80\x5c\x5f\xff\xe9\xce\x66\x28\x4b\xb9\x30\x06\x29\xb1\x7c\x76\x65\x03\x38\x85\xb4\xf2\x4b\xa4\x7c\xd5\x12\xe2\x8e\xef\xbc\x8e\x05\x21\x63\x6f\x8e\x3b\xce\x44\x89\x44\x6c\x58\x86\x08\x0c\xf9\xb8\x96\x96\xee\x59\x6c\x0f\x4d\x1e\x8e\xe3\x28\xc1\x72\x63\xbf\x4d\xf6\x43\x7c\xb8\x2c\xca\x6c\xbd\xc7\xe2\x85\x8a\x20\x6c\xc9\x0d\x14\x7a\x1a\xe0\x0c\x23\x90\x48\xe1\xef\x07\x7e\x0e\xf7\xa2\x72\xd2\xe7\x54\xca\x56\x98\x38\xc6\xab\x70\x00\x44\x07\x55\x3e\xa2\xf6\xdf\xaa\x19\xc7\x3c\xd3\x8f\x56\x0f\x20\xb3\x7c\x5c\xeb\xdd\x3f\x47\x6a\x5e\x33\x1e\xb5\x42\x4b\x96\xc3\xbd\x0d\xaa\xba\x89\xcc\x9b\xe4\x0e\xa3\x71\x1c\x77\x4d\xb8\x82\x2c\x43\xf0\x92\xe5\xa7\xf8\x58\x61\x51\x62\x5b\x5a\x83\x59\x7f\x35\x1f\xaa\xab\xf9\x90\xcc\x29\xcb\x7d\x53\x89\x48\xa4\xbf\x15\x1e\xdf\xc2\x94\x62\xdd\x73\x82\xc1\x27\x2a\x9a\x0b\x4d\x1c\x2d\xa7\x59\x12\x99\x9d\x2d\x2f\x96\x00\x7b\x2a\x8a\x1e\xf4\xc6\x51\x25\xfd\x6b\xad\xca\x76\x86\x9e\xb8\x92\x39\x7f\x99\xf7\xe3\x11\x0d\x08\x98\xe5\xd1\x5f\xf4\x2d\x90\x8b\x57\xe2\x1f\x14\xe5\x76\x39\x45\xb1\xc4\xf6\xcb\xa8\x74\xd6\x61\x51\xfe\xc5\x4c\xa7\xa5\x44\x3f\xfd\x70\xd9\x71\x72\x9a\x02\x86\xf1\x37\x95\xa4\xab\x11\x65\x4d\x4c\x17\x8b\xc5\xf2\x83\xc0\x17\x75\x7f\x50\x2b\x29\xed\x9b\x6b\x17\x2c\xd8\xb2\x89\x0b\x9f\x4f\x6a\x26\x17\xa0\x24\x1e\x12\x72\x55\x31\x17\x6b\x1e\x69\xd8\xe5\x2f\xb4\x43\x53\x84\x03\xaa\xbb\x8b\x62\x1d\xfd\xa0\x60\x41\x7d\xb3\xa8\x0e\x82\xda\xbb\x97\x80\x0e\x03\x33\x86\xef\x13\xbf\xa3\x9a\x2d\x97\x15\x78\xa8\x97\x86\x63\x27\x6d\x0a\x4b\x01\x97\xcc\xc7\x6e\x59\x9a\x78\x39\xb3\x79\x98\xce\x78\x1a\x9f\x7b\x81\x2b\x80\x05\x27\x69\x81\x49\xdf\xc1\xa7\xa6\x03\x1b\x47\x61\x3a\x2a\x78\xdb\x02\xcc\x73\x51\x23\x85\x2e\xfa\xa1\xcb\x55\x9b\xe5\xd6\xce\xfa\x70\xf9\x36\x85\x97\x42\x8a\xe5\xb3\x94\x63\x4a\xd9\x64\xd4\x34\x66\x55\x44\xc3\x2e\xff\xa4\x8e\x33\x84\xf4\xad\x91\x4f\x33\xb4\x09\x80\x67\x70\x57\xc0\x13\x03\xc1\xca\x13\xaf\x58\x90\x87\x6b\xa1\xc9\xc1\xb9\xa5\x76\x98\x26\xa1\xcd\x9c\xe9\x83\x3b\x3d\xa2\x2a\xd6\x47\x14\x51\x71\x31\x48\x87\x26\x8f\x92\x68\x46\x01\x73\x2f\xd1\x7e\x15\xee\x83\x32\x16\x95\xca\x85\x34\xeb\x85\x15\x7f\x68\x12\xb8\x2b\x5c\x29\xc7\xb5\x6e\x7a\xc4\xa1\xd3\xb7\x75\x5a\x8a\xf4\xca\x17\xe6\x5e\xb3\x26\x36\x49\x8f\x6e\x16\x35\x95\x23\x4a\xad\x0b\x93\x19\xd2\xba\x6d\x8a\x25\x4b\x1b\xef\xd4\xd5\x79\x68\x53\xc5\x7b\x37\x15\xe8\x86\xd9\x32\x5f\x63\x94\xad\x10\x0a\x2b\xfc\xeb\x2d\x05\x21\x6e\x75\x3c\x51\x8e\x70\x0a\x3c\x49\xc1\x01\x6a\x7e\xc7\x14\xae\x6d\x07\x4a\xae\x4a\xb8\x60\x49\xb3\x82\xbf\x2c\x8a\x79\x2a\x01\xfc\x31\xb6\x11\xab\xf3\x4c\x7c\xea\x72\x31\xf0\x84\xe4\xd9\x2d\x35\x6e\x78\x9a\xc8\x49\x05\x70\xe8\x99\xd2\x0f\x13\x00\x0b\x73\x5a\xb7\xb4\xf6\x34\x55\xf7\xf8\xef\xb5\x46\xd9\x7d\x07\x90\xb1\x87\xcc\x30\x4a\x6c\x86\x30\x45\xd4\x6f\xfd\xf4\x09\xeb\x4c\x08\xd0\x53\x7c\x5a\xf1\x7c\xf1\x3c\x1c\x14\x0f\x07\x04\x7a\x50\xc0\xcf\xf7\xe6\x76\x64\x32\x4a\xbc\x67\x75\x4b\x8b\x9e\x15\x37\x85\xf1\xac\x2a\xca\xb0\xd2\x2e\x7e\xda\x4f\x87\xa4\x71\x99\x2e\x30\x90\x47\xe4\xe9\x95\xec\x47\x45\x28\x2d\x1e\xed\xf4\x40\x2a\x8e\x78\xb1\x55\x59\xe6\x50\x40\x0a\x0a\x6b\xad\x71\x5a\xe7\xf5\x00\x30\x74\x2d\x10\xd1\xef\xea\x78\xac\x7b\x8b\x92\x27\x3c\x4f\xce\x42\xa5\x84\xe8\x5d\x62\x12\x8d\x46\xa9\x20\x95\xf0\xa6\xaf\xe9\x6e\xfd\xb5\x26\x4d\xe0\x32\xff\xeb\x5b\x91\xc5\xc6\x22\xfd\xf7\x8a\x97\xe5\xdf\x2b\x64\x49\x37\x8b\xf2\x95\x78\xbd\x4a\x75\x5b\xde\x89\x30\xdd\xba\x91\xd2\x28\xcf\xa3\xd8\x6e\xd3\x44\x3b\x1a\xc5\x78\xd6\xd3\x68\xfd\xce\xd3\x1d\x9f\x06\x6d\xa5\x86\x28\xf6\xe2\x09\x4d\x55\x37\xb0\xe1\xca\xce\x96\x1a\xbb\xa6\x14\x19\x05\x80\xd3\x78\xb2\x8c\x0b\x99\x78\xb0\xc1\x0e\x4a\x58\x5d\xf0\xe3\x0a\x23\xdc\xf5\x45\xcc\xfe\xaf\x14\xae\xf6\x3b\xa0\xa1\x97\x99\x31\xb5\x53\xbf\xaa\xe2\xa5\x6e\x7a\x68\x1d\x3d\x1b\xd4\x5c\x7e\x46\xc6\x8b\x8f\xdd\x5a\x5f\xb1\x71\xbc\x96\xa6\x6c\x13\x5d\x66\xaf\x06\x90\x5d\xcc\x56\x98\x43\xd1\xac\x2a\xcc\x9d\x56\x73\x5c\xb7\x29\xa5\xe0\x8a\x0b\x79\x73\xc4\xbe\x7f\xa4\x46\x8c\x96\x6d\x96\x45\xb9\x92\x9a\xbe\xad\x64\xcd\x4f\x62\x45\xca\xd0\x85\x7f\xa6\xab\x36\x2f\x60\xc6\x58\x64\x48\x91\x11\xfd\xac\x96\xe9\x2e\x1c\x68\xaf\x99\x2c\x33\xec\x2e\xb1\x69\xae\xd3\x46\xe4\xe3\x4a\x41\x32\x7b\x35\x9b\x55\xef\xfb\xa2\x52\x14\x41\x78\x8b\x7d\x70\x16\x9b\x93\x4f\xd4\xd0\x45\x98\x0e\x47\x45\x96\xc6\x31\xc0\x10\x2f\x70\x77\x64\xaa\xe8\x43\xa6\x8a\x57\xb9\x6f\xa2\x64\x47\xf9\x16\x98\x1f\x2c\x50\xa0\xf6\xfb\xf4\xe6\x85\x38\x4c\x4d\x96\xdf\x53\xe5\xd4\xab\xb8\x90\x4a\xc8\x81\xde\x1a\xb0\x9f\x58\xc3\xdf\x6e\xe0\x8a\x59\x6a\x67\x96\xb8\x2a\x54\x94\xc3\xbb\x8e\x4f\x14\x27\x59\x96\x5a\xea\x26\x20\x54\x24\x59\x4a\x36\x29\xef\x28\xca\xf6\x13\x0a\xbd\x9e\x1b\x68\xce\x80\xf1\x01\x41\xf9\x03\x7c\x7d\x45\x07\x02\x55\x84\xf3\x8d\xd3\x84\x45\x7a\x28\x62\x18\x1e\x93\xb3\xab\xd4\x50\x67\xd8\xd6\x14\xd2\xbf\x87\xc5\xf8\x5a\xe0\x81\xe0\x5f\xd3\x73\x20\xf9\x60\xb7\x9f\x34\xb8\x3f\x51\x62\x54\x40\x06\x50\x05\xe1\xf7\xff\x0e\x66\x4e\x05\xc2\xe4\x07\xfb\x8e\x4c\x14\xee\x92\x78\x04\x97\x1c\x06\xb1\x7c\xdc\x2e\x92\xf5\x7b\x76\xa2\x4a\x81\xbf\x32\xf5\xee\xfb\x93\x1d\xad\x95\x70\x7c\xb2\xf5\xb3\x8e\xa2\x5f\x69\xa5\x8f\x87\xc3\xa8\xd8\xe6\xc3\x83\xdb\x5a\x81\xf5\x34\x17\xbf\x91\xf4\x9e\x99\x54\x04\xc3\x5b\x4e\x9c\x76\xa6\xa3\x8a\x56\x4b\x8b\xf0\x48\x32\x41\xa0\x25\x52\x9e\x52\x0f\x34\x2f\xd6\x4c\xc6\x2a\x87\x0c\x6c\x0a\x94\x4e\xdd\x09\x75\x91\x36\x29\x88\x35\xc0\x53\x2b\x5c\x40\x93\x41\x94\xae\x3c\xe6\x71\x34\x88\x62\xd3\xb3\xf1\x68\x10\x19\x34\x8b\x34\xf9\x2d\x53\x80\x07\xbe\x0e\x8b\x45\x8c\x32\xde\xef\x34\x68\xa0\xef\x6f\x0f\xd3\xd5\x4d\x02\x50\x67\x94\xf4\xc7\xdd\x4a\xd3\xca\x55\x8f\x6d\x7f\x3c\xb4\x2a\x21\x7c\x4b\xa5\x60\x6f\xa9\x2e\xcf\x5a\x19\xd3\xcf\xfa\x22\xe1\x03\xb8\x61\xbc\xd9\x77\xf4\x9e\x44\x1b\x40\x0a\xf8\x8f\xb9\xa4\x56\x78\xe7\x10\x71\x73\x39\x85\x4f\x14\x21\x89\xc9\x23\x93\xcc\x90\x6d\x16\xa6\xa4\x96\x63\x3c\xe0\x5f\x95\x04\xd8\xdb\x4f\xb0\x4a\xcd\xf8\xcd\xf8\xd3\x89\x9a\x4b\xbf\xa1\x6e\xea\xb2\x2e\x89\xa7\x49\x11\x99\x10\xf6\xdd\xd5\x28\x5d\x91\xff\xb2\x1b\x1c\xc8\x8b\x68\x79\x99\xca\x0a\xc0\xb3\x40\xaf\x09\x36\x6f\x3b\xb5\xbf\xb1\x8d\x7e\x32\x51\x73\xcd\xe7\x95\x0d\xb0\x87\x42\x4b\xb8\xdd\xd9\x0a\x46\x94\xde\x15\x5b\x04\x85\xdf\x06\x1d\xab\x30\x83\x54\xfa\x82\x11\xb2\x77\xb8\x4d\x18\x6f\x3e\x6e\x9a\x0c\x09\x07\x36\x89\xe2\x98\xa7\x3a\x61\x4c\x31\xe0\xcd\xc7\xc1\xb3\x55\xf2\x0e\x82\xe5\xec\x9b\x7b\x44\xbd\xcf\xdf\x0e\xfc\x13\xf9\x39\x7d\x16\x0b\x6a\x2b\x04\x12\xb0\xb1\x8e\xc3\x9b\xf3\x09\x6a\x47\x2e\xdf\x73\x88\x96\x4b\x8a\xb4\xc9\x1e\xb2\x43\x7a\x22\x33\xf4\x35\x58\x98\x3f\x52\x6c\x84\x5b\x3b\x1e\xb7\xf9\xb0\x81\x6f\xe3\xe5\xb6\xc9\xf3\x32\x9d\x10\x82\x0c\x31\x1f\x2d\xcf\x80\xa7\xd8\x73\xc2\x34\x59\x1e\xe7\x3c\x25\x23\x0c\x0d\x7f\x4d\x7f\xcc\xc7\xaa\xb0\x30\x48\x93\x59\xdf\xef\x65\x4b\x23\x69\x23\x5d\x2f\x22\x8f\xb7\x95\xae\xcb\x8f\x2a\x13\x90\x69\xbc\xbc\x5d\x73\xaa\x4f\x14\x5a\x14\x38\x34\x25\x83\x24\xfd\x98\x0b\xca\xaf\x7e\x0f\xee\x0c\x1d\xd0\xbb\x9b\xb9\x8e\xcb\xdb\x9f\x9f\x7f\xd2\x77\x8d\x6e\xe0\xcf\xe1\xfb\x7f\x17\x03\x50\x70\x45\x6f\x4f\x94\xb1\x5a\x42\x2f\x04\x65\x77\x90\x60\xba\x18\x6a\x71\x71\xe3\xed\x49\x65\xb0\xc3\x4b\x70\xa0\x2b\x03\x33\xbe\x93\x70\x20\xa2\x8b\xa4\x96\xf0\x0c\xc4\x1a\x1d\xf4\xbd\xbc\x7d\x26\xee\x0f\x14\xeb\xf6\xb6\x8e\x17\x16\x9d\xad\x61\x43\x0e\xce\x69\x44\xae\xf0\x80\x1d\x56\x85\xf6\xc3\x3e\xab\x1f\xda\x2c\x0a\x8d\x74\x10\xf1\xb6\x76\x75\x54\x84\xb6\x6b\xaa\xb5\x05\x86\x29\xb5\xaa\xe7\x15\xd9\x80\x83\xcb\x9e\x04\xb6\xc3\xcd\xba\xbb\xa2\xdf\xc9\x49\x7d\x72\x6e\xa9\xbd\x9c\xd9\xa8\x3f\x28\xd6\xbc\x1a\x33\x2c\xc0\x4d\x5d\x26\xbe\xa9\x6c\x4d\x2f\x8b\x96\xa5\xc5\x2d\x73\xe0\x7e\x97\x9f\xaa\x59\xf4\x97\x48\x30\x4d\x10\xd0\x22\x6c\xff\x21\xe2\x1a\x3e\x51\x73\xc8\x6b\xc6\x66\x45\x1e\xc5\xc6\x2a\x6d\xab\x0b\x13\x45\xc9\x74\xa1\x56\xab\xd9\xb3\xd8\x2e\xec\x21\x13\xa6\x2d\x25\xda\xbc\x59\x3f\x59\x51\xf7\x0d\x4c\x36\x8a\xd7\x1f\xa1\x15\x04\x13\x7c\x8a\x2a\x1c\x4e\xe8\xd8\xc9\x13\x5c\xc3\x65\x3a\xd4\x4c\xf9\xf2\xf9\x13\x64\x0e\xa4\xfd\xea\xe3\xbd\x53\x13\x1f\x39\xe6\x45\x46\xc8\x66\x0b\x8d\xf6\x17\x3c\xb1\x9a\xc7\xf6\x2a\x84\xc7\x28\xb6\x06\x9c\x58\x32\x39\xa8\xfa\x03\x67\x9c\x0d\x5f\x33\x79\x61\x5b\xf4\x92\x35\x73\xa3\x98\xfa\x8a\x95\xed\xd3\xb8\xaa\x88\x33\xab\xb1\x89\xf3\x4d\xfd\xa3\x22\xed\x9a\x30\x4c\x5b\x8a\x8f\xe9\x6d\xc5\xa2\xf1\xb6\xcb\xa9\xe2\xa8\x9b\x09\x8f\x04\x27\x82\x95\xa4\x70\x33\x40\xfc\xc0\x8b\xed\x51\xbe\x1e\x0e\xd2\x38\xed\x47\xd4\xf5\x3e\x38\xc7\x85\x01\xc4\x68\x7c\xac\xa8\x26\x0b\x1b\xa7\x5c\x11\xc4\x7f\x5e\xc7\x1a\xe0\x93\x1a\xa6\x74\x7e\xbe\xdd\xb3\x23\x9b\xf4\xa8\x13\x5f\xe9\xf5\xa8\xfa\x9b\xb2\xdb\x61\xe9\x33\x93\xb1\xed\xed\x50\x02\xb5\x17\x61\x63\x24\xcf\x2e\x2f\x13\x8b\xe2\x87\x70\x71\x82\xa5\xf0\xe1\xe3\x0d\x3d\x83\xf6\x01\xec\x15\xcc\xce\x55\x2a\x48\xf0\xb1\x03\x2b\x8c\x93\x9e\xcd\x8a\x34\x5d\x41\x4b\x14\xfe\x64\x03\xf7\xc6\x27\x7a\xca\x71\x90\x86\x2b\xb9\x1a\x1d\xbb\xab\xfa\x32\x77\x7d\xaf\x30\x8d\x45\xd0\xd1\xe9\x33\xee\x9b\x73\x28\xf9\x86\x67\x35\x4e\xa2\x55\x9b\xe5\xc4\x3f\xe6\xc4\x94\xdf\x55\xba\x89\xef\xaa\xf4\xcc\x44\x39\xd3\xe0\x22\x1d\x46\xc5\x91\x8f\x1b\x46\x9a\x96\xda\xb1\x19\x8e\x52\x06\x42\xc9\x50\xb6\x4a\x14\x4e\x34\x0c\x04\x9a\xac\x3f\x16\x9e\x45\xc6\xe6\x21\x3a\x15\xa0\x9e\x2c\xbe\xf1\xa8\xe7\xe1\xc6\xac\xa1\xdb\xf1\x8d\xc8\x27\x94\xe6\x9b\xc1\xc8\x8f\x24\xb3\x7f\x15\xf8\x16\xf0\x5f\xa9\x62\xcd\x5a\xd4\xb3\xf9\x28\xb3\xa6\xb7\x9d\x6c\x02\xb6\x26\x53\xe9\xc8\xc0\x45\xf9\x40\x99\xfc\x3d\xf0\x15\x42\x1e\xd4\x92\x09\x0d\x32\x10\xfc\xf1\xa0\x81\xcd\x2f\xb3\x79\x91\x8d\xc3\x62\xec\x87\x3b\x84\xa0\xce\xcf\x41\x9d\xae\xe8\x0e\xac\xc7\xd0\x1d\xe0\x78\x15\x2c\xdb\x70\x60\x3b\x3a\x1e\x30\x30\xc0\xf3\x15\x76\x9e\xfa\x48\x89\xc9\xf3\xa8\xef\x0a\xa3\x32\x47\x5c\xd1\xcb\xf9\x28\xcc\x6c\x9a\x84\x69\xdf\x26\x02\xb9\x82\x35\x3c\x0e\x3f\xc3\x27\xaa\x32\x63\x0f\xd9\x70\xcc\xba\x45\xdc\x7f\x0c\xfc\x75\xde\x6b\x28\xdb\xbe\xd0\x8e\x92\x30\xb3\x26\x17\xe2\x0a\x56\x3f\x53\x6b\xfd\x64\xa0\xd4\x55\xae\xd4\x8a\x47\x72\xa5\xfd\x34\x5e\x56\x4c\xcf\x57\x35\xd3\xf3\xd5\x8f\x1e\x0e\x8b\xbb\x36\x2b\xb0\x52\x98\xf1\x2a\xf0\xf1\x54\xbd\xd5\x4e\xcd\x84\x71\x46\xca\x11\x2e\x6c\x42\x25\x50\x18\xba\x7d\x1f\xae\x9f\xba\x89\x0b\x96\x2e\x9e\xa8\x5e\xe3\x4f\x1a\xc5\x44\x7a\xe9\x5a\x52\x44\x9c\xcf\x00\xb0\x71\x36\xf0\x40\xd5\xb3\x0d\x23\x24\xfb\xdb\x36\x2f\x34\x81\x7b\x65\x50\xbd\x81\x08\x60\xa9\xfd\x6a\x1a\x25\x33\xaa\x21\xc1\x74\xbb\x32\xe0\x44\x0f\x9c\x19\x13\x9b\x38\x8a\x09\x8e\x94\x66\x8c\x02\x60\xcc\x50\xe0\x3b\x02\x17\x26\x8f\x3a\x2a\xff\xff\x5f\x69\x49\xd1\x38\x3b\x0a\x1b\x09\xcf\xf9\xaf\x03\x0f\xc5\x05\xd5\x9d\x1b\xd4\x28\x23\x30\x11\x92\xa1\x6d\xc5\x50\x17\xed\x06\x4e\x52\x9d\xd7\x69\x48\xbe\xe4\xf2\x97\xcb\x08\x6e\x11\x03\xfd\x15\x78\xf3\x5c\x5e\xf8\xc5\x05\xd7\xa6\xc3\x7b\x71\x22\x34\x8e\x16\x72\x6b\xa7\xf5\xeb\x9f\xe7\xd4\xff\x34\x23\x5d\xdc\x14\x98\xe7\xda\xdb\x3a\x55\x7c\x97\xd7\xb0\x21\xdc\x68\xb0\x27\x19\x82\x21\x01\x6e\x66\xeb\x54\x71\x22\x3e\xa8\x08\xd5\x92\xed\x11\x72\x1b\xda\x69\x28\x66\x7f\x9f\x6a\x6d\x0c\x94\x23\x41\x4c\x51\x19\xf4\x31\x18\x13\xc3\xa0\x8a\x71\x97\x10\xfe\x4c\x9d\x56\xab\x13\xed\xdd\xdb\xce\x4b\x57\x6c\x84\x39\x82\x2b\x3d\x5e\xba\xfc\xcb\x27\x3e\x42\xfa\x0a\xc3\x57\x42\x48\xe1\xd1\xcb\xe7\x55\xd0\x03\x40\x5c\xd4\x37\x85\x9d\xf1\xb4\x71\x95\xce\x00\xb8\x13\x85\x8c\xab\x61\x69\x75\xc7\x71\x3c\x48\xb3\x84\x2f\x10\x8f\xf4\x4d\xfa\x41\x3e\xae\xc5\xb2\x6e\x2f\xf7\x4d\x94\xe4\xc5\xb6\xf2\x2d\x63\x10\xe2\x0c\xd5\xb1\xd1\xa0\x00\x22\x12\xdf\xc1\x0a\x3a\x42\x44\xab\x78\xc4\x2e\xd4\x6c\x54\x19\x61\x8e\x87\xdd\xd8\x42\x74\xd5\x15\x33\x80\x0b\x15\x2e\x1f\x05\xd6\x35\x79\x94\xcf\x7a\x0b\x78\x84\x3c\xc3\xc6\x15\x65\x08\x31\xaa\xb5\x71\xc5\xf9\xb5\x7c\x60\xe3\x55\x06\x84\x62\xad\x30\x21\x3c\x9f\xe8\xe2\x37\x74\x2b\x09\xde\xc2\x82\x0b\xe4\x93\x44\x7c\xa1\x61\x4a\xc7\x8c\x8b\x34\x49\x87\x70\xf7\xa8\xbe\x00\xc1\xcb\xc7\x35\x64\xc4\x9e\xc5\xf6\xb2\x5d\x15\xc1\x4d\xd1\x43\x69\x79\xb5\x72\x55\xf3\x1c\x27\x51\xb1\x8b\xfe\xae\xc2\x92\xe1\xca\xdd\x07\x7d\xaf\x5f\x29\x24\x30\x77\x38\x96\xd0\xed\xf2\x62\x36\xa6\x81\xda\x50\x97\x78\x7b\xa2\x2c\xba\xbd\xe3\x3d\xe4\x0e\x20\xd0\x51\x30\xf8\xc9\x44\xd7\x52\x9a\xc0\x36\xcb\x59\x0a\x0c\xfd\xfe\x0a\xbd\x1a\x8c\xc0\x16\x8a\x1d\x60\xea\xdf\x9e\x28\xa0\xfd\x39\x55\x64\xfc\x0d\x5b\x3c\xda\x5a\x54\x5c\xef\xf3\xf3\x9c\x58\xec\xee\xf8\xd8\x1f\xd0\x7c\xe9\x06\x96\x06\x00\xfb\xff\x51\x2d\xfe\x7f\x4e\x17\x66\x26\x8a\xba\xef\xb2\xc6\x58\xde\x6e\xc0\x9a\xee\xa7\x52\xb4\x21\x35\x91\x96\xe2\x5d\x7b\x4f\x7d\xe3\x7b\x0a\x0d\x13\x8e\x0b\xd4\x50\xf7\x2d\x79\x18\xa6\x8b\x5c\x2e\x3a\xac\xc8\x72\x94\x0d\x31\x6c\x2b\x14\xa1\xb7\x74\xe8\x73\x51\x75\x7c\xf9\xfd\x09\xd7\x8c\xb7\x71\x4f\x34\x4d\xdd\x0f\x4d\xb6\xe2\xe2\x9c\x26\x07\xf1\xb8\x9a\x73\x58\x8d\xec\x8c\x0a\x61\xce\x6b\xee\x42\xb0\x15\xc1\x34\xdf\x50\xa0\xa7\xe5\x34\x0b\xed\xa3\xbe\xac\xf6\xfa\x44\xcd\x70\xbd\x4b\x25\x5b\xa6\xe9\xd2\xa1\x24\xd4\xb2\xd0\xe4\x3a\x8d\xb8\x1e\x6d\x76\x20\x70\xf1\x78\x6e\xd2\x86\xaa\x90\x7c\xc9\x54\xe5\x53\x8a\x17\xb7\x37\x0e\xe9\x0e\x3d\x76\xeb\x42\xa0\xf0\x97\xf5\xd8\xa1\x74\xbc\xa3\x2c\x7a\xcd\x4a\xba\x8d\x3b\xe4\x48\x85\x4f\x54\x87\x27\x1e\x47\xa8\xb7\xa3\x88\x08\x10\x4d\x85\x0c\x4c\xa4\xc1\x9f\x55\xe2\x26\x26\xb3\x2c\x11\xb4\x4b\x53\xd4\x28\xf9\x9a\xf7\x27\x7e\x62\xfb\x5f\x06\x7e\x56\xe8\xed\xcd\x55\xca\x05\xaf\x16\xe4\xf0\xac\xd7\xe1\x04\x01\x80\x7d\x88\xc5\xc2\x30\x2d\xd8\x79\xa6\x7d\x08\x3c\xb8\xfd\xc7\xc1\xd3\xd5\xca\xcf\x73\xed\x5f\xff\xfc\x4e\x12\xd4\x3a\xa2\xfa\x64\x4c\xe7\x8b\xed\xf8\x7a\xa0\xa4\x87\x98\x19\xc7\x35\xdd\xca\x20\x02\xe1\x20\x18\x70\x10\x33\x3e\x42\x35\x19\xfe\x77\xca\xdf\xc4\xbe\xf9\x0a\xc9\x55\x4c\x92\xf0\xd6\x7e\xee\x6f\x29\x84\xcf\xb6\x0e\x05\x11\x0e\x32\x58\x3a\x08\xd7\xbd\xdc\xff\x1b\x5f\xd4\xb4\x6d\xc2\x1b\x83\xe6\x34\x73\x19\x52\x74\xc1\x92\xc8\xc0\xde\xa2\xf0\x75\x9b\x40\x46\x78\xc4\x8f\xd1\x35\xc2\x94\xdc\x20\x7f\x8e\x20\x7a\x66\x4a\x11\x00\x4b\x67\x07\x4a\x23\x66\x17\x82\x06\x21\xf6\xa1\xd7\x8e\xa8\x01\x63\xc6\x5c\x74\xa4\xc7\x2d\x28\x68\x7a\x8e\xc2\x00\x87\xa5\x86\x2f\xe3\xb7\x8a\x3b\x39\xa5\xf6\x70\x0b\x66\x0a\xf6\x78\xdb\x94\x8c\x33\x7e\xf2\x86\xd2\x57\x78\xe2\x19\x2a\x9b\x21\x13\x46\x1d\x15\x6e\x67\x57\x87\xc2\x2c\x3c\x88\x87\x6a\x6c\xaf\x45\x26\x52\x94\x2f\x11\x4c\x61\x7b\xec\x9a\xb6\x5e\x12\x9b\xf3\x2e\x85\x7f\x12\xec\x52\x15\x56\xa8\x87\xca\xf0\x07\x0b\xef\xbe\x42\x6f\x8c\x6c\x36\x34\x89\x14\x4d\xb1\x73\x30\x40\xca\xc7\x9b\x6b\x8d\x2f\xed\x9b\x6b\x2f\x2e\xee\x52\xc4\x6f\xdf\x55\x46\xfa\x2d\xfc\xa6\x1b\x08\x2c\xdf\x9d\x0c\x04\xb6\x9c\x92\xd2\xcc\x54\x97\x16\x26\xde\x27\xcc\x74\xaa\x89\x60\xb9\x3e\x60\x6e\xb6\x4c\xcb\x57\x8c\xed\x7b\x3a\x50\x36\xfe\x7c\x2d\x31\x27\x16\x20\x9b\x47\x3d\x9b\x84\xeb\x2d\x3d\x06\x71\x56\x7b\xd4\xb3\xae\xb3\x4b\x1c\x25\xce\xc4\x62\x49\xa0\x3f\xcf\xc7\x1d\x6f\xac\x4c\x5c\x44\x43\x93\x45\x48\xb1\x80\x1e\xc4\x6e\x57\x4c\xda\x0b\x1c\x73\x5e\x53\xad\xb8\xe5\x2c\xb2\xcc\x5f\x03\x4f\x35\x4b\x2e\x93\x8f\xa7\x0d\xc1\x46\x2f\x7a\xed\xb5\x75\xd7\xc3\x41\x0e\xf2\x96\x9a\x70\xbb\xac\x60\x85\x37\x6b\x9e\x6e\xef\xde\xf6\x28\x36\xeb\x6b\x19\xb1\x12\xb5\xd4\x68\x26\x57\xc4\xf8\xa4\x01\xb3\xb5\xd8\x1e\x58\x23\x9c\x7d\x32\x3a\xe0\x8b\xc3\xd0\x0d\x15\x6b\xd8\xd0\x57\x2e\xc6\xd9\x4a\x94\x83\x31\x80\x7b\xd6\x78\x63\xd2\xc0\x6e\x6c\xba\xa6\x71\x1c\x25\x5c\xba\xe0\x64\x44\xb3\x85\x9e\xa9\x51\x96\xa9\x01\xe8\x15\x9b\xe5\xdb\xf0\xa6\x01\xc4\xda\x8e\x46\xa5\xf8\x2d\x3f\x9b\xf7\xe1\xc4\x77\x9d\x2e\xea\x07\x71\xa5\x16\xad\xbf\xb4\x70\xa0\xbd\x62\x49\xd8\xfb\xe5\x8d\x2b\xe5\x03\xd8\xb8\x12\x78\x7d\xf4\xd8\x66\x86\x26\x32\x3d\x71\xbf\x2a\x91\x9f\x69\x68\xdc\x52\x44\x6e\x0b\x45\xd6\x72\x9e\xfc\xa3\x34\x88\x1e\x77\xd0\xa8\x2c\x93\xba\x0f\x2f\x24\x5c\xa9\xac\xaa\x26\x30\xad\x89\xd3\xa4\x4f\xaa\xf6\xe8\x45\xff\x07\xa5\xa0\x0f\xe1\x09\x11\x4e\xd8\xed\x4a\xa0\xd1\x6a\x75\x1e\xe9\xb4\x12\xef\x3a\xad\x45\x25\x32\xd3\x1b\x87\x28\x46\xb8\x69\xa9\x72\x99\x4b\x25\xaf\x61\x24\xaf\x6b\x43\x93\x23\x79\x11\x30\x97\x92\x6e\x03\xc4\x02\xaf\xe1\xba\x9a\x63\x4c\x13\xfb\x6c\xf9\x3f\x68\xac\xbd\x8d\x52\x10\xe2\x8a\x3b\xf8\x3c\xe2\xcd\xeb\x88\x7a\x79\x46\x46\x0d\xf6\xde\xa1\x78\x45\xc0\xa1\xe5\xaf\xa3\x25\x7c\x5e\x53\x2d\x6e\xed\x94\xce\x06\xb1\xcb\x43\x04\x35\x32\x77\xab\xa6\xfc\x7f\x01\xeb\x8f\x80\xe5\xfd\x89\xe7\xbe\xc5\x1a\x72\x5c\x11\xa5\x51\x47\x5a\xfd\x00\xad\x2e\xa4\x1a\x3b\x3b\xca\xf7\x70\x2c\xcf\xcd\x57\x72\x57\xcc\x99\x40\x8f\x1c\x55\xc0\x33\x1c\xaa\x23\xbc\xfe\xeb\x89\xc7\x8f\xad\x0d\xd2\x74\x24\x12\xd9\xc8\x05\x5f\x57\x93\x83\xaf\x37\xee\xfe\xcc\x2e\xdb\xcc\x26\xa1\x0b\x92\x14\xef\x8e\x3b\xa9\x54\xba\xd3\x51\x01\xd4\xb7\xa3\xa4\x2f\x6f\x47\x80\x90\xba\xb1\xdd\x8f\x12\x4b\xfa\x38\x08\x12\x8e\x28\xf9\xb5\xff\xe1\x43\xfd\x10\xb7\x82\x09\x1b\xee\x1f\x9d\x57\x64\x6e\x5b\xa8\xe5\x8f\x10\xe5\xcf\x9a\x66\xc2\x88\x18\x4b\x44\x64\x7d\xb5\xad\x35\x55\xd5\xb6\x56\xe7\x59\xdd\xd2\xeb\xc7\xe9\x90\x27\x65\xbc\x24\x30\xcc\xa4\xe4\xc9\xfe\x99\xc6\xa5\x61\x24\xa6\xd4\xf2\x6f\x1d\xe3\x84\x43\x01\xd6\x49\x2f\x41\x81\x95\xae\x39\x9e\x54\x14\xaf\xdf\xc0\x0a\xe2\x93\xca\xd4\x46\x68\x93\x62\x37\x5d\x2f\x9c\xf8\x06\xfa\xff\xae\xe3\xb3\x67\x51\xb4\xb5\x10\xef\x4a\xfb\x87\x16\x0b\x4f\xdc\xd0\x02\x81\x13\xbc\x1f\x78\x5a\x50\x66\x73\x77\x4a\x2a\x5e\x84\x6c\xcb\xd4\xa1\xe3\x4f\xdf\xa6\xa5\x8a\xe3\xed\x18\xff\x90\x01\x53\x5a\xb7\xd8\x81\x7f\xd9\x48\xc1\x99\xdb\x6c\xd5\x79\x45\x44\xa9\x00\x88\xf3\x71\xad\xe6\x30\x3f\xcf\x8b\x2e\x93\x12\x24\xcc\xcf\xfd\x40\x83\x85\xe8\x71\xe0\x7e\xb6\x4d\x1b\x54\x5e\xdd\xa4\x0b\xd6\xcc\xb1\x40\xf1\x18\x1e\xab\x60\x92\x06\x76\xb8\x5b\x09\xe0\x62\xba\x1d\x0b\xf2\xb1\x8e\xe2\xfc\x01\x74\x14\x86\xe7\x49\xf2\xeb\xb4\x43\x7f\xf7\xa9\xa9\x82\xb3\x6d\xc3\x48\x3f\x2c\x07\x53\x1a\x22\x74\xfa\x0b\x7a\x03\x78\x1b\xe8\x7c\x22\xcc\xbd\x1d\xe8\xd1\x3c\x0a\xc2\x59\xd0\x97\xb5\x4d\x1a\xb8\xe4\x5e\x6e\x67\xb6\x6b\x71\x7f\x82\x1a\xf3\xad\xe5\x8b\x4d\x1a\x91\x79\x61\x92\x5e\x17\x7d\x09\x84\xc1\x17\x95\x98\xd1\x45\xa5\x1e\x90\xd8\x3e\x0d\x27\x23\x60\x80\x15\x02\x72\x0c\x2e\x01\x42\x1d\x32\xae\xed\xe1\x12\x51\x12\x0e\xa4\x69\x20\x55\x6c\x2f\x07\x7c\x49\xb5\xcd\xe3\x34\x1d\x0d\x52\xe1\x51\x11\x13\xa2\xec\xfa\x6f\x4f\x7c\x05\xe5\xbc\xd3\x32\xcc\x6c\x91\x31\x14\x49\xb1\xe7\x3e\x54\x2a\x0e\x0f\x27\x9f\x69\x28\x68\xf7\xa2\x3c\xcc\xa2\x61\x94\x98\x22\xe5\x46\x99\x63\x16\x51\x3a\x7b\xda\x84\x65\xf6\xb5\x19\xc5\x52\x80\xf1\x63\x5c\xe8\x2d\xc2\x21\x8b\xfa\xd4\x93\x6a\xe2\xb8\x58\x4b\xb3\x95\xed\xe5\x2d\x39\x74\xac\x0b\xfe\x4a\x5f\xb1\x20\x3a\x0b\x0a\x02\xbd\x13\x31\x2c\x36\xe3\x9f\xe1\xbd\x03\xe3\x30\xd3\x79\xd2\x63\x9c\xf3\x28\x77\x06\x0c\xb7\x7a\x1a\x9e\x88\x4f\x6a\x95\x96\x7d\x73\xfb\xda\xb1\x5d\x46\x15\x1a\x77\x78\x4a\xdd\x6d\x9d\x36\xee\x39\x8f\x4b\xae\x18\x4a\x94\x48\x44\xbe\xb8\x41\xd2\x65\x64\x6d\xd6\xf2\xf0\x60\x94\x22\x45\xf1\xd3\xe7\xce\xc6\xc9\xa6\x49\x45\x47\x35\x52\xce\x05\xba\x17\x38\x1c\xc5\xa6\x8c\xe1\x7c\xa7\xed\x17\xaa\xfb\xf0\x0b\xb5\xe4\x7a\x26\x8e\x4d\xde\xf2\x15\xa0\x1b\x81\xea\x33\xdf\x68\x8c\x10\xcd\x72\x16\x85\x26\xe1\x79\x31\x27\x6c\xe9\x3c\xca\x6c\x47\xcd\x63\xdf\x9f\x78\x39\x72\x13\x17\x36\x4b\xa0\x34\x50\x2e\x07\x2e\x5a\xd0\xf6\x95\x02\x86\x87\x8c\x20\xfb\x11\x8c\xab\xc2\x05\x67\xfd\x59\x15\x11\xdf\x53\x59\xcf\x65\x25\x1b\x7d\x58\x8f\x12\xed\xe8\x78\x6f\x60\x0f\x15\x69\x86\xe0\x4f\xf0\xe8\x2d\xa7\xfe\xf0\x8d\x86\x39\xc7\x76\xcf\xc2\x47\xf1\x6b\x65\x5a\x7a\x45\xa3\x75\xab\x5c\x3d\xb5\x8a\xb1\x03\x17\x0a\x8b\x85\xbf\x9f\xf3\x9a\xb8\xe8\x72\x8d\x17\x72\x7e\x9e\x82\x69\xca\x39\x3c\x35\x03\x13\x50\x20\x7e\xbe\xaf\xb4\x92\x74\x97\x3e\x4c\xc7\x49\x61\xb3\x7c\x1c\x15\xf4\x56\xf1\xd7\x37\x03\xcf\xec\x72\x53\x37\xe9\xcd\xc8\x66\x3b\x3d\x67\x0f\x37\x29\xb1\xa6\x7e\x86\x27\x88\x45\x73\x98\x62\x38\x64\x8a\xf7\x27\x4a\xdb\xf2\xb2\x16\xb0\xb8\x31\xf1\x58\x67\xa0\xf7\x79\x9c\x10\x76\x1c\xf9\xf0\x4f\xf5\x10\x7d\x7d\xe3\x3d\x57\x9a\x29\x13\xc5\x00\xf7\x23\xb2\xc5\xba\x60\x25\x3e\xa5\x99\xf5\x56\x53\xa1\x37\x1f\xa4\x6b\xbc\x53\x90\x61\x32\x52\x97\x4f\x6a\x79\x2a\xb3\x7f\x2e\x8f\x73\xc1\x68\x22\x42\x67\xbd\x10\x3e\xa9\x0f\xe1\xec\x5b\x62\x03\xe1\x78\x45\xb8\x92\x22\xea\xa0\x0a\x3b\x31\xb2\x61\x54\xa6\xac\x56\x8f\x79\x5d\xae\x00\xe0\x1a\x12\xb8\xf5\x32\xa3\x72\x61\x23\x1c\xf7\x4c\x47\xc1\x7f\x67\xa6\x0d\xea\x02\x5d\xbb\x9c\x66\x98\x78\x11\x73\x49\xb1\x9f\xe3\x88\x71\xfb\xe5\x3a\x59\x65\xac\xe1\xed\x1d\x6f\x6a\xfa\x66\xd5\xee\x50\x12\x0e\x77\xe9\x33\x32\x75\x58\xde\x00\xec\xf3\x0e\x44\x32\x12\xd3\x95\x06\x1a\xc7\x37\x27\x4a\x7b\x12\x78\x47\x24\xd8\x4c\xc9\x22\xf3\xb8\x35\xfe\xa9\x17\xf7\x53\x6d\x1f\x3a\x93\x4a\x10\xf7\x8c\x06\x7b\x9d\xa9\x2a\xe2\xa6\xab\x36\x5b\xd7\xc9\x39\x86\x03\x91\xe4\xb6\x3a\xbe\xa7\x71\x6a\xa2\x35\x32\x11\x3f\xfa\x34\xfe\x03\xd5\x02\xfa\xa0\xc9\xf0\xed\x6f\x77\xd3\x71\x7f\x50\xb4\x54\x48\xc5\x61\x94\x34\x4a\x1b\x1a\x4d\x51\x4f\x80\x7e\x52\x44\xf5\xbe\xeb\x42\x8d\x45\x5e\x72\xe9\x30\x1d\x0e\x99\x75\x13\xce\x0c\xdd\x71\x27\x8b\xe3\x47\x9d\x66\xa6\xa2\x92\xf4\xb9\xff\xe6\x1f\xce\x78\x1f\x89\x80\x03\x0f\xec\x82\x16\x1e\x3c\xde\x20\xd9\xf2\xaa\x79\xed\xb5\x75\xfa\x35\xd4\xfb\xef\xab\xee\xd4\xa9\x89\x52\x89\xad\x2f\x53\x6a\xd6\x46\xc5\xa0\xf4\x61\xf3\xf3\x9c\x8d\xa1\x34\xc1\xc7\x0e\x18\x96\xd9\xd1\xb8\x1b\x47\xe1\x36\x45\xcb\xf3\x00\x01\xb7\x44\x2a\x0d\xb4\x98\x42\x81\xed\x6b\x73\xe7\x1d\x7a\x88\xd0\x5e\xdb\x4a\xdb\x86\x44\xf5\x02\xad\x41\xda\x1b\x7f\xff\xe3\x1d\x35\x24\x02\x41\x5b\x04\x09\xdb\xa6\x8a\xc1\x4b\x53\x6b\x9b\xe4\xf9\x47\xca\x5d\x83\xe2\xed\xc3\xc0\x8f\xe6\x60\xac\x02\x9b\x86\x33\x58\x3c\xd9\x07\x6a\x46\xfe\x9b\x9a\x03\x64\x4b\x67\xeb\x67\xdd\x6c\x97\xc2\x3b\x9a\xac\x17\x25\x26\xce\x67\x34\x32\xfa\x56\xa0\x5a\x97\x47\xaa\x63\x2b\x75\x7f\xb4\xd4\x2e\xd2\xbe\xc5\x13\xdf\x27\x1e\xee\xaa\xba\xda\xab\x2e\xe0\xa3\x19\x7a\x22\xb4\x23\x5a\x0b\x18\x63\x16\x32\x40\x2c\xfa\x58\xc7\xf3\xa5\xdc\xc7\xae\x75\x61\x8b\xd3\xfb\x9c\x51\x78\xbd\x1c\x53\xc9\x34\xb2\xc7\x8a\x38\xf4\x97\x22\xcf\xdb\x52\x7a\xf8\x7e\xbb\x15\x69\x61\x62\xe6\xed\x60\xee\xbe\xc0\xa3\xa0\xeb\x1b\x87\x08\x42\x72\x92\x01\x56\xba\x5d\x4e\x93\x78\x0b\x78\x10\x91\xed\x33\xae\xdc\xa9\x44\x95\x37\x27\xab\xd5\xdb\x2d\xc8\x04\xc2\x15\x3f\x32\xf5\xb6\x2e\x2a\xec\xb0\xe5\xff\xec\x92\x82\x54\x5e\x0a\x1e\x57\xc4\x4e\x79\x01\x83\xe4\x38\x7a\x9c\x90\xf6\xb1\x89\xa7\xa6\xec\x5b\x81\x85\xc5\x90\x80\x85\x63\x85\xa6\x05\x1f\x2b\x60\xd8\x28\x8b\x20\x90\xfa\x82\xd7\x6a\xf1\xba\x2d\x8a\x61\xc7\xe4\xb9\xcd\x08\xa9\xb8\x6f\x8e\xef\xee\xcb\x8a\x10\xe7\xcb\x81\xe6\x00\x1c\x0e\xd3\x5e\x54\xb0\x4d\xc4\xaa\x42\xcb\x00\xd6\xed\x2d\x2c\x00\x9e\x8f\x50\x00\xdb\xcf\xa7\x6b\xe5\x3a\xd9\x60\x6b\x8b\x65\x3d\x3b\xa5\x2e\x02\xc5\x76\xcf\x3c\xdb\x51\x5a\xbd\xd8\x93\x52\x3d\x7e\x46\x35\x92\xf2\x51\xea\x45\xb0\x37\xa8\x41\xb9\x71\xe1\x23\x99\x13\x8b\x41\x96\xae\xcd\x2a\x66\x21\xea\xe6\xe0\xc6\x5a\x70\x18\x28\x4f\x5c\x99\x28\x98\xd4\x11\x87\x62\x5f\x8e\xcd\x5a\x3e\xa3\xc6\x67\xef\x4c\xbc\xd1\xe7\x1a\x37\xd2\xc3\x27\x3a\x52\xdb\x5b\x1e\x2b\x79\x16\xdc\xe8\x5d\xc5\x41\x75\x77\xb2\xa9\xc1\x33\x3f\xdf\xfe\x4f\x1e\x9d\xf1\xaa\x8d\x10\x9b\x86\x8f\x61\x92\x12\xfc\xc7\x55\xec\x65\x6c\x0d\xa8\xcb\x22\x4a\xbb\x04\xbb\x81\x52\xe8\x86\xf2\x89\xe7\x83\xad\x9f\x95\x5e\xbd\x8a\xea\x7e\x56\x63\xb8\x2d\x7d\xfb\x78\x9d\x1c\x3b\x7c\xf9\x23\xc8\x95\xf5\x2c\x2b\x2a\x17\xd7\x26\xde\x7e\x9f\x53\x63\x32\x71\xf1\x7c\x4b\x97\x67\x37\x0d\xcd\x7a\x66\xee\x24\x2d\xec\x76\x3f\xe1\x7e\x72\xa2\xa1\x41\x54\xb1\x40\xf8\xf6\x1f\x27\xbe\xd4\x0a\x0a\x40\xb4\x8b\x4e\x51\xc0\x09\x77\x7c\xbc\xe6\x33\x68\xb6\x55\xa1\x89\x75\x83\x4d\x38\xd6\xeb\x44\xf2\x2f\xb7\xfb\xcc\x45\x2e\x14\x43\xb4\xbe\x85\x63\x48\xbc\xcc\x60\x9c\x77\x4d\xd2\xcb\xc1\x78\x2d\x38\x56\xd5\xf7\x67\xce\x06\x91\x4c\xdd\xad\x4c\xdb\xd0\x3e\xa5\x68\x94\x34\x4a\xf2\x3c\xda\x67\x88\xd8\x6f\xea\x75\x78\x41\x71\xd8\xff\x31\xb5\x7d\x64\x4b\xd2\x6f\xc2\x69\x30\x47\x15\xde\xf2\x56\x25\x37\x77\x4e\x33\x92\xee\xc4\xfb\xc4\xe3\x64\xae\x57\xf8\x99\x0d\x72\x6c\xb8\x64\xd1\x7f\x83\xb1\x7f\x62\xea\x27\x14\x4e\x4f\x14\x0a\xf8\x4d\xbc\x27\x69\x25\xa9\x69\x4e\x53\x44\xf9\xf2\x3a\x6f\xcf\x45\xb7\x3c\xfd\x48\xfd\x25\x95\x4d\xf2\xc8\xac\xcd\xb7\x29\x2e\x19\x1e\xb6\x45\x0e\xff\x00\xef\x01\xd0\x13\xaa\xcf\x0b\xe5\x21\xad\x66\x69\xef\x6e\x76\x64\x98\xf0\x5a\xb5\x89\x03\x4a\x3a\x52\x57\x3f\xc4\x7a\x51\xfb\x90\x01\x85\x5f\xdb\x7d\x31\xf9\x3e\x6d\x42\xa4\x1b\x77\x15\x6f\x36\x73\xe0\xf1\x1f\xa9\x8e\xff\xa5\xc0\xb7\x7d\xef\x2a\xc1\x07\xb3\x6a\xc3\x96\x82\x62\x31\xf3\x80\x4c\xfb\xaa\xee\x51\x6c\x56\x53\x00\x87\x84\x39\xa1\xe5\x59\x14\x2a\x15\x10\x9b\xac\xcf\xaa\x39\xd8\xff\x5d\x43\xd8\x6e\x6b\x69\xe1\x63\x13\x0d\xa8\xdb\xd2\xf1\xbe\x76\x39\xb6\x43\x4f\x71\xec\x10\x67\xfe\x3d\xd4\xdb\x3e\xe5\xd6\xca\xec\x30\xcd\xcc\x47\xc3\x86\x3f\xaa\x81\xf3\xea\x38\x2f\xa2\xd0\xce\xa8\x19\x9d\x63\xca\x1d\xbd\xa5\xdb\x7d\x3f\x08\x7c\x5e\x3f\x48\xd3\x38\xea\x9b\x84\xf4\x84\x9c\xfb\xaf\xfe\xa6\x7e\x32\xa6\x1b\xb2\x4c\x24\xac\xe4\x3b\x9a\xdc\x95\x4d\x12\xff\x4f\xa0\x54\x66\xeb\x32\x80\x0b\x07\xa0\x09\x61\x3c\x5f\x99\xa3\x7d\xf2\xf8\xdc\xf7\x9b\x92\xc4\x22\x3d\xc4\x93\xb9\xa8\xf9\x1f\x51\x28\xe0\x23\x4d\x88\xa9\x9e\x5d\xb5\x31\x8a\xff\xca\x2c\xbc\x47\x1f\xe3\xe3\xfa\x38\xc8\x62\x7b\x7e\x9e\xa6\x6b\x99\xcd\x90\x96\x1f\x9a\xa7\xdf\x0e\x94\x5f\xe2\xc1\x59\x04\xcc\x27\x94\xd4\xfc\x19\xf0\x57\xc9\x1c\xa7\x6a\xc4\x1e\x57\x13\x3c\xf7\x26\x3e\xbd\xff\xf3\xc0\x13\xb7\x4e\x1b\x54\xaa\xda\x34\x6c\xda\xb7\x8e\xa0\x01\x97\x03\x38\x3d\x1f\x7f\xc4\xd0\xd2\x30\x12\x8e\x37\x14\xf5\x6e\x29\x44\xc4\xad\xda\x67\x1c\xde\xf6\xd5\xa8\x55\x1a\x2f\xe1\x0e\xd6\x44\xc2\x0a\x1c\x6e\xc6\xc5\x78\x98\xa0\xed\xc1\xe8\x90\x89\x27\x74\xbe\xaf\x52\xbe\xd8\x82\xcc\x71\xc6\x5f\xf1\x43\x45\x99\xc6\xc2\x64\xb0\xe1\x77\x5c\x90\xd0\x1f\x9b\x0c\x52\xff\x12\x4e\x92\x8d\xc0\x6a\xbe\x89\x97\x51\x91\x03\xc6\xca\x7d\x6f\xa2\xf3\x75\xcf\xc7\xfc\xea\xb8\x87\x68\x56\x11\x12\xba\x3e\x5c\x6d\x87\x95\x79\xed\x5a\x14\xc7\x51\xd2\x4f\x6c\x9e\x43\x82\x17\xa0\x51\x70\x2b\xf0\x71\xad\x12\x44\xc3\x20\xf4\x39\xac\xba\x26\xe8\xb7\x47\xae\x59\x93\x17\xdb\x3d\xa2\xfa\x4d\xc5\x88\xcd\x16\xa7\xc2\x10\x8c\xbf\x3a\xa6\xf9\x6e\x6e\xd0\xea\x11\xa8\xa8\xbf\xdd\x81\x30\x33\x08\x77\x71\x79\xd1\x7c\xac\x5e\x62\x91\xe6\x39\x6b\x32\x3a\xaa\x49\x45\xd4\xa2\x8d\xc0\xb2\x41\x7a\x8b\x28\xf4\x7a\x05\xa2\x5c\x2e\x17\x90\x37\xbc\xa9\x80\xfb\xf9\x9a\xb5\xa3\x4d\x86\xa3\xe5\x14\xb1\x2e\x2b\xee\x02\xf6\xb6\xc8\x65\xb7\xd6\xe0\xe3\x8b\x8b\xdc\xe5\xe6\x96\x3e\xd2\xb4\xbb\x95\x6a\x7e\xcb\x09\xd7\x9e\x68\xaa\xcc\x0c\xd2\xb8\x47\x32\x1e\xbe\x2c\x35\xf1\xc9\x01\xf5\xc6\x04\x56\xbb\xab\xd3\xd0\x5c\x59\x36\x79\x31\xe3\xe6\x79\xff\xee\x23\x1d\x7f\x23\x28\xb6\x30\x7f\xac\xca\x4e\xf7\x1c\xd8\x4f\xc4\x34\x4e\x0d\xb8\xbc\x45\xd4\xe0\xee\x4f\x34\xb6\xf0\xb4\x36\xa7\xbb\x3b\x0d\xf3\x12\x51\x92\xa4\xab\x9e\x3f\xd5\xd1\xd1\xbb\x40\xa2\x2e\x33\x5d\x1a\x8e\x7e\x66\x45\x40\x4d\xe8\xf6\xcb\x4b\x15\x6e\x79\x5a\x60\x22\x32\x25\xa5\x77\x88\xba\x0d\xa2\x11\x2a\x99\x88\x18\xbe\x45\xcf\x8a\x61\x86\x55\x28\x92\xa7\xc1\x0f\x07\x3c\xfa\xcd\x6c\x1c\x13\xf5\x05\xf7\x9a\xa4\x74\x7a\x51\x6e\x4d\xce\xc5\x16\x17\xd4\xb8\x78\xfa\x52\xad\x82\x47\x12\xf4\xc2\x73\xce\x63\xad\x81\x37\x89\x8d\x8d\xc7\xe5\x74\x9c\x15\xd6\x62\xed\x3a\xca\xe1\xf9\x05\xd7\x43\xa7\xad\x2d\x04\xa1\x8a\xfa\x38\x8a\x0b\x99\x72\x74\xe4\xb1\xa5\xc9\xa8\x93\xc7\x66\x76\x39\x0d\xc7\x39\x65\x7a\xa2\x24\x5c\xfe\x1a\x1f\xab\x80\x75\x25\x4a\x98\xb7\x4b\xda\x05\xa5\x1f\x40\xd7\x4b\x38\xbc\x00\x87\xb9\x8f\x60\x90\xff\x0b\xdb\x43\x6a\x96\xf2\xaa\x7a\x36\x8f\x32\xd3\x8d\x41\x2d\x85\x3f\xbd\xa7\x9e\xc7\x55\x45\x73\x75\x6c\xb3\xaf\xdb\xb7\xd4\x3e\x38\xf7\xc2\x63\xbe\x59\xf2\xb3\xc0\x8b\xa0\x82\x16\xc5\x75\x5b\x17\x0e\x08\xac\x14\x91\x23\xd2\x0f\xe0\x70\x50\x6d\xbd\x0a\x13\x8c\x56\xee\x0f\xd1\x22\xad\xf0\xd2\x70\xe1\x9b\xae\x0e\xad\xd7\xd6\x94\x5c\x87\x80\x9c\xe8\x35\x88\xb5\xdb\xa5\x58\x19\xb7\xfb\x96\x12\x67\x64\x5c\x21\x42\x55\xda\x95\x8b\xf6\x48\xf1\xe3\x2c\x5d\xb0\xd0\x6b\x54\xd4\x05\x9b\xe0\x90\x5d\x12\xe1\xae\xc8\xb7\xe3\x45\x08\x7c\xbe\x49\x74\xc0\x84\x91\x89\xe3\xf5\x19\x3f\x4c\x8e\x07\xef\xf2\x6c\xf7\xfa\x4f\x29\x84\x75\x64\xbd\x62\x06\xba\x8c\x5c\x19\xe4\x13\x2d\x03\x14\x0e\x6c\x6f\x0c\xa4\xed\x0b\xdc\x21\xb9\xaf\xba\x25\xf7\x55\x30\xdc\xb3\xe1\xf3\xdb\xbc\x42\x0a\x82\x6c\x01\xe6\x7b\x3c\xe5\x91\xc0\x97\xd4\xb8\x66\x25\x13\x3f\xde\x68\x7d\x61\xe9\x1f\x63\xb8\xaf\x51\xf1\xf5\x69\x55\x07\x49\x63\x3b\x5e\x89\x34\xd8\x66\x23\xf0\x35\xab\x0d\x45\xff\x53\x26\x8e\x7d\xdb\x8b\xd7\x1f\xf1\xc8\xd7\xf3\x5a\xdb\xfb\x94\x9a\xe4\xc5\xbc\xb2\xd0\x15\xd1\xfb\x46\xe3\x75\x4b\x47\x0d\x02\x6f\x55\xd3\xe2\x9e\xc4\x35\x19\xf7\xfb\xb6\xe0\x4a\x1d\x92\x86\xdb\x4a\x14\xfd\x87\xb8\x19\x78\x8c\xfb\x0a\x62\xd6\x8f\x5e\x1b\xa6\x28\xf4\xcb\x1c\xb6\xcf\x6c\x8f\xd7\xa2\xd8\x7d\x73\xed\xb4\x6b\xa3\x9c\x50\x4c\xe5\x45\x39\x0e\x42\xe1\x31\x19\x8d\xe3\xd1\x8c\x12\x04\xf8\x89\x82\xea\x7d\x43\x53\x99\x4d\x55\xba\x64\x0f\x99\xb0\x88\xd7\xa9\x2a\x0b\x23\x03\x68\x2a\x1f\x07\x0d\xb3\xcb\x0b\x07\x28\xfd\xc5\x3b\xbd\x87\xa7\x25\x23\x2c\xe5\x0e\x46\xca\x8a\x39\x78\x26\x52\xa3\x2b\xc1\x06\x7e\x64\xda\x72\x75\x01\xc6\x82\xb3\xb0\x20\x76\x23\xdc\xdb\xef\xd1\x45\xc0\xd3\x9f\x20\x26\x59\x44\xba\x4c\xb7\xc1\x23\xe9\x81\xd7\x8b\x63\x2c\x10\x36\xe0\x2f\x02\xc5\x02\x77\x0d\x46\x8d\x3f\x1f\xa8\xc9\xc7\x47\x90\xe2\xcb\x74\xe8\x6e\x45\x06\x9e\xad\xcf\xa8\xf8\xf0\x97\x74\xfd\xf8\x3a\x84\xb3\x32\x1f\xaf\x98\x42\x92\x68\xd5\xc6\xd2\x1b\xe2\xb8\x32\x50\x9a\x97\x77\x7c\xed\xc1\x9a\x9e\x09\x07\x78\x8d\x9c\xfa\x1f\x57\xb5\xe3\xe3\x81\x14\xeb\xd7\x46\xa3\x99\xf2\x71\xc1\x9f\x5d\x52\x0b\xe4\xdb\x58\x56\x22\xf1\xe3\x1b\x97\x66\xdc\x1f\xe7\xc5\x63\x58\x8e\xcc\x29\x1f\xf8\x66\xcc\x2d\x5c\x92\x23\x7f\x9a\x5f\xe0\x7e\xdb\x37\x11\xdc\xf2\x89\xd6\x0e\x38\x36\x51\xb4\x14\x27\xd4\xe0\xf3\x25\x0d\x1d\xfa\xba\x42\xbe\xa0\x63\x84\x4c\xe3\xa2\x62\x9d\xa7\x22\x13\x5f\xe7\xb2\x31\xdb\x95\x5d\xbf\x5b\xed\xe9\x3a\xdd\xb3\xd3\xfa\xbd\xde\xa4\xdf\xc0\xb3\x07\x58\x9d\x8f\x9d\x77\x42\xd5\xc2\x49\x49\xe0\xbb\x77\x51\x25\x85\x8f\x6b\x72\x2e\x7b\x16\xdb\xd1\x70\x94\xa5\x23\x9b\x29\x0e\xa6\xb3\x8a\x83\xe9\xac\x32\x2b\x76\xd5\x66\xeb\xdd\xb4\xb7\xbe\xa3\xfc\x5b\x94\x5a\x8a\xea\x50\xd2\xd2\x8b\x12\x56\x31\xe3\x30\x42\xf0\x0f\x94\x38\xe9\x65\xe5\xf6\x2e\x61\x49\x22\xcc\x7e\xb4\xa3\x46\x4a\x36\x14\xb5\x46\x77\x9c\xb3\x5a\x14\xbe\x01\xc3\x93\x7c\xdc\x44\x2c\xe5\xd6\x23\xa2\x57\xec\xd6\x33\xf4\x29\x47\xb6\xe0\xee\xe0\x3b\x0a\x69\x65\x0f\x8d\xd2\x4c\x58\xf3\x9a\x50\x2f\xaa\xdc\x4d\xec\xb1\x95\xfc\x46\x97\xd5\xfd\xa2\x1c\x9a\x24\x8a\x0d\xd8\x22\x84\xf0\xb1\x7c\x1a\xb0\x8a\xe8\x5a\xe1\x53\x33\xd3\x86\x0a\xd0\x7e\x61\xb4\x6a\xf9\x32\x0a\xf8\x33\xf8\x58\xcd\xea\x53\x0f\xc1\xf6\xa8\x50\xec\xc8\x48\x15\x33\xa9\xea\x37\x9f\x0b\x14\x4e\xf3\x5c\x13\x4f\x2a\x21\x24\x08\x3d\x23\x74\x67\xe5\x55\x6b\xbd\x1f\x49\x2b\x94\xe3\xe9\xf5\x32\x9b\xe7\xdc\xc3\x45\x81\xe4\x1c\x6d\x34\x3e\x0e\x3e\xae\x51\x70\xb9\xcd\x10\x64\xe7\xdb\x4a\xe3\x29\xc0\x70\x5a\xbe\x22\xff\xeb\xe7\x1f\xbe\x4b\x3b\xcb\x31\x80\x3b\xee\xaf\x1f\xd7\x42\xf1\xe7\xdb\x9f\xf9\xfc\x6f\x2c\x7d\xfe\x9f\x2c\xce\xfa\x38\x8d\xe9\x01\xf4\x40\x10\x56\xf8\x3b\x04\xd5\x17\xd8\x9f\x2f\x2d\xc5\x9f\x4b\x33\x6b\xe2\x4a\x6b\xf9\xeb\x9a\x49\xec\xeb\x6a\x32\x85\x86\x2f\xc0\xcc\x25\x86\xa3\xbc\x58\xb1\x41\x0e\x2f\x6b\x46\x65\xf8\x38\x5b\x05\x30\x1d\x14\xd0\x03\x26\x7b\xe8\x33\xcf\x3f\x4d\x0b\x03\x09\xd2\xa3\xd3\x4a\x8d\x6f\x98\xa7\xc9\x76\xcd\x2c\xea\xfd\x05\x6e\x8c\xd9\xc9\xf1\x20\xe1\x23\x50\x32\x11\x92\x29\x4d\x51\xaa\x50\x59\x69\x36\x2c\x83\xac\xed\x5e\x7b\xe5\x0e\x2d\x19\x04\x96\x3c\xfb\x8c\x3e\xe2\x19\xad\xeb\x87\x9e\x16\x7e\xe8\x7d\x3c\x22\xfe\xab\x26\xe2\xe5\xd1\x38\xeb\x8d\x91\x57\x89\x68\xb7\x1a\x04\xba\xac\xca\x66\xbd\x28\x0f\xc7\x79\x1e\xa5\x49\x4e\x26\x07\xae\xef\xff\x65\xec\xcd\x82\x24\xc9\xb2\xeb\xb0\xaa\xc8\xcc\x5a\x7a\x5f\x39\x10\x8c\xa2\x82\x32\x8a\x4d\xca\x1a\x6d\x04\x49\x81\x14\x7e\x22\x50\x95\x83\x9e\x2e\xe3\x64\xa7\x65\x15\xaa\x89\x36\x99\xa9\x5f\x78\xbc\x8c\xf0\x4e\x0f\xf7\x18\x5f\x32\x3b\xdb\xa4\x1f\x9a\x3e\x64\x32\x7d\xc8\xb4\x90\x34\x09\x12\x01\x0a\x26\x02\xa0\x08\x61\x86\x00\x06\x20\x96\xc8\x99\x01\x66\x30\x98\xad\xf7\x65\x7a\x99\xda\x2b\x2b\x33\x6b\xaf\xea\xda\xb3\x64\x7e\xcf\xbd\xef\x5d\x4f\xf7\x36\xc3\x9f\x7b\x55\x46\x84\xfb\x5b\xee\xbb\xcb\xb9\xe7\xb4\x48\x84\x08\x86\x85\x33\x11\xd2\xfb\x48\x0e\xae\xb4\x54\x7a\x9a\xd7\x7f\x31\xf1\x8d\xb2\x90\xb6\x73\x1d\x14\xb3\x47\x24\x5d\xe7\xdc\xc6\x45\x42\x4b\x8b\xdb\x28\x85\x6b\x7a\x44\xc9\xef\xef\xcc\x5e\x3c\xf3\x4c\xdb\x04\x4b\x71\xb2\x12\xd9\xbe\xd3\x74\x54\x0a\x5c\xb3\x2e\x59\xfb\x80\x5b\x5f\x7f\xf7\x31\x2f\x69\xf2\x29\x3d\x88\xa4\xf7\xca\xd7\x13\x84\x04\xf9\x05\x72\x12\x2b\x79\xe8\xf3\x4a\x3c\x73\x0a\x6d\xa9\x98\xdc\x1b\x1d\x45\x4b\x89\xea\x0a\x17\x5f\x3b\x8a\xbb\xef\x4e\x47\x85\x0f\xa7\xb4\x96\x2d\x37\xac\x4a\xc1\x87\x0c\x28\xb3\xda\x4f\xb4\x7e\x9b\x32\xfb\x9d\x07\x3d\xdd\x92\x7d\x92\x7e\x05\x63\xca\xac\x1f\x32\xb1\x34\x3b\x82\x97\xf6\xdd\xd3\x3f\xc0\x19\x8b\x45\x76\x5d\x1b\xac\x8f\x26\x0a\xa3\x72\x6b\xe2\xdb\x7b\xbe\x3f\xf1\x49\x18\x16\x70\x44\xbc\x0d\x79\x2d\x4c\xfa\xa7\x14\xeb\x21\x5c\x61\xe9\x40\x09\xc4\x5b\x5f\xfc\xa7\xbe\xa4\xe2\x9a\x91\x3e\x54\x54\x46\xfb\xd6\x28\xad\x88\x38\xe6\x2e\xce\x32\x09\xcf\x68\x4e\x64\x1c\x74\xc6\xa6\x58\x0a\x2b\x49\xd6\x2b\x3a\xc9\x7a\x45\x71\x96\x67\x63\x1b\x14\x91\xc9\x93\x34\x6b\x79\x5c\xfd\x8f\xe8\x81\xf9\xba\x02\x77\x0e\xad\x06\x9a\x72\x8c\x20\x2a\x37\xaa\x3c\x9f\xd3\xf0\x73\x73\xe4\x7b\x5f\x40\x7d\x04\xfb\xf2\x61\x54\xf9\x60\xbe\x7f\x7a\xcd\xa7\x17\x9e\x82\x9b\x8f\x31\x7b\x80\xdc\x05\x18\xc9\x47\x69\x9f\xb9\x66\xc5\xf2\xfc\x82\xef\x78\x0e\x45\x14\xa9\x03\x96\x2f\xe0\xf4\x3e\x5c\x87\xea\x45\x44\xd7\xdb\x2c\x3f\x2e\x45\x2b\x1a\x48\xb1\x27\x9e\x4a\xed\xaf\x77\x15\x55\xe6\x83\x6b\x8a\x10\xf9\x91\xae\x8a\x5a\xaf\x29\x82\xe1\x8f\x6a\xb6\x65\x6e\xae\x9d\xaf\x06\x09\x92\x08\x2f\xf3\xa4\x22\x7b\xc8\xd7\x4d\xd9\xc3\xcc\x86\xaf\xbb\xec\x21\x17\x0a\x95\x14\xc5\x96\xca\x26\x04\x66\x64\x89\xdf\x13\x51\x27\xd0\xba\x2e\x3e\x72\x78\xbd\xef\x50\x8a\x90\xcb\x7c\x0d\x2c\x3c\x87\xdb\x26\x08\xec\x38\x27\x33\x33\xad\x09\xe8\x8f\x61\xf3\x4a\x74\xea\x23\x29\xb6\xaa\x18\xb8\xd3\xca\x63\x19\x25\x45\x9c\x13\x05\xa1\x0e\xe2\x16\x0e\x1c\x66\x17\xf4\x2a\x3a\xe3\x55\x78\x37\xef\x6e\x34\x10\x81\x7e\x57\xda\x5a\x69\x28\xf8\xaf\x68\x7f\xc8\x75\x9d\x56\xa0\x3d\x4c\xc6\xb6\x3f\xa5\x36\xed\x26\x4c\xb2\xe2\x74\x9f\x65\xff\xfb\x76\xc7\xbb\xc0\xc1\x32\x93\xe9\x4a\xa5\x9e\x9e\x0c\x49\x4b\xa0\xb0\xa5\x0d\xda\x7b\x12\x67\x1c\x51\xaa\x70\x2d\xbb\x79\xe3\x5f\xa3\x0f\xca\x2f\x57\x0a\x2a\x39\xb0\x06\x4a\x92\x64\xde\x49\xbe\x88\xe1\x37\x11\x31\x66\xa0\x4e\x8e\x47\x46\x24\xc7\xc9\x62\xbc\x0b\x3c\xa0\x5d\x0a\xf0\xb1\x68\xb2\x61\x98\xc4\x33\x8a\x1c\xf8\xcf\x61\xc6\xb0\x15\x50\xe5\xc3\x3b\xbc\xa5\x5a\x5b\x4f\x4d\x2a\x62\x9b\x4f\x29\x4a\x8d\x71\x94\xa4\xc6\xe9\x25\x33\xdd\x22\x4d\x85\x50\x2f\x3e\xa9\xb2\xfd\x03\x13\xb9\x35\x3c\xe7\x30\x27\xf4\xe5\x7c\xa3\xdb\xbb\x28\x29\x42\x68\x17\x2c\xe3\x6f\x76\x14\x3e\xf8\xd4\x44\xb5\x5a\xdf\x50\xc1\xc8\xf7\x60\xf6\xe0\x0b\x5e\xd5\x68\x53\x93\x3f\xd6\x12\x82\xc8\xaf\xfe\x14\x9c\x78\x2a\x13\xfd\xc3\xc7\xd6\x5a\x47\x5e\xd4\x27\xf5\xbc\x57\x90\xfb\xa5\x2f\xb1\xfb\x06\x01\x17\x18\x93\xeb\x64\x4c\x5c\xee\xc9\x0b\x07\xdc\x24\x70\x25\x9e\x64\x17\x6c\x05\x3a\xda\xee\x76\x14\x00\xe6\x8a\xca\xa2\x5d\x50\x32\x91\x1f\x81\x2b\x02\x36\xe4\x14\x19\x29\xd8\x23\x3e\x60\x70\xa4\xde\xaf\x13\x7f\x2c\xcc\x97\xa6\xda\x2c\x65\x5a\x79\x70\x13\x07\x29\xdf\xa8\x36\xfd\x91\x35\x59\x91\x5a\xe2\xe4\xe5\x06\x65\x95\xa0\xd9\x40\x7d\x5c\xba\x6c\x3c\x9d\xd4\x69\x98\x53\x91\xfe\xa3\xf5\xac\xf8\x95\xbd\x26\xb5\xef\xdf\xba\xa6\x73\x7c\x1c\xfe\x63\x8f\x6e\xa8\xe3\xa0\x08\xd0\xc5\x8e\xe8\xef\x3f\xee\x7a\x25\xc6\x8f\x69\x0c\xb4\x5a\x20\xcc\xfc\x1d\x85\xd9\xf9\x1b\x70\x04\xf0\x22\x90\xc7\x75\xee\x5a\xf9\x54\x12\x1f\xd2\x2c\x49\x7f\x7b\x83\x4c\x71\x64\xb2\xa1\x6c\x2a\x4c\xc7\xe6\xc4\xdb\x4d\x76\x8f\xb0\x15\xef\x2a\xd5\x2f\x22\x44\x89\xc1\x34\x8f\xf3\xe8\x21\x1c\x54\xb0\xab\x80\x53\xf3\xc7\xb4\x76\xe5\xf9\xc9\x83\x2a\x1c\x79\x00\xd6\x15\x01\xc4\x09\x95\x0c\xdd\xdb\x55\xb3\xc1\xca\x13\xc8\x40\x5c\x86\x9b\x85\xa3\xee\xbb\x18\x68\x04\x1d\xeb\x1d\x85\xb4\x39\x33\xf1\x22\x88\x48\x86\xf2\x27\x30\x67\xc2\x7c\xd1\x00\x96\xce\x92\x91\x5d\x19\x92\xce\xc7\xd1\x03\x8e\x51\xc3\xd3\x46\x6f\xea\x29\x1c\x23\xee\x73\x8c\x64\x9e\x90\xe7\xa2\xd6\x51\x08\x85\x22\x00\x5b\xe4\x8f\x26\x7e\xe3\xfe\x51\x13\x23\x88\x35\x69\x1c\xc6\x83\x06\x35\x61\x77\xe3\x9a\x4e\xc7\x36\xa5\x0e\xf3\x29\xd5\x9b\xd8\xf1\x68\x97\x3b\x5a\x8f\xe7\x8f\x95\xe8\x4c\x38\x32\xe9\xea\xb4\x77\x53\x4f\x76\x54\x17\xf5\x45\xa5\x9a\x78\x4d\x73\xd6\x6e\x29\x37\xa9\x57\xa4\xd6\x14\x41\x6a\x02\x46\x6a\x39\x4d\x75\x47\x95\xbf\x9f\xc2\x24\x6c\xe0\x3b\x0a\x86\x00\x21\x45\x0a\x32\xe0\x2e\x5c\x56\xcd\x55\x97\xdd\x53\xe6\x49\x91\x86\x59\xae\x5a\x23\x71\xa8\xf3\xf5\x9a\x3f\xfb\xc7\x61\xb0\x44\x4d\x8b\x62\x51\xbd\xe2\x2f\xc8\x38\x84\x08\x66\xe7\x16\x78\x69\xbe\x3d\x88\x92\x15\x51\xca\x07\x26\x85\x97\x3d\xdf\x34\x95\xed\xc3\x38\xcb\xc3\xbc\xc8\x2d\x67\x57\x81\xe4\x3b\xa6\x8e\xc3\x6d\xc5\x26\xf3\x99\x4a\x38\xd8\x65\x1b\xe7\xd9\xde\x4a\xbd\xd6\x0f\x36\x17\x55\x1c\x1c\xa6\x74\x15\xa4\x78\x5b\x65\xa4\xd1\xf8\xfb\x96\xa3\x2b\xbe\xda\x54\x58\x0a\x4c\x9a\x4b\x1f\x28\x67\x55\x3a\x3a\xc3\xe2\xd3\x26\x51\x92\x8c\x50\x27\x45\xf8\xbb\x6b\xcd\xd7\xa5\x77\xa9\xee\xe5\xc5\x24\xb5\x01\x95\x00\xdd\x57\xb2\xd1\x63\x25\xdb\x89\xef\x94\xda\xdd\xad\x0b\x80\x44\xe1\x32\xef\x08\xa0\xfb\x90\xba\xe4\xeb\x06\x4c\xc8\xcb\xed\x3c\x35\x81\x18\x7a\x41\x17\xd2\x0f\x0a\xec\xd0\x6f\xb7\x71\x64\x56\xf7\x95\xf3\x2f\x68\xdb\x72\xfe\xf1\x5c\xe8\x23\x10\x1a\x71\xcd\x60\xa9\x09\xe6\x37\x55\x1b\xff\x7d\xa5\xe0\x07\xd2\x63\x11\xea\xf8\x82\x8f\x17\xc2\x51\x11\xe5\x26\xb6\x49\x91\x45\xd2\x29\x0e\xdb\xf3\x29\xb6\x1f\xdf\xd4\xe0\x0c\x47\x0f\xcc\xb5\xc3\xb8\x1f\x2e\x87\xfd\x82\xa9\x9b\x14\x17\x89\x33\xdc\x9a\x2e\xd1\xe6\x79\x64\xb3\x3d\xbe\x44\x7d\x85\xc6\xce\x49\x8f\xb9\xa4\xfd\xb7\xe0\xcd\xbb\x94\xca\xc2\x01\xd7\xbd\xee\x71\x6e\xef\x55\x52\x61\x4b\x36\xcd\x08\xee\xc1\x8a\x23\x08\x2b\xe0\x52\xdd\x44\xe6\x1a\xa3\x72\x1a\x87\x9a\xc8\x75\x78\x2f\xac\xd5\xa5\x25\x8b\x73\x6c\x0b\x67\x2a\x86\xfb\x0a\x25\x9a\xe0\xb7\xad\x63\x2d\xf3\x7f\x68\xf9\xce\xdd\x6b\xbe\xe4\x38\x28\x40\x44\x7e\xf4\x80\xd3\xa1\xa7\x19\x13\x21\xfa\x46\x90\x87\x49\x07\x92\xe9\x96\x8e\x73\x15\x3a\x9c\xaa\xc6\x6d\x71\xfe\xa8\x56\x58\xd1\x00\xca\x0f\xf1\x5b\xc8\x25\xdd\x42\x70\x8c\xa1\x64\xfa\x05\x21\x3f\x2b\x27\x42\x8c\x1d\xad\x4e\xc7\x52\x52\xfe\x2c\x4e\xa3\xbb\xaa\xce\xfc\x3e\xde\x9d\x7d\x66\x95\x40\xdb\x98\xf8\x0e\x95\x8b\x9a\x82\x10\xe7\x17\x8c\xd9\x2d\xac\x0b\xc0\xae\x2f\xd5\xb4\xff\x67\x8f\xb4\xb3\x64\x3c\x0c\xb3\x3c\x0c\x4c\x2e\xe7\x3a\x8e\xde\x73\x13\xd5\xdd\x0c\x27\x09\x27\xda\xd9\x06\xf4\xf2\x7c\x3b\xfb\xdb\x91\xaa\x00\xb1\x3e\xa4\x68\xbf\xed\x8c\x9a\x5e\x98\x03\x95\xe2\x4a\x1a\xfa\xee\x3c\x17\xc8\xf8\xd8\xa7\x32\xfc\xb1\xc9\x66\xca\x18\x56\x1a\xd2\xca\xc7\xc3\xb0\xdc\x56\x70\xcd\xd3\x1d\x0f\x68\xfe\xb6\x06\x0d\xdc\xd3\x92\x3d\xa9\x21\x0e\x6f\xec\xf2\xd6\x9a\xdf\xb3\x17\x74\x13\xd0\x39\x4c\x2a\xd3\x16\x75\x55\xcb\xc5\x49\x7f\xe6\x58\xe3\xbb\x18\x15\x9a\xce\x41\xeb\x6a\xa3\xf5\xf3\x6d\x0b\x9d\x2b\xdf\x18\xfe\x51\x47\x75\xc3\x7f\x54\x83\x63\x71\x90\x49\xad\x4e\x9c\x8e\x82\x87\xc7\x3d\x7d\x7c\x53\xa1\xfe\x1d\x16\xa3\x56\xe9\xaf\x33\x8d\x13\x2d\x55\xa1\x74\x72\x18\xa1\x34\x11\x20\xb1\x12\xd3\x7d\x79\x1b\xfe\xb9\xc4\xf5\x7e\x87\x8d\x4d\xba\x04\x4e\xa9\x79\x4f\xa6\xe9\x00\xa0\xf5\x52\xef\xc2\x81\x76\x92\x86\x36\x76\x2b\x0b\xa8\x51\xf8\xa5\xdc\x7b\x8e\x37\x10\x76\xff\xa7\x54\x85\xd4\x46\xd4\x82\x99\xae\xaa\xfc\xfd\x71\x95\xbf\x3f\xee\x19\x34\xf3\x24\x58\x62\x00\xac\xa4\xca\x68\xe6\x9c\xc6\x8e\x3b\xf0\x2e\x2a\xda\xa2\x81\x19\xd9\x8c\xe0\xc5\x8c\x71\xc6\x29\x29\x28\xfb\xf2\x57\xf9\x9a\x48\x4c\x04\x08\xbd\xf3\xb8\x39\xf2\x62\x7b\x68\xa3\x51\x91\x0f\x5b\x3e\xa7\xc5\x21\x3e\xdf\x28\x34\x6a\x2f\x4c\x46\xb6\x4f\xc8\x32\x65\x13\x51\x8c\x12\x0b\xa4\x44\xa3\x86\x26\x35\x41\x6e\xd3\x0c\xf1\xa8\x93\x7c\x2c\x1f\x14\x76\x80\xa5\x08\xf8\x7f\x34\xf7\xd3\x87\x13\x0f\x9e\xdf\x54\x85\xb5\x7e\xb8\xb8\xc8\x55\x11\x7c\x0a\x44\x15\x7c\x5d\xab\x1e\xcc\x1e\x69\xc7\x61\x9c\xa3\xc6\x0f\x3f\xff\xbe\xf2\xf9\xef\xab\x6f\x0e\x8a\x60\x29\x49\xa6\xca\x1d\xc8\x15\x4f\x7a\x04\xa7\xe1\xe9\x4a\x36\x17\x1b\xd7\xf8\x5f\xa5\x6f\x75\xa7\x73\x70\xe4\xc5\xb6\xc9\x96\x5a\xbe\x2f\xf8\x03\x45\x52\xf5\x41\x43\x2b\xf4\xf3\xed\xa8\x48\x83\x61\x4b\xc1\x1f\x6e\x2a\x01\xe2\x9b\x2a\x18\x1e\x98\x90\xfd\x35\x9c\x7e\xff\x7c\xe2\x4b\x2e\x17\x74\x8f\x91\xe7\x68\xb7\xcb\xa6\x8f\x50\x80\xc5\x03\x68\x68\x45\x48\xe0\xa9\x3a\x36\x29\x5f\xc6\x7e\xc2\x2f\x20\xa8\xe1\x6b\xe5\x68\xf5\x6d\x64\x56\xf7\xd2\x41\xc2\x90\xff\x8e\x6a\xab\x9a\xf8\xea\xf1\x16\xc5\x82\xf0\x44\x79\x13\xc0\x05\x3c\xd9\xf1\x31\x1f\x4a\xb4\xd2\x93\xa5\x19\xb1\x22\xe2\xf1\x9c\x51\xa2\x64\xac\x74\x23\xb2\x98\x64\x03\x71\x40\x9c\xae\x68\xd2\xb5\x9c\xc2\xf8\x85\x8a\x83\x68\x62\x92\x85\x17\xa4\xd9\x69\x7c\x9d\x30\xb2\xf8\x0c\xcf\x6e\x98\x57\x56\x72\x9d\x28\x6a\x03\xd1\x51\x75\x90\xf3\xb9\x39\x46\xe5\xfc\x10\x4b\x03\x21\xce\x3b\x64\xf8\x71\xe6\x7e\xd0\x51\x2d\x57\x50\x15\xc5\xea\x5e\xa7\xf3\x97\xff\x68\xa2\x92\x69\x1b\x2a\xf2\xcf\xd3\x22\xcb\xad\x6d\xb5\x5e\x9a\x77\x04\x25\xaa\xc5\xf7\x6c\x6d\x51\xbd\x30\xd7\x5e\x34\xa1\x83\xf7\x23\x78\x82\xd5\xe1\x6b\x35\x24\x81\xc9\x6c\xb6\x97\x5e\x16\xb3\xf1\xf5\x8e\x6f\xf4\xd9\x50\xbc\x09\xdf\xd3\x84\xb4\x6f\xab\x36\xc6\x93\xf4\xa6\x48\xb5\xde\xd4\x12\x34\x4d\xfd\xcb\x87\x89\x11\xa5\xc8\x2c\xe4\x1d\x50\x56\xb8\x4e\xdf\x86\x63\x63\xa6\xeb\x97\x1c\x5c\x07\x1c\x13\x1f\xd6\x0c\xc1\xc1\x83\xed\x6c\x6c\x61\xcb\x5d\x81\x87\x1e\x18\x6b\xef\xa6\x1a\xe8\x63\x13\xdf\xcb\x33\x28\xc3\x84\x90\x2d\x8e\xb8\x66\x9e\xcb\xe7\xbb\x0a\x04\x97\xad\xd8\x94\x40\xab\x72\x6c\x51\xde\x5e\xce\x2d\x05\xd4\x06\xa4\x8e\x9d\x2a\x1a\x40\xe1\xbb\x6b\x80\x00\x8f\x4b\x1b\x2a\x3d\x4a\x7a\x18\x3d\x50\xa1\xb6\x35\x17\xca\xd0\x7e\x9a\xd6\x97\x83\x78\x94\xd3\x01\xef\x16\x76\x8d\xe9\xf7\x69\x3a\x90\x93\x6e\x8c\xa7\x7a\xb6\xbf\x98\xa4\x7d\x95\xf3\xff\xb1\xce\xf9\xff\x58\xf5\xa1\xf4\xcd\x6a\xb6\xcf\xab\xe3\x1e\xd7\xdc\x75\xa7\x3a\x0a\xbd\x79\xae\xe3\x73\xe7\x5a\xe9\xef\x1c\x9e\x12\x16\xf7\xdb\xd8\x6c\x1a\x66\x2d\xe1\x4f\x13\x9c\x6d\xee\x01\x32\x30\x48\xc3\xbc\x47\x6f\x08\x94\xdf\x34\x21\x5d\x70\xfd\x7b\xc8\x6f\x31\xb1\xaf\x02\xf3\x82\xe3\x16\x98\x22\x2e\x15\x39\x61\x19\xdf\x4a\x82\x6a\x25\xaf\xc2\x8e\x07\x34\xe9\x8e\xf7\x17\xe6\xbe\xd8\x52\x65\x47\xe4\xef\xa5\xe1\x51\x89\xce\x1b\x9b\xe5\x69\x52\x11\x9d\x56\xa9\x87\x53\x0d\x5c\xc5\xb3\xed\x30\x0e\x6c\xec\x9a\x6d\xa5\xd7\x59\x37\x41\xfb\xe7\x78\xee\xe0\x73\xd3\xba\xe4\xa5\x3c\x82\xef\x6b\xae\x49\x10\x80\x08\x73\xef\xe7\xf1\x30\xbb\x44\x11\xa1\xde\xe0\xb7\x83\x10\x1c\xdb\x80\x8b\x92\x62\x5b\x1f\x57\x6a\x64\x91\x0d\x72\xdb\x9f\xf6\x7b\x16\x4b\xd7\x75\xc7\x96\x9e\x01\x12\x16\x17\x3a\x8a\x73\xf5\x82\xf2\x75\x72\xf3\x9a\xcd\xf6\xd1\x6e\xe2\x66\xe4\x8e\x6a\x20\x3b\xa3\x10\x14\xbf\x5e\xa9\x5a\x68\xba\xba\x0b\x95\x46\x9c\x77\x71\x16\xc0\xc5\x3a\xa5\xba\x6f\xb5\xea\xd0\x20\xb5\x36\x5e\x09\xcb\xe3\xb6\x52\xb1\x73\x6c\x2e\x17\x6b\x44\xdb\x2c\x04\x48\x8e\x40\x9c\x47\xab\xb0\xa9\x32\xba\x8a\x23\x59\x15\xec\xbf\x52\x84\x55\x4d\xf5\xab\x13\xa5\xa9\x7e\x55\x79\xfe\x3f\xf3\x73\x7f\x5f\xe9\xfb\x33\x71\x23\xdf\x34\xe4\x3b\x23\x6b\xbc\x9c\x0d\x1c\xe2\xfb\x2a\xff\x7f\x81\x82\x54\xa1\x2b\xa8\x5b\x9e\xf9\xf6\x62\x18\x9b\x38\x08\x4d\x24\xc9\x39\x21\xce\xa7\x1f\x16\x22\x64\xe9\x5f\x35\x41\x50\x64\x9e\x74\x04\xe9\xb9\xd3\x4a\x8f\xe3\xb4\x42\xbf\xaf\x0c\xc3\xb1\x92\x1c\xd9\xec\xa8\x60\xa7\xde\xd2\x40\xfa\x4d\x60\xc1\xc5\x88\xc2\xff\xfe\x0c\x47\x28\xdf\x74\x9e\xac\x9a\x85\x57\x5e\x69\xbf\xf2\xca\xb4\xf2\xf7\x37\x79\x09\x60\xb3\xdc\x9a\x28\x90\xde\x2d\xd5\x1a\xb2\xa9\x96\xef\x28\x59\xb6\xc8\xfd\x3a\x76\xa0\x93\x3a\x58\x06\xde\xd2\x75\x53\xb9\x75\x7d\x5d\xa5\x1a\xc6\x26\xb5\x71\xbe\xc7\xb3\x10\x5d\xc2\xf8\x51\x8e\x76\x15\xdc\x3a\x7c\x4d\x14\x5b\xc8\x40\x9d\x99\xa8\x66\x92\xf3\x4a\xf5\x7d\xa6\xeb\xb2\xa1\x66\x95\xd4\xff\xa7\x14\xce\x75\x57\xd7\xc7\x4a\x9c\x10\x87\x55\xbb\xda\xc4\x76\x1c\xc6\x59\x12\x2d\x4b\x76\x12\x66\xf1\x38\x0d\x05\x5f\xab\x26\xfc\x61\xd8\xb7\x49\x91\xb5\x5a\x5f\xfc\xa7\x0e\xc5\xe7\xfb\x09\xb7\xd4\xbe\x19\xa7\x36\xb3\xa9\x10\x0a\x23\x8c\x86\x26\x13\x5f\xd7\x8a\x77\xe5\xe1\xec\x89\x20\xb0\xb0\xb8\x37\x93\x6f\x54\x6b\x41\x9c\x10\xaa\x47\x35\xe6\x2b\x87\xd0\x77\x53\x8f\xc6\x11\xf2\x02\x58\x31\x58\xff\xa0\x56\xe1\xeb\x0a\x2f\x52\x66\x62\xf0\x33\x6a\x72\x13\xc7\x26\x35\x7b\x84\xfd\xc3\x9b\x78\x2a\x46\xce\x63\x80\x95\x14\x91\xc7\xd4\x2b\xb8\x6b\xc7\x3b\x7d\x8c\xd5\x73\x39\xf4\xf2\xc8\x62\x62\x24\x45\xba\xf3\xab\x2e\xc8\x8d\xc2\x5e\x92\xc2\x65\x11\xb3\x58\x55\x3f\x2a\x7f\x1f\x4e\xd6\xad\x26\x80\x4b\xe0\x5b\x87\x58\x67\x4a\x11\xcd\x7e\x58\x5b\x12\x0b\x07\xda\x8b\x45\x1a\x87\xd9\x50\x86\x4d\xc2\x34\x9f\xba\xf9\xd4\x15\x29\x7b\x44\x00\x29\xb6\x01\x99\xdb\xfb\xd8\xc8\x7c\x53\x97\xef\x3e\xd8\x4e\xa8\xa3\x89\xd0\x5c\xc8\x5f\x1f\x57\x8a\x48\x57\x15\xd7\x7c\x5d\x01\xfe\xe8\x81\xb9\x76\xcf\x04\x4b\x59\x6e\x06\x96\x9c\x21\x18\xfa\xfb\xaa\x38\x78\x5f\x9d\x81\xc9\x38\x9f\xf1\xe1\x1c\x12\x2d\xd2\x35\xe5\x35\xf5\x4f\x6a\x2b\x82\x12\x14\xf0\x93\x0f\x77\xf7\x3b\xb4\xfd\x03\x4a\x1b\x88\xb9\x0e\x44\x32\xd3\x5b\xd4\xc7\xd6\x54\x68\xcb\x1c\xd3\xc8\x0b\xa3\x04\x88\xaf\xdd\xb3\xe6\x88\x3c\xfe\xf0\x29\xa4\xd1\xe4\xab\x14\x21\xd2\x0c\x41\x1e\xf0\x4e\x0f\x75\x35\x67\x4c\x3a\xa6\x82\x6c\x96\x4f\x29\xde\x64\xfc\x80\xee\x03\xc0\xf5\x19\x8d\x8d\x5d\xb2\xe3\x1c\x6d\x61\x87\x0e\x39\x2a\x4b\xcd\x6b\x59\xf3\x9a\xcb\x88\x33\x4b\x58\x82\x83\x65\x8e\xe8\xdb\x45\xf2\xa8\x89\x61\x62\x29\x0c\x96\x24\x45\x84\x46\xff\x4d\x9c\xd7\x7c\xe3\x60\xa2\x2b\x66\x30\x08\xb3\x21\x37\xdf\xa3\xd0\x8b\x53\x92\xaf\xc1\xc0\xe4\x70\x2a\xb9\x09\x8a\xc8\xa4\xac\x37\x22\x0d\xd9\xde\xea\xd6\x85\xff\x8e\xbc\xd8\x8e\x92\xc0\xb0\x02\xb7\x10\xc1\x7a\xbc\xff\x4f\x68\xba\xf1\x32\x9f\x39\x08\xf7\x62\xb8\x0c\x0e\x06\x60\x87\x1e\x22\x13\x8d\xfc\x24\xd3\xcc\x21\x2f\x3e\xb5\x56\x9a\x65\x58\xa8\xbf\x81\x6a\xb3\x68\xeb\x34\x74\xa3\x24\x45\xde\x4b\xad\x59\x6a\xe9\x64\x88\xd2\x53\x5f\xab\x55\xc7\x66\x8f\xb4\x47\x26\xcb\x4c\x90\xda\x2a\xff\xa5\x2b\x64\x6d\x82\x50\x98\x2b\x6f\x63\x78\x7c\x88\x1c\xdf\x50\xfa\x99\xb7\x34\x66\xe3\x1c\x70\x18\x12\x7e\xd4\x59\xec\xe6\x48\xcc\xd1\x99\x00\x91\xe0\x54\x45\xfc\x1b\x4d\x0d\xc2\x87\xdb\xbd\x34\xcc\xc3\x6c\x58\x51\x73\x82\xbf\x24\xda\x08\x0d\x94\x8b\x36\xce\x87\x45\x16\x9a\x6c\x94\x29\x0d\x6a\xae\xb0\xf0\x4d\x73\x0e\x96\x75\x64\x42\x51\x07\x11\xba\x67\xdf\xe8\xf8\xc3\x0a\xf2\xa2\x1f\x06\x9c\x11\x81\x61\xe6\x13\x06\x93\xfc\x36\x86\x88\xc9\x31\x35\xa8\x20\x1e\x4c\x7b\xf3\xc2\x4e\x17\xac\xd5\x9d\x8e\x57\xaa\xde\xb5\xa6\x9d\x8b\xb3\xd8\x49\x9c\x98\x48\xd2\x81\x89\xc3\xd7\x09\x45\x31\xa3\x34\xc9\x2e\xe3\xc8\x70\x2d\x46\xe5\xd3\x48\x8b\x91\xea\xb5\xff\x16\x2d\x71\x49\xc9\x34\xb1\x7c\x8d\x6c\x9a\x86\xcc\x00\x88\xb8\x65\x5d\x8b\xde\xac\x37\x52\xd3\x27\xab\x36\x05\xa5\x82\x64\x33\x5b\xae\xab\x76\x5d\xed\xbc\xd4\x86\xa3\x5e\x91\x66\x38\x4a\xe8\x89\x45\xf2\x95\x9e\x58\x34\x5f\xfd\x09\xfd\xaa\x09\x92\x5e\x4b\x85\x33\xc7\x54\x86\xf0\x98\xc2\x8b\xb0\x12\x92\x73\x52\x5d\x2b\xba\xab\x26\x4e\xad\xf9\xaa\xfb\xb5\xce\x03\x6e\x56\xe6\x5a\xbe\x3c\xb5\xa5\xf7\xe4\x56\x9d\xa0\x6b\xb6\x0c\x20\x4c\x8f\xad\x18\xbc\x28\x98\x0d\xbe\x56\xe1\x3e\xab\x78\xa3\xe6\x84\x59\x66\xe1\x39\xe4\x4f\x76\xad\xd1\x99\xcd\xd0\x41\xb2\x55\x48\xa9\x5d\x52\xd9\x87\xbd\x8a\xa7\x65\x57\xd7\x93\xe6\x0d\x52\xf3\x3a\xbf\xab\x12\x2e\x2d\x23\x52\x97\x90\x76\x52\xcb\x7f\xa8\xd0\xb0\x79\x5a\x2c\x2e\x9a\x02\xec\x55\x72\x80\xd1\x3b\x4b\x3f\xb0\x4e\x83\x05\x14\x79\x3c\xa8\xd6\x19\x43\x2c\xf9\x86\x1e\x5a\xf2\xfb\x34\x9d\x0e\x15\x59\x4e\x27\xf2\xd3\x7f\x42\xdb\x16\x19\xe0\x77\x68\xac\x70\x78\xed\x23\xe8\x86\x82\x88\x89\x4a\xd8\x3b\x13\x8d\x1e\xab\xe8\xb1\xce\xac\x55\x14\xd0\xc6\xa2\x0c\x00\x73\xf4\x09\xbd\x34\x5f\x43\x8e\x4d\x4d\xde\x97\x67\xdb\xcf\xb4\x5a\xcf\x3c\xc3\xb1\x3f\xfc\x2a\xbe\x56\xa9\xe6\x91\xcd\xc3\xa0\x88\xc8\x3f\x75\x18\xbb\x0f\xe9\x1d\xf8\xba\x46\xe6\xf7\x6c\x3b\x37\xd1\x52\x36\x55\xfa\xb3\x42\x56\xae\x2a\xae\xad\xae\x62\x7f\xde\x56\x14\xf7\xfd\x30\x03\xc5\xaa\xab\xfd\x38\xf4\xf4\x9c\xa7\x7f\xf4\xf6\x23\x30\xe3\x19\xef\xe0\x4c\x75\x2b\x8a\x4a\x34\x2f\x8e\x34\xc9\x45\x4d\xc7\x09\x78\x2b\xfd\x43\x3e\x94\xe8\x25\x45\xdc\x07\x4e\x13\x48\x9a\xd3\x34\x78\x7c\xed\xbc\xc6\x71\xb2\x24\x45\x1d\x78\x9a\xb7\x34\x5a\xe3\x56\x23\x51\x60\x56\x8c\xc7\x44\xb5\x77\xd4\x89\x4d\x4d\xbc\xdb\x78\xdc\x45\x79\xbd\x72\x0d\x47\xa1\x89\x85\x15\x49\xa4\x4e\xe8\x17\x70\x6e\xdf\xe9\xe8\xce\xb1\xda\xcf\x1d\x3a\xd4\x0e\xe3\xe5\x32\xf0\xa0\x6c\xdc\xac\x57\xce\xf1\x4d\x5e\x48\xd2\x4b\x9f\x67\x53\x6f\x67\x64\x5f\x0b\x65\x4f\x33\xfa\x5e\xe9\xd6\xff\x50\xd3\xec\xd9\x34\x0f\x17\x29\x18\x00\xd0\x0f\x0f\x76\x5b\x57\x58\x4f\xab\xee\xe4\xaf\x2b\x2d\xfc\xad\x89\x8f\xb6\x06\x45\x2a\x0d\xa8\x92\xdc\xa5\xf7\xe4\x9b\xa6\xec\xd9\x38\x4d\x02\x9b\x81\x59\x10\x1b\x7e\x5b\xf5\x79\x5f\x54\x29\xe4\x0b\x2a\xc2\x19\xdb\x71\x16\xc2\x7e\xc2\x65\xfa\x09\xfd\x21\x5f\xd7\x0e\xc3\x85\x03\x54\x15\x29\x37\x00\x0e\xc3\xf2\x1d\xa5\x35\x8a\xde\x91\x6f\x94\x6e\xca\xd0\x14\xd1\x8c\x22\xa4\xe1\x03\x87\x97\x22\x19\x60\x61\x21\x6f\x7d\x79\x56\xfe\x88\xbc\x25\x2e\x13\xeb\x9c\xf3\xb0\x48\x7b\xd0\xa8\x96\x04\xf2\x3b\xba\x61\xf6\x1d\x17\x32\xac\x0c\x13\x4f\x1a\x0f\x74\xdc\x09\x85\xdf\x3e\x51\x8b\x61\x0e\x1e\x84\xd4\x06\xbf\x15\xce\xea\x8f\xf4\xc1\xfd\x91\x62\x25\x5d\xb4\xfd\x3e\x11\xc5\xb9\x5c\xed\x71\x95\xa4\x3a\xae\xa8\x9f\x02\x33\x0e\x73\x13\x0d\x40\xbd\x79\x54\x34\x28\xfe\x60\xe2\xe1\xb6\x7f\x80\x96\x7a\xde\xc6\xd1\x73\x53\x94\x09\xc4\x0a\xdf\x9c\x78\x97\xf0\x82\x26\xc1\xb8\xd7\xe4\xc4\x55\xe8\x18\x90\xb2\x07\x62\x86\xaf\x4b\x2f\xda\xe9\xd9\x04\x09\xc3\x6d\xc2\x24\x66\xbd\x42\x9c\x36\xa7\x70\x0e\xf1\x4d\xa5\x5e\x6a\x97\xed\x9e\x8a\x88\x8a\x3f\x47\xde\xec\x78\x40\xd8\x1d\x00\xc2\xe0\x1f\xde\x9c\x28\x1e\xb3\x9b\xa4\x24\x21\xf1\x90\xa2\xbc\x8a\x4c\x9c\x81\xd8\x0b\x4e\xf2\x31\x54\xf4\x11\xb0\x9c\xc3\x13\xc1\xe4\xff\x99\xd2\x78\xfc\x08\x3f\x04\x67\x18\x5e\x12\x0a\x20\x6f\x63\x59\xb0\xa4\x82\xab\x43\x0f\x52\xb3\xec\x08\x9e\x9c\x22\xa0\x57\x07\x54\xac\x48\x03\x9b\x3f\xe9\x51\x82\x67\xab\x82\xf6\x9e\x8f\x82\x23\x0e\x58\x96\x27\x49\x06\x02\x47\xcc\x65\x3c\x9a\x6b\xe5\xfb\xa5\x2f\x39\x7c\x9d\x0f\x09\xd9\xd9\xc5\xfc\xb2\x2b\xca\x8d\x77\x04\xd8\x97\x86\x2f\x95\x30\xd8\xa4\x14\x8d\xe4\x83\x29\xf4\xe3\xd4\x32\xeb\x4e\x48\xe5\xad\x3c\xf9\x9c\x1c\x5b\x39\x96\xb0\xde\xdf\xed\xf8\xee\xfe\x29\x4a\xe2\x20\xcf\xfc\x40\x93\xca\x41\x31\x1e\x5a\xb3\x5c\xe1\xf7\x38\xa1\xdc\xde\x13\xb5\x3c\x2e\x89\x12\x9b\x20\xb0\x91\x4d\x59\xde\xdc\x05\x71\xbf\x83\xd7\xe0\x1b\x55\x10\x8d\x4c\x3f\xb4\x50\xd4\x87\xa3\xd4\xea\xfa\xb4\xfa\x75\xac\x7a\xe1\xf0\xa9\xab\x69\xb7\x17\x4d\x6c\x72\xe6\x6d\x71\x0d\x6c\xbe\x99\xad\x91\x09\x3b\x89\x56\x6d\x26\x5d\x6f\xdc\xad\xd8\xf1\x00\x07\xdd\xff\x9e\xdb\x74\x60\x63\xa0\xb2\xe0\x27\xdf\xa8\x60\xae\x2b\xe2\x09\x0d\xb9\xaf\xd4\x46\x36\xf6\x87\x38\x1a\x5b\xae\x28\xe6\xe7\x2b\x0a\xdb\x1e\xc6\x59\x91\x12\x85\x79\xb9\x42\x45\x56\x9a\xe0\x3f\x7c\xd3\x00\xe4\x9a\x2d\xbd\xc9\x65\xbb\xaa\xce\xd4\xf3\x4a\x7e\xe2\x7c\x23\xd5\xb5\x97\x24\x70\x48\x99\x05\x51\x03\x40\x4b\x09\xf3\xc2\xd5\x7e\xf0\xd0\xa1\x76\xdf\x2e\xda\x38\x43\xb0\x28\x9d\xfd\x6a\x9a\xde\x9a\x3c\xad\x79\xaf\x93\x3c\x04\xf1\xed\x0c\x8d\x00\x97\x5d\x94\x44\x11\x07\x48\x38\x77\xce\x2a\x9e\xb6\x6f\xeb\xc2\xdd\x07\xce\xef\x08\xe3\xa0\x48\x81\x64\xe0\x5c\x29\x0c\x04\xb6\x27\xf7\xbc\xd6\x9b\x39\xc7\x69\x32\x0c\x7b\x61\x8e\xa4\x1e\x6a\x14\xf0\x39\xf9\x7a\x22\x81\xf9\xc0\xe6\x8c\x94\x10\x20\x72\x8d\xa4\x7f\x9e\x6b\x8b\xeb\x93\x9d\xc5\xf6\x2f\xcf\xb6\x7b\x06\x9c\x64\x4d\xca\x0d\xde\xc4\x24\x61\xb4\xbf\xfc\x2b\x6c\xc0\xaf\xe2\xb1\xe1\x1a\x5c\xd7\x8d\x6c\x28\x63\x73\x01\x77\xa2\x42\x50\x70\xb9\x80\x33\x1e\x8d\xfb\x12\x9b\x28\x35\x86\x1b\x9d\x4a\x6b\x88\xe3\xc7\x0b\xd3\x91\xb8\x56\xb0\x3f\x27\xb4\xa1\x66\x3e\x34\x7c\xea\xd6\xc4\xa7\xe2\xe2\xd8\x2d\x65\x18\x67\xd0\x82\xf2\x75\x0d\xc7\x33\x7b\xa4\xbd\x6c\x42\x38\x33\xf0\x4c\x81\x4a\xe5\x6b\x8f\x9d\xb5\xe9\x28\xcc\x33\x90\x63\x89\x46\x5d\x05\x48\xa0\x1c\x38\xf8\xcf\x70\x9c\xf6\xb8\x34\xf5\xa2\x89\x83\x70\xb1\x88\x14\x81\xd3\x1b\x8a\xc0\xe9\x0d\x9d\x2a\x2f\xb2\xa1\xed\xef\x51\x64\x4b\xa0\xee\x73\x7c\xf1\x1e\x5d\x7e\x01\xd8\x68\x86\x60\xaa\xd3\xf4\x82\x82\x40\x9e\x9f\x68\x56\x9c\xd4\x3e\xaa\x64\x0b\xde\x9f\xf8\xc2\xeb\xc3\x14\x65\xca\x71\x45\xbf\x82\xa5\x07\x6e\x54\x2c\xe6\xd2\xfa\x49\x3d\xf2\xb3\xaa\xf5\xc3\x74\xb1\x96\x25\x2a\x9d\x5c\x87\x56\xed\xd1\xef\x76\x3c\xcb\x2f\xb3\x77\x0a\xea\x8b\x5e\x05\x56\x67\x03\x83\xa8\x5c\xe2\x59\x17\x44\x7b\x47\x27\x1c\x99\x41\x18\x63\xa3\xe3\x7f\xdf\xa0\xf3\x87\xaf\x55\x1f\x6c\x14\x7e\xa5\x08\xfb\x61\xbe\x3a\x43\x3f\x22\xbc\xca\xe5\x07\x05\x45\xdb\x7a\x61\x6e\xfb\x0d\x3a\x48\x15\x05\xf3\xbc\x03\xec\xfa\xe0\x38\x2f\x17\x43\x0c\xf0\xcf\xcb\xce\xb7\x53\x69\x8b\x77\x74\x8b\x76\xbf\x08\xa8\xad\x6c\x4a\x85\xcf\x67\x27\xbe\x3d\x1d\xf5\x43\xe9\xcc\xd5\xee\x4c\x98\x64\x14\x32\x71\x3a\x80\x2c\x12\x3c\x81\x6f\x6a\x3d\x93\x4d\xfc\x34\x2a\x7a\x77\x54\x1f\xf0\xee\xee\x23\x4a\x09\xdb\x2c\x59\x04\xc3\xec\xde\x74\x6a\x3c\x8c\xa2\xc0\x5c\xfe\x8e\xa8\x6f\x57\xf5\xbc\x7d\x11\x97\x25\x24\x30\xf3\xff\x0c\x76\x90\x89\x97\x3b\xbe\x2b\x79\x0b\x8b\x48\x25\x98\x5f\x76\xd2\x75\x3b\x73\x60\xa5\x83\x98\xc4\x41\x32\x0a\x73\xc3\xb9\x7a\x6c\xfc\xb7\x3a\xbe\xd3\xf4\xad\x89\xe2\xc7\xef\x17\xc1\x0e\x19\xe2\xbb\x5a\xa4\xb6\xae\xa1\x40\x5c\x27\x51\xc1\x89\xb2\xed\x37\x68\x82\xb7\xdf\xa8\xf9\xaa\x0b\x07\xda\x61\xdc\xb7\x3d\xf7\xed\x48\x13\x5c\x57\x4a\xd9\xd7\x6b\x61\x4e\x79\x6a\x0d\x8b\x78\x90\xae\x6a\x26\x05\xc4\x36\x7c\xdd\x40\xd8\x8f\x0e\x71\x82\x4b\x60\x90\x3f\xd5\x52\x37\x40\x45\x60\x5c\x4f\x56\xbc\x06\x7a\x4f\x41\xd0\x3c\xe6\x8b\x3d\xd4\xec\xdd\xd7\x74\xcf\x0f\xad\xf9\xc6\xce\x87\xba\x4a\x32\x32\xb3\xfd\x87\xbc\xaf\xfa\x2d\xaa\xee\xe0\x54\xda\x43\x09\x5d\x64\x3d\xfe\x47\xcc\x2d\xb6\xc4\x9b\x34\xb7\x88\x7c\xfe\x4f\xd5\xc6\x77\x4f\xf7\xfc\x5c\x82\x49\xe2\xaf\x02\x24\x48\x58\xed\xc8\x35\x75\x7d\x2a\xe5\x8b\xe2\x0b\xbe\x41\x69\x23\xb8\x7d\xdf\xea\xa8\x43\x40\x22\x1e\xac\xc7\x2d\x9d\x1c\xdc\xea\xf8\xa4\xef\xa2\x5d\xd9\xa7\xa8\x19\x8e\x63\x71\x8b\x54\x93\x27\x5c\x38\x4d\xbf\x03\x0b\x39\x4d\x2a\x70\x4e\x13\x72\x41\x02\x8c\x37\xd4\x40\x5f\x9f\xa8\xf4\xfd\xfb\x2a\xbf\xb4\x62\xcd\x92\x65\x31\xe7\xe7\x79\x22\xae\x28\x10\xd0\x15\x05\xb9\x34\x71\x5c\x98\x68\x6f\xcb\x09\x93\x73\x4b\x2d\xf7\xde\x74\x54\xf5\xec\xba\x16\x9d\x43\x48\xc8\xec\xd6\x13\x8f\x41\x6b\x75\x55\x58\xb1\xa9\x59\x66\x06\x83\xd4\x0e\x0c\x4b\x3f\xc3\x08\xcc\x28\x9a\xae\x99\x9a\x13\x3d\x37\x27\x39\x08\x1e\x67\xec\xdb\xbb\x1d\xa5\x40\x7f\x77\xf2\x74\x9d\x76\x65\x6e\x6e\xfe\xa7\xc9\x6d\x17\xa1\x40\x78\xf7\xcc\xaa\x8a\xe1\x77\x43\xfe\x8b\x2f\xf1\xfa\xb9\x07\x85\x5e\x27\x08\xb3\x70\x80\x7d\x88\x4b\x24\xe8\x09\xdc\xc4\xbb\x6c\x74\x04\x95\x40\xab\x89\xcf\x0e\x98\x10\xe6\x59\x23\x44\x27\x6a\x93\x5b\x1d\x1f\x8f\x80\xb1\x90\x33\x48\x48\xf2\x3b\x51\xbb\x72\x70\xb1\x15\xf6\xac\xa9\xcc\xe0\x69\x32\xfb\x4e\x3e\xb2\x9c\x0f\xa0\xd6\x77\xaf\x91\x73\x0b\x0b\xfc\x2e\x0e\x5e\x54\xaf\x31\xd9\x58\xca\xdf\xa0\x68\x46\x54\xb9\x7d\x09\x7d\xcf\x9a\xd2\x12\xfa\xde\xc4\xd3\xb4\xb2\xf2\x2d\xd2\x5f\x97\x54\x93\xcc\xd0\x14\xb1\xa0\x20\x34\xcd\x0a\x5f\x37\x45\xd5\xa9\x0d\x07\xde\xe9\xe1\x8c\x9a\xea\x1a\x3b\xe3\x52\x37\x83\xd4\x9a\xdc\x66\xf9\x34\x8d\x09\x8d\xd5\xbf\x7d\x1c\xe0\x7d\x4c\x15\x28\xc3\x91\x39\x9a\x59\xf3\x95\xb4\x0b\xce\x0f\x4a\x4d\x9e\x3b\xf4\x81\x1b\x7a\x57\x22\xde\x52\x05\x83\x7f\xf4\xb3\xff\x45\x4b\x13\xba\x94\x6f\x2f\x7c\x2e\xfa\x94\x8b\x92\x9c\xd0\x52\x92\x7d\x2d\x67\x02\x95\x20\xee\x12\x40\xcc\xf3\x16\xc2\x33\x97\xbc\x75\xbf\xf9\xfd\x89\xef\x37\xba\x4f\x5d\x8c\xf0\x7c\xd1\xfe\x20\xb0\x1f\x1f\xc3\x8c\xd3\xa4\x87\x2c\xf8\x82\x00\x3c\x7f\x8b\xac\x02\x5f\x57\x32\x0a\x8b\x61\xfe\x98\x57\x45\xfc\x06\x16\x00\x96\xd6\x77\x15\x76\xff\x7b\x70\x62\x71\xee\xac\x77\x54\x91\x74\x9b\x16\xb6\xc8\x18\x28\x10\xd5\xa6\xd2\x58\x63\x7e\x54\x24\x3a\xdf\x9f\x78\x5f\xe9\x32\xad\x4b\xbe\xc6\xea\xc5\x31\x0f\x12\x19\xfc\x07\x74\x79\x71\xc6\x6e\x76\x74\x3f\x31\x92\x14\xb0\x6a\xb7\x1b\x39\x9c\xc6\x1c\x07\x4f\xf9\xdc\xcf\x3a\x06\x1a\x2e\x3c\x42\x70\x56\x90\x9e\x68\x77\x22\x0d\xc7\x2d\x95\xa8\xbc\xac\xd0\xc4\x97\x9b\x9a\xba\x83\x94\x9c\x5a\x0a\xa3\xc5\xf3\x6f\x79\x9a\xca\x89\x02\x69\xfd\x64\xe2\x45\xdd\xb2\xa5\x55\x2d\x1d\xa7\x36\x97\x66\xaa\xeb\xdb\x9e\xc9\x41\x93\x86\x61\xbf\xdb\xd1\x14\x04\x13\xcf\x06\xf6\x43\x1a\x5d\x27\x7f\xec\x67\xed\x94\x52\x83\xb9\xd6\xa0\x92\xd7\x0e\x92\x9c\xd8\xf0\xca\x1d\x2d\x52\xa9\xfe\x04\x3c\xa7\x9b\xfe\xc3\xfe\x43\xbe\x7d\xe3\xa4\x78\x19\x2d\xa7\x3c\xfd\x01\x4e\x15\x0a\x1b\xe7\xff\x7a\xd7\x6b\x10\xe8\x5e\xdf\xed\x36\x68\x14\xd8\x72\xd2\xe3\x89\x64\x1b\x3d\x37\x1a\x8c\xb6\x71\x96\x20\xca\x7a\x64\xcd\x2b\x3d\xef\x27\x7e\x30\xf4\x49\xee\x5f\x93\x23\x75\x29\x8c\xfb\x6c\x5f\x84\x6a\x98\x3e\x2f\xe4\xc4\x3b\x3d\x94\x57\x5e\x69\x07\x51\xd1\xcb\x54\xf0\xfe\xe6\x44\x05\x26\x6f\x2a\x62\xf8\xc8\x14\xa9\x51\x40\x7f\x76\xa0\xf9\x46\x39\xe3\x8b\x66\x39\x49\x4d\x2f\x82\x7c\x03\x7c\x83\xbb\x64\x20\x1c\x29\x41\x39\x0c\xc2\x6d\xf0\x80\x5b\x0d\x7f\xe7\xa7\x68\xe0\x90\x12\xb8\x8b\xbf\x82\x9b\x82\xae\x43\xf8\x59\x77\x3a\xbe\xed\x08\xd6\x89\xfd\x57\xa2\xee\x92\xac\xfe\xd4\xfc\x8b\xc4\x85\xf0\x92\xcb\x11\x9e\x07\x98\xd8\x3d\x7c\xb9\x79\xdc\x4e\x2a\x0f\x21\x24\xef\x3e\xa2\x4d\x09\x87\xfd\xc7\xd4\x3b\xc1\x35\x71\x8d\xf5\x05\xa9\x09\x5a\x81\xfe\xaf\x89\x66\xac\xb9\xae\x34\xaa\x8f\x93\xbd\xc2\x5f\x7d\xca\x09\x32\x7e\x16\x2c\x60\xd8\x24\x70\x11\x62\x7b\xde\x55\x7d\xca\xcc\x92\x05\x83\x72\x47\xab\x20\xdd\x6c\xec\xef\x79\x26\x7e\x86\x4c\xb2\x70\x8c\x79\xd3\xb4\xe9\xb4\xa8\x33\x33\x2a\x6c\x34\xa5\xe8\xc6\x6f\xd3\xcc\x38\x04\x96\x83\x5c\xd6\x7b\x88\x08\x5c\x5c\xa4\xd4\x8e\x81\x93\x11\x52\x26\x1c\x11\x6a\x8e\xda\xcd\x0a\x5b\xe9\x23\xba\x3d\x25\x47\x3f\x07\x5e\xfd\xc7\x13\x8f\xf4\x03\x3a\x15\x47\x52\x0b\x8c\x14\x38\x28\xb6\xbd\x1c\x6b\x9a\xc4\x4b\x61\x6e\xb9\xf6\x8e\x24\x18\x37\xe4\xf1\x4d\xe7\x49\x85\xd0\x4a\xc6\x49\x6c\xf9\xc4\x95\x78\xea\xac\xe7\xfc\xf9\xed\xb3\xae\xff\x39\x2d\x48\x4b\x4c\x00\x1d\x8c\x3c\x52\xa8\xe5\xd3\x4d\x02\x6c\x23\x9b\x65\x69\xf6\x1c\xeb\x8b\xc2\x36\xfd\xcf\xd8\x3f\xf8\x14\x06\x48\xb7\x70\xb8\x2d\xe0\x23\xeb\xdd\x0d\x34\x54\x8c\x04\x74\x07\xbf\x54\xb8\x5a\xae\x37\xf9\x56\x2d\xf5\xf3\x6c\xdb\xae\x5a\x7e\x57\xf1\x2e\x14\x07\xc9\x05\xe7\x78\x8f\xcd\x6b\x45\x36\xa5\xd2\x48\x97\xb4\x95\xb8\xa8\x4e\xdc\x5d\x4e\x9d\x20\x32\x45\xdc\x4f\x57\x55\x8d\x07\x89\x21\x1c\x58\x37\x26\x15\x8e\x96\x9d\x66\xe6\xc8\x8b\x6d\x33\x1e\x47\xab\x30\xaf\x38\xb1\x80\x41\xe2\xeb\x5a\xdd\x72\xf6\x48\x7b\x14\xc6\x96\x10\x89\x8e\x4c\xce\x6f\x80\x4f\x27\x2a\x89\x8e\x9a\x24\x6c\xef\xbf\xac\xfd\xf6\xb3\xed\x9e\x8d\xc3\x01\x52\x62\x8e\x83\xd5\xf5\xcd\x5d\xa8\xfd\xf4\x2b\xaf\xb4\x97\x24\x77\xec\x14\x42\xcb\x9f\xe6\x9b\x26\x6d\xac\xbe\x35\x7e\xae\x98\xec\x5e\x75\x41\xbc\xa7\x64\x3b\xb2\xdc\xf6\x81\x44\x74\x29\x9e\xf2\xcb\xc5\x12\xf9\x08\x2e\x1f\x9a\xf8\x29\x55\xf3\x5f\x87\x7f\x01\x8f\xfa\x91\xae\xaa\x69\x3f\xda\xf5\xeb\xf4\x0b\x70\x7c\xe1\x3c\xb5\xb4\x72\xe1\x09\x65\xd8\x76\xad\xf9\x3c\xfe\x55\x9a\x08\x04\x4a\x0f\xad\x29\xb5\x48\xae\xe2\xa2\xef\xe0\x26\x5c\x6d\x97\xfa\x2f\xa7\x1b\xeb\xea\x11\xd0\x04\x40\xe4\xef\x89\x35\xaf\x5c\xb9\xab\x8b\x7d\x81\x55\x71\x5b\xd9\x96\x8b\x44\xd8\xc2\x3c\x1c\x54\x94\x81\xed\x05\x2c\x0a\x49\x94\x1b\x4d\xe1\xb4\x89\x92\x98\xa9\x0c\x91\xb7\x44\x03\x15\x5f\x77\xf6\x87\x24\x33\xf9\xb3\xed\x5f\x7e\x8a\x70\xa5\x2e\xfa\x73\xd9\xd0\x1b\x3a\x57\xbb\x4d\x85\x11\x5c\xef\xeb\x7a\x7e\xd1\xfb\x7a\x77\xfe\x8d\xae\xd6\x89\xbe\xaf\xc4\xc8\x6f\x20\xdc\x81\xc5\xbb\xa1\x19\x5d\x5a\x6b\xad\x7f\x22\xf4\x2c\x6f\xb3\xe1\x77\xe0\x57\x47\x10\x71\x7f\xa2\x7a\xd6\x60\x3d\x61\x92\x91\xaf\x41\x36\x7c\x3f\x48\x64\x31\xb9\x4c\x04\x24\x62\x44\x3e\x13\xf3\x59\x85\xf4\x6a\xa2\xb4\x12\x5e\x0b\xcc\xb2\xc9\x13\x50\x93\xe3\xb7\xe0\x99\x49\xd1\x40\xa1\xd1\x37\x6a\x15\x84\xf9\x85\xf9\xf6\xc8\x84\xc4\x78\xd3\xf2\x60\xc6\x73\x1d\xc5\x1e\x53\xcf\xf5\x08\x9e\x7e\xf4\x5c\xef\x39\xf3\x1c\x99\x0c\x44\x8e\xf0\xc2\x2a\x7d\xd4\xa2\x15\xe4\x05\x00\x17\xd3\xe4\x75\x1b\x7f\x6e\xef\x9b\x62\xdf\x1e\xa7\xd6\xd2\xb7\xa3\x1f\x62\xf7\x9a\x12\x08\x43\x66\x06\xde\xc0\x7e\x95\x29\x5b\x19\x86\xc1\xf0\xa7\x94\xfa\xda\xe5\x8e\x57\x4b\xfb\xdf\xe9\xcc\x44\x93\xf9\xd7\x3b\x8a\x7d\x86\xb7\x9b\xe3\xf5\x5e\x98\xf7\x05\x2d\x67\x26\xc0\xd9\x01\x14\xcf\x1e\xd0\x59\x89\x4b\x55\xae\x2d\xbc\xe9\xf5\x8e\xd2\x80\x7a\x7c\x4d\x71\xb4\x30\x6d\xaa\x74\x99\xd1\xb4\xcb\x76\xd1\xa8\xab\x7b\x1c\x8c\x23\x4d\xf2\xb1\x92\xdf\x7e\x90\x9a\x40\xb0\x3a\xae\xa1\x3a\x07\xdf\xe5\xc7\x58\x37\x4c\xce\x86\x48\xc3\x29\x19\x97\x01\xa2\x53\x4b\x3e\x38\x2b\x9e\x34\xf6\xbb\x20\xc5\x14\xc3\x73\x12\x0f\x88\xe5\x04\x5b\xf6\x1e\x38\x28\x39\x84\x56\x24\x04\xbf\xae\x49\x43\x05\x37\xc6\x77\x5d\x95\x3c\x86\x4c\x14\xb7\xe3\x4f\x14\x83\x00\xd3\xa7\x4a\x70\xde\x80\xfb\x5d\x49\xd2\x7c\x88\xde\x53\xcc\xc6\x55\x95\x0b\xaa\xf7\xf9\xcc\xcd\xb5\x17\xc3\x2c\x18\xda\x94\xfd\x87\x46\x60\x95\x12\x87\xcc\xb2\x24\x08\x15\x9e\xcd\xb1\x08\x79\xbf\xf7\x71\xb6\x0e\x88\xaa\x7f\xdb\x37\x7f\x3f\x03\xc8\x3b\x76\xd9\x37\xb4\xd6\x49\x10\xda\x38\x0f\xb3\x3c\x53\x2a\xc9\x7f\x4c\x1f\x84\xf1\xd8\xa0\x04\x07\x92\x25\x5c\xc7\x95\xb9\x2a\xa7\x97\xff\x43\xd3\x1b\x9f\x9c\x7c\x41\x69\x72\x42\x6c\x09\x35\x2f\x1c\x48\x58\x85\xf7\x15\xd2\xe5\x7e\xad\x49\xb3\x0c\x17\x57\xd0\x16\xe9\x20\xa7\x1e\x7e\xaa\xaa\x17\x49\xef\x55\x1b\xa0\x20\x29\xbd\xd4\x1e\xcd\xcc\x95\x23\xdc\x1c\x57\x72\x83\x8b\x49\x6a\xd3\x22\x8e\x2d\x13\xb0\x21\xa0\x39\x4e\x9e\x2f\x5f\x77\x7c\x67\x71\xdf\x06\x91\x11\x3e\xa6\xd9\x23\x4e\x26\xbc\xfc\x24\x5f\x77\x3c\x59\x43\x98\xa6\x76\x50\x44\x26\x0d\x05\x18\xf2\xbc\x83\x02\x94\x8f\xc9\xd7\x4d\x8a\x5e\x03\xc7\x5a\x81\x23\x04\x25\x03\xbe\x76\x89\xd7\x64\x71\xd1\x12\x08\x1c\x55\x39\xec\xa2\x13\x1a\x1f\x8d\xa2\xac\xe8\x49\xa8\x58\x71\x34\xde\xeb\xe5\x81\xae\xa8\x3e\x8a\x0b\x8a\xa6\xf8\xcd\x8e\xe2\xf0\xbb\x88\x96\x08\x14\xfb\x4e\x29\x80\xd0\xb7\xb4\xd8\xc9\xc5\x9a\x74\xd5\xb3\xed\x51\x12\xe7\xb6\x1f\x66\xc2\x62\x85\x1f\xdd\xd5\x55\x87\xd9\xae\xb5\xa7\xfd\x42\x8c\xc3\xc1\x80\xde\xab\x8c\xd4\x0e\x1e\x64\x48\xd8\x49\x5a\x65\xd2\x27\xe4\x49\x57\xae\x76\x76\xea\xf0\xfe\x9d\x76\xdf\x26\xaf\xad\xa6\x61\x2f\x89\x8b\x20\xb2\x61\xd0\xd2\x5d\x56\x2d\xc5\x58\xba\x33\xb1\x45\x95\xfa\xd4\x06\xd4\x73\xe7\x32\xe8\x67\x55\xbb\xdf\xd9\xcf\x3d\x55\xc6\x36\x19\x47\x76\x0f\xf6\x1d\xfc\x47\x64\x41\xe1\x17\xdf\x9b\x78\x23\x06\x47\x4f\x08\x70\x94\xf8\xd1\x43\x5d\xd5\x1a\x3c\xbd\xa6\x13\xbf\x76\x29\xa2\x55\x54\x5a\x3f\xe1\xd1\xf1\xb0\xe4\xba\x54\x61\x79\x44\x26\xb1\x9d\xaa\xca\x4b\xba\xc2\xd3\xae\xae\xd6\xa0\x54\x6a\x8f\x96\x78\x36\x09\x81\x09\xdf\xef\x84\xaa\x38\xb2\x06\x93\x34\xc7\xd3\xa6\xe2\x1b\x9a\x12\x44\x11\xa0\x3e\x16\x39\xa5\x9d\x63\x0c\x50\x91\x1d\x25\x59\x8e\xa0\x46\x9a\xd8\x7c\x5f\x67\x9d\x08\xc7\xf5\x78\xf7\x59\x01\x58\x3c\x03\xd5\x9d\xb1\xa1\x28\xbd\xb3\xdc\xef\x52\x81\xb3\x97\x0f\x25\x30\xf7\x46\xb0\x77\x18\xa5\x49\x02\x61\x1e\x9d\x99\xe4\xeb\x06\x1c\xdc\xe1\x76\x6a\xfb\x45\x50\xad\xd7\x7c\x32\x51\x1c\x0e\x9f\x74\x76\x76\x87\x1e\x3d\xd0\x36\x19\xf5\xb9\x0b\xe5\x8a\x47\x63\x62\x0c\x40\xb9\xf1\xbb\x0a\x60\x29\x2a\x14\xc2\x68\xc8\x6d\x0d\x34\xff\xd2\xe2\xd0\xf0\x46\x8b\x24\x40\x98\x4a\x41\x1b\x29\x8b\x2b\x9a\x58\x93\xa3\x77\x11\xe7\x7b\x44\xa9\x2f\x46\x51\xf6\x80\x07\x58\x9f\xa7\xa7\x54\x9a\x1d\x8e\x54\x7d\xa2\xc4\xce\x2f\x28\x02\xeb\xeb\x2a\xfd\x05\x11\x14\x56\xe3\x51\x90\xa8\x87\xe0\xc9\x23\x68\xff\x35\x1c\x1d\x00\x9d\x5f\xf0\xac\x53\x49\x14\x7a\xe2\x30\x1d\x2b\xe3\xc8\xb8\xac\xdd\x93\xf7\x3c\x60\x30\x49\xf3\xd4\xac\x72\xd2\x49\x1a\x21\x3c\x90\xaf\xde\xad\x30\x7b\xa4\x3d\x30\x51\xc4\x46\x4a\xdb\x4f\xbe\x56\xc4\xdd\x59\x98\x13\x27\x39\x5e\x6f\x77\x97\x4c\xa3\xa6\xa6\x94\x38\xb7\x61\xf1\xa7\xb6\x6f\x17\xa9\x7c\x7c\xf4\x80\x48\x31\x76\x2a\xba\x8c\x3b\x4d\xe8\xc2\x01\xd2\xe4\x31\x71\x6e\x05\x6d\xef\x30\x14\x6e\x43\x9f\x6d\x5a\x01\xfd\x30\x23\xee\x0f\x20\x08\x04\x68\xeb\xe1\x3d\xdb\x8a\xc9\xfc\x04\x66\x52\x12\x01\x4d\x51\x4e\x19\x2b\x53\xd1\x10\x96\x61\x0a\x61\x1c\x7c\xb9\x4b\x1a\xf3\x75\x51\xf1\x73\x82\x18\x54\x10\x0b\x0d\xa5\xa0\xb1\xed\xf7\x7d\x94\x2a\xac\x63\xe5\x43\x0a\x1d\xd9\x8e\xde\xc2\x43\x87\x16\xda\xcf\x4e\xfb\x28\xff\x5d\xfa\x63\xfc\x32\x12\xdc\x30\x08\xef\x69\x0e\xc3\xcd\xa6\x2a\x46\x18\x2f\x46\xbe\x4b\x0d\xcf\x8b\xc5\xc5\xd7\x0a\x57\x6f\x4a\xe3\x33\xa3\xfd\xed\x89\x86\x16\xd1\x37\xc0\xe6\x61\x5a\xf0\x47\x97\x27\x8a\xa4\xf0\x83\x26\xdf\x6f\x9c\x26\xcb\x21\x33\x3f\x20\x43\x7c\x1b\x33\xc1\x37\x1d\x9d\xff\x4e\xa2\xa8\xa5\xc5\xbe\xcb\xa1\x15\xc2\x78\xd7\x0b\x1f\x45\x76\x95\xf3\x2d\x2a\xad\x73\xd8\x31\xdd\x7a\x01\x4c\xee\x31\x8d\x07\x0f\x96\x5f\x0a\x97\x76\xba\xeb\xd7\xff\x55\xcd\xc1\xbd\x81\x74\x24\x9a\x80\xaf\x2a\xc4\xdc\x0d\xcf\x9f\xf0\xd5\xa7\xd7\x4a\x43\xa1\x10\x37\x0e\x64\xd3\x51\x09\xfe\x2b\x13\x95\x51\xdd\xa0\x93\x5d\x3a\xd5\x15\x8f\x8b\x49\x73\x96\xc4\x99\xf6\x3c\x52\x0c\x3d\xe1\x1b\x0c\xbb\x68\x9c\xd0\x97\x8a\xd2\x77\x85\x90\x77\x34\x9e\x51\x68\xc9\x2d\xf2\xef\xa4\xb8\xeb\x25\x4d\x6f\xeb\x66\x46\x7a\x29\x41\x11\xd6\x33\xf3\x73\xed\x2c\x29\xf2\xe1\xb4\x47\xc0\x7d\xa4\xb5\x40\x01\x8a\x11\xee\x0b\x7f\x36\x7e\x54\x73\x90\x16\x0e\x90\xa7\x18\xd9\x65\xc3\xad\xa0\x78\x30\x50\x9b\xf3\x75\x03\xc0\xad\x5c\x39\x36\x37\xaf\x91\xb9\x82\xf7\xf9\xae\x0a\xd0\xdf\x55\xdc\x00\x3d\x6b\xf2\x07\x54\x89\x66\x43\xf1\x6f\xb0\x06\xbd\x00\xae\x5b\x73\xaa\xed\x70\x41\xe0\xd5\xc0\x4d\x63\x90\x66\xd6\x28\x82\x93\x84\x71\x39\x4a\x22\x00\xe6\x29\x3f\x7f\x77\xab\x53\xc9\x2b\x2b\x47\x7d\xc8\x1c\xe9\xe5\xd2\x60\xab\xd0\xd1\x98\x26\xed\xa5\xda\x47\xbd\x0a\x21\xa3\x0f\x2a\x0c\xb6\xd8\xf3\xe0\x5a\x13\x9d\x3f\xdd\x69\x0e\x0e\x6d\x38\xf2\xe7\x14\xbf\xe8\x69\x72\xc6\x9c\x34\x93\xc3\x94\x23\x2f\x0a\xe3\xfd\x58\x97\x82\x53\xc9\x00\x29\x5a\x91\x2b\x9a\x91\x74\x17\x15\x3f\x10\x2e\x4d\x23\xe5\x24\xf8\xdc\x9d\x38\xd0\x43\x87\xda\xe3\x6c\x35\x18\x26\x26\x36\xd1\xaa\xa0\x33\xf1\x51\x40\xee\xf8\x5a\x25\x4a\x7a\x69\x18\x45\xa1\x91\xde\x1f\xc6\xae\x76\x28\xb8\x15\x20\xab\xc7\x08\xad\x98\x34\x0d\x93\x34\x03\xfb\x04\x4b\xe9\x61\xa8\x90\x9f\x5b\x9f\x28\x61\xbc\xfb\x1d\x55\x01\x9d\x3c\xe9\x31\x1a\xa5\xd7\x30\x0a\x63\xee\x21\x56\xba\x06\x5e\xdc\xba\x81\x01\x78\xd1\x84\x11\x87\x22\x48\x8d\x5e\xd3\xc7\xda\xfb\xb4\xb4\x84\xe7\xe5\x71\xd5\xe0\xb4\x18\xc6\x42\xa4\x06\xd7\x07\x63\xc1\xd7\x0a\x60\xde\xb7\xa4\xab\x45\x96\x52\xda\x1b\xfc\x7a\xbd\xa0\x6a\x42\xcb\x09\xb1\x24\x95\xbf\xee\x38\x73\x3d\x7f\x6e\x93\x4c\xd9\xd8\xe4\xa1\x34\xeb\x72\x43\xa8\x3a\xfb\xcf\xab\x07\xb6\xaf\x05\x36\x1d\xe7\x68\x2b\x40\xaa\x89\x45\xdc\x51\x2f\xe0\xde\x15\x69\x32\x10\x87\x24\x59\xb6\x69\x66\x4d\x86\x7d\xc8\xea\x05\x13\x05\x4c\xd8\x54\x84\x47\x7f\x8d\xb2\x7e\x28\x1d\x70\xa9\x0d\xeb\x70\x9a\x56\x9b\xfc\x87\x07\x46\xed\x5f\x53\xac\x82\xef\x73\x5e\x46\xda\x21\x7d\x33\xd1\x4f\x75\x77\x46\x2f\xcf\xb6\x63\x5b\xa4\xa4\xc4\x9c\x09\x04\x00\xef\x7c\x5a\x07\x92\xa7\x95\xaa\x60\x18\x45\x85\x0b\xe6\x84\x60\xa5\xe5\x14\x70\xcf\x3b\xd7\x6d\x64\xf2\x22\x15\xed\x37\x05\x5a\x17\xb8\xf3\x36\x4d\x0a\x52\xfd\x57\x9a\xfc\xb1\xac\xe8\xf7\x6d\xac\x16\xe1\x6e\xa5\x92\xb1\x7b\xad\xa1\x10\xd4\xb7\x8c\xda\x77\x70\x44\x45\x87\xfd\xb8\x02\xfa\x2f\x5b\xcf\xba\x23\xfd\xb7\xba\x31\xd7\x57\x79\x29\xde\xcf\xf0\x97\xf0\x94\x5a\xc8\x65\xf3\x4d\xb7\xa9\x6d\x37\x32\x2b\x78\x6e\x76\x67\x27\xbe\xb9\xf2\xc2\xe7\xaa\x3b\xf7\x93\x38\x36\x9a\x97\x41\x93\xd0\x6d\xaa\xe5\xdd\x8b\x4c\x96\x4f\x6b\x3f\xb3\x34\xd5\x52\x4e\xf1\x3e\xe1\xb7\x14\x7d\xd9\xb7\x5c\xda\xa0\x88\xc3\xc5\x24\x1d\x31\xa3\x0d\xe2\xc7\x1b\xaa\xad\xf5\x86\xca\x65\xf6\xa2\x30\x7f\xbd\xe5\xf1\x99\x70\xa1\xa5\xd8\xa8\x8a\x02\xab\x63\x78\x30\x48\x09\xed\xee\x2a\x55\x88\xdd\x6b\xf5\x11\x7a\x99\x5a\xc9\xa7\xcb\xc7\xc6\xb9\xf8\xb6\x22\xbe\xbd\xa7\x70\xe0\x27\xc8\x82\x4b\x7d\xa4\x09\xe6\xdd\xb3\xc3\x30\xee\xcf\xb4\x0e\x1e\xe4\x35\xf6\x5d\x1a\x0d\x2c\xf8\xa9\xae\xa2\xe7\x54\xc6\x42\xcb\x72\x6c\x4c\x74\x93\x60\xb2\x12\xc6\x83\xe9\x8a\x78\x59\xf9\x31\x58\xc9\xef\x4c\x7c\x5d\xf7\x8a\x0e\x3c\xb6\x15\xb8\x3b\x48\x46\xe3\x22\xb7\x69\xf8\xba\xed\x93\x91\x80\x1d\xbe\xac\x04\x1e\x19\xb9\xcb\x59\xb8\x89\x77\xc8\x4c\x30\xb4\x71\xcf\x14\xa3\x29\x65\xee\xb9\x37\x0b\x1b\x85\x49\x8e\x45\xcb\x46\xea\x60\x36\xce\x6d\x2a\x51\x12\x62\x36\x78\x03\xac\x64\x8f\x4f\xe1\x85\xef\x76\x9e\x70\x15\xb7\x3c\x0d\x4d\x1a\x0c\x4d\xc4\x41\xa2\x43\x63\xba\x12\x39\x50\xf9\x88\xf6\x7e\xa8\x4e\xa6\x2c\x4f\x4d\x6e\x07\x61\x00\xbf\x1d\x53\x07\xa8\x04\x5f\x37\x95\x26\x7b\xa1\xd2\xe8\x14\xa9\xb8\xd6\x9c\x97\x90\x73\xa8\x42\xe2\x71\x71\x7f\x2a\x84\x47\x2d\xc5\x84\xb4\x53\x78\x7c\xb6\xfd\xec\xa3\x34\x6c\x38\xe4\xef\xeb\x2e\xa8\x4b\x54\x20\xc1\x8f\xfc\x80\xd6\x1a\x2a\xba\x77\x27\x35\xfd\x2c\xe6\x10\xd7\x85\x93\x3f\xad\xb4\xd0\xb6\x1c\x15\x6d\x8b\xb2\x28\x2e\xda\x28\x1d\x53\x78\xed\x67\x3a\xaa\x05\x93\xcb\x52\x0e\x23\x72\xf8\x97\xbf\xcc\x85\x30\x5e\x43\x70\x2b\xd6\x27\x5a\xd9\x70\x94\x10\x3a\xee\x25\x57\x2e\x02\xb4\x5a\xba\xe8\x1f\x56\x07\xa8\x89\xf6\x96\x9b\x84\x71\x6c\x78\x09\xd7\x81\x56\xf1\x7a\x5d\xf1\xfb\x92\x3e\x9a\xef\x68\x95\x43\xf4\xfc\x22\x7b\x71\xaf\x86\x48\x79\x61\xae\x3d\x22\xe2\xd3\x29\x0f\x1f\xde\xad\x9c\x26\x76\x8d\x84\x31\x51\x26\x33\xb7\x69\x9a\xa4\x61\x36\x9a\xf2\xe3\xc8\x58\x5e\x59\x2b\x2d\x27\x44\x71\x45\x29\x3c\x2e\x87\x69\x5e\xb0\x49\xc7\x59\x3b\xb5\xa6\x6a\x3c\x53\xb5\xf3\x8c\x2c\x42\x91\xf6\x6d\x9c\x25\x23\x66\x2e\x13\xf2\x8e\xd2\x2c\x38\x8a\x2a\x07\x87\xdf\x56\x06\xf3\xa4\x42\xf7\xc4\x49\xba\x62\x60\x23\xf1\xa1\xa9\xae\xd7\x14\x99\x5a\xdb\x99\xa8\x3e\x74\xa8\x9d\x15\x23\x32\x95\x02\x14\xa5\x59\x97\x28\xc3\xbf\x53\x18\x87\x79\x68\x22\x6c\x55\x98\xa6\x5d\x6b\x3e\x2b\x79\x55\x17\x78\xb6\x5c\xeb\x27\x6d\xf0\x71\x1a\x66\x96\x70\x0a\xc2\x3a\xdf\x72\xaa\x9d\xf0\xd1\xa5\xb4\xa8\xf2\x3a\x7f\x39\x79\x54\x47\x02\x45\xce\xf5\x6e\x27\x67\xbc\xe0\xfb\x9a\x3d\x5a\x26\x4b\x82\xd0\xfa\x8e\x46\xa7\x87\xa9\x59\x2f\x1e\x52\x50\xa8\x50\x0b\x39\x92\xd1\x16\x51\xc7\x47\x95\xde\xd9\x32\x41\xd2\xbd\xbc\xd7\x86\xa6\x2f\x9d\xea\xfa\x98\xf2\x81\x9a\x16\xed\xa1\x43\xed\x5e\x11\x46\xfd\x62\xdc\xf2\x2b\x14\x4e\x1a\x5f\xeb\xf7\x4c\x6c\x18\x0f\xf6\xc1\xa6\x61\x7c\xae\x75\x3c\xa8\x8c\xe3\x4f\x9c\x17\xbf\xd9\x51\x5e\xfb\x6f\x52\x64\x80\x45\x79\x55\x51\x86\xde\xa8\x34\xec\x69\xc2\xad\x3b\xb5\xf3\x7c\x6e\x6e\xbe\xdd\xb7\x51\x18\x84\x49\x21\xc9\x37\x38\x0b\x58\x77\xac\x67\xaf\x0b\xec\x57\x2a\x7c\xb5\xe3\x00\x9a\xa6\x82\x61\xf2\x8f\x51\x6f\xa6\x5a\x38\xd0\x2e\xe2\xc0\xc4\x71\xc8\x07\xba\x0b\xcc\x14\xb6\xfe\x09\x8d\x43\x1c\x27\x99\x89\x98\x15\x14\x81\xfa\x1b\x30\x13\x1c\xdd\x28\xb5\x4a\xc0\xc7\xf8\x1a\x63\x26\xfa\x52\x0d\xa9\xf3\xf6\xd0\xc4\xfd\x48\x56\x8c\xa4\x37\x15\xfa\xbf\x7e\x22\xcc\xcd\xb5\x7b\x49\x92\x39\x80\x0b\x4b\xfc\x60\x46\x44\xef\xa7\xc1\x33\x1c\x15\xb9\x44\xcb\x92\x6b\x50\x9d\x3e\x8a\x76\x65\x54\x9a\x9d\x61\x98\x9b\x19\xff\xb7\xbb\xbb\x9e\xe5\x04\x7c\x30\x42\xc9\xb3\xa3\x59\x42\x9a\xac\xee\x36\xf0\x74\xcc\xb6\x7b\x61\xbf\xef\xce\x27\xf8\x0a\x1b\xaa\x6f\x52\x17\x27\xc3\xbe\x35\x34\x39\xc0\x16\xec\xea\x7a\xd4\xdf\xae\xda\x42\x3f\x78\xb0\x9d\xa7\xa6\xef\x78\x19\xe0\x25\xdc\x52\x74\x89\x98\x22\x96\x70\x50\x10\x40\x1b\xf6\x30\x8c\x92\xe6\xa6\x15\x26\xf9\xef\x9d\xef\xf0\x12\xa9\x2b\xa7\x23\xea\xac\xab\x11\xb7\x89\xf6\x8c\x38\xf3\xa6\xbf\x1c\x66\x82\xd9\x54\x2d\x47\xcf\xb3\x37\x78\xaf\xa2\x95\xe3\x9f\x69\x1c\xe6\x53\x64\x08\x5d\xfd\xdb\x59\x48\x8e\x0f\x71\xee\xbc\xa5\xf0\xc8\x79\x1a\x32\x05\xfb\xf3\xec\xc7\x9d\x52\x6a\xa2\xa7\x9a\x30\xa5\xa5\xd3\x15\xd9\xbc\x4a\xa4\x79\x45\x7b\x00\x57\xd4\x40\x0d\x4d\x84\x66\x74\x81\xed\xd4\x9d\x1f\x9c\x45\x48\x86\x21\x2c\xbf\x52\x5b\xf3\x2f\x51\x7b\xb1\x89\x9d\xd4\x17\xc6\xe5\x47\x1d\xd5\x97\xf5\x23\xd7\x5c\x96\x8d\x6d\x9c\xef\xf3\x60\xb2\xc7\xd6\xb4\x8f\x37\xf1\x51\xed\x15\x4f\xd3\xff\x1b\x4f\x20\xd6\x70\x29\x89\x85\x03\x0b\x5a\xb3\x44\xe4\x06\xfe\x56\x57\x11\x10\xef\x5d\x73\x2a\x9b\xe6\x75\x1b\xc5\x45\x8e\x7c\x80\x02\xbd\xbe\xec\x59\x76\x8f\x1e\x70\x00\xd8\xf2\x67\x91\xe4\xd9\xd5\x75\x08\x34\x3b\x2e\x7a\x51\x18\xf0\x1a\x81\x01\x04\x53\x2e\x5f\x3b\xd6\x2f\x47\xce\x00\x82\x29\x66\x16\xd5\x7d\x42\xe4\xea\x6d\x1f\xd3\xdd\xf6\x69\xc8\xfb\x18\xbb\xfd\xaa\xa2\x9b\xbe\x5a\x83\x92\xbd\x30\xd7\x36\x61\xaa\x48\x00\x10\x03\x4b\x92\xaa\xc6\x6c\x36\xdb\x0e\x4c\xdc\x07\xe0\xd3\x59\xb1\xf2\x71\x70\x4c\x9e\x99\xf8\x7a\xe4\x05\x75\x4e\x65\x36\x0d\x6d\xf6\x50\x69\x00\x5c\xfb\xe5\x82\x74\x51\xdf\x50\x64\x8e\x8f\x63\x76\x90\xe1\xbc\x0e\x37\xaf\xd2\x92\x88\xe2\xd8\xba\x66\x00\x7a\xac\xdb\x7a\xc9\xeb\x43\x2a\xce\xa0\x35\xda\xd5\xf8\x44\x8b\x7c\x0d\x38\xe0\x8f\x52\xc7\x88\xe4\xd8\x76\x1e\x36\x2f\xcc\xb5\x53\x13\xd8\x61\x92\x66\x62\x79\xe1\xee\xb1\xea\x00\xdf\x28\x9f\xaa\x47\x68\x7a\xb4\x16\xc3\x54\x81\xc5\x98\x81\x20\xe4\x10\x0b\x55\xea\x4e\xd3\xbb\x70\xa0\xbd\x98\x5a\x92\x6d\x76\x16\x88\xb9\x33\x45\x5f\xb0\x0e\x74\xa3\xc6\xd8\xbe\xaa\x77\xb0\xa8\x04\xdf\x34\xa1\x7f\x87\x26\xcb\xd9\x7b\x73\xe2\x38\xde\x44\xfd\x5b\xa5\x20\x7f\xbb\xa3\x68\xd7\xcf\xeb\xc6\xd6\x24\x0b\x1d\xd8\xc0\x8b\x3c\x79\x5c\xce\x05\xb7\x33\x83\xa1\x19\x83\xb7\x00\xa3\x75\x5b\x0f\xdd\x6d\x95\xfa\x48\x8b\x7c\x18\xd9\x2c\x6b\x11\x3a\xc5\x75\xfd\x1c\x3a\xe4\x6e\xd4\xd2\x26\x7e\x77\xb2\xfa\x2c\x72\x80\x27\x15\xc5\x03\x89\xc1\xd0\x23\x08\x3c\x3c\x59\x3c\x44\x10\x6f\x29\x4c\x12\xc4\x16\x70\x86\x9e\xad\x09\x89\x49\xfa\x80\xbc\x2b\x09\x01\x61\xf4\xff\x15\x7d\x09\xae\x59\xea\x1f\xdd\x49\xb7\x54\xec\xde\x4f\x58\x54\x14\x8b\xe1\x9a\x26\xee\xac\x63\xd2\xa9\x44\x3e\x48\x0d\x00\xf2\xbc\xad\xd5\xfa\x39\xa7\x8a\xc9\xcb\x06\x1c\x80\x3e\x9c\x67\x54\x21\xdf\xa8\x82\xed\x38\x09\x96\x2c\x37\x21\x6b\x24\x02\x5f\xeb\x22\xc8\xd0\xa4\x63\xcd\xd8\x79\x5e\x33\x76\x9e\x77\x65\x90\x15\xf3\xda\xc8\xc4\x53\x8a\xd5\xed\x5e\x47\x0b\x54\xc3\xcc\x0b\x7d\xbc\xf7\x90\x32\x93\xdb\x28\x0a\x73\x3b\xa3\xb0\xbe\x6f\x74\xb4\x1e\xc8\x44\xeb\x81\x28\xba\x8e\x6f\xd0\x23\xb3\xc0\xb4\xe3\x26\x5e\x0c\x3d\xeb\x06\x7e\xfa\xab\x4a\x76\xf4\xab\x35\xf7\x71\xf6\x48\x7b\xd9\x66\x91\x5d\x4c\xc3\xa5\x25\x86\x04\x09\x84\x43\xf1\xc5\x6d\xd5\x8e\xc1\x83\xb3\x14\xb4\xd8\x81\x10\xa5\xe0\x6c\xf8\xb4\xa3\xd2\xd5\x9f\xaa\x40\x64\x91\x24\x99\x50\x8c\x96\x13\xd9\x3b\x26\x8c\x27\x12\x84\x5c\x03\xe7\x58\x3b\xb6\x2b\x41\x32\x62\xc2\x00\xe9\x48\x50\xf0\xaa\x7a\xdd\xa4\xfc\x54\x94\x24\x99\xdd\xe3\xbb\xcd\x6f\x2b\xdc\xdf\x9b\x38\xb1\x5d\xf9\x7d\xe1\x80\xf4\x61\x63\x02\x10\x76\xaf\xeb\x25\xfa\x63\x97\x62\xa5\x52\xa7\xdb\x46\x78\x8b\x2b\x2a\xf3\x06\xb7\x0b\x39\x90\x0b\xae\xad\x7d\x98\x8c\xa9\x87\x63\xfb\x94\xe6\x9d\xd8\xa3\x55\xaf\xfe\x5a\x57\x11\x6f\xdd\xd6\x6a\x2e\xfb\x29\x1f\x8b\x90\xe5\xba\xae\x5d\x25\x51\xc8\xbc\xd1\xd3\xca\x33\xb8\x31\xf1\xc0\x61\x34\xb9\x38\x10\x88\x6f\xde\xf9\xd7\xee\x40\x8d\x6d\xbe\x92\xa4\x4b\x6e\xf5\x48\x9a\xc2\x7b\x82\xf5\xfe\x1a\x46\x4a\xe4\x61\x5c\x30\xf8\x03\x18\xcd\xfb\x38\x87\xc5\xf4\xe9\x8e\x96\xcf\x33\x28\x41\x14\x12\x4a\x1d\x4b\x50\x28\x0d\x55\xf4\x76\xa6\x41\x7a\x71\xbe\x9d\xac\xd8\x58\x3e\xa4\x38\x1b\x05\xeb\xb3\xa1\x40\xc7\x63\x92\xda\xf1\x31\xec\x19\xdd\x88\x78\xc6\x77\x98\xc6\x8b\x51\x61\xe3\x80\x79\x56\x10\x77\x81\x5c\x06\x98\x28\x40\xb0\x30\x73\x57\xb4\xf1\xde\x9a\xf8\x7c\xf9\x86\x62\x72\xbb\xed\x40\xe7\x26\x8a\x0c\x48\x22\x80\x0e\xfb\x50\xc1\xc6\x3e\xac\x79\x7c\x47\x5e\x6c\x47\xab\xe3\x61\x32\xb2\x7d\xf2\x71\x84\xbc\x0d\x6f\x2b\x52\x85\xf4\xb6\x4c\xb3\xd2\x30\x41\xed\xac\x08\x02\x6b\x9d\x92\x07\xe2\x64\xc6\xa8\xf1\x8d\x4b\xd1\xa5\x36\xcb\xd3\x22\xc8\x8b\xd4\x2a\xb6\x8d\x93\x84\x0e\x85\xa1\x41\xa7\xb2\xb0\x5c\xfb\xc3\xaa\x6f\xa8\x4f\x7d\x00\x5b\x29\x8d\xc1\x0a\x6d\x74\x51\xab\x01\x16\xe5\x2f\xec\x57\xe4\xd9\xeb\x8a\xed\xeb\x2c\x4a\xbf\x40\x5c\xed\xa2\x90\x49\x7a\x20\x4a\xdf\x84\xfb\xc9\x14\x47\xc5\x35\x95\x60\x39\x36\xd1\x8d\x3f\x58\x86\xd2\xf4\xf5\x84\xca\x20\xf4\x59\x49\xa6\xfc\x59\x11\xc2\xa6\xe5\x20\xf0\x9e\xf2\xeb\x51\x38\xb9\x5d\x69\x97\xeb\x1b\xc0\x88\x11\x61\xdc\x53\x80\xee\x93\xb4\x2e\x50\xe8\x9c\xea\xee\x5c\xe7\xf3\x2f\x1e\x6e\xf7\x93\x95\x78\x80\x68\x4b\x2b\x7f\xfe\x86\xa2\x22\xfa\x8d\xda\x14\xbe\x30\xc7\x70\x43\x61\x03\x67\xf8\x8e\xe2\xb7\x3d\xef\xc9\x52\xc2\xac\x67\xa3\xd0\x2e\xb6\x54\xe3\x19\xac\x99\x38\xe4\xbe\x38\x5a\x1e\x6e\x5c\x59\x81\x51\xb9\xaa\xc5\x22\xae\x36\x61\x18\x6c\xbc\x6c\xa3\x84\xf5\xe1\x5c\xf0\x7f\x70\xd6\x45\x33\x3e\xec\x79\x71\xe1\x8b\x2d\xf2\x51\x51\x2b\x3d\x0d\x5b\xcd\x37\xca\x23\x18\x15\x99\x6d\x29\x0a\xc8\x0b\x3b\xa1\x39\x9e\xc8\x2a\x58\x12\xbd\x6b\x64\x34\x4f\xd1\x88\xf3\x75\xed\x68\x3b\x7a\xe0\x65\xbf\x99\x55\x27\xc3\xdb\x1d\x2f\x1e\xfb\xb6\x12\xd8\x1a\xda\x28\x9a\xf2\xbe\x05\x8e\x6c\x07\x41\x5c\x90\xfe\xa0\x5b\x4d\xbd\x0f\xe3\x62\x34\xde\x91\x3e\x3e\xa3\xd8\x6c\xce\x34\x42\x51\x52\x9b\x85\x7d\x89\xe6\x84\xd7\x5d\xc9\x3c\xfe\xa4\x01\xc1\x31\xdf\x8e\xac\x19\x14\xb6\xa5\x5c\x8d\xf3\xec\x6a\x48\x1a\x76\xe7\x40\x94\x91\x63\xdf\x46\xe1\x60\x98\x73\x95\x15\x1b\xed\x47\xf8\x31\xbe\xe9\x78\x54\xe4\xd8\xa4\x44\xb2\x67\x52\x39\x51\x58\xb3\x99\x76\x29\xb2\x88\x48\x11\xb0\x6e\x1b\xa5\xf5\x84\x94\xf3\x61\x95\x5c\x5a\x79\xae\xe5\xc9\x2a\x6e\x4f\x7c\x42\xf6\xb6\x8e\x80\x72\xb3\x24\x98\x55\x58\xd2\x75\x85\x8d\x58\x57\x56\x26\x28\xa2\xbc\x48\x4d\x44\x14\xdb\x92\xfc\x56\x5e\x9c\xa2\xe0\xff\x40\x4b\xce\x5d\x24\x4c\x3b\x7f\x80\xe6\x12\x65\x92\x8f\x3a\xbe\xc4\x60\xc6\x63\x4b\x34\xc7\x33\x2a\x55\xfc\x1d\x55\xd4\xba\x3c\xf1\x2a\xbc\x6f\x4d\x3c\x82\xe6\x2d\xfa\x55\x99\x8a\xc7\x74\xdb\x41\x91\x95\x1e\xcf\xec\x11\x2e\x4e\xdd\x52\xd5\xff\x77\xb0\xcc\x71\xb6\x6d\x37\xb6\x93\x26\x71\x60\xc7\x8c\x5b\x14\xea\xb8\x96\x13\x93\xbc\xa0\x8e\xb6\x5e\x64\x82\xa5\x87\xcb\x10\x12\xcb\xfa\xac\xfa\xa1\x53\x40\xd1\xa3\xc2\xcd\x79\x62\xbe\x99\x78\xca\x93\xb3\x1d\x25\x4a\xca\x6c\x40\x12\x82\x12\xe0\x4c\xca\xd9\x3e\xf3\x75\x8a\x1a\x03\xdd\x49\xed\x25\x77\x8f\x4d\x14\x56\x73\x1d\xa7\xac\x30\x4a\x2b\x5e\xba\x62\x90\x60\xe9\x0b\x65\x94\x92\x0a\xaf\x33\x26\xcd\xcd\xb5\xcb\x55\xc9\xb2\x89\xdc\x9e\xa7\x14\x11\xce\x2a\x08\x63\x56\xf4\x44\xc7\xd0\x87\x24\x60\xbd\x11\xf8\x7a\xf9\xe8\x38\x3d\x3e\x6d\x8a\x3b\x07\x49\x1a\x26\x39\x36\x99\x08\xde\x63\x93\x89\x82\xbd\x2f\x90\xa6\x66\x1c\xf6\x91\xe1\x91\x36\x47\x55\xcd\xf9\x94\x9e\x51\xe0\xc3\xe5\x23\x48\xc7\x91\x3f\x0f\x83\x28\x11\xd7\x44\xf8\xc2\x7d\x72\xfa\xa2\xaa\x18\x06\x36\xcd\x4d\x18\x3f\x5c\x3e\xbd\x1c\x4e\xaa\x42\xf7\xc8\x5a\x45\xf2\xa4\xb4\x94\xdb\xb7\x69\x6f\x62\x75\xfe\x40\x31\x8f\x8f\x09\x64\x89\xdc\x47\x8b\xca\x30\xee\x00\x2d\x23\x4c\x25\xd8\x26\x39\xd9\x47\xba\x4a\xa7\xe7\x22\x99\x02\x54\x8b\x51\xf9\xc5\x4f\x1c\xf7\x04\x80\x26\xed\x53\xfe\xc4\x65\x3d\xce\x68\xcf\xec\x8c\x46\x50\x98\xa8\xb0\x0f\x94\xcf\x06\x67\x6c\x0f\x92\x55\x2c\xed\x4c\xa7\xbe\xb4\x39\x96\xdf\xe6\xfa\x80\x3c\x3f\xfa\x9d\x8a\xb6\x0a\x3d\x27\xfc\x84\x7b\xf8\x4d\xf8\xf8\xbc\xc4\x04\x08\x44\x27\x89\xa4\x40\x1a\x02\xa3\x71\x98\xc4\x96\xc0\xe1\x70\xf2\xb1\x8e\xae\x2b\x22\x99\xdd\xaa\x25\x77\x53\x21\x5a\x7b\x61\x14\x65\x0f\x95\xff\x27\xfc\x1c\xaa\xe3\xea\x0c\x6a\x77\x5c\x54\xc5\xc3\x22\x2f\x37\xd5\x55\xb5\xb1\xdf\xa2\x89\x43\xf0\xfa\xfb\x78\x70\x60\x8b\xce\x53\x75\x11\x11\x28\x27\xaf\xb1\xaa\xf3\x89\x4f\x3d\x41\x6c\x49\xae\x55\xee\x6f\x53\x11\x25\x65\xd6\x4a\xcc\x27\xdc\x66\xf4\x34\xc2\x7a\xe6\x77\x94\x29\x06\x45\x96\x87\xb1\x15\x5f\x1b\xe7\xf8\x75\x7d\xa8\x5f\xaf\xa1\xd5\x0f\x1d\x6a\x9b\xc5\xc5\x30\x1d\x19\x38\x2f\x2e\x4a\x84\x7e\x94\x88\x97\x7a\x9f\x21\x4d\x93\x96\x32\xa6\x93\xca\x21\xe7\xd0\xb6\x91\x29\x03\x8e\x51\x4b\x05\x07\x30\x8c\x52\x37\x7a\xaa\x62\x09\x82\x34\xec\x49\x2e\x99\x85\x1a\x31\x1d\xc8\x19\xf2\x0e\xc2\x76\xda\x52\x5c\x97\x99\x59\xb4\x2b\x46\x84\x2f\x61\x32\x8f\x69\xa1\xc2\x63\x35\x7e\xce\xf2\x7c\x1e\x16\xf1\xc0\xa6\x8b\x49\xda\xaf\xc6\x25\x27\xf4\xea\x3f\xe1\x5c\xee\xbf\xf2\x9f\x7b\x5e\xdd\x70\x0c\x31\x08\xdf\xcd\x06\x71\x0a\xb7\x2f\xca\x71\xe1\x15\xff\xf9\x1d\x04\x61\x24\x83\x52\xe1\x38\xc4\x82\x85\xb8\x04\x23\xab\x5c\x72\x61\x64\x16\x43\x93\xc1\xd4\x89\x18\x84\x1a\xc9\x5f\xc5\x2f\xe3\x74\x00\xba\x0d\x03\xf5\x99\xaa\x74\xe6\xa9\xe9\x5b\x90\x3e\x21\x1d\x02\x0e\x68\x26\x99\xa0\x55\xcb\xeb\x9f\x90\x9a\xb2\x17\x68\x30\x84\x95\xec\x49\xf1\x76\x4d\x6e\xc6\x69\xd2\x2f\x82\x3c\x9b\xa9\x24\x92\xe8\x11\xe5\xcc\xc4\xb0\xe2\x68\x7b\x14\x46\x0c\xc9\x80\xfd\x40\x17\x4a\x58\xdc\xc4\xe7\x59\xa4\xa9\x8d\x83\x55\xa5\xab\xc0\x62\x47\xc2\x96\xdb\x20\xd7\x99\xd9\x38\x03\x61\xad\xfb\xd0\xee\xae\x07\x91\xef\x5e\xd3\xe5\xb7\x95\x08\xe5\x37\x3c\xf9\x09\x55\xd3\xd1\x1b\x23\x0b\xad\xae\x3f\xed\xec\xd6\xaa\x6d\xbb\x41\x42\x33\x0b\x9f\x9f\x79\xb0\xe0\x27\xff\xbf\x38\xdb\xe1\x90\x9c\x9e\x7c\x41\x89\x6d\xc4\x44\x62\x98\xe6\xf4\xec\x4a\x41\x0d\xa1\x86\x28\x5d\xd7\x61\x31\xed\x57\xed\x8a\x8d\x58\x00\x11\xce\xf3\x71\xd5\x17\x7d\x5c\xd5\xa6\x56\xc2\x28\x7a\xb4\xe5\x1a\xe7\xf6\x12\x7b\xcc\xf6\xa5\x89\x2a\x4f\xff\x1b\xcd\x6b\xf1\x91\xa2\xa0\xd9\x4f\xa1\xa0\x34\xe5\x90\x1f\x83\x19\x3e\x33\x69\x7d\x59\x6a\x85\x20\xea\x46\x85\xf9\x32\x19\x4a\x51\x84\x29\x57\x93\x20\xfa\x55\x66\xeb\x63\xf2\xe4\x80\xa6\x63\xce\x1a\xf8\xf9\xfb\xbb\x64\xa6\x25\x6d\xe4\x9d\xd0\x41\x11\xf6\x0d\x85\x14\x0e\xea\xb6\xd5\xf1\x92\x8a\x5b\x8a\xa8\xff\xd5\x70\xb4\xaf\xe5\x54\x71\xfe\x50\xfb\xdb\xef\xe3\x9d\x61\x94\xef\xe1\x9d\x5d\xef\xb9\x6f\x38\xc0\xa3\xca\xc8\x94\xbf\x02\xcf\xf5\x56\x47\x77\xe4\xea\x94\xe2\x62\x6a\xfb\x36\x0d\x83\x25\x9a\x0e\x9c\x59\x27\x75\x71\xee\x64\x53\x60\x97\xad\x8e\x7a\x49\xc4\x28\x51\xec\xb3\x63\x8a\xce\xe3\x58\x53\x73\x41\x9e\x8c\x92\x34\x4d\x56\x5a\x5e\x4f\xed\x83\x89\xca\x63\x7e\x50\x4b\xb6\x3f\xdb\x36\x71\x38\x32\x08\xb3\x60\xfe\x6f\x2b\xfe\x2f\x20\xf9\xa5\x29\xb7\x8e\xfa\x3c\xdc\x4e\x0b\x49\xb1\xe3\x54\x60\x5a\x73\xbe\x69\xec\x9a\x19\x99\xb8\x1c\x12\xf8\x72\x80\x2b\x1f\x87\xc9\xe7\x9b\x26\xc5\x5d\x92\x92\xa8\xe3\x81\x5c\x40\xf7\x63\x85\xef\x33\xf1\x6a\x3e\x0c\xe3\xc1\x7e\x65\xfd\xb6\x94\xf0\xcf\xad\x1f\xf2\x5c\x81\x31\xfc\x6b\x13\x05\xe8\x03\x57\x0b\x37\xb4\xe8\xac\x63\xae\xf5\x7d\x6f\x2a\xd9\xc2\x13\x0a\x4e\x7d\x5e\xb9\x86\x3d\x13\x2f\x71\xf0\x22\x6a\xf1\xd7\xa8\xaa\x2c\x3c\x1a\xbe\xf9\x62\x77\xd7\xa3\xcd\xbf\x41\x91\x91\x28\xca\xef\x74\x82\x5e\x79\xa5\x3d\x5c\x1d\x27\x41\x1a\xe6\x52\xef\x11\xe5\x24\x05\xd0\xad\x77\x3b\x1c\x3c\xd8\xce\x92\xd5\x9e\xf5\xdc\xe1\x38\x21\x98\xdc\x0c\x8b\x96\xc1\xe0\x38\xa8\x6e\xb9\x3c\x64\xd2\x8b\xc2\x01\x89\x4b\xd1\x01\x87\x34\x17\x22\x4c\xe4\x04\xce\x28\x4c\xd4\x7f\xe7\x32\xab\x69\x12\x45\xd3\x3e\xe9\xf1\x7e\xc7\xef\x4e\xce\x09\xc1\x9d\x64\xf8\x2c\x8e\xaf\x9b\xb5\x16\xd0\xa3\x07\xe6\xdb\x59\x32\xe5\xe3\xd9\x7d\x64\xb9\x99\x7f\x44\x65\xfe\xae\x35\x26\xa9\xc7\x45\x1a\x0c\x0d\xf3\xb2\x4a\x0b\x04\xcd\xb7\x34\x47\xa8\x36\xbb\x61\x92\x20\x69\xa0\xd7\x8d\x42\x16\xd4\x86\xf5\xc8\x8b\x24\x89\xd4\x0f\x97\x41\x0a\x81\xc4\xe1\x3d\x32\x6d\x00\xec\xfd\x19\x59\x33\x81\xa8\xf8\x71\x5a\x77\xf4\x56\xcb\x61\x56\x98\x88\x0b\xac\x5a\x8c\x40\x12\xb4\x3b\x81\xae\x87\x0e\xb5\xb3\x61\x11\x63\xd7\x61\x61\x9d\xe8\xa8\x55\x76\x42\x85\x42\x99\x59\x4e\x56\x2b\x54\x95\x4a\x1a\xe2\x8d\xce\x5f\x53\x14\x9d\xb9\x4d\x93\x81\x25\x71\xf1\x96\xe2\x81\xd1\x79\xd3\x8d\x46\xfa\xfa\xd4\x52\xbf\x58\x4b\xb5\xa1\x72\xa7\x20\xdf\x68\x5d\xda\x64\x34\xb2\x69\x10\x9a\xe8\xc1\x72\x5c\x98\xc5\x81\x1d\x02\x44\xf8\xbb\xd6\xbc\xd4\xe2\x45\x95\xd3\xe0\x58\xca\xa9\x79\x3a\x32\xae\x99\xae\xe2\xbf\xbf\x88\xe8\x16\x7f\x45\x2d\x4a\x82\x87\xb8\x05\xfb\x8e\x31\xda\xdb\x55\xf0\x9b\x4b\x9d\x07\x04\xa9\x96\xac\x4e\x29\x56\x96\x93\x38\xd4\x38\x35\xa1\x40\x08\x97\x3a\x4f\x86\x5e\xb6\x42\x5e\x69\xaf\xaa\xbf\xee\xc6\x43\x01\xa8\xf6\xdd\x49\x95\x6b\xcb\x95\x89\x76\xa3\x65\xc0\x09\x45\x96\xe7\x9b\xe6\x70\xc4\xaf\xdd\x55\x7e\x47\xbf\xbf\xba\xd7\xb7\xb3\x6f\x2b\xb7\x7d\x9b\x42\x68\x5d\x3b\xe1\x74\x03\xb9\x6d\x42\xb4\xad\x5a\xc1\x36\x34\xd7\xe8\x54\xb7\xa9\xc9\xa5\x88\x17\x43\xc4\xf7\x78\xaa\xef\x28\x66\xc9\xef\xb8\x24\x7a\x16\xbe\x2e\x9d\x69\xc2\xc7\xef\xeb\xf2\x5b\x2e\x15\x6a\xc6\x63\x43\xf0\xcf\x69\x97\x24\xf8\xaf\x1f\x43\xd3\x3d\x06\x60\xf7\x9a\x27\xda\xc0\xcc\x4b\x57\x97\x82\x1a\x8b\x62\x9a\x68\x4b\xb4\x94\xe6\x84\x7b\xa0\xdc\x84\x5c\x09\x15\x32\xe4\x96\xa7\x3d\x51\x7a\x50\x17\x6b\x3c\x2b\x0b\x07\xda\x51\xc8\x49\x39\x01\x0e\xd3\x22\x12\x91\xff\x8a\xc6\x72\x14\xd9\x78\x60\x33\xc5\xe8\x7d\x5b\xd3\x33\xdf\xae\x65\x32\xa8\x7e\xba\x98\x24\x9f\xdf\x6a\xa0\x5c\xcc\xa5\x55\xe2\x42\x16\xac\x86\xd2\x5d\xe4\x94\x2c\x72\x38\x97\xc8\x5a\x60\x41\xc1\x5c\x21\xa1\xf0\x0a\x98\x40\x24\xcd\xec\xb3\xd3\x8f\x77\x95\xd6\x1b\x07\xe7\x58\xa8\xe7\x9d\xf5\x8e\xc2\xb4\xa2\xfc\xca\x7f\x06\x03\xf7\x14\x85\x12\xb8\x06\x2b\x1c\x17\x0d\x74\x79\x31\x49\x72\x33\xb0\x2a\x35\xff\x36\x3d\x9b\x93\x1b\x2d\x07\x55\x9a\x38\x15\x75\x2d\xc4\xbb\x73\x3b\x0d\x47\x94\xc6\x86\xf1\x1a\x1d\x5f\x61\xa0\xf4\xd6\xfc\xf6\xa5\x26\xd1\x69\x68\x8b\xa8\x46\xc9\x56\x57\x37\x5c\x7b\x27\xec\xba\x3a\xad\xcd\x20\xb6\x51\x14\x52\xcb\xb0\x74\x4e\x28\x85\xb7\x8b\x2e\xd8\x1d\x14\x61\x1c\xdb\x4c\x62\x43\xa7\xa7\x5e\xfe\xad\xe8\xa9\xeb\xf6\x81\xd2\x30\x20\xab\x26\x75\x28\x95\x3e\xdc\x50\x39\xa7\xc8\x9a\xb4\xf4\xa5\xe6\x1d\xad\xe3\x34\xe1\x8b\xa5\x1d\xfc\x31\xdd\x9e\x5b\x1a\xea\x29\xdf\xee\x75\xab\xa3\x90\x28\xa7\x27\x8a\x45\x79\x4b\x19\xdf\x9c\x12\xce\xb1\x3b\xe1\xb0\x4c\xd6\xd5\x92\x21\xed\x21\x45\x60\x90\x8d\x13\x44\x4e\x53\x7e\xcb\x5d\xd5\x80\xc9\xd3\xaa\xea\x73\xa2\x21\x45\x78\xb8\x4d\x92\x73\x2d\xc5\xa0\xf1\x99\x42\x0f\x7d\x56\x73\x70\xa8\xef\x63\x3c\x8e\x58\x3c\x4f\x31\x4a\x7a\xd0\xc7\x19\x2d\x7c\x9b\x9a\xc1\x94\x67\x52\xbc\x46\x49\x34\xec\x85\x63\x4a\xce\xec\xac\xca\x59\xaf\x98\x34\x26\xf1\xbc\x0a\xe1\x1b\x0d\x20\xdf\x38\x18\xba\x19\xa4\x96\x9e\x04\xc6\x04\xe9\x65\xd0\x83\xc1\x0d\xfa\x48\x73\xbc\xff\x33\xc5\xf8\x98\x5a\x13\x80\xec\xdf\x35\x36\x20\x43\x27\x88\x67\xd9\x68\x7d\x6b\xc7\xfb\xcb\x3f\xc2\x42\x7b\x88\xb4\xe7\x04\x6f\xef\xc1\x05\x4f\x63\xcf\xe2\x09\xbe\x39\x51\x64\xda\x53\x6b\x1e\x93\x77\x9d\x9c\x47\xe9\x24\xa6\x34\x31\x96\x0f\xa0\xc2\xd8\xb1\x7b\xd6\x7c\x85\x79\x25\x8b\x6c\x9e\xdb\x74\x0f\x1d\x74\x42\x9d\xe3\xd1\x3d\xa2\xa1\x2d\xd1\xa9\xcf\x6a\x20\x45\x89\x03\xf4\x69\x84\x69\x22\x14\xe0\xd3\x6e\xa3\x30\xb2\xd9\x1e\x5f\xa3\x38\xcb\x5f\xe7\x28\x90\x5c\x82\x75\xa6\xab\x22\xce\x8b\x0a\x83\xc7\xa6\x8e\x3f\xe1\xcf\x9c\x82\x31\x82\x2f\x7b\xd5\x09\x05\x6b\x9e\xf8\xda\x49\x12\x04\x26\x23\x41\x0f\x16\xbb\xd3\xa0\x7e\xbe\x56\xab\x83\x90\x8e\xa5\xaf\xab\x3b\x09\xaf\x6b\xd5\x13\x6e\xcc\x91\x45\xd6\xd0\x0b\x17\x27\x0e\x8a\x28\xf2\xdc\x8a\x3b\x79\x43\x39\x0f\x23\x13\x0c\xc3\xd8\xf1\xae\x20\x2c\xbd\x8e\xdd\x8c\x15\xcd\x9c\x3b\x58\xf9\x2c\x41\x29\x79\x14\xda\x55\xaa\x7f\x5e\x06\xf6\xff\x69\x40\xac\xbe\x5c\x9e\x57\xa9\xc3\x2a\xba\x0e\x29\x45\xf9\xe5\x1f\x2b\x8c\x73\xca\xe2\xd8\xfe\x8c\x67\x77\x79\x17\xf9\x59\xc4\x9f\x6f\xe0\xb1\x44\xed\xb4\x5c\x17\x7c\x4d\xc5\x3c\x04\x06\x27\x9a\x2a\xe8\x44\x17\x5d\xa4\x68\x18\x92\x52\xb4\x77\x31\x2e\x3a\x68\xd4\xc8\x8e\x7a\x68\x00\x66\xe7\x02\xc8\x69\xf6\x75\xf9\x46\xa1\xbe\x4d\x24\x61\xa5\xa4\x93\x6e\x63\xa6\x24\x63\x50\x6b\x24\x6f\xcf\xcd\x3d\xa1\x2a\xa2\xe7\xc9\x53\x02\x55\xd2\x67\x08\x51\x70\xdc\xde\x55\x8d\x64\xdc\x28\x8f\x51\xf8\xef\x27\x0a\xa3\x7b\x5c\x45\x74\x7f\x8a\x05\x03\xeb\x0c\x36\x62\xc7\xda\x56\x0e\x3f\x53\xaa\xd3\x58\x21\xf2\xb9\x34\xd9\xfd\xb7\x1c\xd0\xa7\x1c\x1a\xae\x4a\x71\xa8\x8a\x4d\xf7\x61\x47\x97\x94\x14\xce\x14\xed\x45\xac\xdf\xa4\x05\x7d\xcf\x3a\x44\x14\xd4\xa3\xa6\x54\x5a\x76\xa2\x72\x78\xdb\xa8\x43\x49\x63\x65\x43\x9b\x72\x90\x8c\xc6\x26\x75\x5a\x6e\x92\xba\xf0\x36\xb6\xce\x42\xf2\xcc\x33\xa4\xe2\x4b\x33\xed\xb2\xe0\x0e\x52\xbe\x55\x93\x24\x7c\xe5\x15\x11\x07\xf2\xed\x88\x95\x0e\x5c\xbe\x51\x95\x0a\x12\x96\x27\x49\x33\xd6\xdf\xa1\x21\x15\x2d\x1e\xbf\xa2\xfb\x24\x86\x6d\x24\x09\x88\x46\x80\x0f\xa8\x52\xce\xd7\x0a\xb9\x96\x27\x59\x26\x4a\x69\x98\xdb\x0f\x29\xd0\xe4\x6b\x05\x25\x5e\x48\x80\xb5\xaa\xa8\x60\xf0\x4d\xe7\x29\x75\x1a\x38\x18\x07\x12\x18\x68\xf6\xd8\x54\x54\x01\x9b\xb5\xc4\xf0\x2b\xaf\x94\x7b\x65\x64\xfb\x21\x80\x11\xbf\xf4\x25\xb6\x02\x68\xe0\x16\x42\x3a\x5a\x05\xac\x66\x50\x9b\xb7\x43\x87\xa8\x99\xa8\x6f\x23\x21\x0f\x44\x26\xe8\x33\x2c\x5c\xbe\x51\x9c\x00\x59\x30\x34\x76\x71\x91\x51\x5d\xd8\x0b\x10\x1b\xe6\x6b\xe5\xe2\x71\xbb\x1c\x95\x55\xb0\x1d\xd9\x3e\xa1\x46\xf2\xa9\xde\x29\xa0\x21\x13\xfe\x56\x1a\x26\x24\xf8\xbf\x4f\x8b\x1d\x07\xef\x69\x2d\x58\xc9\x0c\x75\x2e\x11\xf5\x82\xb4\xa1\x6d\x63\x6f\x49\xfa\xb3\x9c\x24\xc4\x91\xff\x1c\x58\x4c\x86\x78\x75\x1e\xf0\xfd\x20\x53\x8a\xb8\x01\xb1\x00\x8c\xcd\x0d\x5d\xac\xdb\xd2\x48\x8c\x3c\x89\x2c\x78\x70\xb8\x4f\x5c\x89\xa2\xdc\xc6\xce\x13\xb3\x42\xc7\xac\x64\xe5\xbc\x46\x3b\x28\x8b\x24\x73\x27\xd1\x7e\x3e\xb4\x26\x67\x4d\x51\x2e\xa7\x91\x75\x90\xd2\x9a\xc3\x2f\xda\x34\xb6\x29\x90\xa6\x80\x7e\xfe\x1f\x58\x5c\x7c\xa3\x04\x29\xf8\x2b\xa7\x7d\xf8\x77\xa3\xe3\xb9\x05\x37\x99\x74\x56\x01\xf4\x6f\x37\x4a\xc7\xf6\xc2\xd2\x11\x98\xf2\x01\x1e\x1a\x25\x18\x02\x84\xb9\xc4\x01\x76\x73\xe2\x0b\xdd\x36\xb6\xa3\x55\x0a\xe8\x9c\x30\xb5\x23\xd6\xdb\x02\x8d\x9b\x1c\xdd\x34\x39\x72\xf2\xcb\x78\xf4\x53\x12\x96\xa5\xf1\xc0\x2c\xb2\xbe\x07\xdf\x28\xbe\xfd\x9e\x59\x9d\xf2\xac\x6c\x60\x9b\x71\xa6\xb0\xfc\x08\xcc\x5f\x53\x47\x4e\xdb\x8e\xc6\x43\x53\xc6\xa9\x3a\xb2\x7b\x5f\x47\x76\xef\x77\x9e\x56\x4d\x75\x5f\x29\xc2\x94\x1c\xbf\x8c\x18\x4f\x64\x76\xd5\x82\x3e\x86\xd3\xd0\x75\x86\x3a\x21\xc5\xcb\xaa\xa7\xf0\x9a\x9b\xf7\x7e\x38\x28\xed\xda\x54\x55\xbe\xd8\x75\xdd\xde\x53\x8a\x31\xe7\xd5\x16\x0b\x86\xc6\xcd\x4a\x85\xc1\x0e\x01\xe6\x4d\xe5\xd6\xdd\xea\xf8\x3a\x62\x2f\x89\x13\xca\xbd\x55\x5a\x89\x91\x27\xbb\x4d\xeb\x8d\xf2\x95\x3f\xff\x74\xd7\x17\x12\x4a\xb7\xd0\x95\x1e\x4c\x9a\x26\x2b\xd1\x6a\x8b\x0e\x79\xec\x9b\x9f\xe0\x84\xe0\x9b\xa6\xb6\x1c\xe6\x76\x68\x39\x61\xac\xf7\xf0\x11\xbe\xf9\xdc\xca\x57\x96\x2c\x87\x16\xce\x3e\x9c\xaa\x9b\xda\xc3\xba\xa9\xcc\xed\x28\x89\xa9\x93\x07\x89\x25\xb4\x67\x30\x42\x9c\xcf\x49\x86\x04\x55\xe2\x31\x4c\x9b\xf4\xde\x3e\xea\x92\x04\xd4\xc1\x8a\xec\x18\x03\xc8\xab\x68\x72\xcd\x5a\x91\x2c\x49\xc6\x1a\x46\x88\x91\x90\x7c\x53\x4b\x23\xcc\xbf\x58\x6e\xa8\x81\xa2\x78\x78\x00\x19\x27\xbe\x69\x68\x8a\x9e\x6d\x67\x36\x8a\xa6\x69\xc4\x9c\x40\xc5\xd1\x03\x0e\xe6\xdc\x72\xa2\xa9\xc8\x80\x62\xd6\xef\xd7\xf6\xf2\xb3\xed\x41\x18\x91\x57\x8f\xe7\x65\x02\x35\x85\xe7\x3b\xa9\x5b\xbc\x4d\x3f\x5a\x9d\x51\xc9\x30\x44\xd6\xdc\xc7\xf0\x31\xfb\xeb\xfc\x5f\x88\xfc\x60\xc4\xd9\x49\x15\x6e\x50\x85\xbc\x2f\x7a\xc4\xd9\x94\x4e\xfb\x27\xe6\x72\x87\x13\x65\x77\x1c\x7e\x3f\x52\x34\x27\xc7\x6a\x6b\xea\xd0\xa1\x76\x96\x04\x41\x69\x07\xbd\x73\xfb\xfb\x2a\xe4\xfc\xfd\x8e\x96\xbe\x0f\x47\x26\x0d\xa3\x55\xea\x90\xc4\x0a\x01\xd6\x03\x48\x19\x58\x40\xfc\xd4\x4d\x9c\x53\x92\x27\x71\x9d\x00\xc9\xc8\x32\x87\x05\xf6\x0a\xb3\x39\xc8\x09\xad\xda\x2a\x6f\xee\x90\xd2\x4d\x4d\x90\x27\x29\x79\xcb\xd2\x70\xa8\xbc\xb0\x8b\x0a\x91\x74\x4f\xe5\xd0\x36\x3b\x1e\x63\x71\x4d\xc5\x4d\xc3\x64\x6c\xb3\x7d\x64\x60\x1c\x5e\x4a\x21\xb5\x5a\xfe\xdf\x71\x16\xa2\x2e\xfc\xbb\x13\x5f\x51\xff\x5d\xe4\x41\x71\xb2\xa1\x0f\x1e\xa3\x3f\xbd\xe6\xfd\x9f\x9b\x8a\xf6\xc3\xa7\x31\xf7\xd1\x27\x9d\xf8\x49\x39\xcb\x30\xb3\x97\x31\x6a\x08\x38\x70\xa0\xe3\x7b\x50\xbf\xe0\x6b\x40\x45\x94\xc4\xb9\xb4\x60\xde\xc5\xf8\x49\x7f\xac\x5f\x31\xfd\x70\x39\xec\x5b\xe2\x88\x2f\xff\x9a\x53\x5c\x34\x75\x92\xee\xda\xb9\xbf\xc0\x21\xd0\xaf\x10\xe6\xa8\x6f\x3f\xa5\x22\xf1\xbe\x0d\x42\x90\xda\x1d\x15\x6c\x15\x57\x00\x84\x4f\x7b\x4a\xcb\xfa\x7b\x59\xe1\x2b\x8a\x5f\x69\x37\x91\x98\x22\x22\x9b\xea\xca\x21\x3d\x4e\xc3\xd7\x2d\xf7\x52\xc2\x35\x3d\xc9\x1b\x46\x9a\xfe\xe9\x85\x60\xab\x81\xf8\x86\x17\xb5\x8d\xa1\xe0\xbf\x72\xb9\x00\x13\x99\xe7\x14\xe8\xe8\xac\x46\x7f\x9e\xad\x55\x46\x0e\x1e\x6c\xf7\x43\x3b\xa5\xd5\x69\x68\x6b\x88\xaa\x2a\xed\x63\xd1\x7b\x72\xbd\xd8\xa9\xe9\xdb\x91\x49\x51\x8c\x74\xe5\x06\x4f\xf4\xd2\x44\x8f\x12\x0c\x4d\x19\x8a\xd1\x31\x5f\xa1\x37\x07\x18\xe0\x2f\x61\x0b\x11\x3b\x20\x51\xc3\x41\x54\x47\x80\x01\xbd\x22\x0b\x63\x9b\x65\x51\xb8\x84\x5c\x12\x90\x33\x0f\xd3\x98\x38\xb5\x36\x47\xc1\x79\xbf\xb9\x75\xc0\x9a\x3e\x6f\x4f\xb8\x9b\xdb\x15\xea\x20\xcd\xbf\x54\xfb\xfc\x33\xcf\xb4\xc7\xc6\xcb\x14\x89\x51\x54\xf5\xdf\x93\xca\xde\x07\x49\x31\x4e\xd0\xe5\x0e\xf8\xc5\x0d\xc5\xb6\xc8\x18\x2c\x64\x06\x3e\xa9\xd3\x93\x1d\x6e\x3f\xcb\x3c\x90\xb2\x7a\x5b\xae\x43\xfe\x6b\x15\xc2\x3c\x55\xbf\xac\x90\xa2\x7f\x0d\x6b\x59\x36\x42\xfd\xac\x98\xa3\x1e\x9c\x69\xff\x7c\x77\x34\x3f\x0f\xb8\x64\x04\xbf\xda\x52\x04\x51\xfe\x0d\x49\xd9\xb5\xbf\xd7\xe3\x0d\x91\x18\xc5\x84\xde\xd6\xb0\xac\x33\x9a\x42\xff\x56\x47\xe7\x86\x7c\xde\x8d\xc1\x31\xb8\xf9\x0f\x4d\x05\x5c\x6a\xf4\xdd\x51\xc0\xad\xea\x4b\x6a\x50\x77\xf1\x6a\x38\xe3\x7b\x2b\x38\xfa\x43\xb9\x16\xd1\x0f\x2a\x72\x97\x14\x23\xc4\x5f\xea\xdd\x72\x51\x35\x17\x99\x72\xf1\x2d\xdb\x1d\x05\x36\xd5\x01\xf1\xa4\xb2\x15\x51\xb8\x6c\xa5\x61\x47\x02\x8e\x0b\x18\x0e\xa9\xc9\x3e\xae\x82\x4a\x98\x96\x19\xb5\x26\x7f\x5b\x17\xa0\x2a\x4b\x05\xb9\x52\x09\x61\x15\xac\xf8\x64\x0d\x6c\xba\x70\xa0\x9d\xda\xc5\x32\x62\x6d\x79\x35\x44\x16\x98\xe2\x9b\xc9\x7f\xd2\x40\x3c\x93\x9a\x60\xc9\xe6\x0c\x91\xf3\xad\x2f\x68\xec\x91\x62\x2d\x3d\x9f\x24\x68\x76\xee\x93\x9f\x6f\x8f\xa3\x24\x77\xe9\x2b\xec\x63\x0e\x78\xf8\xa6\xe3\xe5\x1a\x83\x22\x7f\xb4\xe5\x68\xb0\x59\xd5\x19\x2e\xd8\x87\x14\x98\x21\xcf\x71\x9b\x70\x1f\x58\x41\x7f\x44\xa3\x80\x64\x27\xef\x3f\x57\x8e\xf2\x20\xd5\x35\x0a\x9e\x58\xff\xa1\x74\x5d\xb6\x2f\xd1\xa2\x46\xc5\xef\x1d\x54\xca\x34\xb5\x27\x0e\xb7\x3d\x68\x19\x60\x6a\xda\x89\x12\xa5\x65\x27\x90\x09\xc0\x9a\x06\xdc\xf4\x47\x5e\xfa\xcb\x61\x2a\x95\x9c\x4f\x03\x53\x6f\x94\xac\xf0\x07\xe0\x07\xfd\x2e\x16\x2a\xdf\x34\x02\xe0\x41\xf8\xe7\x36\x02\x8e\x00\xb8\x44\x7c\xdd\x48\x4f\x9a\xf4\x6d\x2a\x22\x5b\x18\xaf\x6d\x85\x41\xd8\xae\x59\x6d\x2a\x34\xfd\xcd\x5f\xfe\xe2\x2f\x2c\x68\x95\x6e\xa2\x37\x10\xc5\xee\x86\xc4\x25\x27\x48\x14\xc3\xaa\xaf\x2f\x6e\x28\x3f\xfc\xbf\xfc\x47\xff\x90\x60\xe4\xce\xb7\x74\x10\xf6\x93\xce\xbf\x4e\x2d\x5a\xc6\xf1\x9e\x4c\xaf\xde\x51\x2e\xf4\xa7\x0a\xea\xbf\x68\x82\x7c\x3f\x05\x88\x8e\x56\xd8\x4b\xa8\xff\xdf\x5a\xc7\xe1\x42\x15\x99\x53\xf5\x91\x5e\x98\xab\xfa\x45\x4a\xbc\x72\xd6\x9f\xfd\x65\x50\x2a\x4b\xa4\x61\x10\x82\xc4\x25\x9f\x04\x5b\x4e\x5f\x26\xe0\x72\x9f\x71\xcc\x56\xb3\xdc\x8e\x9e\xa0\x75\xeb\xc4\x55\x5e\x90\x36\x95\x8f\x69\x07\x60\xbb\x5e\xef\x28\x15\xba\x5b\x78\x05\x51\x3c\xa7\x57\x40\x31\xee\x07\xe4\xda\xe1\xe3\xef\x90\xfa\x37\xcc\xfb\x9f\xb3\x5b\x81\x1d\xf8\x86\xc2\x56\xde\xc4\xbb\x55\x24\xa1\x80\x3c\x38\x46\x1e\xbf\xdb\x23\xae\x0c\x77\x95\x36\xa3\x83\xaf\xbb\x5a\x3b\x23\x48\xb0\xfd\xb6\x35\xcc\xe9\xac\x2a\x4a\xfe\x83\xe7\x7e\xb6\xa5\x22\x9f\x0d\x5a\x51\x7c\xdd\x71\x4d\x75\x45\x4a\x8c\x83\x92\xc3\xfe\xac\xa3\x44\x22\xb8\x90\x49\x3e\xe1\x9f\x3c\xde\x55\x00\x69\x44\xd1\xcc\xd8\x83\xfc\x2b\xf2\x5a\x9f\xe0\xd1\x04\xa0\xeb\x91\x6c\xa7\x15\x3a\xef\xf1\x35\xdf\x43\xbf\xd1\x24\x66\x9e\x87\x59\x56\x60\x75\x0b\xe5\xad\xaf\x29\x9d\x50\x35\xa5\x65\xe2\xd7\xf2\x4d\x8d\x13\x5f\xfc\x3a\xd7\x51\xe8\x60\x66\x66\x92\x16\x7e\x0d\x22\x1c\x24\xfd\x29\xd5\x78\xc5\x71\x84\xd0\xcc\x10\x7f\x1f\x70\xf5\x77\x14\xa7\x92\x19\x0c\x52\xb3\x6c\x72\x3b\xe5\x21\x73\xd7\x95\xbe\xdf\x06\x0c\x1a\xea\xc1\xc7\x14\x84\x33\xa1\x53\x8b\xde\x0c\xb1\x0e\x67\x2a\xf8\x46\x61\xfc\xc7\xe1\x00\x5d\xb6\x62\xe0\x68\x9a\x3f\xcf\xc2\x3d\xdb\x5e\x09\x9d\x4a\x1f\x4b\x33\x62\x2a\x44\xa7\xf1\xf1\x2a\x83\x7c\xc0\xfc\x7c\xce\x51\xf2\x74\xf0\x17\x55\x26\xc7\x8c\xf3\x19\x45\x33\xb1\x39\xd1\x88\x5e\xd6\x01\x64\xe6\x61\xbc\x32\xfe\xee\x7b\x48\x27\xf0\x4d\x1d\x00\x37\xdb\xb6\xaf\x69\xd6\x28\xd8\x2d\xf4\xa3\xf0\xb5\xcb\x3b\x65\x41\xb2\xb8\x68\xfb\xd3\x5e\x71\x99\x9d\x0c\x5d\xab\x46\x62\x84\x6b\x83\x38\x3a\x76\xd5\x08\xdf\x4a\xcf\x74\x31\xb5\x58\x58\x52\x74\xf5\xfd\xad\x5b\x2e\xba\x5c\x35\xa9\xc8\x60\x39\x18\xb8\x5f\xd6\x5b\xb5\x33\x69\xf6\x08\xe5\x28\x62\x2e\xa2\xc3\x7c\x7d\xd4\xf1\x69\x9d\xcb\x1a\xf8\x7a\x5a\x99\xe7\x15\x93\x22\x2c\x60\x81\x36\x7a\x1c\x54\x05\xf7\x75\x7d\x7e\xae\x8a\x7b\x35\xe1\x68\xca\xcb\x45\x1e\x87\x59\x72\x15\x41\x27\x43\x72\xbd\x86\xb1\x3e\x78\xb0\x3d\xb4\xa6\xff\x95\xc2\xa4\xb9\x63\x13\x71\xd4\xc6\x9e\x80\xb9\x4e\x1b\x79\xe8\x50\x3b\x37\xf1\x12\x7f\x84\x05\xd2\xe8\x05\x45\x2c\xcd\xaf\xdc\x15\x33\xa0\x06\xd0\x97\x9d\xbf\x48\x1f\x72\x8e\xa4\x43\x60\xac\x4f\x54\x2d\xfc\x43\x6c\x51\x01\x88\xb4\x9c\x2a\xc5\xba\xa6\x0b\xb7\xe9\xd8\x82\x63\x53\x00\x3e\xbf\xa2\xd0\x6a\xbf\x52\xcb\xaa\xcf\xbf\x78\x18\x8c\x8e\x94\x50\x2c\x3f\xb6\x4d\x56\x69\x7b\xbd\x4e\x42\x71\xb0\x9d\xe5\x45\x1f\x95\x47\xf6\x10\x95\xe2\xe1\x6f\x77\x1e\x56\x32\x54\xc1\xd2\x94\x47\xd7\x5e\xef\xa8\x0c\xfc\x44\xed\xd3\x9f\xd4\x12\x69\x0b\x07\x16\x40\x81\x12\x12\x0c\x96\x21\xbc\xad\xb9\xb9\xed\x4b\x8d\x3e\x48\xdf\xa2\x69\x30\x9d\xf2\xa8\xef\x5b\x0a\xf5\x8d\x22\xd5\xf6\xba\x6e\x74\x49\x8a\x71\xc4\xcd\xfc\xb2\xe0\x3c\x2a\xd6\xab\x12\xa4\x2c\x10\xc5\x73\x8a\x74\xd7\x31\xcc\x02\xdf\xd4\x70\x7a\xa5\xe7\xca\x48\x67\x40\x69\x24\xe7\xaf\x36\xe4\x45\xb7\x8d\x86\x60\x87\xf9\xdc\xfe\xc4\x06\xea\xea\x6c\x1c\x85\xf9\x0c\x3d\x03\x4a\xb8\x97\x15\xab\xdf\xd7\x27\xde\x7b\x01\x0f\x8b\xf4\x32\x91\x0d\x95\x66\xa6\xc7\x5c\xcc\x6f\x47\xa1\x4d\xc5\x41\x16\xba\x20\x5a\x73\xc2\xcb\xfd\xb0\x83\xc3\x87\x4b\x2c\xf4\xcd\x2a\x1a\x13\x85\xd3\xdb\x68\x40\xc7\xb6\xcd\xb8\x74\x10\xa5\x37\x58\x48\x7e\xa6\xbc\xf2\xf9\xc7\x0e\x97\x99\x0d\x6d\x94\x5b\xcf\x2e\x80\x03\x03\x06\x82\xaf\x55\x75\x74\x85\xd2\xfb\x8c\x5a\x41\x77\x1e\xa7\x59\xf9\xa6\xf3\xb8\x9a\xec\x78\x31\x0a\x39\xf8\x90\x1e\x0e\x5d\x38\x6c\x90\xd2\x1a\x05\x81\x01\xf0\x58\xf1\x32\xcc\x3b\x5e\x86\x06\xe5\x65\xd1\xd3\x48\x52\xcd\x26\xf1\x89\x62\x93\xf8\x44\x57\x64\x2c\x31\x2a\xd2\x48\x38\x36\x0f\x4f\x27\xa7\xa9\xf4\xae\x68\x39\x9e\x3c\x09\x96\x9e\x52\x28\xf2\xf3\x9a\xe8\x9c\x33\x5a\xa8\xd9\x5e\xc2\x13\xe3\xcf\xde\x44\x98\x04\x98\xca\x7e\x92\x1f\x47\x91\x78\x77\x57\x95\x8c\x3e\xc0\x51\xee\x6a\xb0\xb3\x47\x38\x79\xcc\x84\x25\xd2\x6f\xaf\x74\xc5\x2f\xe3\xb0\xe3\x78\x86\x19\x58\x26\x5e\xe9\x62\x53\x79\x90\xb7\x95\x63\x7d\x1d\xf5\x06\x49\x23\x94\x03\x2d\x94\x7f\x2d\x47\xdc\xb3\x0d\x4f\x59\xe2\x26\xc5\x4a\x69\xd2\x20\x8c\x93\x81\x8d\xc3\x60\x4a\xf5\xf8\xfd\x49\x95\x92\xac\x7c\x33\xe6\xc7\x50\x7d\xbe\x69\x51\xee\xe8\x3d\x1e\x42\x87\x67\x57\xcc\xde\x2f\x73\x01\xef\x43\xbc\x36\xdf\x90\x03\x2a\x22\xfb\xde\x8d\xb9\xa4\x24\x8d\x97\xc3\x24\x72\xdd\xc0\x22\x2d\xde\x72\x52\x78\x75\x9e\xfe\x67\xdb\x83\xb4\x18\x8d\x4c\x8c\xe4\x36\xd7\x0d\x3b\x9a\xc1\xe9\xb4\x56\x27\x1e\x9b\x34\x1f\xda\x90\x61\x01\x2c\x2a\x8a\xc5\x22\x0a\xa3\xaa\x67\x3e\x59\x89\xf3\x22\x8d\xa7\x5b\xaa\xe9\x98\xd6\x8e\xc0\xbb\x69\x51\xc0\x8e\x41\x00\x4a\x98\xc8\xf5\x49\x7a\xe4\xef\xff\xcc\x7f\x5a\x4e\xa2\x13\xdc\x77\x4d\x60\x7f\x41\x4b\x84\x13\x65\x1d\x92\x81\x54\xfd\x64\xc2\x45\x7b\x0c\xc0\x3d\xd5\xfe\xb7\xc0\xf9\x8e\xbf\xc0\x12\xe5\xb6\x33\x3c\x0d\x72\x3b\x9f\x90\xce\x24\x82\x9f\xb7\x29\xf0\x70\xe4\x0b\x65\x54\x05\x4f\xf0\x1d\x9d\x7d\xba\x32\x69\xfd\x93\xc3\xb2\x5c\x29\xd6\xc0\xb2\xf9\x4d\xd2\x87\x44\xdc\xf1\x7b\xcc\xe3\x8d\xbb\x77\x3b\x0a\xb4\x77\x8e\xd6\x2c\x56\xce\x9f\x76\x76\xff\x2d\x4e\x1d\xfd\x0f\xd4\x83\xea\x9a\xd7\xe6\x5d\x38\xf3\xf1\xc4\x0b\x64\xfe\x3a\xd6\x0c\x6c\x31\x70\xb5\x78\xf3\x53\xf0\xfd\xe0\x31\x9e\xa5\xf5\xc3\x21\x4f\x47\x71\xee\xbc\x8b\x70\x42\x34\xc4\x31\xf7\x88\xa6\xae\x4f\x88\x5f\x13\xd5\x81\xf7\xb0\x65\x90\x6b\xf8\xa8\xd3\x3a\xf2\x22\x6f\x93\x6f\x97\x71\xfd\xf6\xba\x3f\x52\x4c\x11\xc3\xd8\x31\x0f\x49\x85\x93\x64\xa7\xc2\x8c\x23\xc8\xb0\x71\x96\x10\x3e\x85\x56\x2f\xcc\xc3\x55\xdd\x80\x77\x55\x15\x4a\xb3\xc8\x04\x4b\x1a\x9c\x72\x4a\x55\x94\x4f\x4d\x7e\x5a\x21\x5c\x23\x1b\x24\xa3\x51\x11\x87\x01\xab\x7e\xbc\xe4\x84\xa2\xd7\xc9\x3a\x34\xf4\x61\xdb\x91\xcd\x2d\x77\xfc\xc8\xa9\xe1\x53\x75\x1f\xab\x7c\x78\x90\xda\x6c\xc5\x46\x11\x30\x79\xf0\x10\x91\x94\xe1\xeb\x9a\x23\xfa\xca\x2b\xed\xbf\xf9\xa5\x5f\x9e\xff\xd2\x17\xe7\xf6\xb5\x34\x71\xa6\x97\x79\xc1\xb6\x17\x4a\xbb\x72\x04\xb6\xb7\x55\xf8\xf9\xa3\x89\xaf\x39\xac\x61\xa5\x3b\x71\x76\x4f\xd1\xf9\xed\x9a\x5f\x43\x49\x8c\x65\x13\x15\x2c\xe7\xe2\xea\x49\x88\x67\xf9\xba\xa9\x5d\x78\xe8\x08\x36\x3e\x07\xe1\xa7\xa5\x0f\xd3\x72\x06\x5f\x10\x64\xfe\x9f\x61\x06\xf9\x46\x9d\x40\xd4\x53\x92\x3d\xa2\x1c\xeb\xb7\x11\x90\x38\xa6\xed\xa3\x07\xf8\xc0\xb8\x84\x95\x8f\x12\xdd\x79\xca\x22\x61\x6b\x5e\xd6\x79\x8d\x8b\xb0\x00\x28\xb5\x6d\x69\x25\x57\xe4\xb4\xe0\x7c\xbf\x49\x36\x83\xbf\x0a\xe7\x95\xcb\x77\xb8\xec\xf7\x15\x0c\xa4\x88\x56\xd1\x1b\xf0\xf7\x56\xf2\xaa\x79\x6a\xf6\x62\xbf\xb0\x11\x9b\x68\xf1\x27\xfa\x72\x6c\xd1\x53\xf0\x7e\x5c\x1b\xbf\x03\x22\x32\x6d\x84\x80\x96\x3c\xa4\xf1\xa4\xaa\xc5\x95\x61\x4b\xb6\x48\xb2\x5a\x8e\x78\xfd\xae\xaa\xc5\xdd\x6d\xe0\x09\x1b\x27\x51\xc8\xce\x2b\x77\x7f\xfd\x6f\xb4\x43\xf8\xba\x89\x4e\x38\x36\xe3\x61\x3e\x04\x78\x00\xc7\xd6\xf1\x8e\x2a\x51\x1d\xaf\x39\xee\x47\x0f\xb4\x93\xc5\xc5\xcc\xe6\xb9\x24\x48\x45\xb5\x90\x4c\x29\x56\xf6\x15\x3a\xab\x50\xb4\xde\xd5\x7d\x54\x95\x4a\xe3\x25\x2e\xc5\x8b\x4a\xa7\x6f\x2a\xe1\xe2\x20\x9b\xcd\x06\xc5\x88\xd9\xf6\x8a\x35\xdc\x42\x23\x34\x20\xe5\xc7\x9d\xbe\x56\xb9\x92\xe4\x5d\x1b\x84\x47\xf3\x22\x5d\xfc\x2b\x91\xb6\x35\x95\xa2\x87\xa6\x3f\xad\xf2\x9f\xc7\x31\xd3\x70\x9d\xfe\x40\xc5\x4e\x6b\xd8\x24\x38\x20\x4e\x34\xe9\x95\xd8\xd7\x02\x6b\xfb\x15\xe4\x25\x36\xa3\x30\xde\x2b\x98\x72\x91\xe5\xc9\x28\x03\xe7\x88\x04\x74\x9e\xb1\xe1\x82\x42\x1d\x0d\x4c\x3e\x74\x7d\xdd\x12\x77\x1f\x57\x82\xa8\x37\x71\xf4\x08\x78\xf6\x61\xa5\xc5\xf3\x3a\x5a\x6f\xd4\x2e\x77\x5b\x9e\x36\x1e\xeb\xf0\xd3\x18\x89\x26\x7f\x13\xfe\x25\x20\x8e\x5d\x0c\x93\x03\x7a\x96\x8f\x2e\xe9\x31\x8f\x13\x60\xa5\x07\x99\x79\x8f\x46\x1b\xa4\xe1\x68\xd4\x52\xbd\x6c\xe7\xb0\x1e\x05\xf4\x2e\xd9\x87\x41\x6a\xfa\x44\x6c\x7c\xe8\x90\x67\xcd\x70\x61\xef\x19\x65\x74\xc6\xc3\x30\x0a\xc7\xd3\x74\x04\x20\xc5\x88\x9c\x17\xfc\x40\x14\x50\xf8\x9a\xde\x90\xff\xa6\x92\x8c\x0a\x52\xe4\x8d\xe1\x6a\x6c\x10\xfe\x83\xaf\x6b\xc0\x85\x17\xe6\xa0\xd7\x5b\x1e\xee\x58\x8d\x8c\xfc\xe7\x9b\x8e\xaf\x7e\x04\x69\x11\x3a\x98\x1c\xd2\x9c\x6f\x2a\xe1\xd3\x37\x1d\x79\xb1\xe9\x8f\x42\xd2\x15\x43\xea\x49\xb8\x8a\x94\xec\xae\x4f\x92\x24\xe9\x92\x1d\xed\x51\x34\x71\x27\xe8\x1c\xc1\xc1\x7f\x87\xe0\x8f\xd8\xb2\x27\x74\x1b\x87\x4a\xe4\xfd\x78\xe2\x5b\xc5\xde\x53\x48\x9a\x51\x48\xac\x26\xaa\x69\xf7\x94\x22\x8d\x3d\xd5\x84\x67\xe9\xa7\xe1\x32\x6f\x78\x99\x18\x85\xbb\xbe\xa8\x2a\x6b\x77\x14\xd6\xcf\x44\x91\x1d\x40\xe8\x70\x8f\xe2\x63\xbf\xa3\x9e\xf7\xde\xc4\xf7\xbe\xa2\xc5\x92\xff\x5d\x83\xf9\xee\x00\x58\x26\xb6\x42\x4f\x68\x64\x90\x9f\x94\x2c\x9c\x8f\xdc\x2f\x6a\x68\xda\x31\xad\x80\x74\x43\xb3\x93\xd8\x41\x11\x2b\x14\xe7\xa4\xe3\x9b\x22\x26\x4d\x79\xb5\x51\x18\x85\x79\x69\xbd\xa6\xbc\x8a\x34\xc0\x7a\xb0\x3a\x1b\xaa\x9e\xf6\x2d\x15\x74\x8e\x92\x3c\x71\x0a\x64\xc2\xbc\xd0\x9a\x53\x1d\x4f\xe5\x44\x63\x70\xb7\x15\x1f\x55\xdf\xe6\x36\xc8\x77\xa8\xc4\x38\x3a\xfb\x0b\xea\x17\xd2\x30\x58\xb2\xab\x2d\x95\xa1\x3b\x5f\x15\xe2\x79\x5c\xd1\x15\x8d\x46\x26\x58\x02\xe3\x1d\xc2\xfa\x1b\x38\xe5\x24\xc9\xe2\x85\x7a\x4e\x7a\x99\xc5\xb4\x74\x96\x84\x53\x0f\x6e\x3c\x43\xd4\xf8\x46\xa5\x57\x33\x9b\x67\x33\x3e\x96\xdd\x45\x71\x23\x6c\x06\x58\x12\x39\x96\xa3\x5f\xe2\x7f\xd7\xdf\xb5\xee\x3a\xfb\x83\xa8\xc8\x83\xe1\x94\xc7\x2c\x6c\xe2\x84\x17\x36\xc7\x96\x53\xed\x3e\xab\x46\x83\xa4\x41\x23\xae\x3e\xc3\xab\xba\xa6\x0c\xcb\x86\xb6\x8e\x08\xc9\xe0\xa8\xfe\xf9\xa4\xc2\x24\xa2\x1a\x5f\xde\xd6\xf2\x04\x71\x38\x62\x4f\xcc\x35\xdf\xa1\x9b\x83\xaf\x55\x2f\xe5\x57\x0a\xdb\xb3\x41\x92\xee\xf5\x2b\xeb\x0e\x10\x80\x0e\xb2\x57\xba\x3b\x28\xe9\x02\xcb\x87\x6d\xf5\x13\x78\x48\xfc\x1f\x78\x14\x98\x7d\x34\x3a\xc8\x7f\xf8\x9f\xca\x4d\x18\x25\x29\x23\xfb\xc4\x2e\xd2\xe7\xc4\x30\x36\x38\x88\xcb\x26\x28\x98\xb0\x5d\xfc\x1a\xe5\xe3\x38\x43\x9d\x8c\x89\xc7\x8f\xbe\x1a\x90\xa0\x6f\xd2\x0b\xf3\xb5\x22\xa7\x30\x23\x93\xdb\x22\x55\x3d\xde\x38\x17\x85\x8c\xb9\x41\xda\x34\x4a\x56\x66\x34\xa2\xd0\x73\x04\x7d\xf7\xb1\xae\x67\x00\x07\xa0\xd0\x65\x96\x5d\x91\xe3\x76\x2d\x91\xf6\x6c\x3b\xb2\x83\x30\x2f\x67\xc9\xe2\xd8\x45\x29\x08\x82\x9d\x7c\x5d\x2b\x8d\x50\xb1\xb9\x0c\x7b\x69\xe5\x22\x09\x0f\xb2\x08\xd7\xab\x5e\xce\x08\x72\xce\x1f\x4d\x3c\x98\xfb\x0f\xb0\x7b\x80\xfb\xbf\xde\x04\x1c\x21\x05\x4e\x03\xca\x5e\xc7\x1a\x5d\xce\x0c\xdf\x34\xb1\x5f\x16\x71\x6a\x96\x3d\x5e\x19\xe5\xa0\xf5\x8e\x47\xfa\xac\xab\x65\x66\x11\x1d\xd8\x3d\x5e\x3e\x52\xcb\x36\xbe\x89\x4d\x83\xff\x00\xa1\xbb\x13\x37\x2d\x17\x3c\x7f\x82\x8e\x18\xfe\xa3\xc6\x83\x20\x5c\x16\x7f\x11\xf5\xd6\x9b\x13\xc5\x4e\x7d\x4d\x65\xfb\xf7\x74\x1b\x3b\x64\xc3\x41\x41\x6b\xe3\x17\x5f\x92\xc3\xa3\xa3\x00\x71\x17\x55\xbe\x2a\x30\x69\x0a\x26\x77\xc7\x6b\xe5\x98\xb5\xde\xaa\x89\x9d\xbe\x30\xd7\x0e\x4b\xaf\x25\x48\xca\x43\x27\x94\x02\xb1\xd3\xca\x9d\x9b\x73\x24\x33\xbe\x68\x1f\xf5\x12\x78\xd9\x12\x4b\x51\x0e\x4b\x82\xa9\x86\x86\xc8\xd8\x32\xc5\x1e\x9c\x8b\xa9\x35\xff\x78\x90\x05\xc6\x21\x7e\x53\x95\xd0\xc6\xd6\x2c\x21\xc0\x74\x4a\xe2\xe5\x2f\x0a\xcc\xb2\x81\xc6\xd8\x03\xff\xe9\x15\x80\x95\xbb\xae\x70\x73\x5a\xa7\x34\x30\x69\x2e\x0b\x04\x79\x07\x54\x79\xf8\x5a\x85\xdd\xcb\x26\xe3\x9a\x14\x92\x4f\x27\x54\x22\xea\x44\x23\xb1\x7b\x56\x8c\xc7\x49\xca\xd5\x00\x46\x2c\xd2\x92\x12\xf4\xe2\x4e\xe0\x85\xe4\x03\xcc\x68\x94\xc4\x21\x68\x70\xe6\x39\x8c\x02\x22\x8b\xaf\x6b\x08\xae\x32\x84\x49\x49\x72\x74\x1b\x7c\xab\xdb\xa7\x3a\xba\x4f\x2d\x0f\x86\x94\x78\x7b\xc1\x97\x22\x75\x7e\x44\x27\x93\x6f\x56\x80\x67\xd8\xbe\x5c\x60\x56\x40\xba\x33\xaa\x48\xf4\xdc\x3f\xfe\x39\xcc\x10\xe2\xf2\xf5\x89\xef\x85\x58\xef\x3c\x55\xd7\x5c\x3c\x78\xf0\xc1\x0a\xc0\xc6\x3b\x1d\x7b\xd6\xfc\x91\xfe\x47\x1d\xa5\xad\x70\xba\xa3\x6a\xff\xb7\xb5\x1e\xe0\x2d\xbc\x08\x0e\xe9\x5b\xe4\xd6\x55\x10\x33\x4e\x84\xaa\x7c\x40\x64\x93\xce\xa8\x84\xe9\x5d\x97\x62\x8f\xcc\xd8\x81\xba\x10\x93\xae\xe3\x09\xf8\xa6\x51\xbb\x2f\x18\x0a\x21\xa3\xb0\xcf\xfb\xc5\xf3\x56\xad\x80\xf0\x77\xda\x69\xd8\x8f\x2c\xeb\x66\x28\xdd\x5e\x47\x54\xd3\x18\x4f\x64\x79\x1a\x2e\x41\xae\x43\x24\xf5\xe8\x6d\x1c\xf8\xdb\x11\x36\x82\xee\xfb\xf3\x72\xeb\xcf\xb6\xfb\x76\x64\xe2\x3e\x31\xf4\x20\xa9\x77\x1b\x86\x17\xa8\x1b\xe6\x73\x73\x0c\x9f\xe5\x48\x88\x2c\xac\x4f\xee\x7e\xda\x44\x23\x30\xb6\x6c\x30\x2a\xee\x98\xe0\x24\x1a\x34\x4e\x8a\xcc\x12\x8c\x52\xd4\x5f\xbd\x81\xd9\x43\x7d\x8b\x48\x2a\x7c\x3c\xa9\x76\xb5\x97\xcf\xca\x19\x39\x9a\x43\xe9\x0e\xd8\x59\x48\x3c\x74\x88\xcb\x40\x99\x53\xbb\x15\x3f\x0e\xdc\xca\x7c\xad\xce\xfe\xd4\x0e\x8a\xd1\x48\xba\xbe\x44\xe1\xdb\x83\xe2\x8f\xab\x1c\x59\x9c\xe4\x61\x10\x1a\xd0\x34\x61\xe5\xde\x50\x0a\x17\x7f\x80\xb7\x17\x52\x8a\x9d\x1c\x3e\x7f\xb7\x3d\xb6\x29\x0e\x55\x69\x6f\x29\x67\x8d\xaf\x2b\xee\xf9\xc0\xa4\x7b\x68\x4e\x9a\xd2\x18\xb4\x09\x84\xbb\xaf\xa2\x51\x47\x3f\x2f\x37\xd8\xcd\xf2\x77\x3b\x13\x63\x07\x0f\x52\x60\x98\x64\xc9\x78\xc8\x14\x31\x42\xaf\xeb\x57\xc9\x86\x73\x26\xc3\xd1\xa8\x88\xed\x8c\x6f\x33\x9f\xe9\x2a\xf9\xd9\x89\xa2\xd5\xfd\xc1\x44\x23\x2a\xcb\xc9\x82\xd7\x7e\xbc\x89\x4a\xcc\xb3\x52\x66\x5a\x53\xe6\xa2\xd2\x94\xf1\x22\x40\xc3\xa4\xc8\xec\x4a\x92\x72\x0e\x14\x09\xb4\x93\x2a\xef\x78\xb2\x56\x23\x2a\x7f\x82\xc2\xdf\xb1\xe2\x39\xc3\xf3\xdc\xd7\x74\xe6\xf7\x15\x3e\x25\xcc\x46\xfb\x15\x2d\x0a\x92\x72\x38\xb7\xe0\x75\x03\x91\x72\xd3\xd3\xc4\xfe\xab\xff\x0c\xd1\xbc\xa4\x32\x5d\xb5\xee\x1f\x7f\x61\xcd\x6b\xd7\x72\xb9\x59\x44\xeb\x55\x03\xd3\x74\xd7\x9f\x36\x69\x98\x2d\xad\xb6\x28\x6e\x13\xbe\x80\x96\x22\x12\x78\x5c\x09\x1f\xd8\xbe\xc9\x45\xe2\x49\xe0\x24\xe5\xcf\x79\x34\x89\xcf\xda\xf5\x4c\x3a\x2d\x45\x5d\xa7\x2b\x8a\x1a\x26\xac\xff\x25\x0d\xbf\xbc\x50\xa1\xc7\x5d\x0c\x91\x1f\x93\xf6\x1c\x7a\x0d\xd9\x81\x4d\x8c\x3e\x8b\x26\x8a\xa6\x7c\x37\xe1\x1d\x95\xd6\xbc\x0b\xbb\x03\x4f\xf0\xdf\xab\x53\xf6\xd5\x24\x8c\xf3\x7d\x5a\xe1\xcc\xe3\xda\x99\x45\x47\xf5\x1c\x1e\xf6\x35\x45\xaf\x26\x42\x67\x80\xd3\x0f\x9e\x9b\xd3\x2a\x23\xde\x5f\x6c\xc0\xe0\x05\x49\x9f\xfb\xcb\x85\x84\xa0\xe5\x38\x47\xd7\x5d\x0e\x22\x32\xa4\x6b\x29\x4e\x03\x1c\x80\xdd\x60\x9f\xe0\x9b\x5a\x4f\xc6\xfc\x8b\x87\xdb\x10\x2a\x5f\x38\x20\x30\x8d\x56\x97\x82\x18\xbe\x59\x73\x34\xfe\x76\x10\x66\x91\x29\xa3\x5d\x72\x36\x24\x78\xa2\xb7\xe5\x1b\x07\x8f\x4a\x46\x71\xd8\x6a\x29\xce\x07\xa5\x0c\x70\x5e\x65\xc5\x1c\x1e\x48\xa1\xfe\xa0\xd6\xcf\xd7\x0d\x01\x80\x09\x82\x22\xf3\x35\x55\x94\x74\x90\x32\xe2\xeb\xc9\x83\x6e\xb3\xfc\x57\xff\xf9\x94\xd2\x60\xd9\x40\xed\x84\x97\xb8\x8a\xeb\xae\x34\xc9\x4e\x0c\xad\x89\xf2\x61\x60\x52\x5d\xbb\xbb\xa8\x29\x45\x2e\xd6\x36\x34\xe5\xf3\x7b\xa9\x35\x4b\x8b\x86\x79\x43\x85\x6a\xb4\xe5\x44\x8e\xce\x37\x88\x1c\x1d\x6e\x9b\xfe\xb2\x89\x03\x0e\xf2\x90\x74\x39\xaf\x49\xa3\xce\xd7\xd6\xf2\x0b\x73\xed\x51\x12\xf5\x81\x92\x86\x45\xbc\x89\xc2\x9a\xf4\x88\xb7\x1c\xef\xc1\xaf\xea\x86\xa3\x53\x0d\x69\xe3\xf9\x76\x16\x0c\x6d\xbf\x88\xaa\x5a\x2f\xf0\x82\x64\xa5\x7a\xff\x34\x59\x5c\x0c\x03\x9b\x3e\xec\x99\xcc\x28\x5b\xb2\xbd\x86\x47\x46\xd0\xbd\x17\xd8\x37\x54\x10\x71\x9a\x08\xf7\x09\xcd\x4a\xe5\x50\x16\x9e\x1f\x18\x41\x9c\xbf\xef\x75\xfc\x1b\xfc\x0e\xce\x5c\x98\x06\xa4\xe1\x9c\xca\x68\xb9\xfd\x64\x94\xca\x68\x82\x7f\xa5\x53\x11\x3e\x2c\xa8\xff\xa2\x5c\xdb\x98\xf4\x2d\xb5\x00\xb6\x6a\x23\x22\x3e\x6f\x9c\x2c\xb1\x7d\x11\x9e\x01\xe5\x23\x6e\x76\x1e\x55\x8d\x35\xfd\x50\x48\x62\x5c\x9d\xd7\xd7\x7c\x9b\x84\xad\x7a\xc4\x65\x26\x3b\x16\x07\x2d\x53\xc4\xf3\x8d\xea\x98\x19\x14\x26\xed\x2b\x2e\x79\x64\x46\xf9\x5a\x9d\x0f\x36\x78\xee\x01\x1a\x10\x61\xdb\xa7\xe7\x45\xe2\x7f\xba\xeb\x85\x6b\x76\x75\x31\xd2\x8e\xfd\xa4\x9c\x37\xdc\x7c\x15\x26\x09\x7b\x10\x5e\x29\x0a\x72\xd5\x16\x6e\xd7\xd0\xf8\xfb\x64\xb4\x25\x75\x2d\x06\x69\x64\xd3\xc0\xc4\x79\x18\x59\x3e\xd8\x1a\x1d\x4b\xff\xe0\xbf\x30\x7b\x78\x5a\x51\xab\xfd\x80\xfd\x7d\x51\x29\xa1\x81\x05\xa8\x93\xb1\xf8\x82\xad\xf3\x5f\x51\x44\xf9\x03\x1e\x08\x0e\xaf\x1d\x3a\x43\x5f\xc0\x52\x94\x1a\x55\xf9\x4a\x12\x0f\x7a\x7d\xe3\x63\x1d\x45\xba\x7a\xb1\xca\x4a\xeb\xb5\xf1\x36\xa8\xf8\x8c\xfc\x2b\x3f\x09\x57\x6d\x55\x0d\x72\x90\x16\x36\x4b\x46\xdc\xbc\x22\xfc\x03\xad\x5f\xfa\x12\x87\xd4\xeb\x34\xaa\x48\xa2\xdd\x51\x48\xad\x25\x1b\xc7\x36\x1f\xf2\x88\xe1\x3d\x36\x34\xfc\x67\xa3\x16\x9d\x95\x7b\x97\x84\xf0\x21\x8a\xc0\xdb\x57\xb8\x71\x69\x5a\xf9\x46\xd1\x04\x66\x86\x50\x12\xb3\xce\x93\x2a\xdf\x4f\x18\x56\xbd\xa8\xf4\xf1\x26\xa3\x03\xf5\x61\x9f\xba\xb8\xad\x52\x17\xb7\x6b\x1f\xa0\xc7\x33\xb9\xc1\xce\x70\x7a\x06\x73\x73\x72\x5d\xa3\x9f\xf7\x7a\xb1\x36\xdb\xeb\x03\x87\x13\x7a\x9f\xef\xdd\x81\x37\x2d\x07\x88\x49\x45\x3b\x9e\x38\xfd\x38\x95\xf0\x1d\x8f\xb4\xcb\x28\xd6\x81\x7a\x84\x62\x33\x69\x3e\xe5\xa9\x3c\x50\xbd\xc2\x0a\x3f\x33\xf1\x85\xa9\xb7\x9a\x20\xd5\x24\x4a\x4f\x75\x02\x19\x6b\x1f\xd7\xd7\x19\x3b\x5d\x40\x9d\xda\x69\x4f\x0d\xbe\xa9\xe4\xcd\xcf\xf1\xea\xc7\x34\x7c\x82\x0d\x09\xa3\xb0\xab\xfb\x44\xc5\xcb\x0a\x83\xdc\xf6\x67\xca\xaf\x91\xba\x83\xcf\xf3\x1d\xa7\x52\x48\x45\x5d\x05\x49\xd3\x2b\x0a\x00\x70\x75\x67\x30\x3c\x37\x37\xdf\xfe\xc5\x97\xa8\x42\x02\xbb\x71\xaa\xe3\xcb\xe2\xa7\x9c\xc3\x9b\x15\xe9\x38\x2a\x9c\x2c\x13\x9c\x80\xeb\xda\x23\xb8\xae\xce\xfa\x22\x5e\x49\xc3\x3c\xb7\x71\xab\xc2\xe0\xa2\xd0\x93\x8d\x8c\xe4\x43\xc2\x5c\x52\x66\x0a\x89\xbb\x2b\x4a\xa2\x17\xa5\x05\x24\x41\xbf\xa9\x9c\xcf\x30\xce\x53\xd3\x37\xab\x54\xf4\xc6\xac\x41\x82\x92\xaf\xbb\x52\x8c\xe9\x85\x79\x30\x6c\xd5\x9a\xbb\x04\xbf\xd2\x50\x1e\x5c\xb2\x69\x94\xc4\x70\x09\x24\xb7\x4b\xe3\x2a\x69\x5b\x6f\x8d\x96\xc3\xfe\xb4\x6f\xaa\x7a\x9f\xa6\x05\x19\x0b\x6e\x66\xaa\x50\x9e\xc0\xea\xbc\x5f\x0b\xe7\x0f\xce\x96\x81\xb6\xb5\xf9\x94\x07\xec\xc2\x9b\x70\x6d\x70\x9e\x88\xe3\x07\x2a\xd1\x16\x25\xbd\x1e\x7c\x24\x61\x1e\xf4\x5e\xf2\x4d\x95\xd7\x2d\x23\xcc\xc8\xa4\x33\x9e\xbe\x80\xfd\x35\x78\x2b\xef\x4e\xaa\x10\x2d\x87\xe8\xb9\x30\xd1\x0f\xd4\x90\xf9\xc9\x4d\xaa\x91\xf4\xef\xd1\xdf\xcb\xc1\xfe\xa8\xa2\x84\x2e\x67\xab\x55\x29\xcd\xb7\x9c\x8c\xcc\xa9\xc9\x53\xea\x49\xc7\x26\x35\x4e\xf4\xea\x65\x97\xb0\x52\x45\xab\xcd\xda\xee\x7c\x69\xbe\x9d\x8d\x92\x25\x76\xa1\x51\x0d\xbb\x02\xbb\xc8\x37\xea\x04\xf9\x99\x7f\xf0\xf7\xa6\x55\xe3\xdf\x95\x4a\x00\x4b\x23\x81\x52\xca\x07\x2a\x49\x7e\xdb\x79\x01\xc5\xa8\x97\xda\x28\x32\xf8\x29\x16\x5e\xab\x88\xb0\xfd\x94\x4f\x20\xa6\x49\x90\x9a\x2c\x0f\x63\x7a\x23\x48\xd8\x09\x8b\x29\x0d\x86\xf0\x9b\x96\xbf\xca\x72\x2f\x70\xef\x44\xfb\x45\x91\xe6\xd9\x10\x67\xa7\xab\x05\x4b\x07\xfc\x7f\xb8\xa7\xa4\xaf\x2b\x3a\x3c\x5f\x6b\x30\xd5\xcf\xc3\x54\xfb\xf8\xe2\x92\x2e\x62\x5e\xea\x28\xaa\x6a\x4a\xfe\x64\xd3\x2d\x45\x8d\x51\xee\x36\x7c\xf7\x5b\x74\x46\xba\x26\x04\xd7\x03\x77\xb7\xb6\x4e\x9e\x6b\x47\xcf\x8d\xd1\x13\x8a\x67\xdf\x85\x36\x72\xbe\x59\x6b\x20\xe5\x1f\x5a\xe3\x04\x35\x31\x1b\xd4\x92\x2b\x50\xe2\xdd\xdd\xa7\x3c\x35\x52\x91\x67\xb9\x89\x45\x6c\xf2\xe5\x6d\x56\x8d\x13\x2e\x2d\x95\x48\x3b\x55\x09\x48\xe3\x5e\x30\xe5\x3b\x96\xce\xe2\x53\x30\x97\xe7\x95\x22\xc2\x6d\xc5\x74\x94\x25\x45\x3e\xec\xa5\x49\x22\x04\xe7\xd8\xeb\x9c\x08\xe7\x9b\x89\xd2\xe5\xb1\x71\x4b\x33\x95\xbe\xa1\x79\x0f\xde\x50\xf5\x56\x9b\x95\x5b\x24\x24\x7a\x27\xfa\x13\xb8\x0d\xef\xd2\x78\xf3\x75\xcd\x2b\x98\x3d\xd2\x0e\x92\x78\x90\xda\x0c\xd4\x50\x64\x08\x94\xf7\xed\x44\x8c\xdd\xe2\xed\x45\x96\x49\x61\x3c\xe1\x60\xc7\x37\x86\x7c\x58\x2b\x7f\x1c\x3c\xd8\xfe\x4a\x91\xe4\x29\x97\xcb\xa4\x7b\x50\x35\x40\x5d\x70\xec\x10\x66\x85\xdc\x21\x25\x05\xb2\xa7\xeb\xcb\x85\x7b\xd6\x1a\x3a\xc2\xc6\x45\x36\x4c\x96\x99\x6e\x81\xcf\x41\x3a\xdb\xe5\x4c\x7c\x5a\xd5\xed\xf2\x30\x08\xc7\xbc\x91\x0e\x1d\x5a\xe0\xef\xdd\xbd\x46\x35\x38\xbe\xa1\x8a\x93\xf0\xc8\x78\xbc\xff\xe9\x5a\xbd\xe8\xe8\x81\xb9\xf6\xd0\xac\x2c\x65\xd3\x00\x07\x4a\x05\x5d\xf5\xe8\xef\xea\xd2\x4e\x94\xe8\xc1\x03\x6d\x3e\x55\x9a\x3f\xac\xee\x1c\xad\x4e\xf9\x63\xe0\x47\xaa\x66\x76\x96\xd8\x79\x44\x3b\xb6\x01\xa8\x10\x99\x3e\x2c\xb8\xe2\xca\x9f\x77\x04\x4c\x35\x7d\xb4\x83\xa5\x85\x8c\x4c\x96\x73\x27\x33\x92\x47\xe7\xc8\xc3\x45\x6d\x6c\x77\x97\x46\xc7\x95\x83\x9d\x8f\xf2\x89\x8a\xed\x16\x4d\x50\x3e\xf6\x94\xaf\x19\x9d\xdb\x21\x26\xe0\x65\xc4\x6f\x2a\xdf\x95\x9b\xa8\xf7\x68\x6a\x57\x55\xee\x7f\xb7\x33\x55\x11\x6f\x3f\x38\xcb\xc3\x77\xb3\xe3\xab\xad\x8c\xd8\x96\x26\xd6\x1d\x8e\xc9\xc1\x83\xed\xa3\x07\x5e\xde\x4f\xef\xe0\xc8\x1d\x5f\x72\xb9\x28\x12\xe7\xd8\xe6\xc6\x2a\x38\x6e\x0f\x93\x35\xd9\xbe\xd4\xf1\x6a\x56\x77\x95\xf0\x1e\xaa\x3b\xd2\x04\xa6\x34\x34\xee\x36\x72\xed\x16\xe3\x54\x75\xfc\x89\xc8\x53\xcb\xf1\xce\xac\x37\x79\x0c\xa0\x95\x82\x66\xa8\x28\x7f\xd1\x70\x0a\xb3\xa1\x87\x0e\x6e\x55\x5b\xac\x6c\xfa\x84\x87\x20\x42\xa3\x13\x91\xc4\x36\xc6\x95\xbb\x77\x50\xde\xc2\x78\x9c\x03\x22\x54\xd2\xd7\xb4\x48\x9d\xaa\x5f\x39\x2c\xc2\x74\xa6\x59\xef\x3e\x51\x24\x2b\xdc\x72\xe3\x10\xb4\x47\x05\xbe\xb7\x8f\xf2\xdf\x22\xd3\xa9\x4a\xf5\x37\x3a\x1e\x71\xf2\x17\x1d\x75\xe0\x9f\x00\xba\x08\xb1\xd5\xf7\x27\x4a\x94\xe5\x02\x96\x02\x5e\xfa\x77\x1c\x34\x66\x31\x74\xfa\x8e\x48\xcd\xa1\x9f\x45\x50\xb4\xf4\xce\x12\xfc\x7a\x38\xcd\xc0\xc4\x9a\xce\x17\xe4\x85\x7c\x5d\xab\x27\x96\x6f\x0d\xad\xf1\xdc\x84\x31\x28\x18\x1d\x59\x23\xeb\xee\xf1\x8d\xb3\x5d\x99\x5d\x0a\xb3\x22\x54\xbc\x3a\xff\xa6\xca\x91\xfe\xa8\x96\x1c\x5c\xb2\x02\x07\x71\xc4\x5a\x3e\xa1\x33\x51\x3c\x24\xd7\x6a\x45\x42\x09\x0b\x86\x28\x91\x2a\x40\x93\x82\x0b\x6d\xe8\x1d\x97\xc4\x79\x9a\x44\x0f\x4e\x79\xa5\xdc\x2b\xc8\x60\x8a\xf6\x8e\x27\x78\xb8\x4e\x73\xe9\x64\x78\x9c\x3f\xbf\xae\xd8\x7a\xaf\x55\x91\x50\xf4\xab\xd2\xde\xa9\xe3\x11\x86\x9a\x0a\x82\x54\xf5\x10\xd7\x32\x62\x07\x67\xcb\xa7\xcc\x6c\x50\x38\x41\x0e\x66\x54\x51\xe2\x38\x5b\x35\xf0\xc0\xdc\x5c\xbb\x67\x62\xc5\x64\xb6\x55\x91\x8d\x57\xb0\xa7\x31\xf1\x07\xc5\xd8\x92\x58\x2a\x57\x27\x1e\x77\x78\x55\x49\x6b\x06\xa6\x17\xb1\xec\xa5\x38\x97\xaa\xed\x1e\x25\x45\x29\xe0\x7a\x9f\x65\x6a\xad\x34\x55\x98\xc0\x7f\xa7\xc8\x46\x17\x4d\x40\xa0\xa1\x9c\x19\xcf\x30\x84\x80\x8b\xf0\x75\xbd\x69\xf9\xc5\xc3\xed\x5e\x92\xe7\x09\x80\x19\xd8\x99\x37\x54\x13\xc4\x8d\xca\x9b\xb1\x66\xe8\xe7\x68\x1c\x08\xf5\x44\x4a\x68\x6a\x4b\x5e\xce\xb4\xe7\xd3\xfd\x0b\xec\x38\x38\x61\xdb\x9d\xd6\x0e\x99\x31\xe9\x25\xf3\xee\x35\xe5\x8f\x91\x28\xa3\xdf\xc4\xba\xc1\xd3\xf1\xf5\xc4\x37\x5c\x8c\x4c\x1c\x8e\x8b\xc8\x15\xb2\xe6\x38\x01\xc4\xed\x23\x7c\xb3\xe6\xe8\x2c\x23\x13\xc6\x94\xe3\xd7\xf6\x48\x8e\x11\x8c\xbd\x70\xc8\xab\xcd\xf5\x2f\x26\x4f\x29\x35\xc5\x34\x8f\xc1\x97\xc8\x00\x20\x71\xf9\xe9\x45\xb1\x50\x4f\x2b\x96\x87\xa9\xae\xfa\x89\xe9\xae\xf7\x83\x1f\x27\x04\xb7\x52\xb5\xf2\x46\xb7\x97\xbc\xd6\xfa\xbc\x34\xbf\xd3\x0a\xcf\x73\x3b\x1a\xe7\x2c\x4b\x02\xfb\xb6\xae\xeb\x0e\xdb\x2a\xd4\xda\xa6\xed\xc1\x7f\xa4\xfa\xcd\xc8\x08\x71\xbf\x99\x43\x73\x2a\x98\x67\xa5\xc4\x61\xfa\x8a\xa3\xfa\x3e\xfd\x1d\x5f\xab\x9c\xd3\x38\x4d\x46\xe3\x5c\xf4\xd3\x10\x9b\x00\x35\xc0\xd7\x13\xfd\xd6\x15\x5d\xaf\x9d\xbb\x76\x6e\xee\x70\xdb\x8c\xc7\x51\x48\x5b\x86\x8e\x2e\x7c\xc7\xbf\x86\xe5\x87\xe1\x86\x67\x2f\x14\x0f\x4a\x2f\x26\x1c\x95\x0b\x83\x5f\xce\x6d\x77\xbf\xf5\x9b\xd2\x2f\x71\xe2\x08\xff\xa5\xf3\x5a\xb7\x61\x37\xe8\x4c\xce\x97\x6b\xd0\x0c\x6c\x2a\x95\x33\x16\x6b\xa9\x2a\xb7\x78\xe3\xbc\x64\xc3\xd7\x4d\x38\xe5\x03\xfc\x0d\x55\x3e\xfe\x6d\xcd\xa4\xb9\x55\x29\x30\x65\x36\xfb\x42\xb9\xc2\xb6\x19\x83\x8e\xa5\xfd\x10\x2d\x59\x3a\x40\x2f\x3d\xd1\xa5\x02\x0a\xca\x2c\xd7\xc8\xb5\x41\xfd\xe4\x12\x0c\xa5\x4b\x41\x38\x78\xd7\x8f\x81\x0e\x43\x8a\xf5\x3d\x45\xa8\xd6\x5a\xa3\x43\x53\x00\xca\x34\x95\x22\x07\xe6\x11\x2a\x8f\x74\x55\xe2\xe4\x24\x25\xec\x18\x34\xaa\xf9\x07\x3e\xe3\x24\x12\x0e\x70\x96\xd9\x42\x15\xe6\x4d\xf8\x09\x8e\xf3\x64\xf6\x88\xd3\x46\x22\x9f\x41\x44\x13\xcb\xb5\x8b\x6d\x49\x7b\x46\x34\x40\xef\x4c\xbc\xce\xc9\xf5\x46\xcd\xc0\xbe\x8d\x43\x5b\xa1\xcc\xbf\xa2\x15\x5a\xaf\x54\xa3\xad\x3c\x79\x5a\x49\x6c\x7c\xa2\x7a\x53\xf7\xae\x29\xe2\xde\xe9\x35\x38\xe4\xf0\x4a\xbf\x4b\x27\x1a\xfe\xe7\x3a\x45\x06\x78\xb8\xab\x1d\xd5\xc1\x7d\x0c\x33\x00\xec\x05\xeb\x7c\x0a\xef\x6e\x39\xea\xd2\x19\x86\x91\xe2\x9e\x6c\x2a\xd5\x01\xb1\xba\xa9\xdc\xbb\x0f\x68\xa0\x91\xe8\xfc\x3e\x8d\x99\x63\x6c\x28\x07\x1d\x4f\x75\x1c\x33\x8b\x30\xe1\x0a\x26\x10\xae\xd5\x55\x44\xef\xfc\xf0\xc8\x35\x4b\x67\x01\x8d\x13\xab\x7f\xd7\x62\xe4\x67\x89\x78\x6e\xaa\x42\x79\x58\x8e\x96\xd0\xe2\xd1\x1b\x22\x9d\x7d\xb6\x06\x6e\x3d\x74\x68\xa1\xdd\xb3\x81\x29\x32\x74\xdd\x3b\xbb\xf0\x82\x14\x09\x7f\x58\xe9\x7c\x54\xac\x55\x36\x88\xc2\x58\x22\x42\x2c\xbc\x77\xd5\x22\x7c\xb7\x96\xab\x22\x25\x22\x3b\x22\xbe\xd2\x1d\x31\x80\x78\xf4\x3e\x3f\x45\x12\x6c\x0f\xd3\x54\xb1\xeb\xa2\xc5\x08\x36\xf1\x56\xaa\x57\x51\x0a\x41\xff\x53\x47\x8b\x9e\x96\x8f\x26\xd4\xee\xe4\x07\xbb\x76\x83\x72\x84\x04\xed\xe8\x7b\x40\x6e\x4e\x54\x67\xd6\x45\x25\x33\xfb\x97\x13\xc5\x0a\x86\x90\x84\xfb\xaf\x54\x11\xc6\x7e\xa5\x30\x11\xa5\x6c\x25\x8f\xe4\x01\x22\x10\x5c\xe2\x6b\x2a\xac\x4b\x7a\xa9\x3e\x25\x68\x66\xde\x01\x4e\xe9\x68\xae\x22\x7f\x2c\x9b\x20\xb0\xe3\xdc\x10\xf5\x80\x62\xbc\x42\x7a\x5a\xe0\xe1\xde\x6b\x58\x09\x49\x82\x00\x40\x0e\xbc\xff\x2d\x2c\x49\xbe\x51\x29\x8b\x71\x9a\xe4\x36\xd8\xd9\x7a\x04\x4b\x28\xd8\xb9\x86\x5e\xa9\xd4\x2e\xdb\x78\x60\x95\xe7\xcc\xdc\x64\x7c\xe3\x08\x8e\x93\x5e\x66\xd3\x65\x14\x6b\x69\x72\x98\x2c\x6e\xe2\xdd\x8b\x8b\x0d\x1a\xcb\x87\xdb\x59\x54\x8c\xc6\x53\xba\x8f\x15\xcd\x43\x8e\x6e\xd8\xc1\xb1\x3e\xaa\xb9\x8e\x47\x0f\xb4\x97\x2c\xdc\x67\x46\x3c\xd0\x48\x09\xfa\x41\x0e\xf1\x51\x18\xa4\xc9\x32\xfb\x98\xd8\x86\xc0\x32\xf0\xb5\xa2\xbf\x1b\x99\x74\x10\xc6\x08\xe4\x17\xe6\x1d\xe0\xb0\x9c\x2e\x69\xca\xf3\xc0\x86\xdd\x5d\x29\x80\x11\x21\x6f\xea\xd0\xb5\x38\x33\xef\xaa\xe6\x86\xbb\x13\x91\xe5\x18\x8d\x87\x53\x8a\xe7\x6e\x1d\x3b\x41\xf3\x56\x61\x2d\xdd\x6d\xb4\xb5\x41\x94\xc4\xb2\x38\x24\xe9\x48\xdf\x26\x59\x47\x4f\xfc\xd9\x0f\xb3\x3c\x0d\x7b\x85\x03\x39\x4b\xa9\x58\x73\x8b\xd7\xa6\xe4\xd0\xa1\xf6\x30\x1c\x0c\x6d\x3a\x45\xb3\x00\x5f\xff\x64\x47\xc7\xe1\x0a\x96\x73\x53\x11\x48\x8d\x23\x13\xc7\xe4\x97\x3a\x84\xd0\x27\x9a\x5e\x1f\x90\x55\xfe\x8f\x89\x42\xd6\x5d\x55\x78\xce\x51\xfa\xdc\x3e\xd8\x67\xe7\x91\xbb\xb6\xa4\x3b\x94\xea\x84\x05\x20\x2e\x84\xd9\xed\x4b\x34\x1b\x98\xc6\xb3\xd8\xee\x08\x7b\x98\xbc\xc8\xd9\x25\x17\x08\xfc\xb7\x3f\xdd\x7d\x5c\x65\x99\xb3\x30\xcb\x05\x71\x25\x1b\x8c\xde\x55\x76\x9e\x3e\xbb\xd2\x10\x1b\x41\xda\xcd\x14\x09\xe6\x56\xb5\xa7\x21\x49\xd9\x6d\x75\xe8\xe9\xaa\x60\xf2\xbc\x23\xa7\xf6\x4e\xe7\xcd\x8e\x2a\x28\x5f\xd4\x71\xe0\xcd\x26\xb3\x42\x39\xc8\x32\x1a\xf2\x88\xc8\x2b\x9a\x6a\xad\x0e\x74\x20\xea\xa5\x38\x89\xc2\x5c\x70\x56\x78\x08\xac\x53\xbe\x56\xba\x23\x69\x22\xc5\x49\xe4\xad\xbe\xa7\x49\x7b\xbf\xd7\x79\xba\x9a\xb0\x29\xe3\x9d\xf9\x85\x79\xea\xaa\x14\x49\x9e\x8a\x18\x9c\x67\xb2\x3c\xd1\xf1\x05\x88\x5b\x9d\x4a\x38\x50\xae\x0a\x2c\x91\x3f\x47\x97\x6c\x05\x0a\xc8\xe5\x15\x07\x84\xc9\x4d\x3c\x40\xbe\xf4\x73\x5b\x61\x1a\xc8\xb1\x82\x24\x5e\x2c\x32\x70\x9c\x20\x15\xb5\xae\xd2\x52\xeb\x4d\xe0\xc2\x3c\x89\x61\x66\x1c\xc8\xda\x71\x13\x9e\x73\x8c\x87\xc5\x62\x92\xcd\x68\xa6\x7d\x06\x0a\x53\x70\xf0\x8d\xc7\x90\x8f\x13\x06\xaf\x96\xe3\xc6\x78\x13\x68\xd9\x56\x23\x8d\x6a\x24\x94\xe3\x5c\xe5\x54\xe0\x97\xe3\x4d\x38\x83\x30\x5e\xb6\x99\x6b\x08\x84\xbf\x7e\x8b\x86\x5b\xda\x08\x55\xd7\xf7\xa5\x26\x1d\xdc\x6c\x1c\x3a\x01\x24\xe0\xcb\x8f\x77\x94\xe6\x23\x57\x96\x79\xa1\xbf\x3e\x53\xd1\xe6\xd1\x9a\x3d\x55\x9d\x1e\x2f\xcd\xe3\x01\xed\xe7\x9a\x46\x3a\x35\x21\x62\x09\x6c\x40\xd6\xa4\xe0\x9b\xda\x92\x3e\x78\xb0\x1d\x85\x79\x38\xf0\x3d\xb5\xf0\xb9\xbf\x49\x13\xca\xd7\x0d\x64\x67\xf3\xed\x3c\x49\x60\x45\x51\x61\x61\xc1\x64\xbe\x71\xe1\xdf\xd0\xf4\xca\xb0\x9f\xb1\x1e\x4e\x21\xd5\x65\xa9\xcf\xbb\xc8\xbc\x17\x52\xcf\x5d\x1c\xcb\x62\x44\xc0\xfa\x75\x25\xca\xfb\xf5\x26\x32\xb4\x2c\xb2\xd6\x8b\x7b\x23\x92\x59\x57\xda\x78\xeb\x93\xfd\xfc\xc7\xab\x66\x4a\x81\x3d\xbe\x39\x51\x0a\x52\x67\xe1\xc9\x0b\xef\x76\xc3\xcf\x94\x87\x81\x93\x15\x44\x2c\xf1\x1d\x3a\x6c\xf8\xba\x06\x14\x26\xb2\xf5\xcc\xe6\xd3\xaa\xa9\x88\x73\x28\x70\x2b\x01\xc8\x45\x92\x66\x7f\xd7\x9f\x74\x37\x75\x18\x9f\x26\xaf\xc2\xe9\xc8\xd0\xf5\x07\xaf\xe1\x77\xc8\xea\xf1\x75\x47\x91\x93\x31\x39\xa1\xf4\x57\xee\x5c\xdf\xb3\x47\xda\x63\x9b\xa7\x49\x64\xb9\xdb\x45\xca\x2e\xbe\xdc\x7a\x51\xe5\xe4\xed\xa8\x97\x26\xa1\x10\xbd\x48\xbb\x64\xcb\xd1\x0d\x9f\x6b\xa0\x1b\x26\x40\x97\x9b\x0e\x9c\x4f\xe7\x14\x9f\xf5\x39\xd5\xa0\xd4\x4b\x6c\xb6\x84\xfe\x06\x41\x6f\x78\xb9\x88\x8d\xda\x88\x3e\xf3\x4c\x7b\xd1\x8c\x04\xb4\xc1\xa4\xb5\x3a\xd5\x75\x53\x05\xb0\x7d\x93\x8e\xb8\x4d\x4b\x98\x31\x68\x81\x4a\x4e\x57\xbc\x89\xa8\x97\x4c\x79\x0f\x0b\x89\x8f\x8a\x0e\x25\x8e\xce\x7b\x2a\x77\x90\x85\x7d\xbb\x62\x56\xb3\x96\x62\x98\xab\x50\xcf\x55\x88\xb0\x4c\x1c\xdb\x34\x03\x80\x04\x07\xcb\x7b\x13\xd5\x06\x8a\xc6\x39\xa4\x5d\x2e\xd5\xa2\x99\x72\xa3\xad\x3c\xd7\xaa\x38\x99\x2a\x82\xb9\xa8\xba\x4d\xe1\x6e\xd3\xa8\xa3\x7e\x01\x54\x2b\x5f\x93\x05\x43\xd4\xbc\xae\x22\xe8\x75\x45\xec\x61\xb2\x61\x92\x72\xcb\xb5\xeb\xfd\x2a\x1f\x54\x08\xc1\x14\x76\xe8\xd5\x84\x46\xb6\x02\x96\xe0\x1b\x07\xc6\x0f\x86\xd6\xa9\xb2\x08\x4b\x84\x82\xcd\x9e\x53\xd5\xff\x2f\x25\x56\x51\x5b\x5e\xd5\xc9\xd4\xab\x8a\xf5\x29\x35\x01\x70\x23\x15\xf5\x0c\xbe\xa9\xf8\x0f\xf9\xdf\xce\xf1\x22\x88\xda\x2e\x68\xc5\x95\x0b\xb5\xf4\xc8\x4b\x0b\x07\xda\x91\x5d\xb6\xa9\x61\x47\x1d\x49\xe7\xf7\x94\x1e\xca\x7b\x35\xcb\xf9\x6c\xdb\xbe\x66\xd3\x20\xcc\x28\xeb\xa3\x2c\xe1\x67\x34\xa3\x52\xfa\xf2\x31\x4f\x5d\x11\x63\x6e\xae\x3d\x8e\x8a\x6c\xba\x75\xf0\xa0\x13\x0b\xac\x38\x52\x3e\xef\xb9\xa9\x14\xe0\x7e\x45\x91\xbd\x8d\x4d\x14\x25\x69\x4b\x61\xac\x2b\xfd\xd7\xf5\x5c\xd5\x7c\xbb\x6f\xc7\x49\x16\x02\x14\xea\xbe\xff\xa2\xca\xab\x5e\x54\xee\xbc\x7d\x6d\xcc\x65\x51\x6c\x68\xa4\x00\xce\xa8\x64\xd0\x99\x8a\x87\xd7\x0b\x2d\x66\x1c\x8e\xd7\x67\x78\x1f\xbe\xf9\x7c\xe0\xa0\x19\x09\x1c\x10\x2e\x32\x93\x16\xf0\x8d\x6b\xc0\x1b\xda\xfe\xa0\x4a\x66\x7a\x82\x9e\x5b\x81\x43\x9e\x17\x01\x57\xb5\xb2\xcb\x85\x9d\xb3\xc2\x93\x54\x13\x95\x16\xa0\x66\x34\x1c\x86\xe3\x7d\xbe\x93\x95\xd9\xe7\x40\x3a\x35\x85\x44\x28\x6e\x00\x84\x86\xc9\xfc\x4e\x05\x9f\x7f\x4c\x29\x4a\x3c\x0e\x29\x24\x11\x7b\x56\x6c\x24\x1b\x4d\x8b\x21\x2f\x18\x2c\xd3\x24\x33\xaf\x18\x78\xec\x28\x0c\xd0\xb8\x20\xe9\xed\xf2\x43\xc8\xc7\xdc\x40\xa4\x21\x9c\x72\x4e\xee\x3d\xcc\xf2\xc5\x02\x07\x2b\x5a\xf4\xe0\x09\xf1\x75\x6d\xa1\x1c\x3d\xf0\x7c\x7b\x64\xc2\x38\x37\x61\x2c\x16\x17\x75\xa6\x5f\xc3\x5e\xe2\x1b\xe7\x49\x8e\x4d\x9e\x86\x26\x0d\x86\xdc\x19\xe3\xda\x4a\x5d\xca\xf6\x7c\x83\xde\xec\x57\x0a\x2f\x8e\x04\xdf\x94\x73\x19\x7c\xd3\x74\x82\x65\xb9\x19\x0c\x3c\xe7\x16\x4e\xf9\x7f\x49\x2b\x92\xaf\x3b\x4a\x64\x10\x2c\x68\xaa\x3e\x7b\x5a\x95\x34\x6f\x57\x68\xc5\xe5\x53\x8b\xa9\x19\x90\xda\x03\x56\x32\xec\x0b\x27\xca\xf8\xa6\xa9\xbe\xdf\x4b\x92\xd7\xdd\xc1\xc7\x52\x0b\x8a\x9f\xaf\xce\x5e\x54\x6e\xc6\x2c\xb7\x36\x9a\xd2\xca\xe2\x40\x55\xe1\xfd\x6f\x69\x92\xf4\x56\xd7\x23\x4a\x46\x36\x0d\x8a\x54\xc4\xcf\xe1\x37\x30\x4b\x27\xdf\x68\x62\xd2\x71\x98\x72\x26\x06\x7e\x14\x34\xbd\x91\xb6\x3c\xa7\x1a\xd7\xff\x1d\x9d\x0c\x00\x30\xff\x48\x05\xa6\x59\x1e\x8e\x8a\xa8\xc8\xa6\x3c\x5b\xe6\xed\x1d\xa1\xc9\x9c\x3f\x26\x76\x0e\xcd\xa1\x43\xed\x9e\x8d\x42\xbb\x5c\x11\x7e\xdb\x52\xc2\x6f\x5b\x4a\xf4\x7e\x69\x3c\x42\x0e\x8d\x15\xb5\xe8\x51\x45\x5d\x4b\x8e\x96\xc5\x24\x35\xab\x4c\xfe\x8d\x47\x78\x17\x47\x0b\xca\x74\xd7\x14\x11\xc2\x05\x05\x75\x93\xdc\x04\x75\x2d\x09\xf3\x3c\x2d\x37\x66\x74\xc2\x79\xe7\xe8\x9d\xca\xbd\x8b\xf3\xf3\x92\x82\x6d\x6e\x4d\x54\x33\xed\x25\x55\xa5\x18\x85\x7d\x6b\x32\xee\x15\x64\x6c\x4f\x47\x81\x88\xde\x52\x05\xb1\xcc\x06\x45\x1a\xe6\xa1\xcd\x1e\xa3\xf5\x82\x88\xe4\x0e\x0d\x8a\x96\xca\x66\xa4\x5b\x47\xf9\x2e\x53\x6b\xf4\x9d\xb0\x36\xa7\x90\xa5\x85\x17\x7b\x07\xae\x20\x2c\xcc\x05\x45\xf3\xcc\xbe\x2e\x0a\xbd\x97\x54\xab\xd2\x36\x65\x6f\xd9\x72\x50\xc8\x81\x8d\xc1\xdc\x06\x5a\x81\x4a\x0a\x3b\xba\x9d\xfc\x92\x26\xb4\x68\xad\xd5\xa5\x56\x0e\x13\xda\xb6\xf0\x54\xeb\xcc\x41\x89\x61\x11\x42\x4a\xdf\x29\x6a\xfb\x03\x3b\x5d\x3e\x92\x93\x2a\xd9\x89\x49\x91\x8d\x55\x41\xae\xd4\x76\xe3\x6c\x3b\x88\x4c\x96\xc9\xa1\x22\xa4\xa3\xca\xce\xd4\x89\x82\x8e\x1e\x98\x6b\x67\x2b\x61\x96\xb5\x54\xe3\xdb\x49\x25\x2c\x73\xb2\x96\xeb\x99\x3d\xd2\xb6\x26\xcd\x87\x08\x6d\xf1\xbd\x57\x95\x7c\x19\x25\x66\x5c\x63\xfa\x6b\x8f\x57\x90\x5b\x9e\xa9\xf7\xde\x44\x69\xaa\x7f\x4f\xe3\xfd\xdf\xc6\x00\x30\x59\x36\x25\x73\x1d\xe2\xda\xdb\xa6\xb7\x3b\x8a\x5a\x75\x53\x29\xa6\xef\x46\x7f\x8a\xe8\x6f\x53\x3e\x40\x29\x73\xcb\x99\x01\xd8\x1b\x66\xe3\x06\x0e\x51\xe9\x9d\xad\x50\x75\xff\xe2\x4b\x1e\x1b\xa7\x29\xb7\x1b\x52\xdb\x83\x34\xcc\x22\xf0\xdb\x68\xfa\x15\x96\x8b\x9e\xf8\x02\xeb\xef\x29\x14\xe6\x28\x49\x59\x3e\xb5\xce\x54\x7e\xed\x73\x9d\x87\xa5\x38\x59\xe1\xaa\x2a\x83\xeb\xb4\x26\xdc\x05\x05\xd6\xe9\x15\x51\x14\x66\x43\x98\x21\xc9\x77\xd2\x38\x4a\xc2\xd3\xf7\x12\xf6\xed\x22\xa0\x73\x2d\x47\xf8\xb1\x51\x21\x4f\x70\xc8\xde\x7c\xb5\xfc\xd2\x08\x71\x0c\xf0\x46\x1b\x4a\xfc\x6d\xa3\x49\x95\x34\x8b\x92\x31\xbb\xda\x48\xd3\xc1\xea\xf3\xb5\xa6\xea\x4b\xe2\x2c\x89\xc2\x7e\xf9\x28\xd3\x9f\xef\x58\x79\xb4\xe8\x9f\x6a\x4c\xd9\x9f\x76\x3c\xbc\x2f\xb6\x45\x9e\x9a\x08\xea\xbc\xbe\xb2\xf3\x43\x5a\x54\x7c\xed\xfa\x11\x7c\x3d\x73\xfa\x73\xeb\x99\x34\xe2\x5a\x9f\x18\x8b\xf1\x96\x82\x78\xbc\x9a\x64\x76\x3c\x9c\x2a\x17\x11\x00\x9a\x60\xd5\x10\xfe\x71\x7a\x52\xee\x2a\x72\x67\x36\x39\x6b\x66\x20\x5b\x57\x81\x60\x5e\x76\x39\xbf\xcf\x23\x61\x33\x19\x71\x5e\xe4\xb6\x3f\xa5\xbe\x7b\x57\x57\xf1\xee\x5f\x57\xd2\xb7\xa7\x75\xc1\x33\x4d\x62\x0b\x6e\x02\xd8\x36\x66\x27\xe7\x1b\x5d\x34\xb0\x59\x6e\xd3\x78\xaf\xef\x88\x79\x47\x77\xb5\x6e\x60\x6f\x48\x7a\xc3\x9f\xb4\xa7\x15\x35\xfd\x6e\xd4\x24\xf1\xe5\x17\x3a\x0a\x37\x7a\x57\x51\x40\x43\x0f\xd2\xa6\xab\x33\xba\x29\xe4\x7d\x18\x08\xc7\x0b\xeb\xbc\xd5\xbd\x14\x6c\xe0\xdf\xef\x6b\x78\xce\xb6\x7a\xcf\xc5\x24\xcb\xc2\x68\xca\xe3\x73\xae\xaa\x06\xd9\x73\xd8\xfc\xac\x66\xda\x94\xdc\x0a\x86\x26\x2e\x4d\xb4\xab\x87\xb7\xba\x1a\x20\xa9\x57\x08\x13\xa5\xfb\x56\x17\x15\x53\xd8\x38\x83\xb6\xce\xf3\x95\xf5\x8f\xb8\x67\x6f\xd7\xa3\x78\x3d\x28\x62\xb1\x74\x44\x01\x78\x82\x0b\x7e\x59\x51\xda\x31\xcd\xaf\xa0\xb0\x1f\xd3\x44\x7b\xd9\x10\xcb\x41\x08\x1e\x3e\x54\x34\x02\x9f\x28\x80\xfc\xa6\x72\xb1\xa3\xa4\x20\xa1\x5a\xcf\x44\xfc\x4d\xb5\xf9\xbf\xd9\x40\x44\x99\x8d\x4d\x1c\x66\x43\x1a\x58\x9c\xc6\x6f\x77\x7c\xb5\xe4\xfd\x89\x0a\x69\xbf\xda\x08\xde\x37\xd1\xc0\x30\x92\x09\xab\x93\xb9\x60\xf8\xa6\x12\x65\x85\x71\x38\xe3\xf3\x9f\x40\x30\xc3\x2f\xbb\x44\x8b\x0c\xce\xf9\x57\xe9\x24\xe0\xbf\xe9\x28\x72\x1d\xed\x13\x2d\x86\xe5\x63\x4b\x06\xdf\x2d\x48\xb5\x3a\x35\x5b\x60\x12\x25\x69\x19\x46\xd0\x34\x48\x4f\x51\xcb\x09\xe0\x6e\x36\xd1\x56\x47\x76\x31\x17\x22\x87\x26\xc8\x47\x53\xbb\xfc\x52\x18\xb9\xe6\x3a\x14\x5b\x2f\xc1\x65\xe0\x1b\x05\xc9\x8f\xc2\x51\x48\x8a\x88\xae\xa6\x72\x46\xc9\x44\x5f\xc1\x20\x62\x46\x3e\xea\x54\x14\x8e\xc6\x91\xcd\xc3\x24\xc6\x9a\xc2\xee\x7b\xa3\xe3\xbb\xcb\x36\x74\x24\x72\xb9\xf6\x98\x47\x0f\x08\xa4\x0c\x43\xe7\x0c\x9c\x93\x55\xac\x4b\x5a\x42\x20\x7f\x60\xd2\x7e\x64\xb3\x8c\x4a\xcc\xe2\x48\x79\x0b\x0e\x5d\x06\x81\x1c\xb9\xaa\x57\xe9\x16\x1f\x3d\x50\x55\x9d\xe5\x9b\x86\x1a\xd4\x42\x3b\x0d\x97\xb9\xf3\xa8\x89\xf9\x7c\x07\x58\xf4\xe8\x81\xd9\xf6\xdc\xdc\x7f\x44\x23\xe1\x54\x5c\x5d\xcb\xdc\x19\xaa\xdf\xc3\x2d\xbd\x46\x8b\x0a\xe6\x62\x37\xf0\x06\x88\x9f\x76\x03\xe5\x8b\x4c\xdc\x35\x72\x1c\x1c\x52\xb0\x74\x42\x2a\xa5\x7c\x38\xcf\xef\x4c\x14\xaf\xf1\xf7\x3b\xca\x88\x9e\xc0\x0a\x84\xdf\xbf\x3e\xf1\xc4\x49\x9f\x60\x1d\x4b\x97\x53\xb9\xd8\x01\x5e\xdd\x80\xbc\x20\x32\xd6\x97\x58\x2e\x12\xe1\xc0\x16\x7c\x64\xec\xc4\xfb\x4a\xf8\x6b\x6a\xad\xdc\x38\xae\xab\x6b\x41\x3a\x9b\x19\x7d\xc1\xd9\x3a\x30\x6f\x89\xf6\xab\x22\x80\xbd\x4c\x90\x64\xa4\x35\xaf\xab\xa5\xd5\x0f\xb3\x71\x64\x56\xcb\x58\x10\x76\x1b\xfe\x31\xe7\x34\xf8\xa6\x56\x8a\x7d\xa9\x5c\x1a\x7d\x45\x77\x72\x4e\xf7\xa3\x9d\x53\x4e\x72\xdf\xbe\x6a\x14\xc4\x09\xb5\x70\x39\x88\x5d\xc0\x6f\xcd\x92\x2d\x83\x91\x72\xec\x65\x41\xab\xc5\xbd\x53\xa9\x68\xe1\x40\xfb\x95\x57\x9e\x28\x7f\x1d\xf5\xc1\x19\xdd\x0d\xfd\x29\x2d\x00\xce\xb2\x28\x34\x04\xfa\x8f\xb1\x54\x89\x62\x9c\x2d\xcf\xbd\x49\xeb\xa5\x79\x67\x38\xa7\xbc\x4a\xf1\xfe\xae\x0a\x44\x1e\x86\x38\x18\x3e\xfe\x3b\x58\xd1\x60\x13\xbb\x4e\x58\x03\xcc\xfe\x25\x8e\x38\x44\x7f\xa8\x5c\x0b\x42\xc3\xdd\xfa\xa5\x2f\x39\x8d\x2f\x25\xde\x74\x83\x76\x10\xe6\xfb\x3b\x9d\xd6\x33\xcf\xb8\x6c\x84\x1c\x26\x69\x52\x0c\x86\x54\x7a\xe1\x82\xda\xc4\xa7\x15\x2f\x2a\x2a\xb3\xc7\xb5\xe4\x1b\xdc\x56\x94\x47\x77\xad\xf9\xd6\xcd\xc8\xc4\xc1\x30\x89\x60\xbb\x51\xb9\xbb\xa2\x04\x36\xaf\x28\x63\x35\xb4\x2b\x91\xcd\x39\x44\x44\x4b\x2e\x1f\x5d\x7c\xd3\x58\x7a\xb0\x41\x6a\x4d\x86\x24\x86\x80\x8a\x7d\x9a\xf2\x33\x46\x72\xfb\xa4\x60\x96\x9b\x9c\x0b\x94\x0e\x44\x70\xf4\xc0\xe7\x82\x08\x8e\x1e\x78\xbe\xbd\x58\xbc\x1a\x0a\x34\x8c\x61\x3e\xda\x8b\xae\x3b\xb1\x84\xb8\xcf\x99\xcf\x9c\x15\x3b\xb4\x7e\xc4\x77\x6a\x9f\x98\x5f\x98\x6f\xaf\x0c\x4d\x0e\xef\xd3\xb1\x30\xbd\xe4\x18\x99\x94\xf7\x6d\x7a\x60\xe5\x44\x32\x45\x68\x01\x7d\xab\xcd\x56\xad\x12\xf4\x52\xe9\x55\x8f\x51\xad\xa0\x35\x26\x79\x53\xb5\x2e\x36\x15\xa2\xa6\x17\x25\x49\x7f\x9f\xef\x0a\x39\xad\x79\xad\xfe\x3d\x0c\x80\x50\x1b\xd0\x6b\x39\x42\x6e\xa7\x9c\xb8\x49\x8b\x46\xb4\x47\x68\x4a\x59\xb8\x85\x56\x90\x88\xb8\x3c\xa5\x44\x09\x93\xdc\x66\xb9\x89\x73\x19\x6a\xee\xca\xc6\xcf\x49\x8b\xb6\xca\xb3\xa3\x2b\xcc\x27\xbc\xbd\x9b\xbd\x59\x63\x3f\x98\x3d\xd2\x7e\xe6\xe7\xfe\x5e\x36\x55\xae\x7d\x1c\x5a\xbb\xbb\x8a\xa1\xef\xba\x02\x82\x6c\x7a\x86\x7e\xfb\x95\x22\xcc\xc2\x1c\x2e\x1d\xfc\xaf\xb3\xea\xf1\x77\x51\x17\xb4\x38\x84\x9e\xa8\xee\x7c\x6d\x02\x16\x0e\xb4\x4d\x9e\x9b\x60\x09\x81\x4a\x73\x12\xbd\x02\x4b\xa7\x01\x97\xa6\x6c\x4d\x99\x58\xba\xd7\x26\x0f\x97\xed\x3e\x3a\x5f\x84\x15\x80\xa6\x15\x89\xcd\x63\x64\xf9\xb1\xf5\x67\x88\x57\x0f\xbf\x70\x5b\x25\xcf\xae\x57\xc0\x54\x38\x1e\x64\x0b\x90\x15\x87\x15\xfa\xad\xc9\x53\x15\xcf\x34\x25\xe5\x92\xfe\x34\xfd\x3d\x37\x20\x2b\xe8\x13\x2b\x7e\xf3\x0d\x48\xec\xa4\x4d\xd9\x31\xfd\x27\x11\x35\x09\x3a\x75\x84\xc7\xc9\xa3\x45\x90\x75\x45\x83\x27\x05\x75\x88\x72\xce\xa6\xee\x9a\xb9\xa0\xb2\xf0\x66\x64\xe3\x3e\xa5\x24\xe1\x33\x4b\x4b\x96\xf7\x01\x7f\x8d\x5e\x9c\x3d\x7a\x15\x42\x24\x63\x9b\x96\xdb\x74\xf0\x90\x06\xb9\x4c\x7c\x02\x8c\x49\x97\x45\x47\x8c\x66\x0e\xe5\xe8\x63\x3a\x9b\xf4\x1e\x00\x63\x42\xa5\xed\x81\xb2\x9f\x21\x1b\x06\xb0\x2a\xea\xae\x78\x19\x86\xda\x01\xa4\xf3\x0e\xa1\x01\x81\xe0\xbc\x80\xd1\xe7\x4f\x34\xf1\xfe\xb8\x9e\x03\x6e\x45\x7b\xde\x69\xb7\xfa\xdf\xc5\x61\x86\x91\xff\x63\x35\x54\x44\x36\x1c\x3a\xc8\x8e\xc8\xe6\xfb\x3e\x87\xba\x0c\x7d\xe9\x70\x86\xf1\x62\x44\xdc\x1a\x4e\x01\xe6\x96\x2a\x3c\xdf\x6a\x92\xd2\x36\xfd\x57\x8b\xcc\x8b\x88\x4b\xc7\xbe\x87\xf9\xd6\x09\x4a\x7e\xbe\x9d\x9a\x68\x8c\x20\x01\x07\xcf\x19\xc5\x77\xfe\x31\x56\x86\xa0\xe5\x1e\xf1\xd0\x28\xd7\x7b\x81\xff\xdb\x52\x5d\x24\x75\x7c\xf0\xa1\x43\xed\x91\xc9\x32\xab\x7a\xc1\x10\x21\xf0\x75\xcd\x47\x3f\x78\xb0\xfd\xaa\x5d\xb1\x51\xca\xa9\x7b\x6e\xe9\x56\x2b\x4a\x57\x34\xf3\xa4\x48\xc3\x2c\xcf\xa8\x6b\x0a\x7e\x1c\x58\x25\x61\x30\x6e\xe8\xe5\xfd\x0e\x6d\x53\xa9\x37\x3c\xa6\xb1\x74\xfd\x22\x20\x55\x28\x49\x95\x83\xfc\x87\x4f\x37\x2d\xc4\xfd\xd9\x44\x25\x65\x8f\x63\x4d\x72\x67\x3a\x6d\x4b\x64\xaa\x6e\xc2\x3a\xf0\x0d\x42\x70\x07\x50\x75\xed\x6b\xe7\xab\xba\x8a\xf5\x83\xb0\xad\x20\xfd\xf2\x8b\x1e\xb5\x72\x5c\x05\x96\x79\x91\x96\xcb\x93\x74\x09\x99\xb2\x80\xce\x32\x21\xdb\x52\xd9\x91\xeb\x6a\xa9\xfe\x37\x30\x4a\xfc\x1f\x4d\x46\x74\x6c\x6d\x5a\x46\x07\x2d\x0f\xc0\x00\x1d\x30\x5f\x37\xe4\x2d\x5f\x6e\x67\xb9\x1d\x73\xb9\xc2\x75\x8b\x6b\xe1\x1d\x41\xd8\x04\x26\x15\xd5\x0f\x56\x76\xc0\x74\x79\x99\x07\x4e\x16\x91\xe4\xb3\x4d\xa7\x68\x73\x63\x32\xe1\xd3\x00\x1f\xfd\x67\x95\xb6\x48\x8f\x61\x24\xb2\xbc\x22\x0e\x73\xd4\x16\x9d\xe2\x45\xf9\xc7\xa2\xd3\xa1\xeb\xff\xc5\x60\x98\xef\x2b\x0f\x2c\xcc\xcf\xe5\x49\x05\x22\xf4\x82\x94\xaf\xb9\xb4\x81\xa4\xe6\x39\xca\x59\xc3\xb9\x84\x03\x2a\xe7\xb4\xaf\x82\x5d\xd6\x99\x7c\x0f\x30\x1a\x86\xa9\xdd\x47\x03\xe3\x48\xd3\xbf\x3c\x2b\x92\x00\x64\x14\x61\xe0\x1e\xed\xea\x06\xac\x89\x4a\xca\x63\x65\x02\x1d\xfa\x0d\x98\x4e\x19\x48\x1f\x74\x6e\xa8\x6c\x51\xdf\xf6\x4c\x6e\xb3\x19\xfa\x55\x6c\xd9\x9b\x1d\x95\xac\x44\x65\x01\x70\x22\x76\x62\xf9\x3f\x26\x8a\xc9\x6d\xd3\xf9\xf5\x71\x32\x0a\x63\x83\x04\x8e\x50\xec\xb6\x1c\x41\xd2\x49\x1a\x0f\xd8\xdc\x8f\x95\xdf\xc9\xf4\x03\x2d\xa5\x2b\xc1\x62\xbe\x52\xb5\x6f\xb0\x22\x83\x70\x51\x80\x3b\xe8\x8e\x84\x1a\x0b\x5f\xeb\x8e\x6a\x88\x5e\x0a\x26\xef\xdb\x15\x1e\x9c\x96\x63\xa5\x81\x50\x08\x46\xfe\x7f\xa1\xd1\x46\xec\x74\xaf\xe6\xf4\x12\x35\x50\x3e\x2c\x46\x3d\xfe\x7d\x78\xd2\x5b\xca\xab\xde\x6a\xcc\x1b\x24\x63\xcb\x59\xa2\x59\x47\x12\xa0\x90\xb1\x8c\x82\xe3\x26\x2f\xe5\x0d\x2e\x52\x59\xa8\xd2\x1a\xaf\xba\xcf\x3e\xc5\x54\xf0\x4d\x47\x71\x41\xa2\x44\xeb\x24\xc3\x74\x9f\xbd\x4a\xb1\x58\x0b\x11\x24\x04\xa5\x52\x0d\xa5\x70\x59\x02\x13\x25\x2c\x60\x22\x96\x9f\x92\x7c\x16\x9a\x52\xf9\xba\x8a\xa7\x5c\xca\x1e\xf2\x05\xd6\xeb\x14\x8f\xba\xbc\x76\x69\x02\x91\x88\x00\x47\x80\x48\x79\x95\xdb\x8a\xff\x5d\x0b\x88\xdc\x99\x68\x8e\x1b\x9c\x18\xf0\x5e\xee\x91\x61\x73\x7e\x54\xe9\x07\xa0\x12\x75\xba\xa3\xda\x24\x4f\x6b\x6c\x93\xe6\xc2\x0d\x6c\x58\xbe\xfe\x8c\x4a\xdd\xc1\xd8\xe3\xdb\xdf\xc4\x96\xe2\xff\x80\x19\x87\xbf\x79\x11\xc3\xce\xd4\x3a\xce\x86\x45\xa6\xbf\x3a\x5d\x69\xee\x25\x27\x4c\xb3\xa5\x20\xe1\x0a\xaf\x0b\x49\x95\x87\xd7\x76\x56\x92\x8f\xbc\x48\xb4\x02\x36\xcb\x2c\xda\x05\x1c\x46\xa5\x7c\x4e\x77\xb0\x1d\x3a\xe4\x1a\x3f\x9f\x54\x9b\x9a\x24\xb3\x08\xee\xef\xf8\x43\x76\x53\xfa\x95\xaf\x5d\x78\x48\x20\x62\xeb\x0b\x60\xc8\x56\x4c\x11\xc3\x06\x5f\x77\x1b\xea\x27\xc3\xd5\x5e\x1a\x22\x1b\x80\x80\x13\x8c\x14\x7c\xad\xf2\xb9\xd0\x31\xde\x57\x4d\xc8\x1d\x9c\xf5\x7c\xe9\x8e\xc8\x85\xf9\xc7\x2a\xcc\xbb\x88\xbd\x3f\xe0\xa9\x07\x4e\x01\xc7\x95\xa2\xcc\x9d\x75\xd9\x3d\xbf\xe5\xbf\x38\xf7\x7c\x4b\x89\x2c\xc1\x23\xe1\xeb\xa6\x58\xb1\x8c\x7b\x78\x2f\x37\x9d\xab\xce\x73\xb6\x59\x38\x88\xf7\x2a\x89\x7e\xb0\x71\x62\x0a\x5a\x6b\x2a\x1a\xe7\x0c\x37\x4c\xcb\x3c\xb9\x02\x3a\x87\x87\xb5\xf1\x24\xca\x6c\xe2\x3e\xfa\x45\x19\xc6\x41\x54\xf4\xed\x83\x2d\x47\x74\x72\x8d\x72\x1c\x92\xad\xa6\x1f\x42\x0a\xba\xa2\x25\x7e\x97\x7e\x48\x6a\x40\x9a\x84\xf0\x1c\x59\x37\x54\x65\xaf\xa0\x6c\x57\x51\xe6\x11\x50\xae\xf7\x90\xff\x3f\xb8\xce\x02\x8a\xf4\x32\x06\xa3\x24\x89\x19\x13\x80\x02\xc3\x1f\xd3\x20\x28\x21\x34\x39\x0b\x2f\xbb\x5d\xd1\x37\x29\x5c\x44\xd1\x31\xf7\x5b\xfe\x74\xcd\xcd\x78\x96\x05\xeb\x06\x43\x30\xa5\x20\x64\xdf\xa4\xc3\x03\x6e\xc6\xd7\x26\xea\xa0\x3b\xa7\xea\xf3\x63\x1b\x2c\xb5\x3c\xb3\xc0\xee\x35\x65\x42\x76\x37\xf0\x1d\x1f\x6e\x67\x36\x5d\x0e\x03\x86\x48\x61\x33\x73\xf1\x48\xdc\x07\xdf\x32\x73\xab\xa6\x27\x08\xa9\x6f\xf0\xe9\x15\x4c\x2f\x87\x25\xbc\xa9\xc9\xa3\x37\x1b\xa1\x73\x7d\x03\x43\x21\x98\x05\x8f\xfd\x7d\xb3\xe3\xe1\xdb\xc0\x90\x8b\xe3\xe6\xf3\x78\xb1\x1d\x44\xe1\x20\x2c\x1d\x7c\x7a\x76\x21\x52\x56\x4b\xaa\x09\xd4\x71\xb8\xdd\x4b\xad\x64\x21\xb8\x83\x0d\x9f\x91\x76\xb6\x06\x2e\xd5\x7e\x91\x7c\xbe\xf3\xdd\xc4\x22\x6d\xa3\xbe\x4d\x39\xe7\x84\x5d\x7c\x5b\x25\xe3\x6e\xab\xd7\xc8\xf2\xd4\x64\xbd\xa4\x48\x39\x9b\x22\xe4\xbf\x2d\xc7\xc3\x70\xa6\x49\x4e\x25\x33\xcb\xe5\xa1\x35\xa3\x21\x26\x5f\xc3\xbe\x00\x85\x17\x3a\x87\x71\xca\xee\xea\x7a\x3b\xb3\xa9\x71\x28\x5f\x73\x2e\x25\x47\x58\x5c\xc2\x71\xd4\xf7\x0e\xd5\x76\x0c\x63\x24\x28\x53\x6f\x6a\xf2\x60\xf8\x20\x1e\x02\x99\xc9\xef\xe2\x9c\x85\xbd\xbf\x3f\xf1\xfe\xc9\x04\xa2\xaf\x00\x01\x7d\xa1\xab\xd4\xa4\xb7\x27\x8a\xe7\x8b\x35\xdf\x50\x56\x7e\xa8\xeb\xcd\xd0\x9d\x49\x05\xd0\x59\xbe\x04\xfc\xb9\x6d\xdf\xf3\xbf\xff\x89\xae\xea\xca\x4a\xa2\xe5\xa4\xe5\xcd\x06\xbf\xb9\x34\xc8\x28\x5d\x92\xa1\xed\x4f\x7b\x19\x76\xd6\x23\xc6\x83\xee\x5e\xf3\xe0\xdb\xeb\xaa\x96\x32\xdd\x7d\xcc\x57\xbe\x4c\x1c\x58\xab\xe9\xe4\x7f\xa2\xa8\x31\x7e\xe2\xcc\xe7\x90\xe6\x8c\x42\xe6\xed\xbb\x0a\x03\xfd\x01\x1e\x8c\xdd\x84\x9a\x39\x90\xf2\xa9\x1d\x00\x7a\xc3\xf2\x03\xb4\x9e\x44\x8a\xc0\x3b\x28\x2b\x69\x69\x37\xf6\x96\x43\x8d\x6d\x7f\x83\x33\xb4\x88\xf3\x70\x02\x23\xba\xff\x5f\x95\x7a\x1b\x13\xc7\xc3\x9f\xfd\x09\x46\x80\x6f\xaa\x0c\x01\x3b\xd9\x59\x0e\x1d\x3a\xdc\x1e\xa4\x26\x2f\xc2\x3c\x29\x32\xae\xb3\x8b\x13\xe5\x01\x06\xe7\x55\x70\x36\x0c\x7b\x3d\x93\xf2\x89\x2b\x24\x31\xb4\x1e\x84\x3e\xa6\xc2\xc4\x11\x4b\xfd\x08\x8f\x50\x4d\x1c\x75\x54\x61\xec\xbd\x8e\xe6\xcd\x7a\xb5\x48\x43\xa6\x13\xc7\x29\x84\x53\x90\xaf\x15\xf4\x23\xcc\xb3\xa7\xbd\xfa\xdd\x87\x13\xad\x9f\xae\xdb\xcd\xee\x4f\x88\x32\x4a\x5a\x2e\x15\x23\xc4\x15\x0c\x1e\x4e\x80\x4d\x55\xc2\xbe\xa3\x34\xef\x77\x01\xed\x21\xda\x60\xb4\xca\x19\x64\xd1\x51\x50\x83\xcf\xe8\xa0\xc3\x32\xbf\xd7\x51\x35\xc6\xcb\x14\x58\x09\xad\x32\xe5\xbf\x44\x5b\x4c\x25\x37\xa7\x08\x86\x03\x07\x12\x50\x22\x09\xc5\xb4\x6e\xef\xc7\xa8\xf3\xe0\xdc\xbe\x8a\x78\x1c\x56\x78\xbf\xab\xe8\x8e\x92\xe5\x32\x30\xf2\x12\x58\x37\xf0\x98\xa0\x0b\x6c\x75\x75\x8b\x9f\x2f\xb6\xdf\xc5\xf0\xe1\x7c\xbf\xe0\xda\x07\x32\xfb\x95\x82\x0a\xf3\x2e\x67\x84\xd1\x7e\x53\x81\xf4\x89\xf3\x84\xa3\xd9\x8f\x55\xfc\x12\xe5\x66\x7f\x39\x3f\x4c\xa1\x3d\xf1\x89\x93\xcb\x8a\xdf\x8f\xd1\xcb\xd2\x12\x8e\xb7\x95\x4e\x00\x7a\x26\xf9\x2f\x25\x33\x00\xa6\xcf\xed\x8e\x82\x92\x5f\x57\xd2\x58\x14\x77\x84\x99\x80\x53\xa5\x7f\xdb\xfb\xad\x1b\x4d\x42\x0a\x26\x08\x92\x22\x06\xff\x1e\x36\xf8\x50\xd3\x36\x83\xa2\x44\x42\x36\x85\x5b\x37\x91\x49\x5d\xa3\xb1\xf3\xb1\x7d\xa7\xf2\x45\xfd\xc7\x45\xdc\x07\x72\xd2\xe1\x2a\x7f\x63\xa2\xd8\xbe\x76\x51\x5f\x19\x0a\x90\xbb\xbb\xde\x3a\x40\xe4\x65\xba\xc2\x8e\x5e\xae\x37\xb1\x7c\xbe\x7c\x83\xba\x95\xfc\x8d\xa7\x0f\x0e\x22\x6b\x62\xa2\xb9\x47\x36\x88\x0d\x07\xdf\x60\x89\x70\x99\x09\xc3\x2a\x35\x27\x05\x8c\xff\x11\x82\x34\xbe\x51\x50\xc6\x30\xce\x8a\xd4\xa6\xd9\x8c\xae\x25\xd0\x07\x5d\x91\xe1\xa8\xb4\xbf\x5e\xd2\x4c\x82\xdb\x1d\x55\x26\x6e\xe2\x4a\x6e\xe7\xd6\x04\x43\x45\x7f\x7b\x15\x1f\xe7\x1b\xcf\xee\x44\x69\xc3\x0a\xb6\x94\x31\xfd\xb2\xd6\x1b\xda\xce\x02\x93\xe5\x91\x8d\x42\x96\x2c\xc2\x77\x5e\x57\x4d\x71\x75\xc1\x8d\x83\x07\x85\xf1\x10\x9e\x17\x6c\xed\xe5\x8e\x12\xbe\x7b\x93\x02\x4b\x11\x3d\x7b\x5c\x13\xd6\xd2\x3e\x7a\xa4\x0c\x24\xdc\x0e\x3c\x2a\x5d\x1a\x38\xec\x61\x0d\xde\x55\x8d\x5c\x68\x1d\x86\xe5\x9f\x5a\x2b\x63\x46\xfc\xfd\x19\x58\x32\x1c\x56\x9b\x5a\xd0\xfb\x56\x47\x31\x18\xdd\x9b\x54\x88\x2a\x3a\x5e\xe8\xe0\x81\xae\x6a\xed\x67\xfd\x54\xa9\xdb\x91\xf9\xe4\xaf\xae\x1d\x6c\x5f\x9e\x6d\x9b\x34\xb5\x99\xc3\x18\x2b\xde\xd8\xd9\x06\xde\xd8\xd7\x6c\x9a\xbc\xd6\xf2\xdc\x2f\xc7\x54\xd0\x75\x4c\xe9\x8c\xad\x98\x74\xb4\xc7\x7b\x5e\xac\xd6\x27\x55\x7f\x7a\x5b\x8d\x77\xc2\x89\xb0\x46\xc6\x92\xaf\x3b\xaa\xf4\xa9\xc9\xe9\x7e\xe1\xe0\x7c\xab\xd6\x82\xc2\x37\xb5\xc4\xed\xd1\x03\xed\xb4\x5c\x74\xf2\x76\x40\x39\x00\x12\xc4\xd7\x0d\x1d\x3a\x66\x91\xb2\xeb\xaf\xa9\x0e\x0e\xbc\x27\x5f\x37\xf1\x3b\x07\xc9\x68\x9c\x26\xa3\x90\xb3\xca\x88\xaf\x8f\x2b\x18\xf1\x71\x75\xa2\xda\xd7\xc6\xa1\x00\xf9\xe0\xce\x7d\x38\x51\x3c\x75\x1f\x56\xa0\xc9\x36\xee\x67\x33\x4a\x0a\x68\x13\x07\x8f\x2b\x78\x2d\x08\x45\xcb\x31\xc5\xad\xf2\x36\x2d\x0e\xb8\xd3\x9a\xcf\xf7\xf5\x84\x69\x53\x98\x6d\x81\x0c\xa1\x30\x2f\x28\x9e\x46\x91\x88\xe5\xbb\xc9\x53\x8a\xf6\x26\x37\x59\x9e\x26\xe3\xa1\x6d\xa9\x43\x8f\xdb\x6d\xf9\x66\x27\xd5\xd6\x4b\xb3\x47\xda\xb3\x47\x5a\x4a\x2c\xee\xac\x52\xf3\x3b\xab\x7b\xe2\xcd\x80\xa5\xf9\x45\xc4\x45\x8b\xbb\x34\x28\x40\x67\xc3\x64\x25\x4d\x92\x11\xcc\x05\x1c\x60\xc0\xad\xf9\xba\x81\xeb\xe3\x30\x54\xc7\x5c\xf9\xd4\x09\x0c\x7a\xb1\xc1\x26\x87\x9f\x5a\xb0\x65\x29\xc9\x8e\xf2\x5e\xe6\x66\xc7\x17\x98\x23\xb3\x4a\x72\x8e\x2e\x73\xf9\xb1\xd6\xf4\xfe\x58\x55\xd4\x72\x9b\xa6\x61\x9e\xc0\x51\x72\x0d\x0b\x3c\x19\x82\xc8\x73\x1a\xd6\xd4\x00\x18\xb8\x13\x1c\x19\x00\x54\x17\x58\x3e\x17\x0b\x09\x29\xc0\x4b\x2a\x0d\x62\x17\x17\x6d\x90\x3f\x58\x9e\x34\x38\x0e\x4e\x93\x21\x47\x38\xfe\x67\x88\xc0\x91\x6e\x41\x76\x12\xc7\xce\xfe\x6e\x69\xa5\xe0\x57\xec\x59\x23\x27\x05\x45\xd8\x5d\x5d\xbf\xf0\xb6\x54\x4a\xe9\xfe\x44\x05\x7f\x9c\x4d\xc4\xef\x31\xed\x1b\x32\xbc\x9f\x29\x2e\xd7\x20\xb2\xcb\x36\x32\x31\x0f\xac\xd2\x49\x9e\x75\x72\xc8\x3b\x83\x48\xca\x4d\x85\x59\x12\xd3\xe9\x2b\x3d\x4c\xe5\x0b\xa1\xfa\xba\x7b\xcd\xf7\x6e\xec\xef\x3e\xa6\x46\xfb\x35\x17\x24\x73\x7d\xa9\xa3\x6b\x4d\x95\xdc\x61\x0f\x20\x12\x96\xd4\xc5\xc0\x8a\xbe\xae\xd6\x49\x2b\x62\xa9\xc4\x4b\x87\x22\x77\x19\x0a\xc0\xde\x57\x1b\x83\xd5\x38\x0c\x84\x7b\xf1\xb0\x88\xb8\x74\x14\x04\xab\x7e\xba\xbd\xf2\x8a\xe0\xa8\x1c\xe2\x0b\xeb\x02\x08\x24\xbe\x76\x61\x64\x64\x8a\xb8\xb4\x78\x84\xe1\x47\x40\xf7\x2e\x26\x05\x3e\xe4\xc9\x89\x5a\x89\x33\x5d\xdf\x0c\xf5\xb6\xd2\xc5\xe4\x33\x44\x78\x9b\x1f\x53\x0a\x22\x63\x6b\xf2\x4c\x85\x18\x37\x3a\xbe\x11\xf7\x86\x92\x3f\xeb\x87\xa9\x0d\xf2\x24\x5d\x9d\x6a\x39\x6e\x18\xb0\x5a\x54\x10\x5a\x52\x7b\xf7\x16\x26\x8c\xfb\xb6\xb4\x7a\x36\xce\xf7\xab\xe6\x80\x6b\x1d\x45\xea\xfa\x31\x16\x2c\xce\x8a\x75\xd5\x2e\x7b\x6b\xe2\xf9\x34\xae\x75\x7c\xb3\xe4\x05\x1d\x42\xa1\x4c\x2a\x8c\xd1\xe5\x19\x8e\xfc\xce\x4f\x9a\x79\xfa\xe2\x65\x8b\x1e\x4f\x57\x5b\x3d\x81\x01\xe5\x1b\xd7\xe2\x93\x5a\xf4\x82\x89\x5d\x71\x31\x98\x6f\xf1\x51\x6e\x5c\x5e\x8c\x92\x14\x4c\x16\xd2\x99\xa6\x65\x42\xd5\xa0\x8f\xe9\x0c\xcb\x3e\xff\x4b\xbd\x39\x29\xe2\xb1\x4d\x17\x93\xd4\x75\x81\x0a\x91\xa4\x6a\xaf\xfc\xb4\xc6\x15\x77\xf4\xc0\xf3\xc0\x43\xc5\xee\xd9\x81\x39\x43\xa7\x3b\x5f\x3b\x33\x34\x4e\xcd\x60\x64\x80\x59\x74\xc7\x3f\x62\x3b\xa1\x84\x6b\x70\xb6\x38\xcd\x35\xad\x31\xe2\xff\x3f\x63\x6f\x1a\x24\x49\x7a\x9e\x87\xcd\x54\x77\xcf\xb1\xbb\xb3\x3b\xd8\xc5\x82\x26\x2d\x5b\x05\x07\x44\xc8\x0a\x68\x43\x0e\x9a\x61\x9a\x7f\xaa\xdc\xdd\x20\x30\x1d\x44\xef\x44\xcf\x60\x16\x5a\xcb\x11\xf3\x55\xd6\x57\x55\xb9\x9d\x95\x59\xc8\xa3\x7b\x7a\x7f\xf1\x87\xc2\xa1\x70\xf0\x87\xc2\xb2\x65\x47\xc8\x21\xcb\x32\x45\x93\x11\x12\x2d\x1e\x12\x2f\x00\x55\x00\x48\x80\x24\xae\x5d\xec\x7d\xcf\x7d\xdf\xf7\xd9\xab\xc8\xf7\x79\xdf\xef\x7b\xb3\x2b\x97\xc1\x7f\x99\x33\x5d\x55\x99\xdf\xf1\x7e\xef\xf1\xbc\xcf\x43\x9e\x80\xab\xb9\x3b\xb3\x73\x86\xb6\x32\xca\x3c\xb3\x6d\x7f\x7c\x65\xd6\xcc\xf9\x52\xe1\xb3\x6d\xdf\x54\x00\x19\x65\x27\xe0\x86\xd3\x4b\x29\x1c\x4a\x39\xef\x81\x42\xd3\xe7\xc9\xc8\xbc\xdc\x50\x2b\x52\x9d\x49\x17\x54\x2a\xd4\xc6\x5d\xd4\x1b\x1d\xf1\x07\xb8\x3d\x84\x68\x5b\xd2\x10\x45\x1c\xa0\x2a\x4f\x90\x70\x3c\x23\xc8\xf1\x80\xe4\xdc\xdb\xf6\x09\x87\xa7\xf0\xbc\xa2\xbb\xf1\xac\x2b\x3f\x42\xd6\xeb\x65\xdf\x6e\x2e\xfb\x5b\xed\xf5\x0a\xb1\xe3\xd0\xc4\xe8\x90\xc1\xce\xd8\x84\xe9\xc1\x5b\x40\x2a\x49\xca\x65\x1a\x23\x7d\x02\x3c\x8f\x48\x54\x7d\x73\xac\xbc\xa3\x6b\x5a\x6b\xaa\x31\xf1\x45\xe7\x1b\x54\xf1\x70\x12\xd6\xa5\x31\x17\x68\xba\xe2\xad\x07\x2f\x15\xac\xf0\x03\xd5\x3d\x76\x93\x1a\xc8\x37\x6f\xb6\x3c\xbe\x7d\x13\x46\x06\x07\xd7\xae\xb6\x37\x1d\x69\x52\xe4\x61\x6c\x99\xea\x14\x4f\x02\xd3\xc1\xc4\xa3\x44\xa2\x27\x79\xd8\xad\x7b\x76\xff\xf3\x07\x9a\xbd\xb0\x63\x53\x13\x45\x6a\xce\x5e\x83\x05\xe0\x1b\x85\xfb\x27\x7e\xef\x80\x71\x0a\x2b\xf3\x5e\x42\xcf\xcb\xe9\xb9\xfa\x2d\xf4\x7c\xc3\xb8\xcf\x89\x45\x18\xa0\x93\xca\x89\x3d\xe9\x1a\xa7\x4b\x17\x58\xe9\xcc\xfc\xc9\xd8\xf7\x6d\x3c\x81\x44\x84\x90\xb5\x56\xe2\xf8\x7d\x1e\x87\x51\x69\xd0\xfd\x24\x1d\xb5\xbe\x8d\x47\x69\xd2\xc1\x99\x06\xd8\x27\x43\xce\xf9\x66\xaa\xb0\x43\xe4\x04\x76\x38\x4a\x52\x26\x12\xe0\xbc\x39\xbd\xb1\xe4\xd0\x3d\x73\x53\x79\x34\x67\x51\xd8\xb5\x68\xaf\x90\x96\x50\x55\x00\x3e\x3f\xae\xe4\xec\x55\xf2\x66\xaa\x6a\xba\x6f\xb9\x59\xc4\x61\x9e\xcd\xa8\x1e\x9e\x07\xad\xed\x9f\x73\xfc\xa7\xf4\xe4\xd2\xc2\x23\x89\x90\xbc\x5c\x11\x4a\x7d\x92\xdd\x65\xbe\x51\x8a\xa2\xb1\x5d\xcf\xf6\x7a\xbf\xe6\xfa\x58\x09\x88\xb0\x7a\x29\xe3\xcd\x69\x1d\x0a\x5d\x2d\x99\x21\xcc\xc6\xa3\xb1\x9f\xf7\xa3\xd8\x24\x38\x59\x6e\xb0\x4b\xac\xe0\x94\xcb\x9c\xfe\x3c\x4d\x68\x4e\x14\xfe\x6f\x62\x33\x38\x66\x60\x07\x40\xba\x83\x48\x8c\x7f\x05\xa6\x1e\x36\x02\xec\x5f\x82\xb7\xa7\x81\x91\x3c\x85\xe2\x6f\x2c\xd2\x51\x92\xd9\x19\x5a\x38\xc8\xed\xbc\xa9\x94\xb7\x51\x5b\xe3\x12\x4c\x1d\x25\x49\x56\x74\x5e\xb2\x01\x40\xe6\xa2\x37\x52\x0e\x94\x08\x91\xf8\x90\xa3\x9f\xe4\xb9\x8d\x67\x3d\x66\xf6\x04\x2d\x4a\xe4\x6e\x38\x32\x74\x72\x51\x0e\xdf\x77\xc9\xb5\xb5\x77\x8a\x34\x94\x2c\x36\xbc\x69\xe8\xaf\xb2\x7e\xf6\x58\x65\xfa\xef\xaa\xac\x69\x56\x06\x5d\x2f\xff\x35\xaa\x71\x7e\x96\xbb\xc9\x3a\xd9\x3c\x81\x89\x7c\x5f\x41\x04\x36\xe9\x61\x61\x70\xe7\xd0\x44\x22\xdd\x25\xf4\x6d\xc8\x47\xa1\x07\x0c\x48\x63\xb4\xcd\x21\xc1\xf3\x9a\x16\x2b\xe1\x46\x15\xa4\xe8\x1e\xf0\xf4\x4b\xb1\xd5\x67\x90\x76\xb7\x15\x2a\xfc\x1e\xe5\x72\x9c\x9b\xe1\x24\x1c\x76\x93\xc9\xc2\x79\xcd\x6c\x27\x58\x2f\x8d\xc9\xd3\x8a\xcc\x22\x8c\x83\x70\x24\xdd\xf2\xc2\x41\x39\xe3\x55\x68\xff\x72\xac\x9b\x7f\x5b\x7e\x79\x98\x38\x1f\x08\x83\x8c\xa3\x65\x55\x67\xb3\x54\xc1\xb2\x50\xe8\xee\x5d\x03\xa1\x07\x72\x5e\x68\x79\x4f\x15\x00\x17\x2a\xe0\x2e\x1e\xe4\x85\x7a\x92\xc6\x96\xaf\xa7\xb0\x5b\x0b\x8b\xcd\xf5\x30\xe6\xa6\x53\xac\xca\x0f\x75\x99\x10\x64\xa6\x72\x26\x6f\x35\x4a\x4b\x4b\xcd\xac\xa0\x68\x57\xd6\x0e\x62\x49\x6c\x21\x6c\xe7\xbb\x3a\x0d\x74\xc1\x8b\xff\x9a\x34\xb7\xdc\x64\x20\x52\x5d\x0d\xa5\xe1\xf5\xa4\xf2\x49\x8f\x84\xac\xa2\x82\x62\x36\xc4\x5b\x9c\xb4\xb4\xc3\xc0\xfd\x89\x0a\x49\x87\x49\xd2\xdd\xd8\xa1\x48\x9a\x7f\x4b\xb1\xf8\xfd\x56\xa5\x53\x58\x69\xb5\xf1\xe2\x05\xde\xe3\x07\xbc\x78\xe0\x66\xde\x53\x4f\x94\x9a\xae\x49\x89\xb2\xc1\x11\x40\xef\xf3\x04\xd0\x1e\xf3\x99\x74\x22\xe6\xa0\xc9\x08\x51\x85\x15\xc0\x26\x0d\xb5\x91\x0b\x15\x4d\x08\x8f\x65\xbd\x37\x56\xa9\xd3\xd3\x6a\xa3\xe7\xe9\x06\x91\x69\x39\x16\xb2\x33\x4a\x52\x0d\x2e\x98\xea\x01\x74\x0d\x81\xca\x85\x1d\x86\x91\xcd\xe0\xa4\x0b\xf3\x82\x6f\xa2\x3e\x43\xaf\x82\x3a\x16\x0b\x58\x22\x8d\xce\x5c\xc0\x9a\xb7\x01\x7b\x01\x4d\x1e\xc8\x82\x83\xec\x70\xf3\x62\x4b\x91\x13\xea\x32\x6b\x90\x30\xa9\x38\x3e\x0a\xcd\x5e\xfc\x19\x7f\x3f\x22\x8b\x57\x15\x2a\x21\x32\xc1\x6a\x54\x80\xd1\xdc\x2b\x7c\xb5\xaa\xfd\x9c\x2b\xf3\x22\xd3\x52\x11\x8e\xd8\x5a\x76\x5d\x99\x5f\x69\x5a\x42\x37\x72\x77\x90\x0f\x4e\x2e\xaa\x0f\x5e\x9c\x0a\x5d\x3f\xff\xf9\x66\xc7\xf6\x92\x14\xce\x06\x92\x14\x37\x68\xa8\xf8\x7a\x2a\x8b\xf5\x85\x32\xb0\x48\xd2\x2d\x39\x3a\x8e\x41\x04\xc6\x20\xe1\x5f\x56\xa4\x6b\xae\xb1\x05\xeb\xe8\xa8\x32\xbf\x47\x55\x67\x13\x35\x06\x09\x44\xa3\x42\x5b\x2e\x0c\xe8\x4f\x2a\x24\x9a\x59\xb5\x5c\x72\x77\x0b\xc4\x75\x6f\xf1\x62\x87\x9f\xf8\xa0\xb5\xa5\x73\xe2\x8b\x5f\x6b\x1e\x3e\x0c\xb3\x20\x90\x4c\x3a\x57\x71\x06\x6c\x56\x73\xbb\x7b\x5d\x35\x34\xb7\xfd\x94\x71\x72\x9b\x34\xa4\x9b\x17\x5d\x04\x42\xc2\x97\x71\x48\xa8\xcf\x2d\xa9\x56\xbe\x76\x90\xb6\x5e\x98\xda\x1d\x64\xc8\xdd\xa1\xe5\xba\xe2\x58\x91\x03\x1f\x61\xb2\x72\x9d\xe6\x96\xd6\x12\x1f\x17\xec\x6e\xd7\x51\x3d\xbd\x64\x84\x69\x00\x07\xf7\x31\x4d\xa5\x73\xac\x26\x2d\xb9\xd8\xec\x16\xc3\x11\xc7\x94\xd8\x3a\xaf\x63\x9b\xf2\x4d\xcb\x67\xe4\xd7\xc2\x24\x22\xf1\xc3\xf2\x6f\x19\x68\xde\xf2\x65\xd0\xf7\x2a\xd1\x80\xdd\xc8\x76\xd1\x48\x73\x02\x9b\x5c\x0b\x87\xed\x52\x48\x31\xa5\xd1\x3b\x3b\x51\x3b\xf8\x75\x84\xd9\x7c\xf6\x60\xf7\xa1\xde\xb6\xbd\x4d\xa3\x28\xd0\xd2\x67\x75\xa7\xd8\xd0\xa6\x01\x34\x25\x3c\x8f\x21\xfc\x49\x21\x4d\xda\xab\xba\x73\x88\x5e\x65\x87\xaf\x4c\x72\xc1\x1a\xe1\xf4\xef\x69\x0e\x1c\x86\x86\x38\x83\xe2\x9a\xb5\x38\xc3\x22\xb2\x13\x12\x3f\x71\x6a\x72\x23\x0b\x03\xe9\xa8\x73\x4d\xdf\xcb\xcb\x35\xe7\x66\x6a\x83\x24\xed\xc2\xa6\xb2\x4a\x8b\x06\xca\x5e\xa7\x8f\x21\xb2\x79\xac\xed\x9b\x7f\x18\x5b\x03\x60\xcc\xed\xba\x06\xe6\x3c\x1c\x72\x3d\x5a\x68\x5d\x3d\xc2\xfd\x72\x1d\x05\x84\x3d\x32\x08\x3b\x21\xb3\xf2\x48\xb9\xbc\xa1\xe8\x24\x1d\xbc\x2b\x89\xfb\x8f\x95\x46\x1b\x3e\x36\xd7\x1e\x01\x77\xd9\x46\x54\xa1\x78\xde\x8f\x31\xaa\x8c\x29\xc7\x03\x23\x61\x78\xdf\x4b\x8e\x3e\xd3\x6c\xfb\x78\xfc\xc9\x09\x79\x97\x0a\xad\x27\x46\x7f\xe7\xc4\x77\x9c\x3e\xd9\x96\x83\x37\x2d\x3c\xf7\x89\xd0\x0a\xd3\xb4\x48\x2b\x92\x37\x4a\x51\x14\xae\x19\x91\x28\x41\xa4\x70\x42\x53\x83\x6a\xc6\xe7\x20\x89\x7b\x21\x32\x18\xa5\xc7\xec\x96\xfc\x8a\xef\xb3\x78\xda\x65\x5c\x86\x26\x5d\xb5\xb9\x15\x4d\x55\xf8\x1d\xdc\x9a\xc3\x37\xba\xbd\xc8\xc4\x94\xf6\x2d\xbf\x0b\xbb\x13\xc5\x00\xbe\xae\x61\x79\x79\x91\x6c\x4d\x48\x49\x57\x64\x46\xe0\xf5\xfd\x39\x7d\x8e\xaf\xdd\x8b\xe6\xc4\x1f\xcf\xfb\x5a\x7a\x29\x1a\x9e\x9f\x54\xa5\xe2\x93\x38\x41\x2a\x1e\x2d\x75\x47\x15\xc8\x07\x50\x59\x71\xd0\x7c\xef\x6a\xa3\xfd\x64\xe8\xb7\xdc\x90\x11\xfc\xf0\x68\xd1\xa5\xcc\xd7\x75\xbd\x98\x7d\x1b\x5b\x09\xf8\x50\x56\x39\xd9\x52\xe5\xff\x93\x95\xe6\xa2\x6e\x41\x99\x6e\xe0\x31\x25\x51\x46\x78\x4c\x41\x11\xea\x8a\x61\xcf\xf3\x73\x4b\x4f\x8f\xea\xef\xd1\x64\x4c\x49\x14\x06\x1b\xbb\x95\x10\xe5\x0d\xc0\x30\x1d\x42\xb2\x7c\x20\xd8\xe9\xf7\x14\x71\xd1\x69\x3a\x1f\xf1\xa0\x37\xe1\x3d\x33\x7e\x02\xf6\x41\x6a\x9a\x1e\x60\x76\x72\xec\x73\x2d\xd7\xa7\xa6\xd5\xc5\xce\x51\x92\x65\x20\x61\xc0\xf9\x03\x85\x63\xac\x1b\x66\x38\x17\x88\x74\x4d\xaf\xf7\x7a\x1a\xe6\xd2\x86\x8f\xd0\xeb\x75\xec\x39\xbe\x51\x75\x6c\x08\x0b\x64\xe5\x94\x1d\x9a\x77\xec\xad\xaa\x19\x7c\x5a\x23\x64\xdf\xb2\xd2\x74\xa4\xd7\xd4\x3d\x24\xd2\x1d\xa2\x31\x1d\x39\x2a\x5d\xe5\x80\x0a\x93\x97\x6f\x45\x9c\x96\xca\x5e\x58\x68\x9a\x7e\x6a\xd1\x36\x87\x9d\x75\x4f\x37\xea\x6f\x43\xf8\x04\x7f\xf6\xbd\x3a\x23\x17\x98\xb8\x0b\x20\x3b\x4c\x0e\xe0\x26\x7c\xad\x5a\xa8\x32\xe2\x06\x84\x3d\x86\x47\xfc\x88\x5e\x82\xaf\xa7\xe6\x87\xe0\xcd\x45\x9c\xad\x9b\x7e\x5f\x7a\xd3\x25\x95\xed\x51\xff\xef\xd2\x77\x48\x2b\x77\x4d\x51\xce\x1e\x09\xc2\xdc\xf7\x86\xb0\xfa\xa2\x92\x62\xd7\x44\x5e\xbd\xd4\x14\xdd\x22\xb2\x31\x13\x12\xc2\xf0\x9d\xd0\x0e\x2d\x7d\xd2\xd5\x2d\x0f\xcd\x8b\x05\x9e\xca\x72\x94\x66\xa3\x6b\xd2\x55\xca\x5f\x55\x08\x63\xb0\xb6\xe1\xf4\xf2\x90\xb7\x34\x4e\x9c\x57\x13\x30\x7b\xd8\xd3\x7c\x3d\xf6\x4c\xcb\x76\xcd\x44\x85\x13\xfa\x7a\xd1\x67\x53\x7d\x37\xfe\x79\x05\x7b\xb9\xdc\x52\x3c\x02\x97\xa7\x8a\x68\x34\xd8\xa3\x24\x37\x79\xd2\xf0\x40\x7e\x40\xa2\xf9\x5a\xb1\xe8\xf5\xa3\xb0\x6b\x29\x60\x61\x99\x4b\xda\x9a\x22\x79\xf9\xb4\xe2\xf5\x83\x00\x6c\xa6\x54\x9a\x7e\x42\x0f\xc5\xd7\x53\x93\xfe\xc2\xfe\x66\x36\xb2\xa5\x1b\x01\x0a\x0e\x8f\xc1\x38\xd1\x52\x20\xdb\x13\x53\xe8\xc0\x85\x85\x66\x94\xac\xcf\xf8\xce\xa4\x13\x4a\x65\xee\x8c\x8a\x29\xfe\x44\x4b\x4a\xdb\x34\x2b\x4c\xd7\xea\xfd\xa8\x04\x00\xeb\xb8\x91\x0f\xd0\x34\xd9\x14\x75\x4c\xac\xbb\x4b\x6a\x0d\x5e\x1a\x7f\xc6\xb7\x95\x75\x98\x96\x92\xd2\x8a\x74\x8e\x21\x81\x72\xbe\xd5\xf8\x55\xc1\xc8\x9c\x57\xb4\xc4\x5f\xff\x6f\x7f\x11\x2e\xb2\xb4\xd2\xe2\xa8\x54\x60\x3b\x39\x37\x1f\x4c\x2d\xb7\xc5\x83\x44\x8d\x6c\x95\x56\xf3\x66\xcb\x17\xc6\x36\x2b\x65\xad\x68\x34\x98\xf5\x7d\x20\x1f\x68\xca\x9f\x8f\x68\xdc\xf8\x3f\x74\xa6\xe1\x23\x55\xda\x1c\x26\x48\x4d\x2f\x1e\x74\x24\xab\x64\x71\xf8\xc6\xeb\xef\x98\x28\x62\x98\x0b\x9e\xfb\x29\xe8\x67\x09\x97\x04\x19\x57\x04\x6f\xb7\x5b\x4a\xe6\xfd\xb1\x76\x4d\xf6\x8a\xc2\x5f\x59\x14\xc2\x78\x52\xce\x96\x00\x54\x85\xc2\x34\xcc\x76\x28\x24\xdf\xe3\x93\x6a\x87\x63\xf9\xaa\x52\x5e\x51\x5e\x1e\xa4\xdb\xe1\xf8\xb3\x00\x30\x90\xda\x7f\xab\xfd\x94\x2b\x79\xd8\x61\x58\x0c\x33\xda\xd1\x70\x6f\x66\xd1\x9d\x5d\x21\x2e\x45\xbd\x72\xf7\x14\xcc\x77\x69\xa9\x19\x94\x87\x45\x1a\xb2\x74\xa9\xaa\x13\x2e\x2b\x22\x2e\x77\x02\x0b\x28\xc3\x27\xa4\x4f\xaa\x8e\xce\xe9\xe4\xcb\xe2\x41\x62\xdd\x9c\xf1\xcd\x24\x33\xe4\xae\x8a\x38\x17\x0d\x0a\x06\xeb\xae\x3a\x33\xc2\xe1\x28\x0a\xcb\x9f\x59\x3c\xc8\x09\xac\x53\x98\x4d\xbe\x69\xf9\xa6\xfa\xa0\x48\x3b\xa8\x3a\x0b\x45\x82\x3f\x61\xf1\x5b\x38\x35\x1e\x4e\x8b\x4e\x2e\x34\x87\x1b\x69\x68\xd0\x45\x00\xfe\x83\x57\x94\x6c\xcc\xf5\x8a\x9c\x4c\x8d\x6b\x1c\x0c\xc2\x60\xd5\xa2\x1c\xc2\xe2\xdb\x70\x02\x44\x89\x5b\x51\xa7\x94\xfe\x9d\x65\xc9\x32\x3c\xe8\x79\x82\xfb\x73\x57\x4d\xcb\x87\x10\xe7\xe1\xd0\x48\xbb\x4d\x0d\x75\xd5\xc8\x44\x79\xaa\xa9\xab\x6e\x29\xea\x2a\x5f\x95\x87\x13\x6a\x3a\xd1\x86\x6a\x41\x3c\xab\x0a\x91\xd3\x07\xc4\xf2\x72\x33\x4a\x92\x21\x8b\xbe\xc0\x8b\xdc\xd3\x56\x18\xc4\x4d\x64\x8b\xb1\x0c\x01\xb8\x13\x52\x5c\xf1\x01\xf3\xac\x88\xcd\x30\x9c\xa9\xb0\x4e\x79\x14\x2f\x40\x10\x08\x38\xee\xab\x70\x72\x54\x74\xa2\x30\x88\x36\x1e\x2b\x9f\x0f\xf8\x8e\x3b\x94\xbf\x66\x05\x27\xc5\x97\xf3\x2e\xd6\x82\x48\x3b\xa9\x76\xa8\x06\xc5\x19\xf0\xda\xee\x60\x11\xc3\x21\xe1\xad\xec\xf8\x19\x0f\x49\x12\x19\x76\x58\xf8\x67\x6a\x38\xe1\x3b\x61\xb7\xcb\xd0\x0f\x09\xa2\x1b\x4e\x12\xf4\xd8\x54\x2b\xe2\xca\x3c\x15\x63\x46\x39\x91\xcc\xaa\x83\xee\x45\x77\xd0\x3d\xa5\x78\x82\x56\x6d\x9a\x3d\xd6\x70\x84\x7a\x4f\xa3\x00\x23\xbe\x03\x7d\x4c\x80\xe5\x2a\xb2\x7b\xa8\xe4\x32\x77\xc2\x96\x38\x79\x88\xa5\xa5\x15\x5e\xcb\xc0\x42\xe0\xe8\xb9\x43\x1e\x17\xdc\xf8\x63\xe3\x0a\x60\xdd\x1f\xf3\x07\x0f\x1d\x98\x6d\x1c\x7c\x5e\x24\xd7\x94\x68\xf4\x37\x68\xd5\x20\x9d\xc8\x7c\xbc\xf8\xde\x1b\xaa\x39\x34\x88\x8a\xd2\x99\xa4\x4d\x2b\x1d\x2d\x34\x51\xd2\x85\x22\x91\xe2\x4b\xc5\x70\x44\x61\x36\xe6\xe6\x1f\x6b\xf9\xcd\x8b\x8a\x05\xed\x03\x05\xb2\x41\x33\x1f\x23\x92\x5b\xea\xa4\xf3\x08\x03\x3b\x1c\x45\xc9\x86\x4d\x61\xdc\xa5\x56\xd3\x70\x1d\x98\x00\x15\x48\xf7\x73\xb9\x3c\xb1\x8c\x7f\x58\xc3\x0a\x14\x24\x45\x1c\x84\x11\xd9\x2d\x14\x0d\xef\x54\xb2\x67\x8a\x62\xea\xb8\x0a\x24\x86\x76\xd8\xb1\x50\x99\xc5\x5f\x52\xeb\xc2\xe6\xdb\x4a\x59\xf9\xb4\xee\xdd\x7a\x43\x75\xc2\x5e\x76\x89\xe3\xc8\xc6\x5d\x9b\xce\x28\xce\x79\xa6\xe6\x47\xc9\x12\xac\x61\x70\x1d\x66\xda\x35\x9a\x98\x61\xdc\x2d\xb2\x3c\x0d\x09\xa1\x4a\x7b\x1f\xfd\x7a\x70\x83\xf9\xba\xa6\x0d\xaf\x9c\xc1\x4e\x47\x54\x47\xf1\xb8\x97\x69\x7f\xf0\x75\x4d\xfc\xf6\x62\xb3\x13\xe6\x24\x5e\xec\x9a\xb6\xb9\x4d\xd2\xc5\x89\x8e\x13\xf2\x64\x4d\x3f\x4b\x30\x20\x91\xd0\x3e\x57\xf1\x90\xcd\x7a\x8d\x16\x81\xb4\xe7\x28\xad\x37\x10\x10\xc1\x91\x3f\xa7\x08\x86\x87\x61\xb4\xfa\x38\x59\x26\x97\x2f\xf4\xcd\x60\x47\x75\x7f\x1f\x43\x95\xb9\xdf\xb3\xa5\xd0\x17\x58\x2a\xa8\xaa\xa0\xd9\x4e\x88\x9b\x7d\x1d\xf4\x06\xe6\x41\xf2\x90\xf0\x85\x24\x83\x49\xa3\xc6\x3f\x59\x63\x59\x0f\x34\x5f\xb2\xeb\xc2\x1f\x51\x9b\x0f\xd8\xea\x79\x1e\x7c\x1e\x72\x65\xc3\xd0\xe3\x1f\xa4\x81\xcf\x67\x07\x4e\xa9\x62\xd5\xb0\x48\x47\x03\x04\x8e\x6c\x43\x5a\xaa\x84\x8e\x37\x64\x81\xd7\x29\xfc\xd9\xa1\xf9\x2f\x35\x93\x34\x24\xa2\xcd\x86\x57\xb6\x05\xfe\x41\x28\x64\xbc\xc3\x1d\xf6\xc2\x38\x6f\x28\xd7\x89\xe1\x42\x22\x5a\xbd\xd5\x13\x38\x7c\xb8\xb9\x66\xd3\x8d\x19\xb2\x08\xc8\x81\x5f\x22\xab\x22\x90\x60\x1f\x9a\x5f\xd2\xc8\x40\xc7\x6e\xc2\x7d\x23\x9a\x63\xfa\x63\x17\xcb\x99\x2c\x2b\x52\x13\x07\xa0\xbd\x83\xbb\x83\x93\x06\xfe\xdf\x23\x9a\x44\x61\x32\x57\x85\xb1\x77\x54\x45\x85\x9a\xb1\x67\x3d\xfa\x11\x35\x1e\xe1\x0b\xa5\x65\x28\x5a\x62\xf4\x0d\x48\x39\x9e\xa9\x6d\xf3\xe9\xda\x20\x49\x99\xac\x5d\xec\x9f\x42\x6c\x5f\x98\x9a\xec\x95\xf9\x95\xe6\x28\x4d\xe2\xd2\xf0\x48\xf2\x8a\x69\x90\x94\x90\xe1\xc5\x96\x8f\x0c\xb3\x62\x44\xcc\xd7\x71\xde\xa8\xb6\x01\xd2\x08\xf1\x8d\xda\x24\xf9\xc0\x6e\xfc\x5c\xe3\xab\x5f\xe6\x97\x60\xaa\x26\x1c\x9c\x27\x15\x9d\xc1\xfd\x71\x19\x0a\x60\x8d\xef\x6a\x2b\x99\xa9\xbb\xad\xc6\x17\xbf\xc6\x16\xe9\x5f\x50\x11\x11\xc6\x14\x24\xe5\xb0\xd9\x37\xc6\xbe\x2b\x9c\x59\xe9\xb0\xa7\x1f\x6f\x2b\xf8\xff\x75\x4c\x01\x0e\xbd\x3d\xa5\x5d\xde\x9c\x9d\x94\xe7\x86\x88\x7d\xd1\xba\x42\x86\xf1\xa3\xb1\xd7\x77\x94\x5e\x57\xb8\x77\x7f\x34\x56\x8a\xad\x0f\x91\xb1\x41\xe6\xf5\x3d\x82\xff\x0b\xb0\xac\x5c\x12\x28\x0e\x34\x26\x8a\x6c\xea\x5d\x68\x07\x20\x11\x79\x1b\x64\x57\xa8\xcd\xdd\x6e\xe9\x16\x8e\x96\xc2\xf2\xee\x9d\xf8\x2a\x53\x16\x10\xef\x9b\xc3\x1e\x32\x5d\x15\xdf\x28\x71\xa3\x4e\x91\x85\xb1\xcd\xb2\x21\xfb\x8a\xaa\xa7\xd9\x35\x38\xd7\x71\x1a\xa4\x36\x4b\x22\x5e\x0a\x4e\x54\xc1\x1d\xe9\x7f\xa8\x5b\x7b\xc2\x38\x2e\x6d\xf0\x0b\xfb\x7d\x14\xe2\x8a\x86\x2c\x37\x2b\x04\xdd\xb5\x52\x44\x83\x24\xc9\x11\x3f\x3a\x9e\xd6\x72\xb6\xc4\x86\xfb\x08\x20\x33\x71\x77\x3d\x0c\x06\xe4\xc8\xc2\xac\x5f\x54\x6a\x90\x8c\xc9\x77\x92\x61\x3e\x4d\x7f\x59\x1d\x93\xa9\xed\x11\x59\xc3\xca\x3c\xdb\xf2\x7b\x63\x9f\x1f\xbe\xe7\x0f\xf4\xaf\x17\x26\x72\xa0\x52\xac\x3b\x88\x28\x3a\x2e\x6f\x87\x12\x39\xe1\xfc\xcf\x97\x92\x22\x8d\x2d\x7c\x5e\x01\xf2\x2a\xd2\xb5\x33\x53\x31\xca\xbe\xe5\xe6\xc8\x84\x3c\xce\x8c\x10\x55\x92\x57\x57\xea\xc4\x2b\xba\xa5\x97\x4c\xe2\xfb\x2e\x61\x72\x42\xf5\x80\x9d\x50\x29\xb6\x20\x49\x47\x49\x6a\x72\xbb\xdb\x3f\xd1\xad\xb1\x2a\xb5\xcf\x6a\x3a\xad\xfb\xe4\x11\xa0\x1a\xfd\x08\x93\x00\x63\xf9\x00\x36\x07\x83\x79\x9e\x2a\x55\x9b\x6c\x94\x10\x54\xde\x53\xa7\xfb\x34\xeb\xdd\xe7\x3f\xdf\xec\x40\x34\x0b\xa3\x29\x1d\xa6\x3e\x93\x73\x47\x25\xc9\xa6\x05\x4a\x16\x16\x9b\x91\xc9\xd1\x55\x82\x3d\x76\xaf\xa2\x38\xa5\x03\xc2\xa7\x5d\xc7\x44\x79\x72\x65\xc8\x82\x7b\x57\x96\x7b\xc8\xf8\x46\x61\x49\x7a\x49\x1c\x84\xec\x6b\x8b\x32\xa6\x96\xc9\xac\xd1\x8c\x4b\xad\xe9\xd2\xdf\x0b\x04\x8d\x46\x4c\xb0\x69\x35\x11\x5f\x81\xcc\x47\xc3\xc9\xd5\xbe\xa1\xd9\xdd\xde\x50\xe8\x46\xd3\x8f\x6d\x14\x85\x58\x16\x08\x98\x5e\x19\x2b\x45\xfd\x57\x54\x69\xc0\x8c\x46\x49\x18\xe7\xdc\x2c\xc8\xb4\xf1\xd4\x32\x23\x14\xf2\x2a\x40\x53\xca\x96\xb7\x5c\x39\x30\x89\xf3\x64\x67\xf9\x61\x69\x96\x68\xb8\x5e\xe8\x0f\x61\xa7\xe0\x83\x41\xce\x11\x55\x28\x08\xb0\x51\xc9\xf0\x9f\xfc\x6c\xbb\xf1\x95\x45\xc6\x0b\x9f\x27\xdb\x0c\x07\xf8\x9a\xab\x01\x04\x03\x6b\xd3\x30\x11\xe1\x5e\x78\x43\x7b\x61\xdf\xd5\xaa\x14\x75\xad\x9d\x13\xdf\x89\xda\x09\x93\x60\x60\x87\xa1\x70\x64\xeb\x8a\xa5\xd7\xbc\xc3\xdf\x16\x71\xd8\x4b\xd2\xa1\x06\x52\xc1\xef\xd0\xc0\x43\x38\xde\x9b\x55\x6e\xcc\x23\x47\x68\xcf\x62\x9f\xff\xa9\x96\x5c\xfa\x53\x07\x5e\x5b\x0d\xf3\x86\xda\x2d\x38\xb6\xa4\x6c\xf0\x49\x44\xc3\x49\xba\x6a\x87\xc4\xbb\xe9\xf4\x19\x5c\x11\xf5\x98\x72\xa6\xdf\xa5\x55\x0c\x6f\xec\x4d\x0d\x03\x6e\xb4\xe5\xf7\xd7\x4d\x36\x57\x0e\x3a\xce\xa9\x6b\xe3\x6a\x01\xf7\x90\x60\x36\x3e\xc2\x42\x41\xc4\x37\xdb\xa6\xee\x40\xb8\x9c\xbf\x39\x95\x10\x3e\xf8\x7c\x33\xb5\xa3\x22\x0d\x06\x42\x15\xc7\x01\xc7\x78\xfb\xe7\x7c\x92\xd6\x93\x4e\x6f\x6f\x6f\xfd\x06\xca\x94\xda\x22\x4d\x46\xd6\xc4\x33\x3e\xc1\xca\x22\xb3\x18\xec\x9b\x63\xdf\xe9\x3b\xeb\xf2\x47\xfd\x70\xcd\x9a\x75\xb3\x41\xd1\xba\xf4\x65\xf8\x48\x7b\x9b\xb2\xb6\x37\x5c\x62\xc1\x25\x11\x65\x2d\xe1\xe8\x67\x30\x05\x3e\xb9\xbd\xad\x58\xe8\x8e\x2b\x74\x47\x6c\xb2\xae\xf9\x3a\xa1\x3b\xc4\xef\xf5\xf5\x58\xd0\xa0\x20\x95\x3d\xa1\xe7\x60\xf1\x50\x87\x65\x26\x87\x38\xcb\x4d\xdc\xdd\xd9\x50\x7a\x19\xf4\x63\x08\x18\x2e\x11\x37\x8c\x04\xdb\xe5\x78\x62\xbf\xe2\xe4\x70\x0d\xbf\xbe\xb4\x7c\x14\x56\x14\xab\x68\x73\xea\x78\x38\x7c\x98\xf8\xad\xa1\x35\x88\x90\x80\x85\xfa\xf8\xe6\x13\xcb\x38\xa9\x09\x42\x66\x7c\x71\x8a\x8b\x4e\x2d\x88\xe3\x40\x1c\xd1\xd3\xbe\xff\xf2\x72\x73\x54\x7a\xfe\x59\x16\x0a\x51\x15\x9c\xad\x9f\x2a\x0e\xaf\x9f\xaa\x5c\x42\x44\xcc\x00\x08\x1a\x11\xff\x23\x3d\x83\xa3\xe4\x9e\xea\x2d\x9a\xee\x7d\xff\x42\x33\x49\x63\x9b\xe7\xb6\xa1\xda\xba\xae\x90\x0f\x25\x6b\xdb\x23\x5c\x80\x79\x74\xfd\x1a\xb7\x14\x71\xed\xad\xba\x6a\x54\x14\x7e\xbd\x60\x46\x0c\x71\x3c\x1b\x8e\x85\xf8\xf8\x54\xf9\xa6\xf4\x83\xd7\x93\x74\x95\x76\x02\xe0\x10\x4c\x75\xe6\xe8\x50\x5d\x7e\xef\x95\xad\x74\xa8\xa5\xe7\xbd\x32\xbf\x1b\xab\x12\x11\x78\x63\x42\xe7\x5d\x85\x1a\x56\x42\x5b\xb2\xab\x92\x52\xa4\xc5\x8b\x45\x30\xc1\x99\xe0\x32\x4f\x8e\x9d\xf9\xdb\xb4\x3e\x15\xd6\x58\x0c\xd1\xa4\x92\xcb\x2e\xf2\xc1\x13\x2a\xf9\x74\xb6\xe5\xcb\x84\xb7\x2b\x70\x3f\x3c\x0e\x36\xe5\x7b\x4a\x75\x14\x2d\xfa\xa2\x03\xde\x58\x58\x70\xe9\x49\xf2\x52\x19\xfc\x83\x8e\x2b\xa7\xf2\xed\x33\x3f\x17\xe9\x31\x71\x7d\x94\xb6\x00\xb6\xd1\x5d\x35\x8d\x9d\x02\x84\xea\x42\x54\x7a\x0d\x0f\xc6\x37\xce\x9b\xea\xd8\x20\x19\xda\x6c\xae\x7c\x06\x26\xe3\x1d\xab\x96\xa6\x3d\x6d\x85\x83\x62\x44\x3b\xc2\x52\x74\x3c\xc8\x4a\xac\x91\x03\x41\x85\xdc\x39\x24\x58\x41\xd8\xa4\x0c\xbb\x22\x03\x80\xd4\xdc\x8d\x9a\x12\x78\xb3\x20\x8a\xf5\x20\x74\x08\x24\xce\x49\xd1\xe7\x24\x3f\x25\x49\x95\x2c\x2a\x52\x56\xce\x61\x5e\x98\x0a\x47\x4c\x1d\x2b\x62\xbc\xb1\x3e\xb0\x0c\x88\x72\x54\x61\x8e\x14\xf1\xb2\xaa\x7c\x05\x49\x1c\x58\xf2\x55\x1b\xbe\xfc\xfe\x31\xcd\x02\x5f\x3b\x3e\xe0\xae\x38\xda\xd2\x24\x42\xa3\xc9\x37\x75\x39\xea\x32\xb4\x1d\xa2\x1e\xc4\x2e\x00\xdc\x6a\xf1\x07\xbc\x09\x88\x93\x4e\xd2\xdd\xa0\x08\x58\xc5\xa9\x4a\x0c\xdb\x11\x1e\xbc\xa5\xd4\x23\xdf\x52\x79\xb9\xbf\x4e\x1e\xaa\xf9\x09\x56\x2e\xdb\x88\x93\x51\x1e\x06\x72\x18\xe0\xc8\x66\x0a\x4b\xd8\xba\x77\x75\x03\xf2\x43\x6d\x4b\xc2\xcc\xee\xf4\xdd\xc4\x1f\x8d\x7d\x63\xd3\x55\x2c\x68\x18\xce\xdb\x78\x11\x18\x23\xcd\x1f\xce\x58\x7d\xe4\x99\x19\x25\x06\x17\x58\xd3\xd9\x13\xa5\x72\x36\x4b\x7b\xc7\xb1\x0a\x94\x7b\x47\x58\x05\x1a\x9f\x20\xe1\xfd\x8c\xea\xfe\xc9\x6d\x3f\x35\x4e\x32\x93\xe9\xbd\x54\xe2\xfd\x82\xf2\x1d\x93\x22\x1f\x25\x0c\xf4\xe1\xd3\xb3\xa5\x4f\xd2\xba\xec\x50\xc6\x25\xde\x45\x06\xe3\xbf\xab\x29\x95\x20\x99\xb5\x89\x96\x3a\xa1\xde\xdc\xba\x66\x0f\xcd\xbf\xd8\xb4\x86\x48\xee\xe9\x97\x01\x24\x64\x50\x3a\xdf\xb8\xe0\xaa\x88\xf2\x70\x68\x72\x8b\xaa\xb2\x24\x05\x7d\x81\x12\x47\x3f\xe6\xe5\x63\x4d\x3a\x74\x71\xea\x84\xdc\xbf\xb2\xbf\x99\x95\x3e\xc4\xa1\x79\xb6\xb3\x1f\xe2\xd9\x85\xfa\xd9\xf7\x56\x78\xb1\x1e\x33\x2c\x1f\xb4\x6b\x86\x0d\xad\xdf\x7d\x51\xd7\xdf\x2e\xd6\x09\x54\xa4\x36\x0b\x0a\x38\xf0\x88\x5b\xde\x52\x31\xcc\x5b\x4a\x05\x76\x94\x26\x99\x0d\x48\x04\x96\xbb\xf4\x05\x23\x42\x83\x2c\xe8\x91\x9a\x36\xfd\xcc\x46\x91\x17\x5c\x97\x5e\x3f\x55\x48\xbb\xd4\xfa\x24\x21\x03\x50\x7e\x84\x62\x35\xf0\xd2\x1c\x80\xf3\x8d\x6a\xcb\x0a\x92\x7e\x1c\xbe\x6c\xb9\xeb\x40\x1a\x72\x95\xeb\x78\x7a\xac\xac\xc3\x4d\x55\xed\x24\x42\x77\xc6\x34\x8b\x46\xb0\x62\x33\xbf\x4d\x43\x2e\x79\x06\xef\x7c\x99\x38\x1c\x9a\x68\x07\xc1\x1c\x91\xea\x40\x5d\x45\xca\xff\xf4\x7d\xfc\x1f\x63\xa5\xd5\x7b\x57\x11\xbf\x4f\xf4\x19\x7a\x5e\x75\xd6\x05\x49\x9c\xd9\x38\x2b\xd0\x91\x84\xb9\x67\xc4\x21\xdf\x54\xa4\xde\xe2\xdc\xd0\x18\x49\x1b\x7b\xc3\xd1\xda\x9c\x6f\xe9\x7c\x43\x64\xb3\xa1\x89\xe1\xd8\x60\xa7\x3d\x18\x7b\x6c\x58\xa3\xed\xd3\x93\xc7\xa7\xd0\xb0\x32\x2d\x45\x56\x38\x14\x20\x36\x02\x83\x71\xf9\x06\xd2\x9e\xb0\xcf\xb6\x43\x8b\x0b\xfc\x29\x6f\x2b\x9d\xfb\xb7\x55\xb5\x2a\x49\xf3\x41\xd2\x4d\x8e\xcc\x68\x06\x95\x6a\x6e\x59\x4b\x40\x9d\x54\xad\x70\x51\x98\x0f\x92\x7e\x6a\x28\x51\xeb\xe0\x1f\x28\x55\xb2\xd8\xf9\x58\xf5\xc9\x68\x98\x58\x1a\x06\x03\xe2\x06\xf7\xcd\x08\x17\x14\x19\xc3\x85\x29\xbb\x72\x68\xfe\x4b\xcd\x4e\x11\xad\x36\x7c\xf0\x73\x46\x49\x6a\x9f\x71\x2e\xfd\x96\x75\x8b\x2c\x03\x0b\xa7\xf1\x4d\xdb\x4f\x4a\x27\x29\x36\xfa\x85\xe5\x6d\xc5\x8c\x56\x64\x3b\x84\xdd\xaa\x82\xfd\xb4\xd1\x5e\x5f\x85\xb9\x09\xbb\x0e\x67\xee\x3e\x3c\x3b\x00\x9b\x1f\x8e\x55\xe1\x66\x17\xd2\x85\xe2\x82\x51\x9c\x55\xa1\xeb\x93\x14\x32\x26\x00\x3b\xe4\x30\x3d\x83\xf8\x33\xbe\x6d\x74\xa6\x5d\x1e\x7d\xc2\x2b\x42\x2f\x85\x08\xfa\xc6\xd8\xa3\x33\xd0\x35\x22\x01\x85\x1f\x05\xee\xa3\x80\xbf\x73\xac\xae\x01\x7b\x54\xba\xde\xf9\xc6\x8c\x22\x48\x40\xc0\x8f\x5f\x7c\xa4\x4a\x97\x97\x15\x19\x41\x3e\x08\xb3\x67\xca\xdf\x07\x9a\xe5\x09\x32\xb8\xd8\x89\xbf\x4f\xe5\x29\xd8\xd2\xab\x2d\xd5\x8b\x09\x11\x6e\xc1\x96\x6b\x8a\x5d\xa4\x87\x90\x7d\x9f\x9b\x28\xde\xab\x6b\x54\x45\x85\x3d\x79\x48\xef\x88\xfc\xcd\x23\x4c\x04\x7e\xe4\xba\x92\x5e\xf8\x4d\x6c\x70\x78\x07\xd7\x5a\x0a\x9d\xbb\x67\x52\x0e\x0b\xf2\x03\xef\x8e\xbd\xb6\xc0\xc3\x96\x82\x1c\x3c\x86\xc8\x0f\x27\xca\x6f\x63\xe6\x24\xa9\x58\x63\x6c\xed\x91\x3c\xb5\x43\x3b\x53\x4d\x2c\x2c\x2f\x3b\x1d\x08\x5f\x76\xdb\x36\x85\x5f\x78\x61\xf1\x60\xb3\x63\x63\xdb\x0b\xd9\xa9\xd2\x42\xdd\x52\x4c\x98\x2e\x5a\x2d\x37\x7b\x51\xd8\x1f\x48\xde\x5c\x4e\x7b\xed\x05\xec\xad\x50\x4c\xc6\xdc\x1f\xea\x44\xec\x5d\x48\x37\x33\xa9\x94\xf3\x66\xb4\xcc\x89\x6f\xe9\x34\xa3\x51\x64\x49\x78\x86\xd5\x51\x14\x08\x62\x0f\x65\x71\x90\x37\xf8\x3e\xe1\xa2\xf9\x5a\xe3\xfc\x6e\x71\xad\x49\xf4\x13\x68\xe6\x45\x35\xc3\x57\x4b\xf6\x7d\xe5\x8b\xd4\x88\x8a\x53\x80\x33\xd7\xf0\xfd\x6f\x52\x58\x2c\x21\xb2\x26\xc1\x01\xea\x8b\x17\x85\xea\x20\x4f\x7a\x3d\x52\x16\x9d\x53\x5c\xee\x4c\xea\x0b\xaf\x19\x8b\x1c\x07\xe9\x3d\x1c\x5b\xfc\x1f\xaa\x3c\xb5\xab\x06\x99\xde\xcc\x92\x1e\x9a\xd8\x85\x9a\xad\xb4\xb2\xc2\xcc\xe6\xed\x8c\x13\x56\xa7\xe5\x85\x50\xf9\x34\x25\x48\xf9\x1a\xe3\x80\xd3\x05\xad\xa8\x7c\x5d\xa3\xfa\x19\xd8\x98\x75\x94\x38\x5a\x70\x49\x1f\x77\x80\xbc\x5b\xd5\x32\xcf\x0d\xb8\x2f\x11\x42\x5f\x53\xc3\x74\x42\x83\x0e\xee\x92\x11\x41\x96\x85\xe9\x8c\xa5\x81\xb0\x46\xdf\xec\xb3\x5f\xfe\x87\xfb\xbf\xfc\xc5\xe5\xc7\x7c\x74\xc4\x6c\x9e\x98\xa6\x27\x26\x6a\xb4\xcf\xaa\x02\xd4\x93\x6d\x8f\xa2\x7a\xa8\x15\x26\x2e\xd1\x11\x85\xf4\xfb\x44\xe7\x95\xef\x8e\x1b\x87\x0f\x73\x2f\xec\xf6\x36\x66\x1c\x2e\xf8\x9f\xd4\x75\x7f\xc4\x89\x27\xee\x97\x33\xd2\xb7\xa3\x5c\x1a\x7f\x46\x6b\x5b\xe5\x29\x88\x08\x4d\x34\x5b\xfe\xba\x14\x40\x1a\x8e\xff\xe8\xb4\x12\x46\xe1\x54\x87\x14\x46\xbc\x17\x03\xad\xdf\x19\x9f\xa3\x21\x49\x04\xae\x50\x1e\xd3\x54\xc5\x17\x94\xdd\xec\x24\x11\xd2\x09\x9c\x1e\x6d\xe9\x54\xa9\xc4\xad\x59\xec\x4a\xd9\x52\xbb\xe1\xa4\x0f\xdf\x28\x67\xaa\x9b\x04\x79\x92\x2a\x12\xc6\x4b\x8a\x84\xf1\x92\x42\xf1\xc8\x8e\x98\xf5\x99\x24\xf4\xf8\xf1\xb5\x16\xfe\x11\xaa\x12\x51\xac\x72\xb2\x13\xe6\x48\x38\x0c\x5f\x26\x35\x54\xb7\x5e\xdf\xa0\x25\xe4\x64\xf8\xcb\x29\xc0\x9a\xbb\x39\x55\x48\x5e\x58\x6c\x06\x45\x27\x0c\x70\xda\x30\x70\x9e\xd6\x09\x2c\xf9\x2e\x5a\x27\x38\x2d\xee\x28\x4d\x7b\x6b\x56\x1b\xbe\xc6\x07\x7b\xcf\xd7\x5a\x39\xba\x4b\xa4\x1f\xa5\x8f\xe8\x2d\xfa\xd9\x96\xc2\x9e\x9c\x1e\x7b\x28\x0c\xf4\xa1\x81\x8f\x3b\xdb\x52\x0d\xb6\x67\x35\xff\x48\x85\x25\x47\xa2\x44\xe4\x53\x76\xb7\xfd\x83\x5f\xd6\xb8\xfb\xc6\x44\xf8\xc1\x86\x61\x90\x26\x9d\x30\x89\x92\x3e\xa2\x77\x58\x50\x26\xb2\xe6\x9b\xa9\x40\xe1\xf0\xe1\x66\x90\x5a\x21\x86\x77\x6e\x95\xcf\x55\xdc\x9b\x8a\x62\x0e\x3e\xdf\xec\x15\x36\x52\x81\xf6\x69\x85\x7d\x38\x5d\x57\x05\x12\xfb\xd4\x50\x44\xa1\x6f\x90\x51\xe4\xeb\xaa\x96\xed\xba\xed\xee\xf2\xfa\xff\x97\xe8\x00\xe5\xeb\x96\x6a\x6e\x7f\xd0\xaa\x48\x47\x60\xbc\x70\x82\x72\x7b\xb3\xe0\x3a\x7d\x4e\xed\xbe\x0a\x82\x4a\x4f\x4d\x56\xec\xd7\x0b\x93\xe6\x36\x07\xda\xd5\xe1\x0d\x75\x92\xaf\x4e\x2b\x2c\xb2\x46\x4a\x36\xd8\x04\xec\xd9\xf2\x8d\xe3\x6e\xfb\x1b\xb2\xfb\xb9\xb2\x5f\x91\x95\xa1\x55\xc3\x67\xdc\x59\xdf\x59\xd0\x05\xd3\x79\xc9\xd4\x76\x8b\x40\x10\x29\x2c\x5a\x4a\x07\x80\x08\x98\xd6\xc0\xe3\xa2\x70\x38\x62\x09\x43\xa1\x8c\x2b\x9f\x0d\x39\x82\x8f\x15\x4a\xfd\xee\x14\x64\x77\x65\xbe\x19\x96\x0f\xe8\xc2\x04\x00\x2d\xf8\xba\x8e\x3c\xac\x57\xc4\xdc\xde\x8a\x6a\x33\xdc\x6b\xbe\xae\xe3\x4c\xd1\x89\x04\x7f\x94\x7e\x53\xb1\xe5\x7e\x73\xaa\xce\x45\x28\x4a\x96\xb7\xac\xe3\xd9\xa8\xe1\x1f\xca\x93\x1c\xf9\x28\x5a\x30\xa2\xe1\xd4\x70\x9c\x5f\x7f\xa9\xd4\xc1\x3a\x49\x92\xe5\x74\xcc\x7a\x9a\x5f\x4a\x9b\x8a\x42\xe8\x25\x45\x33\x75\xb6\x55\x31\x72\x4f\xb9\x5a\x9f\xfd\x7a\x61\x72\x3b\xdb\x58\x5a\x7a\xf4\x6b\x9f\x22\x23\x84\xfd\x3f\x3b\xf1\x69\x30\x86\x5e\x88\xc3\xed\x33\x34\xc1\x20\xb4\xbd\x4c\x95\xe5\x3e\x18\xab\xb2\xdc\x07\xaa\xc9\x7a\xdd\xc4\xf9\x9e\x86\x6b\x21\x9e\x9b\x90\xca\x93\x8c\x84\xc2\x0a\x41\x8d\x0e\x8e\xeb\xdb\x88\x19\x04\x06\x43\xef\x89\xb5\xb1\xb3\xad\x18\xfe\xee\x8d\xbd\x52\xcf\x95\xb1\x16\x4c\xfd\x1e\x36\x9e\x0c\x07\x39\xb5\x08\x40\x21\xdc\xc6\xd7\x63\xcf\x39\x73\x69\x6a\x35\x53\x9a\x64\x64\x63\x14\x2c\xf1\x60\x7f\x81\x27\xe6\x9b\xa9\x0a\xd6\xca\x7c\x33\x1f\x90\x1d\x8b\xb9\x79\x47\x1a\x89\x69\x1c\xa5\x93\xd8\x07\xf8\x83\x24\x59\x25\x78\xae\x40\x64\x5e\xa5\xc7\xe3\x6b\x15\x85\x32\xa4\x3d\x0f\x45\xce\x0f\x05\x98\xff\x8f\xd6\x21\x52\x78\x28\xf0\x02\x04\x71\xb7\xd2\xcd\x97\xf6\xed\x13\x65\xf0\xb0\x79\x91\xc2\x11\xf8\x21\x3f\xa2\x97\x87\xd3\x7d\x4b\xb3\x12\xdd\x05\xce\x1f\xcf\x80\xce\x66\x39\x14\x7d\xe5\xe7\x0e\xfd\xb0\x83\x1f\x97\x13\xe4\x60\x45\x3e\x5d\xf3\x6d\x38\xd8\x2e\x01\x5f\x4e\x83\x28\xd3\xfa\x5c\x5d\x9e\x86\xfd\x3e\x08\x25\xbd\x13\x02\xbe\x7e\x16\xc3\xd5\xcc\xce\xff\xc1\xf9\x0c\x7d\x1b\x17\x61\x4c\x4b\x18\xe7\xd3\xea\xb3\x88\xfd\x9c\xe8\x80\xa3\x1a\x7d\x1c\x6e\xbf\x74\x8d\x7b\x8e\x81\x6c\x60\xa3\x0a\x65\x1d\x7d\x48\xe8\xeb\x6a\x7a\x69\xa4\x6e\x27\x07\x23\x4a\xb8\x2c\x13\x8a\xb3\xea\x98\xae\x85\x5e\x50\x88\x9e\xa0\xc8\x33\x72\x24\x79\x6b\xe2\xb5\x1c\x79\x8a\x4f\x46\x9c\xa6\x5a\x34\x9c\xe6\xcb\xaa\x35\xfc\x92\x26\x2f\xba\xab\x78\xee\xae\xaa\x14\xcb\xf9\xb1\x22\xf8\x7d\x00\x07\x17\xa1\xc7\xff\xaa\x56\x9e\xe9\xa4\x89\xe9\x36\x34\x25\x83\x2f\xf3\x4c\x8b\x5f\x50\x55\x6d\xcd\x19\x28\xde\xa6\x2d\xbd\x65\xa7\x8c\xf3\xfe\xe6\xc0\xa6\xdc\xfc\x85\x1c\xe9\x43\x94\x70\xf8\x46\x45\x0e\x83\x24\xea\x12\x75\xbf\xc2\x01\x5e\xd4\x08\xbd\x8b\x35\xfc\x6b\xcd\x51\x6a\x7b\x36\x4d\x45\x08\x09\x09\xbb\xc6\xc4\x77\x48\x9e\xd7\x4e\xce\x75\x1d\x7d\xcc\xb6\x3f\xad\xab\x01\x59\x11\x91\x5c\x14\xbe\x88\x07\x9e\xc6\x17\x47\x4f\x3e\x56\xac\xb6\xff\x0a\x46\x40\xd8\x96\x74\x25\x29\x31\xd1\x2e\x4f\x6e\xcc\x8c\x9a\xcc\xfa\x3d\xf6\x74\xb0\x27\xaa\xad\xe5\x95\xfe\x73\xb7\xfc\xbe\xa7\x27\x1b\x8d\xe9\xf0\xb4\x1b\x6d\xbf\x77\x8a\x38\xe9\x64\x36\x5d\x03\xdb\x81\xd4\xc0\x6e\xb7\xd4\x3e\x40\x1b\x8b\x34\x59\x4c\xd7\xef\x9a\xeb\x36\x04\x87\xaf\x67\x73\x50\x8d\x83\xae\x22\x13\xc6\x59\xd8\xb5\x44\xe0\x8a\x04\xd0\xe3\x13\x8f\x82\x7f\x02\x29\x0c\x58\x9f\xdb\x4a\xd8\x8a\x79\x80\x1c\x4c\xc2\x25\x24\x76\x12\xa9\x10\x05\xe2\x47\x3f\xdb\x56\x90\xcf\x0a\x74\xfa\x5d\xe5\xec\x76\x6d\x14\x06\x61\x52\x64\x0d\x4f\x47\x74\x5e\x49\xb6\x4c\x57\x65\x17\x16\x9a\x5d\x9b\xe5\x69\x11\xe4\xe1\x1a\xba\x1a\x90\xb2\x3c\x4e\x63\xee\x92\x37\x0e\x7f\x79\x4a\xe5\x0c\xed\x91\x51\x92\x49\x89\x48\xd8\xcf\xcb\xe7\x17\x5a\xf4\xad\x2b\xd2\x55\x58\x8a\x60\x40\x78\x69\x32\x37\xff\xf5\xa7\xda\x74\xe4\x31\x49\xcb\x78\xe6\xc0\x3f\xfc\x8a\x30\x78\x8c\x55\xa9\x4a\xb1\xa3\x5c\xd6\x59\xd8\x7b\x9a\x35\x31\x89\xfb\xa9\x42\xa6\xb9\x9c\xa2\xa3\xbc\xba\xa0\x18\x77\x4c\x96\xd9\x94\xba\x6c\xa8\x78\x82\x29\xf8\x29\x54\x1c\xf8\x46\xc9\x81\x85\x65\x90\xd8\x2d\xa4\x41\xf5\x45\x4f\x17\xee\x11\x85\x47\xc7\x95\xba\x3e\x35\x2e\x52\xcf\x33\xe2\xdc\xfb\x2d\xc5\x8e\x7b\xaa\x52\x7b\x6b\x2c\xab\x86\x02\xd7\x35\x7b\x4a\x79\x9b\xe1\x70\x94\xa4\x79\xb6\x8b\x4a\xf5\x88\x82\xd1\xfc\xe0\x84\xdf\x96\x96\xdc\x7f\x68\x21\xee\x9f\x50\x92\x8c\xf5\x2c\x69\x2e\x81\xa9\x7b\x48\x47\x29\xce\x9e\x33\x9a\xfd\xe4\x92\xaa\x13\xd9\x23\xe0\x5a\x4b\x62\xcd\x73\xc6\x6d\xe1\x7c\x53\x93\x91\x5a\xe4\xe2\x9d\xea\xcc\xfe\x1d\xd5\x99\xfd\x3b\x35\xbc\x24\x07\x58\x91\x54\x1c\x49\x47\x0a\xa0\x84\x28\xf7\x2a\xdd\xfa\x3c\x8f\xa4\xd2\x80\xed\xf6\xa6\x22\xe9\x04\x27\x9d\xe8\x1e\xfc\x67\x8a\xce\x22\xee\xa5\x49\x9c\x53\x57\x1f\x77\xe9\x0a\x8f\x0b\x59\x3f\x21\x72\xf9\xc4\xb5\x3b\x30\xeb\x0d\xdf\x30\x71\x4a\x33\x10\x9c\x9a\x42\xce\x12\x03\x41\x9a\x8c\x46\x30\x3f\x82\x1d\x7d\x6f\xac\xfa\x91\x6e\x57\xe8\x87\x1d\x15\x53\x11\x57\xd9\x2e\x8e\x6a\x19\xb3\xa3\x6a\x5d\x64\x45\x9c\xd9\x3c\x23\xc4\x0b\xac\x1b\xfa\xce\x25\xa2\xa8\xb4\x66\x49\xd5\x36\x31\xec\x7e\x23\x01\x77\xbb\x92\x8e\xbb\x5d\x47\xd6\xda\x4f\xad\x75\xc7\x9b\xd4\x50\xbd\x1b\x3d\xcd\x44\x7c\x68\xfe\x4b\xcd\x7e\x12\xf5\x1a\x3e\xd1\x88\x8d\x28\x81\xe0\xd3\x0a\x3f\xb9\x16\x5a\x90\xe0\x38\x35\xc9\x6a\x69\xfa\x09\x1f\x77\x26\x71\xa3\xb1\xb0\xc0\xae\xca\xef\xd2\x9c\xf3\xb5\x73\xde\x89\xec\x53\x60\x71\x30\xb9\x3f\xc4\xf0\xf1\x4d\x4d\x63\xcc\x81\xe6\x28\x0c\x56\x39\x4a\x64\xa2\x99\x96\xaa\x63\x9d\xf3\x9a\x9d\x26\x8c\x78\xf4\x30\x6b\xdb\x27\x9a\xf2\x6d\xbb\x22\xd2\x2b\x46\xf9\x0e\x9a\x43\xcc\x3b\x9c\x42\xd8\x82\x1d\x30\xe9\x12\x8a\xa9\x58\xe8\x5c\xcb\x23\x1c\x6e\x2a\x99\x8e\x1d\x13\xff\xc5\xbf\xf0\xdc\x2f\xa9\xaa\xce\x45\x55\xd5\xb9\x58\x27\xea\x9c\x0d\x93\xa8\x6b\x75\x4a\x88\xdb\x10\xf8\xc6\xa1\xdd\x46\x51\x92\xbb\x50\xce\x31\xc3\x6b\xa6\xb1\x69\x5c\xef\x62\xb3\x67\x02\x76\xe7\x71\xe6\xbf\x87\x8f\xf0\x4d\x0d\x32\x7f\x7f\xd3\x0c\x6d\x1a\x06\x26\x56\xf4\x6e\x87\xb5\x90\xca\xe1\x96\xa7\xfb\xc3\x5e\x67\xba\x22\x51\x7d\x2f\x3f\xc7\x09\x63\xfc\x1a\xe2\x9f\x9b\xee\x55\x78\xdf\xed\xf6\x07\x19\x07\x4a\x15\x89\x70\x94\x31\xf0\x75\xc8\x57\x9d\x18\x57\x76\xaa\xd7\xf8\xc2\xe1\xec\x38\xb3\xca\xdf\x24\xa7\xe4\x7f\xfa\xb9\xb6\x6a\xf0\xbf\x3a\x7e\x56\x5b\x9b\xd2\x25\x48\x4d\x27\xb2\x3b\xcb\x2f\x62\xd1\x32\xda\x9f\x7c\x7e\x6b\x39\x00\x24\x1c\xe5\x60\xf7\x95\x91\x3f\x83\x9f\xc4\x2d\x9d\x2d\xc5\x57\xf7\x50\x15\x43\x47\x24\x6f\x44\x87\xb8\xf0\x1b\xa8\x22\xe3\x35\x7a\x13\x84\xad\xdb\xda\xbe\xef\xa1\x88\xf3\x30\x22\x98\xa7\x63\x18\xf6\x2b\x1b\x0c\xdb\x0c\xda\x6b\xf9\x18\xb8\x31\xa9\x49\x1d\x0c\x4d\xba\xca\x9d\x76\x22\x18\xa2\x3a\x04\xaa\x5c\x2a\xe5\xbb\x49\x9b\x8a\x4f\x5c\xf6\xd3\xa4\x18\x65\xbb\x54\x05\x02\xc9\x11\xe4\x53\x50\x52\x45\x1d\xe6\x0e\x2c\x28\xec\x95\xe6\xfc\xf8\x97\x64\xf8\x51\xb1\xf8\x01\x55\x1f\xf8\x5a\x97\x93\x4f\xaa\x7e\xcb\x97\x8a\xe1\x68\xa6\x1c\x1a\xd4\x3f\x40\x94\x8d\x83\xed\xbe\x82\x82\x9d\x9b\x22\x06\x2c\xb7\x7c\x33\x8c\xa2\x22\xcb\x55\xfa\x03\x09\xbc\xd7\x75\x36\x4f\xf3\x13\xe4\xa1\x89\x4d\x5c\xba\x27\x4a\x84\x82\x3b\x4d\x44\x39\xb9\xa6\xa8\x54\x8c\xb2\x5c\x74\x75\x30\x00\xaf\x2a\x74\xf4\xab\x2a\x23\x39\x1c\x25\xb3\x1a\xc6\x4a\x4e\x01\x7c\xdb\x53\x8a\x72\xef\xba\x96\x15\x3b\x5f\x93\xa8\x8a\xac\xd9\xda\xa4\x83\xec\xa8\x34\xd3\x3d\xe9\x33\xb1\xc3\xa1\x6c\x4e\x5a\xad\xbf\xf1\x29\xf2\x7b\x15\xc3\x2d\xdb\xdd\xe1\xb3\x6d\xcf\x16\x14\x21\x33\x09\x17\x85\x3b\xe0\xf8\xc6\x7d\xf7\xa8\xe8\x76\xdd\x43\x88\x34\x9d\x0f\xe2\x4f\x4e\x59\x16\x42\x8e\xf6\x42\x52\x29\x51\x2c\x08\x68\xda\x92\xed\xb3\x35\x51\xba\xb4\xd4\x34\x41\xfe\xd7\x30\x02\xd4\xa4\xaf\x46\x69\x48\x93\xe1\x54\xff\xcb\xd1\xe4\x9b\x96\xc7\x03\x65\x3f\x1f\x71\xc8\x26\x22\xa7\xbe\xd2\xf6\xbe\xfa\xbb\x5e\x9a\x0c\x7f\x8e\xfe\x0e\xcb\xfe\x63\x15\xdf\xfe\x09\xe1\x16\x91\x91\x3f\x43\xab\x13\xa5\x99\xfb\x1a\x76\xce\x39\x56\x3c\xc1\x63\x8a\x04\xef\x1e\xf5\xb8\x88\x7c\x12\xce\x29\xae\xa6\x8d\x7d\x83\xca\xcc\xc4\x6f\xce\x9d\xd0\x4f\xc7\xb2\x7f\xd0\x22\xac\xaf\xab\x7b\x78\x4c\xde\x6d\x12\xbd\x06\xe4\xf5\x32\xcb\x9c\xbb\x2e\x68\x2f\x7b\xf1\xa0\xa5\x34\xf0\xce\x20\xc3\x01\x27\xfe\xae\x12\x2a\xdc\x31\xf1\x2c\x68\xef\xc1\x30\xe3\x21\xef\xb7\x14\x65\xd1\xbf\x26\xe4\x20\xde\xfe\x7d\x40\x56\x31\x2a\x27\xd4\x46\xbd\xd7\x7a\x66\xba\xc2\xd0\xa1\xc9\x72\xdd\xbb\xde\x37\xbe\xe2\xa2\xb7\x21\x11\x96\x35\xbc\x8c\xe6\xf1\x96\x0f\x3e\x8e\x57\xd2\x45\xeb\x66\xa4\x0e\x5f\xf6\xb5\x45\x9f\xc6\x17\x5a\xfb\xa9\x89\xf3\x04\x9d\x84\x08\x27\x6e\xd2\x39\x2d\xd1\xb3\xc2\x20\x6d\x6f\xfb\xb0\x2a\x5b\x0d\xd3\x61\x98\x0d\x54\x3f\x34\xe8\x4a\xc5\x58\xd4\xb4\xe8\x42\x7c\x0d\x2b\x0d\x87\xe2\x4f\x5b\x8a\xd3\xf9\xa7\xd3\xed\x0f\x0b\xcd\x34\x19\x8e\x1a\x3e\x36\xb9\x8b\x61\xe7\x1b\x95\x08\xe9\x11\x02\x6b\x46\x71\xee\x5d\xd0\xab\x58\xf1\x52\xdc\x9c\xf2\x7f\x97\x96\x56\x08\x7d\xe4\x36\x31\x6a\x2b\x9b\xaa\xce\xb2\xa9\xc2\xb7\x91\x49\xf3\xd8\xa6\xd9\x20\x1c\x51\xce\x1a\x49\xb2\x77\x54\xca\xef\x9d\x3a\x5a\x8d\x66\x3e\x20\x01\xcf\x59\xbf\x39\x2e\x52\x75\x58\x1a\x5a\x2b\x1a\x07\xfe\xe0\xfe\xa0\xd1\xf6\x67\x0f\x40\xe0\x33\x2a\x12\xbc\x8b\x48\x50\x72\x56\x10\x37\xf7\x74\x5c\xac\xbd\x47\x6a\xc8\xa0\x2d\x84\x1b\x0a\xfd\x35\x77\x02\x97\x0b\x9e\x29\x4b\xc7\x2e\xe6\xfd\x6d\x88\x8a\x0a\x95\x69\xb9\x11\x85\xb3\xef\x09\x97\x7a\x8b\x44\x74\x12\x31\xc9\x75\xa5\x01\x71\xbd\xb2\x1e\xa3\x64\x04\x79\x31\x17\x1d\x97\xdb\xd4\x69\x8a\xb9\xa2\x0a\x0b\x1e\x4b\x47\x55\x4d\x87\xd6\x6a\x92\x5a\xf6\xc9\x6a\x17\xb7\x8f\x9d\xc3\x38\xb7\x69\xe9\xb5\x53\xae\x01\x96\xf2\x23\xe4\x91\xf9\x66\x6a\xcd\x2d\x1e\x6c\x0e\x92\xf5\x48\x8b\x14\xab\xc0\x5c\xc3\xba\xb2\x41\x52\x44\xe8\x3d\xc1\x02\x06\x3f\x98\x08\x0a\xf9\x3e\xee\xa3\x38\x37\x58\x2a\x48\x79\x12\xd2\x16\x73\x68\xde\xb9\xb8\xda\xf7\xf5\x51\x7d\x11\xa7\xb6\x5f\x30\xb1\x92\x2b\x21\xde\x1c\x53\x4a\x82\x6f\xd4\xf9\x5d\x46\x41\x71\xc7\x8a\x84\x19\x57\x76\x5b\xbe\x0f\xf5\x98\x32\x00\x9c\x93\xde\x49\xd3\xc1\x40\x68\x7a\x63\x24\x0b\x6e\xd2\xd6\x11\xae\xf0\x72\x0d\x08\x1b\x5c\xf9\xe2\x38\x3e\xaf\xab\x56\x93\x9b\x98\x3e\x41\x54\xd7\x60\x09\xbb\x36\x37\x21\x06\x18\x19\x1f\x80\xeb\xf9\x5a\x05\x51\xa6\xdb\xdd\x3d\x4d\x46\xa7\x08\xf2\xf6\xbb\xfe\x37\x5f\x6a\x02\x0e\xd9\xf5\xc8\xed\x13\x83\x7a\x03\x07\x11\x8e\x85\x7f\xaf\xab\x9e\x67\x94\x00\xd0\x39\x05\x41\x19\x99\x8d\x72\xdb\xec\xf0\xb3\xff\x18\x15\x58\x90\xb2\xda\x83\x52\x0d\xd2\xbe\xff\x0e\x33\x8c\x2c\xf2\x43\x25\x0c\x78\x97\xfc\x59\xa4\xbc\xff\x8d\x0a\x87\x3b\xd6\xf6\xc8\xdc\x94\x63\xc5\xad\x09\xf0\x82\xa4\x4f\x61\xba\x42\xb8\xbf\x19\x0c\x42\x2e\xe4\x61\xa9\x5f\x1d\xab\x75\x7f\xb5\x96\x59\x30\xb3\xc6\x09\x05\x38\x8e\x7b\xcf\x77\x5f\x2b\x8f\x6c\x3a\x49\x91\x53\x24\x80\xe4\x21\x86\x14\x27\xf5\x36\x95\x2d\x3c\x0d\xf7\x16\xee\xdd\x5f\x82\xa3\x02\x27\xd1\x6c\xdb\x8b\xeb\x9d\x6c\xe9\xae\x6e\x0f\x5c\xa4\x75\xd7\x23\xbe\x91\x7d\xcb\xae\xe6\x5d\x7e\x4e\xaa\xd9\x7b\x5d\xe7\x4b\xc6\xc9\x9d\xf2\xb7\x35\x1f\x27\x5f\xbb\x6e\xab\x62\x34\xb0\x66\xcd\x80\x41\x00\x87\xf6\x0c\xc2\x1e\x07\x10\x5b\x5a\x62\xc8\xcb\x1d\xe5\x8f\xa6\xd1\xc6\x93\x34\x83\x8c\xc2\x05\xbb\x83\x83\xe1\x96\x2f\x26\xbb\xd7\x29\x28\xff\xf3\xff\x06\xb1\x31\xde\x78\x8e\xc6\x85\x92\xe8\xff\xf4\x19\xf2\x6c\x84\x47\x56\x01\x3a\xf7\xa0\x7e\xe1\x28\x79\x57\xf6\x3b\x9f\xa7\xe1\xd8\x5a\xff\x8b\xb6\x62\x68\x05\x81\x31\x56\xf3\x43\x25\x6c\xbb\x73\xb2\x75\xb2\xf7\x3f\x7f\x80\x18\xd5\x32\xe8\xa5\xe3\xd8\x42\xee\xc3\x71\xb9\xf8\xb6\xf7\x1f\xab\xbc\x46\x4e\xbd\xee\x46\x7c\x40\x44\x2b\x18\x5f\xbe\x56\x16\x35\x35\xc1\xaa\xcd\xad\x15\x5d\x6c\x21\x90\x54\x42\x23\x17\x5b\x8e\x20\x3d\x26\xe5\x2d\xe2\xc0\xa3\x11\x75\x7c\x2d\xe5\xc0\x09\x5f\x8b\x9f\x86\xe7\xbf\xca\xa9\x32\x0c\xf6\x6e\xda\x6e\x38\x2a\x79\xa9\x23\x4c\xda\x3e\xa9\xe1\x5f\x18\x65\x1b\xc1\x20\x89\x92\x7e\x18\x70\xca\x0c\xc1\xf1\x15\x45\xe4\x7f\x65\xec\x91\xca\x49\x10\x98\x8c\xf2\x6b\xd1\xc6\x8c\x82\xe0\x5e\x84\x65\xc1\x8c\xfd\x59\xcb\x7f\xd1\x19\xd5\x05\x6e\x62\x6a\x19\x17\x46\x64\xa6\xa1\xa4\xc9\x12\x4a\xca\x1a\xe2\x22\x96\x51\x25\xe8\x0d\x4e\x6f\xee\x2a\xc0\x39\xf1\xfa\x56\x78\x88\xfc\xd8\xb0\x13\xe6\x61\x52\x70\xd8\x0a\xe7\xe7\xb4\x26\x84\x47\xd4\xcb\x82\x92\x4a\xc4\xf6\x82\x52\x1b\x19\xa5\x09\xd8\x9a\xe6\x7c\x32\xe3\x6d\x1c\x9c\x70\xdb\xef\x90\xab\x0d\x5f\x15\x36\x51\x9a\xca\xe0\x37\xc3\x42\xbe\xe1\x32\x4c\x43\xd3\x0b\xcd\x8e\x86\xe2\x15\xf2\xc0\xa5\x07\x14\x0e\x08\x75\x5e\xb9\x67\xd0\x75\xce\xf8\x66\x2c\xe2\x1f\xe9\x7a\xe5\xc5\x0a\x0a\x6c\x60\xba\x4f\xd3\xb6\x63\x1e\x00\xb2\x21\xac\xce\x07\xc7\x1d\xd0\xa5\x4d\x1c\x81\x38\x73\x59\xb7\x12\x0b\xe6\x6f\xf3\x53\x3b\xd5\xd4\xaf\x7e\x99\x7d\xef\x77\xf0\x0c\x18\xa1\x07\xb0\xba\xb0\xe9\xdf\x1a\xfb\x4c\xeb\xfb\xb4\xdb\x60\x5a\xb7\x51\x31\x1d\x91\x19\x99\x03\x51\xd5\xbd\x00\xe7\x0b\x29\xa4\xef\xd2\xf8\x61\x94\x88\x1b\x68\x93\xd1\x39\x54\x01\xf8\xec\x67\x26\x65\x5c\x80\xec\xcd\xf6\xb6\x77\x27\x4d\x77\xcd\xa6\x79\x98\xd9\x34\xdb\x55\xc9\x99\x28\x51\x93\x93\xad\xad\x74\x33\x22\xef\xc9\xb5\x44\x44\x51\xa7\xab\x54\x91\x5e\xc0\xa5\xa5\x16\xce\x43\x07\x85\x4f\xd2\xbe\x89\x19\x14\xb5\xbc\xec\x30\x5f\x3e\xf7\xce\x4a\xde\x22\xc4\xf7\xa4\x86\xd5\x88\x02\x09\xce\xb6\x4b\x0a\x7f\x73\x49\xc9\x3e\x76\xc2\x34\x1f\x74\x0d\x70\x21\x98\xb2\xc7\xdb\xde\x59\x38\x4b\xa1\x06\x76\xcc\x9c\x4a\x1c\x76\x6c\x30\xe3\x95\x58\xbe\xaf\xd5\x45\xaf\x2b\x67\xe1\xb2\x5b\x8b\xc5\x68\x64\xd3\x39\xbf\xfd\xce\xab\x26\x75\x16\x40\x70\x3c\x4f\xe5\x7c\x6b\xad\x22\x6e\x11\x9b\x82\x8d\x30\xdd\xa7\xa0\xeb\x1d\x5b\xd5\x45\xdd\x26\x36\xb5\xcd\x9f\x6b\x06\x66\x38\x32\x61\x3f\x56\x5d\xa5\x1f\xa8\x2e\x75\x66\x8a\x90\xf2\x53\x0d\xfa\xc6\xc4\xab\x2e\x14\x41\x80\x79\x94\x5e\x87\xaf\x15\xd9\x6e\x96\xa7\x66\xbd\x63\x53\x08\x46\xb9\xc2\xef\xdd\x96\x77\xa7\xef\x8e\x7f\xc6\x63\x4b\x5f\x4e\x62\xdb\xb5\xa3\xc8\x82\xb5\x6d\x65\xbf\xe3\x4a\x2a\x17\xb8\x74\x6f\x2a\x9a\xaf\xa8\xe8\x20\x07\xc4\xc9\x2d\x38\x51\x92\xe9\xf2\xc6\xa5\x1b\x66\xc3\x30\xcb\xd8\xf0\x0a\xbb\x82\x02\x79\x5c\x19\x6f\xe1\x81\x7e\xae\xf4\x68\x9e\xf0\xa6\xf9\x46\x4b\x65\xa6\x4e\xb6\x1a\x9f\xff\x3c\xc3\x31\xff\x42\x3b\x6e\x6f\xb7\xf4\xa0\xe2\x08\x12\xe8\x4a\xf9\x0a\x48\xaf\x72\xf8\xc4\xdf\x45\xf1\x38\xe2\xfc\x7b\x40\x75\x0b\x0d\xb1\x8f\x5d\x99\x81\x8e\x65\xbc\x15\xbd\xd2\xa0\x0c\xf4\xac\x10\x3a\xe3\x24\x65\x21\x45\xbe\x51\xf6\xd0\x11\xba\xc1\x86\xbf\xaf\x5b\xb9\xde\x6f\x4d\x37\x9b\xee\x6f\xa6\x36\xcb\x4d\x91\x1a\x26\xa5\x14\xe5\x65\x85\xcf\xba\xaf\x55\x11\x08\x3f\x3d\xeb\x21\xff\xe7\x34\xdd\xef\x39\x9a\x44\x17\x08\x7e\xf1\x6b\x72\xad\xf8\x63\x56\xe3\x24\xcf\x1a\xe5\xe0\x72\x22\x1a\xe4\xdb\x92\x95\xfe\xb4\xaa\xd7\x74\x88\xa5\x33\x34\xd1\x1c\x3d\x0d\x7a\x3f\x91\xd8\xc2\xb6\xe4\x19\x73\x25\x3b\xc7\x70\xf6\x17\x64\x7a\xf8\xba\x4e\x86\x2f\x2f\x03\x61\xa6\x8c\xda\xe4\x96\x33\x38\x68\x70\x1c\xa5\x45\x99\xbe\x9f\xc5\x48\xa7\x12\x8e\x65\x48\x3d\x28\x86\x26\xe6\x63\xd1\xd1\xee\x97\x07\x6a\x0d\x07\xff\xf6\xb6\x6a\xf3\x9a\xee\x80\xdd\xb7\xdc\x2c\x23\xfa\x4c\x53\x2e\xc3\x75\x10\x56\x73\x8f\x73\xc8\x93\x23\x61\xc0\x6c\xe4\x3e\xf9\xe1\x13\x21\x53\x19\xbf\xc3\x87\x9b\x66\x34\x32\x8a\x09\x42\x2f\x41\xc4\x7b\x8f\x54\x36\xef\x82\xa2\x22\x0d\x92\xe1\x30\xcc\xcb\x48\x84\xc5\xa5\xe1\x0d\x5e\x05\xbe\xc7\x51\xec\x7a\xba\x5d\x45\x8a\xfa\x1d\xac\x54\xee\x36\x50\x54\x7f\xeb\x83\x30\x8f\x2c\x5a\x61\x44\xaa\xa5\x1c\x79\xc4\xfa\x67\x95\x54\xcf\x69\xdd\x09\x03\xf9\xc4\x1d\xe5\x39\x87\xef\x7c\x13\x9b\x13\x1b\xf2\x12\x27\xd8\xb0\x3c\x00\xdc\xe1\xff\x01\x62\x84\xff\x83\xd6\x29\x7f\x5e\x91\x89\x82\x4d\x45\x8b\xc4\xdf\xc0\xfc\x21\x80\xe3\xde\x76\x29\x92\x88\xcb\xcf\x84\xe8\x9c\xda\xc5\xa2\xbb\xaa\xe8\x98\xb9\xb4\x88\x9f\x7e\x4b\xfd\x5c\x37\xb5\x66\x08\x97\x97\xc5\x48\x5a\xce\x85\xdf\xfb\x47\xa5\xa3\xe8\x04\xb7\x72\x9b\x76\x92\xb4\x5c\xb4\x28\xa8\xe1\x54\x05\x68\x81\xaf\x35\xdc\xf6\xef\xff\x02\x75\x83\x02\x79\x7d\x76\x5c\x25\x46\x73\xfd\x46\xaf\x2a\x55\x86\x3b\x8e\x6a\x61\x60\x98\xb3\x12\xdb\x0a\x28\x77\x1c\xdc\x3f\x86\xaf\xe3\x18\x05\x5d\x59\x9c\x3b\xc8\x08\xd4\x7a\x97\xb9\x25\xa4\xbb\x62\xda\x0b\x3d\xd0\x8c\xc2\x55\xcb\xd0\x51\xd1\x08\x6f\x38\x32\xf3\xbf\x54\x10\xed\xcc\x06\x49\x4c\x31\xb8\xc4\x20\x47\x55\x1f\xfc\xf1\xb1\x77\xca\x4e\x8d\x15\x54\xf5\x58\x4b\x03\xbd\xe8\x35\xe5\xbb\xe9\x41\xb1\xc8\xde\x27\x53\xee\x24\x03\x3c\x83\xc8\x07\x53\x80\xbc\x85\x85\x66\x6a\xd9\x5b\x41\xba\x84\x11\x65\x30\x94\x02\x2f\xdb\xab\x99\x41\xa2\x10\x5c\xc1\x82\x43\xdf\xc6\x58\x7c\x11\x01\xf7\x3b\xfb\xde\xd8\x13\x69\xc7\xb9\x8d\xc1\x4c\x09\x6f\x8f\x35\x35\x10\x16\x92\xf2\x76\x69\xb0\x1c\xb9\x47\x11\xe5\x45\x2a\x4c\xa4\x30\x33\x67\xb4\xcd\x39\xa3\xba\x44\xb2\x30\x23\x67\x19\xf0\x98\x9d\x13\xfa\x33\xf8\xaa\xdb\x11\x17\x6a\x32\x61\x71\xf5\x1a\x42\x28\xf4\x7f\xfd\xed\xb6\xc2\x80\x5d\xd6\xc1\x6b\x77\x63\x27\x7d\x5e\x2a\x99\x3e\x72\x03\x2c\x5d\x4c\x1e\x0d\x16\x92\xef\x3f\xd4\xf4\xa7\xc8\xd7\x23\xa7\xff\x48\x3b\xe8\xdf\x9c\xca\x8e\x2d\x2f\x37\x5f\x32\x43\x36\x92\xae\xed\x5d\x75\xcd\x7b\x13\x33\x34\xb1\xe9\x8b\x62\xb5\x83\xe5\x1d\x12\xc9\xdb\xf7\xf1\x43\x82\xd1\x53\x5d\x40\x38\x35\x11\xa4\xdf\x52\x67\x97\x4d\x43\x56\x0c\x06\x22\x8a\x35\xbc\xf8\xa6\xe5\x91\x60\x91\xed\x87\x59\x64\x48\xdb\x91\x5e\xd3\x09\xa7\x7b\x95\xa0\x8f\x5c\xff\x75\x6c\x4d\x3e\xe3\xfd\xa5\x4d\x45\xfa\xbd\x39\x56\x3d\xe3\xa3\x1a\x07\x71\x7f\xb3\x17\xa6\x59\x3e\x30\xbc\x68\x24\x1d\x46\x1f\x43\xc4\x83\xdc\x14\x4e\xb7\x6d\x8e\x2c\x3f\x0b\xf3\x20\x19\x2a\x11\xab\x4b\xaa\x07\xe3\x92\x5b\x60\x5d\x85\x8c\x13\x75\x0f\x24\x68\xe1\xf0\xb3\xcc\x32\xaa\x2b\x6f\xa9\x27\xbf\xea\x30\x14\x2f\x25\xa0\x0f\x12\xce\x79\x1a\x33\x1c\xe6\x57\x61\xbc\x05\x83\xba\x57\x09\x96\x16\x71\x97\xdb\xf6\x39\x71\x42\x8f\x27\x49\x14\x07\xff\x08\x87\x36\xdb\xe3\x4b\x5d\x3b\x28\xc4\x01\xa4\x83\x55\x88\x1d\x07\xde\xca\x3c\xa3\x7e\x6e\x93\xd9\x60\xbb\x37\x56\xca\x97\x4f\xb7\xcb\x21\x44\xdc\x0d\x16\x02\x71\x48\x15\x32\x7f\x1b\x74\x27\xdc\x52\x29\x17\x17\x12\x50\x22\x88\x2c\xea\xee\x65\xfc\x80\xeb\xe3\x75\x44\x08\xa6\xc8\x93\xa1\xaf\x88\xc2\x03\xfa\xa1\x92\x3c\xff\x21\x16\x3f\x27\x32\xd6\xc2\x34\x89\xcb\x43\xd8\x44\xb3\xf8\x1d\x09\x1b\x54\xc2\xe2\x86\x22\x67\xfa\x58\xb3\xa3\x4c\xb3\xc7\x94\xce\x9f\x2d\xd2\xa4\x93\xc4\x5d\xde\x4e\x02\x14\x55\x0c\x25\x97\xc1\x09\xcd\x1b\xfd\xef\xef\x52\xc7\xe1\x99\x96\xc2\xc2\xce\x4d\x1a\x5f\x59\xe4\x70\xe7\x8c\x12\x60\xdd\x09\x9f\x07\x86\xe5\x6d\xad\x29\xf2\xeb\x0a\xf4\xf9\x5b\x18\x46\x21\xdb\xd8\x3a\x58\x07\x9f\x6f\xf6\x4c\x9c\x9b\x4c\x8c\xaf\xe0\x9c\x14\x13\xfb\x39\x25\x01\xd0\x4f\x4d\xdc\xcd\x92\x18\x49\x15\xac\x8c\xb3\xb4\xf3\x91\x60\xb9\x0e\xab\x0d\xbf\xee\x2d\x65\xc8\xf6\xa5\xa6\xa1\x51\x65\x15\xd0\x52\x4d\xbd\x39\x30\xd9\x20\xb4\x29\x38\x62\x04\xa2\xd2\x50\x5a\x3e\xde\x89\x12\x8a\xc5\x68\x63\x56\xcb\x32\xb5\x3c\xa2\x60\x86\x80\x8c\x7c\x8d\xfc\x9f\xb0\x80\x56\x08\xb3\x57\xb3\xc7\xcb\xb8\x09\x87\x0a\xd8\xbb\xb0\x2f\x21\xba\x86\x84\xc1\x2b\x18\x6a\x46\x79\xd1\x82\x77\xe8\x00\x47\xb3\x85\x4d\xe1\x88\x44\xbc\x6a\xe3\x6f\x60\x64\x91\x17\x39\xaa\x79\xe4\xee\xe8\xba\xd0\xf6\xb6\x37\xb6\x60\x3a\xce\x66\x95\x8b\x74\x0b\x91\x2e\x0e\x92\x6b\x48\x62\xf2\x8d\xea\x3e\x9f\x26\x8f\x59\x5a\x6a\xf6\x6d\x1c\x16\x60\xb7\x66\xf2\x1a\x4a\xe7\x60\x2a\x98\x89\x56\xa0\x84\xfe\xd0\x1d\x99\xd4\x74\x93\x23\x0d\x45\x13\xfc\x36\xe5\x6d\xf8\xba\xa2\x3c\x9d\x60\xcd\x8b\xc0\x60\xc3\x8b\x0d\x2a\xf8\x5c\xb2\x66\xd3\x22\xb3\xf8\x53\x47\xd8\xbf\xe2\x9b\x05\xa6\x77\x55\x93\x0b\x25\x89\xb4\xd2\x20\xec\x67\x6d\x1f\xbe\x71\xa8\x9d\x4e\xc8\x3d\xe1\xfa\x69\x2e\xa8\xa7\xd1\x00\xf7\x34\x29\xb2\x9c\x72\xe3\x0d\xd5\x02\xfc\x91\x22\xad\xfb\xc8\x91\xb0\x05\x49\x1c\x27\x61\x96\xd9\x02\x95\x55\xee\x49\x1e\x6b\x94\x19\x0d\xa3\xc8\x82\x3c\x5d\x61\x50\x18\xd9\x20\xcf\x66\xbd\xdc\xfc\xe9\xb1\x12\xa5\x47\x75\x86\xcb\xeb\x58\x10\xf0\x29\xae\xd5\xb2\x0c\xf6\xd0\x56\x54\xbe\x1f\xab\xdf\xd2\x10\x8a\x12\xae\x1f\xed\xd8\x30\x6b\x83\xef\xd4\x3e\x45\x2f\xc7\xd7\x75\x8d\x38\xdd\x30\x0f\x06\x1c\x1c\x73\xca\x19\xcb\x43\xf2\xcf\x4a\x6e\x2d\xc9\xd0\xf5\xb0\x5f\x83\x2e\x96\xb5\x70\x8d\x74\xca\x3e\xa8\x25\xbb\x48\x8a\x7c\xae\xdc\x7a\x98\x7c\xe4\xb7\x30\xee\x0f\x90\x86\x13\xe6\xc0\xf2\xf5\x60\xcc\x58\xbf\x5f\x10\xc9\x72\xe4\x17\x99\x41\x23\x2c\x46\xff\xbd\xb1\x9a\x8a\xf7\xb4\x02\x83\x3d\xb2\xd3\xa7\xa0\x3f\x4b\x30\x23\x72\x74\xfe\xd5\x33\xd4\x3e\x8c\x92\xc8\x29\x98\x4f\x9c\x1a\x4c\xfd\x2e\x30\x1d\x45\xa4\x27\x3d\x65\x92\x8d\xf7\xc6\xc9\xc3\x73\x1a\xde\x95\xe2\xdc\xa1\x50\xf9\x88\x47\xb0\x6e\xd2\xd4\xc4\x1c\x7a\xc2\xdd\xbe\xa6\xfa\x26\xaf\x4d\x73\xd9\x2c\x36\x83\x81\x49\xfb\x68\x9f\xc4\x8f\xcf\xb4\x15\xc4\x8c\x41\xb5\x2e\x40\x59\x99\x77\x34\x85\x4f\xf8\xa0\x44\x1a\xed\x11\x2c\x8e\xe9\x78\x86\x0d\xfc\x58\xf5\x37\x3d\x9a\x8a\x37\x0e\x3e\xdf\xec\x12\x5f\x7b\xa6\x59\xae\x18\x1d\x26\x04\x18\xe2\x15\xd9\xe1\x28\x4c\x01\x45\x76\xd4\x28\x8e\x39\x68\xae\x5d\xb5\x18\x4e\xcd\x09\xaa\x1c\xc8\xda\xfe\x99\xdb\x81\xbd\x22\xee\x1a\x1c\xd8\xaa\x20\xb2\xa3\xed\x33\xb9\xb0\x3a\x48\x4f\x3d\x9a\xaa\xd8\x2f\x2d\x35\x8b\x38\x8c\xec\x5a\x79\xc0\x78\x22\x91\xd3\xd4\x34\xcd\xd7\x5b\x89\xb0\x0e\x3e\xdf\x3c\x34\xff\xa5\x3d\xe5\xd2\x40\xdc\x7b\x0a\x66\x1d\x63\xfb\x96\x6a\xbc\xf9\xbe\x76\xc6\xcf\x12\x57\x80\xe6\x3d\x56\x22\xb5\x82\x9d\xb9\xa6\x99\x2d\x1e\x52\xec\x24\xcc\xe0\x9a\x0e\x0e\x8e\x9a\x4c\x26\xcd\xac\x13\x19\x2d\x8f\x03\xd1\x9a\xd8\xca\xd9\xb1\xb4\xd4\x4c\x8b\x8e\x8d\x6d\xf6\xf5\xc2\x72\x1f\x1f\x92\xc0\xd7\x5b\x7e\x49\x5c\xd2\x75\x9e\x57\xdc\x7e\x1a\x58\xd3\xdd\xe5\x5b\x3e\x6f\x78\xc1\xc5\x6f\x3f\xd3\x56\xd2\xed\xe7\x28\xdd\x8b\xca\xd6\x71\xad\xb9\x00\x3e\x11\xfa\xbd\xcf\x3f\x83\xc8\x08\x01\xcc\x26\x7e\x10\xe3\xb1\xad\xed\xad\x89\x29\x7f\x73\xb6\x92\x60\xa4\x97\x65\xe8\xdc\xb8\x92\x86\xf4\x3e\xd0\xc9\x1a\x3c\xc1\x97\x40\x14\x00\x13\x59\x11\xc8\xe2\x1b\x97\x30\x0f\xe3\x2c\x0f\xf3\x22\x97\x72\x96\xe8\xdc\xa8\x4a\xb0\xd6\x42\xca\xa2\x70\x38\x84\xa8\xa2\xa3\xe8\x21\xab\x85\xb2\xe5\xf6\x76\x69\xcd\x70\xe4\xa3\x75\x17\x9b\xa8\x96\x24\x3c\x8c\xd7\x6c\x96\xf3\x99\x86\xa5\xc2\x9b\x88\x6f\x3e\x91\x0f\x6f\x18\xe6\x59\x11\xce\x28\xdc\xd8\x4c\xdb\x63\x34\xce\x6a\xea\x9f\xfb\x2e\x6a\x18\x06\x21\x1d\xff\x18\x35\x84\x1c\xb0\xbb\x67\x74\xe9\x7c\x5b\x5b\x86\x06\xf4\xfb\x72\x7e\x1c\xf0\x6c\x76\xcb\x9e\x5f\x42\xc2\xec\x41\x98\x41\x0a\xde\xfd\xdf\x83\xad\xc2\x99\xfb\x1d\xf9\x79\x4d\x04\xda\xb3\xdc\x30\x0c\x30\x25\x82\x47\xbe\x56\x04\xc0\x94\x04\x08\x58\x3b\xdb\x81\x5d\x6e\x69\x7c\xc2\x2d\xe5\xbe\xc4\x36\xcc\x07\x36\xdd\x49\x93\x29\x84\xb2\x1e\x9a\xfd\x0d\x58\x79\x99\x22\xa5\x22\xfe\xbb\x78\x60\xd9\x7f\xd8\x8d\x88\x75\xfe\x2d\xb6\x39\x36\xd2\x9b\xaa\xa4\x17\x0c\xd2\x30\xcb\xc3\xd8\x50\xf4\xb1\x89\xea\xe6\xe6\x55\x2d\x5e\x1c\xc6\x76\x56\xed\x04\xc6\xcb\x48\x7b\x9e\x8f\xf1\x19\x2f\x23\x36\x4d\x2d\xbf\xa4\x88\x48\xaa\x9c\x36\x9a\x28\x6a\x34\xbc\xba\x86\x82\x4f\x51\x9d\x36\x83\x27\x8d\xbc\xd5\x7d\x78\x8c\x7c\x53\xd7\xb0\x6c\x7a\xa9\x61\x8a\x41\x2c\x6e\x56\x64\xe5\x1b\x55\x1d\x18\x98\x61\xa7\x48\xfb\x36\xd5\x9c\xc2\xb7\x54\x2e\x0c\x67\x88\xe8\xf5\x7c\xd2\x4a\x36\xe9\x5a\x18\x77\x61\x8d\x91\xa0\xb8\x44\xfe\x25\x5f\xd7\xc9\xcc\xa7\x26\xf4\x0a\xfc\xc8\xee\xa3\x1f\x97\xaf\xa7\x96\xd7\xbe\xe5\x66\x2f\x34\x79\x43\xb3\xaa\x13\xea\x45\xc6\x77\xab\x13\xf4\xcb\xcd\xd8\x0c\x25\x9d\x56\x07\x41\xfd\xf4\x74\x2e\x38\x03\xfa\xb5\x82\xf4\x73\xf1\xc1\x3e\x9f\x53\x2c\xbf\x12\xb6\x76\xae\x5d\x55\x79\x8f\xa8\x01\x51\x90\x63\x9e\x56\xee\x4a\x95\x3f\x4a\xb9\x62\x47\x5b\x15\x9a\xa9\x72\xfb\x20\x87\x80\xae\x1e\xa5\xed\xea\x59\xa6\xa6\x18\xab\x24\x73\xb9\xd5\xef\x5e\x5a\x6a\x76\x4c\xbc\x9a\x16\xa3\x3c\x80\x6b\x52\xab\xea\xe7\x0b\x4b\xbd\xc4\x66\x48\x6a\xb0\x54\x21\xc5\xfe\x8e\x82\x42\xc3\x6c\x15\xce\x7a\x7a\x8a\x0f\x3e\xdf\x7c\xa9\xc8\xf2\xb0\xb7\xd1\x50\x4d\xc4\x78\x6f\x09\x12\x6a\xa6\xb8\x93\x0c\x01\xb6\x94\x46\x21\x9f\xef\xbe\xac\x65\x65\x8b\x54\xd8\x6a\x34\xa7\xae\xf0\xd1\xd4\xf4\x95\x06\xc9\x90\xf4\x2c\x81\xeb\x15\x76\x17\x5f\x5d\x7d\x34\x05\xd0\x5e\x58\x6c\x8e\x6c\x9e\x82\xea\x37\x60\xa9\x56\x81\x74\x69\xac\x97\x77\x4b\xff\xfb\xff\xee\x97\x1a\xe5\x41\xea\x78\x71\xfc\x33\x69\xec\xdb\x70\x68\xbb\xa1\xc9\xed\x0e\x5f\x18\x7b\x1f\x46\x0c\x41\xea\x4d\xac\x15\xbe\xc1\x98\xf1\x9f\xa9\xe4\xc0\x59\x95\x15\x3f\xab\xc6\xa6\x9f\x98\x68\xc7\xdf\xa8\x49\xf2\xaf\xed\x85\x84\x5f\x71\xab\xd2\x7e\x19\xe5\xd9\x93\xbe\x9f\xea\x03\xac\x49\xc0\x6c\x7e\x4c\x1b\x5e\x7c\x3d\x5a\x27\x58\x34\xe8\x47\x43\x75\xfd\x4e\xa5\xa1\x9c\xcc\x98\x22\xbe\x12\x68\x0d\x83\x76\xe1\x5c\xfe\xa8\xa5\x92\x8e\xf0\x5f\x10\x0e\x3c\x8e\x7c\x93\x2b\xc3\x7b\x3a\xda\x31\xbd\xa4\x14\xca\xa7\xc9\x00\x0e\x34\x23\x6b\x52\xd7\x1f\x85\xfc\x39\x23\x8b\xf8\xc6\x11\x02\x67\xb6\x0c\x9e\x73\xbb\x53\xa1\x41\x8e\xfa\x36\x8b\x5f\xff\xaf\x68\x7b\xa0\xc1\xe3\xb4\x2e\xca\xc3\x5f\x87\x01\x3c\xa5\xd8\xaf\x7e\x76\x42\x4f\x2a\x2d\xdb\x7e\xed\x2c\xcc\x33\x5b\xad\xeb\x46\x5b\x58\xd4\x84\xed\xd2\x08\x71\x4d\x1d\x45\x26\x5b\xcd\xa8\x9b\xc9\x51\xf9\x2d\x3b\x31\x88\x4b\x53\x68\x5a\x27\xa7\x18\x8f\x1a\xde\xcf\xd8\xae\xa1\x4f\xdb\x15\xab\x19\xb5\xed\x0e\x6d\x8a\x3c\xb1\x10\xca\x6c\x49\x4e\x2d\xbb\xc6\xce\xf2\x1b\x2b\xad\x66\xfc\x1f\x75\x8d\x0f\xcd\xc0\xa6\x79\xd8\x2b\x7d\x00\x5b\xe5\x15\xbc\x81\xe9\xe6\x9b\xfa\x34\x02\xa4\x91\x9c\x4c\xa9\x48\x2c\xd2\x07\x85\x61\xb6\xe6\xc4\xc9\x8a\x30\x20\x51\x3c\x27\xfe\x74\xb2\xe5\x4b\xa3\x27\x9d\xcf\xdc\xb1\x86\xe1\xca\x8e\xcc\x5d\x29\x34\x95\xef\x2f\x41\x46\x4d\xd8\x6d\xa2\x28\x59\x47\x7e\x4d\xbc\x03\xdf\xd0\xfb\x3d\xcd\x6e\x70\xbd\xb2\xb3\x8a\x34\x7b\xbc\x92\xb5\xf3\x76\xef\x21\x05\x36\xd8\xff\x9b\xf4\xc4\x58\xe6\x4f\x80\x27\x1f\xa9\x2c\x54\x76\x9d\xba\xec\xe2\x41\x29\x47\xb4\x14\xb4\x18\x0d\xc5\xc0\x31\x3e\xd6\xa6\x75\x28\xe4\x0c\x8a\x50\xee\x9a\x6b\x81\xca\xcc\xb0\x48\x0d\xfc\x4d\x64\x95\xbe\xa1\xa8\xbe\xee\x12\x29\x1b\xc2\x84\xdb\xaa\x1a\xb0\x96\xe4\x36\x23\x28\x13\x0e\xda\x1b\xda\xcd\xbf\x0b\x67\x09\x36\xe3\x4d\xa5\xe4\x77\x5e\x47\x09\x77\x75\x71\xc1\xa4\xd1\xc6\xe3\x1e\x46\xca\x8d\x57\xb0\x0e\xe7\xc6\x9e\x7d\x9c\xc3\x50\x1c\xd1\x3f\x6d\x29\x8e\x80\xf7\xb0\x31\x31\x9d\xdc\xfa\xc3\xad\x2b\xb4\xcb\xe0\x7c\xff\x04\xbc\xf2\xe2\x47\x36\x1c\x0d\xd6\x4f\x15\xe4\x6a\x57\xe5\xb8\x4f\x62\xfb\x99\x32\x54\x80\xad\xfc\x14\x4c\x08\x4a\x52\x77\x5a\x9a\x6d\xca\xc3\x0e\xb9\x36\xcf\xb3\x46\x68\x0a\xfc\xd1\x45\xc5\xd7\x75\xa3\xa5\x23\xc7\x53\x63\xc5\x1e\x7a\x0b\x90\x70\xee\x0a\x6f\x2b\x7e\xf0\x96\x62\x1b\xde\x49\x59\x10\x8a\x68\xff\x97\xbd\xb0\x38\x78\xfe\x87\xe4\x32\x71\xc3\x3e\x30\x17\x1c\x49\xd0\x06\xc6\x6c\xde\xc7\xe0\x49\xaf\x28\xd9\x69\xec\x12\x54\x3d\x71\xe6\x5f\xa3\xf9\x87\x5d\x78\x53\x77\x98\xfd\x60\x6a\xf7\x7d\x65\xb1\x99\xf4\x93\x78\x23\x59\x6d\x78\xb2\x1a\x0e\x27\xf8\xc6\x2d\xba\x41\x92\x86\x2f\x27\xb1\x0e\x56\x6e\x8d\x7d\x40\x72\xab\xae\x7f\xa1\x18\xad\x9b\x14\x02\x1a\x8e\x63\xd5\x0d\xe6\x07\xca\xf3\xee\x99\x20\x8c\xc2\x7c\x63\x96\x06\x11\x30\xd2\x9f\x50\x8b\x8b\x68\xa0\x78\x84\xf0\xbb\x74\xa2\xf1\xdf\x68\x3d\x7e\x7b\xc4\x48\xd2\x04\x20\x38\xee\x7d\xe0\x9b\x96\xa7\xe6\xea\xa5\xd6\x82\x66\x17\xc5\x9f\x0f\x61\xc8\x25\x1d\x46\x63\xe6\x14\x36\x0e\x09\xbc\xe2\xc3\x7a\x4d\x12\x11\x98\xdd\xef\xd5\x92\xca\x55\x2d\x90\x0c\x5f\x13\xe1\x7a\x2c\x92\x86\xe0\xb3\x95\x08\xab\x5c\xac\x4e\x46\xc6\x89\xd7\xe0\xac\x12\xee\xa8\x2d\xa9\x93\x43\xf3\x2f\x36\xf7\x2d\xef\xa5\x07\x77\xc8\xd9\xf2\x3b\xb1\x38\x8f\x61\x3d\x0a\xc9\x67\xc3\x31\xd6\x80\xff\x44\xde\x6e\xc6\x8b\x4f\xff\x94\xec\x19\x2c\xd2\x3b\x4a\xde\x8c\x8b\xd3\x2e\x7e\x58\x99\x67\xd8\xf6\x63\x54\x00\x80\x01\xba\x4e\xd8\x5c\x66\xc1\xaf\x0c\x20\xad\x11\x9c\x39\xdf\x1e\x2b\x81\xec\x0b\xd8\xd6\xfc\x7b\xaa\x53\xd5\xb8\x86\x1d\x2d\xa9\xc6\xd7\x4a\x22\xd5\x1e\x19\x45\x26\x8c\x51\xeb\x7b\x91\x13\x75\x8d\x09\xed\x1d\xbe\xa1\x6d\x28\xd4\xf5\xaa\x4a\x74\xbe\x62\xe3\x37\x52\x88\x2f\x57\xba\x2b\xa5\x6f\x43\x49\x9e\x96\x6e\x6a\xb8\x56\x7a\x87\xfb\xd9\x23\xfa\x50\x75\x64\x73\xf5\x00\xb6\xf0\x04\x36\x27\xdf\x28\x06\x6f\x10\x63\xf2\xa7\x6b\x0e\xaa\xfd\xcd\x8d\xa4\x10\xf2\x10\x96\x78\xd0\xea\x5b\x6f\x8e\x15\xa6\x30\x2a\x86\xf0\x18\x30\xcb\x6f\x2a\x72\xcc\x37\xeb\x98\x4c\x4c\xbc\x91\x20\x46\xde\xaf\x2b\x85\x07\xbc\x84\x96\x4b\xa6\xce\x92\x69\x94\x98\xe4\x49\xb5\xc9\x46\x21\x46\x0b\x87\xed\x6d\x75\xf0\xde\xae\xab\x1a\x0a\x08\x81\xe1\x26\x08\xad\x00\x12\x96\x66\x02\x85\xde\x38\xae\x9a\xe7\xd6\x4d\xd7\xce\x68\x7e\xd1\x86\xa3\x92\x7a\x87\x46\x11\xe5\x62\xad\xae\x9b\x05\x26\x82\xba\x2e\xa2\x70\x34\x16\xf0\xb5\x52\x3d\x0f\x6c\xb8\x66\x3a\x91\xcd\xe6\x34\xa9\x33\x77\xde\x61\x89\x7c\x6a\xa2\xba\xae\x4e\xfb\x16\xcb\xf3\xcf\xb4\x2b\xf9\x1f\x95\xae\x4f\x37\x5e\x32\xba\xc3\xfa\xaa\x66\x61\xb9\x3a\xf6\x3a\x25\xd9\xaa\x1d\xe5\x61\x10\x66\x43\x84\xd9\xd8\x7f\x68\x04\xe2\x6b\xc5\x88\x57\x04\xab\xbb\x1b\x42\xf5\x73\x81\xcf\x29\xd4\xa5\x9e\x6e\x7b\xce\x2a\x38\xb3\xc0\x27\x70\x39\xce\xc9\x3a\x96\x6b\x51\xf8\x8b\xc9\x46\x20\x44\xba\x8a\x8d\x2a\xd0\x50\x45\x37\x75\x71\xfc\xb8\xd8\x99\x95\xf9\x95\x67\xca\xd1\x46\x74\xf0\xda\xd8\x53\x60\x9e\x68\x11\xbc\x06\x0b\xfb\x0d\x0c\x9e\x23\x65\x2e\x7f\x1f\x0e\xd5\xc3\xb1\x62\xb0\x60\x46\x28\xbc\x25\xd8\x48\xd8\xcf\xa0\x82\x19\x0c\xc8\xf7\xf0\xc4\x18\xb8\x1d\x6d\xef\xb2\xbc\xa1\x22\xb7\x5b\x78\x13\xe7\x97\xad\xec\xf7\x8b\x63\xf1\xa0\x00\xc4\x75\x25\xfc\x35\x18\x32\x6c\x3e\x88\x81\x21\xaf\xf3\x06\xc6\x41\x90\x94\x8a\x83\x61\x64\xcd\x6a\xa5\xbf\xfe\x98\x8a\xc1\x8e\xb9\x34\x67\xa7\x48\xe3\x30\x1b\x10\xb8\xfd\xd0\xbc\xc3\x13\xd3\xcf\x09\x9d\x4c\x0d\x87\x5b\x9a\xac\x37\x5c\x85\xa4\xc9\xb5\x0f\xc1\x88\x38\xfa\x99\x32\x3e\x06\x02\x1e\x11\x31\xf4\x21\x61\x82\x39\xdb\x2b\x39\x6a\xcf\x95\x46\xac\x82\x61\xdc\xdf\xe9\x99\x09\xd0\xf6\x8c\x69\x7c\x8f\xc6\x08\x2b\x0a\x0b\x47\x74\xdf\x95\x82\xcb\x9f\x62\x84\xf9\x06\xae\x28\xce\x90\x6f\x3a\x73\x9d\xda\x61\xb2\x26\x78\x1e\xe9\xbd\x54\xd2\xc7\xd3\x6d\xcf\xe5\x99\x99\x9a\xb8\x2f\x61\x1e\xea\x16\xef\xe0\x87\xf9\xc6\x31\x3e\x04\x26\x0e\x6c\x64\xbb\x94\xfd\x61\xb5\xe3\xb1\xd2\x9c\x43\x09\x19\x2e\xd4\x77\xf0\x15\x88\x34\x4e\x56\x89\xc0\xcc\xf0\x71\x05\x0e\x7f\x02\xdb\x83\x37\xd4\xd8\xb7\x38\x7f\x6e\xbb\x22\x63\xfb\x23\x32\x32\x28\xe7\xfe\xfe\x78\xba\xff\x1d\xc9\xd7\x47\xe4\x20\xc0\xb7\xbc\x52\xa9\x83\xd2\x78\x09\x80\x4f\xb5\x1d\x5d\x54\xcc\x58\x3d\x5b\x30\x03\x11\x8e\x57\xee\xf7\xe5\x1b\x17\xfa\x64\x45\x6a\x77\x39\xc2\xc7\x5f\xff\x19\x90\xaf\x6a\x67\x1d\x43\xf0\x5f\xb6\x1d\x92\x21\xf8\xec\x44\xb5\xf1\x7c\xec\x35\x2a\xb2\xbf\x43\xc7\xb6\x88\x26\xab\xd2\xf4\xfb\x8a\xe8\x6e\xdd\x44\xb9\x4d\x77\x94\xbf\xc9\xc0\x7d\x7a\x37\xac\xa4\x9d\xed\x72\xaf\x22\x7d\xff\x81\xd2\x78\xfd\x33\xc5\xe5\xf3\xe1\x58\x21\xac\x74\x3c\x1d\x87\x39\xc0\x57\xac\xb9\xa0\xd0\x6e\x2c\x24\xe6\xec\x51\xf9\xfc\x42\x83\xa9\xb4\x6f\x90\x07\x71\x02\xa9\xee\x27\xcf\x4f\x9d\x79\x07\x9f\x6f\x8e\xd2\xa4\x17\xe6\xb4\x2d\x25\x94\xd6\x31\xf6\xd6\x13\x6b\x61\xb1\xd9\x49\xad\x59\xed\x26\xeb\x68\x9e\x82\x1f\x7d\xbc\xe5\x21\x44\xc7\xdd\xb4\x58\x9b\x04\x0d\x05\xa9\xfa\xae\x22\x55\xfc\xae\x06\xd7\x0d\x29\x59\xbc\xc3\x53\x18\x3c\x20\x7b\xa5\xfa\xaa\x65\xcf\x5d\xc3\x5b\xf3\x0d\xd6\x10\x23\xff\x55\x55\xe9\xd1\x54\x26\x6d\x69\xa9\x59\xe4\xa5\x0b\x1d\x5a\x4e\x57\x88\xb6\xa1\x26\x1e\xe7\x13\x0e\x4f\x78\xa1\xae\x82\x47\x67\xe3\x28\x67\xca\x7e\x59\xd6\x0a\x5d\x71\xbb\xe5\xbd\xb1\x77\xc7\x9f\xa4\x2f\x60\x02\xca\x8f\x3b\xf0\xae\xae\x1f\x62\xad\x70\x2c\x23\x33\x5a\x47\xcf\x15\x92\x61\xf1\xa2\xce\xa0\x54\x16\xc5\x81\xc7\x9d\x95\xde\x30\x8d\xc6\xc1\xe7\x1d\x29\x5f\x39\xb2\xb2\xba\xeb\x68\x37\x6d\x96\xd9\x74\xc6\xcf\x2d\x58\xbb\xdc\xf1\x54\x9e\x55\x48\x0b\x34\x14\x9d\x06\x01\x98\x67\x3e\x31\xf5\x53\x49\x10\xa9\x22\xc1\xc0\xae\xb3\x0a\xb9\x13\x7a\x52\x2d\x04\x75\x8c\xd3\x36\xaf\x88\xd0\x5d\x69\x69\x4a\x0d\xd5\x9b\x64\xb2\xcc\xc6\x7d\x56\xea\x16\x20\x88\x4f\xd0\xde\x1c\x7b\xcf\x07\xd2\xe7\xcc\xda\x5b\x27\x2b\x18\x99\xdc\xce\xd1\x2b\x20\x62\xff\x78\xec\xa5\x64\x1b\xed\x4a\x68\xe4\x40\x6d\x3f\xd9\x4b\xfb\x08\x2b\x64\xcf\xa4\x42\xa4\x1f\x45\x9f\xa6\x59\x17\xc4\x84\x4f\x4d\x42\x40\x51\x84\xf9\x68\xac\x5d\x3f\xc5\xe2\x41\xe7\xf0\x7a\x62\x38\x61\x30\x82\xaf\xf8\x96\xda\x03\x7b\xda\x1e\xff\xbf\x7b\xa2\x88\x57\xb7\x81\x92\x0d\xc9\x83\x07\x04\x01\xde\x44\xdb\x0c\xce\xb8\xeb\xb4\x42\x90\x37\xe2\x84\x3f\x4c\xdc\x99\x96\x8a\xa8\x8f\xc2\xcf\x02\x92\x63\xdb\x84\x62\x15\xb7\x46\xca\x11\x01\x64\xea\x8f\x91\x13\x95\x32\xc6\xd6\x65\xbc\xb4\xd4\xec\x9a\x30\xda\xa0\x59\xc2\x62\xd9\xdd\xae\xb0\xd5\xf8\x7e\x9a\xb7\x95\x12\xd1\x43\xd5\xca\x3c\x4a\xca\x6d\x1d\x10\x14\xab\xf1\xd5\x2f\xfb\xba\x87\xab\x30\xce\xa0\x64\x8c\x1d\xcf\x15\x74\x1c\x6e\x9a\xd6\xb6\x17\x99\x3c\xb7\x31\x99\x42\x9c\x6a\x27\x30\x03\x7c\x33\xb5\x07\x17\x0f\x36\x7b\x44\x3f\x4f\x23\x81\xf5\xf3\x1e\x3d\x30\x5f\xb7\x9e\x51\x18\x9c\x30\x0e\xc2\x51\x64\x39\xb0\xc5\x09\x76\x4f\xa9\x96\x43\x68\x89\x45\x6f\xa8\xc3\x44\x04\x70\xd4\xd9\x90\x64\x73\x5e\x05\xf5\x23\xb6\x5d\xb0\xd5\x9f\x6a\xfb\x1d\xf7\xaf\x3f\xa5\x44\x08\x9e\x9a\xf8\x3a\xff\xf9\xbd\x93\x3a\x95\xdb\x20\x19\x8e\x22\x7b\x44\xc1\x33\x4f\x29\x78\xe6\xa9\x29\x26\x90\x83\xcf\x37\xf3\x04\x2c\x0a\x2c\x7a\x4d\x7f\x2e\x02\xd8\x1e\xe1\xb4\x96\x44\xab\xd9\xba\xe9\x97\xc3\xba\xb0\xe8\x12\x17\x8a\x6a\xe7\x27\x53\x79\x56\xb1\x91\x1d\x9b\xe6\x03\x27\x9c\x2a\x3e\x87\x82\x0b\xfc\x91\x0a\x3e\xc9\x0b\x14\x32\x6e\xe6\x93\x1a\xfb\x30\x8c\xb1\x01\x40\x47\x50\xd2\xcf\x71\x8c\x26\x85\x54\x64\x44\x4c\x83\x7e\x42\x54\x36\x54\x38\x39\x0c\x73\xb4\xc2\x0a\x7d\x4c\xf9\xfd\x58\xf3\xdf\xc0\x87\xe0\xcd\x9c\xa9\xe0\xfb\x3a\x36\xdd\x4b\x2b\x0e\x79\xd5\x9f\xe2\x00\xc3\x32\xbe\x4b\xdb\x4e\xd1\x1b\x1e\x70\x94\x12\x78\x24\xa4\xdb\xde\xc6\x09\x28\x44\x57\x3e\xc3\xc7\xac\xb7\x12\x93\x78\xb4\xee\x43\x5a\x40\x0e\x3f\xf5\x82\x0b\x43\xee\xc0\x51\x83\x8f\x0f\x65\x79\x72\xd3\xfe\xce\xd3\xb0\x0a\x78\x96\x8f\xc8\xaa\x52\x46\xf1\x97\xf7\x92\xe8\x06\xa3\x6e\x6b\xce\xd5\x03\xcd\x75\x93\x83\xa5\x95\x5e\xd3\xa9\x70\xb8\xb4\xc6\xad\x4a\xdc\xed\x92\xb4\x70\xc0\x67\x14\x4c\xf1\x26\x7d\xc8\x65\x8c\x9d\x86\xd1\x09\x95\x09\x0b\x22\x93\x65\x61\x80\x1a\xf4\x26\x00\xc7\x9b\x57\x5d\x38\x68\xa3\x4e\x02\xa2\x3a\x5d\x78\x92\x5a\xd5\xa7\xb4\xe8\xf2\x28\x22\x91\x52\xb7\xcc\xef\xc1\x30\xf0\x8d\xea\xd8\xea\x85\x79\x6c\x33\x6e\x24\x86\x5f\xcd\x8d\xa1\x72\xd6\xfa\x3d\x3f\xd7\x7e\xdc\xeb\xf0\xef\xa3\x6f\xaf\x68\xcd\xf3\x8d\x5a\x81\x71\xd8\x07\xd5\xec\x8b\x4e\xef\x54\x8b\x9f\x8e\x9f\xd4\x6c\x39\x2f\xa3\x0c\x28\xe5\x54\x2c\x12\x91\x13\xdb\x1a\x49\xbc\xb0\x78\xb0\x99\xe5\x54\xaa\xa0\xaf\x97\x6d\x41\xef\x21\x9c\x6b\x35\x74\xe8\xa9\x1d\x25\x69\xce\x61\x1d\xc3\x0e\x5a\xde\x07\xf8\xb7\x53\x86\x90\x18\x91\x07\x16\x88\x75\x94\x40\x30\xe7\xb8\xe6\xd8\x45\x7c\x0e\x8f\x31\x4d\xed\x30\x8c\xbb\x99\x12\x53\x7e\x4d\xb5\x1a\xbf\x36\x15\x1a\x2d\x2d\x35\xb3\x90\x5a\x19\x15\x2b\xf8\xc5\x0a\x40\x97\xa6\x90\x89\x8c\x1d\x20\x7f\x3d\x64\x6c\x88\xb4\x25\x2b\xbd\xa5\x0b\x8a\xb0\x98\x08\x54\x7d\x67\x52\x96\x15\xa9\xf0\x7c\xf2\x71\x44\xe7\xab\x1c\x4d\x5b\x87\x6e\xdf\x72\x33\x0b\x06\xe1\xcb\x09\x63\x18\xb8\x97\x46\x41\xb8\xb5\x28\x86\xfd\x7a\x11\x0a\x41\xa2\xcf\xad\xf9\x73\xf0\x91\x26\x4c\xbe\xe4\x7c\xea\x9e\x09\x53\xd2\x06\xc1\xd1\xf6\x2c\xb0\x4d\x22\x4f\x4b\xdf\x85\x20\xe4\x4d\xfa\x2e\xe4\x80\x3e\xad\xd9\xb1\xef\xa8\xaa\x79\x27\x01\x9a\xc3\x01\xc7\x70\xaa\x0b\x8a\xcc\x73\x2b\xac\x99\x80\x84\x85\xb2\x19\x1f\x90\x5f\x6f\x4d\x05\x97\x1e\xe0\xec\xdd\x1d\xd3\xb7\xcf\xd0\x39\xca\x08\x36\x38\xed\x08\x7c\x38\xc9\x09\x8f\xe5\xdb\x8a\xee\x87\xf5\x33\x24\x37\xd4\x70\x74\x6c\x08\x4f\xe0\xae\x4f\x28\x93\x8f\x40\xfa\x42\xcb\x4b\xe2\x7c\x97\x37\x06\x0a\xb9\xef\x68\xbe\xe0\x1d\x6d\xc5\x9c\x82\x12\x2f\x76\xc2\x2d\x38\x2a\x92\x7f\x53\x21\xc2\x2e\x22\x69\x92\x54\xa5\x4a\x81\x1d\x1f\x2b\x6e\xf5\x47\x2d\xe4\x24\xf9\x55\x5c\x02\x00\x03\x07\x08\x83\x5b\x44\x7e\x41\x8d\x7d\xa2\xa0\x57\x64\x26\xfa\x64\x10\xf3\x13\x0a\x5a\x23\x62\x6b\x8c\x69\xc4\xd3\x0a\xc0\x71\x4b\x5b\xec\xca\x7c\x73\x69\x69\x0f\x8d\xa6\x03\x04\x3a\x79\x8f\x87\x63\xc5\xae\x79\x16\x41\x24\xf6\xc2\x13\x28\x53\x8b\x9b\xe4\x75\xa1\x5f\x27\xef\x13\xff\xbe\x63\xe2\x5b\x35\xce\x22\xdb\xc5\xe6\x1f\xeb\x48\x64\x2d\xc8\x6f\x14\x8c\xae\x47\xc5\x3f\x20\xa7\x56\x0e\x0c\xbf\x2a\xa3\x64\xdd\xc2\x64\x49\xfb\x0a\x8d\x8a\xf4\xb5\x6c\x45\x1a\x2e\x03\x25\x51\x94\xa7\xd0\xcb\xcc\x67\x53\xdb\xce\x55\x23\x15\x61\xd2\x61\xd6\xa8\x14\xf7\x35\x32\xdc\x57\x44\x52\x93\xa1\x53\xa8\x4e\x4f\xa0\x2e\x85\x93\xdb\xb8\x2b\xa8\x3e\x2e\x87\xb5\x54\x6b\xed\xa9\x3a\xb2\xff\x20\x4c\x83\x22\x32\x29\x82\x4b\x58\xdb\x1f\x2a\x45\x81\x5b\x4a\xc2\xf4\xda\x16\x2a\xa4\x00\x03\x06\xf4\xc0\x79\xbc\x06\xdf\xa8\xd7\x58\xb3\xe9\xc6\x6e\x9a\x65\x44\x99\xe0\x21\x40\x5b\x34\xb4\x27\xe0\xdd\xcf\xb5\x55\xb5\xef\x24\x76\x2c\x5a\x7c\x40\x15\x0f\x2f\xe3\x3a\x76\x83\x68\x02\x94\xc3\xc8\x5f\xdb\xd6\x00\x62\x05\x20\xfb\x7a\x51\xfa\xd8\xdd\x19\x2f\x95\x74\x85\xf6\x2d\x42\xc3\xff\x59\xf7\x90\x4d\xdb\xd7\x2f\x10\xe3\xc4\xc8\xcb\xdb\xc0\xd0\xa1\x7f\x9f\xaf\xa7\x3e\xe4\xc4\xa3\xbb\x8c\xf3\x62\xe5\x60\x2a\xe6\x88\x8a\xf0\xd6\x15\x45\xcc\x1a\x5d\xdb\x0b\xe3\x30\x27\x24\x96\x3b\xd7\xb0\x13\x44\x3e\x70\x9a\x7b\xfc\x40\xb3\x6b\x83\x28\x74\x20\x0d\x24\x6c\x79\x9b\xf1\x8d\x6b\x16\x20\xbe\xd6\x3c\xe1\xbe\x28\x59\x25\xbe\x19\xfb\x94\x4a\x38\x75\x92\x64\xc8\xcc\x36\x92\xd7\xa7\x59\xe1\x1b\xe5\xae\x74\xc2\x7e\xdf\x66\xf9\x0e\xc5\x74\xf8\x63\xb8\x36\x70\xe2\xee\x29\xe5\xdd\x23\x18\x71\xd1\xd2\x69\x38\x7a\x6e\x56\xb6\x47\x30\xaf\xa5\x5f\xc2\x0c\x40\x77\xfe\x2e\x78\x35\xf2\xc5\x2a\x33\x9c\x9b\x28\x2a\x9f\xd7\xd5\xd2\xa0\x09\xcd\xd7\x8a\x4f\x2c\x8c\xe9\x9b\x83\xd0\xc6\x39\xbd\x1e\xaf\x33\xfa\x73\x59\x73\x5b\x01\x7c\x2b\xf3\x64\x30\xd3\x4e\x58\xfa\x1d\x0d\xcd\xee\x8f\x2d\x2f\x54\xff\xfe\xbc\x1d\x9a\x30\xce\x72\x23\x8d\xf7\x88\x3e\xce\x68\xd6\xcf\x33\x53\x1e\x54\x19\x9e\x16\xdd\xbe\x95\xb2\xae\x8c\x66\xc3\xd1\xf5\xfe\xb8\x8e\x76\x76\x68\x23\xef\xda\x02\x99\x73\x5d\xf1\x70\x9d\xa2\x2d\x2d\x74\x61\x5b\xd7\x1e\x69\x63\x8e\x22\x13\x58\xa2\x58\x6b\x68\x35\xba\x4a\xcf\x5c\x5d\x20\xd7\x4b\x52\x1b\xf6\x63\xac\x74\x4e\x5f\x2b\xa3\x71\x6a\x2a\x21\x75\x68\x7e\xb9\x39\xd8\x18\x95\xfe\x7b\x19\xff\x0a\x25\x12\xb6\x20\x0a\x73\x7c\xed\x5c\xec\x91\x35\xab\xfc\x58\x48\x71\x02\x8e\xc6\xd7\x2a\x30\x8f\x93\x34\x1f\x98\xe1\x28\x4f\x04\xf2\x82\x33\xf8\xfd\x96\xaa\x41\xbf\xaf\x10\x60\xc3\x34\x7b\x6e\x17\x4d\x1f\xf2\x67\x0f\x61\x31\x39\x15\x81\xf5\x8e\xad\xf7\xc4\xc4\x23\x60\xae\x93\x45\x12\x9d\x25\xb5\xea\x9f\x24\x38\x34\xc2\xae\x77\xf5\x9c\xd5\x75\xfe\x7f\xae\x19\x98\x98\x89\xbb\x75\xa0\x25\x39\x69\x29\x65\x98\x61\xc7\x64\x99\xe9\x26\x20\x1b\x70\x30\x76\xdf\x22\x77\x4e\xd3\x71\x8c\xb5\x2e\xf0\x3f\x9d\x3a\x81\xbe\xd0\x4c\xd6\x9d\xad\xc0\x1f\xbd\xd2\xf2\x6c\x3a\xaf\x4c\x4d\xf2\xe1\xc3\xcd\xd2\x67\x8e\xca\x78\xc4\x97\x39\x10\x8a\x22\xd4\xfd\x90\x2c\x94\xc0\x1b\xb6\xae\xae\x43\xf3\xfb\xcb\x58\x39\xa2\xc5\x25\x3f\xcc\xdc\x25\xf4\xc3\xc2\x63\x52\xb3\xac\x39\x69\xd9\xf0\xaf\x0a\xb4\x2c\x5f\xab\x03\xdc\xae\xd9\xf8\x69\xd5\x2a\x70\x81\x9e\x49\x81\x0e\x24\x7d\xf7\x7f\x60\xff\xa1\x1d\xe6\xa4\x86\x0f\x5e\x85\xd3\x80\x69\x65\xd0\x0f\x3c\x93\xfb\xad\xc6\x57\xbf\xcc\xa1\xd7\xbb\x58\x14\x30\xfe\xc8\x91\xe1\x28\xb9\x49\x5e\x8a\x63\xe7\x77\xb1\x28\x4b\x2a\x22\xae\x7c\xc0\x51\x36\x7e\xe4\x72\x4b\x89\x29\x8f\xab\xb1\xac\x03\x65\x70\xe5\x50\x80\xbf\x4a\x14\xa9\xf4\xdf\x6c\x77\x06\x5e\xa0\x23\x63\x70\x60\x80\xf3\xf4\x40\xcc\xf9\xe5\x4e\x80\x20\x89\x92\x61\x27\x34\x31\xa5\x75\x44\x2d\x0e\x4f\x85\x1f\x3f\x43\x3f\x0e\xe4\xca\xd3\x6d\x1f\x4a\xb0\xe5\x12\x5e\x62\x8f\xd2\xcc\x72\x53\xc4\xc1\x80\x4f\x2d\xfc\x31\xd7\x02\xf9\xc6\xfd\x7a\xb6\x31\xec\x24\x51\x98\xa1\x6d\x58\x10\x04\xe5\xef\x09\xb2\xa0\x46\xc8\xa6\x5f\x98\xd4\xc4\xb9\xb5\xdd\x59\xef\x17\xdf\x1b\x2b\xe6\x8e\x9d\x6d\xad\x8e\xa5\x32\x8f\x6f\xd4\x15\x20\xc2\xe1\xc8\x76\x11\xd6\x62\xea\x3e\x54\xc8\xb3\x0f\x5b\x3a\x64\x27\xaa\x4a\x8e\xc3\x1d\xdf\x8e\x13\x5b\x87\xd2\x31\x83\xd4\xa6\x4a\xed\x44\x5b\xcc\xe4\x61\x34\x32\xa2\x6a\x46\x23\xc3\x37\xd3\x2a\x6d\x0b\xcd\x5e\xe8\xe8\xee\x60\x6f\x6e\xe2\x95\xf8\xa6\xe5\xe3\xfd\x79\x54\x21\x51\x9e\x99\x6b\x2b\x9e\xf9\x87\x64\xa2\xa4\xec\x59\x83\x02\xe8\x26\xeb\x71\x3f\x35\x5d\xab\x35\x67\xce\x2b\xd1\x0f\xad\xa5\x6b\x82\x9c\x64\x70\xd1\x58\x20\xb8\x07\xd5\xcb\x7f\x53\x51\xa7\x3c\x4d\x88\x2a\x60\xa5\x76\x13\xe8\x53\xdb\x76\x64\x56\x21\x59\x2a\x0c\x19\xbe\xfa\x36\x32\xf9\x40\x29\x8e\xfd\xbe\xea\xbd\xf8\xfd\x6a\x88\xb7\x91\x7d\x46\x09\x2b\x3d\x1a\x2b\x72\xa9\x3f\x1e\x6b\xad\x1f\x5d\xf5\xbb\xa3\x1b\x93\x4f\xf3\x5e\xc4\x1d\x0b\xc2\xb8\x42\x71\x69\x0a\xb0\xb8\xbe\x47\x8e\x1b\xe7\xc5\xca\x1d\xbb\xf9\x4a\x4b\xb5\x23\xa0\x7f\x16\x8e\xd6\x0e\x02\x1a\xa2\x15\xe2\x80\x63\xfc\xc5\x06\x95\xaa\x73\x69\x31\x98\x64\x71\xec\x71\x11\xdb\x27\x1e\x3a\xf9\x2f\x69\x30\xb1\x1c\xaf\xd2\x26\xc6\x20\xef\x68\x37\xbe\xf8\x35\x1e\xd8\xb3\x48\x14\x63\xc4\xdf\xae\xf0\x8e\x15\xfd\x64\xb6\x02\xf7\xa1\xa1\x81\x79\x07\x99\x02\x76\x7d\x45\xa5\xfd\xfa\xd4\x41\x41\x0a\xa9\x61\x77\x46\x69\xf6\x33\x31\x0d\x82\x90\x57\xf1\xbd\xb0\x64\x57\x6b\x7a\x92\x96\x01\x48\x9c\xf1\xe5\x90\xd7\x94\xe8\x0a\x9f\x9b\x52\xcf\xda\xba\x42\x57\xe6\x9b\x1d\xdb\x0f\x21\x92\x57\x3e\x33\x06\xf3\x06\xac\x24\xdf\x28\xa1\xf6\xcc\xd0\xa6\xf1\x66\xf7\x18\x79\x73\x7c\xad\xca\xf0\x49\x27\x4b\x22\x9b\x5b\xe0\xc3\xc4\xcb\x51\xc1\xf7\xa5\xb1\xca\x94\x25\x6b\x16\x68\x76\xe9\xf9\x6b\x28\xcd\xeb\x3d\xce\xa9\x8e\xbb\xcc\x04\xe4\x5a\x7e\x7c\x60\xf3\x94\xd2\x67\xfe\x78\xac\x98\xbb\xae\x6a\x70\x80\x19\x99\x20\xcc\x37\x9e\x20\x62\x36\xd4\xe6\xce\xa0\x23\x14\x79\xd7\xd9\x09\xad\x48\x6e\x5e\x50\xad\x8b\xdf\xc7\x42\x70\x7c\x2c\x0b\x8b\x9e\x8a\xdb\x01\xb6\xe0\x8b\xa0\xf8\x73\x17\x58\x46\xd7\x14\xfd\xf9\xcf\xcb\xf5\x58\x29\x90\xde\xd2\x75\xc9\x7f\x56\x49\x2f\x77\xad\xa1\x74\x10\x16\xe8\x3f\x6f\x4d\xb5\x34\xa2\x4e\x74\x54\x35\xa6\x1f\x63\x56\x1d\xc9\x2c\x6c\x35\x7a\x87\x0f\x93\x5a\x19\xc1\x81\x17\x2b\x22\x62\x22\xed\x5a\x7e\x17\x0c\xff\x99\x3a\xba\xdb\x8e\x89\x22\x74\xfe\xb0\xee\x33\xbd\xb0\x68\x40\x6f\xfd\xb9\x2f\x34\xcd\x68\x64\xb9\x4f\x01\xc9\x9c\x8f\x34\x2f\xfa\x47\x53\xde\xff\xa1\xf9\xc5\xf2\xd8\x48\x93\x91\x4d\xb9\x4f\x46\x54\x05\x1a\x4a\x48\x40\x31\xf3\xd8\x75\x93\x56\xca\x86\xe8\x44\x91\x1a\xe2\x93\x4a\x68\xd1\x5a\x10\x01\x63\xa6\x19\x1b\xcf\x37\x2e\xab\x13\x0c\x4c\x9a\xdb\x74\xd6\xe3\x80\xbf\x03\x23\xa5\x73\x92\xae\x9d\xdb\x45\x55\xc7\xa6\xd2\xad\x5f\x68\x66\x49\x10\x9a\x28\xcc\x58\xf9\x58\xe8\x8b\x69\x0f\x08\x65\xb1\x24\xff\xd6\xc2\x80\x5b\xb8\xb4\xf4\x8b\x86\x01\x22\x0b\xcd\xe4\x63\x52\xd0\xf7\xaa\xe8\x61\x1c\xcc\x29\xc2\xa1\xeb\x2d\x4f\x7d\x73\x9c\xdd\x0e\xa6\x99\x6d\xa9\x06\x27\x0d\x2a\xbe\xae\xea\xf6\x83\xa4\xd7\x1b\x1a\xe6\xf4\x87\xe5\xba\x8d\xf5\xcc\x37\x75\x19\xdc\xc0\x8c\xc2\x9c\x67\x1b\xe1\x25\x14\xfe\xf8\x7a\x52\x93\xa4\x09\x92\xa1\x9d\xf5\xb5\xed\xed\xa8\x74\x09\x4d\xd6\x8c\xd7\x6a\x7e\x4d\xe9\x09\x4d\x07\x48\x5f\x10\xf8\xbe\x9c\xe7\x0c\x01\x50\x51\xd5\x39\x45\x63\x9c\x5a\x13\x85\xf9\x06\xa2\x38\x78\x33\x1f\xd3\xf7\xc3\x64\x3e\xd1\x56\x3d\x41\xf7\x10\xc5\xf0\x9e\x5c\x7d\xae\xa1\x50\xdc\xff\xa2\x45\x66\x84\x6f\xb6\x76\xf8\xae\xcc\x1f\x68\x2e\x2c\x22\x9c\x62\xa2\x67\x85\x18\x39\xeb\xf3\x88\xac\x14\x43\x4f\x83\xd9\xff\x8f\x2d\xbf\xf1\xff\x63\xf9\xbd\xf0\x0e\xb2\xcc\x64\x59\x18\xfb\x60\x0e\x89\xc1\x3f\x56\xca\x09\x7f\x5c\x57\xf8\x1f\x26\x69\xca\xb5\x13\xe1\xd8\x2a\xed\x97\x30\x71\xb9\xce\x92\x32\xb4\x0d\x2d\x58\x08\x1c\xf7\x4f\xb9\xf6\x71\xc4\x9f\x18\x2b\xd8\xf6\x79\xcf\x33\x9f\xa4\x26\x43\xaa\x5f\xb4\x52\xcb\x2f\x10\x2f\x71\x6b\x85\x91\x9a\x68\x33\x2a\x0b\xe3\x60\xdf\x41\x67\xa5\xa3\x46\x73\x0e\xe6\x5f\xb6\x3c\x17\xc6\xb6\x89\xf7\x5d\xfa\xc5\x46\xd6\x28\x03\x05\x24\x48\x40\xc2\xc3\xd7\x2a\x9d\xf1\xab\xbf\x7a\x80\xd9\x57\x84\xf3\x98\x66\x82\xb3\xa3\xf4\x21\xa1\x62\xa5\x29\x45\x52\x6e\xd3\x31\x09\x77\x6d\xcf\xc6\x19\x89\x88\x1d\x9a\xaf\xa8\xe6\xf2\xe3\x55\xc0\xb9\xbe\x98\x98\x97\xce\xde\x1e\x05\x4e\xbb\xcb\xfe\x0f\x3c\xe5\x0f\x60\x76\x70\xb6\xbd\xa6\x2b\x01\xaf\xb6\x94\x2b\xfa\x0a\x0e\x09\xc7\x2d\xb7\x6f\xd9\x57\x19\xcb\xd7\x60\xfa\xab\xb1\xf2\x5a\x28\x70\x46\xc4\xf6\xe7\x0a\xcf\xfa\x76\x4b\x75\x6a\x02\xe5\x25\xec\xd7\x35\x32\x10\x36\x1b\x29\xc9\xa2\xf3\x55\x51\x0d\xef\x06\xe4\x26\xc8\xc3\x60\x46\xd1\xca\xbd\xa1\x68\x2b\xc1\x32\x80\x10\xed\x8c\xaa\xc3\xdb\x61\x18\x9b\xcc\x36\x54\xe3\x20\xb7\x59\xf1\x4d\x05\x9c\xdc\xb7\xdd\xa7\x75\x9d\x4a\xc1\xe4\x2e\xe9\x77\x62\x95\x3f\x24\x94\xee\xc3\x4a\xe1\xb7\xaf\xe0\xb0\x71\x02\xa1\xe5\xc0\xe1\xd8\x7d\x0a\x39\x70\xa4\xea\xef\x90\xaf\x28\x24\xbe\xaa\x95\xf5\x3a\x66\x04\xe7\xf9\xf6\x89\xe7\x8a\xd8\x43\x40\x32\xe1\x5b\xa0\x31\x82\x71\x7d\xa8\x64\xa2\x4f\xf0\xbc\xe3\xd4\xdf\x36\x71\x70\xe1\xff\xf0\x99\x49\xe9\x0d\xf0\x33\x4e\x19\xb3\xf2\x0c\xb4\x91\x0d\x1c\x51\x1d\x4c\xee\x43\x45\x54\x77\xae\xa2\x10\xac\x0a\x89\x59\x12\x85\x6c\x02\xf1\xa4\xe7\xc6\x0a\xf0\x77\x4e\x31\x94\x98\x3c\x4f\xc3\x4e\x91\x97\xc1\x9e\x6b\xde\x3e\x8a\x71\x45\x8c\x7b\x8f\x7e\xd0\x91\x8a\x3a\x3c\xdc\xbd\x29\xc7\x60\x69\xa9\xf9\xf9\x5f\xfa\x07\x9c\x39\x72\xb8\xfb\x85\x45\xb9\x6e\x79\x26\x65\x1b\x24\x71\x32\x04\xa6\xa3\x51\x81\x6b\x78\xa0\xef\x74\x9f\x18\xd8\xc9\x15\x25\xa2\x6c\x12\x5f\xbb\xdc\xa6\xf8\xd6\x1f\x6a\xa6\x99\xc1\x46\x16\x06\xcc\xfb\xe8\x58\x69\x7c\x9e\x9c\x31\x2d\x98\xbe\xcd\x0a\x87\x89\xcf\x7a\xe4\x03\x1b\x13\x77\x15\x12\x1d\x27\xb1\x68\xe1\x7f\xcd\x22\xef\x20\x8c\xc7\x65\xe8\x00\xbf\xff\x7a\x4b\x35\xdf\xbd\xa6\xb5\x4d\xa0\x62\x0b\xeb\xb0\x93\x52\x59\x52\x7f\xf5\x4d\x9c\x3b\x90\x8e\xc0\x86\xda\xd1\x56\xf3\x02\x1b\xa9\x7e\xe3\x45\x27\x98\xf7\xac\xf6\x76\x32\x52\x84\x23\xd1\x80\x7d\x92\xc4\x03\xef\x27\x5f\x4f\xe5\x00\x10\xb3\x27\x59\x16\x76\x22\x98\x3d\xfc\xe5\x8f\x30\x46\x02\x3a\xf0\x40\xd1\xeb\x9a\x02\xdf\xa6\x3d\x1b\xe4\x50\x1e\x74\xf9\xb2\xd2\xb3\x96\x5e\x7d\xd5\xb0\x12\xa2\x0d\xda\x45\xf5\x60\xdf\x17\x82\xf0\x67\x35\x57\xac\xe9\x95\x5f\x4b\x27\x9e\x1b\x9c\xa3\x4a\xa7\xed\xe8\xf8\x33\x1e\xc8\x61\x87\x61\x90\xc4\xdd\x22\xc8\x93\x94\xd6\x35\x0c\xcb\x4d\x9c\x5c\xec\x42\x29\x57\x92\x15\x08\xc4\xb7\x7a\x4a\x11\x9d\x1f\x31\x41\xa2\xb5\xe1\xaa\xbf\x59\xd3\xf2\xb3\xa6\xe4\xf9\xa5\xf3\xa2\x21\x94\x7c\x7f\xeb\x7c\x95\xb6\x27\xb0\xa4\x6f\x52\x3e\x09\x13\x17\xd3\xd7\x0b\x89\x71\xcd\xd7\x0f\x4c\xda\xb5\x29\x54\x00\xb0\x29\x67\xb0\x2a\xf8\x66\x52\x69\x8b\x0d\x93\x1d\xb4\x7e\xb0\x64\x4e\x60\xc1\x32\x13\x9a\x16\x97\x1a\x57\xb2\xdf\x8a\xf0\xed\xff\x54\xbd\xbc\xbf\x55\xa9\x12\x64\xbb\x15\x22\xf5\x61\x4b\x73\xbb\xff\x85\x02\xdb\x3e\xdb\xf6\xa5\x8f\xed\x13\x05\x78\xde\x3e\xd1\xbc\x2a\xf4\xfb\x38\x00\x8f\xe9\x94\xfd\xce\x89\x67\x6d\xd8\x54\x1a\x9d\xd4\xce\x18\xc6\xfd\x1d\x34\x10\x2e\x47\xeb\x30\xaa\xb7\x75\x9e\xf8\x32\x3f\x9d\xd6\xa4\x14\xe8\x23\x8d\x1d\x7f\xbe\x26\x72\xe9\xda\xc8\x81\x30\x71\xc0\xbe\x8b\xf4\x26\xdf\xb4\x9a\x9f\x54\x8e\x1a\x74\xcc\x86\xc9\x06\x90\x53\x12\x4d\x19\x45\xc8\xf2\x7e\x8d\xa8\x0c\xd1\xe8\x05\x03\x29\x2b\x0a\x15\xb7\xa2\xe5\x56\xc9\x9b\x81\x4d\xb1\x72\xe0\xc3\x1f\x6b\x29\x3e\xe2\x63\xaa\xb2\x9f\xb2\x26\x24\x98\xd8\x24\x87\x3c\xe3\x85\x73\x3f\x54\xe3\x1a\x24\x51\x31\xec\x14\xf0\xe3\x94\xc2\xd8\x7e\x27\x3d\x26\xa1\x4a\x1e\xa6\x68\x59\x45\x2e\xe6\xbc\xca\xcb\x9c\x57\x8a\x1c\x85\x89\x9e\xc0\xe8\x4b\x9e\xab\x34\x74\x02\x84\xf1\x08\x4a\xe6\x29\xc3\xd8\x9c\x45\xd6\x97\x8b\xf8\x2d\x9f\x5b\xbb\x43\xe7\x09\x77\x72\xe0\x94\x42\x66\xef\xff\x1e\x2b\x35\xaa\xb3\xd8\xce\x9c\x74\x26\x5b\xc7\xdd\xa0\x78\x15\xcc\xdd\xf1\x0a\x6d\x53\x42\xf2\xbd\x88\x51\x7e\xa0\x39\x06\x99\x6c\x01\xdd\x97\xc7\x78\x25\x61\x41\x7e\x48\x2b\x09\xb9\x80\x99\x76\x63\x61\x41\x93\x0c\x8a\x33\x8a\xd3\x09\x29\x94\xef\x8f\xab\x30\xd1\xee\xb3\xe5\x94\x20\xc1\x73\x43\x57\xa6\x1f\x8c\xbd\xcc\xe7\xdc\x84\x06\x03\x37\xc7\x14\xe8\xe3\x3a\x66\x1c\x1f\x97\x27\x63\xea\x91\x96\x6a\x2c\x85\x7b\xb9\xb9\xb9\xa5\x7e\xbf\x7f\x45\x2a\x48\xf7\xc6\x8a\xd1\xfe\x77\xc6\x0e\x33\xf6\x6f\x66\x69\xf3\xe2\xa5\xfe\x0c\x2f\x05\x2f\xfa\x28\xe5\xd2\xb0\xf7\xef\x33\x30\xc2\x71\xfc\x95\x63\x0f\x24\xc2\x0d\xea\x60\x74\x48\xcf\xc5\x83\x8e\xb0\x94\xf6\x90\x28\xd7\xd6\x11\xec\x10\x6a\x94\xd6\x17\x1e\x05\xe9\x4c\xbe\xae\x43\x4b\x17\x69\xbf\x74\x62\xf6\x09\x5e\xe3\xdf\x8d\x75\xf3\x11\x5c\x38\x11\x8c\xd1\x15\x58\xcf\xfe\x32\x4c\x62\x9b\x9b\x34\x64\xd2\x1c\xe9\xa4\xb8\xdf\x52\x56\xf3\xfe\xd4\x4f\xbf\xb0\xbf\x0c\xba\x0b\xae\xe9\xb3\x6e\x17\x5c\x0b\xac\xd3\xdb\x2d\xed\x7b\x55\x64\x8d\x49\x68\xc9\x76\xe7\x7c\xe8\x02\x68\x3f\xfc\x03\x36\xd7\x70\x36\x04\x30\x88\xd5\xc6\x18\x2f\xbe\x51\xfb\x37\x5b\xb7\x76\x24\x98\x26\x64\x17\xee\xd3\x2e\xe3\x6b\xa5\x66\x61\x7b\xbd\x24\xcd\x23\x9b\x65\xf0\xc1\x94\x6a\x9f\x27\x3d\xbd\x32\x15\x1d\x2c\x2f\x37\x3b\x09\x90\xa4\x12\x96\xd0\xdf\x0b\x9b\x48\x8d\x22\xd7\x28\x2a\xfa\x33\x5e\x89\x84\xdb\x86\x31\x19\xd7\x95\x64\xd6\xfb\x75\x7c\x2c\xeb\xa6\xdb\x8d\x04\xe1\x06\x67\x89\x45\xd7\xf9\x46\xe5\xf5\x86\x26\x27\x44\xd7\x9c\xc7\x23\x3e\xc4\x8f\x61\x19\x9c\xd4\x66\x0f\xe3\x02\x1b\xc3\xac\x6f\x38\x26\xdf\xaa\xab\x8d\x05\x91\x35\x31\x43\xe6\x60\xe5\xee\x63\xd7\xf0\x8d\x4a\xdf\x77\xc3\x8c\xca\xbb\x78\x64\x84\xef\x0c\xd8\xe0\x1b\x05\xd0\x0a\x92\xe8\x39\xfa\x52\x87\xf0\xf2\x56\xfc\xd2\x54\x9a\x97\x6a\xcf\x43\x61\x42\x82\x51\xb9\xa5\xa4\x97\x5e\x67\x56\xa0\x1a\x7e\x82\x03\xcd\x5e\x91\xc6\xa1\x50\xdc\x4a\xfe\x15\x01\x1b\x5f\x6b\x7a\x1f\x93\x76\x38\xbd\xc0\x7b\x56\xc5\x01\x17\xab\xd8\x94\x2c\xd9\xab\x48\x26\xd1\x58\xe6\xac\x81\xe7\x75\x86\x6f\x8e\x04\xda\xd1\xb1\x52\x8c\x86\xf3\xab\x37\x27\x53\x47\x03\xbb\xce\x95\x42\x67\x8e\xcb\x29\x14\xf1\xdb\x72\xbf\xe3\x28\xbf\x4f\xde\x34\x1c\xe5\x3f\x6d\xa9\x03\x7b\xfb\x84\xdc\x4f\xc7\xf9\x55\x4e\x1a\x2a\x02\x97\x75\x9f\xee\x9d\xa9\xc6\x80\x43\xf3\x4d\xb3\x6e\x36\xa8\xdd\x15\x99\xed\x67\x14\x17\xdc\x2d\x85\x65\x3d\x0b\x9e\x6d\x51\x83\x69\x38\x6a\xec\x4b\xf4\x50\x08\x8d\x2f\x69\x9d\xaa\x7e\xb2\xb3\x7c\x74\x81\xd3\x29\x8a\x88\xd7\xc9\xb4\x6a\xb6\x51\xf7\x47\xe5\x93\x3b\x56\x99\x05\xa6\x48\x5b\xfa\x54\xdb\x63\x0a\xb7\x4d\x65\xd7\x96\x96\x9a\xc5\x88\x27\x12\x11\xf0\x9b\x4a\x73\xe6\x4d\x95\x19\x8d\x4c\xda\xb7\xbb\x3c\xb6\x0a\x24\xa4\xb0\x3e\x67\x31\x52\xac\x8a\xd8\xf2\xcc\x3b\xf7\x5a\x55\xe0\x99\x23\x2e\xbe\x46\xbb\x8b\x53\x3b\x88\x8d\x30\x81\xaf\xb5\x3c\x3e\x74\x14\x99\x7e\x81\xfe\x65\xc9\x84\x9f\x41\x01\xc9\x39\x15\xae\xdd\xf1\x0c\x3d\x8e\x38\x18\x35\x65\x73\x1b\x77\x3d\x9c\x93\x33\xe9\xaa\x1f\xe9\x9f\xd5\x88\x3f\xf7\x4c\x18\x79\x36\xee\x5a\x68\xd5\x56\x73\x7f\xf0\xf9\xa6\x59\x4b\xc2\xae\xb2\x67\x37\x2a\xd8\x78\x9f\xb0\xfd\xa9\x6b\xb8\x2d\xe3\x97\x2c\xb3\x43\x91\x6e\x93\x33\xb8\xfc\x5b\x29\x41\xd7\x6c\xf5\x7e\x68\xe2\x5c\x68\x48\x80\x62\xfc\x18\x67\x3e\xdf\xd4\x51\x37\x46\xd6\x64\x92\x32\x80\x81\xb8\x53\x61\x60\x57\xbd\x56\x17\x1c\xe8\x61\x94\x5a\xd6\x2e\x6b\xf8\xf8\x16\x3b\x9e\xaf\xa7\x4a\x46\xfb\x9f\x3f\x50\x1a\x89\x74\xc3\x45\xe3\xd8\xfe\xaf\xd3\xbe\x70\xd8\xaf\xa5\x25\x47\x5f\xe9\x0b\x3d\x3d\x13\x45\x4c\xec\x89\xec\xc9\x51\x95\xd7\x65\xb6\x58\x91\xcb\xa9\xd0\x5a\x84\xf9\x0e\x8c\x86\x13\xb5\x75\xf5\xf2\x7b\x30\xe1\x92\xf2\xd1\x53\xa2\x88\xec\x78\xab\x61\xf1\xbe\xda\xf2\x42\x19\xc3\x8d\x34\x34\x5d\x84\x6d\x75\xc4\x67\x3e\x1f\x38\x4c\x82\xd4\xe4\xd9\x2e\x3c\x08\xdc\xad\xcf\xd1\x1e\x74\x15\x67\xef\x97\x32\x25\x81\x68\x49\x95\x13\x8e\xd2\x20\xbb\x40\x42\x3e\xa8\x18\x42\xd8\x49\xa5\xf9\xfa\xfa\xd3\x13\x1f\x5a\xf7\x92\x32\xe8\xe1\xfe\x12\x24\x44\x8f\xc3\x51\x76\xc2\xfb\xae\x21\xe8\x38\x59\x46\xa1\x45\x96\x69\x1e\x9a\x30\xce\x89\x32\x80\x5c\x0e\x35\x24\xe2\x78\xfe\x40\xf3\x1d\x7d\xab\xe5\x8b\x89\xd7\x74\x5d\x73\x7b\x5b\x31\xee\x52\x7f\x7b\xd0\x50\xd8\x47\xc6\x04\x08\xbd\xdd\xd3\xaa\x51\x6d\x58\x86\x44\x39\x48\x9b\xb1\x88\xaf\xa9\xb6\xf6\x6b\xaa\x9b\x3c\x4f\x8a\x60\x30\x4b\x96\xdf\xa1\x3c\x3c\x25\x1f\x19\x03\x47\xcf\x57\x8e\xb7\xc8\x60\xa8\xd6\x8f\xf2\x1b\x1a\x8a\xb0\xfc\x8e\xd2\x4c\xbb\xa3\xab\x99\xb9\x35\x51\xd6\x50\x9c\x2f\x2d\x8f\x19\x3f\xaf\xd3\x01\x83\x75\x93\x82\xfa\x1d\xa7\x15\x73\x79\x3b\x0e\x2b\xd7\x7e\xb6\xbd\xed\xdf\xda\xae\x25\x51\xe1\x52\x17\xd8\xef\x7f\x88\x7d\xcc\x37\x5a\x5b\x31\x32\x84\x78\x2b\xcd\x84\x62\x9d\x12\xc2\x85\xfb\x35\x3d\x8b\x2b\xa5\xe7\x1a\xe6\x49\xaa\x60\x8c\x90\x6e\xe4\xeb\x3a\xac\x04\xc8\xf6\xa5\xdc\xcb\x1d\xa7\x30\xe6\xd2\x7e\x5a\x53\xdb\x19\x16\x99\xd3\x4a\x63\x80\x77\xcb\xc3\xc9\xb4\xf4\x7d\x16\xc6\x7d\x33\x4a\x52\xbb\xab\xc2\x35\x38\xc5\x48\xe8\xae\xf7\x2d\x57\xd5\xcc\xe5\x3f\x34\xad\x9e\x92\x3b\xe6\x3a\xbb\x90\x46\xee\xd5\x5a\xdb\xeb\x36\xcd\x66\xcb\x68\x03\x8e\xde\x65\xec\x41\xdc\xa0\xb7\x8e\xaf\x69\x15\xf1\x1f\x4d\xf5\xa7\x7f\x81\x24\x17\x69\x78\x70\x80\x9f\x52\x25\xd6\x53\xd5\x48\xce\x76\x9f\xa1\x84\x33\x4a\xa0\xec\x19\x72\x9e\xae\xa5\x82\xc1\xb3\x18\x61\x96\x29\xd2\x6a\x04\x77\xc6\x9e\x02\x85\x41\x14\xa2\x54\x5c\xfe\x2a\x8e\x77\xb0\xa4\x39\x69\xf7\x85\x45\xed\x66\xbd\x28\xbf\x4e\xe3\x8a\x4a\xda\x5f\x69\x28\xcb\x5d\xcd\xf4\xb7\xbd\x4d\xf3\x22\xb9\x44\x1a\x21\x14\xca\xef\xb6\x3c\x63\xfb\x29\xc5\xa6\x7b\x4f\x1d\xc0\x97\x15\x70\x35\x0b\xa3\xb5\xd2\x31\x5e\x11\x6a\xd6\xd3\x2a\xe2\x3e\xad\xb2\x78\x45\x1c\x76\x6d\x8c\xfa\x1c\x15\x56\x41\x82\xc0\xd5\x3e\x29\x52\x7a\x67\x16\xd6\x5d\x1c\x10\x6f\x19\xc2\xa1\xe9\x5b\xd5\xbb\x02\x16\x23\xbe\x9e\x48\x7e\x22\x28\x72\x2e\xa5\x0a\xce\x4a\x85\x71\x77\x75\x65\x64\xec\x52\xf2\xbf\x38\xd7\x9e\xd6\x1e\xda\xdf\xcc\x92\x24\xb6\xe9\x4c\xf9\xc8\x42\x02\xe9\x91\x74\x0f\xe1\x9d\x62\x59\x7c\xec\xca\x61\xa9\xed\xca\xe6\x82\x45\xe0\x4e\x4b\xbe\x51\xa4\x5e\x29\xa3\x39\x45\x4e\x54\xe7\xf7\xeb\x82\x29\x93\xf1\xd1\x89\x43\xe5\x1e\x7c\x5d\x01\x99\x34\x96\xbd\xd9\xaf\x21\x85\xed\x15\x69\x9a\xac\xb3\xc3\x83\x95\xc0\xd1\x14\xdf\xa8\xee\x9d\xb8\x30\x71\x60\x33\xed\xb1\x68\xee\xf0\x2b\x75\x68\xda\x4e\xb2\xee\x45\x91\x9d\x56\x88\xb3\x10\x67\xd4\x89\xdb\xb1\x79\x6e\xd3\x5d\x95\xce\x37\x95\x62\xb8\xa8\xc9\x17\x66\xc8\xf1\xc6\xda\xfb\x10\x27\xa7\x93\x6a\x74\x52\xb8\xb3\x54\x5b\xc1\x26\xc0\x04\x23\x87\x79\xdd\x69\x0f\x67\x36\x2f\x46\xba\xf3\xb9\xe5\x91\x1d\x17\xf4\x19\x7c\x5c\x75\x92\x95\xe1\x9c\x10\xf8\xbe\xb8\x79\xb5\x3c\xc3\x37\xa7\x95\x53\xa9\x75\xdc\x74\xad\x90\xc8\x63\x39\xb3\x33\xc9\x37\x08\xe7\x38\xb1\x1c\x0c\x62\x91\x9e\x8c\x36\x1a\x3e\x17\x7b\x5e\x63\x62\xcf\xd7\x91\xd9\xe6\xa1\xf8\x77\xb0\xef\xe8\xf2\x93\x32\x2e\x8d\xa7\x90\xa8\x68\x23\xb5\x1a\x0e\x1b\xa5\x91\xf2\xd4\xb1\x5a\x8c\x6d\xcd\xa6\x59\x98\x73\x31\x46\x14\xe5\xbd\xb9\xf5\xf0\x9b\x6e\xd2\xed\x57\xda\xea\x3e\x18\x2b\x38\xcf\x07\x4a\x0b\x28\x2d\x3a\x36\x42\xfe\x13\xd1\xd0\x31\xad\x49\x78\xac\x66\x79\xee\x07\x52\x24\xc5\xfa\x86\xcd\x83\xf7\x2a\x94\x49\xe5\x97\x09\x1b\xb4\x54\xce\xf3\xb4\xfc\x54\x97\x82\x7e\x85\xad\x91\x86\xb4\xb9\x89\x87\xd1\xfd\x6f\xe8\x9b\x75\x2c\xe0\xfb\x84\xa9\xfd\x87\xde\x15\x16\x51\x50\x64\x9f\x5c\x53\xfd\xaf\xbc\xe0\x1a\xdc\x54\xc7\x9e\x09\xd9\x71\x70\x78\x33\x25\xa7\xf8\x29\x25\x04\xd0\xb5\x69\x18\xac\x36\x54\x92\xb4\xa5\x92\xa7\x35\xd5\xbf\x2f\x95\x26\xa4\x08\x04\xca\x80\x42\x3c\xf4\x3e\xf9\x5a\x09\x4e\x15\x71\x16\xa4\xc5\xa8\x88\x92\x02\x8f\x83\x98\xf1\x81\x8a\x25\xa7\x19\xf2\x97\x96\x9a\x2f\x99\xf8\x39\xd0\x21\xa1\x0c\x36\xa7\x8a\xf0\x40\x01\x49\x97\x22\x0d\xa8\xd0\x6c\xf9\xf4\xc5\x3f\xfa\x7b\xff\xe8\xef\x35\xb4\x36\x2b\xac\x9c\x08\xb5\x8a\x95\x0b\xe3\x38\xab\x40\xc4\xb7\xb5\x15\x44\x7c\xdb\x44\x16\x57\x84\x08\x4e\x17\xf7\x5a\x1e\xdb\xf5\x4a\x4d\x08\x17\x98\xd8\x74\x43\xc3\x36\x14\x41\xce\x79\xc5\x8f\x71\xde\x6d\xfe\x7e\x14\xc6\x79\x43\x89\x3a\xa0\x2e\x23\x22\x8f\x35\x9c\x89\xc4\xd2\x02\x77\x1b\xab\x04\xaa\xd5\xb0\x36\x0d\x68\xf9\x8a\x48\x4e\x69\x86\x84\xf8\xc2\xb7\x86\xc5\x61\x14\x19\x0c\xb0\x8c\x9d\x87\xa6\xc2\x30\xf2\x29\xd2\xf2\x51\xeb\xff\xab\x69\x0e\x22\x1b\x87\x79\xd1\xe5\x6a\x79\x2d\x47\xc6\x27\x95\x20\x4c\x2f\x32\x79\x72\x24\x44\xf0\x8f\x45\x73\x15\xf3\xc3\x37\x0a\xcb\x1f\x24\xa3\x8d\x34\xec\x0f\xc8\xd0\x95\x63\xa4\xe9\xf4\xa5\xdc\x5e\xb3\x63\x0f\x34\x53\x29\xe2\x8a\x8b\xf5\x63\x3a\xff\xf9\x5a\xd5\x60\x83\x24\x0e\x04\x06\x26\x42\x02\xbe\x53\xee\x4c\xc5\x21\x37\x7d\x79\x0e\x1c\xd2\xcc\x96\xc1\x37\x63\x0f\x78\x5a\xb5\x31\xf5\xa0\x48\xff\xa5\xd2\x38\xab\x93\xa5\x59\x0b\x3b\xa9\xf1\x05\x3a\xb7\xbb\xfd\x4e\xaf\x3a\x76\x7d\xc3\x01\xa7\x62\x98\x5b\xf4\x74\x09\xa5\xcf\xe7\xe8\xe6\xca\x39\xe1\xff\xc1\x11\xe5\xe8\xe3\xd4\xfc\xd7\xb8\x99\xb9\xb5\x50\xfe\x84\x6f\xf2\x1b\x63\x9f\xbd\xbc\xdc\xf2\xb4\x0d\xd3\x4d\x32\xce\x8d\x27\xb0\xff\x8c\x4e\x10\x5f\x52\xe7\xdf\x45\x2d\x8b\xf3\xa8\xf5\x8c\xd2\x88\xef\xda\x74\x3d\x0d\x59\x45\x42\x89\xe8\x1c\x70\x21\xa5\x3f\xaf\x47\x45\x9a\x15\xb4\x1d\x24\x5f\x0b\xa2\x5f\x64\xd9\x40\x22\xc2\xff\xae\xb1\xca\xb7\x55\x99\xa5\x17\xc6\x33\x8a\x64\xeb\xa8\x56\x1b\xb8\xa2\xbc\xbd\xbb\x2a\x47\xd4\xdd\x88\xcd\x30\x0c\x54\xe2\xf5\x38\x90\x1e\x7c\x33\x55\x46\x3b\x7c\xb8\xd9\x29\xc2\xa8\xeb\x26\x19\x88\x99\xab\xf4\xfd\x7c\xad\xbf\x3f\x89\x22\x93\x66\xe4\xbf\x3a\x1a\xb8\x95\x79\xb9\x76\x81\x7f\x69\x8c\x49\x24\x86\xc7\x59\x24\x0b\xe9\x7d\x2a\x64\x42\x22\xb4\x55\xa3\x3f\xd4\x4b\xad\xed\x26\xc3\x2d\x2c\xed\x5e\x90\xeb\xc4\x58\x81\xa0\x34\x7a\xfa\x78\x1d\x75\x34\x1e\x49\x02\x4b\x41\x35\xf8\xa9\x7c\xa3\x8e\x60\x65\x98\x64\x79\x83\x32\xa2\xae\x14\xb8\x32\xef\x6e\xd4\xf1\x3d\x34\xe9\x2a\xc3\x42\x58\x63\x05\x8b\x5f\x6a\xdf\x3e\x39\x74\x56\x37\x3e\xde\x51\x34\xc0\xbd\xc8\xf4\x75\x9b\x1c\x0c\xb3\x9c\x7f\x4e\xd9\x6c\x60\x56\x25\x07\x27\xca\xce\xe5\xaf\x0a\x3b\x50\x1d\xe9\x64\xbe\x1e\x06\x9c\xc7\x16\x82\xaa\x72\xd2\xf8\xba\xb5\x95\x41\x7d\x69\xa9\x99\xf4\x98\x54\x10\x55\xa7\x2b\x63\x4f\xa2\x79\x45\x4b\xf6\xd8\x9c\x99\xc3\x74\x1b\x0c\x3d\xb7\xb4\xc4\xf8\xf7\xeb\xd2\x91\xbe\xbc\xec\x09\xf0\xcb\x19\x13\x02\xfc\xad\x3b\xfd\xef\x36\xd3\x30\x48\x68\xae\x18\x12\x3f\xae\xe0\xe3\x7d\xe6\x62\x98\xc4\xf9\xe0\x29\x5a\xbc\x88\xe3\xae\x52\x21\xcd\xb1\x4b\x96\x9f\x82\x17\xf4\x63\x3a\xe1\x31\x3f\x77\x14\x04\xee\xa8\x02\x33\x71\xdc\x87\xc8\x03\x01\x16\x9c\x3a\x2e\x30\x01\x45\x8a\x16\x06\x58\xfa\x73\xe3\x99\x17\x56\x5c\x23\xc1\xd8\xeb\x74\x7c\x1b\x1e\x1c\x7f\x02\x89\x09\x58\x2a\x04\x7d\xa8\x45\x4e\xf7\x4d\x52\x45\x2f\x59\x8f\xc1\x86\xea\x5c\x18\x80\x96\xf9\xba\xae\x51\x8e\xa8\xa8\xf2\x01\x84\x34\x35\x8a\xd3\x17\x2d\xce\xe9\xc6\x89\x6e\x42\x8a\x12\x80\xf9\xb0\xde\x14\xc2\x1b\x11\x9f\x52\x99\x0b\x4d\xd0\x75\x61\xca\x8c\xac\xcc\x37\xb3\x64\x68\x3b\x49\x97\xab\x63\x48\x8b\xc0\x69\xe0\x6b\x27\x5b\x1f\x0c\xcc\xa8\x6b\x89\x8d\x93\x1e\x13\xee\xc2\x51\xdd\xfc\x74\x54\x75\xe9\x76\xac\xed\xcd\xe9\x60\x85\x46\xd5\x25\xd1\x9d\x87\xfa\xa0\xa5\xd2\x4b\xdf\xc7\x6c\xf1\x5f\x29\x2c\x86\x79\x19\x4c\xc8\x42\x50\xa3\x78\xc9\x1b\x13\x6f\x95\xe7\xda\xde\x5f\x0c\xe3\xdc\xa6\x41\x32\x1c\x99\x98\x85\xac\x04\x63\x4c\xbf\x21\x70\x46\x5f\x1b\xcd\x8a\x4e\x92\x76\xc3\x58\x14\x87\x90\x12\x38\xa5\x88\x3d\x4f\xd5\x85\x2a\xfd\x24\xea\xd2\xb3\x21\x37\xbc\xa9\x68\x2f\xf9\x28\x15\x23\xf8\xa4\x62\x5e\xcb\x83\x01\x32\xca\x5c\x63\x18\xab\x2d\xd3\x52\x0e\xaa\x73\xed\xd2\x22\x8e\x11\x43\x31\x9a\x8b\xfe\x4a\x90\x5d\x5e\xa2\x38\xb6\x45\x4a\x41\x57\x86\x24\x9e\x64\x58\xe8\xa5\xb5\x06\xad\xe8\xe2\x55\x31\xb1\x92\xe8\x46\x19\xe4\x3e\x3d\x16\xdc\xc7\x9d\x6d\x1f\x98\xdc\xac\xe3\x8d\x88\xc2\xc0\xc6\x02\xf5\x61\x39\x4b\x5d\x57\x7e\x5f\xa5\x00\x4d\x98\x8e\x92\x34\x07\x8b\x19\x2b\x80\xd3\x1e\xc4\x82\x87\x5a\x2f\x8c\xcc\x5d\xd5\x16\x4c\x65\x09\xf1\x9a\xb8\x61\x4e\x71\xd6\x5d\x56\xfb\x64\x94\xda\x8c\x44\x2e\x3c\xbd\xee\xeb\x0a\x94\xfc\x7a\x0d\xf2\xee\xc5\x66\x64\x8d\x3f\x53\x45\xaa\xc2\x1f\x3c\xd3\xdc\x4f\x87\xe6\x9b\xdd\xa2\x9c\x4b\x1c\x98\x8c\x53\x18\xfb\x3a\x3e\xef\x40\xe4\x94\x6f\x4f\x19\x8d\xc5\x83\xcd\xd8\xf6\x4d\xee\x69\xd0\x38\xeb\xdf\xf2\x90\x9a\xe9\x3e\xc6\x85\x85\xe6\xc0\x9a\x35\xa7\xf2\x87\xb5\x7c\x5e\xb1\xb6\xe9\x8c\x6e\x37\x34\x23\xae\xea\x32\x87\x9e\x12\x42\x3f\xaf\xb9\x66\x47\x36\xee\xee\xd2\x60\x28\x85\x30\xbf\xd4\x52\xfc\xe9\x60\xe1\x77\x7c\x61\xfb\x96\x9d\x32\xa3\xaa\x36\xbe\x85\x9d\x8d\xa4\xd5\x59\x32\xe2\x22\xe6\x38\xed\x20\x0e\xc2\xd4\xce\x78\x5c\x18\x0c\x32\x0a\x54\xb7\x15\xf5\xce\xf9\xa9\xb1\x28\xa7\xcd\x9a\xcc\x8d\x05\x53\x88\x03\xa2\x21\x7c\xe2\x4f\xeb\x9e\xee\x9c\x5c\xc9\x59\x9d\xc2\x68\x29\x1e\x58\x58\x3f\x97\xdb\x28\x37\x30\xff\x87\x76\x14\x4d\x1a\xe6\x1b\xb3\x1e\xd0\x78\x15\xcd\x18\x2e\x89\xbb\x22\xa8\xc7\x39\x02\xd0\x0a\x61\xe5\x56\xf7\x76\xff\xca\xfe\x66\x6a\x47\xd6\xe4\xb6\xcb\x5d\x20\x4c\xdc\xa7\x5b\xc0\xeb\xe0\x23\x8b\x4d\x33\x32\x69\xde\xf0\x29\xd5\x47\x74\xd2\xf0\x75\x6d\x3e\x5c\x20\xa9\x0a\x52\xf5\x48\x43\xaa\x1e\x29\xa1\x8c\x34\x29\xf2\x30\xb6\xd1\xc6\x8e\x29\xb6\x53\xe0\x09\xce\x61\x41\xe8\xa4\x00\xff\x07\x16\x01\x26\xec\xc3\x96\x82\xca\x7e\x58\xf3\x54\x07\xbc\x27\x5b\x8e\x3b\x57\xad\x91\x43\x96\x12\xb6\xc6\xfb\x99\x51\xb6\x53\xb5\xca\x9f\x40\x75\xc8\xc9\x3f\xbb\xf3\xf3\x58\xcb\xcb\xad\x9f\xc5\x43\x38\xb1\x57\x4f\xd9\x7a\x46\xb5\x27\x3e\xac\x69\x6c\xe9\x25\x49\x3e\x08\xa3\x88\x37\x27\x02\x1c\x6e\x5b\xe5\x1b\x45\x90\x46\xa2\x52\x9d\x30\x1b\x84\x3b\x95\x3e\xcb\xa9\x96\x56\xe4\x3f\xa6\x9a\xe8\x6f\x60\x79\x89\x22\x57\x39\x7d\x4a\xb6\xcb\xe7\xff\x14\x8d\xc1\x15\x65\x44\x47\x69\x12\x50\x27\xa8\xd2\x46\xf3\xb1\xe1\x6b\x5e\xcb\xd7\xe4\x89\x92\x2e\x3b\xaf\xe5\x67\x1e\xb5\x74\xbd\x41\x19\xe8\x3c\xb7\xc3\x51\xbe\x43\x31\x6d\x9d\xa6\xd1\xd5\xf2\xc6\x8e\xee\xdf\x67\xf3\x3e\x44\xc0\xc8\x9f\xa0\x57\x62\x66\x5a\xb5\x09\x47\x45\x1a\x0c\x50\xc2\x2d\x9f\xc4\x09\xf6\xf8\xfa\x22\x7d\x3d\xb2\x1b\x3f\x75\x69\xab\xcc\x14\x36\x5d\x4d\x4d\x91\xcf\x78\xbd\xd0\x8f\x14\xbb\xde\xcd\x8a\xa5\xf0\x52\x82\x2c\x24\x22\x51\x04\x7e\xe3\xff\xa7\xdf\xe0\xeb\xa9\x83\xbd\xdc\x60\x29\x73\x20\xc1\x78\x03\xc5\xc3\xd7\x53\x66\xe8\xef\x36\x93\x11\x34\x6e\x66\xbc\x36\xf9\x65\x30\x03\x09\x94\xda\x3b\x06\xf7\x6a\x71\xdf\x03\x33\x1a\x85\x6c\x05\xdc\x30\x2b\xea\xe0\x8a\x66\x85\xcd\x9e\xa1\x95\x8f\xea\x2a\xf8\x43\x58\x9f\x0b\x8b\x07\x9b\xf1\x77\x61\x08\x85\x24\x84\x66\x0a\xc5\x6a\xf4\x01\xc1\x9e\x6f\x92\xef\x2d\x98\xc3\x32\x1e\x17\xb9\xc5\xf2\x65\xe0\xbf\xfc\xd5\x58\xb5\xed\xdc\x26\xdf\x9b\x35\xf7\xe1\x7b\x33\xfd\x3b\xac\x82\x74\x81\x93\x49\x46\x57\x01\x13\x18\xc2\x51\xbb\x3b\xf6\x56\xf1\x1f\x8f\x2b\x5e\x00\x36\x0b\xb6\xfe\xe9\xb1\x97\x63\x7f\x55\x45\x30\x41\x12\xf7\x6c\x6a\xe3\xc0\xce\x29\xd6\x81\xab\x8a\x2c\x8f\x2d\xb7\xc4\x29\x3e\x07\x73\x41\x13\x44\x9f\xae\xe9\xd9\x69\x26\x3d\x38\xae\xa2\x00\x5d\x3e\x29\x1e\x61\x66\xe2\x19\x9a\x2f\xd0\x81\x86\x4d\xf9\x78\xdb\xb7\xd7\xfe\xe6\xd4\x57\xfe\x72\x73\x3d\x8c\x20\xcd\x86\x39\x61\x00\x14\xdf\x4c\x01\xa0\x16\x0f\x36\x3b\x45\x6a\x4d\x41\xe7\xa1\x74\x1c\x7a\xc0\xcd\x39\xad\xac\xf6\xbf\xd7\x91\x9f\x09\x66\x01\x7e\x0c\x2b\x86\x28\x8f\xe2\xee\xd4\x33\xbe\xb0\xff\x73\xcd\xe4\x08\x8c\x1c\x22\x1f\x94\x59\xf8\xba\xf5\x99\x6a\xc3\x17\x25\xc5\x96\x96\x0e\x20\x3a\x55\x8c\xc9\xee\x46\xd5\xa8\x89\x73\x90\xb8\x01\x70\x1c\x83\xb1\x8a\xb1\x03\x2d\x0f\x85\xba\xab\x70\xe1\x9c\xdd\x16\x80\x81\x0f\x2b\x5e\x4a\x3a\x59\xc3\x23\x2e\xb0\x88\xf9\x7a\x6a\x28\x96\x97\x9b\x76\xd8\x49\x8d\xcb\x30\x23\x88\xe4\x02\x02\xdf\x68\xfd\xad\xc2\x46\x84\x1a\x80\x2d\xe3\xaa\x11\x20\xdb\xbf\xdb\x52\x14\xd2\xe0\x06\x42\xc2\x9e\x51\xbd\xfc\x1f\x53\xe0\x24\x3a\xa9\xa3\x88\x6a\xb5\xa8\x65\xdc\x01\x48\x15\xc0\x9a\x6b\x8a\xa2\x1c\xd5\x47\xa9\x10\x6f\xfd\xa2\xc3\x87\x9b\x71\x12\x5b\x45\xee\x71\x52\x33\x4e\x9f\xac\x2b\x85\x51\x3a\x32\xe4\xae\x4c\xc6\x8d\xa9\xee\xa5\x3f\x75\xd1\x45\x2f\x0a\x47\xd9\x8c\xa7\x2e\xe3\x03\x48\xaa\xad\x34\x0e\xd2\x2c\xe2\x03\x06\x13\xad\x93\x0b\xe2\xb4\xee\x6e\x2a\x59\xab\x9b\x6a\x09\xac\x99\x0c\xd9\x0f\x47\x05\x86\x41\x93\xee\x5d\x0f\xee\x8c\x4c\x9e\xac\x67\xab\x21\xe2\x51\x61\x05\xac\xe8\xaf\x4d\x77\xd2\xbe\xd8\x34\xbd\x5e\x18\x85\x5e\xb8\x1c\x7b\x77\x66\xe2\xf7\xf1\x4c\xfb\x93\x04\xf4\x06\x26\xce\x18\x3d\xc6\xcd\xef\xd8\x60\xd2\x09\x5f\x53\x06\xb3\x26\x8d\xdd\xfe\x02\x02\x09\x47\x16\x5f\x4f\xc9\xdb\x1d\x9a\x6f\xc6\x09\xad\x01\x98\xaa\xb3\x3a\x23\x06\x77\x51\x14\xfb\x1b\x5f\xfd\xb2\x93\xb1\x91\x93\x2f\x32\x99\x4d\xb3\x20\x19\x21\xf4\x86\xa9\x65\x3b\xc0\x37\x8e\x4e\x3d\x4a\xe2\x7e\x6e\xd3\x61\xc3\xbb\xe8\x27\x54\xe3\xf3\x09\x55\xd6\xa6\x23\xcb\x36\xbc\xec\x0a\x60\x6f\x02\x8e\x78\x46\x2a\x1b\xc3\x51\x9a\xac\x09\x95\x8f\x77\x9b\xdf\xd5\x95\xbf\x77\x55\xbe\x31\xb0\x21\x35\x30\x35\x96\xbd\x74\x88\x0a\x76\x5f\xd5\xa4\x34\x53\xf9\xbb\x85\xc5\xa6\x49\x87\xa8\x4c\x21\xfd\xcf\x6a\x77\x7c\xe3\x99\x3f\x8a\x4e\x16\x76\xc3\x97\x39\x47\xe6\xba\xab\x1c\xb3\xdb\xa5\x4a\x93\x5d\x9c\x74\x55\x5e\x0a\x94\xe4\x7c\xed\x3c\x8c\x22\xb6\x6b\x36\xce\x7b\x45\xf4\x37\x26\x4c\x5c\x5e\x46\x4f\x7f\x98\x01\x57\xe6\xec\xda\x3e\xaf\x1e\xec\x91\x1b\x83\x24\xea\xda\x34\xdb\xa9\x36\xe4\x6b\xf4\xf5\x70\x15\xff\x5c\x11\xa5\x7d\xa0\x28\xfb\x2f\x62\x07\xc0\xcb\x99\x8c\x95\xde\x1a\x43\x2f\x04\xfb\xef\xab\x2a\xa0\x10\x10\xb5\x02\xd1\x03\xa3\xdf\x15\xd5\x30\xf1\x0f\xcd\x73\xc3\xe7\x66\xfd\x0f\xcf\x11\x71\x04\x37\x67\xb7\x7c\x63\xfa\xe3\x6d\xd5\x41\x73\xb5\x96\x39\x72\x90\x8c\x46\x6e\x5f\x20\x6a\xfa\x3d\x95\x40\xff\x3d\x57\x61\xcd\x46\x61\xca\x65\x12\xe4\x33\x67\xda\xbe\xb4\x39\xa3\x00\x61\xf6\x88\x09\xf2\x68\x63\xb6\x92\x39\x55\xa8\x77\x26\x86\x75\x02\xb7\x2f\xec\x77\x9a\xb6\xb2\x7c\x93\x35\x9b\x56\xb3\xe5\xf0\xfd\x4f\x28\x41\xbb\x13\x75\x14\x58\x9d\x22\x58\x75\x9f\x71\x54\xdd\xcb\x7e\xdb\x6a\x95\xf7\x60\xd5\x30\xb4\xd4\xf9\xbe\xfb\x5c\x34\xde\x52\x5a\xd8\x9c\xac\x93\xf2\x80\x4f\xaa\x9c\xd6\xc8\x03\x76\xd5\xf8\x06\x60\x19\x09\xed\x9d\x4e\xbb\xd0\x59\xcc\xd2\x13\xd2\xe4\x7d\xf3\xe9\xb6\x9f\xc9\x07\x63\xef\x46\x7f\x47\xb7\x3c\xed\x98\xf8\xda\x7f\x90\x14\x69\x68\xd3\xac\xa1\x2b\xec\x5e\xac\x79\xba\x45\x71\xdf\x72\xb3\x6f\x86\x1d\xdf\xa2\x88\x1f\x38\xad\xc8\x6e\x51\xc4\xc6\xb1\x3e\x51\xbd\x7a\x61\x1c\x24\xe9\x28\x49\x89\xcf\xd5\x37\xc6\x5c\x51\x1f\x9d\xd6\x12\x5d\x58\x50\x70\x54\x97\x3c\x77\x74\xe3\xe7\xd4\x4b\xfe\x9e\x56\xb1\x19\xd8\xcc\xee\x29\x4d\xae\x13\x24\x2f\xc7\x1d\x80\xba\x7b\x55\xfa\x66\x65\xc7\xaf\xa9\xd6\xa9\xa7\x54\x23\xec\xab\xba\xe1\xe5\x68\x4b\x31\xee\x80\x68\x18\x1e\xef\x6c\x5b\xf1\x08\x10\xca\x68\x53\x9a\xa2\x45\x2b\xaa\xa1\x68\x08\x6a\xd2\x49\x14\xd5\xcf\x78\x45\xf7\x13\x8a\x07\x07\xbc\xfc\x70\xfc\xce\xd5\x62\x0b\xbe\x5e\x98\x8d\xc8\xce\x78\xca\x26\xa4\xc7\x44\xfb\x41\x65\xd5\x6f\xbb\xfd\x51\x6d\xa0\x5c\x5a\xf2\x02\x7d\x5e\xac\xaf\xa6\x40\x41\x8c\x06\xdd\x0d\xf4\x84\x20\x7f\x80\xa9\x80\xbf\xc4\xca\x73\x18\xaf\xb7\xeb\xea\x7a\x07\x9a\xc3\x24\x26\x21\x28\x18\x7b\xc7\x87\xb3\x32\xef\x38\xa3\x3f\x49\x7b\x20\x48\x86\x43\x9b\x06\x21\xcb\x98\x63\x33\x41\xc1\x19\xbb\x64\x53\x17\x04\x8f\xa9\x86\xcc\x34\x09\x56\x39\x47\xc9\xac\x6a\x2d\x5f\x34\x7b\x77\xec\x99\x90\xbe\xf2\xb5\x86\xee\x6a\xbe\xa0\x59\x02\x2f\x28\xa7\xb1\x9b\xac\xc7\x4f\x96\xf3\x05\x87\x0e\xaa\x78\x95\x5e\x2c\x4d\x4a\x05\x17\x78\x0f\x99\x58\x6c\xb0\x37\x74\x63\xe6\x2d\x0a\xbe\xb0\x6f\xce\xc3\x50\x48\xb4\x4a\x46\x1f\xc7\xc1\x4d\x60\xf1\x45\x03\xb5\x8c\xdd\x70\x34\x30\xe2\xd6\x91\x69\x2c\x1e\xe4\x95\xbc\x9d\x22\x14\x6c\xc8\xa7\x95\x60\x78\xd7\xa4\x52\xaf\x64\xe0\x3b\x0e\x17\x69\xe6\xf3\x49\xc3\xdb\x2d\x5f\x48\x07\x82\x85\x90\x53\x44\x69\x81\x1a\x0c\xd2\xab\x88\x7c\x7f\xac\xac\xfe\xbb\x63\xa5\xd9\x7f\xd4\xf9\x29\xd9\x28\x0d\xe3\xd5\x88\x4f\x6f\x0e\x6d\x34\x7a\xe6\xdc\x74\xb6\xec\xf9\x03\xcd\x5e\xf9\xbb\x83\x30\xb3\x80\x99\x4b\x82\xcc\x83\xe0\x2f\xb4\x7c\xb3\x4c\x98\x65\x04\xf0\x52\x07\x4d\x63\xa2\x68\x24\x1b\x6d\x4f\xdc\x37\xda\x18\x0e\xa9\xcc\x8e\xbc\xce\xbd\x96\xe7\xf7\xbc\x57\x2b\xe2\x55\x9e\x76\x8a\x9b\xe2\xb7\xc7\x8a\xc1\xf6\xb7\x6b\x03\xfc\x30\x8a\x6c\x9f\xa1\xa5\xce\xe1\xf2\xce\x57\xad\xe5\x1b\x16\x2c\x0c\x04\xc7\xf1\xd7\x70\x84\x0b\xd9\xad\x77\x11\xce\x4e\xe5\xd6\x4a\xbf\xb8\x6b\x83\xc8\xa4\xe2\x15\xb3\x3c\x04\xe6\x43\xb4\x22\xa6\x53\x72\xcd\x20\x0d\x87\x61\x6c\x22\xf6\xf6\x44\x1f\x4b\x35\x9c\x9c\x76\x91\x03\x31\x32\x3d\x56\x3e\xa0\xa0\xe8\x7d\x7f\x1a\x67\x02\x61\x58\xaf\x78\x20\xc4\xcf\x7c\x8e\x76\x2a\xd6\xef\x4e\xf0\x10\x31\xab\x1c\xac\xac\x74\x80\xd0\xbb\x4a\x6e\xd2\x73\x69\xf2\xbe\x82\x61\xfe\x7f\x1c\x16\x65\x68\xba\x61\xc6\xb2\xe6\xb5\x82\x70\x35\xb2\x18\xa9\xe1\x16\x4f\xf1\xa9\x95\x7f\x5d\x17\x5a\xdb\x23\x61\x96\x53\x0f\x81\xce\x34\xba\x4a\xdd\x31\xd5\xbc\x9a\xda\x2c\xdf\x22\xb1\xe2\xd9\x0a\x98\xd0\x59\xc8\xfc\x15\x6f\x53\x92\x26\xb1\x15\x71\x16\xc1\xed\xc1\x12\xc1\xb2\x3e\xa8\xe2\x8f\xa6\x97\xe6\x81\x66\x64\x56\x79\x5f\x55\x84\x7a\xf8\xa6\xe5\x33\x63\x91\xed\x87\x79\x38\x34\xb9\x25\x3b\x0a\x80\x39\x92\xef\x52\x7c\x55\x5c\x83\x17\xa6\x24\xae\x17\x0f\x36\x3b\xa9\x09\xcb\x1d\x19\x71\x59\xa6\x4e\x13\xba\x46\x75\x22\x88\x92\xcc\x92\xd7\x29\x39\x06\xfa\xb4\x63\xa8\x75\x67\xcf\x9e\xb6\x77\x41\xf7\x28\x72\x94\xb4\x88\xec\xae\xd2\xee\x22\xae\xb9\xa6\xf4\xa4\x39\x79\xee\x56\x51\x69\xd1\x60\xe0\xef\x02\xc9\xca\x37\x3a\x2d\x44\xcb\x96\xbf\x4a\x73\xab\x5f\xf1\x32\x58\x61\x30\xa0\x29\x5d\x5a\x92\x43\x01\x32\x5d\xc0\xc5\xc2\x71\x40\x54\x73\x77\x7a\x2b\x2f\x36\xf3\x24\x37\xd1\x8c\xb2\xe9\x57\x94\xf3\xb7\x87\xbe\x09\x4e\xf7\xdc\xc4\x01\x32\x3c\xa9\xac\x6b\x89\x45\xc3\x2a\x5f\x4f\xc4\x9a\x9a\x4e\x9c\xa4\xc3\xf2\x38\x3c\x34\xcf\x1b\xee\x2d\x5e\x35\xb0\xfa\x68\xd9\x12\x2e\x80\x69\x5b\x41\x0d\x3c\xfd\xd4\x8a\xad\x90\x7e\x71\x9f\xad\xbe\xa4\x95\xfa\xc5\x8d\xdb\xa5\xc0\x66\x1f\x6a\x61\xab\xbd\x13\xfc\x3a\x1c\x36\x64\xe0\xd0\xd1\x76\x5b\x91\xc9\x6f\x27\x95\x29\x1c\x5e\x57\x5b\xbe\x63\xe2\x1e\xa6\x40\x4e\x35\xc7\x1d\x15\x5b\x44\x59\xa2\x3a\x43\x3f\xc8\x37\x8a\x66\xd1\x1e\xc9\x6d\x1a\x26\x29\x10\x73\xa2\xc9\x5c\x3e\x82\x50\xd1\x3b\xb8\x6c\x14\x0e\xe1\x2f\xc1\x1a\xa1\xb5\x47\x86\xa9\xe1\xf8\xff\x2f\xd5\xb2\xd9\x95\x8f\x43\xfb\xc3\x21\xdf\x1c\xd6\xf6\x8a\x2a\x5b\x76\x93\x20\x4f\x52\x96\x76\x97\xfe\x5e\xfa\x1c\x5e\xf6\x5b\x2d\x05\x12\x3a\xd1\x52\x08\x9b\x6f\x8d\x9f\xf0\x59\xf3\x5f\xfc\x85\x86\xaa\x53\x5d\xd5\xb5\x29\x02\xba\xba\x18\xb3\xc8\x2c\x89\x8e\x94\x63\x2b\x2e\x6e\xf9\x5a\x22\x5d\xa2\x5a\x31\x42\xdb\x8f\xb8\x84\x20\xa5\x5d\xe5\x24\xde\xd4\x80\x0d\x6b\x62\x24\xde\xb1\xc6\x1f\x2a\xea\x9b\x2b\x1a\x31\xa0\xca\xf6\xff\xe0\x8b\x2b\xb3\xca\x54\x63\x91\x63\x7d\xdc\xa1\x8f\xc0\x1d\x7a\x95\x70\xfe\x38\xbe\x3f\xae\xe5\x04\x0e\x6c\x9c\x97\x31\x8a\x16\x8b\xb8\x8c\x81\x12\x7e\x3c\x55\xf0\xb4\x59\xd8\x8f\xe7\x3c\xe0\x8d\x13\x58\x22\x65\xdf\x70\xe4\xa0\xd7\x95\xb6\xe7\x1b\xd5\x3e\x02\xc5\x92\x36\xec\xd8\x74\x87\x5f\x16\x7b\xdb\xaa\x12\x8a\xac\x3e\xf2\x58\xac\xc9\x50\x69\xf1\x40\xc9\x85\x51\x30\x30\xd9\x7f\xa5\xce\x88\x97\x8a\x68\x83\xbe\x1a\xa9\x70\x56\x93\x64\x02\xc5\x96\xe2\xc4\xb9\xae\xdb\xad\x4f\xe3\x87\xf8\x06\x09\x6d\xfe\x82\x3a\xc3\xd3\x4f\xcd\x90\x0b\x58\x4e\xe0\xd5\x49\xf6\x68\x72\xc2\x5e\x52\xc4\xdd\x27\x54\x33\x0b\x03\x2d\x24\xf3\x56\x5a\x5b\xd7\x9c\xe4\x34\x6a\xd8\xd3\x77\x14\x90\x2b\xf3\x07\x9c\x98\x3d\xd9\x4a\xbe\x69\x79\xb0\xd1\x31\xad\x44\x7d\xbf\xe5\xc9\x7e\xcf\xb7\x7c\x5d\xe0\x0f\xc6\x2a\x53\xff\xa6\x73\x38\x56\xad\x1d\x65\x04\xd9\x52\x91\xb2\x68\xec\x3f\xd6\xf6\x14\x6b\xdc\x14\x87\x3c\xc9\x1d\x2d\xd2\x6f\x22\xd6\xf0\xe4\x5a\x01\x5e\x40\x0a\x07\x1a\x1c\x19\x87\x88\x53\x55\x87\xf3\x7e\xd7\xe1\xac\x0a\x4c\xc1\x60\x98\x24\x2f\x4b\x11\x13\x7b\xf2\x3b\xb4\x41\xf8\xba\x06\x39\x72\xa0\x19\x27\xcf\x91\x13\x8b\x2a\x05\x6a\x6a\x7c\x5d\x97\x5e\xe9\xd9\x60\x35\xb2\x59\xa6\x1a\xdf\xaf\xab\xc6\xf7\xeb\x5e\x96\x66\x94\xe4\xb9\x30\x6c\x88\x8e\xa5\xb2\xea\x3a\x1e\x1a\x26\x5d\x1b\x65\x73\x8a\x7e\x94\xc5\x2d\x38\x20\x51\xb0\xb0\x3b\xaa\x5b\xf0\x94\x2a\xe0\xec\x68\x6b\x39\x14\x6a\xce\xdc\xa1\x9a\xa5\xb7\x4d\x14\x87\xd0\x36\x04\xc8\x30\x21\xbc\x2f\xf9\x86\xbc\x0e\x24\x99\x1b\x14\x1f\xf1\x75\x7b\xaa\x03\x74\xa1\x99\xdb\x58\xa6\x06\x8b\x08\x20\x01\xbe\x76\x4d\xa9\x59\x30\x48\x22\x93\x66\x83\x10\x2d\x11\xcc\xb0\xa1\x5a\x36\x99\x65\x40\x54\xe5\xe5\xe0\x05\x9b\xa3\x24\x7f\x36\x49\x97\x76\xf3\xaa\xda\xb8\x99\x35\x39\x2d\x42\x21\x2b\xf0\x6d\x56\xf7\xc7\xbe\x2f\x0b\xe7\x9e\x70\x18\x78\x00\x10\xc1\xae\x49\x2b\x10\x29\xf6\x93\x58\x59\x78\xa6\x77\x68\x52\x91\xdd\xd8\x86\xaa\x99\x2a\x5d\x4b\x4f\xcf\x64\xec\xe1\xd4\x67\xc6\x75\x05\x9a\xfd\xcf\x1f\x98\xf3\x09\x29\xf6\xe4\x24\x87\x58\xfe\x04\x50\x5b\x67\xc9\xb3\xe6\x7f\xd7\x79\x91\x2b\xaa\x7b\xa2\x9f\x86\xb1\x5d\xcb\x56\x11\xaa\x4b\xe6\x52\x15\xee\x5e\x53\x6b\xca\x0e\x07\x80\x26\xcc\x3b\xfe\x0b\x32\x2a\x7c\xa3\xce\x9f\xdc\xc6\x59\x98\xc4\x80\x6e\xa0\x20\x73\x4c\x75\x07\x4d\x37\x50\x2c\x1e\x6c\xa6\xa6\x08\xa8\x07\xc0\x45\x9b\x00\x37\x4b\xcd\xd5\x2f\xc6\xa8\xe8\x74\x92\x60\xb5\xa1\xfa\xeb\xce\xa8\x7a\xf7\x99\xda\xa3\xa6\x5c\x2c\x23\xf1\x82\xe0\xf7\x72\x9d\x9e\x6f\x1c\xa8\x93\xb4\xd6\xd2\x2a\xd0\xb5\x7c\x28\x38\x8e\xd0\xce\xc3\xbf\xcf\x42\x06\x1e\x71\xfd\xe9\x4a\x21\x37\x29\x50\x94\xc6\xce\xbc\xa3\xfc\xad\x3b\x15\x5c\xf9\x70\x48\x82\xe2\xca\xdf\xc1\x62\x70\x90\x23\x97\xce\x7e\xa8\x33\x2f\xaf\x4c\x19\x9e\x95\x79\xa2\x36\x9f\xf5\xad\x5e\x77\x60\x1b\x98\x06\x98\x5e\x41\x44\xc0\xca\x2d\x89\x98\x6b\x30\xe5\xfb\x2f\x2c\x70\x65\x20\xcc\x64\xb8\xb0\xc7\x59\x19\x98\x6f\xea\x32\xab\x50\x67\xe2\xf0\x52\x10\xc9\x5a\xa5\xda\xe5\xa6\xed\x5a\x88\x78\x19\xce\x11\xbc\x7c\xbe\x9e\x3a\xeb\x96\x96\x9a\x69\x32\x1c\x55\x90\x54\x47\x55\xdd\xf3\x68\x65\xe4\x03\xdb\xfd\x19\x5a\x96\xf0\x5e\x77\xb5\xe1\x5c\xc0\xd6\x7d\x80\x41\x04\x72\xf2\x3d\x0c\x35\xce\xb1\x4d\x1a\x20\xcc\xc1\xb3\x93\x72\xab\xe3\xfa\x38\xb1\xfe\x88\x22\x6e\xe3\x57\x0f\xb0\x29\x3f\xab\xfa\x26\x98\x80\x17\x23\x7d\x9f\xbc\x1e\x8c\xf4\x35\x6c\x4e\xd9\xcd\xe5\x23\x13\xd3\xc2\xb7\x9f\x41\xd2\x1d\xa7\xe3\x1e\x74\x94\x60\xa1\x9f\x6e\x55\x01\xac\x4e\xd1\x84\x5b\x33\x61\xa7\x67\x27\x4a\xd8\xfd\x96\xd6\x8b\x67\xac\x16\xec\xd4\x55\xaf\x22\xf4\x3f\x3e\xdb\xa6\x23\x9c\x1f\x52\xc1\x5b\xec\x70\x34\x30\x19\xc9\xd3\xd0\xf7\x60\x39\x43\x0c\x87\xaf\xa7\x8a\xd9\xa4\x4a\x30\x08\xfb\x10\x9e\xe1\xa6\xc7\x96\x6e\x80\xac\xd1\x4c\x36\x23\x0e\x9c\x45\xd0\xa6\xfc\x7b\x10\xb4\xdd\x53\x5d\xb4\x27\x14\x5e\x25\x32\x71\x57\xd0\x7e\xf0\xed\x8e\x8f\x7d\x02\xfe\x78\xeb\x31\xc9\x99\x87\xfd\xb9\x0a\xbd\x80\xe7\x79\xf8\x36\xc7\x4b\x30\x0e\xcc\x06\x8f\x4a\x30\xf6\x35\xea\x9a\x4f\x4f\x9d\x47\x87\xe6\x9b\xa6\x17\x25\x06\x69\x5b\x7c\x31\x34\x56\x90\xaa\x7d\x40\x4b\x50\x52\x22\xcf\xa8\x50\x7f\x38\xb2\x79\x98\x27\xe9\x8c\x92\x30\x78\xa8\xa4\x34\xb7\x6b\xd1\xc7\x0f\x5c\xe5\x35\xb5\x2f\x81\x34\xd1\xfb\x9e\xdb\x27\x0a\xb5\x3c\x0b\xe5\x1b\xce\x2f\xba\xa2\x4b\x40\x72\x26\xe8\x46\xc4\x53\x3e\x40\x29\xba\x72\xba\xd0\xbc\x2f\x7e\xba\xad\x72\x2f\xef\x8c\x3d\x9e\xf9\xd3\x50\x62\xc4\xd9\x0c\xcc\x26\xef\x0b\x05\x5b\x9d\x2e\x93\x49\xe2\x36\xeb\xd9\x19\x2d\x5e\x72\x45\x65\xef\x4f\xeb\x82\xe6\x83\x9a\x0c\xda\x97\x9a\x9f\x5d\xdc\xf7\xa5\x7d\x07\x0f\x20\x8a\x86\x07\x7e\x56\x61\x45\x2f\xd2\x96\x82\xcb\x75\xdf\x65\x1a\x93\x20\x28\x46\x8e\x30\x17\x50\x18\xb4\xe5\xf0\xb5\xea\x08\xe8\x85\xfd\x22\xb5\xbb\xcb\x89\x44\x02\xfd\x4d\xc5\x21\xf7\x2d\x80\xfc\x44\x96\xbb\xb1\xaf\xf4\x09\x54\x8a\xeb\x86\xc2\x35\xcf\x51\xda\x82\x4f\xf7\x2d\xf8\x33\xdf\x16\x76\x51\x9d\x56\xd9\xba\x2f\x44\xe3\xd8\x60\x7f\x93\x6f\x34\x73\x0d\xa5\xde\x67\x2b\x29\x22\x05\x50\xab\xe8\x52\x23\xb3\xc1\xd7\x3a\x89\x9b\xe7\xa9\x21\xba\xc1\xac\xd1\x58\x58\xe0\x2c\x06\x17\x95\xf9\x46\xf5\x9c\x8f\x4c\x46\xbc\x3a\x9e\x91\x11\x98\x14\x41\xfa\x4c\x1f\xa5\x07\x9a\x36\xce\x3c\xf5\x88\x2b\x65\xf9\x7e\xe5\x69\x5c\xe3\xf2\x72\x73\x3d\xec\xda\x98\x3f\x83\x19\x66\x37\x91\x6f\xea\x14\xb0\x06\x36\x1a\xcd\x78\x41\xd9\x87\x4a\x2e\x86\xc1\x36\xf2\x83\x1e\x43\x64\x8f\xd8\xe1\x88\x5f\xdf\x35\x34\xf2\xe4\xf0\x4d\x5d\xde\xea\xa5\x64\xe0\xfa\xfc\xe4\x54\x51\x94\x77\x47\xeb\x3e\x33\x8a\x4c\xcc\x09\x3d\x91\xaf\x57\x95\x73\xe4\x43\x04\xf8\x57\x43\x45\x9e\x45\xac\x21\x8f\x53\x00\xde\x0e\x5f\x6b\x36\x89\xf5\x30\x46\x3e\x5e\x84\x2e\xe9\x47\x30\x95\xe0\x3e\x57\xfc\x42\x2f\xca\x7f\x28\x58\x3a\xe9\x81\xcf\xfa\xce\xb6\xd3\xad\x4a\xfa\xd4\xb3\x0a\x9c\xc6\x71\x25\x49\x56\xd9\x68\x61\x0c\xd9\x28\x98\x33\x27\x52\xec\x8c\xd4\x6c\x5b\x55\x02\x6e\x4e\x1d\xdf\xfb\x96\x51\xd2\x6c\xa8\x50\xf7\x72\xab\x5c\x9b\x12\xb9\xab\x7d\x1a\x25\x69\x98\x60\x47\x3b\x06\xdf\xf2\xcb\x85\xc1\xb7\xa6\x4e\x6f\x82\x20\x49\xbb\xf2\x78\xb0\x8e\xb7\x2a\x34\x18\xf4\x0d\x52\x99\xad\x31\xf3\xa9\xf1\xbe\x8e\x42\xaa\x2e\xba\x62\x5b\x4d\x87\x65\x6e\x62\x91\x1a\x72\x9c\x38\x2e\x78\xbd\xa2\xd0\x18\x83\x64\xdd\x46\x11\xaa\xcd\x38\xf8\xe0\xac\xf2\x75\x5d\x44\x98\xac\xd9\x74\x60\x4d\x57\xf5\xe0\x7f\x48\x2f\xc4\xd7\x75\x20\xa2\xd5\xb0\xcb\x8f\x53\xe7\x11\x7b\x97\x33\x4f\x4d\x9c\x85\x48\xb7\x39\xa8\xfd\x3e\x0f\xb5\xf7\x95\x56\xea\x60\x21\x93\x29\x02\x83\x3e\xa0\x6f\x4c\x54\xdf\xc7\x19\xe0\x21\xdd\x09\xb9\xcf\x93\x4b\xa1\x6f\x89\xff\x47\x71\x26\xfe\x44\x77\x84\x9c\xa1\x77\x43\x60\xba\xa3\x5d\xe3\x8f\xae\x85\x76\xdd\x52\xb8\x47\x71\x35\x8e\xdc\x1f\x8d\xfd\xf1\xfb\xa3\x29\x6f\xf4\x57\x5e\x68\x66\xb9\x49\xbb\x09\x04\x64\x58\x1d\x40\xe9\x7c\x5d\x70\xb9\xc2\x20\x09\xe3\xac\xd2\x5d\xab\xb8\xb5\xcf\xab\x83\xbd\x6b\x23\x02\xf5\x33\xde\x14\x87\xcc\x0f\x14\xd1\xd3\x0f\x7c\xff\x6c\x18\x45\xa6\x2f\x67\xa2\x63\x14\x76\x22\x7d\xef\xc0\xb8\x30\x5e\xb8\xb5\x55\x67\xb8\x5c\xd5\x45\x3e\x48\xd2\xf0\x65\xcf\x95\x8e\x4a\xd1\x49\xa5\xc1\x34\xad\xbd\xbe\x7f\x65\x7f\x33\x48\x40\xd8\xff\xa2\xa3\x2f\xa2\xb9\xe2\x1b\x97\x70\x31\x9d\x22\xb3\x73\xe5\x80\xb8\xa8\xc0\xf5\xda\x3e\xc1\x4e\x73\x85\x61\xd8\xb5\xd5\xba\x88\xfc\xb2\x22\xb0\x33\x45\x37\xb4\x71\x60\x77\x93\x97\x89\xe0\x91\x5d\x0f\x56\x19\x82\xff\x2a\xe4\x1a\x8d\x2d\x0a\x51\x88\x10\xae\x22\xb5\x84\x2c\x32\xbb\x31\xc0\xd0\x5c\x22\x3b\x25\xa4\x29\xb4\x9b\xf8\x3f\xea\x91\x63\xc3\x4e\xb8\x66\x22\x1b\xb3\x04\x36\xac\xe2\x07\x63\x9f\xd8\xff\x40\xc7\xed\x36\x0c\x06\x33\x5e\x96\x09\x6e\x04\x72\x86\x17\x35\x55\xf5\x3d\xd5\x42\x17\xa6\x49\x0c\x9b\x83\xb7\xbd\xd1\xf2\x14\x6b\x5c\xaa\x60\xf6\xb8\x89\x4f\x9d\xfe\xfc\xaf\x66\x73\x18\x5b\x4e\x80\x61\x6c\x29\xd6\xd8\xff\x74\xdb\xf7\xe3\xc3\x83\x12\x23\xa1\xaa\xde\xb3\x93\xad\xdd\x66\x54\xbf\x1a\x19\x0a\xb9\x4d\xba\x81\x17\x96\x1e\x09\x5f\x9d\xbe\xa4\xda\x94\x4d\x6c\xa2\x84\x1b\x1c\xeb\x48\xf2\xb6\x1a\xc9\xe7\xb8\xc9\x60\x03\x2e\x9a\xcb\xef\x4a\x40\xf3\x3f\xb0\x4a\x8b\x34\xc4\x3e\xe5\x6a\x77\x69\x3f\x8c\xb9\x36\x5a\x97\xa5\x9c\xa6\xc3\x3c\xd0\x8c\x92\x35\xab\x36\x3a\x8b\xc9\xf0\x8d\xaf\xdb\x98\xe1\x88\x52\xd7\x4e\x68\x65\x0f\xfc\x63\x44\x14\x97\x14\xc9\xdd\x8e\x49\x1d\x18\xd7\xc4\x31\x23\x06\x14\xf5\xa5\x6c\xe5\x13\xee\x77\x46\x36\x0e\x42\xe9\x14\x60\x02\x87\x56\x43\x91\x39\x3c\xe6\x46\xf5\xe7\x1f\xc7\xd4\x62\x14\x1b\x94\x29\x10\xcd\x61\xfa\x6e\x55\xbe\x94\x76\xe7\x07\x63\x4d\x60\x39\x56\x95\x8d\xa7\xda\x9a\x9d\xf4\x12\xd2\xa6\xf0\x04\x3f\xa2\x30\x44\xea\x8f\xbe\x01\xfb\x0f\x54\x9d\xf3\xde\x34\xc5\xda\x42\x33\x18\x24\x04\x0d\x3c\x34\xef\x54\x10\x1a\x4e\xbf\xf6\xbc\xca\x19\x0f\x4d\x8a\x56\x36\x49\x7c\x7f\xb7\xa5\x9a\xab\x2f\x69\xad\xf3\xb3\x75\xf4\x83\xeb\x49\x82\xe3\x0b\x51\xc4\xfb\xb4\x37\xf8\x5a\x39\xc7\x81\x49\xbb\xa1\x09\x1a\x7e\x6f\x7f\x97\x5e\x4d\x7e\xd3\x7b\x06\x91\x01\xc7\x9b\x92\x8a\xf1\x6a\xad\xc7\x7c\x50\xd0\xeb\x11\x3c\x6e\x87\xe2\x75\xbb\xef\x31\xcf\x7f\xfc\x9f\x63\x8d\x20\xe6\x63\x7a\x25\x69\xff\xf0\xe1\xeb\x2c\xa4\x8b\x59\x7c\x4d\xe1\x94\x87\x45\x96\x3f\x49\xd9\x05\x9c\x97\x14\xc9\x7d\xc9\xeb\xa1\x1d\x12\x99\xfc\x73\xaa\x1a\xc6\x12\x39\xe2\x0a\x36\x5c\x63\x0b\xeb\xcd\x09\xe4\xad\x3c\x6a\x61\x71\x4f\xb6\x54\xe4\x88\xd2\x3b\x2c\x01\x2a\x93\xb0\xfe\xff\x7e\xac\xf2\xdb\xdf\xa2\x61\x83\x3f\x76\x43\xa7\xe1\xa7\xd1\x48\xa5\x0b\x9f\x9a\x78\x15\x75\x2b\x05\x21\x7c\x91\xe3\xcc\x93\x18\x16\x11\x06\xf4\xa7\xd6\xad\xfa\xee\xd8\x30\x23\xf1\xb2\x19\xcf\x62\x79\x43\xa1\xe8\x2f\x28\xae\x88\x6d\x6d\x2f\x85\x94\x39\x79\x00\xde\xb0\x8a\x86\xf9\x32\x5e\x8d\x85\xf8\xea\x0a\xf6\xb9\x49\xfb\x36\xaf\xaa\x9f\x9d\x1c\x6b\x98\x93\x0f\xab\x06\x21\xe9\x09\x96\x8f\x84\xa3\xee\x23\x15\x3b\x7d\xa4\x9a\xfc\xd3\x94\x79\x97\x10\x99\xdf\x18\xfb\x34\xeb\xee\xb6\x46\x08\x56\x28\x45\x7c\xfb\x18\x38\xb0\x75\x0b\xda\x55\x46\x89\x21\x8e\x3d\xaa\x5b\xee\x8f\xc3\x62\x0a\x3c\xad\xc6\x42\x65\x79\x6a\xb9\x30\xaa\xe5\x91\xa5\x09\x75\xeb\x5c\x2c\x2c\xd0\x54\x44\x49\x56\x55\x78\x7d\x73\xac\x14\x5e\xdf\x74\x76\x2d\x8c\xb3\x51\x28\x8c\xaa\x8c\x42\x51\xbd\x30\xbf\xa6\x9a\x4f\x53\x4b\xc0\xac\xb8\x74\xb2\x1b\xae\x3d\xf5\xac\xea\x62\x99\xe0\x44\x16\x7f\xc1\x9f\xac\x43\xe2\x24\x56\x9e\xb1\xe2\xc4\xb9\xa2\xaa\xa0\x43\x43\x3d\x1f\x8b\xae\xda\xa8\x88\x76\x19\x31\xc5\x10\xbf\xb1\x2f\xa7\xcc\x20\x71\x26\x25\x2a\x5f\xc7\xb6\x47\x6c\x50\xe4\xe1\x9a\xdd\x4d\x8f\x85\x24\xf8\x2b\x5a\x49\xe2\x49\xd8\x01\xc4\xe0\xa7\x69\xb9\x62\xa2\x81\xac\x43\xea\x08\x92\x17\x4a\x50\xec\x45\xb6\x28\xac\x2e\xcc\x37\xda\x18\xde\x9c\xf2\x44\x4b\x63\x98\x86\x9e\xb8\x43\xca\x7b\xde\x9f\x3f\x5d\xa7\x47\x31\x74\x8a\x7b\x8e\x90\xd2\x93\x53\x2a\x6a\x32\x1b\xe7\xa9\x1d\xa5\x36\xb6\x05\xa8\x8d\xa4\x6c\x5e\xc9\x29\xd7\x40\x64\xfa\x49\xd4\xc3\x13\xb9\xe4\xa6\xcb\x72\x5c\x69\xf9\xb2\xda\x4b\xe6\xe5\x97\x29\xfc\x44\xee\xfe\xcf\x69\xac\xa4\x18\x5a\xfe\x20\x22\xe4\x4d\x05\xa1\x3d\xa3\xfc\xc2\x6c\xd5\x8e\xf2\x30\xf8\x9b\x73\x4f\xf8\xf2\x5b\x60\xa2\xa0\x88\x0c\xf6\xae\x87\x6a\x97\x7b\x57\x20\xdc\x7e\x93\xf7\x92\xb8\x2b\x64\x2e\x78\x8a\x0b\xea\x89\x2e\xd4\xb5\x68\x7e\xae\x99\xda\xdc\x84\x1e\xf1\x0a\x5b\x78\x43\x41\xfe\xdf\x6a\x79\xfc\xf2\xf4\x81\xba\xbc\xdc\x5c\xb3\x69\x5f\xb6\x1b\xac\x3d\x57\x15\xf8\xa6\x52\x94\x47\x23\xb6\x2f\x2f\xdd\x51\xa5\xc4\xcb\x74\x78\x30\x0e\xb5\x06\x41\xfa\x22\x55\xea\x1b\x8a\x12\x9a\xa1\x35\x72\x7a\x78\x33\x96\xac\x9b\x19\x4f\x38\x09\x47\x08\x05\xc2\xf3\x9a\xa3\xf9\x81\x82\x27\xa5\x36\xb3\xe9\x9a\xcd\x76\x28\xa9\xc4\x6b\x2a\x0c\x82\x62\x3f\xff\x3b\x76\x02\xbe\xf1\x38\xbe\x91\x6f\xc8\x47\x17\x7e\xde\x3a\x24\x79\x6e\xd3\xc4\x05\xaa\x48\x2e\x03\xa8\xc9\xd7\x2a\x6e\x26\x44\x60\x36\xe7\x63\x83\x4d\xca\x02\x0a\x91\xaf\x6a\x31\xfc\x90\x8d\xac\x53\x17\x59\x5a\xe2\xe1\xbf\xa3\xbd\xb8\x98\xbc\x45\xe7\x92\x5c\x54\x0a\xc2\xaf\x8d\x95\xfa\xe4\x56\x19\xac\x43\xf3\xcd\x43\xf3\xfb\x1b\x8d\x2f\x7e\x8d\xa7\x0d\x8a\x81\x7c\x5d\xc3\x57\xbd\xbf\x39\x2a\x3a\x91\x92\x7f\x66\x06\x0a\x2c\x0c\xa1\xa3\xd0\x35\x8b\x3c\xb7\x3b\x1b\xae\x4b\xea\x0f\x91\xe7\xc3\xcb\x9d\x56\x8a\xcc\x17\x54\x27\xd1\x2d\x6a\xd5\x63\x9d\x01\x6c\x27\x6c\x0a\x6e\xab\x80\x5b\x70\xbb\xae\xcd\x65\x68\x8f\x84\x81\x41\x10\xcb\x02\xf9\xf8\x8c\xa8\xe5\x3f\x1b\x2a\xef\x2c\x59\x33\x19\x49\xbf\x37\x7c\xd7\x0d\xb6\x16\x5f\xab\x0e\xd0\x88\xfa\x2c\x06\x26\x9a\xf5\xf8\xc7\x87\x38\x1a\xe0\x62\xde\x54\x34\x2a\xb7\xd5\xfa\xd2\xba\x57\xbd\xde\xc6\x8c\xb7\x37\xe8\xba\x17\x1a\x27\x8f\x91\x7a\xbb\xae\x31\x8a\x75\x49\x54\x51\xb8\x01\x3b\xef\x62\x2a\xe7\x3e\xde\xaa\x00\x02\x8a\xc8\x3e\xae\x58\x39\x39\x9d\x89\x12\xd9\x3f\x69\xa9\xee\x82\x2b\x34\xec\x78\xb4\x7b\x64\x0a\x05\x98\xec\x7f\xf3\x0a\xea\x31\x0e\x31\xb7\xb4\xb4\x79\x75\xec\x39\xb3\x77\xb7\x95\x5b\x0d\xaa\x32\x1c\xa2\x8d\xa9\x5e\xa6\xaf\x2c\x12\xdf\x45\x14\x85\x7d\x72\x7e\x0f\xb9\x3f\x9d\xf8\xb3\x77\xba\x92\xbe\xbc\x4c\x10\x59\xf1\xaf\xb4\x23\xa7\x6a\x02\x8b\x1c\x8e\x5c\x55\xa8\xe7\x4e\x64\xd7\xa9\xdc\xe1\xd4\xf5\x14\x6f\x68\xf9\x0a\x08\x67\xee\x29\xc7\xbc\x5f\x84\x51\xbe\x31\xab\x70\x28\x90\xdb\x47\xa0\xcf\xb8\x5c\x06\x6c\x2b\xc2\xdc\xd9\xf6\x63\x2e\x11\xd1\x21\xfb\x8e\x10\xe6\xac\x66\x14\x3f\x5b\xd9\x25\x51\xba\x01\x7a\x3d\x21\xe3\x6f\x38\xae\x34\xb0\x58\xa0\xce\xd6\x98\x8a\xf6\x56\xe6\x9b\xbd\x30\x1d\xca\x76\xe4\x33\x08\x21\xba\x1c\x48\x5b\x53\x30\xa4\xd8\x54\x74\x4a\xc7\x27\xcc\x73\x6b\x1b\x4a\xe6\xf2\x8a\xc2\x25\xd7\x22\x6d\x53\x1b\x6c\x04\x91\xe0\x46\xe0\xac\xfc\x10\xcb\x88\x6f\xd4\x7a\x8f\xfb\xf6\x71\x0d\x49\xe7\xce\x43\x38\x90\x0f\x11\x94\x22\xab\xc0\x4a\x4d\xb8\xd9\x4b\xc9\x02\xee\x71\xa7\x11\xc7\x82\x9b\x6d\xfb\xa2\xd6\x87\x9e\x03\xed\x67\x7f\x0e\xcb\x0e\x13\xb8\x7d\xa2\x9a\xcf\x9f\x9a\x28\x99\x94\x0b\x53\x16\xe3\x85\xfd\xcd\xae\xe9\x74\x58\x6a\x78\x3f\x3f\xd8\x69\xfd\x94\xa7\x15\x4e\x2d\xb6\xeb\x41\x32\x74\x6c\x92\x48\x15\x30\x1e\x83\x6f\x14\xa4\x4f\xa0\xdc\x33\x95\xb0\xac\x7c\x03\x84\x4b\x2c\x6f\x20\x16\xb4\xe6\x4c\xc9\xd3\xd0\xc4\xfd\xc8\x2a\xb5\x9a\x6f\xe8\xd4\xfd\x37\x94\x83\x1f\xf6\x63\x1e\x6a\xc7\x4a\xeb\x0e\xe0\xbb\xf8\x25\x64\x07\xcf\x8c\x15\x41\xd3\x35\x3c\x3c\x00\x97\x90\xf5\x81\xdd\xbd\xd5\xf2\x60\xb7\xdd\x6d\x1f\x92\x5f\xa3\xad\xc2\x5a\x2d\xd5\x18\x4f\x49\xad\x6d\x9b\x62\x6c\xdd\xff\xfc\x01\xe6\x16\x85\x4a\x12\x5c\xd5\x59\xa8\x24\xf1\xcd\xa4\x0e\xb3\xde\x4f\x52\xcb\xc5\x0b\x78\xae\xef\x68\xb2\xf0\x77\x2a\xbb\xa8\xdb\xdf\x50\xb4\x8f\xcc\x66\xc8\x37\x93\x9a\xf4\x7a\x10\xe6\xe1\xcb\x36\x66\x6d\xeb\x4a\x42\x4a\xd0\x84\xf8\x65\x61\x93\xf3\xbe\xa9\x59\x33\x61\x64\x3a\x61\xc4\xf4\x9c\x52\xa5\x7b\xa0\xaa\x74\x0f\x5a\x0a\x0a\xc9\xc8\x7b\x54\x21\x67\x95\x56\xf7\xec\xc4\xf3\xe6\x75\x62\xa4\x93\x1c\xe3\x70\xf9\x28\x9f\xa4\xe1\x41\xea\x11\xd6\x2a\x15\xf1\xf3\x68\xf2\x91\xae\x2b\x25\xcb\x68\x63\xbb\x43\xc5\xfd\xdf\x41\xc6\x45\x1a\x1c\x7c\xa1\xe5\x35\x2c\x7d\xa6\x31\x19\xab\x06\x62\xa8\x13\x62\xd4\xcf\xb9\x46\xcb\x20\x89\x73\x33\x24\x06\xa2\xae\x4e\xce\xf1\xda\xe6\x1b\x55\xf5\x46\x03\x67\x77\xc6\xb3\x3e\xdc\xc0\x81\xe4\xa8\x59\x56\xe6\x39\x53\xf1\xc3\x3a\xb0\xcb\x81\xa6\x09\xd2\xa4\x4a\xb6\xfb\x9e\x6a\x38\x42\x46\x01\x0e\xf7\x34\x68\x78\x61\xa1\xb4\x5f\x66\x84\xba\xa0\x6b\x1c\x7d\xb7\xa5\x42\xb2\x77\x55\xb0\x05\x2e\x3e\x1b\xe7\x33\x2a\x17\x72\x47\xa9\xfd\x6c\x6f\xfb\x3a\xc6\x69\xe5\xe1\xad\xdb\xb0\x3f\xc8\x67\xcb\xf3\xf1\x22\xba\x65\x70\x66\xbc\x4b\x44\xb5\x17\x75\xbe\xf8\x5d\xe5\xe9\x77\x8a\x6e\xdf\xe6\xd4\x9b\x80\x9c\x76\x03\x49\x18\x14\x65\x1f\x62\xbf\x21\xb4\x38\xad\xf4\x53\x95\x5c\xc8\x4f\x3e\xd5\x56\x79\xdb\xc7\x60\x55\x1d\x73\xf3\xca\x7c\x45\xb7\x41\xd4\x6d\x68\x02\xb8\x7a\xe1\x92\xe8\x51\x11\xf7\xb7\xe2\x52\x5c\x48\x74\xd4\x95\x03\x46\xa9\x1d\x86\xc5\x70\xae\xb1\xb0\x50\xa5\x02\x41\xb4\x75\x07\x5f\xae\x15\x6d\x69\x14\x97\x7f\x46\xa9\x9f\xcf\x4c\xa6\xfc\xd2\x17\x9b\x0b\x8b\xbb\xe9\x4d\xb0\x30\x1e\x54\x0a\xc4\xf4\x24\x22\x0a\xaa\xfa\x74\x8f\x11\xa2\x85\x55\xfd\xa8\xb5\xd2\x35\xe7\xfb\xb4\xd1\x9b\x0a\x79\x82\xca\x24\xf2\xbc\xd3\x2d\x63\x87\xe6\x9b\xdd\x24\x19\x72\x2a\x55\x3a\xff\x14\xcc\x4a\xf3\x8f\x74\x93\xa2\x1f\x99\x4c\x29\x65\x5f\xa9\x28\x41\xb6\x76\x4b\x76\xe2\x39\x55\xfc\x9a\x6d\x2b\x02\xea\xd9\x89\x56\xcd\x49\x37\x22\x13\x77\x67\x75\xe9\x8e\xe6\x59\x54\x73\xca\x90\x81\xaf\x2b\x25\xbd\xa9\xe8\x84\xe2\xc1\xcc\x06\x49\x8c\x17\x41\xd6\xf5\x81\xc2\xec\x3d\xa8\x6d\xcd\x4b\x93\x22\x17\x92\x27\xf8\x8b\x6f\xd3\x67\xf8\x5a\xa9\x16\x65\x45\x50\x3a\xa7\xbd\x22\x8a\x36\xe6\x94\x6e\x08\xc3\x90\x58\x76\x45\xb7\x4a\x5d\xaa\xe6\x86\xcb\x15\x0f\xd3\x74\x7b\x0a\xb5\x25\x40\x8c\x97\xc2\xe1\x10\xf6\xbd\xf6\x20\x50\x8a\x90\x61\x17\x56\x11\xff\x75\xaa\xa5\xfe\xee\xd4\xd6\x10\xe8\x57\x5e\x28\xdf\x75\x47\xe3\x57\x5e\xa8\xe8\xc8\x02\x3e\xf1\x3b\xf8\x28\x32\x07\x33\x5c\x39\x12\xef\x45\xeb\x84\x34\x14\x97\xeb\x13\x9e\x1a\x40\x94\x31\x36\x8f\xaa\x48\xf0\x76\x4b\x89\x74\x5f\x85\x75\xe0\x1b\xfa\x69\xfe\x2b\xda\x38\x9b\x47\x6b\x08\x88\x9a\x26\x0a\x6d\x69\x72\xb9\x42\x5f\x29\x9e\x3b\x21\x48\x27\xcf\xf6\xfb\x8a\x57\x26\x2f\xd2\xd8\xa4\x49\x11\x77\xe7\x68\x3f\x89\x08\x4e\xc3\x29\xfe\x9e\x53\x12\x31\xc0\x88\xc2\xc8\x9e\xa1\xe4\x2e\xf0\x97\xf7\x6b\x6b\xd5\xe9\xaa\x89\x33\x83\xae\x5c\x79\x0a\x1a\x3e\xe9\x08\xaf\x11\x53\x29\xb2\x22\xe3\x16\x10\x66\x29\xa4\x47\xc1\x4c\x20\x8a\xc2\xaa\xfe\x50\x85\x62\xa9\xed\x53\xee\x24\x63\xf2\x6f\x6a\x5a\xbd\xaa\xe8\x67\xfb\x49\xbe\x5b\xcf\xd5\x4d\x9a\x1f\xbc\xc7\x1d\x74\x36\x33\xf1\x0c\xe6\x97\xcd\x6b\xcb\x57\xc9\xee\x01\x37\x83\x6a\xc7\x6d\xc5\xce\x08\xbe\x22\x29\xf1\xa8\xe4\xdd\x03\xd5\x3d\x91\x86\x4e\x0e\xf5\x45\x27\x31\xe6\x9b\xda\xaf\xe1\xb8\x91\x4a\xd3\x56\x38\xd9\xc2\x62\xb3\x53\x6c\x68\x48\xc1\x9b\x4a\xc3\xe2\xcd\xba\x92\x44\x6c\x8f\xa0\x5a\xe4\x18\x91\x57\xe6\x1d\xb2\xaa\x7c\x60\xd8\xca\xdb\xbe\x9b\x7d\x68\x85\xe0\x1c\x8f\x01\xba\x72\xbe\x9e\x78\x88\x46\x14\x66\x79\x46\x84\x5a\x1a\xca\x81\xb0\x6b\x3f\x9c\x05\x59\x43\xb4\xaa\xa5\xae\xa0\x0e\xa1\x0b\xaa\x81\xf8\xa1\x02\xe8\xe2\xb0\xe3\x71\x12\xd5\xf5\xef\x29\x07\xf9\x1e\x96\x0f\x42\xea\x87\x35\x3a\x90\x99\x4d\x6d\x0c\x12\x36\x29\xde\xf8\x52\x01\x8a\x1e\x9f\xb4\x60\xbf\xd0\x0c\xe3\x6e\x18\x78\xbf\x05\x23\xc4\xa4\x8f\x7c\xa3\x90\x84\x24\xde\x4b\x14\x6a\xf8\x73\xa9\x7b\xd3\x9f\x8b\x94\xee\x93\x15\x2c\xb6\xe4\x05\x91\xa2\xbd\xab\x2b\x25\x77\xf0\x66\xc8\xd6\xfc\x81\xa2\x0c\x0f\x06\x26\x35\x41\x6e\x53\x22\x89\x28\x3f\xe0\x18\xca\x3c\x01\xcf\x39\xe5\x31\x8c\x6c\x32\x8a\xec\x7f\xa2\xec\x4f\x63\xe4\x48\xd3\x3b\x31\x9c\xcc\xaa\xe2\xd1\xec\x83\x7d\xcd\x48\x7f\xfd\xb5\x4a\x69\x05\xf7\x2e\x30\x3b\x6b\xad\xd7\xf0\x5a\x1f\x1c\x39\xc5\x9a\xe9\x21\xa1\xa9\xa6\x49\x0e\x29\x0d\x16\x30\xdf\x8c\x7c\xab\x32\xba\x22\x23\x72\x22\x22\xab\x58\xfd\x69\x61\x2c\x04\xc3\xd6\x07\x61\xd7\xb0\x16\xb2\x65\x48\xda\xb5\xb4\x86\xac\x95\x46\x33\xba\x2d\x45\xce\xad\xb9\xbb\xd9\xc7\xf4\xdd\x6c\xde\xf7\x7d\x1f\x45\x23\x9e\xdf\xf3\xbc\xef\x93\x15\xd1\x82\xfd\x2d\x82\xac\xcc\x8c\xe3\x3d\x9e\xe3\x77\x3c\x5a\xbd\x20\xb4\xd6\xde\xd2\xfb\xe1\x5b\x81\xd7\xe9\xb8\xa4\xe4\x5b\x67\xc6\x1a\x79\x52\xaa\x5a\xec\x07\x5a\xb9\xe2\x16\x16\x27\x4c\x22\xee\x28\x21\xc9\x82\xf8\x81\xf6\x02\x77\xf8\x8f\xb9\x7d\xce\x70\x46\x46\xdb\x0a\xc1\x74\xa6\x94\x07\x21\x2a\x59\x98\x5e\xcc\xdf\x41\x05\x8e\xf8\xad\x4e\x9f\x7d\x30\x9c\x56\x60\xf7\xb3\x6a\x99\x82\xbb\xb6\xd4\xb8\x55\xee\xf8\x70\x22\x23\x58\xb5\xf9\x26\xdf\x56\xda\xd4\xd1\x3e\x6e\xa5\xef\xcc\x6d\xf4\x3c\xec\x27\x9e\x44\xcc\x84\xb2\xcc\x9d\xb2\xf5\xf9\xcf\x72\x9c\x7c\xbf\xb6\x80\xed\x9f\x9d\xa7\xf2\x22\xc8\x6e\x5c\x87\x0c\x74\x4d\xd2\xaf\x09\x09\x29\x75\x6a\xe6\xe6\x09\x0d\x1e\x3c\xa1\xaa\xa9\x61\x94\x85\xa3\x08\x5f\x3a\xe1\x3e\xc4\x27\x4d\x9a\x8c\xa3\x64\xc5\xc6\x55\x72\x4a\x9f\x12\x34\xbc\xa7\x50\x5d\x52\x48\xa4\xcc\x9a\x38\x5e\xdd\x5c\x85\x4a\xe8\x5d\xfd\x5d\xb0\xbe\x39\x8f\x99\xfb\x80\x04\xf6\x45\xff\xa6\xfa\x62\xc9\x91\xaa\x37\xce\x9f\x2d\x95\x89\xfe\x79\x95\xfe\x92\xe9\x21\xa9\x34\x78\x71\x42\x8a\xdb\x44\xa8\x70\x9b\x67\x74\xd8\xc7\xaa\x8b\x61\xc8\x62\xa0\xed\x2c\xf0\x6a\xb1\xc4\xa2\x4c\x03\xb4\xf3\x34\x50\xc6\xc8\xaa\x4f\xd2\xab\xe4\x3f\xa2\xdf\x40\xc7\xe2\x26\xc6\xaf\xf8\x6a\xd1\x02\xc5\x27\x08\x27\x85\x76\xa3\x90\xe5\x88\x4b\xf8\x7b\x69\x34\x63\xfe\x1e\x77\x4c\x8b\xcc\x2e\xa4\xe1\x88\xed\xbc\xe6\x34\x0f\x5c\xa6\xd7\x9b\x74\x0d\xd8\xf6\xea\x4d\xca\x1d\x3b\xda\x3d\x9b\x0b\xc2\x4a\x4c\xfe\x74\x34\xef\xc5\x85\x7a\x76\xc1\x66\x19\x64\xe7\xf6\x72\x26\x08\xc4\x3d\xf6\xac\xf3\x9a\x26\x7b\xb4\x41\x6a\xb2\xbd\xd2\x37\x24\x1f\xa0\xc2\x48\x00\x44\xf9\xb8\x96\x64\xfd\x62\x15\xd2\xe3\x57\x5b\xaa\x55\x7b\x5c\xb9\xab\x1c\xaf\xcd\x84\xf9\xf9\x76\xfe\xc5\x91\x30\x93\x45\x72\xa0\xa5\xbc\x1f\xea\x72\x0a\x7b\xab\xec\x31\x8f\x7a\xd6\xfd\x92\x12\xae\x9e\x73\x16\x33\x0d\xe0\xc9\xd8\xac\x40\x9b\x5d\x9c\x61\x5b\x4a\x44\xbc\xe5\xf4\x5f\xcf\xaa\x07\x99\xd9\x2a\xf4\xe1\x76\x0b\x92\x82\x07\x4a\xbd\xeb\x81\xb2\x85\x28\xb2\x74\xd4\x8d\x6d\x6f\x33\x96\x6f\xa1\xa6\xd2\xb2\xca\xf5\x75\x45\xf6\x5d\x53\xc2\x1e\xc4\x1b\xfa\x82\x93\xce\xa4\x77\xc6\x27\x81\x52\x40\xbb\xd5\x20\xd9\x4f\x56\x96\x99\x30\xa0\xb8\x08\x1b\x28\x09\xb0\x3b\x0e\x78\x52\x3d\xe7\xc2\x16\x3c\x7e\xd8\x31\x35\xf0\xe0\xed\x13\x8d\x6d\xf1\x7e\x1a\xf7\xd0\x86\x14\x20\x4c\x35\xb7\x5d\xfc\xba\x7f\x96\x27\x16\x07\x27\xd8\x1a\xc0\x98\xc4\x8d\x5e\x76\x9c\xd6\xc4\x9a\xec\x11\x27\xa1\xfa\x2f\xff\x11\xaa\x6f\xc8\xe6\x2f\x81\x37\x33\x41\x87\x17\xff\xdd\x2a\xf5\x3d\x4e\x53\xca\x4d\xee\xea\xa1\xc8\x07\xab\x6b\xd0\xac\x54\xfa\x9b\x95\x27\xc7\x2a\x59\x6a\xa8\x10\xb5\xf3\x25\x87\x71\xc3\x0e\xc8\xbe\x4b\x7c\x32\x51\x0b\xcf\x6c\x36\xa3\xf4\x5e\x3f\x50\xf1\xf6\x61\xc8\x40\xf2\x7f\x04\x0e\x56\xf1\x5f\x5f\xd6\x54\x9a\x53\x0a\x59\x15\xf6\x4d\xca\x12\x61\x2e\x5c\x56\x61\xb4\xc7\xed\xc6\x51\x11\x31\xb8\x4e\x95\x48\x4e\xe8\x12\xc9\x09\x6d\x0d\x6d\x97\xa3\x3c\x22\xee\x4c\xb5\x46\xb9\x5a\x5b\xf5\x5c\x31\xd1\xdf\xc0\x52\xc6\x27\x81\xaa\xc8\x7d\xa4\xed\x04\x64\x15\x5c\xa7\x16\x63\x0a\xde\x74\x7c\xdc\xd0\x98\xdb\xdd\x2e\xb2\x68\xa0\x70\x44\x97\x14\x22\xb0\x2e\x7b\x73\xf0\x60\xbb\x48\x97\x56\x47\x2d\xcf\xd4\xfa\xbe\x16\xdb\xfe\xbe\x6a\xbd\x2e\x44\x09\xec\xee\x94\x02\xa4\xd4\xd2\x37\x8e\x3d\xd4\xe7\x81\x86\x04\xff\x40\x99\xcd\x9d\x50\xea\x5d\xc4\x02\xb5\x00\xe5\x20\x8c\xe4\xde\x1d\x9f\xd4\x42\xc7\xdd\x2f\xec\x25\x1e\x35\x96\x55\xc6\x80\x96\x8a\x3b\x1d\xf8\x86\xc2\xab\xb5\xa5\xcb\xcb\xb0\x2d\x4b\xd3\x53\x52\x62\xfa\x55\xb1\xd2\xa1\x5b\x92\xf6\x8e\xaf\xd4\xda\xc2\x3e\x46\xef\x4f\xa1\x9f\x24\xb4\xbb\xa6\xd7\x09\x20\x62\x68\x8d\xfb\xef\x7f\xb2\xe3\x7d\x3f\x5f\x2b\x7d\x0f\x69\x13\x27\xa5\xd2\xb2\xf4\x84\xf4\x6b\xa5\x4f\x39\xaf\xea\xfe\x1c\x1b\x95\xa0\x90\x33\x35\x56\x16\xbe\x4f\x8c\x95\xea\xf8\xcd\xd2\x33\xf5\xf3\x34\xeb\x4e\xa2\x90\xa7\x95\x72\xcd\xfd\x52\xc1\x6d\xce\xd4\xc1\x1b\x73\xed\x5e\x64\xba\xb6\x88\x42\x9e\xa7\xbc\x77\x4d\xec\x63\x4f\x2b\x2a\xbc\xc0\xdc\xa7\x34\xcc\xbd\xb5\x63\x87\xab\xab\xd2\xe3\xc3\xc8\x39\xa5\x04\x94\x0c\x51\x4c\x68\xa2\x60\x59\x07\x6e\xd1\xcd\xa0\xea\x53\x88\xe5\x8e\x97\x5a\x4e\x2a\x59\xb6\xc4\xed\xaa\xa6\x1b\x96\x0d\xd8\x9b\xf3\x71\x13\xc2\xbd\x6b\x72\x8b\xfc\xce\xf5\x4d\x9c\x7d\x35\x54\x7d\x84\x12\xf7\x8c\x6f\x08\xc4\xf1\x28\x2f\x58\x4a\x6a\xff\xac\x23\x52\xf9\x6d\xe8\x4a\xa3\x7b\x57\x1c\x15\x2f\x49\x1d\x86\x35\x99\xe8\xd1\x89\x3e\x93\x1f\x5a\x7d\x33\xd8\x5c\x05\xac\x88\xa5\x1f\x04\x3e\x03\x3a\x5f\x4e\x0c\x2c\x0c\x1a\xf9\x2f\x6f\xd2\x00\xfd\x2d\x61\x00\x4f\xed\xfd\x95\xcf\x39\x9e\x8a\x28\xce\x15\x26\x29\xcc\xc0\xa1\xa2\x04\xf7\x57\xfd\x94\x03\xa8\x3b\x4d\xa5\x0f\xbd\xf6\x62\x3f\xb3\x3d\x07\x65\x47\x02\xfd\x9e\x12\x6b\x67\xb1\x55\xac\x00\x0f\x15\xcc\x26\x37\xb1\xcd\x9f\xa9\x7e\x0a\x63\xf9\x36\xd5\xf8\xd8\x50\x45\x51\x5d\x80\x5c\x44\x44\xc0\x18\x6e\x7a\x0c\x7f\xf4\x64\x47\x11\xbc\xd9\x18\x4e\xc0\x08\x74\x31\x60\x47\xdf\xa6\xc7\x80\x59\xb1\x95\x58\x72\x52\x16\xc4\xc3\x42\x38\x77\x1c\xa3\x08\xcf\xf1\x75\x90\xe3\x9c\x9c\xc7\x0e\x51\xce\xbf\x8b\x28\xd2\x99\x7f\xb8\xfc\xe8\x4e\xa0\x3c\xfd\x8e\x63\x85\xc0\xb5\x6c\xe8\x28\xed\xf1\xf3\x93\x62\x5f\xeb\xa3\xad\x4f\xb4\x07\xa3\x3c\x8c\x27\x39\x8c\xaf\x69\x0e\xe3\x6b\xc1\xfa\x45\xeb\x13\x13\x70\x1a\x5a\xb4\xf0\x5b\xd0\x8c\xc0\x4c\x66\xe1\x23\xe9\x7e\xaf\xff\xdd\x03\x73\xfb\x08\x0c\x9d\xb6\x54\x8a\x74\x61\xa2\x8b\xed\x3b\x1e\x2f\x66\x9f\xa4\x14\x03\x4f\xf4\xa6\x62\x94\x5d\x50\x56\x2e\x6f\xd3\xc3\x41\x7a\x76\x9b\x4a\x4c\xe2\x9c\xaf\xf4\xa8\x1f\x70\x1b\x46\x2a\x0d\x8f\xa9\x40\x84\xd5\x87\x11\xbc\xdc\x0b\x3c\xf7\xfb\x5e\x83\x29\x27\xd1\x0f\x72\x6b\x88\x8d\xbf\x06\x3e\x32\x0a\xed\x17\xb0\xcf\x68\xa0\xa6\x20\x06\x95\x77\xa9\xcd\x06\x28\x86\x68\x77\x1c\x0c\x9f\x29\xd4\xdd\xf1\x9a\xa1\xb6\x8a\x35\x79\x23\x8d\x25\x57\x17\xf1\x92\x5c\xaf\xaa\x35\x8f\xbb\xfb\x51\xb2\xb8\xd9\x43\x3c\xae\x04\xbe\xb3\xce\x6c\x29\x4c\x46\xe6\x5e\x63\xcd\xf8\x31\x95\xad\x50\xa2\xbc\x53\xfa\xf5\xee\x70\xe9\xd9\x01\x0f\x55\x53\x1b\xbe\x89\x33\x7a\x21\xa6\x39\xb1\x36\xa6\xc5\x52\x9c\x37\x68\x98\xe3\x64\x42\x5a\xf5\xbc\x76\x8a\x86\x86\xe0\x94\xaf\x8e\x7f\x40\x17\x83\x27\x32\xad\x24\xc3\x36\x74\xd6\x23\xbb\xf7\xcc\xb6\x33\x4b\x8e\xec\xac\xd2\x59\x5d\x4f\xa3\xd9\x9e\xba\xf4\x61\x66\x56\xb1\x76\x2a\x50\xf1\x5e\x67\xcd\xf3\x84\xb2\xce\x13\x46\xf4\x6e\x7e\x8f\x77\xd5\x3b\xbd\xab\xa2\xb8\x41\x5a\xa4\xd9\x23\x1e\x23\x73\x49\x11\xa2\xff\x9a\x49\x1e\xfc\x3f\x81\xe2\xee\xbc\x1f\x78\x0e\xe9\x5d\xad\x23\x7c\x23\xf0\x9e\x45\xf0\x3b\x74\x4c\x83\x6a\xad\x10\xde\x4e\x75\x31\xa0\x85\x7c\x5d\x33\x0d\x7a\xcb\x69\x68\x42\x50\xd6\x31\x64\xde\x56\x3e\xd1\x6f\x37\x79\xe0\xf7\xd3\x51\x1c\x31\xe4\x45\x74\xbb\x15\x5f\xef\xb8\xf2\x0b\x19\xc6\x66\x75\x85\xfc\xc4\xb8\x7f\x06\xa5\x8e\xd3\x4a\x0b\xe5\xa8\x2e\x4a\xdc\x50\x51\x4b\x3e\xb2\x9b\xe9\x61\x23\x6a\x41\xaf\x18\x91\xfd\xe3\x1d\x7f\xb9\x4f\x63\xb1\x55\x76\xb0\x93\x98\x06\x59\x5f\x55\x96\x7d\xd1\x25\x16\x79\x3f\x1d\x12\x6d\x03\x68\x1d\xa6\xa9\x61\xb1\xbc\xac\xf4\xdb\x79\xad\x64\x67\x07\xe5\x14\x4a\x74\x04\x94\x9c\xd2\x51\xdc\x9b\x6e\x7d\x4e\xd2\x9d\xe9\x0e\x11\x2e\xb0\x34\x9c\xa1\xaa\x8e\x98\x27\xd0\x8f\x08\x33\xb8\x89\x5f\xff\x62\xda\x75\x22\x16\x18\x94\xb8\x18\x3e\x6e\xa2\x50\x75\xad\x91\xa4\x84\xc5\x8c\xe8\x13\x22\x6c\xe4\x6b\x3d\x03\x53\xe4\xa3\x9e\xa1\x17\xce\xa6\x52\xe5\x84\xc3\x94\xef\x26\x2c\xe7\x9f\xa4\x4b\xc0\x18\x66\x30\x09\x9f\xa8\xa1\x3f\xb4\x26\x63\xfd\x38\x04\x82\x1f\x96\x8a\x3e\xfc\x61\xe0\x6b\xbb\x55\x0c\xd3\x63\xd0\x00\x80\xca\xbf\x45\xe3\x52\x7c\x4e\xfd\x36\xfe\x4a\xa0\xe8\xe4\xc7\x69\x84\xe3\x81\x1f\x2d\x55\x91\xf2\x15\x6d\x9d\xbb\x81\x74\x4d\xb0\x4f\xbe\x87\x8d\x0e\xa5\xf5\x2d\xe0\xe9\xe2\x4d\xa0\xee\x81\xfd\xe6\xc9\xb1\x82\x3c\xc6\xa3\x85\x85\xd5\xd6\x84\x20\xa3\x02\x48\xd5\x2a\x60\x55\x40\x6f\x86\xc3\x2c\x35\x21\x78\xdb\xb2\x24\x54\x5f\x2f\x6b\xc5\x76\xa5\xc6\x3e\x18\xc6\xf6\xd0\x23\xbe\xe6\x7d\x02\x97\x28\x56\x49\x74\x89\x60\x58\x5c\xd7\x35\x5e\x2e\x6c\x4b\x6e\x52\xad\x01\x2a\x9b\xfb\xc2\xa4\x49\x18\x44\x68\x6e\x2b\x0f\x97\xdb\x4a\xab\xe9\xb6\xb2\x1e\x1a\x5a\x3b\xd4\x08\x94\xc9\x42\x99\x68\x83\x2c\x58\x93\x47\x0c\x39\x68\x39\x35\xba\xf3\xb4\xe4\xf2\xb1\xea\xc9\x45\x49\x91\x99\x51\x61\xb3\x28\x61\x24\x34\x26\xcf\xd7\x4a\x3f\x91\xbe\xe6\x94\x21\x86\xe4\x2b\x36\xa5\x7a\x9b\xd8\x4b\x45\x48\x67\x42\xc0\xb6\xa1\xc1\xd8\x0e\x63\x13\x0d\x64\xc9\x45\xec\xcb\xec\x2c\x3e\xa9\x45\x24\xbb\x76\xed\x6d\x17\xe9\xa1\x28\x84\xaf\x27\x0d\xa4\x26\xbc\xae\x1f\xda\x89\xb5\xe4\xa5\xe3\x49\x0a\xda\xaf\xe1\x64\x93\x5b\xff\x82\x89\x63\x9b\x50\xb8\x83\xd2\xfb\xb5\x52\xc1\xea\x01\x28\x42\xd9\xed\x86\x0b\x55\x97\x23\xbb\x12\xb9\xe6\xb7\x66\xf8\x09\x0f\x50\x8b\xdf\x0d\xba\x51\x22\xf7\x0d\x5d\x26\xd6\x84\xe4\x93\xf2\xd9\xc9\x86\xe3\x81\x3d\xb3\x22\x44\xff\xbc\xd0\x20\x02\xcf\x23\x38\xef\x3a\xeb\x36\x59\x48\x69\x26\xbb\xed\xee\x9c\xf6\x59\x9a\x50\x86\x88\x86\x28\x17\xa3\xec\x8f\x8b\xe5\x63\xb5\x7f\x46\x45\x6e\xe3\x85\xcd\x8a\x5c\x58\xfa\x38\xf9\x9f\xfe\x21\x9e\x0c\x9f\x04\xde\x15\x7f\x6b\xc7\xb3\x28\x99\xe0\x83\x28\xf3\x5d\x65\x2f\x78\xb7\xc9\x99\x7c\x21\x4a\x9c\x98\x25\x82\x37\x4c\x78\x3e\x56\xfc\x82\x85\x6c\x24\x3a\x93\x58\xb0\xd1\x31\xe5\xe3\xa6\x7d\xaf\x8a\xfd\x22\x9b\x4d\x7b\xec\xf8\xa9\x52\x69\x96\x40\xa7\x12\xb9\xc5\x9f\x21\xe8\xc7\x5a\xf6\x55\x85\xef\x58\x31\x8b\x8b\x51\xde\xaf\x62\xc8\xfd\x93\x02\xff\xa2\x77\x57\x87\xc0\xb6\x4d\x18\xda\x61\x01\xed\x59\x27\xe5\x7f\x42\xc5\x92\x27\x82\x47\x15\x45\x76\xb1\xa5\xe6\x91\x12\xa7\xae\xbb\x08\xef\x9f\x6d\xdb\x55\x49\xf4\xa4\x10\xa5\x30\x10\x1f\x34\xd1\x9e\xaa\x3d\xdd\xf6\xa6\x15\x32\xe4\x6e\x39\x91\x15\x78\x63\x1f\xa6\x9e\x60\x19\xde\xdc\x59\xbf\x86\x92\x67\xbd\x29\xc2\xbe\x80\xfb\x1c\xf5\xc7\xd1\x1a\x4e\x35\x09\x52\xae\xd8\x38\x9e\x56\xd1\x33\x30\x3c\x78\xf2\x8f\x2b\x0b\xae\x0d\xe3\x6a\xd7\x45\x68\x7b\x4a\x6d\x81\x4c\x28\xa5\xc7\x84\xf5\x17\x75\x29\x3e\x76\xd1\xbe\x89\x17\x32\xdb\xe3\xa6\x9a\x38\xa1\x2b\x74\x3a\x97\x13\xb1\x6a\xdf\x6d\xb0\x8e\xdd\xdb\xee\xa6\x45\x9f\xa4\x03\xb0\x6d\x7e\x83\x12\x0e\x3e\x56\xf4\xc7\x15\x6b\x96\x94\xa7\xc9\x69\xca\x51\xc4\x5f\xa4\xc1\x92\x6e\x10\xf5\x92\x2a\xaa\x52\xbe\x36\xa0\x9c\xf2\xb1\xea\xd7\x99\x3c\xb7\x45\xbe\xcd\xd7\xdd\x2e\x94\x4a\x4c\x17\xa2\x28\x22\xe6\xa9\xb0\xe8\xec\x53\xce\x80\xdc\x60\x9d\x1e\x85\x63\x72\xa0\x4a\x82\x27\xb0\x86\x10\x1e\x1b\xfb\xeb\xf4\x4e\x94\x0a\xbf\x54\x8c\x6e\x37\x40\xc2\x77\xbf\xb0\x77\x5a\x01\x5e\xe8\x9a\xf0\x32\x5e\x51\x19\xda\x2b\x8a\xf3\x7c\x29\x98\xf0\x67\x7d\xa9\xdf\xf2\x74\xb1\xef\x94\x2a\x59\xfc\x4e\xc3\x6b\xd9\xdd\x5e\x88\x72\xec\xda\x22\x06\xa1\xdd\x5d\xbd\xc9\xf5\xb2\x89\x97\x45\x9b\xa1\x51\x43\x62\xc2\x75\xa9\xb0\x3f\x41\x11\x37\xf2\xa7\xff\x55\x23\x80\xd8\xab\x54\x52\x13\x8a\x58\xf9\xcf\xd0\x31\xc2\x6e\xfd\x0d\xca\xe8\x1d\xb9\xe7\x73\xce\x80\x83\x2b\x02\x78\x9c\xec\x64\x8d\xa8\xe7\xdf\xe2\x66\x91\x2a\xbd\xac\x54\xbb\xb6\x74\x54\x2c\x7b\xbe\xf4\x39\xe4\x43\x0a\x22\x50\x29\x98\x1a\x23\xdf\x60\x09\x17\xf4\xa8\x50\x85\x38\x1d\x28\x7b\x89\x8d\xa4\xf2\x8d\x57\x7e\x2a\x68\xed\xd8\xb1\x76\x13\x53\x5b\x67\x9c\x40\x97\xfd\x26\x01\xb9\x19\x1b\xa7\x04\x47\x6f\x05\x8a\x15\xfe\x67\x5e\x3b\x70\x95\x5c\xe8\x28\xa3\xc3\x66\x87\x30\x90\xa3\x35\xdd\x90\xbf\x1a\x7c\xcc\x4d\x18\x7b\xa8\xc8\x0c\xac\x08\x59\x1a\x5b\x25\x00\xee\x44\x85\x9e\x49\x9a\x15\xfd\xc7\xbc\xee\xf4\x77\x31\xbe\x51\x91\x78\xac\xe3\x35\x5a\x8e\xf3\x58\x70\x3d\x5b\x57\x2b\xbb\x05\x49\x69\x81\xc5\x56\xaf\x8a\xfd\xaa\xf0\x0e\xdc\x7b\xdb\x23\x1d\x88\xd7\x14\x33\xfb\x87\x98\x1d\xae\xb7\xb9\x47\xd4\x80\x51\x84\x10\x7c\xad\xef\x0a\x0d\xa2\x24\xca\x59\x3c\x4b\x1e\xe8\x5d\x25\x38\x7e\x57\x41\xb6\x8f\xe2\x6d\xf0\x49\xf0\x73\x0d\x2b\x51\x92\x16\x2b\x51\xd1\xcf\x0b\xa8\x00\x4d\x69\x3e\x0f\x0d\x4e\xc7\x04\xdd\x33\xcb\x13\x5a\xeb\x59\x0f\x4d\x94\xd8\x15\xdb\xed\xda\x0c\x35\x20\x56\x8c\x0f\xfc\x8b\x3b\x51\xdb\x2d\x08\x07\x46\x42\xbb\xbe\x8a\xcf\x70\x57\x3e\x69\xe8\xeb\xed\x6d\x67\xd6\x84\x00\xe8\x2b\xd8\x87\xf0\xea\x76\xd7\x42\xf1\x83\x07\xdb\xb9\x89\x4d\xb6\x3a\xb0\x49\x4b\x09\x30\x5f\x54\x02\xdb\x17\x15\x9a\xa7\x17\x2d\x90\x33\x52\x31\x43\xf7\x2d\x12\x06\x4a\x8b\xf2\x0d\xfa\xa4\x58\xd1\xf8\x14\xe8\x38\xea\x12\xfc\x47\xeb\x05\xe5\xe8\x6e\x0f\xec\x99\x9d\x56\x35\x3a\xf4\x2f\x00\x5b\xb8\x10\x4c\x56\x97\xe7\x1c\xa9\xa8\x4e\xdc\x6e\xe7\xb1\x8b\xd0\xdd\xb4\xf3\x53\xb0\x01\x38\xf8\x85\x76\xb1\x1a\x5b\x96\x73\x45\xd9\xfa\xdb\xf4\xe3\x7c\x5c\xab\x92\xd3\xe5\x2e\xa4\xa9\x93\xf0\x73\x37\xe9\x5b\x51\xc7\x1d\xc2\xa4\x3b\x8a\x17\xd7\x99\x43\x5c\x0a\x34\x09\xa2\x01\xca\xb8\x14\x25\xe2\xd8\x27\x1e\xd8\xbe\x66\xfd\x61\xed\x82\xa4\xcb\x11\x7f\xf2\xc5\x4f\x4e\xf9\xa2\x14\x38\xaf\xc8\x86\xde\xd0\x3e\x58\xd7\x3c\xfc\x25\xcb\xa2\x65\xe9\x59\x8b\xea\x4b\x35\x4a\xd7\x5e\x46\x64\xcc\x88\xb2\x06\xbd\xa4\xdd\xed\x94\x38\x09\x13\xf2\xdf\xf7\x94\x88\xc6\xbd\xf5\xfb\xd5\x9e\xd9\xbd\xed\xfd\xb3\x53\x3e\xaa\xfc\x41\xa9\x0a\x71\x24\x15\xb2\x76\xc4\xf5\xee\xa3\xe4\x8b\xa3\x28\x8b\x24\xc8\x42\x5b\x11\xb5\x49\x3e\xae\xbd\xfd\x4f\xb4\xbb\x69\xe6\x78\x74\xd2\xb3\x69\x39\xfb\x54\x68\x32\x0b\xcf\xfe\x09\xd5\xba\xb7\x03\xdb\x9b\xf1\xc1\x1f\x5a\x26\x48\xea\x0e\xeb\x8c\xf8\x03\x5c\xb1\x13\xa6\x75\x84\x40\x6f\x75\x1a\x9a\x2c\x89\x96\x4d\x4c\xeb\x04\x22\x91\xcb\xca\x3a\xee\xa4\x66\x96\xbc\xa6\x54\xb7\x62\x32\xea\x9c\xf6\x8a\x03\xef\x29\xd5\x84\x1b\x2a\xc4\x3e\x4e\x25\x11\x24\x78\x2f\xbb\xc7\x65\x93\x30\x1d\x65\x66\xd1\x6e\x72\xec\xb7\x6f\x42\x25\x10\x7f\xc9\x75\x76\x6c\x8b\xaf\x63\x5d\x60\xd8\x83\x92\x5a\x62\x67\x03\x49\x20\x54\x3d\xaf\xc8\xa2\xb0\x40\x9b\x53\x32\x67\x2c\xf7\xce\xbd\xd1\xab\x50\x9d\x0b\xb4\xd9\x53\x5d\x18\xe3\xf9\x76\x36\xca\x0b\x86\x74\x79\xfe\x1b\x6f\x41\x52\xc2\xf3\x88\x80\x61\x96\x0e\x53\x36\x79\x7a\xde\xe9\x36\x79\xf0\xc8\xdd\x5a\x9a\xfb\x89\xf6\xb2\x09\x4d\x15\xae\x22\x58\x9d\x10\x36\xf0\x35\x48\x57\x64\xc8\xa2\x81\xcd\x37\x53\x74\xe1\x76\xa6\x6a\x2d\x12\x5b\x45\x0a\x35\x9c\x2a\xc7\x1e\x81\x33\xc1\xf3\x99\x8f\x29\xb9\x77\xee\x08\x2e\xab\xab\x6b\x8d\xcd\xcf\xb7\xed\xa1\x30\x1e\xf5\x24\x42\x92\x4d\x97\xde\x90\x6c\xc7\xbe\x9e\xf7\x4f\x7e\xe1\x5f\x4c\x79\x92\xda\x4d\xe5\x19\x3c\x35\xae\x16\x43\x14\x14\x2e\x3b\x59\xc3\x7c\x94\xb0\xa8\x86\x6b\xc3\xb8\xf6\xe2\x6d\xf5\x4e\xbb\x26\xf9\xe2\xc8\xce\x78\x42\xd5\x2b\x04\x22\xc2\x57\x73\x29\x0a\x73\xe0\x6e\xa0\x98\x5a\x2c\xa6\x88\x98\xe8\x9d\xd2\x57\xbd\x8a\x14\x4b\x56\x53\xf1\x42\x97\xb2\x1c\x43\x16\x9b\xe5\x79\xad\x8c\x54\x87\x9e\xee\x98\x6b\x17\xfd\x28\x59\x62\x04\x2d\x1e\x02\x43\xf4\x80\x50\x3b\xa6\xdc\xac\x2f\xd4\x31\x9a\x3b\xda\x43\xc3\x72\x66\x98\x4c\x1f\x2a\x1b\xa7\xc7\x50\xe2\xe2\x1a\xc3\xd8\xf7\x5a\x8e\xd7\xc6\x54\xb5\x53\x84\x71\x34\xe8\x0a\xf4\x43\xa1\xcc\x77\xbb\x08\xbc\x61\x35\xaf\xa6\x8e\x60\x88\x9a\x36\x00\x59\x8c\xfb\xd6\xc4\x45\x7f\x95\x16\x48\x56\x5b\x54\xfe\xde\xdc\x16\x14\xc7\xdb\xa6\xea\x67\x36\x8a\x51\x0c\xf1\xf2\x66\xac\x9a\xc3\x27\x55\x4e\xe8\x2c\xb4\x13\xbb\x10\x85\x91\xa1\x25\xb6\xfa\x19\x6c\xce\xd0\x61\xe2\xe3\x5a\x3c\xe4\x94\xf6\x46\xdd\x3c\xcc\xa2\x2e\x11\xac\xaa\x1f\xc0\xd3\xe4\x56\x10\x9f\x78\x08\x6b\x15\x3a\xe5\x33\x6a\xb1\xbf\xa4\x24\xc3\x19\xe6\x8b\xf8\xee\x06\xcd\x22\x65\xcd\xb5\x77\xed\x7a\x53\xb1\xa8\x30\x59\xb4\xb0\x40\x8f\x0a\x0d\xfd\xe3\xfa\xf1\x00\xf5\xc3\x95\x7d\x05\x37\x1f\x98\x9c\x17\x11\x21\xe3\xb7\x9c\xbf\xe7\xcb\x6e\xfe\xc4\xe9\x4a\x3e\xe1\xe0\xab\x5b\x17\xdb\xc0\x83\x72\x70\x34\x37\xf2\xee\xa9\x0d\x05\x8e\xfc\x53\x1e\x15\x78\x57\xd9\x12\xfe\x88\x9e\x30\x33\x4e\x83\x47\xdc\x34\xff\x14\xd7\x77\xb5\x4e\x27\x96\x93\x0d\xf8\x4d\x27\x17\xf9\xf9\xcf\x7a\x3f\x0c\x87\xb1\xbf\x57\x8d\xea\x35\x60\xbf\x90\xf6\xcd\x8c\xab\x1f\x42\x08\x75\x86\x62\x65\x8a\x0b\xbe\xfe\xb3\x54\x93\x5f\xbb\x8c\x27\xc6\x1a\xfa\xb5\xba\xcd\x27\xa8\xf4\x6a\x32\x40\xd7\x9f\xd7\x8d\x50\x31\x9d\xb8\x83\x59\x28\x1e\xff\x4d\x31\x42\x9f\xd8\x35\x7f\x8f\x44\xd9\x36\xfe\x50\x7b\xff\xec\xfc\xcf\xd0\x02\xac\x94\xb7\x77\x3b\x3e\x42\x75\xf5\x4e\x02\xa1\xfa\x2e\xc4\xb4\xd7\x03\xcf\x46\x9d\xa6\xc5\x10\x1b\xf8\x65\x24\x64\xe2\x71\xdd\x72\x9a\x2a\xaf\x61\xb0\x21\x2f\xfa\x16\x5d\x89\xc8\x7f\xe1\xe9\x33\x78\x88\xdb\x49\xe8\x6e\xbc\x8b\x10\x00\x1f\xda\x34\xde\xf8\xf3\x8e\x33\xe1\x21\x6a\x1b\x3b\xad\x03\xbb\x9d\xd6\x64\x95\xdb\xa3\x00\x7e\x5a\x71\x6e\xa7\x3b\x55\x86\x83\x30\x6b\x3b\x99\x13\x60\x9a\x9f\x24\x97\x1d\xfc\xfd\x79\x64\x3b\xa8\xb3\xdf\x43\xc5\x01\xd1\xee\x35\x68\xb2\xa2\x42\xf3\xb7\x50\xa5\x72\x1e\x8a\xd5\x66\x85\xd5\xed\x2d\x1a\x1f\x18\x38\x87\x4b\xa5\x89\xb7\x86\xed\x95\x65\x43\xa1\x96\xe6\xd4\xe9\x3d\xf5\xf2\x4a\xe0\x25\x37\x4c\x4f\x72\x29\x60\x43\xf1\x04\xce\x2a\x8d\x94\xb3\x4d\x92\x21\x5d\x6b\x46\x5c\xf8\x76\xce\x66\xbb\x76\x39\xdd\x92\x2d\xfc\x97\xcf\x6d\xa5\x57\x2c\xb5\x11\xa5\xfd\x32\x05\x2e\x28\xde\xc5\x06\xea\x5f\xf1\x88\x03\xd8\x9f\x2e\xfb\xf2\x53\x9d\xd6\x73\xcf\x3d\xf8\x57\xcf\x76\xbc\x56\x0f\xd6\x15\x67\x34\xe6\x42\xe1\x6b\xf5\x7a\xdc\x1c\xe1\xf8\x44\x0c\x52\xc4\x63\x69\x6c\x09\x09\xcb\x6f\xc1\x4b\x36\x56\x8d\xbe\xb3\xaa\xd1\xa7\x6a\xfe\x26\x0f\xa3\xc4\x14\x2e\x00\x75\x51\xb8\x6b\x2a\x6c\xe8\x78\x00\xfc\xb5\x26\xbf\xff\x2c\xca\x11\x02\x62\x49\xfa\x1a\x26\x01\xe2\xe9\x2b\x28\x30\x6a\x7b\x0f\x71\xc1\x7b\xdc\x47\x91\xd6\xe4\x96\xfc\x50\x31\x8d\xae\x80\xef\xeb\x54\x2b\x1c\xf9\x05\x88\x25\x54\x1b\xef\x6a\x19\xcb\x2b\xb5\x1d\x74\x7e\xbe\x1d\x9b\x15\x2d\x1d\x1a\x68\xe9\x50\x5f\x91\xc8\xa2\x41\xce\xb2\x74\x08\x27\x71\xbf\x7c\x3c\xde\xe6\xe9\x6a\xbd\x96\x76\xe2\xe5\xc6\x9e\x08\xb1\xad\xef\x3f\xcb\xa6\xd3\xcd\x4c\x2f\xb6\xab\xad\x09\x15\x71\x7a\x61\x32\x84\x1e\x75\x2d\x92\x48\x36\x26\x27\x96\xe0\xf4\x2e\xfc\xbe\x94\x98\x2c\x4b\x57\x66\x7c\x5f\xe2\x2a\xa6\x08\x66\x2b\xf8\xa1\xb4\x73\xfe\xfa\xc7\xd0\xc6\x14\x84\x6c\xcb\xb9\x3f\xac\x95\x8f\xa9\x72\x5a\xfc\xc9\x29\xed\xe7\xa7\xa9\x03\xf7\x79\x7d\x91\x56\xe6\x33\xca\xd0\x32\xb6\x5d\x38\x48\xc3\x6b\x0f\x4b\x1b\x4a\x40\x78\xf5\xd0\x26\x64\x17\x03\x5c\xa3\xf0\xd4\x7d\x67\xca\x10\x97\xca\x29\xfe\x73\xd7\x91\x4f\xdc\xe6\xb6\x12\xc5\x31\x8c\xb7\x1d\x05\xd0\xe3\xd5\xd7\xca\xd6\xe7\x44\x4f\xf1\x63\x1d\x2f\x2d\x7d\xa9\xa4\xa5\x47\xac\x5a\xaa\x15\x4d\x24\x1b\x54\x8a\x30\x22\xb5\x61\xdc\xa6\x86\x59\x32\xc8\x4e\x1b\xca\xbe\xec\x34\x93\x4d\xd4\xdb\xea\x07\x3c\x90\x41\x78\xe6\x3f\x0b\x98\x86\xc0\x84\xaa\x1f\xc5\x08\x45\x5c\xc0\x57\x70\x5f\xb3\x20\x2e\x29\x2d\x61\x06\x83\xa2\xdf\x79\xaf\xf4\x80\x89\x7a\x46\xe2\x8c\xdf\xfa\xa3\x45\x13\xb5\x7c\xb4\x7c\x71\xa2\xe3\x5c\x6b\x8b\xc9\xe7\x16\x32\x9b\x84\x7d\x65\x00\xba\xae\x31\x2c\x13\x84\x38\xaa\x8b\x29\x4d\x70\x3c\xe4\x1f\x95\xca\x1b\x01\x92\x2f\x18\x2e\xff\x41\xcb\x25\x79\xb7\xd4\x81\x29\x6c\x16\x99\x38\x7a\x49\x72\x87\x26\x95\x19\x5d\xe1\x0d\x57\x4c\x4b\xf9\xb6\xb1\x8a\x91\xf0\x8e\xd7\x6f\xfa\x7b\x66\x09\x7e\x1a\x25\xb0\x05\x9b\x50\xe2\xc2\xf4\xbc\x3d\x69\xc8\x51\x4f\xc1\x63\x33\x5a\xec\xf3\xc5\x21\x32\x78\xa0\xa0\x3e\x0f\x1a\x95\x4a\x08\xec\x94\x93\xb8\xc4\xbc\xd2\xa7\x53\x32\xb0\xaa\xe4\xbf\x14\xd9\x21\x1a\x8b\xec\xe7\x8e\x87\x2d\xe6\xee\x1e\x03\xb4\x92\x66\x71\x6f\xbb\x6e\x9a\x7f\xa8\xe0\xf4\x2c\xae\x8a\x81\x83\xd8\x61\x22\x4b\x44\xc9\x60\xe3\xb8\xf5\xdc\x73\xce\x1e\x9f\xae\x08\xc3\x0b\x64\x2d\x47\xcb\xa9\x1e\x2a\xea\xa3\x17\x03\x55\xb1\x7e\x18\x50\x48\xe3\xa4\xba\xe7\xf6\x71\x29\x1a\x2b\x23\x36\xe6\x97\x27\x85\xdb\x69\x87\x13\x77\xfe\x6a\xd8\x62\x10\xcc\xd4\x10\xd5\xbb\x76\xed\x6d\x2f\x88\xc2\x1d\x33\xa9\xe8\x06\x85\x55\xb5\x7e\xbc\xce\xed\x03\xfe\xd6\x40\x99\x98\x2e\x9a\xb5\x92\x26\x74\x93\x3e\xe6\x01\x97\x64\x8d\xb3\x10\xd9\xb8\x67\x33\x18\xea\xe3\x49\x8a\x95\x3a\x62\x6c\x36\xb3\x46\x85\xa3\x6e\x52\x5e\xbd\xe2\xe7\x12\x7c\xdc\x29\x11\x56\x77\x89\xf1\x75\x84\x4a\x7a\x52\x4d\xd4\x95\xe7\x28\x47\xfa\xce\x0e\xfc\x58\xf9\xc4\x8e\x5f\x56\xf1\x45\x93\x25\x36\x6b\x79\x6f\x96\xef\x2a\x5e\xcf\x77\xb5\x06\x76\x61\x4d\x96\xe4\x24\xc1\xc6\xd9\x22\x15\x2a\x24\x73\xf4\x05\x07\x9b\x87\xa3\x1e\x31\x74\x5c\x19\x10\x14\x09\xb1\xba\x7f\x4a\x61\x1e\x49\x19\xa5\xc0\xb6\x8d\x41\x73\x84\x1f\x0e\xaa\xbb\x9b\x68\xa7\xc5\x42\xfa\x38\x02\x1b\x0c\x8e\x5b\x4a\xaf\xa2\x58\x1d\x46\xa1\x89\xe3\xd5\x4d\x8a\xe6\xf8\x77\xaa\xb9\xfe\x23\x8c\x24\x2c\xe7\xb7\x31\x62\xf8\x64\x72\xd1\xab\x5e\x04\x56\xf3\x8b\x0d\xe4\x85\xdd\xed\xa1\x89\x0d\xf7\x79\xc5\x4f\x55\x05\x5b\xe7\x02\x2d\xd2\x4b\xec\x8a\x69\x4f\xe5\x99\x1a\x2b\x9b\xfe\x35\xaa\xd7\xf3\x7f\x74\x3c\xbc\x6e\x4d\x51\xa9\xa2\x6a\xf8\x30\x2e\xbd\xc9\xf9\xd3\x99\xca\x44\x87\x16\xd2\xb8\x37\xad\x6a\x54\xcc\xd0\xc0\x77\xfe\x2f\xb4\x7e\x63\x7c\x42\xd1\x92\xdd\x9e\x9b\x2c\x93\x87\x59\x3a\x18\x3a\x8b\x1a\xbc\xb2\x63\x81\x52\x7e\x38\xa6\x76\xad\x30\x4d\x96\xb9\x6e\x21\x2a\x22\xd5\xfd\x8a\xbc\x88\xab\xe2\x5a\xeb\xcd\x87\xf1\xfa\x10\x53\xf0\xb1\x6a\x92\x42\x79\xdf\xb6\x3c\x96\xf0\x2c\xa4\x78\x24\x78\xf4\xad\xf4\x7c\xd4\x1d\x65\x5d\x85\xda\x5f\x57\xe3\x97\xea\xa0\x3d\x54\x40\xf7\x8e\x6e\x02\xe1\xe9\x65\xc5\x43\x3a\xa1\x0d\x25\xee\x35\xf5\x9e\x17\xb2\xc8\x26\xbd\x96\x97\xc4\x41\xea\x2a\x4b\x96\xff\xa1\x7e\xd4\x8d\x24\x5f\x93\x91\xaf\x1e\xdd\x39\x75\xa3\x7d\x93\x2d\xdb\xbc\x40\xd5\x5e\xdc\xd4\x3c\xb2\xf7\x58\xe0\x30\xf1\x2d\x96\x83\xe2\x3f\xaa\x6d\xa4\xa4\x16\x91\x8f\xb2\x61\x15\xff\x8a\x00\xba\xcc\x25\x85\x62\x38\x52\x23\x4d\x90\xdf\x47\x11\x25\x69\x37\x36\x79\x91\x0e\xcc\x94\x7f\x29\xf7\x14\x34\xe7\xa2\xf2\x62\x38\xe3\xaa\xae\x29\x81\xd7\x19\xcc\x80\x2c\xeb\x75\x7a\xab\x7c\x5c\x6a\x1d\xea\x74\x05\xa1\x2d\x56\xb0\x33\xaa\xd3\x71\xa6\xa9\x0f\xd1\xb7\x26\xe3\xda\xb8\x54\x5f\x7c\xc5\xf2\x7c\xd9\x00\xb2\x54\x9b\x7b\x4f\x5b\x48\xfd\x27\x2d\xb1\xf9\x9f\x26\xf4\xd2\x56\x93\x34\xee\x01\xee\x26\x79\x81\xda\x0c\x75\x1b\xaf\x9b\x26\xbd\xfc\x69\x8f\x32\xdf\xdc\xf1\x2d\x3d\x46\x71\xba\xe8\x76\x8f\xe8\x08\xbe\x59\x2a\x5c\x0d\x1b\x6e\x3a\x46\x7f\xf5\xd6\xb1\xfc\x6f\x44\x7d\x02\x21\xe9\x5d\x14\x4b\x05\x6b\x55\x65\xc5\x88\xed\x4e\x62\x67\x13\xba\x2b\xcd\x24\xec\xb8\x37\x94\x28\xd4\xab\x58\xe7\xf8\x8b\x41\xf0\x74\xbf\x5f\xa5\xac\x6c\xed\x8e\xfb\x44\xfe\x7c\xb9\xf4\x6b\xef\xf9\xc0\xe3\xe2\xde\xf3\x00\x9d\x81\xcd\x16\x25\x64\xc2\x3c\x64\xf5\x44\x3e\x69\xac\xa7\x0d\xcc\x6a\x9a\xf1\xe8\x60\x13\xe2\x40\xd1\x52\xcf\x68\x98\x5a\x1c\xd9\xa4\xc8\xb7\xa8\x26\x37\xa7\x5e\x02\x7f\xf0\x0e\xa3\x87\x68\xe8\x38\x15\xfc\xea\xd1\x63\x15\xbd\x53\xd6\xfc\xfe\xf8\x3f\x34\x4f\xea\xab\x35\x95\xa8\x5d\xbb\x48\xdd\x25\x8b\xba\x23\xf6\x1c\xd0\x2a\xa1\x7e\x97\xd7\xe3\x81\x4a\x54\x53\xbe\x99\xfa\xae\x4a\x6a\xae\x2b\x51\xba\x73\xb5\x27\xb3\xef\x85\x76\x1e\xf6\x6d\x6f\x14\x23\xdd\x40\xb1\xe9\x8a\x52\x68\xbd\xa2\xb8\xa5\xdd\xb4\xe8\x13\x6d\xb0\xfa\x29\x2c\x06\xd7\xd4\xc2\x70\xcd\x67\x8f\x69\x92\x99\x08\x02\x03\x5a\x0b\x5c\x44\xbe\xe9\xc1\x4b\x97\xe9\x59\x8d\xea\x1a\x44\x79\x1e\xa5\x14\x03\x28\x5b\x50\xb5\x90\xd6\xb1\x41\xfb\x67\xdb\xd6\x64\x45\xbf\x5b\x85\x43\x84\xa0\xc0\xb3\x05\x61\x13\xb3\xe7\xc7\xa5\x37\xe8\x7e\x0b\xa1\x07\xca\x25\x27\x94\x7a\x4c\x98\x2e\xd9\x98\x89\xe6\xc8\x4e\x3e\xd0\xc9\xf4\x07\x35\x51\x75\x57\x41\x65\x45\xca\x96\x92\x82\x38\x12\x28\x11\x86\x23\xb5\x07\xbf\x67\x77\x9b\xc8\x1c\x26\x4a\x94\x39\xd9\x45\x65\x4e\x76\x51\xe9\xc4\x67\x51\x2f\x0a\x47\x71\x3a\xca\x75\x83\x0e\xd5\x08\x3e\x0e\x9c\x95\x59\x91\x59\x33\x88\x05\x1d\x37\x59\x41\x11\xab\xf6\x47\x1d\xb6\x31\xcb\xb0\x61\x3a\x82\xb8\xd2\x86\xad\x27\x04\xc3\x2c\x1d\xda\x78\x9a\x86\x36\x82\xb2\x93\x0a\x20\x7a\xa4\x54\x95\x56\xac\xd2\x78\xca\x1b\x3b\x1a\x23\x92\x9b\x95\x69\x57\xc1\xdc\x71\x0c\x1b\x2a\x9f\xa8\xe9\x84\x91\xcb\xc7\x0d\x6f\x7d\xae\x3d\xcc\x6c\x2f\x0a\x5d\xdb\x12\xbd\x13\xc8\xd9\xf3\x71\x1d\x33\xf9\xc2\xde\xff\x6f\xfe\xac\x3a\xff\xea\xda\xec\xa9\x49\x49\xaf\xdd\x73\xfb\x9c\x72\x7e\xcb\xd9\x8c\xcd\x74\xaa\x20\xd8\x51\x8c\xf7\xcf\x72\xda\x7c\x27\x50\xd5\xd7\xbb\x1a\xa0\xf3\x16\xe5\xe1\x58\x5e\x7e\x10\x28\x54\x19\x70\x11\x82\x5f\x51\x12\xff\x5f\xe5\x1a\x84\x90\x97\x95\x3c\x6f\xab\xe3\x99\x45\x0f\x4b\xcf\xf6\x3a\x82\x45\x1b\x49\xe9\x37\xf0\xd8\x11\x6a\xb2\x71\x0a\xe6\xc7\x97\x9a\xbc\xd4\xf2\x61\x9a\xe4\xf0\x49\x75\x75\x98\x52\xd5\x61\x82\x67\xd6\xfb\xca\xb5\xf7\xcf\x3e\xff\x8c\xa2\x33\x70\x81\x99\xdd\x53\xe9\xa9\x60\xc5\x3f\x8a\x80\x07\x55\x35\x04\xd8\x42\xdb\x68\xed\x9c\x5f\x83\x8a\x35\xf6\x90\xc3\x94\x75\x21\x88\xfe\x00\x0f\xd3\xc9\xd5\x7d\xe6\x00\x57\xc0\x6e\x63\xd3\xe2\x5f\xc5\x83\x71\x1e\x7e\xd5\x03\x40\xed\x79\xc3\x58\x69\x62\x7e\x2b\x68\x7d\xfa\x97\x9d\xdc\x8f\x2a\xf5\x7c\x23\xf0\x6b\xfd\x5f\xa8\x70\xf7\x08\xde\x9e\x63\xb1\x78\x67\xc9\x63\xc1\xfa\x94\x89\xaa\xa8\x3c\x46\xf1\xbc\xaf\xab\xe2\xdd\xf5\x5a\x97\x6c\xd7\xae\xf6\x20\xcd\x72\x1b\xb7\xaa\x61\x84\xbc\x12\x38\x6c\x3e\x56\xfc\x80\x1e\xdb\x9b\x63\x9e\xbd\x47\x7f\xc5\xc7\x9a\x7c\x52\xa4\x89\x65\xa6\x9d\x30\xa3\xbd\x2d\xe3\x71\xc5\xc2\xee\xda\x30\x1d\x44\xc9\x22\x90\x85\x7a\xe9\x40\xde\xfb\x50\x59\x12\x70\x8f\x17\xfb\xc4\xff\xe9\x16\xff\x85\xa8\x48\x6c\x9e\x6f\xaa\xfe\x50\xbc\xa7\x7d\x20\xb7\xa5\xa3\x3a\xa3\xa7\x10\x79\x68\xef\x2c\x71\x96\xa6\x77\x80\x65\xe5\x8f\x9b\x9e\x10\xa9\x35\x60\x77\x14\x11\x04\x5f\x9b\xad\x63\xa5\xe7\xe7\x19\xa9\xbe\x6c\x5b\xd5\x9d\x63\xa6\xbc\x8f\xb7\xc8\x27\x35\x94\xe5\xdc\xbe\x76\xdf\xc6\x3d\x0d\xf5\x61\x2d\x5e\x31\x34\x6d\xc0\x65\x86\x69\x86\xd8\x52\x58\x57\x4a\x66\x43\x1b\x26\xbc\x68\xc2\x25\x0b\xf9\x58\x56\x2d\xa6\x1b\x10\xfc\x18\xfd\xa6\xc0\x1e\x1a\xbc\x5a\x07\xd6\x59\x05\xa9\xd4\x4f\xa0\x65\xd7\x55\xda\xfc\xf6\x04\x64\xb9\xc8\x56\xb7\xeb\x66\xff\x2d\x42\xdb\x31\x94\x93\xb2\x40\x25\x01\xe1\xc9\x8e\xbe\xfc\xbe\x81\x82\x4d\x66\xe2\xa1\x99\xe2\xb4\x76\xdc\x82\xf2\x6e\xe0\x73\xc8\x9b\x58\x69\x50\xd4\x67\x67\x17\x2d\xeb\xe9\x82\x5d\xef\xff\x72\x2c\x40\xcb\x86\xff\x4c\xd7\xb9\xee\x6a\x86\xda\x15\x07\x99\x18\x98\x6c\xc9\x2a\xe7\x5f\xc7\xfb\xf3\x05\xc5\xba\xda\xf2\xc1\x83\xa4\xfc\xb2\x88\x02\x19\xd3\x62\x02\xdf\x37\x66\xd5\x47\x5c\xd3\xb9\xf2\xe3\x5e\xcf\x29\x33\x49\x3e\x4c\xb3\x82\xaa\x2f\x33\xca\x40\xfd\x68\xa0\x9e\x08\xd0\xc9\x7c\x8c\x55\x4e\x1c\xe4\x5a\x9f\x9b\x73\xd6\xb9\x8f\xaa\x2d\x66\x09\x7b\xab\x08\xef\xb6\x1c\xdf\x14\xc2\x57\x58\xba\x38\xcb\xc7\x05\x6f\xad\x89\xb5\xee\x9c\x6f\x77\x47\xb9\xdb\x16\xd1\x38\x7b\x57\xf1\x80\xde\x6d\x50\xdd\x9f\xaf\x96\xf8\xcc\xf4\xa2\x10\x89\xa9\x8c\x1d\xdf\x1e\xc2\x98\x92\x48\x52\xd3\x03\x4c\x16\xaf\x3e\xee\xfb\x72\xf7\x4b\x1f\x78\xfd\x51\xe9\xbb\x7d\x3f\xa6\xd7\xed\x6c\xd4\xf7\x48\xfd\x89\xad\x02\x10\xe7\xdf\xd0\xf5\x37\x56\x08\x44\xc4\x7b\x2f\xf0\x11\xee\xe5\xc0\x23\x76\x7f\x07\x4f\xd6\x49\x4b\x79\x4b\xa9\xf7\xa9\x18\xc5\xcf\x0c\x2f\x46\x40\x71\x0d\x6b\x74\x2f\x31\x68\x47\x60\x39\x82\xfe\x2e\x1f\x07\xdb\x3c\x22\x31\x6d\x79\x5d\xce\x7b\x74\x1d\x7c\xac\xc8\xcd\xe9\xc2\x42\x14\xda\x2c\x9f\xd1\xb2\x26\xa5\x86\x8d\xe1\x36\xb1\x65\xdc\x51\x7c\xda\xf7\x03\x1f\x0e\xbe\xa1\xcb\x58\xb1\x0d\x8b\x2c\x0a\x91\xf6\x34\x11\x36\xd6\x47\x48\xa0\xfa\x65\x69\x6f\x14\x0a\x51\x02\xb9\x0e\x13\x44\xf8\xa4\x56\x58\x3a\x78\xb0\x9d\xf7\xd3\xac\x60\xd0\x1a\xd3\x71\xe9\x12\x3f\x5a\xb1\xef\xf9\xf6\x62\x66\xb8\xe6\x8b\x37\x7f\x4d\x01\xfa\xaf\x4d\x7a\x25\x1b\xd6\x17\x42\x44\x0f\x0f\x25\x77\x47\x9f\x39\x20\xff\x5e\x2a\x9f\xcc\x26\xbc\x63\x98\x26\xa1\xcd\x5c\x9c\xeb\x7c\xc0\xf6\xcc\x3a\x1f\xb0\x6d\xae\x9f\x97\x0d\x66\x3c\xdb\xf0\x0e\x9e\x3e\xf6\xfb\xa3\xf4\x14\x31\x96\x7e\xaa\xe3\x01\x39\x8f\x8d\x55\xe1\xff\xb2\x52\x8b\x1a\x25\xf6\xd0\x90\x7c\x15\x91\x2d\x48\xc7\xf1\xd7\x4a\xd5\x71\xfc\xb5\xc0\xc3\xc1\xcc\xc2\x42\x94\x0d\x68\x9f\xe6\x5e\x3f\x3a\xbe\xd2\xf8\x77\x70\x33\xe2\x47\x15\x76\x8b\xab\x93\xda\x9f\x81\xca\x07\xb6\x0f\xb8\x28\xa2\xe5\x78\x23\xf0\xb2\x92\x97\x54\x72\xf5\x08\xb0\x61\xa0\xbc\x8d\xcb\xf5\x8a\x07\x5e\x80\xc0\x97\x3d\x07\xa3\xcc\x10\x21\x8e\xde\xde\xc4\x06\xcc\x27\xc1\xd3\xca\x95\xa9\x48\xc3\xcc\x14\x51\x48\xa3\x03\x01\x10\xa4\x23\xf8\xb8\xa3\xd0\xbb\x69\x62\x0b\x93\x31\x62\x47\x16\x22\x25\x6e\xf9\x2e\x62\x35\xd7\x8a\xf5\x6d\xd9\x52\xf5\x41\xcd\x21\xc6\x96\x39\xc6\x81\xd7\xc3\xbf\xa4\xe4\xbf\x62\x9b\x14\xab\x33\x0a\x9d\x7a\x51\x79\xd4\x4e\x03\x1d\x84\x25\xe7\x3d\x25\x92\x7d\x5a\x99\x00\x3e\x50\xee\xdf\x0b\xd6\x64\x5b\x5a\x4e\x2b\xe3\x56\x39\x01\x98\xf3\x61\xea\x61\x8a\xdd\xe5\x7b\xe9\xd7\x11\xaf\x9f\xc6\x9d\x22\x88\xb9\x8d\xf5\x47\xbc\x14\xbc\xa2\xc6\x87\x13\xa0\xdc\xbc\x48\x33\x5e\xb9\xc5\x1a\xe2\xba\xae\x9a\x5d\xaf\x4d\xf3\xb9\x7d\xd5\x63\x1e\x0d\x6c\x52\x70\x79\x03\x94\x52\xc0\x2b\xf9\xb8\x41\x68\x72\x6f\xbb\x67\x87\x51\x58\xb4\x94\x70\xe4\x31\x2c\xa5\x82\xaa\x74\x7e\x66\x71\x1a\x2e\xd1\x57\x6b\x47\x0b\x3e\x56\x4d\x1a\x93\x65\x66\x75\xa6\xb5\xce\x3f\x1b\x1b\xff\x86\xb1\xd2\x74\xbc\x35\x01\xe5\x67\x51\x29\xc1\x61\x3c\xa6\xc4\x38\x97\xec\xd3\xd5\x93\xc2\xd0\x86\xd9\x37\x36\xa3\xcb\x81\x62\xdb\xdc\xa5\x37\x80\x20\xfd\x65\x62\x0c\xf0\xf0\xe7\x1c\x09\x95\xbd\x2b\x54\xbf\x12\x0b\x75\xba\x6b\x24\x79\x53\x1d\x9f\x55\xfc\xa8\x54\x6d\xdb\x37\xf1\x38\x30\x54\xbf\x1f\x28\x95\xa1\xbb\xda\xd1\x7a\x6a\xec\x51\xda\x77\x09\x2e\xc2\x76\x26\x5e\x4f\xe7\xd6\x2d\x15\x5a\x3d\x28\x55\x26\xf4\x0d\xc0\x42\x30\xc1\x6f\x29\x1f\xcd\x2a\x32\x89\xa5\xcc\x85\x39\x7f\x46\xbb\x76\x9d\x09\xb6\xb9\x2c\xe0\x85\x79\x92\x58\xe7\x62\x7b\xc7\x57\x3d\x2f\x68\x94\xe4\x15\x45\xa0\x8b\x92\xe5\x74\x49\x18\x47\x0a\xfc\xf6\xbc\x03\xbf\x35\x2c\xb8\x55\xc4\x93\x99\x55\x13\x2b\x65\x6c\x96\x58\xe2\x13\xd7\x8e\xef\xa6\xcb\x24\xbb\xe6\xf8\xf8\x7f\xa5\x22\xd2\xbf\xaa\x85\xe7\xcf\x3d\xd7\x36\xbd\x17\xab\xa0\x05\x85\x1f\xf4\xb3\xbf\x4e\xd3\x84\x8f\x9b\xfc\xa9\x17\xd3\x14\x15\x1f\x11\x83\x6c\x39\x6d\xd5\x13\xaa\xe2\xf3\x3b\x08\x3a\xa5\x65\xec\x89\x68\x79\x91\xc6\xc5\x4b\x03\xb8\x60\x7c\xc1\x49\xc6\x7a\x4f\x84\x4b\x6a\x3d\x08\x4d\xc6\xc0\x72\x36\x0c\xa5\xbf\x13\xf3\x50\x1d\x63\xbf\x98\x42\xa8\x09\x41\xea\x06\x35\xbc\x8e\x01\x11\xc4\x28\x2b\x3c\x3a\x69\x48\x7a\x4a\xee\xb7\xd5\x8e\xf4\x3b\x58\xec\xd0\x05\x7a\xbb\x54\x6d\xf4\x4d\xd4\xe7\x44\xfd\x00\x84\x05\x0c\xe7\xeb\x35\xd0\x45\xb5\x3d\x47\x89\xad\x62\x92\x88\x1a\xb3\x2e\xcf\x40\xb4\x2b\x5d\x84\xf5\x4f\x78\xc7\x8e\xf6\x60\x14\xf6\x69\xa1\xc7\x9b\x03\xbe\x98\x8f\x9b\x4c\x66\xba\x86\xc7\x14\x76\x41\xe6\x92\xf3\x49\x93\xcc\x4a\xcf\x0e\xd3\x49\xf7\x48\x20\x72\x04\xb6\x2c\x03\x6a\x10\x15\xf9\x28\x9a\x52\xd2\x9f\x50\x0f\x9c\xa0\x65\x23\x06\xbf\x59\xfe\x7c\xfd\x77\x8a\x2a\x80\x4a\x07\x83\x51\x12\x85\xe8\x99\x4e\xa9\x59\xf8\x04\x2d\x2d\x68\xdd\x3f\xd9\xf1\x9b\xc6\x07\xaa\x6b\x90\x9b\xa4\x97\x4f\x4f\xb8\xec\xb7\x9c\x8a\x31\xa4\x27\x44\x0b\x52\xfb\xf5\xd7\x8b\x68\x2b\x51\xde\x97\x89\x2d\xc2\x23\x3e\xe9\xf0\xe1\x40\xd7\xe6\x91\x5d\x94\xde\x97\x04\x45\x53\xde\x52\xae\xae\xac\x3f\xb7\xaf\x1d\xa6\xa3\x24\x8c\xe2\x29\x45\x0a\x67\xf3\x09\xf1\x26\xf6\x41\xe3\xa9\x26\xa2\xa5\x2b\x3f\xa3\xb2\xd0\xe4\x9c\xff\xb4\xc3\xf5\x87\x69\x56\xa5\x0d\x2e\xd9\xc0\xd0\x7c\xa8\x09\x07\x0f\x3f\x12\xa3\x21\x42\x22\x4a\x3c\x44\x8b\x8a\x6c\x57\x52\x5e\x83\xa8\xb0\xbd\x69\xaf\x14\x7b\x49\x23\xf9\x81\x42\x64\x91\x01\x4c\x2a\x51\x1c\x98\xe0\xa6\x2d\xe5\x9b\x7d\x44\x7b\x1e\xeb\x39\x9f\x28\x70\xcb\x77\x94\x82\x07\x73\x5b\x31\xc8\xd6\x10\xac\xf0\x49\xa9\xc2\x89\x0b\xb5\x29\x37\xb7\xaf\x1d\x57\x4f\x27\x4e\xf2\x7e\xc4\xfa\x7c\x42\x5b\x51\x2e\x5d\xa7\x5c\x25\x76\x18\x9b\x28\x21\xda\x02\x76\x98\x42\xc1\x51\x4f\x50\x54\x8c\x0d\xe6\xb4\x8a\x01\xa1\xe8\x82\xee\x4c\xab\xf3\xb8\xce\x3e\x6c\xf6\x18\x85\x2b\xd8\x89\xee\x2a\x10\xff\x96\xb1\xf2\x9d\x78\x95\xea\x70\xa2\x3b\x8f\xdd\x52\x21\xb9\x9f\xe7\x31\xf9\x7f\xa1\xc5\x8f\xe7\x73\xad\x6c\x3d\xf7\x9c\x1c\x2b\x29\xb3\x47\xd1\x39\xc2\x36\xfc\xef\x4a\xdf\xd1\xbc\x56\x7a\x75\xd2\x5b\x81\xd2\xf9\x7f\x43\x05\xd5\x45\xdf\x24\x4b\xf9\x62\xb4\x4c\x9d\x59\xdf\x37\x7f\x93\xae\x90\x8f\x9b\x2a\x93\x5d\x6b\xbc\x15\x96\x48\x47\xb5\x9c\x86\xc2\x09\xdd\xa2\xb5\x26\x0b\xfb\x9b\x54\x5f\xe7\x18\x7d\x3b\xc2\x35\x76\xf3\x72\xf6\x12\xbe\x3d\xfb\x7f\x4f\x52\x2c\x14\x13\xf2\x58\xad\xf7\x27\x63\xdb\xe6\xb9\x8d\x0b\xd8\x60\xa3\x4b\x77\x44\x8b\xb2\x1d\xf1\x6d\xda\x2a\xb1\x8b\x96\xad\x0a\x70\x5f\x55\x56\x7f\xaf\x36\xe1\x7a\x56\x4c\x11\x3a\x2f\x20\x60\xa7\xc0\xb2\xe3\xe3\xc0\xab\x5f\x25\xa3\x22\x8b\xa4\x33\xaa\x6a\x42\xca\x64\xe9\x6d\xd5\xe2\x29\xa2\x41\x9a\x51\x9f\xa1\x1a\xea\xe8\x1c\x1e\xc7\xa6\xc5\x27\x35\x44\xc8\xae\x5d\xed\x25\xcb\x76\x2d\xf8\x42\x94\x37\xf1\xf7\x58\x18\x51\x8c\xfe\x72\xa0\x4d\x81\x26\xe6\xe6\x70\xc5\x4c\x55\xa3\x04\xc3\xea\x2d\xc4\xda\xd8\x01\x81\x51\x93\xac\xa7\x0e\x4c\x9e\x6b\x77\xb3\xc8\x2e\xc4\xab\xd3\x7e\x2f\xbb\x8d\xce\x23\x66\x27\x90\x6b\xe8\x4a\x1c\x55\x52\x1b\xdf\x2c\xd7\x77\xa0\x77\xed\xda\xd3\xee\x45\x99\x25\xb7\x73\x27\x3e\x82\x17\xf1\x8e\x7a\x29\xef\xd4\x56\xf5\x5d\xbb\x60\x90\x43\x4b\xa6\xab\x3e\x28\xb3\x65\xdf\xad\x7b\xd1\xbc\xf4\x12\x16\x3d\x14\x96\x10\xaf\xf1\xf1\xb8\x2e\x20\xd5\x33\x85\x41\x1a\x5f\x30\x94\x5d\x78\xe5\x98\xaf\x98\xa2\x57\x03\x8a\x71\x1c\x00\xd7\xc3\x7b\xce\x28\xd9\x9d\xbe\xc9\x8b\x55\x7a\xd0\x08\xa3\x8f\xe2\x41\xa3\xc0\xf2\x63\x7a\xd0\xc8\x18\x2e\x36\x98\xd0\xec\x6e\xe7\x85\x4d\x12\x5b\x14\x5c\x64\x73\x72\x93\xaa\x3d\xe7\x16\xb4\xbc\xc8\x22\xce\xf3\x59\x02\x5c\x91\x48\x8e\x2a\x04\xce\x07\xfa\x62\xeb\x2f\x78\xe7\x7c\x7b\x98\xd9\x22\xcd\x22\xc8\xb5\x20\x69\x66\x77\x58\x3e\x99\x28\x2f\xe4\x45\xda\xd2\x6c\x75\x66\xbf\xf0\x49\x93\xed\x3a\xb5\x0f\xa7\x5a\x8a\xf0\xe7\x79\x46\x57\xf0\x69\xd1\x05\x50\x66\xbd\xcb\x96\xd5\x33\xd8\x7d\x11\x7f\x28\x56\x8c\x92\x95\xf6\x56\x13\x33\x88\xc2\x29\x1f\x37\x71\xea\x22\x79\xae\x1f\x55\xdf\xab\x4d\xad\x4f\xb4\x17\x47\xab\x1c\xa8\x08\xfd\xb7\xf5\xf9\xcf\x7a\xb5\x79\x8f\x3b\x53\x86\xf5\x61\x9a\x2c\x44\xd9\x20\x12\xe6\x10\x86\xcb\x59\xec\xc9\x7c\x52\x7a\x22\x45\x6c\x4d\x6f\x93\x2e\xc4\x56\x33\x44\xf7\x13\x10\x22\xdd\x0c\xd6\x4d\x64\x11\x1e\xf8\xf7\x81\x52\xd7\xfa\xb2\x13\xac\xcb\x57\x45\xe9\x7b\x4a\x81\x5c\x6f\x2a\x21\x8a\x0f\x4b\x85\xda\x3b\x57\x0b\x45\x3e\xd1\x1e\xda\xcc\xe6\x45\x96\x46\x4b\x78\xf5\xd8\x35\x4e\xd2\x6e\xc8\xc7\xca\x5d\xdc\xc4\x69\x62\x11\x9f\x61\xd9\x66\x39\x38\x6c\x81\x47\x4a\x8f\xd4\x64\x9a\x0f\x4e\xae\xa9\xa9\xb9\x60\xe2\xdc\x62\x27\xd1\x4b\x47\x7d\x1e\x0d\xd2\xa4\xe8\x6f\xa5\x65\x51\x41\xde\xbd\x9e\x11\xcd\x45\x94\xbf\xdf\xa7\x59\xc5\x72\xc5\x6a\x53\xfd\x8f\x4f\xd3\xca\x88\x0c\xf6\xbe\xd2\xdc\x7f\x82\xe2\x7a\x7c\xe0\x4a\xe0\xeb\x14\xc7\x15\x29\x85\x5c\xd1\xf2\xcd\xd5\x2d\x61\xbf\x3d\xaf\x34\xaf\x6e\x63\xbd\x16\x05\x41\x25\xe5\xfc\x21\xa6\x3b\x03\x3e\x83\x09\x04\xcc\xce\x79\x65\x7b\x29\xa5\x17\x86\x72\xca\x3b\x14\x4d\x75\x0f\x72\x62\x6b\x29\x29\xf6\xd6\x57\xe7\xf9\x76\xb1\x12\x91\x33\xab\x47\x33\xde\x0a\x3c\xca\x9f\x03\x5a\x11\x62\x50\x3d\xab\x7e\x94\x15\xf9\xb4\xdf\x9f\x4f\x6b\x02\xf4\x90\xee\x17\xc7\x6b\xca\x97\xe4\xaa\x2a\x4c\xc7\x66\x65\xd5\x66\x33\xf4\x2e\x84\xd9\x88\xbe\x82\xa3\x36\x3a\x77\x4b\x54\x4b\xd0\xbc\x68\xd1\x0b\xc0\xdb\x3b\x3b\xe9\xaa\x67\xf2\x96\xea\x18\x61\xf2\x0a\x91\x62\x52\xe7\xc8\x24\xab\x1f\xab\xbe\x1e\xf8\xf3\xbf\x2e\x15\xc7\xad\xc4\x4a\x81\x52\xf4\xef\x22\xff\x47\x95\x71\xad\xf4\x78\xb5\xef\xd2\x30\x07\x05\xe6\x68\xa9\x06\xec\x0d\x4c\x64\x4c\x80\xb3\x14\xc0\x70\xda\x18\xb4\x76\xec\xd0\xa2\x23\xcf\x4f\x48\x43\x62\x3f\x66\x7c\x0f\x56\x90\x77\xa9\x2a\x21\x04\x31\xda\x32\xd1\xcd\xbb\x46\xb5\x12\x71\x6a\xa4\x69\x84\xf5\xf3\x06\xc5\x72\xae\xbc\xb3\x67\x96\xc7\xdc\x75\xa0\x18\x05\x35\x4a\xef\x14\x57\xf8\x18\xfa\xac\xf8\x9f\x35\x05\x09\x5d\x31\x49\x62\xf0\x38\x31\x09\xb8\x44\xc4\x27\x1d\x1f\xb7\xf5\xd3\x95\x28\x5c\x6a\x51\xcd\x94\x15\x28\xb5\xb2\xea\x05\x17\x4b\x99\xe1\xd0\x64\x36\x29\x28\x12\xe0\xb8\x98\x44\x1b\x04\xed\x3e\xe5\x2d\x5a\xd1\xd3\xa2\x94\x79\xdf\xf6\xce\xc4\x06\x62\x62\x58\xf7\x09\xa2\x89\xde\x10\x10\xfb\x3f\xc4\xc3\x40\x4d\x6f\x4d\xe9\xfc\x33\xb2\xce\x79\xae\x54\xf7\xac\x8b\x90\x3c\x0e\x68\x9e\x21\x4f\x5f\xc3\x22\x2a\x41\x8e\x52\x51\x39\xaf\x34\x35\xb7\x8e\x7d\xed\x75\x98\x45\x49\x18\x0d\x63\xcb\x3a\x72\x4e\xf6\xaa\xfa\x65\x94\xf3\x5f\xd1\x1a\x08\x27\x6b\x61\xca\xbe\x17\xda\x99\x19\x46\x3d\x65\x86\x7e\x43\x19\x71\xde\x70\x40\x5c\xc3\xda\xac\xbe\xba\x7d\x5a\xf3\x69\x4e\x7f\x64\x4e\x37\x34\xab\x2e\x1a\xe7\x56\x0f\xf6\x07\xe9\xfb\xac\x5f\xe6\x0f\x1e\x6c\x47\xc9\xb2\xc9\x22\xd3\x8d\x57\xa7\x7c\xbd\xf5\x0f\xb4\x96\x30\xb4\xe2\x11\x9a\x5c\xd6\xae\xf3\xbd\x65\x2a\x68\xcc\xed\x63\x6e\x1c\x3c\xbc\xf9\xd8\xf3\xf6\x4d\x6e\xb9\xca\xa3\xf0\x30\x9e\x5d\xa4\xc4\x15\x43\x9b\x59\x13\x73\xaf\x1c\xb3\xf2\xbb\xa5\x53\xdd\xfe\xff\x7f\xb7\x16\x9f\xc8\x8d\x8f\x92\xb0\xa5\x02\xa1\x73\xaa\x3e\x7f\xce\x6f\x8a\x40\x0a\x45\xf9\x40\xa9\x26\xa3\x1a\x2c\x37\x5a\x6f\xcd\x55\xeb\x70\x9a\x15\xa2\x57\x81\x04\xe2\xb2\x72\x7a\xfd\x37\x04\x94\xb8\xac\x2a\xa7\xdd\x51\x56\xb4\x94\x30\xe9\x69\x2d\x4e\x74\x5a\xdd\xae\x49\x92\x11\xbb\x6b\x7c\x81\x59\x84\x6b\x97\x15\x72\x20\x31\xcb\xc4\x29\x55\xe2\x1c\x13\xfa\x1f\xfe\x9b\x96\x23\x53\x85\xa8\xff\xef\x34\x4c\xea\x04\x45\xa6\x3b\x71\x4e\x83\x45\x99\xc5\x69\xf9\x64\x2c\xdb\x52\xdf\xc4\x0b\xfd\x2a\x66\x93\xbf\x16\x92\x4c\xf5\xd3\xc2\x91\x59\x3f\xcc\xaa\x00\x3d\x59\xcc\x6c\x2f\x12\x6a\x02\xbb\xc9\xd0\x73\x14\x67\x99\xed\x7a\x75\x2a\x38\x15\x15\xbf\x03\xf4\x27\xf8\xb8\x49\x1b\xab\x30\xdd\x38\x8d\x7a\x4a\x2e\xf0\x88\x52\x34\x3f\xb2\x5e\x43\xa1\xca\x36\xf6\xcc\x6e\xf3\xd4\x9c\xaf\x63\xd1\xc6\xc2\x85\xb4\x47\x26\x32\x5d\x86\x33\xc9\xf1\x1d\x8e\x6f\x71\x89\x5b\x6a\xc2\xbe\x74\x76\x51\x49\xa7\xfd\x65\xa0\xd2\xb9\xf3\x58\x2f\x18\x5b\x41\x13\x8b\x55\x05\x15\xae\xa4\xb0\xbd\x27\xab\x0b\xc3\xfe\xf3\xf4\xd8\x83\xbe\x7f\xaa\x53\xed\x32\x4e\xf8\xe8\xf3\x9f\x65\x6c\xce\xd9\x52\x75\x26\x51\x4f\xc3\x42\xfb\x8f\xc7\x8a\xe0\x71\x49\x79\x1b\x71\x17\x0e\x3b\xc3\xc7\x69\xd3\x65\xd5\x1d\x54\x5d\xf0\xde\xcf\xea\xf0\xfd\x5e\xa9\x0d\x86\x6e\x2a\x8d\xc0\xde\x3f\x03\xc5\x88\x42\xcb\xff\xf6\x9f\xa3\xd9\x83\x1d\xe8\xe3\x63\x4f\xed\xdc\x36\xf6\x80\xf6\xbe\x8d\x87\x24\xfd\xba\x53\xf8\xc5\xc0\xac\xd1\xf1\xfb\x4f\x13\xc1\x53\x47\xda\xd2\x17\x56\x38\xe0\xe3\x88\xf4\xc4\x6a\xc9\x33\x23\x6f\xd5\x95\x46\x5e\xd8\x4b\x38\x62\x2f\x71\xc7\xee\xc2\xca\xf9\xf6\x52\x13\x04\x3e\x4f\x17\x0a\x9b\x70\x07\x4c\xe4\x05\x5a\x4a\xec\x67\x7d\x19\xf6\x17\xdb\xbe\xae\xe6\x4c\x68\xbc\x21\x8d\x6b\x8a\x0e\x47\x31\x20\x9a\x62\xb4\xa2\x5a\xd2\xe0\xc5\x21\x53\x3f\xdf\xa4\x31\xd7\x8d\x7a\x3d\xc7\x8e\x74\xe2\xac\x0e\xee\xf0\x8a\x32\x2c\x3a\xad\x0c\x1c\x17\xd3\xb8\x97\x87\x7d\x1b\xf5\x6c\xd6\xd2\x08\x36\xde\x00\x85\xcb\xb1\xfe\xe9\xed\x99\x6d\x47\x49\x98\x55\x4b\x04\xef\x4a\xd8\xfb\x19\x1b\xc2\x27\xaa\xb4\xdf\xb3\x83\x34\xcc\x4c\xb8\xda\x52\x7c\xeb\xa3\x98\x07\x7c\xd2\x10\xad\x52\xaa\x99\x45\xdc\x48\x43\x08\xf8\xab\x0a\xcb\xf2\xab\x4a\x57\x3c\x1f\xa6\x4b\x36\x5f\x49\xab\x8d\xc5\xb7\xbd\x8f\x69\xd0\xf6\xb1\x1a\x72\x89\x0a\xb4\xc3\xa1\xcd\x70\x59\x88\xb8\x8f\x94\x9e\x5a\x79\xa4\x06\xa8\x27\x8d\x0d\x6b\xf2\x34\x81\xf8\x9d\x07\x9e\xab\xb0\xee\xbc\x7b\xab\x99\x11\xc8\x3f\xbe\x10\xe6\x71\x7c\xdc\xc4\xf0\x8d\x4d\xd8\x17\x65\x16\xec\x2d\xaf\x95\x7e\x9f\x79\x4d\x61\xd4\xc3\xd8\x0c\x88\x39\xe1\x4b\x4d\xe7\xf5\x38\xa9\xe5\xd6\xd5\x0a\x17\xa6\x79\x81\x65\x9a\x9b\x6a\x2a\x72\x7f\x53\xe5\x5e\x45\x7f\x34\xe8\x4e\x70\xcb\xe9\x0f\x85\x67\xee\x39\x96\x8b\xe9\xb2\xcd\x12\xc8\x17\x57\xa3\x97\xc5\xa4\x90\xd3\x89\xb2\x54\xdd\x92\xe5\xf9\xf6\x30\xca\x8b\x14\x55\x30\x0e\xe6\x02\xa5\x95\xf3\x43\xb5\x7d\x16\x54\xb2\xdd\xa3\xe2\x7c\x4f\x92\xf6\x41\x85\x5d\xf4\x62\x40\x72\x11\x9e\xbe\x75\x49\x65\xe4\xbd\x68\x61\x21\x0a\x47\x71\xb1\x4a\x04\x1c\xd4\x3d\xae\x61\xb5\xc7\x3a\x0e\x5d\x0f\x3e\xa6\x35\x99\xff\x48\x19\x14\x65\xd6\xf4\xe4\xe9\x4b\x4e\xae\x80\xaf\x37\x15\xfe\xa4\x6b\xb2\x2c\xb2\x19\x09\x6e\x73\x90\xb0\x36\x41\xad\x2b\x7d\x9d\x4a\xd7\x62\x36\x76\xfc\x77\xf4\xd8\xc1\x9d\x82\x0e\xd6\x00\x57\xdc\x55\x26\x6b\x0a\xc1\x75\xfd\xa8\xdd\x33\xbb\x07\x8c\x21\xeb\x91\x48\xbc\xc8\x22\x7f\x91\x15\xd7\xb7\x8f\xfb\x69\x62\x57\x91\xc0\x4f\x38\x37\x63\xb7\x10\x96\x1a\x9f\x05\x9a\x39\xab\x7a\xd0\x59\x94\xdb\x84\xb2\x46\x67\xb2\xe7\x24\xf8\x6e\xd0\xe5\x4b\x0b\xda\x6f\x44\x57\x6a\x41\x1d\x0d\xdc\x2c\x5d\xe9\xc9\xa5\x37\x05\x0b\xfe\xfd\x0e\x6c\x91\xa5\x03\xdb\x8b\x0c\x81\x0b\x85\xa1\x4d\x9f\xe4\x13\xc5\x0f\x73\x0b\xd9\xa3\xf4\x07\xa8\x2e\x30\x1c\x15\x37\x74\x84\xd6\x6b\xc4\xc1\xaf\x22\x9b\xc7\xde\xcf\x4e\xf9\x78\x59\x57\x30\x7c\x11\xec\x5e\x29\x55\x01\x1c\xdc\x48\x06\x65\x4f\xf8\x02\xd0\xd3\x45\x3e\x7d\x5d\x2b\xe1\x5c\x51\x78\xd0\x23\xaa\x4f\x5c\xd8\x6c\x10\x25\x26\x9e\xf6\x70\xfc\xbf\x2e\x27\x7b\x60\xce\xf1\xf0\x92\xaa\x0b\xfc\x75\x6d\x2d\xd8\xb1\xa3\x9d\x8f\xf2\x3e\xb7\xf0\x04\x7a\xa3\x1e\x2e\xaa\xf6\x82\x5f\xdc\xee\xa9\x04\x8b\x69\x6c\x73\x8b\xe0\x1a\x37\x0b\x60\x1d\x1f\x2b\x8d\x03\x27\x6a\x26\xc0\x1c\x36\xdd\xc1\x83\x12\x07\x9e\xf5\xa1\x61\x15\xb9\x45\x83\xae\xcd\x62\x93\xf4\x94\x20\x22\xee\x47\x18\x1c\x5e\xe2\x37\x4c\x93\x30\x1e\xe5\xd1\xb2\xad\x36\xd9\xb9\x7d\x5e\x28\x68\xa7\xa8\x7c\x5c\x54\xa1\x54\x9a\x15\x8f\x57\x5f\x4a\xb9\xdd\x36\x50\xb1\x11\x11\x6e\xe9\xe8\xe0\x8d\xd7\x03\x84\x43\xef\xd3\xb0\x45\xce\x31\xd5\x51\xa0\x92\x99\xb1\xc2\x93\x6e\xe9\x78\x8c\xd5\x31\x3c\x4b\x4c\xce\x8d\xe3\x09\xe7\x55\x7f\xfb\x73\x4f\x02\x1f\x24\xb4\x78\xa5\x49\x70\x2c\x50\xd7\xaf\x9c\x20\x4c\x98\xd9\x7c\xba\x8a\xce\x50\x36\xbf\x07\x9c\x80\xe8\xa9\xf8\x37\xf1\x9d\x52\xb5\xde\x4e\x38\x68\xe6\x62\x66\x92\x5e\x94\x32\xfd\x13\x17\x7e\x45\xf9\x12\x5c\x99\xa8\xde\x5a\xd3\x7b\xc6\xaf\xea\xd7\x34\x9c\xef\xac\xf2\xd6\x3e\x4b\xe0\x30\x8e\x3b\xa8\x52\x82\x14\x9f\x3b\x07\xb8\xbd\x3f\x60\x18\x29\x02\x25\xce\x43\x11\xec\xdc\x54\x92\xfd\x5f\x43\x82\xef\x50\x86\x0e\x89\xcf\x78\x7d\x2c\x71\xbf\x8d\xbe\x0f\x0a\x69\x0f\x79\x31\x62\x27\xbc\xa0\xa5\x09\xc0\xd5\xf3\x15\xeb\xf3\x09\x81\x56\xe5\x97\x77\x0a\xe5\x7a\xbe\x32\xc4\xbb\xd8\xea\xbe\xad\x28\xbb\x99\x5d\x8c\xc8\xba\xc4\x31\x81\x9a\xc4\x72\x1b\x7c\xe9\xe2\x28\x59\xb4\x5e\x3e\x4d\x9b\x74\x39\x79\xd1\x79\xcf\x49\xf3\xa5\x2b\x7b\xa8\x6f\x62\xf6\xf4\x61\xbd\x02\x02\x51\x8a\x76\xc1\xa3\x6e\x65\x78\x29\x37\xd3\x4a\xfd\xf2\x24\x95\x92\x50\xff\x64\x22\x94\x23\x88\xec\x11\x13\x91\x93\x2e\x11\x1e\x66\x69\x92\x8e\x92\x50\xd6\x57\xb1\x44\xa8\xae\x50\x1c\x0f\xfc\x96\x3f\xb0\x26\x1f\x65\x64\x59\x40\x01\xab\x5c\x19\x3d\x50\x2c\x73\x2f\x4f\x68\x07\xd4\x16\xf4\xb9\x7d\xed\x65\x5b\xd8\xcc\x24\x82\x10\x66\x43\x43\x0c\x0a\x71\x37\xf4\xb3\x36\xb3\x10\x3d\x61\x84\xa6\xb6\x7e\xb8\xa3\xfa\x65\x36\x59\xb4\xf1\x12\x4b\x5d\x3b\x99\xd1\x9d\x9e\x7f\xad\xf0\x37\x77\x5c\x9d\x6a\x21\x26\xeb\x24\x4d\x74\xbe\xa8\xf0\x31\x17\x55\x1e\x6a\x0f\xd9\x70\x54\x4c\xd4\xb5\xcf\x97\xbe\xde\x31\xd1\xa7\x04\x5f\x8e\xff\x43\xd5\x23\x17\x6d\x36\x30\xc9\x2a\x9b\xb3\x8a\x6a\xbc\x8f\x83\xd8\xfb\x0f\xe3\xfc\x20\x12\x7c\x07\x87\xaa\xae\x1f\xbb\xc7\x35\x25\x5c\xf8\x7f\xe0\x15\x73\xf1\x39\xf0\xe2\x79\x97\xe8\xe2\x80\xd9\x39\xa5\x9e\xa7\x8d\x2d\x56\x7e\x8c\x04\x48\xf9\x33\x40\x66\xcc\x65\x07\x69\x1d\xf5\xd3\xa1\xed\x01\xc7\x27\x0d\x70\xfa\xa8\x94\x90\xe8\xa7\x51\x0c\x3a\x4c\x23\x06\x0b\x28\xef\x6e\x98\xbb\xad\x4e\x03\x8f\xb3\x2b\x56\x5c\xc2\xa2\x39\x83\x19\xce\x27\x0d\x5e\x5c\xed\x38\x5d\xb1\xd9\x8c\x9f\x2c\x17\x31\x57\x99\xe1\x4e\x37\xee\xa4\x06\xaa\xcb\x62\xba\x36\x96\x14\x41\xcc\x3b\xd7\xee\x7e\x6a\x93\xe8\x10\xba\x62\x80\x23\x41\x82\x4e\xe2\x1d\x0f\x03\xe1\x6e\x31\xaa\x7a\x0f\x5d\xd0\xb9\x10\x93\x06\xd3\x74\xf5\x21\x07\x02\xd8\x3f\xeb\x84\x5a\xe9\x9b\x01\xc4\x7c\x5c\x99\xa4\xaf\x35\xba\xb2\x8c\x8a\x85\x38\x5d\xe1\xd0\xdf\x59\xe0\x28\x58\x4a\xdd\x8a\x66\xcf\x6c\xdb\xd8\x22\x31\xd4\xd7\x16\x61\x7a\xa5\x3d\x75\xde\x89\x93\xf4\x22\x5b\x4c\x6b\xfc\x1d\x36\x6d\x44\x65\x28\x0d\x61\x91\x7c\xa7\x9c\x10\x59\x5e\xbf\x3b\xef\x98\x6b\x77\x4d\xbe\x64\x8b\xae\xa9\xd2\x55\x6f\x53\x8c\xd9\x2f\xc2\x9e\x1e\xf3\x76\xa7\x96\x74\x1d\x3c\x58\x65\x45\x7d\x9b\x51\xe7\x13\xb9\xe2\x2b\xa5\x9f\x2b\x57\xb0\x08\x60\x44\x9d\x6d\xd2\xd9\xff\xf9\xf6\x70\x94\x0d\x63\x2d\x22\x70\xa5\xf4\x61\xf3\x15\x25\x70\x98\x17\x51\x08\x64\x9d\xa3\x2d\xa1\xc0\x27\x01\xef\xcf\x7e\x94\x62\x09\xe0\xcc\x2e\xa5\x70\xac\x10\xcf\x10\x51\x76\x75\x04\xd1\xce\x8b\x74\x48\x11\xc8\xc4\x10\x94\xb2\xb0\xac\xb5\x26\xcf\xd3\xac\x18\x48\xdd\x8b\xd1\xc0\xca\x40\xf1\x82\xea\x2c\xa5\xd0\xe0\xd7\x6b\x24\x3b\xa6\xf2\x49\xa3\x10\x41\x6c\x46\x49\xd8\x6f\x29\x93\xbf\x1f\x2b\x14\xcd\x8f\x27\x6c\xd8\xf2\xc7\x68\xbc\xa1\x9a\xf4\x4f\x48\xa0\x79\xed\xa7\x09\x42\xc9\xae\x39\xa5\x36\x55\x54\xf5\xf2\x52\x19\x1e\xb6\x89\x62\x37\xb1\xb1\xa2\x76\x74\x9d\xd6\x1f\xa1\x6c\x28\x9d\x9e\x8b\x3f\xa3\xcc\x73\x9f\xa5\xfa\x14\x95\x43\x7f\xeb\xe7\x10\x11\xa1\x8f\x77\xcd\x0b\xdd\x8d\x06\x83\xa8\xa0\x99\x8f\x6b\x79\x9c\x3e\x8f\xfe\xc8\x9d\xd2\xe7\x71\xb0\x50\x74\x82\xab\xd5\xbd\xa1\x72\x75\xb8\x14\x61\x9c\x9e\xcd\xb7\x54\x1f\x60\xeb\x20\xdc\x08\x13\xdb\xf1\x09\x04\x0f\x13\x9e\xbc\x50\xfc\x44\x61\xe8\x03\x2c\x6d\xd8\xf7\xee\xa8\xce\x10\x7a\x5f\xc2\xef\x93\x90\x6b\xa5\x1f\x0d\x73\xb3\x62\x7b\x53\x3a\x11\x52\x68\x11\x84\x02\xc2\x41\x7e\x42\x41\xdb\x47\xb9\x90\x05\x04\xb1\xe8\x73\xa6\x63\x4d\x96\x6c\x3d\x6b\x87\x34\x2d\xd9\x90\x80\xc6\xab\x8b\x68\x3d\xee\xec\xfd\x06\xf1\xd0\xb9\x76\xba\xb0\x90\xdb\xc2\x03\x78\xa4\xaa\x53\x7d\xa1\x14\x75\xd6\x7f\x6e\xe7\x7c\x3b\xec\x67\xe9\x20\xcd\xd3\x81\x14\x2e\x98\x73\x4a\x3f\x2e\xfc\xd3\xa7\xd4\x06\x98\xd8\x8c\xdc\x77\x55\x42\xf9\xce\x44\x39\x97\xda\x57\x58\x2c\x2f\x97\xd4\x09\x63\x19\x25\x45\x70\x7e\xa7\xf4\x49\xd2\x57\x88\x8a\xc8\xc7\x2a\x80\xa2\x4a\x7d\x8a\x78\x00\x05\xb7\x07\xea\x1b\x6e\xd0\xab\x43\x1b\xf5\x48\xf9\xf4\x64\x3d\xf8\x73\x73\xed\x1d\x3b\x36\xfb\x7a\x2c\xfc\xc7\x11\x12\x1c\x46\xb2\xc6\x4d\x49\x55\xe9\xbe\x4e\xd7\x04\xbc\xf3\x71\x5d\x50\xbd\x4b\x9d\x41\x11\x09\x7e\x54\xb5\xc9\xe3\x27\xbd\x07\x31\xab\xb3\x89\x4e\xa8\x6f\x26\xfe\x3e\xb2\x11\x14\x81\xee\xeb\x85\xe5\x5a\xa0\x4c\x37\x1e\xef\x50\xbc\x8d\x99\x70\x4a\xe1\xb0\xb9\x5d\x84\x71\xfd\xc7\x4a\x40\x9c\x09\x0a\x88\x42\x66\x3a\x14\x06\x0b\xd8\xce\xd7\x69\x6f\x71\x5d\x1b\x53\xff\x88\x1a\x0f\x37\xb0\x01\x73\xed\x42\x59\x09\x5c\x56\x37\x19\xdb\xc5\x96\xe2\x64\x9e\xd2\xa5\xcd\x53\x93\x6e\x2d\x36\xe3\x76\xad\x62\x9c\xdf\x50\x99\xec\x0d\xaf\x1b\x62\x92\x6a\x61\x9f\xf6\xd5\x2f\xa6\x88\xa8\xd5\xf7\x79\x2e\xc6\xdc\x55\xc8\x89\x9f\xec\x38\x4c\x4c\xba\x60\x78\xc0\xca\x76\xd9\x72\xaa\xbe\xf5\xdd\x96\x8a\xbf\x23\x72\x38\x98\x77\xad\xc5\x72\xa2\xcf\xa8\x02\xd6\xc4\x6e\x51\x22\x29\x97\xb4\x47\xc3\x3b\x84\x1a\xc1\x12\x75\xd2\x1b\x37\xfd\xe9\xc7\x3b\xca\x5b\xea\x21\x16\x1f\xfc\xd5\xed\x09\x84\x3e\x9a\x65\x08\x69\xbf\xed\x56\xc8\x05\xbb\x62\xf3\xa2\xa5\xc4\x75\x2f\x4c\xd8\xcd\x3d\xad\x26\xc5\x70\x14\x03\xa6\xf7\x51\xaa\x1b\x8f\x6a\x38\x9c\xee\x0a\xb3\x2f\xb1\xf4\xb1\x1a\x50\xe0\x00\x58\xee\x17\x71\xd5\xdb\x81\x92\x76\xba\xed\xd6\x44\x0a\x9c\x12\x81\xbc\x3b\xab\x37\x6f\xfb\xd6\xe4\x18\x9d\x0e\xa3\xd1\x40\x99\x3a\x4d\x2a\xbd\x4f\x68\x73\x99\x95\x96\x2f\x0e\x71\xbb\x8b\x4f\xb4\x36\x50\x66\x96\x6d\x2c\x57\x21\x7a\xf6\x5a\xdc\xde\xf7\x0a\xa3\xc1\x30\x8e\x16\x22\x49\x91\xf0\xf8\xaf\xa8\x26\xc3\x95\x5a\x99\x73\xf7\x0b\x7b\xdb\x83\x28\x21\xec\xae\x43\xd5\x9e\xd1\xf0\xd8\x86\xfe\xe2\x17\xda\x51\xb2\xac\xca\x74\x98\x26\xc8\x31\xf9\x78\xa2\xb4\x98\xdb\x2a\x14\xa3\x69\x80\xc2\x0f\x10\xee\x2c\x76\xa6\xe4\x70\x37\x50\xe3\x45\x44\xd0\x9a\x44\xee\x09\xb3\x33\xa5\x2c\xfa\x2f\x29\x2b\xd5\x3b\x0a\x15\x7d\x5c\xe1\x3a\xa0\x7a\xc4\xe2\x74\x80\x1f\x00\xfd\x88\x2d\xfc\x8a\x1e\xc7\x37\x1b\x9d\x2f\x32\x13\x25\xa8\x27\x69\xa9\x49\x81\xff\xfb\xd2\x47\xd4\xb3\x06\xd2\xaf\xec\x50\x35\x09\x41\xa1\x91\x2f\x14\x70\xe5\x1e\x9e\x45\x0b\x85\x44\x80\xae\xb6\xb5\x67\x56\x8e\x55\x66\x96\x17\xd4\xc6\xdc\xa6\x18\xe7\x77\x79\xe6\xf1\x19\x46\x3f\x56\xbb\x37\xe8\x5b\x90\xe2\xbe\xaa\xe4\x6e\xd7\x02\x65\x21\x74\x42\xf9\x5e\xbe\x4a\x49\x39\x5f\x61\xe9\xad\xe3\x68\x4e\x3d\xbf\xb6\x91\x22\x1a\x60\xe8\x36\x8f\xfd\x52\xf2\x0b\xff\xd5\x7f\x4e\xd4\x73\x96\xd8\xa1\x81\x20\x72\x3b\xdb\x75\x19\xac\xc8\xd2\x98\xb3\x4a\xec\x4c\xf7\xf1\x80\x10\x30\x5d\xd3\x15\x93\x7b\x7a\x90\x9f\xa6\xbd\xc9\xe9\x44\x38\xf8\xe3\x31\x25\xa2\xc0\xea\x76\x08\xca\x37\x42\xac\x0a\x18\xb3\x4b\xca\xe4\x59\x50\x66\x69\xa6\xe5\x9c\xce\xa8\xe6\xfe\x99\x5a\x46\xb1\xef\x05\xa8\xf7\x91\x94\x71\xcb\x2b\x7d\x7f\x8d\xc6\x1b\x1f\x37\x0e\xd7\x30\x4e\x73\x4b\xc4\x76\xda\x3c\xff\xc5\xb3\x14\xa2\xa1\x0a\x75\x52\x6b\x14\x9e\xc1\x73\xd0\x08\x0b\xb7\xc7\x39\xa4\xdd\xbd\xda\x62\xb6\x73\xbe\xbd\x30\x62\x79\x52\xc7\x6a\x77\x18\x9b\x7a\x1f\x6e\xff\xec\x7c\x7b\x68\x72\xd7\x36\xc7\x6e\x0f\x5c\x13\x1f\x2b\x0a\x69\x98\x0e\x06\x36\x0b\x2d\x80\x01\xd2\xa7\xa3\x0f\xf2\x89\x42\xe7\x90\x63\xce\x26\xfa\x4b\xe4\xe0\xef\x61\x43\xe1\x93\xc0\xd3\x7d\x59\x96\x9a\x5d\x6d\xe9\x7a\x5d\x39\xc2\xb5\x91\xce\x2b\x35\x93\x34\x2f\x6c\x92\x47\x5d\x6e\x51\x4a\x8b\x55\xe9\xa5\x9c\x57\x75\xa6\x74\x25\x79\xc6\x83\xf3\xff\x12\x09\x3b\x16\x0b\x58\xc9\x4b\xbe\x41\x01\x12\xe6\xe9\x5f\xe2\x5d\x60\x80\xf1\x98\x64\x7b\x4e\xd4\xdd\x90\x2b\x5c\x55\x26\x30\xaf\x97\x7e\x0d\xfb\x4a\xa9\xf5\x83\x8f\x51\xa9\x51\xd8\x86\xf4\x10\x10\x95\xb0\x30\xb1\xc8\x44\xb6\x76\xcc\xad\xcd\x8c\xf5\xe6\x8e\x38\x9f\xe1\xce\x28\xe3\xf3\xf5\xd1\xf8\x47\x3c\xb3\x91\xd4\x3a\x10\x86\x72\xfc\x8f\x42\xf5\xb8\xb6\x74\xed\x9f\x7d\xbe\x5d\x98\x18\xcd\x49\x84\x69\x37\x54\xf7\xf8\x46\xa3\xf0\x91\x3d\x44\xde\x32\x8a\x56\xc5\x80\x5d\x3e\x51\x9b\xd3\xd0\x64\x26\x5e\x7d\x49\xe8\x87\x4a\xc9\x7f\xce\x29\xf9\x37\xc0\x67\xf3\xd8\x5a\xd0\x03\x31\x8c\xae\x29\x42\xe5\xb5\x2a\x0a\x70\xc1\x56\x92\x2e\x1b\x60\xdd\x5d\x74\xcc\x44\x68\xe9\x53\x37\x6e\x12\x2b\x26\x2a\x5a\x0a\x84\xc6\xb3\x8b\x4f\x02\x2f\x4d\x9e\x91\x83\x94\xe2\x26\x2a\xa4\x5c\x1d\x59\xb3\x7b\xcf\xee\xb6\x29\x0a\x6e\x7f\x56\x5f\x8f\x30\x9a\x23\x0e\x3e\x51\x73\xa2\x37\xb2\x31\x03\x00\x31\xaa\xaf\x2b\xab\xe7\xeb\x6e\xe3\x8e\x0a\x13\x47\x26\x31\x05\x2c\x5a\x11\x88\xac\xd1\x43\x11\xd7\x32\xe5\x4f\x72\xad\xf6\xd6\x76\xec\x60\xb3\xb3\x49\x06\xff\xf7\xcb\x09\x36\xa2\xb7\xfc\x5d\x31\xc0\x06\x60\x50\x8f\xf1\xe5\x7c\xd2\xa0\xe1\xb3\x60\xa2\x58\x00\x9d\x08\xef\x6e\x95\x1e\x8d\xce\xaf\x1b\x37\x3f\xd5\xd9\xae\xdb\x81\x21\x41\xeb\x7c\x4f\x24\xf0\x5b\xd0\x1f\xe3\x57\xa5\x59\xa2\x74\xd9\xff\x58\xa1\x89\x16\x46\x79\x6e\x01\xaa\x47\xfa\xf1\x17\xb4\x59\xf1\xb1\x0a\x66\xe7\x3e\xbd\x77\x4a\x27\xb6\x13\x99\xb0\x62\x65\xbb\xba\x58\x6c\xa9\xc0\x33\xed\x57\x9c\xa9\xce\x04\xf7\xb9\x9a\x64\xe2\xe7\xe6\x55\xbc\x2f\xa9\x7e\xfe\xc0\xe4\x85\xcd\x16\x46\x71\xbc\xda\xd2\xe6\x60\x98\xb8\x02\x50\xf5\x6e\x2b\x69\x95\x2a\x4f\xe9\x96\x04\x3d\x39\xf1\xa3\x55\x75\xd9\x23\x35\x95\xaf\x2a\xb2\x0f\xfb\xd1\x4b\xe9\xb0\x9f\xd9\x84\x91\xed\xf8\xe3\xe3\x64\xdc\xc0\xc7\x0d\xbc\xdd\xdd\xed\x45\x93\xf5\x2c\x30\x07\x78\x70\x3f\x2c\x95\x6e\xc1\x0f\x3f\x52\x73\x39\x27\xe3\x7c\xa9\xed\x08\x5e\x5b\x89\x21\x7f\xd9\x75\xdd\x7a\x26\x5b\x89\x12\xf1\xb7\xc5\xa6\x7d\x5b\xef\xe0\xb7\x6b\xd1\xf2\xce\xf9\x76\x37\xa6\xf9\xe7\x64\x58\x5e\x0b\xfc\x46\xf6\x5a\xed\x56\x0e\x54\x4b\x47\x91\x8d\xc2\x25\x60\x21\x04\x99\xae\x61\xea\x0a\xde\xbd\x10\x65\x03\xea\x98\xce\xb9\x6d\x8e\xde\x92\x83\x8f\x54\x6b\xb1\xd8\x04\x54\x6f\x18\x45\x98\xeb\x94\xa7\xe3\xdf\x8f\x96\xbe\x79\x80\x65\x17\x2d\x17\xf6\x12\x13\x43\x4a\x9a\xe0\xac\x43\xaf\x1b\x6c\xaa\x45\x3f\x35\x56\xbe\xb6\x17\x9a\x68\x49\x89\x21\x74\xc0\x94\x8a\x5b\xbe\x5c\xfa\xa2\x0b\x1a\x60\x42\xa0\xf0\x03\x7f\x98\x26\x8f\x7a\x75\xc3\x13\xb4\xf5\x20\x22\xb9\x1a\x78\xbe\xfd\x5b\xca\x42\xe6\x26\x09\xb8\xa0\x92\xce\x5e\x30\x38\x39\xa1\xbc\x09\x7e\xb2\xa3\xf6\xe8\xcb\x13\xde\x2c\x74\x51\xa8\xed\x6d\x83\x4c\xa7\xfb\x2e\x2f\xb4\xf2\x40\x85\xdf\xbd\x2c\x5a\xb6\xf9\x66\x1f\x00\x40\x6e\x0e\x69\xff\xff\x80\xec\x1c\x01\xfc\x0d\x6c\x90\xd8\x54\x71\xfd\x38\x46\x8b\xc4\x89\xc0\xcc\xed\x73\x1a\x85\x8f\xb9\xb6\xef\x28\x61\xd9\x79\x34\xaf\x00\x3a\xe7\x63\x6f\x6f\x3f\xea\xbe\x68\xc3\x49\x8d\xcb\x4b\xca\xf0\xa9\x09\x08\xb2\xbb\xad\x19\x63\xe8\x69\xa2\x61\xce\xc7\x0d\x0a\x90\x7b\xdb\x69\xc2\x7a\x18\xd8\xdb\x41\x11\xe1\x63\x97\x63\x9a\x85\x85\x28\x8e\x68\xe1\x77\x32\xf7\x1b\xbc\x11\xc9\x7f\x04\xb5\x14\xef\x70\x6a\xdc\x20\x63\x1f\x47\x89\x4c\x6d\x3c\x78\x94\x69\xf9\xb8\xfc\x98\x92\xca\x4b\x96\x6d\x96\x4b\x67\x70\xbf\x8c\x8c\xef\x94\x7e\x94\x7c\x47\x61\x47\x86\x55\xc4\x95\x26\x9b\xfc\x5f\x5e\x53\x08\xad\x4d\x98\x00\x68\x83\x20\x2b\x40\x11\xe9\x28\x42\x18\x41\x14\xd2\x53\x16\x12\xe8\x76\xa5\x00\xb3\x94\xa6\xb9\x21\x51\x37\x16\x67\x2e\x95\x69\xd7\x25\x25\x90\xf0\x21\xf6\x56\xfe\x8f\x9a\x7e\xd2\xae\x5d\x44\xb3\x6d\x29\x57\x1a\xe4\x66\x7c\x1c\xac\xaf\x29\x64\x51\x01\x93\x15\x35\x01\x64\x25\xbd\xab\x04\x6b\x6e\xd4\xe2\xf9\xcf\xcd\xb5\x17\xa2\xc5\x11\x97\x0e\x10\x0c\x41\x7a\x9b\x8f\x1b\x0c\xa6\x77\xef\x6d\x2f\xda\x02\x99\x23\x52\xdc\x63\xb8\x51\x3e\x09\x3c\x5b\x7c\xd1\x0e\x98\xb8\x23\xa0\x8a\xd6\xae\x5d\x6b\xb7\x95\x36\xf3\x25\x4d\x76\xa0\x32\xcf\x8c\xff\xf5\x29\x4c\x58\xf6\x8b\xa5\xa9\x83\xbd\xf5\x83\xd2\xf3\xdd\xd9\x54\x57\xa2\x3a\xbf\x8a\xf4\x47\x66\xc6\xa1\xdb\x5f\x03\x1d\x0f\x2b\x2a\x1b\x85\x00\x62\xba\x1d\x1e\x8c\x42\x61\x57\x1a\x70\x75\xc9\xa9\x7d\x2f\xb4\xfb\xb6\xb7\x88\xa7\x85\xe8\x00\x55\x39\x3e\xae\x7d\x60\x6e\x5f\x9b\x6b\x57\x1e\x86\x48\xb2\x47\x1f\x15\xea\x41\x67\xd5\x21\x6e\x50\x38\x7c\x1b\xe3\x85\x4f\xd4\x2d\x86\xfd\x74\x0b\x8d\x4d\x47\x57\xf5\x95\xac\x0b\x9a\xdd\x88\xe6\x8b\xf6\x78\x99\x30\x31\xc5\x7a\x7e\xbd\x54\x06\x92\xe0\x28\x21\x6c\x9b\xea\xf8\x9f\x5c\x2c\xfa\x53\xaa\xbc\x8f\x2f\x73\xfa\xc9\x4e\xab\x50\x63\x27\xc8\x69\x7f\x4a\x91\x09\xa0\xd9\x88\xe3\xad\xd4\xc3\xc0\x2a\xd8\x1a\xab\x6e\xb7\x49\x46\x0b\x26\x2c\x68\x6c\xee\x7b\xc1\xe7\xef\x2e\x80\xbc\xd0\xd0\x84\xd9\xcb\x41\x23\x2d\x3d\x78\x28\xf7\xb5\xef\xca\x0c\xe9\x76\x09\xdd\x79\x7d\x2c\x4c\x2c\xbb\x34\x1f\x62\x31\xad\x3e\x85\x92\x03\x23\x8f\xf9\xa4\xf6\xb3\x64\x00\x1e\x86\x69\x06\xc4\x80\xa3\xcf\x7d\xe6\x80\xd3\x9b\xf7\x3a\x33\xdd\xd8\x24\x4b\x96\xa2\xda\xea\x3b\x91\x0a\x31\x3b\x8f\x4f\x1a\x80\x58\xed\xdc\x66\xcb\x26\x91\x35\xbe\xc9\x61\x5c\x76\x83\x78\x94\x79\x1b\x5d\xc0\x02\xae\x23\x14\xe5\x13\x05\x7c\x87\x67\x12\x9e\x16\x6a\xf3\xf7\x02\x0d\x86\xa1\xa7\x2d\xd0\x2a\xdf\x49\x58\xe9\x47\x61\xdf\x2e\xdb\x8c\xf6\x02\xa0\x98\xae\x2b\x25\xfa\xeb\x75\xa3\xbc\x2a\x6d\xdb\x4e\x43\x55\x50\x06\xd5\x3a\x29\x1a\x2b\x34\x36\x5c\xeb\xdc\xe5\x50\x53\xb4\x6b\x20\xca\x3d\x49\xeb\x27\xa6\x3f\xa7\xb9\x80\x85\x33\xfc\x0f\x02\x61\x2d\x54\xe2\xa5\x11\x32\xa1\x78\x41\xcf\x00\x17\xf8\xbe\xd2\x47\xe2\x4a\x29\xe2\x8b\xb7\x4b\x25\xfc\xfb\x15\x2d\x35\xfb\xfb\xa5\x27\x89\xbf\xdf\x90\x94\x7e\xa1\xdd\x37\x59\x0f\x3c\x2b\x51\x96\xf6\x3e\x1c\x1b\xb0\xb7\x20\xd9\x3d\xa1\x84\xe4\x9e\xea\x50\xfd\x4c\xc0\x9e\x5e\x35\xc8\x8c\x8a\x34\x49\x07\xa8\x0e\x40\xdf\x02\xe1\x12\x1f\x2b\x78\x5a\x36\xca\xf3\xc8\x63\x3a\x64\xc6\xeb\xe9\x5f\x6b\x1f\x91\xe8\x84\x89\x6d\x96\xf7\xa3\x21\x8f\x2a\xb6\xf0\xa3\x5f\x11\x3b\xbf\x06\xad\x5c\xbb\x6c\xe2\x91\x61\x61\x04\xa1\xfe\x57\x9f\xe1\x63\x1f\xbe\x8c\xc2\xa5\x34\x55\x62\xfe\x1b\x3a\xca\x96\x67\xc3\xd8\x67\x1d\xac\xd2\xed\xb6\x71\x44\x38\xdf\x2d\x7d\xe4\xf3\xdd\xda\xac\xdb\x39\x4f\x02\xdb\x31\xeb\x1f\x22\x22\xc7\xb6\xcd\xc7\x63\x3f\x62\x61\x06\x1e\x25\x8b\x8f\x79\x91\x3b\xb0\xa0\xf1\xe4\xa1\xaa\x83\xdc\x81\x3d\xac\x59\x7c\x8d\x86\x9d\x28\x40\x29\x09\x3e\x96\x32\x42\xb9\x94\xd9\x68\x18\x90\xbf\x4b\x0c\x34\xc4\xd1\x0f\x10\x9e\x33\x5c\x04\x2b\x11\x1b\x1d\xd2\x7c\x91\x5d\xd6\x9b\xe6\x1e\x6e\x52\x65\x5b\x5a\xec\xb6\x7c\x0f\x96\x57\x76\x3e\xa9\x8d\xc5\x6a\x15\xeb\xa7\x09\x46\x8e\x08\xe7\xb7\xe6\x3d\x2a\x63\xc2\xbc\x3d\x5e\x9a\x56\xfe\x4c\x90\xa2\x77\x4a\xcb\x5e\x8c\x10\xd3\x52\x5a\xba\xbe\x9c\x31\xb4\x59\x95\x10\x9b\x45\x0b\xa8\x8a\xd3\x18\xf5\x10\x8c\x33\xca\xfa\xf7\x21\xdd\xb5\x83\x86\x7a\x4a\x54\x1d\xc0\xb5\x73\xbe\xbd\x40\x92\x5c\x62\x5b\x20\xec\x00\xfa\x94\xd0\x06\x9a\x24\x2e\xf3\xc2\x0e\x06\xb2\x83\x22\xb9\xdf\x8c\x7e\x1b\x9f\x74\x9e\x52\xa1\x6a\x36\xa0\x6a\x0c\xc5\x4f\x78\x81\xb7\x83\x89\x88\xc2\x03\x32\x8f\x36\x70\x93\x0b\xb3\x04\xa7\x04\xe4\xd5\x9c\x38\x21\xea\x9d\xa2\xf4\xca\x01\xa2\x5c\x80\xf6\xcd\x06\xa7\xa4\xdd\xed\x3c\x3d\xc4\x33\x18\x63\xf2\x46\xa0\x74\x97\x6f\xa8\x0a\x0c\xa1\x71\x9e\xd0\x12\x8f\xd7\x14\x8e\xe9\xba\x2e\x66\x7e\x89\x86\x2f\xb2\xad\x2f\x05\xca\xfb\x85\x59\x23\xfc\x57\xc8\xee\x31\x00\xd7\x4a\x2f\xcb\xf5\x7a\xa9\x2c\x0a\x2f\x6a\x6d\xcd\x8b\x54\x54\xc7\xf6\xf6\x1a\x81\xe3\x84\x1f\x5c\x45\x78\x37\xb1\x40\x63\xc0\x6d\x03\x0d\x45\xca\xd6\x0a\x60\xde\xb7\x83\xa7\x3c\x28\xe4\x24\xd6\x5e\xd4\x11\xde\xa6\x8c\x15\x75\xef\xdb\x81\xf7\x64\xfe\x0f\xa0\x58\x62\x4f\x7a\x10\x28\x0d\xe6\xb3\x55\xbe\xbb\x76\x1b\x57\x8c\x48\x19\xfc\x0d\xc0\x0b\x8f\x51\x86\x88\x65\xed\x36\x66\x38\xfa\xf9\xf7\x90\x9f\x61\x40\x31\x9a\x98\x71\x17\xa4\xa2\xc5\x36\x71\x98\xee\x5a\x10\x52\x94\x2b\xe9\x41\x62\x5f\xd9\x30\xa6\x58\x92\xaf\xae\xbe\x0b\xee\x69\x7f\xe6\x40\x6b\x62\xd4\xe3\x2d\x0a\x3c\xda\xc7\xc2\x8b\x99\x89\x12\x20\xd7\xb1\x00\x5e\xd4\x50\xa8\x3b\xfc\x39\xf1\x28\x50\xc0\xb0\x6d\x1d\xc1\x5b\xf4\x47\x03\x94\x70\x9a\x42\xa7\xa6\x12\x63\xba\xe2\x64\x04\xc5\x31\x9d\xee\x4d\xbc\xd4\xfd\x9b\xeb\x9b\x65\xfb\x93\xf4\xd8\x10\xf9\x31\xc9\x1c\x5b\xfb\xcc\xd8\xbb\x75\x5d\xa3\xa1\x81\xfe\xd9\x9f\xd3\xdc\x77\x66\x78\xbb\x1d\x32\xe8\x36\x3d\x67\xa9\xbe\xeb\x96\x37\x5a\x34\xfc\xbd\x1b\x3a\x2a\x4c\x78\x50\x2a\x85\x7f\x58\xd5\x39\xc3\x18\xd7\xd9\x7c\x08\x14\x1f\xf2\x92\xaf\x03\xd0\xc0\x4c\xe7\x72\xf2\xc9\xec\x94\x12\xde\x6f\xa3\x9f\xe5\x5e\x7a\x35\x22\xd1\xcd\xb8\x85\xc1\x86\x69\x0e\xe7\x1b\xac\x93\x0f\xa8\x3e\xe1\x7a\x68\x4e\x46\x7c\x43\x47\xe1\x5e\x59\xf5\x03\x78\x95\xeb\x0e\x13\x33\x18\x71\x1c\x88\xf7\x0a\x35\x69\x3e\x56\xc6\x25\x03\x73\x28\x1a\x8c\x06\xe4\x6c\x2a\x28\x28\x45\xeb\xe7\x01\xa0\x25\x80\x45\x6f\xaf\xe5\x18\xf5\x47\xbd\x2c\x99\xc9\x5c\xe6\x8f\xe6\x3c\xf7\x1d\xf8\x44\xf5\xfe\xc2\x34\x2f\x72\xda\x33\xf1\xa2\xb7\xe0\x9e\x50\x7b\xe2\xee\xba\x2c\xc5\x4a\x2a\xe7\xdd\x72\xbd\x9a\x3a\x3d\xc3\x7f\xfc\x14\x5e\x21\x4f\x3c\xcc\x77\x71\xd3\xaf\x06\x0a\x6a\x4c\x77\x50\xc6\xd2\xfc\x74\x2c\x34\xf7\x15\xce\xfe\x9c\xe6\x0a\x7f\x5f\x75\xe4\x56\xd2\x6c\xc9\x66\xf9\x96\x09\x05\x44\x55\x19\xb9\xa5\xb4\xc8\x6f\x04\x8a\x7d\x82\xa0\x10\xdf\x7e\xaf\xf4\x50\xd6\xbb\xba\x8d\xf5\xd0\x7b\xa8\x6d\xdf\xd2\xd1\x12\x50\xc9\xb2\x4d\x9c\xb0\x18\xd6\x86\xef\x29\x86\xda\xf7\x7c\xb9\x66\x68\x2d\x7c\xd7\x1d\x8d\xe4\xba\x7a\x4f\x27\x71\x4d\x28\xbd\x55\x41\x92\xc3\xd4\x55\x79\x89\x09\xab\x7c\xbf\xe5\xe1\x45\xef\x69\x39\xbc\xf7\x14\x2b\xb8\xa0\x15\x84\x7e\x04\xd5\x72\x0c\x06\x31\x47\x50\x40\xe1\x2b\xca\x14\xc6\x0c\xdc\xd0\x10\xf7\x3a\x7f\x69\x67\x6b\x9b\x34\xc9\xab\xae\x64\x66\x38\x94\x62\x3a\xdb\x80\x2a\x41\x7c\x26\xb0\x4a\x2d\xc5\x07\x65\xd5\xd6\x99\x2e\xdb\x2c\x9f\xf2\x7d\xd6\x8d\x4a\x42\xec\x46\xa9\x0c\x96\xce\xa8\xb4\x37\x49\x58\x69\x07\xbb\xd4\x95\x52\xe5\xca\x17\x95\xee\x2e\x82\x16\x94\x59\xb6\x74\x54\xef\xdc\x69\x64\xce\xf1\x5a\xbd\x01\xec\x02\x96\x35\x0f\x14\xa8\x92\x81\xb6\x2c\x93\x01\xed\x74\x51\x3f\x77\x56\xd5\x87\x6c\x16\x92\xd1\x0b\x7c\x48\x69\x0f\xbc\xfc\x91\xae\xe6\x76\xd1\xf4\xa6\x95\x86\xde\xef\x60\x78\x62\x99\xb9\x46\x6c\x52\xd4\x11\xd1\x2e\x11\x0d\x35\x3f\xc4\x6d\x48\xa9\xc1\x63\xbe\x0b\x01\x45\x72\x9e\x7c\xb4\x36\x89\x1c\x35\x5d\x3d\x30\x01\x0f\x30\x90\xd9\x40\x12\xdb\x1e\xff\x19\xd5\x8a\x31\xc9\xbe\x42\xf3\x03\xed\xa2\xab\xa5\xf2\x09\x7d\x5f\x21\x28\xee\xe8\x06\xc9\x65\xb4\xb8\x81\x85\xba\x10\xa8\xcd\xe8\x56\x2d\x60\xda\x3f\xdb\x4e\xd2\x4f\x4e\xf9\xde\x18\x04\x8d\x51\x34\x38\xab\xed\x19\x54\xb1\x35\x4a\x0a\x13\x16\x9b\xbd\x15\xf3\x45\xbd\xcb\xf3\xca\xa3\x23\x5d\xcc\xcf\xab\xb8\x48\x7c\xdf\x09\x2d\x4d\xf0\x0a\xde\x70\x7d\x64\x45\x59\x01\xed\x69\x16\x00\x9a\xd0\x61\xa6\x91\x85\xf2\x28\x38\x27\x0c\xf6\x53\xc0\xb7\x05\xb3\x9c\x66\xcc\x52\x05\x34\x0d\x22\xe0\x7c\xfc\x91\x82\x01\x2b\x51\xdc\x1d\x65\xf4\x31\x6c\x11\x4c\xf8\xe5\x93\x8f\x34\xea\x5b\x4c\xe3\x1e\xe3\xee\xb5\x1d\x86\x78\xbe\xaa\xaa\xc2\x1d\x55\x35\x8c\xe2\x78\x44\x8c\x0a\x0b\x7f\x46\x45\x0d\x51\xb1\x8f\x5b\xba\xce\x4d\x60\x51\xb7\x3b\xe2\x6c\x16\xf6\x4d\x2e\xf3\x9e\x1f\xb9\xf2\x9d\xe0\x10\x13\xe9\xfb\x61\x87\x6b\x3f\x64\xb3\xf4\xd0\x4c\x35\x44\x45\xdd\x50\x21\xe2\xcf\x6a\xec\x03\x3d\x6f\x47\xf9\x9a\x77\x86\x9a\x8f\x76\x7c\xe5\x3b\x5b\x30\xa1\x5c\x82\xc3\xf4\x3b\x83\xb5\x35\x5c\x02\xd6\xf7\x8d\x9d\xa7\x15\xfb\xac\x30\xc9\x62\xd4\x8d\xed\x94\x2a\x25\x40\xca\x02\xf3\x83\x45\xef\x44\xbc\xad\x29\x60\x0f\x4d\xb7\xa5\x5c\x2a\x2e\x2a\xc3\x99\x8b\xc1\x33\x8a\x84\x1b\xc6\x26\x33\x45\x9a\xa1\x94\xcf\x08\x6b\x7a\x52\x82\xb6\x56\xdb\x97\x89\x97\xa2\x64\x71\x8b\x97\xdf\x3c\xa5\x3b\xe8\xec\x1e\xc5\x28\x17\x04\x15\x4e\x4e\x7d\x8f\x14\xac\x36\x74\x3c\xdd\x04\x33\x02\xab\xef\x4d\xc5\xe1\xac\x2b\x5d\xe2\x9e\xb2\x8f\xee\xa9\x35\xa4\xe0\x83\x34\xc9\xd3\x34\x51\x7c\xd2\x8b\x8a\x1e\x79\x51\x29\x47\x26\x36\x5c\xe2\x62\xb0\x70\xfb\x15\x05\x9f\x5d\x18\x11\x51\x1d\xd3\xb5\x26\x1b\xe5\x64\xd7\x37\xa5\xd2\x9a\x0b\x0a\x4c\xc2\x66\x04\x58\xfb\x36\xd6\x74\xe0\xe7\xf6\xb5\x87\x59\xda\x15\x88\xac\x83\x75\x39\x28\xe6\x25\xf5\xf0\x33\xb0\x3d\xb7\xfa\x29\x7b\x5e\xd5\x6a\x50\xc2\x17\x15\x95\x75\x76\x81\x5a\x8c\x99\x56\x56\x49\xba\xaa\x91\xee\x7a\x75\xbe\xe4\xc7\x49\x3c\x3e\xff\xb6\xaa\x99\x17\x11\x68\x1f\xcf\x3b\x54\xae\x8a\xdb\x95\x94\x33\xb3\x71\x50\xea\xe2\x4a\xb9\x28\x79\x3c\xa9\x2a\xf0\x89\xad\x26\x3a\x06\x2a\xf2\xdf\x0f\x4b\xa5\xb9\xf2\x61\x83\xc6\x59\xf5\x1c\x86\x69\xc2\x2c\xf3\xdd\x5e\x44\xa9\xfa\x98\x68\x07\x3f\xa1\x59\xe6\x26\xe9\x3d\xaa\xc0\xd9\xef\x04\x4a\xcf\xe8\x9d\x52\xad\xa8\x27\x35\x5c\xe4\x26\x3d\x50\x0c\x4d\xae\xa7\x60\x6c\x42\x88\x08\xcb\x2b\xdb\xe6\xe1\x6a\x1f\xd0\xe3\x64\xc7\x68\x7d\x1b\x0f\x4a\x9f\x74\x9c\x2a\x7d\xa2\x71\x2a\x78\x56\x49\x1d\x98\xde\x17\x47\x26\x23\x87\x04\xfa\x35\x94\xb7\x37\x51\xf1\x87\x8f\x6b\x8c\x99\x5f\x6c\x17\xfd\x74\xb4\xd8\x87\x18\x8a\xeb\x17\xee\x74\xbd\x43\xd7\x2f\x06\x45\xcd\x30\x41\x02\xab\xd1\x97\x68\x36\xf0\xb1\xd2\x1b\xcb\xa3\xc5\x64\x0b\x0d\xa1\xb5\xcb\xa5\x27\x8d\x5d\xa6\x15\x08\xfb\xd2\x05\x55\x88\x3b\xbd\x4e\x0b\x50\x81\x12\xbd\x07\xc0\x05\x3c\x42\x41\xb7\xad\x7f\xaf\xbb\x76\xb5\x8b\x51\xd6\x1d\xc5\x93\x41\xea\x0d\xb5\xd2\xdf\x68\xc2\xb6\x2f\x92\xdf\xa1\x53\x15\xfc\x1f\xe9\xd7\xf9\x58\x8b\xa8\x90\x70\xb1\x9d\x56\x6f\x6b\xba\x43\xe1\x12\x9f\x8c\x3d\xd7\xe2\x56\xa0\x9c\x3d\x6e\x7d\xe4\xae\x58\x64\xe9\x60\x68\xa7\x94\x08\xfb\x25\xd6\xae\x92\xf6\x5b\xeb\x33\x07\x84\xdc\xd3\x50\x93\x9d\x6b\xa7\x09\x3a\x0f\x22\x65\xf6\x5b\xa5\x17\xdd\xba\x13\xf8\xd2\xde\x9d\xa6\x5c\x7d\xff\xec\x26\x9f\x2a\xe0\xa1\x8b\x5f\x56\xcb\x19\x36\xf2\xad\x20\x48\xbb\xac\xf2\x1e\xb8\xe2\x43\x72\xe0\xa6\x9a\x91\x83\x30\x34\x59\xd1\x47\x79\x0e\xd1\xe7\xb5\x52\xd1\x7a\xaf\xd5\x1c\xb6\x98\x45\x1e\x0d\xa2\x9e\xea\xd9\x82\xd0\xf0\xba\x92\x92\x7b\x5d\x31\xe6\x32\x6b\xc2\xbe\x85\xa4\x9d\x82\x6d\x4a\xc2\x77\x5a\x61\xd1\x2f\x61\xf1\x12\x88\x9a\x5f\x59\x3f\xd0\x9b\xee\x06\xd5\x03\x1a\x46\x6c\xc1\x8b\x0e\x37\xb2\x56\x3e\x9e\x30\xdc\x31\xc9\x4b\x66\x66\x12\x2a\xe4\xf6\x96\xab\xa5\x83\x10\xfe\xc5\x55\x5c\x82\x6b\x90\x39\x5c\xe4\x61\xdd\x1e\x1c\xda\xa4\xc7\xcb\xb8\x93\x17\x72\x08\xf5\x73\x0a\x9d\x3b\xb0\x79\x6e\x16\x45\x20\x0a\x93\x0f\xef\x4f\x82\x44\xc5\xaf\xff\x9f\x1b\xc4\x89\xc3\x7e\x15\xdc\x68\x25\x23\x58\x48\xf1\xb1\x03\xdc\xe4\x36\xe9\xb9\x17\x82\x2a\xc5\x9f\x06\x1e\x4a\xf0\xa7\xe5\xd6\xa8\x3d\xcc\xec\xc2\x2f\xb4\x57\x9f\x6d\xed\xd8\xc1\x71\xd9\x26\x34\x29\x84\x04\x46\x95\x10\x24\xd1\x8f\xd1\xbe\x8d\x75\x6f\x7b\x47\x3d\xfd\x7f\x30\xae\xb2\x02\xc4\x16\x1b\x49\x93\x05\x13\xf0\x2a\x33\x04\x30\x16\x59\x4b\x06\x03\xf6\x41\xa0\xf4\x26\x6e\x97\x0a\x0e\xce\xaa\xb6\xd8\x6b\x37\x8e\x3d\xd2\xe2\xab\xd4\xb3\x72\x75\x4f\xe7\x24\xfb\x40\x73\x75\xa8\x8e\xb4\x36\x8d\xa4\x0e\xc5\xba\x27\xc6\x54\x34\x41\xc3\xf9\x66\xa0\x44\x3d\x40\x17\x42\x31\xe7\x66\xf9\xec\xe4\x1c\x23\x4a\xd9\xdc\x3e\x85\x55\x6b\xd1\x9f\xf3\xf1\xf8\x71\xc7\x9d\x4e\x43\x9b\x4d\xda\xef\x6b\x13\xc0\x26\x65\x96\x5e\x54\xd3\xa5\xb8\xa2\xe8\x76\x57\x14\xcc\xca\xc4\x4b\x8f\x4c\x79\x5b\x2a\xd6\x0a\xa4\x27\xf2\xab\x4f\x22\x2f\x44\x05\xec\x81\xd6\xf8\x7c\x9c\x36\x0d\x6c\xdf\x8f\x76\x14\x9d\x5c\x96\x28\xe4\x46\xbc\x69\x3a\x33\xd1\xfd\xb3\x58\xf5\xf6\x6c\x57\x44\xaa\x99\x71\x93\x64\x60\x98\x66\x99\x0d\x8b\x29\x15\xb7\x7c\x5b\x17\x2e\x4f\x29\xd6\xf9\x85\x26\xdb\xa6\x9c\x70\xdb\x1a\x1c\xea\x65\x9c\xae\x2a\x0b\xeb\x33\xaa\x9e\x9f\x8f\xba\x79\xd4\xb3\x49\x68\xb1\xdf\xb9\xa2\xda\x4e\xe7\xc8\xac\x40\xac\x0b\x26\x8c\xe2\xa8\x88\x6c\x3e\x33\x69\xf4\xe8\xa0\x30\xd3\x00\xa0\xa1\xee\x7d\x43\xe9\x21\xdf\x41\x05\x8e\xff\xa3\x09\x03\x11\x5b\x83\x86\xaa\xa8\x9f\xf8\x5d\xbd\xfe\xca\xf7\xcc\xb6\xc3\xbe\x49\x16\x25\x64\xc1\x1b\xe3\x76\x3e\x9f\xb8\x69\x3b\x18\x2d\x2c\xc4\x2c\xb2\xef\xfa\xe3\x4e\x9a\xf4\xa2\xca\x07\xe7\x53\xd0\x5e\xd9\xfc\x87\x8a\x54\x62\xf5\x55\x4d\x68\xca\x06\xcb\xa7\x31\x55\x91\x44\xcc\x8c\x5b\x07\xbc\xd0\x5b\x43\x38\xda\x4d\x93\x1e\x93\xcb\x19\x22\x8e\xb7\x2a\x78\x71\x17\x4e\xd8\x61\x16\x25\x0e\xff\x88\x02\x1c\x74\x4a\xf8\x58\x59\x4d\xa6\xb1\x1b\xed\xce\xdc\xc3\xb5\xe4\xde\xd3\x88\x91\x2c\x7d\xd1\x86\x85\xd3\x45\x75\x34\x14\x4f\x49\x51\xf7\x3f\x9b\x82\xd0\xe1\x38\x86\x8a\x2e\xa0\xf4\x46\xd0\x6f\xa2\x01\xe3\x76\xe6\x9d\x4e\x29\xbd\xa1\xd8\xbc\x7b\x6f\x3b\x4c\x07\x40\x08\x61\xbb\xfc\x40\x63\x48\xb8\xb2\x88\x09\x75\x4b\x6b\x5b\xd8\x2a\x70\xa2\x38\x0b\x00\x6e\xac\x95\xaf\xe1\xef\xf9\xa4\x96\xa7\xec\xd8\xc1\x1f\x64\xaf\x30\xe4\xf0\xec\xc5\x87\x4d\xe7\x94\x42\x57\x4e\xfa\xcd\x0f\x8b\x4f\xaa\xbc\xfc\xb0\xce\xcb\x0f\x07\x8f\xf9\x62\x56\x34\xb0\xcf\xb4\x84\x4f\xf9\xde\x71\xd4\x91\x95\x4e\x8b\x48\xa1\xbe\xa1\xbd\x93\x61\xe1\x84\x14\x08\xab\x83\x73\xfa\x75\xea\x37\x1b\x3b\x2a\x41\x5e\xe3\x05\x9f\x81\x66\x81\x87\xc6\x1d\xc6\xaa\xee\xc4\x07\xaa\xcb\xc4\x0e\x77\x5d\xaf\x1a\x3f\x52\x86\xea\xac\xaa\x82\x4c\xe5\x5e\xa9\x34\x42\x41\x60\x47\x64\xfe\x2d\xac\xfe\x28\x48\x72\x46\x8d\xfb\xbf\x88\x92\x3a\xbb\x19\xba\xd1\x38\x30\xd9\x92\x1b\x8d\x22\x8d\xe3\x71\x56\xe7\x4b\x8f\xda\x8d\x4d\x58\x4d\x84\x35\xe0\x75\xd7\xc6\x0e\xc6\xdc\x8d\x47\x64\xca\xe9\x16\xa9\xd7\x55\xf5\xe9\x75\x45\x01\x1e\x66\xd1\xc0\x64\x51\xbc\xca\xbd\x33\xdc\xf2\xbf\xd6\xf7\xff\xaf\x4b\xff\x9a\xba\x31\xcb\x53\x63\x2f\x05\x0f\x8c\x8f\x6b\xe3\xa6\x0a\xbc\x56\x6c\x24\xdc\x33\xb1\xe3\xf2\xf1\xef\xdb\xae\xa8\x3b\xcc\x6c\x51\x44\xa2\x68\x85\x9d\xf0\xfb\x8a\x06\xf0\xfd\x5a\x94\xb1\x7b\xcf\x6e\x5e\xe2\x76\xed\xe2\x27\xf3\xb2\x66\xd6\xbc\xec\x84\x12\x86\x26\x33\x89\x48\xea\x49\x98\xa5\x42\xae\xf2\x11\xef\xa7\x47\xe4\x6e\xa1\x66\xb5\x44\x70\xe5\x7f\xe2\x02\x3f\xda\x25\x77\x54\x8c\xd6\x35\x85\x31\x89\x72\x31\xba\x80\xd8\x48\xf2\x4d\x5f\x84\x5b\x34\x99\x59\xb4\xda\x3a\x58\x35\x2b\xce\xa8\x00\xf7\x8b\x23\xdb\xb5\x61\x9a\x81\x88\x27\xb6\x69\x34\x04\x59\x48\xbf\x54\xad\xa3\xa3\x4a\x7b\x0f\xab\x86\x3b\xd6\x50\xd6\xfd\xee\x6f\x94\xba\xd4\xb5\x26\x63\x70\xa2\xa7\x4c\x68\x2d\x31\x9a\x96\x4f\x1a\xb1\x1b\x69\x12\xaf\x4e\x79\x39\x81\xc7\x3b\x9a\x43\xae\x4a\xfe\x9b\x94\x72\xde\x20\x8a\xe3\x28\x4d\x9e\xd5\xe3\xee\x26\xfa\xfd\xb8\x4f\x16\xc9\x13\x46\x12\xdd\x34\xf7\xb5\xe8\xa6\x1d\x74\x75\xa7\xc3\xc4\x53\x7a\x8b\x41\x0e\xe7\x5e\xa7\x8c\xbc\x63\x87\x97\x6c\xfd\xcc\x01\xdf\x00\xad\x56\x19\xb1\xb9\xf1\x71\xe1\x59\xda\xa9\x90\x65\x43\x7a\x15\xc9\x2a\x1b\x4f\x8a\x9b\x34\x2d\x2c\x58\x7e\xa7\xc7\x13\xac\x0b\xa5\x98\xb2\x61\xac\xa0\x50\xac\x83\xcb\xd0\x19\xd4\xc8\xb0\xbd\x6e\xe8\xd4\x6d\x34\x76\x8b\x0c\xb7\xbc\x10\x71\x52\xa4\xab\xe0\x93\xc0\x17\x7b\xa4\xa6\x98\xcf\xf8\xc6\xf9\xdf\x69\x08\xee\x37\x69\xf2\xe1\xbe\xfe\x4a\xc1\xe6\xff\x6e\x52\xce\xd1\xc7\x33\x66\x54\xa4\x83\xb4\x88\x96\xed\x0c\xdd\x2c\x68\x4a\x20\xa6\xb2\xc9\x01\x7d\xa5\x33\x3c\xa8\x7e\x4b\x3a\x36\x78\xb3\xf8\x85\x35\x65\x29\x1f\xe5\x85\xe4\xd0\x08\x66\x30\x1d\xf9\xb8\xf4\x96\x44\x9f\x02\x4b\xc5\xf5\x3c\x7d\x3f\xbf\xd1\xb5\x84\xe5\x3f\xa7\x94\x6e\x2c\x62\x29\xf6\xc1\x57\x52\xcd\x5e\x44\x66\x60\xfa\x26\x33\x2f\x9a\x7e\x4e\xac\x04\x47\x09\x9e\x9f\xe7\x96\xf9\x6b\x34\x60\x26\x3a\x61\xc2\xc6\x78\xd4\xfb\x7c\x85\x21\x7d\x1c\x83\xf5\x0c\x82\x33\x67\x0d\xb7\x47\xe8\xe2\x2c\xd2\x83\xb0\x62\x63\x67\x7d\xd8\x7a\xf0\x60\x3b\x36\xbd\x1e\xd9\x63\xd3\x0b\x71\x6e\x2b\xce\xda\xef\x6f\x95\x2d\x83\x89\x63\xbb\xc8\x3e\x34\x2d\xe7\xe2\x3c\x4d\x18\x14\x64\x47\xdc\x67\x90\x01\xde\x50\xd2\x78\x71\x94\x10\x48\x70\xc2\x77\xfa\xbc\xaa\x1f\x69\xd2\x15\xf0\x6e\x61\x64\x62\xde\x2d\x9c\x54\xb9\x47\x46\x68\xd5\xaa\x7e\xca\xbc\x4c\x0c\x9b\xa3\xca\x59\xf6\x86\xc2\x47\x9e\x56\x11\xd3\x8e\x4f\x7d\x8a\x49\x99\x78\x48\x3f\x28\x35\x77\x4d\x69\x43\x5d\x51\xc0\x64\x5a\xb3\xe2\xd5\x4d\x5e\x15\x6b\x6d\x1d\x91\xae\x7a\x1d\xe8\xd6\x3d\x0c\x54\xb1\xfb\x0c\x76\x70\x76\xed\x2c\x95\xa6\xc4\xf9\x5a\xfd\x67\x6e\x1f\xeb\xe8\x08\xda\x05\xa5\x8f\x7b\xaa\x41\x71\x5a\xab\xca\x5c\x54\x85\xd1\x45\x9b\xd8\x22\x0a\x67\x70\x67\x88\x5d\xfe\x04\x3f\x87\x54\x17\xdf\x82\xe3\x6f\x4e\xe0\x40\xb5\x40\x9e\x6f\x1e\x64\x76\x60\xaa\xd7\x46\x83\x0e\xcb\xe5\x96\x8e\x42\x73\xbc\xad\x1e\xf5\x83\xd2\xaf\x06\xa7\x1b\xb0\xec\x5f\x68\xe7\x71\xba\x22\x43\xae\x49\x1c\xca\xef\x77\xe9\xa8\x18\x8e\x30\x75\x31\xc2\xd0\xe8\xe0\x63\xa7\x1f\xf9\xe2\xa8\xb7\x8a\xf4\x9f\x7f\x36\xf0\xfd\xe0\xd3\xa5\xe6\x03\x15\x26\x8a\xf3\x47\xe9\xfd\x38\x08\x71\x75\x19\x1c\x61\xe9\x7d\x97\x01\x55\x12\x7b\x55\xb3\x8a\x4d\x7f\x15\x83\x6a\xe3\xd8\x2f\x25\x77\xf0\x76\xb1\x71\x4d\x77\xfc\x26\x7d\x86\x96\x3e\x71\x0c\x56\xe6\x88\x7f\x58\x7a\x6c\xfb\x99\x60\xbd\xb3\x47\xb5\x20\xa7\xd9\xa2\x49\xa2\x97\x18\x33\xaf\x11\x83\x57\x35\x62\xf0\x6a\xed\x39\xef\xd8\xd1\x1e\x9a\xc2\x75\xb8\xb1\x24\xc1\xb6\x83\x8f\xc7\x8f\x2b\x40\x5f\x94\x17\x9b\xe9\x41\x20\xa0\xe4\x5b\x11\xb9\x1f\x7a\xd3\x58\x52\x4e\xa9\x78\xea\x6a\xa9\x34\x61\x67\x3a\x4a\x6e\xea\x96\xd6\xdb\xab\x9b\xd8\xce\xcf\xb7\x07\x51\x6f\xc5\xac\x4e\x55\x1b\x25\x5b\x1a\xe2\xcb\x84\x36\x50\x5d\x28\x66\xf8\xdd\x06\x3e\x58\x37\x36\xe1\x12\x13\xe0\x1c\x07\xa7\xfa\xb8\x70\x70\xea\x38\xf8\xf6\xa2\xd7\x61\x75\xf1\x70\xf5\x11\x3e\xa9\xa5\x3d\xd5\x48\x8d\x4d\x61\x33\xf4\x9c\xd8\xa7\x40\x0d\xee\x0d\xda\x3c\xe8\x48\xf9\xcc\x7a\xf8\xa2\x89\x63\x76\x91\x14\xec\x5f\xf5\xb6\xc5\x4b\x47\xd5\xd9\x8e\x94\xde\x9e\xb8\x91\x98\x33\xb0\x59\x16\x31\x87\x52\x4c\x47\x95\x35\xa1\x46\x69\x55\x59\xf5\x8c\xef\xe6\x9f\x0f\x94\x15\xdb\x75\xe5\x27\x31\x85\xe9\x2b\x0e\x04\x0a\x71\xdc\x44\xd9\x85\x79\x44\xbc\xaa\x78\xe5\x7f\xa9\x44\x2a\x19\x87\x25\xf5\x84\xa6\xa5\x6c\xd0\x35\x45\x11\xcb\xac\xd7\xed\x43\x3e\x6e\x92\x9d\x4d\x47\x45\xc8\x95\x24\x24\x37\x98\x7a\x7c\xac\xcc\x8d\x87\x7d\x93\x0d\x4c\x68\x47\x45\x14\xb2\x10\xae\xa0\x98\xd4\xa8\xfc\xf3\xf2\x19\x55\x71\x85\xb3\x92\xcd\x60\xb0\x85\xcd\xec\xeb\x13\x42\xc9\x78\x47\x22\x9d\xe9\xc3\xca\xe3\xf4\xbe\x50\xa6\x61\x1d\x26\x6c\xf3\xa2\x40\xc1\x67\x0d\xc6\x3f\xed\xa2\x9f\xb1\x5f\x54\xf5\xc4\x1d\xe9\xc3\x11\x93\xee\x36\x48\xce\x54\x61\x19\xb1\xce\x5c\x75\xc1\x19\x29\xb8\xfa\x5b\x5d\x02\xaa\x5a\x3e\xba\xa3\xc1\xd0\x1b\x4c\x0b\xbd\x7a\xca\xfb\x40\x9e\x6b\x86\x64\x8e\xb2\xc5\x75\xc0\x92\xf7\x03\x05\x9c\x7b\x5f\xed\xa0\xab\x26\x9e\xa1\x2f\x64\x74\x01\x3f\x02\xd1\x2d\x51\x03\x03\xcd\x6e\xac\x76\x88\x1a\x84\x59\x5c\x9f\x7a\xed\x62\xc5\x26\x4c\x93\x41\xc2\x7b\x41\xeb\x1d\x50\xbc\x8c\x5c\x69\x2d\xf0\x6d\x1a\xd3\xeb\x55\xb1\xa8\x28\xa5\x41\xe3\xc1\xa9\x5e\x57\x01\xbd\x83\x2a\xef\x99\x75\x2a\xc4\xd5\xcb\x94\xc2\xc4\x93\x8a\xf9\x9b\x17\x51\x31\x62\xe6\x8c\x00\xdc\x26\xe0\x6e\x5a\xda\x2a\x49\x57\xba\x51\xd6\xe3\x4e\x95\xeb\xee\xfb\x4e\xff\x84\xd7\x46\xd2\x1b\x85\xc5\x74\x15\xe8\x61\xf5\xb8\xaf\x64\xa8\xbf\xaa\xa8\xc8\x5f\xc5\xbb\xe2\x3f\xaa\xb5\x7b\xaa\x00\x2e\x15\x39\x13\x3c\x4c\x86\x90\xf0\x49\x83\x68\x7d\x9f\x98\x98\x32\x90\x50\x49\xbe\xa2\x8d\xbe\xaf\x34\x18\xec\xed\x6e\x17\x59\xb4\xb8\x68\x05\x2c\x81\x68\xf7\x1d\xcd\x04\x78\xa7\x51\x64\x0b\xda\x21\x53\x9e\x74\xfb\xdb\xa5\x2a\xbe\xfd\x09\x66\x98\xa8\x6d\xb8\x18\x79\x94\x44\x61\x34\x24\x4b\x83\x6a\xf8\x70\xe7\x38\x50\xae\x46\x75\x06\xf2\xdc\xbe\x76\x68\x7a\x51\x1c\x1b\x18\x17\x39\x36\xa2\xc3\xe4\xfc\x9d\xde\xdd\xcf\xa9\x1e\x6e\xde\xb7\x60\xb3\xa2\x8b\x71\x52\xb7\x6a\x4f\xd6\xa4\x18\xa4\xdd\x65\xe2\x98\x53\x71\x5c\xd2\x31\xed\xba\x74\x4c\x8d\xca\x81\xcd\x42\xc0\xad\x11\xa9\x5d\x87\x33\x1d\x82\x86\x8d\xa4\x37\xc2\x05\xe7\xc0\x63\x21\xce\xe3\xd9\xca\x7f\x3c\x39\x29\xa2\xe6\xea\x81\x08\xdb\xde\x57\x21\xdc\xfb\xe5\x13\x6a\x91\xeb\xda\x38\x57\x44\xeb\xcb\x81\x22\x5a\x5f\x9e\x28\x9c\x8d\xc2\x82\x64\xfd\xc5\x8c\xcc\x6f\xc0\x47\x31\x3a\xa4\x2d\x40\xbf\x8b\x04\xec\x43\xbc\x3f\x2c\x25\xe8\x18\xb2\xc4\x2a\x30\x46\x42\xd7\x57\x26\xe2\xc7\x30\x0f\x45\x33\xdd\x77\x2d\xb8\xf8\x8b\xe2\xce\x9f\x34\x6d\xe0\x74\xe7\xd3\x1e\xdf\x06\x7b\x79\xe7\x58\xe4\x10\x3e\x5b\x51\x81\x13\x20\xee\xfa\xc5\x65\xd7\xae\x6a\x37\x4a\x7b\xab\xe8\x37\xb9\xb0\x5a\xcb\x41\x3a\x47\x8f\x53\x2a\x7a\xec\xa7\x79\x61\x16\x6d\x4b\x37\xcb\x03\x9f\x08\xbd\xe3\x2a\x6a\x79\x91\x66\x91\xc4\x1a\xce\xc6\xa5\xba\x26\x3e\xf9\xc8\x31\x35\x08\x43\xb3\x32\xa5\x9e\xf0\x09\x15\x58\x33\xaa\x06\x7b\xf9\xfd\x86\x85\xbb\x9d\xd8\x62\x25\xcd\x04\xb7\xe1\x1c\x6f\x5c\xa8\xcf\xae\xf5\x92\xa6\x34\x12\x97\xc2\x91\xe3\x27\x62\x0a\x7d\xa8\x64\x57\xdf\x28\x95\x1e\x6d\x5d\x3b\xfd\xc0\xdc\xbe\xf6\x4a\xdf\xb0\x16\x92\x73\x14\x3e\xe0\x8e\x5d\xc1\x30\x8d\xa3\x65\x9b\x4d\x79\xed\xae\x3f\x57\xe5\xa9\x0b\xda\x6c\xe8\x72\x30\x21\xb5\x5b\xa4\x53\x4a\xf9\xf6\x37\x4a\xef\xb6\x7b\x29\x50\xfa\xc1\x17\x1b\xba\x4c\x7b\xdb\xa3\x61\xd7\x1a\x5d\x1d\x3c\xac\xa2\xd9\xc3\x4d\xfc\xc1\x7c\x68\xb2\xa5\x96\xb7\xbb\x00\x14\x45\x3a\x9f\x0d\xbe\xd6\xa1\x89\xc3\x51\x6c\xc4\x3c\x8a\x79\xb3\x28\x50\x31\x6c\x89\xee\x14\x51\xc5\x7b\x4d\xc2\x8d\xdc\x1a\xe1\x15\x1a\x43\xe6\xab\x58\x0e\xf8\xa4\xb6\x61\xca\xf8\xc9\xa6\x3c\x9c\xfa\x54\xd9\xfa\xa5\xbd\x4e\xdb\x79\x6a\xef\xaf\x7c\x4e\xa8\x99\x0a\x1a\x5e\x0d\x97\x67\xe8\x69\x0b\xbe\x84\x46\x88\x6c\x38\xd5\x5e\xea\x44\x52\x5c\x12\xf6\x03\xd8\x2e\xa1\x86\x76\x3c\x50\xc3\xf5\x0a\x0a\x0e\x4e\x82\x7e\xa7\xd7\x41\xa6\x21\x89\x5c\xfa\x9b\x81\xe7\x22\x01\xcf\x30\xa1\x7d\x81\x3d\xfe\xeb\x54\x07\x11\x54\x31\xed\x70\xfc\x83\x65\xeb\xd3\xbf\xec\x41\x5c\xce\x86\xe6\x6a\x49\xf0\x71\xac\x6d\x77\x03\x35\x04\xdf\x45\x78\x2b\x7b\x5d\x15\x14\x88\x38\x5e\xa3\xce\x0e\x3d\x7f\x17\xff\xf0\x60\xa7\x05\x46\x06\xbe\xeb\xe4\xf4\xcd\xb0\xb0\x99\x02\x1e\x3c\x28\x7d\xa1\xe1\xbe\xd7\x93\x7c\xb7\x8d\x64\x01\xab\x15\x2e\x1b\x03\x9f\x61\x7f\xb8\xd2\xad\xe3\x06\x93\xc6\x24\x2d\x2c\xbb\x28\x0a\xfd\x1c\x61\x88\x32\x4e\x14\x68\xd3\xa6\x8e\x62\x1e\xeb\x44\x3a\xab\x86\x54\x4b\x61\x7e\xb9\xaa\xc7\x27\xc1\xcf\x7d\xc4\x88\x4a\x87\x43\x9b\xf4\x6d\x34\xb0\x18\x5b\x58\x55\xd9\x8b\x13\x0d\x72\xc8\x7b\xa1\x83\x7c\x5c\x69\xe3\x87\xf1\x6a\x8f\xc0\x35\xde\xa4\xc7\x2f\xa6\xd1\x80\x25\x5e\xf6\xcf\x3a\x49\x02\x6f\xa4\x7b\x41\x89\x28\x84\x26\xca\xd2\x96\xa2\xed\xd2\x88\x11\x0a\xaf\xe0\x14\xab\xf5\x84\x67\x0c\xa6\xf3\x34\x38\x44\x7c\xd2\xf1\xd1\xd7\x60\x94\x17\x26\x83\x31\x2f\xa6\x27\x23\xac\x9c\xb8\xed\xbc\xa8\xe5\x00\xde\x2c\x55\x27\x2d\xc1\x47\xfa\x7b\x45\xd4\x8d\x6d\x4b\x63\xe4\x02\x5f\xa8\xbc\xa0\xb6\x03\x93\xf4\xba\xe8\x8e\xb8\x4c\x50\xd1\xc3\xea\x88\xae\xbd\x6d\x7b\x68\x18\xa7\x8e\x57\xdc\xf8\xc6\x74\x57\x20\xb3\x5c\x10\xc7\xa4\x42\x74\xed\x8c\x4d\x5d\x0b\xf2\xba\xaa\x11\x89\x8b\xd2\xc4\xfb\x51\xf6\x00\xa3\xb8\x88\x86\x26\xab\xfe\x62\xff\xac\x97\x86\xae\x66\x15\x9f\x04\xdb\xd4\xf0\xfa\xb8\x37\xe8\x7c\x23\xf0\x9a\x03\x6f\x52\xa4\x8e\x59\xbc\xa9\xe3\x65\xca\x1f\x06\x6a\x4a\xb2\x01\x18\x8a\xe4\x8f\x8e\x95\x26\xfc\x74\xc7\x43\x1c\xce\x51\x0b\xd7\xe9\x25\x7c\xfe\xb3\xde\x17\xf6\x80\x2b\xc3\xdf\x51\xfc\x79\xf6\xac\x07\xa0\xfc\x46\xe0\x9a\xf9\x87\x4f\xd0\x4a\xb1\x76\x1a\x75\x3a\x64\xbd\xf7\xb1\x72\x01\x6f\x3f\x91\x9d\x9f\x57\x50\x14\x36\xd2\x65\x1d\x53\x5a\x1e\x51\xbf\x6b\xa1\xfa\x81\x5d\xf2\xc9\xb1\x4e\x13\xd6\x1c\x96\x36\x31\xe9\x20\xa2\xdd\x47\x55\x00\x77\xcb\x89\x22\x90\x2c\x64\x69\x52\x18\x84\xcd\x1c\x76\xd1\x1c\x63\xe6\x03\x3e\x26\xad\x5b\xdf\x2d\xeb\x65\x66\x65\x2b\xe0\x0c\x08\xa9\xbf\x81\xb6\x26\xc2\xdf\x35\xec\x8f\x82\xd4\xa1\x7b\xe7\x13\xa0\xfc\xd0\x4c\x78\x99\x62\x32\x3e\xa6\xb9\xe0\x04\x72\xaa\x45\x9f\xbf\x0b\xdd\x47\x86\x9d\xbb\xe5\xd0\x14\x45\x66\xc2\x82\x52\x30\xbc\xff\x23\xd4\x17\xd2\x5c\x61\x5c\x19\x13\xbf\xb0\x80\xc0\xd9\x03\xe3\xfa\x09\x05\x5c\xea\xd9\xde\x76\x7a\x53\x97\xe9\x93\xa0\xe3\x3e\xd3\xf1\x0a\xee\x5f\xfd\x2f\x50\xc5\xa0\x3d\xff\x57\x9e\x19\x7b\x15\xb9\x16\xe1\x64\x10\xea\x3f\x3d\xae\x06\x91\xcb\x22\xc5\x62\x7f\x69\xfb\x18\xcf\x0a\x11\xfb\x25\x7a\x9b\xa2\xbb\xa4\xf8\x05\x5b\xc6\x1e\x6e\xd2\xff\x85\x4e\xf5\xdc\x30\x61\xb8\x19\x7d\x7d\xfb\x58\xd9\x00\x81\x04\x4d\x9b\xe9\xe9\xff\x6c\xec\x89\xe4\xc3\x2c\x1d\xae\xc6\x36\xe1\xf5\x42\xba\x77\x1a\x2c\xea\x8d\x80\xc2\x34\x29\xa2\x64\x64\x62\x04\x52\xe2\x10\x4d\x9f\xf4\x16\xd1\xf2\xda\x97\x53\x40\x24\x7d\xfd\x8b\x47\x23\x9f\xd4\x44\x3b\xe6\xf6\xb5\xbb\xa3\x55\xa7\xf4\x82\xcd\xfe\xe5\xd2\x97\x56\xa0\x42\x81\xed\xe5\x46\xa3\x93\xd2\x28\x8e\xa3\xbc\xdf\xf2\x80\xae\x63\x4a\x1c\xe6\x58\x93\xfc\xad\x59\x5c\xcc\xcc\xb2\x42\xc4\x35\xf5\x67\x7d\x9a\x33\x1c\x25\x11\x64\xb7\xf6\x48\x99\xeb\x1c\x8d\x4c\x3e\x56\xab\x71\xb5\x91\x44\x3d\x9b\x14\x91\x89\x11\xf9\xb2\x4d\xa5\x4a\xa4\x3f\x54\x3e\x02\xc7\x14\xf6\x2c\x5d\xb6\x59\x9f\xfd\xff\xd7\xde\x24\x26\xc8\x9b\xe5\xd3\xbe\xe5\x31\x4c\xe3\x74\x31\xca\x0b\x24\x51\xdc\x54\x43\x12\x25\x1d\x36\x8f\xe2\xeb\x5b\x53\xbd\x09\x90\x5d\xb0\xac\xbc\x59\x7a\x86\x33\xaa\xaf\x4a\x67\x4d\xe8\x09\x5e\x49\x34\xec\x5b\xbb\xd4\x52\x22\x82\xb7\x4b\x8f\x41\xbf\xad\x0c\x46\x06\x43\x1b\x3b\x45\x2c\xac\x53\x77\x69\x7e\xaf\x5d\xc6\x62\x8a\x97\x7a\x5c\x85\x7a\xf9\x70\x04\x0c\x8d\xd4\x48\xab\x2b\x93\xe2\xa9\x9f\x74\x3b\x77\x7c\xaa\xa5\x5d\x77\xb8\xe4\x21\x1e\x3c\x13\x96\x22\x24\x73\x50\xbd\xa5\xcd\xf4\x9b\xae\xe6\x53\xad\x33\x92\xea\xf8\x8e\xc1\xf5\x40\x33\x52\xb1\x88\x21\x54\x3d\xc6\x01\x0d\xd6\x55\x58\x53\xa0\x86\x76\x54\x65\xb3\x5d\xdb\x8f\x92\xde\x16\x0f\xf0\x79\x04\x6c\x7c\xf1\x2e\xd2\x34\x60\x68\x09\xe0\xb9\x81\xff\x89\x2e\xe4\x7d\x86\x7b\xf1\xff\xf0\xcd\x89\xb9\x96\xd6\x30\x77\xef\xa4\xe8\xdb\x28\xdb\xec\x63\x9f\xab\xb4\x5a\xb1\x69\x03\x7d\x35\x77\x61\xb1\x68\x38\x1a\x9d\x82\x1f\x2b\xe9\xb4\x19\x5e\x74\x68\x28\xfe\xe6\x4f\xa9\xb8\x64\x85\x0a\x33\xa0\xc7\x23\x5d\xbb\x40\x1b\x29\x1f\xab\x37\x59\x45\x30\x8f\x4d\x24\x97\xd5\x8f\x61\xb1\x7b\xa8\x59\xef\x67\x27\x74\x39\xbf\xa1\x18\x65\xaf\x21\xd4\x76\xfb\x50\xf5\xe8\x90\xd5\x7c\x39\x50\xe6\xbb\xef\x29\xcd\x8a\x8d\x80\x07\x73\xd0\x49\x97\x86\x36\xd4\xc6\xb1\x17\x3c\xff\x0b\xdc\x2b\x6a\x99\x57\x6b\xd9\xcd\xce\xf9\x76\x37\x03\x9f\x4e\x0b\xc6\xdf\x56\x82\xf1\xb7\x1b\xf5\xc3\xcc\xb2\x4d\x46\x76\xc2\x23\xfb\x82\x36\xd9\xbb\x10\x78\x2f\x31\x16\x7c\x91\xda\x78\xf5\xd5\x52\x34\xf7\xac\xec\x6e\x1a\xe5\xf2\x7d\xc8\x6a\xb8\x92\xcb\x27\x4a\x10\x25\x34\x05\xd0\xa5\xcd\x6a\x4d\x8a\xc3\x37\x0a\x97\x6c\x86\x90\x0d\xa0\x0e\x86\x67\xf0\x89\xaa\x25\x2c\x8c\xa8\x0b\xfa\x18\x3d\x04\xa1\x0d\xd1\xf3\x95\x68\xd3\x43\x93\x4b\xdd\xef\xfc\x6e\xe9\x15\x17\xde\xe6\xd7\x2b\x8e\xff\xbe\x6d\x8b\x65\x03\xf9\xd2\x16\xe0\x57\x91\x60\x00\xc3\x0f\x72\xca\xbb\x9a\x08\x76\x86\xd2\x22\x8c\xea\xef\x05\x2a\xa3\x38\x5a\x8b\x4f\x77\xec\xf0\x02\x0d\x34\x5a\xb1\x12\xa2\x36\xcf\xc7\xb5\xaa\xcb\x27\xda\x71\x34\x88\x0a\xae\x1f\x3a\x75\xb6\xea\xe9\x88\x3a\x9b\x76\x0d\x83\x08\x4d\x75\xab\x98\x5c\xc7\x55\xb7\xe1\x16\xc1\x2b\xb0\x53\x9d\x55\x5a\x2d\xf6\x10\x45\x1f\xd5\xaa\x58\x5d\xbe\x2b\xef\xba\x90\xfc\x56\xa0\x68\x94\xc7\xd4\x9a\x77\x60\xf7\xee\x29\x45\x5e\x44\x8a\xe8\x32\x4c\x27\xfc\xf0\xf5\x09\x2d\x86\x41\x9a\x6c\xa7\x20\x0a\xd7\xff\x26\xcd\x08\xe7\xee\xbc\x63\x8e\x93\xc5\x23\x81\x7f\x61\x47\x79\xbd\xc1\xf3\xbf\x89\xac\x56\x24\x65\x29\xbc\x72\x52\x28\x3e\xec\xdf\x3a\x56\xda\x4d\x5f\xd6\x98\xa3\xe3\x4a\x03\x11\xba\xa2\x28\x66\xdd\x00\x91\x5a\x00\xb2\xd5\xcd\x60\xd6\x6f\x18\x57\x4f\xce\xc1\x6c\xaa\x65\x9a\x2f\xbe\xf4\x3a\xe4\x79\x2f\xa2\x77\xa4\x49\x8d\x7c\xfc\x91\x3e\x10\xc3\x2c\x2d\x6c\x88\xfd\xda\x35\x72\xd9\xbc\x48\x76\x8e\xf5\x12\x7f\xf3\xf3\x6d\x93\x85\xfd\xa8\xfa\x20\xc9\x06\x39\x0d\xe6\x57\x69\x24\xf1\x71\x93\x48\xd3\xc0\x9a\xa4\x98\x56\x0e\x53\xd8\x66\xd1\x8b\xbf\x5b\xea\x1a\x88\xaa\x28\xcc\x74\xdc\x1a\x31\x8a\x49\x00\xc3\xfb\x51\x7a\x54\xd7\xbf\xaa\x26\xd8\xda\x55\xba\x6d\xac\x1a\x9b\x50\x4f\xc4\x4b\xd3\x9a\xc3\xbf\xf4\xa9\x79\xba\xea\x09\xb5\x60\x3e\xa9\x4d\x80\x3d\xb3\xed\xae\x4d\xa2\xc5\x84\x7a\xe8\x18\x83\xc8\x56\x58\x6c\xb5\xf4\xf9\xdb\x0f\x68\x96\x22\x8a\x39\x5a\xfb\xa6\xfd\xb3\x73\x6d\xaf\x8f\x8a\x2c\xf2\xf5\xc0\x93\xfe\x5e\x6f\x68\x05\xed\x6d\x0f\x23\x3c\x66\x1a\x3f\x68\x9d\x20\x93\xe6\xe3\xda\xfb\x39\x30\xb7\xcf\xb9\xd9\x2f\x09\x85\x00\x55\x37\x70\xe7\xf8\xb8\xc1\xfc\x71\x8e\xe2\xaa\x61\x16\x39\xaf\x24\x54\x24\x50\x2e\xe5\xe3\xa6\x36\xe1\x42\x66\x92\xb0\x1f\xe5\x56\xf3\x06\x2e\x29\x30\xff\x25\xcd\xd4\xcb\x4c\x4e\xfd\xbe\x78\x15\xe5\x75\xbc\xc0\x5f\x57\x54\xbd\xad\xd0\xb6\xe5\xff\xd0\xad\x7e\x6c\x60\x88\x58\x36\x2a\xdf\xee\xcc\xf4\xa2\x34\xc7\x45\x3b\x10\x4d\x35\x86\xf8\x44\xe1\x61\xc2\x74\x30\x88\xf2\x3c\x4a\x93\x7c\xd3\x94\x37\x8f\xda\x8a\x4a\x0f\xea\xc7\x77\xb0\x9b\x02\xa7\xf6\x03\x44\x25\x62\x4c\xe1\xf9\xc0\xdb\x94\x9e\x4d\xd3\xd2\xb9\x10\x29\xe2\x02\x93\x6f\x03\x5f\x95\x3d\xab\x6d\x20\x6d\x1c\x3f\xda\x72\x78\xbd\xeb\x34\xaa\x70\xcb\xd0\x87\x02\x44\x8d\xd9\x9e\x38\x79\x17\x6b\x0f\xc6\xde\x1f\x2a\x42\x66\xab\xe3\x35\x0f\x6f\xd0\xc6\xc3\x72\x24\x84\x86\x60\xfd\x08\x04\x61\xfc\x61\x00\xea\x24\x71\xa6\x07\x81\x94\xea\x7d\xb5\xa1\x66\xd1\x22\xc3\x23\x91\x9b\x43\x04\x82\x8f\x1b\x94\x0c\xdb\x45\x3a\x0a\xfb\xe4\x1f\xa4\x05\x20\x05\x5a\x35\x51\x26\xf5\x1d\xee\x07\x81\x7f\xab\x49\x94\xe7\x26\xd9\x4a\x17\xe7\x34\x7c\x0f\xb8\xe6\x20\xdb\x9a\x3b\x6f\x94\x5d\xbb\x78\xed\xfd\x33\xd5\x74\xfc\xb2\xc2\x87\xbe\x4b\xa9\x08\xdb\x5c\x28\xf7\x16\xee\x01\x49\x2d\x55\xf5\x80\xd2\x2a\x64\xab\xfe\x0f\xf0\xbb\xb7\xe8\x42\x05\x6d\xe9\xeb\x25\xa0\xdc\xe0\x07\x37\x81\x4a\x87\x82\xe6\x06\x8c\x64\xed\x2d\x81\x5b\x7e\xbc\xe3\x05\xa1\x6f\x71\x40\xa0\xec\x45\x9f\xe7\x15\x92\x2d\x2c\xc4\xbe\x8e\x9e\x19\x76\x8b\x12\x43\x14\x8b\xe7\xd6\x8e\x86\x53\x15\x8f\x54\x57\x86\x4c\x86\xc3\x5b\xa7\x4d\x2b\xbd\x9e\xbf\xe1\x84\x1c\xb9\xd5\x8f\x34\xbf\x6a\x43\x47\x29\x2a\x5e\x41\xc9\x40\xa0\x55\xd5\xed\xa3\x82\x81\x8c\x19\x83\xe9\x4a\xa9\xdc\x4d\x2f\xae\x67\x79\xed\x9f\x9d\x6f\xef\x98\xdb\x54\x8d\x3d\xce\x28\x68\x74\x8b\x3b\x9d\xaf\xcc\x63\x03\x91\xb0\xdc\xcb\x85\xbc\xac\x85\x9b\x8f\xd5\x20\x57\x3b\xe7\xdb\x3d\x53\x98\x61\x1a\x25\xc5\x94\x66\xea\x9c\x50\xe1\xd4\x57\xb4\x12\xf5\x29\xd5\xd5\x5d\x8e\x52\xc7\xd5\xc3\xbc\x3a\xa2\x30\xa1\x47\x1a\x9c\x7b\xe7\x45\x0b\x14\xcb\x8d\xe4\x62\x2a\x2f\x53\x84\xbd\x81\x49\x7a\x24\xe3\xe5\xa5\xa1\x02\xc5\x91\x6a\x8c\x9a\xd1\x48\xd0\xc4\x89\x49\x95\x41\x65\x0c\x3c\xca\x59\x6e\x13\xbb\x8a\x33\x49\x73\x81\xc0\x79\xc5\x9b\x1f\x98\x43\x2b\x36\x86\xe6\x3b\x8b\x8b\x28\xf7\xcf\x4b\xaa\x92\x61\x7a\xcb\x69\x68\x0a\xe1\x79\x88\x86\xa6\x9f\xef\x97\x1c\xc8\x2c\x8c\x4d\x16\x2d\xb8\xbe\x99\x93\x20\xf7\x7b\xef\x69\xed\x59\x03\xc7\xaa\x2d\xd5\x60\x40\x4a\x72\xac\xd4\xb0\x8f\xea\x17\x5c\x8e\xf6\x99\x03\x3c\xa4\xe0\x46\xc0\x5c\x9f\xc0\xa3\x38\x2e\x51\xc4\xc7\x30\x85\x40\xc9\x42\x9f\x53\x25\x89\x7e\x9a\xa4\x99\xc4\xbc\x5c\xbc\xa7\x07\x24\x85\xfc\x7a\xdf\x7c\x2f\x6d\x84\x21\x3c\x7f\xaa\xbb\x12\x29\x40\x7a\x1a\x02\x58\x96\xbe\x77\xdf\x24\xbd\x3c\x1d\x58\x16\x99\x47\x60\xfe\x37\x74\xc9\x7c\xac\x14\xb4\x17\x7b\xc3\x96\x57\x44\xfb\x80\x6e\x86\x8f\x55\x0d\xfe\x45\x5b\xb0\x53\x3e\x07\x26\x00\xd0\xf1\xb1\xc3\xc3\xa7\x49\x98\x2e\xda\xc4\xaa\x2e\xf8\x45\x62\x97\x49\x70\xba\x7e\x74\x1d\x3c\xd8\x5e\x4e\xe3\x91\xbb\x2f\x59\xbc\x55\xc5\xf5\x54\x0d\xd0\xb6\x6b\x57\xdb\x0c\x87\x59\x3a\xcc\x22\x65\x0f\x89\x6b\x61\x0d\x32\x3e\x51\xb5\x50\x7b\x88\x04\x1e\xb7\xd2\x22\x83\x58\x05\xf8\x1b\xce\x81\x14\xb4\xfe\x1a\xe2\xde\x09\xd9\x7b\x04\xbb\x58\x28\xb0\x79\x9c\xa3\x86\x24\xd6\x77\xb6\x19\xd5\x61\x27\x52\xe2\x6f\x29\x89\xf9\xe5\xc8\xae\xd0\x9a\xc0\xe9\x22\x3a\x1d\x2f\x63\x98\xf0\xc9\x44\x2b\x7d\x25\x5e\x25\xed\x1f\xc1\x33\xd2\x32\x8c\x1f\xbf\x83\x95\x17\xb7\xb9\xb9\xe3\x09\x13\xef\x69\x08\xc6\x99\x46\x09\xe0\xcc\x44\x02\x95\x5f\xa3\x99\xb9\x76\x5e\x6f\xaa\x69\x8c\x2e\x91\xd8\xb1\x5e\x9f\x30\xfa\xf3\x6c\x3c\xc0\x70\x64\x0d\xf4\x43\x25\x89\xc2\xbe\x05\x21\xc2\x71\x68\xbd\x85\x4f\xad\x65\x3d\x3f\xdf\xb6\x55\x4a\x97\x18\x87\x4a\x9a\x30\xec\x15\x57\xdf\xc7\x54\xbc\x96\x0e\xb7\x78\x16\xe9\x59\xe5\x84\x70\x0f\x77\x8f\x3d\x68\xaa\x43\xaf\x51\xe4\x6d\xe9\xab\xd1\x1b\xb8\x53\x7a\x36\xcc\x14\x55\x1d\xdc\x95\xfa\x0f\xd4\x02\xd9\x5d\xbb\xda\xdd\xcc\x9a\xa5\xa2\x9f\x11\x33\xbc\xfa\x59\x91\x8e\x6b\x79\x19\xb9\x5a\xd1\x72\xf7\x0b\x7b\xdb\xf9\xb2\xcd\x7a\x71\xba\x9c\x2f\x7d\xb4\xda\xc7\xe3\x8e\x01\xb6\x6c\xb3\xdc\xce\x78\x2b\x58\xc8\x73\xae\x9d\x56\x56\xfc\x6f\x04\x4a\xbf\xef\x92\x4a\xd9\xdf\x70\x93\x11\xc9\xb5\xb4\xfc\x38\xb0\xd0\x65\x9d\x9b\x4a\xa2\x8f\xc9\xc8\xd8\x70\x4f\xab\x40\x30\x8e\x86\xe8\xae\x31\xb7\x2d\x50\x42\x66\xe7\x6a\xe2\xee\x0e\x80\x60\x32\x53\xf4\x53\x76\x9a\x11\x6e\x7a\x4b\x31\xdb\xb7\xf1\x27\xab\x30\xff\xa7\x29\xf4\xc3\x5e\xc5\x8a\x00\xd2\x97\xab\xe6\x98\x30\xcf\xe8\x3e\x10\x13\x3e\x8e\x30\x86\xbd\xd6\xd0\x47\x46\x6e\x7a\x57\x61\x58\xd6\x10\x28\xe3\xaf\xee\x20\xa6\x74\xf6\xb6\x55\xd8\x86\x26\xff\xa6\x71\xb5\xfa\xd3\x40\xfb\xbd\xa7\x3a\x9e\xec\xf7\x1d\x4e\xb3\x75\x43\x0f\xe9\xc3\x29\xbd\x79\x6f\x43\xa0\x8e\x34\xf9\x26\x75\x94\xc4\xc6\x95\xc6\x1c\x36\xee\xf3\xb4\x35\xa0\xd2\xb5\x81\x8c\x90\x31\x16\x1f\x52\x3b\xca\x45\x5a\xbb\x1d\x01\x0b\xac\x72\x87\x57\xdc\x29\x70\xc2\xcb\x5c\x7a\x64\x69\xf4\x52\xf9\x94\xfc\xff\xc6\x5e\x73\xef\xcb\xcf\x50\xbb\x82\x5b\xab\xd4\xeb\x16\x0f\x1e\x45\xe9\x36\xd9\xe6\xea\x9b\xb1\xf3\x31\x35\x4e\xda\xc1\xd5\x35\x62\x1b\x9c\x1a\x7b\xf3\x1d\x44\xff\xf8\xf1\xfb\x54\x9f\x90\xa2\x98\x47\x95\xde\xa9\x81\x4a\xf6\xbd\xd0\x5e\x88\x23\xea\x86\x53\x35\x06\x39\xe9\xc9\x52\x69\xf8\xdc\x55\x99\xc8\x45\x55\x61\xa3\x14\x75\xab\x32\x05\xa7\x55\xdb\x19\x84\x57\xef\x01\xec\xb9\x5b\x98\xfc\xa2\x64\x53\x53\x73\xc4\xe6\x7f\x9c\xb6\x71\xa4\x19\x27\xe8\x1e\xb9\xe2\x18\x78\x4e\xd8\x9f\x34\x81\x48\x4d\x56\xe5\xb0\x53\x13\xc0\x76\xc5\xf6\x83\x18\xa3\x90\x62\x7c\xbc\x55\x40\xd9\x65\x5a\xe1\x47\xb1\x73\xf0\x31\xa5\x40\x88\x60\x21\x03\xc1\xc7\xca\x97\xb2\x97\x26\xa3\x22\x6f\x51\x59\xcf\xb1\x57\x9e\x7b\xce\xb1\x57\xd4\xb3\x8a\xed\x4a\xae\x8c\x3a\x8f\xe9\x92\xf1\x31\xd5\x36\xcf\x8b\x74\x38\xb4\xbd\x19\xdf\x15\xc0\x10\x73\xec\xac\xfd\xde\x89\x8f\xc6\x14\x16\x9a\x63\x13\x1c\xae\x8f\x74\x5b\x18\xd8\x43\x51\x68\x78\xf2\xbb\x76\xa0\x0b\xa5\x5f\x2e\xb7\xb9\x0b\x59\xf9\x64\x6b\xea\xc0\x9e\x59\x4e\xc2\x78\x45\xe4\x93\x26\xf0\x96\x59\xcc\x2c\x0a\x7a\xcc\x98\x40\x08\x84\xb5\xef\x3e\x26\x03\xe6\xc9\x5f\xb8\xc6\x79\x3a\xb4\x09\xbd\x82\x6a\xb0\xa1\x4b\xb6\x85\x40\x66\xe2\x51\xe6\x81\x34\xdb\x3a\x4a\xa1\xeb\x8c\x37\xc4\x2c\xcc\x92\xcd\x67\x7c\x43\xe6\x1f\x3e\xd9\x99\xac\xfb\xec\x99\x65\x62\xd3\x45\xce\x9d\xc4\xb2\xc3\x87\x15\x0f\xd6\x9b\x1e\xee\x9c\x6f\x7f\xfa\x97\xb1\x3a\xbb\x62\x82\x5b\xf3\x2f\x29\xb5\x89\x49\x1b\xaa\x06\xc0\x56\x98\x8d\x06\x5d\x87\x8a\x46\x7b\xf7\x0d\xad\x82\xf4\x86\xeb\xf9\x2c\x64\xf6\x8b\x23\x9b\x84\xab\x28\x8d\x48\xd8\xaf\xd3\x81\xc7\x54\x80\xbe\x64\x9f\xa1\x65\x13\x4f\x1b\xae\x41\x4a\xed\xe5\x0b\x5a\xd5\x55\xcc\x7f\x30\x8e\xb1\x1c\x6f\x19\x57\x4b\x04\xe7\xee\x74\x7b\xf8\x9b\x2d\x48\xf7\xb9\x69\x8e\x69\x0c\xc1\xba\xd7\x34\xe4\xe6\xc9\x31\x0d\x38\x00\xf2\x4e\x07\xbe\xe4\xf5\xbd\xd2\x17\xd6\x78\x6f\x47\x1e\x7b\x83\x26\x14\x26\xe8\xf5\x52\xb3\xf4\x58\x00\x01\x61\x1d\x57\x63\xa4\x67\x4b\x1b\xc8\x44\x07\x1f\x61\xe1\xd6\x8e\x6f\xe2\xe5\x55\x62\x53\x44\xcb\x16\x33\x0c\xf9\x30\xb4\x0b\xf8\x78\x3c\xa1\x82\x51\x8c\xf2\x19\x7f\xc3\xe7\x95\xc9\x35\xb7\x7d\xc5\xb0\xdb\x2b\xdc\xc3\x73\x03\x6b\xdb\x36\x55\x21\x1c\x2d\xa1\x96\x2a\x7a\xfa\x6a\x57\x3d\xa2\x88\x74\x03\x9b\x2d\xe5\x66\x60\xd9\x10\x0c\x0b\xdb\x71\x05\x44\x39\xee\xe8\x6c\xbd\x28\x37\x59\x66\x58\x51\x8f\x35\x08\x95\x94\xd5\xd6\x8e\x0f\x62\x6f\x6b\xb1\xd3\x8b\x0a\x0d\x94\xa4\xd9\xc0\xc4\x84\x80\x41\xde\x7d\x46\xa3\x1f\x50\x56\xe6\x63\xac\xcd\xfc\x57\xc1\xb3\x4a\x92\xab\x9f\xe6\xc3\xa8\x30\x04\x81\xf1\x29\x40\x0b\x5d\x22\x3e\x19\x37\xa8\x15\x99\xa2\x1f\xdb\x22\x0a\x27\xc0\xbd\xe7\x54\x30\x78\x4e\x2d\x8c\x99\x89\x87\x7d\x18\x89\xb3\x30\x2f\xc6\x8c\x56\xe9\x75\x5e\x5f\xbe\x0b\xff\x9e\xda\x2b\xff\x5e\xfb\x4a\xff\x67\x45\x7f\x75\xeb\x94\xf7\x18\x61\x19\x24\x27\x60\xb5\x67\xd6\x0b\x4e\x54\xbf\x83\x02\xc4\x69\x5a\x70\x71\xb3\xdf\x56\x26\x95\x3f\xd1\xf1\x9b\xed\x75\x14\x4e\x84\x85\x4b\x97\x82\x25\xe1\x82\x13\x16\x8d\xcd\xca\x94\x07\x51\xa1\x7b\x83\x00\xfa\xa9\x8e\xea\x72\x6d\x1e\x2b\x1b\x3e\x1b\xa6\x49\x0f\x43\x1a\x17\xf0\x01\x22\x30\x3e\x69\x04\x48\xf7\x4d\x36\xa0\xad\xdc\x99\x36\x90\x9a\xc1\xf3\x55\x88\xea\xda\x1c\x0f\x9b\x34\xad\x63\xd3\xd5\xa8\xd2\x4b\xaa\xad\xf2\x30\x50\x0d\x8a\xba\xd6\xc3\xce\xf9\x76\x1e\xc5\x51\x88\xa0\x72\xef\x04\xdd\x59\x1c\x2a\xfd\xb6\x1b\xf6\x4d\x4e\x39\xf6\xdc\x3e\xbe\xe9\xf7\x02\x0f\x1b\x7a\x6f\xa2\xb4\xf0\x22\x69\x18\x21\xca\x15\x60\x9d\xa2\xee\x5f\xac\x45\x33\x7b\x66\xdb\xd5\x2c\xa3\x3d\xce\x73\xb8\x8e\xe0\xfa\x85\x8b\xb3\xfe\xe6\xab\x2c\x7e\x34\x9c\xf6\xcc\xff\xeb\xb4\x52\xb1\x89\x02\x8d\x0c\x56\x25\x0a\x26\x14\xb8\x15\x8e\x25\xb6\x64\x90\x83\xed\x7c\x6b\x07\x8b\x1b\xf7\xdd\x4a\xb7\x72\xfc\x2e\xdc\x93\xb1\x3c\xb0\x7d\xad\x88\xb8\x28\x1c\x08\x4b\x36\xe2\x5a\x36\x8e\x95\x0d\xe3\x65\x44\xca\x82\x74\xa1\x18\x1a\x71\x24\x36\x3a\x11\x22\xa1\xb9\x2e\x65\xd0\x86\x5d\xa9\x17\xe5\xc5\x28\xeb\x72\x6a\x8f\x31\xc9\x06\x63\x7c\x52\x7b\xc9\xfb\x5e\x10\xee\x30\xbd\x0d\xa4\x54\x67\x55\x7a\x75\xd6\x5b\xb0\xa6\x71\x9c\xae\x6c\x52\xf5\x20\x58\xcc\xa0\x44\x77\x5b\x95\xeb\xce\x6b\x5c\x1e\xe2\x5a\x88\x17\x6c\xec\x78\x54\xf4\x96\xb1\x0f\xb8\xf2\x61\x9a\x15\xf9\xd6\xc9\x1a\xb4\x17\xf8\x86\xa4\x0c\x3a\x5e\x8f\x20\x0e\x10\xa3\x27\xba\x53\x04\xd0\xb7\xb4\x7d\xc4\xd1\x40\xa1\x33\x5f\x0b\xbc\x72\xf8\xb9\xc0\xc3\x90\x3e\xbc\xae\x98\x20\x64\xcf\x6b\xf3\x02\xfc\x5e\x54\x78\x37\xc1\x32\x18\xb3\xfe\xad\xd2\xb3\x5d\x8f\xe3\xeb\xb1\xcd\x6e\x19\x3b\x18\xc8\x68\x10\x41\xa4\x0f\x95\xe4\x2f\x05\x4a\x3b\xed\x4b\x8a\xa4\xc2\x8e\x10\xa0\x30\xf1\xd7\x07\x3e\x31\xb8\x34\xd1\x20\xa4\x0b\x16\xd4\x18\x3d\x23\xb9\x20\x7a\x14\xce\x30\xa7\x7a\x60\xa2\x20\xfb\x84\xea\x82\x67\x03\x9b\xb4\xbc\x6e\xdb\x25\x2d\x78\xee\x0d\x2d\xf2\x81\xc9\xfb\x0e\x5b\x84\xdc\x10\xae\xd0\x48\xda\xae\x2b\xc0\xcf\x45\x17\xea\x0d\x4d\xb8\x64\x16\x29\x77\x5e\x63\xec\x2e\xfb\x1d\xaa\xb5\xf0\x96\xf2\x53\x62\xd9\x7f\xc4\xed\xaf\x78\x00\x8d\x49\x4c\xac\x9a\xd2\x37\x55\x53\xfa\x66\xad\xb5\xb0\x7f\x76\xbe\x3d\x20\x05\x38\xcf\x90\xa0\xdf\x13\xb6\x44\x9d\x3e\xd3\xcd\x46\x79\x4e\xa4\x0a\xc5\x17\xd0\x1a\xe1\x6a\xe7\x29\xd2\x98\xe8\x0a\xa8\x3d\xfe\x10\xcf\x0b\x01\xd9\x4d\x4e\x51\xf9\x4c\x97\xbd\x7f\xa8\x92\xf8\x74\x25\xc9\x67\x7c\x3d\x96\x67\x3b\x1e\xf9\x34\xb1\x9b\x26\xfc\x83\xb1\x9c\xbe\x85\x60\x5f\xcc\x84\x9d\xa8\xd5\xbe\x9f\x56\x92\x21\xf7\xd4\x30\xf9\x51\x40\xa1\xbc\xf4\x9f\xaa\xbc\x56\xe1\xe0\xa4\xb8\x70\x04\xa9\x37\x08\x9a\x20\x05\x88\x03\x7c\xeb\x73\x73\x4e\xdd\xa9\x0a\x1b\x91\xfc\x4e\xf3\x42\x47\x1f\xff\xe7\x1f\x27\x42\x2c\x72\x96\xb5\x52\xb1\xdf\xd8\x6c\x03\xf1\xc6\x5a\xd9\xda\xf7\x02\xaf\x6d\x0c\xb6\x74\x1a\xb2\xd5\x88\x75\x39\xab\x33\x8c\x79\x4d\x9b\x70\xfe\xa3\x8e\xef\xfd\x3d\x3a\x56\x7d\x89\x47\xc6\x4a\xe7\x76\xfb\xd8\x63\x1d\x9e\x20\x79\x2e\x51\xb2\x6e\xfd\x92\xbc\x85\xa3\x58\x25\x1d\x36\xf0\xf3\x9f\xe5\x5a\xe8\x46\x06\xf0\x60\x25\xbc\x4e\x55\x52\x7c\xed\xab\x41\x95\x1e\x72\x37\xa2\x9c\xa0\x7b\x2d\xa4\xd5\xc2\xe8\xb4\x38\xde\x0a\x94\x3a\xfc\x5b\x6e\x65\x34\x79\x1e\xe5\x05\x85\x65\x78\x31\x33\x68\xa0\x00\xba\x74\x16\xf8\x76\xad\xe6\x81\x6c\xf8\x4a\xf9\x0f\x3f\x22\x9f\x2b\x32\x93\xe4\x26\xd4\xe4\x61\x7c\xd7\xdb\x18\x70\x7c\xd2\xa4\x14\x4a\xc6\xab\x09\xb8\x12\xce\xcc\x6d\xd7\x2e\x57\xbd\xf8\xa8\x02\x52\x9e\x46\x61\x5f\x00\xdb\x5c\x4b\xd5\x30\xd7\x6f\xa9\xbd\x3e\x4f\xc3\xc8\x16\xa8\x95\x0a\x5c\x8c\xc6\x98\x83\x35\x39\x7a\xe3\x45\x25\x45\xf7\x86\x06\x9f\x1f\x53\x05\xfa\xa2\x3f\xca\xf2\x9e\x59\x9d\xf1\x51\xe1\x0f\xb4\xde\xf6\x14\xca\x2c\x08\xa9\xcf\x2b\x33\xe2\xbb\xaa\x19\xfc\xa0\x16\xfd\xfc\x62\x7b\x41\xc0\x28\xe2\x8c\x4c\xdf\x83\xb5\xed\xee\x84\x59\x87\x33\x53\xc9\xd2\x15\xc0\xf3\x9e\xe7\xb4\x96\xc9\xfa\x3c\xd2\x02\x65\x7b\x7e\xae\xfc\x98\xab\x20\xe2\xb1\xf7\xb8\x3c\x4e\x2f\x09\xa1\xee\x55\x45\x69\xbf\xaa\x98\xaf\xa3\x24\x1f\x85\xa1\xcd\x73\x98\x40\x56\xf7\x21\xe8\x7f\xad\x72\xe6\xe5\x30\x72\xaa\xcb\xc0\xe7\x45\x32\x11\x9d\xa2\x3c\xa9\xb4\xa7\x6c\x3e\x1a\xd8\xde\x94\x77\x20\x44\xd8\x87\x1b\xba\xab\x9c\x68\x4f\x28\x66\x6d\x94\xd8\x85\x05\x1b\x16\x0c\x5f\x95\x4b\x38\x16\x78\x0b\xcb\x63\x4d\xbc\x0b\xb2\x42\x1d\xc4\x51\x02\xf8\x96\x6e\xd3\x4b\x66\xdd\x40\x4c\x1e\x66\x76\x20\x7e\xe7\x58\x4f\xae\x2b\x36\xed\xf5\x5a\x78\x73\xa0\x0a\x83\x6d\x22\xa2\xa2\x42\xa9\xe0\xa0\x4a\xb8\xbe\xcf\x28\x94\xe3\x60\x68\x0b\x32\xbb\x01\xc8\x40\x82\x30\xaf\xfe\xc4\xd1\x19\xdb\xd1\x04\x0a\xa5\x7b\x41\x13\x24\x4f\x29\x75\xdd\xa1\x49\x7a\xa6\xa5\xc1\x79\xa7\x03\x15\xc8\x51\x1d\x97\xff\x74\x29\x49\x57\x58\xc8\x81\x8d\x14\x31\x77\x01\x1d\x9d\x51\x76\xd8\x5b\xc7\xbe\xb2\x7d\x19\x69\x12\x06\xd8\xb7\x5d\x87\x29\x4c\x47\x49\x6e\xbd\xf8\x18\xea\x3a\xd8\x63\xf9\x58\x01\x2c\x86\x99\xed\x45\xbc\x7a\x54\x2f\x6f\x42\x30\x57\x44\x76\x7d\x03\xa1\x4f\x3a\x74\x2d\xaf\xcc\x16\xe8\xc6\xa3\x86\x4e\xa5\xbd\x5e\x4b\x89\x1a\xfe\x86\xf2\x87\xff\x8d\x1a\xc9\x75\xd7\xae\x2a\x3a\x28\x5a\x1a\x73\xa7\xaa\x63\x97\x26\xf8\x61\xbd\x8c\xb1\x1b\x4e\xe0\xc7\x4b\x47\xde\x9c\xb8\x86\x25\x9b\x6f\xaf\xc6\x96\xf0\xc5\x94\x9a\x85\x46\x77\x17\xff\x96\xde\xb4\x83\x19\x39\x92\xda\xbd\x40\x31\xd9\xaf\xd2\xb6\x27\x6a\x2c\x9e\x34\x72\x99\x8a\xc7\x00\xae\xdf\xd3\x44\x9f\x35\xe4\x6a\x82\x8d\xa2\xab\x44\x89\xfa\x7b\x78\xbc\x40\xa2\x6d\x82\xa0\x21\x2a\xce\x1f\x72\x55\x04\x3d\x0f\x88\xc0\x63\xcd\xba\xd2\xc0\x21\xd9\xdd\x2e\x46\x59\x32\x8c\x96\x58\x91\x95\xc3\xeb\x40\x99\x9d\x23\x07\x93\x40\xb9\x49\x68\x69\x21\x36\x68\x68\x63\x3f\x3a\xa7\x70\xe1\xe7\x9c\xfa\x46\x37\x2d\xfa\xdb\xbd\x2c\xe5\xd6\xb1\x17\x09\xd8\x34\x56\x5a\xf9\x9b\xc7\xaa\xf8\x0e\xe1\x0c\x84\xc7\x1b\xc6\x1e\xee\xb4\x19\x2e\xa5\x88\x8b\x78\xff\xc3\x16\x70\x57\xab\xc6\x01\xd5\x86\x0a\xee\x27\x68\x0b\x47\xc8\x76\x9d\xa2\x17\xba\xa3\x5f\xfb\xb8\x6a\x09\x3c\x44\x2c\x81\xc8\x69\xc3\x58\x59\xb2\xde\x29\x15\x5c\xc7\x77\xa3\x47\xc9\x4a\x54\x78\xb0\xba\xa6\x82\x08\x21\x4e\x15\x8d\x46\xdd\x51\xd6\x9d\xf2\x01\xff\x49\x11\x48\x53\x2a\xc9\x47\x1d\x44\xb5\x3b\x8a\xbb\xda\x47\xe4\x15\x35\xac\x5e\x51\x54\x5f\xd6\xb7\xee\x51\x32\x2c\x2a\x21\xf4\x78\x44\x57\x44\xea\x07\x36\x33\xd3\x8a\x99\x79\xbf\xac\xa3\x17\x90\xaf\x6e\x25\x42\x8d\xc8\xc7\xd4\x91\x46\x26\xee\xda\xac\x90\xa5\x49\x70\xab\xf4\xd5\x82\x68\x55\x50\xf1\x7d\x9f\xc6\xaf\xe2\xfb\xbe\xcf\x0d\x0e\x57\x07\x75\x86\xb6\x6b\xca\xcf\xf0\x64\x63\x6f\xb3\x4b\x10\x7e\xda\x69\x1c\xaa\xc6\xd5\x22\xaf\xd3\x50\x17\x60\xec\x93\x8a\x6c\x12\x75\x47\x85\x65\x99\x40\x2c\x1f\xb7\x03\xc5\xaf\xf8\x50\xe9\x07\x5f\x6a\xa2\x77\xa6\x0b\x0b\x36\xa3\xed\xa6\x89\x98\x25\x4f\x37\xb1\x2b\xa4\x80\x2f\xa2\xc6\x74\xcf\xce\x42\xdd\xc1\x3d\x36\x77\xb4\xe5\x41\x35\xf6\xa4\x14\xf3\x51\x8a\xc9\xa3\x24\x0d\x39\x5d\x69\x74\x76\x69\x88\xcb\x32\x1b\x46\x43\x91\x4f\xe2\x92\xcb\x64\xfd\xa5\x3e\x8f\xdb\xf1\x28\x5c\x5a\xc5\xba\xe8\x84\x95\x77\xed\x92\xe3\x1a\x80\x6f\xdf\x0b\xce\x58\x91\x10\x9d\xfb\x67\x27\x22\x32\x09\xd5\x1a\x2a\x07\x4b\x51\xb2\x38\x8c\x12\xde\x5a\x45\x1e\x5e\xa9\xbf\x1e\x6b\xaa\xc9\x64\x96\xec\xa1\xb9\x0a\x2e\xe6\xa7\x5e\xb6\xe6\x46\xa3\xc5\xe2\x48\x9c\x1f\x7d\x90\x74\xba\x54\x98\xd0\xd3\x4d\x42\x96\xf0\xf7\xa4\xfa\x97\x33\x1d\xf9\x9c\xd4\x37\x1f\xa2\xed\x28\x19\x6d\xdd\x3d\xac\x9b\x1e\x02\x34\xc3\xed\xd9\xd5\x3a\x22\x7b\xb6\xef\xc5\x2f\xa7\x51\x08\xad\x24\x8c\xbd\x2d\x1d\x25\xca\xf0\xa1\xca\xff\xf9\x7d\xb3\x99\xa3\x62\xe7\x0d\x6d\x3a\x8c\x6d\xbe\x89\x6e\x0e\x85\x8e\xd7\xb5\x36\xd3\xb0\xd4\xaa\x55\xaf\x03\x3a\xee\xe2\xb2\xe7\x9e\xe3\xfa\xe4\xf1\x89\x09\xb0\x7e\x93\xd8\x3f\xab\x25\xa6\xf6\xcf\x4e\xe0\x2d\xa5\xe9\xe8\xe5\x1e\x5e\x0d\x7c\x6c\x38\x4a\xa2\x85\x28\xcb\x0b\x12\x30\xc4\x6f\xdd\xc4\xc6\xe5\x44\x65\x5d\x50\xff\x96\xf2\x07\x10\x81\xfb\xde\xb4\x12\xda\xfd\x6d\x55\x92\xbd\x4d\xef\x9d\x8f\xb1\x68\x8b\x70\x44\x7d\xdd\x78\xbe\x3d\x1c\x75\xe3\x28\x9c\x52\x33\x58\xb5\xf3\x3e\x54\x1a\xb4\x3f\x0e\x9e\x51\x9d\xc9\x2a\x27\x22\xe0\x28\xf0\x0e\x58\x2d\xd8\xfd\x8f\x4f\x6a\x3f\xb7\xfb\x85\xbd\xfc\x73\xaa\xa4\x3f\xa3\x4a\x76\x33\x63\xaf\x39\x57\x0d\x4d\xe8\x79\xaf\xa1\x1f\xec\xb8\xba\x3e\x1e\xe1\x8c\x80\x26\xfb\x4f\x3d\x85\xad\x4e\xda\xd4\x1e\xd9\x75\xb9\x29\x20\xca\xd3\x28\x56\xb2\x38\x67\x95\x2c\xce\x59\xf5\xb4\xe1\x3c\x13\x85\x39\xb4\x9d\x30\x8e\x3e\x2c\x3d\x97\xf6\xbc\xa6\x12\x4e\x77\x7c\x21\xf5\x64\x49\x25\x01\x67\xcc\xb6\x67\x96\xf3\xe2\x9b\x13\xd8\xad\xf5\xcf\xe8\x17\xdb\x51\xd2\x8b\x42\xb1\x9b\xc4\xbe\xcf\xc6\xca\x7c\xd2\xd4\xa2\x1d\x1a\xa5\x52\x83\x3e\xc6\x61\x2d\x07\x71\x58\xd1\x81\x49\x18\x16\xae\x2f\x6c\x15\x87\x72\x87\x88\x76\xb5\xb4\x87\xdc\xce\x79\x67\x64\x57\xb7\xcf\x68\x77\x4d\x0e\x69\x35\x24\x0b\xff\x1b\x7d\x16\xdd\xc0\xcb\x2a\xba\xba\xa4\x08\x61\xc3\x2c\x5d\x88\x42\xc8\x6a\xa9\x2e\x3f\x3d\x45\x91\x25\x7a\x6a\x12\x21\x5c\x54\xa3\xbd\xfa\x66\x11\xd0\x52\xbd\x3e\xbc\x38\xfe\x0f\xdd\xf7\x3b\xab\x7a\x20\xbd\xf4\x25\x9b\x4c\x79\x8b\x90\xa9\x8e\xf7\xd5\xba\x47\xac\x45\x06\x23\xfa\xb6\x67\x9c\x0e\x05\x99\x85\x7b\x3b\x4f\x51\x2c\x1f\x7b\x5d\x37\xf2\xa3\x76\xf8\x1d\x6c\x69\x57\x15\x5d\xca\x53\x3b\x17\x98\xb5\xd3\x72\x16\xb3\xa0\x76\xf1\x71\x03\xfc\xb0\xdd\xb5\xa1\x19\xe5\x76\x7a\x42\x1b\xca\xe7\x8f\x33\x63\x6f\xae\x7e\xb7\x74\x78\xa9\xff\xe6\xd9\x8e\xaf\x6f\x2e\x58\x92\x9d\x63\x69\x78\xc4\x68\x90\xea\x70\x85\x19\x57\xde\x3b\xa9\x65\x66\x6d\x36\xb4\x55\x06\x3a\xb5\xbe\x84\xc0\x49\x3e\x46\x97\xd0\xf9\x7d\xad\xa6\x97\x8e\x7c\x3f\x16\xa1\xfa\x37\xb0\xca\xf3\x49\x13\x1b\x26\x1f\x75\x07\x26\x8b\x18\x3e\xd7\x24\x76\xdf\x40\x06\x88\xa3\x25\x1b\xaf\x4e\xfb\x9a\x0a\x57\xa4\x5d\xa2\xbd\x47\x24\x05\x36\xe8\xb8\xf9\xd5\xc6\x50\xbf\x67\x07\xc4\x7f\xc4\x66\x88\x21\x0f\xc0\x07\x1f\xd7\x8a\x1a\x7b\x66\xdb\xb9\x59\x9d\x56\xfa\x3b\x5f\x29\x6b\x2a\xaa\x18\x2f\xc7\x4b\x4f\xa7\xba\xa7\x5a\x80\x26\xfc\xe2\x28\xca\xe1\x03\x4b\xfc\x38\xd9\x38\xe9\x7b\x10\xc1\x5f\x57\x7e\x70\xdc\x08\x93\x1b\x54\xc8\xfc\x0d\x5c\x29\x44\x1c\x85\x05\x93\xff\x2c\x78\x7c\xc2\x24\x81\xf5\xd5\xb5\x5e\x8e\x6c\x32\xd5\x87\x90\x04\xd4\x8d\xbd\x49\xbb\xde\x26\x3d\x95\x9d\xde\x57\xd9\xe9\x7d\x97\xcb\x2c\x98\xbc\x20\x80\x31\xf6\xea\x13\xf4\xad\xa8\x34\x7d\xbc\xe3\x33\x16\xae\x2d\x0a\x1a\x85\x6e\x18\xd7\x74\x5f\x19\x87\xd6\x2d\xaf\xe9\x3a\xba\x71\x9a\xb2\x8f\x20\xe3\x8d\x94\x48\xd1\xf9\xda\xfa\x78\xf0\x60\xbb\x67\x43\x41\x16\x63\x2f\x3f\xa7\x60\xe2\x75\xd3\xf7\x03\xd5\xf0\x4a\xab\xc9\xea\xd2\xea\x73\x34\x69\x04\x00\xe8\x27\x58\x91\xae\xd8\xcc\xa9\x09\x09\xd5\x50\x53\x10\x9b\x04\x4a\xa2\x24\x27\x4e\xac\x52\x9a\x3e\x1f\xe8\x19\xe5\x9e\x67\x9f\xf9\xb0\xa2\xb3\xf3\xa3\x89\xce\x3e\xdb\x23\x61\x98\x61\xe7\x47\x52\xdf\xea\xf8\xe4\x6a\x25\x2a\xfa\x51\x32\xa3\x40\x94\xef\x28\x79\x6a\x50\xc3\x59\x2c\x07\xeb\x30\xf6\x0c\xc9\x81\x50\xe6\xbd\xf7\xd1\x32\x4e\x8b\x26\x4a\x48\xc0\x16\xa3\xaf\xa5\x58\xba\x2f\x97\xaa\x64\xff\x1a\x7f\x21\x6e\xe4\x9c\x96\xd3\xbc\xd0\x48\x78\xee\x2d\xdb\xac\x88\x72\x87\x60\x41\x5e\xb4\x65\xec\xe1\xc3\xf0\x5b\x50\x7e\x3d\x12\x0a\x7e\x2f\xf8\x98\x1a\xf6\x61\x9a\xf5\x96\xac\x1d\xf2\x7b\xda\xed\x7a\xf3\x9e\xcf\x79\x5c\x41\x5e\x56\x63\x46\x3a\x88\xb8\xec\x44\x3f\xab\x09\x27\xbe\x6c\xbc\x5e\x11\x5b\xc9\x72\x7f\x42\x8c\x65\xe5\x7d\x2e\xda\x41\x3e\x55\xa5\x90\xd2\x78\x51\x5c\x65\x70\x17\xa4\x0f\xe0\x63\xc5\x5e\x94\x17\x59\x14\x16\xd3\x13\xb6\x0b\xd5\x9a\x22\xe6\x44\x9e\x15\xf4\x07\x0a\xd0\xf2\x35\xed\x6c\x69\xb2\x5e\x3e\x8d\xfc\x12\x2b\xd4\xb7\xe9\x53\x80\xf7\x1e\xa6\x5f\xe6\x63\xf4\x3d\xf9\x8f\xd4\xd6\x9d\xd9\xee\x28\x8a\xc1\xa3\xa9\x02\x06\xac\xba\x30\x2a\xe7\x63\xb7\xdb\x45\x83\x61\x1c\x09\xbd\x1a\xef\xea\x9e\x32\xca\x3a\x49\x57\x2f\xad\x55\xbf\xdf\xf7\xd2\x24\xb1\x71\x6c\x57\x5b\xad\x1d\x3b\x9c\x5d\x43\xcb\x29\xa1\x9f\xa9\x4d\xee\x3d\xb3\xed\x34\x0c\x47\x52\x8c\x04\xf9\xf4\x82\xd2\xda\xb9\xd0\x04\x67\x8d\x92\x30\xcd\x86\x69\x26\xc0\x7a\x11\x52\x60\xa3\x0d\xb9\x30\x5d\xc5\x1c\x51\xc9\x73\x14\x15\xa8\x67\x88\xcd\x5b\xcb\x39\xb6\x1f\xae\x8d\x61\x52\x33\x4a\x7a\xb1\x8d\x9d\xa6\xba\x68\x65\x7a\x2c\xec\x64\x61\x6f\x64\xe2\x67\x14\x60\xff\x26\x6a\x2b\x28\x49\x5e\xe5\xf2\x00\xd6\x46\xe0\x0e\x78\xd1\xdc\xd8\xf1\x18\x77\xa0\xba\x00\xcf\x7e\x74\x4c\x79\x0d\x22\x7b\xb6\x0f\xc6\xcd\x6d\xa0\x18\xc8\x71\x5a\x77\xcc\x39\x6c\x9b\x32\x88\xbb\x1a\x28\x9a\xcb\x35\xa5\x4a\xfe\xbe\xa2\xec\xfc\x51\xa9\xba\x4c\x6f\x63\xf0\x60\xc2\x1f\xd7\x2d\x6f\xee\xd4\x3a\x6f\x92\xcf\x7f\xd6\x51\x27\xfd\xb8\x78\xbf\x21\xe5\x6c\xdb\x64\xd1\x2c\xc2\x74\x1a\x25\x14\xa6\xc5\x30\x93\x48\xbb\x49\x62\xe5\xc5\x12\x78\x4a\x51\x32\x17\xba\x11\x07\xc7\x0e\x7d\xe1\xbc\x4f\xeb\x91\xed\x9e\x59\x82\xac\xb7\xbc\x02\x06\x56\x7f\x3e\xae\x05\x10\xd5\x8a\x4e\x85\x90\xba\xe4\x91\xeb\xf1\x9d\x0f\x1e\xf5\x36\x22\x51\x41\x16\xa0\xa8\x83\xbd\xab\xe6\xe1\x65\x45\x8c\xae\x9b\x49\x7e\xa2\x5d\x8c\x12\x33\xe5\xb1\x4a\xb7\x95\xe8\xda\x39\x9a\x87\xe2\xb8\xaf\x7e\x2c\x5e\x25\xc6\x3f\xc2\x81\x57\xf1\x4a\x44\x0b\x98\x6a\x61\xd2\x70\xa3\x87\xaa\x49\xbb\x2e\xd0\xa8\xde\x2f\x86\xc7\xef\x95\x93\x4e\xe7\xce\x59\xe0\xa2\x22\x8b\xe5\x05\x91\x2b\x69\xec\x38\x9d\x0e\xa7\xe5\x75\xa1\xb6\xdd\xee\xda\xd5\xee\xa6\xe9\x80\x2b\x11\x28\xdc\xbe\x42\x4f\x82\x8f\x9b\x14\x34\x84\x8e\xd9\x72\x82\x0c\x17\x95\x20\xc3\x45\xd5\x00\xc8\x4c\x04\x2d\x31\xcc\x0f\x60\x1f\xd4\xf2\x2b\x80\xb2\x35\xd5\x5f\x58\x4c\x4d\x9c\x4f\x29\x11\xff\xfb\x78\x70\xe2\x10\xa9\x48\xa0\xe7\x15\x2e\x6c\xc5\x44\xcb\x36\x6b\xe9\x45\x84\xee\x63\x62\x41\xd1\xb1\xef\x5c\xbb\x58\x6e\xf9\xe2\x25\x47\xaa\x7c\xd2\xf1\xf5\xce\x70\x69\x5a\x29\x44\x60\xf1\x17\x31\x6e\xba\x16\x4c\xb2\x8d\x08\x81\x05\x43\xee\xc1\x07\xbd\x28\x1f\xb0\xae\xab\x72\x4a\xfd\x82\xf3\x43\x5d\x3f\xed\x9e\x7b\x8e\x2a\x99\x11\x93\x84\x45\x0c\x43\xfb\x2e\xd3\xe0\xc6\xf1\x11\x25\x4d\xbf\xa1\xb3\xbe\xb3\x39\xb7\xaf\xbd\x98\x2e\xdb\x2c\xa9\x42\xec\xdc\xa2\x78\x24\x0e\xc7\xaa\xae\x03\x0c\xa0\x24\xf0\x4e\x12\x27\x1b\xa4\x99\x65\x03\x59\x2c\x4b\x27\xb5\x62\xda\x1d\x15\xbf\x70\x57\x90\xff\xaa\x11\xad\x00\xda\x95\xa3\xfa\x9e\x51\xf5\xca\x3a\x69\x64\xc7\x0e\x31\x16\xd3\xe1\xdd\x99\x09\x48\x9f\xda\xa7\x63\xbb\x6c\x33\xb3\x68\x37\xd1\x1a\x80\xbe\x08\xb4\x38\xf8\x18\xaf\x0a\xcb\x26\x58\x24\x58\x52\xae\x68\xe5\x0b\xb6\x4d\xe4\xff\x09\x7e\x42\x27\xc3\xe8\xa4\x2d\xdb\x84\xe7\xd7\xf3\x7c\xe9\xb7\xd4\x6d\xdc\x6a\x64\x2f\x77\xad\x22\x51\xe1\xbb\xdf\x21\x19\x00\x3e\xae\x3d\xac\x2a\xac\xa1\xa0\x06\xeb\xa6\xf0\x23\x55\x37\xf8\x56\x6d\xe1\xdc\xb1\xa3\x5d\x44\x52\x4e\xc6\x8b\xbc\x47\x6b\x84\x23\xf2\x78\x5d\x81\xd3\xe5\xc7\xdc\x83\xcb\x6c\x8c\x86\x6d\x3f\x1a\xc2\xc2\x49\x14\x59\x7c\x57\xe4\x84\x96\xce\xd2\xa2\x11\x99\xcd\xc3\x91\xa5\x4f\x61\x59\x83\x54\x3d\xdb\xf3\xe2\x82\x05\x92\xa8\x24\xe8\x47\x59\x66\x93\xe2\x51\xda\x1f\x19\xc0\x1c\xf8\x60\xf2\x2a\x8d\x68\x0c\xfb\x3e\xaa\x68\xe8\x66\xfd\x7b\x6a\x48\xa1\x51\x75\x8b\xa6\x21\xaa\x16\xbf\x87\x4e\x05\x16\x2c\xf8\x23\x00\xee\x70\x55\x8b\xe0\x9f\x50\x75\xfc\xc3\x81\x22\x76\x7f\x0f\x7b\xb3\x88\xaf\x34\x48\x6e\x66\x24\xbd\x8e\x3c\x1e\xe5\xa6\xa3\x8a\x87\x04\xc1\x32\xae\xc2\x3a\x30\xcf\x20\x4a\xd2\x6c\x8b\x02\x4c\x82\x35\x2b\x81\x91\x16\x47\xf1\x05\xdd\x69\x98\xfa\x4f\xc8\xec\xb8\xc4\x74\xb7\x13\xa6\x42\x2b\x87\x46\xec\x7f\xf7\x0f\x3a\xba\x85\xd8\xb5\x3d\xca\x00\xd1\x8f\x42\x37\x8b\x7b\x56\x1d\xbf\x5a\x9f\xa5\x9f\x47\x1d\x0c\x7b\x17\x9e\xdd\x23\xc0\x6b\x02\xa4\x74\x12\xcb\xb8\x38\x97\x15\x1f\x43\x04\x84\xa6\x08\x36\x29\x61\xb2\xd0\xa7\x44\xbc\x83\x62\x18\x71\x90\xd5\xad\x18\x30\x5e\x9c\x2d\xc7\xae\x5d\x9e\xb4\x4c\x93\x5a\x6a\x9d\x74\xd7\x58\x6c\x37\x77\xb4\x3c\x5a\xe9\x1d\x4b\xd0\x1c\xc1\xc3\xbc\x16\x28\xdb\xb2\x19\xaa\x03\x62\x45\x3e\x02\xba\x12\xc2\xb1\x9b\x18\x24\x28\x17\xbc\x1b\xa8\x8e\x29\x57\x6a\x35\xbd\x13\x01\xf8\xb6\x4e\x35\x49\x31\xb3\xdf\x23\xd6\x09\x90\x5f\xbf\x59\x7a\x1b\x95\x47\x6a\x7e\x6a\x3b\x76\xb4\x87\x59\x3a\x70\x74\x37\x97\x21\xd2\x4d\xf2\x49\x93\x25\x47\x5e\x58\x13\x17\xa0\x78\xb1\x91\x74\xa9\x98\x26\x27\x9a\x3e\x13\x47\x5d\x9b\x71\xa5\x88\xa3\x04\xba\x01\x21\x80\xd2\xe7\x45\x74\xaf\xc9\x16\x68\xc1\x9a\x6c\x4a\x11\x3a\xef\x29\x8a\x25\x23\x00\x98\xf1\x36\x11\x2b\xf7\x4d\xfe\xb1\xd6\xa7\x7f\x99\x23\xcf\xa3\x93\xf6\xfa\xaa\x7f\xf2\xfb\xe8\x4a\x20\x52\x7e\x8c\x9e\xa7\xd8\x57\xd2\xa5\x21\xcc\x79\x40\x0f\x17\x31\xf9\x55\x1e\x33\xd8\x61\xdf\xc5\x68\x70\x44\x57\xd7\xf8\xd9\x32\x56\x76\xd9\xbf\x89\xea\x3d\x55\x9c\xde\x7c\x4a\x19\x1b\x1e\x0f\x54\xa0\xde\x1a\x2b\xa2\xc6\x9a\x76\xda\xbf\x43\x53\xd3\x09\x1e\x55\x03\x18\x83\xf1\x16\xbd\x69\x04\x1e\x4f\x10\xf0\x0a\x11\x25\x26\x13\x46\xdc\x13\xd4\x95\xc4\xfc\xfd\x40\x99\xe2\x0f\xfb\x51\x1c\x0d\xa7\x7c\xf9\x89\xe5\x14\x10\x79\x43\x31\x43\x6c\x77\x3d\x30\xd8\x21\x30\xa7\xaa\xc9\x82\x10\xe1\x86\x22\x43\xde\xa0\x2b\x42\xf9\x60\xb7\x6a\x67\x86\xa3\xe2\x51\x5f\xd2\x44\xde\x86\xe2\xd2\x35\xbc\x1c\x27\xed\xb4\x67\x96\xf3\xf4\x5b\x78\x51\x28\x4c\x32\x70\x14\xf3\x76\x6a\xec\x53\xc4\x3b\x78\x84\x4e\x78\xc0\xf9\x77\x7e\xe7\xa9\x8e\xdf\x98\x67\x9f\x41\x5e\x80\x3b\x9d\x1a\x2b\x35\x91\xf7\x54\xaf\xb9\x30\xd9\xa2\x2d\xb6\x54\xc3\x80\x27\x62\xa9\x8a\x95\x47\x4a\x4f\xb8\xe2\x6d\x19\xa1\xca\x37\x68\xe1\x77\x53\xb7\xba\x50\xfe\x8f\x52\x89\xe2\x20\x1a\x61\x2d\xd2\x9a\x39\x33\x29\x31\x14\x24\xcb\x5d\x7d\x31\x00\x23\xe7\x03\x6f\x8e\x74\xbe\xc9\x40\x8f\x7b\xd8\xaa\xc2\x7c\x5f\x5b\x8d\xdf\x57\x3c\x88\xc2\x1c\x1a\x9a\x55\x9b\xe5\x9b\xb5\x52\x18\x32\x2f\xc7\x86\xf6\xe2\x5b\x81\x86\xc5\x5c\x29\xbd\x21\x14\x36\x30\x6c\xc2\x53\x63\x2f\xe7\x70\xb5\xa9\x91\x48\x96\x61\x2e\xf5\xe1\xb5\x59\x49\x90\x69\x4e\x5b\x98\xc6\x29\x7c\xdf\xb1\x08\xad\x69\xb9\xab\xb5\x7a\x40\x31\xd7\x2e\xfa\xa6\x98\xf6\xf6\xe9\xad\xb1\xb2\x93\x7b\x44\xb1\x04\x4e\xfa\x0a\xf8\xdf\xfe\xb8\x96\x3a\xcd\xed\x6b\x77\xa3\x82\x14\x30\x30\xbc\xb6\x76\x7c\xed\xe7\xba\xe2\x6b\xac\x95\xbe\x85\xfe\x57\xb5\xce\xd1\xfe\xd9\x2f\xb4\x13\x8b\x54\x9e\x99\x36\x81\x57\xbe\xb9\xde\x08\x7d\x4f\x17\x80\x1f\xd1\x5b\x1d\x26\xf6\x35\x04\x92\xc8\xd9\xde\x6a\x90\xa9\x69\xe7\x55\x44\x09\x48\x10\xe2\x84\x53\x81\x07\xa8\x9d\x6a\xb2\x05\x59\x8c\xd3\x3c\x47\x8f\x95\x85\x9f\x02\x8f\x4d\x3a\xee\x40\xc6\x66\x54\xa4\x61\xc6\x52\xce\xb8\x73\x20\x7d\xf9\x58\x81\xef\x43\x33\x68\xe9\x86\x81\x12\x69\xaf\x07\x2a\x73\xfb\xda\x3d\x6b\x9d\xff\x95\x33\x02\xf7\x70\x91\x73\x2a\xcb\x2a\xb2\x51\x5e\x6c\xf1\x09\xd2\xa9\x40\x21\x4e\x39\x21\x45\x7c\x7a\x0a\xab\xab\x58\x5d\xf8\x49\x76\x57\x41\x1b\xce\x6a\x80\xd0\xdd\xd2\xa7\xef\xa7\xdc\x7d\x17\xfd\x28\x59\x72\xe0\x6a\xac\x53\x40\x2c\xa3\x00\xb1\x46\x5f\x2d\xe9\xbb\x1f\xb7\xa6\x37\x88\x50\x3f\x66\x4d\xef\xc0\x03\xc6\x3f\xac\xbd\xf6\x83\x07\xdb\xf1\xe8\x50\xab\x5a\x93\x65\xdf\xd4\x9b\xa8\x2a\x1f\x0f\x33\x13\x81\xae\xb1\x6b\x97\x53\xe7\xa2\x87\xc0\x27\x4a\x1d\xb1\x1b\xf5\xd0\x41\x72\x49\xf7\xd7\x74\xce\xce\xd5\x3e\xa7\x3d\x92\xb5\xbc\x77\x38\x26\x07\x1f\xab\xfd\xc1\x14\xf9\xbf\xfc\xa7\xff\xac\xa5\xca\xef\xec\x77\x22\xfc\x01\xff\x04\xf2\x81\xc9\x0a\x25\xab\xf0\x30\xf0\x25\xa7\x87\x0d\x9e\x1b\xcf\xb7\xf3\x51\xb7\xb0\xd9\xc2\x68\x91\xc5\x88\x04\xfd\xd1\x72\x3a\x5b\xde\x4b\xbc\x6b\xe2\x38\x2d\xa4\x3f\x26\xd5\x7f\xd5\x09\x50\x98\xee\x2a\x23\x23\x3a\x88\xb4\xcd\x7d\x07\x6f\x66\xec\x91\x3a\x27\x75\xb0\x73\x5a\xc5\xf3\xff\xae\x54\xf1\x3c\xfa\x34\xa2\x0f\x49\xd7\x09\x36\x1e\xcb\x72\x03\x87\xf8\x4a\xe0\x91\x6e\x94\x63\x3f\x3f\x69\xa5\x85\x09\xf9\xd7\xc1\x53\x7c\x3b\xcb\x76\xd1\x16\x26\x8b\x8c\x83\x0d\x0b\x30\x52\xa3\x24\x9b\x5a\xaa\x66\xd9\x86\x34\x70\xd8\x2e\x39\x50\x65\xcd\x33\x6a\x30\x2c\xa4\x59\x18\x25\x8b\x9b\x54\xa0\x0a\xe5\x6c\x69\x3f\xa9\x44\xef\x92\xce\x28\x51\x3b\xd0\x0a\x02\xe2\xf2\xec\x71\x53\x55\x08\x98\x8e\x16\xfb\xdb\xbc\xf2\xd9\x37\xe8\x29\x63\x0a\x6f\x85\xff\xb1\x74\x2e\x15\x50\x12\x8d\x6e\x84\x5d\x4f\xe1\x39\x61\x9f\x6f\x75\xbc\xf8\xd1\x77\x3d\xcf\xeb\xbf\x04\xf3\x8e\xc3\xdb\xd2\x0b\x12\x30\xcd\x0b\x97\xf9\xbf\xd7\x84\x66\x76\xbf\xb0\xb7\xda\x4a\x46\x83\xee\x28\x07\xd9\x96\x8b\x21\x13\x2e\x65\x0d\x75\xbd\x85\xc8\x14\x13\x0e\x30\xa5\xe2\x8f\x9c\x0d\xb6\xb9\x47\xb0\x38\xd8\xa4\x7d\x1a\x26\xf8\x43\xa5\x6f\x76\x1c\xa1\x7b\xc1\xa6\xf9\x9e\x2a\x3e\xb2\xc9\x38\xa6\xc7\x2d\xd5\x1f\xb5\xc9\x62\x3c\x4a\x34\x22\xed\x82\x8a\xe4\x2f\x04\xcf\xba\x3e\x41\x96\xad\x0e\x4c\xd2\x53\x55\x45\x24\x5e\x00\x9b\xf2\xb1\x02\x83\x77\xb3\x2a\x0e\x5f\x9d\xf2\xb4\xb0\x7b\x13\x4f\x63\xa2\x8b\xbc\x3e\x0c\x3f\x78\xb0\x9d\xf7\x0d\x97\xd3\x30\x1b\x6e\x2a\x19\xb0\x9b\x4d\x5b\x8d\x49\x56\x57\xd0\x01\x9d\xf7\x91\xdd\xe4\xf4\x13\xec\xc9\x1f\x97\x3e\x7a\xbc\x37\xb1\x4e\xf5\xa2\xe2\x71\x55\x50\xff\x2e\x66\x1d\x42\xe2\x87\x6a\x9d\x7f\x97\x43\x72\x2c\xd3\x67\x4b\x4f\x07\x83\x00\xbe\x8b\x6e\x0e\x48\x7a\xf7\x3e\x2e\x40\xf0\xfa\xd5\x05\xa0\xae\xf6\x80\x1e\xb8\x18\x47\x52\x60\x2a\x92\x60\xf4\x96\x51\x0d\x44\xbc\x87\x87\xf7\x7d\xed\x51\x74\xd8\x2d\x5a\x36\xce\xed\x4a\xdf\x66\x76\x8b\x8f\xe0\x7e\x52\x55\x17\x99\x17\xe4\x18\x64\x8e\x02\x71\x98\x46\x0d\x02\x82\x6b\x78\x31\x8e\x7e\xe7\xcb\x15\xf7\x4a\x0d\x91\xf6\x43\xa8\xc8\xd2\xa2\xb0\x19\xe5\x5b\xb8\xa4\xb7\x11\x1f\x3b\x2f\x62\xc7\xf9\x3f\xe2\x1a\x32\x89\x1d\x15\x19\x57\x00\xa5\x97\x52\x2d\x33\xd2\x63\x51\xce\xbe\x26\x5c\xa2\x8c\xc1\xc1\x3b\xab\x87\x82\x2a\xc7\x06\xc0\x69\x45\x80\xce\xf7\x47\x6c\x9e\x43\x3f\x38\x5e\x45\xd5\x54\x2a\x86\x3e\x3a\xfa\xf5\x40\xa5\x3e\xc7\x6b\x89\xe0\xae\x5d\xa4\x4a\xc8\xc5\x23\xbc\x10\xb1\x7b\x17\x8d\x18\x7a\x52\xd2\xb4\xf5\x11\x8a\x1d\x0d\x67\x7c\x61\x61\x53\x47\x6f\x1b\xca\x08\xe3\x6b\xe5\x84\x36\x8b\x02\x81\x9f\xd1\xac\xc8\x51\xd1\x4f\xb3\xe8\x25\x00\xba\x1c\xbe\x58\x6d\x60\x8a\x35\xff\x37\xcd\xd8\xa2\x1e\xe3\x08\xd0\x94\x00\x5f\x8d\x8f\x9d\x81\x47\x2f\x1d\x75\x8b\x7c\xb3\x1f\x8a\x17\xf5\x78\xbd\x8c\x25\x9b\xae\xfb\xdf\x3c\xd9\x69\x7d\x6e\xce\xb9\x14\xb6\x9c\x1c\x2b\xc3\x70\x45\x35\xa6\x1a\x84\xd8\xbb\xce\x2b\x0d\x85\xbe\xcd\xf2\x98\x15\x8c\x84\x0e\x5e\xfd\x25\x1f\xd7\xf6\xa0\x83\x07\xdb\xa1\x11\x35\x6c\x5c\xcc\xcd\x40\x01\x36\x6f\xd6\xa2\x9d\x03\xbb\xdb\x5d\x5b\x4c\xfd\x7d\xd6\x68\xde\x40\x4d\xb9\x61\x66\x64\xa9\xe0\x48\x32\x78\x7b\x6b\xaa\x88\xbf\xa6\xfd\xa1\x46\xc3\x61\x9a\x15\xb6\xb7\x09\x43\x42\xcc\x85\xbc\x3e\x07\xe7\x85\x8e\x5b\xee\xb5\x5c\xf1\x2c\x27\xbc\x89\xa4\x50\x54\x13\x48\x9b\x6b\xef\xd8\xf1\x71\xaa\x17\x20\x08\x3c\xae\x2d\xd5\x59\x49\x05\xeb\xcb\x75\xe5\x39\x7b\x98\x5b\x73\x52\x59\x51\x56\xd0\x07\x95\xd9\x21\xaa\x4f\xd2\xa3\xd1\x7c\xa2\xbb\x18\x9b\x78\x7d\x47\x30\x53\x14\xe2\x6d\xb7\x33\xa3\xa7\xab\xc7\x62\xf1\x2d\x0a\x7d\x91\x09\x5d\x0c\xb4\x2b\x62\xe0\xab\x79\xa5\xd2\x19\x7e\xad\x54\x4a\x83\xef\x41\x3b\x06\xf3\x94\xfd\x8a\x01\x9b\xbd\x1b\xf8\x22\xc3\xb8\xf4\x4e\x23\x0c\x9d\x46\xe8\xff\xa3\x89\x55\x3c\x67\x0a\x20\xea\x2a\x60\xf4\xf0\x71\x13\x8d\x3a\xcd\x86\x7d\x93\x4c\xaa\x1e\x61\xb1\xe7\x63\x15\x77\xae\xa4\xb2\x5d\x8a\x4a\x68\x75\xd7\x22\x12\xda\x4c\xbc\x1a\xc6\xf6\x90\x02\x7b\xdc\x52\x60\x8f\x5b\x13\xc1\x37\x81\xa6\x7b\x24\x91\x2e\x90\xc2\xea\xdb\x45\xb6\x67\xfd\xa6\x47\xe8\x93\xa5\xa8\x07\xc6\x34\x5b\xab\x68\x05\xac\x73\x81\x9a\x78\x69\x6f\x51\x04\xa5\x84\x7a\xaf\x57\x8e\x6a\xf5\x75\x4d\x53\x27\xc2\xff\xd6\x1b\x0d\x95\xf8\xf6\x20\x5d\x46\x59\x7d\xce\x49\xfb\x29\xe8\xc8\x9b\xc1\x04\x40\xa1\xde\xf6\xd8\xdd\x36\x2b\x66\x95\x6e\x13\x4b\xe9\x55\x5a\x02\xf8\x38\x98\xf0\x78\x8e\x0a\x48\x95\xce\x4d\x20\xec\x04\x54\xf7\x8c\x9a\x90\xdd\x3c\xa4\x90\x23\x9f\xf2\xfb\xd4\x19\xfa\x62\xbc\xfa\xfb\x81\x2f\x5c\x69\x2b\x95\xee\x28\x8e\x2d\xb7\xd1\x05\x2c\xe1\x0b\x7e\xaf\x6b\xc1\xf2\xd4\x3a\x05\x19\xe4\x5a\xf7\x54\xd6\xf1\x03\x5f\x81\xfe\xe0\x41\xe9\xbb\xeb\x6f\x07\x4f\x3a\x78\x5e\xb6\x64\x86\x69\x1c\xe1\x85\x21\xfe\xe0\x39\xc4\x27\x8e\xd7\x45\xe0\x28\x17\x6a\xc9\x88\xf7\x24\xc1\x33\xea\x0e\xe2\x28\x2f\x6c\x6f\x73\xf5\x3c\x9d\xdc\xcc\xff\xc3\xd8\x9b\xc7\x48\x92\x9d\x77\x62\xd3\x59\x55\x7d\x4d\x0f\xe7\x26\x29\xed\x81\x94\xc0\xd5\x48\xc6\x80\xa0\xbd\x58\xac\x96\xff\x44\x6e\x75\x69\x86\x5d\x26\x6b\x0a\xd5\xcd\x9e\x55\x1b\x06\xe6\x55\xe4\xab\xcc\x98\x8a\x8c\x48\x46\x44\x56\x4d\x0d\x64\x60\xb1\x10\x0c\xc3\x30\x0c\x63\x2d\xc3\xb0\x57\x36\xd6\x5c\x79\xad\x95\xb4\xbb\xd6\xbd\x2b\xc9\xcc\x22\x39\xbc\x39\xe2\x90\x3d\x9c\x93\x73\xf4\x7d\x77\xf5\x7d\x4e\x57\x1b\xf1\xfd\xbe\xef\xbd\x2f\x2a\x62\x64\xff\xc5\x4c\x4e\x57\x66\x46\xc4\x7b\xdf\xfb\x8e\xdf\xe1\xa1\x19\xdb\xd1\x93\xc2\x5e\xde\x04\xb8\x52\xcc\xb8\x7d\xc7\xfe\x7f\x54\x6d\xbd\x1f\xe0\x27\x49\x7a\xe9\x90\x28\xa3\xcc\xc6\x6b\xad\x6a\xf2\xee\xe6\xd0\x55\xde\x8e\xe9\xa5\x7b\xb4\xfe\xca\x65\xa5\x7b\x7f\x2d\x50\xbd\x6d\xa8\x90\x6f\x5e\xa2\x76\xa7\xab\x4a\xbc\xae\xeb\x0f\x02\xdf\xc7\xc5\x98\x1f\x39\xe3\x07\x63\xa5\xbe\x79\x66\xac\xc0\xb6\x80\x2a\xf3\xbf\x42\x1c\x02\xb7\xe9\xdd\x86\xac\x71\xbe\x6d\x57\xe8\x94\xf7\xca\xc6\x53\x0c\x5e\xc3\x62\x9e\x5c\x57\x7e\x30\xdf\x1b\x7f\x9a\xff\x72\x39\x2a\x53\xe1\x22\x2d\x6c\x12\x47\xb6\x6b\x33\x2a\x92\xf0\x33\xd9\xad\x81\xdf\xac\x7b\x73\x02\x52\x97\x25\x30\x8f\x63\x8e\x82\xa0\x20\x36\x59\x7e\xb7\x0e\xd3\xc2\x14\x69\x4b\xb9\x1f\xc0\x92\x97\x5f\x2b\x35\xbb\x30\x8d\xd3\xc1\x62\x64\xc0\x2f\x17\x93\x34\xba\xc3\xfc\x26\x50\x21\x26\x5d\x2d\x4b\xe0\x78\x4a\x11\xa2\x36\x94\x68\xf1\x8e\x75\xdf\x6f\x78\x80\x9a\xb8\xc0\xc7\x71\x3c\x17\x17\x6b\x6f\xe9\x3c\x34\x65\xa6\xd5\x23\xf6\x5d\xb9\xb0\xb8\xee\xa2\xad\x26\x35\x58\x1d\xa6\x3e\x43\x76\x41\xe9\x8a\x20\x72\xb0\x36\xb5\x66\x05\x8f\x4e\xa5\xcf\x2e\x29\xee\x57\x46\x51\xb8\xbc\x12\xd9\x55\x2a\x2b\xa4\x66\xf2\x90\xc4\xd3\x3a\x61\xbd\xdd\xe4\xc1\x9c\x0f\x4d\xaf\x6f\x8b\x22\xc2\xbd\xc5\x47\xc0\xc9\x81\x5f\xaf\x6f\x0d\xe2\x0b\xd3\xed\x51\x99\xe1\xb2\xd6\xb9\x68\x7d\x28\x7d\xbf\x0b\x9a\x3b\xd4\x4f\x57\x69\xe2\x24\x89\xc0\x65\x25\xb7\x76\x89\xc2\x2c\xd2\x92\x0f\x70\xfc\xe1\xc6\x03\x33\xe5\xd4\x5c\xcb\x9f\xc6\x56\x0a\xb5\xf8\xb9\x77\xa6\xfc\xdf\xa2\x3f\xe5\x7d\x5d\x50\x83\x21\xc7\x7c\xb0\xa3\x84\x17\xdf\x53\x53\x2d\xad\x83\x7b\xb6\x36\xfa\xff\x7c\x7b\x30\x40\x2f\xc7\xa9\x24\x7b\xf8\xda\x39\x65\x48\x5b\x10\x7b\xd0\x29\x45\xdd\x50\xb4\xa0\x1b\x81\x77\x7e\x4f\xd2\x64\x09\x5c\x43\xb8\x59\xb2\xbe\x0a\x4e\x79\x11\x5b\x69\xaa\xa3\x05\x6b\xaf\x69\x7f\x85\x62\xb4\x16\x8e\x30\x94\x17\xa6\xb0\xf9\xaa\xcd\x8b\x29\xfa\x0a\xa1\x7c\x79\x66\xf1\xc9\xb1\x9a\x7b\xe0\x82\xb0\x91\x77\x76\xb4\xb9\xfc\x69\x0d\x08\x8f\x8a\x22\x5f\x1c\x65\x3d\x98\xa1\xb0\x14\xd2\xb8\xa2\x8b\xb4\x15\x7a\x48\x08\xae\xbc\xc8\x46\x94\x3c\x2a\x35\x0f\x80\x12\xc4\xb9\xb7\xd1\xd0\xd5\x24\xcb\x1e\x2a\x8f\x84\xe7\x8a\x26\x0d\x5d\x69\x04\xf8\x85\x7d\xeb\xfc\x92\x65\xbc\x41\xdf\xcb\x6f\xd4\x7a\xcc\x22\x87\xf3\x46\x5f\x03\xf3\x68\x7e\xad\x2d\xc1\xf3\x32\xc0\x77\x75\x01\x7d\x9d\x7e\x3f\x9e\xd6\x64\x47\xf5\x01\x2f\x00\xed\x85\xd4\xb1\x8e\x87\x99\x39\xd0\x0e\xd3\xd4\x37\x36\x1d\xca\xc9\x01\xd1\x31\x2d\xc2\x31\x54\xb7\x95\xa0\x4b\x4c\x57\xbc\x91\xbd\x48\xd6\x2a\x2b\x94\xf3\x0a\xe1\x33\x8c\x4d\x22\x1c\x2a\x1c\x2b\x2c\xb8\xc6\x6f\x34\x20\xdc\xc6\xf1\x68\x00\x3c\xa5\x68\x0b\xb5\x94\xe8\x90\x53\x50\x1d\x15\xb1\x71\xae\xe6\xc8\x26\xc0\x3f\xe1\xd7\xb5\xc3\xe4\xc0\x73\xed\x3c\x5d\x89\x2c\xba\x92\x00\xe3\x70\xa9\xc2\x6f\xc6\xd2\x8f\x8b\xa3\xa2\x9f\xf6\x32\x33\xec\xaf\xb5\xb4\xa7\xfb\xd9\xb1\x67\xfc\x9e\x75\x36\x53\x7d\xb3\x62\x13\x31\xb4\x59\x98\xde\x7c\x6b\x8b\x33\x7c\x66\x62\x0c\xd5\x71\xde\x3f\x8c\x49\x13\x56\xc2\x55\x2e\x59\x11\xea\x1f\x41\x0f\x4c\x68\x1c\x2d\xa7\x9e\x72\x1e\x95\x04\x3e\xe0\x2e\x66\xc4\xfc\x86\x1e\x1a\x83\x6e\x55\x2e\x14\x5b\x43\x02\x5c\x0b\xd2\x6d\xbc\xa7\x46\x01\xf7\x54\x35\x9c\x45\x83\x07\x29\x51\x77\xa0\x8b\xf2\xc3\xd1\xae\x7a\x1d\xe7\x36\x26\x26\x40\x57\x20\x34\x9e\xf2\x32\x1f\xd1\xa3\x4a\x1c\x66\x8a\xb4\x14\x9d\x64\xc2\xde\x99\x8a\xbd\x06\x02\xc4\xeb\x5a\xb4\x96\xd7\x01\xae\xf8\x0f\x55\x1e\x5f\xf4\x6d\x6e\x9f\x6c\x39\x73\xbd\x7f\x31\x56\x77\xe0\x07\x54\x66\x60\x49\x70\xaf\x9c\xe3\x06\xc0\x08\x88\xd3\x3f\x1d\xab\xfb\xf4\x03\x3a\xf2\x1c\xd8\x7e\xef\x8c\xc3\x5e\xd0\x26\xc5\xb6\x39\x81\x4a\x4c\xa4\xe0\xca\x6b\x44\x70\x78\x8d\xb0\x2f\xce\x23\xb8\x5c\x72\xb8\x29\xef\x50\xca\xe3\x26\x10\x65\x98\xe3\x2f\x0f\x14\x78\x87\x55\x34\x9d\x48\xa9\xaf\x17\x31\x53\xc5\x0e\xfe\x21\x71\x4b\x90\x8f\xbd\x19\xa8\x82\xfa\xfb\xc1\xa3\xaa\x05\x5f\xa4\x59\x62\x59\x81\x1f\x4b\xf1\xe8\xb8\x22\x43\x30\xff\x9c\xac\xd7\xa3\x81\xa7\x1e\xb1\x15\x2d\xe2\xca\xff\x39\x7e\xd0\x2d\x80\x7f\xfc\x19\x22\x45\x48\xa6\xb6\xed\x33\x9c\xc1\x7e\x82\x86\xd2\xb8\xc9\x67\xf0\x98\x50\x13\x6d\x6b\x32\xb8\xea\x65\xd1\x80\x3d\xf1\xb4\x8a\x29\x82\xe4\x71\xa5\xbb\xfa\x35\xd5\x9a\x5a\xed\x47\x45\x11\x5b\xa4\x26\x02\xcb\x2e\x9f\x93\x00\x95\x9f\xac\x0b\x92\x1f\x9c\x9e\x79\x44\xb5\x90\x3f\xc0\xad\xc5\xdd\xbc\x12\xf8\xef\xa7\xb4\xfa\xd9\x4d\x74\x46\x36\xd7\x95\xfc\xd5\x19\x6d\x30\x70\x9f\x16\xc9\x66\x6b\xdd\x37\x99\x8f\xd2\xf2\x70\x2a\x98\xfb\xe4\x2a\x5e\xd7\x4b\xf0\xf7\xe9\xc1\x0b\xff\x41\x1d\x3f\x3f\xa4\xce\x37\xee\xff\x03\x10\xef\x13\x1e\xd8\xc3\x2e\x60\x24\xdd\xd8\x05\x5f\x27\x2e\xee\xb2\x90\x57\xc6\x3e\xd9\x38\x33\xf6\x67\xb6\xc9\x16\xa3\x22\x33\x45\x9a\x01\x66\x87\xbb\x74\x1c\x4f\x9c\xdf\xa8\xb2\xf8\xeb\x5a\x18\xf8\xeb\xae\x93\x14\xe5\xf9\xc8\x76\x77\xd0\xf2\xc4\x5a\xbb\xa7\xaa\xb0\xf3\x63\x25\x42\x05\x72\x05\x56\xc6\xff\x42\x3f\x50\x4e\x0a\x25\xa7\x31\x85\xfa\x05\x81\x61\xbb\xb2\x76\xe8\x5a\xd3\x65\x69\x6d\x27\x71\xbd\x30\xed\x24\xae\x1b\x7a\x29\xb3\xb3\x0f\x96\x37\x8f\xbf\x90\x1e\x99\xa8\x18\x56\x71\x45\xe5\xbe\x16\x8f\x07\xb4\x52\x30\x76\xf8\x19\x16\x39\xbf\x19\x7b\x7e\xdd\x7f\xad\xee\xcb\xd5\xc0\x0f\x77\x18\xfb\xc3\x9f\xa5\x78\x77\xb7\x14\x18\xbe\x3f\x1a\x98\x64\xa2\x22\x8a\xd8\x72\xfe\x78\x5f\xd7\x5c\xeb\x26\x02\x4a\x3b\x49\x8b\x28\x64\x23\x10\x0e\x87\xc8\x9e\x25\x36\x2a\xe9\xc4\xc2\x9a\x6e\x94\xd8\x9c\xfb\x9a\x02\xb6\xa0\xab\x47\x90\x3c\x31\x56\xd2\xcd\xb7\x5c\xc3\x96\x1a\xcb\x26\xdf\xae\x2c\x2b\x10\x74\x2b\x5e\x96\x48\x41\x4f\xd0\xcf\x17\x03\x51\x2f\x67\xba\xbb\xa3\xc4\x82\x5f\x6d\x20\x51\xed\x27\x75\x8c\x04\x67\x2e\x96\xc2\x65\xfa\x2c\x7e\x5d\x29\x31\xd3\xa4\xf7\x64\x19\x35\x81\xd6\x7c\x5b\x3b\xfd\x9f\x57\x6e\x4b\x7b\x80\x97\x72\x20\xb3\x7d\x32\xed\x63\xac\x07\x12\xa6\x6b\x63\xcf\xa7\xfb\x19\x9f\x99\xb8\x1f\xf7\x02\xbf\x11\x59\xd4\x03\xc1\x7c\xdb\x3a\xdd\x0b\xec\xdd\x0f\xd5\x14\xe4\xc3\x40\x71\x9a\x5e\xc3\xc9\xea\xfc\xb1\x9f\x79\x9e\x9b\xbc\x17\xb0\xad\xd0\xf0\xfe\xa9\xd6\xda\x7c\x05\xeb\x4f\x3c\x7a\xca\x60\xe1\x1a\x36\x6e\x91\xb1\xfc\x97\x8c\x70\xb7\x82\x5c\xcb\x0c\xaa\x6f\x4d\xf7\x2b\x23\x93\x79\x0f\x3b\x27\xff\xe9\x78\x91\x77\xb4\xb1\xf7\x61\xee\x01\x62\xab\x7f\x54\xd6\x08\x8a\xb3\xd2\x4b\xa2\x97\x65\x34\xdc\x24\x08\xf2\x84\xa4\xe5\xe9\xc0\x66\xb9\x19\xc5\x85\x0b\x41\x9a\x6d\x2e\x02\x57\x2d\x67\x9b\x79\xb4\xa6\x1e\x43\x4a\xdd\x51\x2f\x21\xb2\x20\xb5\x73\x70\xc6\x40\xaf\x43\xba\xc0\xbe\xa3\xd6\xa4\x7a\xb7\xbf\xcc\xad\x4d\x62\x98\x6b\x28\xe6\x3b\x8a\xdf\xc2\x62\x22\xe2\xc1\xeb\x53\x96\xff\xec\xb3\xff\x80\xae\x12\x77\xfd\x92\x7a\x02\x97\x14\x7d\xcd\x9a\xc2\xb2\xb4\x2e\x42\xfd\x75\xbe\x7d\xfc\xae\xb6\x57\x5f\x78\x41\x68\xe0\xc4\xb8\x11\x46\xb7\x02\xa1\xde\xa9\x5c\x93\x57\x62\x59\xb5\x26\x43\xca\x2a\xe8\xf6\x96\xd3\x48\xbe\x58\x6b\xd0\x3d\xdd\x5e\xb4\x34\x91\xa1\x65\xe4\x7c\x54\xdd\xbd\xff\x21\x62\x12\xfa\xc1\x37\x94\xde\x52\x18\x93\x96\x62\x8c\xfd\xc7\xa6\xcf\xb8\x49\xe2\x00\xed\x1d\x0b\xe3\xd8\x0c\x73\x01\xd7\x62\x47\xdd\x0b\x94\x20\xe4\x6d\x7a\x56\xb2\xd7\x7d\x82\x61\x07\xc3\x38\x5d\xb3\x59\x8b\xb2\x14\x1c\x10\xc7\xb8\x5f\xcd\xef\x82\x3d\x6a\x9b\x3f\xf5\xb0\xe2\x8a\x1e\x56\xa8\x1a\x6e\x9c\xb1\x1f\x24\xb6\x3f\xba\x3e\x57\x15\x3d\xe2\x5d\xcd\x4b\x79\x6b\xac\x14\x1d\xb9\xfe\xc6\xf2\x3d\x3a\x56\x10\x28\x6c\x66\x66\x89\xa1\x62\xe5\x7f\xa5\x61\x95\x20\xa0\xe0\x1b\xe5\xd1\x03\xbb\x77\x4e\x19\x28\xd7\x21\x4a\x73\x73\xed\xcc\x96\xab\x1b\xdd\x0f\x59\x80\xd7\xd1\xf3\x76\x36\xbb\x8a\x7f\xb9\x95\x31\x54\xa6\x29\xca\xac\x08\x75\x8f\xd3\x57\x9a\x73\x96\x48\xb5\x69\x10\xb4\x20\x97\x27\x3c\x1c\xf2\x9e\xca\xe0\xae\x69\xf2\xf8\x51\x45\x3b\x1f\xc6\xa6\x58\x4a\xb3\x01\x3a\xab\x08\x22\x2c\x3c\xe3\xf0\x1c\xaa\x1d\xa3\x3c\x2d\x4c\xfe\x90\x6f\x28\xdd\xc2\x15\xea\x51\x89\x20\x87\x94\x3b\xd4\xe1\xb1\xda\xaf\xdf\xa0\xe7\x2d\x28\xb7\xf2\xec\xc6\x01\xf9\x83\xb1\xc2\x74\x1f\x0e\x3c\x46\xea\x0a\x1e\xb7\xeb\x6f\x3a\x86\xe7\xfb\x58\xc7\x58\x14\xd7\xf5\xd4\xe5\x8d\x26\xc9\x4c\xe2\xc2\x66\x55\xcf\xf6\xbb\xda\xb3\xfd\x6e\xf0\xb8\xce\x99\xed\x60\x58\x38\x26\x1a\xce\xdd\x77\xc6\x1e\x0a\xf4\x8e\x2b\xe6\x86\x64\xe0\xe1\x67\xa5\x27\xf5\x2c\xf7\xe4\x78\x8f\x6f\x44\xfc\x52\x6f\x92\x96\x1e\xb2\x95\x13\xf4\x69\x08\x5c\x27\xb1\x72\xf9\x3f\xd0\x6d\xe1\xff\x50\x6b\x16\x2d\x4c\xb7\x17\xb3\xc8\x2e\x4d\x78\xd9\x07\x36\xd2\x70\xce\xe5\x73\x72\x83\x7f\x47\x4d\x5d\x97\xa2\x04\xc6\x07\x4e\x61\x5d\xe1\xe2\xe8\x6f\x04\x23\xe7\x27\xaa\x57\x2a\x4e\xc3\x3e\x9c\x2e\x98\xb5\x09\x45\x19\x95\x92\x14\x8b\xee\x35\xba\x2e\x91\x2a\xdc\x3a\xcb\xdb\x37\xd7\x5e\xfb\xa5\xac\xd5\xfa\xf2\x17\x18\xc5\xf1\x26\x7e\x08\xbf\x09\x3e\xe9\xfd\xc7\x93\xc2\x66\x09\xc1\xf6\x4d\xcc\x43\x39\x24\x50\xec\xdf\x85\x73\x9a\xc1\xb3\xc2\x9b\xd1\x61\x94\xd6\x20\x42\x03\x9b\x30\x88\xcd\xd6\x6e\x47\x26\xce\xa6\x3c\x71\xe8\xc7\x81\x72\xe8\xe5\x14\xca\x41\x28\x5c\x9e\x37\x81\x66\x30\xc4\x6c\x2e\x39\x28\xfc\x92\x09\x8b\x94\x1e\x0a\x32\x0b\xa8\xe1\xa3\x26\x00\x8d\x0a\x4f\xf7\x42\x6d\x0f\x93\xbc\x42\x98\x4f\x28\x2d\xc6\x3f\xf9\x48\x39\x9d\xf0\xcc\x5e\x26\x24\x0f\x29\x32\x50\x52\xec\x54\xc5\xcc\x6b\x6a\x12\x78\x65\xec\x67\x6c\xaf\x51\x2a\x84\x3b\x24\x7d\x32\xdc\x49\xee\xfa\x38\x19\x5f\x77\x1e\x55\xae\xfe\x84\x82\x05\xad\xd8\x7e\x14\xc6\x76\x57\x79\x82\x22\xd3\x7e\x57\xb3\x21\x50\x0e\x33\x3a\x01\x4f\x06\x19\xe4\x99\x8a\xc4\x44\x05\x20\x85\xfd\x82\xbb\xb6\xae\x46\xd9\x6c\x3a\x2e\x30\xaa\x87\x55\x83\xdc\x14\x36\x9f\xf4\xca\xf0\xac\x37\xc8\x6f\x14\xa1\x1d\x9a\x7c\xfc\xda\x55\x53\xa4\x48\x67\x33\x4b\x8f\x1e\x75\xd7\x57\x91\x35\x39\x9f\x7b\xa7\x30\xba\xa3\x53\x91\x83\xf6\x21\xee\x72\x23\xfb\x27\x4f\x63\x36\xb7\x54\xd6\x32\xc2\xf3\x85\x88\x21\x7e\x65\x5d\x64\xe9\x69\x92\x03\x4b\x57\xca\x63\xfe\x79\x37\x8d\x3c\x42\xfe\x12\x8e\x95\xe5\x7c\x1c\x6e\xd5\x66\x87\xfb\xe6\xda\x31\x15\xc7\x53\xde\xa6\x70\x67\x47\x71\xf8\xcf\x2b\x6d\xa0\xed\xeb\xbe\x8f\xc9\x1c\x6a\xb4\x11\xce\x35\x11\x60\xf3\x28\x5e\xb1\xb0\x26\x06\x94\xe0\xa4\x92\x88\x3d\xe9\x52\x88\x41\xda\xb5\x59\x12\xe5\xe8\x97\x71\xe1\x43\x4f\x40\x8a\x20\x1f\x42\xfe\xfe\xe7\x3e\x87\x46\xd9\x26\x65\x63\x9b\x97\x5c\x5d\xd2\xb5\xbd\xcc\x4a\x1a\xc2\xbd\x74\xbd\x95\x71\x20\x22\x3c\xfe\x51\x3d\xd1\x5c\x98\x77\xb9\x2d\x57\x50\xac\x94\x1b\x28\xa9\xf5\xb3\x0a\x23\x3a\x30\x59\x04\xb1\x45\x44\xf6\xa3\xda\xcc\xf5\x68\x45\x50\xbd\xb0\x71\x1c\xf5\x48\x44\x8f\x7e\x9d\x38\xef\xd0\xaf\x13\xd8\x87\xea\xa8\x45\x76\x91\x6f\x9b\x4c\x15\xf4\xb8\xe1\x93\xd5\x72\xb6\xfc\xe5\xe5\x0d\x69\x29\xa2\x0e\xee\x9e\xd8\xe6\x34\xaa\x25\x75\x6d\x9a\x70\xcb\x51\xc4\x03\x54\x40\x3d\x57\x99\xa2\xdb\x6c\xb0\xd3\xcf\x65\x3f\xaa\xcc\x29\x11\x09\x10\x71\xfe\x4c\x65\xad\x7b\x54\x5f\x77\x6a\xbd\x3a\x21\x2e\xa3\x30\xce\xb9\x3d\xe4\xba\xce\x89\xe2\x65\x17\x14\x57\xfb\x29\xaf\x47\x27\xe2\x57\xde\x2a\xc4\x1b\x4c\x10\xb1\xec\x76\x02\xf1\xe7\x3c\xc0\x64\xfd\x7c\xf3\xc9\x4e\x83\x1c\x95\x7d\xa9\xb0\x49\x97\xa7\x37\xf8\xce\xef\x69\x1f\xdf\xef\xa9\x51\x6a\x6e\xcb\x3d\xb1\xa3\x2a\x97\xe6\x93\x9b\xf7\xa9\x4f\x87\xfd\x09\xc6\x10\xc2\x3f\x26\x93\x38\x46\xaf\x69\xf3\xc1\x7b\x55\xac\x8a\x1f\x9c\x91\x94\xeb\x30\x36\x2c\x03\xa1\xe4\xce\x9f\x75\x72\xe7\xca\x79\x24\x4a\x12\x9b\x4d\x7a\x5b\xfd\xb3\xe3\xaa\xb0\xaa\xa3\x58\x9f\x0d\xb4\xfa\xaa\x2f\x21\x16\x4d\x97\xd5\x49\x04\xf7\xec\x11\x3d\x8f\x9d\x1b\x57\xe0\xd1\x9e\x9f\x7b\xae\xa6\x25\x56\xae\xa2\x28\xe9\x8e\xf2\x22\x8b\x6c\x8e\x2e\xa1\xb8\xa9\xe0\xae\x61\x2b\xb0\xc9\x2a\x4a\xe5\x1f\x97\x8f\x68\xf3\x92\x1e\x29\x9d\x6a\x6c\xfa\x2f\x66\x76\xd5\x55\x8d\xd8\xc0\x77\x95\x7a\xd5\x19\xdc\x4d\xf1\x7b\xdb\xfa\x09\x4f\xb7\x97\xed\x5a\x62\xf3\x88\xe5\xe0\xd1\xb3\xbd\xa0\x1b\xb8\x17\xc6\x8f\x55\xf7\xd1\xaf\xb4\xbf\xb8\xbf\xe5\x59\x68\xef\x69\xd3\xe8\xf7\xd4\xe9\x19\x65\xfc\xa1\x68\x45\x9c\x52\xdd\xaa\x53\x0d\x38\xfb\x76\x1a\x6a\x58\xfe\xbc\xd6\xfa\x9a\xaf\x55\x86\x7b\xf7\xb6\x97\xa3\xd8\xcb\x78\x36\x89\x82\x6c\x0d\x5d\x07\xa7\x0f\xb5\xf3\xa1\x0d\xa3\xa5\x48\xd2\x54\xd1\xbc\x53\xf6\x3b\x17\x14\xf1\xd8\xc4\x79\xfa\x08\x35\x1d\x70\x58\xec\x22\x99\xc6\x8a\xa6\x2f\x6e\xf3\x76\xb4\x15\x55\x73\x68\x1e\x36\xf4\x87\xb8\x8f\x71\x55\x61\x31\x1f\x5e\xf7\x19\xe4\x1e\xcc\x88\xb0\x12\xbf\x4d\x67\x91\xe3\x76\x2e\x4c\xf3\x79\x79\x93\xf3\x3f\x94\x64\x37\xb0\x90\x81\xe2\x81\x51\x33\x16\xef\xc4\xba\x12\x8b\xdf\x4d\xd2\x8f\x42\xaa\x97\x4e\xe3\x30\x5a\x36\x91\x99\x50\xdc\x92\x93\x5a\x9c\x01\x97\x84\xca\xfa\x96\x1a\x4d\x52\xb2\x4e\x99\xe2\x44\x05\xc1\x57\xfe\x44\xe9\x9a\xd3\xc5\x4a\x51\x2e\xbc\xe7\x38\x1d\x75\x27\x94\x97\xce\x35\x6c\x1b\x6d\xa1\x89\x14\x7b\x9b\x92\x3c\x0a\x63\x6b\x12\xea\x9b\x2c\xcc\x73\xed\x83\x3d\xca\xaf\x55\xb9\x14\x76\x73\x4a\x32\x50\x03\x7e\x97\xda\xf5\xc8\xa9\x60\x6a\x84\x89\xc2\x19\xa5\xfd\x7f\x99\x3e\x89\x45\x0c\x6a\x73\xc9\x99\x03\x6d\x53\x6e\x54\x13\xcb\x8e\xc0\x79\xf6\xfe\x58\xe5\xa4\xef\x37\x00\x74\xe8\x47\xb3\xf1\xb9\x76\x36\xe3\xd7\x6a\x1a\xbc\x5a\xfe\x3b\x1f\x2f\xd8\x33\x99\xdf\x6c\x6d\xc1\x2e\x4c\xef\x6f\xcf\xce\x4e\xea\xfd\x5c\x5e\x8a\x34\x60\x94\x5c\xd2\x39\x45\xf8\x3f\x17\x3c\xe8\x6e\xe6\x28\xdf\xed\x91\x33\x97\xa9\xf2\x41\xb3\xea\xc3\xaa\x41\xa4\xeb\xfe\xc1\xe2\x09\x7b\xff\xaa\xe6\x54\x02\x25\x82\xf0\x74\x55\x3b\xa6\x9e\x47\xc3\x9f\xff\x04\xd7\x23\x1d\x3b\x9f\x90\x0c\xec\x4b\x2d\x8f\xc7\x38\xaa\x71\x9d\x47\x15\x05\x2d\x0a\x8b\x07\xab\x72\x59\x0e\xec\xfe\xb5\xb1\x1f\x41\x72\x33\x0f\xdf\x79\x0f\x37\x42\x56\xa5\x6a\xeb\x02\x4a\x8a\x6f\x61\xe8\xab\xd3\x5f\xf7\x87\xf8\xfd\x40\x9f\xef\xb8\x19\x58\xa2\xf7\x2b\x59\x71\x92\x44\xc0\x57\xbb\xe9\x92\x57\xe1\x3e\xa5\x48\x19\xb9\xed\x9a\x24\xa7\xa7\x86\x5e\xcb\x23\xf4\x33\x90\x6b\x6d\xea\x6c\xf0\x7a\x95\xc9\xd0\x40\x7a\xea\xd9\x01\xba\x15\x32\xd8\xf0\xa9\xf3\x87\x75\x2e\xe6\x73\xfb\xdb\x2b\x04\x21\x77\x61\xf7\x01\x9a\x19\x21\x0e\x5c\x57\x1e\x88\xa7\x1a\x5a\x1d\xf3\xe5\x61\x3e\x55\x01\xca\xab\x0a\xe3\x82\x8a\x14\x1c\x31\xf1\x15\xf7\x74\x41\x7e\xb1\xe2\x03\xf9\xe2\x2f\x2d\xb6\x3c\x5b\x84\x6f\x18\xbf\x51\x8d\xc1\x7c\x68\xe0\xcb\xfd\xac\x23\x8d\x2a\x02\x69\xa0\x47\xa3\x90\xab\x93\x3a\x42\x35\x97\xef\x51\x4f\x43\xf2\xd9\x07\x1d\x81\x7a\x88\x42\x06\xcb\x89\x7f\x81\xe0\x0b\xf0\xd8\x45\xe3\x4b\x41\x84\x3f\x50\xa3\xf2\xd0\x64\x85\x05\xee\x1a\x77\xe5\x0c\x21\xaf\xf8\x75\xed\x94\x21\xc9\x81\x22\x33\x51\x22\x20\x02\x27\x9a\x5a\x5e\x9f\x40\x90\xeb\xc2\xb3\xe4\x20\x9f\x17\x53\x1e\x77\x30\xd1\xf1\x93\x1a\x10\x80\x5c\x99\xe4\xa4\x05\xbf\x3e\x56\x84\xf2\x93\xde\xea\xe0\x2b\x9f\x2c\xf3\x2e\x90\xc3\x7f\x8a\xf6\x25\xf6\xf7\x36\x3a\x18\x50\xec\x6e\xa2\x2d\x82\xfd\x71\x96\xfc\xff\x80\x80\x3a\xab\x27\xaa\x7c\x90\x71\xf7\x01\xb3\x52\x05\x62\x7c\x96\x5b\xea\xb7\x35\xf8\xfe\x37\x29\xd2\xe0\xc3\x7e\xa2\x48\x05\x4c\x0e\x47\x2e\xff\xf7\x88\x21\x2a\xe4\x35\x1a\x79\x63\xa9\xbd\x57\x91\xbb\xa5\xa5\x86\xb2\xfd\x35\x85\x1e\x7c\x18\xf9\x12\x90\x02\xad\x8e\x96\x4e\x64\x23\x2c\xcc\x39\x2e\xd3\xd1\x8b\x88\x7f\xb5\x96\x01\xed\x9b\x6b\x0f\xa3\x38\x1a\x46\x09\x6a\x14\x11\xfd\x54\x87\xfb\x89\x06\xc1\x39\x27\x0f\xcb\xbd\x44\x91\xe1\xd0\x9a\x1c\x0a\x6b\x19\xf6\xb3\x28\x2f\xd2\x61\x5f\xb4\x45\x78\xea\x42\x31\x58\x26\x30\x52\xe6\x75\xa3\x15\x9b\xf5\x44\xee\x0c\x4d\xef\x9f\x05\x1e\x57\xf2\xb3\x46\x3f\xfc\xc4\x0c\x44\x53\x54\x31\x88\x24\xc9\x85\x29\x16\x4f\xdb\x70\x47\xa5\x62\x68\x40\xab\x86\x71\xca\x2e\x9e\x28\x8d\x8e\x51\x48\x64\xbb\xa4\xc0\x87\x81\xfb\x6a\x3e\x31\x81\xa1\xa3\x20\x0a\x1f\x77\x17\x93\x0f\x53\x96\xc8\xe3\x32\x4a\x8a\x01\x85\x79\x3d\xab\x20\xac\x51\x92\x17\x26\xe6\x96\xba\xf8\x8b\xe8\x66\xdc\x27\x54\xcf\xcd\xc6\x5d\xaa\xb8\xb0\x84\xa7\x3a\x8a\x32\x7c\x24\xf0\x1a\x06\x53\xeb\xbe\x0b\x75\x4f\x25\x89\x68\x50\x42\xa5\x5a\x40\x85\x37\xc7\x6a\xb2\x74\x5a\xa9\xfe\xac\x70\x4a\xc0\xed\x5e\xfa\x18\x69\xfd\xfa\x03\xb7\x6b\x77\x29\x2d\x90\x53\x9c\xe2\xcb\x6d\xa1\x3b\x2f\xbc\xab\xd6\x33\xcf\xf3\xd1\xf6\x08\xd6\x32\x16\x2c\xa7\x61\x5a\x53\x85\x71\x71\xb4\x91\x5c\x17\xd0\x4d\x88\x37\xeb\x69\xc3\x42\xfb\x4b\x33\x14\x29\x45\x55\xd9\xcb\x25\x9d\xa2\xe8\x21\xd6\x0d\x0d\x62\x8e\x61\x9a\x84\x16\x32\x38\x65\x74\x70\x9e\xc1\x73\xa2\x4c\x7c\xce\x4d\xae\x17\xb3\xa8\xd7\x67\x59\x33\x87\x31\x71\x77\xfa\x89\x8e\xa7\x3a\xec\x5c\x57\x91\xf7\xca\xd6\x9a\xe2\xf3\xed\xa7\x9e\xda\xe5\x9d\x45\x2f\xeb\xbe\xf7\x51\xc4\x15\xfe\x2f\x63\xc5\x5f\x41\xa7\xa2\x62\xf6\xc0\x7f\x82\x14\xd9\xa5\xa9\xfb\xa4\x43\x74\x8b\xd2\x65\xf1\xdf\x7a\xd0\xad\xd1\x70\x19\xa3\x1f\x00\xdf\x34\x27\x8c\x35\x87\xa5\xd9\xd2\xd0\xf8\x26\x62\x43\x6e\xb9\x2d\x55\xd9\x7b\x52\x2d\xd3\x4f\xe3\xbc\xd4\xf5\x61\xec\xa0\xdc\xe5\x8c\xe7\x14\xe5\xda\x96\x77\x9f\xae\x52\xc4\xfd\x19\xf8\x1c\x93\x7e\x65\x64\xa1\x1a\xaf\x1b\x4d\xea\x0e\xe5\xd5\x59\x76\x9a\x16\x2a\x96\xa2\xd9\xfe\xac\x26\x8c\x39\x3b\xdb\xee\x66\xe8\xb8\x6b\x96\xa1\x20\x4b\x9f\xf4\xa6\x7d\x69\x92\x0e\xd3\x98\x87\x9c\xce\x7b\xfe\xb6\x02\x49\xdf\x76\xad\x0a\x53\xa4\xdc\x20\x47\xaf\x83\x31\xbf\x38\xa1\x4e\xd0\xc4\x50\xf0\xf8\x2d\xa7\x84\x72\x84\x9e\x1d\xda\x29\xdf\xad\x64\x16\x2b\x36\xff\xb9\xb2\x5a\x62\x80\x2d\x1d\x18\x62\x55\x47\xcb\x16\x19\x28\x4f\x20\xd8\x2c\x1f\xcb\x4a\x34\xc9\xe9\xfb\x31\x33\xfe\x6e\xa0\x40\x07\xef\x41\x25\x05\x1d\xbe\x7f\xab\x29\xa5\x3f\x0c\x3c\xca\xe9\xb2\x22\x6b\x7e\x27\x50\x55\x3d\xba\x88\xc8\x1f\xb7\xaf\xd3\xb2\xc2\x51\x7d\x06\xcd\x5b\xe9\xe4\xb6\x9e\x7a\x4a\x8b\x5d\xcc\x73\x15\x77\x1f\x4a\xd6\xe2\xc4\x5e\xee\x5b\x76\xd1\xa3\x13\x72\x73\x13\x8e\x8f\x7c\x79\x94\x8a\xe0\xba\x7f\x8c\x45\x8f\x1f\xf1\x1d\x5a\xe8\x38\x59\xde\x1a\xfb\xac\xff\x5a\xa5\x5f\x35\x0a\x97\x77\x28\xe5\xf4\xeb\x9c\x10\xa1\x93\x8d\x0a\x0a\xbb\xeb\xc1\x75\x5d\x08\xe0\x66\x39\x14\x65\x79\x85\x82\xa2\xf4\x4d\x84\x56\xe7\x71\xdf\x0a\x48\xc2\xcc\x92\xab\x1d\x25\xc5\xf8\x07\xdb\x10\xf3\x18\x4e\x37\xf6\x24\x85\x8f\x94\xae\xcd\x7b\x8d\xf8\x8d\xa5\x34\xeb\xa5\x85\x76\x2f\x61\x04\x91\x14\x49\xf5\x4e\xde\xfe\xf6\x20\x1d\x31\x51\x09\x0b\xf0\x16\xee\x3a\xbf\x51\x1a\x0c\xd4\xfd\xca\xa3\x34\x51\x78\xd6\xbf\xd2\x80\xa2\xbf\x52\x3e\xa3\xa6\xf8\xa5\x62\xd2\x9f\xd3\xe7\x35\x1d\xf5\x16\x07\x7f\x35\xff\x93\x33\xbc\xde\x8a\xd9\xbb\xb7\x9d\x9b\xac\x9b\x26\x51\x88\x48\xe2\x60\x12\x2e\xdf\xbd\xaa\x94\xa7\x4f\xb9\xe8\x55\x44\x71\x3c\xe1\xad\x78\xff\x5a\xf1\xa1\xcf\xd2\xf6\x61\x4b\x0f\xcf\x7a\x4c\x58\x0c\xb1\xe5\x0f\xc2\x8d\xca\x1c\xbd\x09\x65\x9c\x8f\xb2\x95\x68\x85\x09\x88\x58\x58\x1f\x2a\x2d\xe3\x0f\x6b\xf7\xfc\xe0\xf4\x7c\xbb\x58\x8d\x42\x3b\xe1\xd9\xb6\x9b\x4a\x57\x06\xf5\xa4\x58\xcf\xd6\x3b\x53\x3d\x9b\xd8\xa4\xb0\x21\xb4\x6c\xf0\x37\x7b\x10\x34\xf8\xcd\xba\xca\x04\x2c\x39\x92\x1d\x54\x1e\x5e\x7e\x48\xa6\x38\xb6\x26\x31\xf1\x5a\x5e\x4c\x55\xfc\x93\x68\x1d\x08\x9d\xd4\x77\x90\x51\x3a\x89\xdd\x93\x6e\xd5\xd5\x35\x44\xcb\x0c\x8c\x1c\xf2\x39\x1f\x54\xe9\xc5\x21\x79\x53\x63\xea\x3d\xdd\xce\x0b\x13\x81\x07\x5a\xb1\x2c\xc6\x9e\xf8\x50\x5b\xd6\xab\x0e\xc2\xe2\x28\x4b\xa0\xda\xee\x3a\x6b\xea\x70\xf7\x6a\x66\x61\xdf\xc0\xb6\x5a\xb9\x8c\x7e\x40\xcf\x99\x25\xa7\xe9\x61\x60\x49\x6f\x5b\xd7\x94\x87\xac\xac\x5f\x0a\x8c\x66\x79\xb6\x11\x78\xc5\x98\xf3\xb5\xf5\xf1\xc2\x0b\x65\xd6\x06\xfc\x0a\x3d\x2d\x24\x3f\x37\x95\xf9\xde\x4d\x45\xc0\xc8\x4d\x02\x4f\x9d\x29\x3f\x4a\x3f\x4e\xa1\xd5\x71\x7a\x3d\x39\xe5\x32\x5d\x1d\xcf\x22\xc7\x1e\x03\xf3\x7e\x6d\xc9\x2c\x4c\xb7\x93\x34\xc9\x6d\x92\x5b\x20\x58\x1c\xd5\xd8\x8d\x65\x6e\xaa\x7e\xff\x31\x45\x24\x5b\x2d\xcf\xc8\x2e\xa8\xaf\xcf\xf2\xad\x82\x04\xbd\xf3\x71\x74\x03\xdc\xbf\x6a\xca\x98\x17\xad\x29\x78\xa4\x22\x06\xe3\x4a\x28\xe0\x8c\xd2\xa4\xd9\xf8\x1b\x9c\xe7\x7b\xe6\xe5\x28\x81\x12\x1a\x7e\xfb\xb6\x8e\x47\x9e\x1f\x41\x68\x41\x7b\xf0\xae\x82\x8b\x7e\x69\x6d\x0a\x60\x10\x5a\xee\xbf\xfa\xf3\x94\x75\x39\x66\xcf\xc2\xb4\xef\xdf\x38\x75\xbe\x7b\xf8\x2c\xfc\xd4\xa9\xf5\xad\x35\x2c\xa1\xc9\x6d\x52\x8c\x32\x8a\x82\x6e\x62\x78\x59\x63\x83\x2f\x37\xa9\x1f\x2c\xa5\x29\xf0\xfc\x9b\x84\xe4\xdf\x3c\xef\xa8\x5c\x99\xcd\x87\x69\xe2\x90\xf5\xb8\x97\x77\xb4\x0d\xde\x9d\x5a\x3b\xee\xe0\xf4\xa1\xb6\x89\xe3\xc8\x24\xa1\x28\xdf\x49\x93\x96\xee\xae\xb4\x6f\xf7\x38\x20\x55\xaf\x87\xc4\x05\xc7\x2f\x94\x8c\xf9\xf5\xfa\xd6\xc7\xb6\x6f\x8e\x54\x2b\xd6\x5a\x8a\x17\x75\xa1\x32\x49\x7e\x4c\x69\xd4\x85\xd9\x28\x92\x98\xc9\x9b\x35\xd0\x1b\xd7\x83\x13\xed\x8a\xcd\xd6\x3e\xe1\x6d\x71\x4f\xa9\x3e\xe9\x87\x00\xc7\xe0\x29\xbc\x8b\x2c\x51\xa8\xd2\x4a\x3a\xe5\x1c\x99\xf8\x20\xeb\xbf\x19\x50\x3e\x23\xf9\x94\x6f\x84\x7e\x84\xbe\x1b\x02\xc4\x4d\xe5\x30\x4d\x2e\x6f\x87\x9c\xda\x69\xcb\x61\x9b\xc1\xae\xc0\xf2\x6f\x75\xb4\x82\x81\x3f\xd0\xe2\x34\x47\xcb\x50\xa3\x09\xd1\x70\xba\xa1\xe4\x8d\xef\x52\xc6\x26\x3a\xf8\x15\x86\x9b\x52\xed\xf8\x6d\x8d\x12\xbd\x1b\x28\xcf\x82\x1f\x8c\xb5\x7d\x64\x79\x51\x52\xde\xd5\xa5\x42\xf7\xb7\x97\xb2\xc8\x26\x5d\xda\x18\x00\xe7\x9e\x0d\xbc\x72\xdf\x59\x8d\x7f\xf9\x67\x8d\xe6\x3a\x61\x3f\xcd\x84\xee\x80\x5f\xc6\x96\xb7\xfc\x46\x0d\xe0\xcd\x12\xb9\xe3\x02\x49\x82\x40\x79\x1c\x57\x81\xb2\x12\x9d\x7c\x7e\x8d\x54\x93\xff\x95\xea\x19\x65\x36\x29\xca\xa3\x72\xe6\x80\xa7\x6c\x3b\x5a\xaa\x56\xdb\xb7\x79\x6e\xe3\xc2\x72\x65\x2c\xb7\x59\x0d\xec\x6f\x54\xb2\xde\x2c\x1a\x4c\x78\x40\x1f\xc0\xe4\xce\x7b\xa4\xfc\x23\x3c\xcf\xfb\x8e\x37\xb1\x94\x66\x36\x34\xb9\x07\x16\x3a\xad\x32\xb7\x31\x60\xa0\x86\x1c\xe5\x8a\x12\x58\xcc\x4c\xf9\x57\x68\x63\x32\x5f\x99\xd6\x02\x12\x26\x9e\x4e\xe2\x23\x5e\x1d\xfb\x05\x53\x47\xf1\xcd\x1c\x68\x2f\x45\xb9\x17\x98\x12\xb9\x37\xff\x34\x8f\x56\x2c\x9f\x68\xa7\xa1\x5e\x61\x34\x34\xae\x4d\xa0\xd1\xfe\x20\x59\xb4\x4b\x6c\x51\xe5\x9b\x66\xb7\x15\x59\xe7\xb6\x12\x9d\x59\x34\xe6\xef\x13\x1a\xcb\xa9\xed\x3a\xc7\xdd\x07\x90\x55\x00\xe3\x76\xb5\x22\x51\x17\x8f\xf2\xed\xe5\x3f\x44\x61\x08\x0e\x8e\xc0\xc3\x2b\xbd\x71\x5a\x21\xae\xb7\x5d\xae\x47\x2d\xd2\x88\x9c\xff\x44\xad\x71\x33\x3b\xdb\x0e\xb3\xa8\x88\x42\xe5\x9b\x70\x5b\xf9\x26\xdc\xae\x9d\x35\xfb\xe6\xda\x26\x8e\x2c\x72\x53\x54\x70\x50\x1d\xe7\xd7\x9a\xe9\x42\x7e\xb5\x4c\xaf\xd2\xee\x13\xfc\x3a\xf0\x83\xae\x3c\x4d\x93\x5d\xf4\xef\x98\xd0\x1c\x54\x24\xa1\x7d\x67\x15\xec\x08\xe4\x55\x0f\x75\x7c\xfe\xf8\xc7\x81\x9a\xa7\xbd\x17\x94\x95\x99\x94\xb1\x7e\x75\x5d\x2b\x37\xc1\xe6\xb5\x86\xc1\xdc\x0c\x41\xb2\x97\xd6\xdc\x1a\x91\x3c\xab\xe5\x8c\xe4\x8e\xaa\xe3\x3a\x22\x3b\x51\xf6\x8d\x62\xf5\x04\x85\xf4\x3d\xa2\x65\x07\xc2\xbe\xed\x8e\x62\xdb\x9d\x2c\xe3\x55\x25\x49\x47\xe2\x71\x25\x50\xad\x97\xef\x29\xe9\xed\xf7\x9b\xd4\x64\xed\x4b\xc3\x38\xcd\x2c\xb5\x94\x45\x00\x87\x36\x82\xb3\x1b\x76\x78\x18\x80\xdd\xc1\x68\xde\xd6\x79\xcc\x49\x8e\x44\x83\x28\x31\x9e\xa8\xec\x78\x21\x8e\xc7\x74\xb4\x06\x5f\x5c\x98\x6e\x57\x3d\x2e\x0f\x4e\x3b\xfc\x9b\x27\x16\x9e\x0c\xfc\x79\x55\x44\xbd\x7e\x61\x13\x3e\xaf\x30\x06\x43\x23\x94\x5f\x6f\x6d\x19\x95\x65\xd5\xcc\x81\x29\xbf\xf4\x58\xf3\x0b\x79\x08\x1b\xd1\xba\x13\xc5\xc9\x11\x72\xf2\x8c\x69\xc6\x31\xaf\x5b\x9a\xc6\x5d\xcc\xce\xb1\x25\x6e\xa1\x6b\xac\x5b\x49\xc8\x25\xff\xa5\x7e\x14\xc7\x1b\x3c\x54\xe6\xdb\xa1\x01\x23\x45\x41\xc7\xe8\x66\x09\x8c\x6c\xeb\xcd\x9a\x39\xd0\xee\xa6\x03\x9b\x8b\xbf\x91\x5f\xa4\x87\x95\x17\xd4\x61\xc5\x26\x58\xcc\xac\x59\xa6\x4b\x77\x56\xfc\x07\xa7\x9d\x27\x48\x4b\xd9\xf2\xfb\x34\xee\x14\x25\xc4\xf2\xbb\x1b\x84\x8a\xf2\x34\xee\x6a\x58\xfe\x61\x3d\x32\x39\xac\x28\x37\x66\x95\xac\xbf\x26\xf4\x8d\xe0\x42\x1c\xc1\xe5\x3b\x81\x82\xa2\x9f\x1d\x7b\x5f\x04\x33\x2a\xd2\x81\x71\x3e\x4e\xe5\x3f\x72\xee\xc0\xae\xf1\xb6\xa1\x5a\xab\x4b\x71\x9a\x45\x5d\x33\xa9\xd1\xfa\x0c\x51\x13\x1b\xf0\xf2\x0f\x51\xab\x5d\x43\xd4\xc5\x2a\xff\x77\x8d\xe0\x98\xf2\x8b\xf9\x54\x75\xe2\x72\xe5\x3a\x11\x71\xb9\x0a\x36\x66\xf8\xd9\xed\x8a\x33\x0e\x8e\xaf\x60\xa2\x94\x34\xf7\x86\x3a\x64\x18\x63\x8c\x6d\xf1\x8d\x40\xd1\x74\xeb\x64\xc2\xd9\x59\xf0\x68\x34\x8c\xea\xac\x82\x51\x9d\xad\xd5\x0b\x65\x76\x99\xd9\x22\x4a\x4c\xac\x24\x8b\x7f\x48\xab\x5b\x07\x2f\x74\x25\xb4\xca\x02\xa1\x50\x6c\xb7\x45\x7d\x10\xd6\x27\x03\x05\x50\xc4\xca\x9a\xd0\xf5\x90\xc1\xef\x4e\x28\xcd\xd0\xf7\x70\x6e\x60\x04\xc2\x66\x6a\x40\x7b\x1c\x76\xfa\xd9\x31\x3a\x27\x13\xca\x2e\x73\xac\x1a\xc1\x57\x14\xdd\xff\x52\x13\x30\x37\xb3\xd4\xcd\xed\xb6\x54\x17\xf2\x4c\xa0\xe0\x87\x67\x1c\x70\x2f\x1a\x0c\x47\x49\x54\xb0\x51\x9e\x94\xe6\x9e\xfb\x70\xb1\xa9\x57\xf8\x72\x9a\x56\xf0\xd4\x63\xd5\x9c\x54\x29\x51\x19\xe0\x2b\x2d\x95\xe3\x4a\xef\xe6\xb8\x4a\x89\x42\x93\x65\x91\xcd\xa9\x2a\xc6\x19\x8a\xbe\x37\x46\x3b\x0f\x00\x9b\x2a\xeb\xdc\xb7\x45\xff\x41\xd1\x9f\xf0\xa0\xc9\xc7\xd6\x7d\x9d\xfb\x24\x8e\x77\x61\xb3\xc9\xc5\xae\x9a\x22\xf4\x36\xed\x4e\x23\xd4\x65\x3b\x7f\xa6\x1a\x29\x7f\x54\x49\x0a\x48\xe1\x6d\xce\x67\xac\xca\x58\xbb\xc9\x62\xee\x50\x7b\x98\xd9\xa1\x71\xd8\x68\x67\xc5\x3f\x3b\x2b\xaf\x95\xe0\x40\x66\xe3\xc8\x92\xe5\xe5\xc2\xb4\x88\x28\x2b\xd7\xf7\x93\x4d\xe6\x05\x9f\x69\x0f\x4c\xf6\x92\x00\x03\xb1\x63\x6f\xe8\xed\x7b\x43\xb5\x05\xca\xc8\x38\x30\x85\xdd\xed\x05\x10\x79\x74\x87\x4e\xce\xef\x8e\x7d\x01\xf5\xea\xb8\xe2\xfa\xe8\xb1\xa7\xb7\x03\x3f\x0e\x38\x8c\x8c\xdf\xc9\xed\x94\xd7\x28\x56\xf2\xb4\x7f\x59\xc5\x14\x35\x1b\xef\xf2\x26\x9f\x88\x5e\x64\x92\x22\x9f\xd4\xb9\xf0\x5b\xf8\x23\xde\x13\xca\x7c\x95\xfb\xde\x68\x83\x5e\x56\x33\xa1\xc2\xbe\x64\xf2\x5d\xf4\x23\x30\x6c\x58\xc7\x8f\x10\x61\x60\xd5\x75\x9e\x5c\xc7\x57\xc9\x19\xed\xfd\x36\x99\x37\xcd\xcd\x7c\xfa\x5a\x94\x3a\x18\xc9\xb2\xc6\x2a\x7e\x9b\xf0\x2c\xfc\x52\xcc\xd3\x64\x57\x4b\xa9\x17\x95\x9f\x2b\x0e\xe6\x65\x70\x41\x7b\x67\xd7\xba\x46\xf5\x00\x22\x4e\xf1\x7e\xf5\x51\x80\x82\x54\x7c\x96\x2e\x1b\x0f\xa9\xe9\x37\xfe\xe6\x63\x18\xa9\xa0\x9c\xfa\x74\x67\x8f\x92\x46\x2f\x76\x2a\xbb\x0b\x6a\x05\xcb\xd4\x9f\xfe\x9e\x59\xe8\x58\x21\x08\x75\x9b\x4a\xcd\x1e\x17\x2c\x47\x91\x12\xf1\x3c\x37\x56\x15\xe7\xa9\x26\x91\xf3\x45\xbb\x24\xe9\x11\x9d\x01\x0f\x3f\xda\x51\xd4\x40\x8c\xf5\x45\x4b\xbf\x3c\x40\x71\x88\x4f\xad\x3b\xc5\x94\x74\xa9\xb0\x19\x4c\xb9\x34\x58\x18\x37\xf9\x31\xb4\xd3\x69\x09\xfe\xdc\xdf\xed\xf8\x31\xc3\x03\xeb\x5b\xb3\x80\x39\xe8\x08\xd9\x24\x37\x85\x34\x31\x9c\x00\xb4\x12\x43\xf5\xfb\xa2\x4c\x18\x96\xa3\xa4\x37\xe5\x75\xb0\x58\xef\x5e\xd4\xc6\x7d\xd6\x71\x23\xf0\x09\xe0\x51\x02\xcc\x08\x76\xd6\x67\x15\xd9\x5a\xd7\x66\x2d\x65\xcc\x7a\x11\x81\x82\xdf\xd4\x0e\xb0\x7d\x73\x50\xf0\xe3\x28\xe1\x48\xa8\xce\x07\xf1\xa2\x6b\xf9\x46\x99\x61\x63\x4c\x5c\x3e\xcf\x3d\x69\xcf\x2e\x3c\xc2\xeb\x0a\x98\xa8\xed\x94\xa4\x57\x9c\x26\xc4\x94\xb4\xbc\x04\x9c\x57\xff\x5d\x2d\x25\x7f\xe1\x85\xb6\x19\x96\x31\x2b\x29\xa0\x3d\x36\x07\x17\xc7\xcd\x4b\x8d\x12\x21\xa3\x61\x66\x07\x96\xdd\xd7\xb1\xed\xde\x52\x64\xed\xb7\x54\x59\x39\x18\x65\x5d\x92\x1c\x72\xd0\x52\x60\x9a\x38\xad\x52\xc3\x9f\x3f\x6d\x98\x73\x3f\xdb\x36\x8b\xe9\xa8\xa0\x7e\x37\xea\x02\x98\xe8\x81\x6c\x06\x5f\x40\xdc\x93\xc3\x9a\x78\x36\x08\xad\x55\x58\x44\xb6\x9b\x16\xc9\x27\xb7\xf8\xac\xc9\xc2\x3e\x15\xbc\x38\x67\xd1\x7e\x73\x32\x7f\xde\xea\xf4\x77\xc6\x95\xa4\x47\x11\x82\xf3\x7c\x34\x18\x96\x2b\x8e\x24\x8f\x71\x21\x37\xd1\xa8\xc1\x6f\xdc\x45\xbf\x97\xad\xd2\x28\x89\x14\xa1\x2e\x95\xa7\x45\x89\x11\x27\x71\x2c\xb8\x6f\xab\x94\xf7\xdb\x4d\xea\x11\x43\xb3\x96\xa5\x71\x3c\xa9\xc6\x14\xcc\xaa\xd4\xb4\x15\x44\xba\x3b\xca\x73\xf1\xaa\x83\x1d\xe4\x49\xb4\x42\xc6\xe8\x13\x1e\xa8\x79\x8c\xa2\x82\x70\xa0\x29\xfe\x7f\xb5\xbc\xfe\xd7\x4f\x07\xde\x26\x9a\xcc\x1f\x6c\x97\x12\x68\x9c\xcb\x8f\x92\x58\x28\xba\x8b\x17\x11\xbf\x1c\x60\x60\xc1\x2b\x4d\x69\x73\xa1\x26\x44\xe8\xa2\x2d\x26\x54\x06\x7d\x4a\x39\x5b\xbe\x8b\x3f\x66\xaf\x87\xc0\x2f\xaf\x7c\x79\xad\xcc\xa7\xab\xc8\x74\x0f\xe4\x3b\x8b\x67\x55\x1d\x34\xa4\x54\x50\xb1\x2b\x8a\x2a\xa6\xcf\xd7\xf2\xfa\xa7\xdb\x61\x6c\x72\xb0\xba\x74\x54\x10\xce\x92\xc2\x23\xbd\xed\xee\x10\xfd\x49\x96\xa6\x83\x09\x05\x2c\x40\x2b\x4e\x90\x33\x2d\xe5\xe1\xd8\x24\x20\x3e\xb4\x32\x07\xe1\xfe\x6d\xa0\x7b\xb9\x1e\x79\xb6\x14\xc5\x36\xcb\xa9\xf0\xc2\x1c\x10\x3a\x3d\x4e\x3b\xc2\x2b\x3f\x33\x1e\x5d\xf0\x7f\x0d\x1a\x6f\x66\x48\x66\x25\x16\xf2\x26\x4e\xbc\xd0\xf5\xd2\x8f\xa8\xc0\xcc\x3c\x46\x5c\xce\x4f\xbd\x48\x75\xd8\xa7\x5c\x66\x52\x09\x47\xbe\xa6\x40\xe0\x0c\x33\xc2\x4a\x44\x1f\x8a\xe7\xf4\xb5\x25\xbe\x30\xdf\x2e\x32\xe3\xda\xc7\x38\xa6\x3f\xc2\x45\xf0\x1b\x37\x59\x5f\x34\x51\x9c\x8e\x30\xeb\xc3\x7c\x77\xb2\xe3\x09\xe6\x93\x35\xb9\x22\xd2\x3a\x26\x5b\xe4\x96\xba\xd6\xb3\x81\x1e\xa4\xf9\xd3\x7d\xf4\xf2\xcb\xaa\x09\x7c\x4d\x35\x81\xaf\x7d\xac\xcd\x75\x5e\xa4\x99\x50\x2e\x10\x41\xce\xf3\x40\x09\xcd\xd8\x6f\x6a\xe1\xfc\x4b\x41\xd5\x39\x2e\x4a\x42\x9e\xc5\x88\xda\x57\x79\x31\x22\x41\xbc\x75\xdf\x1c\x9c\x9e\x6f\x27\xa6\xd5\x3a\xf0\x9c\xa7\xbe\x2e\xcc\x7f\x2c\xf5\xf5\xf9\x99\x03\x65\xbe\xc0\xdd\x75\xd1\x6d\x56\xd4\xf4\x0b\x4a\xf1\x31\xb7\x61\x46\xb2\xc8\x6c\xaf\xc7\x3e\x5d\x74\x0b\xc4\xb3\xab\x49\x2d\x70\x48\x10\x20\x40\xf7\x58\xd5\x82\xb6\x19\xa2\xe0\x87\x98\xb7\x0b\xf0\x5d\x0e\xb9\x70\x29\xcc\xa7\x94\xc3\xc6\xc5\xca\x34\x95\x39\x03\x08\x2b\x8f\x75\x7c\xcd\x71\x4e\x8d\x49\xfe\xf8\x91\xf5\x27\x55\x63\xf1\xc5\xd1\x8a\x4d\x8c\x2b\x43\x9c\xef\xcb\x9c\xb3\xae\xfd\xd7\x0a\xef\x69\xb2\x74\x94\x03\xef\xc9\x50\x29\xba\x4e\x81\x4d\x79\x82\x4b\x1c\x2d\x5a\xb4\xa2\xc4\xfd\x85\x6e\x1f\xbf\x69\x94\xa0\x1f\xa6\x43\x44\x28\x06\x99\xd0\xdd\x10\xc0\x49\x1d\x1a\xb8\x98\xa6\xb9\x13\x78\x42\xff\x82\xbd\x72\xf9\x4d\xb0\x35\xfd\x91\x85\x57\xd6\xb7\x99\x80\x4c\x70\xdc\x12\xb5\x40\xb4\x56\x34\xad\xf3\xac\x9a\x31\x46\x49\xd8\x47\x7f\x4a\x6c\x92\x7d\x4a\x78\xde\x6d\xb4\x41\x9a\x44\x45\x9a\xed\x50\x1d\x7f\xce\xff\x91\x63\x5c\x1f\x2b\xc9\x15\x1c\xa6\x88\x17\xef\x92\xe7\x38\x42\xf2\x51\xca\x89\x71\x08\x42\xd4\x1f\xad\xa1\xd6\xba\x42\x05\x17\x6b\x0f\x95\x61\x03\x9d\x80\x49\x82\xe1\xe3\xaf\x4f\x62\xe7\xe0\x60\xdb\xb3\xee\x6b\xe1\x1b\x4a\x43\xf3\x57\x48\x98\x4d\x5a\xa0\x13\xde\x63\x7d\x52\x4f\x4a\x76\xac\xab\x95\xf0\x77\x3a\xce\x2c\xef\x4f\x1f\x21\xd5\x4f\x84\xac\x5b\x34\x99\xc1\xd7\xf1\xe0\x01\x3f\xf7\xa3\x26\x8f\xb3\x22\x8b\x7a\x3d\xc1\xfc\x39\xff\x00\x37\xc4\x3f\x17\x3c\x5e\xf5\x88\xb4\x79\x6e\xbb\x2d\x4c\xf3\x80\xbc\xb8\x8e\xce\x19\xbf\x51\x7b\x51\x39\x72\x4d\x2a\x0e\x1c\x16\x29\xf6\xc8\x47\x94\x58\xf1\x6b\xfa\x5a\xfe\x37\x8a\xbe\x43\x60\x43\x84\x4a\xf4\xb8\x61\x7e\xcc\xaf\x1b\xa4\xb4\xda\x51\xd2\xb5\x2f\x59\xb8\x3c\x09\x6c\xbd\x5e\xe6\xa1\xb0\x9d\xea\xf8\x93\xb9\x6f\xb3\xdc\xc6\x4b\x93\xde\x15\xe4\x47\x00\xc4\xe0\x43\x6e\x56\xb8\x1b\xe5\x6f\x90\xd9\xa9\xdf\x92\xd1\x60\x98\x66\x05\x14\x35\x9c\x35\x46\xf9\x08\xdc\x57\x7b\x8a\xcf\x55\x65\xe4\x71\x4b\x79\xb1\xb3\xd1\x0f\xff\x07\x45\x72\xc8\x87\x91\x8d\x57\xd2\x9e\x8d\x79\x1a\xa3\x4a\xae\x79\xa7\x7a\xac\xfb\x00\x59\xf1\xf2\x64\x45\xe8\xd5\xef\x91\x3b\x8a\x5f\x7a\xb6\xaa\xf9\xaa\x0d\x91\xc2\xee\xf6\x96\xb3\x28\xbe\x37\x56\x0a\x30\x1b\xc8\x19\x11\x44\xae\xab\xe2\xec\x1e\xe5\x8c\xfc\xff\xff\xcd\xad\x87\xb2\xa2\x08\xfb\x59\xda\xf5\x7a\x69\xae\xbc\xf5\xa2\x2c\xe7\xd5\xb6\x2f\xeb\x9f\xed\x5e\xd7\xe3\x52\xa0\x66\x46\xaf\xea\xd9\x81\x1e\xb9\xfd\x11\xfd\x3a\xa1\x2a\x57\x1c\x8e\x1b\xa8\xb8\xa3\xac\x67\x15\x16\xed\xbc\x92\x08\xaf\x03\x0b\xe6\xe6\xda\x43\x13\x2e\x9b\x9e\x6b\x97\x4b\xc7\x55\x57\xa8\x7e\x81\xf4\x6d\x3c\x18\x15\x2d\xad\xe0\x75\x18\xd7\x2a\x45\x41\x93\x11\x61\x96\xae\x44\x5d\xab\x4c\x4d\xb8\x50\x92\xce\xde\x83\x8e\x6d\x67\x8a\xdd\x5e\x1d\xea\x86\x0e\xc1\x98\x61\x52\x29\xfd\xdf\x7e\x72\x5d\x23\x48\xb1\x28\x11\x31\x1e\xe9\x78\xdb\x83\x4d\x25\xcd\x01\x59\x1f\x20\xce\xee\x53\x3d\x49\x9f\xfa\xe7\xbf\x4c\x43\x5a\xb4\x1e\xee\x6b\x7e\xed\x8a\x89\x62\xce\x27\xf0\xc9\xbb\x3a\x8a\x15\x7b\x5b\x59\xfb\xdd\xd2\xe6\x2d\x7d\x93\xdb\x29\xe5\x30\x78\x49\xb9\x65\xfc\xdf\x5a\x1d\xe2\xc7\x0a\x8e\xf1\xbf\xaa\xa9\xf1\x55\x55\xeb\xa4\x61\x68\x72\x62\x8f\xb7\x7c\x33\x68\x43\xeb\x49\x6e\x28\xe4\x8d\x7d\x69\x18\x9b\x28\x69\xa9\x63\xbb\x6a\x0c\xfb\x90\x96\x29\x12\xca\x25\x36\x4d\x65\x07\xd5\x2d\xa8\x88\x07\xb7\x96\x75\x31\xc8\xc7\xc9\x76\x42\xd9\x4f\x9e\x68\x32\xac\x5c\x32\x51\xc6\x4d\x73\x74\x40\xde\x51\xe0\xcb\x77\xd4\x40\xb2\xe8\x47\x09\x61\xf9\x15\xbb\x6a\x43\xa1\x61\x37\x1c\xfc\x80\xda\xe1\x53\x3e\xb1\xe1\x2e\x92\x68\x80\x2a\x3a\xd8\x27\x3b\x3e\x0a\xbe\x89\x80\x89\xbc\x62\xf7\xba\xaf\x02\xf3\x51\x3e\x24\xc7\xee\xb9\x39\xee\x73\x61\xc8\xcf\xaf\x2b\x2d\xc9\x62\x34\xa4\xf5\xcb\x34\xfd\xc0\x57\x4a\xe7\x54\x5d\x99\xd9\x81\x89\x92\x7c\x87\xef\x3c\x42\x2a\x0e\x7d\xe0\xdb\xf8\xb9\xc8\x65\x2f\x81\x33\xc0\x08\x86\x40\x89\x3a\xa0\xe0\x66\x30\x0b\xba\xde\x82\x73\xf0\x4f\x3b\x19\x29\x42\x14\x12\xc9\x6f\xe9\xac\xf2\x5b\x2a\xaa\x97\xd5\x4d\x97\x5d\x20\xc4\xd1\x55\xb9\xbb\x36\x85\xb5\x61\x66\xc3\x28\x97\x86\x83\x5b\xb2\xce\x1c\xf3\xc7\xb5\x24\x6a\xfe\xb9\xfd\xed\xa8\x6b\x19\xbf\xc6\xc6\x9f\x74\x9b\xbc\x09\xa8\xa3\xfd\xb1\x4d\xcb\xcc\x81\xcd\xd3\xa4\x1f\x78\xba\x72\xaf\xd3\x51\xf1\x73\xe5\xd7\x8a\x9f\x77\x99\x10\x60\x4b\x7f\x48\x69\x0d\xc2\xe5\x09\x6d\x4c\x70\x12\x85\x0a\x96\xfa\xc3\x24\xe0\xcb\x85\xf4\x6b\x48\x7e\x91\x74\x7c\x44\x70\x4e\x80\xba\x8f\x07\x5e\xc8\xe3\xbc\x3a\xcb\x1e\x59\x57\xca\x85\xf7\x01\xc5\xc4\xe4\xe2\x38\x56\x98\x33\xf1\x9e\x39\xc0\x0f\xe6\x4d\xaa\x00\x10\xed\x1f\xa8\x74\x1d\xef\xb0\x8c\x0c\xba\xbd\x13\x88\x5b\xe8\x09\x5f\x0f\xca\x30\x84\x92\xe9\xb4\xf2\xd9\xde\x44\xbe\x4c\x5f\xf2\x3b\x9f\x22\x06\x07\xee\xf9\xb6\x8e\x4a\x7b\xef\x62\xc5\xa0\x7f\xcf\x82\x52\xb8\x96\x89\xf5\x26\x74\xe1\x30\x4b\x7b\xe4\x39\xdb\x72\xc6\x79\xd0\x84\xe1\xd7\x4a\x46\x27\x29\xa2\xc4\x26\x05\xcb\x39\xe0\xe8\x7d\x73\xec\xc1\xf8\xdb\x3b\x0a\xdd\x3c\xb1\xae\x48\x18\x66\x18\x15\x26\x8e\x5e\xc6\xe4\xc6\x73\x0f\x08\xc4\x21\xac\x04\xd9\xcc\x8b\xe9\x60\x31\x9f\x50\xf4\x7e\x68\x1d\x08\xa5\xbf\x7c\x38\x02\x5d\xf5\x79\xea\x33\xcf\xe5\x53\x9e\xad\xf5\xf5\x47\xd0\xfc\x44\x9c\x00\x9e\xcc\x61\x75\xe7\xe6\xe6\x37\x5b\xfc\x30\xc4\xc3\xb1\x9e\xf9\xc3\xc6\xa5\x80\xec\x0d\x9e\xec\x15\x24\xb0\x18\x07\xc0\xc3\x1f\xb5\xfe\x31\x35\x54\x1c\x44\x71\xd7\xae\xae\x29\x52\x2f\xd0\x8c\xfc\x7a\xfd\x61\xe5\x67\x52\x7e\xc3\x1e\xe5\x8d\xa6\x95\x05\xef\xd3\x39\x80\xe3\x1c\xbd\x04\xf4\x8e\x6f\x62\x75\x63\xa9\x03\xa5\x2d\x32\xa2\xe5\xd7\xc8\x0f\xa2\x7b\x81\x90\x77\x13\xb9\x84\xb8\xfb\xb6\x9c\x7f\xf6\x35\xe2\x41\xb0\x74\x1b\xa1\x8a\x44\x3b\x54\xce\xbb\x70\x94\x75\x3d\xd5\x17\x51\xe8\x36\x7e\x25\xbf\x09\x1e\x77\xdd\xa8\x30\x4d\x56\xa2\x24\x14\xdd\x2d\x9c\xfb\xa7\xb4\xff\xdc\xa9\x26\xd1\xf9\xc4\x44\x59\xba\x18\xb5\xfc\x3a\xba\xa8\xc5\x7d\x2e\x36\x89\xca\xee\x6f\xaf\xa4\xce\x7f\x5c\xc4\x3a\xe8\x92\xf9\xcd\x78\xb7\x9f\x09\x4c\x6a\x1e\x01\x1e\x21\xd6\xc2\xdb\x0a\x08\x73\x12\xd1\x00\xff\xea\xbe\x82\x19\x87\x69\xba\xdc\x52\x28\xf1\x0b\xfa\xf2\x2f\x04\x4f\xa8\x7f\x38\x58\x4a\xb3\xc2\x2c\x8a\x88\x23\xce\xf6\x77\x28\x9a\xf0\x6b\xaf\x07\xfc\xff\xc3\xe0\xc9\xc9\xd9\xd9\x78\xc9\x64\x16\xad\x79\xd1\x2d\xf1\x67\xdd\x6e\xaa\xee\xb0\x1b\xef\x52\x06\x23\xa6\x18\xca\x83\x2b\x4e\x13\x3b\x85\x25\xaf\x9a\x83\xcf\x72\xc4\x83\x8f\x38\x1e\xfe\xa4\xd2\x97\xe6\x07\x81\x3b\xf4\x93\x5a\xa3\x70\xef\x4c\x19\x91\x27\x15\xb6\x0b\x93\x45\x87\x80\x74\xf0\xc5\x0b\x81\x67\x82\x9c\x54\x59\xe3\x62\x96\x2e\xdb\x64\x42\xd9\xdd\x5c\xe3\x5e\x03\x58\xcb\xeb\x58\xc7\x80\x42\xdc\x68\xe2\x80\x0c\x6d\x96\x47\xb9\x74\x51\x9c\xd7\x84\x32\x9e\x70\x14\xec\x30\x1d\x0c\xd2\x64\x52\xc3\x89\x2f\x2a\x8c\x1d\xfa\xf5\x88\x32\x4c\xff\xc7\xb6\x3c\xdd\x00\x6c\x3b\xd4\x1e\xf6\xd3\x22\xe5\x11\x3c\xdb\xba\x52\x44\x10\x8b\xd7\xfa\xcc\x7b\xa6\x1d\xa7\x8b\x8b\x8e\x01\xcf\xa5\x4b\xd5\xb0\x42\x25\x9a\xbd\xc4\x24\x05\xd5\x6c\x4e\x28\xbd\x8c\x96\x72\x8a\x7b\xd0\xc4\x23\x1d\xdf\x08\xdd\xa1\x4a\xf7\x5f\xdb\x37\xa3\x2d\xc1\x70\x49\xd2\x67\x6a\x02\x9e\x9a\x24\x1a\xf8\x99\x0d\x62\x1e\x6c\xa1\xf8\xb5\x8a\xb7\xdd\xa2\x3f\xa1\xca\x39\xd4\xae\x68\x27\x02\xab\x25\xe9\x9a\x87\x3a\x0d\x4c\x6c\x77\xf8\x9e\xdd\x2d\x82\x47\xa2\x6d\xfd\xa3\x40\xe5\x20\xe7\x14\xa6\xed\x5c\xa0\x0c\xa1\x31\x27\xe4\xbf\x50\xce\x73\x27\x9b\x00\xc9\x99\xcd\x8b\x2c\x0a\x8b\x96\x17\xbe\xe4\x92\x55\xda\xf2\x5b\x6f\xc1\xc2\xf4\x7e\x58\xbf\x26\xcc\x00\xdc\xa4\x27\xba\x59\x77\x96\xa4\xc1\x6f\x16\x2d\xf2\xe3\x77\xae\x47\x4a\xb5\xb4\x01\xa1\x9b\x99\xc2\xf2\xea\xc3\x0e\xfd\x09\x56\x37\x62\xc3\x49\x3f\x86\xbc\xf9\x4d\x3c\x2b\x3c\xf7\x2b\x15\x25\xc9\x6e\x0c\xcb\x24\x87\x56\x75\x60\xfb\x37\x50\x00\x0a\xf2\xbe\x3c\x56\x90\x5c\xdc\x0d\x94\x21\x18\xef\x7b\x74\x89\xbe\x43\x4f\x8d\x5f\x53\xaa\x82\x43\xff\xaa\x83\x40\x10\x23\xad\x0b\xf6\x10\x32\xad\x4b\xb8\x89\x38\x35\x26\x51\xfb\x48\x48\x69\x39\x26\x12\xbb\xc8\x8a\x55\xb9\x0f\xa7\x2f\x9a\x7e\xa2\x60\xc8\x58\x5e\x52\xfb\x3d\xe4\xba\x5b\x45\x9a\xc9\x38\x1a\x09\x5a\xe5\x9b\x26\xd6\x35\xd0\x9a\xee\x15\x4e\xb4\x8b\xc1\x16\x70\xd5\xec\xec\x42\x7b\x6e\x6e\xd2\xcf\xd5\xd1\xfe\xd4\x6e\x64\x78\xfd\xb6\x3a\x49\x3f\x08\x3e\x5d\xfd\x94\x99\x03\xd2\xd6\xfb\x64\x79\x4a\x8a\x29\x53\x79\x7a\x62\x2d\xbf\x8f\xa4\x0b\xe7\xed\x4f\xc7\x6a\xa6\x7f\x1a\xa4\x22\x5c\xe1\x1f\xe0\xb7\x42\xe5\x6d\x5b\x87\x52\x21\x3c\x96\xf7\x91\x4e\x62\x13\x9f\xa4\xc7\x22\xb4\x21\xcd\x9b\x23\xa6\xae\xd8\x5a\x51\x1e\x20\x8d\x41\xa5\xdc\x7c\x1f\x8d\x2b\x2c\xa5\xcb\x81\x77\x18\xf9\x16\xc7\x56\x34\xbb\xaf\x21\xfb\x62\x26\xf9\x58\x59\xa2\xc3\x8d\x0d\xb8\xbc\x7b\x28\x4d\x90\xce\x4e\xd0\x06\x44\x51\xcc\x0e\xbe\xf8\xca\xed\xb5\x29\xb0\xb4\x41\xd9\x2c\x7c\xc2\xe3\x97\x39\x7f\x90\x44\xc5\x77\xa6\xb7\x75\x1e\xd3\xe3\x14\x62\x06\x03\x04\xcb\xd2\x07\xf4\x88\xd0\xf9\xc0\x6d\xe1\xd7\xf4\x19\x22\x8f\xf0\xa8\xea\xa4\x02\xab\x88\x4e\x91\x23\xc2\x97\xb7\x50\xa1\xc0\x9f\x75\xac\x78\x3f\xd8\x79\xb7\xa9\xfb\x96\xaf\xda\x38\xb6\x5d\x6a\xa5\x63\x05\x9c\xd6\xd6\x15\x77\xb4\x0f\x50\x3d\xfc\x13\x68\x2b\x1b\x45\xb9\x4c\xa6\x51\xfc\x80\x69\xc2\xaf\x2b\x30\x66\xd3\x33\xc9\x4e\x8f\x89\xe4\xd8\x25\x02\x81\x2d\x27\x87\xf6\x3a\xdd\x15\xc0\x5c\xb9\xc3\x26\x3d\xb9\xf2\xc9\xf3\x1f\x50\xac\xe5\x7f\x44\xab\x9e\xff\xd8\x37\x94\xa3\x6e\x6c\x18\xe8\x8d\x32\xf7\xa7\x5a\x07\xe6\x3c\x3e\x59\xb8\x81\x0f\xf9\x52\x39\x4e\x57\xa9\x93\x86\x94\x6a\x8a\x56\x88\x60\xb4\x3d\x71\xfe\xeb\xb8\xd5\x58\x53\x27\xe8\xd7\x00\x3a\x79\x47\x69\xac\x4d\x34\xd9\x59\x24\x36\x2a\xfa\x36\x9b\x28\x6b\x3d\x10\x5d\x6f\x07\x4a\xff\x12\x9a\xbd\x02\x80\xdf\xda\x6d\x20\x5b\x6e\x93\x71\x8e\x22\x38\x9e\xf2\xe7\x62\xf8\x79\x4b\x01\x33\x99\xfc\x8b\xd0\xfc\x7b\x6e\x18\xa2\x8c\xfc\xb1\x64\xb7\x29\xf0\xc7\x7f\xbe\xad\xd3\xa0\x9c\x4a\x24\xaf\x8c\xd9\x0d\x18\x63\xbd\xa3\x3c\x65\xde\x51\x90\xab\x28\xcf\x8c\x8d\x23\x64\x04\x42\xaf\xa1\x55\xc5\x6f\x6a\x43\xff\x03\xcf\xb5\xc3\x28\x0b\x47\xb1\x29\x2c\x9d\x6d\x58\x71\xaf\x28\x89\xf1\x57\x5c\x20\x5d\xb5\x76\x39\x5e\xdb\xe1\xb5\x8f\x19\x09\x21\x08\x69\xfa\x85\xce\x24\xe4\x79\x67\x69\x8d\xbc\x08\x5a\x01\x4f\xd2\x71\x8e\x68\x36\x85\x3a\x15\x49\xb6\x2f\x0d\xa3\x5e\x92\x66\x98\x9b\x3b\x11\xcb\x8b\x81\xb2\x64\xa9\x9d\xa0\x7b\x67\xda\xa1\x4d\xf2\x51\xae\x2d\x7a\xde\x1d\xfb\x96\xec\xbb\x5e\x35\x6d\xd4\xed\xd9\x94\xdb\x57\x48\x04\xfe\x5a\xa1\x59\xfe\xba\x36\x81\x29\x33\x2d\xd3\x5d\xb1\x59\x01\x7f\x58\x45\x74\xf9\x0d\xc5\x26\xfa\x0d\x77\x97\x16\x63\xf3\x32\xa3\x17\xf1\x7b\xdf\xd0\x71\xfa\x0d\xef\x89\x34\x4a\xa2\xbc\x8f\x04\xdf\x8b\x34\xe0\x5e\xf1\x6b\x8f\x68\x48\xa3\xb8\x0a\x28\x39\x3a\x56\x6e\x6e\x47\x2b\xed\xec\xc4\xa5\xa5\x82\x6b\xf0\xab\x05\x1b\xc4\xf1\x63\xcb\xdf\x25\xe4\x66\x3f\xac\x4c\x17\xd9\xe9\xba\xe5\xdc\x7a\xce\x04\x15\x6e\xf8\x1e\xc7\x59\xec\x0a\x1d\x83\x9b\xcb\x74\x4b\xa4\xd1\xdc\x80\x6f\x58\xb4\x66\x20\xc3\x5f\x19\xe5\xd3\x2d\x95\x19\xbf\xef\x72\x2d\x9a\x2c\x23\x46\x77\xf9\x2b\x45\x95\x5b\xab\x32\x32\x70\x4b\xc6\x8a\xbe\x6b\xd5\x33\x8b\x59\xc4\x5a\x1f\x6c\x82\xa9\x00\x81\x27\x1b\x87\xa7\x03\xd3\xb5\x2d\x05\x27\x39\x16\x28\xc8\xc2\xb1\x26\x40\xa6\x28\x4c\xb7\x34\x4e\x87\x25\xf8\x24\x87\xf7\x7b\x73\x68\x12\x1b\xcb\xde\x74\xe4\xc6\x39\x4f\x6e\xfc\xd8\x99\x73\x3f\x4d\x2c\xe0\xcf\x68\x16\x9d\xd3\x56\xb7\xe7\xdc\xca\x7e\xb9\x3c\x50\xc4\x2f\xb0\x92\xcd\xf0\x9b\x26\xf1\xad\xa5\x51\x31\xca\x5c\x48\xc2\x7a\x61\x9a\x06\xbf\x51\x3c\xf1\x6e\xb4\x62\xf3\x22\xc2\x5f\x78\x64\x32\x43\x10\xf8\x4d\x23\x9a\xec\xff\x63\x4b\x68\x93\x92\x25\x9b\xe4\x76\x97\x67\x2a\x5c\x0b\x7c\x2a\xc5\x33\x3f\x4c\x0f\xff\x08\x89\x91\x16\x1e\x56\x8c\x8e\x43\xbc\x2f\xf9\x79\xa0\x5d\xf1\x86\x22\x3e\xb1\x53\x18\x83\xe4\x6b\x4b\xf5\x57\x48\xdb\x36\xe9\x5a\x84\x45\x1c\x29\x48\x65\xf8\xb5\x1b\x27\xa4\x43\x1b\x4e\xb5\xb6\x58\x32\xa0\xe4\x7d\x83\xce\x13\xe9\x4c\xd2\x35\x63\x88\xba\x9d\x4e\x36\xf9\x0f\x7a\xf7\x9a\x6e\xfe\x20\xdd\x4f\xc4\xcb\xef\x29\x7b\x85\x13\x5a\xc6\xe9\x14\x5a\xb6\x3c\x28\x08\x94\xf4\xe9\x1b\x81\xc2\x33\x42\x78\x89\xbd\x45\x34\x8b\xeb\x94\x72\x04\x45\x8f\x12\xc5\xdc\x75\x82\x8a\xf2\xeb\x06\x32\x70\x7b\xd1\xf6\xa3\xa4\x3b\xe5\x01\x40\xe5\xb5\x88\x14\xcc\x09\x7c\x85\xb3\x74\x9e\x53\xae\xab\xfb\xa4\xd9\xf5\xfd\x5a\x3d\xb3\x6f\x8e\xd8\x76\x2d\xaf\xf0\x73\x4c\x31\x8c\x8f\x35\xf0\x09\xda\x6b\x91\x8d\xbb\x12\x13\xd1\x22\x6f\x75\x14\xfe\xbc\xb5\xee\xf3\xbf\xa1\xcd\x96\x6c\x58\x80\x17\x7a\x88\x9b\x67\x3c\x74\x13\x64\x9b\xfe\xa9\x75\xb8\xd0\x52\x44\xd4\x93\x83\xde\x6a\x9c\xbe\x17\x95\xec\xad\x40\x19\x07\xfc\xc9\x58\xc9\x53\x5d\x54\x4d\xfb\xc5\x28\x8d\xd3\x1e\x6c\x81\xd5\xa4\x66\xbf\x10\xb1\xa8\x57\x2e\x03\x34\x85\xb3\x33\x49\x3f\x4d\x11\x8b\x51\x96\x70\xe7\x96\xdf\xa8\xb0\x37\x48\x93\xae\x59\xe3\xe6\x85\x93\xf1\x70\x2e\x6b\x75\x3a\x3d\x25\x44\xb6\x0b\x60\xcf\x3c\x67\x71\xe7\xb5\x58\x14\x58\x72\x22\x37\x49\x97\xc9\x84\x8f\xc0\x3b\xb5\x86\xe9\x00\xc0\x90\xed\x6a\x68\xc8\x75\x22\x2e\xee\x0e\xd6\x3e\xd6\xfb\x71\x54\xe1\x42\xb2\xf2\x08\xec\x73\x8a\xfb\xb8\x51\x2b\xa8\xf7\x11\x3b\x37\xec\x2f\x65\x69\xa2\x95\x53\x37\x94\x72\x6a\x3d\x67\xdb\x3b\xd3\x5e\x02\xbb\xc1\xdb\x34\x32\xa0\x8e\xdf\xd4\x42\xbb\x04\xde\x34\x8a\x27\x5d\xa7\x74\xd7\x23\x9d\xd6\x97\xbf\xc0\x69\xa2\xee\xe3\xf3\xb6\x46\x7d\xb5\xad\x46\xc1\x95\x0f\x8b\xd3\x51\x94\x4f\x78\xc5\xd9\x0b\xaa\x49\x76\x42\xd3\x71\x6f\x37\x73\xd2\x63\x9b\x14\x6b\x4a\xbe\xfc\xe6\xd8\x3b\x7e\xbc\xa3\xa8\x8c\x97\xdd\x79\xb0\x94\xa6\x71\x94\xc3\xcc\x0b\x25\x11\xb8\x1a\xfc\xba\x01\x94\x39\xdf\x2e\xa2\x81\xad\x10\x41\x8e\x29\x90\xed\x31\x05\x37\x78\xd9\xac\x99\x6e\xa4\x37\x1f\x2a\x1e\x7e\xed\xc1\xf9\x69\xda\xcd\x46\x4b\x4b\xad\xd6\x97\x66\x1c\xe9\x41\xd1\x47\xc6\x81\xef\x0d\x18\xc1\xc6\x88\x5a\xca\x5f\xe0\x08\xe6\x37\xee\x33\xbb\x91\x29\x57\x7a\xae\x37\xf3\x4d\x8d\x2f\x07\x5d\x98\x47\x1e\x4d\xb3\x68\xd1\xf0\xe7\xe8\xe1\xd8\x64\x5e\x62\xe4\x7c\xed\x38\x06\xb8\x2c\x8c\x4c\x4c\x0d\x42\x1c\x98\x62\x37\xaf\x46\x39\x7f\xe9\x12\x41\xd3\xb3\x49\xb8\xa6\x04\x55\x4e\xe9\x11\xf6\x29\x95\xe9\xa4\xbd\x34\x59\x4b\x97\xd5\x49\x73\x46\x79\x69\x9f\x19\xb7\x1b\xca\x3f\x9b\x14\x36\x2b\x4c\x44\xd0\x91\x96\x1e\xa2\xf0\xa9\x2f\x1d\xc1\x0a\x79\xa7\x6b\xa9\x0a\x64\xe9\xed\xc0\x43\x69\x4f\x8d\x3d\xe4\x96\x15\x52\xb1\xd0\x98\x54\x29\xea\xb7\xf8\x22\x60\x26\x59\x72\x1e\x91\xff\x3f\xd2\x82\xe4\x0f\xa8\x34\x99\x96\x46\x49\x4b\x81\x14\x4f\x29\xc1\xc2\x53\xb5\xa7\x23\xfb\x65\xd1\x84\xfd\x09\x85\x93\xda\x50\x06\x61\x3f\xd1\x68\xa7\x6b\x0a\x7b\x63\x5f\x0a\xed\x10\x12\x55\x1e\x2d\xcd\xc0\x0f\x7e\x53\xc3\xd9\xed\x9d\x69\x0f\x86\x7d\xc8\x06\xe9\x56\x33\x86\x42\x4c\xff\x97\xd6\x6d\xc3\x08\x13\x92\x60\x91\x65\x27\x4d\x64\xa6\x22\x63\x86\x3d\x79\x53\xab\xfc\x9f\x53\xbb\x28\x89\x96\x97\x6d\x34\xa1\xb8\x56\x3f\x1a\x2b\xcf\x07\xe8\x84\x20\x4e\x5e\x54\x16\x99\x5d\x13\x2d\x47\x32\x59\x47\x6c\x67\xa1\x33\x7e\x33\xae\x88\x70\xae\xd8\xac\x42\x9f\xdb\xd0\x32\x8b\xf5\xac\xf0\xe0\xf4\x21\xfe\x2b\x0a\x57\x88\xe6\xc8\x16\x50\x70\xf3\x4c\x50\x0e\xcb\xfa\xb0\x2b\xcc\x4c\xb8\x2c\x60\x35\x64\xe7\xb7\x14\xbb\xe9\x5f\x63\xa3\xe1\x84\xbc\xe5\xb6\xcb\x92\x19\xc5\x1c\xe2\x80\x7b\xde\x4e\x03\x6a\xc4\x89\x7f\x3f\xf6\xa0\x52\x72\x42\xf2\xb6\x3e\x2b\x96\x6d\x73\x44\xb8\x90\x3e\x9d\xdf\x28\xe0\x02\x8d\x26\xcd\xe0\x93\x2d\x37\xa6\x7d\xb0\xe3\x6b\xf7\xf3\x8a\x13\xb8\x73\xdd\x4b\xa6\x1d\xe6\x8a\xc3\x59\x29\xce\xce\x4a\xe9\x7e\x0c\xe7\x18\x42\x1e\x0f\xdd\x65\x59\x7b\x65\xc1\xb7\xd9\x46\x09\x8f\xe6\x6d\xe5\x3a\xf1\x78\x47\x91\x0a\x36\xc7\xca\x60\xe3\x26\x86\xf6\x2c\x71\x49\xc9\x99\xab\xb1\xcb\x2b\xc5\x4f\x7b\x17\xd0\x22\x1c\xce\x77\xb4\x09\xd9\x7d\xf4\xa5\x84\xcf\x4e\x6b\x5b\x7c\x19\x15\xe0\xe7\x2c\x5a\x7b\x48\x24\x6e\x28\xe5\x83\x30\x8b\x06\x96\xf0\x43\x58\xb3\xc7\x02\xaa\xe6\x25\xa7\x51\xea\xa8\x00\x03\xe2\xc7\x5d\xa7\x10\x82\xac\xfd\x75\x6d\xa4\xfb\xf5\x06\xa3\x16\xf2\x63\x5a\xab\x0e\xf1\x55\x46\xbc\x75\x97\x3e\xdd\x1e\x44\x31\xec\x3b\x70\xbf\x0f\x07\xfe\x2c\xfd\xb7\x34\x79\x14\x0d\xff\x86\x78\x9f\x59\x13\x47\xe5\x1e\x85\xa4\x05\x0c\xdb\x36\x2f\x35\x41\xb4\x87\x59\xba\x14\x21\xbd\x70\xfc\x0a\x5f\x33\x04\xbe\x55\xd5\x4f\x47\x19\xf2\x1d\x19\x6d\x97\x7f\x83\x8a\xe6\x52\xb0\x05\x0d\xe6\x20\xa5\x63\xbf\xa5\xae\x07\xde\x91\xe9\x7a\xa3\x57\x74\x9c\x26\x3d\x95\x32\xbc\xa7\x9c\x52\x5f\xd5\x92\x13\x7f\xad\x39\x4b\x45\xbe\xa7\xfc\x5c\x64\x16\xf7\x55\xde\xf5\xe0\x67\x68\x59\x53\x3b\x6e\xfc\x38\x4f\xac\x69\x1f\xbc\xf1\x73\x1d\x05\x70\xd9\x1c\x2b\x61\xf5\x7b\x63\x8f\x7f\x83\x16\x3e\xdd\xe5\x4b\xbf\x08\x1d\x72\xb9\x2a\xb5\xd3\x37\x91\xff\xd2\x93\x5f\xfa\x4f\xd0\x67\xa7\x9b\xf2\xcc\xe7\x3a\x7e\x84\xd8\xeb\xa7\x79\x41\xf4\x22\x11\xfe\xa2\x8f\xd0\x26\x3f\x0a\x6e\x33\xe3\x60\xcf\x0d\x6a\x4b\x5d\x1b\xc6\x91\xf3\x30\x97\x11\x3c\xfd\x15\xbf\x71\xc0\x9e\xa5\x54\x88\xc4\xd8\x00\x00\x56\xf2\xeb\xaa\x55\x7f\x6a\xd9\x3e\xc9\x69\xa1\x39\x66\x29\xb2\xbf\xad\xa2\xfe\x6b\x26\xeb\x12\xf5\x88\x48\x05\x6c\x2f\xa8\xa0\x76\x60\x6d\x0b\x79\xf1\x51\x65\xad\x9d\x45\x49\x8f\xdd\xdc\x10\x60\x6f\xe2\x66\xf0\x1b\x55\x42\xac\x46\x99\x2d\xcc\xb0\xa5\xf4\x69\x58\x7e\x91\xdf\x04\x4f\x7a\xf0\x4b\x4e\xd9\x4a\xe1\x7d\x72\x9c\x51\x82\x4b\x16\x8f\x38\x6e\x43\x3f\xea\xf5\x63\xd2\x00\x2c\x7f\xbd\xd3\x28\x76\x98\x04\xa4\xe6\x22\x77\x5e\x71\x8f\x6a\x70\x16\xf8\x4c\x3b\x5f\xb5\x26\x73\xa4\x4c\xec\x8a\x93\x4a\xc7\xfe\x2e\x7d\x9e\x80\x10\x25\x07\xec\xa7\x23\x4f\x91\x65\xa2\xde\xba\x4f\x84\x6e\x06\x4a\x46\x7d\x23\xf0\x88\x90\x28\x8e\x49\xed\xb9\xcc\x1f\xcb\xea\x15\x67\xf7\x5b\x24\x84\xca\xaf\x15\x2c\xa8\x48\x57\x4d\xd6\xdd\xa5\x5c\xe7\xde\x55\x06\xc1\xb7\xd4\x18\x7f\x47\xc7\xfb\x58\x9c\x0b\x74\xa3\x3d\xf0\x27\x44\x45\x23\x90\xcd\x68\x5d\x80\x2e\x7f\xef\xc7\x01\xc8\x9f\x9f\x39\xd0\x8e\x2d\x63\x42\x58\xf0\x34\xd0\xbc\x6b\x6c\x44\x11\x47\x11\x68\x84\x19\x15\x7d\x9b\x14\x51\x18\x95\xa7\xe5\xc2\xbc\x17\x3b\x74\xfe\x09\xb0\x81\x62\x17\xcf\x26\x82\x5a\xd1\xb7\x69\x86\x9d\xc0\x40\x8e\xc0\x73\x94\x2e\x8e\xbd\x56\xa6\xcd\xcc\xa4\xda\x4a\x27\x70\xe4\xe0\xfc\x82\x45\x3f\xbf\x26\xc4\x93\x88\x00\xd6\x85\x21\xe6\x29\x37\x8b\x63\x9a\x85\x1e\x9c\x76\x2b\x49\xad\x2a\x25\x8d\xf8\x0f\x3f\x97\x4f\x95\x9f\xc7\xfe\x0b\x81\x97\xe2\x5a\xfd\xdb\x1d\xdf\x08\x03\x39\x18\xf3\x85\xdd\xeb\x5a\x3f\x71\xec\x8b\xd3\x34\xeb\x32\x0b\x8b\x7e\x3a\x9f\x61\x81\xf7\x14\xba\xd8\xa4\xa0\xbc\xbf\xdd\x4b\x5b\x6a\x34\x79\x82\x1e\x38\xbf\x56\x9e\x5e\x51\xb2\x44\xa4\x29\xed\x01\x8e\x73\x90\x5f\xab\xab\x4a\x96\xf3\x87\x5a\x62\x6e\x35\xf7\x77\xd7\xcb\x2b\x54\x5c\xf9\xcd\xed\x00\xb1\xd3\xff\xf5\xcc\xa7\x3a\x5e\x86\x32\x7d\x8a\x68\x2f\xa8\x0f\x27\xc1\x9d\xc4\x3a\x7c\x5d\x8b\x50\x3f\x4c\xf1\x1d\xf5\xd0\x11\x4e\xd4\xb1\x1e\x76\x76\x74\x38\xc4\x7a\xc5\x39\xfd\x21\xd6\x18\xb6\xd4\xbb\x0d\x5e\x2b\xfd\x51\xbe\x68\x92\x2e\xd7\xcf\x62\x2e\xad\x46\xc0\x27\xeb\x0a\x78\x33\x44\xac\x4f\x5c\xb7\x9c\xe5\xc5\x95\xa6\x86\x97\x93\x12\xed\x49\x81\xdf\x08\x6e\x43\x19\x09\x5e\xab\x7d\xc3\xc2\x74\x59\xfe\x44\x85\xeb\x89\x4b\x0b\x85\x2e\x53\x84\x6d\x9a\x94\x0e\x96\xfc\x37\x31\xf6\x05\x8b\x4b\x80\x30\x3f\xe7\xd5\x9f\x92\xa2\x3f\xca\x23\xe3\xf4\x27\xe8\x46\x01\xe1\x82\xbd\xc6\xaf\xd5\x9c\x6d\x94\x44\xf9\x5a\x4e\x8c\x41\x46\xb9\xd0\x46\xe4\xdc\x8d\xc2\xa9\x76\x63\x14\x24\x8c\x6f\xf6\x0c\x4d\x56\x24\x36\xdb\xae\x60\x0a\x17\xd5\x24\xff\x8f\x69\xbf\x00\xbf\x77\x87\x96\xb0\x33\x82\x9f\x39\x20\xaf\x11\x74\xf0\xc7\x47\x9d\x80\x50\x37\xca\xbf\x32\x8a\x6c\x21\x78\x2a\xa4\xa3\xdf\x53\x26\xfc\xdf\xfb\x58\xd6\xd3\x6a\x54\xf4\xa3\x64\x4a\xa9\x1a\xa0\x9b\x47\xcf\xf2\x3f\x3e\x4e\x42\xd4\xa8\x28\xcf\xab\xe1\xe9\x5d\x3d\x5e\xb8\xae\xaa\x9e\xb0\x9f\x66\x23\xf0\x0e\x84\xfc\xe4\xd1\x9f\xd0\x9d\x15\x2a\xe5\xa3\x0e\x0e\x46\xe2\x09\x36\xc7\x9f\xa1\xbb\x0e\xca\x16\xb2\xd7\x4b\x63\x4f\x0c\x7b\xad\xe1\xc9\x93\xfa\x02\x3f\xf9\x4d\xf4\x84\x95\xa6\x99\x8d\x6d\x58\x64\x69\x12\x85\x3c\x38\x41\x6b\x07\x9a\x8d\x32\x93\x6f\x39\xae\xd8\xfb\x5a\x77\xf5\xc3\xda\xea\x9c\x39\xd0\x0e\xa3\x22\x7a\xd9\x26\x6c\x3e\xc9\x87\x4c\xe0\xe7\xe0\x67\xb4\x0f\xc1\x49\xde\xab\xd8\xc5\x97\x6b\x33\x3a\xd7\x42\x32\x85\x9d\x50\x51\x6e\x82\xea\x23\xfc\xd5\x7d\x05\xb2\xfc\x60\x4b\x3f\x3d\x2c\x72\xf2\x11\x63\xc6\x27\xbe\x5a\xe8\x9f\x5b\x63\xdf\xec\x6c\x3b\x8b\xc0\x19\x3a\xe4\x75\x5e\x66\x67\x9d\x64\xf0\x27\xb5\x90\x3e\x61\x3d\x61\x3c\xd6\xf2\xc4\xec\xb1\x37\xb2\x61\xe5\x0f\x09\x15\x3a\x6e\x68\x16\xe3\x06\x85\x57\xfe\x93\xe0\xe3\x84\xf5\x7a\x99\xe9\x8e\xca\x9b\xe0\x67\x0f\x2d\xaa\x3f\x90\x50\x33\x14\x40\x9c\xed\xb7\x2e\x82\x2f\xcd\x94\x67\x10\x51\xc1\x0e\x4e\x4b\x97\x91\x56\x9e\x74\x1c\x3f\x0e\x75\x90\x2f\x47\x71\xcc\xe3\x30\x97\xae\xfa\x7e\xfb\x45\xa5\x2f\x37\x8c\xcd\x28\x8f\x16\x63\xab\x64\x1f\xb0\x53\xf9\xb5\x1a\x76\x2f\xa6\xe9\x72\xcb\x37\x7d\x71\x9c\x8a\x5c\x75\x43\x69\x62\xb3\xcc\x14\x06\xb9\x1c\x1a\xcf\xf0\x7e\xe0\xd7\x6e\x28\x97\xaf\xda\x61\x01\x2e\x11\xaa\x0b\xf4\xc3\x10\x4c\x27\xa1\x00\x0b\x04\xf3\x91\xc0\xcb\x18\xbc\x36\x7e\x5c\x99\x9e\xf6\x46\x31\x7c\x42\xc8\x73\x6a\xac\xbb\x19\xd7\xb5\xb3\xfb\xeb\x0a\x16\x48\x1d\x29\xca\xe9\x51\xa7\x1f\x55\x82\xcd\x47\x91\xd8\x30\x96\x10\x71\x5a\x80\x85\x0d\x5d\x69\xd3\xcb\xac\xd0\x4d\xd1\x6f\x7e\x2d\x50\x96\xff\x10\xce\x17\x3b\x1d\xba\x52\xe1\xf3\xfb\x29\x66\x2f\x8b\xba\x51\x56\x5e\x82\xeb\x60\x62\x25\x3b\xab\x5e\x2f\x21\x1b\x38\x59\xa7\x97\x86\x36\x8b\x6c\x12\xda\x2e\xf5\x7e\xf1\x7d\xec\xb0\x86\x50\x73\x74\xec\x09\xf1\xdb\x3a\x8a\x14\x7d\x7d\xfc\x29\xb5\x37\x06\x83\x51\x12\x85\xc8\xbf\xb5\x24\xd7\x59\x4d\x2e\xbe\x40\x0f\x80\x5f\xe3\x28\x76\xc4\x84\xd9\x59\x81\x2d\x06\x5e\x73\xae\xc0\x7e\x42\xca\x87\x29\x3d\x3a\x1d\x37\x02\x45\x1e\xf3\x4d\x95\x9e\x89\x12\xe9\xc4\x00\x0e\x74\x45\x35\xd9\xaf\x6b\x2e\xfc\x2b\x4d\x30\x95\x30\x25\xd8\xcb\x44\x65\xa2\x56\xfe\x66\xe4\xab\x0c\xdf\xc2\x4f\xf8\x46\xa3\x9b\xed\xc0\x44\xc9\x52\x66\x06\x56\x4d\x63\xcf\x2a\x27\x81\xb3\x3a\x5a\xa5\x71\x6c\x98\xf7\x8c\x50\xdb\x42\x5a\x87\x72\xea\x62\xc5\xb9\x49\xf1\xcc\x5a\x1d\x47\x7e\x0f\x6d\x62\xb2\x28\x85\x24\xa9\x9b\x5b\x28\x00\xb0\xae\x6e\x19\xd8\x8c\x14\xf6\x13\xb4\x4b\x10\x3d\x36\xcb\x6c\x5b\x63\xb6\x0e\x4e\x3f\xdb\x7e\xfa\x53\xd8\x06\x78\xda\x3c\x8c\x53\x9f\x7a\xc8\x9b\x52\x1d\x9c\xf6\xf0\xe6\x85\xe9\x05\x4e\x06\x27\x3a\xfa\x90\xa2\x33\x1e\x29\xe8\x37\xf0\xa3\xd0\x48\x9d\xa0\xc4\x10\xff\x6a\xaa\x43\x1d\x1a\xbc\x39\x8e\xf0\x89\xb4\x63\x77\xa7\xb5\x77\xaf\x80\xf4\xf5\x16\x78\x80\x22\xa2\x7b\xd6\x33\x07\x44\x40\x82\xc8\x8f\xd8\xeb\xe0\x54\x62\x4f\x5c\x85\x61\x83\x73\x98\x28\x93\x4b\x9c\x4b\x37\xb8\x73\x25\x43\x38\x4a\x71\x9d\x06\xa9\x3b\x7a\x6e\x57\xcf\x79\x5f\xad\x26\x69\xa6\x7a\xd3\x4e\x3b\xdb\x8f\x3a\xce\x54\xe9\x18\x99\x69\x95\xf7\x47\x22\xb3\xc2\x86\xd4\xc7\x3a\xfb\xe6\xda\xab\x59\xc4\x98\x15\x99\xa0\x57\x80\x89\xbb\xa4\xa6\xb4\x13\x74\x0f\xf1\x90\x71\x77\xc4\xc5\x9c\xda\x40\x77\x2a\xbf\xc2\x8e\xb2\xed\xad\x67\x9e\x67\x88\xda\x4d\x3a\x1f\xb0\xef\x21\x74\xc2\xaf\x03\xc5\x8e\x82\x7b\x02\x0e\xd4\x3b\x0a\x12\x72\x45\x55\x21\xe4\xc7\x6f\x96\x85\x42\xca\x3a\x82\xaa\xc9\x7f\xa2\x09\xcc\xbe\x68\x8a\xc2\x72\x9d\x86\x4e\xdc\xa9\x40\xb5\x92\x4f\xa9\x96\x9d\x79\x39\x7a\xd9\xd0\x16\x43\xa3\x1b\xf0\x61\x7e\x5d\x21\xe9\x94\x65\xf9\x4e\xcf\x04\x3b\xac\x87\xca\x37\xf5\x84\x18\x17\x8f\xce\xd7\xff\x45\x17\x2f\x38\x4f\x0d\x31\xa0\x08\x56\xb1\x11\x41\x8a\xff\xa1\x07\x83\x99\xe1\xd0\xd5\x02\x48\xb4\xb7\xad\x7b\xba\xd2\xb6\x4e\x03\xbb\x70\x29\x4a\x10\x30\x80\xa6\xba\xa7\x58\x60\xf7\xf4\x11\x1a\x2d\x57\x99\xdd\x15\x47\x8c\x46\x54\x72\x16\xf6\xa3\xc2\x86\x45\xab\x62\x8e\xed\x7b\x42\x47\x83\x27\xea\x3d\xa6\x5e\x8a\x66\x90\x98\x64\x69\x31\x17\x2f\x33\x73\x57\x01\xfd\x63\x93\x17\x0f\x51\x50\x40\xec\xda\x0e\xcf\x74\x84\x8b\x4b\x81\x07\xcd\x81\x8d\xc1\xfa\x47\x78\x16\x38\x5a\xff\x4e\xc7\x8f\x98\xff\xcb\x47\xd6\x09\xf8\x89\xea\xe1\x0c\xf6\x86\x9b\x18\x78\x51\x12\xf0\x0f\x25\xdb\xf2\xa6\xb4\xeb\x14\x08\x58\x65\x63\x5c\xd9\x27\x2e\x6b\x08\x4d\x6c\x27\xfd\x85\xb1\xaf\xbd\xeb\x7b\x7b\xf2\xec\x35\x65\xc9\x35\x55\x43\xac\x91\xde\x47\x98\x0e\x44\x26\x41\xac\xc4\x3e\xd6\x70\xac\x01\x24\x94\x8d\x94\xd2\x29\x36\xd6\x77\xc7\xbe\xd6\xbf\x1e\xf8\x19\xfa\x95\xa6\xbf\xef\xc5\x26\x8c\x98\x22\xc6\x13\x5b\xfa\x13\x99\xde\x7a\x14\x79\x99\x83\xed\xa4\xdf\xe9\x92\xb0\x99\x03\x3c\x12\x43\x17\x45\xe4\x55\xca\xbf\x47\x97\xed\xc6\x58\xd9\x08\x5f\x02\x22\x57\xd2\xb6\x32\xcf\x96\x29\x47\xcb\x09\xac\xbf\xd5\x94\xce\xe5\x6b\x83\xc5\x14\x94\x4b\xb4\x78\xd0\x83\xe1\xd7\x0d\x88\xff\x76\xde\x8f\x68\x27\xe1\xbe\xe0\x87\xfd\x40\xe1\x0f\x71\xb4\x23\x72\xe9\x16\x48\x1e\x46\x65\xb9\x9c\xb3\xfa\x84\x33\x53\xdb\xe7\x8c\xd5\xdc\x5e\x1d\x66\x69\xd7\xa1\x2a\x98\xb6\x81\x4d\x25\x1c\x8e\xad\xbf\x6b\x76\xb6\x6d\x07\x8b\x99\x09\x65\x70\x2c\xb8\x48\xba\xab\x22\x7c\xb6\xb5\xa6\x79\xba\xcc\x31\xa3\xbc\xb0\x4e\x27\x49\x50\x5c\xf4\x65\xe2\xb2\xdf\xa4\xff\x6f\x5f\x8a\x72\xb4\x29\x39\x01\x0c\x54\x9b\xec\xa2\xea\xe8\x5e\xac\xf4\x69\x65\x9d\x27\xa3\x2c\xb7\x13\x74\x2a\x63\x65\xfd\x07\x45\x93\xf9\x80\x60\x86\x38\xba\xdf\x6e\x68\x63\xcd\x91\x9a\x52\x0c\x75\x1d\x47\xbe\x6c\x75\xb4\x06\x32\x3d\x1c\xec\xed\x6b\x0d\x73\x8c\x45\x13\x2e\x53\x4a\x8a\xbc\xf6\xce\xd8\x5b\x5b\x22\xb3\xc4\x49\xbc\xad\xf3\x69\x5f\x54\xf4\x4d\x36\x30\xa1\x1d\x51\x2b\x22\x9f\x2c\x1f\x1c\x72\xf1\x6f\x51\xf4\x75\x82\xcd\x5e\x57\x7c\x43\x41\x02\xbe\xb5\xe5\x98\x5d\x7e\xd2\x43\x79\xaf\x55\x06\xba\x27\xb5\xe8\xdb\x69\x4c\x87\x44\xbc\xda\xcb\x20\x5d\xc6\xdc\x4b\x0a\x00\xaf\x4c\x7e\x7d\x4c\x7b\x01\xe9\xec\x09\x32\xc6\xe0\xd7\x63\xad\xe7\xa0\xe2\xd5\x7f\xc0\xda\xe2\x2f\xd4\x02\xfe\x7f\xa1\x33\x11\xce\x99\xd1\xcc\xba\x4b\x5b\x19\xb9\xd2\xdd\xc0\xab\x38\x30\xff\x01\xbf\xf7\x2e\xf2\x2e\xd1\x7d\xde\x32\x41\x3b\xe4\xb2\x6c\xdf\xf3\x1f\xa4\x79\x98\xae\x22\x66\x29\x45\x11\x19\xc9\xbd\x49\xdf\x8a\x6f\x7a\xa7\x69\x0e\xdc\x25\x67\x7b\x77\xce\x89\x84\x88\x3f\x68\x37\xaa\x04\xee\x08\x8e\xda\x4d\x0e\x38\x9e\xe2\xb5\x19\x54\xac\x10\x94\xfe\x8b\xff\xe1\x19\x62\x1d\x7d\x2b\x52\xbd\x2b\x63\xdf\x24\xb9\xa2\xce\xa4\x17\x47\x79\xf1\x24\x3d\x61\x0c\x94\x5e\x1d\xab\x03\x0a\xd5\x1a\xb6\xc4\x1e\x1c\x56\x68\x20\x5f\xc7\xfc\x10\x87\xf5\x11\x3c\x30\xa4\x9a\x70\xb2\xc7\x70\x08\x83\x40\x54\x45\xa0\xbf\x62\x4d\xff\x19\x2f\x30\x64\x39\x78\x76\x6e\x50\x54\x3e\x22\x11\x02\x50\xea\xbd\x6f\xe3\x71\xa3\x60\xdd\xb1\xee\x5d\xde\x77\x74\xb6\x7d\xc6\xa3\x94\x66\x67\x95\xb2\x6a\xb9\x72\x98\xc5\x42\x41\x18\xdf\xf1\x11\x2d\x5b\xe7\x45\x77\x50\x24\xe1\x27\xd7\x1d\x98\xc4\x16\x36\xcb\x04\x77\xc2\x26\xe8\xa8\xa5\xc4\x11\x5d\x03\xac\x8a\x68\xc5\x92\x4e\xc7\x21\xa7\xef\xe9\x86\x6a\x01\x7b\x77\x23\xff\x81\x45\x06\x6e\xf4\x99\xa6\x49\x63\x38\x0a\x97\xd3\x54\x59\x00\x31\xd2\x82\xdf\xac\xfb\xdc\xae\xcc\x25\x78\x1a\xe5\x88\x71\xce\x56\x0f\x73\x25\x91\x63\xf1\x82\xc9\xe9\xa8\xc8\x23\x52\x8c\xa0\x67\xe9\x50\x47\xee\x47\x5d\x08\x7e\xb1\x01\x68\x64\x5f\x2a\x32\x83\x9e\x79\x16\xb1\x64\x9c\x57\x51\x75\x90\xa3\x8b\x81\xef\x81\xdb\xd8\x42\xbe\xa4\xbc\x13\xd2\x98\xa0\x2f\xc5\xbe\xbe\xa6\x84\x6a\xee\x06\x1a\x87\xe0\xa7\x60\x03\x93\x90\x38\xc4\xa4\x22\xde\x71\x41\x2c\x82\xfe\x74\x73\x18\x30\xc5\x43\x79\x81\x4f\x79\xd5\xc8\x15\x13\x8f\xec\x27\xd4\x2c\x51\x0c\x3f\xd0\xe3\x04\x47\x07\x0b\xfe\x9a\x3e\x6a\xde\xc1\x62\x54\xa9\x8f\xc8\x65\x5c\xc6\xf2\xc7\xce\xff\x48\x29\x78\xfe\x84\x08\xe3\x82\x00\x2c\xd7\x19\xbf\x1e\x7b\x03\xac\xfb\x74\xb9\x08\x9b\x0f\x90\xda\x0d\x7f\xb7\x86\x6b\x5c\x50\xe2\x25\x43\xd2\x3b\x06\xaa\xba\xbc\x08\x96\x6d\x1e\x57\x34\x9c\xa5\xb8\xb7\x26\x73\xc5\x3d\x4a\xc4\x4b\x4a\xc2\xe9\x4d\xfc\x91\x94\x17\x0d\x70\xba\xa1\xc9\xe2\xc8\x0c\xb6\x92\xb0\x81\x7f\x41\x97\xa4\x62\x9b\x75\xdd\xb5\x49\x32\xbb\xe2\x29\xd8\x24\x2a\x28\x23\xf5\x86\x01\xed\x30\x4b\xc3\xd8\x44\x03\x80\x0c\xb1\x55\x18\xba\xad\x07\x83\xe8\xff\x7e\x7d\xec\x35\xd9\x6e\x34\x18\x49\xcc\xb5\x87\x69\x51\x66\x33\xac\x56\xc1\x6e\x01\x74\xdd\x1f\xe7\x1c\x30\xbf\x30\xdf\x1e\xa6\x69\x66\xb3\x96\x57\xc3\x60\xbd\x6f\xf1\x69\xaf\xd3\xf7\x88\xa2\x9e\x99\xd0\x09\x36\xe1\xf8\x61\x24\x3c\xbf\x51\x63\xc5\xcc\x9a\xb8\x58\x6b\xb5\xbe\xe8\x85\x5c\x94\xdc\x7d\x1d\x67\x43\xd8\x21\x93\xf5\x24\x51\x16\x53\x16\x25\xac\x71\xaf\x02\x88\xf4\x1d\x74\x13\x17\x7d\x6b\xc0\x44\x56\x46\x9e\x32\x84\x84\x7d\xba\xf3\xd6\xf4\x7e\xdf\x17\x1c\x86\x6e\x10\xf6\x32\xdb\x4b\xa9\x1c\x9d\xdf\x24\xbc\xc2\xe6\xa5\xb1\x9f\x1e\x93\x82\x65\x3f\x8d\xcb\x00\xb2\x9b\x76\x03\x22\xed\x6d\x9c\xde\xce\x47\x62\x76\x56\xda\x87\xb4\x03\xc4\x13\x9c\x7e\x19\xe0\xd0\xaf\x8f\xbd\x6f\xed\x75\x25\xca\xb7\x63\xdd\x33\x8d\x2e\x68\x7d\xe8\x5b\x38\x76\xf9\x4d\x83\x3e\xf4\x42\x7b\x29\xcd\x06\x9c\x6d\xb2\xe3\xb2\xd2\x7b\xff\xb6\xf2\x1a\x97\x21\xb8\xed\x4e\x4d\x2c\x4c\xef\xdf\xbc\x02\x96\x1a\xe2\xc6\x65\x85\xec\xf8\x73\x55\xeb\xfe\xcf\x9a\xd4\xf8\xe7\x1f\x0f\x0f\x4d\xec\xce\xf2\x9a\x9d\x53\x9c\x2f\x70\x36\x34\xc4\xf1\x3e\x7d\x0d\x80\x39\xff\x13\x9d\x8c\xd8\xf6\xdb\xd1\xdb\xc1\x8f\xde\x49\xc7\xa7\x48\x8a\x96\x77\x46\x54\x33\x34\x03\x2d\x8c\x47\x5d\x9b\xef\xa4\x47\x20\xbc\xbd\x72\xbd\xe1\x35\xea\x15\x1c\xfb\xc7\xd5\x67\xfc\xf1\xd8\x7b\x88\x61\x9f\x7a\xbe\xa7\xcb\x61\xcf\x05\x13\xfb\x7f\xfd\x4b\xdc\x5b\x3b\x56\xf3\xb6\x39\x38\xdd\x8e\x12\x33\x1c\x66\xe9\x30\x8b\xa8\x05\x7f\x50\x32\xd8\xff\x41\x69\xde\x00\xb1\x86\xf8\x73\x55\xf9\x66\x46\xc9\x8a\xcd\x0b\x3a\x25\x76\xb6\xbe\x24\x1a\x63\x7f\x10\x78\x89\xa2\x3f\xa8\x38\xc8\xe8\x99\x17\x2d\x32\x74\x3f\x7f\x8b\xae\x8a\x39\x55\xb4\xe0\x84\x5f\xa5\xee\xf7\x6d\x05\x08\x5c\x2d\x23\xe9\x30\xb3\xa6\x3b\xe5\x67\xab\xdf\x3e\xa6\x39\x1a\xaf\x29\x7b\xa0\xaf\x8e\xf5\x99\x4d\x9f\xc9\xe9\x64\x43\x24\x7a\xb6\x9d\xa7\x03\x0b\xc4\xac\x37\x9b\xf9\x37\x9a\x2d\xfe\x6f\x54\xa5\xb9\x12\xd9\xd5\x5d\xf4\xe4\x90\x1f\xdc\xa1\x6b\x01\x8d\xf4\x1e\x3d\x21\x84\x14\x72\x12\x17\x71\xd7\x73\x8a\xf5\x7e\x04\x3b\x19\x19\xf5\x4d\x5d\x83\xc2\x3c\x00\x01\xfb\x9e\x52\x4f\xa9\xff\xea\xe7\x67\x0e\xb4\x13\xdb\x4b\x8b\xf2\x19\xa2\x03\x22\x15\x60\xf9\x11\x52\x19\x2a\xe6\x60\x1a\x2e\xcb\x74\x1b\xbd\xf2\xb3\x74\xdf\xf9\x75\xe5\x04\xcf\x7a\x26\xb3\xec\xe6\x86\x78\x73\x44\x91\x17\x8e\x34\xca\xfd\x2c\xc5\x76\x15\x7f\x81\x66\x22\xcb\xe1\xf1\x1b\x77\xde\x44\x04\x76\x5d\xf5\x30\x1f\x94\x0f\x10\x9d\xe2\xd7\x63\xdf\x6f\xca\x32\xc7\x8b\xc7\xc2\x79\x60\xdd\x2f\xa2\x07\x3a\x8f\xfa\x99\x68\x19\xe3\x2d\xdb\xc9\x21\x60\x7e\x4b\x05\xcf\x6f\x35\xb4\x90\xf6\xb7\x4d\xc1\xc7\xc2\x84\x52\xa7\x3e\xaf\xf4\x32\x36\xb4\xa0\xd4\xbd\x5a\x11\xfb\xc2\x0b\xed\xc2\x44\xab\x86\x4d\xd8\x31\xb0\x7f\x5b\x8d\x94\x8f\x6b\x48\xf9\x25\xb5\x9c\x97\x6c\x56\x44\x74\xea\xa2\x05\x50\x09\x3d\x6c\xb9\xab\xcc\xb5\x6f\x2a\x39\x72\x9b\xf4\x6c\xbc\x0c\xa8\xe4\x21\x31\x7d\x08\x94\xd7\xc0\x31\xd5\x4c\xec\x45\x71\xc1\x09\x08\x96\x04\x2b\x49\xf2\x1b\xa5\x99\x18\x75\xad\xc9\xb7\x7b\x63\x38\xb6\x66\x44\xea\x74\x15\xad\x29\x57\x0f\x3a\x25\xf7\xd3\x81\xb7\x20\x3f\x31\x56\xc4\xff\xf3\xaa\xae\x59\x4c\xd3\x01\xc9\xa7\x8b\xdb\x28\x62\x1a\xbf\xae\xf1\xf4\xca\xd5\x34\xb4\x19\x99\xf9\x46\x2b\x56\xa9\x8b\x9e\xd6\x2a\x69\xa7\x83\xc7\x95\x01\x5b\xd2\xb5\xf9\xa2\x49\x96\x5b\xbe\xb9\x74\x5f\x0b\x92\xdf\x77\xb9\x56\x92\xae\x58\xf1\x48\x40\x9e\xf1\xcf\x55\xce\xf1\xcf\xdd\xa4\x3a\x1a\x94\x31\xd2\x66\xf1\xda\x84\xd7\x50\xc6\x00\x4e\x46\x05\x7e\xc0\x7d\xc3\x75\x25\x96\x4d\x66\x93\x96\x3f\x83\x36\xb4\xaf\xf9\x86\x53\x50\x59\xb1\xd9\xa2\x29\xa2\xc1\x84\x92\xf9\x38\xa7\x74\xde\xef\x07\xaa\x4f\x77\xc5\x4d\x81\x48\x8b\x7e\x09\xcb\xd5\xcd\x68\x1d\xe2\xe9\x23\xc5\x11\xa9\x08\xfd\xa5\x71\x37\x4a\x7a\x24\xb2\x80\xf4\xb2\x1f\x78\x1f\xc2\xef\x53\xcc\x42\x83\x99\x45\x3c\x2b\xca\x61\x78\xa0\x1a\x8a\xbf\x7b\x5d\x51\x51\x2f\xa2\xcd\xca\xd3\xfd\x32\xcd\x28\x0c\x61\xfa\xcb\x34\x5c\xb0\xd7\xe5\xfd\x70\x56\x72\x65\xb6\x26\x5c\x64\x47\xa7\x35\x21\x80\x73\x28\xee\x6f\x2b\x88\xc5\x6d\x15\x9b\xc2\x2c\x2a\x6c\x16\x19\xaa\x50\x30\x22\xbb\x86\x92\x51\x14\x75\x7d\xa7\x68\x53\xc5\xac\xba\x2a\xeb\xcc\x81\xf6\x20\x5d\x54\xd6\x14\x47\x35\xcf\xb7\xee\x27\xf8\x34\xb9\xf0\x8d\x7a\x65\x81\xee\x01\xb1\x17\xb8\x7e\x11\xe1\x80\x26\xbb\x94\xa5\x34\x73\x66\x69\xf8\xc9\x1f\x69\xa7\xe5\x8f\x6a\x3f\xed\xe9\xf2\x7f\xec\x64\xeb\x79\x6f\xc6\xaa\xba\xe1\xe4\x9a\x3f\xbf\xf9\xe1\xd8\x23\x89\x2e\xb8\xf5\xd1\x2f\x53\xd7\x7e\xcb\x8b\x8f\xff\xe4\xa6\x32\x96\xba\xd9\xd4\xbd\x1c\x9a\xbc\xc8\x80\xd6\x16\x91\x4a\xc5\x97\xdc\x50\xee\xc1\x67\x1a\xac\x14\xe6\xdb\x90\xd3\x10\xbb\x13\xd7\xa7\x59\x98\x76\xa8\xe5\x46\x99\x0c\x13\x0d\x2a\x6d\xc6\x8b\xf4\xc4\x45\xd2\xc4\x43\xc9\xe3\x30\x4d\x26\x55\x14\x3d\xcd\x65\x20\xf6\xe3\x69\xba\x3a\x14\xf0\xf7\x69\x4d\x8b\x6c\xc3\x63\x2a\x65\x29\x6c\xb6\x64\x33\x3b\xa1\xb4\xe5\x6e\x54\xfa\x39\xea\xa4\x7b\xdb\x67\xd6\x51\x5e\x64\xa3\xbc\x98\xf0\xbd\xbc\xbb\x63\x25\x6a\x73\x5e\xa1\x20\xa7\x3a\x5b\xf3\xac\x7d\xd4\x61\xcc\xd2\x97\xc8\xda\x81\x75\xd1\x78\xb4\x46\xf1\x46\xc6\x6c\x0d\x14\xe8\xa5\x28\x0f\x4d\x0c\xc8\x89\xcb\xfc\x1c\x35\x0a\x89\x81\x3c\x92\x32\x0d\x95\x8e\xab\x6c\xa6\x61\xd4\xe3\x7b\x8b\xbf\x9e\xa2\xbd\xcb\xaf\xd7\xbd\x4f\xe1\xca\x88\x7e\x95\x1c\x3e\x2d\xa7\xf4\xb5\x51\xa1\x7d\x0c\xd6\x6c\x6b\x6b\x61\xe3\x05\x00\xe4\x4b\x63\x5b\x30\x4a\xc6\x8d\x86\x9d\x9f\xd7\x69\xdc\x61\x34\x44\x26\x91\x17\x09\xe4\xa2\xc9\x1d\xae\x67\xb2\xae\x90\x01\x9c\xc5\x91\x03\x62\x9f\x53\xa7\x61\x98\xa5\xa3\xb0\xcf\xe6\x1c\xdc\x50\x22\xc5\x12\x69\x2e\x6d\x5d\xb2\x28\x07\x7b\x36\x89\xb0\x93\x7d\xa6\xdf\xf2\x7e\xab\x35\x30\xcd\xf3\xf3\xed\x61\x6c\x18\x3a\xc6\xd6\xfe\x81\x1a\x1b\x9f\xd4\xa8\x28\x93\xc5\xa9\x96\xfc\xde\x50\xf0\x89\x6f\x8f\x95\xa2\xcd\x3d\x6a\x52\xe3\xe0\x69\x14\xab\x59\x64\xeb\x91\x09\x75\xd6\x33\x4c\x42\xbc\x71\x34\xa8\xba\xa1\xcb\x3e\xdf\x1e\x98\x17\xb9\x3a\xf4\x42\xa6\xe5\xdf\x48\x69\xeb\xcf\xe9\xf2\x0a\x99\xba\x89\xd0\x7e\x54\xb9\x7b\x1e\x75\xd8\xeb\xcc\x26\xa2\xab\x84\xdb\x75\x4c\x8f\x84\x8e\xd5\xc0\x67\xb4\xdd\x87\x59\x5a\x58\x5f\x81\x33\x87\x5d\x19\xba\xdc\x51\x04\x8f\x30\x1d\x25\xb9\x8d\xe9\xbc\xc2\x40\xe4\xad\xc0\x43\x0e\x7f\x86\xdf\x2f\x21\x97\x3e\x0f\xe9\xd6\x6b\x38\x0a\xd0\xcf\x86\x31\x1a\x26\x00\xe8\x45\x30\x01\x26\xd0\x36\xc8\xdd\x68\x25\xea\x8e\x4c\xbc\xd3\x4f\x66\xff\x12\xdd\x2a\x64\x19\x88\x64\x3c\x08\xc5\x2a\xc6\x77\x7d\x17\xa1\xc0\x25\xbb\xe5\xfd\x45\x65\xfd\xe7\x81\x16\xf3\x01\x4f\x1f\x55\xc4\xdb\x35\x84\xd9\x81\xe7\xda\x69\x56\xf4\xd3\x6e\xfa\xd2\x84\xf6\x4f\xf4\x3b\xfc\x26\xad\x11\x31\xe8\xd9\x9a\x79\x2f\x4c\xc3\x7e\x61\x8a\x46\xff\xae\xd3\x53\xde\x12\xb7\xab\x9d\x30\xe2\x6d\x0a\x90\xd8\x84\xa7\x02\x4f\x0a\x69\xd4\xc7\xe8\x8e\xf2\x02\x27\x32\xc2\x38\x98\x10\xfc\xda\x65\xe8\x89\x2d\xbc\x71\x1a\xfb\xae\xa8\x36\xe6\xe1\xc6\x1f\xdc\x65\x9e\xaa\xd0\x83\x5e\x57\x40\xf6\x9f\x62\x41\x33\x82\x9b\xf2\x06\x51\xcd\x74\x2a\x40\x66\xad\x6f\x86\x44\x5b\x46\xf1\x82\xc1\x2b\x46\x7a\xef\xe0\x49\xa0\x69\x77\x42\xab\xba\xfc\xe5\x58\x49\x4a\x9c\x53\x44\x8b\xd8\x0e\x26\x81\x8f\x70\xf0\xd6\x05\xe5\xe6\xe6\xfa\x36\xc7\x74\x33\x64\x5b\xa7\xe1\x28\x5d\x8a\x16\x1d\x6f\x5f\x18\x0b\xbe\x6d\xe8\x4f\xe9\x45\x6b\x87\x36\x9b\xf2\x96\x0c\x67\x95\x5a\xe2\x64\x47\xf9\x77\x5f\x56\xc6\x10\xf7\x74\xe8\x50\x92\x60\x2c\x2e\x37\xa1\xce\x5f\xd8\xf2\xe2\x23\xae\xaa\xde\xce\xe9\x3a\x1a\x66\xae\xfd\xf9\xed\x65\xbc\x84\x92\x04\x7c\x71\x75\xf7\x10\x23\x8b\xff\x7e\xac\x50\xfe\xd8\xee\xd2\x07\xa1\x1f\xc5\x7f\xed\x92\xec\x45\x53\x0c\x4c\xd2\xaa\xa4\xbe\x9e\x89\xb3\x31\x7e\xb2\x0e\xca\x99\x7f\x6e\xff\x83\xe5\x17\x62\x70\x71\x9c\xc4\x2e\x05\x47\xd8\xfa\xb5\x7f\xc2\xdb\xee\x16\xfd\x40\x7e\x4d\xeb\xb9\x02\x4f\x44\xe5\xfd\xb6\x96\x87\x63\xa5\xcf\xca\xf8\xdb\xcd\xdc\xf6\xce\x38\xe3\x03\x0f\x9b\x6f\xcc\xc8\x6c\x5e\xa0\x71\x8f\xdf\x07\x44\x29\x82\x13\x1b\x3b\x61\xe4\x71\x41\xe1\x66\xca\x12\x26\x32\xf1\x84\x82\x9f\x1f\x51\x7e\x0d\x53\x0a\xcd\xa7\xa7\x04\x4b\x51\x6c\x73\xda\x7a\x42\xad\x6d\x39\xe1\xf4\x71\x65\x04\xb8\xbc\x96\xee\xa2\xfd\x82\xa7\xf4\xef\xb0\xf3\x95\x4d\xd1\x21\xe7\x39\xa7\xb4\x37\xae\x50\x34\x64\xa7\x37\x4a\x20\xd0\xe7\x39\xa7\xf4\x0e\x70\x6f\xb1\xf0\x91\xfa\x8b\xc1\x97\xa3\xf9\x8e\x68\xeb\x4f\xd2\xdd\xc5\xae\x7a\x40\x69\xd7\x5e\x50\x37\xe8\x35\xfa\x42\x84\x84\x73\x4d\x73\x67\xa2\xf1\xf6\x24\x49\x66\x45\x2e\x3c\x44\x91\xe7\xaa\x93\x9c\x0f\x95\x37\x4a\x92\x48\x6c\x91\x73\x6a\xd0\x7f\x4e\x0d\x13\x16\xd3\xc5\xc5\x35\x8a\x18\xf8\x38\xf6\xc7\xc5\xd2\x79\x63\xec\xa7\xf5\xb7\x54\xcd\x70\x55\xdf\xb3\xd7\xc7\xbb\x25\x25\x2d\x3e\x5b\x56\x0d\x9b\xa7\xe9\x33\x36\x4f\xbb\xca\x6f\x25\xe2\x36\xac\xcc\xc8\xee\x29\x91\x89\x7b\xca\xdb\xb3\x88\x32\xab\xe4\xa2\x80\xfd\xc4\x62\xe5\x22\x04\x8b\xf5\x4f\xdc\x76\x8a\x9f\x4a\x6d\x84\x36\xb9\xa0\xd1\xfc\x78\xfb\x76\xb0\x95\x55\x5c\x6e\xa7\xb2\x7c\x05\xa4\x57\x5c\xc8\x18\xf3\x41\xdf\x26\xf8\x8f\x06\xf7\x38\x67\x4e\x80\x4f\xdf\x46\x0d\x17\x6c\x38\xa6\x26\x62\xb5\x7c\xe0\x6a\x59\xb3\x44\x04\xe6\x97\xe8\x5b\xd8\x24\x5f\xc9\x0e\x79\x3c\x2b\x11\xfe\xc9\xbd\x15\x49\xf8\x1d\xa5\x8a\xcc\xc3\x7f\xa7\xbf\xe8\x9e\xd5\x4d\x0d\x96\x7b\x00\x28\x42\x69\x5a\xe9\xbd\x10\x2d\x2d\xed\x2c\xd7\x2c\x3a\x66\x17\xa8\xb9\xc5\xaf\xd5\xe9\xbf\x5d\x89\x22\x1e\x0d\x14\x2c\xf5\x52\x6d\xef\xcc\xbb\x85\xd8\x52\x9e\xa7\x82\x4f\x8c\xa3\x81\x25\x9e\x15\x3d\x15\xb4\x7e\xce\x50\x8c\xe3\xd7\x6a\x48\x9c\x8d\xba\x2c\x9a\x82\x8e\x24\xa2\x3a\xbf\x6e\x62\xf5\x64\x69\x51\xd8\x64\xd2\x0f\x62\x37\x03\xa5\x5d\x8c\xd3\x02\x45\xc8\xeb\xb4\x10\xb0\x5e\xbc\x50\xde\xe2\x68\x69\xc9\x66\x94\x51\x88\xd3\x95\xaf\x55\x8e\xa9\x66\xf1\x9b\xaa\x03\x44\x52\x41\x2d\x9f\xee\xbc\xe2\xa9\x01\xff\xe8\x15\xa5\x9f\x96\xae\xd8\xac\x6f\xca\x43\xbf\xac\xf0\x71\x0c\x5c\x47\x55\xcf\x6f\x9a\x34\xdd\x43\x33\x24\x85\xa4\x96\x93\xf5\xba\xa0\x40\x73\x17\x2a\xa6\xca\x26\x2f\x9e\xa0\x0f\x17\x11\xe7\x6d\x9f\x71\x2e\x25\x14\x6e\xf0\x60\x26\xd7\xcb\x6b\x97\x99\x30\x2d\x0c\x34\x06\x7f\x93\xee\x2f\x92\x8b\x3d\x04\xd5\x64\x36\x2d\x05\x7c\xb6\xdb\xa1\x6f\x17\x17\x61\x7a\xdc\x08\x70\x97\x11\x37\x71\x60\x6e\x63\x76\xa5\xe0\xf1\x69\x29\xb2\x70\x08\x56\x0f\x4b\xe8\x69\xec\xe5\x7b\x28\xa0\xb1\x4d\xee\xd1\xb0\x1f\xcf\xfa\x7f\xa3\x4e\x8b\x30\x83\x7d\xbe\x77\x54\xcd\x2c\xce\x55\x16\xf5\x60\x88\xfd\xc2\x6e\xe1\x81\x67\xb4\xfd\x24\x50\xfa\x43\xef\x03\xbb\x84\xd0\x8d\x61\x3e\x92\x89\x3b\xb8\x18\xfe\x0f\x1e\x3a\x63\x4d\xc6\xc1\x16\x50\x85\xdb\x5a\xf8\xe0\xb6\x2a\x66\x86\x26\x8b\x4c\xbf\xa5\x87\xef\xd4\x0a\xe4\x37\x8e\x78\x11\x25\x61\xa6\x6d\x31\xe9\x7a\xff\xce\xa7\x69\x18\x82\x3c\x04\xd1\x10\xa4\xd5\x47\xd6\x75\x05\x67\xc9\x7c\x77\x4a\x71\x62\xb5\xbf\xea\xe6\x58\xd5\xa8\x15\x51\x2a\x7a\xe2\x4c\xfa\xae\xe1\x92\x0e\x4e\xcf\xd0\x74\x09\x94\x79\xa7\xe7\x78\x41\xb9\x12\xfb\x84\x2c\x1b\x0d\x64\x6d\x3a\x89\x1f\x5f\x49\x9c\x57\xc4\x20\xcc\x3f\x08\x51\x8e\x2c\xe9\xb2\xd6\x68\xb8\x0c\x6c\xbb\x08\xf6\x68\xf5\x9e\x26\xb9\xe2\x76\x91\x99\x70\x39\xaf\x94\xa1\x95\xb1\x7a\xdd\xa9\x66\xa6\xbd\x66\x8b\x96\xf7\xba\x63\xba\x2d\xbf\xa9\xa5\xdb\x73\x73\xed\x61\xea\x44\x53\x70\x4a\xdf\xd6\x89\xf0\xed\x1a\x48\xf2\xe0\x74\xfb\xa9\x7c\x3b\x4d\xb4\x58\x18\x80\xd6\x93\x6b\x09\x7a\xf5\x15\x6e\xc7\xba\x98\xe6\x3c\x88\x3f\x00\x7c\x08\x11\xf7\x9b\xb5\x6f\x28\xa3\x41\x77\x42\x45\x75\x74\x52\x90\x37\x7c\x6f\xac\xe8\xef\x97\x15\xa4\x7c\xd1\xc4\x26\x09\x2d\xc6\x3f\x0e\xf1\xea\x39\x9a\x87\x95\x70\x14\xa4\x66\x05\x37\xa0\x6b\xdf\x86\x39\x40\xbb\xe8\xdb\xcc\xd2\x21\x46\x9d\x5e\x44\xcc\xdd\x1d\x3f\x49\x98\xa2\x33\x10\x15\xc1\x51\xd7\x65\x49\x93\x78\x6d\x8f\x0a\x1c\xb0\x52\xa3\xe6\xc7\x8e\x9f\xef\x78\x5a\x18\x43\xca\x1d\x26\xe8\xe0\x34\x2f\xda\x4d\x6d\xcc\x8a\x52\x45\x92\x32\x7a\xa8\xb8\xcb\x2d\x08\x6a\x7a\x71\x83\x79\x0f\x81\x70\x02\xcf\x9f\x06\xe2\x44\x82\xe9\x1e\x15\x4c\x3f\xff\x44\xb9\x79\xf1\x60\x2e\x73\x69\x0a\x40\xcc\x07\x4a\x98\x75\xb2\xa3\xe0\x40\x57\x08\x10\x21\x26\x0c\xf4\xf5\x00\x5c\xde\x52\x22\x32\x1f\x50\x86\x28\x7d\x5c\x14\x50\x32\xed\xa9\x58\x8e\xf8\x64\x13\x6e\x09\xf8\x29\x0c\xcd\xc1\xc8\x87\x7b\xb8\xc8\x38\x58\xa7\x1f\xc7\xe8\x05\x2d\x91\x76\x9f\x92\x55\xb1\x2b\xa6\x38\x84\x0b\x39\x87\x1c\x9f\xa9\x1c\xeb\xa4\x71\x20\x12\x6b\x5b\xb7\xc4\x0b\x2f\xb4\x87\x7d\x93\x83\x7b\x84\x7f\x74\x59\x29\xde\xb0\x3b\x09\x46\x1a\x67\x6a\xcd\x8c\xa7\x89\xd9\x17\x85\xd1\xd0\x50\x17\x84\x55\x08\x60\xc7\xb8\x75\x8b\x1f\x78\xae\x1d\x47\x4b\x1e\x00\xcb\x62\x0d\x74\xdb\x65\x1c\xa9\x8c\xee\x14\x04\x81\xd0\x2f\xf9\x4e\x65\xd6\x74\x4c\xd9\x9a\x31\x68\x1d\xb3\xfb\x16\x91\x45\xb1\x5f\x4e\x68\xff\x1e\x84\x12\x37\x14\x2e\x1f\xaf\xd3\xe9\xf3\x87\xf5\x09\x25\xc2\x5b\xee\x83\x4f\x94\x4f\xd8\xc9\x83\x94\xff\x0e\x49\xd4\x55\x3c\x22\x2c\xc3\x6d\x9d\xd6\xcc\x81\x4d\x56\x5f\x92\x0e\x18\x96\x16\xe2\x04\x78\xd8\x38\x43\xbf\x3b\xf6\xd6\x1a\x37\xc7\xea\xd0\x9c\x58\x57\x75\x13\x80\xe1\x9c\x9e\x03\xc3\x83\x91\xc4\xeb\xd8\x0c\x00\x98\x5c\xa1\x52\x10\x61\x79\x9b\xb2\x12\xb3\x79\x59\x03\x47\x79\x5f\x14\x09\x71\xb0\xff\x8c\x6e\x1a\xbf\x56\x63\x04\x6b\xb2\x24\x4a\x7a\xf9\x1e\x3f\xaa\x7b\x00\x33\x0d\x90\x69\x27\x50\x83\x53\xfa\xf1\xbb\x8f\x00\xbe\x8d\xf5\xf8\x09\x50\x7b\x71\x04\x21\xb1\xc4\x9e\xb9\xa4\xa6\x41\x4c\xa6\xc1\xb0\xe4\x86\xb2\xf5\xbc\xa5\xe5\x52\xbf\x85\x45\x8b\xab\xdc\x84\xd0\x2f\x56\xc8\x9d\x4a\x36\x54\x44\x98\x6a\xa1\xc6\xbe\xaf\x9c\xc9\xee\xeb\x83\x3a\x1d\x25\xdd\x7c\x07\x7d\x24\x42\xca\x31\x35\x09\xc6\x50\xd2\x31\x0f\x94\x78\x1c\xdd\x21\x64\xbd\xd7\x15\x90\xf8\xed\x2a\x3d\x41\x29\x32\xaa\xb3\x52\x7a\x73\xea\x20\x7e\x6b\xec\xa7\x41\xf6\xa5\xa1\x0d\x0b\x56\x0e\x77\xf6\x21\xb0\x95\xe2\xd7\x63\x2d\xc3\x41\x5c\xbb\x79\x86\x0c\xbd\x41\xbf\x9e\x5f\x8f\xbd\x14\x56\xe6\x8c\x04\x18\x38\xaa\xa5\x8b\xee\xaa\xde\x5e\x98\x26\xf9\x30\xca\xe8\x5f\x3b\x1d\x07\x20\xb3\x85\x84\xf4\x90\x9a\x8e\xe7\xf6\x21\x7a\xe6\x32\xd4\x6a\x39\x67\xb9\x5b\xba\xdf\x78\x46\x35\x45\xb6\x63\x61\xf0\x7f\x08\x14\xff\xfa\x36\x5c\x03\xd0\x2f\xf9\x80\x16\x00\xe3\x80\xe8\x16\x4b\x7e\x80\x1d\x23\x52\xbc\x74\x1d\x15\x2d\x08\x91\x3c\xa5\xfb\xcb\xc0\xc0\x86\x3c\x62\x3f\xdb\xc8\x4c\xf8\x96\x1e\x3b\x57\x39\xd6\xa0\x6b\x8e\xff\x4c\x51\xde\xc3\x38\x2d\xca\x0d\x33\xe9\xeb\xb6\xe3\x54\x4e\x38\x01\xcc\x85\x69\x29\xc0\xd9\x17\x1d\xe1\xf6\xbe\x6b\xfa\x27\xa3\x82\x41\x4f\x02\x67\xf5\x64\xf7\x8d\x9b\x74\x42\x88\x23\x45\x83\x20\x6e\x94\x14\x36\xc9\xb1\x96\x10\x9a\x40\xce\xe5\xd7\x0a\xfe\x13\xf6\x0d\x4d\xea\xb3\x7c\xd2\x2b\x16\xbf\xaa\xdd\x2c\x5e\x55\xe3\xf2\x57\x03\x8f\x48\x7a\xd5\xfd\xd6\xbf\xd9\x90\xa8\x2e\x1d\xb0\xbf\xdd\x8d\xb0\x22\x05\x67\xe6\x87\x85\x27\x03\xaf\xac\x90\x2f\xbd\x44\x21\x47\xa2\x2e\x7d\x85\x1c\x7e\x7b\x54\x32\xff\x02\x54\x66\x14\x7b\x77\xbf\x60\xe5\x2a\x30\x48\x60\x3b\x59\x7e\x27\x50\xd6\x34\x50\x45\x67\x78\x40\x45\x0e\xcc\xc4\xcb\x3b\x7c\xdb\xf5\xb6\xba\x8b\xac\x3f\xed\x68\x0d\x0b\xd3\x8e\x4b\x54\xde\x24\x4c\x61\x40\x3b\x17\xfd\x5b\xa5\x6e\xd9\x5a\xaf\xe8\x7f\x59\x1e\x04\xa1\xb4\x42\xda\xc6\xaf\x6b\x3d\xb3\x17\x5e\x68\x17\x36\x69\x95\x27\xb6\x68\x9a\xe8\x86\x67\x5d\x95\xad\x1d\xa6\xc3\xb5\xac\x2c\xa9\x65\x4a\x80\x9c\x0d\x89\x1d\xbf\x56\x38\x9c\x55\x6b\x97\x77\xfa\x60\xf8\x2a\x15\x77\x58\xf1\x97\x69\xcb\x21\xaa\x5d\x1e\xeb\xae\xb7\x52\xd6\xe7\x56\xb1\x98\x00\xd2\xf6\x63\x2f\x15\x85\x54\xba\xe4\xa0\x2b\x66\x10\x15\x6b\x2b\x51\x1c\x3b\x95\x55\x19\xbb\xd0\xe7\xc8\x06\xf0\x8d\x65\xbb\xb8\xb6\x87\xfe\x13\xa2\xfa\x3b\xd0\x5e\xc2\x76\x87\x6d\x39\x0e\x82\xdb\x9a\xc9\xb8\x31\xae\xda\x73\x2f\x4c\x33\xb0\xfa\xd3\x1d\xaf\x40\xca\xc6\x42\x42\xc2\xa1\x8b\x72\x38\x23\xc7\xa7\xb8\xab\xc8\x50\xef\x68\x55\xab\x7a\x16\x7c\x70\xfa\x50\x3b\x8f\x06\x51\x6c\x32\x81\x0a\x8b\xfc\xb3\x37\xa5\xbf\x50\x8b\x3d\x33\x07\xda\x66\x60\x93\x2e\x53\xaa\x59\x69\xb2\x2a\x3b\xa9\x73\x51\x16\x82\x13\x39\x37\x3f\x71\xbb\x19\x28\x7b\xf7\x73\xb5\xcd\x38\x3b\xdb\xce\xc9\x10\xce\x95\x5d\x90\x9d\x11\x77\x93\x7a\xd9\xb3\xbf\x9d\x17\x66\x6d\xd2\x93\x72\x7f\x8c\x9b\x8c\x30\x77\x07\xa7\x2d\x0a\xd3\x23\x8a\x02\x59\xff\x6a\xca\xe1\x56\x00\x93\x63\x8b\xa6\x40\x85\x7d\xf4\x73\x91\x02\x5d\x19\x6f\x71\x19\x78\x7e\xbe\xac\xf2\x26\x55\x7c\x64\x7e\x28\xcb\x36\x07\x2d\x6d\x57\xe0\x89\xc9\x27\x3d\x8b\x39\x21\xf4\xc0\x40\xa4\xf2\x11\x2e\xee\x2b\xed\x67\xce\xa8\x44\x2c\xc4\xb7\x73\x0a\xd7\x6e\x41\x24\xf9\x2b\x2c\x77\x7e\xa3\xf4\xaf\x42\x13\xf3\xac\x19\x77\xea\x0f\x95\xcc\x3f\xf7\x40\xc5\xa7\x54\xeb\xf4\x2a\x96\x39\xc1\x3e\x06\xc2\x4f\x9e\xd1\x13\xd5\x4d\xdd\x6f\xac\xeb\x39\x3c\xdd\xfe\x85\x99\x7d\xcf\xee\x3b\xb0\x7f\xbb\xa7\x50\xdc\xd4\x5c\xde\xb7\x2a\xe2\x02\x63\xb5\x4a\xaa\xe2\x77\x54\x19\x20\x09\x78\xbc\x46\x43\x3c\x38\x4d\xb2\x48\x2d\x05\x4a\x18\xfb\xc9\xd6\x71\xa5\xec\x92\x99\x90\x3a\xb3\xd8\x8b\xa7\x54\xa3\xed\xaf\x2a\xd1\x42\xc9\x33\xa1\x23\x10\xf5\x4c\x91\xa2\xc7\x87\x48\xf5\xae\x8a\x5a\xef\x7a\x4b\x6f\x93\x84\x4a\xc8\x09\x67\xe3\x19\x25\x07\x76\x46\x3f\xc1\x74\x79\x2d\xdd\x89\x50\x23\xe5\x6b\xe5\x12\x1c\x2f\x14\x3c\x0d\x51\x4e\xa5\xa7\x24\x67\x78\xf9\xd1\xd8\xbe\x27\xb4\xcf\xe6\xe9\x40\xd5\xee\x3f\xad\xcd\xbb\xf7\xcd\xb5\x6d\xb7\x67\x39\xce\x55\x5c\x33\xf9\x8d\x9a\xc1\xe7\x45\x66\xcd\xc0\x76\x27\xbc\x13\xe3\x79\xe5\xc9\xb0\x49\xf3\x78\x7c\xed\x25\x27\x63\x12\xa6\x83\x61\x91\xa5\x71\x6c\x33\xb4\x02\xd0\x0a\x7b\x5f\xdb\x9d\x04\x0a\xee\xf5\xba\x9b\x3f\x0f\xb3\x74\xd4\x9d\xf4\x1d\xd4\x09\xa4\x61\xae\xbe\x76\xb8\xd5\x73\x0a\x3a\x7b\xcc\xf5\x7a\x86\x91\xb3\x54\xc7\x8d\xbc\xb6\x55\x83\xe0\x59\xc6\x8c\x3d\x50\x9b\xf1\x91\x02\x5d\x2f\x1a\x58\xcd\x74\x43\x5e\xc0\xaf\x15\x49\xa7\x6b\x78\xff\xb9\xd4\xca\x2b\x4b\x37\x68\x35\xce\x53\xad\x28\x47\x9f\xa4\xf0\xb4\xe0\xf9\x4d\x03\xfc\xa6\x3d\x88\x92\x51\x1e\x8e\x62\x4b\x2d\x29\xb4\x28\xb8\x95\x8d\x16\xdd\x19\x64\x71\xa8\xdf\x3f\x54\x2d\x83\x56\xc7\x2f\xfb\x2f\xda\x62\xa7\xd6\xcf\xf0\xb2\x47\xa7\xc6\x9e\x2e\xc6\xde\xc4\x38\xc1\x51\x76\xa2\xde\x79\xa8\xe3\x71\x67\xac\xb0\x80\xbc\x82\x1b\xab\xd2\x3b\x72\x52\x41\xa3\xb8\x88\xca\x3a\x1a\x84\x68\x1c\xba\xd8\x05\xfc\x5a\x15\x36\x79\x98\xae\xa2\x81\x35\xe3\xa6\x98\xaa\x43\x7b\x3a\x78\xa2\x41\xe9\x27\x57\xde\x8b\xd0\x70\x94\x29\x83\xd2\x60\x4b\xb3\x8c\xd4\x3e\x9f\x77\xb9\x0f\x46\xbf\xd8\x89\xb7\xe9\x2e\xe0\xca\x27\x3a\x0d\xb4\x75\x6a\xde\x01\x11\x82\x96\xc4\x06\xa5\x9d\xfc\xba\x52\xc2\x65\x66\x11\x23\x72\x36\x7f\x19\xfb\x98\x78\xba\xc9\xbd\x2a\xb3\x79\xd4\x1d\xd9\x4a\x8b\xf6\xf7\xc7\xaa\x45\xfb\xfb\x4d\xe2\xec\xc3\x34\x5e\x1b\xe6\x54\xed\x08\x3a\x4a\x09\x63\x9f\x6e\x94\x23\x1e\x94\xf9\xd6\xda\x04\xad\x11\xa7\xdb\xe3\x6c\xe9\x2e\x28\xef\xe2\xaf\xd5\x06\x77\xcf\x2f\x4c\xb7\xf3\x51\xd6\x13\x62\x3b\xa3\x5d\x02\x8d\x9f\x7d\x58\x45\x89\xb5\x98\x51\xa0\x4e\x54\xdc\x09\xd5\x36\x89\x97\xf2\x03\x62\x42\x17\x3a\x1f\x5f\xd3\x6a\x89\x5f\x6b\xc0\x72\xe3\x2c\x2a\xcc\xb2\xc0\x87\xb0\x42\x6f\x29\x5b\xd5\x5b\x4d\x70\x87\x28\x49\x6c\xd6\xf2\xdd\x6a\x0c\x27\x44\xa4\xa4\xe9\xce\x99\xe1\xd0\x1a\xf0\x50\x84\x86\x55\x5e\x8f\xd0\xb3\x94\x5a\x58\xba\x4a\x2a\xf8\x4c\xe7\xa5\x0f\x86\x5c\xd2\x6e\x12\x88\x70\xb8\xc8\xf2\x59\x0b\x12\x94\x1e\x9c\xf8\x26\xab\xfa\xf3\xeb\xb8\x01\xce\xeb\xc7\x4f\xa4\x1f\xa5\x8c\x12\x55\xde\x66\xf0\xb8\x9f\x26\xa7\xa3\xa4\x4b\x45\x78\x45\x12\xe9\xbc\x52\x8d\x07\x89\x5f\xcd\x38\x64\x90\x32\x59\x23\x85\xcf\x1c\x68\x87\x36\x29\x32\x13\x33\xd3\xc8\xe1\xc3\x9d\xa4\x0e\x37\x5c\xc5\x76\xb2\xa1\x25\x9d\xf9\x96\x34\x9a\x81\x7c\xe4\xf3\x9b\xc0\x23\x57\x09\xe1\xce\xf3\xcb\x26\x3b\x2d\xa7\x37\x58\x3e\x8d\x84\xf9\x7c\xd8\x58\x8f\x76\x14\xc4\x77\x92\x3a\xb8\xce\x48\xc0\x2b\x53\x7b\x7b\xc9\xd8\xbe\x34\x82\xda\x30\xb3\x25\x71\x19\x42\x9d\xdc\x5a\xaf\x94\x29\x66\x94\x14\x59\xda\x1d\x85\x12\xb4\x99\xd3\x17\x54\xdc\xd7\xeb\x40\xd2\x7c\x94\xad\xd8\x35\xf9\x23\x34\x06\x58\x75\x96\xdf\x28\x4e\x5e\x66\xf3\x74\x94\xb1\x85\x0a\x6e\x30\x0b\x2e\xf1\x9b\x46\x6a\x80\x43\xb6\xeb\x42\x8a\xd3\x27\x41\x81\x35\x99\xe2\x84\x36\x61\x20\x09\xca\xba\x8f\x54\x2e\xb8\xa7\xa3\x81\x90\x5b\xff\xfa\xa9\xa7\xda\x54\xbb\x29\x46\xf4\x25\x85\x04\x62\xa9\x49\xb6\xdc\x1e\xef\xf1\x48\xf8\x30\x9c\xf0\xf3\x6f\xf4\x5d\xb0\x3b\xb8\x0f\x2c\x9c\x60\x9f\xb0\x76\x4d\x61\x27\x55\x01\xf4\xaf\x02\x4f\x2c\x3d\x4b\xd1\x8b\x5f\x6b\x5c\xda\xbf\x6a\xe0\x1f\xb5\x87\x76\x38\xe4\xc9\x2c\x9b\xbf\x12\xda\x4a\x8c\x60\x1b\xc2\x4b\x9e\xc6\x51\x18\xf9\x96\x2e\x2b\xad\x06\x1e\x36\x70\x5b\x59\x83\x1f\xf6\xa3\x6f\x33\x4a\x0c\xee\x2c\xda\x82\x77\x14\x81\xf6\x22\x75\x5d\xd0\x4a\x3f\xe9\x4e\xc9\x30\x1d\x0c\xa2\x02\xa9\xbf\xeb\xd1\x31\x77\x04\xa7\xc0\x61\x45\x78\x3f\xd7\x70\x8e\xcc\xb7\xbb\x56\x19\x62\x4a\x56\x55\xde\x21\x31\x94\xab\xaf\xce\x30\x5d\xb1\x99\xc3\x74\x09\x33\xdf\xc3\x6c\xeb\x4a\xdf\x33\x07\xda\x76\x94\xa5\x43\x6b\x92\x7c\x42\x93\x84\xb9\x41\x83\x98\xc4\x84\x25\xc1\xad\x7a\x79\x27\x16\x0e\x64\x5f\x24\x21\xbb\x29\xe2\x5b\xed\xac\xdb\x37\xd7\xee\x46\x36\xb7\xf1\x44\xc5\x22\xc5\xef\x10\x80\xee\x84\x96\xe0\xa7\x77\xc3\x28\x4e\x0b\xb0\x1c\x50\x48\x83\xbb\x83\x21\xc4\x77\xc7\x15\xc9\x4e\x4f\x8e\x99\x22\x85\x1e\x3c\x9e\xb3\x63\x8d\xbd\x6f\x40\x89\x9b\xd0\x74\xed\x20\x0a\x5b\x9e\xbf\x79\x4a\x71\xa9\x4e\x35\xce\xf4\x5e\x4c\x19\x3e\xed\x54\xb1\xfc\xe1\xa3\xaa\x93\x99\x7f\xfc\xeb\x24\x49\x28\x5d\x59\x0c\x5d\xc4\x96\xcb\x97\x03\xb7\x74\x0f\xea\x5d\xd5\x32\xc9\xa4\x88\x66\x88\x64\xe0\x27\x9e\xa7\xd5\x06\x8b\x4d\x61\x77\x68\xb6\xed\xed\x40\x2d\x86\x0d\x65\x32\xba\x9d\x24\x03\xf1\x0b\x26\x88\x07\x28\x46\x51\x74\x39\x88\xb1\x4c\x87\x16\x9b\xac\xad\xeb\x74\x5f\x99\xef\x0c\xd3\xac\xb0\xdd\x49\x35\x6b\x62\xf7\x0a\xfc\xd5\x6d\x85\xa2\xbc\xa0\x39\xb4\x7f\x5d\x0b\x63\xf3\x0b\xf3\x34\x9a\x43\x66\xe6\xca\x43\xb7\xe6\xeb\x81\x6f\x6e\xae\x4d\x12\x94\x2d\xa5\xd0\xac\xf8\x63\xef\xa9\x68\x9c\xa7\x6b\x8b\xe5\x32\x6f\x95\x2b\x42\xdc\x23\xcb\x47\x22\xe6\x91\x7e\x59\x17\xd6\x84\x18\x47\x3c\xf3\x3c\xcf\x08\x00\xaa\xe2\xd7\x7a\x59\x8e\x6c\x56\xa4\xad\x2a\x95\xa0\xc2\x32\xd0\x76\xb2\x49\x37\x2a\x4f\xf3\x32\x97\xf2\x99\x5e\xe0\xb1\x22\xa7\x5d\xb5\xd9\x8d\x72\x64\x29\x93\x7e\xe8\x78\x7c\xac\x1c\x42\x00\xd8\x72\xdd\xbc\xd9\x59\x51\xcf\x70\x1a\xb5\x85\x0d\xfb\x49\x1a\xa7\xbd\xc8\xe6\x53\x95\xb1\x9e\x52\xd1\x7c\x0b\x4f\x9b\xbd\x6d\x34\x31\x71\x07\xe3\x27\x80\xeb\xdf\xd3\xd1\x49\x71\x1e\x65\x2d\xad\xc3\xc5\x97\x2c\x9b\x5e\x77\x32\xc2\x08\x30\x1b\xa9\x9e\xca\x07\x25\x55\x95\xc7\xcd\xc1\x4d\x5c\x89\xfb\x9e\x47\xf3\x54\x46\xfa\x0d\xf2\x74\x2f\x8e\x06\x43\x39\x24\xd1\x01\xda\xd0\xbc\xb5\x0d\x27\xab\x0c\x01\x27\x27\x39\xca\x20\x45\x5c\xb7\x20\x16\x7d\xcd\xb2\x64\xa2\x2c\x5e\x9b\xac\x70\x69\x3c\x7d\xe6\x2d\x05\x4f\xf9\xe1\x58\x61\x10\x6b\x21\xbc\xac\x32\x4c\xb8\xec\xad\x96\xc5\xe0\xbe\xa5\x9c\x54\x1b\x54\x2b\xd7\xac\xc9\xe2\x94\xe7\x24\xc8\x15\xcf\x68\xda\xfd\x19\x4d\xa9\x11\x85\x4b\x8f\xb0\x86\xfc\x8c\x03\x0b\x3a\x7f\xa0\x13\x81\x17\x24\xaf\x77\xcc\x67\x67\xdb\xdd\x35\x2b\xcf\xb4\x91\x2b\xf0\xb0\x5b\x55\xd9\x20\x4a\x4c\x4c\x66\x4b\xe0\x75\xec\xee\xf8\xd6\xc6\x79\x45\x1d\x60\xc4\x97\x38\x50\xe3\xc3\x45\xa3\xd4\x93\x3c\x4c\x18\xa6\x83\xa1\x49\x78\xdb\x0b\x3c\xa5\xe5\xd4\x15\x78\x28\x8e\x7f\xbc\x18\x82\x52\x82\x86\xd1\xdb\x81\xc2\x8e\x0a\xa3\x87\xff\xd3\x58\x21\x7e\x2e\x8c\x9f\xac\x92\x4a\xc2\x34\x49\x6c\x58\xa8\xae\x0f\x91\x73\x9e\x95\x37\x4e\x9b\xa2\x48\x47\xbd\xbe\xcd\x8b\x16\x91\x96\xe5\x8b\x5a\x73\xbe\xcb\x2a\x6d\x91\x22\x33\x49\x8e\x60\xd8\x52\x34\x9c\xab\x81\x32\x34\xbb\xaa\x8a\x8b\xff\xf4\x57\x3f\xd7\xf2\xb4\xae\xd3\x63\xaf\x38\x77\xba\x02\xa8\x5f\xb1\x24\xa9\xbd\x77\x86\x83\xda\x7d\x15\xe0\xee\xab\x7f\x99\xdb\x6c\x45\x46\x42\x0e\x9c\xe4\x84\x8d\xce\x06\x15\x4b\x24\xef\xc7\xfb\xee\xd8\x17\x1c\xe9\xd2\x52\x14\x46\xa4\xb4\x5b\xe6\x65\x92\x14\xfb\x29\xe8\x71\xed\xec\x5f\xf4\x6d\x62\x14\x0d\xe5\x03\x3a\x91\xa5\x16\xf1\x47\xd7\x8b\x26\xf9\xec\xa4\xb2\xae\xbb\x10\x28\x93\xef\x0d\xb4\x64\xb5\x34\x84\xb4\x32\x1a\x38\x9b\x43\x9b\x0e\x63\xb1\xbd\x16\x47\x1c\x85\x69\x7e\xb4\xe3\x51\xa4\x1b\x4a\xa8\xb7\x62\x10\xb4\xd9\x84\xdb\x83\x26\x1b\xb6\x2a\x42\x1e\x54\xcf\xf9\x75\x8d\x24\x54\xa6\x68\x65\x11\x61\x46\x65\x70\x49\x70\x36\xb3\x0c\xe4\xd8\x63\x4e\x6e\xd4\x38\x92\x65\x19\x66\x0a\x93\x17\x59\x3a\xec\x73\xb2\x51\x81\x45\x09\x90\xca\x0b\x9a\xae\xd8\xa4\x67\x21\x9f\x5d\xfe\xbc\x26\xe2\xb8\x0f\xb9\x61\x9a\x0d\x3f\xfb\x89\xf2\xf9\x3a\xc9\xbc\x67\x9e\x67\x6e\x35\x8b\x46\xa3\x04\xc3\x56\x75\xea\xbf\x6e\xb8\xc9\x48\x28\xdc\xd0\x3f\x45\x57\x8d\x21\xf5\x08\xca\x52\x0d\xab\x49\xff\x69\x8c\x50\x31\xf3\xbd\x86\xe3\xdf\x75\xa4\x1c\x81\xf0\x2f\x68\x3d\x82\x4d\xc3\xd2\x66\xb2\xa1\xfc\x39\x5d\xe6\xb0\x64\x16\xe5\x15\x2e\x01\xe5\xe7\xd7\xaa\x0d\x44\xf8\x33\xcb\xd4\x25\xfc\xf8\xbf\x54\x54\xa8\xbb\x4a\x28\xe4\xe4\x58\x2f\xc0\xa6\xf3\x84\x70\x1b\x8c\x9f\xc5\x50\x00\x90\x19\x95\xd2\x88\xa9\xf7\x31\x35\x89\x4d\xc8\x90\x16\x39\x8b\x68\x82\x3e\x00\xdc\x0f\xbf\xe9\x48\xa5\x6b\xe2\x38\x5d\xb5\xdd\x9d\x5e\x21\xfc\x82\x7a\x04\xc8\x02\x1d\xcb\xb0\xfc\x36\x24\x67\x7f\x1a\x78\x12\xf0\xec\x13\x68\xcb\x09\xba\x52\x7b\xb3\x2b\x31\x8f\xa3\x63\x0f\xbe\x0a\xad\xef\x9a\x62\xb5\x00\x33\x83\x5e\xc2\x2b\x63\x0f\x1a\xf1\xca\x14\xe9\x62\x5e\x98\x30\xd6\x53\x9b\x0d\x35\xb5\xd9\xa8\x00\x1d\xbb\x23\xbb\x83\x2e\x5e\x7a\x43\xf4\x43\x10\x68\xf6\x20\x7f\x44\xfa\x76\x97\xa7\xe6\xa8\xcb\xcf\x28\x75\x55\xc0\xa9\xf0\x8b\xae\xd1\x5d\xc7\x4e\x3d\xee\x25\xca\xa3\xd8\xe6\x45\x9a\x88\xc0\x99\x1c\xf2\x1e\x1b\x5b\x8f\x17\x7b\xf7\xb6\xcd\x20\x1d\x25\x00\xdd\x39\xb2\x80\xd3\xdb\x3f\xdb\x04\x76\xed\x9a\x81\xe9\xc9\x34\xc4\x49\x69\xf8\xa9\x11\x38\x19\x18\xb1\x9e\xaa\x95\x99\x33\x07\xca\xff\x5d\x36\xfd\xb2\xd6\xa4\x5b\x8e\x20\x85\x39\xbe\x76\x1d\xab\x4b\x72\xf7\xb2\x68\xc8\x9e\x8e\xce\xa3\x4d\x19\xb6\x35\x88\xd1\x3d\x4b\x67\xe7\x88\xa9\xf3\x62\x69\x55\x7e\xba\x78\x5d\x35\x69\xb7\x2d\x96\x8b\x90\x6e\x89\xc8\xdc\xd1\xb5\x8a\x76\x9b\x7e\xb4\xa1\xcd\xf6\xa8\x95\x78\x04\x2b\x51\xd4\x63\xca\x23\x09\x67\xc8\x61\x0a\x1f\x18\x62\xdc\x1c\x2b\xcc\xc3\x29\x3a\x68\x90\xb1\xb2\xfa\x22\x90\x19\x9b\xca\x5e\xe4\x21\x78\xf0\x60\x1b\xbc\xa7\x8a\xeb\xef\x23\xaa\xb0\xd0\x89\x1a\x67\xfe\x58\x31\x35\x62\xdb\x93\xfd\xe7\x7c\x84\x02\x0f\x71\xf9\x18\xdf\xe6\xbe\x29\xac\x19\xb5\xaa\x33\x2f\x0f\xdf\x54\x12\xc6\x84\xc5\x1f\x65\x76\xa7\xbf\xaf\xdf\xa4\xba\x01\x5b\x98\x73\x66\x67\xb2\xeb\xf0\x52\xc0\x8e\x70\xe9\x49\x17\xe5\x9c\x9e\xf7\xee\xe5\x7c\x7f\x1d\xd0\x41\x90\xa5\x8f\xd4\x20\xfd\xcf\xcf\xb7\x97\xa4\x1a\x72\x6a\xa5\x0b\xd3\x4e\x4e\xc8\x9f\xc5\xa4\xc7\x87\xce\x39\x12\x98\x63\x1a\x3a\x79\xac\x56\x86\x97\xc5\x6e\x68\x87\x05\xdc\xf0\x04\x12\x45\x8f\x01\xb7\xfe\x12\x4d\xfc\x45\x19\xb7\x91\x17\xb8\x44\x96\x0e\xee\xd0\x64\x08\x76\xe0\xe3\xef\xe5\xda\xad\xa7\xbf\x5b\x31\x5e\x19\xc2\xb9\x47\x3b\xdf\x95\x13\xb5\x4d\x09\x6b\x7e\xd3\x8d\x52\xe5\x32\xff\xdb\xca\x65\xfe\xb7\xb7\x52\xa3\x16\xe6\xdb\x07\xa7\x1f\x46\x89\xed\xd4\x78\x9c\xfe\xcb\x65\x1c\x5c\x78\x02\x37\x94\x4e\xf0\x09\x7a\x62\x22\x04\x5d\x26\x40\x8e\x84\xa0\xca\x2b\x7a\x62\xa8\x8e\xdf\xd1\x94\x24\x06\xf0\x29\x17\x84\x39\x87\x5c\x22\x48\x91\xc8\xff\x28\x27\xa8\x1b\xb4\x6f\x58\x3d\x9e\xda\x16\x58\x60\x77\x9b\xc6\xf5\xc3\xd8\xac\x09\x46\x0e\x4d\x24\xd0\x89\xf9\xb5\x16\x40\x8f\x92\xe5\xb2\x2c\x4d\x70\x9a\x61\x67\x43\xa9\x1f\xdf\xf5\x01\x7e\xb8\x58\x88\x34\x59\xa3\x0f\xe3\x48\x50\x92\x8e\x22\xa1\xc0\x74\x67\x9a\x6a\x97\xbe\x49\xba\x51\x68\x86\xca\x46\xe7\x88\xea\x42\x1e\x51\xc9\xea\x92\xcd\x12\x93\x74\xab\xa6\x38\xea\x6e\x1e\x51\x6d\x70\x2f\x91\xd5\xf2\xb9\x2d\x17\x17\xfc\xa6\x53\x5b\x69\xcf\xed\x2f\xff\xce\xf4\xd2\x84\xfe\xc8\x41\x75\x95\x41\x49\xa0\xac\x90\xd2\x51\x8c\x98\x88\xe1\xeb\x77\x29\x95\xe5\xd7\x15\x46\xf5\xa8\x97\x6b\x51\x93\xdf\x42\xf0\xe4\x37\x8d\xc9\x5e\x9a\x90\x06\x9c\x9b\xe9\xa3\xfb\x71\x56\x51\x87\xce\xd6\x54\xef\xf7\xee\x6d\x77\xa3\xbc\xc8\xa2\xc5\x51\x91\x3a\x77\xe3\x8a\xcb\x18\xbf\xa9\x1d\x41\x22\x8d\x64\x06\x69\x98\xd2\x17\x22\x2b\xbb\x88\x6b\xe7\x37\x81\x32\x5a\x32\x49\x97\x26\xc0\xf3\x28\x6c\xcf\x7e\xaa\xe3\x79\xc4\x1f\x29\x93\x89\x47\xd6\x95\xe7\x9b\xb5\x03\xdb\xdd\xae\x90\x37\x17\x14\xc6\x6a\x7b\x47\xc9\x8c\x31\xed\xc0\x81\xe4\x9d\xdd\x21\xa6\x48\x1f\x07\x98\x27\x32\x3d\xe7\xd5\x1a\xd9\x27\x91\x56\xb0\x61\x5d\x6b\xba\xdb\x3d\x50\x79\x43\x71\x15\x3e\xb5\xae\xec\x79\x4f\x69\x6c\xcb\x19\xaf\x1f\x1f\xfe\x22\xa6\x0d\xa2\x53\xa2\xaa\xa1\xa1\xcd\xa0\x1d\x4f\xc8\x5a\xb7\x84\xca\x4b\x53\x79\xda\x21\x71\x4e\xd5\x8b\xeb\x3a\xe7\x3a\xca\x33\xf9\x59\xb9\xa5\x5a\x20\xf9\x16\x7e\x15\x8e\x8c\x87\x3a\x65\xaa\x8e\x6e\xf1\x5d\x75\x8e\x5f\x46\x4a\xe5\x66\xd6\x07\xa7\x19\x41\x02\x1a\x22\x72\xa8\x1b\x14\x3f\x64\x69\x7f\x9c\x60\x56\x61\x5e\x6a\x29\x2b\xc6\xf3\xaa\xf5\x78\x5e\xb5\x2b\x47\x6b\xf9\x0e\xca\xf5\x91\xe8\xf0\x45\xbb\x06\xef\x97\xbf\xc0\xc9\xed\x79\xad\x0e\xb0\x1b\x37\x12\x39\xf6\xa3\x1d\xaf\xf4\x78\x53\x91\x04\xf6\x28\xb6\xe4\xd0\x26\x21\xc0\xdc\x8e\xb6\xea\x0e\x30\xc0\x42\x10\x33\xef\xd7\x28\x22\x0b\xd3\xed\x51\x62\x62\x92\xae\x05\x1f\x59\xc4\x17\x5b\xca\x02\x83\xee\x33\xeb\xb6\x2b\xd7\x81\x07\x3a\x3e\x7b\xe8\xda\x38\x5a\xe1\xf1\xa1\x00\x44\xca\x8f\x10\x68\xd9\xd6\x23\xf9\xa9\xa7\xda\x45\x3a\x68\xf9\x9e\xfa\xbb\x63\xe5\x87\xf5\xee\xc7\x1a\x88\x87\x66\x60\x33\xd3\xf2\xe8\xc0\xf3\x81\xc2\xf4\x68\xc9\x9d\x5e\x59\x00\xb1\x37\xbe\x0c\xba\xe8\xfc\xe0\x37\xea\x29\x7d\xe1\xb9\x2f\xa2\x8d\x8e\x25\xf3\x63\xe5\x9a\xc5\xbb\x1d\x99\xc5\xd5\x06\x75\x81\x76\x16\x75\xb7\xf4\xa6\x4e\xa9\xde\xd4\x29\x85\x2d\x1f\x98\x11\x64\x9c\x79\x31\xd3\x3f\x93\x85\xed\xb7\x4b\x37\x5a\x5a\xb2\x99\x7b\xa4\x0c\x68\xa8\xa8\x43\x95\xdb\x08\x41\xe1\x5b\x0d\x16\x81\xfb\xdb\xb1\x19\xf5\xfa\xee\x57\xb9\xd2\xd4\x9b\xd4\xd4\x66\x57\x07\xa7\x67\xda\xf9\x28\xec\xb7\xe8\x58\x66\x72\x86\x4a\xff\x36\x3f\xd6\x50\x27\x1a\xd8\xb8\x6b\xa8\x1b\xdc\xd8\xb7\x6d\x38\x14\xbb\x99\x82\x79\x88\xbe\x0f\x2d\x32\x7e\xa3\xd8\x46\x7d\x53\x64\xd5\x46\xd0\x86\x6e\x04\x6d\x8c\x3d\xf6\x01\xa9\x58\x59\xdf\xe7\x53\xca\xab\x06\x38\x43\x86\xd8\xfb\xa8\x16\x5c\xa8\x82\x1f\x11\x67\x10\x03\xae\x28\x61\xa5\xd0\x64\x51\x68\x8a\x51\xc6\x88\x17\x21\xec\xd3\x8f\xe0\x37\x8d\x6e\xf4\x51\x6f\x94\x89\x1e\x22\x80\x1a\x57\x30\x8d\xc3\x53\x7c\x4b\xd5\x6d\xa7\xdd\xc4\xab\x67\x13\x0a\x96\xf2\xec\x04\x6f\xe7\xe7\x0d\x77\x6a\x87\x1c\xb1\x87\x93\x30\x8a\x23\x53\x90\x13\x9a\x43\xc6\x9d\x50\x48\xf9\x13\x2a\xd7\x1f\x98\x38\x4c\xe3\x01\x26\x88\x90\x0d\x7a\x65\xac\xbc\x58\x30\x61\x66\x66\x12\x36\x98\xd0\x94\x1a\xc0\x81\x2b\x91\x2d\x54\xfb\xe5\x88\x6e\xbf\x1c\xa9\xdd\x9a\x03\xcf\xb5\x17\xd3\x38\x2f\x58\xc0\x52\x44\xb5\x29\x97\x94\x1e\xc3\x93\xaa\x0b\xe3\x4f\xfd\x09\xe5\xa3\x75\x5a\x69\x3e\xa1\x85\x2f\x42\xa8\x5e\x2a\x7c\x68\xf2\xdc\x26\x3d\x9b\xa1\x3c\x71\x56\x1b\xfb\xe6\x1c\x80\x4f\x8c\x15\xba\x9c\xa1\x21\x69\xbd\xa7\x6d\x4d\xee\x95\xcf\x46\x67\xc5\x9f\x6f\xff\xca\x76\x4f\xd4\x60\x61\x22\x64\xb8\x27\x34\xd2\xf8\x12\x21\xd2\xf8\x5f\xa9\x39\xf0\x0f\x70\x7f\xf0\x17\x37\x2b\x0e\xba\xbd\xbe\x60\xc9\xdd\xc9\xee\x34\x3e\xbf\x8f\x2f\x62\x35\x32\xd5\x16\xcc\xcc\x1a\x2a\x16\xa1\xc3\xb5\xe6\x3c\x1b\xee\x61\x35\x63\x5c\x89\xb8\x2c\x06\x28\xff\x1c\x7e\x2c\xbf\xa9\xed\xef\x7d\x73\xed\x61\x96\xf6\xa3\xc5\x08\xec\x05\x47\xbc\x66\x87\x6f\x7e\xa3\x58\xb1\x4b\x69\x66\x07\x69\x8e\xf9\x37\x86\xe4\xd0\xf9\x41\x97\xe5\x87\xf8\x3b\x70\xaa\xae\x34\xfa\xab\x94\xcb\xd8\xfa\xc6\x2f\xef\x1a\x45\xa4\xb9\xa2\xd8\x70\xf4\x8f\x87\xc5\x0e\xba\x2d\x4e\xb8\x6e\xef\x5e\x9f\xa7\x29\x45\x3b\x7a\x16\x02\x76\xf4\xf3\xf9\xe3\x74\xd8\x23\x1e\xdc\x56\xf2\x1e\xc7\x55\x67\x6a\x94\xac\xa6\x59\xd1\x07\xc0\x07\x39\x10\x1c\x24\xf9\xb5\x83\xd5\x8d\x92\x6c\xc4\xde\x97\x38\xee\xdf\xa4\x6f\xe2\xd7\xe3\x27\xd4\xa3\x88\xf2\x62\x94\x45\x2f\x63\x69\xca\x51\x76\x3a\x50\xfc\x9b\xd3\xe5\x42\x96\xce\xfe\xa8\x48\x07\xa6\x88\x42\x34\xc7\x64\xda\x49\x2b\x96\xdf\xd4\xe0\x8b\x33\x07\xbc\xcb\x2c\x42\x1c\x54\xad\x99\x85\x33\x56\x9e\x1f\xda\x0b\x7d\x71\xf4\xf2\xcb\x65\xd0\x9a\x9d\xdd\xef\x2c\x16\x5a\x4e\xb6\xb1\xd5\x51\x9d\x94\x2b\x9a\xac\x65\xf3\xa2\xcc\x7d\xdd\xe1\x76\x3f\xf0\x62\x4f\x48\x5b\xf0\xff\x7f\x50\xee\x6d\x19\x0f\xf6\xd3\x2c\x1d\xf5\xfa\x4b\x26\xb3\x2d\x8f\x5c\xff\x51\xe0\x47\xfa\x3f\x52\x10\xdb\x7c\xb4\x18\x47\x34\x33\x69\x29\xf7\x96\xab\xb4\x9f\xf9\x75\xad\x02\x23\xa9\xa3\x51\xe2\x56\x94\x20\x4c\xd5\x56\xaa\xeb\x2a\xcc\xce\xb2\x67\x13\x9a\x57\x68\xf9\x6e\xaa\x19\x00\x44\x4d\x25\xd7\xda\x52\x34\x7f\xf9\x0b\xed\x17\x5e\xd8\x51\x5e\xbd\xb4\xcc\x5b\x8e\x6e\x7f\x51\x37\x62\x8e\x23\x1d\xe1\xe6\x24\x2d\x72\x15\x8a\xe7\x7d\x28\x3e\x38\xed\x3c\xce\x1f\xae\xd0\xbd\x0a\xfb\x90\x67\x6b\xb2\x06\xb0\x30\xb3\xbd\x19\xd6\x71\x3e\xda\x10\x7d\x8e\x51\x41\x2e\x88\x12\x3f\x1c\xdb\xd5\x51\x90\x9d\xdf\x18\xab\xdf\x79\x5e\x3b\xa1\x9c\x56\x2a\x44\xa7\xc1\x51\xe3\x6f\xd4\xa8\x80\x1f\x8d\x55\xbb\xf2\x9b\xaa\x46\x1a\x8c\x32\xd1\x01\xc0\x8f\x63\xf1\x68\x7e\xe3\x1a\xa7\x65\xd8\x1f\x0d\xe4\x09\x54\xbc\x1e\x11\xff\x3f\x22\x95\xdf\xf3\xee\x0f\x5e\x34\x61\xba\x98\xa7\x09\x83\x2f\x50\x5c\x7f\x4f\xa9\x4f\xbc\xa7\xb3\x92\x13\xc1\xe3\x35\x98\xfa\xc1\x69\x1c\x13\xdc\x44\x42\x70\x94\x8e\x52\x93\x86\x4f\x96\xe6\x96\xa6\xca\x68\x55\xc0\x1f\x17\x37\xf6\xac\xd2\xcf\xb9\x81\xc5\x06\xc8\xe8\x44\x0d\x4f\xbb\x77\x2f\xb7\xdf\x15\x8c\xee\x04\x96\x09\xbf\x69\xc8\xd5\x0e\xb5\x17\xd3\x2c\xa9\xe8\x99\x07\x4a\xcf\xbc\xa9\xa7\x50\x96\xfd\x3c\x90\x92\xe5\x04\x2e\xbd\x3c\xe4\x26\xc3\xac\xcc\xe4\x7d\x99\xf7\x32\xae\x02\x51\x47\x40\x16\x35\xc1\xae\xf9\xf2\xd0\x18\xa6\xb9\x6c\xb8\x26\xce\x59\x0d\xad\x35\xaf\x4c\xda\x5a\x4a\x82\xf0\xa2\x2a\x85\x2f\x02\xae\x2f\x2c\x8a\xcf\x72\x29\x2f\x14\x57\x45\x91\x3d\x17\x6c\x91\xd6\x99\x5f\x98\x2f\xb3\x62\x50\x49\x91\x61\xfe\x2e\x3d\x20\xec\xec\x3f\x1a\xab\x89\xde\x37\xe8\x40\xc0\xdc\xe2\xec\xd8\x1b\xe3\x62\xdb\x60\x14\xf3\x2e\xe2\x34\xf0\x4d\xdf\xc4\x42\xc1\x69\x7e\xd9\xc9\x95\x50\x73\x8e\xcf\x72\x74\x67\x6f\x04\xda\x78\xee\xa7\xda\xe0\xe1\x72\xed\xe6\xef\xdd\xdb\x1e\x9a\x24\x0a\x97\xd7\x68\x59\xe0\x47\x9f\x57\x2e\x2c\x75\xb6\x7f\x79\x7e\xe6\xe9\xa8\xe8\x97\x55\x4f\xcb\xa9\x49\x55\x07\xc0\x0a\x8b\xda\x37\x65\x5e\x5d\xfe\x47\xa1\xd5\xb5\x94\xf6\x7e\x43\xa1\x53\x98\x78\x59\x1e\x2b\x5a\xb0\x3c\x7b\xe2\x37\x4d\xc5\x11\x69\xa5\xe7\x13\x8a\x72\xf4\x13\xfa\x3d\xd8\x0d\x6c\xaf\x8d\x40\x7a\xbb\x76\x84\x1d\x9c\x26\x83\x91\xed\x4e\x01\xeb\x19\xe6\xa1\xea\x2a\x17\x87\xd4\xb6\x75\x25\x27\x89\xee\x31\xe0\x28\xd7\xc6\xae\x1f\xf3\xe2\x8d\xda\x37\x94\xc7\x83\x89\x63\xba\xc7\x58\xd2\x97\x10\xf9\xf8\x8d\xe6\xde\xc3\x07\x88\x6e\x18\x12\x8c\x5b\xba\x11\x74\xab\xd2\xdc\xca\xba\xf9\x9e\xf2\x33\x5d\x9b\x7b\x41\x58\x5f\x77\x10\xc4\x90\x7d\x40\x73\x1c\x55\xca\xb1\xb1\x42\x6d\x9c\x0e\x5a\x5f\x9a\xe1\x28\xfb\x27\xb4\x09\x9c\x86\x91\x97\x6b\xb9\xa1\x2d\x46\xee\xa0\x39\x84\xdf\x8d\x76\x28\x5e\x7f\x58\x2d\x60\x1b\x9b\xf8\x26\x0f\x4d\x57\x98\x0e\x8d\x00\x4b\xc9\x93\xf3\xf4\x61\x8a\xf9\x80\x11\x1f\xc7\x91\xa3\x7a\x33\x62\xe0\xb8\x63\xbd\xf5\x45\x41\x9d\xb0\x66\x9c\x80\xc2\xd1\x4e\x76\x5e\xc1\x7b\xf7\x72\xc2\xb3\x93\x1a\x1d\xc8\x48\x76\xad\x2b\xa6\x35\x2c\x17\x10\xc5\x1f\x45\xb7\x12\xb5\xf9\xf6\x75\x07\xd3\xbe\xf3\xcb\x1d\x87\xa3\xf8\xe2\xa7\xc0\x63\xc6\x62\x00\xbc\x8d\xce\xa8\x67\xfe\x5e\x67\x6b\xe9\x44\x30\x3a\x12\x4e\x8e\x92\x91\xe5\x36\xaa\xb3\xa0\xf1\xda\x8b\x1b\xf5\xed\xb6\x30\xdf\x1e\x0d\x7b\x99\x61\x87\xa1\x79\xa7\x4c\xa3\xb0\xda\x67\x83\x27\xb5\xd0\x9e\x5d\x8a\x92\x08\x4a\x98\x6e\x71\x9c\x1a\xeb\x99\x93\x60\x25\x57\x4d\x92\x18\xfa\x57\xae\x5d\x5e\x5e\xb7\x18\xfb\x34\xc8\x89\xd2\xf6\xe4\x50\x2d\x87\x9c\x02\x4d\x37\xb1\x3b\xc9\xd9\x78\x3b\x5d\x32\x8a\x00\x96\x0b\xc6\x6f\xbf\xe4\xcd\x98\x46\x4f\x74\x14\x5e\x98\x5d\x07\x85\xd9\x4b\xdf\x88\x5e\xd5\x09\x45\x92\xb6\xa6\x2c\xf1\x12\x12\x56\x43\x8b\xee\x8e\x72\x77\xfa\x88\xe2\x2f\x3a\x59\xad\x8e\x87\xd4\x5c\x0f\x94\x40\x29\xa3\xa8\x45\xf7\xa4\x2e\x7f\x05\xa0\x66\xa1\xa8\xd0\x17\x94\x9f\xce\x85\x06\x82\xe5\xbc\x32\xc5\x9c\xf4\xb0\x86\xe3\x63\xcf\xcb\xbc\xa4\x40\x29\x6f\xd3\xcf\x14\xfd\x37\xc9\x35\x32\x1b\xae\x85\xb1\xcc\xb8\x11\xd6\x6e\xa8\xd1\xcb\xed\xca\xf9\xa0\xc5\xd0\x46\xc3\xcc\xb2\x79\xa4\xd8\x2b\xaa\x5a\xea\x82\x03\x07\x45\xb9\x59\xb4\x71\x6c\x28\x7b\x47\xef\xef\x08\x12\x25\x8c\x00\x5f\x0f\x94\x02\xbc\x16\xf2\x4b\x47\xd9\xc3\x3e\xf1\xbe\x37\xf6\x55\xf9\xff\xa3\x21\xdf\x27\xc7\x24\x90\x2f\xca\x15\xbe\xc8\xfc\x3d\x7a\x46\x38\x17\xa9\x25\x33\xbf\x39\x41\xd0\x4f\xc7\x6d\xf6\x2d\xfb\x57\xc6\x15\x22\x2c\x3d\x38\x84\x82\x37\xb5\xb7\xfd\x63\xeb\xd8\xf1\x04\x56\xfb\x5b\x30\x58\xa6\xa2\x78\xe1\x71\x7a\xf0\x12\x09\x76\xbb\x3e\xf4\x2a\xce\x18\x69\x55\xa9\xb6\x55\x0d\xb7\x58\x1e\x11\x51\x56\xf4\x55\xa7\x0c\xae\x88\xc0\xbc\x03\xb9\x85\xf3\xc9\xbb\xc3\x8d\x92\x6e\xd4\xd5\x47\x33\x83\x1a\x1c\x5a\x61\x9f\x03\xfb\x34\xda\x66\x8d\x92\xd5\x28\xf6\x80\x34\xdc\xb9\x5b\x4a\x76\xf9\x96\xc7\xcc\x8d\x22\xd2\x9d\xe6\x23\x10\xab\x0a\xd2\x2c\x40\x75\xde\xd3\x6d\xcf\xc3\x4d\x62\x64\xf9\x2f\x41\xf5\x0c\x43\x14\xc6\xb5\xf2\x9b\x2a\xc3\xc6\xc6\xd0\xa3\x42\x45\xf1\x1e\xa4\x2b\xf8\x4d\xc5\x41\xad\x6f\xbb\xa3\xb8\xcc\xeb\xca\x7f\xcd\xd6\x57\x41\xc5\x89\xdd\x8f\x6d\x57\x6d\x1c\x42\xbb\x5c\x9d\x42\x2d\xa7\x61\xb2\xe1\xee\x6a\xf8\xb2\x0d\xfb\x93\xad\x67\x9e\xaf\x98\x5f\x63\x41\xa0\xbf\x2e\xff\xbf\x96\xcc\x71\x40\xcd\x41\xd4\xcd\x47\x83\x81\xcd\xb0\xab\x50\x34\x43\xf2\x16\xcf\xe2\x12\x7e\xa1\xec\xaa\x26\xa7\xbd\x54\x3d\x15\xcc\x28\xf5\xbc\xf2\x82\xc2\x49\xf6\x47\x8b\x36\x9b\xf0\xd3\xe7\xb7\xc7\x0a\x62\xf7\x1e\xad\x00\xfc\x82\x7f\xaf\x51\xda\xa6\x67\x5e\x8e\x12\x4b\x53\x12\xae\x81\x69\x58\xb9\x79\x5a\x29\x69\xdd\xd2\xa4\xcc\x53\x8a\x6d\xb6\x11\xa8\x1e\xbf\xae\xb9\xe3\x34\x93\xc1\x11\x4e\xf6\x79\x65\x52\x8d\xe1\x8e\x80\xad\xfd\xa4\xcd\x44\x74\xf0\x94\x4f\x90\xed\x6b\x69\xad\x8b\x95\xed\x56\x98\x55\x79\x42\x98\x32\x39\x4c\x8a\x28\x8c\x8a\x35\xfa\x36\xfc\x60\x18\xc0\x63\x69\xc2\x76\x03\xc0\x92\x13\x8a\xa2\x30\x30\xa1\xea\x00\x5d\xd6\x51\xeb\x72\x53\xba\x7d\x70\x7a\xfe\xf1\x32\x85\x71\x46\x84\x73\x92\xf3\x6c\xeb\x28\xd5\xa3\x4d\xdc\x2b\xac\xfe\xa9\x0e\x5d\x0d\xea\x3b\xb8\xbd\x22\xd0\xbc\x4e\xc5\x2c\x92\xfb\x53\x88\xad\x2e\x59\x9b\x9f\x39\xc0\x07\xfd\x1b\x5a\x7d\xe2\x89\x75\x4a\x87\x38\x5f\x47\x01\x8b\xb9\xd6\x9f\x53\x42\x88\xf8\x08\x5e\x3c\xc6\x6e\x77\xf1\x74\x80\x54\xd9\x0c\xf4\x08\x75\xec\xe1\x4b\x37\x54\xc5\xcc\x0a\x29\xfc\x7b\x6b\x2e\x23\xfb\xe6\x40\xc4\x12\xa3\xef\x96\xc7\xe3\xff\x1f\xb4\x5c\xf8\x75\x6d\xcf\x97\x07\x73\x98\xa3\x0e\x12\xd5\x32\x25\x06\x76\xd2\x25\x09\x8b\x65\x79\xd6\xf2\x0b\x0c\x73\x07\x7e\xdd\x64\x5e\xb4\x98\x59\x4b\x2e\x5a\xc8\xf4\x30\xc5\xe1\x76\x2d\xbf\x69\x1a\x98\xa7\xa3\x62\x29\x4e\x57\x69\x01\xe0\xfc\x01\xd6\x9a\x5f\xab\x8e\x8e\x49\x92\x74\x94\x80\xac\xbd\x4b\xe5\xf6\x1b\x74\xd3\x9d\xba\x55\xf9\x04\x9d\x9c\x9b\xd3\x32\xbd\x16\xa8\x95\xae\xd6\xe4\x05\x6c\x7c\x74\x50\xce\xa2\xe7\xc0\x6f\x82\x0a\x34\xd5\x77\x22\xbb\xd6\x64\xa8\x90\x3d\x96\x0b\x88\x25\xa9\x55\x7c\x62\x1f\x47\x85\xcd\x44\x08\x5b\x44\x73\x3d\xf9\xe0\x84\x82\x04\x0e\x23\x1b\xda\x49\x95\x5c\xbe\x4f\xb4\x1b\x9c\x35\x5f\xc5\x5a\xe6\xff\x30\xf6\xd6\x8d\x5f\x55\x93\x26\x3b\x18\x2a\xf0\x05\xa3\x29\xf9\x4d\xa0\x0c\x70\xe3\x38\x45\x23\x11\x07\x1f\x3a\xdc\xfc\x7a\xdd\x87\x72\xfb\xd2\x30\xcd\xc0\xc4\x29\x7f\x7d\x85\xa4\x2c\xb8\x01\xad\xde\x77\xbd\x96\x44\xed\xdd\xdb\x36\x61\x96\xe6\xf9\x94\x6f\x3f\xc0\x4d\x13\xcb\xf3\x3e\xca\x5b\xb4\x38\x7e\xa2\x7c\x41\xbe\x83\x6f\x91\x7c\xc2\x49\xa2\x66\x51\x11\x85\x39\xf3\xec\xc4\x36\x8f\x7e\x1d\xd2\xab\x49\x1a\x8a\x3b\xa1\x87\xf2\x33\x70\x5d\x37\x6b\xe9\xda\xc2\x34\x63\x81\x4d\x26\xe4\x7f\x34\x2b\x5e\xd3\xa3\x93\xc0\x5b\x53\x7c\xd8\x40\x0f\x9e\x11\xdd\x6d\xce\x8d\x9d\x30\x94\xd3\xc3\xac\x8f\xcc\xcb\x52\xba\x97\x82\x73\xa4\xaa\xb3\xb9\x8a\xaa\x14\xce\xbf\x37\x55\x13\x34\x2f\xd2\xcc\xe6\x7b\x7c\x1e\xb0\x73\x5d\xc9\x52\xa0\x97\x2f\x73\x4a\xdc\x1f\x04\xe0\xd7\x95\xd8\x09\x9b\x3a\x29\x28\x8c\x3c\xf7\xdb\x81\x52\x5e\x3f\x0a\x4a\x33\xff\x33\x68\xcd\x09\x05\x93\x2e\x53\x20\x72\x2a\x8a\xec\xec\xd4\x47\x85\xed\x45\xbb\x14\x41\xbf\xba\xa5\xd4\x8d\xfd\x90\x40\x9d\xef\x9f\x8d\x3e\xbb\x44\x1a\x10\xe8\x05\x03\x6c\x84\xec\x0d\x56\x49\xec\xc3\xdf\x10\xd0\xe6\xdb\xb1\x41\xc2\x25\x80\x3f\x65\xab\x71\x07\x21\x5d\x78\x3f\x9e\x83\xd3\xcb\xec\x2a\xcd\x12\x90\x38\x1c\x51\xd0\x7b\xc0\x8a\xd8\x1b\xae\x56\xd4\x3e\x3f\xdf\x1e\x46\xc5\x92\x89\xe3\x1c\x0d\x44\x56\xce\x1c\x2b\x40\xee\x75\x2c\x4a\xc4\xfb\x6d\x35\x92\x27\x59\x22\x15\x66\x59\x70\x92\x9c\xa5\xe2\x81\x48\xca\xfa\x71\xe0\x80\x7e\xba\x3a\x49\x42\x27\xe8\xd5\x20\xfb\x71\x30\xde\xd9\xd9\xcd\xd3\xba\xc3\x7b\xbe\x69\xf4\x32\x30\x51\x52\x98\xc8\x7b\x70\x8a\x9b\xa4\x87\x01\xbd\xad\x52\x93\xf2\x58\xcf\xa8\xb0\x74\x63\xfb\x7b\xc0\x51\xf1\x1b\x85\x6a\x82\x5a\x43\x9a\xe5\x4f\x7a\xcc\x02\xdb\x99\x20\x28\x4f\xe0\x88\xc6\x79\xfd\x4f\x03\x85\xe4\xe5\xd2\x4f\xb2\x14\x4d\xa6\x65\x97\x44\xd4\x53\x9b\xd0\x02\x65\xa3\x15\xb8\x5b\x22\x8b\xbb\x03\xe8\x33\x9a\x01\x98\x0e\xe1\x17\xfc\x90\x9e\x28\xe2\xc2\x37\xc7\x0a\xd8\xce\xbd\x3d\xee\x58\xd3\xbe\x15\x39\x04\x3a\xe3\x5d\xfa\xfd\xcc\xf3\x5e\xf4\xc0\xa9\x4d\x9d\xa0\x0e\x03\x88\x32\x50\x64\x40\x28\x83\xc9\x21\x06\x23\x1f\xd4\x02\xc0\xbe\x39\x1a\x86\x4f\xd0\x55\xa0\x1c\xde\x54\xa0\x99\x3f\x53\x01\xe0\x7e\xd3\xd3\x0b\xcd\x60\x68\xb4\x83\x2a\x56\x0c\x06\x21\xfc\xba\x56\xcb\xcc\xce\x96\x2b\xde\xa2\x79\x27\x36\x0f\x2d\x6f\xf9\xa0\xd2\xd7\x61\x6c\xd6\xf2\x29\x3f\x16\xfb\x88\xba\x96\xa8\xf4\x7f\x4c\x71\x06\xb7\xfe\x43\x95\xfe\xbe\xa7\x19\x71\x97\x9b\x5a\x61\x84\x67\xa5\x75\x80\x47\x7a\x7c\xac\xa6\x99\xc7\x15\x5e\x7c\xc9\x24\x32\x8d\x7a\x96\x5b\x17\xe0\x4f\xf3\xeb\x8e\x24\xf5\x26\x31\x71\xcf\xe6\x8c\xce\xe7\x3a\x2c\xd0\x35\x59\xc5\xae\xde\x2e\xef\xd6\x00\xad\xaf\x11\x74\xc5\x99\xcd\x6d\x95\x30\x42\x95\xfa\x93\xbf\x49\xc2\x48\x2b\x20\x29\x95\x24\xd5\xb5\x7c\x5f\xa9\x83\xbc\xad\xc6\x2b\xcb\x76\x30\xb4\x19\xc8\x2a\x0c\x45\xa4\x8f\x10\x58\xa2\x67\xd2\xe4\x11\xf7\xac\x9b\xc0\x55\x7e\x7a\x65\xbf\x32\x8a\x56\x4c\x6c\x93\x62\xca\xcf\xd6\xbf\x1b\x28\x61\xf6\xd3\x5a\x91\xe7\x6d\xfa\x5d\xd2\xcf\x54\x72\xf8\x6f\xab\xc9\x6f\x4c\x50\xbe\x83\xd3\x5e\xd9\xbd\xdc\x9d\xfc\x46\x5d\x0c\xf5\x7a\xf3\xc7\xe9\x62\x64\x06\x4a\x4b\xdb\x61\xef\x9e\x77\x53\xd0\xed\x64\x51\xeb\xbc\xd8\x5c\x21\xc4\xf2\xb8\x8c\xea\xa4\x6d\x88\xa3\xf1\x07\xe3\x1a\x38\x12\xe1\x96\x27\xe3\x52\xba\xd3\x81\x25\xd3\x55\x65\x57\xf9\x7b\x2a\xd3\xff\x2d\xee\x91\xe3\x2c\xfc\x50\x4d\xb2\x2f\x21\xef\x73\x5d\x0a\x07\x80\xe1\x65\x0d\xf0\xfe\x0f\x02\x05\xa1\xfd\x40\xa9\x9f\x17\x7d\x9b\xdb\x3d\x14\x55\x90\xe8\x7e\x2b\x50\xd6\x94\x8f\x60\xac\xe9\x38\x9c\x07\x45\xff\x19\xab\x1a\x2d\xe6\xc9\x8e\xef\x7c\x9f\xfc\xf4\xba\xe7\xdf\x6d\xeb\x78\x1b\xa2\xd6\xba\xe3\xb5\x9d\x7d\x92\x62\xea\xbd\x7f\xfa\x18\x35\x50\x70\x4f\xf8\x10\xc7\xae\xdd\xd5\x71\x6e\x35\x69\xba\x34\xe1\x9b\x02\x8c\xac\x95\x3d\xe2\xcb\x8f\x75\x37\x6b\xce\x6d\x98\x26\xdd\xdd\xad\x2f\x7f\x41\x9d\x88\x22\xcf\x74\x9c\x9e\x02\x7d\xd6\x83\xbf\x8c\x6b\x13\x53\x04\x45\xa8\xe0\xee\x3b\xdb\xf0\x8f\xbd\x0a\xe7\x15\xbf\xd2\xff\xf7\xf6\xba\x12\x72\xde\x20\x83\x46\xc8\xc5\xdd\x0b\x9e\x50\x18\x1d\xe0\x55\x99\x47\x28\x66\xcb\x40\x9f\x48\x31\xf9\x84\xca\xce\x57\x6c\x9c\x0e\xcb\x22\x61\xb7\x52\x70\x86\xc1\x82\xb8\x52\x2b\xa3\x89\x07\xe8\x66\x23\xe5\x67\xcb\x19\xd6\x5f\xa7\xed\xbe\x79\x3c\xf0\x29\xf5\x2d\x5a\xb2\xdc\x9e\xa6\x55\x2a\x52\xed\x58\x59\xfc\x89\x1d\x25\x8c\x1f\xa7\xe1\xf2\x2e\x7f\x62\x40\xde\x10\xcf\x1c\xd0\x21\x1c\x77\x93\xeb\xca\xce\x97\x8d\xde\xdc\xb8\xce\x6b\x91\xbe\x15\xf8\xae\x2d\x23\xe7\x54\xd8\xf1\x9e\xb9\xbe\x26\xf8\x47\xbf\xfa\xab\x13\x9e\xd9\xf9\x00\x09\x62\xa0\xbf\x33\xd9\x51\x5e\x4b\x3f\xab\xb8\x67\x2e\x99\x41\x3a\x02\xb7\x87\xe9\x5b\x58\x59\xc2\xe5\xda\x1a\xde\x3f\x0f\x69\x02\x74\xaa\x5d\x67\x6d\x61\xda\x6d\xcf\x86\xdc\x30\xb7\x59\x94\x8e\x72\xf1\xb5\x72\x96\x6f\x4e\x5a\x7b\x0b\xc9\x21\x8d\x27\x3d\x21\x86\x89\x3e\xa2\x19\x4f\xcb\x42\x84\x5b\x74\xdf\xd4\xf5\x3c\xe3\x68\xd9\xae\x46\xb9\x9d\xa2\x9b\x89\x62\xfd\xf6\xd8\x35\x33\xff\x8b\x27\x3a\x6a\xf2\xc8\xcc\x68\xad\x26\x8b\xd3\xef\xde\x58\x5b\x4d\x17\x11\x64\x37\x51\x87\xbc\x31\xf6\x72\xbd\x6f\xd4\x10\x86\x33\x07\xda\xdd\x68\xc5\x66\x79\xb4\x14\x31\x94\x01\x57\xb9\x8b\xd2\x37\xe5\x93\x25\x23\xe5\x6d\xeb\x0d\x48\xac\xc5\x98\xd8\xaa\xb9\x87\x70\x39\xb4\xa7\x4b\x91\xeb\x74\xfe\x83\xd3\x8c\xfe\xd1\xd9\xe6\x29\xe5\xfd\x72\xca\x57\x58\x51\x16\xc6\x72\x50\x23\x13\x7a\x05\x77\x94\xdf\xa8\x86\x73\x18\x47\x83\xc5\xf2\x62\xf6\xcd\x6d\x3e\xd2\xf1\xb5\xea\x2e\xda\x51\x62\x10\xed\xb5\x46\x06\x66\x38\xa4\x5a\x40\xf7\x5e\x16\xa6\xe5\xb5\x6a\xef\x77\xed\x92\xd4\x54\x0e\x03\x1b\xf8\x31\xda\x79\x57\x36\x2c\x46\x43\x6e\x1e\xf2\xf6\x0a\x94\xca\xc7\x99\x26\xb5\xee\x3c\xca\xd9\x0f\x59\x5a\x65\x0a\x0f\x7c\x2c\xd0\xdd\x06\xa8\x10\x17\x51\x9a\x4c\xd1\x89\xe2\xb4\x1f\x67\x67\x39\xd1\xb9\x8a\x50\x2a\x64\x8e\x96\xb3\x78\xbb\xa8\x2b\xba\xab\xea\xa8\x20\x01\x90\x49\x05\x14\x66\xf1\x6a\x91\xc5\x2d\x2f\x52\x66\x2a\x88\x29\x82\xa0\x72\x95\x92\x49\xba\xcc\x7c\x76\x7a\x18\x82\x2c\xfa\xaf\x1e\xef\x78\xba\xe1\x2e\x3a\x6a\x44\xd6\xa7\x11\x9b\x9b\x80\x8c\x8a\x95\x84\x54\xe6\x2c\x5d\x1e\xbf\x6e\x18\xdb\x43\xf7\xaf\xaa\x7b\x72\x4a\xeb\x9e\x9c\x52\xea\x32\xab\xfd\xa8\x10\xde\x3f\xb2\x0d\xf6\xdf\xe0\x37\x4a\x24\x2f\x4b\x73\xc3\x9d\x23\x64\x41\x77\xc6\xca\x89\xe2\x8e\x52\x43\x1b\xe6\x6b\x71\x1c\x8d\x06\xbb\xcb\x15\x27\xc1\x86\x9e\x83\x14\xac\xe5\x46\xd4\x51\x48\xd5\xbb\xd2\x94\x6f\x75\xd4\x09\x0d\x99\x61\x44\x55\x3c\x45\xf4\x6d\x27\x3b\x54\x4e\x20\x42\x9f\x46\xfe\x23\x57\xdc\xa0\xc6\x99\xa4\xab\x14\x32\x31\x5f\x3a\xaa\x3c\xe0\x8f\xba\x38\x44\xde\x8d\x42\xf4\xc3\x96\xba\xa1\xc0\xb7\x13\x60\x5f\xa1\xfd\x7b\x49\x5f\xb4\x32\x21\xf2\x16\x45\xca\x91\xe8\xbc\x32\x42\xfa\x53\xf5\x08\xa8\x85\x93\x26\x93\x5e\x79\xf8\x04\xa5\xf3\x22\xd1\xaa\xdc\xe7\xaf\x28\xc4\xc6\x95\xda\xde\x99\x9d\x6d\x17\x99\x95\x8a\x15\xe7\xde\x77\x94\xf0\xc6\x77\xbc\xab\x6c\x9a\x14\xfd\x78\x6d\x87\x9f\x4b\x7f\x63\xac\x3a\x48\x93\xeb\xaa\x6d\x00\x8f\x4f\x3a\x95\xff\xd9\x2f\x74\x7c\x7d\xb9\x7b\x5d\x99\xf8\x9f\x1e\xb7\x7e\xed\x9f\xb8\x11\xaf\x8c\x72\x96\x97\x33\xcd\x32\xe4\x4a\x8e\xdf\xd4\xaa\xf6\x83\xd3\x87\xda\x99\x89\x72\x91\x2b\x56\x4a\x67\xcf\x3a\xa5\x33\x0f\x60\x28\x46\xe4\xe6\x5b\x2e\x31\x49\x0d\x54\x9a\x50\xbb\x39\xfb\xe6\xda\x71\xb4\x68\xe3\x8a\xea\x20\xad\x24\x81\x81\x3d\xac\x2a\xe4\x17\x47\x19\x8b\xb1\x30\x44\x2e\xf0\x1d\xf9\x63\x0a\xd2\x5d\xe6\x0e\xdb\xcb\x87\x85\x8d\xfe\x3d\xe5\x09\xce\x07\x20\x6a\xfc\xd3\xe8\x54\xf3\xbf\x42\xe8\x91\xf0\x5b\x7e\x32\x22\xcd\x44\xc7\x5f\x5e\x5a\xf4\x6d\x96\x3f\xe8\x71\x86\x1f\x10\xdf\x0d\xcb\x87\x9d\xec\x9d\xbc\xbc\xe3\x44\x5e\xa7\x32\x09\xc5\x1f\x6f\x20\x2d\xa8\x8b\xad\xca\x42\xa8\xae\x15\x53\xfe\x18\xec\xb9\x6f\x23\x89\x40\xb8\x2f\x02\xd5\x43\xaf\x1b\xa4\x91\x7d\xfd\x28\xef\xb7\xbc\x74\xe0\x86\xb2\xa2\xdc\x50\xc0\xd0\xd0\x14\xfd\xd0\x64\x05\xa2\x18\xee\x08\x72\x54\x7e\x5d\x83\x9b\x1c\x78\xae\xbd\x94\xc6\xd4\x74\xa6\x76\x49\xeb\xe0\xf4\xe6\x69\xf5\x84\x48\x35\x11\x87\xb4\xcb\xd4\xbc\x30\x2a\xdd\x10\x19\xaf\x37\x00\x96\xcb\xf2\x9c\x7e\xb6\x20\x17\x14\x10\xdf\x21\x78\xa2\xc1\xd0\x84\xc5\xa4\x52\xaf\xfd\xea\xb8\xda\xce\x9b\x13\xf0\xd5\x27\x3a\x1e\x98\xb3\x7d\xfd\x61\x75\x48\x0e\x48\xe7\xb2\xbc\xa7\x22\x94\xeb\xd9\xd8\x9e\x7a\x93\xc7\x29\xa8\xa7\x48\x84\x4f\xd2\xad\xe1\xd7\xb5\x00\x0f\x5c\xee\x4a\x9a\xe3\x4f\x1a\x39\x5f\x5a\x61\x32\x8e\x42\xe3\xfc\x9d\x11\x41\xdf\x54\x62\xff\xd7\xb1\x18\xa4\xbf\xe5\x7b\xcb\x51\xb2\x62\x13\xc2\x93\x2b\x05\xbd\xd7\x68\x81\xf3\x6b\xef\x1d\x62\xa2\xdc\xb2\xf2\x18\x8e\xe0\x1d\x1d\xb5\xcd\x2e\x6b\x18\x17\x2d\x77\x11\xea\x55\x0f\xd4\xf6\x4c\xc4\x86\xce\x4e\xc4\xd3\x63\xf8\xeb\x44\x9c\x72\x85\x64\x23\xc2\x26\x53\x53\x52\xd4\xa6\x7c\x4f\xeb\x67\x4a\x4d\xf1\xeb\x0a\x4d\x1b\x66\x36\x2f\xca\x08\x88\x0d\x8e\xf5\x2d\x2e\x37\xfc\xae\xe3\x94\x36\xa3\xc1\x30\xa7\xa3\xc0\xf1\xdf\x3d\x49\xfe\x76\x05\x06\xfc\x0b\x1f\xd3\x0d\x2c\xbf\xca\x76\xa3\x9c\x41\xd4\xc8\x1d\x79\x0a\xca\x6f\xdc\x48\xc7\xf4\x6c\x52\xd0\x49\x20\x15\x84\xcf\x3d\xef\xa9\xa7\x76\x53\x5b\xae\x1c\x53\x87\xc9\x8b\x69\x1c\xad\x58\x2c\x0d\x94\xa4\x7f\x88\x7f\xca\x6f\x9a\xe8\x18\x66\x38\x8c\x9d\xac\x0b\x3b\xc6\x51\x1c\x11\xf7\x38\x65\x91\x9d\x0c\x47\xc5\xa4\x77\xc0\xb8\x17\x28\x67\x8e\xd7\xe8\xc7\xba\x78\xa3\x64\x3f\x75\x99\x90\xae\x26\x4f\xa8\x51\xdb\xb7\x71\x43\x11\x8c\xc6\x1a\x0d\x0a\xaa\x11\x4e\xdd\x1b\xe8\x21\x8a\xd3\x34\x01\x67\x91\x90\xfd\x10\xd3\x21\xf4\x53\x4e\xa3\x2d\xce\x9d\x21\x12\x32\xc3\x03\xe5\x28\xc7\x76\x80\xc8\x13\x70\xbc\x9d\x0d\x00\x4f\x90\x1e\x4c\xcb\x39\x6a\x1c\x43\xab\x12\x55\xf8\x2d\xae\x1f\xc5\xd1\x88\x22\x19\x54\x6f\x26\x95\x87\xdd\x83\xeb\x0a\x59\x7c\x3f\xf0\xd4\x2d\x78\xd2\x8b\x34\xe1\xd6\x54\x4f\x96\xca\x62\x5a\xf4\xb7\x6b\x39\xae\xf2\xd7\x20\xc6\x3c\x88\x1d\x25\xf3\x34\xa5\x2f\xb8\x6d\xbd\x3c\x18\x9c\xf2\xe4\xec\xec\xe6\x25\x4d\x83\xb2\xd9\xc0\x24\x44\xba\xe6\xbe\x3d\x92\x2c\x69\x2e\x28\xaa\xd9\x09\xed\x3b\xc3\x82\x15\xce\xa3\xc3\x99\xf2\xe3\x24\x41\x29\x77\x95\x6e\xb1\xec\xd7\xad\x13\x50\x52\xd4\xee\xa7\x59\x91\x6b\x45\x73\xc4\xe5\xfb\x63\x4f\xcb\xbb\xdf\xb4\xb9\xc9\x38\x70\x89\x3b\x87\x5c\x7c\x05\x1e\x8f\xb9\xa1\xfa\x09\x71\x34\x88\xe0\xb1\xc0\xbc\x1f\x61\x77\xf8\x73\xf1\x55\xca\x38\xd1\x5b\xb8\x12\x78\x4d\x16\x19\xc4\x08\x37\x44\x21\x69\x6c\x77\x97\xd2\x99\x7b\xa8\x53\x23\x78\x8b\xd3\x4c\xf9\xa3\xc4\x76\xd4\x13\xc7\xee\x8c\x15\x86\x97\xfd\x86\xb4\xec\x24\xbe\xf1\x26\xd6\x25\x08\x12\x8f\x74\x1e\xf7\xc9\xb6\x1d\xda\xac\x48\xa3\xcc\xb6\xaa\xac\x4f\x65\x8d\xb4\x75\x15\xed\xdd\xdb\x7e\x71\x94\x17\x65\xfd\xca\xc8\x53\xec\xbf\x1b\x81\xf7\xd9\x7a\x5f\xc3\xd3\x2e\x8e\xb7\xfa\x12\x3d\xdd\xfe\xca\x4a\xd8\xd2\xa6\x4d\x5a\x85\xc0\x1f\x8e\x05\xe1\xde\x26\x2b\xda\x73\x4a\x6b\x74\x3b\x1d\x88\xd8\xe0\x8c\x7f\xc6\x99\xf1\x96\xea\x88\x0e\x49\x38\x92\xfc\xed\xa9\x36\x60\x35\x15\xec\x67\x91\x56\x91\x8c\x75\x31\x25\x52\xd4\x84\x9f\x94\x7d\xa8\xe4\x1f\x7e\x3c\x56\x95\xb6\xb7\xe0\x0c\x4d\xb6\x58\x1e\x0f\x2e\x12\xb1\xa0\x08\x9e\xc3\x0d\x65\xed\xfb\x60\x67\x2b\xd0\x67\x76\x96\xe8\x28\x4b\xa3\x5c\x86\x63\xd8\x61\xd7\x03\xdf\xa7\xbb\xee\x68\x5b\x4b\x99\xfd\xca\xc8\x26\x45\xbc\x36\xa9\xc0\x71\x40\xa8\x3a\x1d\xfb\xb9\x39\xc7\x05\xf1\x62\x21\xad\x1a\x22\x7c\xdf\x5c\xbb\x9f\xae\x9a\x0c\xb9\x2d\xee\xfc\x44\x47\x3d\x86\x89\xf5\x7a\xfb\x60\xbe\x5d\x80\x7c\xb2\x30\x5d\x71\x4a\x10\xa7\x05\x55\xdd\x64\x5e\xba\x11\x25\x06\xfc\x54\x10\xa7\xb0\x2f\x91\x40\xfe\x37\x0a\x58\xb6\x70\xe0\x0b\x2d\x4f\x66\x39\xa6\x0d\x12\x8e\xd5\x5a\x29\xf3\xcf\xed\x6f\xdb\xd8\x86\x45\x16\x85\x5c\xca\x3b\x30\x8b\x07\xb6\x34\x88\xd0\xcd\xb7\x97\xd2\xb4\x4b\x0f\x99\x49\x72\x15\xcb\x54\x75\x5e\x1f\x53\xbc\x76\xef\xf3\x48\x8d\x0b\x36\x0a\xa6\x13\x4c\x4c\x83\xfd\x09\xb6\x94\x99\x64\x99\xcb\x58\x69\xad\xd0\xe7\x4a\xcf\x45\x9f\x55\xab\xf1\xda\xae\xf2\x63\x1c\x95\x76\xe6\x80\xd3\x0e\xf5\xbd\x69\xc6\x24\xe0\xb2\x1e\x00\x2a\x84\xdf\xa0\x67\x88\xd5\x70\x9b\xb6\x21\xf2\x11\x1e\xd9\xf2\x7f\x40\xa8\x40\x68\xbf\xd9\x20\xa8\x18\xf6\x4d\xd6\xdb\xa2\x47\x79\x4e\xe9\x51\x36\x1a\x8a\x12\x85\xc5\xfd\x91\x83\x5b\x78\x27\xbd\x06\x1e\xe1\x7e\x40\x56\x20\xe1\x83\x70\xed\xf2\x01\xc7\xb8\x3f\xa9\x46\xb4\x66\xc5\x86\xc0\x1e\xb8\x36\xb2\x6b\x9e\x5e\xa2\x43\x03\x5f\xf6\x9a\x6a\x1d\x0d\x6d\x36\x88\x58\x64\x03\x07\x32\x0e\x47\x7e\xed\x3b\x47\x69\x9a\x17\x7b\xbc\xd8\x02\x90\x50\x52\xdf\xd1\x41\x8f\xbb\x7c\x98\x66\x7f\xa2\x9b\x56\xc5\xa7\x97\x59\x83\x34\xaf\xcb\xa7\xb4\xc9\x00\x6f\x45\xc8\x9c\xf7\x60\x64\x97\x47\x3e\xd6\xf1\xe9\xf8\xb5\x40\x65\xc8\x87\x95\xb6\x4f\x77\x94\x09\xae\x87\x91\x98\xca\xcc\xb3\xfe\x4c\x9e\x9f\x39\xd0\xce\x6c\x68\x29\xe0\x79\xf8\x26\x73\xc2\x25\x01\xaf\xf7\x61\xe7\xdb\x61\x4c\x88\x1a\xc1\xed\x20\xf5\x3a\xa7\x6d\x01\xce\x35\x09\x84\x26\x26\xcb\xd2\xd5\x56\xc5\xf3\x59\xcf\x16\x1b\xc0\x94\x83\x28\x16\x33\x3e\xe7\x59\x3c\x37\xe7\x36\xa0\xcc\xf5\xc2\xbe\x89\x63\x9b\xf4\xec\x2e\xfc\x22\xcc\xa3\x21\x2f\x85\xd7\xcc\x9b\xe6\xff\x40\x2b\x1f\x87\x27\x0a\x35\xac\x5b\xb6\xc9\xc0\x3f\x3a\x8b\xfb\x80\xc1\xcb\x26\x92\x14\x81\x45\x6a\x77\x40\x77\x24\x64\x51\xbe\x1c\xd9\x8c\x7a\xce\x50\xe0\x00\xd5\x4a\x3e\xce\x37\x2e\xcf\x63\xde\x84\x2c\x75\xb2\xa3\x82\x81\x59\x49\x99\x82\x27\xce\xf2\x1e\xda\x78\x6a\x2b\xb0\xad\x7c\x80\x07\xa7\x0f\x11\x52\x06\x8f\xeb\x07\xf8\xcd\x18\x8a\x31\x03\x0a\x4d\xe3\x4b\xe3\xd6\xf3\xf3\xde\x68\xc0\xc3\x4b\x2f\xd5\x6e\xfb\xde\xbd\xe5\x71\x1a\xa1\x3a\x10\xf5\x41\xba\x7b\x22\x3f\xd8\xe4\x69\x9f\xf7\xd3\xd5\x7c\x42\x03\xa4\x91\x95\xe0\x64\x62\xf5\x6c\xe4\xe2\xf7\x94\x2c\xe3\x62\x9a\x24\x91\x05\xbf\x8f\x27\x61\x15\x7f\x04\x7f\xb8\x7d\xa0\xd4\x39\xc3\x6c\x54\x84\xfd\x96\xf7\x96\x85\x7e\x0e\xbf\x56\xdc\xf5\x7c\x94\x0d\x33\x6e\xe1\xcc\x1c\xe0\x0d\x74\x11\x47\x3a\xbf\xa9\x6a\x5e\x3d\x25\x72\xb9\x18\x13\x01\x1a\x8b\x36\xc5\x49\x5d\x22\xdd\x54\x05\x9c\x7d\xa9\xb0\xd4\xa2\xc3\x59\x8b\xd6\xc5\xfb\x4a\xcc\x1b\x9d\x36\xfe\xff\x03\x2d\xbf\xe8\x5a\x53\xb9\x29\xb6\x7b\xf5\x7e\x18\x13\xa0\xc2\x9b\x44\x0a\x4f\x0d\xbe\x07\x1f\xef\x78\xcd\xb0\xef\x5f\x08\x94\x8b\xf5\x5d\xdc\x61\x21\x6b\x36\xc0\xe6\x7e\xe1\x0b\xbf\x3e\xff\x85\x5f\x9b\x7b\xc8\x8f\x96\x58\x7f\x02\xcd\xdf\x63\x4a\x74\xe6\xa6\x72\x2b\x62\x17\x36\x27\xc5\x59\x3e\x29\xe7\x72\xe3\x1d\x70\x3f\x0a\x94\xca\xa3\xa0\xbc\xb0\x10\xaf\x22\x1b\x42\x49\xb4\x87\x00\xd7\xe8\x63\x5e\x09\x54\xcf\xfb\xb6\xa6\xe3\x7e\xbf\x2e\x1b\xb2\xb7\xfd\xd4\x3f\xfc\x1c\xc7\x02\x39\xcd\xca\x8f\x92\x63\xee\x31\x25\xfa\x92\xe7\xd1\xf0\x6f\x94\x1b\x70\x4e\xed\x10\x0b\xe7\x5e\x01\x9e\xd0\xcf\x77\x54\x1a\xf9\xd8\xba\xbf\x13\x2c\xa8\x25\xe1\x5b\x82\xcf\x8b\xd6\xc4\x34\x96\x42\x4b\x43\x56\x7f\x79\x9b\xc5\xe3\x56\xf1\xbd\xab\x1a\x6b\x85\xed\xfe\xad\xf2\x0b\xb0\xf4\x77\x77\x94\xb5\x0b\x28\x93\xb8\x83\xb7\xf9\x7e\x0a\x0d\x88\x1e\x02\x1e\xdb\x03\x40\x96\xa2\xc4\x7c\x94\x66\x2a\x88\x8e\x93\x24\x3a\x22\x48\x13\xba\x24\x69\x4d\x29\x71\x2a\xf6\x6a\xc3\x00\x61\x72\xdd\x7b\x4e\xb5\x68\x24\x03\x1d\xa6\xbf\xdd\x51\x90\xf9\x7f\x71\x09\xe5\x2e\xbf\xc1\x3c\x03\x99\xd7\x2e\x7a\xb6\xe2\x33\xd0\xfa\xd2\x8c\xb3\xe9\x52\xe7\xcb\xd4\x3a\x1d\x95\x28\xb5\xd0\x1f\x64\x62\x91\xb6\x9f\x7c\x4d\xe9\x40\x3d\xbc\x4e\xc9\x09\x62\xea\x6b\x5a\xca\x9d\x29\x47\xd8\x01\x97\xb1\x1c\x51\xe1\x3c\xb6\x2e\xcd\xac\xc1\x28\xec\x3f\x54\xde\x4a\xe4\x33\xd7\xd5\x54\xf7\xe7\xe9\xf7\xe2\x41\x9f\xc3\x55\x39\xcb\x92\x99\x03\xae\x7d\x4c\xf7\x0e\x4d\x6e\xee\x44\x23\x74\xb4\xd6\x3d\x6c\xf6\x93\x5a\x92\x86\x8f\x50\xd6\x53\x44\x18\xc6\xdf\x9f\x1e\xbb\x84\xf8\xb7\x7e\x05\xf2\x68\xa8\xb5\x36\x9d\xbc\x2f\xf8\xc1\xd9\x30\x8d\x92\x62\xa2\x72\xd0\xb4\x9c\xca\xfe\x8e\x8e\x92\x0a\xda\x54\xb6\xd6\x8b\x71\x9a\x76\xe9\x40\x40\x63\xf6\xc4\x58\xf9\x55\x32\x64\xc2\xb1\x71\xca\xeb\x95\xc9\x91\xc7\x80\x9c\x77\x6d\xb4\x17\x6d\xe6\x08\x76\xe2\x97\xd5\x52\xf6\x55\x0f\xba\x08\xf8\xd4\x53\x7f\xdb\x9b\x31\xfd\x4b\x2c\x4f\x6c\xa6\xa3\x41\xeb\x85\x17\xf8\x1a\xb7\x61\xe1\xe1\x4e\x5c\xc3\x1c\x01\x0f\x02\x1a\x37\xec\x01\x46\x7d\x65\x2c\xd5\x9f\x8d\xf5\x7c\xe7\x1a\xe1\x6f\x18\x24\x4e\x95\xbe\x43\x7f\x38\xf4\xef\xeb\x78\x5a\xcc\x30\x5f\x57\x82\x95\xa7\xc6\x7e\xde\x78\x43\xd9\xa4\x5d\xa3\x47\x82\x43\xfa\xa8\x96\x42\xb8\xc7\x9d\x18\x4c\xc8\x6f\xa1\xfb\xcc\x20\x34\x4a\xfd\xf0\x2c\xfe\x24\x50\x3c\xe7\xbb\xc8\x03\xf9\xda\x91\x87\xb3\x6c\x5c\xa0\x58\xab\x3f\xc4\x22\x46\xeb\xa0\x85\x99\x11\xae\xe5\xed\x40\x69\xc2\xdc\xc2\xd3\x43\xf4\x39\x5a\xc3\xd0\x4b\x97\xa6\x17\x9b\x3c\x21\x9d\x03\xa7\x32\x34\x49\x05\xaf\x2c\x1c\x25\xac\x7b\xbb\x29\x35\xa7\x11\x13\x15\x78\x0e\x51\xfd\x91\xba\xa7\x1f\x35\xc0\x58\x0f\xb5\x07\x26\xcb\xa2\xb4\x28\x94\x90\xd3\xa6\xd6\xcc\xdb\x54\xc7\xb0\x7d\x49\x74\x1b\x18\x88\x0b\x72\xeb\x4f\x54\xa3\x1b\x12\x06\xfc\x1a\xbf\x98\xff\x91\xd6\x3e\x49\x13\x2d\x45\x53\x51\xea\x91\xf9\x6a\x4b\xa9\x6e\x7f\x9c\x86\x56\xb1\x1a\x85\x98\x31\x62\x9d\xb1\xa6\x08\xbf\x51\x1a\xc6\x22\x12\x98\x4f\x78\x10\x0e\x0a\x59\x84\xbf\x57\xe8\x0a\xf0\xd5\xc7\xc6\x55\xfb\xbf\xfc\x09\x7a\x7a\x88\x28\x6c\xdc\x8a\x1d\xfb\x3e\xa9\x3f\x48\x83\x9f\x96\x02\xc2\xe1\x4d\x42\x07\x8a\x12\x1b\x6d\x23\xec\xa9\xd7\x00\x57\xe2\x37\x5a\xb7\x72\xb2\xd3\xfa\xf2\x17\x3c\x1e\x66\x81\x45\xef\xbe\xf3\xc4\xba\x57\x7e\x25\x09\xe4\x43\x65\xa9\xe1\x13\x98\x07\xb8\xc1\x8c\x9d\xf2\x9d\xb1\x9a\xea\x81\x80\x81\x53\xe8\x61\x5a\x48\xc8\x37\x1e\xed\xf8\xc9\x12\x3b\x57\xa1\xd5\x76\x9b\x2a\x15\x84\xe4\x9d\xeb\x2a\xfb\x5a\x23\x1c\x8e\x73\x3b\x10\xe5\x46\x5a\xef\x22\xe9\xd8\xe0\x3a\x68\xc2\x70\x34\x18\xc5\xc6\xf5\xe8\xb0\x83\x0f\x07\xca\x30\xef\x70\x93\x79\xc4\x68\xb8\x68\x0d\x56\xa4\xab\xd1\x7c\xbd\xa6\x94\x77\xf3\x22\xb3\x49\xaf\xe8\xe7\x48\x11\x90\x97\xfe\x34\xf0\x64\x8a\x9f\x2a\xd4\x82\xcd\x73\x1b\x17\x2c\xb7\x83\x53\x84\xbd\x99\xf9\x8d\x1a\xb1\x24\xa6\xe8\x9b\xe4\xff\x65\xec\xdd\x7f\xe4\xb8\xb2\xfb\x70\xb1\x67\xf8\xd0\x63\x57\x8f\xd5\xda\xfe\xfa\x9b\x04\x8d\x64\x01\xc5\x86\x4c\x18\x09\xb0\x70\x80\x00\x35\x21\x67\x57\xd6\x60\x35\x1a\x90\x34\x69\x13\xfe\x41\xb7\xbb\x6f\x77\x97\xa6\xba\xaa\x55\x8f\x19\x0d\xff\x80\x04\x30\x02\xc3\x48\x90\x20\x81\x8d\x38\x08\x16\x0e\x0c\x38\xf6\xae\x37\xb1\xe3\xc4\x4e\xcf\xae\xbd\xeb\x24\xde\xb5\x25\xed\x4a\x2b\x51\xd2\x8a\xe4\x50\x24\x87\x43\x0e\x9f\xc3\xf7\x23\xa8\xf3\x39\xe7\xde\x53\x53\x45\x63\x7f\x52\x95\x38\xfd\xba\x75\xef\x79\x7e\xce\xe7\xd3\xaa\x08\x06\x12\xf4\x96\x6f\x9a\xe6\x19\x68\x6a\x50\x7e\x2a\x92\xa1\x2d\x95\x18\x6d\x35\x08\xa9\x1f\x2d\x7f\x41\x12\x0f\xca\x74\xe3\x65\x4f\xda\x44\xf6\x46\x98\x2a\xca\x77\x10\x69\x07\xfa\x3e\xd8\xbe\x8f\xcd\x3c\xab\x28\xba\xf3\x70\x29\xcc\xf2\xdd\x9e\xe8\xfb\x3a\x99\x36\xec\x33\x0c\x9c\x33\xc8\x51\x85\xe5\x17\x95\x8c\xf1\x59\x2d\x7a\xcf\xc5\x06\x18\x72\xaf\xe3\x32\x08\x7b\x3d\x8c\x0f\x20\x58\xbb\xa6\x08\xa9\xae\x4d\xda\x8f\x36\x6b\xa3\x24\x25\x54\x91\x23\xf1\xda\x0a\x14\xba\x72\xab\xd6\x03\x3c\xb2\xd0\x36\x51\x82\x6a\xd2\x51\xcf\x0c\xfb\xb2\xd0\xa8\xdc\x08\x14\xec\x60\xad\x31\x8f\x19\x9b\x74\x31\xfb\xdb\x60\x05\xdb\x1f\x46\x69\x3f\x87\x69\x18\x2f\x9a\x81\x45\x74\x0a\xeb\xbf\xa9\xc4\x2f\x36\x15\xef\x68\xdf\x8c\x42\xdf\xde\x90\xae\x1a\xbd\x50\xda\x6d\x4d\xa3\xb1\x26\xe4\x96\x19\xa0\x90\xa0\xff\x70\xb3\x8e\x2a\x9f\xdb\xae\x78\xf8\xda\x6b\xed\x23\x07\xf6\x69\x9e\x2f\x2a\x4f\x88\xf5\x69\xc8\xfe\x4c\x6f\x14\xe6\xf8\x7a\x0a\x2e\x25\x6d\xed\x53\x2a\x7b\x1b\xda\xd1\xc8\xd1\xcb\xe3\xf3\xff\x1a\xab\xc5\x37\xea\x6f\x53\x6b\xc6\x16\x22\x71\xdc\xc8\x0f\x34\xfa\xc5\x09\xb5\xff\x8b\x1f\xd1\x03\xe3\x6b\x57\x3b\x1d\xa4\x66\x68\x40\xd0\x86\x4d\xcd\xb3\x04\x7c\xa3\xce\xb6\x90\x9d\x67\x4f\xfb\x92\xfe\x6d\xa5\xbb\xb9\x13\x39\x14\x02\xa4\xfb\x14\x80\xc2\xab\xff\x06\x35\x5b\xf8\x1a\x4f\x44\x98\x22\x3d\xad\xc6\xe6\xa4\xc1\x6e\x22\xcc\xfd\xb5\x60\xbb\x29\x46\xac\x42\xa5\xf7\xd2\xfc\x56\xac\x7e\x79\x50\x1c\xe1\x43\xf9\x4b\x84\x8b\xdb\x4f\xb9\x65\xe5\x0f\x16\x8b\xfe\x12\xb8\xbc\x65\x4e\xb7\xe2\x6b\xc0\xc3\xfe\x63\x50\xaf\x57\xd8\xda\x25\x09\x1a\x14\x26\xed\x85\x46\x13\x6a\x56\x38\x0f\x37\xd4\xee\x5d\x0e\xf3\x61\x2f\x35\xcb\xf4\x1c\x91\x42\xdc\xc4\x1a\xf0\xf0\x2e\x3e\x5b\x6e\xfc\x18\xec\xf1\xa6\x01\xb0\xd2\xf0\x65\xd6\x70\xdd\xc0\x95\xbd\x0e\xec\x73\x0c\x09\x9e\xa7\xe3\xb8\x1a\x2f\xc8\x92\xa8\xa0\x68\xa2\x62\xd7\x7e\x2c\x4b\xa8\x80\x96\xc9\x8a\xf0\x1d\x35\xea\x4c\x28\x36\xa1\x24\xec\x32\xb5\xb2\xcb\x04\xcb\x2f\xcc\x37\x15\xaa\x05\x53\xbc\x39\xa5\x88\xb2\xaf\x57\xea\x55\xe5\xc1\x43\x5d\xfb\x6d\xa5\xa4\xdc\x31\xf1\x62\x5a\x8c\xf3\xee\xca\xe3\xaa\x36\x7a\x43\x4d\xbd\xac\x4d\xfc\x98\xc1\x05\xd8\x30\x64\x43\xb7\xb0\xdc\xc8\x79\x4e\x4e\x14\xe4\x12\xd5\x49\x21\x08\x69\xe9\xe1\x43\x7f\x3e\xef\xd4\x1e\xca\xcb\xf3\xed\x2c\x19\xd9\xe5\xa1\xc9\x61\xcc\x70\x0e\xdf\x53\xe7\xf3\x3d\xd5\x95\x0a\x93\xf4\x09\xb7\xd1\xff\x29\xaa\x94\xd8\xd4\x8f\x23\xf6\x96\x2e\xbb\x62\x37\xbf\xaa\xa7\x35\x3f\xa0\xa3\xc5\xf5\x8c\x89\x02\xfb\x43\x37\x41\xfe\xa1\x7c\x82\xe0\xfe\xfc\xa9\x19\x35\x7b\xf8\x78\x0d\xf1\x28\xce\x23\xb3\x8b\x61\x56\x84\x2d\x5f\xae\xff\xcf\xf8\x58\xbe\x51\x38\xb2\xe5\x30\xce\xaa\xe6\xf1\x80\x43\x62\x68\x9d\x99\x61\xb2\xdc\x35\x2c\x8d\x0d\x3f\xb8\xae\x46\xf3\x7d\x9d\xf8\x8d\x22\xcc\x34\x7c\xe2\x47\x13\x95\x33\xfe\xc8\x9d\xba\xb1\x49\x4d\x14\xd9\x88\xca\x3e\x88\x3c\x91\x1d\x82\xa1\x0d\x23\x76\xa8\x86\x3c\xd0\xdc\xa4\x28\x2c\xf1\x3f\x20\xa9\x10\x38\x93\xdf\xdb\x91\x49\x07\xf6\x71\x9f\x93\xdd\x52\xa8\xb6\x6f\x93\x2d\x94\xb6\x01\x2d\x39\xbc\x23\x6f\x26\x09\x9e\x5b\x4e\xf0\xe3\x6b\x94\x3a\xb9\xb2\xde\x11\xd7\x75\xd8\x50\xd6\x73\xb5\x56\xf2\xa5\xfa\xf2\x38\x49\x73\x32\x16\xf8\x59\xf7\xe9\x8b\xb8\x0a\x78\xf9\xb3\xf8\x86\xd6\x92\xff\x48\x59\xf3\x3c\x89\x6c\x9c\x87\x71\xd2\x52\xec\x26\x3f\x22\xbb\xc0\xd7\xb5\xec\x44\xf6\x40\x9c\x30\x8b\x11\x6b\x01\xd3\x27\x88\x2e\x70\xc3\x78\xac\x35\x4b\x36\xeb\xa5\xc9\xd8\xd7\x8e\x90\x12\xdf\x52\xe9\xf1\xad\x3a\x8f\xf5\xab\x07\xdb\xb9\x59\x74\xaf\x61\x6a\xd5\xc0\xf7\xd7\x9a\xc0\x4a\xb3\xed\x6e\x32\xb2\x0a\x30\xfd\x49\xa0\x08\xab\x3e\x51\xc6\x2e\x35\xbd\x63\x2b\x23\x46\x0e\x33\x9f\x13\xe5\xc8\xc2\xed\xa4\x81\x4d\x69\xba\x12\xc6\x03\x16\xd2\x00\x9a\xe9\x07\xaa\xf2\xf5\x67\x48\x1d\x50\xdc\x44\xde\x2c\x8d\x12\x35\x01\xf6\x83\x26\xfc\x53\x44\xc0\x4c\x6a\x5e\x22\x10\xb8\x1e\x78\x09\xa3\x29\xaa\x16\x09\x93\xbe\x87\x3c\x67\xe3\x22\xcd\xa8\xf4\x0a\xdf\xbb\x19\x78\x11\xda\xcd\x26\xb0\xad\x35\x69\xb4\x02\x55\x23\x29\x9f\x94\xef\xec\x44\x70\xe6\xe7\x4b\x3f\xea\x06\x51\x6f\x2b\x3d\xfb\x75\x05\x1c\x8e\x50\x90\x05\x76\x1b\xa1\xf7\x56\x50\x01\xd8\xb6\x1c\x6f\xce\x7b\x4a\x23\x03\x51\x2e\x4f\x75\x2a\xf0\xd1\x72\x12\xf7\x6c\xda\x2f\x22\x95\x5b\x5c\x09\x14\x7c\xf0\x4a\xed\xc7\xbc\xf6\x5a\x7b\x10\x25\x29\x55\x05\x45\x69\x6b\x4d\x69\x1c\x7f\x84\x15\xc7\x09\xbb\xac\x6c\x6a\xbf\x88\x3e\x43\xa7\x52\x90\x39\x6e\x56\xe9\x77\xbe\x30\xa3\x65\x71\x26\x6a\xd2\xe4\x92\x1a\x40\xbc\xa4\x60\x84\xac\xd8\x07\x97\xc2\x32\xd9\x58\xd8\x9d\xab\x95\x22\x55\xb9\x06\x22\x00\x40\x16\x56\x68\x91\xcb\x87\x2c\x63\xdf\x1e\xa5\x7d\x4f\xf1\x05\x74\x93\x64\xcc\x54\xbb\x78\xd1\x4d\x1d\x3d\xdc\x0c\x1e\x15\xe0\x7b\x1a\xc1\xf2\xa5\x88\x4a\x78\x94\x9f\x6f\x82\xed\x18\xa6\x32\x42\x1f\xd8\x34\x5d\x19\x99\xf2\x81\x08\x6d\xba\x50\xe8\xd2\xf9\x13\x72\x5d\x7f\x2c\xc0\xf6\x6c\xa2\x69\x3f\x46\x7d\x57\x87\x42\xd0\xb9\xe5\x7f\xd0\xc1\xd3\xfa\xe4\x73\x0a\x6a\x94\xdb\x34\x26\xb6\x72\x7a\x08\xaa\x54\x71\xd0\xd5\x30\x7c\x25\xce\xbe\x51\x18\xcc\x1f\x88\xfa\x8a\x1f\x68\xc1\x80\x08\xff\x7f\x5a\x54\x19\x70\xd3\xfa\x40\x80\xec\x7b\xa4\xfa\x15\x25\xc0\x77\xa5\x01\x37\xb5\xd0\xce\xf6\x8e\xf7\x1a\x61\x22\x93\xc9\x5e\x4d\x47\x5c\x03\xb6\xcc\x1e\x6a\xe7\x49\x9a\x17\x2e\xfd\x14\xaa\x1a\x4d\x61\x53\xe7\x68\x3a\xd8\x5e\x0e\x7b\x36\xae\x52\xe6\x5e\xd0\x94\xb9\x17\x2a\x7d\x6b\xbb\xb4\x32\x5d\xba\x73\xae\xae\x06\x0a\xc8\x82\x0c\x5d\x60\x01\xf4\x65\x05\x2f\x20\x15\xdc\x8e\xb5\xe3\x69\xef\x0d\x5b\x33\xfe\xfc\x5f\x51\xea\xdb\x3f\x50\xa4\x39\xe7\x27\x5a\xae\xd3\x90\xc0\x37\xe9\x99\x0b\xbb\x08\x4a\x7b\x68\xac\xad\x29\xc7\x70\x79\xa2\xda\xe5\x15\x0a\xa9\x3b\xa8\xcc\xf1\x4b\x1e\x59\x5a\xea\x9a\x34\x89\x94\x68\xd0\x65\x1d\xdc\x5f\xf6\x50\x90\x24\xce\x53\x43\xd6\x14\xd5\xc6\x6f\x06\x7e\x28\x97\x11\x00\x08\xa4\x4e\x39\xf2\x96\x41\xe9\x0a\x3b\x49\x17\x24\x9a\x4e\xf1\xe9\x80\x40\xf6\xcf\xe8\xb2\xd9\x9d\x86\x2c\x72\xa1\xdd\x29\x56\xa8\x92\x85\x25\xfe\xef\x70\xc0\x22\xdb\x57\xbe\xab\x68\xe2\x37\x98\xe6\x91\x59\x61\x39\x75\x58\xe3\x0b\x28\x01\xf1\x8d\x5a\x70\x93\x65\xe1\x20\x16\xf6\x2a\x3c\xb4\xe3\x0a\x9e\x7a\x3c\x90\x96\xe9\xd8\xa6\x69\x28\x6a\xe3\x08\x8c\xff\xfd\xc4\x73\xb2\x6f\xe8\xb1\xec\x0b\x4d\x23\xa2\x91\x83\x16\x71\x59\x6a\xa2\x84\x07\xae\xe0\x28\x63\x54\xed\x7d\xc5\x1e\x32\x2c\x7a\x60\x69\x85\xb3\xdd\xc2\x63\x46\x17\x01\xb5\x32\x47\xb3\x55\x25\xe0\xf2\x75\xc6\x8d\xa0\x02\xd4\x9a\xe8\x87\xa7\x72\x5e\xb3\x14\xc6\x20\x65\x14\x29\x6e\x3f\x8d\x79\x8b\x16\x1c\x9b\x8b\x9d\x81\x54\x2c\x64\xe7\xff\xea\xcf\xfe\xea\xcf\x4e\x11\x35\x92\xd3\x5c\x74\xc8\x55\x00\xb5\x85\xd6\x45\x19\x0e\x43\x86\x63\x5a\x77\xd6\x55\x07\xe2\x2d\x5a\x5f\x69\xbf\xd3\x2a\x88\xbb\x53\x98\x9c\x5e\x58\x08\x4d\x1e\x72\x8b\x5d\x14\x8e\x62\x8a\xe0\x21\xe5\x31\xd2\xf5\x97\x1d\x3d\x32\x71\xc8\xac\x2c\x3c\x2c\x45\x3d\x59\x19\x9c\x6a\xa0\x08\xfb\x42\x3b\xb2\x7d\xb0\x1a\x20\x33\x98\x56\xbd\xf8\xbb\x13\x95\x3f\x9c\x57\xe8\xba\x7e\x94\x14\x69\x98\x39\x1d\x47\xd1\x68\xa5\x2f\xcb\x37\x6e\x83\x31\xc3\xc8\x94\x97\x45\x5b\xd3\x93\xb7\xfa\x9c\x9d\x0f\xb6\x83\xcf\x66\x0f\xb5\xbb\x98\x60\x47\x8c\xf4\xae\xa6\xae\x7b\x57\x53\x76\x58\x43\x2d\x66\x0d\xc9\xbc\x84\xe8\x40\x3c\xf2\xe7\x15\x7d\x6f\xd6\x4d\x8b\x71\x11\x25\x05\x43\xb1\x2b\x5d\x79\xc9\x7e\x54\xd1\x3b\x2a\x0f\x54\x3f\x14\x7a\x1d\xd8\x72\xd0\xeb\xf0\xb5\x8a\x97\x3b\x36\xee\x0e\x47\x26\x5d\x9c\x56\xda\x4d\xdf\x40\xc9\x95\x6f\x14\x78\x12\x93\x2f\x7c\x1d\x28\x6e\xdb\x3c\x35\xb9\x1d\x84\x36\xa3\xf4\xc4\xe1\x29\x1c\x51\xf1\x0e\x95\x9e\x6c\xaa\x8c\x04\x01\x9e\x4a\x7c\x0e\xba\x7c\xb4\x89\x53\x32\xb5\x63\x22\xdb\x3d\x2c\xe4\x6b\x18\x6e\xe3\xeb\xd5\xed\x27\xfe\xc8\x42\x3b\xb3\x76\x11\x0e\x58\xa4\xb6\x68\x0d\x45\x1c\xdd\x01\x02\xc3\xdc\xc4\x6c\x1a\x18\x7e\x8d\x6f\x03\x63\x77\x43\xc9\xd9\x5c\x6a\xa4\x7e\x1e\x13\x4e\xd5\xb2\x06\x93\x56\x56\x13\x5c\xa0\xc2\x66\xf6\xb2\x27\x4a\xf7\x26\xce\x93\xbe\x91\xd2\x03\x97\xca\xf7\x63\x33\xde\xd0\xfd\xca\xde\x19\xc5\x63\x3e\xbd\xaa\x65\x25\x76\xcf\x78\x58\xd4\xf3\xd4\x64\xa4\x46\xf2\x8e\xbf\xbb\x5a\x25\x22\x73\x02\xaa\xd3\x35\x05\xd7\x03\xfb\xda\xa9\xed\x14\xfd\x7e\x15\xe6\xba\xa1\xd4\x27\x36\x9a\x28\x56\x4b\x67\x39\x94\xd7\xa0\xc7\xf1\x11\xac\x04\xdf\x34\x8c\x0a\x2e\x90\xaa\x4c\xae\xb5\xb3\x91\x5a\xc8\xac\xd4\xf3\x7e\x28\x49\x18\xbc\xcb\x64\xc9\x87\xbf\xd7\x55\xb2\x79\x5d\x0d\x8a\xe7\x36\x8e\x43\x6a\xce\xbf\xe4\xd2\x6c\x5a\x42\x38\xbc\x53\x3a\xff\x0e\x14\x57\xe0\xa9\x4a\x79\x2c\x4d\x80\x37\xc6\x82\x7e\x6d\x52\x91\xf5\xa5\x57\x71\x0f\x96\x42\x34\x38\x78\xb1\xef\xaa\x32\xf1\x92\x78\xa8\x40\x23\x79\x3c\xd6\xfa\x3f\x2a\x46\x02\x9b\x0f\x09\x6a\xa8\x5a\xc7\x6f\xa9\x59\xa9\xb7\x34\x2b\x7c\x9a\xe4\x49\xbe\x32\x46\x4b\x0b\x9f\x8e\x39\x5f\x01\xf2\x2b\x5c\xd5\x6d\x65\x17\xb2\x62\x4c\xaa\x94\x69\x06\x5a\x00\xa7\x3f\x71\x60\x9f\x8f\xfe\x2a\x60\x83\x64\x44\x9f\x81\x3a\xc2\x77\x02\x3f\x52\xca\x55\x3b\x1c\x94\xab\xea\x79\x85\x3c\xaf\x41\x44\xb8\x65\xde\xaf\x07\xe6\x64\x48\x4e\x40\xa7\x91\xe9\x24\x29\x51\xfe\x4f\xf9\x80\x0a\x9d\x48\x24\x29\x3b\xd0\x3d\xc7\xf6\xfb\xbe\x42\x73\xe6\x66\x8c\xb7\x97\xe8\xad\xe5\x38\x59\xcf\xd7\x2a\xd4\x2f\xcf\xb7\x3b\x69\x68\xfb\x2d\x9f\x94\x4f\xe9\xb3\x34\xb5\xfa\x13\x7e\x96\x2d\x4d\xba\x91\x19\x01\x8c\x0d\x8c\x29\x2a\x8b\xe7\x14\x14\x16\xb6\x0c\x5f\x71\xab\x89\x97\x32\x59\x46\xb9\x5e\x58\x93\x79\x02\x93\x6f\x54\x8d\x3b\x0f\x23\xea\x59\x1d\x71\x8a\x4f\x97\xc8\x1e\x8a\x82\xde\xf6\x6a\x55\x19\x92\x25\xe3\xb1\x8d\x87\x36\x1c\x31\x0f\xb5\x13\xb5\x2e\x7f\x91\xc8\x8c\x6d\x5f\x83\x17\x89\x72\x83\xcf\xe9\x83\xcb\x9c\x17\xff\x94\x72\x32\xa9\x35\x34\xf5\xdb\x75\x24\xcb\x68\x45\x80\x4e\x90\xaf\x6b\xa5\x93\xb9\xb9\x76\xc7\x44\x78\xa1\xca\xca\xd0\xf0\x91\x82\x72\x93\xac\x54\x37\xb5\x36\xe6\x9e\x86\x30\xdd\xaa\xfa\xe1\xf5\x9a\x82\x12\xe5\x2b\x36\xcf\x05\x4a\x48\x3f\x57\x50\xa1\x38\x7b\x82\x0b\xf5\xc7\x6a\x10\x9b\x65\xf2\xfb\x07\xa4\x8d\x79\x8d\x76\x22\x5f\xd7\xd2\x45\x37\xc7\x60\xa2\x28\x49\xe2\x6d\x9a\x66\x77\x2b\x9a\x92\xfe\x44\x0e\x22\x6b\xfb\x45\x24\x0a\x6d\xa8\xf2\x9e\x87\x7b\xe6\x1b\x4d\x86\x1f\x45\x45\x16\xd2\x5c\x95\x1f\x3d\x39\xa1\x6a\x23\x27\x2a\x87\x30\x5c\xcc\xa6\x14\xf5\xfb\x49\x3f\xcd\xd8\xda\x31\xa3\x42\x86\xdb\x93\x27\xfd\xdc\x56\x38\xdd\x52\x0c\x87\xf4\x45\x50\x43\x61\xae\x68\x84\xae\xeb\x14\x97\xc1\x13\xde\xaf\x14\xa5\xc3\xcc\x3e\x47\xaf\x42\x5c\xbd\x73\xd5\x0f\x9e\xef\x61\xcf\x83\x2d\xfa\xa1\x92\x19\xfe\x01\x8c\x02\xda\x7c\x77\x81\xf3\x81\x63\xbe\x02\xac\x17\xcc\xe1\x07\x2a\x10\x81\x5b\x75\x68\x8f\xf2\x18\x28\x56\xea\x97\x18\xf3\x7f\x86\xd0\x1e\x4e\x88\xdc\xfb\x72\xb6\xe1\x28\x02\x7e\x4c\x63\x11\x00\xa5\x3f\x46\x23\x25\x08\xbc\x2e\x06\x8a\x21\xf6\x92\xee\x6c\xd6\xab\xd9\xf3\x64\x2a\xe2\x81\x24\xd2\x52\x66\xa5\x2f\xc3\x37\x41\x9d\x52\xf3\x68\xdb\x31\xf0\xa2\x7a\xc3\x04\x3f\xaa\x91\x70\x13\xdb\x01\xfd\xa1\xab\x8a\xcd\xc8\xbe\x39\xb6\x5d\x3f\x6c\x0f\x0b\x73\x57\x05\x9d\x77\x15\x81\x9b\xc9\x93\x11\x07\x81\x78\x1a\xf0\x68\x7c\xdd\xd4\xe1\x8e\xc2\x25\x87\x96\x07\x52\xea\xb4\x9a\x72\x82\x02\x28\xaf\x5f\x65\x9a\xad\x57\x74\x91\x87\x88\x64\x0f\x3d\x1c\x3c\xb5\x8f\x02\x3f\x40\xf5\xc3\xc0\x93\x87\x7c\xbd\x4e\x64\x55\x86\xc4\xc4\x0e\xcf\x11\x02\xe2\x15\x9e\xe6\xe6\x9b\xda\xab\x28\xd4\xef\xa4\x61\x6f\x00\xd5\x2f\xae\x58\x05\xde\x31\xd4\xa9\xab\x58\x43\x26\xb5\xb9\x45\x20\xab\x18\xda\xa4\xfa\x7f\x6a\x52\x99\xc5\x71\xcd\xc4\x53\x81\x07\x70\x58\x48\x34\xe4\x76\x4f\xeb\xf0\xbe\x07\x17\x02\x55\xa1\xbd\xaf\x52\xd2\xff\x1b\xa8\x33\x79\x2d\x50\xac\x14\x98\xa9\xc3\x87\x30\x7c\x5e\x4a\x99\xf4\x55\xa4\x96\xa9\xc0\xa9\xc3\x22\xed\x0e\xa7\x7d\xeb\xfc\x92\x8e\x59\xce\x28\x46\x60\x26\xea\x80\x9d\x7b\x5f\xc1\x4e\x4a\x7b\x45\x8d\xe8\x69\xaf\x09\xc6\x50\x2e\xbc\xcb\x8e\x99\xfa\xa8\x0b\x8f\xe5\x4e\x9e\x52\xd6\xe6\x67\x9e\x6b\x39\x46\xab\xc7\x57\x15\xff\xf2\x16\x51\xa7\xe0\x44\xdd\x66\x7b\x8b\xa1\xdf\x5b\x04\x4e\x91\x24\x83\x3e\x13\x39\xdc\x1a\x99\x5a\x54\x17\x6e\xe1\x08\x31\x17\x4e\xa0\xa6\x0a\xb6\x54\x77\x61\x37\x91\x13\x08\xd0\xb0\x3c\xce\x4e\x9b\xc1\x4f\xf4\xdc\x25\x24\x17\xf6\xec\x3a\x7e\x09\x0a\xdb\x20\x66\x12\xf9\x49\x45\x69\xf2\x16\x2a\x31\xc2\xf2\xa0\xe1\x41\x69\x5a\x8c\x31\x82\xe9\x98\x5e\x6e\x06\x9e\xe0\x60\x43\x15\x17\xd6\xd4\xf9\xe8\x26\x51\x31\x8a\x77\xb6\x5e\x78\x81\x21\x4f\x18\x4c\xc0\x76\xb8\x5b\x65\x1c\xf3\x03\x9d\xe7\x90\x55\xf1\x2b\x6a\x81\xc3\xe1\x7d\xed\x65\x93\xb2\x5b\xe0\xf1\x49\x25\x25\x72\x49\x31\x83\xf4\x93\x74\xc4\x5a\xfe\x8e\x06\xca\x8d\x96\x41\xf9\x15\xb1\xcd\x9d\x89\x4e\xbb\xc8\xf6\xa1\xb2\xd4\xaa\x91\xe9\x1d\x58\x40\x8b\x69\xe5\x98\xed\xb5\xf4\x98\x8b\x1e\x7f\xd9\x26\x3b\xf1\xc2\x0b\xed\xb9\xb9\x27\xd4\xa8\x16\x57\xe4\x80\x44\xbe\xa3\x94\xa9\xff\x06\x27\x09\xdb\xe4\x07\xb4\xac\xf0\x76\x37\x14\x64\x7b\x8d\x8c\x89\x14\xfd\x4a\xa3\x2f\x35\x3f\x5a\x13\x1c\xb0\xad\xc0\x17\xa4\x2e\x34\x8d\xc9\xe7\x49\x14\xf1\x2a\x62\x97\x5c\x54\xad\xa2\x8b\xea\xe0\xe5\xc3\xa4\x18\x0c\x3f\xd3\x72\x04\x03\x8f\xa1\xd3\x8f\x1f\xfb\x61\xa0\x92\xed\x0b\x8a\x9d\xe8\xb2\x6e\x0c\xa2\x4c\x8b\x1a\x37\x34\xf7\xf1\x56\x0c\xf8\x61\xe5\x8f\xc0\xab\xb6\x23\x14\x46\x99\xe2\x2a\xbc\x31\x5e\xc1\xfa\xe5\xe8\x95\x08\xda\x0a\x80\xe0\xbb\x6a\x1e\x72\x14\x76\x17\x2d\xcf\xf6\x0b\x96\x81\x5e\x28\x28\x07\x45\x1a\x95\x2c\xae\x24\xbb\x5b\x8e\x9a\xe7\x04\x80\x96\x00\x21\x6d\xd0\x69\x61\x12\x74\x5a\x77\x47\x88\xee\x83\x8a\xb5\x40\xc9\xc2\xa1\xf2\x8a\x9f\x7a\xd9\x4d\x31\x44\x84\x8b\x5a\x51\x0d\xd1\xb3\x4a\x17\xee\xac\xae\xaa\xdb\x37\x8a\x30\xb5\x3d\xcc\x38\x32\x98\x32\x50\x62\xfb\x1b\xea\x39\x81\x88\x0a\x4d\x6b\x9e\x26\x90\x89\x4f\x5f\x38\xec\x5b\xd2\x35\x83\xa8\x81\x7e\x06\x7c\xdd\xc4\x8b\xd7\x31\xaf\x43\x7e\x0f\x50\xb4\xc7\x10\x43\xf1\xcd\xea\x76\xce\x8d\xc3\xfb\xda\x43\x9b\x4e\xa3\xfa\xcb\xfa\xc3\x88\x6c\x44\x56\xae\x5c\x45\x84\x53\xb7\x81\x08\x46\x96\xb3\xa3\xa6\x44\x4a\x38\xb5\x61\x68\x97\x88\x2a\xd9\xeb\x50\x53\x44\x8e\x04\x0e\x89\xd6\x2d\x25\x09\x97\x15\x59\x6e\xc2\x18\x9a\xa1\x0e\x87\xff\x10\x70\x05\xbe\x51\x06\xcd\x8e\x3a\x91\x55\x4a\x4b\xd2\x4e\x54\xad\xc5\x06\x95\x8b\x85\x76\x3f\x4c\x59\xf6\x0a\xe1\x17\xa4\x96\xd4\xbe\x5c\x70\xf4\x54\x0d\x85\xde\xa1\x35\x2c\xfb\xf5\xe0\x9e\x86\x0c\x73\x7f\x5e\xe6\x59\x94\xfc\xb9\x1d\x48\x19\xd6\xf1\x2d\xfa\x58\xf8\x82\xfe\xba\x15\x86\xf0\x65\x9b\x93\x4e\x9f\x53\x42\xdb\xef\x54\xd1\x1a\x65\x04\xb3\x22\xed\x9b\xae\xc4\x1e\xa8\x9b\x5f\xd3\x7a\x67\xd7\xd4\x40\x68\x32\x2a\x53\xea\x2f\x1f\xe1\xa7\xc0\xd8\x54\xb1\xbd\xd8\x01\x62\xd3\x1d\x0f\x49\xd8\xcb\x93\xe5\x78\xb7\xd2\xa4\x99\x28\x9a\xfb\xef\x92\x55\xc6\x86\xf8\x78\xe2\xfb\x5d\x1f\x06\x7e\x5c\x63\x6a\xa6\x4a\xb7\xbd\x7f\xd6\xf1\x90\x3e\xaa\x65\xb0\x9c\xa4\x11\x27\x8d\xf2\xa7\xf4\xa1\x7c\x53\x4b\xfe\x66\x0f\xb5\x7b\x45\xde\x1d\x32\x96\x16\x7e\x1f\xc0\x57\xb4\x37\x9e\x9d\xf1\x51\x24\x43\x55\x28\x50\xfd\xfa\x73\xab\xf2\x4b\xb3\x70\x14\x46\x06\x4d\x3b\x14\xc8\xc1\x6e\xc7\xd7\x0a\x52\x6e\x8e\x25\xfd\x3e\xfd\x1d\x3c\xcd\x34\x4d\x5d\xf0\xf5\xcc\xf3\x4a\x26\x32\x33\xe3\xb1\x75\x2a\x2e\xce\x54\xce\xcd\x39\xc1\x24\x9f\x63\xe5\x26\x5c\x36\xb1\xcd\x2c\x42\x59\xa7\x78\xe6\xa6\xfa\x20\xf7\x20\x8a\x1d\x15\xb4\x93\xe9\x50\x47\x19\x31\x14\xf4\xb6\xf8\x5a\x9d\xb4\x30\x5e\x4a\xa2\x25\xeb\xd4\x85\x11\xdc\x1c\x57\x2a\xe4\xc7\x95\x2d\x1b\x25\x71\x66\xe2\x9c\x41\x06\xa2\xf0\x40\x9b\x58\x8a\x84\x4a\x7a\x25\x0d\xf3\x30\x1b\x3e\xe5\x41\xaf\xf7\x26\xfe\x8b\xf3\xbc\x8e\xe2\x58\x9f\xd7\x53\xf2\x22\xe9\x78\x03\xfb\x51\x8a\x98\x78\x94\xf0\x41\x18\xe9\x45\xe2\xcc\xf3\x15\xa8\x5d\x6f\x68\x34\xff\xd4\x8c\x6f\x7d\x9d\x83\xe3\xe1\x9b\xda\x86\x39\xb0\xaf\x9d\xe5\x45\x77\x11\x99\x46\xe5\x30\x8b\x2a\xa6\x33\xff\x61\xdc\x4d\xa2\x98\x01\x04\x48\x91\x7e\xa0\x14\xd7\xae\xa9\xa2\x3e\x1c\x08\x4c\x2d\x57\xa9\x04\x90\xff\x39\x85\x44\x29\xa4\x53\xab\xa2\xd4\xdf\xc6\xa7\xf3\x4d\xa0\xd8\xae\x46\x96\xf5\x6f\xdc\x8c\x51\xf9\x9d\xf9\x26\xd0\x65\x74\x1b\x77\x8b\x51\x07\xc8\x59\xf5\xa0\x82\xca\x0c\x9a\x80\x72\xfa\x91\xc9\xe1\x57\x10\x75\xac\xeb\x10\x64\xbd\xd6\x5a\x9a\x9b\x6b\x67\x51\x88\x8d\x8c\x12\x20\x6b\xb4\xf1\x8d\xe2\xfd\xe9\x14\x69\xcc\xe0\x30\x49\x50\x7d\xcb\xe0\xe2\x23\xc1\x29\xe6\x98\x1d\xb5\x14\xbf\xc1\xba\xa2\x46\x5d\x77\x4d\x95\x4e\x6a\x8e\x59\xa6\x21\xc1\x4f\xfa\x21\xd9\x20\xbe\x76\xc4\x2a\xa3\x22\xca\x43\x42\x96\xae\x4c\xa9\x0c\x69\x53\xf5\x71\x5b\x33\x5e\x62\x7e\x4b\x41\x25\xba\x45\x34\x4e\xc3\x5c\x9d\xf0\x77\x14\x6c\xef\x9d\x89\xa7\xf7\x1c\x17\xd9\x70\xb7\x22\xc8\xbf\xa4\xe7\xbf\xc0\x33\xca\x23\x11\x94\xe0\xe3\x99\xad\x05\x6a\x86\x65\x4d\x69\x07\x71\xf3\x49\xd8\x79\xea\x84\xc7\xb3\xed\x61\x38\x28\xbd\xb5\x0f\xd5\x78\x70\x12\x96\x16\xd3\x03\xd8\x71\xeb\xf0\xa0\x40\x10\x3e\x74\x1d\xd3\xac\x18\x8d\x4c\x1a\x46\x2b\x94\x47\x09\x5e\xa8\x7c\x3f\xe4\x1e\x68\x25\xab\x46\xc2\xac\x9b\x96\xf5\xf8\xb0\x6c\x58\x60\x16\x12\x9d\x8f\xb7\x00\xdd\xe4\x1b\x3f\xc8\x3e\xb4\x51\x6e\x53\x86\x32\x3a\x56\x40\x4f\x11\x08\xcd\x54\xc9\x1c\xb4\x5c\xe6\x08\x01\x8c\x14\x0c\x55\x8d\xf4\x92\x9b\x0a\xb2\x71\x9e\xda\x71\x6a\x63\x5b\xa4\x53\x7e\x4c\x03\x8e\x1d\xc7\x71\x4b\xc3\x17\x37\x14\x80\xc8\x0d\xb9\xf9\x7e\xe3\xad\x40\xf1\x6c\xbc\x3d\xf1\xf9\x3f\x26\x72\x11\xb4\x1e\xd7\x5e\x60\x14\xa6\x66\xa7\xe7\x2a\x7b\x80\x68\x1a\x81\xd9\x99\x89\xc7\x83\x5f\x03\xb3\x94\x8c\x7d\x7a\xa2\x82\x8d\xe0\x73\xba\xe6\xed\xa8\x16\xca\xef\x81\x07\xba\x89\x3c\x92\x6f\x34\x52\x33\x35\x3d\x68\x14\x21\x23\x42\x60\xc9\xd7\x35\xbe\xe3\x85\x03\x0b\x10\x51\x52\xa8\x7a\x1c\x87\x5b\x58\x21\xbe\xa9\x15\x7e\xca\xc8\xc9\x66\x5d\x13\x99\x38\xe7\x2f\xe6\xa8\xb3\x74\x1f\xda\xbb\x8d\xbc\x18\x75\x22\x67\xda\x84\x1a\xc8\x47\xa3\x97\x54\x76\x62\x47\x1d\x93\x2e\x4e\xfb\x48\x01\x27\x46\x7e\xad\x27\x21\x86\x5a\x16\x5f\x57\x3c\xdf\x30\x8c\x3f\xeb\xcb\x33\xb7\xa9\x40\x86\xfd\x7f\x93\xac\x02\x8a\x93\xd0\x00\x61\x37\x03\x5a\x2b\x44\x81\x4f\xae\xaa\xd9\xa8\x87\x70\x2c\x22\x1a\x5b\x1e\x58\xc1\xad\xd3\x53\x50\xd4\x22\x7e\xd2\xc9\xe3\x67\xee\x83\xb0\x97\x33\x54\x54\x93\x10\xba\x6d\xd1\x4f\xc1\x1a\xef\x70\x8c\xb2\x91\x59\xe1\xea\xb0\x92\x0f\x92\x9e\xff\x49\x55\x3f\xcb\xba\x91\x4d\x93\x2c\x64\x35\x98\x1f\x87\xa7\x61\x6e\xae\xdd\x8d\x0a\xe1\x99\x13\x51\x66\xdf\xaf\xbe\xd4\x00\xf4\x3f\xd8\x1e\x59\x13\xe7\x98\xd8\x95\x9c\x5b\x21\x7f\x30\x01\xab\x16\x41\x46\x0e\xff\xb4\x09\x1b\x97\xda\xac\x5b\xa0\x8d\x89\xa0\xed\xa6\x62\xd7\xac\x33\x28\xbc\x3c\xdf\x4e\x4d\x14\x85\xc2\x9a\xc9\x18\xac\x40\x3d\x1e\x3f\x5e\x5a\xba\x80\x30\x0a\x8d\x48\x49\x3a\x22\x26\x17\xd4\x3c\x35\xa3\x34\x7b\x76\xae\x36\x2c\xcf\x28\x8c\x13\x98\x0d\xa9\xa9\x53\x93\x08\xd5\x4b\x74\x35\x51\xb4\xbd\xd7\x30\x8e\x33\xdb\x5e\x0a\x07\x34\x88\xc1\x8d\x04\x87\x41\x74\x83\x94\x75\x5d\xa2\xfd\xfb\xdb\x99\x1d\x85\x26\x8e\x0b\x13\xd1\xab\xa4\x7a\xad\x2a\xd9\x2e\xea\x48\x3a\xaf\x83\xbd\xd3\x1b\x83\x53\x14\x68\xf0\xb5\x3e\x46\xbd\x30\x67\x18\x4a\x23\xbc\xd6\x25\x00\x45\xba\x68\xd1\x88\x42\x9f\xe6\x78\xe0\x07\xb2\x79\xa4\x43\x22\xe7\x86\xb2\xf1\x38\xb5\x83\xd8\xc4\x5a\x47\xfa\xd3\x40\xc3\xea\x54\x03\x20\x1d\x14\xdc\xc3\xf0\x59\xdc\x49\x78\x2a\x09\xe1\xb7\xa3\x4d\x89\x4b\x73\x60\xe3\xbc\x4c\xef\x62\x16\xe9\x45\x45\xfc\x4e\xe0\x06\x6f\xff\xce\x1d\xbf\x0b\x4c\x9a\x53\x14\x35\xa5\x58\xcd\xce\xa2\x0a\x87\xf6\xfd\x96\x12\x09\x79\x6c\xc6\x07\x60\x61\xcf\xc6\xc4\xc1\xd3\xdb\x43\x2f\x75\x7d\xe9\x72\xad\xf1\xd2\x75\x05\x52\xdf\xd0\x20\xec\x8f\xb4\x7e\xf4\x47\x08\xc5\xdc\x00\x43\x79\xe4\x5d\x37\xdd\xb1\x73\xdd\xf0\xc4\xb0\x2b\x31\xe8\x56\xdc\x58\x39\x02\x5b\xbe\xae\x40\xeb\xc2\x3c\x34\x70\x07\x9a\xe2\xcf\x23\xd8\xeb\xf1\xc1\x8b\xed\x6c\x6c\x15\xea\x56\x3a\x5a\x7e\xe8\xe6\x56\xf0\x19\x3f\xc7\x57\xb0\xd0\x09\x0a\x56\xa7\x35\x2a\xee\x74\xf0\xbc\x12\xc5\xeb\x27\x29\xda\x85\xc0\xe2\x3b\x05\x12\x97\xc5\xdc\xd6\xc5\x4b\x8c\x00\x53\x69\xee\x17\x9f\x21\x5e\x6d\x94\x38\x4e\x68\x94\x34\x7a\x80\x9a\xb3\x85\xff\x28\xa8\x10\xc9\xea\xcc\x78\x29\x8c\xa8\xd0\x83\x1d\x4a\x75\xac\x05\xad\xd8\x50\xe5\x58\x40\x4d\x96\xd5\x67\x5c\xc7\xda\xbf\xf7\x5f\x71\x7a\xc1\x77\xb5\x68\x97\xb8\xeb\xac\xd6\x81\xdb\xa6\xa9\xdd\xa0\xd2\x42\x1c\x7b\xac\x87\x0b\x7a\x1e\x9e\xe6\x17\x82\x95\x96\xd3\x9f\xbb\xe8\x4b\x05\x71\x37\x94\x84\x8c\x8d\x2e\x6d\x09\x31\xc0\x9e\xc8\xb2\x3b\xb4\xcb\x0a\xbb\xcd\x93\xb0\xa2\x88\xd6\xa4\x40\x1b\x5b\xdb\x23\x9c\x0f\x56\xe3\x4c\xa0\x68\x0e\xff\x90\x7c\x92\x8c\x7d\x35\x98\x63\x16\xfa\x6e\xa9\x92\xdd\x71\xa5\x93\x7c\x5c\x83\x3d\x8e\xb1\xf0\xbb\xa6\xe7\x66\x86\x4a\x9c\x1d\xb1\x8f\xbe\xbe\xbb\x68\x53\xe1\x2d\x14\x26\x7e\xb7\x6f\xfe\xf7\x66\x13\xfb\xf2\x38\x4d\xfa\x21\xb0\x27\x08\x9d\x91\xdf\xf3\xb5\x5a\xa8\xdc\x8c\x6c\x4b\x29\x52\xf0\x2e\xf0\xd8\x70\x15\x05\x8e\x93\xcc\x62\xd4\x41\x66\x92\x7d\xdc\xa6\xe9\x35\x86\x2b\x9d\x34\xec\x11\xd3\x50\x25\x15\x76\x6c\xb0\x2e\x03\xb9\xa4\xca\x73\xdf\x0a\x3c\x14\xf7\x9d\x40\xa1\x49\x6f\x4e\x7c\x21\xff\x92\x66\xc4\xe7\x01\x00\x11\x7f\x76\xd8\xc8\xa1\x89\x07\x76\x77\x4b\x98\xeb\x5f\xbf\x31\x51\xe2\xb4\x0f\xb5\xbd\xff\x0f\xf4\x5d\xd0\x83\x69\x29\xe8\xd0\x07\x81\xa2\xa3\xbe\x30\x51\x79\xef\xed\xca\x39\x4b\x4c\x6f\x4f\xf9\x0e\x48\xa9\x3f\x51\xc8\xf2\x93\x13\x8f\x74\x44\x83\x0c\x41\x14\x1a\xce\x28\xf6\x9d\x41\xc0\x8a\xb8\x64\x03\x6b\x84\xd8\xec\x9b\xba\xda\x34\x51\xc0\x90\xd4\x2e\x95\xe7\x46\xf5\x73\x7f\xa8\x49\x4a\x69\xa5\x58\xbf\x39\x50\x82\x46\x57\xd5\x06\x8c\x63\x9c\x54\x99\x14\x50\xf0\x90\x4f\x3c\x7b\xb9\x29\x06\xc3\xdc\xa6\x53\x6a\x38\xfd\xa2\x12\x2e\xfd\x54\x15\xe5\x6e\xd7\x66\x1a\x0f\xbd\xda\xce\x4c\xdf\xd2\x60\x18\x9d\x42\x3c\xc8\x93\xaa\x77\x75\xb2\x36\x41\xe1\xe6\x36\x93\x28\x34\x34\x5a\xeb\x19\xa7\xb9\xd3\x25\x20\xcd\xcf\x78\xa4\x21\x55\x42\xdd\x59\x38\xaf\xf0\x91\x0c\xc8\x43\xfa\x9e\x16\x04\x49\xdb\x46\x3a\x75\x45\x91\x4e\x5d\xd1\xfd\xb3\xa8\xb0\xe3\x34\x64\xf0\x16\x93\x63\x4e\x3c\x18\xfb\xb6\x62\xa8\xb4\xa3\x30\x36\x99\x1e\x28\x07\xe6\x1d\x01\xd1\x1d\x98\x11\xee\xd7\xb9\x6c\xcf\x8e\xc6\x51\xb2\x62\xf1\x2a\xd8\x88\xcb\x81\xc7\xf6\xb3\x7f\x11\xd1\x4e\xc5\xf5\x99\x8c\xc6\x45\x99\x26\x3e\x4e\x8b\x83\xb2\xd7\x3a\xf5\x1c\x58\x91\x5d\x0d\x2c\xef\x82\xd9\x47\xd3\xfc\x77\x02\x0f\xbe\x5b\x0d\x54\xd1\x0c\xa1\x26\xb2\xf5\xeb\x13\xa5\xf4\xc9\x1c\x93\x7c\xa3\x50\x55\xc3\x32\x6b\xb1\x2d\x0a\xe0\x05\x60\x52\x7e\xaa\x20\x4f\xea\xd6\xf5\xa5\x76\x27\x14\xc1\x2a\x78\xc1\x6f\xe3\x48\xf2\x8d\x0b\xe4\x96\x01\x3e\x45\x51\x0f\x3b\xed\xcf\xe8\xbd\xb5\xf6\x3c\x23\x70\xd4\x80\x5d\xc7\xe4\x79\x64\x81\xf3\xc2\x99\xb9\x39\xf1\xe8\x93\xa7\xe8\x60\x3b\xe2\x4d\x4f\x12\x72\x4e\x67\xdf\xa9\xc9\x99\x5b\x4f\x58\xd0\x7c\x28\xf0\x1d\x4d\x4f\xaa\x87\xba\x7a\xa1\x89\x56\xca\x64\xc3\xa7\x62\xb7\x54\x31\xf7\xd6\x36\x3d\x98\xec\xf3\xf4\x15\xe1\xef\xde\x82\x8f\x47\x10\x7d\x8f\x1e\x0f\xd3\x64\xa2\x42\x00\x67\x75\x26\xa8\x0a\xb9\xbd\x22\x18\x92\x53\xec\x94\x45\x87\xb9\xfc\x54\xc4\x05\x0f\x90\x9a\x29\x75\x5b\xc1\x8d\x5d\xc6\xf3\xc5\x97\xc3\xa4\x36\x83\xc4\xa9\xd0\xcc\x00\x64\xea\xb4\xe1\xb1\x7f\xa8\x03\x9d\x1d\xab\xfe\x28\x63\xe4\x01\x86\xf3\x5b\x34\x4d\x84\xf0\x6f\x8a\x58\x63\xe4\x00\xd2\xfe\x43\x25\xeb\x0a\x6c\x1d\xea\xec\x17\x15\x76\x6b\xfe\xc0\x2b\xf0\x87\x8a\x50\xf7\x01\x1f\x00\x74\x60\xeb\x4a\xda\x65\xa6\x9d\x27\xe3\x96\x07\x09\xae\x2b\xc5\x2e\x3d\xc8\xc3\x75\xea\x3d\xe5\x4f\xe5\x6a\x05\xfd\x3c\x57\xb9\x70\x6a\x33\xe7\x70\x28\x58\x9b\x8b\x96\x53\x74\xba\x14\x74\x8b\x55\x53\xf8\x86\x9a\x52\xfc\xf2\x1a\x3f\xfb\x8b\xed\x71\x11\x2f\xb6\xfc\x6e\x38\xa3\x12\xf6\x33\xaa\x7b\xbc\x1c\x76\x17\x79\xfe\x45\x82\x63\xdf\x31\xab\x27\x9f\x87\xf7\xb5\xad\xf1\xa7\x04\x59\xf3\x59\x85\x0e\x04\xd1\x2c\xea\xbf\x7f\xe4\x6c\x65\x19\xa1\x1d\x63\x21\x00\x21\x0b\xf5\xad\xd6\x9d\xc8\x01\x11\xe2\xdc\x9f\xf8\x07\xfd\x27\xca\xf9\x64\xc9\x52\x68\x73\xd4\x81\x1c\x37\x48\xb9\x36\xf8\xac\x7f\xae\x65\xfe\x1f\x56\xa5\xc5\x7e\x42\x99\xb0\x78\xc9\xa6\x19\x20\x75\x54\x88\x17\xa0\x5e\xf9\xad\x05\xc0\xf7\x8c\x82\x10\x9a\x41\x18\xb3\xb9\x81\x79\xbc\xaa\x4c\xe5\x55\x65\x1d\xf3\x34\x29\x54\x3d\x85\xfd\x23\x1e\x9f\x38\xcb\x06\x24\x1c\xf1\xf7\xa1\xb6\xdd\x84\x3e\x95\x12\x5a\x18\xf7\xc2\xa5\xb0\x57\x38\x40\x1c\xaa\x03\x67\x55\xa5\xe0\xac\x67\x94\x23\x43\xed\x1e\x92\x13\xe9\x72\x78\x53\xc6\x30\x48\x85\x61\x3b\xbc\xad\x8c\x90\x6d\x77\x31\xb2\x59\x16\xdb\x0c\xc2\x28\xae\xd4\xa3\x4a\x40\xdb\xd3\xed\xb9\xb9\x83\xed\x2c\x4f\x8b\x6e\x5e\xa4\x9c\x3b\x09\xef\x91\x37\x10\xbe\xea\x38\x32\x91\x59\xc9\x42\x33\xd5\xfa\xa5\x5f\xf4\x73\x01\xae\x5a\x7f\x17\x6e\x17\x3b\xfc\xc2\xa3\xe9\x50\x8c\x63\xd9\x03\xd6\x84\x81\x58\x7c\x53\x31\x82\x7b\xcd\xde\x9d\x8a\xe5\xe5\xf1\x19\x4f\xf6\xcb\x1d\x6f\xd4\x84\x3e\x54\xac\xb2\x68\x58\xc2\xb0\xeb\xd8\x75\x6c\xb2\x64\x5b\xe7\xbb\x7c\xd4\xbe\xf3\x8d\x3f\x3b\x66\xc6\x49\x6e\xbb\x2d\x35\xb8\x0c\x37\x29\xe0\x55\xaf\x6e\xdc\x1b\xd8\xdc\xa4\x48\xa7\xd1\xf7\x03\x1e\x81\xaf\xf5\x90\x4a\x9e\xa7\x86\x6a\x0e\xa5\x11\x77\xe7\x56\x8d\x90\xeb\x59\x2c\xe2\x1e\x87\xff\x13\x19\x4e\xda\x6f\x62\xd6\x3f\xab\xc6\x7a\x4c\x17\x09\x0e\x07\x57\x95\x40\xeb\x39\x15\x08\xb2\x54\xe6\xae\xd6\x11\x09\x14\x37\x54\x3c\xbe\x01\x27\x82\x0c\x6a\x1d\x1e\x81\x6f\xe0\x77\xf8\x25\x14\x31\x0a\xba\xc5\xff\xbc\x41\xb2\x64\xd3\x98\x0b\x25\x88\x20\x98\xdc\x88\x6f\xaa\x52\x39\xdd\xa4\xa5\x31\x40\xc7\x27\xba\x65\xe6\xeb\x9d\xfd\x70\x30\xa4\x43\x81\x3f\x46\xe0\xcb\x58\x24\xa4\xaa\x3c\xba\x84\xcd\x71\x43\xd5\xf5\x52\x6b\xfa\xfd\x30\x1d\xa1\x09\x83\x52\xfc\xa6\x1a\xe3\xdd\xac\xd5\x71\xe7\xe7\x0f\xb2\xf1\xa0\x20\x91\xc4\xbf\xdf\x27\xef\xf2\xbe\x6a\x91\x27\xe9\xc0\xc4\xe1\x31\xff\xa5\xf4\x0c\x24\x22\x81\xdf\xd7\x1d\xef\xcb\x0a\xae\x6b\x4d\x16\x46\x90\x1e\x46\x9c\x70\x59\xc3\xc0\x2e\x92\x4b\x47\x21\xf7\x61\x2d\x69\x3c\xbc\x6f\xa1\x3d\x4e\x92\x14\xa2\x6c\x82\x8c\x84\x1b\x13\xae\x81\xed\x46\x81\x40\xf9\xdd\x64\x34\xc2\x74\x6a\x4b\xa1\xf8\x40\x31\x21\x34\xdb\x5e\xc5\xc3\xbe\x99\xdb\x34\x36\x11\xcc\x9b\x63\x34\x99\x97\x14\xe4\xbc\x8a\xeb\x46\x09\x94\x67\x7c\x9f\x0a\xec\x3d\xd2\x8a\x2a\x3f\x41\xbc\x8a\x22\xba\x44\x0d\x43\x84\x9a\x94\x68\xed\x72\x18\xf7\x58\x56\xfe\x25\xd1\xb6\x9c\x78\x48\xc7\x35\x05\xe0\xdb\xa8\xf4\xf5\x3b\x26\x9d\xd6\xc2\x77\x7a\x0e\x04\x7b\x5c\x14\xf1\xe8\x44\x49\xe7\xe1\x51\xad\xb2\xd4\x9a\x88\x68\x6e\xfc\xa8\xeb\x3e\xcf\xaa\xeb\x1a\x0c\x7b\xe0\x02\xf1\x0f\xf5\x32\x28\xb1\x89\xbe\x29\x43\x34\xae\x1a\x33\x37\xe7\xaa\x34\x4d\x40\xd0\xd4\x0e\x8a\xc8\x50\xc5\xd1\xc9\x4a\x6c\xa8\x8c\xad\x4e\x74\x7a\x60\x5f\x7b\x31\x4e\x96\x05\x0f\x8c\x0e\xf6\x69\xd5\x9d\x3f\xad\x30\xfc\x26\xcd\xc3\x2e\x31\x1d\xd1\xb1\x60\x3e\x10\x25\xa8\xf3\x87\x95\x23\x94\x51\x31\x0f\x47\xc8\x71\x8e\x38\x79\xd7\x5f\x7b\xa4\x81\x1f\x38\x3e\x4f\xd6\x64\x0c\xfc\xb8\xf6\xdb\xca\x20\x8f\x8a\xee\xf0\x49\x7a\x72\x08\x0f\xb6\x50\xe5\xc3\xe1\x78\xa0\x52\x93\x35\x0a\xc2\x60\xd5\x76\x68\x4e\x3c\xea\xae\x3d\xb8\xa1\x14\xd0\x3e\xd2\x98\xbe\xe3\x64\x61\x91\x35\xb0\xc2\x35\x93\x05\x05\xaa\xaa\xb6\x55\xfb\x21\x2f\xb6\xb3\x22\x4d\x6d\xdc\x93\x96\x8e\x28\x1e\xc3\x84\x88\x2e\xa1\x8f\xc9\x86\xd6\x44\x39\x5a\xf4\xd8\xf2\x9b\x6a\xe2\x9b\x91\x73\x38\x23\x77\x55\xbd\x15\xba\x95\x38\x16\x3c\xbd\x24\xce\xa8\x0c\xdc\x1d\x47\x7d\x79\x16\x65\x42\xd0\x0f\x8f\xb3\xa0\x3a\xfc\xc7\xfd\x40\xc9\x1c\xbc\x4d\xdf\x12\x96\xf7\x3b\x81\x70\x7e\xf6\x7b\x46\x4d\x2f\xdf\x9a\xa8\x7c\xff\x56\x03\x5e\x9e\xe5\x3b\x68\x32\x8b\xdb\x5a\x88\x3e\x6e\x22\x88\xe3\x1b\x35\x97\xd6\x2d\xa2\xbc\x48\xed\xae\x96\xe3\xbe\x79\x8c\x0c\x42\x85\xc4\x04\x46\xfc\xac\x2a\xa4\x9c\x9f\x68\xf3\x0e\xd5\x2f\xb4\x99\xde\xae\x05\xb3\x44\x5f\x35\x1a\x39\x62\x37\x97\xc5\x3a\x10\x28\x02\x01\x11\xf2\xa7\x8f\x94\x49\xeb\x26\x56\x84\x34\xec\x83\x64\x40\x74\xd1\xe8\x87\x6a\x3e\x7b\x6c\xab\x7f\xa9\x52\x90\x2f\xbf\x7a\x80\xec\x03\x45\x1e\x9f\x7f\x76\x46\x2d\xe4\x4e\xc5\xdf\x89\x24\x89\xc9\xa0\x6b\x06\xfd\xd0\xab\xed\x91\x35\x59\x91\xda\x29\xcf\x0e\xfc\x30\x50\x06\x62\xe2\x61\x19\x9b\x5a\x64\x3c\xcb\x92\x6e\x28\xf1\xf0\x61\x11\x82\x04\x5d\x0f\x5f\x6b\x36\xb1\xa8\x67\x53\x90\x85\x8a\x30\xe1\x45\x35\x45\x74\x47\x4d\x17\x9d\x9b\x78\x59\xcf\x28\xc9\xa0\xf4\x8d\x97\xdc\xe7\x67\x84\x0d\x7d\x8b\xd6\x18\xe7\x99\x67\x61\x78\x3c\xb8\xb6\x8f\x4a\xa3\xd6\x0b\x33\x0a\x7e\x9c\x0f\x92\x49\x16\x1f\xc1\x6f\x36\x21\xb2\xc7\x91\x89\x63\x4f\x2f\x21\xcb\x42\x6f\x01\x48\x22\x22\x64\x61\xc1\xf4\x53\xf5\x8c\x68\x12\x4b\xeb\x5b\xbb\x44\x73\xf9\x84\x27\xac\xfc\x6f\x81\x52\x16\x43\x5f\x19\x96\xe3\x0c\xa2\x1e\x01\x39\xfb\x62\xc8\x1d\xc5\x10\xff\x26\x6c\x0d\x36\xdb\x39\xc2\x93\x01\x05\x79\x33\xf0\x03\x4b\xbb\x88\xc6\x0e\x2c\x27\xb7\x2a\x72\xd9\x26\xcd\xb3\x5d\x1e\x47\xce\x94\xb6\x8e\x3b\xa9\xfc\x7c\x19\x06\xf1\xd9\xf3\x3b\x94\x86\xcb\x5c\x08\xfd\x4c\xb8\xf1\x13\x55\x6d\x81\xae\xcd\xb2\x30\x1e\xec\xc6\xda\x89\xac\xa4\x3f\x1b\x1f\x05\xbe\x90\x7c\x0e\x43\x5c\xd8\xaa\xb7\x00\xf3\xe4\x1b\x00\x1d\xf0\xa8\x21\x2c\x84\x9f\x5e\x9f\xed\x3f\xb0\xaf\x6d\xba\x80\x68\xc2\x5a\xc8\xc0\x03\x6d\x23\x19\x85\x78\x4e\x4d\x99\x64\xe3\x24\x93\xf1\x1a\x98\xf3\xf7\x68\x37\xf2\xb5\xfe\x3d\x36\xed\x27\xe9\xc8\xa6\x20\x46\x14\x1d\xdc\x96\x13\x00\xfa\xb6\xd2\x36\x3c\xa5\x01\x90\x43\x93\xda\x61\x52\x9e\x81\xdd\xe5\x2b\x65\xc6\x9d\x9e\x3a\x33\xce\x4f\xfc\x90\xc0\x14\x48\x2a\x04\xfc\xef\x57\x6b\x6a\x46\x4f\x05\xe8\xd9\xbf\x4d\x25\x04\x0a\x66\x0a\x35\xbe\x26\x93\xdc\xe5\x97\x13\x03\xae\x04\xbe\xc3\x28\x47\x7f\x4d\x58\xb6\x68\xdd\xe0\xe6\xd0\xbc\x12\xc5\x2a\xa7\xad\x37\x4c\x32\x0b\xe4\x36\x72\x33\x16\x7d\x43\xba\xfa\xe4\xaa\x47\x48\xc1\x7c\x38\x82\x8c\xf2\x19\x08\xdf\xb0\x0f\xdb\x73\x33\x0c\xf3\xd0\xc4\x84\x79\x41\xcd\xec\xf4\xa4\xcc\xed\x00\xdb\xf8\x0b\xd5\x3d\xfd\x1b\xec\x35\xa1\xe1\x7d\x46\xcd\x05\xa6\x4b\x76\x25\x6b\x3d\x6a\xca\xf7\x27\x35\x64\xaf\x9b\x62\x3e\x82\x86\xf6\x0e\x08\x9e\x0d\x58\x15\xb1\x04\xbe\x24\x7b\xa6\x16\xa4\xcf\x1e\x6a\x8f\x4d\x9e\x86\x26\xed\x0e\x4d\xc4\x21\x38\xca\xbc\x28\x37\x23\xf7\xbc\xaa\xc6\x33\xfe\xda\x65\x4b\x4b\x61\x9a\x17\x2c\xc8\x00\xe4\x13\x44\xdc\xf9\xda\x15\xb3\x93\xf2\xcd\xd3\x1e\x0f\xa4\xa3\xe0\x76\x27\xa8\x94\xfa\x5e\xf6\xe2\x07\x3e\xbe\xef\xd9\x68\x54\x6e\xfe\xf2\xf8\xc0\xd9\x7f\xa0\x3d\xff\x07\x4d\x48\x82\xc8\x12\xc7\x93\xab\x48\x7f\x47\xe9\x27\x7f\x67\xe2\x3b\x8a\x91\xed\xe7\x8f\x7b\x77\xc4\xac\x5c\x52\x27\x56\x5c\xd8\xdf\xc6\x73\x02\xd2\xe1\xa2\xa6\x8e\xdf\x20\x9f\x2b\xe3\xab\x58\x3a\xa0\x36\x50\x4d\xc4\x4b\x7e\x17\x51\x85\x94\x7c\xea\x50\x06\x8c\x38\x71\x75\xd6\x45\x22\x5a\x32\xc5\xef\x0d\xb3\x64\x53\x33\xb0\x4f\xd2\xf7\xc3\x67\x5d\x20\xd3\x28\xe2\x43\xa5\x69\xe4\x6b\xe2\x22\x65\x92\xe9\x19\xb2\x3a\xd8\x78\xb7\xb1\x86\x7c\x03\xff\xcc\x94\xd5\x2a\x19\x05\x39\x37\x4f\x1b\x05\xbe\x80\xcb\x2c\x21\x48\x21\xde\xf5\x14\x91\x51\x92\x12\xef\x8f\x50\xe5\xdc\x64\x07\x27\x86\xd5\x67\xc6\x4f\x51\x0c\x83\x0c\x62\x0b\x8b\x8b\x6f\xfc\xbf\x02\xd5\x3f\x34\x99\x7d\xba\xfc\x61\x08\xd3\xcf\x62\xdd\x71\xac\xef\x6a\x55\xa7\x73\xbc\xf0\x02\x9b\xd2\x6c\x79\xbe\x4a\x35\x05\x96\x6d\x47\xed\x74\x78\x9f\xe6\xda\x13\xce\x19\xee\x07\x49\x66\x3e\xe5\x55\xf5\x36\x69\x61\xf1\x89\x90\xa5\x12\x0a\x26\x5a\x0d\x29\xf1\xd3\xc2\x4a\x1f\xfe\xff\x13\x24\x83\x8d\x28\x69\x2c\x62\x9e\xc4\xcd\x76\xf9\xc9\xca\xdd\xcf\xac\x2a\x52\xd7\x6b\x13\x8f\x73\x3b\xc3\x0b\x88\x22\xce\x49\x45\x2f\xf2\xd3\xb4\x80\xbe\x1c\xe3\x6a\x06\x69\x08\xbe\x41\x0e\xe2\x02\xaf\x6f\xb1\xa9\xa0\xbb\x1d\x9b\xc6\x59\x6e\x45\x1d\x4d\x08\x0b\x68\x16\x46\xa8\x0c\xe4\xb1\x0e\x93\x91\x4d\x31\x20\x80\xa8\xfa\xbd\x89\x4f\x36\x6f\xab\x9a\x39\x23\xfb\xb0\x2a\x1f\xd3\xcf\x90\xf6\x41\x83\x12\x70\xcf\x96\x86\xab\x23\x24\x9a\x58\x57\x3e\x82\x7c\xe3\xea\xa6\x61\x16\x99\xb8\xb7\xb3\x82\xe0\xc2\xca\x28\x70\x97\xa0\x47\x37\x94\xef\xb9\x4b\xf1\x03\x4f\x57\xa8\x89\x8d\x4e\x6a\xe2\xee\x70\xa7\x26\x5f\x0a\xbc\x32\x0e\xb8\x4d\x75\xa6\x8a\x07\x70\x85\x6c\x14\xa2\x8e\xd5\x89\x17\xc4\x8b\x09\xa3\xe8\x22\x7a\xbc\x09\xc6\x30\xf9\xba\x36\xf5\xf0\x62\x3b\xcb\x93\xd4\x4e\xab\xf1\x9f\xf3\xaa\xca\x34\x3d\xe3\x59\xe4\x2e\xd2\xa7\x0a\xf7\xb8\x2f\x2b\xb8\xf2\x90\x4a\xdd\x4e\x61\xfd\xf8\x46\x99\xba\x8e\x89\x7a\xaa\xa2\xf5\x07\x81\x17\xde\xf9\x83\x5a\x3d\x76\xf6\x50\xbb\x67\xc2\x14\xbc\x19\xd8\x6f\x20\x1d\xe0\x6b\x57\xba\x34\x61\xda\x49\xd2\xd8\x4e\x97\xee\x4d\x94\x5c\xd4\x94\xcf\x43\xa5\x38\xff\x0c\x75\x80\xf0\xbc\x6e\xb9\x1a\x6d\x19\xb0\xd8\x34\x93\x84\x50\xa6\xc6\xf4\x08\x99\x02\x11\x76\x23\x93\x2e\x52\x68\xe3\x08\xa7\x5d\xb1\x6f\x43\xa5\xe4\xa9\xcd\xc6\x09\xea\x33\xbe\x90\xfa\x75\xfa\x09\x22\x60\xf7\xbc\x9a\xf6\xb4\x69\x37\xcc\xb6\x75\x31\xcf\x04\xda\x65\x36\x0c\x94\xf7\x4d\x3a\x52\x60\x64\xd4\xab\x85\xd6\xc1\xa9\x18\x76\xbf\xf8\x8f\x7e\xe1\xe7\xe9\xcf\xe0\xba\xa7\x11\xd9\xf3\xcd\xea\xb3\x0e\x1a\xda\x4d\x8a\xd2\xaa\x67\x15\x19\x17\xa5\xce\x77\x49\xe9\x0d\x2d\x9b\x25\x9b\xd1\x32\x00\x08\xf4\x31\xed\x10\xbe\x6e\xe2\x87\x0a\xe3\x2c\xec\x31\xb0\xf5\xe0\x0c\x13\xb0\xed\x9f\x25\x51\x37\x0e\x38\x4c\x3c\x28\xc2\x18\xf8\x37\x76\x2a\x13\x3f\x58\x70\xa1\x96\x83\x48\x59\xa2\x97\x9a\x6e\x11\x21\x09\x46\x5e\x75\x03\xf6\x9c\x6f\x5c\x61\xd7\xbe\x51\x84\xe3\x91\x90\x71\x88\x91\x50\x2d\xa6\x8f\x3d\xb1\xd2\xd0\xda\xc5\x95\x29\xf2\x57\xd2\xd9\x69\x39\x72\x89\x0b\x9a\xe2\x70\xb5\x56\x66\x98\x9f\x5f\x68\x8f\x4c\xba\x68\x89\x55\x41\x2b\x30\xde\x86\xcf\xe0\x1b\xe5\x51\x6d\x37\x89\x93\xd1\x0a\x3c\xaa\xb0\x86\xa9\x54\x05\xb1\x26\xd2\xe7\xaf\xc3\x3f\x38\x54\xd0\x61\x91\x3b\xdf\x33\xe3\xa7\xc0\xaf\x04\x2a\xcd\xe3\x78\xa1\x92\x69\xe1\xcf\xee\x07\xbe\xb2\xbb\x7b\xd5\x2b\xa7\x7f\xdc\x44\xe9\x39\xb2\xbd\xb0\xeb\x18\x84\x71\xbe\x4e\x2a\x42\xe7\x75\x3d\x24\xb6\xa5\xc6\x67\x47\x61\xb4\x6c\x8a\x45\xc6\x06\x01\xb9\xf5\x57\xf8\x63\xbe\x09\x9e\xf4\x28\x97\xbd\x2d\x4a\x5b\xf0\x2f\xbf\xa9\xff\xec\x37\x03\x3f\xcd\x1e\x27\xcf\x94\x5f\x1d\x47\xfe\xaa\xe6\x32\x7f\x3b\xf0\x4a\x93\x9f\xd0\xfe\xe5\xbe\x0b\x0d\xb6\xcb\xb8\x33\xad\x34\x82\xc0\xb7\x2a\xc9\x32\x7d\x1e\x66\x8e\xee\x04\xad\x2f\xfd\x32\xfb\x5e\x26\xc9\xe4\xb1\x0b\xaa\xf0\xa0\x71\xc0\x15\x1e\xf8\xee\xff\xc1\xee\x12\x41\x37\xcf\xb7\xa2\x08\xf0\x3d\x84\x2c\x8c\x75\x46\x49\x4c\xa6\x02\x1b\xea\x21\xfd\xd4\xc6\x6e\x38\x47\x78\x90\x5b\x42\x60\x1a\x60\x38\x07\x66\xfb\x96\x66\xbb\xdb\xbd\x2a\x7b\x78\x9c\x44\x91\x8d\xa9\x4d\x87\xd7\xef\x44\x89\x9d\x07\x5a\x27\xdb\x21\x34\x12\xe5\xfc\xd5\x64\x9b\x42\xd0\xe1\x7d\xf3\xed\x23\xb3\x87\xd0\x7b\xe3\x48\x28\xf0\x5b\xed\xac\x1f\x8f\x28\xe2\x5e\x36\xad\xf8\x0c\x77\xf1\xc0\x22\xb0\xf1\x5b\x81\x8a\xbc\x9f\x98\xf1\x40\xf6\x07\x95\xba\xef\x31\x1b\x53\xfa\x5c\x21\xaa\x15\x8f\xa6\xdd\x9b\xb6\x0e\x13\xd5\x57\xbe\xab\xb5\x36\xee\xa9\x29\x92\xd4\xf6\x23\x8c\xd5\x13\x72\x06\x89\xd3\x19\x05\xc8\xbc\x3f\xa9\xa8\xc2\x2a\xd6\xf8\xba\xae\xd4\xec\xa1\x76\x36\xb6\x31\xbb\x0d\x4e\x9f\xb1\xad\x24\x97\xf6\xe5\x9a\xf1\x30\xb1\x71\xf8\xe6\x94\xda\xcc\x1f\x06\x5a\x22\xe8\x5d\x35\xf8\x70\xce\x23\x5b\xc0\x23\x4e\xbf\x0d\x07\x93\xa3\x4e\xbe\xf1\x23\x67\x36\xcb\x42\x33\x6c\x55\xf8\x96\x7d\xa6\xb8\xa1\x30\xf8\x79\x6a\xba\x8b\x53\xbe\xe9\xff\x9f\xb0\x74\x9e\x66\xde\x89\x73\x6e\xd6\xe0\x92\x47\x16\x40\xb6\x6c\x96\xf1\x9d\x9c\x84\x5d\xb9\x04\x22\xad\xb5\xdd\x72\xbc\xe8\x79\x10\x5a\x8a\x20\x66\x07\x26\x9c\xf8\x66\xe6\x19\xb7\x6b\xb3\xbc\x48\x5d\xcb\x14\x05\x86\x7b\xaa\xf5\x87\xa1\x48\xa1\x3a\x7c\x56\xcd\xb5\x66\xb6\x8c\xd1\xa6\x29\x51\x73\x50\x23\x07\x4a\x3e\x8d\x67\xcb\x37\x28\x8d\x08\x08\xc9\x87\x34\xd9\x72\x98\x13\x75\x91\x47\xd2\x9f\x9a\x78\x24\xfd\x29\x85\xa0\x5a\x4a\xb0\x4f\x25\x54\xf4\xf0\xe4\x35\x2c\xa9\x28\x8b\x2a\xf0\xc4\xd3\xac\x81\x23\x3a\xf7\x1e\x81\x75\x56\x31\xcb\xf5\x85\xfb\x9f\x35\xf8\x15\x87\xf3\x86\x7b\xe4\xe3\xb0\xbb\x68\x63\xf1\x2f\x92\xf8\xaa\x59\xa0\x4f\x1b\xa6\x61\x8e\xb6\x5f\xb7\xcb\x61\x36\x9c\xd2\x93\x59\x40\x0a\x38\x25\x4d\x1f\x91\x5e\x09\xb6\xa3\x19\xe6\xe7\xdb\xcb\x09\x28\xbe\xdd\xaf\x2b\x9f\x22\xdf\x68\x40\x94\x49\x31\xae\x55\x3e\x0d\x66\x30\x50\x3b\xf2\xd2\xc4\x5b\x7c\xf3\x05\x72\xc8\x2c\x29\xab\x49\x92\xd6\xdd\x68\x92\x48\x2d\x38\x7a\x18\xd4\x5d\xd6\x34\xb5\xde\x9a\x0a\xaf\x97\x4d\xb4\x08\x5e\xee\xa3\x5a\x31\xf8\xe0\xdf\xa2\x18\xbc\x50\xda\x87\x84\x43\x2a\xc0\x17\xfe\x0b\x4e\x1b\xdf\x28\x6c\xa3\xe9\xf7\x4d\x98\xb6\xbc\x72\xe2\x35\x5d\x9a\xbc\xd6\xb4\x6e\x7d\xc3\x13\x66\xa2\x93\xdd\x72\x44\x89\xf5\x83\x76\xe8\x55\x1e\x88\x05\x70\x0e\x06\x09\xcf\x89\xaf\x5d\xfd\xff\x75\xb3\xa2\x46\x79\xd8\x7f\xc1\xb4\x5d\x0f\x2a\xc9\x9b\x0b\x79\x33\xaa\x9c\xb9\x33\x26\x12\x66\xe5\xbb\xe3\x0b\xa1\xf3\x22\x11\x52\x83\xd8\x04\xd7\x52\x5a\xbe\x3d\x7a\xbe\x52\x49\x69\xe2\x42\xcb\x4d\x1a\x87\x99\xa3\x05\x93\x59\x2c\x1d\x56\x6d\x0f\x72\x67\x0f\xb5\x87\x36\x1a\xb5\x2a\xe3\xc3\xbe\x01\x75\xb1\xb6\xce\x2f\xcf\xb7\x93\x32\x19\x38\xb0\xef\x01\x0b\x4c\x31\x91\x0d\xbd\x0a\x91\xdc\x3d\x2a\xe0\xe3\xa4\x3e\x57\x23\x3c\x78\xed\x35\xa6\x2e\xb7\x29\x86\xab\x1b\x55\xfe\x9b\x39\xcf\xa2\x30\x47\xc6\xc2\xf8\x3d\xec\x1e\x01\xf3\x79\x04\x49\x6e\x53\x8b\x0e\x4c\xcb\x43\x41\x3e\x0d\x7c\x24\xf5\x69\x13\x0f\xb0\xc9\xd3\x22\x9e\xaa\xe0\x45\x2a\x78\x7f\x57\xf7\x3d\x0d\x10\x92\xa4\x86\xfd\x90\xb1\xe8\xa8\xd2\xa3\x1f\x7f\x8a\x16\x84\xaf\x35\x86\x8e\xc0\x0f\x4f\x96\x91\x3d\x0a\xe3\xc4\x0a\xe5\xa4\x4d\xd4\x18\x14\x4a\x33\xa2\xfa\xa6\x40\xfd\x7f\xac\x70\x39\xb7\x14\xb5\xf7\x65\xca\xc7\xb1\x33\xdf\x23\xba\x0e\x17\xe8\x96\xdf\x4b\xd8\x81\x69\xcd\xb8\x68\xd9\x44\x02\xd3\xee\xa4\x49\x31\x18\xe6\xf4\x70\x14\x75\xc9\xac\x4b\xa3\xeb\x20\xff\x51\x92\xda\xd2\x71\xd1\x6b\x58\x5f\x9a\xe2\x0f\xd1\x9a\xf6\x09\x9e\x59\x4a\x42\x96\x00\x56\x72\x07\x8a\xf0\x6b\x7e\x9e\x69\x26\xde\xaf\x90\x7f\x35\xd6\x17\xba\x49\xba\x9d\xe5\x66\x23\x50\x2c\x37\xf5\x6e\xf5\xfe\xd9\xb6\x19\xd9\x34\xec\x9a\x58\x34\x04\xc1\xd9\x71\x75\xa2\x78\x34\xb7\xf4\x78\xea\x5f\x36\xd1\x5d\xc4\x36\xed\xc9\x1b\xa0\xf9\xc8\xd1\x17\xfc\xdf\x47\x95\x59\x34\xd5\x1d\x8e\x92\xd2\x8d\x5a\x83\x59\x6d\xc1\x8d\x94\x3f\x5a\x60\x23\x4f\x57\x38\xab\x52\x0b\x6e\x23\xa7\x57\xe7\x2c\xd4\xbd\x40\x65\x56\xeb\xaa\xcf\x66\xa3\xde\x33\x14\x65\xe0\x1d\x3f\xc5\x39\x75\x38\x78\xa7\x03\xf0\xec\xaa\x9f\x07\x39\xaf\x20\x9f\x7f\x1a\xa8\x52\x28\xb3\xb3\xc2\x07\xff\xff\xa4\xc4\x06\x73\xf6\xeb\x1c\x89\xe3\xf5\x9b\xc4\x1b\xa3\x87\x87\x5c\xab\xa5\x7c\x1a\xf4\x4d\xfe\xed\x4f\x03\x29\x0b\xdf\xfc\xad\x40\x69\x61\xec\xc4\xcc\x1b\x6a\xf3\x7b\x08\x00\x09\x43\xf9\x4e\x2d\x2b\x9d\x3d\xd4\xee\x14\x59\x18\xdb\x2c\x8b\xc2\x45\x34\x21\x11\xe3\x00\x59\x8e\xb3\x00\xd4\xa5\x70\x5a\xfa\xdd\x97\x86\x83\x90\xa9\x30\xd4\x34\xe3\x4b\xfc\xc9\x20\x69\x42\xd9\xf7\xfb\x13\x9f\xd9\x1c\xc7\x22\x48\x57\x61\x9b\x74\xcb\xec\xa1\x32\x7a\xdf\xe5\x83\x65\xd6\x8b\xc6\x2e\x66\x8c\xa5\xe8\xc0\x62\xd1\x50\xae\x42\x72\x88\xe5\xbc\x8a\x13\x8e\x66\xd5\xbf\x6a\xd2\x96\xe9\x42\xdb\x59\x66\x2d\xf0\xc4\xf8\x5a\x19\x18\x92\x35\x47\x5b\xc1\xe9\xa5\xb8\x89\xaa\xdf\xa8\x80\xc4\x62\xf0\x8d\x2d\x78\x1d\x90\x03\x22\x51\x0a\xe3\x83\x04\x1f\x75\x12\x6c\xf2\x6b\xec\xf1\xb8\x19\xa6\xa6\xff\x4f\xa3\xff\x25\x7b\x13\x61\x18\x58\xa6\xef\x81\x09\xc8\xb1\xd9\x96\x91\x17\x52\x8c\x0d\x6c\x35\xe9\xc9\x94\xcf\xdd\xf1\x21\x94\xf1\x23\xbf\x9b\x56\xe7\xbd\x81\x07\xc6\x12\x5d\xe8\xb3\xf1\x9b\x4d\xd4\x4c\xc5\xb7\x26\xaa\xd2\x7f\xd1\x51\xf5\xbe\xf0\xc5\x9f\x67\x06\x1f\xe1\x2c\x50\xa7\xfe\x5d\x05\x1c\xbc\x36\xf1\x2d\xb5\xf3\xca\xa1\xed\x98\xd9\xde\x5b\x21\x49\x82\x34\x1f\xbe\x51\x98\x45\x9b\x4d\x95\x21\x0b\x42\x05\x7e\x6f\xf8\x8c\xab\x4a\x29\xf1\xb4\x6a\xd1\x75\x6c\x6c\x21\x84\x43\x81\x88\x12\x33\x94\xc1\xb7\x4b\x81\x27\x4a\x0c\x7b\x61\x92\xad\xc4\xdd\x14\x64\x23\xe5\x12\xb9\x0a\x75\xb9\xfa\x52\x8e\x90\x9a\x4f\x9e\x16\x5d\x3f\x7c\x85\xf8\xfe\xc9\x55\x1f\xeb\x3f\x39\xa3\x06\x16\xcc\x88\x0e\x13\x26\x1b\x3f\xd1\x95\x14\x2d\xf5\x3d\x55\x13\xf3\x28\x63\x0f\x62\x0f\xc8\xf2\xd2\x18\xa3\x7a\x81\x52\x4a\xab\xae\xe8\x2e\x4f\xc4\xc7\x7a\x3d\x63\x97\x93\x04\x36\x9c\xf9\x3e\x61\xc3\x85\xfc\xd3\x7f\xc7\x5f\x39\xf8\x25\x8e\xc7\xd1\x23\x78\x5b\x0f\x40\xbd\xdd\x24\x6d\x11\x91\xfc\xd6\x6e\x7a\x12\xcc\xce\x3c\xf1\x45\xc2\x1d\xb4\x16\x68\xce\xed\x82\x36\xa4\x48\x79\xaa\x29\xc1\xcf\x53\xa9\x16\xb5\x80\xcf\xa0\xa3\x29\x7e\x71\xfb\x5a\xbc\xd8\x8e\x93\xb8\x67\x47\x09\x3f\x22\x3f\x0d\xc4\x74\xea\x02\xe8\x7d\x5e\xcd\x6c\x77\xc2\x41\x11\xe6\x2c\x36\xe5\xe8\x15\x27\x5e\x68\xf6\x82\x1a\xca\xce\x8a\x4e\x16\xf6\xc2\x63\x96\xf9\x44\x79\x34\x18\xf9\x96\xcc\x09\x3b\x62\xe5\xa2\xbb\x18\x89\x7f\x44\x4e\xfb\x3d\x35\x3d\xf3\xbd\x26\x58\x14\x86\x26\x88\xf1\x45\x6c\xbb\xe2\x1f\xdf\x6c\x9c\xc7\x36\x71\x9c\x14\x71\xd7\xf6\xa6\xb5\x2a\x35\x8e\x2d\x76\xda\x0f\x27\xba\xe0\x4e\x4b\x81\x6e\x54\xcb\x65\xa6\x5d\x93\x9b\x28\x19\x14\x08\xda\x70\xf4\xaf\x2b\xa1\xc0\xeb\x6a\xda\x3f\x0e\xbb\xf6\xd1\xc4\xe5\x4d\xa5\x84\x6e\x92\xda\xe9\x6a\xe3\x93\x1e\xb1\xf0\x46\x78\xcb\xbf\x47\x23\x53\x6e\x28\xe7\xb1\x98\xda\xf8\x18\xd6\x12\x5d\x8f\x93\x13\xa5\x00\x51\x67\x80\x99\x9f\x3f\xd8\xee\xa5\xc9\x98\x06\xf2\x99\x09\x31\x50\x64\x95\x3c\x34\xe0\x54\xff\x3d\xab\x76\xe0\xfb\x5b\x67\x15\x29\xb5\x89\x6d\x96\x0f\x6d\x1e\x12\x59\xd8\xec\x21\xcf\x28\xf9\xb2\x80\xf5\xd6\x5d\x89\xb5\x88\x97\x6c\x08\x6c\xb2\xc0\x7a\xca\xef\x21\xd4\xfa\xae\xa5\x97\x16\x4c\x1c\x03\x87\x78\x59\x0d\x56\x5c\xae\xe2\x05\x6d\x17\x24\x7f\xc0\xb1\x9d\x9a\xa8\x79\x82\x53\x9a\x17\x5f\x35\x12\xce\x6a\xe4\x46\x98\x15\x51\xd1\xf2\x73\x91\x8c\x42\xe5\x1b\x85\x88\x32\x9d\x8c\xd4\x23\x15\xa4\x91\x5b\x83\x30\x70\x08\xe5\x59\xf5\x26\x78\xca\xb7\xc6\x8a\x95\x9d\x74\x28\x1c\x99\x99\xb6\x67\xbe\xe8\xe9\x44\xdd\x7d\xd0\x73\xa2\xa1\xcb\x7c\xa0\xf4\xb9\xd8\x8d\x0e\x46\xe6\xc6\xf4\x2f\xe9\x40\xad\xdb\xb5\x19\x13\x86\xc2\xc4\xff\x5e\xe0\x71\xd5\x67\xab\x53\x9a\x3e\x85\x37\x61\x1a\x85\xb1\xdd\xe9\x97\x8b\x51\x41\x88\xb6\xee\x4d\x14\x81\xde\x69\x05\xaa\x3a\x4d\xfe\x88\xff\x7f\xe0\x3b\x83\x23\x49\xa9\x10\xf8\xfd\x1f\x2a\xa2\xf2\xb5\xc2\x4f\x2c\xda\x71\xbe\xd3\x33\xec\x5d\x52\x24\x7a\xef\x6a\x75\x1b\x9e\xfb\x73\xec\x88\x9a\xae\xa0\x81\xf3\xb2\x67\xc1\x1e\x50\x3e\x26\x24\x85\x6f\xd3\xa6\xe0\x6b\x05\x59\xb5\x71\x92\x8e\x48\x31\x70\xff\x7e\x0e\xaa\x4e\xd1\x77\xe5\x6b\x55\x03\xfa\xa5\x03\x87\x38\xc8\xc6\xd3\x7e\x5f\xc1\x33\xa6\x34\x92\xf4\xb1\xd5\xed\x7e\x59\xda\x17\x49\x6c\xc3\x9e\x69\xb5\xbe\x72\xd0\xb9\x73\xd5\x4e\x3b\xaf\x80\xc6\xbd\xa2\x34\xc2\x53\x9e\x3e\xe3\xb2\x9a\xe6\xc4\xf9\x94\x30\xaa\x01\xf7\x17\xdb\x25\x9b\xe6\x43\x1b\xd1\x20\x81\xeb\xcf\x02\x53\xc1\xd7\x1e\x90\x52\x74\xc2\xee\x94\x32\x60\x77\x14\x7e\x63\x0f\x05\xb2\xc0\xf5\xdd\x54\x10\xb6\xa4\x8c\x5e\x63\x86\xb0\x91\xb3\x12\xc6\x77\xb2\x64\xa2\x9a\xff\xb9\xfa\x77\x33\xd3\xe5\xf2\xc2\xcf\x5d\xd5\x90\xc7\x2b\x13\x9f\xa5\x9d\xa5\x5c\x12\x4e\x77\x5d\xb1\x4b\x67\xb9\xb5\xd1\xc8\x2c\x52\x77\xa9\x22\x32\x5e\x6e\x0f\x18\x3f\x34\x89\x65\x74\xb7\x61\x72\x39\x2d\x22\x74\x9e\xf0\x1c\x57\x03\x8f\xa5\x5b\xad\xa1\x25\x48\xde\x6c\x29\xb4\x50\x1d\x70\xd4\xb6\x1e\xb2\x2e\x5d\x73\x41\x91\x37\x54\x50\x06\xa9\x59\x09\xe3\xc1\x94\x77\xf0\xa7\xb1\x85\x61\xf0\x1f\x2a\x31\x99\x2d\x85\xc8\x5f\x4e\x12\x42\x54\x4f\xfb\x12\x1c\x3a\xb5\xae\x26\xee\x66\x2b\x3f\xc0\x3e\x42\x5c\x78\x57\xf1\x44\xa6\x36\x63\xf4\x2f\xe2\x5f\x48\xd1\xf2\x75\x25\x02\x8f\x6c\xbc\x4b\x11\xe3\x9f\x24\x43\x8e\xe4\xe0\x13\xd4\x38\x45\xa7\x85\xb6\x8a\x53\x70\xf1\x63\x72\x9f\x50\x7f\x8a\x5f\x5e\x4b\xe7\xcb\xd8\x34\xb2\xdd\x3c\x0d\xbb\x2d\xc5\xff\x87\x5e\x9b\x1f\xf0\x73\x55\xab\x25\x1b\xb3\x96\x82\x88\x44\x79\xc4\xe2\xb5\x8a\x96\xfe\xd8\xa6\x79\x98\x89\x47\x95\xb2\xac\xef\x99\x9c\x0f\x7c\xcc\x74\x5e\x2f\xd4\x9a\xb2\xf3\xd9\x30\x29\xca\xf4\xbd\xf5\xe5\x23\xfc\x94\xb9\x81\xc7\x37\x15\xf7\x13\x85\xe3\xe9\x32\xc9\x14\xf6\xd8\x96\x53\x57\xc1\x67\x09\xdb\xac\xc2\x55\x9e\x57\xde\x27\x4f\x93\x64\x8c\x09\x42\xd7\x22\x2a\xff\x52\xb8\x71\x94\xb2\x93\x79\xb3\xe5\xa7\x51\xae\x2a\xe8\xf2\xd5\x86\xf9\x82\xa3\xed\xcc\xa6\x4b\xd2\xdd\x16\x0a\x62\x32\xa3\x7c\xa3\xa4\x22\x3b\xa6\xb7\x4b\x69\x88\xa2\x46\xc9\xd7\x41\xeb\x85\x17\x1c\x5c\xdd\xb3\x44\xde\x9d\x78\x96\x48\xc6\x62\x0b\xbe\x5d\x4d\x7c\xa4\x49\x9c\x87\x4c\x4d\x2e\x63\x26\x6a\x25\xeb\xf8\xf7\xd9\x43\xed\x37\x0a\xdb\xb1\xdd\x29\x35\x6e\x82\xdf\xea\x24\x6b\x9c\x4a\xfc\x5f\xd6\x7e\xb7\xe3\xc7\xda\x3b\xa5\xc7\xd4\x4a\x83\xee\x38\xa4\x94\xfc\x97\xef\x8e\x2c\x46\x36\x8c\xa7\xbc\x2e\x1a\x02\x37\x04\x11\xd7\xf1\x95\x85\x70\x56\x21\xfe\xec\x08\x26\x55\x5a\x20\x2d\xa7\x17\x58\x3f\xfb\x47\x16\xda\x23\x93\x83\x70\xdf\xab\xcc\xdc\xc5\x71\xe2\x9b\x26\xff\xb5\x1c\x66\xbd\x64\xa4\x08\xa8\xb1\x1a\x7c\xad\x88\xe5\xf2\x61\x1a\xf6\xf3\x8c\xa2\x3a\xd1\x17\xa0\x87\x2f\x92\x13\x9e\x42\xf7\x66\xe0\xd5\x1f\xce\xd2\x83\x14\xd4\x8f\x6f\x5d\x99\x78\xa5\x93\xf4\x56\xa6\xf5\x71\x9f\x78\x4b\x89\x3a\x9a\x10\x05\x78\x0b\x7d\xd2\xe5\xb4\x43\xdb\x5d\x44\x91\x08\xde\x69\x4c\x50\x44\xc4\xcc\x10\xa0\x45\xbf\xec\xc1\xe4\xa7\x14\x7c\x62\x89\xc5\x39\x4d\x1a\x0a\x27\x0f\x5c\x02\xa7\x92\x7c\xd3\xd4\xa7\x8e\x12\xd1\x1a\x28\x7d\x90\xb0\xe6\x95\x1f\x24\xa3\xbb\xfa\xdc\x2e\x46\x96\x30\x8b\xa2\x00\x53\xfe\x04\x38\xfa\x07\xb4\x52\x5c\x58\xa8\x0d\x76\x1e\xde\xd7\xee\x84\x28\xcf\x3b\x6e\xf7\x79\x27\xe7\x79\x5e\x39\xa8\xed\xdc\xfc\x08\xf2\xd6\x74\x67\x7b\x2d\xf0\x2d\xa8\x5e\x98\x8d\x0b\xae\x1a\x1e\x75\xbb\x5d\xa9\x81\x6e\x36\x01\x2c\xfa\x26\xcb\x6d\x8c\x39\xa2\x83\x4e\x4b\xbc\xe5\x75\xc5\x55\xd4\xf2\xcf\xbe\xf2\x15\x45\x09\x7d\x53\xb5\xf0\xbf\xa9\xb8\x55\xd6\x34\x1e\xf6\x8c\xe6\xaa\x33\x69\x6a\x23\x4c\xc0\xa0\x1b\xfd\x31\x30\x67\x7c\xa3\x92\xc7\x22\xee\x27\x69\x5e\xc4\x06\xc2\xd7\xc2\x8f\x7b\x96\xbe\x18\x5f\xab\x41\xea\x72\xeb\x12\x33\xb9\xdf\x96\x5b\x81\x9f\x17\xd9\x50\x08\xf7\x13\x6a\x98\xb4\x67\x73\x9b\x86\x09\x4f\xf6\x7b\xa8\xcb\xa7\x13\x85\x5e\xad\x55\xea\xe6\xe6\xda\x66\x3c\x4e\x2d\xa3\xee\xe9\x75\xe8\xfb\xc3\x21\xf2\xb5\x2b\x56\x74\x4d\x64\xe3\x9e\xc1\x33\xe4\x1c\x8d\xfe\x50\xf2\xb5\x5a\x2d\x77\x7f\x7b\x64\xba\xc3\x30\xb6\x0c\x64\xaa\xa8\x65\x0a\x1a\xa3\xde\x4a\x38\xd8\x36\x9d\xa4\x88\x7b\x00\x32\xa2\x69\x01\x27\x8f\xd3\x79\x5e\x35\x33\x4e\xd0\x7e\x45\x42\xbb\xa6\x49\x77\xb4\x0a\x5c\x4e\x23\x2f\x4c\x2a\x27\x6c\x2a\x65\xc4\xe5\x52\xaa\x5f\xfa\x45\x86\x62\x4d\x9a\x2a\xd2\x0c\x66\x12\x8a\xc4\xc6\xa2\xbb\x64\xc9\x91\x89\x7b\xfd\xd0\x71\x2d\xbb\x4c\xc7\x6d\x2b\xcd\x81\x49\xca\x3d\x21\xef\x74\x25\x4c\x30\xef\xb8\x9d\x1c\x4a\xcb\x66\xe1\x20\x0e\xe3\xc1\xb4\x22\x2d\xf8\x58\x45\x87\xa8\xea\x0a\x3c\x90\x7e\x29\xbc\xfb\x3d\x85\xe7\x1c\x9a\x25\xfb\xd3\xf4\xfe\xf8\xda\x7f\x0f\x15\x5f\x14\xb2\x26\xf4\x30\xe1\xed\x7e\x1f\xf5\x3d\x3c\xa3\x3f\xa7\x35\x46\x9e\x76\x7b\xb2\xe3\x0b\xfc\xe2\x0f\x91\xff\x88\x56\x0c\xfd\x5c\x3c\x14\x1e\xbd\x47\xcb\xf7\x04\x01\x00\x45\x0f\x9e\x4e\xa7\xab\xbf\x95\x87\x06\x7f\x45\x2c\x0d\x2f\xb1\x4b\x66\x02\x06\x7a\xc9\xb7\x9f\x5d\x2d\xad\x10\x1c\xec\x6e\x32\xb6\xf8\xf1\x57\x08\xce\xe2\x34\x81\x9d\xb0\xee\xbd\x0a\xb0\x66\xa2\xa8\x90\xfe\xe7\xa4\x75\x64\xc1\x0d\x45\xd0\x9a\x3b\x65\xd2\xd9\x43\x15\x91\x60\x74\x09\x2e\x83\x9e\x4d\x9a\xbb\x88\xa5\xd0\xc0\xb9\xd3\x30\x68\xb9\x00\x10\x59\x9c\x73\x24\x7e\x94\xed\xe8\x8e\x99\x6d\x75\x0d\xaf\x75\x78\xcd\x23\x18\x88\x4e\x02\xd5\xb9\x07\x0f\xe8\x51\xa0\xa0\x5a\x61\xa3\xa8\xc7\xee\x2f\x22\xb8\x28\x03\xa7\x07\xd4\x04\x7b\x70\xa7\x01\x2b\x77\xb0\x9d\x19\x06\x06\xe3\x79\xdd\x08\x2a\x2d\x1e\xc5\x30\x8e\x8f\x63\x2d\x1f\xc5\x0c\x30\x35\xe3\xc7\x68\xe2\x94\x7b\x92\xa2\xdd\xac\x2c\xff\x66\xed\x04\x91\x72\x41\x38\x1a\x27\xa9\x90\x93\xf1\x08\x98\x62\x2d\xda\x54\x42\x1d\x63\x9a\xd1\xf1\x62\x4b\x8a\x05\x64\x0a\x04\xe2\x22\xbd\x44\x6f\xc6\xff\xb2\xfa\xb4\x3b\x2a\xa4\xf5\x65\x5b\x8a\x34\x16\x14\x8a\xc2\xf1\xed\x53\xca\x25\x93\xe5\x50\x28\x79\xc9\x7d\x11\xf5\xa5\x9a\x38\xe7\x32\x9b\x3b\x33\x2b\x61\xa2\x6e\x23\x2b\x15\xb1\x9e\xed\xdb\x38\x0b\x97\x90\xf5\x37\x21\x0a\x25\xdf\x34\x45\x9e\x54\x94\xe2\x1e\xaa\x18\x0a\x32\xab\xd2\xdf\xde\xfe\x70\xff\x61\xbb\xbf\x37\xd9\xdb\x51\x2c\x10\x27\x03\x4f\x8a\x7d\xb2\x89\x50\x3f\x0d\x7b\xe0\x5c\xc1\xf9\xbe\xad\x18\xda\x81\xa6\x17\xa8\xeb\x76\xcd\x51\x92\xf6\xb7\x79\x9a\x74\x87\x76\x04\x5a\x32\xef\xc7\x34\x01\xfc\xd9\x5a\x19\x72\x6e\xae\x9d\xa7\x26\xce\xc6\x91\x89\x91\x37\xa2\x89\xbb\xa5\x05\x6e\x36\x15\xce\xa5\x35\xd3\xe4\x19\x86\x26\xe4\x82\xe9\x82\x2f\xc6\x7b\x12\xdc\x3a\xfa\xe6\xb5\xd7\xda\x7d\x13\x77\x43\x52\x9d\x75\x0a\x00\xe0\x01\xe0\x6b\x05\x9b\x18\x90\xfb\xdd\xa5\x90\xe9\xd4\x38\x13\x35\x98\x72\x5d\x75\x43\x5d\xd0\xeb\xbe\x01\xc3\x14\x3d\x7c\xa3\x12\xd7\x5e\x32\x0a\xe3\x90\xb1\x23\x1a\x79\xc5\xd7\x4d\xc2\x6e\xf9\xd0\xa6\xb6\xc3\x94\x57\x02\x68\xf7\x71\xf6\x46\x03\xe5\xde\x42\xbb\x5b\x64\xa2\x87\x72\xd4\xa5\xe3\x8a\x34\xeb\x4c\xed\x55\x87\x5e\x6d\x8f\x6d\xaf\x17\x51\xe0\xe1\xa8\xbf\x4e\x4d\x14\xb1\x06\x88\x1c\x65\xe0\x42\xa9\x2a\x5b\xed\x95\x84\x14\xcf\x77\xcc\x31\xbe\xa7\x1c\xa6\x07\x7b\xfb\x6c\x75\x18\xa6\x49\x36\x0c\x47\x46\xe7\x3a\x1c\xf1\xf1\xd4\x10\xbd\x25\x2a\xbe\xad\x1a\x5a\x70\xff\x7e\x82\xc7\xd8\x9c\xbe\x3d\xbc\x9e\x26\x53\xbd\xab\x0a\x9e\x97\x6a\x71\xec\xfc\x7c\x3b\x29\xf2\x69\x0f\xa8\x87\x0a\x33\xf2\x8a\x16\xc9\xe1\x0b\x12\xaf\xdc\x0a\x30\xe2\xeb\x75\x8c\xe0\x6c\xfb\xf0\xbe\x85\x3d\xaa\x5c\x03\x0a\x57\x98\xdb\x1f\xa9\x3a\xf9\xd7\x26\x7e\xd8\x75\x8d\x3c\x8f\xa4\x4d\x2a\xca\x5f\x0f\x3c\xc6\x1a\xde\x0d\xf5\xc9\x6f\xa2\xf5\xe8\xea\x18\xe0\xb8\x08\xe3\xc1\x6e\x72\x74\x78\xa7\x35\x35\x90\x0d\xbd\x11\x99\x9b\x29\x3f\x0d\xd9\x06\x66\x0c\x25\xbb\xa6\x23\xa4\xd4\x0d\xa4\x22\x76\xc6\xc9\xc7\xe6\x43\x13\xb7\x14\x03\xc0\x0e\xea\x4e\xf3\xb5\x6a\x53\xa5\x2b\x02\xc9\x82\x9b\xfe\x2c\xaa\x80\x7c\xb3\xea\x8f\x9a\xed\x0e\x13\x09\xf2\x31\x23\xc5\xdb\x94\x6f\x82\xa7\x9c\x43\x78\xe1\x17\xbe\x08\x63\x8e\xd8\xed\x6d\xc5\x8a\xf7\x76\x93\x89\x1e\x5a\x93\xba\xae\x1a\x4c\x2d\xa6\xea\xf8\x5a\x1d\xf8\x7e\x52\xa4\xf9\x90\xcc\x18\x5c\xde\xef\x05\x4a\x64\xff\xf7\x54\xac\xc6\x0c\x2c\x53\x0a\xac\x01\x11\x79\x24\x4e\x57\x15\x64\xe8\x53\x15\x7b\xa6\x26\xcc\xc8\xa4\xcc\x1e\xe2\x9e\x39\x28\xa4\x61\xce\xaf\x6a\x9a\x5b\xc2\xc4\x3e\x68\x55\xa7\xdd\x1c\x51\xed\x35\xad\x88\x4a\x4c\xa9\xbb\x7c\xd7\xef\x21\x9e\x20\xf7\x72\x82\x6a\x63\xc7\x0d\xc1\x51\xde\xfa\x00\xd1\x3d\xba\xdf\x8f\xcd\x38\xec\xaa\xcd\xbb\x43\x44\x2d\x8e\x6e\xc4\x31\xb3\x5f\xd6\xdd\xef\x3f\x54\x85\x8d\x65\x6b\x16\x63\x9b\x65\xd3\x7e\xb0\xfb\x3c\xec\x06\xb2\x60\x1e\x6c\xe2\x7f\x51\xcc\xb7\xb7\xb7\x77\xe9\x17\x66\x0f\xb5\xf7\xef\xa7\xae\x09\x4b\xcd\x92\xb5\x15\xd9\xd9\x26\x4f\x14\xdb\x22\x4d\xb2\x6e\x68\xe3\xae\x95\x4d\xa7\xa6\xce\x17\xe4\xa6\xc6\x1b\xba\xf0\xea\xc1\x72\x8f\xf4\xde\x28\x4c\xea\x0b\x11\x00\xcf\x62\xd4\x99\xaf\x67\xb6\x7b\xb1\xd9\x43\xed\x62\x6f\xb6\xb7\x63\xba\x8b\xd2\x49\x15\x1c\xa0\x67\x1b\x78\xa0\x65\x76\x2e\xab\x52\x42\x4c\x4c\xeb\x19\x9a\x70\x42\xf4\x44\x01\xdf\x9e\x19\xaf\x7f\x42\x90\x87\xd9\x07\x7b\x56\xfd\xde\x8b\x79\x43\x7b\xc3\x8a\x16\x0b\x5f\xd7\x8a\x00\xe5\x0f\x4c\xed\x1b\x85\xcd\x72\xa5\x72\x7c\x4f\xf9\xf9\x4b\x1a\x95\x79\xae\x01\xc2\x7f\xb0\x6d\xa3\x8c\x61\x60\x4a\xc1\xec\x92\x1a\x4e\xbb\xa4\xa8\x41\x63\x6b\x7b\x9f\xa5\x3d\x08\xc3\x01\x05\x0f\xb9\x09\x3c\x07\xe9\xdd\xc0\x77\xb9\xce\x91\x73\xc5\xa1\x44\x29\x93\x45\xe6\x2b\xa3\xf3\x4c\xcf\x89\x72\x28\x4b\x6e\x09\xa2\xa0\xe5\xd4\x1e\xc0\x2b\xeb\x44\xea\x17\xfc\x3f\xc0\xed\xb8\x69\x66\x37\xd5\xf3\x3d\x55\x12\xa6\x1a\xfa\x33\x5a\x4b\xc4\xf3\x19\xae\x05\xde\xdc\xfc\x2e\x70\xeb\xb0\xc5\xd7\x90\x00\x09\x57\x69\xf9\x1b\xf1\x8a\x1f\x06\x95\xc5\xa5\xf3\x20\x2c\x95\x7e\xbe\x85\x99\x92\xd1\x7d\xdf\xc4\x09\x93\x84\x94\x32\x23\x09\xf9\xcb\x45\xc2\x99\x64\xfd\x1c\x20\xc8\xcf\xd1\xaf\x17\xd9\x5d\xda\xc2\x52\xf9\xaf\x4b\x17\x1c\x6c\xf7\x92\xe5\xb8\xe5\x6b\x95\x98\xb6\x92\xde\xa6\xeb\x7b\xa4\x26\xc4\x36\x43\xea\xc2\xec\x06\x7c\xe3\x47\x49\xc7\x79\x38\x0a\x33\x54\xe3\xf4\x33\x96\x87\xff\xac\xd2\xc0\xb5\x69\x19\x59\xec\xf6\x0d\xe0\x77\xb0\x88\xf0\xb6\x37\x95\xec\xed\x3b\xaa\x04\x77\x87\x7e\x1d\xff\x8d\xe2\xe8\x86\x56\x39\xa2\xbd\x9d\x35\xb0\x87\xd4\x3d\x47\x26\x95\x92\x86\xf4\xe7\x14\xa3\xfc\xe9\xe0\xef\x3f\xe2\x75\x8a\xb9\xb6\xe5\x2b\x73\x6f\xe1\x79\x0a\x61\x9d\x2f\xbc\x8c\x92\x5e\xd8\x97\x79\x42\x05\x10\x41\xba\xc1\xd7\x8a\x18\x37\xa2\x19\x1f\x56\x5d\x76\xb1\x24\xda\x0a\xd2\x23\x50\x25\x71\x93\x86\xfd\xfe\x94\xdf\x89\xcc\x26\x26\xa5\x3f\xda\x0b\x82\x2d\xdc\x66\x4e\x8f\xcc\x1e\x6a\xcf\xcf\x3f\x5b\xae\x21\xca\x9e\x4c\x93\xeb\x70\xd2\xe5\x6b\x19\x4c\xa7\x19\x0e\x3f\xc4\xf9\x52\xbc\x66\x47\xd9\x77\x7f\x1b\x5b\x0c\x90\x49\xf8\x2d\x6c\xdd\x53\xd8\xad\xb0\x31\xdf\x0a\x7c\x7b\x0e\x4a\xc7\xae\xb1\xbe\xe0\x48\xce\xce\xa0\x84\x29\x91\x20\xed\x7c\xbc\xef\x0d\x0c\x40\xe2\xe0\x6f\xa9\xd1\xe7\xd3\xb4\xbd\x04\xaa\xb1\x7d\x7f\xef\xdf\xdf\xb6\x69\x9a\xa4\xd3\x4a\xe2\x01\x89\x3c\x92\x8c\xef\x4f\xb6\x5b\x41\x61\x58\xf3\x91\x40\x37\xb5\xbd\x30\x7f\xc2\xb7\x45\xc0\xb2\x82\x08\xe9\xd6\x44\xa1\xe1\x30\x1f\x2a\x65\x5e\x3f\x76\x75\x26\x50\xa9\x33\x13\xb6\xf0\x8d\x16\x79\x67\x81\x4a\x41\x58\xc1\xd4\x89\x41\xf3\x26\x69\x94\x0c\x0a\xe4\x57\x2c\x5b\x02\x60\x95\x68\x98\x28\xd9\xd7\x10\xf4\x7a\x92\xe9\xaa\xee\xd3\x46\x03\x11\xb9\x93\x65\x74\x11\x12\xa0\xaa\x5f\x55\xb0\xd5\xaf\xd6\xc3\xdb\xa3\xed\xc3\xfb\xe6\x1f\xa7\xba\x0e\x4f\x6c\xc0\xae\x62\x73\x7c\xaa\x22\xcb\xeb\x64\x63\x59\xf9\x8c\x48\x11\x99\xa9\x64\xa2\x34\x7d\x30\xb7\xc5\x2f\x56\x7a\x8b\xf7\xe9\x2c\x48\x7e\xf3\x19\x05\xa7\xcf\x56\x76\x96\x56\xc0\xb5\x32\x14\x72\xc7\xd3\xbd\x9e\x51\xf3\xa1\x57\x69\x5a\x18\x84\x18\x1f\x57\x5b\x55\x79\xa5\x38\xc0\x56\x95\x6f\x56\x3f\xa7\x25\xf8\x6d\x96\x8d\x6c\x9c\x13\x7a\x90\x59\x9f\xd0\xe4\x11\x1d\x74\x5a\x6d\x74\xe0\x4e\xf2\xb3\xe4\x3b\xb5\x33\xfe\x08\xdb\x9a\x5f\xa3\xf8\xcb\xc2\xb8\x1f\x15\x65\xfc\x32\xed\x45\xd8\xcf\xe3\x41\x83\xab\xe0\x84\x92\xb7\x3f\xa1\xd8\x20\xce\xd7\xf2\xc5\xb9\xb9\x76\x37\x0d\x47\x19\xa7\x98\xa2\x95\xed\xab\xba\x8f\xd5\xc8\x9c\x0e\x2c\x20\xc5\xd4\xc7\x06\x0e\x1e\x8e\xe4\x21\xcd\x7f\x21\x16\xfa\xa6\x22\xc4\x5b\x57\x48\x9f\x8e\xb5\xfd\x96\x4a\xd5\xb8\xba\x2b\x42\x55\xbe\xaa\x63\xe2\x9f\x54\x23\xc2\x77\xa9\x7d\xc5\x34\xc7\x95\x21\xf5\xc7\x56\xc9\x38\x28\xf0\xb1\xf0\x82\xfc\x08\x3b\x8e\xb9\x7c\x69\x31\x64\xd3\xe8\x02\x0e\x7d\x69\xfc\xc3\xf4\x4c\x35\x74\x28\xdd\x35\x42\x84\x8f\xb5\x39\xdc\x3d\xa3\xa6\x7e\x00\x2a\x80\x53\x6f\x51\xed\x11\xdb\xe9\x39\x5a\x4a\x26\xfb\x0f\xe8\x79\xba\x41\x76\x27\x21\x74\x9d\xb6\xb5\xa8\xc0\xd2\x69\x41\xe0\xc1\x55\x3c\xa1\xbd\x2b\x77\x26\x76\xc3\x13\x80\xb5\xe1\x7d\x4f\x34\x09\x89\x11\xb9\x4b\xa5\x7e\xae\xd9\x74\xc4\x25\xa7\x76\x6c\x3d\xbc\xcf\xcd\x9e\xbb\x79\x43\x56\x17\xc5\x52\x7c\xb7\xf6\x39\x87\x5e\x6d\xf7\x93\x74\x90\xb4\x54\xd7\x4c\x8d\x64\x5d\x98\x3c\x57\x35\x08\xaf\xcc\xb6\x5f\x24\x60\x0c\x7c\xc8\x6d\xfa\xdd\xc8\x69\x58\xd4\x44\x0e\x88\x6f\xd5\xde\xa3\xad\xc5\xe2\xb7\xdb\x1d\x56\x19\xa2\xbc\x32\x4b\x1f\x8f\x58\xe7\x21\x99\x5f\xbe\xd6\x34\x82\x66\x1c\xe6\x26\x7a\x12\x7b\x06\x5f\xef\xab\x0a\xcd\x8f\x81\x7b\x7e\xe4\x81\xa6\x73\xd0\x78\xcf\xaf\x06\x0a\x72\x89\x08\x0f\xbd\xc7\x6b\xf0\xb1\x08\xc5\xef\xe0\xdc\x0a\x1d\x44\xf9\xf5\xf1\x8a\xfb\x38\xf7\xf8\x76\x7f\xde\xc8\xf5\x3b\x36\x59\x3e\xdd\x7a\x79\x9e\xb2\x3d\x20\x86\xc0\x5f\x06\x2b\x79\x43\xcb\x41\x29\x6b\x1e\xc6\x2f\xa8\x06\xff\x15\xd5\xe0\xbf\xa2\x4e\x5d\xd1\x4f\x00\x84\x11\x4d\x30\x15\xe3\xde\x51\xda\x94\x67\x5d\x17\x32\x4c\x4d\x4c\xaf\x90\x39\x03\xff\x55\x4e\x6b\x96\xfb\xad\x86\xf1\x81\x61\x38\x18\x2e\x3b\xe9\x11\x00\x0d\xdf\xc3\x6a\xf2\x8d\x43\xb5\x8d\x92\x34\xb3\x70\x5b\x2c\xc8\x4a\xe5\x7f\x11\x67\xf5\x29\xec\xeb\xc5\x68\xcc\x0c\xde\x8a\x7e\xe6\xa0\xd3\xfc\xf1\x93\x0a\x97\x94\x58\x68\x7d\x44\xe6\xc5\xb6\x89\xa2\x04\x2c\xf7\x52\x73\xa2\x9d\x2e\xc5\xa8\xa6\xc1\xf1\xc8\x2e\x4f\xf9\x1e\x12\x23\x5f\xf1\x09\x53\x33\x8a\xf1\xbe\x5e\xcb\x9e\x3d\xd4\xee\x98\xc8\xc4\x5d\x37\x3d\x84\x45\x7f\x4c\x71\x04\xa2\x36\x08\xcf\xff\xdd\xa6\xcf\x8f\xcc\x72\x8c\xf6\xa1\x16\x74\x12\xa5\x27\xe9\x08\x30\x92\x88\x21\x1c\x38\x42\x77\x02\x55\x22\x79\x47\xeb\xb9\x68\x89\xd1\xe3\x6a\x3f\xfd\x93\x9f\xfb\xc7\x53\x9e\xb0\x0b\x3a\xf2\x48\x4c\x58\xbe\x43\x00\xbf\x3e\x97\xcb\x6c\xbc\x77\x97\x97\xa3\xbe\x33\x51\x03\x67\x1f\x6a\xea\x15\x96\x89\x04\xc4\xe8\x7b\x13\xef\xa9\x4e\x4f\x14\xed\xed\x86\xab\x21\x85\x49\xc1\x45\x6e\xec\xfb\xc7\x67\x7c\x61\xfb\xb2\xde\x84\x3b\x56\xeb\x74\xbf\x0b\x6d\xfb\x66\x98\x81\x14\xd4\x51\xe3\x1c\xde\xe7\x3a\x91\xcf\x2a\x6a\x09\x96\xb4\x28\x8d\xb7\x3b\xe1\xee\xec\x6a\xc9\xda\x91\x89\x63\x9b\x4e\x79\xef\x7e\x8f\x0e\x8f\x10\xdc\x95\x2f\x92\x01\x8c\xcf\xf8\xf6\xc2\xa2\x40\x76\x61\x25\x76\x20\x7e\xe0\x9b\x9a\x5a\xe6\xdc\x5c\x3b\xb3\x39\xec\x32\x97\x56\xd5\x87\xfc\x35\x76\xab\x38\xd6\x86\x82\x43\xa7\xe8\xf7\xb9\xe7\x40\x1b\xce\x29\x27\x3a\x9a\xa8\x8f\x15\x6f\x51\x9e\x14\x69\x99\x99\xe9\x3e\x4b\xa5\xa5\xf1\xb4\xe2\x72\x28\x46\xd9\x4a\x4b\xd1\x2e\xbd\x3f\x51\x73\x1e\xef\xab\x38\x25\x7b\xa3\xb0\x66\x14\x66\x43\x4a\x5b\xb8\x85\xa6\x08\x16\xcf\xb8\xd9\xba\x71\xd1\x89\xc2\x2e\x3d\x28\xe7\x09\xd1\xee\xe6\xeb\xd2\xbe\x38\x98\x12\x0d\x81\xa5\x54\xc8\x24\x88\xbd\xcb\xda\x79\xfa\x5f\x68\xad\xb7\x1f\x43\xe2\xb8\xb3\x9a\x96\xcb\x65\xb5\x73\x73\x2e\xab\xd5\x50\xae\x34\xe9\x29\x81\x53\xd8\x55\xbe\xae\x2d\xfa\xa1\x57\xdb\x3d\x3b\x4e\xb2\x10\x84\x4e\x4e\x09\xb7\xa5\xf4\x48\xaf\xd3\xe6\x93\xca\x76\x13\xee\x68\x68\x4d\x4f\xbe\x9d\x68\x13\x79\xc0\x6b\x3d\x49\x9f\x9b\x6b\xf7\xad\x93\x3a\x16\xd2\x6f\x5f\x55\xbc\xfd\x48\x62\xca\x6e\xb9\x82\x53\x5a\x81\x7e\x63\x52\x29\x44\xfb\x93\x75\x3b\xd0\xc4\xc1\x61\x6f\x97\x8f\x15\x11\x6a\x22\xe3\xbe\x86\x9c\x4e\x66\xbf\xc9\x56\x09\xf5\x88\x17\x2f\xba\xa1\x6b\x1e\xae\x93\xf9\x46\x61\xe2\xbc\x18\x29\x35\x36\x1e\x0e\xe5\x9b\xe0\x0b\x8f\xf8\x19\x9d\x30\xc9\x6d\x77\x18\x27\x51\x32\xc0\xb2\x23\xee\x43\x3d\xed\x01\x4f\x80\xc1\x19\xae\xd7\x2c\xf3\x81\x7d\x6d\x93\xe7\x76\x34\x76\x03\x67\x8c\x68\x09\x7c\x33\xf9\x4b\x1a\x47\xf6\x0a\xa3\x89\xf0\x3c\x6e\x22\x20\xe4\x1b\xb7\x9d\x93\x22\x2f\xf7\xe6\x98\x1b\xba\xc8\x6a\x58\xce\x00\x26\xf5\x02\x2d\x02\xd3\x20\x55\x70\x43\xf9\x30\x89\x57\xd4\xa6\xe3\x64\x81\x6f\x1a\x38\x05\xe7\xdb\x61\x14\x15\x59\x98\xc4\x74\x7e\x14\x8b\x71\x4b\x89\x6f\x37\xb5\xc5\x72\x23\x46\x69\x96\xeb\x24\xac\xb7\xcd\x37\xdb\xf3\xb9\x03\xfb\x0e\x94\xaf\xdb\xa5\xb4\x66\xbe\x86\x18\x02\x67\xe7\x2c\xb9\x16\xd7\x7e\x78\x59\x2a\x21\xff\x8e\x9e\x3e\x16\x69\x17\xcc\x9e\x14\x8a\x64\x52\x79\x9c\x26\x99\xed\x16\xde\x5e\x01\xa3\xf6\xc7\x4a\xd1\xfa\x8f\x27\xc2\xba\x92\x87\x83\x61\x6e\x63\xf7\xb7\x4d\xbc\xf3\x4d\x84\xb2\xe3\x34\x79\xdd\x76\xdd\x93\x86\x19\x7c\x57\x85\x71\xef\xba\x71\xd3\x22\xce\x96\xcd\x60\x60\x7d\x47\x40\x58\xb3\x7c\xd6\xf9\x6e\xcd\xc0\xd0\xd0\x7e\x16\x66\xfe\x67\x00\x56\x02\xff\xc0\xd7\x4d\x4a\xca\xdd\xc4\x44\x38\xc1\x9a\xeb\x97\xaf\x15\x09\xf4\x88\x68\x81\xb3\x8c\x30\x93\x2c\x82\xad\xb8\xf1\x10\xc5\x8a\x38\xb6\x62\x4f\xaf\x33\x3c\x53\x7b\xfd\xc7\x80\x9d\x34\xcc\x58\xdb\x37\x98\xc7\xfd\xf0\x3e\x36\x32\x20\x1f\xe3\xeb\x86\x31\xdf\x83\xed\x6e\x52\xb8\x3e\xbe\x14\x55\x69\x5f\x4b\x4d\xd7\x71\xc8\x98\x74\x6c\xf3\x5d\x5a\x5e\xf7\x92\x2a\xde\x5d\x52\x1c\x56\xcf\x93\x61\x15\xda\x5a\xad\xa9\x55\x99\xb4\xd2\x62\x86\x91\x19\x71\x2f\x06\x7e\x97\x9b\x47\xc0\x5e\xae\xd1\x0f\x47\xf8\xf2\xa7\x0a\xdd\x98\x15\x31\x9f\x48\x18\xee\xb3\x8a\x7c\xf9\x6c\xed\x69\x1e\xd8\x47\x45\xd3\x9d\x9e\xe5\x7e\x4d\x15\x39\x8f\x93\x03\x90\xd4\xb2\x7c\x8a\x68\x37\xdc\x0b\xd4\xb4\xeb\x15\x3f\x73\x3e\xb4\xd4\x38\x5f\x6c\xa9\xe6\xcc\x9a\xea\x77\xaf\x29\xc2\x98\x6e\x32\x22\xf7\x83\xd9\x03\xe9\x98\xa8\xa5\x58\xd3\x18\xaa\xef\x23\xcb\x71\x84\x3e\x5e\xea\xf5\x8a\xab\xd8\x32\x87\x25\x9b\x31\xce\x6e\x02\xb5\x57\x58\xb1\x4c\x48\x08\x9c\xc2\xf1\x62\x18\x45\x2c\x7d\xcf\xca\x86\x81\x9a\xb0\xdf\x9c\xc8\x18\x7e\x66\x46\xd3\x7a\xfa\xc2\xc3\x46\x19\x5e\x0c\x5b\xbe\x73\xa6\xf5\xca\x2c\x6f\x95\x0b\x6a\xc8\x6c\x1c\xda\xae\xcd\x80\x50\xa9\x68\xab\x89\x07\xf1\xc9\xf7\x09\xcd\x78\x7c\x26\xd0\x81\xff\xf6\x3e\x88\x73\x90\x26\x9e\x56\xb6\x77\x83\x78\x88\xd1\xcd\x62\x0a\x4c\xad\x90\x28\xad\xd9\xcf\x2a\x4e\xf0\x22\xce\x77\x2a\x9e\x90\x75\x04\xb8\x08\xe1\xd0\xb1\x43\x01\xe0\xf1\x19\x55\xf3\x9c\x68\xfe\xff\x0a\x55\xbc\xe9\xe6\x4f\x2b\xf2\xf0\xa7\xb5\xf6\x20\x62\x74\x29\x81\xd1\x53\xc1\xa0\xf8\x15\x64\xa3\x42\x98\x42\x6b\xe5\xc6\xa3\x5c\xed\xf9\x0f\x68\xa9\x84\x70\x99\x3c\xb7\xb8\x1f\x9f\x53\x3d\x89\xaa\x03\x8a\x9b\xdc\x3c\x40\xbf\xea\x04\x17\xb1\x44\xa5\x4a\x59\xcc\x2d\x24\x02\xf0\x04\xc3\xa6\xa9\xeb\x61\x32\xb6\x19\xaa\x49\x8c\x29\xd3\xfa\x0e\xc8\x91\x04\xfa\xe2\xdd\x5b\x3d\x14\x7a\x79\x1e\xda\xdc\x2d\xc5\xad\xfc\x50\x65\x3b\x0f\x15\x66\xbb\x57\xc4\x7f\x5b\xef\xaf\x9e\x48\xbc\xd4\xee\x0e\x43\xdb\x57\x92\x24\x37\x94\x24\xc9\x0d\x95\xa3\x46\x36\x8b\x42\xcb\xef\x2e\xdd\x18\x7a\x77\x61\xdf\x70\x92\x6c\xd0\xb0\xc7\x16\x41\x51\x09\xd9\x09\x9e\xdc\xc5\x40\x13\xcf\x07\x7e\xe8\xf2\xbc\x1a\x63\xfd\x75\x95\x82\x2d\xd9\x74\xe5\xb3\x1e\xf8\x79\x53\x8b\x68\xb3\x94\x07\x97\xe8\xe8\x0d\x9c\x02\xcd\xec\x21\x2d\x63\x2b\x11\xe0\x6d\xcd\xa6\x0a\xae\x6d\x66\x3f\xa5\xc6\x0a\xbf\x7a\xa2\x92\xb9\x3f\x53\x34\xf7\xf7\xb0\x07\xd0\x30\xbe\x1e\xf8\x31\x9b\x55\xf4\x71\x90\xd3\xb4\x66\xfc\xe0\xd4\xd8\x9a\x4c\x54\x1f\x65\x7a\xac\x7c\x99\x8c\x95\x6d\x7f\x26\x3f\xd3\xee\x10\x29\x3b\x17\x18\x84\x56\x49\x11\x4f\xaa\x54\xc4\x41\x4a\x15\x99\x3d\x07\x6f\x78\xe6\x9b\x13\xbd\x1d\x36\xf1\x25\xf9\xef\xea\x9d\x52\x72\x9e\xc5\x9b\x05\x43\x54\x45\x3e\xb8\xfc\xea\xa2\x1e\xfc\x7c\x85\x80\xb8\x48\x49\x0e\x7d\x9a\xde\xd6\x8d\xfa\x97\x2b\xe4\x40\xe0\x1e\x10\x1e\xf8\x72\xf4\xbd\xc6\xc0\x2d\x59\x8e\x05\xef\xeb\xda\xee\x9a\xe8\xbb\x7c\x5f\xf4\xe0\xaf\x2b\x9c\x70\x18\x9b\x6e\x2e\x60\x22\x47\x83\xea\x1a\x24\x1b\xc1\x3f\x78\x84\x21\xcc\x8a\x4e\x66\xdf\x28\x6c\x9c\x43\xe2\x7a\xc1\xcb\x5a\xfb\x02\xda\xc4\x2b\x36\x6c\xd5\xc2\xec\x23\x0b\xed\x6e\x1a\xe6\x61\x37\x3c\x86\x81\x21\x21\x4c\x57\x45\xbf\x9b\xb5\x57\x95\xb1\xad\xe8\x9f\x6a\xe4\xe0\x29\xc5\x45\x70\x4a\x45\x47\x3d\x4b\x53\x1b\xd9\x4e\x3f\x55\x77\x6e\xe2\x99\xc0\xd7\x69\xa7\xf3\xf5\x44\x51\xa4\x4e\xfc\x41\xbe\xd3\x70\xf4\x17\xda\x51\x19\x70\xc2\x05\x23\xeb\xb9\x3a\xf1\x19\xd0\x55\xb5\xcd\x08\xc8\x99\x86\xf0\x49\xb3\x15\xa4\x9c\x6b\x38\xbf\x2c\xcf\xf9\xc1\x44\x51\xba\x5c\x9f\x28\x42\x4e\x05\x73\x22\xde\x93\x25\xcb\xba\x73\x8a\xb0\x5f\xaa\x4d\xba\x1b\x35\x4a\x3a\x61\xc4\x92\x84\xa8\xa9\x5c\xe6\x6d\xcd\x77\xc1\x53\x0a\x07\x84\x08\xce\x81\x7c\x1c\x2c\xe4\x62\xad\x5c\x76\x64\xa1\xfc\x2f\x6b\xd8\x73\x69\x83\xce\xa6\x94\x39\x74\x9f\x24\x1e\xd8\xe7\x7d\xbe\xcf\x27\x09\x1b\xe3\xfb\xd4\xf0\x41\xfd\xec\xbf\xc2\x21\x23\xc1\x64\xad\x2c\x84\x6f\x77\x75\xe6\x78\x1f\x81\x11\x8b\x01\xc2\x31\xa0\xab\xfe\x27\x70\x6c\xcc\xc7\x45\x6b\x2c\xca\xa9\x2d\x47\x79\x7b\x42\x73\x03\x7f\x40\x8b\x5f\x61\x23\xe6\x0f\xe1\x55\x72\x8e\xfe\x80\x10\xd0\x30\x37\x19\x72\x97\xb5\x49\xeb\x4b\xbf\xec\x74\xeb\x2b\xfa\x06\xfb\xf7\xf3\x86\xfb\x2d\x55\x55\x59\x0a\x93\x48\x88\x13\x9b\xab\x1f\x2e\x30\x0d\x7b\x3d\x9b\x66\xd3\x5e\x67\x9b\x1b\x9c\x0a\xcd\x7a\xb0\x52\xd9\x94\x8c\xbd\x69\x3c\x39\x89\x81\x4e\x5d\xa8\x70\xa1\x4a\xe3\x54\x3f\x2b\x1b\xdb\xa7\x69\xe5\x91\xff\xac\x23\x81\x67\x85\x45\x2c\xb6\x9a\x21\x3d\x2a\x34\xdf\xf4\x18\x35\x79\x89\x70\xb7\xb5\x14\x4b\xbf\x7a\x6e\x7f\x81\x1f\x03\x17\x77\x17\x3b\x02\x37\xd7\x2a\x3c\xb4\xe5\xe3\x41\x61\xef\xbb\x13\x45\x64\xf6\x5d\x44\x99\xfc\x5e\x0a\x61\xf4\x5b\x0a\x32\x30\x4a\xf2\x24\x4d\x22\x43\xe5\x6a\xfc\x9c\x1d\xa8\xca\xa2\xda\x0d\x34\xa0\x8c\x27\x28\xbd\xcb\xd1\x98\x8d\x8b\x03\x1f\x7a\x20\xa2\xe7\x48\x2e\x6c\x96\x4d\x79\x35\xfc\xd5\x89\xcf\x7e\xb6\xf0\xeb\xb0\x50\xd7\x14\x7a\x73\xc5\x9a\xb4\x93\x24\x8b\x53\x3e\xa1\xba\x89\x15\x76\x62\x26\x73\x73\xfc\x83\x4f\xd7\x9c\x4c\x69\x78\x96\x93\x34\x0d\xa5\x3d\x83\x92\xc9\xae\x55\xdf\x40\xe1\x64\x5a\x98\xb6\xea\x35\x78\x54\x9d\x25\xe1\x45\x0f\xec\x3c\x8e\x04\xdf\x68\x5a\x6d\xd3\x5b\x01\x55\x3b\x36\xd7\xbf\xa6\xe7\xc1\xd7\x0d\x6a\x59\x4c\xd7\x39\x8e\x4c\xd7\xaa\x4e\xd3\xf7\x03\xc5\x9b\xf9\x7d\x3d\xb7\x60\x4d\x5c\x40\xca\xf0\xa5\x46\x72\x33\x4f\xa0\xd1\x0d\x07\x26\xb5\x79\x6e\xf9\xaf\xa5\x17\xd3\x9a\xf7\x82\x1f\xdb\x0d\x35\x25\xdf\xbd\xa2\x9b\x4f\x29\x65\xd3\x29\x8a\xac\x51\x40\xc0\xcb\x51\x73\xb9\xa1\xac\xe6\x92\x89\x0a\x9b\xed\xf2\x0f\x14\x90\x5d\xec\xe3\xdf\x51\xb3\xa1\x3b\x56\xd5\x36\x46\xdd\x40\x84\x40\xbd\xc4\xc1\x49\x45\x60\xd8\x8d\x92\xcc\x46\x2b\x94\xe2\xe0\xe9\xed\x9c\x51\x9c\x9b\xeb\x15\xa1\x74\x7a\x2a\x70\x6a\x53\xab\xb2\xef\xc2\xb8\x08\xf3\x47\x0f\x00\x7a\xc9\xb4\x6c\x64\xf3\xb0\x2b\x75\x7f\xe4\x91\x67\x03\xa5\x0e\x85\x91\x20\xb4\xab\xff\x46\x4f\x3b\xdc\xaf\xea\x10\x98\xf1\xd8\x1a\x28\xea\xb9\xc9\x7f\xc5\x5b\xd0\xc0\xfc\xf5\x7a\x91\x41\xe4\x1a\x95\x24\xc4\x03\xe7\x95\x8c\xd5\xf9\xc6\x92\x40\xbf\xb0\x8e\xc5\x42\xb4\xc6\x95\xc4\xa2\x1e\x18\xcf\x73\x22\x79\xad\x30\x34\xc8\xd8\xdf\xa7\x7a\x6c\xe5\xcc\x44\xc1\x42\x10\x92\x90\xb9\xce\x3e\x0f\x16\x4f\xa1\x2e\xf4\xea\xc6\x9b\x6a\xa4\x11\x9d\x05\x6c\x90\xc7\x57\x5b\x5f\x3e\xe2\xb4\x69\xe9\x7b\x31\x70\x45\xf1\x3e\x51\xe1\x31\xec\x9a\x68\x97\x26\x06\xf0\x1d\xc8\xb3\x81\x3a\x9f\xeb\x20\x2b\x10\x85\x12\xea\x57\x8b\x44\x09\xfd\x38\xd1\xbb\xae\xe8\x5e\x76\xf6\x52\x66\xf4\xe0\x32\x7e\x99\x03\x84\xcd\xcd\x3d\xb8\xac\x60\x61\x9b\xce\xa2\x75\x6c\x9a\x87\x2c\x93\xcc\xb3\x34\x6a\x12\x80\xc7\x8c\x91\x63\xdf\x68\xa0\xfd\x38\xd8\x4e\x6d\x6e\xc2\x68\x9b\xda\xeb\x6d\x45\x64\x71\x5b\xa9\x2b\x47\x61\x6c\xb3\x3d\x15\x56\x1d\x47\x86\xcd\xcc\xf5\x6e\xec\xa2\x34\x7c\xce\x9f\x79\x80\xe7\xa6\x8a\x5d\x4f\x07\x75\x3d\x33\x49\x34\x3c\x8f\x72\x36\x36\x5d\xbb\x07\x3b\x1d\x4f\xee\xa1\xea\xf6\xdd\xd1\xb1\x3b\x40\xcd\x4e\x0b\xd9\x0d\x5a\xde\x54\x59\x0f\x4f\x84\x54\xa4\x1d\x10\x09\x79\xa0\xeb\xb2\x19\x48\x19\x04\xd6\x8a\x49\x4f\xf1\xb5\x77\xcd\x28\x25\x22\x45\xd7\xce\x31\x2f\x43\xde\xd4\x84\xbd\x1b\xb7\xaf\x81\x92\x88\x49\xaf\x88\x7b\x53\xaa\x5d\x8f\xd5\x62\xa1\x0f\xfa\xa5\xcc\xb5\x5a\x3b\x8d\x65\x0a\x1c\x66\x1d\x1b\x49\xaa\xaa\x08\x4a\x8e\xba\x02\x43\x7d\x18\xc4\x74\x92\x02\xdc\x70\x68\x74\x7f\x44\x91\x12\x5f\x37\xa8\x68\x1e\x6d\x1b\xd2\xb1\x2d\xcf\x11\x03\x16\x03\xdf\x23\x3c\xa7\x8a\x20\x29\x95\x0a\x69\xad\x9c\x6a\x94\xeb\xed\x6f\x56\xf6\xfa\xb2\x49\x77\xd3\x96\x73\xdd\x88\x03\xfb\x5c\x8b\xcb\xd7\x81\x77\xad\x2a\x74\xc7\xa6\x2a\x39\xf3\x98\x39\x8a\x6b\xcf\xcd\x78\x3a\xfe\xf3\xae\xde\x64\x46\x18\x44\xc4\x3b\xfd\x10\xcf\x9a\x6f\x5c\xd5\xab\x97\x86\x51\x44\x00\x5f\xdf\xe3\xba\xa0\x7b\x5c\x17\x00\x31\x12\xe3\xb4\x77\x4a\xc1\x82\xe0\x64\x84\x6f\x41\x15\xbd\xee\xd5\xaa\xc5\xb3\x87\xda\xf6\xcd\xee\xb0\xcc\xac\xd2\x29\x5d\x87\xa4\xb7\x40\xbe\xb0\xa5\x03\xe3\x87\x4a\xbc\x67\x64\x4d\x9c\x41\x27\x1f\xa3\x0f\x18\x29\x46\x20\x76\x62\xe2\x59\x06\x6f\x6b\x43\x3c\x51\xa4\xb8\x1f\x73\xd0\x8b\xa8\xf2\xcf\xf1\x03\x25\x4e\xa7\x4f\xe5\x7f\x01\xd1\x97\x8c\xf2\xfb\x36\x28\x85\xb7\x39\xac\x84\x14\xd9\x54\xc1\xad\x49\xaf\xc4\xf6\x0a\xe0\x1e\x59\x5f\xb3\x51\x1d\xd1\x7b\xe6\x72\x85\x89\x7f\x70\xc1\x87\x88\x2a\x4b\xf2\x35\xe3\x71\x98\x9b\x29\xc5\x13\x0a\xa4\x21\xca\x28\x1f\xd0\x02\xa0\xf8\x70\xae\x16\x65\xcd\xcf\xb7\x47\x26\xee\x79\x10\x0c\x13\xcb\xd2\x76\x16\x58\x01\x9d\x58\xbc\xf3\xb7\x6a\x71\x87\x64\xc9\xc7\xa6\xa6\x0e\xfe\xca\x2b\xce\xf5\xb6\xbe\x72\xb0\x32\x55\x02\x9b\xf6\xdb\xaa\x50\x34\x0a\x33\xd1\x84\x6f\x1a\x6d\xd3\xca\x34\x8b\x44\xc4\xf8\xb8\xff\xf1\x00\x9c\x23\xb2\xbd\x8f\x44\x08\xbf\xf0\x44\xe0\x73\x63\x26\xad\x97\xc7\x58\x1e\x08\x81\xc6\xd2\x43\xc3\x69\x3d\xad\x33\xac\x1f\x60\x87\xf0\x7b\x35\x72\x78\x58\x9b\x99\xe5\x96\xcf\x63\xf0\xad\xf9\x5a\x93\xfe\x17\xc9\x28\x69\xf9\xea\xee\x86\x2e\x82\x6d\xe8\xa7\xbc\x6c\xed\x38\x23\x83\xc7\xc4\xe4\x81\x1f\x60\x38\x09\xdf\x28\x41\x72\x83\x04\x0b\x85\x6f\xfc\xf0\x60\xe8\x77\xcd\xb4\xb6\xd3\x52\x09\x89\xa9\x4e\x7e\x4c\x9a\x3d\x0f\x46\x3b\x47\x2e\x7b\x40\x46\xd1\xee\x4f\xaa\xdd\x4b\x87\x68\x63\x62\x62\x07\xe4\x2b\x8f\x86\xf0\xd1\xd2\x27\x21\x3a\xe4\x11\x06\x0c\x22\x5c\x85\xef\x76\x48\xb1\x03\x82\x61\xbc\x1d\x68\x25\xb1\xf3\x70\x5c\xa8\xa8\x5e\x27\x07\x25\x0c\xee\xe4\x3b\x05\x85\xe5\x33\x5d\xd4\xd5\xe0\xb8\x40\xb0\x08\x13\xff\x49\xe0\x35\x9b\xef\xc3\xf6\xa3\x10\xf7\x20\x50\x09\xf4\xe3\xab\xf5\x26\xd9\x6c\x3b\xb6\x83\x48\x35\xc9\xe0\x69\x2e\xab\x49\xa4\xcb\xaa\x1b\x7a\x38\xdf\xdb\x52\x0d\x40\xae\x5d\x8b\xd3\x91\xf3\x39\x30\x51\x94\x30\x09\x2b\x82\x36\x94\x1b\x60\x6c\x40\x4d\x8d\x1a\xd4\x4d\x85\x56\x1a\x24\x4b\x7b\x5b\x6a\x3a\x90\x2b\x98\x7c\xd3\x80\x90\x59\x68\x27\x21\x40\x44\x0e\xd0\xef\x2b\xe9\x5b\x6a\xfe\xa4\x6b\x7a\x61\x14\x99\x2e\x0c\x7c\x85\x31\x5d\x46\x5e\xbc\x03\x8b\x8a\x63\x49\xdc\xd2\x72\x24\x0a\x36\xab\x62\xd4\x9f\xfb\xe2\x2f\x10\x64\x06\xa6\xff\xa1\x4a\xf4\x6f\xa9\x39\xb4\xe3\x0e\x5a\xd5\x4b\xed\x32\x0d\x7e\x49\x05\x8f\x3e\x9f\xa8\x22\x7e\xe3\x59\xcd\xa9\x09\x00\x1c\x93\xee\x6b\x9c\x2e\xd0\xb0\xe2\xca\x34\x07\x65\x45\x5b\xb3\x69\xc2\x9e\xaa\x4a\xe3\xd4\x02\x6f\x21\xf0\xc4\xf2\x45\x7c\xdd\xe0\xf3\x5f\x6a\xf7\x4d\x6e\x86\x53\x8a\x10\xf5\xbb\x13\x0f\xa2\xe5\x86\x0d\xa6\x23\x2f\x57\xfa\x16\x9d\x04\xdc\x2b\x4d\x82\xf7\x4d\x50\xe3\x41\x5a\xf4\x06\x61\x3c\x40\xb5\x51\x8a\x57\xe7\x26\x7e\x1e\xf6\x2e\x6d\x7c\x39\xb6\x3e\x32\x24\xd7\x4d\x25\x5e\x41\xa3\xd0\x31\x76\x41\xc4\x81\x7d\x1e\xb3\x52\x1e\x29\x19\x9b\xdb\x7e\x10\x5e\x9e\x6f\x8f\x4d\x6c\x46\x26\x0e\x0d\xea\xa5\xb0\x88\x17\xb0\xa5\xf8\x46\x71\xe7\xf4\xc3\xd4\x76\x4c\x14\x65\x48\x3e\xd1\xf1\x47\xdb\x17\x63\x1f\xeb\x95\xc1\x7f\xb7\x0b\x96\xf7\x86\xbc\xc9\xd9\xbc\xd0\xc9\x15\x53\xa3\x40\xc5\xbd\x25\x13\xe7\x22\x34\x32\x5f\xd1\x7a\x14\xd8\xa6\xea\x73\xa6\xc9\x72\xfc\x04\xad\x1d\xaa\x5d\x27\x75\x2d\xff\x3e\x1c\xba\x40\x3b\xca\x45\x11\x96\xa9\xf2\xc3\xb1\xda\x8c\x5d\x17\xde\x4d\xec\x2e\x54\x4f\x9e\xc6\xd4\x3d\x0c\xdd\xbf\xa1\xdf\x88\xd7\x3f\xd0\x32\x10\x4f\xd7\x20\x4d\xaf\xbd\xd6\x1e\x26\xf9\x54\xeb\x95\xd9\x4a\xfd\xa3\x42\x61\x0c\x3b\x7d\x4b\x79\x87\x3c\xc9\x32\x62\x96\x97\x69\x6e\x08\xa8\xf2\xb5\x57\xe3\x4e\xe2\x64\x9c\x40\xdb\xd1\x8d\xc7\x28\xfe\xc0\x7b\x38\xdf\x42\xb3\xea\xcf\xed\x20\x64\x61\x77\x27\xe1\x3d\x37\xe7\x26\xf2\x7c\x7e\xce\x21\x11\xaa\x3f\xf7\x82\x9f\x54\x5d\xd7\x28\x32\xb9\x4d\x4d\x14\x1e\x83\x1b\x3a\xca\x1d\x32\xee\x94\xc2\xfe\xc0\x61\x4b\x33\xa5\x21\x34\x1a\x85\x71\x98\xe5\x16\x88\x26\x2f\xde\xa8\xa6\xdf\x4e\xd6\x8a\x7d\x47\x66\x0f\xb5\xb3\x61\xb2\xac\x21\x96\xa7\x34\xb1\xe3\x29\x57\x21\x58\x1e\x26\x91\xcd\x92\x11\x14\x36\x1d\xd3\xeb\xdc\xdc\x83\x1b\x81\x1f\x24\xb9\xa8\x67\x10\x6d\xbf\xc8\x2c\x2b\x03\x70\xb1\x0f\x29\xac\xab\xfc\xe9\xa4\xc6\x13\x7d\x57\x4b\x8c\x45\xba\xf2\x0c\x76\x0f\x6a\x6a\x5b\x94\x85\xe1\x39\x30\x9f\x00\xf6\xe8\x63\x33\x14\xc6\x20\xf8\xff\x46\xe0\xc9\x15\x5a\x33\x7e\xe8\x68\x4d\xeb\xad\x32\xea\x96\x4d\x0e\xb0\x5f\xd8\x94\xd7\x28\x00\xc6\xf7\xfc\x44\xd3\xfb\x5f\x53\x1e\xf3\x13\xe2\x82\x00\xd6\x85\xf9\x94\x65\xbc\xae\xe5\x94\x8d\x37\x26\x4a\xc1\xe4\xb4\xc3\xab\xe4\x36\xcb\xc3\x51\x12\xcb\xd3\x12\x47\xed\x2b\x7d\xbf\xd9\x20\x97\x9f\x85\x83\x58\x1c\x2b\x1c\xde\x37\x26\x8a\x40\xf4\x1b\x4d\x54\x5f\x9d\xb4\xc8\x32\x2b\x10\x8d\x46\xde\x7c\xef\xd9\x5e\xb7\xc9\xd8\xa4\x3d\xb6\x9b\x4e\xa1\xcf\xa1\xba\xee\x2a\x8e\x96\x0b\x93\xff\x17\x00\x00\xff\xff\x0a\x89\xb1\x31\x06\xc9\x4b\x00") - -func internalModelWeightsGobBytes() ([]byte, error) { - return bindataRead( - _internalModelWeightsGob, - "internal/model/weights.gob", - ) -} - -func internalModelWeightsGob() (*asset, error) { - bytes, err := internalModelWeightsGobBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "internal/model/weights.gob", size: 4966662, mode: os.FileMode(420), modTime: time.Unix(1494607416, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -// Asset loads and returns the asset for the given name. -// It returns an error if the asset could not be found or -// could not be loaded. -func Asset(name string) ([]byte, error) { - cannonicalName := strings.Replace(name, "\\", "/", -1) - if f, ok := _bindata[cannonicalName]; ok { - a, err := f() - if err != nil { - return nil, fmt.Errorf("Asset %s can't read by error: %v", name, err) - } - return a.bytes, nil - } - return nil, fmt.Errorf("Asset %s not found", name) -} - -// MustAsset is like Asset but panics when Asset would return an error. -// It simplifies safe initialization of global variables. -func MustAsset(name string) []byte { - a, err := Asset(name) - if err != nil { - panic("asset: Asset(" + name + "): " + err.Error()) - } - - return a -} - -// AssetInfo loads and returns the asset info for the given name. -// It returns an error if the asset could not be found or -// could not be loaded. -func AssetInfo(name string) (os.FileInfo, error) { - cannonicalName := strings.Replace(name, "\\", "/", -1) - if f, ok := _bindata[cannonicalName]; ok { - a, err := f() - if err != nil { - return nil, fmt.Errorf("AssetInfo %s can't read by error: %v", name, err) - } - return a.info, nil - } - return nil, fmt.Errorf("AssetInfo %s not found", name) -} - -// AssetNames returns the names of the assets. -func AssetNames() []string { - names := make([]string, 0, len(_bindata)) - for name := range _bindata { - names = append(names, name) - } - return names -} - -// _bindata is a table, holding each asset generator, mapped to its name. -var _bindata = map[string]func() (*asset, error){ - "internal/model/classes.gob": internalModelClassesGob, - "internal/model/tags.gob": internalModelTagsGob, - "internal/model/weights.gob": internalModelWeightsGob, -} - -// AssetDir returns the file names below a certain -// directory embedded in the file by go-bindata. -// For example if you run go-bindata on data/... and data contains the -// following hierarchy: -// data/ -// foo.txt -// img/ -// a.png -// b.png -// then AssetDir("data") would return []string{"foo.txt", "img"} -// AssetDir("data/img") would return []string{"a.png", "b.png"} -// AssetDir("foo.txt") and AssetDir("notexist") would return an error -// AssetDir("") will return []string{"data"}. -func AssetDir(name string) ([]string, error) { - node := _bintree - if len(name) != 0 { - cannonicalName := strings.Replace(name, "\\", "/", -1) - pathList := strings.Split(cannonicalName, "/") - for _, p := range pathList { - node = node.Children[p] - if node == nil { - return nil, fmt.Errorf("Asset %s not found", name) - } - } - } - if node.Func != nil { - return nil, fmt.Errorf("Asset %s not found", name) - } - rv := make([]string, 0, len(node.Children)) - for childName := range node.Children { - rv = append(rv, childName) - } - return rv, nil -} - -type bintree struct { - Func func() (*asset, error) - Children map[string]*bintree -} -var _bintree = &bintree{nil, map[string]*bintree{ - "internal": &bintree{nil, map[string]*bintree{ - "model": &bintree{nil, map[string]*bintree{ - "classes.gob": &bintree{internalModelClassesGob, map[string]*bintree{}}, - "tags.gob": &bintree{internalModelTagsGob, map[string]*bintree{}}, - "weights.gob": &bintree{internalModelWeightsGob, map[string]*bintree{}}, - }}, - }}, -}} - -// RestoreAsset restores an asset under the given directory -func RestoreAsset(dir, name string) error { - data, err := Asset(name) - if err != nil { - return err - } - info, err := AssetInfo(name) - if err != nil { - return err - } - err = os.MkdirAll(_filePath(dir, filepath.Dir(name)), os.FileMode(0755)) - if err != nil { - return err - } - err = ioutil.WriteFile(_filePath(dir, name), data, info.Mode()) - if err != nil { - return err - } - err = os.Chtimes(_filePath(dir, name), info.ModTime(), info.ModTime()) - if err != nil { - return err - } - return nil -} - -// RestoreAssets restores an asset under the given directory recursively -func RestoreAssets(dir, name string) error { - children, err := AssetDir(name) - // File - if err != nil { - return RestoreAsset(dir, name) - } - // Dir - for _, child := range children { - err = RestoreAssets(dir, filepath.Join(name, child)) - if err != nil { - return err - } - } - return nil -} - -func _filePath(dir, name string) string { - cannonicalName := strings.Replace(name, "\\", "/", -1) - return filepath.Join(append([]string{dir}, strings.Split(cannonicalName, "/")...)...) -} - diff --git a/internal/util/util.go b/internal/util/util.go deleted file mode 100644 index b43ae36..0000000 --- a/internal/util/util.go +++ /dev/null @@ -1,98 +0,0 @@ -/* -Package util contains internals used across the other prose packages. -*/ -package util - -import ( - "io/ioutil" - "path/filepath" - "strings" -) - -// ReadDataFile reads data from a file, panicking on any errors. -func ReadDataFile(path string) []byte { - p, err := filepath.Abs(path) - CheckError(err) - - data, ferr := ioutil.ReadFile(p) - CheckError(ferr) - - return data -} - -// CheckError panics if `err` is not `nil`. -func CheckError(err error) { - if err != nil { - panic(err) - } -} - -// Min returns the minimum of `a` and `b`. -func Min(a, b int) int { - if a < b { - return a - } - return b -} - -// IsPunct determines if a character is a punctuation symbol. -func IsPunct(c byte) bool { - for _, r := range []byte("!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~") { - if c == r { - return true - } - } - return false -} - -// IsSpace determines if a character is a whitespace character. -func IsSpace(c byte) bool { - for _, r := range []byte("\t\n\r\f\v") { - if c == r { - return true - } - } - return false -} - -// IsLetter determines if a character is letter. -func IsLetter(c byte) bool { - return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') -} - -// IsAlnum determines if a character is a letter or a digit. -func IsAlnum(c byte) bool { - return (c >= '0' && c <= '9') || IsLetter(c) -} - -// StringInSlice determines if `slice` contains the string `a`. -func StringInSlice(a string, slice []string) bool { - for _, b := range slice { - if a == b { - return true - } - } - return false -} - -// HasAnySuffix determines if the string a has any suffixes contained in the -// slice b. -func HasAnySuffix(a string, slice []string) bool { - for _, b := range slice { - if strings.HasSuffix(a, b) { - return true - } - } - return false -} - -// ContainsAny determines if the string a contains any fo the strings contained -// in the slice b. -func ContainsAny(a string, b []string) bool { - for _, s := range b { - if strings.Contains(a, s) { - return true - } - } - return false -} diff --git a/model.go b/model.go new file mode 100644 index 0000000..8da7aab --- /dev/null +++ b/model.go @@ -0,0 +1,130 @@ +package prose + +import ( + "os" + "path/filepath" +) + +// A Model holds the structures and data used internally by prose. +type Model struct { + Name string + + tagger *perceptronTagger + extracter *entityExtracter +} + +// DataSource provides training data to a Model. +type DataSource func(model *Model) + +// UsingEntities creates a NER from labeled data. +func UsingEntities(data []EntityContext) DataSource { + return func(model *Model) { + model.extracter = extracterFromData(data, model.tagger) + } +} + +// LabeledEntity represents an externally-labeled named-entity. +type LabeledEntity struct { + Start int + End int + Label string +} + +// EntityContext represents text containing named-entities. +type EntityContext struct { + // Is this is a correct entity? + // + // Some annotation software, e.g. Prodigy, include entities "rejected" by + // its user. This allows us to handle those cases. + Accept bool + + Spans []LabeledEntity // The entity locations relative to `Text`. + Text string // The sentence containing the entities. +} + +// ModelFromData creates a new Model from user-provided training data. +func ModelFromData(name string, sources ...DataSource) *Model { + model := defaultModel(true, true) + model.Name = name + for _, source := range sources { + source(model) + } + return model +} + +// ModelFromDisk loads a Model from the user-provided location. +func ModelFromDisk(path string) *Model { + name, classifier := loadClassifier(path) + return &Model{ + Name: name, + + extracter: classifier, + tagger: newPerceptronTagger()} +} + +// Write saves a Model to the user-provided location. +func (m *Model) Write(path string) error { + err := os.MkdirAll(path, os.ModePerm) + // m.Tagger.model.Marshal(path) + checkError(m.extracter.model.marshal(path)) + return err +} + +/* TODO: External taggers +func loadTagger(path string) *perceptronTagger { + var wts map[string]map[string]float64 + var tags map[string]string + var classes []string + + loc := filepath.Join(path, "AveragedPerceptron") + dec := getDiskAsset(filepath.Join(loc, "weights.gob")) + checkError(dec.Decode(&wts)) + + dec = getDiskAsset(filepath.Join(loc, "tags.gob")) + checkError(dec.Decode(&tags)) + + dec = getDiskAsset(filepath.Join(loc, "classes.gob")) + checkError(dec.Decode(&classes)) + + model := newAveragedPerceptron(wts, tags, classes) + return newTrainedPerceptronTagger(model) +}*/ + +func loadClassifier(path string) (string, *entityExtracter) { + var mapping map[string]int + var weights []float64 + var labels []string + + loc := filepath.Join(path, "Maxent") + dec := getDiskAsset(filepath.Join(loc, "mapping.gob")) + checkError(dec.Decode(&mapping)) + + dec = getDiskAsset(filepath.Join(loc, "weights.gob")) + checkError(dec.Decode(&weights)) + + dec = getDiskAsset(filepath.Join(loc, "labels.gob")) + checkError(dec.Decode(&labels)) + + model := newMaxentClassifier(weights, mapping, labels) + name := filepath.Base(path) + return name, newTrainedEntityExtracter(model) +} + +func defaultModel(tagging, classifying bool) *Model { + var tagger *perceptronTagger + var classifier *entityExtracter + + if tagging || classifying { + tagger = newPerceptronTagger() + } + if classifying { + classifier = newEntityExtracter() + } + + return &Model{ + Name: "en-v2.0.0", + + tagger: tagger, + extracter: classifier, + } +} diff --git a/internal/model/classes.gob b/model/AveragedPerceptron/classes.gob similarity index 100% rename from internal/model/classes.gob rename to model/AveragedPerceptron/classes.gob diff --git a/internal/model/tags.gob b/model/AveragedPerceptron/tags.gob similarity index 100% rename from internal/model/tags.gob rename to model/AveragedPerceptron/tags.gob diff --git a/internal/model/weights.gob b/model/AveragedPerceptron/weights.gob similarity index 100% rename from internal/model/weights.gob rename to model/AveragedPerceptron/weights.gob diff --git a/model/Maxent/labels.gob b/model/Maxent/labels.gob new file mode 100644 index 0000000..ed662eb Binary files /dev/null and b/model/Maxent/labels.gob differ diff --git a/model/Maxent/mapping.gob b/model/Maxent/mapping.gob new file mode 100644 index 0000000..70810db Binary files /dev/null and b/model/Maxent/mapping.gob differ diff --git a/model/Maxent/weights.gob b/model/Maxent/weights.gob new file mode 100644 index 0000000..50a01f4 Binary files /dev/null and b/model/Maxent/weights.gob differ diff --git a/model/Maxent/words.gob b/model/Maxent/words.gob new file mode 100644 index 0000000..00bb1ca Binary files /dev/null and b/model/Maxent/words.gob differ diff --git a/model_test.go b/model_test.go new file mode 100644 index 0000000..8c66001 --- /dev/null +++ b/model_test.go @@ -0,0 +1,26 @@ +package prose + +import ( + "os" + "path/filepath" + "testing" + + "github.com/stretchr/testify/assert" +) + +func TestModelFromDisk(t *testing.T) { + data := filepath.Join(testdata, "PRODUCT") + model := ModelFromDisk(data) + assert.Equal(t, model.Name, "PRODUCT") + + temp := filepath.Join(testdata, "temp") + _ = os.RemoveAll(temp) + + err := model.Write(temp) + if err != nil { + panic(err) + } + model = ModelFromDisk(temp) + + assert.Equal(t, model.Name, "temp") +} diff --git a/scripts/cover.sh b/scripts/cover.sh index bed42a0..1e37c61 100644 --- a/scripts/cover.sh +++ b/scripts/cover.sh @@ -20,4 +20,4 @@ do done -goveralls -coverprofile=acc.out -service=travis-ci +goveralls -coverprofile=acc.out -service=travis-ci -ignore=data.go,utilities.go diff --git a/requirements.txt b/scripts/requirements.txt similarity index 100% rename from requirements.txt rename to scripts/requirements.txt diff --git a/scripts/test_model.py b/scripts/test_model.py index 904976a..ef8b30e 100644 --- a/scripts/test_model.py +++ b/scripts/test_model.py @@ -17,9 +17,9 @@ def pipe_through_prog(prog, text): global AP_TIME + cmd = ['go', 'run'] + prog.split() for _ in range(5): - p1 = sp.Popen( - prog.split(), stdout=sp.PIPE, stdin=sp.PIPE, stderr=sp.PIPE) + p1 = sp.Popen(cmd, stdout=sp.PIPE, stdin=sp.PIPE, stderr=sp.PIPE) now = time.time() [result, err] = p1.communicate(input=text.encode('utf-8')) AP_TIME.append(time.time() - now) @@ -31,8 +31,8 @@ class APTagger(TaggerI): """A wrapper around the aptag Go library. """ def tag(self, tokens): - prog = os.path.join('bin', 'prose') - ret, tags, err = pipe_through_prog(prog, ' '.join(tokens)) + prog = os.path.join('scripts', 'main.go') + _, tags, _ = pipe_through_prog(prog, ' '.join(tokens)) return tags def tag_sents(self, sentences): @@ -44,6 +44,8 @@ def tag_sents(self, sentences): def evaluate(self, gold): tagged_sents = self.tag_sents(untag(sent) for sent in gold) gold_tokens = list(itertools.chain(*gold)) + print(json.dumps(gold_tokens)) + print(len(tagged_sents), len(gold_tokens)) return accuracy(gold_tokens, tagged_sents) @@ -59,14 +61,16 @@ def evaluate(self, gold): pt_times.append(time.time() - now) pt_time = round(sum(pt_times) / len(pt_times), 3) + '''NOTE: Moved to tag_test.go print("Timing prose ...") acc = round(APTagger().evaluate(sents), 3) ap_time = round(sum(AP_TIME) / len(AP_TIME), 3) + ''' print("Evaluating accuracy ...") headers = ['Library', 'Accuracy', '5-Run Average (sec)'] table = [ ['NLTK', round(PT.evaluate(sents), 3), pt_time], - ['`prose`', acc, ap_time] + # ['`prose`', acc, ap_time] ] print(tabulate(table, headers, tablefmt='pipe')) diff --git a/tokenize/punkt.go b/segment.go similarity index 92% rename from tokenize/punkt.go rename to segment.go index f8337dc..bf1419f 100644 --- a/tokenize/punkt.go +++ b/segment.go @@ -18,41 +18,41 @@ // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE // SOFTWARE. -package tokenize +package prose import ( "regexp" "strings" - "github.com/jdkato/prose/internal/util" "gopkg.in/neurosnap/sentences.v1" "gopkg.in/neurosnap/sentences.v1/data" ) -// PunktSentenceTokenizer is an extension of the Go implementation of the Punkt +// punktSentenceTokenizer is an extension of the Go implementation of the Punkt // sentence tokenizer (https://github.com/neurosnap/sentences), with a few // minor improvements (see https://github.com/neurosnap/sentences/pull/18). -type PunktSentenceTokenizer struct { +type punktSentenceTokenizer struct { tokenizer *sentences.DefaultSentenceTokenizer } -// NewPunktSentenceTokenizer creates a new PunktSentenceTokenizer and loads +// newPunktSentenceTokenizer creates a new PunktSentenceTokenizer and loads // its English model. -func NewPunktSentenceTokenizer() *PunktSentenceTokenizer { - var pt PunktSentenceTokenizer +func newPunktSentenceTokenizer() *punktSentenceTokenizer { + var pt punktSentenceTokenizer var err error pt.tokenizer, err = newSentenceTokenizer(nil) - util.CheckError(err) + checkError(err) return &pt } -// Tokenize splits text into sentences. -func (p PunktSentenceTokenizer) Tokenize(text string) []string { - sents := []string{} - for _, s := range p.tokenizer.Tokenize(text) { - sents = append(sents, s.Text) +// segment splits text into sentences. +func (p punktSentenceTokenizer) segment(text string) []Sentence { + tokens := p.tokenizer.Tokenize(text) + sents := make([]Sentence, len(tokens)) + for i := range tokens { + sents[i] = Sentence{Text: strings.TrimSpace(tokens[i].Text)} } return sents } diff --git a/tokenize/punkt_test.go b/segment_test.go similarity index 85% rename from tokenize/punkt_test.go rename to segment_test.go index 486f661..dbe125b 100644 --- a/tokenize/punkt_test.go +++ b/segment_test.go @@ -1,34 +1,59 @@ -package tokenize +package prose import ( "encoding/json" + "io/ioutil" "path/filepath" "testing" - - "github.com/jdkato/prose/internal/util" ) -var tokenizer = NewPunktSentenceTokenizer() +type goldenRule struct { + Name string + Input string + Output []string +} + +func readDataFile(path string) []byte { + p, err := filepath.Abs(path) + checkError(err) + + data, ferr := ioutil.ReadFile(p) + checkError(ferr) + + return data +} + +func makeSegmenter(text string) (*Document, error) { + return NewDocument( + text, + WithTokenization(false), + WithTagging(false), + WithExtraction(false)) +} func BenchmarkPunkt(b *testing.B) { tests := make([]goldenRule, 0) - cases := util.ReadDataFile(filepath.Join(testdata, "golden_rules_en.json")) + cases := readDataFile(filepath.Join(testdata, "golden_rules_en.json")) - util.CheckError(json.Unmarshal(cases, &tests)) + checkError(json.Unmarshal(cases, &tests)) for n := 0; n < b.N; n++ { - for _, test := range tests { - tokenizer.Tokenize(test.Input) + for i := range tests { + _, err := makeSegmenter(tests[i].Input) + if err != nil { + panic(err) + } } } } func TestEnglishSmartQuotes(t *testing.T) { actualText := "Here is a quote, ”a smart one.” Will this break properly?" - actual := tokenizer.Tokenize(actualText) + doc, _ := makeSegmenter(actualText) + actual := doc.Sentences() expected := []string{ "Here is a quote, ”a smart one.”", - " Will this break properly?", + "Will this break properly?", } if len(actual) != len(expected) { @@ -36,7 +61,7 @@ func TestEnglishSmartQuotes(t *testing.T) { } for index, sent := range actual { - if sent != expected[index] { + if sent.Text != expected[index] { t.Fatalf("Actual: %s\nExpected: %s", sent, expected[index]) } } @@ -44,11 +69,12 @@ func TestEnglishSmartQuotes(t *testing.T) { func TestEnglishCustomAbbrev(t *testing.T) { actualText := "One custom abbreviation is F.B.I. The abbreviation, F.B.I. should properly break." - actual := tokenizer.Tokenize(actualText) + doc, _ := makeSegmenter(actualText) + actual := doc.Sentences() expected := []string{ "One custom abbreviation is F.B.I.", - " The abbreviation, F.B.I. should properly break.", + "The abbreviation, F.B.I. should properly break.", } if len(actual) != len(expected) { @@ -56,17 +82,18 @@ func TestEnglishCustomAbbrev(t *testing.T) { } for index, sent := range actual { - if sent != expected[index] { + if sent.Text != expected[index] { t.Fatalf("Actual: %s\nExpected: %s", sent, expected[index]) } } actualText = "An abbreviation near the end of a G.D. sentence. J.G. Wentworth was cool." - actual = tokenizer.Tokenize(actualText) + doc, _ = makeSegmenter(actualText) + actual = doc.Sentences() expected = []string{ "An abbreviation near the end of a G.D. sentence.", - " J.G. Wentworth was cool.", + "J.G. Wentworth was cool.", } if len(actual) != len(expected) { @@ -74,7 +101,7 @@ func TestEnglishCustomAbbrev(t *testing.T) { } for index, sent := range actual { - if sent != expected[index] { + if sent.Text != expected[index] { t.Fatalf("Actual: %s\nExpected: %s", sent, expected[index]) } } @@ -82,12 +109,13 @@ func TestEnglishCustomAbbrev(t *testing.T) { func TestEnglishSupervisedAbbrev(t *testing.T) { actualText := "I am a Sgt. in the army. I am a No. 1 student. The Gov. of Michigan is a dick." - actual := tokenizer.Tokenize(actualText) + doc, _ := makeSegmenter(actualText) + actual := doc.Sentences() expected := []string{ "I am a Sgt. in the army.", - " I am a No. 1 student.", - " The Gov. of Michigan is a dick.", + "I am a No. 1 student.", + "The Gov. of Michigan is a dick.", } if len(actual) != len(expected) { @@ -95,7 +123,7 @@ func TestEnglishSupervisedAbbrev(t *testing.T) { } for index, sent := range actual { - if sent != expected[index] { + if sent.Text != expected[index] { t.Fatalf("Actual: %s\nExpected: %s", sent, expected[index]) } } @@ -103,11 +131,12 @@ func TestEnglishSupervisedAbbrev(t *testing.T) { func TestEnglishSemicolon(t *testing.T) { actualText := "I am here; you are over there. Will the tokenizer output two complete sentences?" - actual := tokenizer.Tokenize(actualText) + doc, _ := makeSegmenter(actualText) + actual := doc.Sentences() expected := []string{ "I am here; you are over there.", - " Will the tokenizer output two complete sentences?", + "Will the tokenizer output two complete sentences?", } if len(actual) != len(expected) { @@ -115,14 +144,15 @@ func TestEnglishSemicolon(t *testing.T) { } for index, sent := range actual { - if sent != expected[index] { + if sent.Text != expected[index] { t.Fatalf("Actual: %s\nExpected: %s", sent, expected[index]) } } } func compareSentences(t *testing.T, actualText string, expected []string, test string) bool { - actual := tokenizer.Tokenize(actualText) + doc, _ := makeSegmenter(actualText) + actual := doc.Sentences() if len(actual) != len(expected) { t.Log(test) @@ -133,7 +163,7 @@ func compareSentences(t *testing.T, actualText string, expected []string, test s } for index, sent := range actual { - if sent != expected[index] { + if sent.Text != expected[index] { t.Log(test) t.Errorf("Actual: [%s] Expected: [%s]\n", sent, expected[index]) t.Log("===") @@ -153,7 +183,7 @@ func TestGoldenRules(t *testing.T) { actualText = "Hello World. My name is Jonas." expected = []string{ "Hello World.", - " My name is Jonas.", + "My name is Jonas.", } compareSentences(t, actualText, expected, test) @@ -161,7 +191,7 @@ func TestGoldenRules(t *testing.T) { actualText = "What is your name? My name is Jonas." expected = []string{ "What is your name?", - " My name is Jonas.", + "My name is Jonas.", } compareSentences(t, actualText, expected, test) @@ -169,7 +199,7 @@ func TestGoldenRules(t *testing.T) { actualText = "There it is! I found it." expected = []string{ "There it is!", - " I found it.", + "I found it.", } compareSentences(t, actualText, expected, test) @@ -205,7 +235,7 @@ func TestGoldenRules(t *testing.T) { actualText = "Let's ask Jane and co. They should know." expected = []string{ "Let's ask Jane and co.", - " They should know.", + "They should know.", } compareSentences(t, actualText, expected, test) @@ -213,7 +243,7 @@ func TestGoldenRules(t *testing.T) { actualText = "They closed the deal with Pitt, Briggs & Co. It closed yesterday." expected = []string{ "They closed the deal with Pitt, Briggs & Co.", - " It closed yesterday.", + "It closed yesterday.", } compareSentences(t, actualText, expected, test) @@ -298,7 +328,7 @@ func TestGoldenRules(t *testing.T) { actualText = "She has $100.00. It is in her bag." expected = []string{ "She has $100.00.", - " It is in her bag.", + "It is in her bag.", } compareSentences(t, actualText, expected, test) @@ -313,7 +343,7 @@ func TestGoldenRules(t *testing.T) { actualText = "Her email is Jane.Doe@example.com. I sent her an email." expected = []string{ "Her email is Jane.Doe@example.com.", - " I sent her an email.", + "I sent her an email.", } compareSentences(t, actualText, expected, test) @@ -321,7 +351,7 @@ func TestGoldenRules(t *testing.T) { actualText = "The site is: https://www.example.50.com/new-site/awesome_content.html. Please check it out." expected = []string{ "The site is: https://www.example.50.com/new-site/awesome_content.html.", - " Please check it out.", + "Please check it out.", } compareSentences(t, actualText, expected, test) @@ -343,7 +373,7 @@ func TestGoldenRules(t *testing.T) { actualText = "She turned to him, \"This is great.\" She held the book out to show him." expected = []string{ "She turned to him, \"This is great.\"", - " She held the book out to show him.", + "She held the book out to show him.", } compareSentences(t, actualText, expected, test) @@ -351,7 +381,7 @@ func TestGoldenRules(t *testing.T) { actualText = "Hello!! Long time no see." expected = []string{ "Hello!!", - " Long time no see.", + "Long time no see.", } compareSentences(t, actualText, expected, test) @@ -359,7 +389,7 @@ func TestGoldenRules(t *testing.T) { actualText = "Hello?? Who is there?" expected = []string{ "Hello??", - " Who is there?", + "Who is there?", } compareSentences(t, actualText, expected, test) @@ -367,7 +397,7 @@ func TestGoldenRules(t *testing.T) { actualText = "Hello!? Is that you?" expected = []string{ "Hello!?", - " Is that you?", + "Is that you?", } compareSentences(t, actualText, expected, test) @@ -375,7 +405,7 @@ func TestGoldenRules(t *testing.T) { actualText = "Hello?! Is that you?" expected = []string{ "Hello?!", - " Is that you?", + "Is that you?", } compareSentences(t, actualText, expected, test) @@ -413,7 +443,7 @@ func TestGoldenRules(t *testing.T) { actualText = "We make a good team, you and I. Did you see Albert I. Jones yesterday?" expected = []string{ "We make a good team, you and I.", - " Did you see Albert I. Jones yesterday?", + "Did you see Albert I. Jones yesterday?", } compareSentences(t, actualText, expected, test) @@ -435,7 +465,7 @@ func TestGoldenRules(t *testing.T) { actualText = "If words are left off at the end of a sentence, and that is all that is omitted, indicate the omission with ellipsis marks (preceded and followed by a space) and then indicate the end of the sentence with a period . . . . Next sentence." expected = []string{ "If words are left off at the end of a sentence, and that is all that is omitted, indicate the omission with ellipsis marks (preceded and followed by a space) and then indicate the end of the sentence with a period . . . .", - " Next sentence.", + "Next sentence.", } compareSentences(t, actualText, expected, test) @@ -443,7 +473,7 @@ func TestGoldenRules(t *testing.T) { actualText = "I never meant that.... She left the store." expected = []string{ "I never meant that....", - " She left the store.", + "She left the store.", } compareSentences(t, actualText, expected, test) @@ -458,7 +488,18 @@ func TestGoldenRules(t *testing.T) { actualText = "One further habit which was somewhat weakened . . . was that of combining words into self-interpreting compounds. . . . The practice was not abandoned. . . ." expected = []string{ "One further habit which was somewhat weakened . . . was that of combining words into self-interpreting compounds. . . .", - " The practice was not abandoned. . . .", + "The practice was not abandoned. . . .", } compareSentences(t, actualText, expected, test) + + /* FIXME: + test = "52. No whitespace in between sentences" + actualText = "Hello world.Today is Tuesday.Mr. Smith went to the store and bought 1,000.That is a lot." + expected = []string{ + "Hello world.", + "Today is Tuesday.", + "Mr. Smith went to the store and bought 1,000.", + "That is a lot.", + } + compareSentences(t, actualText, expected, test)*/ } diff --git a/summarize/easy.go b/summarize/easy.go deleted file mode 100644 index 0ee378a..0000000 --- a/summarize/easy.go +++ /dev/null @@ -1,2950 +0,0 @@ -package summarize - -var empty struct{} - -var easyWords = map[string]struct{}{ - "a": empty, - "able": empty, - "aboard": empty, - "about": empty, - "above": empty, - "absent": empty, - "accept": empty, - "accident": empty, - "account": empty, - "ache": empty, - "aching": empty, - "acorn": empty, - "acre": empty, - "across": empty, - "act": empty, - "acts": empty, - "add": empty, - "address": empty, - "admire": empty, - "adventure": empty, - "afar": empty, - "afraid": empty, - "after": empty, - "afternoon": empty, - "afterward": empty, - "afterwards": empty, - "again": empty, - "against": empty, - "age": empty, - "aged": empty, - "ago": empty, - "agree": empty, - "ah": empty, - "ahead": empty, - "aid": empty, - "aim": empty, - "air": empty, - "airfield": empty, - "airplane": empty, - "airport": empty, - "airship": empty, - "airy": empty, - "alarm": empty, - "alike": empty, - "alive": empty, - "all": empty, - "alley": empty, - "alligator": empty, - "allow": empty, - "almost": empty, - "alone": empty, - "along": empty, - "aloud": empty, - "already": empty, - "also": empty, - "always": empty, - "am": empty, - "America": empty, - "American": empty, - "among": empty, - "amount": empty, - "an": empty, - "and": empty, - "angel": empty, - "anger": empty, - "angry": empty, - "animal": empty, - "another": empty, - "answer": empty, - "ant": empty, - "any": empty, - "anybody": empty, - "anyhow": empty, - "anyone": empty, - "anything": empty, - "anyway": empty, - "anywhere": empty, - "apart": empty, - "apartment": empty, - "ape": empty, - "apiece": empty, - "appear": empty, - "apple": empty, - "April": empty, - "apron": empty, - "are": empty, - "aren't": empty, - "arise": empty, - "arithmetic": empty, - "arm": empty, - "armful": empty, - "army": empty, - "arose": empty, - "around": empty, - "arrange": empty, - "arrive": empty, - "arrived": empty, - "arrow": empty, - "art": empty, - "artist": empty, - "as": empty, - "ash": empty, - "ashes": empty, - "aside": empty, - "ask": empty, - "asleep": empty, - "at": empty, - "ate": empty, - "attack": empty, - "attend": empty, - "attention": empty, - "August": empty, - "aunt": empty, - "author": empty, - "auto": empty, - "automobile": empty, - "autumn": empty, - "avenue": empty, - "awake": empty, - "awaken": empty, - "away": empty, - "awful": empty, - "awfully": empty, - "awhile": empty, - "ax": empty, - "axe": empty, - "baa": empty, - "babe": empty, - "babies": empty, - "back": empty, - "background": empty, - "backward": empty, - "backwards": empty, - "bacon": empty, - "bad": empty, - "badge": empty, - "badly": empty, - "bag": empty, - "bake": empty, - "baker": empty, - "bakery": empty, - "baking": empty, - "ball": empty, - "balloon": empty, - "banana": empty, - "band": empty, - "bandage": empty, - "bang": empty, - "banjo": empty, - "bank": empty, - "banker": empty, - "bar": empty, - "barber": empty, - "bare": empty, - "barefoot": empty, - "barely": empty, - "bark": empty, - "barn": empty, - "barrel": empty, - "base": empty, - "baseball": empty, - "basement": empty, - "basket": empty, - "bat": empty, - "batch": empty, - "bath": empty, - "bathe": empty, - "bathing": empty, - "bathroom": empty, - "bathtub": empty, - "battle": empty, - "battleship": empty, - "bay": empty, - "be": empty, - "beach": empty, - "bead": empty, - "beam": empty, - "bean": empty, - "bear": empty, - "beard": empty, - "beast": empty, - "beat": empty, - "beating": empty, - "beautiful": empty, - "beautify": empty, - "beauty": empty, - "became": empty, - "because": empty, - "become": empty, - "becoming": empty, - "bed": empty, - "bedbug": empty, - "bedroom": empty, - "bedspread": empty, - "bedtime": empty, - "bee": empty, - "beech": empty, - "beef": empty, - "beefsteak": empty, - "beehive": empty, - "been": empty, - "beer": empty, - "beet": empty, - "before": empty, - "beg": empty, - "began": empty, - "beggar": empty, - "begged": empty, - "begin": empty, - "beginning": empty, - "begun": empty, - "behave": empty, - "behind": empty, - "being": empty, - "believe": empty, - "bell": empty, - "belong": empty, - "below": empty, - "belt": empty, - "bench": empty, - "bend": empty, - "beneath": empty, - "bent": empty, - "berries": empty, - "berry": empty, - "beside": empty, - "besides": empty, - "best": empty, - "bet": empty, - "better": empty, - "between": empty, - "bib": empty, - "bible": empty, - "bicycle": empty, - "bid": empty, - "big": empty, - "bigger": empty, - "bill": empty, - "billboard": empty, - "bin": empty, - "bind": empty, - "bird": empty, - "birth": empty, - "birthday": empty, - "biscuit": empty, - "bit": empty, - "bite": empty, - "biting": empty, - "bitter": empty, - "black": empty, - "blackberry": empty, - "blackbird": empty, - "blackboard": empty, - "blackness": empty, - "blacksmith": empty, - "blame": empty, - "blank": empty, - "blanket": empty, - "blast": empty, - "blaze": empty, - "bleed": empty, - "bless": empty, - "blessing": empty, - "blew": empty, - "blind": empty, - "blindfold": empty, - "blinds": empty, - "block": empty, - "blood": empty, - "bloom": empty, - "blossom": empty, - "blot": empty, - "blow": empty, - "blue": empty, - "blueberry": empty, - "bluebird": empty, - "blush": empty, - "board": empty, - "boast": empty, - "boat": empty, - "bob": empty, - "bobwhite": empty, - "bodies": empty, - "body": empty, - "boil": empty, - "boiler": empty, - "bold": empty, - "bone": empty, - "bonnet": empty, - "boo": empty, - "book": empty, - "bookcase": empty, - "bookkeeper": empty, - "boom": empty, - "boot": empty, - "born": empty, - "borrow": empty, - "boss": empty, - "both": empty, - "bother": empty, - "bottle": empty, - "bottom": empty, - "bought": empty, - "bounce": empty, - "bow": empty, - "bowl": empty, - "bow-wow": empty, - "box": empty, - "boxcar": empty, - "boxer": empty, - "boxes": empty, - "boy": empty, - "boyhood": empty, - "bracelet": empty, - "brain": empty, - "brake": empty, - "bran": empty, - "branch": empty, - "brass": empty, - "brave": empty, - "bread": empty, - "break": empty, - "breakfast": empty, - "breast": empty, - "breath": empty, - "breathe": empty, - "breeze": empty, - "brick": empty, - "bride": empty, - "bridge": empty, - "bright": empty, - "brightness": empty, - "bring": empty, - "broad": empty, - "broadcast": empty, - "broke": empty, - "broken": empty, - "brook": empty, - "broom": empty, - "brother": empty, - "brought": empty, - "brown": empty, - "brush": empty, - "bubble": empty, - "bucket": empty, - "buckle": empty, - "bud": empty, - "buffalo": empty, - "bug": empty, - "buggy": empty, - "build": empty, - "building": empty, - "built": empty, - "bulb": empty, - "bull": empty, - "bullet": empty, - "bum": empty, - "bumblebee": empty, - "bump": empty, - "bun": empty, - "bunch": empty, - "bundle": empty, - "bunny": empty, - "burn": empty, - "burst": empty, - "bury": empty, - "bus": empty, - "bush": empty, - "bushel": empty, - "business": empty, - "busy": empty, - "but": empty, - "butcher": empty, - "butt": empty, - "butter": empty, - "buttercup": empty, - "butterfly": empty, - "buttermilk": empty, - "butterscotch": empty, - "button": empty, - "buttonhole": empty, - "buy": empty, - "buzz": empty, - "by": empty, - "bye": empty, - "cab": empty, - "cabbage": empty, - "cabin": empty, - "cabinet": empty, - "cackle": empty, - "cage": empty, - "cake": empty, - "calendar": empty, - "calf": empty, - "call": empty, - "caller": empty, - "calling": empty, - "came": empty, - "camel": empty, - "camp": empty, - "campfire": empty, - "can": empty, - "canal": empty, - "canary": empty, - "candle": empty, - "candlestick": empty, - "candy": empty, - "cane": empty, - "cannon": empty, - "cannot": empty, - "canoe": empty, - "can't": empty, - "canyon": empty, - "cap": empty, - "cape": empty, - "capital": empty, - "captain": empty, - "car": empty, - "card": empty, - "cardboard": empty, - "care": empty, - "careful": empty, - "careless": empty, - "carelessness": empty, - "carload": empty, - "carpenter": empty, - "carpet": empty, - "carriage": empty, - "carrot": empty, - "carry": empty, - "cart": empty, - "carve": empty, - "case": empty, - "cash": empty, - "cashier": empty, - "castle": empty, - "cat": empty, - "catbird": empty, - "catch": empty, - "catcher": empty, - "caterpillar": empty, - "catfish": empty, - "catsup": empty, - "cattle": empty, - "caught": empty, - "cause": empty, - "cave": empty, - "ceiling": empty, - "cell": empty, - "cellar": empty, - "cent": empty, - "center": empty, - "cereal": empty, - "certain": empty, - "certainly": empty, - "chain": empty, - "chair": empty, - "chalk": empty, - "champion": empty, - "chance": empty, - "change": empty, - "chap": empty, - "charge": empty, - "charm": empty, - "chart": empty, - "chase": empty, - "chatter": empty, - "cheap": empty, - "cheat": empty, - "check": empty, - "checkers": empty, - "cheek": empty, - "cheer": empty, - "cheese": empty, - "cherry": empty, - "chest": empty, - "chew": empty, - "chick": empty, - "chicken": empty, - "chief": empty, - "child": empty, - "childhood": empty, - "children": empty, - "chill": empty, - "chilly": empty, - "chimney": empty, - "chin": empty, - "china": empty, - "chip": empty, - "chipmunk": empty, - "chocolate": empty, - "choice": empty, - "choose": empty, - "chop": empty, - "chorus": empty, - "chose": empty, - "chosen": empty, - "christen": empty, - "Christmas": empty, - "church": empty, - "churn": empty, - "cigarette": empty, - "circle": empty, - "circus": empty, - "citizen": empty, - "city": empty, - "clang": empty, - "clap": empty, - "class": empty, - "classmate": empty, - "classroom": empty, - "claw": empty, - "clay": empty, - "clean": empty, - "cleaner": empty, - "clear": empty, - "clerk": empty, - "clever": empty, - "click": empty, - "cliff": empty, - "climb": empty, - "clip": empty, - "cloak": empty, - "clock": empty, - "close": empty, - "closet": empty, - "cloth": empty, - "clothes": empty, - "clothing": empty, - "cloud": empty, - "cloudy": empty, - "clover": empty, - "clown": empty, - "club": empty, - "cluck": empty, - "clump": empty, - "coach": empty, - "coal": empty, - "coast": empty, - "coat": empty, - "cob": empty, - "cobbler": empty, - "cocoa": empty, - "coconut": empty, - "cocoon": empty, - "cod": empty, - "codfish": empty, - "coffee": empty, - "coffeepot": empty, - "coin": empty, - "cold": empty, - "collar": empty, - "college": empty, - "color": empty, - "colored": empty, - "colt": empty, - "column": empty, - "comb": empty, - "come": empty, - "comfort": empty, - "comic": empty, - "coming": empty, - "company": empty, - "compare": empty, - "conductor": empty, - "cone": empty, - "connect": empty, - "coo": empty, - "cook": empty, - "cooked": empty, - "cooking": empty, - "cookie": empty, - "cookies": empty, - "cool": empty, - "cooler": empty, - "coop": empty, - "copper": empty, - "copy": empty, - "cord": empty, - "cork": empty, - "corn": empty, - "corner": empty, - "correct": empty, - "cost": empty, - "cot": empty, - "cottage": empty, - "cotton": empty, - "couch": empty, - "cough": empty, - "could": empty, - "couldn't": empty, - "count": empty, - "counter": empty, - "country": empty, - "county": empty, - "course": empty, - "court": empty, - "cousin": empty, - "cover": empty, - "cow": empty, - "coward": empty, - "cowardly": empty, - "cowboy": empty, - "cozy": empty, - "crab": empty, - "crack": empty, - "cracker": empty, - "cradle": empty, - "cramps": empty, - "cranberry": empty, - "crank": empty, - "cranky": empty, - "crash": empty, - "crawl": empty, - "crazy": empty, - "cream": empty, - "creamy": empty, - "creek": empty, - "creep": empty, - "crept": empty, - "cried": empty, - "croak": empty, - "crook": empty, - "crooked": empty, - "crop": empty, - "cross": empty, - "crossing": empty, - "cross-eyed": empty, - "crow": empty, - "crowd": empty, - "crowded": empty, - "crown": empty, - "cruel": empty, - "crumb": empty, - "crumble": empty, - "crush": empty, - "crust": empty, - "cry": empty, - "cries": empty, - "cub": empty, - "cuff": empty, - "cup": empty, - "cupboard": empty, - "cupful": empty, - "cure": empty, - "curl": empty, - "curly": empty, - "curtain": empty, - "curve": empty, - "cushion": empty, - "custard": empty, - "customer": empty, - "cut": empty, - "cute": empty, - "cutting": empty, - "dab": empty, - "dad": empty, - "daddy": empty, - "daily": empty, - "dairy": empty, - "daisy": empty, - "dam": empty, - "damage": empty, - "dame": empty, - "damp": empty, - "dance": empty, - "dancer": empty, - "dancing": empty, - "dandy": empty, - "danger": empty, - "dangerous": empty, - "dare": empty, - "dark": empty, - "darkness": empty, - "darling": empty, - "darn": empty, - "dart": empty, - "dash": empty, - "date": empty, - "daughter": empty, - "dawn": empty, - "day": empty, - "daybreak": empty, - "daytime": empty, - "dead": empty, - "deaf": empty, - "deal": empty, - "dear": empty, - "death": empty, - "December": empty, - "decide": empty, - "deck": empty, - "deed": empty, - "deep": empty, - "deer": empty, - "defeat": empty, - "defend": empty, - "defense": empty, - "delight": empty, - "den": empty, - "dentist": empty, - "depend": empty, - "deposit": empty, - "describe": empty, - "desert": empty, - "deserve": empty, - "desire": empty, - "desk": empty, - "destroy": empty, - "devil": empty, - "dew": empty, - "diamond": empty, - "did": empty, - "didn't": empty, - "die": empty, - "died": empty, - "dies": empty, - "difference": empty, - "different": empty, - "dig": empty, - "dim": empty, - "dime": empty, - "dine": empty, - "ding-dong": empty, - "dinner": empty, - "dip": empty, - "direct": empty, - "direction": empty, - "dirt": empty, - "dirty": empty, - "discover": empty, - "dish": empty, - "dislike": empty, - "dismiss": empty, - "ditch": empty, - "dive": empty, - "diver": empty, - "divide": empty, - "do": empty, - "dock": empty, - "doctor": empty, - "does": empty, - "doesn't": empty, - "dog": empty, - "doll": empty, - "dollar": empty, - "dolly": empty, - "done": empty, - "donkey": empty, - "don't": empty, - "door": empty, - "doorbell": empty, - "doorknob": empty, - "doorstep": empty, - "dope": empty, - "dot": empty, - "double": empty, - "dough": empty, - "dove": empty, - "down": empty, - "downstairs": empty, - "downtown": empty, - "dozen": empty, - "drag": empty, - "drain": empty, - "drank": empty, - "draw": empty, - "drawer": empty, - "drawing": empty, - "dream": empty, - "dress": empty, - "dresser": empty, - "dressmaker": empty, - "drew": empty, - "dried": empty, - "drift": empty, - "drill": empty, - "drink": empty, - "drip": empty, - "drive": empty, - "driven": empty, - "driver": empty, - "drop": empty, - "drove": empty, - "drown": empty, - "drowsy": empty, - "drub": empty, - "drum": empty, - "drunk": empty, - "dry": empty, - "duck": empty, - "due": empty, - "dug": empty, - "dull": empty, - "dumb": empty, - "dump": empty, - "during": empty, - "dust": empty, - "dusty": empty, - "duty": empty, - "dwarf": empty, - "dwell": empty, - "dwelt": empty, - "dying": empty, - "each": empty, - "eager": empty, - "eagle": empty, - "ear": empty, - "early": empty, - "earn": empty, - "earth": empty, - "east": empty, - "eastern": empty, - "easy": empty, - "eat": empty, - "eaten": empty, - "edge": empty, - "egg": empty, - "eh": empty, - "eight": empty, - "eighteen": empty, - "eighth": empty, - "eighty": empty, - "either": empty, - "elbow": empty, - "elder": empty, - "eldest": empty, - "electric": empty, - "electricity": empty, - "elephant": empty, - "eleven": empty, - "elf": empty, - "elm": empty, - "else": empty, - "elsewhere": empty, - "empty": empty, - "end": empty, - "ending": empty, - "enemy": empty, - "engine": empty, - "engineer": empty, - "English": empty, - "enjoy": empty, - "enough": empty, - "enter": empty, - "envelope": empty, - "equal": empty, - "erase": empty, - "eraser": empty, - "errand": empty, - "escape": empty, - "eve": empty, - "even": empty, - "evening": empty, - "ever": empty, - "every": empty, - "everybody": empty, - "everyday": empty, - "everyone": empty, - "everything": empty, - "everywhere": empty, - "evil": empty, - "exact": empty, - "except": empty, - "exchange": empty, - "excited": empty, - "exciting": empty, - "excuse": empty, - "exit": empty, - "expect": empty, - "explain": empty, - "extra": empty, - "eye": empty, - "eyebrow": empty, - "fable": empty, - "face": empty, - "facing": empty, - "fact": empty, - "factory": empty, - "fail": empty, - "faint": empty, - "fair": empty, - "fairy": empty, - "faith": empty, - "fake": empty, - "fall": empty, - "false": empty, - "family": empty, - "fan": empty, - "fancy": empty, - "far": empty, - "faraway": empty, - "fare": empty, - "farmer": empty, - "farm": empty, - "farming": empty, - "far-off": empty, - "farther": empty, - "fashion": empty, - "fast": empty, - "fasten": empty, - "fat": empty, - "father": empty, - "fault": empty, - "favor": empty, - "favorite": empty, - "fear": empty, - "feast": empty, - "feather": empty, - "February": empty, - "fed": empty, - "feed": empty, - "feel": empty, - "feet": empty, - "fell": empty, - "fellow": empty, - "felt": empty, - "fence": empty, - "fever": empty, - "few": empty, - "fib": empty, - "fiddle": empty, - "field": empty, - "fife": empty, - "fifteen": empty, - "fifth": empty, - "fifty": empty, - "fig": empty, - "fight": empty, - "figure": empty, - "file": empty, - "fill": empty, - "film": empty, - "finally": empty, - "find": empty, - "fine": empty, - "finger": empty, - "finish": empty, - "fire": empty, - "firearm": empty, - "firecracker": empty, - "fireplace": empty, - "fireworks": empty, - "firing": empty, - "first": empty, - "fish": empty, - "fisherman": empty, - "fist": empty, - "fit": empty, - "fits": empty, - "five": empty, - "fix": empty, - "flag": empty, - "flake": empty, - "flame": empty, - "flap": empty, - "flash": empty, - "flashlight": empty, - "flat": empty, - "flea": empty, - "flesh": empty, - "flew": empty, - "flies": empty, - "flight": empty, - "flip": empty, - "flip-flop": empty, - "float": empty, - "flock": empty, - "flood": empty, - "floor": empty, - "flop": empty, - "flour": empty, - "flow": empty, - "flower": empty, - "flowery": empty, - "flutter": empty, - "fly": empty, - "foam": empty, - "fog": empty, - "foggy": empty, - "fold": empty, - "folks": empty, - "follow": empty, - "following": empty, - "fond": empty, - "food": empty, - "fool": empty, - "foolish": empty, - "foot": empty, - "football": empty, - "footprint": empty, - "for": empty, - "forehead": empty, - "forest": empty, - "forget": empty, - "forgive": empty, - "forgot": empty, - "forgotten": empty, - "fork": empty, - "form": empty, - "fort": empty, - "forth": empty, - "fortune": empty, - "forty": empty, - "forward": empty, - "fought": empty, - "found": empty, - "fountain": empty, - "four": empty, - "fourteen": empty, - "fourth": empty, - "fox": empty, - "frame": empty, - "free": empty, - "freedom": empty, - "freeze": empty, - "freight": empty, - "French": empty, - "fresh": empty, - "fret": empty, - "Friday": empty, - "fried": empty, - "friend": empty, - "friendly": empty, - "friendship": empty, - "frighten": empty, - "frog": empty, - "from": empty, - "front": empty, - "frost": empty, - "frown": empty, - "froze": empty, - "fruit": empty, - "fry": empty, - "fudge": empty, - "fuel": empty, - "full": empty, - "fully": empty, - "fun": empty, - "funny": empty, - "fur": empty, - "furniture": empty, - "further": empty, - "fuzzy": empty, - "gain": empty, - "gallon": empty, - "gallop": empty, - "game": empty, - "gang": empty, - "garage": empty, - "garbage": empty, - "garden": empty, - "gas": empty, - "gasoline": empty, - "gate": empty, - "gather": empty, - "gave": empty, - "gay": empty, - "gear": empty, - "geese": empty, - "general": empty, - "gentle": empty, - "gentleman": empty, - "gentlemen": empty, - "geography": empty, - "get": empty, - "getting": empty, - "giant": empty, - "gift": empty, - "gingerbread": empty, - "girl": empty, - "give": empty, - "given": empty, - "giving": empty, - "glad": empty, - "gladly": empty, - "glance": empty, - "glass": empty, - "glasses": empty, - "gleam": empty, - "glide": empty, - "glory": empty, - "glove": empty, - "glow": empty, - "glue": empty, - "go": empty, - "going": empty, - "goes": empty, - "goal": empty, - "goat": empty, - "gobble": empty, - "God": empty, - "god": empty, - "godmother": empty, - "gold": empty, - "golden": empty, - "goldfish": empty, - "golf": empty, - "gone": empty, - "good": empty, - "goods": empty, - "goodbye": empty, - "good-by": empty, - "good-bye": empty, - "good-looking": empty, - "goodness": empty, - "goody": empty, - "goose": empty, - "gooseberry": empty, - "got": empty, - "govern": empty, - "government": empty, - "gown": empty, - "grab": empty, - "gracious": empty, - "grade": empty, - "grain": empty, - "grand": empty, - "grandchild": empty, - "grandchildren": empty, - "granddaughter": empty, - "grandfather": empty, - "grandma": empty, - "grandmother": empty, - "grandpa": empty, - "grandson": empty, - "grandstand": empty, - "grape": empty, - "grapes": empty, - "grapefruit": empty, - "grass": empty, - "grasshopper": empty, - "grateful": empty, - "grave": empty, - "gravel": empty, - "graveyard": empty, - "gravy": empty, - "gray": empty, - "graze": empty, - "grease": empty, - "great": empty, - "green": empty, - "greet": empty, - "grew": empty, - "grind": empty, - "groan": empty, - "grocery": empty, - "ground": empty, - "group": empty, - "grove": empty, - "grow": empty, - "guard": empty, - "guess": empty, - "guest": empty, - "guide": empty, - "gulf": empty, - "gum": empty, - "gun": empty, - "gunpowder": empty, - "guy": empty, - "ha": empty, - "habit": empty, - "had": empty, - "hadn't": empty, - "hail": empty, - "hair": empty, - "haircut": empty, - "hairpin": empty, - "half": empty, - "hall": empty, - "halt": empty, - "ham": empty, - "hammer": empty, - "hand": empty, - "handful": empty, - "handkerchief": empty, - "handle": empty, - "handwriting": empty, - "hang": empty, - "happen": empty, - "happily": empty, - "happiness": empty, - "happy": empty, - "harbor": empty, - "hard": empty, - "hardly": empty, - "hardship": empty, - "hardware": empty, - "hare": empty, - "hark": empty, - "harm": empty, - "harness": empty, - "harp": empty, - "harvest": empty, - "has": empty, - "hasn't": empty, - "haste": empty, - "hasten": empty, - "hasty": empty, - "hat": empty, - "hatch": empty, - "hatchet": empty, - "hate": empty, - "haul": empty, - "have": empty, - "haven't": empty, - "having": empty, - "hawk": empty, - "hay": empty, - "hayfield": empty, - "haystack": empty, - "he": empty, - "head": empty, - "headache": empty, - "heal": empty, - "health": empty, - "healthy": empty, - "heap": empty, - "hear": empty, - "hearing": empty, - "heard": empty, - "heart": empty, - "heat": empty, - "heater": empty, - "heaven": empty, - "heavy": empty, - "he'd": empty, - "heel": empty, - "height": empty, - "held": empty, - "hell": empty, - "he'll": empty, - "hello": empty, - "helmet": empty, - "help": empty, - "helper": empty, - "helpful": empty, - "hem": empty, - "hen": empty, - "henhouse": empty, - "her": empty, - "hers": empty, - "herd": empty, - "here": empty, - "here's": empty, - "hero": empty, - "herself": empty, - "he's": empty, - "hey": empty, - "hickory": empty, - "hid": empty, - "hidden": empty, - "hide": empty, - "high": empty, - "highway": empty, - "hill": empty, - "hillside": empty, - "hilltop": empty, - "hilly": empty, - "him": empty, - "himself": empty, - "hind": empty, - "hint": empty, - "hip": empty, - "hire": empty, - "his": empty, - "hiss": empty, - "history": empty, - "hit": empty, - "hitch": empty, - "hive": empty, - "ho": empty, - "hoe": empty, - "hog": empty, - "hold": empty, - "holder": empty, - "hole": empty, - "holiday": empty, - "hollow": empty, - "holy": empty, - "home": empty, - "homely": empty, - "homesick": empty, - "honest": empty, - "honey": empty, - "honeybee": empty, - "honeymoon": empty, - "honk": empty, - "honor": empty, - "hood": empty, - "hoof": empty, - "hook": empty, - "hoop": empty, - "hop": empty, - "hope": empty, - "hopeful": empty, - "hopeless": empty, - "horn": empty, - "horse": empty, - "horseback": empty, - "horseshoe": empty, - "hose": empty, - "hospital": empty, - "host": empty, - "hot": empty, - "hotel": empty, - "hound": empty, - "hour": empty, - "house": empty, - "housetop": empty, - "housewife": empty, - "housework": empty, - "how": empty, - "however": empty, - "howl": empty, - "hug": empty, - "huge": empty, - "hum": empty, - "humble": empty, - "hump": empty, - "hundred": empty, - "hung": empty, - "hunger": empty, - "hungry": empty, - "hunk": empty, - "hunt": empty, - "hunter": empty, - "hurrah": empty, - "hurried": empty, - "hurry": empty, - "hurt": empty, - "husband": empty, - "hush": empty, - "hut": empty, - "hymn": empty, - "I": empty, - "ice": empty, - "icy": empty, - "I'd": empty, - "idea": empty, - "ideal": empty, - "if": empty, - "ill": empty, - "I'll": empty, - "I'm": empty, - "important": empty, - "impossible": empty, - "improve": empty, - "in": empty, - "inch": empty, - "inches": empty, - "income": empty, - "indeed": empty, - "Indian": empty, - "indoors": empty, - "ink": empty, - "inn": empty, - "insect": empty, - "inside": empty, - "instant": empty, - "instead": empty, - "insult": empty, - "intend": empty, - "interested": empty, - "interesting": empty, - "into": empty, - "invite": empty, - "iron": empty, - "is": empty, - "island": empty, - "isn't": empty, - "it": empty, - "its": empty, - "it's": empty, - "itself": empty, - "I've": empty, - "ivory": empty, - "ivy": empty, - "jacket": empty, - "jacks": empty, - "jail": empty, - "jam": empty, - "January": empty, - "jar": empty, - "jaw": empty, - "jay": empty, - "jelly": empty, - "jellyfish": empty, - "jerk": empty, - "jig": empty, - "job": empty, - "jockey": empty, - "join": empty, - "joke": empty, - "joking": empty, - "jolly": empty, - "journey": empty, - "joy": empty, - "joyful": empty, - "joyous": empty, - "judge": empty, - "jug": empty, - "juice": empty, - "juicy": empty, - "July": empty, - "jump": empty, - "June": empty, - "junior": empty, - "junk": empty, - "just": empty, - "keen": empty, - "keep": empty, - "kept": empty, - "kettle": empty, - "key": empty, - "kick": empty, - "kid": empty, - "kill": empty, - "killed": empty, - "kind": empty, - "kindly": empty, - "kindness": empty, - "king": empty, - "kingdom": empty, - "kiss": empty, - "kitchen": empty, - "kite": empty, - "kitten": empty, - "kitty": empty, - "knee": empty, - "kneel": empty, - "knew": empty, - "knife": empty, - "knit": empty, - "knives": empty, - "knob": empty, - "knock": empty, - "knot": empty, - "know": empty, - "known": empty, - "lace": empty, - "lad": empty, - "ladder": empty, - "ladies": empty, - "lady": empty, - "laid": empty, - "lake": empty, - "lamb": empty, - "lame": empty, - "lamp": empty, - "land": empty, - "lane": empty, - "language": empty, - "lantern": empty, - "lap": empty, - "lard": empty, - "large": empty, - "lash": empty, - "lass": empty, - "last": empty, - "late": empty, - "laugh": empty, - "laundry": empty, - "law": empty, - "lawn": empty, - "lawyer": empty, - "lay": empty, - "lazy": empty, - "lead": empty, - "leader": empty, - "leaf": empty, - "leak": empty, - "lean": empty, - "leap": empty, - "learn": empty, - "learned": empty, - "least": empty, - "leather": empty, - "leave": empty, - "leaving": empty, - "led": empty, - "left": empty, - "leg": empty, - "lemon": empty, - "lemonade": empty, - "lend": empty, - "length": empty, - "less": empty, - "lesson": empty, - "let": empty, - "let's": empty, - "letter": empty, - "letting": empty, - "lettuce": empty, - "level": empty, - "liberty": empty, - "library": empty, - "lice": empty, - "lick": empty, - "lid": empty, - "lie": empty, - "life": empty, - "lift": empty, - "light": empty, - "lightness": empty, - "lightning": empty, - "like": empty, - "likely": empty, - "liking": empty, - "lily": empty, - "limb": empty, - "lime": empty, - "limp": empty, - "line": empty, - "linen": empty, - "lion": empty, - "lip": empty, - "list": empty, - "listen": empty, - "lit": empty, - "little": empty, - "live": empty, - "lives": empty, - "lively": empty, - "liver": empty, - "living": empty, - "lizard": empty, - "load": empty, - "loaf": empty, - "loan": empty, - "loaves": empty, - "lock": empty, - "locomotive": empty, - "log": empty, - "lone": empty, - "lonely": empty, - "lonesome": empty, - "long": empty, - "look": empty, - "lookout": empty, - "loop": empty, - "loose": empty, - "lord": empty, - "lose": empty, - "loser": empty, - "loss": empty, - "lost": empty, - "lot": empty, - "loud": empty, - "love": empty, - "lovely": empty, - "lover": empty, - "low": empty, - "luck": empty, - "lucky": empty, - "lumber": empty, - "lump": empty, - "lunch": empty, - "lying": empty, - "ma": empty, - "machine": empty, - "machinery": empty, - "mad": empty, - "made": empty, - "magazine": empty, - "magic": empty, - "maid": empty, - "mail": empty, - "mailbox": empty, - "mailman": empty, - "major": empty, - "make": empty, - "making": empty, - "male": empty, - "mama": empty, - "mamma": empty, - "man": empty, - "manager": empty, - "mane": empty, - "manger": empty, - "many": empty, - "map": empty, - "maple": empty, - "marble": empty, - "march": empty, - "March": empty, - "mare": empty, - "mark": empty, - "market": empty, - "marriage": empty, - "married": empty, - "marry": empty, - "mask": empty, - "mast": empty, - "master": empty, - "mat": empty, - "match": empty, - "matter": empty, - "mattress": empty, - "may": empty, - "May": empty, - "maybe": empty, - "mayor": empty, - "maypole": empty, - "me": empty, - "meadow": empty, - "meal": empty, - "mean": empty, - "means": empty, - "meant": empty, - "measure": empty, - "meat": empty, - "medicine": empty, - "meet": empty, - "meeting": empty, - "melt": empty, - "member": empty, - "men": empty, - "mend": empty, - "meow": empty, - "merry": empty, - "mess": empty, - "message": empty, - "met": empty, - "metal": empty, - "mew": empty, - "mice": empty, - "middle": empty, - "midnight": empty, - "might": empty, - "mighty": empty, - "mile": empty, - "milk": empty, - "milkman": empty, - "mill": empty, - "miler": empty, - "million": empty, - "mind": empty, - "mine": empty, - "miner": empty, - "mint": empty, - "minute": empty, - "mirror": empty, - "mischief": empty, - "miss": empty, - "Miss": empty, - "misspell": empty, - "mistake": empty, - "misty": empty, - "mitt": empty, - "mitten": empty, - "mix": empty, - "moment": empty, - "Monday": empty, - "money": empty, - "monkey": empty, - "month": empty, - "moo": empty, - "moon": empty, - "moonlight": empty, - "moose": empty, - "mop": empty, - "more": empty, - "morning": empty, - "morrow": empty, - "moss": empty, - "most": empty, - "mostly": empty, - "mother": empty, - "motor": empty, - "mount": empty, - "mountain": empty, - "mouse": empty, - "mouth": empty, - "move": empty, - "movie": empty, - "movies": empty, - "moving": empty, - "mow": empty, - "Mr.": empty, - "Mrs.": empty, - "much": empty, - "mud": empty, - "muddy": empty, - "mug": empty, - "mule": empty, - "multiply": empty, - "murder": empty, - "music": empty, - "must": empty, - "my": empty, - "myself": empty, - "nail": empty, - "name": empty, - "nap": empty, - "napkin": empty, - "narrow": empty, - "nasty": empty, - "naughty": empty, - "navy": empty, - "near": empty, - "nearby": empty, - "nearly": empty, - "neat": empty, - "neck": empty, - "necktie": empty, - "need": empty, - "needle": empty, - "needn't": empty, - "Negro": empty, - "neighbor": empty, - "neighborhood": empty, - "neither": empty, - "nerve": empty, - "nest": empty, - "net": empty, - "never": empty, - "nevermore": empty, - "new": empty, - "news": empty, - "newspaper": empty, - "next": empty, - "nibble": empty, - "nice": empty, - "nickel": empty, - "night": empty, - "nightgown": empty, - "nine": empty, - "nineteen": empty, - "ninety": empty, - "no": empty, - "nobody": empty, - "nod": empty, - "noise": empty, - "noisy": empty, - "none": empty, - "noon": empty, - "nor": empty, - "north": empty, - "northern": empty, - "nose": empty, - "not": empty, - "note": empty, - "nothing": empty, - "notice": empty, - "November": empty, - "now": empty, - "nowhere": empty, - "number": empty, - "nurse": empty, - "nut": empty, - "oak": empty, - "oar": empty, - "oatmeal": empty, - "oats": empty, - "obey": empty, - "ocean": empty, - "o'clock": empty, - "October": empty, - "odd": empty, - "of": empty, - "off": empty, - "offer": empty, - "office": empty, - "officer": empty, - "often": empty, - "oh": empty, - "oil": empty, - "old": empty, - "old-fashioned": empty, - "on": empty, - "once": empty, - "one": empty, - "onion": empty, - "only": empty, - "onward": empty, - "open": empty, - "or": empty, - "orange": empty, - "orchard": empty, - "order": empty, - "ore": empty, - "organ": empty, - "other": empty, - "otherwise": empty, - "ouch": empty, - "ought": empty, - "our": empty, - "ours": empty, - "ourselves": empty, - "out": empty, - "outdoors": empty, - "outfit": empty, - "outlaw": empty, - "outline": empty, - "outside": empty, - "outward": empty, - "oven": empty, - "over": empty, - "overalls": empty, - "overcoat": empty, - "overeat": empty, - "overhead": empty, - "overhear": empty, - "overnight": empty, - "overturn": empty, - "owe": empty, - "owing": empty, - "owl": empty, - "own": empty, - "owner": empty, - "ox": empty, - "pa": empty, - "pace": empty, - "pack": empty, - "package": empty, - "pad": empty, - "page": empty, - "paid": empty, - "pail": empty, - "pain": empty, - "painful": empty, - "paint": empty, - "painter": empty, - "painting": empty, - "pair": empty, - "pal": empty, - "palace": empty, - "pale": empty, - "pan": empty, - "pancake": empty, - "pane": empty, - "pansy": empty, - "pants": empty, - "papa": empty, - "paper": empty, - "parade": empty, - "pardon": empty, - "parent": empty, - "park": empty, - "part": empty, - "partly": empty, - "partner": empty, - "party": empty, - "pass": empty, - "passenger": empty, - "past": empty, - "paste": empty, - "pasture": empty, - "pat": empty, - "patch": empty, - "path": empty, - "patter": empty, - "pave": empty, - "pavement": empty, - "paw": empty, - "pay": empty, - "payment": empty, - "pea": empty, - "peas": empty, - "peace": empty, - "peaceful": empty, - "peach": empty, - "peaches": empty, - "peak": empty, - "peanut": empty, - "pear": empty, - "pearl": empty, - "peck": empty, - "peek": empty, - "peel": empty, - "peep": empty, - "peg": empty, - "pen": empty, - "pencil": empty, - "penny": empty, - "people": empty, - "pepper": empty, - "peppermint": empty, - "perfume": empty, - "perhaps": empty, - "person": empty, - "pet": empty, - "phone": empty, - "piano": empty, - "pick": empty, - "pickle": empty, - "picnic": empty, - "picture": empty, - "pie": empty, - "piece": empty, - "pig": empty, - "pigeon": empty, - "piggy": empty, - "pile": empty, - "pill": empty, - "pillow": empty, - "pin": empty, - "pine": empty, - "pineapple": empty, - "pink": empty, - "pint": empty, - "pipe": empty, - "pistol": empty, - "pit": empty, - "pitch": empty, - "pitcher": empty, - "pity": empty, - "place": empty, - "plain": empty, - "plan": empty, - "plane": empty, - "plant": empty, - "plate": empty, - "platform": empty, - "platter": empty, - "play": empty, - "player": empty, - "playground": empty, - "playhouse": empty, - "playmate": empty, - "plaything": empty, - "pleasant": empty, - "please": empty, - "pleasure": empty, - "plenty": empty, - "plow": empty, - "plug": empty, - "plum": empty, - "pocket": empty, - "pocketbook": empty, - "poem": empty, - "point": empty, - "poison": empty, - "poke": empty, - "pole": empty, - "police": empty, - "policeman": empty, - "polish": empty, - "polite": empty, - "pond": empty, - "ponies": empty, - "pony": empty, - "pool": empty, - "poor": empty, - "pop": empty, - "popcorn": empty, - "popped": empty, - "porch": empty, - "pork": empty, - "possible": empty, - "post": empty, - "postage": empty, - "postman": empty, - "pot": empty, - "potato": empty, - "potatoes": empty, - "pound": empty, - "pour": empty, - "powder": empty, - "power": empty, - "powerful": empty, - "praise": empty, - "pray": empty, - "prayer": empty, - "prepare": empty, - "present": empty, - "pretty": empty, - "price": empty, - "prick": empty, - "prince": empty, - "princess": empty, - "print": empty, - "prison": empty, - "prize": empty, - "promise": empty, - "proper": empty, - "protect": empty, - "proud": empty, - "prove": empty, - "prune": empty, - "public": empty, - "puddle": empty, - "puff": empty, - "pull": empty, - "pump": empty, - "pumpkin": empty, - "punch": empty, - "punish": empty, - "pup": empty, - "pupil": empty, - "puppy": empty, - "pure": empty, - "purple": empty, - "purse": empty, - "push": empty, - "puss": empty, - "pussy": empty, - "pussycat": empty, - "put": empty, - "putting": empty, - "puzzle": empty, - "quack": empty, - "quart": empty, - "quarter": empty, - "queen": empty, - "queer": empty, - "question": empty, - "quick": empty, - "quickly": empty, - "quiet": empty, - "quilt": empty, - "quit": empty, - "quite": empty, - "rabbit": empty, - "race": empty, - "rack": empty, - "radio": empty, - "radish": empty, - "rag": empty, - "rail": empty, - "railroad": empty, - "railway": empty, - "rain": empty, - "rainy": empty, - "rainbow": empty, - "raise": empty, - "raisin": empty, - "rake": empty, - "ram": empty, - "ran": empty, - "ranch": empty, - "rang": empty, - "rap": empty, - "rapidly": empty, - "rat": empty, - "rate": empty, - "rather": empty, - "rattle": empty, - "raw": empty, - "ray": empty, - "reach": empty, - "read": empty, - "reader": empty, - "reading": empty, - "ready": empty, - "real": empty, - "really": empty, - "reap": empty, - "rear": empty, - "reason": empty, - "rebuild": empty, - "receive": empty, - "recess": empty, - "record": empty, - "red": empty, - "redbird": empty, - "redbreast": empty, - "refuse": empty, - "reindeer": empty, - "rejoice": empty, - "remain": empty, - "remember": empty, - "remind": empty, - "remove": empty, - "rent": empty, - "repair": empty, - "repay": empty, - "repeat": empty, - "report": empty, - "rest": empty, - "return": empty, - "review": empty, - "reward": empty, - "rib": empty, - "ribbon": empty, - "rice": empty, - "rich": empty, - "rid": empty, - "riddle": empty, - "ride": empty, - "rider": empty, - "riding": empty, - "right": empty, - "rim": empty, - "ring": empty, - "rip": empty, - "ripe": empty, - "rise": empty, - "rising": empty, - "river": empty, - "road": empty, - "roadside": empty, - "roar": empty, - "roast": empty, - "rob": empty, - "robber": empty, - "robe": empty, - "robin": empty, - "rock": empty, - "rocky": empty, - "rocket": empty, - "rode": empty, - "roll": empty, - "roller": empty, - "roof": empty, - "room": empty, - "rooster": empty, - "root": empty, - "rope": empty, - "rose": empty, - "rosebud": empty, - "rot": empty, - "rotten": empty, - "rough": empty, - "round": empty, - "route": empty, - "row": empty, - "rowboat": empty, - "royal": empty, - "rub": empty, - "rubbed": empty, - "rubber": empty, - "rubbish": empty, - "rug": empty, - "rule": empty, - "ruler": empty, - "rumble": empty, - "run": empty, - "rung": empty, - "runner": empty, - "running": empty, - "rush": empty, - "rust": empty, - "rusty": empty, - "rye": empty, - "sack": empty, - "sad": empty, - "saddle": empty, - "sadness": empty, - "safe": empty, - "safety": empty, - "said": empty, - "sail": empty, - "sailboat": empty, - "sailor": empty, - "saint": empty, - "salad": empty, - "sale": empty, - "salt": empty, - "same": empty, - "sand": empty, - "sandy": empty, - "sandwich": empty, - "sang": empty, - "sank": empty, - "sap": empty, - "sash": empty, - "sat": empty, - "satin": empty, - "satisfactory": empty, - "Saturday": empty, - "sausage": empty, - "savage": empty, - "save": empty, - "savings": empty, - "saw": empty, - "say": empty, - "scab": empty, - "scales": empty, - "scare": empty, - "scarf": empty, - "school": empty, - "schoolboy": empty, - "schoolhouse": empty, - "schoolmaster": empty, - "schoolroom": empty, - "scorch": empty, - "score": empty, - "scrap": empty, - "scrape": empty, - "scratch": empty, - "scream": empty, - "screen": empty, - "screw": empty, - "scrub": empty, - "sea": empty, - "seal": empty, - "seam": empty, - "search": empty, - "season": empty, - "seat": empty, - "second": empty, - "secret": empty, - "see": empty, - "seeing": empty, - "seed": empty, - "seek": empty, - "seem": empty, - "seen": empty, - "seesaw": empty, - "select": empty, - "self": empty, - "selfish": empty, - "sell": empty, - "send": empty, - "sense": empty, - "sent": empty, - "sentence": empty, - "separate": empty, - "September": empty, - "servant": empty, - "serve": empty, - "service": empty, - "set": empty, - "setting": empty, - "settle": empty, - "settlement": empty, - "seven": empty, - "seventeen": empty, - "seventh": empty, - "seventy": empty, - "several": empty, - "sew": empty, - "shade": empty, - "shadow": empty, - "shady": empty, - "shake": empty, - "shaker": empty, - "shaking": empty, - "shall": empty, - "shame": empty, - "shan't": empty, - "shape": empty, - "share": empty, - "sharp": empty, - "shave": empty, - "she": empty, - "she'd": empty, - "she'll": empty, - "she's": empty, - "shear": empty, - "shears": empty, - "shed": empty, - "sheep": empty, - "sheet": empty, - "shelf": empty, - "shell": empty, - "shepherd": empty, - "shine": empty, - "shining": empty, - "shiny": empty, - "ship": empty, - "shirt": empty, - "shock": empty, - "shoe": empty, - "shoemaker": empty, - "shone": empty, - "shook": empty, - "shoot": empty, - "shop": empty, - "shopping": empty, - "shore": empty, - "short": empty, - "shot": empty, - "should": empty, - "shoulder": empty, - "shouldn't": empty, - "shout": empty, - "shovel": empty, - "show": empty, - "shower": empty, - "shut": empty, - "shy": empty, - "sick": empty, - "sickness": empty, - "side": empty, - "sidewalk": empty, - "sideways": empty, - "sigh": empty, - "sight": empty, - "sign": empty, - "silence": empty, - "silent": empty, - "silk": empty, - "sill": empty, - "silly": empty, - "silver": empty, - "simple": empty, - "sin": empty, - "since": empty, - "sing": empty, - "singer": empty, - "single": empty, - "sink": empty, - "sip": empty, - "sir": empty, - "sis": empty, - "sissy": empty, - "sister": empty, - "sit": empty, - "sitting": empty, - "six": empty, - "sixteen": empty, - "sixth": empty, - "sixty": empty, - "size": empty, - "skate": empty, - "skater": empty, - "ski": empty, - "skin": empty, - "skip": empty, - "skirt": empty, - "sky": empty, - "slam": empty, - "slap": empty, - "slate": empty, - "slave": empty, - "sled": empty, - "sleep": empty, - "sleepy": empty, - "sleeve": empty, - "sleigh": empty, - "slept": empty, - "slice": empty, - "slid": empty, - "slide": empty, - "sling": empty, - "slip": empty, - "slipped": empty, - "slipper": empty, - "slippery": empty, - "slit": empty, - "slow": empty, - "slowly": empty, - "sly": empty, - "smack": empty, - "small": empty, - "smart": empty, - "smell": empty, - "smile": empty, - "smoke": empty, - "smooth": empty, - "snail": empty, - "snake": empty, - "snap": empty, - "snapping": empty, - "sneeze": empty, - "snow": empty, - "snowy": empty, - "snowball": empty, - "snowflake": empty, - "snuff": empty, - "snug": empty, - "so": empty, - "soak": empty, - "soap": empty, - "sob": empty, - "socks": empty, - "sod": empty, - "soda": empty, - "sofa": empty, - "soft": empty, - "soil": empty, - "sold": empty, - "soldier": empty, - "sole": empty, - "some": empty, - "somebody": empty, - "somehow": empty, - "someone": empty, - "something": empty, - "sometime": empty, - "sometimes": empty, - "somewhere": empty, - "son": empty, - "song": empty, - "soon": empty, - "sore": empty, - "sorrow": empty, - "sorry": empty, - "sort": empty, - "soul": empty, - "sound": empty, - "soup": empty, - "sour": empty, - "south": empty, - "southern": empty, - "space": empty, - "spade": empty, - "spank": empty, - "sparrow": empty, - "speak": empty, - "speaker": empty, - "spear": empty, - "speech": empty, - "speed": empty, - "spell": empty, - "spelling": empty, - "spend": empty, - "spent": empty, - "spider": empty, - "spike": empty, - "spill": empty, - "spin": empty, - "spinach": empty, - "spirit": empty, - "spit": empty, - "splash": empty, - "spoil": empty, - "spoke": empty, - "spook": empty, - "spoon": empty, - "sport": empty, - "spot": empty, - "spread": empty, - "spring": empty, - "springtime": empty, - "sprinkle": empty, - "square": empty, - "squash": empty, - "squeak": empty, - "squeeze": empty, - "squirrel": empty, - "stable": empty, - "stack": empty, - "stage": empty, - "stair": empty, - "stall": empty, - "stamp": empty, - "stand": empty, - "star": empty, - "stare": empty, - "start": empty, - "starve": empty, - "state": empty, - "station": empty, - "stay": empty, - "steak": empty, - "steal": empty, - "steam": empty, - "steamboat": empty, - "steamer": empty, - "steel": empty, - "steep": empty, - "steeple": empty, - "steer": empty, - "stem": empty, - "step": empty, - "stepping": empty, - "stick": empty, - "sticky": empty, - "stiff": empty, - "still": empty, - "stillness": empty, - "sting": empty, - "stir": empty, - "stitch": empty, - "stock": empty, - "stocking": empty, - "stole": empty, - "stone": empty, - "stood": empty, - "stool": empty, - "stoop": empty, - "stop": empty, - "stopped": empty, - "stopping": empty, - "store": empty, - "stork": empty, - "stories": empty, - "storm": empty, - "stormy": empty, - "story": empty, - "stove": empty, - "straight": empty, - "strange": empty, - "stranger": empty, - "strap": empty, - "straw": empty, - "strawberry": empty, - "stream": empty, - "street": empty, - "stretch": empty, - "string": empty, - "strip": empty, - "stripes": empty, - "strong": empty, - "stuck": empty, - "study": empty, - "stuff": empty, - "stump": empty, - "stung": empty, - "subject": empty, - "such": empty, - "suck": empty, - "sudden": empty, - "suffer": empty, - "sugar": empty, - "suit": empty, - "sum": empty, - "summer": empty, - "sun": empty, - "Sunday": empty, - "sunflower": empty, - "sung": empty, - "sunk": empty, - "sunlight": empty, - "sunny": empty, - "sunrise": empty, - "sunset": empty, - "sunshine": empty, - "supper": empty, - "suppose": empty, - "sure": empty, - "surely": empty, - "surface": empty, - "surprise": empty, - "swallow": empty, - "swam": empty, - "swamp": empty, - "swan": empty, - "swat": empty, - "swear": empty, - "sweat": empty, - "sweater": empty, - "sweep": empty, - "sweet": empty, - "sweetness": empty, - "sweetheart": empty, - "swell": empty, - "swept": empty, - "swift": empty, - "swim": empty, - "swimming": empty, - "swing": empty, - "switch": empty, - "sword": empty, - "swore": empty, - "table": empty, - "tablecloth": empty, - "tablespoon": empty, - "tablet": empty, - "tack": empty, - "tag": empty, - "tail": empty, - "tailor": empty, - "take": empty, - "taken": empty, - "taking": empty, - "tale": empty, - "talk": empty, - "talker": empty, - "tall": empty, - "tame": empty, - "tan": empty, - "tank": empty, - "tap": empty, - "tape": empty, - "tar": empty, - "tardy": empty, - "task": empty, - "taste": empty, - "taught": empty, - "tax": empty, - "tea": empty, - "teach": empty, - "teacher": empty, - "team": empty, - "tear": empty, - "tease": empty, - "teaspoon": empty, - "teeth": empty, - "telephone": empty, - "tell": empty, - "temper": empty, - "ten": empty, - "tennis": empty, - "tent": empty, - "term": empty, - "terrible": empty, - "test": empty, - "than": empty, - "thank": empty, - "thanks": empty, - "thankful": empty, - "Thanksgiving": empty, - "that": empty, - "that's": empty, - "the": empty, - "theater": empty, - "thee": empty, - "their": empty, - "them": empty, - "then": empty, - "there": empty, - "these": empty, - "they": empty, - "they'd": empty, - "they'll": empty, - "they're": empty, - "they've": empty, - "thick": empty, - "thief": empty, - "thimble": empty, - "thin": empty, - "thing": empty, - "think": empty, - "third": empty, - "thirsty": empty, - "thirteen": empty, - "thirty": empty, - "this": empty, - "thorn": empty, - "those": empty, - "though": empty, - "thought": empty, - "thousand": empty, - "thread": empty, - "three": empty, - "threw": empty, - "throat": empty, - "throne": empty, - "through": empty, - "throw": empty, - "thrown": empty, - "thumb": empty, - "thunder": empty, - "Thursday": empty, - "thy": empty, - "tick": empty, - "ticket": empty, - "tickle": empty, - "tie": empty, - "tiger": empty, - "tight": empty, - "till": empty, - "time": empty, - "tin": empty, - "tinkle": empty, - "tiny": empty, - "tip": empty, - "tiptoe": empty, - "tire": empty, - "tired": empty, - "title": empty, - "to": empty, - "toad": empty, - "toadstool": empty, - "toast": empty, - "tobacco": empty, - "today": empty, - "toe": empty, - "together": empty, - "toilet": empty, - "told": empty, - "tomato": empty, - "tomorrow": empty, - "ton": empty, - "tone": empty, - "tongue": empty, - "tonight": empty, - "too": empty, - "took": empty, - "tool": empty, - "toot": empty, - "tooth": empty, - "toothbrush": empty, - "toothpick": empty, - "top": empty, - "tore": empty, - "torn": empty, - "toss": empty, - "touch": empty, - "tow": empty, - "toward": empty, - "towards": empty, - "towel": empty, - "tower": empty, - "town": empty, - "toy": empty, - "trace": empty, - "track": empty, - "trade": empty, - "train": empty, - "tramp": empty, - "trap": empty, - "tray": empty, - "treasure": empty, - "treat": empty, - "tree": empty, - "trick": empty, - "tricycle": empty, - "tried": empty, - "trim": empty, - "trip": empty, - "trolley": empty, - "trouble": empty, - "truck": empty, - "true": empty, - "truly": empty, - "trunk": empty, - "trust": empty, - "truth": empty, - "try": empty, - "tub": empty, - "Tuesday": empty, - "tug": empty, - "tulip": empty, - "tumble": empty, - "tune": empty, - "tunnel": empty, - "turkey": empty, - "turn": empty, - "turtle": empty, - "twelve": empty, - "twenty": empty, - "twice": empty, - "twig": empty, - "twin": empty, - "two": empty, - "ugly": empty, - "umbrella": empty, - "uncle": empty, - "under": empty, - "understand": empty, - "underwear": empty, - "undress": empty, - "unfair": empty, - "unfinished": empty, - "unfold": empty, - "unfriendly": empty, - "unhappy": empty, - "unhurt": empty, - "uniform": empty, - "United": empty, - "States": empty, - "unkind": empty, - "unknown": empty, - "unless": empty, - "unpleasant": empty, - "until": empty, - "unwilling": empty, - "up": empty, - "upon": empty, - "upper": empty, - "upset": empty, - "upside": empty, - "upstairs": empty, - "uptown": empty, - "upward": empty, - "us": empty, - "use": empty, - "used": empty, - "useful": empty, - "valentine": empty, - "valley": empty, - "valuable": empty, - "value": empty, - "vase": empty, - "vegetable": empty, - "velvet": empty, - "very": empty, - "vessel": empty, - "victory": empty, - "view": empty, - "village": empty, - "vine": empty, - "violet": empty, - "visit": empty, - "visitor": empty, - "voice": empty, - "vote": empty, - "wag": empty, - "wagon": empty, - "waist": empty, - "wait": empty, - "wake": empty, - "waken": empty, - "walk": empty, - "wall": empty, - "walnut": empty, - "want": empty, - "war": empty, - "warm": empty, - "warn": empty, - "was": empty, - "wash": empty, - "washer": empty, - "washtub": empty, - "wasn't": empty, - "waste": empty, - "watch": empty, - "watchman": empty, - "water": empty, - "watermelon": empty, - "waterproof": empty, - "wave": empty, - "wax": empty, - "way": empty, - "wayside": empty, - "we": empty, - "weak": empty, - "weakness": empty, - "weaken": empty, - "wealth": empty, - "weapon": empty, - "wear": empty, - "weary": empty, - "weather": empty, - "weave": empty, - "web": empty, - "we'd": empty, - "wedding": empty, - "Wednesday": empty, - "wee": empty, - "weed": empty, - "week": empty, - "we'll": empty, - "weep": empty, - "weigh": empty, - "welcome": empty, - "well": empty, - "went": empty, - "were": empty, - "we're": empty, - "west": empty, - "western": empty, - "wet": empty, - "we've": empty, - "whale": empty, - "what": empty, - "what's": empty, - "wheat": empty, - "wheel": empty, - "when": empty, - "whenever": empty, - "where": empty, - "which": empty, - "while": empty, - "whip": empty, - "whipped": empty, - "whirl": empty, - "whisky": empty, - "whiskey": empty, - "whisper": empty, - "whistle": empty, - "white": empty, - "who": empty, - "who'd": empty, - "whole": empty, - "who'll": empty, - "whom": empty, - "who's": empty, - "whose": empty, - "why": empty, - "wicked": empty, - "wide": empty, - "wife": empty, - "wiggle": empty, - "wild": empty, - "wildcat": empty, - "will": empty, - "willing": empty, - "willow": empty, - "win": empty, - "wind": empty, - "windy": empty, - "windmill": empty, - "window": empty, - "wine": empty, - "wing": empty, - "wink": empty, - "winner": empty, - "winter": empty, - "wipe": empty, - "wire": empty, - "wise": empty, - "wish": empty, - "wit": empty, - "witch": empty, - "with": empty, - "without": empty, - "woke": empty, - "wolf": empty, - "woman": empty, - "women": empty, - "won": empty, - "wonder": empty, - "wonderful": empty, - "won't": empty, - "wood": empty, - "wooden": empty, - "woodpecker": empty, - "woods": empty, - "wool": empty, - "woolen": empty, - "word": empty, - "wore": empty, - "work": empty, - "worker": empty, - "workman": empty, - "world": empty, - "worm": empty, - "worn": empty, - "worry": empty, - "worse": empty, - "worst": empty, - "worth": empty, - "would": empty, - "wouldn't": empty, - "wound": empty, - "wove": empty, - "wrap": empty, - "wrapped": empty, - "wreck": empty, - "wren": empty, - "wring": empty, - "write": empty, - "writing": empty, - "written": empty, - "wrong": empty, - "wrote": empty, - "wrung": empty, - "yard": empty, - "yarn": empty, - "year": empty, - "yell": empty, - "yellow": empty, - "yes": empty, - "yesterday": empty, - "yet": empty, - "yolk": empty, - "yonder": empty, - "you": empty, - "you'd": empty, - "you'll": empty, - "young": empty, - "youngster": empty, - "your": empty, - "yours": empty, - "you're": empty, - "yourself": empty, - "yourselves": empty, -} diff --git a/summarize/easy_test.go b/summarize/easy_test.go deleted file mode 100644 index 9d274d7..0000000 --- a/summarize/easy_test.go +++ /dev/null @@ -1,23 +0,0 @@ -package summarize - -import ( - "encoding/json" - "path/filepath" - "testing" - - "github.com/jdkato/prose/internal/util" -) - -func BenchmarkEasyWordsLookupMap(b *testing.B) { - cases := util.ReadDataFile(filepath.Join(testdata, "syllables.json")) - tests := make(map[string]int) - util.CheckError(json.Unmarshal(cases, &tests)) - - for n := 0; n < b.N; n++ { - for word := range tests { - if _, ok := easyWords[word]; ok { - - } - } - } -} diff --git a/summarize/readability.go b/summarize/readability.go deleted file mode 100644 index 3ee351a..0000000 --- a/summarize/readability.go +++ /dev/null @@ -1,71 +0,0 @@ -package summarize - -import ( - "math" -) - -// FleschKincaid computes the Flesch–Kincaid grade level -// (https://en.wikipedia.org/wiki/Flesch%E2%80%93Kincaid_readability_tests). -func (d *Document) FleschKincaid() float64 { - x := 0.39 * d.NumWords / d.NumSentences - y := 11.8 * d.NumSyllables / d.NumWords - return x + y - 15.59 -} - -// FleschReadingEase computes the Flesch reading-ease score -// (https://en.wikipedia.org/wiki/Flesch%E2%80%93Kincaid_readability_tests). -func (d *Document) FleschReadingEase() float64 { - x := 1.015 * d.NumWords / d.NumSentences - y := 84.6 * d.NumSyllables / d.NumWords - return 206.835 - x - y -} - -// GunningFog computes the Gunning Fog index score -// (https://en.wikipedia.org/wiki/Gunning_fog_index). -func (d *Document) GunningFog() float64 { - x := d.NumWords / d.NumSentences - y := d.NumComplexWords / d.NumWords - return 0.4 * (x + 100.0*y) -} - -// LIX computes readability measure -// (https://en.wikipedia.org/wiki/Lix_(readability_test)) . -func (d *Document) LIX() float64 { - return (d.NumWords / d.NumSentences) + ((d.NumLongWords * 100) / d.NumWords) -} - -// SMOG computes the SMOG grade (https://en.wikipedia.org/wiki/SMOG). -func (d *Document) SMOG() float64 { - return 1.0430*math.Sqrt(d.NumPolysylWords*30.0/d.NumSentences) + 3.1291 -} - -// AutomatedReadability computes the automated readability index score -// (https://en.wikipedia.org/wiki/Automated_readability_index). -func (d *Document) AutomatedReadability() float64 { - x := 4.71 * (d.NumCharacters / d.NumWords) - y := 0.5 * (d.NumWords / d.NumSentences) - return x + y - 21.43 -} - -// ColemanLiau computes the Coleman–Liau index score -// (https://en.wikipedia.org/wiki/Coleman%E2%80%93Liau_index). -func (d *Document) ColemanLiau() float64 { - x := 0.0588 * (d.NumCharacters / d.NumWords) * 100 - y := 0.296 * (d.NumSentences / d.NumWords) * 100 - return x - y - 15.8 -} - -// DaleChall computes the Dale–Chall score -// (https://en.wikipedia.org/wiki/Dale%E2%80%93Chall_readability_formula). -func (d *Document) DaleChall() float64 { - easy := 0.0 - for word := range d.WordFrequency { - if _, ok := easyWords[word]; ok { - easy++ - } - } - hard := d.NumWords - easy - x := (hard / d.NumWords) * 100 - y := (d.NumWords / d.NumSentences) - return 0.1579*x + 0.0496*y -} diff --git a/summarize/readability_test.go b/summarize/readability_test.go deleted file mode 100644 index 863f64c..0000000 --- a/summarize/readability_test.go +++ /dev/null @@ -1,41 +0,0 @@ -package summarize - -import ( - "encoding/json" - "path/filepath" - "testing" - - "github.com/jdkato/prose/internal/util" - "github.com/stretchr/testify/assert" -) - -func TestReadability(t *testing.T) { - tests := make([]testCase, 0) - cases := util.ReadDataFile(filepath.Join(testdata, "summarize.json")) - - util.CheckError(json.Unmarshal(cases, &tests)) - for _, test := range tests { - d := NewDocument(test.Text) - a := d.Assess() - - assert.True(t, check(test.AutomatedReadability, a.AutomatedReadability)) - assert.True(t, check(test.ColemanLiau, a.ColemanLiau)) - assert.True(t, check(test.FleschKincaid, a.FleschKincaid)) - assert.True(t, check(test.GunningFog, a.GunningFog)) - assert.True(t, check(test.SMOG, a.SMOG)) - assert.True(t, check(test.MeanGrade, a.MeanGradeLevel)) - assert.True(t, check(test.StdDevGrade, a.StdDevGradeLevel)) - assert.True(t, check(test.DaleChall, a.DaleChall)) - assert.True(t, check(test.ReadingEase, a.ReadingEase)) - assert.True(t, check(test.LIX, a.LIX)) - } -} - -func BenchmarkReadability(b *testing.B) { - in := util.ReadDataFile(filepath.Join(testdata, "sherlock.txt")) - - d := NewDocument(string(in)) - for n := 0; n < b.N; n++ { - d.Assess() - } -} diff --git a/summarize/stop.go b/summarize/stop.go deleted file mode 100644 index dd30560..0000000 --- a/summarize/stop.go +++ /dev/null @@ -1,320 +0,0 @@ -package summarize - -var stopWords = map[string]struct{}{ - "a": empty, - "about": empty, - "above": empty, - "across": empty, - "after": empty, - "afterwards": empty, - "again": empty, - "against": empty, - "all": empty, - "almost": empty, - "alone": empty, - "along": empty, - "already": empty, - "also": empty, - "although": empty, - "always": empty, - "am": empty, - "among": empty, - "amongst": empty, - "amount": empty, - "an": empty, - "and": empty, - "another": empty, - "any": empty, - "anyhow": empty, - "anyone": empty, - "anything": empty, - "anyway": empty, - "anywhere": empty, - "are": empty, - "around": empty, - "as": empty, - "at": empty, - "back": empty, - "be": empty, - "became": empty, - "because": empty, - "become": empty, - "becomes": empty, - "becoming": empty, - "been": empty, - "before": empty, - "beforehand": empty, - "behind": empty, - "being": empty, - "below": empty, - "beside": empty, - "besides": empty, - "between": empty, - "beyond": empty, - "bill": empty, - "both": empty, - "bottom": empty, - "but": empty, - "by": empty, - "call": empty, - "can": empty, - "cannot": empty, - "cant": empty, - "co": empty, - "con": empty, - "could": empty, - "couldnt": empty, - "cry": empty, - "de": empty, - "describe": empty, - "detail": empty, - "do": empty, - "done": empty, - "down": empty, - "due": empty, - "during": empty, - "each": empty, - "eg": empty, - "eight": empty, - "either": empty, - "eleven": empty, - "else": empty, - "elsewhere": empty, - "empty": empty, - "enough": empty, - "etc": empty, - "even": empty, - "ever": empty, - "every": empty, - "everyone": empty, - "everything": empty, - "everywhere": empty, - "except": empty, - "few": empty, - "fifteen": empty, - "fify": empty, - "fill": empty, - "find": empty, - "fire": empty, - "first": empty, - "five": empty, - "for": empty, - "former": empty, - "formerly": empty, - "forty": empty, - "found": empty, - "four": empty, - "from": empty, - "front": empty, - "full": empty, - "further": empty, - "get": empty, - "give": empty, - "go": empty, - "had": empty, - "has": empty, - "hasnt": empty, - "have": empty, - "he": empty, - "hence": empty, - "her": empty, - "here": empty, - "hereafter": empty, - "hereby": empty, - "herein": empty, - "hereupon": empty, - "hers": empty, - "herself": empty, - "him": empty, - "himself": empty, - "his": empty, - "how": empty, - "however": empty, - "hundred": empty, - "ie": empty, - "if": empty, - "in": empty, - "inc": empty, - "indeed": empty, - "interest": empty, - "into": empty, - "is": empty, - "it": empty, - "its": empty, - "itself": empty, - "keep": empty, - "last": empty, - "latter": empty, - "latterly": empty, - "least": empty, - "less": empty, - "ltd": empty, - "made": empty, - "many": empty, - "may": empty, - "me": empty, - "meanwhile": empty, - "might": empty, - "mill": empty, - "mine": empty, - "more": empty, - "moreover": empty, - "most": empty, - "mostly": empty, - "move": empty, - "much": empty, - "must": empty, - "my": empty, - "myself": empty, - "name": empty, - "namely": empty, - "neither": empty, - "never": empty, - "nevertheless": empty, - "next": empty, - "nine": empty, - "no": empty, - "nobody": empty, - "none": empty, - "noone": empty, - "nor": empty, - "not": empty, - "nothing": empty, - "now": empty, - "nowhere": empty, - "of": empty, - "off": empty, - "often": empty, - "on": empty, - "once": empty, - "one": empty, - "only": empty, - "onto": empty, - "or": empty, - "other": empty, - "others": empty, - "otherwise": empty, - "our": empty, - "ours": empty, - "ourselves": empty, - "out": empty, - "over": empty, - "own": empty, - "part": empty, - "per": empty, - "perhaps": empty, - "please": empty, - "put": empty, - "rather": empty, - "re": empty, - "same": empty, - "see": empty, - "seem": empty, - "seemed": empty, - "seeming": empty, - "seems": empty, - "serious": empty, - "several": empty, - "she": empty, - "should": empty, - "show": empty, - "side": empty, - "since": empty, - "sincere": empty, - "six": empty, - "sixty": empty, - "so": empty, - "some": empty, - "somehow": empty, - "someone": empty, - "something": empty, - "sometime": empty, - "sometimes": empty, - "somewhere": empty, - "still": empty, - "such": empty, - "system": empty, - "take": empty, - "ten": empty, - "than": empty, - "that": empty, - "the": empty, - "their": empty, - "them": empty, - "themselves": empty, - "then": empty, - "thence": empty, - "there": empty, - "thereafter": empty, - "thereby": empty, - "therefore": empty, - "therein": empty, - "thereupon": empty, - "these": empty, - "they": empty, - "thickv": empty, - "thin": empty, - "third": empty, - "this": empty, - "those": empty, - "though": empty, - "three": empty, - "through": empty, - "throughout": empty, - "thru": empty, - "thus": empty, - "to": empty, - "together": empty, - "too": empty, - "top": empty, - "toward": empty, - "towards": empty, - "twelve": empty, - "twenty": empty, - "two": empty, - "un": empty, - "under": empty, - "until": empty, - "up": empty, - "upon": empty, - "us": empty, - "very": empty, - "via": empty, - "was": empty, - "we": empty, - "well": empty, - "were": empty, - "what": empty, - "whatever": empty, - "when": empty, - "whence": empty, - "whenever": empty, - "where": empty, - "whereafter": empty, - "whereas": empty, - "whereby": empty, - "wherein": empty, - "whereupon": empty, - "wherever": empty, - "whether": empty, - "which": empty, - "while": empty, - "whither": empty, - "who": empty, - "whoever": empty, - "whole": empty, - "whom": empty, - "whose": empty, - "why": empty, - "will": empty, - "with": empty, - "within": empty, - "without": empty, - "would": empty, - "yet": empty, - "you": empty, - "your": empty, - "yours": empty, - "yourself": empty, - "yourselves": empty, -} diff --git a/summarize/summarize.go b/summarize/summarize.go deleted file mode 100644 index 9db1f59..0000000 --- a/summarize/summarize.go +++ /dev/null @@ -1,233 +0,0 @@ -/* -Package summarize implements utilities for computing readability scores, usage statistics, and TL;DR summaries of text. -*/ -package summarize - -import ( - "sort" - "strings" - "unicode" - - "github.com/jdkato/prose/internal/util" - "github.com/jdkato/prose/tokenize" - - "github.com/montanaflynn/stats" -) - -// A Word represents a single word in a Document. -type Word struct { - Text string // the actual text - Syllables int // the number of syllables -} - -// A Sentence represents a single sentence in a Document. -type Sentence struct { - Text string // the actual text - Length int // the number of words - Words []Word // the words in this sentence - Paragraph int -} - -// A RankedParagraph is a paragraph ranked by its number of keywords. -type RankedParagraph struct { - Sentences []Sentence - Position int // the zero-based position within a Document - Rank int -} - -// A Document represents a collection of text to be analyzed. -// -// A Document's calculations depend on its word and sentence tokenizers. You -// can use the defaults by invoking NewDocument, choose another implemention -// from the tokenize package, or use your own (as long as it implements the -// ProseTokenizer interface). For example, -// -// d := Document{Content: ..., WordTokenizer: ..., SentenceTokenizer: ...} -// d.Initialize() -type Document struct { - Content string // Actual text - NumCharacters float64 // Number of Characters - NumComplexWords float64 // PolysylWords without common suffixes - NumParagraphs float64 // Number of paragraphs - NumPolysylWords float64 // Number of words with > 2 syllables - NumSentences float64 // Number of sentences - NumSyllables float64 // Number of syllables - NumWords float64 // Number of words - NumLongWords float64 // Number of long words - Sentences []Sentence // the Document's sentences - WordFrequency map[string]int // [word]frequency - - SentenceTokenizer tokenize.ProseTokenizer - WordTokenizer tokenize.ProseTokenizer -} - -// An Assessment provides comprehensive access to a Document's metrics. -type Assessment struct { - // assessments returning an estimated grade level - AutomatedReadability float64 - ColemanLiau float64 - FleschKincaid float64 - GunningFog float64 - SMOG float64 - LIX float64 - - // mean & standard deviation of the above estimated grade levels - MeanGradeLevel float64 - StdDevGradeLevel float64 - - // assessments returning non-grade numerical scores - DaleChall float64 - ReadingEase float64 -} - -// NewDocument is a Document constructor that takes a string as an argument. It -// then calculates the data necessary for computing readability and usage -// statistics. -// -// This is a convenience wrapper around the Document initialization process -// that defaults to using a WordBoundaryTokenizer and a PunktSentenceTokenizer -// as its word and sentence tokenizers, respectively. -func NewDocument(text string) *Document { - wTok := tokenize.NewWordBoundaryTokenizer() - sTok := tokenize.NewPunktSentenceTokenizer() - doc := Document{Content: text, WordTokenizer: wTok, SentenceTokenizer: sTok} - doc.Initialize() - return &doc -} - -// Initialize calculates the data necessary for computing readability and usage -// statistics. -func (d *Document) Initialize() { - d.WordFrequency = make(map[string]int) - for i, paragraph := range strings.Split(d.Content, "\n\n") { - for _, s := range d.SentenceTokenizer.Tokenize(paragraph) { - wordCount := d.NumWords - d.NumSentences++ - words := []Word{} - for _, word := range d.WordTokenizer.Tokenize(s) { - word = strings.TrimSpace(word) - if len(word) == 0 { - continue - } - d.NumCharacters += countChars(word) - if _, found := d.WordFrequency[word]; found { - d.WordFrequency[word]++ - } else { - d.WordFrequency[word] = 1 - } - if len(word) > 6 { - d.NumLongWords++ - } - syllables := Syllables(word) - words = append(words, Word{Text: word, Syllables: syllables}) - d.NumSyllables += float64(syllables) - if syllables > 2 { - d.NumPolysylWords++ - } - if isComplex(word, syllables) { - d.NumComplexWords++ - } - d.NumWords++ - } - d.Sentences = append(d.Sentences, Sentence{ - Text: strings.TrimSpace(s), - Length: int(d.NumWords - wordCount), - Words: words, - Paragraph: i}) - } - d.NumParagraphs++ - } -} - -// Assess returns an Assessment for the Document d. -func (d *Document) Assess() *Assessment { - a := Assessment{ - FleschKincaid: d.FleschKincaid(), ReadingEase: d.FleschReadingEase(), - GunningFog: d.GunningFog(), SMOG: d.SMOG(), DaleChall: d.DaleChall(), - AutomatedReadability: d.AutomatedReadability(), ColemanLiau: d.ColemanLiau(), - LIX: d.LIX()} - - gradeScores := []float64{ - a.FleschKincaid, a.AutomatedReadability, a.GunningFog, a.SMOG, - a.ColemanLiau} - - mean, merr := stats.Mean(gradeScores) - stdDev, serr := stats.StandardDeviation(gradeScores) - if merr != nil || serr != nil { - a.MeanGradeLevel = 0.0 - a.StdDevGradeLevel = 0.0 - } else { - a.MeanGradeLevel = mean - a.StdDevGradeLevel = stdDev - } - - return &a -} - -// Summary returns a Document's n highest ranked paragraphs according to -// keyword frequency. -func (d *Document) Summary(n int) []RankedParagraph { - rankings := []RankedParagraph{} - scores := d.Keywords() - for i := 0; i < int(d.NumParagraphs); i++ { - p := RankedParagraph{Position: i} - rank := 0 - size := 0 - for _, s := range d.Sentences { - if s.Paragraph == i { - size += s.Length - for _, w := range s.Words { - if score, found := scores[w.Text]; found { - rank += score - } - } - p.Sentences = append(p.Sentences, s) - } - } - // Favor longer paragraphs, as they tend to be more informational. - p.Rank = (rank * size) - rankings = append(rankings, p) - } - - // Sort by raking: - sort.Sort(byRank(rankings)) - - // Take the top-n paragraphs: - size := len(rankings) - if size > n { - rankings = rankings[size-n:] - } - - // Sort by chronological position: - sort.Sort(byIndex(rankings)) - return rankings -} - -type byRank []RankedParagraph - -func (s byRank) Len() int { return len(s) } -func (s byRank) Swap(i, j int) { s[i], s[j] = s[j], s[i] } -func (s byRank) Less(i, j int) bool { return s[i].Rank < s[j].Rank } - -type byIndex []RankedParagraph - -func (s byIndex) Len() int { return len(s) } -func (s byIndex) Swap(i, j int) { s[i], s[j] = s[j], s[i] } -func (s byIndex) Less(i, j int) bool { return s[i].Position < s[j].Position } - -func isComplex(word string, syllables int) bool { - if util.HasAnySuffix(word, []string{"es", "ed", "ing"}) { - syllables-- - } - return syllables > 2 -} - -func countChars(word string) float64 { - count := 0 - for _, c := range word { - if unicode.IsLetter(c) || unicode.IsNumber(c) { - count++ - } - } - return float64(count) -} diff --git a/summarize/summarize_fuzz.go b/summarize/summarize_fuzz.go deleted file mode 100644 index f086dce..0000000 --- a/summarize/summarize_fuzz.go +++ /dev/null @@ -1,16 +0,0 @@ -// +build gofuzz - -package summarize - -func Fuzz(data []byte) int { - d := NewDocument(string(data)) - - d.AutomatedReadability() - d.ColemanLiau() - d.DaleChall() - d.FleschKincaid() - d.FleschReadingEase() - d.GunningFog() - - return 0 -} diff --git a/summarize/summarize_test.go b/summarize/summarize_test.go deleted file mode 100644 index e9f4e14..0000000 --- a/summarize/summarize_test.go +++ /dev/null @@ -1,65 +0,0 @@ -package summarize - -import ( - "encoding/json" - "fmt" - "path/filepath" - "testing" - - "github.com/jdkato/prose/internal/util" - "github.com/stretchr/testify/assert" -) - -var testdata = filepath.Join("..", "testdata") - -func check(expected, observed float64) bool { - return fmt.Sprintf("%0.2f", expected) == fmt.Sprintf("%0.2f", observed) -} - -type testCase struct { - Text string - Sentences float64 - Words float64 - PolyWords float64 - Characters float64 - - AutomatedReadability float64 - ColemanLiau float64 - FleschKincaid float64 - GunningFog float64 - SMOG float64 - LIX float64 - - MeanGrade float64 - StdDevGrade float64 - - DaleChall float64 - ReadingEase float64 -} - -func TestSummarizePrep(t *testing.T) { - tests := make([]testCase, 0) - cases := util.ReadDataFile(filepath.Join(testdata, "summarize.json")) - - util.CheckError(json.Unmarshal(cases, &tests)) - for _, test := range tests { - d := NewDocument(test.Text) - assert.Equal(t, test.Sentences, d.NumSentences) - assert.Equal(t, test.Words, d.NumWords) - assert.Equal(t, test.Characters, d.NumCharacters) - } -} - -func TestSummarize(t *testing.T) { - data := util.ReadDataFile(filepath.Join(testdata, "article.txt")) - d := NewDocument(string(data)) - - text := "" - for _, paragraph := range d.Summary(7) { - for _, s := range paragraph.Sentences { - text += (s.Text + " ") - } - text += "\n\n" - } - fmt.Print(text) -} diff --git a/summarize/syllables.go b/summarize/syllables.go deleted file mode 100644 index bc9d5d4..0000000 --- a/summarize/syllables.go +++ /dev/null @@ -1,338 +0,0 @@ -package summarize - -import ( - "regexp" - "strings" - "unicode/utf8" -) - -type clearFunc func(word string, suffixes []string) string - -// Syllables returns the number of syllables in the string word. -// -// NOTE: This function expects a word (not raw text) as input. -func Syllables(word string) int { - // See if we can leave early ... - length := utf8.RuneCountInString(word) - if length < 1 { - return 0 - } else if length < 3 { - return 1 - } - - // See if this is a known cornercase ... - word = strings.ToLower(word) - if syllables, ok := cornercases[word]; ok { - return syllables - } - text, count := clean(word) - - // Count multiple vowels - count += len(vowels.FindAllString(text, -1)) - - count -= len(monosyllabicOne.FindAllString(text, -1)) - count -= len(monosyllabicTwo.FindAllString(text, -1)) - - count += len(doubleSyllabicOne.FindAllString(text, -1)) - count += len(doubleSyllabicTwo.FindAllString(text, -1)) - count += len(doubleSyllabicThree.FindAllString(text, -1)) - count += len(doubleSyllabicFour.FindAllString(text, -1)) - - if count < 1 { - return 1 - } - return count -} - -func clean(word string) (string, int) { - var prefix, suffix int - word, prefix = clearPart(word, incrementToPrefix, trimAnyPrefix) - word, suffix = clearPart(word, incrementToSuffix, trimAnySuffix) - return word, prefix + suffix -} - -func clearPart(s string, options [][]string, clearer clearFunc) (string, int) { - old := s - pos := len(options) - for i, trim := range options { - s = clearer(s, trim) - if s != old { - return s, (pos - i) - } - } - return s, 0 -} - -func trimAnySuffix(word string, suffixes []string) string { - for _, suffix := range suffixes { - if strings.HasSuffix(word, suffix) { - return strings.TrimSuffix(word, suffix) - } - } - return word -} - -func trimAnyPrefix(word string, prefixes []string) string { - for _, prefix := range prefixes { - if strings.HasPrefix(word, prefix) { - return strings.TrimPrefix(word, prefix) - } - } - return word -} - -var cornercases = map[string]int{ - "abalone": 4, - "abare": 3, - "abed": 2, - "abruzzese": 4, - "abbruzzese": 4, - "aborigine": 5, - "aborigines": 5, - "acreage": 3, - "adame": 3, - "adieu": 2, - "adobe": 3, - "anemone": 4, - "apache": 3, - "aphrodite": 4, - "apostrophe": 4, - "ariadne": 4, - "cafe": 2, - "cafes": 2, - "calliope": 4, - "catastrophe": 4, - "chile": 2, - "chloe": 2, - "circe": 2, - "coyote": 3, - "epitome": 4, - "facsimile": 4, - "forever": 3, - "gethsemane": 4, - "guacamole": 4, - "hyperbole": 4, - "jesse": 2, - "jukebox": 2, - "karate": 3, - "machete": 3, - "maybe": 2, - "people": 2, - "recipe": 3, - "sesame": 3, - "shoreline": 2, - "simile": 3, - "syncope": 3, - "tamale": 3, - "yosemite": 4, - "daphne": 2, - "eurydice": 4, - "euterpe": 3, - "hermione": 4, - "penelope": 4, - "persephone": 4, - "phoebe": 2, - "zoe": 2, -} - -var monosyllabicOne = regexp.MustCompile("cia(l|$)|" + - "tia|" + - "cius|" + - "cious|" + - "[^aeiou]giu|" + - "[aeiouy][^aeiouy]ion|" + - "iou|" + - "sia$|" + - "eous$|" + - "[oa]gue$|" + - ".[^aeiuoycgltdb]{2,}ed$|" + - ".ely$|" + - "^jua|" + - "uai|" + - "eau|" + - "^busi$|" + - "(" + - "[aeiouy]" + - "(" + - "b|" + - "c|" + - "ch|" + - "dg|" + - "f|" + - "g|" + - "gh|" + - "gn|" + - "k|" + - "l|" + - "lch|" + - "ll|" + - "lv|" + - "m|" + - "mm|" + - "n|" + - "nc|" + - "ng|" + - "nch|" + - "nn|" + - "p|" + - "r|" + - "rc|" + - "rn|" + - "rs|" + - "rv|" + - "s|" + - "sc|" + - "sk|" + - "sl|" + - "squ|" + - "ss|" + - "th|" + - "v|" + - "y|" + - "z" + - ")" + - "ed$" + - ")|" + - "(" + - "[aeiouy]" + - "(" + - "b|" + - "ch|" + - "d|" + - "f|" + - "gh|" + - "gn|" + - "k|" + - "l|" + - "lch|" + - "ll|" + - "lv|" + - "m|" + - "mm|" + - "n|" + - "nch|" + - "nn|" + - "p|" + - "r|" + - "rn|" + - "rs|" + - "rv|" + - "s|" + - "sc|" + - "sk|" + - "sl|" + - "squ|" + - "ss|" + - "st|" + - "t|" + - "th|" + - "v|" + - "y" + - ")" + - "es$" + - ")", -) -var monosyllabicTwo = regexp.MustCompile("[aeiouy]" + - "(" + - "b|" + - "c|" + - "ch|" + - "d|" + - "dg|" + - "f|" + - "g|" + - "gh|" + - "gn|" + - "k|" + - "l|" + - "ll|" + - "lv|" + - "m|" + - "mm|" + - "n|" + - "nc|" + - "ng|" + - "nn|" + - "p|" + - "r|" + - "rc|" + - "rn|" + - "rs|" + - "rv|" + - "s|" + - "sc|" + - "sk|" + - "sl|" + - "squ|" + - "ss|" + - "st|" + - "t|" + - "th|" + - "v|" + - "y|" + - "z" + - ")" + - "e$", -) -var doubleSyllabicOne = regexp.MustCompile("(?:" + - "[^aeiouy]ie" + - "(" + - "r|" + - "st|" + - "t" + - ")|" + - "[aeiouym]bl|" + - "eo|" + - "ism|" + - "asm|" + - "thm|" + - "dnt|" + - "uity|" + - "dea|" + - "gean|" + - "oa|" + - "ua|" + - "eings?|" + - "[aeiouy]sh?e[rsd]" + - ")$") - -var doubleSyllabicTwo = regexp.MustCompile( - "[^gq]ua[^auieo]|[aeiou]{3}|^(ia|mc|coa[dglx].)") - -var doubleSyllabicThree = regexp.MustCompile( - "[^aeiou]y[ae]|" + - "[^l]lien|" + - "riet|" + - "dien|" + - "iu|" + - "io|" + - "ii|" + - "uen|" + - "real|" + - "iell|" + - "eo[^aeiou]|" + - "[aeiou]y[aeiou]", -) -var doubleSyllabicFour = regexp.MustCompile( - "[^s]ia", -) -var vowels = regexp.MustCompile( - "[aeiouy]+", -) -var incrementToPrefix = [][]string{ - { - "above", "anti", "ante", "counter", "hyper", "afore", "agri", "infra", - "intra", "inter", "over", "semi", "ultra", "under", "extra", "dia", - "micro", "mega", "kilo", "pico", "nano", "macro"}, - { - "un", "fore", "ware", "none", "non", "out", "post", "sub", "pre", - "pro", "dis", "side"}, -} -var incrementToSuffix = [][]string{ - {"ology", "ologist", "onomy", "onomist"}, - {"fully", "berry", "woman", "women"}, - { - "ly", "less", "some", "ful", "er", "ers", "ness", "cian", "cians", - "ment", "ments", "ette", "ettes", "ville", "villes", "ships", "ship", - "side", "sides", "port", "ports", "shire", "shires", "tion", "tioned"}, -} diff --git a/summarize/syllables_test.go b/summarize/syllables_test.go deleted file mode 100644 index 18061c6..0000000 --- a/summarize/syllables_test.go +++ /dev/null @@ -1,92 +0,0 @@ -package summarize - -import ( - "bufio" - "encoding/json" - "os" - "path/filepath" - "testing" - - "github.com/jdkato/prose/internal/util" - "github.com/montanaflynn/stats" - "github.com/stretchr/testify/assert" -) - -func TestSyllables(t *testing.T) { - cases := util.ReadDataFile(filepath.Join(testdata, "syllables.json")) - tests := make(map[string]int) - util.CheckError(json.Unmarshal(cases, &tests)) - - for word, count := range tests { - assert.Equal(t, count, Syllables(word), word) - } - - total := 9462.0 - right := 0.0 - p := filepath.Join(testdata, "1-syllable-words.txt") - right += testNSyllables(t, p, 1) - - p = filepath.Join(testdata, "2-syllable-words.txt") - right += testNSyllables(t, p, 2) - - p = filepath.Join(testdata, "3-syllable-words.txt") - right += testNSyllables(t, p, 3) - - p = filepath.Join(testdata, "4-syllable-words.txt") - right += testNSyllables(t, p, 4) - - p = filepath.Join(testdata, "5-syllable-words.txt") - right += testNSyllables(t, p, 5) - - p = filepath.Join(testdata, "6-syllable-words.txt") - right += testNSyllables(t, p, 6) - - p = filepath.Join(testdata, "7-syllable-words.txt") - right += testNSyllables(t, p, 7) - - ratio, _ := stats.Round(right/total, 2) - assert.True(t, ratio >= 0.93, "Less than 93% accurate on NSyllables!") -} - -func testNSyllables(t *testing.T, fpath string, n int) float64 { - file, err := os.Open(fpath) - util.CheckError(err) - - right := 0.0 - scanner := bufio.NewScanner(file) - for scanner.Scan() { - word := scanner.Text() - if n == Syllables(word) { - right++ - } - } - - util.CheckError(scanner.Err()) - util.CheckError(file.Close()) - - return right -} - -func BenchmarkSyllables(b *testing.B) { - cases := util.ReadDataFile(filepath.Join(testdata, "syllables.json")) - tests := make(map[string]int) - util.CheckError(json.Unmarshal(cases, &tests)) - - for n := 0; n < b.N; n++ { - for word := range tests { - Syllables(word) - } - } -} - -func BenchmarkSyllablesIn(b *testing.B) { - cases := util.ReadDataFile(filepath.Join(testdata, "syllables.json")) - tests := make(map[string]int) - util.CheckError(json.Unmarshal(cases, &tests)) - - for n := 0; n < b.N; n++ { - for word := range tests { - Syllables(word) - } - } -} diff --git a/summarize/usage.go b/summarize/usage.go deleted file mode 100644 index 5220d76..0000000 --- a/summarize/usage.go +++ /dev/null @@ -1,44 +0,0 @@ -package summarize - -import ( - "strings" - - "github.com/montanaflynn/stats" -) - -// WordDensity returns a map of each word and its density. -func (d *Document) WordDensity() map[string]float64 { - density := make(map[string]float64) - for word, freq := range d.WordFrequency { - val, _ := stats.Round(float64(freq)/d.NumWords, 3) - density[word] = val - } - return density -} - -// Keywords returns a Document's words in the form -// -// map[word]count -// -// omitting stop words and normalizing case. -func (d *Document) Keywords() map[string]int { - scores := map[string]int{} - for word, freq := range d.WordFrequency { - normalized := strings.ToLower(word) - if _, found := stopWords[normalized]; found { - continue - } - if _, found := scores[normalized]; found { - scores[normalized] += freq - } else { - scores[normalized] = freq - } - } - return scores -} - -// MeanWordLength returns the mean number of characters per word. -func (d *Document) MeanWordLength() float64 { - val, _ := stats.Round(d.NumCharacters/d.NumWords, 3) - return val -} diff --git a/summarize/usage_test.go b/summarize/usage_test.go deleted file mode 100644 index 55be798..0000000 --- a/summarize/usage_test.go +++ /dev/null @@ -1,24 +0,0 @@ -package summarize - -import ( - "testing" - - "github.com/stretchr/testify/assert" -) - -var dmap = map[string]float64{ - "and": 0.047, "source": 0.023, "rules": 0.023, "comments": 0.023, "natural": 0.023, - "markup": 0.023, "customization": 0.023, "language": 0.023, "Vale": 0.047, - "code": 0.023, "it": 0.023, "text": 0.023, "possible": 0.023, "reStructuredText": 0.023, - "all": 0.023, "make": 0.023, "supports": 0.023, "plain": 0.023, "a": 0.047, - "one": 0.023, "strives": 0.023, "doesn't": 0.023, "size": 0.023, "fits": 0.023, - "of": 0.023, "attempt": 0.023, "AsciiDoc": 0.023, "offer": 0.023, "HTML": 0.023, - "Markdown": 0.023, "collection": 0.023, "as": 0.047, "that": 0.023, "linter": 0.023, - "easy": 0.023, "to": 0.047, "instead": 0.023, "is": 0.023} - -func TestUsage(t *testing.T) { - text := "Vale is a natural language linter that supports plain text, markup (Markdown, reStructuredText, AsciiDoc, and HTML), and source code comments. Vale doesn't attempt to offer a one-size-fits-all collection of rules—instead, it strives to make customization as easy as possible." - d := NewDocument(text) - assert.Equal(t, dmap, d.WordDensity()) - assert.Equal(t, 5.163, d.MeanWordLength()) -} diff --git a/tag/aptag.go b/tag.go similarity index 55% rename from tag/aptag.go rename to tag.go index dcd6841..d1fb6d8 100644 --- a/tag/aptag.go +++ b/tag.go @@ -18,139 +18,94 @@ // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. -package tag +package prose import ( + "math" "regexp" "strconv" "strings" - "github.com/jdkato/prose/internal/model" - "github.com/jdkato/prose/internal/util" - "github.com/montanaflynn/stats" - "github.com/shogo82148/go-shuffle" + "github.com/mingrammer/commonregex" ) +// TupleSlice is a slice of tuples in the form (words, tags). +type TupleSlice [][][]string + +// Len returns the length of a Tuple. +func (t TupleSlice) Len() int { return len(t) } + +// Swap switches the ith and jth elements in a Tuple. +func (t TupleSlice) Swap(i, j int) { t[i], t[j] = t[j], t[i] } + +// ReadTagged converts pre-tagged input into a TupleSlice suitable for training. +func ReadTagged(text, sep string) TupleSlice { + lines := strings.Split(text, "\n") + length := len(lines) + t := make(TupleSlice, length) + for i, sent := range lines { + set := strings.Split(sent, " ") + length = len(set) + tokens := make([]string, length) + tags := make([]string, length) + for j, token := range set { + parts := strings.Split(token, sep) + tokens[j] = parts[0] + tags[j] = parts[1] + } + t[i] = [][]string{tokens, tags} + } + return t +} + var none = regexp.MustCompile(`^(?:0|\*[\w?]\*|\*\-\d{1,3}|\*[A-Z]+\*\-\d{1,3}|\*)$`) var keep = regexp.MustCompile(`^\-[A-Z]{3}\-$`) -// AveragedPerceptron is a Averaged Perceptron classifier. -type AveragedPerceptron struct { - classes []string - instances float64 - stamps map[string]float64 - tagMap map[string]string - totals map[string]float64 - weights map[string]map[string]float64 +// averagedPerceptron is a Averaged Perceptron classifier. +type averagedPerceptron struct { + classes []string + stamps map[string]float64 + totals map[string]float64 + tagMap map[string]string + weights map[string]map[string]float64 + + // TODO: Training + // + // instances float64 } -// NewAveragedPerceptron creates a new AveragedPerceptron model. -func NewAveragedPerceptron(weights map[string]map[string]float64, - tags map[string]string, classes []string) *AveragedPerceptron { - return &AveragedPerceptron{ +// newAveragedPerceptron creates a new AveragedPerceptron model. +func newAveragedPerceptron(weights map[string]map[string]float64, + tags map[string]string, classes []string) *averagedPerceptron { + return &averagedPerceptron{ totals: make(map[string]float64), stamps: make(map[string]float64), classes: classes, tagMap: tags, weights: weights} } -// PerceptronTagger is a port of Textblob's "fast and accurate" POS tagger. -// See https://github.com/sloria/textblob-aptagger for details. -type PerceptronTagger struct { - tagMap map[string]string - model *AveragedPerceptron -} - -// NewPerceptronTagger creates a new PerceptronTagger and loads the built-in -// AveragedPerceptron model. -func NewPerceptronTagger() *PerceptronTagger { - var wts map[string]map[string]float64 - var tags map[string]string - var classes []string - - dec := model.GetAsset("classes.gob") - util.CheckError(dec.Decode(&classes)) - - dec = model.GetAsset("tags.gob") - util.CheckError(dec.Decode(&tags)) - - dec = model.GetAsset("weights.gob") - util.CheckError(dec.Decode(&wts)) - - return &PerceptronTagger{model: NewAveragedPerceptron(wts, tags, classes)} -} - -// Weights returns the model's weights in the form -// -// { -// "i-1 suffix ity": { -// "MD": -0.816, -// "VB": -0.695, -// ... -// } -// ... -// } -func (pt *PerceptronTagger) Weights() map[string]map[string]float64 { - return pt.model.weights -} - -// Classes returns the model's classes in the form -// -// ["EX", "NNPS", "WP$", ...] -func (pt *PerceptronTagger) Classes() []string { - return pt.model.classes -} - -// TagMap returns the model's classes in the form -// -// { -// "four": "CD", -// "facilities": "NNS", -// ... -// } -func (pt *PerceptronTagger) TagMap() map[string]string { - return pt.model.tagMap -} - -// NewTrainedPerceptronTagger creates a new PerceptronTagger using the given -// model. -func NewTrainedPerceptronTagger(model *AveragedPerceptron) *PerceptronTagger { - return &PerceptronTagger{model: model} -} - -// Tag takes a slice of words and returns a slice of tagged tokens. -func (pt *PerceptronTagger) Tag(words []string) []Token { - var tokens []Token - var clean []string - var tag string - var found bool - - p1, p2 := "-START-", "-START2-" - context := []string{p1, p2} - for _, w := range words { - if w == "" { - continue +/* TODO: Training API + +"github.com/shogo82148/go-shuffle" + +// marshal saves the model to disk. +func (m *averagedPerceptron) marshal(path string) error { + folder := filepath.Join(path, "AveragedPerceptron") + err := os.Mkdir(folder, os.ModePerm) + for i, entry := range []string{"weights", "tags", "classes"} { + component, _ := os.Create(filepath.Join(folder, entry+".gob")) + encoder := gob.NewEncoder(component) + if i == 0 { + checkError(encoder.Encode(m.weights)) + } else if i == 1 { + checkError(encoder.Encode(m.tagMap)) + } else { + checkError(encoder.Encode(m.classes)) } - context = append(context, normalize(w)) - clean = append(clean, w) } - context = append(context, []string{"-END-", "-END2-"}...) - for i, word := range clean { - if none.MatchString(word) { - tag = "-NONE-" - } else if keep.MatchString(word) { - tag = word - } else if tag, found = pt.model.tagMap[word]; !found { - tag = pt.model.predict(featurize(i, context, word, p1, p2)) - } - tokens = append(tokens, Token{Tag: tag, Text: word}) - p2 = p1 - p1 = tag - } - - return tokens + return err } -// Train an Averaged Perceptron model based on sentences. -func (pt *PerceptronTagger) Train(sentences TupleSlice, iterations int) { +// train an Averaged Perceptron model based on sentences. +func (pt *perceptronTagger) train(sentences TupleSlice, iterations int) { var guess string var found bool @@ -182,7 +137,29 @@ func (pt *PerceptronTagger) Train(sentences TupleSlice, iterations int) { pt.model.averageWeights() } -func (pt *PerceptronTagger) makeTagMap(sentences TupleSlice) { +func (m *averagedPerceptron) averageWeights() { + for feat, weights := range m.weights { + newWeights := make(map[string]float64) + for class, weight := range weights { + key := feat + "-" + class + total := m.totals[key] + total += (m.instances - m.stamps[key]) * weight + averaged, _ := stats.Round(total/m.instances, 3) + if averaged != 0.0 { + newWeights[class] = averaged + } + } + m.weights[feat] = newWeights + } +} + +// newTrainedPerceptronTagger creates a new PerceptronTagger using the given +// model. +func newTrainedPerceptronTagger(model *averagedPerceptron) *perceptronTagger { + return &perceptronTagger{model: model} +} + +func (pt *perceptronTagger) makeTagMap(sentences TupleSlice) { counts := make(map[string]map[string]int) for _, tuple := range sentences { words, tags := tuple[0], tuple[1] @@ -204,75 +181,151 @@ func (pt *PerceptronTagger) makeTagMap(sentences TupleSlice) { } } -func (ap *AveragedPerceptron) predict(features map[string]float64) string { - var weights map[string]float64 - var found bool +func sumValues(m map[string]int) int { + sum := 0 + for _, v := range m { + sum += v + } + return sum +} - scores := make(map[string]float64) - for feat, value := range features { - if weights, found = ap.weights[feat]; !found || value == 0 { - continue - } - for label, weight := range weights { - if _, ok := scores[label]; ok { - scores[label] += value * weight - } else { - scores[label] = value * weight - } +func maxValue(m map[string]int) (string, int) { + maxValue := 0 + key := "" + for k, v := range m { + if v >= maxValue { + maxValue = v + key = k } } - return max(scores) + return key, maxValue } -func (ap *AveragedPerceptron) update(truth, guess string, feats map[string]float64) { - ap.instances++ +func get(k string, m map[string]float64) float64 { + if v, ok := m[k]; ok { + return v + } + return 0.0 +} + +func (m *averagedPerceptron) update(truth, guess string, feats map[string]float64) { + m.instances++ if truth == guess { return } for f := range feats { weights := make(map[string]float64) - if val, ok := ap.weights[f]; ok { + if val, ok := m.weights[f]; ok { weights = val } else { - ap.weights[f] = weights + m.weights[f] = weights } - ap.updateFeat(truth, f, get(truth, weights), 1.0) - ap.updateFeat(guess, f, get(guess, weights), -1.0) + m.updateFeat(truth, f, get(truth, weights), 1.0) + m.updateFeat(guess, f, get(guess, weights), -1.0) } } -func (ap *AveragedPerceptron) updateFeat(c, f string, v, w float64) { +func (m *averagedPerceptron) updateFeat(c, f string, v, w float64) { key := f + "-" + c - ap.totals[key] = (ap.instances - ap.stamps[key]) * w - ap.stamps[key] = ap.instances - ap.weights[f][c] = w + v + m.totals[key] = (m.instances - m.stamps[key]) * w + m.stamps[key] = m.instances + m.weights[f][c] = w + v } -func (ap *AveragedPerceptron) addClass(class string) { - if !util.StringInSlice(class, ap.classes) { - ap.classes = append(ap.classes, class) +func (m *averagedPerceptron) addClass(class string) { + if !stringInSlice(class, m.classes) { + m.classes = append(m.classes, class) } +}*/ + +// perceptronTagger is a port of Textblob's "fast and accurate" POS tagger. +// See https://github.com/sloria/textblob-aptagger for details. +type perceptronTagger struct { + model *averagedPerceptron } -func (ap *AveragedPerceptron) averageWeights() { - for feat, weights := range ap.weights { - newWeights := make(map[string]float64) - for class, weight := range weights { - key := feat + "-" + class - total := ap.totals[key] - total += (ap.instances - ap.stamps[key]) * weight - averaged, _ := stats.Round(total/ap.instances, 3) - if averaged != 0.0 { - newWeights[class] = averaged +// newPerceptronTagger creates a new PerceptronTagger and loads the built-in +// AveragedPerceptron model. +func newPerceptronTagger() *perceptronTagger { + var wts map[string]map[string]float64 + var tags map[string]string + var classes []string + + dec := getAsset("AveragedPerceptron", "classes.gob") + checkError(dec.Decode(&classes)) + + dec = getAsset("AveragedPerceptron", "tags.gob") + checkError(dec.Decode(&tags)) + + dec = getAsset("AveragedPerceptron", "weights.gob") + checkError(dec.Decode(&wts)) + + return &perceptronTagger{model: newAveragedPerceptron(wts, tags, classes)} +} + +// tag takes a slice of words and returns a slice of tagged tokens. +func (pt *perceptronTagger) tag(tokens []*Token) []*Token { + var tag string + var found bool + + p1, p2 := "-START-", "-START2-" + length := len(tokens) + 4 + context := make([]string, length) + context[0] = p1 + context[1] = p2 + for i, t := range tokens { + context[i+2] = normalize(t.Text) + } + context[length-2] = "-END-" + context[length-1] = "-END2-" + for i := 0; i < len(tokens); i++ { + word := tokens[i].Text + if word == "-" { + tag = "-" + } else if _, ok := emoticons[word]; ok { + tag = "SYM" + } else if commonregex.LinkRegex.MatchString(word) || + commonregex.EmailRegex.MatchString(word) || + strings.HasPrefix(word, "@") { + tag = "NN" + } else if none.MatchString(word) { + tag = "-NONE-" + } else if keep.MatchString(word) { + tag = word + } else if tag, found = pt.model.tagMap[word]; !found { + tag = pt.model.predict(featurize(i, context, word, p1, p2)) + } + tokens[i].Tag = tag + p2 = p1 + p1 = tag + } + + return tokens +} + +func (m *averagedPerceptron) predict(features map[string]float64) string { + var weights map[string]float64 + var found bool + + scores := make(map[string]float64) + for feat, value := range features { + if weights, found = m.weights[feat]; !found || value == 0 { + continue + } + for label, weight := range weights { + if _, ok := scores[label]; ok { + scores[label] += value * weight + } else { + scores[label] = value * weight } } - ap.weights[feat] = newWeights } + return max(scores) } func max(scores map[string]float64) string { var class string - max := 0.0 + max := math.Inf(-1) for label, value := range scores { if value > max { max = value @@ -284,10 +337,10 @@ func max(scores map[string]float64) string { func featurize(i int, ctx []string, w, p1, p2 string) map[string]float64 { feats := make(map[string]float64) - suf := util.Min(len(w), 3) - i = util.Min(len(ctx)-2, i+2) - iminus := util.Min(len(ctx[i-1]), 3) - iplus := util.Min(len(ctx[i+1]), 3) + suf := min(len(w), 3) + i = min(len(ctx)-2, i+2) + iminus := min(len(ctx[i-1]), 3) + iplus := min(len(ctx[i+1]), 3) feats = add([]string{"bias"}, feats) feats = add([]string{"i suffix", w[len(w)-suf:]}, feats) feats = add([]string{"i pref1", string(w[0])}, feats) @@ -329,30 +382,3 @@ func normalize(word string) string { } return strings.ToLower(word) } - -func sumValues(m map[string]int) int { - sum := 0 - for _, v := range m { - sum += v - } - return sum -} - -func maxValue(m map[string]int) (string, int) { - maxValue := 0 - key := "" - for k, v := range m { - if v >= maxValue { - maxValue = v - key = k - } - } - return key, maxValue -} - -func get(k string, m map[string]float64) float64 { - if v, ok := m[k]; ok { - return v - } - return 0.0 -} diff --git a/tag/tag.go b/tag/tag.go deleted file mode 100644 index 8df713c..0000000 --- a/tag/tag.go +++ /dev/null @@ -1,37 +0,0 @@ -/* -Package tag implements functions for tagging parts of speech. -*/ -package tag - -import "strings" - -// Token represents a tagged section of text. -type Token struct { - Text string - Tag string -} - -// TupleSlice is a slice of tuples in the form (words, tags). -type TupleSlice [][][]string - -// Len returns the length of a Tuple. -func (t TupleSlice) Len() int { return len(t) } - -// Swap switches the ith and jth elements in a Tuple. -func (t TupleSlice) Swap(i, j int) { t[i], t[j] = t[j], t[i] } - -// ReadTagged converts pre-tagged input into a TupleSlice suitable for training. -func ReadTagged(text, sep string) TupleSlice { - t := TupleSlice{} - for _, sent := range strings.Split(text, "\n") { - tokens := []string{} - tags := []string{} - for _, token := range strings.Split(sent, " ") { - parts := strings.Split(token, sep) - tokens = append(tokens, parts[0]) - tags = append(tags, parts[1]) - } - t = append(t, [][]string{tokens, tags}) - } - return t -} diff --git a/tag/aptag_test.go b/tag_test.go similarity index 54% rename from tag/aptag_test.go rename to tag_test.go index dabe685..f95cccb 100644 --- a/tag/aptag_test.go +++ b/tag_test.go @@ -1,15 +1,73 @@ -package tag +package prose import ( + "encoding/json" "fmt" - "math/rand" + "path/filepath" "testing" - "time" - "github.com/jdkato/prose/internal/util" "github.com/stretchr/testify/assert" ) +func makeTagger(text string) (*Document, error) { + return NewDocument( + text, + WithSegmentation(false), + WithExtraction(false)) +} + +func ExampleReadTagged() { + tagged := "Pierre|NNP Vinken|NNP ,|, 61|CD years|NNS" + fmt.Println(ReadTagged(tagged, "|")) + // Output: [[[Pierre Vinken , 61 years] [NNP NNP , CD NNS]]] +} + +func TestTagSimple(t *testing.T) { + doc, err := makeTagger("Pierre Vinken, 61 years old, will join the board as a nonexecutive director Nov. 29.") + if err != nil { + panic(err) + } + tags := []string{} + for _, tok := range doc.Tokens() { + tags = append(tags, tok.Tag) + } + assert.Equal(t, []string{ + "NNP", "NNP", ",", "CD", "NNS", "JJ", ",", "MD", "VB", "DT", "NN", + "IN", "DT", "JJ", "NN", "NNP", "CD", "."}, tags) +} + +func TestTagTreebank(t *testing.T) { + tagger := newPerceptronTagger() + tokens, expected := []*Token{}, []string{} + + tags := readDataFile(filepath.Join(testdata, "treebank_tags.json")) + checkError(json.Unmarshal(tags, &expected)) + + treebank := readDataFile(filepath.Join(testdata, "treebank_tokens.json")) + checkError(json.Unmarshal(treebank, &tokens)) + + correct := 0.0 + for i, tok := range tagger.tag(tokens) { + if expected[i] == tok.Tag { + correct++ + } + } + assert.True(t, correct/float64(len(expected)) >= 0.957477) // baseline +} + +func BenchmarkTag(b *testing.B) { + tagger := newPerceptronTagger() + tokens := []*Token{} + + treebank := readDataFile(filepath.Join(testdata, "treebank_tokens.json")) + checkError(json.Unmarshal(treebank, &tokens)) + for n := 0; n < b.N; n++ { + _ = tagger.tag(tokens) + } +} + +/* TODO: POS training API + var wsj = "Pierre|NNP Vinken|NNP ,|, 61|CD years|NNS old|JJ ,|, will|MD " + "join|VB the|DT board|NN as|IN a|DT nonexecutive|JJ director|NN " + "Nov.|NNP 29|CD .|.\nMr.|NNP Vinken|NNP is|VBZ chairman|NN of|IN " + @@ -24,14 +82,7 @@ var wsj = "Pierre|NNP Vinken|NNP ,|, 61|CD years|NNS old|JJ ,|, will|MD " + "of|IN workers|NNS exposed|VBN to|TO it|PRP more|RBR than|IN " + "30|CD years|NNS ago|IN ,|, researchers|NNS reported|VBD .|." -func ExampleReadTagged() { - tagged := "Pierre|NNP Vinken|NNP ,|, 61|CD years|NNS" - fmt.Println(ReadTagged(tagged, "|")) - // Output: [[[Pierre Vinken , 61 years] [NNP NNP , CD NNS]]] -} - func TestTrain(t *testing.T) { - tagger := NewPerceptronTagger() sentences := ReadTagged(wsj, "|") iter := random(5, 20) tagger.Train(sentences, iter) @@ -54,4 +105,4 @@ func TestTrain(t *testing.T) { func random(min, max int) int { rand.Seed(time.Now().Unix()) return rand.Intn(max-min) + min -} +}*/ diff --git a/testdata/1-syllable-words.txt b/testdata/1-syllable-words.txt deleted file mode 100644 index 2268fa8..0000000 --- a/testdata/1-syllable-words.txt +++ /dev/null @@ -1,2717 +0,0 @@ -the -of -and -to -in -that -was -his -he -it -irs -ore -roy -inn -yer -with -is -for -as -had -you -not -be -her -on -at -by -which -have -or -from -this -him -but -all -she -they -were -my -are -me -one -their -so -an -said -them -we -who -would -been -will -no -when -there -if -more -out -up -do -your -what -has -man -could -than -our -some -time -may -its -now -like -then -can -should -made -did -us -such -great -must -two -these -see -know -much -down -first -good -men -own -most -old -shall -day -where -those -came -come -way -work -life -go -make -well -through -long -say -might -how -am -too -def -back -here -think -went -same -last -thought -take -found -hand -eyes -still -place -while -just -young -yet -though -things -get -give -god -years -off -face -right -once -left -part -saw -house -world -head -three -took -new -love -put -night -each -king -tell -mind -heart -few -thing -whom -far -seemed -looked -called -whole -de -set -both -got -find -done -heard -look -name -days -told -let -lord -asked -seen -home -knew -side -course -hands -words -soon -full -end -gave -room -small -thou -want -light -quite -brought -nor -word -whose -door -best -turned -does -use -felt -since -used -voice -white -works -less -next -poor -death -stood -form -till -thy -large -kind -year -friend -half -round -true -keep -sent -wife -means -passed -feet -near -state -son -thus -hope -case -dear -thee -says -high -read -fact -gone -girl -known -hear -times -least -sure -land -leave -air -law -help -lay -point -child -four -wish -fire -cried -speak -hour -friends -held -free -war -er -call -why -john -dead -earth -boy -lost -forth -soul -feel -care -truth -ground -rest -mean -fell -kept -short -town -need -cause -met -five -strong -french -live -sea -fear -hard -terms -doubt -ask -arms -turn -sense -seems -black -bring -close -dark -hold -sort -sight -ten -show -fine -ye -book -talk -mark -bed -age -else -force -art -spoke -ought -line -eye -ety -sun -reached -past -hours -strange -deep -change -miles -act -meet -paid -seem -blood -rose -south -cold -view -sound -none -clear -road -late -stand -la -mine -laws -comes -bad -cut -six -peace -low -north -fall -fair -hair -laid -pass -led -run -horse -west -pay -red -hath -note -gold -makes -play -tried -front -big -lived -wind -church -strength -length -placed -glad -bear -ran -faith -charge -lips -arm -send -foot -wild -die -save -trees -green -smile -books -wrong -sleep -drew -walked -chief -chance -deal -loved -knows -try -sweet -plain -wrote -mouth -rich -thoughts -months -joy -states -ship -filled -write -boys -parts -please -march -tears -caught -stay -struck -blue -school -raised -food -youth -reach -moved -walk -stopped -laughed -week -hall -born -court -grew -showed -third -worth -tree -fight -wall -tone -mere -month -street -goes -fresh -duke -bound -east -wood -stone -bright -boat -meant -chair -due -tom -date -lives -lines -field -wished -wait -piece -ex -formed -hill -cry -cost -girls -broke -sit -news -top -scene -step -race -per -learn -bit -speech -lie -cast -eat -floor -ill -ways -walls -watch -pleased -leaves -hot -killed -fast -brown -pain -spring -takes -drawn -steps -soft -straight -trust -laugh -eight -closed -gives -dress -sake -breath -wise -grave -fixed -spot -troops -rise -break -camp -sky -touch -shore -named -looks -plan -spent -pale -shot -lead -move -names -stop -et -threw -worse -built -glass -board -vain -safe -loss -class -forms -warm -drink -ones -ears -start -smiled -spite -shown -james -hart -hat -dog -main -pride -crowd -train -path -greek -fit -lot -proved -rule -sword -seat -game -health -grace -dream -rock -jack -shook -glance -heads -fee -share -spread -twelve -space -wine -taste -trade -forced -rate -clothes -sign -judge -watched -marked -bill -vast -prove -quick -yes -sought -neck -hearts -sides -dry -serve -pure -lose -thrown -page -weeks -search -sad -sin -lies -proud -price -ships -sick -shut -talked -bank -fate -dropped -hills -seek -stream -ear -bread -aid -choose -rights -tax -sons -cross -thick -points -woods -facts -dare -grow -hung -rain -false -tall -gate -streets -blow -coast -file -birds -song -wealth -failed -grass -touched -draw -stage -june -fish -tongue -served -breast -snow -claim -hast -sharp -prince -group -played -yours -add -pray -taught -tired -kill -weight -mass -gray -brave -thin -check -weak -frank -guess -heat -bent -seized -guard -box -gods -moon -slight -style -saved -crossed -pounds -paul -worked -grown -midst -liked -bore -list -calm -nice -joined -kings -twice -throw -ceased -priest -drive -fault -beat -fool -hurt -wants -height -size -edge -task -nine -burst -dressed -hopes -noise -rode -tells -minds -flesh -grand -legs -post -rank -storm -wore -loud -thank -rules -bird -coat -shape -birth -smoke -stands -teeth -shame -bay -brain -soil -ring -phrase -acts -square -pair -won -fruit -mad -tea -rocks -slaves -slow -grief -prayer -stars -buy -ride -fields -drove -sum -stones -fees -catch -knees -gained -slave -loose -text -worst -sold -don -hoped -fond -firm -proof -pressed -join -crime -dust -lands -doors -sing -nose -rooms -clean -fail -choice -huge -needs -wear -blind -rough -shows -fly -praise -smith -gain -notes -bought -souls -based -car -dick -bare -fought -hate -lake -faint -thinks -drop -brief -goods -tale -skin -roof -grey -crown -throne -ease -mile -dull -clouds -term -cup -strike -pulled -flight -yards -whilst -bow -suit -plans -lest -paused -meat -milk -dogs -plants -rare -raise -obs -cool -bridge -stock -type -signs -pope -queen -teach -count -dance -fled -kissed -guns -fill -guide -lad -harm -views -ends -shop -stairs -gay -beg -kinds -fat -sand -worn -flat -gift -skill -calls -en -wound -whence -rushed -bold -helped -sell -self -throat -dreams -speed -growth -slept -thine -sounds -swift -wings -stepped -base -win -maid -site -sail -feared -store -shalt -cook -pause -band -hence -kiss -plant -ice -ball -stick -fierce -rage -gun -shade -hide -range -host -wet -cloud -ed -waste -spend -source -deck -sees -aunt -reign -hers -doth -thanks -banks -cap -waves -glanced -pushed -press -fleet -bowed -staff -stretched -gaze -meal -blame -guests -job -loves -risk -ad -wit -fame -lack -dawn -gets -lights -sheep -spare -farm -corn -jane -key -towns -flame -priests -cloth -gazed -fourth -bell -urged -ascii -begged -hole -borne -files -sigh -thrust -frame -disk -haste -knight -charm -rolled -email -flung -verse -turns -branch -rear -stared -boats -keen -bones -luck -scheme -oil -thence -dim -pipe -print -smooth -build -eggs -burned -oh -cries -noon -cease -tent -beast -gates -stern -knife -dread -jim -silk -links -cent -finds -bade -lords -hell -grant -tribes -hit -mixed -prayers -treat -flew -speaks -slipped -ours -yield -schools -rush -falls -stayed -sins -anne -pen -tide -vol -leaned -tail -fears -nights -tied -cat -port -male -mode -poured -sank -brings -trace -chose -tribe -costs -sang -sam -sorts -rude -winds -scenes -shake -claims -lamp -sex -trail -shone -nurse -match -wrath -gifts -chain -debt -shoes -mood -crew -yard -vague -odd -wives -cared -jews -joe -dutch -ate -steel -test -shed -folks -star -deeds -oath -guest -bar -row -bless -stir -fix -deed -sighed -vote -leg -bid -scarce -rev -hang -shock -strain -drank -aim -bag -beasts -track -rid -holds -swear -fun -apt -queer -seed -runs -stuff -sole -roads -plate -pains -dwell -grounds -taxes -tones -wave -folk -marched -writes -sailed -pull -hid -rope -vi -arts -feast -burn -card -flow -scale -marks -ben -wrought -songs -torn -hunt -web -chest -depth -clerk -drunk -pour -lift -limbs -plays -dragged -flag -boots -bears -signed -walks -feed -roll -wilt -inch -lee -owe -trip -shoot -owns -beard -stirred -tear -dan -bob -depths -breeze -jean -smell -locked -courts -pick -desk -gross -lane -root -mud -cleared -feels -fruits -bride -rang -ranks -grasp -veil -gloom -prize -greeks -foe -shared -id -coach -knocked -keeps -leads -sale -wheel -burnt -flash -fed -curse -zeal -groups -fort -club -cure -stout -missed -flood -seas -grain -steep -route -non -wire -crept -greece -knee -scorn -grows -clock -roots -jumped -sore -slip -fires -wept -stroke -cave -wars -stiff -score -ruth -blows -plains -flashed -rent -prey -owed -sheet -gas -claimed -glow -leaf -jones -pound -pierre -sunk -beach -flour -roar -hut -seats -bark -wake -prayed -jest -washed -nerves -swung -wing -dwelt -trick -joke -mist -shell -nest -fetch -tomb -coarse -heap -homes -hint -knights -dreamed -craft -pink -heels -streams -flames -sport -beds -shout -bath -chap -roused -climbed -mail -wrapped -paint -mild -nay -lit -quit -plot -dish -cares -straw -net -wounds -warmth -rays -shores -flushed -wont -steam -ned -trained -warned -shield -chairs -searched -mate -ghost -blew -wash -clay -trunk -dried -chiefs -coal -vice -deemed -pile -spell -bone -grim -leaped -pole -sink -ward -cheer -siege -sets -load -brass -fifth -faced -cheap -saints -owned -seize -springs -fence -leagues -glimpse -doubts -fro -string -strict -likes -corps -judged -wheels -pack -drops -deer -bush -plunged -joint -spake -jan -weep -bench -ralph -heir -oak -faults -charms -purse -chase -gown -lock -foul -types -breathed -bells -shine -dashed -dates -theirs -adv -clasped -spared -crushed -waved -slope -learnt -stores -guessed -heed -woe -den -dine -ann -sphere -guilt -steal -lip -dost -wheat -smiles -park -na -stretch -lean -knock -tie -cell -void -egg -crimes -breathe -sits -thanked -seeds -foes -longed -lend -lent -eh -veins -seal -mount -harsh -kate -lunch -pine -shells -flies -push -tight -sue -waist -tore -lieu -thread -dumb -blank -del -danced -dealt -cents -whip -checked -shirt -sweep -sketch -thief -ut -guards -ha -mob -thirst -asks -viewed -gleam -palm -quoth -fur -holes -spear -clung -neat -lap -damp -ridge -spoil -swords -chains -tin -couch -bills -sails -dined -cow -mill -map -porch -ford -clothed -jew -bands -nigh -prose -codes -saint -awe -strife -beer -wretch -fain -brains -flock -niece -rings -smart -boxes -aught -creek -lo -brush -cream -jump -pitch -cliff -crowned -sites -dies -pot -rice -planned -guy -hired -fools -leap -games -bet -bull -raw -log -skies -scotch -robbed -cart -robe -tents -herd -pan -blown -paths -backs -heights -gasped -breadth -tune -traced -pseud -squire -bars -tossed -block -lots -bloom -brute -fist -dense -adds -rows -sworn -horn -brook -fund -lodge -ruled -pit -sheer -fare -packed -el -grasped -tend -carved -bonds -corpse -realm -debts -shops -coin -clad -lace -fred -trap -spots -proofs -wits -cake -lamps -sir -tongues -praised -rob -wales -knelt -stake -tread -mines -brick -arch -sprung -shy -prime -fog -bits -moves -warn -vile -doom -scent -bliss -stove -joys -flowed -brows -swell -wreck -bowl -swamp -nerve -stare -pledge -earn -gang -boiled -shouts -theme -pool -lads -didst -workmen -monks -sends -preach -woke -weighed -wool -orleans -strikes -sticks -drag -crop -wolf -sheets -bond -horns -breaks -balls -rod -blaze -mouths -max -juan -goal -cash -lawn -texts -tastes -blush -ein -shew -globe -throng -cheese -bite -breach -cars -dusk -truths -plague -boil -shocked -hanged -hats -mirth -bows -pierced -tricks -rubbed -fright -rail -crops -proves -ripe -reigned -sixth -mask -sire -keys -damned -vexed -bind -cliffs -tools -git -bulk -bunch -cooked -hay -gale -preached -hears -vow -quaint -soup -beef -rests -slay -sealed -posts -blade -spy -shades -robes -maine -chanced -locks -votes -bred -league -limb -crack -naught -slew -dug -hearth -snatched -shaft -linked -jove -stem -dec -cows -schemes -urge -shrill -dean -flush -code -split -snake -ass -draws -creed -luke -strove -cups -wax -spoiled -earned -prompt -bronze -stooped -dew -monk -thrill -hue -funds -dash -strained -swim -strip -team -tracks -talks -plane -sums -deaf -grip -juice -blast -nile -troop -crowds -axe -holmes -tops -boards -cells -reads -sway -screen -dirt -breed -shapes -shrewd -nov -halt -stamp -whites -drift -roared -ray -ink -oft -draught -kin -worlds -frost -glare -termed -yea -quest -crest -lakes -swing -freed -lined -shrugged -checks -pub -grove -hire -fox -grieved -stamped -wiped -oars -scared -lodged -hedge -storms -beam -tour -wells -earl -piled -boughs -ports -rhine -bud -hail -beams -pig -shaped -aug -stripped -plead -cord -flows -wrongs -lungs -serves -pint -pipes -pitched -tube -smote -burke -nails -wears -doomed -bee -mix -sweat -tenth -folds -roofs -mute -cage -esq -cured -jail -crowns -feb -scream -fits -cane -fold -thieves -tons -dave -moore -meets -stress -groan -suits -hosts -crash -quote -choked -hurled -sack -snapped -crush -canst -smoked -greet -strive -curve -flank -logs -lamb -reins -trunks -shrank -kent -maids -rates -bees -tramp -van -nought -yoke -threats -lays -pays -nod -patch -lance -thumb -wolves -sales -trains -skirts -tip -kick -dig -pet -skull -ness -threat -ghosts -asp -blocks -shrine -heel -throws -frown -plunge -moor -pin -mars -framed -jaws -gulf -rash -nick -nan -hon -pulse -flee -clause -growled -charmed -knot -rags -mock -clare -skirt -grin -hoarse -mills -lain -aimed -scope -blushed -crow -shawl -sings -coats -strode -hook -airs -spark -sleeve -tame -ditch -tract -plus -farms -ropes -hounds -rains -pond -wrist -li -tries -bags -reared -jaw -sect -drum -poles -verge -bin -stained -weigh -float -troy -shift -mould -hymn -ken -witch -backed -pomp -mess -bored -shrink -crude -eve -frail -hans -mule -bolt -lame -vein -lists -shoe -thrice -foam -keith -fraud -cats -blamed -jar -clerks -ark -moist -wid -sauce -writ -bruce -deem -rolls -doe -swiss -loan -beads -lust -ah -shares -saul -shelf -fan -kid -phase -turf -dame -clubs -creep -guides -vii -link -pluck -yon -moss -skilled -cum -med -tough -plea -lacked -mac -fork -stain -hints -drinks -whipped -matt -steed -width -rouse -vent -vines -flags -ranch -odds -aims -pie -pigs -choir -verb -stead -fling -dove -cracked -sexes -pledged -brushed -grieve -tim -flint -vault -worm -ay -eighth -knives -te -yacht -stray -tends -wan -welsh -swam -slid -cock -lump -wee -dome -cheered -curved -drives -alps -harp -peaks -rub -grapes -beans -nail -tact -toast -swelled -mouse -helm -slim -lime -spur -sown -hush -breasts -pat -strokes -sob -vine -pots -crust -sting -ho -ta -coasts -starve -scots -goat -sour -spoils -pa -ox -carl -blanche -spray -sports -ab -scales -calf -melt -grade -pang -brisk -stool -al -spies -yell -boot -ale -goose -truce -groves -cling -duck -weird -males -pairs -con -lapse -soap -eyed -doll -sez -nuts -wright -hides -co -walt -pearl -thrilled -gains -jokes -quod -clue -tooth -clasp -lets -wires -wheeled -aye -shriek -gap -rhyme -launched -vowed -caps -owl -suite -heaped -babe -rogue -hull -jeff -peak -khan -plucked -bids -clapped -zeus -mike -tray -mound -mast -twist -groom -solve -tempt -lid -fowl -threads -boss -piles -peer -cheers -wrung -gilt -strand -sly -boon -brink -hum -trod -trench -fore -dey -mend -meek -garb -hushed -brand -dipped -tool -dwarf -ak -paced -tense -drums -hen -baked -winged -trim -wrecked -ledge -roast -stocks -mourn -freight -wipe -shelves -traits -dire -gait -clutched -sneer -plump -cheat -blest -haunt -frock -gal -wed -plough -snakes -reef -draft -hound -toy -stair -cough -blazed -claude -burns -din -zone -ac -ninth -heal -karl -staid -stuffed -steer -ounce -drown -slide -sow -rides -spoon -pinch -ducks -rum -ni -bluff -dawned -chalk -fuss -dazed -hem -gorge -damn -theft -rats -ash -floods -ti -twelfth -prone -twins -stoop -raft -fade -soothe -pork -dot -loaf -isle -dip -unit -brig -chat -maps -trot -howl -ton -bricks -sane -wreath -cork -whale -hare -haze -ted -caste -leapt -grudge -tips -turk -rhythm -rat -knit -dis -esp -whig -wharf -stunned -drain -wage -tap -toe -wade -knave -twain -brood -plight -alms -wink -nous -rack -carts -lone -counts -scratch -screw -hood -glove -chaste -whirl -plank -mi -seals -knots -wail -kneel -peep -swarm -bust -arched -furs -dock -psalms -hawk -rein -bake -pierce -snatch -launch -worms -drug -gaunt -quart -soothed -sic -strait -cords -trout -paste -scrap -fiend -moan -trades -rounds -crawl -aft -role -dose -snap -tire -geese -locke -deals -core -durst -scratched -wert -wig -pump -reigns -reap -dam -fringe -feat -rue -toss -rung -scrape -pools -oar -bait -login -slice -meg -xi -drill -womb -surf -weed -tapped -gasp -glee -lied -pro -val -eats -snare -wines -flown -thorn -re -holt -peas -clan -dart -berth -tint -aisle -click -stump -spun -gear -wares -snug -chaps -prints -rug -ham -mice -pose -guise -noun -scout -spit -nun -wad -curves -sledge -butt -tank -pins -chart -twin -blunt -bleak -sub -drugs -ache -limp -deuce -thigh -scant -mien -cor -peers -chant -marsh -vase -ty -baths -coil -crisp -jerk -tout -stroll -jam -shoots -nets -dice -shrunk -swine -tints -rout -steve -rag -punch -craig -drained -stride -gum -las -lash -lore -scot -scrub -myth -flights -oats -cape -scare -waked -brake -kirk -bough -mat -shun -raid -puff -beak -rot -grate -lease -pier -stale -comb -shaw -rite -si -whim -peg -reed -streak -blocked -smashed -farce -germ -bathe -slate -gin -cleft -bart -lambs -tub -greed -herb -ole -forged -scourge -vera -spin -puffed -lids -muse -clump -flute -yore -jay -fray -po -beth -ape -span -snuff -drooped -ills -dye -bolts -lark -slips -seine -glide -sol -mane -tinge -brim -shrug -trait -bribe -soiled -vest -bass -squeeze -dreamt -parched -curb -scraps -fried -spade -scorned -pail -ma -spouse -valve -sup -ant -heath -bug -bat -mates -stalk -fret -buck -cocked -dad -chasm -blot -nook -jake -haul -hurts -splash -curl -brace -clothe -gem -wrap -ram -wins -awed -whit -stall -sham -gout -jobs -sate -ebb -cruise -cheque -perch -flask -ka -manned -wast -frog -yarn -smelt -leaps -smite -os -barge -sponge -cot -wand -grind -bang -growl -jug -sap -yale -scarf -aux -scar -sous -ca -clash -speck -birch -dough -clutch -trance -mon -meats -filth -ware -glen -quay -heave -film -wench -calves diff --git a/testdata/2-syllable-words.txt b/testdata/2-syllable-words.txt deleted file mode 100644 index 831478d..0000000 --- a/testdata/2-syllable-words.txt +++ /dev/null @@ -1,3724 +0,0 @@ -into -any -other -very -upon -about -only -little -before -over -after -never -himself -without -being -even -again -many -every -people -away -repaid -maketh -statesmen -seamen -wordforms -honour -honours -honoured -under -also -blockquote -yourselves -hypertext -against -ever -nothing -always -between -because -country -going -better -having -something -moment -father -among -woman -enough -mother -almost -cannot -water -given -taken -morning -myself -until -power -themselves -rather -began -present -others -money -within -matter -often -certain -herself -order -believe -public -hundred -children -alone -above -person -city -received -perhaps -indeed -english -open -body -itself -along -return -nature -answered -either -letter -women -number -therefore -during -business -whether -manner -second -reason -replied -behind -became -become -thousand -looking -coming -spirit -question -making -towards -human -evening -returned -able -lady -subject -answer -around -followed -party -ready -story -common -account -written -longer -across -brother -early -sometimes -saying -table -appeared -river -later -feeling -further -purpose -happy -added -taking -beyond -neither -forward -entered -suppose -daughter -real -nearly -knowledge -toward -copy -husband -living -effect -pretty -service -below -except -doing -army -future -opened -pleasure -although -wanted -desire -master -office -receive -unto -paper -letters -greater -yourself -fellow -window -ago -beauty -remained -latter -duty -distance -silence -object -trouble -persons -happened -minutes -hardly -action -visit -thinking -follow -standing -presence -heavy -afraid -single -broken -unless -carry -exclaimed -seeing -appear -outside -secret -evil -slowly -horses -places -instead -sister -battle -married -former -learned -merely -system -twenty -dinner -quiet -giving -language -danger -wonder -figure -getting -ancient -respect -simple -leaving -remain -result -heaven -started -command -regard -beside -silent -perfect -writing -covered -quickly -notice -noble -somewhat -sudden -value -support -waiting -village -reading -agree -observed -scarcely -greatest -success -british -speaking -trying -proper -music -allowed -seven -private -marriage -garden -begin -sitting -offered -flowers -produced -summer -provide -study -picture -declared -effort -prepared -escape -attempt -supposed -author -soldiers -houses -beneath -talking -turning -matters -likely -corner -trademark -justice -simply -produce -appears -forget -passage -ourselves -passing -required -efforts -ladies -pleasant -modern -fifty -island -meeting -nation -reply -copies -equal -fortune -domain -promise -orders -degree -middle -winter -allow -conduct -running -surprise -minute -roman -cases -higher -spoken -affairs -instance -doctor -offer -complete -access -lower -darkness -passion -questions -lying -keeping -silver -mentioned -servant -moral -instant -meaning -ordered -obliged -enter -attack -statement -social -refund -sorry -courage -members -worthy -special -request -mighty -movement -expect -dollars -glory -engaged -peter -mountains -iron -greatly -using -feelings -native -promised -working -anxious -marry -captain -finished -extent -foreign -besides -method -fancy -prevent -legal -aside -powers -possessed -distant -progress -narrow -building -knowing -settled -holding -mountain -pieces -clearly -thirty -honest -judgment -accept -removed -forest -measure -species -highest -honor -obtained -bottom -fingers -agreed -events -fully -delight -amount -obtain -servants -shoulders -stranger -creature -nations -refused -surface -freely -holy -july -fashion -report -daily -shoulder -surprised -faces -royal -comfort -freedom -advance -gentle -surely -waited -secure -desired -portion -expressed -spirits -angry -growing -carriage -weather -papers -practice -robert -throughout -pity -expense -million -explained -leading -shadow -suffered -virtue -golden -famous -telling -alive -waters -divine -gathered -valley -finding -yellow -remains -pointed -windows -louis -willing -richard -season -remarked -science -tender -whispered -quarter -advanced -active -noticed -aware -uncle -august -sacred -kingdom -entire -unknown -habit -spanish -reader -published -direct -handsome -posted -approach -hearing -needed -increased -walking -wisdom -truly -numbers -wounded -sorrow -listened -palace -affair -contact -station -listen -becomes -watching -express -occurred -favour -subjects -follows -putting -lifted -suffer -smiling -farther -vessel -advice -empty -duties -countries -pocket -driven -sentence -lovely -happen -absence -breakfast -series -laughing -address -relief -owner -prepare -mother -machine -content -moving -wholly -busy -treated -burning -inside -message -resolved -calling -mention -title -forces -nearer -falling -bearing -mercy -larger -explain -contain -soldier -welcome -proposed -belief -informed -moments -constant -final -faithful -supper -drawing -dying -demand -fighting -upper -motion -forty -april -kindly -seated -amongst -current -sending -parties -objects -bitter -credit -chosen -printed -terror -features -control -fifteen -cruel -harry -splendid -sooner -process -concerned -deeply -colour -destroy -anger -results -increase -reasons -friendly -entrance -admit -supply -useful -remove -addressed -cover -double -dozen -level -release -ended -devil -ahead -degrees -chamber -mission -cities -mistake -conscience -buried -closely -partly -mistress -arose -playing -color -safety -asleep -centre -parents -escaped -careful -enjoy -brilliant -bringing -worship -highly -castle -stated -despair -attached -total -kindness -circle -extreme -figures -prison -assured -hidden -member -civil -apply -labor -fairly -comply -fellows -event -gently -conscious -wishes -voices -weary -couple -volume -details -older -custom -apart -awful -labour -asking -lover -showing -composed -rendered -pictures -singing -eager -precious -require -vision -granted -manners -cousin -trial -learning -approached -abroad -paying -writer -readers -dreadful -female -protect -destroyed -temper -plenty -avoid -hurried -favor -mental -brothers -solemn -causes -vessels -compelled -hotel -wicked -younger -earnest -pardon -seldom -record -branches -inquired -ruin -cattle -temple -license -consent -natives -laughter -contained -perceived -scattered -chiefly -witness -foolish -kitchen -treatment -patient -latin -immense -severe -excuse -triumph -joseph -pages -charming -softly -performed -likewise -frightened -remark -thousands -inclined -convinced -desert -effects -behold -observe -blessed -bosom -striking -creatures -shouted -guilty -setting -forgot -slightly -police -confess -murder -wondered -horror -local -doctrine -changes -possess -trembling -disease -mankind -habits -estate -humble -delay -shining -midnight -flower -hero -classes -belong -finger -market -troubled -picked -somewhere -household -baby -region -lately -uttered -exact -image -ages -murmured -refuse -enjoyed -belonged -ashamed -reward -nodded -status -poem -savage -arise -voyage -painted -attend -afford -donate -proceed -forehead -regret -plainly -lighted -angel -rapid -distinct -doubtless -error -utmost -methods -appeal -strongly -breaking -fatal -render -career -design -displayed -forgive -utter -patience -exist -alike -mounted -issue -measures -dared -reduced -weakness -furnished -china -flying -profit -movements -acted -disposed -chapter -helen -sugar -lonely -artist -quarters -substance -painful -ocean -leader -senses -inches -derived -managed -preserved -hurry -reaching -wretched -hanging -useless -solid -pursued -recent -travel -crying -cabin -compared -handed -smaller -frequent -alarm -nervous -aloud -stronger -loving -masters -writers -mortal -preserve -burden -aspect -millions -merry -clever -district -shadows -failure -amid -profits -agent -union -contempt -raising -secured -wooden -prefer -fever -daughters -warning -impulse -johnson -resumed -confirmed -deny -correct -perform -somehow -acquired -counsel -distress -notion -hundreds -firmly -actions -steady -remarks -empire -idle -online -permit -college -maintain -crowded -opposed -treaty -contents -rested -lees -occur -seeking -reports -begins -founded -instinct -cheerful -threatened -western -beings -pressure -shelter -revealed -riding -merit -sleeping -coffee -thereof -romans -requires -fathers -prospect -obey -northern -profound -hungry -sisters -assure -folly -teaching -venture -perceive -accounts -eating -declare -version -grateful -nearest -elsewhere -parted -owing -martin -cottage -leaning -settle -referred -francis -holder -involved -sunshine -council -princes -strangers -beheld -noted -slightest -widow -errors -attacked -maintained -restored -concealed -heavens -bottle -intense -quarrel -touching -inner -derive -hollow -contains -province -muttered -thither -oxford -lofty -endure -succeed -alice -hated -acting -landed -passions -lightly -disturbed -supreme -display -confined -poets -sounded -negro -fearful -standard -studied -buildings -commenced -deeper -repeat -driving -drinking -treasure -throwing -tower -defend -desires -depends -poems -section -staring -marble -awake -walter -shaking -butter -fury -moses -issued -hatred -pursuit -vanished -elder -signal -wanting -supplied -safely -describe -lesson -passes -county -beaten -presents -format -sixty -damage -commerce -startled -southern -outer -belongs -naked -rivers -concern -magic -campaign -hunting -whisper -largely -exists -teacher -lawyer -detail -shortly -caesar -leaders -blessing -princess -altar -tiny -sharply -purple -gather -gloomy -decide -victim -gazing -absurd -gesture -armies -manage -brethren -hastened -motive -pointing -verses -pronounced -exchange -remote -finish -denied -churches -rarely -ugly -harmless -mingled -training -badly -central -contrast -relieved -romance -structure -payment -pace -sources -inspired -angels -troubles -handle -fitted -refuge -cutting -resist -maiden -merchant -whereas -crossing -lively -virtues -conceived -thereby -eighteen -eaten -preferred -ruined -wherein -condemned -happens -billy -holland -beating -depend -judges -giant -arrive -autumn -absent -doubtful -suspect -weapons -limits -feeble -prophet -basis -corrupt -payments -returns -laying -purchase -rival -someone -defeat -demands -consists -studies -balance -forming -slender -silly -humour -masses -recall -discourse -regions -assist -novel -hither -tales -revenge -lucy -yonder -jealous -risen -marie -swiftly -portrait -create -summoned -suggest -induced -conflict -helpless -lincoln -germans -vengeance -gracious -include -respects -ventured -implied -stupid -wearing -conceal -pleasures -therein -assume -gardens -closer -thunder -graceful -childhood -saddle -supplies -weeping -mostly -agents -software -losing -attempts -receipt -dearest -finest -motives -fastened -confused -fancied -wedding -farmer -behalf -reckon -dirty -rolling -platform -offers -mischief -imposed -student -daring -convey -sincere -gravely -combined -gallant -charges -submit -virgin -farewell -hunger -trembled -customs -cotton -outward -impressed -longing -disgrace -colored -wages -papa -leisure -deadly -chin -adam -hostile -wandered -railway -betrayed -admired -ruins -eastern -roses -deceived -tables -starting -feature -counted -reserve -strangely -absorbed -propose -pleasing -attained -research -monarch -clothing -dollar -illness -calmly -obeyed -pressing -daylight -comment -metal -sixteen -dwelling -depart -peaceful -lion -alarmed -furnish -resting -accused -culture -writings -conquered -trusted -column -cunning -drama -proofread -yielded -conceive -lessons -candle -offence -mixture -model -defect -destined -fourteen -acid -namely -asia -neglect -data -weapon -confessed -repose -copied -user -income -regards -bishop -lightning -authors -compressed -powder -orange -painting -careless -doorway -volumes -vulgar -sunset -recalled -abode -planted -promptly -parish -basket -deserve -mirror -upward -sadly -adding -modest -advised -largest -restless -meantime -lovers -today -moonlight -intend -rocky -pious -garments -merchants -products -dispute -poison -maybe -rifle -parting -employ -prevailed -talent -rises -climate -unlike -arrange -fortunes -puzzled -aged -ashes -bushes -esteem -nonsense -stolen -earthly -restore -lasted -selfish -renewed -canoe -protest -races -chapel -upright -quoted -formal -students -greatness -reproach -altered -questioned -bestowed -pursue -gladly -linen -vital -hopeless -dangers -travelled -nephew -bloody -commands -stomach -improved -admire -sailors -abide -forests -records -statements -upstairs -varied -letting -comrades -descent -whither -envy -pretend -folded -curtain -healthy -obscure -summit -alas -center -colonel -contest -chances -alter -landing -statue -contract -saving -faded -arrest -intent -injured -smoking -inform -retained -nobles -embrace -closing -damaged -eldest -anguish -strictly -capture -inquire -ample -justly -answers -bedroom -purely -thyself -refer -madam -railroad -columns -discharge -rescue -limit -awoke -program -reserved -persuade -deprived -endless -heroes -lowest -withdrew -commons -loaded -amidst -titles -madness -assigned -declined -jewels -youthful -stately -fragments -rushing -product -sickness -uses -engine -ashore -leather -subtle -floating -worry -steamer -designed -roger -timber -talents -murdered -vivid -killing -laura -wasted -trifle -funny -pockets -insult -temples -robin -wishing -flowing -lawyers -murmur -stopping -welfare -fishing -perish -sober -infant -norman -humor -footsteps -marquis -twilight -arrows -retire -secrets -halted -govern -colors -tempted -frontier -dealing -decent -fiery -punished -rejoined -major -placing -prudence -border -fanny -exempt -anchor -purchased -neighbors -glowing -sunlight -wealthy -seeming -shouting -naval -doubted -painter -greeted -erect -glasses -meanwhile -shooting -wagon -crisis -polite -anna -header -clergy -array -corners -loudly -texas -searching -includes -boldly -seconds -despite -hoping -problems -landscape -scarlet -mainly -measured -loyal -boiling -suited -advise -sinking -stable -commit -sweetness -dismissed -affect -shaken -evils -peasant -conveyed -extend -riches -copper -sailor -response -victor -bending -minor -crimson -teachers -bargain -fatigue -dislike -witnessed -acres -normal -sofa -mothers -deserved -persian -driver -retain -daniel -channel -berlin -smallest -excess -disgust -speeches -herbert -convent -rightly -reform -treasures -designs -filling -fortnight -frightful -speaker -tribute -procure -frankly -relieve -unjust -project -threshold -merits -morrow -traces -induce -inward -pupils -fairy -conclude -lucky -session -torture -hearty -thoughtful -strongest -warrant -complaint -guarded -angle -widely -charlotte -ardent -victims -foremost -fountain -sustained -clara -lewis -rejoice -collar -hasty -organ -replace -districts -released -compare -relate -pistol -presume -velvet -stirring -missing -facing -peoples -disturb -sermon -exchanged -partner -lowered -estates -abuse -notions -cannon -thirteen -sailing -petty -widest -prudent -caution -awhile -cigar -lifting -tidings -liquid -staying -concept -download -meetings -practised -combat -subdued -blowing -extra -japan -portions -awkward -horrid -pulling -jury -attacks -monster -simon -frozen -survive -ellen -briefly -sublime -dropping -penny -adopt -replaced -formats -curtains -helping -insist -occurs -latest -apple -pupil -twisted -discuss -firing -background -subscribe -transcribe -descend -differ -avail -cursed -fulfilled -georgia -virus -embraced -faintly -childish -aboard -reflect -dreary -serving -engage -attain -collect -disclaims -borrowed -convert -outline -peasants -assault -deceive -doctrines -struggled -hiding -prices -procured -mourning -withdraw -polished -dishes -parent -contrived -akin -betray -disguise -neighbour -punish -worldly -muscles -elbow -trifling -decline -filename -artists -repair -eagle -barren -functions -guided -fiction -shillings -duly -governed -scripture -upwards -marshal -fiercely -costume -applause -remind -pillow -jersey -abbey -nowhere -marching -catching -arrow -fitting -essence -glancing -complained -staircase -accord -sally -tremble -exile -gospel -scholar -wonders -arab -likeness -harbour -jolly -ruler -crazy -madame -deepest -lordship -greeting -monstrous -barely -mansion -honey -ladder -ending -swallowed -sunny -decree -divide -dreaming -proclaimed -viewing -defense -oldest -bidding -elect -harder -winding -liquor -perished -eighty -licensed -coloured -consult -taylor -legend -shallow -dreaded -battles -compass -harvest -transfer -heathen -gilbert -bundle -rebel -rigid -tragic -review -melted -towers -cooking -oppressed -revolt -improve -describes -goddess -convince -westward -refined -unseen -saxon -warfare -select -manhood -dressing -rejoiced -challenge -forbid -thankful -enters -genus -newly -sorrows -pattern -reveal -endured -resolve -ringing -errand -righteous -oppose -joyous -doctors -organs -haunted -chorus -adorned -resort -preacher -casting -opens -prophets -warmly -satan -workers -lantern -excite -howard -horseback -farmers -wildly -carpet -sadness -circles -allied -ceiling -glances -diamonds -vacant -despise -appealed -turkey -neighbor -spreading -discharged -phrases -entry -hardy -thorough -fertile -captive -faster -grandeur -winning -solely -malice -echoed -lodging -whistle -floated -transferred -reckoned -downstairs -invite -sandy -escort -harbor -negroes -concerns -wander -assert -dismay -pushing -jimmy -haughty -navy -fortress -blessings -insects -selling -suppressed -acquire -dresses -coldly -candles -blazing -youngest -lecture -parlor -whereby -gordon -quitted -function -morals -pouring -bullet -prevail -wiser -preaching -prolonged -annoyed -splendour -upset -pencil -emerged -trousers -debate -dated -tumult -summons -comrade -lingered -stillness -partial -welcomed -proceeds -surgeon -borders -unite -owners -sweeping -saviour -graham -behaved -pleaded -lawful -tommy -seasons -withdrawn -reckless -gossip -seventh -journal -systems -token -abstract -machines -bestow -accent -symptoms -ragged -swinging -whereof -indies -novels -failing -santa -approve -miller -lodgings -traffic -kindred -steward -reverse -survey -amuse -stretching -forthwith -receives -scandal -donors -symbol -repaired -homage -defined -washing -pavement -wisely -precise -visions -maggie -rosy -feeding -allen -husbands -labours -reduce -distressed -clearing -scottish -vaguely -treason -hunter -chambers -yielding -liking -tyrant -slaughter -dismal -assent -concert -downward -canal -evenings -fancies -murray -finer -roaring -wherefore -sharing -delayed -waking -garment -wholesome -remorse -plato -morris -porter -esteemed -cherished -brandy -homer -acute -motor -janet -offspring -network -reaches -proudly -baggage -terrace -resigned -onward -tightly -sullen -brutal -diamond -endowed -strengthened -echo -restraint -trials -headed -softened -stages -professed -era -wider -eyebrows -afar -consist -displays -flashing -hunted -beauties -lazy -devils -compact -breathless -revived -counter -venus -despatched -climbing -attract -crystal -shower -wondrous -await -armour -massive -bottles -cellar -falsehood -pillars -edgar -martha -stealing -noisy -henceforth -laden -device -touches -senate -lasting -transport -coffin -johnny -enclosed -clinging -darkened -swallow -nancy -labors -indulge -bravely -kneeling -keenly -meadow -noblest -complex -tempest -guidance -prospects -humbly -serene -roughly -dainty -brightness -restrain -splendor -pepper -basin -creeping -matthew -pony -vigour -accepts -drunken -worried -hasten -instincts -ghastly -patron -stations -louder -bursting -mournful -traitor -cautious -prior -beggar -chimney -davis -striving -converse -graces -eastward -handful -usage -villain -banished -serpent -captains -settlers -gaining -valiant -buying -shepherd -heated -travels -ali -hostess -urgent -suffice -drifted -deceased -alert -aided -blanket -pretence -andy -oven -rounded -northward -dusty -bishops -complaints -hinder -extract -lighter -kisses -sternly -footing -statesman -rebels -edges -stormy -bury -actor -blossoms -ethel -polish -shudder -begging -amy -cargo -skilful -conferred -torment -blankets -covers -bonnet -persia -lesser -indulged -springing -valued -rugged -aloft -parlour -argue -dearly -logic -panic -restrained -vainly -enlarged -franklin -tasted -rural -torrent -refrain -kissing -gorgeous -sustain -epoch -lacking -granite -delights -joyful -slumber -detached -needle -repent -behave -richly -controlled -flora -rely -dimly -withered -diet -praises -fulfil -mantle -chicken -barrel -distrust -hunters -feather -goodly -luncheon -eighteenth -expert -coolly -mistakes -jacket -gleaming -swimming -perplexed -emma -impress -bounded -worshipped -baker -shattered -olive -ernest -martial -waiter -detained -items -promote -seizing -sinner -vigor -devote -warlike -kindled -dragging -mare -sleepy -mason -foster -expose -oxen -stuart -birthday -hammer -fragrant -bleeding -sheltered -circuit -tended -lectures -plunder -jungle -numbered -famine -fuller -darted -fuel -tranquil -vicious -banquet -lighting -scanning -patent -courtyard -detailed -closet -compel -inland -pretext -stationed -margin -settling -billion -shorter -betwixt -morgan -chapters -worthless -charlie -scanty -compound -pilot -suspense -dining -joining -weekly -trenches -borrow -swelling -favoured -topic -superb -strengthen -sunrise -sturdy -dissolved -lifetime -dispersed -sergeant -brigade -verdict -honors -panting -females -richest -brighter -tiger -sabbath -crooked -prescribed -rector -honored -highway -spacious -tearing -ally -ascent -fishes -rubbing -standards -afore -ribbon -pulpit -nineteen -rescued -counting -perfume -bother -essay -renew -suggests -rider -leaping -squadron -bowing -keeper -homeward -finely -marvel -condemn -elders -sweetly -unique -piercing -sanction -forlorn -dispose -withal -sweetest -consul -raging -publish -knocking -insight -stature -oblige -urging -courses -countless -rapture -tonight -trumpet -parker -firmness -comic -breeding -factor -handled -saloon -stumbled -gladness -practise -judging -treating -forcing -ascend -countess -binding -exceed -champagne -shuddered -carter -parson -rascal -inspire -banner -divorce -nineteenth -weaker -ticket -backwards -provoked -gallop -dagger -passive -mystic -tavern -cradle -rifles -censure -sobbing -wearied -needful -fireplace -gravel -affords -prompted -bullets -moisture -furnace -healing -fewer -apron -rotten -richer -pamphlet -divers -detach -gaily -gifted -planet -enforced -vincent -fluid -brightly -damsel -frantic -neatly -anon -ascribed -insane -milan -hardened -discern -hopeful -pronounce -hastings -grievous -beseech -dances -commence -daisy -pleading -disdain -parcel -replies -drawer -homely -ruling -printing -blossom -bridle -waistcoat -extends -confirm -listing -projects -deprive -traversed -announce -hateful -gothic -coolness -coachman -expend -stepping -resign -despatch -reject -ruby -fragment -darker -flatter -patches -ordained -devout -outrage -vary -doubled -sidney -schooner -flaming -offend -sheriff -encamped -nobler -packet -shabby -classic -accuse -bridges -players -sixteenth -embarked -idol -pension -tumbled -monkey -hazard -dora -attire -marine -soothing -devised -singer -spaces -disguised -antique -poisoned -alien -sorely -summon -depressed -recourse -tortured -thickly -sounding -sombre -duel -implies -cable -ridden -acre -gilded -clumsy -satin -displeased -odor -clearer -prairie -feudal -easter -freshness -crosses -blushing -equipped -sinful -starving -bedside -abrupt -excused -injure -drooping -adored -pasture -pillar -import -founder -torch -trusting -butler -rattle -edit -gotten -headlong -outfit -valour -grammar -relaxed -mentions -muddy -arches -aspects -senior -fragrance -jenny -choosing -frighten -grotesque -tutor -besieged -stony -demon -treatise -trading -extinct -handling -boyhood -thickness -darwin -fixing -harris -rustic -nodding -snowy -shilling -swollen -stubborn -orchard -muscle -speedy -daybreak -coral -fairest -bondage -grandson -leo -proving -mounting -rushes -watchful -harness -perchance -forbade -channels -zealous -stating -sundry -prostrate -whistling -unfit -relish -slipping -forwards -entreat -belly -neutral -grasping -compose -icy -abused -armor -detect -banker -disclaim -watches -achieve -incense -jordan -fruitful -scoundrel -howling -tailor -flourish -trifles -dashing -shameful -topics -expends -parade -helmet -impose -wooded -valet -proclaim -ravine -boyish -potent -tilde -pathos -satire -delete -remnant -ignored -thrilling -lastly -airy -sketches -abyss -baffled -planning -drawings -traveled -alan -nicely -pirates -enforce -briskly -buttons -crushing -threaten -undone -frankness -rogers -villa -resource -confine -sewing -dusky -appoint -suppress -layer -kettle -boldness -mature -cuba -rabbit -needless -yankee -blinded -player -thicket -walker -outstretched -oneself -futile -fifteenth -dripping -insect -values -brooding -baptism -intrigue -senseless -yearly -baron -imply -posture -leon -beset -thereto -jewel -regained -jumping -rainy -concrete -lustre -uproar -cavern -combine -menace -pilgrims -silken -litter -fondly -tariff -dragon -ranges -frenzy -thirsty -charter -boasted -item -linger -shady -confer -pitied -involve -wanton -repay -routine -grassy -witty -yearning -cheering -bounty -renown -mayor -wrinkled -defy -junction -glories -constrained -hardware -counties -mocking -rebuke -morbid -outcome -coldness -renowned -circus -moustache -proverb -biggest -nursing -weighing -avenge -ridges -perils -larry -aloof -chickens -placid -affirm -schedule -calmness -cherish -exert -riot -tending -bacon -wasting -strata -sculpture -tangled -flavor -luggage -feebly -woven -rubbish -chaos -twinkling -muffled -accents -outbreak -turner -filthy -dealings -vanish -astray -workman -bustle -fabric -patty -discreet -accessed -preface -quiver -deserts -denounced -eric -phantom -horsemen -whirling -instruct -dickens -purest -doubly -forbear -treaties -fearless -watson -bridegroom -curate -mining -motto -faction -melting -console -fruitless -ransom -surplus -shiver -outset -lament -tissue -impelled -epic -lemon -robber -impart -statute -barry -girdle -basil -biting -button -headache -tenant -dreamy -unkind -inscribed -cushions -programme -markets -humane -languid -curses -planting -greedy -suffrage -aching -ninety -bobby -longest -danish -surround -random -afresh -ruddy -rusty -profess -sickly -duchess -regain -churchyard -fondness -quicker -thereon -balloon -amiss -sticking -forsake -eden -baptized -pastor -mutton -packing -otto -sweetheart -renounce -lifeless -adore -orphan -symbols -partake -profane -foreseen -conceit -commend -bristol -revive -connect -princely -downwards -tunnel -ivy -puzzle -expanse -shocking -rudely -balanced -fable -matches -index -cigars -liver -transmit -dispatch -onto -liar -dungeon -pagan -sordid -amber -shipping -roberts -semblance -fervent -earthquake -sloping -smoothly -tension -intrigues -comments -wedded -whiteness -paved -scruple -paintings -therewith -colleagues -shrinking -tickets -omit -beware -worker -incline -hardest -toilet -buddha -offense -woodland -gentry -penance -rooted -outburst -devour -brandon -speechless -annals -discord -archie -detain -soda -naughty -salon -idly -peru -candid -blooming -cooper -nasty -breeches -abound -essays -plaster -chairman -dismiss -provoke -reside -hazel -farthest -invent -climax -avowed -tempting -define -stretches -cupboard -digest -vale -methinks -barley -plateau -devise -rubber -adieu -exclude -whisky -inflict -nightfall -hermit -divert -explore -skipper -tiresome -insure -laboured -shepherds -lilies -ballad -befall -teddy -daresay -marches -chaplain -deceit -challenged -herald -lowly -engraved -bowels -blindness -maxim -marshall -baking -visage -mingle -bathing -client -ghostly -tenor -arouse -verbal -brazil -recess -unclean -infer -alley -softness -spinning -farming -fasten -actress -valor -untouched -tactics -adverse -rosa -nina -caprice -candy -planets -sanguine -odour -convict -package -pirate -salmon -alma -hetty -madly -pudding -suburbs -dares -pondered -raiment -foreman -thirteenth -sultan -medal -ether -heading -subdue -adorn -warmer -cluster -fullest -scornful -bailey -dingy -scaffold -flutter -martyr -handy -drawers -craving -bureau -oscar -huddled -diverse -ardor -necklace -alight -steadfast -inflamed -spelling -respond -fourteenth -singers -cloudy -fleeting -phases -latent -whiskey -willow -sojourn -booty -camel -implore -gliding -tested -racing -brightest -joel -extremes -labored -exit -humming -sometime -adult -solace -hardship -donkey -trader -rumour -amply -confide -favors -withstand -robust -monthly -ignore -envoy -contrive -chatter -judas -reforms -clatter -allude -junior -tony -signals -drying -harshly -limestone -pebbles -willie -knitting -ordeal -foresee -repast -abject -bridal -insults -twisting -bully -canon -oval -cedar -soften -comely -redeem -poultry -horseman -wager -pathway -wistful -advent -drowning -faintest -befell -crawling -lumber -lavish -galley -blunder -rainbow -hereby -outlook -smitten -installed -marking -consume -resent -sterling -barking -bower -factors -midday -aright -nigger -lily -cursing -marco -folding -discerned -helpful -persist -frigate -spotted -atoms -outlet -withheld -fairies -taller -arctic -colleague -butcher -drowsy -sunken -collins -gallows -hindu -omen -ensure -denotes -sentenced -unfair -bucket -glitter -bamboo -pallid -mildly -dealer -yorkshire -emblem -groaning -fiscal -charging -railing -inferred -wardrobe -texture -priesthood -seaman -palmer -weighty -morsel -meagre -shaggy -nightmare -carbon -lawless -stairway -sarcasm -poorly -fitness -thoughtless -mellow -austere -pensive -flavour -ante -baptist -scatter -boer -extant -brazen -bolted -abel -meddle -axis -kinder -closes -giddy -crouching -buddhist -collapse -varies -mainland -repute -cushion -confound -layers -glimmer -equals -redress -crafty -enlarge -hardness -dotted -solar -heartless -disclose -juncture -foresaw -quaker -charcoal -chilly -friction -wholesale -trodden -translate -mortar -truthful -caress -curling -abreast -sample -matron -claiming -plural -spider -jelly -parchment -playful -barber -profile -provides -noting -heightened -finance -averse -azure -campaigns -lessen -acquaint -tribune -pilgrim -paltry -sporting -maker -gaping -standpoint -basic -boiler -banish -prosper -friar -nightly -monkeys -enjoys -riddle -cleaning -exclaim -voting -darkly -bearded -flannel -fasting -trailer -avert -unchanged -mirrors -phoebe -conform -railways -paddle -innate -volley -agrees -simpler -padre -rustle -lava -trillion -lyric -downright -foresight -pallor -salad -greetings -chestnut -vicar -noel -attic -savings -dispense -trusty -plaintive -ethics -pitcher -annoy -amends -forenoon -sparkle -outskirts -fiddle -football -derby -quarry -rigging -dizzy -sequence -cabbage -assign -tackle -sceptre -eddy -twinkle -sandstone -fathom -lever -muster -sleepless -mortgage -succour -repress -valid -witchcraft -paula -muzzle -clusters -guinea -tarry -glossy -iris -relic -vocal -downfall -construct -undue -vapor -unlocked -foretold -artful -downcast -missions -pregnant -reddish -peeping -aghast -turmoil -forfeit -inspect -perverse -dover -ambush -verdure -ankle -oddly -hairy -northwest -laurel -wary -converts -weakly -tremor -curly -prestige -freezing -heedless -sentry -rowing -sulphur -cooling -beastly -nuisance -abstain -stanza -target -dictate -empress -manure -nigel -sidewalk -grievance -axes -bony -invest -rabble -rally -rumor -girlish -shortest -retort -rocking -emerge -lonesome -unarmed -victuals -quickness -parma -diseased -irons -canyon -vapour -lances -godly -therefrom -davy -framework -squirrel -blacksmith -withhold -outright -cement -fraction -purer -presses -dissolve -bases -maxwell -closest -reproof -weaving -earnings -indoors -picnic -misled -pompous -brian -respite -exploit -tracing -passport -confines -township -needy -beaver -lookout -onion -couples -speakers -woollen -lightness -bitten -vested -yawning -mustache -whirlwind -farthing -biscuit -reserves -uncouth -armchair -greasy -leaden -lining -embark -untrue -grating -wintry -stalwart -stamping -apiece -wilful -timely -herein -canton -moslem -invade -livid -buggy -prolong -weaken -repressed -sequel diff --git a/testdata/3-syllable-words.txt b/testdata/3-syllable-words.txt deleted file mode 100644 index afa8541..0000000 --- a/testdata/3-syllable-words.txt +++ /dev/null @@ -1,2002 +0,0 @@ -another -however -together -anything -already -several -united -general -family -really -dishonour -different -possible -following -understand -beautiful -overthrown -fishermen -fundraising -inasmuch -countrymen -character -interest -idea -continued -everything -suddenly -position -remember -natural -copyright -history -certainly -attention -government -company -probably -important -opinion -agreement -gentleman -various -according -beginning -donations -enemy -condition -including -influence -appearance -whatever -period -occasion -easily -afterwards -expression -property -usual -expected -entirely -direction -considered -permission -afternoon -discovered -difficult -officers -happiness -religion -personal -understood -determined -century -intended -terrible -medium -possession -perfectly -memory -existence -religious -repeated -physical -example -directly -serious -sufficient -wonderful -paragraph -official -provided -opposite -distribute -consider -accepted -advantage -ideas -decided -officer -difference -curious -excellent -confidence -exactly -importance -finally -liberty -gentlemen -concerning -forgotten -evidence -similar -conditions -otherwise -carefully -presented -remembered -animal -created -quietly -regarded -succeeded -anyone -animals -occupied -opening -capital -presently -permitted -enemies -companion -established -satisfied -numerous -frequently -powerful -national -principal -suggested -equally -principle -consequence -principles -characters -dangerous -genius -popular -appointed -demanded -distinguished -interests -sympathy -affection -suffering -proceeded -carrying -collection -imagine -admitted -arrival -november -december -impression -relations -rapidly -regular -quality -discover -completely -included -countenance -previous -poetry -policy -excitement -assistance -dignity -october -possibly -separate -receiving -capable -instantly -relation -practical -yesterday -delicate -continue -unable -victory -constantly -india -connected -addition -committed -italian -acquaintance -sacrifice -exercise -theory -commanded -nobody -minister -energy -provisions -description -excited -citizens -intention -thoroughly -everywhere -connection -protection -edition -directed -evident -surrounded -requirements -introduced -becoming -volunteers -whenever -successful -devoted -israel -disappeared -accustomed -recognized -innocent -attitude -returning -visible -actual -companions -prisoner -utterly -violent -september -departure -delivered -equipment -earlier -visited -anywhere -extremely -quantity -conclusion -computer -affected -origin -eternal -audience -limited -services -library -remaining -containing -confusion -editions -attended -glorious -acquainted -unhappy -article -prisoners -adopted -absolute -readily -argument -related -punishment -articles -extended -emotion -destruction -increasing -expenses -ignorant -generous -mystery -consciousness -formerly -production -compliance -reported -listening -accomplished -purposes -delighted -suspicion -opinions -indicate -misery -properly -singular -violence -commercial -suggestion -domestic -concluded -reference -approaching -providing -ignorance -hitherto -benefit -eagerly -atmosphere -invited -departed -catholic -replacement -division -slavery -decision -probable -governor -forever -delightful -occasions -readable -beloved -apparent -attempted -centuries -hastily -located -announcement -circumstance -distinction -essential -recovered -belonging -permanent -gratitude -sentiment -desperate -imagined -enormous -defective -conviction -insisted -selected -developed -mistaken -damages -ambition -ideal -descended -discussion -instrument -elements -entering -africa -sovereign -horrible -displaying -abandoned -eleven -collected -arrangement -politics -industry -profession -interview -devotion -creation -supported -uniform -multitude -infinite -copying -apartment -sensible -charity -realized -element -reflection -accordance -examined -somebody -incident -poverty -prevented -completed -resistance -suspected -deserted -cavalry -exception -offering -exhausted -critical -directions -residence -steadily -intimate -enterprise -favourite -heavily -assembled -existed -settlement -overcome -performing -recently -instructions -furniture -additions -adventure -royalty -annual -obtaining -moreover -average -conducted -obvious -foundation -liberal -commonly -wondering -tenderness -cardinal -regiment -distinctly -creating -performance -election -conception -reflected -preceding -definite -emperor -tendency -enabled -earnestly -genuine -passages -succession -persuaded -inquiry -perfection -wherever -fortunate -newspaper -employment -misfortune -providence -determine -commission -provinces -relative -wandering -provision -regarding -vanity -deliver -represent -existing -suitable -legally -gathering -examine -instances -theatre -realize -intercourse -criminal -intervals -intellect -resources -narrative -sentiments -amusement -recognize -preparing -construction -positive -attracted -satisfy -agony -maria -enjoyment -horizon -precisely -canada -registered -estimate -visitor -harmony -paragraphs -unconscious -mutual -external -universe -instruction -injury -earliest -enable -discipline -converted -wilderness -offices -silently -responded -uncertain -neglected -exquisite -engagement -messenger -privilege -physician -organized -covering -tradition -sensation -travelling -tragedy -specific -commander -paradise -villages -favorite -criticism -hospital -restrictions -musical -samuel -extensive -emotions -jealousy -translation -procession -elected -citizen -reminded -funeral -arrested -consisted -proceedings -romantic -reception -heartily -warriors -abruptly -solution -pretended -assembly -tobacco -entity -bitterly -colony -disclaimers -financial -entertained -medicine -reverence -appointment -solicit -objection -arrangements -complying -grandfather -vigorous -accepting -primitive -arguments -surrender -establish -appearing -department -handkerchief -easier -assurance -heavenly -proceeding -impatient -certainty -salvation -tremendous -afforded -newspapers -improvement -treasury -visitors -erected -recover -committee -promises -effective -distinguish -manifest -confession -management -moderate -area -solitude -instruments -struggling -federal -editor -acknowledge -motionless -remedy -pacific -gratefully -president -justified -openly -advancing -recorded -dramatic -internal -furious -adventures -exclusion -luxury -awakened -protected -contented -neighborhood -abundance -medical -garrison -heroic -prominent -affections -surrounding -remainder -expecting -respecting -unpleasant -anxiously -innocence -incomplete -secretly -invention -piano -defeated -electric -interval -occupy -cruelty -proposal -destiny -recognised -ancestors -commanding -happily -temptation -subsequent -willingly -spectacle -uneasy -attractive -interfere -effected -passengers -donation -witnesses -specified -calculate -savages -eloquence -sensitive -appetite -picturesque -courtesy -remembrance -elegant -avoided -delicious -offended -memories -encounter -consisting -sufferings -translated -formation -immortal -gallery -parallel -continent -impatience -unity -images -submitted -speedily -consented -amazement -hereafter -eminent -examples -exercised -everyone -abundant -undertake -magazine -bitterness -guardian -rejected -injustice -expressions -protested -abandon -artistic -desirous -alliance -maximum -hideous -hamilton -unworthy -modified -miracle -observing -resemblance -rebellion -forbidden -requested -promoting -purity -solemnly -republic -telephone -infantry -companies -addresses -introduce -conversion -african -answering -virtuous -anyway -constructed -editing -accomplish -suspended -threatening -addressing -encourage -intentions -liable -traveller -dependent -endeavour -convention -endeavoured -prejudice -lieutenant -surprising -assisted -extending -marvellous -confident -selection -inquiries -beforehand -retorted -cheerfully -righteousness -producing -reasoning -gravity -languages -asserted -bodily -oliver -faculty -possessions -disciples -divisions -justify -manuscript -warrior -impressions -specially -unwilling -adapted -civilized -invented -encountered -maintaining -barbara -respected -behaviour -desolate -revenue -infringement -eagerness -visiting -travellers -enjoying -totally -tenderly -disaster -computers -ascended -incidents -dominion -complexion -relatives -comprehend -opera -officials -compliment -approval -compassion -latitude -projected -resentment -transcription -document -glittering -attachment -ambitious -holiday -recollect -recommend -suspicious -resulting -seventy -clergyman -disorder -exalted -binary -anyhow -instructed -bewildered -positions -edited -continues -loyalty -documents -expressing -awaiting -potatoes -entertain -faculties -hesitate -seventeen -feminine -warranties -happier -gigantic -tyranny -dignified -magistrate -respective -studying -depended -locations -neighbouring -promotion -faithfully -excellence -awaited -poetic -consulted -whereupon -terribly -suspicions -sentences -radiant -indignant -pertaining -disclaimer -specimens -ascertain -supposing -attending -angrily -hurriedly -quantities -produces -admission -terrified -persisted -conference -generals -surroundings -occasioned -invasion -discretion -exceeding -triumphant -defiance -grandmother -promising -scenery -specimen -eloquent -manager -rational -processing -accurate -refusal -salary -defended -ingenious -successor -ultimate -submission -monument -exciting -prosperous -declaring -thoughtfully -allowing -adjoining -cathedral -caroline -tomorrow -finishing -forgetting -mysteries -honesty -sacrificed -utterance -reflections -pathetic -imperfect -hurrying -attempting -offensive -florida -reverend -successive -perception -buffalo -develop -excessive -mexican -piety -substantial -subjected -exhibit -corruption -cabinet -repeating -allowance -treachery -attendant -murderer -theories -possesses -factory -attendance -honestly -descending -sincerely -succeeding -cautiously -afflicted -petition -sparkling -disposal -carriages -ornament -fantastic -patiently -foliage -influenced -governments -pleasantly -columbus -attendants -modesty -diana -decisive -negative -occurrence -festival -wickedness -carelessly -preference -removal -assertion -comedy -adequate -newsletter -battery -attraction -detective -revolver -paces -paperwork -emphasis -exclusive -uncommon -confounded -envelope -whoever -expensive -headquarters -startling -cigarette -embarrassed -volunteer -reaction -regiments -partially -allusion -benjamin -ministry -sexual -marrying -penalty -corridor -proportions -alternate -quivering -objected -ascertained -acceptance -cordial -engineer -encoding -disappear -diminished -objections -suggestions -diseases -detected -cicero -communion -forgiveness -awfully -commonplace -resembled -contracted -inscription -indulgence -enlightened -compliments -extension -constitute -inflicted -downloading -overhead -commencement -oppression -publicly -melody -descendants -candidate -obstinate -foreigners -elderly -overwhelmed -telegraph -varying -barbarous -modify -earnestness -exertion -refusing -inspection -regretted -pursuing -foundations -undertook -telegram -magistrates -substitute -primary -prophecy -spectacles -obsolete -competent -gratified -circular -securing -neighboring -accounted -augustus -ivory -policeman -personage -classical -alongside -rewarded -forgiven -realised -arising -observer -avenue -elephant -affecting -efficient -supporting -disturbance -seemingly -painfully -imposing -notable -invested -imprisoned -assented -ideals -resulted -illusion -troublesome -repentance -compromise -respectful -chariot -assistant -saluted -boundary -indebted -processes -weariness -resolute -consumption -resemble -gradual -shadowy -annoyance -execute -monarchy -endeavor -barrier -politeness -courteous -logical -discussing -judicial -consistent -ridicule -verily -exertions -tedious -impressive -displeasure -underneath -resisted -provincial -merciful -genial -conjecture -covenant -interposed -properties -perilous -obstacle -destitute -plantation -pitiful -requisite -payable -intensely -dominions -amazing -trivial -rejoicing -removing -palaces -sorrowful -improvements -typical -recognise -expressive -destroying -excepting -champion -admiring -chemical -especial -attentive -maintenance -admiral -resume -imitate -happening -majestic -messages -agency -arisen -intently -depression -technical -vehicle -flattering -prodigious -fortified -salute -contribute -attribute -discontent -orderly -messengers -penetrate -holiness -housekeeper -productions -militia -nobleman -energies -affliction -photograph -jupiter -transparent -qualified -odious -loneliness -dazzling -novelty -charities -elephants -endurance -organic -allegiance -expressly -duration -collecting -precaution -privately -endeavored -entrusted -questioning -monuments -loveliness -confronted -traveling -profoundly -casual -analyzed -historic -studio -exposure -unbroken -apollo -inserted -treacherous -invalid -corrected -infancy -gentleness -explosion -selfishness -exceptions -insolent -behavior -nowadays -realise -feverish -tropical -overthrow -achievement -assumption -humorous -composure -orator -ecstasy -retirement -authorized -reconciled -mercury -elegance -chivalry -luminous -confided -escaping -terrific -parliament -sympathies -suicide -sinister -advocate -destructive -reporter -detachment -infernal -fugitive -excluded -balcony -nevada -disastrous -burial -employee -employer -transaction -victories -attorney -politely -italians -impulses -ascending -cruelly -happiest -insulted -enchanted -reflecting -conqueror -dynasty -signature -heretofore -orthodox -offerings -irony -inquiring -colonists -illustrate -nursery -adoption -reluctance -imported -sovereigns -incessant -correctly -embroidered -bravery -confinement -transported -insolence -secrecy -thereupon -unlucky -adjacent -attacking -deposit -refinement -forcibly -reprinted -gaiety -robbery -transmitted -gratify -heavier -batteries -pilgrimage -idleness -merrily -excursion -eminence -montana -shivering -premises -productive -discouraged -persuasion -invaded -ungrateful -cultivate -marian -magnitude -precautions -requiring -opponent -cowardly -protecting -desiring -precision -seventeenth -dreadfully -asterisk -edifice -reckoning -syllable -handwriting -reduction -cordially -dialogue -diligence -disgusted -retiring -valentine -dimensions -infamous -powerless -passenger -episode -populace -persistent -inviting -criminals -leisurely -audible -radiance -underline -unequal -enduring -deference -formally -manual -disturbing -mischievous -foreigner -masculine -umbrella -mineral -alaska -aversion -customers -flattery -director -temporal -patriot -malicious -skeleton -progressive -reconcile -insurance -interrupt -signify -contemplate -aforesaid -befallen -awaken -conductor -dependence -guarantee -procedure -projecting -cheerfulness -deity -muscular -restaurant -exhaustion -hercules -attach -fellowship -demanding -ensuring -longitude -secondly -violin -radical -accursed -tendencies -resident -ominous -overboard -currency -violet -mastery -objective -reluctant -patronage -revenues -vexation -indicates -overheard -thereafter -exporting -taxation -disputed -suggestive -expansion -sophia -commanders -interfered -noticing -courtiers -consequent -particles -signifies -paternal -engaging -avoiding -abolished -idiot -applying -creative -lowering -degraded -merchandise -despairing -asylum -gardener -protector -concealment -accession -connexion -considers -achievements -deserving -veteran -advancement -inventor -hopelessly -judicious -testify -governess -orchestra -foregoing -maternal -maryland -corrections -completion -forsaken -spirited -christendom -defending -disregard -notifies -asunder -mentioning -pastoral -musician -mentally -apostle -convincing -commented -precipice -outdated -dialect -cowardice -denial -underground -vividly -puritan -conjunction -oppressive -formula -plentiful -constable -enveloped -enmity -improper -architect -register -heroine -defensive -constitutes -fisherman -measuring -rebellious -consulting -manila -massacre -transition -burgundy -collections -alcohol -impending -declining -spectator -winchester -commonwealth -tremulous -admitting -discomfort -bachelor -courageous -carpenter -concluding -dictated -appalling -imminent -dominant -leadership -wearily -diary -apprehend -securely -connecting -celebrate -deputy -discussions -refreshment -amendment -appealing -vertical -manchester -silvery -inherent -preventing -inference -enclosure -publisher -refreshing -irene -vinegar -uncovered -gracefully -mightily -deities -overtake -improving -ferocious -subsistence -disciple -revival -citadel -despotism -internet -mechanism -directors -brilliancy -extracted -veranda -diminish -complaining -temperate -gambling -magazines -submarine -regardless -fearfully -convicted -deception -religions -governing -prophetic -undergo -poisonous -concession -starvation -fortitude -malignant -accorded -eccentric -anecdote -scrutiny -diversion -correspond -interpret -vehement -operate -disgraceful -redemption -embassy -unfinished -frivolous -deficient -heroism -apparel -carelessness -connections -industries -forefathers -restricted -ludicrous -colossal -stimulus -vigilance -overcoat -expanded -archbishop -abuses -chocolate -privileged -overtook -caravan -eliza -comparing -implements -recompense -cylinder -summary -photographs -colleges -vehemence -unlikely -joyfully -purposely -remedies -indexes -investment -catalogue -strenuous -chemistry -maritime -secular -averted -oracle -regulate -etiquette -theater -thanksgiving -conducting -distorted -obliging -opium -pavilion -metallic -instructive -revealing -prevalent -magical -manifold -volcanic -magnetic -decency -observance -impartial -slippery -oxygen -wellington -heresy -location -ancestor -quotation -custody -plausible -rhetoric -avarice -commotion -congenial -telescope -deposits -renaissance -angelo -murderous -impudent -genoa -courier -literal -usefulness -profusion -twentieth -overcame -womanhood -envious -forbidding -amateur -morally -perspective -reverie -nourishment -corrupted -constancy -distressing -novelist -editors -intricate -collision -supplying -indirect -unnoticed -precedent -vacation -inspiring -contradict -servitude -elastic -prettiest -involving -acquiring -rendezvous -watery -publishing -customer -genesis -eleventh -partition -fanciful -sentinel -unmarried -aesthetic -contentment -organism -emphatic -occurring -impudence -corporal -heritage -brotherhood -inherit -handsomely -butterfly -narrowly -insulting -diligent -wretchedness -encampment -possessor -absorbing -descendant -engineers -clerical -ordinance -vocation -admirer -timothy -auspicious -reducing -ritual -sanctity -cynical -inspector -adjustment -epistle -turbulent -unaware -initial -minimum -correction -overlook -magician -mystical -inhabit -willingness -composing -controlling -temperance -translations -martyrdom -listener -genera -contrivance -museum -alphabet -pernicious -secluded -resisting -disgusting -ethical -recital -ownership -scrupulous -momentous -albeit -civilised -defiant -suppression -unjustly -aggressive -predicted -ponderous -arrogance -commissioned -ratio -masterpiece -embraces -cavalier -rivalry -pestilence -receiver -distinctive -consummate -populous -baronet -commodore -advocates -mutiny -chronicles -comforting -potato -transient -anarchy -revision -disordered -menacing -conveyance -chivalrous -capricious -entreaty -womanly -digestion -infamy -amorous -premature -extinction -scandalous -multiply -subscription -copious -privacy -arena -sensual -trustworthy -jamaica -traveler -particle -stupendous -statistics -calendar -repulsive -conclusive -peaceable -emerald -uppermost -arduous -senators -nominal -demonstrate -merciless -coloring -perusal -discarded -infection -ruinous -conventions -stumbling -conveying -syllables -enchantment -composer -audacious -partnership -pioneer -abnormal -omission -canopy -athletic -drunkenness -intrusion -exacting -percentage -cavity -abstraction -forefinger -erection -withdrawal -senator -ancestral -forbearance -workmanship -legacy -compelling -flickering -derision -vehicles -whimsical -explicit -indolent -indistinct -coveted -sumptuous -reliance -panama -everyday -evermore -parapet -cessation -fervently -disabled -arrogant -livelihood -scattering -somerset -surveying -desertion -believer -negligence -millionaire -flowering -unwonted -restlessness -actively -countryman -outrageous -foolishness -hurricane -indulging -atrocious -tapestry -impotent -acquitted -palpable -apprentice -compartment -sarcastic -emerging -atonement -whereabouts -mountainous -annoying -unreal -injunction -scarcity -aggregate -illegal -stealthily -volcano -sullenly -commissions -resounded -gunpowder -combining -pitiless -vacancy -crumbling -wanderer -depicted -boisterous -lucia -penitent -abiding -immoral -dishonest -supplement -cleverness -ascetic -quotations -friendliness -rejection -variance -firmament -absorption -terminate -cleanliness -collective -philippines -ignoble -adjective -folio -dismissal -enchanting -purified diff --git a/testdata/4-syllable-words.txt b/testdata/4-syllable-words.txt deleted file mode 100644 index 77c5887..0000000 --- a/testdata/4-syllable-words.txt +++ /dev/null @@ -1,803 +0,0 @@ -electronic -necessary -information -especially -undertaken -particular -impossible -generally -society -experience -circumstances -conversation -political -difficulties -remarkably -authority -original -usually -situation -military -ordinary -interesting -overtaken -violation -honourable -altogether -additional -distribution -peculiar -necessity -education -material -naturally -remarkable -evidently -immediate -interested -apparently -familiar -actually -distributed -literature -population -inhabitants -satisfaction -accompanied -understanding -absolutely -explanation -superior -spiritual -distributing -gradually -intelligence -variety -everybody -development -literary -interrupted -represented -admiration -anxiety -miserable -sufficiently -anybody -reality -valuable -discovery -mysterious -expedition -universal -unfortunate -philosophy -comfortable -european -melancholy -reputation -agreeable -resolution -majority -reasonable -humanity -opposition -celebrated -disposition -enthusiasm -materials -community -magnificent -nevertheless -equivalent -generations -independent -observation -applicable -separated -seriously -calculated -accordingly -constitution -generation -limitation -experienced -practically -scientific -territory -alexander -operation -exceedingly -execution -astonishment -activity -security -capacity -available -unusual -establishment -interior -notwithstanding -consequences -hesitated -ability -references -application -intelligent -consequently -ceremony -carolina -contributions -operations -indignation -prosperity -whatsoever -considering -previously -obedience -advantages -independence -solitary -historical -unexpected -respectable -testimony -disappointed -simplicity -comparison -composition -indifferent -occupation -invitation -inferior -disappointment -responsible -indicated -indifference -institutions -introduction -revolution -admirable -accompany -ridiculous -publication -correspondence -preparations -alteration -preparation -situated -occasional -observations -derivative -convenient -secretary -experiment -cultivated -perpetual -affectionate -proposition -revelation -recognition -undoubtedly -indirectly -temporary -desirable -artillery -combination -temperature -professional -agitation -institution -obviously -recollection -identify -expectation -invisible -hesitation -formidable -machinery -economic -violently -philosopher -incapable -exhibited -amiable -economy -favourable -prohibition -artificial -illustrious -curiously -inspiration -particulars -apprehension -significance -personally -morality -inclination -differences -imperial -conspicuous -nobility -declaration -separation -recommended -legislation -corresponding -favorable -appropriate -privileges -fashionable -positively -inaccurate -appreciate -literally -consolation -phenomena -regularly -inheritance -experiments -periodic -entertainment -influences -resembling -dedicated -prominently -delicacy -indemnify -sacrifices -obligation -honorable -significant -infinitely -agitated -elaborate -elevation -interpreted -extremity -mechanical -successfully -temperament -contributed -sincerity -facility -indicating -incredible -everlasting -deductible -imitation -encouragement -impatiently -varieties -irregular -illustrated -fundamental -cultivation -representing -venerable -australia -illustration -congregation -undertaking -subsequently -animated -industrial -elevated -equality -communicate -essentially -vicinity -sympathetic -continuous -continual -examining -peculiarly -vegetables -customary -wonderfully -confirmation -antiquity -severity -conservative -beautifully -inhabited -exclamation -apparatus -ceremonies -decidedly -identical -superstition -remembering -vegetable -eternity -propriety -unconsciously -intimacy -legitimate -manifested -fidelity -architecture -evolution -deliberate -victorious -recovery -unnatural -exclusively -corporation -exercises -sovereignty -accessible -philosophers -historian -intensity -democracy -deposited -analysis -inherited -ultimately -missionary -prejudices -humility -diameter -identity -poetical -ambassador -constituted -interference -extravagant -momentary -rapidity -alternative -astonishing -competition -obedient -memorable -contemplation -manufacture -comfortably -exhibition -uneasiness -controversy -resignation -singularly -repeatedly -conspiracy -preservation -continuing -calamity -profitable -speculation -discoveries -principally -celestial -patriotism -complicated -apology -imprisonment -restoration -jurisdiction -victoria -penetrated -agriculture -accuracy -democratic -isolated -conventional -proclamation -indiana -executive -comparative -proprietor -uncertainty -concentrated -ammunition -secondary -persecution -circulation -passionately -nominally -phenomenon -canadian -convenience -desperately -habitual -voluntary -contemplated -expedient -compensation -decorated -sentimental -hostility -regulations -posterity -patriotic -interruption -definition -overwhelming -energetic -repetition -legislature -fortunately -destination -associate -instinctively -subordinate -regulating -legislative -differently -furiously -relationship -demonstration -expectations -vegetation -confidential -alabama -integrity -solicited -fascinating -desolation -assuredly -activities -efficiency -tranquillity -navigation -admirably -approbation -theology -monastery -definitely -associates -communities -sanctuary -superstitious -expenditure -encouraging -diplomatic -compilation -captivity -vigorously -monotonous -catastrophe -respectfully -discovering -tolerably -punctuation -annually -resurrection -consecrated -obscurity -missionaries -arbitrary -benevolent -perplexity -companionship -emergency -contribution -supposition -synonymous -environment -solemnity -insurrection -iniquity -meditation -hypothesis -magnificence -necessities -accusation -irritated -industrious -adversary -luxurious -irritation -acceptable -accurately -divinity -occupations -supremacy -correspondent -reasonably -reluctantly -republican -explanations -notorious -estimation -exceptional -recollections -establishing -colonial -penetrating -superficial -identified -contributing -consequential -confidently -superfluous -accidental -continuance -delivery -variations -miraculous -insensible -variation -locality -hospitable -benevolence -indication -accomplishment -commissioners -arabian -fascination -inconvenience -contradiction -historians -consultation -habitation -disappearance -practicable -consternation -expenditures -territories -anonymous -injurious -discontinue -alternately -endeavouring -transportation -comprehension -incessantly -improbable -moderation -awakening -vitality -comprehensive -personages -congratulate -terminated -extravagance -tolerable -occupying -absurdity -resolutely -characterized -permanently -emotional -respectively -memorial -beneficial -separately -horizontal -termination -eminently -calculation -traditional -unsuccessful -politician -regulation -minority -acquisition -municipal -condemnation -miniature -regulated -intimately -unlimited -inconsistent -degradation -prosecution -abundantly -disadvantage -abolition -demonstrated -interpreter -redistribute -hostilities -acknowledgment -combinations -inadequate -developing -audacity -delicately -indefinite -perceptible -solicitude -effectual -contemptuous -felicity -obstinacy -conscientious -perseverance -harmonious -laborious -fertility -introducing -advantageous -millennium -theatrical -commodities -imperative -influential -automobile -insufficient -advertisement -spontaneous -apparition -utility -contemptible -intervention -susceptible -mathematics -substituted -physically -monopoly -animation -sagacity -dissatisfied -anticipate -inquisition -imperious -impetuous -cemetery -oblivion -prohibited -decoration -affectation -gratifying -stupidity -monotony -colorado -antagonist -presentation -exultation -coincidence -adventurous -dissolution -instituted -geography -systematic -virtually -conformity -invincible -impertinent -intuition -tabernacle -excessively -analogy -peninsula -manufactured -psychology -veritable -investigate -accomplishments -hypocrisy -noticeable -predecessor -diplomacy -similarly -facilities -transformation -ornamental -certificate -arabia -exposition -thermometer -desperation -civility -concentration -speculative -serenity -perspiration -stimulated -seriousness -mortality -maturity -relatively -isolation -biography -misunderstood -delirium -ingratitude -bewilderment -dictionary -adoration -celebration -conceivable -mediaeval -analogous -vivacity -veneration -manifestly -battalion -powerfully -erroneous -violated -supervision -velocity -deficiency -operating -vehemently -primarily -decorations -adventurer -unanimous -casually -administer -unimportant -deplorable -benefactor -bohemia -dexterity -mythology -circumference -ferocity -satisfying -reliable -stability -timidity -recreation -salutation -serviceable -operated -luxuriant -mutually -intimation -separating -oratory -electrical -alacrity -neutrality -unfamiliar -reformation -inhabitant -nomination -reproduction -consistency -inquisitive -affirmative -applications -precarious -arithmetic -considerate -officially -impunity -abandonment -idolatry -preferable -advertising -barbarian -proximity -dissipated -accommodate -automatic -ordinances -effectively -precipitate -embarrassing -demonstrations -detestable -abandoning -variable -diversity -meridian -continental -hysterical -disregarded -unscrupulous -adversity -salutary -provocation -tumultuous -exaltation -obstinately -embroidery -acquiescence -exploration -stationary -disconcerted -toleration -bohemian -affinity -lamentable -appellation -liberally -apprehensive -conveniently -lamentations diff --git a/testdata/5-syllable-words.txt b/testdata/5-syllable-words.txt deleted file mode 100644 index bdedcc2..0000000 --- a/testdata/5-syllable-words.txt +++ /dev/null @@ -1,196 +0,0 @@ -immediately -opportunity -considerable -individual -associated -particularly -intellectual -imagination -extraordinary -consideration -curiosity -liability -occasionally -necessarily -characteristic -continually -examination -communication -organization -civilization -possibility -individuals -solicitation -specifically -administration -determination -proprietary -satisfactory -originally -inevitable -opportunities -california -comparatively -representative -modification -disagreeable -international -representation -preliminary -experiences -considerably -personality -unnecessary -probability -deliberately -association -innumerable -communicated -invariably -investigation -constitutional -hospitality -representatives -educational -generosity -unfortunately -characteristics -interpretation -representations -considerations -enthusiastic -uncomfortable -appreciation -irresistible -contemporary -intolerable -redistributing -indispensable -imaginary -philosophical -eventually -agricultural -university -associations -exaggerated -hereditary -supernatural -possibilities -negotiations -unexpectedly -aristocracy -accompanying -effectually -universally -popularity -insignificant -aristocratic -explanatory -unusually -inevitably -ingenuity -organizations -communications -humiliation -unreasonable -immortality -perpetually -illuminated -gratification -electricity -intelligible -mechanically -civilisation -accumulated -originator -accommodation -theological -anticipation -justification -abominable -sensibility -affectionately -recommendation -imaginative -voluntarily -unsolicited -redistribution -accidentally -emancipation -deliberation -elementary -pecuniary -intermediate -manufacturing -geographical -ordinarily -manifestation -temporarily -inexplicable -perpendicular -laboratory -inability -superintendent -indescribable -exaggeration -regularity -impenetrable -disinterested -mathematical -qualifications -psychological -impracticable -accompaniment -editorial -exasperated -independently -organisation -accumulation -unaccountable -vocabulary -parliamentary -illumination -nationality -misunderstanding -universities -inseparable -economical -participation -intoxicated -ceremonial -initiative -inexhaustible -administrative -humiliating -periodical -interminable -similarity -congratulations -inaccessible -inconceivable -dissatisfaction -preparatory -continuation -invaluable -incorporated -contradictory -indefinitely -intoxication -subterranean -classification -anniversary -discrimination -appropriation -territorial -disobedience -uniformity -inexorable -equilibrium -assassination -manufacturers -geological -executioner -inexperienced -significantly -experimental -cooperation diff --git a/testdata/6-syllable-words.txt b/testdata/6-syllable-words.txt deleted file mode 100644 index a064dc7..0000000 --- a/testdata/6-syllable-words.txt +++ /dev/null @@ -1,19 +0,0 @@ -electronically -responsibility -ecclesiastical -mediterranean -revolutionary -identification -familiarity -involuntarily -peculiarities -simultaneously -impossibility -peculiarity -incomprehensible -originality -satisfactorily -unsatisfactory -respectability -unintelligible -reconciliation diff --git a/testdata/7-syllable-words.txt b/testdata/7-syllable-words.txt deleted file mode 100644 index 09780a7..0000000 --- a/testdata/7-syllable-words.txt +++ /dev/null @@ -1 +0,0 @@ -individuality \ No newline at end of file diff --git a/testdata/PRODUCT/Maxent/labels.gob b/testdata/PRODUCT/Maxent/labels.gob new file mode 100644 index 0000000..2c63066 Binary files /dev/null and b/testdata/PRODUCT/Maxent/labels.gob differ diff --git a/testdata/PRODUCT/Maxent/mapping.gob b/testdata/PRODUCT/Maxent/mapping.gob new file mode 100644 index 0000000..be40ddc Binary files /dev/null and b/testdata/PRODUCT/Maxent/mapping.gob differ diff --git a/testdata/PRODUCT/Maxent/weights.gob b/testdata/PRODUCT/Maxent/weights.gob new file mode 100644 index 0000000..e7fa514 Binary files /dev/null and b/testdata/PRODUCT/Maxent/weights.gob differ diff --git a/testdata/case.json b/testdata/case.json deleted file mode 100644 index cf4cd19..0000000 --- a/testdata/case.json +++ /dev/null @@ -1,632 +0,0 @@ -[ - { - "input": "follow step-by-step instructions", - "none": "follow step by step instructions", - "snake": "follow_step_by_step_instructions", - "param": "follow-step-by-step-instructions", - "dot": "follow.step.by.step.instructions", - "constant": "FOLLOW_STEP_BY_STEP_INSTRUCTIONS", - "pascal": "FollowStepByStepInstructions", - "camel": "followStepByStepInstructions" - }, - { - "input": "follow step-BY-step instructions", - "none": "follow step by step instructions", - "snake": "follow_step_by_step_instructions", - "param": "follow-step-by-step-instructions", - "dot": "follow.step.by.step.instructions", - "constant": "FOLLOW_STEP_BY_STEP_INSTRUCTIONS", - "pascal": "FollowStepByStepInstructions", - "camel": "followStepByStepInstructions" - }, - { - "input": "this sub-phrase is nice", - "none": "this sub phrase is nice", - "snake": "this_sub_phrase_is_nice", - "param": "this-sub-phrase-is-nice", - "dot": "this.sub.phrase.is.nice", - "constant": "THIS_SUB_PHRASE_IS_NICE", - "pascal": "ThisSubPhraseIsNice", - "camel": "thisSubPhraseIsNice" - }, - { - "input": "catchy title: a subtitle", - "none": "catchy title a subtitle", - "snake": "catchy_title_a_subtitle", - "param": "catchy-title-a-subtitle", - "dot": "catchy.title.a.subtitle", - "constant": "CATCHY_TITLE_A_SUBTITLE", - "pascal": "CatchyTitleASubtitle", - "camel": "catchyTitleASubtitle" - }, - { - "input": "catchy title: \"a quoted subtitle\"", - "none": "catchy title a quoted subtitle", - "snake": "catchy_title_a_quoted_subtitle", - "param": "catchy-title-a-quoted-subtitle", - "dot": "catchy.title.a.quoted.subtitle", - "constant": "CATCHY_TITLE_A_QUOTED_SUBTITLE", - "pascal": "CatchyTitleAQuotedSubtitle", - "camel": "catchyTitleAQuotedSubtitle" - }, - { - "input": "catchy title: “‘a twice quoted subtitle’”", - "none": "catchy title a twice quoted subtitle", - "snake": "catchy_title_a_twice_quoted_subtitle", - "param": "catchy-title-a-twice-quoted-subtitle", - "dot": "catchy.title.a.twice.quoted.subtitle", - "constant": "CATCHY_TITLE_A_TWICE_QUOTED_SUBTITLE", - "pascal": "CatchyTitleATwiceQuotedSubtitle", - "camel": "catchyTitleATwiceQuotedSubtitle" - }, - { - "input": "\"a title inside double quotes\"", - "none": "a title inside double quotes", - "snake": "a_title_inside_double_quotes", - "param": "a-title-inside-double-quotes", - "dot": "a.title.inside.double.quotes", - "constant": "A_TITLE_INSIDE_DOUBLE_QUOTES", - "pascal": "ATitleInsideDoubleQuotes", - "camel": "aTitleInsideDoubleQuotes" - }, - { - "input": "all words capitalized", - "none": "all words capitalized", - "snake": "all_words_capitalized", - "param": "all-words-capitalized", - "dot": "all.words.capitalized", - "constant": "ALL_WORDS_CAPITALIZED", - "pascal": "AllWordsCapitalized", - "camel": "allWordsCapitalized" - }, - { - "input": "small words are for by and of lowercase", - "none": "small words are for by and of lowercase", - "snake": "small_words_are_for_by_and_of_lowercase", - "param": "small-words-are-for-by-and-of-lowercase", - "dot": "small.words.are.for.by.and.of.lowercase", - "constant": "SMALL_WORDS_ARE_FOR_BY_AND_OF_LOWERCASE", - "pascal": "SmallWordsAreForByAndOfLowercase", - "camel": "smallWordsAreForByAndOfLowercase" - }, - { - "input": "a small word starts", - "none": "a small word starts", - "snake": "a_small_word_starts", - "param": "a-small-word-starts", - "dot": "a.small.word.starts", - "constant": "A_SMALL_WORD_STARTS", - "pascal": "ASmallWordStarts", - "camel": "aSmallWordStarts" - }, - { - "input": "a small word it ends on", - "none": "a small word it ends on", - "snake": "a_small_word_it_ends_on", - "param": "a-small-word-it-ends-on", - "dot": "a.small.word.it.ends.on", - "constant": "A_SMALL_WORD_IT_ENDS_ON", - "pascal": "ASmallWordItEndsOn", - "camel": "aSmallWordItEndsOn" - }, - { - "input": "do questions work?", - "none": "do questions work", - "snake": "do_questions_work", - "param": "do-questions-work", - "dot": "do.questions.work", - "constant": "DO_QUESTIONS_WORK", - "pascal": "DoQuestionsWork", - "camel": "doQuestionsWork" - }, - { - "input": "multiple sentences. more than one.", - "none": "multiple sentences more than one", - "snake": "multiple_sentences_more_than_one", - "param": "multiple-sentences-more-than-one", - "dot": "multiple.sentences.more.than.one", - "constant": "MULTIPLE_SENTENCES_MORE_THAN_ONE", - "pascal": "MultipleSentencesMoreThanOne", - "camel": "multipleSentencesMoreThanOne" - }, - { - "input": "Ends with small word of", - "none": "ends with small word of", - "snake": "ends_with_small_word_of", - "param": "ends-with-small-word-of", - "dot": "ends.with.small.word.of", - "constant": "ENDS_WITH_SMALL_WORD_OF", - "pascal": "EndsWithSmallWordOf", - "camel": "endsWithSmallWordOf" - }, - { - "input": "double quoted \"inner\" word", - "none": "double quoted inner word", - "snake": "double_quoted_inner_word", - "param": "double-quoted-inner-word", - "dot": "double.quoted.inner.word", - "constant": "DOUBLE_QUOTED_INNER_WORD", - "pascal": "DoubleQuotedInnerWord", - "camel": "doubleQuotedInnerWord" - }, - { - "input": "single quoted 'inner' word", - "none": "single quoted inner word", - "snake": "single_quoted_inner_word", - "param": "single-quoted-inner-word", - "dot": "single.quoted.inner.word", - "constant": "SINGLE_QUOTED_INNER_WORD", - "pascal": "SingleQuotedInnerWord", - "camel": "singleQuotedInnerWord" - }, - { - "input": "fancy double quoted “inner” word", - "none": "fancy double quoted inner word", - "snake": "fancy_double_quoted_inner_word", - "param": "fancy-double-quoted-inner-word", - "dot": "fancy.double.quoted.inner.word", - "constant": "FANCY_DOUBLE_QUOTED_INNER_WORD", - "pascal": "FancyDoubleQuotedInnerWord", - "camel": "fancyDoubleQuotedInnerWord" - }, - { - "input": "fancy single quoted ‘inner’ word", - "none": "fancy single quoted inner word", - "snake": "fancy_single_quoted_inner_word", - "param": "fancy-single-quoted-inner-word", - "dot": "fancy.single.quoted.inner.word", - "constant": "FANCY_SINGLE_QUOTED_INNER_WORD", - "pascal": "FancySingleQuotedInnerWord", - "camel": "fancySingleQuotedInnerWord" - }, - { - "input": "this vs. that", - "none": "this vs that", - "snake": "this_vs_that", - "param": "this-vs-that", - "dot": "this.vs.that", - "constant": "THIS_VS_THAT", - "pascal": "ThisVsThat", - "camel": "thisVsThat" - }, - { - "input": "this vs that", - "none": "this vs that", - "snake": "this_vs_that", - "param": "this-vs-that", - "dot": "this.vs.that", - "constant": "THIS_VS_THAT", - "pascal": "ThisVsThat", - "camel": "thisVsThat" - }, - { - "input": "this v. that", - "none": "this v that", - "snake": "this_v_that", - "param": "this-v-that", - "dot": "this.v.that", - "constant": "THIS_V_THAT", - "pascal": "ThisVThat", - "camel": "thisVThat" - }, - { - "input": "this v that", - "none": "this v that", - "snake": "this_v_that", - "param": "this-v-that", - "dot": "this.v.that", - "constant": "THIS_V_THAT", - "pascal": "ThisVThat", - "camel": "thisVThat" - }, - { - "input": "catchy title: substance subtitle", - "none": "catchy title substance subtitle", - "snake": "catchy_title_substance_subtitle", - "param": "catchy-title-substance-subtitle", - "dot": "catchy.title.substance.subtitle", - "constant": "CATCHY_TITLE_SUBSTANCE_SUBTITLE", - "pascal": "CatchyTitleSubstanceSubtitle", - "camel": "catchyTitleSubstanceSubtitle" - }, - { - "input": "have you read “The Lottery”?", - "none": "have you read the lottery", - "snake": "have_you_read_the_lottery", - "param": "have-you-read-the-lottery", - "dot": "have.you.read.the.lottery", - "constant": "HAVE_YOU_READ_THE_LOTTERY", - "pascal": "HaveYouReadTheLottery", - "camel": "haveYouReadTheLottery" - }, - { - "input": "Drink this piña colada while you listen to ænima", - "none": "drink this piña colada while you listen to ænima", - "snake": "drink_this_piña_colada_while_you_listen_to_ænima", - "param": "drink-this-piña-colada-while-you-listen-to-ænima", - "dot": "drink.this.piña.colada.while.you.listen.to.ænima", - "constant": "DRINK_THIS_PIÑA_COLADA_WHILE_YOU_LISTEN_TO_ÆNIMA", - "pascal": "DrinkThisPiñaColadaWhileYouListenToÆnima", - "camel": "drinkThisPiñaColadaWhileYouListenToÆnima" - }, - { - "input": "don't break", - "none": "don t break", - "snake": "don_t_break", - "param": "don-t-break", - "dot": "don.t.break", - "constant": "DON_T_BREAK", - "pascal": "DonTBreak", - "camel": "donTBreak" - }, - { - "input": "we keep NASA capitalized", - "none": "we keep nasa capitalized", - "snake": "we_keep_nasa_capitalized", - "param": "we-keep-nasa-capitalized", - "dot": "we.keep.nasa.capitalized", - "constant": "WE_KEEP_NASA_CAPITALIZED", - "pascal": "WeKeepNasaCapitalized", - "camel": "weKeepNasaCapitalized" - }, - { - "input": "leave Q&A unscathed", - "none": "leave q a unscathed", - "snake": "leave_q_a_unscathed", - "param": "leave-q-a-unscathed", - "dot": "leave.q.a.unscathed", - "constant": "LEAVE_Q_A_UNSCATHED", - "pascal": "LeaveQAUnscathed", - "camel": "leaveQAUnscathed" - }, - { - "input": "your hair[cut] looks (nice)", - "none": "your hair cut looks nice", - "snake": "your_hair_cut_looks_nice", - "param": "your-hair-cut-looks-nice", - "dot": "your.hair.cut.looks.nice", - "constant": "YOUR_HAIR_CUT_LOOKS_NICE", - "pascal": "YourHairCutLooksNice", - "camel": "yourHairCutLooksNice" - }, - { - "input": "keep that colo(u)r", - "none": "keep that colo u r", - "snake": "keep_that_colo_u_r", - "param": "keep-that-colo-u-r", - "dot": "keep.that.colo.u.r", - "constant": "KEEP_THAT_COLO_U_R", - "pascal": "KeepThatColoUR", - "camel": "keepThatColoUR" - }, - { - "input": "capitalize hyphenated words on-demand", - "none": "capitalize hyphenated words on demand", - "snake": "capitalize_hyphenated_words_on_demand", - "param": "capitalize-hyphenated-words-on-demand", - "dot": "capitalize.hyphenated.words.on.demand", - "constant": "CAPITALIZE_HYPHENATED_WORDS_ON_DEMAND", - "pascal": "CapitalizeHyphenatedWordsOnDemand", - "camel": "capitalizeHyphenatedWordsOnDemand" - }, - { - "input": "take them on: special lower cases", - "none": "take them on special lower cases", - "snake": "take_them_on_special_lower_cases", - "param": "take-them-on-special-lower-cases", - "dot": "take.them.on.special.lower.cases", - "constant": "TAKE_THEM_ON_SPECIAL_LOWER_CASES", - "pascal": "TakeThemOnSpecialLowerCases", - "camel": "takeThemOnSpecialLowerCases" - }, - { - "input": "Notes and observations regarding Apple’s announcements from ‘The Beat Goes On’ special event", - "none": "notes and observations regarding apple s announcements from the beat goes on special event", - "snake": "notes_and_observations_regarding_apple_s_announcements_from_the_beat_goes_on_special_event", - "param": "notes-and-observations-regarding-apple-s-announcements-from-the-beat-goes-on-special-event", - "dot": "notes.and.observations.regarding.apple.s.announcements.from.the.beat.goes.on.special.event", - "constant": "NOTES_AND_OBSERVATIONS_REGARDING_APPLE_S_ANNOUNCEMENTS_FROM_THE_BEAT_GOES_ON_SPECIAL_EVENT", - "pascal": "NotesAndObservationsRegardingAppleSAnnouncementsFromTheBeatGoesOnSpecialEvent", - "camel": "notesAndObservationsRegardingAppleSAnnouncementsFromTheBeatGoesOnSpecialEvent" - }, - { - "input": "a title and/or string", - "none": "a title and or string", - "snake": "a_title_and_or_string", - "param": "a-title-and-or-string", - "dot": "a.title.and.or.string", - "constant": "A_TITLE_AND_OR_STRING", - "pascal": "ATitleAndOrString", - "camel": "aTitleAndOrString" - }, - { - "input": "dance with me/let’s face the music and dance", - "none": "dance with me let s face the music and dance", - "snake": "dance_with_me_let_s_face_the_music_and_dance", - "param": "dance-with-me-let-s-face-the-music-and-dance", - "dot": "dance.with.me.let.s.face.the.music.and.dance", - "constant": "DANCE_WITH_ME_LET_S_FACE_THE_MUSIC_AND_DANCE", - "pascal": "DanceWithMeLetSFaceTheMusicAndDance", - "camel": "danceWithMeLetSFaceTheMusicAndDance" - }, - { - "input": "34th 3rd 2nd", - "none": "34th 3rd 2nd", - "snake": "34th_3rd_2nd", - "param": "34th-3rd-2nd", - "dot": "34th.3rd.2nd", - "constant": "34TH_3RD_2ND", - "pascal": "34th3rd2nd", - "camel": "34th3rd2nd" - }, - { - "input": "Q&A with steve jobs: 'that's what happens in technology'", - "none": "q a with steve jobs that s what happens in technology", - "snake": "q_a_with_steve_jobs_that_s_what_happens_in_technology", - "param": "q-a-with-steve-jobs-that-s-what-happens-in-technology", - "dot": "q.a.with.steve.jobs.that.s.what.happens.in.technology", - "constant": "Q_A_WITH_STEVE_JOBS_THAT_S_WHAT_HAPPENS_IN_TECHNOLOGY", - "pascal": "QAWithSteveJobsThatSWhatHappensInTechnology", - "camel": "qAWithSteveJobsThatSWhatHappensInTechnology" - }, - { - "input": "What is AT&T's problem?", - "none": "what is at t s problem", - "snake": "what_is_at_t_s_problem", - "param": "what-is-at-t-s-problem", - "dot": "what.is.at.t.s.problem", - "constant": "WHAT_IS_AT_T_S_PROBLEM", - "pascal": "WhatIsAtTSProblem", - "camel": "whatIsAtTSProblem" - }, - { - "input": "Apple deal with AT&T falls through", - "none": "apple deal with at t falls through", - "snake": "apple_deal_with_at_t_falls_through", - "param": "apple-deal-with-at-t-falls-through", - "dot": "apple.deal.with.at.t.falls.through", - "constant": "APPLE_DEAL_WITH_AT_T_FALLS_THROUGH", - "pascal": "AppleDealWithAtTFallsThrough", - "camel": "appleDealWithAtTFallsThrough" - }, - { - "input": "The SEC's Apple probe: what you need to know", - "none": "the sec s apple probe what you need to know", - "snake": "the_sec_s_apple_probe_what_you_need_to_know", - "param": "the-sec-s-apple-probe-what-you-need-to-know", - "dot": "the.sec.s.apple.probe.what.you.need.to.know", - "constant": "THE_SEC_S_APPLE_PROBE_WHAT_YOU_NEED_TO_KNOW", - "pascal": "TheSecSAppleProbeWhatYouNeedToKnow", - "camel": "theSecSAppleProbeWhatYouNeedToKnow" - }, - { - "input": "The SEC's Apple probe: what you need to know", - "none": "the sec s apple probe what you need to know", - "snake": "the_sec_s_apple_probe_what_you_need_to_know", - "param": "the-sec-s-apple-probe-what-you-need-to-know", - "dot": "the.sec.s.apple.probe.what.you.need.to.know", - "constant": "THE_SEC_S_APPLE_PROBE_WHAT_YOU_NEED_TO_KNOW", - "pascal": "TheSecSAppleProbeWhatYouNeedToKnow", - "camel": "theSecSAppleProbeWhatYouNeedToKnow" - }, - { - "input": "'by the Way, small word at the start but within quotes.'", - "none": "by the way small word at the start but within quotes", - "snake": "by_the_way_small_word_at_the_start_but_within_quotes", - "param": "by-the-way-small-word-at-the-start-but-within-quotes", - "dot": "by.the.way.small.word.at.the.start.but.within.quotes", - "constant": "BY_THE_WAY_SMALL_WORD_AT_THE_START_BUT_WITHIN_QUOTES", - "pascal": "ByTheWaySmallWordAtTheStartButWithinQuotes", - "camel": "byTheWaySmallWordAtTheStartButWithinQuotes" - }, - { - "input": "Small word at end is nothing to be afraid of", - "none": "small word at end is nothing to be afraid of", - "snake": "small_word_at_end_is_nothing_to_be_afraid_of", - "param": "small-word-at-end-is-nothing-to-be-afraid-of", - "dot": "small.word.at.end.is.nothing.to.be.afraid.of", - "constant": "SMALL_WORD_AT_END_IS_NOTHING_TO_BE_AFRAID_OF", - "pascal": "SmallWordAtEndIsNothingToBeAfraidOf", - "camel": "smallWordAtEndIsNothingToBeAfraidOf" - }, - { - "input": "Starting Sub-Phrase With a Small Word: a Trick, Perhaps?", - "none": "starting sub phrase with a small word a trick perhaps", - "snake": "starting_sub_phrase_with_a_small_word_a_trick_perhaps", - "param": "starting-sub-phrase-with-a-small-word-a-trick-perhaps", - "dot": "starting.sub.phrase.with.a.small.word.a.trick.perhaps", - "constant": "STARTING_SUB_PHRASE_WITH_A_SMALL_WORD_A_TRICK_PERHAPS", - "pascal": "StartingSubPhraseWithASmallWordATrickPerhaps", - "camel": "startingSubPhraseWithASmallWordATrickPerhaps" - }, - { - "input": "Sub-Phrase With a Small Word in Quotes: 'a Trick, Perhaps?'", - "none": "sub phrase with a small word in quotes a trick perhaps", - "snake": "sub_phrase_with_a_small_word_in_quotes_a_trick_perhaps", - "param": "sub-phrase-with-a-small-word-in-quotes-a-trick-perhaps", - "dot": "sub.phrase.with.a.small.word.in.quotes.a.trick.perhaps", - "constant": "SUB_PHRASE_WITH_A_SMALL_WORD_IN_QUOTES_A_TRICK_PERHAPS", - "pascal": "SubPhraseWithASmallWordInQuotesATrickPerhaps", - "camel": "subPhraseWithASmallWordInQuotesATrickPerhaps" - }, - { - "input": "Starting a Hyphen Delimited Sub-Phrase With a Small Word - a Trick, Perhaps?", - "none": "starting a hyphen delimited sub phrase with a small word a trick perhaps", - "snake": "starting_a_hyphen_delimited_sub_phrase_with_a_small_word_a_trick_perhaps", - "param": "starting-a-hyphen-delimited-sub-phrase-with-a-small-word-a-trick-perhaps", - "dot": "starting.a.hyphen.delimited.sub.phrase.with.a.small.word.a.trick.perhaps", - "constant": "STARTING_A_HYPHEN_DELIMITED_SUB_PHRASE_WITH_A_SMALL_WORD_A_TRICK_PERHAPS", - "pascal": "StartingAHyphenDelimitedSubPhraseWithASmallWordATrickPerhaps", - "camel": "startingAHyphenDelimitedSubPhraseWithASmallWordATrickPerhaps" - }, - { - "input": "Hyphen Delimited Sub-Phrase With a Small Word in Quotes - 'a Trick, Perhaps?'", - "none": "hyphen delimited sub phrase with a small word in quotes a trick perhaps", - "snake": "hyphen_delimited_sub_phrase_with_a_small_word_in_quotes_a_trick_perhaps", - "param": "hyphen-delimited-sub-phrase-with-a-small-word-in-quotes-a-trick-perhaps", - "dot": "hyphen.delimited.sub.phrase.with.a.small.word.in.quotes.a.trick.perhaps", - "constant": "HYPHEN_DELIMITED_SUB_PHRASE_WITH_A_SMALL_WORD_IN_QUOTES_A_TRICK_PERHAPS", - "pascal": "HyphenDelimitedSubPhraseWithASmallWordInQuotesATrickPerhaps", - "camel": "hyphenDelimitedSubPhraseWithASmallWordInQuotesATrickPerhaps" - }, - { - "input": "Snakes on a Plane - The TV Edit - The Famous Line", - "none": "snakes on a plane the tv edit the famous line", - "snake": "snakes_on_a_plane_the_tv_edit_the_famous_line", - "param": "snakes-on-a-plane-the-tv-edit-the-famous-line", - "dot": "snakes.on.a.plane.the.tv.edit.the.famous.line", - "constant": "SNAKES_ON_A_PLANE_THE_TV_EDIT_THE_FAMOUS_LINE", - "pascal": "SnakesOnAPlaneTheTvEditTheFamousLine", - "camel": "snakesOnAPlaneTheTvEditTheFamousLine" - }, - { - "input": "Starting an Em Dash Delimited Sub-Phrase With a Small Word — a Trick, Perhaps?", - "none": "starting an em dash delimited sub phrase with a small word a trick perhaps", - "snake": "starting_an_em_dash_delimited_sub_phrase_with_a_small_word_a_trick_perhaps", - "param": "starting-an-em-dash-delimited-sub-phrase-with-a-small-word-a-trick-perhaps", - "dot": "starting.an.em.dash.delimited.sub.phrase.with.a.small.word.a.trick.perhaps", - "constant": "STARTING_AN_EM_DASH_DELIMITED_SUB_PHRASE_WITH_A_SMALL_WORD_A_TRICK_PERHAPS", - "pascal": "StartingAnEmDashDelimitedSubPhraseWithASmallWordATrickPerhaps", - "camel": "startingAnEmDashDelimitedSubPhraseWithASmallWordATrickPerhaps" - }, - { - "input": "Em Dash Delimited Sub-Phrase With a Small Word in Quotes — 'a Trick, Perhaps?'", - "none": "em dash delimited sub phrase with a small word in quotes a trick perhaps", - "snake": "em_dash_delimited_sub_phrase_with_a_small_word_in_quotes_a_trick_perhaps", - "param": "em-dash-delimited-sub-phrase-with-a-small-word-in-quotes-a-trick-perhaps", - "dot": "em.dash.delimited.sub.phrase.with.a.small.word.in.quotes.a.trick.perhaps", - "constant": "EM_DASH_DELIMITED_SUB_PHRASE_WITH_A_SMALL_WORD_IN_QUOTES_A_TRICK_PERHAPS", - "pascal": "EmDashDelimitedSubPhraseWithASmallWordInQuotesATrickPerhaps", - "camel": "emDashDelimitedSubPhraseWithASmallWordInQuotesATrickPerhaps" - }, - { - "input": "Snakes on a Plane — The TV Edit — The Famous Line", - "none": "snakes on a plane the tv edit the famous line", - "snake": "snakes_on_a_plane_the_tv_edit_the_famous_line", - "param": "snakes-on-a-plane-the-tv-edit-the-famous-line", - "dot": "snakes.on.a.plane.the.tv.edit.the.famous.line", - "constant": "SNAKES_ON_A_PLANE_THE_TV_EDIT_THE_FAMOUS_LINE", - "pascal": "SnakesOnAPlaneTheTvEditTheFamousLine", - "camel": "snakesOnAPlaneTheTvEditTheFamousLine" - }, - { - "input": "\"Nothing to Be Afraid of?\"", - "none": "nothing to be afraid of", - "snake": "nothing_to_be_afraid_of", - "param": "nothing-to-be-afraid-of", - "dot": "nothing.to.be.afraid.of", - "constant": "NOTHING_TO_BE_AFRAID_OF", - "pascal": "NothingToBeAfraidOf", - "camel": "nothingToBeAfraidOf" - }, - { - "input": "a thing", - "none": "a thing", - "snake": "a_thing", - "param": "a-thing", - "dot": "a.thing", - "constant": "A_THING", - "pascal": "AThing", - "camel": "aThing" - }, - { - "input": "2lmc Spool: 'gruber on OmniFocus and vapo(u)rware'", - "none": "2lmc spool gruber on omni focus and vapo u rware", - "snake": "2lmc_spool_gruber_on_omni_focus_and_vapo_u_rware", - "param": "2lmc-spool-gruber-on-omni-focus-and-vapo-u-rware", - "dot": "2lmc.spool.gruber.on.omni.focus.and.vapo.u.rware", - "constant": "2LMC_SPOOL_GRUBER_ON_OMNI_FOCUS_AND_VAPO_U_RWARE", - "pascal": "2lmcSpoolGruberOnOmniFocusAndVapoURware", - "camel": "2lmcSpoolGruberOnOmniFocusAndVapoURware" - }, - { - "input": "reading between the lines of steve jobs’s ‘thoughts on music’", - "none": "reading between the lines of steve jobs s thoughts on music", - "snake": "reading_between_the_lines_of_steve_jobs_s_thoughts_on_music", - "param": "reading-between-the-lines-of-steve-jobs-s-thoughts-on-music", - "dot": "reading.between.the.lines.of.steve.jobs.s.thoughts.on.music", - "constant": "READING_BETWEEN_THE_LINES_OF_STEVE_JOBS_S_THOUGHTS_ON_MUSIC", - "pascal": "ReadingBetweenTheLinesOfSteveJobsSThoughtsOnMusic", - "camel": "readingBetweenTheLinesOfSteveJobsSThoughtsOnMusic" - }, - { - "input": "seriously, ‘repair permissions’ is voodoo", - "none": "seriously repair permissions is voodoo", - "snake": "seriously_repair_permissions_is_voodoo", - "param": "seriously-repair-permissions-is-voodoo", - "dot": "seriously.repair.permissions.is.voodoo", - "constant": "SERIOUSLY_REPAIR_PERMISSIONS_IS_VOODOO", - "pascal": "SeriouslyRepairPermissionsIsVoodoo", - "camel": "seriouslyRepairPermissionsIsVoodoo" - }, - { - "input": "generalissimo francisco franco: still dead; kieren McCarthy: still a jackass", - "none": "generalissimo francisco franco still dead kieren mc carthy still a jackass", - "snake": "generalissimo_francisco_franco_still_dead_kieren_mc_carthy_still_a_jackass", - "param": "generalissimo-francisco-franco-still-dead-kieren-mc-carthy-still-a-jackass", - "dot": "generalissimo.francisco.franco.still.dead.kieren.mc.carthy.still.a.jackass", - "constant": "GENERALISSIMO_FRANCISCO_FRANCO_STILL_DEAD_KIEREN_MC_CARTHY_STILL_A_JACKASS", - "pascal": "GeneralissimoFranciscoFrancoStillDeadKierenMcCarthyStillAJackass", - "camel": "generalissimoFranciscoFrancoStillDeadKierenMcCarthyStillAJackass" - }, - { - "input": "O'Reilly should be untouched", - "none": "o reilly should be untouched", - "snake": "o_reilly_should_be_untouched", - "param": "o-reilly-should-be-untouched", - "dot": "o.reilly.should.be.untouched", - "constant": "O_REILLY_SHOULD_BE_UNTOUCHED", - "pascal": "OReillyShouldBeUntouched", - "camel": "oReillyShouldBeUntouched" - }, - { - "input": "Mr McTavish went to MacDonalds", - "none": "mr mc tavish went to mac donalds", - "snake": "mr_mc_tavish_went_to_mac_donalds", - "param": "mr-mc-tavish-went-to-mac-donalds", - "dot": "mr.mc.tavish.went.to.mac.donalds", - "constant": "MR_MC_TAVISH_WENT_TO_MAC_DONALDS", - "pascal": "MrMcTavishWentToMacDonalds", - "camel": "mrMcTavishWentToMacDonalds" - }, - { - "input": "this shouldn't\nget mangled", - "none": "this shouldn t get mangled", - "snake": "this_shouldn_t_get_mangled", - "param": "this-shouldn-t-get-mangled", - "dot": "this.shouldn.t.get.mangled", - "constant": "THIS_SHOULDN_T_GET_MANGLED", - "pascal": "ThisShouldnTGetMangled", - "camel": "thisShouldnTGetMangled" - }, - { - "input": "mac mc MAC MC machine", - "none": "mac mc mac mc machine", - "snake": "mac_mc_mac_mc_machine", - "param": "mac-mc-mac-mc-machine", - "dot": "mac.mc.mac.mc.machine", - "constant": "MAC_MC_MAC_MC_MACHINE", - "pascal": "MacMcMacMcMachine", - "camel": "macMcMacMcMachine" - }, - { - "input": "foo bar 5th st", - "none": "foo bar 5th st", - "snake": "foo_bar_5th_st", - "param": "foo-bar-5th-st", - "dot": "foo.bar.5th.st", - "constant": "FOO_BAR_5TH_ST", - "pascal": "FooBar5thSt", - "camel": "fooBar5thSt" - }, - { - "input": "hmm ... this is interesting...", - "none": "hmm this is interesting", - "snake": "hmm_this_is_interesting", - "param": "hmm-this-is-interesting", - "dot": "hmm.this.is.interesting", - "constant": "HMM_THIS_IS_INTERESTING", - "pascal": "HmmThisIsInteresting", - "camel": "hmmThisIsInteresting" - } -] \ No newline at end of file diff --git a/testdata/golden_rules_en.json b/testdata/golden_rules_en.json index 66e0ad7..f2126cd 100644 --- a/testdata/golden_rules_en.json +++ b/testdata/golden_rules_en.json @@ -217,6 +217,79 @@ "Is that you?" ] }, + { + "name": "31. Double punctuation (question mark / exclamation point)", + "input": "The first item 2.) The second item", + "output": [ + "1.) The first item", + "2.) The second item" + ] + }, + { + "name": "32. List (period followed by parens and period to end item)", + "input": "The first item. 2.) The second item.", + "output": [ + "1.) The first item.", + "2.) The second item." + ] + }, + { + "name": "33.) List (parens and no period to end item)", + "input": "The first item. 2.) The second item.", + "output": [ + "1) The first item", + "2) The second item" + ] + }, + { + "name": "34. List (parens and period to end item)", + "input": "The first item. 2) The second item.", + "output": [ + "1) The first item.", + "2) The second item." + ] + }, + { + "name": "35.) List (period to mark list and no period to end item)", + "input": "The first item. 2) The second item.", + "output": [ + "1. The first item", + "2. The second item" + ] + }, + { + "name": "36. List (period to mark list and period to end item)", + "input": "1. The first item. 2. The second item.", + "output": [ + "1. The first item.", + "2. The second item." + ] + }, + { + "name": "37. List with bullet", + "input": "• 9. The first item • 10. The second item", + "output": [ + "• 9. The first item", + "• 10. The second item" + ] + }, + { + "name": "38. List with hypthen", + "input": "⁃9. The first item ⁃10. The second item", + "output": [ + "⁃9. The first item", + "⁃10. The second item" + ] + }, + { + "name": "39. Alphabetical list", + "input": "a. The first item b. The second item c. The third list item", + "output": [ + "a. The first item", + "b. The second item", + "c. The third list item" + ] + }, { "name":"40. Errant newlines in the middle of sentences (PDF)", "input":"This is a sentence\ncut off in the middle because pdf.", diff --git a/testdata/golden_rules_es.json b/testdata/golden_rules_es.json deleted file mode 100644 index 122d93b..0000000 --- a/testdata/golden_rules_es.json +++ /dev/null @@ -1,234 +0,0 @@ -[ - { - "name": "Question mark to end sentence #001", - "input": "¿Cómo está hoy? Espero que muy bien.", - "output": [ - "¿Cómo está hoy?", "Espero que muy bien." - ] - }, - { - "name": "Exclamation point to end sentence #002", - "input": "¡Hola señorita! Espero que muy bien.", - "output": [ - "¡Hola señorita!", "Espero que muy bien." - ] - }, - { - "name": "Abbreviations #003", - "input": "Hola Srta. Ledesma. Buenos días, soy el Lic. Naser Pastoriza, y él es mi padre, el Dr. Naser.", - "output": [ - "Hola Srta. Ledesma.", - "Buenos días, soy el Lic. Naser Pastoriza, y él es mi padre, el Dr. Naser." - ] - }, - { - "name": "Numbers #004", - "input": "¡La casa cuesta $170.500.000,00! ¡Muy costosa! Se prevé una disminución del 12.5% para el próximo año.", - "output": [ - "¡La casa cuesta $170.500.000,00!", - "¡Muy costosa!", - "Se prevé una disminución del 12.5% para el próximo año." - ] - }, - { - "name": "Quotations #005", - "input": "«Ninguna mente extraordinaria está exenta de un toque de demencia.», dijo Aristóteles.", - "output": [ - "«Ninguna mente extraordinaria está exenta de un toque de demencia.», dijo Aristóteles." - ] - }, - { - "name": "correctly segments text #001", - "input": "«Ninguna mente extraordinaria está exenta de un toque de demencia», dijo Aristóteles. Pablo, ¿adónde vas? ¡¿Qué viste?!", - "output": [ - "«Ninguna mente extraordinaria está exenta de un toque de demencia», dijo Aristóteles.", - "Pablo, ¿adónde vas?", - "¡¿Qué viste?!" - ] - }, - { - "name": "correctly segments text #002", - "input": "Admón. es administración o me equivoco.", - "output": [ - "Admón. es administración o me equivoco." - ] - }, - { - "name": "correctly segments text #005", - "input": "¡Hola Srta. Ledesma! ¿Cómo está hoy? Espero que muy bien.", - "output": [ - "¡Hola Srta. Ledesma!", - "¿Cómo está hoy?", - "Espero que muy bien." - ] - }, - { - "name": "correctly segments text #006", - "input": "Buenos días, soy el Lic. Naser Pastoriza, y él es mi padre, el Dr. Naser.", - "output": [ - "Buenos días, soy el Lic. Naser Pastoriza, y él es mi padre, el Dr. Naser." - ] - }, - { - "name": "correctly segments text #007", - "input": "He apuntado una cita para la siguiente fecha: Mar. 23 de Nov. de 2014. Gracias.", - "output": [ - "He apuntado una cita para la siguiente fecha: Mar. 23 de Nov. de 2014.", - "Gracias." - ] - }, - { - "name": "correctly segments text #008", - "input": "Núm. de tel: 351.123.465.4. Envíe mis saludos a la Sra. Rescia.", - "output": [ - "Núm. de tel: 351.123.465.4.", - "Envíe mis saludos a la Sra. Rescia." - ] - }, - { - "name": "correctly segments text #009", - "input": "Cero en la escala Celsius o de grados centígrados (0 °C) se define como el equivalente a 273.15 K, con una diferencia de temperatura de 1 °C equivalente a una diferencia de 1 Kelvin. Esto significa que 100 °C, definido como el punto de ebullición del agua, se define como el equivalente a 373.15 K.", - "output": [ - "Cero en la escala Celsius o de grados centígrados (0 °C) se define como el equivalente a 273.15 K, con una diferencia de temperatura de 1 °C equivalente a una diferencia de 1 Kelvin.", - "Esto significa que 100 °C, definido como el punto de ebullición del agua, se define como el equivalente a 373.15 K." - ] - }, - { - "name": "correctly segments text #010", - "input": "Durante la primera misión del Discovery (30 Ago. 1984 15:08.10) tuvo lugar el lanzamiento de dos satélites de comunicación, el nombre de esta misión fue STS-41-D.", - "output": [ - "Durante la primera misión del Discovery (30 Ago. 1984 15:08.10) tuvo lugar el lanzamiento de dos satélites de comunicación, el nombre de esta misión fue STS-41-D." - ] - }, - { - "name": "correctly segments text #011", - "input": "Frase del gran José Hernández: \"Aquí me pongo a cantar / al compás de la vigüela, / que el hombre que lo desvela / una pena estrordinaria, / como la ave solitaria / con el cantar se consuela. / [...] \".", - "output": [ - "Frase del gran José Hernández: \"Aquí me pongo a cantar / al compás de la vigüela, / que el hombre que lo desvela / una pena estrordinaria, / como la ave solitaria / con el cantar se consuela. / [...] \"." - ] - }, - { - "name": "correctly segments text #012", - "input": "Citando a Criss Jami «Prefiero ser un artista a ser un líder, irónicamente, un líder tiene que seguir las reglas.», lo cual parece muy acertado.", - "output": [ - "Citando a Criss Jami «Prefiero ser un artista a ser un líder, irónicamente, un líder tiene que seguir las reglas.», lo cual parece muy acertado." - ] - }, - { - "name": "correctly segments text #013", - "input": "Cuando llegué, le estaba dando ejercicios a los niños, uno de los cuales era \"3 + (14/7).x = 5\". ¿Qué te parece?", - "output": [ - "Cuando llegué, le estaba dando ejercicios a los niños, uno de los cuales era \"3 + (14/7).x = 5\".", - "¿Qué te parece?" - ] - }, - { - "name": "correctly segments text #014", - "input": "Se le pidió a los niños que leyeran los párrf. 5 y 6 del art. 4 de la constitución de los EE. UU..", - "output": [ - "Se le pidió a los niños que leyeran los párrf. 5 y 6 del art. 4 de la constitución de los EE. UU.." - ] - }, - { - "name": "correctly segments text #015", - "input": "Una de las preguntas realizadas en la evaluación del día Lun. 15 de Mar. fue la siguiente: \"Alumnos, ¿cuál es el resultado de la operación 1.1 + 4/5?\". Disponían de 1 min. para responder esa pregunta.", - "output": [ - "Una de las preguntas realizadas en la evaluación del día Lun. 15 de Mar. fue la siguiente: \"Alumnos, ¿cuál es el resultado de la operación 1.1 + 4/5?\".", - "Disponían de 1 min. para responder esa pregunta." - ] - }, - { - "name": "correctly segments text #016", - "input": "La temperatura del motor alcanzó los 120.5°C. Afortunadamente, pudo llegar al final de carrera.", - "output": [ - "La temperatura del motor alcanzó los 120.5°C.", - "Afortunadamente, pudo llegar al final de carrera." - ] - }, - { - "name": "correctly segments text #017", - "input": "Hamilton ganó el último gran premio de Fórmula 1, luego de 1:39:02.619 Hs. de carrera, segundo resultó Massa, a una diferencia de 2.5 segundos. De esta manera se consagró ¡Campeón mundial!", - "output": [ - "Hamilton ganó el último gran premio de Fórmula 1, luego de 1:39:02.619 Hs. de carrera, segundo resultó Massa, a una diferencia de 2.5 segundos.", - "De esta manera se consagró ¡Campeón mundial!" - ] - }, - { - "name": "correctly segments text #018", - "input": "La habitación tiene 20.55m². El living tiene 50.0m².", - "output": [ - "La habitación tiene 20.55m².", - "El living tiene 50.0m²." - ] - }, - { - "name": "correctly segments text #019", - "input": "1°C corresponde a 33.8°F. ¿A cuánto corresponde 35°C?", - "output": [ - "1°C corresponde a 33.8°F.", - "¿A cuánto corresponde 35°C?" - ] - }, - { - "name": "correctly segments text #020", - "input": "Hamilton ganó el último gran premio de Fórmula 1, luego de 1:39:02.619 Hs. de carrera, segundo resultó Massa, a una diferencia de 2.5 segundos. De esta manera se consagró ¡Campeón mundial!", - "output": [ - "Hamilton ganó el último gran premio de Fórmula 1, luego de 1:39:02.619 Hs. de carrera, segundo resultó Massa, a una diferencia de 2.5 segundos.", - "De esta manera se consagró ¡Campeón mundial!" - ] - }, - { - "name": "correctly segments text #021", - "input": "¡La casa cuesta $170.500.000,00! ¡Muy costosa! Se prevé una disminución del 12.5% para el próximo año.", - "output": [ - "¡La casa cuesta $170.500.000,00!", - "¡Muy costosa!", - "Se prevé una disminución del 12.5% para el próximo año." - ] - }, - { - "name": "correctly segments text #022", - "input": "El corredor No. 103 arrivó 4°.", - "output": [ - "El corredor No. 103 arrivó 4°." - ] - }, - { - "name": "correctly segments text #023", - "input": "Hoy es 27/04/2014, y es mi cumpleaños. ¿Cuándo es el tuyo?", - "output": [ - "Hoy es 27/04/2014, y es mi cumpleaños.", - "¿Cuándo es el tuyo?" - ] - }, - { - "name": "correctly segments text #025", - "input": "1 + 1 es 2. 2 + 2 es 4. El auto es de color rojo.", - "output": [ - "1 + 1 es 2.", "2 + 2 es 4.", - "El auto es de color rojo." - ] - }, - { - "name": "correctly segments text #026", - "input": "La máquina viajaba a 100 km/h. ¿En cuánto tiempo recorrió los 153 Km.?", - "output": [ - "La máquina viajaba a 100 km/h.", - "¿En cuánto tiempo recorrió los 153 Km.?" - ] - }, - { - "name": "correctly segments text #028", - "input": "N°. 1026.253.553", - "output": [ - "N°. 1026.253.553" - ] - }, - { - "name": "correctly segments text #028", - "input": "Explora oportunidades de carrera en el área de Salud en el Hospital de Northern en Mt. Kisco.", - "output": [ - "Explora oportunidades de carrera en el área de Salud en el Hospital de Northern en Mt. Kisco." - ] - } -] diff --git a/testdata/golden_rules_fr.json b/testdata/golden_rules_fr.json deleted file mode 100644 index b7901cc..0000000 --- a/testdata/golden_rules_fr.json +++ /dev/null @@ -1,39 +0,0 @@ -[ - { - "name": "correctly segments text #001", - "input": "Après avoir été l'un des acteurs du projet génome humain, le Genoscope met aujourd'hui le cap vers la génomique environnementale. L'exploitation des données de séquences, prolongée par l'identification expérimentale des fonctions biologiques, notamment dans le domaine de la biocatalyse, ouvrent des perspectives de développements en biotechnologie industrielle.", - "output": [ - "Après avoir été l'un des acteurs du projet génome humain, le Genoscope met aujourd'hui le cap vers la génomique environnementale.", - "L'exploitation des données de séquences, prolongée par l'identification expérimentale des fonctions biologiques, notamment dans le domaine de la biocatalyse, ouvrent des perspectives de développements en biotechnologie industrielle." - ] - }, - { - "name": "correctly segments text #002", - "input": "\"Airbus livrera comme prévu 30 appareils 380 cette année avec en ligne de mire l'objectif d'équilibre financier du programme en 2015\", a-t-il ajouté.", - "output": [ - "\"Airbus livrera comme prévu 30 appareils 380 cette année avec en ligne de mire l'objectif d'équilibre financier du programme en 2015\", a-t-il ajouté." - ] - }, - { - "name": "correctly segments text #003", - "input": "À 11 heures ce matin, la direction ne décomptait que douze grévistes en tout sur la France : ce sont ceux du site de Saran (Loiret), dont l’effectif est de 809 salariés, dont la moitié d’intérimaires. Elle assure que ce mouvement « n’aura aucun impact sur les livraisons ».", - "output": [ - "À 11 heures ce matin, la direction ne décomptait que douze grévistes en tout sur la France : ce sont ceux du site de Saran (Loiret), dont l’effectif est de 809 salariés, dont la moitié d’intérimaires.", - "Elle assure que ce mouvement « n’aura aucun impact sur les livraisons »." - ] - }, - { - "name": "correctly segments text #004", - "input": "Ce modèle permet d’afficher le texte « LL.AA.II.RR. » pour l’abréviation de « Leurs Altesses impériales et royales » avec son infobulle.", - "output": [ - "Ce modèle permet d’afficher le texte « LL.AA.II.RR. » pour l’abréviation de « Leurs Altesses impériales et royales » avec son infobulle." - ] - }, - { - "name": "correctly segments text #005", - "input": "Les derniers ouvrages de Intercept Ltd. sont ici.", - "output": [ - "Les derniers ouvrages de Intercept Ltd. sont ici." - ] - } -] diff --git a/testdata/reddit_product.jsonl b/testdata/reddit_product.jsonl new file mode 100644 index 0000000..b323115 --- /dev/null +++ b/testdata/reddit_product.jsonl @@ -0,0 +1,1800 @@ +{"text":"This was taken during the Easter celebrations at Real de Catorce, MX.","spans":[{"start":66,"end":68,"text":"MX","rank":0,"label":"PRODUCT","score":0.9525150387,"source":"core_web_sm","input_hash":19964311,"answer":"reject"}],"meta":{"section":"photography","score":0.9525150387},"_input_hash":19964311,"_task_hash":1331479932,"answer":"reject"} +{"text":"If you'd like something more family friendly but still rock em sock em swordplay try Sword of the Stranger.","spans":[{"start":98,"end":106,"text":"Stranger","rank":0,"label":"PRODUCT","score":0.7200077187,"source":"core_web_sm","input_hash":625015332,"answer":"reject"}],"meta":{"section":"anime","score":0.7200077187},"_input_hash":625015332,"_task_hash":539836371,"answer":"reject"} +{"text":"Streetlight Manifesto, The Arrogant Sons of Bitches, Thumper, MU330 are some goodn'uns","spans":[{"start":62,"end":67,"text":"MU330","rank":0,"label":"PRODUCT","score":0.7058768668,"source":"core_web_sm","input_hash":-1161042347,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.7058768668},"_input_hash":-1161042347,"_task_hash":-1477032022,"answer":"reject"} +{"text":"Has has a wicked R&B voice.","spans":[{"start":17,"end":24,"text":"R&B","rank":0,"label":"PRODUCT","score":0.5362976398,"source":"core_web_sm","input_hash":-1095404595,"answer":"reject"}],"meta":{"section":"IAmA","score":0.5362976398},"_input_hash":-1095404595,"_task_hash":-1294809960,"answer":"reject"} +{"text":"Adding insult to injury is that I can't log in to EA support (if there is such a thing).","spans":[{"start":50,"end":52,"text":"EA","rank":1,"label":"PRODUCT","score":0.2875455117,"source":"core_web_sm","input_hash":235296147,"answer":"reject"}],"meta":{"section":"gaming","score":0.2875455117},"_input_hash":235296147,"_task_hash":-1041738107,"answer":"reject"} +{"text":"Doubles.","spans":[{"start":0,"end":7,"text":"Doubles","rank":1,"label":"PRODUCT","score":0.2711821873,"source":"core_web_sm","input_hash":2035957870,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.2711821873},"_input_hash":2035957870,"_task_hash":1346285211,"answer":"reject"} +{"text":"I used to watch this on a rubbish VHS tape, on a rubbish TV, when I was quite young.","spans":[{"start":34,"end":37,"text":"VHS","rank":1,"label":"PRODUCT","score":0.0600558842,"source":"core_web_sm","input_hash":407487734,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0600558842},"_input_hash":407487734,"_task_hash":-1551311355,"answer":"reject"} +{"text":"Also, I want to thank Google for making this happen.","spans":[{"start":22,"end":28,"text":"Google","rank":2,"label":"PRODUCT","score":0.0491354293,"source":"core_web_sm","input_hash":1813421736,"answer":"accept"}],"meta":{"section":"funny","score":0.0491354293},"_input_hash":1813421736,"_task_hash":-49904083,"answer":"accept"} +{"text":"I thought Adobe Air apps worked in both Linux and Windows without modification, as Air is available for both platforms like Java or Flash.","spans":[{"start":50,"end":57,"text":"Windows","rank":0,"label":"PRODUCT","score":0.6628148834,"source":"core_web_sm","input_hash":443081601,"answer":"accept"}],"meta":{"section":"WebGames","score":0.6628148834},"_input_hash":443081601,"_task_hash":397355388,"answer":"accept"} +{"text":"Whenever Kryptonian reproduction or sex life is mentioned, there must be a link to Larry Niven's classic essay Man of Steel, Woman of Kleenex.","spans":[{"start":134,"end":141,"text":"Kleenex","rank":0,"label":"PRODUCT","score":0.9488431162,"source":"core_web_sm","input_hash":-1760836819,"answer":"accept"}],"meta":{"section":"comics","score":0.9488431162},"_input_hash":-1760836819,"_task_hash":2115561308,"answer":"accept"} +{"text":"That's the symbol from the Lazarus project.","spans":[{"start":27,"end":34,"text":"Lazarus","rank":4,"label":"PRODUCT","score":0.0192855126,"source":"core_web_sm","input_hash":-836420400,"answer":"reject"}],"meta":{"section":"doctorwho","score":0.0192855126},"_input_hash":-836420400,"_task_hash":1555501360,"answer":"reject"} +{"text":"What the tablet would make a killer device for travellers is if it you could use it for downloading picture and videos from your camera with a portable version of iPhoto and iMovie on it.","spans":[{"start":163,"end":169,"text":"iPhoto","rank":0,"label":"PRODUCT","score":0.4539186169,"source":"core_web_sm","input_hash":-182252547,"answer":"accept"}],"meta":{"section":"apple","score":0.4539186169},"_input_hash":-182252547,"_task_hash":-1777177666,"answer":"accept"} +{"text":"a Sonorix C3 bluetooth receiver (which I elastic to the top of my headphones).","spans":[{"start":2,"end":9,"text":"Sonorix","rank":2,"label":"PRODUCT","score":0.0574199724,"source":"core_web_sm","input_hash":-1539705802,"answer":"reject"}],"meta":{"section":"gaming","score":0.0574199724},"_input_hash":-1539705802,"_task_hash":-1857199728,"answer":"reject"} +{"text":"Just to share my (inadequate) solution: I have some Audio-technica Quietpoint ATH","spans":[{"start":67,"end":81,"text":"Quietpoint ATH","rank":1,"label":"PRODUCT","score":0.3876984747,"source":"core_web_sm","input_hash":1723394824,"answer":"ignore"}],"meta":{"section":"gaming","score":0.3876984747},"_input_hash":1723394824,"_task_hash":-797247575,"answer":"ignore"} +{"text":"Judging from the posts in that category, it has nothing to do with the # of comments.","spans":[{"start":71,"end":72,"text":"#","rank":2,"label":"PRODUCT","score":0.0981036279,"source":"core_web_sm","input_hash":-1530423430,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0981036279},"_input_hash":-1530423430,"_task_hash":636593422,"answer":"reject"} +{"text":":) BTW I just installed LoseThos on a VM","spans":[{"start":24,"end":32,"text":"LoseThos","rank":1,"label":"PRODUCT","score":0.095497703,"source":"core_web_sm","input_hash":1370032733,"answer":"accept"}],"meta":{"section":"programming","score":0.095497703},"_input_hash":1370032733,"_task_hash":1413347238,"answer":"accept"} +{"text":"my life would probably have been easier without the Asperger's.","spans":[{"start":52,"end":60,"text":"Asperger","rank":2,"label":"PRODUCT","score":0.0134378677,"source":"core_web_sm","input_hash":1355867025,"answer":"reject"}],"meta":{"section":"IAmA","score":0.0134378677},"_input_hash":1355867025,"_task_hash":-1121258893,"answer":"reject"} +{"text":"and that only the questions for which answers can be found on Google get answered there.","spans":[{"start":62,"end":68,"text":"Google","rank":1,"label":"PRODUCT","score":0.3028162316,"source":"core_web_sm","input_hash":-2064447291,"answer":"accept"}],"meta":{"section":"django","score":0.3028162316},"_input_hash":-2064447291,"_task_hash":1362715322,"answer":"accept"} +{"text":"Why nail the messenger to the cross when you don't even HAVE ALL THE INFORMATION?","spans":[{"start":13,"end":22,"text":"messenger","rank":1,"label":"PRODUCT","score":0.0519462652,"source":"core_web_sm","input_hash":-283565147,"answer":"reject"}],"meta":{"section":"conspiracy","score":0.0519462652},"_input_hash":-283565147,"_task_hash":636787703,"answer":"reject"} +{"text":"My gut feeling is that a 500W PSU is not going to cut it for that PC.","spans":[{"start":25,"end":29,"text":"500W","rank":2,"label":"PRODUCT","score":0.1268531779,"source":"core_web_sm","input_hash":544616926,"answer":"reject"}],"meta":{"section":"Favors","score":0.1268531779},"_input_hash":544616926,"_task_hash":-750373136,"answer":"reject"} +{"text":"i'm just saying most people dismissed the gamecube because of its \"kiddy-ness,\"","spans":[{"start":67,"end":72,"text":"kiddy","rank":3,"label":"PRODUCT","score":0.023308182,"source":"core_web_sm","input_hash":-27124187,"answer":"reject"}],"meta":{"section":"gaming","score":0.023308182},"_input_hash":-27124187,"_task_hash":314872587,"answer":"reject"} +{"text":"I don't have a degree and made my first million doing fuller brush sales and Amway...","spans":[{"start":77,"end":82,"text":"Amway","rank":3,"label":"PRODUCT","score":0.0178229085,"source":"core_web_sm","input_hash":-2099783141,"answer":"reject"}],"meta":{"section":"IAmA","score":0.0178229085},"_input_hash":-2099783141,"_task_hash":-400128113,"answer":"reject"} +{"text":"the DZ mixes on this are fucking LEGIT","spans":[{"start":4,"end":6,"text":"DZ","rank":0,"label":"PRODUCT","score":0.761086516,"source":"core_web_sm","input_hash":-1171791856,"answer":"reject"}],"meta":{"section":"dubstep","score":0.761086516},"_input_hash":-1171791856,"_task_hash":1907607235,"answer":"reject"} +{"text":"My girlfriend of 5 years is on Wellbutrin, with NO sexual side effects.","spans":[{"start":31,"end":41,"text":"Wellbutrin","rank":6,"label":"PRODUCT","score":0.0055563058,"source":"core_web_sm","input_hash":-1677843870,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.0055563058},"_input_hash":-1677843870,"_task_hash":1110498529,"answer":"accept"} +{"text":"Reminds me of the end of Gulliver's Travels.","spans":[{"start":36,"end":43,"text":"Travels","rank":2,"label":"PRODUCT","score":0.3222927984,"source":"core_web_sm","input_hash":-1690608474,"answer":"reject"}],"meta":{"section":"pics","score":0.3222927984},"_input_hash":-1690608474,"_task_hash":-1487927904,"answer":"reject"} +{"text":"All hail Google!","spans":[{"start":9,"end":15,"text":"Google","rank":0,"label":"PRODUCT","score":0.9496089896,"source":"core_web_sm","input_hash":-11393220,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9496089896},"_input_hash":-11393220,"_task_hash":1402393100,"answer":"accept"} +{"text":"Much better than Jimmy Fallon.","spans":[{"start":17,"end":29,"text":"Jimmy Fallon","rank":2,"label":"PRODUCT","score":0.085297768,"source":"core_web_sm","input_hash":1649022806,"answer":"reject"}],"meta":{"section":"DoesAnybodyElse","score":0.085297768},"_input_hash":1649022806,"_task_hash":-212218334,"answer":"reject"} +{"text":"Brother From Another Planet.","spans":[{"start":21,"end":27,"text":"Planet","rank":1,"label":"PRODUCT","score":0.3623759628,"source":"core_web_sm","input_hash":1684217046,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.3623759628},"_input_hash":1684217046,"_task_hash":788554956,"answer":"reject"} +{"text":"Jesus's birth to myself, and most of reddit seems about as important as the first unicorn giving birth to a herd of Bolivian leprechauns who terrorized the countryside of Elbonia using their lightsabres fashioned from Atlantis's gold.","spans":[{"start":218,"end":226,"text":"Atlantis","rank":0,"label":"PRODUCT","score":0.9993443473,"source":"core_web_sm","input_hash":1090329632,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.9993443473},"_input_hash":1090329632,"_task_hash":191088421,"answer":"reject"} +{"text":"we like em brown, yellow, puerto rican, and hatian, to quote The Tribe.","spans":[{"start":65,"end":70,"text":"Tribe","rank":6,"label":"PRODUCT","score":0.0306186638,"source":"core_web_sm","input_hash":-943201851,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0306186638},"_input_hash":-943201851,"_task_hash":-448988705,"answer":"reject"} +{"text":"The birth of Galileo, father of modern science. 1564.","spans":[{"start":13,"end":20,"text":"Galileo","rank":0,"label":"PRODUCT","score":0.9776076762,"source":"core_web_sm","input_hash":114291705,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.9776076762},"_input_hash":114291705,"_task_hash":-567220830,"answer":"reject"} +{"text":"http://xuzz.net/cydia/proswitcher/depiction.htm Overboard (like expose for OS X) -","spans":[{"start":48,"end":57,"text":"Overboard","rank":2,"label":"PRODUCT","score":0.0408346655,"source":"core_web_sm","input_hash":-1141137528,"answer":"accept"}],"meta":{"section":"iphone","score":0.0408346655},"_input_hash":-1141137528,"_task_hash":-1903570870,"answer":"accept"} +{"text":"I might be wrong, but IIRC serotonin isn't reinforcing and may even counteract dopamine-induced reinforcement in drugs that release both (e.g. MDMA).","spans":[{"start":22,"end":26,"text":"IIRC","rank":8,"label":"PRODUCT","score":0.0056230629,"source":"core_web_sm","input_hash":-1374126502,"answer":"reject"}],"meta":{"section":"worldnews","score":0.0056230629},"_input_hash":-1374126502,"_task_hash":-139750270,"answer":"reject"} +{"text":"I think Nietzsche is credible only to a degree.","spans":[{"start":8,"end":17,"text":"Nietzsche","rank":1,"label":"PRODUCT","score":0.0594932981,"source":"core_web_sm","input_hash":194645352,"answer":"reject"}],"meta":{"section":"philosophy","score":0.0594932981},"_input_hash":194645352,"_task_hash":-2018861288,"answer":"reject"} +{"text":"I feel like Nietzsche was horribly unhappy and quite insane when he was producing his \"worldview\".","spans":[{"start":12,"end":21,"text":"Nietzsche","rank":0,"label":"PRODUCT","score":0.920221589,"source":"core_web_sm","input_hash":-507389209,"answer":"reject"}],"meta":{"section":"philosophy","score":0.920221589},"_input_hash":-507389209,"_task_hash":1792702597,"answer":"reject"} +{"text":"http://www.pcpao.org/ Look up the name Stottler.","spans":[{"start":39,"end":47,"text":"Stottler","rank":1,"label":"PRODUCT","score":0.0280938696,"source":"core_web_sm","input_hash":-311759691,"answer":"reject"}],"meta":{"section":"WTF","score":0.0280938696},"_input_hash":-311759691,"_task_hash":476942322,"answer":"reject"} +{"text":"64-bit OS running on a 64-bit CPU expects 64-bit code by default","spans":[{"start":42,"end":48,"text":"64-bit","rank":2,"label":"PRODUCT","score":0.0863504181,"source":"core_web_sm","input_hash":2059653858,"answer":"reject"}],"meta":{"section":"programming","score":0.0863504181},"_input_hash":2059653858,"_task_hash":1027181795,"answer":"reject"} +{"text":"(Mac OS X 10.6 on an x86_64 defaults to a 32-bit kernel and 64-bit userland).","spans":[{"start":42,"end":48,"text":"32-bit","rank":3,"label":"PRODUCT","score":0.0559464453,"source":"core_web_sm","input_hash":1064416735,"answer":"reject"}],"meta":{"section":"programming","score":0.0559464453},"_input_hash":1064416735,"_task_hash":-267474371,"answer":"reject"} +{"text":"You think $supervisor would appreciate these kinds of statistics at a time when your sales records are extremely low?\"","spans":[{"start":10,"end":11,"text":"$","rank":2,"label":"PRODUCT","score":0.1240773701,"source":"core_web_sm","input_hash":523769408,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.1240773701},"_input_hash":523769408,"_task_hash":879004118,"answer":"reject"} +{"text":"MP5 or M16?","spans":[{"start":7,"end":10,"text":"M16","rank":2,"label":"PRODUCT","score":0.1575742282,"source":"core_web_sm","input_hash":-1265594957,"answer":"reject"}],"meta":{"section":"IAmA","score":0.1575742282},"_input_hash":-1265594957,"_task_hash":1906564816,"answer":"reject"} +{"text":"More at 11PM.","spans":[{"start":8,"end":12,"text":"11PM","rank":1,"label":"PRODUCT","score":0.0289728951,"source":"core_web_sm","input_hash":1175261279,"answer":"reject"}],"meta":{"section":"IAmA","score":0.0289728951},"_input_hash":1175261279,"_task_hash":-485220804,"answer":"reject"} +{"text":"30$ is absolutely worth it.","spans":[{"start":2,"end":3,"text":"$","rank":2,"label":"PRODUCT","score":0.0039613039,"source":"core_web_sm","input_hash":-1891843642,"answer":"reject"}],"meta":{"section":"gaming","score":0.0039613039},"_input_hash":-1891843642,"_task_hash":131561368,"answer":"reject"} +{"text":"Write [Citation Needed] at the beginning, end, and on as many pages as you can in blue pen.","spans":[{"start":7,"end":15,"text":"Citation","rank":0,"label":"PRODUCT","score":0.9970168035,"source":"core_web_sm","input_hash":629321005,"answer":"reject"}],"meta":{"section":"atheism","score":0.9970168035},"_input_hash":629321005,"_task_hash":329931266,"answer":"reject"} +{"text":"just so you know, this group's title comes up at \"vegetarian & vegan stuff\" in the task bar when I begin typing in the URL.","spans":[{"start":61,"end":65,"text":"&","rank":9,"label":"PRODUCT","score":0.0271614127,"source":"core_web_sm","input_hash":-1523743570,"answer":"reject"}],"meta":{"section":"Vegetarianism","score":0.0271614127},"_input_hash":-1523743570,"_task_hash":-1737361490,"answer":"reject"} +{"text":"You missed L4D on sale as well, unless you mean L4D2.","spans":[{"start":11,"end":14,"text":"L4D","rank":8,"label":"PRODUCT","score":0.0090976853,"source":"core_web_sm","input_hash":-1472440192,"answer":"accept"}],"meta":{"section":"gaming","score":0.0090976853},"_input_hash":-1472440192,"_task_hash":371397298,"answer":"accept"} +{"text":"\"A big part of the Internet is built on LAMP (Linux, Apache, MySQL and PHP/Perl/Python).","spans":[{"start":61,"end":66,"text":"MySQL","rank":2,"label":"PRODUCT","score":0.0134138317,"source":"core_web_sm","input_hash":-2031084721,"answer":"accept"},{"start":53,"end":59,"text":"Apache","rank":1,"label":"PRODUCT","score":0.0892542488,"source":"core_web_sm","input_hash":-2031084721,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.0134138317},"_input_hash":-2031084721,"_task_hash":1352591793,"answer":"accept"} +{"text":"Now Oracle is trying to buy Sun, which owns MySQL.","spans":[{"start":44,"end":49,"text":"MySQL","rank":0,"label":"PRODUCT","score":0.9817196809,"source":"core_web_sm","input_hash":-891776411,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9817196809},"_input_hash":-891776411,"_task_hash":954140769,"answer":"accept"} +{"text":"\"A big part of the Internet is built on LAMP (Linux, Apache, MySQL and PHP/Perl/Python).","spans":[{"start":53,"end":59,"text":"Apache","rank":1,"label":"PRODUCT","score":0.0892542488,"source":"core_web_sm","input_hash":-2031084721,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.0892542488},"_input_hash":-2031084721,"_task_hash":157020611,"answer":"accept"} +{"text":"Where's my IAmA?","spans":[{"start":11,"end":15,"text":"IAmA","rank":3,"label":"PRODUCT","score":0.019431485,"source":"core_web_sm","input_hash":-661742532,"answer":"reject"}],"meta":{"section":"IAmA","score":0.019431485},"_input_hash":-661742532,"_task_hash":1918410465,"answer":"reject"} +{"text":"Nope, haha actually I live just outside NYC","spans":[{"start":40,"end":43,"text":"NYC","rank":12,"label":"PRODUCT","score":0.0016877555,"source":"core_web_sm","input_hash":1415140554,"answer":"reject"}],"meta":{"section":"pics","score":0.0016877555},"_input_hash":1415140554,"_task_hash":-331377461,"answer":"reject"} +{"text":"Probably followed by Porto and Maker's Mark.","spans":[{"start":39,"end":43,"text":"Mark","rank":1,"label":"PRODUCT","score":0.1017994767,"source":"core_web_sm","input_hash":-132592657,"answer":"reject"}],"meta":{"section":"food","score":0.1017994767},"_input_hash":-132592657,"_task_hash":1975252063,"answer":"reject"} +{"text":"[+ (which I still have, along with *tons* of add-ons (like a Z80 StarCard) and accessories), an original 128K Mac (upgraded at an Apple dealer to 512K of RAM), a Mac Plus, a Mac 512e, a Mac Classic, a Mac IIsi, Mac 7200, a Mac Centra 6320, a beige G3 tower (I bought that the very first day that Apple opened their online store.","spans":[{"start":248,"end":250,"text":"G3","rank":0,"label":"PRODUCT","score":0.806229104,"source":"core_web_sm","input_hash":4008639,"answer":"reject"},{"start":61,"end":64,"text":"Z80","rank":0,"label":"PRODUCT","score":0.8416201633,"source":"core_web_sm","input_hash":4008639,"answer":"reject"},{"start":65,"end":73,"text":"StarCard","rank":0,"label":"PRODUCT","score":0.8416201633,"source":"core_web_sm","input_hash":4008639,"answer":"ignore"},{"start":178,"end":182,"text":"512e","rank":0,"label":"PRODUCT","score":0.8416201633,"source":"core_web_sm","input_hash":4008639,"answer":"reject"},{"start":190,"end":197,"text":"Classic","rank":0,"label":"PRODUCT","score":0.8416201633,"source":"core_web_sm","input_hash":4008639,"answer":"reject"}],"meta":{"section":"apple","score":0.806229104},"_input_hash":4008639,"_task_hash":1489067054,"answer":"reject"} +{"text":"[+ (which I still have, along with *tons* of add-ons (like a Z80 StarCard) and accessories), an original 128K Mac (upgraded at an Apple dealer to 512K of RAM), a Mac Plus, a Mac 512e, a Mac Classic, a Mac IIsi, Mac 7200, a Mac Centra 6320, a beige G3 tower (I bought that the very first day that Apple opened their online store.","spans":[{"start":61,"end":64,"text":"Z80","rank":0,"label":"PRODUCT","score":0.8416201633,"source":"core_web_sm","input_hash":4008639,"answer":"reject"}],"meta":{"section":"apple","score":0.8416201633},"_input_hash":4008639,"_task_hash":736580315,"answer":"reject"} +{"text":"[+ (which I still have, along with *tons* of add-ons (like a Z80 StarCard) and accessories), an original 128K Mac (upgraded at an Apple dealer to 512K of RAM), a Mac Plus, a Mac 512e, a Mac Classic, a Mac IIsi, Mac 7200, a Mac Centra 6320, a beige G3 tower (I bought that the very first day that Apple opened their online store.","spans":[{"start":65,"end":73,"text":"StarCard","rank":0,"label":"PRODUCT","score":0.8416201633,"source":"core_web_sm","input_hash":4008639,"answer":"ignore"}],"meta":{"section":"apple","score":0.8416201633},"_input_hash":4008639,"_task_hash":1831924890,"answer":"ignore"} +{"text":"[+ (which I still have, along with *tons* of add-ons (like a Z80 StarCard) and accessories), an original 128K Mac (upgraded at an Apple dealer to 512K of RAM), a Mac Plus, a Mac 512e, a Mac Classic, a Mac IIsi, Mac 7200, a Mac Centra 6320, a beige G3 tower (I bought that the very first day that Apple opened their online store.","spans":[{"start":178,"end":182,"text":"512e","rank":0,"label":"PRODUCT","score":0.8416201633,"source":"core_web_sm","input_hash":4008639,"answer":"reject"}],"meta":{"section":"apple","score":0.8416201633},"_input_hash":4008639,"_task_hash":18420215,"answer":"reject"} +{"text":"[+ (which I still have, along with *tons* of add-ons (like a Z80 StarCard) and accessories), an original 128K Mac (upgraded at an Apple dealer to 512K of RAM), a Mac Plus, a Mac 512e, a Mac Classic, a Mac IIsi, Mac 7200, a Mac Centra 6320, a beige G3 tower (I bought that the very first day that Apple opened their online store.","spans":[{"start":190,"end":197,"text":"Classic","rank":0,"label":"PRODUCT","score":0.8416201633,"source":"core_web_sm","input_hash":4008639,"answer":"reject"}],"meta":{"section":"apple","score":0.8416201633},"_input_hash":4008639,"_task_hash":-1332275279,"answer":"reject"} +{"text":"Apples are the bulk of my problem (er, I mean \"collection\"), but I also have a few old Sun Sparcstations and several old Dells, and some \"white box\" computers that I built to run Linux.","spans":[{"start":121,"end":126,"text":"Dells","rank":3,"label":"PRODUCT","score":0.0071887203,"source":"core_web_sm","input_hash":-1002363910,"answer":"accept"}],"meta":{"section":"apple","score":0.0071887203},"_input_hash":-1002363910,"_task_hash":-610249551,"answer":"accept"} +{"text":"Poof!","spans":[{"start":0,"end":4,"text":"Poof","rank":5,"label":"PRODUCT","score":0.0028972377,"source":"core_web_sm","input_hash":-530829685,"answer":"reject"}],"meta":{"section":"programming","score":0.0028972377},"_input_hash":-530829685,"_task_hash":1008024760,"answer":"reject"} +{"text":"When a Best Buy blue shirt is shilling a service plan, does he mention how profitable it is?","spans":[{"start":7,"end":11,"text":"Best","rank":3,"label":"PRODUCT","score":0.0570319792,"source":"core_web_sm","input_hash":-712259382,"answer":"reject"}],"meta":{"section":"IAmA","score":0.0570319792},"_input_hash":-712259382,"_task_hash":-978261,"answer":"reject"} +{"text":"Dressing up in aluminium foil wont fool Google armies","spans":[{"start":40,"end":46,"text":"Google","rank":1,"label":"PRODUCT","score":0.0207897586,"source":"core_web_sm","input_hash":-216725655,"answer":"ignore"}],"meta":{"section":"reddit.com","score":0.0207897586},"_input_hash":-216725655,"_task_hash":1800276547,"answer":"ignore"} +{"text":"An older series which I always enjoyed is Early Edition.","spans":[{"start":42,"end":55,"text":"Early Edition","rank":2,"label":"PRODUCT","score":0.0197859399,"source":"core_web_sm","input_hash":1542632265,"answer":"reject"}],"meta":{"section":"scifi","score":0.0197859399},"_input_hash":1542632265,"_task_hash":-160115871,"answer":"reject"} +{"text":"This isn't like music DRM where you want your audio to work on any platform, as your game on Steam is locked to Windows/x86","spans":[{"start":112,"end":119,"text":"Windows","rank":2,"label":"PRODUCT","score":0.0917691383,"source":"core_web_sm","input_hash":120441905,"answer":"reject"}],"meta":{"section":"gaming","score":0.0917691383},"_input_hash":120441905,"_task_hash":325085967,"answer":"reject"} +{"text":":-( I'm curious: it sounds like kids in your school were much more open about their non-hetero sexuality than they were in mine, since you mention that lesbians and bisexual girls were hated upon.","spans":[{"start":84,"end":87,"text":"non","rank":1,"label":"PRODUCT","score":0.2171150229,"source":"core_web_sm","input_hash":305158822,"answer":"reject"}],"meta":{"section":"IAmA","score":0.2171150229},"_input_hash":305158822,"_task_hash":-1982327169,"answer":"reject"} +{"text":"To actually consider the modern Republican party to be a Fascist party requires an enormous stretch.","spans":[{"start":57,"end":64,"text":"Fascist","rank":0,"label":"PRODUCT","score":0.6974859366,"source":"core_web_sm","input_hash":-849406864,"answer":"reject"}],"meta":{"section":"politics","score":0.6974859366},"_input_hash":-849406864,"_task_hash":1530283713,"answer":"reject"} +{"text":"Switch out water for Gatorade if you can at that critical junction.","spans":[{"start":21,"end":29,"text":"Gatorade","rank":0,"label":"PRODUCT","score":0.88486456,"source":"core_web_sm","input_hash":-1288741714,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.88486456},"_input_hash":-1288741714,"_task_hash":-1329222971,"answer":"accept"} +{"text":"At my school (and most likely others) you can get Windows 7 for free, along with a bunch of other Microsoft products.","spans":[{"start":50,"end":59,"text":"Windows 7","rank":0,"label":"PRODUCT","score":0.8669013441,"source":"core_web_sm","input_hash":215337577,"answer":"accept"}],"meta":{"section":"gaming","score":0.8669013441},"_input_hash":215337577,"_task_hash":572198655,"answer":"accept"} +{"text":"about an hour ago \u00b7 **Him:** Nope, to my knowledge, only one thing in her video appears untrue.","spans":[{"start":18,"end":19,"text":"\u00b7","rank":3,"label":"PRODUCT","score":0.0400341666,"source":"core_web_sm","input_hash":-1112139570,"answer":"reject"}],"meta":{"section":"politics","score":0.0400341666},"_input_hash":-1112139570,"_task_hash":1816017662,"answer":"reject"} +{"text":"and I don't think many Americans think of Puerto as \"property\".","spans":[{"start":42,"end":48,"text":"Puerto","rank":0,"label":"PRODUCT","score":0.6860167441,"source":"core_web_sm","input_hash":645011178,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.6860167441},"_input_hash":645011178,"_task_hash":-2035031401,"answer":"reject"} +{"text":"I for one welcome our new Google overlords.","spans":[{"start":26,"end":32,"text":"Google","rank":0,"label":"PRODUCT","score":0.9831900889,"source":"core_web_sm","input_hash":-2083336587,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9831900889},"_input_hash":-2083336587,"_task_hash":-674338462,"answer":"accept"} +{"text":"Wow, the only ones that I'm aware of getting are the Food Channel and FX.","spans":[{"start":70,"end":72,"text":"FX","rank":2,"label":"PRODUCT","score":0.1095207408,"source":"core_web_sm","input_hash":1547668806,"answer":"ignore"}],"meta":{"section":"technology","score":0.1095207408},"_input_hash":1547668806,"_task_hash":1058588529,"answer":"ignore"} +{"text":"Because of this series I won't watch Lost.","spans":[{"start":37,"end":41,"text":"Lost","rank":3,"label":"PRODUCT","score":0.0023555202,"source":"core_web_sm","input_hash":-1074526372,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0023555202},"_input_hash":-1074526372,"_task_hash":758488828,"answer":"reject"} +{"text":"Also the steam version does sort of have it now, as of the patch which added DLC support.","spans":[{"start":77,"end":80,"text":"DLC","rank":6,"label":"PRODUCT","score":0.0048925759,"source":"core_web_sm","input_hash":1497604397,"answer":"reject"}],"meta":{"section":"gaming","score":0.0048925759},"_input_hash":1497604397,"_task_hash":763748217,"answer":"reject"} +{"text":"This makes me RAGE, but atleast they included my favorite character, Fang the Sniper.","spans":[{"start":78,"end":84,"text":"Sniper","rank":1,"label":"PRODUCT","score":0.0214194936,"source":"core_web_sm","input_hash":2041445575,"answer":"reject"}],"meta":{"section":"tf2","score":0.0214194936},"_input_hash":2041445575,"_task_hash":512490641,"answer":"reject"} +{"text":"Upvoted for truth :D","spans":[{"start":18,"end":20,"text":":D","rank":2,"label":"PRODUCT","score":0.0694775563,"source":"core_web_sm","input_hash":-587999876,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0694775563},"_input_hash":-587999876,"_task_hash":-2143564401,"answer":"reject"} +{"text":"I like it how he spammed an email around to \"every person that I have ever communicated with regarding MySQL\".","spans":[{"start":103,"end":108,"text":"MySQL","rank":0,"label":"PRODUCT","score":0.6570094398,"source":"core_web_sm","input_hash":-1755944156,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.6570094398},"_input_hash":-1755944156,"_task_hash":553820641,"answer":"accept"} +{"text":"The only place he could've gotten my email is the MySQL bugtracker DB","spans":[{"start":50,"end":55,"text":"MySQL","rank":0,"label":"PRODUCT","score":0.8661380006,"source":"core_web_sm","input_hash":1754658680,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.8661380006},"_input_hash":1754658680,"_task_hash":1051914061,"answer":"accept"} +{"text":"Hahaha upvote for the jk","spans":[{"start":0,"end":6,"text":"Hahaha","rank":0,"label":"PRODUCT","score":0.7493029663,"source":"core_web_sm","input_hash":-1225347116,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.7493029663},"_input_hash":-1225347116,"_task_hash":-351571215,"answer":"reject"} +{"text":"Pour one jigger absinthe into a Champagne glass.","spans":[{"start":32,"end":41,"text":"Champagne","rank":5,"label":"PRODUCT","score":0.0392160122,"source":"core_web_sm","input_hash":31994255,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0392160122},"_input_hash":31994255,"_task_hash":-907954826,"answer":"reject"} +{"text":"*Act like prince charming perhaps.","spans":[{"start":1,"end":4,"text":"Act","rank":5,"label":"PRODUCT","score":0.03472371,"source":"core_web_sm","input_hash":-1827459415,"answer":"reject"}],"meta":{"section":"TwoXChromosomes","score":0.03472371},"_input_hash":-1827459415,"_task_hash":-2025882250,"answer":"reject"} +{"text":"Who the fuck is Cand","spans":[{"start":16,"end":20,"text":"Cand","rank":1,"label":"PRODUCT","score":0.1167923142,"source":"core_web_sm","input_hash":1824704635,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.1167923142},"_input_hash":1824704635,"_task_hash":-611903423,"answer":"reject"} +{"text":"Perhaps I do not find it lacking because I often just ask for links to stuff - and ask in the correct place, such as #askreddit, or the relevant subreddit.","spans":[{"start":117,"end":118,"text":"#","rank":0,"label":"PRODUCT","score":0.9931963338,"source":"core_web_sm","input_hash":-1061201449,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.9931963338},"_input_hash":-1061201449,"_task_hash":-1186319066,"answer":"reject"} +{"text":"i don't even subscribe to r/politics because it makes me equal parts furious and depressed.","spans":[{"start":26,"end":27,"text":"r","rank":5,"label":"PRODUCT","score":0.0037969397,"source":"core_web_sm","input_hash":114751816,"answer":"reject"}],"meta":{"section":"politics","score":0.0037969397},"_input_hash":114751816,"_task_hash":889748430,"answer":"reject"} +{"text":"fuck blackwater / XE.","spans":[{"start":16,"end":20,"text":"/ XE","rank":9,"label":"PRODUCT","score":0.0043537911,"source":"core_web_sm","input_hash":445207793,"answer":"reject"}],"meta":{"section":"politics","score":0.0043537911},"_input_hash":445207793,"_task_hash":1215531994,"answer":"reject"} +{"text":"Such an epic song. Classic.","spans":[{"start":19,"end":26,"text":"Classic","rank":0,"label":"PRODUCT","score":0.9999613372,"source":"core_web_sm","input_hash":984227123,"answer":"reject"}],"meta":{"section":"trance","score":0.9999613372},"_input_hash":984227123,"_task_hash":1577915607,"answer":"reject"} +{"text":"my doctor started me on Wellbutrin.","spans":[{"start":24,"end":34,"text":"Wellbutrin","rank":2,"label":"PRODUCT","score":0.1127664185,"source":"core_web_sm","input_hash":692599428,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.1127664185},"_input_hash":692599428,"_task_hash":-204912548,"answer":"accept"} +{"text":"as soon as i stopped taking the Wellbutrin, i stopped checking my blood pressure.","spans":[{"start":32,"end":42,"text":"Wellbutrin","rank":0,"label":"PRODUCT","score":0.4481724116,"source":"core_web_sm","input_hash":-1334664411,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.4481724116},"_input_hash":-1334664411,"_task_hash":789901450,"answer":"accept"} +{"text":", i felt the Cipralex wasn't working as well for me as it used to.","spans":[{"start":13,"end":21,"text":"Cipralex","rank":1,"label":"PRODUCT","score":0.1304873857,"source":"core_web_sm","input_hash":1823401175,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.1304873857},"_input_hash":1823401175,"_task_hash":584300993,"answer":"accept"} +{"text":"now i'm just on 20mg of Cipralex daily.","spans":[{"start":24,"end":32,"text":"Cipralex","rank":0,"label":"PRODUCT","score":0.3513954326,"source":"core_web_sm","input_hash":1832694486,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.3513954326},"_input_hash":1832694486,"_task_hash":770115289,"answer":"accept"} +{"text":"Years ago varmiters took the most inherently accurate case design the 308 Win and paired it with the bullet with the best bullet ballistic coefficient and got the 7mm-08.","spans":[{"start":74,"end":77,"text":"Win","rank":3,"label":"PRODUCT","score":0.0036638796,"source":"core_web_sm","input_hash":501482891,"answer":"reject"}],"meta":{"section":"guns","score":0.0036638796},"_input_hash":501482891,"_task_hash":-414782525,"answer":"reject"} +{"text":"can lid at 100 yards offhand.","spans":[{"start":15,"end":20,"text":"yards","rank":3,"label":"PRODUCT","score":0.0093524332,"source":"core_web_sm","input_hash":1729064177,"answer":"reject"}],"meta":{"section":"guns","score":0.0093524332},"_input_hash":1729064177,"_task_hash":407923578,"answer":"reject"} +{"text":"> If you have a 64-bit system and lots of RAM, test with malloc()","spans":[{"start":16,"end":22,"text":"64-bit","rank":1,"label":"PRODUCT","score":0.3659094408,"source":"core_web_sm","input_hash":749783257,"answer":"reject"}],"meta":{"section":"programming","score":0.3659094408},"_input_hash":749783257,"_task_hash":1393595871,"answer":"reject"} +{"text":"I highlight a phrase, ctrl-c, and ctrl-v it into Google with quotation marks around it.","spans":[{"start":49,"end":55,"text":"Google","rank":1,"label":"PRODUCT","score":0.1287458071,"source":"core_web_sm","input_hash":-499911283,"answer":"accept"}],"meta":{"section":"opensource","score":0.1287458071},"_input_hash":-499911283,"_task_hash":1055242495,"answer":"accept"} +{"text":"Also, this was after I was very pleasantly surprised at how great Windows 7 was, and was starting to feel warm fuzzies towards MS...","spans":[{"start":66,"end":75,"text":"Windows 7","rank":0,"label":"PRODUCT","score":0.9019663523,"source":"core_web_sm","input_hash":-1097191900,"answer":"accept"}],"meta":{"section":"opensource","score":0.9019663523},"_input_hash":-1097191900,"_task_hash":-2051908492,"answer":"accept"} +{"text":"Only with the Windows 95/98 defragger, that one was fun to watch.","spans":[{"start":14,"end":21,"text":"Windows","rank":0,"label":"PRODUCT","score":0.7668606793,"source":"core_web_sm","input_hash":1043029320,"answer":"reject"}],"meta":{"section":"DoesAnybodyElse","score":0.7668606793},"_input_hash":1043029320,"_task_hash":1593021237,"answer":"reject"} +{"text":"The works of Heidigger and Husserl (intersubjectivity etc) address these issues directly and you might be interested to delve deeper","spans":[{"start":13,"end":22,"text":"Heidigger","rank":0,"label":"PRODUCT","score":0.7773663362,"source":"core_web_sm","input_hash":-1171467691,"answer":"reject"}],"meta":{"section":"philosophy","score":0.7773663362},"_input_hash":-1171467691,"_task_hash":1437843183,"answer":"reject"} +{"text":"On an LCD it's really just image persistence.","spans":[{"start":6,"end":9,"text":"LCD","rank":0,"label":"PRODUCT","score":0.5661142547,"source":"core_web_sm","input_hash":1400791804,"answer":"reject"}],"meta":{"section":"apple","score":0.5661142547},"_input_hash":1400791804,"_task_hash":2103760440,"answer":"reject"} +{"text":"he's an eloquent advocate for a non-personal deity.","spans":[{"start":32,"end":35,"text":"non","rank":0,"label":"PRODUCT","score":0.2963288702,"source":"core_web_sm","input_hash":1341876839,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.2963288702},"_input_hash":1341876839,"_task_hash":165280232,"answer":"reject"} +{"text":"If people didn't insist on buying iPods and music from iTMS, there would be no vendor lock-in.","spans":[{"start":34,"end":39,"text":"iPods","rank":0,"label":"PRODUCT","score":0.9981145844,"source":"core_web_sm","input_hash":-308932663,"answer":"accept"}],"meta":{"section":"WTF","score":0.9981145844},"_input_hash":-308932663,"_task_hash":-1580853808,"answer":"accept"} +{"text":"Why are they buying iPods?","spans":[{"start":20,"end":25,"text":"iPods","rank":0,"label":"PRODUCT","score":0.9494326384,"source":"core_web_sm","input_hash":1904097232,"answer":"accept"}],"meta":{"section":"WTF","score":0.9494326384},"_input_hash":1904097232,"_task_hash":-1722812626,"answer":"accept"} +{"text":"You abandon consumerism by SELLING your tv, giving more money you can use to CONSUME other shit.","spans":[{"start":77,"end":84,"text":"CONSUME","rank":6,"label":"PRODUCT","score":0.0157840237,"source":"core_web_sm","input_hash":-1245070632,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0157840237},"_input_hash":-1245070632,"_task_hash":1329121955,"answer":"reject"} +{"text":"Google it & check out other pages like cnet, etc.. for reviews.","spans":[{"start":0,"end":6,"text":"Google","rank":2,"label":"PRODUCT","score":0.0034146674,"source":"core_web_sm","input_hash":800737057,"answer":"ignore"}],"meta":{"section":"apple","score":0.0034146674},"_input_hash":800737057,"_task_hash":313543876,"answer":"ignore"} +{"text":"Bathroom breaks are spent with the beeping of a new call in my ear.","spans":[{"start":0,"end":8,"text":"Bathroom","rank":1,"label":"PRODUCT","score":0.3564261269,"source":"core_web_sm","input_hash":1117469412,"answer":"reject"}],"meta":{"section":"IAmA","score":0.3564261269},"_input_hash":1117469412,"_task_hash":-1362375994,"answer":"reject"} +{"text":"HELLOOOO!!!","spans":[{"start":0,"end":8,"text":"HELLOOOO","rank":2,"label":"PRODUCT","score":0.0053304762,"source":"core_web_sm","input_hash":-307252785,"answer":"reject"}],"meta":{"section":"IAmA","score":0.0053304762},"_input_hash":-307252785,"_task_hash":82817849,"answer":"reject"} +{"text":"The trouble is, they were slow, because they had the capacity of 90-odd floppies, but could not spin any faster for fear of bursting into flames.","spans":[{"start":65,"end":71,"text":"90-odd","rank":2,"label":"PRODUCT","score":0.0458243973,"source":"core_web_sm","input_hash":661784807,"answer":"reject"}],"meta":{"section":"pics","score":0.0458243973},"_input_hash":661784807,"_task_hash":2145322680,"answer":"reject"} +{"text":"In 2000, my laptop could use 120Mbyte LS120 disks.","spans":[{"start":38,"end":43,"text":"LS120","rank":0,"label":"PRODUCT","score":0.8525302004,"source":"core_web_sm","input_hash":1510969080,"answer":"reject"}],"meta":{"section":"pics","score":0.8525302004},"_input_hash":1510969080,"_task_hash":-78527073,"answer":"reject"} +{"text":"[Off topic] If you've read that, you need to read Ender's Shadow.","spans":[{"start":58,"end":64,"text":"Shadow","rank":0,"label":"PRODUCT","score":0.8806499078,"source":"core_web_sm","input_hash":1230743849,"answer":"reject"}],"meta":{"section":"science","score":0.8806499078},"_input_hash":1230743849,"_task_hash":1684253631,"answer":"reject"} +{"text":"I usually tell this to people who claim Lost is too confusing or hard to follow - Just rent the seasons on DVD and watch them in sequence.","spans":[{"start":107,"end":110,"text":"DVD","rank":3,"label":"PRODUCT","score":0.0122301728,"source":"core_web_sm","input_hash":1893274466,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0122301728},"_input_hash":1893274466,"_task_hash":-1804417127,"answer":"reject"} +{"text":"I survived a liver translant in Feb, im doing pretty ok, had a grandaughter born (making 5 grandgirls)..the liver thingy was pretty damn hard on me, but im a mean MF and lucky too.","spans":[{"start":91,"end":102,"text":"grandgirls)","rank":1,"label":"PRODUCT","score":0.2456954776,"source":"core_web_sm","input_hash":240937102,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.2456954776},"_input_hash":240937102,"_task_hash":991991519,"answer":"reject"} +{"text":"duck almost kills a dog: http://www.youtube.com/watch?v=tNz5aSnvXjU","spans":[{"start":5,"end":11,"text":"almost","rank":13,"label":"PRODUCT","score":0.0035382378,"source":"core_web_sm","input_hash":-1860502207,"answer":"reject"}],"meta":{"section":"funny","score":0.0035382378},"_input_hash":-1860502207,"_task_hash":-1373325344,"answer":"reject"} +{"text":"Is it true that you can't press pure MDMA into something without it crumbling?","spans":[{"start":37,"end":41,"text":"MDMA","rank":1,"label":"PRODUCT","score":0.2057438607,"source":"core_web_sm","input_hash":914766867,"answer":"reject"}],"meta":{"section":"Drugs","score":0.2057438607},"_input_hash":914766867,"_task_hash":-1431391720,"answer":"reject"} +{"text":"If some view empiricism as more important than holding to presupposed facts and/or essentially making things up, and others view to opposite, how can you honestly assert that rational is only objective?","spans":[{"start":3,"end":7,"text":"some","rank":2,"label":"PRODUCT","score":0.0072075229,"source":"core_web_sm","input_hash":-2104511081,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0072075229},"_input_hash":-2104511081,"_task_hash":-1358795551,"answer":"reject"} +{"text":"I've had reverse ejaculation since I had a TURP for BPH 17 years ago.","spans":[{"start":43,"end":47,"text":"TURP","rank":0,"label":"PRODUCT","score":0.7161322843,"source":"core_web_sm","input_hash":-288898909,"answer":"ignore"}],"meta":{"section":"self","score":0.7161322843},"_input_hash":-288898909,"_task_hash":573373420,"answer":"ignore"} +{"text":"just go where you saw them at like 3:30am.","spans":[{"start":35,"end":41,"text":"3:30am","rank":1,"label":"PRODUCT","score":0.2030203018,"source":"core_web_sm","input_hash":1814184721,"answer":"reject"}],"meta":{"section":"Cooking","score":0.2030203018},"_input_hash":1814184721,"_task_hash":-588550176,"answer":"reject"} +{"text":"When The Hobbit gets blocked, then we can tear our clothes and gnash our teeth. :-D","spans":[{"start":9,"end":15,"text":"Hobbit","rank":0,"label":"PRODUCT","score":0.7594427285,"source":"core_web_sm","input_hash":-1469404476,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.7594427285},"_input_hash":-1469404476,"_task_hash":371750870,"answer":"reject"} +{"text":"Not that I speak from experience, but maybe when the ticket prices are around 10 bucks and it turns out the movie stinks, people feel like the only way to get their money's worth is to make a mess.","spans":[{"start":78,"end":80,"text":"10","rank":3,"label":"PRODUCT","score":0.0213172537,"source":"core_web_sm","input_hash":1163126503,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0213172537},"_input_hash":1163126503,"_task_hash":2115879705,"answer":"reject"} +{"text":"Shes now a fan of gonewild and had a lot of fun taking them for you all!","spans":[{"start":3,"end":4,"text":"s","rank":2,"label":"PRODUCT","score":0.0741198598,"source":"core_web_sm","input_hash":413818433,"answer":"reject"}],"meta":{"section":"gonewild","score":0.0741198598},"_input_hash":413818433,"_task_hash":1274349706,"answer":"reject"} +{"text":"Make sure it's at least a G10 series for color response and black levels.","spans":[{"start":26,"end":29,"text":"G10","rank":1,"label":"PRODUCT","score":0.0483807525,"source":"core_web_sm","input_hash":147582725,"answer":"ignore"}],"meta":{"section":"AskReddit","score":0.0483807525},"_input_hash":147582725,"_task_hash":-564572077,"answer":"ignore"} +{"text":"I think your best bet for a solid night of fun is to walk eastbound on Pike street from Bellevue ave to 15th ave on Capitol Hill.","spans":[{"start":71,"end":75,"text":"Pike","rank":6,"label":"PRODUCT","score":0.0074101542,"source":"core_web_sm","input_hash":1374243018,"answer":"reject"}],"meta":{"section":"Seattle","score":0.0074101542},"_input_hash":1374243018,"_task_hash":1922989310,"answer":"reject"} +{"text":"the corporation has been leveraging the middle class for years.itworks every time","spans":[{"start":57,"end":70,"text":"years.itworks","rank":1,"label":"PRODUCT","score":0.0528013514,"source":"core_web_sm","input_hash":-505371845,"answer":"reject"}],"meta":{"section":"politics","score":0.0528013514},"_input_hash":-505371845,"_task_hash":2018438061,"answer":"reject"} +{"text":"the usa feel like a 3rd world country","spans":[{"start":20,"end":23,"text":"3rd","rank":3,"label":"PRODUCT","score":0.1006534053,"source":"core_web_sm","input_hash":-442243679,"answer":"reject"}],"meta":{"section":"IAmA","score":0.1006534053},"_input_hash":-442243679,"_task_hash":-1701140347,"answer":"reject"} +{"text":"I'll be honest...the trailer & movie are already sold to me...","spans":[{"start":29,"end":33,"text":"&","rank":2,"label":"PRODUCT","score":0.1383098147,"source":"core_web_sm","input_hash":1767837745,"answer":"reject"}],"meta":{"section":"WeAreTheMusicMakers","score":0.1383098147},"_input_hash":1767837745,"_task_hash":1581628547,"answer":"reject"} +{"text":"Let me suggest that her problem is likely to be one of brain chemistry, but not one that can be handled by a non-specialist, like an internist.","spans":[{"start":109,"end":112,"text":"non","rank":1,"label":"PRODUCT","score":0.3572066802,"source":"core_web_sm","input_hash":-729803493,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.3572066802},"_input_hash":-729803493,"_task_hash":1154711904,"answer":"reject"} +{"text":"(this is how that game Apples to Apples","spans":[{"start":23,"end":29,"text":"Apples","rank":0,"label":"PRODUCT","score":0.6637794733,"source":"core_web_sm","input_hash":347835772,"answer":"reject"}],"meta":{"section":"IAmA","score":0.6637794733},"_input_hash":347835772,"_task_hash":-143260096,"answer":"reject"} +{"text":"Congrats, y'old coot. :)","spans":[{"start":10,"end":15,"text":"y'old","rank":2,"label":"PRODUCT","score":0.0480456625,"source":"core_web_sm","input_hash":1868515734,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0480456625},"_input_hash":1868515734,"_task_hash":-803306654,"answer":"reject"} +{"text":"Ubuntu comes with at least one built-in PDF reader, Evince.","spans":[{"start":52,"end":58,"text":"Evince","rank":1,"label":"PRODUCT","score":0.1892529769,"source":"core_web_sm","input_hash":462500123,"answer":"accept"}],"meta":{"section":"Ubuntu","score":0.1892529769},"_input_hash":462500123,"_task_hash":764078310,"answer":"accept"} +{"text":"If you're not above non-kosher means get them an SNES and GBA emulator and populate it with 16-bit classics of all stripes, namely Earthbound/Mother 3/Final Fantasy VI/Link to the Past/Super Metroid.","spans":[{"start":92,"end":98,"text":"16-bit","rank":5,"label":"PRODUCT","score":0.0642743998,"source":"core_web_sm","input_hash":-884081124,"answer":"reject"}],"meta":{"section":"gaming","score":0.0642743998},"_input_hash":-884081124,"_task_hash":-1971032940,"answer":"reject"} +{"text":"Otherwise, assuming their parents are ok with violence (games that will only allow them to learn something or two, not twitch-fests like Counter Strike or Manhunt; not that there's anything wrong with those): -Starcraft -Portal -Heroes of Might and Magic 3 -*maybe* Team Fortress 2, but even if you can get over the violence the asshole nature of total strangers on the internet make this pretty much a dealbreaker unless you believe in exposing them to such trash early. -Sim City 4 -Settlers of Catan","spans":[{"start":497,"end":502,"text":"Catan","rank":5,"label":"PRODUCT","score":0.0946884606,"source":"core_web_sm","input_hash":1947108288,"answer":"reject"}],"meta":{"section":"gaming","score":0.0946884606},"_input_hash":1947108288,"_task_hash":1826996218,"answer":"reject"} +{"text":"I wish Reddit would go ahead and implement OpenID.","spans":[{"start":43,"end":49,"text":"OpenID","rank":2,"label":"PRODUCT","score":0.0369147178,"source":"core_web_sm","input_hash":883123616,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.0369147178},"_input_hash":883123616,"_task_hash":1994301980,"answer":"accept"} +{"text":"Classic false flag terrorism.","spans":[{"start":0,"end":7,"text":"Classic","rank":0,"label":"PRODUCT","score":0.7803141165,"source":"core_web_sm","input_hash":1860713625,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.7803141165},"_input_hash":1860713625,"_task_hash":1850290999,"answer":"reject"} +{"text":"I'm not saying you're full of shit, or that this isn't a legit download, just explaining why people would think this is a scam.","spans":[{"start":57,"end":62,"text":"legit","rank":2,"label":"PRODUCT","score":0.0999192337,"source":"core_web_sm","input_hash":752965192,"answer":"reject"}],"meta":{"section":"mac","score":0.0999192337},"_input_hash":752965192,"_task_hash":1162305636,"answer":"reject"} +{"text":"but i had an inch-thick striploin last night","spans":[{"start":13,"end":17,"text":"inch","rank":6,"label":"PRODUCT","score":0.0118283477,"source":"core_web_sm","input_hash":-1202154692,"answer":"reject"}],"meta":{"section":"Cooking","score":0.0118283477},"_input_hash":-1202154692,"_task_hash":-1094987159,"answer":"reject"} +{"text":"It used to give you an HP bonus, but they removed it.","spans":[{"start":23,"end":25,"text":"HP","rank":0,"label":"PRODUCT","score":0.9738310851,"source":"core_web_sm","input_hash":230975194,"answer":"reject"}],"meta":{"section":"tf2","score":0.9738310851},"_input_hash":230975194,"_task_hash":1021990351,"answer":"reject"} +{"text":"\u2442\u146d\u220a \u03c9\u13c2\u2c65\u0236\u220a\u2c71\u220a\u044f \u0481\u044f\u2c65\u0291\u2442 \u0481\u13c2\u2c65\u044f\u1514 \u2442\u03c3\u1d17","spans":[{"start":4,"end":12,"text":"\u03c9\u13c2\u2c65\u0236\u220a\u2c71\u220a\u044f","rank":0,"label":"PRODUCT","score":0.8117747885,"source":"core_web_sm","input_hash":1418135880,"answer":"ignore"}],"meta":{"section":"funny","score":0.8117747885},"_input_hash":1418135880,"_task_hash":-752187885,"answer":"ignore"} +{"text":"Turn off Playstation\u00ae3.","spans":[{"start":9,"end":20,"text":"Playstation","rank":1,"label":"PRODUCT","score":0.1376972748,"source":"core_web_sm","input_hash":1280992188,"answer":"reject"}],"meta":{"section":"PS3","score":0.1376972748},"_input_hash":1280992188,"_task_hash":-1169925826,"answer":"reject"} +{"text":"Just a friendly heads-up for future reference --apologies if you already know this; the people who we in the US refer to as the \"Scots-Irish\" haven't lived in Scotland for over 500 years and in the British Isles are referred to as the \"Ulster-Scots,\" which is much less confusing because Ulster (Ireland's northern province) is where they live.","spans":[{"start":288,"end":294,"text":"Ulster","rank":0,"label":"PRODUCT","score":0.6865946307,"source":"core_web_sm","input_hash":-1527550104,"answer":"reject"}],"meta":{"section":"pics","score":0.6865946307},"_input_hash":-1527550104,"_task_hash":-995454132,"answer":"reject"} +{"text":"She is the sweetest woman ever and treats me like a King.","spans":[{"start":52,"end":56,"text":"King","rank":1,"label":"PRODUCT","score":0.3963724797,"source":"core_web_sm","input_hash":1412783312,"answer":"reject"}],"meta":{"section":"IAmA","score":0.3963724797},"_input_hash":1412783312,"_task_hash":-12307848,"answer":"reject"} +{"text":"We were joking at work the other day about Google Goggles, the Android app that lets you take pictures of stuff and Google figures out what it is (in some cases).","spans":[{"start":116,"end":122,"text":"Google","rank":0,"label":"PRODUCT","score":0.7258585778,"source":"core_web_sm","input_hash":-1082114637,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.7258585778},"_input_hash":-1082114637,"_task_hash":-988996070,"answer":"accept"} +{"text":"I'll be $2.6 billion dollars richer!!!","spans":[{"start":8,"end":9,"text":"$","rank":0,"label":"PRODUCT","score":0.8201849838,"source":"core_web_sm","input_hash":-352584730,"answer":"reject"}],"meta":{"section":"WTF","score":0.8201849838},"_input_hash":-352584730,"_task_hash":2091302116,"answer":"reject"} +{"text":"[Please don't] Mass-downvote someone else's posts.","spans":[{"start":1,"end":7,"text":"Please","rank":6,"label":"PRODUCT","score":0.0019087413,"source":"core_web_sm","input_hash":-1543423258,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0019087413},"_input_hash":-1543423258,"_task_hash":-768578683,"answer":"reject"} +{"text":"Have I mentioned our highways?","spans":[{"start":21,"end":29,"text":"highways","rank":3,"label":"PRODUCT","score":0.0199786212,"source":"core_web_sm","input_hash":-1808285021,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0199786212},"_input_hash":-1808285021,"_task_hash":-1751441871,"answer":"reject"} +{"text":"but i often feel like a stranger in a strange land.","spans":[{"start":24,"end":32,"text":"stranger","rank":0,"label":"PRODUCT","score":0.7050905086,"source":"core_web_sm","input_hash":1767986905,"answer":"reject"}],"meta":{"section":"DoesAnybodyElse","score":0.7050905086},"_input_hash":1767986905,"_task_hash":1067047235,"answer":"reject"} +{"text":"So wait, Puerto Rico, I DO need a passport to visit? ...","spans":[{"start":9,"end":15,"text":"Puerto","rank":2,"label":"PRODUCT","score":0.0060680034,"source":"core_web_sm","input_hash":1895163524,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0060680034},"_input_hash":1895163524,"_task_hash":516163448,"answer":"reject"} +{"text":"I just finished installing Windows 7 and Ubuntu 9.10 on my new Intel X25-M.","spans":[{"start":27,"end":36,"text":"Windows 7","rank":1,"label":"PRODUCT","score":0.3887109061,"source":"core_web_sm","input_hash":752928245,"answer":"accept"}],"meta":{"section":"technology","score":0.3887109061},"_input_hash":752928245,"_task_hash":-1435751501,"answer":"accept"} +{"text":"With the addition of Chrome to replace Firefox, everything is so much faster than it was two weeks ago.","spans":[{"start":39,"end":46,"text":"Firefox","rank":1,"label":"PRODUCT","score":0.1871474848,"source":"core_web_sm","input_hash":1903648518,"answer":"accept"}],"meta":{"section":"technology","score":0.1871474848},"_input_hash":1903648518,"_task_hash":1779568224,"answer":"accept"} +{"text":"I only like to cook when I'm cooking something stupid simple (bacon & eggs) or for another person.","spans":[{"start":68,"end":72,"text":"&","rank":2,"label":"PRODUCT","score":0.0499388638,"source":"core_web_sm","input_hash":-230117530,"answer":"reject"}],"meta":{"section":"Frugal","score":0.0499388638},"_input_hash":-230117530,"_task_hash":1421928276,"answer":"reject"} +{"text":"but I am a major rat fan too :]","spans":[{"start":29,"end":31,"text":":]","rank":7,"label":"PRODUCT","score":0.0046320548,"source":"core_web_sm","input_hash":102818857,"answer":"reject"}],"meta":{"section":"pics","score":0.0046320548},"_input_hash":102818857,"_task_hash":-1218911839,"answer":"reject"} +{"text":"I know (still being on a Rev A MacBook Pro Core Duo), and I should have been clearer.","spans":[{"start":31,"end":38,"text":"MacBook","rank":0,"label":"PRODUCT","score":0.4945046853,"source":"core_web_sm","input_hash":39002226,"answer":"reject"}],"meta":{"section":"programming","score":0.4945046853},"_input_hash":39002226,"_task_hash":1333297884,"answer":"reject"} +{"text":"Used Mixcraft, now using Reaper.","spans":[{"start":25,"end":31,"text":"Reaper","rank":4,"label":"PRODUCT","score":0.0108687632,"source":"core_web_sm","input_hash":-523371561,"answer":"accept"}],"meta":{"section":"WeAreTheMusicMakers","score":0.0108687632},"_input_hash":-523371561,"_task_hash":-479498721,"answer":"accept"} +{"text":"For the same price, Reaper destroys.","spans":[{"start":20,"end":26,"text":"Reaper","rank":2,"label":"PRODUCT","score":0.0288342981,"source":"core_web_sm","input_hash":393928005,"answer":"accept"}],"meta":{"section":"WeAreTheMusicMakers","score":0.0288342981},"_input_hash":393928005,"_task_hash":2120225444,"answer":"accept"} +{"text":"Using LAME with VBR and a decent bitrate between 192 and 320lb can give you MP3s","spans":[{"start":57,"end":60,"text":"320","rank":0,"label":"PRODUCT","score":0.5586429953,"source":"core_web_sm","input_hash":-1666379138,"answer":"reject"}],"meta":{"section":"Music","score":0.5586429953},"_input_hash":-1666379138,"_task_hash":587933749,"answer":"reject"} +{"text":"I'm going to watch hockey, then play Fallout 3, then engage in intercourse with a female.","spans":[{"start":37,"end":46,"text":"Fallout 3","rank":0,"label":"PRODUCT","score":0.7360354782,"source":"core_web_sm","input_hash":605660602,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.7360354782},"_input_hash":605660602,"_task_hash":-1886091529,"answer":"accept"} +{"text":"You'd better have Windows 98.","spans":[{"start":18,"end":28,"text":"Windows 98","rank":0,"label":"PRODUCT","score":0.9922347053,"source":"core_web_sm","input_hash":204846724,"answer":"accept"}],"meta":{"section":"WTF","score":0.9922347053},"_input_hash":204846724,"_task_hash":466605150,"answer":"accept"} +{"text":"[Citation Needed]","spans":[{"start":1,"end":9,"text":"Citation","rank":0,"label":"PRODUCT","score":0.9982632452,"source":"core_web_sm","input_hash":2077322908,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.9982632452},"_input_hash":2077322908,"_task_hash":-1808292663,"answer":"reject"} +{"text":"Send me a PM","spans":[{"start":10,"end":12,"text":"PM","rank":3,"label":"PRODUCT","score":0.0736402441,"source":"core_web_sm","input_hash":-1484024719,"answer":"reject"}],"meta":{"section":"gamedev","score":0.0736402441},"_input_hash":-1484024719,"_task_hash":-1013577770,"answer":"reject"} +{"text":"Perhaps you could elaborate on your complaints with Ghostbusters?","spans":[{"start":52,"end":64,"text":"Ghostbusters","rank":4,"label":"PRODUCT","score":0.0203100323,"source":"core_web_sm","input_hash":-132733988,"answer":"reject"}],"meta":{"section":"gaming","score":0.0203100323},"_input_hash":-132733988,"_task_hash":267277611,"answer":"reject"} +{"text":"The only caveats are the same as every dating site... generally the women are outnumbered and flooded with responses, so you have to work extra hard to stand out.","spans":[{"start":4,"end":8,"text":"only","rank":3,"label":"PRODUCT","score":0.0056253999,"source":"core_web_sm","input_hash":96377191,"answer":"reject"}],"meta":{"section":"relationship_advice","score":0.0056253999},"_input_hash":96377191,"_task_hash":-1871489076,"answer":"reject"} +{"text":"Their digital phone is little more than abstracted VOIP; just a regular cable modem with a little classic-analog \"Oomph,\" if you will.","spans":[{"start":114,"end":119,"text":"Oomph","rank":7,"label":"PRODUCT","score":0.0219507826,"source":"core_web_sm","input_hash":90619189,"answer":"reject"}],"meta":{"section":"technology","score":0.0219507826},"_input_hash":90619189,"_task_hash":-1096253769,"answer":"reject"} +{"text":"your region's / county's / town's / neighborhood's / street's infrastructure -","spans":[{"start":14,"end":15,"text":"/","rank":7,"label":"PRODUCT","score":0.0579995329,"source":"core_web_sm","input_hash":-1562646441,"answer":"reject"}],"meta":{"section":"technology","score":0.0579995329},"_input_hash":-1562646441,"_task_hash":-1645894793,"answer":"reject"} +{"text":"I live in Google capital: Mountain View.","spans":[{"start":10,"end":16,"text":"Google","rank":0,"label":"PRODUCT","score":0.9377912371,"source":"core_web_sm","input_hash":-1472180919,"answer":"ignore"}],"meta":{"section":"reddit.com","score":0.9377912371},"_input_hash":-1472180919,"_task_hash":1104679302,"answer":"ignore"} +{"text":"I am on SL with a 2.0ghz MacBook and it still pulls up i386","spans":[{"start":25,"end":32,"text":"MacBook","rank":1,"label":"PRODUCT","score":0.0493785543,"source":"core_web_sm","input_hash":1999821738,"answer":"accept"}],"meta":{"section":"programming","score":0.0493785543},"_input_hash":1999821738,"_task_hash":-381210550,"answer":"accept"} +{"text":", I just saw a Taekwondo tournament before","spans":[{"start":15,"end":24,"text":"Taekwondo","rank":2,"label":"PRODUCT","score":0.0036350058,"source":"core_web_sm","input_hash":-1416408942,"answer":"reject"}],"meta":{"section":"IAmA","score":0.0036350058},"_input_hash":-1416408942,"_task_hash":61500934,"answer":"reject"} +{"text":"Most events are closed to the non-registered dogs","spans":[{"start":30,"end":33,"text":"non","rank":0,"label":"PRODUCT","score":0.2649904206,"source":"core_web_sm","input_hash":-773269341,"answer":"reject"}],"meta":{"section":"dogs","score":0.2649904206},"_input_hash":-773269341,"_task_hash":-1637470599,"answer":"reject"} +{"text":"Thor and Loki","spans":[{"start":9,"end":13,"text":"Loki","rank":0,"label":"PRODUCT","score":0.4774907217,"source":"core_web_sm","input_hash":-1469963064,"answer":"reject"}],"meta":{"section":"self","score":0.4774907217},"_input_hash":-1469963064,"_task_hash":-771524475,"answer":"reject"} +{"text":"In particular, it made me think of the line from Terminator 2: Judgment Day where the (good) terminator said:","spans":[{"start":49,"end":61,"text":"Terminator 2","rank":0,"label":"PRODUCT","score":0.4183685863,"source":"core_web_sm","input_hash":52876636,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.4183685863},"_input_hash":52876636,"_task_hash":993996210,"answer":"reject"} +{"text":"The article I saw didn't provide enough info to show how this is different from the people you see on The First 48, aside from the fact they probably have expensive lawyers and aren't poor blacks and hispanics.","spans":[{"start":102,"end":114,"text":"The First 48","rank":3,"label":"PRODUCT","score":0.0071060843,"source":"core_web_sm","input_hash":-1152949624,"answer":"reject"}],"meta":{"section":"politics","score":0.0071060843},"_input_hash":-1152949624,"_task_hash":664325243,"answer":"reject"} +{"text":"FFB is still viable on ToGC25 Anub.","spans":[{"start":23,"end":34,"text":"ToGC25 Anub","rank":4,"label":"PRODUCT","score":0.0261299805,"source":"core_web_sm","input_hash":1715390963,"answer":"ignore"}],"meta":{"section":"wow","score":0.0261299805},"_input_hash":1715390963,"_task_hash":356866540,"answer":"ignore"} +{"text":"Why the fuck would you go with an i5 for 200 when an i7 is 220?","spans":[{"start":59,"end":62,"text":"220","rank":9,"label":"PRODUCT","score":0.0035343024,"source":"core_web_sm","input_hash":-971197243,"answer":"reject"},{"start":53,"end":55,"text":"i7","rank":0,"label":"PRODUCT","score":0.733768276,"source":"core_web_sm","input_hash":-971197243,"answer":"accept"}],"meta":{"section":"gaming","score":0.0035343024},"_input_hash":-971197243,"_task_hash":-875724347,"answer":"reject"} +{"text":"Why the fuck would you go with an i5 for 200 when an i7 is 220?","spans":[{"start":53,"end":55,"text":"i7","rank":0,"label":"PRODUCT","score":0.733768276,"source":"core_web_sm","input_hash":-971197243,"answer":"accept"}],"meta":{"section":"gaming","score":0.733768276},"_input_hash":-971197243,"_task_hash":1205503560,"answer":"accept"} +{"text":"I never left Santa Cruz when I was homeless, so I never experienced the situation outside of there.","spans":[{"start":13,"end":18,"text":"Santa","rank":0,"label":"PRODUCT","score":0.7360703211,"source":"core_web_sm","input_hash":-1498310076,"answer":"reject"}],"meta":{"section":"IAmA","score":0.7360703211},"_input_hash":-1498310076,"_task_hash":1015077191,"answer":"reject"} +{"text":"Like: Tetris Pro Extreme by popcap with 3d explosions, 12 more colours, $/\u00a350 worth of DLC and 400 achievements!","spans":[{"start":72,"end":73,"text":"$","rank":0,"label":"PRODUCT","score":0.9981727955,"source":"core_web_sm","input_hash":-1172722523,"answer":"reject"}],"meta":{"section":"gaming","score":0.9981727955},"_input_hash":-1172722523,"_task_hash":-1402326952,"answer":"reject"} +{"text":"Or in python 3.x: \"python -m http.server\"","spans":[{"start":13,"end":16,"text":"3.x","rank":0,"label":"PRODUCT","score":0.7130980398,"source":"core_web_sm","input_hash":-181105329,"answer":"reject"}],"meta":{"section":"programming","score":0.7130980398},"_input_hash":-181105329,"_task_hash":14235726,"answer":"reject"} +{"text":"I do actually like Vista x_64 and look forward to a W7 version soon.","spans":[{"start":52,"end":54,"text":"W7","rank":0,"label":"PRODUCT","score":0.8151882883,"source":"core_web_sm","input_hash":-571982649,"answer":"accept"}],"meta":{"section":"pics","score":0.8151882883},"_input_hash":-571982649,"_task_hash":1849534668,"answer":"accept"} +{"text":"Did you just spend $20 to tell Reddit how drunk you are?","spans":[{"start":31,"end":37,"text":"Reddit","rank":1,"label":"PRODUCT","score":0.0247637451,"source":"core_web_sm","input_hash":-558725693,"answer":"accept"}],"meta":{"section":"self","score":0.0247637451},"_input_hash":-558725693,"_task_hash":-1741796338,"answer":"accept"} +{"text":"He is, and wrote a book about the history of North America and had some interesting things to say about Atlantis, which I thought might be of interest to you.","spans":[{"start":104,"end":112,"text":"Atlantis","rank":0,"label":"PRODUCT","score":0.9816114083,"source":"core_web_sm","input_hash":-1658941945,"answer":"reject"}],"meta":{"section":"science","score":0.9816114083},"_input_hash":-1658941945,"_task_hash":-1579128279,"answer":"reject"} +{"text":"All you need is to daydream a bit.","spans":[{"start":30,"end":33,"text":"bit","rank":2,"label":"PRODUCT","score":0.0022058797,"source":"core_web_sm","input_hash":-1737560884,"answer":"reject"}],"meta":{"section":"philosophy","score":0.0022058797},"_input_hash":-1737560884,"_task_hash":-1716486349,"answer":"reject"} +{"text":"The random, non-defined concept of what people might think of as a \"god\" (yet has also never been proven to exist) which you erroneously think you're going to trap me with is of no relevance to human concerns.","spans":[{"start":12,"end":15,"text":"non","rank":1,"label":"PRODUCT","score":0.1451455455,"source":"core_web_sm","input_hash":-1933087019,"answer":"reject"}],"meta":{"section":"atheism","score":0.1451455455},"_input_hash":-1933087019,"_task_hash":1473276794,"answer":"reject"} +{"text":"Super Metroid in under two hours, with the minimum # of upgrades (or alternatively, all of them)?","spans":[{"start":51,"end":52,"text":"#","rank":0,"label":"PRODUCT","score":0.7022442859,"source":"core_web_sm","input_hash":-726553527,"answer":"reject"}],"meta":{"section":"GamersMarathon","score":0.7022442859},"_input_hash":-726553527,"_task_hash":1230359868,"answer":"reject"} +{"text":"Yep, PM me your steamid.","spans":[{"start":5,"end":7,"text":"PM","rank":2,"label":"PRODUCT","score":0.0178034483,"source":"core_web_sm","input_hash":1326575791,"answer":"reject"}],"meta":{"section":"gaming","score":0.0178034483},"_input_hash":1326575791,"_task_hash":1383236348,"answer":"reject"} +{"text":"But MDMA as a pure drug is legally perscribed by doctors in california and doesn't have as bad of a come down, which doesn't lead to depression or hallucinogenic disorders, coma or death. \"","spans":[{"start":4,"end":8,"text":"MDMA","rank":3,"label":"PRODUCT","score":0.0279006317,"source":"core_web_sm","input_hash":865658490,"answer":"reject"}],"meta":{"section":"Marijuana","score":0.0279006317},"_input_hash":865658490,"_task_hash":-1391545092,"answer":"reject"} +{"text":"In laboratory studies, MDMA has been proven sufficiently safe for human consumption when taken a limited number of times in moderate doses.","spans":[{"start":23,"end":27,"text":"MDMA","rank":0,"label":"PRODUCT","score":0.4991736778,"source":"core_web_sm","input_hash":1677921042,"answer":"reject"}],"meta":{"section":"Marijuana","score":0.4991736778},"_input_hash":1677921042,"_task_hash":-1667071300,"answer":"reject"} +{"text":"**it has now been revealed by the Spirit*","spans":[{"start":34,"end":40,"text":"Spirit","rank":1,"label":"PRODUCT","score":0.0380577748,"source":"core_web_sm","input_hash":439923537,"answer":"reject"}],"meta":{"section":"Christianity","score":0.0380577748},"_input_hash":439923537,"_task_hash":1285005852,"answer":"reject"} +{"text":"and nearly double your money and just keep going like that until you bust out and do it all or throw a hotel room party and get several other people loaded for days. ...","spans":[{"start":4,"end":10,"text":"nearly","rank":6,"label":"PRODUCT","score":0.0028620998,"source":"core_web_sm","input_hash":428136918,"answer":"reject"}],"meta":{"section":"IAmA","score":0.0028620998},"_input_hash":428136918,"_task_hash":-152918346,"answer":"reject"} +{"text":"OS X's kernel is still 32-bit by default (except on XServes) since tons of kernel extensions are still 32-bit only.","spans":[{"start":23,"end":29,"text":"32-bit","rank":0,"label":"PRODUCT","score":0.6293275248,"source":"core_web_sm","input_hash":-1663284353,"answer":"reject"}],"meta":{"section":"programming","score":0.6293275248},"_input_hash":-1663284353,"_task_hash":-848442628,"answer":"reject"} +{"text":"Nearly everything in userland is 64-bit, though arch/uname -m depends on the kernel architecture.","spans":[{"start":33,"end":39,"text":"64-bit","rank":0,"label":"PRODUCT","score":0.7814216211,"source":"core_web_sm","input_hash":505811540,"answer":"reject"}],"meta":{"section":"programming","score":0.7814216211},"_input_hash":505811540,"_task_hash":862925831,"answer":"reject"} +{"text":"Take a look at Wt:","spans":[{"start":15,"end":17,"text":"Wt","rank":1,"label":"PRODUCT","score":0.4374242089,"source":"core_web_sm","input_hash":-1367953349,"answer":"ignore"}],"meta":{"section":"cpp","score":0.4374242089},"_input_hash":-1367953349,"_task_hash":-257240038,"answer":"ignore"} +{"text":"it will not end but just merge with Survivor","spans":[{"start":36,"end":44,"text":"Survivor","rank":0,"label":"PRODUCT","score":0.9969154871,"source":"core_web_sm","input_hash":1531530568,"answer":"ignore"}],"meta":{"section":"AskReddit","score":0.9969154871},"_input_hash":1531530568,"_task_hash":172001815,"answer":"ignore"} +{"text":"Your reply is going to all the TWC employees I know.","spans":[{"start":31,"end":34,"text":"TWC","rank":2,"label":"PRODUCT","score":0.0187973501,"source":"core_web_sm","input_hash":-671366110,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0187973501},"_input_hash":-671366110,"_task_hash":723597189,"answer":"reject"} +{"text":"i like The Stone, Roulette and Cornelia Street Cafe for jazz stuff.","spans":[{"start":31,"end":51,"text":"Cornelia Street Cafe","rank":3,"label":"PRODUCT","score":0.0135259718,"source":"core_web_sm","input_hash":1537630696,"answer":"reject"}],"meta":{"section":"nyc","score":0.0135259718},"_input_hash":1537630696,"_task_hash":-1263251622,"answer":"reject"} +{"text":"Pine tree pine tree, pine tree pine tree, Pine tree pine tree pine tree.","spans":[{"start":42,"end":46,"text":"Pine","rank":0,"label":"PRODUCT","score":0.6553737167,"source":"core_web_sm","input_hash":-2133635275,"answer":"reject"}],"meta":{"section":"Music","score":0.6553737167},"_input_hash":-2133635275,"_task_hash":212768768,"answer":"reject"} +{"text":"Also known as Nack.","spans":[{"start":14,"end":18,"text":"Nack","rank":0,"label":"PRODUCT","score":0.5400060455,"source":"core_web_sm","input_hash":953188621,"answer":"ignore"}],"meta":{"section":"tf2","score":0.5400060455},"_input_hash":953188621,"_task_hash":-39727279,"answer":"ignore"} +{"text":"As a non-American I have to say it's not only the US that needs to change it's priorities.","spans":[{"start":5,"end":8,"text":"non","rank":0,"label":"PRODUCT","score":0.5528297673,"source":"core_web_sm","input_hash":162981373,"answer":"reject"}],"meta":{"section":"Economics","score":0.5528297673},"_input_hash":162981373,"_task_hash":-340281991,"answer":"reject"} +{"text":"Dodie watched Blanche sitting on the sofa reading one of the books she'd bought, the translated title being Barbed Wire Brassiere, Blanche squirming at the descriptions of blood dripping down breasts that were torn to pieces by the unpleasant underwear of the title.","spans":[{"start":14,"end":21,"text":"Blanche","rank":0,"label":"PRODUCT","score":0.8381894581,"source":"core_web_sm","input_hash":-475763680,"answer":"reject"}],"meta":{"section":"pics","score":0.8381894581},"_input_hash":-475763680,"_task_hash":1795868730,"answer":"reject"} +{"text":"A bit gruesome,\" admitted Blanche.","spans":[{"start":26,"end":33,"text":"Blanche","rank":1,"label":"PRODUCT","score":0.448348681,"source":"core_web_sm","input_hash":-282695116,"answer":"reject"}],"meta":{"section":"pics","score":0.448348681},"_input_hash":-282695116,"_task_hash":-963082149,"answer":"reject"} +{"text":"I never said I only used Taekwondo when I fought.","spans":[{"start":25,"end":34,"text":"Taekwondo","rank":2,"label":"PRODUCT","score":0.0199994125,"source":"core_web_sm","input_hash":-585543172,"answer":"reject"}],"meta":{"section":"IAmA","score":0.0199994125},"_input_hash":-585543172,"_task_hash":-1305242436,"answer":"reject"} +{"text":"I, for one, welcome our new Google overlords.","spans":[{"start":28,"end":34,"text":"Google","rank":0,"label":"PRODUCT","score":0.7703630679,"source":"core_web_sm","input_hash":439960998,"answer":"ignore"}],"meta":{"section":"reddit.com","score":0.7703630679},"_input_hash":439960998,"_task_hash":2047922084,"answer":"ignore"} +{"text":"I use a mix of Taekwondo, jujitsu, Muy Thai, Judo, wrestling, and boxing.","spans":[{"start":45,"end":49,"text":"Judo","rank":2,"label":"PRODUCT","score":0.1842937866,"source":"core_web_sm","input_hash":-1031506716,"answer":"reject"}],"meta":{"section":"IAmA","score":0.1842937866},"_input_hash":-1031506716,"_task_hash":675249615,"answer":"reject"} +{"text":"> Notes:","spans":[{"start":2,"end":7,"text":"Notes","rank":0,"label":"PRODUCT","score":0.9850608019,"source":"core_web_sm","input_hash":-446373286,"answer":"reject"}],"meta":{"section":"Economics","score":0.9850608019},"_input_hash":-446373286,"_task_hash":-844850767,"answer":"reject"} +{"text":"OP is probably trying to call c or c++ a real language, when what the op probably means a non dynamic language.","spans":[{"start":90,"end":93,"text":"non","rank":0,"label":"PRODUCT","score":0.974544972,"source":"core_web_sm","input_hash":479047328,"answer":"reject"}],"meta":{"section":"programming","score":0.974544972},"_input_hash":479047328,"_task_hash":829657902,"answer":"reject"} +{"text":"Australia has no national debt & minimal personal debt.","spans":[{"start":31,"end":35,"text":"&","rank":4,"label":"PRODUCT","score":0.1005964961,"source":"core_web_sm","input_hash":108203594,"answer":"reject"}],"meta":{"section":"politics","score":0.1005964961},"_input_hash":108203594,"_task_hash":533759568,"answer":"reject"} +{"text":"I won't bore you with the all rest; visit 'em & see.","spans":[{"start":46,"end":50,"text":"&","rank":3,"label":"PRODUCT","score":0.0045942948,"source":"core_web_sm","input_hash":1556430454,"answer":"reject"}],"meta":{"section":"politics","score":0.0045942948},"_input_hash":1556430454,"_task_hash":-2048825085,"answer":"reject"} +{"text":"but I think it's cool :|","spans":[{"start":22,"end":24,"text":":|","rank":2,"label":"PRODUCT","score":0.285329816,"source":"core_web_sm","input_hash":-366971264,"answer":"reject"}],"meta":{"section":"programming","score":0.285329816},"_input_hash":-366971264,"_task_hash":-1887183696,"answer":"reject"} +{"text":"Regular human-made bullets are useless against Google.","spans":[{"start":47,"end":53,"text":"Google","rank":0,"label":"PRODUCT","score":0.5363858124,"source":"core_web_sm","input_hash":243013956,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.5363858124},"_input_hash":243013956,"_task_hash":1071603183,"answer":"accept"} +{"text":"This is why C#'s spec is so huge.","spans":[{"start":13,"end":14,"text":"#","rank":1,"label":"PRODUCT","score":0.0434113041,"source":"core_web_sm","input_hash":132163246,"answer":"reject"}],"meta":{"section":"programming","score":0.0434113041},"_input_hash":132163246,"_task_hash":-673770762,"answer":"reject"} +{"text":"and if you're not a F# language designer you can't do anything about it.","spans":[{"start":20,"end":22,"text":"F#","rank":1,"label":"PRODUCT","score":0.0677080644,"source":"core_web_sm","input_hash":1270191719,"answer":"accept"}],"meta":{"section":"programming","score":0.0677080644},"_input_hash":1270191719,"_task_hash":-1029837035,"answer":"accept"} +{"text":"He devastated twenty towns from Aroer to the vicinity of Minnith, as far as Abel Keramim.","spans":[{"start":57,"end":64,"text":"Minnith","rank":0,"label":"PRODUCT","score":0.3806653648,"source":"core_web_sm","input_hash":1152603425,"answer":"reject"}],"meta":{"section":"atheism","score":0.3806653648},"_input_hash":1152603425,"_task_hash":-621440130,"answer":"reject"} +{"text":"(They had taken them secretly from the public square at Beth Shan, where the Philistines had hung them after they struck Saul down on Gilboa.)","spans":[{"start":134,"end":140,"text":"Gilboa","rank":2,"label":"PRODUCT","score":0.0218767656,"source":"core_web_sm","input_hash":420093841,"answer":"reject"}],"meta":{"section":"atheism","score":0.0218767656},"_input_hash":420093841,"_task_hash":-1706700829,"answer":"reject"} +{"text":"Many Canadians where I live in Nova Scotia have only been to Quebec as the farthest ever trip!","spans":[{"start":31,"end":42,"text":"Nova Scotia","rank":0,"label":"PRODUCT","score":0.7280306827,"source":"core_web_sm","input_hash":-1257893684,"answer":"reject"}],"meta":{"section":"politics","score":0.7280306827},"_input_hash":-1257893684,"_task_hash":-1759281387,"answer":"reject"} +{"text":"Nah, Metapod only knows Harden and Tackle so","spans":[{"start":35,"end":41,"text":"Tackle","rank":2,"label":"PRODUCT","score":0.0724909026,"source":"core_web_sm","input_hash":-2119882025,"answer":"ignore"}],"meta":{"section":"circlejerk","score":0.0724909026},"_input_hash":-2119882025,"_task_hash":-1278298060,"answer":"ignore"} +{"text":"Im white --Italian and Scotch Irish.","spans":[{"start":23,"end":35,"text":"Scotch Irish","rank":3,"label":"PRODUCT","score":0.0342952801,"source":"core_web_sm","input_hash":-669051121,"answer":"reject"}],"meta":{"section":"IAmA","score":0.0342952801},"_input_hash":-669051121,"_task_hash":-511978555,"answer":"reject"} +{"text":"I have family that were SADF","spans":[{"start":24,"end":28,"text":"SADF","rank":1,"label":"PRODUCT","score":0.0651555198,"source":"core_web_sm","input_hash":1236738875,"answer":"reject"}],"meta":{"section":"IAmA","score":0.0651555198},"_input_hash":1236738875,"_task_hash":853122843,"answer":"reject"} +{"text":"When the max gpa is 4.0, anything from a 93-100, or whatever range gets an A, is 4.0","spans":[{"start":9,"end":12,"text":"max","rank":2,"label":"PRODUCT","score":0.1865577083,"source":"core_web_sm","input_hash":1739902678,"answer":"reject"}],"meta":{"section":"IAmA","score":0.1865577083},"_input_hash":1739902678,"_task_hash":-657937820,"answer":"reject"} +{"text":"The original Metal Gear, in HD.","spans":[{"start":13,"end":23,"text":"Metal Gear","rank":3,"label":"PRODUCT","score":0.0249904205,"source":"core_web_sm","input_hash":-293988119,"answer":"accept"}],"meta":{"section":"PS3","score":0.0249904205},"_input_hash":-293988119,"_task_hash":-1357168579,"answer":"accept"} +{"text":"> If you already have an iPhone and a MacBook; why would you want this?","spans":[{"start":38,"end":45,"text":"MacBook","rank":0,"label":"PRODUCT","score":0.9865572375,"source":"core_web_sm","input_hash":1178060476,"answer":"accept"}],"meta":{"section":"apple","score":0.9865572375},"_input_hash":1178060476,"_task_hash":942474452,"answer":"accept"} +{"text":"Check it out & enjoy!","spans":[{"start":13,"end":17,"text":"&","rank":3,"label":"PRODUCT","score":0.003011446,"source":"core_web_sm","input_hash":-1668169454,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.003011446},"_input_hash":-1668169454,"_task_hash":-171881721,"answer":"reject"} +{"text":"Fourth Edition.","spans":[{"start":0,"end":14,"text":"Fourth Edition","rank":1,"label":"PRODUCT","score":0.0764301343,"source":"core_web_sm","input_hash":-2131899284,"answer":"reject"}],"meta":{"section":"videos","score":0.0764301343},"_input_hash":-2131899284,"_task_hash":1286830762,"answer":"reject"} +{"text":"I could finish the activation, but I will never bother with a DRM game again.","spans":[{"start":62,"end":65,"text":"DRM","rank":1,"label":"PRODUCT","score":0.3582663007,"source":"core_web_sm","input_hash":-1303392795,"answer":"ignore"}],"meta":{"section":"gaming","score":0.3582663007},"_input_hash":-1303392795,"_task_hash":636095497,"answer":"ignore"} +{"text":"It sure as hell wasn't on par with Synechdoche and No Country.","spans":[{"start":35,"end":46,"text":"Synechdoche","rank":1,"label":"PRODUCT","score":0.1259209586,"source":"core_web_sm","input_hash":1746713787,"answer":"reject"}],"meta":{"section":"entertainment","score":0.1259209586},"_input_hash":1746713787,"_task_hash":-1749327186,"answer":"reject"} +{"text":"Austrade Medicare (Univeral Health Care) + Medibank (*Government Business Enterprise* private health insurer)","spans":[{"start":43,"end":51,"text":"Medibank","rank":0,"label":"PRODUCT","score":0.7725515248,"source":"core_web_sm","input_hash":-351653536,"answer":"reject"}],"meta":{"section":"science","score":0.7725515248},"_input_hash":-351653536,"_task_hash":746269816,"answer":"reject"} +{"text":"So your point is that you shouldn't learn on a Mac because most tutorials use Linux or Windows for their examples?","spans":[{"start":87,"end":94,"text":"Windows","rank":0,"label":"PRODUCT","score":0.7451303335,"source":"core_web_sm","input_hash":500064313,"answer":"accept"}],"meta":{"section":"programming","score":0.7451303335},"_input_hash":500064313,"_task_hash":-832662038,"answer":"accept"} +{"text":"That's hardly a citation.","spans":[{"start":16,"end":24,"text":"citation","rank":2,"label":"PRODUCT","score":0.0763807745,"source":"core_web_sm","input_hash":862733082,"answer":"reject"}],"meta":{"section":"funny","score":0.0763807745},"_input_hash":862733082,"_task_hash":-392796887,"answer":"reject"} +{"text":"This would be much more entertaining if it was leaving his wife for Rich Gannon, Quarterback for the Vikings/Raiders.","spans":[{"start":81,"end":92,"text":"Quarterback","rank":6,"label":"PRODUCT","score":0.0164167413,"source":"core_web_sm","input_hash":425434840,"answer":"reject"}],"meta":{"section":"politics","score":0.0164167413},"_input_hash":425434840,"_task_hash":-461516365,"answer":"reject"} +{"text":"i sooo want to walk to the bar down the street but its snowy and cold out a mile and a half, is it worth it,","spans":[{"start":76,"end":80,"text":"mile","rank":2,"label":"PRODUCT","score":0.0593471146,"source":"core_web_sm","input_hash":-2142647758,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0593471146},"_input_hash":-2142647758,"_task_hash":146542591,"answer":"reject"} +{"text":"Mercenaries 2 was a very colorful game.","spans":[{"start":0,"end":13,"text":"Mercenaries 2","rank":3,"label":"PRODUCT","score":0.0059608399,"source":"core_web_sm","input_hash":-303520324,"answer":"accept"}],"meta":{"section":"gaming","score":0.0059608399},"_input_hash":-303520324,"_task_hash":-1357212891,"answer":"accept"} +{"text":"I am in montreal, i already know exactly what i want, a set of peugeot salt/pepper mills, a nice le Creuset stainless steel roaster and a few other smaller items, maybe 600$ at retail prices but pretty sure if i shop around i can get it for half","spans":[{"start":172,"end":173,"text":"$","rank":0,"label":"PRODUCT","score":0.6909257651,"source":"core_web_sm","input_hash":-1562016453,"answer":"reject"}],"meta":{"section":"food","score":0.6909257651},"_input_hash":-1562016453,"_task_hash":462491262,"answer":"reject"} +{"text":"Tony Hawk's Pro Skater 2.","spans":[{"start":12,"end":24,"text":"Pro Skater 2","rank":6,"label":"PRODUCT","score":0.0114762414,"source":"core_web_sm","input_hash":268775289,"answer":"ignore"}],"meta":{"section":"gaming","score":0.0114762414},"_input_hash":268775289,"_task_hash":486406499,"answer":"ignore"} +{"text":"That seems like a pretty lame thing to do to these people, if it's been running for all these years what makes the government think that all of the sudden it is dangerous to the water?","spans":[{"start":18,"end":24,"text":"pretty","rank":9,"label":"PRODUCT","score":0.0071599494,"source":"core_web_sm","input_hash":-1677075258,"answer":"reject"}],"meta":{"section":"offbeat","score":0.0071599494},"_input_hash":-1677075258,"_task_hash":-1324748088,"answer":"reject"} +{"text":"Actually Win 7 transition has been pretty smooth.","spans":[{"start":9,"end":14,"text":"Win 7","rank":4,"label":"PRODUCT","score":0.0055644827,"source":"core_web_sm","input_hash":1641171761,"answer":"accept"}],"meta":{"section":"WeAreTheMusicMakers","score":0.0055644827},"_input_hash":1641171761,"_task_hash":1220338406,"answer":"accept"} +{"text":"I could not stand Mulholland Drive.","spans":[{"start":18,"end":34,"text":"Mulholland Drive","rank":3,"label":"PRODUCT","score":0.0088305804,"source":"core_web_sm","input_hash":1527000987,"answer":"reject"}],"meta":{"section":"entertainment","score":0.0088305804},"_input_hash":1527000987,"_task_hash":1391505613,"answer":"reject"} +{"text":"But all I'm sayin' is that when I watched Das Boot","spans":[{"start":42,"end":50,"text":"Das Boot","rank":3,"label":"PRODUCT","score":0.0014382475,"source":"core_web_sm","input_hash":-751809183,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0014382475},"_input_hash":-751809183,"_task_hash":-882959017,"answer":"reject"} +{"text":"Borderline Personality Disorder, I'd suggest Dialectical Behavior Therapy.","spans":[{"start":66,"end":73,"text":"Therapy","rank":3,"label":"PRODUCT","score":0.0361834312,"source":"core_web_sm","input_hash":725980408,"answer":"reject"}],"meta":{"section":"IAmA","score":0.0361834312},"_input_hash":725980408,"_task_hash":-251623616,"answer":"reject"} +{"text":", Mercenaries 2 was some of the most fun I had on the 360.","spans":[{"start":2,"end":15,"text":"Mercenaries 2","rank":3,"label":"PRODUCT","score":0.0039799985,"source":"core_web_sm","input_hash":366272537,"answer":"accept"}],"meta":{"section":"gaming","score":0.0039799985},"_input_hash":366272537,"_task_hash":953779141,"answer":"accept"} +{"text":"Gordon's not mute, unless it happened during Half Life 1, since Eli Vance said Gordon first told him to be prepared for unintended consequences; he brought it up after Alex said the same thing in Episode 2.","spans":[{"start":196,"end":205,"text":"Episode 2","rank":7,"label":"PRODUCT","score":0.006297627,"source":"core_web_sm","input_hash":9831590,"answer":"reject"}],"meta":{"section":"gaming","score":0.006297627},"_input_hash":9831590,"_task_hash":1117722356,"answer":"reject"} +{"text":"is it just a bit possible that he is regurgitating the revisionist history","spans":[{"start":13,"end":16,"text":"bit","rank":3,"label":"PRODUCT","score":0.0069319569,"source":"core_web_sm","input_hash":-1479210025,"answer":"reject"}],"meta":{"section":"funny","score":0.0069319569},"_input_hash":-1479210025,"_task_hash":-322916002,"answer":"reject"} +{"text":"a charge so obviously contrived that the d.a. refused to pursue it? hmmm?","spans":[{"start":41,"end":44,"text":"d.a","rank":2,"label":"PRODUCT","score":0.0712395682,"source":"core_web_sm","input_hash":1533002805,"answer":"reject"}],"meta":{"section":"funny","score":0.0712395682},"_input_hash":1533002805,"_task_hash":220839548,"answer":"reject"} +{"text":"yeah and maybe in another 1000 years we will find a way to get there before the earth bursts into flame","spans":[{"start":9,"end":14,"text":"maybe","rank":1,"label":"PRODUCT","score":0.1812169043,"source":"core_web_sm","input_hash":-1489915370,"answer":"reject"}],"meta":{"section":"space","score":0.1812169043},"_input_hash":-1489915370,"_task_hash":1735364186,"answer":"reject"} +{"text":"\" I've also observed that, if you show the button to a non-software developer type user, they generally will be kind of shocked.","spans":[{"start":55,"end":58,"text":"non","rank":2,"label":"PRODUCT","score":0.034284846,"source":"core_web_sm","input_hash":1899713675,"answer":"reject"}],"meta":{"section":"todayilearned","score":0.034284846},"_input_hash":1899713675,"_task_hash":-897910697,"answer":"reject"} +{"text":"ok, so i was being a smart ass and put in REDDIT USER HERE!!!","spans":[{"start":42,"end":48,"text":"REDDIT","rank":1,"label":"PRODUCT","score":0.2391899612,"source":"core_web_sm","input_hash":-1549595967,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.2391899612},"_input_hash":-1549595967,"_task_hash":-1006166477,"answer":"accept"} +{"text":"Kim Stanley Robinson wrote about it exhaustively in his Mars Trilogy.","spans":[{"start":56,"end":68,"text":"Mars Trilogy","rank":1,"label":"PRODUCT","score":0.0184533328,"source":"core_web_sm","input_hash":1811106678,"answer":"reject"}],"meta":{"section":"technology","score":0.0184533328},"_input_hash":1811106678,"_task_hash":-1835035131,"answer":"reject"} +{"text":"Damn I live right next to Google in North Carolina.","spans":[{"start":26,"end":32,"text":"Google","rank":1,"label":"PRODUCT","score":0.385394468,"source":"core_web_sm","input_hash":-651144444,"answer":"ignore"}],"meta":{"section":"reddit.com","score":0.385394468},"_input_hash":-651144444,"_task_hash":-610553075,"answer":"ignore"} +{"text":"philosophy/. If all else fails drink some coffee and try to get through Aesop's Fables.","spans":[{"start":80,"end":86,"text":"Fables","rank":0,"label":"PRODUCT","score":0.5226048689,"source":"core_web_sm","input_hash":-1739650576,"answer":"reject"}],"meta":{"section":"philosophy","score":0.5226048689},"_input_hash":-1739650576,"_task_hash":-80304411,"answer":"reject"} +{"text":"You leave MySQL alone","spans":[{"start":10,"end":15,"text":"MySQL","rank":1,"label":"PRODUCT","score":0.2537560081,"source":"core_web_sm","input_hash":-2018664340,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.2537560081},"_input_hash":-2018664340,"_task_hash":1165066410,"answer":"accept"} +{"text":"So that's at least 1 generation of non-inbreeding.","spans":[{"start":35,"end":38,"text":"non","rank":5,"label":"PRODUCT","score":0.0653535908,"source":"core_web_sm","input_hash":-2126827384,"answer":"reject"}],"meta":{"section":"pics","score":0.0653535908},"_input_hash":-2126827384,"_task_hash":1665060972,"answer":"reject"} +{"text":"The other day, I posted that I became a Christian in large part as a response to the science supporting the reliability of the Bible, which was immediately downvoted and many of the replies focused on creation... and especially the literal 6 day account from Genesis 1.","spans":[{"start":259,"end":268,"text":"Genesis 1","rank":4,"label":"PRODUCT","score":0.1545627077,"source":"core_web_sm","input_hash":-356878907,"answer":"reject"}],"meta":{"section":"Christianity","score":0.1545627077},"_input_hash":-356878907,"_task_hash":1531905298,"answer":"reject"} +{"text":"I say, Fight fire with fire.","spans":[{"start":7,"end":12,"text":"Fight","rank":1,"label":"PRODUCT","score":0.0078794291,"source":"core_web_sm","input_hash":-1905128109,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0078794291},"_input_hash":-1905128109,"_task_hash":1005387099,"answer":"reject"} +{"text":"The only way these 'reforms' were able to take place was via the violent installation of Pinochet's junta (backed by the US) who proceeded to carry out genocide on the people of Chile.","spans":[{"start":4,"end":8,"text":"only","rank":0,"label":"PRODUCT","score":0.9961407722,"source":"core_web_sm","input_hash":1045015285,"answer":"reject"}],"meta":{"section":"Libertarian","score":0.9961407722},"_input_hash":1045015285,"_task_hash":356993282,"answer":"reject"} +{"text":"data = get\\_some\\_data() for func in functions: data = func(data)","spans":[{"start":55,"end":64,"text":"func(data","rank":5,"label":"PRODUCT","score":0.0287261601,"source":"core_web_sm","input_hash":1570154794,"answer":"reject"}],"meta":{"section":"programming","score":0.0287261601},"_input_hash":1570154794,"_task_hash":781284774,"answer":"reject"} +{"text":"and then I woke up in the ambulance.","spans":[{"start":26,"end":35,"text":"ambulance","rank":2,"label":"PRODUCT","score":0.0113441651,"source":"core_web_sm","input_hash":-1862508667,"answer":"reject"}],"meta":{"section":"bicycling","score":0.0113441651},"_input_hash":-1862508667,"_task_hash":157669156,"answer":"reject"} +{"text":"They only come in when it rains, and while they can climb - they generally don't, so","spans":[{"start":5,"end":9,"text":"only","rank":8,"label":"PRODUCT","score":0.0054437531,"source":"core_web_sm","input_hash":-360214311,"answer":"reject"}],"meta":{"section":"WTF","score":0.0054437531},"_input_hash":-360214311,"_task_hash":78225454,"answer":"reject"} +{"text":"and TVless, too.","spans":[{"start":4,"end":10,"text":"TVless","rank":3,"label":"PRODUCT","score":0.0179059,"source":"core_web_sm","input_hash":290416988,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0179059},"_input_hash":290416988,"_task_hash":1802895335,"answer":"reject"} +{"text":"(so I can RDP through my SonicWall).","spans":[{"start":25,"end":34,"text":"SonicWall","rank":1,"label":"PRODUCT","score":0.1381631687,"source":"core_web_sm","input_hash":1788865753,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.1381631687},"_input_hash":1788865753,"_task_hash":-127351084,"answer":"accept"} +{"text":"Is it possible that the anti-gunners just gave up and didn't post/vote/etc when faced with the reality that they would most likely be drowned out?","spans":[{"start":24,"end":28,"text":"anti","rank":0,"label":"PRODUCT","score":0.4698412855,"source":"core_web_sm","input_hash":-769286281,"answer":"reject"}],"meta":{"section":"Libertarian","score":0.4698412855},"_input_hash":-769286281,"_task_hash":-1843706367,"answer":"reject"} +{"text":"I do have a problem with this but have managed to curb my bad behavior by purchasing a Kindle.","spans":[{"start":87,"end":93,"text":"Kindle","rank":4,"label":"PRODUCT","score":0.0213673045,"source":"core_web_sm","input_hash":-867726589,"answer":"accept"}],"meta":{"section":"DoesAnybodyElse","score":0.0213673045},"_input_hash":-867726589,"_task_hash":623642974,"answer":"accept"} +{"text":"I work in the beverage world, Gatorade killed this line a long time ago, they've been selling off reserves since then.","spans":[{"start":30,"end":38,"text":"Gatorade","rank":0,"label":"PRODUCT","score":0.9630104683,"source":"core_web_sm","input_hash":287892970,"answer":"accept"}],"meta":{"section":"WTF","score":0.9630104683},"_input_hash":287892970,"_task_hash":-1859764945,"answer":"accept"} +{"text":"I'm not sure that I follow how it's a moot point considering the bulk of your discussion on the topic seems to be against the initiation of violence by the oppressed.","spans":[{"start":38,"end":42,"text":"moot","rank":2,"label":"PRODUCT","score":0.0826122761,"source":"core_web_sm","input_hash":1908220329,"answer":"reject"}],"meta":{"section":"Anarchism","score":0.0826122761},"_input_hash":1908220329,"_task_hash":1990938429,"answer":"reject"} +{"text":"The Zurich study[19] showed an equal perinatal death rate between the home birth group and the hospital birth group (2.3 / 1000), and the Birthday Trust study found a slightly higher perinatal death rate in the hospital birth group (1 / 1000 vs. 0.8/1000) [20].","spans":[{"start":246,"end":254,"text":"0.8/1000","rank":0,"label":"PRODUCT","score":0.4783473777,"source":"core_web_sm","input_hash":-354786929,"answer":"reject"}],"meta":{"section":"TwoXChromosomes","score":0.4783473777},"_input_hash":-354786929,"_task_hash":2116304783,"answer":"reject"} +{"text":"The only thing I miss is the excitement of a new episode-","spans":[{"start":4,"end":8,"text":"only","rank":3,"label":"PRODUCT","score":0.0148678078,"source":"core_web_sm","input_hash":416648126,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0148678078},"_input_hash":416648126,"_task_hash":212690836,"answer":"reject"} +{"text":"> iPhone - the tilt sensor cannot be disabled Jailbreak it and install SBSettings & Rotation Inhibitor.","spans":[{"start":88,"end":106,"text":"Rotation Inhibitor","rank":1,"label":"PRODUCT","score":0.1253948122,"source":"core_web_sm","input_hash":-1121786499,"answer":"reject"}],"meta":{"section":"apple","score":0.1253948122},"_input_hash":-1121786499,"_task_hash":-2141909686,"answer":"reject"} +{"text":"dummy accounts &","spans":[{"start":15,"end":19,"text":"&","rank":1,"label":"PRODUCT","score":0.1276964318,"source":"core_web_sm","input_hash":650958648,"answer":"reject"}],"meta":{"section":"netsec","score":0.1276964318},"_input_hash":650958648,"_task_hash":1767823225,"answer":"reject"} +{"text":"downvote my hipster 'tude","spans":[{"start":21,"end":25,"text":"tude","rank":1,"label":"PRODUCT","score":0.0535974414,"source":"core_web_sm","input_hash":556704819,"answer":"reject"}],"meta":{"section":"gaming","score":0.0535974414},"_input_hash":556704819,"_task_hash":-726617703,"answer":"reject"} +{"text":"Well, I wouldn't be installing the version from Steam if I did use a crack because that would install SecuROM automatically, defeating the point of using the crack.","spans":[{"start":48,"end":53,"text":"Steam","rank":3,"label":"PRODUCT","score":0.0068019005,"source":"core_web_sm","input_hash":-1262248636,"answer":"accept"}],"meta":{"section":"gaming","score":0.0068019005},"_input_hash":-1262248636,"_task_hash":1843947296,"answer":"accept"} +{"text":"The Chinese have fueled their export-driven economy by keeping the yuan artificially pegged against the dollar.","spans":[{"start":104,"end":110,"text":"dollar","rank":1,"label":"PRODUCT","score":0.0545696034,"source":"core_web_sm","input_hash":285175287,"answer":"reject"}],"meta":{"section":"Economics","score":0.0545696034},"_input_hash":285175287,"_task_hash":-446287954,"answer":"reject"} +{"text":"i have buy gun at #1 and now it now seems pointless to go on","spans":[{"start":18,"end":20,"text":"#1","rank":0,"label":"PRODUCT","score":0.7282683399,"source":"core_web_sm","input_hash":1876335161,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.7282683399},"_input_hash":1876335161,"_task_hash":-214168628,"answer":"reject"} +{"text":"I am clocking it at 80MB.","spans":[{"start":22,"end":24,"text":"MB","rank":2,"label":"PRODUCT","score":0.0188392931,"source":"core_web_sm","input_hash":-757711413,"answer":"reject"}],"meta":{"section":"gaming","score":0.0188392931},"_input_hash":-757711413,"_task_hash":-934081182,"answer":"reject"} +{"text":"The Shadow *","spans":[{"start":4,"end":10,"text":"Shadow","rank":0,"label":"PRODUCT","score":0.999374829,"source":"core_web_sm","input_hash":1131813018,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.999374829},"_input_hash":1131813018,"_task_hash":1368562883,"answer":"reject"} +{"text":"Really people, Google it!!","spans":[{"start":15,"end":21,"text":"Google","rank":0,"label":"PRODUCT","score":0.9902489375,"source":"core_web_sm","input_hash":1847289088,"answer":"ignore"}],"meta":{"section":"reddit.com","score":0.9902489375},"_input_hash":1847289088,"_task_hash":1508607865,"answer":"ignore"} +{"text":"It was then that the penny dropped....","spans":[{"start":21,"end":26,"text":"penny","rank":2,"label":"PRODUCT","score":0.1779367545,"source":"core_web_sm","input_hash":1416824534,"answer":"reject"}],"meta":{"section":"sex","score":0.1779367545},"_input_hash":1416824534,"_task_hash":-2054248184,"answer":"reject"} +{"text":"Instruments works in 64-bit, where Shark does not.","spans":[{"start":21,"end":27,"text":"64-bit","rank":0,"label":"PRODUCT","score":0.4232280372,"source":"core_web_sm","input_hash":-351310990,"answer":"reject"}],"meta":{"section":"programming","score":0.4232280372},"_input_hash":-351310990,"_task_hash":753386743,"answer":"reject"} +{"text":"Hahaha, I remember going to that website well over a year ago and thinking, *\"What the fu..\"","spans":[{"start":0,"end":6,"text":"Hahaha","rank":2,"label":"PRODUCT","score":0.0149585021,"source":"core_web_sm","input_hash":-915629560,"answer":"reject"}],"meta":{"section":"IAmA","score":0.0149585021},"_input_hash":-915629560,"_task_hash":846847710,"answer":"reject"} +{"text":"Once you've gotten that degree, go to seminary and get a MA in religious studies.","spans":[{"start":57,"end":59,"text":"MA","rank":2,"label":"PRODUCT","score":0.0363419423,"source":"core_web_sm","input_hash":1596587873,"answer":"reject"}],"meta":{"section":"IAmA","score":0.0363419423},"_input_hash":1596587873,"_task_hash":2029302024,"answer":"reject"} +{"text":"The degree from a non-regionally accredited school will hurt you in the long run.","spans":[{"start":18,"end":21,"text":"non","rank":2,"label":"PRODUCT","score":0.0517757662,"source":"core_web_sm","input_hash":-1746240012,"answer":"reject"}],"meta":{"section":"IAmA","score":0.0517757662},"_input_hash":-1746240012,"_task_hash":-717941918,"answer":"reject"} +{"text":"> seeing as how my year+ old 1.6ghz atom netbook with a crappy JMicron SSD can boot and launch apps faster than my i5 desktop","spans":[{"start":63,"end":74,"text":"JMicron SSD","rank":1,"label":"PRODUCT","score":0.3461558384,"source":"core_web_sm","input_hash":-1166987480,"answer":"accept"}],"meta":{"section":"technology","score":0.3461558384},"_input_hash":-1166987480,"_task_hash":-708608702,"answer":"accept"} +{"text":"new years day- U2","spans":[{"start":15,"end":17,"text":"U2","rank":3,"label":"PRODUCT","score":0.053963842,"source":"core_web_sm","input_hash":809271538,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.053963842},"_input_hash":809271538,"_task_hash":834006074,"answer":"reject"} +{"text":"Same with other non-standard imperative / oo stuff, like closures.","spans":[{"start":16,"end":19,"text":"non","rank":3,"label":"PRODUCT","score":0.0543335936,"source":"core_web_sm","input_hash":-699227238,"answer":"reject"}],"meta":{"section":"programming","score":0.0543335936},"_input_hash":-699227238,"_task_hash":-1247953832,"answer":"reject"} +{"text":"Simple way to implement something like this: import re def my_parser(file_object, re_to_changers): for line in file_object: line = line.strip() for pattern in re_to_changers: m = re.match(pattern, line): if m is not None: yield re_to_changers[pattern](line, pattern) else: yield line print \"\\n\".join(my_parser(..., {\"\\d+?\": lambda line, pattern: ...})","spans":[{"start":291,"end":309,"text":"\\n\".join(my_parser","rank":0,"label":"PRODUCT","score":0.4867817167,"source":"core_web_sm","input_hash":-303255216,"answer":"reject"}],"meta":{"section":"programming","score":0.4867817167},"_input_hash":-303255216,"_task_hash":-2043420561,"answer":"reject"} +{"text":"Now, we find out that reddit was broken all along, and that while we *thought* that this was a great site and system, in actuality it's been intolerable chaos, and a new sheriff needs to come into town and ban people over dumb shit like this.","spans":[{"start":110,"end":116,"text":"system","rank":4,"label":"PRODUCT","score":0.0017943537,"source":"core_web_sm","input_hash":2021071515,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0017943537},"_input_hash":2021071515,"_task_hash":332436336,"answer":"reject"} +{"text":"Didn't you see the PSA about the 3 \"your\"(s)?","spans":[{"start":33,"end":34,"text":"3","rank":6,"label":"PRODUCT","score":0.0025139474,"source":"core_web_sm","input_hash":576030492,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0025139474},"_input_hash":576030492,"_task_hash":-681375084,"answer":"reject"} +{"text":"WOW 5.","spans":[{"start":0,"end":5,"text":"WOW 5","rank":1,"label":"PRODUCT","score":0.1731151,"source":"core_web_sm","input_hash":1125740712,"answer":"accept"}],"meta":{"section":"gaming","score":0.1731151},"_input_hash":1125740712,"_task_hash":-1594432450,"answer":"accept"} +{"text":"Well, the guy owning News Corp (which includes Fox) also happens to be owning Dish Network or whichever satellite network it is.","spans":[{"start":78,"end":90,"text":"Dish Network","rank":2,"label":"PRODUCT","score":0.2058129498,"source":"core_web_sm","input_hash":-1140701854,"answer":"reject"}],"meta":{"section":"WTF","score":0.2058129498},"_input_hash":-1140701854,"_task_hash":-237702713,"answer":"reject"} +{"text":"Don't worry, all you have to do is print out a robots.txt document and tape it to your house.","spans":[{"start":47,"end":57,"text":"robots.txt","rank":0,"label":"PRODUCT","score":0.94592156,"source":"core_web_sm","input_hash":192402553,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.94592156},"_input_hash":192402553,"_task_hash":587655170,"answer":"reject"} +{"text":">All aspects of humanity are present in every person, and whenever a person thinks they dislike another human, it is actually the reinforcing of their decision to never accept some aspect of themselves This sounds like something in Jungian psychology; the repression of the Shadow encouraging the individual to see in others those disliked qualities that they wish to repress in themselves, I think?","spans":[{"start":274,"end":280,"text":"Shadow","rank":0,"label":"PRODUCT","score":0.8187892919,"source":"core_web_sm","input_hash":1525885039,"answer":"reject"}],"meta":{"section":"philosophy","score":0.8187892919},"_input_hash":1525885039,"_task_hash":108039078,"answer":"reject"} +{"text":"Do you agree with the author's view that \"Nearly every act of panhandling is inspired by an overwhelming desire for drugs or alcohol.\"?","spans":[{"start":42,"end":48,"text":"Nearly","rank":5,"label":"PRODUCT","score":0.0164036363,"source":"core_web_sm","input_hash":1161501540,"answer":"reject"}],"meta":{"section":"IAmA","score":0.0164036363},"_input_hash":1161501540,"_task_hash":924679858,"answer":"reject"} +{"text":"I guess he forgot that rally cars idle a bit higher than a normal WRX.","spans":[{"start":41,"end":44,"text":"bit","rank":2,"label":"PRODUCT","score":0.0774422897,"source":"core_web_sm","input_hash":1908521696,"answer":"reject"}],"meta":{"section":"WTF","score":0.0774422897},"_input_hash":1908521696,"_task_hash":1626445315,"answer":"reject"} +{"text":"Authentic restaurant offers unforgetable Sichuan and hunan dishes at reasonable prices, average cost for a meal is about 75 RMB/person.","spans":[{"start":124,"end":127,"text":"RMB","rank":5,"label":"PRODUCT","score":0.0155590604,"source":"core_web_sm","input_hash":-1074221036,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0155590604},"_input_hash":-1074221036,"_task_hash":-1060579213,"answer":"reject"} +{"text":"Windows 7 is good.","spans":[{"start":0,"end":9,"text":"Windows 7","rank":0,"label":"PRODUCT","score":0.6411451749,"source":"core_web_sm","input_hash":1247542074,"answer":"accept"}],"meta":{"section":"fffffffuuuuuuuuuuuu","score":0.6411451749},"_input_hash":1247542074,"_task_hash":378850047,"answer":"accept"} +{"text":"glad some people are enjoying sitting at home though :D","spans":[{"start":53,"end":55,"text":":D","rank":8,"label":"PRODUCT","score":0.0227034224,"source":"core_web_sm","input_hash":1817113869,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0227034224},"_input_hash":1817113869,"_task_hash":-732225429,"answer":"reject"} +{"text":"I'd put google waaaaay after: - Apple - Microsoft - Yahoo - AT&T - ADM - IBM - Oracle -","spans":[{"start":8,"end":14,"text":"google","rank":1,"label":"PRODUCT","score":0.2851805025,"source":"core_web_sm","input_hash":-71987940,"answer":"ignore"}],"meta":{"section":"gaming","score":0.2851805025},"_input_hash":-71987940,"_task_hash":1464328001,"answer":"ignore"} +{"text":"First appearance, issue #91. :'(","spans":[{"start":24,"end":27,"text":"#91","rank":6,"label":"PRODUCT","score":0.0318927762,"source":"core_web_sm","input_hash":424464531,"answer":"reject"}],"meta":{"section":"tf2","score":0.0318927762},"_input_hash":424464531,"_task_hash":-35124620,"answer":"reject"} +{"text":"Reddit doesn't really understand the game theory of the Constitution.","spans":[{"start":56,"end":68,"text":"Constitution","rank":1,"label":"PRODUCT","score":0.007873176,"source":"core_web_sm","input_hash":171952058,"answer":"reject"}],"meta":{"section":"politics","score":0.007873176},"_input_hash":171952058,"_task_hash":-2132017906,"answer":"reject"} +{"text":"The system is set up that way.","spans":[{"start":4,"end":10,"text":"system","rank":4,"label":"PRODUCT","score":0.0062424657,"source":"core_web_sm","input_hash":463755948,"answer":"reject"}],"meta":{"section":"politics","score":0.0062424657},"_input_hash":463755948,"_task_hash":981471266,"answer":"reject"} +{"text":"Yup a trophy and Rs.10000(200$)!","spans":[{"start":29,"end":30,"text":"$","rank":1,"label":"PRODUCT","score":0.1611998324,"source":"core_web_sm","input_hash":563372773,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.1611998324},"_input_hash":563372773,"_task_hash":-1104576411,"answer":"reject"} +{"text":"you pay 0% interest.","spans":[{"start":8,"end":10,"text":"0%","rank":2,"label":"PRODUCT","score":0.0022422867,"source":"core_web_sm","input_hash":1535831136,"answer":"reject"}],"meta":{"section":"worldnews","score":0.0022422867},"_input_hash":1535831136,"_task_hash":2118603791,"answer":"reject"} +{"text":"and I'd definitely never give such descriptive answers.","spans":[{"start":4,"end":5,"text":"I","rank":8,"label":"PRODUCT","score":0.0016677085,"source":"core_web_sm","input_hash":872233961,"answer":"reject"}],"meta":{"section":"relationship_advice","score":0.0016677085},"_input_hash":872233961,"_task_hash":-1908878236,"answer":"reject"} +{"text":"There is no objective right and wrong, only what a person subjectively comes to think of as wrong.","spans":[{"start":39,"end":43,"text":"only","rank":7,"label":"PRODUCT","score":0.0021145671,"source":"core_web_sm","input_hash":-1310765438,"answer":"reject"}],"meta":{"section":"philosophy","score":0.0021145671},"_input_hash":-1310765438,"_task_hash":-1589960140,"answer":"reject"} +{"text":"Shouldn't we Redditors have risen above by now schemata of the middle-school genus according to which","spans":[{"start":13,"end":22,"text":"Redditors","rank":2,"label":"PRODUCT","score":0.0029878485,"source":"core_web_sm","input_hash":490855782,"answer":"reject"}],"meta":{"section":"pics","score":0.0029878485},"_input_hash":490855782,"_task_hash":1130357205,"answer":"reject"} +{"text":"This would actually fuck over the majority of people in NYC since we don't have our choice of cable provider, and many buildings don't allow for satellite dishes.","spans":[{"start":56,"end":59,"text":"NYC","rank":3,"label":"PRODUCT","score":0.0030952835,"source":"core_web_sm","input_hash":1632542015,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0030952835},"_input_hash":1632542015,"_task_hash":30547949,"answer":"reject"} +{"text":"the notion of a non-standard sexual preference were the height of hilarity and seen as reason enough to ridicule someone?","spans":[{"start":16,"end":19,"text":"non","rank":0,"label":"PRODUCT","score":0.550221836,"source":"core_web_sm","input_hash":-262828198,"answer":"reject"}],"meta":{"section":"pics","score":0.550221836},"_input_hash":-262828198,"_task_hash":1432883445,"answer":"reject"} +{"text":"but if it is made in a lab--and not someone's garage--","spans":[{"start":46,"end":54,"text":"garage--","rank":0,"label":"PRODUCT","score":0.4945612494,"source":"core_web_sm","input_hash":-1861941436,"answer":"reject"}],"meta":{"section":"worldnews","score":0.4945612494},"_input_hash":-1861941436,"_task_hash":1417050942,"answer":"reject"} +{"text":"While I would like them to always err on the side of transparency, this might be a legit suppression of information and not a real conspiracy.","spans":[{"start":83,"end":88,"text":"legit","rank":0,"label":"PRODUCT","score":0.6885628645,"source":"core_web_sm","input_hash":381695127,"answer":"reject"}],"meta":{"section":"WTF","score":0.6885628645},"_input_hash":381695127,"_task_hash":963426626,"answer":"reject"} +{"text":"by Thomas Nagel and Morality by Bernard Williams.","spans":[{"start":20,"end":28,"text":"Morality","rank":1,"label":"PRODUCT","score":0.0498040024,"source":"core_web_sm","input_hash":-1271409731,"answer":"reject"}],"meta":{"section":"philosophy","score":0.0498040024},"_input_hash":-1271409731,"_task_hash":-1937804155,"answer":"reject"} +{"text":"To be frank, I look at all that garbage and just feel a bit saddened that my friends, family and I have to be the goddamned scapegoats just because other people out there need some group of people to blame for their own failures and shortcomings.","spans":[{"start":56,"end":59,"text":"bit","rank":2,"label":"PRODUCT","score":0.0079581968,"source":"core_web_sm","input_hash":247705352,"answer":"reject"}],"meta":{"section":"science","score":0.0079581968},"_input_hash":247705352,"_task_hash":193841384,"answer":"reject"} +{"text":": After doing some searching on the Google looks like it's an old joke, making it more likely to be untrue.","spans":[{"start":36,"end":42,"text":"Google","rank":0,"label":"PRODUCT","score":0.7425398842,"source":"core_web_sm","input_hash":893773489,"answer":"accept"}],"meta":{"section":"politics","score":0.7425398842},"_input_hash":893773489,"_task_hash":292287192,"answer":"accept"} +{"text":"Rammstein actually emulated and copied Laibach.","spans":[{"start":39,"end":46,"text":"Laibach","rank":3,"label":"PRODUCT","score":0.0254117125,"source":"core_web_sm","input_hash":2115494545,"answer":"reject"}],"meta":{"section":"offbeat","score":0.0254117125},"_input_hash":2115494545,"_task_hash":1121275049,"answer":"reject"} +{"text":"And pride goeth before a fall.","spans":[{"start":10,"end":15,"text":"goeth","rank":4,"label":"PRODUCT","score":0.0530773892,"source":"core_web_sm","input_hash":4834264,"answer":"reject"}],"meta":{"section":"science","score":0.0530773892},"_input_hash":4834264,"_task_hash":1299675831,"answer":"reject"} +{"text":"pocket rocket parts--","spans":[{"start":14,"end":21,"text":"parts--","rank":1,"label":"PRODUCT","score":0.3795106222,"source":"core_web_sm","input_hash":-1473975190,"answer":"reject"}],"meta":{"section":"legal","score":0.3795106222},"_input_hash":-1473975190,"_task_hash":988961484,"answer":"reject"} +{"text":"What's Twitter?","spans":[{"start":7,"end":14,"text":"Twitter","rank":2,"label":"PRODUCT","score":0.022582566,"source":"core_web_sm","input_hash":-488805401,"answer":"accept"}],"meta":{"section":"funny","score":0.022582566},"_input_hash":-488805401,"_task_hash":-680765695,"answer":"accept"} +{"text":"It was called 'Pufsi' and was right next to the can of 'Toke' and '7-bud.'","spans":[{"start":56,"end":60,"text":"Toke","rank":2,"label":"PRODUCT","score":0.0593723726,"source":"core_web_sm","input_hash":1463605101,"answer":"ignore"},{"start":67,"end":72,"text":"7-bud","rank":0,"label":"PRODUCT","score":0.746849026,"source":"core_web_sm","input_hash":1463605101,"answer":"ignore"}],"meta":{"section":"WTF","score":0.0593723726},"_input_hash":1463605101,"_task_hash":168241370,"answer":"ignore"} +{"text":"It was called 'Pufsi' and was right next to the can of 'Toke' and '7-bud.'","spans":[{"start":67,"end":72,"text":"7-bud","rank":0,"label":"PRODUCT","score":0.746849026,"source":"core_web_sm","input_hash":1463605101,"answer":"ignore"}],"meta":{"section":"WTF","score":0.746849026},"_input_hash":1463605101,"_task_hash":1852356833,"answer":"ignore"} +{"text":"This is unrelated to your argument against SecuRom, but since you mentioned stuff working out of the box.. I bought Unreal Tournament through Steam.","spans":[{"start":142,"end":147,"text":"Steam","rank":11,"label":"PRODUCT","score":0.0061694512,"source":"core_web_sm","input_hash":-1696829942,"answer":"accept"}],"meta":{"section":"gaming","score":0.0061694512},"_input_hash":-1696829942,"_task_hash":1859707083,"answer":"accept"} +{"text":"Shouldn't that be 1600x1200?","spans":[{"start":18,"end":27,"text":"1600x1200","rank":0,"label":"PRODUCT","score":0.4900648507,"source":"core_web_sm","input_hash":-686409099,"answer":"reject"}],"meta":{"section":"gaming","score":0.4900648507},"_input_hash":-686409099,"_task_hash":-1370272759,"answer":"reject"} +{"text":"I'd like to know numbers 1-136, as well as any additional ones.","spans":[{"start":25,"end":30,"text":"1-136","rank":0,"label":"PRODUCT","score":0.5784269083,"source":"core_web_sm","input_hash":1104626675,"answer":"reject"}],"meta":{"section":"WTF","score":0.5784269083},"_input_hash":1104626675,"_task_hash":1127457123,"answer":"reject"} +{"text":"Would you believe me if I said I was in the middle of watching the Watchmen on DVD and just paused it to take a piss a check reddit?","spans":[{"start":67,"end":75,"text":"Watchmen","rank":0,"label":"PRODUCT","score":0.7588609973,"source":"core_web_sm","input_hash":-1445280593,"answer":"reject"}],"meta":{"section":"tf2","score":0.7588609973},"_input_hash":-1445280593,"_task_hash":1795427946,"answer":"reject"} +{"text":"and we'll work something out :)","spans":[{"start":29,"end":31,"text":":)","rank":1,"label":"PRODUCT","score":0.0029517629,"source":"core_web_sm","input_hash":808254971,"answer":"reject"}],"meta":{"section":"WeAreTheMusicMakers","score":0.0029517629},"_input_hash":808254971,"_task_hash":1142001406,"answer":"reject"} +{"text":"The Empty Child / Doctor Dances and Blink especially are amoung the best sci-fi TV ever made.","spans":[{"start":36,"end":41,"text":"Blink","rank":1,"label":"PRODUCT","score":0.1087867887,"source":"core_web_sm","input_hash":-1552763095,"answer":"reject"}],"meta":{"section":"scifi","score":0.1087867887},"_input_hash":-1552763095,"_task_hash":-1310815549,"answer":"reject"} +{"text":"if you want, I'll help bring back those beautiful demon-slaying moments.","spans":[{"start":64,"end":71,"text":"moments","rank":2,"label":"PRODUCT","score":0.0037083367,"source":"core_web_sm","input_hash":-745794337,"answer":"reject"}],"meta":{"section":"pics","score":0.0037083367},"_input_hash":-745794337,"_task_hash":-1310572278,"answer":"reject"} +{"text":"The Zombies are ok.","spans":[{"start":4,"end":11,"text":"Zombies","rank":1,"label":"PRODUCT","score":0.0039457369,"source":"core_web_sm","input_hash":26373215,"answer":"reject"}],"meta":{"section":"Music","score":0.0039457369},"_input_hash":26373215,"_task_hash":311636341,"answer":"reject"} +{"text":"But since I'm the ONLY one in the company who knows anything about web design/coding I have been elected to re-design our entire site, COMPLETELY by myself..everything.","spans":[{"start":135,"end":145,"text":"COMPLETELY","rank":6,"label":"PRODUCT","score":0.0188172971,"source":"core_web_sm","input_hash":1240347713,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0188172971},"_input_hash":1240347713,"_task_hash":-2094623282,"answer":"reject"} +{"text":"Nope it's his bid to win the Pulitzer.","spans":[{"start":29,"end":37,"text":"Pulitzer","rank":1,"label":"PRODUCT","score":0.1978658862,"source":"core_web_sm","input_hash":-1979644066,"answer":"ignore"}],"meta":{"section":"reddit.com","score":0.1978658862},"_input_hash":-1979644066,"_task_hash":-1773233782,"answer":"ignore"} +{"text":"\u7528 2010 \u5e74\u7b2c\u4e00\u7bc7\u6587\u7ae0\u4f86\u611f\u8b1d 2009 \u5e74\u6700\u5f8c\u4e00\u4efd\u79ae\u7269\uff0c12 \u6708 31 \u65e5\u65e9\u4e0a\u6536\u5230\u4e86","spans":[{"start":22,"end":32,"text":"\u5e74\u6700\u5f8c\u4e00\u4efd\u79ae\u7269\uff0c12","rank":1,"label":"PRODUCT","score":0.3963031679,"source":"core_web_sm","input_hash":360699761,"answer":"ignore"}],"meta":{"section":"reddit.com","score":0.3963031679},"_input_hash":360699761,"_task_hash":1382811118,"answer":"ignore"} +{"text":"what's interesting is that there is ZERO tolerance for drinking and driving","spans":[{"start":36,"end":40,"text":"ZERO","rank":0,"label":"PRODUCT","score":0.5329975913,"source":"core_web_sm","input_hash":1650982511,"answer":"reject"}],"meta":{"section":"worldnews","score":0.5329975913},"_input_hash":1650982511,"_task_hash":-653172816,"answer":"reject"} +{"text":"those keywords returned a lot of results.","spans":[{"start":6,"end":14,"text":"keywords","rank":0,"label":"PRODUCT","score":0.4991332619,"source":"core_web_sm","input_hash":-1003397479,"answer":"reject"}],"meta":{"section":"islam","score":0.4991332619},"_input_hash":-1003397479,"_task_hash":-205082916,"answer":"reject"} +{"text":"You're right, haha.","spans":[{"start":14,"end":18,"text":"haha","rank":3,"label":"PRODUCT","score":0.1249368312,"source":"core_web_sm","input_hash":-72395300,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.1249368312},"_input_hash":-72395300,"_task_hash":109144973,"answer":"reject"} +{"text":"it's called the ternary operator and C-like languages","spans":[{"start":37,"end":38,"text":"C","rank":3,"label":"PRODUCT","score":0.03416774,"source":"core_web_sm","input_hash":1473467622,"answer":"accept"}],"meta":{"section":"programming","score":0.03416774},"_input_hash":1473467622,"_task_hash":1268163491,"answer":"accept"} +{"text":"why are their E's backwards 3's?!?!","spans":[{"start":14,"end":15,"text":"E","rank":2,"label":"PRODUCT","score":0.1312873194,"source":"core_web_sm","input_hash":-2098404274,"answer":"reject"}],"meta":{"section":"WTF","score":0.1312873194},"_input_hash":-2098404274,"_task_hash":-174996500,"answer":"reject"} +{"text":"However, I will give you a enema with a rusty shovel if you'd like.","spans":[{"start":40,"end":45,"text":"rusty","rank":2,"label":"PRODUCT","score":0.0059677777,"source":"core_web_sm","input_hash":-731422935,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0059677777},"_input_hash":-731422935,"_task_hash":1627458010,"answer":"reject"} +{"text":"I do believe I have just beheld a PERFECT reply.","spans":[{"start":34,"end":41,"text":"PERFECT","rank":3,"label":"PRODUCT","score":0.0085851843,"source":"core_web_sm","input_hash":230694865,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0085851843},"_input_hash":230694865,"_task_hash":-910028863,"answer":"reject"} +{"text":"Although it's kinda annoying having this annoying buzzing \"tune\" starting whenever someone calls me, might explain why some people tell me I sound annoyed on the phone :D","spans":[{"start":168,"end":170,"text":":D","rank":2,"label":"PRODUCT","score":0.0657452771,"source":"core_web_sm","input_hash":681417672,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0657452771},"_input_hash":681417672,"_task_hash":-1967709297,"answer":"reject"} +{"text":"i thought it was agreat question. perfect for ask reddit, and i dont see how it is in any possible way insensitive or stupid.","spans":[{"start":46,"end":49,"text":"ask","rank":1,"label":"PRODUCT","score":0.0839541763,"source":"core_web_sm","input_hash":-789539988,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0839541763},"_input_hash":-789539988,"_task_hash":1341771438,"answer":"reject"} +{"text":"think I'll wait for the iSlate v2.","spans":[{"start":24,"end":30,"text":"iSlate","rank":0,"label":"PRODUCT","score":0.4612157617,"source":"core_web_sm","input_hash":524208762,"answer":"accept"}],"meta":{"section":"apple","score":0.4612157617},"_input_hash":524208762,"_task_hash":-1795894858,"answer":"accept"} +{"text":"If Google and MS were to roll out the exact same DRM scheme, geeks would undoubtedly crucify MS while defending Google.","spans":[{"start":112,"end":118,"text":"Google","rank":0,"label":"PRODUCT","score":0.9955808346,"source":"core_web_sm","input_hash":1983639600,"answer":"ignore"}],"meta":{"section":"gaming","score":0.9955808346},"_input_hash":1983639600,"_task_hash":-245012165,"answer":"ignore"} +{"text":"There are reports that Erik Prince sees himself as a modern day Crusader, fighting Muslims for Christianity.","spans":[{"start":64,"end":72,"text":"Crusader","rank":0,"label":"PRODUCT","score":0.9984495786,"source":"core_web_sm","input_hash":-1824108448,"answer":"reject"}],"meta":{"section":"IAmA","score":0.9984495786},"_input_hash":-1824108448,"_task_hash":-978460991,"answer":"reject"} +{"text":"today I listened to an old RadioLab episode which went on about placebo's very interesting http://blogs.wnyc.org/radiolab/2009/12/28/placebo-rebroadcast/","spans":[{"start":27,"end":35,"text":"RadioLab","rank":3,"label":"PRODUCT","score":0.1654858067,"source":"core_web_sm","input_hash":462141766,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.1654858067},"_input_hash":462141766,"_task_hash":-808126240,"answer":"reject"} +{"text":"I have to say, add in a non-DRM'd book market (a la Steam, with the added option of gifting licenses once you've finished a book), and whatever company does this can pretty much have all of my money.","spans":[{"start":24,"end":27,"text":"non","rank":0,"label":"PRODUCT","score":0.7275166896,"source":"core_web_sm","input_hash":1747983500,"answer":"reject"}],"meta":{"section":"apple","score":0.7275166896},"_input_hash":1747983500,"_task_hash":959196069,"answer":"reject"} +{"text":"If it's that bad, some narcoleptics do qualify for social security/ disability and get state sponsored health care.","spans":[{"start":58,"end":67,"text":"security/","rank":0,"label":"PRODUCT","score":0.8496859555,"source":"core_web_sm","input_hash":-765789288,"answer":"reject"}],"meta":{"section":"IAmA","score":0.8496859555},"_input_hash":-765789288,"_task_hash":-744455401,"answer":"reject"} +{"text":"What's the point of DRM anyway?","spans":[{"start":20,"end":23,"text":"DRM","rank":0,"label":"PRODUCT","score":0.5510223725,"source":"core_web_sm","input_hash":1950527186,"answer":"reject"}],"meta":{"section":"gaming","score":0.5510223725},"_input_hash":1950527186,"_task_hash":897099897,"answer":"reject"} +{"text":"come out w/ a DRM that will actually prevent pirates from cracking it upon release?","spans":[{"start":14,"end":17,"text":"DRM","rank":0,"label":"PRODUCT","score":0.9968035772,"source":"core_web_sm","input_hash":1715676570,"answer":"reject"}],"meta":{"section":"gaming","score":0.9968035772},"_input_hash":1715676570,"_task_hash":-342784484,"answer":"reject"} +{"text":"They're wasting money on DRM & losing legitimate customers who would otherwise pay for their product.","spans":[{"start":25,"end":33,"text":"DRM &","rank":0,"label":"PRODUCT","score":0.7201792085,"source":"core_web_sm","input_hash":-485634450,"answer":"reject"}],"meta":{"section":"gaming","score":0.7201792085},"_input_hash":-485634450,"_task_hash":-1353891779,"answer":"reject"} +{"text":"this reddit is the first result on Google now.","spans":[{"start":35,"end":41,"text":"Google","rank":0,"label":"PRODUCT","score":0.7341578216,"source":"core_web_sm","input_hash":2085994544,"answer":"accept"}],"meta":{"section":"canada","score":0.7341578216},"_input_hash":2085994544,"_task_hash":-1112989096,"answer":"accept"} +{"text":"But hes going to get owned. lol","spans":[{"start":6,"end":7,"text":"s","rank":3,"label":"PRODUCT","score":0.0202055972,"source":"core_web_sm","input_hash":-867289,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0202055972},"_input_hash":-867289,"_task_hash":1807512963,"answer":"reject"} +{"text":"Why would I not use a .308 for Deer?","spans":[{"start":22,"end":26,"text":".308","rank":1,"label":"PRODUCT","score":0.4344454719,"source":"core_web_sm","input_hash":-255428213,"answer":"reject"}],"meta":{"section":"guns","score":0.4344454719},"_input_hash":-255428213,"_task_hash":-1925405042,"answer":"reject"} +{"text":"I read the first chapter looking up all the words I didn't know.","spans":[{"start":11,"end":16,"text":"first","rank":5,"label":"PRODUCT","score":0.0020242927,"source":"core_web_sm","input_hash":553302965,"answer":"reject"}],"meta":{"section":"books","score":0.0020242927},"_input_hash":553302965,"_task_hash":516291218,"answer":"reject"} +{"text":"There's a book by JG Ballard called \"Crash\" all about this kind of stuff.","spans":[{"start":37,"end":42,"text":"Crash","rank":7,"label":"PRODUCT","score":0.0023230917,"source":"core_web_sm","input_hash":1355034198,"answer":"reject"}],"meta":{"section":"IAmA","score":0.0023230917},"_input_hash":1355034198,"_task_hash":-703083318,"answer":"reject"} +{"text":"Put in a request on IAMA","spans":[{"start":20,"end":24,"text":"IAMA","rank":1,"label":"PRODUCT","score":0.0044016968,"source":"core_web_sm","input_hash":-1255548766,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0044016968},"_input_hash":-1255548766,"_task_hash":-1790859310,"answer":"reject"} +{"text":"no recording tonight\u2026 thats","spans":[{"start":26,"end":27,"text":"s","rank":4,"label":"PRODUCT","score":0.0059533184,"source":"core_web_sm","input_hash":-711616282,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0059533184},"_input_hash":-711616282,"_task_hash":1399896888,"answer":"reject"} +{"text":"Otherwise, if there are at least 4 examples, it checks whether 4th = 3rd + (3rd-2nd)","spans":[{"start":69,"end":72,"text":"3rd","rank":10,"label":"PRODUCT","score":0.0133455148,"source":"core_web_sm","input_hash":-812689897,"answer":"reject"}],"meta":{"section":"programming","score":0.0133455148},"_input_hash":-812689897,"_task_hash":-2061405880,"answer":"reject"} +{"text":", it was a Voodoo 2 running Quake 2.","spans":[{"start":28,"end":35,"text":"Quake 2","rank":0,"label":"PRODUCT","score":0.6376632237,"source":"core_web_sm","input_hash":-621571156,"answer":"accept"}],"meta":{"section":"gaming","score":0.6376632237},"_input_hash":-621571156,"_task_hash":1398376294,"answer":"accept"} +{"text":"The Onion*.","spans":[{"start":4,"end":11,"text":"Onion*.","rank":2,"label":"PRODUCT","score":0.0441940563,"source":"core_web_sm","input_hash":-373325837,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0441940563},"_input_hash":-373325837,"_task_hash":-1532602842,"answer":"reject"} +{"text":"Again in Indiana\" is pretty famous here, also \"Goin' Back to Indiana\" by the Jackson 5 is pretty good too.","spans":[{"start":47,"end":57,"text":"Goin' Back","rank":5,"label":"PRODUCT","score":0.0572931122,"source":"core_web_sm","input_hash":-630920319,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0572931122},"_input_hash":-630920319,"_task_hash":-19760438,"answer":"reject"} +{"text":"Apply anyways this year and see what you can get meanwhile buy some books and retake GRE, getting a 700+ in quant is not hard and a score below might act as a red flag.","spans":[{"start":100,"end":103,"text":"700","rank":1,"label":"PRODUCT","score":0.4396593426,"source":"core_web_sm","input_hash":660708674,"answer":"reject"}],"meta":{"section":"compsci","score":0.4396593426},"_input_hash":660708674,"_task_hash":1244475408,"answer":"reject"} +{"text":"Vote up comments that are on-topic, show critical thinking, and/or bring a new perspective to the thread, *even if you vehemently disagree with them*. Doing anything else is anti-intellectualism.","spans":[{"start":60,"end":66,"text":"and/or","rank":2,"label":"PRODUCT","score":0.2087942405,"source":"core_web_sm","input_hash":-990795439,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.2087942405},"_input_hash":-990795439,"_task_hash":685598544,"answer":"reject"} +{"text":"I am pouring myself one right now as my old friend Star Wars and I welcome in the New Year.","spans":[{"start":51,"end":60,"text":"Star Wars","rank":2,"label":"PRODUCT","score":0.2686885603,"source":"core_web_sm","input_hash":-417040828,"answer":"reject"}],"meta":{"section":"Scotch","score":0.2686885603},"_input_hash":-417040828,"_task_hash":1220665961,"answer":"reject"} +{"text":"You can still do ordering_helper = set(x)","spans":[{"start":35,"end":40,"text":"set(x","rank":1,"label":"PRODUCT","score":0.1169320396,"source":"core_web_sm","input_hash":-1462952318,"answer":"reject"}],"meta":{"section":"programming","score":0.1169320396},"_input_hash":-1462952318,"_task_hash":-1480303036,"answer":"reject"} +{"text":"= [o for o in x if o in ordering_helper and x.count(o)","spans":[{"start":44,"end":53,"text":"x.count(o","rank":0,"label":"PRODUCT","score":0.9816197078,"source":"core_web_sm","input_hash":1801969655,"answer":"reject"}],"meta":{"section":"programming","score":0.9816197078},"_input_hash":1801969655,"_task_hash":-551698740,"answer":"reject"} +{"text":"Why does Reddit think they made up this whole bacon thing?","spans":[{"start":9,"end":15,"text":"Reddit","rank":1,"label":"PRODUCT","score":0.0050830185,"source":"core_web_sm","input_hash":-427687503,"answer":"accept"}],"meta":{"section":"pics","score":0.0050830185},"_input_hash":-427687503,"_task_hash":-874605357,"answer":"accept"} +{"text":"MySQL didn't make the bulk of their cash from support contracts, IIRC they made most of it from selling proprietary licenses to companies that didn't want to adhere to the GPL","spans":[{"start":0,"end":5,"text":"MySQL","rank":0,"label":"PRODUCT","score":0.7639961373,"source":"core_web_sm","input_hash":1449879695,"answer":"accept"}],"meta":{"section":"technology","score":0.7639961373},"_input_hash":1449879695,"_task_hash":-1289152797,"answer":"accept"} +{"text":"I could experience so much more, but I\u2019m trapped in this absurd body!","spans":[{"start":38,"end":40,"text":"\u2019m","rank":2,"label":"PRODUCT","score":0.0154809656,"source":"core_web_sm","input_hash":1376161571,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0154809656},"_input_hash":1376161571,"_task_hash":955176911,"answer":"reject"} +{"text":"there is nothing in there about raising, fucking, amd marrying your step-daughter","spans":[{"start":50,"end":53,"text":"amd","rank":2,"label":"PRODUCT","score":0.0103439164,"source":"core_web_sm","input_hash":-1259439190,"answer":"reject"}],"meta":{"section":"funny","score":0.0103439164},"_input_hash":-1259439190,"_task_hash":12444724,"answer":"reject"} +{"text":"Almost all the strips in that comic boil down to the (usually) brutal application of reality to innocence, purity and/or fantasy, or Anthropomorphism.","spans":[{"start":114,"end":120,"text":"and/or","rank":3,"label":"PRODUCT","score":0.1425149035,"source":"core_web_sm","input_hash":1016182064,"answer":"reject"}],"meta":{"section":"gaming","score":0.1425149035},"_input_hash":1016182064,"_task_hash":-714055642,"answer":"reject"} +{"text":"Oddly, Stewart is a liberal and Carlin was a Libertarian.","spans":[{"start":32,"end":38,"text":"Carlin","rank":2,"label":"PRODUCT","score":0.0958912974,"source":"core_web_sm","input_hash":1686206508,"answer":"reject"}],"meta":{"section":"politics","score":0.0958912974},"_input_hash":1686206508,"_task_hash":1241619277,"answer":"reject"} +{"text":"not really, they have a section of the city near the dmv that is greatly afghani.","spans":[{"start":53,"end":56,"text":"dmv","rank":3,"label":"PRODUCT","score":0.1802904945,"source":"core_web_sm","input_hash":-21093953,"answer":"reject"}],"meta":{"section":"IAmA","score":0.1802904945},"_input_hash":-21093953,"_task_hash":-1333157921,"answer":"reject"} +{"text":"Correct, all the TSA can do is ask a Judge to enforce it.","spans":[{"start":37,"end":42,"text":"Judge","rank":0,"label":"PRODUCT","score":0.9447112952,"source":"core_web_sm","input_hash":482535671,"answer":"reject"}],"meta":{"section":"technology","score":0.9447112952},"_input_hash":482535671,"_task_hash":-1132941158,"answer":"reject"} +{"text":"Many people might have once shared that sentiment; check the child labour section of Child Labour & The Industrial Revolution.","spans":[{"start":85,"end":102,"text":"Child Labour &","rank":0,"label":"PRODUCT","score":0.9452721671,"source":"core_web_sm","input_hash":1143763819,"answer":"reject"}],"meta":{"section":"WTF","score":0.9452721671},"_input_hash":1143763819,"_task_hash":1570832208,"answer":"reject"} +{"text":"Let me put it another way - if we withdrew from Iraq and Afghanistan and traded it for single-payer health-care, we would be _","spans":[{"start":125,"end":126,"text":"_","rank":1,"label":"PRODUCT","score":0.0097409283,"source":"core_web_sm","input_hash":-2004205273,"answer":"reject"}],"meta":{"section":"Libertarian","score":0.0097409283},"_input_hash":-2004205273,"_task_hash":155847575,"answer":"reject"} +{"text":"In fact, this sounds like outright price fixing, but as I said, I don't know too much about this event, so I won't say more than that __","spans":[{"start":135,"end":136,"text":"_","rank":4,"label":"PRODUCT","score":0.0264818694,"source":"core_web_sm","input_hash":-1141515860,"answer":"reject"}],"meta":{"section":"Libertarian","score":0.0264818694},"_input_hash":-1141515860,"_task_hash":-593810201,"answer":"reject"} +{"text":"- we simply add in that the _information_ in the market can be _","spans":[{"start":63,"end":64,"text":"_","rank":7,"label":"PRODUCT","score":0.0059338565,"source":"core_web_sm","input_hash":-1480603443,"answer":"reject"}],"meta":{"section":"Libertarian","score":0.0059338565},"_input_hash":-1480603443,"_task_hash":-1678991899,"answer":"reject"} +{"text":"_are_ subject to the same \"animal spirits\", however, they are forced to compete with other currencies, rather than the de-fact-o forced currency for most of the modern world.","spans":[{"start":4,"end":5,"text":"_","rank":7,"label":"PRODUCT","score":0.0056879626,"source":"core_web_sm","input_hash":1269357393,"answer":"reject"}],"meta":{"section":"Libertarian","score":0.0056879626},"_input_hash":1269357393,"_task_hash":-382940599,"answer":"reject"} +{"text":"However, I will never stop complaining while the Ref carries a Gun and gets to add extra rounds all willy-nilly :-D","spans":[{"start":63,"end":66,"text":"Gun","rank":3,"label":"PRODUCT","score":0.0140913857,"source":"core_web_sm","input_hash":-1066629113,"answer":"reject"}],"meta":{"section":"Libertarian","score":0.0140913857},"_input_hash":-1066629113,"_task_hash":-1425867320,"answer":"reject"} +{"text":"We just need a referee.","spans":[{"start":15,"end":22,"text":"referee","rank":1,"label":"PRODUCT","score":0.1182745821,"source":"core_web_sm","input_hash":-967103058,"answer":"reject"}],"meta":{"section":"Libertarian","score":0.1182745821},"_input_hash":-967103058,"_task_hash":1269174009,"answer":"reject"} +{"text":"As far as album art, you can go here www.myspace.com/thelogicsexperiment thanks for the positive feedback","spans":[{"start":37,"end":72,"text":"www.myspace.com/thelogicsexperiment","rank":1,"label":"PRODUCT","score":0.0061354538,"source":"core_web_sm","input_hash":1964200475,"answer":"reject"}],"meta":{"section":"WeAreTheMusicMakers","score":0.0061354538},"_input_hash":1964200475,"_task_hash":-1270129881,"answer":"reject"} +{"text":"The HOA could grant a limited permission to the family with a set expiration (they must settle for X price within Y number of days) in order to keep their child.","spans":[{"start":99,"end":100,"text":"X","rank":4,"label":"PRODUCT","score":0.002938965,"source":"core_web_sm","input_hash":1252977002,"answer":"reject"}],"meta":{"section":"WTF","score":0.002938965},"_input_hash":1252977002,"_task_hash":2064097444,"answer":"reject"} +{"text":"Mmmm, tasty bacon.","spans":[{"start":0,"end":4,"text":"Mmmm","rank":3,"label":"PRODUCT","score":0.0294390716,"source":"core_web_sm","input_hash":-307771315,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0294390716},"_input_hash":-307771315,"_task_hash":632743978,"answer":"reject"} +{"text":"Wall Protectors--ASI is a global distributor of architectual products for interior wall protection- PVC covers, guards, crash rails, hand rails, door plates, kick plates, protection, door plate, Stainless Steel--http://www.asiprotectiveclothing.com","spans":[{"start":195,"end":210,"text":"Stainless Steel","rank":2,"label":"PRODUCT","score":0.1498638235,"source":"core_web_sm","input_hash":2124049260,"answer":"reject"}],"meta":{"section":"legal","score":0.1498638235},"_input_hash":2124049260,"_task_hash":-858256292,"answer":"reject"} +{"text":"I'm proud that people like LouF have remained unbanned and free to post for years, without having any real negative effect on the site.","spans":[{"start":27,"end":31,"text":"LouF","rank":1,"label":"PRODUCT","score":0.0761461891,"source":"core_web_sm","input_hash":1907019017,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0761461891},"_input_hash":1907019017,"_task_hash":-459262834,"answer":"reject"} +{"text":">Face it","spans":[{"start":1,"end":5,"text":"Face","rank":1,"label":"PRODUCT","score":0.128729152,"source":"core_web_sm","input_hash":623511576,"answer":"reject"}],"meta":{"section":"politics","score":0.128729152},"_input_hash":623511576,"_task_hash":392257114,"answer":"reject"} +{"text":"i'm like you, i don't like RPGs.","spans":[{"start":27,"end":31,"text":"RPGs","rank":0,"label":"PRODUCT","score":0.5137312858,"source":"core_web_sm","input_hash":-658071911,"answer":"reject"}],"meta":{"section":"gaming","score":0.5137312858},"_input_hash":-658071911,"_task_hash":1434363128,"answer":"reject"} +{"text":"I find that average people get this very well 1-1, but are mindlessly unable to do anything about it en masse.","spans":[{"start":46,"end":49,"text":"1-1","rank":2,"label":"PRODUCT","score":0.0456243446,"source":"core_web_sm","input_hash":298582770,"answer":"reject"}],"meta":{"section":"politics","score":0.0456243446},"_input_hash":298582770,"_task_hash":1695056168,"answer":"reject"} +{"text":"Ruby lets you interpolate anything you want using its #{} syntax.","spans":[{"start":54,"end":55,"text":"#","rank":1,"label":"PRODUCT","score":0.3193676487,"source":"core_web_sm","input_hash":547233754,"answer":"reject"}],"meta":{"section":"programming","score":0.3193676487},"_input_hash":547233754,"_task_hash":2084923397,"answer":"reject"} +{"text":"it moves your knife from R3 to B","spans":[{"start":25,"end":27,"text":"R3","rank":1,"label":"PRODUCT","score":0.1300246771,"source":"core_web_sm","input_hash":-1831214221,"answer":"reject"}],"meta":{"section":"xbox360","score":0.1300246771},"_input_hash":-1831214221,"_task_hash":-1310414715,"answer":"reject"} +{"text":"Careful of the Androids out there.","spans":[{"start":15,"end":23,"text":"Androids","rank":6,"label":"PRODUCT","score":0.0052312333,"source":"core_web_sm","input_hash":-1156457169,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0052312333},"_input_hash":-1156457169,"_task_hash":1699676908,"answer":"reject"} +{"text":"The Eris series had rubber skin.","spans":[{"start":4,"end":8,"text":"Eris","rank":0,"label":"PRODUCT","score":0.6487791338,"source":"core_web_sm","input_hash":1131767981,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.6487791338},"_input_hash":1131767981,"_task_hash":644468900,"answer":"reject"} +{"text":"on the part of the guy that whipped up some 'Nads Flamb\u00e9.","spans":[{"start":45,"end":56,"text":"Nads Flamb\u00e9","rank":4,"label":"PRODUCT","score":0.0121580641,"source":"core_web_sm","input_hash":-1293415704,"answer":"reject"}],"meta":{"section":"politics","score":0.0121580641},"_input_hash":-1293415704,"_task_hash":-721534519,"answer":"reject"} +{"text":"I even went so far as to give you a few Google hints.","spans":[{"start":40,"end":46,"text":"Google","rank":0,"label":"PRODUCT","score":0.6723940822,"source":"core_web_sm","input_hash":-34056655,"answer":"accept"}],"meta":{"section":"economy","score":0.6723940822},"_input_hash":-34056655,"_task_hash":1959326106,"answer":"accept"} +{"text":"I have myself done that, as have many of my friends; with the backup DVD, it cost me a total of ~$45 for Win7 Prof 64b.","spans":[{"start":115,"end":118,"text":"64b","rank":0,"label":"PRODUCT","score":0.5566637496,"source":"core_web_sm","input_hash":-2074843801,"answer":"reject"}],"meta":{"section":"gaming","score":0.5566637496},"_input_hash":-2074843801,"_task_hash":731182644,"answer":"reject"} +{"text":"That phrase summarizes my Reddit experience thus far.","spans":[{"start":26,"end":32,"text":"Reddit","rank":1,"label":"PRODUCT","score":0.4444427687,"source":"core_web_sm","input_hash":-2044944746,"answer":"accept"}],"meta":{"section":"pics","score":0.4444427687},"_input_hash":-2044944746,"_task_hash":599110831,"answer":"accept"} +{"text":"Utter shit.","spans":[{"start":0,"end":5,"text":"Utter","rank":4,"label":"PRODUCT","score":0.0044362169,"source":"core_web_sm","input_hash":-1430107373,"answer":"reject"}],"meta":{"section":"politics","score":0.0044362169},"_input_hash":-1430107373,"_task_hash":1180691488,"answer":"reject"} +{"text":"Try your best to have Apple do it, and only use a 3rd party as a last resort.","spans":[{"start":50,"end":53,"text":"3rd","rank":2,"label":"PRODUCT","score":0.1037687062,"source":"core_web_sm","input_hash":984209062,"answer":"reject"}],"meta":{"section":"iphone","score":0.1037687062},"_input_hash":984209062,"_task_hash":-63352707,"answer":"reject"} +{"text":", Saioke had once been a fan of Google.)","spans":[{"start":32,"end":38,"text":"Google","rank":0,"label":"PRODUCT","score":0.9966036127,"source":"core_web_sm","input_hash":-198067840,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9966036127},"_input_hash":-198067840,"_task_hash":1131379455,"answer":"accept"} +{"text":"Now and tons more.","spans":[{"start":8,"end":12,"text":"tons","rank":1,"label":"PRODUCT","score":0.1000457302,"source":"core_web_sm","input_hash":-1109408343,"answer":"reject"}],"meta":{"section":"Metal","score":0.1000457302},"_input_hash":-1109408343,"_task_hash":-619811227,"answer":"reject"} +{"text":"For instance, the number 3,555,123 can be visualized as [7][3][2][1][5][5][5][3][0][0][0] . . .","spans":[{"start":57,"end":88,"text":"7][3][2][1][5][5][5][3][0][0][0","rank":0,"label":"PRODUCT","score":0.365896229,"source":"core_web_sm","input_hash":-1988925447,"answer":"reject"}],"meta":{"section":"programming","score":0.365896229},"_input_hash":-1988925447,"_task_hash":-2104254184,"answer":"reject"} +{"text":"Then get a Twitter account and repeat the information there.","spans":[{"start":11,"end":18,"text":"Twitter","rank":2,"label":"PRODUCT","score":0.0059879381,"source":"core_web_sm","input_hash":-1622078993,"answer":"accept"}],"meta":{"section":"shittyadvice","score":0.0059879381},"_input_hash":-1622078993,"_task_hash":-1600367340,"answer":"accept"} +{"text":"Well, I like Martini and Rossi and haven't bought any in years, so good to know the price is down.","spans":[{"start":25,"end":30,"text":"Rossi","rank":7,"label":"PRODUCT","score":0.006641197,"source":"core_web_sm","input_hash":-1399939571,"answer":"ignore"}],"meta":{"section":"Economics","score":0.006641197},"_input_hash":-1399939571,"_task_hash":-1846364963,"answer":"ignore"} +{"text":"This should not be allowed unless the FDA regulations for ionizing radiation and theraputic devices are followed as well as an investigation into the DNA Unzipping Phenomenon.","spans":[{"start":154,"end":174,"text":"Unzipping Phenomenon","rank":1,"label":"PRODUCT","score":0.1665410664,"source":"core_web_sm","input_hash":497464755,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.1665410664},"_input_hash":497464755,"_task_hash":934768216,"answer":"reject"} +{"text":"The animation of your character casting and the real casting are different, I use Quartz to see at wich point exactly to push the key and cast my next spell","spans":[{"start":82,"end":88,"text":"Quartz","rank":0,"label":"PRODUCT","score":0.4788431762,"source":"core_web_sm","input_hash":1174980478,"answer":"ignore"}],"meta":{"section":"wow","score":0.4788431762},"_input_hash":1174980478,"_task_hash":504712885,"answer":"ignore"} +{"text":"Add support for external web servers (Apache, Lighttpd, IIS, etc...)","spans":[{"start":38,"end":44,"text":"Apache","rank":0,"label":"PRODUCT","score":0.9938301641,"source":"core_web_sm","input_hash":-392176867,"answer":"accept"}],"meta":{"section":"programming","score":0.9938301641},"_input_hash":-392176867,"_task_hash":-1320073339,"answer":"accept"} +{"text":"Ballistically speaking, the .308 is almost identical to the .30-06.","spans":[{"start":28,"end":32,"text":".308","rank":1,"label":"PRODUCT","score":0.0223826476,"source":"core_web_sm","input_hash":1138570770,"answer":"ignore"}],"meta":{"section":"guns","score":0.0223826476},"_input_hash":1138570770,"_task_hash":1206297413,"answer":"ignore"} +{"text":"The main difference between the two is that the .308 is a short action caliber, which generally allows a shorter motion to cycle the action.","spans":[{"start":48,"end":52,"text":".308","rank":1,"label":"PRODUCT","score":0.0805953274,"source":"core_web_sm","input_hash":740753975,"answer":"ignore"}],"meta":{"section":"guns","score":0.0805953274},"_input_hash":740753975,"_task_hash":1651173607,"answer":"ignore"} +{"text":"Harper fails to call an election after the 5 year term in the Charter) the GG is going to do what the PM says.","spans":[{"start":102,"end":104,"text":"PM","rank":2,"label":"PRODUCT","score":0.0228662342,"source":"core_web_sm","input_hash":1581203009,"answer":"reject"}],"meta":{"section":"canada","score":0.0228662342},"_input_hash":1581203009,"_task_hash":1643648223,"answer":"reject"} +{"text":"I do use Facebook to keep in touch with friends throughout the US, but I have never used Twitter.","spans":[{"start":89,"end":96,"text":"Twitter","rank":3,"label":"PRODUCT","score":0.052543406,"source":"core_web_sm","input_hash":2039318548,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.052543406},"_input_hash":2039318548,"_task_hash":-1407226784,"answer":"accept"} +{"text":"HAPPY NEW YEAR REDDIT","spans":[{"start":15,"end":21,"text":"REDDIT","rank":1,"label":"PRODUCT","score":0.0021037038,"source":"core_web_sm","input_hash":-894575644,"answer":"accept"}],"meta":{"section":"DoesAnybodyElse","score":0.0021037038},"_input_hash":-894575644,"_task_hash":1597180789,"answer":"accept"} +{"text":"You have a point about Sco, though he did make some great music with MMW.","spans":[{"start":23,"end":26,"text":"Sco","rank":2,"label":"PRODUCT","score":0.019480267,"source":"core_web_sm","input_hash":1688778554,"answer":"reject"}],"meta":{"section":"Music","score":0.019480267},"_input_hash":1688778554,"_task_hash":1928607616,"answer":"reject"} +{"text":"(I have no idea if i-tech is a good AUS retailer, first one that came up on Google)","spans":[{"start":76,"end":82,"text":"Google","rank":0,"label":"PRODUCT","score":0.8576972594,"source":"core_web_sm","input_hash":685951818,"answer":"accept"}],"meta":{"section":"gaming","score":0.8576972594},"_input_hash":685951818,"_task_hash":-1216741516,"answer":"accept"} +{"text":"The night is just getting started in California. :-)","spans":[{"start":4,"end":9,"text":"night","rank":6,"label":"PRODUCT","score":0.0024713975,"source":"core_web_sm","input_hash":1638334474,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0024713975},"_input_hash":1638334474,"_task_hash":-1090774982,"answer":"reject"} +{"text":"Anything 500/550W and up would be good enough for a GTX 260.","spans":[{"start":9,"end":17,"text":"500/550W","rank":10,"label":"PRODUCT","score":0.0064251513,"source":"core_web_sm","input_hash":-71520448,"answer":"reject"},{"start":56,"end":59,"text":"260","rank":7,"label":"PRODUCT","score":0.0134641057,"source":"core_web_sm","input_hash":-71520448,"answer":"reject"}],"meta":{"section":"gaming","score":0.0064251513},"_input_hash":-71520448,"_task_hash":-634548387,"answer":"reject"} +{"text":"A GTX 260 *should* fall into your budget, they are usually around 210 US.","spans":[{"start":66,"end":72,"text":"210 US","rank":1,"label":"PRODUCT","score":0.2558890415,"source":"core_web_sm","input_hash":-493206178,"answer":"reject"}],"meta":{"section":"gaming","score":0.2558890415},"_input_hash":-493206178,"_task_hash":560738241,"answer":"reject"} +{"text":"Anything 500/550W and up would be good enough for a GTX 260.","spans":[{"start":56,"end":59,"text":"260","rank":7,"label":"PRODUCT","score":0.0134641057,"source":"core_web_sm","input_hash":-71520448,"answer":"reject"}],"meta":{"section":"gaming","score":0.0134641057},"_input_hash":-71520448,"_task_hash":833582460,"answer":"reject"} +{"text":"http://www.youtube.com/watch?v=RZlodHgCipk Search his channel for more variations^^ Hip flexor stretches. http://www.defrancostraining.com/ask_joe/archives/ask_joe_05-03-11.htm#question02","spans":[{"start":71,"end":87,"text":"variations^^ Hip","rank":1,"label":"PRODUCT","score":0.0782363586,"source":"core_web_sm","input_hash":-140746305,"answer":"reject"}],"meta":{"section":"IAmA","score":0.0782363586},"_input_hash":-140746305,"_task_hash":-1848018955,"answer":"reject"} +{"text":"Vegetarian food: Golden Lotus on Franklin St in Oakland Chill hangout bars: Heinholds First & Last Chance in Oakland/Jack London and The Pub in Albany","spans":[{"start":76,"end":96,"text":"Heinholds First &","rank":0,"label":"PRODUCT","score":0.745346123,"source":"core_web_sm","input_hash":-1390097790,"answer":"reject"}],"meta":{"section":"bayarea","score":0.745346123},"_input_hash":-1390097790,"_task_hash":823732117,"answer":"reject"} +{"text":"For those who are trying to figure out this gaggle fuck, it's Ubuntu running in Virtual Box on OS 10.6, which in turn is running in VMWare on Windows 7.","spans":[{"start":142,"end":151,"text":"Windows 7","rank":0,"label":"PRODUCT","score":0.9311412011,"source":"core_web_sm","input_hash":2024993977,"answer":"accept"}],"meta":{"section":"geek","score":0.9311412011},"_input_hash":2024993977,"_task_hash":872799977,"answer":"accept"} +{"text":"Would installing a new gfx card mess with anything else in my machine?","spans":[{"start":23,"end":26,"text":"gfx","rank":0,"label":"PRODUCT","score":0.6607565466,"source":"core_web_sm","input_hash":1046389737,"answer":"reject"}],"meta":{"section":"gaming","score":0.6607565466},"_input_hash":1046389737,"_task_hash":1539401520,"answer":"reject"} +{"text":"I tried with Rum...to make Rummy Bears and didn't like them.","spans":[{"start":27,"end":38,"text":"Rummy Bears","rank":2,"label":"PRODUCT","score":0.1003967869,"source":"core_web_sm","input_hash":812832452,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.1003967869},"_input_hash":812832452,"_task_hash":1245437451,"answer":"reject"} +{"text":"All for 100 quid or 100 bucks.","spans":[{"start":8,"end":16,"text":"100 quid","rank":2,"label":"PRODUCT","score":0.0672247314,"source":"core_web_sm","input_hash":-1356930517,"answer":"reject"}],"meta":{"section":"gadgets","score":0.0672247314},"_input_hash":-1356930517,"_task_hash":-895364709,"answer":"reject"} +{"text":"Yes, but most of those metropolitan populations live in slums and ghettos (one billion people in total) which make Bronx and Compton look like holiday resorts.","spans":[{"start":125,"end":132,"text":"Compton","rank":3,"label":"PRODUCT","score":0.0861919278,"source":"core_web_sm","input_hash":1848537974,"answer":"reject"}],"meta":{"section":"politics","score":0.0861919278},"_input_hash":1848537974,"_task_hash":-960913293,"answer":"reject"} +{"text":"you could pay people to take a copy and FAIL.","spans":[{"start":40,"end":44,"text":"FAIL","rank":1,"label":"PRODUCT","score":0.0441075248,"source":"core_web_sm","input_hash":1094768532,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0441075248},"_input_hash":1094768532,"_task_hash":580142791,"answer":"reject"} +{"text":"I think that's what he means by \"extremely restrictive DRM.\"","spans":[{"start":55,"end":58,"text":"DRM","rank":2,"label":"PRODUCT","score":0.0550564995,"source":"core_web_sm","input_hash":1006717877,"answer":"reject"}],"meta":{"section":"gaming","score":0.0550564995},"_input_hash":1006717877,"_task_hash":708709274,"answer":"reject"} +{"text":"The ZX80 and ZX81 had fast and slow modes of running, slow kept the screen visible, fast blanked the screen.","spans":[{"start":13,"end":17,"text":"ZX81","rank":1,"label":"PRODUCT","score":0.3427356731,"source":"core_web_sm","input_hash":1114910799,"answer":"accept"}],"meta":{"section":"gadgets","score":0.3427356731},"_input_hash":1114910799,"_task_hash":-1600885180,"answer":"accept"} +{"text":"and then Red Riding Hood said \"My, Grandma, what a statist, authoritarian, morality-legislating POV you have.","spans":[{"start":9,"end":24,"text":"Red Riding Hood","rank":0,"label":"PRODUCT","score":0.8357661292,"source":"core_web_sm","input_hash":239553696,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.8357661292},"_input_hash":239553696,"_task_hash":2118370424,"answer":"reject"} +{"text":"rule #3,881,890,204,040,178,284,716,081,633,372,737,366,6lo,l48,280: Don't question the list.","spans":[{"start":5,"end":59,"text":"#3,881,890,204,040,178,284,716,081,633,372,737,366,6lo","rank":0,"label":"PRODUCT","score":0.9151284938,"source":"core_web_sm","input_hash":393019591,"answer":"reject"}],"meta":{"section":"DoesAnybodyElse","score":0.9151284938},"_input_hash":393019591,"_task_hash":772200588,"answer":"reject"} +{"text":"Eventually, the Young Man delves into a story about a birthday party whose guests began to be systematically killed off by a maniac in a white jump suit.","spans":[{"start":16,"end":25,"text":"Young Man","rank":5,"label":"PRODUCT","score":0.0249209462,"source":"core_web_sm","input_hash":1095988023,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0249209462},"_input_hash":1095988023,"_task_hash":-291328946,"answer":"reject"} +{"text":"Star Trek movies","spans":[{"start":0,"end":9,"text":"Star Trek","rank":2,"label":"PRODUCT","score":0.0764567809,"source":"core_web_sm","input_hash":1692086888,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0764567809},"_input_hash":1692086888,"_task_hash":-483027320,"answer":"reject"} +{"text":"I'm making the best of the bar's wifi and trolling reddit on my new iThingamabob.","spans":[{"start":68,"end":80,"text":"iThingamabob","rank":1,"label":"PRODUCT","score":0.1343898931,"source":"core_web_sm","input_hash":153191035,"answer":"ignore"}],"meta":{"section":"DoesAnybodyElse","score":0.1343898931},"_input_hash":153191035,"_task_hash":-1604482325,"answer":"ignore"} +{"text":"ODBC Drivers error '80040e07' [Microsoft][ODBC","spans":[{"start":31,"end":46,"text":"Microsoft][ODBC","rank":1,"label":"PRODUCT","score":0.2423515737,"source":"core_web_sm","input_hash":1446757571,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.2423515737},"_input_hash":1446757571,"_task_hash":1608609732,"answer":"reject"} +{"text":"I just can't stand all the horror stories from DRM.","spans":[{"start":47,"end":50,"text":"DRM","rank":2,"label":"PRODUCT","score":0.0282578551,"source":"core_web_sm","input_hash":540472080,"answer":"reject"}],"meta":{"section":"gaming","score":0.0282578551},"_input_hash":540472080,"_task_hash":-418774840,"answer":"reject"} +{"text":"Ah, a fellow Whirldiff Werkruft fan.","spans":[{"start":13,"end":31,"text":"Whirldiff Werkruft","rank":0,"label":"PRODUCT","score":0.7591225403,"source":"core_web_sm","input_hash":771763894,"answer":"reject"}],"meta":{"section":"gaming","score":0.7591225403},"_input_hash":771763894,"_task_hash":-1047413617,"answer":"reject"} +{"text":"It's a throwaway account...","spans":[{"start":7,"end":16,"text":"throwaway","rank":5,"label":"PRODUCT","score":0.0120968325,"source":"core_web_sm","input_hash":-324259315,"answer":"reject"}],"meta":{"section":"IAmA","score":0.0120968325},"_input_hash":-324259315,"_task_hash":-1621840799,"answer":"reject"} +{"text":"happy new year though :)","spans":[{"start":22,"end":24,"text":":)","rank":2,"label":"PRODUCT","score":0.0556402416,"source":"core_web_sm","input_hash":-1747709144,"answer":"reject"}],"meta":{"section":"science","score":0.0556402416},"_input_hash":-1747709144,"_task_hash":1254275681,"answer":"reject"} +{"text":"Oric 1 and Oric Atmos, truly sad computers, overshadowed by the SInclairs, Commodore 64, and Amstrads.","spans":[{"start":75,"end":87,"text":"Commodore 64","rank":7,"label":"PRODUCT","score":0.0027327695,"source":"core_web_sm","input_hash":-450998644,"answer":"accept"}],"meta":{"section":"gadgets","score":0.0027327695},"_input_hash":-450998644,"_task_hash":-144612654,"answer":"accept"} +{"text":"Why wasn't Napoleon Dynamite on this list?","spans":[{"start":11,"end":28,"text":"Napoleon Dynamite","rank":4,"label":"PRODUCT","score":0.0039181278,"source":"core_web_sm","input_hash":70980488,"answer":"reject"}],"meta":{"section":"entertainment","score":0.0039181278},"_input_hash":70980488,"_task_hash":586303109,"answer":"reject"} +{"text":"at the Twilight Zone.","spans":[{"start":3,"end":20,"text":"the Twilight Zone","rank":1,"label":"PRODUCT","score":0.3724702353,"source":"core_web_sm","input_hash":2138416708,"answer":"reject"}],"meta":{"section":"fffffffuuuuuuuuuuuu","score":0.3724702353},"_input_hash":2138416708,"_task_hash":-1749413879,"answer":"reject"} +{"text":"The i7 920?","spans":[{"start":4,"end":10,"text":"i7 920","rank":1,"label":"PRODUCT","score":0.0785991901,"source":"core_web_sm","input_hash":1747134250,"answer":"accept"}],"meta":{"section":"gaming","score":0.0785991901},"_input_hash":1747134250,"_task_hash":65241422,"answer":"accept"} +{"text":"For the best and shortest explanation, read Swift's part four about the Yahoos in *Gulliver's Travels*.","spans":[{"start":72,"end":78,"text":"Yahoos","rank":9,"label":"PRODUCT","score":0.011864081,"source":"core_web_sm","input_hash":98563987,"answer":"reject"},{"start":94,"end":103,"text":"Travels*.","rank":3,"label":"PRODUCT","score":0.0958518505,"source":"core_web_sm","input_hash":98563987,"answer":"reject"}],"meta":{"section":"politics","score":0.011864081},"_input_hash":98563987,"_task_hash":-1146487628,"answer":"reject"} +{"text":"For the best and shortest explanation, read Swift's part four about the Yahoos in *Gulliver's Travels*.","spans":[{"start":94,"end":103,"text":"Travels*.","rank":3,"label":"PRODUCT","score":0.0958518505,"source":"core_web_sm","input_hash":98563987,"answer":"reject"}],"meta":{"section":"politics","score":0.0958518505},"_input_hash":98563987,"_task_hash":978303524,"answer":"reject"} +{"text":"Lord of the Flies.","spans":[{"start":12,"end":17,"text":"Flies","rank":3,"label":"PRODUCT","score":0.0668049045,"source":"core_web_sm","input_hash":-442851751,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0668049045},"_input_hash":-442851751,"_task_hash":1636659485,"answer":"reject"} +{"text":"Any idea on Civ 5?","spans":[{"start":12,"end":17,"text":"Civ 5","rank":0,"label":"PRODUCT","score":0.5875017175,"source":"core_web_sm","input_hash":-1334194068,"answer":"accept"}],"meta":{"section":"gaming","score":0.5875017175},"_input_hash":-1334194068,"_task_hash":-1348618149,"answer":"accept"} +{"text":"people is too small to justify at 300k investment, but I've seen worse ideas.","spans":[{"start":34,"end":38,"text":"300k","rank":0,"label":"PRODUCT","score":0.5821845122,"source":"core_web_sm","input_hash":-537148139,"answer":"reject"}],"meta":{"section":"gaming","score":0.5821845122},"_input_hash":-537148139,"_task_hash":253759019,"answer":"reject"} +{"text":"Personally I think 800k","spans":[{"start":19,"end":23,"text":"800k","rank":0,"label":"PRODUCT","score":0.6644308641,"source":"core_web_sm","input_hash":865404348,"answer":"reject"}],"meta":{"section":"gaming","score":0.6644308641},"_input_hash":865404348,"_task_hash":1155621888,"answer":"reject"} +{"text":"768 Diggs, why am I not surprised that Digg still loves their Top # lists?","spans":[{"start":62,"end":67,"text":"Top #","rank":1,"label":"PRODUCT","score":0.3685100573,"source":"core_web_sm","input_hash":51548628,"answer":"reject"}],"meta":{"section":"gadgets","score":0.3685100573},"_input_hash":51548628,"_task_hash":1210815380,"answer":"reject"} +{"text":"Sometimes I can cum many time in a row.","spans":[{"start":35,"end":38,"text":"row","rank":6,"label":"PRODUCT","score":0.0023862911,"source":"core_web_sm","input_hash":1985050570,"answer":"reject"}],"meta":{"section":"self","score":0.0023862911},"_input_hash":1985050570,"_task_hash":200051451,"answer":"reject"} +{"text":"As a Google employee, I would like to assure you all t**h**at ther**e","spans":[{"start":5,"end":11,"text":"Google","rank":0,"label":"PRODUCT","score":0.8043164551,"source":"core_web_sm","input_hash":-718682834,"answer":"ignore"}],"meta":{"section":"reddit.com","score":0.8043164551},"_input_hash":-718682834,"_task_hash":-274276416,"answer":"ignore"} +{"text":"I'm not saying you have to be a ballroom dancer or totally in synch, but it pleases me when you make an effort :).","spans":[{"start":111,"end":113,"text":":)","rank":0,"label":"PRODUCT","score":0.8159197546,"source":"core_web_sm","input_hash":-1780794913,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.8159197546},"_input_hash":-1780794913,"_task_hash":-1374033911,"answer":"reject"} +{"text":"Anybody who loved their ZX81 bought aftermarket or built their own keyboards.","spans":[{"start":24,"end":28,"text":"ZX81","rank":0,"label":"PRODUCT","score":0.8886608146,"source":"core_web_sm","input_hash":-833390561,"answer":"accept"}],"meta":{"section":"gadgets","score":0.8886608146},"_input_hash":-833390561,"_task_hash":-1779723892,"answer":"accept"} +{"text":"I had a secondhand surplus Cherry terminal keyboard wired up to my ZX81 via homebrew hardware","spans":[{"start":67,"end":71,"text":"ZX81","rank":0,"label":"PRODUCT","score":0.9311253715,"source":"core_web_sm","input_hash":-1858329735,"answer":"accept"}],"meta":{"section":"gadgets","score":0.9311253715},"_input_hash":-1858329735,"_task_hash":-1617818215,"answer":"accept"} +{"text":"What schools did you go to as a SEAL?","spans":[{"start":32,"end":36,"text":"SEAL","rank":1,"label":"PRODUCT","score":0.0575170556,"source":"core_web_sm","input_hash":1014071503,"answer":"reject"}],"meta":{"section":"IAmA","score":0.0575170556},"_input_hash":1014071503,"_task_hash":1037158481,"answer":"reject"} +{"text":"print i, word >>>0","spans":[{"start":17,"end":18,"text":"0","rank":3,"label":"PRODUCT","score":0.0217891037,"source":"core_web_sm","input_hash":379704475,"answer":"reject"}],"meta":{"section":"programming","score":0.0217891037},"_input_hash":379704475,"_task_hash":1667140344,"answer":"reject"} +{"text":"I'd just like to point out that almost every screenwriter I've noticed fails Character Development 101.","spans":[{"start":87,"end":102,"text":"Development 101","rank":1,"label":"PRODUCT","score":0.219450612,"source":"core_web_sm","input_hash":1088901135,"answer":"reject"},{"start":77,"end":102,"text":"Character Development 101","rank":4,"label":"PRODUCT","score":0.0056031063,"source":"core_web_sm","input_hash":1088901135,"answer":"reject"}],"meta":{"section":"entertainment","score":0.219450612},"_input_hash":1088901135,"_task_hash":-1470006218,"answer":"reject"} +{"text":"I'd just like to point out that almost every screenwriter I've noticed fails Character Development 101.","spans":[{"start":77,"end":102,"text":"Character Development 101","rank":4,"label":"PRODUCT","score":0.0056031063,"source":"core_web_sm","input_hash":1088901135,"answer":"reject"}],"meta":{"section":"entertainment","score":0.0056031063},"_input_hash":1088901135,"_task_hash":1481702149,"answer":"reject"} +{"text":"Chocolate bacon is the new Diet Coke bacon.","spans":[{"start":27,"end":36,"text":"Diet Coke","rank":0,"label":"PRODUCT","score":0.9999294239,"source":"core_web_sm","input_hash":-2062033168,"answer":"accept"}],"meta":{"section":"Bacon","score":0.9999294239},"_input_hash":-2062033168,"_task_hash":-2058706724,"answer":"accept"} +{"text":"Firefox 3.5.5, and Windows Visa Ulimae.","spans":[{"start":0,"end":13,"text":"Firefox 3.5.5","rank":1,"label":"PRODUCT","score":0.2627516451,"source":"core_web_sm","input_hash":-152603205,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.2627516451},"_input_hash":-152603205,"_task_hash":-135675833,"answer":"accept"} +{"text":", it is a giant global (capitalist) conspiracy, and WTC 7 was clearly demolished.","spans":[{"start":52,"end":57,"text":"WTC 7","rank":3,"label":"PRODUCT","score":0.041359616,"source":"core_web_sm","input_hash":1269630522,"answer":"reject"}],"meta":{"section":"conspiracy","score":0.041359616},"_input_hash":1269630522,"_task_hash":888343757,"answer":"reject"} +{"text":"Watching my wife get her Master's Degree.","spans":[{"start":34,"end":40,"text":"Degree","rank":1,"label":"PRODUCT","score":0.1359011181,"source":"core_web_sm","input_hash":-1682140855,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.1359011181},"_input_hash":-1682140855,"_task_hash":642965976,"answer":"reject"} +{"text":"* Pan's Labyrinth *","spans":[{"start":8,"end":17,"text":"Labyrinth","rank":0,"label":"PRODUCT","score":0.6154605176,"source":"core_web_sm","input_hash":783615701,"answer":"reject"}],"meta":{"section":"entertainment","score":0.6154605176},"_input_hash":783615701,"_task_hash":821737222,"answer":"reject"} +{"text":"I use what is known as an S-biner, like a carabiner but in the shape of an s with 2 clips.","spans":[{"start":75,"end":76,"text":"s","rank":0,"label":"PRODUCT","score":0.542492677,"source":"core_web_sm","input_hash":-709283552,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.542492677},"_input_hash":-709283552,"_task_hash":712826632,"answer":"reject"} +{"text":"About 220 now.","spans":[{"start":6,"end":9,"text":"220","rank":3,"label":"PRODUCT","score":0.0059718835,"source":"core_web_sm","input_hash":672388835,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0059718835},"_input_hash":672388835,"_task_hash":-834914102,"answer":"reject"} +{"text":"I've never read any Stephen King, but L.A. Confidential and The Black Dahlia are awesome books.","spans":[{"start":60,"end":76,"text":"The Black Dahlia","rank":4,"label":"PRODUCT","score":0.0017990556,"source":"core_web_sm","input_hash":38325566,"answer":"reject"}],"meta":{"section":"books","score":0.0017990556},"_input_hash":38325566,"_task_hash":1290396929,"answer":"reject"} +{"text":"He'll definitely make a good addition to Totti and De Rossi.","spans":[{"start":51,"end":59,"text":"De Rossi","rank":2,"label":"PRODUCT","score":0.0022939211,"source":"core_web_sm","input_hash":573644434,"answer":"reject"}],"meta":{"section":"soccer","score":0.0022939211},"_input_hash":573644434,"_task_hash":1807205392,"answer":"reject"} +{"text":"If it's 100-300, take the match score with a grain of salt.","spans":[{"start":8,"end":15,"text":"100-300","rank":0,"label":"PRODUCT","score":0.4952991511,"source":"core_web_sm","input_hash":-771408974,"answer":"reject"}],"meta":{"section":"relationship_advice","score":0.4952991511},"_input_hash":-771408974,"_task_hash":1911982529,"answer":"reject"} +{"text":"Finally got it for $5.","spans":[{"start":19,"end":21,"text":"$5","rank":2,"label":"PRODUCT","score":0.0267408999,"source":"core_web_sm","input_hash":2074397437,"answer":"reject"}],"meta":{"section":"SteamGifts","score":0.0267408999},"_input_hash":2074397437,"_task_hash":1831509868,"answer":"reject"} +{"text":"so at the height of it, there was a 2 hour wait to talk to an agent","spans":[{"start":36,"end":42,"text":"2 hour","rank":2,"label":"PRODUCT","score":0.0069090717,"source":"core_web_sm","input_hash":-1353804402,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0069090717},"_input_hash":-1353804402,"_task_hash":-468269944,"answer":"reject"} +{"text":"You're overlooking the majority of PC owners - my mother-in-law at the time - who only used a computer for writing letters, quotes & invoices for their business, and who would quite happy make a PC last 5 years or","spans":[{"start":131,"end":135,"text":"&","rank":1,"label":"PRODUCT","score":0.0071820725,"source":"core_web_sm","input_hash":356133953,"answer":"reject"}],"meta":{"section":"pics","score":0.0071820725},"_input_hash":356133953,"_task_hash":1764776881,"answer":"reject"} +{"text":"and they were therefore too scared to break the backup routine they'd learned & followed religiously since they first started using the program.","spans":[{"start":78,"end":82,"text":"&","rank":0,"label":"PRODUCT","score":0.5893457261,"source":"core_web_sm","input_hash":1291523440,"answer":"reject"}],"meta":{"section":"pics","score":0.5893457261},"_input_hash":1291523440,"_task_hash":416880391,"answer":"reject"} +{"text":"http://www.fmylife.com/ http://mylifeisaverage.com/ http://www.textsfromlastnight.com/ http://failblog.org/ http://www.lamebook.com/ http://www.ourfavoritewebsites.com/ <-- weekly website","spans":[{"start":133,"end":168,"text":"http://www.ourfavoritewebsites.com/","rank":1,"label":"PRODUCT","score":0.1777593083,"source":"core_web_sm","input_hash":-336603718,"answer":"reject"},{"start":108,"end":168,"text":"http://www.lamebook.com/ http://www.ourfavoritewebsites.com/","rank":2,"label":"PRODUCT","score":0.0521889162,"source":"core_web_sm","input_hash":-336603718,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.1777593083},"_input_hash":-336603718,"_task_hash":323766569,"answer":"reject"} +{"text":"http://www.fmylife.com/ http://mylifeisaverage.com/ http://www.textsfromlastnight.com/ http://failblog.org/ http://www.lamebook.com/ http://www.ourfavoritewebsites.com/ <-- weekly website","spans":[{"start":108,"end":168,"text":"http://www.lamebook.com/ http://www.ourfavoritewebsites.com/","rank":2,"label":"PRODUCT","score":0.0521889162,"source":"core_web_sm","input_hash":-336603718,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0521889162},"_input_hash":-336603718,"_task_hash":-16772283,"answer":"reject"} +{"text":"Many people happily forget that Nam became a huge testing ground for weapons developement to be used against the soviet block in the event of another world war.","spans":[{"start":32,"end":35,"text":"Nam","rank":2,"label":"PRODUCT","score":0.0057369872,"source":"core_web_sm","input_hash":-1751271807,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0057369872},"_input_hash":-1751271807,"_task_hash":1380182234,"answer":"reject"} +{"text":"I would recommend watching series 1 of TW as you watch series 2 of DW (the first series with David Tennant)","spans":[{"start":93,"end":106,"text":"David Tennant","rank":3,"label":"PRODUCT","score":0.0415465617,"source":"core_web_sm","input_hash":1592308863,"answer":"reject"}],"meta":{"section":"scifi","score":0.0415465617},"_input_hash":1592308863,"_task_hash":1276999173,"answer":"reject"} +{"text":"Diablo 3","spans":[{"start":0,"end":8,"text":"Diablo 3","rank":1,"label":"PRODUCT","score":0.0569010446,"source":"core_web_sm","input_hash":1285871557,"answer":"accept"}],"meta":{"section":"gaming","score":0.0569010446},"_input_hash":1285871557,"_task_hash":2068062974,"answer":"accept"} +{"text":"Pan's Labyrinth was brilliant.","spans":[{"start":6,"end":15,"text":"Labyrinth","rank":0,"label":"PRODUCT","score":0.9667293417,"source":"core_web_sm","input_hash":298340668,"answer":"reject"}],"meta":{"section":"entertainment","score":0.9667293417},"_input_hash":298340668,"_task_hash":-771479567,"answer":"reject"} +{"text":"big money 20s 50s 100s","spans":[{"start":18,"end":22,"text":"100s","rank":1,"label":"PRODUCT","score":0.1787156985,"source":"core_web_sm","input_hash":-2126289319,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.1787156985},"_input_hash":-2126289319,"_task_hash":1250385680,"answer":"reject"} +{"text":"Midwest Chicago: 8.9.4.114:27015","spans":[{"start":0,"end":15,"text":"Midwest Chicago","rank":8,"label":"PRODUCT","score":0.0057910408,"source":"core_web_sm","input_hash":-1963991853,"answer":"reject"}],"meta":{"section":"tf2","score":0.0057910408},"_input_hash":-1963991853,"_task_hash":-2077489612,"answer":"reject"} +{"text":"Hey, use the Cole attack as a \"pretext\" instead.","spans":[{"start":13,"end":17,"text":"Cole","rank":0,"label":"PRODUCT","score":0.9995546203,"source":"core_web_sm","input_hash":-25850984,"answer":"reject"}],"meta":{"section":"politics","score":0.9995546203},"_input_hash":-25850984,"_task_hash":1660498458,"answer":"reject"} +{"text":"Mine didn't get my Dell 1110 printer working automatically.","spans":[{"start":19,"end":28,"text":"Dell 1110","rank":5,"label":"PRODUCT","score":0.0215836057,"source":"core_web_sm","input_hash":-741383358,"answer":"accept"}],"meta":{"section":"WTF","score":0.0215836057},"_input_hash":-741383358,"_task_hash":-1772099386,"answer":"accept"} +{"text":"One 40$ hooker?","spans":[{"start":6,"end":7,"text":"$","rank":2,"label":"PRODUCT","score":0.0104371978,"source":"core_web_sm","input_hash":-1614831104,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0104371978},"_input_hash":-1614831104,"_task_hash":-28917477,"answer":"reject"} +{"text":"It's a complete pain in the ass getting to Livermore from 3-7pm on 580.","spans":[{"start":67,"end":70,"text":"580","rank":1,"label":"PRODUCT","score":0.0100801964,"source":"core_web_sm","input_hash":1082127438,"answer":"reject"}],"meta":{"section":"IAmA","score":0.0100801964},"_input_hash":1082127438,"_task_hash":-203617244,"answer":"reject"} +{"text":"It makes finding the interesting stuff in Reddit faster =)","spans":[{"start":42,"end":48,"text":"Reddit","rank":1,"label":"PRODUCT","score":0.0610128163,"source":"core_web_sm","input_hash":1624847371,"answer":"accept"}],"meta":{"section":"pics","score":0.0610128163},"_input_hash":1624847371,"_task_hash":-1158329415,"answer":"accept"} +{"text":"Y'alls is jus' Trollin, now.","spans":[{"start":15,"end":22,"text":"Trollin","rank":2,"label":"PRODUCT","score":0.1887029809,"source":"core_web_sm","input_hash":998682879,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.1887029809},"_input_hash":998682879,"_task_hash":-1550014416,"answer":"reject"} +{"text":"We don't dispute that you can write large, fast, maintainable applications in JavaScript.","spans":[{"start":78,"end":88,"text":"JavaScript","rank":1,"label":"PRODUCT","score":0.0308525692,"source":"core_web_sm","input_hash":-1603319946,"answer":"accept"}],"meta":{"section":"programming","score":0.0308525692},"_input_hash":-1603319946,"_task_hash":-250965962,"answer":"accept"} +{"text":"Diablo 3.","spans":[{"start":0,"end":8,"text":"Diablo 3","rank":0,"label":"PRODUCT","score":0.9965300549,"source":"core_web_sm","input_hash":117971154,"answer":"accept"}],"meta":{"section":"gaming","score":0.9965300549},"_input_hash":117971154,"_task_hash":-1730634575,"answer":"accept"} +{"text":"i've met a lot of people with high IQs over the course of working at Google, and i've discovered that while most of them do seem happy on the surface, when i talk to them one on one, they all seem to have existential depression at some level.","spans":[{"start":69,"end":75,"text":"Google","rank":0,"label":"PRODUCT","score":0.7852215771,"source":"core_web_sm","input_hash":-343482338,"answer":"ignore"}],"meta":{"section":"IAmA","score":0.7852215771},"_input_hash":-343482338,"_task_hash":-971914823,"answer":"ignore"} +{"text":"- The 1993 NYC Twin Towers bombing by Ramzi Yousef et al. used a rented van parked in the underground garage - The Oklahoma City Bombing involved trucks You can't drive a truck bomb into Times Square.","spans":[{"start":187,"end":199,"text":"Times Square","rank":0,"label":"PRODUCT","score":0.9678154668,"source":"core_web_sm","input_hash":-737492458,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.9678154668},"_input_hash":-737492458,"_task_hash":1237789776,"answer":"reject"} +{"text":"do I advocate nor expect the administration of Reddit to devolve so far into what you are describing, except out of the most egregious comments...","spans":[{"start":47,"end":53,"text":"Reddit","rank":3,"label":"PRODUCT","score":0.0590881147,"source":"core_web_sm","input_hash":2079209530,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.0590881147},"_input_hash":2079209530,"_task_hash":514701088,"answer":"accept"} +{"text":"Question on rule #5 What if the other person does not have a phone?","spans":[{"start":17,"end":19,"text":"#5","rank":0,"label":"PRODUCT","score":0.8574251099,"source":"core_web_sm","input_hash":297904107,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.8574251099},"_input_hash":297904107,"_task_hash":-1952499080,"answer":"reject"} +{"text":"but the Twilight Zone thing could potentially be an indicator of mental illness.","spans":[{"start":4,"end":21,"text":"the Twilight Zone","rank":1,"label":"PRODUCT","score":0.2688915509,"source":"core_web_sm","input_hash":-1840389428,"answer":"reject"}],"meta":{"section":"science","score":0.2688915509},"_input_hash":-1840389428,"_task_hash":-1869058675,"answer":"reject"} +{"text":"The White Stripes Day 2 (Metal & Nu Metal):","spans":[{"start":37,"end":45,"text":"Nu Metal","rank":0,"label":"PRODUCT","score":0.6917068242,"source":"core_web_sm","input_hash":1940324727,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.6917068242},"_input_hash":1940324727,"_task_hash":-53824942,"answer":"reject"} +{"text":"There's a lifetime of contemplation in the 4 Noble Truths.","spans":[{"start":45,"end":57,"text":"Noble Truths","rank":2,"label":"PRODUCT","score":0.0268965187,"source":"core_web_sm","input_hash":-1681330188,"answer":"reject"},{"start":51,"end":57,"text":"Truths","rank":1,"label":"PRODUCT","score":0.2232650834,"source":"core_web_sm","input_hash":-1681330188,"answer":"reject"}],"meta":{"section":"IAmA","score":0.0268965187},"_input_hash":-1681330188,"_task_hash":308411403,"answer":"reject"} +{"text":"There's a lifetime of contemplation in the 4 Noble Truths.","spans":[{"start":51,"end":57,"text":"Truths","rank":1,"label":"PRODUCT","score":0.2232650834,"source":"core_web_sm","input_hash":-1681330188,"answer":"reject"}],"meta":{"section":"IAmA","score":0.2232650834},"_input_hash":-1681330188,"_task_hash":792590542,"answer":"reject"} +{"text":"You can throw some extra blame at our \"4th branch of government\".","spans":[{"start":39,"end":42,"text":"4th","rank":2,"label":"PRODUCT","score":0.0146327923,"source":"core_web_sm","input_hash":-1930343357,"answer":"reject"}],"meta":{"section":"politics","score":0.0146327923},"_input_hash":-1930343357,"_task_hash":-121408323,"answer":"reject"} +{"text":"* Reddit?","spans":[{"start":2,"end":8,"text":"Reddit","rank":3,"label":"PRODUCT","score":0.0247623359,"source":"core_web_sm","input_hash":650438187,"answer":"accept"}],"meta":{"section":"programming","score":0.0247623359},"_input_hash":650438187,"_task_hash":-1293606901,"answer":"accept"} +{"text":"* Gift lists (very specific ones)","spans":[{"start":2,"end":6,"text":"Gift","rank":1,"label":"PRODUCT","score":0.0020381291,"source":"core_web_sm","input_hash":-967429249,"answer":"reject"}],"meta":{"section":"science","score":0.0020381291},"_input_hash":-967429249,"_task_hash":-455034246,"answer":"reject"} +{"text":"I've always been a fan of Element names, especially the metals.","spans":[{"start":26,"end":33,"text":"Element","rank":0,"label":"PRODUCT","score":0.6742977148,"source":"core_web_sm","input_hash":582922512,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.6742977148},"_input_hash":582922512,"_task_hash":-1359032112,"answer":"reject"} +{"text":"Do not buy Success Principle until you read http://top-review.org/successprinciple-download.htm shocking review and download a FREE bonus worth $1,839.90!","spans":[{"start":145,"end":153,"text":"1,839.90","rank":2,"label":"PRODUCT","score":0.0143678218,"source":"core_web_sm","input_hash":1897106775,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0143678218},"_input_hash":1897106775,"_task_hash":723634967,"answer":"reject"} +{"text":"but then I had to remind myself that House is so Holmes.","spans":[{"start":49,"end":55,"text":"Holmes","rank":1,"label":"PRODUCT","score":0.003978089,"source":"core_web_sm","input_hash":408637602,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.003978089},"_input_hash":408637602,"_task_hash":-1935210311,"answer":"reject"} +{"text":"The sad part is when Rush comes to the conclusion that Maddow is a secret conservative for wishing him a speedy recovery.","spans":[{"start":55,"end":61,"text":"Maddow","rank":3,"label":"PRODUCT","score":0.0823608546,"source":"core_web_sm","input_hash":-650405727,"answer":"reject"}],"meta":{"section":"politics","score":0.0823608546},"_input_hash":-650405727,"_task_hash":1023052071,"answer":"reject"} +{"text":"Google was founded.","spans":[{"start":0,"end":6,"text":"Google","rank":1,"label":"PRODUCT","score":0.3323157567,"source":"core_web_sm","input_hash":923577656,"answer":"ignore"}],"meta":{"section":"AskReddit","score":0.3323157567},"_input_hash":923577656,"_task_hash":-1518120862,"answer":"ignore"} +{"text":"The day Sky... err...","spans":[{"start":8,"end":11,"text":"Sky","rank":0,"label":"PRODUCT","score":0.8934187085,"source":"core_web_sm","input_hash":-304168840,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.8934187085},"_input_hash":-304168840,"_task_hash":-274022182,"answer":"reject"} +{"text":"Always choose Beef flavor.","spans":[{"start":14,"end":18,"text":"Beef","rank":1,"label":"PRODUCT","score":0.4388892116,"source":"core_web_sm","input_hash":1220656799,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.4388892116},"_input_hash":1220656799,"_task_hash":612133010,"answer":"reject"} +{"text":"Collard Greens and Chicken and Dumplings.","spans":[{"start":19,"end":26,"text":"Chicken","rank":2,"label":"PRODUCT","score":0.1048412013,"source":"core_web_sm","input_hash":-2033183551,"answer":"reject"},{"start":31,"end":40,"text":"Dumplings","rank":0,"label":"PRODUCT","score":0.7868045934,"source":"core_web_sm","input_hash":-2033183551,"answer":"reject"}],"meta":{"section":"Cooking","score":0.1048412013},"_input_hash":-2033183551,"_task_hash":1588661845,"answer":"reject"} +{"text":"Collard Greens and Chicken and Dumplings.","spans":[{"start":31,"end":40,"text":"Dumplings","rank":0,"label":"PRODUCT","score":0.7868045934,"source":"core_web_sm","input_hash":-2033183551,"answer":"reject"}],"meta":{"section":"Cooking","score":0.7868045934},"_input_hash":-2033183551,"_task_hash":919088659,"answer":"reject"} +{"text":"they were getting all their suppliers to certify their products as \"Y2K compliant\".","spans":[{"start":68,"end":71,"text":"Y2K","rank":0,"label":"PRODUCT","score":0.922448536,"source":"core_web_sm","input_hash":2004747205,"answer":"reject"}],"meta":{"section":"pics","score":0.922448536},"_input_hash":2004747205,"_task_hash":592854155,"answer":"reject"} +{"text":"Buying and selling Australian businesses for sale by owner at Business Trader.","spans":[{"start":62,"end":77,"text":"Business Trader","rank":0,"label":"PRODUCT","score":0.567377678,"source":"core_web_sm","input_hash":1344823200,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.567377678},"_input_hash":1344823200,"_task_hash":44057436,"answer":"reject"} +{"text":"All peace and Love!!!","spans":[{"start":14,"end":18,"text":"Love","rank":2,"label":"PRODUCT","score":0.0099019799,"source":"core_web_sm","input_hash":-522559339,"answer":"reject"}],"meta":{"section":"IAmA","score":0.0099019799},"_input_hash":-522559339,"_task_hash":1072762227,"answer":"reject"} +{"text":"I s, no frauds ,","spans":[{"start":2,"end":3,"text":"s","rank":2,"label":"PRODUCT","score":0.0221251242,"source":"core_web_sm","input_hash":397884666,"answer":"reject"}],"meta":{"section":"IAmA","score":0.0221251242},"_input_hash":397884666,"_task_hash":1057647262,"answer":"reject"} +{"text":"we were being held to possibly comtaminate evidence and allow discussions with suspects on Flight 253 or to possibly allow the exchange of bombs, weapons or other devices between the mysterious passengers from other flights and those on flight 253.","spans":[{"start":91,"end":101,"text":"Flight 253","rank":0,"label":"PRODUCT","score":0.9978883983,"source":"core_web_sm","input_hash":-885901597,"answer":"reject"}],"meta":{"section":"WTF","score":0.9978883983},"_input_hash":-885901597,"_task_hash":-1942968911,"answer":"reject"} +{"text":"This gif is 10 times better while listening to \"Ghost Riders in the Sky\"","spans":[{"start":68,"end":71,"text":"Sky","rank":1,"label":"PRODUCT","score":0.4071936756,"source":"core_web_sm","input_hash":-52446866,"answer":"reject"}],"meta":{"section":"pics","score":0.4071936756},"_input_hash":-52446866,"_task_hash":2127785381,"answer":"reject"} +{"text":"It's just like Truman Capote spreading rumours about J. Edgar Hoover being a transvestite and homosexual (ahem, which he totally was...)","spans":[{"start":15,"end":28,"text":"Truman Capote","rank":0,"label":"PRODUCT","score":0.9187574524,"source":"core_web_sm","input_hash":-1074595017,"answer":"reject"}],"meta":{"section":"politics","score":0.9187574524},"_input_hash":-1074595017,"_task_hash":-804112079,"answer":"reject"} +{"text":"Don't bother with Reaper unless you want pure entertainment.","spans":[{"start":18,"end":24,"text":"Reaper","rank":0,"label":"PRODUCT","score":0.983089955,"source":"core_web_sm","input_hash":-778005324,"answer":"ignore"}],"meta":{"section":"scifi","score":0.983089955},"_input_hash":-778005324,"_task_hash":-2010910506,"answer":"ignore"} +{"text":"Starcraft 2.","spans":[{"start":0,"end":11,"text":"Starcraft 2","rank":0,"label":"PRODUCT","score":0.9893944998,"source":"core_web_sm","input_hash":-1043850461,"answer":"accept"}],"meta":{"section":"gaming","score":0.9893944998},"_input_hash":-1043850461,"_task_hash":-97547834,"answer":"accept"} +{"text":"followed by \"I COUNTERTROLL YOU!","spans":[{"start":15,"end":27,"text":"COUNTERTROLL","rank":3,"label":"PRODUCT","score":0.007335544,"source":"core_web_sm","input_hash":-1277435012,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.007335544},"_input_hash":-1277435012,"_task_hash":1437369011,"answer":"reject"} +{"text":"your aunt mom and dad 68,000 that i will be going to court on ,from your dad and my brother","spans":[{"start":22,"end":28,"text":"68,000","rank":1,"label":"PRODUCT","score":0.0206085708,"source":"core_web_sm","input_hash":220111026,"answer":"reject"}],"meta":{"section":"redditectives","score":0.0206085708},"_input_hash":220111026,"_task_hash":-1166877087,"answer":"reject"} +{"text":"And your Aunt and your dad took money from your aunt number4","spans":[{"start":9,"end":13,"text":"Aunt","rank":2,"label":"PRODUCT","score":0.0628854283,"source":"core_web_sm","input_hash":2125484623,"answer":"reject"}],"meta":{"section":"redditectives","score":0.0628854283},"_input_hash":2125484623,"_task_hash":1719322303,"answer":"reject"} +{"text":"that at any moment they are going to LAUNCH fang-first at my throat like that damned bunny rabbit from Holy Grail.","spans":[{"start":103,"end":113,"text":"Holy Grail","rank":3,"label":"PRODUCT","score":0.008529105,"source":"core_web_sm","input_hash":-1355745222,"answer":"reject"}],"meta":{"section":"WTF","score":0.008529105},"_input_hash":-1355745222,"_task_hash":796840165,"answer":"reject"} +{"text":"Pink Floyd could play Monopoly in Sheboygan and i would probably like it.","spans":[{"start":22,"end":30,"text":"Monopoly","rank":0,"label":"PRODUCT","score":0.4876239944,"source":"core_web_sm","input_hash":-1632433472,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.4876239944},"_input_hash":-1632433472,"_task_hash":-1931452734,"answer":"accept"} +{"text":"I stopped reading after the parts with Justinian and Belisarius when things get too Byzantine.","spans":[{"start":84,"end":93,"text":"Byzantine","rank":0,"label":"PRODUCT","score":0.5222129934,"source":"core_web_sm","input_hash":-980891513,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.5222129934},"_input_hash":-980891513,"_task_hash":-1784320320,"answer":"reject"} +{"text":"That's my resolution this year, and I went to the Shack for the last meal.","spans":[{"start":50,"end":55,"text":"Shack","rank":5,"label":"PRODUCT","score":0.0506529338,"source":"core_web_sm","input_hash":-274801157,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0506529338},"_input_hash":-274801157,"_task_hash":-624003381,"answer":"reject"} +{"text":"When my daughter was 2, she would say \"Mommy, can we go get cocoas and a white cock-it mocha?\"","spans":[{"start":39,"end":44,"text":"Mommy","rank":4,"label":"PRODUCT","score":0.0196216909,"source":"core_web_sm","input_hash":-1246359255,"answer":"reject"}],"meta":{"section":"funny","score":0.0196216909},"_input_hash":-1246359255,"_task_hash":-2049893892,"answer":"reject"} +{"text":"As in do you earn 3-4 times more then she does?","spans":[{"start":18,"end":21,"text":"3-4","rank":0,"label":"PRODUCT","score":0.5690218152,"source":"core_web_sm","input_hash":1401120987,"answer":"reject"}],"meta":{"section":"relationship_advice","score":0.5690218152},"_input_hash":1401120987,"_task_hash":-1808590695,"answer":"reject"} +{"text":"GRRRRRRRRR, REDDIT! = k = State $ \\s -","spans":[{"start":3,"end":4,"text":"k","rank":0,"label":"PRODUCT","score":0.8687037326,"source":"core_web_sm","input_hash":-1761148614,"answer":"reject"}],"meta":{"section":"haskell","score":0.8687037326},"_input_hash":-1761148614,"_task_hash":2101471524,"answer":"reject"} +{"text":"In fact, that's the same as `s' = snd (runState pro [])","spans":[{"start":29,"end":30,"text":"s","rank":3,"label":"PRODUCT","score":0.1025101086,"source":"core_web_sm","input_hash":-1550413663,"answer":"reject"}],"meta":{"section":"haskell","score":0.1025101086},"_input_hash":-1550413663,"_task_hash":-1057271555,"answer":"reject"} +{"text":"Again, collapsing `runState .","spans":[{"start":19,"end":27,"text":"runState","rank":6,"label":"PRODUCT","score":0.0214647336,"source":"core_web_sm","input_hash":-252246721,"answer":"reject"}],"meta":{"section":"haskell","score":0.0214647336},"_input_hash":-252246721,"_task_hash":1877574967,"answer":"reject"} +{"text":"The large Cintiq tablets are awesome, but there is no brain in them, and the tech that is good for the pens may not be good for finger input.","spans":[{"start":10,"end":16,"text":"Cintiq","rank":3,"label":"PRODUCT","score":0.0032913526,"source":"core_web_sm","input_hash":110510647,"answer":"accept"}],"meta":{"section":"apple","score":0.0032913526},"_input_hash":110510647,"_task_hash":672262756,"answer":"accept"} +{"text":"A newer version of nVidia ION playing Crysis on a netbook would be better than streaming Crysis with equally expensive equipment.","spans":[{"start":19,"end":25,"text":"nVidia","rank":5,"label":"PRODUCT","score":0.0673816392,"source":"core_web_sm","input_hash":1006589163,"answer":"reject"}],"meta":{"section":"gaming","score":0.0673816392},"_input_hash":1006589163,"_task_hash":673407478,"answer":"reject"} +{"text":"The market for artists who need a portable LCD drawing tablet that looks like a Dell XPS (with a plate window on top) that only uses pens and nothing else is probably not a large enough market to get a business plan built around.","spans":[{"start":80,"end":88,"text":"Dell XPS","rank":3,"label":"PRODUCT","score":0.1158262734,"source":"core_web_sm","input_hash":-347815913,"answer":"accept"}],"meta":{"section":"apple","score":0.1158262734},"_input_hash":-347815913,"_task_hash":986927160,"answer":"accept"} +{"text":"Stupid 4G eeepc","spans":[{"start":7,"end":9,"text":"4G","rank":2,"label":"PRODUCT","score":0.0132631432,"source":"core_web_sm","input_hash":-440319243,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0132631432},"_input_hash":-440319243,"_task_hash":-675510216,"answer":"reject"} +{"text":"I really hope you are black Dangerdrew!!!","spans":[{"start":28,"end":38,"text":"Dangerdrew","rank":2,"label":"PRODUCT","score":0.1028586475,"source":"core_web_sm","input_hash":-1538891809,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.1028586475},"_input_hash":-1538891809,"_task_hash":2053903021,"answer":"reject"} +{"text":"walmart only take 3 dollars.","spans":[{"start":18,"end":27,"text":"3 dollars","rank":1,"label":"PRODUCT","score":0.2371326386,"source":"core_web_sm","input_hash":179502583,"answer":"reject"}],"meta":{"section":"fffffffuuuuuuuuuuuu","score":0.2371326386},"_input_hash":179502583,"_task_hash":119583073,"answer":"reject"} +{"text":"I was flipping through the channels when I found a heavily-censored, commercial-break-filled airing of \"Goodfellas.","spans":[{"start":104,"end":114,"text":"Goodfellas","rank":4,"label":"PRODUCT","score":0.0111198305,"source":"core_web_sm","input_hash":1336092900,"answer":"reject"}],"meta":{"section":"movies","score":0.0111198305},"_input_hash":1336092900,"_task_hash":119865566,"answer":"reject"} +{"text":"Chicago's Largest Selection.","spans":[{"start":10,"end":27,"text":"Largest Selection","rank":3,"label":"PRODUCT","score":0.0408282998,"source":"core_web_sm","input_hash":-974863623,"answer":"reject"}],"meta":{"section":"legal","score":0.0408282998},"_input_hash":-974863623,"_task_hash":-602038060,"answer":"reject"} +{"text":"This is also valid in C with sprintf(s, \"%*d\", k, x);","spans":[{"start":47,"end":48,"text":"k","rank":1,"label":"PRODUCT","score":0.2325134229,"source":"core_web_sm","input_hash":437935190,"answer":"reject"}],"meta":{"section":"programming","score":0.2325134229},"_input_hash":437935190,"_task_hash":-80109949,"answer":"reject"} +{"text":"my karma actually go UP??","spans":[{"start":3,"end":8,"text":"karma","rank":7,"label":"PRODUCT","score":0.0119632148,"source":"core_web_sm","input_hash":1327466380,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0119632148},"_input_hash":1327466380,"_task_hash":296069306,"answer":"reject"} +{"text":"Osama declares he wants to bankrupt america and the GOP's plan to Starve the Beast","spans":[{"start":66,"end":72,"text":"Starve","rank":7,"label":"PRODUCT","score":0.0166631465,"source":"core_web_sm","input_hash":-1937741337,"answer":"reject"}],"meta":{"section":"politics","score":0.0166631465},"_input_hash":-1937741337,"_task_hash":1476417149,"answer":"reject"} +{"text":"and despite a population explosion (5,000","spans":[{"start":36,"end":41,"text":"5,000","rank":5,"label":"PRODUCT","score":0.0140460453,"source":"core_web_sm","input_hash":-1514473786,"answer":"reject"}],"meta":{"section":"guns","score":0.0140460453},"_input_hash":-1514473786,"_task_hash":-1100460290,"answer":"reject"} +{"text":"way to go Reddit, stay sharp.","spans":[{"start":10,"end":16,"text":"Reddit","rank":1,"label":"PRODUCT","score":0.4248941391,"source":"core_web_sm","input_hash":-1295561965,"answer":"accept"}],"meta":{"section":"Economics","score":0.4248941391},"_input_hash":-1295561965,"_task_hash":1482620319,"answer":"accept"} +{"text":"Until you've spent $30,000 on bike parts","spans":[{"start":19,"end":20,"text":"$","rank":3,"label":"PRODUCT","score":0.00253136,"source":"core_web_sm","input_hash":1227007815,"answer":"reject"}],"meta":{"section":"IAmA","score":0.00253136},"_input_hash":1227007815,"_task_hash":-38772007,"answer":"reject"} +{"text":"just as trillions of cells have relenquished their individuality to function as a harmonious whole of trillions, so the dreamers hope, someday billions of humans will learn to organize into something unimaginably more powerful and deplore those that are obsessed with maintaining their unicellularity :) or like cancerous CEOs draw on the benefits of the collective while only enriching themselves and their own personal desires.","spans":[{"start":301,"end":303,"text":":)","rank":2,"label":"PRODUCT","score":0.038254218,"source":"core_web_sm","input_hash":-1104636532,"answer":"reject"}],"meta":{"section":"politics","score":0.038254218},"_input_hash":-1104636532,"_task_hash":-1412523625,"answer":"reject"} +{"text":"Epiphany; Entire groups of nodes in limited contact, with conflicting data, yet consumed with the need to communicate this data, verify their perception.","spans":[{"start":10,"end":16,"text":"Entire","rank":4,"label":"PRODUCT","score":0.0509146303,"source":"core_web_sm","input_hash":-1211203360,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0509146303},"_input_hash":-1211203360,"_task_hash":-631791206,"answer":"reject"} +{"text":"Often the MDMA is cut with amphetamines to increase the rush, but not always when you buy it as a pill on the streets.","spans":[{"start":10,"end":14,"text":"MDMA","rank":4,"label":"PRODUCT","score":0.0056315402,"source":"core_web_sm","input_hash":-141107016,"answer":"reject"}],"meta":{"section":"Marijuana","score":0.0056315402},"_input_hash":-141107016,"_task_hash":1938047546,"answer":"reject"} +{"text":"MDMA is a dangerous drug, which is why even in clinical environments it is prescribed in limited, controlled doses.","spans":[{"start":0,"end":4,"text":"MDMA","rank":1,"label":"PRODUCT","score":0.0168715458,"source":"core_web_sm","input_hash":1069436270,"answer":"reject"}],"meta":{"section":"Marijuana","score":0.0168715458},"_input_hash":1069436270,"_task_hash":861442857,"answer":"reject"} +{"text":"Mixing MDMA with the SSRIs that I take could result in deadly side effects.","spans":[{"start":7,"end":11,"text":"MDMA","rank":0,"label":"PRODUCT","score":0.7585316581,"source":"core_web_sm","input_hash":1484545436,"answer":"reject"}],"meta":{"section":"Marijuana","score":0.7585316581},"_input_hash":1484545436,"_task_hash":1126900843,"answer":"reject"} +{"text":"drunk now as I\u2019m relaying it to you)","spans":[{"start":13,"end":14,"text":"I","rank":4,"label":"PRODUCT","score":0.0605895558,"source":"core_web_sm","input_hash":-29655310,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0605895558},"_input_hash":-29655310,"_task_hash":-149442478,"answer":"reject"} +{"text":"Hey, she could have been called Cherry Coke.","spans":[{"start":32,"end":43,"text":"Cherry Coke","rank":1,"label":"PRODUCT","score":0.2055502262,"source":"core_web_sm","input_hash":-649735924,"answer":"accept"}],"meta":{"section":"WTF","score":0.2055502262},"_input_hash":-649735924,"_task_hash":-1561520622,"answer":"accept"} +{"text":"How is it done, by getting us to pass ridiculous laws like the Patriot Act.","spans":[{"start":59,"end":74,"text":"the Patriot Act","rank":1,"label":"PRODUCT","score":0.1469402825,"source":"core_web_sm","input_hash":-1135259164,"answer":"reject"}],"meta":{"section":"politics","score":0.1469402825},"_input_hash":-1135259164,"_task_hash":412064660,"answer":"reject"} +{"text":"In Internet slang, a troll is someone who posts inflammatory, extraneous, or off-topic messages in an online community...","spans":[{"start":3,"end":17,"text":"Internet slang","rank":10,"label":"PRODUCT","score":0.0118524131,"source":"core_web_sm","input_hash":-1860001900,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0118524131},"_input_hash":-1860001900,"_task_hash":-2064898270,"answer":"reject"} +{"text":"I see a Sega Dreamcast controller!","spans":[{"start":8,"end":12,"text":"Sega","rank":6,"label":"PRODUCT","score":0.0077295298,"source":"core_web_sm","input_hash":-1347061500,"answer":"reject"}],"meta":{"section":"pics","score":0.0077295298},"_input_hash":-1347061500,"_task_hash":-1853059661,"answer":"reject"} +{"text":"that everyone whether it was their first patrol or their 500th participate in the brief.","spans":[{"start":57,"end":62,"text":"500th","rank":11,"label":"PRODUCT","score":0.0110099722,"source":"core_web_sm","input_hash":-1224007093,"answer":"reject"}],"meta":{"section":"IAmA","score":0.0110099722},"_input_hash":-1224007093,"_task_hash":-911433910,"answer":"reject"} +{"text":"If you're mission leader doesn't do that, and you're not sure what to do, ask.","spans":[{"start":74,"end":77,"text":"ask","rank":0,"label":"PRODUCT","score":0.6385218031,"source":"core_web_sm","input_hash":-279730572,"answer":"reject"}],"meta":{"section":"IAmA","score":0.6385218031},"_input_hash":-279730572,"_task_hash":101817759,"answer":"reject"} +{"text":"Amazing response, but by now I wouldn't have expected anything less :-).","spans":[{"start":68,"end":71,"text":":-)","rank":3,"label":"PRODUCT","score":0.0328344035,"source":"core_web_sm","input_hash":-1327915407,"answer":"reject"}],"meta":{"section":"IAmA","score":0.0328344035},"_input_hash":-1327915407,"_task_hash":-627604294,"answer":"reject"} +{"text":"I live in Montreal, Google, which is pronounced goo-gl(e), has not made its mark on this fair city.","spans":[{"start":20,"end":26,"text":"Google","rank":0,"label":"PRODUCT","score":0.7852656994,"source":"core_web_sm","input_hash":-506197218,"answer":"ignore"}],"meta":{"section":"reddit.com","score":0.7852656994},"_input_hash":-506197218,"_task_hash":-1303752545,"answer":"ignore"} +{"text":"The UA is \"Mozilla/4.0 (compatible; MSIE 6.0; Nitro) Opera 8.50 [en]\", but I can't seem to find the UA detection in WPtouch.","spans":[{"start":11,"end":22,"text":"Mozilla/4.0","rank":0,"label":"PRODUCT","score":0.7707137783,"source":"core_web_sm","input_hash":22714458,"answer":"ignore"}],"meta":{"section":"web_design","score":0.7707137783},"_input_hash":22714458,"_task_hash":1525795340,"answer":"ignore"} +{"text":"I just Googled Google becoming self-aware, and Google assured me that nothing wrong, so I'm not worried.","spans":[{"start":15,"end":21,"text":"Google","rank":0,"label":"PRODUCT","score":0.9924017502,"source":"core_web_sm","input_hash":-750046190,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9924017502},"_input_hash":-750046190,"_task_hash":1163352515,"answer":"accept"} +{"text":"I ask this because during my last trip, I looked at humanity from what I thought was some sort of alien perspective...and my natural pessimism brought me to the conclusion that the human race was definitely going to fail.","spans":[{"start":2,"end":5,"text":"ask","rank":0,"label":"PRODUCT","score":0.6304911597,"source":"core_web_sm","input_hash":778377978,"answer":"reject"}],"meta":{"section":"worldnews","score":0.6304911597},"_input_hash":778377978,"_task_hash":784035735,"answer":"reject"} +{"text":"Something tells me that for sure that Jack will die, same for Juliet, Sayid and Ben, this last one will make a sacrifice to save some Losties, as well as Jack (who might have the most shocking death ever) What I don't liked is the introduction of god-like characters (Jacob and the Men in Black).","spans":[{"start":134,"end":141,"text":"Losties","rank":0,"label":"PRODUCT","score":0.5803284748,"source":"core_web_sm","input_hash":633841416,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.5803284748},"_input_hash":633841416,"_task_hash":-199200917,"answer":"reject"} +{"text":"2009--some wheres around 365 days long---2010 will be just about the same....","spans":[{"start":16,"end":17,"text":"s","rank":2,"label":"PRODUCT","score":0.3236806685,"source":"core_web_sm","input_hash":1361792046,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.3236806685},"_input_hash":1361792046,"_task_hash":-1954946869,"answer":"reject"} +{"text":"revives auto-tune as an effect, which pretty much was forgotten after Cher and Daft Punk * American Idol makes Kelly Clarkson famous, and in the process generates a new pop outlet * MySpace and other online music communities redefine how unsigned musicians make a name for themselves * Apple releases GarageBand software, giving professional-level music production ability to the masses","spans":[{"start":301,"end":311,"text":"GarageBand","rank":0,"label":"PRODUCT","score":0.711523824,"source":"core_web_sm","input_hash":-764517099,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.711523824},"_input_hash":-764517099,"_task_hash":1368725275,"answer":"accept"} +{"text":"Following 7 months include night feedings, fatigue, cranks, teething, post partum depression, rolling, sitting, crawling, pulling up, crying, laughing, smiling, fatigue, fatigue, fatigue.","spans":[{"start":10,"end":18,"text":"7 months","rank":0,"label":"PRODUCT","score":0.4980810343,"source":"core_web_sm","input_hash":-1039298847,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.4980810343},"_input_hash":-1039298847,"_task_hash":1620452678,"answer":"reject"} +{"text":"That's a savings of 0.000000014457911%!!","spans":[{"start":20,"end":38,"text":"0.000000014457911%","rank":0,"label":"PRODUCT","score":0.523098342,"source":"core_web_sm","input_hash":101444828,"answer":"reject"}],"meta":{"section":"WTF","score":0.523098342},"_input_hash":101444828,"_task_hash":1055703077,"answer":"reject"} +{"text":"I LOVE pigs and have since I can remember.","spans":[{"start":2,"end":6,"text":"LOVE","rank":1,"label":"PRODUCT","score":0.1726381831,"source":"core_web_sm","input_hash":1754193287,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.1726381831},"_input_hash":1754193287,"_task_hash":573061735,"answer":"reject"} +{"text":"\" Your question is kind of like \"which American programming language should I use to write a physics simulation?\"","spans":[{"start":2,"end":6,"text":"Your","rank":5,"label":"PRODUCT","score":0.0290062853,"source":"core_web_sm","input_hash":-1886166195,"answer":"reject"}],"meta":{"section":"programming","score":0.0290062853},"_input_hash":-1886166195,"_task_hash":220021838,"answer":"reject"} +{"text":"At work when people talk to me, I am staring right at them and only walk away with maybe 40% of the information I was supposed to retain during the conversation.","spans":[{"start":63,"end":67,"text":"only","rank":2,"label":"PRODUCT","score":0.0401779582,"source":"core_web_sm","input_hash":1523597678,"answer":"reject"}],"meta":{"section":"IAmA","score":0.0401779582},"_input_hash":1523597678,"_task_hash":815667253,"answer":"reject"} +{"text":"If the moon was made of spare ribs, would you eat it?","spans":[{"start":3,"end":11,"text":"the moon","rank":1,"label":"PRODUCT","score":0.2182416724,"source":"core_web_sm","input_hash":2049913926,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.2182416724},"_input_hash":2049913926,"_task_hash":478982253,"answer":"reject"} +{"text":"I just don't understand what this has to do with the Xzibit meme.","spans":[{"start":53,"end":59,"text":"Xzibit","rank":0,"label":"PRODUCT","score":0.6991016061,"source":"core_web_sm","input_hash":-1147448481,"answer":"reject"}],"meta":{"section":"pics","score":0.6991016061},"_input_hash":-1147448481,"_task_hash":-1563260476,"answer":"reject"} +{"text":"And Shift + Del instantly deletes files","spans":[{"start":12,"end":15,"text":"Del","rank":0,"label":"PRODUCT","score":0.7804284062,"source":"core_web_sm","input_hash":-588568844,"answer":"reject"}],"meta":{"section":"todayilearned","score":0.7804284062},"_input_hash":-588568844,"_task_hash":1471093993,"answer":"reject"} +{"text":"AUC - Ab Urbe Condita - From the Founding of the City Roughly 753 BC.","spans":[{"start":54,"end":61,"text":"Roughly","rank":0,"label":"PRODUCT","score":0.8996302299,"source":"core_web_sm","input_hash":213819059,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.8996302299},"_input_hash":213819059,"_task_hash":1300460816,"answer":"reject"} +{"text":"In non-reddit speak, I'll say that I could write a graduate-level paper on TNG themes, and how well they are executed.","spans":[{"start":75,"end":78,"text":"TNG","rank":1,"label":"PRODUCT","score":0.3403878385,"source":"core_web_sm","input_hash":-1437156089,"answer":"reject"}],"meta":{"section":"DoesAnybodyElse","score":0.3403878385},"_input_hash":-1437156089,"_task_hash":-657219389,"answer":"reject"} +{"text":"I see nothing wrong with this, except the 'sinful' - where does it say that she sinned?","spans":[{"start":49,"end":50,"text":"'","rank":2,"label":"PRODUCT","score":0.235459147,"source":"core_web_sm","input_hash":363261103,"answer":"reject"}],"meta":{"section":"Christianity","score":0.235459147},"_input_hash":363261103,"_task_hash":842340314,"answer":"reject"} +{"text":"Does Google take prisoners?","spans":[{"start":5,"end":11,"text":"Google","rank":0,"label":"PRODUCT","score":0.9995284456,"source":"core_web_sm","input_hash":-733671907,"answer":"ignore"}],"meta":{"section":"reddit.com","score":0.9995284456},"_input_hash":-733671907,"_task_hash":267700883,"answer":"ignore"} +{"text":"Therefore I stand by the Immaculate Conception.","spans":[{"start":21,"end":46,"text":"the Immaculate Conception","rank":1,"label":"PRODUCT","score":0.2921438172,"source":"core_web_sm","input_hash":-859761764,"answer":"reject"}],"meta":{"section":"Christianity","score":0.2921438172},"_input_hash":-859761764,"_task_hash":-639917870,"answer":"reject"} +{"text":"Second of all, how does that specific post relate to \"Why can't Jedi's fly?\".","spans":[{"start":64,"end":68,"text":"Jedi","rank":2,"label":"PRODUCT","score":0.0135771642,"source":"core_web_sm","input_hash":-1324243691,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0135771642},"_input_hash":-1324243691,"_task_hash":1231717213,"answer":"reject"} +{"text":"Try some of Haruki Murakami, I always liked him.","spans":[{"start":12,"end":27,"text":"Haruki Murakami","rank":2,"label":"PRODUCT","score":0.0170566071,"source":"core_web_sm","input_hash":1632003656,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0170566071},"_input_hash":1632003656,"_task_hash":1028678028,"answer":"reject"} +{"text":"She also plays Band hero with me.","spans":[{"start":15,"end":24,"text":"Band hero","rank":0,"label":"PRODUCT","score":0.9848083519,"source":"core_web_sm","input_hash":1909956728,"answer":"accept"}],"meta":{"section":"tf2au","score":0.9848083519},"_input_hash":1909956728,"_task_hash":-1893516509,"answer":"accept"} +{"text":"I wonder if Google would have any legal recourse...","spans":[{"start":12,"end":18,"text":"Google","rank":1,"label":"PRODUCT","score":0.2012474668,"source":"core_web_sm","input_hash":225465201,"answer":"ignore"}],"meta":{"section":"AskReddit","score":0.2012474668},"_input_hash":225465201,"_task_hash":-869737790,"answer":"ignore"} +{"text":"\"Discredited\" then?","spans":[{"start":1,"end":12,"text":"Discredited","rank":1,"label":"PRODUCT","score":0.2473434421,"source":"core_web_sm","input_hash":13615117,"answer":"reject"}],"meta":{"section":"atheism","score":0.2473434421},"_input_hash":13615117,"_task_hash":1897419460,"answer":"reject"} +{"text":"Super handy but not a part of Windows unfortunately.","spans":[{"start":30,"end":37,"text":"Windows","rank":0,"label":"PRODUCT","score":0.5028234865,"source":"core_web_sm","input_hash":1840759893,"answer":"accept"}],"meta":{"section":"todayilearned","score":0.5028234865},"_input_hash":1840759893,"_task_hash":-751819781,"answer":"accept"} +{"text":"Thinking about tomorrow....","spans":[{"start":9,"end":14,"text":"about","rank":1,"label":"PRODUCT","score":0.3369114949,"source":"core_web_sm","input_hash":-678006811,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.3369114949},"_input_hash":-678006811,"_task_hash":711058152,"answer":"reject"} +{"text":"Where you willing to follow George W Bush after 9/11?","spans":[{"start":48,"end":52,"text":"9/11","rank":3,"label":"PRODUCT","score":0.0212870198,"source":"core_web_sm","input_hash":26908875,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0212870198},"_input_hash":26908875,"_task_hash":723365533,"answer":"reject"} +{"text":"I'm trying to tackle the Pulitzer Prize lists for fiction/novels.","spans":[{"start":25,"end":39,"text":"Pulitzer Prize","rank":1,"label":"PRODUCT","score":0.1555600061,"source":"core_web_sm","input_hash":58632854,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.1555600061},"_input_hash":58632854,"_task_hash":-249987829,"answer":"reject"} +{"text":"At Jesus' baptism, the Father spoke from heaven saying, \"This is my beloved Son, in whom I am well pleased.\"","spans":[{"start":76,"end":79,"text":"Son","rank":1,"label":"PRODUCT","score":0.2069221443,"source":"core_web_sm","input_hash":1994520486,"answer":"reject"}],"meta":{"section":"islam","score":0.2069221443},"_input_hash":1994520486,"_task_hash":1557348723,"answer":"reject"} +{"text":"Matthew 17:5 - At the Transfiguration the Father again spoke from heaven saying, \"This is my beloved Son, in whom I am well pleased.","spans":[{"start":101,"end":104,"text":"Son","rank":2,"label":"PRODUCT","score":0.2291443895,"source":"core_web_sm","input_hash":1033346162,"answer":"reject"}],"meta":{"section":"islam","score":0.2291443895},"_input_hash":1033346162,"_task_hash":1583739989,"answer":"reject"} +{"text":"John 9:35-37 - He told a blind man He had healed that He was the Son of God.","spans":[{"start":5,"end":12,"text":"9:35-37","rank":1,"label":"PRODUCT","score":0.0311758635,"source":"core_web_sm","input_hash":-953025749,"answer":"reject"}],"meta":{"section":"islam","score":0.0311758635},"_input_hash":-953025749,"_task_hash":-885532115,"answer":"reject"} +{"text":"Or those eighteen on whom the tower in Siloam fell and killed them","spans":[{"start":39,"end":45,"text":"Siloam","rank":1,"label":"PRODUCT","score":0.3423102717,"source":"core_web_sm","input_hash":-1350777866,"answer":"reject"}],"meta":{"section":"islam","score":0.3423102717},"_input_hash":-1350777866,"_task_hash":1590586542,"answer":"reject"} +{"text":"I could ask you the same question because I don't sit in Gods seat.","spans":[{"start":57,"end":61,"text":"Gods","rank":0,"label":"PRODUCT","score":0.8878939245,"source":"core_web_sm","input_hash":-1494781487,"answer":"reject"}],"meta":{"section":"islam","score":0.8878939245},"_input_hash":-1494781487,"_task_hash":-1858826144,"answer":"reject"} +{"text":"he would invite me down to Malibu and sign my Lethal Weapon?","spans":[{"start":46,"end":59,"text":"Lethal Weapon","rank":0,"label":"PRODUCT","score":0.8993070065,"source":"core_web_sm","input_hash":-1596390985,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.8993070065},"_input_hash":-1596390985,"_task_hash":1912994829,"answer":"reject"} +{"text":"How many of you tweakers are there on Reddit?!","spans":[{"start":38,"end":44,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9969678925,"source":"core_web_sm","input_hash":-1062131403,"answer":"accept"}],"meta":{"section":"IAmA","score":0.9969678925},"_input_hash":-1062131403,"_task_hash":1545963267,"answer":"accept"} +{"text":"A $580 meal?!","spans":[{"start":2,"end":3,"text":"$","rank":5,"label":"PRODUCT","score":0.0046063258,"source":"core_web_sm","input_hash":-341326241,"answer":"reject"}],"meta":{"section":"Frugal","score":0.0046063258},"_input_hash":-341326241,"_task_hash":-162336004,"answer":"reject"} +{"text":"* Parents: \"Son, how are things going with what's-her-name?","spans":[{"start":12,"end":15,"text":"Son","rank":3,"label":"PRODUCT","score":0.0357429716,"source":"core_web_sm","input_hash":139057222,"answer":"reject"}],"meta":{"section":"math","score":0.0357429716},"_input_hash":139057222,"_task_hash":-1229770194,"answer":"reject"} +{"text":"Mixing MDMA with the SSRIs used to treat depression and anxiety, even at therapeutic level can cause Serotonin Syndrome resulting in death.","spans":[{"start":7,"end":11,"text":"MDMA","rank":0,"label":"PRODUCT","score":0.5291041501,"source":"core_web_sm","input_hash":2106084070,"answer":"reject"}],"meta":{"section":"Marijuana","score":0.5291041501},"_input_hash":2106084070,"_task_hash":-381632626,"answer":"reject"} +{"text":"So, someone named BatteryCell on reddit thinks I should go to MIT.\"","spans":[{"start":18,"end":29,"text":"BatteryCell","rank":0,"label":"PRODUCT","score":0.6169141759,"source":"core_web_sm","input_hash":-1798444034,"answer":"reject"}],"meta":{"section":"math","score":0.6169141759},"_input_hash":-1798444034,"_task_hash":-1173276502,"answer":"reject"} +{"text":"* Parents: \"Son, when are you going to move out of our basement?\"","spans":[{"start":12,"end":15,"text":"Son","rank":3,"label":"PRODUCT","score":0.0980530983,"source":"core_web_sm","input_hash":-268695685,"answer":"reject"}],"meta":{"section":"math","score":0.0980530983},"_input_hash":-268695685,"_task_hash":-26208505,"answer":"reject"} +{"text":"When I was in school if whoever was grading could not distinguish your Ts from your Fs the question was automatically wrong.","spans":[{"start":84,"end":86,"text":"Fs","rank":2,"label":"PRODUCT","score":0.0877412473,"source":"core_web_sm","input_hash":355639893,"answer":"reject"}],"meta":{"section":"comics","score":0.0877412473},"_input_hash":355639893,"_task_hash":-1936395488,"answer":"reject"} +{"text":"While man is imperfect, and even as a vessel of God's will we are imperfect, we are chosen not because we are perfect but for that very fact - that we are imperfect.","spans":[{"start":48,"end":51,"text":"God","rank":2,"label":"PRODUCT","score":0.006761546,"source":"core_web_sm","input_hash":-1089921956,"answer":"reject"}],"meta":{"section":"Christianity","score":0.006761546},"_input_hash":-1089921956,"_task_hash":-461249650,"answer":"reject"} +{"text":"And His will does allow us free will, which allowed the Original Sin, and allowed us to sin today.","spans":[{"start":4,"end":7,"text":"His","rank":4,"label":"PRODUCT","score":0.0228808851,"source":"core_web_sm","input_hash":720481617,"answer":"reject"}],"meta":{"section":"Christianity","score":0.0228808851},"_input_hash":720481617,"_task_hash":496333989,"answer":"reject"} +{"text":"It was made by a StarGate laying on its side.","spans":[{"start":17,"end":25,"text":"StarGate","rank":0,"label":"PRODUCT","score":0.7237439261,"source":"core_web_sm","input_hash":1540291289,"answer":"reject"}],"meta":{"section":"space","score":0.7237439261},"_input_hash":1540291289,"_task_hash":516607848,"answer":"reject"} +{"text":"It's a bullshit award that means nothing to me, the satisfaction of the people who upvoted me cannot be taken away by you, and B)","spans":[{"start":127,"end":128,"text":"B","rank":1,"label":"PRODUCT","score":0.3514896504,"source":"core_web_sm","input_hash":1010050164,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.3514896504},"_input_hash":1010050164,"_task_hash":171864651,"answer":"reject"} +{"text":"Plus it could really help in the event that someone wants to start planning Reddit meetups.","spans":[{"start":76,"end":82,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9915878268,"source":"core_web_sm","input_hash":1757427668,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.9915878268},"_input_hash":1757427668,"_task_hash":-69474081,"answer":"accept"} +{"text":"I caught it at I.C. Weiner, really.","spans":[{"start":15,"end":26,"text":"I.C. Weiner","rank":0,"label":"PRODUCT","score":0.5088913414,"source":"core_web_sm","input_hash":383053143,"answer":"reject"}],"meta":{"section":"geek","score":0.5088913414},"_input_hash":383053143,"_task_hash":804598370,"answer":"reject"} +{"text":"Yea .. I've been asking Reddit for a couple days now to find me a Campbell's soup commercial...","spans":[{"start":24,"end":30,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.7540159063,"source":"core_web_sm","input_hash":1849791824,"answer":"accept"}],"meta":{"section":"fffffffuuuuuuuuuuuu","score":0.7540159063},"_input_hash":1849791824,"_task_hash":1220431136,"answer":"accept"} +{"text":"(at NL100 you have to","spans":[{"start":4,"end":9,"text":"NL100","rank":0,"label":"PRODUCT","score":0.9926274071,"source":"core_web_sm","input_hash":2084106023,"answer":"reject"}],"meta":{"section":"poker","score":0.9926274071},"_input_hash":2084106023,"_task_hash":812654011,"answer":"reject"} +{"text":", there are far less weaker players than NL50).","spans":[{"start":41,"end":45,"text":"NL50","rank":1,"label":"PRODUCT","score":0.1986427711,"source":"core_web_sm","input_hash":1198752506,"answer":"reject"}],"meta":{"section":"poker","score":0.1986427711},"_input_hash":1198752506,"_task_hash":928323629,"answer":"reject"} +{"text":"AND it is buried within 1000 comments.","spans":[{"start":24,"end":28,"text":"1000","rank":1,"label":"PRODUCT","score":0.0090186488,"source":"core_web_sm","input_hash":-1946201390,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0090186488},"_input_hash":-1946201390,"_task_hash":1481743878,"answer":"reject"} +{"text":"Shit, Reddit admins will be so busy \"fixing\" voting for us that they won't have time for anything else.","spans":[{"start":6,"end":12,"text":"Reddit","rank":1,"label":"PRODUCT","score":0.0816114547,"source":"core_web_sm","input_hash":1345009427,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.0816114547},"_input_hash":1345009427,"_task_hash":-62132424,"answer":"accept"} +{"text":"No question, Diablo III.","spans":[{"start":13,"end":23,"text":"Diablo III","rank":1,"label":"PRODUCT","score":0.3474902997,"source":"core_web_sm","input_hash":-2105171272,"answer":"accept"}],"meta":{"section":"gaming","score":0.3474902997},"_input_hash":-2105171272,"_task_hash":-1040163496,"answer":"accept"} +{"text":"\"Properly free\"?","spans":[{"start":1,"end":9,"text":"Properly","rank":0,"label":"PRODUCT","score":0.318012603,"source":"core_web_sm","input_hash":-1578397035,"answer":"reject"}],"meta":{"section":"gaming","score":0.318012603},"_input_hash":-1578397035,"_task_hash":-66114361,"answer":"reject"} +{"text":", I'm going to say Portal.","spans":[{"start":19,"end":25,"text":"Portal","rank":0,"label":"PRODUCT","score":0.9661117169,"source":"core_web_sm","input_hash":737441184,"answer":"accept"}],"meta":{"section":"gaming","score":0.9661117169},"_input_hash":737441184,"_task_hash":459446654,"answer":"accept"} +{"text":"Just what do you think Cap and Trade is?","spans":[{"start":31,"end":36,"text":"Trade","rank":1,"label":"PRODUCT","score":0.3319597342,"source":"core_web_sm","input_hash":2036302157,"answer":"reject"}],"meta":{"section":"Economics","score":0.3319597342},"_input_hash":2036302157,"_task_hash":267078971,"answer":"reject"} +{"text":"That's why they keep making Oxy Clean and Slap Chop references.","spans":[{"start":42,"end":51,"text":"Slap Chop","rank":1,"label":"PRODUCT","score":0.2656752006,"source":"core_web_sm","input_hash":-2067454452,"answer":"accept"},{"start":28,"end":37,"text":"Oxy Clean","rank":0,"label":"PRODUCT","score":0.6795246468,"source":"core_web_sm","input_hash":-2067454452,"answer":"accept"}],"meta":{"section":"gaming","score":0.2656752006},"_input_hash":-2067454452,"_task_hash":2053953389,"answer":"accept"} +{"text":"So, my vote for \"Game of the Decade\" is Portal.","spans":[{"start":40,"end":46,"text":"Portal","rank":0,"label":"PRODUCT","score":0.6210318653,"source":"core_web_sm","input_hash":442316168,"answer":"accept"}],"meta":{"section":"gaming","score":0.6210318653},"_input_hash":442316168,"_task_hash":-1398954713,"answer":"accept"} +{"text":"That's why they keep making Oxy Clean and Slap Chop references.","spans":[{"start":28,"end":37,"text":"Oxy Clean","rank":0,"label":"PRODUCT","score":0.6795246468,"source":"core_web_sm","input_hash":-2067454452,"answer":"accept"}],"meta":{"section":"gaming","score":0.6795246468},"_input_hash":-2067454452,"_task_hash":2102671685,"answer":"accept"} +{"text":"Cop Saves Pick one.","spans":[{"start":10,"end":18,"text":"Pick one","rank":3,"label":"PRODUCT","score":0.0412946902,"source":"core_web_sm","input_hash":-1930799947,"answer":"reject"}],"meta":{"section":"WTF","score":0.0412946902},"_input_hash":-1930799947,"_task_hash":-1698902964,"answer":"reject"} +{"text":"That didn't happen to me with the Stand or the Talisman or the Dark Tower books.","spans":[{"start":59,"end":73,"text":"the Dark Tower","rank":5,"label":"PRODUCT","score":0.001921227,"source":"core_web_sm","input_hash":441602922,"answer":"reject"}],"meta":{"section":"books","score":0.001921227},"_input_hash":441602922,"_task_hash":-1134399205,"answer":"reject"} +{"text":"Wonder if the bullshit \" I made $$$$$$$$$$ working from home for google\" and shows a pic of a lady holding a fake check.","spans":[{"start":41,"end":42,"text":"$","rank":0,"label":"PRODUCT","score":0.3722084104,"source":"core_web_sm","input_hash":1447656101,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.3722084104},"_input_hash":1447656101,"_task_hash":1803831854,"answer":"reject"} +{"text":"I live in Cape Cod MA with my boyfriend","spans":[{"start":10,"end":14,"text":"Cape","rank":0,"label":"PRODUCT","score":0.5161693985,"source":"core_web_sm","input_hash":-1493236177,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.5161693985},"_input_hash":-1493236177,"_task_hash":739122900,"answer":"reject"} +{"text":"Criminal agreed to the ToS. \"We have the right, but not the obligation, in our sole discretion to edit, refuse to post, or remove any User Content.","spans":[{"start":134,"end":146,"text":"User Content","rank":0,"label":"PRODUCT","score":0.8571056258,"source":"core_web_sm","input_hash":-1849012083,"answer":"reject"}],"meta":{"section":"gaming","score":0.8571056258},"_input_hash":-1849012083,"_task_hash":929197702,"answer":"reject"} +{"text":"It is called the Lost Room.","spans":[{"start":13,"end":26,"text":"the Lost Room","rank":0,"label":"PRODUCT","score":0.8880166719,"source":"core_web_sm","input_hash":107978103,"answer":"reject"},{"start":22,"end":26,"text":"Room","rank":4,"label":"PRODUCT","score":0.0076482932,"source":"core_web_sm","input_hash":107978103,"answer":"reject"}],"meta":{"section":"scifi","score":0.8880166719},"_input_hash":107978103,"_task_hash":-2111151031,"answer":"reject"} +{"text":"It is called the Lost Room.","spans":[{"start":22,"end":26,"text":"Room","rank":4,"label":"PRODUCT","score":0.0076482932,"source":"core_web_sm","input_hash":107978103,"answer":"reject"}],"meta":{"section":"scifi","score":0.0076482932},"_input_hash":107978103,"_task_hash":-516454314,"answer":"reject"} +{"text":"I did notice that my hard drive was bottlenecking somehow and making downloads and loading Steam backup incredibly slow.","spans":[{"start":91,"end":96,"text":"Steam","rank":0,"label":"PRODUCT","score":0.9736743409,"source":"core_web_sm","input_hash":1224685212,"answer":"accept"}],"meta":{"section":"fffffffuuuuuuuuuuuu","score":0.9736743409},"_input_hash":1224685212,"_task_hash":1652363767,"answer":"accept"} +{"text":"I don't like Mario.","spans":[{"start":13,"end":18,"text":"Mario","rank":3,"label":"PRODUCT","score":0.0163677556,"source":"core_web_sm","input_hash":-1578490416,"answer":"accept"}],"meta":{"section":"gaming","score":0.0163677556},"_input_hash":-1578490416,"_task_hash":-928971189,"answer":"accept"} +{"text":"It offers a `Process` object that behaves mostly like a `Thread`, and a `Queue` object that offers thread- and process-safe IPC","spans":[{"start":57,"end":63,"text":"Thread","rank":2,"label":"PRODUCT","score":0.2012928669,"source":"core_web_sm","input_hash":-1280071761,"answer":"reject"}],"meta":{"section":"programming","score":0.2012928669},"_input_hash":-1280071761,"_task_hash":1653920434,"answer":"reject"} +{"text":"It's a good idea to keep some Thorazine around, and","spans":[{"start":30,"end":39,"text":"Thorazine","rank":0,"label":"PRODUCT","score":0.9975157068,"source":"core_web_sm","input_hash":1602657384,"answer":"accept"}],"meta":{"section":"worldnews","score":0.9975157068},"_input_hash":1602657384,"_task_hash":1741128505,"answer":"accept"} +{"text":"Sounds like Google to me.","spans":[{"start":12,"end":18,"text":"Google","rank":0,"label":"PRODUCT","score":0.9564415194,"source":"core_web_sm","input_hash":938957256,"answer":"accept"}],"meta":{"section":"worldnews","score":0.9564415194},"_input_hash":938957256,"_task_hash":-1089372897,"answer":"accept"} +{"text":"If you really want to get into stuff like that, you can always copy it into Excel or something.","spans":[{"start":76,"end":81,"text":"Excel","rank":0,"label":"PRODUCT","score":0.7016977624,"source":"core_web_sm","input_hash":1015921786,"answer":"accept"}],"meta":{"section":"gaming","score":0.7016977624},"_input_hash":1015921786,"_task_hash":151979810,"answer":"accept"} +{"text":"No Bel Air?","spans":[{"start":3,"end":10,"text":"Bel Air","rank":2,"label":"PRODUCT","score":0.0120303376,"source":"core_web_sm","input_hash":-1062791690,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0120303376},"_input_hash":-1062791690,"_task_hash":1674136398,"answer":"reject"} +{"text":"REDDIT","spans":[{"start":0,"end":6,"text":"REDDIT","rank":0,"label":"PRODUCT","score":0.7063532607,"source":"core_web_sm","input_hash":-1809822469,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.7063532607},"_input_hash":-1809822469,"_task_hash":-1962577543,"answer":"accept"} +{"text":"Reddit proves this.","spans":[{"start":0,"end":6,"text":"Reddit","rank":1,"label":"PRODUCT","score":0.2195899583,"source":"core_web_sm","input_hash":1259268514,"answer":"accept"}],"meta":{"section":"funny","score":0.2195899583},"_input_hash":1259268514,"_task_hash":136259381,"answer":"accept"} +{"text":"Yeah, they've done an unfilmed Pokemon marathon, a Sonic marathon, and a Mario RPG marathon.","spans":[{"start":73,"end":82,"text":"Mario RPG","rank":0,"label":"PRODUCT","score":0.8616066597,"source":"core_web_sm","input_hash":224845608,"answer":"reject"}],"meta":{"section":"gaming","score":0.8616066597},"_input_hash":224845608,"_task_hash":1901167643,"answer":"reject"} +{"text":"my legit games that aren't from Steam give me shit.","spans":[{"start":32,"end":37,"text":"Steam","rank":0,"label":"PRODUCT","score":0.5962589941,"source":"core_web_sm","input_hash":1305605224,"answer":"accept"}],"meta":{"section":"gaming","score":0.5962589941},"_input_hash":1305605224,"_task_hash":181400711,"answer":"accept"} +{"text":"I saw Terminator 2 after completing basic training.","spans":[{"start":6,"end":18,"text":"Terminator 2","rank":0,"label":"PRODUCT","score":0.7686059775,"source":"core_web_sm","input_hash":1151255493,"answer":"reject"}],"meta":{"section":"movies","score":0.7686059775},"_input_hash":1151255493,"_task_hash":-1350293019,"answer":"reject"} +{"text":"Is Karma that important to the algorithm that someone has to step in?","spans":[{"start":3,"end":8,"text":"Karma","rank":0,"label":"PRODUCT","score":0.3771071442,"source":"core_web_sm","input_hash":-1328914659,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.3771071442},"_input_hash":-1328914659,"_task_hash":-438601073,"answer":"reject"} +{"text":"But look at what these talking heads are selling them: the Tea Party movement gains all it's momentum from the collective belief that government run healthcare restricts individual freedoms, the most popular forms of music fit either into the genres of indie or hip-hop/rap, both of which are appealing at least in part because they're so anti-establishment.","spans":[{"start":262,"end":265,"text":"hip","rank":0,"label":"PRODUCT","score":0.9039461469,"source":"core_web_sm","input_hash":-169904337,"answer":"reject"}],"meta":{"section":"politics","score":0.9039461469},"_input_hash":-169904337,"_task_hash":838461091,"answer":"reject"} +{"text":"A man who works hard all week should be able to support himself and his family to a certain standard of living, which might include occasional new clothes and meat regularly.","spans":[{"start":2,"end":5,"text":"man","rank":2,"label":"PRODUCT","score":0.0795764778,"source":"core_web_sm","input_hash":-912577162,"answer":"reject"}],"meta":{"section":"australia","score":0.0795764778},"_input_hash":-912577162,"_task_hash":-1886079746,"answer":"reject"} +{"text":"For example, and Industrial Cleaner gets something like $15 an hour.","spans":[{"start":17,"end":35,"text":"Industrial Cleaner","rank":2,"label":"PRODUCT","score":0.082862519,"source":"core_web_sm","input_hash":245783612,"answer":"reject"}],"meta":{"section":"australia","score":0.082862519},"_input_hash":245783612,"_task_hash":1423572533,"answer":"reject"} +{"text":"The Harvester Judgment, and the publicity received, was a very important landmark in the process of Labor Reform here in Australia.","spans":[{"start":100,"end":112,"text":"Labor Reform","rank":1,"label":"PRODUCT","score":0.0125231204,"source":"core_web_sm","input_hash":2059503436,"answer":"reject"}],"meta":{"section":"australia","score":0.0125231204},"_input_hash":2059503436,"_task_hash":-1860482511,"answer":"reject"} +{"text":"Here's to another holiday evening spent on Reddit.","spans":[{"start":43,"end":49,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9986307796,"source":"core_web_sm","input_hash":-957487627,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9986307796},"_input_hash":-957487627,"_task_hash":-315919365,"answer":"accept"} +{"text":"The meter maid was NOT giving a ticket or sitting in a speed trap.","spans":[{"start":4,"end":9,"text":"meter","rank":0,"label":"PRODUCT","score":0.7602184084,"source":"core_web_sm","input_hash":247790573,"answer":"reject"}],"meta":{"section":"pics","score":0.7602184084},"_input_hash":247790573,"_task_hash":-357172431,"answer":"reject"} +{"text":"Did you have to be on Google as midnight struck?","spans":[{"start":22,"end":28,"text":"Google","rank":0,"label":"PRODUCT","score":0.9812835593,"source":"core_web_sm","input_hash":319036207,"answer":"accept"}],"meta":{"section":"pics","score":0.9812835593},"_input_hash":319036207,"_task_hash":-376246821,"answer":"accept"} +{"text":"There are plenty of non-MSM news sources, but your post suggests you don't look up any news (assuming Reddit is not your news fix, and even if it is, Reddit often cites MSM.","spans":[{"start":102,"end":108,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9999998132,"source":"core_web_sm","input_hash":-325671468,"answer":"accept"}],"meta":{"section":"politics","score":0.9999998132},"_input_hash":-325671468,"_task_hash":339138452,"answer":"accept"} +{"text":"(which is what they try to install) installed, and Win7 is smart enough to not let it install, whilst Vista lets it (and you then lose all your DX10 functionality).","spans":[{"start":144,"end":148,"text":"DX10","rank":0,"label":"PRODUCT","score":0.9926205222,"source":"core_web_sm","input_hash":-725739708,"answer":"accept"}],"meta":{"section":"gaming","score":0.9926205222},"_input_hash":-725739708,"_task_hash":1940098440,"answer":"accept"} +{"text":"Were they using Windows by any chance?","spans":[{"start":16,"end":23,"text":"Windows","rank":1,"label":"PRODUCT","score":0.1601340799,"source":"core_web_sm","input_hash":-962300305,"answer":"accept"}],"meta":{"section":"technology","score":0.1601340799},"_input_hash":-962300305,"_task_hash":1964932314,"answer":"accept"} +{"text":"It's only 7:00 here.","spans":[{"start":5,"end":14,"text":"only 7:00","rank":1,"label":"PRODUCT","score":0.4331094335,"source":"core_web_sm","input_hash":-1151395559,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.4331094335},"_input_hash":-1151395559,"_task_hash":-1891204457,"answer":"reject"} +{"text":"I might make $10,000 in interest and owe myself a $40 overdraft fee.","spans":[{"start":50,"end":51,"text":"$","rank":1,"label":"PRODUCT","score":0.3150381757,"source":"core_web_sm","input_hash":1179055749,"answer":"reject"}],"meta":{"section":"WTF","score":0.3150381757},"_input_hash":1179055749,"_task_hash":-380981229,"answer":"reject"} +{"text":"Kate O'Brien: Beer stud?","spans":[{"start":14,"end":18,"text":"Beer","rank":1,"label":"PRODUCT","score":0.0109400074,"source":"core_web_sm","input_hash":1303751859,"answer":"reject"}],"meta":{"section":"IAmA","score":0.0109400074},"_input_hash":1303751859,"_task_hash":1375080888,"answer":"reject"} +{"text":"In short, out of 7 billion people, yes, I do LOVE my life.","spans":[{"start":45,"end":49,"text":"LOVE","rank":0,"label":"PRODUCT","score":0.4797374746,"source":"core_web_sm","input_hash":45039961,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.4797374746},"_input_hash":45039961,"_task_hash":-312900969,"answer":"reject"} +{"text":"is: $age if age","spans":[{"start":4,"end":5,"text":"$","rank":0,"label":"PRODUCT","score":0.8716124542,"source":"core_web_sm","input_hash":-1894852712,"answer":"reject"}],"meta":{"section":"programming","score":0.8716124542},"_input_hash":-1894852712,"_task_hash":33410124,"answer":"reject"} +{"text":"`your age is :$age` to: `append \"your age is :\" (show age)`.","spans":[{"start":14,"end":15,"text":"$","rank":1,"label":"PRODUCT","score":0.3216829133,"source":"core_web_sm","input_hash":-922714555,"answer":"reject"}],"meta":{"section":"programming","score":0.3216829133},"_input_hash":-922714555,"_task_hash":-1775401701,"answer":"reject"} +{"text":"drinking-age = 18 age = 21 left = drinking-age - age agesq = age \u00b2 in do print your age","spans":[{"start":65,"end":66,"text":"\u00b2","rank":0,"label":"PRODUCT","score":0.9961356352,"source":"core_web_sm","input_hash":151362160,"answer":"reject"}],"meta":{"section":"programming","score":0.9961356352},"_input_hash":151362160,"_task_hash":-1913050338,"answer":"reject"} +{"text":"There's a space inbetween 'age' and '\u00b2' (and any other operators) because I'm pondering letting","spans":[{"start":37,"end":38,"text":"\u00b2","rank":0,"label":"PRODUCT","score":0.9986168616,"source":"core_web_sm","input_hash":-1952822590,"answer":"reject"}],"meta":{"section":"programming","score":0.9986168616},"_input_hash":-1952822590,"_task_hash":1742786687,"answer":"reject"} +{"text":"Tasty anal secretion!","spans":[{"start":0,"end":5,"text":"Tasty","rank":1,"label":"PRODUCT","score":0.0211087843,"source":"core_web_sm","input_hash":-140156363,"answer":"reject"}],"meta":{"section":"geek","score":0.0211087843},"_input_hash":-140156363,"_task_hash":888305546,"answer":"reject"} +{"text":"It is a 7% difference.","spans":[{"start":8,"end":10,"text":"7%","rank":1,"label":"PRODUCT","score":0.1744469961,"source":"core_web_sm","input_hash":-1320063286,"answer":"reject"}],"meta":{"section":"TwoXChromosomes","score":0.1744469961},"_input_hash":-1320063286,"_task_hash":-1046727316,"answer":"reject"} +{"text":"However, I figured my G1 would have an app update to let me know the new world order to glorify.","spans":[{"start":22,"end":24,"text":"G1","rank":4,"label":"PRODUCT","score":0.0040630766,"source":"core_web_sm","input_hash":1546083597,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.0040630766},"_input_hash":1546083597,"_task_hash":1802960802,"answer":"accept"} +{"text":"That is because the black market is obviously not regulated, and there are no more penalties for the guy who plays WoW and sells drugs than the dealer slinging meth to kids.","spans":[{"start":115,"end":118,"text":"WoW","rank":0,"label":"PRODUCT","score":0.9952116851,"source":"core_web_sm","input_hash":-65182743,"answer":"accept"}],"meta":{"section":"gaming","score":0.9952116851},"_input_hash":-65182743,"_task_hash":-1895550364,"answer":"accept"} +{"text":"item #2 isn't in question.","spans":[{"start":5,"end":7,"text":"#2","rank":0,"label":"PRODUCT","score":0.9729023884,"source":"core_web_sm","input_hash":399251515,"answer":"reject"}],"meta":{"section":"WTF","score":0.9729023884},"_input_hash":399251515,"_task_hash":-1047551979,"answer":"reject"} +{"text":"Like usual I told them to ask the manager but this time manager said fuck off.","spans":[{"start":26,"end":29,"text":"ask","rank":0,"label":"PRODUCT","score":0.7848971028,"source":"core_web_sm","input_hash":-1713847033,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.7848971028},"_input_hash":-1713847033,"_task_hash":1962385048,"answer":"reject"} +{"text":"In season 5, Episode 2 titled Darmok, Picard has to deal with an alien culture in which their primary mode of communication is through metaphor.","spans":[{"start":30,"end":36,"text":"Darmok","rank":0,"label":"PRODUCT","score":0.9999971442,"source":"core_web_sm","input_hash":253766628,"answer":"reject"}],"meta":{"section":"DoesAnybodyElse","score":0.9999971442},"_input_hash":253766628,"_task_hash":-191739379,"answer":"reject"} +{"text":"(and this is an Enterprise crew member talking) \"","spans":[{"start":16,"end":26,"text":"Enterprise","rank":3,"label":"PRODUCT","score":0.0112906309,"source":"core_web_sm","input_hash":-1303899554,"answer":"reject"}],"meta":{"section":"DoesAnybodyElse","score":0.0112906309},"_input_hash":-1303899554,"_task_hash":2025324248,"answer":"reject"} +{"text":"(I must say now it is a particularly annoying episode because of the extremely repetitious use of the phrase \"Darmok and Jilad at Tenagra)","spans":[{"start":130,"end":137,"text":"Tenagra","rank":1,"label":"PRODUCT","score":0.3019866321,"source":"core_web_sm","input_hash":1136203009,"answer":"reject"},{"start":110,"end":116,"text":"Darmok","rank":0,"label":"PRODUCT","score":0.6590130967,"source":"core_web_sm","input_hash":1136203009,"answer":"reject"}],"meta":{"section":"DoesAnybodyElse","score":0.3019866321},"_input_hash":1136203009,"_task_hash":-1261460460,"answer":"reject"} +{"text":"(I must say now it is a particularly annoying episode because of the extremely repetitious use of the phrase \"Darmok and Jilad at Tenagra)","spans":[{"start":110,"end":116,"text":"Darmok","rank":0,"label":"PRODUCT","score":0.6590130967,"source":"core_web_sm","input_hash":1136203009,"answer":"reject"}],"meta":{"section":"DoesAnybodyElse","score":0.6590130967},"_input_hash":1136203009,"_task_hash":1084860079,"answer":"reject"} +{"text":"I have two machines that are currently running Windows XP, but I plan to upgrade both to Windows 7 in the near future (since I get it for free through my school), so that's four.","spans":[{"start":89,"end":98,"text":"Windows 7","rank":0,"label":"PRODUCT","score":0.9997076322,"source":"core_web_sm","input_hash":-1118161761,"answer":"accept"},{"start":47,"end":57,"text":"Windows XP","rank":0,"label":"PRODUCT","score":0.999707698,"source":"core_web_sm","input_hash":-1118161761,"answer":"accept"}],"meta":{"section":"gaming","score":0.9997076322},"_input_hash":-1118161761,"_task_hash":797278585,"answer":"accept"} +{"text":"I have two machines that are currently running Windows XP, but I plan to upgrade both to Windows 7 in the near future (since I get it for free through my school), so that's four.","spans":[{"start":47,"end":57,"text":"Windows XP","rank":0,"label":"PRODUCT","score":0.999707698,"source":"core_web_sm","input_hash":-1118161761,"answer":"accept"}],"meta":{"section":"gaming","score":0.999707698},"_input_hash":-1118161761,"_task_hash":-1827364635,"answer":"accept"} +{"text":"Torchlight is made by the same people who made Fate, which would make it less of a rip-off and more of a spiritual successor.","spans":[{"start":47,"end":51,"text":"Fate","rank":4,"label":"PRODUCT","score":0.0025279799,"source":"core_web_sm","input_hash":-1472863270,"answer":"reject"}],"meta":{"section":"gaming","score":0.0025279799},"_input_hash":-1472863270,"_task_hash":1081328553,"answer":"reject"} +{"text":">Companies were spamming the government with letters that their dirty AIDS well be shut down because it didn't make anyone money","spans":[{"start":1,"end":10,"text":"Companies","rank":4,"label":"PRODUCT","score":0.1272773345,"source":"core_web_sm","input_hash":-78920774,"answer":"reject"}],"meta":{"section":"WTF","score":0.1272773345},"_input_hash":-78920774,"_task_hash":-1842865653,"answer":"reject"} +{"text":"It is amazing to see how they crammed the G4 in.","spans":[{"start":42,"end":44,"text":"G4","rank":0,"label":"PRODUCT","score":0.7041436073,"source":"core_web_sm","input_hash":-1182938880,"answer":"accept"}],"meta":{"section":"apple","score":0.7041436073},"_input_hash":-1182938880,"_task_hash":543196570,"answer":"accept"} +{"text":"This design was made with the thermal envelope of the G3 in mind (very small heatsink & 20mm fan) and as the G4's got hotter, many many compromises inside were made to keep adding extra heat pipes.","spans":[{"start":54,"end":56,"text":"G3","rank":0,"label":"PRODUCT","score":0.7235602465,"source":"core_web_sm","input_hash":-104401507,"answer":"accept"}],"meta":{"section":"apple","score":0.7235602465},"_input_hash":-104401507,"_task_hash":-724051887,"answer":"accept"} +{"text":"This design was overall too thin at the time, with most people used to the Rugged polycarb G3's or iBooks, though Apple mitigated the paint issue later with better coatings.","spans":[{"start":91,"end":93,"text":"G3","rank":0,"label":"PRODUCT","score":0.9999748664,"source":"core_web_sm","input_hash":-1664382171,"answer":"accept"}],"meta":{"section":"apple","score":0.9999748664},"_input_hash":-1664382171,"_task_hash":1930961594,"answer":"accept"} +{"text":"The design could finally scale down to the consumer portable MacBook, unifying the overall design of the product lines for the first time since the consumer portable model had been conceived by Apple with the release of the drastically different iBook G3 clamshell in 1999.","spans":[{"start":61,"end":68,"text":"MacBook","rank":0,"label":"PRODUCT","score":0.8660578904,"source":"core_web_sm","input_hash":-1165589170,"answer":"accept"},{"start":252,"end":254,"text":"G3","rank":0,"label":"PRODUCT","score":0.8416912357,"source":"core_web_sm","input_hash":-1165589170,"answer":"reject"}],"meta":{"section":"apple","score":0.8660578904},"_input_hash":-1165589170,"_task_hash":473623843,"answer":"accept"} +{"text":"The issues with the discoloration of the MacBook's plastic & HS issues, Sony Battery swelling issues in the MBP, and now the issues now with the 27\" units' GPU's are all things that befall a company straining to try new things and fresh designs is risky - and getting your name dragged through the mud for OEM failures (the Battery, 17\" GPU issues, etc) is the name of the game.","spans":[{"start":41,"end":48,"text":"MacBook","rank":0,"label":"PRODUCT","score":0.9410497998,"source":"core_web_sm","input_hash":-2119376654,"answer":"accept"}],"meta":{"section":"apple","score":0.9410497998},"_input_hash":-2119376654,"_task_hash":-2001349328,"answer":"accept"} +{"text":"Even the iBook 12\" and PowerBook G4 12\" were radically different machines inside.","spans":[{"start":23,"end":32,"text":"PowerBook","rank":1,"label":"PRODUCT","score":0.2041265264,"source":"core_web_sm","input_hash":1234732897,"answer":"reject"}],"meta":{"section":"apple","score":0.2041265264},"_input_hash":1234732897,"_task_hash":-1624543769,"answer":"reject"} +{"text":"The design could finally scale down to the consumer portable MacBook, unifying the overall design of the product lines for the first time since the consumer portable model had been conceived by Apple with the release of the drastically different iBook G3 clamshell in 1999.","spans":[{"start":252,"end":254,"text":"G3","rank":0,"label":"PRODUCT","score":0.8416912357,"source":"core_web_sm","input_hash":-1165589170,"answer":"reject"}],"meta":{"section":"apple","score":0.8416912357},"_input_hash":-1165589170,"_task_hash":237237511,"answer":"reject"} +{"text":";) Let's see how things work out for Russia if they send a rocket to an asteroid.","spans":[{"start":3,"end":6,"text":"Let","rank":6,"label":"PRODUCT","score":0.0039302522,"source":"core_web_sm","input_hash":1775796226,"answer":"reject"}],"meta":{"section":"conspiracy","score":0.0039302522},"_input_hash":1775796226,"_task_hash":642889927,"answer":"reject"} +{"text":"Was messing around on You Tube and found part 1 of 10 of Moon Landing Hoax.","spans":[{"start":22,"end":30,"text":"You Tube","rank":5,"label":"PRODUCT","score":0.0121991063,"source":"core_web_sm","input_hash":-1715454581,"answer":"accept"}],"meta":{"section":"conspiracy","score":0.0121991063},"_input_hash":-1715454581,"_task_hash":-1267186946,"answer":"accept"} +{"text":"\" Thanks for sharing, Achmed.","spans":[{"start":2,"end":8,"text":"Thanks","rank":3,"label":"PRODUCT","score":0.019038858,"source":"core_web_sm","input_hash":927421137,"answer":"reject"}],"meta":{"section":"worldnews","score":0.019038858},"_input_hash":927421137,"_task_hash":2099638212,"answer":"reject"} +{"text":"Understood :)","spans":[{"start":0,"end":10,"text":"Understood","rank":1,"label":"PRODUCT","score":0.154891811,"source":"core_web_sm","input_hash":-1499734431,"answer":"reject"}],"meta":{"section":"MensRights","score":0.154891811},"_input_hash":-1499734431,"_task_hash":-1194133403,"answer":"reject"} +{"text":"Reddit!","spans":[{"start":0,"end":6,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9989950359,"source":"core_web_sm","input_hash":-143087058,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9989950359},"_input_hash":-143087058,"_task_hash":1806838855,"answer":"accept"} +{"text":"*FUCK THAT***.","spans":[{"start":1,"end":5,"text":"FUCK","rank":1,"label":"PRODUCT","score":0.0059080791,"source":"core_web_sm","input_hash":222651342,"answer":"reject"}],"meta":{"section":"promos","score":0.0059080791},"_input_hash":222651342,"_task_hash":-512292260,"answer":"reject"} +{"text":"Do not land on Europa.....","spans":[{"start":15,"end":21,"text":"Europa","rank":0,"label":"PRODUCT","score":0.6081966005,"source":"core_web_sm","input_hash":-1108703407,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.6081966005},"_input_hash":-1108703407,"_task_hash":908023143,"answer":"reject"} +{"text":"and there are no more penalties for the guy who plays WoW and sells drugs than the dealer slinging meth to kids.","spans":[{"start":54,"end":57,"text":"WoW","rank":0,"label":"PRODUCT","score":0.7456453125,"source":"core_web_sm","input_hash":-1944863274,"answer":"accept"}],"meta":{"section":"gaming","score":0.7456453125},"_input_hash":-1944863274,"_task_hash":-2000475539,"answer":"accept"} +{"text":"It's going to be included with the release of Half Life: Episode 3, as well as Starcraft II and Diablo III.","spans":[{"start":96,"end":102,"text":"Diablo","rank":0,"label":"PRODUCT","score":0.9285263123,"source":"core_web_sm","input_hash":149179751,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.9285263123},"_input_hash":149179751,"_task_hash":1681959735,"answer":"reject"} +{"text":"My \"NYE\" celebrations are going to involve a game of Uno with my friends at 2am when they get out of work... Which we could do on any day of the year.","spans":[{"start":53,"end":56,"text":"Uno","rank":6,"label":"PRODUCT","score":0.0041266726,"source":"core_web_sm","input_hash":-1348693368,"answer":"accept"}],"meta":{"section":"DoesAnybodyElse","score":0.0041266726},"_input_hash":-1348693368,"_task_hash":1860331069,"answer":"accept"} +{"text":"And it's TWENTY GODDAMN TEN, so why not.","spans":[{"start":9,"end":27,"text":"TWENTY GODDAMN TEN","rank":2,"label":"PRODUCT","score":0.0540379303,"source":"core_web_sm","input_hash":1063173905,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0540379303},"_input_hash":1063173905,"_task_hash":762308368,"answer":"reject"} +{"text":"Yeah 60% O2 at 1 atmosphere would indeed be explosive (cross reference: Apollo 1), but 60% O2 at 1/3 atmosphere would burn just like 20% at 1 atmosphere.","spans":[{"start":91,"end":93,"text":"O2","rank":0,"label":"PRODUCT","score":0.9985256592,"source":"core_web_sm","input_hash":1894655988,"answer":"reject"}],"meta":{"section":"technology","score":0.9985256592},"_input_hash":1894655988,"_task_hash":710698304,"answer":"reject"} +{"text":"I was watching Star Trek and missed it by 2 minutes :(","spans":[{"start":15,"end":24,"text":"Star Trek","rank":4,"label":"PRODUCT","score":0.0134357979,"source":"core_web_sm","input_hash":1921299168,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0134357979},"_input_hash":1921299168,"_task_hash":-1318359195,"answer":"reject"} +{"text":"I remember when I was a freshman that about a third of the class failed Calc 1.","spans":[{"start":72,"end":78,"text":"Calc 1","rank":8,"label":"PRODUCT","score":0.0152972336,"source":"core_web_sm","input_hash":1483903292,"answer":"reject"}],"meta":{"section":"math","score":0.0152972336},"_input_hash":1483903292,"_task_hash":-529450832,"answer":"reject"} +{"text":"so it's no good for doming people when Banefire and Fireball are around.","spans":[{"start":52,"end":60,"text":"Fireball","rank":1,"label":"PRODUCT","score":0.0716083607,"source":"core_web_sm","input_hash":1982355130,"answer":"reject"}],"meta":{"section":"magicTCG","score":0.0716083607},"_input_hash":1982355130,"_task_hash":940549433,"answer":"reject"} +{"text":"I always knew Fire Man was trying to smoke up Megaman","spans":[{"start":14,"end":22,"text":"Fire Man","rank":0,"label":"PRODUCT","score":0.8651212362,"source":"core_web_sm","input_hash":222990153,"answer":"reject"}],"meta":{"section":"trees","score":0.8651212362},"_input_hash":222990153,"_task_hash":-1773359524,"answer":"reject"} +{"text":"They think it is a God-given right to be free and that there is never any payment that comes due.","spans":[{"start":19,"end":22,"text":"God","rank":2,"label":"PRODUCT","score":0.2174488485,"source":"core_web_sm","input_hash":422450336,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.2174488485},"_input_hash":422450336,"_task_hash":-938798574,"answer":"reject"} +{"text":"Usually have it opened on my 2nd monitor unless I need to Remote into a server or something.","spans":[{"start":58,"end":64,"text":"Remote","rank":0,"label":"PRODUCT","score":0.7558403048,"source":"core_web_sm","input_hash":-1339221014,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.7558403048},"_input_hash":-1339221014,"_task_hash":-360925698,"answer":"reject"} +{"text":"Hyperion portable, made in Canada I think, two 5 1/4 inch drives, 256k mamory and Lotus 123 1.A","spans":[{"start":66,"end":70,"text":"256k","rank":1,"label":"PRODUCT","score":0.1208132821,"source":"core_web_sm","input_hash":-1208691179,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.1208132821},"_input_hash":-1208691179,"_task_hash":812161439,"answer":"reject"} +{"text":"Post on Reddit more.","spans":[{"start":8,"end":14,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.7978556076,"source":"core_web_sm","input_hash":-1555047594,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.7978556076},"_input_hash":-1555047594,"_task_hash":271550489,"answer":"accept"} +{"text":"New ad: \"If Tiger Woods had used AT&T, he wouldn't have had to worry about calls from his girlfriends.\"","spans":[{"start":18,"end":23,"text":"Woods","rank":3,"label":"PRODUCT","score":0.081793924,"source":"core_web_sm","input_hash":-193999350,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.081793924},"_input_hash":-193999350,"_task_hash":-1156105099,"answer":"reject"} +{"text":"I'm pretty sure they're already suing someone for using the Google logo to market this stuff.","spans":[{"start":60,"end":66,"text":"Google","rank":0,"label":"PRODUCT","score":0.9235816203,"source":"core_web_sm","input_hash":-117261922,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.9235816203},"_input_hash":-117261922,"_task_hash":1163739533,"answer":"accept"} +{"text":"The only weapons Google has is information and knowledge.","spans":[{"start":17,"end":23,"text":"Google","rank":0,"label":"PRODUCT","score":0.9959990668,"source":"core_web_sm","input_hash":1752400032,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9959990668},"_input_hash":1752400032,"_task_hash":-1082190085,"answer":"accept"} +{"text":"To rephrase your question, \"Why the fuck are *you* still allowed to open your yap here on Reddit?\"","spans":[{"start":90,"end":96,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9591720833,"source":"core_web_sm","input_hash":-1261668108,"answer":"accept"}],"meta":{"section":"WTF","score":0.9591720833},"_input_hash":-1261668108,"_task_hash":-685968029,"answer":"accept"} +{"text":"All 10 seasons of SG1 are on hulu, that should keep you busy for a while.","spans":[{"start":4,"end":6,"text":"10","rank":2,"label":"PRODUCT","score":0.0024471775,"source":"core_web_sm","input_hash":132451124,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0024471775},"_input_hash":132451124,"_task_hash":-156255140,"answer":"reject"} +{"text":"there is however a customer service number 1-866-995-9812 checked Google, found this: http://www.complaintsboard.com/complaints/google-profits-c220662.html","spans":[{"start":66,"end":72,"text":"Google","rank":0,"label":"PRODUCT","score":0.9952182924,"source":"core_web_sm","input_hash":-1082455953,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.9952182924},"_input_hash":-1082455953,"_task_hash":-1655020589,"answer":"accept"} +{"text":"but I could just not understand why No Country was so popular.","spans":[{"start":39,"end":46,"text":"Country","rank":2,"label":"PRODUCT","score":0.0154293725,"source":"core_web_sm","input_hash":-1247380054,"answer":"reject"}],"meta":{"section":"entertainment","score":0.0154293725},"_input_hash":-1247380054,"_task_hash":267003040,"answer":"reject"} +{"text":"Google \"bitchy beauty\".","spans":[{"start":0,"end":6,"text":"Google","rank":0,"label":"PRODUCT","score":0.9834864378,"source":"core_web_sm","input_hash":582470241,"answer":"ignore"}],"meta":{"section":"IAmA","score":0.9834864378},"_input_hash":582470241,"_task_hash":384710020,"answer":"ignore"} +{"text":"I have the Merkur Classic.","spans":[{"start":18,"end":25,"text":"Classic","rank":0,"label":"PRODUCT","score":0.9998940692,"source":"core_web_sm","input_hash":-2045683685,"answer":"reject"}],"meta":{"section":"IAmA","score":0.9998940692},"_input_hash":-2045683685,"_task_hash":2092481273,"answer":"reject"} +{"text":"So I upvoted you 100%. ...","spans":[{"start":17,"end":21,"text":"100%","rank":3,"label":"PRODUCT","score":0.0112471654,"source":"core_web_sm","input_hash":-1236149540,"answer":"reject"}],"meta":{"section":"WTF","score":0.0112471654},"_input_hash":-1236149540,"_task_hash":-1599542014,"answer":"reject"} +{"text":"Also you say that iterations are capped at 1000, but they're capped at 100 for 1+2+3+etc","spans":[{"start":83,"end":88,"text":"3+etc","rank":8,"label":"PRODUCT","score":0.0205933485,"source":"core_web_sm","input_hash":2036822508,"answer":"reject"}],"meta":{"section":"programming","score":0.0205933485},"_input_hash":2036822508,"_task_hash":-1026435137,"answer":"reject"} +{"text":"Well over half of Reddit wanted him dead last night, and you know it.","spans":[{"start":18,"end":24,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9998096199,"source":"core_web_sm","input_hash":2019134470,"answer":"accept"}],"meta":{"section":"politics","score":0.9998096199},"_input_hash":2019134470,"_task_hash":1663078876,"answer":"accept"} +{"text":"Until Faygo machines can sling cans we'll be alright","spans":[{"start":6,"end":11,"text":"Faygo","rank":2,"label":"PRODUCT","score":0.1267422384,"source":"core_web_sm","input_hash":-1098534494,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.1267422384},"_input_hash":-1098534494,"_task_hash":649785706,"answer":"accept"} +{"text":"I dunno, Marduk?","spans":[{"start":9,"end":15,"text":"Marduk","rank":0,"label":"PRODUCT","score":0.9919507428,"source":"core_web_sm","input_hash":-2099130449,"answer":"reject"}],"meta":{"section":"atheism","score":0.9919507428},"_input_hash":-2099130449,"_task_hash":982995348,"answer":"reject"} +{"text":"Actually, I'm going to throw an honorable mention in for \"Prey\" as far as creativity and immersion goes.","spans":[{"start":58,"end":62,"text":"Prey","rank":0,"label":"PRODUCT","score":0.8878562587,"source":"core_web_sm","input_hash":-1332734858,"answer":"reject"}],"meta":{"section":"gaming","score":0.8878562587},"_input_hash":-1332734858,"_task_hash":-1337793188,"answer":"reject"} +{"text":"Reddit still exists!","spans":[{"start":0,"end":6,"text":"Reddit","rank":1,"label":"PRODUCT","score":0.2935033345,"source":"core_web_sm","input_hash":79035529,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.2935033345},"_input_hash":79035529,"_task_hash":-2078098467,"answer":"accept"} +{"text":"No mention of the only Matrix film yet?","spans":[{"start":23,"end":29,"text":"Matrix","rank":0,"label":"PRODUCT","score":0.6562540973,"source":"core_web_sm","input_hash":-1814713314,"answer":"reject"}],"meta":{"section":"movies","score":0.6562540973},"_input_hash":-1814713314,"_task_hash":891339260,"answer":"reject"} +{"text":"But does that cat support Windows 2000?","spans":[{"start":26,"end":38,"text":"Windows 2000","rank":0,"label":"PRODUCT","score":0.9383364197,"source":"core_web_sm","input_hash":418786695,"answer":"accept"}],"meta":{"section":"pics","score":0.9383364197},"_input_hash":418786695,"_task_hash":-1152094945,"answer":"accept"} +{"text":"Expect a difference between operating systems to have more of an impact to assembly programs than with a higher level programming language, especially if you're going to learn x86 assembly on a \"legacy-free\" x86 system, like modern Mac OS X.","spans":[{"start":176,"end":179,"text":"x86","rank":2,"label":"PRODUCT","score":0.0440546947,"source":"core_web_sm","input_hash":1911511017,"answer":"reject"}],"meta":{"section":"programming","score":0.0440546947},"_input_hash":1911511017,"_task_hash":2076967251,"answer":"reject"} +{"text":">Imagine *young* people who are *noobs*, have *adopted the most effectively marketed* view of the world, would like to run everything including you and would LOVE to shove their beliefs down your throat.","spans":[{"start":158,"end":162,"text":"LOVE","rank":1,"label":"PRODUCT","score":0.0982436104,"source":"core_web_sm","input_hash":1213172308,"answer":"reject"}],"meta":{"section":"WTF","score":0.0982436104},"_input_hash":1213172308,"_task_hash":409942528,"answer":"reject"} +{"text":"I don't think that the Taliban are any more \"Islamic\" than Zionists are \"Jewish\" or the Crusaders were \"Christian\".","spans":[{"start":88,"end":97,"text":"Crusaders","rank":0,"label":"PRODUCT","score":0.9776915003,"source":"core_web_sm","input_hash":-862577460,"answer":"reject"}],"meta":{"section":"worldnews","score":0.9776915003},"_input_hash":-862577460,"_task_hash":-936574443,"answer":"reject"} +{"text":"deep fry at 325F,","spans":[{"start":12,"end":16,"text":"325F","rank":0,"label":"PRODUCT","score":0.9940917057,"source":"core_web_sm","input_hash":-47827255,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.9940917057},"_input_hash":-47827255,"_task_hash":670182356,"answer":"reject"} +{"text":"let cool a bit, fry again at 375F, season, enjoy.","spans":[{"start":29,"end":33,"text":"375F","rank":0,"label":"PRODUCT","score":0.9968532359,"source":"core_web_sm","input_hash":15006467,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.9968532359},"_input_hash":15006467,"_task_hash":-1618968488,"answer":"reject"} +{"text":"Chabot Observatory is good place in the Berkeley hills.","spans":[{"start":7,"end":18,"text":"Observatory","rank":2,"label":"PRODUCT","score":0.0969198585,"source":"core_web_sm","input_hash":-9896366,"answer":"reject"}],"meta":{"section":"bayarea","score":0.0969198585},"_input_hash":-9896366,"_task_hash":1805663021,"answer":"reject"} +{"text":"If not, wish 'em one on behalf of Reddit when you get reconnected!","spans":[{"start":34,"end":40,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.999320782,"source":"core_web_sm","input_hash":779626757,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.999320782},"_input_hash":779626757,"_task_hash":67547543,"answer":"accept"} +{"text":"Or on my behalf if Reddit is feeling reticent.","spans":[{"start":19,"end":25,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9983231712,"source":"core_web_sm","input_hash":827914620,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9983231712},"_input_hash":827914620,"_task_hash":496891158,"answer":"accept"} +{"text":"the peak of Mount Diablo has great views.","spans":[{"start":12,"end":24,"text":"Mount Diablo","rank":0,"label":"PRODUCT","score":0.6346386238,"source":"core_web_sm","input_hash":-1308383450,"answer":"reject"}],"meta":{"section":"bayarea","score":0.6346386238},"_input_hash":-1308383450,"_task_hash":1418323552,"answer":"reject"} +{"text":"so I reach up and drop a Valium in its water.","spans":[{"start":25,"end":31,"text":"Valium","rank":5,"label":"PRODUCT","score":0.0056987456,"source":"core_web_sm","input_hash":-18709893,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.0056987456},"_input_hash":-18709893,"_task_hash":1280459673,"answer":"accept"} +{"text":"The only connection with Conde Nast is that they bought it *","spans":[{"start":25,"end":35,"text":"Conde Nast","rank":1,"label":"PRODUCT","score":0.2193010503,"source":"core_web_sm","input_hash":199344619,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.2193010503},"_input_hash":199344619,"_task_hash":574862780,"answer":"reject"} +{"text":"The cost of San Francisco's private patrol specials is $25-30/hour, compared to $58/hour for an off-duty police officer.[1]","spans":[{"start":55,"end":56,"text":"$","rank":4,"label":"PRODUCT","score":0.0116627243,"source":"core_web_sm","input_hash":365046846,"answer":"reject"}],"meta":{"section":"politics","score":0.0116627243},"_input_hash":365046846,"_task_hash":533671202,"answer":"reject"} +{"text":"Nothing, Friends are people who will let you down in the long run, forget about them.","spans":[{"start":9,"end":16,"text":"Friends","rank":2,"label":"PRODUCT","score":0.0207182542,"source":"core_web_sm","input_hash":-1750509280,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0207182542},"_input_hash":-1750509280,"_task_hash":1356345244,"answer":"reject"} +{"text":"He is picking up C# and Flash AS3.","spans":[{"start":18,"end":19,"text":"#","rank":0,"label":"PRODUCT","score":0.8542726284,"source":"core_web_sm","input_hash":-1198286850,"answer":"reject"}],"meta":{"section":"self","score":0.8542726284},"_input_hash":-1198286850,"_task_hash":1376562252,"answer":"reject"} +{"text":"Isn't that the definition of Judaism?","spans":[{"start":29,"end":36,"text":"Judaism","rank":2,"label":"PRODUCT","score":0.0278874932,"source":"core_web_sm","input_hash":1246593182,"answer":"reject"}],"meta":{"section":"islam","score":0.0278874932},"_input_hash":1246593182,"_task_hash":842995721,"answer":"reject"} +{"text":"I have a video iPod Gen 5.","spans":[{"start":20,"end":25,"text":"Gen 5","rank":0,"label":"PRODUCT","score":0.9781071854,"source":"core_web_sm","input_hash":-1753634193,"answer":"reject"}],"meta":{"section":"apple","score":0.9781071854},"_input_hash":-1753634193,"_task_hash":-1064328272,"answer":"reject"} +{"text":"I can't tell if you're being ironic by misspelling \"grammar.\"","spans":[{"start":52,"end":59,"text":"grammar","rank":6,"label":"PRODUCT","score":0.0303695293,"source":"core_web_sm","input_hash":-482673147,"answer":"reject"}],"meta":{"section":"IAmA","score":0.0303695293},"_input_hash":-482673147,"_task_hash":-1734294582,"answer":"reject"} +{"text":"Last I heard she's British F1 driver Jenson Button's girl friend...","spans":[{"start":19,"end":29,"text":"British F1","rank":0,"label":"PRODUCT","score":0.791656535,"source":"core_web_sm","input_hash":88867322,"answer":"reject"}],"meta":{"section":"nsfw","score":0.791656535},"_input_hash":88867322,"_task_hash":-680052097,"answer":"reject"} +{"text":"I had a little chat w/ cleverbot, very smart but there were moments I said WTF cleverbot.","spans":[{"start":20,"end":22,"text":"w/","rank":2,"label":"PRODUCT","score":0.1258743439,"source":"core_web_sm","input_hash":876257854,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.1258743439},"_input_hash":876257854,"_task_hash":-391845991,"answer":"reject"} +{"text":"France's prewar population= 40,000,000.","spans":[{"start":16,"end":38,"text":"population= 40,000,000","rank":0,"label":"PRODUCT","score":0.8286901832,"source":"core_web_sm","input_hash":2125998470,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.8286901832},"_input_hash":2125998470,"_task_hash":-351397266,"answer":"reject"} +{"text":":- iteration (for each a ((a satisfies b)? a: nil)) @with","spans":[{"start":25,"end":26,"text":"(","rank":3,"label":"PRODUCT","score":0.0465569558,"source":"core_web_sm","input_hash":1966721413,"answer":"reject"}],"meta":{"section":"programming","score":0.0465569558},"_input_hash":1966721413,"_task_hash":-1693822969,"answer":"reject"} +{"text":"(@a) :- some a @xa where no other","spans":[{"start":15,"end":18,"text":"@xa","rank":1,"label":"PRODUCT","score":0.3618890778,"source":"core_web_sm","input_hash":545469861,"answer":"reject"}],"meta":{"section":"programming","score":0.3618890778},"_input_hash":545469861,"_task_hash":-651358755,"answer":"reject"} +{"text":";) I guess 'An it harm none do what ye will' is appropriate here.","spans":[{"start":36,"end":38,"text":"ye","rank":1,"label":"PRODUCT","score":0.1176761895,"source":"core_web_sm","input_hash":-740660057,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.1176761895},"_input_hash":-740660057,"_task_hash":-1348027733,"answer":"reject"} +{"text":"The guy who made it was responsible for some of the Wizardry games (6,7 and 8","spans":[{"start":68,"end":71,"text":"6,7","rank":1,"label":"PRODUCT","score":0.3134105132,"source":"core_web_sm","input_hash":-1586311207,"answer":"reject"}],"meta":{"section":"gaming","score":0.3134105132},"_input_hash":-1586311207,"_task_hash":66338432,"answer":"reject"} +{"text":"Just click the I'm Feeling Lucky button with no text entered in the search box.","spans":[{"start":27,"end":32,"text":"Lucky","rank":1,"label":"PRODUCT","score":0.0066645245,"source":"core_web_sm","input_hash":1760635534,"answer":"reject"}],"meta":{"section":"pics","score":0.0066645245},"_input_hash":1760635534,"_task_hash":-830389282,"answer":"reject"} +{"text":"why they spend 200 million dollars on transformers 2.","spans":[{"start":27,"end":34,"text":"dollars","rank":2,"label":"PRODUCT","score":0.0372076314,"source":"core_web_sm","input_hash":64136360,"answer":"reject"}],"meta":{"section":"entertainment","score":0.0372076314},"_input_hash":64136360,"_task_hash":713003863,"answer":"reject"} +{"text":"Vibrate when outside and silent when at home... unless I am expecting a call.","spans":[{"start":0,"end":7,"text":"Vibrate","rank":0,"label":"PRODUCT","score":0.7881890591,"source":"core_web_sm","input_hash":-2033835234,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.7881890591},"_input_hash":-2033835234,"_task_hash":-1207015566,"answer":"reject"} +{"text":"To spend $$$$ on lawsuits is idiotic.","spans":[{"start":12,"end":13,"text":"$","rank":1,"label":"PRODUCT","score":0.0432900616,"source":"core_web_sm","input_hash":-1330465387,"answer":"reject"}],"meta":{"section":"politics","score":0.0432900616},"_input_hash":-1330465387,"_task_hash":-1190598164,"answer":"reject"} +{"text":"Perhaps start with Hoover.","spans":[{"start":19,"end":25,"text":"Hoover","rank":1,"label":"PRODUCT","score":0.0352284248,"source":"core_web_sm","input_hash":2117726636,"answer":"reject"}],"meta":{"section":"WTF","score":0.0352284248},"_input_hash":2117726636,"_task_hash":449357019,"answer":"reject"} +{"text":"The bud can cherry just like a normal pipe, but not like a joint made with rolling papers.","spans":[{"start":4,"end":7,"text":"bud","rank":1,"label":"PRODUCT","score":0.1075699523,"source":"core_web_sm","input_hash":-1918687526,"answer":"reject"}],"meta":{"section":"trees","score":0.1075699523},"_input_hash":-1918687526,"_task_hash":683876181,"answer":"reject"} +{"text":"He's got nothing better to do since he landed Blue Thunder in front of that train...might as well go into hibernation for a trip to Jupiter.","spans":[{"start":46,"end":58,"text":"Blue Thunder","rank":0,"label":"PRODUCT","score":0.7943713481,"source":"core_web_sm","input_hash":-502250027,"answer":"reject"}],"meta":{"section":"scifi","score":0.7943713481},"_input_hash":-502250027,"_task_hash":-982068427,"answer":"reject"} +{"text":"Concerning KeyserSosa's reaction, I've never been so impressed by reddit.","spans":[{"start":11,"end":21,"text":"KeyserSosa","rank":1,"label":"PRODUCT","score":0.0444534839,"source":"core_web_sm","input_hash":-1212577735,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0444534839},"_input_hash":-1212577735,"_task_hash":1907166094,"answer":"reject"} +{"text":"Not EST, is GMT","spans":[{"start":4,"end":7,"text":"EST","rank":2,"label":"PRODUCT","score":0.0185873817,"source":"core_web_sm","input_hash":1261733745,"answer":"reject"}],"meta":{"section":"photography","score":0.0185873817},"_input_hash":1261733745,"_task_hash":-167867890,"answer":"reject"} +{"text":"but I heard that all of Reddit is just one fat guy in a basement below a bar that never closes his tab and across the street from a store that has every type of breakfast cereal ever made.","spans":[{"start":24,"end":30,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9704891254,"source":"core_web_sm","input_hash":394071883,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.9704891254},"_input_hash":394071883,"_task_hash":-127956151,"answer":"accept"} +{"text":"* Sahada(testimony of faith): \"","spans":[{"start":2,"end":18,"text":"Sahada(testimony","rank":1,"label":"PRODUCT","score":0.0547804729,"source":"core_web_sm","input_hash":193129449,"answer":"reject"}],"meta":{"section":"islam","score":0.0547804729},"_input_hash":193129449,"_task_hash":-2088375841,"answer":"reject"} +{"text":"This whole Karma thing is the worst thing about Reddit.","spans":[{"start":48,"end":54,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9573910667,"source":"core_web_sm","input_hash":-519116378,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9573910667},"_input_hash":-519116378,"_task_hash":-527558505,"answer":"accept"} +{"text":"I demand Time Warp to find this man.","spans":[{"start":14,"end":18,"text":"Warp","rank":1,"label":"PRODUCT","score":0.195879725,"source":"core_web_sm","input_hash":-815888564,"answer":"reject"}],"meta":{"section":"WTF","score":0.195879725},"_input_hash":-815888564,"_task_hash":-420310137,"answer":"reject"} +{"text":"And occasionally Diablo 2 and Starcraft.","spans":[{"start":17,"end":25,"text":"Diablo 2","rank":0,"label":"PRODUCT","score":0.9999976592,"source":"core_web_sm","input_hash":1407301763,"answer":"accept"}],"meta":{"section":"gaming","score":0.9999976592},"_input_hash":1407301763,"_task_hash":-1760574066,"answer":"accept"} +{"text":"Baldur's Gate?","spans":[{"start":9,"end":13,"text":"Gate","rank":0,"label":"PRODUCT","score":0.4979911279,"source":"core_web_sm","input_hash":571111512,"answer":"reject"}],"meta":{"section":"gaming","score":0.4979911279},"_input_hash":571111512,"_task_hash":65621282,"answer":"reject"} +{"text":"> as long as it doesn't harm others Kaboom!","spans":[{"start":36,"end":42,"text":"Kaboom","rank":2,"label":"PRODUCT","score":0.050494026,"source":"core_web_sm","input_hash":-1345327038,"answer":"reject"}],"meta":{"section":"offbeat","score":0.050494026},"_input_hash":-1345327038,"_task_hash":-1099193200,"answer":"reject"} +{"text":"You can add and subtract strings in C?","spans":[{"start":36,"end":37,"text":"C","rank":1,"label":"PRODUCT","score":0.0837225703,"source":"core_web_sm","input_hash":1103396210,"answer":"accept"}],"meta":{"section":"programming","score":0.0837225703},"_input_hash":1103396210,"_task_hash":-1633431279,"answer":"accept"} +{"text":"I think Vista's incompetence generally helped Windows 7 become necessary for Microsoft to save face.","spans":[{"start":46,"end":55,"text":"Windows 7","rank":0,"label":"PRODUCT","score":0.9975383812,"source":"core_web_sm","input_hash":914332645,"answer":"accept"}],"meta":{"section":"WTF","score":0.9975383812},"_input_hash":914332645,"_task_hash":-1665887258,"answer":"accept"} +{"text":"Maybe I'll post something in the Radio Reddit forums?","spans":[{"start":39,"end":45,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.8138439937,"source":"core_web_sm","input_hash":-1595336799,"answer":"accept"}],"meta":{"section":"WeAreTheMusicMakers","score":0.8138439937},"_input_hash":-1595336799,"_task_hash":-1244719974,"answer":"accept"} +{"text":"Up here above the weather, it's just me in a Boeing 747-400 time capsule with two hundred leftover chocolate cake desserts and an upstairs piano bar which I can just walk up to on the spiral staircase and mix myself another little drink.","spans":[{"start":52,"end":59,"text":"747-400","rank":0,"label":"PRODUCT","score":0.9994765027,"source":"core_web_sm","input_hash":910942777,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.9994765027},"_input_hash":910942777,"_task_hash":1148322556,"answer":"reject"} +{"text":"well, it started with a $120 bottle of wine, don't remember which one, I got righteously trashed while there.","spans":[{"start":24,"end":25,"text":"$","rank":0,"label":"PRODUCT","score":0.7429442279,"source":"core_web_sm","input_hash":1181667755,"answer":"reject"}],"meta":{"section":"Frugal","score":0.7429442279},"_input_hash":1181667755,"_task_hash":1290242078,"answer":"reject"} +{"text":"Even Reddit has achievements","spans":[{"start":5,"end":11,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.999945084,"source":"core_web_sm","input_hash":2066889440,"answer":"accept"}],"meta":{"section":"gaming","score":0.999945084},"_input_hash":2066889440,"_task_hash":-1426173930,"answer":"accept"} +{"text":"Though I disagree with your opinion of Google, I agree with your argument.","spans":[{"start":39,"end":45,"text":"Google","rank":0,"label":"PRODUCT","score":0.9952613222,"source":"core_web_sm","input_hash":645039766,"answer":"accept"}],"meta":{"section":"gaming","score":0.9952613222},"_input_hash":645039766,"_task_hash":695563001,"answer":"accept"} +{"text":"Happy new year Reddit !","spans":[{"start":15,"end":21,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9935567182,"source":"core_web_sm","input_hash":-1296109991,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9935567182},"_input_hash":-1296109991,"_task_hash":737150864,"answer":"accept"} +{"text":"For instance, I like Steam.","spans":[{"start":21,"end":26,"text":"Steam","rank":0,"label":"PRODUCT","score":0.9941675038,"source":"core_web_sm","input_hash":-1872790188,"answer":"accept"}],"meta":{"section":"gaming","score":0.9941675038},"_input_hash":-1872790188,"_task_hash":-1667695535,"answer":"accept"} +{"text":"Two Men and a Truck provides moving boxes for hire.","spans":[{"start":14,"end":19,"text":"Truck","rank":0,"label":"PRODUCT","score":0.7506926906,"source":"core_web_sm","input_hash":586890461,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.7506926906},"_input_hash":586890461,"_task_hash":1686169035,"answer":"reject"} +{"text":"The Logic board is usually the failing point (other than HDDs from dropping etc) and those suckers cost SERIOUS money... Paying $875 for a replacement logic board for your Macbook Pro isn't a deal...","spans":[{"start":180,"end":183,"text":"Pro","rank":0,"label":"PRODUCT","score":0.4209650352,"source":"core_web_sm","input_hash":-2003769822,"answer":"reject"}],"meta":{"section":"WTF","score":0.4209650352},"_input_hash":-2003769822,"_task_hash":-819841505,"answer":"reject"} +{"text":"Screensaver gets you a Windows-style screen saver config screen.","spans":[{"start":23,"end":30,"text":"Windows","rank":0,"label":"PRODUCT","score":0.8110708662,"source":"core_web_sm","input_hash":1067624651,"answer":"accept"}],"meta":{"section":"WTF","score":0.8110708662},"_input_hash":1067624651,"_task_hash":-1525519459,"answer":"accept"} +{"text":"In choosing a partner she will be guided by the wishes of her Family (mainly her Mother).","spans":[{"start":62,"end":68,"text":"Family","rank":0,"label":"PRODUCT","score":0.9952115121,"source":"core_web_sm","input_hash":-1815911826,"answer":"reject"}],"meta":{"section":"offbeat","score":0.9952115121},"_input_hash":-1815911826,"_task_hash":-1885661637,"answer":"reject"} +{"text":"The closeness of Family bonds in Thailand mean that requests for ever larger amounts of cash by the Family will be diligently pursued by his partner, whose allegiance is not to him but to her kith and kin!!","spans":[{"start":17,"end":23,"text":"Family","rank":0,"label":"PRODUCT","score":0.8186350173,"source":"core_web_sm","input_hash":-857157440,"answer":"reject"}],"meta":{"section":"offbeat","score":0.8186350173},"_input_hash":-857157440,"_task_hash":463763690,"answer":"reject"} +{"text":"He mentioned somewhere that he could pay $15k out of pocket.","spans":[{"start":41,"end":42,"text":"$","rank":1,"label":"PRODUCT","score":0.003616464,"source":"core_web_sm","input_hash":1300053717,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.003616464},"_input_hash":1300053717,"_task_hash":-1995210717,"answer":"reject"} +{"text":"We have the best quality ink cartridges and laser toner cartrides for Dell printers at the lowest prices.","spans":[{"start":70,"end":74,"text":"Dell","rank":1,"label":"PRODUCT","score":0.0157816381,"source":"core_web_sm","input_hash":-402785719,"answer":"ignore"}],"meta":{"section":"business","score":0.0157816381},"_input_hash":-402785719,"_task_hash":724923815,"answer":"ignore"} +{"text":"All our Dell printer supplies have a full, one-year warranty against defects in materials and workmanship and we provide a 100% satisfaction guarantee.","spans":[{"start":8,"end":12,"text":"Dell","rank":0,"label":"PRODUCT","score":0.927949631,"source":"core_web_sm","input_hash":-1769106767,"answer":"ignore"}],"meta":{"section":"business","score":0.927949631},"_input_hash":-1769106767,"_task_hash":-328560412,"answer":"ignore"} +{"text":"They're everyone's favorite former Soviet ethnic minority just following the Tartars.","spans":[{"start":77,"end":84,"text":"Tartars","rank":1,"label":"PRODUCT","score":0.1651895559,"source":"core_web_sm","input_hash":-1157245297,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.1651895559},"_input_hash":-1157245297,"_task_hash":-1701119260,"answer":"reject"} +{"text":"The biggest obstacle of which I'm aware is that Mars lacks a solar-wind-deflecting magnetic field, without which the place is uninhabitable regardless of the composition of its atmosphere.","spans":[{"start":48,"end":52,"text":"Mars","rank":1,"label":"PRODUCT","score":0.3558098974,"source":"core_web_sm","input_hash":-834263015,"answer":"reject"}],"meta":{"section":"technology","score":0.3558098974},"_input_hash":-834263015,"_task_hash":303294615,"answer":"reject"} +{"text":"my friend had to pay $850 out of pocket.","spans":[{"start":21,"end":22,"text":"$","rank":1,"label":"PRODUCT","score":0.0277792188,"source":"core_web_sm","input_hash":-122395084,"answer":"reject"}],"meta":{"section":"IAmA","score":0.0277792188},"_input_hash":-122395084,"_task_hash":1972814656,"answer":"reject"} +{"text":"My compliments to Reddit - that this article is still listed - it tells me Reddit has credibility for supporting unpopular speech in a business environment.","spans":[{"start":18,"end":24,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9999246625,"source":"core_web_sm","input_hash":742508750,"answer":"accept"}],"meta":{"section":"obama","score":0.9999246625},"_input_hash":742508750,"_task_hash":1050022926,"answer":"accept"} +{"text":"Thank you Reddit.","spans":[{"start":10,"end":16,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9999829386,"source":"core_web_sm","input_hash":290440074,"answer":"accept"}],"meta":{"section":"obama","score":0.9999829386},"_input_hash":290440074,"_task_hash":224659369,"answer":"accept"} +{"text":"Ouch, I did that right before the first time I reinstalled Windows 95 when I was 10.","spans":[{"start":59,"end":69,"text":"Windows 95","rank":0,"label":"PRODUCT","score":0.7884872012,"source":"core_web_sm","input_hash":2142039252,"answer":"accept"}],"meta":{"section":"pics","score":0.7884872012},"_input_hash":2142039252,"_task_hash":-1553184208,"answer":"accept"} +{"text":"(since presumably each new account would come with a certain amount of karma), which would defeat the purpose of having a fixed amount of karma and put a greater strain on Reddit servers.","spans":[{"start":172,"end":178,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9719728249,"source":"core_web_sm","input_hash":-1089417928,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9719728249},"_input_hash":-1089417928,"_task_hash":1503935324,"answer":"accept"} +{"text":"Didn't want anyone calling PETA over a cat being buried alive in nostalgia.","spans":[{"start":27,"end":31,"text":"PETA","rank":1,"label":"PRODUCT","score":0.0507843752,"source":"core_web_sm","input_hash":-654484902,"answer":"reject"}],"meta":{"section":"pics","score":0.0507843752},"_input_hash":-654484902,"_task_hash":-1122060987,"answer":"reject"} +{"text":"It would be nothing short of a blessing if Google wiped me out.","spans":[{"start":43,"end":49,"text":"Google","rank":0,"label":"PRODUCT","score":0.997961898,"source":"core_web_sm","input_hash":-1670486106,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.997961898},"_input_hash":-1670486106,"_task_hash":670524814,"answer":"accept"} +{"text":"Does that make me an OverLord or something?","spans":[{"start":21,"end":29,"text":"OverLord","rank":0,"label":"PRODUCT","score":0.4631320409,"source":"core_web_sm","input_hash":-1072895121,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.4631320409},"_input_hash":-1072895121,"_task_hash":-103199376,"answer":"reject"} +{"text":"I own stock in Google.","spans":[{"start":15,"end":21,"text":"Google","rank":0,"label":"PRODUCT","score":0.992271139,"source":"core_web_sm","input_hash":1244322713,"answer":"ignore"}],"meta":{"section":"reddit.com","score":0.992271139},"_input_hash":1244322713,"_task_hash":-353776666,"answer":"ignore"} +{"text":"Sing hardy my Narwhals, sing hardy and loud.","spans":[{"start":14,"end":22,"text":"Narwhals","rank":2,"label":"PRODUCT","score":0.0248056843,"source":"core_web_sm","input_hash":1949265035,"answer":"reject"}],"meta":{"section":"pics","score":0.0248056843},"_input_hash":1949265035,"_task_hash":1006144223,"answer":"reject"} +{"text":"Before the advent of those fucking stupid IEC names (Kibi, Mebi, etc -- like anyone will fucking say those), Gigabyte meant 1024 Megabytes.","spans":[{"start":129,"end":138,"text":"Megabytes","rank":2,"label":"PRODUCT","score":0.1676871036,"source":"core_web_sm","input_hash":-1506351354,"answer":"reject"}],"meta":{"section":"funny","score":0.1676871036},"_input_hash":-1506351354,"_task_hash":2097604901,"answer":"reject"} +{"text":"\u2014by force","spans":[{"start":0,"end":3,"text":"\u2014by","rank":1,"label":"PRODUCT","score":0.118265201,"source":"core_web_sm","input_hash":-1844982322,"answer":"reject"}],"meta":{"section":"politics","score":0.118265201},"_input_hash":-1844982322,"_task_hash":1460018436,"answer":"reject"} +{"text":"I think it is totally contrary to the concept of Reddit.","spans":[{"start":49,"end":55,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9753413923,"source":"core_web_sm","input_hash":-803950265,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9753413923},"_input_hash":-803950265,"_task_hash":1685121429,"answer":"accept"} +{"text":"The only problems we have had are from arrogant owners who think that since it's the woods, it's ok for their Cujo wannabes to run amok and terrorize people and dogs.","spans":[{"start":4,"end":8,"text":"only","rank":4,"label":"PRODUCT","score":0.0741137046,"source":"core_web_sm","input_hash":-1805166896,"answer":"reject"}],"meta":{"section":"dogs","score":0.0741137046},"_input_hash":-1805166896,"_task_hash":-1063661518,"answer":"reject"} +{"text":"It's best when the two are connected (for example, getting feathers in AC2 rewards you an achievement and an ingame unlock).","spans":[{"start":71,"end":74,"text":"AC2","rank":1,"label":"PRODUCT","score":0.3055209022,"source":"core_web_sm","input_hash":1169262475,"answer":"reject"}],"meta":{"section":"gaming","score":0.3055209022},"_input_hash":1169262475,"_task_hash":934519997,"answer":"reject"} +{"text":"What about exponent notation?","spans":[{"start":5,"end":10,"text":"about","rank":8,"label":"PRODUCT","score":0.0029856214,"source":"core_web_sm","input_hash":-693306766,"answer":"reject"}],"meta":{"section":"trees","score":0.0029856214},"_input_hash":-693306766,"_task_hash":1894493946,"answer":"reject"} +{"text":"Happy New Year from Winnipeg Reddit!","spans":[{"start":29,"end":35,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9999843778,"source":"core_web_sm","input_hash":384065163,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9999843778},"_input_hash":384065163,"_task_hash":661414667,"answer":"accept"} +{"text":"The only ones who call are lobbyists.","spans":[{"start":4,"end":8,"text":"only","rank":1,"label":"PRODUCT","score":0.1752083027,"source":"core_web_sm","input_hash":-522289041,"answer":"reject"}],"meta":{"section":"politics","score":0.1752083027},"_input_hash":-522289041,"_task_hash":1022562025,"answer":"reject"} +{"text":"You name one other thing that you can buy at $.10 a piece that will still be exactly the same in 100 years.","spans":[{"start":45,"end":46,"text":"$","rank":0,"label":"PRODUCT","score":0.4252452763,"source":"core_web_sm","input_hash":-284253578,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.4252452763},"_input_hash":-284253578,"_task_hash":368244957,"answer":"reject"} +{"text":"CFW 5.50 Gen D2.","spans":[{"start":13,"end":15,"text":"D2","rank":1,"label":"PRODUCT","score":0.1110640575,"source":"core_web_sm","input_hash":333994072,"answer":"reject"}],"meta":{"section":"gaming","score":0.1110640575},"_input_hash":333994072,"_task_hash":-1451404107,"answer":"reject"} +{"text":"Happy New Years Reddit!","spans":[{"start":16,"end":22,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.8890637496,"source":"core_web_sm","input_hash":1829710505,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.8890637496},"_input_hash":1829710505,"_task_hash":1966878846,"answer":"accept"} +{"text":"100% of racist people are assholes?","spans":[{"start":3,"end":4,"text":"%","rank":9,"label":"PRODUCT","score":0.006865284,"source":"core_web_sm","input_hash":-1018576027,"answer":"reject"}],"meta":{"section":"WTF","score":0.006865284},"_input_hash":-1018576027,"_task_hash":-1959102579,"answer":"reject"} +{"text":"Postal 3 and the Dwarf Fortress update!","spans":[{"start":0,"end":8,"text":"Postal 3","rank":2,"label":"PRODUCT","score":0.1218653091,"source":"core_web_sm","input_hash":-107733883,"answer":"accept"}],"meta":{"section":"gaming","score":0.1218653091},"_input_hash":-107733883,"_task_hash":-1079444277,"answer":"accept"} +{"text":"Might as well have Al Capone run the show.","spans":[{"start":19,"end":28,"text":"Al Capone","rank":0,"label":"PRODUCT","score":0.9076160128,"source":"core_web_sm","input_hash":1217132945,"answer":"reject"}],"meta":{"section":"obama","score":0.9076160128},"_input_hash":1217132945,"_task_hash":1474527894,"answer":"reject"} +{"text":"Drake's Equation (if that is where you're getting these statistics) is nearly worthless at calculating the odds of finding an alien civilization right now.","spans":[{"start":8,"end":16,"text":"Equation","rank":2,"label":"PRODUCT","score":0.0643175108,"source":"core_web_sm","input_hash":-647399782,"answer":"reject"}],"meta":{"section":"science","score":0.0643175108},"_input_hash":-647399782,"_task_hash":-2046649137,"answer":"reject"} +{"text":"After installing securrom, setting up Games for Windows Live, and *then* setting up Rockstar Social Club, I really regretting paying 7.50 for the game.","spans":[{"start":48,"end":60,"text":"Windows Live","rank":0,"label":"PRODUCT","score":0.6364217241,"source":"core_web_sm","input_hash":1024512955,"answer":"accept"}],"meta":{"section":"gaming","score":0.6364217241},"_input_hash":1024512955,"_task_hash":-1401917168,"answer":"accept"} +{"text":"So, come to Reddit, you soulless piece of shit, and look to be understood all you want.","spans":[{"start":12,"end":18,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9986518191,"source":"core_web_sm","input_hash":-1450538974,"answer":"accept"}],"meta":{"section":"IAmA","score":0.9986518191},"_input_hash":-1450538974,"_task_hash":733404408,"answer":"accept"} +{"text":"Ouch, the karma hurts Reddit.","spans":[{"start":22,"end":28,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9997056356,"source":"core_web_sm","input_hash":1739349924,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9997056356},"_input_hash":1739349924,"_task_hash":-1494036741,"answer":"accept"} +{"text":"ICE CWEAM!!!ELEVENTY!!11!","spans":[{"start":4,"end":24,"text":"CWEAM!!!ELEVENTY!!11","rank":0,"label":"PRODUCT","score":0.8578088292,"source":"core_web_sm","input_hash":73566775,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.8578088292},"_input_hash":73566775,"_task_hash":-823896949,"answer":"reject"} +{"text":"The only people that cry about it are the lazy ass cashiers that would rather throw your food away than either use their own brain to figure out a problem or call their manager as instructed.","spans":[{"start":4,"end":8,"text":"only","rank":7,"label":"PRODUCT","score":0.0055898963,"source":"core_web_sm","input_hash":552277706,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0055898963},"_input_hash":552277706,"_task_hash":-2119566803,"answer":"reject"} +{"text":"Then they search on Google...","spans":[{"start":20,"end":26,"text":"Google","rank":1,"label":"PRODUCT","score":0.0566335116,"source":"core_web_sm","input_hash":1551235341,"answer":"accept"}],"meta":{"section":"science","score":0.0566335116},"_input_hash":1551235341,"_task_hash":1499656702,"answer":"accept"} +{"text":"+ iPods were sucky at first but were later updated to be less sucky, if my memory serves me correctly.","spans":[{"start":2,"end":7,"text":"iPods","rank":0,"label":"PRODUCT","score":0.9998231096,"source":"core_web_sm","input_hash":16805047,"answer":"accept"}],"meta":{"section":"apple","score":0.9998231096},"_input_hash":16805047,"_task_hash":1396300149,"answer":"accept"} +{"text":"the iPods were not thought of as a platform until the Gen5's sold in unbelievable quantity - and by then Apple saw the writing on the wall and started work on the iPhone/iPod Touch (","spans":[{"start":4,"end":9,"text":"iPods","rank":3,"label":"PRODUCT","score":0.0712190042,"source":"core_web_sm","input_hash":415210738,"answer":"accept"}],"meta":{"section":"apple","score":0.0712190042},"_input_hash":415210738,"_task_hash":-89567193,"answer":"accept"} +{"text":"Started in ~2005, around the time the 5th","spans":[{"start":38,"end":41,"text":"5th","rank":1,"label":"PRODUCT","score":0.2311161979,"source":"core_web_sm","input_hash":-1204308903,"answer":"reject"}],"meta":{"section":"apple","score":0.2311161979},"_input_hash":-1204308903,"_task_hash":1202212617,"answer":"reject"} +{"text":"Three cheers for watching live streams of Zelda and browsing Reddit on New Years Eve... What a way to spend my birthday and welcome in the new year.","spans":[{"start":61,"end":67,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.7419360725,"source":"core_web_sm","input_hash":2100351305,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.7419360725},"_input_hash":2100351305,"_task_hash":-1103461700,"answer":"accept"} +{"text":"No matter what the maturity level of Reddit is, Lumpy Rash deserves a lingering painful end.","spans":[{"start":37,"end":43,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.8824763608,"source":"core_web_sm","input_hash":-685031347,"answer":"accept"}],"meta":{"section":"politics","score":0.8824763608},"_input_hash":-685031347,"_task_hash":-1632882482,"answer":"accept"} +{"text":"Happy New Year Reddit!","spans":[{"start":15,"end":21,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9740564906,"source":"core_web_sm","input_hash":-599665248,"answer":"accept"},{"start":15,"end":21,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.989030195,"source":"core_web_sm","input_hash":-599665248,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9740564906},"_input_hash":-599665248,"_task_hash":192222078,"answer":"accept"} +{"text":"Omegeto gozaimasu, Reddit!","spans":[{"start":19,"end":25,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.8936717825,"source":"core_web_sm","input_hash":809690591,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.8936717825},"_input_hash":809690591,"_task_hash":-2090568205,"answer":"accept"} +{"text":"Happy New Year Reddit!","spans":[{"start":15,"end":21,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.989030195,"source":"core_web_sm","input_hash":-599665248,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.989030195},"_input_hash":-599665248,"_task_hash":-756913029,"answer":"accept"} +{"text":"Good Cheer to everyone!!","spans":[{"start":5,"end":10,"text":"Cheer","rank":0,"label":"PRODUCT","score":0.9937619388,"source":"core_web_sm","input_hash":-1223725659,"answer":"reject"}],"meta":{"section":"self","score":0.9937619388},"_input_hash":-1223725659,"_task_hash":-611377471,"answer":"reject"} +{"text":"and* you can call R functions from within a variety of other things (even Excel,","spans":[{"start":74,"end":79,"text":"Excel","rank":0,"label":"PRODUCT","score":0.6799139372,"source":"core_web_sm","input_hash":1932463223,"answer":"accept"}],"meta":{"section":"statistics","score":0.6799139372},"_input_hash":1932463223,"_task_hash":-799630474,"answer":"accept"} +{"text":"Ah yes, another evening spent with Reddit and its distinguished counterpart internet-porn.","spans":[{"start":35,"end":41,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9488604117,"source":"core_web_sm","input_hash":404117415,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9488604117},"_input_hash":404117415,"_task_hash":1522264337,"answer":"accept"} +{"text":"everything on my BB is either set to vibrate (calls, sms) or silent (email, BBM) last time","spans":[{"start":76,"end":79,"text":"BBM","rank":2,"label":"PRODUCT","score":0.0350497343,"source":"core_web_sm","input_hash":1939313449,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0350497343},"_input_hash":1939313449,"_task_hash":1403739008,"answer":"reject"} +{"text":"A man should be able to change a diaper, plan an invasion, butcher a hog, conn a ship, design a building, write a sonnet, balance accounts, build a wall, set a bone, comfort the dying, take orders, give orders, cooperate, act alone, solve equations, analyze a new problem, pitch manure, program a computer, cook a tasty meal, fight efficiently, die gallantly.","spans":[{"start":2,"end":5,"text":"man","rank":11,"label":"PRODUCT","score":0.0035815139,"source":"core_web_sm","input_hash":-722621324,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0035815139},"_input_hash":-722621324,"_task_hash":-234720044,"answer":"reject"} +{"text":">:|","spans":[{"start":1,"end":3,"text":":|","rank":4,"label":"PRODUCT","score":0.0093207176,"source":"core_web_sm","input_hash":-682378004,"answer":"reject"}],"meta":{"section":"geek","score":0.0093207176},"_input_hash":-682378004,"_task_hash":946690434,"answer":"reject"} +{"text":"Said I was too depressed to go to a house party when I really was just too anxious and self-conscious about my smelly feet (on account of my aged work shoes) and, also, I'd much rather stay home, drink beers, smoke a little weed, indulge in a few rails, and play Civ 4 for hours.","spans":[{"start":263,"end":268,"text":"Civ 4","rank":0,"label":"PRODUCT","score":0.7099078528,"source":"core_web_sm","input_hash":1622580115,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.7099078528},"_input_hash":1622580115,"_task_hash":-788869547,"answer":"accept"} +{"text":"Happy New Year, Reddit!","spans":[{"start":16,"end":22,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.98494555,"source":"core_web_sm","input_hash":-28790053,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.98494555},"_input_hash":-28790053,"_task_hash":873792303,"answer":"accept"} +{"text":"Happy New Year, Reddit.","spans":[{"start":16,"end":22,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9881151661,"source":"core_web_sm","input_hash":-612384026,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9881151661},"_input_hash":-612384026,"_task_hash":-158331918,"answer":"accept"} +{"text":"How can I change user password under MySQL server when I lost my password?","spans":[{"start":37,"end":42,"text":"MySQL","rank":0,"label":"PRODUCT","score":0.8483192817,"source":"core_web_sm","input_hash":-241303229,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.8483192817},"_input_hash":-241303229,"_task_hash":10638618,"answer":"accept"} +{"text":"\"treating Reddit like 4chan\" pics or it doesn't happen.","spans":[{"start":10,"end":16,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.999697938,"source":"core_web_sm","input_hash":11952205,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.999697938},"_input_hash":11952205,"_task_hash":-899783898,"answer":"accept"} +{"text":"I hear things like Tier-1, 2L, URM, etc being thrown around, and although Google can provide definitions for each, I think it'd be helpful to have a definitive list so that it is centralized","spans":[{"start":74,"end":80,"text":"Google","rank":1,"label":"PRODUCT","score":0.1682893525,"source":"core_web_sm","input_hash":1373649011,"answer":"accept"}],"meta":{"section":"IAmA","score":0.1682893525},"_input_hash":1373649011,"_task_hash":914539459,"answer":"accept"} +{"text":"Plus I live in the country (which I actually really like, I love being surrounded by nature) and can NEVER sleep comfortably on the floor of someone elses house when I can't make it home and with my G2 license","spans":[{"start":199,"end":201,"text":"G2","rank":0,"label":"PRODUCT","score":0.8654632031,"source":"core_web_sm","input_hash":-1376186935,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.8654632031},"_input_hash":-1376186935,"_task_hash":-1789013464,"answer":"reject"} +{"text":"\"Here's the game, as articulated by Reddit user quicksilver 5:\"","spans":[{"start":36,"end":42,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9119369105,"source":"core_web_sm","input_hash":449763210,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9119369105},"_input_hash":449763210,"_task_hash":1257022917,"answer":"accept"} +{"text":"is that most people can't type coherently once they are drunk enough to think about logging onto Reddit.","spans":[{"start":97,"end":103,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9421538862,"source":"core_web_sm","input_hash":182231782,"answer":"accept"}],"meta":{"section":"drunk","score":0.9421538862},"_input_hash":182231782,"_task_hash":-266441632,"answer":"accept"} +{"text":"Happy new year Reddit! I love you!","spans":[{"start":15,"end":21,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9997109066,"source":"core_web_sm","input_hash":-182659484,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9997109066},"_input_hash":-182659484,"_task_hash":-156079675,"answer":"accept"} +{"text":"http://www.youtube.com/watch?v=TggHtINGIyc and it says Girl Talk did","spans":[{"start":55,"end":64,"text":"Girl Talk","rank":0,"label":"PRODUCT","score":0.9478687554,"source":"core_web_sm","input_hash":-1161041376,"answer":"reject"}],"meta":{"section":"WTF","score":0.9478687554},"_input_hash":-1161041376,"_task_hash":1946982722,"answer":"reject"} +{"text":"I think we should use Roman Numerals.","spans":[{"start":22,"end":36,"text":"Roman Numerals","rank":2,"label":"PRODUCT","score":0.0620832248,"source":"core_web_sm","input_hash":-682547303,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0620832248},"_input_hash":-682547303,"_task_hash":-704681329,"answer":"reject"} +{"text":"Cthulhu R'lyeh wgah'nagl fhtagn.","spans":[{"start":8,"end":24,"text":"R'lyeh wgah'nagl","rank":1,"label":"PRODUCT","score":0.2545106922,"source":"core_web_sm","input_hash":-502881603,"answer":"ignore"}],"meta":{"section":"pics","score":0.2545106922},"_input_hash":-502881603,"_task_hash":125219692,"answer":"ignore"} +{"text":"The antigravity module also contains the geohash method relating to XKCD #426","spans":[{"start":73,"end":74,"text":"#","rank":0,"label":"PRODUCT","score":0.5989051093,"source":"core_web_sm","input_hash":1323349618,"answer":"reject"}],"meta":{"section":"programming","score":0.5989051093},"_input_hash":1323349618,"_task_hash":890206759,"answer":"reject"} +{"text":"It takes 8-12 hours a day to play WoW well.","spans":[{"start":34,"end":37,"text":"WoW","rank":0,"label":"PRODUCT","score":0.7712065072,"source":"core_web_sm","input_hash":1367663895,"answer":"accept"}],"meta":{"section":"IAmA","score":0.7712065072},"_input_hash":1367663895,"_task_hash":16682374,"answer":"accept"} +{"text":"I too, am paid to browse Reddit.","spans":[{"start":25,"end":31,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.99993873,"source":"core_web_sm","input_hash":652211254,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.99993873},"_input_hash":652211254,"_task_hash":-315316156,"answer":"accept"} +{"text":"Happy New Year Reddit, From Barranquilla, Colombia","spans":[{"start":15,"end":21,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9125738104,"source":"core_web_sm","input_hash":384234707,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9125738104},"_input_hash":384234707,"_task_hash":618233497,"answer":"accept"} +{"text":"I guess Lakers fans will try to find any way to make it look like Kobe was better than Michael.","spans":[{"start":66,"end":70,"text":"Kobe","rank":0,"label":"PRODUCT","score":0.6102091769,"source":"core_web_sm","input_hash":-2124584084,"answer":"reject"}],"meta":{"section":"sports","score":0.6102091769},"_input_hash":-2124584084,"_task_hash":-272465350,"answer":"reject"} +{"text":"Do you believe that if the gov spends 100$ private sector spending will decrease by 100$?","spans":[{"start":41,"end":42,"text":"$","rank":0,"label":"PRODUCT","score":0.9654044678,"source":"core_web_sm","input_hash":462032558,"answer":"reject"}],"meta":{"section":"IAmA","score":0.9654044678},"_input_hash":462032558,"_task_hash":-887709955,"answer":"reject"} +{"text":"We're on to you, Google.","spans":[{"start":17,"end":23,"text":"Google","rank":0,"label":"PRODUCT","score":0.6977643265,"source":"core_web_sm","input_hash":1523516286,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.6977643265},"_input_hash":1523516286,"_task_hash":-1023608279,"answer":"accept"} +{"text":"I'm a moderator of a subreddit where shit just gets randomly auto-banned for no apparent reason Reddit needs to do something about it","spans":[{"start":96,"end":102,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.7085706474,"source":"core_web_sm","input_hash":11787808,"answer":"accept"}],"meta":{"section":"fffffffuuuuuuuuuuuu","score":0.7085706474},"_input_hash":11787808,"_task_hash":1841584529,"answer":"accept"} +{"text":"[Citation Needed]","spans":[{"start":1,"end":9,"text":"Citation","rank":0,"label":"PRODUCT","score":0.9938497067,"source":"core_web_sm","input_hash":2077322908,"answer":"reject"}],"meta":{"section":"gaming","score":0.9938497067},"_input_hash":2077322908,"_task_hash":-1304902505,"answer":"reject"} +{"text":"Happy New Years from Edmonton Reddit!","spans":[{"start":30,"end":36,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9984446315,"source":"core_web_sm","input_hash":-1925725079,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9984446315},"_input_hash":-1925725079,"_task_hash":-1472465115,"answer":"accept"} +{"text":"I still have a bunch of my Watermills, too.","spans":[{"start":27,"end":37,"text":"Watermills","rank":0,"label":"PRODUCT","score":0.6383758643,"source":"core_web_sm","input_hash":-1837906794,"answer":"reject"}],"meta":{"section":"books","score":0.6383758643},"_input_hash":-1837906794,"_task_hash":-1727348782,"answer":"reject"} +{"text":"This annoying trend goes into the same league as the Twitter bird tilting its head and peering out at you over the side of a webpage.","spans":[{"start":53,"end":60,"text":"Twitter","rank":0,"label":"PRODUCT","score":0.862196885,"source":"core_web_sm","input_hash":-77542626,"answer":"accept"}],"meta":{"section":"web_design","score":0.862196885},"_input_hash":-77542626,"_task_hash":995231070,"answer":"accept"} +{"text":"Although it had DRM, I have to admit that I LOVE Dawn of Discovery.","spans":[{"start":57,"end":66,"text":"Discovery","rank":0,"label":"PRODUCT","score":0.8979236061,"source":"core_web_sm","input_hash":-836665618,"answer":"reject"}],"meta":{"section":"gaming","score":0.8979236061},"_input_hash":-836665618,"_task_hash":1224830347,"answer":"reject"} +{"text":"Nice, complete with Obi-wan \"action\" rat tail.","spans":[{"start":20,"end":23,"text":"Obi","rank":0,"label":"PRODUCT","score":0.99074222,"source":"core_web_sm","input_hash":-1175688821,"answer":"reject"}],"meta":{"section":"pics","score":0.99074222},"_input_hash":-1175688821,"_task_hash":-1540167503,"answer":"reject"} +{"text":"The version of Mac OS X that comes preloaded on the $2,500+ 8-core Mac Pro is the very same version that comes preloaded on the $599 Mac mini.","spans":[{"start":52,"end":53,"text":"$","rank":2,"label":"PRODUCT","score":0.0499899129,"source":"core_web_sm","input_hash":-776028624,"answer":"reject"}],"meta":{"section":"WTF","score":0.0499899129},"_input_hash":-776028624,"_task_hash":841339153,"answer":"reject"} +{"text":"I only wonder why are drinks expensive (2 drinks for $20+$5 as tip).","spans":[{"start":53,"end":54,"text":"$","rank":0,"label":"PRODUCT","score":0.6465450132,"source":"core_web_sm","input_hash":904485263,"answer":"reject"}],"meta":{"section":"DoesAnybodyElse","score":0.6465450132},"_input_hash":904485263,"_task_hash":-243946800,"answer":"reject"} +{"text":"Reddit FTW!!","spans":[{"start":0,"end":10,"text":"Reddit FTW","rank":0,"label":"PRODUCT","score":0.9973375512,"source":"core_web_sm","input_hash":-1672745120,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.9973375512},"_input_hash":-1672745120,"_task_hash":919435281,"answer":"reject"} +{"text":"I know that my engineering company bills my hours to clients for $120/hr, and they give me something like $25/hr","spans":[{"start":106,"end":107,"text":"$","rank":7,"label":"PRODUCT","score":0.0266198678,"source":"core_web_sm","input_hash":2092195342,"answer":"reject"}],"meta":{"section":"IAmA","score":0.0266198678},"_input_hash":2092195342,"_task_hash":-2036577357,"answer":"reject"} +{"text":"Storing cents in a signed 64-bit integer (to allow for overdraws) will let a single account contain up to $92,233,720,368,547,758.07 (that's 92.2 quadrillion dollars).","spans":[{"start":141,"end":145,"text":"92.2","rank":1,"label":"PRODUCT","score":0.0536169387,"source":"core_web_sm","input_hash":-1364619179,"answer":"reject"}],"meta":{"section":"WTF","score":0.0536169387},"_input_hash":-1364619179,"_task_hash":1724203427,"answer":"reject"} +{"text":"I would bet on them storing the number of cents in a typical (probably 64-bit long) integer.","spans":[{"start":42,"end":47,"text":"cents","rank":0,"label":"PRODUCT","score":0.513765903,"source":"core_web_sm","input_hash":275998669,"answer":"reject"}],"meta":{"section":"WTF","score":0.513765903},"_input_hash":275998669,"_task_hash":-1172360167,"answer":"reject"} +{"text":"After being raised on a steady diet of TOS, I was foaming at the mouth as a teenager when this thing came to the theatres, and when you got to see...for the very first time...the re-imagined Klingons, and that incredible martial music that accompanied their hapless attack on V'ger","spans":[{"start":276,"end":281,"text":"V'ger","rank":0,"label":"PRODUCT","score":0.850325278,"source":"core_web_sm","input_hash":1671135187,"answer":"reject"}],"meta":{"section":"scifi","score":0.850325278},"_input_hash":1671135187,"_task_hash":-372263427,"answer":"reject"} +{"text":"90% of my week is spent looking busy vigorously typing comment replies on Reddit.","spans":[{"start":74,"end":80,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9997798883,"source":"core_web_sm","input_hash":-527881105,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.9997798883},"_input_hash":-527881105,"_task_hash":1790897105,"answer":"accept"} +{"text":"They learn advanced care techniques such as intubation, IV access, heart monitoring, admin. of drugs, C-Pap, and much much more.","spans":[{"start":102,"end":107,"text":"C-Pap","rank":1,"label":"PRODUCT","score":0.0253531799,"source":"core_web_sm","input_hash":-554798660,"answer":"reject"}],"meta":{"section":"IAmA","score":0.0253531799},"_input_hash":-554798660,"_task_hash":1384842132,"answer":"reject"} +{"text":"WOOOOO Happy New Year, Reddit!","spans":[{"start":23,"end":29,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9542142763,"source":"core_web_sm","input_hash":1854030074,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9542142763},"_input_hash":1854030074,"_task_hash":1646226223,"answer":"accept"} +{"text":"REDDIT \u2260 DOCTOR","spans":[{"start":0,"end":6,"text":"REDDIT","rank":0,"label":"PRODUCT","score":0.9169889924,"source":"core_web_sm","input_hash":-1923118964,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.9169889924},"_input_hash":-1923118964,"_task_hash":-2095977205,"answer":"accept"} +{"text":"Yep, Reddit.","spans":[{"start":5,"end":11,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.999981789,"source":"core_web_sm","input_hash":-430117241,"answer":"accept"}],"meta":{"section":"politics","score":0.999981789},"_input_hash":-430117241,"_task_hash":-494890579,"answer":"accept"} +{"text":"Molten ponds of steel at the bottom of elevator shafts (WTC1, WTC2, WTC7).","spans":[{"start":56,"end":60,"text":"WTC1","rank":5,"label":"PRODUCT","score":0.0045391118,"source":"core_web_sm","input_hash":1439349993,"answer":"reject"}],"meta":{"section":"politics","score":0.0045391118},"_input_hash":1439349993,"_task_hash":-1047507266,"answer":"reject"} +{"text":"Pulverization of 99% of concrete into ultra fine dust as recorded by official studies.","spans":[{"start":17,"end":20,"text":"99%","rank":2,"label":"PRODUCT","score":0.0073171688,"source":"core_web_sm","input_hash":-1622171479,"answer":"reject"}],"meta":{"section":"politics","score":0.0073171688},"_input_hash":-1622171479,"_task_hash":-522723314,"answer":"reject"} +{"text":"Decontamination procedure used at Ground Zero (hi-pressure water spraying) for all steel removed from site.","spans":[{"start":34,"end":45,"text":"Ground Zero","rank":1,"label":"PRODUCT","score":0.0539992608,"source":"core_web_sm","input_hash":-1691417662,"answer":"reject"}],"meta":{"section":"politics","score":0.0539992608},"_input_hash":-1691417662,"_task_hash":-1255835114,"answer":"reject"} +{"text":". 200 000 gallon sprinkler water tanks on the roofs of WTC1 and WTC2, but no water in the ruins.","spans":[{"start":55,"end":59,"text":"WTC1","rank":2,"label":"PRODUCT","score":0.0641873421,"source":"core_web_sm","input_hash":311968472,"answer":"reject"}],"meta":{"section":"politics","score":0.0641873421},"_input_hash":311968472,"_task_hash":-541668112,"answer":"reject"} +{"text":"Thanks, I just noticed that they gave Reddit its credit.","spans":[{"start":38,"end":44,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9173236491,"source":"core_web_sm","input_hash":367626657,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9173236491},"_input_hash":367626657,"_task_hash":-1441540260,"answer":"accept"} +{"text":"The reason I enjoy Reddit much more than Digg is because of the comments.","spans":[{"start":19,"end":25,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.8813961756,"source":"core_web_sm","input_hash":1673802299,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.8813961756},"_input_hash":1673802299,"_task_hash":1760057287,"answer":"accept"} +{"text":"Reddit is a community, and that's what makes it reddit.","spans":[{"start":0,"end":6,"text":"Reddit","rank":1,"label":"PRODUCT","score":0.0060838748,"source":"core_web_sm","input_hash":-777784458,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.0060838748},"_input_hash":-777784458,"_task_hash":-1151829928,"answer":"accept"} +{"text":"It may sound cheesy, but Reddit and its community full of awesome users and comments has shaped me into a lot of who","spans":[{"start":25,"end":31,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.7262180428,"source":"core_web_sm","input_hash":-603775020,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.7262180428},"_input_hash":-603775020,"_task_hash":-1516416377,"answer":"accept"} +{"text":"This is North Korea using the tactic that it discovered when it tried to provoke a war with the USA when it attacked the USS Pueblo in the 1960's.","spans":[{"start":117,"end":131,"text":"the USS Pueblo","rank":4,"label":"PRODUCT","score":0.004433133,"source":"core_web_sm","input_hash":-624645791,"answer":"reject"}],"meta":{"section":"politics","score":0.004433133},"_input_hash":-624645791,"_task_hash":272844829,"answer":"reject"} +{"text":"Citation needed.","spans":[{"start":0,"end":8,"text":"Citation","rank":0,"label":"PRODUCT","score":0.8726322366,"source":"core_web_sm","input_hash":-569478471,"answer":"reject"}],"meta":{"section":"politics","score":0.8726322366},"_input_hash":-569478471,"_task_hash":2101047701,"answer":"reject"} +{"text":"Defibrillators seem to operate around 1000 V. Taser makers *claim* tasers are much higher, but the dielectric breakdown of air and the current draw make those claims dubious.","spans":[{"start":46,"end":51,"text":"Taser","rank":0,"label":"PRODUCT","score":0.4071619166,"source":"core_web_sm","input_hash":-1850469925,"answer":"reject"}],"meta":{"section":"WTF","score":0.4071619166},"_input_hash":-1850469925,"_task_hash":1501271307,"answer":"reject"} +{"text":"Just got off the plane from Palm Springs, back to very wet Oregon, and the first thing I could think of that would lift my spirits was Reddit.","spans":[{"start":135,"end":141,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9708643527,"source":"core_web_sm","input_hash":1742155668,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9708643527},"_input_hash":1742155668,"_task_hash":55664631,"answer":"accept"} +{"text":"But spending it now with Reddit","spans":[{"start":25,"end":31,"text":"Reddit","rank":1,"label":"PRODUCT","score":0.3477568372,"source":"core_web_sm","input_hash":2084740736,"answer":"accept"}],"meta":{"section":"DoesAnybodyElse","score":0.3477568372},"_input_hash":2084740736,"_task_hash":-52370606,"answer":"accept"} +{"text":"So I went back to Carbon Emacs and iTerm.","spans":[{"start":18,"end":30,"text":"Carbon Emacs","rank":4,"label":"PRODUCT","score":0.0060731306,"source":"core_web_sm","input_hash":692922092,"answer":"accept"}],"meta":{"section":"linux","score":0.0060731306},"_input_hash":692922092,"_task_hash":519214927,"answer":"accept"} +{"text":"My only reason for ever stepping foot in a Best Buy is sheer laziness.","spans":[{"start":43,"end":47,"text":"Best","rank":7,"label":"PRODUCT","score":0.0035168329,"source":"core_web_sm","input_hash":1154601864,"answer":"reject"}],"meta":{"section":"IAmA","score":0.0035168329},"_input_hash":1154601864,"_task_hash":627816553,"answer":"reject"} +{"text":"You ought to be able to see it here: http://video.google.com/videoplay?docid=-5631882395226827730&ei=CpA9S4DeIpfWrAKT_K2KDw&q=manufacturing+consent&hl=en&view=3# If not that, you can download it here: http://www.archive.org/details.php?identifier=NoamChomskyNoamChomskyManufacturingConsent_0","spans":[{"start":176,"end":177,"text":"#","rank":0,"label":"PRODUCT","score":0.9948968772,"source":"core_web_sm","input_hash":-922455836,"answer":"reject"}],"meta":{"section":"politics","score":0.9948968772},"_input_hash":-922455836,"_task_hash":740412854,"answer":"reject"} +{"text":"This will definitely have to be approved by Reddit's parent company, whoever that is.","spans":[{"start":44,"end":50,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9722681842,"source":"core_web_sm","input_hash":1966379431,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.9722681842},"_input_hash":1966379431,"_task_hash":-29237698,"answer":"accept"} +{"text":"Galifa- Galifik- ...","spans":[{"start":8,"end":16,"text":"Galifik-","rank":0,"label":"PRODUCT","score":0.9774959835,"source":"core_web_sm","input_hash":1009023214,"answer":"reject"}],"meta":{"section":"DoesAnybodyElse","score":0.9774959835},"_input_hash":1009023214,"_task_hash":-837830851,"answer":"reject"} +{"text":"I totally agree -- I tend to keep my Reddit & real life separate.","spans":[{"start":37,"end":48,"text":"Reddit &","rank":1,"label":"PRODUCT","score":0.4844732692,"source":"core_web_sm","input_hash":2130598350,"answer":"reject"}],"meta":{"section":"pics","score":0.4844732692},"_input_hash":2130598350,"_task_hash":1412029200,"answer":"reject"} +{"text":"Instead, call `raise` without any arguments to raise the same exception again with traceback intact, like so: except E: raise You can arbitrarily add properties to objects: # prints 'Hello, world' obj.__dict__['hello'] = 'Hello, world' print obj.hello","spans":[{"start":173,"end":174,"text":"#","rank":1,"label":"PRODUCT","score":0.2334605454,"source":"core_web_sm","input_hash":-1761261652,"answer":"reject"}],"meta":{"section":"programming","score":0.2334605454},"_input_hash":-1761261652,"_task_hash":-597913032,"answer":"reject"} +{"text":"init__(self,i): self.i = i + 1 # dumb thing to do, but","spans":[{"start":31,"end":32,"text":"#","rank":0,"label":"PRODUCT","score":0.4321484536,"source":"core_web_sm","input_hash":787762038,"answer":"reject"},{"start":29,"end":32,"text":"1 #","rank":3,"label":"PRODUCT","score":0.0373682203,"source":"core_web_sm","input_hash":787762038,"answer":"reject"}],"meta":{"section":"programming","score":0.4321484536},"_input_hash":787762038,"_task_hash":261561383,"answer":"reject"} +{"text":"init__(self,i): self.i = i + 1 # dumb thing to do, but","spans":[{"start":29,"end":32,"text":"1 #","rank":3,"label":"PRODUCT","score":0.0373682203,"source":"core_web_sm","input_hash":787762038,"answer":"reject"}],"meta":{"section":"programming","score":0.0373682203},"_input_hash":787762038,"_task_hash":101448277,"answer":"reject"} +{"text":"brewed and bottled in Amsterdam :]","spans":[{"start":32,"end":34,"text":":]","rank":2,"label":"PRODUCT","score":0.0304312977,"source":"core_web_sm","input_hash":-149968401,"answer":"reject"}],"meta":{"section":"trees","score":0.0304312977},"_input_hash":-149968401,"_task_hash":-143424873,"answer":"reject"} +{"text":"He could have mentioned, on Utapau, how his fight with Obi-Wan would be a rematch and then make some crack about Qui-Gon and Obi would have gotten all mad and the fight would have been even more awesome.","spans":[{"start":55,"end":58,"text":"Obi","rank":0,"label":"PRODUCT","score":0.8579974429,"source":"core_web_sm","input_hash":2048316166,"answer":"reject"}],"meta":{"section":"pics","score":0.8579974429},"_input_hash":2048316166,"_task_hash":1666867359,"answer":"reject"} +{"text":"Reddit thinks I'm spamming or something.","spans":[{"start":0,"end":6,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9994169827,"source":"core_web_sm","input_hash":-1559236030,"answer":"accept"}],"meta":{"section":"poker","score":0.9994169827},"_input_hash":-1559236030,"_task_hash":310037840,"answer":"accept"} +{"text":"Happy New Year Reddit!","spans":[{"start":15,"end":21,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9779826067,"source":"core_web_sm","input_hash":-599665248,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9779826067},"_input_hash":-599665248,"_task_hash":-1049613189,"answer":"accept"} +{"text":"The only way I see this actually working is to allow optional tagging on top of the existing tree file system.","spans":[{"start":4,"end":8,"text":"only","rank":4,"label":"PRODUCT","score":0.0280862363,"source":"core_web_sm","input_hash":110511791,"answer":"reject"}],"meta":{"section":"programming","score":0.0280862363},"_input_hash":110511791,"_task_hash":1483627332,"answer":"reject"} +{"text":"If I paid $200,000 for a house, and a HOA want to just take it from me, Im not going down without a fight.","spans":[{"start":10,"end":11,"text":"$","rank":0,"label":"PRODUCT","score":0.9904188323,"source":"core_web_sm","input_hash":219972681,"answer":"reject"}],"meta":{"section":"WTF","score":0.9904188323},"_input_hash":219972681,"_task_hash":2102555351,"answer":"reject"} +{"text":"I was stuck using Windows at a job a few years ago and wished I could use Amarok.","spans":[{"start":18,"end":25,"text":"Windows","rank":2,"label":"PRODUCT","score":0.1975636008,"source":"core_web_sm","input_hash":1777292549,"answer":"accept"},{"start":74,"end":80,"text":"Amarok","rank":3,"label":"PRODUCT","score":0.0618563902,"source":"core_web_sm","input_hash":1777292549,"answer":"accept"}],"meta":{"section":"kde","score":0.1975636008},"_input_hash":1777292549,"_task_hash":-1308770522,"answer":"accept"} +{"text":"I tried getting KDE for Windows to run and had a lot of trouble.","spans":[{"start":24,"end":31,"text":"Windows","rank":1,"label":"PRODUCT","score":0.4257595037,"source":"core_web_sm","input_hash":707150516,"answer":"accept"}],"meta":{"section":"kde","score":0.4257595037},"_input_hash":707150516,"_task_hash":-572075552,"answer":"accept"} +{"text":"(b) Paul's focus is on the aspects of the gospel that bring the Gentiles into the fold of Christianity.","spans":[{"start":64,"end":72,"text":"Gentiles","rank":4,"label":"PRODUCT","score":0.0459753964,"source":"core_web_sm","input_hash":1526186866,"answer":"reject"}],"meta":{"section":"Christianity","score":0.0459753964},"_input_hash":1526186866,"_task_hash":-609459408,"answer":"reject"} +{"text":"I was stuck using Windows at a job a few years ago and wished I could use Amarok.","spans":[{"start":74,"end":80,"text":"Amarok","rank":3,"label":"PRODUCT","score":0.0618563902,"source":"core_web_sm","input_hash":1777292549,"answer":"accept"}],"meta":{"section":"kde","score":0.0618563902},"_input_hash":1777292549,"_task_hash":-1222337317,"answer":"accept"} +{"text":", I'll let Chef from Southpark handle this one.","spans":[{"start":11,"end":15,"text":"Chef","rank":3,"label":"PRODUCT","score":0.0141949434,"source":"core_web_sm","input_hash":710484346,"answer":"reject"}],"meta":{"section":"pics","score":0.0141949434},"_input_hash":710484346,"_task_hash":-1679022313,"answer":"reject"} +{"text":"For gaming specifically, the biggest upgrade was a proper wired mouse (Logitech G5).","spans":[{"start":80,"end":82,"text":"G5","rank":1,"label":"PRODUCT","score":0.0424739778,"source":"core_web_sm","input_hash":1449260422,"answer":"reject"}],"meta":{"section":"gaming","score":0.0424739778},"_input_hash":1449260422,"_task_hash":1175050577,"answer":"reject"} +{"text":"thats what Google wants you to think","spans":[{"start":11,"end":17,"text":"Google","rank":0,"label":"PRODUCT","score":0.9735265238,"source":"core_web_sm","input_hash":1112196924,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9735265238},"_input_hash":1112196924,"_task_hash":-534087203,"answer":"accept"} +{"text":"You do realize that easily 92% of the female population masturbate on a regular basis right?","spans":[{"start":27,"end":30,"text":"92%","rank":3,"label":"PRODUCT","score":0.0253336067,"source":"core_web_sm","input_hash":679421810,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0253336067},"_input_hash":679421810,"_task_hash":-1247929978,"answer":"reject"} +{"text":"I will say this now, let it be my official statement: Half Life 2: Episode 3 will be announced at E3 in 2010 and will be released in the Fall of 2010, just in time for the Christmas Season.","spans":[{"start":98,"end":100,"text":"E3","rank":0,"label":"PRODUCT","score":0.8267814568,"source":"core_web_sm","input_hash":-1247823562,"answer":"reject"}],"meta":{"section":"gaming","score":0.8267814568},"_input_hash":-1247823562,"_task_hash":282730238,"answer":"reject"} +{"text":"Well the determinant is just a special number assigned to any square matrix (same # of rows and columns).","spans":[{"start":82,"end":83,"text":"#","rank":0,"label":"PRODUCT","score":0.9376760574,"source":"core_web_sm","input_hash":-1822783572,"answer":"reject"}],"meta":{"section":"math","score":0.9376760574},"_input_hash":-1822783572,"_task_hash":1239254217,"answer":"reject"} +{"text":"I browse, at work, with the Reddit is fun app on the toilet all the time.","spans":[{"start":28,"end":34,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9986294063,"source":"core_web_sm","input_hash":980415327,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.9986294063},"_input_hash":980415327,"_task_hash":-1986156484,"answer":"accept"} +{"text":"HAPPY NEW YEAR REDDIT!!!","spans":[{"start":15,"end":21,"text":"REDDIT","rank":0,"label":"PRODUCT","score":0.9996578323,"source":"core_web_sm","input_hash":522427051,"answer":"accept"}],"meta":{"section":"funny","score":0.9996578323},"_input_hash":522427051,"_task_hash":2107603935,"answer":"accept"} +{"text":"I could see rooting for Wile E Coyote, but not Elmer Fudd.","spans":[{"start":47,"end":57,"text":"Elmer Fudd","rank":2,"label":"PRODUCT","score":0.0516343958,"source":"core_web_sm","input_hash":-1044052481,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0516343958},"_input_hash":-1044052481,"_task_hash":1449645699,"answer":"reject"} +{"text":"Or maybe they did, and it failed and/or was killed by a more advanced liquid metal robot that Google sent back to defend itself.","spans":[{"start":94,"end":100,"text":"Google","rank":0,"label":"PRODUCT","score":0.7707320582,"source":"core_web_sm","input_hash":920995915,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.7707320582},"_input_hash":920995915,"_task_hash":1038982318,"answer":"accept"} +{"text":"and he made Google anyway,","spans":[{"start":12,"end":18,"text":"Google","rank":0,"label":"PRODUCT","score":0.975588173,"source":"core_web_sm","input_hash":-514080303,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.975588173},"_input_hash":-514080303,"_task_hash":-1814502573,"answer":"accept"} +{"text":"OR.....the multiverse theory is true, and the robot only stopped Google from taking over in THAT universe, and so we're still screwed.","spans":[{"start":65,"end":71,"text":"Google","rank":0,"label":"PRODUCT","score":0.9998642097,"source":"core_web_sm","input_hash":13651537,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9998642097},"_input_hash":13651537,"_task_hash":1555786062,"answer":"accept"} +{"text":"I love how the M16 and FN Minimi with iron sights magically generate a scope when he zooms.","spans":[{"start":15,"end":18,"text":"M16","rank":0,"label":"PRODUCT","score":0.9995930434,"source":"core_web_sm","input_hash":14476124,"answer":"ignore"}],"meta":{"section":"gaming","score":0.9995930434},"_input_hash":14476124,"_task_hash":-1440305657,"answer":"ignore"} +{"text":"Happy New Year (CST) Reddit!!!","spans":[{"start":21,"end":27,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9027983818,"source":"core_web_sm","input_hash":1442408568,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9027983818},"_input_hash":1442408568,"_task_hash":-1627747524,"answer":"accept"} +{"text":"That's what my G1 is for.","spans":[{"start":15,"end":17,"text":"G1","rank":0,"label":"PRODUCT","score":0.7504349115,"source":"core_web_sm","input_hash":-634207883,"answer":"ignore"}],"meta":{"section":"AskReddit","score":0.7504349115},"_input_hash":-634207883,"_task_hash":1795323940,"answer":"ignore"} +{"text":"and I'm going to make a U-turn","spans":[{"start":24,"end":25,"text":"U","rank":0,"label":"PRODUCT","score":0.4679630218,"source":"core_web_sm","input_hash":815787534,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.4679630218},"_input_hash":815787534,"_task_hash":1247731104,"answer":"reject"} +{"text":"Here's to another holiday morning spent on Reddit.","spans":[{"start":43,"end":49,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9995627263,"source":"core_web_sm","input_hash":-1971815578,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9995627263},"_input_hash":-1971815578,"_task_hash":1070548693,"answer":"accept"} +{"text":"Although I prefer Rock Salt due to the larger salt crystals.","spans":[{"start":18,"end":27,"text":"Rock Salt","rank":3,"label":"PRODUCT","score":0.0235642071,"source":"core_web_sm","input_hash":-1637109198,"answer":"reject"}],"meta":{"section":"trees","score":0.0235642071},"_input_hash":-1637109198,"_task_hash":-462429541,"answer":"reject"} +{"text":"So I ended up getting a ASUS UL30A-X5 for $650, thanks for all your comments!","spans":[{"start":42,"end":43,"text":"$","rank":1,"label":"PRODUCT","score":0.0178508634,"source":"core_web_sm","input_hash":-343458572,"answer":"reject"}],"meta":{"section":"gadgets","score":0.0178508634},"_input_hash":-343458572,"_task_hash":-680320750,"answer":"reject"} +{"text":"Google is doomed.","spans":[{"start":0,"end":6,"text":"Google","rank":0,"label":"PRODUCT","score":0.6671608569,"source":"core_web_sm","input_hash":-284364621,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.6671608569},"_input_hash":-284364621,"_task_hash":1348965992,"answer":"accept"} +{"text":"I don't often post on Reddit, but are you serious?","spans":[{"start":22,"end":28,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9687658516,"source":"core_web_sm","input_hash":1736725092,"answer":"accept"}],"meta":{"section":"politics","score":0.9687658516},"_input_hash":1736725092,"_task_hash":1282115705,"answer":"accept"} +{"text":"The first rule of Reddit is don't talk about Reddit.","spans":[{"start":18,"end":24,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9999993881,"source":"core_web_sm","input_hash":-2127733383,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9999993881},"_input_hash":-2127733383,"_task_hash":802777711,"answer":"accept"} +{"text":"Reddit eases the feeling of being alone on such a holiday.","spans":[{"start":0,"end":6,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9991057433,"source":"core_web_sm","input_hash":2136250824,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.9991057433},"_input_hash":2136250824,"_task_hash":536367871,"answer":"accept"} +{"text":"I figured there was some preferences setting, or that Reddit was just glitchy at times.","spans":[{"start":54,"end":60,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.997821373,"source":"core_web_sm","input_hash":-774243880,"answer":"accept"}],"meta":{"section":"fffffffuuuuuuuuuuuu","score":0.997821373},"_input_hash":-774243880,"_task_hash":924708824,"answer":"accept"} +{"text":"Reddit for the better","spans":[{"start":0,"end":6,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9997123759,"source":"core_web_sm","input_hash":-902168582,"answer":"accept"}],"meta":{"section":"self","score":0.9997123759},"_input_hash":-902168582,"_task_hash":-1954824098,"answer":"accept"} +{"text":"The appliance business is our #1 earner and it always booms in tax season.","spans":[{"start":30,"end":31,"text":"#","rank":3,"label":"PRODUCT","score":0.0564117067,"source":"core_web_sm","input_hash":-556717676,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0564117067},"_input_hash":-556717676,"_task_hash":-1495753894,"answer":"reject"} +{"text":"Reddit is about interesting stuff, not new stuff only.","spans":[{"start":0,"end":6,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9990990978,"source":"core_web_sm","input_hash":2036643269,"answer":"accept"}],"meta":{"section":"pics","score":0.9990990978},"_input_hash":2036643269,"_task_hash":1632403511,"answer":"accept"} +{"text":"Cheer up, her blow jobs weren't that good anyway.","spans":[{"start":0,"end":8,"text":"Cheer up","rank":6,"label":"PRODUCT","score":0.0022880156,"source":"core_web_sm","input_hash":868881493,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0022880156},"_input_hash":868881493,"_task_hash":-744509954,"answer":"reject"} +{"text":"In fact I rather enjoy a lot of the new features Microsoft has adopted in Win 7.","spans":[{"start":74,"end":79,"text":"Win 7","rank":2,"label":"PRODUCT","score":0.2205484833,"source":"core_web_sm","input_hash":304501898,"answer":"accept"}],"meta":{"section":"WTF","score":0.2205484833},"_input_hash":304501898,"_task_hash":-1917958837,"answer":"accept"} +{"text":"I also think it's interesting to act like I am in the middle of my own Truman show.","spans":[{"start":71,"end":77,"text":"Truman","rank":0,"label":"PRODUCT","score":0.9821494786,"source":"core_web_sm","input_hash":-884713917,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.9821494786},"_input_hash":-884713917,"_task_hash":902971204,"answer":"reject"} +{"text":"Thanks Reddit!..helped tremendously!","spans":[{"start":7,"end":14,"text":"Reddit!","rank":1,"label":"PRODUCT","score":0.0230251343,"source":"core_web_sm","input_hash":2022787550,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0230251343},"_input_hash":2022787550,"_task_hash":-376475660,"answer":"reject"} +{"text":"Jalape\u00f1o sounds a lot cooler than shalape\u00f1o though.","spans":[{"start":0,"end":8,"text":"Jalape\u00f1o","rank":2,"label":"PRODUCT","score":0.0094589159,"source":"core_web_sm","input_hash":-413487545,"answer":"reject"}],"meta":{"section":"linguistics","score":0.0094589159},"_input_hash":-413487545,"_task_hash":322950695,"answer":"reject"} +{"text":"I use the Read","spans":[{"start":10,"end":14,"text":"Read","rank":2,"label":"PRODUCT","score":0.0125100777,"source":"core_web_sm","input_hash":-481409463,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0125100777},"_input_hash":-481409463,"_task_hash":-455586209,"answer":"reject"} +{"text":"I'm not anti-social, though during a typical school day I am at school from 8 AM to 5 PM, and the only person I talk to is the guy I order food from...that sort of changed halfway through the last quarter.","spans":[{"start":84,"end":88,"text":"5 PM","rank":2,"label":"PRODUCT","score":0.0808034687,"source":"core_web_sm","input_hash":-1138934926,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0808034687},"_input_hash":-1138934926,"_task_hash":461029883,"answer":"reject"} +{"text":"What happened to the American Dream?\"","spans":[{"start":30,"end":35,"text":"Dream","rank":1,"label":"PRODUCT","score":0.0149838781,"source":"core_web_sm","input_hash":1789148212,"answer":"reject"}],"meta":{"section":"politics","score":0.0149838781},"_input_hash":1789148212,"_task_hash":794365006,"answer":"reject"} +{"text":"Friends, and Life :-)","spans":[{"start":13,"end":17,"text":"Life","rank":1,"label":"PRODUCT","score":0.153687709,"source":"core_web_sm","input_hash":1061130543,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.153687709},"_input_hash":1061130543,"_task_hash":853460842,"answer":"reject"} +{"text":"This section of Reddit is either populated by some of the strangest and most fascinating human beings I've ever heard of, or it's where the best fiction writers in America like to hang out and make shit up for free.","spans":[{"start":16,"end":22,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.999999958,"source":"core_web_sm","input_hash":-1244700138,"answer":"accept"}],"meta":{"section":"IAmA","score":0.999999958},"_input_hash":-1244700138,"_task_hash":-110005683,"answer":"accept"} +{"text":"You should read Flatland, it gives an interesting explanation of the fourth dimension (and further dimensions) that we simply cannot grasp.","spans":[{"start":16,"end":24,"text":"Flatland","rank":3,"label":"PRODUCT","score":0.0058808924,"source":"core_web_sm","input_hash":1706069834,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0058808924},"_input_hash":1706069834,"_task_hash":-74837021,"answer":"reject"} +{"text":"so I responded, \"Funny!","spans":[{"start":17,"end":22,"text":"Funny","rank":2,"label":"PRODUCT","score":0.0165601937,"source":"core_web_sm","input_hash":965498437,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0165601937},"_input_hash":965498437,"_task_hash":-1898901882,"answer":"reject"} +{"text":"Got myself a 6 pack of Guinness Extra Stout and am now having an Its always Sunny marathon!","spans":[{"start":76,"end":81,"text":"Sunny","rank":2,"label":"PRODUCT","score":0.0486161221,"source":"core_web_sm","input_hash":-503105442,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0486161221},"_input_hash":-503105442,"_task_hash":-2076310218,"answer":"reject"} +{"text":"I ended up uninstalling Firefox completely and deleted my user profile (in the appdata folder in windows).","spans":[{"start":24,"end":31,"text":"Firefox","rank":1,"label":"PRODUCT","score":0.1545699835,"source":"core_web_sm","input_hash":1900033182,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.1545699835},"_input_hash":1900033182,"_task_hash":735981171,"answer":"accept"} +{"text":"Seems like a weird Firefox bug that happens with a corrupted profile or setting.","spans":[{"start":19,"end":26,"text":"Firefox","rank":0,"label":"PRODUCT","score":0.4876403895,"source":"core_web_sm","input_hash":-374078017,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.4876403895},"_input_hash":-374078017,"_task_hash":1934591846,"answer":"accept"} +{"text":"As a Queensman, I can confirm this.","spans":[{"start":5,"end":14,"text":"Queensman","rank":1,"label":"PRODUCT","score":0.2883700213,"source":"core_web_sm","input_hash":-1007318632,"answer":"reject"}],"meta":{"section":"fffffffuuuuuuuuuuuu","score":0.2883700213},"_input_hash":-1007318632,"_task_hash":1965619383,"answer":"reject"} +{"text":"I'm going to give them all the Tom Clancys that I read as","spans":[{"start":35,"end":42,"text":"Clancys","rank":1,"label":"PRODUCT","score":0.4168726296,"source":"core_web_sm","input_hash":919747105,"answer":"reject"}],"meta":{"section":"DoesAnybodyElse","score":0.4168726296},"_input_hash":919747105,"_task_hash":-1567030883,"answer":"reject"} +{"text":"Repost from last week Submitter bypassed the dupe detector with a Google reader url","spans":[{"start":66,"end":72,"text":"Google","rank":0,"label":"PRODUCT","score":0.7369146296,"source":"core_web_sm","input_hash":478602646,"answer":"reject"}],"meta":{"section":"science","score":0.7369146296},"_input_hash":478602646,"_task_hash":-640124909,"answer":"reject"} +{"text":"Happy new year, Reddit","spans":[{"start":16,"end":22,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.8319451864,"source":"core_web_sm","input_hash":-1571928229,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.8319451864},"_input_hash":-1571928229,"_task_hash":978499042,"answer":"accept"} +{"text":"I've stopped playing WoW though.","spans":[{"start":21,"end":24,"text":"WoW","rank":0,"label":"PRODUCT","score":0.9961624616,"source":"core_web_sm","input_hash":-363076818,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.9961624616},"_input_hash":-363076818,"_task_hash":522726394,"answer":"accept"} +{"text":"Due to the general love of Futurama from the Reddit user base, everyone posting a Futurama reference in good context receives an upvote.","spans":[{"start":45,"end":51,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9978843415,"source":"core_web_sm","input_hash":994287629,"answer":"accept"}],"meta":{"section":"geek","score":0.9978843415},"_input_hash":994287629,"_task_hash":-1117189685,"answer":"accept"} +{"text":"The thoughts of Reddit consume him, his need for Reddit and its associated gifts of electronic gratitude await him, he can feel it in his neurons, his finger muscles tense.","spans":[{"start":16,"end":22,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9999919261,"source":"core_web_sm","input_hash":1547061546,"answer":"accept"}],"meta":{"section":"geek","score":0.9999919261},"_input_hash":1547061546,"_task_hash":-1410103961,"answer":"accept"} +{"text":"Reddit is not for karma parties, but in my opinion, they don't happen often enough to tip the grand karma scales.","spans":[{"start":0,"end":6,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9914670624,"source":"core_web_sm","input_hash":-2013516975,"answer":"accept"}],"meta":{"section":"worstof","score":0.9914670624},"_input_hash":-2013516975,"_task_hash":-1753384350,"answer":"accept"} +{"text":"* Buy a motorcycle or truck and get a cherry bomb muffler so that everyone can know how awesome you are as you drive through the neighborhood at 2 A.M..","spans":[{"start":145,"end":150,"text":"2 A.M","rank":0,"label":"PRODUCT","score":0.599776093,"source":"core_web_sm","input_hash":-566573824,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.599776093},"_input_hash":-566573824,"_task_hash":313514158,"answer":"reject"} +{"text":"I just responded in a \"What should we name our kid\" thread offering Element names (Strontium, Molybdenum, etc), but don't like those for a Boston Terrier (your tastes may vary).","spans":[{"start":94,"end":104,"text":"Molybdenum","rank":0,"label":"PRODUCT","score":0.9697195363,"source":"core_web_sm","input_hash":1650599181,"answer":"reject"}],"meta":{"section":"needadvice","score":0.9697195363},"_input_hash":1650599181,"_task_hash":173575500,"answer":"reject"} +{"text":"Google's laboratory is located here in California","spans":[{"start":0,"end":6,"text":"Google","rank":0,"label":"PRODUCT","score":0.8166349394,"source":"core_web_sm","input_hash":-480955135,"answer":"ignore"}],"meta":{"section":"reddit.com","score":0.8166349394},"_input_hash":-480955135,"_task_hash":565436736,"answer":"ignore"} +{"text":"Well, seeing that we will all die on December 21st, 2012-hopefully a Diet Coke that tastes like Regular Coke.","spans":[{"start":69,"end":78,"text":"Diet Coke","rank":0,"label":"PRODUCT","score":0.7139084811,"source":"core_web_sm","input_hash":1299915471,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.7139084811},"_input_hash":1299915471,"_task_hash":-1140382870,"answer":"accept"} +{"text":"We would just ignore Google and continue to watch crappy and tired reality shows while eating fast food instead.","spans":[{"start":21,"end":27,"text":"Google","rank":0,"label":"PRODUCT","score":0.9999208082,"source":"core_web_sm","input_hash":1927931030,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9999208082},"_input_hash":1927931030,"_task_hash":451982268,"answer":"accept"} +{"text":"Here's to another holiday evening spent at work on Reddit.","spans":[{"start":51,"end":57,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9999998559,"source":"core_web_sm","input_hash":999294717,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9999998559},"_input_hash":999294717,"_task_hash":1747193572,"answer":"accept"} +{"text":"Play Megaman X...","spans":[{"start":5,"end":14,"text":"Megaman X","rank":3,"label":"PRODUCT","score":0.0107889281,"source":"core_web_sm","input_hash":1164533394,"answer":"accept"}],"meta":{"section":"fffffffuuuuuuuuuuuu","score":0.0107889281},"_input_hash":1164533394,"_task_hash":2032724499,"answer":"accept"} +{"text":"Honestly your best bet is to go to Wikipedia, read about determinants, and use Wikipedia to find out about the words you don't know.","spans":[{"start":79,"end":88,"text":"Wikipedia","rank":3,"label":"PRODUCT","score":0.0424549316,"source":"core_web_sm","input_hash":1933611320,"answer":"accept"}],"meta":{"section":"math","score":0.0424549316},"_input_hash":1933611320,"_task_hash":476328453,"answer":"accept"} +{"text":"More to Love was especially facepalmy.","spans":[{"start":8,"end":12,"text":"Love","rank":1,"label":"PRODUCT","score":0.2173616701,"source":"core_web_sm","input_hash":1160513819,"answer":"reject"}],"meta":{"section":"TwoXChromosomes","score":0.2173616701},"_input_hash":1160513819,"_task_hash":-1689181418,"answer":"reject"} +{"text":"This may be mixing bedroom and non bedroom stuff too much, but look into a thing called Udder Balm.","spans":[{"start":88,"end":98,"text":"Udder Balm","rank":0,"label":"PRODUCT","score":0.7197737514,"source":"core_web_sm","input_hash":729873228,"answer":"reject"}],"meta":{"section":"BDSMcommunity","score":0.7197737514},"_input_hash":729873228,"_task_hash":1037808176,"answer":"reject"} +{"text":"\"My Favorite Rape Hole.\" \"Cheese Grater Underwear\"","spans":[{"start":1,"end":22,"text":"My Favorite Rape Hole","rank":0,"label":"PRODUCT","score":0.9532164967,"source":"core_web_sm","input_hash":-1996862481,"answer":"reject"}],"meta":{"section":"shittyadvice","score":0.9532164967},"_input_hash":-1996862481,"_task_hash":1803494892,"answer":"reject"} +{"text":"I did a CS degree with a course on compilers, but I haven't had any formal training in language design.","spans":[{"start":8,"end":10,"text":"CS","rank":4,"label":"PRODUCT","score":0.0342222892,"source":"core_web_sm","input_hash":-1967981433,"answer":"reject"}],"meta":{"section":"programming","score":0.0342222892},"_input_hash":-1967981433,"_task_hash":1228147685,"answer":"reject"} +{"text":"It would have been nice if the article explained what Japan's Lost Decade was, after giving the pop quiz answer as the 'Lost Decade'.","spans":[{"start":62,"end":73,"text":"Lost Decade","rank":3,"label":"PRODUCT","score":0.0289719045,"source":"core_web_sm","input_hash":956304214,"answer":"reject"}],"meta":{"section":"business","score":0.0289719045},"_input_hash":956304214,"_task_hash":705144901,"answer":"reject"} +{"text":"Therefore, if Anon invades a site, it's not the individuals doing it, but the group as a whole. \"","spans":[{"start":14,"end":18,"text":"Anon","rank":3,"label":"PRODUCT","score":0.0370166323,"source":"core_web_sm","input_hash":-1717166019,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0370166323},"_input_hash":-1717166019,"_task_hash":1944343248,"answer":"reject"} +{"text":"A war IS coming, but it has nothing to do with Google.","spans":[{"start":47,"end":53,"text":"Google","rank":0,"label":"PRODUCT","score":0.9997898723,"source":"core_web_sm","input_hash":-1158971569,"answer":"ignore"}],"meta":{"section":"reddit.com","score":0.9997898723},"_input_hash":-1158971569,"_task_hash":2142849679,"answer":"ignore"} +{"text":">Hint:","spans":[{"start":1,"end":5,"text":"Hint","rank":4,"label":"PRODUCT","score":0.0028262893,"source":"core_web_sm","input_hash":991622262,"answer":"reject"}],"meta":{"section":"math","score":0.0028262893},"_input_hash":991622262,"_task_hash":-193234197,"answer":"reject"} +{"text":"Different than they do now, used more #'s","spans":[{"start":38,"end":39,"text":"#","rank":1,"label":"PRODUCT","score":0.0888684743,"source":"core_web_sm","input_hash":1329844574,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0888684743},"_input_hash":1329844574,"_task_hash":-394861867,"answer":"reject"} +{"text":"I take my iPhone in there and checkout ireddit every day","spans":[{"start":10,"end":16,"text":"iPhone","rank":1,"label":"PRODUCT","score":0.166930692,"source":"core_web_sm","input_hash":-1065998275,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.166930692},"_input_hash":-1065998275,"_task_hash":1970797529,"answer":"accept"} +{"text":"5 A.R. (After Reddit)","spans":[{"start":14,"end":20,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.8932298377,"source":"core_web_sm","input_hash":-1286238492,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.8932298377},"_input_hash":-1286238492,"_task_hash":-1035558887,"answer":"accept"} +{"text":"Compare to HP, Dell, or anyone else willing to sell you top-to-bottom support on a multiple-physical-CPU system, and you'll see Apple come out LESS than many vendors on similarly-outfitted systems.","spans":[{"start":15,"end":19,"text":"Dell","rank":0,"label":"PRODUCT","score":0.9965973872,"source":"core_web_sm","input_hash":-255765847,"answer":"reject"}],"meta":{"section":"apple","score":0.9965973872},"_input_hash":-255765847,"_task_hash":1625480406,"answer":"reject"} +{"text":"Google is your friend on this subject though I'll be happy to do more research for you.","spans":[{"start":0,"end":6,"text":"Google","rank":2,"label":"PRODUCT","score":0.0149598641,"source":"core_web_sm","input_hash":921223212,"answer":"accept"}],"meta":{"section":"offbeat","score":0.0149598641},"_input_hash":921223212,"_task_hash":-1990418587,"answer":"accept"} +{"text":"Diet Coke is delicious as is.","spans":[{"start":0,"end":9,"text":"Diet Coke","rank":1,"label":"PRODUCT","score":0.0211118279,"source":"core_web_sm","input_hash":775328251,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.0211118279},"_input_hash":775328251,"_task_hash":-1012002847,"answer":"accept"} +{"text":"Happy New Years Reddit!","spans":[{"start":16,"end":22,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9997690343,"source":"core_web_sm","input_hash":1829710505,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9997690343},"_input_hash":1829710505,"_task_hash":-500416005,"answer":"accept"} +{"text":"Second Suite in F","spans":[{"start":16,"end":17,"text":"F","rank":1,"label":"PRODUCT","score":0.0536841476,"source":"core_web_sm","input_hash":590006083,"answer":"reject"}],"meta":{"section":"classicalmusic","score":0.0536841476},"_input_hash":590006083,"_task_hash":993469465,"answer":"reject"} +{"text":"(child's weight)/(your weight) x (dose that would put you to sleep)","spans":[{"start":9,"end":22,"text":"weight)/(your","rank":1,"label":"PRODUCT","score":0.3518274748,"source":"core_web_sm","input_hash":-120351307,"answer":"reject"}],"meta":{"section":"WTF","score":0.3518274748},"_input_hash":-120351307,"_task_hash":847180035,"answer":"reject"} +{"text":"He was born poor,black and effectively an orphan, put himself through Harvard Law, became successful, helped the poor in his old neighborhood and went on to become President.","spans":[{"start":78,"end":81,"text":"Law","rank":2,"label":"PRODUCT","score":0.0415502124,"source":"core_web_sm","input_hash":-98159648,"answer":"reject"}],"meta":{"section":"obama","score":0.0415502124},"_input_hash":-98159648,"_task_hash":-707750189,"answer":"reject"} +{"text":"Does it mean that the economy should collapse, because basic R&D is typically publicly funded If there is demand for R&D","spans":[{"start":61,"end":68,"text":"R&D","rank":2,"label":"PRODUCT","score":0.1489580377,"source":"core_web_sm","input_hash":-626457431,"answer":"reject"}],"meta":{"section":"Libertarian","score":0.1489580377},"_input_hash":-626457431,"_task_hash":2129466858,"answer":"reject"} +{"text":"Intellectual property won't exist; R&D will be mainly 'open source'.","spans":[{"start":35,"end":42,"text":"R&D","rank":0,"label":"PRODUCT","score":0.5268340674,"source":"core_web_sm","input_hash":-660718377,"answer":"reject"}],"meta":{"section":"Libertarian","score":0.5268340674},"_input_hash":-660718377,"_task_hash":828350708,"answer":"reject"} +{"text":"This leads to more efficient R&D and a faster advancement of ideas.","spans":[{"start":29,"end":36,"text":"R&D","rank":0,"label":"PRODUCT","score":0.8766976491,"source":"core_web_sm","input_hash":2031786169,"answer":"reject"}],"meta":{"section":"Libertarian","score":0.8766976491},"_input_hash":2031786169,"_task_hash":-1451903897,"answer":"reject"} +{"text":"Reddit is truly \"equal opportunity\"--","spans":[{"start":0,"end":6,"text":"Reddit","rank":1,"label":"PRODUCT","score":0.4588054405,"source":"core_web_sm","input_hash":1234525186,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.4588054405},"_input_hash":1234525186,"_task_hash":459155692,"answer":"accept"} +{"text":"Thanks Reddit for keeping me from doing stupid shit an regretting it tmrw.","spans":[{"start":7,"end":13,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9997507725,"source":"core_web_sm","input_hash":-1682914656,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9997507725},"_input_hash":-1682914656,"_task_hash":-2113579405,"answer":"accept"} +{"text":"So your $2,766,651,363.14 purchase would be processed as $766,651,363.14","spans":[{"start":57,"end":58,"text":"$","rank":3,"label":"PRODUCT","score":0.0427988579,"source":"core_web_sm","input_hash":-1033768327,"answer":"reject"}],"meta":{"section":"WTF","score":0.0427988579},"_input_hash":-1033768327,"_task_hash":-726226072,"answer":"reject"} +{"text":"What's XCOM?","spans":[{"start":7,"end":11,"text":"XCOM","rank":2,"label":"PRODUCT","score":0.1781633039,"source":"core_web_sm","input_hash":-1222947215,"answer":"ignore"}],"meta":{"section":"gaming","score":0.1781633039},"_input_hash":-1222947215,"_task_hash":1060557018,"answer":"ignore"} +{"text":"(in the key of F).","spans":[{"start":15,"end":16,"text":"F","rank":0,"label":"PRODUCT","score":0.9813162141,"source":"core_web_sm","input_hash":1504622234,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.9813162141},"_input_hash":1504622234,"_task_hash":109778025,"answer":"reject"} +{"text":"I've repeatedly tried to entice #haskell to get started on a web browser, not only to do something widely visible, but also to drive the state of art of functional GUI programming, but to no avail.","spans":[{"start":32,"end":33,"text":"#","rank":0,"label":"PRODUCT","score":0.984086472,"source":"core_web_sm","input_hash":1175952834,"answer":"reject"}],"meta":{"section":"programming","score":0.984086472},"_input_hash":1175952834,"_task_hash":630809774,"answer":"reject"} +{"text":"So... I wish it to you all at Reddit too.","spans":[{"start":30,"end":36,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9991983481,"source":"core_web_sm","input_hash":62750367,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9991983481},"_input_hash":62750367,"_task_hash":-991274778,"answer":"accept"} +{"text":"this medium evolved to one of communication via daily phone calls and videochat. Was failing miserably in my university program, mostly because of constantly getting high and playing Mario Kart 64 instead of doing my studies... Visited her December 5th, 2008.","spans":[{"start":183,"end":196,"text":"Mario Kart 64","rank":10,"label":"PRODUCT","score":0.0071752252,"source":"core_web_sm","input_hash":-279845810,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.0071752252},"_input_hash":-279845810,"_task_hash":40119387,"answer":"accept"} +{"text":"Love to Reddit, and everyone else!","spans":[{"start":8,"end":14,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9824978154,"source":"core_web_sm","input_hash":-313291275,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.9824978154},"_input_hash":-313291275,"_task_hash":757309982,"answer":"accept"} +{"text":"Or even with a movie like Downfall.","spans":[{"start":26,"end":34,"text":"Downfall","rank":3,"label":"PRODUCT","score":0.1402018,"source":"core_web_sm","input_hash":-783405751,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.1402018},"_input_hash":-783405751,"_task_hash":-1019274503,"answer":"reject"} +{"text":"The man is some kind of genius or something.","spans":[{"start":4,"end":7,"text":"man","rank":1,"label":"PRODUCT","score":0.0941267866,"source":"core_web_sm","input_hash":616443682,"answer":"reject"}],"meta":{"section":"entertainment","score":0.0941267866},"_input_hash":616443682,"_task_hash":1211761435,"answer":"reject"} +{"text":"All FO3 offered was spots on the map you hadn't explored yet through following the story and side-quests.","spans":[{"start":4,"end":7,"text":"FO3","rank":0,"label":"PRODUCT","score":0.6657854594,"source":"core_web_sm","input_hash":-1704240910,"answer":"reject"}],"meta":{"section":"gaming","score":0.6657854594},"_input_hash":-1704240910,"_task_hash":-1521326368,"answer":"reject"} +{"text":": Everyone is upset because they believe Reddit is self-regulated.","spans":[{"start":41,"end":47,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9986609882,"source":"core_web_sm","input_hash":1574576450,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.9986609882},"_input_hash":1574576450,"_task_hash":-130711037,"answer":"accept"} +{"text":"Your Google powers, they are weak http://www8.brinkster.com/erikbaas/morse.asp","spans":[{"start":5,"end":11,"text":"Google","rank":0,"label":"PRODUCT","score":0.9994678191,"source":"core_web_sm","input_hash":1747497596,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.9994678191},"_input_hash":1747497596,"_task_hash":-1723728426,"answer":"accept"} +{"text":"My Karma points should be redeemable for credits towards the new Reddit advertising.","spans":[{"start":65,"end":71,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.99961131,"source":"core_web_sm","input_hash":60397050,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.99961131},"_input_hash":60397050,"_task_hash":1551068118,"answer":"accept"} +{"text":"You don't break reality til you create a loop by running Windows within Linux within OSX within Windows.","spans":[{"start":57,"end":64,"text":"Windows","rank":0,"label":"PRODUCT","score":0.999887616,"source":"core_web_sm","input_hash":-561454218,"answer":"accept"}],"meta":{"section":"geek","score":0.999887616},"_input_hash":-561454218,"_task_hash":-509195579,"answer":"accept"} +{"text":"Do you not read Reddit?","spans":[{"start":16,"end":22,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9996720967,"source":"core_web_sm","input_hash":-1656589703,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.9996720967},"_input_hash":-1656589703,"_task_hash":74699057,"answer":"accept"} +{"text":"Then Ma would put the kettle on, Pa would break out the fiddle, and Mary and me would gather our skirts round our knees and dance by the candlelight till it was time to put Bossy back in the barn for the night.","spans":[{"start":173,"end":178,"text":"Bossy","rank":2,"label":"PRODUCT","score":0.0371037486,"source":"core_web_sm","input_hash":1902181222,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0371037486},"_input_hash":1902181222,"_task_hash":1034408973,"answer":"reject"} +{"text":"The WC3 validator only checked that your documents were **","spans":[{"start":4,"end":7,"text":"WC3","rank":0,"label":"PRODUCT","score":0.9000402246,"source":"core_web_sm","input_hash":-690680240,"answer":"reject"}],"meta":{"section":"Python","score":0.9000402246},"_input_hash":-690680240,"_task_hash":53262279,"answer":"reject"} +{"text":"I don't think the Ladies of Reddit will approve.","spans":[{"start":28,"end":34,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.879621856,"source":"core_web_sm","input_hash":792513056,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.879621856},"_input_hash":792513056,"_task_hash":-950821567,"answer":"accept"} +{"text":"Except the Steam backup feature requires Steam to restore, and so would need to connect to Steam servers, which wouldn't exist anymore.","spans":[{"start":11,"end":16,"text":"Steam","rank":0,"label":"PRODUCT","score":0.8555827879,"source":"core_web_sm","input_hash":169618230,"answer":"accept"}],"meta":{"section":"gaming","score":0.8555827879},"_input_hash":169618230,"_task_hash":-532812810,"answer":"accept"} +{"text":"Now git off mah lawn!","spans":[{"start":4,"end":7,"text":"git","rank":0,"label":"PRODUCT","score":0.540856738,"source":"core_web_sm","input_hash":999913317,"answer":"reject"}],"meta":{"section":"gaming","score":0.540856738},"_input_hash":999913317,"_task_hash":354852928,"answer":"reject"} +{"text":"It is really so astounding to me that after all you did to your brain (the hypertension, tachycardia, protracted insomnia, meth neurotoxicity, receptor downregulation, poor nutrition, high cortisol levels, etc...) you are not only able to put together coherent sentences, but are able to write with a degree of eloquence that even a great many people on Reddit lack, to say nothing of the U.S. populace in general.","spans":[{"start":354,"end":360,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.7502308072,"source":"core_web_sm","input_hash":2062546115,"answer":"accept"}],"meta":{"section":"IAmA","score":0.7502308072},"_input_hash":2062546115,"_task_hash":-1588736506,"answer":"accept"} +{"text":"That's the 2nd amendment.","spans":[{"start":11,"end":14,"text":"2nd","rank":4,"label":"PRODUCT","score":0.0102353795,"source":"core_web_sm","input_hash":-511945165,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0102353795},"_input_hash":-511945165,"_task_hash":-1545705770,"answer":"reject"} +{"text":"That lady behind TMNT must be very satisfied (second thought, please fail me Rule 34)","spans":[{"start":77,"end":84,"text":"Rule 34","rank":0,"label":"PRODUCT","score":0.9599182034,"source":"core_web_sm","input_hash":1032293562,"answer":"reject"}],"meta":{"section":"funny","score":0.9599182034},"_input_hash":1032293562,"_task_hash":-157647733,"answer":"reject"} +{"text":"Operation Flashpoint.","spans":[{"start":10,"end":20,"text":"Flashpoint","rank":0,"label":"PRODUCT","score":0.6561527961,"source":"core_web_sm","input_hash":1308499497,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.6561527961},"_input_hash":1308499497,"_task_hash":-556604724,"answer":"reject"} +{"text":"I am 6'8\" tall, was 350lb as of December 5th, I smoked, I drank, I hated my life... then I clicked..","spans":[{"start":41,"end":44,"text":"5th","rank":2,"label":"PRODUCT","score":0.0417809761,"source":"core_web_sm","input_hash":860593327,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0417809761},"_input_hash":860593327,"_task_hash":2133027752,"answer":"reject"} +{"text":"It was really funny watching Inglorious Basterds in German.","spans":[{"start":40,"end":48,"text":"Basterds","rank":0,"label":"PRODUCT","score":0.6801424907,"source":"core_web_sm","input_hash":283477352,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.6801424907},"_input_hash":283477352,"_task_hash":790504491,"answer":"reject"} +{"text":"you can't play anything online if Steam is in that mode even if your internet is active - essentially your games don't authenticate and are hobbled (if they work at all).","spans":[{"start":34,"end":39,"text":"Steam","rank":1,"label":"PRODUCT","score":0.3265425638,"source":"core_web_sm","input_hash":783801185,"answer":"accept"}],"meta":{"section":"gaming","score":0.3265425638},"_input_hash":783801185,"_task_hash":1451968721,"answer":"accept"} +{"text":"If Valve went bankrupt tomorrow, and Steam went up for sale as an asset, it would probably be under new ownership by the end of the week. :)","spans":[{"start":37,"end":42,"text":"Steam","rank":0,"label":"PRODUCT","score":0.7868943635,"source":"core_web_sm","input_hash":604669619,"answer":"accept"}],"meta":{"section":"gaming","score":0.7868943635},"_input_hash":604669619,"_task_hash":-803620409,"answer":"accept"} +{"text":"THE RADIO~!","spans":[{"start":4,"end":10,"text":"RADIO~","rank":0,"label":"PRODUCT","score":0.9993382514,"source":"core_web_sm","input_hash":-1637732613,"answer":"reject"}],"meta":{"section":"geek","score":0.9993382514},"_input_hash":-1637732613,"_task_hash":-25328997,"answer":"reject"} +{"text":"Dedicated to the Austrian School of Economics = Alabama Crimson Tide vs Florida Gators SEC Championship 2009","spans":[{"start":64,"end":68,"text":"Tide","rank":2,"label":"PRODUCT","score":0.1436925003,"source":"core_web_sm","input_hash":523442659,"answer":"reject"}],"meta":{"section":"Libertarian","score":0.1436925003},"_input_hash":523442659,"_task_hash":1210541236,"answer":"reject"} +{"text":"95% of the things in this video I probably heard about from Reddit. <3","spans":[{"start":60,"end":66,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9036969988,"source":"core_web_sm","input_hash":1448533826,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9036969988},"_input_hash":1448533826,"_task_hash":1794061595,"answer":"accept"} +{"text":"See: Blood Bowl.","spans":[{"start":5,"end":15,"text":"Blood Bowl","rank":3,"label":"PRODUCT","score":0.064927274,"source":"core_web_sm","input_hash":-1629208160,"answer":"reject"}],"meta":{"section":"gaming","score":0.064927274},"_input_hash":-1629208160,"_task_hash":1171958759,"answer":"reject"} +{"text":"# # # # # ## ### ### # # ## ### # # # # ### ## ### # ### # # # # # # ### # # ## ### ### ## # # # # # # ### ### ### # # # ### ### # ### ### # # # # # ### ### #","spans":[{"start":2,"end":3,"text":"#","rank":4,"label":"PRODUCT","score":0.0712824053,"source":"core_web_sm","input_hash":1641530741,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0712824053},"_input_hash":1641530741,"_task_hash":466289599,"answer":"reject"} +{"text":"It took 6 months to get a simple xray done.","spans":[{"start":8,"end":16,"text":"6 months","rank":0,"label":"PRODUCT","score":0.4951938576,"source":"core_web_sm","input_hash":2126223206,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.4951938576},"_input_hash":2126223206,"_task_hash":215279303,"answer":"reject"} +{"text":"Although steam owned by EA probably doesn't sound much more comforting.","spans":[{"start":9,"end":14,"text":"steam","rank":2,"label":"PRODUCT","score":0.0192437446,"source":"core_web_sm","input_hash":976283228,"answer":"accept"}],"meta":{"section":"gaming","score":0.0192437446},"_input_hash":976283228,"_task_hash":-1687910730,"answer":"accept"} +{"text":"Paul said that Christians are not bound by Mosaic law.","spans":[{"start":43,"end":49,"text":"Mosaic","rank":0,"label":"PRODUCT","score":0.6019215023,"source":"core_web_sm","input_hash":1232475046,"answer":"reject"}],"meta":{"section":"atheism","score":0.6019215023},"_input_hash":1232475046,"_task_hash":1928583439,"answer":"reject"} +{"text":"So, sorry, you can't say that Christianity is for killing apostates by quoting Mosaic law.","spans":[{"start":79,"end":85,"text":"Mosaic","rank":0,"label":"PRODUCT","score":0.9165092495,"source":"core_web_sm","input_hash":-70379241,"answer":"reject"}],"meta":{"section":"atheism","score":0.9165092495},"_input_hash":-70379241,"_task_hash":-460830036,"answer":"reject"} +{"text":"His time, skills, and effort, represented by WoW gold.","spans":[{"start":45,"end":48,"text":"WoW","rank":0,"label":"PRODUCT","score":0.9976515012,"source":"core_web_sm","input_hash":-829911519,"answer":"accept"}],"meta":{"section":"Libertarian","score":0.9976515012},"_input_hash":-829911519,"_task_hash":-1926111497,"answer":"accept"} +{"text":"(Also, as you probably know, WoW gold can be purchased with 'real' money, so we can see the hint of a free market of currencies via this interaction.)","spans":[{"start":29,"end":32,"text":"WoW","rank":0,"label":"PRODUCT","score":0.9997482687,"source":"core_web_sm","input_hash":388473688,"answer":"accept"}],"meta":{"section":"Libertarian","score":0.9997482687},"_input_hash":388473688,"_task_hash":-33181116,"answer":"accept"} +{"text":"If his friend accepted something purchased with WoW gold, why couldn't a store owner do so voluntarily?","spans":[{"start":48,"end":51,"text":"WoW","rank":0,"label":"PRODUCT","score":0.9998542093,"source":"core_web_sm","input_hash":-270595960,"answer":"accept"}],"meta":{"section":"Libertarian","score":0.9998542093},"_input_hash":-270595960,"_task_hash":-2131936399,"answer":"accept"} +{"text":"The ZX81 was NOT ridiculous.","spans":[{"start":4,"end":8,"text":"ZX81","rank":0,"label":"PRODUCT","score":0.9999467044,"source":"core_web_sm","input_hash":-145692267,"answer":"accept"}],"meta":{"section":"gadgets","score":0.9999467044},"_input_hash":-145692267,"_task_hash":-2074883811,"answer":"accept"} +{"text":"World War One was supposed to be the War to End All War, after all.","spans":[{"start":6,"end":13,"text":"War One","rank":1,"label":"PRODUCT","score":0.0971159299,"source":"core_web_sm","input_hash":1133230257,"answer":"reject"}],"meta":{"section":"worldnews","score":0.0971159299},"_input_hash":1133230257,"_task_hash":157582825,"answer":"reject"} +{"text":"oh Take it easy, (yeah","spans":[{"start":3,"end":7,"text":"Take","rank":4,"label":"PRODUCT","score":0.018807869,"source":"core_web_sm","input_hash":-160989868,"answer":"reject"}],"meta":{"section":"programming","score":0.018807869},"_input_hash":-160989868,"_task_hash":-603557638,"answer":"reject"} +{"text":"(or a new camera, the D40 has a crappy viewfinder) Or rotate and crop the pics in Ps.","spans":[{"start":82,"end":84,"text":"Ps","rank":2,"label":"PRODUCT","score":0.0430306667,"source":"core_web_sm","input_hash":793813135,"answer":"accept"}],"meta":{"section":"photography","score":0.0430306667},"_input_hash":793813135,"_task_hash":534126697,"answer":"accept"} +{"text":"Excellent Moustache, and GREAT choice for a bike.","spans":[{"start":10,"end":19,"text":"Moustache","rank":2,"label":"PRODUCT","score":0.0903385519,"source":"core_web_sm","input_hash":-1122436626,"answer":"reject"}],"meta":{"section":"pics","score":0.0903385519},"_input_hash":-1122436626,"_task_hash":-3116950,"answer":"reject"} +{"text":"Got over that when I was a teenager.","spans":[{"start":4,"end":8,"text":"over","rank":4,"label":"PRODUCT","score":0.0297908281,"source":"core_web_sm","input_hash":-638091598,"answer":"reject"}],"meta":{"section":"atheism","score":0.0297908281},"_input_hash":-638091598,"_task_hash":-1595905585,"answer":"reject"} +{"text":"But, I'll spare you the $30.","spans":[{"start":24,"end":25,"text":"$","rank":3,"label":"PRODUCT","score":0.0192511587,"source":"core_web_sm","input_hash":-906147988,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0192511587},"_input_hash":-906147988,"_task_hash":2032564727,"answer":"reject"} +{"text":"And... what doesn't bother Don Cherry?","spans":[{"start":27,"end":37,"text":"Don Cherry","rank":2,"label":"PRODUCT","score":0.0216893564,"source":"core_web_sm","input_hash":-54936741,"answer":"reject"}],"meta":{"section":"sports","score":0.0216893564},"_input_hash":-54936741,"_task_hash":875340528,"answer":"reject"} +{"text":"Plus, as soon as my kids have all of one set (i.e. Powerminers), Lego comes out with a new must have set (Atlantis).","spans":[{"start":106,"end":114,"text":"Atlantis","rank":0,"label":"PRODUCT","score":0.9698318651,"source":"core_web_sm","input_hash":-1552649461,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.9698318651},"_input_hash":-1552649461,"_task_hash":1317438995,"answer":"reject"} +{"text":"And yes, the Canadian boys really go into the celebrating where the 'merican boys remained...","spans":[{"start":4,"end":7,"text":"yes","rank":7,"label":"PRODUCT","score":0.0117454717,"source":"core_web_sm","input_hash":5313723,"answer":"reject"}],"meta":{"section":"sports","score":0.0117454717},"_input_hash":5313723,"_task_hash":-968853975,"answer":"reject"} +{"text":"Jesus says that, but Paul says that Christians are not bound by Mosaic Law.","spans":[{"start":64,"end":74,"text":"Mosaic Law","rank":2,"label":"PRODUCT","score":0.1862554347,"source":"core_web_sm","input_hash":128200028,"answer":"reject"}],"meta":{"section":"atheism","score":0.1862554347},"_input_hash":128200028,"_task_hash":1308374498,"answer":"reject"} +{"text":"and the New Testament clearly states the laws of the Old Testament must be followed","spans":[{"start":12,"end":21,"text":"Testament","rank":3,"label":"PRODUCT","score":0.0386232823,"source":"core_web_sm","input_hash":98524985,"answer":"reject"}],"meta":{"section":"atheism","score":0.0386232823},"_input_hash":98524985,"_task_hash":-539301700,"answer":"reject"} +{"text":"Go to those reddits and click on \"Top\".","spans":[{"start":34,"end":37,"text":"Top","rank":2,"label":"PRODUCT","score":0.0633870179,"source":"core_web_sm","input_hash":-1373801275,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0633870179},"_input_hash":-1373801275,"_task_hash":-1802256007,"answer":"reject"} +{"text":"Happy New Year!!!!!!!!!!!!","spans":[{"start":6,"end":14,"text":"New Year","rank":3,"label":"PRODUCT","score":0.0375495766,"source":"core_web_sm","input_hash":122453688,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0375495766},"_input_hash":122453688,"_task_hash":-1013373198,"answer":"reject"} +{"text":"the Steam version of GTA4 installs","spans":[{"start":4,"end":9,"text":"Steam","rank":1,"label":"PRODUCT","score":0.0875171807,"source":"core_web_sm","input_hash":-1827901923,"answer":"accept"}],"meta":{"section":"gaming","score":0.0875171807},"_input_hash":-1827901923,"_task_hash":-515166539,"answer":"accept"} +{"text":"Hoping to at least grab a few drinks with some random Redditors at PAX East after hours.","spans":[{"start":54,"end":63,"text":"Redditors","rank":1,"label":"PRODUCT","score":0.2711646335,"source":"core_web_sm","input_hash":836502512,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.2711646335},"_input_hash":836502512,"_task_hash":1356570772,"answer":"reject"} +{"text":"For fucks sakes, Rockstar Social Club was bad enough, I had to spend 10 minutes signing up for their stupid online service before I could launch the game, then there's Games for Windows Live","spans":[{"start":178,"end":185,"text":"Windows","rank":1,"label":"PRODUCT","score":0.4228935883,"source":"core_web_sm","input_hash":499372094,"answer":"reject"}],"meta":{"section":"gaming","score":0.4228935883},"_input_hash":499372094,"_task_hash":-1217905425,"answer":"reject"} +{"text":"Sharing a room with 2 WoW guildmates I played with about 5 years ago for a couple years for PAX East.","spans":[{"start":22,"end":25,"text":"WoW","rank":0,"label":"PRODUCT","score":0.9031343184,"source":"core_web_sm","input_hash":561457438,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.9031343184},"_input_hash":561457438,"_task_hash":1980453994,"answer":"accept"} +{"text":"Reddit is *not* about karma","spans":[{"start":0,"end":6,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9999306424,"source":"core_web_sm","input_hash":-2090079510,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.9999306424},"_input_hash":-2090079510,"_task_hash":717145843,"answer":"accept"} +{"text":"Usable, astonishingly good speech-to-speech (or -to-text, of course) translation.","spans":[{"start":0,"end":6,"text":"Usable","rank":2,"label":"PRODUCT","score":0.0071674025,"source":"core_web_sm","input_hash":-807478488,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0071674025},"_input_hash":-807478488,"_task_hash":-1397978530,"answer":"reject"} +{"text":"I live in California and was switching through the local channels and all I saw was NYE in Times Square.","spans":[{"start":91,"end":103,"text":"Times Square","rank":1,"label":"PRODUCT","score":0.1395732295,"source":"core_web_sm","input_hash":480168337,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.1395732295},"_input_hash":480168337,"_task_hash":-1780731600,"answer":"reject"} +{"text":"It's only 12:38 here.","spans":[{"start":5,"end":15,"text":"only 12:38","rank":3,"label":"PRODUCT","score":0.0031040019,"source":"core_web_sm","input_hash":-1005914402,"answer":"reject"}],"meta":{"section":"gaming","score":0.0031040019},"_input_hash":-1005914402,"_task_hash":1368538242,"answer":"reject"} +{"text":"More than all the information you could ever hope for **and still more**.","spans":[{"start":66,"end":73,"text":"more**.","rank":1,"label":"PRODUCT","score":0.2802248155,"source":"core_web_sm","input_hash":-1175958056,"answer":"reject"}],"meta":{"section":"gaming","score":0.2802248155},"_input_hash":-1175958056,"_task_hash":1042481883,"answer":"reject"} +{"text":"I've always assumed the Nazis did the bulk of the killing, as they held Poland for longer in WW2.","spans":[{"start":93,"end":96,"text":"WW2","rank":1,"label":"PRODUCT","score":0.1394106618,"source":"core_web_sm","input_hash":291239964,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.1394106618},"_input_hash":291239964,"_task_hash":1468215786,"answer":"reject"} +{"text":"Facts are just fact.s","spans":[{"start":15,"end":21,"text":"fact.s","rank":1,"label":"PRODUCT","score":0.1091894191,"source":"core_web_sm","input_hash":1855387865,"answer":"reject"}],"meta":{"section":"programming","score":0.1091894191},"_input_hash":1855387865,"_task_hash":-1540840012,"answer":"reject"} +{"text":"It says it's only 250k for me","spans":[{"start":18,"end":22,"text":"250k","rank":0,"label":"PRODUCT","score":0.9820389495,"source":"core_web_sm","input_hash":-434064974,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.9820389495},"_input_hash":-434064974,"_task_hash":-745925045,"answer":"reject"} +{"text":"-- You are as believable as a 7 dollar bill.","spans":[{"start":30,"end":31,"text":"7","rank":1,"label":"PRODUCT","score":0.1499914518,"source":"core_web_sm","input_hash":-1715805394,"answer":"reject"}],"meta":{"section":"pics","score":0.1499914518},"_input_hash":-1715805394,"_task_hash":1755185433,"answer":"reject"} +{"text":"New York has a pretty healthy Jewish population, and New Yorkers are not known for their passivity and reticence, so it might not be the healthiest thing to do, but it's certainly legal.)","spans":[{"start":4,"end":8,"text":"York","rank":3,"label":"PRODUCT","score":0.0029719058,"source":"core_web_sm","input_hash":-1537785083,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0029719058},"_input_hash":-1537785083,"_task_hash":2104454821,"answer":"reject"} +{"text":"It's the new Reddit style.","spans":[{"start":13,"end":19,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9999334206,"source":"core_web_sm","input_hash":-693060248,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9999334206},"_input_hash":-693060248,"_task_hash":1986398621,"answer":"accept"} +{"text":"#","spans":[{"start":0,"end":1,"text":"#","rank":1,"label":"PRODUCT","score":0.2100596557,"source":"core_web_sm","input_hash":-407398158,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.2100596557},"_input_hash":-407398158,"_task_hash":1837471012,"answer":"reject"} +{"text":"I am always amazed when parents believe their kids 100% on these sorts of matters...","spans":[{"start":51,"end":55,"text":"100%","rank":1,"label":"PRODUCT","score":0.2965026585,"source":"core_web_sm","input_hash":-1811403056,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.2965026585},"_input_hash":-1811403056,"_task_hash":41105890,"answer":"reject"} +{"text":"Currently at McMaster (first year engineering).","spans":[{"start":13,"end":21,"text":"McMaster","rank":12,"label":"PRODUCT","score":0.0057334968,"source":"core_web_sm","input_hash":-1663381398,"answer":"reject"}],"meta":{"section":"canada","score":0.0057334968},"_input_hash":-1663381398,"_task_hash":-102900948,"answer":"reject"} +{"text":"Same with the Carpetbagger film critic guy in the New York Times.","spans":[{"start":59,"end":64,"text":"Times","rank":3,"label":"PRODUCT","score":0.1154642883,"source":"core_web_sm","input_hash":-1493825263,"answer":"reject"}],"meta":{"section":"IAmA","score":0.1154642883},"_input_hash":-1493825263,"_task_hash":143628804,"answer":"reject"} +{"text":"Loneliness and poverty! WOOT WOOT!","spans":[{"start":24,"end":33,"text":"WOOT WOOT","rank":2,"label":"PRODUCT","score":0.009932914,"source":"core_web_sm","input_hash":-1556938091,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.009932914},"_input_hash":-1556938091,"_task_hash":1912675026,"answer":"reject"} +{"text":"The only friends I've kept through this time are people I know only on Xbox Live, since proximity isn't a problem.","spans":[{"start":71,"end":80,"text":"Xbox Live","rank":2,"label":"PRODUCT","score":0.0135641931,"source":"core_web_sm","input_hash":674845696,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.0135641931},"_input_hash":674845696,"_task_hash":-2006291302,"answer":"accept"} +{"text":"You already purchased the game, and Steam handles them a little differently than boxed versions (that's why Steam is always late getting patches","spans":[{"start":36,"end":41,"text":"Steam","rank":0,"label":"PRODUCT","score":0.7921272257,"source":"core_web_sm","input_hash":-2011811483,"answer":"accept"}],"meta":{"section":"gaming","score":0.7921272257},"_input_hash":-2011811483,"_task_hash":-859069015,"answer":"accept"} +{"text":"so I don't think it would be possible to say, download an illegal copy and somehow legalize it through Steam.","spans":[{"start":103,"end":108,"text":"Steam","rank":0,"label":"PRODUCT","score":0.9609314708,"source":"core_web_sm","input_hash":-381009572,"answer":"accept"}],"meta":{"section":"gaming","score":0.9609314708},"_input_hash":-381009572,"_task_hash":1721492535,"answer":"accept"} +{"text":"I found this out the hard way when I was running out of disk space and wanted to install a new Steam game on a different drive than Steam - not an option, had to reinstall Steam and all associated games on the new drive (in hindsight, I probably could have moved it somehow with the backup feature, but regardless, Steam and it's games are inseparable).","spans":[{"start":95,"end":100,"text":"Steam","rank":0,"label":"PRODUCT","score":0.8588994204,"source":"core_web_sm","input_hash":1976881964,"answer":"accept"}],"meta":{"section":"gaming","score":0.8588994204},"_input_hash":1976881964,"_task_hash":328170790,"answer":"accept"} +{"text":"The DRM would still be there I think, just as it is with a boxed game, and since Steam installs in the most insane way ever (browse your Steam directory, you won't find a folder in there for any of your games, but yet somehow they are in there)","spans":[{"start":81,"end":86,"text":"Steam","rank":0,"label":"PRODUCT","score":0.9965651058,"source":"core_web_sm","input_hash":-946964750,"answer":"accept"}],"meta":{"section":"gaming","score":0.9965651058},"_input_hash":-946964750,"_task_hash":-1613366732,"answer":"accept"} +{"text":"(Modern Warfare 2 took less than 12 hours I hear)","spans":[{"start":8,"end":17,"text":"Warfare 2","rank":1,"label":"PRODUCT","score":0.3948691971,"source":"core_web_sm","input_hash":-816630353,"answer":"reject"}],"meta":{"section":"gaming","score":0.3948691971},"_input_hash":-816630353,"_task_hash":129512746,"answer":"reject"} +{"text":"First thing that came to mind what the analog stick, it's helped me with 3d games since the N64.","spans":[{"start":92,"end":95,"text":"N64","rank":0,"label":"PRODUCT","score":0.9371583761,"source":"core_web_sm","input_hash":2096595223,"answer":"accept"}],"meta":{"section":"gaming","score":0.9371583761},"_input_hash":2096595223,"_task_hash":-602128323,"answer":"accept"} +{"text":"My point is that we should all treat each other with a little respect BY DEFAULT.","spans":[{"start":70,"end":80,"text":"BY DEFAULT","rank":4,"label":"PRODUCT","score":0.0551639289,"source":"core_web_sm","input_hash":-691101777,"answer":"reject"}],"meta":{"section":"politics","score":0.0551639289},"_input_hash":-691101777,"_task_hash":150617249,"answer":"reject"} +{"text":"It's too bad that MC68k/PPC have been deprecated.","spans":[{"start":18,"end":23,"text":"MC68k","rank":0,"label":"PRODUCT","score":0.9568857961,"source":"core_web_sm","input_hash":233653315,"answer":"reject"}],"meta":{"section":"programming","score":0.9568857961},"_input_hash":233653315,"_task_hash":-622461293,"answer":"reject"} +{"text":"I was given gripe water as a child (5% alcohol).","spans":[{"start":36,"end":38,"text":"5%","rank":2,"label":"PRODUCT","score":0.0034889395,"source":"core_web_sm","input_hash":-772715940,"answer":"reject"}],"meta":{"section":"WTF","score":0.0034889395},"_input_hash":-772715940,"_task_hash":155004690,"answer":"reject"} +{"text":"#tf2.pug.na #tf2.pug","spans":[{"start":12,"end":13,"text":"#","rank":1,"label":"PRODUCT","score":0.4476896115,"source":"core_web_sm","input_hash":755236623,"answer":"reject"}],"meta":{"section":"tf2","score":0.4476896115},"_input_hash":755236623,"_task_hash":1579161226,"answer":"reject"} +{"text":"Now I want *etc* Common Lisp macro.","spans":[{"start":17,"end":23,"text":"Common","rank":0,"label":"PRODUCT","score":0.8050702391,"source":"core_web_sm","input_hash":1114281136,"answer":"reject"}],"meta":{"section":"programming","score":0.8050702391},"_input_hash":1114281136,"_task_hash":-1970270583,"answer":"reject"} +{"text":"A clone of a clone, it's still a good game, but I was expecting more Diablo out of it.","spans":[{"start":69,"end":75,"text":"Diablo","rank":1,"label":"PRODUCT","score":0.3571583137,"source":"core_web_sm","input_hash":1605016278,"answer":"accept"}],"meta":{"section":"gaming","score":0.3571583137},"_input_hash":1605016278,"_task_hash":841804556,"answer":"accept"} +{"text":"Firefox can't find the server at www.msnbc.msn.com.","spans":[{"start":0,"end":7,"text":"Firefox","rank":1,"label":"PRODUCT","score":0.0794857249,"source":"core_web_sm","input_hash":344603652,"answer":"accept"}],"meta":{"section":"WTF","score":0.0794857249},"_input_hash":344603652,"_task_hash":-1029340016,"answer":"accept"} +{"text":"It produced the 14th Amendment before the US Supreme Court finally killed it in US v. Cruikshank (final decision in 1876).","spans":[{"start":16,"end":30,"text":"14th Amendment","rank":0,"label":"PRODUCT","score":0.9811753348,"source":"core_web_sm","input_hash":927713702,"answer":"reject"}],"meta":{"section":"politics","score":0.9811753348},"_input_hash":927713702,"_task_hash":339898390,"answer":"reject"} +{"text":"Your California sparkling wine may well be made in the style of those from Champagne, but, even so, such wines are no longer even permitted to be called Methode Champenoise.","spans":[{"start":153,"end":172,"text":"Methode Champenoise","rank":3,"label":"PRODUCT","score":0.0095218681,"source":"core_web_sm","input_hash":1349904253,"answer":"reject"}],"meta":{"section":"funny","score":0.0095218681},"_input_hash":1349904253,"_task_hash":1187692952,"answer":"reject"} +{"text":"And that leads to an increase in the prefrontal cortex of a staggering 53 percent.","spans":[{"start":71,"end":81,"text":"53 percent","rank":1,"label":"PRODUCT","score":0.1341301412,"source":"core_web_sm","input_hash":-1391727033,"answer":"reject"}],"meta":{"section":"conspiracy","score":0.1341301412},"_input_hash":-1391727033,"_task_hash":1387799166,"answer":"reject"} +{"text":"passive color displays (for a colorized Kindle), fat-loss pill, non-silicon-based nanotech, cure for herpes, genetic specification for implanted embryos (listing desired traits), addiction treatment with a pill, robotic stitching (jeans and shoes made without human interaction), superb emissions filters allowing 100% garbage incineration","spans":[{"start":40,"end":46,"text":"Kindle","rank":0,"label":"PRODUCT","score":0.7417638122,"source":"core_web_sm","input_hash":-90094845,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.7417638122},"_input_hash":-90094845,"_task_hash":-1818768122,"answer":"accept"} +{"text":"As if you didn't know that.","spans":[{"start":3,"end":5,"text":"if","rank":5,"label":"PRODUCT","score":0.0156238286,"source":"core_web_sm","input_hash":1195994415,"answer":"reject"}],"meta":{"section":"todayilearned","score":0.0156238286},"_input_hash":1195994415,"_task_hash":1456678843,"answer":"reject"} +{"text":"For a moment, I was hoping you were plugging the logitech G13 -","spans":[{"start":58,"end":61,"text":"G13","rank":1,"label":"PRODUCT","score":0.3793399419,"source":"core_web_sm","input_hash":2019684130,"answer":"reject"}],"meta":{"section":"gaming","score":0.3793399419},"_input_hash":2019684130,"_task_hash":951435339,"answer":"reject"} +{"text":"Sobering up in a local diner (downtown Houston) and on Reddit.","spans":[{"start":55,"end":61,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.7466441134,"source":"core_web_sm","input_hash":-1348456984,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.7466441134},"_input_hash":-1348456984,"_task_hash":-250739513,"answer":"accept"} +{"text":"That is a feature of a dynamic language like JavaScript.","spans":[{"start":45,"end":55,"text":"JavaScript","rank":0,"label":"PRODUCT","score":0.826817049,"source":"core_web_sm","input_hash":1658355532,"answer":"accept"}],"meta":{"section":"programming","score":0.826817049},"_input_hash":1658355532,"_task_hash":-811944562,"answer":"accept"} +{"text":"And by the time the Yanks decided to come and join in,","spans":[{"start":16,"end":25,"text":"the Yanks","rank":4,"label":"PRODUCT","score":0.0175594524,"source":"core_web_sm","input_hash":-883547655,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0175594524},"_input_hash":-883547655,"_task_hash":-1809753584,"answer":"reject"} +{"text":"These gave me a great performance and playability for recent games, varying from WoW to Crysis.","spans":[{"start":81,"end":84,"text":"WoW","rank":0,"label":"PRODUCT","score":0.989425735,"source":"core_web_sm","input_hash":1424656540,"answer":"accept"}],"meta":{"section":"gaming","score":0.989425735},"_input_hash":1424656540,"_task_hash":782302680,"answer":"accept"} +{"text":"they just hit their 8,500 goal.","spans":[{"start":20,"end":25,"text":"8,500","rank":2,"label":"PRODUCT","score":0.0565219734,"source":"core_web_sm","input_hash":209977030,"answer":"reject"}],"meta":{"section":"gaming","score":0.0565219734},"_input_hash":209977030,"_task_hash":-966834490,"answer":"reject"} +{"text":"The price just got reduced to $250k.","spans":[{"start":31,"end":35,"text":"250k","rank":2,"label":"PRODUCT","score":0.046352075,"source":"core_web_sm","input_hash":626940872,"answer":"reject"}],"meta":{"section":"WTF","score":0.046352075},"_input_hash":626940872,"_task_hash":1813130727,"answer":"reject"} +{"text":"ham & honey don't grow on trees, they require the murder of their producers.","spans":[{"start":4,"end":8,"text":"&","rank":1,"label":"PRODUCT","score":0.3601027072,"source":"core_web_sm","input_hash":1614033356,"answer":"reject"}],"meta":{"section":"promos","score":0.3601027072},"_input_hash":1614033356,"_task_hash":862594347,"answer":"reject"} +{"text":"All Americans should be outraged at what is being done in their name.","spans":[{"start":0,"end":13,"text":"All Americans","rank":2,"label":"PRODUCT","score":0.0061087567,"source":"core_web_sm","input_hash":1566344279,"answer":"reject"}],"meta":{"section":"news","score":0.0061087567},"_input_hash":1566344279,"_task_hash":-921639787,"answer":"reject"} +{"text":"Depending on the group, one is either \"for or against\" Macintosh... Unix... Barack Obama... non-belief in God...","spans":[{"start":55,"end":64,"text":"Macintosh","rank":4,"label":"PRODUCT","score":0.0558673568,"source":"core_web_sm","input_hash":-738175608,"answer":"accept"}],"meta":{"section":"atheism","score":0.0558673568},"_input_hash":-738175608,"_task_hash":-1351961613,"answer":"accept"} +{"text":"Reddit will blame all of Obama's continued failures on Bush.","spans":[{"start":0,"end":6,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9510299373,"source":"core_web_sm","input_hash":-1510190952,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9510299373},"_input_hash":-1510190952,"_task_hash":-1067909350,"answer":"accept"} +{"text":"I thought the release date of HL2:Ep3 was The Rapture.","spans":[{"start":42,"end":53,"text":"The Rapture","rank":4,"label":"PRODUCT","score":0.0067335282,"source":"core_web_sm","input_hash":1971418781,"answer":"reject"}],"meta":{"section":"gaming","score":0.0067335282},"_input_hash":1971418781,"_task_hash":-1891990417,"answer":"reject"} +{"text":"So, he made an AskReddit to ask for advice, legal issues, etc.","spans":[{"start":12,"end":24,"text":"an AskReddit","rank":1,"label":"PRODUCT","score":0.2649817498,"source":"core_web_sm","input_hash":1946466763,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.2649817498},"_input_hash":1946466763,"_task_hash":2064572958,"answer":"reject"} +{"text":"ANT MUSIC FOOL!","spans":[{"start":4,"end":14,"text":"MUSIC FOOL","rank":2,"label":"PRODUCT","score":0.0611732883,"source":"core_web_sm","input_hash":1955595337,"answer":"reject"}],"meta":{"section":"linux","score":0.0611732883},"_input_hash":1955595337,"_task_hash":1378998509,"answer":"reject"} +{"text":"But... but Earth made another trip around Sol!","spans":[{"start":42,"end":45,"text":"Sol","rank":4,"label":"PRODUCT","score":0.0040839965,"source":"core_web_sm","input_hash":1085790001,"answer":"reject"}],"meta":{"section":"DoesAnybodyElse","score":0.0040839965},"_input_hash":1085790001,"_task_hash":-694900321,"answer":"reject"} +{"text":"We get to Quito at 6 AM, and head to the hospital.","spans":[{"start":19,"end":23,"text":"6 AM","rank":3,"label":"PRODUCT","score":0.0166612956,"source":"core_web_sm","input_hash":1264695813,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0166612956},"_input_hash":1264695813,"_task_hash":295552974,"answer":"reject"} +{"text":"The current human population is roughly 8 Billion individuals.","spans":[{"start":32,"end":49,"text":"roughly 8 Billion","rank":6,"label":"PRODUCT","score":0.0109991573,"source":"core_web_sm","input_hash":457338492,"answer":"reject"}],"meta":{"section":"science","score":0.0109991573},"_input_hash":457338492,"_task_hash":-368162773,"answer":"reject"} +{"text":"The dude never drank a \"White Russian\".","spans":[{"start":24,"end":37,"text":"White Russian","rank":1,"label":"PRODUCT","score":0.1067773066,"source":"core_web_sm","input_hash":-891558491,"answer":"reject"}],"meta":{"section":"WTF","score":0.1067773066},"_input_hash":-891558491,"_task_hash":-800517226,"answer":"reject"} +{"text":"Browse Reddit!","spans":[{"start":7,"end":13,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9996092042,"source":"core_web_sm","input_hash":460680187,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.9996092042},"_input_hash":460680187,"_task_hash":2015881720,"answer":"accept"} +{"text":"But then he gets the final say because he's the Master!","spans":[{"start":48,"end":54,"text":"Master","rank":0,"label":"PRODUCT","score":0.8171648369,"source":"core_web_sm","input_hash":2040423465,"answer":"reject"}],"meta":{"section":"BDSMcommunity","score":0.8171648369},"_input_hash":2040423465,"_task_hash":163337959,"answer":"reject"} +{"text":"I was, and strangely Reddit doesn't allow the double-space.","spans":[{"start":21,"end":27,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9871962252,"source":"core_web_sm","input_hash":1570196466,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.9871962252},"_input_hash":1570196466,"_task_hash":231020355,"answer":"accept"} +{"text":"I think O.C.P. is a subsidiary of Google.","spans":[{"start":34,"end":40,"text":"Google","rank":0,"label":"PRODUCT","score":0.9950548062,"source":"core_web_sm","input_hash":-1841504310,"answer":"ignore"}],"meta":{"section":"reddit.com","score":0.9950548062},"_input_hash":-1841504310,"_task_hash":1844568019,"answer":"ignore"} +{"text":"Happy New Year to you as well.","spans":[{"start":6,"end":14,"text":"New Year","rank":0,"label":"PRODUCT","score":0.9450555526,"source":"core_web_sm","input_hash":1985880228,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.9450555526},"_input_hash":1985880228,"_task_hash":1415917071,"answer":"reject"} +{"text":"Also see Deuteronomy 24, specifically verse 16.","spans":[{"start":9,"end":23,"text":"Deuteronomy 24","rank":0,"label":"PRODUCT","score":0.948371771,"source":"core_web_sm","input_hash":-1335751656,"answer":"reject"}],"meta":{"section":"Christianity","score":0.948371771},"_input_hash":-1335751656,"_task_hash":1900211540,"answer":"reject"} +{"text":"That's what my iPhone is for.","spans":[{"start":15,"end":21,"text":"iPhone","rank":0,"label":"PRODUCT","score":0.9076353371,"source":"core_web_sm","input_hash":1567847096,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.9076353371},"_input_hash":1567847096,"_task_hash":-1297885951,"answer":"accept"} +{"text":"Happy New Year to you!","spans":[{"start":6,"end":14,"text":"New Year","rank":0,"label":"PRODUCT","score":0.9760006592,"source":"core_web_sm","input_hash":1531065318,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.9760006592},"_input_hash":1531065318,"_task_hash":1994687230,"answer":"reject"} +{"text":"Especially important is that det(A) = 0 if and only if A does not have an inverse.","spans":[{"start":38,"end":39,"text":"0","rank":6,"label":"PRODUCT","score":0.0054312006,"source":"core_web_sm","input_hash":338783413,"answer":"reject"}],"meta":{"section":"math","score":0.0054312006},"_input_hash":338783413,"_task_hash":1335735585,"answer":"reject"} +{"text":"I have no idea what happened to Accursed Toys/KarmaSoft (Boppin') or The Bitmat Brothers/Image Works (Xenon II: Megablast), but I can still play Boppin or Xenon easily.","spans":[{"start":145,"end":151,"text":"Boppin","rank":1,"label":"PRODUCT","score":0.0255661106,"source":"core_web_sm","input_hash":-1550558831,"answer":"reject"}],"meta":{"section":"gaming","score":0.0255661106},"_input_hash":-1550558831,"_task_hash":-1561845015,"answer":"reject"} +{"text":"If Steam ever dies, all that will change is that we'll download a program called SteamFree instead of Steam.","spans":[{"start":3,"end":8,"text":"Steam","rank":0,"label":"PRODUCT","score":0.9999369739,"source":"core_web_sm","input_hash":125192714,"answer":"accept"}],"meta":{"section":"gaming","score":0.9999369739},"_input_hash":125192714,"_task_hash":-598233764,"answer":"accept"} +{"text":"Interior Huey helicopter.","spans":[{"start":0,"end":13,"text":"Interior Huey","rank":2,"label":"PRODUCT","score":0.1053420075,"source":"core_web_sm","input_hash":1305420754,"answer":"reject"}],"meta":{"section":"Music","score":0.1053420075},"_input_hash":1305420754,"_task_hash":-1721102821,"answer":"reject"} +{"text":"I wasted everyones time Hip!","spans":[{"start":24,"end":27,"text":"Hip","rank":1,"label":"PRODUCT","score":0.2020603181,"source":"core_web_sm","input_hash":1924411868,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.2020603181},"_input_hash":1924411868,"_task_hash":-518299705,"answer":"reject"} +{"text":"CNTRL + F4 also works.","spans":[{"start":8,"end":10,"text":"F4","rank":0,"label":"PRODUCT","score":0.5636647355,"source":"core_web_sm","input_hash":-594184874,"answer":"reject"}],"meta":{"section":"IAmA","score":0.5636647355},"_input_hash":-594184874,"_task_hash":-1888910854,"answer":"reject"} +{"text":"Happy New Year from Tex-Ass!","spans":[{"start":6,"end":14,"text":"New Year","rank":0,"label":"PRODUCT","score":0.6963779659,"source":"core_web_sm","input_hash":2053308480,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.6963779659},"_input_hash":2053308480,"_task_hash":-791609336,"answer":"reject"} +{"text":"I was playing Fallout 3 while my girlfriend was in the shower.","spans":[{"start":14,"end":23,"text":"Fallout 3","rank":0,"label":"PRODUCT","score":0.9859090012,"source":"core_web_sm","input_hash":-989358226,"answer":"accept"}],"meta":{"section":"sex","score":0.9859090012},"_input_hash":-989358226,"_task_hash":199648575,"answer":"accept"} +{"text":"No words spoken, but a \"FUCK YEAH!\" on my part may have been appropriate.","spans":[{"start":24,"end":33,"text":"FUCK YEAH","rank":2,"label":"PRODUCT","score":0.0107742093,"source":"core_web_sm","input_hash":572617362,"answer":"reject"}],"meta":{"section":"sex","score":0.0107742093},"_input_hash":572617362,"_task_hash":1905253450,"answer":"reject"} +{"text":"For example, (0,0) is one corner of the unit square, and it stays (0,0) after being fed through *f*, since we just multiplied 2\\*0 and 2\\*0.","spans":[{"start":14,"end":17,"text":"0,0","rank":0,"label":"PRODUCT","score":0.8063094525,"source":"core_web_sm","input_hash":-1501221466,"answer":"reject"}],"meta":{"section":"math","score":0.8063094525},"_input_hash":-1501221466,"_task_hash":-180821758,"answer":"reject"} +{"text":"For example, the function *f* I defined way above (the one that scaled the unit square by a factor of two) can be written as the matrix: >2 0 >0 2 which we'll call *","spans":[{"start":143,"end":146,"text":"0 2","rank":2,"label":"PRODUCT","score":0.1430683611,"source":"core_web_sm","input_hash":-1020854399,"answer":"reject"}],"meta":{"section":"math","score":0.1430683611},"_input_hash":-1020854399,"_task_hash":-1629004313,"answer":"reject"} +{"text":"Those functions *cannot be written as matrices*.","spans":[{"start":38,"end":48,"text":"matrices*.","rank":6,"label":"PRODUCT","score":0.008193234,"source":"core_web_sm","input_hash":-222701442,"answer":"reject"}],"meta":{"section":"math","score":0.008193234},"_input_hash":-222701442,"_task_hash":644844774,"answer":"reject"} +{"text":"As I'm driving along in the scion, I lean forward, drive a little slower and ask myself, \"Is... is that a gallows?","spans":[{"start":77,"end":80,"text":"ask","rank":0,"label":"PRODUCT","score":0.7018630893,"source":"core_web_sm","input_hash":1291910034,"answer":"reject"}],"meta":{"section":"IAmA","score":0.7018630893},"_input_hash":1291910034,"_task_hash":1125497885,"answer":"reject"} +{"text":"When I get up to the log cabin property, I see the guy come out in a wife-beater and shorts, look at me cross, and ask me what the fuck I'm doing on his property.","spans":[{"start":115,"end":118,"text":"ask","rank":0,"label":"PRODUCT","score":0.8912292251,"source":"core_web_sm","input_hash":-1603570297,"answer":"reject"}],"meta":{"section":"IAmA","score":0.8912292251},"_input_hash":-1603570297,"_task_hash":321471606,"answer":"reject"} +{"text":"I didn't say the French were cowards during WW1.","spans":[{"start":44,"end":47,"text":"WW1","rank":3,"label":"PRODUCT","score":0.0545159273,"source":"core_web_sm","input_hash":-1245474048,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0545159273},"_input_hash":-1245474048,"_task_hash":1555158518,"answer":"reject"} +{"text":"the be married to another woman, and I don't see how that is hypocritical","spans":[{"start":4,"end":6,"text":"be","rank":4,"label":"PRODUCT","score":0.0081208407,"source":"core_web_sm","input_hash":-694191696,"answer":"reject"}],"meta":{"section":"politics","score":0.0081208407},"_input_hash":-694191696,"_task_hash":232615289,"answer":"reject"} +{"text":"Happy New Year!","spans":[{"start":6,"end":14,"text":"New Year","rank":0,"label":"PRODUCT","score":0.6848911975,"source":"core_web_sm","input_hash":941124861,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.6848911975},"_input_hash":941124861,"_task_hash":829611946,"answer":"reject"} +{"text":"I predict it will be about the same, but another 10% crapper.","spans":[{"start":51,"end":52,"text":"%","rank":0,"label":"PRODUCT","score":0.7171019374,"source":"core_web_sm","input_hash":176217864,"answer":"reject"}],"meta":{"section":"unitedkingdom","score":0.7171019374},"_input_hash":176217864,"_task_hash":471235546,"answer":"reject"} +{"text":"The evolutionary advantage of being good looking has been very small in the British Isles, apparently.","spans":[{"start":4,"end":16,"text":"evolutionary","rank":3,"label":"PRODUCT","score":0.0451860435,"source":"core_web_sm","input_hash":292052054,"answer":"reject"}],"meta":{"section":"pics","score":0.0451860435},"_input_hash":292052054,"_task_hash":1313464655,"answer":"reject"} +{"text":"This requires that you stay pretty close (50 km or so) to the stationary base station however.).","spans":[{"start":35,"end":42,"text":"close (","rank":2,"label":"PRODUCT","score":0.041868207,"source":"core_web_sm","input_hash":-383392837,"answer":"reject"}],"meta":{"section":"science","score":0.041868207},"_input_hash":-383392837,"_task_hash":-987554531,"answer":"reject"} +{"text":"Plus I saved a ton on 2nd car costs & hassles with timing my departure to match kids' school times.","spans":[{"start":36,"end":40,"text":"&","rank":1,"label":"PRODUCT","score":0.1470916162,"source":"core_web_sm","input_hash":-321503792,"answer":"reject"}],"meta":{"section":"Fitness","score":0.1470916162},"_input_hash":-321503792,"_task_hash":-1736559613,"answer":"reject"} +{"text":"They were just like the cats in Lady and the Tramp.","spans":[{"start":45,"end":50,"text":"Tramp","rank":8,"label":"PRODUCT","score":0.0081554377,"source":"core_web_sm","input_hash":1959231099,"answer":"reject"}],"meta":{"section":"pics","score":0.0081554377},"_input_hash":1959231099,"_task_hash":-1934211497,"answer":"reject"} +{"text":"but for my nikon d3000 it's quite reliable.","spans":[{"start":17,"end":22,"text":"d3000","rank":1,"label":"PRODUCT","score":0.0108040813,"source":"core_web_sm","input_hash":682469775,"answer":"reject"}],"meta":{"section":"photography","score":0.0108040813},"_input_hash":682469775,"_task_hash":2038293725,"answer":"reject"} +{"text":"Not going on Reddit on your wedding day would be a good start.","spans":[{"start":13,"end":19,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9284939038,"source":"core_web_sm","input_hash":-1210208560,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9284939038},"_input_hash":-1210208560,"_task_hash":216667209,"answer":"accept"} +{"text":"I am a novice w/ reason and Pro Tools.","spans":[{"start":14,"end":16,"text":"w/","rank":0,"label":"PRODUCT","score":0.8181523978,"source":"core_web_sm","input_hash":1732444508,"answer":"reject"}],"meta":{"section":"WeAreTheMusicMakers","score":0.8181523978},"_input_hash":1732444508,"_task_hash":690974840,"answer":"reject"} +{"text":"i didn't say that the 1 gram dose was safe.","spans":[{"start":22,"end":23,"text":"1","rank":1,"label":"PRODUCT","score":0.1675021255,"source":"core_web_sm","input_hash":-382127599,"answer":"reject"}],"meta":{"section":"worldnews","score":0.1675021255},"_input_hash":-382127599,"_task_hash":-1690490296,"answer":"reject"} +{"text":"Here's another LINQ implementation for JS that is actually API-compatible with the .NET version and has a query compiler","spans":[{"start":83,"end":87,"text":".NET","rank":0,"label":"PRODUCT","score":0.8781546939,"source":"core_web_sm","input_hash":-1887073110,"answer":"accept"}],"meta":{"section":"programming","score":0.8781546939},"_input_hash":-1887073110,"_task_hash":2080967411,"answer":"accept"} +{"text":"http://video.google.com/videoplay?docid=-5631882395226827730&ei=97w9S6KjH6acqQPQ3b2rBw&q=manufacturing+consent&hl=en#","spans":[{"start":128,"end":129,"text":"#","rank":2,"label":"PRODUCT","score":0.0220550369,"source":"core_web_sm","input_hash":-520244435,"answer":"reject"}],"meta":{"section":"politics","score":0.0220550369},"_input_hash":-520244435,"_task_hash":1803317070,"answer":"reject"} +{"text":"This alone is the dumbest thing you've ever said.","spans":[{"start":18,"end":25,"text":"dumbest","rank":4,"label":"PRODUCT","score":0.0080071526,"source":"core_web_sm","input_hash":1655149076,"answer":"reject"}],"meta":{"section":"Libertarian","score":0.0080071526},"_input_hash":1655149076,"_task_hash":1973923924,"answer":"reject"} +{"text":"the gross pathophysiology of the disease; on account of the dopaminergic medication they take to compensate for the dearth of D2-family dopamine receptor agonism which causes their symptoms; or, most probably, both.","spans":[{"start":4,"end":9,"text":"gross","rank":7,"label":"PRODUCT","score":0.0081106091,"source":"core_web_sm","input_hash":1688118466,"answer":"reject"}],"meta":{"section":"IAmA","score":0.0081106091},"_input_hash":1688118466,"_task_hash":-1245354519,"answer":"reject"} +{"text":"I was on a trip with my family and my dad, who is uber-Mormon, really wanted to go.","spans":[{"start":54,"end":61,"text":"-Mormon","rank":2,"label":"PRODUCT","score":0.0144220576,"source":"core_web_sm","input_hash":-809632753,"answer":"reject"}],"meta":{"section":"atheism","score":0.0144220576},"_input_hash":-809632753,"_task_hash":-1523732351,"answer":"reject"} +{"text":"Spent a week in the county hosp and 4.5 months at home with three new titanium pins in my ankle.","spans":[{"start":36,"end":46,"text":"4.5 months","rank":4,"label":"PRODUCT","score":0.042645171,"source":"core_web_sm","input_hash":-1508886169,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.042645171},"_input_hash":-1508886169,"_task_hash":1822509682,"answer":"reject"} +{"text":"What you just described is exactly what the Cintiqs are\u2026","spans":[{"start":44,"end":51,"text":"Cintiqs","rank":2,"label":"PRODUCT","score":0.0034816536,"source":"core_web_sm","input_hash":183273213,"answer":"accept"}],"meta":{"section":"apple","score":0.0034816536},"_input_hash":183273213,"_task_hash":-34689149,"answer":"accept"} +{"text":"Google for it.","spans":[{"start":0,"end":6,"text":"Google","rank":0,"label":"PRODUCT","score":0.9994106283,"source":"core_web_sm","input_hash":1026072810,"answer":"accept"}],"meta":{"section":"programming","score":0.9994106283},"_input_hash":1026072810,"_task_hash":-1809014917,"answer":"accept"} +{"text":".. although this does make me feel ALOT better about pissing away money on Steam as I'm no","spans":[{"start":75,"end":80,"text":"Steam","rank":0,"label":"PRODUCT","score":0.6717975402,"source":"core_web_sm","input_hash":-774857745,"answer":"accept"}],"meta":{"section":"gaming","score":0.6717975402},"_input_hash":-774857745,"_task_hash":-1965305429,"answer":"accept"} +{"text":"I find it hard to take notes when I'm on Reddit.","spans":[{"start":41,"end":47,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9999813346,"source":"core_web_sm","input_hash":1693750332,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.9999813346},"_input_hash":1693750332,"_task_hash":-852397652,"answer":"accept"} +{"text":"Yes, although the base station & differential aren't strictly necessary.","spans":[{"start":31,"end":35,"text":"&","rank":1,"label":"PRODUCT","score":0.0804897768,"source":"core_web_sm","input_hash":2079128808,"answer":"reject"}],"meta":{"section":"science","score":0.0804897768},"_input_hash":2079128808,"_task_hash":128547762,"answer":"reject"} +{"text":"so* difficult to predict where people's opinion will swing on Reddit.","spans":[{"start":62,"end":68,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9538656498,"source":"core_web_sm","input_hash":-433464206,"answer":"accept"}],"meta":{"section":"ideasfortheadmins","score":0.9538656498},"_input_hash":-433464206,"_task_hash":-1052962041,"answer":"accept"} +{"text":"tex]t So[me oth]er text","spans":[{"start":12,"end":18,"text":"oth]er","rank":0,"label":"PRODUCT","score":0.930959667,"source":"core_web_sm","input_hash":-372115429,"answer":"reject"}],"meta":{"section":"todayilearned","score":0.930959667},"_input_hash":-372115429,"_task_hash":-994879913,"answer":"reject"} +{"text":"This is not something that is in my control, I don't RUN the Q server, I just admin them.","spans":[{"start":61,"end":62,"text":"Q","rank":1,"label":"PRODUCT","score":0.3018524635,"source":"core_web_sm","input_hash":-1254280878,"answer":"ignore"}],"meta":{"section":"tf2","score":0.3018524635},"_input_hash":-1254280878,"_task_hash":-807092536,"answer":"ignore"} +{"text":"I'm on the reddit tracker and apparently on reddit now too.","spans":[{"start":11,"end":17,"text":"reddit","rank":0,"label":"PRODUCT","score":0.7173977589,"source":"core_web_sm","input_hash":-1164352189,"answer":"ignore"}],"meta":{"section":"pics","score":0.7173977589},"_input_hash":-1164352189,"_task_hash":1373968545,"answer":"ignore"} +{"text":"A friend of mine backed up his 486's entire 250mg hdd to floppies in 1996","spans":[{"start":31,"end":34,"text":"486","rank":0,"label":"PRODUCT","score":0.9917013839,"source":"core_web_sm","input_hash":-354322419,"answer":"reject"}],"meta":{"section":"pics","score":0.9917013839},"_input_hash":-354322419,"_task_hash":407736776,"answer":"reject"} +{"text":"So you're saying that I should offer this item up as another Amazon Store for 93 quadrillion dollars?","spans":[{"start":78,"end":80,"text":"93","rank":3,"label":"PRODUCT","score":0.0034272387,"source":"core_web_sm","input_hash":-1161148733,"answer":"reject"}],"meta":{"section":"WTF","score":0.0034272387},"_input_hash":-1161148733,"_task_hash":167919803,"answer":"reject"} +{"text":"A link to the book was posted on Reddit a week a couple of weeks ago.","spans":[{"start":33,"end":39,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9999287428,"source":"core_web_sm","input_hash":-882943997,"answer":"accept"}],"meta":{"section":"programming","score":0.9999287428},"_input_hash":-882943997,"_task_hash":-1286805548,"answer":"accept"} +{"text":"Happy New Years from California!","spans":[{"start":6,"end":15,"text":"New Years","rank":8,"label":"PRODUCT","score":0.0042830466,"source":"core_web_sm","input_hash":-58411213,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0042830466},"_input_hash":-58411213,"_task_hash":-1227886809,"answer":"reject"} +{"text":"How can I take you seriously when you call Razor1911 gayzor1911 and ask a question like that?","spans":[{"start":68,"end":71,"text":"ask","rank":1,"label":"PRODUCT","score":0.2504278175,"source":"core_web_sm","input_hash":-1065402745,"answer":"reject"}],"meta":{"section":"IAmA","score":0.2504278175},"_input_hash":-1065402745,"_task_hash":714014324,"answer":"reject"} +{"text":"Civ 4 is very different to Civ 3.","spans":[{"start":27,"end":32,"text":"Civ 3","rank":1,"label":"PRODUCT","score":0.1423857983,"source":"core_web_sm","input_hash":1853855156,"answer":"accept"}],"meta":{"section":"gaming","score":0.1423857983},"_input_hash":1853855156,"_task_hash":-1137791688,"answer":"accept"} +{"text":"Don't rely on any Civ 3 tactics to work in this game.","spans":[{"start":18,"end":23,"text":"Civ 3","rank":0,"label":"PRODUCT","score":0.9978101493,"source":"core_web_sm","input_hash":1964848413,"answer":"accept"}],"meta":{"section":"gaming","score":0.9978101493},"_input_hash":1964848413,"_task_hash":-1771985290,"answer":"accept"} +{"text":"http://www.reddit.com/r/IAmA/comments/9rtq4/i_run_a_topsite_ftp_server_and_im_in_the_piracy/ Ask any question that you would like :-)","spans":[{"start":93,"end":96,"text":"Ask","rank":1,"label":"PRODUCT","score":0.1800057525,"source":"core_web_sm","input_hash":-1581914827,"answer":"reject"}],"meta":{"section":"IAmA","score":0.1800057525},"_input_hash":-1581914827,"_task_hash":1406355851,"answer":"reject"} +{"text":"I think you have hit the nail on the head....the US has spent more in cash and LIVES than the 9/11 attack destroyed....","spans":[{"start":79,"end":84,"text":"LIVES","rank":7,"label":"PRODUCT","score":0.0227539204,"source":"core_web_sm","input_hash":1582801353,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0227539204},"_input_hash":1582801353,"_task_hash":-752341011,"answer":"reject"} +{"text":"And in reference to *flossdaily's* comment, yes love can hurt but if you cannot move past the hurt and love again you are not doing it right.","spans":[{"start":4,"end":6,"text":"in","rank":6,"label":"PRODUCT","score":0.0208712538,"source":"core_web_sm","input_hash":-1109218721,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0208712538},"_input_hash":-1109218721,"_task_hash":-33700542,"answer":"reject"} +{"text":"If you like your scifi dark, despondent and downbeat why not watch Blakes 7?","spans":[{"start":67,"end":75,"text":"Blakes 7","rank":1,"label":"PRODUCT","score":0.40353253,"source":"core_web_sm","input_hash":1394803481,"answer":"reject"}],"meta":{"section":"scifi","score":0.40353253},"_input_hash":1394803481,"_task_hash":1137254736,"answer":"reject"} +{"text":"I love Windows 7.","spans":[{"start":7,"end":16,"text":"Windows 7","rank":0,"label":"PRODUCT","score":0.9999987743,"source":"core_web_sm","input_hash":1492252972,"answer":"accept"}],"meta":{"section":"fffffffuuuuuuuuuuuu","score":0.9999987743},"_input_hash":1492252972,"_task_hash":551602258,"answer":"accept"} +{"text":"Think I'll go cry about my missing rep now.","spans":[{"start":35,"end":38,"text":"rep","rank":1,"label":"PRODUCT","score":0.4231269468,"source":"core_web_sm","input_hash":-189383493,"answer":"reject"}],"meta":{"section":"politics","score":0.4231269468},"_input_hash":-189383493,"_task_hash":-84742928,"answer":"reject"} +{"text":"I remember New Year's Eve 1999 pretty well.","spans":[{"start":22,"end":30,"text":"Eve 1999","rank":0,"label":"PRODUCT","score":0.4238331606,"source":"core_web_sm","input_hash":1203520043,"answer":"reject"}],"meta":{"section":"pics","score":0.4238331606},"_input_hash":1203520043,"_task_hash":-936428152,"answer":"reject"} +{"text":"It basically brings all of the Win XP goodness into the modern age.","spans":[{"start":31,"end":37,"text":"Win XP","rank":3,"label":"PRODUCT","score":0.0425997119,"source":"core_web_sm","input_hash":565460880,"answer":"accept"}],"meta":{"section":"fffffffuuuuuuuuuuuu","score":0.0425997119},"_input_hash":565460880,"_task_hash":1438433551,"answer":"accept"} +{"text":"Look at all the car commercials and ask yourself, how many of them show a car as most people use it?","spans":[{"start":36,"end":39,"text":"ask","rank":1,"label":"PRODUCT","score":0.0243380982,"source":"core_web_sm","input_hash":-1556635708,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0243380982},"_input_hash":-1556635708,"_task_hash":1131731545,"answer":"reject"} +{"text":"and i use iPlayer all the time so suck on that.","spans":[{"start":10,"end":17,"text":"iPlayer","rank":0,"label":"PRODUCT","score":0.9853890608,"source":"core_web_sm","input_hash":-1197955106,"answer":"accept"}],"meta":{"section":"scifi","score":0.9853890608},"_input_hash":-1197955106,"_task_hash":-354112700,"answer":"accept"} +{"text":"also, Trigun and the Crest of the Stars saga are fantastic.","spans":[{"start":34,"end":39,"text":"Stars","rank":1,"label":"PRODUCT","score":0.2329199651,"source":"core_web_sm","input_hash":-1226620586,"answer":"reject"}],"meta":{"section":"scifi","score":0.2329199651},"_input_hash":-1226620586,"_task_hash":-1701463497,"answer":"reject"} +{"text":"Walk like a Duck.","spans":[{"start":12,"end":16,"text":"Duck","rank":0,"label":"PRODUCT","score":0.7320750128,"source":"core_web_sm","input_hash":855240274,"answer":"reject"}],"meta":{"section":"business","score":0.7320750128},"_input_hash":855240274,"_task_hash":-816938265,"answer":"reject"} +{"text":"And in more even matchups (eg Kursk) your heroes got their assess whipped.","spans":[{"start":30,"end":35,"text":"Kursk","rank":0,"label":"PRODUCT","score":0.7808923471,"source":"core_web_sm","input_hash":177008072,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.7808923471},"_input_hash":177008072,"_task_hash":-1751789362,"answer":"reject"} +{"text":"Welcome to the wonderful world of the PyQt4 community.","spans":[{"start":38,"end":43,"text":"PyQt4","rank":0,"label":"PRODUCT","score":0.7325301696,"source":"core_web_sm","input_hash":534437617,"answer":"ignore"}],"meta":{"section":"Python","score":0.7325301696},"_input_hash":534437617,"_task_hash":1487528372,"answer":"ignore"} +{"text":"> I have consulted Google, but most of the hits are mailing lists with troubleshooting questions.","spans":[{"start":19,"end":25,"text":"Google","rank":0,"label":"PRODUCT","score":0.9281471564,"source":"core_web_sm","input_hash":1113028985,"answer":"accept"}],"meta":{"section":"Python","score":0.9281471564},"_input_hash":1113028985,"_task_hash":647518233,"answer":"accept"} +{"text":"Cockatiel vs Metal Chicken with new music & victorious ending.","spans":[{"start":42,"end":46,"text":"&","rank":1,"label":"PRODUCT","score":0.302391037,"source":"core_web_sm","input_hash":-127195150,"answer":"reject"}],"meta":{"section":"videos","score":0.302391037},"_input_hash":-127195150,"_task_hash":1283491339,"answer":"reject"} +{"text":"Considering that the Nehalem Xeon chips in the latest incarnation had not been officially announced by Intel before the Mac Pro started shipping","spans":[{"start":124,"end":127,"text":"Pro","rank":0,"label":"PRODUCT","score":0.575852878,"source":"core_web_sm","input_hash":-583921173,"answer":"reject"}],"meta":{"section":"apple","score":0.575852878},"_input_hash":-583921173,"_task_hash":128391988,"answer":"reject"} +{"text":"Porn is no more inherently addictive than World of Warcraft, just some people tend to have an addiction quality in those areas.","spans":[{"start":51,"end":59,"text":"Warcraft","rank":1,"label":"PRODUCT","score":0.0043282624,"source":"core_web_sm","input_hash":1005560383,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0043282624},"_input_hash":1005560383,"_task_hash":1129665108,"answer":"reject"} +{"text":"Any relationships ruined by Porn fall into two catigories.","spans":[{"start":28,"end":37,"text":"Porn fall","rank":2,"label":"PRODUCT","score":0.1489143343,"source":"core_web_sm","input_hash":-718202508,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.1489143343},"_input_hash":-718202508,"_task_hash":1543277722,"answer":"reject"} +{"text":"(See also: Microsoft's launch of the Zune 2.0 update and various service packs for Windows without charging.)","spans":[{"start":83,"end":90,"text":"Windows","rank":0,"label":"PRODUCT","score":0.9999935822,"source":"core_web_sm","input_hash":-73125003,"answer":"accept"}],"meta":{"section":"apple","score":0.9999935822},"_input_hash":-73125003,"_task_hash":1184428950,"answer":"accept"} +{"text":"I know that reading Wikipedia is not a good way for me to learn abstract math concepts (I've tried before).","spans":[{"start":20,"end":29,"text":"Wikipedia","rank":0,"label":"PRODUCT","score":0.9982458808,"source":"core_web_sm","input_hash":801250229,"answer":"accept"}],"meta":{"section":"math","score":0.9982458808},"_input_hash":801250229,"_task_hash":-448017754,"answer":"accept"} +{"text":"He forgot to mention that the 16K expansion pack had a connector so fragile that if you bumped it directly, or indirectly by say moving the ZX81 itself, the ZX81 would reboot, losing everything you had done.","spans":[{"start":140,"end":144,"text":"ZX81","rank":0,"label":"PRODUCT","score":0.9998872647,"source":"core_web_sm","input_hash":-1782451095,"answer":"accept"}],"meta":{"section":"gadgets","score":0.9998872647},"_input_hash":-1782451095,"_task_hash":-69613647,"answer":"accept"} +{"text":"Having said that, the ZX81 was awesome, and should not be in a worst computer list at all","spans":[{"start":22,"end":26,"text":"ZX81","rank":0,"label":"PRODUCT","score":0.9999185679,"source":"core_web_sm","input_hash":1771042050,"answer":"accept"}],"meta":{"section":"gadgets","score":0.9999185679},"_input_hash":1771042050,"_task_hash":-1927562094,"answer":"accept"} +{"text":"As a Puerto Rican (who works in an ER), I must correct you.","spans":[{"start":5,"end":17,"text":"Puerto Rican","rank":5,"label":"PRODUCT","score":0.0525412378,"source":"core_web_sm","input_hash":-152515614,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0525412378},"_input_hash":-152515614,"_task_hash":1380594971,"answer":"reject"} +{"text":"Look into Wellbutrin, It actually decreased my appetite and gave me ungodly boners.","spans":[{"start":10,"end":20,"text":"Wellbutrin","rank":0,"label":"PRODUCT","score":0.938028288,"source":"core_web_sm","input_hash":2041505381,"answer":"accept"}],"meta":{"section":"IAmA","score":0.938028288},"_input_hash":2041505381,"_task_hash":14644643,"answer":"accept"} +{"text":"Do you think there is any biblical influence in a Christian Law school?","spans":[{"start":50,"end":63,"text":"Christian Law","rank":3,"label":"PRODUCT","score":0.006330702,"source":"core_web_sm","input_hash":1924379170,"answer":"reject"}],"meta":{"section":"atheism","score":0.006330702},"_input_hash":1924379170,"_task_hash":424154624,"answer":"reject"} +{"text":"I actually fell for the Google TV one.","spans":[{"start":24,"end":30,"text":"Google","rank":0,"label":"PRODUCT","score":0.8816471906,"source":"core_web_sm","input_hash":394041193,"answer":"reject"}],"meta":{"section":"WTF","score":0.8816471906},"_input_hash":394041193,"_task_hash":513973003,"answer":"reject"} +{"text":"you wont find a G10 for around a thousand dollars, you can find a U1 for around nine hundred, or an S1 for around a thousand","spans":[{"start":16,"end":19,"text":"G10","rank":0,"label":"PRODUCT","score":0.8441158807,"source":"core_web_sm","input_hash":1123308795,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.8441158807},"_input_hash":1123308795,"_task_hash":1667883379,"answer":"accept"} +{"text":"600HZ subfield drive does a little bit better capturing fast motion than the one the U1 has, other than that they're very similar sets","spans":[{"start":85,"end":87,"text":"U1","rank":0,"label":"PRODUCT","score":0.7495463869,"source":"core_web_sm","input_hash":-1782587118,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.7495463869},"_input_hash":-1782587118,"_task_hash":1268587114,"answer":"accept"} +{"text":"You are now responsible for the next year for every death that occurs in Time's Square via bomb!","spans":[{"start":80,"end":86,"text":"Square","rank":2,"label":"PRODUCT","score":0.0502925949,"source":"core_web_sm","input_hash":-2014836871,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0502925949},"_input_hash":-2014836871,"_task_hash":-464369394,"answer":"reject"} +{"text":"and then my Sophomore year in College, I had teachers/professors that nearly mocked it and those who used it.","spans":[{"start":30,"end":37,"text":"College","rank":1,"label":"PRODUCT","score":0.335248298,"source":"core_web_sm","input_hash":2035441289,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.335248298},"_input_hash":2035441289,"_task_hash":-20604741,"answer":"reject"} +{"text":"What a great IAMA!","spans":[{"start":13,"end":17,"text":"IAMA","rank":3,"label":"PRODUCT","score":0.0024384903,"source":"core_web_sm","input_hash":-594531598,"answer":"reject"}],"meta":{"section":"IAmA","score":0.0024384903},"_input_hash":-594531598,"_task_hash":-126300842,"answer":"reject"} +{"text":"I suspect I have AS but don't have the desire/resources to get a proper diagnosis.","spans":[{"start":45,"end":46,"text":"/","rank":4,"label":"PRODUCT","score":0.006328575,"source":"core_web_sm","input_hash":1351190586,"answer":"reject"}],"meta":{"section":"IAmA","score":0.006328575},"_input_hash":1351190586,"_task_hash":-789432384,"answer":"reject"} +{"text":"You should probably call a *lawyer* and ask them.","spans":[{"start":40,"end":43,"text":"ask","rank":0,"label":"PRODUCT","score":0.9632023706,"source":"core_web_sm","input_hash":-453102134,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.9632023706},"_input_hash":-453102134,"_task_hash":1307470438,"answer":"reject"} +{"text":"you're browsing the same Reddit","spans":[{"start":25,"end":31,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9999918876,"source":"core_web_sm","input_hash":1445929669,"answer":"accept"}],"meta":{"section":"politics","score":0.9999918876},"_input_hash":1445929669,"_task_hash":-97049031,"answer":"accept"} +{"text":"The track leading up to the ramp looked rather bumpy and he stated it was slick.","spans":[{"start":18,"end":23,"text":"up to","rank":4,"label":"PRODUCT","score":0.0070857816,"source":"core_web_sm","input_hash":1794296807,"answer":"reject"}],"meta":{"section":"sports","score":0.0070857816},"_input_hash":1794296807,"_task_hash":86891604,"answer":"reject"} +{"text":"I remember they won and then lost a Grammy.","spans":[{"start":36,"end":42,"text":"Grammy","rank":1,"label":"PRODUCT","score":0.2182210434,"source":"core_web_sm","input_hash":-1248636658,"answer":"reject"}],"meta":{"section":"pics","score":0.2182210434},"_input_hash":-1248636658,"_task_hash":1414719222,"answer":"reject"} +{"text":"\"Recursive sequence\" could mean infinitely-many variations that can't be picked up so simply (n-th degree polynomials).","spans":[{"start":1,"end":10,"text":"Recursive","rank":0,"label":"PRODUCT","score":0.8272958274,"source":"core_web_sm","input_hash":-1149291497,"answer":"reject"}],"meta":{"section":"programming","score":0.8272958274},"_input_hash":-1149291497,"_task_hash":1414706425,"answer":"reject"} +{"text":"So sure you *can* call your local precinct and ask them, or call a lawyer","spans":[{"start":47,"end":50,"text":"ask","rank":0,"label":"PRODUCT","score":0.938685524,"source":"core_web_sm","input_hash":1450021110,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.938685524},"_input_hash":1450021110,"_task_hash":1164704711,"answer":"reject"} +{"text":"> My first paying job was a Senate policy analyst.","spans":[{"start":2,"end":10,"text":"My first","rank":1,"label":"PRODUCT","score":0.3926591915,"source":"core_web_sm","input_hash":-448426807,"answer":"reject"}],"meta":{"section":"politics","score":0.3926591915},"_input_hash":-448426807,"_task_hash":21164691,"answer":"reject"} +{"text":"id on Steam -","spans":[{"start":6,"end":11,"text":"Steam","rank":1,"label":"PRODUCT","score":0.4475258646,"source":"core_web_sm","input_hash":-142813704,"answer":"accept"}],"meta":{"section":"gaming","score":0.4475258646},"_input_hash":-142813704,"_task_hash":1517418221,"answer":"accept"} +{"text":"He's as RINO as they come. \"","spans":[{"start":8,"end":12,"text":"RINO","rank":5,"label":"PRODUCT","score":0.0065987815,"source":"core_web_sm","input_hash":1771717459,"answer":"reject"}],"meta":{"section":"politics","score":0.0065987815},"_input_hash":1771717459,"_task_hash":-1860868520,"answer":"reject"} +{"text":"but Wikipedia did.","spans":[{"start":4,"end":13,"text":"Wikipedia","rank":0,"label":"PRODUCT","score":0.4254142225,"source":"core_web_sm","input_hash":-101146765,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.4254142225},"_input_hash":-101146765,"_task_hash":-1674052061,"answer":"accept"} +{"text":"After getting well into my Math PhD program, I got extremely burned out.","spans":[{"start":32,"end":35,"text":"PhD","rank":1,"label":"PRODUCT","score":0.3298000025,"source":"core_web_sm","input_hash":2044247580,"answer":"reject"}],"meta":{"section":"IAmA","score":0.3298000025},"_input_hash":2044247580,"_task_hash":-950048444,"answer":"reject"} +{"text":"I've got far too many toons that I have already been playing through my time in WoW, and have a guild that I won't leave,","spans":[{"start":80,"end":83,"text":"WoW","rank":0,"label":"PRODUCT","score":0.9960799507,"source":"core_web_sm","input_hash":-744748841,"answer":"accept"}],"meta":{"section":"wow","score":0.9960799507},"_input_hash":-744748841,"_task_hash":1862073203,"answer":"accept"} +{"text":"Mine is the same as my Reddit name - Rhinne","spans":[{"start":23,"end":29,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9996473317,"source":"core_web_sm","input_hash":1470440265,"answer":"accept"}],"meta":{"section":"wow","score":0.9996473317},"_input_hash":1470440265,"_task_hash":-203237197,"answer":"accept"} +{"text":"So, ask yourself: does daddy know you're seeing his angel?","spans":[{"start":4,"end":7,"text":"ask","rank":1,"label":"PRODUCT","score":0.0386324496,"source":"core_web_sm","input_hash":-1529404048,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0386324496},"_input_hash":-1529404048,"_task_hash":1510452785,"answer":"reject"} +{"text":"They DON'T require glasses and you have to be within a certain viewing angle (roughly akin to a smaller LCD TV)","spans":[{"start":5,"end":10,"text":"DON'T","rank":1,"label":"PRODUCT","score":0.0445251006,"source":"core_web_sm","input_hash":-677925592,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0445251006},"_input_hash":-677925592,"_task_hash":2135217329,"answer":"reject"} +{"text":"You may ask this question if both his balls were chopped off.","spans":[{"start":8,"end":11,"text":"ask","rank":0,"label":"PRODUCT","score":0.9999933534,"source":"core_web_sm","input_hash":303945567,"answer":"reject"}],"meta":{"section":"IAmA","score":0.9999933534},"_input_hash":303945567,"_task_hash":2114545470,"answer":"reject"} +{"text":"Smart people ask questions.","spans":[{"start":13,"end":16,"text":"ask","rank":0,"label":"PRODUCT","score":0.9197326686,"source":"core_web_sm","input_hash":-321913194,"answer":"reject"}],"meta":{"section":"philosophy","score":0.9197326686},"_input_hash":-321913194,"_task_hash":1767903699,"answer":"reject"} +{"text":"CUE 2012 CONSPIRACY THEORIES","spans":[{"start":9,"end":19,"text":"CONSPIRACY","rank":0,"label":"PRODUCT","score":0.9869126279,"source":"core_web_sm","input_hash":1134045504,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.9869126279},"_input_hash":1134045504,"_task_hash":2056894423,"answer":"reject"} +{"text":"Call it a fallacy, call it something else, you're wrong when you say reddit is a radically different place than","spans":[{"start":69,"end":75,"text":"reddit","rank":0,"label":"PRODUCT","score":0.9997530269,"source":"core_web_sm","input_hash":988957502,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9997530269},"_input_hash":988957502,"_task_hash":1495083778,"answer":"accept"} +{"text":"Things are much easier now with the new Quest Map that Blizzard have added to the game, which will tell you what area to go to for the quests you have, and mark it all on your map.","spans":[{"start":40,"end":49,"text":"Quest Map","rank":3,"label":"PRODUCT","score":0.1012091521,"source":"core_web_sm","input_hash":678085397,"answer":"accept"}],"meta":{"section":"wow","score":0.1012091521},"_input_hash":678085397,"_task_hash":-1134424016,"answer":"accept"} +{"text":"Cerebral Cortex makes it so.","spans":[{"start":9,"end":15,"text":"Cortex","rank":0,"label":"PRODUCT","score":0.9995475712,"source":"core_web_sm","input_hash":-853052452,"answer":"reject"}],"meta":{"section":"atheism","score":0.9995475712},"_input_hash":-853052452,"_task_hash":656407544,"answer":"reject"} +{"text":"and bobby pins/hair clips - completely disposable because i lose them all the time.","spans":[{"start":14,"end":15,"text":"/","rank":2,"label":"PRODUCT","score":0.0942007593,"source":"core_web_sm","input_hash":-903176440,"answer":"reject"}],"meta":{"section":"DoesAnybodyElse","score":0.0942007593},"_input_hash":-903176440,"_task_hash":1673737942,"answer":"reject"} +{"text":"Things like Motorstorm 2 are pretty fun 2-4 player splitscreen local, but there's no splitscreen online","spans":[{"start":12,"end":24,"text":"Motorstorm 2","rank":0,"label":"PRODUCT","score":0.8015168718,"source":"core_web_sm","input_hash":584728173,"answer":"accept"}],"meta":{"section":"PS3","score":0.8015168718},"_input_hash":584728173,"_task_hash":1102018040,"answer":"accept"} +{"text":"I just lost the entire 4th grade.","spans":[{"start":23,"end":26,"text":"4th","rank":0,"label":"PRODUCT","score":0.6247781774,"source":"core_web_sm","input_hash":746713601,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.6247781774},"_input_hash":746713601,"_task_hash":-1809443162,"answer":"reject"} +{"text":"Vatanam dobare azad mishavi.","spans":[{"start":0,"end":7,"text":"Vatanam","rank":1,"label":"PRODUCT","score":0.3602562498,"source":"core_web_sm","input_hash":725057353,"answer":"ignore"}],"meta":{"section":"Music","score":0.3602562498},"_input_hash":725057353,"_task_hash":-362304352,"answer":"ignore"} +{"text":"Yes' (to give an opt-out system instead of an opt-in system).","spans":[{"start":46,"end":49,"text":"opt","rank":1,"label":"PRODUCT","score":0.3945921641,"source":"core_web_sm","input_hash":430230693,"answer":"reject"}],"meta":{"section":"IAmA","score":0.3945921641},"_input_hash":430230693,"_task_hash":-1302737257,"answer":"reject"} +{"text":"so now no one can tell that they were 2007 Shimano 105s.","spans":[{"start":51,"end":55,"text":"105s","rank":0,"label":"PRODUCT","score":0.8728397035,"source":"core_web_sm","input_hash":1800505103,"answer":"reject"}],"meta":{"section":"bicycling","score":0.8728397035},"_input_hash":1800505103,"_task_hash":373943559,"answer":"reject"} +{"text":"Maybe I can convince him to get a Reddit account and share some of the more crazy ones.","spans":[{"start":34,"end":40,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9999878649,"source":"core_web_sm","input_hash":2083159955,"answer":"accept"}],"meta":{"section":"IAmA","score":0.9999878649},"_input_hash":2083159955,"_task_hash":-1476361368,"answer":"accept"} +{"text":", you're wrong when you say reddit is a radically different place than","spans":[{"start":28,"end":34,"text":"reddit","rank":0,"label":"PRODUCT","score":0.9997002653,"source":"core_web_sm","input_hash":-1734982147,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9997002653},"_input_hash":-1734982147,"_task_hash":-1603164979,"answer":"accept"} +{"text":", you can ask for an exception because your unemployed but they will just put what you owe on a tab and garnish more when you are re-employed.","spans":[{"start":10,"end":13,"text":"ask","rank":2,"label":"PRODUCT","score":0.032432007,"source":"core_web_sm","input_hash":1383154865,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.032432007},"_input_hash":1383154865,"_task_hash":-1403669672,"answer":"reject"} +{"text":"Why not just go to some little UBB forum with little pecking orders, Retarded people who elect to invent shit that others didn't write, then call them on the basis of their imagination,","spans":[{"start":41,"end":45,"text":"with","rank":0,"label":"PRODUCT","score":0.4429906668,"source":"core_web_sm","input_hash":2134275973,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.4429906668},"_input_hash":2134275973,"_task_hash":774121442,"answer":"reject"} +{"text":"the only time set we ever actually needed.","spans":[{"start":4,"end":8,"text":"only","rank":1,"label":"PRODUCT","score":0.172359935,"source":"core_web_sm","input_hash":468981503,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.172359935},"_input_hash":468981503,"_task_hash":-1382424182,"answer":"reject"} +{"text":"Clearly a Macintosh.","spans":[{"start":10,"end":19,"text":"Macintosh","rank":1,"label":"PRODUCT","score":0.1467509091,"source":"core_web_sm","input_hash":-817164346,"answer":"accept"}],"meta":{"section":"pics","score":0.1467509091},"_input_hash":-817164346,"_task_hash":-949959165,"answer":"accept"} +{"text":"My mother used to always say \"Death is only scary for the living, when your dead you're not going to be doing much worrying.","spans":[{"start":30,"end":35,"text":"Death","rank":1,"label":"PRODUCT","score":0.0670170037,"source":"core_web_sm","input_hash":-813224215,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0670170037},"_input_hash":-813224215,"_task_hash":926158767,"answer":"reject"} +{"text":"Oh hey iPhone, \"fat\" is exactly what I meant to say.","spans":[{"start":7,"end":13,"text":"iPhone","rank":1,"label":"PRODUCT","score":0.36178602,"source":"core_web_sm","input_hash":610910847,"answer":"accept"}],"meta":{"section":"DoesAnybodyElse","score":0.36178602},"_input_hash":610910847,"_task_hash":-165202198,"answer":"accept"} +{"text":"Would you say that they were hopelessly laissez-faire, and the KeyserSosa and co are introducing some welcome, long overdue changes?","spans":[{"start":63,"end":73,"text":"KeyserSosa","rank":1,"label":"PRODUCT","score":0.2140113599,"source":"core_web_sm","input_hash":1946340220,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.2140113599},"_input_hash":1946340220,"_task_hash":-1978907873,"answer":"reject"} +{"text":"* dot product (0.6,0.8)\u2022(1,0) = 0.6,","spans":[{"start":15,"end":28,"text":"0.6,0.8)\u2022(1,0","rank":0,"label":"PRODUCT","score":0.9693614112,"source":"core_web_sm","input_hash":-1975149576,"answer":"reject"}],"meta":{"section":"math","score":0.9693614112},"_input_hash":-1975149576,"_task_hash":-1449904862,"answer":"reject"} +{"text":"Get the fuck off Reddit and go do something awesome.","spans":[{"start":17,"end":23,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9997980699,"source":"core_web_sm","input_hash":-380234960,"answer":"accept"}],"meta":{"section":"DoesAnybodyElse","score":0.9997980699},"_input_hash":-380234960,"_task_hash":-2023124468,"answer":"accept"} +{"text":"The whole \"Hey, I'm part of the Reddit community too, surely I must be smart and level-headed!\"","spans":[{"start":32,"end":38,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9995446031,"source":"core_web_sm","input_hash":-53732097,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.9995446031},"_input_hash":-53732097,"_task_hash":-285099319,"answer":"accept"} +{"text":"And being woken up everz night around 4am.","spans":[{"start":38,"end":39,"text":"4","rank":0,"label":"PRODUCT","score":0.5916654655,"source":"core_web_sm","input_hash":1200967201,"answer":"reject"}],"meta":{"section":"IAmA","score":0.5916654655},"_input_hash":1200967201,"_task_hash":1722466845,"answer":"reject"} +{"text":"It seems that there are people who would kill for a gen 1 Logitech G15 or an IBM model M, they have become so scarce.","spans":[{"start":87,"end":88,"text":"M","rank":0,"label":"PRODUCT","score":0.6986483449,"source":"core_web_sm","input_hash":517319591,"answer":"reject"}],"meta":{"section":"gaming","score":0.6986483449},"_input_hash":517319591,"_task_hash":-1055798289,"answer":"reject"} +{"text":"He actually *was* playing WoW,","spans":[{"start":26,"end":29,"text":"WoW","rank":0,"label":"PRODUCT","score":0.9999988089,"source":"core_web_sm","input_hash":-1135798669,"answer":"accept"}],"meta":{"section":"gaming","score":0.9999988089},"_input_hash":-1135798669,"_task_hash":-1862730182,"answer":"accept"} +{"text":"so i figured I'd ask you guys since you would likely be the most knowledgeable on the subject.","spans":[{"start":17,"end":20,"text":"ask","rank":0,"label":"PRODUCT","score":0.9948630522,"source":"core_web_sm","input_hash":2059816133,"answer":"reject"}],"meta":{"section":"depression","score":0.9948630522},"_input_hash":2059816133,"_task_hash":396018887,"answer":"reject"} +{"text":"Reddit?","spans":[{"start":0,"end":6,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9999080022,"source":"core_web_sm","input_hash":-301218049,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9999080022},"_input_hash":-301218049,"_task_hash":1980060542,"answer":"accept"} +{"text":"Government officials credited the increased economic activity to Reddit user dustball.","spans":[{"start":65,"end":71,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9997310627,"source":"core_web_sm","input_hash":522260381,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9997310627},"_input_hash":522260381,"_task_hash":1746277127,"answer":"accept"} +{"text":"\"Aw man, I'm covered in my own piss, this day couldn't get any worse\"","spans":[{"start":1,"end":7,"text":"Aw man","rank":0,"label":"PRODUCT","score":0.6012208315,"source":"core_web_sm","input_hash":-948,"answer":"reject"}],"meta":{"section":"tf2au","score":0.6012208315},"_input_hash":-948,"_task_hash":-588400610,"answer":"reject"} +{"text":">calcium Naha...*boner","spans":[{"start":9,"end":13,"text":"Naha","rank":1,"label":"PRODUCT","score":0.002276951,"source":"core_web_sm","input_hash":2103665135,"answer":"reject"}],"meta":{"section":"IAmA","score":0.002276951},"_input_hash":2103665135,"_task_hash":1601500293,"answer":"reject"} +{"text":"This review over on No Mutants Allowed goes into detail on the subject of the plot issues (and other failings of Fallout 3 as a Fallout sequel), but keep in mind that people over on NMA are really hardcore purists, they're on the very end of the purism spectrum.","spans":[{"start":113,"end":122,"text":"Fallout 3","rank":0,"label":"PRODUCT","score":0.8949957346,"source":"core_web_sm","input_hash":1711400051,"answer":"accept"}],"meta":{"section":"gaming","score":0.8949957346},"_input_hash":1711400051,"_task_hash":-2051014193,"answer":"accept"} +{"text":"In Fallout 3 they eat people (what the hell?) and just plain kill you on sight.","spans":[{"start":3,"end":12,"text":"Fallout 3","rank":0,"label":"PRODUCT","score":0.9859049844,"source":"core_web_sm","input_hash":1807777449,"answer":"accept"}],"meta":{"section":"gaming","score":0.9859049844},"_input_hash":1807777449,"_task_hash":-1756741468,"answer":"accept"} +{"text":"However, comparing Fallout 3 to similar games like Morrowind, Oblivion, Gothic, Two Worlds, Assassins Creed, etc presents a much more favourable reaction.","spans":[{"start":19,"end":28,"text":"Fallout 3","rank":0,"label":"PRODUCT","score":0.9991096344,"source":"core_web_sm","input_hash":-223923143,"answer":"accept"}],"meta":{"section":"gaming","score":0.9991096344},"_input_hash":-223923143,"_task_hash":1881921708,"answer":"accept"} +{"text":"I haven't played since Ravnica block I think,","spans":[{"start":23,"end":30,"text":"Ravnica","rank":1,"label":"PRODUCT","score":0.3711994436,"source":"core_web_sm","input_hash":-531918558,"answer":"ignore"}],"meta":{"section":"tf2","score":0.3711994436},"_input_hash":-531918558,"_task_hash":1893559997,"answer":"ignore"} +{"text":"The commons - land, airwaves, sea, natural resources, information - none of these can be managed by a free market, however.","spans":[{"start":4,"end":11,"text":"commons","rank":2,"label":"PRODUCT","score":0.0070593582,"source":"core_web_sm","input_hash":-416339229,"answer":"reject"}],"meta":{"section":"Libertarian","score":0.0070593582},"_input_hash":-416339229,"_task_hash":-1837911842,"answer":"reject"} +{"text":"But if you actually look at that specific Wikipedia article they take the concept of determinant, explain it, provide images, (something you will not find in most LA text) and the page probably also provides a lot of other links, and there is also MIT courses online... (hell you could even Google).","spans":[{"start":291,"end":297,"text":"Google","rank":0,"label":"PRODUCT","score":0.9999990151,"source":"core_web_sm","input_hash":-717716719,"answer":"ignore"},{"start":42,"end":51,"text":"Wikipedia","rank":0,"label":"PRODUCT","score":0.9999990151,"source":"core_web_sm","input_hash":-717716719,"answer":"accept"}],"meta":{"section":"math","score":0.9999990151},"_input_hash":-717716719,"_task_hash":902113739,"answer":"ignore"} +{"text":"But if you actually look at that specific Wikipedia article they take the concept of determinant, explain it, provide images, (something you will not find in most LA text) and the page probably also provides a lot of other links, and there is also MIT courses online... (hell you could even Google).","spans":[{"start":42,"end":51,"text":"Wikipedia","rank":0,"label":"PRODUCT","score":0.9999990151,"source":"core_web_sm","input_hash":-717716719,"answer":"accept"}],"meta":{"section":"math","score":0.9999990151},"_input_hash":-717716719,"_task_hash":1292476643,"answer":"accept"} +{"text":"Only because reddit includes jQuery in the first place.","spans":[{"start":29,"end":35,"text":"jQuery","rank":0,"label":"PRODUCT","score":0.9886426594,"source":"core_web_sm","input_hash":-252559946,"answer":"accept"}],"meta":{"section":"pics","score":0.9886426594},"_input_hash":-252559946,"_task_hash":1538125951,"answer":"accept"} +{"text":"We need more writhing on Reddit.","spans":[{"start":25,"end":31,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9999953241,"source":"core_web_sm","input_hash":70559431,"answer":"accept"}],"meta":{"section":"WTF","score":0.9999953241},"_input_hash":70559431,"_task_hash":1915614993,"answer":"accept"} +{"text":"+/- ?) Alzheimer's-ridden grandma admits feeding her poodle one piece of chocolate per night (-1)","spans":[{"start":7,"end":18,"text":"Alzheimer's","rank":0,"label":"PRODUCT","score":0.9835639796,"source":"core_web_sm","input_hash":939629650,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.9835639796},"_input_hash":939629650,"_task_hash":1147242683,"answer":"reject"} +{"text":"> we will have completed the first year of the '10's.","spans":[{"start":48,"end":50,"text":"10","rank":7,"label":"PRODUCT","score":0.0061978318,"source":"core_web_sm","input_hash":1219680897,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0061978318},"_input_hash":1219680897,"_task_hash":383333711,"answer":"reject"} +{"text":"Stayed home, drank strawberry milk, Moderated a Forum, browsed Reddit, played a bit of Quake Live whilst listening to the radio.","spans":[{"start":63,"end":69,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.7432314611,"source":"core_web_sm","input_hash":-842244493,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.7432314611},"_input_hash":-842244493,"_task_hash":-1953922345,"answer":"accept"} +{"text":"I don't count Duck Face, he's dead to me.","spans":[{"start":14,"end":23,"text":"Duck Face","rank":1,"label":"PRODUCT","score":0.0017776361,"source":"core_web_sm","input_hash":-2139831126,"answer":"reject"}],"meta":{"section":"pics","score":0.0017776361},"_input_hash":-2139831126,"_task_hash":-1955142469,"answer":"reject"} +{"text":">Especially after WWI and WWII","spans":[{"start":26,"end":30,"text":"WWII","rank":15,"label":"PRODUCT","score":0.0026428378,"source":"core_web_sm","input_hash":-528437477,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0026428378},"_input_hash":-528437477,"_task_hash":608402090,"answer":"reject"} +{"text":"Shit, check out Janglin' and Carries On, and","spans":[{"start":29,"end":36,"text":"Carries","rank":0,"label":"PRODUCT","score":0.4795682769,"source":"core_web_sm","input_hash":-251097980,"answer":"reject"}],"meta":{"section":"Music","score":0.4795682769},"_input_hash":-251097980,"_task_hash":-473577323,"answer":"reject"} +{"text":"Only thing I can do is to ask you to not hold it against all of us","spans":[{"start":26,"end":29,"text":"ask","rank":1,"label":"PRODUCT","score":0.0161733326,"source":"core_web_sm","input_hash":-1224598808,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0161733326},"_input_hash":-1224598808,"_task_hash":-1565575795,"answer":"reject"} +{"text":"I ask this because I hear that people who did a lot of speed just physically feel older than they are.","spans":[{"start":2,"end":5,"text":"ask","rank":1,"label":"PRODUCT","score":0.4290980064,"source":"core_web_sm","input_hash":-61065571,"answer":"reject"}],"meta":{"section":"IAmA","score":0.4290980064},"_input_hash":-61065571,"_task_hash":-727662406,"answer":"reject"} +{"text":"If they ask, say you're just being transported.","spans":[{"start":8,"end":11,"text":"ask","rank":0,"label":"PRODUCT","score":0.9733959901,"source":"core_web_sm","input_hash":515932472,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.9733959901},"_input_hash":515932472,"_task_hash":-1807312039,"answer":"reject"} +{"text":"I just can't properly perform the half-lit broken knees dance at John Mayer concerts, would look like a dick with bangs, and can't wear American Apparel clothing","spans":[{"start":70,"end":84,"text":"Mayer concerts","rank":2,"label":"PRODUCT","score":0.0974859679,"source":"core_web_sm","input_hash":1116851598,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0974859679},"_input_hash":1116851598,"_task_hash":767639701,"answer":"reject"} +{"text":"So, the pro-choice argument, which you seem to agree with, it that a government does not have the right to tell a woman what to do with her body.","spans":[{"start":8,"end":11,"text":"pro","rank":0,"label":"PRODUCT","score":0.7376816168,"source":"core_web_sm","input_hash":-987788439,"answer":"reject"}],"meta":{"section":"Libertarian","score":0.7376816168},"_input_hash":-987788439,"_task_hash":446883543,"answer":"reject"} +{"text":"I use Prorsasso as my shaving cream, which really has helped with my sensitive skin.","spans":[{"start":6,"end":15,"text":"Prorsasso","rank":1,"label":"PRODUCT","score":0.2773729913,"source":"core_web_sm","input_hash":257111065,"answer":"accept"}],"meta":{"section":"IAmA","score":0.2773729913},"_input_hash":257111065,"_task_hash":-1775404217,"answer":"accept"} +{"text":"I use a Merkur long handle razor and Derby Extra blades.","spans":[{"start":43,"end":48,"text":"Extra","rank":1,"label":"PRODUCT","score":0.4755028383,"source":"core_web_sm","input_hash":-751995295,"answer":"reject"}],"meta":{"section":"IAmA","score":0.4755028383},"_input_hash":-751995295,"_task_hash":-1266003954,"answer":"reject"} +{"text":"I admit I'm surprised about the huge LD50, though as you said already,","spans":[{"start":37,"end":41,"text":"LD50","rank":1,"label":"PRODUCT","score":0.0235245519,"source":"core_web_sm","input_hash":-1194136151,"answer":"reject"}],"meta":{"section":"worldnews","score":0.0235245519},"_input_hash":-1194136151,"_task_hash":1831337747,"answer":"reject"} +{"text":"but I definitely look for something, I don't know, a little more artistic..say Eon McKai or WinkyTiki..","spans":[{"start":92,"end":101,"text":"WinkyTiki","rank":0,"label":"PRODUCT","score":0.8420319854,"source":"core_web_sm","input_hash":313704163,"answer":"ignore"}],"meta":{"section":"IAmA","score":0.8420319854},"_input_hash":313704163,"_task_hash":-505761422,"answer":"ignore"} +{"text":"I took a MaxSize once with a Red Bull and it felt like my heart was going to explode, I sweated a lot, and felt sick.","spans":[{"start":9,"end":16,"text":"MaxSize","rank":0,"label":"PRODUCT","score":0.9843306997,"source":"core_web_sm","input_hash":-766074582,"answer":"accept"}],"meta":{"section":"IAmA","score":0.9843306997},"_input_hash":-766074582,"_task_hash":26324323,"answer":"accept"} +{"text":"Dejected, I drove up to the Berkeley hills in my 89 Volvo Stationwagon and played chicken with large deer, while blasting Jamaican dance hall music and smoking cheap cigarillos.","spans":[{"start":58,"end":70,"text":"Stationwagon","rank":2,"label":"PRODUCT","score":0.0909864763,"source":"core_web_sm","input_hash":-2056294300,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0909864763},"_input_hash":-2056294300,"_task_hash":367664472,"answer":"reject"} +{"text":"A similar number of Crusaders where Christian.","spans":[{"start":20,"end":29,"text":"Crusaders","rank":0,"label":"PRODUCT","score":0.9988695908,"source":"core_web_sm","input_hash":699339258,"answer":"reject"}],"meta":{"section":"WTF","score":0.9988695908},"_input_hash":699339258,"_task_hash":-317292717,"answer":"reject"} +{"text":">violent black/white contrast and glaring light of a computer screen I understand, and while it used to bother me I've gotten used to it","spans":[{"start":1,"end":14,"text":"violent black","rank":5,"label":"PRODUCT","score":0.0129254252,"source":"core_web_sm","input_hash":-921695609,"answer":"reject"}],"meta":{"section":"Christianity","score":0.0129254252},"_input_hash":-921695609,"_task_hash":-1886866578,"answer":"reject"} +{"text":"I'm actually an English major who then got a M.Ed and is now moving into a Phd.","spans":[{"start":75,"end":78,"text":"Phd","rank":0,"label":"PRODUCT","score":0.741231035,"source":"core_web_sm","input_hash":-1125183913,"answer":"reject"}],"meta":{"section":"math","score":0.741231035},"_input_hash":-1125183913,"_task_hash":1580514807,"answer":"reject"} +{"text":"insert easy Reddit/Bacon joke","spans":[{"start":12,"end":24,"text":"Reddit/Bacon","rank":0,"label":"PRODUCT","score":0.858114375,"source":"core_web_sm","input_hash":255396513,"answer":"reject"}],"meta":{"section":"IAmA","score":0.858114375},"_input_hash":255396513,"_task_hash":428947064,"answer":"reject"} +{"text":"please KeyserSosa: go ahead and ban me, or take away my useless karma,","spans":[{"start":7,"end":17,"text":"KeyserSosa","rank":0,"label":"PRODUCT","score":0.8339379699,"source":"core_web_sm","input_hash":-836444125,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.8339379699},"_input_hash":-836444125,"_task_hash":-41265876,"answer":"reject"} +{"text":"Reddit is a community, but you have been treating it like a riot.","spans":[{"start":0,"end":6,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9576245002,"source":"core_web_sm","input_hash":722049467,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9576245002},"_input_hash":722049467,"_task_hash":-2139555673,"answer":"accept"} +{"text":"and it's PyQt4 equivalent.","spans":[{"start":9,"end":14,"text":"PyQt4","rank":0,"label":"PRODUCT","score":0.7389213111,"source":"core_web_sm","input_hash":69640336,"answer":"ignore"}],"meta":{"section":"Python","score":0.7389213111},"_input_hash":69640336,"_task_hash":1064840515,"answer":"ignore"} +{"text":"For example, in July 2007, the European Commission fined the Spanish incumbent telecoms operator Telef\u00f3nica for a very serious abuse of its dominant position in the Spanish broadband market.","spans":[{"start":97,"end":107,"text":"Telef\u00f3nica","rank":0,"label":"PRODUCT","score":0.7777840756,"source":"core_web_sm","input_hash":1034985640,"answer":"reject"}],"meta":{"section":"politics","score":0.7777840756},"_input_hash":1034985640,"_task_hash":-2048500983,"answer":"reject"} +{"text":"In so doing, Telef\u00f3nica weakened its competitors, making their continued presence and growth in the market difficult: they were forced to make losses if they wanted to match Telef\u00f3nica's retail prices.","spans":[{"start":174,"end":184,"text":"Telef\u00f3nica","rank":0,"label":"PRODUCT","score":0.6769505469,"source":"core_web_sm","input_hash":612666079,"answer":"reject"}],"meta":{"section":"politics","score":0.6769505469},"_input_hash":612666079,"_task_hash":1474726248,"answer":"reject"} +{"text":"Google is wrong!:-P","spans":[{"start":0,"end":6,"text":"Google","rank":0,"label":"PRODUCT","score":0.7305106352,"source":"core_web_sm","input_hash":2114271924,"answer":"accept"}],"meta":{"section":"pics","score":0.7305106352},"_input_hash":2114271924,"_task_hash":-1677381463,"answer":"accept"} +{"text":"No Country for Old Men.","spans":[{"start":15,"end":22,"text":"Old Men","rank":0,"label":"PRODUCT","score":0.7188451342,"source":"core_web_sm","input_hash":1066111380,"answer":"reject"}],"meta":{"section":"movies","score":0.7188451342},"_input_hash":1066111380,"_task_hash":1304358384,"answer":"reject"} +{"text":"The use of the word \"you\" in this statement seems to imply you assume the redditor posting this image is the original compiler of said image.","spans":[{"start":26,"end":28,"text":"in","rank":3,"label":"PRODUCT","score":0.0148746468,"source":"core_web_sm","input_hash":-1288659935,"answer":"reject"}],"meta":{"section":"pics","score":0.0148746468},"_input_hash":-1288659935,"_task_hash":1822821750,"answer":"reject"} +{"text":"a hefty video card might be too much for a 500W PSU.","spans":[{"start":43,"end":51,"text":"500W PSU","rank":0,"label":"PRODUCT","score":0.5546699052,"source":"core_web_sm","input_hash":-1840574523,"answer":"reject"}],"meta":{"section":"Favors","score":0.5546699052},"_input_hash":-1840574523,"_task_hash":-251509421,"answer":"reject"} +{"text":"Review of Toonstorm.com World of Warcraft also known as WoW is the biggest online game in the world.","spans":[{"start":56,"end":59,"text":"WoW","rank":0,"label":"PRODUCT","score":0.9999210487,"source":"core_web_sm","input_hash":1678044698,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9999210487},"_input_hash":1678044698,"_task_hash":-304781489,"answer":"accept"} +{"text":"Well...the \"Neujahrskonzert\" (New Years Concert) is one of the most watched TV Shows here.","spans":[{"start":79,"end":84,"text":"Shows","rank":0,"label":"PRODUCT","score":0.9960700515,"source":"core_web_sm","input_hash":-600203940,"answer":"reject"}],"meta":{"section":"videos","score":0.9960700515},"_input_hash":-600203940,"_task_hash":641617945,"answer":"reject"} +{"text":"Limbaugh being Rushed to the hospital is the best news I've heard in a while.","spans":[{"start":15,"end":21,"text":"Rushed","rank":0,"label":"PRODUCT","score":0.8411503961,"source":"core_web_sm","input_hash":-624400820,"answer":"reject"}],"meta":{"section":"worldnews","score":0.8411503961},"_input_hash":-624400820,"_task_hash":1577945694,"answer":"reject"} +{"text":"Google are being nice enough to stick you in the North Pacific Current to shave a few months off your kayaking.","spans":[{"start":0,"end":6,"text":"Google","rank":0,"label":"PRODUCT","score":0.9219855108,"source":"core_web_sm","input_hash":-1514645152,"answer":"ignore"}],"meta":{"section":"WTF","score":0.9219855108},"_input_hash":-1514645152,"_task_hash":443829850,"answer":"ignore"} +{"text":"Reddit Troll: ... Check...","spans":[{"start":0,"end":6,"text":"Reddit","rank":2,"label":"PRODUCT","score":0.017902164,"source":"core_web_sm","input_hash":-483220950,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.017902164},"_input_hash":-483220950,"_task_hash":-1664323554,"answer":"accept"} +{"text":"While watching my download bar, i also feel the need to count the progression % out loud.","spans":[{"start":78,"end":79,"text":"%","rank":2,"label":"PRODUCT","score":0.1600179838,"source":"core_web_sm","input_hash":768583823,"answer":"reject"}],"meta":{"section":"DoesAnybodyElse","score":0.1600179838},"_input_hash":768583823,"_task_hash":-1030107735,"answer":"reject"} +{"text":"As a Frenchman I have to agree.","spans":[{"start":5,"end":14,"text":"Frenchman","rank":1,"label":"PRODUCT","score":0.1859976462,"source":"core_web_sm","input_hash":-202915102,"answer":"reject"}],"meta":{"section":"politics","score":0.1859976462},"_input_hash":-202915102,"_task_hash":-317658923,"answer":"reject"} +{"text":"* Main Theme from *Blade Runner","spans":[{"start":7,"end":12,"text":"Theme","rank":1,"label":"PRODUCT","score":0.3891238271,"source":"core_web_sm","input_hash":-123103628,"answer":"reject"}],"meta":{"section":"Music","score":0.3891238271},"_input_hash":-123103628,"_task_hash":112985755,"answer":"reject"} +{"text":"Got to love WoW! :)","spans":[{"start":12,"end":15,"text":"WoW","rank":0,"label":"PRODUCT","score":0.9980901358,"source":"core_web_sm","input_hash":-758861871,"answer":"accept"}],"meta":{"section":"WTF","score":0.9980901358},"_input_hash":-758861871,"_task_hash":545323349,"answer":"accept"} +{"text":"I'd just like to point out that while the man is certainly a fast draw and an accurate marksman, a lot of what he says is simply false.","spans":[{"start":42,"end":45,"text":"man","rank":3,"label":"PRODUCT","score":0.0388947919,"source":"core_web_sm","input_hash":-1159256306,"answer":"reject"}],"meta":{"section":"WTF","score":0.0388947919},"_input_hash":-1159256306,"_task_hash":1874348386,"answer":"reject"} +{"text":"That's my co-founder, Hell'n Fury.","spans":[{"start":10,"end":12,"text":"co","rank":1,"label":"PRODUCT","score":0.2342143732,"source":"core_web_sm","input_hash":-1298788478,"answer":"reject"}],"meta":{"section":"IAmA","score":0.2342143732},"_input_hash":-1298788478,"_task_hash":-171068080,"answer":"reject"} +{"text":"But I had no problem stabbing the SecuRom keyes in the Registry, while also leaving the game functional.","spans":[{"start":55,"end":63,"text":"Registry","rank":0,"label":"PRODUCT","score":0.89815856,"source":"core_web_sm","input_hash":-1867218518,"answer":"reject"}],"meta":{"section":"gaming","score":0.89815856},"_input_hash":-1867218518,"_task_hash":-1653936863,"answer":"reject"} +{"text":"I can't bring myself to ask any Girl out.","spans":[{"start":24,"end":27,"text":"ask","rank":3,"label":"PRODUCT","score":0.0329871511,"source":"core_web_sm","input_hash":-502610270,"answer":"reject"}],"meta":{"section":"IAmA","score":0.0329871511},"_input_hash":-502610270,"_task_hash":677582366,"answer":"reject"} +{"text":"Cost me about $2000 on Newegg without some of the nicer extras which I bought later (monitor, Blu-Ray drive, another monitor, lighting and fans, etc).","spans":[{"start":23,"end":29,"text":"Newegg","rank":1,"label":"PRODUCT","score":0.0600644441,"source":"core_web_sm","input_hash":67694754,"answer":"reject"}],"meta":{"section":"Favors","score":0.0600644441},"_input_hash":67694754,"_task_hash":-961409924,"answer":"reject"} +{"text":"I have a similar build, but with a Core i7 920 rather than the AMD.","spans":[{"start":40,"end":46,"text":"i7 920","rank":2,"label":"PRODUCT","score":0.0552016385,"source":"core_web_sm","input_hash":1853477982,"answer":"reject"}],"meta":{"section":"Favors","score":0.0552016385},"_input_hash":1853477982,"_task_hash":1013325600,"answer":"reject"} +{"text":"Surely, one of the dumbest posts I've ever read on Reddit.","spans":[{"start":51,"end":57,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9997528304,"source":"core_web_sm","input_hash":-87714944,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.9997528304},"_input_hash":-87714944,"_task_hash":-830777858,"answer":"accept"} +{"text":"I've talked a bit with Madame Talbot, who did the illustrations.","spans":[{"start":23,"end":29,"text":"Madame","rank":0,"label":"PRODUCT","score":0.9974527914,"source":"core_web_sm","input_hash":324757837,"answer":"reject"}],"meta":{"section":"IAmA","score":0.9974527914},"_input_hash":324757837,"_task_hash":-633340584,"answer":"reject"} +{"text":"So here is the scene.","spans":[{"start":15,"end":20,"text":"scene","rank":1,"label":"PRODUCT","score":0.0069392163,"source":"core_web_sm","input_hash":303464800,"answer":"reject"}],"meta":{"section":"sex","score":0.0069392163},"_input_hash":303464800,"_task_hash":1730886519,"answer":"reject"} +{"text":"Do we need to remind you of trains, buses, nightclubs & hotels?","spans":[{"start":54,"end":58,"text":"&","rank":2,"label":"PRODUCT","score":0.0470385087,"source":"core_web_sm","input_hash":179320032,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0470385087},"_input_hash":179320032,"_task_hash":234021601,"answer":"reject"} +{"text":"Where I live napa is for mechanics and autozone/advance are for DIYers and pep boys is for the inexperienced.","spans":[{"start":64,"end":70,"text":"DIYers","rank":0,"label":"PRODUCT","score":0.6967146492,"source":"core_web_sm","input_hash":995942459,"answer":"reject"}],"meta":{"section":"IAmA","score":0.6967146492},"_input_hash":995942459,"_task_hash":-632937846,"answer":"reject"} +{"text":"After getting it on Steam","spans":[{"start":20,"end":25,"text":"Steam","rank":1,"label":"PRODUCT","score":0.3118194117,"source":"core_web_sm","input_hash":1557083435,"answer":"accept"}],"meta":{"section":"gaming","score":0.3118194117},"_input_hash":1557083435,"_task_hash":374202430,"answer":"accept"} +{"text":"(I can't just pack my stuff and start from Prague, see Australia, South America, North America and SEAsia without having booked the flights first).","spans":[{"start":99,"end":105,"text":"SEAsia","rank":0,"label":"PRODUCT","score":0.7422565449,"source":"core_web_sm","input_hash":597883441,"answer":"reject"}],"meta":{"section":"travel","score":0.7422565449},"_input_hash":597883441,"_task_hash":748404920,"answer":"reject"} +{"text":"The \"Adult\" thing is to be responsible, and learn from your mistakes.","spans":[{"start":5,"end":10,"text":"Adult","rank":1,"label":"PRODUCT","score":0.0044162029,"source":"core_web_sm","input_hash":225318695,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0044162029},"_input_hash":225318695,"_task_hash":1303367729,"answer":"reject"} +{"text":"The \"Manly\" thing has nothing to do with still living at home.","spans":[{"start":5,"end":10,"text":"Manly","rank":2,"label":"PRODUCT","score":0.0093623639,"source":"core_web_sm","input_hash":-1630243411,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0093623639},"_input_hash":-1630243411,"_task_hash":278483833,"answer":"reject"} +{"text":"Like reddit.","spans":[{"start":5,"end":11,"text":"reddit","rank":0,"label":"PRODUCT","score":0.9999137473,"source":"core_web_sm","input_hash":-1365512434,"answer":"accept"}],"meta":{"section":"IAmA","score":0.9999137473},"_input_hash":-1365512434,"_task_hash":-186494524,"answer":"accept"} +{"text":"Diablo 3 and Half Life 3!","spans":[{"start":0,"end":8,"text":"Diablo 3","rank":0,"label":"PRODUCT","score":0.9955606654,"source":"core_web_sm","input_hash":-1556158446,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.9955606654},"_input_hash":-1556158446,"_task_hash":-60046779,"answer":"accept"} +{"text":":P I'm glad that I can at least be flippant about my situation.","spans":[{"start":3,"end":6,"text":"I'm","rank":5,"label":"PRODUCT","score":0.0049260247,"source":"core_web_sm","input_hash":177335590,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0049260247},"_input_hash":177335590,"_task_hash":-1752596588,"answer":"reject"} +{"text":"Happy new year from Canada, Reddit! 2009 was quiet a lame year for me so wish me the best for 2010!!!","spans":[{"start":28,"end":34,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.7257166494,"source":"core_web_sm","input_hash":951401895,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.7257166494},"_input_hash":951401895,"_task_hash":-1917516560,"answer":"accept"} +{"text":"Downvoted, go see a shrink if your on the verge of a mental breakdown not do an IAMA on Reddit.","spans":[{"start":88,"end":94,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.999993745,"source":"core_web_sm","input_hash":1387240584,"answer":"accept"}],"meta":{"section":"IAmA","score":0.999993745},"_input_hash":1387240584,"_task_hash":483885458,"answer":"accept"} +{"text":"I am very much in favour of the stop at two pledge: http://www.optimumpopulation.org/stopattwo.html Windmills and solar panels are good (better than coal), but they also have a manufacturing environmental cost associated with them.","spans":[{"start":100,"end":109,"text":"Windmills","rank":0,"label":"PRODUCT","score":0.9964014546,"source":"core_web_sm","input_hash":-1043578271,"answer":"reject"}],"meta":{"section":"Green","score":0.9964014546},"_input_hash":-1043578271,"_task_hash":447833319,"answer":"reject"} +{"text":"Rove hosting some late night visit is still a delightful rumor, but GWB being into some pretty hard man love, would kind of make the last 10 years seem... almost worth the body count.","spans":[{"start":100,"end":103,"text":"man","rank":2,"label":"PRODUCT","score":0.0352279569,"source":"core_web_sm","input_hash":-1089303458,"answer":"reject"}],"meta":{"section":"politics","score":0.0352279569},"_input_hash":-1089303458,"_task_hash":-1774512005,"answer":"reject"} +{"text":"And being Captain.","spans":[{"start":10,"end":17,"text":"Captain","rank":0,"label":"PRODUCT","score":0.9999419251,"source":"core_web_sm","input_hash":-1378728668,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.9999419251},"_input_hash":-1378728668,"_task_hash":363893332,"answer":"reject"} +{"text":"Oh wow someone is getting their own WorstOf.","spans":[{"start":36,"end":43,"text":"WorstOf","rank":0,"label":"PRODUCT","score":0.9968472811,"source":"core_web_sm","input_hash":980475351,"answer":"reject"}],"meta":{"section":"WTF","score":0.9968472811},"_input_hash":980475351,"_task_hash":704334153,"answer":"reject"} +{"text":"Ideally you'll get dogs, iPods, books, water, drinks purchased after the security screening, and standing up all banned from planes with the same action.","spans":[{"start":25,"end":30,"text":"iPods","rank":0,"label":"PRODUCT","score":0.9983244462,"source":"core_web_sm","input_hash":-672056676,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.9983244462},"_input_hash":-672056676,"_task_hash":-1061473948,"answer":"accept"} +{"text":"... place of real Budweiser.","spans":[{"start":18,"end":27,"text":"Budweiser","rank":0,"label":"PRODUCT","score":0.9999999747,"source":"core_web_sm","input_hash":1915554490,"answer":"accept"}],"meta":{"section":"worldnews","score":0.9999999747},"_input_hash":1915554490,"_task_hash":1555959105,"answer":"accept"} +{"text":"Remember kids, in a 3x3 table gag, make sure the punch line is in r3:c3 just like *","spans":[{"start":66,"end":71,"text":"r3:c3","rank":1,"label":"PRODUCT","score":0.0295506545,"source":"core_web_sm","input_hash":-1642951527,"answer":"reject"}],"meta":{"section":"politics","score":0.0295506545},"_input_hash":-1642951527,"_task_hash":1391999863,"answer":"reject"} +{"text":"I'm an AnybodyOutThere co-founder.","spans":[{"start":23,"end":25,"text":"co","rank":3,"label":"PRODUCT","score":0.1134090282,"source":"core_web_sm","input_hash":-1586033187,"answer":"reject"}],"meta":{"section":"promos","score":0.1134090282},"_input_hash":-1586033187,"_task_hash":-1378864108,"answer":"reject"} +{"text":"I'm saying that if you really are going to have a breakdown you should diffuse it the proper way by going to a shrink, not asking reddit.","spans":[{"start":130,"end":136,"text":"reddit","rank":0,"label":"PRODUCT","score":0.7042411588,"source":"core_web_sm","input_hash":1420360416,"answer":"accept"}],"meta":{"section":"IAmA","score":0.7042411588},"_input_hash":1420360416,"_task_hash":45836067,"answer":"accept"} +{"text":"They wrote the Constitution*. *","spans":[{"start":15,"end":29,"text":"Constitution*.","rank":4,"label":"PRODUCT","score":0.0109385747,"source":"core_web_sm","input_hash":-602578298,"answer":"reject"}],"meta":{"section":"worldnews","score":0.0109385747},"_input_hash":-602578298,"_task_hash":1234801845,"answer":"reject"} +{"text":"Because the education system in USA is broken, American are more gullible and they can believe in anything Throw in some sex","spans":[{"start":107,"end":112,"text":"Throw","rank":3,"label":"PRODUCT","score":0.085801638,"source":"core_web_sm","input_hash":1060937252,"answer":"reject"}],"meta":{"section":"books","score":0.085801638},"_input_hash":1060937252,"_task_hash":602711456,"answer":"reject"} +{"text":"But after this I feel ashamed really!","spans":[{"start":4,"end":9,"text":"after","rank":4,"label":"PRODUCT","score":0.0181112018,"source":"core_web_sm","input_hash":697078487,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0181112018},"_input_hash":697078487,"_task_hash":708722477,"answer":"reject"} +{"text":"If you mouse over the Google logo on their homepage, the advertisement for Chrome pops up.","spans":[{"start":22,"end":28,"text":"Google","rank":0,"label":"PRODUCT","score":0.8775590523,"source":"core_web_sm","input_hash":-1181171614,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.8775590523},"_input_hash":-1181171614,"_task_hash":-1166272348,"answer":"accept"} +{"text":"You know better Google, shame on you.","spans":[{"start":16,"end":22,"text":"Google","rank":0,"label":"PRODUCT","score":0.9999981907,"source":"core_web_sm","input_hash":162083179,"answer":"accept"}],"meta":{"section":"reddit.com","score":0.9999981907},"_input_hash":162083179,"_task_hash":-477281667,"answer":"accept"} +{"text":"However, by taking such drastic actions in response to things happening in the karma mini-game, the admins lend credence and support to the idea that Reddit is about karma scores and not content.","spans":[{"start":150,"end":156,"text":"Reddit","rank":0,"label":"PRODUCT","score":0.9054699843,"source":"core_web_sm","input_hash":1111828667,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.9054699843},"_input_hash":1111828667,"_task_hash":1719928711,"answer":"accept"} +{"text":"honestly how can you get on reddit but be incapable of googling shit to find it out on wikipedia?","spans":[{"start":28,"end":34,"text":"reddit","rank":0,"label":"PRODUCT","score":0.976463225,"source":"core_web_sm","input_hash":-1351887170,"answer":"accept"}],"meta":{"section":"WTF","score":0.976463225},"_input_hash":-1351887170,"_task_hash":1249621744,"answer":"accept"} +{"text":"He also warned of the permanent lesson we have learned from the Galileo affair, and that \"we also know the dangers of a religion that severs its links with reason and becomes prey to fundamentalism.\"","spans":[{"start":64,"end":71,"text":"Galileo","rank":0,"label":"PRODUCT","score":0.9997670584,"source":"core_web_sm","input_hash":-1433255340,"answer":"reject"}],"meta":{"section":"atheism","score":0.9997670584},"_input_hash":-1433255340,"_task_hash":1295945972,"answer":"reject"} +{"text":"The M16 was my favorite gun from MW2","spans":[{"start":4,"end":7,"text":"M16","rank":0,"label":"PRODUCT","score":0.9980458195,"source":"core_web_sm","input_hash":1743249351,"answer":"accept"}],"meta":{"section":"codbo","score":0.9980458195},"_input_hash":1743249351,"_task_hash":-920189632,"answer":"accept"} +{"text":"Use the M16 on larger maps, or maps with long sightlines.","spans":[{"start":8,"end":11,"text":"M16","rank":0,"label":"PRODUCT","score":0.932836373,"source":"core_web_sm","input_hash":887162103,"answer":"accept"}],"meta":{"section":"codbo","score":0.932836373},"_input_hash":887162103,"_task_hash":-2085847066,"answer":"accept"} +{"text":"When you get a VPS, you can tailor everything to your exact needs (KeepAlives, MYSQL tuning etc).","spans":[{"start":67,"end":77,"text":"KeepAlives","rank":0,"label":"PRODUCT","score":0.8251795172,"source":"core_web_sm","input_hash":-1459821271,"answer":"ignore"}],"meta":{"section":"fffffffuuuuuuuuuuuu","score":0.8251795172},"_input_hash":-1459821271,"_task_hash":-673010017,"answer":"ignore"} +{"text":"+ warheads are U233 based, even though it is easier to get","spans":[{"start":15,"end":19,"text":"U233","rank":0,"label":"PRODUCT","score":0.8226136334,"source":"core_web_sm","input_hash":1773472066,"answer":"reject"}],"meta":{"section":"energy","score":0.8226136334},"_input_hash":1773472066,"_task_hash":865050216,"answer":"reject"} +{"text":"Ghost is a good first perk for the M16, since you don't want people knowing where you are so you can limit close-quarters engagements.","spans":[{"start":35,"end":38,"text":"M16","rank":0,"label":"PRODUCT","score":0.810858569,"source":"core_web_sm","input_hash":-1186567238,"answer":"accept"}],"meta":{"section":"codbo","score":0.810858569},"_input_hash":-1186567238,"_task_hash":-798678068,"answer":"accept"} +{"text":"From wikipedia >the Vatican's [former] chief astronomer, Fr.","spans":[{"start":57,"end":59,"text":"Fr","rank":3,"label":"PRODUCT","score":0.1899908023,"source":"core_web_sm","input_hash":1881635241,"answer":"reject"}],"meta":{"section":"atheism","score":0.1899908023},"_input_hash":1881635241,"_task_hash":-406447195,"answer":"reject"} +{"text":"More like gun CLIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIPster.","spans":[{"start":14,"end":54,"text":"CLIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIPster","rank":0,"label":"PRODUCT","score":0.8542808145,"source":"core_web_sm","input_hash":1740747923,"answer":"reject"}],"meta":{"section":"guns","score":0.8542808145},"_input_hash":1740747923,"_task_hash":1395153467,"answer":"reject"} +{"text":"Yet I believe the Windows version still runs a *little* better","spans":[{"start":18,"end":25,"text":"Windows","rank":1,"label":"PRODUCT","score":0.1541120971,"source":"core_web_sm","input_hash":-86178529,"answer":"accept"}],"meta":{"section":"gaming","score":0.1541120971},"_input_hash":-86178529,"_task_hash":-568510863,"answer":"accept"} +{"text":"that alot of servers is Aus are stuck on using only 2 maps most of the time though >:|","spans":[{"start":84,"end":86,"text":":|","rank":10,"label":"PRODUCT","score":0.0142037048,"source":"core_web_sm","input_hash":-1319536252,"answer":"reject"}],"meta":{"section":"gaming","score":0.0142037048},"_input_hash":-1319536252,"_task_hash":-1922157219,"answer":"reject"} +{"text":"What we need is a universal racing game where everyone can put up or shut up - ON THE TRACK WHERE IT BELONGS.","spans":[{"start":101,"end":108,"text":"BELONGS","rank":2,"label":"PRODUCT","score":0.0124628743,"source":"core_web_sm","input_hash":551168499,"answer":"reject"}],"meta":{"section":"gaming","score":0.0124628743},"_input_hash":551168499,"_task_hash":-2131184985,"answer":"reject"} +{"text":"Ferrari is too close to that Lada... because they both have wheels.","spans":[{"start":29,"end":33,"text":"Lada","rank":3,"label":"PRODUCT","score":0.0057212404,"source":"core_web_sm","input_hash":-1425840095,"answer":"reject"}],"meta":{"section":"Design","score":0.0057212404},"_input_hash":-1425840095,"_task_hash":-200969174,"answer":"reject"} +{"text":"If I see a dog & person running around without a leash I just don't know whether I'm dealing with a davidkay or an idiot.","spans":[{"start":15,"end":19,"text":"&","rank":2,"label":"PRODUCT","score":0.0802849503,"source":"core_web_sm","input_hash":897023531,"answer":"reject"}],"meta":{"section":"IAmA","score":0.0802849503},"_input_hash":897023531,"_task_hash":1959576327,"answer":"reject"} +{"text":"then their anti-WikiLeaks protestations should be taken more seriously, but not until then.","spans":[{"start":16,"end":25,"text":"WikiLeaks","rank":9,"label":"PRODUCT","score":0.0049734535,"source":"core_web_sm","input_hash":1833656091,"answer":"accept"}],"meta":{"section":"politics","score":0.0049734535},"_input_hash":1833656091,"_task_hash":-254219551,"answer":"accept"} +{"text":"I like Chew better than drinking","spans":[{"start":7,"end":11,"text":"Chew","rank":1,"label":"PRODUCT","score":0.0924579149,"source":"core_web_sm","input_hash":1386102969,"answer":"reject"}],"meta":{"section":"seduction","score":0.0924579149},"_input_hash":1386102969,"_task_hash":-976929692,"answer":"reject"} +{"text":"The second mural is of fireman sitting around a table in the firehouse while a Seminole serves them drinks.","spans":[{"start":79,"end":87,"text":"Seminole","rank":0,"label":"PRODUCT","score":0.973051224,"source":"core_web_sm","input_hash":-1164125111,"answer":"reject"}],"meta":{"section":"WTF","score":0.973051224},"_input_hash":-1164125111,"_task_hash":2118055892,"answer":"reject"} +{"text":"Florida State's (Tallahassee) colors are garnet/gold and the mascot is the Seminole.","spans":[{"start":75,"end":83,"text":"Seminole","rank":0,"label":"PRODUCT","score":0.9614472022,"source":"core_web_sm","input_hash":1330423731,"answer":"reject"}],"meta":{"section":"WTF","score":0.9614472022},"_input_hash":1330423731,"_task_hash":-1811364427,"answer":"reject"} +{"text":"No scopes in that one either, but the M1 was a killmachine.","spans":[{"start":38,"end":40,"text":"M1","rank":0,"label":"PRODUCT","score":0.7367965268,"source":"core_web_sm","input_hash":-345125200,"answer":"ignore"}],"meta":{"section":"badcompany2","score":0.7367965268},"_input_hash":-345125200,"_task_hash":170352428,"answer":"ignore"} +{"text":"Here is the basic difference between an earmark, and non-earmark: When a legislator directs funds to project X, it is an earmark.","spans":[{"start":53,"end":56,"text":"non","rank":7,"label":"PRODUCT","score":0.0055699761,"source":"core_web_sm","input_hash":-446626246,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0055699761},"_input_hash":-446626246,"_task_hash":-1295874772,"answer":"reject"} +{"text":"The price of XBL went up recently.","spans":[{"start":13,"end":16,"text":"XBL","rank":1,"label":"PRODUCT","score":0.0161439057,"source":"core_web_sm","input_hash":184872939,"answer":"ignore"}],"meta":{"section":"pics","score":0.0161439057},"_input_hash":184872939,"_task_hash":-1374698169,"answer":"ignore"} +{"text":"He might even use camera tricks to 'alter' the scenes, similar to how they used Marlon Brando in the superman movie.","spans":[{"start":80,"end":93,"text":"Marlon Brando","rank":3,"label":"PRODUCT","score":0.0381936993,"source":"core_web_sm","input_hash":-199124393,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0381936993},"_input_hash":-199124393,"_task_hash":-886270308,"answer":"reject"} +{"text":"i got a 99 328i","spans":[{"start":11,"end":15,"text":"328i","rank":0,"label":"PRODUCT","score":0.6662604814,"source":"core_web_sm","input_hash":2134758444,"answer":"reject"}],"meta":{"section":"BMW","score":0.6662604814},"_input_hash":2134758444,"_task_hash":2046084923,"answer":"reject"} +{"text":"It feels like you are flying around a track in hovercraft ala Wipeout XL.","spans":[{"start":70,"end":72,"text":"XL","rank":5,"label":"PRODUCT","score":0.0127275977,"source":"core_web_sm","input_hash":2034682755,"answer":"reject"}],"meta":{"section":"gaming","score":0.0127275977},"_input_hash":2034682755,"_task_hash":-483423534,"answer":"reject"} +{"text":"Hah, reminds me of Freespace 2.","spans":[{"start":19,"end":30,"text":"Freespace 2","rank":1,"label":"PRODUCT","score":0.2713776877,"source":"core_web_sm","input_hash":1004270356,"answer":"accept"}],"meta":{"section":"gaming","score":0.2713776877},"_input_hash":1004270356,"_task_hash":2050096848,"answer":"accept"} +{"text":"I went to a bday celebration at Whiskey Town last week.","spans":[{"start":32,"end":39,"text":"Whiskey","rank":0,"label":"PRODUCT","score":0.659362979,"source":"core_web_sm","input_hash":-163234938,"answer":"reject"}],"meta":{"section":"nyc","score":0.659362979},"_input_hash":-163234938,"_task_hash":-1427331184,"answer":"reject"} +{"text":"My vision still fluctuates a little bit and there is some halo & starburst at night but not any significant to prevent me from driving.","spans":[{"start":63,"end":67,"text":"&","rank":1,"label":"PRODUCT","score":0.1646170812,"source":"core_web_sm","input_hash":-1233859891,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.1646170812},"_input_hash":-1233859891,"_task_hash":542396744,"answer":"reject"} +{"text":"All humans are much faster than the zeds, and they don't maneuver, so really, unless you get orders to defend some indefensible position, there's not much the zombies can do TO overwhelm an infantry unit.","spans":[{"start":36,"end":40,"text":"zeds","rank":0,"label":"PRODUCT","score":0.5336301354,"source":"core_web_sm","input_hash":183738937,"answer":"reject"}],"meta":{"section":"scifi","score":0.5336301354},"_input_hash":183738937,"_task_hash":-1825214904,"answer":"reject"} +{"text":"Also since the Towns government is pretty much useless, it would probably be required to bribe the Mayor or certian officals to get the permits required to do the things that need to done.","spans":[{"start":99,"end":104,"text":"Mayor","rank":3,"label":"PRODUCT","score":0.059807166,"source":"core_web_sm","input_hash":-1633669418,"answer":"reject"}],"meta":{"section":"ProjectCairo","score":0.059807166},"_input_hash":-1633669418,"_task_hash":-1357514050,"answer":"reject"} +{"text":"I don't know about that one, but generally, Bootcamp runs *perfectly*, for gaming (or any Windows application, really).","spans":[{"start":90,"end":97,"text":"Windows","rank":0,"label":"PRODUCT","score":0.7711489445,"source":"core_web_sm","input_hash":277648082,"answer":"accept"}],"meta":{"section":"gaming","score":0.7711489445},"_input_hash":277648082,"_task_hash":1170792060,"answer":"accept"} +{"text":"Generally, emulation (or whatever the technical term for the other programs is that run Windows *inside* MacOSX) tends to always be *much* slower than running the game natively by *booting* into Windows from scratch.","spans":[{"start":88,"end":95,"text":"Windows","rank":0,"label":"PRODUCT","score":0.9915339069,"source":"core_web_sm","input_hash":1146883367,"answer":"accept"}],"meta":{"section":"gaming","score":0.9915339069},"_input_hash":1146883367,"_task_hash":1770587898,"answer":"accept"} +{"text":"It lets you install Windows like on any other laptop, so it runs *perfectly* with the hardware it's on (just remember to install the drivers on the Bootcamp CD once you're in Windows).","spans":[{"start":148,"end":156,"text":"Bootcamp","rank":0,"label":"PRODUCT","score":0.5253772196,"source":"core_web_sm","input_hash":-586148383,"answer":"reject"}],"meta":{"section":"gaming","score":0.5253772196},"_input_hash":-586148383,"_task_hash":-299668961,"answer":"reject"} +{"text":"I bought BC2 in the steam sale, only to find that my PC was not happy with its requirements.","spans":[{"start":9,"end":12,"text":"BC2","rank":0,"label":"PRODUCT","score":0.6145413842,"source":"core_web_sm","input_hash":449322757,"answer":"accept"}],"meta":{"section":"gaming","score":0.6145413842},"_input_hash":449322757,"_task_hash":-1749869120,"answer":"accept"} +{"text":"They are a 'Leak' site, which means people come to them with leaked information.","spans":[{"start":12,"end":16,"text":"Leak","rank":4,"label":"PRODUCT","score":0.0556501278,"source":"core_web_sm","input_hash":1304264210,"answer":"reject"}],"meta":{"section":"politics","score":0.0556501278},"_input_hash":1304264210,"_task_hash":-1327572454,"answer":"reject"} +{"text":"I had all of those problems with Loestrin as well as severe depression.","spans":[{"start":33,"end":41,"text":"Loestrin","rank":1,"label":"PRODUCT","score":0.3221802447,"source":"core_web_sm","input_hash":-786655545,"answer":"accept"}],"meta":{"section":"TwoXChromosomes","score":0.3221802447},"_input_hash":-786655545,"_task_hash":982412196,"answer":"accept"} +{"text":"There was no weapon ever constructed based on U233, due to serious issues which are beyond your mental capabilities to comprehend.","spans":[{"start":46,"end":50,"text":"U233","rank":0,"label":"PRODUCT","score":0.7416314003,"source":"core_web_sm","input_hash":314140047,"answer":"reject"}],"meta":{"section":"energy","score":0.7416314003},"_input_hash":314140047,"_task_hash":-1821264068,"answer":"reject"} +{"text":"Classic mistake, they went full retard.","spans":[{"start":0,"end":7,"text":"Classic","rank":1,"label":"PRODUCT","score":0.1380937954,"source":"core_web_sm","input_hash":-762980523,"answer":"reject"}],"meta":{"section":"pics","score":0.1380937954},"_input_hash":-762980523,"_task_hash":-1786879992,"answer":"reject"} +{"text":"There's a quest given at the Gol'Bolar quarry; I think you might have to do the pre-reqs there first, though.","spans":[{"start":29,"end":38,"text":"Gol'Bolar","rank":0,"label":"PRODUCT","score":0.6406107898,"source":"core_web_sm","input_hash":554868928,"answer":"reject"}],"meta":{"section":"wow","score":0.6406107898},"_input_hash":554868928,"_task_hash":-590952849,"answer":"reject"} +{"text":"Taric with mana manip gives heal spammability and Panth some nice mana regen to start harassing with spear shots.","spans":[{"start":50,"end":55,"text":"Panth","rank":3,"label":"PRODUCT","score":0.1404876567,"source":"core_web_sm","input_hash":-430782199,"answer":"reject"}],"meta":{"section":"leagueoflegends","score":0.1404876567},"_input_hash":-430782199,"_task_hash":-1257311991,"answer":"reject"} +{"text":"and it's just collecting dust next to the Dome Zero car :(.","spans":[{"start":42,"end":46,"text":"Dome","rank":0,"label":"PRODUCT","score":0.5590795079,"source":"core_web_sm","input_hash":997895656,"answer":"reject"}],"meta":{"section":"GT5","score":0.5590795079},"_input_hash":997895656,"_task_hash":-334803007,"answer":"reject"} +{"text":"If you just want to look stuff up (this method wont give you the bandwidth or ping to play) go through a proxy like tor using a simple fire fox extention, theres no configuring needed.","spans":[{"start":65,"end":74,"text":"bandwidth","rank":1,"label":"PRODUCT","score":0.1869455696,"source":"core_web_sm","input_hash":-1101617330,"answer":"reject"}],"meta":{"section":"Steam","score":0.1869455696},"_input_hash":-1101617330,"_task_hash":-1292096341,"answer":"reject"} +{"text":"The Pike mine is a special case since it became the site of a nationally recognized disaster, so I imagine they will have resources at their disposal above the norm.","spans":[{"start":4,"end":8,"text":"Pike","rank":0,"label":"PRODUCT","score":0.4839046332,"source":"core_web_sm","input_hash":1935712137,"answer":"reject"}],"meta":{"section":"newzealand","score":0.4839046332},"_input_hash":1935712137,"_task_hash":-515338026,"answer":"reject"} +{"text":"Now it's all about WoW plus these two other games","spans":[{"start":19,"end":22,"text":"WoW","rank":3,"label":"PRODUCT","score":0.0880979122,"source":"core_web_sm","input_hash":691258905,"answer":"accept"}],"meta":{"section":"gaming","score":0.0880979122},"_input_hash":691258905,"_task_hash":-833123974,"answer":"accept"} +{"text":"I find Google searches to be less and less valuable; Google seems fine for shopping searches, but it's harder and harder to use it for real research.","spans":[{"start":7,"end":13,"text":"Google","rank":1,"label":"PRODUCT","score":0.4101464483,"source":"core_web_sm","input_hash":989034737,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.4101464483},"_input_hash":989034737,"_task_hash":373460615,"answer":"accept"} +{"text":"I disagree, the Wikileaks documents show Obama trying to close Gitmo but the congress fighting him as he tries to release the prisoners either overseas or to prisoners in the United States.","spans":[{"start":63,"end":68,"text":"Gitmo","rank":4,"label":"PRODUCT","score":0.0546966451,"source":"core_web_sm","input_hash":2122833474,"answer":"reject"}],"meta":{"section":"politics","score":0.0546966451},"_input_hash":2122833474,"_task_hash":958730005,"answer":"reject"} +{"text":"I agree with you OP, casually browse the IAMA comments and you'll come to the same conclusion.","spans":[{"start":41,"end":45,"text":"IAMA","rank":1,"label":"PRODUCT","score":0.0705012734,"source":"core_web_sm","input_hash":610973781,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0705012734},"_input_hash":610973781,"_task_hash":1406414194,"answer":"reject"} +{"text":"'Music' in search bar; limit to /r/fitness","spans":[{"start":1,"end":6,"text":"Music","rank":8,"label":"PRODUCT","score":0.0047985819,"source":"core_web_sm","input_hash":-74076626,"answer":"reject"}],"meta":{"section":"Fitness","score":0.0047985819},"_input_hash":-74076626,"_task_hash":2125420503,"answer":"reject"} +{"text":"I read Progress and Poverty recently and my mind = blown.","spans":[{"start":7,"end":15,"text":"Progress","rank":6,"label":"PRODUCT","score":0.0034884978,"source":"core_web_sm","input_hash":1588613302,"answer":"reject"}],"meta":{"section":"ProjectCairo","score":0.0034884978},"_input_hash":1588613302,"_task_hash":-359556040,"answer":"reject"} +{"text":"That's gonna buy Timmy a good amount of grass for the offseason!","spans":[{"start":17,"end":22,"text":"Timmy","rank":0,"label":"PRODUCT","score":0.7777625632,"source":"core_web_sm","input_hash":-276918040,"answer":"reject"}],"meta":{"section":"baseball","score":0.7777625632},"_input_hash":-276918040,"_task_hash":592357466,"answer":"reject"} +{"text":"Where's that \"THISBELONGSINrPOLITICS\" guy when you need him.","spans":[{"start":14,"end":36,"text":"THISBELONGSINrPOLITICS","rank":5,"label":"PRODUCT","score":0.0074125329,"source":"core_web_sm","input_hash":1461565436,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0074125329},"_input_hash":1461565436,"_task_hash":-1456370996,"answer":"reject"} +{"text":"I'm faced with this literally every time I play Apples to Apples, and I always look forward to it.","spans":[{"start":48,"end":54,"text":"Apples","rank":1,"label":"PRODUCT","score":0.1316476524,"source":"core_web_sm","input_hash":-1982245500,"answer":"reject"}],"meta":{"section":"atheism","score":0.1316476524},"_input_hash":-1982245500,"_task_hash":-1165037783,"answer":"reject"} +{"text":"That being said, I would much rather watch the Clippers over the Heat.","spans":[{"start":47,"end":55,"text":"Clippers","rank":3,"label":"PRODUCT","score":0.0182169213,"source":"core_web_sm","input_hash":-1067151216,"answer":"reject"}],"meta":{"section":"sports","score":0.0182169213},"_input_hash":-1067151216,"_task_hash":-92303532,"answer":"reject"} +{"text":"I look forward to your next post, IAMA Serial Killer.","spans":[{"start":34,"end":38,"text":"IAMA","rank":0,"label":"PRODUCT","score":0.7946943999,"source":"core_web_sm","input_hash":-968565345,"answer":"reject"}],"meta":{"section":"IAmA","score":0.7946943999},"_input_hash":-968565345,"_task_hash":-1340291381,"answer":"reject"} +{"text":"http://4.bp.blogspot.com/_8iL1NR9-gpk/SoOmaPTmnJI/AAAAAAAACXk/QK8VXNsF1gM/s400/seth-rogen-funny-people.jpg Zack and Miri Make a Porno http://www.obsessedwithfilm.com/wp-content/uploads/2008/11/zackandmiri2.jpg","spans":[{"start":128,"end":133,"text":"Porno","rank":3,"label":"PRODUCT","score":0.1154166853,"source":"core_web_sm","input_hash":-1356941116,"answer":"reject"}],"meta":{"section":"movies","score":0.1154166853},"_input_hash":-1356941116,"_task_hash":627945897,"answer":"reject"} +{"text":"It's on Adult Swim.com","spans":[{"start":8,"end":13,"text":"Adult","rank":1,"label":"PRODUCT","score":0.0734652778,"source":"core_web_sm","input_hash":1696366434,"answer":"reject"}],"meta":{"section":"pics","score":0.0734652778},"_input_hash":1696366434,"_task_hash":547517653,"answer":"reject"} +{"text":"I also don't have to have a 3rd brake light.","spans":[{"start":28,"end":31,"text":"3rd","rank":3,"label":"PRODUCT","score":0.0790137685,"source":"core_web_sm","input_hash":1322935423,"answer":"reject"}],"meta":{"section":"pics","score":0.0790137685},"_input_hash":1322935423,"_task_hash":757904072,"answer":"reject"} +{"text":"If it's non-destructive though, does it really make any point?","spans":[{"start":8,"end":11,"text":"non","rank":2,"label":"PRODUCT","score":0.0642039366,"source":"core_web_sm","input_hash":1176586043,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0642039366},"_input_hash":1176586043,"_task_hash":-1893238718,"answer":"reject"} +{"text":"On a Windows system, the OS will create link files pointing to the currently assigned drive letter of your thumb drive and include the file name, when you open these on a Windows computer.","spans":[{"start":5,"end":12,"text":"Windows","rank":0,"label":"PRODUCT","score":0.9909945084,"source":"core_web_sm","input_hash":-224429920,"answer":"accept"}],"meta":{"section":"netsec","score":0.9909945084},"_input_hash":-224429920,"_task_hash":366386878,"answer":"accept"} +{"text":"The magic Flight wasn't out or at least not nearly as popular when I got mine","spans":[{"start":10,"end":16,"text":"Flight","rank":0,"label":"PRODUCT","score":0.9257929579,"source":"core_web_sm","input_hash":-836725793,"answer":"reject"}],"meta":{"section":"trees","score":0.9257929579},"_input_hash":-836725793,"_task_hash":-1053462114,"answer":"reject"} +{"text":"It came from a discussion about a co-worker who quit and after reviewing his code, realizing in six months","spans":[{"start":34,"end":36,"text":"co","rank":2,"label":"PRODUCT","score":0.1231914919,"source":"core_web_sm","input_hash":1420024455,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.1231914919},"_input_hash":1420024455,"_task_hash":-1076862010,"answer":"reject"} +{"text":"It's be nice if you actually explained the problem instead of just saying he's wrong and a FUD spreader.","spans":[{"start":91,"end":94,"text":"FUD","rank":1,"label":"PRODUCT","score":0.321207273,"source":"core_web_sm","input_hash":-2108419853,"answer":"reject"}],"meta":{"section":"politics","score":0.321207273},"_input_hash":-2108419853,"_task_hash":-1373431560,"answer":"reject"} +{"text":"More like Way","spans":[{"start":10,"end":13,"text":"Way","rank":2,"label":"PRODUCT","score":0.0554387024,"source":"core_web_sm","input_hash":336037856,"answer":"reject"}],"meta":{"section":"WTF","score":0.0554387024},"_input_hash":336037856,"_task_hash":-1517541656,"answer":"reject"} +{"text":"I was raised in a non-rural part of Tennessee.","spans":[{"start":18,"end":21,"text":"non","rank":7,"label":"PRODUCT","score":0.0256885341,"source":"core_web_sm","input_hash":1200537073,"answer":"reject"}],"meta":{"section":"atheism","score":0.0256885341},"_input_hash":1200537073,"_task_hash":-1294736663,"answer":"reject"} +{"text":";) Happy to be of service!","spans":[{"start":3,"end":8,"text":"Happy","rank":2,"label":"PRODUCT","score":0.0575727882,"source":"core_web_sm","input_hash":-1423216616,"answer":"reject"}],"meta":{"section":"atheism","score":0.0575727882},"_input_hash":-1423216616,"_task_hash":10358376,"answer":"reject"} +{"text":"I've gotten a couple of gigs through them, although ironically not 3D.","spans":[{"start":67,"end":70,"text":"3D.","rank":1,"label":"PRODUCT","score":0.1571624741,"source":"core_web_sm","input_hash":426466402,"answer":"reject"}],"meta":{"section":"animation","score":0.1571624741},"_input_hash":426466402,"_task_hash":-555253661,"answer":"reject"} +{"text":"Comcast should be paying L3.","spans":[{"start":25,"end":27,"text":"L3","rank":2,"label":"PRODUCT","score":0.0772315487,"source":"core_web_sm","input_hash":-711308443,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0772315487},"_input_hash":-711308443,"_task_hash":-276880053,"answer":"reject"} +{"text":"A company could transit through XO and still connect to Level 3 only for on-net data like Netflix, and Level 3 will charge money for the data.","spans":[{"start":103,"end":110,"text":"Level 3","rank":1,"label":"PRODUCT","score":0.07965756,"source":"core_web_sm","input_hash":-33560861,"answer":"accept"}],"meta":{"section":"politics","score":0.07965756},"_input_hash":-33560861,"_task_hash":496191052,"answer":"accept"} +{"text":"I just got the 420th upvote... sweet","spans":[{"start":15,"end":20,"text":"420th","rank":2,"label":"PRODUCT","score":0.0702980787,"source":"core_web_sm","input_hash":-2073902722,"answer":"reject"}],"meta":{"section":"trees","score":0.0702980787},"_input_hash":-2073902722,"_task_hash":1212639425,"answer":"reject"} +{"text":"I am by no stretch of the imagination an Alien )","spans":[{"start":41,"end":46,"text":"Alien","rank":5,"label":"PRODUCT","score":0.0083090859,"source":"core_web_sm","input_hash":889675110,"answer":"reject"}],"meta":{"section":"simracing","score":0.0083090859},"_input_hash":889675110,"_task_hash":1362423431,"answer":"reject"} +{"text":"The biggest thing that helped me gain speed on Ovals was learning to left foot Brake, I had been RFBing for the longest time and as soon as I started LFBing","spans":[{"start":79,"end":84,"text":"Brake","rank":13,"label":"PRODUCT","score":0.01115479,"source":"core_web_sm","input_hash":384304131,"answer":"reject"}],"meta":{"section":"simracing","score":0.01115479},"_input_hash":384304131,"_task_hash":401527128,"answer":"reject"} +{"text":"If you have specific questions I would be MORE then happy to answer anything so feel free to PM me.","spans":[{"start":93,"end":95,"text":"PM","rank":4,"label":"PRODUCT","score":0.0298995821,"source":"core_web_sm","input_hash":-757295309,"answer":"reject"}],"meta":{"section":"seduction","score":0.0298995821},"_input_hash":-757295309,"_task_hash":34974951,"answer":"reject"} +{"text":"Reminds me a lot of this painting.","spans":[{"start":0,"end":7,"text":"Reminds","rank":1,"label":"PRODUCT","score":0.0685087382,"source":"core_web_sm","input_hash":-1384293072,"answer":"reject"}],"meta":{"section":"pics","score":0.0685087382},"_input_hash":-1384293072,"_task_hash":2035587661,"answer":"reject"} +{"text":"If you like Fallout 3, then get New Vegas.","spans":[{"start":12,"end":21,"text":"Fallout 3","rank":3,"label":"PRODUCT","score":0.053893982,"source":"core_web_sm","input_hash":-536887854,"answer":"accept"}],"meta":{"section":"xbox360","score":0.053893982},"_input_hash":-536887854,"_task_hash":1269837256,"answer":"accept"} +{"text":"Well if my rather extensive contact with Mormons is any indication you might want to tread lightly around any enclaves.","spans":[{"start":110,"end":118,"text":"enclaves","rank":0,"label":"PRODUCT","score":0.8360529151,"source":"core_web_sm","input_hash":-1730761793,"answer":"reject"}],"meta":{"section":"guns","score":0.8360529151},"_input_hash":-1730761793,"_task_hash":1233238815,"answer":"reject"} +{"text":"You wrote that article, didn't you. ;) Haha, jk, I stand corrected!","spans":[{"start":39,"end":43,"text":"Haha","rank":4,"label":"PRODUCT","score":0.0151249864,"source":"core_web_sm","input_hash":-735904430,"answer":"reject"}],"meta":{"section":"trees","score":0.0151249864},"_input_hash":-735904430,"_task_hash":-2029974758,"answer":"reject"} +{"text":"how about you quote me the \"absolutes\" that i spoke in.","spans":[{"start":4,"end":9,"text":"about","rank":5,"label":"PRODUCT","score":0.0062333949,"source":"core_web_sm","input_hash":528450669,"answer":"reject"}],"meta":{"section":"atheism","score":0.0062333949},"_input_hash":528450669,"_task_hash":1173495797,"answer":"reject"} +{"text":"commercial breweries use pellets almost exclusively because they are cheaper and more standardized than whole hops.","spans":[{"start":33,"end":39,"text":"almost","rank":2,"label":"PRODUCT","score":0.1145083869,"source":"core_web_sm","input_hash":-2052532712,"answer":"reject"}],"meta":{"section":"Homebrewing","score":0.1145083869},"_input_hash":-2052532712,"_task_hash":-2129653048,"answer":"reject"} +{"text":"http://www.youtube.com/watch?v=9sEI1AUFJKw&feature=player_embedded#! http://www.youtube.com/watch?v=9sEI1AUFJKw&feature=player_embedded#! http://www.youtube.com/watch?v=9sEI1AUFJKw&feature=player_embedded#! http://www.youtube.com/watch?v=9sEI1AUFJKw&feature=player_embedded#! http://www.youtube.com/watch?v=9sEI1AUFJKw&feature=player_embedded#! http://www.youtube.com/watch?v=9sEI1AUFJKw&feature=player_embedded#! http://www.youtube.com/watch?v=9sEI1AUFJKw&feature=player_embedded#! http://www.youtube.com/watch?v=9sEI1AUFJKw&feature=player_embedded#! http://www.youtube.com/watch?v=9sEI1AUFJKw&feature=player_embedded#! http://www.youtube.com/watch?v=9sEI1AUFJKw&feature=player_embedded#! http://www.youtube.com/watch?v=9sEI1AUFJKw&feature=player_embedded#! http://www.youtube.com/watch?v=9sEI1AUFJKw&feature=player_embedded#! http://www.youtube.com/watch?v=9sEI1AUFJKw&feature=player_embedded#! http://www.youtube.com/watch?v=9sEI1AUFJKw&feature=player_embedded#! http://www.youtube.com/watch?v=9sEI1AUFJKw&feature=player_embedded#! http://www.youtube.com/watch?v=9sEI1AUFJKw&feature=player_embedded#! http://www.youtube.com/watch?v=9sEI1AUFJKw&feature=player_embedded#!","spans":[{"start":70,"end":71,"text":"#","rank":1,"label":"PRODUCT","score":0.2766461094,"source":"core_web_sm","input_hash":1191536352,"answer":"reject"}],"meta":{"section":"4chan","score":0.2766461094},"_input_hash":1191536352,"_task_hash":14204163,"answer":"reject"} +{"text":"Every time I see the Jimmy Wales thing I imagine the dramatic hamster music.","spans":[{"start":21,"end":26,"text":"Jimmy","rank":0,"label":"PRODUCT","score":0.9688166848,"source":"core_web_sm","input_hash":-2034866441,"answer":"reject"}],"meta":{"section":"atheism","score":0.9688166848},"_input_hash":-2034866441,"_task_hash":-218180903,"answer":"reject"} +{"text":"Toyota the #1 car maker decides it doesn't care enough about its reputation to refute the claims?","spans":[{"start":11,"end":12,"text":"#","rank":0,"label":"PRODUCT","score":0.9620719032,"source":"core_web_sm","input_hash":1530768481,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.9620719032},"_input_hash":1530768481,"_task_hash":-1080039902,"answer":"reject"} +{"text":"I got the same thing two years ago :).","spans":[{"start":35,"end":37,"text":":)","rank":4,"label":"PRODUCT","score":0.013224188,"source":"core_web_sm","input_hash":-698029605,"answer":"reject"}],"meta":{"section":"beer","score":0.013224188},"_input_hash":-698029605,"_task_hash":1880564213,"answer":"reject"} +{"text":"Deus Ex used the Unreal engine, which had Multiplayer Code built in.","spans":[{"start":42,"end":58,"text":"Multiplayer Code","rank":0,"label":"PRODUCT","score":0.5567042864,"source":"core_web_sm","input_hash":1718170253,"answer":"reject"}],"meta":{"section":"gaming","score":0.5567042864},"_input_hash":1718170253,"_task_hash":172237363,"answer":"reject"} +{"text":"It's funny: in /r/Christianity, the hivemind will upvote any random Bible verse, no matter how disconnected it is with the discussion at hand.","spans":[{"start":68,"end":73,"text":"Bible","rank":3,"label":"PRODUCT","score":0.0211381149,"source":"core_web_sm","input_hash":-1588672927,"answer":"reject"}],"meta":{"section":"Christianity","score":0.0211381149},"_input_hash":-1588672927,"_task_hash":1898639093,"answer":"reject"} +{"text":"I recently got rid of DSL that was advertised as up to 4 Mbps, when in reality, when it worked I was getting between 50 Kbps-512 Kbps.","spans":[{"start":55,"end":61,"text":"4 Mbps","rank":3,"label":"PRODUCT","score":0.0207521346,"source":"core_web_sm","input_hash":-426570095,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0207521346},"_input_hash":-426570095,"_task_hash":615953831,"answer":"reject"} +{"text":"Having toured the BSL-4 labs at Detrick, and conferring with the Vickers team, I strongly applaud you for what you do, because even with all the safety and planning, I still would not want that job.","spans":[{"start":18,"end":23,"text":"BSL-4","rank":0,"label":"PRODUCT","score":0.4434190205,"source":"core_web_sm","input_hash":-1443209350,"answer":"reject"}],"meta":{"section":"IAmA","score":0.4434190205},"_input_hash":-1443209350,"_task_hash":1624085246,"answer":"reject"} +{"text":"I don't know a lot about the importance of Jesus' lineage to his being the Messiah but clerical errors like this","spans":[{"start":75,"end":82,"text":"Messiah","rank":1,"label":"PRODUCT","score":0.0379479259,"source":"core_web_sm","input_hash":-1826366452,"answer":"reject"}],"meta":{"section":"religion","score":0.0379479259},"_input_hash":-1826366452,"_task_hash":400138735,"answer":"reject"} +{"text":"I'm not sure when the book of Isaiah was written, but it could make for an interesting comparison.","spans":[{"start":30,"end":36,"text":"Isaiah","rank":2,"label":"PRODUCT","score":0.0035067384,"source":"core_web_sm","input_hash":469511294,"answer":"reject"}],"meta":{"section":"atheism","score":0.0035067384},"_input_hash":469511294,"_task_hash":-1525455407,"answer":"reject"} +{"text":", however, I'll let him have this point as long as I can make a note that the shape of the Earth has been known since Archimedes, who died around 212 BC.","spans":[{"start":118,"end":128,"text":"Archimedes","rank":3,"label":"PRODUCT","score":0.0870848535,"source":"core_web_sm","input_hash":1741588716,"answer":"reject"}],"meta":{"section":"atheism","score":0.0870848535},"_input_hash":1741588716,"_task_hash":944485186,"answer":"reject"} +{"text":"The main ones for you will probably be baked goods & meat analogues (usually not vegan).","spans":[{"start":51,"end":55,"text":"&","rank":2,"label":"PRODUCT","score":0.1609702225,"source":"core_web_sm","input_hash":-1665518016,"answer":"reject"}],"meta":{"section":"vegan","score":0.1609702225},"_input_hash":-1665518016,"_task_hash":-2059391004,"answer":"reject"} +{"text":"it reads RLZD?Z, Slzdya...","spans":[{"start":9,"end":15,"text":"RLZD?Z","rank":1,"label":"PRODUCT","score":0.4257109623,"source":"core_web_sm","input_hash":1464718164,"answer":"reject"}],"meta":{"section":"pics","score":0.4257109623},"_input_hash":1464718164,"_task_hash":347569462,"answer":"reject"} +{"text":"and you start the Act over again (","spans":[{"start":18,"end":21,"text":"Act","rank":0,"label":"PRODUCT","score":0.5451217158,"source":"core_web_sm","input_hash":-333884588,"answer":"reject"}],"meta":{"section":"gaming","score":0.5451217158},"_input_hash":-333884588,"_task_hash":1374273896,"answer":"reject"} +{"text":"Oracle Text: Remove Proposal from your deck before playing if you're not playing for ante, if you're not playing as Richard, or if you're not playing against Lily.","spans":[{"start":158,"end":162,"text":"Lily","rank":0,"label":"PRODUCT","score":0.5469656312,"source":"core_web_sm","input_hash":735051762,"answer":"reject"}],"meta":{"section":"pics","score":0.5469656312},"_input_hash":735051762,"_task_hash":-206935276,"answer":"reject"} +{"text":"This does not force you to target Lily.","spans":[{"start":34,"end":38,"text":"Lily","rank":1,"label":"PRODUCT","score":0.164430146,"source":"core_web_sm","input_hash":-632502138,"answer":"reject"}],"meta":{"section":"pics","score":0.164430146},"_input_hash":-632502138,"_task_hash":-697123400,"answer":"reject"} +{"text":"it's all ready the f7u12 background.","spans":[{"start":19,"end":24,"text":"f7u12","rank":1,"label":"PRODUCT","score":0.0676423714,"source":"core_web_sm","input_hash":-1180836547,"answer":"reject"}],"meta":{"section":"fffffffuuuuuuuuuuuu","score":0.0676423714},"_input_hash":-1180836547,"_task_hash":-869720003,"answer":"reject"} +{"text":"I have built-in Intel GMA and can barely play Portal.","spans":[{"start":46,"end":52,"text":"Portal","rank":1,"label":"PRODUCT","score":0.1861639119,"source":"core_web_sm","input_hash":1219747836,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.1861639119},"_input_hash":1219747836,"_task_hash":2133313997,"answer":"accept"} +{"text":"There is the RSA DLP tracks.","spans":[{"start":13,"end":16,"text":"RSA","rank":0,"label":"PRODUCT","score":0.8824589237,"source":"core_web_sm","input_hash":-975101871,"answer":"reject"}],"meta":{"section":"netsec","score":0.8824589237},"_input_hash":-975101871,"_task_hash":475391861,"answer":"reject"} +{"text":"In Europe we're spinning our heads around about Ireland and the Euro and also that FIFA is corrupt as fuck.","spans":[{"start":64,"end":68,"text":"Euro","rank":2,"label":"PRODUCT","score":0.0854130929,"source":"core_web_sm","input_hash":-640592429,"answer":"reject"}],"meta":{"section":"videos","score":0.0854130929},"_input_hash":-640592429,"_task_hash":-721330167,"answer":"reject"} +{"text":"I think you might just need to try a few more TVs, maybe try an LCD or plasma if you or one of your friends has one.","spans":[{"start":64,"end":67,"text":"LCD","rank":0,"label":"PRODUCT","score":0.9762743307,"source":"core_web_sm","input_hash":-1962509544,"answer":"reject"}],"meta":{"section":"gaming","score":0.9762743307},"_input_hash":-1962509544,"_task_hash":-590748477,"answer":"reject"} +{"text":"Then there is mary J blige hitting her husband at a DV shelter opening after she donated huge money for it.","spans":[{"start":52,"end":54,"text":"DV","rank":0,"label":"PRODUCT","score":0.7262351978,"source":"core_web_sm","input_hash":1828313165,"answer":"reject"}],"meta":{"section":"MensRights","score":0.7262351978},"_input_hash":1828313165,"_task_hash":231033247,"answer":"reject"} +{"text":"I actually do have the full 5TB of bandwidth per month","spans":[{"start":29,"end":31,"text":"TB","rank":1,"label":"PRODUCT","score":0.3197762023,"source":"core_web_sm","input_hash":-1994377582,"answer":"reject"}],"meta":{"section":"fffffffuuuuuuuuuuuu","score":0.3197762023},"_input_hash":-1994377582,"_task_hash":-94459450,"answer":"reject"} +{"text":"Part of the rationale for the 2nd Amendment was to stop a tyrannical govt.","spans":[{"start":26,"end":43,"text":"the 2nd Amendment","rank":4,"label":"PRODUCT","score":0.0201233215,"source":"core_web_sm","input_hash":1986060504,"answer":"reject"}],"meta":{"section":"guns","score":0.0201233215},"_input_hash":1986060504,"_task_hash":-2046511399,"answer":"reject"} +{"text":"The nic-hit I get is so much stronger and longer lasting than any smokeless i've used","spans":[{"start":4,"end":7,"text":"nic","rank":1,"label":"PRODUCT","score":0.0638958074,"source":"core_web_sm","input_hash":2006741870,"answer":"reject"}],"meta":{"section":"Fitness","score":0.0638958074},"_input_hash":2006741870,"_task_hash":-1570934170,"answer":"reject"} +{"text":"the snus i have been using is called Thunder extra stark frosted flavor.","spans":[{"start":37,"end":44,"text":"Thunder","rank":1,"label":"PRODUCT","score":0.3410090516,"source":"core_web_sm","input_hash":1635237256,"answer":"ignore"}],"meta":{"section":"Fitness","score":0.3410090516},"_input_hash":1635237256,"_task_hash":1968882875,"answer":"ignore"} +{"text":"2 people arnt going to rack up a 400$ ticket..","spans":[{"start":36,"end":37,"text":"$","rank":1,"label":"PRODUCT","score":0.3425099976,"source":"core_web_sm","input_hash":-185476820,"answer":"reject"}],"meta":{"section":"pics","score":0.3425099976},"_input_hash":-185476820,"_task_hash":1483139771,"answer":"reject"} +{"text":"I think the M95 might be able to instant shot at a certain range, but I still prefer the GOL.","spans":[{"start":12,"end":15,"text":"M95","rank":1,"label":"PRODUCT","score":0.073701218,"source":"core_web_sm","input_hash":-490357898,"answer":"accept"}],"meta":{"section":"gaming","score":0.073701218},"_input_hash":-490357898,"_task_hash":-1426842581,"answer":"accept"} +{"text":"\"young puppy, brittle bones\" sounds like a tom waits song","spans":[{"start":43,"end":46,"text":"tom","rank":1,"label":"PRODUCT","score":0.0119787366,"source":"core_web_sm","input_hash":1259512036,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0119787366},"_input_hash":1259512036,"_task_hash":-413097943,"answer":"reject"} +{"text":"As societies ourselves and the terrorists have different sets of morals.","spans":[{"start":65,"end":71,"text":"morals","rank":4,"label":"PRODUCT","score":0.00218946,"source":"core_web_sm","input_hash":1572860065,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.00218946},"_input_hash":1572860065,"_task_hash":-1789722673,"answer":"reject"} +{"text":"Them and their 2gb JAZ disk cousins.","spans":[{"start":19,"end":22,"text":"JAZ","rank":1,"label":"PRODUCT","score":0.0396442893,"source":"core_web_sm","input_hash":-214876328,"answer":"reject"}],"meta":{"section":"pics","score":0.0396442893},"_input_hash":-214876328,"_task_hash":-91236976,"answer":"reject"} +{"text":"Here's hoping the recipient challenges you to Feats of Strength.","spans":[{"start":55,"end":63,"text":"Strength","rank":0,"label":"PRODUCT","score":0.7444918604,"source":"core_web_sm","input_hash":-1031304973,"answer":"reject"}],"meta":{"section":"secretsanta","score":0.7444918604},"_input_hash":-1031304973,"_task_hash":-406886281,"answer":"reject"} +{"text":"Build from scratch, or get someone you know to help you do so.","spans":[{"start":0,"end":5,"text":"Build","rank":2,"label":"PRODUCT","score":0.0815287368,"source":"core_web_sm","input_hash":-2084713481,"answer":"reject"}],"meta":{"section":"gaming","score":0.0815287368},"_input_hash":-2084713481,"_task_hash":1910307950,"answer":"reject"} +{"text":"[](/lol \"jingle bells, Batman smells..\")","spans":[{"start":23,"end":29,"text":"Batman","rank":6,"label":"PRODUCT","score":0.002764233,"source":"core_web_sm","input_hash":-320326236,"answer":"reject"}],"meta":{"section":"fffffffuuuuuuuuuuuu","score":0.002764233},"_input_hash":-320326236,"_task_hash":-1395008612,"answer":"reject"} +{"text":"'Rio Grande', 'The Quiet Man', 'Red River', 'Fort Apache', 'She Wore a Yellow Ribbon' and 'Rio Bravo' are all recognized as classic American films. '","spans":[{"start":45,"end":49,"text":"Fort","rank":0,"label":"PRODUCT","score":0.7637275596,"source":"core_web_sm","input_hash":634555847,"answer":"reject"}],"meta":{"section":"movies","score":0.7637275596},"_input_hash":634555847,"_task_hash":-2112132804,"answer":"reject"} +{"text":"are that can only get like 128k dsl.","spans":[{"start":27,"end":31,"text":"128k","rank":1,"label":"PRODUCT","score":0.0936710333,"source":"core_web_sm","input_hash":-2064755654,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0936710333},"_input_hash":-2064755654,"_task_hash":-337371890,"answer":"reject"} +{"text":"This girl sounds impressively flighty.","spans":[{"start":30,"end":37,"text":"flighty","rank":0,"label":"PRODUCT","score":0.7260151176,"source":"core_web_sm","input_hash":-429582885,"answer":"reject"}],"meta":{"section":"relationship_advice","score":0.7260151176},"_input_hash":-429582885,"_task_hash":-1097011745,"answer":"reject"} +{"text":"I obviously can't comment on your past experiences because you're using a throwaway.","spans":[{"start":74,"end":83,"text":"throwaway","rank":2,"label":"PRODUCT","score":0.1156662202,"source":"core_web_sm","input_hash":865566118,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.1156662202},"_input_hash":865566118,"_task_hash":1403124033,"answer":"reject"} +{"text":"But then I was like \u0ca0_\u0ca0","spans":[{"start":20,"end":23,"text":"\u0ca0_\u0ca0","rank":1,"label":"PRODUCT","score":0.1595227603,"source":"core_web_sm","input_hash":10276077,"answer":"reject"}],"meta":{"section":"learnprogramming","score":0.1595227603},"_input_hash":10276077,"_task_hash":133203862,"answer":"reject"} +{"text":"where is the microwave tray?","spans":[{"start":23,"end":27,"text":"tray","rank":2,"label":"PRODUCT","score":0.0292661798,"source":"core_web_sm","input_hash":-357574974,"answer":"reject"}],"meta":{"section":"pics","score":0.0292661798},"_input_hash":-357574974,"_task_hash":-548014328,"answer":"reject"} +{"text":"COMCAST VS","spans":[{"start":8,"end":10,"text":"VS","rank":3,"label":"PRODUCT","score":0.006514063,"source":"core_web_sm","input_hash":-162943074,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.006514063},"_input_hash":-162943074,"_task_hash":315159000,"answer":"reject"} +{"text":"The second can be picked off by Sniper fire.","spans":[{"start":32,"end":38,"text":"Sniper","rank":2,"label":"PRODUCT","score":0.0637754346,"source":"core_web_sm","input_hash":-954114575,"answer":"reject"}],"meta":{"section":"badcompany2","score":0.0637754346},"_input_hash":-954114575,"_task_hash":-1728067265,"answer":"reject"} +{"text":"Recommended films: Westerns: My Darling Clementine, Stagecoach, The Searchers, The Man Who Shot Liberty Valance, She Wore a Yellow Ribbon Others:","spans":[{"start":68,"end":77,"text":"Searchers","rank":2,"label":"PRODUCT","score":0.0403684872,"source":"core_web_sm","input_hash":-1122429603,"answer":"reject"}],"meta":{"section":"movies","score":0.0403684872},"_input_hash":-1122429603,"_task_hash":-681109221,"answer":"reject"} +{"text":"I think the 178 is the same as the 34C.","spans":[{"start":12,"end":15,"text":"178","rank":3,"label":"PRODUCT","score":0.0156223444,"source":"core_web_sm","input_hash":-665844681,"answer":"reject"}],"meta":{"section":"Scotch","score":0.0156223444},"_input_hash":-665844681,"_task_hash":1146843007,"answer":"reject"} +{"text":"As to your first part: How do you know that A will choose from the row with 3 toothpicks?","spans":[{"start":67,"end":70,"text":"row","rank":6,"label":"PRODUCT","score":0.0084688378,"source":"core_web_sm","input_hash":-1932966263,"answer":"reject"}],"meta":{"section":"Economics","score":0.0084688378},"_input_hash":-1932966263,"_task_hash":1888944328,"answer":"reject"} +{"text":"I also want a shinier version of Video Girl Ai.","spans":[{"start":33,"end":46,"text":"Video Girl Ai","rank":6,"label":"PRODUCT","score":0.0022997411,"source":"core_web_sm","input_hash":568351973,"answer":"reject"}],"meta":{"section":"anime","score":0.0022997411},"_input_hash":568351973,"_task_hash":741991476,"answer":"reject"} +{"text":"I already knew Bugmenot","spans":[{"start":15,"end":23,"text":"Bugmenot","rank":1,"label":"PRODUCT","score":0.1334291428,"source":"core_web_sm","input_hash":-293323781,"answer":"reject"}],"meta":{"section":"software","score":0.1334291428},"_input_hash":-293323781,"_task_hash":1348302077,"answer":"reject"} +{"text":"The Tide is High.","spans":[{"start":4,"end":8,"text":"Tide","rank":0,"label":"PRODUCT","score":0.8941492458,"source":"core_web_sm","input_hash":1468067876,"answer":"reject"}],"meta":{"section":"Music","score":0.8941492458},"_input_hash":1468067876,"_task_hash":-772680480,"answer":"reject"} +{"text":"Build a town with npcs acting on my every whim and order, etc.","spans":[{"start":0,"end":5,"text":"Build","rank":2,"label":"PRODUCT","score":0.0180932062,"source":"core_web_sm","input_hash":-855862320,"answer":"reject"}],"meta":{"section":"Minecraft","score":0.0180932062},"_input_hash":-855862320,"_task_hash":-1476901591,"answer":"reject"} +{"text":"Mars was colonized in the first half of the 22nd century, with the first permanent settlements appearing around 2110.","spans":[{"start":0,"end":4,"text":"Mars","rank":0,"label":"PRODUCT","score":0.959788011,"source":"core_web_sm","input_hash":164590530,"answer":"reject"}],"meta":{"section":"iamaf","score":0.959788011},"_input_hash":164590530,"_task_hash":-1402544778,"answer":"reject"} +{"text":"It's non-hormonal and sounds effortless too.","spans":[{"start":5,"end":8,"text":"non","rank":3,"label":"PRODUCT","score":0.0541307744,"source":"core_web_sm","input_hash":1124482958,"answer":"reject"}],"meta":{"section":"TwoXChromosomes","score":0.0541307744},"_input_hash":1124482958,"_task_hash":-1796678159,"answer":"reject"} +{"text":"Correction: 1/10 climate skeptics ADMIT that they have no credible experience in the climatological or meteorological sciences.","spans":[{"start":34,"end":39,"text":"ADMIT","rank":1,"label":"PRODUCT","score":0.125783798,"source":"core_web_sm","input_hash":2025540242,"answer":"reject"}],"meta":{"section":"science","score":0.125783798},"_input_hash":2025540242,"_task_hash":-832578213,"answer":"reject"} +{"text":"is mortal P1 Mars orbits","spans":[{"start":13,"end":17,"text":"Mars","rank":0,"label":"PRODUCT","score":0.9178011294,"source":"core_web_sm","input_hash":595939125,"answer":"reject"}],"meta":{"section":"DebateAnAtheist","score":0.9178011294},"_input_hash":595939125,"_task_hash":-380939220,"answer":"reject"} +{"text":"I have a grand total of 13 moving violations, all for/and less than 5mph over the speed limit.","spans":[{"start":69,"end":72,"text":"mph","rank":2,"label":"PRODUCT","score":0.1910164569,"source":"core_web_sm","input_hash":-810726110,"answer":"reject"}],"meta":{"section":"pics","score":0.1910164569},"_input_hash":-810726110,"_task_hash":-183145591,"answer":"reject"} +{"text":"is mortal P1 Mars orbits","spans":[{"start":10,"end":17,"text":"P1 Mars","rank":1,"label":"PRODUCT","score":0.0528598309,"source":"core_web_sm","input_hash":595939125,"answer":"reject"}],"meta":{"section":"DebateAnAtheist","score":0.0528598309},"_input_hash":595939125,"_task_hash":-1695381878,"answer":"reject"} +{"text":"the sun C Mars orbits the sun.","spans":[{"start":10,"end":14,"text":"Mars","rank":0,"label":"PRODUCT","score":0.5471478038,"source":"core_web_sm","input_hash":782644565,"answer":"reject"}],"meta":{"section":"DebateAnAtheist","score":0.5471478038},"_input_hash":782644565,"_task_hash":-1259508452,"answer":"reject"} +{"text":"You can die from a Cesarean section too.","spans":[{"start":19,"end":27,"text":"Cesarean","rank":1,"label":"PRODUCT","score":0.1721010869,"source":"core_web_sm","input_hash":-1843462042,"answer":"reject"}],"meta":{"section":"IAmA","score":0.1721010869},"_input_hash":-1843462042,"_task_hash":275098831,"answer":"reject"} +{"text":"I think my Classic was well worth it considering how often I use it.","spans":[{"start":11,"end":18,"text":"Classic","rank":0,"label":"PRODUCT","score":0.9954902551,"source":"core_web_sm","input_hash":-1631801168,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.9954902551},"_input_hash":-1631801168,"_task_hash":-501387249,"answer":"reject"} +{"text":"I got all the way to the top race and won it in Forza 3.","spans":[{"start":48,"end":55,"text":"Forza 3","rank":6,"label":"PRODUCT","score":0.0048155809,"source":"core_web_sm","input_hash":1125150709,"answer":"accept"}],"meta":{"section":"gaming","score":0.0048155809},"_input_hash":1125150709,"_task_hash":1012532966,"answer":"accept"} +{"text":"Fucking sweet Angel Island, fucking awesome Hydrocity, bitchin' Marble Gardens, and then this Carnival Night bullshit.","spans":[{"start":94,"end":108,"text":"Carnival Night","rank":2,"label":"PRODUCT","score":0.263814427,"source":"core_web_sm","input_hash":2060398690,"answer":"ignore"}],"meta":{"section":"gaming","score":0.263814427},"_input_hash":2060398690,"_task_hash":1764880171,"answer":"ignore"} +{"text":"I would love to see a Y U","spans":[{"start":24,"end":25,"text":"U","rank":4,"label":"PRODUCT","score":0.0013700056,"source":"core_web_sm","input_hash":-28330046,"answer":"reject"}],"meta":{"section":"fffffffuuuuuuuuuuuu","score":0.0013700056},"_input_hash":-28330046,"_task_hash":-1686859501,"answer":"reject"} +{"text":"I use BurstNET for a cheap VPS, bandwidth would never be a problem there!","spans":[{"start":32,"end":41,"text":"bandwidth","rank":1,"label":"PRODUCT","score":0.0331579532,"source":"core_web_sm","input_hash":-356231991,"answer":"reject"}],"meta":{"section":"fffffffuuuuuuuuuuuu","score":0.0331579532},"_input_hash":-356231991,"_task_hash":277763906,"answer":"reject"} +{"text":"We would probably only be left with the janitor from Building 6","spans":[{"start":53,"end":63,"text":"Building 6","rank":3,"label":"PRODUCT","score":0.0064813838,"source":"core_web_sm","input_hash":-1270252038,"answer":"reject"}],"meta":{"section":"self","score":0.0064813838},"_input_hash":-1270252038,"_task_hash":251471551,"answer":"reject"} +{"text":"(BTW, EE40 is different from EE42/100-40","spans":[{"start":6,"end":10,"text":"EE40","rank":5,"label":"PRODUCT","score":0.0320678038,"source":"core_web_sm","input_hash":-2096210943,"answer":"reject"}],"meta":{"section":"berkeley","score":0.0320678038},"_input_hash":-2096210943,"_task_hash":1482192085,"answer":"reject"} +{"text":"but I hear EE40 is slightly harder (since it's meant for EECS majors).","spans":[{"start":11,"end":15,"text":"EE40","rank":0,"label":"PRODUCT","score":0.6129706636,"source":"core_web_sm","input_hash":-1436166813,"answer":"reject"}],"meta":{"section":"berkeley","score":0.6129706636},"_input_hash":-1436166813,"_task_hash":-693311325,"answer":"reject"} +{"text":"EE42 is the exact same class as EE100 (same lecture, same professor) except that","spans":[{"start":0,"end":4,"text":"EE42","rank":1,"label":"PRODUCT","score":0.070937788,"source":"core_web_sm","input_hash":-1909816373,"answer":"reject"}],"meta":{"section":"berkeley","score":0.070937788},"_input_hash":-1909816373,"_task_hash":-1512391715,"answer":"reject"} +{"text":"if you take EE42, you choose whether you take EE43, the lab portion of EE100.","spans":[{"start":46,"end":50,"text":"EE43","rank":0,"label":"PRODUCT","score":0.7547239401,"source":"core_web_sm","input_hash":-433596680,"answer":"reject"}],"meta":{"section":"berkeley","score":0.7547239401},"_input_hash":-433596680,"_task_hash":2066897784,"answer":"reject"} +{"text":"The phone company doesn't offer DSL, ISDN, or T1 access?","spans":[{"start":46,"end":48,"text":"T1","rank":0,"label":"PRODUCT","score":0.6105280178,"source":"core_web_sm","input_hash":702649900,"answer":"reject"}],"meta":{"section":"technology","score":0.6105280178},"_input_hash":702649900,"_task_hash":1270369785,"answer":"reject"} +{"text":"If you're no stranger to lead (soldering), and not averse to running Windows, then this might also suit: http://sites.google.com/site/scopeonpc/","spans":[{"start":69,"end":76,"text":"Windows","rank":1,"label":"PRODUCT","score":0.3470842708,"source":"core_web_sm","input_hash":1117188556,"answer":"accept"}],"meta":{"section":"electronics","score":0.3470842708},"_input_hash":1117188556,"_task_hash":1283381600,"answer":"accept"} +{"text":"My favorite bumper sticker was one K2 telemark did back in the day that said, \"If it were easy they would call it snowboarding.\"","spans":[{"start":35,"end":37,"text":"K2","rank":0,"label":"PRODUCT","score":0.4522820356,"source":"core_web_sm","input_hash":291158098,"answer":"reject"}],"meta":{"section":"skiing","score":0.4522820356},"_input_hash":291158098,"_task_hash":-1069625004,"answer":"reject"} +{"text":"What speakers and amp do you currently use?","spans":[{"start":18,"end":21,"text":"amp","rank":3,"label":"PRODUCT","score":0.0902055119,"source":"core_web_sm","input_hash":784040528,"answer":"reject"}],"meta":{"section":"Guitar","score":0.0902055119},"_input_hash":784040528,"_task_hash":-888989645,"answer":"reject"} +{"text":"but it will require a mid beefy speaker/amp.","spans":[{"start":39,"end":43,"text":"/amp","rank":4,"label":"PRODUCT","score":0.0688086376,"source":"core_web_sm","input_hash":1332085290,"answer":"reject"}],"meta":{"section":"Guitar","score":0.0688086376},"_input_hash":1332085290,"_task_hash":267280644,"answer":"reject"} +{"text":"I thought of the actual Battle of Los Angeles.","spans":[{"start":24,"end":30,"text":"Battle","rank":2,"label":"PRODUCT","score":0.0548831859,"source":"core_web_sm","input_hash":-1350134475,"answer":"reject"}],"meta":{"section":"gaming","score":0.0548831859},"_input_hash":-1350134475,"_task_hash":314436252,"answer":"reject"} +{"text":"If I enjoy it I'll move to Ender's Shadow but likely won't read any others as the consensus from multiple posts I saw","spans":[{"start":35,"end":41,"text":"Shadow","rank":0,"label":"PRODUCT","score":0.9999876169,"source":"core_web_sm","input_hash":995246208,"answer":"reject"}],"meta":{"section":"books","score":0.9999876169},"_input_hash":995246208,"_task_hash":326171753,"answer":"reject"} +{"text":"Also, Discovery has a handy little video which gives a partial explanation","spans":[{"start":6,"end":15,"text":"Discovery","rank":0,"label":"PRODUCT","score":0.9990369588,"source":"core_web_sm","input_hash":381105996,"answer":"ignore"}],"meta":{"section":"todayilearned","score":0.9990369588},"_input_hash":381105996,"_task_hash":1955991560,"answer":"ignore"} +{"text":"You might enjoy http://www.youtube.com/watch?v=qTU_RluZvBw","spans":[{"start":16,"end":58,"text":"http://www.youtube.com/watch?v=qTU_RluZvBw","rank":6,"label":"PRODUCT","score":0.0050068242,"source":"core_web_sm","input_hash":651213821,"answer":"reject"}],"meta":{"section":"pics","score":0.0050068242},"_input_hash":651213821,"_task_hash":297383228,"answer":"reject"} +{"text":"; it cost him around the NZ$200.","spans":[{"start":25,"end":31,"text":"NZ$200","rank":1,"label":"PRODUCT","score":0.0175892018,"source":"core_web_sm","input_hash":-1578927214,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0175892018},"_input_hash":-1578927214,"_task_hash":531474990,"answer":"reject"} +{"text":"M16 was the best gun in cod4, among the top five in mw2","spans":[{"start":0,"end":3,"text":"M16","rank":0,"label":"PRODUCT","score":0.5362314474,"source":"core_web_sm","input_hash":-1531163411,"answer":"accept"}],"meta":{"section":"codbo","score":0.5362314474},"_input_hash":-1531163411,"_task_hash":-1859642494,"answer":"accept"} +{"text":"is this suppose to be a legit defense or excuse of behavior?","spans":[{"start":24,"end":29,"text":"legit","rank":4,"label":"PRODUCT","score":0.0068336262,"source":"core_web_sm","input_hash":-150321001,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0068336262},"_input_hash":-150321001,"_task_hash":1198560769,"answer":"reject"} +{"text":"I went with a chilibin/cooler because I had a 50L one lying around anyway,","spans":[{"start":46,"end":53,"text":"50L one","rank":5,"label":"PRODUCT","score":0.0067639825,"source":"core_web_sm","input_hash":1777449783,"answer":"reject"}],"meta":{"section":"Homebrewing","score":0.0067639825},"_input_hash":1777449783,"_task_hash":363698051,"answer":"reject"} +{"text":"Like... a Lambo field.","spans":[{"start":10,"end":15,"text":"Lambo","rank":1,"label":"PRODUCT","score":0.0310242332,"source":"core_web_sm","input_hash":-1113723649,"answer":"reject"}],"meta":{"section":"WTF","score":0.0310242332},"_input_hash":-1113723649,"_task_hash":1845625572,"answer":"reject"} +{"text":", I've decided to get determined haha.","spans":[{"start":33,"end":37,"text":"haha","rank":3,"label":"PRODUCT","score":0.0415857653,"source":"core_web_sm","input_hash":-1089724461,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0415857653},"_input_hash":-1089724461,"_task_hash":998581915,"answer":"reject"} +{"text":"However I renamed the appliaction \"Half Life 2: Episode 3 (build 0.7.80)\" so that it will wig out my friends who have notifications enabled.","spans":[{"start":65,"end":71,"text":"0.7.80","rank":0,"label":"PRODUCT","score":0.7628047842,"source":"core_web_sm","input_hash":1557353727,"answer":"reject"}],"meta":{"section":"gaming","score":0.7628047842},"_input_hash":1557353727,"_task_hash":1457756436,"answer":"reject"} +{"text":"Stories or no stories, the requests for the traffic from Level3 are coming from Comcast's own customers.","spans":[{"start":57,"end":63,"text":"Level3","rank":1,"label":"PRODUCT","score":0.0047152092,"source":"core_web_sm","input_hash":-1099168174,"answer":"reject"}],"meta":{"section":"technology","score":0.0047152092},"_input_hash":-1099168174,"_task_hash":-1380140711,"answer":"reject"} +{"text":"Typically, Comcast would pay Level3 for an arrangement like that.","spans":[{"start":29,"end":35,"text":"Level3","rank":0,"label":"PRODUCT","score":0.8110082398,"source":"core_web_sm","input_hash":-1068850612,"answer":"reject"}],"meta":{"section":"technology","score":0.8110082398},"_input_hash":-1068850612,"_task_hash":-438658248,"answer":"reject"} +{"text":"I hope it's compatible with Windows 7, and I really hope it doesn't give me the click of death!","spans":[{"start":28,"end":37,"text":"Windows 7","rank":1,"label":"PRODUCT","score":0.1977718897,"source":"core_web_sm","input_hash":1397170170,"answer":"accept"}],"meta":{"section":"pics","score":0.1977718897},"_input_hash":1397170170,"_task_hash":-1529802792,"answer":"accept"} +{"text":"I've been doing a lot of work lately with optimizing JavaScript in my project","spans":[{"start":53,"end":63,"text":"JavaScript","rank":2,"label":"PRODUCT","score":0.0090138801,"source":"core_web_sm","input_hash":-1523892575,"answer":"accept"}],"meta":{"section":"web_design","score":0.0090138801},"_input_hash":-1523892575,"_task_hash":-456051514,"answer":"accept"} +{"text":"No such hting as a \"Mormon Bible.","spans":[{"start":20,"end":32,"text":"Mormon Bible","rank":3,"label":"PRODUCT","score":0.0320497355,"source":"core_web_sm","input_hash":-999247276,"answer":"reject"}],"meta":{"section":"IAmA","score":0.0320497355},"_input_hash":-999247276,"_task_hash":-1920912390,"answer":"reject"} +{"text":"worth a link better than a circlejerk ;-)","spans":[{"start":38,"end":41,"text":";-)","rank":2,"label":"PRODUCT","score":0.1740058945,"source":"core_web_sm","input_hash":-1500204524,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.1740058945},"_input_hash":-1500204524,"_task_hash":2136892071,"answer":"reject"} +{"text":"After a couple of hours they pay the tab and leave.","spans":[{"start":18,"end":23,"text":"hours","rank":11,"label":"PRODUCT","score":0.0015294853,"source":"core_web_sm","input_hash":-531679197,"answer":"reject"}],"meta":{"section":"pics","score":0.0015294853},"_input_hash":-531679197,"_task_hash":-1674752821,"answer":"reject"} +{"text":"Source - former anime nerd and has worked at 5 anime conventions","spans":[{"start":47,"end":52,"text":"anime","rank":2,"label":"PRODUCT","score":0.001654909,"source":"core_web_sm","input_hash":770183991,"answer":"reject"}],"meta":{"section":"WTF","score":0.001654909},"_input_hash":770183991,"_task_hash":1836561759,"answer":"reject"} +{"text":"Desktop support jobs are a good place to start, if you want to stick with Windows and want an entry job.","spans":[{"start":74,"end":81,"text":"Windows","rank":2,"label":"PRODUCT","score":0.0149999139,"source":"core_web_sm","input_hash":-1921124785,"answer":"accept"}],"meta":{"section":"sysadmin","score":0.0149999139},"_input_hash":-1921124785,"_task_hash":-1470318452,"answer":"accept"} +{"text":"If you want to get into production operations, consider going into a Tier 1 NOC.","spans":[{"start":76,"end":79,"text":"NOC","rank":3,"label":"PRODUCT","score":0.0509627704,"source":"core_web_sm","input_hash":1063454027,"answer":"reject"},{"start":74,"end":79,"text":"1 NOC","rank":1,"label":"PRODUCT","score":0.2140386634,"source":"core_web_sm","input_hash":1063454027,"answer":"reject"}],"meta":{"section":"sysadmin","score":0.0509627704},"_input_hash":1063454027,"_task_hash":-301759832,"answer":"reject"} +{"text":"If you want to get into production operations, consider going into a Tier 1 NOC.","spans":[{"start":74,"end":79,"text":"1 NOC","rank":1,"label":"PRODUCT","score":0.2140386634,"source":"core_web_sm","input_hash":1063454027,"answer":"reject"}],"meta":{"section":"sysadmin","score":0.2140386634},"_input_hash":1063454027,"_task_hash":-235595738,"answer":"reject"} +{"text":"I know it's not what you're asking, but maybe they'll let you buy it with the $10/mo data plan?","spans":[{"start":78,"end":79,"text":"$","rank":1,"label":"PRODUCT","score":0.2699341745,"source":"core_web_sm","input_hash":-936507225,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.2699341745},"_input_hash":-936507225,"_task_hash":1982348849,"answer":"reject"} +{"text":"One of the shots was a physics test package with U233.","spans":[{"start":49,"end":53,"text":"U233","rank":1,"label":"PRODUCT","score":0.0209851883,"source":"core_web_sm","input_hash":494012328,"answer":"ignore"}],"meta":{"section":"energy","score":0.0209851883},"_input_hash":494012328,"_task_hash":2124668902,"answer":"ignore"} +{"text":"\"Sari\" Preview: http://imgur.com/sdWbg Link: http://www.megaupload.com/?d=JLVUNBJV (5MB)","spans":[{"start":85,"end":87,"text":"MB","rank":2,"label":"PRODUCT","score":0.0039705516,"source":"core_web_sm","input_hash":-2057485907,"answer":"reject"}],"meta":{"section":"IndianBabes","score":0.0039705516},"_input_hash":-2057485907,"_task_hash":405294333,"answer":"reject"} +{"text":"NASA Sets News Conference on Astrobiology Discovery","spans":[{"start":42,"end":51,"text":"Discovery","rank":0,"label":"PRODUCT","score":0.8850256905,"source":"core_web_sm","input_hash":-1680194149,"answer":"reject"}],"meta":{"section":"conspiracy","score":0.8850256905},"_input_hash":-1680194149,"_task_hash":1898802613,"answer":"reject"} +{"text":"The new Medal of Honor.","spans":[{"start":8,"end":22,"text":"Medal of Honor","rank":5,"label":"PRODUCT","score":0.0061175524,"source":"core_web_sm","input_hash":395987199,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0061175524},"_input_hash":395987199,"_task_hash":-391598341,"answer":"reject"} +{"text":"*edit - all sent but one copy of NQ - if you didn't get yours, PM please*","spans":[{"start":63,"end":65,"text":"PM","rank":1,"label":"PRODUCT","score":0.2069250983,"source":"core_web_sm","input_hash":1150015783,"answer":"reject"}],"meta":{"section":"gaming","score":0.2069250983},"_input_hash":1150015783,"_task_hash":-2077683308,"answer":"reject"} +{"text":"70k+ miles and no problems at all. 30 to 40 mpg.","spans":[{"start":5,"end":10,"text":"miles","rank":4,"label":"PRODUCT","score":0.0074065544,"source":"core_web_sm","input_hash":-1891547382,"answer":"reject"}],"meta":{"section":"Autos","score":0.0074065544},"_input_hash":-1891547382,"_task_hash":957298351,"answer":"reject"} +{"text":"Hahaha.","spans":[{"start":0,"end":6,"text":"Hahaha","rank":1,"label":"PRODUCT","score":0.0067127017,"source":"core_web_sm","input_hash":-1456711131,"answer":"reject"}],"meta":{"section":"tf2","score":0.0067127017},"_input_hash":-1456711131,"_task_hash":-2096824609,"answer":"reject"} +{"text":"so expensive Farming simply isn't profitable in this country.","spans":[{"start":13,"end":20,"text":"Farming","rank":2,"label":"PRODUCT","score":0.0311887569,"source":"core_web_sm","input_hash":140385835,"answer":"reject"}],"meta":{"section":"politics","score":0.0311887569},"_input_hash":140385835,"_task_hash":703166115,"answer":"reject"} +{"text":"How could you forget it was also in Labyrinth?","spans":[{"start":36,"end":45,"text":"Labyrinth","rank":5,"label":"PRODUCT","score":0.0036392852,"source":"core_web_sm","input_hash":-520044658,"answer":"reject"}],"meta":{"section":"IAmA","score":0.0036392852},"_input_hash":-520044658,"_task_hash":-124310546,"answer":"reject"} +{"text":"that 7MBPS is about a 56m=Mbit line","spans":[{"start":26,"end":30,"text":"Mbit","rank":0,"label":"PRODUCT","score":0.7759836845,"source":"core_web_sm","input_hash":-250490997,"answer":"reject"}],"meta":{"section":"Seattle","score":0.7759836845},"_input_hash":-250490997,"_task_hash":2138016828,"answer":"reject"} +{"text":"The evil klan-being southern states wanted them counted as an entire person (a person their politicians and governments would never actually *represent*) so that they could extract even more value from their victims.","spans":[{"start":9,"end":13,"text":"klan","rank":2,"label":"PRODUCT","score":0.0119774373,"source":"core_web_sm","input_hash":-383018065,"answer":"reject"}],"meta":{"section":"politics","score":0.0119774373},"_input_hash":-383018065,"_task_hash":1520112404,"answer":"reject"} +{"text":"Paul is opposed to abortion and supports a Human Life Amendment and a Life at Conception Act.[113][114][115]","spans":[{"start":78,"end":107,"text":"Conception Act.[113][114][115","rank":2,"label":"PRODUCT","score":0.0576479869,"source":"core_web_sm","input_hash":-1617905420,"answer":"reject"}],"meta":{"section":"politics","score":0.0576479869},"_input_hash":-1617905420,"_task_hash":1892255258,"answer":"reject"} +{"text":"go to r/ trees and upvote something.","spans":[{"start":6,"end":8,"text":"r/","rank":1,"label":"PRODUCT","score":0.0645152571,"source":"core_web_sm","input_hash":976946105,"answer":"reject"}],"meta":{"section":"secretsanta","score":0.0645152571},"_input_hash":976946105,"_task_hash":584804497,"answer":"reject"} +{"text":"Install Advanced Task Killer and set it to kill apps in the background when you put your phone to sleep or after 5 minutes of being idle.","spans":[{"start":17,"end":28,"text":"Task Killer","rank":1,"label":"PRODUCT","score":0.3086849807,"source":"core_web_sm","input_hash":-1425530285,"answer":"reject"}],"meta":{"section":"Android","score":0.3086849807},"_input_hash":-1425530285,"_task_hash":1342492376,"answer":"reject"} +{"text":"Also the Man-o-war is quite beautiful.","spans":[{"start":9,"end":12,"text":"Man","rank":5,"label":"PRODUCT","score":0.0179087548,"source":"core_web_sm","input_hash":-1608925647,"answer":"reject"}],"meta":{"section":"science","score":0.0179087548},"_input_hash":-1608925647,"_task_hash":-2003705519,"answer":"reject"} +{"text":"is one a DVD?","spans":[{"start":9,"end":12,"text":"DVD","rank":1,"label":"PRODUCT","score":0.0215471601,"source":"core_web_sm","input_hash":-637105982,"answer":"reject"}],"meta":{"section":"techsupport","score":0.0215471601},"_input_hash":-637105982,"_task_hash":461624031,"answer":"reject"} +{"text":"does one say \"Software Restore\" or have the Windows\u00ae logo on it?","spans":[{"start":44,"end":51,"text":"Windows","rank":0,"label":"PRODUCT","score":0.4935879387,"source":"core_web_sm","input_hash":-560206076,"answer":"accept"}],"meta":{"section":"techsupport","score":0.4935879387},"_input_hash":-560206076,"_task_hash":-376534083,"answer":"accept"} +{"text":"Depends.","spans":[{"start":0,"end":7,"text":"Depends","rank":0,"label":"PRODUCT","score":0.8663859866,"source":"core_web_sm","input_hash":-1595332027,"answer":"reject"}],"meta":{"section":"pics","score":0.8663859866},"_input_hash":-1595332027,"_task_hash":1168848244,"answer":"reject"} +{"text":"will not Suffice Obama has behaved as anticipated by those who produced his presidency.","spans":[{"start":9,"end":16,"text":"Suffice","rank":0,"label":"PRODUCT","score":0.9902843928,"source":"core_web_sm","input_hash":832348609,"answer":"reject"}],"meta":{"section":"politics","score":0.9902843928},"_input_hash":832348609,"_task_hash":2097911690,"answer":"reject"} +{"text":"my only point is that there are many theists who understand that some things can never be known for sure, and many atheists who are certain of some things, where certainty is not warranted.","spans":[{"start":3,"end":7,"text":"only","rank":7,"label":"PRODUCT","score":0.0063093988,"source":"core_web_sm","input_hash":-474859049,"answer":"reject"}],"meta":{"section":"atheism","score":0.0063093988},"_input_hash":-474859049,"_task_hash":-1116210947,"answer":"reject"} +{"text":"(Edit 2: Added \"in my opinion\", so no one confuses my conjecture as fact.)","spans":[{"start":1,"end":7,"text":"Edit 2","rank":0,"label":"PRODUCT","score":0.4812173288,"source":"core_web_sm","input_hash":29112462,"answer":"reject"}],"meta":{"section":"politics","score":0.4812173288},"_input_hash":29112462,"_task_hash":743455168,"answer":"reject"} +{"text":"I would need more training to work with the really deadly stuff, like BSL-4, but I would do it.","spans":[{"start":70,"end":75,"text":"BSL-4","rank":4,"label":"PRODUCT","score":0.0018986629,"source":"core_web_sm","input_hash":1914698433,"answer":"ignore"}],"meta":{"section":"IAmA","score":0.0018986629},"_input_hash":1914698433,"_task_hash":-1807176188,"answer":"ignore"} +{"text":"* BSL-3 work since 2007.","spans":[{"start":2,"end":7,"text":"BSL-3","rank":3,"label":"PRODUCT","score":0.0021083882,"source":"core_web_sm","input_hash":-281650050,"answer":"ignore"}],"meta":{"section":"IAmA","score":0.0021083882},"_input_hash":-281650050,"_task_hash":1830168195,"answer":"ignore"} +{"text":"Also, some strains that are BSL-2, can be BSL-3 in other cases).","spans":[{"start":42,"end":47,"text":"BSL-3","rank":1,"label":"PRODUCT","score":0.0222275832,"source":"core_web_sm","input_hash":830885669,"answer":"ignore"}],"meta":{"section":"IAmA","score":0.0222275832},"_input_hash":830885669,"_task_hash":-374310071,"answer":"ignore"} +{"text":"The Theory of Poker by Sklansky is great, but it's probably not for someone just learning.","spans":[{"start":14,"end":19,"text":"Poker","rank":1,"label":"PRODUCT","score":0.0537117913,"source":"core_web_sm","input_hash":900061195,"answer":"reject"}],"meta":{"section":"IWantToLearn","score":0.0537117913},"_input_hash":900061195,"_task_hash":1940416846,"answer":"reject"} +{"text":"My first was a Growlithe in my friend's Fire Red.","spans":[{"start":40,"end":48,"text":"Fire Red","rank":2,"label":"PRODUCT","score":0.0519273646,"source":"core_web_sm","input_hash":131300095,"answer":"accept"}],"meta":{"section":"pokemon","score":0.0519273646},"_input_hash":131300095,"_task_hash":-125279185,"answer":"accept"} +{"text":"A lot of non-pit mixes look indistinguishable from pits, except for their size.","spans":[{"start":9,"end":12,"text":"non","rank":1,"label":"PRODUCT","score":0.0959120681,"source":"core_web_sm","input_hash":782464530,"answer":"reject"}],"meta":{"section":"IAmA","score":0.0959120681},"_input_hash":782464530,"_task_hash":715603890,"answer":"reject"} +{"text":"Campaign is fun and has awesome moments, but its your typical COD game.","spans":[{"start":62,"end":65,"text":"COD","rank":1,"label":"PRODUCT","score":0.3276768781,"source":"core_web_sm","input_hash":854810416,"answer":"accept"}],"meta":{"section":"gameswap","score":0.3276768781},"_input_hash":854810416,"_task_hash":1103059136,"answer":"accept"} +{"text":"Better than having to deal with Comcrap anyway.","spans":[{"start":32,"end":39,"text":"Comcrap","rank":3,"label":"PRODUCT","score":0.0920060855,"source":"core_web_sm","input_hash":-995902369,"answer":"reject"}],"meta":{"section":"Seattle","score":0.0920060855},"_input_hash":-995902369,"_task_hash":185913425,"answer":"reject"} +{"text":"If you were to re-post your idea to http://www.reddit.com/r/smells/ you might be the number #1 post of all time!","spans":[{"start":92,"end":94,"text":"#1","rank":3,"label":"PRODUCT","score":0.1245390542,"source":"core_web_sm","input_hash":2094023285,"answer":"reject"}],"meta":{"section":"Cooking","score":0.1245390542},"_input_hash":2094023285,"_task_hash":-230263977,"answer":"reject"} +{"text":"Please don't underestimate the importance of the phono pre-amp.","spans":[{"start":58,"end":62,"text":"-amp","rank":1,"label":"PRODUCT","score":0.2306553964,"source":"core_web_sm","input_hash":-1562026215,"answer":"reject"}],"meta":{"section":"audiophile","score":0.2306553964},"_input_hash":-1562026215,"_task_hash":-810867732,"answer":"reject"} +{"text":"Hooray for GBL (basically GHB) according to other Estonians this is what they were on.","spans":[{"start":26,"end":29,"text":"GHB","rank":3,"label":"PRODUCT","score":0.0210113928,"source":"core_web_sm","input_hash":-1837543644,"answer":"reject"}],"meta":{"section":"funny","score":0.0210113928},"_input_hash":-1837543644,"_task_hash":1123592528,"answer":"reject"} +{"text":"The real bottle neck is the bus speed bewteen your cpu, ram & graphics card.","spans":[{"start":60,"end":64,"text":"&","rank":2,"label":"PRODUCT","score":0.0997820687,"source":"core_web_sm","input_hash":-358737672,"answer":"reject"}],"meta":{"section":"gaming","score":0.0997820687},"_input_hash":-358737672,"_task_hash":-1698540283,"answer":"reject"} +{"text":"Here's a few hints: Prohibition.","spans":[{"start":20,"end":31,"text":"Prohibition","rank":1,"label":"PRODUCT","score":0.1627093512,"source":"core_web_sm","input_hash":23481828,"answer":"reject"}],"meta":{"section":"WTF","score":0.1627093512},"_input_hash":23481828,"_task_hash":657751558,"answer":"reject"} +{"text":"Oh, looks like Prohibition all over again.","spans":[{"start":15,"end":26,"text":"Prohibition","rank":2,"label":"PRODUCT","score":0.1032368612,"source":"core_web_sm","input_hash":-642056702,"answer":"reject"}],"meta":{"section":"WTF","score":0.1032368612},"_input_hash":-642056702,"_task_hash":-1413975640,"answer":"reject"} +{"text":"That and the fact that you'd have to be a fucking retard not to get that the bloke was drawing a link between your bile towards the victim in this matter, and the way Saudi/ fundamentalist/Sharia courts punish the victims of sexual abuse for their rape and humiliation.","spans":[{"start":189,"end":195,"text":"Sharia","rank":2,"label":"PRODUCT","score":0.0223585504,"source":"core_web_sm","input_hash":571766382,"answer":"reject"}],"meta":{"section":"australia","score":0.0223585504},"_input_hash":571766382,"_task_hash":1001372180,"answer":"reject"} +{"text":"Because the exchange rate of 5000 NOK to USD is about $806...","spans":[{"start":55,"end":58,"text":"806","rank":2,"label":"PRODUCT","score":0.0259949405,"source":"core_web_sm","input_hash":-291656655,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0259949405},"_input_hash":-291656655,"_task_hash":1577095372,"answer":"reject"} +{"text":"and it's seen as more of a cent thing...","spans":[{"start":27,"end":31,"text":"cent","rank":1,"label":"PRODUCT","score":0.2249918707,"source":"core_web_sm","input_hash":643934879,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.2249918707},"_input_hash":643934879,"_task_hash":-695274362,"answer":"reject"} +{"text":"That's not a real user :| http://www.reddit.com/user/ProbablyShittingOnYou/","spans":[{"start":23,"end":25,"text":":|","rank":1,"label":"PRODUCT","score":0.2686792651,"source":"core_web_sm","input_hash":295564784,"answer":"reject"}],"meta":{"section":"pics","score":0.2686792651},"_input_hash":295564784,"_task_hash":1621594131,"answer":"reject"} +{"text":"Sure its not the 15mbps that Comcast offers, but its a consistent speed that doesn't drop to 0mbps just because the kids next door run bittorrent all the time.","spans":[{"start":17,"end":23,"text":"15mbps","rank":3,"label":"PRODUCT","score":0.0066113873,"source":"core_web_sm","input_hash":2138454277,"answer":"reject"}],"meta":{"section":"technology","score":0.0066113873},"_input_hash":2138454277,"_task_hash":-1066077142,"answer":"reject"} +{"text":"Wrap a gold coin in a $1 and drop it in a Salvation Army kettle.","spans":[{"start":22,"end":24,"text":"$1","rank":1,"label":"PRODUCT","score":0.0133233942,"source":"core_web_sm","input_hash":-1716345946,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0133233942},"_input_hash":-1716345946,"_task_hash":-975467213,"answer":"reject"} +{"text":"cos its gangstar yo","spans":[{"start":17,"end":19,"text":"yo","rank":2,"label":"PRODUCT","score":0.0678018462,"source":"core_web_sm","input_hash":-1899998086,"answer":"reject"}],"meta":{"section":"pics","score":0.0678018462},"_input_hash":-1899998086,"_task_hash":-669818458,"answer":"reject"} +{"text":"Skrillex - Father Said ft. 12th Planet","spans":[{"start":32,"end":38,"text":"Planet","rank":1,"label":"PRODUCT","score":0.1305351759,"source":"core_web_sm","input_hash":-319609236,"answer":"reject"}],"meta":{"section":"dubstep","score":0.1305351759},"_input_hash":-319609236,"_task_hash":-1562975981,"answer":"reject"} +{"text":"Walkman.","spans":[{"start":0,"end":7,"text":"Walkman","rank":0,"label":"PRODUCT","score":0.5114816497,"source":"core_web_sm","input_hash":-1863137226,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.5114816497},"_input_hash":-1863137226,"_task_hash":466977998,"answer":"reject"} +{"text":"Also, I probably significantly underestimated the cost of bringing in the line and the bandwidth.","spans":[{"start":87,"end":96,"text":"bandwidth","rank":1,"label":"PRODUCT","score":0.388636752,"source":"core_web_sm","input_hash":-1014051139,"answer":"reject"}],"meta":{"section":"technology","score":0.388636752},"_input_hash":-1014051139,"_task_hash":-1587065158,"answer":"reject"} +{"text":"So, you are probably going to be spending $20/month for 1mbit guaranteed and $300-$400 setup per person.","spans":[{"start":78,"end":86,"text":"300-$400","rank":0,"label":"PRODUCT","score":0.7929168573,"source":"core_web_sm","input_hash":841100430,"answer":"reject"}],"meta":{"section":"technology","score":0.7929168573},"_input_hash":841100430,"_task_hash":-1166763314,"answer":"reject"} +{"text":"First, Super Mario RPG.","spans":[{"start":13,"end":22,"text":"Mario RPG","rank":3,"label":"PRODUCT","score":0.0181934179,"source":"core_web_sm","input_hash":-885971335,"answer":"reject"}],"meta":{"section":"gaming","score":0.0181934179},"_input_hash":-885971335,"_task_hash":1743925382,"answer":"reject"} +{"text":"It was released on the NA servers a couple days ago, currently at #1.","spans":[{"start":66,"end":68,"text":"#1","rank":0,"label":"PRODUCT","score":0.856508073,"source":"core_web_sm","input_hash":-1682801408,"answer":"reject"}],"meta":{"section":"starcraft","score":0.856508073},"_input_hash":-1682801408,"_task_hash":-82119798,"answer":"reject"} +{"text":"Classic Triangle!","spans":[{"start":0,"end":16,"text":"Classic Triangle","rank":0,"label":"PRODUCT","score":0.9900631161,"source":"core_web_sm","input_hash":1688285641,"answer":"reject"}],"meta":{"section":"treecomics","score":0.9900631161},"_input_hash":1688285641,"_task_hash":-725576,"answer":"reject"} +{"text":"That would be Amendment 69:","spans":[{"start":14,"end":26,"text":"Amendment 69","rank":2,"label":"PRODUCT","score":0.0980970224,"source":"core_web_sm","input_hash":-817420802,"answer":"reject"}],"meta":{"section":"WTF","score":0.0980970224},"_input_hash":-817420802,"_task_hash":122237463,"answer":"reject"} +{"text":"This is the only song I can find where he sings as Skrillex.","spans":[{"start":51,"end":59,"text":"Skrillex","rank":1,"label":"PRODUCT","score":0.205664161,"source":"core_web_sm","input_hash":603229193,"answer":"reject"}],"meta":{"section":"dubstep","score":0.205664161},"_input_hash":603229193,"_task_hash":494245027,"answer":"reject"} +{"text":"9/11 Tourettes guy + vaguely middle-eastern sounding name guy = Terrorist!","spans":[{"start":5,"end":14,"text":"Tourettes","rank":4,"label":"PRODUCT","score":0.0223126333,"source":"core_web_sm","input_hash":820153001,"answer":"reject"}],"meta":{"section":"pics","score":0.0223126333},"_input_hash":820153001,"_task_hash":738234493,"answer":"reject"} +{"text":"Someone in my class raged against Java today.","spans":[{"start":34,"end":44,"text":"Java today","rank":4,"label":"PRODUCT","score":0.0324307567,"source":"core_web_sm","input_hash":-575711417,"answer":"reject"}],"meta":{"section":"learnprogramming","score":0.0324307567},"_input_hash":-575711417,"_task_hash":-143888382,"answer":"reject"} +{"text":", there is a reason the Eagles let him go.","spans":[{"start":24,"end":30,"text":"Eagles","rank":1,"label":"PRODUCT","score":0.1851770082,"source":"core_web_sm","input_hash":1686898180,"answer":"reject"}],"meta":{"section":"fantasyfootball","score":0.1851770082},"_input_hash":1686898180,"_task_hash":1513840708,"answer":"reject"} +{"text":"Yeah, but the base salary for a rookie NFL player ($325k in 2010) is higher than the highest SC salary.","spans":[{"start":52,"end":56,"text":"325k","rank":0,"label":"PRODUCT","score":0.7655017988,"source":"core_web_sm","input_hash":-215579433,"answer":"reject"}],"meta":{"section":"starcraft","score":0.7655017988},"_input_hash":-215579433,"_task_hash":1814668046,"answer":"reject"} +{"text":"Enjoyed using my Shaman's Far Sight ability to get an aerial view of Stormwind yesterday, can't wait until we can fly over it for real.","spans":[{"start":69,"end":78,"text":"Stormwind","rank":2,"label":"PRODUCT","score":0.0581806573,"source":"core_web_sm","input_hash":-729470029,"answer":"reject"}],"meta":{"section":"wow","score":0.0581806573},"_input_hash":-729470029,"_task_hash":-1831921124,"answer":"reject"} +{"text":"I use Traktor Scratch Pro as my mixing software and heres my problem.","spans":[{"start":14,"end":25,"text":"Scratch Pro","rank":2,"label":"PRODUCT","score":0.0119741951,"source":"core_web_sm","input_hash":422166134,"answer":"reject"}],"meta":{"section":"buildapc","score":0.0119741951},"_input_hash":422166134,"_task_hash":-1413174437,"answer":"reject"} +{"text":"sometimes people are dicks, but hey we need them otherwise the assholes would be shitting everywhere :)","spans":[{"start":21,"end":26,"text":"dicks","rank":6,"label":"PRODUCT","score":0.0173093476,"source":"core_web_sm","input_hash":327412749,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0173093476},"_input_hash":327412749,"_task_hash":-906749873,"answer":"reject"} +{"text":"I like 2v2","spans":[{"start":7,"end":10,"text":"2v2","rank":3,"label":"PRODUCT","score":0.0260514541,"source":"core_web_sm","input_hash":-1085256626,"answer":"reject"}],"meta":{"section":"starcraft","score":0.0260514541},"_input_hash":-1085256626,"_task_hash":-1631341794,"answer":"reject"} +{"text":"I do this with old wives tales & other untruths my parents give, and they do not like it.","spans":[{"start":31,"end":35,"text":"&","rank":1,"label":"PRODUCT","score":0.117099971,"source":"core_web_sm","input_hash":-1403249949,"answer":"reject"}],"meta":{"section":"atheism","score":0.117099971},"_input_hash":-1403249949,"_task_hash":453591740,"answer":"reject"} +{"text":"Sweet Stanza!","spans":[{"start":6,"end":12,"text":"Stanza","rank":1,"label":"PRODUCT","score":0.3812559756,"source":"core_web_sm","input_hash":-1810801936,"answer":"reject"}],"meta":{"section":"pics","score":0.3812559756},"_input_hash":-1810801936,"_task_hash":-589420250,"answer":"reject"} +{"text":"The FEDs look nice, but I want a Zorki 3M. Similar camera...","spans":[{"start":33,"end":50,"text":"Zorki 3M. Similar","rank":4,"label":"PRODUCT","score":0.0392843467,"source":"core_web_sm","input_hash":931983407,"answer":"reject"}],"meta":{"section":"photography","score":0.0392843467},"_input_hash":931983407,"_task_hash":-688696344,"answer":"reject"} +{"text":"What proceeded was me standing in front of the city and doing what was essentially a reverse monty python (operation: French Invasion).","spans":[{"start":118,"end":133,"text":"French Invasion","rank":3,"label":"PRODUCT","score":0.0207996559,"source":"core_web_sm","input_hash":168366368,"answer":"reject"}],"meta":{"section":"rpg","score":0.0207996559},"_input_hash":168366368,"_task_hash":-885579079,"answer":"reject"} +{"text":"My friend thought maybe he could score some crack & sell it...","spans":[{"start":50,"end":54,"text":"&","rank":1,"label":"PRODUCT","score":0.1124025827,"source":"core_web_sm","input_hash":24338162,"answer":"reject"}],"meta":{"section":"Austin","score":0.1124025827},"_input_hash":24338162,"_task_hash":-1822547376,"answer":"reject"} +{"text":"but I wouldn't walk around 12th &","spans":[{"start":32,"end":36,"text":"&","rank":1,"label":"PRODUCT","score":0.0746640364,"source":"core_web_sm","input_hash":1296064411,"answer":"reject"}],"meta":{"section":"Austin","score":0.0746640364},"_input_hash":1296064411,"_task_hash":-1535396629,"answer":"reject"} +{"text":"chicon at night without a large dog & the right colored skin.","spans":[{"start":36,"end":40,"text":"&","rank":1,"label":"PRODUCT","score":0.3290179535,"source":"core_web_sm","input_hash":-543886488,"answer":"reject"}],"meta":{"section":"Austin","score":0.3290179535},"_input_hash":-543886488,"_task_hash":275142975,"answer":"reject"} +{"text":"(And when you are running Windows with Boot Camp, you can select the little Boot Camp thingy hidden in the bottom right of your screen asking it to reboot in Mac OS X when you are done playing games and ready to do some real work again :)","spans":[{"start":76,"end":85,"text":"Boot Camp","rank":1,"label":"PRODUCT","score":0.2550027259,"source":"core_web_sm","input_hash":43971067,"answer":"reject"},{"start":26,"end":33,"text":"Windows","rank":0,"label":"PRODUCT","score":0.7112329392,"source":"core_web_sm","input_hash":43971067,"answer":"accept"}],"meta":{"section":"apple","score":0.2550027259},"_input_hash":43971067,"_task_hash":-1079041076,"answer":"reject"} +{"text":"(And when you are running Windows with Boot Camp, you can select the little Boot Camp thingy hidden in the bottom right of your screen asking it to reboot in Mac OS X when you are done playing games and ready to do some real work again :)","spans":[{"start":26,"end":33,"text":"Windows","rank":0,"label":"PRODUCT","score":0.7112329392,"source":"core_web_sm","input_hash":43971067,"answer":"accept"}],"meta":{"section":"apple","score":0.7112329392},"_input_hash":43971067,"_task_hash":403237135,"answer":"accept"} +{"text":"Or get Orange Box even though you already own Portal (and gift that Portal copy to another Redditor if that's allowed) because you're missing out on TF2 also!","spans":[{"start":46,"end":52,"text":"Portal","rank":0,"label":"PRODUCT","score":0.8959950537,"source":"core_web_sm","input_hash":864752975,"answer":"accept"}],"meta":{"section":"gaming","score":0.8959950537},"_input_hash":864752975,"_task_hash":-1350922607,"answer":"accept"} +{"text":"I guess CERTA was more about lowering tariffs than actually opening markets.","spans":[{"start":8,"end":13,"text":"CERTA","rank":0,"label":"PRODUCT","score":0.962024724,"source":"core_web_sm","input_hash":763597608,"answer":"reject"}],"meta":{"section":"australia","score":0.962024724},"_input_hash":763597608,"_task_hash":542142428,"answer":"reject"} +{"text":"; vintage often gets 3-4.","spans":[{"start":21,"end":24,"text":"3-4","rank":1,"label":"PRODUCT","score":0.0108252722,"source":"core_web_sm","input_hash":-495065981,"answer":"reject"}],"meta":{"section":"tf2items","score":0.0108252722},"_input_hash":-495065981,"_task_hash":-167721838,"answer":"reject"} +{"text":"- you can wrap it around you for warmth as you bound across the cold moons of Jaglan Beta; you can lie on it on the brilliant marble-sanded beaches of Santraginus V, inhaling the heady sea vapours; you can sleep under it beneath the stars which shine so redly on the desert world of Kakrafoon; use it to sail a mini raft down the slow heavy river Moth; wet it for use in hand-to- hand-combat; wrap it round your head to ward off noxious fumes or to avoid the gaze of the Ravenous Bugblatter Beast of Traal (a mindboggingly stupid animal","spans":[{"start":283,"end":292,"text":"Kakrafoon","rank":0,"label":"PRODUCT","score":0.4783798343,"source":"core_web_sm","input_hash":-1695552061,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.4783798343},"_input_hash":-1695552061,"_task_hash":-2094008812,"answer":"reject"} +{"text":"Raekwon's sample on Pyrex Vision http://www.youtube.com/watch?v=Osy793Z0lNw magic starts at 1:50","spans":[{"start":33,"end":75,"text":"http://www.youtube.com/watch?v=Osy793Z0lNw","rank":5,"label":"PRODUCT","score":0.1137865636,"source":"core_web_sm","input_hash":-1768301535,"answer":"reject"}],"meta":{"section":"hiphopheads","score":0.1137865636},"_input_hash":-1768301535,"_task_hash":855384777,"answer":"reject"} +{"text":"I really like Hypatia Sans Pro.","spans":[{"start":14,"end":30,"text":"Hypatia Sans Pro","rank":1,"label":"PRODUCT","score":0.0135495586,"source":"core_web_sm","input_hash":-1252629342,"answer":"accept"}],"meta":{"section":"Design","score":0.0135495586},"_input_hash":-1252629342,"_task_hash":1192660846,"answer":"accept"} +{"text":"The Task Force refused, and insisted that deregulation must remain in place.","spans":[{"start":4,"end":14,"text":"Task Force","rank":1,"label":"PRODUCT","score":0.0362827156,"source":"core_web_sm","input_hash":-1341892285,"answer":"reject"}],"meta":{"section":"pics","score":0.0362827156},"_input_hash":-1341892285,"_task_hash":1968664868,"answer":"reject"} +{"text":"I went on quite the Crystal Light bender when I was transitioning away from soft drinks.","spans":[{"start":20,"end":33,"text":"Crystal Light","rank":1,"label":"PRODUCT","score":0.0428585679,"source":"core_web_sm","input_hash":-1548607703,"answer":"accept"}],"meta":{"section":"loseit","score":0.0428585679},"_input_hash":-1548607703,"_task_hash":799582212,"answer":"accept"} +{"text":"color me confused... now, t'wer","spans":[{"start":26,"end":31,"text":"t'wer","rank":1,"label":"PRODUCT","score":0.0529215801,"source":"core_web_sm","input_hash":1945661403,"answer":"reject"}],"meta":{"section":"nonprofit","score":0.0529215801},"_input_hash":1945661403,"_task_hash":-2112122306,"answer":"reject"} +{"text":"Had everyone who heeded this advice on index funds invest in the broad S&P for the last 10 years, they would all be down 12%.","spans":[{"start":71,"end":78,"text":"S&P","rank":2,"label":"PRODUCT","score":0.0701338333,"source":"core_web_sm","input_hash":-1684559308,"answer":"reject"}],"meta":{"section":"investing","score":0.0701338333},"_input_hash":-1684559308,"_task_hash":552587163,"answer":"reject"} +{"text":"But after watching the scene in question #3, I teared up and actually got incredibly outraged about the entire situation.","spans":[{"start":41,"end":43,"text":"#3","rank":0,"label":"PRODUCT","score":0.7859283853,"source":"core_web_sm","input_hash":2147465009,"answer":"reject"}],"meta":{"section":"trees","score":0.7859283853},"_input_hash":2147465009,"_task_hash":1034450603,"answer":"reject"} +{"text":"I think what I was trying to forestall is the intense worry that some coffee drinkers (particularly those who are just starting to branch out) have about *finding the absolute perfect brand of bean*.","spans":[{"start":193,"end":199,"text":"bean*.","rank":0,"label":"PRODUCT","score":0.4296535658,"source":"core_web_sm","input_hash":720046071,"answer":"reject"}],"meta":{"section":"Coffee","score":0.4296535658},"_input_hash":720046071,"_task_hash":248081756,"answer":"reject"} +{"text":"Meanwhile, the bankers that collapsed our economy are getting million dollar bonuses.","spans":[{"start":62,"end":69,"text":"million","rank":4,"label":"PRODUCT","score":0.007681468,"source":"core_web_sm","input_hash":587501700,"answer":"reject"}],"meta":{"section":"DoesAnybodyElse","score":0.007681468},"_input_hash":587501700,"_task_hash":-1307945722,"answer":"reject"} +{"text":"Kicking myself at not getting Java and thinking I really should have guessed C# just from the year.","spans":[{"start":78,"end":79,"text":"#","rank":0,"label":"PRODUCT","score":0.8492509531,"source":"core_web_sm","input_hash":596394497,"answer":"reject"}],"meta":{"section":"programming","score":0.8492509531},"_input_hash":596394497,"_task_hash":-728904514,"answer":"reject"} +{"text":"I switched to Songbird a while ago","spans":[{"start":14,"end":22,"text":"Songbird","rank":2,"label":"PRODUCT","score":0.0297251203,"source":"core_web_sm","input_hash":-1300052056,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.0297251203},"_input_hash":-1300052056,"_task_hash":-1413667261,"answer":"accept"} +{"text":"I don't think these are Windows specific reasons.","spans":[{"start":24,"end":31,"text":"Windows","rank":1,"label":"PRODUCT","score":0.0457186547,"source":"core_web_sm","input_hash":1949548178,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.0457186547},"_input_hash":1949548178,"_task_hash":-732125530,"answer":"accept"} +{"text":"Both Songbird and iTunes are kind of 'bulky' programs on Windows","spans":[{"start":57,"end":64,"text":"Windows","rank":0,"label":"PRODUCT","score":0.9901918832,"source":"core_web_sm","input_hash":1921450411,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.9901918832},"_input_hash":1921450411,"_task_hash":-1275896292,"answer":"accept"} +{"text":"I've owned two iPods too.","spans":[{"start":15,"end":20,"text":"iPods","rank":0,"label":"PRODUCT","score":0.9932107737,"source":"core_web_sm","input_hash":1153456420,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.9932107737},"_input_hash":1153456420,"_task_hash":71014056,"answer":"accept"} +{"text":"Where in TN, out of curiosity?","spans":[{"start":9,"end":11,"text":"TN","rank":3,"label":"PRODUCT","score":0.0838065394,"source":"core_web_sm","input_hash":870906807,"answer":"reject"}],"meta":{"section":"atheism","score":0.0838065394},"_input_hash":870906807,"_task_hash":1096658877,"answer":"reject"} +{"text":"$10 at Google will get me 83.3 GB.","spans":[{"start":26,"end":33,"text":"83.3 GB","rank":5,"label":"PRODUCT","score":0.0117240416,"source":"core_web_sm","input_hash":-1478543413,"answer":"reject"}],"meta":{"section":"fffffffuuuuuuuuuuuu","score":0.0117240416},"_input_hash":-1478543413,"_task_hash":673340525,"answer":"reject"} +{"text":"the 0.","spans":[{"start":4,"end":5,"text":"0","rank":1,"label":"PRODUCT","score":0.0147747324,"source":"core_web_sm","input_hash":-318430567,"answer":"reject"}],"meta":{"section":"pics","score":0.0147747324},"_input_hash":-318430567,"_task_hash":1139490271,"answer":"reject"} +{"text":"So for the shorter, less extensive explanation, Pretty much physicists, but geologists, astro anything, and chemistry will use it.","spans":[{"start":48,"end":54,"text":"Pretty","rank":0,"label":"PRODUCT","score":0.9508825289,"source":"core_web_sm","input_hash":1470343565,"answer":"reject"}],"meta":{"section":"pics","score":0.9508825289},"_input_hash":1470343565,"_task_hash":-1612625451,"answer":"reject"} +{"text":"I'm toying with the idea of taking a long winter holiday some place south of the equator next year; the Antipodes seem like a logical choice.","spans":[{"start":104,"end":113,"text":"Antipodes","rank":2,"label":"PRODUCT","score":0.1251104883,"source":"core_web_sm","input_hash":1466667621,"answer":"reject"}],"meta":{"section":"motorcycles","score":0.1251104883},"_input_hash":1466667621,"_task_hash":-1385471418,"answer":"reject"} +{"text":"Isn't this guy also in Napolean Dynamite?","spans":[{"start":23,"end":40,"text":"Napolean Dynamite","rank":7,"label":"PRODUCT","score":0.0026460041,"source":"core_web_sm","input_hash":-90706090,"answer":"reject"}],"meta":{"section":"movies","score":0.0026460041},"_input_hash":-90706090,"_task_hash":215305812,"answer":"reject"} +{"text":"It's BETA for a reason","spans":[{"start":5,"end":9,"text":"BETA","rank":3,"label":"PRODUCT","score":0.0310468321,"source":"core_web_sm","input_hash":-321696581,"answer":"reject"}],"meta":{"section":"codbo","score":0.0310468321},"_input_hash":-321696581,"_task_hash":-529209702,"answer":"reject"} +{"text":"Just found it on a re-stream before the Foxer interview.","spans":[{"start":40,"end":45,"text":"Foxer","rank":1,"label":"PRODUCT","score":0.4307072092,"source":"core_web_sm","input_hash":-894614444,"answer":"reject"}],"meta":{"section":"starcraft","score":0.4307072092},"_input_hash":-894614444,"_task_hash":-1765542468,"answer":"reject"} +{"text":"Pots & Pans second","spans":[{"start":11,"end":22,"text":"Pans second","rank":0,"label":"PRODUCT","score":0.544785587,"source":"core_web_sm","input_hash":1525341874,"answer":"reject"}],"meta":{"section":"pics","score":0.544785587},"_input_hash":1525341874,"_task_hash":-1317208366,"answer":"reject"} +{"text":"Gargoyles, Gummi Bears, Bonkers, Marsupilami, and Chip & Dale's Rescue Rangers have their own universes away from everything else.","spans":[{"start":50,"end":59,"text":"Chip &","rank":1,"label":"PRODUCT","score":0.004422272,"source":"core_web_sm","input_hash":-2061387250,"answer":"reject"}],"meta":{"section":"gaming","score":0.004422272},"_input_hash":-2061387250,"_task_hash":1875012527,"answer":"reject"} +{"text":"You get a 15$ giftcard for making any purchase at Borders.","spans":[{"start":12,"end":13,"text":"$","rank":1,"label":"PRODUCT","score":0.1939068673,"source":"core_web_sm","input_hash":742395769,"answer":"reject"}],"meta":{"section":"books","score":0.1939068673},"_input_hash":742395769,"_task_hash":711294525,"answer":"reject"} +{"text":"Otacon from the Metal Gear Solid games always annoyed the hell out me.","spans":[{"start":16,"end":32,"text":"Metal Gear Solid","rank":2,"label":"PRODUCT","score":0.0235529842,"source":"core_web_sm","input_hash":44483059,"answer":"accept"}],"meta":{"section":"gaming","score":0.0235529842},"_input_hash":44483059,"_task_hash":1982314539,"answer":"accept"} +{"text":"but Windows machines will also automatically fire up Teredo or ISATAP to get you a working IPv6 address using your v4 addr.","spans":[{"start":115,"end":117,"text":"v4","rank":9,"label":"PRODUCT","score":0.0015486827,"source":"core_web_sm","input_hash":-800885239,"answer":"reject"}],"meta":{"section":"programming","score":0.0015486827},"_input_hash":-800885239,"_task_hash":-2069071444,"answer":"reject"} +{"text":"May I add that you should consider certifications in general for the Win 2008 server, and also add Terminal services (though it should be covered in active directory).","spans":[{"start":99,"end":107,"text":"Terminal","rank":1,"label":"PRODUCT","score":0.0323769535,"source":"core_web_sm","input_hash":-766096971,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0323769535},"_input_hash":-766096971,"_task_hash":537250659,"answer":"reject"} +{"text":"for 5-6k, it's definitely worth a venture,","spans":[{"start":4,"end":8,"text":"5-6k","rank":4,"label":"PRODUCT","score":0.0260672405,"source":"core_web_sm","input_hash":800174690,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0260672405},"_input_hash":800174690,"_task_hash":2119621510,"answer":"reject"} +{"text":"I heard a theory about that regarding the high rate of DV among lesbian couples (greater than among straight couples) - that the assumption (read: stereotype) among the more butch partner is that men are aggressive and violent, therefore more prone to emulating what they *think","spans":[{"start":55,"end":57,"text":"DV","rank":2,"label":"PRODUCT","score":0.0030766521,"source":"core_web_sm","input_hash":1756028942,"answer":"reject"}],"meta":{"section":"MensRights","score":0.0030766521},"_input_hash":1756028942,"_task_hash":-233016638,"answer":"reject"} +{"text":"(stun/ult takes out ~570 dmg, sneak in 1 or 2 regular attacks to account for remaining HP/HP regen).","spans":[{"start":90,"end":92,"text":"HP","rank":2,"label":"PRODUCT","score":0.2562530971,"source":"core_web_sm","input_hash":-2067221661,"answer":"reject"}],"meta":{"section":"HeroesofNewerth","score":0.2562530971},"_input_hash":-2067221661,"_task_hash":-1226546586,"answer":"reject"} +{"text":"In the same scenario as above, let's say I'm trying to kill a lvl 6 Glacius with 700 HP.","spans":[{"start":85,"end":87,"text":"HP","rank":0,"label":"PRODUCT","score":0.5634905508,"source":"core_web_sm","input_hash":201808241,"answer":"reject"}],"meta":{"section":"HeroesofNewerth","score":0.5634905508},"_input_hash":201808241,"_task_hash":-1560923957,"answer":"reject"} +{"text":"He may seem weak, but with 700 HP, I would give the edge to Glacius.","spans":[{"start":31,"end":33,"text":"HP","rank":0,"label":"PRODUCT","score":0.7232257013,"source":"core_web_sm","input_hash":516123566,"answer":"reject"}],"meta":{"section":"HeroesofNewerth","score":0.7232257013},"_input_hash":516123566,"_task_hash":-1683966502,"answer":"reject"} +{"text":"As everyone else stated you get to play more hands in a 6-max game.","spans":[{"start":56,"end":61,"text":"6-max","rank":0,"label":"PRODUCT","score":0.7510809159,"source":"core_web_sm","input_hash":-1537811643,"answer":"reject"}],"meta":{"section":"poker","score":0.7510809159},"_input_hash":-1537811643,"_task_hash":437950958,"answer":"reject"} +{"text":"One thing I would like to add is that 6-max games also have higher variance.","spans":[{"start":38,"end":43,"text":"6-max","rank":0,"label":"PRODUCT","score":0.8792098465,"source":"core_web_sm","input_hash":1180717855,"answer":"reject"}],"meta":{"section":"poker","score":0.8792098465},"_input_hash":1180717855,"_task_hash":1007711928,"answer":"reject"} +{"text":"What about your new SDouble clothing line?","spans":[{"start":20,"end":27,"text":"SDouble","rank":0,"label":"PRODUCT","score":0.9265002051,"source":"core_web_sm","input_hash":67816569,"answer":"ignore"}],"meta":{"section":"pics","score":0.9265002051},"_input_hash":67816569,"_task_hash":1745653825,"answer":"ignore"} +{"text":"And the only way they would ever be stopped is if people complained.","spans":[{"start":8,"end":12,"text":"only","rank":6,"label":"PRODUCT","score":0.0085571095,"source":"core_web_sm","input_hash":565219186,"answer":"reject"}],"meta":{"section":"pics","score":0.0085571095},"_input_hash":565219186,"_task_hash":-766546376,"answer":"reject"} +{"text":"I saw a domain once for KidsExpo.com.","spans":[{"start":24,"end":36,"text":"KidsExpo.com","rank":1,"label":"PRODUCT","score":0.2247257705,"source":"core_web_sm","input_hash":-893049372,"answer":"ignore"}],"meta":{"section":"funny","score":0.2247257705},"_input_hash":-893049372,"_task_hash":-168896190,"answer":"ignore"} +{"text":"The point is not that individual diplomats have a right to personal privacy--","spans":[{"start":68,"end":77,"text":"privacy--","rank":3,"label":"PRODUCT","score":0.0678630544,"source":"core_web_sm","input_hash":-412927075,"answer":"reject"}],"meta":{"section":"politics","score":0.0678630544},"_input_hash":-412927075,"_task_hash":-1591584367,"answer":"reject"} +{"text":"seems like S + 8 is more like sate, but what do I know?","spans":[{"start":15,"end":16,"text":"8","rank":4,"label":"PRODUCT","score":0.0023285892,"source":"core_web_sm","input_hash":-1929996563,"answer":"reject"},{"start":11,"end":12,"text":"S","rank":2,"label":"PRODUCT","score":0.0119594793,"source":"core_web_sm","input_hash":-1929996563,"answer":"reject"}],"meta":{"section":"pics","score":0.0023285892},"_input_hash":-1929996563,"_task_hash":694004467,"answer":"reject"} +{"text":"seems like S + 8 is more like sate, but what do I know?","spans":[{"start":11,"end":12,"text":"S","rank":2,"label":"PRODUCT","score":0.0119594793,"source":"core_web_sm","input_hash":-1929996563,"answer":"reject"}],"meta":{"section":"pics","score":0.0119594793},"_input_hash":-1929996563,"_task_hash":753155690,"answer":"reject"} +{"text":"1 teaspoon baking soda * 1/4 cup granulated sugar Directions 1.","spans":[{"start":50,"end":62,"text":"Directions 1","rank":0,"label":"PRODUCT","score":0.9936001349,"source":"core_web_sm","input_hash":336229684,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.9936001349},"_input_hash":336229684,"_task_hash":-1766717339,"answer":"reject"} +{"text":"Didn't the time go upwards as opposed to Mario games?","spans":[{"start":41,"end":46,"text":"Mario","rank":4,"label":"PRODUCT","score":0.0144886478,"source":"core_web_sm","input_hash":308998394,"answer":"ignore"}],"meta":{"section":"gaming","score":0.0144886478},"_input_hash":308998394,"_task_hash":-1029506500,"answer":"ignore"} +{"text":"I had a 99 F4 I loved very very much.","spans":[{"start":11,"end":13,"text":"F4","rank":1,"label":"PRODUCT","score":0.005891362,"source":"core_web_sm","input_hash":-1063522127,"answer":"reject"}],"meta":{"section":"motorcycles","score":0.005891362},"_input_hash":-1063522127,"_task_hash":-1289820102,"answer":"reject"} +{"text":"it was an ordinary 21-speed mountain bike, though with slick tires, and road bike gearing,","spans":[{"start":19,"end":27,"text":"21-speed","rank":2,"label":"PRODUCT","score":0.1149688526,"source":"core_web_sm","input_hash":1695837687,"answer":"reject"}],"meta":{"section":"funny","score":0.1149688526},"_input_hash":1695837687,"_task_hash":-47007153,"answer":"reject"} +{"text":"A Corolla is a direct competitor to the Civic.","spans":[{"start":2,"end":9,"text":"Corolla","rank":1,"label":"PRODUCT","score":0.4047273089,"source":"core_web_sm","input_hash":-1218102580,"answer":"accept"}],"meta":{"section":"Autos","score":0.4047273089},"_input_hash":-1218102580,"_task_hash":-1058870157,"answer":"accept"} +{"text":"If you look at the cost difference of what you get for that amount, you are better off buying a Corolla or a Civic--","spans":[{"start":96,"end":103,"text":"Corolla","rank":0,"label":"PRODUCT","score":0.5176457199,"source":"core_web_sm","input_hash":591756992,"answer":"accept"}],"meta":{"section":"Autos","score":0.5176457199},"_input_hash":591756992,"_task_hash":127365277,"answer":"accept"} +{"text":"A Corolla is a direct competitor to the Civic.","spans":[{"start":40,"end":45,"text":"Civic","rank":4,"label":"PRODUCT","score":0.0187479477,"source":"core_web_sm","input_hash":-1218102580,"answer":"accept"}],"meta":{"section":"Autos","score":0.0187479477},"_input_hash":-1218102580,"_task_hash":-572336406,"answer":"accept"} +{"text":"This includes the Lancer, Impreza/WRX, Accord, etc.","spans":[{"start":39,"end":45,"text":"Accord","rank":0,"label":"PRODUCT","score":0.8126061315,"source":"core_web_sm","input_hash":-1225403770,"answer":"accept"}],"meta":{"section":"Autos","score":0.8126061315},"_input_hash":-1225403770,"_task_hash":1981194202,"answer":"accept"} +{"text":"I think the confusion comes from the not having the Steam part.","spans":[{"start":52,"end":57,"text":"Steam","rank":4,"label":"PRODUCT","score":0.0165050617,"source":"core_web_sm","input_hash":-345772235,"answer":"accept"}],"meta":{"section":"gaming","score":0.0165050617},"_input_hash":-345772235,"_task_hash":-1886290134,"answer":"accept"} +{"text":"The storyline was fantastic and even though I have no interest in cars beyond watching Top Gear, this show made me want to drift round every corner.","spans":[{"start":87,"end":95,"text":"Top Gear","rank":3,"label":"PRODUCT","score":0.0095400006,"source":"core_web_sm","input_hash":127875443,"answer":"reject"}],"meta":{"section":"anime","score":0.0095400006},"_input_hash":127875443,"_task_hash":1069397285,"answer":"reject"} +{"text":"I took Portal and enjoyed it.","spans":[{"start":7,"end":13,"text":"Portal","rank":0,"label":"PRODUCT","score":0.917686143,"source":"core_web_sm","input_hash":-1603101521,"answer":"accept"}],"meta":{"section":"gaming","score":0.917686143},"_input_hash":-1603101521,"_task_hash":408359739,"answer":"accept"} +{"text":"i kant evan talkk to a gurl","spans":[{"start":2,"end":6,"text":"kant","rank":4,"label":"PRODUCT","score":0.0146988258,"source":"core_web_sm","input_hash":1866164775,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0146988258},"_input_hash":1866164775,"_task_hash":-1983418947,"answer":"reject"} +{"text":"Also, UPS just delayed my GT5 to 12/6....","spans":[{"start":26,"end":29,"text":"GT5","rank":1,"label":"PRODUCT","score":0.023020362,"source":"core_web_sm","input_hash":1816967238,"answer":"accept"}],"meta":{"section":"gaming","score":0.023020362},"_input_hash":1816967238,"_task_hash":-1935830981,"answer":"accept"} +{"text":"because it takes less time (and is cheaper) than TTC.","spans":[{"start":49,"end":52,"text":"TTC","rank":1,"label":"PRODUCT","score":0.1351424018,"source":"core_web_sm","input_hash":-1479150319,"answer":"ignore"}],"meta":{"section":"toronto","score":0.1351424018},"_input_hash":-1479150319,"_task_hash":-1126057752,"answer":"ignore"} +{"text":"On point #3, are the people who make the claims that he is TOO shaky a doctor?","spans":[{"start":9,"end":11,"text":"#3","rank":1,"label":"PRODUCT","score":0.3012877961,"source":"core_web_sm","input_hash":1277237579,"answer":"reject"}],"meta":{"section":"trees","score":0.3012877961},"_input_hash":1277237579,"_task_hash":-1646265774,"answer":"reject"} +{"text":"Use Vim to edit and g++ to compile.","spans":[{"start":4,"end":7,"text":"Vim","rank":2,"label":"PRODUCT","score":0.0034306762,"source":"core_web_sm","input_hash":1380127581,"answer":"accept"}],"meta":{"section":"learnprogramming","score":0.0034306762},"_input_hash":1380127581,"_task_hash":1969111923,"answer":"accept"} +{"text":"And thanks for doing this IAmA! :)","spans":[{"start":26,"end":30,"text":"IAmA","rank":2,"label":"PRODUCT","score":0.0272503129,"source":"core_web_sm","input_hash":196064152,"answer":"reject"}],"meta":{"section":"IAmA","score":0.0272503129},"_input_hash":196064152,"_task_hash":-1965892318,"answer":"reject"} +{"text":"[TimeControl \"900+5\"] [Result \"0-1\"] 1. f3 e5 2. g4 Qh4# {NonesuchPlace checkmated} 0-1","spans":[{"start":55,"end":56,"text":"#","rank":0,"label":"PRODUCT","score":0.7451118102,"source":"core_web_sm","input_hash":-388569608,"answer":"reject"}],"meta":{"section":"chess","score":0.7451118102},"_input_hash":-388569608,"_task_hash":205361472,"answer":"reject"} +{"text":"The important physical constants are generally Planck's constant (h, fundamental unit of angular momentum), Boltzmann constant (k, relates temperature to energy), gravitational constant (G, gives the strength of the gravitational field), and sometimes the electric and magnetic constants (mu and epsilon).","spans":[{"start":108,"end":117,"text":"Boltzmann","rank":1,"label":"PRODUCT","score":0.3096261785,"source":"core_web_sm","input_hash":-925034630,"answer":"reject"}],"meta":{"section":"askscience","score":0.3096261785},"_input_hash":-925034630,"_task_hash":-561207329,"answer":"reject"} +{"text":"There are a lot of equations with h, c, and k, such as Planck's law, or the Fermi-Dirac and Bose-Einstein distributions.","spans":[{"start":44,"end":45,"text":"k","rank":0,"label":"PRODUCT","score":0.9682880443,"source":"core_web_sm","input_hash":1662004,"answer":"reject"}],"meta":{"section":"askscience","score":0.9682880443},"_input_hash":1662004,"_task_hash":-2143923476,"answer":"reject"} +{"text":"I'd say our unit is north of 1,000ft.","spans":[{"start":34,"end":36,"text":"ft","rank":2,"label":"PRODUCT","score":0.0735570178,"source":"core_web_sm","input_hash":-1238008037,"answer":"reject"}],"meta":{"section":"Frugal","score":0.0735570178},"_input_hash":-1238008037,"_task_hash":-593751809,"answer":"reject"} +{"text":"a.author[href$=\"/im_on_fire\"]:after {content: \" ('99 Honda Shadow A.C.E. Deluxe)\"}","spans":[{"start":59,"end":65,"text":"Shadow","rank":0,"label":"PRODUCT","score":0.7036535085,"source":"core_web_sm","input_hash":508369438,"answer":"reject"}],"meta":{"section":"motorcycles","score":0.7036535085},"_input_hash":508369438,"_task_hash":-704693560,"answer":"reject"} +{"text":"Hopefully I can go help pick up some of those loose billions.","spans":[{"start":52,"end":60,"text":"billions","rank":1,"label":"PRODUCT","score":0.0484756587,"source":"core_web_sm","input_hash":912019774,"answer":"reject"}],"meta":{"section":"politics","score":0.0484756587},"_input_hash":912019774,"_task_hash":-1050114785,"answer":"reject"} +{"text":"I might run by the library and pick up a C# book then.","spans":[{"start":42,"end":43,"text":"#","rank":0,"label":"PRODUCT","score":0.8581736775,"source":"core_web_sm","input_hash":-816870641,"answer":"reject"}],"meta":{"section":"pics","score":0.8581736775},"_input_hash":-816870641,"_task_hash":1042386382,"answer":"reject"} +{"text":"I live near a major U.S. city that requires people to buy a license to set up a cart, and they limit the # of licenses that they sell.","spans":[{"start":105,"end":106,"text":"#","rank":0,"label":"PRODUCT","score":0.9946339254,"source":"core_web_sm","input_hash":618055681,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.9946339254},"_input_hash":618055681,"_task_hash":-996751907,"answer":"reject"} +{"text":"Hahaha man that's awesome","spans":[{"start":0,"end":6,"text":"Hahaha","rank":2,"label":"PRODUCT","score":0.0218159646,"source":"core_web_sm","input_hash":191647155,"answer":"reject"}],"meta":{"section":"pics","score":0.0218159646},"_input_hash":191647155,"_task_hash":-2041568202,"answer":"reject"} +{"text":"[BADDA-PSSHHHH!]","spans":[{"start":1,"end":6,"text":"BADDA","rank":1,"label":"PRODUCT","score":0.3217613861,"source":"core_web_sm","input_hash":-983163343,"answer":"reject"}],"meta":{"section":"Music","score":0.3217613861},"_input_hash":-983163343,"_task_hash":615038698,"answer":"reject"} +{"text":"I am optimistic that Green Bay will win the division.","spans":[{"start":21,"end":30,"text":"Green Bay","rank":5,"label":"PRODUCT","score":0.0030430047,"source":"core_web_sm","input_hash":600901448,"answer":"reject"}],"meta":{"section":"nfl","score":0.0030430047},"_input_hash":600901448,"_task_hash":1258431127,"answer":"reject"} +{"text":"The Cafe also bakes the hell out of amazing chocolate chip cookies, cakes and other sweet treats.","spans":[{"start":4,"end":8,"text":"Cafe","rank":0,"label":"PRODUCT","score":0.6223941877,"source":"core_web_sm","input_hash":1339436485,"answer":"reject"}],"meta":{"section":"vegan","score":0.6223941877},"_input_hash":1339436485,"_task_hash":1407872198,"answer":"reject"} +{"text":"* haha just noticed I'm still logged into my secret identity account from messaging my secret santa person!","spans":[{"start":2,"end":6,"text":"haha","rank":5,"label":"PRODUCT","score":0.0022029129,"source":"core_web_sm","input_hash":-1799897228,"answer":"reject"}],"meta":{"section":"trees","score":0.0022029129},"_input_hash":-1799897228,"_task_hash":-1720369750,"answer":"reject"} +{"text":"no LinkedIn profile, I will give that a shot.","spans":[{"start":3,"end":11,"text":"LinkedIn","rank":1,"label":"PRODUCT","score":0.0149536884,"source":"core_web_sm","input_hash":1490780881,"answer":"accept"}],"meta":{"section":"IAmA","score":0.0149536884},"_input_hash":1490780881,"_task_hash":-1429246983,"answer":"accept"} +{"text":"Infuriates me to no end driving up Hwy 1 in California.","spans":[{"start":35,"end":40,"text":"Hwy 1","rank":2,"label":"PRODUCT","score":0.0048175288,"source":"core_web_sm","input_hash":-953764890,"answer":"reject"}],"meta":{"section":"pics","score":0.0048175288},"_input_hash":-953764890,"_task_hash":-1270740919,"answer":"reject"} +{"text":"it's rare any more for a storm to close I70.","spans":[{"start":40,"end":43,"text":"I70","rank":2,"label":"PRODUCT","score":0.0077771821,"source":"core_web_sm","input_hash":-320412255,"answer":"reject"}],"meta":{"section":"Colorado","score":0.0077771821},"_input_hash":-320412255,"_task_hash":343598357,"answer":"reject"} +{"text":"Oh gabey, see I just keep hittin' those nerves, & u swing & swing and u","spans":[{"start":62,"end":66,"text":"&","rank":1,"label":"PRODUCT","score":0.6214162499,"source":"core_web_sm","input_hash":631303234,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.6214162499},"_input_hash":631303234,"_task_hash":915678220,"answer":"reject"} +{"text":"And when I want to resume a previous session I go back to the directory where I always work from and use vim -S to resume my session.","spans":[{"start":105,"end":108,"text":"vim","rank":0,"label":"PRODUCT","score":0.845983888,"source":"core_web_sm","input_hash":-39358494,"answer":"ignore"}],"meta":{"section":"vim","score":0.845983888},"_input_hash":-39358494,"_task_hash":-823889384,"answer":"ignore"} +{"text":"As a web infrastructure support agent, I got my first DMCA complaint today!","spans":[{"start":54,"end":58,"text":"DMCA","rank":2,"label":"PRODUCT","score":0.006470547,"source":"core_web_sm","input_hash":2037340352,"answer":"reject"}],"meta":{"section":"canada","score":0.006470547},"_input_hash":2037340352,"_task_hash":455337986,"answer":"reject"} +{"text":"But FIRST, demand to see the mortgage note, as without their paperwork, they don't have much business asking you for money.","spans":[{"start":4,"end":9,"text":"FIRST","rank":3,"label":"PRODUCT","score":0.0142123296,"source":"core_web_sm","input_hash":153607822,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0142123296},"_input_hash":153607822,"_task_hash":-701940614,"answer":"reject"} +{"text":"Why are you wanting to learn C++ versus say C#?","spans":[{"start":45,"end":46,"text":"#","rank":0,"label":"PRODUCT","score":0.4258231189,"source":"core_web_sm","input_hash":-1518222776,"answer":"reject"}],"meta":{"section":"gamedev","score":0.4258231189},"_input_hash":-1518222776,"_task_hash":-607219778,"answer":"reject"} +{"text":"IRC quakenet.org #mpuktf2.pickup readme tf2 lobby is good though.","spans":[{"start":17,"end":18,"text":"#","rank":0,"label":"PRODUCT","score":0.5260815823,"source":"core_web_sm","input_hash":790542575,"answer":"reject"}],"meta":{"section":"tf2","score":0.5260815823},"_input_hash":790542575,"_task_hash":-2000325893,"answer":"reject"} +{"text":"Yeah, the Zorki is very similar to the FED -- same basic design, same rangefinder mechanism, same 'liberated' Zeiss and Leica technology.","spans":[{"start":10,"end":15,"text":"Zorki","rank":0,"label":"PRODUCT","score":0.9999292937,"source":"core_web_sm","input_hash":1381239743,"answer":"accept"}],"meta":{"section":"photography","score":0.9999292937},"_input_hash":1381239743,"_task_hash":1761501857,"answer":"accept"} +{"text":"Toyota the #1 car maker decides it doesn't care enough about its reputation to refute the claims?","spans":[{"start":11,"end":13,"text":"#1","rank":2,"label":"PRODUCT","score":0.0157398372,"source":"core_web_sm","input_hash":1530768481,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0157398372},"_input_hash":1530768481,"_task_hash":956391687,"answer":"reject"} +{"text":"Probably under the assumption that a web page under 512b isn't going to have anything useful on it, and that IE's error message will be more informative.","spans":[{"start":52,"end":56,"text":"512b","rank":3,"label":"PRODUCT","score":0.03039547,"source":"core_web_sm","input_hash":1715241498,"answer":"reject"}],"meta":{"section":"web_design","score":0.03039547},"_input_hash":1715241498,"_task_hash":-1578774938,"answer":"reject"} +{"text":"I finished with an Audi R8, the cheaper one of the premiums, but my fucking god there was some serious rage trying to get first place in that.","spans":[{"start":19,"end":26,"text":"Audi R8","rank":1,"label":"PRODUCT","score":0.3068117472,"source":"core_web_sm","input_hash":-1167697223,"answer":"accept"}],"meta":{"section":"GT5","score":0.3068117472},"_input_hash":-1167697223,"_task_hash":751579119,"answer":"accept"} +{"text":"After completing the original Fullmetal Alchemist, I tried looking up \"fullmetal fan fiction\".","spans":[{"start":30,"end":49,"text":"Fullmetal Alchemist","rank":1,"label":"PRODUCT","score":0.022608187,"source":"core_web_sm","input_hash":-1570621288,"answer":"reject"}],"meta":{"section":"anime","score":0.022608187},"_input_hash":-1570621288,"_task_hash":-613697311,"answer":"reject"} +{"text":"_Scar Trek: the Next Laceration_","spans":[{"start":1,"end":10,"text":"Scar Trek","rank":5,"label":"PRODUCT","score":0.0040487101,"source":"core_web_sm","input_hash":782931379,"answer":"reject"}],"meta":{"section":"pics","score":0.0040487101},"_input_hash":782931379,"_task_hash":237588423,"answer":"reject"} +{"text":"that books 4-9 were bad, but they definitely focused much more on developing the world and characters, and had a slower pace.","spans":[{"start":11,"end":14,"text":"4-9","rank":2,"label":"PRODUCT","score":0.0136045891,"source":"core_web_sm","input_hash":562600366,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0136045891},"_input_hash":562600366,"_task_hash":-2091866287,"answer":"reject"} +{"text":"\"Act in such a way that you treat humanity, whether in your own person or in the person of any other, never merely as a means to an end, but always at the same time as an end.\"","spans":[{"start":1,"end":4,"text":"Act","rank":2,"label":"PRODUCT","score":0.0248129409,"source":"core_web_sm","input_hash":1225845622,"answer":"reject"}],"meta":{"section":"philosophy","score":0.0248129409},"_input_hash":1225845622,"_task_hash":880424317,"answer":"reject"} +{"text":"I feel for the truck driver, probably lost his job because someone wanted to act out fast & furious.","spans":[{"start":90,"end":94,"text":"&","rank":0,"label":"PRODUCT","score":0.8154258079,"source":"core_web_sm","input_hash":-847013944,"answer":"reject"}],"meta":{"section":"WTF","score":0.8154258079},"_input_hash":-847013944,"_task_hash":1638587935,"answer":"reject"} +{"text":"When you fry your CPU, get the $100 and take it to an online store's Dec 26th sale and get an Athlon X2/mobo combo.","spans":[{"start":94,"end":108,"text":"Athlon X2/mobo","rank":5,"label":"PRODUCT","score":0.0083931124,"source":"core_web_sm","input_hash":1746486007,"answer":"reject"}],"meta":{"section":"gaming","score":0.0083931124},"_input_hash":1746486007,"_task_hash":369014353,"answer":"reject"} +{"text":"I know that Bootcamp is going to be the most smooth, but the thing I hate about Bootcamp is you have to set a partition size, and the only way to change that partitions size (easily) is to totally erase the original partition.","spans":[{"start":80,"end":88,"text":"Bootcamp","rank":3,"label":"PRODUCT","score":0.0133176077,"source":"core_web_sm","input_hash":-1242799798,"answer":"ignore"}],"meta":{"section":"gaming","score":0.0133176077},"_input_hash":-1242799798,"_task_hash":-1565816560,"answer":"ignore"} +{"text":"I guess my best option is just going to be to get an external hardrive, and just have that whole thing for the Windows portion of my Mac.","spans":[{"start":111,"end":118,"text":"Windows","rank":0,"label":"PRODUCT","score":0.7384796205,"source":"core_web_sm","input_hash":2086819591,"answer":"accept"}],"meta":{"section":"gaming","score":0.7384796205},"_input_hash":2086819591,"_task_hash":-371559437,"answer":"accept"} +{"text":"especially if you're going with Windows 7 where you do not have a 3.2GB limit Note that this only applies to Windows 7 x64.","spans":[{"start":109,"end":118,"text":"Windows 7","rank":3,"label":"PRODUCT","score":0.0709142973,"source":"core_web_sm","input_hash":-663611632,"answer":"accept"}],"meta":{"section":"gaming","score":0.0709142973},"_input_hash":-663611632,"_task_hash":1417818925,"answer":"accept"} +{"text":"\" I was inspired to post this because I got into a back and forth with someone about how if everyone realized the Truth of Love, that will save the world and that sort of thing.","spans":[{"start":123,"end":127,"text":"Love","rank":12,"label":"PRODUCT","score":0.0027490169,"source":"core_web_sm","input_hash":-1023941596,"answer":"reject"}],"meta":{"section":"Psychonaut","score":0.0027490169},"_input_hash":-1023941596,"_task_hash":979932118,"answer":"reject"} +{"text":"30 MPH under the limit?","spans":[{"start":3,"end":6,"text":"MPH","rank":1,"label":"PRODUCT","score":0.002349601,"source":"core_web_sm","input_hash":543514127,"answer":"reject"}],"meta":{"section":"pics","score":0.002349601},"_input_hash":543514127,"_task_hash":-124549819,"answer":"reject"} +{"text":"it also has nothing to do with her being dumb..... only that she is young(er than the op)","spans":[{"start":86,"end":88,"text":"op","rank":2,"label":"PRODUCT","score":0.0911619616,"source":"core_web_sm","input_hash":-249892051,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.0911619616},"_input_hash":-249892051,"_task_hash":-112985432,"answer":"reject"} +{"text":"Undead is the race and the Forsaken is the faction.","spans":[{"start":27,"end":35,"text":"Forsaken","rank":2,"label":"PRODUCT","score":0.0022228112,"source":"core_web_sm","input_hash":-743654105,"answer":"reject"}],"meta":{"section":"wow","score":0.0022228112},"_input_hash":-743654105,"_task_hash":-2090418350,"answer":"reject"} +{"text":"I bought Left 4 Dead 2 for $5.","spans":[{"start":9,"end":22,"text":"Left 4 Dead 2","rank":6,"label":"PRODUCT","score":0.0375711262,"source":"core_web_sm","input_hash":-1560734314,"answer":"accept"}],"meta":{"section":"gaming","score":0.0375711262},"_input_hash":-1560734314,"_task_hash":2126528569,"answer":"accept"} +{"text":"and MrAnthropic was healthy, my parents would expect MrAnthropic to at least *offer* to help out.","spans":[{"start":53,"end":64,"text":"MrAnthropic","rank":2,"label":"PRODUCT","score":0.0943976439,"source":"core_web_sm","input_hash":1111417442,"answer":"reject"}],"meta":{"section":"relationships","score":0.0943976439},"_input_hash":1111417442,"_task_hash":577229112,"answer":"reject"} +{"text":"If I was sick & living at home","spans":[{"start":14,"end":18,"text":"&","rank":0,"label":"PRODUCT","score":0.781847655,"source":"core_web_sm","input_hash":1201573280,"answer":"reject"}],"meta":{"section":"relationships","score":0.781847655},"_input_hash":1201573280,"_task_hash":635086763,"answer":"reject"} +{"text":"Also never actually telling about Shepherds past annoys me.","spans":[{"start":34,"end":43,"text":"Shepherds","rank":3,"label":"PRODUCT","score":0.0241346608,"source":"core_web_sm","input_hash":-1027195075,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0241346608},"_input_hash":-1027195075,"_task_hash":991247774,"answer":"reject"} +{"text":"do you feel fly like a G6?","spans":[{"start":23,"end":25,"text":"G6","rank":1,"label":"PRODUCT","score":0.2521573426,"source":"core_web_sm","input_hash":-370755837,"answer":"ignore"}],"meta":{"section":"IAmA","score":0.2521573426},"_input_hash":-370755837,"_task_hash":-326067073,"answer":"ignore"} +{"text":"This is why I don't \"Like\" anything or use Facebook Connect to register anywhere.","spans":[{"start":52,"end":59,"text":"Connect","rank":1,"label":"PRODUCT","score":0.0033488255,"source":"core_web_sm","input_hash":-640872994,"answer":"reject"}],"meta":{"section":"technology","score":0.0033488255},"_input_hash":-640872994,"_task_hash":2022498070,"answer":"reject"} +{"text":"I've been there before when I hiked Mount Fuji with my friends.","spans":[{"start":36,"end":46,"text":"Mount Fuji","rank":2,"label":"PRODUCT","score":0.0137203992,"source":"core_web_sm","input_hash":-803106886,"answer":"reject"}],"meta":{"section":"japan","score":0.0137203992},"_input_hash":-803106886,"_task_hash":-494969699,"answer":"reject"} +{"text":"I.e. on the flip side it doesn't matter what professionals you have then or now or in the future they will not be able to contest the Qur'aan.","spans":[{"start":134,"end":141,"text":"Qur'aan","rank":4,"label":"PRODUCT","score":0.0147605275,"source":"core_web_sm","input_hash":1922346306,"answer":"reject"}],"meta":{"section":"islam","score":0.0147605275},"_input_hash":1922346306,"_task_hash":-808485932,"answer":"reject"} +{"text":"Oh, the Dome of the Rock thing.","spans":[{"start":20,"end":24,"text":"Rock","rank":1,"label":"PRODUCT","score":0.2862543308,"source":"core_web_sm","input_hash":-775432690,"answer":"reject"}],"meta":{"section":"islam","score":0.2862543308},"_input_hash":-775432690,"_task_hash":408008299,"answer":"reject"} +{"text":"http://www.reddit.com/r/fffffffuuuuuuuuuuuu/ Post it here,","spans":[{"start":0,"end":49,"text":"http://www.reddit.com/r/fffffffuuuuuuuuuuuu/ Post","rank":1,"label":"PRODUCT","score":0.002057308,"source":"core_web_sm","input_hash":721775854,"answer":"reject"}],"meta":{"section":"reddit.com","score":0.002057308},"_input_hash":721775854,"_task_hash":-1815079730,"answer":"reject"} +{"text":"Dates very from soon after the destruction of the Temple in Jerusalem to as late as the second century.","spans":[{"start":50,"end":56,"text":"Temple","rank":3,"label":"PRODUCT","score":0.0750585164,"source":"core_web_sm","input_hash":1239542001,"answer":"reject"}],"meta":{"section":"atheism","score":0.0750585164},"_input_hash":1239542001,"_task_hash":-513456925,"answer":"reject"} +{"text":"ew weird to think that non-americans had to draw that bet they were like \"tf\"","spans":[{"start":74,"end":76,"text":"tf","rank":4,"label":"PRODUCT","score":0.0029490344,"source":"core_web_sm","input_hash":-543478099,"answer":"reject"}],"meta":{"section":"scifi","score":0.0029490344},"_input_hash":-543478099,"_task_hash":838807430,"answer":"reject"} +{"text":"I fucking love Star Trek.","spans":[{"start":15,"end":24,"text":"Star Trek","rank":1,"label":"PRODUCT","score":0.0636385951,"source":"core_web_sm","input_hash":-385848338,"answer":"reject"}],"meta":{"section":"startrek","score":0.0636385951},"_input_hash":-385848338,"_task_hash":1945967147,"answer":"reject"} +{"text":"Off Topic: Why is Alex Jones dressed like he belongs to Chabad Lubavitch?","spans":[{"start":56,"end":72,"text":"Chabad Lubavitch","rank":6,"label":"PRODUCT","score":0.01295551,"source":"core_web_sm","input_hash":-2070943687,"answer":"reject"}],"meta":{"section":"conspiracy","score":0.01295551},"_input_hash":-2070943687,"_task_hash":2038876842,"answer":"reject"} +{"text":"It is fairly touristy, as it managed to find it's way into Lonely Planet, but it's still recommended by locals.","spans":[{"start":66,"end":72,"text":"Planet","rank":0,"label":"PRODUCT","score":0.8100332673,"source":"core_web_sm","input_hash":-88351880,"answer":"reject"}],"meta":{"section":"spain","score":0.8100332673},"_input_hash":-88351880,"_task_hash":1211506422,"answer":"reject"} +{"text":"Wikipedia says its owned by Consumer's Union, which publishes Consumer Reports.","spans":[{"start":62,"end":78,"text":"Consumer Reports","rank":5,"label":"PRODUCT","score":0.0084508715,"source":"core_web_sm","input_hash":-1126015104,"answer":"reject"}],"meta":{"section":"geek","score":0.0084508715},"_input_hash":-1126015104,"_task_hash":2144891531,"answer":"reject"} +{"text":"Homolka made a deal with the Crown to get her sentence in exchange for coughing up Bernardo.","spans":[{"start":29,"end":34,"text":"Crown","rank":4,"label":"PRODUCT","score":0.022655897,"source":"core_web_sm","input_hash":635997538,"answer":"reject"}],"meta":{"section":"canada","score":0.022655897},"_input_hash":635997538,"_task_hash":-212715231,"answer":"reject"} +{"text":"I used to work for Circuit city and best buy.","spans":[{"start":19,"end":26,"text":"Circuit","rank":6,"label":"PRODUCT","score":0.0076024592,"source":"core_web_sm","input_hash":-835776594,"answer":"reject"}],"meta":{"section":"pics","score":0.0076024592},"_input_hash":-835776594,"_task_hash":-706783800,"answer":"reject"} +{"text":"I guess this is why greenwashing demagogues such as our friend BlueRock get so agitated and quickly deploys smearing lies, FUDs, character assassinations, red herrings, topic switches, and all the other dishonest tricks instead of arguing anything factual.","spans":[{"start":63,"end":71,"text":"BlueRock","rank":2,"label":"PRODUCT","score":0.0714491232,"source":"core_web_sm","input_hash":541766110,"answer":"reject"}],"meta":{"section":"energy","score":0.0714491232},"_input_hash":541766110,"_task_hash":1313236281,"answer":"reject"} +{"text":"[](/gah \"Words... so... small...\")","spans":[{"start":9,"end":14,"text":"Words","rank":5,"label":"PRODUCT","score":0.0021158454,"source":"core_web_sm","input_hash":1310997597,"answer":"reject"}],"meta":{"section":"fffffffuuuuuuuuuuuu","score":0.0021158454},"_input_hash":1310997597,"_task_hash":999681257,"answer":"reject"} +{"text":"but actually they have to get rid of that damned pesky Constitution","spans":[{"start":55,"end":67,"text":"Constitution","rank":4,"label":"PRODUCT","score":0.0127848538,"source":"core_web_sm","input_hash":2070675688,"answer":"reject"}],"meta":{"section":"collapse","score":0.0127848538},"_input_hash":2070675688,"_task_hash":-1221556700,"answer":"reject"} +{"text":"either way, chains on all 4 wheels is fine as long as you're not driving super fast, but snow tires is more than enough in 99.99% of any snow driving.","spans":[{"start":123,"end":129,"text":"99.99%","rank":4,"label":"PRODUCT","score":0.0017784682,"source":"core_web_sm","input_hash":-145381590,"answer":"reject"}],"meta":{"section":"Seattle","score":0.0017784682},"_input_hash":-145381590,"_task_hash":1034557334,"answer":"reject"} +{"text":"Anyway, yes, this almost seems like a bragging pic, until you consider that I haven't even installed about half of the games I own on Steam, and I've gotten my money's worth out of even less than that.","spans":[{"start":134,"end":139,"text":"Steam","rank":5,"label":"PRODUCT","score":0.0018412854,"source":"core_web_sm","input_hash":-156764267,"answer":"accept"}],"meta":{"section":"gaming","score":0.0018412854},"_input_hash":-156764267,"_task_hash":-184046101,"answer":"accept"} +{"text":"It now occurs to me that there's no point in blocking out anything on that page, especially when my Steam ID is *gasp* the same as my Reddit username.","spans":[{"start":134,"end":140,"text":"Reddit","rank":8,"label":"PRODUCT","score":0.004591967,"source":"core_web_sm","input_hash":1589985510,"answer":"accept"}],"meta":{"section":"gaming","score":0.004591967},"_input_hash":1589985510,"_task_hash":1061293190,"answer":"accept"} +{"text":"Chapter 3,","spans":[{"start":0,"end":9,"text":"Chapter 3","rank":2,"label":"PRODUCT","score":0.1626550657,"source":"core_web_sm","input_hash":-808268815,"answer":"ignore"}],"meta":{"section":"IndieGaming","score":0.1626550657},"_input_hash":-808268815,"_task_hash":892804469,"answer":"ignore"} +{"text":"Copper wire came about from two Koreans fighting over a penny.","spans":[{"start":56,"end":61,"text":"penny","rank":4,"label":"PRODUCT","score":0.0246230036,"source":"core_web_sm","input_hash":1883971875,"answer":"reject"}],"meta":{"section":"secretsanta","score":0.0246230036},"_input_hash":1883971875,"_task_hash":968668790,"answer":"reject"} +{"text":"sure, are they miles ahead of the competition in the price range?","spans":[{"start":15,"end":20,"text":"miles","rank":2,"label":"PRODUCT","score":0.0398821578,"source":"core_web_sm","input_hash":-1420000462,"answer":"reject"}],"meta":{"section":"apple","score":0.0398821578},"_input_hash":-1420000462,"_task_hash":-1301020923,"answer":"reject"} +{"text":"I think the more important point about the anti-feminist stereotype is made later in the article - when she points out that NOT A SINGLE FEMALE in the books does anything other than stay home to cook and clean for the menfolk.","spans":[{"start":43,"end":47,"text":"anti","rank":6,"label":"PRODUCT","score":0.0267552004,"source":"core_web_sm","input_hash":1073720513,"answer":"reject"}],"meta":{"section":"TwoXChromosomes","score":0.0267552004},"_input_hash":1073720513,"_task_hash":-1931029768,"answer":"reject"} +{"text":"I am almost done with college, on a tight budget and am looking at the Honda Fit.","spans":[{"start":77,"end":80,"text":"Fit","rank":0,"label":"PRODUCT","score":0.9963382216,"source":"core_web_sm","input_hash":1682960650,"answer":"reject"}],"meta":{"section":"Autos","score":0.9963382216},"_input_hash":1682960650,"_task_hash":1022259827,"answer":"reject"} +{"text":"I think the lines of heredity chronicled in the books of Kings and Chronicles would be particularly reliable given the importance of lineage in their succession of rulers.","spans":[{"start":67,"end":77,"text":"Chronicles","rank":2,"label":"PRODUCT","score":0.0031305414,"source":"core_web_sm","input_hash":-767904581,"answer":"reject"}],"meta":{"section":"history","score":0.0031305414},"_input_hash":-767904581,"_task_hash":1518693830,"answer":"reject"} +{"text":"Oh wow, I just finished the Ender trilogy, and I literally just put Ender's Shadow down not five minutes ago, and somehow the connection between his training and UAVs never occurred to me.","spans":[{"start":76,"end":82,"text":"Shadow","rank":3,"label":"PRODUCT","score":0.0264816611,"source":"core_web_sm","input_hash":-31231805,"answer":"reject"}],"meta":{"section":"gaming","score":0.0264816611},"_input_hash":-31231805,"_task_hash":1847894825,"answer":"reject"} +{"text":"I hear it's like Photo-illustrator","spans":[{"start":17,"end":22,"text":"Photo","rank":1,"label":"PRODUCT","score":0.1436251724,"source":"core_web_sm","input_hash":304678464,"answer":"ignore"}],"meta":{"section":"Design","score":0.1436251724},"_input_hash":304678464,"_task_hash":708891618,"answer":"ignore"} +{"text":"On an unrelated matter, is that a Crystal Palace logo?","spans":[{"start":34,"end":48,"text":"Crystal Palace","rank":2,"label":"PRODUCT","score":0.2886158882,"source":"core_web_sm","input_hash":-1303775366,"answer":"reject"}],"meta":{"section":"soccer","score":0.2886158882},"_input_hash":-1303775366,"_task_hash":-755525944,"answer":"reject"} +{"text":">programs compatible with Windows.","spans":[{"start":26,"end":33,"text":"Windows","rank":0,"label":"PRODUCT","score":0.7696847161,"source":"core_web_sm","input_hash":1787957058,"answer":"accept"}],"meta":{"section":"learnprogramming","score":0.7696847161},"_input_hash":1787957058,"_task_hash":-663684587,"answer":"accept"} +{"text":"I think i have seen this in the Wallstreet 2 movie.","spans":[{"start":32,"end":44,"text":"Wallstreet 2","rank":2,"label":"PRODUCT","score":0.0494244292,"source":"core_web_sm","input_hash":-153217284,"answer":"reject"}],"meta":{"section":"pics","score":0.0494244292},"_input_hash":-153217284,"_task_hash":-1945847881,"answer":"reject"} +{"text":"I not entitled to my two cents?","spans":[{"start":21,"end":24,"text":"two","rank":3,"label":"PRODUCT","score":0.0678725901,"source":"core_web_sm","input_hash":-408346241,"answer":"reject"}],"meta":{"section":"pics","score":0.0678725901},"_input_hash":-408346241,"_task_hash":-728296956,"answer":"reject"} +{"text":"I have never seen it enforced on C470 at all, but my usual times are during rush hour when the right lane is the fast lane anyway.","spans":[{"start":33,"end":37,"text":"C470","rank":0,"label":"PRODUCT","score":0.9471147388,"source":"core_web_sm","input_hash":-775441882,"answer":"reject"}],"meta":{"section":"pics","score":0.9471147388},"_input_hash":-775441882,"_task_hash":122946847,"answer":"reject"} +{"text":"There is a G5 and a G550 and a G650 amongst others but no G6.","spans":[{"start":58,"end":60,"text":"G6","rank":4,"label":"PRODUCT","score":0.0066791339,"source":"core_web_sm","input_hash":1135696966,"answer":"ignore"}],"meta":{"section":"IAmA","score":0.0066791339},"_input_hash":1135696966,"_task_hash":-372796985,"answer":"ignore"} +{"text":"I bought Alpha Protocol for $7.50.","spans":[{"start":9,"end":23,"text":"Alpha Protocol","rank":0,"label":"PRODUCT","score":0.9274575167,"source":"core_web_sm","input_hash":1948340088,"answer":"accept"}],"meta":{"section":"gaming","score":0.9274575167},"_input_hash":1948340088,"_task_hash":1187709709,"answer":"accept"} +{"text":"I live roughly 4 hours away by plane from my home country (I'm in Asia).","spans":[{"start":7,"end":22,"text":"roughly 4 hours","rank":3,"label":"PRODUCT","score":0.0261780617,"source":"core_web_sm","input_hash":-39949453,"answer":"reject"}],"meta":{"section":"Assistance","score":0.0261780617},"_input_hash":-39949453,"_task_hash":-1191677588,"answer":"reject"} +{"text":"As moisture in foods is heated beyond 212\u00b0 F in an open fryer, it is converted to steam, which in turn is released into the air.","spans":[{"start":43,"end":44,"text":"F","rank":0,"label":"PRODUCT","score":0.5602545087,"source":"core_web_sm","input_hash":-891923364,"answer":"reject"}],"meta":{"section":"Cooking","score":0.5602545087},"_input_hash":-891923364,"_task_hash":139387223,"answer":"reject"} +{"text":"I particularly like the Lagunitas IPA one.","spans":[{"start":24,"end":33,"text":"Lagunitas","rank":2,"label":"PRODUCT","score":0.0574357871,"source":"core_web_sm","input_hash":412476955,"answer":"ignore"}],"meta":{"section":"beer","score":0.0574357871},"_input_hash":412476955,"_task_hash":189499352,"answer":"ignore"} +{"text":"If money isn't tight, the 310xt is the better product IMO.","spans":[{"start":26,"end":31,"text":"310xt","rank":3,"label":"PRODUCT","score":0.0154813372,"source":"core_web_sm","input_hash":472412821,"answer":"accept"}],"meta":{"section":"running","score":0.0154813372},"_input_hash":472412821,"_task_hash":1160912887,"answer":"accept"} +{"text":"I'm not convinced the Timex is past the version 1.0 blues, and it costs as much as the 310xt.","spans":[{"start":87,"end":92,"text":"310xt","rank":2,"label":"PRODUCT","score":0.1057496429,"source":"core_web_sm","input_hash":730525015,"answer":"accept"}],"meta":{"section":"running","score":0.1057496429},"_input_hash":730525015,"_task_hash":-157808983,"answer":"accept"} +{"text":"I ended up getting the XDm .45 ACP.","spans":[{"start":23,"end":26,"text":"XDm","rank":0,"label":"PRODUCT","score":0.5091505373,"source":"core_web_sm","input_hash":-1525530956,"answer":"reject"}],"meta":{"section":"guns","score":0.5091505373},"_input_hash":-1525530956,"_task_hash":1336246771,"answer":"reject"} +{"text":"According to your theory, \"nobody\" has heard of PHP or Ubuntu or MySQL or Apache.","spans":[{"start":74,"end":80,"text":"Apache","rank":0,"label":"PRODUCT","score":0.771142617,"source":"core_web_sm","input_hash":2078423665,"answer":"accept"}],"meta":{"section":"programming","score":0.771142617},"_input_hash":2078423665,"_task_hash":-621694407,"answer":"accept"} +{"text":"Some of us drive vehicles that don't accelerate quickly and/or have a low top speed.","spans":[{"start":56,"end":62,"text":"and/or","rank":1,"label":"PRODUCT","score":0.0107370096,"source":"core_web_sm","input_hash":-364494542,"answer":"reject"}],"meta":{"section":"Seattle","score":0.0107370096},"_input_hash":-364494542,"_task_hash":1331408254,"answer":"reject"} +{"text":"As a traveler I can tell you the biggest thing you will need is SOCKS, Blue Jeans !","spans":[{"start":71,"end":81,"text":"Blue Jeans","rank":3,"label":"PRODUCT","score":0.0494500041,"source":"core_web_sm","input_hash":-1259213596,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0494500041},"_input_hash":-1259213596,"_task_hash":561768885,"answer":"reject"} +{"text":"If there was an electronic device sold, and all it did was show the Astronomy picture of the day, and it was called the aPod","spans":[{"start":68,"end":77,"text":"Astronomy","rank":0,"label":"PRODUCT","score":0.689428574,"source":"core_web_sm","input_hash":1313752052,"answer":"reject"}],"meta":{"section":"science","score":0.689428574},"_input_hash":1313752052,"_task_hash":-21843274,"answer":"reject"} +{"text":"They needed women in their camps who could work and produce Comanche babies.","spans":[{"start":60,"end":68,"text":"Comanche","rank":0,"label":"PRODUCT","score":0.9829222889,"source":"core_web_sm","input_hash":1268142425,"answer":"reject"}],"meta":{"section":"books","score":0.9829222889},"_input_hash":1268142425,"_task_hash":1674548481,"answer":"reject"} +{"text":"I bet she was a bit disappointed during his Blue Period.","spans":[{"start":44,"end":55,"text":"Blue Period","rank":2,"label":"PRODUCT","score":0.0174558729,"source":"core_web_sm","input_hash":306338686,"answer":"reject"}],"meta":{"section":"todayilearned","score":0.0174558729},"_input_hash":306338686,"_task_hash":1417115226,"answer":"reject"} +{"text":"It was running Windows 7 Home Premium in their review.","spans":[{"start":15,"end":37,"text":"Windows 7 Home Premium","rank":3,"label":"PRODUCT","score":0.0238995652,"source":"core_web_sm","input_hash":842478335,"answer":"accept"}],"meta":{"section":"gadgets","score":0.0238995652},"_input_hash":842478335,"_task_hash":-660740495,"answer":"accept"} +{"text":"180$ isn't really a lot of money 4:","spans":[{"start":3,"end":4,"text":"$","rank":1,"label":"PRODUCT","score":0.055467204,"source":"core_web_sm","input_hash":-925665247,"answer":"reject"}],"meta":{"section":"pics","score":0.055467204},"_input_hash":-925665247,"_task_hash":-606189255,"answer":"reject"} +{"text":"The Dead Sea Scrolls showed us that it was common at the time of Christ for Jewish communities to interpret Old Testament passages to be about their own circumstances.","spans":[{"start":112,"end":121,"text":"Testament","rank":3,"label":"PRODUCT","score":0.0474451026,"source":"core_web_sm","input_hash":-581651166,"answer":"reject"}],"meta":{"section":"Christianity","score":0.0474451026},"_input_hash":-581651166,"_task_hash":-95410466,"answer":"reject"} +{"text":"Sorry, no mountains, just some hill's. map Edit: Highest \"mountain\" is 318 m /","spans":[{"start":49,"end":56,"text":"Highest","rank":4,"label":"PRODUCT","score":0.0375394638,"source":"core_web_sm","input_hash":1067140785,"answer":"reject"}],"meta":{"section":"pics","score":0.0375394638},"_input_hash":1067140785,"_task_hash":-1360305602,"answer":"reject"} +{"text":": Melb to Robe ride map Also check out Spokes.com.au for govt sponsored cycle site, including 'great rides' as discussed and voted on by motorcyclists.","spans":[{"start":2,"end":6,"text":"Melb","rank":0,"label":"PRODUCT","score":0.7172266497,"source":"core_web_sm","input_hash":301722498,"answer":"reject"}],"meta":{"section":"motorcycles","score":0.7172266497},"_input_hash":301722498,"_task_hash":-682067978,"answer":"reject"} +{"text":"And Melb to Perth - next to the train line","spans":[{"start":4,"end":8,"text":"Melb","rank":2,"label":"PRODUCT","score":0.0393400899,"source":"core_web_sm","input_hash":-801613528,"answer":"reject"}],"meta":{"section":"motorcycles","score":0.0393400899},"_input_hash":-801613528,"_task_hash":1599929240,"answer":"reject"} +{"text":"Finding a $50 game on sale for $15 that sends 70% of that revenue back to the developers and not a second hand store like GameStop is just about the best thing ever.","spans":[{"start":122,"end":130,"text":"GameStop","rank":0,"label":"PRODUCT","score":0.9109486769,"source":"core_web_sm","input_hash":-1841534179,"answer":"reject"}],"meta":{"section":"gaming","score":0.9109486769},"_input_hash":-1841534179,"_task_hash":2005283432,"answer":"reject"} +{"text":"Plug and Play just doesn't work is any OS that is booting from a CD or DVD.","spans":[{"start":71,"end":74,"text":"DVD","rank":2,"label":"PRODUCT","score":0.076603696,"source":"core_web_sm","input_hash":-97553312,"answer":"reject"}],"meta":{"section":"techsupport","score":0.076603696},"_input_hash":-97553312,"_task_hash":-80150476,"answer":"reject"} +{"text":"I am currently in my 3rd semester.","spans":[{"start":21,"end":24,"text":"3rd","rank":3,"label":"PRODUCT","score":0.0041758852,"source":"core_web_sm","input_hash":-1314121683,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0041758852},"_input_hash":-1314121683,"_task_hash":-620744595,"answer":"reject"} +{"text":"\"!$\" evaluates to the last argument of the previous command: ls -lZ","spans":[{"start":2,"end":3,"text":"$","rank":2,"label":"PRODUCT","score":0.1060662337,"source":"core_web_sm","input_hash":1540028321,"answer":"reject"}],"meta":{"section":"linux","score":0.1060662337},"_input_hash":1540028321,"_task_hash":932973049,"answer":"reject"} +{"text":"Had the Allies revealed that they had captured a German Enigma machine, a city in England (I believe it was Cantebury) would not have been bombed.","spans":[{"start":56,"end":62,"text":"Enigma","rank":0,"label":"PRODUCT","score":0.9995221272,"source":"core_web_sm","input_hash":238565894,"answer":"reject"}],"meta":{"section":"canada","score":0.9995221272},"_input_hash":238565894,"_task_hash":1561414958,"answer":"reject"} +{"text":"I thought Google pushed out the N1 Updates and either way wouldn't the N1 get updated before Cyanogenmod?","spans":[{"start":71,"end":73,"text":"N1","rank":5,"label":"PRODUCT","score":0.0643398817,"source":"core_web_sm","input_hash":-806836660,"answer":"accept"}],"meta":{"section":"Android","score":0.0643398817},"_input_hash":-806836660,"_task_hash":1196398681,"answer":"accept"} +{"text":"This thread is proof of how little even the religious actually know about the New Testament, and how they simply ignore what does not make sense.","spans":[{"start":78,"end":91,"text":"New Testament","rank":5,"label":"PRODUCT","score":0.0032794174,"source":"core_web_sm","input_hash":-904711173,"answer":"reject"}],"meta":{"section":"religion","score":0.0032794174},"_input_hash":-904711173,"_task_hash":-421592139,"answer":"reject"} +{"text":"It's the Shower Curtain of Turin!","spans":[{"start":27,"end":32,"text":"Turin","rank":2,"label":"PRODUCT","score":0.050579464,"source":"core_web_sm","input_hash":1006434357,"answer":"reject"}],"meta":{"section":"pics","score":0.050579464},"_input_hash":1006434357,"_task_hash":127764545,"answer":"reject"} +{"text":"PHP, perl, Python, Ruby, Smalltalk, and Lisp all have server/frameworks.","spans":[{"start":40,"end":44,"text":"Lisp","rank":1,"label":"PRODUCT","score":0.0294728648,"source":"core_web_sm","input_hash":-1338567169,"answer":"accept"}],"meta":{"section":"AskReddit","score":0.0294728648},"_input_hash":-1338567169,"_task_hash":-1746356989,"answer":"accept"} +{"text":"In which case, it would appear that Nipples is probably closer to the truth: the \"satirical Behind-The-Scenes\" nature of this episode would establish that we aren't meant to take it as the canonical origin of the Simpsons.","spans":[{"start":36,"end":43,"text":"Nipples","rank":1,"label":"PRODUCT","score":0.2390561181,"source":"core_web_sm","input_hash":-357192087,"answer":"reject"}],"meta":{"section":"pics","score":0.2390561181},"_input_hash":-357192087,"_task_hash":-1721787180,"answer":"reject"} +{"text":"When Netflix signed a deal with Level3","spans":[{"start":32,"end":38,"text":"Level3","rank":2,"label":"PRODUCT","score":0.025206688,"source":"core_web_sm","input_hash":-1143117834,"answer":"accept"}],"meta":{"section":"TheAgora","score":0.025206688},"_input_hash":-1143117834,"_task_hash":272278206,"answer":"accept"} +{"text":"They oversold their network on the assumption that people would be using less \"external\" bandwidth than they are.","spans":[{"start":89,"end":98,"text":"bandwidth","rank":4,"label":"PRODUCT","score":0.0071951662,"source":"core_web_sm","input_hash":280413836,"answer":"reject"}],"meta":{"section":"TheAgora","score":0.0071951662},"_input_hash":280413836,"_task_hash":-225250762,"answer":"reject"} +{"text":"I would recommend a 250k pot with it (a must IMO if you are using a whammy of anykind and anything lighter than Alder).","spans":[{"start":20,"end":24,"text":"250k","rank":1,"label":"PRODUCT","score":0.2239631722,"source":"core_web_sm","input_hash":-1539476795,"answer":"reject"}],"meta":{"section":"Guitar","score":0.2239631722},"_input_hash":-1539476795,"_task_hash":1482702163,"answer":"reject"} +{"text":"There are also more advanced ones for BSL-4.","spans":[{"start":38,"end":43,"text":"BSL-4","rank":1,"label":"PRODUCT","score":0.2143298764,"source":"core_web_sm","input_hash":-1824916301,"answer":"ignore"}],"meta":{"section":"IAmA","score":0.2143298764},"_input_hash":-1824916301,"_task_hash":-109981158,"answer":"ignore"} +{"text":"One is young & reckless and the other is old & cautious.","spans":[{"start":49,"end":53,"text":"&","rank":2,"label":"PRODUCT","score":0.2072642652,"source":"core_web_sm","input_hash":-1675764781,"answer":"reject"}],"meta":{"section":"pics","score":0.2072642652},"_input_hash":-1675764781,"_task_hash":1660622086,"answer":"reject"} +{"text":"Beretta 92/96 are ambidextrous.","spans":[{"start":0,"end":13,"text":"Beretta 92/96","rank":1,"label":"PRODUCT","score":0.1176562214,"source":"core_web_sm","input_hash":1729587241,"answer":"ignore"}],"meta":{"section":"guns","score":0.1176562214},"_input_hash":1729587241,"_task_hash":-1279435026,"answer":"ignore"} +{"text":"Eventually the reasons to go to the gym, and the way it makes you feel with regard to progress and enjoyment, will outweigh the unnamed mass of nervousness that accompanies this new and/or trying experience.","spans":[{"start":182,"end":188,"text":"and/or","rank":8,"label":"PRODUCT","score":0.0151402189,"source":"core_web_sm","input_hash":206772658,"answer":"reject"}],"meta":{"section":"Fitness","score":0.0151402189},"_input_hash":206772658,"_task_hash":-1565294121,"answer":"reject"} +{"text":"The Sith Lords up as I would fancy owning a Steam copy of it also.","spans":[{"start":44,"end":49,"text":"Steam","rank":4,"label":"PRODUCT","score":0.1217536893,"source":"core_web_sm","input_hash":-1224302103,"answer":"accept"}],"meta":{"section":"gaming","score":0.1217536893},"_input_hash":-1224302103,"_task_hash":-235762482,"answer":"accept"} +{"text":"So the .p2p tld's can avoid icann and whatnot, but what happens when the government, icann, ect goes to ISPs telling them to block all bittorrent traffic or something/cut the connection?","spans":[{"start":7,"end":11,"text":".p2p","rank":1,"label":"PRODUCT","score":0.4066200413,"source":"core_web_sm","input_hash":1216922500,"answer":"reject"}],"meta":{"section":"technology","score":0.4066200413},"_input_hash":1216922500,"_task_hash":432830954,"answer":"reject"} +{"text":"and I am loving my Cyanogen Mod.","spans":[{"start":28,"end":31,"text":"Mod","rank":2,"label":"PRODUCT","score":0.0056238043,"source":"core_web_sm","input_hash":1764896469,"answer":"reject"}],"meta":{"section":"Android","score":0.0056238043},"_input_hash":1764896469,"_task_hash":1602223885,"answer":"reject"} +{"text":"I'm trying to use OAuth with Yahoo!","spans":[{"start":18,"end":23,"text":"OAuth","rank":2,"label":"PRODUCT","score":0.0656481542,"source":"core_web_sm","input_hash":477770795,"answer":"accept"}],"meta":{"section":"programming","score":0.0656481542},"_input_hash":477770795,"_task_hash":-1933035692,"answer":"accept"} +{"text":"sorry i dont give the servers enough shit to make tipping them over 10$ worth it.","spans":[{"start":70,"end":71,"text":"$","rank":0,"label":"PRODUCT","score":0.9299308963,"source":"core_web_sm","input_hash":81489656,"answer":"reject"}],"meta":{"section":"pics","score":0.9299308963},"_input_hash":81489656,"_task_hash":-776186963,"answer":"reject"} +{"text":"Many older violins have a high F hole style that limites its sound and thus usually is not worth very much on the market.","spans":[{"start":31,"end":32,"text":"F","rank":2,"label":"PRODUCT","score":0.1548574182,"source":"core_web_sm","input_hash":1496706463,"answer":"reject"}],"meta":{"section":"Music","score":0.1548574182},"_input_hash":1496706463,"_task_hash":580268142,"answer":"reject"} +{"text":"a well built F hole can be.","spans":[{"start":13,"end":14,"text":"F","rank":0,"label":"PRODUCT","score":0.6195069896,"source":"core_web_sm","input_hash":-845313753,"answer":"reject"}],"meta":{"section":"Music","score":0.6195069896},"_input_hash":-845313753,"_task_hash":184927308,"answer":"reject"} +{"text":"Metroid had a deceptively strong story all the way back to Metroid 2.","spans":[{"start":59,"end":68,"text":"Metroid 2","rank":1,"label":"PRODUCT","score":0.0886548423,"source":"core_web_sm","input_hash":-1903832996,"answer":"accept"}],"meta":{"section":"gaming","score":0.0886548423},"_input_hash":-1903832996,"_task_hash":-2119807884,"answer":"accept"} +{"text":"Rumble in the Bronze","spans":[{"start":14,"end":20,"text":"Bronze","rank":6,"label":"PRODUCT","score":0.0088267688,"source":"core_web_sm","input_hash":-1221850129,"answer":"reject"}],"meta":{"section":"starcraft","score":0.0088267688},"_input_hash":-1221850129,"_task_hash":1581449533,"answer":"reject"} +{"text":"I say Bible Adventures (the Noah's Ark game.","spans":[{"start":6,"end":22,"text":"Bible Adventures","rank":9,"label":"PRODUCT","score":0.0141432392,"source":"core_web_sm","input_hash":125971341,"answer":"reject"}],"meta":{"section":"gaming","score":0.0141432392},"_input_hash":125971341,"_task_hash":155510802,"answer":"reject"} +{"text":"im only 615KM away.","spans":[{"start":8,"end":13,"text":"615KM","rank":3,"label":"PRODUCT","score":0.0515742899,"source":"core_web_sm","input_hash":-2023150483,"answer":"reject"}],"meta":{"section":"trees","score":0.0515742899},"_input_hash":-2023150483,"_task_hash":1823581075,"answer":"reject"} +{"text":"*Games for Windows Marketplace*","spans":[{"start":11,"end":30,"text":"Windows Marketplace","rank":1,"label":"PRODUCT","score":0.0150003433,"source":"core_web_sm","input_hash":-362033123,"answer":"accept"}],"meta":{"section":"gaming","score":0.0150003433},"_input_hash":-362033123,"_task_hash":2097707710,"answer":"accept"} +{"text":"I will say there is a steep learning curve for Fallout 3 if you haven't played either of the newer FO games before.","spans":[{"start":99,"end":101,"text":"FO","rank":1,"label":"PRODUCT","score":0.1945545517,"source":"core_web_sm","input_hash":-2017628710,"answer":"ignore"}],"meta":{"section":"gaming","score":0.1945545517},"_input_hash":-2017628710,"_task_hash":999647897,"answer":"ignore"} +{"text":"I beat the single player campaign on BO fairly quickly (just like I did on Battlefield) and thought I wouldn't even get that far because I had to relearn the controls (I've never played a COD game before BO).","spans":[{"start":188,"end":191,"text":"COD","rank":0,"label":"PRODUCT","score":0.9221186339,"source":"core_web_sm","input_hash":-308369550,"answer":"accept"}],"meta":{"section":"badcompany2","score":0.9221186339},"_input_hash":-308369550,"_task_hash":1946769591,"answer":"accept"} +{"text":"We are here to help each other so Reddit can go dominate Evo2k11.","spans":[{"start":57,"end":64,"text":"Evo2k11","rank":0,"label":"PRODUCT","score":0.9556425781,"source":"core_web_sm","input_hash":718344303,"answer":"reject"}],"meta":{"section":"SF4","score":0.9556425781},"_input_hash":718344303,"_task_hash":2040934937,"answer":"reject"} +{"text":"Citation and evidence necessary to give a shit...","spans":[{"start":0,"end":8,"text":"Citation","rank":1,"label":"PRODUCT","score":0.0059507479,"source":"core_web_sm","input_hash":-767583744,"answer":"reject"}],"meta":{"section":"UFOs","score":0.0059507479},"_input_hash":-767583744,"_task_hash":1786557532,"answer":"reject"} +{"text":"The UI lag isn't terrible, it's just more than I am used to from games like WoW and other FTP MMOS","spans":[{"start":76,"end":79,"text":"WoW","rank":2,"label":"PRODUCT","score":0.0349503269,"source":"core_web_sm","input_hash":122779336,"answer":"accept"}],"meta":{"section":"ffxiv","score":0.0349503269},"_input_hash":122779336,"_task_hash":-1382102820,"answer":"accept"} +{"text":"There's a decent description from a forensic pathologist here under the 'Blows to the neck' heading.","spans":[{"start":73,"end":78,"text":"Blows","rank":0,"label":"PRODUCT","score":0.3364059239,"source":"core_web_sm","input_hash":-1416029970,"answer":"reject"}],"meta":{"section":"videos","score":0.3364059239},"_input_hash":-1416029970,"_task_hash":1934538907,"answer":"reject"} +{"text":"*Behind the Laughter* episode by my brother (and also is listed in the link I posted in my first response); the fact that in syndication the line itself has been changed.","spans":[{"start":12,"end":20,"text":"Laughter","rank":2,"label":"PRODUCT","score":0.0876003311,"source":"core_web_sm","input_hash":1726388285,"answer":"reject"}],"meta":{"section":"pics","score":0.0876003311},"_input_hash":1726388285,"_task_hash":1386601204,"answer":"reject"} +{"text":"I'm starting to believe WoW won't be a problem to start back up again (relief).","spans":[{"start":24,"end":27,"text":"WoW","rank":4,"label":"PRODUCT","score":0.0126049842,"source":"core_web_sm","input_hash":1815560478,"answer":"accept"}],"meta":{"section":"wow","score":0.0126049842},"_input_hash":1815560478,"_task_hash":456762976,"answer":"accept"} +{"text":"I'm hoping that this means that BC2 will be on sale shortly after...not saying that it's not worth it at its current price of $20 (still surprised at how fast this dropped)","spans":[{"start":32,"end":35,"text":"BC2","rank":0,"label":"PRODUCT","score":0.7305364221,"source":"core_web_sm","input_hash":-2140013881,"answer":"reject"}],"meta":{"section":"gaming","score":0.7305364221},"_input_hash":-2140013881,"_task_hash":1508209396,"answer":"reject"} +{"text":"but if you have the money and expend the effort to set that up, The Man(tm) will come along and kick sand in your face in very short order.","spans":[{"start":68,"end":74,"text":"Man(tm","rank":2,"label":"PRODUCT","score":0.1095038775,"source":"core_web_sm","input_hash":-536866700,"answer":"reject"}],"meta":{"section":"software","score":0.1095038775},"_input_hash":-536866700,"_task_hash":-1418157046,"answer":"reject"} +{"text":"request that # is nonpublished.","spans":[{"start":13,"end":14,"text":"#","rank":1,"label":"PRODUCT","score":0.2144965824,"source":"core_web_sm","input_hash":-752193959,"answer":"reject"}],"meta":{"section":"funny","score":0.2144965824},"_input_hash":-752193959,"_task_hash":-984636227,"answer":"reject"} +{"text":"but at least for me, the Steam golden rule is to never buy stuff until it's on sale.","spans":[{"start":25,"end":30,"text":"Steam","rank":3,"label":"PRODUCT","score":0.0604900722,"source":"core_web_sm","input_hash":-1894404263,"answer":"accept"}],"meta":{"section":"gaming","score":0.0604900722},"_input_hash":-1894404263,"_task_hash":1503138223,"answer":"accept"} +{"text":"It's the Cajun accent.","spans":[{"start":9,"end":14,"text":"Cajun","rank":2,"label":"PRODUCT","score":0.0169113244,"source":"core_web_sm","input_hash":1778504374,"answer":"reject"}],"meta":{"section":"IAmA","score":0.0169113244},"_input_hash":1778504374,"_task_hash":1874075221,"answer":"reject"} +{"text":"an 18.5km up hill (although not as uphill as The Goat!)","spans":[{"start":3,"end":7,"text":"18.5","rank":3,"label":"PRODUCT","score":0.0394604133,"source":"core_web_sm","input_hash":1910174452,"answer":"reject"}],"meta":{"section":"running","score":0.0394604133},"_input_hash":1910174452,"_task_hash":742994840,"answer":"reject"} +{"text":"Either way, this particular statement: >has allowed campaign contributions from foreign countries as a result of the Citizen\u2019s United ruling. is completely erroneous.","spans":[{"start":117,"end":124,"text":"Citizen","rank":6,"label":"PRODUCT","score":0.0053161181,"source":"core_web_sm","input_hash":-596850705,"answer":"reject"}],"meta":{"section":"Economics","score":0.0053161181},"_input_hash":-596850705,"_task_hash":-1399304056,"answer":"reject"} +{"text":"Didn't you play D&D?","spans":[{"start":16,"end":23,"text":"D&D","rank":1,"label":"PRODUCT","score":0.0200534969,"source":"core_web_sm","input_hash":-1564410157,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0200534969},"_input_hash":-1564410157,"_task_hash":1130718238,"answer":"reject"} +{"text":"One group would rather die sick drinking tea at a party rather than having their cure paid for by taxpayer dollars.","spans":[{"start":107,"end":114,"text":"dollars","rank":3,"label":"PRODUCT","score":0.0223849148,"source":"core_web_sm","input_hash":-566249537,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0223849148},"_input_hash":-566249537,"_task_hash":665691096,"answer":"reject"} +{"text":"fuckin pahilure bitch tit... manu","spans":[{"start":22,"end":25,"text":"tit","rank":3,"label":"PRODUCT","score":0.0148576342,"source":"core_web_sm","input_hash":1809967667,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0148576342},"_input_hash":1809967667,"_task_hash":-537527641,"answer":"reject"} +{"text":"but I like No. 7 and believe it myself.","spans":[{"start":11,"end":13,"text":"No","rank":1,"label":"PRODUCT","score":0.0639385927,"source":"core_web_sm","input_hash":1085555312,"answer":"reject"}],"meta":{"section":"Psychonaut","score":0.0639385927},"_input_hash":1085555312,"_task_hash":-1402889040,"answer":"reject"} +{"text":"What a tit!","spans":[{"start":7,"end":10,"text":"tit","rank":1,"label":"PRODUCT","score":0.223355552,"source":"core_web_sm","input_hash":215135069,"answer":"reject"}],"meta":{"section":"funny","score":0.223355552},"_input_hash":215135069,"_task_hash":-1335741196,"answer":"reject"} +{"text":"I'm so happy to see that Red Hat is the company that got to that point first.","spans":[{"start":25,"end":32,"text":"Red Hat","rank":2,"label":"PRODUCT","score":0.2522260826,"source":"core_web_sm","input_hash":-448119633,"answer":"reject"}],"meta":{"section":"linux","score":0.2522260826},"_input_hash":-448119633,"_task_hash":-1396427344,"answer":"reject"} +{"text":"I hope they FINALLY find Flight 19, figure out what the Chupacabra really is, and manage to get a real picture of Big Foot.","spans":[{"start":25,"end":34,"text":"Flight 19","rank":0,"label":"PRODUCT","score":0.9977325616,"source":"core_web_sm","input_hash":478937880,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.9977325616},"_input_hash":478937880,"_task_hash":-698146244,"answer":"reject"} +{"text":"I always loved their impromptu live yodel version of \"I Need More Allowance!\"","spans":[{"start":36,"end":41,"text":"yodel","rank":8,"label":"PRODUCT","score":0.001760534,"source":"core_web_sm","input_hash":-1139014090,"answer":"reject"}],"meta":{"section":"listentothis","score":0.001760534},"_input_hash":-1139014090,"_task_hash":-1926843305,"answer":"reject"} +{"text":", they're the only ones who get attention :) or else, smoke weed and don't give a fuck?","spans":[{"start":14,"end":18,"text":"only","rank":9,"label":"PRODUCT","score":0.0019422069,"source":"core_web_sm","input_hash":385726205,"answer":"reject"}],"meta":{"section":"Fitness","score":0.0019422069},"_input_hash":385726205,"_task_hash":-2090492950,"answer":"reject"} +{"text":"IMO, F-Zero wouldn't really take advantage of motion control features.","spans":[{"start":5,"end":11,"text":"F-Zero","rank":0,"label":"PRODUCT","score":0.8814743135,"source":"core_web_sm","input_hash":782506269,"answer":"ignore"}],"meta":{"section":"gaming","score":0.8814743135},"_input_hash":782506269,"_task_hash":103644739,"answer":"ignore"} +{"text":"Congrats, Merve, and sorry to hear about the breakup...","spans":[{"start":10,"end":15,"text":"Merve","rank":0,"label":"PRODUCT","score":0.5873641197,"source":"core_web_sm","input_hash":-1401700607,"answer":"reject"}],"meta":{"section":"gonewild","score":0.5873641197},"_input_hash":-1401700607,"_task_hash":-445267333,"answer":"reject"} +{"text":"Collateral Murder was sensationalizing something we already know happens in war.","spans":[{"start":11,"end":17,"text":"Murder","rank":0,"label":"PRODUCT","score":0.8743540951,"source":"core_web_sm","input_hash":1303842676,"answer":"reject"}],"meta":{"section":"todayilearned","score":0.8743540951},"_input_hash":1303842676,"_task_hash":-2091276427,"answer":"reject"} +{"text":"If you're referring to the FDIC the number is $250k.","spans":[{"start":46,"end":47,"text":"$","rank":3,"label":"PRODUCT","score":0.00918971,"source":"core_web_sm","input_hash":1953293675,"answer":"reject"}],"meta":{"section":"politics","score":0.00918971},"_input_hash":1953293675,"_task_hash":2043171215,"answer":"reject"} +{"text":"The tea party has ostensibly been about fiscal responsibility and tax- hence the whole tea party motif.","spans":[{"start":66,"end":70,"text":"tax-","rank":1,"label":"PRODUCT","score":0.0111941715,"source":"core_web_sm","input_hash":-174141148,"answer":"reject"}],"meta":{"section":"AskReddit","score":0.0111941715},"_input_hash":-174141148,"_task_hash":873434592,"answer":"reject"} +{"text":"To say A or A+ would be to put him in the same arena as Jay-Z, or Slug or Eminem.","spans":[{"start":74,"end":80,"text":"Eminem","rank":6,"label":"PRODUCT","score":0.0412351856,"source":"core_web_sm","input_hash":2105674246,"answer":"reject"}],"meta":{"section":"hiphopheads","score":0.0412351856},"_input_hash":2105674246,"_task_hash":1129501978,"answer":"reject"} +{"text":"reminds of this Simpsons quote: Homer Simpson: Kids:","spans":[{"start":16,"end":24,"text":"Simpsons","rank":3,"label":"PRODUCT","score":0.0183357234,"source":"core_web_sm","input_hash":-546253364,"answer":"reject"}],"meta":{"section":"Music","score":0.0183357234},"_input_hash":-546253364,"_task_hash":-1701941631,"answer":"reject"} +{"text":"-Textmate +Komodo Edit +FireCookie, FireDiff +kjslint (JSLint addon for Komodo) -Diet","spans":[{"start":55,"end":61,"text":"JSLint","rank":1,"label":"PRODUCT","score":0.4835888206,"source":"core_web_sm","input_hash":1383056402,"answer":"accept"},{"start":36,"end":44,"text":"FireDiff","rank":0,"label":"PRODUCT","score":0.7496590466,"source":"core_web_sm","input_hash":1383056402,"answer":"accept"},{"start":24,"end":34,"text":"FireCookie","rank":0,"label":"PRODUCT","score":0.7497939047,"source":"core_web_sm","input_hash":1383056402,"answer":"accept"}],"meta":{"section":"web_design","score":0.4835888206},"_input_hash":1383056402,"_task_hash":-1817042959,"answer":"accept"} +{"text":"-Textmate +Komodo Edit +FireCookie, FireDiff +kjslint (JSLint addon for Komodo) -Diet","spans":[{"start":36,"end":44,"text":"FireDiff","rank":0,"label":"PRODUCT","score":0.7496590466,"source":"core_web_sm","input_hash":1383056402,"answer":"accept"}],"meta":{"section":"web_design","score":0.7496590466},"_input_hash":1383056402,"_task_hash":-1736472172,"answer":"accept"} +{"text":"-Textmate +Komodo Edit +FireCookie, FireDiff +kjslint (JSLint addon for Komodo) -Diet","spans":[{"start":24,"end":34,"text":"FireCookie","rank":0,"label":"PRODUCT","score":0.7497939047,"source":"core_web_sm","input_hash":1383056402,"answer":"accept"}],"meta":{"section":"web_design","score":0.7497939047},"_input_hash":1383056402,"_task_hash":-1097099238,"answer":"accept"} +{"text":"Studies like that would sway many weary American to legalize Marijuana if it could cure Cancer.","spans":[{"start":88,"end":94,"text":"Cancer","rank":0,"label":"PRODUCT","score":0.8539802591,"source":"core_web_sm","input_hash":-1015479353,"answer":"reject"}],"meta":{"section":"IAmA","score":0.8539802591},"_input_hash":-1015479353,"_task_hash":-978044115,"answer":"reject"} diff --git a/testdata/summarize.json b/testdata/summarize.json deleted file mode 100644 index f3853fb..0000000 --- a/testdata/summarize.json +++ /dev/null @@ -1,50 +0,0 @@ -[ - { - "text": "Vale is a natural language linter that supports plain text, markup (Markdown, reStructuredText, AsciiDoc, and HTML), and source code comments. Vale doesn't attempt to offer a one-size-fits-all collection of rules—instead, it strives to make customization as easy as possible.", - "sentences": 2, - "words": 43, - "characters": 222, - "AutomatedReadability": 13.64, - "ColemanLiau": 13.18, - "FleschKincaid": 12.00, - "Gunningfog": 14.18, - "SMOG": 13.02, - "MeanGrade": 13.21, - "StdDevGrade": 0.72, - "DaleChall": 9.51, - "ReadingEase": 47.29, - "LIX": 54.06 - }, - { - "text": "Existing computer programs that measure readability are based largely upon subroutines which estimate number of syllables, usually by counting vowels. The shortcoming in estimating syllables is that it necessitates keypunching the prose into the computer. There is no need to estimate syllables since word length in letters is a better predictor of readability than word length in syllables. Therefore, a new readability formula was computed that has for its predictors letters per 100 words and sentences per 100 words. Both predictors can be counted by an optical scanning device, and thus the formula makes it economically feasible for an organization such as the U.S. Office of Education to calibrate the readability of all textbooks for the public school system.", - "sentences": 5, - "words": 119, - "characters": 639, - "AutomatedReadability": 15.76, - "ColemanLiau": 14.53, - "FleschKincaid": 15.80, - "Gunningfog": 17.59, - "SMOG": 18.03, - "MeanGrade": 16.34, - "StdDevGrade": 1.29, - "DaleChall": 12.19, - "ReadingEase": 24.14, - "LIX": 59.09 - }, - { - "text": "He teaches science (He previously worked for 5 years as an engineer.) at the local University.", - "sentences": 1, - "words": 16, - "characters": 75, - "AutomatedReadability": 8.65, - "ColemanLiau": 9.91, - "FleschKincaid": 9.82, - "Gunningfog": 13.9, - "SMOG": 13.02, - "MeanGrade": 11.06, - "StdDevGrade": 2.03, - "DaleChall": 10.66, - "ReadingEase": 53.12, - "LIX": 47.25 - } -] diff --git a/testdata/syllables.json b/testdata/syllables.json deleted file mode 100644 index 0d2f38d..0000000 --- a/testdata/syllables.json +++ /dev/null @@ -1,4385 +0,0 @@ -{ - "abalone": 4, - "abare": 3, - "abatement": 3, - "abatements": 3, - "abbatiello": 5, - "abbruzzese": 4, - "abed": 2, - "abeyance": 3, - "aborigine": 5, - "aborigines": 5, - "abounded": 3, - "aboveboard": 3, - "aboveground": 3, - "abridged": 2, - "abruzzese": 4, - "absences": 3, - "absoluteness": 4, - "absolve": 2, - "absolves": 2, - "abuses": 3, - "acacia": 3, - "academically": 6, - "academician": 5, - "academicians": 5, - "acceding": 3, - "acceptances": 4, - "accion": 3, - "accompaniment": 5, - "accompaniments": 5, - "accomplice": 3, - "accomplices": 4, - "accorded": 3, - "accordion": 4, - "accuses": 3, - "aces": 2, - "achievement": 3, - "achievements": 3, - "achoa": 3, - "acknowledged": 3, - "acknowledgement": 4, - "acknowledges": 4, - "acoustically": 5, - "acquaint": 2, - "acquaintance": 3, - "acquainted": 3, - "acquiesced": 3, - "acquire": 2, - "acquired": 2, - "acquirer": 3, - "acquirers": 3, - "acquires": 2, - "acreage": 3, - "acuteness": 3, - "adabelle": 3, - "adage": 2, - "adame": 3, - "added": 2, - "addeo": 3, - "addled": 2, - "adelle": 2, - "adieu": 2, - "adjudged": 2, - "admired": 2, - "adorabelle": 4, - "advanced": 2, - "advancement": 3, - "advancements": 3, - "advances": 3, - "advantage": 3, - "advantaged": 3, - "advantageous": 4, - "advantages": 4, - "adventuresome": 4, - "advertisement": 4, - "advertisements": 4, - "advertises": 4, - "advice": 2, - "advisedly": 4, - "advisement": 3, - "advises": 3, - "aegean": 3, - "aerobically": 5, - "aerodynamically": 7, - "aerospace": 3, - "aerospatiale": 4, - "aesthetically": 5, - "afanasyev": 5, - "affixes": 3, - "affluence": 3, - "affluent": 3, - "afforded": 3, - "aforementioned": 4, - "aforesaid": 3, - "afterimage": 4, - "aftertaste": 3, - "aged": 1, - "ageless": 2, - "ages": 2, - "aggrandizement": 4, - "aggressiveness": 4, - "agius": 3, - "agne": 1, - "agonizes": 4, - "agreement": 3, - "agribusiness": 4, - "aguayo": 3, - "aherne": 2, - "aiguebelle": 3, - "airborne": 2, - "aircoa": 3, - "airspace": 2, - "aisle": 1, - "aisles": 1, - "akiyama": 4, - "alarice": 3, - "albertville": 3, - "albion": 3, - "alcoa": 3, - "aldred": 2, - "aleo": 3, - "algeo": 3, - "algorithm": 4, - "aliases": 4, - "alice": 2, - "alicia": 3, - "allderdice": 3, - "allege": 2, - "alleged": 2, - "alleges": 3, - "allegiances": 5, - "alles": 1, - "alliances": 4, - "allowances": 4, - "allspice": 2, - "allwaste": 2, - "alsace": 2, - "altarpiece": 3, - "altice": 2, - "alusuisse": 3, - "alveolar": 4, - "alveoli": 4, - "alyce": 2, - "alyea": 3, - "alyeska": 4, - "amabelle": 3, - "amadea": 4, - "amadeo": 4, - "amaryllises": 5, - "amaya": 3, - "amazement": 3, - "amazes": 3, - "ambled": 2, - "ambrosial": 3, - "ambrosian": 3, - "ambulances": 4, - "amended": 3, - "amezcua": 4, - "amityville": 4, - "amorette": 3, - "amperage": 3, - "amusement": 3, - "amusements": 3, - "amuses": 3, - "analyses": 4, - "analyzes": 4, - "anaya": 3, - "anchorage": 3, - "andalusian": 4, - "andreoli": 4, - "andreoni": 4, - "andreotti": 4, - "andreozzi": 4, - "anette": 2, - "angelle": 2, - "angerer": 3, - "angering": 3, - "angled": 2, - "anisette": 3, - "annabelle": 3, - "anne": 1, - "annette": 2, - "annexes": 3, - "announced": 2, - "announcement": 3, - "announcements": 3, - "announces": 3, - "annoyance": 3, - "annoyances": 4, - "anstice": 2, - "antaya": 3, - "antiabortion": 5, - "antiapartheid": 5, - "antoinette": 3, - "anyplace": 3, - "anzaldua": 4, - "aoyama": 3, - "apace": 2, - "apiece": 2, - "apologizes": 5, - "apotheosis": 5, - "apparatuses": 5, - "appearances": 4, - "appeasement": 3, - "appendage": 3, - "appendages": 4, - "appended": 3, - "appendixes": 4, - "applesauce": 3, - "appleyard": 3, - "appliances": 4, - "appraises": 3, - "apprehended": 4, - "apprentice": 3, - "apprenticed": 3, - "apprentices": 4, - "apprenticeship": 4, - "approached": 2, - "appropriateness": 5, - "araya": 3, - "arbed": 2, - "arbitrage": 3, - "arboreal": 4, - "arceneaux": 3, - "arceo": 3, - "archambeau": 3, - "archambeault": 3, - "archeological": 6, - "archeology": 5, - "arches": 2, - "ardelle": 2, - "argonne": 2, - "ariella": 4, - "arises": 3, - "arlette": 2, - "armistice": 3, - "armitage": 3, - "arne": 1, - "arnelle": 2, - "arnette": 2, - "arouses": 3, - "arranged": 2, - "arrangement": 3, - "arrangements": 3, - "arranges": 3, - "arrearage": 3, - "arrearages": 4, - "arreola": 4, - "arriortua": 5, - "arroyo": 3, - "arseneau": 3, - "arseneault": 3, - "artifice": 3, - "aryan": 3, - "ascended": 3, - "asiain": 3, - "asian": 2, - "asians": 2, - "asiaweek": 3, - "assemblage": 3, - "assembled": 3, - "assertiveness": 4, - "assurances": 4, - "astounded": 3, - "astuteness": 3, - "atalaya": 4, - "atlases": 3, - "atonement": 3, - "attached": 2, - "attended": 3, - "attentiveness": 4, - "attractiveness": 4, - "audette": 2, - "audiences": 4, - "auguste": 2, - "auspices": 3, - "authement": 2, - "authorizes": 4, - "auyeung": 2, - "auzenne": 2, - "avarice": 3, - "avedisian": 4, - "avenged": 2, - "average": 3, - "averette": 3, - "avice": 2, - "avowedly": 4, - "awarded": 3, - "awareness": 3, - "AWOL": 2, - "axes": 2, - "ayacucho": 4, - "ayala": 3, - "ayars": 2, - "ayatollah": 4, - "ayatollahs": 4, - "Ayatullah": 4, - "ayerst": 2, - "ayo": 2, - "ayon": 2, - "ayoub": 2, - "ayuso": 3, - "ayyad": 2, - "azpurua": 4, - "babbled": 2, - "babette": 2, - "babineau": 3, - "babineaux": 3, - "babyak": 3, - "backhanded": 3, - "backstage": 2, - "badeau": 2, - "badeaux": 2, - "badgering": 3, - "badges": 2, - "baffled": 2, - "baggage": 2, - "baidoa": 3, - "balanced": 2, - "balances": 3, - "balboa": 3, - "baldrige": 2, - "balle": 1, - "balles": 1, - "balliet": 3, - "balyeat": 3, - "bandage": 2, - "bandaged": 2, - "bandages": 3, - "banded": 2, - "banville": 2, - "baptiste": 2, - "barbeau": 2, - "barbette": 2, - "barcia": 2, - "barges": 2, - "baribeau": 3, - "barlage": 2, - "barnes": 1, - "barnette": 2, - "barrage": 2, - "barraged": 2, - "barrages": 3, - "barrette": 2, - "barrilleaux": 3, - "barrineau": 3, - "bartlesville": 3, - "bartolomeo": 5, - "basaldua": 4, - "basement": 2, - "basements": 2, - "bases": 2, - "baskerville": 3, - "baskette": 2, - "basque": 1, - "basques": 1, - "basse": 1, - "bassette": 2, - "bastille": 2, - "bastogne": 2, - "batches": 2, - "batesville": 2, - "bathe": 1, - "bathed": 1, - "bathes": 1, - "battelle": 2, - "batticaloa": 5, - "bayard": 2, - "bayog": 2, - "bayonet": 3, - "bayonets": 3, - "bayou": 2, - "bayous": 2, - "bayuk": 2, - "bayus": 2, - "bearded": 2, - "beau": 1, - "beaubien": 2, - "beauchaine": 2, - "beauchamp": 2, - "beauchemin": 3, - "beauchene": 2, - "beaudet": 2, - "beaudette": 2, - "beaudin": 2, - "beaudoin": 2, - "beaudreau": 2, - "beaudry": 2, - "beauford": 2, - "beaufort": 2, - "beaufrere": 2, - "beaujolais": 3, - "beaulac": 2, - "beaumier": 3, - "beaumont": 2, - "beaupre": 2, - "beauregard": 3, - "beausoleil": 3, - "beautician": 3, - "beauties": 2, - "beautiful": 3, - "beautify": 3, - "beauty": 2, - "beauvais": 2, - "beaux": 1, - "bebeau": 2, - "becherer": 3, - "bedoya": 3, - "bedraggled": 3, - "bedrosian": 3, - "Beetlejuice": 3, - "befriended": 3, - "befuddled": 3, - "beidaihe": 3, - "beiges": 2, - "beirne": 1, - "belge": 2, - "beliveau": 3, - "belle": 1, - "belleau": 2, - "bellefeuille": 4, - "belles": 1, - "belleville": 2, - "belliveau": 3, - "bellville": 2, - "bellyache": 3, - "belonged": 2, - "beltsville": 2, - "belville": 2, - "belyea": 3, - "belyeu": 3, - "bemusement": 3, - "bended": 2, - "benne": 1, - "bennette": 2, - "bentonville": 3, - "beowulf": 3, - "bereavement": 3, - "berges": 2, - "berjaya": 3, - "bernadette": 3, - "berne": 1, - "berneice": 2, - "bernice": 2, - "beseiged": 2, - "besiege": 2, - "besieged": 2, - "beske": 1, - "bespectacled": 4, - "besse": 1, - "bessette": 2, - "beste": 1, - "bethpage": 2, - "betrayal": 3, - "betrayals": 3, - "beverage": 3, - "beville": 2, - "beyond": 2, - "biases": 3, - "bibeau": 2, - "bibeault": 2, - "bicycled": 3, - "bierbusse": 2, - "bille": 1, - "billes": 1, - "bilodeau": 3, - "bilyeu": 3, - "binette": 2, - "binges": 2, - "biondi": 3, - "biondo": 3, - "biondolillo": 5, - "bionetics": 4, - "birthplace": 2, - "bisque": 1, - "bissette": 2, - "bissonette": 3, - "bissonnette": 3, - "bistodeau": 3, - "bivalve": 2, - "bivalves": 2, - "blanchette": 2, - "blaske": 1, - "blazes": 2, - "bleau": 1, - "blended": 2, - "blinded": 2, - "blindfolded": 3, - "blithe": 1, - "blithely": 2, - "blockage": 2, - "blockages": 3, - "blouses": 2, - "blythe": 1, - "boa": 2, - "boarded": 2, - "boardinghouses": 4, - "bobbette": 2, - "bobsled": 2, - "boccia": 2, - "bocian": 2, - "boggled": 2, - "boghosian": 3, - "bogosian": 3, - "boguslavskaya": 5, - "boileau": 2, - "boisseau": 2, - "boissonneault": 3, - "boldface": 2, - "bolle": 1, - "bolles": 1, - "bombarded": 3, - "bondage": 2, - "bonded": 2, - "bonne": 1, - "bonneau": 2, - "bonnes": 1, - "bonnette": 2, - "bonnibelle": 3, - "bonuses": 3, - "bonville": 2, - "bookcases": 3, - "bookshelves": 2, - "boomeranged": 3, - "boonville": 2, - "boothe": 1, - "bordeau": 2, - "bordeaux": 2, - "borealis": 4, - "borges": 2, - "borne": 1, - "borneo": 3, - "borosage": 3, - "boscia": 2, - "bosse": 1, - "bothe": 1, - "boudreau": 2, - "boudreaux": 2, - "bougainville": 3, - "boulette": 2, - "bounces": 2, - "bounded": 2, - "bourbeau": 2, - "bourdeau": 2, - "bourne": 1, - "bournonville": 3, - "boutelle": 2, - "boxes": 2, - "boyack": 2, - "boyajian": 4, - "boyan": 2, - "boyar": 2, - "boyett": 2, - "boyington": 3, - "boyish": 2, - "boyum": 2, - "braces": 2, - "braille": 1, - "brailles": 1, - "bralorne": 2, - "bramlage": 2, - "bramlette": 2, - "brancheau": 2, - "branded": 2, - "brasseaux": 2, - "brazeau": 2, - "brazzaville": 3, - "breakage": 2, - "breathe": 1, - "breathed": 1, - "breathes": 1, - "breau": 1, - "breault": 1, - "breaux": 1, - "breezes": 2, - "breon": 2, - "brescia": 2, - "bresette": 2, - "bresse": 1, - "bressette": 2, - "brideau": 2, - "bridgeport": 2, - "bridges": 2, - "bridled": 2, - "briefcases": 3, - "brion": 2, - "brissette": 2, - "britches": 2, - "brokerage": 3, - "brokerages": 4, - "brokering": 3, - "brooksville": 2, - "brosseau": 2, - "brossette": 2, - "brousseau": 2, - "brownsville": 2, - "bruegge": 2, - "bruges": 2, - "bruises": 2, - "brundage": 2, - "brundige": 2, - "bruneau": 2, - "brunelle": 2, - "brunette": 2, - "bruske": 1, - "brusque": 1, - "brusquely": 2, - "brusseau": 2, - "brutalizes": 4, - "brutsche": 2, - "bryan": 2, - "bryans": 2, - "bryant": 2, - "bryars": 2, - "brydges": 2, - "bryen": 2, - "bua": 2, - "bubbled": 2, - "Bubiyan": 3, - "buckled": 2, - "budreau": 2, - "bulges": 2, - "bundled": 2, - "bungled": 2, - "buoyancy": 3, - "buoyant": 2, - "burbage": 2, - "burchette": 2, - "burdette": 2, - "bureau": 2, - "bureaucracies": 4, - "bureaucracy": 4, - "bureaucrat": 3, - "bureaucratic": 4, - "bureaucrats": 3, - "bureaus": 2, - "burlesque": 2, - "burne": 1, - "burnes": 1, - "burnette": 2, - "burrage": 2, - "buses": 2, - "business": 2, - "businesses": 3, - "buske": 1, - "busse": 1, - "butchering": 3, - "buteau": 2, - "buttonville": 3, - "buyout": 2, - "buyouts": 2, - "buysse": 1, - "byam": 2, - "byars": 2, - "byas": 2, - "byassee": 3, - "byerley": 3, - "byrne": 1, - "byrnes": 1, - "cabbage": 2, - "cabbages": 3, - "cabled": 2, - "cableone": 3, - "cabooses": 3, - "cabotage": 3, - "cacace": 2, - "caccia": 2, - "cadences": 3, - "cadorette": 3, - "cafe": 2, - "cafes": 2, - "cages": 2, - "cairnes": 1, - "caisse": 1, - "calif": 2, - "california": 5, - "californian": 5, - "californians": 5, - "calle": 1, - "calles": 1, - "calves": 1, - "cambridgeport": 3, - "cambridgeside": 3, - "cameo": 3, - "cameos": 3, - "camerer": 3, - "camille": 2, - "camouflage": 3, - "camouflaged": 3, - "campeau": 2, - "campion": 3, - "campuses": 3, - "canadienne": 4, - "candace": 2, - "candice": 2, - "cannes": 1, - "cantrelle": 2, - "canvases": 3, - "capece": 2, - "capelle": 2, - "capitalizes": 5, - "cappiello": 4, - "caprice": 2, - "capua": 3, - "caravelle": 3, - "caraveo": 4, - "carbonneau": 3, - "carcione": 3, - "carded": 2, - "cardiges": 3, - "caresse": 2, - "cariello": 4, - "carlisle": 2, - "carnage": 2, - "carne": 1, - "carnes": 1, - "carreon": 3, - "carrion": 3, - "carriveau": 3, - "cartaya": 3, - "cartersville": 3, - "carthage": 2, - "cartilage": 3, - "cartrette": 2, - "cartridges": 3, - "cartusciello": 5, - "carves": 1, - "carville": 2, - "cases": 2, - "cassette": 2, - "cassettes": 2, - "caste": 1, - "castille": 2, - "cataloged": 3, - "cataloguing": 4, - "catches": 2, - "categorizes": 5, - "cattaneo": 4, - "caucasian": 3, - "caucuses": 3, - "causes": 2, - "cawthorne": 2, - "caya": 2, - "cayuses": 3, - "ceases": 2, - "ceausescu": 3, - "ceder": 2, - "ceding": 2, - "celaya": 3, - "celeste": 2, - "censuses": 3, - "centerpiece": 3, - "centrifuge": 3, - "centrifuges": 4, - "ceraceous": 3, - "cereal": 3, - "cereals": 3, - "cezanne": 2, - "chadbourne": 2, - "challenged": 2, - "challenges": 3, - "chalmette": 2, - "chameleon": 4, - "champagne": 2, - "champagnes": 2, - "champeau": 2, - "champion": 3, - "championed": 3, - "championing": 4, - "champions": 3, - "championship": 4, - "championships": 4, - "chances": 2, - "changes": 2, - "chapelle": 2, - "chappelle": 2, - "characterizes": 5, - "charasse": 2, - "charboneau": 3, - "charbonneau": 3, - "charette": 2, - "charges": 2, - "charlemagne": 3, - "charmion": 3, - "chases": 2, - "chasm": 2, - "chasse": 1, - "chaste": 1, - "chastises": 3, - "chateau": 2, - "chateaux": 2, - "chausse": 1, - "chechnya": 3, - "chechnyan": 3, - "cheeses": 2, - "chelette": 2, - "chenette": 2, - "cheong": 2, - "chequing": 2, - "cherne": 1, - "chevette": 2, - "chevrette": 2, - "chiyoda": 3, - "choices": 2, - "chooses": 2, - "choreograph": 4, - "choreographed": 4, - "choreographer": 5, - "choreographers": 5, - "choreographic": 5, - "choreography": 5, - "choruses": 3, - "christabelle": 3, - "chronicled": 3, - "chua": 2, - "chuckled": 2, - "chujitsuya": 4, - "churches": 2, - "cian": 1, - "cigarette": 3, - "cigarettes": 3, - "cilicia": 3, - "circled": 2, - "circumstances": 4, - "circuses": 3, - "ciriello": 4, - "cirincione": 4, - "cirrincione": 4, - "cistercian": 3, - "cityplace": 3, - "claiborne": 2, - "clairvoyance": 3, - "clarabelle": 3, - "clarette": 2, - "clarice": 2, - "clarisse": 2, - "clarksville": 2, - "clarrisse": 2, - "claudette": 2, - "clauses": 2, - "clavette": 2, - "clayborne": 2, - "claybourne": 2, - "clayey": 2, - "clearances": 3, - "clearinghouses": 4, - "cleavage": 2, - "cleo": 2, - "cleopatra": 4, - "climaxes": 3, - "clinician": 3, - "clinicians": 3, - "clodoveo": 4, - "closeness": 2, - "closes": 2, - "clothe": 1, - "clothed": 1, - "clothes": 1, - "clubhouses": 3, - "clutches": 2, - "clyatt": 2, - "coalesced": 3, - "coatesville": 2, - "cobbled": 2, - "coccia": 2, - "coddled": 2, - "coercion": 3, - "cohesiveness": 4, - "coinage": 2, - "cointreau": 2, - "colette": 2, - "collage": 2, - "collages": 3, - "colle": 1, - "college": 2, - "colleges": 3, - "collegeville": 3, - "collette": 2, - "colleville": 2, - "cologne": 2, - "colville": 2, - "comanche": 3, - "combativeness": 4, - "comeau": 2, - "comeaux": 2, - "comedienne": 4, - "commanded": 3, - "commenced": 2, - "commencement": 3, - "commences": 3, - "commended": 3, - "commingled": 3, - "commonplace": 3, - "compeau": 2, - "competitiveness": 5, - "completeness": 3, - "complexes": 3, - "composes": 3, - "compounded": 3, - "comprehended": 4, - "comprises": 3, - "compromises": 4, - "conceding": 3, - "concepcion": 4, - "concierge": 3, - "concubinage": 4, - "condolences": 4, - "conferences": 4, - "confidences": 4, - "confinement": 3, - "confluence": 3, - "confounded": 3, - "confucian": 3, - "confuses": 3, - "congruence": 3, - "connely": 2, - "consciences": 3, - "constituencies": 5, - "constituency": 5, - "constituent": 4, - "constituents": 4, - "contended": 3, - "continuances": 5, - "contrivances": 4, - "controversial": 4, - "conveniences": 4, - "conveyance": 3, - "conveyor": 3, - "conville": 2, - "convinced": 2, - "convinces": 3, - "cooperage": 3, - "coppage": 2, - "corabelle": 3, - "corded": 2, - "corette": 2, - "corinne": 2, - "corne": 1, - "cornelle": 2, - "cornette": 2, - "corresponded": 4, - "corriveau": 3, - "corsage": 2, - "corvette": 2, - "corvettes": 2, - "coscia": 2, - "cosette": 2, - "cossette": 2, - "coste": 1, - "cotelle": 2, - "cotroneo": 4, - "cottage": 2, - "cottages": 3, - "countenanced": 3, - "countenances": 4, - "counterbalanced": 4, - "countercharges": 4, - "counterespionage": 6, - "coupled": 2, - "courage": 2, - "courageous": 3, - "courageously": 4, - "courteau": 2, - "courthouses": 3, - "courville": 2, - "cousineau": 3, - "coverage": 3, - "coverages": 4, - "covering": 3, - "coverings": 3, - "coviello": 4, - "coville": 2, - "cowardice": 3, - "cowering": 3, - "crackled": 2, - "crawfordsville": 3, - "crayon": 2, - "crayons": 2, - "creole": 2, - "creoles": 2, - "creolized": 3, - "creosote": 3, - "crepeau": 2, - "crevice": 2, - "crevices": 3, - "cribbage": 2, - "cringes": 2, - "crippled": 2, - "criscione": 3, - "crises": 2, - "criticizes": 4, - "crocuses": 3, - "crosse": 1, - "crosspiece": 2, - "crosspieces": 3, - "croteau": 2, - "crotonville": 3, - "crotteau": 2, - "crowded": 2, - "cruces": 2, - "crucifixes": 4, - "cruises": 2, - "crumbled": 2, - "crumpled": 2, - "crutches": 2, - "cryan": 2, - "cubbage": 2, - "cuccia": 2, - "cuddled": 2, - "cuddling": 2, - "cuneo": 3, - "curtice": 2, - "curves": 1, - "cuteness": 2, - "cuyahoga": 4, - "cyacq": 2, - "cyanamid": 4, - "cyanazine": 4, - "cyanide": 3, - "cyanuric": 4, - "cyberspace": 3, - "cycled": 2, - "cytoplasm": 4, - "dabbled": 2, - "daigneault": 2, - "daleo": 3, - "damage": 2, - "damaged": 2, - "damages": 3, - "damme": 1, - "dances": 2, - "dandeneau": 3, - "danelle": 2, - "dangled": 2, - "daniello": 4, - "dansereau": 3, - "danville": 2, - "dapice": 2, - "darbonne": 2, - "darice": 2, - "darrelle": 2, - "darville": 2, - "databases": 4, - "daya": 2, - "dayan": 2, - "dazzled": 2, - "deathbed": 2, - "deatherage": 3, - "debasement": 3, - "debrosse": 2, - "decapua": 4, - "decelle": 2, - "decelles": 2, - "decisiveness": 4, - "decomposes": 4, - "decoteau": 3, - "decreases": 3, - "dedeaux": 2, - "deduce": 2, - "deduced": 2, - "defaced": 2, - "defarges": 3, - "defelice": 3, - "defended": 3, - "defensiveness": 4, - "defeo": 3, - "degaulle": 2, - "dehoyos": 3, - "dejarnette": 3, - "delage": 2, - "delbosque": 2, - "deleo": 3, - "deleon": 3, - "deleonardis": 5, - "delfosse": 2, - "delgiudice": 3, - "delguidice": 3, - "delicia": 3, - "delisle": 2, - "deliverers": 4, - "delivering": 4, - "delle": 1, - "delmed": 2, - "deluccia": 3, - "delucia": 3, - "deluge": 2, - "deluged": 2, - "delve": 1, - "delves": 1, - "demanded": 3, - "dematteo": 4, - "demayo": 3, - "demeo": 3, - "demilitarizes": 6, - "demme": 1, - "deneau": 2, - "deneault": 2, - "denice": 2, - "denne": 1, - "denomme": 2, - "denounced": 2, - "denounces": 3, - "deo": 2, - "deodorant": 4, - "deodorants": 4, - "deoliveira": 5, - "deon": 2, - "depended": 3, - "deployable": 4, - "deranged": 2, - "derousse": 2, - "descended": 3, - "descoteaux": 3, - "deserves": 2, - "desormeaux": 3, - "despises": 3, - "desselle": 2, - "detached": 2, - "deterioration": 6, - "detherage": 3, - "dettling": 2, - "deveau": 2, - "deveaux": 2, - "develle": 2, - "devereaux": 3, - "device": 2, - "devices": 3, - "deville": 2, - "devises": 3, - "deyo": 2, - "deyoe": 2, - "deyoung": 2, - "diagnoses": 4, - "dianthia": 4, - "diaphonia": 5, - "dibartolomeo": 6, - "dibbled": 2, - "diceon": 3, - "dideoxycytidine": 7, - "dieringer": 3, - "dieses": 2, - "diet": 2, - "dieters": 3, - "difelice": 3, - "differences": 4, - "diffuses": 3, - "dileo": 3, - "dileonardo": 5, - "dille": 1, - "dimatteo": 4, - "dimeo": 3, - "dimpled": 2, - "dinges": 2, - "dion": 2, - "diona": 3, - "dione": 2, - "dionysius": 5, - "disabled": 3, - "disadvantage": 4, - "disadvantaged": 4, - "disadvantageous": 5, - "disadvantages": 5, - "disallowances": 5, - "disappearances": 5, - "disassembled": 4, - "disbanded": 3, - "disbursement": 3, - "disbursements": 3, - "discarded": 3, - "discharges": 3, - "discloses": 3, - "discourage": 3, - "discouraged": 3, - "discouragement": 4, - "discourages": 4, - "discovering": 4, - "diseases": 3, - "disenfranchisement": 5, - "disengage": 3, - "disengaged": 3, - "disengagement": 4, - "disgrace": 2, - "disgraced": 2, - "disgraceful": 3, - "disguises": 3, - "diskette": 2, - "diskettes": 2, - "dislodged": 2, - "disloyal": 3, - "disloyalty": 4, - "disparage": 3, - "disparaged": 3, - "disparages": 4, - "dispatches": 3, - "displace": 2, - "displaced": 2, - "displacement": 3, - "displacements": 3, - "displaces": 3, - "disposes": 3, - "disregarded": 4, - "disservice": 3, - "dissolve": 2, - "dissolves": 2, - "distanced": 2, - "distances": 3, - "distaste": 2, - "distasteful": 3, - "distended": 3, - "distinctiveness": 4, - "disturbances": 4, - "ditches": 2, - "divergences": 4, - "diverges": 3, - "divisiveness": 4, - "divorced": 2, - "divorces": 3, - "dodges": 2, - "doenges": 2, - "doggedly": 3, - "dolce": 2, - "dolle": 1, - "donne": 1, - "doralynne": 3, - "doraville": 3, - "dorette": 2, - "dorice": 2, - "dOrsay": 2, - "dosage": 2, - "dosages": 3, - "doses": 2, - "doubled": 2, - "doucette": 2, - "douville": 2, - "downstage": 2, - "doyal": 2, - "doyel": 2, - "doyen": 2, - "doyon": 2, - "drainage": 2, - "dralle": 1, - "dramatizes": 4, - "drapeau": 2, - "dredges": 2, - "dressage": 2, - "dribbled": 2, - "droste": 1, - "dubeau": 2, - "duchenne": 2, - "duchesneau": 3, - "dudayev": 3, - "duena": 3, - "duenas": 3, - "dukakises": 4, - "dulcibelle": 3, - "dulle": 1, - "dumbfounded": 3, - "dunne": 1, - "durette": 2, - "duryea": 3, - "dusseau": 2, - "dusseault": 2, - "dwelle": 1, - "dwindled": 2, - "dyad": 2, - "dyal": 2, - "dyana": 3, - "dyane": 2, - "dyansen": 3, - "dyar": 2, - "dyas": 2, - "dyatron": 3, - "dyazide": 3, - "dyess": 2, - "easement": 2, - "eases": 2, - "eastes": 1, - "eau": 1, - "eaux": 1, - "edges": 2, - "edifice": 3, - "edithe": 2, - "edythe": 2, - "effectiveness": 4, - "efficiences": 4, - "effluent": 3, - "egerer": 3, - "Ehud": 2, - "eldred": 2, - "electrician": 4, - "electricians": 4, - "electrospace": 4, - "elle": 1, - "ellesse": 2, - "ellette": 2, - "ellice": 2, - "elusiveness": 4, - "elves": 1, - "embed": 2, - "embedded": 3, - "embezzled": 3, - "embrace": 2, - "embraced": 2, - "embraces": 3, - "embryology": 5, - "emerges": 3, - "emeryville": 4, - "eminences": 4, - "emlynne": 2, - "emme": 1, - "emphases": 3, - "emphasizes": 4, - "emplacement": 3, - "employable": 4, - "employee": 3, - "employees": 3, - "empowering": 4, - "enabled": 3, - "encircled": 3, - "encourage": 3, - "encouraged": 3, - "encouragement": 4, - "encourages": 4, - "encroached": 2, - "endangering": 4, - "ended": 2, - "endorsement": 3, - "endorsements": 3, - "enfeebled": 3, - "enforced": 2, - "enforcement": 3, - "enforces": 3, - "enfranchises": 4, - "engage": 2, - "engaged": 2, - "engagement": 3, - "engagements": 3, - "engages": 3, - "enhanced": 2, - "enhancement": 3, - "enhancements": 3, - "enhances": 3, - "enjoyable": 4, - "enlarges": 3, - "ennes": 1, - "enrage": 2, - "enraged": 2, - "enriched": 2, - "ensconced": 2, - "enslavement": 3, - "entangled": 3, - "enterprises": 4, - "enthuses": 3, - "enthusiastically": 6, - "entice": 2, - "enticed": 2, - "enticement": 3, - "enticements": 3, - "entourage": 3, - "entranced": 2, - "entrances": 3, - "entrenched": 2, - "envisage": 3, - "envisaged": 3, - "envisages": 4, - "eocene": 3, - "eoff": 2, - "eohippus": 4, - "eolande": 4, - "eon": 2, - "eons": 2, - "epitomizes": 5, - "erases": 3, - "erne": 1, - "escapement": 3, - "espionage": 4, - "espouses": 3, - "essayist": 3, - "esse": 1, - "este": 1, - "estelle": 2, - "estranged": 2, - "estrangement": 3, - "etches": 2, - "ethereal": 4, - "ettlinger": 3, - "etzioni": 4, - "eudocia": 3, - "eunice": 2, - "eurasian": 3, - "europeenne": 3, - "euroyen": 3, - "eustace": 2, - "eustacia": 3, - "eustice": 2, - "evansville": 3, - "evenhanded": 4, - "evenhandedly": 5, - "everage": 3, - "everette": 3, - "evidenced": 3, - "evidences": 4, - "evinced": 2, - "evolve": 2, - "evolves": 2, - "evonne": 2, - "exchanged": 2, - "exchanges": 3, - "excises": 3, - "excitement": 3, - "excoa": 3, - "excuses": 3, - "exercises": 4, - "exes": 2, - "expanded": 3, - "expended": 3, - "exposes": 3, - "expounded": 3, - "expunged": 2, - "extended": 3, - "extraordinaire": 5, - "eyerman": 3, - "ezelle": 2, - "fabled": 2, - "faceless": 2, - "faces": 2, - "facteau": 2, - "falardeau": 3, - "fangled": 2, - "fantasizes": 4, - "fariello": 4, - "farmhouses": 3, - "farnes": 1, - "faucette": 2, - "favreau": 2, - "faxes": 2, - "fayard": 2, - "fayez": 2, - "faymonville": 3, - "feces": 2, - "fecteau": 2, - "fejes": 2, - "felice": 2, - "felicia": 3, - "felrice": 2, - "femme": 1, - "fences": 2, - "fended": 2, - "feodor": 3, - "feodora": 4, - "feola": 3, - "fertilizes": 4, - "fetches": 2, - "fette": 1, - "fettes": 1, - "fetuses": 3, - "fiddled": 2, - "fiddling": 2, - "fielded": 2, - "figaroa": 4, - "figueroa": 4, - "filice": 2, - "filyaw": 3, - "financed": 2, - "financement": 3, - "finances": 3, - "finesse": 2, - "fingering": 3, - "finne": 1, - "fiona": 3, - "firehouses": 4, - "fireplace": 3, - "fireplaces": 4, - "fisette": 2, - "fishburne": 2, - "fiske": 1, - "fitzmaurice": 3, - "fixes": 2, - "fizzled": 2, - "flamboyance": 3, - "flamboyant": 3, - "flamboyantly": 4, - "flanges": 2, - "fleurette": 2, - "flexes": 2, - "flounces": 2, - "flowering": 3, - "fluency": 3, - "fluent": 2, - "flythe": 1, - "focuses": 3, - "folded": 2, - "follette": 2, - "fontenette": 3, - "fonville": 2, - "foodservice": 3, - "footage": 2, - "footrace": 2, - "forage": 2, - "forages": 3, - "forces": 2, - "fordyce": 2, - "forecloses": 3, - "foretaste": 2, - "forges": 2, - "forgette": 2, - "forgione": 3, - "forgiveness": 3, - "formalizes": 4, - "fornes": 1, - "forsythe": 2, - "forwarded": 3, - "fosse": 1, - "founded": 2, - "foxes": 2, - "fradette": 2, - "fragrances": 3, - "frances": 2, - "franchises": 3, - "francia": 2, - "francisville": 3, - "frazzled": 2, - "frechette": 2, - "freckled": 2, - "freezes": 2, - "fregeau": 2, - "frenette": 2, - "freon": 2, - "freons": 2, - "freya": 2, - "freyermuth": 3, - "fringes": 2, - "friona": 3, - "friscia": 2, - "friske": 1, - "fromme": 1, - "frontage": 2, - "fryar": 2, - "fuchsias": 2, - "fujiya": 3, - "fujiyama": 4, - "fukuyama": 4, - "fumbled": 2, - "funded": 2, - "furches": 2, - "furloughed": 2, - "furnace": 2, - "furnaces": 3, - "furuya": 3, - "fuselage": 3, - "fuselages": 4, - "fuses": 2, - "fuzes": 2, - "gabriella": 4, - "gabrielli": 4, - "gaccione": 3, - "gainesville": 2, - "galarneau": 3, - "galileo": 4, - "galipeau": 3, - "galle": 1, - "galleon": 3, - "galleons": 3, - "galles": 1, - "galyean": 3, - "galyen": 3, - "gamage": 2, - "gambled": 2, - "gamboa": 3, - "gammage": 2, - "ganglionic": 4, - "garage": 2, - "garages": 3, - "garbage": 2, - "garbled": 2, - "garceau": 2, - "garces": 2, - "gardea": 3, - "gareau": 2, - "garges": 2, - "garneau": 2, - "garnes": 1, - "garnette": 2, - "garrette": 2, - "gases": 2, - "gasque": 1, - "gastineau": 3, - "gaudette": 2, - "gaudreau": 2, - "gauges": 2, - "gaulle": 1, - "gauthreaux": 2, - "gautreau": 2, - "gautreaux": 2, - "gauvreau": 2, - "gazelle": 2, - "gazelles": 2, - "gazes": 2, - "gazette": 2, - "gearboxes": 3, - "gedeon": 3, - "geers": 2, - "gelette": 2, - "gelineau": 3, - "gelles": 1, - "gemayel": 3, - "gemme": 1, - "gendreau": 2, - "genoa": 3, - "geo": 2, - "geocentric": 4, - "geochemistry": 5, - "geodesic": 4, - "geodesy": 4, - "geodyne": 3, - "geoffrion": 4, - "geoffroy": 3, - "geographer": 4, - "geographic": 4, - "geographical": 5, - "geographically": 6, - "geography": 4, - "geologic": 4, - "geological": 5, - "geologist": 4, - "geologists": 4, - "geology": 4, - "geomagnetic": 5, - "geometric": 4, - "geometrical": 5, - "geometries": 4, - "geometry": 4, - "geomorphology": 6, - "geon": 2, - "geophysical": 5, - "geopolitical": 6, - "geopolitics": 5, - "geordie": 3, - "georg": 2, - "georgeson": 4, - "georgi": 3, - "georgiades": 4, - "geostrophic": 4, - "geosyncline": 4, - "geotaxis": 4, - "geotek": 3, - "geothermal": 4, - "geotropic": 4, - "geotropism": 5, - "gering": 2, - "geringer": 3, - "geske": 1, - "geyelin": 3, - "gibeau": 2, - "gibeault": 2, - "gideon": 3, - "gieske": 1, - "giggled": 2, - "gildea": 3, - "gilded": 2, - "gille": 1, - "gilles": 1, - "gillette": 2, - "gionet": 3, - "giselle": 2, - "giudice": 3, - "glances": 2, - "glanville": 2, - "glazes": 2, - "glenville": 2, - "glitches": 2, - "glowering": 3, - "goa": 2, - "gobbled": 2, - "goddeau": 2, - "godette": 2, - "goethe": 1, - "goldfeder": 3, - "golle": 1, - "goodreau": 2, - "gooseberry": 3, - "gordeyev": 3, - "gorgeous": 2, - "gorges": 2, - "gossage": 2, - "gosse": 1, - "goudeau": 2, - "goudreau": 2, - "goulette": 2, - "goya": 2, - "goyim": 2, - "graceful": 2, - "gracefully": 3, - "graceless": 2, - "graces": 2, - "gracia": 2, - "graffeo": 3, - "grambling": 2, - "granges": 2, - "granville": 2, - "grappled": 2, - "grappling": 2, - "grasse": 1, - "gravelle": 2, - "gravette": 2, - "grayish": 2, - "grecian": 2, - "greenhouses": 3, - "greenpeace": 2, - "greenville": 2, - "grelle": 1, - "grenouille": 3, - "grievances": 3, - "grille": 1, - "grimaced": 2, - "grimaces": 3, - "grimme": 1, - "grinage": 2, - "grizzled": 2, - "groleau": 2, - "grosse": 1, - "grotesque": 2, - "grotesquely": 3, - "grothe": 1, - "grotheer": 2, - "grounded": 2, - "groupement": 2, - "grouses": 2, - "grua": 2, - "grudges": 2, - "grumbled": 2, - "guarded": 2, - "guardedly": 3, - "guayabera": 4, - "guccione": 3, - "guerette": 2, - "guerrette": 2, - "guidice": 2, - "guilbeau": 2, - "guilbeault": 2, - "guilbeaux": 2, - "guillemette": 3, - "guillette": 2, - "guilmette": 2, - "guises": 2, - "gullette": 2, - "guste": 1, - "guyana": 3, - "guyett": 2, - "guyon": 2, - "guyot": 2, - "gvaryahu": 4, - "gwynne": 1, - "haberer": 3, - "hachette": 2, - "haggled": 2, - "halcion": 3, - "halle": 1, - "halve": 1, - "halves": 1, - "hamme": 1, - "hammes": 1, - "handed": 2, - "handedly": 3, - "handled": 2, - "hannes": 1, - "hansche": 2, - "haranguing": 3, - "hardage": 2, - "harleysville": 3, - "harnage": 2, - "harne": 1, - "harriette": 3, - "hartlage": 2, - "hartshorne": 2, - "harville": 2, - "haske": 1, - "hasse": 1, - "hassled": 2, - "haste": 1, - "hatches": 2, - "hathorne": 2, - "hauppauge": 2, - "hawthorne": 2, - "hayashi": 3, - "hayashida": 4, - "hayek": 2, - "hayen": 2, - "hayenga": 3, - "hearne": 1, - "heavyhanded": 4, - "heberer": 3, - "heckled": 2, - "hedges": 2, - "heidbreder": 3, - "heiges": 2, - "helice": 2, - "helle": 1, - "hemme": 1, - "hemocyanin": 5, - "hemorrhage": 3, - "hemorrhaged": 3, - "henne": 1, - "henneberry": 3, - "hennes": 1, - "henriette": 3, - "hentges": 2, - "henthorne": 2, - "heon": 2, - "heralded": 3, - "herbaceous": 3, - "herded": 2, - "heritage": 3, - "hermitage": 3, - "herne": 1, - "herriage": 3, - "herrlinger": 3, - "hesse": 1, - "hessian": 2, - "heterogeneous": 5, - "hicksville": 2, - "hideo": 3, - "hille": 1, - "himalayan": 4, - "himalayas": 4, - "hindrances": 3, - "hinges": 2, - "hirayama": 4, - "hiroyuki": 4, - "histrionic": 4, - "histrionics": 4, - "hitches": 2, - "hoarded": 2, - "hoarseness": 2, - "hoaxes": 2, - "hobbled": 2, - "hodges": 2, - "hoelle": 1, - "holle": 1, - "homage": 2, - "homeostasis": 5, - "homeostatic": 5, - "homme": 1, - "hommes": 1, - "horace": 2, - "horne": 1, - "hoses": 2, - "hospice": 2, - "hospices": 3, - "hostage": 2, - "hostages": 3, - "houdaille": 2, - "hounded": 2, - "houses": 2, - "hovering": 3, - "hoyos": 2, - "hua": 2, - "huddled": 2, - "hugely": 2, - "hugette": 2, - "hughette": 2, - "hulette": 2, - "humbled": 2, - "hundred": 2, - "hungering": 3, - "huntsville": 2, - "hurteau": 2, - "hutcheon": 3, - "huyett": 2, - "hyacinth": 3, - "hyacintha": 4, - "hyacinthia": 5, - "hyacinthie": 4, - "hyacinths": 3, - "hyaluronic": 5, - "hyams": 2, - "hyannis": 3, - "hyatt": 2, - "hyena": 3, - "hyenas": 3, - "hyperion": 4, - "hypotheses": 4, - "hyraxes": 3, - "ianniello": 5, - "ices": 2, - "iconoclasm": 5, - "idea": 3, - "ideological": 6, - "ideologies": 5, - "ideologists": 5, - "idette": 2, - "idled": 2, - "idolizes": 4, - "ierne": 1, - "ignace": 2, - "illes": 1, - "Ilyich": 2, - "image": 2, - "images": 3, - "imbalances": 4, - "imbedded": 3, - "immortalizes": 5, - "immunizes": 4, - "impasse": 2, - "impeached": 2, - "impeding": 3, - "imposes": 3, - "impounded": 3, - "improvement": 3, - "improvements": 3, - "inbred": 2, - "incidences": 4, - "inconvenienced": 4, - "inconveniences": 5, - "increases": 3, - "indecisiveness": 5, - "indexes": 3, - "indices": 3, - "indonesian": 4, - "induce": 2, - "induced": 2, - "inducement": 3, - "inducements": 3, - "induces": 3, - "indulgences": 4, - "indulges": 3, - "ineffectiveness": 5, - "inferences": 4, - "influence": 3, - "influenced": 3, - "influences": 4, - "influencing": 4, - "influential": 4, - "influenza": 4, - "infrared": 3, - "infringed": 2, - "infringement": 3, - "infringements": 3, - "infringes": 3, - "infuses": 3, - "injustice": 3, - "injustices": 4, - "innerspace": 3, - "innuendo": 4, - "innuendoes": 4, - "innuendos": 4, - "instances": 3, - "institutionalizes": 7, - "insurances": 4, - "intended": 3, - "interacciones": 5, - "interbred": 3, - "interceding": 4, - "interchanges": 4, - "interface": 3, - "interfaces": 4, - "interlaced": 3, - "intermingled": 4, - "interoffice": 4, - "intervoice": 3, - "intraocular": 5, - "intrauterine": 5, - "intriguing": 3, - "intriguingly": 4, - "introduce": 3, - "introduced": 3, - "introduces": 4, - "inveighed": 2, - "inventiveness": 4, - "invoice": 2, - "invoices": 3, - "involve": 2, - "involvement": 3, - "involves": 2, - "iodice": 3, - "ion": 2, - "iona": 3, - "ionic": 3, - "ionics": 3, - "ionization": 5, - "ionizers": 4, - "ionizing": 4, - "ionospheric": 5, - "ions": 2, - "irette": 2, - "irises": 3, - "ironizes": 4, - "irvette": 2, - "isabelle": 3, - "isle": 1, - "isles": 1, - "isocyanate": 5, - "Isozaki": 4, - "issuances": 4, - "itches": 2, - "jacksonville": 3, - "jandreau": 2, - "janelle": 2, - "janesville": 2, - "janette": 2, - "jangled": 2, - "janice": 2, - "jarreau": 2, - "jasmer": 3, - "jaundice": 2, - "jaundiced": 2, - "jaya": 2, - "jayashankar": 4, - "jeanbaptiste": 3, - "jeanette": 2, - "jeanne": 1, - "jeannette": 2, - "jeansonne": 2, - "jenne": 1, - "jennette": 2, - "jenrette": 2, - "jeske": 1, - "jetborne": 2, - "jette": 1, - "jeyaretnam": 4, - "joffrion": 3, - "jolette": 2, - "joliet": 3, - "jolivette": 3, - "jopling": 2, - "jorge": 2, - "josette": 2, - "joshua": 3, - "jostes": 1, - "jostling": 2, - "joyal": 2, - "joyoni": 3, - "joyous": 2, - "juan": 1, - "juana": 2, - "juanita": 3, - "juarez": 2, - "judaism": 3, - "judea": 3, - "judeo": 3, - "judgement": 2, - "judgements": 2, - "judges": 2, - "judgeship": 2, - "judgeships": 2, - "judice": 2, - "juggled": 2, - "juices": 2, - "jukebox": 2, - "julia": 3, - "julianne": 3, - "juliet": 3, - "julius": 3, - "jumbled": 2, - "jumonville": 3, - "juneau": 2, - "junette": 2, - "junior": 3, - "juniors": 3, - "justice": 2, - "justices": 3, - "kageyama": 4, - "kamerer": 3, - "kanghua": 3, - "kanne": 1, - "karges": 2, - "karnes": 1, - "kasmer": 3, - "katayama": 4, - "kaya": 2, - "kayak": 2, - "kayaking": 3, - "kayaks": 2, - "kayo": 2, - "kemerer": 3, - "keo": 2, - "keogh": 2, - "keohane": 3, - "keown": 2, - "kerestes": 2, - "kernes": 1, - "kerrville": 2, - "keske": 1, - "keville": 2, - "keynesian": 3, - "kibodeaux": 3, - "kidded": 2, - "kiessling": 2, - "kilborne": 2, - "kilbourne": 2, - "kille": 1, - "kimche": 2, - "kindled": 2, - "kindred": 2, - "kingsville": 2, - "kinne": 1, - "kissling": 2, - "kitchenette": 3, - "kiyoshi": 3, - "kiyotaka": 4, - "klages": 2, - "kleinpaste": 2, - "klemme": 1, - "knicely": 2, - "knoxville": 2, - "kobayashi": 4, - "kocian": 2, - "koelle": 1, - "kolle": 1, - "Komsomolskaya": 5, - "korfhage": 2, - "kothe": 1, - "koyama": 3, - "koyo": 2, - "kramme": 1, - "krammes": 1, - "krasnoyarsk": 3, - "krausse": 1, - "kresge": 2, - "kresse": 1, - "krumme": 1, - "kuenheim": 3, - "kuenstler": 3, - "kuenzi": 3, - "kunayev": 3, - "kuske": 1, - "labeau": 2, - "labelle": 2, - "labranche": 3, - "lacayo": 3, - "laces": 2, - "lachapelle": 3, - "lacoste": 2, - "lacrosse": 2, - "ladled": 2, - "lafalce": 3, - "laflamme": 2, - "lafollette": 3, - "lafosse": 2, - "lagesse": 2, - "lajeunesse": 3, - "lakeside": 2, - "lamarche": 3, - "lambaste": 2, - "lambastes": 2, - "lamme": 1, - "lamontagne": 3, - "lamoreaux": 3, - "lamothe": 2, - "lamoureaux": 3, - "lanceolate": 4, - "lancia": 2, - "landed": 2, - "landreneau": 3, - "langhorne": 2, - "language": 2, - "languages": 3, - "lanouette": 3, - "lapage": 2, - "larche": 2, - "larded": 2, - "lareau": 2, - "largesse": 2, - "lariccia": 3, - "larochelle": 3, - "lasalle": 2, - "lashua": 3, - "laske": 1, - "lasseigne": 2, - "latches": 2, - "latendresse": 3, - "lateness": 2, - "latexes": 3, - "lathe": 1, - "lathes": 1, - "latourette": 3, - "lattice": 2, - "laurette": 2, - "laurice": 2, - "lausanne": 2, - "lavelle": 2, - "laverne": 2, - "lavette": 2, - "lavigne": 2, - "laviolette": 4, - "lawhorne": 2, - "lawrenceville": 3, - "layborne": 2, - "layered": 2, - "layering": 3, - "layoff": 2, - "layoffs": 2, - "layout": 2, - "layouts": 2, - "layover": 3, - "layovers": 3, - "leadville": 2, - "leakage": 2, - "leases": 2, - "leatrice": 2, - "leavelle": 2, - "lebeau": 2, - "ledges": 2, - "ledonne": 2, - "legette": 2, - "legged": 2, - "leggette": 2, - "legitimizes": 5, - "leifeste": 2, - "lemelle": 2, - "leo": 2, - "leoma": 3, - "leominster": 4, - "leon": 2, - "leona": 3, - "leonardo": 4, - "leone": 2, - "leonel": 3, - "leonerd": 3, - "leones": 2, - "leonhard": 3, - "leoni": 3, - "leonid": 3, - "leonora": 4, - "leonore": 3, - "leontine": 3, - "leopold": 3, - "leopoldine": 4, - "leopoldo": 4, - "leos": 2, - "leotard": 3, - "lepage": 2, - "lerette": 2, - "lesage": 2, - "leske": 1, - "lespinasse": 3, - "leticia": 3, - "letourneau": 3, - "lettice": 2, - "lettuce": 2, - "leveille": 2, - "leverage": 3, - "leveraged": 3, - "leverette": 3, - "levering": 3, - "levesque": 2, - "leya": 2, - "lianne": 2, - "liberace": 3, - "libya": 3, - "libyan": 3, - "libyans": 3, - "licences": 3, - "licorice": 3, - "lighthouses": 3, - "likeness": 2, - "likenesses": 3, - "lille": 1, - "lilyan": 3, - "limoges": 3, - "linage": 2, - "lineberry": 3, - "linette": 2, - "lingering": 3, - "linkage": 2, - "linkages": 3, - "linne": 1, - "linville": 2, - "lion": 2, - "lionberger": 4, - "lionel": 3, - "lionetti": 4, - "lionheart": 3, - "lionized": 3, - "lions": 2, - "lirette": 2, - "lisette": 2, - "liske": 1, - "literaturnaya": 6, - "lithe": 1, - "littlepage": 3, - "loathe": 1, - "loathed": 1, - "lodges": 2, - "loewe": 2, - "logarithm": 4, - "loges": 2, - "logician": 3, - "loguidice": 3, - "loiselle": 2, - "lonesome": 2, - "looses": 2, - "lorette": 2, - "lorne": 1, - "loses": 2, - "losoya": 3, - "louisville": 3, - "lounges": 2, - "lovage": 2, - "lovering": 3, - "lovette": 2, - "lowering": 3, - "loya": 2, - "loyal": 2, - "loyalist": 3, - "loyalists": 3, - "loyall": 2, - "loyally": 3, - "loyalties": 3, - "loyalty": 3, - "loyola": 3, - "lozeau": 2, - "lozenges": 3, - "lozoya": 3, - "lua": 2, - "lucerne": 2, - "lucette": 2, - "lucia": 2, - "lucian": 2, - "lucille": 2, - "lucrecia": 3, - "luelle": 1, - "luggage": 2, - "lunges": 2, - "lurches": 2, - "lurette": 2, - "lyall": 2, - "lyell": 2, - "lyerla": 3, - "lynette": 2, - "lynne": 1, - "mabelle": 2, - "macfadyen": 4, - "macioce": 3, - "macroeconomic": 6, - "macroeconomics": 6, - "macrophage": 3, - "macrophages": 4, - "madelle": 2, - "mademoiselle": 4, - "maffeo": 3, - "mages": 2, - "magician": 3, - "magicians": 3, - "mahayana": 4, - "mahe": 2, - "mailboxes": 3, - "maille": 1, - "mainville": 2, - "maione": 3, - "majette": 2, - "makeover": 4, - "makepeace": 3, - "malayan": 3, - "malaysian": 3, - "malaysians": 3, - "maleness": 2, - "malice": 2, - "malle": 1, - "mallette": 2, - "malpractice": 3, - "malveaux": 2, - "manage": 2, - "managed": 2, - "management": 3, - "managements": 3, - "manages": 3, - "mandeville": 3, - "manette": 2, - "maneuvering": 4, - "maneuverings": 4, - "manganiello": 5, - "mangement": 2, - "manges": 2, - "mangione": 3, - "mangled": 2, - "manhandled": 3, - "manne": 1, - "mannes": 1, - "manseau": 2, - "mantua": 3, - "manuevering": 4, - "manville": 2, - "marantette": 3, - "maranville": 3, - "marbled": 2, - "marceau": 2, - "marceaux": 2, - "marcelle": 2, - "marches": 2, - "marcia": 2, - "marcille": 2, - "marcoses": 3, - "marette": 2, - "margette": 2, - "marginalizes": 5, - "marianne": 3, - "marice": 2, - "mariette": 3, - "marineau": 3, - "marketplace": 3, - "marketplaces": 4, - "marlette": 2, - "marmion": 3, - "marseille": 2, - "martelle": 2, - "martineau": 3, - "maruyama": 4, - "maruyu": 3, - "marvelle": 2, - "maryann": 3, - "marysville": 3, - "maryville": 3, - "marzette": 2, - "masaya": 3, - "masayoshi": 4, - "masayuki": 4, - "mascia": 2, - "masiello": 4, - "maske": 1, - "massacred": 3, - "massage": 2, - "massaged": 2, - "massages": 3, - "masse": 1, - "masterminded": 4, - "masterpiece": 3, - "masterpieces": 4, - "mataya": 3, - "matches": 2, - "mateo": 3, - "materializes": 6, - "mathe": 1, - "mathematician": 5, - "mathematicians": 5, - "matherne": 2, - "matisse": 2, - "matteo": 3, - "mattice": 2, - "maurice": 2, - "mauriello": 4, - "mauthe": 1, - "maximizes": 4, - "maya": 2, - "mayall": 2, - "mayan": 2, - "maybelle": 2, - "mayeda": 3, - "mayernik": 3, - "mayerson": 3, - "mayeux": 2, - "mayo": 2, - "mayon": 2, - "mayonnaise": 3, - "mayor": 2, - "mayoral": 3, - "mayoralty": 4, - "mayorga": 3, - "mayors": 2, - "mayville": 2, - "mazes": 2, - "mazzeo": 3, - "mcbryar": 3, - "mccarville": 3, - "mcconville": 3, - "mcfadyen": 4, - "mcginnes": 2, - "mckeon": 3, - "mckeone": 3, - "mckeown": 3, - "mcneece": 2, - "mcneice": 2, - "mcquaid": 2, - "mcquaide": 2, - "mcquaig": 2, - "mcquain": 2, - "measurement": 3, - "measurements": 3, - "meaux": 1, - "medea": 3, - "megahouses": 4, - "mehitabelle": 4, - "meiyuh": 2, - "melanesian": 4, - "melbourne": 2, - "melded": 2, - "melisse": 2, - "melle": 1, - "melville": 2, - "menace": 2, - "menaced": 2, - "menaces": 3, - "mended": 2, - "meneses": 3, - "menezes": 3, - "menges": 2, - "menne": 1, - "meo": 2, - "meola": 3, - "meow": 2, - "mercedeses": 4, - "merdyce": 2, - "merges": 2, - "merhige": 2, - "mersereau": 3, - "mertice": 2, - "meske": 1, - "message": 2, - "messages": 3, - "messiaen": 3, - "messineo": 4, - "meteor": 3, - "meteoric": 4, - "meteorological": 7, - "meteorologist": 6, - "meteorologists": 6, - "meteorology": 6, - "mette": 1, - "meyerhoff": 3, - "meyering": 3, - "meyerman": 3, - "meyerowitz": 4, - "meyerson": 3, - "meyo": 2, - "meyohas": 3, - "micheaux": 2, - "michelle": 2, - "microage": 3, - "microamerica": 6, - "microeconomic": 6, - "microeconomics": 6, - "microelectronic": 6, - "microelectronics": 6, - "microelettronica": 7, - "micromanage": 4, - "micromanagement": 5, - "microorganism": 6, - "micropaleontology": 8, - "midges": 2, - "midgette": 2, - "midpriced": 2, - "miesse": 1, - "migneault": 2, - "milbourne": 2, - "mildred": 2, - "mileage": 2, - "millage": 2, - "mille": 1, - "millette": 2, - "milliet": 3, - "mimeograph": 4, - "minasian": 3, - "minassian": 3, - "minded": 2, - "mindedly": 3, - "mineau": 2, - "mineo": 3, - "mineola": 4, - "minette": 2, - "minges": 2, - "mingled": 2, - "minibuses": 4, - "minichiello": 5, - "minimizes": 4, - "mintage": 2, - "minuses": 3, - "mion": 2, - "mione": 2, - "mirabelle": 3, - "mirage": 2, - "mirelle": 2, - "miscayuna": 4, - "mischarges": 3, - "mises": 2, - "mishandled": 3, - "misjudged": 2, - "miske": 1, - "mismanaged": 3, - "mismanagement": 4, - "mismatches": 3, - "misplace": 2, - "misplaced": 2, - "mispriced": 2, - "misstatement": 3, - "misstatements": 3, - "misuses": 3, - "mixes": 2, - "miyagawa": 4, - "miyahara": 4, - "miyako": 3, - "miyamori": 4, - "miyamoto": 4, - "miyasaki": 4, - "miyasato": 4, - "miyashiro": 4, - "miyazaki": 4, - "miyazawa": 4, - "mizelle": 2, - "moccia": 2, - "modisette": 3, - "moises": 2, - "molded": 2, - "molineaux": 3, - "molle": 1, - "molyneaux": 3, - "momayez": 3, - "moncayo": 3, - "monceaux": 2, - "mondeo": 3, - "monette": 2, - "mongeau": 2, - "mongering": 3, - "mongooses": 3, - "monopolizes": 5, - "monroeville": 3, - "montage": 2, - "montagne": 2, - "montemayor": 4, - "montesdeoca": 5, - "montevideo": 5, - "montoya": 3, - "montreal": 3, - "montville": 2, - "moragne": 2, - "moreau": 2, - "morice": 2, - "morisette": 3, - "morissette": 3, - "moriya": 3, - "morneau": 2, - "morneault": 2, - "morreale": 3, - "morrisette": 3, - "morrissette": 3, - "morrisville": 3, - "mortage": 2, - "mortages": 3, - "mortgage": 2, - "mortgaged": 2, - "mortgages": 3, - "mortician": 3, - "moselle": 2, - "moses": 2, - "mosque": 1, - "mosques": 1, - "mousse": 1, - "mousseau": 2, - "mouthed": 1, - "mouthpiece": 2, - "mouthpieces": 3, - "movement": 2, - "movements": 2, - "moya": 2, - "mozelle": 2, - "Muammar": 3, - "muddled": 2, - "muffled": 2, - "mughniyeh": 3, - "mugniyah": 3, - "mullineaux": 3, - "multilayered": 4, - "multivalve": 3, - "multiyear": 3, - "mumbled": 2, - "mumme": 1, - "murayama": 4, - "muscled": 2, - "muses": 2, - "musician": 3, - "musicians": 3, - "muske": 1, - "mustached": 2, - "muzzled": 2, - "myatt": 2, - "myelin": 3, - "myreon": 3, - "myrtice": 2, - "nadeau": 2, - "nagoya": 3, - "nairne": 1, - "nakayama": 4, - "nanette": 2, - "naperville": 3, - "napoleon": 4, - "napoleonic": 5, - "narayan": 3, - "narayanan": 4, - "narcisse": 2, - "nardiello": 4, - "nashua": 3, - "nashville": 2, - "nathe": 1, - "navarette": 3, - "navarrette": 3, - "Nazarbayev": 4, - "neault": 1, - "nechayev": 3, - "necklace": 2, - "necklaces": 3, - "nedeau": 2, - "nederlandsche": 4, - "needled": 2, - "neises": 2, - "nelle": 1, - "nelles": 1, - "nellette": 2, - "neo": 2, - "neoclassic": 4, - "neoclassical": 5, - "neoconservative": 6, - "neoconservatives": 6, - "neola": 3, - "neoliberal": 5, - "neoliberals": 5, - "neoma": 3, - "neon": 2, - "neonatal": 4, - "neons": 2, - "neophyte": 3, - "neophytes": 3, - "neoplasm": 4, - "neoplatonic": 5, - "neoplatonist": 5, - "neoprene": 3, - "neoprobe": 3, - "neotenic": 4, - "neoteny": 4, - "nerice": 2, - "nerves": 1, - "neste": 1, - "netterville": 3, - "neuroses": 3, - "neutralizes": 4, - "neuville": 2, - "neveau": 2, - "neville": 2, - "newfangled": 3, - "newlywed": 3, - "newville": 2, - "nguyen": 2, - "nibbled": 2, - "nicely": 2, - "niceness": 2, - "nickelodeon": 5, - "nicolette": 3, - "nicolle": 2, - "nicorette": 3, - "nieces": 2, - "nietzsche": 2, - "nightstage": 2, - "nilges": 2, - "nilles": 1, - "ninette": 2, - "nishiyama": 4, - "nixes": 2, - "noa": 2, - "noblesse": 2, - "nobuyuki": 4, - "nodded": 2, - "noises": 2, - "nolette": 2, - "nonbusiness": 3, - "noncontroversial": 5, - "nonesuch": 2, - "nonetheless": 3, - "nonmanagement": 4, - "norcia": 2, - "norville": 2, - "noses": 2, - "notches": 2, - "notice": 2, - "noticed": 2, - "notices": 3, - "nottage": 2, - "nouveau": 2, - "nouvelle": 2, - "novice": 2, - "novices": 3, - "novoa": 3, - "noyola": 3, - "nuanced": 2, - "nuances": 3, - "nucleonics": 4, - "nucleotide": 4, - "nudges": 2, - "nuisances": 3, - "nureyev": 3, - "nyack": 2, - "nyenhuis": 3, - "nyerere": 3, - "oakville": 2, - "obeirne": 2, - "oblige": 2, - "obliged": 2, - "obliges": 3, - "obryan": 3, - "obryant": 3, - "observances": 4, - "observes": 2, - "obstetrician": 4, - "obstetricians": 4, - "obyrne": 2, - "occhoa": 3, - "occurrences": 4, - "ochoa": 3, - "odea": 3, - "odelette": 3, - "odeon": 3, - "odette": 2, - "oesterreichische": 5, - "offended": 3, - "office": 2, - "offices": 3, - "offstage": 2, - "ogled": 2, - "ohanesian": 4, - "OHara": 3, - "ohbayashi": 4, - "olayan": 3, - "oleo": 3, - "olivette": 3, - "omnibuses": 4, - "oneness": 2, - "oneok": 3, - "onstage": 2, - "oozes": 2, - "opposes": 3, - "opticians": 3, - "orabelle": 3, - "oranges": 3, - "ordinances": 4, - "oreffice": 3, - "orefice": 3, - "oreo": 3, - "organelles": 3, - "organizes": 4, - "orgasm": 3, - "orifices": 4, - "orne": 1, - "orphanage": 3, - "orphanages": 4, - "orville": 2, - "osage": 2, - "osages": 3, - "osborne": 2, - "osbourne": 2, - "osceola": 4, - "osteopathic": 5, - "osteoporosis": 6, - "osterreichische": 5, - "ouelette": 3, - "ouellette": 3, - "ounces": 2, - "outage": 2, - "outages": 3, - "outhouses": 3, - "outpace": 2, - "outpaced": 2, - "outpaces": 3, - "outplacement": 3, - "outrage": 2, - "outraged": 2, - "outrageous": 3, - "outrageously": 4, - "outrages": 3, - "outweighed": 2, - "ovalle": 2, - "overcharges": 4, - "overcrowded": 4, - "overdoses": 4, - "overextended": 5, - "overfunded": 4, - "overpriced": 3, - "overproduce": 4, - "overproduced": 4, - "overreached": 3, - "overseer": 4, - "overseers": 4, - "oversizes": 4, - "overstatement": 4, - "overstatements": 4, - "oyama": 3, - "oyen": 2, - "oyola": 3, - "ozanne": 2, - "ozelle": 2, - "paccione": 3, - "paces": 2, - "package": 2, - "packaged": 2, - "packages": 3, - "padded": 2, - "paddled": 2, - "padua": 3, - "pages": 2, - "pagette": 2, - "paille": 1, - "palace": 2, - "palaces": 3, - "paleobotany": 6, - "paleocene": 4, - "paleontology": 6, - "palette": 2, - "paniccia": 3, - "pantaleo": 4, - "pantheon": 3, - "panzhihua": 4, - "papaleo": 4, - "papaya": 3, - "papayas": 3, - "papering": 3, - "papineau": 3, - "papua": 3, - "paradoxes": 4, - "paraguayan": 4, - "paralyzes": 4, - "parazoa": 4, - "parcplace": 2, - "parentage": 3, - "parenteau": 3, - "parentheses": 4, - "pariseau": 3, - "parisian": 3, - "parizeau": 3, - "parlette": 2, - "parnes": 1, - "parsonage": 3, - "partridges": 3, - "pascua": 3, - "paseo": 3, - "paske": 1, - "pasquariello": 5, - "pasque": 1, - "passage": 2, - "passages": 3, - "paste": 1, - "pastes": 1, - "patches": 2, - "pathe": 1, - "patrice": 2, - "patricia": 3, - "patrician": 3, - "patricians": 3, - "patronage": 3, - "paulette": 2, - "pauses": 2, - "pavement": 2, - "pavements": 2, - "payable": 3, - "payables": 3, - "payan": 2, - "payeur": 2, - "payoff": 2, - "payoffs": 2, - "payola": 3, - "payout": 2, - "payouts": 2, - "peaceful": 2, - "peacefully": 3, - "pebereau": 3, - "peddled": 2, - "peerage": 2, - "peladeau": 3, - "pelayo": 3, - "pelle": 1, - "peloponnesian": 5, - "penalizes": 4, - "peon": 2, - "peonies": 3, - "peons": 2, - "peony": 3, - "peoria": 4, - "percentage": 3, - "percentages": 4, - "perches": 2, - "performances": 4, - "permissiveness": 4, - "pernice": 2, - "perplexes": 3, - "perreault": 2, - "perriello": 4, - "persian": 2, - "persians": 2, - "pervasiveness": 4, - "petroleos": 4, - "petrossian": 3, - "phalanges": 3, - "phantasm": 3, - "phases": 2, - "phileo": 3, - "phoenicia": 3, - "phoenician": 3, - "phoenicians": 3, - "phrases": 2, - "phua": 2, - "physician": 3, - "physicians": 3, - "phytogeography": 6, - "picariello": 5, - "picayune": 3, - "piccione": 3, - "pichette": 2, - "pickled": 2, - "picturesque": 3, - "pieces": 2, - "piet": 2, - "pilferage": 3, - "pilgrimage": 3, - "pilgrimages": 4, - "pillage": 2, - "pillaged": 2, - "pillages": 3, - "pille": 1, - "pincavage": 3, - "pineau": 2, - "pineo": 3, - "pinette": 2, - "pinneo": 3, - "pinsoneault": 3, - "pion": 2, - "pioneer": 3, - "pioneered": 3, - "pioneering": 4, - "pioneers": 3, - "piontek": 3, - "piontkowski": 4, - "pirouettes": 3, - "pitches": 2, - "placement": 2, - "placements": 2, - "placencia": 3, - "places": 2, - "plaguing": 2, - "plainclothes": 2, - "plascencia": 3, - "plasencia": 3, - "plasse": 1, - "plateau": 2, - "plateaued": 2, - "playa": 2, - "playoff": 2, - "playoffs": 2, - "pleasantville": 3, - "pleases": 2, - "pledges": 2, - "plisetskaya": 4, - "plodded": 2, - "plumage": 2, - "plumages": 3, - "plunges": 2, - "pluses": 2, - "police": 2, - "policed": 2, - "polices": 3, - "policewoman": 4, - "politeness": 3, - "politician": 4, - "politicians": 4, - "pollyanna": 4, - "polyacetylene": 6, - "polyak": 3, - "polyamide": 4, - "polyandrous": 4, - "polyandry": 4, - "polyester": 4, - "polyesters": 4, - "polyethylene": 5, - "polymerizes": 5, - "polynesian": 4, - "pomerleau": 3, - "pompeo": 3, - "ponsolle": 2, - "populace": 3, - "porches": 2, - "porges": 2, - "porpoises": 3, - "porsche": 2, - "porsches": 2, - "portage": 2, - "porterages": 4, - "portrayal": 3, - "portrayals": 3, - "poses": 2, - "postage": 2, - "postponement": 3, - "postponements": 3, - "postrelle": 2, - "poultices": 3, - "poundage": 2, - "pounded": 2, - "powerhouses": 4, - "powering": 3, - "practice": 2, - "practiced": 2, - "practices": 3, - "praises": 2, - "pralle": 1, - "prances": 2, - "prattville": 2, - "preaches": 2, - "preadolescent": 5, - "preamble": 3, - "prearranged": 3, - "preceding": 3, - "precipice": 3, - "predaceous": 3, - "preeminence": 4, - "preeminent": 4, - "preempt": 2, - "preempted": 3, - "preemption": 3, - "preemptive": 3, - "preexist": 3, - "preexisted": 4, - "preexisting": 4, - "preexists": 3, - "preface": 2, - "prefaced": 2, - "preferenced": 3, - "preferences": 4, - "preignition": 4, - "preinvasion": 4, - "preisler": 3, - "prejudged": 2, - "prejudice": 3, - "prejudiced": 3, - "prejudices": 4, - "premed": 2, - "premiering": 3, - "premises": 3, - "prentice": 2, - "preoccupation": 5, - "preoccupations": 5, - "preoccupied": 4, - "preoccupies": 4, - "preoccupy": 4, - "preordained": 3, - "prepackaged": 3, - "prerecorded": 4, - "presage": 2, - "presaged": 2, - "presages": 3, - "presences": 3, - "preserves": 2, - "prestage": 2, - "prestige": 2, - "presupposes": 4, - "pretended": 3, - "prevette": 2, - "priceless": 2, - "prices": 2, - "prideaux": 2, - "primeau": 2, - "primeaux": 2, - "primroses": 3, - "princes": 2, - "princeville": 2, - "principled": 3, - "prindiville": 3, - "prioleau": 3, - "prioritizes": 5, - "privette": 2, - "prizes": 2, - "proactive": 3, - "probusiness": 3, - "procurement": 3, - "procurements": 3, - "prodded": 2, - "produce": 2, - "produced": 2, - "produces": 3, - "prognoses": 3, - "programme": 2, - "prolonged": 2, - "prominences": 4, - "promises": 3, - "pronounced": 2, - "pronouncement": 3, - "pronouncements": 3, - "pronounces": 3, - "propionic": 4, - "proposes": 3, - "propounded": 3, - "proscia": 2, - "prospectuses": 4, - "prostheses": 3, - "proteges": 3, - "protozoa": 4, - "protuberances": 5, - "provideniya": 5, - "provinces": 3, - "prudhomme": 2, - "pruneau": 2, - "prussian": 2, - "puleo": 3, - "pulice": 2, - "pumice": 2, - "purchases": 3, - "purges": 2, - "purposes": 3, - "purves": 1, - "purveyor": 3, - "purveyors": 3, - "puzzled": 2, - "pyatt": 2, - "pyeatt": 2, - "quadrupled": 3, - "quai": 1, - "quaid": 1, - "quail": 1, - "quails": 1, - "quain": 1, - "quaint": 1, - "quaintance": 2, - "quaintly": 2, - "quamme": 1, - "queau": 1, - "quebedeaux": 3, - "quellette": 2, - "quenneville": 3, - "queuing": 2, - "quintupled": 3, - "quivering": 3, - "rabideau": 3, - "racehorses": 3, - "races": 2, - "racette": 2, - "rachelle": 2, - "radborne": 2, - "radbourne": 2, - "radice": 2, - "rages": 2, - "ragged": 2, - "rahe": 2, - "rainville": 2, - "raises": 2, - "raleses": 3, - "ramage": 2, - "rambeau": 2, - "rambled": 2, - "rambling": 2, - "rameses": 3, - "rampage": 2, - "rampaged": 2, - "rampages": 3, - "ranges": 2, - "rankled": 2, - "rapprochement": 3, - "raske": 1, - "rathburne": 2, - "rathe": 1, - "rattling": 2, - "ravaged": 2, - "ravages": 3, - "raya": 2, - "rayon": 2, - "rayos": 2, - "rayovac": 3, - "raytheon": 3, - "reabsorbed": 3, - "reactionaries": 5, - "reactionary": 5, - "reactions": 3, - "reaganesque": 3, - "realign": 3, - "realigned": 3, - "realigning": 4, - "realignment": 4, - "realignments": 4, - "realistic": 4, - "realities": 4, - "reality": 4, - "realizable": 5, - "realizes": 4, - "reallocate": 4, - "reallocated": 5, - "reallocating": 5, - "reallocation": 5, - "reallowance": 4, - "realtor": 3, - "realtors": 3, - "realty": 3, - "reappraised": 3, - "reaume": 1, - "reaux": 1, - "rebounded": 3, - "receding": 3, - "recognizes": 4, - "recommended": 4, - "recorded": 3, - "recovering": 4, - "recycled": 3, - "redhanded": 3, - "rediscovering": 5, - "redoubled": 3, - "reduce": 2, - "reduced": 2, - "reduces": 3, - "reemerge": 3, - "reemerged": 3, - "reestablished": 4, - "referenced": 3, - "references": 4, - "refering": 3, - "refinanced": 3, - "refinances": 4, - "refinement": 3, - "refinements": 3, - "reflexes": 3, - "refocuses": 4, - "refuge": 2, - "refuges": 3, - "refunded": 3, - "refuses": 3, - "regarded": 3, - "reimposed": 3, - "rejiggering": 4, - "rejoice": 2, - "rejoiced": 2, - "rekindled": 3, - "relaunched": 2, - "relaxes": 3, - "releases": 3, - "remanded": 3, - "remembrances": 4, - "reminded": 3, - "reminisced": 3, - "reminiscences": 5, - "remittances": 4, - "remme": 1, - "remolded": 3, - "remoteness": 3, - "remoulded": 3, - "reneau": 2, - "renege": 2, - "reneged": 2, - "renne": 1, - "renounced": 2, - "reo": 2, - "reoffer": 3, - "reoffered": 3, - "reoffering": 4, - "reopen": 3, - "reopened": 3, - "reopening": 4, - "reopens": 3, - "reorder": 3, - "reordering": 4, - "reorganization": 6, - "reorganizations": 6, - "reorganize": 4, - "reorganized": 4, - "reorganizes": 5, - "reorganizing": 5, - "repackage": 3, - "repackaged": 3, - "repackages": 4, - "repayable": 4, - "replace": 2, - "replaced": 2, - "replacement": 3, - "replacements": 3, - "replaces": 3, - "reportage": 3, - "reprice": 2, - "repriced": 2, - "reprimanded": 4, - "reproduce": 3, - "reproduced": 3, - "reproduces": 4, - "repurchases": 4, - "requirement": 3, - "requirements": 3, - "rescinded": 3, - "researches": 3, - "resemblances": 4, - "resembled": 3, - "reserves": 2, - "reshuffled": 3, - "residences": 4, - "resistiveness": 4, - "reske": 1, - "resolve": 2, - "resolves": 2, - "resources": 3, - "responded": 3, - "responsiveness": 4, - "restaged": 2, - "restatement": 3, - "restatements": 3, - "restiveness": 3, - "restrictiveness": 4, - "resurface": 3, - "resurfaced": 3, - "retarded": 3, - "retirements": 3, - "retrace": 2, - "retraced": 2, - "retracement": 3, - "retrenched": 2, - "retroviruses": 5, - "reused": 2, - "revelle": 2, - "revette": 2, - "reville": 2, - "revises": 3, - "revolve": 2, - "revolves": 2, - "rewarded": 3, - "rhapsodizes": 4, - "rheault": 1, - "rheaume": 1, - "rhetoricians": 4, - "rhodesian": 3, - "rhythm": 2, - "riddled": 2, - "rideau": 2, - "rideaux": 2, - "ridges": 2, - "riendeau": 2, - "rifled": 2, - "righteous": 2, - "righteously": 3, - "righteousness": 3, - "rillette": 2, - "rinne": 1, - "rion": 2, - "riposte": 2, - "ripostes": 2, - "rippeon": 3, - "rippled": 2, - "rises": 2, - "riske": 1, - "risse": 1, - "riverbed": 3, - "rivette": 2, - "riviello": 4, - "riyad": 2, - "riyadh": 2, - "riyals": 2, - "roa": 2, - "robicheaux": 3, - "robideau": 3, - "robinette": 3, - "robitaille": 3, - "rocheleau": 3, - "rochelle": 2, - "rochette": 2, - "rockville": 2, - "rodeo": 3, - "rodeos": 3, - "roebling": 2, - "roelle": 1, - "roeske": 1, - "rohleder": 3, - "rolle": 1, - "romances": 3, - "romanesque": 3, - "romaniello": 5, - "romelle": 2, - "romeo": 3, - "rondeau": 2, - "ronne": 1, - "rosabelle": 3, - "rosanne": 2, - "roseanne": 2, - "roseberry": 3, - "roses": 2, - "rosette": 2, - "rosettes": 2, - "roseville": 2, - "roske": 1, - "rosse": 1, - "rossiya": 3, - "rothe": 1, - "rototilles": 3, - "rougeau": 2, - "rouleau": 2, - "roulette": 2, - "roulettes": 2, - "rounded": 2, - "rounsaville": 3, - "rousse": 1, - "rousseau": 2, - "rousselle": 2, - "rowlette": 2, - "roxanne": 2, - "royal": 2, - "royale": 2, - "royalist": 3, - "royall": 2, - "royals": 2, - "royalties": 3, - "royalty": 3, - "royces": 2, - "royex": 2, - "rozelle": 2, - "rua": 2, - "rudelle": 2, - "rudeness": 2, - "ruffled": 2, - "rugged": 2, - "ruggedly": 3, - "rumage": 2, - "rumbled": 2, - "rummage": 2, - "rumpled": 2, - "ruses": 2, - "russe": 1, - "russellville": 3, - "russian": 2, - "russians": 2, - "ryal": 2, - "ryall": 2, - "ryals": 2, - "ryan": 2, - "ryanair": 3, - "ryans": 2, - "ryen": 2, - "sabotage": 3, - "sabotaged": 3, - "sackville": 2, - "sacred": 2, - "sacrifice": 3, - "sacrificed": 3, - "sacrifices": 4, - "sacrilege": 3, - "saddled": 2, - "sages": 2, - "salemme": 2, - "saleswoman": 3, - "saleswomen": 3, - "salle": 1, - "salvage": 2, - "salvaged": 2, - "salve": 1, - "salves": 1, - "samelle": 2, - "sameness": 2, - "samoa": 3, - "sampled": 2, - "sancia": 2, - "sandage": 2, - "sanded": 2, - "sandwiched": 2, - "sannes": 1, - "santaniello": 5, - "santayana": 4, - "santoyo": 3, - "sanville": 2, - "sapoa": 3, - "sarcasm": 3, - "sarette": 2, - "sarkisian": 3, - "sarkissian": 3, - "sasse": 1, - "satirizes": 4, - "sauces": 2, - "sausage": 2, - "sausages": 3, - "sauternes": 2, - "sauvage": 2, - "sauvageau": 3, - "savage": 2, - "savaged": 2, - "savagely": 3, - "savages": 3, - "saville": 2, - "sawaya": 3, - "sawtelle": 2, - "sayad": 2, - "sayegh": 2, - "scaccia": 2, - "scarface": 2, - "scarves": 1, - "scherer": 2, - "schering": 2, - "schiewe": 2, - "schnelle": 1, - "scholle": 1, - "scion": 2, - "scolded": 2, - "sconces": 2, - "scorpion": 3, - "scorpions": 3, - "scotches": 2, - "scourges": 2, - "scoville": 2, - "scrambled": 2, - "scratches": 2, - "scribbled": 2, - "scrimmage": 2, - "scrutinizes": 4, - "scuffled": 2, - "seaborne": 2, - "searches": 2, - "sebaceous": 3, - "seceding": 3, - "seconded": 3, - "secretiveness": 4, - "seduce": 2, - "seduced": 2, - "seepage": 2, - "seethe": 1, - "seigniorage": 4, - "seiyaku": 3, - "seiyu": 2, - "seizes": 2, - "selle": 1, - "selvage": 2, - "selves": 1, - "semiautomatic": 6, - "semionenkov": 5, - "semmes": 1, - "senne": 1, - "sensitiveness": 4, - "sentelle": 2, - "sentenced": 2, - "sentences": 3, - "seo": 2, - "seow": 2, - "separateness": 4, - "sequoyah": 3, - "serves": 1, - "service": 2, - "serviced": 2, - "services": 3, - "sette": 1, - "severing": 3, - "seville": 2, - "sewage": 2, - "sewerage": 3, - "sexes": 2, - "sfernice": 2, - "shackled": 2, - "shaquille": 2, - "sharpeville": 3, - "sheathe": 1, - "sheathed": 1, - "shelburne": 2, - "shelbyville": 3, - "shelve": 1, - "shelves": 1, - "shepherded": 3, - "sherborne": 2, - "sherbourne": 2, - "sherburne": 2, - "shielded": 2, - "shigeo": 3, - "shionogi": 4, - "shivering": 3, - "shiyuan": 3, - "shoelace": 2, - "shoelaces": 3, - "shortage": 2, - "shortages": 3, - "shortchanged": 2, - "showcases": 3, - "showering": 3, - "showpiece": 2, - "showplace": 2, - "shredded": 2, - "shreveport": 2, - "shrinkage": 2, - "shuffled": 2, - "shuffling": 2, - "siang": 1, - "sias": 1, - "sibelle": 2, - "sibille": 2, - "sibling": 2, - "siblings": 2, - "sidekick": 2, - "sideline": 2, - "sidelined": 2, - "sidelines": 2, - "sideman": 2, - "sideshow": 2, - "sidestep": 2, - "sidestepped": 2, - "sidestepping": 3, - "sidesteps": 2, - "sidestream": 2, - "sidetrack": 2, - "sidewalk": 2, - "sidewalks": 2, - "sidewater": 3, - "sideways": 2, - "sidewinder": 3, - "sidewise": 2, - "signage": 2, - "silenced": 2, - "silences": 3, - "sileo": 3, - "silhouette": 3, - "silhouettes": 3, - "silverthorne": 3, - "simeon": 3, - "simeone": 3, - "simoneau": 3, - "simoneaux": 3, - "simonette": 3, - "simpleminded": 4, - "simplesse": 2, - "sincavage": 3, - "Sindayen": 3, - "singled": 2, - "singlehandedly": 5, - "sinuses": 3, - "sithe": 1, - "sixes": 2, - "sizes": 2, - "sizzled": 2, - "skeoch": 2, - "sketches": 2, - "skewering": 3, - "skidded": 2, - "skyboxes": 3, - "slaughterhouses": 4, - "slices": 2, - "slippage": 2, - "smoothed": 1, - "smuggled": 2, - "smythe": 1, - "snarled": 2, - "snatches": 2, - "sobering": 3, - "socia": 2, - "softimage": 3, - "soileau": 2, - "sokaiya": 3, - "solace": 2, - "soldiering": 3, - "solve": 1, - "solves": 1, - "somerville": 3, - "sommerville": 3, - "sonne": 1, - "soothe": 1, - "soothed": 1, - "soothes": 1, - "sorbonne": 2, - "sorcerer": 3, - "sorcerers": 3, - "sorice": 2, - "sotomayor": 4, - "sounded": 2, - "sources": 2, - "sourrouille": 3, - "sovetskaya": 4, - "soviet": 3, - "sovietologist": 6, - "soya": 2, - "soyars": 2, - "soysauce": 2, - "soyuz": 2, - "spaceport": 2, - "spaces": 2, - "spaceship": 2, - "spaceships": 2, - "spangled": 2, - "sparkled": 2, - "spasm": 2, - "specializes": 4, - "speckled": 2, - "spices": 2, - "splices": 2, - "spoilage": 2, - "spokeswoman": 3, - "spokewoman": 3, - "sponges": 2, - "sporleder": 3, - "spouses": 2, - "springerville": 3, - "sprinkled": 2, - "squabbled": 2, - "squillace": 2, - "stabilizes": 4, - "stacia": 2, - "stages": 2, - "staggering": 3, - "staircases": 3, - "stampeding": 3, - "stances": 2, - "stapled": 2, - "starches": 2, - "starnes": 1, - "statement": 2, - "statements": 2, - "stateside": 2, - "statistician": 4, - "statisticians": 4, - "stayover": 3, - "stayovers": 3, - "steakhouses": 3, - "stearne": 1, - "steenkiste": 2, - "stelle": 1, - "stephenville": 3, - "stereo": 3, - "stereographic": 5, - "stereos": 3, - "stereotype": 4, - "stereotyped": 4, - "stereotypes": 4, - "stereotypical": 6, - "stereotyping": 5, - "sterilizes": 4, - "sterne": 1, - "steubenville": 3, - "stifled": 2, - "stille": 1, - "stinnette": 2, - "stitches": 2, - "stockbrokerage": 4, - "stockbrokerages": 5, - "stolichnaya": 4, - "stolle": 1, - "stooges": 2, - "stoppage": 2, - "stoppages": 3, - "stopwatches": 3, - "storage": 2, - "straddled": 2, - "straddling": 2, - "straggled": 2, - "straitlaced": 2, - "stranded": 2, - "strangeness": 2, - "strangled": 2, - "stretches": 2, - "stromme": 1, - "struggled": 2, - "studded": 2, - "stumbled": 2, - "stumpage": 2, - "sturges": 2, - "stuteville": 2, - "subsidizes": 4, - "substances": 3, - "subsurface": 3, - "subterfuge": 3, - "suffice": 2, - "sufficed": 2, - "suffices": 3, - "suffrage": 2, - "suffragettes": 3, - "suggestiveness": 4, - "sugiyama": 4, - "suisse": 1, - "suitcases": 3, - "sukiyaki": 4, - "summarizes": 4, - "summerville": 3, - "superseding": 4, - "supervises": 4, - "supposedly": 4, - "supposes": 3, - "surcharges": 3, - "surette": 2, - "surface": 2, - "surfaced": 2, - "surfaceness": 3, - "surfaces": 3, - "surges": 2, - "surmises": 3, - "surpluses": 3, - "surprises": 3, - "surrealisms": 4, - "surrette": 2, - "surrounded": 3, - "surtaxes": 3, - "surveyor": 3, - "surveyors": 3, - "susanne": 2, - "susette": 2, - "suspended": 3, - "suzanne": 2, - "suzette": 2, - "sverige": 2, - "swaggering": 3, - "swatches": 2, - "swathed": 1, - "swinburnes": 2, - "swindled": 2, - "switches": 2, - "sybille": 2, - "symbion": 3, - "symbolizes": 4, - "symmes": 1, - "sympathizes": 4, - "syringes": 3, - "tableau": 2, - "tableaux": 2, - "tabled": 2, - "tackled": 2, - "tactician": 3, - "tacticians": 3, - "taddeo": 3, - "tafoya": 3, - "taiyo": 2, - "takashimaya": 5, - "takayama": 4, - "takeo": 3, - "talmage": 2, - "tamayo": 3, - "tangled": 2, - "tapering": 3, - "tasm": 2, - "taste": 1, - "tasteful": 2, - "tastefully": 3, - "tasteless": 2, - "tastes": 1, - "tauruses": 3, - "taxes": 2, - "teases": 2, - "tebeau": 2, - "technician": 3, - "technicians": 3, - "teenage": 2, - "teenaged": 2, - "telemanagement": 5, - "televideo": 5, - "telexes": 3, - "telles": 1, - "temme": 1, - "tended": 2, - "teo": 2, - "teodoro": 4, - "teriyaki": 4, - "ternes": 1, - "terrace": 2, - "terraced": 2, - "terraces": 3, - "terrorizes": 4, - "teruya": 3, - "teske": 1, - "tetreault": 2, - "thaddea": 3, - "thatches": 2, - "thebeau": 2, - "themselves": 2, - "theo": 2, - "theobald": 3, - "theocracy": 4, - "theocratic": 4, - "theodor": 3, - "theodora": 4, - "theodore": 3, - "theodorou": 4, - "theodric": 3, - "theola": 3, - "theologian": 5, - "theological": 5, - "theology": 4, - "theon": 2, - "theone": 2, - "theophania": 5, - "theophila": 4, - "theora": 3, - "theoretical": 5, - "theoretically": 6, - "theorist": 3, - "theorists": 3, - "theorize": 3, - "theorized": 3, - "theorizes": 4, - "theorizing": 4, - "theses": 2, - "thibadeau": 3, - "thibeau": 2, - "thibeault": 2, - "thibeaux": 2, - "thibedeau": 3, - "thibodeau": 3, - "thibodeaux": 3, - "thinnes": 1, - "thoennes": 1, - "thomases": 3, - "thomasville": 3, - "thoreau": 2, - "thorne": 1, - "thoroughbred": 3, - "throneberry": 3, - "tickled": 2, - "tilles": 1, - "timme": 1, - "tinkled": 2, - "tithe": 1, - "titusville": 3, - "toa": 2, - "toddling": 2, - "toelle": 1, - "toggled": 2, - "toggling": 2, - "tokuyama": 4, - "tolerances": 4, - "tolle": 1, - "tolles": 1, - "tomeo": 3, - "tondreau": 2, - "tonnage": 2, - "tonnages": 3, - "tonne": 1, - "tonnes": 1, - "toothed": 1, - "toothpaste": 2, - "toothpastes": 2, - "toppled": 2, - "torches": 2, - "torosian": 3, - "torreon": 3, - "torsiello": 4, - "tortoises": 3, - "tortorice": 3, - "tortoriello": 5, - "toshiyuki": 4, - "toste": 1, - "touchette": 2, - "tourangeau": 3, - "tourville": 2, - "towering": 3, - "townhouses": 3, - "toyama": 3, - "toyo": 2, - "toyobo": 3, - "toyoda": 3, - "toyoo": 2, - "toyota": 3, - "toyotas": 3, - "traces": 2, - "tracheophytes": 4, - "trackage": 2, - "trageser": 3, - "trampled": 2, - "transcended": 3, - "transimage": 3, - "treatises": 3, - "trebled": 2, - "trefgarne": 2, - "treharne": 2, - "trembled": 2, - "trended": 2, - "treon": 2, - "triage": 2, - "tricia": 2, - "trickled": 2, - "trieste": 1, - "triggering": 3, - "tripled": 2, - "trivette": 2, - "trivializes": 5, - "troubled": 2, - "troyan": 2, - "troyanos": 3, - "troyat": 2, - "troyu": 2, - "trudeau": 2, - "trudges": 2, - "trundled": 2, - "tryart": 2, - "tsiang": 1, - "tsuneo": 3, - "tuberville": 3, - "tumbled": 2, - "tunisian": 3, - "turberville": 3, - "turbocharges": 4, - "turenne": 2, - "turnage": 2, - "turville": 2, - "tussled": 2, - "tutelage": 3, - "twelve": 1, - "twitches": 2, - "udelle": 2, - "ulloa": 3, - "umbrage": 2, - "unabashedly": 5, - "unabridged": 3, - "unacknowledged": 4, - "unamended": 4, - "unannounced": 3, - "unattached": 3, - "unattended": 4, - "unbalanced": 3, - "unbounded": 3, - "unbranded": 3, - "unbridled": 3, - "unchallenged": 3, - "unchanged": 2, - "uncontroversial": 5, - "unconvinced": 3, - "uncovering": 4, - "undamaged": 3, - "underage": 3, - "underfinanced": 4, - "underfunded": 4, - "underhanded": 4, - "underprice": 3, - "underpriced": 3, - "understatement": 4, - "unemployable": 5, - "unfenced": 2, - "unfolded": 3, - "unfounded": 3, - "unfunded": 3, - "Ungeheuer": 4, - "ungerer": 3, - "unguarded": 3, - "unhedged": 2, - "unheralded": 4, - "unhinged": 2, - "unintended": 4, - "unionfed": 3, - "uniroyal": 4, - "unmanage": 3, - "unmanaged": 3, - "unnoticed": 3, - "unpayable": 4, - "unplaced": 2, - "unprincipled": 4, - "unreality": 5, - "unrealized": 4, - "unrecorded": 4, - "unruffled": 3, - "unscathed": 2, - "unshackled": 3, - "untouched": 2, - "untroubled": 3, - "unwavering": 4, - "upended": 3, - "upstage": 2, - "upstaged": 2, - "Ural": 2, - "urges": 2, - "Urquart": 2, - "uruguayan": 4, - "usage": 2, - "usages": 3, - "uses": 2, - "uthe": 1, - "utilizes": 4, - "Uttar": 2, - "utterances": 4, - "uyeda": 3, - "uyehara": 4, - "uyeno": 3, - "Uzis": 2, - "vacaville": 3, - "valeo": 3, - "valle": 1, - "valleau": 2, - "vallely": 2, - "valles": 1, - "vallette": 2, - "valve": 1, - "valves": 1, - "vanasse": 2, - "vandamme": 2, - "vanderslice": 3, - "vandewalle": 3, - "vanhorne": 2, - "vannguyen": 3, - "vannice": 2, - "vanscoyoc": 3, - "vantage": 2, - "vantages": 3, - "variances": 4, - "varnes": 1, - "varves": 1, - "vases": 2, - "vaske": 1, - "vaudeville": 2, - "vaxes": 2, - "vedette": 2, - "veillette": 2, - "velayati": 4, - "venereal": 4, - "venice": 2, - "venne": 1, - "venturesome": 3, - "verbiage": 3, - "verges": 2, - "verhage": 2, - "vermette": 2, - "verne": 1, - "vernes": 1, - "verrette": 2, - "versace": 2, - "versailles": 2, - "verville": 2, - "vestige": 2, - "vestiges": 3, - "vette": 1, - "vices": 2, - "video": 3, - "videodisk": 4, - "videodisks": 4, - "videogame": 4, - "videophone": 4, - "videos": 3, - "videotape": 4, - "videotaped": 4, - "videotapes": 4, - "videotaping": 5, - "videotex": 4, - "videotext": 4, - "videotron": 4, - "vienneau": 2, - "viet": 2, - "vigneau": 2, - "vigneault": 2, - "vignette": 2, - "vignettes": 2, - "village": 2, - "villages": 3, - "villareal": 4, - "ville": 1, - "villette": 2, - "vincelette": 3, - "vindictiveness": 4, - "vingmed": 2, - "vintage": 2, - "vintages": 3, - "violation": 4, - "violette": 3, - "viruses": 3, - "visage": 2, - "vitiello": 4, - "viverette": 3, - "viyella": 3, - "vizcaya": 3, - "voges": 2, - "voiceless": 2, - "voices": 2, - "volle": 1, - "voltage": 2, - "voltages": 3, - "voyage": 2, - "voyaged": 2, - "voyager": 3, - "voyagers": 3, - "voyages": 3, - "voyeur": 2, - "voyeurism": 4, - "vremya": 3, - "wadded": 2, - "waffled": 2, - "waffling": 2, - "wagering": 3, - "wages": 2, - "wakabayashi": 5, - "wallace": 2, - "walle": 1, - "walles": 1, - "wallpapering": 4, - "walruses": 3, - "wangled": 2, - "wantage": 2, - "wantages": 3, - "warded": 2, - "warehime": 2, - "warehouse": 2, - "warehousing": 3, - "warmongering": 4, - "warne": 1, - "warnes": 1, - "washburne": 2, - "wasmer": 3, - "waste": 1, - "wasteful": 2, - "wastes": 1, - "watches": 2, - "waterbed": 3, - "waterborne": 3, - "watsonville": 3, - "wavering": 3, - "waxes": 2, - "Wayans": 2, - "waynesville": 2, - "wedded": 2, - "wedges": 2, - "weisse": 1, - "welborne": 2, - "welded": 2, - "welle": 1, - "welles": 1, - "wentzville": 2, - "wernette": 2, - "wesleyan": 3, - "westburne": 2, - "westfaelisches": 4, - "weyand": 2, - "weyandt": 2, - "weyant": 2, - "whampoa": 3, - "wheezes": 2, - "whiteness": 2, - "whiteside": 2, - "whitesides": 2, - "whittling": 2, - "wholesome": 2, - "wicked": 2, - "wickedly": 3, - "wielded": 2, - "wilbourne": 2, - "willabelle": 3, - "willamette": 3, - "wille": 1, - "willes": 1, - "willette": 2, - "wilmette": 2, - "winborne": 2, - "winded": 2, - "winne": 1, - "winterbourne": 3, - "wion": 2, - "witches": 2, - "wobbled": 2, - "woeste": 1, - "wolle": 1, - "wolves": 1, - "worded": 2, - "workplace": 2, - "workplaces": 3, - "wounded": 2, - "wrangled": 2, - "wreckage": 2, - "wretched": 2, - "wretchedly": 3, - "wrinkled": 2, - "wristwatches": 3, - "wyand": 2, - "wyant": 2, - "wyatt": 2, - "wyeth": 2, - "wynne": 1, - "wythe": 1, - "xinhua": 3, - "Yanayev": 3, - "yardage": 2, - "yasuyoshi": 4, - "yelle": 1, - "yeo": 2, - "yeses": 2, - "yeske": 1, - "yevette": 2, - "yielded": 2, - "ying": 1, - "yinger": 2, - "yodice": 2, - "yohe": 2, - "yokoyama": 4, - "yoneyama": 4, - "yourselves": 2, - "youville": 2, - "yuille": 1, - "yvette": 2, - "yvonne": 2, - "zanoyan": 3, - "zaske": 1, - "zaslavskaya": 4, - "zayac": 2, - "zayas": 2, - "zeebrugge": 3, - "zegeer": 2, - "zelaya": 3, - "zelle": 1, - "zeoli": 3, - "zeos": 2, - "zieske": 1, - "zion": 2, - "zionism": 4, - "zionist": 3, - "zionists": 3, - "zions": 2, - "zises": 2, - "ziyad": 2, - "ziyang": 2, - "zoologist": 4, - "zoology": 4, - "zornes": 1 -} diff --git a/testdata/title.json b/testdata/title.json deleted file mode 100644 index 63c552f..0000000 --- a/testdata/title.json +++ /dev/null @@ -1,262 +0,0 @@ -[ - { - "input": "follow step-by-step instructions", - "expect": "Follow Step-by-Step Instructions" - }, - { - "input": "follow step-BY-step instructions", - "expect": "Follow Step-by-Step Instructions" - }, - { - "input": "this sub-phrase is nice", - "expect": "This Sub-Phrase Is Nice" - }, - { - "input": "catchy title: a subtitle", - "expect": "Catchy Title: A Subtitle" - }, - { - "input": "catchy title: \"a quoted subtitle\"", - "expect": "Catchy Title: \"A Quoted Subtitle\"" - }, - { - "input": "catchy title: “‘a twice quoted subtitle’”", - "expect": "Catchy Title: “‘A Twice Quoted Subtitle’”" - }, - { - "input": "\"a title inside double quotes\"", - "expect": "\"A Title Inside Double Quotes\"" - }, - { - "input": "all words capitalized", - "expect": "All Words Capitalized" - }, - { - "input": "small words are for by and of lowercase", - "expect": "Small Words Are for by and of Lowercase" - }, - { - "input": "a small word starts", - "expect": "A Small Word Starts" - }, - { - "input": "a small word it ends on", - "expect": "A Small Word It Ends On" - }, - { - "input": "do questions work?", - "expect": "Do Questions Work?" - }, - { - "input": "multiple sentences. more than one.", - "expect": "Multiple Sentences. More Than One." - }, - { - "input": "Ends with small word of", - "expect": "Ends With Small Word Of" - }, - { - "input": "double quoted \"inner\" word", - "expect": "Double Quoted \"Inner\" Word" - }, - { - "input": "single quoted 'inner' word", - "expect": "Single Quoted 'Inner' Word" - }, - { - "input": "fancy double quoted “inner” word", - "expect": "Fancy Double Quoted “Inner” Word" - }, - { - "input": "fancy single quoted ‘inner’ word", - "expect": "Fancy Single Quoted ‘Inner’ Word" - }, - { - "input": "this vs. that", - "expect": "This vs. That" - }, - { - "input": "this vs that", - "expect": "This vs That" - }, - { - "input": "this v. that", - "expect": "This v. That" - }, - { - "input": "this v that", - "expect": "This v That" - }, - { - "input": "catchy title: substance subtitle", - "expect": "Catchy Title: Substance Subtitle" - }, - { - "input": "have you read “The Lottery”?", - "expect": "Have You Read “The Lottery”?" - }, - { - "input": "Drink this piña colada while you listen to ænima", - "expect": "Drink This Piña Colada While You Listen to Ænima" - }, - { - "input": "don't break", - "expect": "Don't Break" - }, - { - "input": "we keep NASA capitalized", - "expect": "We Keep NASA Capitalized" - }, - { - "input": "leave Q&A unscathed", - "expect": "Leave Q&A Unscathed" - }, - { - "input": "your hair[cut] looks (nice)", - "expect": "Your Hair[cut] Looks (Nice)" - }, - { - "input": "keep that colo(u)r", - "expect": "Keep That Colo(u)r" - }, - { - "input": "capitalize hyphenated words on-demand", - "expect": "Capitalize Hyphenated Words On-Demand" - }, - { - "input": "take them on: special lower cases", - "expect": "Take Them On: Special Lower Cases" - }, - { - "input": "Notes and observations regarding Apple’s announcements from ‘The Beat Goes On’ special event", - "expect": "Notes and Observations Regarding Apple’s Announcements From ‘The Beat Goes On’ Special Event" - }, - { - "input": "a title and/or string", - "expect": "A Title and/or String" - }, - { - "input": "dance with me/let’s face the music and dance", - "expect": "Dance With Me/Let’s Face the Music and Dance" - }, - { - "input": "34th 3rd 2nd", - "expect": "34th 3rd 2nd" - }, - { - "input": "Q&A with steve jobs: 'that's what happens in technology'", - "expect": "Q&A With Steve Jobs: 'That's What Happens in Technology'" - }, - { - "input": "What is AT&T's problem?", - "expect": "What Is AT&T's Problem?" - }, - { - "input": "Apple deal with AT&T falls through", - "expect": "Apple Deal With AT&T Falls Through" - }, - { - "input": "The SEC's Apple probe: what you need to know", - "expect": "The SEC's Apple Probe: What You Need to Know" - }, - { - "input": "The SEC's Apple probe: what you need to know", - "expect": "The SEC's Apple Probe: What You Need to Know" - }, - { - "input": "'by the Way, small word at the start but within quotes.'", - "expect": "'By the Way, Small Word at the Start but Within Quotes.'" - }, - { - "input": "Small word at end is nothing to be afraid of", - "expect": "Small Word at End Is Nothing to Be Afraid Of" - }, - { - "input": "Starting Sub-Phrase With a Small Word: a Trick, Perhaps?", - "expect": "Starting Sub-Phrase With a Small Word: A Trick, Perhaps?" - }, - { - "input": "Sub-Phrase With a Small Word in Quotes: 'a Trick, Perhaps?'", - "expect": "Sub-Phrase With a Small Word in Quotes: 'A Trick, Perhaps?'" - }, - { - "input": "Starting a Hyphen Delimited Sub-Phrase With a Small Word - a Trick, Perhaps?", - "expect": "Starting a Hyphen Delimited Sub-Phrase With a Small Word - A Trick, Perhaps?" - }, - { - "input": "Hyphen Delimited Sub-Phrase With a Small Word in Quotes - 'a Trick, Perhaps?'", - "expect": "Hyphen Delimited Sub-Phrase With a Small Word in Quotes - 'A Trick, Perhaps?'" - }, - { - "input": "Snakes on a Plane - The TV Edit - The Famous Line", - "expect": "Snakes on a Plane - The TV Edit - The Famous Line" - }, - { - "input": "Starting an Em Dash Delimited Sub-Phrase With a Small Word — a Trick, Perhaps?", - "expect": "Starting an Em Dash Delimited Sub-Phrase With a Small Word — A Trick, Perhaps?" - }, - { - "input": "Em Dash Delimited Sub-Phrase With a Small Word in Quotes — 'a Trick, Perhaps?'", - "expect": "Em Dash Delimited Sub-Phrase With a Small Word in Quotes — 'A Trick, Perhaps?'" - }, - { - "input": "Snakes on a Plane — The TV Edit — The Famous Line", - "expect": "Snakes on a Plane — The TV Edit — The Famous Line" - }, - { - "input": "\"Nothing to Be Afraid of?\"", - "expect": "\"Nothing to Be Afraid Of?\"" - }, - { - "input": "a thing", - "expect": "A Thing" - }, - { - "input": "2lmc Spool: 'gruber on OmniFocus and vapo(u)rware'", - "expect": "2lmc Spool: 'Gruber on OmniFocus and Vapo(u)rware'" - }, - { - "input": "reading between the lines of steve jobs’s ‘thoughts on music’", - "expect": "Reading Between the Lines of Steve Jobs’s ‘Thoughts on Music’" - }, - { - "input": "seriously, ‘repair permissions’ is voodoo", - "expect": "Seriously, ‘Repair Permissions’ Is Voodoo" - }, - { - "input": "generalissimo francisco franco: still dead; kieren McCarthy: still a jackass", - "expect": "Generalissimo Francisco Franco: Still Dead; Kieren McCarthy: Still a Jackass" - }, - { - "input": "O'Reilly should be untouched", - "expect": "O'Reilly Should Be Untouched" - }, - { - "input": "Mr McTavish went to MacDonalds", - "expect": "Mr McTavish Went to MacDonalds" - }, - { - "input": "this shouldn't\nget mangled", - "expect": "This Shouldn't\nGet Mangled" - }, - { - "input": "mac mc MAC MC machine", - "expect": "Mac Mc MAC MC Machine" - }, - { - "input": "foo bar 5th st", - "expect": "Foo Bar 5th St" - }, - { - "input": "hmm ... this is interesting...", - "expect": "Hmm ... This Is Interesting..." - }, - { - "input": "a “[“New Entity”],” an [Institution] and [Institution].", - "expect": "A “[“New Entity”],” an [Institution] and [Institution]." - }, - { - "input": "This Agreement, dated [DATE] (the “Effective Date”) for Design Services (the “Agreement”) is between [DESIGNER NAME], of [DESIGNER COMPANY](“Designer”), and [CLIENT NAME], of [CLIENT COMPANY] (“Client”) (together known as the “Parties”), for the performance of said Design Services and the production of Deliverables, as described in Schedule A, attached hereto and incorporated herein by reference.", - "expect": "This Agreement, Dated [DATE] (The “Effective Date”) for Design Services (The “Agreement”) Is Between [DESIGNER NAME], of [DESIGNER COMPANY](“Designer”), and [CLIENT NAME], of [CLIENT COMPANY] (“Client”) (Together Known as the “Parties”), for the Performance of Said Design Services and the Production of Deliverables, as Described in Schedule A, Attached Hereto and Incorporated Herein by Reference." - } -] \ No newline at end of file diff --git a/testdata/treebank_sents.json b/testdata/treebank_sents.json index 522d858..8ed0020 100644 --- a/testdata/treebank_sents.json +++ b/testdata/treebank_sents.json @@ -99,7 +99,6 @@ ".", "Next sentence.", "I never meant that.... She left the store.", - "I wasn\u2019t really ... well, what I mean...see .", ".", ".", "what I'm saying, the thing is .", @@ -118,5 +117,5 @@ ".", ".", "Hello world.Today is Tuesday.Mr.", - "Smith went to the store and bought 1,000.That is a lot." -] \ No newline at end of file + "Smith went to the store and bought 1,000 things." +] diff --git a/testdata/treebank_tags.json b/testdata/treebank_tags.json new file mode 100644 index 0000000..ac662ad --- /dev/null +++ b/testdata/treebank_tags.json @@ -0,0 +1 @@ +["NNP", "NNP", ",", "CD", "NNS", "JJ", ",", "MD", "VB", "DT", "NN", "IN", "DT", "JJ", "NN", "NNP", "CD", ".", "NNP", "NNP", "VBZ", "NN", "IN", "NNP", "NNP", ",", "DT", "NNP", "VBG", "NN", ".", "NNP", "NNP", ",", "CD", "NNS", "JJ", "CC", "JJ", "NN", "IN", "NNP", "NNP", "NNP", "NNP", ",", "VBD", "VBN", "-NONE-", "DT", "JJ", "NN", "IN", "DT", "JJ", "JJ", "NN", ".", "DT", "NN", "IN", "NN", "RB", "VBN", "-NONE-", "-NONE-", "TO", "VB", "NNP", "NN", "NNS", "VBZ", "VBN", "DT", "JJ", "NN", "IN", "NN", "NNS", "IN", "DT", "NN", "IN", "NNS", "VBN", "-NONE-", "TO", "PRP", "RBR", "IN", "CD", "NNS", "IN", ",", "NNS", "VBD", "-NONE-", "-NONE-", ".", "DT", "NN", "NN", ",", "NN", ",", "VBZ", "RB", "JJ", "IN", "PRP", "VBZ", "DT", "NNS", ",", "IN", "RB", "JJ", "NNS", "TO", "PRP", "VBG", "NNS", "WDT", "-NONE-", "VBP", "RP", "NNS", "JJ", ",", "NNS", "VBD", "-NONE-", "-NONE-", ".", "NNP", "NNP", ",", "DT", "NN", "IN", "JJ", "JJ", "NNP", "NNP", "WDT", "-NONE-", "VBZ", "NNP", "NNS", ",", "VBD", "VBG", "NN", "IN", "PRP$", "NN", "NN", "NNS", "IN", "CD", ".", "IN", "JJ", "NNS", "VBD", "VBN", "-NONE-", "RBR", "IN", "DT", "NN", "IN", ",", "DT", "JJS", "NNS", "VBP", "IN", "NN", "POS", "NNP", "NNP", "NNP", "IN", "NNP", ",", "DT", "NN", "JJ", "-NONE-", "TO", "VB", "JJ", "NN", "TO", "DT", "NN", ".", "DT", "NNP", "NN", "VBD", ",", "``", "DT", "VBZ", "DT", "JJ", "NN", ".", "PRP", "VBP", "VBG", "IN", "NNS", "IN", "IN", "NN", "VBD", "IN", "NN", "VBG", "DT", "JJ", "NNS", ".", "EX", "VBZ", "DT", "NN", "IN", "PRP$", "NNS", "RB", ".", "''", "DT", "NNP", "CC", "DT", "NNS", "WP", "-NONE-", "VBD", "DT", "NNS", "VBD", "JJ", "IN", "DT", "NN", "IN", "NNS", "IN", "DT", "NNP", "NNS", ".", "``", "PRP", "VBP", "DT", "JJ", "NN", "IN", "IN", "NNS", "VBP", "IN", "NN", ",", "''", "VBD", "-NONE-", "NNP", "NNP", "NNP", "IN", "NNP", "POS", "NNP", "NNP", "NNP", ".", "NNP", "NNP", "VBD", "DT", "NN", "IN", "NNS", "IN", "DT", "NNP", "NNP", "NNP", "CC", "DT", "JJ", "NNS", "IN", "NNP", "NNP", "CC", "NNP", "NNP", ".", "DT", "NNP", "NN", "VBD", "-NONE-", "NN", "VBD", "VBN", "-NONE-", "IN", "``", "RB", "JJ", "NNS", "''", "IN", "-NONE-", "VBG", "NN", "IN", "DT", "NNS", "IN", "DT", "JJ", "CD", "CC", "VBN", "-NONE-", "IN", "DT", "JJ", "NN", "IN", "NN", "IN", "CD", ".", "IN", "CD", "TO", "CD", ",", "CD", "CD", "NNP", "NNS", "IN", "DT", "NNS", "VBD", "VBN", "-NONE-", ",", "DT", "NN", "VBD", "-NONE-", "-NONE-", ".", "IN", "CD", "NNS", "WP", "-NONE-", "VBD", "RB", "IN", "DT", "NN", ",", "CD", "-NONE-", "VBP", "VBN", ":", "JJ", "IN", "CD", "NNS", "DT", "VBN", "NN", ".", "CD", "IN", "DT", "CD", "VBG", "NNS", "VBP", "JJ", "NNS", ",", "VBG", "CD", "IN", "RB", "VBN", "NN", ".", "DT", "NN", "IN", "CD", "NNS", "IN", "JJ", "NN", ",", "NN", "NN", "CC", "NN", "VBD", "RB", "JJR", "IN", "-NONE-", "VBN", "-NONE-", ",", "DT", "NNS", "VBD", "-NONE-", "-NONE-", ".", "``", "DT", "NN", "NN", "VBZ", "DT", "JJ", "NN", "IN", "DT", "IN", "PRP", "WP", "-NONE-", "VBP", "JJ", "NNS", ",", "''", "VBD", "-NONE-", "NNP", "NNP", ".", "DT", "NN", "IN", "NN", "NN", "NNS", "IN", "DT", "NNS", "IN", "DT", "NNP", "NNP", ",", "NNP", ",", "NN", "NN", "VBZ", "-NONE-", "TO", "VB", "DT", "JJS", "IN", "DT", "NN", "NNS", "VBN", "-NONE-", "IN", "JJ", "VBN", "NNS", ",", "PRP", "VBD", "-NONE-", "-NONE-", ".", "DT", "NN", ",", "WDT", "-NONE-", "VBZ", "VBN", "-NONE-", "IN", "NNP", "CC", "NNP", "NNP", ",", "VBD", "IN", "NN", "-NONE-", "IN", "NN", "-NONE-", "TO", "VB", "DT", "NN", "NNS", ".", "DT", "NN", "RB", "MD", "VB", "DT", "WP", "-NONE-", "VBP", "IN", "DT", "NNP", "MD", "VB", "DT", "NN", "IN", "NN", "VBG", "NN", "RBR", "RB", "IN", "DT", "JJ", "NN", "IN", "NN", ",", "NN", ",", "VBN", "-NONE-", "IN", "JJS", "NNS", "CC", "JJ", "NNS", ",", "NNP", "NNP", "VBD", "-NONE-", "-NONE-", ".", "DT", "NNP", "VBZ", "CD", "IN", "DT", "JJ", "VBN", "NNS", "WDT", "-NONE-", "VBZ", "RB", "VB", "DT", "JJR", "NN", "IN", "NN", "IN", "DT", "JJ", ",", "JJ", "NNS", "JJ", "IN", "NN", "WDT", "-NONE-", "VBP", "VBN", "-NONE-", "IN", "NNS", ",", "VBG", "TO", "NNP", "NNP", "NNP", ",", "DT", "NN", "IN", "NN", "IN", "DT", "NNP", "IN", "NNP", "NNP", "IN", "NNP", ".", "RBR", "JJ", "NN", "NNS", "VBP", "JJ", "CC", "VBP", "RBR", "RB", "VBN", "-NONE-", "IN", "DT", "NN", ",", "NNP", "NNP", "VBD", "-NONE-", "-NONE-", ".", "IN", "NNP", ",", "DT", "NNP", "NNP", "NNP", "VBD", "DT", "JJ", "NN", "IN", "RB", "DT", "NNS", "IN", "NN", ".", "IN", "CD", ",", "RB", "DT", "VBG", "NNS", "IN", "JJ", "NN", "MD", "VB", "VBN", "-NONE-", ".", "IN", "CD", "NNS", "IN", "DT", "NN", "WDT", "-NONE-", "VBD", "NN", "IN", "DT", "NNP", "NNS", "VBD", "VBN", "-NONE-", "TO", "NN", "IN", "DT", "CD", ".", "NNS", "IN", "DT", "NN", "-NONE-", "VBD", "RB", "JJ", "WRB", "DT", "NN", "VBD", "VBN", "-NONE-", "-NONE-", ".", "NNS", "VBD", "JJ", "NN", "NNS", "IN", "DT", "VBN", "NN", "IN", "DT", "JJ", "NN", ",", "VBD", "RP", "NN", "CC", "NN", "NNS", "CC", "RB", "VBD", "DT", "JJ", "NNS", "IN", "DT", "NN", "VBN", "-NONE-", "-NONE-", "TO", "VB", "NNS", ".", "NNS", "VBD", "``", "NNS", "IN", "JJ", "NN", "''", "WDT", "-NONE-", "VBD", "IN", "NNS", "IN", "DT", "NN", ",", "RB", "IN", "NN", "NNS", "VBD", "DT", "NN", ".", "``", "EX", "VBZ", "DT", "NN", "IN", "DT", "IN", "DT", "NNS", "CC", "NNS", "VBD", "JJ", "NNS", ",", "''", "VBD", "-NONE-", "NNP", "NNP", ",", "NN", "NN", "IN", "JJ", "NNS", "IN", "NNP", "CC", "NNP", ".", "``", "CC", "PRP", "VBP", "-NONE-", "TO", "VB", "IN", "DT", "NNS", "VBD", "NN", "CD", "NNS", "IN", ".", "PRP", "VBZ", "DT", "NN", "IN", "PRP$", "NN", "NN", "NN", ".", "NNS", "IN", "JJ", "JJ", "NNS", "VBD", "-NONE-", "TO", "VB", ",", "IN", "NNS", "IN", "NN", "NNS", "VBP", "JJ", "NNS", "IN", "NN", "NNS", ".", "DT", "JJ", "JJ", "NN", "NN", "IN", "DT", "CD", "JJ", "NNS", "VBN", "-NONE-", "IN", "NNP", "POS", "NNP", "NNP", "NNP", "VBD", "DT", "NN", "IN", "DT", "NN", "NN", "TO", "CD", "NN", "IN", "CD", "NN", "IN", "DT", "NN", "VBD", "NNP", ".", "NN", "NNS", "VBP", "NN", "IN", "NNS", "CC", "IN", "DT", "JJ", "NN", "VBZ", "IN", "DT", "NN", ".", "JJ", "NN", "IN", "DT", "NNS", "POS", "NNS", "VBD", "IN", "DT", "NN", "TO", "CD", "NNS", ",", "DT", "JJS", "IN", "JJ", "NNP", ",", "VBG", "TO", "NNP", "POS", ".", "JJR", "NNS", "VBP", "VBN", "-NONE-", "TO", "VB", "VBG", "NN", "NNS", "IN", "PRP", "VBP", "NN", "NNS", "TO", "VB", "RB", "JJR", "NNS", "IN", "DT", "JJR", "NN", ".", "JJR", "NNS", "VBP", "VBN", "-NONE-", "DT", "NN", "IN", "VBG", "NNS", "IN", "NN", "NNS", "MD", "VB", "JJR", "NNS", "RB", ".", "DT", "JJ", "NN", "IN", "NNS", "JJ", "RB", "TO", "NNS", ",", "VBN", "IN", "DT", "-NONE-", "TO", "VB", "DT", "JJR", "NN", "IN", "DT", "NNS", "VBP", "DT", "NN", "RB", ",", "VBD", "DT", "JJ", "NN", "IN", "DT", "NN", ":", "CD", "NNS", ".", "RB", ",", "VBD", "-NONE-", "NNP", "NNP", "NNP", ",", "NN", "IN", "NNP", "NNP", "NNP", ",", "NNS", "``", "MD", "VB", "RP", "RB", "IN", "PRP", "VBP", "RP", "''", "IN", "IN", "JJ", "NNS", "IN", "JJ", "NN", "NNS", ".", "DT", "NN", "IN", "JJ", "NNP", "NNS", "VBN", "-NONE-", "IN", "NNP", "POS", "NN", ",", "IN", "NN", ",", "VBD", "TO", "CD", "NN", "IN", "CD", "NN", ".", "IN", "JJ", "NNS", "IN", "NNS", ",", "NNS", "VBP", "-NONE-", "TO", "VB", "NN", "IN", "NN", "NNS", ".", "NNS", "IN", "DT", "CD", "JJ", "NNS", "VBD", "IN", "$", "CD", "CD", "-NONE-", "IN", "DT", "JJS", "NN", ",", "TO", "$", "CD", "CD", "-NONE-", ".", "RB", ",", "NN", "NNS", "VBP", "JJ", "JJ", "NNS", "IN", "NN", "NNS", "MD", "VB", "NNS", "CC", "VB", "IN", "DT", "JJS", "NNS", ".", "DT", "JJ", "NN", "NNS", "VBP", "RB", "VBG", "RB", "IN", "CD", "NN", ".", "NNP", "NNP", "NNP", ",", "DT", "JJ", "NN", ",", "VBD", "DT", "JJ", "NN", "NN", "IN", "CD", "NN", "IN", "DT", "JJS", "NN", ",", "RB", "IN", "CD", "NN", "DT", "NN", "JJR", ".", "PRP", "VBZ", "RB", "IN", "JJ", "NNS", "RB", "CC", "VBZ", "RB", "VBG", "NN", "NNS", ",", "WDT", "-NONE-", "VBZ", "PRP$", "NN", ".", "DT", "JJ", "JJ", "JJ", "NN", "IN", "DT", "CD", "NNS", "VBD", "CD", "NN", ",", "RB", "IN", "CD", "NN", ".", "DT", "JJ", "JJ", "NN", "VBD", "TO", "DT", "JJ", "CD", "NN", "IN", "CD", "NN", ":", "DT", "JJ", "NN", "NN", "VBD", "TO", "DT", "JJ", "CD", "NN", "IN", "CD", "NN", ".", "NNP", "NNP", ",", "NN", "NN", "IN", "NNP", "NNP", "CC", "NNP", ",", "WDT", "-NONE-", "VBZ", "DT", "CD", "NN", "NN", "IN", "DT", "JJ", "NN", ",", "VBD", "VBN", "-NONE-", "DT", "NN", ".", "PRP", "VBZ", "NNP", "NNP", "NNP", ",", "RB", "DT", "NNP", "NNP", "NN", "NN", ",", "WP", "-NONE-", "VBD", ".", "NNP", "NNP", "VBZ", "CD", "IN", "NNP", "NNP", "POS", "CD", "NN", "NNS", ".", "NNP", "NNP", "NNP", "NNP", "VBD", "-NONE-", "NNS", "VBD", "PRP$", "NN", "IN", "NNP", "NNP", "NNP", "IN", "NNP", "IN", "$", "CD", "-NONE-", "DT", "NN", ",", "CC", "$", "CD", "CD", "-NONE-", ".", "DT", "NN", "VBG", "NN", "VBD", "-NONE-", "PRP", "VBZ", "-NONE-", "TO", "VB", "JJ", "NN", "CC", "VB", "DT", "NN", "IN", "NN", ".", "NNP", "NNP", "NNP", "VBD", "-NONE-", "PRP$", "NNP", "CC", "NNP", "NN", "VBD", "DT", "NN", "IN", "PRP$", "NNP", "NNP", "NNP", "TO", "NNP", "NNP", ".", "NNP", "IN", "$", "CD", "CD", "-NONE-", ".", "NNP", "VBZ", "DT", "JJ", "JJ", "VBG", "NN", "IN", "NNS", "IN", "DT", "JJ", "NN", "NN", ".", "NNP", "NNP", ",", "VBN", "-NONE-", "IN", "NNP", ",", "NNP", ",", "VBZ", "JJ", "JJ", "NNS", "NNS", ".", "PRP", "VBZ", "CD", "NNS", "CC", "VBZ", "JJ", "NN", "IN", "IN", "$", "CD", "CD", "-NONE-", ".", "DT", "JJ", "NN", "VBD", "NNS", "IN", "NNP", "NNS", "NNS", "IN", "NNP", "VBZ", "RB", "VBN", "DT", "NN", "IN", "NN", "NN", ".", "IN", "NNP", "VBZ", ",", "DT", "NN", "VBZ", "RB", "DT", "NN", "-NONE-", "TO", "VB", "JJ", "NN", "NNS", "IN", "DT", "NN", ",", "DT", "NNP", "VBD", "-NONE-", "-NONE-", ".", "DT", "NN", "POS", "NN", "NN", "VBD", "IN", "NN", "NNP", "TO", "$", "CD", "CD", "-NONE-", "IN", "$", "CD", "CD", "-NONE-", ".", "NN", "-NONE-", "-NONE-", "TO", "VB", "DT", "NN", "NN", "VBZ", "VBN", "-NONE-", "IN", "DT", "NN", "IN", "-NONE-", "VBG", "JJ", "NNS", ".", "DT", "NNP", "VBZ", "VBN", "-NONE-", "TO", "VB", "DT", "NN", "TO", "$", "CD", "CD", "-NONE-", ",", "CC", "DT", "NNP", "VBZ", "RB", "VBN", "-NONE-", "TO", "VB", "IN", "JJ", "NN", "IN", "DT", "JJS", ".", "DT", "NNP", "VBD", "-NONE-", "DT", "NNP", "MD", "VB", "IN", "NNP", "CD", "IN", "NNP", "VBZ", "RB", "VB", "IN", "RB", ".", "NNP", "NNP", "NNP", "VBD", "VBN", "-NONE-", "JJ", "NN", "NN", "-NONE-", "CC", "JJ", "NN", "-NONE-", "IN", "DT", "NNP", "NNS", "CC", "NN", "NN", "IN", "JJ", "NN", "NN", "NNP", "NNP", "NNP", ".", "IN", "DT", "JJ", "NN", "PRP", "MD", "VB", "NNP", "POS", "NNP", "NNS", ",", "NN", ",", "NNS", "CC", "NN", "NNS", ".", "RB", ",", "NNP", "NNP", ",", "CD", "NNS", "JJ", ",", "VBD", "JJ", "NN", "NN", "IN", "NNP", "NNP", "POS", "NNP", "NN", ".", "PRP", "VBD", "VBN", "DT", "NNS", "CC", "NN", "NN", "IN", "NNP", "IN", "CD", "NNS", ".", "WRB", "PRP", "VBZ", "NN", "IN", "PRP$", "JJ", "NN", "-NONE-", ",", "DT", "NN", "POS", "VBG", "NNS", "RB", "VBP", "RP", "TO", "DT", "JJ", "NNS", "IN", "NN", "NNS", "IN", "NNP", "NNP", "CC", "NNP", "NNP", ".", "RB", "DT", "NN", ".", "DT", "NNP", "NNP", "IN", "NNP", "VBD", "IN", "DT", "NNP", "NN", "IN", "NNP", "IN", "PRP$", "NN", "NN", "NN", ".", "CC", "DT", "NN", "VBD", "-NONE-", "TO", "VB", "PRP$", "NNS", "JJR", "IN", "NN", "CC", "NN", "NNS", "IN", "NN", "NNS", ".", "DT", "NN", ",", "IN", "NN", ":", "-NONE-", "TO", "VB", "TO", "CD", "JJ", "NN", "NNS", "IN", "DT", "NN", "IN", "DT", "NNP", "NNP", "VBZ", "RB", "RB", "JJ", "IN", "DT", ",", "IN", "PRP", "VBZ", "DT", "JJ", "NN", "-NONE-", "IN", "DT", "NN", "TO", "VB", "-NONE-", ".", "IN", "DT", "VBG", "NN", "IN", "DT", "NN", "VBD", "-NONE-", "NNS", "IN", "NNS", "IN", "NNP", "NNP", "CC", "NNP", ",", "IN", "IN", "JJR", "NNS", "IN", "NNP", "NNP", "CC", "DT", "NNP", "NNP", "NNP", "NNP", ".", "IN", "NNS", ",", "DT", "NNS", "VBD", "NNP", "NNP", "NNP", "NNP", "NNP", "IN", "DT", "NN", "IN", "DT", "NNP", "NNP", "NNP", "CC", "DT", "NN", "NN", "NNP", "NNP", ".", "NN", "CC", "NN", "VBD", ".", "DT", "JJ", "NN", ",", "IN", "DT", "NN", "NN", ",", "NNS", "IN", "NNS", "CC", "PRP$", "NNS", "VBD", "TO", "DT", "NNP", "NNP", "NNP", ",", "-NONE-", "JJ", "IN", "NN", "CC", "JJ", "NNS", ".", "DT", "NN", "MD", "RB", "VB", "PRP", ",", "IN", "DT", "NN", "NN", "VBD", "DT", "JJ", "NNS", ".", "DT", "NN", "NN", "VBD", "VBN", "-NONE-", "IN", "DT", "NN", ",", "WRB", "NN", "CC", "NNS", "VBP", "VBN", "-NONE-", "TO", "JJ", "NNS", "-NONE-", ".", "RB", ",", "IN", "DT", "NNS", "POS", "NN", ",", "DT", "NN", "VBD", "RP", "CD", "NNS", ",", "NNS", "CC", "RB", "DT", "JJ", "NNP", "CD", "NN", "IN", "DT", "JJ", "NN", "NN", ".", "IN", "DT", "NN", ",", "NNP", "CD", "NNS", "VBD", "IN", "NNS", "IN", "DT", "NNS", "CC", "NNS", ".", "-NONE-", "DT", "NNS", ",", "DT", "NNS", "VBD", "RP", "-NONE-", "PRP", "RB", "VBD", "NN", "IN", "PRP$", "NNS", "IN", "DT", "NN", "POS", "NN", "CC", "CD", ".", "RB", "NN", ",", "DT", "NNS", "VBD", "RP", "DT", "JJ", "NNS", "IN", "DT", "NN", "IN", "-NONE-", "VBG", "DT", "NNS", "RB", ".", "DT", "NN", ",", "PRP", "VBD", "IN", "NN", "CC", "NN", ":", "DT", "NN", "RB", ".", "IN", "DT", "NNS", "CC", "NNS", "IN", "DT", "VBN", "NNP", "NNP", "NN", ",", "CD", "IN", "DT", "JJS", "NNS", "IN", "NN", "VBD", "PRP", "NNP", "NN", "NN", ",", "NN", "NN", ",", "NN", "NN", "CC", "JJ", "NN", "IN", "DT", "NN", "NN", ".", "-NONE-", "VBG", "DT", "JJ", ":", "CC", "JJ", ":", "NN", "WRB", "PRP", "VBP", "CD", "-NONE-", ",", "DT", "NNS", "VBD", "DT", "NNS", "DT", "JJ", "NN", ".", "JJR", "IN", "DT", "JJ", "NNS", "VBP", "-NONE-", "DT", "JJ", "NN", "VBZ", "PRP", "TO", "VB", "TO", "DT", "NN", "NN", "IN", "JJ", "NNS", ".", "CC", "IN", "RB", ",", "PRP", "VBP", "VBG", "RB", "TO", "PRP$", "NN", "NN", ":", "NNP", "IN", "NNP", ".", "NNP", "NNP", "VBD", "DT", "NN", "NN", "IN", "$", "CD", "CD", "-NONE-", "IN", "NNP", ",", "-NONE-", "VBG", "DT", "NN", "POS", "JJ", "NN", ",", "VBG", "TO", "NN", "NNS", "VBD", "-NONE-", "NNP", ".", "JJ", "NNS", "IN", "DT", "NNP", "CC", "NNP", "NNP", "VBD", "DT", "NN", "NN", "IN", "NNP", ",", "DT", "JJ", "JJ", "NN", "DT", "NN", ",", "-NONE-", "VBG", "DT", "NN", "IN", "NNP", "NNP", "POS", "JJ", "NN", ".", "NNS", "IN", "NNP", "VBD", "IN", "$", "CD", "CD", "-NONE-", ",", "DT", "JJ", "CD", "NN", "NN", "IN", "DT", "NN", "JJR", ",", "IN", "NNS", "VBD", "RB", "TO", "$", "CD", "CD", "-NONE-", ",", "RB", "CD", "NN", "IN", "JJ", "NNP", ".", "NNP", "NNP", "POS", "JJ", "NN", ",", "WDT", "-NONE-", "VBD", "IN", "CD", ",", "VBD", "DT", "NN", "IN", "IN", "VBN", "NN", "NNS", ",", "NN", "NNS", "CC", "JJ", "NNS", ".", "NN", "NNS", "VBD", "-NONE-", "NNS", "IN", "DT", "NN", "IN", "DT", "NN", "MD", "VB", "IN", "DT", "NN", "NN", "IN", "$", "CD", "CD", "-NONE-", ".", "IN", "DT", "JJ", "NN", ",", "NNP", "NNP", "VBZ", "VBN", "DT", "NN", "NN", "IN", "$", "CD", "CD", "-NONE-", "IN", "IN", "DT", "NN", ".", "IN", "NNP", "TO", "NNP", ",", "DT", "NN", "POS", "VBN", "NNS", "VBD", "CD", "NN", "IN", "DT", "JJ", "NN", "JJ", "NN", "TO", "$", "CD", "CD", "-NONE-", ".", "NNS", "VBD", "IN", "$", "CD", "CD", "-NONE-", ",", "RB", "CD", "NN", ".", "NNP", ",", "-NONE-", "VBG", "-NONE-", "TO", "VB", "NN", "IN", "JJ", "NNP", "NN", ",", "VBD", "JJ", "NN", "NNS", "IN", "CD", "CC", "VBD", "-NONE-", "PRP", "MD", "VB", "DT", "JJ", "NN", "NN", "IN", "NNS", ".", "DT", "JJ", "NN", "NN", "IN", "NNP", ",", "DT", "NN", "IN", "DT", "NNP", "NNP", "NNP", ",", "VBZ", "DT", "JJ", "NN", "NN", "-NONE-", "DT", "NN", "VBZ", "VBN", "NNS", "-NONE-", "IN", "CD", "NNS", ".", "NNS", "WDT", "-NONE-", "VBP", "NNS", "NNS", "IN", "-NONE-", "VBG", "CC", "VBG", "NN", "NN", "VBP", "VBN", "JJ", "NNS", "IN", "DT", "NN", "NNS", "CC", "VBP", "DT", "JJ", "NN", "IN", "NNP", ",", "NNP", "NNP", "NNP", "POS", "NNP", "NN", ",", "CC", "NNP", "NNP", "NNP", "POS", "NNP", "NNP", "CC", "NNP", "NNP", ".", "NNP", "NNP", ",", "RB", "VBN", "-NONE-", "NNP", "NN", ",", "VBD", "-NONE-", "NNP", "POS", "NN", "NNS", "MD", "VB", "CD", "NN", "IN", "NNP", ".", "DT", "JJ", ",", "JJ", "NN", "IN", "NNP", "MD", "VB", "$", "CD", "-NONE-", ".", "IN", "NNP", ",", "NNP", "NN", "VBD", "PRP$", "VBN", "NN", "NN", "NN", "IN", "CD", "IN", "-NONE-", "RB", "VBG", "NN", "NN", "NNS", ":", "IN", "DT", "JJR", "NN", "NN", ",", "NNP", "POS", "NN", "NN", "-NONE-", "MD", "VB", "RB", "CD", "NN", "JJR", "IN", "NN", ":", "DT", "JJ", "NN", "IN", "NNP", "VBZ", "IN", "$", "CD", "-NONE-", ".", "NNP", "NNP", "VBZ", "RB", "-NONE-", "TO", "VB", "PRP$", "CD", "NN", "NNS", ".", "NNP", "VBD", "-NONE-", "PRP", "MD", "VB", "DT", "NNP", "NNP", "NNP", ",", "WDT", "-NONE-", "VBZ", "NN", "NNS", "-NONE-", "TO", "NNS", "IN", "``", "NN", "NN", ".", "''", "DT", "NN", "MD", "VB", "IN", "``", "NN", "NNS", "''", "NNS", "WP", "IN", "CD", "-NONE-", "VBP", "CC", "VBP", "PRP$", "CD", "NN", ",", "RB", "RB", "IN", "PRP", "VBD", "$", "CD", "-NONE-", "IN", "CD", "CC", "$", "CD", "-NONE-", "IN", "CD", ".", "NNP", "NNP", "VBD", "-NONE-", "DT", "NN", "VBZ", "RB", "DT", "NN", "-NONE-", "TO", "VB", "RP", "DT", "NN", "IN", "NN", "NNS", "IN", "DT", "JJ", "CD", "NNS", "IN", "CD", ":", "NNP", "POS", "NN", "NNS", "VBD", "CD", ",", "DT", "NN", "IN", "CD", "NN", "IN", "JJ", "NN", ",", "VBG", "TO", "NNP", "NNP", "NNP", ".", "``", "WP", "-NONE-", "VBZ", "VBZ", "WP", "NNS", "VBP", "VBG", "-NONE-", "IN", "NN", ",", "CC", "IN", "DT", "NN", "PRP", "VBP", "VBG", "RB", "DT", "NN", ",", "''", "VBD", "-NONE-", "NNP", "NNP", ".", "DT", "NNP", "CC", "NNP", "NNP", "VBP", "VBN", "VBG", "NN", "IN", "JJ", "NNS", "IN", "JJ", "NN", "IN", "JJ", "NNS", "TO", "NNS", ",", "JJ", "IN", "NNS", "CC", "NNS", ".", "RB", ",", "NN", "IN", "DT", "JJ", "CD", "NNS", "VBD", "NN", "NNS", "RB", ".", "VBG", "TO", "NNP", "NNP", "IN", "NNP", ",", "NNP", ",", "DT", "JJS", "RB", ",", "VBD", "JJ", "NN", "IN", "CD", ",", "DT", "NN", "IN", "CD", "NN", ".", "NNP", "POS", "NN", "IN", "DT", "JJ", "CD", "NNS", "IN", "CD", "VBD", "CD", ",", "-NONE-", "JJ", "IN", "DT", "JJ", "NN", "JJ", "NN", ".", "NNP", "NNP", "POS", "NN", "IN", "DT", "JJ", "NN", "VBD", "CD", ",", "RB", "CD", "NN", ".", "NNP", "NNP", "NNP", "NNP", "VBD", "IN", "IN", "DT", "NN", "IN", "NNP", "NNP", "NNP", "IN", "NNP", "NNP", ",", "-NONE-", "VBG", "IN", "DT", "NNS", "VBD", "RB", "JJ", "-NONE-", "CC", "DT", "JJ", "NN", "RB", "RB", "IN", "DT", "NN", "-NONE-", "-NONE-", "TO", "VB", "DT", "JJR", "NN", ".", "DT", "NN", "VBZ", "NNP", "NNP", "NNP", "CC", "NNP", "NNP", "IN", "DT", "VBG", "JJ", "NNS", "IN", "NNP", "IN", "NNP", "NNP", ",", "WDT", "-NONE-", "RB", "VBZ", "VBN", "DT", "JJ", "NN", "NN", "IN", "NN", "CD", "NN", "NNS", "IN", "WDT", "PRP", "MD", "VB", "DT", "JJ", "NN", "-NONE-", ".", "NNP", "NNP", "NNP", ",", "VBN", "-NONE-", "IN", "NNP", ",", "NNP", ",", "VBD", "VBN", "$", "CD", "CD", "-NONE-", "-NONE-", "-NONE-", "TO", "VB", "NNP", "IN", "NNP", "NNP", ",", "RB", "IN", "DT", "$", "CD", "CD", "-NONE-", "NN", "-NONE-", "NNP", "NNP", "NNS", "-NONE-", "IN", "PRP$", "NN", "CC", "DT", "$", "CD", "CD", "-NONE-", "-NONE-", "NNP", "VBZ", "-NONE-", "PRP$", "NN", "VBZ", "IN", "-NONE-", ".", "NNP", "NNP", "VBZ", "VBN", "-NONE-", "IN", "NNP", "NNP", ",", "NNP", ",", "CC", "NNP", "VBZ", "VBN", "-NONE-", "IN", "NNP", ",", "NNP", ".", "NNP", "IN", "NNP", "NNP", ",", "NNP", ",", "NNP", ",", "VBZ", "PRP$", "JJ", "NN", "NN", "IN", "IN", "$", "CD", "CD", "-NONE-", ".", "NNP", "NNP", ",", "NN", "-NONE-", "CC", "JJ", "JJ", "NN", "-NONE-", "IN", "NNP", "NNP", "NNP", ",", "VBD", "-NONE-", "DT", "NN", "POS", "NN", "IN", "NN", "MD", "VB", "IN", "PRP", "VBD", "DT", "JJR", "NN", "CC", "PRP$", "NNS", "VBN", "-NONE-", "TO", "NNP", "IN", "NNP", "NNP", ":", "JJ", "IN", "NN", "IN", "NN", "NN", "CC", "VBN", "NN", "NNS", ":", "VBD", "RB", "VB", "JJ", ".", "``", "WRB", "PRP", "VBD", "-NONE-", "VBG", "PRP$", "NN", "-NONE-", ",", "DT", "NNS", "VBD", "JJ", "CC", "JJ", "IN", "DT", "JJ", "CD", "NNS", ",", "CC", "DT", "NNS", "VBD", "DT", "JJ", "NN", "IN", ".", "WDT", "VBD", "RB", "-NONE-", "-NONE-", "TO", "VB", "-NONE-", ",", "''", "PRP", "VBD", "-NONE-", ".", "NNP", "NNP", "RB", "VBD", "IN", "JJ", "NNS", "RB", "VBN", "NNP", "NNP", "NNP", ".", "DT", "NN", "WP", "-NONE-", "VBZ", "NNP", "IN", "NNP", "NNP", ",", "IN", "PRP", "VBZ", "IN", "NN", "NNS", "PRP$", "NNS", "MD", "VB", "IN", "DT", "JJS", "IN", "DT", "NN", ",", "PRP", "VBD", "-NONE-", "-NONE-", ".", "``", "DT", "VBZ", "NN", ":", "PRP", "VBD", "RB", "DT", "CD", "IN", "DT", "NN", "NNS", "''", "WDT", "-NONE-", "VBD", "TO", "DT", "NN", "POS", "NN", "-NONE-", "TO", "VB", "IN", "DT", "NN", ",", "PRP", "VBD", "-NONE-", "-NONE-", ".", "NNP", "NNP", "NNP", "IN", "NNP", "NNP", ",", "DT", "JJ", "NN", "TO", "DT", "JJ", "NN", "POS", "NN", "NNS", ",", "VBD", "-NONE-", "DT", "NN", "IN", "NNP", "NNP", "NNP", "MD", "VB", "RP", "DT", "NN", "NN", ".", "DT", "NN", "IN", "NNP", "NNP", "VBD", "JJR", "NN", "NNS", ":", "CD", "NN", "-NONE-", "IN", "CD", "NNS", "IN", "IN", "CD", "NN", "NNS", "VBN", "-NONE-", "IN", "DT", "JJ", "CD", "JJ", "NNS", ":", "IN", "NNS", "IN", "NN", "NNS", ",", "NNP", "NNP", "VBD", "-NONE-", "-NONE-", ".", "``", "RB", "DT", "NN", "VBZ", "RBR", "VBN", ",", "''", "PRP", "VBD", "-NONE-", ".", "RB", ",", "DT", "NNP", "NNP", "NNP", "NNP", "VBD", "RP", "IN", "RB", "DT", "NN", "IN", "NNP", "VBG", "NN", "IN", "PRP$", "JJ", "NN", "IN", "NNP", "IN", "NNP", "NNP", ".", "NNP", "VBD", "-NONE-", "PRP", "MD", "VB", "PRP$", "NN", "CC", "RB", "VBZ", "IN", "DT", "VBN", "NN", "IN", "DT", "NNP", "IN", "IN", "PRP", "MD", "VB", "DT", "NN", "IN", "JJ", "NN", "IN", "PRP$", "NN", "VBZ", "DT", "NN", "VBD", "-NONE-", "IN", "DT", "NN", "NN", ".", "NNP", "IN", "NNP", "NNP", "NNS", "VBD", "NN", "IN", "$", "CD", "-NONE-", ",", "IN", "CD", "NNS", ",", "IN", "NNP", "NNP", "NNP", "NNP", "JJ", "NN", ".", "NNP", "NNP", ",", "CD", "NNS", "JJ", "CC", "JJ", "NN", "CC", "NN", "VBG", "NN", "IN", "NNPS", "``", "NNP", "''", "NNP", "NNP", ",", "CC", "NNP", "NNP", "NNP", ",", "CD", ",", "NN", "IN", "NNP", "NNP", "NNP", ",", "VBD", "VBN", "-NONE-", "NNS", "IN", "DT", "NN", "NNS", "CC", "NNS", "NN", "NN", ".", "PRP", "VBP", "NNP", "NNP", "NNP", ",", "VBN", "NNP", "NNP", "JJ", "NN", "NN", ",", "CC", "NNP", "NNP", "NNP", ",", "NNP", "NNP", "NN", ",", "IN", "DT", "JJ", "NN", ".", "NNP", "NNP", "NNP", "VBD", "VBN", "-NONE-", "-NONE-", "TO", "VB", "IN", "$", "CD", "CD", "-NONE-", "TO", "PRP$", "JJ", "CC", "JJ", "NNS", "IN", "JJ", "NNS", "VBN", "-NONE-", "IN", "NN", "NNS", "IN", "DT", "JJ", "NN", "NN", ".", "DT", "NN", "VBD", "IN", "$", "CD", "CD", "-NONE-", "JJR", "IN", "-NONE-", "RB", "VBN", "-NONE-", "IN", "DT", "NNP", "NNP", "NNP", "CC", "NN", "NNS", "VBD", "-NONE-", "PRP", "MD", "VB", "DT", "JJS", "RB", "VBN", "-NONE-", "IN", "DT", "NN", "CC", "JJ", "NN", ".", "NN", "NN", "NNP", "NNP", "NNP", "VBD", "NNP", "-NONE-", "TO", "VB", "JJ", "NNS", "IN", "IN", "$", "CD", "TO", "$", "CD", "-NONE-", "DT", "TO", "NNP", "NNS", "WP", "-NONE-", "VBP", "VBN", "JJ", "NN", "IN", "NNP", "CD", ",", "VBG", "IN", "CD", "CD", "NNS", "WP", "-NONE-", "VBP", "VBN", "IN", "DT", "NN", ".", "NNP", "NNP", "VBD", "DT", "NNS", "-NONE-", "TO", "VB", "NNP", "CD", "CC", "VBD", "IN", "PRP", "MD", "RB", "VB", "DT", "NNS", "CC", "JJ", "NNS", "-NONE-", "TO", "VB", "PRP$", "NN", "IN", "NNP", "NNP", ".", "``", "DT", "NN", "NN", ":", "MD", "RB", "VB", "VBN", "-NONE-", "NN", "IN", "DT", "NN", "IN", "NNS", ",", "''", "NNP", "NNP", "VBD", "-NONE-", ".", "NNP", "NNP", "VBD", "-NONE-", "PRP", "VBZ", "RB", "VBG", "DT", "VBG", "NN", "NN", "CC", "VBZ", "VBG", "-NONE-", "VBG", "NNP", "NNP", "POS", "NN", ".", "DT", "JJ", "NN", "IN", "DT", "NN", "MD", "VB", "VBN", "-NONE-", "JJ", "NN", "VBN", "IN", "JJ", "NNS", "VBN", "-NONE-", "IN", "NNP", "CD", "IN", "DT", "NN", ".", "NNP", "NNP", "VBD", "-NONE-", "DT", "NN", "MD", "VB", "PRP", "TO", "VB", "PRP$", "CD", "NNS", "IN", "$", "CD", "-NONE-", "DT", "NN", ".", "IN", "CD", ",", "NNP", "NNP", "VBD", "NNS", "IN", "$", "CD", "CD", "-NONE-", ",", "CC", "$", "CD", "-NONE-", "DT", "NN", ".", "DT", "NNP", "NNP", "NN", "VBD", "IN", "-NONE-", "VBG", "RP", "DT", "CD", "CD", "NNS", "WP$", "NNS", "-NONE-", "VBP", "VBN", "IN", "DT", "JJ", "CD", "CD", "NNS", "MD", "VB", "``", "DT", "JJ", "NN", ".", "''", "IN", "NNP", "NNP", "NNP", "NNP", "JJ", "NN", "NN", ",", "NNP", "NNP", "VBD", "IN", "$", "CD", "-NONE-", ",", "RB", "CD", "NNS", ".", "DT", "$", "CD", "CD", "-NONE-", "NNP", "CD", "NN", "IN", "NNP", ",", "NNP", ",", "VBD", "VBN", "-NONE-", "IN", "CD", ".", "IN", "DT", "VBN", "CD", "NN", ",", "DT", "NNP", "NNP", "VBD", "-NONE-", "NNP", "NNP", "MD", "VB", "PRP$", "NN", "NNS", "IN", "$", "CD", "CD", "-NONE-", "-NONE-", "TO", "VB", "IN", "DT", "NN", ".", "CC", "NN", "NNS", "VBD", "DT", "NN", "IN", "NN", "NNS", "TO", "DT", "NN", "POS", "NN", "NN", "CC", "VBD", "DT", "NNS", "JJ", ".", "DT", "NNP", "NNP", "NNP", "VBD", "DT", "NN", "-NONE-", "TO", "VB", "NNP", "NNP", "POS", "NN", "NNS", "CC", "VB", "DT", "JJ", "NNS", ".", "DT", "NN", "VBZ", "VBN", "VBG", "IN", "DT", "NN", "POS", "NN", "NN", "IN", "PRP$", "CD", "CD", "NNS", "JJ", "TO", "DT", "NN", "IN", "CD", ".", "IN", "NNP", ",", "DT", "NN", "VBD", "IN", "IN", "$", "CD", "CD", "CC", "$", "CD", "CD", "-NONE-", "IN", "DT", "NN", "POS", "NN", "NN", "VBD", "JJ", "CC", "MD", "VB", "VBN", "-NONE-", ",", "CC", "NN", ".", "IN", "PRP$", "NN", ",", "NNP", "NNP", "VBD", "DT", "JJ", "$", "CD", "CD", "-NONE-", "TO", "DT", "NN", "POS", "NNS", ".", "JJ", "NN", ",", "NNP", "NNP", "VBD", "DT", "NN", "NN", "IN", "DT", "NN", "IN", "CD", "NN", ".", "NNP", "NNP", "RB", "VBZ", "DT", "JJ", "JJ", "NN", "IN", "PRP$", "JJ", "NN", "JJ", "NNS", "IN", "DT", "NNP", "NNP", "NNP", "VBZ", "VBN", "-NONE-", "IN", "$", "CD", "CD", "-NONE-", ".", "CC", "NN", "NNS", "VBP", "IN", "NNP", "NNP", "POS", "NNP", "CD", "NN", "MD", "VB", "DT", "NN", "IN", "DT", "JJ", "JJ", "NN", "NN", "VBG", "NNP", "NNP", "POS", "NNP", "CD", "NN", ".", "NNP", "NNP", "VBZ", "VBG", "IN", "$", "CD", "CD", "-NONE-", "IN", "NN", "NNS", "-NONE-", "-NONE-", "TO", "VB", "IN", "NNP", "CD", ".", "DT", "NN", "VBZ", "VBN", "-NONE-", "TO", "VB", "IN", "DT", "NNP", "CD", "NN", "IN", "NN", "NN", ".", "JJ", "NN", "NNP", "NNP", "VBD", "-NONE-", "TO", "VB", "$", "CD", "CD", "-NONE-", "IN", "JJ", "NN", "IN", "PRP$", "NNP", "NNP", "JJ", "NN", ".", "NNP", "POS", "JJ", "NNS", "IN", "NNS", ",", "NNS", "CC", "NNS", "IN", "NNP", "VBD", "CD", "NN", "IN", "DT", "NN", "JJR", "TO", "CD", "NNS", ",", "DT", "NN", "IN", "DT", "NN", ",", "DT", "NNP", "NNP", "NNPS", "POS", "NNP", "VBD", "-NONE-", "-NONE-", ".", "DT", "JJ", "NN", "VBD", "JJ", "NNS", "IN", "CD", "NN", "IN", "NNP", "CC", "CD", "NN", "IN", "NNP", ".", "DT", "JJ", "NNS", "VBP", "VBN", "VBG", "NNS", "DT", "NN", "IN", "NNP", ".", "NNP", "NNS", ",", "VBN", "-NONE-", "IN", "DT", "JJ", "NN", ",", "VBD", "RB", "CD", "NN", ".", "NNS", "IN", "NN", "NNS", "VBD", "CD", "NN", "IN", "DT", "NN", "JJR", "TO", "CD", "NNS", ".", "NNS", "IN", "JJ", "NNS", ",", "WDT", "-NONE-", "VBD", "IN", "NN", "NNS", "VBG", "IN", "NN", "IN", "DT", "NN", "NN", ",", "RBR", "IN", "VBD", "TO", "CD", "NNS", "IN", "CD", "IN", "NNP", "CD", ".", "NNP", "NNPS", "NNP", "NNP", ",", "DT", "NN", "IN", "NNP", "NNPS", "NNP", ",", "VBD", "-NONE-", "PRP", "VBD", "DT", "NN", "-NONE-", "IN", "NNP", "NNP", "-NONE-", "-NONE-", "TO", "VB", "NN", "NNS", ".", "DT", "JJ", "NN", ",", "VBN", "-NONE-", "IN", "NNP", "IN", "CD", "NNS", "IN", "NNP", ",", "MD", "VB", "-NONE-", "VB", "VBG", "CC", "VBG", "NN", "IN", "NN", "NNS", "IN", "NNP", "NNP", ",", "DT", "NN", "VBD", "-NONE-", "-NONE-", ".", "DT", "NN", "MD", "VB", "NN", "NNS", "VBN", "-NONE-", "IN", "NN", "NNS", "CC", "NN", "NNS", ".", "DT", "NN", "IN", "NN", "NNP", "NNP", "NNP", "IN", "DT", "NN", "IN", "DT", "NN", "NN", "VBZ", "-NONE-", "TO", "VB", "RB", "IN", "DT", "NN", ":", "CC", "NN", ":", "IN", "PRP$", "NN", "CC", "NN", "NN", ",", "NNP", "NNP", ".", "RB", "RB", "VBZ", "NN", "IN", "DT", "JJ", "NN", "POS", "JJ", "NN", "VBD", "-NONE-", "RB", "TO", "NNP", "NNP", ",", "RB", "VBZ", "-NONE-", "PRP$", "NN", "NN", ".", "NNS", "VBN", "-NONE-", "IN", "DT", "NNPS", "CC", "NNP", "NNP", "IN", "DT", "VBG", "NN", "VBD", "IN", "NNP", "NNP", "NNP", "MD", "VB", "DT", "RB", "$", "CD", "CD", "-NONE-", "IN", "NN", "-NONE-", "PRP", "VBZ", "VBG", "DT", "JJ", "NN", "-NONE-", "IN", "NNP", "NNP", "VBZ", "CC", "IN", "DT", "JJ", "NN", "-NONE-", "PRP", "VBZ", "-NONE-", "VBZ", "VBN", "-NONE-", ".", "DT", "NNS", "RB", "VBD", "IN", "IN", "DT", "JJ", "NNP", "NNP", "VBZ", "VBN", "VBG", "IN", "DT", "NN", "IN", "RBR", "IN", "CD", "NNS", ",", "DT", "NNP", "NN", "VBZ", "IN", "JJS", "DT", "NN", "RB", "IN", "DT", "RB", "JJ", "NN", ".", "JJR", ",", "EX", "VBP", "VBN", "DT", "NNS", "IN", "DT", "NNP", "RB", "RB", ",", "IN", "DT", "NN", "VBZ", "-NONE-", "PRP", "VBZ", "VBG", "IN", "JJ", "NNS", ".", "IN", "JJ", "IN", "DT", "NNS", "VBD", "VBN", "-NONE-", "WRB", "JJ", "NNP", "NNP", "RB", "VBD", "DT", "NN", "IN", "NNP", "-NONE-", ",", "DT", "NNS", "-NONE-", "PRP", "VBD", "-NONE-", "TO", "DT", "NN", "VBD", "RB", "VBN", "VBN", "-NONE-", "JJ", "IN", "NN", ".", "``", "PRP", "VBD", "RB", "VB", "RB", "IN", "DT", "NN", ",", "''", "NNP", "NNP", "POS", "NN", "JJ", "NN", ",", "NNP", "NNP", ",", "VBD", "-NONE-", "IN", "DT", "NN", ".", "``", "DT", "NN", "VBZ", "IN", "NNP", "VBZ", "DT", "JJ", "NN", "IN", "DT", "NNP", ",", "CC", "IN", "PRP", "PRP", "MD", "RB", "VB", "VBN", "-NONE-", ".", "NNP", "NNP", "VBD", "RB", "VB", "-NONE-", "TO", "VB", "DT", "NN", "WDT", "-NONE-", "VBD", "RB", "VB", "NNP", ".", "''", "DT", "NNS", "RB", "VBD", "IN", "NNP", "NNP", "VBZ", "-NONE-", "VBG", "RB", "DT", "$", "CD", "CD", "-NONE-", "IN", "NN", "VBG", "JJ", "NNP", ".", "CC", "NNP", "NNP", "VBD", "IN", "``", "DT", "JJ", "''", "NN", ".", "DT", "NN", "IN", "DT", "NNS", "IN", "DT", "NN", "VBD", "NNP", "NNP", "NN", "TO", "VB", "$", "CD", "-NONE-", "NN", "-NONE-", "TO", "VB", "IN", "$", "CD", "-NONE-", "IN", "NNP", "NNP", "NNP", "NNP", "JJ", "NN", ".", "NNS", "VBD", "NN", "IN", "NNP", "NNP", "POS", "NN", "-NONE-", "TO", "VB", "PRP$", "$", "CD", "CD", "-NONE-", "JJ", "NN", "TO", "NNP", "NNP", "POS", "NN", "MD", "VB", "DT", "NN", "IN", "DT", "JJ", "NN", ".", "``", "PRP", "VBZ", "-NONE-", "TO", "VB", "VBN", "-NONE-", "IN", "DT", "JJ", "NN", "IN", "DT", "NN", ",", "''", "VBD", "-NONE-", "NNP", "NNP", "NNP", "IN", "NNP", "NNP", "NNP", ",", "NNP", ".", "``", "NNP", "NNP", "MD", "VB", "DT", "NN", "NN", ",", "''", "PRP", "VBD", "-NONE-", ".", "``", "PRP", "RB", "VBP", "-NONE-", "NNP", "MD", "VB", "PRP", "RB", "CC", "PRP", "VBP", "RB", "-NONE-", ".", "''", "IN", "DT", "NN", "POS", "NN", ",", "JJ", "NN", "NNS", "IN", "NNP", "NNP", "POS", "JJ", "NN", "VBP", "DT", "NNP", "POS", "JJ", ",", "JJ", "NN", "NN", ".", "DT", "NNP", "NNS", "VBP", "DT", "NNS", ",", "WDT", "-NONE-", "VBP", "VBN", "-NONE-", "IN", "NN", "NN", ",", "IN", "-NONE-", "VBG", "RB", "JJ", "CC", "JJ", "-NONE-", "PRP", "MD", "VB", "JJ", "JJ", "NN", "NN", ".", "IN", "NN", ",", "DT", "NNP", "MD", "VB", "CD", "NNS", ":", "RB", "RB", "JJ", "IN", "DT", "JJS", "JJ", "NN", ".", "NNP", "NNP", "RB", "MD", "VB", "JJ", "NN", ",", "RB", "RB", "IN", "NNP", "NNP", ",", "WDT", "-NONE-", "VBZ", "RB", "CD", "NN", "IN", "DT", "JJ", "NN", "NN", "CC", "WDT", "-NONE-", "VBZ", "VBN", "-NONE-", "TO", "VB", "RP", "DT", "NN", "NN", ",", "DT", "JJ", "NN", "IN", "DT", "NNP", ",", "IN", "CD", ".", "DT", "NN", "RB", "MD", "VB", "IN", "NNP", "NNP", "NNPS", "NNP", "CC", "NNP", "POS", "JJ", "CD", ":", "NNP", "NNP", ",", "NNP", "NNP", "CC", "NNP", "NNP", ".", "DT", "JJ", "NN", "VBD", "-NONE-", "PRP", "VBZ", "-NONE-", "EX", "VBP", "JJR", "IN", "CD", "JJ", "NNS", "IN", "NNS", "VBN", "-NONE-", "IN", "$", "CD", "CD", "CC", "$", "CD", "CD", "-NONE-", ":", "RB", "DT", "NNP", "NN", "NN", ".", "IN", "NNS", "IN", "DT", "NN", ",", "NNP", "NNP", "NNS", "VBP", "-NONE-", "TO", "VB", "CD", "NNP", "NNP", "NN", "IN", "DT", "CD", "NNP", "NNP", "NNS", "-NONE-", "PRP", "VBP", "-NONE-", "IN", "DT", "NN", "VBN", "-NONE-", "TO", "VB", "IN", "IN", "CD", "NNS", ".", "DT", "NN", "IN", "DT", "JJ", "NNS", "VBZ", "VBN", "VBN", "-NONE-", ".", "RB", ",", "DT", "NNS", "MD", "VB", "PRP", "IN", "TO", "DT", "NN", "-NONE-", "TO", "VB", ".", "NNP", "NNP", "VBZ", "VBN", "-NONE-", "TO", "VB", "IN", "NNP", ".", "NNS", "VBP", "NNP", "NNP", "POS", "JJ", "NN", "NN", "IN", "IN", "$", "CD", "-NONE-", "DT", "NN", ".", "IN", "IN", "DT", "NN", ",", "NNP", "NNP", "VBZ", "VBG", "IN", "$", "CD", "CD", "-NONE-", "IN", "NNS", ",", "RB", "DT", "VBN", "TO", "DT", "CD", "NN", ",", "WDT", "-NONE-", "VBZ", "VBN", "DT", "NN", "IN", "NNP", "NNP", "POS", "NNS", ".", "JJ", "NN", "NNS", "RB", "VBP", "WRB", "NNP", "NNP", "VBD", "DT", "NN", "-NONE-", ".", "IN", "DT", "NNP", "NN", "CC", "NN", "NNS", ",", "DT", "NN", "MD", "VB", "VBN", "JJ", "-NONE-", "TO", "VB", "DT", "NN", "IN", "$", "CD", "CD", "-NONE-", "-NONE-", "IN", "DT", "JJ", "DT", "IN", "CD", "RB", "IN", "DT", "$", "CD", "CD", "-NONE-", "-NONE-", "PRP", "VBD", "-NONE-", ".", "IN", "DT", "JJ", "NN", ",", "VBD", "PRP", "VBN", "RB", ",", "NNP", "NNP", "MD", "VB", "VBN", "DT", "$", "CD", "CD", "-NONE-", "NN", ".", "NNP", "NNP", ",", "WP", "-NONE-", "MD", "RB", "VB", "VBN", "-NONE-", "IN", "NN", ",", "MD", "VB", "IN", "DT", "JJ", "NNP", "NNPS", ",", "NNP", ",", "NN", "IN", "DT", "JJ", "NN", ":", "DT", "NN", "-NONE-", "PRP", "VBD", "-NONE-", "IN", "NNP", "NNP", ".", "-NONE-", "VBN", "-NONE-", "IN", "DT", "NN", "IN", "DT", "NN", ",", "NNP", "NNP", "VBD", "VBN", "-NONE-", "$", "CD", "-NONE-", "IN", "NNP", "NNP", "JJ", "NN", ".", "IN", "NNP", "NNP", ",", "PRP", "MD", "VB", "VBN", "-NONE-", "$", "CD", "-NONE-", ".", "IN", "NNP", "NNP", "CC", "NNP", ",", "JJ", "JJ", "NN", "IN", "DT", "NN", "VBZ", "NNP", "NNP", ",", "CD", ",", "NN", "CC", "NN", "NN", "NN", ":", "NNP", "NNP", "NNP", ",", "CD", ",", "NN", "NN", ",", "NN", ":", "NNP", "NN", "NNP", ",", "CD", ",", "NN", "NN", ",", "NN", ":", "CC", "NNP", "NNP", "NNP", ",", "CD", ",", "NN", "NN", ",", "NN", ".", "DT", "VBD", "IN", "NNP", "NNP", ".", "NNP", "NNP", ",", "WDT", "-NONE-", "RB", "VBZ", "CD", "NNS", ",", "VBD", "-NONE-", "PRP", "VBZ", "DT", "NN", "NN", "IN", "CD", "IN", "DT", "NN", "IN", "CD", ".", "NNP", "NNP", "NNP", ",", "CD", "NNS", "JJ", ",", "VBD", "VBN", "-NONE-", "JJ", "NN", "NN", "NN", "CC", "NN", "VBG", "NN", ",", "DT", "JJ", "NNS", ".", "PRP", "MD", "VB", "-NONE-", "TO", "VB", "TO", "NNP", "NNP", ",", "NN", "CC", "NN", "NN", "NN", ".", "NNP", "NNP", "VBD", "NN", "NN", "NN", "IN", "DT", "NN", "NN", "NN", ".", "NNP", "NNP", "NNP", ",", "CD", ",", "VBD", "VBN", "-NONE-", "NN", "NN", "NN", "IN", "DT", "NN", ".", "PRP", "VBD", "RB", "NN", "IN", "DT", "NN", "POS", "NNP", "NNP", "NNP", "NN", ".", "NNP", "NNP", "NNP", ",", "CD", ",", "VBD", "VBN", "-NONE-", "TO", "VB", "NNP", "NNP", "IN", "NN", "IN", "NNP", "NNP", ".", "RB", "PRP", "VBD", "RB", "NN", "IN", "NNP", "NNP", ".", "NNP", "NNP", "NNP", ",", "CD", ",", "VBD", "VBN", "-NONE-", "JJ", "NN", "NN", "IN", "NNP", "NNPS", ".", "PRP", "VBD", "RB", "NN", "NN", ".", "DT", "NNP", ",", "-NONE-", "VBG", "DT", "NN", "IN", "PRP$", "NN", "NN", ",", "VBD", "NNP", "NNP", ",", "NNP", "CC", "NNP", "NNP", "IN", "DT", "NN", "IN", "NNS", "-NONE-", "PRP", "VBZ", "RB", "VBG", "-NONE-", "IN", "-NONE-", "RB", "VBG", "-NONE-", "TO", "VB", "NNP", "NNS", ",", "NNS", "CC", "JJ", "JJ", "NNS", ".", "RB", ",", "CD", "JJ", "NNS", ":", "NNP", ",", "NNP", ",", "NNP", ",", "NNP", "CC", "NNP", ":", "MD", "VB", "IN", "DT", "JJ", "NN", "NN", "NN", "IN", "DT", "NN", "IN", "DT", "JJ", "NN", ",", "NNP", "NNP", "NNP", "NNP", "NNP", "VBD", "-NONE-", "-NONE-", ".", "IN", "DT", "JJ", "NNP", "NN", "NN", ",", "DT", "NNS", "MD", "VB", "JJ", "JJ", "NNS", "CC", "JJ", "NN", "NNS", "IN", "PRP", "VBP", "RB", "VB", "PRP$", "NN", "IN", "JJ", "NN", "IN", "JJ", "NN", ".", "NNP", "NNP", "VBD", "-NONE-", "JJ", "IN", "DT", "CD", "NNS", "IN", "PRP", "VBD", "-NONE-", "IN", "VBG", "NNS", "IN", "NN", "VBP", "VBN", "``", "JJ", "NN", "''", "IN", "DT", "JJ", "NN", ".", "PRP", "VBD", "-NONE-", "EX", "VBZ", "``", "VBG", "NN", "-NONE-", "''", "IN", "DT", "NN", "DT", "NN", "IN", "JJ", "NNS", "VBZ", "DT", "VBG", "NNS", ",", "CC", "RB", "DT", "``", "NN", "CC", "NN", "IN", "DT", "-LRB-", "VBG", "-RRB-", "NN", "POS", "JJ", "NNS", ".", "''", "NNP", "NN", "NNS", "VBP", "IN", "NNS", "IN", "JJ", "NNS", "IN", "JJ", "NNS", "MD", "VB", "VBG", "PRP", "IN", "-NONE-", "VBG", "PRP$", "JJ", "NNS", "CC", "NNS", "CC", "IN", "-NONE-", "VBG", "NNP", "NN", "NNS", "IN", "-NONE-", "VBG", "CC", "VBG", "PRP$", "JJS", "NNS", "RB", ".", "NNP", "NNP", "VBD", "NNP", "NNP", "IN", "-NONE-", "VBG", "DT", "JJ", "NN", "NN", "CC", "JJ", "NN", "NNS", "IN", "NN", "NNS", "CC", "NNS", "VBN", "-NONE-", "TO", "VB", "NN", "CC", "NN", "NNS", ".", "NNP", "RB", "VBZ", "VBN", "JJ", "JJ", "NNS", "-NONE-", "-NONE-", "TO", "VB", "DT", "NNS", "-NONE-", ",", "PRP", "VBD", "-NONE-", "-NONE-", ".", "NNP", "VBZ", "VBN", "PRP$", "NN", "IN", "DT", "NNP", "IN", "-NONE-", "VBG", "DT", "JJ", "NN", "NN", ",", "VBG", "PRP$", "NN", "NN", "CC", "VBG", "NN", "-NONE-", "-NONE-", "TO", "VB", "JJ", "NN", "NNS", "IN", "JJ", "NNS", "IN", "PRP$", "NNS", "-NONE-", ".", "DT", "NN", "MD", "VB", "NNP", "POS", "VBG", "NN", "IN", "JJ", "JJ", "NNS", "TO", "VB", "NN", "NNS", "IN", "-NONE-", "VBG", "PRP$", "NNS", ".", "NNP", "NNP", ",", "IN", "PRP$", "NN", ",", "VBZ", "VBN", "-NONE-", "TO", "VB", "DT", "NN", "NN", "JJ", "IN", "JJ", "NNS", "CC", "-NONE-", "TO", "VB", "DT", "NN", "TO", "NN", "NN", "RB", "RB", "IN", "TO", "JJ", "NNS", ",", "NNP", "NNP", "VBD", "-NONE-", "-NONE-", ".", "DT", "CD", "NNS", "VBP", "RB", "RB", "IN", "DT", "NN", ",", "RB", ".", "PRP", "MD", "VB", "IN", "DT", "JJ", "NN", "WDT", "-NONE-", "VBZ", "CD", "JJ", "NNS", ".", "DT", "NNS", ":", "IN", "NNP", ",", "NNP", ",", "NNP", ",", "NNP", "CC", "NNP", ":", "VBP", "RB", "IN", "DT", "NN", "TO", "DT", "NNP", "CC", "VBP", "VBN", "-NONE-", "TO", "VB", "JJ", "NNS", "IN", "JJ", "NN", "CC", "NN", "NNS", "IN", "DT", "IN", "DT", "``", "NN", "''", "NN", ".", "NNP", "NNP", ",", "DT", "NNP", "NN", "VBG", "IN", "JJ", "NNS", ",", "VBD", "-NONE-", "DT", "NN", "IN", "NNP", "NN", ",", "VBN", "-NONE-", "IN", "DT", "VBG", "NN", "IN", "-NONE-", "VBG", "JJ", "NN", "VBZ", "IN", "DT", "NN", "POS", "JJ", "NN", ",", "VBD", "DT", "NNS", "VBN", "-NONE-", "IN", "NNP", "NNP", ",", "NNP", "CC", "NNP", "NNP", ".", "``", "WP", "DT", "VBZ", "PRP", "-NONE-", "VBZ", "DT", "NNP", "NN", "NN", "VBZ", "VBG", ",", "''", "PRP", "VBD", "-NONE-", ".", "PRP", "VBD", "-NONE-", "NNP", "MD", "VB", "CD", "IN", "DT", "JJ", "NNS", "-NONE-", "-NONE-", "TO", "VB", "VBN", "-NONE-", "IN", "DT", "NN", "NN", "IN", "IN", "PRP$", "NNS", "-NONE-", "TO", "VB", "DT", "JJ", "NN", "NN", ".", "NNP", "NNP", "VBD", "IN", "DT", "NNP", "VBZ", "RB", "VBN", "IN", "``", "JJ", "NNS", "IN", "NNP", "CC", "VBG", "JJ", "NN", "IN", "NNP", ".", "''", "PRP", "VBD", "RB", "JJ", ",", "IN", "JJR", "NNP", "NN", "NNS", "VBP", "VBN", "IN", "NN", "NN", "IN", "NNP", "CC", "NN", "IN", "NNP", "JJ", "NNS", "IN", "NNP", ".", "DT", "CD", "NN", "NN", "VBZ", "NNP", "NNP", "TO", "VB", "DT", "NN", "IN", "DT", "NN", "IN", "DT", "NNS", "IN", "NNP", "CD", ".", "IN", "RB", ",", "NNP", "NNP", "VBZ", "RB", "VBD", "DT", "NNS", "JJ", "RB", "-NONE-", "TO", "VB", "DT", "VBN", "NN", "IN", "DT", "JJ", "JJ", "CD", "NN", "IN", "DT", "NN", ".", "NNP", "VBD", "-NONE-", "PRP", "MD", "VB", "NN", "NNS", "-NONE-", "TO", "VB", "PRP$", "JJ", "NN", "IN", "$", "CD", "CD", "-NONE-", ":", "DT", "JJS", "IN", "DT", "VBG", "NN", ".", "DT", "NN", "IN", "NNP", "NNP", "NNP", "NNP", "VBZ", "VBN", "-NONE-", "TO", "VB", "DT", "JJ", "NN", "-NONE-", "JJ", "DT", "NN", "VBZ", "VBN", "VBN", "IN", "-NONE-", "IN", "DT", "JJ", "NN", "IN", "JJ", "NN", "-NONE-", ".", "DT", "NNP", "NNP", "NN", "VBZ", "VBN", "RB", "RB", "IN", "PRP$", "NN", "IN", "JJ", "JJ", "NN", ".", "``", "NNP", "VBZ", "-NONE-", "TO", "VB", "DT", "NN", "IN", "CD", "NN", "IN", "DT", "NN", "IN", "PRP$", "JJ", "NN", ",", "''", "NNP", "NNP", "VBD", "-NONE-", "IN", "PRP$", "NN", ",", "NNP", "NNP", ".", "NNP", "NNP", "VBD", "IN", "NNP", "IN", "NNP", "NNP", "NNP", "NNP", "NNP", "NNP", ".", "JJ", "NN", "NNP", "NNP", "VBD", "IN", "NNP", "CC", "NNP", "NNP", "DT", "NN", "-NONE-", "TO", "VB", "IN", "NNS", ".", "NNP", "NNP", "RB", "VBZ", "VBD", "-NONE-", "DT", "NN", "IN", "NNP", "NNP", "NNP", ",", "WP", "-NONE-", "VBD", "NN", "NNP", "CD", ",", "VBZ", "-NONE-", "DT", "JJ", "NN", "IN", "NN", "CC", "NN", "VBZ", "DT", "JJ", "NN", "-NONE-", "DT", "NN", "NN", "MD", "VB", "VBN", "-NONE-", "-NONE-", ".", "CC", "PRP", "VBZ", "RB", "VBD", "IN", "IN", "DT", "NN", "VBZ", "PDT", "DT", "NN", "VBN", "-NONE-", ".", "-LRB-", "IN", "PRP$", "NN", "NN", ",", "NNP", "NNP", "NNP", "NNP", "MD", "VB", "NNS", "IN", "DT", "JJ", "NN", "WDT", "-NONE-", "VBP", "IN", "NNS", "IN", "JJ", "NN", "NN", ".", "-RRB-", "CD", "NNS", "WDT", "-NONE-", "VBD", "DT", "NN", "IN", "JJ", "NN", "VBD", "VBN", "-NONE-", "IN", "CD", ".", "DT", "NN", "DT", "NNP", "NNP", ",", "NNP", "NNP", "CC", "NNP", "NNP", "VBD", "TO", "NN", ".", "DT", "NNS", "VBD", "JJ", "IN", "NN", "POS", "NNS", ".", "NNP", "NNP", "NNS", ",", "IN", "NN", ",", "VBD", "-NONE-", "TO", "VB", "PRP$", "NN", "NNS", "IN", "NNS", "CC", "VBD", "NNS", "IN", "NNS", ".", "CC", "NNP", "NNP", "VBD", "DT", "JJ", "NN", "IN", "NNP", "NNP", ",", "WDT", "-NONE-", "VBD", "VBN", "-NONE-", "IN", "DT", "NN", "IN", "NNP", "NNP", "CC", "NNP", "NNP", "IN", "NNS", "JJ", "IN", "DT", "NNP", "NNP", "NNP", ".", "IN", "NN", ",", "DT", "NNP", "NNP", "VBD", "DT", "JJ", "$", "CD", "-NONE-", ".", "-NONE-", "JJ", "IN", "PRP", "VBD", "-NONE-", ",", "DT", "JJ", "NNS", "VBD", "JJ", "NN", "NN", "IN", "NN", "NNS", "IN", "DT", "NN", "CC", "NN", ".", "JJ", "NN", "NNS", "IN", "NN", "VBD", "VBN", "IN", "IN", "NNS", ".", "CC", "DT", "JJ", "CD", "NNS", ":", "JJ", "JJR", "JJ", "NNS", "JJ", "IN", "DT", "NNP", ",", "NNP", "CC", "NNP", ":", "VBD", "NNS", "CC", "MD", "VB", "IN", "CD", "NNS", "IN", "NNS", "IN", "PRP$", "NNS", ".", "JJ", "NNS", "VBP", "RBR", "IN", "CD", "NNS", "JJR", "CC", "VBP", "NN", "NN", "CD", "NNS", "JJR", "IN", "PRP$", "CD", "NNS", ".", "EX", "VBD", "JJ", "NN", "NN", "NNS", ".", "NNP", "NNP", "CC", "NNP", "NNP", "IN", "CD", "VBD", "DT", "JJ", "JJ", "NN", "IN", "NNS", ",", "CC", "NNP", "VBD", "DT", "NN", "NN", "CD", "NNS", "IN", "NNP", "VBD", "CD", "IN", "DT", "NNS", "IN", "CD", ".", "NNP", "NNP", "NNP", ",", "RB", "NN", "IN", "NNP", "NNP", ",", "VBD", "DT", "NN", "WDT", "-NONE-", "VBD", "DT", "NN", "NNS", "IN", "NNS", ".", "NNP", "NNP", "CC", "NNP", "NNP", ",", "CD", "NNP", "NNS", ",", "VBD", "NNS", "IN", "DT", "JJ", "NNS", "WDT", "-NONE-", "VBP", "NNS", "TO", "VB", "NNS", "IN", "DT", "NN", ".", "NNP", ",", "DT", "NN", "NN", "IN", "NNS", ",", "VBD", "RB", "VB", "PRP$", "JJ", "NN", "IN", "NNP", "CD", "IN", "JJ", "JJ", "NNS", "VBD", "DT", "NN", ".", "NN", ",", "NN", "NNS", "RB", "VBP", "DT", "$", "CD", "CD", "-NONE-", "JJ", ".", "NNP", "NNP", "CC", "NNP", ",", "DT", "JJ", "NNS", "NN", ",", "VBD", "-NONE-", "PRP$", "NNP", "NNP", "NN", "VBD", "NNP", "NNP", "IN", "$", "CD", "CD", "-NONE-", ".", "NNP", "VBZ", "DT", "JJ", "JJ", "NNS", "NN", "WDT", "-NONE-", "VBZ", "NNS", "IN", "DT", "NNP", "NN", ".", "NNP", "VBD", "-NONE-", "PRP", "VBZ", "CD", "NN", "IN", "NNP", "POS", "NN", "NN", "CC", "VBZ", "DT", "NN", "-NONE-", "TO", "VB", "DT", "JJ", "CD", "NN", ".", "DT", "NN", ",", "RB", "IN", "PRP$", "JJ", "VBN", "NN", "NNS", ",", "VBZ", "NNP", "DT", "NN", "-NONE-", "TO", "VB", "PRP$", "NN", "TO", "CD", "NN", "IN", "NNP", "POS", "NN", "NN", ".", "NN", "NN", "IN", "NNP", "POS", "NNP", "NNP", "NNS", "MD", "VB", "VBN", "-NONE-", "IN", "CD", "NNS", "DT", "NN", "TO", "IN", "CD", "NNS", "IN", "DT", "NN", "IN", "DT", "NNP", "NN", ",", "DT", "JJ", "IN", "CD", "JJ", "NNS", "VBN", "-NONE-", "TO", "VB", "VBN", "-NONE-", "IN", "NN", "IN", "DT", "NN", "IN", "CD", ".", "NNP", "NNP", "NNP", ",", "DT", "NN", "IN", "JJ", "JJ", "NNP", "NNP", ",", "CC", "NNP", "NNP", "NNP", "VBP", "DT", "NNS", "IN", "DT", "JJ", "NN", ".", "NNP", "VBD", "-NONE-", "DT", "NNP", "NN", "VBD", "NN", "NNP", ".", "NN", "MD", "VB", "RB", "VBN", "-NONE-", "IN", "PRP", "VBZ", "IN", "CD", "NNS", "DT", "NN", ".", "DT", "NN", "VBZ", "NNS", "IN", "CD", "CD", "NNS", ".", "NNS", "IN", "DT", "CD", "JJ", "NNS", "VBP", "CD", "CD", "NNS", ".", "DT", "NNP", "CC", "NNP", "NNS", "VBP", "VBN", "-NONE-", "TO", "VB", "-NONE-", "VBG", "JJ", "JJ", "NN", ",", "CC", "DT", "NNP", "CC", "NNP", "NNS", "JJ", "JJ", "NN", ".", "NN", "VBD", "-NONE-", "DT", "NNS", "VBD", "VBN", "-NONE-", "IN", "DT", "JJ", "NN", "VBD", "IN", "CD", "-NONE-", "TO", "VB", "DT", "JJ", "CD", "CD", "NNS", "IN", "JJ", "NNS", "JJ", "IN", "JJ", "NN", ".", "NNP", "NNP", "NNP", "VBD", "-NONE-", "PRP", "VBD", "DT", "$", "CD", "CD", "-NONE-", "NN", "IN", "PRP$", "NNP", "NNP", "NN", "TO", "DT", "NN", "VBD", "-NONE-", "IN", "DT", "NN", "POS", "NN", ",", "NNP", "NNP", "NNP", ",", "CC", "JJ", "NNS", ".", "VBG", "DT", "NN", "IN", "NNP", "NNP", "IN", "DT", "JJ", "NN", "VBN", "-NONE-", "IN", "NNP", "NNP", "NNP", "JJR", "DT", "NN", ",", "DT", "NN", "IN", "NN", "NNS", "VBD", "-NONE-", "TO", "VB", "PRP", "IN", "JJ", "IN", "PRP$", "JJ", "NNS", ".", "DT", "NN", "IN", "NNP", "NNP", "VBZ", "DT", "NN", "IN", "DT", "NN", ".", "DT", "NNP", "NNP", "VBD", "-NONE-", "NNP", "NNP", "VBZ", "VBN", "JJ", "NN", "IN", "NNS", "IN", "JJ", "NNS", "IN", "NNS", "WDT", "-NONE-", "VBP", "RB", "VBN", "-NONE-", "IN", "``", "JJ", "NNS", "''", "IN", "DT", "NNP", ",", "DT", "NNP", "NNPS", "CC", "JJ", "NNP", "NNS", ".", "DT", "NN", "VBD", "IN", "NN", "TO", "DT", "NN", "VBN", "-NONE-", "IN", "NNP", "NNP", "IN", "NNS", "IN", "DT", "NNP", "NNP", "NNP", "IN", "NNPS", "IN", "NNS", "IN", "VBG", "NNS", ".", "RB", ",", "NN", "NNS", "VBD", "VBN", "-NONE-", "JJ", "JJ", "NN", ".", "NNP", "VBD", "VBN", "JJ", "NN", "IN", "JJ", "NNS", "IN", "NNS", ",", "VBN", "-NONE-", "IN", "CD", "JJ", "NNP", "NN", "NNS", ".", "DT", "NNP", "NNP", "VBD", "-NONE-", "NNP", "NNP", "VBD", "-NONE-", "TO", "VB", "JJ", "NN", "IN", "CD", "NNS", ",", "CC", "VBD", "RP", "JJ", "NN", "IN", "JJ", "NNS", "IN", "NNS", "``", "RB", "IN", "DT", "NN", "IN", "NN", "NN", "TO", "VB", "NNS", "VBN", "-NONE-", "IN", "DT", "NNP", "CC", "DT", "NNP", "NNPS", ".", "''", "NNP", "VBZ", "DT", "JJ", "NNP", "NN", "CC", "NN", "IN", "NNS", ",", "VBG", "JJ", "JJ", "NNS", "VBN", "-NONE-", "IN", "DT", "NNP", "CC", "JJ", "VBG", "NNS", "VBN", "-NONE-", "IN", "DT", "NNP", "NN", "NNS", ".", "NNP", "NN", "NNS", "VBD", "-NONE-", "DT", "NNP", "CC", "NNP", "MD", "VB", "DT", "JJ", "NNS", "IN", "DT", "NN", "POS", "NN", ".", "NNS", "IN", "DT", "NNS", "IN", "NNS", "WDT", "-NONE-", "RB", "MD", "VB", "JJ", "IN", "JJ", "NN", "VBD", "IN", "$", "CD", "CD", "-NONE-", "-NONE-", "IN", "CD", ",", "DT", "RB", "JJ", "NN", "IN", "DT", "$", "CD", "CD", "-NONE-", "IN", "NNP", "NN", "NNS", "DT", "NN", ",", "VBG", "TO", "DT", "NN", "TO", "NNP", "NNP", "NNP", "NNP", "NNP", ".", "NNP", "NNP", "NNP", "POS", "JJ", "JJ", "NN", ",", "NNP", "NNP", ",", "JJ", "CC", "PRP$", "NN", ",", "NNP", "NNP", ",", "VBZ", "VBG", "RB", "-NONE-", "TO", "VB", "VB", "DT", "JJ", "NN", "RB", ",", "DT", "NN", "VBD", "-NONE-", "-NONE-", ".", "NNP", "NNP", "MD", "VB", "DT", "NN", "-NONE-", "TO", "VB", "NN", "CC", "VB", "NN", "NN", "``", "IN", "DT", "RBR", "JJ", "NN", "IN", "NN", "VBZ", "VBN", "CC", "VBN", "-NONE-", ",", "''", "NNP", "VBD", "-NONE-", "-NONE-", ".", "NNP", "NNP", ",", "RB", "NN", "NN", "NN", ",", "MD", "VB", "NNP", "NNP", ".", "DT", "JJ", "NN", "VBZ", "VBN", "NNP", "IN", "JJ", "NN", "CC", "DT", "JJ", "NN", "NN", "IN", "DT", "JJ", "NN", "VBZ", "DT", "NN", ".", "DT", "NN", "VBZ", "VBN", "NNS", "IN", "NN", "NN", "IN", "DT", "IN", "DT", "JJ", "CD", "NNS", ",", "IN", "JJ", "NNS", "NN", ".", "NNP", "RB", "VBD", "PRP$", "JJ", "NN", "IN", "DT", "CC", "DT", "NN", "POS", "NNP", "NNP", "NNS", "VBP", "VBG", "RB", "IN", "PRP$", "JJ", "NN", "IN", "CD", "JJ", "NNS", "-LRB-", "$", "CD", "-NONE-", "-RRB-", ".", "IN", "DT", "NNP", "NNP", "NNP", "NN", ",", "NNP", "NNS", "VBD", "RB", "CD", "JJ", "NNS", "TO", "$", "CD", "-NONE-", ".", "NNP", "NNP", ",", "NN", "CC", "VBG", "NN", "IN", "NNP", ",", "VBD", "IN", "NN", "NN", "NN", "JJ", "NN", "-NONE-", "TO", "VB", ",", "RB", ",", "DT", "NN", "IN", "NNP", "POS", "NNP", ".", "NNS", "VBD", "-NONE-", "NNP", "NNP", "VBZ", "-NONE-", "TO", "VB", "DT", "RBR", "JJ", "NN", "IN", "-NONE-", "VBG", "DT", "NN", ".", "PRP", "VBP", "PRP", "TO", "VB", "NNS", "IN", "DT", "NN", ".", "DT", "NN", "VBD", "-NONE-", "NNP", "NNP", "MD", "RB", "VB", "DT", "NN", ",", "-NONE-", "VBN", "-NONE-", "IN", "NNP", "NNP", ",", "NN", "CC", "NN", "NN", ".", "DT", "PRP", "CC", "NNP", "NNP", "MD", "VB", "VBN", "-NONE-", "IN", "NN", ".", "NNP", "VBD", "-NONE-", "NNP", "NNP", "VBD", "-NONE-", "TO", "VB", "DT", "NN", "NN", ",", "IN", "NNP", "IN", "CD", "IN", "PRP$", "NNS", ".", "NNP", "NNP", ",", "JJ", "NN", "IN", "NNP", "NNP", "NNP", "NNP", ",", "VBD", "VBN", "-NONE-", "DT", "JJ", "NN", "IN", "DT", "JJ", "NN", "NN", ".", "JJ", "NNS", "RB", "RB", "VBD", "RP", "CD", "JJ", "NN", "JJ", "JJ", "NNS", "VBG", "$", "CD", "CD", "-NONE-", ",", "DT", "NNP", "NNP", "NNP", "NNP", "NNP", "VBD", "-NONE-", "-NONE-", ".", "DT", "NNS", "VBP", "DT", "JJ", "NN", "IN", "JJ", "NNS", "IN", "NNP", "JJ", "NNS", ",", "NNP", "NNP", "POS", "NN", ",", "NNP", "NNP", "NNP", ",", "VBD", "-NONE-", "-NONE-", "IN", "DT", "NN", "NN", ".", "PRP", "VBD", "-NONE-", "RBR", "IN", "CD", "NN", "IN", "DT", "NNS", "VBD", "VBN", "-NONE-", "IN", "JJ", "JJ", "NNS", ".", "DT", "NN", "VBD", "TO", "NNS", "IN", "NNP", "CC", "NNP", "NNP", ".", "JJR", "DT", "NN", ",", "JJ", "NNS", "VBD", "RP", "DT", "JJ", ",", "$", "CD", "CD", "-NONE-", "JJ", "NNS", "JJ", "NN", ".", "DT", "NN", "VBD", "VBN", "-NONE-", "RP", "IN", "NNP", "NNP", ",", "DT", "NNP", "NNP", "NN", "NN", ".", "DT", "JJS", "CD", "NNS", "VBD", "VBN", "-NONE-", "RB", "IN", "NNP", ",", "NNP", "CC", "NNP", "IN", "DT", "NNP", "CC", "NNP", "POS", "NNP", "NNPS", "NNP", ".", "DT", "JJ", ",", "JJ", "NNS", ":", "CD", "VBG", "DT", "JJ", "NN", "CC", "DT", "JJ", "IN", "DT", "JJ", "NN", "VBN", "-NONE-", "TO", "DT", "NNP", "NN", "VBD", "NN", ":", "VBP", "CD", "JJ", "NNS", "TO", "JJ", "NNS", ".", "JJ", ",", "PRP", "VBP", "VBN", "-NONE-", "TO", "VB", "DT", "NN", "IN", "NN", ":", "JJ", "NNS", "MD", "VB", "VBN", "-NONE-", "RB", "IN", "NN", "NNS", "VBP", ",", "CC", "JJ", "NN", "VBZ", "NNS", "TO", "VB", "PRP$", "NN", "IN", "JJR", "NNS", ".", "JJ", ",", "PRP", "VBP", "JJ", "NN", "NNS", "IN", "JJ", "NNS", ",", "-NONE-", "VBG", "DT", "JJ", "NN", "IN", "NNS", ".", "IN", "-NONE-", "VBG", "DT", "NNS", ",", "NNP", "NNP", "VBD", "-NONE-", "-NONE-", ",", "DT", "JJ", "NNS", "VBP", "VBN", "``", "RB", "JJ", "TO", "JJ", "CC", "JJ", "NNS", "IN", "DT", "NNP", ".", "''", "JJ", "NNS", "VBP", "VBN", "JJ", "NN", "IN", "JJ", "NNS", "TO", "RBR", "IN", "CD", "NN", "IN", "DT", "$", "CD", "CD", "-NONE-", "IN", "JJ", "NNS", "JJ", ",", "CC", "PRP$", "NNS", "VBP", "VBG", "IN", "DT", "JJ", "NN", ".", "PRP", "RB", "VBP", "VBN", "JJ", "NNS", "IN", "NNP", "NNP", "POS", "JJ", "NN", ",", "-NONE-", "VBG", "$", "CD", "CD", "-NONE-", "IN", "NNP", "NNP", "NNS", "IN", "DT", "JJ", "CD", "NNS", "IN", "DT", "NN", ",", "CC", "RB", "DT", "NN", "IN", "DT", "JJ", "NN", "VBN", "-NONE-", ".", "NNP", "NNP", "NNP", ",", "JJ", "NN", "NN", "NN", ",", "VBD", "VBN", "-NONE-", "DT", "NN", "IN", "DT", "NN", "NN", ",", "-NONE-", "VBG", "DT", "NN", "TO", "CD", "NNS", ".", "NNP", "NNP", "VBD", "-NONE-", "DT", "JJ", "NN", "NN", "NN", "VBD", "-NONE-", "TO", "VB", "IN", "NNP", "CD", ",", "CD", ",", "DT", "NN", "IN", "WDT", "DT", "NN", ",", "NN", "CC", "NN", "NNS", "NN", "VBZ", "DT", "JJ", "NN", "-NONE-", "TO", "VB", "DT", "NN", "NN", "-NONE-", ".", "DT", "NN", "VBZ", "VBG", "IN", "NN", "CD", "IN", "DT", "JJ", "NNP", "NNP", ",", "-NONE-", "VBG", "PRP", "NN", "NN", "IN", "NNS", "POS", "NNS", "IN", "PRP", "VBZ", "-NONE-", "TO", "VB", "RP", "DT", "NN", "-NONE-", "TO", "VB", "PRP$", "NNS", ".", "JJ", "NN", "NN", "NNP", "NNP", ",", "IN", "PRP$", "NNP", "NNP", "NNP", "JJ", "NN", ",", "VBD", "PRP$", "$", "JJ", "-NONE-", "NN", "NN", "IN", "DT", "DT", "JJ", "NNS", "JJ", "IN", "NNP", "NNP", ",", "DT", "NN", "IN", "NNS", "VBN", "-NONE-", "IN", "DT", "NNPS", ".", "DT", "NN", ",", "VBN", "-NONE-", "IN", "NN", "POS", "NNS", "IN", "DT", "NNP", "NNP", "NNP", ",", "VBZ", "VBN", "-NONE-", "TO", "VB", "IN", "DT", "NN", "IN", "NNP", ".", "NN", "RB", "VBZ", "IN", "CD", "NN", "IN", "NN", "POS", "JJ", "NNS", "JJ", ".", "DT", "NN", "VBZ", "VBG", "VBN", "-NONE-", "JJ", "TO", "DT", "RB", "VBN", "NN", "IN", "DT", "NNS", ".", "NNP", "POS", "NNS", "IN", "NN", ",", "JJ", "JJ", "NNS", ",", "CC", "JJ", "NN", "NNS", "VBD", "IN", "DT", "JJ", "$", "CD", "CD", "-NONE-", "IN", "NNP", "TO", "$", "CD", "CD", "-NONE-", ",", "DT", "NNP", "NNP", "VBD", "-NONE-", "-NONE-", ".", "DT", "NN", "VBZ", "DT", "JJ", "JJ", "JJ", "NN", ".", "DT", "JJ", "NN", "VBZ", "DT", "NN", "IN", "NNP", "IN", "NNP", "JJ", "NN", "IN", "NNP", ",", "WRB", "DT", "NNP", "NN", "RB", "VBD", "IN", "DT", "CD", "NNS", "NN", "-NONE-", ".", "DT", "NN", "VBZ", "DT", "JJR", "$", "CD", "CD", "-NONE-", "NN", "IN", "DT", "NN", "POS", "JJ", "NNS", "IN", "NNP", "TO", "$", "CD", "CD", "-NONE-", ".", "-NONE-", "VB", "DT", "NN", ",", "DT", "NN", ".", "PRP", "VBZ", "DT", "JJS", "NN", "NN", "VBG", "NNP", "NNP", ":", "DT", "NN", "IN", "JJ", "JJ", "NN", "NNS", ",", "DT", "RB", "VBN", "NNS", "WDT", "-NONE-", "VBP", "IN", "NNS", "IN", "DT", "JJ", "JJ", "NN", ".", "RB", "JJR", "IN", "CD", "NN", "NNS", "-NONE-", "VBP", "VBN", "VBN", "-NONE-", "CC", "VBN", "-NONE-", "IN", "NNS", "DT", "NN", ",", "RB", "DT", "NN", "IN", "DT", "IN", "CD", ",", "VBG", "TO", "NNP", "NNP", "NNP", "CC", "NNP", ",", "DT", "JJ", "NN", "NN", ".", "DT", "NN", "RB", "VBZ", "VBN", "IN", "NNP", "TO", "NNP", "TO", "NNP", ".", "JJ", "NN", ",", "DT", "NNP", "NNP", "POS", "NN", "MD", "VB", "VBN", "-NONE-", "IN", "DT", "NN", "IN", "JJ", "NNP", "NNP", "NNP", ":", "NNP", "JJ", "NN", "-NONE-", "DT", "NN", "IN", "NN", "VBZ", "VBN", "RP", "DT", "NN", "IN", "DT", "NNP", "NNP", "RB", "-NONE-", ".", "DT", "JJ", "NN", ".", "``", "NN", "VBZ", "JJ", ":", "WRB", "RP", "DT", "NNP", "NNP", "NNP", ".", "''", "VBZ", "-NONE-", "NNP", "NNP", ",", "DT", "VBG", "NN", "IN", "NNP", "NNP", "NNP", "IN", "NNP", ",", "NNP", ".", "DT", "JJ", "NN", "IN", "NN", "NNS", "VBZ", "DT", "``", "JJ", "NN", "NN", "''", "IN", "DT", "NNS", ",", "NNP", "NNP", "VBZ", "-NONE-", "-NONE-", ",", "WRB", "RB", "VBN", "NNS", "VBD", "RB", "JJ", "-NONE-", ".", "PRP", "VBD", "IN", "NN", "IN", "DT", "CD", "NN", ".", "IN", "JJ", "JJ", "JJ", "NNS", ",", "RBS", "IN", "DT", "JJ", "NNS", "VBP", "DT", "``", "JJ", "''", "NN", ",", "-NONE-", "VBG", "DT", "VBN", "NN", "IN", "NNS", "WDT", "-NONE-", "VBP", "RB", ".", "DT", "NN", "VBZ", "TO", "RB", "CD", "DT", "NN", "IN", "NN", "NNS", "WDT", "-NONE-", "VBP", "-NONE-", "CC", "RB", "MD", "VB", "-NONE-", "VBN", "-NONE-", "IN", "NNP", "NNP", "CC", "NNP", ".", "DT", "NNS", "RB", "VBP", "IN", "JJ", "NNS", "IN", "NNS", "IN", "NNS", ".", "``", "NNS", "VBP", "VBG", "-NONE-", "TO", "VB", "PRP$", "NNS", "''", "RB", "RB", "DT", "NN", "IN", "JJ", "NNS", "VBZ", "RP", ",", "VBZ", "-NONE-", "NNP", "NNP", ",", "DT", "NN", "IN", "NNP", "NNP", ",", "NNP", "NNP", "CC", "NNP", ",", "NNP", "NNP", ".", "IN", "DT", "DT", "NN", "VBZ", "-NONE-", "DT", "JJ", "NN", ".", "IN", "JJ", "NNS", "VBP", "VBN", "RB", "IN", "DT", "NN", "NN", "IN", "DT", "NNS", ",", "NNS", "NNS", "VBP", "VBN", "-NONE-", "TO", "VB", "JJ", "NNS", "WDT", "NNS", "VBP", "-NONE-", "JJ", "-NONE-", "-NONE-", "TO", "VB", "-NONE-", ".", "CC", "DT", "NNS", "VBP", "VBG", "PRP$", "NNS", "RB", "CC", "RB", "-NONE-", "TO", "VB", "PRP", ".", "JJ", "NNS", "RB", "VBP", "NNS", "-NONE-", "TO", "VB", "CC", "TO", "VB", "DT", "NN", "IN", "JJ", "NNS", ".", "CC", "JJ", "VBG", "NNS", "VBP", "VBN", "RBR", "JJ", "NNS", ",", "JJ", "IN", "DT", "NNP", "CC", "NNP", ".", "NN", "NNS", "VBP", "DT", "JJ", "NN", "-NONE-", "-NONE-", "TO", "VB", "DT", "NN", "IN", "JJ", "NNS", "IN", "DT", "JJ", "NN", "IN", "-NONE-", "VBG", "RP", "JJ", "NNS", "-NONE-", ".", "CC", "PRP", "VBZ", "RB", "VB", "JJ", "-NONE-", "TO", "VB", "VBN", "-NONE-", ".", "JJ", "CC", "NN", "NNS", "MD", "VB", "DT", "NNS", ".", "DT", "NN", ":", "DT", "NNS", "POS", "NN", "NNS", "VBP", "-NONE-", "TO", "VB", "RBR", "IN", "DT", "JJR", "NN", ".", "WRB", "DT", "NN", "NN", "VBD", "RB", "CD", "NN", "NNP", "CD", "-NONE-", ",", "IN", "NN", ",", "DT", "NNP", "NNP", "VBD", "RB", "CD", "NN", "CC", "DT", "NNP", "NNP", "VBD", "CD", "NN", ".", "CC", "JJS", "NN", "NNS", "VBD", "VBN", "-NONE-", "RBR", "IN", "JJS", "NNS", "IN", "DT", "CD", "NN", ".", "WP", "-NONE-", "-NONE-", "VBZ", "RB", "JJ", "IN", "DT", "NNS", "POS", "NN", "RB", "RB", "VBZ", "IN", "JJ", "VBP", "VBG", "IN", "RB", "JJ", "NNS", "TO", "DT", "NN", "IN", "PRP$", "JJ", "NNS", ".", "IN", "-NONE-", "VBG", "IN", "DT", "JJ", "NN", "IN", "JJR", "IN", "CD", "NN", "IN", "JJ", "CD", "CC", "NN", "IN", "JJ", "NN", ",", "NN", "NNS", "RB", "VBP", "IN", "DT", "JJ", "NN", "IN", "CD", "NN", ".", "DT", "NN", ":", "NN", "NNS", "IN", "JJ", "IN", "DT", "NNS", "DT", "NN", "VBP", "VBN", "RB", "RBR", "RB", "IN", "DT", "JJ", "NNS", "-NONE-", "PRP", "VBP", "-NONE-", ".", "PRP", "VBZ", "RB", "IN", "-NONE-", "VBG", "DT", "NN", "IN", "NNS", "WDT", "-NONE-", "VBP", "IN", "NNS", "WDT", "-NONE-", "VBP", "RB", "VBN", "TO", "JJ", "NNS", ",", "JJ", "IN", "NNP", "NNP", ",", "DT", "NNS", "VBP", "-NONE-", "-NONE-", ".", "CC", "DT", "JJ", "NNS", "RB", "VBP", "VBN", ":", "NNP", "NNP", "VBZ", "VBN", "TO", "DT", "JJ", "CD", "NN", "NN", ".", "PRP", "VBZ", "VBN", "VBN", "-NONE-", "IN", "JJ", "NNS", "IN", "DT", "JJ", "JJ", "NN", "VBN", "-NONE-", "TO", "CD", "POS", "JJ", "JJ", "NN", ".", "CC", "JJ", "JJ", "NNS", "WDT", "-NONE-", "VBP", "RB", "RB", "RB", "VBN", "RB", "VBP", "VBN", "-NONE-", "TO", "VB", "IN", "JJ", "NNS", ".", "``", "PRP", "VBP", "RB", "VBN", "-NONE-", "TO", "VB", "DT", "JJ", "NNS", ",", "''", "VBZ", "-NONE-", "NNP", "NNP", "POS", "NNP", "NNP", ".", "DT", "RB", "VBN", "NNS", "VBP", "DT", "RB", "JJ", "NN", "IN", "DT", "NN", "NNS", ",", "NNP", "NNP", "VBZ", "-NONE-", "-NONE-", ".", "IN", "JJ", "NNP", "NNS", ",", "DT", "IN", "NNP", "CC", "NNP", "VBG", "JJ", "NN", "MD", "VB", "RBR", "JJ", "TO", "-NONE-", "VBG", "JJR", "NNS", "IN", "NN", "NNS", ".", "``", "EX", "MD", "VB", "DT", "JJ", "NN", "VBN", "-NONE-", "IN", "DT", "NNS", "VBN", "-NONE-", "RB", ",", "''", "NNP", "NNP", "VBZ", "-NONE-", ".", "RB", ",", "JJ", "IN", "NNP", "NNS", "CC", "NN", "NNS", "VBP", "JJ", "IN", "DT", "JJ", "NN", "NNS", "IN", "DT", "NN", "NNS", ".", "PRP", "VBP", "IN", "NNP", "NNS", "RB", "MD", "VB", "JJ", "JJ", "NNS", "IN", "DT", "JJ", "NNS", "IN", "JJ", "NNS", ":", "DT", "JJ", "NNPS", "VBP", "NNS", "IN", "JJ", "NNS", "VBN", "-NONE-", "IN", "DT", "NNP", ".", "DT", "NN", "NNS", "MD", "RB", "VB", "DT", "NNS", "IN", "-NONE-", "VBG", "DT", "NN", ".", "IN", "NNS", "WP", "-NONE-", "VBP", "RP", "-NONE-", "VBG", "RB", "RB", "-NONE-", "TO", "VB", "DT", "NNS", ",", "NNP", "POS", "NNP", "NNP", "VBZ", ":", "``", "DT", "JJ", "NN", "-NONE-", "PRP", "VBP", "-NONE-", "IN", "DT", "NNS", "VBZ", "IN", "DT", "WP", "-NONE-", "VBP", "TO", "DT", "NN", "RB", "VBD", "RBR", "-NONE-", "VB", "JJ", "-NONE-", "TO", "VB", "RB", ".", "DT", "NNP", "CC", "NNP", "NNP", "VBP", "VBG", "JJ", "NNS", "IN", "JJ", "NN", "IN", "NNP", "IN", "$", "CD", "CD", "-NONE-", "IN", "JJ", "JJ", "NNS", "VBD", "-NONE-", "TO", "DT", "NNP", "NN", ",", "DT", "NNP", "NNP", "VBD", "-NONE-", "-NONE-", ".", "IN", "DT", "NNS", "VBP", "VBN", "-NONE-", ",", "PRP", "MD", "VB", "DT", "NN", "-NONE-", "IN", "JJ", "NNS", "TO", "VB", "VBN", "-NONE-", "IN", "DT", "NNP", "-NONE-", ".", "RB", ",", "IN", "CD", "NNS", "IN", "DT", "NNS", ",", "DT", "NNP", "NNP", "NN", "VBD", "IN", "PRP", "-NONE-", "VBZ", "``", "RB", "RB", "-NONE-", "TO", "VB", "''", "IN", "DT", "MD", "VB", ".", "JJ", "IN", "DT", "NNS", ",", "DT", "NNP", "NNP", "VBD", "-NONE-", "PRP", "VBZ", "VBN", "DT", "JJ", "NN", "TO", "VB", "DT", "NNP", "NNP", "NN", ".", "DT", "NN", "IN", "DT", "NNP", "IN", "NNP", "NNP", "NNP", "VBD", "VBN", "-NONE-", "JJ", "NN", "CC", "VBD", "IN", "NNP", ".", "CC", "DT", "JJ", "NN", "RB", "MD", "VB", "VBN", "-NONE-", "IN", "NNP", "VBD", "DT", "NN", "-NONE-", "-NONE-", "TO", "VB", "DT", "$", "CD", "CD", "-NONE-", "NN", ",", "WDT", "-NONE-", "VBD", "VBN", "-NONE-", "TO", "DT", "NN", "POS", "JJ", "JJ", "NNP", "NN", "IN", "DT", "NNS", "VBD", "NN", "IN", "CD", "-NONE-", ".", "IN", "DT", "CD", "NN", ",", "DT", "NNP", "NNP", "NNP", "NNP", ",", "RB", "-NONE-", "VBN", "-NONE-", ",", "PRP", "-NONE-", "VBZ", "JJ", "IN", "NNS", "TO", "VB", "NN", "TO", "NNS", "IN", "NN", "TO", "DT", "NNP", "NN", ",", "IN", "PRP", "VBP", "NNS", "IN", "DT", "NNP", "NNP", "CC", "NNP", "NNP", "NNP", ".", "DT", "NNP", "VBZ", "TO", "DT", "NN", ".", "NNP", "VBZ", "VBN", "JJ", "NNS", "IN", "JJ", "NNS", "IN", "JJ", "NNS", "IN", "JJR", "IN", "NN", "NN", ".", "DT", "NNP", "NNP", "VBD", "DT", "JJ", "NNS", "IN", "DT", "NN", "TO", "-NONE-", "VBG", "DT", "NNP", "NNP", ".", "CC", "DT", "NNS", "MD", "RB", "VB", "JJ", "NNS", "TO", "-NONE-", "VBG", "NN", "IN", "DT", "NNP", "IN", "PRP", "VBP", "NNS", "IN", "NNS", "IN", "NNS", "IN", "JJ", "NN", "RB", "JJ", "IN", "DT", "NNP", "NNP", "NNP", "JJ", "NN", ".", "IN", "DT", "NN", "IN", "DT", "NN", "IN", "DT", "NN", "VBZ", "VBG", "RP", ",", "DT", "NN", "VBD", "IN", "NNS", "IN", "VBN", "NNS", "CC", "NN", "IN", "NN", "VBD", "-NONE-", "TO", "VB", "IN", "NNP", ".", "RB", ",", "DT", "NNP", "NNP", "IN", "NNP", "NNP", "VBD", "-NONE-", "PRP$", "JJS", "NN", "VBD", "IN", "DT", "NN", "NN", "VBD", "IN", "NNP", "IN", "DT", "JJ", "JJ", "NN", ".", "PRP$", "NN", "VBD", "RB", "TO", "CD", "NN", "IN", "NNP", "IN", "CD", "NN", "IN", "NNP", ".", "DT", "NN", "IN", "CD", "NN", "VBZ", "-NONE-", "DT", "NN", "NN", "VBZ", "RB", "VBG", ".", "DT", "VBG", "NNS", ",", "RB", ",", "RB", "VBD", "IN", "NNS", "VBD", "RB", "IN", "NNP", "IN", "CD", "NNS", "IN", "NN", ".", "NNS", "VBD", "$", "CD", "CD", "-NONE-", "IN", "NNS", "-NONE-", "IN", "NNP", ",", "RB", "DT", "JJ", "IN", "DT", "$", "CD", "CD", "-NONE-", "IN", "NNP", ",", "DT", "NNP", "NNP", "VBD", "-NONE-", "-NONE-", ".", "IN", "RB", "IN", "DT", "CD", "NN", "NN", "IN", "NNS", "IN", "NN", "NNS", "IN", "NN", "NNS", ",", "NN", "NNS", "MD", "VB", "VBN", "CD", "NN", ".", "IN", "DT", "JJ", "NN", ",", "DT", "NN", "VBD", "-NONE-", "NN", "NN", "VBD", "IN", "DT", "JJ", "NN", "IN", "$", "CD", "CD", "-NONE-", ",", "RB", "RB", "JJ", "IN", "DT", "$", "CD", "CD", "-NONE-", "VBN", "-NONE-", "IN", "NNP", ".", "JJ", "NN", "NN", "VBD", "RB", ",", "CC", "NN", "NN", "NN", "VBD", "RB", ".", "DT", "NNS", "IN", "DT", "NNS", "VBD", "VBN", "-NONE-", "-NONE-", "TO", "VB", "DT", "NNS", "IN", "JJ", "JJ", "NNS", ",", "CC", "VBD", "RB", "VBN", "IN", "NN", ".", "NNP", "NNP", ",", "NN", "IN", "NNP", "NNP", ",", "DT", "NNP", "NN", ",", "VBD", "-NONE-", "NN", "IN", "NNS", "IN", "NN", "NNS", "VBZ", "VBG", "-NONE-", "TO", "VB", "RP", ".", "IN", "DT", "JJ", "NN", ",", "DT", "NN", "IN", "NN", "NNS", "IN", "DT", "NN", "VBZ", "VBN", "-NONE-", "TO", "VB", "DT", "JJ", "NN", "NN", ".", "``", "WP", "NN", "VBZ", "-NONE-", "VBG", "RB", "-NONE-", "TO", "VB", "RP", "DT", "NN", ".", "''", "PRP", "VBD", "-NONE-", ".", "``", "PRP", "VBP", "DT", "NN", ".", "''", "IN", "JJS", "NNS", ",", "DT", "NN", "POS", "JJ", "NN", "VBZ", "RB", "VBG", "RB", "RB", ":", "IN", "IN", "DT", ".", "NN", "NNS", "VBD", "IN", "NNP", ".", "RB", "VBD", "-NONE-", "-NONE-", "DT", "NNP", "NNP", "NNP", "POS", "JJ", "NN", ".", "CC", "JJ", "NNS", "VBP", "RB", "VBG", "IN", "DT", "NN", "VBZ", "IN", "-NONE-", "TO", "VB", "IN", "NN", ".", "PRP", "VBP", "DT", "NN", "IN", "``", "NNS", "''", "WDT", "-NONE-", "VBP", "JJ", "NN", "NNS", "IN", "DT", "NN", ".", "NNS", "VBP", "RB", "VBN", "-NONE-", "IN", "JJ", "NNS", ",", "IN", "NN", ".", "NNS", "VBP", "-NONE-", "DT", "NN", "IN", "NNS", "MD", "VB", "NNS", "IN", "NN", "WDT", "-NONE-", "MD", "VB", "TO", "DT", "NN", ".", "CC", "NN", "POS", "NN", "NNS", "NN", "VBD", "JJ", "NN", "IN", "DT", "NN", ":", "PRP", "VBD", "-NONE-", "NN", "NNS", "VBD", "CD", "NN", "IN", "NNP", ",", "DT", "JJ", "NN", "IN", "NNP", "CD", ".", "``", "DT", "VBZ", "TO", "DT", "``", "JJ", "NN", "''", "NN", ",", "''", "VBD", "-NONE-", "NNP", "NNP", ",", "DT", "NN", "IN", "NNP", ",", "NNP", "CC", "NNP", "NNP", "NNP", ".", "``", "PRP", "VBP", "RB", "VB", "DT", "NNS", "IN", "NNS", "VBP", "JJ", ".", "''", "DT", "JJ", "NN", "VBZ", "DT", "JJ", "NN", "WDT", "-NONE-", "VBZ", "NN", "IN", "-NONE-", "VBG", "TO", "DT", "NN", ".", "DT", "NN", "VBD", "-NONE-", "NNS", "IN", "JJ", "NNS", ":", "DT", "VBN", "-NONE-", "TO", "VB", "JJR", "IN", "CD", "NNS", ":", "VBD", "CD", "NN", "IN", "NNP", "TO", "$", "CD", "CD", "-NONE-", "RB", "-NONE-", "VBG", "CD", "NN", "DT", "NN", "RB", ".", "NNS", "IN", "JJ", "NNS", "VBD", "RB", "CD", "NN", "TO", "$", "CD", "CD", "-NONE-", "IN", "-NONE-", "VBG", "CD", "NN", "DT", "NN", "RB", ".", "DT", "NN", "RB", "VBD", "IN", "NNS", "NNS", "VBD", "CD", "NN", "IN", "NNP", ".", "NN", "NNS", "VBD", "CD", "NN", "TO", "$", "CD", "CD", "-NONE-", "IN", "-NONE-", "VBG", "CD", "NN", "IN", "NNP", ".", "NNS", "VBP", "VBN", "RB", "JJ", "IN", "NNP", ",", "DT", "NNP", "NNP", "VBD", "-NONE-", "-NONE-", ".", "NNS", "POS", "NNS", "IN", "JJ", "NNS", "VBD", "CD", "NN", "IN", "NNP", "TO", "$", "CD", "CD", "-NONE-", ",", "-NONE-", "VBN", "-NONE-", "IN", "NN", "IN", "DT", "NN", "NN", "NNS", "NN", ".", "VBG", "DT", "NNS", ",", "NNS", "VBD", "CD", "NN", ".", "IN", "PRP$", "NN", "NN", "NN", ",", "DT", "NNP", "NNP", "VBD", "-NONE-", "JJ", "NN", ",", "WDT", "-NONE-", "VBZ", "IN", "RB", "NN", "IN", "DT", "NN", "NN", ",", "VBD", "JJ", "CD", "NN", "-NONE-", "IN", "NNP", "TO", "DT", "JJ", "NN", "IN", "$", "CD", "CD", "-NONE-", ".", "NNP", "NNP", ",", "NN", "IN", "DT", "NNP", "NNP", "NNP", ",", "VBD", "-NONE-", "DT", "NN", "IN", "NN", "NNS", "RB", "MD", "VB", "NN", "IN", "JJ", "NNS", ",", "CC", "RB", "RB", "IN", "JJ", "JJ", "NN", ".", "NN", "IN", "JJ", ",", "JJ", "NN", "VBD", "JJ", "CD", "NN", "TO", "DT", "JJ", "NN", "IN", "$", "CD", "CD", "-NONE-", "IN", "DT", "NN", "VBG", "NN", ".", "NNP", "NN", "NN", "VBD", "CD", "NN", "TO", "$", "CD", "CD", "-NONE-", ".", "RB", "-NONE-", "VBG", "IN", "NN", ",", "DT", "NNP", "NNP", "VBD", "-NONE-", "NN", "NN", "VBD", "RB", "VB", "IN", "NNP", ".", "IN", "DT", "JJ", "CD", "NNS", "IN", "DT", "NN", ",", "JJ", "NN", "NN", "VBD", "RB", "CD", "NN", "IN", "JJ", "NN", "POS", "NN", ".", "DT", "NN", "POS", "NN", "NN", "NNS", "VBP", "IN", "DT", "NN", "VBD", "-NONE-", "RBR", "IN", "DT", "NN", "IN", "NNP", "NNP", "POS", "NNP", "NNP", "NNP", ".", "NNP", "VBD", "DT", "CD", "NN", "NN", "IN", "NN", "NNS", "VBN", "-NONE-", "IN", "NNP", ".", "DT", "NN", "VBZ", "NN", "IN", "PRP", "VBZ", "VBN", "-NONE-", ":", "NNP", "VBZ", "NNS", "WRB", "PRP", "VBP", "VBN", "-NONE-", "-NONE-", ".", "DT", "NN", "VBZ", "NN", "VBN", "-NONE-", "IN", "JJ", "NN", ":", "NNP", "VBZ", "RB", "-NONE-", ".", "IN", "DT", "NN", "NNS", "POS", "NN", "VBZ", "-NONE-", "TO", "VB", "DT", "VBG", "NN", ",", "PRP", "VBZ", "RB", "VBG", "DT", "JJ", "NN", ",", "VBD", "-NONE-", "-NONE-", "NNP", "NNP", ",", "NN", "IN", "DT", "NN", "POS", "NN", "NN", "CC", "NN", "IN", "NNS", "NN", "IN", "NNP", "NNP", "NNP", ",", "NNP", ",", "NNP", ".", "PRP", "VBD", "-NONE-", "DT", "NN", "MD", "VB", "-NONE-", "TO", "VB", "IN", "DT", "JJ", "CD", "NN", "NN", "IN", "JJ", "NNS", "-NONE-", "TO", "VB", "VBN", "-NONE-", "DT", "NN", "IN", "NN", ".", "DT", "NN", "VBD", "JJ", "NN", "IN", "DT", "NN", "POS", "NN", "NN", ",", "IN", "-NONE-", "RB", "VBG", ",", "MD", "VB", "VBG", ".", "RB", "CD", "NN", "IN", "DT", "VBG", "NNS", "VBD", "JJR", "NN", "NNS", "IN", "NNP", ",", "RB", "IN", "CD", "NN", "IN", "NNP", ".", "CC", "CD", "NN", "-NONE-", "VBD", "-NONE-", "NN", "NNS", "VBD", "RB", "JJ", "NN", ",", "VBN", "IN", "CD", "NN", "DT", "NN", "RB", ".", "DT", "NN", "NNS", "POS", "NN", "RB", "VBD", "NN", "IN", "NN", "VBZ", "IN", "NN", ".", "IN", "DT", "JJ", "JJ", "NN", ",", "VBG", "NNS", "VBD", "-NONE-", "NNS", "IN", "DT", "NNS", "-NONE-", "PRP", "VBD", "-NONE-", "VBD", ".", "DT", "NN", "VBD", "RB", "JJR", "IN", "IN", "NNP", ".", "PRP", "RB", "VBD", "IN", "NNS", "VBD", "VBG", "NNS", "RBR", "RB", "-NONE-", "IN", "NNP", "IN", "PRP", "VBD", "-NONE-", "IN", "DT", "IN", "DT", "CD", "JJ", "NNS", ".", "NNS", "VBP", "DT", "DT", "NN", "IN", "JJ", "NNS", "VBP", "VBG", ".", "WRB", "NN", "VBZ", "JJR", "IN", "NNS", "MD", "VB", "-NONE-", "CC", "NN", "NNS", "VBP", "-NONE-", ",", "NNS", "VBP", "-NONE-", "TO", "VB", ".", "DT", "NN", "NNS", "POS", "NN", "VBZ", "VBN", "-NONE-", "IN", "NNS", "VBN", "-NONE-", "IN", "RBR", "IN", "CD", "NN", "NNS", ".", "DT", "IN", "DT", "NN", "POS", "NNS", "VBZ", "DT", "NN", "IN", "DT", "NN", "IN", "NNS", "VBG", "NN", "IN", "DT", "JJ", "NN", "CC", "DT", "NN", "VBG", "DT", "NN", ".", "IN", "DT", "JJ", "NN", ",", "DT", "NNP", "NN", "VBD", "NNS", "IN", "NNS", ".", "PRP", "VBD", "IN", "IN", "DT", "CD", "NN", "WP", "-NONE-", "VBP", ",", "CD", "NN", "-NONE-", "VBD", "-NONE-", "PRP", "VBD", "RBR", "IN", "NNP", "CC", "CD", "NN", "-NONE-", "VBD", "-NONE-", "PRP", "VBD", "JJR", "IN", "DT", "JJ", "NN", ".", "IN", "-NONE-", "VBG", "-NONE-", "CD", "NN", "POS", "NNS", "VBP", "RB", "VB", "DT", "NN", ",", "NNP", "NNP", "VBD", ",", "``", "PRP", "VBZ", "VB", "PRP", "TO", "VB", "-NONE-", "NNS", "VBP", "VBG", "RB", ",", "CC", "IN", "JJS", "RB", "VBG", "RB", "RB", ".", "''", "NNS", "VBN", "-NONE-", "IN", "-NONE-", "VBG", "IN", "JJ", "NN", "VBD", "RB", "RB", "DT", "NN", ",", "CC", "PRP", "VBD", "CD", "NN", ":", "NN", "CC", "NN", "NN", ".", "``", "PRP", "VBZ", "DT", "JJ", "NN", "-NONE-", "-NONE-", "TO", "VB", "-NONE-", "IN", "DT", "NN", ",", "''", "NNP", "NNP", "VBD", "-NONE-", ".", "PRP", "VBD", "IN", "IN", "DT", "JJ", "NN", "IN", "DT", "NN", ",", "NN", "NNS", "VBD", "DT", "NN", "IN", "JJ", "JJ", "NN", ".", "PRP", "VBD", "VBN", "NN", "IN", "NN", "NNS", "IN", "DT", "NN", "IN", "RB", "JJ", "NNP", "NNS", "IN", "JJ", "NN", ",", "VBN", "-NONE-", "IN", "RB", "JJ", "NN", "NNS", ".", "NNP", "NNP", "IN", "NNP", "NNP", "VBD", "TO", "DT", "NN", ".", "RB", "VBP", "-NONE-", "DT", "NNP", "NNP", "POS", "NNS", "IN", "NN", "NN", "IN", "NNS", "IN", "NNS", "IN", "RB", "VBN", "JJ", "NNS", ".", "RB", "VBP", "-NONE-", "DT", "NNP", "NNP", "POS", "JJS", "NNS", "IN", "NNS", "IN", "NNS", "IN", "NNS", ",", "RB", "VBN", ".", "-NONE-", "VBG", "IN", "DT", "NNS", "IN", "NNP", "NNP", "POS", "``", "DT", "NNP", "NNP", "NNP", "''", "-LRB-", "NNP", ",", "CD", "NNS", ",", "$", "CD", "-NONE-", "-RRB-", ",", "NN", "NNS", "IN", "DT", "NNS", "IN", "DT", "NNP", "VBP", "DT", "NN", "IN", "NN", ".", "IN", "-NONE-", "VBN", "-NONE-", "IN", "NNP", ",", "DT", "NN", "POS", "NN", "VBZ", "RB", "RB", "JJ", ",", "RB", "JJ", ".", "NNS", "VBP", "NNP", "NNP", ",", "VBP", "``", "NNP", "NNP", "NNP", "''", "CC", "VBP", "NNP", "NNP", "NNS", ".", "PRP", "VBP", "NNP", "NNP", "CC", "VBP", "IN", "NNP", "CC", "NNP", ".", "PRP", "VBP", "IN", "PRP$", "NNS", ",", "VBP", "RB", "RB", "CC", "VBP", "IN", "VBN", "NNS", "CC", "JJ", "NNS", ".", "DT", "VBZ", "NNP", ".", "IN", "DT", "JJ", "NN", ",", "NN", "IN", "DT", "NN", "IN", "DT", "JJ", "NN", "MD", "VB", "IN", "-NONE-", "VBG", "IN", "NNP", "VBZ", "RB", "DT", "JJ", "NN", "IN", "JJ", "JJ", "NN", ".", "PRP", "-NONE-", "VBZ", "RB", "VBG", "-NONE-", "TO", "VB", "DT", "JJ", "NN", "WP", "-NONE-", "RB", "VBZ", "RB", "VB", "TO", "DT", "JJ", "``", "JJ", "''", "NN", "IN", "NNS", "WP", "-NONE-", "VBP", "DT", "NN", "IN", "DT", "JJ", "NN", ",", "JJ", "IN", "NNS", ".", "IN", "``", "DT", "NNP", "NNP", "NNP", "''", "VBZ", "DT", "JJ", "NN", "IN", "JJ", "NNS", ",", "PRP", "VBZ", "IN", "DT", "NNS", "VBP", "RBR", "IN", "PRP", "IN", "JJS", "IN", "PRP", "VBP", "-NONE-", "-NONE-", ".", "DT", "VBZ", "RB", "-NONE-", "TO", "VB", "IN", "DT", "JJ", "NN", "IN", "``", "DT", "NNP", "NNP", "NNP", "''", "VBZ", "VBN", "-NONE-", "IN", "NN", ".", "PRP", "VBZ", "JJ", "CC", "RB", "JJ", ".", "DT", "JJ", ",", "JJ", ",", "JJ", "NN", "VBZ", "RP", "IN", "NN", "NN", "IN", "NN", "IN", "DT", "JJ", "NN", "IN", "DT", "NN", "IN", "PRP$", "NN", "IN", "DT", "NN", "IN", "DT", "JJ", ",", "JJ", "NN", "IN", "DT", "NNP", "NN", ".", "PRP", "VBZ", "IN", "NN", "PRP$", "JJ", "NN", ",", "WP$", "JJ", "NNS", "-NONE-", "VBP", "PRP", "IN", "NN", "CC", "DT", "JJ", "NN", ".", "IN", "DT", "NN", ",", "PRP", "VBZ", "DT", "JJ", "JJ", "NN", "WP", "-NONE-", "VBZ", "DT", "NN", "NNP", "POS", "NN", "NN", ":", "CC", "DT", "NNP", "NNP", ",", "DT", "JJ", ",", "JJ", "NN", "WP", "-NONE-", "VBZ", ":", "WP", "RB", ":", "JJ", "NN", ".", "DT", "JJ", "NNP", "NNP", "VBZ", "DT", "NN", "NN", "IN", "NNP", ".", "DT", "RBR", "JJ", "NN", ",", "``", "NNP", "NNP", "''", "-LRB-", "DT", "NN", "IN", "CD", "VBZ", "-NONE-", "TO", "VB", "JJ", "IN", "NNP", "NNS", "-RRB-", ",", "VBZ", "VBN", "JJR", "IN", "CD", "CD", "NNS", "IN", "NNP", "VBD", "PRP", "IN", "CD", ".", "CC", "PRP", "VBZ", "RB", "CD", "IN", "JJ", "JJ", "NNS", ":", "NNP", "POS", "NN", "NN", ":", "WP", "-NONE-", "VBP", "VBG", "DT", "NN", "NNS", "IN", "NNP", ".", "PRP$", "NNS", "VBP", "VBN", "-NONE-", "IN", "JJ", ",", "JJ", "NN", "CC", "RB", "VBP", "JJ", "NNS", "IN", "NNS", ".", "IN", "NNP", "NNP", "POS", "``", "PRP", "NNP", "NNP", ",", "''", "-LRB-", "NNP", ",", "CD", "NNS", ",", "$", "CD", "-NONE-", "-RRB-", ",", "DT", "NNP", "VBP", "NN", "TO", "NN", ",", "IN", "DT", "JJ", "NN", "-NONE-", "PRP", "MD", "VB", "RB", "VBN", "-NONE-", "TO", "VB", "-NONE-", "DT", "``", "NN", ".", "''", "IN", "NNP", "NNP", "VBZ", "PRP", ",", "JJ", "NN", "VBZ", "DT", "``", "NN", "IN", "NNP", "POS", "JJ", "NNS", "IN", "JJ", "NN", "CC", "NN", ".", "''", "``", "NNP", "''", "VBZ", "NNP", "IN", "``", "NN", "NN", "''", "CC", "JJ", "NNS", "VBP", "NNS", "CC", "NNS", "IN", "PRP", ".", "DT", "NN", "POS", "NN", "TO", "NN", "CC", "NN", "NN", "VBZ", "RB", "JJ", "IN", "PRP$", "NN", "NN", ".", "NNS", "RB", "VBD", "NNP", "NNP", "NN", "NNP", "NNP", ",", "DT", "``", "JJ", ",", "JJ", ",", "JJ", "NN", ",", "''", "IN", "DT", "JJ", "NN", "IN", "NNP", ".", "CC", "JJ", "IN", "DT", "NN", "DT", "FW", "VBZ", "VBN", "-NONE-", "IN", "DT", "NN", "CC", "DT", "NN", ",", "PRP", "VBZ", "JJ", ":", "NNS", "RB", "VBP", "JJ", "NNS", "TO", "NN", "NNS", ":", "DT", "NN", "NN", "VBZ", "VBG", "IN", "DT", "NN", "IN", "DT", "NN", ":", "NNS", "VBP", "VBN", "-NONE-", ":", "JJ", "VBN", "-NONE-", ":", "IN", "PRP", "RB", "VBP", "DT", "NN", "IN", "NN", ":", "NNS", "MD", "VB", "IN", "JJ", "NNS", "IN", "NN", "RB", "IN", "PRP$", "JJ", "NNS", ":", "NNS", "IN", "DT", "NNP", "NNP", ",", "IN", "NN", ",", "MD", "RB", "VB", "NNS", "WRB", "IN", "DT", "NN", ".", "``", "PRP", "NNP", "NNP", "NNP", "''", "VBZ", "DT", "RB", "JJ", "NN", "IN", "WRB", "JJ", "NNS", ",", "VBN", "-NONE-", "TO", "CD", "IN", "NN", ",", "VBP", "-NONE-", "IN", "NNP", ".", "IN", "DT", "JJ", "NNS", "IN", "NN", "-NONE-", "PRP", "VBP", "VBN", "-NONE-", "-NONE-", "TO", "VB", "RP", "IN", "DT", "JJ", "NN", ",", "DT", "JJ", "NN", "VBP", "-NONE-", "PRP", "VBZ", "RB", "JJ", "PRP", "CC", "VBP", "IN", "NN", ".", "``", "NNP", "NNP", "''", "-LRB-", "NNP", ",", "CD", "NNS", ",", "$", "CD", "-NONE-", "-RRB-", "IN", "NNP", "NNP", "VBZ", "NN", "RB", "-NONE-", ".", "PRP", "VBZ", "DT", "JJ", "NN", "IN", "DT", "JJ", "NN", "WP", "NNP", "VBD", "-NONE-", "IN", "DT", "NN", "IN", "PRP", "VBD", "IN", "DT", "NNP", "NNP", "IN", "NNP", ":", "IN", "DT", "NN", "IN", "DT", "NNS", ".", "IN", "RB", "JJ", ",", "RBR", "RB", "JJ", ",", "RB", "JJ", "NNS", ",", "NNP", "NNP", "VBZ", "WRB", "NNP", "VBZ", "RB", "DT", "RBS", "JJ", "NNS", "IN", "PRP$", "NNS", "POS", "NNS", ":", "IN", "DT", "JJ", "NN", ",", "WRB", "NNS", "VBP", "VBN", "-NONE-", "NN", "NNS", "-NONE-", ":", "JJ", "IN", "``", "NN", "''", "IN", "DT", "JJ", "NN", "NN", "VBN", "-NONE-", "IN", "DT", "JJ", "NN", "-NONE-", ".", "DT", "IN", "PRP$", "NNS", "IN", "JJ", "NN", "NN", "VBP", "IN", "DT", "NN", ".", "PRP", "-NONE-", "VBZ", "RB", "JJ", "IN", "JJ", "NNS", "VBN", "RP", "JJ", "NN", "RB", "IN", "DT", "NN", "IN", "NN", ",", "IN", "DT", "NN", "VBZ", "RB", "JJ", "IN", "RB", "DT", "JJ", "NN", "MD", "VB", "TO", "DT", "NN", "CC", "DT", "NN", "TO", "DT", "JJ", "NN", ",", "CC", "IN", "NNP", "VBD", "JJ", "IN", "-NONE-", "VBG", "DT", "JJ", ",", "JJ", "JJ", "NN", "VB", "RP", "DT", "NN", ".", "DT", "IN", "DT", "MD", "VB", "VBN", "RB", "VBG", "TO", "NNP", "NNP", ",", "WP", "-NONE-", "VBD", "TO", "NNP", "IN", "NNS", "IN", "NN", "CC", "NN", "NN", "CC", "VBD", "JJ", "-NONE-", "TO", "VB", "DT", "NNP", ".", "CC", "NNP", "RB", "VBD", "DT", "NN", "IN", "DT", "JJ", "NN", "NNS", "CC", "VBD", "NNP", "NNP", ",", "IN", "PRP", "VBD", "DT", "JJ", "NN", "IN", "-NONE-", "VBG", "DT", "NN", "-NONE-", "TO", "VB", "DT", "JJ", "NNP", "NNP", ",", "NN", "IN", "NNP", ".", "PRP", "-NONE-", "VBZ", "DT", "NN", "-NONE-", "PRP$", "NN", "RB", "VBD", "NN", ".", "NNP", "NNP", "RB", "MD", "VB", "VBD", "NN", ",", "CC", "PRP", "-NONE-", "VBZ", "RB", "JJ", "-NONE-", "NNP", "NNP", "MD", "VB", "-NONE-", "RB", ".", "NNP", "NNP", ",", "DT", "NNP", "POS", "NN", "NN", "NNS", "NN", ",", "VBD", "IN", "NNP", "IN", "CD", "NNS", ".", "JJR", "CC", "JJR", "NNS", "IN", "DT", "NN", "VBP", "VBG", "JJ", "IN", "NN", "NN", ".", "IN", "NNP", ",", "DT", "JJ", "NN", "VBZ", "NNS", "TO", "VB", "RP", "PRP$", "NNS", "IN", "-NONE-", "VBG", "NNS", ",", "NN", "NNS", "CC", "NNS", "NNS", "CC", "VB", "DT", "$", "CD", "-NONE-", "NN", ".", "NNS", "CC", "JJ", "NNS", "VBP", "JJ", "IN", "DT", "NN", ",", "CC", "NN", "MD", "VB", "VBN", "-NONE-", "IN", "NNS", "IN", "IN", "NN", "NNS", ",", "DT", "NN", "VBD", "-NONE-", "-NONE-", ".", "NNP", "RB", "VBZ", "NN", "IN", "DT", "NNS", ",", "NNS", ",", "JJ", "NNS", ",", "NNS", "CC", "NN", "NNS", ".", "IN", "NNP", ",", "NNP", "NNP", "NNP", ",", "DT", "NN", "NN", "IN", "DT", "JJ", "NN", "POS", "NN", ",", "VBD", "DT", "``", "NNP", "NNP", "''", "IN", "DT", "NNP", "NNP", "IN", "NNP", "IN", "NNP", "NNP", "CC", "VBD", "JJ", "NNS", "-NONE-", "TO", "VB", "JJ", "NN", ".", "NNP", "NNP", "VBZ", "JJ", "NNS", ".", "IN", "NNP", ",", "NNS", "VBD", "-NONE-", "VBG", "RB", "CD", "NN", "NNS", "-NONE-", "TO", "VB", "JJ", "NNS", "CC", "NNS", "VBG", "VBN", "NNS", ".", "NNP", "NNP", "VBZ", "VBN", "PRP$", "NN", "TO", "JJ", "NNS", "CC", "VBZ", "NN", "TO", "VBN", "NNS", ".", "DT", "NN", "NN", "VBZ", "IN", "NNP", "NNP", "NNS", "VBP", "DT", "RBS", "JJ", "IN", "DT", "CD", "JJ", "NNS", "WRB", "DT", "NN", "VBD", "VBN", "RP", "-NONE-", ".", "DT", "NN", "IN", "DT", "NNP", "NNP", "NNP", "NN", "NN", "RB", "VBD", "IN", "DT", "NN", "POS", "NNS", "VBP", "RBR", "JJ", "IN", "DT", "IN", "DT", "IN", "DT", "JJ", "VBN", "NNS", ",", "WDT", "-NONE-", "VBP", "DT", "NNP", "CC", "NNP", ".", "DT", "NN", "VBD", "IN", "RB", "NN", "IN", "NNP", "NNP", "NNS", "VBP", "WP", "PRP", "VBD", "-NONE-", "IN", "JJ", "NNS", ",", "VBN", "IN", "RB", "JJ", "IN", "NNP", "CC", "DT", "NNP", ".", "JJR", "IN", "CD", "IN", "CD", "VBD", "-NONE-", "PRP", "VBP", "IN", "DT", "JJ", "NN", "IN", "NN", "JJS", "IN", "DT", "NN", ",", "VBN", "IN", "JJR", "IN", "CD", "IN", "CD", "NNP", "NNS", "CC", "CD", "IN", "CD", "IN", "NNP", ".", "DT", "NNP", "NN", "VBD", "NNP", "NNP", "NNP", "NNP", "POS", "NN", "-NONE-", "TO", "VB", "DT", "$", "CD", "CD", "-NONE-", "NN", "NN", "IN", "DT", "JJ", "NN", "IN", "DT", "NNP", "NNP", "CC", "NNP", "NNP", "NNP", "CD", "NNS", "IN", "RB", ".", "DT", "NN", ",", "WDT", "-NONE-", "VBZ", "VBN", "-NONE-", "TO", "VB", "CD", "TO", "NNP", ",", "VBD", "VBG", "-NONE-", "TO", "VB", "VBN", "-NONE-", "IN", "DT", "NNP", "NNP", "NNP", ",", "CC", "DT", "NN", "VBD", "IN", "DT", "NN", "POS", "NNS", "IN", "-NONE-", "VBG", "JJ", "NN", ".", "DT", "JJ", "NN", "IN", "DT", "JJ", "NN", "VBZ", "IN", "DT", "JJ", "NN", "MD", "VB", "VBN", "-NONE-", "IN", "JJ", "DT", "JJ", "NN", ".", "NNP", "NNP", "VBZ", "VBN", "TO", "DT", "NN", "IN", "DT", "NNP", "NNP", "NNP", "-NONE-", "VBG", "PRP", "-NONE-", "TO", "VB", "DT", "JJ", "NN", "-NONE-", "TO", "VB", "DT", "NN", ",", "DT", "NNP", "NNP", "NNP", "NN", "NN", "NNP", "VBD", "-NONE-", "-NONE-", ".", "DT", "NN", "IN", "DT", "NNP", "NNP", "NNP", "VBD", "-NONE-", "DT", "NN", "RB", "VBD", "IN", "NN", "IN", "CD", "CC", "VBD", "PRP$", "NN", "IN", "NNP", "IN", "DT", "NN", ".", "DT", "NNP", "IN", "JJ", "NNS", "VBZ", "VBN", "VBG", "-NONE-", "TO", "VB", "JJ", "NNS", "CC", "VBD", "RBR", "DT", "NN", "-NONE-", "TO", "VB", "NN", "IN", "DT", "NNP", "NNP", "NNP", "CC", "DT", "NNP", "NNP", "NNP", ".", "DT", "NNP", "JJ", "NN", "VBZ", "VBN", "DT", "JJ", "NN", "NN", "-NONE-", "-NONE-", "TO", "VB", "NNP", "IN", "NN", ",", "DT", "NNP", "POS", "NNP", "VBD", "-NONE-", "-NONE-", ".", "PRP", "VBD", "-NONE-", "DT", "NN", ",", "WP", "PRP", "VBD", "RB", "VB", "-NONE-", ",", "VBD", "VBN", "VBN", "-NONE-", "TO", "VB", "DT", "NN", "IN", "NN", "NNS", ".", "RB", "DT", "NN", "VBD", "VBN", "-NONE-", ",", "DT", "DT", "NN", "POS", "NNS", "CC", "NN", "VBD", "VBN", "-NONE-", ",", "CC", "NN", "VBP", "RB", "RB", "VBN", "VBN", "-NONE-", "TO", "VB", "NNP", ",", "DT", "NN", "VBD", "-NONE-", "-NONE-", ".", "DT", "NN", "VBD", "IN", "DT", "JJ", "NN", "VBN", "``", "DT", "JJ", "NN", "NN", ",", "''", "VBG", "NNS", "IN", "JJ", "NNS", ",", "DT", "NN", "VBD", "-NONE-", "-NONE-", ".", "DT", "JJ", "NN", "VBD", "NN", "NN", "NNS", "IN", "CD", "NN", "CC", "VBD", "NN", "NNS", ".", "DT", "JJ", "NN", "NN", "NNP", "VBD", "-NONE-", "DT", "NNS", "VBD", "VBN", "-NONE-", "TO", "VB", "RB", "JJ", "NN", "NNS", "IN", "NN", "IN", "NN", "NNS", "CC", "VB", "IN", "DT", "NN", "IN", "NN", "NNS", ".", "IN", "JJR", "NN", ",", "NNP", "NNP", ",", "IN", "-NONE-", "VBG", "JJ", "NNS", "IN", "NNP", "NN", ",", "VBD", "$", "CD", "CD", "-NONE-", "IN", "NNS", "TO", "DT", "RB", "VBN", "NNP", "NN", ".", "IN", "DT", "NN", "IN", "NNS", ",", "NNP", "POS", "NN", "VBD", "DT", "JJ", "NNP", "NNP", "NN", "VBG", "VBN", "-NONE-", "IN", "JJ", "NNS", ".", "DT", "NNP", "NN", "VBD", "VBN", "-NONE-", "-NONE-", "TO", "VB", "VBN", "-NONE-", "IN", "DT", "NN", ",", "RB", "RB", "JJ", ",", "CD", "NNS", "RB", "IN", "NNP", ".", "IN", "-NONE-", "VBG", "NNP", "POS", "NN", "IN", "DT", "NN", ",", "NNP", "VBD", "NNP", "NNP", "NNP", "NNP", "TO", "VB", "DT", "CD", "NN", "IN", "NNP", ",", "WDT", "-NONE-", "RB", "VBZ", "DT", "NN", "TO", "VB", "VBN", "-NONE-", ".", "NNP", "NNP", "VBD", "IN", "NN", "IN", "NNP", "CC", "NNP", "MD", "VB", "JJ", "NN", "IN", "DT", "NN", "NNS", "VBD", "VBN", "-NONE-", "IN", "-NONE-", "VBN", "-NONE-", ".", "NNP", "VBD", "IN", "NNP", "-NONE-", "PRP", "MD", "VB", "$", "CD", "CD", "-NONE-", "IN", "NNP", "IN", "DT", "NN", "NN", "VBD", "VBN", "-NONE-", ".", "DT", "JJ", "NN", "MD", "RB", "VB", "VBN", "-NONE-", "RB", "IN", "NN", "NNS", "IN", "DT", "NNP", "NN", ".", "DT", "NN", "IN", "NNP", "NNP", "VBD", "DT", "JJ", "NN", "NN", "WRB", "PRP", "VBD", "IN", "NN", "IN", "NNP", "IN", "$", "CD", "CD", "-NONE-", "-NONE-", ".", "``", "NNP", "NNP", "''", "VBD", "VBN", "-NONE-", "IN", "NNS", "IN", "DT", "NN", "IN", "CD", ":", "IN", "NNS", "IN", "NN", ",", "NNS", "IN", "NNP", "VBD", "DT", "CD", "NN", "NN", "JJ", "NN", ",", "IN", "CD", "JJR", "NNS", "-NONE-", "VBG", "NNS", "IN", "CD", "IN", "IN", "DT", "JJ", "NN", ",", "DT", "JJ", "NNS", "NN", "VBD", "-NONE-", "-NONE-", ".", "CC", "DT", "NN", "IN", "NNS", "JJ", "NN", ":", "CD", ":", "VBD", "RB", "RB", "IN", "DT", "CD", "VBN", "-NONE-", "IN", "CD", ",", "DT", "JJ", "NN", "IN", "VBG", "NNS", ".", "NNP", "NNP", "VBD", "-NONE-", "PRP", "VBD", "-NONE-", "TO", "VB", "CD", "CD", "JJ", "NNS", "-LRB-", "$", "CD", "CD", "-NONE-", "-RRB-", "IN", "CD", "NN", "JJ", "NNS", "JJ", "NNP", "CD", ",", "CD", ",", "RB", "IN", "CD", "NN", "NN", "NNS", ".", "DT", "JJ", "JJ", "NN", "NN", "VBD", "-NONE-", "DT", "NN", "NN", "VBZ", "DT", "NN", "TO", "VB", "$", "CD", "-NONE-", "NN", "NN", "IN", "NNS", "IN", "NN", "CC", "VBN", "NN", "TO", "DT", "NN", "IN", "NN", ".", "DT", "NNS", "VBP", "NNP", "CD", ",", "CD", ".", "DT", "NN", "MD", "VB", "VBN", "-NONE-", "IN", "JJ", "NNP", "NNS", "IN", "DT", "NN", "-NONE-", "DT", "NN", "VBD", "-NONE-", "-NONE-", "VBZ", "JJR", "IN", "CD", "NN", ":", "DT", "NN", "VBD", "-NONE-", "TO", "VB", ".", "JJ", "NNS", "IN", "DT", "NN", "VBP", "NNP", "NNP", "NNP", "CC", "NNP", "NNP", "NNP", "NNP", ",", "DT", "JJ", "NN", "NNS", ".", "NNP", "VBD", "-NONE-", "PRP", "VBZ", "-NONE-", "TO", "VB", "DT", "NN", "IN", "DT", "NN", "IN", "DT", "NN", ".", "IN", "DT", "NN", ",", "NNP", "NNP", "VBZ", "RB", "DT", "NN", "IN", "NNP", "NNP", "POS", "NN", ".", "NNP", "NNP", "VBZ", "RB", "VBN", "PRP$", "NN", "TO", "DT", ".", "CC", "PRP", "VBZ", "NNP", "NNP", ",", "IN", "NN", "NN", ",", "NN", "CC", "NN", ",", "WP", "-NONE-", "VBZ", "VBN", "VBN", "IN", "-NONE-", "VBG", "NNP", "POS", "NNP", "NNP", "IN", "DT", "JJ", "NN", ".", "IN", "CD", ",", "IN", "DT", "NN", "NN", "IN", "DT", "NNP", "NN", "IN", "DT", "NNP", "NNP", "IN", "NNP", "NNP", ",", "NNP", "NNP", "VBD", "``", "DT", "NNP", "IN", "NNP", ",", "''", "DT", "JJ", "JJ", "NN", "IN", "DT", "NN", "NN", ",", "DT", "NN", "IN", "DT", "NNS", ".", "RB", ",", "CD", "NNS", "RBR", ",", "NNP", "NNP", "VBZ", "VBN", "PRP$", "NNP", "IN", "DT", "JJ", "NN", "VBN", "-NONE-", "``", "NNP", "NNP", ",", "''", "DT", "JJ", "NN", "IN", "NN", "IN", "DT", "JJ", "NN", ".", "IN", "NN", ",", "IN", "DT", "NN", "VBD", "NN", ",", "NNP", "NNP", "POS", "NNP", "MD", "VB", "VBN", "-NONE-", "DT", "JJ", "NN", ".", "RB", "MD", "-NONE-", "-NONE-", "DT", "NNP", "NNP", ",", "IN", "DT", "NN", ".", "PRP", "VBP", "``", "-NONE-", "VBD", "NN", "''", "IN", "``", "NNP", "NNP", "''", "VBZ", "RB", "RB", "JJ", "IN", "DT", ".", "NN", "NNP", "NNP", ",", "DT", "NN", "NN", "IN", "NNP", "NNP", "POS", "WP", "-NONE-", "VBZ", "PRP$", "NN", "-NONE-", "VBG", "DT", "JJ", "NN", "IN", "JJ", "NN", "NNS", ",", "VBZ", "VBN", "DT", "JJ", ",", "JJ", "NN", "WDT", "-NONE-", "VBZ", "PRP", "WP", "DT", "NNS", "VBP", "VBG", "-NONE-", "CC", "VBG", "-NONE-", "RB", "RBR", "RB", "IN", "NNS", ",", "CC", "RB", "NNS", ",", "MD", "-NONE-", ".", "RB", "IN", "NNP", "NNP", "POS", "NN", "VBZ", "DT", "RB", "VBN", "NN", "IN", "NN", "IN", "DT", "NNS", "-LRB-", "IN", "RB", "DT", "RBR", "VBN", "IN", "NNP", "NNP", "POS", "NN", "IN", "DT", "NNP", "IN", "DT", "JJ", "JJ", "NN", "-RRB-", ".", "-NONE-", "VBN", "-NONE-", "IN", "JJ", "NN", "CC", "NN", "IN", "NNP", "NNP", ",", "DT", "NNP", "NNP", "NNS", "IN", "``", "NNP", "NNP", "''", "VBP", "JJ", ".", "IN", "NNP", "NNP", "NNS", "CC", "NNS", "VBP", "IN", "JJ", "NN", ",", "-NONE-", "VBG", "CD", "DT", "RB", "WRB", "PRP", "VBP", "IN", "NNS", "-NONE-", ".", "DT", "NNP", "VBZ", "RP", "IN", "NNP", "NNP", ",", "IN", "DT", "NN", "IN", "NNP", "NNP", "VBN", "-NONE-", "IN", "NNS", ",", "NNS", "CC", "JJ", "JJ", "NNS", ".", "-LRB-", "DT", "-NONE-", "RB", "VBZ", "RB", "JJ", "NN", ":", "DT", "NN", "NNS", ",", "DT", "JJ", "NNS", "VBG", "JJ", "NNS", "IN", "NNP", ",", "DT", "PRP", "VBD", "RP", "IN", "DT", "NN", "NN", ".", "-RRB-", "DT", "NNP", "VBZ", "PRP$", "NN", ".", "PRP", "VBZ", "PRP$", "NNS", "-NONE-", "VBG", "NNS", ",", "CC", "-NONE-", "VBG", "-NONE-", "TO", "-NONE-", ".", "IN", "NN", "PRP", "VBZ", "TO", "DT", "VBN", "NN", "-NONE-", "PRP", "VBZ", "-NONE-", "NN", ".", "PRP$", "NN", ",", "VBG", "PRP$", "NNS", "IN", "DT", "VBG", "NN", "NN", ",", "VBZ", "JJ", ".", "PRP", "VBZ", "PRP$", "JJ", "NN", ".", "RB", ",", "RB", "IN", "DT", "NNP", "VBZ", "VBN", "-NONE-", "DT", "JJ", "NN", "-NONE-", "-NONE-", "TO", "VB", "-NONE-", "IN", "``", "NNP", "NNP", ",", "''", "DT", "NNP", "VBZ", "VBN", "-NONE-", "IN", "NN", "IN", "-NONE-", "VBG", "DT", "JJ", "NN", "-LRB-", "NNP", "NNP", "-RRB-", ",", "WP$", "NN", "-NONE-", "VBZ", "VBN", "VBN", "-NONE-", "IN", "NNS", ",", "TO", "PRP$", "NN", ".", "DT", "JJ", "NN", "VBZ", "RP", "-NONE-", "TO", "VB", "DT", "NN", "CC", "DT", "NN", ".", "PRP", "VBZ", "DT", "NNP", "DT", "NN", "IN", "NN", ",", "CC", "RB", "VBZ", "PRP", "TO", "DT", "JJ", "NN", "IN", "PRP$", "JJ", "NN", ".", "DT", "NNS", "IN", "DT", "NNP", "NNP", "VBP", "JJ", "RBR", "WRB", "PRP", "VBZ", "-NONE-", "TO", "VB", "DT", "JJ", "NN", "IN", "CD", "IN", "PRP", "IN", "NN", "-NONE-", ".", "-NONE-", "TO", "RBR", "VB", "DT", "NNS", ",", "NNP", "NNP", "VBD", "RP", "DT", "RB", "JJ", "NN", "IN", "DT", "NNP", ",", "IN", "DT", "JJ", "NN", "WP", "-NONE-", "VBZ", "PRP$", "JJ", "NNS", "POS", "NN", "CC", "WP", "-NONE-", "VBZ", "IN", "DT", "JJ", "JJ", "NN", "NN", ".", "DT", "NN", "NN", "MD", "VB", "RBR", "RB", "IN", "NNP", "NNP", "VBD", "RB", "JJ", "DT", "NN", "IN", "NN", "IN", "DT", "NN", "IN", "PRP", "VBZ", "-NONE-", "IN", "PRP", ".", "NNP", "NNP", "POS", "JJ", "NN", "VBZ", "RB", "-NONE-", "TO", "VB", "DT", "NNP", "POS", "NN", "NN", ".", "PRP", "VBZ", "DT", "NN", "-NONE-", "PRP", "VBZ", "-NONE-", "TO", "VB", "-NONE-", ",", "CC", "PRP", "VBZ", "PRP", ",", "IN", "DT", "JJ", "NN", "IN", "NN", ".", "DT", "NN", "VBZ", "IN", "NN", ",", "DT", "NN", "IN", "NN", "NNS", "VBG", ",", "CC", "EX", "VBZ", "RB", "NN", "JJ", "CC", "JJ", "IN", "DT", "JJ", ",", "JJ", "NNS", ".", "DT", "JJ", "NN", "NN", "NNP", "NNP", "VBZ", "VBN", "DT", "NN", "IN", "JJ", "NN", "IN", "PRP$", "``", "NNP", "IN", "NNP", ".", "''", "PRP", "VBZ", "VBN", "DT", "JJ", ",", "JJ", "NN", ":", "CD", "WDT", "-NONE-", "VBZ", "JJ", ":", "IN", "DT", "NN", "WP", ",", "-NONE-", "VBN", "-NONE-", "IN", "DT", "RBS", "JJ", "NN", ",", "-NONE-", "MD", "VB", "JJ", ".", "RB", "DT", "NN", ",", "NNP", "NNP", ",", "VBZ", "JJ", "NN", ",", "DT", "IN", "CD", "IN", "DT", "JJ", "NNS", "-NONE-", "-NONE-", "TO", "VB", "VBN", "-NONE-", "IN", "NNP", "CC", "IN", "DT", "NN", "IN", "DT", "NNP", "NN", "POS", "NN", ".", "IN", "NNP", "VBD", "IN", "DT", "NNS", "IN", "NNP", "NNP", "NNP", "IN", "DT", "NNS", "IN", "NNS", "IN", "NNP", "NNS", "CC", "NNS", ",", "PRP$", "NNS", "VBD", "DT", "JJ", "JJ", "NN", ".", "NNP", ",", "DT", "JJ", "NN", ",", "VBD", "PRP$", "NN", ".", "PRP", "VBD", "DT", "NN", "RB", ",", "CC", "VBD", "IN", "PRP", "VBD", "PRP", "TO", "VB", "NN", ",", "NN", "CC", "JJ", "JJ", "NNS", ".", "PRP", "VBD", "JJ", "CC", ",", "IN", "CD", "JJ", "NN", "VBD", "DT", "NN", ".", "PRP$", "NN", "VBD", "JJ", "CC", "JJ", ".", "IN", "PRP", "VBD", "JJ", "CC", "JJ", "TO", "PRP$", "NNS", ",", "PRP", "VBD", "JJ", "TO", "PRP$", "JJ", "NN", ":", "PRP", "RB", "VBD", "PRP$", "NN", "IN", "PRP$", "NN", ".", "IN", "-NONE-", "VBN", "-NONE-", "IN", "NNP", "NNP", ",", "CC", "VBN", "-NONE-", "IN", "JJ", "NN", "IN", "NNP", "NNP", ",", "NNP", "-LRB-", "VBN", "-NONE-", "NNP", "NNP", "IN", "DT", "NN", "-RRB-", "VBD", "RB", "DT", "JJ", "NN", ".", "CC", "PRP", "VBD", "RB", "VB", "-NONE-", "TO", "VB", "PRP$", "NN", "VBN", "-NONE-", "RP", ".", "EX", "VBZ", "RB", "JJ", "-NONE-", "-NONE-", "TO", "VB", "``", "NNP", "NNP", ",", "''", "DT", "JJ", "NN", "IN", "DT", "NNP", "NNP", "NN", "IN", "DT", "NNP", "NNP", ".", "JJS", "IN", "DT", "NN", "VBZ", "VBN", "RP", "IN", "JJ", "NNS", "IN", "JJ", "NNS", "CC", "VBG", "CC", "VBG", "CC", "VBG", "-NONE-", "TO", "VB", "NN", ".", "PRP", "VBP", "DT", "NN", "RB", "IN", "JJ", "JJ", "NNS", "VBP", "DT", "JJ", "NN", ",", "CC", "DT", "CD", "VBZ", "NNP", "NNP", ",", "IN", "DT", "RB", "JJ", "CC", "JJ", "NN", "IN", "DT", "JJ", "NN", "WP", "-NONE-", "VBZ", "-NONE-", "TO", "VB", "DT", "NN", "-NONE-", "PRP", "VBZ", "-NONE-", "TO", "VB", "-NONE-", ".", "NNP", "NNP", ":", "IN", "-NONE-", "VBG", "``", "NNP", "NNP", ",", "''", "-NONE-", "VB", "DT", "NN", "IN", "``", "NNP", "NNP", ",", "''", "NNP", "POS", "NNP", "IN", "PRP$", "JJS", ".", "NNP", "NNP", "VBD", "-NONE-", "PRP", "VBZ", "VBG", "NNS", "-NONE-", "IN", "CD", "IN", "PRP$", "JJ", "JJ", "NNS", "-NONE-", "TO", "RB", "VB", "-NONE-", "VB", "DT", "JJR", "NN", "IN", "PRP$", "JJ", "CD", "NN", ".", "DT", "NNS", "VBP", "RB", "IN", "JJ", "NNS", ",", "CC", "DT", "JJ", "NNS", "VBP", "RB", "VBN", "VBN", "-NONE-", "RP", "IN", "DT", "NNP", "NN", "NN", "CC", "NNP", "NNP", "NNP", "NNP", ",", "NNP", "NNP", "NNP", "NNP", "CC", "NNP", "NNP", "NNP", "NNP", ".", "DT", "CD", "JJ", "NNS", "VBP", "DT", "NN", "NNS", "IN", "DT", "CD", ",", "-NONE-", "VBG", "IN", "DT", "JJ", "CD", "NN", "IN", "DT", "NN", ".", "JJ", "NN", "NNS", "VBP", "VBN", "IN", "DT", "JJ", "NN", "MD", "VB", "TO", "IN", "CD", "NN", "CC", "CD", "NN", "-NONE-", "IN", "DT", "JJ", "NN", ".", "IN", "NNP", "VBZ", "RB", "IN", "DT", "JJR", "CD", ",", "DT", "NN", "MD", "VB", "DT", "NN", "IN", "DT", "NNS", ".", "DT", "VBZ", "DT", "NN", "-NONE-", "DT", "JJ", "NN", ",", "IN", "NNS", "DT", "JJ", "NN", "IN", "JJS", "JJ", "NNS", ",", "VBD", "DT", "JJ", "NN", "-NONE-", ".", "DT", "NN", "VBZ", "IN", "DT", "NN", "NN", ",", "IN", "-NONE-", "VBG", "DT", "NN", "IN", "JJ", "NN", "POS", "JJ", "NN", ",", "VBZ", "VBN", "IN", "NN", "IN", "DT", "JJ", "NN", "NN", "IN", "RB", "DT", "JJ", "NNS", "VBN", "-NONE-", "IN", "DT", "NN", ".", "IN", "IN", "DT", "CD", "VBG", "JJ", "NNS", "IN", "CD", ",", "DT", "JJ", "NNS", "VBP", "VBN", "JJ", "NNS", "IN", "NN", ",", "-NONE-", "VBG", "NNS", "IN", "DT", "NN", "IN", "NN", ",", "JJ", "IN", "JJ", "NNS", ",", "VBZ", "VBG", "IN", "DT", "JJ", "NN", "IN", "NNS", "IN", "NN", ".", "``", "RB", ",", "''", "VBZ", "-NONE-", "NNP", "NNP", ",", "DT", "NN", "IN", "JJ", "NN", ",", "``", "DT", "NN", "VBZ", "-NONE-", "TO", "VB", "RB", ",", "RB", "CC", "RB", ".", "''", "DT", "NN", "WDT", "-NONE-", "VBD", "IN", "DT", "JJ", "NNS", "IN", "NNS", ",", "VBD", "IN", "DT", "NN", "IN", "DT", "NN", "NN", "CC", "VBD", "DT", "JJ", "NN", "NN", "IN", "CD", ",", "VBZ", "VBN", "DT", "RB", "JJ", "NN", ".", "``", "-NONE-", "TO", "VB", "NNS", "POS", "NN", "DT", "NNS", ",", "''", "VBZ", "-NONE-", "NNP", "NNP", ",", "DT", "JJ", "NN", ",", "``", "PRP$", "NN", "NN", "VBZ", "-NONE-", "TO", "VB", "JJ", "CC", "JJ", ",", "CC", ",", "RBR", "RB", "IN", "RB", ",", "WDT", "VBZ", "JJ", ".", "CC", ",", "IN", "DT", "JJ", "NNS", "RB", ",", "PRP", "VBP", "RB", "RB", "VB", "-NONE-", "TO", "VB", "IN", "DT", "NN", "VBZ", "JJ", ".", "''", "IN", "CD", ",", "RB", "RB", "IN", "RB", ",", "DT", "JJ", "NNS", "IN", "DT", "JJ", "NNS", "VBP", "VBN", "-NONE-", "IN", "DT", "NNS", "PRP", ".", "-NONE-", "VB", "DT", "NN", ",", "RB", ",", "IN", "DT", "JJ", "NN", "NNS", "WDT", "-NONE-", "VBD", "DT", "NN", "IN", "NNP", "POS", "NNS", "IN", "NNP", "NNP", "NNP", ",", "NNP", "NNP", "CC", "NNP", ":", "NNP", "NNP", "NNP", ":", "DT", "NN", "VBZ", "IN", "DT", "JJ", ",", "JJ", "JJ", "NN", "IN", "NNP", "NNP", ",", "JJ", "NN", "IN", "NN", "IN", "NNP", "NNP", "NNP", ".", "``", "NNP", "NNP", "VBD", "-NONE-", "TO", "VB", "PRP$", "NN", "NNS", "IN", "CD", "JJ", "NNS", ",", "''", "VBZ", "-NONE-", "DT", "JJ", "NN", "NN", ".", "CC", "RB", "DT", "NN", "NN", ",", "VBN", "RB", "-NONE-", "IN", "NNP", "NNP", "NNP", "POS", "NN", "CC", "VBN", "-NONE-", "IN", "NNP", "NNP", ",", "DT", "NN", "IN", "JJ", "NN", "NNS", ",", "RB", "VBZ", "RB", "TO", "NN", ".", "NNP", "NNP", ",", "DT", "NN", "VBZ", "-NONE-", "-NONE-", ",", "RB", "VBD", "-NONE-", "TO", "VB", "PRP$", "NN", "NNS", "RB", ",", "VBD", "PRP$", "NNS", "TO", "DT", "VBG", "NN", "NN", "CC", "VBD", "DT", "VBN", "NN", "``", "IN", "DT", "JJ", "NN", "IN", "DT", "NNS", ",", "DT", "NNS", "CC", "DT", "NN", ".", "''", "``", "NNP", "NNP", ",", "''", "VBZ", "-NONE-", "DT", "NN", ",", "``", "WRB", "VBZ", "PRP", "RB", "VB", "IN", "PRP", "VBZ", "VBN", "-NONE-", ".", "''", "``", "JJ", "NNS", ",", "''", "VBZ", "-NONE-", "NNP", "NNP", ",", "NNP", "NNP", "POS", "NNS", "NN", ",", "``", "VBN", "-NONE-", "-NONE-", "TO", "VB", "DT", "NN", "IN", "JJ", "NN", "WDT", "-NONE-", "RB", "VBZ", "RB", "VB", ".", "''", "-NONE-", "VBN", "-NONE-", "IN", "DT", "NNP", "NNS", ",", "NNP", "NNP", "POS", "NN", "NNS", ",", "NNP", "NNP", "CC", "NNP", "NNP", ",", "RB", "VBD", "DT", "JJ", "NN", "IN", "PRP$", "JJ", ".", "DT", "NN", "VBZ", "CD", "JJ", ",", "JJ", "NNS", ",", "RB", "IN", "CD", "NNS", ".", "``", "-NONE-", "VB", "CD", "NNS", "IN", "NN", ",", "''", "VBZ", "-NONE-", "DT", "NN", ".", "``", "NN", "VBZ", "-NONE-", "PRP", "VBZ", "IN", "-NONE-", "VBG", "JJ", "NNS", ".", "DT", "JJ", "VBZ", "VBN", "DT", "NN", "IN", "JJ", "NNS", ".", "NN", "VBZ", "-NONE-", "PRP", "VBZ", "JJ", ".", "DT", "JJ", "VBZ", "VBN", "DT", "NN", "POS", "NN", "-NONE-", "TO", "VB", ".", "''", "``", "JJ", "NN", ",", "''", "VBZ", "-NONE-", "DT", "NN", ",", "``", "DT", "DT", "NNS", "VBP", "VBN", "-NONE-", "NNP", "NNP", ".", "''", "WP", "VBZ", "-NONE-", "VBG", "DT", "NN", ".", "NN", ":", "IN", "NN", ".", "PRP", "VBZ", "DT", "JJ", "NN", "IN", "NNS", "WDT", "-NONE-", "VBP", "JJ", "CC", "RB", "RB", "RB", "JJ", ".", "NNP", "NNP", "VBD", "VB", "-NONE-", "TO", "VB", "PRP$", "NN", "NNS", "IN", "CD", "NNS", ",", "CC", "PRP", "VBZ", "-NONE-", "PRP", "RB", "VBD", "DT", "``", "NN", "''", "WRB", "PRP", "VBD", "VBG", "VBN", "-NONE-", "IN", "DT", "NN", "NN", "-NONE-", ".", "PRP", "VBD", "IN", "DT", "NN", "IN", "DT", "NN", "NN", "IN", "JJ", "NNS", ",", "CC", "PRP", "VBZ", "-NONE-", "PRP", "VBD", "DT", "NN", "IN", "PRP", ".", "DT", "NN", "POS", "NNP", "NNP", "NNP", "VBZ", "VBN", "-NONE-", "TO", "VB", "NNP", "NNP", "$", "CD", "-NONE-", "IN", "JJ", "NNS", "IN", "PRP$", "NN", "NNS", "VBP", "JJ", ".", "DT", "NN", "VBZ", "VBN", "DT", "NN", "NNS", "IN", "NN", "NNS", ".", "CC", ",", "VBZ", "-NONE-", "-NONE-", "NNP", "NNP", ",", "PRP", "VBD", "RB", "VB", "-NONE-", "DT", "NN", "-NONE-", "PRP$", "NN", "VBD", "-NONE-", "IN", "DT", "JJ", "NN", "VBD", "VBN", "VBN", "-NONE-", "IN", "NN", ".", "CC", ",", "VBP", "-NONE-", "-NONE-", "NNP", "NNP", "POS", "NNS", ",", "PRP", "VBD", "VB", "DT", "NN", "CC", "PRP$", "NN", "VBD", "VB", "NNS", ".", "NNP", "NNP", "POS", "NN", "NN", ",", "NNP", "NNP", ",", "VBZ", "-NONE-", "DT", "NNP", "NN", "VBZ", "``", "JJ", ".", "''", "DT", "JJ", "NN", ",", "PRP", "VBZ", "-NONE-", "-NONE-", ",", "``", "VBZ", "-NONE-", "NNP", "VBZ", "RB", "VBN", "JJ", ",", "RB", "IN", "PRP", "VBZ", "JJ", "NNS", ".", "PRP", "VBP", "-NONE-", "PRP", "VBZ", "RB", "VBN", "TO", "JJ", "NNS", ",", "CC", "IN", "PRP", "VBD", "DT", "NNS", "IN", "DT", "NN", "IN", "DT", "NN", ".", "''", "NNP", ":", "JJ", "NNP", "NNP", "NNP", "NNP", "VBD", "PRP$", "JJ", "NN", "IN", "JJ", "NNP", "NNP", "IN", "DT", "NN", "NN", "VBN", "-NONE-", "IN", "NNP", "NNP", "IN", "NNS", "IN", "DT", "JJ", "NN", "VBP", "-NONE-", "-NONE-", "VBD", "DT", "NN", "FW", "NN", ".", "IN", "DT", "NN", "IN", "NNP", "VBN", "-NONE-", "IN", "DT", "JJ", "NN", ",", "DT", "NN", "VBZ", "IN", "DT", "``", "JJ", "NN", "IN", "NN", "CC", "JJ", "NN", "''", "IN", "NNPS", "VBP", "VBN", "-NONE-", "IN", "NNS", ".", "RB", ",", "RB", "IN", "DT", "NN", "IN", "DT", "NN", "IN", "NNP", "NNP", "VBZ", "IN", "DT", "NN", ",", "DT", "NN", "VBZ", ":", "``", "IN", "DT", "NN", "IN", "NN", ",", "NNP", "NNP", "VBZ", "-NONE-", "TO", "VB", "RP", "PRP$", "NN", "-NONE-", "TO", "VB", "CC", "-NONE-", "VB", "PRP", "TO", "DT", "NNS", ".", "''", "DT", "JJ", ":", "WDT", "-NONE-", "VBD", "-NONE-", "NNP", "NNP", "VBD", "-NONE-", "TO", "VB", "RP", "DT", "NN", "IN", "NN", "``", "RB", "IN", "NNS", "IN", "NN", "CC", "NN", ",", "''", "DT", "NN", "-NONE-", "NNP", "NNP", "VBZ", "-NONE-", ":", "VBD", "DT", "NNS", "IN", "DT", "NN", ",", "-NONE-", "VBG", "PRP", ",", "IN", "JJS", "IN", "NN", ",", "IN", "DT", "NN", "IN", "NN", ".", "DT", "NN", "VBD", "NNP", "NNP", ",", "DT", "JJ", "NNP", "NN", "NN", ",", "TO", "VB", "DT", "NN", "IN", "NNS", "VBN", "-NONE-", "IN", "NNP", "NNP", "CC", "VBN", "-NONE-", "-NONE-", "TO", "VB", "NNP", "NNP", "POS", "NN", "IN", "DT", "JJ", "NNS", "WP", "-NONE-", "VBD", "VBN", "-NONE-", "IN", "DT", "NN", "NN", ".", "DT", "NNP", "NN", "VBD", "DT", "NN", "IN", "DT", "JJ", "NN", "IN", "NNS", "CC", "DT", "NN", "VBD", "IN", "PRP", "VBD", "VBG", "DT", "JJ", "NN", "NN", ".", "DT", "NN", "VBZ", ",", "``", "VB", ",", "RB", ",", "VBP", "RB", "PRP", "VB", "NNS", ".", "''", "RB", "DT", "NN", "VBZ", ":", "``", "PRP", "VBD", "NNP", "NNP", "WP", "-NONE-", "VBD", "DT", "NN", "-NONE-", "-NONE-", "TO", "VB", "NN", "NNS", "NN", "CD", "CC", "JJR", "TO", "VB", "VBN", "-NONE-", "IN", "PRP$", "JJ", "NNS", "IN", "NNS", "IN", "VBN", "NNS", ".", "RB", "DT", "JJ", "NN", "-NONE-", "NNP", "NNP", "VBZ", "IN", "DT", "NNS", "IN", "NNS", "-NONE-", ",", "-NONE-", "VB", "PRP", "IN", "DT", "NN", "-NONE-", "PRP", "VBD", "-NONE-", "TO", "VB", "-NONE-", ".", "''", "NNP", "NNP", "VBD", "VB", "JJ", "NN", "CD", "NNS", "RB", ",", "CC", "PRP", "VBD", "RB", "IN", "DT", "NN", "IN", "DT", "NN", ",", "DT", "JJ", "JJ", "NN", "VBN", "-NONE-", "IN", "NNS", ".", "DT", "NN", "PRP", "VBD", "IN", "PRP", "VBD", "VBN", "-NONE-", "``", "IN", "NN", ",", "''", "CC", "IN", "CD", "NNP", "NNP", "VBD", "DT", "NN", "-NONE-", "-NONE-", "TO", "VB", "NN", "NNS", "IN", "JJ", "NN", ".", "``", "NNS", "VBP", "VBN", "JJ", "IN", "DT", "NNS", "CC", "NNP", "VBZ", "VBN", "DT", "NN", "IN", "-NONE-", "VBG", "DT", "JJ", "NN", ",", "''", "VBZ", "-NONE-", "NNP", "NNP", ",", "DT", "JJ", "NN", "IN", "NNP", "NNP", "NNP", ".", "``", "NNP", "VBZ", "VBN", "-NONE-", "TO", "VB", "RP", "DT", "NN", "IN", "NNP", "MD", "VB", "NN", "-NONE-", "TO", "VB", "VBN", "-NONE-", "NN", "CC", ":", "RBR", "JJ", ":", "VBZ", "VBN", "JJ", "-NONE-", "TO", "VB", "DT", "NN", "IN", "PDT", "DT", "JJ", "NN", "IN", "NNP", ".", "''", "NNP", "NNP", "VBD", "DT", "NN", "IN", "PRP", "MD", "VB", "DT", "NN", "IN", "DT", "JJ", "NN", "TO", "JJ", "NN", ",", "CC", "DT", "NN", "VBD", "RB", "NNS", ".", "IN", "NNP", "NN", ",", "NN", "NNS", "VBD", "VBG", "JJ", "NNS", "VBG", "NNP", "NNP", "PRP", "VBG", "NNS", "IN", "NNP", "NNP", "POS", "NN", "TO", "NN", "NNS", ".", "NNP", "NNP", ":", "DT", "NNS", "VBD", "WRB", "JJ", "NNP", "NNP", "NNP", "VBD", "DT", "NN", "VBG", "DT", "NN", "IN", "NNP", "CC", "DT", "NN", "IN", "NNP", "NNP", "POS", "NN", ",", "JJ", "NNP", "NNP", "NNP", ".", "``", "-NONE-", "VB", "NNP", ".", "''", "VBZ", "-NONE-", "DT", "JJ", "NN", ".", "``", "-NONE-", "VB", "NNP", "NNP", ".", "''", "CC", "RB", "DT", "NN", ",", "VBN", "-NONE-", "IN", "NNP", "NNP", ",", "VBZ", "RB", "TO", "PRP$", "JJ", "JJ", "CC", "JJ", "NN", ".", "NNS", "IN", "VBN", "NN", "NNS", "VBP", "IN", "NN", ",", "CC", "DT", "JJ", "NN", "VBZ", ",", "``", "DT", "JJ", "NN", "IN", "PRP$", "-LRB-", "NNP", "NNP", "POS", "-RRB-", "NN", ":", "DT", "NNS", "VBP", "VBG", "IN", "NN", "NN", ".", "''", "CC", "DT", "NN", "IN", "NNP", "NNP", "POS", "NN", "VBZ", ".", "DT", "JJ", "NN", "VBN", ",", "VBP", "-NONE-", "NNP", "NNP", "POS", "NNS", ",", "VBZ", "DT", "NNP", "NN", "PRP", ",", "CC", "RB", "DT", "NNP", "NN", "VBZ", "VBN", "IN", "PRP$", "JJ", "NNP", "NN", ",", "VBN", "-NONE-", "IN", "NNP", "NNP", ".", "IN", "DT", "NN", ",", "DT", "NN", "VBZ", "IN", "NNS", "IN", "DT", "NNS", ".", "``", "WP", "-NONE-", "VBZ", "RB", "VBG", ".", "''", "VBZ", "-NONE-", "DT", "JJ", "NN", ".", "``", "NNP", "VBZ", "VBG", ",", "''", "DT", "NN", "VBZ", "RP", ",", "IN", "``", "DT", "NN", "IN", "NNP", "POS", "NN", ":", "VBD", "NN", "NN", ",", "VBD", "VBN", "-NONE-", "RP", "CC", "VBD", "DT", "NN", ".", "''", "NNP", "NNP", "POS", "JJ", "NN", "VBZ", "IN", "NNP", "NNP", "POS", "VBZ", ".", "WP", "-NONE-", "VBZ", "VBG", "DT", "NN", ".", "NNP", "NNP", ",", "DT", "JJ", "NN", "IN", "NNP", "NNP", "POS", "NNP", "NNP", ",", "VBZ", "-NONE-", "PRP", "VBZ", "DT", "NN", "IN", "DT", "NN", "WDT", "-NONE-", "VBZ", "JJ", "CC", "RB", "RB", "JJ", ".", "NNS", "VBD", "VBN", "-NONE-", "IN", "DT", "NNP", "NN", ",", "DT", "NN", "VBD", "VBN", "-NONE-", ",", "CC", "EX", "VBZ", "DT", "NN", "-NONE-", "DT", "NNS", "VBD", "DT", "JJ", "NN", "TO", "DT", "NN", ".", "RB", "RB", ",", "VBG", "TO", "NNP", "NNP", ",", "DT", "NN", "VBD", "``", "VBG", "''", "IN", "PRP", "VBD", "NNS", "IN", "NNP", "NNP", "POS", "NN", ".", "CC", "PRP", "VBZ", "VBG", "IN", "DT", "JJ", "NN", ".", "IN", "CD", ",", "IN", "NN", "TO", "DT", "NN", "NN", "IN", "NNP", "NNP", "NNP", ",", "NNP", "NNP", "NNP", "NNP", "IN", "NNP", "NNP", "VBD", "IN", "NN", "-NONE-", "VBG", ",", "``", "IN", "PRP", "VBP", "-NONE-", "TO", "VB", "DT", "NN", "NNS", "JJ", ",", "NNP", "VBZ", "PRP$", "NN", ".", "''", "DT", "NN", "IN", "DT", "NNP", "NNP", "IN", "NNP", "VBD", "VBN", "-NONE-", "IN", "$", "CD", "-NONE-", ",", "RB", "$", "CD", "-NONE-", "IN", "DT", "JJ", "NN", "JJ", "NNP", ".", "NNS", "RB", "VBP", "VBN", "-NONE-", "IN", "$", "CD", "-NONE-", ",", "NN", "-NONE-", ",", "CC", "$", "CD", "-NONE-", ",", "VBN", "-NONE-", ".", "DT", "JJ", "NN", "IN", "DT", "JJ", "NN", "IN", "DT", "NN", "VBZ", "$", "CD", "-NONE-", ",", "-NONE-", "VBN", "-NONE-", "NNP", "CD", ",", "CD", ".", "JJ", "NN", "IN", "NNP", "NNP", "VBZ", "VBG", "DT", "NN", "IN", "JJ", "NN", ".", "NNS", "IN", "NNS", "CC", "NN", "NNS", "IN", "DT", "NNP", "VBP", "IN", "JJ", "NN", "MD", "VB", "DT", "JJ", "NN", "IN", "JJ", "JJ", "NNS", "VBP", "VBN", "-NONE-", "IN", "NNS", "CC", "NNS", "IN", "NNS", ".", "CC", "NNP", "POS", "NN", "IN", "DT", "NN", "RB", "VBZ", "VBG", "NNS", "IN", "NN", "CC", "VBG", "JJ", "NN", "NNS", ".", "DT", "NN", "IN", "JJ", "NNS", "VBZ", "VBN", "IN", "NN", "``", "DT", "NN", "WRB", "DT", "NNS", "MD", "VB", "VBN", "-NONE-", "RP", "IN", "DT", "JJ", "JJ", "NN", "NN", "-NONE-", ",", "''", "VBZ", "-NONE-", "-NONE-", "NNP", "NNP", ",", "NN", "NN", "IN", "NNP", "NNP", "NNP", "NNP", ".", "IN", "DT", "JJ", "CD", "NNS", ",", "JJ", "NNS", "VBP", "VBN", "PRP$", "NNS", "IN", "NNP", "TO", "$", "CD", "CD", "-NONE-", ".", "IN", "NNP", ",", "IN", "NN", ",", "DT", "NN", "POS", "NNP", "IN", "NNP", "VBD", "$", "CD", "CD", "-NONE-", "IN", "JJ", "NN", "-NONE-", "IN", "CD", ",", "CD", "NNS", "DT", "NNP", "NN", "NN", "IN", "DT", "NN", ".", "NNP", "POS", "NN", "IN", "NNP", "NNP", "RB", "VBZ", "JJ", "NNS", "IN", "JJ", "NN", "CC", "NN", ".", "NNP", "POS", "JJ", "JJ", "NNS", "VBP", "VBG", "NNP", "POS", "NN", "CC", "VBG", "NN", "IN", "DT", "NN", ".", "IN", "NNP", "CC", "NNP", "NNP", ",", "VBG", "NNS", "VBP", "VBG", "NNS", "TO", "VB", "JJ", "JJ", "NNS", "IN", "JJ", "NN", ".", "DT", "NNS", ",", "VBN", "-NONE-", "IN", "NNP", "POS", "``", "JJ", "NNS", ",", "''", "RB", "VBP", "VBG", "TO", "NNP", "NNP", "POS", "NN", ",", "CC", "PRP$", "NN", "MD", "VB", "JJ", "TO", "NNP", "POS", ".", "IN", "JJ", "NNS", "JJ", "IN", "NNP", "CC", "NNP", ",", "DT", "NN", "MD", "VB", "JJ", "NNS", "CC", "VB", "NN", ".", "CC", "JJ", "NNS", "POS", "JJ", "NNS", "IN", "PRP$", "JJ", "NN", "IN", "NNP", "IN", "DT", "JJ", "NN", "IN", "DT", "NN", "VBP", "PRP", "JJ", "IN", "-NONE-", "VBG", "IN", "JJ", "JJ", "NN", "RB", ".", "IN", "IN", "NN", "NNS", "IN", "NNP", ",", "DT", "NNP", "VBZ", "NNP", "TO", "VB", "JJ", "NNS", "IN", "DT", "NN", ".", "CC", "PRP", "VBZ", "-NONE-", "VBG", "JJ", "NN", ".", "IN", "DT", "VBG", "NN", ",", "NNS", "VBP", "-NONE-", "-NONE-", ",", "JJ", "NNS", "MD", "VB", "VBN", "-NONE-", "IN", "NNP", "VBZ", "TO", "NNS", "IN", "PRP$", "JJ", "NN", "IN", "DT", "NN", "POS", "JJ", "NN", ".", "NNP", "POS", "VBG", "NN", "IN", "NNP", "NNP", "VBZ", "NN", "IN", "PRP$", "JJ", "NN", ".", "IN", "DT", "NN", "NN", ",", "JJ", "NNS", "VBD", "IN", "JJ", "NN", "IN", "NN", ".", "IN", "DT", "NNS", ",", "-NONE-", "VBN", "-NONE-", "IN", "VBG", "NN", "NNS", "CC", "DT", "JJ", "NNS", ",", "DT", "NNS", "MD", "RB", "VB", "PRP", "IN", "NNS", "IN", "NNS", "IN", "DT", "NN", ".", "-NONE-", "TO", "VB", "DT", "NN", ",", "JJ", "JJ", "NNS", "MD", "VB", "-NONE-", "TO", "VB", "JJ", "NN", ".", "DT", "NNS", "POS", "JJ", "NNS", "``", "MD", "VB", "VBN", "-NONE-", "IN", "DT", "NN", "-NONE-", "-NONE-", "RB", "TO", "VB", "PRP$", "JJS", "NN", "NN", ",", "JJS", "JJ", "NN", "CC", "JJS", "NN", "-NONE-", ",", "''", "VBZ", "-NONE-", "-NONE-", "NNP", "NNP", ",", "NN", "IN", "DT", "JJ", "NN", "CC", "NN", "NN", "IN", "DT", "NNP", "IN", "NNP", "NNP", "POS", "NNP", "NNP", "IN", "NNP", ".", "JJ", "NN", "MD", "VB", "-NONE-", "VB", "NNP", "NNP", "IN", "DT", "RBR", "JJ", "JJ", "NN", ".", "CC", ",", "NNS", "VBP", "-NONE-", "-NONE-", ",", "JJ", "NN", "VBZ", "RB", "JJ", "-NONE-", "TO", "VB", "DT", "NNP", "NNP", "NNP", "NN", ".", "RB", ",", "JJ", "NN", "MD", "VB", "NN", "IN", "JJ", "NNS", ",", "VBZ", "-NONE-", "-NONE-", "NNP", "NNP", ",", "DT", "NN", "IN", "JJ", "JJ", "NNS", "IN", "DT", "NNP", "NNP", "NNP", "IN", "NNP", "CC", "NNP", "NNP", "IN", "NNP", "NNP", ".", "IN", "NNS", ",", "IN", "NN", ",", "DT", "JJ", "NN", "MD", "VB", "NN", "NN", "NNS", "IN", "NNP", ",", "VB", "DT", "NNS", "IN", "NNP", "CC", "VB", "PRP", "TO", "NNP", ".", "``", "DT", "NN", "MD", "VB", "-NONE-", "TO", "VB", "NN", "RP", "RB", "IN", "DT", "JJ", "NN", "CC", "IN", "DT", "JJ", "NN", "NN", ",", "''", "VBZ", "-NONE-", "-NONE-", "NNP", "NNP", "POS", "NNP", "NNP", ".", "NNS", "IN", "DT", "NN", "RB", "VBP", "VBG", "-NONE-", "TO", "VB", "DT", "NN", "IN", "JJR", "JJ", "CC", "JJ", "NNS", ".", "DT", "JJ", "CC", "JJ", "NNS", "IN", "CD", "JJ", "CC", "NNP", "NNS", "MD", "VB", "IN", "NNP", "JJ", "NN", "-NONE-", "TO", "VB", "JJ", "NN", "NNS", "RB", "RB", "IN", "JJ", "NNS", "JJ", "IN", "NN", "CC", "NN", ".", "NNS", "MD", "VB", "DT", "NNP", ",", "NNP", ",", "NNP", ",", "NNP", ",", "NNP", "NNP", "CC", "NNP", "NNP", "RB", "RB", "IN", "DT", "CD", "NNS", "IN", "DT", "NNP", "IN", "NNP", "NNP", "NNPS", ":", "NNP", ",", "NNP", ",", "NNP", ",", "NNP", ",", "DT", "NNPS", "CC", "NNP", ".", "IN", "NN", ",", "DT", "NNP", "DT", "NN", "VBD", "PRP$", "JJ", "NN", "IN", "NN", "IN", "DT", "NNP", "NN", "IN", "DT", "JJ", "NN", "IN", "NNP", "IN", "NNP", "NNP", "NNP", ",", "VBG", "RP", "DT", "NN", "VBN", "-NONE-", "IN", "NNP", "IN", "NNP", "NNP", "NNP", "NNP", "NNP", ".", "DT", "NNP", "NN", "VBZ", "NNP", "POS", "NN", "-NONE-", "TO", "VB", "-NONE-", "VBG", "DT", "VBG", "JJ", "NN", "IN", "DT", "NN", ".", "``", "IN", "NNP", ",", "IN", "IN", "NNP", ",", "DT", "JJ", "NN", "VBZ", "VBG", "NN", ",", "''", "NNP", "NNP", "VBD", "-NONE-", "-NONE-", ".", "``", "DT", "NNP", ",", "IN", "PRP$", "JJ", "NNS", ",", "MD", "VB", "DT", "JJ", "NN", "IN", "-NONE-", "VBG", "PRP$", "NN", ".", "''", "CC", "-NONE-", "VBG", "NNP", "NN", "MD", "VB", "JJ", "IN", "DT", "NN", "IN", "JJ", "NN", "IN", "DT", "NN", ".", "NNP", "RB", "RB", "VBZ", "DT", "NNP", "IN", "NN", "NNS", "CC", "RB", "VBZ", "PRP", "IN", "NN", "IN", "JJS", "JJ", "JJ", "NNS", "-LRB-", "IN", "DT", "NNP", "VBZ", "DT", "VBG", "NN", "NN", "IN", "DT", "IN", "NNP", "-RRB-", ".", "RB", ",", "DT", "JJ", "NN", ",", "RB", "DT", "NN", "POS", "JJS", "NN", "NN", ",", "VBZ", "VBG", "RB", "JJR", "NN", "-NONE-", "IN", "DT", "NN", "IN", "DT", "NNP", "VBZ", "-NONE-", ".", "IN", "NNP", "NNS", "VBP", "NN", "IN", "NNP", "POS", "JJ", "NN", "IN", "NNP", ",", "PRP", "RB", "VBP", "DT", "NN", "IN", "NN", ".", "``", "EX", "VBZ", "DT", "NN", "-NONE-", "IN", "DT", "NN", "IN", "DT", "NNP", "IN", "NNP", "VBZ", "-NONE-", "TO", "VB", "PRP$", "NNS", "''", "IN", "NNP", ",", "VBZ", "-NONE-", "-NONE-", "NNP", "NNP", "NNP", ",", "NN", "IN", "NN", "IN", "NN", ".", "``", "IN", "PRP", "VBP", "PRP", "IN", "DT", "JJ", ",", "JJ", "NN", ",", "EX", "MD", "VB", "DT", "JJ", "NN", "IN", "NN", ".", "''", "DT", "JJ", "NNS", "VBP", "JJ", "IN", "NNP", "POS", "NN", "IN", "NNP", "VB", "RP", "PRP$", "JJ", "NN", "-NONE-", "TO", "VB", "DT", "NNP", "NN", "NN", "IN", "DT", "NN", ".", "DT", "NN", "VBZ", "RBR", "JJ", "-NONE-", "IN", "NN", "IN", "DT", "NN", "IN", "DT", "NNP", "POS", "NNS", "IN", "JJ", "NNS", "IN", "DT", "NNPS", "CC", "IN", "DT", "JJ", "NNP", "NN", "NN", "IN", "NNP", "NNP", ".", "JJ", "NNPS", "VBP", "DT", "NNP", "NN", "IN", "DT", "JJ", "NN", "TO", "JJ", "NN", ".", "``", "DT", "NN", "VBZ", "DT", "NNP", "TO", "VB", "RP", "PRP$", "NNS", "CC", "VB", "RB", ",", "''", "NNP", "NNP", "VBZ", "-NONE-", ".", "IN", "PRP$", "NN", ",", "NNP", "CC", "NNP", "NNP", "VBP", "VBN", "-NONE-", "TO", "VB", "RP", "PRP$", "JJ", "NNS", "IN", "DT", "JJ", "NN", "-NONE-", "TO", "VB", "-NONE-", "TO", "VB", "DT", "JJ", "NN", ".", "``", "PRP", "VBP", "RB", "VB", "NNP", "TO", "VB", "DT", "NN", "CC", "VB", "PRP", "RP", ",", "''", "VBZ", "-NONE-", "NNP", "NNP", ",", "NN", "IN", "JJ", "JJ", "NNS", "IN", "DT", "NNP", "IN", "NNP", ".", "NNP", "NNP", "MD", "RB", "VB", "PRP$", "NNS", ".", "IN", "-NONE-", "VBG", "DT", "JJ", "NN", "IN", "JJ", "NNS", "TO", "JJ", "NNS", "IN", "NNP", "NNP", "NNP", "JJ", "NNP", "CD", ",", "PRP", "VBD", "DT", "NN", "VBG", "IN", "JJ", "NNS", ".", "PRP", "VBD", "VBN", "NN", "RB", ",", "CC", "DT", "NNS", "VBD", "JJ", ".", "``", "DT", "NN", "VBZ", "DT", "NN", "IN", "DT", "NN", "IN", "NN", "CC", "NN", ":", ".", "IN", "DT", "NN", "IN", "NNP", "NNP", "NNP", ",", "NNP", "VBD", "IN", "NNP", ":", ".", "DT", "JJ", "NN", "NN", "VBZ", "VBN", "-NONE-", "WRB", "DT", "NN", "VBZ", "VBN", "-NONE-", "IN", "DT", "NNP", "CC", "NNP", "IN", "JJ", "NNS", "-NONE-", ".", "''", "RB", "NN", "IN", "NN", ",", "DT", "NNS", "VBD", "NNS", "CC", "NNS", "IN", "DT", "NN", "NN", "IN", "DT", "NN", "-NONE-", "DT", "NN", "VBD", "VBG", "-NONE-", ".", "IN", "NN", ",", "DT", "NN", "VBD", "DT", "NNS", "TO", "RB", "DT", "IN", "DT", "CD", "NNS", "IN", "DT", "NN", ".", "DT", "NN", "VBD", "DT", "NNS", ",", "CC", "RB", "IN", "DT", "NN", ".", "``", "PRP$", "NN", "VBD", "-NONE-", "PRP", "-NONE-", "VBD", "UH", "IN", "PRP", "TO", "VB", "DT", "NNS", "IN", "DT", "NN", ",", "''", "PRP", "VBD", "-NONE-", ".", "DT", "NN", "IN", "NN", "VBD", "NNP", "NNP", ":", "VBN", "IN", "JJ", "NNS", "CC", "NNS", "-NONE-", "TO", "VB", "CD", "IN", "DT", "JJS", "IN", "DT", "NN", ".", "-NONE-", "VBN", "-NONE-", ",", "NNP", "NNP", "VBD", "-NONE-", "PRP", "VBD", "VBN", "DT", "NNS", "CC", "VBZ", "CD", "NNS", "IN", "DT", "NN", "TO", "CD", "JJ", "NN", "NNS", ".", "PRP", "VBD", "VBN", "RB", "RB", "IN", "-NONE-", "TO", "VB", "DT", "NNS", "IN", "DT", "JJ", "NN", "CC", "VB", "DT", "NNS", ".", "NNP", "NNP", "VBD", "VBN", "-NONE-", "CC", "VBN", "-NONE-", "IN", "DT", "JJ", "NNP", "NNP", "NN", "WDT", "-NONE-", "VBZ", "PRP", "-NONE-", "DT", "NN", "-NONE-", "TO", "VB", "NN", "NN", ".", "IN", "NNP", ",", "PRP", "VBD", "JJ", "CC", "VBD", "DT", "$", "CD", "-NONE-", "NN", ".", "PRP$", "NN", "VBD", "CD", "NNS", "IN", "NN", ".", "PRP$", "NN", "VBZ", "RB", "NN", "IN", "JJ", "NN", ".", "PRP", "VBD", "DT", "JJ", "NN", "WP", "-NONE-", "VBD", "NNS", "CC", "VBD", "NNS", ",", "CC", "PRP", "MD", "RB", "RB", "VB", "RB", ".", "IN", "PRP$", "NN", "PRP", "VBD", "DT", "NN", "CC", "NN", "IN", "DT", "NN", "WP", "-NONE-", "VBD", "PRP$", "NN", "CC", "RB", "VBZ", "PRP", "DT", "NN", ":", "IN", "NNS", "WP", "-NONE-", "VBP", "-NONE-", "PRP", "VBD", "PRP", "NN", ":", "IN", "NNS", "CC", "NNS", "WP", "-NONE-", "VBD", "PRP", "CC", "VBP", "-NONE-", "PRP", "VBD", "VBN", "-NONE-", "RB", ":", "CC", "IN", "NN", "NNS", "JJ", "IN", "IN", "DT", "JJ", "NN", "IN", "PRP$", "NNS", ",", "PRP", "VBD", "NN", "IN", "DT", "JJ", "NN", ".", "NNP", "NNP", "POS", "NN", "RB", "VBZ", "DT", "NN", "IN", "DT", "JJ", "NN", "IN", "NN", "NN", ",", "WRB", "NNS", "IN", "NNS", "VBP", "VBG", "-NONE-", "CC", "WRB", "JJ", "NN", "VBZ", "VBN", "DT", "NN", "-NONE-", "TO", "VB", "-NONE-", ".", "DT", "CD", "NN", "-NONE-", "NNP", "NNP", "VBD", "-NONE-", "VBD", "VBN", "-NONE-", "-NONE-", "TO", "VB", "NNS", "IN", "NNP", "NNP", "POS", "JJ", "NNS", ".", "NNS", "VBD", "IN", "PRP", "VBD", "VBG", "-NONE-", "TO", "VB", "NNS", "POS", "NNS", "-NONE-", "TO", "VB", "DT", "NN", "IN", "DT", "NN", "POS", "CD", "NNP", "NNP", "NNP", ".", "DT", "NN", "VBD", "IN", "PRP$", "NN", "-NONE-", "TO", "VB", "JJR", "JJ", "NNS", ".", "``", "EX", "VBZ", "JJ", "NN", "-NONE-", "IN", "NN", "NNS", "CC", "NNS", "-NONE-", "TO", "VB", "NN", "NNS", ",", "''", "VBZ", "-NONE-", "NNP", "NNP", ",", "DT", "NN", "NN", "CC", "NN", "NN", "IN", "NNP", "NNP", ".", "``", "RB", "NNS", "-NONE-", "TO", "VB", "DT", "NNS", "VBP", "RB", "IN", "DT", "NN", ".", "''", "CC", "-NONE-", "RBS", "JJ", ",", "PRP", "VBZ", "NNS", ",", "RB", "NNS", ",", "WP", "-NONE-", "VBP", "VBN", "-NONE-", "IN", "RB", "IN", "DT", "NN", ".", "DT", "JJ", "NN", "VBN", "-NONE-", "IN", "NNP", "IN", "NNPS", "IN", "NNP", ",", "DT", "NNP", ",", "NNP", ",", "JJ", "NN", ",", "VBD", "IN", "``", "JJ", "NN", "IN", "JJ", "NNS", "''", "VBZ", "``", "JJ", ".", "''", "DT", "NN", "VBZ", "-NONE-", "JJ", "NN", "NN", "NNS", "VBP", "RB", "VBN", "IN", "NNS", "RB", "``", "VBP", "DT", "NN", "''", "IN", "NNP", "NNP", "VBD", "-NONE-", ",", "IN", "JJS", "VBP", "RB", "VBN", "-NONE-", ".", "NN", "IN", "JJ", "NN", "VBZ", "VBN", "IN", "JJ", "NNS", "IN", "DT", "JJ", "NN", "CC", "RB", ".", "NNP", "POS", "NN", "NN", "VBZ", "NN", "NN", "IN", "NNS", "IN", "CD", "NNS", "WDT", "-NONE-", "VBD", "JJ", "NNS", "TO", "JJ", "NNS", "IN", "DT", "JJ", "NN", ".", "IN", "JJ", "NNS", "IN", "JJ", "NN", "NN", "TO", "NNS", ",", "NNP", "VBZ", "VBG", "PRP$", "NN", "NNS", ".", "CC", "NNS", "IN", "JJ", "NNS", "IN", "NN", "NN", "VBP", "VBG", ".", "DT", "NNS", ",", "VBG", "NNP", "NNP", "NNP", "NNP", "POS", "NNP", "NNP", "CC", "NNP", "NNPS", ":", "VBP", "NN", "JJ", "IN", "JJ", "NN", "NNS", ",", "VBG", "TO", "DT", "JJ", "JJ", "NN", ".", "IN", "-NONE-", "VBG", "PRP", ",", "NNS", ":", "IN", "JJ", "NN", ":", "VBP", "TO", "NNS", "RB", "DT", "JJ", "NNS", "IN", "WDT", "DT", "NN", "MD", "VB", "-NONE-", ",", "CC", "RB", "VB", "RP", "DT", "JJ", "JJ", "NNS", "CC", "NNS", ".", "NN", "IN", "NNP", "NNP", "VBZ", "JJ", "IN", "NNP", "NNP", "CC", "JJ", "IN", "NNP", "NNP", ",", "NNP", "NNP", "POS", "NN", "NN", ".", "NNS", "VBP", "-NONE-", "EX", "VBZ", "RB", "DT", "NN", "IN", "DT", "NN", "WRB", "NNS", "VBP", "RB", "JJ", "IN", "PRP", "VBP", "-NONE-", "IN", "NNP", "NNP", "-NONE-", ".", "IN", "DT", "NN", "POS", "NNP", "NNP", "NNP", ",", "JJ", "NN", "NNS", "MD", "VB", "NNS", "POS", "NNS", "CC", "VB", "JJ", "NNS", "IN", "JJ", ",", "JJ", "``", "NNS", "''", "WDT", "-NONE-", "MD", "VB", "NNS", ".", "JJ", "NN", "NNS", ",", "IN", "DT", "JJ", "NN", ",", "VB", "NN", "CC", "JJ", "NN", ":", "IN", "JJ", "NN", "NN", "IN", "DT", "NN", ",", "NNS", "IN", "JJ", "NNS", ",", "DT", "NN", "IN", "DT", "NN", ".", "CC", "NNP", "NNP", "VBZ", "-NONE-", "PRP", "VBZ", "VBG", "NNS", ".", "IN", "DT", "NNS", "VBD", "IN", "NN", ",", "IN", "NN", ",", "DT", "NN", "VBZ", "VBN", "DT", "JJR", "NN", "IN", "NN", "IN", "DT", "NNP", "NNP", "NNP", "IN", "NNP", "NNP", "-NONE-", ",", "IN", "DT", "NN", "RB", "VBZ", "DT", "JJS", "JJ", "NN", "IN", "DT", "IN", "CD", "NNS", "WP", "-NONE-", "VBP", "DT", "NNP", "IN", "DT", "JJ", "NN", "NN", "NN", ".", "NNS", "VBP", "-NONE-", "NNP", "NNP", "VBZ", "VBG", "DT", "NN", "IN", "-NONE-", "VBG", "VBN", "NN", "NNS", "RB", "RB", ".", "NNPS", "IN", "NNP", "VBZ", "NNP", "NNP", "CD", "IN", "DT", "JJS", "CD", "NNS", "IN", "PRP$", "NN", "IN", "JJ", "NN", ".", "VBZ", "-NONE-", "-NONE-", "DT", "NN", "POS", "NN", ",", "NNP", "NNP", ",", "-NONE-", "VBG", "NNP", "NNP", "VBZ", "``", "DT", "NN", "IN", "-NONE-", "NNS", "TO", "VB", "PRP", "-NONE-", "CC", "VB", "IN", "PRP", "VBP", "NN", "RB", "-NONE-", ",", "WRB", "IN", "NN", "PRP", "VBP", "RB", "VB", "PRP", "RB", "IN", "DT", "-NONE-", ".", "''", "NNP", "NNP", ",", "NN", "IN", "NN", "IN", "DT", "NNP", "NNP", "NN", "IN", "NN", ",", "VBZ", "-NONE-", "NNP", "NNP", "POS", "NNS", "IN", "NN", "``", "VBP", "RB", "IN", "NN", ",", "''", "CC", "VBN", "IN", "JJ", "NNS", ".", "RB", "IN", "IN", "NNS", "IN", "JJ", "NN", ",", "RB", ",", "PRP", "VBZ", "-NONE-", "DT", "NN", "MD", "VB", "-NONE-", "VBG", "JJR", "NN", "IN", "NN", "NN", "NNS", "JJ", "NN", ".", "NNP", "NNP", "POS", "NNS", "VBD", "VBN", "-NONE-", "IN", "NNS", "IN", "NNP", "NNP", "NNP", ".", "-NONE-", "VBG", "IN", "DT", "JJ", "NN", "IN", "DT", "JJ", "NN", "IN", "DT", "JJ", "NN", "NN", ",", "DT", "NN", "VBZ", "VBN", "JJ", "IN", "NNP", "NNP", "POS", "JJS", "CC", "JJS", ",", "VBG", "DT", "NN", "POS", "JJ", "CD", "NNS", ",", "NNP", "NNP", "JJ", "NN", "NNP", "NNP", "CC", "NN", "NNP", "NNP", ".", "CC", "IN", "DT", "JJ", "NN", ",", "PRP$", "NN", "-NONE-", "VBD", "VBN", "IN", "DT", "JJ", "NNS", "IN", "PRP$", "JJ", "NN", ".", "``", "PRP", "VBD", "JJ", "IN", "NN", "CC", "NNS", "CC", "NNS", "VBG", "NN", ",", "''", "VBZ", "-NONE-", "NNP", "NNP", ",", "DT", "NN", "POS", "NN", ".", "``", "NN", "VBD", "JJ", ",", "NN", "NNS", "VBD", "JJ", ",", "CC", "EX", "VBD", "DT", "NN", "IN", "NNS", "NNS", ".", "''", "NNP", "NNP", "VBD", "RP", "IN", "CD", ",", "-NONE-", "VBG", "DT", "NN", "POS", "JJ", "NN", "IN", "CD", "NNS", ".", "PRP$", "JJ", "NN", "VBD", "DT", "JJ", "NN", ".", "RB", "TO", "PRP$", "NN", ",", "DT", "NN", "VBD", "TO", "NN", "IN", "DT", "NNS", ",", "-NONE-", "VBN", "-NONE-", "IN", "DT", "NN", ".", "RB", ",", "NNP", "NNP", "VBZ", "-NONE-", "-NONE-", ",", "DT", "NN", "VBD", "VBG", "NN", "-NONE-", "VBG", "IN", "NN", "PRP$", "CD", "JJ", ",", "CC", "RB", "JJ", ",", "NN", "NNS", ":", "DT", "JJ", "JJ", "NN", "IN", "JJ", "JJ", "NNS", "CC", "NNS", ",", "JJ", "IN", "PRP", "JJ", ",", "IN", "JJ", ",", "JJ", "NN", "NNS", ".", "NNP", "NNP", "VBD", "-NONE-", "TO", "VB", "RP", "``", "NN", "''", "IN", "DT", "NN", "POS", "NN", "CC", "VB", "NN", ",", "CC", "PRP", "RB", "VBD", "DT", "JJ", "NNS", "VBG", "IN", "PRP$", "NN", ".", "CD", "VBD", "JJ", "NN", "NN", ",", "WDT", "-NONE-", "VBD", "JJ", "JJ", "NN", "CC", "VBD", "RP", "DT", "JJ", "JJ", "NN", "IN", "NN", "NN", ".", "DT", "VBD", "NNP", "NNP", ",", "WP", "-NONE-", "VBD", "TO", "NNP", "IN", "CD", ",", "-NONE-", "JJ", "IN", "DT", "NN", "CC", "NNS", "IN", "NNS", "VBD", "-NONE-", "TO", "VB", "-NONE-", ".", "``", "-NONE-", "VBG", "DT", "NN", "RB", "VBD", "PRP$", "NN", ",", "''", "VBZ", "-NONE-", "DT", "JJ", "NNP", "NNP", ",", "DT", "NN", "IN", "CD", "NNS", "IN", "PRP$", "NN", ".", "``", "PRP", "VBD", "DT", "NN", ",", "PRP$", "NN", ".", "PRP", "RB", "VBD", "IN", "NN", "CC", "JJ", "NNS", "-NONE-", "-NONE-", "TO", "VB", "-NONE-", "IN", "PRP$", "NNS", ".", "''", "IN", "NNP", "NNP", "VBD", "CC", "VBD", "NN", "CC", "VBD", "-NONE-", "TO", "VB", "NN", ",", "NNP", "NNP", "VBD", "JJ", "NNS", "CC", "RB", "VBD", "DT", "NN", "JJ", ".", "IN", "CD", "CC", "CD", ",", "PRP", "VBD", "IN", "-NONE-", "CC", "VBD", "-NONE-", "NN", "NN", "IN", "DT", "NN", "NN", ".", "-NONE-", "JJ", "-NONE-", "IN", "NNP", "NNP", ",", "NNP", "NNP", "VBD", "NN", "NNS", "IN", "DT", "NN", "``", "NN", "NN", "''", "NN", ",", "DT", "NN", "NN", "VBN", "-NONE-", "-NONE-", "TO", "VB", "JJ", "NNS", "TO", "VB", "NN", "IN", "DT", "NN", ".", "PRP", "VBD", "NN", "NN", "IN", "DT", "NN", ",", "VBD", "NNS", ",", "VBD", "DT", "NN", "NN", ",", "VBD", "CC", "VBD", "DT", "JJ", "``", "JJ", "NN", "''", "NN", "IN", "JJ", "NN", "CC", "VBD", "VBN", "-NONE-", "IN", "DT", "NN", "NNP", "IN", "``", "NN", "IN", "DT", "NN", ".", "''", "``", "PRP", "VBD", "DT", "JJ", "NN", ":", "PRP", "VBD", "PRP", "RB", "RB", ",", "''", "VBZ", "-NONE-", "NNP", "NNP", ",", "DT", "NN", "IN", "DT", "NNP", "IN", "NNP", "NNP", "WP", "-NONE-", "VBD", "NNP", "NNP", "IN", "DT", "JJ", "NN", "JJ", "NN", ".", "PRP", "VBZ", "IN", "IN", "IN", "NNP", "NNP", "PRP", "VBD", "RP", "NNS", "IN", "NN", "CC", "VBZ", "VBG", "-NONE-", "TO", "VB", "DT", "NN", ".", "NNP", "NNP", "NNP", ",", "DT", "NNP", "JJ", "NN", ",", "RB", "VBZ", "-NONE-", "NNP", "NNP", "VBD", "PRP", "TO", "VB", "IN", "NN", ".", "``", "PRP", "VBD", "PRP", "JJR", "IN", "JJ", "NN", "IN", "PRP", "VBP", "RB", "VBN", "IN", "JJ", "NNS", ",", "''", "VBZ", "-NONE-", "NNP", "NNP", ",", "DT", "NNP", "NN", ".", "IN", "DT", "NN", ",", "NNS", "VBP", "-NONE-", "-NONE-", ",", "NNP", "NNP", "VBD", "PRP", "IN", "-NONE-", "VBG", "NN", "NNS", ":", "-NONE-", "JJ", "NNS", "TO", "VB", "RP", "-NONE-", "TO", "VB", "NN", "NN", "CC", "VBG", "NN", "NN", "NNS", ".", "IN", "NNS", ",", "PRP", "VBD", "TO", "VB", "-NONE-", "TO", "VB", "NN", "NNS", "CC", "RB", ",", "RB", "-NONE-", "TO", "VB", "DT", "NN", "IN", "PRP$", "NN", ".", "``", "PRP", "RB", "RB", "VBD", "PRP", "RP", ",", "''", "VBZ", "-NONE-", "NNP", "NNP", ",", "NNP", "NNP", "POS", "NN", ".", "``", "PRP", "MD", "VB", "PRP", "VBG", "NN", "IN", "DT", "NNS", "IN", "DT", "NN", "NN", ".", "''", "DT", "JJ", "NNS", ",", "RB", ",", "VBD", "NNP", "NNP", "IN", "JJ", "CC", "RB", "JJ", "TO", "NNS", ".", "NNP", "NNP", "VBZ", "-NONE-", "PRP", "RB", "VBD", "PRP", "TO", "NNS", "WP", "-NONE-", "VBD", "PRP", "DT", "NN", ".", "NNS", "VBD", "-NONE-", "TO", "VB", ".", "NNS", "VBD", "PRP", "-NONE-", "PRP", "VBD", "VBG", "RB", "RB", ".", "IN", "IN", "VBG", "NN", ",", "PRP", "VBD", "NNS", "-NONE-", "PRP", "VBD", "-NONE-", "PRP", "MD", "RB", "VB", "JJ", "-NONE-", "TO", "VB", "RB", "RBR", ".", "NNP", "NNP", "POS", "JJ", "NN", "VBD", "RB", "VBG", "PRP", "VB", "NNS", "IN", "DT", "NN", "POS", "NN", "NN", ".", "CC", "DT", "RBS", "JJ", "NN", "IN", "NNS", "VBD", "NN", "NN", "IN", "NNS", ".", "JJ", "NNS", "IN", "PRP$", "NNS", "IN", "CD", "CC", "CD", "VBD", "DT", "NN", "IN", "$", "CD", "-NONE-", "IN", "NNS", "IN", "CD", "NNS", ":", "JJ", "JJ", "NN", "TO", "PRP$", "JJ", "NN", "IN", "$", "CD", "-NONE-", ".", "-NONE-", "VBG", "DT", "NN", "IN", "DT", "JJ", "NN", "VBD", "RB", "RB", "JJ", "TO", "PRP", ",", "NNP", "NNP", "VBZ", "-NONE-", "-NONE-", ".", "CC", "NNS", "IN", "NNP", "NNP", "VB", "-NONE-", "PRP", "VBD", "JJ", "-NONE-", "TO", "VB", ":", "JJ", "RB", "IN", "NN", ",", "RB", "IN", "NN", "CC", "NN", ".", "NNP", "NNP", "NNP", ",", "DT", "NN", "NN", ",", "VBZ", "-NONE-", "PRP", "VBD", "-NONE-", "NNP", "NNP", "VBD", "-NONE-", "TO", "VB", "PRP", "NN", "RB", "IN", "PRP", "MD", "VB", "DT", "JJ", "NN", "WDT", "-NONE-", "MD", "RB", "VB", "JJ", "NN", ".", "RB", ",", "NNP", "NNP", "VBD", "JJ", "IN", "DT", "JJ", "NN", "IN", "DT", "NN", "NN", "NN", "NN", ".", "JJ", "NNP", ",", "IN", "-NONE-", "VBG", "DT", "NN", "NN", "IN", "NNP", ",", "NNP", "NNP", "VBZ", "-NONE-", "PRP", "VBD", "TO", "NNP", "CD", "NNS", "IN", "JJ", "NN", "-NONE-", "VBG", "IN", "PRP", "VBD", "RB", "VBN", "PRP$", "JJ", "NN", "NNS", "RB", ".", "WRB", "NN", "NNS", "VBD", "VBN", "-NONE-", "RB", "CD", "NNS", "RB", "IN", "NN", "-NONE-", ",", "PRP", "VBZ", "-NONE-", "PRP", "VBD", "NNS", "IN", "DT", "JJ", "NNS", "NN", "CC", "VBD", "DT", "NNS", "TO", "NNS", ".", "NNP", "NNP", "VBZ", "-NONE-", "PRP", "VBD", "DT", "JJ", "NN", "CC", "VBZ", "-NONE-", "PRP$", "NNS", "VBD", "JJ", ".", "``", "PRP", "VBD", "VBG", "-NONE-", "TO", "VB", "NNS", "IN", "DT", "JJ", "NN", "NN", ",", "''", "PRP", "VBZ", "-NONE-", ".", "``", "RB", "CD", "IN", "DT", "CD", "NNS", "VBD", "NN", "NNS", ".", "DT", "NN", "VBD", "NN", ",", "NN", ",", "NN", ":", "NNS", "-NONE-", "PRP", "RB", "VBD", "-NONE-", ".", "''", "NNP", "NNP", "VBZ", "IN", "PRP", "RB", "VBD", "-NONE-", "TO", "VB", "-NONE-", "VB", "NNP", "NNP", "NNP", "POS", "JJ", "NN", "NNS", ",", "RB", "IN", "DT", "NN", "IN", "CD", "NN", "JJ", "NNS", "IN", "NNS", "VBN", "-NONE-", "RB", "IN", "JJ", "NNS", ".", "RB", ",", "PRP", "VBZ", "-NONE-", "-NONE-", ",", "PRP", "VBD", "-NONE-", "TO", "VB", "DT", "NN", "TO", "NN", "IN", "PRP$", "JJ", "NNS", "MD", "VB", "-NONE-", "IN", "-NONE-", "VBG", "RB", "IN", "DT", "NN", ".", "``", "DT", "NNS", "VBD", "PRP$", "NN", ",", "''", "PRP", "VBZ", "-NONE-", ".", "``", "DT", "JJ", "NN", "VBZ", "RB", "CC", "DT", "NN", "RB", "VBZ", "-NONE-", "PRP", "VBP", "JJ", ".", "PRP", "RB", "VBD", "NN", "WP", "-NONE-", "VBD", "-NONE-", "PRP", "VBD", "IN", "PRP", ",", "WP", "-NONE-", "VBD", "PRP", ".", "DT", "JJ", "NN", "-NONE-", "PRP", "VBD", "-NONE-", "VBD", "DT", "JJ", "NN", ".", "''", "NNP", "NNS", "CC", "NNS", "VB", "-NONE-", "NNP", "NNP", "VBZ", "VBG", ".", "PRP", "VBD", "NNS", "IN", "DT", "JJ", "NN", "DT", "NN", "RB", "WP", "-NONE-", "VBD", "-NONE-", "PRP", "VBD", "PRP", "JJ", "NN", ",", "IN", "IN", "DT", "NN", "VBD", "RB", "VBN", "IN", "NN", ",", "DT", "NN", "VBD", "RB", "VBN", "-NONE-", "RB", ".", "``", "DT", "RB", "RB", "VBZ", "DT", "NN", "IN", "PRP", "VBD", "RP", "-NONE-", "TO", "VB", "DT", "JJ", "JJ", "NN", ",", "''", "VBZ", "NNP", "NNP", ",", "DT", "NN", "IN", "DT", "NN", ",", "WP", "-NONE-", "VBZ", "RB", "NN", "IN", "NNP", "NNP", "NNP", "POS", "NNS", "NN", ".", "NNP", "NNP", "VBZ", "IN", "PRP", "VBD", "RB", "DT", "NNS", "IN", "DT", "JJR", "NN", ",", "-NONE-", "VBG", ":", "``", "PRP", "VBD", "-NONE-", "TO", "VB", "DT", "''", "NNS", ".", "NNP", "NNP", "VBZ", "-NONE-", "NNP", "NNP", "RB", "VBD", "TO", "NN", "NNS", "IN", "DT", "JJ", "NN", "VBD", "JJ", ".", "``", "VBP", "PRP", "VB", "JJ", "NN", "IN", "PRP", ".", "''", "NNP", "NNP", "VBZ", "-NONE-", ".", "``", "RB", "RB", ".", "PRP", "VBP", "IN", "DT", "NN", ".", "PRP", "VBP", "-NONE-", "PRP", "VBP", "-NONE-", "TO", "VB", "DT", "NN", "-NONE-", "TO", "VB", "PRP", ".", "WP", "PRP", "VBD", "-NONE-", "VBD", "IN", "-NONE-", "VBG", "DT", "NN", "IN", "PRP$", "JJ", "NNS", ".", "''", "NNP", "NNP", "VBZ", "IN", "WRB", "DT", "NN", "VBD", "VBN", "-NONE-", "-NONE-", ",", "PRP", "VBD", "-NONE-", "TO", "VB", "DT", "JJ", "JJ", "NN", "IN", "DT", "NN", "MD", "VB", "-NONE-", ".", "PRP", "VBZ", "-NONE-", "PRP", "VBD", "NNP", "NNP", "DT", "JJ", "NN", "CC", "VBD", "-NONE-", "PRP", "MD", "VB", "-NONE-", "VB", "PRP", "NN", "NN", ".", "NNP", "NNP", "VBD", ".", "``", "PRP", "VBD", "NN", "IN", "``", "PRP", "RB", "VBP", "-NONE-", "TO", "VB", "PRP", "JJ", "IN", "DT", "NN", ".", "''", "PRP", "VBD", "JJ", ",", "''", "NNP", "NNP", "VBZ", "-NONE-", ".", "``", "PRP", "VBD", "IN", "NN", "VBD", "VBN", "DT", "NN", "IN", "PRP", ".", "''", "TO", "DT", "NN", "CC", "NN", "IN", "PRP$", "NNS", "CC", "JJ", "NNS", ":", "JJ", "RB", "IN", "DT", "NN", "IN", "DT", "NN", "IN", "JJ", "NNS", ":", "NNP", ".", "NNP", "VBD", "JJ", "JJ", "NN", ".", "DT", "NN", "NN", "IN", "WDT", "PRP", "VBD", "VBN", "-NONE-", "-NONE-", "VBD", "VBN", "-NONE-", "IN", "NNS", ",", "NNS", "CC", "NNS", "WP", "-NONE-", "VBD", "-NONE-", "TO", "VB", "IN", "PRP$", "NN", ".", "JJ", "NNS", "VBD", "JJ", "NN", ",", "RB", "NNP", "NNP", ",", "IN", "DT", "JJ", "NN", "NN", "NN", "IN", "WDT", "PRP", "VBD", "-NONE-", ".", "DT", "NN", "VBD", "RB", "VB", "DT", "NNS", "IN", "NNP", "NNP", "POS", "NN", ",", "-NONE-", "VBG", "RB", "IN", "PRP", "VBD", "NNS", "VB", "RBR", "IN", "DT", "NN", ".", "``", "DT", "NN", "TO", "DT", "NN", "IN", "NN", "IN", "IN", "PDT", "DT", "VBZ", "-NONE-", "PRP", "VBP", "VBN", "-NONE-", "TO", "VB", "DT", "JJ", "NN", "IN", "WRB", "PRP", "VBP", "VBG", "PRP$", "NN", "CC", "PRP$", "NN", "NNS", "-NONE-", "IN", "DT", "NN", ",", "''", "VBD", "-NONE-", "DT", "NN", "NN", ".", "NNS", "IN", "DT", "NNP", "NN", "VBD", "IN", "NNP", "NNP", "VBD", "JJ", ",", "CC", "RB", "VBD", "-NONE-", "DT", "NN", "VBD", "WRB", "NN", "VBD", "VBG", "VBN", "-NONE-", "-NONE-", ".", "DT", "NN", "NN", "``", "VBD", "PRP", ",", "''", "VBZ", "-NONE-", "NNP", "NNP", ".", "RB", "IN", "IN", "DT", "NN", ",", "NNP", "NNP", "VBZ", "-NONE-", "-NONE-", ",", "DT", "NN", "VBD", "RB", "-NONE-", "TO", "VB", "NNP", "NNP", "IN", "DT", "JJ", "NNS", "NN", "WDT", "-NONE-", "MD", "VB", "VBN", "DT", "NNS", "CC", "DT", "NN", "IN", "PRP$", "NN", ".", "CC", "JJ", "NNS", "VBD", "RP", "DT", "NN", "JJ", "IN", "DT", "NN", "NN", ".", "IN", "CD", "NNS", ",", "RB", "NNS", ",", "VBD", "VBN", "-NONE-", ".", "IN", "NNP", "NNP", "NNP", ",", "RB", ",", "DT", "NNS", ":", "RB", "IN", "DT", "NN", "NN", ":", "VBD", "JJ", "-NONE-", ".", "``", "PRP", "-NONE-", "VBZ", "JJ", "-NONE-", "TO", "VB", "TO", "DT", "JJ", "WRB", "NN", "-NONE-", "PRP", "VBP", "-NONE-", "VBD", "-NONE-", "TO", "VB", ",", "''", "VBZ", "-NONE-", "NNP", "NNP", ".", "RB", ",", "NNS", "-NONE-", "VBD", "IN", "DT", "NNS", "WDT", "-NONE-", "VBD", "DT", "NN", "POS", "JJ", "JJ", "NNP", "NN", "IN", "DT", "NN", ".", "IN", "DT", "NN", ",", "DT", "NNS", "VBD", ",", "``", "PRP", "VBP", "PDT", "DT", "NNS", ".", "''", "JJ", "NNS", "VBP", "JJ", "IN", "NNP", "NNP", ".", "``", "PRP", "VBD", "DT", "NN", "IN", "NN", ",", "''", "VBZ", "-NONE-", "NNP", "NNP", ",", "WP", "-NONE-", "VBD", "VBN", "DT", "NN", "NNS", ".", "``", "PRP", "VBP", "RB", "RB", "IN", "WP", "PRP", "VBP", "-NONE-", "IN", "RB", "JJ", "NN", ",", "CC", "WP", "PRP", "VBD", "-NONE-", "VBN", "JJ", "NNS", "IN", "DT", "IN", "PRP", ".", "''", "CC", "JJ", "NNS", "RB", "VBP", "-NONE-", "DT", "NN", "VBZ", "NN", "IN", "DT", "NN", "IN", "-NONE-", "VBG", "NNS", "CC", "NNS", "IN", "-NONE-", "VBG", "JJ", "NN", "NNS", ".", "VBZ", "-NONE-", "NNP", "NNP", ",", "DT", "NN", "NN", ",", "``", "DT", "NN", "NN", "NN", "VBZ", "VBN", "RP", "DT", "NN", "IN", "NNS", ".", "EX", "MD", "VB", "NNS", "VBG", "WP", "PRP", "VBD", "-NONE-", ".", "''", "NNP", "NNP", "VBZ", "-NONE-", "PRP", "VBD", "JJ", "IN", "PRP", "VBD", "-NONE-", "PRP", "-NONE-", "MD", "RB", "RBR", "VB", "JJ", "-NONE-", "TO", "VB", "NN", ",", "CC", "IN", "PRP", "VBD", "JJ", "IN", "JJ", "NNS", ".", "NNP", "NNP", ",", "IN", "CD", ",", "VBD", "JJ", ".", "IN", "DT", "JJ", "NN", "IN", "NNP", "NNP", ",", "JJ", "NN", "-NONE-", "VBD", "RB", "JJ", "-NONE-", "IN", "PRP$", "NN", ",", "NNP", "NNP", "VBZ", "-NONE-", "-NONE-", ",", "IN", "``", "PRP", "VBP", "JJ", "-NONE-", "DT", "NN", "MD", "RB", "VB", "VBN", "PRP", ".", "IN", "NN", "RB", "VBD", "NN", ",", "NN", "VBP", "VBN", "-NONE-", "TO", "VB", ":", "WP", "VBZ", "-NONE-", "IN", "DT", "NN", ".", "DT", "NNS", ",", "NNS", "MD", "RB", "VB", "DT", "NN", "IN", "JJ", "NNS", "CC", "NNS", "-NONE-", "PRP$", "NNS", "VBP", "PRP", "-NONE-", "IN", "DT", "NNS", "RB", "TO", "-NONE-", "VBG", "JJ", "NN", "NNS", ".", "DT", "NN", "NN", "IN", "DT", "RB", "JJ", "NNP", "NNP", "NNP", "VBZ", "JJ", "NNS", ":", "``", "WP", "VBZ", "-NONE-", "DT", "NN", "IN", "DT", "JJ", "NN", "CD", ".", "''", "PRP", "RB", "VBZ", "PRP", "-NONE-", "TO", "VB", "NNS", "CC", "NNS", ".", "NNS", "IN", "DT", "JJ", "NN", "VBN", "-NONE-", "NNP", "NNPS", ",", "VBN", "-NONE-", "TO", "NNS", "IN", "DT", "NN", "IN", "NNP", "NNP", "NNP", "NNP", ",", "VBP", "DT", "JJ", "NNS", ".", "IN", "JJ", "JJ", "NNS", ",", "EX", "VBZ", "RB", "DT", "NN", "IN", "DT", "JJ", "NN", "CC", "NNP", "NNPS", ".", "WP", "-NONE-", "VBZ", "JJR", ",", "DT", "NN", "CC", "NNP", "NNPS", "VBP", "DT", "VBN", "-NONE-", "IN", "DT", "JJ", "NN", ",", "NNP", ",", "DT", "JJ", "NN", "IN", "NNP", "NNP", "CC", "NNP", "POS", "NN", ",", "NNP", "POS", "NNP", "NNP", "NNP", ".", "JJ", "NNS", "IN", "NNS", "CC", "NN", "NNS", "VBP", "JJ", ",", "DT", "NNS", "CC", "NNS", "VBP", "-NONE-", "-NONE-", ".", "JJ", "NNS", ",", "NN", "CC", "NNS", "VBP", "DT", "VBG", "VBG", "NN", ".", "CC", "DT", "NN", "NNS", "VBP", "RB", "JJ", "TO", "DT", "NNS", "PRP", "IN", "NNS", "VBP", "-NONE-", "PRP", "VBP", "DT", "NN", "IN", "JJ", "NN", ".", "``", "IN", "PRP", "VBD", "-LRB-", "DT", "NN", "NNS", "-RRB-", "IN", "PRP$", "NN", ",", "PRP", "MD", "VB", "DT", "JJ", "NN", "-NONE-", "VBG", "TO", "PRP$", "NNS", "CC", "NNS", "IN", "PRP", "VBD", "RB", "NN", ",", "''", "VBZ", "-NONE-", "NNP", "NNP", ",", "DT", "NNP", "NNP", ",", "NNP", ",", "NN", "WP", "-NONE-", "VBZ", "VBN", "NN", "NN", ".", "PRP", "CC", "JJ", "NNS", "VBP", "-NONE-", "JJ", "NN", "NNS", "MD", "VB", "DT", "NN", "IN", "JJ", "NNS", ",", "WDT", "-NONE-", "VBZ", "-NONE-", "TO", "VB", "NN", "NN", ".", "``", "PRP", "VBZ", "IN", "IN", "NNP", "VBD", "-NONE-", "TO", "VB", "JJ", "JJ", "NN", "NNS", "TO", "NNS", "IN", "DT", "JJ", "NN", "NN", ",", "CC", "WRB", "NN", "VBZ", "DT", "NN", "-NONE-", ",", "PRP", "VBP", "-NONE-", "PRP$", "NNS", "VBP", "JJ", "IN", "JJ", "NN", ",", "''", "VBZ", "-NONE-", "NNP", "NNP", ",", "DT", "NNP", ",", "NNP", ",", "NN", "CC", "NN", "IN", "DT", "JJ", "NN", "NN", ",", "NNPS", "IN", "NNP", ",", "WDT", "-NONE-", "VBZ", "VBN", "JJ", "NN", ".", "JJ", "NN", "NNS", "VBP", "VBN", "-NONE-", "IN", "CD", "CD", "NNS", "DT", "NN", "IN", "DT", "NN", "TO", "NNS", "RB", "IN", "NN", "IN", "JJ", "NN", ".", "DT", "RBS", "RB", "JJ", "IN", "DT", "NNS", "VBP", "NNP", "POS", "NNP", "CC", "NNP", "NN", "IN", "JJ", "NNS", ":", "DT", "NNP", "NN", "IN", "JJ", "NNS", ",", "IN", "NNP", "NNP", "NNP", ":", "CC", "NNP", "NNP", "NNP", "NNP", "POS", "NNP", "NNP", "NNP", "CC", "NNP", "NNP", "NNP", ".", "NNS", "NNS", "IN", "DT", "JJ", "NNS", "VBP", "RB", "JJ", "-NONE-", ",", "CC", "PRP$", "NN", "IN", "NNS", "VBZ", "JJ", ".", "IN", "NNP", ",", "NNP", ",", "NNP", ",", "NNP", ",", "NNP", ",", "NNP", "NNP", ",", "NNP", "NNP", "CC", "NNP", ",", "NNS", "VBP", "-NONE-", "PRP", "VBP", "JJ", "NN", "NNS", ".", "NN", "VBZ", "-NONE-", "``", "RB", "IN", "CD", "CD", "''", "IN", "PRP$", "NNP", "NNP", "JJ", "NNS", "VBP", "VBN", "VBN", "-NONE-", "IN", "PRP$", "NN", "CD", "NNS", "RB", ",", "IN", "JJS", "NNS", "IN", "DT", "JJ", "CD", "NNS", ".", "IN", "CD", "NNS", "IN", "NNP", "NNPS", "NNS", "POS", "NNS", "VBP", "RB", "VBN", "VBN", "-NONE-", "IN", "DT", "JJ", "CD", "NNS", ".", "DT", "NNS", "IN", "DT", "NN", "VBP", "IN", "CD", "NNS", ".", "NNP", "NNP", "CC", "NNP", "NNPS", "VBP", "DT", "JJS", "NN", "NNS", ".", "NNP", "NNP", ",", "NN", "IN", "NN", "IN", "NNP", "NNP", ",", "DT", "NNP", "NN", "WDT", "-NONE-", "VBZ", "NNP", "NNPS", ",", "VBZ", "-NONE-", "PRP", "VBZ", "RB", "VBN", "-NONE-", "IN", "-NONE-", "VBG", "NN", "NNS", ".", "PRP", "RB", "VBD", "IN", "JJ", "NNS", "VBD", "RB", "VBN", "-NONE-", ".", "WRB", "-NONE-", "VBN", "-NONE-", "TO", "DT", "NNS", "WDT", "-NONE-", "VBN", "-NONE-", ",", "PRP", "VBD", "-NONE-", "PRP", "VBD", "JJ", ".", "NNP", "NNP", ",", "DT", "NN", ",", "CC", "NNP", "NNP", ",", "DT", "NNP", "NNP", "NNP", "NN", "NN", ",", "VBD", "IN", "DT", "NN", "JJ", "NNP", "IN", "NNP", "NN", "NNS", "IN", "NNP", "NNP", "CC", "NNP", "NNPS", "MD", "RB", "VB", "VBN", "-NONE-", "IN", "DT", "NN", "IN", "IN", "PRP$", "NN", "TO", "DT", "JJ", "NN", ".", "PRP", "VBD", "DT", "JJ", "NN", ":", "-NONE-", "VBG", "CD", "NN", "IN", "DT", "NN", "VBN", "-NONE-", "IN", "DT", "NNP", "NN", ":", "-NONE-", "TO", "VB", "DT", "NN", "IN", "NN", "NNS", "TO", "DT", "NN", "NNP", ".", "IN", "JJ", "IN", "DT", "NNS", ":", "JJ", "NN", "IN", "JJ", "NNS", ",", "JJ", "NN", "IN", "NN", ",", "CC", "NN", "CC", "NN", "NNS", ",", "IN", "NN", ":", "NN", "RB", "DT", "JJ", "NN", "IN", "DT", "JJ", "NN", "NN", ",", "NNP", "NNP", "VBZ", "-NONE-", "-NONE-", ",", "DT", "NN", "NNS", "MD", "RB", "VB", "RB", "JJ", ",", "IN", "PRP$", "JJ", "NN", "VBD", "JJ", "NN", "CC", "RB", "JJ", "NN", "IN", "NN", "NNS", ".", "CC", "NNP", "NNPS", "VBD", "IN", "CD", "IN", "CD", "NNS", ".", "NNP", "NNP", "VBD", "IN", "CD", ".", "IN", "NNP", "NNS", "WRB", "NNS", "POS", "NN", "IN", "JJ", "JJ", "NNS", "VBZ", "VBN", "-NONE-", "-NONE-", ",", "DT", "NNS", "VBD", "IN", "NNP", "NNP", "VBD", "IN", "DT", "JJ", "NNS", "IN", "DT", "NN", "VBZ", "-NONE-", "-NONE-", ":", "IN", "DT", "NN", "IN", "JJ", "NNS", "IN", "JJ", "NNS", "MD", "VB", "-NONE-", ".", "NNP", "NNPS", "IN", "DT", "NN", "VBZ", "IN", "JJS", "DT", "NN", "NNS", "IN", "JJ", "NNS", "CC", "JJ", "NNS", "TO", "NN", "NNS", ".", "NNP", "NNP", ",", "JJ", "NN", "IN", "NNP", "NNP", ",", "VBZ", "IN", "NNPS", "NNP", "CC", "NNP", "VBP", "VBG", "``", "DT", "NN", "-NONE-", "NNS", "VBP", "-NONE-", "IN", "-NONE-", "VBG", "JJ", "IN", "NNS", "CC", "NN", "NN", ".", "''", "PRP", "VBD", "-NONE-", "NNS", "IN", "NNP", "NNP", "``", "RB", "VBP", "''", "-NONE-", "VBG", "JJ", "NNS", ",", "CC", "PRP", "VBZ", "RB", "VB", "IN", "DT", "NNS", "VBP", "JJ", ".", "WRB", "NNP", "NNP", "RB", "VBD", "RB", "IN", "CD", "-NONE-", ",", "PRP", "VBD", "DT", "NN", "IN", "NNP", "NNP", ".", "NNP", "VBD", "JJ", ".", "IN", "DT", "CD", "NN", "TO", "NNS", ",", "NNP", "VBD", "-NONE-", "NNP", "NNP", "MD", "RB", "VB", "VBN", "-NONE-", "IN", "PRP", "VBD", "DT", "``", "JJ", "NN", "''", "IN", "DT", "NNP", "CC", "NNP", "NNS", ".", "CC", "IN", "CD", ",", "NNP", "VBD", "DT", "NNP", "NNP", "NN", "WDT", "-NONE-", "VBZ", "NNP", "NNP", ",", "WDT", "-NONE-", "RBR", "VBD", "NN", "IN", "NNP", ".", "NNPS", "NNP", "CC", "NNP", "VBP", "-NONE-", "PRP", "VBP", "JJ", "IN", "DT", "NNS", "-NONE-", "IN", "NNP", "-NONE-", "TO", "VB", "CC", "VB", "NNP", "NNP", ".", "NNP", "NNP", "VBD", "-NONE-", "PRP", "VBD", "DT", "NN", "IN", "NNP", "NNPS", "CC", "NNP", "NNP", "IN", "DT", "NNP", "CC", "NNP", "NNP", "NNP", "NNP", "IN", "$", "CD", "CD", "-NONE-", ".", "DT", "JJ", "NN", ",", "WDT", "-NONE-", "VBZ", "CD", "NN", "NNS", "IN", "JJ", "JJ", "NNP", ",", "VBD", "NNS", "IN", "$", "CD", "CD", "-NONE-", "IN", "DT", "NN", "IN", "NNP", ".", "NNP", "JJ", "NNP", "VBZ", "DT", "NN", "CC", "JJ", "NNS", "NN", ".", "DT", "NN", "NN", "VBZ", "CD", "JJ", "NNS", ".", "DT", "NNP", "IN", "NNP", "CC", "NNP", "NNPS", "VBZ", "-NONE-", "TO", "VB", "PRP$", "NN", "IN", "JJ", "NN", "IN", "NN", "VBG", "JJ", "NNS", ".", "JJ", "NNS", "VBP", "-NONE-", "DT", "NN", "IN", "JJ", "NNS", "IN", "JJ", "NN", "IN", "NNS", "MD", "VB", "-NONE-", "VB", "JJ", "NN", "CC", "JJ", "JJ", "NNS", "IN", "NNP", "POS", ",", "NNP", "POS", "CC", "NNP", "POS", ".", "CC", "NNS", "VBP", "JJ", "NN", "IN", "PRP", "VBP", "IN", "DT", "NN", "IN", "NNS", "VBG", "JJ", "NNS", "MD", "VB", "TO", "DT", "NN", "IN", "NNS", ".", "NNP", "NNP", ",", "NN", "NN", "IN", "NN", ",", "VBD", "-NONE-", "DT", "NN", "IN", "JJ", "NN", "IN", "JJ", "NN", "NN", "``", "MD", "VB", "VBN", "-NONE-", "RB", ".", "''", "PRP", "VBD", "-NONE-", "DT", "NN", "MD", "RB", "VB", "RB", "VBN", "JJ", "NN", "CC", "RB", "VBN", "JJ", "NN", "WDT", "-NONE-", "VBZ", "RB", "VB", "NNS", ".", "NN", "NNS", "VBP", "IN", "NNP", "NNP", "NNP", "NNP", "MD", "VB", "NNP", "NNP", "POS", "NN", ",", "WDT", "-NONE-", "MD", "VB", "VBN", "-NONE-", "RB", "IN", "DT", "NN", "IN", "DT", "NN", "TO", "DT", "JJ", "NN", "IN", "DT", "NNP", "NNPS", "IN", "NNP", ".", "DT", "NNP", "NNP", "CC", "NNP", "NNP", "VBP", "JJ", "NN", "IN", "NN", ",", "IN", "VBZ", "NNP", "NNP", "-NONE-", ",", "IN", "IN", "NNS", "WRB", "DT", "NN", "POS", "NN", "VBZ", "VBN", "-NONE-", "-NONE-", ".", "DT", "NN", "VBD", "IN", "CD", "WRB", "DT", "NNP", "NNPS", "IN", "NNP", ",", "JJ", "IN", "DT", "NN", "NNS", "IN", "PRP$", "NN", ",", "VBD", "IN", "DT", "NNP", "NN", "IN", "PRP$", "NN", "-NONE-", "TO", "VB", "JJ", "NN", "IN", "DT", "NN", "IN", "DT", "NN", "NN", "IN", "NNPS", "POS", "NN", "-NONE-", ".", "DT", "NN", "VBD", "DT", "NN", "IN", "DT", "NN", ",", "-NONE-", "VBG", "DT", "NN", "IN", "JJ", ",", "JJ", "CC", "JJ", "NNS", ".", "DT", "NN", "IN", "DT", "JJ", "NN", "VBD", "RB", "JJ", "NN", "IN", "DT", "NN", "VB", "IN", "RB", "JJ", "NNS", ",", "CC", "DT", "NN", "VBD", "VBN", "-NONE-", "IN", "NNS", "IN", "JJ", "NNS", "VBD", "-NONE-", "TO", "VB", "JJ", "NN", ".", "DT", "NN", "VBZ", "VBN", "DT", "NN", "POS", "NNS", "-NONE-", "TO", "VB", "JJ", "NNS", "-NONE-", "-NONE-", "TO", "VB", "JJ", "NNS", "IN", "DT", "NN", "IN", "DT", "NNP", "CC", "DT", "NNPS", "IN", "NNP", "NNP", ".", "JJ", "NNS", "VBP", "VBN", "PRP$", "NNS", "IN", "NN", "IN", "NN", "NNS", "VBD", "PRP", "IN", "PRP$", "NNS", "IN", "NN", "CC", "JJ", "NNS", ".", "NNP", "NNP", ",", "WP", "NNP", "NNP", "VBD", "-NONE-", "TO", "VB", "IN", "NN", "NN", ",", "RB", "VBZ", "VBN", "DT", "NN", "IN", "PRP", "VBZ", "NN", ".", "NNP", "NNP", "VBZ", "NN", "NN", "IN", "DT", "NNP", "NNP", "IN", "NNP", "NNP", "CC", "NNP", "NNP", ".", "DT", "NNS", "VBP", "VBN", "IN", "DT", "NN", "VBZ", "VBG", "JJ", "JJ", "NNS", "IN", "JJ", "JJ", "NNS", ".", "JJR", "DT", "NN", ",", "NNP", "NNP", "VBD", "-NONE-", "TO", "VB", "DT", "NNS", "IN", "-NONE-", "VBG", "IN", "NNS", "-NONE-", "-NONE-", "TO", "VB", "DT", "NNP", "CC", "DT", "NNP", "MD", "VB", "VBN", "-NONE-", "IN", "``", "NNS", "IN", "JJ", "CC", "JJ", "NN", ",", "''", "RB", "NNS", ".", "CC", "DT", "NN", "POS", "NN", "IN", "DT", "JJ", "NN", "NN", "VBZ", "JJ", "NNS", ".", "``", "WRB", "JJ", "NN", "VBZ", "IN", "JJ", "NN", "-NONE-", ",", "EX", "VBZ", "-NONE-", "TO", "VB", "DT", "NN", "-NONE-", "IN", "NN", "-NONE-", "TO", "VB", "NNS", "IN", "PRP$", "NNS", ",", "''", "VBZ", "-NONE-", "NNP", "NNP", ",", "NN", "NN", "IN", "DT", "NNP", "NNP", "NNP", ".", "``", "DT", "JJ", "NN", "IN", "DT", "NN", "NN", "VBZ", "IN", "DT", "NN", "VBZ", "VBN", "VBN", "-NONE-", ",", "IN", "IN", "DT", "NN", "-NONE-", "VBZ", "''", "IN", "-NONE-", "VBG", "DT", "JJ", "NN", ".", "NNP", "VBZ", "CD", "IN", "DT", "JJ", "JJ", "NNS", "VBG", "RB", "JJ", "NN", "IN", "JJ", "NNS", ".", "CC", "NNP", "NNP", "VBZ", "IN", "NNP", "NNP", "POS", "NN", "MD", "VB", "JJ", "NN", ".", "``", "DT", "NN", "IN", "JJ", "NNS", ",", "CC", "DT", "NN", "IN", "WDT", "DT", "NN", "VBD", "VBN", "-NONE-", "-NONE-", ",", "RB", "VBP", "RB", "VB", "DT", "NN", "IN", "CD", "IN", "DT", "RBR", "JJ", "NNS", "TO", "VB", "NN", ",", "''", "PRP", "VBD", "-NONE-", ".", "IN", "DT", "NN", "IN", "NNS", ",", "JJ", "NN", "IN", "NN", "VBG", "JJ", "NNS", "MD", "VB", "IN", "DT", "NN", "IN", "NNS", ".", "``", "JJ", "NN", "MD", "RB", "VB", "IN", "DT", "NN", "-NONE-", "TO", "VB", "JJ", "NNS", "CC", "-NONE-", "TO", "VB", "RP", "NNS", "WDT", "-NONE-", "VBP", "NN", "''", "CC", "-NONE-", "TO", "VB", "NNS", "WDT", "-NONE-", "VBP", "NNP", "POS", "NN", ",", "DT", "VBG", "NN", "IN", "JJ", "NN", ",", "VBG", "TO", "DT", "NNP", "NN", ".", "DT", "NNP", "RB", "VBZ", "IN", "$", "CD", "CD", "-NONE-", "-NONE-", "RB", "IN", "JJ", "NN", "IN", "IN", "DT", "JJ", "NN", "NN", "IN", "$", "CD", "CD", "-NONE-", ".", "VBN", "NN", "IN", "CD", "NNP", "NNP", "NNS", "MD", "VB", "JJR", "JJ", "NN", "VBD", "NNP", "POS", "NN", "NNS", ",", "CC", "DT", "JJ", "NN", "VBD", "RB", "RB", "RB", "IN", "JJ", "NN", ".", "DT", "NNP", "JJ", "NN", "VBD", "CD", "TO", "CD", "IN", "JJ", "NN", "IN", "CD", "CD", "NNS", ".", "IN", "NNS", "IN", "NN", ",", "PRP", "VBD", "DT", "JJ", "NN", "IN", "NNP", ".", "NN", "POS", "NN", "NN", "VBD", "RB", "IN", "DT", "NN", "POS", "JJ", "NN", "IN", "CD", "CD", ".", "IN", "NNP", ",", "DT", "JJS", "NN", "IN", "DT", "NN", "RB", "JJ", ",", "JJ", "NN", "VBD", "RB", "CD", "CD", "NNS", ".", "DT", "NNP", "CD", "NN", "IN", "DT", "JJS", "JJ", "NNS", "VBD", "CD", "TO", "CD", ".", "DT", "NN", "IN", "DT", "CD", "JJS", "NNP", "JJ", "NNS", "VBD", "RB", "IN", "RB", ",", "-NONE-", "VBG", "CD", "TO", "CD", ".", "CC", "DT", "JJR", "NNP", "NN", "NN", ",", "WDT", "-NONE-", "VBZ", "NN", "NNS", ",", "VBD", "CD", "TO", "CD", ".", "DT", "NN", "NNS", "VBD", "DT", "NN", "WRB", "NNP", "NNP", "CC", "NNP", "CC", "NNP", "IN", "NNP", "NNP", "VBD", "-NONE-", "PRP", "RB", "RB", "VBP", "VBG", "NN", "WDT", "-NONE-", "MD", "VB", "NNS", "IN", "JJ", "NNS", "TO", "VB", "IN", "NNP", "CC", "NNP", "NNS", "-NONE-", ".", "DT", "CD", "NNS", "VBD", "IN", "CD", ".", "NNP", "IN", "NNP", "NNP", "POS", "NNS", "VBP", "VBN", "-NONE-", "IN", "DT", "NNP", "NNP", "NNP", "NNP", ".", "DT", "NNS", "IN", "VBG", "NNS", "VBN", "-NONE-", "IN", "NNP", "VBD", "RB", "VBN", "-NONE-", "RB", "IN", "DT", "NN", ",", "NNS", "VBD", "-NONE-", "-NONE-", ",", "IN", "JJ", "IN", "DT", "NNS", "VBP", "JJ", "NNS", "VBN", "-NONE-", "TO", "PRP$", "NN", "NN", "NNS", ",", "-NONE-", "VBG", "PRP", "JJ", "NN", "NNS", ".", "CC", "NNS", ",", "-NONE-", "VBG", "IN", "NNP", "MD", "VB", "DT", "NN", "VBG", "JJ", "JJ", "NN", "RB", ",", "RB", "VBD", "RP", "NNS", "IN", "NNP", "NNS", "IN", "DT", "NN", ".", "``", "DT", "NN", "IN", "DT", "NNS", "WDT", "-NONE-", "VBP", "VBN", "IN", "NN", "RB", "VBD", "DT", "NN", "-NONE-", "-NONE-", "TO", "VB", "-NONE-", ",", "''", "VBD", "-NONE-", "NNP", "NNP", ",", "JJ", "NN", "IN", "NN", "NNS", "IN", "NNP", "NNP", "NNP", "POS", "NNP", "NN", ".", "DT", "JJS", "NN", "VBD", "NNP", "NNP", ",", "WDT", "-NONE-", "VBD", "CD", "CD", "TO", "CD", ".", "DT", "NNP", ",", "NNP", ",", "NN", "VBZ", "VBN", "TO", "DT", "NN", "IN", "NNP", "IN", "NNP", "NNP", "IN", "DT", "NN", "IN", "DT", "VBN", "NN", "IN", "IN", "$", "CD", "-NONE-", "DT", "NN", "WDT", "-NONE-", "VBZ", "JJ", "NNP", ".", "NNP", "NNP", ",", "DT", "NNP", ",", "NNP", ",", "NN", "NN", "WP", "-NONE-", "VBZ", "NN", "NNS", ",", "VBD", "-NONE-", "DT", "NN", "RB", "VBZ", "DT", "NN", "``", "DT", "JJ", "NN", ".", "''", "NNP", "NNP", "VBD", "-NONE-", "NNP", "NNP", "RB", "VBD", "RB", "IN", "NN", "NNS", "VBP", "VBN", "TO", "VB", "IN", "NNS", ".", "DT", "NNP", "NN", "NN", "VBN", "-NONE-", "IN", "DT", "NN", "NN", ",", "NNP", "NNP", "NNP", ",", "VBD", "JJR", ".", "PRP", "VBD", "CD", "TO", "CD", "CD", ".", "NNP", "NNP", "VBZ", "VBN", "DT", "NN", "NN", "-NONE-", "IN", "NNP", "NNP", "CC", "NNP", "NNP", ",", "IN", "WDT", "DT", "IN", "PRP$", "JJ", "NNS", "MD", "VB", "VBN", "-NONE-", "IN", "$", "CD", "-NONE-", "DT", ",", "CC", "$", "CD", "CD", "-NONE-", "-NONE-", ".", "IN", "JJ", "NNP", "NNS", "WP$", "NNS", "-NONE-", "VBP", "IN", "DT", "NNP", "NN", ",", "NNP", "IN", "NNPS", "NNP", ",", "VBN", "-NONE-", "IN", "NNP", ",", "VBD", "PRP$", "NN", "VB", "CD", "CD", "TO", "CD", "CD", ".", "NNP", "VBD", "CD", "TO", "CD", "CD", ":", "NNS", "IN", "NNP", ",", "DT", "NNP", "JJ", "NN", "VBG", "NN", ",", "VBD", "CD", "TO", "CD", "CD", ".", "IN", "JJ", "NN", "NNS", ",", "NNP", "NNPS", "NNP", "VBD", "JJR", "IN", "CD", "NN", "IN", "DT", "NN", "IN", "CD", "CD", "TO", "CD", "CD", ".", "DT", "NNP", "NN", "VBD", "-NONE-", "TO", "VB", "VBN", "-NONE-", "IN", "DT", "NN", "IN", "NNP", "NNP", "IN", "NNP", "IN", "$", "CD", "-NONE-", "DT", "NN", ".", "NNP", "NNP", "NNPS", "CC", "NNP", ",", "DT", "NNP", "NN", "NN", ",", "VBD", "CD", "TO", "CD", "CD", "IN", "-NONE-", "VBG", "DT", "JJ", "NN", "IN", "$", "CD", "CD", "-NONE-", "IN", "DT", "$", "CD", "CD", "-NONE-", "JJ", "NN", "RB", "JJ", "TO", "PRP$", "JJ", "NN", "VBG", "NN", ".", "NNP", "NNP", "NNP", ",", "NNP", "NNP", "POS", "NN", "CC", "JJ", "NN", "NN", ",", "VBD", "-NONE-", "DT", "JJ", "NN", "RB", "VBZ", "JJ", "NNS", "VBN", "-NONE-", "IN", "DT", "NN", ".", "PRP", "VBD", "-NONE-", "DT", "NN", "POS", "NN", "NN", "VBZ", "JJ", ".", "PRP", "RB", "VBD", "IN", "IN", "DT", "NNS", ",", "CC", "-NONE-", "``", "VBG", "DT", "JJ", "NN", "IN", "NN", "NNS", ",", "DT", "NN", "VBZ", "-NONE-", "TO", "VB", "JJ", "NNS", "IN", "CD", ".", "''", "NNP", "POS", "VBD", "CD", "CD", "TO", "CD", "CD", "CC", "NNP", "NNP", "POS", "JJ", "NN", "NNS", ",", "CC", "NNS", ",", "VBD", "CD", "TO", "CD", "CD", ".", "DT", "CD", "NNS", "VBD", "-NONE-", "PRP", "VBD", "IN", "DT", "JJ", "NN", "NN", "IN", "WDT", "NNP", "MD", "VB", "DT", "NN", "NN", "IN", "DT", "IN", "NNP", "POS", "JJ", "NNS", "IN", "$", "CD", "-NONE-", "DT", "-NONE-", ".", "RB", "IN", "DT", "NN", "NN", ",", "NNP", "POS", "NNPS", "VBD", "CD", "TO", "CD", "CD", "IN", "NN", "IN", "CD", "CD", ".", "IN", "DT", "JJ", "NN", "NN", "VBD", "DT", "NN", "NN", "JJ", "NN", ",", "PRP$", "NNS", "VBP", "VBN", "IN", "CD", "NN", ".", "IN", "JJ", "NNP", "NNP", "VBD", "-NONE-", "VBG", "NNP", "NNP", "IN", "DT", "NN", "NN", ",", "NNP", "NNP", "POS", "NNS", "VBD", "CD", "TO", "CD", "CD", ".", "NNP", "NNP", ",", "WDT", "RB", "-NONE-", "VBZ", "IN", "CD", "NN", "IN", "NNP", "NNP", ",", "VBD", "-NONE-", "VBG", "NNP", "NNP", "NNS", "IN", "NNS", "IN", "DT", "JJ", "NN", "IN", "NNP", "NNP", "JJ", "NN", "WDT", "-NONE-", "MD", "VB", "JJ", "IN", "CD", "NNS", "IN", "NNP", "NNP", "POS", "NN", ".", "NNP", "POS", "VBN", "CD", "CD", "TO", "CD", "CD", ".", "DT", "NN", "NN", "VBD", "-NONE-", "PRP", "VBZ", "VBN", "PRP$", "NNS", "VBN", "-NONE-", "NNP", "IN", "PRP$", "NN", "NNS", "NN", ".", "DT", "NN", "NN", "VBD", "-NONE-", "PRP$", "NN", "VBD", "VBN", "-NONE-", "IN", "NNS", "IN", "DT", "NN", "NN", ",", "NNP", "NNP", "NNP", ",", "``", "IN", "DT", "NN", "-NONE-", "TO", "VB", "JJ", "NNS", "IN", "DT", "NN", ".", "''", "NNP", "NNP", "VBZ", "VBN", "-NONE-", "IN", "CD", "NNP", "POS", "NNS", ",", "NNP", "NNP", ",", "NNP", "NNP", "NNP", "NNP", "CC", "NNP", "NNP", "NNP", "NNP", ",", "WP", "RB", "DT", "NN", "-NONE-", "VBD", "-NONE-", "PRP", "VBD", "DT", "CD", "NN", "NN", "IN", "NNP", "POS", "CC", "VBD", "-NONE-", "TO", "VB", "DT", "NN", "IN", "NNS", "IN", "NNP", "POS", "JJ", "NN", ".", "NNP", "NNP", "VBD", "CD", "TO", "CD", "IN", "NN", "IN", "CD", "NNS", ".", "DT", "NNP", ",", "NNP", ",", "JJ", "NNS", "NN", "VBD", "-NONE-", "PRP", "VBZ", "-NONE-", "TO", "VB", "DT", "``", "JJ", "''", "NN", "IN", "PRP$", "JJ", "JJ", "NN", "VBN", "NNP", "CD", ".", "IN", "DT", "JJ", "NN", ",", "NNP", "VBD", "JJ", "NN", "IN", "$", "CD", "CD", "-NONE-", ",", "CC", "CD", "NNS", "DT", "NN", ",", "IN", "NN", "IN", "$", "CD", "CD", "-NONE-", ".", "DT", "NNP", "NNP", "NNP", "VBZ", "VBN", "JJ", "NNS", "IN", "NNS", "WP", "-NONE-", "VBP", "-NONE-", "TO", "VB", "JJ", "NN", "IN", "NNS", "WP", "-NONE-", "VBP", "PRP", "JJR", "IN", "$", "CD", "-NONE-", "IN", "NN", ".", "DT", "NNS", ",", "VBN", "-NONE-", "TO", "IN", "JJS", "CD", "NN", "NN", "NNS", "IN", "JJ", "JJ", "NNS", "IN", "DT", "JJ", "NN", ",", "VBP", "VBN", "TO", "DT", "NN", "IN", "NNS", "IN", "DT", "JJ", "NN", ",", "WP", "-NONE-", "VBP", "-NONE-", "DT", "NN", "VBZ", "VBN", "-NONE-", "IN", "JJ", "NN", ".", "DT", "NNP", "NNS", "VBP", "IN", "DT", "CD", "NN", "WDT", "-NONE-", "VBZ", "NN", "WP", "-NONE-", "VBZ", "JJR", "IN", "$", "CD", "-NONE-", "IN", "NN", "IN", "DT", "NN", "CC", "NN", "IN", "CD", "CC", "JJR", "JJ", "NNS", "``", "IN", "DT", "NN", "IN", "NN", "CC", "NN", "''", "TO", "VB", "DT", "NN", "IN", "DT", "NN", "VBN", "-NONE-", "IN", "NN", "CD", ".", "DT", "NN", "VBZ", "IN", "JJ", "NNS", "IN", "DT", "NN", "POS", "NN", ",", "NNP", "NNP", "NN", ",", "NN", "NN", "CC", "NNS", "IN", "DT", "NNS", "VBN", "-NONE-", "IN", "DT", "NN", ".", "NN", "-NONE-", "TO", "VB", "DT", "NN", "VBD", "VBN", "JJ", "IN", "DT", "NN", "IN", "JJ", "NNP", ",", "WRB", "NNP", "VBD", "IN", "DT", "NN", "VBD", "DT", "NN", "JJ", "IN", "IN", "TO", "CD", "NNS", "IN", "NN", "-NONE-", ".", "NNS", "VBP", "VBN", "IN", "CD", ",", "WRB", "DT", "NN", "VBD", "NN", "-NONE-", ",", "IN", "PRP", "MD", "RB", "VB", "NN", "IN", "NNS", "WP", "-NONE-", "VBP", "RB", "VB", "PRP$", "NNS", "TO", "VB", "VBN", "-NONE-", ".", "JJ", "NNS", "VBP", "VBN", "JJ", "NNS", "TO", "DT", "NNP", "IN", "JJ", "NNS", ",", "-NONE-", "VBG", "JJ", "NN", ".", "IN", "JJ", "NN", ",", "DT", "NNP", "RB", "VBD", "IN", "DT", "JJ", "NNS", ".", "``", "DT", "NN", "VBZ", "DT", "NN", "TO", "VB", ",", "IN", "NN", ",", "DT", "NN", "IN", "PRP$", "NN", ",", "''", "VBD", "-NONE-", "NNP", "NNP", "NNP", ",", "NN", "IN", "DT", "NNP", "NNP", "IN", "NNP", "NNP", "NNPS", ".", "``", "DT", "NNP", "VBZ", "VBG", "NNS", "-NONE-", "TO", "VB", "DT", "JJ", "NN", "TO", "DT", "NN", ",", "''", "VBD", "NNP", "NNP", ",", "DT", "NNP", "NN", "WP", "-NONE-", "VBZ", "VBN", "IN", "NNS", "IN", "NNS", "WP", "-NONE-", "VBD", "NNS", "IN", "JJ", "NNS", "CC", "VBZ", "PRP", "VBD", "DT", "JJ", "NNP", "NNS", "VBN", "-NONE-", "IN", "JJ", "NN", ".", "NNP", "NNP", "VBD", "IN", "NNS", "WP", "-NONE-", "VBP", "NN", "MD", "VB", "VBN", "NN", "NNS", "WP", "-NONE-", "VBP", "RB", "VB", "JJ", "NN", "NNS", ".", "DT", "NNS", "MD", "RB", "RB", "VB", "IN", "NN", "WRB", "PRP", "VBP", "NNS", "-NONE-", ".", "NNP", "NNP", "VBD", "-NONE-", "EX", "RB", "MD", "VB", "JJ", "NNS", "IN", "WDT", "NNS", "MD", "RB", "VB", "DT", "NN", "TO", "VB", "-NONE-", "PRP", "VBD", "VBN", "JJ", "NN", "NNS", "-NONE-", ".", "-NONE-", "VBG", "RP", "JJ", "NNS", "IN", "DT", "NNS", "MD", "VB", "DT", "NNP", "RP", "CC", "VB", "NN", "IN", "DT", "NNS", ",", "PRP", "VBD", "-NONE-", "-NONE-", ".", "DT", "NN", "NNS", "POS", "NN", "VBD", "DT", "NN", "NN", "-NONE-", "-NONE-", "DT", "NN", ",", "VBN", "-NONE-", "IN", "NNP", "NNP", "NN", "NNP", "NNP", ",", "-NONE-", "-NONE-", "TO", "VB", "IN", "DT", "NN", ".", "DT", "NNP", "NNP", "NNP", "POS", "NNP", "IN", "NNPS", "VBD", "DT", "NN", "-NONE-", "IN", "CD", "VBG", "DT", "NNP", "NN", "NN", ".", "NNP", "NNP", ",", "DT", "NNP", "NNP", "NN", "WP", "-NONE-", "VBZ", "DT", "NNP", "POS", "JJ", "NN", "NN", ",", "VBD", "IN", "NNS", "VBP", "VBN", "-NONE-", "IN", "DT", "NNP", "POS", "NN", "IN", "NNS", "IN", "-NONE-", "VBG", "NN", "IN", "DT", "NN", "IN", "WRB", "DT", "NN", "VBZ", "PRP", "-NONE-", "CC", "-NONE-", "TO", "VB", "DT", "NN", "IN", "-NONE-", "VBG", "DT", "JJ", "NN", "WDT", "-NONE-", "MD", "VB", "IN", "NN", ".", "NNP", "NNP", "VBD", "-NONE-", "PRP", "VBD", "IN", "NNS", "IN", "DT", "NNP", "CC", "DT", "NNP", "NNP", ",", "WDT", "-NONE-", "MD", "VB", "DT", "NN", "NNS", "IN", "NNS", ",", "-NONE-", "TO", "VB", "DT", "NN", "JJ", "NNP", ".", "IN", "DT", "NN", ",", "PRP", "VBD", "-NONE-", "-NONE-", ",", "DT", "NNP", "NNP", "VBD", "PRP", "IN", "NN", "NNS", "MD", "RB", "VB", "VBN", "-NONE-", "IN", "NNS", "IN", "JJ", "NN", "CC", "NN", "NN", ".", "NNP", "NNP", "VBD", "-NONE-", "NNP", "NNS", "VBD", "DT", "NNP", "NNP", "POS", "JJ", "NN", "IN", "DT", "NN", ".", "CC", "IN", "DT", "NNS", "VBN", "-NONE-", "IN", "JJ", "NNS", ",", "NNP", "NNP", "NNP", "IN", "DT", "NNP", "NN", "NN", "IN", "NNP", ",", "VBD", "NNS", "IN", "``", "-NONE-", "VBG", "-NONE-", "TO", "RB", "VB", "DT", "VBN", "NN", "MD", "VB", "IN", "NN", "NN", "NN", "VBG", "VBN", "-NONE-", ".", "''", "IN", "DT", "NNS", ",", "DT", "NNP", "VBD", "IN", "NN", "VBG", "RB", "TO", "NNS", "-NONE-", "PRP", "VBD", "-NONE-", "IN", "CD", ".", "DT", "NN", "IN", "DT", "NNP", "VBD", "IN", "``", "EX", "VBZ", "VBN", "NN", "VBN", "-NONE-", "IN", "JJ", "NNS", ",", "''", "CC", "PRP", "VBD", "-NONE-", "TO", "VB", "WRB", "DT", "NNS", "VBD", "VBN", "-NONE-", "TO", "NNS", "RB", ".", "NNS", "JJ", "IN", "DT", "NNP", "NNP", "POS", "NN", "VBD", "IN", "JJ", "NNS", "VBD", "RB", "DT", "NN", "IN", "DT", "NNP", "POS", "NNS", "IN", "DT", "JJ", "NN", ".", "NNS", "VBP", "IN", "IN", "PRP", "VBP", "NN", "IN", "NNS", ",", "DT", "NN", "MD", "RB", "VB", "RP", "IN", "DT", "NNS", "IN", "NNS", ".", "NNS", "VBP", "NN", "NN", "-NONE-", "TO", "VB", "DT", "NN", "NNS", "IN", "DT", "NN", "CC", "DT", "NN", ".", "CC", "PRP", "VBP", "VBN", "JJ", "NNS", "IN", "NN", "NN", "CC", "VBD", "DT", "NN", "-NONE-", "TO", "VB", "VB", "JJ", "NNS", ".", "DT", "JJ", "NNS", "VBD", "IN", "DT", "NNP", "VBD", "VBG", "DT", "NNS", "-NONE-", "TO", "VB", "DT", "NN", ".", "IN", "DT", "NN", "IN", "JJ", "NNS", ",", "JJ", "NNS", "VBP", "VBN", "-NONE-", "TO", "VB", "NNS", "POS", "NNS", "IN", "NN", "VBG", "TO", "NNS", "IN", "NNS", "MD", "VB", "JJ", ".", "DT", "NN", "IN", "JJ", "JJ", "NNS", "VBZ", "DT", "NN", ".", "RB", ",", "NNS", "VBP", "IN", "RBR", "JJ", "JJ", "NN", "IN", "JJ", "NN", ",", "CC", "RB", "JJ", "NNP", "NNP", "NN", "NNP", "IN", "NNP", ",", "NNP", ".", "IN", "NNP", ",", "DT", "NN", "VBD", "DT", "NN", "NN", "-NONE-", "TO", "VB", "-NONE-", "PRP", "VBD", "VBG", "-NONE-", "JJ", "NN", "CD", "-NONE-", "TO", "VB", "DT", "NNP", "NNP", "NN", "NN", ".", "DT", "NN", ":", "DT", "NN", "-NONE-", "IN", "NNP", "-NONE-", "TO", "VB", "JJ", "NNS", "DT", "NN", ".", "``", "DT", "NN", "IN", "PRP$", "NN", "NNS", "VBD", "VBG", "-NONE-", "TO", "VB", "PRP", "IN", "CD", "CC", "CD", "NNS", ",", "CC", "PRP", "VBD", "JJ", "-NONE-", "PRP", "VBD", "VBG", "-NONE-", "TO", "VB", "-NONE-", "TO", "VB", "PRP", "IN", "DT", "NN", ",", "''", "DT", "NN", "VBD", "-NONE-", "IN", "DT", "NN", ".", "JJ", "NNS", "VBP", "$", "CD", "-NONE-", "RB", ":", "IN", "NNP", ",", "NNP", "VBD", "DT", "NN", "WDT", "-NONE-", "MD", "VB", "VBN", "PRP$", "NN", "IN", "CD", "NN", ".", "NNP", "NNP", ",", "CD", ",", "VBD", "-NONE-", "PRP", "-NONE-", "VBZ", "JJ", "IN", "NNS", "TO", "VB", "WP", "PRP", "VBP", "-NONE-", "-NONE-", ".", "``", "NNS", "VBP", "RB", "VBG", "WP", "PRP", "VBP", "-NONE-", ".", "PRP", "VBP", "RP", "IN", "JJ", "NNS", "CC", "NNS", ":", "CC", "NN", "VBZ", "DT", "NN", ".", "WRB", "PRP", "VBP", "DT", "JJ", "NN", "-NONE-", ",", "DT", "IN", "DT", "JJ", "PRP", "VBP", "VBN", "-NONE-", "TO", "DT", "JJ", "NN", ".", "''", "IN", "PRP$", "JJ", "NN", ",", "IN", "NN", "IN", "NN", "IN", "JJ", "NN", "IN", "DT", "NNP", "NN", "IN", "NNP", ",", "NNP", "CC", "NNP", ",", "PRP", "MD", "VB", "RP", "RB", "RBR", ".", "DT", "NN", "VBD", "-NONE-", "TO", "VB", "PRP$", "NN", "IN", "NN", ",", "CC", "VBD", ":", "``", "PRP", "VBP", "VBG", "-NONE-", "TO", "VB", "DT", "JJ", "NN", ".", "''", "NNP", "NN", "NN", "NNS", "VBP", "DT", "JJ", "NN", ".", "NN", "NNP", "NNP", "VBZ", "VBG", "DT", "NNPS", "NNP", "IN", "NNP", "NNP", "IN", "$", "CD", "CD", "-NONE-", ",", "-NONE-", "VBG", "-NONE-", "PRP", "VBD", "DT", "``", "NN", "-NONE-", "TO", "VB", "CC", "VB", "''", "PRP", "IN", "-NONE-", "VBG", "DT", "NNS", "POS", "NN", "NN", ".", "DT", "NN", "VBZ", "NNP", "NNPS", "NNP", ",", "DT", "NN", "NN", "NN", "IN", "WDT", "NNP", "NNP", "VBZ", "DT", "NN", "-NONE-", ".", "NNP", "NNP", ",", "DT", "NNPS", "NNP", "NN", ",", "RB", "VBD", "VBN", "-NONE-", "IN", "DT", "NN", "IN", "NNP", ",", "WDT", "-NONE-", "VBD", "VBN", "-NONE-", "IN", "DT", "NN", "JJ", "NN", ".", "DT", "NN", "VBD", "DT", "NN", "IN", "DT", "NN", "CC", "NN", "NN", "IN", "NNP", "CD", ".", "IN", "PRP$", "NN", ",", "NNP", "NNP", "VBZ", "-NONE-", "DT", "NN", "RB", "VBD", "NNP", ",", "CC", "DT", "NN", "VBD", "-NONE-", "TO", "VB", "DT", "NN", "IN", "DT", "NN", ".", "DT", "NN", "IN", "DT", "NN", "VBD", "-NONE-", "DT", "NN", "POS", "NNS", "VBP", "VBG", "DT", "NN", ".", "PRP", "VBD", "-NONE-", "JJ", "NNS", "VBP", "JJ", "CC", "VBD", "-NONE-", "TO", "VB", "IN", "IN", "DT", "VBP", "VBG", "VBN", "-NONE-", "IN", "NNP", "NNP", ".", "NNP", "NNP", "POS", "NN", ",", "NNP", "NNP", "NNP", ",", "VBD", "-NONE-", "DT", "NN", "VBZ", "RB", "IN", "DT", "NN", "POS", "JJ", "NNS", "IN", "JJ", "NN", ".", "NNP", "NNP", "VBD", "-NONE-", "DT", "NN", "JJ", "NN", "VBZ", "VBN", "-NONE-", "IN", "NNP", "IN", "NNP", "NNP", ".", "NNP", "NNP", ",", "WP", "-NONE-", "MD", "VB", "IN", "DT", "JJ", "NN", ",", "VBD", "-NONE-", "DT", "NNS", "VBP", "JJ", "CC", "IN", "DT", "NN", "IN", "DT", "NN", "MD", "VB", "JJ", ".", "IN", "NN", "TO", "DT", "NNS", ",", "DT", "NN", "VBZ", "DT", "NN", "NN", "VBG", "DT", "NN", "IN", "-NONE-", "VBG", "-NONE-", "CC", "VBG", "IN", "-NONE-", "NNP", "NNP", ".", "NN", "NN", "VBN", "-NONE-", ":", "DT", "JJ", "NNS", "NN", "VBD", "DT", "JJR", "NN", "NN", "IN", "DT", "NNP", "MD", "VB", "DT", "NN", "IN", "JJ", "NNS", "IN", "JJ", "NNS", "WDT", "-NONE-", "VBP", "JJ", "NNS", ".", "DT", "NNP", "IN", "NNP", "CC", "NNP", "NNPS", "NN", "VBN", "-NONE-", "IN", "CD", "VBZ", "DT", "NN", "IN", "JJ", "NN", "NNP", "NNS", "IN", "NNS", "WDT", "-NONE-", "VBP", "DT", "NN", "IN", "-NONE-", "VBG", "DT", "NN", ",", "JJ", "IN", "NN", "NN", "CC", "NNS", ".", "DT", "NN", "RB", "VBZ", "NN", "IN", "NNS", "WDT", "``", "-NONE-", "VBP", ",", "VBP", "CC", "VBP", "NN", ".", "''", "NN", "NNP", "NNS", "VBP", "DT", "JJ", "JJS", "NN", "IN", "JJ", "NN", "IN", "JJ", "NNS", ",", "VBG", "TO", "DT", "NN", "IN", "DT", "NNP", "NNP", "NNP", "NNP", "IN", "NNPS", "IN", "NNP", "NNP", ".", "DT", "NN", "VBD", "IN", "DT", "NNS", "VBP", "RB", "VB", "DT", "NN", "IN", "NN", "IN", "NN", "NN", "NNS", "CC", "IN", "DT", "NNS", "IN", "NN", "NNS", "VBP", "RB", "VB", "DT", "NNS", "IN", "JJ", "NNS", ".", "NN", "VBZ", "NNP", "NN", "IN", "NN", "IN", "NNS", "IN", "JJ", "NN", "NNS", ".", "NNP", "NNP", "NNP", "NNP", "NNP", "VBD", "VBN", "NNS", "IN", "DT", "JJ", "NN", "IN", "PRP$", "NNS", "TO", "DT", "NN", "JJ", "NNP", ",", "CD", "NNS", "IN", "-NONE-", "VBG", "DT", "JJ", "NN", "TO", "CD", "NNS", "IN", "NN", "NN", "IN", "-NONE-", "VBG", "CD", "JJ", "NNS", "IN", "DT", "NN", "NN", ".", "DT", "NN", "VBD", "VBN", "-NONE-", "IN", "-NONE-", "VBG", "TO", "DT", "NNS", "IN", "``", "NNS", "''", "CC", "-NONE-", "VBG", "-NONE-", "PRP", "MD", "RB", "VB", "VBN", "VBN", "-NONE-", "``", "IN", "PRP", "VBD", "RB", "VBN", "VBG", "DT", "NNS", "-NONE-", "VBG", "RP", "JJ", "NNS", ".", "''", "CC", "NNP", "NNP", "NNP", ",", "DT", "JJ", "NN", "VBN", "-NONE-", "IN", "DT", "NNP", "NNP", "NNP", ",", "VBD", "-NONE-", "NNP", "NNP", "VBD", "RB", "VB", "DT", "JJ", "NNS", "IN", "NN", ",", "IN", "PRP", "VBD", "VB", "DT", "NN", "POS", "JJ", "NN", "IN", "-NONE-", "VBG", "RB", "IN", "DT", "VBG", "NN", ".", "-NONE-", "VBG", "IN", "DT", "NN", "``", "VBZ", "RB", "VBN", "DT", "NN", "CC", "NN", ",", "''", "NNP", "NNP", "VBD", "IN", "PRP", "``", "MD", "VB", "JJ", "IN", "DT", "NN", "VBG", "DT", "NN", "CC", "NN", "''", "IN", "DT", "NN", ".", "NNP", "NNP", "RB", "VBD", "-NONE-", "NNP", "NNP", "POS", "NNS", "VBD", "RB", "VB", "DT", "NN", "CC", "DT", "NN", "IN", "NN", ".", "DT", "NN", "VBZ", "JJ", "TO", "VB", "IN", "DT", "NNP", "NNP", "IN", "NNP", "NNP", ",", "WDT", "-NONE-", "VBZ", "VBN", "-NONE-", "TO", "VB", "NNS", ".", "NNP", "NN", "VBZ", "TO", "NN", "CD", ".", "NNS", "IN", "DT", "JJ", "JJ", "NN", "IN", "NNP", "NNP", "VBD", "VBG", "NNS", "NN", "IN", "DT", "NNP", "NN", "IN", "NNP", "NNP", "NNP", "NNP", "NNP", "NNP", ".", "IN", "DT", "JJ", "NN", ",", "DT", "NN", "VBZ", "VBN", "NNP", ",", "DT", "NNP", ",", "NNP", ",", "NN", "NN", "NN", ",", "CC", "PRP$", "NNP", "NNP", "NNP", "NNP", "NNP", "IN", "-NONE-", "VBG", "-NONE-", "TO", "VB", "DT", "JJ", "NN", "IN", "NNP", "NNP", "NNP", "IN", "NN", "IN", "NNP", "POS", "JJ", "NN", "IN", "DT", "JJ", "NN", "IN", "DT", "NN", "IN", "NNP", "CD", ".", "DT", "JJ", "CD", "NNP", "NNS", "VBD", "IN", "NNS", "RBR", "DT", "NN", ".", "DT", "NN", "VBZ", "VBN", "-NONE-", "TO", "VB", "CD", "NNS", ".", "-NONE-", "VBG", "TO", "DT", "NN", ":", "DT", "JJ", "NN", "IN", "DT", "NN", "NN", "IN", "DT", "NNP", "NN", "VBD", "DT", "NNP", "NN", "IN", "NNP", ",", "NNP", "CC", "NNP", ".", "NNP", "NNP", "NNP", ",", "DT", "NN", "IN", "NNP", "CD", "IN", "DT", "JJ", "NN", "NN", "IN", "DT", "NN", "IN", "NNP", "NNP", ",", "VBD", "DT", "NN", "IN", "DT", "NNP", ",", "NNP", ",", "NN", "IN", "DT", "JJ", "NN", ".", "PRP", "MD", "VB", "IN", "JJ", "NN", "NN", "NN", ".", "NNP", "NNP", ",", "CD", ",", "RB", "VBZ", "VBN", "IN", "NN", "NN", "-NONE-", "CC", "NN", "-NONE-", "IN", "DT", "NNS", "NN", "IN", "DT", "NNP", "NN", "POS", "NN", "IN", "DT", "NNP", "NNP", "IN", "NNP", "NNP", ",", "VBN", "-NONE-", "IN", "NNP", ".", "NNP", "NNP", "SYM", "NNP", "NNP", "VBD", "-NONE-", "PRP", "VBZ", "VBN", "DT", "NN", "-NONE-", "IN", "NN", "-NONE-", "TO", "VB", "NNS", "CC", "JJ", "NN", "IN", "NNP", ",", "NNP", ",", "IN", "NNP", "NNP", ".", "NNS", "VBD", "RB", "VBN", "-NONE-", ".", "DT", "NN", "NN", "VBD", "-NONE-", "DT", "NNS", "VBP", "IN", "CD", "CD", "JJ", "NNS", "IN", "NN", ",", "NN", "CC", "NN", "NN", "IN", "CD", "NNS", "IN", "NN", ".", "NNP", "NNP", "POS", "JJ", "NN", "VBD", "DT", "JJ", "NN", "IN", "-NONE-", "RB", "VBG", "IN", "PRP$", "NN", "POS", "VBG", "NNS", "IN", "RB", "CD", "NN", "IN", "JJ", "JJ", "NN", "NNS", ",", "IN", "NN", "NN", "NNP", "NNP", "VBD", "DT", "VBN", "NN", "IN", "-NONE-", "VBG", "IN", "DT", "JJ", "NN", ".", "RB", ",", "NN", "CC", "NN", "NNS", "VBD", "DT", "NN", "NNS", ",", "CC", "VBD", "IN", "DT", "JJR", "NN", "-NONE-", "DT", "NNS", "POS", "NNS", "VBP", "-NONE-", "IN", "JJ", "JJ", "NN", ".", "NNP", "VBD", "-NONE-", "PRP", "VBD", "DT", "NN", "IN", "JJR", "IN", "DT", "NNP", "NN", "IN", "CD", "JJ", "JJ", "NNS", "IN", "DT", "JJ", "CD", "NNS", ".", "DT", "NN", "RB", "VBD", "IN", "IN", "DT", "NN", "PRP", "VBD", "CD", "NNS", ",", "CC", "RB", "$", "CD", "-NONE-", ",", "IN", "DT", "NN", ".", "CC", "NNP", ",", "NNP", "POS", "NN", "CD", "NN", "NN", ",", "VBZ", "RB", "RB", ".", "NNP", ",", "CD", "IN", "PRP$", "JJS", "JJ", "NNS", ",", "VBD", "-NONE-", "PRP", "VBD", "CD", "NN", "IN", "CD", "JJ", "JJ", "NNS", "IN", "CD", ".", "IN", "DT", "NNS", ",", "NNP", "VBD", "DT", "NN", "TO", "NNP", ",", "WDT", "-NONE-", "VBD", "DT", "JJ", "NN", "CC", "VBD", "DT", "JJ", "NN", ".", "DT", "DT", "NNS", "VBD", "IN", "JJ", "NNS", "CC", "VBD", "DT", "NN", "CC", "NN", ".", "DT", "NNP", "IN", "NNP", "NNP", "CC", "NNP", "VBD", "NNS", "IN", "DT", "NNS", "-NONE-", "TO", "``", "VB", "JJ", "-NONE-", "PRP", "VBD", "''", "DT", "NN", "IN", "JJ", "NNS", ",", "VBG", "TO", "DT", "NN", "NN", ".", "``", "DT", "NNS", "VBP", "TO", "DT", "NN", "IN", "DT", "NNS", "POS", "JJ", "CC", "JJ", "NN", ",", "''", "DT", "NN", "NN", "VBD", "-NONE-", ".", "NNP", "POS", "NNP", "NNP", "NNP", "VBZ", "VBD", "-NONE-", "PRP", "VBZ", "VBG", "-NONE-", "VBG", "DT", "NNS", "IN", "JJ", "JJ", "NNS", ".", "``", "PRP", "MD", "VB", "-NONE-", "TO", "VB", "IN", "-NONE-", "VBG", "VBN", "JJ", "NN", ",", "''", "NNP", "NNP", "NNP", "NNP", ",", "VBD", "-NONE-", "IN", "DT", "VBN", "NN", "IN", "PRP", "VBD", "IN", "DT", "JJ", "NN", "NN", "IN", "PRP$", "NN", "POS", "NN", "NN", ".", "DT", "NNS", ",", "PRP", "VBD", "-NONE-", "-NONE-", ",", "VBD", "``", "JJ", "TO", "JJ", "NN", ".", "''", "NNP", "VBD", "DT", "NN", "VBG", ",", "``", "PRP", "VBP", "JJ", "IN", "-NONE-", "VBG", "VBN", "NN", "TO", "NN", ",", "''", "DT", "NN", "IN", "NN", "JJ", "IN", "NNP", "IN", "NNS", "VBN", "-NONE-", "IN", "JJ", "NNS", ".", "JJ", "NNS", "VBP", "RB", "VBD", "DT", "NN", "IN", "-NONE-", "VBG", "JJ", "NNS", "-NONE-", "TO", "VB", "DT", "NN", "WDT", "-NONE-", "MD", "VB", "JJ", "NNS", ".", "CC", "DT", "VBG", "NN", "VBZ", "IN", "JJ", "NNS", "RB", "VBN", "-NONE-", "IN", "JJ", "RB", ":", "JJ", "IN", "NNS", "VBG", "JJ", "NNS", "IN", "NNS", "CC", "VBG", "JJ", "NNS", ":", "IN", "VBG", "IN", "JJ", "JJ", "NN", ".", "DT", "NN", "VBZ", "RB", "VBN", "-NONE-", "IN", "JJ", "JJ", "NN", "IN", "JJ", "NN", ".", "RB", "RB", "EX", "VBP", "VBN", "DT", "JJ", "JJ", "NNS", "IN", "DT", "NN", ".", "CC", "IN", "CD", "IN", "DT", "NNS", "IN", "NN", ",", "NNP", "NNP", "NNP", "NNP", "VBD", "DT", "NN", "RB", "JJR", "IN", "DT", "NNP", "NN", ",", "VBG", "TO", "DT", "NN", ".", "DT", "JJ", "NNS", "VBP", "IN", "NNS", "JJ", "TO", "DT", "RB", "JJ", "NN", "NN", ".", "NNS", "VBP", "IN", "PRP", "VBP", "JJ", "NN", "TO", "NN", "NN", "IN", "NNP", ",", "IN", "NN", "IN", "JJ", "NNS", "RB", "VBP", "PRP", ".", "DT", "NNP", "NN", "IN", "JJ", "NNS", "VBZ", "VBN", "JJ", "NNS", "IN", "-NONE-", "RB", "VBG", "NNS", "IN", "NNS", "CC", "NNS", ":", "NNS", "-NONE-", "NNP", "CC", "NNP", "VBP", "-NONE-", ".", "-NONE-", "VBD", "-NONE-", "IN", "DT", "NN", "NN", "MD", "VB", "JJ", "NNS", ",", "NNP", "NNP", "VBD", ",", "``", "DT", "MD", "VB", "DT", "NN", "NN", ".", "''", "DT", "``", "JJ", "''", "NN", "RB", "VBD", "TO", "DT", "NN", "JJ", "NN", "WRB", "DT", "NN", "IN", "NNP", "VBD", "IN", "NNP", "VBD", "DT", "NN", "-NONE-", "TO", "VB", "DT", "NN", "NN", "-NONE-", "-NONE-", "TO", "VB", "PRP$", "NN", "-NONE-", ".", "DT", "NN", "VBD", "VBN", "-NONE-", "TO", "VB", "RB", "CD", "CD", "NNS", "-LRB-", "$", "CD", "-NONE-", "-RRB-", ",", "CC", "NNP", "RB", "VBD", "-NONE-", "TO", "VB", "PRP", "IN", "RB", ".", "RB", "NNP", ",", "NNP", "VBD", "-NONE-", "PRP", "VBD", "DT", "JJ", "NN", "-NONE-", "TO", "VB", "DT", "NN", "NN", "IN", "NNP", "NN", "CD", "NNS", "RBR", ".", "PRP", "RB", "VBD", "IN", "IN", "NNP", ",", "PRP", "VBD", "CD", "NNS", "-NONE-", "TO", "VB", "DT", "NN", "IN", "DT", "NNP", "JJ", "NN", ",", "CC", "CD", "NNS", "RB", ",", "PRP", "VBD", "CD", "NN", "-NONE-", "TO", "VB", "DT", "NNS", "NN", "IN", "NNP", "NN", ".", "DT", "NN", "VBD", "-NONE-", "PRP", "VBZ", "VBN", "-NONE-", "TO", "VB", "PRP$", "NNS", "IN", "NNP", "CC", "NNP", ".", "DT", "NNS", "VBD", "-NONE-", "PRP", "VBP", "RB", "VBN", "IN", "-NONE-", "TO", "VB", "-NONE-", "TO", "VB", "DT", "NN", "TO", "VB", "RP", "IN", "DT", "NNS", ".", "NNP", "CC", "NNP", "VBD", "-NONE-", "PRP", "VBD", "RB", "VBG", ",", "CC", "IN", "NN", "IN", "JJR", "JJ", "NNS", "MD", "VB", ".", "NNP", "NNP", "VBD", "IN", "NNS", "VBD", "RB", "VBN", "DT", "NNS", ",", "CC", "IN", "PRP", "VBD", "RB", "VB", "IN", "JJS", "IN", "DT", "NNS", "IN", "NNP", ".", "JJ", "JJ", "JJ", "NN", "NNS", "VBN", "-NONE-", "NN", "VBD", "-NONE-", "PRP", "VBP", "RBR", "VBN", "JJ", "NNS", ".", "``", "CD", "NN", "VBZ", "RB", "JJ", ",", "''", "NNP", "NNP", ",", "DT", "NN", "IN", "NNP", ",", "DT", "NNP", "NNP", "IN", "NNP", "NNP", ",", "VBD", "-NONE-", ".", "``", "NN", "MD", "VB", "JJ", ",", "CC", "IN", "JJS", "NNS", "MD", "VB", "VBN", "-NONE-", ".", "NNS", ":", "NNP", "NNP", "NNP", "VBD", "-NONE-", "TO", "VB", "NNP", "NNP", "NNP", ",", "WDT", "-NONE-", "VBZ", "CD", "NN", "NNS", "CC", "JJ", "NNS", "IN", "$", "CD", "CD", "-NONE-", ".", "NNS", "VBD", "RB", "VBN", "-NONE-", ".", "NNP", "VBZ", "DT", "RB", "VBN", "NNS", "NN", "VBN", "-NONE-", "IN", "JJ", "NNP", "NNP", "NNP", "NNP", "NNP", ".", "NN", ":", "NNP", "NNP", "NNP", "VBD", "DT", "NN", "IN", "CD", "IN", "PRP$", "NN", "NNS", "TO", "NNP", "NNP", "IN", "$", "CD", "CD", "-NONE-", "IN", "NN", "CC", "NNS", ",", "-NONE-", "VBG", "DT", "CD", "NN", "NN", "NN", "IN", "DT", "JJ", "NN", ".", "NNP", "VBD", "VBN", "-NONE-", "IN", "NNP", "NNP", "NNP", "CC", "NNP", "NNP", ".", "NNP", "NNP", "NNP", ",", "WDT", "-NONE-", "VBZ", "CC", "VBZ", "DT", "NN", "IN", "NN", "NN", "NNS", ",", "VBD", "-NONE-", "NNP", "NNS", "VBD", "CD", "NN", "TO", "$", "CD", "CD", "-NONE-", "IN", "$", "CD", "CD", "-NONE-", "DT", "NN", "RBR", ".", "NNS", "IN", "NNS", "JJ", "JJR", "IN", "CD", "NN", "VBD", "CD", "NN", "TO", "$", "CD", "CD", "-NONE-", "IN", "$", "CD", "CD", "-NONE-", ".", "NNP", "NNP", "IN", "NNP", "VBD", "-NONE-", "PRP", "MD", "VB", "CD", "NN", "NN", "NNS", "CC", "DT", "NNS", "NN", "IN", "NNP", "RB", "VBG", "TO", "NNP", "NNP", "NNP", "IN", "DT", "NNP", ".", "DT", "NN", "VBD", "-NONE-", "PRP", "VBD", "DT", "NN", "IN", "NN", "-NONE-", "TO", "RB", "VB", "RB", "VBN", "NNS", ".", "JJ", "NNP", ",", "DT", "NN", "RB", "VBD", "DT", "JJ", "NN", "NN", "IN", "NNP", ",", "NNP", "NNP", ",", "IN", "NNP", ".", "NNP", "VBD", "-NONE-", "DT", "NN", "IN", "DT", "JJ", "CC", "JJ", "NNS", "RB", "MD", "VB", "RB", "CD", "CD", "NNS", "-LRB-", "$", "CD", "CD", "-NONE-", "-RRB-", ".", "NNP", "NNP", "NNP", "NNP", ",", "WDT", "-NONE-", "VBZ", "JJ", "NN", "NN", ",", "VBD", "-NONE-", "PRP", "VBD", "JJ", "NN", "IN", "JJ", "NN", "NN", "WDT", "-NONE-", "MD", "VB", "JJ", "NN", "NN", ".", "IN", "NNP", "NNP", "NNP", "CD", "NN", "LS", ":", "JJ", "NN", "VBN", "-NONE-", "NN", "IN", "CD", "JJ", "NNS", "CC", "NNS", "IN", "DT", "CD", "JJS", "JJ", "NNS", "IN", "-NONE-", "VBN", "-NONE-", "IN", "NNP", "NNP", "NNP", ".", "LS", ":", "JJ", "JJ", "NN", ".", "VBN", "NN", "CD", "NN", ".", "NNP", "NNP", "NNP", "VBD", "DT", "NN", "$", "CD", "CD", "-NONE-", "JJ", "JJ", "NN", ",", "VBG", "DT", "JJ", "NN", "NN", "WDT", "-NONE-", "VBZ", "DT", "VBG", "JJ", "NN", "IN", "NN", "NN", ".", "IN", "NNP", ",", "DT", "JJ", "NN", "VBD", "-NONE-", "JJ", "NN", "CC", "VBG", "NNS", "MD", "VB", "IN", "DT", "VBN", "$", "CD", "CD", "TO", "$", "CD", "CD", "-NONE-", "JJ", "NN", "IN", "DT", "JJ", "NN", ".", "CC", "NN", "NNS", "VBD", "NN", "IN", "PRP", "VBD", "-NONE-", "TO", "VB", "DT", "$", "CD", "CD", "-NONE-", "JJ", "NN", "IN", "DT", "NN", "-NONE-", "TO", "VB", "DT", "NN", "IN", "JJ", "NN", "NNS", ",", "-NONE-", "VBG", "JJ", "NN", "IN", "DT", "NN", "RB", "RB", "IN", "DT", "NN", "-NONE-", "TO", "VB", "TO", "JJR", "JJ", "NN", "NNS", ".", "``", "IN", "DT", "NN", "NNS", ",", "EX", "VBZ", "VBN", "DT", "NN", "IN", "DT", "NN", "IN", "JJ", "NNS", "IN", "DT", "NN", "NN", ",", "PRP$", "JJ", "NN", ",", "''", "VBD", "-NONE-", "NNP", "NNP", "NNP", ",", "NN", "CC", "JJ", "JJ", "NN", ".", "``", "IN", "NN", ",", "JJ", "NN", "NNS", "IN", "CD", "VBP", "DT", "JJ", "NN", ",", "IN", "JJS", "IN", "NN", ".", "''", "IN", "DT", "NN", ",", "DT", "NN", "VBD", "-NONE-", "PRP", "VBD", "-NONE-", "TO", "VB", "RP", "PRP$", "JJS", "NN", "CC", "``", "VB", "JJ", "NNS", "''", "IN", "NN", "NNS", ".", "DT", "$", "CD", "CD", "-NONE-", "JJ", "NN", "VBZ", "CD", "NNS", "DT", "NN", ".", "-NONE-", "RB", "VBG", "DT", "JJ", "NN", ",", "DT", "NN", "VBD", "-NONE-", "PRP", "MD", "VB", "VBD", "DT", "JJ", "NN", "IN", "$", "CD", "CD", "-NONE-", ",", "CC", "CD", "NNS", "DT", "NN", ".", "DT", "NN", "RBR", ",", "PRP", "VBD", "NN", "IN", "$", "CD", "CD", "-NONE-", ",", "CC", "CD", "NNS", "DT", "NN", ".", "NN", "VBD", "CD", "NN", "TO", "$", "CD", "CD", "-NONE-", "IN", "$", "CD", "CD", "-NONE-", ".", "DT", "NN", "RB", "VBZ", "DT", "NN", "IN", "JJR", "JJ", "-NONE-", "TO", "JJ", "JJ", "-NONE-", "NN", "NNS", "IN", "WDT", "-NONE-", "TO", "VB", "NNS", "-NONE-", ".", "-NONE-", "VBN", "TO", "DT", "NN", ",", "DT", "NN", "VBD", "-NONE-", "PRP", "VBD", "VBG", "PRP$", "NNP", "NNP", ",", "NNP", ",", "NN", "TO", "DT", "NN", "CC", "NN", "NN", ".", "DT", "NN", "VBD", "-NONE-", "TO", "VB", "IN", "JJ", "NNS", "IN", "NN", ".", "``", "DT", "VBZ", "DT", "NN", "WDT", "-NONE-", "VBZ", "VBN", "IN", "NN", "NNS", "RBR", "RB", "IN", "DT", "JJ", "NN", "IN", "DT", "NN", "CC", "RB", "DT", "NN", "VBZ", "VBG", "RBR", "RB", "CC", "PRP", "VBP", "RB", "RB", "VBN", ",", "''", "VBD", "-NONE-", "NNP", "NNP", ",", "NN", "NN", "IN", "NNP", ",", "NNP", "CC", "NNP", ".", "``", "PRP", "VBP", "-NONE-", "DT", "NN", "VBZ", "JJ", "NN", "IN", "DT", "NN", ".", "''", "NN", "POS", "NN", "VBD", "VBN", "-NONE-", "IN", "NNS", "VBD", ".", "NNP", "NN", "NNS", "VBP", "VBG", "VBN", "JJ", "NN", "VBG", "DT", "RB", "JJ", "NN", ".", "NN", "IN", "DT", "NN", "VBZ", "IN", "NN", "NNS", "VBP", "VBG", "NNS", "JJ", "IN", "IN", "NNS", "IN", "DT", "NN", "IN", "DT", "NNP", "NN", ".", "NNP", "NNP", ".", "-LRB-", "NNP", "NNP", ",", "NNP", ".", "-RRB-", ":", "NNP", "NNP", "NNP", ",", "JJ", "NN", "-NONE-", "CC", "JJ", "JJ", "NN", "-NONE-", "IN", "NNP", "NNP", "NNP", "NNP", ",", "VBD", "VBN", "-NONE-", "DT", "NN", "IN", "DT", "NN", "IN", "JJ", "CC", "NN", "NN", ",", "-NONE-", "VBG", "NN", "NN", "TO", "CD", ".", "DT", "NN", "VBD", "NNS", "IN", "DT", "JJ", "NNS", "NN", ",", "-NONE-", "VBN", "-NONE-", "IN", "JJ", "JJ", "NN", "IN", "NNP", "NN", "NNS", ".", "IN", "NN", "NN", "VBZ", "RB", "JJ", "IN", "DT", "NN", "VBN", "IN", "JJ", "NNP", "JJ", "NNS", ",", "NNS", "VBP", "IN", "JJ", "NN", "VBZ", "VBN", "-NONE-", "VB", "DT", "NN", "IN", "DT", "NN", "CC", "VBZ", "VBN", "DT", "NNP", "NN", "IN", "-NONE-", "VBG", "IN", "JJ", "NNS", "IN", "DT", "NN", ".", "IN", "DT", "JJ", "NN", ",", "NNS", "VBD", "-NONE-", "DT", "NNP", "NN", "VBZ", "VBN", "VBN", "-NONE-", "IN", "DT", "RB", "JJ", "NN", "IN", "JJ", "NNS", ",", "IN", "NN", "IN", "DT", "JJ", "JJ", "NN", "IN", "NNS", "VBZ", "VBN", "VBN", "-NONE-", "IN", "DT", "NN", "POS", "NN", ",", "-NONE-", "VBG", "IN", "DT", "NN", ".", "NNP", "NNP", ",", "IN", "NNP", "NNP", "NNP", ",", "VBZ", "IN", "IN", "DT", "NN", "VBZ", "VBN", "JJ", "NNS", "IN", "DT", "NN", "RB", "RB", ":", "JJ", "NN", "VBD", "TO", "CD", "NNS", "IN", "CD", "NNS", "JJ", "NNP", "IN", "NNP", "NNP", ":", "JJ", "NN", "IN", "DT", "NNP", "NN", "NN", "VBN", "-NONE-", "TO", "PRP$", "JJ", "NNS", "VBZ", "VBN", "-NONE-", "NN", "NNS", "TO", "JJ", "NNS", ",", "RB", "IN", "NN", "NNS", ".", "``", "JJ", "-LRB-", "NN", "-RRB-", "VBZ", "DT", "VBG", "NN", "IN", "DT", "NN", ",", "''", "VBD", "-NONE-", "NNP", "NNP", ",", "DT", "NN", "NN", "IN", "NNP", "NNP", "IN", "NNP", "NNP", ",", "``", "CC", "PRP", "VBP", "RB", "VBN", "-NONE-", "-NONE-", "PRP", "MD", "VB", ".", "WP", "-NONE-", "VBZ", "WP", "-NONE-", "MD", "VB", "IN", "DT", "NN", ",", "IN", "CD", "TO", "CD", "NNS", ",", "IN", "JJ", "NN", "VBZ", "-NONE-", "TO", "VB", ".", "''", "IN", "JJ", "NNP", "NNP", "NN", "NN", ",", "DT", "NN", "VBD", "VBN", "-NONE-", "IN", "CD", "NNS", ",", "RB", "IN", "CD", "NNS", "JJ", "NNP", ",", "CC", "IN", "CD", "NNS", ",", "RB", "IN", "CD", "NNS", "JJ", "NNP", ".", "NN", "VBD", "VBN", "-NONE-", "IN", "$", "CD", "-NONE-", ",", "RB", "IN", "$", "CD", "-NONE-", "JJ", "NNP", ".", "IN", "NNP", "NNP", ",", "DT", "JJ", "NN", "VBD", "IN", "NN", "IN", "CD", "NNS", ",", "RB", "IN", "NNP", "POS", "NNP", "NN", "IN", "CD", "NNS", ".", "NNP", "NNP", ",", "DT", "JJ", "NN", "IN", "NNP", "IN", "NNP", "IN", "NNP", "NNP", ",", "VBD", "DT", "NN", "POS", "JJ", "JJ", "NN", "IN", "DT", "NN", "TO", "NNS", "IN", "NNS", "IN", "JJ", "NN", "NNS", "CC", "NN", "NNS", "CC", "DT", "NN", "IN", "DT", "NN", "IN", "NN", "VBZ", "VBG", "IN", "DT", "NNS", ".", "PRP", "VBZ", "IN", "DT", "NN", "IN", "NNP", "IN", "DT", "JJ", "NNP", "NN", "TO", "NNP", "NNP", "POS", "NN", "IN", "PRP$", "NN", "IN", "NNP", "NNP", "NNP", "NNP", "VBZ", "VBN", "RB", "VBN", "-NONE-", ".", "PRP", "VBZ", "DT", "JJ", "NN", "IN", "DT", "NNP", "NNP", "NNP", "CC", "DT", "NNP", "NNP", ",", "RB", "RB", "IN", "DT", "JJ", "JJ", "NN", "NN", "IN", "DT", "JJ", "JJ", "NN", "IN", "DT", "NNP", "NNP", "NN", "NN", "IN", "JJ", "NNP", "NNP", "NNP", "IN", "NN", ".", "DT", "JJ", "NN", "IN", "NNP", "IN", "DT", "CD", "JJ", "NN", "JJ", "NN", "NN", "VBN", "-NONE-", "IN", "RB", "$", "CD", "CD", "-NONE-", "VBZ", "VBN", "NN", "-NONE-", "IN", "DT", "NN", "IN", "NNS", "VBG", "DT", "NNS", "MD", "VB", "IN", "JJ", "NNS", ",", "VBG", "TO", "NNP", "NNP", ".", "PRP", "-NONE-", "VBZ", "JJ", "IN", "DT", "NN", "NN", "MD", "VB", "VBN", "-NONE-", "RP", ".", "RB", ",", "NNS", "IN", "NNP", "VBP", "IN", "DT", "NN", "IN", "JJR", "NNP", "NN", "NNS", "VBZ", "VBN", "NN", "VBG", "IN", "JJ", "NNS", ".", "PRP", "VBP", "RP", "IN", "DT", "NNS", "VBP", "-NONE-", "TO", "VB", "RP", "NNS", "IN", "JJ", "NNP", "NNP", "NN", "CC", "VBP", "-NONE-", "NN", "IN", "DT", "NNP", "NN", "MD", "VB", "-NONE-", "JJ", "IN", "NNS", "IN", "DT", "NNP", "VBP", ".", "DT", "NN", "RB", "VBD", "JJ", "NN", "IN", "JJ", "NN", "IN", "DT", "VBG", "NNP", "NN", ",", "CC", "NNS", "VBP", "IN", "DT", "NN", "IN", "JJ", "NNS", "VBZ", "VBN", "PRP$", "NNS", "RBR", "IN", "NNP", "NNP", "IN", "NNP", "JJ", "NNS", ".", "NNS", "VBD", "-NONE-", "DT", "NN", "RB", "VBD", "RBR", "VBG", "DT", "NN", "NNP", "IN", "DT", "NNP", "NN", "NNS", "POS", "NN", ".", "DT", "NNS", "POS", "NN", ",", "WDT", "-NONE-", "VBZ", "DT", "NN", "IN", "DT", "VBG", "NN", ",", "VBD", "IN", "CD", "NN", "-NONE-", "IN", "NNP", ",", "IN", "NNP", "POS", "CD", "NN", ",", "CC", "RB", "IN", "JJ", "NNS", "IN", "DT", "NN", "IN", "CD", "NN", ".", "DT", "NNS", "VBD", "-NONE-", "DT", "NN", "VBD", "JJ", "-NONE-", "RB", "IN", "DT", "NN", "IN", "NN", "NNS", "VBD", "VBN", "PRP$", "NNS", "IN", "DT", "JJ", "NN", "CC", "VBD", "VBG", "IN", "DT", "NN", "IN", "CD", ",", "WDT", "-NONE-", "VBZ", "DT", "VBG", "NN", "NN", ".", "CC", "JJS", "VBD", "-NONE-", "DT", "NN", "VBD", "RB", "JJR", "IN", "DT", "JJ", "NN", "IN", "NN", ".", "IN", "DT", "NNP", "NNP", "IN", "NNP", "NNP", ",", "NN", "IN", "JJ", "NN", "VBN", "IN", "$", "CD", "-NONE-", "DT", "NN", ",", "IN", "CD", "NNS", ".", "VBN", "NN", "VBD", "DT", "JJ", "CD", "CD", "NNS", ".", "IN", "RB", "NN", "IN", "NNP", "NNP", "NNP", ",", "NN", "VBD", "VBN", "-NONE-", "IN", "$", "CD", "-NONE-", "DT", "NN", ".", "``", "DT", "NNP", "NNP", "''", "MD", "VB", "RB", "VBN", "RP", "NNS", "IN", "NNP", "IN", "PRP$", "NN", "IN", "CD", ",", "CC", "DT", "NNP", "NN", "RB", "VBZ", "NNS", "IN", "NNS", "VBG", "NNP", "NN", "IN", "DT", "NN", ".", "CC", "DT", "IN", "DT", "NN", "NNS", "WDT", "-NONE-", "VBD", "``", "NNP", "''", "NNS", "IN", "NN", "NNS", "CD", "NNS", "RB", "VBP", "RB", "VBG", "RB", "DT", "NNS", ".", "DT", "NNS", "VBP", "VBN", "NNS", "IN", "JJ", "IN", "DT", "CD", "NN", "NNS", "CC", "JJ", "NN", "NNS", "WDT", "-NONE-", "VBP", "DT", "NNS", ".", "CC", "DT", "NNS", "VBP", "RB", "IN", "NNS", ",", "CC", "DT", "NNS", "VBP", "-NONE-", "PRP", "MD", "RB", "VB", "JJ", "NNS", "WRB", "PRP$", "JJ", "NNS", "VBP", "-NONE-", ".", "RB", ",", "NNS", "VBP", "VBG", "RB", ",", "JJ", "IN", "PRP", "VBP", "-NONE-", "-NONE-", ",", "DT", "NN", "POS", "NN", ",", "NNP", "NNP", ",", "VBZ", "VBG", "DT", "NN", ":", "-NONE-", "CC", "VB", "JJ", "JJ", "NNS", "-NONE-", "TO", "VB", "JJ", "NNS", "CC", "VB", "-NONE-", "VBG", "``", "NNP", "''", "TO", "DT", "NN", ".", "IN", "DT", "JJ", "NN", ",", "NNP", "VBZ", "VBG", "-NONE-", "TO", "VB", "NNS", "-NONE-", "TO", "VB", "NNS", "TO", "``", "DT", "NNP", "NNP", ",", "''", "DT", "NN", "IN", "``", "NNP", "''", "WP$", "NNS", "-NONE-", "MD", "VB", "JJ", "IN", "CD", ".", "NNP", "VBZ", "-NONE-", "PRP", "VBZ", "VBG", "NN", "NNS", ".", "``", "PRP", "VBP", "JJ", "-NONE-", "TO", "VB", ",", "''", "VBZ", "-NONE-", "NNP", "NNP", ",", "JJ", "NN", "NN", "IN", "VBG", ".", "``", "PRP", "VBP", "VBG", "DT", "NN", "RB", "IN", "PRP", "VBP", "-NONE-", "PRP", "VBZ", "DT", "JJ", "NN", ".", "''", "CC", ",", "VBZ", "-NONE-", "-NONE-", "DT", "JJ", "NN", "IN", "DT", "NN", "NN", "IN", "DT", "NN", ",", "``", "PRP", "VBP", "-NONE-", "IN", "PRP", "VBP", "PRP", "-NONE-", "PRP", "VBP", "JJR", "NN", ",", "PRP", "MD", "VB", "``", "NNP", "''", "IN", "DT", "NN", ",", "''", "NNP", "POS", "NN", "VBZ", "IN", "DT", "NN", "NN", "VBZ", "VBG", "VBN", "-NONE-", "IN", "NN", "NNS", "WDT", "-NONE-", "VBP", "RB", "VBG", "IN", "DT", "NNS", ".", "CD", "NN", "NN", "VBZ", "-NONE-", "PRP", "VBZ", "-NONE-", "NNP", "POS", "NN", "VBZ", "DT", "``", "JJ", "NN", "''", "IN", "DT", "NN", "VBZ", "VBN", "IN", "``", "NNP", "''", "NNS", "MD", "VB", "-NONE-", "TO", "VB", "IN", "NN", "IN", "DT", "JJ", "JJ", "NNS", ".", "``", "NNP", "''", "VBZ", "RB", "DT", "JJ", "NNS", "NN", "IN", "DT", "NN", "IN", "NNP", "CD", "IN", "DT", "JJ", "NN", "DT", "NN", "RB", ",", "VBG", "TO", "NNP", "NNP", "NNP", ".", "NNP", "NNP", "IN", "NNP", "VBZ", "-NONE-", "DT", "NNS", "VBP", "VBG", ".", "CC", "NNS", "IN", "NNS", "IN", "JJ", "JJ", "NNS", "IN", "NNP", ":", "NNP", ",", "NNP", ":", "NNP", ":", "NNP", ",", "NNP", ":", "NNP", ",", "CC", "NNP", ",", "NNP", ",", "VBP", "-NONE-", "PRP", "MD", "RB", "RB", "RB", "VB", "``", "NNP", ".", "''", "NNP", "NNP", ",", "DT", "JJ", "NN", "IN", "NNP", ",", "DT", "JJ", "NN", "IN", "NNP", ",", "IN", "NN", ",", "VBZ", "-NONE-", "DT", "NN", "VBZ", "``", "VBN", "DT", "JJ", "NN", "TO", "PRP", ".", "''", "``", "IN", "DT", "NNS", "-NONE-", "PRP", "VBD", "VBN", "-NONE-", "-NONE-", ",", "EX", "MD", "VB", "VBN", "DT", "NN", "IN", "DT", "NN", ".", "EX", "VBD", "RB", "-NONE-", ".", "''", "NNP", "NNP", ",", "DT", "JJ", "NN", "IN", "NNP", ",", "DT", "NNP", "NN", "IN", "NNP", ",", "VBZ", "-NONE-", "``", "NNP", "''", "VBZ", "DT", "NN", "POS", "JJS", "NNS", "CC", "-NONE-", "PRP", "VBZ", "``", "VBN", "-NONE-", ".", "''", "CC", "PRP", "VBZ", ",", "``", "PRP", "VBP", "JJ", "-NONE-", ",", "JJ", "-NONE-", ",", "JJ", "CC", ",", "RB", ",", "RB", "JJ", "IN", "NNP", ".", "DT", "NNP", "NNP", "NNP", "IN", "NNP", "VBZ", "RB", "VBN", "DT", "NN", "IN", "NNP", ".", "NNP", "NNP", ",", "DT", "NN", "POS", "NN", "IN", "NNP", ",", "VBD", "-NONE-", "JJ", "NNP", "IN", "NNP", "MD", "VB", "JJ", "NN", "NNS", ".", "NNP", "IN", "NNP", "VBZ", "NN", "IN", "DT", "NNP", "NNP", "NNP", ",", "VBN", "-NONE-", "IN", "DT", "NNP", ".", "IN", "DT", "NN", "IN", "JJ", "NN", "IN", "NN", "NNS", ",", "DT", "NN", "IN", "JJ", "NNS", "VBP", "VBG", "RB", "JJ", "IN", "NNS", ":", "-NONE-", "VBG", "IN", "PRP", "IN", "NNS", "CC", "VBG", "NNS", "IN", "JJ", "NN", ".", "RB", "MD", "DT", "NN", "VB", "IN", "-NONE-", "RB", "VBG", "PRP$", "NN", "IN", "JJ", "NNS", ".", "NNP", "NN", ",", "VBD", "-NONE-", "IN", "``", "NNP", "NNP", "NNP", "IN", "DT", "NNP", ",", "''", "VBZ", "IN", "-NONE-", "TO", "VB", "RP", "-NONE-", "-NONE-", ".", "-NONE-", "VBN", "-NONE-", "IN", "NNP", ",", "NNP", ",", "VBG", "NN", "NNP", "NNP", ",", "NNP", "VBD", "PRP$", "NN", "DT", "NN", "IN", "DT", "NN", "-NONE-", "TO", "VB", "NNS", "DT", "JJ", "NN", "IN", "DT", "NNP", "NN", "NN", ".", "DT", "NN", "VBZ", "JJ", "NNS", "IN", "NNS", "IN", "NN", "NN", ",", "JJ", "NNS", "IN", "JJ", "NNS", "IN", "WP", "-NONE-", "VBZ", "IN", "PRP", "VBP", "PRP$", "NN", ",", "CC", "JJ", "NNS", "IN", "JJ", "JJ", "NNS", ".", "NNP", "NNS", "VBP", "VBN", "JJ", "NN", "IN", "DT", "JJ", "NN", "IN", "NN", "NNS", "IN", "DT", "NN", "-NONE-", "TO", "VB", "JJ", "NNP", "POS", "JJ", "NNS", "CC", "JJ", "NNS", ".", "IN", "CD", "NN", ",", "VBN", "-NONE-", "``", "NNP", "DT", "NNP", ",", "''", "NNS", "VBP", "RP", "DT", "NN", "-NONE-", "PRP", "VBP", "-NONE-", "TO", "VB", "DT", "RB", "JJ", "NN", ".", "IN", "DT", "NN", "NN", ",", "DT", "NN", "VBZ", "-NONE-", "DT", "NNS", "VBP", "JJ", "-NONE-", "TO", "VB", "DT", "IN", "DT", "JJ", "NNS", "WDT", "-NONE-", "VBP", "JJ", "NN", "NNS", "DT", "NNS", ".", "IN", "RB", "CD", "NNS", "IN", "PRP$", "NN", ",", "NNP", "VBZ", "VBN", "DT", "JJ", "NNS", "CC", "VBN", "DT", "NN", "IN", "NNS", ".", "NNP", "NNP", ",", "IN", "CD", ",", "VBZ", "JJ", "-NONE-", "PRP$", "NNP", "NNP", "NN", "NN", "VBD", "VBN", "-NONE-", "IN", "DT", "NN", "``", "NNP", "DT", "NNP", "''", "NN", ".", "DT", "NN", "POS", "NNS", "VBD", "DT", "JJ", "NN", "IN", "DT", "NN", "IN", "NNS", "VBG", "TO", "DT", "NN", "POS", "NN", "NN", ",", "NN", "CC", "NN", "NN", ":", "DT", "NN", "NNS", "-NONE-", "PRP", "VBP", "-NONE-", "-NONE-", "VBP", "JJ", ".", "``", "PRP", "VBZ", "RB", "DT", "NN", "IN", "NN", "WDT", "-NONE-", "VBZ", "VBN", "DT", "JJ", "NN", "NN", ",", "''", "DT", "NNS", "VBD", "-NONE-", ".", "``", "PRP", "VBP", "IN", "DT", "NN", "VBZ", "RB", "RB", "VBN", "-NONE-", "NNP", ",", "CC", "PRP", "VBZ", "VBG", "JJ", "NN", ",", "''", "VBZ", "-NONE-", "DT", "NN", "IN", "NNP", "NNP", ".", "PRP", "VBZ", "-NONE-", "NNP", "VBD", "RB", "RB", "VBN", "-NONE-", "IN", "DT", "NN", "IN", "DT", "NN", "-NONE-", "TO", "VB", ".", "NNS", "-NONE-", "VBD", "VBN", "VBN", "-NONE-", "TO", "DT", "NNP", "NNP", "NN", "IN", "DT", "NN", "-NONE-", "DT", "NN", "VBD", "VBN", "-NONE-", "-NONE-", ",", "PRP", "VBZ", "-NONE-", "-NONE-", ",", "-NONE-", "VBG", "PRP", "JJR", "DT", "NN", "IN", "-NONE-", "VBD", "VBN", "-NONE-", ".", "PRP", "VBZ", ",", "RB", ",", "-NONE-", "PRP", "VBZ", "RB", "CD", "IN", "NNP", "NNP", "POS", "JJR", "NNS", "IN", "NNS", "IN", "NN", ".", "NNP", "NNP", ",", "RB", "RB", ",", "VBZ", "RB", "VB", "DT", "NNS", "-NONE-", "TO", "VB", "IN", "DT", "NN", ",", "VBG", "TO", "PRP$", "NN", ".", "DT", "NNS", "NNS", "VBP", "IN", "DT", "JJ", "NN", "MD", "VB", "-NONE-", "VBG", "RP", "NNP", "NNP", "POS", "JJ", "NNS", ".", "``", "PRP", "RB", "VBP", "DT", "NNP", "NNP", "IN", "DT", "NN", "TO", "VB", "JJ", "IN", "PRP$", "NN", "IN", "PRP", "VBP", "VBG", "-NONE-", "TO", "VB", "DT", "NN", "IN", "PRP", ",", "''", "VBZ", "-NONE-", "NNP", "NNP", ",", "JJ", "NN", "NN", "CC", "NNS", "NN", "IN", "NNP", "NNP", ",", "NNP", ".", "``", "DT", "NNS", "IN", "NN", "NN", "RB", "RB", "VBP", "IN", "PRP", "VBP", "DT", "RB", "JJ", "NN", "''", "IN", "JJ", "NN", "NNS", ",", "PRP", "VBZ", "-NONE-", "-NONE-", ".", "DT", "JJ", "CD", "NNS", "VBD", "NNS", "IN", "RB", "DT", "NN", "IN", "JJ", "NNS", ",", "VBG", "NNP", "NNP", "CC", "NNP", "NNP", ",", "CC", "DT", "NN", "VBD", "IN", "NNS", "IN", "NNP", "NNP", "NNP", "CC", "NNP", "NNP", ",", "NNS", "WDT", "-NONE-", "VBP", "RB", "VB", "JJ", "NN", "-NONE-", "VBG", "CC", "MD", "RB", "VB", "VBN", "IN", "-NONE-", "-NONE-", "TO", "VB", "DT", "NN", "IN", "DT", "JJ", "NN", ".", "DT", "NNP", "NNP", "NN", "VBZ", "-NONE-", "PRP$", "NN", "IN", "DT", "NN", "NN", "VBD", "DT", "JJ", "NN", ",", "CC", "-NONE-", "PRP", "VBZ", "RB", "VB", "DT", "NNS", "-NONE-", "TO", "VB", "IN", "JJ", "NNS", ".", "``", "PRP", "VBP", "RB", "VB", "JJ", "IN", "NN", "NN", ",", "''", "PRP", "VBZ", "-NONE-", ".", "CC", "NNP", "NNP", ",", "DT", "NN", "POS", "NN", "CC", "NN", ",", "VBZ", "-NONE-", "NNP", "MD", "VB", ",", "IN", "JJS", "RB", ",", "IN", "NN", "NNS", ".", "JJ", "NNS", "IN", "DT", "NN", "VBP", "IN", "$", "CD", "-NONE-", "CC", "JJ", "NNS", "NN", "$", "CD", "-NONE-", ".", "-LRB-", "PRP", "VBZ", ",", "IN", "NN", ",", "VBN", "-NONE-", "IN", "VBN", "NN", ".", "-RRB-", "VBG", "TO", "NNP", "NNP", ",", "NNP", "NNP", "NNP", ",", "PRP$", "NN", "NN", ",", "VBD", "CC", "VBD", "DT", "CD", "NNS", "IN", "DT", "NN", "NN", ".", "DT", "JJ", "CC", "JJ", "NNS", "VBD", "RP", "IN", "NNS", ",", "PRP", "VBZ", "-NONE-", "-NONE-", ",", "CC", "DT", "NN", "VBZ", "NNS", "IN", "CD", "NNS", ".", "-NONE-", "VBN", "-NONE-", "IN", "JJ", "NNS", "MD", "VB", "VBN", "-NONE-", "RB", "IN", "DT", "NN", "POS", "JJ", "NN", ",", "NNP", "NNP", "VBZ", ":", "``", "PRP", "VBP", "RB", "VB", "CC", "PRP", "VBP", "RB", "VB", ".", "PRP", "VBP", "RB", "VBG", "-NONE-", "NN", "NN", "VBZ", "RB", "JJ", ",", "''", "PRP", "VBZ", "-NONE-", "-NONE-", ",", "``", "CC", "PRP", "MD", "RB", "VB", "IN", "NN", "''", "IN", "DT", "NN", "VBD", "TO", "DT", "NN", "IN", "PRP", "RB", "VBD", "RP", "DT", "NN", ".", "NNP", "NNPS", ":", ".", "NNP", "NNP", "NNP", ":", "NNP", "NNP", "VBD", "-NONE-", "PRP$", "NN", "NN", "NNS", ":", "IN", "PRP", "VBD", "-NONE-", "JJR", "DT", "NN", ":", "NN", "-NONE-", "TO", "VB", "JJR", "IN", "CD", "NNS", "IN", "JJ", "NN", "IN", "NNP", "IN", "CD", ".", "PRP", "VBD", "-NONE-", "DT", "NNS", ",", "RB", "NN", "NNS", ",", "MD", "VB", "VBN", "-NONE-", "IN", "PRP$", "NNP", "NNP", "NN", "IN", "IN", "NNP", "NNP", ",", "DT", "NN", "CC", "NN", "IN", "NN", "NNS", "IN", "WDT", "PRP", "RB", "VBD", "CD", "NN", "-NONE-", ".", "PRP", "VBD", "-NONE-", "DT", "NN", "VBZ", "PRP", "DT", "JJS", "NN", "IN", "JJ", "NN", "NN", "IN", "NNP", ".", "NNP", "VBZ", "VBG", "DT", "NN", "IN", "NN", "IN", "NN", "NN", ",", "WDT", "PRP", "VBD", "-NONE-", "-NONE-", "MD", "VB", "VBN", "-NONE-", "IN", "RBR", "IN", "$", "CD", "CD", "-NONE-", "IN", "CD", "CC", "$", "CD", "CD", "-NONE-", "IN", "CD", ".", "PRP", "VBZ", "-NONE-", "TO", "VB", "DT", "NN", "NN", "TO", "PRP$", "NNS", "IN", "DT", "NN", ".", "NNP", "NNP", ":", "NNP", "NNP", "NNP", ",", "NNP", ",", "VBD", "NNP", "NNP", "NNP", "CC", "NNP", ",", "NNP", ",", "IN", "NN", "IN", "NN", "IN", "PRP$", "$", "CD", "CD", "-NONE-", "NN", ".", "DT", "NN", "VBD", "VBN", "VBN", "-NONE-", "IN", "NNP", "NNP", ",", "NNP", ".", "NNP", "NNP", ":", "NNP", "NNP", "CC", "NNP", "POS", "NNP", "NNP", "NNPS", "NN", ",", "NNP", "NNP", ",", "VBD", "DT", "NN", "NN", "IN", "PRP$", "NNP", "NN", "NN", "TO", "NNP", "CC", "NNP", ",", "NNP", "NNP", ",", "DT", "NNP", "NNP", "NN", ".", "NNS", "-NONE-", "VBD", "RB", "VBN", "-NONE-", "IN", "DT", "JJ", "NN", ",", "WDT", "-NONE-", "VBD", "VBN", "VBN", "-NONE-", "IN", "NNP", "CC", "NNP", ",", "NNP", "NNP", ".", "CD", "NNP", ":", "NNP", "NNP", "NNP", "VBZ", "PRP$", "JJ", "JJ", "NN", "NN", "DT", "NN", ".", "DT", "NNP", "NNP", "NN", "VBZ", "IN", "NN", "NNS", ",", "DT", "VBN", "-NONE-", "IN", "NN", "NNS", "IN", "NNS", "VBN", "-NONE-", "IN", "NNS", ".", "-NONE-", "VBN", "-NONE-", "IN", "NNP", ",", "NNP", "CC", "NNP", ",", "NNP", "NNP", ",", "DT", "$", "CD", "CD", "-NONE-", "NN", "VBZ", "NNP", "POS", "JJ", "NN", "CC", "PRP$", "JJ", "JJ", "CC", "JJ", "NN", ".", "NNP", "NNPS", ":", "NNP", "CC", "NNP", "VBD", "-NONE-", "PRP", "VBD", "PRP$", "NN", "IN", "NNP", "NNPS", ",", "DT", "NNP", "NNP", "NN", "NN", ".", "NNP", ":", "NNP", "NNPS", ",", "NNP", ",", "VBD", "NNP", "CC", "NNP", ",", "DT", "NNP", "NNP", "NNS", "CC", "NNS", "NN", ".", "NNS", "VBD", "RB", "VBN", "-NONE-", ".", "NNP", "NNPS", "NNP", "VBD", "-NONE-", "PRP", "MD", "VB", "DT", "NN", "IN", "PRP$", "$", "JJ", "-NONE-", "JJ", "NN", "IN", "-NONE-", "VBN", "-NONE-", "IN", "NNP", "NNP", "NNP", ",", "WDT", "-NONE-", "VBD", "DT", "JJR", "JJ", "NN", "IN", "NNP", "NNPS", ".", "NNP", "NNPS", ",", "DT", "NNP", ",", "JJ", "NN", "NN", ",", "VBD", "NNP", "IN", "PRP", "MD", "VB", "$", "CD", "CD", "-NONE-", "IN", "NNS", "CC", "VB", "DT", "IN", "DT", "NNS", "-NONE-", "TO", "VB", "IN", "CD", "NN", "IN", "PRP$", "JJ", "NNS", "IN", "$", "CD", "-NONE-", "RB", ".", "DT", "NN", "VBZ", "VBN", "-NONE-", "-NONE-", "TO", "VB", "RP", "DT", "JJ", "NN", "NN", "IN", "CD", "JJ", "NN", "NNS", ",", "NNP", "NNP", "NNP", "CC", "NNP", "NNP", ".", "IN", "NNP", ",", "DT", "CD", "NNS", ",", "IN", "PRP$", "RB", "VBN", "VBG", "NN", ",", "NNP", ",", "VBD", "$", "CD", "-NONE-", "DT", "NN", ",", "CC", "$", "CD", "CD", "-NONE-", ",", "IN", "NNP", "NNPS", ".", "IN", "NNP", ",", "NNP", "VBD", "DT", "NN", "TO", "$", "CD", "-NONE-", "DT", "NN", ",", "CC", "$", "CD", "CD", "-NONE-", ".", "NN", ",", "NNP", "NNPS", "POS", "JJ", "NN", "NN", ",", "NNP", "NNP", ",", "VBD", "IN", "DT", "NN", "IN", ",", "IN", "DT", "JJ", "NN", ",", "NNP", "NNPS", "MD", "VB", "RP", "IN", "DT", "NN", "NN", "IN", "RB", "$", "CD", "CD", "-NONE-", ".", "IN", "$", "CD", "CD", "-NONE-", "IN", "WDT", "MD", "VB", "VBN", "-NONE-", "TO", "DT", "NN", ",", "-NONE-", "VBG", "IN", "$", "CD", "CD", "-NONE-", ",", "PRP", "VBD", "-NONE-", "-NONE-", ".", "DT", "$", "CD", "CD", "-NONE-", ",", "NNP", "NNP", "VBD", "-NONE-", "-NONE-", ",", "``", "VBZ", "PRP", "DT", "NN", "IN", "NN", "NNP", "VBZ", "PRP$", "NN", ".", "PRP", "VBP", "JJ", "-NONE-", "TO", "VB", "PRP$", "NN", "IN", "DT", "$", "CD", "-NONE-", "NN", "IN", "JJ", ".", "''", "PRP", "VBD", "-NONE-", "TO", "VB", ",", "RB", ",", "WRB", "JJ", "NNP", "NNPS", "MD", "VB", "PRP$", "NN", "-NONE-", ".", "NNP", "NNP", "VBD", "IN", "DT", "NN", "IN", "NNP", "NNPS", "VBZ", "-NONE-", "VBZ", "DT", "NNP", "MD", "VB", "-NONE-", "TO", "``", "RB", "VB", "PRP$", "NN", "IN", "PRP", "VBP", "VBG", "-NONE-", "TO", "VB", "PRP", ".", "''", "NNP", ",", "RB", ",", "RB", "VBD", "NNP", "NNPS", "POS", "NN", "NN", ",", "-NONE-", "VBG", "PRP", "IN", "DT", "``", "RB", "JJ", "NN", "VBN", "-NONE-", "-NONE-", "TO", "VB", "NN", ",", "VB", "NNS", "CC", "VB", "PRP", "IN", "-NONE-", "VBG", "PRP$", "JJ", "NN", "NN", ".", "''", "DT", "NN", "IN", "NNP", "VBD", "IN", "NNP", "NNPS", "POS", "NN", ":", "IN", "PDT", "DT", "NN", "NNS", "VBP", ":", "MD", "VB", "IN", "NNS", "VBG", "RB", "$", "CD", "TO", "$", "CD", "-NONE-", "DT", "NN", "IN", "NN", ".", "DT", "JJR", "NNS", ",", "DT", "NN", "VBD", "-NONE-", "-NONE-", ",", "MD", "VB", "IN", "VBN", "NNS", "VBG", "VBN", "-NONE-", "TO", "JJ", "NN", "CC", "DT", "NN", "IN", "NNP", "NNPS", "POS", "NNS", "MD", "VB", "VBN", "-NONE-", "TO", "VB", "PRP$", "NNS", "IN", "DT", "JJ", "NN", ".", "NNP", "VBD", "IN", "NNP", "NNPS", "VBZ", "RB", "VBN", "-NONE-", "IN", "JJ", "NNS", "IN", "NNP", ",", "WRB", "DT", "NNP", "NNP", "VBZ", "RB", "VBN", "NNP", "NNPS", "IN", "-NONE-", "VBG", "RP", "PRP$", "JJ", "NN", "IN", "DT", "NN", "VBN", "-NONE-", "IN", "NNP", "CC", "NNP", "-NONE-", ".", "-LRB-", "DT", "NN", "VBZ", "VBN", "-NONE-", "PRP", "MD", "VB", "IN", "DT", "NN", "IN", "DT", "NN", "IN", "DT", "NN", ".", "-RRB-", "NNP", "RB", "VBD", "-NONE-", "NNP", "NNPS", "POS", "NN", "VBZ", "``", "JJ", "JJ", ",", "JJ", ",", "JJ", "CC", "NN", "NNS", ",", "''", "CC", "VBD", "RB", "VB", ".", "NNP", "NNP", "VBD", "-NONE-", "NN", "TO", "NNP", "NNPS", "POS", "NN", "VBZ", "VBN", "``", "RB", "JJ", ".", "''", "IN", "NNP", "NNP", "NNP", "NNP", "JJ", "NN", "NN", ",", "NNP", "NNPS", "VBD", "IN", "$", "CD", "-NONE-", ",", "RB", "CD", "NNS", ".", "DT", "NNP", "NNP", ",", "-NONE-", "VBG", "TO", "NN", "IN", "NN", "NNS", ",", "VBD", "JJ", "NNS", "-NONE-", "-NONE-", "TO", "VB", "IN", "JJ", "NNS", "CC", "NNS", "DT", "NN", "NNS", "VBN", "-NONE-", "IN", "NNS", "-NONE-", ".", "DT", "NN", "VBD", "-NONE-", "VBG", "JJR", "NNS", "IN", "JJ", "NNS", "CC", "NNS", ",", "-NONE-", "VBG", "IN", "CD", "NNS", ".", "PRP", "RB", "VBD", "DT", "JJ", "NN", "VBG", "NN", "NNS", "TO", "VB", "JJ", "NNS", "CC", "NNS", "IN", "JJ", "NNS", "IN", "JJ", "NNS", "-NONE-", "VBG", "IN", "DT", "CD", "NN", "NN", ".", "JJ", "NNS", "RB", "VBP", "VBN", "-NONE-", "IN", "DT", "NNS", "POS", "JJ", "NNS", ".", "``", "NN", "POS", "NN", ",", "''", "NNP", "NNP", "NNP", "NNP", "VBD", "-NONE-", ",", "``", "VBZ", "DT", "NN", "IN", "DT", "JJ", "NN", "-NONE-", "-NONE-", "TO", "VB", "NN", "NN", "NN", "IN", "JJ", "NNS", "CC", "NNS", "IN", "PRP$", "NN", "IN", "NN", "NN", "NNS", ".", "''", "IN", "NNP", ",", "DT", "NN", "VBD", "VBN", "-NONE-", "PRP", "MD", "VB", "NNS", "CC", "NNS", "TO", "VB", "VBN", "-NONE-", "IN", "DT", "JJ", "NN", "NNS", "WDT", "-NONE-", "VBP", "RB", "VBN", "VBN", "-NONE-", "IN", "NN", "NNS", ".", "DT", "NNP", "NNP", "NN", "NNS", "VBD", "-NONE-", "DT", "NN", "NNS", "VBD", "RB", "JJ", "IN", "NNP", "NN", "NNS", "VBP", "RB", "VBN", "-NONE-", "PRP", "VBD", "-NONE-", "TO", "VB", "NN", "NN", "NNS", "IN", "JJ", "NNS", "CC", "NNS", ".", "NN", "NNS", ",", "VBG", "DT", "NNS", "IN", "NNP", ",", "VBP", "VBN", "VBG", "DT", "NN", "IN", "NNS", "-NONE-", "TO", "VB", "JJ", "NNS", "TO", "JJ", "NNS", "CC", "NNS", ",", "WDT", "RB", "-NONE-", "VBP", "IN", "RB", "NN", "IN", "DT", "NN", "NNS", "IN", "DT", "NNP", ".", "PRP", "VBP", "IN", "JJ", "NNS", "VBN", "-NONE-", "IN", "JJ", "JJ", "NNS", "RB", "VBP", "JJR", "NNS", "IN", "NN", "CC", "RB", "MD", "VB", "DT", "JJ", "NN", "NNS", "IN", "NNS", ".", "PRP", "VBD", "RB", "VB", "JJ", "NN", "IN", "DT", "NNP", "NN", ".", "``", "CC", "RB", ",", "EX", "VBZ", "-NONE-", "TO", "VB", "DT", "RB", "JJ", "NN", "-NONE-", "TO", "VB", "DT", "NN", ",", "''", "VBD", "-NONE-", "NNP", "NNP", ",", "NN", "NN", "IN", "NNS", "IN", "DT", "NNP", "NNP", "IN", "NNP", "NNP", ".", "``", "PRP", "VBP", "IN", "DT", "RB", "JJ", "JJ", "NN", ".", "''", "NNP", "NNP", "NNP", "-LRB-", "NNP", ",", "NNP", ".", "-RRB-", "VBD", "DT", "NN", "POS", "NNS", ",", "-NONE-", "VBG", "IN", "NN", "NNS", "VBP", "IN", "RB", "DT", "IN", "DT", "JJ", "NNS", ".", "``", "PRP", "MD", "VB", "JJ", "IN", "DT", "NNS", "IN", "JJ", "JJ", "NNS", ",", "''", "PRP", "VBD", "-NONE-", ".", "NNP", "NNP", "CC", "NNS", "RB", "VBP", "DT", "NN", "TO", "VB", "JJ", "NN", "NN", "-NONE-", "IN", "JJ", "NNS", "CC", "NNS", ",", "VBG", "NN", "NNS", "CC", "JJ", "NN", "NNS", "IN", "JJ", "NNS", "CC", "VBN", "JJ", "NN", ".", "DT", "NN", "POS", "JJ", "NN", "MD", "VB", "TO", "NNS", "VBG", "CD", "NNS", "CC", "JJR", ".", "DT", "NNS", "MD", "VB", "VBN", "-NONE-", "TO", "VB", "DT", "NN", "IN", "CD", "NNS", "DT", "JJ", "NN", "IN", "DT", "NN", ".", "IN", "DT", "NN", ",", "DT", "NN", "MD", "RB", "VB", "VBN", "-NONE-", "RBR", "IN", "CD", "NNS", ".", "IN", "NNP", ",", "DT", "NNP", "NNP", "NN", "VBD", "-NONE-", "DT", "NN", "RB", "VBZ", "DT", "NN", "NN", "CC", "NN", "NNS", "IN", "PRP$", "JJ", "NNS", ",", "CC", "VBZ", "-NONE-", "TO", "VB", "-NONE-", "VBG", "PRP", "RP", "IN", "DT", "NN", "IN", "DT", "CD", "NN", "NN", ".", "PRP", "VBD", "-NONE-", "NNP", "RB", "VBZ", "-NONE-", "TO", "VB", "PRP", "VBN", "-NONE-", "IN", "PRP$", "JJ", "NN", "IN", "DT", "NNP", "CD", ",", "CD", ",", "NN", ".", "NNP", "VBD", "-NONE-", "PRP$", "NNS", "CC", "NNS", "RB", "VBP", "DT", "JJ", "NN", "NN", "IN", "NNS", ".", "NNP", "NNP", ",", "JJ", "NN", "IN", "NNP", "NNP", "NNP", "POS", "JJ", "NN", ",", "VBD", "-NONE-", "NNP", "NNS", "VBP", "VBN", "NN", "NNS", "IN", "JJ", "NN", "IN", "CD", ".", "NNP", "VBD", "-NONE-", "VBG", "DT", "NN", "NNS", "IN", "NNS", "IN", "PRP$", "NNPS", "NNP", "NNP", "NNS", "IN", "DT", "CD", "NN", "NN", ".", "DT", "JJ", "NNP", "JJ", "NN", ",", "VBN", "-NONE-", "IN", "NN", "IN", "NN", ",", "MD", "RB", "VB", "DT", "NN", "NNS", ".", "NNP", "NNP", "VBD", "-NONE-", "PRP", "VBZ", "NNP", "TO", "VB", "DT", "NN", "RB", ".", "NNP", "NNP", "NNP", "VBD", "-NONE-", "PRP", "MD", "VB", "RBR", "IN", "$", "CD", "CD", "-NONE-", "IN", "CD", "VBN", "NNS", "IN", "-NONE-", "VBG", "NNS", ".", "DT", "JJ", "NNS", ",", "VBN", "-NONE-", "IN", "NN", "IN", "CD", ",", "MD", "VB", "VBN", "-NONE-", "IN", "NNP", "NNP", "NNP", ",", "DT", "NNP", "NNP", ",", "NNP", ",", "NN", "IN", "RB", "VBN", "NNP", "NNPS", "NNP", ",", "NNP", ",", "NNP", ".", "DT", "NN", ",", "DT", "NN", "VBG", "NN", "VBN", "CD", "JJ", "NNS", ".", "NNP", "NNP", "NNP", ",", "JJ", "NN", "IN", "NNP", "NNP", "NNP", "IN", "JJ", "NNP", ",", "VBZ", "DT", "NN", "IN", "DT", "NN", "NNS", "NN", "IN", "NNP", "CD", ".", "NNP", "NNP", "MD", "VB", "NNP", "NNP", "NNP", ",", "CD", ",", "WP", "-NONE-", "VBZ", "IN", "NNP", "NNP", "JJ", "NN", "IN", "NNP", "CD", ".", "NNP", "IN", "NNP", "NNP", "NNP", "VBD", "-NONE-", "PRP", "VBZ", "VBN", "NNS", "IN", "JJ", "NN", "NNS", "IN", "NNP", "NNP", ",", "IN", "PRP", "VBD", "IN", "NN", "VBZ", "JJ", "CC", "PRP", "VBZ", "RB", "VBN", "DT", "JJ", "NNS", ".", "DT", "NNS", "VBD", "VBN", "-NONE-", "IN", "DT", "NN", "VBG", "NN", "VBD", "IN", "PRP", "VBZ", "VBN", "PRP$", "JJ", "NN", "TO", "JJ", "JJ", "NN", "NNS", "IN", "NNP", "CC", "IN", "NNP", ".", "JJ", "NN", ",", "DT", "NNP", "NN", "NN", "VBD", "DT", "NN", "-NONE-", "-NONE-", "TO", "VB", "JJ", "JJ", "NN", "IN", "NNS", "IN", "DT", "NN", "-NONE-", "NN", "IN", "CD", ".", "RB", ",", "DT", "NNP", "CC", "NNP", ",", "WRB", "RBS", "IN", "NNP", "IN", "NNP", "NNP", "POS", "NNS", "VBP", "-NONE-", ",", "VBP", "JJ", "NN", "RB", "IN", "NNP", "NNP", ".", "NNP", "NNP", ",", "NN", "NN", "IN", "NNP", "IN", "NNP", "NNP", ",", "VBD", "DT", "NNP", "NNP", "NNP", "NNP", "NNP", ",", "``", "RB", ",", "EX", "VBP", "DT", "IN", "DT", "NN", "WP", "-NONE-", "VBP", "IN", "PRP", "RB", "IN", "DT", "JJ", "NN", ".", "PRP", "VBP", ",", "CC", "PRP", "VBP", "JJ", "-NONE-", "NNS", "VBP", "-NONE-", ",", "VBN", "WP", "PRP$", "NNS", "VBP", "-NONE-", ",", "CC", "PRP", "VBP", "VBN", "NNS", "IN", "NNS", "WP", "IN", "DT", "NN", "-NONE-", "MD", "VB", "-NONE-", "TO", "VB", "JJ", "NNS", ".", "''", "PRP", "VBD", ",", "``", "EX", "VBZ", "NN", "RB", "JJ", ".", "''", "NNP", "NNP", "VBD", "RB", "JJ", "IN", "WP", "DT", "JJ", "NNS", "VBD", "-NONE-", "CC", "WRB", "DT", "NNS", "VBD", "VBN", "-NONE-", "-NONE-", ".", "DT", "NN", "NN", "RB", "VBD", "-NONE-", "TO", "VB", "IN", "DT", "JJ", "NNS", ",", "CC", "VBD", "-NONE-", "DT", "NN", "VBD", "-NONE-", "TO", "VB", "PRP$", "NN", "TO", "DT", "JJ", "NN", "NN", "IN", "``", "VBG", "NN", "VBZ", "IN", "NN", "IN", "NN", ".", "''", "NNP", "IN", "NNP", "NNP", "VBZ", "VBN", "VBN", "-NONE-", "RB", "IN", "DT", "NN", "POS", "JJ", "NN", ",", "IN", "PRP$", "JJ", "NN", "VBG", "CD", "NN", "TO", "$", "CD", "CD", "-NONE-", ",", "CC", "CD", "NNS", "DT", "NN", ",", "IN", "DT", "JJ", "CD", "NNS", "IN", "CD", "IN", "DT", "JJ", "NN", ".", "DT", "NN", "RB", "VBD", "-NONE-", "PRP", "MD", "VB", "DT", "NNS", "CC", "VBD", "RP", "CD", "NN", "IN", "PRP$", "NN", "NN", ",", "RB", "-NONE-", "VBG", "NN", "TO", "RBR", "IN", "CD", "IN", "IN", "CD", ".", "PRP", "RB", "VBD", "DT", "JJ", "NN", "-NONE-", "TO", "VB", "RB", "IN", "DT", "NNP", "IN", "NNP", "NNP", "IN", "DT", "NN", "IN", "NN", "IN", "PRP$", "NN", "NN", "TO", "DT", "JJ", "NN", ".", "NNP", "NNP", "NNP", "VBD", "PRP$", "JJ", "NN", "TO", "CD", "NNS", "DT", "NN", "IN", "CD", "NNS", "DT", "NN", ".", "DT", "VBN", "NN", "VBZ", "JJ", "NNP", "CD", "TO", "NN", "IN", "NN", "NNP", "CD", ".", "DT", "NNP", ",", "JJ", "NN", "IN", "NN", "NNS", "CC", "JJ", "NN", "NNS", "VBD", "-NONE-", "PRP", "VBD", "DT", "NN", "JJ", "TO", "PRP$", "NN", "NN", "IN", "$", "CD", "-NONE-", ",", "CC", "CD", "NNS", "DT", "NN", ".", "IN", "DT", "JJ", "NN", ",", "DT", "NN", "VBD", "JJ", "NN", "IN", "$", "CD", "CD", "-NONE-", ",", "CC", "CD", "NNS", "DT", "NN", ".", "DT", "NN", "RB", "VBD", "DT", "JJ", "NN", ".", "NNP", "NNP", ",", "JJ", "NN", "NN", "NN", "IN", "DT", "NNP", "NNS", "CC", "JJ", "NNS", "NN", ",", "MD", "VB", "NN", "IN", "NNP", ",", "-NONE-", "VBG", "NNP", "NNP", ",", "CD", ",", "WP", "-NONE-", "VBZ", "VBG", ".", "NNP", "NNP", "MD", "VB", "IN", "DT", "NN", "IN", "DT", "JJ", "NN", ".", "NNP", "POS", "NNP", "VBD", "-NONE-", "PRP", "VBZ", "VBN", "PRP$", "NNS", "JJ", "VBN", "-NONE-", "NNP", "IN", "PRP$", "NN", "NNS", "NN", ".", "DT", "NN", "VBD", "-NONE-", "NNS", "IN", "NN", "IN", "NN", "NNP", "CD", "MD", "VB", "NN", "IN", "CD", "NN", "DT", "NN", "IN", "DT", "NN", "NN", ".", "DT", "NN", "NN", "VBD", "-NONE-", "PRP$", "NN", "VBD", "VBN", "-NONE-", "IN", "NNS", "IN", "DT", "NN", "NN", ",", "NNP", "NNP", "NNP", ",", "``", "IN", "DT", "NN", "-NONE-", "TO", "VB", "JJ", "NNS", "IN", "DT", "NN", ".", "''", "NNP", "NNP", "VBZ", "VBN", "-NONE-", "IN", "CD", "NNP", "POS", "NNS", ",", "NNP", "NNP", ",", "NNP", "NNP", "NNP", "NNP", "CC", "NNP", "NNP", "NNP", "NNP", ",", "WP", "JJ", "NN", "-NONE-", "VBD", "-NONE-", "PRP", "VBP", "DT", "CD", "NN", "NN", "IN", "NNP", "POS", "CC", "VBP", "-NONE-", "TO", "VB", "DT", "NN", "IN", "NNS", "IN", "NNP", "POS", "JJ", "NN", ".", "WRB", "NNP", "NNP", ",", "NN", "IN", "NNP", "POS", "NNP", "NNP", "NNP", "IN", "NNP", "NNP", ",", "VBD", "DT", "$", "CD", "-NONE-", "NN", "NN", "IN", "PRP$", "CD", "NNP", "CD", "NNP", "DT", "NN", "-NONE-", ",", "JJ", "NN", "NNS", "CC", "NNS", "IN", "DT", "NN", "VBD", ".", "``", "DT", "VBZ", "DT", "NN", "IN", "PRP$", "NN", "NN", ",", "''", "NNP", "NNP", "VBD", "-NONE-", "WRB", "PRP", "VBD", "DT", "NN", "IN", "DT", "NN", "IN", "NNP", "NNP", "-NONE-", ",", "``", "CC", "PRP", "VBD", "-NONE-", "TO", "VB", "PRP", "RP", "RB", "JJ", ".", "''", "PRP", "VBZ", "IN", "PRP$", "NN", "DT", "JJS", "NN", "-NONE-", "NNP", "POS", "NNP", "VBZ", "VBN", "-NONE-", ",", "CC", "IN", "JJR", "IN", "CD", "NNS", "JJ", ",", "PRP", "VBZ", "JJ", "-NONE-", "TO", "VB", "RB", ".", "DT", "NN", "VBZ", "DT", "JJ", "NN", "IN", "NNP", "NNP", "NNP", ",", "CC", "PRP", "VBZ", "RB", "DT", "JJS", ".", "NNP", "NNP", "CD", "NNP", "NNP", "NNP", "VBD", "RP", "DT", "NN", "IN", "DT", "NN", "NN", "IN", "$", "CD", "-NONE-", "DT", "NN", ".", "CD", "IN", "DT", "JJS", "VBG", "NNS", "IN", "DT", "NN", "NN", "VBZ", "DT", "NN", "IN", "NNS", ":", "NN", "VBN", "-NONE-", "IN", "NN", ",", "IN", "JJ", "NN", "-LRB-", "CC", "RB", "VBN", "-NONE-", ",", "IN", "DT", "NN", "-RRB-", ",", "CC", "IN", "RB", "JJ", "NNS", ".", "IN", "NNS", ",", "DT", "NN", "VBD", "DT", "NN", "IN", "NNS", ":", "NNP", "JJ", "NNS", "-LRB-", "NNP", ",", "NNP", ",", "NNP", ",", "NNP", "-RRB-", ",", "NNP", "NNP", "NNPS", "-LRB-", "NNP", "CC", "NNP", "NNP", "-RRB-", "JJ", "NNS", "-LRB-", "NNP", "NNP", "CC", "NNP", "NNP", "-RRB-", ",", "VBN", "JJ", "NNS", "-LRB-", "NNP", "NNP", "CC", "NNP", "NNPS", "IN", "NNP", ",", "CC", "NNP", "NNP", "NNP", "IN", "NNP", "-RRB-", ".", "DT", "JJ", "NN", "NNS", "VBD", "IN", "NN", "IN", "$", "CD", "-NONE-", "-NONE-", "TO", "$", "CD", "-NONE-", "-NONE-", "DT", "NN", ".", "IN", "DT", "JJ", "NN", "CC", "RB", ",", "RB", ",", "DT", "JJ", "NN", "VBZ", "VBN", "IN", "DT", "NN", "IN", "JJ", "JJ", "NNS", ".", "DT", "NNS", "VBP", "VBN", "IN", "NN", "-NONE-", "TO", "VB", "DT", "NN", ",", "CC", "PRP", "RB", "VBZ", "IN", "EX", "VBZ", "DT", "NN", "-NONE-", "RB", "-NONE-", "TO", "VB", "RP", "IN", "DT", "JJS", "JJ", "NN", ",", "IN", "JJ", "NNS", "IN", "DT", "JJ", "NN", "NN", "IN", "DT", "NN", ".", "NNP", "MD", "VB", "DT", "NN", "POS", "NN", "IN", "JJ", "NNS", ".", "NNP", "POS", "JJ", "NNS", "IN", "CD", "CC", "CD", "VBP", "$", "CD", "TO", "$", "CD", "-NONE-", "DT", "-LRB-", "IN", "IN", "DT", "JJS", "IN", "NNS", "IN", "NN", ",", "NNP", "NNP", ",", "WDT", "-NONE-", "VBZ", "RB", "$", "CD", "-NONE-", ".", "-RRB-", ".", "DT", "NNS", "VBP", "RB", "JJ", ",", "RB", ",", "IN", "NN", "IN", "JJ", "JJ", "NNS", "IN", "JJ", "NNS", ".", "NNP", "NNP", ",", "DT", "VBG", "NNP", ",", "RB", "VBZ", "IN", "RB", "RB", "$", "CD", "-NONE-", "DT", "NN", "IN", "DT", "JJR", "NN", "IN", "CD", ":", "DT", "RB", "JJ", "CD", "VBZ", "$", "CD", "-NONE-", ".", "IN", "NNP", ",", "DT", "IN", "DT", "NN", "NNS", "VBP", "VBG", "IN", "$", "CD", "-NONE-", "DT", "NN", ".", "DT", "JJ", "NNP", "-NONE-", "-NONE-", "TO", "VB", "DT", "NN", "NN", "VBD", "DT", "CD", "NNP", "IN", "NNP", "NNP", "IN", "NNP", ".", "DT", "CD", "NNP", "VBZ", "$", "CD", "-NONE-", ".", "NNP", "NNP", "IN", "$", "CD", "-NONE-", "DT", "NN", "VBZ", "RP", "IN", "DT", "NN", "CC", "NNP", "POS", "NNP", "IN", "NNP", "NNP", "IN", "NNP", "VBZ", "VBG", "IN", "DT", "NN", ".", "DT", "JJ", "NNS", "IN", "DT", "NNP", "NNP", "VB", "VBN", "IN", "NN", "RB", "RB", ".", "NNP", "NNP", "POS", "CD", "NNP", "NNP", "NNP", "NNP", ",", "IN", "NN", ",", "VBZ", "$", "CD", "-NONE-", ".", "NNP", "IN", "NNP", "POS", "NN", "NNS", "MD", "VB", "DT", "NN", "IN", "NNP", ",", "RB", ".", "DT", "CD", "NNS", "IN", "DT", "NNP", "IN", "DT", "NNP", ",", "CD", "IN", "DT", "RBS", "JJ", "NNS", "IN", "NN", "RB", "IN", "DT", "NN", ",", "VB", "VBN", "JJ", "NN", "NNS", "IN", "JJ", "NNS", "RB", ".", "IN", "DT", "CD", "NN", ",", "PRP", "VBD", "RBR", ":", "NNP", "NNP", ",", "$", "CD", "-NONE-", ":", "NNP", ",", "$", "CD", "-NONE-", ":", "NNP", ",", "$", "CD", "-NONE-", ".", "DT", "JJ", "NNP", "NN", ",", "NNP", ",", "VBZ", "RB", "VBN", "PRP$", "CD", "NNP", "IN", "$", "CD", "-NONE-", ".", "IN", "NNP", "RB", "VBZ", "NNP", "NNP", "NNP", "IN", "$", "CD", "-NONE-", "DT", "NN", ",", "NNP", "NNP", "POS", "NNP", "NNP", ",", "DT", "$", "CD", "-NONE-", "NNP", "IN", "NNP", ",", "CC", "NNP", "NNP", "IN", "$", "CD", "-NONE-", ".", "NNP", "POS", "NNP", "NNP", "NNP", "CD", "-LRB-", "VBN", "-NONE-", "RB", "IN", "PRP$", "JJ", "NN", "-RRB-", "VBZ", "$", "CD", "-NONE-", ",", "IN", "VBZ", "-NONE-", "NNP", "POS", "NNP", "NNP", "CD", ".", "``", "EX", "VBP", "JJ", "NN", "NNS", "WDT", "-NONE-", "MD", "VB", "DT", "JJR", "NNS", ",", "''", "VBZ", "-NONE-", "NNP", "NNP", "IN", "NNP", "POS", ",", "CD", "IN", "DT", "JJS", "NN", "NNS", "IN", "NNP", ".", "``", "WP", "-NONE-", "VBZ", "JJ", "VBZ", "IN", "PRP", "VBZ", "VBG", "IN", "JJ", "NNS", "RB", "VBG", "RP", ".", "PRP", "VBP", "VBG", "PRP", "RB", "IN", "JJR", "NNS", "VBP", "VBG", "RBR", "JJ", ".", "''", "NN", "NNS", "VBP", "RB", "VBN", "DT", "VBN", "NN", "IN", "DT", "NNS", ",", "NNP", "NNP", "VBD", ":", "-NONE-", "-NONE-", "``", "PRP", "VBP", "VBN", "DT", "JJ", "NN", "IN", "NN", "IN", "NNS", "IN", "DT", "CD", "CC", "CD", ",", "WDT", "-NONE-", "VBP", "IN", "$", "CD", "TO", "$", "CD", "-NONE-", "DT", "NN", ".", "DT", "IN", "DT", "JJR", "NNS", ",", "RB", "IN", "$", "CD", "TO", "$", "CD", "-NONE-", "-NONE-", "DT", "NN", "CC", "RB", ",", "RB", "VBP", "DT", "NN", ".", "''", "-NONE-", "VB", "NNP", "NNP", "NNP", "IN", "NNP", "NNP", ".", "PRP", "VBZ", "VBN", "-NONE-", "RB", "IN", "NNS", "WRB", "DT", "NNS", "VBP", "RB", "-NONE-", "-LRB-", "DT", "NN", "VBD", "CD", "-RRB-", "CC", "VBZ", "IN", "DT", "JJ", "NN", "IN", "NNS", "WDT", "-NONE-", "VBD", "DT", "JJ", "CD", "NNS", "IN", "CD", ".", "NNP", "NNP", "NNP", "RB", "VBD", "-NONE-", "TO", "VB", "PRP", "IN", "$", "CD", "-NONE-", "DT", "NN", ",", "CC", "WRB", "DT", "NN", "IN", "NNP", "NNP", "VBD", ",", "``", "VBZ", "DT", "JJ", "CC", "JJ", ".", "''", "-NONE-", "PRP", "JJ", "DT", "NN", ".", "-NONE-", "VBG", "DT", "NN", "IN", "RB", "$", "CD", "-NONE-", "DT", "NN", "NN", "-LRB-", "$", "CD", "-NONE-", "NN", "-RRB-", ",", "PRP", "VBD", "NNS", "IN", "DT", "NN", "DT", "NN", "VBG", "PRP", "-NONE-", "TO", "VB", "CD", "IN", "CD", "NNS", ":", "LS", "-RRB-", "RB", ",", "DT", "NN", "VBZ", "RB", "JJ", "-LRB-", "CD", "NNS", "-RRB-", ":", "LS", "-RRB-", "RB", ",", "PRP", "VBZ", "JJ", "CC", "PRP", "MD", "VB", "PRP", "-LRB-", "CD", "NNS", "-RRB-", ":", "LS", "-RRB-", "PRP", "MD", "VB", "DT", "-NONE-", "PRP", "MD", "VB", "-NONE-", "-LRB-", "CD", "NNS", "-RRB-", ".", "DT", "NN", "VBD", "VBN", "-NONE-", "IN", "JJ", "NNS", "RB", "IN", "DT", "JJ", "CD", ",", "CC", "RB", "IN", "IN", "PRP", "VBD", "VBN", "-NONE-", "JJ", ",", "-NONE-", "VBG", "TO", "CD", "NNS", "IN", "CD", "NNS", ".", "``", "PRP", "VBD", "-NONE-", "PRP", "VBD", "RB", "JJ", ",", "''", "VBD", "-NONE-", "NNP", "NNP", ",", "NN", "NN", "IN", "NNP", "POS", "IN", "NNP", ",", "NNP", ",", "CD", "IN", "DT", "JJ", "NNS", "IN", "JJ", "NNP", ",", "``", "CC", "EX", "VBP", "NNS", "IN", "RB", "IN", "RB", "JJ", "NNS", "IN", "NN", ".", "PRP", "VBD", "PRP$", "CD", "NNS", ":", "CC", "PRP", "VBP", "VBN", ".", "''", "NNP", "NNP", "VBD", "IN", "PRP", "VBZ", "-NONE-", "JJR", "NNS", "VBP", "VBN", "RP", "IN", "NNS", "VBP", "RB", "VB", "-NONE-", "TO", "VB", "DT", "NN", "NN", "RB", "VB", "IN", "NN", "JJ", "RP", ".", "RB", "IN", "EX", "VBZ", "NN", "NN", "IN", "JJ", ",", "DT", "NN", "WDT", "-NONE-", "VBZ", "JJ", "NNS", "IN", "DT", "NNS", "MD", "RB", "VB", ".", "``", "EX", "MD", "VB", "NN", "NN", "RB", ",", "''", "VBD", "-NONE-", "NNP", "NNP", ",", "``", "CC", "IN", "DT", "NN", "VBZ", "VBN", "IN", "-NONE-", "CC", "VBZ", "-NONE-", "TO", "VB", ",", "PRP", "RB", "VB", "VBN", "CC", "VB", "-NONE-", "PRP", "VBZ", "JJ", "DT", "JJ", "NN", "-NONE-", "TO", "VB", "PRP", "TO", "PRP$", "NN", ".", "''", "``", "PRP", "VBZ", "RB", "NN", "IN", "DT", "NN", "NN", "IN", "DT", "NNS", ",", "''", "VBD", "-NONE-", "NNP", "NNP", ".", "``", "PRP", "VBP", "-NONE-", "TO", "VB", "IN", "-NONE-", "VBG", "DT", "JJ", "NNP", "NNP", "NNP", "-LRB-", "CD", "IN", "NNP", "NNP", "POS", "NNPS", "-RRB-", "CC", "DT", "NNP", "CD", "NNP", ",", "CC", "DT", "NNP", ".", "NNS", "VBP", "VBN", "DT", "NN", "VBG", "RP", "CC", "PRP", "VBP", "RB", "VBG", "NNS", "WDT", "-NONE-", "VBP", "TO", "DT", "NNS", ".", "''", "DT", "VBZ", "WRB", "DT", "NN", "IN", "DT", "NNS", "VBZ", "VBG", "RB", "RB", ".", "CC", "NNS", "WP", "-NONE-", "VBP", "IN", "DT", "NN", "VBP", "RB", "RBR", "JJ", "IN", "PRP", "VBD", "-NONE-", "DT", "JJ", "NNS", "RB", ".", "``", "PRP", "MD", "RB", "VB", "IN", "DT", "NN", "VBZ", "RB", "RB", ",", "''", "VBD", "-NONE-", "NNP", "NNP", "IN", "NNP", "NNP", "NNP", "IN", "NNP", "NNP", ".", "``", "CC", "IN", "PRP", "VBP", "-NONE-", "DT", "NN", "VBZ", "VBN", "-NONE-", "CC", "-NONE-", "PRP", "MD", "VB", "NN", "RB", "JJ", "IN", "JJR", ".", "''", "NNP", "NNP", "VBZ", "VBN", "NNS", "IN", "DT", "NNS", "-LRB-", "IN", "NNP", "NNP", "NNP", ",", "RB", "$", "CD", "-NONE-", "-RRB-", "RB", "-NONE-", "TO", "VB", "RP", "NN", ",", "CC", "PRP", "VBZ", "VBG", "-NONE-", "TO", "VB", "DT", "NN", "TO", "JJ", "JJ", "NNPS", "CC", "NNPS", "CC", "NNPS", "IN", "DT", "$", "CD", "TO", "$", "CD", "-NONE-", "NN", ".", "NN", "VBZ", ",", "IN", "NN", ",", "DT", "JJ", "NN", "-NONE-", "-NONE-", "TO", "VB", "-NONE-", "IN", "WP", "-NONE-", "VBZ", "CC", "WP", "-NONE-", "VBZ", "RB", "-NONE-", ",", "CC", "PRP", "MD", "RB", "VB", "VBN", "-NONE-", ".", "NN", "NNS", "MD", "RB", "VB", "NNP", "NNP", "IN", "NN", ",", "CC", "PRP", "VBP", "-NONE-", "TO", "VB", "NNP", "DT", "NNP", ",", "-NONE-", "RB", "VBG", "DT", "NN", "IN", "$", "CD", "-NONE-", "TO", "$", "CD", "-NONE-", ".", "PRP", "VBZ", "RB", "DT", "NN", "IN", "NN", ":", "CD", "CD", "NNP", "VBZ", "DT", "JJ", "NN", ",", "CC", ",", "IN", "NNP", "NNP", "VBD", "-NONE-", "-NONE-", ",", "NNS", "VBP", "PRP$", "JJ", "NNS", "IN", "NN", ".", "PRP", "-NONE-", "VBZ", "JJ", "-NONE-", "TO", "VB", "IN", "DT", "NN", "IN", "DT", "JJ", "NNS", "VBP", "RB", "RB", "VBG", "IN", "DT", "NN", ".", "IN", "DT", "JJ", "NN", "IN", "DT", "NNP", ",", "IN", "NN", ",", "PRP", "MD", "VB", "CD", "NNP", "NNP", "CC", "NNP", ",", "RB", "DT", "IN", "DT", "JJ", "NN", "NNP", "-LRB-", "IN", "NNP", "-RRB-", ",", "RB", "RB", "IN", "NNP", "CD", "CC", "NNP", "IN", "NNP", "CC", ",", "IN", "DT", "NN", ",", "DT", "NNP", "POS", "NNP", "CD", "NNP", "CD", ".", "IN", "DT", "JJS", "JJ", "NN", "IN", "DT", "NN", "VBG", "IN", "DT", "NNS", "VBP", ",", "PRP", "-NONE-", "MD", "VB", "JJ", "-NONE-", "TO", "VB", "WRB", "DT", "NNS", "VBP", ".", "IN", "NNP", "PRP", "-NONE-", "MD", "VB", "RB", "JJ", "WP", "-NONE-", "POS", "JJ", ":", "NN", "WP", "-NONE-", "VBZ", "RB", "-NONE-", ".", "NNP", "NNP", "VBZ", "DT", "JJ", "NN", "NN", "IN", "NNP", "NNP", ".", "NNS", "IN", "DT", "VBG", "NN", "VBP", "VBG", "NN", "-NONE-", "IN", "DT", "NNP", "NNP", "-NONE-", "TO", "VB", "JJ", "NN", "NNS", ",", "CC", "PRP", "-NONE-", "VBZ", "RB", "JJ", "IN", "DT", "JJ", "NN", "MD", "VB", "RB", ".", "DT", "NN", "IN", "DT", "NNP", "POS", "CD", "NN", "NNS", "VBZ", "-NONE-", "JJ", "NN", "VBZ", "VBN", "JJ", "IN", "JJ", "NNS", ",", "IN", "JJ", "NNS", "IN", "NNS", "VBP", "VBN", ".", "``", "DT", "NN", "VBZ", "RB", "VBG", ",", "''", "VBZ", "-NONE-", "NNP", "NNP", ",", "NN", "IN", "DT", "NNP", "NNP", "NNP", "NNP", ".", "``", "IN", "PRP", "VBP", "IN", "DT", "JJ", "NN", "IN", "-NONE-", "VBG", "RB", "CD", "NN", "NN", ",", "PRP", "VBP", "VB", "DT", "NN", "IN", "DT", "JJ", "NN", ",", "''", "VBZ", "-NONE-", "NNP", "NNP", "NNP", "NNP", "NNP", "NNP", ".", "RB", ",", "DT", "NNP", "NNP", "CC", "NNP", "NNP", "VBP", "-NONE-", "DT", "NN", "RB", "RB", "VBZ", "DT", "NN", "IN", "NN", ".", "``", "PRP", "VBP", "VBG", "RBR", "TO", "-NONE-", "VBG", "DT", "VBN", "NN", "IN", "-NONE-", "VBG", "DT", "NN", "TO", "DT", "NN", "WRB", "RB", "DT", "JJ", "NN", "IN", "NNS", "MD", "VB", "-NONE-", ",", "''", "VBD", "NNP", "NNP", ".", "NNP", "NN", "NNS", "VBP", "VBG", "TO", "DT", "NNP", "-NONE-", "TO", "VB", "RP", "NNS", ",", "CC", "JJ", "NNS", "VBP", "-NONE-", "TO", "VB", "VBG", "JJR", "NN", "RB", "RB", ".", "``", "PRP", "VBP", "-NONE-", "DT", "NN", "VBD", "VBN", "VBG", "DT", "NNP", "TO", "VB", "RBR", "CC", "DT", "RB", "RBR", "IN", "PRP", "VBZ", "-NONE-", "TO", "NN", ",", "''", "VBD", "-NONE-", "NNP", "NNP", ",", "NN", "NN", "IN", "JJ", "NNS", "IN", "NNP", "NNP", "NNP", ".", "DT", "NNP", "VBD", "DT", "JJ", "JJ", "NNS", "NN", "NN", "IN", "RB", "CD", "NN", "NN", "TO", "CD", "NN", "IN", "DT", "NNP", "CD", "NN", "NN", "NN", ",", "CC", "VBZ", "VBN", "DT", "NN", "IN", "NN", "IN", ".", "DT", "NN", "IN", "DT", "NNP", "VBD", "IN", "NN", ",", "IN", "JJ", ",", "VBZ", "VBN", "JJ", "IN", "JJ", "NNS", ".", "DT", "NNP", "NNP", ",", "IN", "NN", ",", "VBD", "IN", "NN", "NN", "``", "VBZ", "-NONE-", "TO", "VB", "''", "IN", "DT", "JJ", "NN", "IN", "DT", "NN", ".", "CC", "IN", "DT", "NNP", "NN", ",", "DT", "NN", "VBD", "-NONE-", "-NONE-", ",", "``", "DT", "NN", "IN", "NN", "NNS", "VBD", "JJR", "NNS", "IN", "DT", "NNS", ",", "VBG", "NN", "NN", ",", "NN", "NN", ",", "NN", "NN", "NN", "CC", "NN", "NN", "NN", ".", "''", "JJ", "NNS", "RB", "VBD", "VBN", "-NONE-", "-NONE-", "RB", "IN", "JJS", "NNS", ",", "RB", "``", "IN", "JJ", ",", "JJ", "NNS", "JJ", "IN", "NN", ",", "NN", "NNS", "CC", "NN", "NNS", ".", "''", "CC", "NN", "RB", "VBD", "VBN", "-NONE-", "IN", "JJ", "IN", "JJS", "NNS", ".", "IN", "DT", "JJ", "NN", ",", "EX", "VBP", "JJ", "JJ", "NNS", "IN", "NN", "VBZ", "VBG", "TO", "DT", "NN", ".", "IN", "DT", "NN", ",", "NNP", "NNS", "MD", "VB", "VBN", "-NONE-", "IN", "IN", "-NONE-", "TO", "VB", "NN", ".", "JJ", "NNP", "NNS", "IN", "NNP", "VBP", "VBN", "VBG", "IN", "JJR", "NN", ":", "CC", "JJ", "IN", "DT", "JJ", "NNP", "NNS", "VBP", "VBN", "VBG", "JJ", "DT", "NN", ".", "NNP", "NNP", "VBD", "-NONE-", "PRP", "VBZ", "``", "VBN", "''", "IN", "DT", "NN", "POS", "JJ", "NN", ",", "CC", "VBZ", "RB", "VB", "``", "DT", "NN", "IN", "NNS", "-NONE-", "IN", "RB", "WDT", "-NONE-", "MD", "VB", "PRP", "IN", "NN", ".", "''", "``", "EX", "VBZ", "RB", "DT", "NN", "IN", "NN", ",", "''", "VBD", "-NONE-", "NNP", "NNP", ",", "``", "CC", "IN", "PRP", "VBP", "PRP", "-NONE-", "TO", "VB", "DT", "NN", "IN", "PRP", ",", "PRP", "MD", "VB", "-NONE-", "PRP", "VBZ", "RB", "IN", "DT", "CD", "NN", "NN", ".", "NNP", "NNP", "CC", "NNP", "NNP", "VBD", "-NONE-", "PRP$", "VBN", "NNS", "NN", "-NONE-", "-NONE-", "TO", "VB", "RB", "$", "CD", "CD", "-NONE-", "VBD", "VBN", "-NONE-", "JJ", "CC", "DT", "NN", "MD", "VB", "-NONE-", "VBG", "NNS", "TO", "NNS", "IN", "DT", "NN", "IN", "DT", "NN", ".", "IN", "DT", "NN", ",", "NNS", "MD", "VB", "CD", "JJ", "IN", "DT", "CD", "JJ", "NNS", "VBN", "-NONE-", ".", "DT", "NN", "VBZ", "DT", "NN", "TO", "VB", "$", "CD", "-NONE-", "NN", "NN", "IN", "CD", "NN", "NNS", "JJ", "CD", "CC", "VBZ", "-NONE-", "TO", "VB", "CD", "JJ", "NNS", "IN", "CD", "NNS", "DT", "NN", ".", "DT", "NNS", ",", "WDT", "-NONE-", "VBP", "NN", "CD", ",", "MD", "VB", "VBN", "-NONE-", "IN", "$", "CD", "-NONE-", "DT", ".", "NNP", ",", "WDT", "-NONE-", "VBZ", "CC", "VBZ", "NNS", ",", "VBD", "IN", "NNP", "NNP", "NNP", "VBZ", "VBN", "-NONE-", "TO", "VB", "DT", "NNS", "WDT", "-NONE-", "VBP", "RB", "VBN", "-NONE-", "IN", "JJ", "NNS", ".", "NNP", ",", "DT", "NNP", "NN", "NN", ",", "VBZ", "RP", "CD", "NN", "IN", "NNP", ".", "NNP", "NNP", ",", "DT", "NN", "NN", ",", "VBD", "-NONE-", "CD", "NNS", "IN", "DT", "NN", "IN", "NNP", ",", "NNP", ",", "VBD", "DT", "NN", "IN", "DT", "NNP", "NNP", "NNP", "CD", "VBD", "DT", "JJ", "NN", "IN", "NNP", ".", "DT", "JJ", "NN", "IN", "NNP", "POS", "NNP", "NNP", "NNP", "NN", "CC", "DT", "NN", "VBD", "IN", "NN", "NNP", ".", "DT", "NN", "NN", "-NONE-", "TO", "VB", "DT", "VBN", "NN", "VBD", "CD", ".", "NN", "VBD", "-NONE-", "PRP", "VBZ", "RB", "VB", "DT", "JJ", "NN", ".", "PRP", "VBD", "-NONE-", "PRP", "VBZ", "VBN", "NNS", "-NONE-", "TO", "VB", "NNS", "IN", "DT", "NN", "NN", ".", "DT", "NNP", "VBD", "-NONE-", "PRP", "VBZ", "-NONE-", "TO", "VB", "$", "CD", "CD", "-NONE-", "IN", "NNS", "CC", "NNS", "IN", "NN", ",", "CC", "VBD", "-NONE-", "DT", "NNS", "MD", "VB", "VBN", "-NONE-", "IN", "NNP", "VBZ", "RB", "-NONE-", "TO", "VB", "DT", "JJ", "NN", "NN", ".", "NNP", "NNP", ",", "NN", "NN", "NN", "IN", "JJ", "NN", ",", "VBD", "-NONE-", "DT", "NNP", "MD", "VB", "IN", "JJ", "NNP", "CC", "RB", "JJ", "NNP", "-NONE-", "TO", "VB", "IN", "DT", "NNS", "VBP", "-NONE-", "TO", "VB", "VBN", "-NONE-", ".", "IN", "PRP", "MD", "VB", "NN", "IN", "JJ", "NNS", ",", "NNP", "NNP", "VBD", "-NONE-", "-NONE-", ",", "DT", "JJ", "NN", "MD", "RB", "VB", "DT", "NN", "-NONE-", "-NONE-", "TO", "VB", "RP", "$", "CD", "CD", "-NONE-", "IN", "NNP", "NNS", "WDT", "-NONE-", "VBP", "IN", "NNP", "-NONE-", ".", "IN", "JJ", "NN", ",", "DT", "NNP", "MD", "RB", "VB", "DT", "JJ", "NNS", ":", "JJ", "NNS", "NNS", ".", "CC", "IN", "JJ", "NN", "IN", "DT", "NN", "NN", ",", "WDT", "-NONE-", "VBZ", "VBN", "JJ", "IN", "DT", "NN", "IN", "-NONE-", "VBG", "NNS", "NNS", ",", "NNP", "VBZ", "RB", "JJ", "-NONE-", "TO", "VB", "IN", "NN", "-NONE-", "-NONE-", "TO", "VB", "NN", "-NONE-", ".", "``", "DT", "NN", "IN", "NNP", "VBZ", "-NONE-", "TO", "VB", "-NONE-", ":", "MD", "VB", "JJ", "NN", "IN", "PRP$", "NN", "NN", ",", "-NONE-", "RB", "VBG", "IN", "JJR", "NN", "NNS", "TO", "DT", "NN", ",", "''", "NNP", "NNP", "NNP", "NNP", "VBD", "-NONE-", "IN", "DT", "NN", "VBN", "-NONE-", "IN", "NN", "JJ", "NN", "TO", "DT", "NN", "IN", "NNS", ".", "``", "-NONE-", "TO", "VB", "DT", "NNS", ",", "CC", "DT", "JJ", "NN", ",", "JJ", "NN", "VBZ", "JJ", ".", "''", "DT", "NNS", "-NONE-", "-NONE-", "TO", "VB", "VBN", "-NONE-", "JJ", "NN", "MD", "VB", "RB", "$", "CD", "CD", "-NONE-", "IN", "NN", "CC", "VB", "$", "CD", "CD", "-NONE-", "IN", "VBG", "NNS", ".", "DT", "JJ", "NNS", ",", "NN", "IN", "DT", "JJ", "NN", "POS", "JJ", "JJ", "VBG", ",", "MD", "VB", "IN", ":", ":", "$", "CD", "CD", "-NONE-", "IN", "JJ", "NNS", ",", "-NONE-", "-NONE-", "TO", "VB", "VBN", "-NONE-", "NNP", "CC", "TO", "VB", "NNP", "CD", ",", "CD", ".", ":", "$", "CD", "CD", "-NONE-", "IN", "JJ", "NNS", ",", "-NONE-", "-NONE-", "TO", "VB", "VBN", "-NONE-", "NNP", "CC", "TO", "VB", "NNP", "CD", ",", "CD", ".", ":", "$", "CD", "CD", "-NONE-", "IN", "JJ", "NNS", ",", "-NONE-", "-NONE-", "TO", "VB", "VBN", "-NONE-", "NNP", "CC", "TO", "VB", "NNP", "CD", ",", "CD", ".", "DT", "NNP", "RB", "VBD", "-NONE-", "PRP", "VBZ", "-NONE-", "TO", "VB", "$", "CD", "CD", "-NONE-", "IN", "JJ", "NN", "NN", "NNS", "IN", "NNP", ".", "PRP", "MD", "VB", "NNP", "CD", ".", "NN", "IN", "DT", "NNS", "MD", "VB", "JJ", "IN", "JJ", "VBG", "IN", "NNP", "VBZ", "DT", "NN", "IN", "DT", "NN", "NN", ",", "-NONE-", "VBG", "DT", "NN", "IN", "DT", "JJ", "NN", ",", "NNP", "NNP", "VBD", "-NONE-", "-NONE-", ".", "DT", "NNP", "VBD", "-NONE-", "PRP", "VBZ", "-NONE-", "TO", "VB", "$", "CD", "CD", "-NONE-", "IN", "DT", "JJ", "NN", "IN", "NN", "-NONE-", "TO", "VB", "NNP", "IN", "DT", "$", "CD", "CD", "-NONE-", "NN", "NN", ".", "NNS", "VBD", "-NONE-", "IN", "NNP", "CC", "DT", "VBN", "-NONE-", "IN", "JJ", "NN", "MD", "VB", "DT", "NN", "IN", "$", "CD", "CD", "-NONE-", ".", "DT", "VBG", "$", "CD", "CD", "-NONE-", "MD", "VB", "VBN", "-NONE-", "IN", "DT", "NN", "IN", "JJ", "NNP", "NNS", ",", "JJ", "NNS", "IN", "NNP", "CC", "JJ", "NNS", "IN", "JJ", "NNP", ",", "DT", "NNP", "VBD", "-NONE-", "-NONE-", ".", "IN", "DT", "JJ", "CD", "NNS", "IN", "CD", ",", "DT", "NNP", "VBZ", "IN", "PRP", "MD", "VB", "-NONE-", "TO", "VB", "IN", "$", "CD", "CD", "CC", "$", "CD", "CD", "-NONE-", ",", "-NONE-", "VBG", "IN", "PRP", "VBZ", "-NONE-", "TO", "VB", "IN", "DT", "$", "CD", "CD", "-NONE-", "NN", "NN", "IN", "DT", "NN", "IN", "NNP", ".", "NNP", "NNP", "NNP", "VBD", "-NONE-", "PRP", "VBD", "NNP", "NNP", "NNP", "IN", "DT", "NN", "NN", ".", "NNS", "VBD", "RB", "VBN", "-NONE-", ".", "NNP", ",", "DT", "NN", "CC", "NN", "IN", "VBN", "NNS", "CC", "JJ", "NN", "VBN", "-NONE-", "IN", "NNP", ",", "NNP", ",", "VBZ", "JJ", "NNS", "IN", "RB", "$", "CD", "CD", "-NONE-", ",", "NNP", "VBD", "-NONE-", "-NONE-", ".", "NNS", "VBD", "NN", "IN", "NNP", "POS", "NN", "NN", "-NONE-", "TO", "VB", "DT", "NNS", "NN", ",", "-NONE-", "VBG", "RB", "IN", "RB", ".", "NN", "NNS", "CC", "DT", "NN", "DT", "VBD", "RB", ".", "DT", "NNP", "NNP", "NNP", "NNP", "VBD", "JJR", "IN", "DT", "NN", "RBR", "-NONE-", "TO", "VB", "IN", "CD", "IN", "JJ", "VBG", ".", "CC", "VBG", "NNS", "IN", "DT", "NNP", "NNP", "NNP", "NNP", "VBD", "RB", "RB", "IN", "VBG", "NNS", ",", "CD", "TO", "CD", ".", "JJ", "NN", "NNS", "VBD", "IN", "NNS", "IN", "DT", "JJ", "JJ", "NN", "IN", "NNP", "NN", "DT", "NN", ".", "VBG", "NN", "IN", "NNS", "IN", "JJ", "NNS", "VBD", "DT", "NNP", "NN", ".", "NNS", "VBD", "VBN", "-NONE-", "IN", "DT", "NN", "-NONE-", "-NONE-", "NNS", "VBD", "-NONE-", "IN", "NNS", "IN", "DT", "NN", "IN", "NNP", "POS", "$", "CD", "CD", "-NONE-", "NN", "IN", "JJ", "NNP", "NNP", "VBD", "RB", "RB", ".", "DT", "JJ", "NN", "VBD", "RBR", "IN", "CD", "NNS", "NNP", "IN", "NNS", "VBD", "-NONE-", "TO", "VB", "NNS", "IN", "JJ", "NN", "NNS", ".", "CC", "IN", "DT", "NN", "IN", "DT", "NN", "IN", "NN", ",", "NN", "NNS", "VBP", "JJ", "-NONE-", "TO", "VB", "NNS", "CC", "VB", "PRP$", "NNS", "IN", "-NONE-", "VBG", "WP", "IN", "JJ", "-NONE-", "VBP", "VBN", "RB", "JJ", "NNS", "IN", "JJ", "NN", "VBD", "JJ", "NN", "IN", "JJ", "NNS", ".", "IN", "-NONE-", "VBN", "-NONE-", ",", "DT", "JJ", "NN", "NNS", "POS", "NN", "VBD", "-NONE-", "DT", "NN", "POS", "NN", "NN", "VBZ", "-NONE-", "TO", "VB", "RB", ".", "DT", "NNP", "NNP", "POS", "NNP", "NNP", ",", "DT", "NN", "IN", "JJ", "NNS", "IN", "DT", "NN", ",", "VBD", "IN", "DT", "JJ", "NN", "VBZ", "IN", "DT", "NN", "IN", "JJ", "NN", ".", "IN", "JJ", "NN", "NN", ":", "NN", "NNS", "VBD", "RB", "IN", "JJ", "VBG", ".", "NNP", "NNP", "NN", "VBD", "CD", "CD", "NNS", ".", "NN", "NNS", "VBD", "RB", ".", "DT", "NNP", "POS", "NN", "JJ", "NN", "VBD", "RB", "DT", "NN", "IN", "DT", "NN", ",", "CC", "$", "CD", "-NONE-", "IN", "DT", "$", "CD", "-NONE-", "IN", "NN", "NN", ".", "DT", "NN", "VBD", "TO", "CD", "NN", ".", "DT", "NN", "VBD", ".", "IN", "JJ", "NN", "NNP", "NNP", "VBG", "DT", "NN", "VBD", "IN", "CD", "NNS", "CC", "CD", "NN", "VBN", "IN", "CD", "NNS", "CC", "CD", "NN", ".", "NNP", "NNP", "CC", "NNP", "NNP", "VBD", "DT", "CD", "NN", "NN", "IN", "JJ", "NN", "TO", "CD", "CD", "NN", "-LRB-", "$", "CD", "CD", "-NONE-", "-RRB-", "IN", "PRP$", "JJ", "JJ", "NN", "VBD", "JJ", "CD", "VBN", "IN", "CD", "CD", "NN", "DT", "NN", "RBR", ".", "JJ", "NN", "RBR", "IN", "VBD", "TO", "CD", "CD", "NNS", "IN", "CD", "CD", "NNS", "DT", "NN", "JJR", ".", "NNP", "NNP", "VBD", "-NONE-", "PRP", "VBD", "PRP$", "NNP", "NNP", "NNP", "NNP", "NN", "TO", "DT", "NN", "VBN", "-NONE-", "IN", "NNS", "IN", "DT", "NN", ".", "NNS", "VBD", "RB", "VBN", "-NONE-", ".", "NNP", "NNP", ",", "VBN", "-NONE-", "IN", "NNP", "NNP", ",", "VBZ", "RB", "CD", "NNS", "CC", "VBZ", "JJ", "NNS", "CC", "JJ", "NNS", "TO", "NN", ".", "NNP", "VBZ", "DT", "JJ", "NNS", ",", "NNS", "CC", "NN", "NNS", "NN", ".", "NNP", "NNP", "NNP", "CC", "NNP", "NNP", "NNP", "VBD", "-NONE-", "TO", "VB", "NNP", "NNP", "NNP", "IN", "$", "CD", "-NONE-", "DT", "NN", ",", "CC", "RB", "$", "CD", "CD", "-NONE-", ",", "-NONE-", "VBG", "RP", "DT", "NN", "IN", "DT", "NN", "NNS", "NN", ".", "DT", "NN", "VBZ", "DT", "JJR", "NN", "-NONE-", "IN", "NNP", "CC", "NNP", "NNP", "-NONE-", "TO", "VB", "NNP", "NNP", "NN", "CC", "VB", "JJ", "IN", "DT", "NN", "WDT", "-NONE-", "MD", "VB", "NNS", "$", "CD", "-NONE-", "DT", "NN", ".", "NNP", "NNP", "VBD", "DT", "NN", "IN", "NNP", "CC", "VBD", "-NONE-", "PRP", "MD", "VB", "JJ", "NNS", ".", "RB", ",", "PRP", "VBZ", "RB", "RB", "VBD", "DT", "NNS", "TO", "NNS", ".", "RB", "NN", ",", "NNP", "NNP", "VBD", "-NONE-", "PRP", "VBD", "DT", "NNP", "NN", "RB", "RB", "IN", "NNS", "IN", "``", "JJ", "NNS", "''", "VBG", "NN", "NNS", ".", "NNP", "NNP", "VBD", "-NONE-", "PRP", "VBZ", "RB", "VBN", "DT", "NNS", "CC", "IN", "``", "NNS", "-NONE-", "VBP", "VBG", "VBN", "-NONE-", "IN", "JJ", "NNS", ",", "CC", "NN", "-NONE-", "VBZ", "RB", "VBG", "IN", "JJ", "JJ", "NNS", ".", "''", "PRP", "VBD", "RB", "VB", ".", "NNS", "VBD", "DT", "JJS", "NN", "RB", "JJ", "IN", "NNP", "NNP", ",", "DT", "JJ", "CC", "JJ", "NN", ",", "MD", "RB", "VB", "NNP", "NNP", "RB", "IN", "DT", "NN", "IN", "NN", "VBZ", "VBN", "-NONE-", ".", "``", "PRP", "VBZ", "VBN", "IN", "PRP$", "NN", "IN", "DT", "NN", "NN", ",", "''", "VBZ", "-NONE-", "NNP", "NNP", ",", "DT", "NN", "NN", "IN", "NNP", "NNP", "CC", "NNP", ".", "``", "PRP", "VBZ", "-NONE-", "TO", "VB", "IN", "PRP", "IN", "DT", "JJ", "NN", ".", "''", "NNP", "NNP", "CC", "NNP", "RB", "VB", "DT", "CD", "NN", "NN", "IN", "NNP", "NNP", ".", "NNP", "NNP", "VBZ", "CD", "NN", "IN", "NNP", "NNP", ",", "WDT", "IN", "NN", "-NONE-", "VBZ", "NNS", "IN", "NNP", ".", "NNP", "VBZ", "RB", "VBG", "DT", "NN", ".", "NNP", "NNP", "VBD", "RB", "VBN", "-NONE-", "IN", "DT", "JJR", "NN", "VBN", "-NONE-", "IN", "NNP", ",", "-NONE-", "VBG", "-NONE-", "PRP", "VBZ", "IN", "$", "CD", "-NONE-", "DT", "NN", "VBZ", "``", "DT", "JJS", "-NONE-", "PRP", "MD", "VB", "-NONE-", "IN", "NNP", "NNP", "IN", "PRP", "VBZ", "DT", "JJ", "NN", ".", "''", "NNP", "NNP", "NN", "VBD", "$", "CD", "-NONE-", "DT", "NN", "NN", "-NONE-", "TO", "VB", "IN", "$", "CD", "-NONE-", "DT", "NN", ",", "IN", "NNP", "NNS", "VBD", "JJ", "IN", "$", "CD", "-NONE-", "CC", "NNP", "VBD", "CD", "NNS", "TO", "$", "CD", "-NONE-", ",", "DT", "IN", "NNP", "NNP", "NNP", "NNP", "JJ", "VBG", ".", "NNP", "NNP", "NNP", ",", "NNP", "NN", "CC", "JJ", "NN", "NN", ",", "VBD", "-NONE-", "NNP", "CC", "NNP", "NNP", "VBD", "DT", "NN", "-NONE-", "-NONE-", "PRP", "VBD", "VBG", "-NONE-", "IN", "NNP", "NNP", "IN", "PRP", "RB", "VBD", "DT", "NN", "WDT", "-NONE-", "VBD", "RB", "$", "CD", "CD", "-NONE-", "IN", "NN", "CC", "DT", "JJ", "NN", "IN", "JJ", "VBN", "NN", ".", "RB", ",", "DT", "JJ", "NN", "VBZ", "VBN", "IN", "JJ", "NNS", ",", "-NONE-", "VBG", "DT", "NN", "IN", "JJ", "DT", "NN", "MD", "VB", ".", "RB", ",", "PRP", "VBD", "-NONE-", "-NONE-", ",", "DT", "NN", "VBZ", "-NONE-", "TO", "VB", "RP", "``", "JJ", "CD", "CD", "''", "NNS", "IN", "NN", "CC", "VB", "DT", "NN", "IN", "NN", "NN", ".", "PRP", "RB", "VBD", "IN", "DT", "NN", "VBD", "PRP$", "NN", "IN", "PRP", "VBD", "RB", "VBN", "-NONE-", "TO", "VB", "NNP", "NNP", "POS", "JJ", "JJ", "NN", "IN", "-NONE-", "VBG", "IN", "PRP", "MD", "RB", "VB", "DT", "NN", "IN", "PRP", "VBD", "NNP", "NNP", "POS", "NN", ".", "IN", "DT", "NN", "TO", "NNP", "NNP", "NNP", "NNP", "NNP", "NNP", ",", "NNP", "NNP", "VBD", "NNP", "NNP", "-NONE-", "TO", "VB", "PRP$", "NN", "IN", "NNP", ".", "PRP", "-NONE-", "VBD", "RB", "JJ", "WRB", "NNP", "CC", "NNP", "NNP", "MD", "VB", "-NONE-", "IN", "NNP", "NNP", "VBZ", "PRP", "RB", ".", "NNP", "NNP", "VBD", "-NONE-", "PRP", "VBP", "RB", "RB", "VBN", "WP", "PRP$", "JJ", "NN", "MD", "VB", "-NONE-", ",", "CC", "PRP", "VBD", "RB", "NN", "RP", "DT", "NN", "IN", "DT", "NN", "NN", "VBN", "-NONE-", "IN", "-NONE-", "VBG", "NNP", "NNP", "POS", "NN", ".", "IN", "JJ", "NNS", ",", "NNP", "NNP", "VBZ", "VBN", "JJ", "NNS", "IN", "DT", "NN", "NN", "NN", ".", "IN", "NNP", "NNP", "VBZ", "RB", "VBN", "JJ", "-NONE-", "TO", "VB", "IN", "NNP", "NNP", "CC", "NNP", ",", "DT", "NN", "NNS", "NN", ",", "DT", "NN", "RB", "VBZ", "-NONE-", "DT", "NN", "POS", "NN", "VBZ", "VBN", "-NONE-", "IN", "DT", "NN", "IN", "NN", ".", "DT", "NN", "NN", "VBZ", "RB", "CD", "NN", "IN", "DT", "NN", ",", "JJS", "VBN", "-NONE-", "IN", "JJ", "NNS", ",", "CC", "MD", "VB", "-NONE-", "TO", "VB", "NNS", "IN", "NNS", "IN", "DT", "NN", "VBD", "VBN", "-NONE-", ".", "IN", "DT", "JJ", "NN", ",", "NNP", "NNP", "VBD", "$", "CD", "CD", "-NONE-", ",", "CC", "$", "CD", "-NONE-", "DT", "NN", ",", "RB", "IN", "$", "CD", "CD", "-NONE-", ",", "CC", "$", "CD", "-NONE-", "DT", "NN", "IN", "JJR", "NNS", "JJ", ".", "NNS", "VBD", "TO", "$", "CD", "CD", "-NONE-", "IN", "$", "CD", "CD", "-NONE-", ".", "DT", "NN", "NN", "VBG", "DT", "NNP", "IN", "NNP", "VBD", "NNP", "CC", "NNP", "TO", "PRP$", "NN", "VBG", "DT", "NN", "NN", "NN", "IN", "NNS", "TO", "NNP", "NN", "NN", ".", "NNP", "NNP", "NNP", ",", "VBN", "-NONE-", "IN", "NNP", ",", "NNP", ",", "VBD", "-NONE-", "PRP", "VBZ", "NNP", "CC", "NNP", "POS", "NNS", "IN", "NNS", "IN", "NNP", ",", "VBN", "-NONE-", "IN", "$", "CD", "CD", "-NONE-", ",", "DT", "JJ", "NN", "IN", "JJ", "NNS", "CC", "DT", "NN", "-NONE-", "TO", "VB", "NNP", "RB", ".", "IN", "NNP", ",", "NNP", "NNP", "VBD", "DT", "NN", "-NONE-", "IN", "JJ", "NN", "IN", "NNP", "IN", "NNP", "NNP", "NNP", ",", "DT", "NN", "CC", "NN", "IN", "DT", "NNP", "IN", "NNP", "NNP", "IN", "NNP", "WP", "-NONE-", "VBD", "NNP", "IN", "DT", "CD", "-NONE-", "TO", "VB", "NN", ".", "NNP", "NNP", "VBD", "DT", "NN", "IN", "-NONE-", "VBN", "-NONE-", "IN", "DT", "NNP", ",", "CC", "JJ", "VBD", "DT", "NNP", "TO", "DT", "NN", "IN", "NNP", "CC", "NNP", ".", "IN", "NNP", "NNP", ",", "NNP", ",", "DT", "NNP", "CC", "NNP", "NN", "VBD", "NN", ".", "NNP", "IN", "DT", "NNP", "IN", "JJ", "JJ", "NNS", "VBZ", "VBG", "RB", "JJR", "IN", "DT", "CD", "NNS", "POS", "NNS", ".", "NNS", "IN", "DT", "NNS", "VBP", "-NONE-", "DT", "NNP", "NN", "POS", "NN", "IN", "JJ", "NN", "MD", "VB", "DT", "JJ", "NN", "IN", "JJ", "JJ", "NNS", "VBN", "-NONE-", "IN", "JJ", "NN", "IN", "NNP", ".", "RB", "IN", "NNP", "CC", "NNP", "VBP", "IN", "DT", "JJ", "NNS", ":", "RB", ",", "DT", "VBZ", "VBN", "RP", "IN", "NN", "IN", "JJ", "NN", "IN", "DT", "NNP", ".", "WRB", "PRP", "VBP", "-NONE-", "VBZ", "IN", "DT", "NN", "IN", "NNP", "JJ", "NN", "IN", "NNP", ".", "DT", "NNP", "VBZ", "DT", "NN", "IN", "WP", "PRP", "VBZ", "-NONE-", "IN", "NNS", "TO", "NN", ":", "NNP", "VBZ", "-NONE-", "EX", "VBP", "JJ", "NNS", ".", "DT", "JJ", "NN", "VBD", "-NONE-", "RP", "IN", "JJ", "JJ", "NNS", "IN", "DT", "NNP", "VBZ", "VBG", "NN", "IN", "DT", "NNS", "IN", "NN", "NN", ",", "RB", "IN", "PRP", "VBZ", "RB", "CD", "IN", "JJ", "NNS", "-NONE-", "-NONE-", "TO", "VB", "VBN", "-NONE-", "IN", "DT", "JJ", "NNS", ",", "VBN", "-NONE-", "IN", "DT", "NNP", "NNP", "NNP", ".", "DT", "NNS", "``", "MD", "VB", "DT", "NN", "IN", "DT", "NN", "IN", "DT", "NN", "IN", "DT", "NN", "IN", "PRP$", "JJ", "NN", ",", "''", "VBZ", "-NONE-", "-NONE-", "NNP", "NNP", ",", "NNP", "NN", "NNP", "NN", ",", "WP", "-NONE-", "VBZ", "VBN", "IN", "NNP", "DT", "NN", "-NONE-", "RB", "VBG", "DT", "VBG", "NNS", "IN", "NN", "CC", "NN", "NNS", ".", "``", "PRP", "VBP", "DT", "JJ", "NN", "IN", "-NONE-", "VBG", "DT", "JJ", "JJ", "NN", ",", "''", "NNP", "NNP", "VBZ", "-NONE-", ".", "``", "NNP", "NNS", "MD", "VB", "DT", "JJR", "NN", "IN", "JJ", "NN", "''", "IN", "NNP", ".", "DT", "NNP", "NN", "RB", "IN", "DT", "NNP", "NN", "POS", "NN", ".", "CD", "JJ", "NN", "IN", "NNP", "POS", "NN", "VBD", "DT", "NN", ",", "WRB", "DT", "NN", "IN", "NNP", "POS", "NNP", "NNP", "VBD", "RB", "DT", "IN", "DT", "JJ", ",", "JJ", "NN", "IN", "JJ", "NNS", "TO", "DT", "NN", "IN", "JJ", "JJ", "NNS", "IN", "DT", "NNP", "-NONE-", ".", "``", "PRP", "VBP", "IN", "PRP", "-NONE-", "VBZ", "RB", "JJ", "IN", "DT", "JJ", "NN", "NNS", "-LRB-", "IN", "DT", "NNP", ".", "-RRB-", "TO", "VB", "RBR", "JJ", "IN", "DT", "NNS", "CC", "NNS", "IN", "DT", "JJ", "NNS", ",", "''", "VBD", "-NONE-", "DT", "NN", ",", "NNP", "NNP", ".", "IN", "DT", "JJ", "NN", ",", "RB", ",", "PRP", "VBD", "DT", "NN", "IN", "-NONE-", "VBG", "JJ", "JJ", "NN", "TO", "JJ", "NN", "WRB", "JJ", "JJ", "NNS", ",", "RB", "NNP", ",", "VBP", "VBG", "JJR", "JJ", "NNS", "-NONE-", ".", "NNS", "IN", "JJ", "NNS", "VBP", "VBG", "RP", "NNP", "VBP", "VBN", "RB", "IN", "DT", "JJ", "JJ", "NNS", ",", "IN", "NNP", "NNP", "POS", "NN", "IN", "NNP", "NNP", "NNP", "NNP", "IN", "NNP", "NNP", "CC", "NNP", "NNP", "NNP", "POS", "NN", "IN", "DT", "CD", "NN", "NN", "IN", "NNP", "NNP", ",", "DT", "NN", "IN", "DT", "IN", "NN", "NNP", "POS", "RBS", "JJ", "JJ", "NN", ".", "RB", "IN", "DT", "NNS", "VBD", "NN", ",", "DT", "NNS", "IN", "NN", "VBD", "VBN", "RB", "VBN", "-NONE-", "IN", "DT", "RB", "VBN", "NN", "IN", "NNP", "IN", "CD", "NNP", "NN", ",", "NNP", "NNP", "NNP", "NNP", ".", "DT", "NNP", "NN", "VBZ", "VBN", "DT", "CD", "NN", "NN", "VBN", "-NONE-", "IN", "JJR", "IN", "$", "CD", "CD", "-NONE-", "IN", "DT", "JJ", "NN", ",", "NNP", "NNP", "NNP", ".", "CC", "PRP", "VBZ", "VBN", "-NONE-", "TO", "VB", "DT", "NN", "IN", "DT", "NN", ".", "NNP", "VBZ", "VBN", "-NONE-", "TO", "VB", "NNP", "NNP", "NNS", "IN", "PRP$", "NN", ",", "-NONE-", "VBG", "-NONE-", "PRP", "VBZ", "DT", "NN", "VBG", "-NONE-", "TO", "VB", "NNP", "POS", "JJ", "NNS", "IN", "-NONE-", "VBG", "PRP", "RP", "IN", "DT", "NN", ".", "NNP", "NNP", "VBD", "JJ", "JJ", "NN", "IN", "PRP$", "NNS", "IN", "NNP", ".", "DT", "NNP", "NNP", "NNP", ",", "VBN", "-NONE-", "IN", "DT", "JJ", "NN", ",", "JJ", "NNP", "NNP", "NNP", ",", "JJ", "NN", "VBD", "NNP", "NNP", "NNP", "NNP", "NNP", "TO", "VB", "NNP", "NNP", "POS", "NN", "IN", "NNS", "IN", "NNP", "``", "-NONE-", "TO", "VB", "DT", "NN", "VBG", "NNS", "WP", "-NONE-", "VBP", "NN", "TO", "DT", "JJ", "NN", "NNS", ".", "''", "IN", "NNP", "NNP", "CC", "NNP", "NNS", "VBP", "-NONE-", "DT", "NN", "IN", "NNS", "POS", "NN", "TO", "DT", "NNP", "CC", "JJ", "NNS", "MD", "VB", "DT", "JJ", "NN", "IN", "DT", "NN", "POS", "NN", ",", "DT", "NN", "IN", "JJ", "JJ", "JJ", "NNS", "MD", "VB", "IN", "DT", "NN", "IN", "JJ", "NN", "POS", "NNS", ".", "IN", "PRP", "VBP", "-NONE-", "NNS", "IN", "NNS", "CC", "NN", "NNS", ",", "JJ", "NNS", "CC", "NN", ",", "CC", "NN", "NN", ".", "DT", "NN", "VBZ", "DT", "NN", "IN", "NNS", "IN", "DT", "JJ", ".", "DT", "NNP", "VBZ", "-NONE-", "PRP", "VBZ", "JJ", "IN", "NNS", ".", "``", "PRP", "VBP", "RB", "RB", "IN", "PRP", "RB", "VBP", "NN", "IN", "DT", "JJ", "NN", "IN", "NNS", "-NONE-", "PRP", "VBP", "VBN", "-NONE-", ",", "CC", "PRP", "VBP", "PRP", "IN", "JJ", "NN", ",", "''", "NNP", "NNP", "VBZ", "-NONE-", ".", "DT", "NNS", "VBP", "VBN", "IN", "DT", "NNS", "MD", "VB", "RBS", "JJ", "IN", "NNS", "VBP", "IN", "-NONE-", "VBG", "IN", "DT", "NNS", "WDT", "-NONE-", "MD", "VB", "RBS", "RB", "VBN", "-NONE-", ".", "CC", "PRP", "VBP", "RB", "VBN", "WP", "DT", "MD", "VB", "-NONE-", ".", "IN", "DT", "JJ", "NN", "IN", "NNS", "CD", "NNS", "RB", ",", "DT", "NNP", "NNS", "VBD", "IN", "NNP", "VBD", "RB", "VBN", "RP", "IN", "JJ", "NNS", "-NONE-", "PRP", "VBD", "VBN", "-NONE-", "TO", "VB", "-NONE-", ".", "DT", "NNS", "NN", "IN", "DT", "JJ", "NN", "VBD", "RB", "JJ", "-NONE-", "TO", "VB", "NNS", ".", "``", "-NONE-", "RB", "TO", "VB", "-NONE-", "DT", "NN", "NN", "VBZ", "JJ", "VBZ", "RB", "VB", "NN", ",", "''", "VBZ", "-NONE-", "DT", "NNP", "IN", "NNP", "NNP", "CC", "NNP", "NN", ".", "``", "PRP", "VBP", "-NONE-", "TO", "VB", "WP", "RB", "-NONE-", "VBZ", "JJ", "IN", "PRP", ".", "''", "DT", "NN", "IN", "-NONE-", "VBG", "RP", "NNS", "VBZ", "JJ", "-NONE-", "TO", "VB", "NN", ",", "DT", "NNS", "VBP", "-NONE-", "-NONE-", ",", "DT", "NN", "WRB", "RB", "DT", "NNP", "VBZ", "JJ", "NNS", "-NONE-", ".", "IN", "NN", ",", "IN", "DT", "JJ", "NN", "DT", "CD", "NNS", "MD", "RB", "RB", "VB", "IN", "JJ", "NNS", "VBN", "-NONE-", "IN", "NN", "NNS", ".", "IN", "RB", ",", "DT", "NN", "IN", "RB", "CD", "NNP", "CC", "NNP", "NNP", "NNP", "NNS", "VBP", "VBN", "DT", "NN", "-NONE-", "VBG", "NN", "NNS", ".", "IN", "NNP", ",", "PRP", "VBP", "-NONE-", "TO", "VB", "DT", "NN", "IN", "NNS", "-NONE-", "DT", "NNS", "MD", "VB", "-NONE-", ".", "``", "RB", "IN", "RB", ",", "EX", "VBZ", "NN", ",", "''", "VBZ", "-NONE-", "DT", "NNP", "NN", ".", "``", "DT", "NNS", "VBP", "VBG", "NN", ".", "''", "NNP", "NNP", "VBD", "TO", "DT", "NN", ".", "IN", "NN", "-NONE-", "VBZ", "IN", "JJ", "JJ", "NNS", "IN", "DT", "NNP", ",", "NNP", "POS", "JJ", "NN", "NNS", "VBP", "RB", "VBG", "PRP$", "NN", "IN", "NNP", "POS", "JJR", "NN", ".", "IN", "NNP", ",", "DT", "JJ", "NN", "VBZ", "NN", "TO", "JJ", "NNS", "CC", "NN", ".", "CC", "IN", "JJ", "JJ", "NNS", ",", "PRP", "RB", "VBZ", "DT", "VBG", "NN", "IN", "NN", "CC", "RB", "NN", "NN", ".", "-NONE-", "VB", "DT", "NN", "IN", "NNP", "NNP", "NNP", ",", "DT", "NNP", ",", "NNP", ",", "NN", "IN", "JJ", "JJ", "NNS", ",", "WDT", "CD", "NNS", "RB", "-NONE-", "VBP", "PRP$", "NNS", "IN", "NNP", "IN", "DT", "NN", "NN", ".", "RB", "-NONE-", "TO", "VB", "-NONE-", "VB", "DT", "JJ", "NNS", "VBG", "DT", "JJ", "NN", "VBG", "-NONE-", "TO", "VB", "NNP", ",", "JJ", "NNP", "VBD", "TO", "NNP", "CC", "NNP", ",", "CD", "IN", "NNP", "POS", "JJS", "VBG", "NNS", ",", "IN", "NN", ".", "IN", "DT", "JJ", "NN", ",", "NNP", "VBD", "NNP", "IN", "NNP", "POS", "JJ", "NN", ".", "PRP", "RB", "VBD", "NNP", "IN", "NNP", "NN", "NN", "IN", "CD", "NNP", "NN", "NNS", ":", "CD", "WDT", "-NONE-", "VBZ", "RP", "NN", "NNS", "CC", "DT", "WDT", "-NONE-", "VBZ", "NN", "NNS", ".", "IN", "JJ", "NN", ",", "NNP", "VBD", "VBN", "$", "CD", "CD", "-NONE-", "IN", "PRP$", "JJ", "NNS", "IN", "NNP", ".", "DT", "NN", "RB", "VBD", "NNP", "NN", "TO", "DT", "JJ", "JJ", "NN", ".", "``", "PRP", "VBP", "DT", "IN", "DT", "NN", "NN", "IN", "PRP", "VBD", "IN", "PRP", "IN", "DT", "JJ", "NN", ",", "''", "VBZ", "-NONE-", "NNP", "NNP", ",", "DT", "NNP", "NN", "NN", ".", "RB", ",", "IN", "JJ", "JJ", "NN", "NNS", ",", "DT", "JJ", "NNP", "JJ", "NN", "VBZ", "CD", "WP$", "NN", "CC", "NN", "-NONE-", "MD", "VB", "VBN", "-NONE-", "IN", "JJ", "JJ", "NN", ".", "DT", "JJ", "NNS", "VBP", "JJ", "JJ", "NNP", "NNS", "IN", "JJ", "NNS", "CC", "NNS", ",", "-NONE-", "RB", "VBG", "PRP$", "NN", "IN", "NNS", "IN", "JJ", "NNS", "MD", "RB", "VB", "-NONE-", ".", "JJ", "NNS", "VBP", "VBN", "JJ", "CC", "JJ", "NNP", "NNS", "IN", "NNS", ",", "CC", "IN", "JJ", "NNS", ",", "DT", "NN", "VBZ", "VBN", "RP", ".", "IN", "DT", "JJ", "NN", "IN", "CD", "RB", ",", "JJ", "NNS", "VBD", "$", "CD", "CD", "-NONE-", "-NONE-", "IN", "NN", "NNS", "IN", "NNP", "NNS", ",", "DT", "CD", "NN", "NN", "IN", "DT", "NN", "IN", "DT", "IN", "CD", ",", "VBZ", "-NONE-", "-NONE-", "NNP", "NNP", "NNP", ".", "DT", "NNP", ",", "NNP", ",", "NN", "VBZ", "NNS", "IN", "JJ", "NNS", ".", "IN", "NN", ",", "IN", "NN", ",", "DT", "IN", "DT", "JJ", "NNS", "VBD", "JJ", "NN", "IN", "JJ", "NNP", "NNS", ".", "JJ", "JJ", "NN", "IN", "JJ", "JJ", "NN", "VBZ", "DT", "NN", "IN", "NNS", "VBG", "JJ", "NNS", "NN", "IN", "JJ", ",", "RB", "JJ", "NNP", "NNS", ",", "JJ", "IN", "NNP", "NNP", "NNP", "NNP", ".", "RB", "DT", "NN", ",", "PRP", "-NONE-", "VBD", "VBN", "-NONE-", "IN", "NNP", "NNP", "NNP", "VBD", "VBN", "DT", "CD", "NN", "NN", "IN", "NNP", "NNP", ",", "WDT", "-NONE-", "VBZ", "NNP", "NNP", "POS", "JJ", "NNP", "NNP", ".", "IN", "DT", "JJ", "NNS", "VBP", "RB", "RBR", "JJ", ",", "PRP", "VBP", "TO", "JJ", "NN", "IN", "DT", "NNP", "NN", ".", "IN", "DT", "NNS", "RB", "VBP", "JJ", "NN", "TO", "JJ", "NN", "CC", "NN", "NN", ",", "PRP", "VBP", "JJ", "NNS", "IN", "DT", "NN", ",", "RB", ".", "RB", "DT", "JJ", "NN", "IN", "NN", "NN", "MD", "VB", "DT", "NN", "NN", "POS", "NN", "IN", "EX", "VBZ", "DT", "JJ", "NN", ".", "NNP", "NNP", "NNP", "NNP", "IN", "NNP", ",", "NNP", ",", "DT", "JJ", "NN", "IN", "JJ", "NN", ",", "VBD", "VBG", "IN", "PRP$", "JJ", "NN", ".", "JJ", "NN", ",", "NNP", "NNP", "NNP", ",", "DT", "NNP", "NNP", "NN", "IN", "NNP", "NNP", ",", "VBD", "VBG", "NN", "IN", "DT", "NN", "NN", "IN", "DT", "JJ", "NN", "IN", "NNP", "NNP", ",", "DT", "NN", "NN", "NN", "CC", "NNP", "NN", ".", "DT", "NN", "VBZ", "RB", "VBN", "-NONE-", "-NONE-", "TO", "VB", "NNP", "DT", "NN", "IN", "DT", "NNP", "NN", "NN", ",", "VBZ", "-NONE-", "NNP", "NNP", ",", "DT", "NN", "IN", "NNP", "POS", "JJ", "NN", "NN", "IN", "NNP", "NNP", ".", "``", "PRP", "VBZ", "RB", "RB", "DT", "JJ", "NN", "IN", "DT", "JJ", "NN", ",", "''", "NNP", "NNP", "VBZ", "-NONE-", ".", "``", "PRP", "VBP", "-NONE-", "TO", "VB", "DT", "NN", "NN", "IN", "DT", "NN", ",", "RB", "DT", "NN", ".", "''", "NNS", "POS", "NN", "IN", "NNP", "NNP", "VBZ", "``", "RB", "JJ", ":", "JJR", "IN", "$", "CD", "CD", "-NONE-", ",", "''", "NNP", "NNP", "VBZ", "-NONE-", "-NONE-", ".", "NNP", "NNP", "VBZ", "-NONE-", "TO", "VB", "IN", "DT", "NN", ".", "NN", "NNS", "JJ", "IN", "NNP", ",", "NNP", ",", "NNP", "NNP", "CC", "NNP", "CC", "NNP", "NNP", ",", "WDT", "-NONE-", "VBP", "JJ", "IN", "DT", "JJ", "NNS", "IN", "JJ", "NNP", "NNS", ",", "VBP", "DT", "NNP", "NN", ".", "DT", "RB", "VBN", "NNS", ",", "DT", "IN", "WDT", "-NONE-", "VBD", "PRP$", "NN", "IN", "NNP", "POS", "JJ", "NN", ",", "VBP", "RB", "IN", "NNS", ",", "NN", "CC", "VBG", ".", "PRP", "VBP", "NNS", "CC", "NNS", ".", "``", "DT", "DT", "``", "NN", "''", "VBP", "VBG", "IN", "JJ", "NN", ",", "''", "VBZ", "-NONE-", "NNP", "NNP", ",", "NN", "TO", "DT", "NN", "IN", "NNP", ",", "NNP", ",", "-NONE-", "VBG", "DT", "NNP", "NN", "IN", "DT", "JJS", "IN", "DT", "JJ", "VBG", "NNS", ".", "VBZ", "-NONE-", "NNP", "NNP", ",", "JJ", "NN", "NN", "IN", "NNP", "NNP", "NNP", "NNP", ":", "``", "PRP", "VBP", "DT", "JJ", "NN", "IN", "-NONE-", "VBG", "NNS", ",", "RB", "IN", "JJ", "NNS", ".", "''", "DT", "NN", "IN", "NNS", "NNS", "IN", "NNP", "POS", "NNP", "NNP", "VBD", "VBN", "-NONE-", "IN", "NN", "NN", "NN", ".", "NN", ",", "IN", "JJS", "IN", "DT", "JJ", "NN", ",", "VBZ", "RB", "DT", "JJ", "NN", ".", "``", "JJ", "NNS", ",", "RB", "JJ", "NN", ",", "VBP", "JJ", "IN", "DT", "NNS", ",", "''", "VBZ", "-NONE-", "DT", "NNP", "NNP", "NN", ".", "IN", "-NONE-", "VBG", "IN", "DT", "NN", "IN", "JJ", "NNS", ",", "DT", "NN", "RB", "VBN", "-NONE-", "IN", "NN", "NNS", ",", "NN", "NNS", "MD", "VB", "IN", "DT", "NN", "IN", "NN", "NNS", "RB", "VBP", "-NONE-", "IN", "PRP$", "JJ", "JJ", "NNS", ".", "``", "PRP", "VBZ", "DT", "JJ", "NN", "IN", "DT", "JJ", "NN", ",", "''", "VBZ", "-NONE-", "NNP", "NNP", ",", "VBG", "NN", "IN", "NNP", "NNP", "NNP", "IN", "NNP", "NNP", ".", "``", "NNS", "VBP", "VBG", "IN", "DT", "NN", "-NONE-", "TO", "VB", "PRP$", "NN", "CC", "PRP", "VBZ", "RB", "VB", "DT", "VBG", "NN", "-NONE-", "-NONE-", "TO", "VB", "DT", "NN", "-NONE-", "CC", "JJ", "NNS", "VBP", "RB", "JJ", ".", "PRP", "VBP", "NNS", ",", "PRP", "VBP", "DT", "NN", "NN", ",", "WDT", "-NONE-", "VBZ", "DT", "NN", "TO", "DT", "NN", "-NONE-", "DT", "NN", "MD", "VB", "-NONE-", ".", "''", "VBZ", "-NONE-", "NNP", "POS", "NNP", "NNP", ":", "``", "IN", "NNS", "IN", "DT", "NN", ",", "NN", "NNS", "VBP", "RB", "RB", "RB", "JJ", "IN", "DT", "JJ", "NN", "IN", "NN", "IN", "PRP", "VBP", "-NONE-", "IN", "-NONE-", "VBG", "NN", "NNS", ".", "TO", "DT", "NN", "-NONE-", "PRP", "MD", "VB", "DT", "-NONE-", ",", "PRP", "VBP", "RB", "JJ", "-NONE-", "TO", "VB", "DT", "NN", "IN", "NN", "IN", "CD", "NN", "TO", "CD", "NN", "-NONE-", ".", "''", "NNP", "NNP", "VBZ", "-NONE-", "NNP", "VBZ", "CD", "NNP", "NNS", "IN", "WDT", "PRP", "VBZ", "CD", "NN", "NN", "CC", "JJR", "-NONE-", "CC", "DT", "NN", "NN", "VBZ", "-NONE-", "TO", "VB", "DT", "NN", "IN", "PRP$", "NNP", "NNS", "IN", "CD", ".", "NNS", "IN", "DT", "NNS", "IN", "DT", "JJ", "NN", "VBG", "JJ", "NNP", "VBD", "JJR", "IN", "$", "CD", "CD", "-NONE-", ".", "DT", "CD", "NN", "TO", "CD", "NN", "-NONE-", "NN", "IN", "$", "CD", "CD", "-NONE-", "``", "VBP", "RB", "NN", ",", "''", "NNP", "NNP", "VBZ", "-NONE-", "-NONE-", ".", "NNP", "NNP", "NNP", "POS", "NN", "CC", "JJ", "NN", "NN", ",", "NNP", "NNP", "NNP", ",", "VBD", ".", "NNP", "NNP", ",", "CD", "NNS", "JJ", ",", "MD", "RB", "VB", "VBN", "-NONE-", "IN", "NN", ".", "DT", "NN", "NN", "VBD", "-NONE-", "TO", "VB", "IN", "DT", "NN", ".", "NNP", "NNP", ",", "WDT", "-NONE-", "VBZ", "NN", ",", "NN", "CC", "JJ", "NNS", "TO", "NNS", "CC", "NNS", ",", "VBD", "DT", "NN", "IN", "PRP$", "RBS", "JJ", "NN", "NN", "CC", "JJ", "NN", "VBD", "DT", "JJ", "NN", "IN", "PRP$", "JJ", "NNS", ".", "NNP", "NNP", ",", "WP", "-NONE-", "VBD", "VBN", "IN", "DT", "NN", "JJR", "IN", "CD", "NNS", "CC", "VBD", "VBN", "NN", "IN", "CD", ",", "MD", "VB", "IN", "DT", "NN", "TO", "NNP", "NNP", ".", "PRP$", "NNS", "IN", "JJ", "NN", "MD", "VB", "VBN", "-NONE-", "IN", "NNP", "NNP", "NNP", "NNP", ".", "IN", "CD", "NNS", ",", "NNP", "NNP", "VBD", "TO", "PRP$", "NN", "NN", "IN", "PRP", "VBD", "JJ", ".", "-NONE-", "DT", "JJ", "NN", "IN", "NNS", "VBP", "RP", "-NONE-", ",", "PRP", "VBD", "RB", "VB", "JJ", "NN", "TO", "DT", "NNS", "-NONE-", "PRP", "VBD", "VBG", "-NONE-", ",", "CC", "TO", "DT", "NNS", "-NONE-", "PRP", "VBD", "VBG", "-NONE-", ".", "CC", "IN", "NNP", ",", "JJ", "NNP", "NNP", "NNP", "VBD", "PRP$", "NNP", "NNP", ",", "DT", "NN", "VBN", "-NONE-", "-NONE-", "TO", "VB", "NNS", "JJ", "IN", "NNP", "NNP", ".", "IN", "JJ", "NNS", ",", "PRP", "VBD", "VBG", ",", "JJ", "NN", "NN", "CC", "NN", "NN", ":", "DT", "IN", "JJ", ":", "RB", "DT", "JJ", "NN", "IN", "NN", "NNS", ".", "DT", "-NONE-", "PRP", "VBD", "-NONE-", "TO", "VB", "-NONE-", "VBD", "VB", "$", "CD", "-NONE-", "IN", "DT", "NN", "IN", "NN", ",", "CC", "VB", "IN", "DT", "$", "CD", "-NONE-", "JJ", "NN", "IN", "NN", ".", "``", "PRP", "VBP", "NN", "IN", "PRP$", "NN", ",", "''", "PRP", "VBZ", "-NONE-", ".", "PRP", "VBD", "PRP$", "NN", "TO", "NNP", "NNP", ".", "IN", "PRP", "VBZ", "IN", "DT", "JJ", "NN", "IN", "NN", "VBG", "DT", "NNS", ".", "IN", "RB", "DT", "NN", ",", "NNS", "VBP", "VBN", "IN", "NNS", "RB", "IN", "DT", "NN", "NNS", "-NONE-", "PRP", "VBP", "-NONE-", "IN", "PRP$", "NNS", "CC", "VB", "-NONE-", "IN", "PRP$", "NNS", ".", "DT", "JJ", "NNS", "VBD", "RB", "VBN", "-NONE-", "IN", "JJ", "NNS", "IN", "JJ", "NNS", ".", "CC", "JJ", "NNS", "VBP", "VBG", "RB", "IN", "JJ", "NN", "NN", ".", "RB", ",", "PRP", "VBP", "VBG", "-NONE-", "TO", "VB", "NN", "NN", "IN", "-NONE-", "VBG", "PRP$", "NNS", "IN", "NNS", "CC", "VBG", "PRP", "TO", "JJ", "NNS", "IN", "DT", "NN", ".", "``", "PRP", "VBP", "JJ", "IN", "DT", "NN", "IN", "PRP", "VBP", "RB", "VBG", "DT", "NN", ",", "''", "VBZ", "-NONE-", "NNP", "NNP", ",", "NN", "IN", "NNP", "NNP", "NNP", ",", "DT", "NN", "NN", "NN", "IN", "NNP", ".", "NNP", "NNP", "IN", "NNP", ",", "NNP", ",", "RB", "VBN", "PRP$", "NNP", "NNP", "NNP", "VBD", "-NONE-", "IN", "JJ", "NNS", "RB", "VBG", "NNS", ".", "DT", "NN", "RB", "RB", "VBZ", "DT", "JJ", "NN", "NN", "IN", "TO", "$", "CD", "-NONE-", ",", "CC", "VBZ", "RP", "DT", "JJ", "JJ", "NN", "-NONE-", "-NONE-", "TO", "VB", "IN", "-NONE-", "VBG", "NN", ".", "IN", "NNP", ",", "NNP", "NNP", "NNP", "IN", "NNP", ",", "NNP", ",", "VBD", "DT", "NNP", "NN", ",", "DT", "NN", "VBN", "-NONE-", "IN", "DT", "``", "NN", "''", "NN", "IN", "NNS", "WDT", "-NONE-", "VBP", "DT", "NN", "NN", "CC", "NN", "IN", "NN", "IN", "DT", "JJ", "NNS", ",", "CC", "DT", "JJ", "NN", "NN", "RB", "IN", "NN", "NNS", ".", "DT", "NN", ":", "JJ", "NNS", ",", "JJ", "IN", "JJ", "NNS", ",", "VBP", "IN", "PRP$", "JJ", "VBG", "NNS", ":", "JJ", ",", "-NONE-", "VBG", "VBN", "IN", "DT", "NN", ",", "PRP", "MD", "VB", "-NONE-", "TO", "VB", "PRP", "IN", "JJ", "NNS", "IN", "JJ", "NNS", ".", "IN", "DT", "NN", ",", "NNS", "VBP", "VBN", "VBG", "NNS", "IN", "DT", "JJ", ",", "DT", "JJ", "NN", "IN", "DT", "JJS", "NNS", ".", "DT", "NNS", "VBP", "VBG", "VBD", "RP", "-NONE-", ".", "NNP", "NNP", ",", "NN", "NN", "IN", "JJ", "NNS", "IN", "NNP", "NNP", "NNP", "IN", "NNP", ",", "NNP", ",", "VBZ", "-NONE-", "DT", "NN", "RB", "VBZ", "NNS", "IN", "DT", "NN", "IN", "-NONE-", "VBG", "PRP$", "JJ", "NNP", "NNP", "NNP", "TO", "JJ", "NN", "NNS", ".", "``", "JJ", "NN", ",", "NN", "CC", "NN", "NNS", "VBP", "JJ", "NNS", ",", "''", "NNP", "NNP", "VBZ", "-NONE-", ".", "PRP", "VBZ", "-NONE-", "JJ", "NNP", "NNS", "MD", "VB", "JJ", "NNS", "-NONE-", "TO", "PRP$", "NNP", "NNP", "NN", ":", "JJ", "IN", "JJ", "NNS", "CC", "NN", "NNS", ":", "-NONE-", "JJ", "NN", "TO", "JJ", "NN", "NNS", ".", "``", "DT", "JJ", "NN", "IN", "NNP", "NNP", "MD", "VB", "RBR", "IN", "NNP", "NNP", "NNS", ",", "IN", "DT", "CD", "IN", "NNP", "NNP", "MD", "VB", "RBR", "IN", "DT", "NN", "IN", "NN", ",", "''", "PRP", "VBZ", "-NONE-", ".", "NNS", "VBP", "VBN", "VBG", "RB", ".", "IN", "CD", ",", "NNP", "NNP", "CC", "NNP", "IN", "NNP", "NNP", "VBD", "DT", "NNP", "NNP", ",", "WDT", "-NONE-", "VBD", "JJ", "NN", ",", "DT", "NN", "NN", ",", "JJ", "NN", "CC", "NNS", "NNS", "IN", "DT", "$", "CD", "-NONE-", "JJ", "NN", ".", "DT", "NN", "VBD", "DT", "NN", "IN", "NNS", ",", "CC", "DT", "NNS", "VBD", "-NONE-", "VBG", "DT", "NNS", ".", "CD", "JJ", "NN", ":", "JJ", "NNS", ".", "JJ", "NNS", ",", "RB", "JJR", "NNS", ",", "VBD", "JJ", "-NONE-", "TO", "VB", "CC", "MD", "RB", "VB", "NN", "NNS", "WDT", "-NONE-", "MD", "VB", "VBN", "DT", "NNS", "RBR", "JJ", ".", "IN", "NNS", "POS", "NNS", "VBD", "VBN", "-NONE-", "IN", "DT", "CD", ",", "DT", "NN", "VBN", "TO", "-NONE-", "VBG", "NNS", "-NONE-", "-NONE-", "TO", "VB", "NNS", "-NONE-", ".", "CC", "RB", "NNS", "VBP", "VBG", "JJR", "NNS", "TO", "VB", "PRP$", "NNS", "IN", "NN", ",", "NN", "CC", "NN", ".", "PRP", "VBP", "RBR", "JJ", "-NONE-", "TO", "VB", "TO", "DT", "NNS", "IN", "DT", "NN", "IN", "DT", "NN", "WDT", "-NONE-", "VBD", "IN", "DT", "JJ", "CD", ".", "NN", "VBZ", "RB", "VBN", "DT", "NNS", "IN", "WP", "NNS", "MD", "VB", "-NONE-", "IN", "NNS", ",", "RB", "RB", "IN", "VBN", "RP", "DT", "NN", "IN", "JJ", "NNS", "JJ", "IN", "JJ", "NNS", ".", "WRB", "DT", "NN", "RB", "VBD", "DT", "JJ", "NN", "NNS", "NN", "-NONE-", ",", "PRP", "VBD", "-NONE-", "VBG", "JJ", "NNS", ",", "NNS", "IN", "NN", "CC", "JJ", "NN", ",", "CC", "JJ", "NNS", "VBN", "IN", "DT", "NN", "IN", "NNS", ".", "DT", "NN", "VBZ", "VBN", "RBR", "JJ", "IN", "JJR", "NNS", "JJ", "IN", "NNP", "NNP", "IN", "NNP", "CC", "NNP", "NNP", "NNP", "IN", "NNP", "NNP", "VBP", "PRP$", "JJ", "NNS", "IN", "JJ", "NNS", "IN", "DT", "NN", ".", "``", "NN", ",", "DT", "NN", "VBZ", "VBG", "IN", "JJ", ",", "JJ", "CC", "JJ", "-LRB-", "NNS", "-RRB-", ",", "RB", "RB", "IN", "NNS", "CC", "NN", "NNS", ",", "''", "VBZ", "-NONE-", "NNP", "NNP", "IN", "NNP", "NNP", ".", "``", "IN", "NNS", "WP", "-NONE-", "VBD", "RB", "RB", "VBG", "IN", "VBG", "CD", "NNS", "RB", "VBP", "VBG", "-NONE-", "TO", "VB", "PRP$", "NN", "NN", ".", "''", "DT", "NN", "VBZ", "VBN", "DT", "RB", "JJR", "NN", ".", "``", "DT", "JJ", "NN", "MD", "VB", "CD", "NNS", "IN", "DT", "NN", "JJ", "NNS", ",", "''", "VBZ", "-NONE-", "NNP", "NNP", "NNP", ",", "WP", "-NONE-", "VBZ", "PRP$", "JJ", "NN", "NN", "NN", "IN", "NNP", ",", "NNP", ".", "``", "DT", "JJ", "NN", "VBZ", "-NONE-", "VBG", "CC", "VBG", "NN", "POS", "JJ", "NNS", "JJ", ".", "''", "NNS", "VBP", "NN", "IN", "-NONE-", "VBG", "NNS", "IN", "-NONE-", "VBG", "DT", "NN", "IN", "PRP$", "NN", "IN", "CD", "NN", ".", "IN", "PRP$", "NNS", ",", "DT", "NNS", "VBP", "DT", "JJR", "NN", "NN", "WDT", "-NONE-", "VBZ", "RBR", "JJ", "-NONE-", "TO", "VB", "IN", "DT", "NN", "IN", "DT", "NN", ".", "DT", "JJR", "NNS", "-NONE-", "NNS", "VBP", "-NONE-", ",", "NNP", "NNP", "VBZ", "-NONE-", "-NONE-", ",", "DT", "RBR", "JJ", "PRP", "VBP", "-NONE-", "TO", "VB", "VBN", "-NONE-", "TO", "DT", "NN", ":", "NN", "-NONE-", "TO", "VB", "JJ", "TO", "DT", "NN", "WDT", "-NONE-", "VBZ", "PRP", ".", "DT", "MD", "VB", "RP", "IN", "DT", "NN", "IN", "NNS", ",", "RB", "DT", "JJR", "NNS", ",", "VBP", "IN", "NNS", "TO", "NNS", ".", "NN", "VBZ", "DT", "NNS", ".", "DT", "JJ", "NN", ",", "NNS", "NN", "CC", "JJ", "NN", "MD", "VB", "JJ", ".", "NNP", "NNP", "VBD", "JJR", "IN", "$", "CD", "CD", "-NONE-", "-NONE-", "TO", "VB", "PRP$", "NNP", "NN", ",", "JJ", "NNS", "VBN", "-NONE-", "IN", "JJ", "NNS", ",", "IN", "CD", ",", "VBG", "TO", "NNP", "NNP", ",", "JJ", "NN", "NN", "IN", "NN", ".", "``", "PRP", "-NONE-", "VBZ", "RB", "JJ", "-NONE-", "TO", "VB", "RP", "NN", "RB", "JJ", ",", "CC", "VB", "PRP", "VB", ",", "''", "NNP", "NNP", "VBZ", "-NONE-", ".", "RB", ",", "NNS", "VBP", "NN", "TO", "VB", ",", "RB", "IN", "JJR", "NNS", "VBP", "VBG", "IN", "JJ", "NNS", "VB", "VBN", "-NONE-", "TO", "PRP$", "NNS", ".", "``", "DT", "NNS", ",", "NN", "NNS", "VBP", "IN", "DT", "NN", "-NONE-", "VBG", "PRP", "TO", "VB", "DT", "NN", "RB", "IN", "PRP", ",", "''", "NNP", "NNP", "VBZ", "-NONE-", ".", "DT", "NNS", "VBP", "RB", "VBG", "IN", "DT", "NN", ",", "VBG", "TO", "NNP", "NNP", "NNP", ",", "NN", "NN", "IN", "NNP", "NNP", "NNP", "IN", "NNP", ".", "NNP", "NNP", ",", "PRP", "VBZ", "-NONE-", "-NONE-", ",", "RB", "VBZ", "NNS", "IN", "CD", "NN", "NNS", ".", "RB", ",", "PRP", "MD", "VB", "DT", "IN", "CD", ".", "VBZ", "-NONE-", "NNP", "NNP", ":", "``", "PRP", "VBP", "-NONE-", "JJR", "NNS", "VBP", "VBG", "-NONE-", "TO", "VB", "IN", "PRP", "VBP", "-NONE-", "TO", "VB", "JJR", "IN", "DT", "NN", "NN", ",", "RB", "DT", "NN", ".", "''", "NNS", ".", "NNP", "NNP", "VBD", "-NONE-", "PRP", "MD", "VB", "DT", "NN", "NN", "VBN", "-NONE-", "IN", "DT", "NNP", "CC", "NNP", "NNP", "-NONE-", "TO", "VB", "DT", "NN", "-NONE-", "TO", "VB", "CD", "RB", "VBN", "JJ", "NNS", ".", "DT", "NNP", ",", "NNP", ",", "NN", "VBD", "-NONE-", "PRP", "MD", "VB", "DT", "NN", "-NONE-", "-NONE-", "TO", "VB", "RB", "DT", "CD", "CD", "NNS", ",", "DT", "JJ", "IN", "DT", "NN", "IN", "CD", "JJ", "NN", ".", "NNP", ",", "NNP", "VBZ", "RB", "CD", "CD", "JJ", "NNS", "JJ", ".", "NNP", "VBZ", "CC", "VBZ", "JJ", "NN", ",", "JJ", "NN", "CC", "NNS", "IN", "NNS", ".", "CD", "NNS", "-NONE-", "PRP", "MD", "VB", "-NONE-", "IN", "$", "CD", "-NONE-", "CC", "JJR", ":", "LS", ".", "-NONE-", "VB", "DT", "JJ", "NNP", ".", "LS", ".", "-NONE-", "VB", "DT", "JJ", "NN", ".", "LS", ".", "-NONE-", "VB", "PRP$", "NN", "TO", "DT", "NN", ".", "LS", ".", "-NONE-", "VB", "DT", "NN", "NN", ".", "LS", ".", "-NONE-", "VB", "DT", "JJ", "NN", "IN", "DT", "JJ", "NN", "IN", "DT", "JJ", "JJ", "NN", "IN", "DT", "NNP", "NNP", "NNP", "NNP", ".", "NNS", "NN", "VBP", "$", "CD", "-NONE-", "IN", "NN", "NN", ":", "PRP", "VBP", "RB", "VB", "JJ", "IN", "PRP", ".", "CC", "IN", "DT", "VBG", "JJ", "NN", ":", "VBG", "IN", "NN", ":", "PRP", "MD", "VB", "TO", "NN", "IN", "JJ", "NN", "CC", "TO", "DT", "NN", "JJ", "IN", "NN", ".", "PRP$", "$", "CD", "-NONE-", "MD", "VB", "-NONE-", "VB", "DT", "JJ", "NNS", "CC", "NN", "JJ", ":", "CC", "IN", "IN", "DT", "JJ", "NN", "NN", ".", "IN", "DT", "NNP", "NNP", "NNP", ",", "PRP", "MD", "VB", "VBG", "DT", "NN", "NN", "IN", "NNS", "JJ", "TO", "PRP$", "NN", ".", "IN", "JJ", "JJ", "NN", ".", "DT", "JJ", "NN", "NN", ".", "VBG", "NNS", ".", "IN", "DT", "JJ", "NN", ",", "PRP", "MD", "VB", "PRP$", "NNP", "NNP", "NNP", "DT", "NN", "IN", "NN", "CC", "NN", "IN", "DT", "JJ", "NNS", "WP", "-NONE-", "VBP", "-NONE-", "TO", "VB", "PRP$", "NNS", ":", "IN", "NN", ".", "IN", "DT", "NNP", "NNP", "NNP", ",", "PRP", "MD", "VB", "DT", "JJ", "NN", "VBD", "-NONE-", "IN", "NNP", "NNP", ",", "NNP", "NNP", ",", "NNP", "NNP", "CC", "NNS", ",", "WP", "-NONE-", "VBP", "NNS", "-NONE-", "-NONE-", "TO", "VB", "VBN", "NNS", "NNS", "CC", "PRP$", "NNS", "VB", "PRP", "-NONE-", ".", "DT", "VBZ", "NN", ",", "NN", "NN", ",", "RB", "TO", "VB", "JJ", "JJ", "NN", "NN", ".", "-NONE-", "VBP", "RB", "VB", ":", "DT", "NNS", "NN", "VBZ", "PRP$", "NN", "RB", ".", "DT", "NN", "-NONE-", "PRP", "VBP", "-NONE-", ",", "DT", "NN", "NN", "POS", "NN", ":", "CC", "DT", "JJ", "NN", "NN", ":", "VBZ", "JJR", ".", "-NONE-", "VB", "IN", "DT", "NN", "-NONE-", "PRP", "MD", "VB", "-NONE-", "IN", "RB", "$", "CD", "-NONE-", "DT", "NN", ",", "RB", "DT", "NN", "IN", "DT", "JJ", "NNP", "CC", "CD", "NNS", "IN", "DT", "NN", "NN", ".", "RB", "-NONE-", "VB", "PRP$", "NN", "TO", "DT", "NN", "NN", "WDT", "-NONE-", "VBZ", "VBN", "DT", "JJ", "NN", "IN", "DT", "NN", "CC", "IN", "PRP$", "JJ", "NN", ".", "DT", "$", "CD", "-NONE-", "-NONE-", "PRP", "VBP", "-NONE-", "MD", "VB", "DT", "JJ", "NN", "-NONE-", "TO", "VB", "VBG", "JJ", "NN", "CC", "NN", "NN", ":", "CC", "VB", "PRP$", "NNP", "NNP", "NNP", "IN", "DT", "JJ", "NN", "NN", ".", "NNP", "NNP", "VBZ", "DT", "NN", "IN", "NNP", "NNP", ".", "DT", "NNP", "NNP", "NNP", "VBD", "-NONE-", "PRP", "VBZ", "-NONE-", "TO", "VB", "DT", "JJ", "``", "NN", "NN", "''", "VBN", "-NONE-", "IN", "-NONE-", "VBG", "NN", "NNS", ".", "NNP", ",", "NNP", "NNP", "VBD", "DT", "VBN", "NNP", "NN", "NN", "IN", "NNP", "IN", "PRP", "MD", "VB", "NNP", "CC", "NNP", "NNP", "NNS", "IN", "NN", "NN", "IN", "NN", "NNS", ".", "CC", "DT", "NNP", "NNP", "NNP", "NNP", "NN", "VBD", "-NONE-", "PRP", "VBZ", "RB", "VB", "-NONE-", "VBG", "DT", "``", "NN", "''", "IN", "NN", "NN", ",", "-NONE-", "VBG", "IN", "NNS", "MD", "VB", "IN", "JJ", "DT", "NN", ".", "DT", "NNP", "NNP", "VBD", "-NONE-", "DT", "JJ", "JJ", "NN", "NN", "MD", "VB", "NN", "IN", "PRP$", "NNP", "CC", "NNP", "POS", "CD", "NN", "NNS", "NN", "RB", "NNP", "CD", "NNS", "VBD", "CD", "NN", "NNS", ":", "DT", "NN", "IN", "RB", "DT", "JJ", "NN", "IN", "DT", "NNP", "NNP", "NNP", "NNP", ".", "IN", "DT", "JJ", "NN", "VBZ", "VBN", "-NONE-", "IN", "CD", "RB", ".", "NNP", "NN", ",", "PRP", "MD", "VB", "IN", "NN", "IN", "DT", "JJ", "NN", "IN", "VBG", "IN", "CD", "RB", ".", "IN", "DT", "NN", "IN", "NN", ",", "NNS", "MD", "VB", "JJ", "-NONE-", "TO", "VB", "NNS", "IN", "DT", "NN", "NN", "CC", "IN", "JJR", "NNS", ",", "CC", "RB", "IN", "PRP", ".", "DT", "NN", "VBD", "-NONE-", "PRP", "VBD", "-NONE-", "DT", "JJ", "NN", "NN", "VBD", "VBN", "-NONE-", "VBG", "DT", "NN", "IN", "DT", "JJ", "VBG", "IN", "NNS", "CC", "JJ", "NNS", "IN", "NNP", "NNP", "CD", ",", "WRB", "DT", "NNP", "NNP", "NNS", "VBD", "CD", "NNS", "-NONE-", "CC", "JJ", "NNS", "NNS", "VBD", "RB", "RB", "-NONE-", ".", "RB", "DT", "NN", "DT", "NNP", "CD", "JJ", "NNS", "NN", "VBD", "DT", "NN", "IN", "CD", "NN", "NNS", ",", "-NONE-", "VBG", "DT", "NNP", "NN", "NN", "NN", "WDT", "-NONE-", "VBD", "IN", "NN", "IN", "DT", "NN", "IN", "DT", "NN", "NN", ".", "DT", "NNP", "VBD", "IN", "PRP$", "VBG", "JJ", ",", "JJ", "NN", "IN", "NNP", "CD", "JJ", "NNS", "NN", "-LRB-", "JJ", "TO", "RB", "CD", "NNS", "IN", "DT", "NNP", "NNP", "NNS", "-RRB-", ",", "WDT", "-NONE-", "VBD", "VBN", "-NONE-", "NNP", "CD", ",", "MD", "VB", "IN", "NN", ".", "NNP", "NNP", ",", "NNP", "NN", "NN", "NN", ",", "VBD", "IN", "DT", "JJ", "NN", "VBD", "-NONE-", "TO", "VB", "DT", "NN", "NN", "NNP", "CD", ".", "CC", "WRB", "DT", "NN", "VBD", "-NONE-", ",", "DT", "JJ", "NN", "IN", "NN", "NNS", "WDT", "-NONE-", "RB", "VBD", "DT", "NN", "RP", "TO", "DT", "JJ", "NN", "VBD", "IN", "DT", "JJ", "NN", "IN", "CD", "NNS", "VBD", "VBN", "-NONE-", "-NONE-", "TO", "VB", "VB", "NN", "CC", "JJ", "NNS", "NNS", "VBN", ".", "JJ", "NNS", "VBD", "IN", "DT", "NNP", "POS", "JJ", "NN", "VBD", "DT", "NN", "NN", "NNP", "CD", "IN", "-NONE-", "VBG", "JJ", "VBG", "NN", "TO", "DT", "NN", "IN", "DT", "NNP", "NNP", "NNP", "NNP", ".", "DT", "IN", "DT", "NNS", "VBP", "JJ", "NN", ",", "WDT", "-NONE-", "VBZ", "VBN", "-NONE-", "RB", ".", "DT", "NN", "RB", "VBD", "IN", "DT", "JJ", "NN", "NN", ",", "WDT", "-NONE-", "RB", "VBZ", "RB", "DT", "JJ", "NN", "IN", "NN", "NNS", ",", "MD", "VB", "DT", "NN", "JJ", "NN", "IN", "DT", "NNP", "CD", "JJ", "NNS", "NN", ":", "DT", "JJ", "NN", "RB", "VBZ", "CD", "NN", "NNS", ".", "DT", "JJ", "NN", "-NONE-", "VBD", "VBN", "-NONE-", "TO", "DT", "JJ", "VBG", "NN", "IN", "DT", "NN", ".", "DT", "NNP", "VBD", "-NONE-", "DT", "JJ", "NN", "MD", "VB", "IN", "NN", "IN", "DT", "JJ", "CD", "NNS", "IN", "NN", ".", "DT", "NN", "VBZ", "IN", "JJ", "NN", "NNS", "IN", "NNS", "VBP", "IN", "DT", "NN", "NN", "IN", "DT", "VBG", "CD", "NNS", "IN", "NN", ".", "IN", "NNP", ",", "NNP", "NNS", "VBD", "-NONE-", "NNP", "NNP", "VBD", "NNS", "IN", "DT", "NN", ",", "WDT", "-NONE-", "VBD", "NN", "NNS", "IN", "DT", "NNP", "NNP", "POS", "NN", "WRB", "DT", "NNP", "NNP", "NNP", "NNP", "VBD", "CD", "NNS", "-NONE-", ",", "VBD", "RB", "VB", "RB", ".", "PRP", "VBD", "IN", "NNS", "MD", "VB", "IN", "DT", "NN", "IN", "-NONE-", "VBG", "NNS", "RB", ".", "IN", "DT", "JJ", "NN", "NN", ",", "NNP", "NNP", ",", "WP", "-NONE-", "VBZ", "RB", "VBN", "NN", "IN", "NN", "NN", ",", "VBD", "-NONE-", "PRP", "VBD", "DT", "NNP", "NN", "CC", "NNS", "NN", "IN", "PRP", "MD", "VB", "DT", "JJ", "NN", "NN", "``", "-NONE-", "VBG", "-NONE-", "DT", "NNP", "MD", "VB", "JJ", "IN", "DT", "NN", "''", "IN", "DT", "NN", ".", "DT", "JJ", "NN", "VBZ", "VBG", "RP", "IN", "NNP", "NNP", "IN", "PRP", "VBZ", "-NONE-", "IN", "NNP", "NNP", ",", "CC", "JJ", "NNS", "VB", "-NONE-", "TO", "VB", "DT", "NNP", "DT", "NN", "-NONE-", "TO", "VB", "RP", "DT", "NNS", "WRB", "VBG", "VBZ", "RB", "JJ", "-NONE-", ".", "NNP", "NNP", "NNP", "NNP", "VBZ", "VBD", "-NONE-", "PRP", "MD", "VB", "JJ", "-NONE-", "TO", "VB", "NN", "NNS", "WDT", "-NONE-", "VBP", "JJ", "NN", "NNS", ",", "CC", "PRP", "VBZ", "RB", "VB", "JJ", "NN", "-NONE-", "TO", "VB", "NNS", ".", "DT", "NNP", "NN", "VBD", "IN", "NNP", "NNP", "VBD", "RB", "``", "JJ", "CC", "JJ", "''", "IN", "PRP", "VBD", "DT", "NN", "IN", "NN", "WRB", "NNS", "IN", "DT", "NNS", "MD", "``", "VB", "RB", "-NONE-", "VBG", "JJ", "-NONE-", ".", "''", "IN", "CD", "NN", ",", "NNP", "NNP", "VBD", "DT", "NN", "POS", "NN", ",", "NNP", "NNP", "NNP", "-LRB-", "NNP", ",", "NNP", "-RRB-", ",", "IN", "-NONE-", "RB", "VBG", "RB", "IN", "WP", "-NONE-", "RB", "VBD", "VBN", "VBN", "-NONE-", "IN", "DT", "NN", "NNS", ".", "``", "NNP", "VBD", "-NONE-", "PRP", "MD", "VB", "VBN", "DT", "IN", "NN", "''", "IN", "RB", "RB", "JJ", "NN", "VBD", "VBN", "-NONE-", ",", "DT", "NN", "VBD", "-NONE-", "-NONE-", ".", "NNP", "NNP", "RB", "VBD", "IN", "PRP", "MD", "VB", "VBN", "JJ", "-NONE-", "RB", "VBG", "DT", "NN", "TO", "DT", "NN", ",", "DT", "NN", "VBD", "-NONE-", "-NONE-", ".", "IN", "DT", "NN", "IN", "DT", "NN", ",", "NNP", "NNP", "VBD", "NNP", "NNP", "WP", "-NONE-", "MD", "VB", "VBN", "-NONE-", "IN", "DT", "NNP", "NNP", "NN", "NN", "NN", "NN", ".", "NNP", "NNP", "VBD", "-NONE-", "DT", "NNP", "NNP", "VBZ", "JJ", "-NONE-", "TO", "VB", "DT", "JJ", "NN", ".", "DT", "NN", "VBD", "NNP", "NNP", ",", "NNP", "NNS", "VBD", "-NONE-", "-NONE-", ",", "CC", "DT", "NN", "VBD", "RP", "IN", "EX", "VBD", "VBN", "JJ", "NNS", "IN", "DT", "NN", "CC", "IN", "PRP", "VBD", "NN", "IN", "NN", "IN", "DT", "NN", ".", "CD", "IN", "DT", "CD", "NN", "NNS", "-NONE-", "VBD", "DT", "NN", ",", "RBS", "RB", "NNP", "NNP", "NNP", "-LRB-", "NNP", ",", "NNP", "-RRB-", ",", "DT", "JJ", "NNP", "NNP", "CC", "NNP", "NNP", "NN", ",", "WP", "-NONE-", "VBZ", "VBN", "JJ", "-NONE-", "TO", "VB", "NNP", "NNP", "VB", "DT", "NN", "IN", "JJ", "NNS", ".", "NNP", "NNP", "VBD", "NN", ",", "NNS", "VBD", "-NONE-", "-NONE-", ",", "IN", "JJ", "NNS", "IN", "-NONE-", "VBG", "NN", "NN", ",", "WDT", "-NONE-", "VBZ", "NNS", "-NONE-", "TO", "VB", "NN", "NNS", ".", "DT", "NNS", "NN", "VBZ", "VBN", "-NONE-", "IN", "DT", "NNP", "NNP", "NNP", "NNP", ",", "WDT", "-NONE-", "VBZ", "TO", "DT", "NNP", "NNS", "IN", "DT", "NNS", ".", "DT", "NN", "IN", "NN", "VBZ", "JJ", "TO", "DT", "NNS", ",", "CC", ",", "IN", "JJS", "JJ", "NNS", ",", "JJ", "TO", "DT", "NN", "IN", "DT", "NN", ".", ":", "NNP", "NNP", "NNP", ",", "``", "DT", "CD", "NNP", "''", "NNP", ",", "NNP", ":", "IN", "DT", "NNS", "WDT", "-NONE-", "VBP", "JJ", "NNP", ",", "DT", "VBZ", "CD", "IN", "DT", "JJS", "-NONE-", ":", "DT", "JJ", "NN", "NN", "VBZ", "IN", "DT", "NNS", ",", "DT", "NN", "IN", "NNS", "VBG", "IN", "PRP$", "NN", ",", "-NONE-", "VBG", "DT", "NN", "TO", "NN", ".", "DT", "NNS", "IN", "NNP", "NNP", "CC", "DT", "NNPS", "VBP", "-NONE-", "TO", "VB", "IN", "DT", "NN", "NN", ",", "IN", "NNS", "RB", "RB", "VBP", "-NONE-", ".", "IN", "DT", "NN", ",", "CD", "NNS", "CC", "NNS", "VBP", "RB", "IN", "NNS", "VBN", "-NONE-", "TO", "DT", "JJ", "CD", "NNS", "WDT", "-NONE-", "RB", "VBD", "RB", "IN", "CD", ".", "CC", "EX", "VBZ", "RB", "DT", "JJ", ",", "JJ", "NN", "IN", "NNP", ",", "IN", "PRP", "MD", "RB", "VB", "VBN", "-NONE-", "IN", "DT", "NNS", "VBG", "DT", "NN", "IN", "NNS", "DT", "JJ", "NN", "NN", ".", "IN", "JJS", "IN", "DT", "JJ", "CD", "NNS", "IN", "NNP", "IN", "NNS", "IN", "NNS", ",", "NNP", "NNP", "RB", "VBD", "PRP$", "JJ", "``", "NN", "''", "IN", "NNS", ",", "WP", "-NONE-", "MD", "VB", "DT", "NNP", "NN", "CC", "NN", "NN", ".", "RB", ",", "RB", "CD", "JJ", "NN", "-NONE-", "VBZ", ":", "JJ", "NNP", "NNP", ".", "DT", "NNS", "RB", "NN", "VBP", "RB", ".", "PRP", "VBP", "TO", "DT", "NN", "IN", "CD", "NNS", ":", "VBG", "CD", "NNS", "CC", "CD", "NNS", "IN", "NN", ":", "WP", "-NONE-", "VBP", "DT", "NNP", "IN", "NN", "TO", "NN", "IN", "DT", "JJ", "NN", "-NONE-", "TO", "VB", "DT", "NNS", "VBG", "IN", "DT", "JJ", "NNS", "IN", "NNP", "NNP", ".", "``", "-NONE-", "TO", "VB", "IN", "RB", "CD", "NN", "IN", "DT", "NN", ",", "PRP", "VBP", "-NONE-", "TO", "VB", ",", "''", "VBZ", "-NONE-", "NNP", "NNP", ",", "DT", "VBN", "NN", "NN", ".", "``", "PRP", "VBP", "VBD", "-NONE-", "TO", "VB", "DT", "NNS", ",", "CC", "PRP", "VBP", "PRP$", "NNS", "CC", "PRP$", "NNS", ",", "CC", "PRP", "RB", "VBP", "RB", ".", "''", "NNP", "NNP", "VBZ", "IN", "JJ", "NN", "CC", "DT", "NN", "IN", "NN", "MD", "VB", "DT", "NNS", "IN", "DT", "JJ", "JJ", "NN", "WDT", "-NONE-", "VBZ", "DT", "NNP", "NNS", "VBG", ".", "NN", ",", "IN", "DT", ",", "VBZ", "RB", "IN", "PRP$", "NN", ".", "VBG", "TO", "DT", "JJ", "NN", "VBN", "-NONE-", "DT", "NN", "RB", ",", "RB", "DT", "JJ", "IN", "NNP", "POS", "NN", "NNS", "VBP", "RB", "RBR", "VBN", "-NONE-", "IN", "NNS", "IN", "EX", "VBZ", "DT", "CD", "-NONE-", "-NONE-", "TO", "VB", "PRP", ".", "PRP", "-NONE-", "VBZ", "JJ", "-NONE-", "TO", "VB", "WRB", "DT", "JJ", "NN", "VBZ", "IN", "DT", "NNS", "-NONE-", ".", "DT", "RBR", "JJ", "NN", "IN", "-NONE-", "VBG", "NNS", "IN", "NNS", ",", "IN", "VB", "-NONE-", "DT", "NNS", "IN", "JJ", "NNP", ",", "VBZ", "VBN", "IN", "DT", "NNP", "-NONE-", "TO", "VB", "JJ", ",", "JJ", "RB", "IN", "NNS", ".", "NN", ",", "DT", "JJ", "NN", "-NONE-", "DT", "NNP", "VBD", "-NONE-", "CD", "NNS", "RB", ",", "VBZ", "JJ", "NN", ":", "DT", "NNS", "VBP", "JJR", "IN", "DT", "NN", ":", "VBN", "-NONE-", "IN", "JJ", "JJ", "NN", ".", "JJ", "JJ", "NNS", "VBP", "VBN", "-NONE-", "RP", "IN", "``", "NNS", ",", "''", "IN", "DT", "JJ", "NN", "TO", "DT", "JJS", ":", "DT", "JJ", "VBG", "NN", "VBG", ",", "IN", "JJR", "NNS", ",", "RB", "JJ", "IN", "CD", "NNS", ".", "RB", ",", "IN", "DT", "NN", ",", "DT", "NNS", "VBP", "-NONE-", "VBG", "DT", "NN", "IN", "WDT", "DT", "NNS", "VBP", "-NONE-", "IN", "-NONE-", "VBG", "DT", "JJ", "NN", "IN", "DT", "JJ", ".", "DT", "NN", ",", "CC", "NN", ",", "MD", "VB", "RB", "RB", ",", "DT", "NNS", "VBP", "-NONE-", "-NONE-", ".", "NNS", "VBP", "NNS", "IN", "NNS", ",", "VBN", "-NONE-", "IN", "``", "NNS", ",", "''", "WDT", "-NONE-", "VBP", "JJ", "NNS", "IN", "NNP", "NNP", "NNP", "NNP", "CC", "NNP", "NNP", ".", "DT", "NN", "IN", "CD", "CC", "RB", "NNS", "VBZ", "DT", "``", "NN", "''", "CC", "VBZ", "RB", "CD", "NNS", ".", "DT", "NN", "IN", "DT", "NNP", "NN", "NN", "IN", "NNP", "NNP", "NNP", "NN", "IN", "DT", "NNP", "NN", "IN", "NNP", "VBZ", "DT", "NN", "IN", "DT", "NN", "VBN", "-NONE-", ".", "CD", "JJ", "NNS", "VBP", "IN", "DT", "NN", ",", "CD", "NN", "RB", "IN", "DT", "JJ", "IN", "DT", "NN", "POS", "NN", ",", "DT", "VBG", "DT", "NN", "WDT", "-NONE-", "VBZ", "IN", "DT", "JJ", "NN", "IN", "DT", "JJ", "NN", "IN", "DT", "NN", "NN", ".", "DT", "PRP", "VBZ", ",", "CC", "DT", "VBG", "IN", "DT", "NNS", "VBZ", "-NONE-", "TO", "VB", "IN", "JJ", "NN", "IN", "DT", "NNS", "PRP", "-NONE-", ",", "-NONE-", "VBN", "-NONE-", "IN", "DT", "NN", ".", "-NONE-", "RB", "VBN", ",", "DT", "NNS", "VBP", "RB", "RB", ",", "-NONE-", "VBG", "JJ", "NN", "-LRB-", "PRP", "VBP", "PRP", "``", "NN", "''", "-RRB-", "-NONE-", "TO", "VB", "DT", "JJ", "NNS", "CC", "RB", "VB", "PRP$", "NNS", ".", "RB", "RB", "IN", "DT", "NN", ",", "DT", "JJ", "NN", "NNS", ",", "VBN", "-NONE-", "IN", "NNS", ",", "VBP", "RB", "IN", "DT", "JJ", "CD", "NNS", ",", "-NONE-", "VBG", "CC", "VBG", ",", "RB", ",", "IN", "DT", "JJ", ",", "CC", "JJ", "NN", ".", "JJ", "NNS", "VBP", "PRP$", "NNS", "-NONE-", "TO", "VB", "CC", "VB", "DT", "JJ", "NN", ",", "RB", "IN", "CD", "NN", "MD", "VB", "NNS", "IN", "DT", "IN", "DT", "JJ", "NN", ".", "IN", "DT", "JJ", "NN", "VBG", "NN", "NNS", ",", "JJ", "NN", "NNP", "NNP", "NNP", "VBD", "VBG", "IN", "DT", "``", "NN", "-LRB-", "DT", "-RRB-", "-NONE-", "VBZ", "PRP$", "NN", "IN", "JJ", "NN", "CC", "JJ", "NN", ".", "''", "NNS", ",", "PRP", "VBD", "-NONE-", "-NONE-", ",", "VBP", "``", "VBN", "-NONE-", "IN", "DT", "JJ", "NN", "WDT", "-NONE-", "VBZ", "IN", "JJ", "NN", "RB", "VBN", "-NONE-", ".", "''", "``", "NN", "VBZ", "VB", "DT", "NN", "IN", "DT", "NN", ",", "''", "VBZ", "-NONE-", "NNP", "NNP", ",", "NN", "IN", "DT", "NN", "IN", "NNP", "NNP", "NNP", "CC", "CD", "IN", "NNP", "POS", "JJS", "NN", "NNS", ".", "PRP", "VBZ", "DT", "NN", "WDT", "-NONE-", "RB", "VBZ", "IN", "DT", "NN", ",", "RB", ".", "RBR", "RB", "IN", "RB", ",", "NNS", "VBP", "IN", "DT", "NN", "IN", "NN", "VBD", "-NONE-", "IN", "DT", "NN", "IN", "DT", "NN", ".", "WRB", "PRP$", "NNS", "VBP", "VBN", "-NONE-", "-NONE-", ",", "CC", "IN", "PRP", "VBP", "VBN", "RP", "DT", "NN", ",", "NNS", "RB", "VBP", "RP", "TO", "DT", "JJ", "NN", ",", "-NONE-", "VBG", "NN", "IN", "NNS", "RB", ".", "DT", "VBZ", "RB", "VB", "RB", "IN", "DT", "NNS", ".", "IN", "NN", "IN", "DT", "NNP", "IN", "NNP", "RB", "VBG", ",", "JJ", "NNS", "VBP", "VBG", "RB", "JJ", "CC", "RB", "JJ", "NNS", "TO", "VB", "NNS", ".", "CD", "NNS", "RB", ",", "DT", "NNP", "NNP", "NNP", ",", "NN", "IN", "NNP", "NNP", ",", "NNP", ",", "VBD", "RB", "VBN", "RP", "IN", "NNS", "WP", "-NONE-", "VBD", "RB", "VB", "NN", "-NONE-", "PRP", "VBD", "DT", "JJ", "NN", ":", "DT", "NNS", "RB", "VBN", "RP", "DT", "NN", "NN", "IN", "NN", ".", "``", "PRP", "VBD", "DT", "JJ", "NN", "WDT", "-NONE-", "VBD", "DT", "NN", "IN", "NN", "IN", "DT", "JJ", "NN", ",", "''", "DT", "NNP", "NNP", "VBZ", "-NONE-", ".", "DT", "RB", "JJ", "NN", "-NONE-", "VBZ", "NN", "IN", "JJ", "NNP", ",", "JJ", "IN", "WP", "-NONE-", "VBP", "NNS", "IN", "DT", "NN", ".", "CC", "EX", "RB", "VBP", "RB", "JJ", "NNS", "-NONE-", "-NONE-", "TO", "VB", "JJR", "IN", "CD", "IN", "DT", "CD", "NNS", ".", "IN", "NNP", "NNP", "POS", "NNP", "IN", "NNP", ",", "NNP", ",", "DT", "NNS", "VBP", "VBN", "-NONE-", "JJ", "VBG", "DT", "NN", "IN", "NN", "NN", ".", "DT", "NN", ",", "NNP", "NNP", ",", "VBZ", "-NONE-", "TO", "VB", "IN", "PRP", ",", "-NONE-", "VBG", "-NONE-", "PRP", "MD", "``", "VB", "DT", "NN", ".", "''", "CC", "NNP", "NNP", ",", "NN", "IN", "DT", "JJ", "NN", ",", "VBZ", "-NONE-", "DT", "NN", "VBZ", "IN", "DT", "NNS", "IN", "DT", "NN", "NN", "WDT", "-NONE-", "VBP", "VBN", "-NONE-", "JJ", "TO", "DT", "NN", ".", "``", "RB", "NN", ",", "NN", ",", "NN", ",", "NN", ",", "NN", ",", "NN", ":", "RB", "VBP", "-NONE-", "DT", "NNS", "IN", "RB", ",", "-NONE-", "VBG", "DT", "RB", "JJ", "NN", "IN", "DT", "NN", "VBZ", "IN", "NN", ",", "''", "PRP", "VBZ", "-NONE-", ".", "NNP", "NNP", "VBZ", "TO", "VBN", "NNS", "IN", "DT", "NN", ",", "IN", "PRP", "VBZ", "DT", "DT", "NN", "CC", "DT", "JJ", "NN", "PRP", ".", "``", "DT", "NN", "IN", "NNS", "VBZ", "DT", "NN", "-NONE-", "-NONE-", "TO", "VB", "NNS", "IN", "DT", "NN", ",", "''", "PRP", "VBZ", "-NONE-", ".", "``", "PRP", "VBP", "IN", "NNS", "IN", "DT", "NNS", "PRP", "MD", "VB", "VBN", "-NONE-", "IN", "DT", "JJR", "NN", ".", "''", "DT", "NNP", "NNP", "IN", "NNP", "NNP", "NNP", ",", "DT", "NN", "IN", "NN", "IN", "NN", "NNS", ",", "VBZ", "-NONE-", "TO", "VB", "NNS", "IN", "NNS", ",", "VBZ", "-NONE-", "-NONE-", "NNP", "NNP", "NNP", ",", "NN", ".", "PRP", "VBZ", "-NONE-", "TO", "VB", "TO", "NNS", "IN", "JJ", "NNS", "IN", "DT", "NNS", "IN", "NN", "NN", "CC", "MD", "RB", "VB", "DT", "NN", "IN", "DT", "NN", "IN", "DT", "NN", "VBD", ",", "``", "DT", "NNP", "IN", "PRP$", "NNP", ".", "''", "VBZ", "-NONE-", "NNP", "NNP", ",", "``", "PRP", "VBP", "IN", "PRP", "MD", "RB", "RBR", "VBP", "RB", "JJ", "DT", "NN", "IN", "NN", "NN", "CC", "NN", ".", "''", "NNP", "NNP", "VBZ", "RB", "VBG", "DT", "JJR", "NN", ":", "NN", "IN", "NNS", ".", "CD", "NN", "VBZ", "IN", "IN", "DT", "CD", "VBN", "NNS", "IN", "NNP", "NN", ",", "RB", "CD", "IN", "PRP", "RB", "VBP", ".", "RB", ",", "NNS", "VBP", "RB", "RB", "VB", "WRB", "DT", "NNS", "VBP", "-NONE-", "TO", "VB", "VBN", "-NONE-", "-NONE-", ":", "IN", "IN", "JJ", ",", "JJ", "NNS", "CC", "NN", "NNS", ".", "CC", "DT", "NN", "POS", "NN", "-NONE-", "TO", "VB", "CC", "VB", "NNS", "VBZ", "RB", "RB", "JJ", ",", "VBZ", "-NONE-", "-NONE-", "NNP", "NNP", ".", "``", "RB", "RB", ",", "PRP", "VBP", "JJ", "IN", "IN", "CD", "NNS", "PRP", "VBP", "CD", "JJ", "NN", "IN", "IN", "CD", ",", "''", "PRP", "VBZ", "-NONE-", ".", "CD", "JJ", "NN", "VBZ", "IN", "DT", "VBG", "NN", "IN", "NNS", "VBP", "VBN", "DT", "RB", "JJ", "NN", ":", "JJR", "IN", "DT", "JJ", "IN", "DT", "NNS", "NN", "VBP", "NNS", ".", "PRP", "VBP", "RB", "VBN", "-NONE-", "RB", ",", "RB", ".", "DT", "JJS", "JJ", "NN", "IN", "DT", "NN", ",", "DT", "NNP", "NNP", "IN", "NNP", "NNP", ",", "VBN", "-NONE-", "IN", "CD", ",", "VBZ", "JJ", ",", "DT", "NN", "WDT", "-NONE-", "VBZ", "RB", "JJ", "TO", "NNS", "IN", "DT", "NN", "VBZ", "DT", "JJ", "NN", "IN", "NNS", "IN", "NNP", "POS", "JJS", "JJ", "NNS", ",", "NNP", "NNP", "POS", "NNP", "CC", "NNP", "NNP", ".", "DT", "VBG", "NNP", ",", "DT", "NN", "VBZ", "VBN", "DT", "NN", "NN", ",", "CC", "DT", "NN", "IN", "DT", "NN", "VBD", "DT", "NN", "IN", "DT", "NN", "IN", "NNS", "TO", "``", "DT", "NNP", "NNP", ",", "''", "DT", "JJ", "NN", "IN", "NNS", ".", "CD", "NN", ",", "VBG", "PRP$", "NN", "IN", "``", "JJ", ",", "JJ", "NN", ",", "''", "VBN", "IN", "DT", "``", "NN", "IN", "NNS", "VBG", "IN", "NNS", ",", "''", "CC", "VBD", "IN", "PRP", "``", "VB", "RB", "IN", "PRP$", "JJ", "NN", "IN", "-NONE-", "VBG", "NN", "IN", "NNS", ".", "''", "IN", "DT", "NN", "IN", "NNS", "IN", "-NONE-", "VBD", ",", "CD", "NN", "NN", "IN", "NNP", "VBN", "IN", "``", "DT", "JJ", "JJ", "NN", "VBZ", "RB", "DT", "NN", "-NONE-", "-NONE-", "TO", "VB", "VBN", "-NONE-", ":", "-NONE-", "RB", "VBN", ",", "VBN", "IN", "NN", "CC", "DT", "JJ", "NN", ",", "RB", "JJ", "CC", "RB", "JJ", "IN", "NNS", ".", "''", "DT", "NNS", "VBD", "IN", "NNP", "-NONE-", "TO", "VB", "IN", "IN", "PRP$", "CD", "NNS", "IN", "VBG", ",", "``", "PRP", "VBP", "RB", "VBN", "DT", "NN", "TO", "VB", "IN", "DT", "NN", ".", "PRP", "VBP", "VBN", "CD", "CC", "CD", "NNS", "VB", ",", "-NONE-", "VB", "PRP", ".", "NNS", "VBN", "-NONE-", "IN", "DT", "NN", "NN", "POS", "NNS", "MD", "VB", "DT", "NN", "IN", "DT", "JJ", "NN", "IN", "JJ", "NN", "NNS", ".", "DT", "VBZ", "VBN", "RB", "JJ", "DT", "NN", "IN", "JJ", "NNS", "VBG", "PRP$", "NNS", "JJR", "IN", "CD", "NN", ".", "CC", "-NONE-", "VBP", "RB", "VB", "RB", "JJ", ":", "DT", "NN", "NNS", "MD", "VB", "NN", "RB", "IN", "NN", "NNS", ",", "DT", "NNS", "VBP", "-NONE-", "-NONE-", ".", "IN", "DT", "NN", ",", "PRP", "VBP", "-NONE-", "-NONE-", ",", "DT", "JJS", "NN", "NN", "VBZ", "RB", "VBN", "IN", "NNS", "WRB", "DT", "NN", "NN", "VBD", "RB", "JJ", "-NONE-", ".", "DT", "MD", "VB", "DT", "NN", "IN", "JJ", "NNS", ",", "VBZ", "-NONE-", "-NONE-", "NNP", "NNP", ",", "JJ", "JJ", "NN", "IN", "NNP", "NNP", "CC", "NNP", ".", "JJ", "NN", "NN", ",", "PRP", "VBZ", "-NONE-", "-NONE-", ",", "VBZ", "``", "DT", "JJ", "NN", "IN", "NN", "''", ":", "DT", "NN", "TO", "DT", "JJ", "NNS", "WDT", "-NONE-", "VBP", "NNS", "CC", "RB", "VBP", "PRP", "IN", "VBG", ".", "NNP", "NNP", ",", "NN", "IN", "NNP", "NNP", "NNP", "NNP", "CC", "NNP", "NNP", ",", "VBZ", "IN", "NNS", "VBP", "PRP$", "NNS", "RBS", "RB", "RB", "IN", "DT", "NN", "CC", "JJ", "NNS", "VBP", "VBN", "VBG", "IN", "DT", "NN", ".", "``", "RB", ",", "DT", "JJ", "NNS", "IN", "DT", "NN", "VBP", "NN", "TO", "JJ", "NNS", ",", "''", "PRP", "VBZ", "-NONE-", ".", "``", "CC", "JJ", "NNS", "VBP", "RB", "JJ", "TO", "DT", "NN", "NN", ".", "''", "RB", ",", "NNS", "VBP", "IN", "NNS", "VBP", "RB", "VBN", "RBS", "RB", "WRB", "NNS", "VBD", "RB", "IN", "PRP$", "NN", "IN", "IN", "JJ", "NNS", "-NONE-", ".", "IN", "CD", ",", "IN", "NN", ",", "NNS", "IN", "DT", "NNS", "IN", "NNP", "CC", "NNP", "POS", "JJ", "NN", "VBD", "CD", "NN", ",", "VBG", "RB", "JJR", "NN", "DT", "NN", "IN", ".", "DT", "NNP", "NN", "VBD", "-NONE-", "VBG", "IN", "NN", "IN", "NNP", "CD", ",", "CC", "VBD", "CD", "NN", "IN", "CD", ":", "IN", "DT", "CD", "NN", "NN", "IN", "NNS", "DT", "NN", ".", "DT", "NN", "VBZ", "RB", "RB", "VBN", ",", "CC", "JJ", "JJ", "NN", "IN", "NNS", "VBZ", "DT", "NN", "NNS", "JJ", ".", "NNS", "IN", "DT", "NNP", "CD", "NNS", "VBD", "CD", "NN", "IN", "CD", ",", "VBG", "TO", "NNP", "CC", "NNP", "POS", "NNP", ",", "CC", "NNP", "NNP", "NNS", "IN", "CD", "NN", "VBP", "RB", "IN", "CD", "NN", "CC", "CD", "NN", "-NONE-", ".", "JJ", "NNS", "VBP", "-NONE-", "DT", "NN", "IN", "NNS", "MD", "VB", "JJ", "NN", ",", "IN", "DT", "NN", "VBP", "JJ", "NNS", "VBG", ".", "RB", ",", "JJ", "NN", "NNS", "VBP", "-NONE-", "JJ", "NN", "NNS", "VBP", "DT", "NN", "NN", ":", "IN", "NNS", "VBP", "VBN", "RB", ",", "PRP$", "NN", "VBZ", "RB", "VBD", "NN", "IN", "JJ", "JJR", "NNS", "IN", "NN", "NNS", ".", "IN", "DT", "NN", ",", "DT", "NN", "POS", "NN", "NN", ":", "NNS", "IN", "DT", "NN", "IN", "NN", ":", "VBP", "VBD", "TO", "DT", "NN", "WDT", "-NONE-", "VBZ", "RB", "JJ", "CC", "JJ", "IN", "JJ", "NNS", ".", "-NONE-", "VBN", "-NONE-", "DT", "NN", ",", "DT", "NN", "IN", "DT", "NN", "VBZ", "-NONE-", "NNS", "VBP", "VBN", "RB", "JJ", "IN", "NN", "JJ", "TO", "DT", "NNS", "-NONE-", "PRP", "VBP", "-NONE-", ",", "DT", "NN", "NNS", "VBP", "-NONE-", "-NONE-", ".", "PRP", "VBP", "VBG", "DT", "JJ", "NN", "IN", "DT", "NN", "IN", "DT", "NNP", "CD", ".", "DT", "NN", "VBZ", "RB", "RB", "CD", "NN", ",", "IN", "IN", "CD", "NN", "IN", "DT", "JJ", "NN", "NN", ".", "DT", "NNS", "VBP", "-NONE-", "NNS", "MD", "VB", "IN", "DT", "NNS", "IN", "DT", "VBN", "NN", "NN", "VBZ", "DT", "NN", "IN", "CD", "NN", ".", "DT", "NN", "IN", "DT", "CD", "NN", "NN", "``", "VBZ", "RB", "VBN", "DT", "JJ", "NN", "NN", "IN", "NNS", "VBP", "RB", "VBN", "-NONE-", ",", "''", "VBZ", "-NONE-", "-NONE-", "NNP", "NNP", "IN", "NNP", "NNP", "NNP", ".", "IN", "NN", ",", "``", "DT", "NN", "VBZ", "RB", "VBN", ".", "RB", ".", "EX", "VBZ", "RB", "VBN", "DT", "NN", ",", "''", "VBZ", "-NONE-", "-NONE-", "NNP", "NNP", "NNP", ",", "DT", "NNP", "NN", "NN", "CC", "NN", "NN", ",", "VBN", "IN", "DT", "NN", "IN", "CD", "NNS", "IN", "NN", "NN", ".", "DT", "JJ", "NN", "-NONE-", "DT", "NNP", "CD", "NN", "VBD", "IN", "CD", "NN", "-NONE-", "VBD", "IN", "DT", "NN", "IN", "CD", ".", "NNS", "WP", "-NONE-", "VBD", "DT", "NN", "CC", "VBD", "NNS", "VBD", "DT", "NNP", "NN", ".", "EX", "VBP", "VBN", "RB", "CD", "JJ", "NNS", ":", "NN", "CD", ",", "CD", ",", "CD", ",", "CD", ",", "CD", ",", "CD", "CC", "CD", ":", "WRB", "DT", "NN", "IN", "DT", "NNP", "CD", "VBD", "IN", "CD", "NN", "IN", "IN", "JJS", "CD", "JJ", "NNS", "-NONE-", ",", "NNP", "NNP", "VBD", "-NONE-", "-NONE-", ".", "CC", "IN", "DT", "NN", ",", "PRP", "VBZ", "-NONE-", "-NONE-", ",", "DT", "JJ", "NN", "IN", "NN", "NNS", "VBD", "IN", "DT", "NN", ".", "RB", ",", "DT", "NN", "NNS", "VBP", "-NONE-", "DT", "JJ", "CD", "NN", "NN", "VBZ", "RB", "RB", "JJ", "IN", "PRP", "MD", "VB", "VBN", "-NONE-", "IN", "NNS", "NN", ".", "``", "PRP", "VBZ", "RB", "DT", "RB", "JJ", "NN", "RB", "IN", "NNS", "VBP", "RB", "VBG", "IN", "DT", "JJ", "NN", ",", "''", "VBZ", "-NONE-", "NNP", "NNP", "NNP", ",", "NN", "IN", "NN", "NNS", "IN", "NNP", "NNP", ",", "DT", "JJ", "NN", ".", "IN", "JJ", ",", "NNP", "NNP", "VBZ", "-NONE-", "-NONE-", ",", "NNS", "VBP", "VBG", "RP", "DT", "JJR", "NN", "IN", "PRP$", "NNS", "CC", "NN", "NN", "-NONE-", "IN", "DT", "NN", "IN", "NNS", "IN", "PRP", "VBP", "-NONE-", "RB", ".", "RB", ",", "IN", "NN", "NNS", "MD", "VB", "RB", "JJ", "JJ", "TO", "NNS", ",", "PRP", "VBP", "RB", "JJ", "JJ", "TO", "DT", "JJ", "JJ", "NN", ".", "RB", "IN", "-NONE-", "VBG", "NNS", ",", "DT", "NNS", "VBP", "VBN", "NN", "-NONE-", "TO", "VB", "RP", "DT", "IN", "PRP$", "NNS", ",", "VBZ", "-NONE-", "-NONE-", "NNP", "NNP", "NNP", ",", "NN", "IN", "DT", "NN", "NN", "NN", "IN", "NNP", ",", "NNP", "CC", "NNP", ".", "PRP", "VBZ", "DT", "IN", "DT", "NN", "NN", "-NONE-", "TO", "VB", "DT", "VBN", "NN", "IN", "RB", "CD", "NN", ".", "DT", "VBZ", "RB", "DT", "NN", "IN", "DT", "NN", "IN", "DT", "JJ", "CD", "NNS", "CC", "RB", ",", "PRP", "VBZ", "-NONE-", "-NONE-", ".", "WP", "-NONE-", "MD", "VB", "TO", "NN", "NN", "JJ", "NN", ".", "JJ", "NN", "VBZ", "DT", "JJ", "NN", "IN", "NN", ",", "VBG", "DT", "NN", "IN", "DT", "NN", "CC", "JJ", "NNS", ".", "NNP", "NNP", ",", "IN", "NN", ",", "VBZ", "VBG", "NN", "IN", "NNP", "CD", "NNS", "IN", "RB", "IN", "CD", "NN", "IN", "CD", ",", "IN", "IN", "DT", "VBN", "CD", "NN", "DT", "NN", ".", "IN", "JJ", "NNS", "IN", "WDT", "EX", "VBP", "VBN", "JJ", "JJ", "NNS", ":", "JJ", "NN", "-NONE-", "DT", "NN", "VBZ", "-NONE-", "IN", "CD", "-NONE-", ":", "JJ", "NN", "IN", "NNS", "VBD", "IN", "DT", "NN", "IN", "CD", "NN", "TO", "DT", "NN", "IN", "CD", "NN", ",", "VBG", "TO", "NNP", "NN", "NNP", "NNP", ".", "DT", "NN", "NN", ",", "RB", ",", "VBZ", "IN", "NNS", "VBP", "DT", "JJ", "JJ", "-NONE-", "DT", "NN", "RP", "-NONE-", "-NONE-", "TO", "VB", "RB", "JJR", "NNS", "-NONE-", "RB", "IN", "PRP$", "NNS", "VBP", ".", "NN", "NN", "IN", "DT", "NN", "IN", "CD", "NN", "VBZ", "VBN", "-NONE-", "IN", "DT", "NNP", "NNP", "IN", "NNP", "CC", "NNP", "NNP", "IN", "NNP", "NNP", ".", "DT", "NN", "NNS", "VBP", "IN", "NNS", "VBP", "IN", "DT", "JJ", "NN", "IN", "-NONE-", "VBG", "NN", "IN", "NN", "VBD", "RP", "-NONE-", "IN", "-NONE-", "VBG", "NNS", "CC", "VBG", "NN", "NNS", ".", "CD", "NN", "-NONE-", "NNS", "MD", "VB", "-NONE-", "TO", "VB", "-NONE-", "VBZ", "DT", "JJ", "NN", "IN", "NNP", "CC", "NNP", "POS", "IN", "DT", "NN", "IN", "JJ", "NNS", "VBG", "PRP$", "NNS", ".", "DT", "NN", "IN", "CD", "NNS", "-NONE-", "VBD", "NNS", "IN", "NNP", ",", "RB", "JJ", "IN", "CD", "DT", "NN", "RB", ",", "NNP", "VBD", "-NONE-", "-NONE-", "NNP", ".", "DT", "VBD", "CD", "JJ", "NNS", "IN", "WDT", "DT", "NN", "IN", "NNS", "VBD", "DT", "JJ", "NN", "-NONE-", ".", "IN", "DT", "NNP", "NN", "VBZ", "RB", "VB", "DT", "NN", "IN", "NN", "NNS", ",", "DT", "JJ", "NN", "IN", "DT", "NN", "IN", "NN", "NNS", "MD", "VB", "DT", "NN", "IN", "JJR", "NN", "NN", "IN", "NN", ".", "IN", "DT", "NN", ",", "NN", "-NONE-", "VBZ", "VBN", "IN", "WRB", "JJ", "IN", "DT", "NN", "DT", "JJ", "NN", "NN", "MD", "VB", "-NONE-", "RB", "IN", "NN", "NN", "VBZ", "IN", "JJ", "NNS", ".", "NNP", "NNP", "IN", "NNP", "NNP", "VBZ", "-NONE-", "DT", "NN", "NN", "MD", "VB", "DT", "CD", "NN", "TO", "CD", "NN", "-NONE-", "NN", "NN", "IN", "NN", "CC", "NNS", "-NONE-", "IN", "DT", "JJ", "CD", "NNS", ":", "IN", "DT", "``", "NN", "NN", "IN", "NN", "''", "IN", "RB", "CD", "NN", "CC", "CD", "JJ", "-NONE-", "IN", "NN", "NN", "VBZ", "JJ", ".", "CC", "NNP", "NNP", "IN", "NNP", "NNP", "NNP", ",", "WP", "-NONE-", "RB", "VBZ", "CD", "NN", "NN", "IN", "NNS", "IN", "NN", ",", "VBZ", "RB", "VB", "-NONE-", "PRP", "MD", "VB", "DT", "JJ", "NN", "DT", "DT", "JJ", ".", "``", "-NONE-", "VBG", "DT", "NN", "NNS", "VBZ", "DT", "JJ", "NN", "IN", "DT", "NN", "NN", ",", "CC", "PRP", "VBP", "RB", "VB", "-NONE-", "PRP", "VBZ", "DT", "JJ", "NN", ",", "''", "PRP", "VBZ", "-NONE-", ".", "IN", "JJR", "JJ", "NN", "CC", "JJ", "JJ", "NNS", "JJ", "IN", "NN", ",", "``", "PRP", "MD", "RB", "VB", "IN", "DT", "NN", "TO", "VB", "JJ", "RB", "IN", "JJ", "NNS", ".", "PRP$", "NNP", "CD", "JJ", "NN", "IN", "DT", "VBN", "NN", "IN", "NNP", "NNP", "VBZ", "IN", "NNP", "NNP", "VBD", "VBN", "PRP$", "NN", "-NONE-", "TO", "VB", "IN", "DT", "NN", "NN", "IN", "-NONE-", "VBG", "RP", "NNP", "NNP", "NNP", "POS", "NN", "TO", "PRP", "IN", "PRP$", "NN", ",", "IN", "PRP", "RB", "VBD", "IN", "NN", "NN", "MD", "RB", "VB", "DT", "NN", ".", "JJ", "VBZ", "RB", "DT", "NN", ".", "NNP", "POS", "NN", ",", "NNP", "NNP", "NNP", ",", "JJ", "CC", "JJ", ",", "VBD", "NN", "-NONE-", "-NONE-", "TO", "VB", "DT", "NNP", "NNP", "NNP", "NNP", "IN", "NNP", ",", "WDT", "-NONE-", "RB", "VBD", "DT", "NN", "IN", "NNP", "NNP", "VBN", "-NONE-", "DT", "NNP", "NNP", "IN", "NNP", "NNP", ".", "DT", "VBZ", "WRB", "NNP", "POS", "NNS", "VBD", "-NONE-", ".", "NNP", "NNP", "RB", "VBD", "-NONE-", "TO", "VB", "IN", "DT", "NN", "NN", ".", "PRP", "VBD", "NNP", "NNP", "POS", "NN", "NN", "CC", "RB", "RB", "VBD", "DT", "NNP", "NNP", "-NONE-", "VBG", "IN", "DT", "NN", "VBN", "-NONE-", "IN", "PRP$", "NN", ",", "NNP", "NNP", ",", "WDT", "-NONE-", "VBD", "VBN", "VBN", "-NONE-", "TO", "NNP", "IN", "DT", "JJ", "$", "CD", "-NONE-", ",", "VBN", "IN", "NNP", "NNP", "POS", "NNP", "NN", ".", "WRB", "NNP", "VBD", "IN", "DT", "NNP", "NN", "NN", "VBD", "VBN", "-NONE-", "CD", "NNS", "IN", "NNP", "POS", "NN", "-NONE-", ",", "NNP", "NNP", "VBD", "DT", "NN", "CC", "VBD", "-NONE-", "RB", "TO", "VB", "DT", "NN", "NN", ":", "DT", "NN", "IN", "DT", "NN", "POS", "JJ", "NN", ".", "NNP", "NNP", "NNP", "NNP", ",", "NNP", ".", "NNP", "NNP", "NNP", "VBD", "-NONE-", "PRP", "VBD", "JJR", "IN", "PDT", "PRP$", "NN", "NN", "CC", "VBZ", "VBG", "PRP$", "NN", "NN", "-NONE-", "TO", "VB", "IN", "PRP$", "NN", "CC", "NN", "NNS", ".", "DT", "VBG", "NN", ",", "WDT", "-NONE-", "VBZ", "VBN", "JJ", "NNS", "IN", "CD", "JJ", "NNS", ",", "VBD", "-NONE-", "PRP", "MD", "RB", "VB", "NN", "NN", "NNS", "RB", "JJR", "CC", "MD", "RB", "VB", "PRP$", "JJ", "JJ", "NNS", "NN", ".", "RB", ",", "NNP", "VBD", "-NONE-", "PRP", "MD", "VB", "CD", "NNS", "IN", "PRP$", "NNP", "NN", ",", "CD", "NN", "NNS", "NNS", "CC", "CD", "NNS", "IN", "PRP$", "JJ", "CC", "NNP", "NNP", "NN", ".", "DT", "NN", "POS", "NN", "NN", "MD", "VB", "TO", "IN", "CD", "NNS", ".", "NNP", "NNP", "NNP", ",", "NN", "CC", "NN", "NN", "NN", ",", "VBD", "-NONE-", "NNS", "VBD", "RB", "JJ", "-NONE-", "TO", "VB", "TO", "DT", "JJ", "NNP", "NN", "NNS", "IN", "IN", "DT", "NN", "POS", "JJ", "NNS", ".", "RB", ",", "PRP", "VBD", "-NONE-", "-NONE-", ",", "DT", "NN", "VBZ", "RB", "VB", "DT", "NN", "VBN", "-NONE-", "-NONE-", "TO", "VB", "DT", "NN", "IN", "DT", "JJ", "NN", "CC", "CD", ".", "``", "PRP", "RB", "VBD", "IN", "IN", "NN", "NNS", ",", "''", "NNP", "NNP", "VBD", "-NONE-", ".", "``", "PRP", "VBD", "-NONE-", "TO", "VB", "NN", "RB", "CC", "RB", "JJ", ".", "''", "IN", "DT", "NN", ",", "PRP", "VBD", "-NONE-", "NNP", "MD", "VB", "IN", "-NONE-", "VBG", "PRP$", "VBN", "NN", "IN", "NNS", ",", "VBG", "-NONE-", "TO", "VB", "NN", "IN", "JJ", "NNS", "CC", "VBG", "PRP$", "NN", "NN", ",", "-NONE-", "VBG", "DT", "IN", "DT", "NNS", "-NONE-", "PRP", "VBD", "-NONE-", "IN", "PRP$", "NN", ".", "DT", "NN", "RB", "VBZ", "DT", "NN", "NN", "IN", "JJ", "NNS", "VBN", "-NONE-", "NNP", ".", "DT", "NN", ",", "WDT", "-NONE-", "RB", "VBD", "-NONE-", "PRP", "VBD", "DT", "NNS", "CC", "NN", "-NONE-", "-NONE-", "TO", "VB", "NNS", "IN", "PRP$", "NNP", "NNP", "JJ", "VBN", "NN", "-NONE-", ",", "VBD", "-NONE-", "PRP", "VBZ", "VBN", "DT", "NN", "NN", "-NONE-", "-NONE-", "TO", "VB", "PRP", "VB", "JJ", "NN", ".", "IN", "NNP", "NNP", "NNP", "NNP", "JJ", "NN", "NN", ",", "NNP", "NN", "VBD", "IN", "CD", "NNS", "DT", "NN", ",", "IN", "CD", "NNS", ".", "PRP", "VBD", "NNP", "NNP", "POS", "JJ", "NN", "TO", "NNP", "IN", "CD", "WDT", "-NONE-", "VBD", "IN", "NN", "DT", "JJ", "NN", "IN", "NNP", "CC", "NNP", ".", "CC", "DT", "JJ", "NNP", "NN", "POS", "JJ", "NN", "TO", "NNP", ",", "IN", "WDT", "PRP", "VBD", "IN", "NN", "IN", "JJ", "NNS", "-NONE-", ",", "VBD", "RB", "JJ", "IN", "JJ", "IN", "-NONE-", "VBG", "NNS", "WDT", "-NONE-", "VBP", "RB", "VBN", "DT", "NNP", "NN", ".", "NNP", "NNP", ",", "DT", "RBS", "JJ", "NNP", "-NONE-", "-NONE-", "TO", "VB", "TO", "NNP", "IN", "NNP", "POS", "JJ", "NN", "IN", "JJ", "NNS", "IN", "NNP", ",", "VBD", "IN", "JJ", "NN", "IN", "DT", "NN", ".", "DT", "NNP", ",", "IN", "NN", ",", "VBD", "NN", "IN", "JJ", "``", "NN", "''", "IN", "NNP", "POS", "JJ", "NNS", ".", "CD", "JJ", "NN", ",", "NNP", "NNP", ",", "RB", "RB", "VBD", "NNP", "NNP", ",", "WP", "-NONE-", "VBZ", "RB", "VBN", "TO", "-NONE-", "RB", "IN", "DT", "``", "JJ", "NN", ".", "''", "DT", "NN", "VBD", "PRP", "IN", "-NONE-", "VBG", "DT", "VBG", "NN", "IN", "``", "JJ", "NN", ",", "''", "DT", "NN", "NN", "-NONE-", "-NONE-", "TO", "VB", "WP", "NNP", "VBZ", "-NONE-", "-NONE-", "VBZ", "DT", "NN", "-NONE-", "IN", "JJ", "NNS", "-NONE-", "TO", "VB", "JJ", "NNS", "IN", "DT", "JJ", "NN", "-NONE-", ".", "DT", "NN", "VBD", "JJ", "IN", "NNP", "NN", "IN", "NNP", "NNP", "POS", "JJ", "NN", "NN", ",", "RB", "DT", "NN", "IN", "-NONE-", "VBG", "NNS", "IN", "JJ", "NN", ".", "RB", ",", "NNP", "NNP", "VBD", "PRP$", "NN", ",", "NNP", "NNP", "NNP", "NNP", ",", "IN", "NNPS", "VBP", "RB", "VBN", "NNP", "POS", "NNS", "IN", "DT", "JJ", "NN", "IN", "NNP", "CD", "WDT", "-NONE-", "VBD", "NNS", ",", "CC", "RB", "NNS", ",", "IN", "NNS", ".", "``", "JJ", "IN", "DT", "NNP", "NNPS", ",", "VBG", "JJ", "NNS", "IN", "NNP", ",", "VBP", "-NONE-", "DT", "NN", "VBD", "JJ", "CC", "JJ", ",", "''", "NNP", "NNP", "VBD", "NNP", "NNP", ",", "WP", "-NONE-", "VBD", "RB", "VBN", "-NONE-", "IN", "-NONE-", "VBG", "DT", "NN", "-NONE-", ".", "``", "DT", "NNS", "IN", "NNP", "IN", "NNP", "VBD", "DT", "NN", "CC", "NN", "WDT", "JJS", "NNPS", "RB", "VBD", "-NONE-", "IN", "DT", "NNS", "IN", "NNP", ".", "''", "DT", "NNP", "VBD", "IN", "DT", "RB", "JJ", "NN", ".", "IN", "NNS", "IN", "NNP", "NNP", ",", "JJ", "NNS", "VBD", "DT", "NN", "IN", "DT", "NNS", ",", "CC", "RB", "VBD", "IN", "DT", "NNP", "VBD", "RB", "VBN", "-NONE-", "IN", "DT", "NNS", "DT", "NN", ".", "IN", "DT", "NN", "NNP", ",", "NN", "NN", ",", "NNP", "NNP", ",", "VBD", "NNP", "NNP", ",", "``", "-NONE-", "RB", "VBG", ",", "DT", "NNP", "VBD", "VBN", "-NONE-", "RB", "RB", "IN", "DT", "NN", "CC", "JJ", "NN", "WDT", "-NONE-", "VBD", "IN", "NNP", "RB", "RB", "RB", ".", "NNP", "VBD", "DT", "JJ", "NN", "CC", "PRP", "-NONE-", "VBZ", "JJ", "-NONE-", "TO", "VB", "NNP", "IN", "PRP", ".", "''", "IN", "DT", "JJ", "NNS", ",", "DT", "NNP", "CC", "NNP", "RB", "VBP", "-NONE-", "TO", "VB", "VBG", "IN", "DT", "NN", "-NONE-", "-NONE-", "TO", "VB", "NNS", ",", "WDT", "-NONE-", "VBP", "VBN", "IN", "WP", "NNP", "NNP", "VBD", "TO", "-NONE-", "IN", "``", "DT", "JJS", "NN", "IN", "NNP", "NNS", "''", "IN", "PRP$", "JJ", "NN", "TO", "NNP", "CD", "NNS", "IN", "-NONE-", ".", "IN", "PRP$", "NN", "NN", "TO", "NNP", "NNP", ",", "NNP", "NNP", "VBD", "-NONE-", "DT", "NN", "VBD", "VBN", "DT", "``", "NN", ".", "''", "NNS", "IN", "NNP", "CC", "DT", "NNP", "VBP", "VBN", "JJ", "IN", "NNP", "CD", ",", "WRB", "JJ", "NN", "NNP", "NNP", "CC", "PRP$", "NN", ",", "NNP", "NNP", ",", "VBD", "NN", "IN", "DT", "NNP", "NNP", "IN", "NNP", "-NONE-", ".", "RB", "RB", ",", "NNP", "NNP", "VBD", "DT", "NN", "IN", "JJ", "NNS", ",", "VBG", "NN", "IN", "JJS", "JJ", "NNS", ",", "WDT", "-NONE-", "MD", "VB", "VBN", "-NONE-", "IN", "NNP", "JJ", "NN", "IN", "DT", "VBG", "NNS", ".", "NNP", "NNP", "VBZ", "VBG", "IN", "NNP", "IN", "DT", "JJ", "NN", ",", "CC", "PRP", "VBZ", "VBN", "RB", "IN", "PRP", "VBZ", "DT", "JJ", "NN", "IN", "DT", "NNP", "NN", ".", "NNP", "NNP", "VBD", "NNP", "NNP", "CC", "PRP$", "JJ", "NN", "NN", ",", "NNP", "NNP", ",", "IN", "-NONE-", "VBG", "TO", "NNP", "IN", "NNP", ".", "CC", "PRP", "VBZ", "-NONE-", "TO", "VB", "DT", "NN", "IN", "DT", "NN", "IN", "DT", "NN", ",", "NNP", "NNS", "VBD", "-NONE-", "-NONE-", ".", "NNP", "NNP", "VBD", "-NONE-", "TO", "VB", "NNP", "NN", ".", "VBG", "TO", "DT", "JJ", "NN", "IN", "DT", "NNP", "NN", ",", "DT", "JJ", "NN", "VBD", "DT", "NN", "IN", "JJ", "NNS", "IN", "PRP$", "CD", "NNS", "IN", "NNS", "IN", "JJ", "JJ", "NNS", ".", "DT", "VBD", "NNP", "POS", "JJ", "NNS", ",", "JJ", "NNS", "CC", "DT", "NN", "IN", "NNP", "NNP", ".", "NNP", "NNP", "RB", "VBD", "IN", "NNP", "VB", "PRP$", "NN", "IN", "DT", "NNP", "NNP", ",", "DT", "NNP", "JJ", "JJ", "NN", ".", "NNP", "VBD", "IN", "IN", "DT", "NN", "IN", "NNP", ".", "IN", "PRP$", "NNS", ",", "DT", "JJ", "NN", "VBD", "NNP", "POS", "NNS", "-NONE-", "TO", "VB", "DT", "PRP$", "NN", "VBZ", "NN", "IN", "DT", "NN", "NN", "CC", "VB", "DT", "NN", "IN", "JJ", "NNS", "CC", "NNS", ".", "``", "NNS", "VBP", "VBG", "IN", "NNS", ",", "CC", "EX", "VBZ", "DT", "NNP", "JJ", "NN", "WDT", "-NONE-", "MD", "VB", "PRP", "IN", ",", "''", "PRP", "VBD", "DT", "NN", "IN", "NNPS", "-NONE-", "IN", "DT", "NNP", "NNP", "IN", "NNP", ".", "EX", "VBP", "DT", "NNS", ",", "RB", ",", "IN", "NNP", "POS", "NN", "IN", "JJ", "NNS", ".", "CC", "IN", "CD", "JJ", "NN", ",", "NNP", "NNP", "VBZ", "-NONE-", "TO", "VB", "VBN", "DT", "NN", ".", "IN", "DT", "NN", "IN", "NNP", "NNP", "NNP", "IN", "NNP", ",", "NNP", "NNP", "VBD", "IN", "PRP", "VBD", "-NONE-", "PRP", "MD", "RB", "VB", "NNS", "IN", "NN", "NNS", "IN", "PRP$", "NN", "TO", "DT", "NNP", "NNP", ".", "RB", "RB", ",", "WRB", "PRP", "VBD", "IN", "DT", "NN", "CD", "NNS", "JJ", ",", "DT", "JJ", "NNS", "VBD", "VBN", ":", "IN", "DT", "JJ", "NN", "IN", "CD", "NNS", ".", "DT", "JJ", "NNS", "RB", ",", "IN", "DT", "NNP", "NN", "POS", "NN", ",", "DT", "NNS", "VBG", "DT", "NN", "RB", "VBD", "VBN", "PRP$", "JJ", "NNS", "IN", "DT", "JJ", "NN", "IN", "JJ", "NNP", ".", "CC", "DT", "NNS", "RB", "VBN", "PRP$", "NNS", ",", "CC", "DT", "JJ", "NN", "IN", "NNS", "NNS", "VBD", "RB", "IN", "JJ", "NNS", ".", "RB", ",", "NNS", "CC", "NNS", "VBP", "-NONE-", "TO", "VB", "NNPS", ",", "WP", "-NONE-", "VBP", "VBN", "JJ", "NNS", "IN", "DT", "NNP", "NNP", "IN", "DT", "NN", "NN", ".", "JJ", "NNS", ",", "JJ", "NNS", "VBP", "VBN", "PRP$", "JJ", "NNS", "IN", "JJ", "NNS", "IN", "NNP", "NNS", "CC", "VBD", "DT", "NN", ".", "DT", "NNS", "VBD", "RB", "VBN", "-NONE-", ".", "PRP$", "NNP", "CD", "NN", "``", "NNP", "POS", "JJ", "NNS", "VBP", "NN", "NNS", "''", "VBZ", ",", "``", "JJ", "NNS", "VBP", "VBG", "JJ", "NNS", "IN", "-NONE-", "VBG", "NNP", "POS", "NN", "IN", "-NONE-", "VBG", "DT", "NN", "NNS", "IN", "JJ", "NNS", ".", "''", "DT", "JJ", "JJ", "NNS", "MD", "VB", "JJR", ".", "PRP", "VBP", "VBG", "IN", "DT", "JJ", "NN", ",", "IN", "PRP", "-NONE-", "VBZ", "RB", "PRP$", "NN", "-NONE-", "PRP", "MD", "RB", "VB", "JJ", "NNS", ".", "NNP", "NNP", ",", "NN", "IN", "NNP", "NNP", ",", "VBZ", "``", "-NONE-", "DT", "``", "NN", "NN", "''", "IN", "JJ", "NNS", ":", "VBD", "DT", "NN", ".", "''", "PRP", "VBZ", "RB", "VBG", "DT", "NN", "TO", "JJ", "NNS", ".", "WP", "-NONE-", "VBZ", "JJ", "IN", "-NONE-", "VBG", "IN", "JJR", "NN", ".", "NN", "VBZ", "RB", "NN", ",", "CC", "PRP", "VBZ", "JJ", ",", "CC", "NN", "VBZ", "RB", "NN", "NN", ".", "PRP", "-NONE-", "VBZ", "RB", "JJ", "-NONE-", "TO", "VB", "DT", "JJ", "NN", ".", "RB", ",", "JJ", "NNS", "VBP", "DT", "JJ", "NN", "NNS", "CC", "JJ", "NN", "NNS", ".", "PRP", "VBP", "DT", "NN", "IN", "DT", "JJ", "NNS", "VBP", "-NONE-", "-NONE-", "VBG", "RBR", "IN", "JJR", "NN", "VBZ", "JJ", ".", "PRP", "VBD", "DT", "NN", "IN", "JJ", "JJ", "NNS", ",", "CC", "PRP", "RB", "VBD", "-NONE-", "PRP", "MD", "VB", "-NONE-", "TO", "VB", "VBN", "-NONE-", "IN", "DT", "IN", "PRP", ".", "JJ", "IN", "PRP", "RB", "VBP", "VBN", "VBG", "DT", "NN", "IN", "NN", "IN", "JJ", "NNS", "CC", "NN", "-NONE-", "TO", "VB", "PRP$", "NNS", ",", "CC", "PRP", "MD", "VB", "IN", "DT", "RBS", "JJ", "NN", "VBZ", "JJ", "NN", ",", "RB", "-NONE-", "VBG", "NNS", "POS", "NNS", ".", "IN", "DT", "JJ", "NNS", "VBP", "RB", "VBG", "PRP$", "NN", ",", "PRP", "MD", "VB", "IN", "JJS", "CD", "NNS", "-NONE-", "-NONE-", "TO", "VB", "DT", "NN", ":", "VB", "NNS", "JJR", "IN", "DT", "IN", "JJ", "NNS", ":", "VB", "NN", "NNS", "-LRB-", "JJR", "NNS", "CC", "JJR", "NNS", ",", "IN", "NN", "-RRB-", ":", "VB", "CC", "VB", "JJR", "NN", "IN", "JJ", "NNP", ".", "NNP", "NNP", "IN", "NN", "TO", "PRP$", "NNP", "CD", "NN", "NN", "``", "NNP", "NNP", "VBZ", "RB", "JJR", "NNS", "IN", "DT", "NNP", ",", "''", "PRP", "-NONE-", "VBZ", "JJ", "IN", "PRP", "MD", "RB", "VB", "NNS", "IN", "PRP$", "NNS", ":", "``", "IN", "NNS", ",", "CD", "NN", "VBP", "JJ", "NNS", "IN", "PRP", ",", "IN", "CD", "NN", "VBP", "IN", "DT", "NN", "POS", "NN", "NN", ".", "IN", "NN", ",", "DT", "MD", "VB", "DT", "NN", "IN", "``", "PRP", "VBZ", "DT", "JJR", "JJ", "NN", "''", "IN", "PRP$", "NN", "-NONE-", ",", "IN", "NNP", "POS", "NNP", ".", "-LRB-", "NNP", "-RRB-", "NNP", "VBZ", "PRP", ".", "IN", "NNS", ",", "CD", "NN", "VBP", "DT", "JJ", "NN", "IN", "PRP$", ",", "VBN", "TO", "CD", "NN", "WP", "-NONE-", "VBP", "IN", "PRP$", "NN", "POS", "NN", ".", "IN", "DT", "NN", "IN", "JJ", "NNS", "VBP", "IN", "NNP", "NNP", "POS", "NN", "IN", "PRP$", "NN", ",", "RB", "CD", "NN", "VBP", "DT", "JJ", "NN", "IN", "PRP$", "NN", ".", "''", "DT", "NNS", "VBP", "IN", "NNS", "IN", "NNS", "VBP", "IN", "NNP", "NNP", "POS", "NN", "NN", "CC", "CD", "NN", "IN", "NNS", "VBP", "IN", "NNP", "NNP", ".", "IN", "DT", "NN", "VBZ", "IN", "PRP", "-NONE-", "VBZ", "JJ", "IN", "RB", "JJ", "NNS", "VBP", "NNP", "CC", "NNP", "NNP", "JJ", ",", "DT", "JJ", "NN", "VBZ", "RB", "RBR", "JJ", ".", "PDT", "DT", "NN", "NN", "IN", "NN", "VBZ", "DT", "JJ", ",", "JJ", "NN", ".", "WRB", "VBP", "PRP", "NNS", "RB", "VBN", "-NONE-", "IN", "PRP$", "NN", "CC", "DT", "JJS", "JJ", "NN", ".", "NNP", "NNP", "NNP", "NNP", ",", "NNP", ".", "DT", "NNP", "NNP", "IN", "NNPS", "NNPS", ",", "DT", "JJ", "NN", "IN", "DT", "JJ", "NNS", "NNS", ",", "VBD", "DT", "NN", "IN", "NNS", "CC", "NNS", "IN", "JJ", "NNS", "IN", "NN", "NNS", ".", "CD", "NNS", "VBD", "VBN", "-NONE-", "IN", "DT", "NNP", ",", "CD", "VBD", "VBN", "CC", "VBN", "-NONE-", "CC", "CD", "VBD", "VBN", "-NONE-", ".", "NNP", "NNPS", "NNP", "IN", "NNP", "CC", "DT", "NN", "IN", "DT", "NN", ",", "NNP", "NNP", "NNP", "IN", "NNP", "DT", "NNP", ",", "NNP", ",", "VBD", "RB", "VBN", "-NONE-", "$", "CD", "-NONE-", "CC", "VBD", "-NONE-", "IN", "VBN", "NNS", "IN", "VBG", "NNS", "IN", "NNS", "NNS", ".", "RB", ",", "NNP", "NNP", "VBD", "VBN", "-NONE-", "IN", "NN", "IN", "DT", "NNP", "NN", ".", "DT", "NNP", "NNP", ",", "IN", "NNP", "NNP", ",", "CC", "NNP", "NNP", "MD", "VB", "VBN", "-NONE-", "IN", "NN", ".", "DT", "NN", "NN", "VBD", "DT", "NN", "IN", "DT", "NN", ".", "NNP", "NNP", "CC", "NNP", ",", "NNP", ",", "CC", "DT", "NN", "IN", "DT", "NN", ",", "NNP", "NNP", "NNP", "IN", "NNP", ",", "VBD", "RB", "VBN", "-NONE-", "$", "CD", "-NONE-", "CC", "VBN", "-NONE-", ",", "IN", "JJ", "JJ", "NN", "IN", "DT", "NN", "POS", "NNS", ",", "IN", "JJ", "NNS", ".", "RB", ",", "NNP", "NNP", "VBD", "VBN", "-NONE-", "IN", "NN", "IN", "DT", "NNP", "NN", ".", "NNP", "NNP", "VBZ", "RB", "DT", "NNP", "NN", "NN", ",", "DT", "NN", "VBD", "-NONE-", "-NONE-", ".", "NNP", "NNP", ",", "WP", "-NONE-", "RB", "VBZ", "DT", "JJ", "NN", ",", "RB", "MD", "RB", "VB", "VBN", "-NONE-", ".", "NNP", "NNP", "NNP", ",", "IN", "NNP", ",", "NNP", ",", "CC", "DT", "NN", "IN", "DT", "NN", ",", "NNP", "NNP", "IN", "NNP", ",", "NNP", ",", "VBD", "RB", "VBN", "-NONE-", "$", "CD", "-NONE-", "CC", "VBN", "-NONE-", "JJ", "NNS", "IN", "-NONE-", "RB", "VBG", "NNS", "IN", "JJ", "NNS", ".", "NNP", "VBZ", "RB", "DT", "NN", "NN", ",", "DT", "NN", "VBD", "-NONE-", "-NONE-", ".", "NNP", "NNP", ",", "WP", "-NONE-", "RB", "VBZ", "DT", "JJ", "NN", "NN", ",", "RB", "MD", "RB", "VB", "VBN", "-NONE-", ".", "NNP", "NNP", ",", "IN", "NNP", ",", "NNP", ",", "CC", "DT", "NN", "IN", "DT", "NN", ",", "NNP", "NNP", "NNP", ",", "RB", "IN", "NNP", ",", "VBD", "RB", "VBN", "-NONE-", "$", "CD", "-NONE-", "CC", "VBN", "-NONE-", "JJ", "NNS", "IN", "NN", "IN", "DT", "NN", ".", "IN", "-NONE-", "DT", "VBG", "CC", "VBG", "NN", ",", "NNP", "CC", "NNP", "NNP", "VBD", "TO", "NNS", "IN", "NNS", "IN", "NN", "IN", "NN", "NNS", ".", "NNS", "IN", "NNP", "MD", "RB", "VB", "VBN", "-NONE-", "IN", "NN", ".", "NNP", "NNP", "VBD", "RB", "VB", "DT", "NN", "NN", "TO", "PRP$", "NN", ".", "NNP", "CC", "NNP", "NNP", "NNP", ",", "IN", "NNP", "NNP", ",", "NNP", ",", "CC", "PRP$", "NN", ",", "NNP", "NNP", "NNP", ",", "IN", "NNP", "NNP", ",", "NNP", ",", "VBD", "TO", "DT", "JJ", "NN", "IN", "$", "CD", "-NONE-", ".", "IN", "-NONE-", "VBG", "CC", "VBG", "NN", ",", "PRP", "VBD", "TO", "NNS", "IN", "NNS", "IN", "NN", "CC", "JJ", "NNS", ".", "NNP", "NNP", "VBD", "RB", "VB", "DT", "NN", "VBG", "NN", ".", "NNP", "NNP", "NNP", "NNP", ",", "IN", "NNP", "NNP", ",", "CC", "PRP$", "NN", ",", "NNP", "NNP", "NNP", ",", "RB", "IN", "NNP", "NNP", ",", "VBD", "TO", "DT", "$", "CD", "-NONE-", "NN", ".", "RB", ",", "NNP", "NNP", "VBD", "DT", "JJ", "NN", "``", "IN", "DT", "JJ", "NN", ".", "''", "IN", "-NONE-", "VBG", "CC", "VBG", "NN", ",", "PRP", "VBD", "TO", "NNS", "IN", "PRP", "VBD", "RB", "VBN", "DT", "NN", "POS", "NN", "NN", ",", "VBD", "JJ", "NNS", "CC", "NNS", ",", "CC", "VBD", "JJ", "NNS", ".", "NNP", "NNP", "VBD", "-NONE-", "PRP", "VBD", "VBN", "TO", "DT", "NNS", "CC", "VBD", "-NONE-", "TO", "VB", "RB", ".", "NNP", "NNP", "NNP", ",", "NNP", "NNP", ",", "CC", "CD", "IN", "PRP$", "NNS", ":", "NNP", "NNP", "NNP", "CC", "NNP", "NNP", "NNP", "NNP", ",", "DT", "IN", "NNP", "NNP", ",", "NNP", ",", "CC", "NNP", "NNP", "NNP", ",", "IN", "NNP", "NNP", ",", "NNP", ".", ":", "VBD", "TO", "DT", "NN", "IN", "$", "CD", "-NONE-", ".", "IN", "-NONE-", "VBG", "CC", "VBG", "NN", ",", "PRP", "VBD", "TO", "NNS", "IN", "PRP", "VBD", "-NONE-", "TO", "VB", "NNS", "VBN", "-NONE-", "TO", "NNS", "IN", "NN", "IN", "DT", "NN", "NN", ".", "-NONE-", "VBN", "-NONE-", "IN", "PRP$", "NN", ",", "NNP", "NNP", ",", "RB", "NN", ",", "VBD", ",", "``", "DT", "NN", "IN", "PRP", "VBD", "-NONE-", "TO", "VB", "NN", "NNS", "VBZ", "JJ", "CC", "JJ", ".", "''", "PRP", "VBD", "DT", "NN", "IN", "``", "DT", "NN", "NN", ",", "DT", "NN", "NN", ",", "''", "WDT", "PRP", "VBD", "-NONE-", "-NONE-", "VBD", "RB", "VBN", "-NONE-", ",", "IN", "DT", "NNS", "TO", "NNS", ".", "NNP", "NNP", "CC", "NNP", ",", "IN", "NNP", ",", "NNP", ",", "CC", "PRP$", "NN", ",", "NNP", "NNP", "NNP", "NNP", ",", "RB", "IN", "NNP", ",", "VBD", "VBN", "-NONE-", "IN", "-NONE-", "VBG", "JJ", "NNS", "IN", "CD", "NNS", "CC", "VBD", "RB", "VBN", "-NONE-", "$", "CD", "-NONE-", ".", "DT", "NN", "CC", "NNP", "NNP", "RB", "VBD", "NNS", "TO", "DT", "NN", "IN", "JJ", "NNS", ",", "IN", "JJ", "JJ", "NNS", ".", "NNP", "NNP", "VBD", "-NONE-", "DT", "NN", "VBD", "VBN", "NNS", "IN", "JJ", "NNS", "CC", "VBD", "IN", "DT", "NN", "NNS", "IN", "DT", "NNP", "VBP", "NN", ".", "DT", "NN", "CC", "DT", "NNP", "VBP", "IN", "DT", "NN", "IN", "NN", "CC", "NN", ",", "PRP", "VBD", "-NONE-", "-NONE-", ".", "NNP", "NNP", "NNP", "NNP", ",", "NNP", "NNP", ",", "WDT", "-NONE-", "VBZ", "JJ", "-NONE-", "IN", "NNP", "NNP", "NNP", ",", "VBD", "TO", "DT", "$", "CD", "-NONE-", "NN", ".", "IN", "-NONE-", "VBG", "CC", "VBG", "NN", ",", "DT", "NN", "VBD", "TO", "NNS", "IN", "PRP", "VBD", "-NONE-", "TO", "VB", "``", "IN", "DT", "JJ", "NN", "''", "TO", "DT", "NNP", "POS", "NNS", "IN", "NN", "IN", "NN", "IN", "DT", "NN", "NN", ".", "DT", "NNP", "NN", "VBD", "DT", "NN", ".", "DT", "VBG", "NNS", "VBD", "VBN", "-NONE-", "IN", "-NONE-", "VBN", "-NONE-", "CC", "VBN", "-NONE-", "IN", "NN", "IN", "NNP", "NNS", ",", "CC", ",", "WRB", "-NONE-", "VBN", "-NONE-", "-NONE-", ",", "VBN", "-NONE-", ".", "IN", "WRB", "-NONE-", "VBN", "-NONE-", "-NONE-", ",", "NN", "IN", "DT", "NNS", "MD", "VB", "VBN", "-NONE-", "IN", "NN", "CC", "VBD", "DT", "NN", ".", "NNP", "NNP", "NNP", ",", "NNP", ",", "NNP", ",", "VBN", "-NONE-", "$", "CD", "-NONE-", ":", "NNP", "NNP", "NNP", "NNP", ",", "NNP", "NNP", ",", "NNP", ",", "$", "CD", "-NONE-", ":", "NNP", "NNP", ",", "NNP", "NNP", ",", "NNP", ",", "$", "CD", "-NONE-", "CC", "JJ", "NN", ":", "NNP", "NNP", ",", "NNP", "NNP", ",", "NNP", ",", "$", "CD", "-NONE-", "CC", "JJ", "NN", ":", "NNP", "NNP", "NNP", ",", "NNP", ",", "NNP", ",", "$", "CD", "-NONE-", "CC", "JJ", "NN", ":", "NNP", "NNP", "NNP", ",", "NNP", ",", "NNP", ":", "NNP", "NNP", ",", "NNP", ",", "$", "CD", "-NONE-", ",", "VBD", "-NONE-", "IN", "DT", "NN", ":", "NNP", "NNP", "NNP", ",", "NNP", ",", "$", "CD", "-NONE-", ":", "NNP", "NNP", "NNP", ",", "VBN", "-NONE-", "$", "CD", "-NONE-", ",", "VBN", "-NONE-", "-NONE-", "TO", "VB", "$", "CD", "-NONE-", ",", "JJ", "NN", ".", "NNP", "NNP", "NNP", ",", "NNP", ",", "NNP", ",", "VBN", "-NONE-", "$", "CD", "-NONE-", ":", "NNP", "NNP", "NNP", ",", "NNP", ",", "NNP", ",", "$", "CD", "-NONE-", "CC", "JJ", "NN", ":", "NNP", "NNP", "NNP", ",", "NNP", "NNP", ",", "NNP", ",", "VBN", "-NONE-", "$", "CD", "-NONE-", ",", "VBN", "-NONE-", "-NONE-", "TO", "VB", "$", "CD", "-NONE-", "CC", "VBN", "-NONE-", "CD", "NN", ":", "NNP", "NNP", "NNP", ",", "NNP", "NNP", ",", "VBN", "-NONE-", "$", "CD", "-NONE-", ",", "VBN", "-NONE-", "-NONE-", "TO", "VB", "$", "CD", "-NONE-", "CC", "VBN", "-NONE-", "CD", "NNS", ".", "NNP", "NNP", "VBD", ",", "``", "PRP", "VBD", "WP", "-NONE-", "VBD", "TO", "DT", "NN", "NN", ",", "CC", "IN", "-NONE-", "VBG", "IN", "PRP", ",", "PRP", "VBD", "RP", "IN", "DT", "JJ", "NN", "CC", "NN", ".", "''", "DT", "NN", "``", "VBD", "RB", "VB", "NN", "POS", "NNS", "NNS", ",", "''", "PRP", "VBD", "-NONE-", "-NONE-", ".", "NNP", "NNP", "NNP", ",", "NNP", ",", "NNP", ",", "VBN", "-NONE-", "$", "CD", "-NONE-", ":", "NNP", "NNP", "NNP", ",", "NNP", ",", "$", "CD", "-NONE-", ":", "NNP", "NNP", "NNP", ",", "NNP", ",", "NNP", ",", "$", "CD", "-NONE-", ":", "NNP", "NNP", ",", "NNP", ",", "NNP", ",", "$", "CD", "-NONE-", ":", "NNP", "NNP", "NNP", ",", "NNP", ",", "$", "CD", "-NONE-", "CC", "JJ", "NN", ":", "NNP", "NNP", "NNP", ",", "NNP", "NNP", ",", "$", "CD", "-NONE-", ":", "NNP", "NNP", "NNP", "NNP", ",", "NNP", "NNP", ",", "NNP", ",", "$", "CD", "-NONE-", ":", "NNP", "NNP", "NNP", ",", "NNP", "NNP", ",", "NNP", ",", "$", "CD", "-NONE-", ":", "NNP", "NNP", "NNP", ",", "NNP", ",", "NNP", ",", "$", "CD", "-NONE-", ".", "NNP", "NNP", "NNP", "NNP", ",", "NNP", ",", "NNP", ",", "VBN", "-NONE-", "$", "CD", "-NONE-", ":", "NNP", "NNP", "NNP", ",", "NNP", "NNP", "NNP", ",", "NNP", ",", "$", "CD", "-NONE-", ":", "NNP", "NNP", "NNP", ",", "NNP", ",", "NNP", ",", "VBN", "-NONE-", "$", "CD", "-NONE-", ",", "VBN", "-NONE-", "-NONE-", "TO", "VB", "$", "CD", "-NONE-", ":", "NNP", "NNP", "NNP", ",", "NNP", ",", "NNP", ",", "$", "CD", "-NONE-", ":", "NNP", "NNP", "NNP", ",", "NNP", ",", "NNP", ",", "$", "CD", "-NONE-", "CC", "JJ", "NN", ":", "NNP", "NNP", ",", "NNP", "NNP", ",", "NNP", ",", "$", "CD", "-NONE-", ":", "NNP", "NNP", ",", "NNP", ",", "$", "CD", "-NONE-", "CC", "JJ", "NN", ":", "NNP", "NNP", "NNP", ",", "NNP", "NNP", ",", "$", "CD", "-NONE-", ":", "NNP", "NNP", "NNP", ",", "NNP", "NNP", ",", "$", "CD", "-NONE-", ".", "DT", "VBG", "-NONE-", "VBD", "DT", "VBN", "CC", "VBN", "-NONE-", ":", "NNP", "NNP", "NNP", ",", "NNP", "NNP", ",", "NNP", ",", "VBN", "-NONE-", "$", "CD", "-NONE-", "CC", "VBN", "-NONE-", "-NONE-", "TO", "VB", "$", "CD", "-NONE-", ":", "NNP", "NNP", "NNP", ",", "NNP", ",", "NNP", ",", "VBN", "-NONE-", "$", "CD", "-NONE-", "CC", "VBN", "-NONE-", "-NONE-", "TO", "VB", "$", "CD", "-NONE-", ":", "NNP", "NNP", "NNP", ",", "NNP", "NNP", ",", "NNP", ",", "VBN", "-NONE-", "$", "CD", "-NONE-", ".", "NNP", "NNP", ",", "DT", "VBN", "NN", "IN", "DT", "NN", "NN", ",", "VBD", "-NONE-", "PRP", "``", "VBD", "RP", "''", "IN", "PRP", "VBD", "RB", "VB", "-NONE-", "PRP", "VBD", "VBG", "NNS", "NNS", ".", "``", "NN", "NNS", "VBP", "VBN", "VBN", "-NONE-", "IN", "PRP$", "NNS", "IN", "-NONE-", "VBG", "VBN", "NNS", ",", "''", "PRP", "VBD", "-NONE-", ",", "``", "CC", "PRP", "VBP", "RB", "VBG", "NN", "CC", "JJ", "NN", "IN", "IN", "PRP", "MD", "VB", "JJ", "NNS", ".", "''", "DT", "NN", "-NONE-", "VBD", "VBN", "-NONE-", "CC", ",", "WRB", "-NONE-", "VBN", "-NONE-", "-NONE-", ",", "VBN", "-NONE-", "CC", "VBD", "TO", "NNS", "IN", "-NONE-", "VBG", "CC", "VBG", "NN", ":", "NNP", "NNP", "NNP", ",", "NNP", ",", "NNP", ",", "$", "CD", "-NONE-", "NN", ":", "NNP", "NNP", "NNP", ",", "NNP", ",", "$", "CD", "-NONE-", "NN", "CC", "JJ", "NN", ":", "NNP", "NNP", "NNP", ",", "NNP", "NNP", ",", "NNP", ",", "$", "CD", "-NONE-", "NN", ",", "JJ", "NN", "CC", "JJ", "NN", "IN", "DT", "NN", ":", "NNP", "NNP", "NNP", ",", "NNP", "NNP", ",", "NNP", ",", "$", "CD", "-NONE-", "NN", "CC", "JJ", "NN", ":", "NNP", "NNP", "NNP", ",", "NNP", ",", "NNP", ",", "$", "CD", "-NONE-", "NN", ":", "NNP", "NNP", "NNP", ",", "NNP", "NNP", ",", "$", "CD", "-NONE-", "NN", "CC", "JJ", "NN", ":", "NNP", "NNP", "NNP", ",", "NNP", "NNP", ",", "NNP", ",", "$", "CD", "-NONE-", "NN", ":", "NNP", "NNP", "NNP", ",", "NNP", ",", "NNP", ",", "$", "CD", "-NONE-", "NN", "CC", "JJ", "NN", ":", "NNP", "NNP", "NNP", ",", "NNP", "NNP", ",", "$", "CD", "-NONE-", "NN", "CC", "JJ", "NN", ":", "NNP", "NNP", "NNP", ",", "NNP", "NNP", ",", "$", "CD", "-NONE-", "NN", "CC", "JJ", "NN", ":", "NNP", "NNP", "NNP", ",", "NNP", "NNP", ",", "NNP", ",", "$", "CD", "-NONE-", "NN", ":", "NNP", "NNP", "NNP", ",", "NNP", ",", "NNP", ",", "$", "CD", "-NONE-", "NN", "CC", "JJ", "NN", ":", "NNP", "NNP", "NNP", ",", "NNP", ",", "NNP", ",", "$", "CD", "-NONE-", "NN", "CC", "JJ", "NN", ":", "NNP", "NNP", "NNP", ",", "NNP", "NNP", ",", "NNP", ",", "$", "CD", "-NONE-", "CC", "JJ", "NN", ":", "NNP", "NNP", "NNP", ",", "NNP", "NNP", ",", "$", "CD", "-NONE-", "CC", "JJ", "NN", ":", "CC", "NNP", "NNP", "NNP", ",", "NNP", "NNP", ",", "NNP", ",", "JJ", "NN", ".", "``", "PRP", "VBD", "RB", "RB", "RB", "VBN", "-NONE-", "IN", "DT", "NNS", "NNS", ",", "''", "VBD", "-NONE-", "NNP", "NNP", ".", "``", "PRP", "RB", "VBD", "DT", "NNS", "IN", "DT", ".", "PRP", "-NONE-", "VBD", "RB", "DT", "JJ", "NN", "-NONE-", "TO", "VB", "DT", "NN", ",", "''", "PRP", "VBD", "-NONE-", "-NONE-", ",", "-NONE-", "VBG", ",", "``", "PRP", "MD", "RB", "RB", "RB", "RB", "VB", "IN", "''", "NNS", "IN", "DT", "NN", ".", "NN", "NNS", "VBP", "JJ", "IN", "-NONE-", "VBG", "IN", "IN", "PRP", "VBP", "VBN", "-NONE-", "IN", "DT", "NNP", ",", "PRP", "MD", "RB", "VB", "TO", "JJ", "NN", "NNS", ".", "CC", "IN", "NNP", "CC", "NNP", ",", "WRB", "JJ", "NN", "RB", "VBZ", "DT", "JJ", "CC", "VBG", "NN", "-NONE-", ",", "NNS", "VBP", "-NONE-", "DT", "NN", "IN", "NNS", "VBP", ".", "NN", "NNS", ",", "RB", "IN", "NNP", ",", "RB", "MD", "VB", "DT", "NN", "IN", "NN", "NN", "IN", "NNS", "VBG", "-NONE-", "TO", "VB", "RP", "DT", "NNP", "NN", "IN", "PRP$", "NNS", "CC", "VBG", "RB", "IN", "PRP$", "NN", ".", "NNP", "VBZ", "``", "RB", "VBN", "''", "IN", "DT", "JJ", "NNS", "IN", "NN", "NN", ",", "DT", "JJ", "JJ", "NN", "VBD", "-NONE-", "-NONE-", "IN", "DT", "NNP", "CD", "NN", "NN", "IN", "NNP", "NNP", ".", "NNP", "NN", "NNS", "VBP", "RB", "RB", "VBN", "-NONE-", "IN", "NNP", "RB", ".", "CC", "IN", "IN", "DT", "NN", "NN", ",", "DT", "JJ", "-NONE-", "CC", "DT", "NNP", "-NONE-", "NNS", "POS", "NN", "NNS", "VBP", "RB", "VB", ".", "PRP", "DT", "VBZ", "RP", "TO", "DT", "NN", "TO", "JJ", "NN", "NN", ",", "DT", "RBS", "JJ", "NN", "IN", "NNP", "NN", "NN", "WDT", "-NONE-", "VBZ", "-NONE-", "TO", "VB", "JJ", "NNS", "IN", "NNS", "IN", "NNS", "IN", "NNP", "NNP", "CC", "DT", "NN", "IN", "DT", "NNS", "NN", "IN", "NNP", "VBN", "IN", "DT", "NNS", ".", "IN", "CD", "NN", "IN", "DT", "NN", "NN", "IN", "NNP", "NNP", "NNP", "NNP", "NNS", "IN", "NNP", "VBD", "NN", "IN", "JJ", "NNS", ",", "VBG", "TO", "NNP", "NNP", "NNS", ".", "CC", "PRP", "-NONE-", "VBZ", "JJ", "-NONE-", "TO", "VB", "NNP", "VBG", "-NONE-", "TO", "VB", "JJ", "JJ", "NNS", ".", "NNP", "POS", "NNP", "NNP", "RB", "VBZ", "VBG", "JJ", "NNS", "POS", "NN", "-NONE-", "TO", "VB", "IN", "NN", "NNS", "VBP", "VBN", "-NONE-", "-NONE-", "TO", "VB", "IN", "DT", "JJ", "NN", "IN", "NN", "NN", ",", "VBD", "-NONE-", "-NONE-", "NNP", "NNP", ",", "NN", "NN", "IN", "JJ", "NN", ".", "NN", "NN", "VBZ", "VBN", "RB", "IN", "NNP", "IN", "JJ", "NN", "POS", "NN", "IN", "JJ", "NN", "NNS", "NN", "IN", "DT", "NNP", "CC", "NNP", "NN", "NNS", ".", "CC", "NNS", "VBP", "JJ", ".", "PRP", "VBP", "RB", "VBN", "DT", "NN", "IN", "NN", "NNS", "JJ", "NNP", "CD", ",", "WRB", "DT", "JJ", "NN", "IN", "JJ", "NN", "NN", "VBD", "NNS", "RB", "IN", "DT", "JJ", "JJ", "IN", "NN", "-NONE-", ",", "-NONE-", "JJ", "NNS", "WP", "-NONE-", "VBD", "-NONE-", "PRP", "VBD", "VBN", "JJ", "NNS", "-NONE-", "-NONE-", "TO", "VB", "PDT", "DT", "NN", ".", "NNP", "POS", "NNP", "NNP", "VBD", "VBN", "RP", "NNS", "-NONE-", "-NONE-", "TO", "VB", "WRB", "JJ", "NNS", "NNS", "MD", "VB", "-NONE-", "IN", "DT", "JJ", "NN", "CC", "-NONE-", "TO", "VB", "NN", "NNS", "DT", "NN", "-NONE-", "TO", "VB", "NN", "IN", "NNS", "IN", "DT", "NN", ".", "``", "RB", "PRP", "VBD", "RB", "RB", ",", "''", "DT", "NNP", "NNP", "NN", "VBD", "-NONE-", "IN", "DT", "NNP", "CD", "NN", ".", "NNP", "POS", "NNS", "VBP", "IN", "VBN", "NNS", "IN", "JJ", "NN", "NNS", ".", "NNP", "POS", "VBG", "NN", "NNS", "VBP", "DT", "JJ", "NNP", "NNS", "NNS", ",", "IN", "DT", "NNP", "VBP", "VBG", "NN", ".", "DT", "NNP", "NNS", ",", "RB", "NNP", "NNP", "CC", "NNP", "NNP", "NNP", "NNP", ",", "VBP", "VBN", "DT", "JJ", "NN", "IN", "PRP$", "JJ", "NNS", "IN", "NN", "NN", ",", "DT", "IN", "NNS", "CC", "IN", "PRP$", "JJ", "NNS", ".", "-LRB-", "NNP", "NNP", "JJ", "NN", "VBD", "DT", "VBG", "NN", "IN", "NNP", "NNS", "NNS", "WDT", "-NONE-", "VBP", "VBN", "-NONE-", "VBG", "NN", "NN", "IN", "PRP$", "JJ", "NNS", ".", "-RRB-", "DT", "NNP", "NNP", "NNP", ",", "WP", "-NONE-", "VBZ", "NNP", "IN", "NNP", ",", "CC", "NNP", "NNP", "NNP", ",", "WP", "-NONE-", "VBZ", "NNP", "NNP", "RB", ",", "VBP", "DT", "JJ", "NN", "IN", "PRP$", "NNS", "POS", "NN", "IN", "NNP", "TO", "PRP$", "NN", "-NONE-", "TO", "VB", "JJ", ",", "JJ", "NN", "NNS", "TO", "JJ", "JJ", "NNS", ".", "PRP", "VBP", "RB", "VB", "NNS", "-NONE-", "TO", "VB", "RB", ".", "``", "PRP", "VBZ", "RB", "VBN", "JJ", "IN", "DT", "NNS", "RB", ",", "''", "NNP", "NNP", "VBD", "-NONE-", ".", "``", "DT", "JJ", "NN", "VBZ", "-NONE-", "TO", "VB", "IN", "DT", "NN", "NN", "RB", ":", "VBZ", "JJ", "RB", "-NONE-", "CC", "NN", "RB", "-NONE-", "IN", "DT", "NNS", "NN", "VBZ", "RB", "VBG", "DT", "JJ", "NN", "-NONE-", "PRP", "VBZ", "-NONE-", "-NONE-", "IN", "NNP", ".", "''", "DT", "NNP", "RB", "VBP", "VBG", "NN", "NNS", ".", "NN", "NN", "VBZ", "``", "NN", "-NONE-", "PRP", "VBP", "-NONE-", "TO", "VB", "-NONE-", "RB", ",", "''", "DT", "NN", "IN", "NNP", "POS", "NNP", "NNP", "VBD", "-NONE-", "-NONE-", ".", "``", "PRP", "VBP", "RB", "VB", "-NONE-", "EX", "VBZ", "NN", "IN", "NN", "IN", "DT", "NN", ".", "''", "NNP", "VBZ", "RB", "IN", "DT", "NN", "IN", "NN", "NN", "IN", "NNP", "NNS", ".", "NN", "NNS", "VBD", "-NONE-", "NNP", "VBZ", "JJ", "NNS", ".", "JJ", ",", "DT", "NN", "VBZ", "VBN", "-NONE-", "IN", "DT", "NN", "CC", "VBZ", "RB", "VBN", "-NONE-", "IN", "CC", "DT", "NNP", "CC", "NNP", "NN", "NN", "NNS", ".", "JJ", ",", "PRP", "MD", "VB", "VBN", "-NONE-", "-NONE-", "TO", "VB", "NNS", "IN", "NNP", "NN", "VBZ", ",", "CC", "IN", "NNS", "VBN", "-NONE-", "TO", "DT", "JJ", "NN", "POS", "NNP", "NNP", "NN", ".", "IN", "NN", "TO", "DT", "JJ", "NN", "IN", "DT", "NNS", ",", "DT", "NNS", "MD", "RB", "VB", "RBR", "JJ", "-NONE-", "TO", "VB", ",", "IN", "DT", "NNS", "VBP", "RB", "VB", "-NONE-", "TO", "VB", "DT", "NN", "NN", "NN", "CC", "DT", "NN", "POS", "NN", ".", "RB", ",", "``", "RB", "RBR", "-LRB-", "NN", "NN", "-RRB-", "-NONE-", "VBZ", "VBN", "-NONE-", "IN", "RB", "IN", "IN", "DT", "NNP", "''", "VBD", "-NONE-", "-NONE-", "NNP", "NNP", ",", "NN", "NN", "NN", "IN", "NNP", "NNP", "NNP", "NNP", ",", "WDT", "-NONE-", "VBZ", "IN", "#", "CD", "CD", "-NONE-", "-LRB-", "$", "CD", "CD", "-NONE-", "-RRB-", "IN", "NNP", "NNP", "JJ", "NNS", ".", "NNP", "VBZ", "CD", "JJ", "NN", "NNS", ".", "DT", "NNP", "NNP", "NNP", "JJ", "NN", "NN", "NN", "VBZ", "VBN", "-NONE-", "IN", "DT", "NNP", "NNP", "NNP", "POS", "NNP", "NNPS", "NNP", ".", "CC", "DT", "NNP", "NNS", "NN", "VBZ", "VBN", "-NONE-", "IN", "DT", "NNP", "NNP", "NNP", "NNPS", "NNP", ".", "DT", "NNS", "VBP", "VBN", "DT", "NN", "IN", "DT", "CD", "JJ", "NN", "NN", ".", "DT", "JJ", "NN", "IN", "NNP", "NN", "NNS", "VBN", "-NONE-", "IN", "DT", "NNP", "NN", "VBZ", "VBN", "RB", "RB", "IN", "DT", "NN", "POS", "NN", "IN", "CD", ".", "DT", "NN", ",", "DT", "NN", "IN", "JJ", "NNS", "VBN", "-NONE-", "VBD", "CD", ",", "IN", "IN", "CD", "DT", "NN", "JJR", "CC", "IN", "CD", "IN", "CD", ".", "CC", "DT", "NN", "RB", "DT", "NN", "VBD", "IN", "DT", "NN", "IN", "NNS", "NN", "VBD", "RB", "CD", "NN", "IN", "DT", "NN", "IN", "DT", "VBG", "NN", "NN", ",", "NN", "NNS", "VBD", "-NONE-", "-NONE-", ".", "DT", "VBZ", "IN", "NNS", "IN", "DT", "NNP", "``", "NNS", "''", "NN", "VBZ", "RB", "CD", "NNS", "RB", "JJ", "IN", "DT", "VBG", "JJ", "NN", ".", "DT", "NNP", "VBD", "-NONE-", "TO", "VB", "DT", "JJ", "JJ", "NN", "IN", "DT", "JJ", "NN", "IN", "JJ", "CD", ",", "-NONE-", "VBG", "DT", "JJ", "CD", "NN", "IN", "DT", "NN", "NN", "VBN", "-NONE-", "IN", "NNP", "NNP", ".", "DT", "NN", "VBD", "IN", "DT", "NN", "JJ", "IN", "NNS", "IN", "DT", "NNS", "CC", "NNS", "IN", "DT", "JJ", "NN", "IN", "DT", "NN", "NN", ".", "NNS", "VBD", "-NONE-", "DT", "JJ", "NN", ",", "TO", "$", "CD", "-NONE-", "DT", "NN", "IN", "NNP", "CD", ",", "VBZ", "RB", "JJ", "IN", "DT", "VBG", "NN", ",", "IN", "NNS", "VBD", "IN", "DT", "NN", "MD", "RB", "VB", "JJ", "NN", "CC", "VB", "JJ", "NNS", "IN", "NNS", ".", "CC", "DT", "NN", "VBD", "DT", "NN", "VBN", "TO", "-NONE-", "IN", "NNP", "IN", "NNP", "NNP", "CC", "JJ", "NNS", "IN", "NNP", ",", "IN", "JJ", "NNPS", "VBD", "DT", "NNP", "NNP", "-NONE-", "TO", "VB", "DT", "NN", "IN", "PRP$", "JJ", "NN", "-NONE-", "TO", "VB", ".", "IN", "DT", "NNS", "VBD", "DT", "NN", ",", "WDT", "-NONE-", "MD", "VB", "TO", "DT", "JJ", "NN", "IN", "DT", "JJ", "NN", "IN", "DT", "JJ", "NN", "VBD", "VBN", "-NONE-", "IN", "CD", ",", "-NONE-", "VBG", "DT", "NN", "TO", "$", "CD", "-NONE-", "DT", "NN", "IN", "$", "CD", "-NONE-", ".", "IN", "DT", "NN", "VBD", "-NONE-", "NN", ",", "DT", "JJ", "NN", "MD", "VB", "TO", "$", "CD", "-NONE-", "JJ", "NNP", ".", "DT", "NNP", "VBZ", "-NONE-", "TO", "VB", "RP", "DT", "NN", "RB", "CC", "VBZ", "VBN", "-NONE-", "TO", "VB", "PRP", ".", "``", "EX", "VBP", "DT", "NNS", "IN", "DT", "NN", ",", "''", "NNP", "NNP", "NNP", "-LRB-", "NNP", ",", "NNP", ".", "-RRB-", "VBD", "-NONE-", "IN", "NNP", "NN", "NN", "NN", ".", "CC", "``", "IN", "PRP", "VBZ", "DT", "-NONE-", "PRP", "VBP", "VBN", "-NONE-", ",", "PRP", "VBP", "VBG", "-NONE-", "TO", "VB", "IN", "PRP", ".", "''", "IN", "DT", "JJ", "NN", "VBD", "RB", "VBN", "VBN", "-NONE-", "IN", "PDT", "DT", "JJ", "NNP", "NN", "NN", ",", "DT", "NN", "IN", "$", "CD", "-NONE-", "DT", "NN", "IN", "CD", "MD", "RB", "VB", "JJR", "IN", "CD", "NN", "IN", "JJ", "NN", "NN", ",", "NNP", "NNP", "VBD", "-NONE-", "-NONE-", ".", "CC", "NNP", "NNP", "NNP", "-LRB-", "NNP", ",", "NNP", ".", "-RRB-", "RB", "VBD", "DT", "NNP", "POS", "NN", "IN", "DT", "JJ", "NN", "``", "NN", "''", "NN", ",", "DT", "NN", "IN", "NNP", "NNS", "VBP", "VBN", "-NONE-", "IN", "JJ", "NNS", ".", "-NONE-", "VBG", "DT", "JJ", "NN", "VBZ", "``", "-NONE-", "VBG", "IN", "DT", "NN", "CC", "NN", "IN", "DT", "JJ", "NN", ",", "''", "NNP", "NNP", "VBD", "-NONE-", "-NONE-", ".", "NN", "NNS", "VBP", "DT", "NN", "NN", "IN", "-NONE-", "VBG", "-NONE-", "TO", "VB", "DT", "NN", "IN", "NNS", "IN", "DT", "NN", "IN", "DT", "JJ", "NN", ",", "CC", "PRP", "VBP", "RB", "VBN", "PRP", "RB", "JJ", "-NONE-", "TO", "VB", "-NONE-", "VB", "NN", "NNS", "TO", "NNS", "IN", "DT", "NN", "NN", ".", "NN", "NNS", "CC", "NNPS", "RB", "VBD", "DT", "NN", ",", "CC", "RB", "VBD", "TO", "PRP", "IN", "DT", "NN", "IN", "NNP", "NN", "NN", ".", "DT", "NN", "VBZ", "DT", "NN", "NN", "IN", "$", "CD", "-NONE-", "DT", "NN", "IN", "NNP", ",", "CC", "IN", "$", "CD", "-NONE-", "DT", "NN", ",", "CC", "CD", "NN", "IN", "DT", "JJ", "NN", ",", "IN", "NNP", "CD", ".", "NNS", "MD", "VB", "DT", "NN", "IN", "CD", "NNS", ",", "IN", "NN", ",", "TO", "NNS", "IN", "JJR", "IN", "CD", "NNS", "IN", "NN", "NN", "-NONE-", ",", "CC", "IN", "DT", "CD", "NNS", "IN", "DT", "NN", "VBZ", "DT", "JJ", "NN", "NN", "IN", "DT", "JJ", "NNS", ".", "DT", "NN", "NN", "VBZ", "JJ", "NNS", "WP", "-NONE-", "VBP", "CD", "TO", "CD", "NNS", "JJ", ".", "DT", "NNP", "NNP", "RB", "VBD", "IN", "DT", "JJ", "JJ", "NN", "NN", "WDT", "-NONE-", "MD", "VB", "VBN", "-NONE-", "DT", "NN", "-NONE-", "DT", "NN", "IN", "DT", "NN", "VBD", "DT", "JJ", "NN", "-NONE-", ".", "DT", "NNP", "NNP", "IN", "NNP", ",", "-NONE-", "RB", "VBN", "TO", "DT", "NN", "NN", ",", "VBD", "-NONE-", "DT", "NN", "NN", "-NONE-", "TO", "VB", "DT", "NN", "NN", "CD", "NN", "IN", "CD", "NNS", "IN", "NNP", "CD", "CC", "NNP", "CD", "``", "MD", "VB", "JJ", "IN", "JJ", "NNS", "TO", "VB", "CC", "MD", "VB", "IN", "DT", "NN", "IN", "NNS", "IN", "JJ", "NNS", "CC", "JJR", "NNS", "IN", "JJ", "NNS", ".", "NNP", "NNP", "NNPS", "NNP", ",", "DT", "NN", "IN", "NNP", "NNP", "NNP", ",", "VBD", "DT", "$", "CD", "CD", "-NONE-", "NNP", "NN", "IN", "NN", "CC", "NNS", "IN", "NNS", "IN", "DT", "JJ", "NN", ".", "NNP", "NNP", "NNP", "VBD", "DT", "$", "CD", "CD", "-NONE-", "NNP", "NNP", "NN", "IN", "NN", "NN", "NN", "NN", ".", "NNP", "NNP", "NNP", "VBD", "VBN", "-NONE-", "DT", "$", "CD", "CD", "-NONE-", "NNP", "NNP", "NN", "IN", "NN", "NN", "CC", "VBG", "NN", ".", "NNP", "NNP", "NNP", "VBD", "DT", "$", "CD", "CD", "-NONE-", "NNP", "NNP", "NN", "IN", "NN", "NNS", "NN", ".", "IN", "CD", "NNS", ",", "NNP", "NNP", "NNP", "NNP", "VBZ", "VBN", "JJ", "NNS", "IN", "DT", "NNP", "NNP", "NN", ":", "JJ", "CC", "JJ", ".", "DT", "NN", "RB", ":", "MD", "PRP", "VB", "RBR", "IN", "JJ", "NNP", "NNP", ".", "NNP", "NNP", ",", "DT", "JJ", "NN", "CC", "NN", "JJ", "NN", "IN", "NNP", "NNP", "VBZ", "VBG", "DT", "NN", "NN", "POS", "JJ", "$", "CD", "CD", "-NONE-", "NN", "IN", "NNP", "NNP", "NNP", "NNP", ".", "NNP", "VBZ", "VBN", "DT", "NN", "DT", "JJ", "JJ", "NN", ",", "DT", "NN", "-NONE-", "NNP", "NNP", "VBZ", "RB", "VBN", "-NONE-", "IN", "PRP$", "CD", "JJR", "NNS", ",", "DT", "IN", "WDT", "-NONE-", "VBD", "VBN", "-NONE-", "IN", "DT", "NNS", ".", "IN", "RB", ",", "NNP", "NNP", "VBZ", "VBG", "-NONE-", "TO", "VB", "NNP", "IN", "-NONE-", "VBG", "DT", "JJ", "NN", "IN", "-NONE-", "VBG", "JJ", ".", "``", "PRP", "VBP", "VBN", "-NONE-", "TO", "VB", "RB", "NN", "IN", "DT", "NN", ",", "''", "PRP", "VBZ", "-NONE-", ".", "CC", "DT", "NN", "NN", "VBZ", "RP", "DT", "NN", "IN", "DT", "NN", "NN", ",", "IN", "DT", "-NONE-", "DT", "VBZ", "-NONE-", ".", "IN", "DT", "NN", "VBZ", "DT", "NN", ",", "IN", "NN", ",", "NNP", "NNP", "MD", "VB", "DT", "NN", "IN", "-NONE-", "VBG", "DT", "NN", "IN", "NNP", "CC", "VBG", "DT", "NN", "NN", "IN", "DT", "NNS", "IN", "DT", "NN", ".", "-NONE-", "VBN", "-NONE-", "DT", "NN", ",", "NNS", "IN", "NNP", "NNP", "CC", "NN", "NNS", "VBP", "-NONE-", "DT", "JJ", "NN", "NN", ":", "WP", "-NONE-", "VBZ", "VBN", "DT", "NN", "IN", "-NONE-", "RB", "VBG", "IN", "NN", ":", "MD", "VB", ".", "``", "EX", "VBZ", "DT", "NN", "IN", "WDT", "PRP", "VBP", "JJ", "-NONE-", "NNP", "VBZ", "DT", "NN", "-NONE-", "-NONE-", "RB", "TO", "VB", "-NONE-", "-NONE-", ",", "''", "VBZ", "-NONE-", "NNP", "NNP", ",", "NNP", "POS", "JJ", "NN", "NN", "IN", "NN", "CC", "NN", ".", "VBZ", "-NONE-", "JJ", "NN", "NNP", "NNP", ",", "NN", "NN", ",", "JJ", "NN", ",", "IN", "NNP", "NNPS", "NNP", ":", "``", "PRP", "VBZ", "RB", "IN", "DT", "JJ", "NN", "IN", "-NONE-", "VBG", "IN", "DT", "NN", ".", "''", "PRP", "RB", "VBZ", "DT", "NN", "NN", ",", "NNS", "VBP", "-NONE-", "-NONE-", ".", "DT", "NN", "-NONE-", "TO", "VB", "DT", "NN", "IN", "NNP", ",", "IN", "NN", ",", "VBD", "VBN", "-NONE-", "RB", "IN", "DT", "CD", "NNS", "IN", "NNP", "POS", "NN", "NN", "VBD", "IN", "DT", "NN", ":", "RB", "IN", "NNP", "NNP", "VBD", "-NONE-", "PRP", "VBD", "-NONE-", "TO", "VB", "IN", "DT", "NN", "RB", "IN", ",", "VBZ", "-NONE-", "-NONE-", "NNP", "NNP", ".", "NNS", "VBP", "-NONE-", "NNP", "NNP", "VBD", "RP", "DT", "JJ", "NN", "TO", "NN", "IN", "NN", "IN", "NNP", "NNP", "NNP", ".", "-NONE-", "VBG", "DT", "NN", "IN", "DT", "NN", "IN", "CD", ",", "PRP", "VBD", "IN", "NN", ",", "IN", "-NONE-", "VBZ", "DT", "NN", "IN", "NNS", ",", "VBZ", "-NONE-", "-NONE-", "NNP", "NNP", "NNP", ",", "DT", "NN", "NN", "WP", "-NONE-", "VBZ", "VBG", "DT", "NN", "IN", "NNP", "NNP", ".", "CC", "PRP", "RB", "VBD", "DT", "NN", "-NONE-", "TO", "VB", "DT", "JJ", "NN", ".", "IN", "CD", ",", "NNP", "NNP", "VBD", "RP", "NN", "NNS", "TO", "VB", "NN", "NNS", "WP", "-NONE-", "VBD", "VBG", "DT", "NN", "NN", ".", "DT", "VBN", "NNP", "NNP", "NNP", ",", "NNP", "POS", "NN", "JJ", "IN", "DT", "NN", ",", "WP", "NNP", "NNP", "VBD", "VBN", "-NONE-", "IN", "-NONE-", "VBG", "IN", "DT", "NN", ".", "IN", "CD", ",", "NNP", "NNP", "VBD", "NNP", "NNP", "IN", "-NONE-", "VBG", "DT", "NN", "IN", "JJ", "NN", "NN", "IN", "NN", "IN", "NNS", ":", "DT", "NN", "VBD", "JJ", "IN", "NNP", "WP", "-NONE-", "VBD", "RB", "VB", "-NONE-", "DT", "NN", "NN", "MD", "VB", "DT", "NN", "TO", "DT", "JJ", "NN", ".", "CC", "NNP", "NNP", "VBD", "RB", "IN", "DT", "NNS", ",", "-NONE-", "VBG", "DT", "JJ", "NN", "IN", "PRP", "VBZ", "-NONE-", "PRP", "VBD", "-NONE-", "PRP", "VBD", "-NONE-", "RB", "IN", ".", "-NONE-", "DT", "NN", "IN", "DT", "NN", ",", "NNP", "NNP", "VBD", "JJ", "NN", "IN", "PRP$", "NN", "NN", "VBD", "RB", "RB", "IN", "PRP$", "NNS", ".", "-NONE-", "VBG", "RB", "IN", "NN", ",", "PRP", "VBD", "NNP", "NNP", "NNP", "IN", "DT", "NNP", "IN", "NNP", "IN", "NN", "CD", ",", "IN", "-NONE-", "VBG", "RB", "CD", "CD", "NNS", "IN", "NN", ".", "PRP", "VBD", "PRP$", "NN", "IN", "JJ", "NN", "IN", "DT", "NNP", "NNP", "IN", "NNP", ".", "NNP", "NNP", "VBZ", "IN", "PRP", "VBZ", "DT", "``", "JJ", "''", "NN", ",", "CC", "NNS", "VBP", "-NONE-", "DT", "VBZ", "DT", "NN", ".", "PRP", "VBP", "PRP", "``", "JJ", "''", ".", "NNP", "NNP", "RB", "VBZ", "VBN", "DT", "JJ", "NN", "IN", "NNP", ".", "-NONE-", "VBG", "RP", "RB", "NN", "JJ", "NN", "IN", "CD", ",", "PRP", "VBD", "DT", "NN", "WDT", "-NONE-", "VBD", "VBN", "-NONE-", "IN", "NN", "CC", "VBN", "-NONE-", "IN", "DT", "JJ", "NN", "IN", "PRP$", "NNS", "NN", ".", "NNP", "NNP", "VBD", "-NONE-", "VBG", "JJ", "NNS", ",", "JJ", "IN", "NN", "CC", "NN", "CC", "NNS", ".", "PRP", "RB", "VBD", "CD", "NN", "WDT", "-NONE-", "VBD", "NN", "NN", "NNS", ".", "IN", "DT", "JJ", "NN", ",", "PRP", "VBD", "-NONE-", "VBG", "RP", "DT", "NN", "CC", "NN", "NN", "IN", "DT", "NN", "NN", "-NONE-", "NN", "NN", "NNS", "IN", "NN", "NN", "CC", "NN", ",", "RB", "IN", "NNS", "IN", "JJ", "NN", ".", "DT", "NN", "VBD", "-NONE-", "TO", "VB", "NN", "NNS", "IN", "NNS", "IN", "JJ", "NN", ".", "DT", "NN", "VBZ", "VBN", "RP", ",", "RB", "RB", ".", "NNP", "POS", "NNS", "VBD", "TO", "$", "CD", "CD", "-NONE-", "JJ", "NN", ",", "VBN", "IN", "$", "CD", "CD", "-NONE-", "IN", "CD", ",", "WRB", "NNP", "NNP", "VBD", "DT", "NNS", "-NONE-", ".", "NN", "IN", "VBG", "NNS", "VBZ", "VBN", "TO", "$", "CD", "CD", "-NONE-", "IN", "$", "CD", "CD", "-NONE-", ".", "NNP", "NNP", "VBZ", "DT", "NNS", "TO", "DT", "NN", "IN", "-NONE-", "VBG", "IN", "WP", "DT", "NN", "VBZ", "-NONE-", "JJS", ".", "``", "DT", "NN", "IN", "NNS", "WDT", "-NONE-", "VBP", "VBN", "VBZ", "RB", "DT", "DT", "JJ", ",", "''", "PRP", "VBZ", "-NONE-", ".", "NNP", "MD", "RB", "VB", "DT", "NN", ".", "PRP", "MD", "VB", "DT", "JJ", "NN", ",", "NNP", "NNP", "CC", "JJ", "NNS", "VBP", "-NONE-", "-NONE-", ",", "IN", "CD", "JJ", "NNS", "IN", "JJ", "NNS", "CC", "JJ", "NN", "VBZ", ".", "DT", "VBG", "NN", "MD", "VB", "DT", "JJS", "NNS", "NN", "IN", "DT", "NN", "IN", "VBN", "NNS", "IN", "JJR", "IN", "$", "CD", "CD", "-NONE-", ".", "CC", "MD", "NNP", "NNP", "VB", "PRP", "IN", ".", "IN", "DT", "NN", ",", "NN", "NNS", "VBP", "-NONE-", "-NONE-", ",", "PRP", "VBZ", "VBG", "JJ", "NNS", ".", "VBZ", "-NONE-", "NNP", "NNP", ",", "DT", "NN", "IN", "NNP", "NNP", "NNP", ":", "``", "DT", "VBZ", "DT", "JJS", "NN", "NN", "-NONE-", "PRP", "VBZ", "VBN", "-NONE-", ".", "DT", "NNP", "NN", "VBD", "JJ", "NNS", "IN", "DT", "NN", "IN", "JJR", "IN", "$", "CD", "CD", "-NONE-", "IN", "JJ", "NN", "IN", "NNP", "WDT", "-NONE-", "VBZ", "RB", "IN", "$", "CD", "CD", "-NONE-", "IN", "NN", "CC", "NN", "NNS", "IN", "JJ", "CD", "IN", "NNS", "IN", "-NONE-", "VBG", "JJ", "NN", "CC", "NN", ".", "IN", "DT", "NNP", "IN", "NNP", "NNP", ",", "NNS", "VBD", "$", "CD", "CD", "-NONE-", "IN", "JJ", "NN", "NNS", "IN", "DT", "VBN", "NN", "NN", "NN", "NN", ",", "CC", "JJ", "NN", "NNS", "IN", "DT", "NNP", "NNP", "NNP", "NNP", "VBP", "VBN", "-NONE-", "IN", "$", "CD", "CD", "-NONE-", "IN", "JJ", "CD", "IN", "NN", "IN", "DT", "JJ", "NNP", "NN", ".", "DT", "NN", "VBD", "IN", "JJS", "$", "CD", "CD", "-NONE-", "IN", "JJ", "NN", "CC", "NN", "NN", "IN", "RB", ",", "CC", "IN", "DT", "NN", "VBD", "VBN", "-NONE-", ",", "DT", "NNS", "VBP", "VBN", "TO", "-NONE-", "VBG", "JJR", "IN", "$", "CD", "CD", "-NONE-", "IN", "JJ", "NN", "NNS", "CC", "JJ", "NNS", "VBN", "-NONE-", "IN", "DT", "NNP", "NN", ".", "DT", "NN", "IN", "NNP", "VBZ", "IN", "DT", "JJ", "NNS", "VBG", "IN", "DT", "VBG", "JJ", "NN", "NN", ",", "WDT", "-NONE-", "VBZ", "RB", "VBN", "NN", "NNS", "IN", "DT", "NNP", "NNP", "CC", "VBZ", "RB", "VBN", "IN", "DT", "NN", "POS", "NN", ".", "DT", "JJ", "NNS", "VBP", "RB", "DT", "NN", "IN", "-NONE-", "VBG", "DT", "NNP", "NN", ",", "CC", "IN", "RBR", "JJ", "VBG", "NN", "VBZ", "RB", "VBG", ",", "DT", "NNS", "NN", "IN", "NN", "MD", "VB", "RBR", "JJ", "IN", "NNP", "NN", "TO", "NNP", "NNP", ".", "-NONE-", "TO", "VB", "DT", "JJ", "NN", "NN", ",", "DT", "NNP", "NNPS", "NNP", "JJ", "NN", "VBD", "VBN", "-NONE-", "TO", "VB", "DT", "VBN", "$", "CD", "CD", "-NONE-", "IN", "DT", "NNP", ".", "CC", "IN", "DT", "NN", "IN", "DT", "NN", "NNS", "VBN", "-NONE-", "NN", "VBZ", "JJ", ",", "JJ", "NN", "IN", "DT", "JJ", "NN", "IN", "NNP", "NNP", "VBZ", "IN", "PRP", "MD", "VB", "JJ", "NNS", "IN", "DT", "JJ", "JJ", "NN", "MD", "RB", "VB", "DT", "NN", "RB", ".", "DT", "NN", "IN", "NNP", "VBD", "IN", "DT", "NN", "RB", "VBD", "$", "CD", "CD", "-NONE-", "IN", "JJ", "NN", "VBG", "NNS", ",", "DT", "CD", "NN", "NN", "IN", "JJ", "CD", ".", "DT", "NNP", "CC", "NNP", "VBP", "VBN", "-NONE-", "IN", "IN", "DT", "NNP", "NNPS", "NNP", "NNP", "MD", "VB", "DT", "NN", "IN", "DT", "NNS", ",", "CC", "DT", "NN", "IN", "DT", "NN", "VBZ", "PRP", "JJ", ".", "IN", "DT", "JJ", "NN", "IN", "JJ", "NN", ",", "DT", "NN", "NN", ",", "DT", "JJ", "$", "CD", "CD", "-NONE-", "-NONE-", "MD", "VB", "VBN", "-NONE-", "IN", "NN", "NN", "-NONE-", "-NONE-", "TO", "VB", "DT", "NN", "IN", "NNS", ",", "VBN", "DT", "TO", "JJ", "NN", "CC", "DT", "NN", "IN", "DT", "JJ", "NN", ".", "DT", "JJ", "NN", "IN", "DT", "NN", "VBZ", "DT", "NN", "IN", "JJ", "NN", "NNS", ",", "VBG", "IN", "DT", "NN", "NN", "IN", "DT", "NNP", "NN", "NN", "TO", "DT", "JJ", "CC", "JJ", "NN", "IN", "NN", "VBG", "NNS", "IN", "DT", "NN", "IN", "NNP", "POS", "NN", "IN", "NNS", "TO", "DT", "JJ", "NNP", "NN", ".", "NNP", "VBD", "VBN", "-NONE-", "IN", "DT", "NN", "IN", "IN", "NNP", "NNS", "IN", "DT", "NNP", "NN", ",", "CC", "DT", "NNP", "NNP", "NN", "MD", "VB", "VBN", "DT", "NN", "IN", "CD", "JJ", "NNS", "IN", "DT", "JJ", "NN", "VBG", "NNP", "CD", ",", "CD", ".", "IN", "DT", "NN", "IN", "DT", "NN", "VBZ", "RB", "VBN", "VBN", "-NONE-", ",", "VBG", "TO", "DT", "NN", ",", "CC", "DT", "VBG", "CD", "NNS", "VBP", "RB", "DT", "JJ", "NN", "IN", "NNS", "IN", "DT", "JJ", "NNP", "NN", "IN", "CD", "NNS", "DT", "NN", "VBZ", "RB", "JJ", "IN", "DT", "NN", "DT", "NN", "IN", "DT", "NN", "NN", ".", "DT", "JJ", "NNS", "VBP", "RB", "$", "CD", "CD", "-NONE-", ",", "CC", "NNP", "NNP", "NNP", "NNP", "NNP", "-LRB-", "NNP", ",", "NNP", ".", "-RRB-", "VBD", "DT", "NN", "DT", "NN", "IN", "-NONE-", "VBG", "NN", "IN", "DT", "NN", "VB", "VBN", "-NONE-", "TO", "JJ", "NNS", "IN", "DT", "NNP", ",", "JJ", "IN", "NNP", "CC", "NNP", ".", "NNP", "NNP", "NNP", ",", "DT", "JJ", "NN", ",", "VBD", "DT", "NN", "IN", "PRP$", "JJ", "VBN", "-NONE-", "TO", "VB", "NNP", ",", "CC", "DT", "NNP", "RB", "VBD", "DT", "NN", "RB", "IN", "-NONE-", "VBG", "DT", "NNS", "IN", "DT", "NNP", "NNP", "NNP", "NN", "RB", "RB", "IN", "DT", "NNP", ":", "-NONE-", "VBN", "-NONE-", "IN", "DT", "JJ", "NNP", "NNP", "NNP", "NNP", "NNP", ".", "NNP", ",", "JJ", "IN", "-NONE-", "VBG", "PRP$", "NNP", "NNP", "NNS", ",", "VBZ", "RB", "VBN", "PRP$", "NN", "-NONE-", "TO", "VB", "DT", "NN", "RB", "VBN", "-NONE-", "IN", "NNP", "NNP", ",", "CC", "DT", "JJR", "NN", "VBZ", "IN", "NNP", "NNP", ",", "WP", "-NONE-", "VBZ", "JJ", "NNS", "TO", "DT", "NN", "NN", ",", "VBZ", "JJ", "-NONE-", "TO", "VB", "DT", "NN", "IN", "DT", "NNPS", ".", "IN", "JJ", "NN", "NN", ",", "DT", "NNP", "VBD", "NN", "NNS", "CC", "VBD", "JJ", "NN", "TO", "$", "CD", "CD", "-NONE-", "IN", "JJ", "NNS", "IN", "NN", "NN", "CC", "JJ", "NNS", "IN", "JJ", "CD", ".", "DT", "NN", "VBZ", "VBN", "-NONE-", "TO", "DT", "VBN", "$", "CD", "CD", "-NONE-", "NN", "NN", "WDT", "-NONE-", "VBZ", "-NONE-", "JJ", "TO", "DT", "NNP", "CC", "VBZ", "IN", "PRP", "DT", "VBN", "JJ", "NN", "NN", "IN", "RB", "DT", "NNP", "JJ", "NN", "NNS", ".", "DT", "NN", "VBZ", "-NONE-", "TO", "VB", "DT", "NN", "NN", "RB", "TO", "DT", "NNP", "NNP", ",", "CC", "IN", "JJ", "NNS", ",", "DT", "NNP", "VBZ", "VBN", "RB", "JJ", "-NONE-", "TO", "VB", "NNS", "RB", "TO", "DT", "NNP", ".", "DT", "RBS", "JJ", "NN", "VBD", "DT", "RB", "$", "CD", "CD", "-NONE-", "JJ", "CD", "NN", "VBG", "DT", "NNP", ",", "NNP", "CC", "NNP", "NNS", ".", "CC", "IN", "-NONE-", "VBG", "DT", "NN", "NNP", "NN", "IN", "DT", "NNP", "NNP", "NNP", "NNP", ",", "NNS", "IN", "DT", "NNS", "VBP", "VBN", "-NONE-", "TO", "VB", "VBN", "-NONE-", "RB", "TO", "NN", ".", "NN", "VBZ", "NN", "TO", "NNP", "IN", "NNPS", "NN", "VBZ", "IN", "JJS", "IN", "DT", "NN", "POS", "JJ", "NNS", "VBP", "-NONE-", "TO", "VB", "VBN", "CC", "VBN", "-NONE-", ".", "CC", "EX", "VBZ", "NN", "IN", "WRB", "-NONE-", "TO", "VB", "PRP", "-NONE-", ".", "NN", "NNS", "VBP", "-NONE-", "DT", "JJ", "NNS", "IN", "JJR", "NNS", "VBP", "RB", "JJ", "RB", "-NONE-", "TO", "VB", "NNS", "IN", "-NONE-", "VBG", "IN", ".", "CC", "JJ", "NNS", "VBP", "RB", "VB", "-NONE-", "TO", "VB", "DT", "NNS", "POS", "JJ", ",", "RB", "JJ", ",", "NNS", ".", "``", "DT", "JJ", "NN", "IN", "DT", "NN", "VBZ", "-NONE-", "TO", "VB", "DT", "NN", "CC", "RB", "TO", "VB", "DT", "JJ", "NN", ",", "''", "VBZ", "-NONE-", "NNP", "NNP", ",", "DT", "NN", "IN", "DT", "NNP", "NNP", "NNP", ".", "PRP", "CC", "NNS", "VBP", "-NONE-", "TO", "VB", "NNS", "JJ", "IN", "DT", "``", "NN", "NN", "NN", "NN", ",", "''", "DT", "JJ", "JJ", "NN", "IN", "DT", "NNS", ".", "IN", "NNP", ",", "NNP", ",", "DT", "NN", "NN", "NN", "VBZ", "VBG", "VBN", "-NONE-", "-NONE-", "TO", "VB", "JJ", "NNS", "IN", "DT", "NNP", "NNP", "NNP", ".", "NNP", "NNP", ",", "WP", "-NONE-", "VBZ", "NN", "IN", "NNP", "NNP", ",", "VBZ", "DT", "JJ", "NN", "``", "RB", "DT", "JJ", "NN", "''", "CC", "CD", "WDT", "-NONE-", "VBZ", "DT", "NN", "IN", "DT", "JJ", "NN", "IN", ".", "IN", "NNP", ",", "NNP", ",", "DT", "NNP", "NNP", "NNP", "MD", "RB", "VB", "VBN", "-NONE-", ",", "DT", "JJ", "NNS", "IN", "PRP$", "NNS", "VBN", "TO", "DT", "NN", ".", "NNS", "VBP", "JJ", ".", "NNS", "IN", "NNP", ",", "NNP", ",", "-NONE-", "VBN", "IN", "NNS", "TO", "DT", "NN", ",", "VBD", "DT", "NN", ":", "DT", "NN", "NN", "IN", "DT", "NN", "MD", "VB", "NN", "NN", ",", "IN", "DT", "JJ", "NN", "MD", "VB", "DT", "JJ", "NN", "POS", "JJ", "NN", ".", "RB", ",", "NN", "NNS", "VBD", "-NONE-", "TO", "VB", "DT", "JJ", "NNS", "IN", "DT", "NNP", "NNP", "IN", "NNP", ",", "NNP", ",", "RB", "RB", "IN", "PRP", "MD", "VB", "DT", "JJ", "NN", "IN", "DT", "NN", "CC", "DT", "NN", ".", "NNP", "NNP", ".", "NN", "NN", "VBZ", "IN", "NNS", "-NONE-", "VBG", "NNS", "RB", "VBD", "JJR", ",", "CC", "RB", "VBZ", "NNP", "NNP", ",", "DT", "NN", "IN", "DT", "NNP", ".", "DT", "NNP", "NN", "POS", "NN", "NN", ",", "-NONE-", "VBD", "-NONE-", "TO", "VB", "NN", "NNS", "IN", "NN", "NNS", "CC", "NN", "NNS", ",", "VBZ", "DT", "JJ", "NNS", "VBN", "-NONE-", "IN", "NNS", "IN", "NN", ",", "RB", "DT", "NNS", "VBP", "IN", "DT", "NN", "IN", "NNS", ".", "DT", "JJ", "NN", "MD", "VB", "RB", "JJ", "IN", "CD", "NNS", "IN", "RB", ".", "NNP", "NNP", "NNP", "VBZ", "-NONE-", "PRP$", "NN", "RB", "VBZ", "NN", ".", "NNS", "VBP", "RB", "RB", "VBN", "-NONE-", ".", "PRP", "RB", "VBZ", "-NONE-", "DT", "NN", "VBZ", "JJR", "CC", "VBZ", "RP", "JJR", "NN", "IN", "JJS", "NN", "NNS", ".", "DT", "JJ", "NN", "NNS", "VBP", "VBG", "PRP", "DT", "NN", ".", "DT", "NN", "VBZ", "DT", "NNS", ".", "DT", "NN", "VBZ", "-NONE-", "TO", "VB", "NN", "-NONE-", "-NONE-", "TO", "VB", "DT", "NN", "IN", "-NONE-", ",", "IN", "DT", "NN", "VBZ", "DT", "NN", "NN", ".", "IN", "PRP", "VBZ", "RP", "IN", "VBN", "NN", ",", "PRP", "VBZ", "RB", "JJ", ".", "CC", "IN", "DT", "NNS", ",", "EX", "VBZ", "DT", "NN", "IN", "NN", ".", "NN", "IN", "FW", "VBZ", "NN", "NN", "DT", "NN", "IN", "NNP", "CC", "JJ", "NNS", "VBZ", "NN", "IN", "DT", "NNS", ".", "DT", "NN", "IN", "JJ", "NN", "CC", "NN", "VBD", "IN", "NNP", "IN", "NNP", "CC", "MD", "VB", "TO", "CD", "JJ", "JJ", "NNS", ".", "DT", "NN", "VBZ", "DT", "NN", ",", "IN", "DT", "NN", "TO", "NNS", "TO", "DT", "NN", "IN", "DT", "NNP", "NN", ".", "DT", "NN", "VBZ", "IN", "JJ", "NN", "CC", "VBZ", "DT", "NN", "NN", "-NONE-", "TO", "VB", "NN", "NNS", "IN", "NNP", "CC", "NNP", "POS", "NNP", "NNP", ".", "NNP", "NNP", ",", "NN", "IN", "DT", "NNP", "NN", ",", "VBZ", "NNS", "DT", "IN", ".", "DT", "NNPS", ",", "WP", "-NONE-", "RB", "VBP", "JJ", "NNS", "JJ", "IN", "DT", "NN", ",", "MD", "VB", "``", "NN", "TO", "DT", "NN", "NN", ",", "''", "PRP", "VBZ", "-NONE-", "-NONE-", ".", "NNPS", "MD", "VB", "RBR", "IN", "-NONE-", "VBG", "NNS", "IN", "DT", "NNPS", ".", "NNP", "NNP", "VBZ", "-NONE-", "DT", "NNPS", "MD", "RB", "VB", "NNP", "NNS", "VB", "PRP$", "NN", "IN", "NN", ".", "``", "IN", "NNP", ",", "PRP", "VBD", "-NONE-", "VBG", "PRP", "NNS", "IN", ",", "``", "WRB", "VBP", "PRP", "VB", "CD", "JJ", "NNS", ",", "WRB", "DT", "-NONE-", "PRP", "VBP", "-NONE-", "VBZ", "CD", "JJ", "CD", "-NONE-", "-NONE-", ".", "''", "''", "PRP", "VBZ", "-NONE-", ".", "``", "PRP", "VBD", "PRP", "VBG", "-NONE-", "RB", "PRP", "MD", "VB", "VBG", "NNP", "NNS", "VB", "VBG", "NNS", "RB", "IN", "-NONE-", "RB", "VBG", "JJ", "NNS", ".", "''", "NN", "IN", "NN", "NN", "VBZ", "-NONE-", "TO", "VB", "NN", "PRP", "VBZ", "DT", "CD", "NNS", "IN", "CD", "NN", "NN", ":", "NNP", "NNP", "NNS", "VBP", "-NONE-", "VBG", "NN", "NNS", "-NONE-", "TO", "VB", "NNS", ".", "PRP", "MD", "VB", "NN", "NN", "IN", "-NONE-", "VBG", "JJ", "NNS", ",", "DT", "NN", "VBZ", "-NONE-", "-NONE-", ".", "CC", "NNP", "NNP", "NN", ",", "WDT", "-NONE-", "VBZ", "VBG", "NNS", "TO", "PRP$", "NN", "NN", "NN", ",", "VBZ", "``", "UH", ".", "''", "NN", "NNS", "VBN", "-NONE-", "IN", "DT", "CD", "CC", "CD", "VBP", "JJ", "JJ", "NNS", "CC", "DT", "JJ", "NN", "WDT", "-NONE-", "MD", "RB", "VB", "JJ", "NNS", "IN", "DT", "NN", "NN", "IN", "DT", "NN", ",", "DT", "NNP", "NNP", "NN", "VBZ", "-NONE-", "-NONE-", ".", "JJ", "VBP", "RB", "RB", "IN", "JJ", "NNS", "-NONE-", "TO", "VB", "JJ", "NN", ",", "CC", "RB", "RB", "-NONE-", "TO", "VB", "NN", "NNS", ".", "IN", ",", "NNP", "VBZ", "-NONE-", "-NONE-", ",", "NN", "NNS", "VBP", "IN", "-NONE-", "VBG", "IN", "JJ", "NNS", ":", "CD", "JJ", "NN", "VBD", "PRP", "TO", "DT", "NNS", "IN", "NNP", ".", "DT", "NN", "IN", "NNS", ":", "VBG", "NNP", ",", "NNP", "CC", "NNP", ":", "VBP", "JJ", "NN", "NNS", ",", "NNP", "VBZ", "-NONE-", "-NONE-", ".", "DT", "JJ", "CD", "IN", "NNP", ",", "PRP", "VBZ", "-NONE-", "-NONE-", ",", "MD", "VB", "VBN", "-NONE-", "TO", "VB", "IN", "TO", "CD", "NNS", "IN", "DT", "JJR", "NN", "IN", "-NONE-", "VBG", "DT", "JJ", "NN", "IN", "JJ", "NNP", "NNP", ".", "DT", "NN", "IN", "DT", "NN", ",", "RB", ",", "VBZ", "DT", "NN", "``", "RB", "JJ", "CC", "NN", "JJ", ".", "DT", "NNP", "NNP", "VBD", "NNP", "NNP", "IN", "JJ", "NN", "CC", "NN", "NNS", "IN", "CD", "NNP", "NNS", ",", "CC", "VBD", "$", "CD", "CD", "-NONE-", "IN", "NNS", ",", "DT", "JJS", "NN", "RB", "VBN", "-NONE-", "IN", "VBN", "NN", "NNS", "IN", "DT", "NN", ".", "DT", "NN", "POS", "NNP", "NNP", "CC", "NNP", "NNP", "VBD", "NNS", "IN", "$", "CD", "CD", "-NONE-", "IN", "VBN", "NNS", "IN", "DT", "NN", "POS", "NNP", "NNP", ",", "NNP", ",", "NN", "NN", ":", "DT", "VBD", "DT", "NN", "IN", "VBN", "NNS", "IN", "DT", "JJ", "NN", ".", "NNP", "VBD", "RB", "CD", "VBN", "NNS", "IN", "JJ", "JJ", ",", "NN", ",", "NN", "CC", "JJ", "NNS", ".", "DT", "JJ", "NN", "VBG", "DT", "NN", "POS", "NNP", ",", "NNP", ",", "NN", "NNS", "VBD", "JJR", "IN", "CD", "VBN", "NNS", "IN", "JJ", "CC", "JJ", "NNS", ",", "IN", "WDT", "NNP", "VBD", "$", "CD", "CD", "-NONE-", "IN", "NNS", "-NONE-", ".", "NNP", "NNP", "NNP", "NNP", "VBD", ",", "``", "DT", "NN", "IN", "DT", "NNS", "CC", "NNS", "VBZ", "VBN", "-NONE-", "RB", "IN", "DT", "NN", "IN", "DT", "NNS", "TO", "NNS", "WDT", "-NONE-", "VBD", "IN", "JJ", "NN", "TO", "NN", "NN", "CC", "NN", ",", "CC", "JJ", "NNS", "IN", "DT", "NN", "CC", "NN", "NNS", "VBN", "-NONE-", "TO", "VB", "DT", "NNS", ".", "''", "NNP", "VBD", "-NONE-", "EX", "VBP", "VBN", "CD", "NN", "NNS", "IN", "DT", "CD", "NNS", "IN", "DT", "JJ", "CD", "NNS", "CC", "CD", "NNS", "IN", "CD", ".", "NNP", "NNP", ",", "DT", "NN", "IN", "NNP", ",", "VBD", "-NONE-", "NNP", "NNS", "VBP", "VBN", "IN", "JJ", "IN", "DT", "NN", "CC", "NN", "NNS", "IN", "DT", "NNS", "IN", "NNS", ",", "``", "RB", "VBP", "VBN", "-NONE-", "TO", "VB", "JJ", "NN", "-NONE-", "TO", "VB", "DT", "NNS", ".", "''", "``", "RB", "JJ", ",", "''", "NNP", "NNP", "VBD", "-NONE-", "-NONE-", ",", "``", "VBP", "-NONE-", "DT", "NN", "POS", "JJ", "NNS", "-NONE-", "TO", "RB", "VB", "NNS", "IN", "PRP$", "NNP", "NNS", ",", "IN", "NN", "IN", "DT", "JJ", "NN", "-NONE-", "PRP", "VBD", "VBN", "-NONE-", "IN", "DT", "JJR", "JJ", "NN", "NN", "-NONE-", "TO", "VB", "JJ", "NNS", ".", "''", "DT", "NN", "VBD", "IN", "NNP", "CD", ".", "DT", "NNP", "NN", "VBD", "-NONE-", "DT", "NN", "VBD", "RB", "RB", "VBN", "DT", "NNS", "-NONE-", "IN", "NNP", "VBG", "DT", "NN", "CC", "NN", ".", "``", "IN", "PRP", "VBP", ",", "PRP", "MD", "VB", "RB", "JJ", "NN", ",", "''", "DT", "NN", "VBD", "-NONE-", ".", "``", "DT", "NN", "VBZ", "RBR", "JJ", "IN", "DT", "NN", "CC", "NN", "IN", "PRP$", "NNS", ".", "''", "NNP", "VBD", "-NONE-", "PRP", "VBZ", "VBN", "VBG", "IN", "NNP", "IN", "DT", "NN", "VBD", "-NONE-", "VBG", "DT", "NNP", "CC", "NNP", "NNS", ".", "PRP", "VBD", "IN", ",", "IN", "CC", "WRB", "NN", "NNS", "VBD", "VBN", "-NONE-", "-NONE-", ",", "PRP", "VBD", "VBN", "-NONE-", ".", "DT", "NNP", "NNS", "VBD", "DT", "JJ", "JJ", "NN", "NN", "VBN", "-NONE-", "IN", "NNP", "IN", "NNP", "NNP", ".", "PRP", "VBZ", "VBN", "JJR", "NNS", ",", "IN", "DT", "NN", "IN", "NNS", "VBN", "-NONE-", "IN", "NNP", "VBP", "VBN", "VBG", "IN", "JJ", "NNS", "RB", "IN", "PRP", "VBD", "NN", "DT", "NN", ".", "``", "DT", "JJ", "NN", "VBZ", "IN", "NNP", "NN", "VBZ", "VBN", "-NONE-", "JJ", "-NONE-", "TO", "VB", "DT", "JJ", "NNS", "CC", "NN", "TO", "-NONE-", "VBG", "NNS", "CC", "TO", "-NONE-", "VBG", "NN", "CC", "NN", "IN", "DT", "NNS", ",", "''", "VBD", "-NONE-", "NNP", "NNP", ",", "NNP", "JJ", "NN", "IN", "NNP", ".", "NNP", "VBZ", "CD", "NN", "NNS", "-NONE-", "-NONE-", "TO", "VB", "DT", "NNS", "CC", "VBN", "NNS", ",", "IN", "DT", "JJ", "NNP", "NNP", "CC", "NNP", "NNP", "NNP", "-NONE-", ".", "IN", "DT", "NNP", "NN", ",", "NNP", "POS", "JJS", "VBN", "NN", "IN", "CD", "NN", "VBD", "$", "CD", "CD", "-NONE-", "IN", "VBN", "NN", "NNS", "IN", "NNP", "NNP", "CC", "NNP", ",", "DT", "NN", "NN", "IN", "NNP", "NNP", "NNP", ",", "NNP", ".", "DT", "NN", "VBZ", "VBG", "DT", "NN", ".", "JJ", "TO", "DT", "NN", "NN", ",", "DT", "NN", "TO", "DT", "NN", "IN", "NN", "POS", "NN", "IN", "NNP", "NNP", "NNP", "RB", "VBD", "DT", "NNP", ".", "PRP", "MD", "VB", "DT", "NNP", "NNPS", "NNP", "NNP", ".", "PRP$", "NNP", "CD", "NN", "``", "NNP", "NNP", "NNP", "''", "VBD", "TO", "NN", "IN", "PRP", "CC", "CD", "IN", "PRP$", "NNS", "WDT", "-NONE-", "VBD", "VBN", "-NONE-", "IN", "DT", "NNP", "CD", "NN", "IN", "DT", "NNP", "IN", "DT", "NNP", "NNP", "NNP", ".", "PRP$", "NNS", "VBD", "-NONE-", "PRP", "VBD", "VBN", "IN", "DT", "``", "JJ", "NN", "''", "IN", "NN", "VBZ", "-NONE-", "TO", "VB", "VBN", "-NONE-", "IN", "DT", "JJ", "NNS", "IN", "RB", "JJ", "CC", "JJ", "NNS", "IN", "DT", "JJ", "NN", ".", "PRP", "VBP", "VBN", "DT", "JJ", "NN", ".", "PRP", "-NONE-", "VBZ", "JJ", "IN", "JJS", "RB", "JJ", "NNS", "CC", "JJS", "NNS", "VBP", "RB", "VB", "JJ", ".", "DT", "``", "NNS", "''", "IN", "NN", "VBP", "RB", "VBN", "CC", "JJ", "IN", "DT", "JJ", "NN", ".", "IN", "-NONE-", "VBG", "IN", "PRP$", "NN", "PRP", "VBD", "DT", "JJ", "NN", "IN", "JJ", "NN", "CC", "NN", ".", "PRP", "VBD", "RB", "VB", "IN", "DT", "JJ", "NNS", "-NONE-", "PRP", "VBD", "-NONE-", "VBD", "DT", "NN", "IN", "JJ", "NNS", "IN", "NN", "TO", "PRP$", "JJ", "NNS", "CC", "NN", "NN", ".", "PRP", "VBD", "IN", "NN", ",", "NN", "NNS", ",", "JJ", "NNS", ",", "NN", "NNS", ",", "JJ", "NNS", "CC", "DT", "NNS", "IN", "NNS", "CC", "NN", ".", "JJ", "NNS", "RB", "JJ", "VBP", "NN", ",", "NN", "CC", "NN", ",", "PRP", "RB", "VBP", "DT", "JJ", "NNS", "IN", "NN", ",", "NN", "CC", "JJ", "NN", "NN", ".", "IN", "DT", "JJ", "NN", ",", "DT", "NNP", "IN", "NNP", "VBD", "RP", "IN", "JJ", "NN", "NNS", "MD", "VB", "DT", "NN", "TO", "NN", ",", "NNS", "MD", "VB", "DT", "NN", "IN", "PRP", ",", "CC", "DT", "JJ", "NN", "VBZ", "VBN", "-NONE-", "IN", "NNS", "WP$", "NN", "-NONE-", "VBZ", "JJ", "CC", "JJ", "IN", "DT", "NN", "VBZ", "JJ", "NN", ".", "DT", "NNS", "IN", "NN", "CC", "NN", "VBP", "JJ", ",", "-NONE-", "VBG", "JJ", "NNS", "IN", "TO", "``", "NN", "''", "CC", "``", "NN", ".", "''", "IN", "PRP", "VBP", "TO", "DT", "NN", ",", "-NONE-", "VBG", "NN", "VBZ", "DT", "JJ", "NN", ".", "DT", "MD", "VB", "PRP", "TO", "VB", "DT", "RB", "RBR", "JJ", "NN", "IN", "DT", "NNS", "IN", "NN", "IN", "PRP", "RB", "VBP", "-NONE-", ",", "DT", "NN", "WDT", "-NONE-", "MD", "VB", "VBN", "-NONE-", "RB", "IN", "JJ", "NN", "CC", "NN", ".", "NNP", "NNP", "NNP", "NNP", "NNP", "NNP", "NNP", "NNP", "NNP", "IN", "NNP", "NNP", "NNP", "NNP", "NNP", "IN", "NNP", "NNP", "DT", "NN", "IN", "NNP", "NNP", "NNP", "NNP", "VBZ", "-NONE-", "NN", "VBZ", "JJ", "TO", "DT", "JJ", "NN", "IN", "NNS", ",", "IN", "DT", "JJ", "NN", "IN", "NN", ".", "DT", "NN", "VBZ", "IN", "RB", "CD", "NN", "IN", "DT", "JJ", "NN", "VBZ", "VBN", "RP", "-NONE-", "IN", "NNS", "CC", "NNS", "CC", "IN", "RB", "CD", "NN", "IN", "DT", "NN", "VBZ", "DT", "NN", "IN", "NN", ",", "NN", "CC", "JJ", "NNS", ".", "VBG", "TO", "NNP", "NNP", ",", "NN", "VBZ", "``", "RB", "DT", "NN", "NN", ",", "DT", "NN", "NN", ",", "DT", "JJ", "NN", ",", "DT", "NN", "IN", "JJ", "NN", ",", "DT", "JJ", "NN", "NN", ",", "DT", "NN", "NN", "NN", ",", "DT", "NN", "VBN", "-NONE-", "IN", "DT", "NNS", "IN", "JJ", "NN", "NN", ",", "DT", "NN", "VBG", "IN", "DT", "NN", "IN", "DT", "JJ", "JJ", "NN", ",", "CC", "DT", "NN", "RB", "VBN", "TO", "DT", "JJ", "NN", "IN", "DT", "NN", "IN", "NNS", "VBG", "IN", "DT", "NN", "NN", ".", "''", "NNP", "NNP", "NNP", "NNP", "NNP", "NNP", "NNP", "NNP", "NNP", "NNP", ",", "NNP", ".", "-NONE-", "TO", "VB", "DT", "RB", "VBN", "NN", "IN", "DT", "RB", "VBN", "JJ", "NN", "IN", "DT", "NN", "IN", "NNP", "NNP", ":", "``", "IN", "PRP", "VBP", "JJ", ",", "PRP", "VBP", "RB", "VB", "IN", "NN", "IN", "-NONE-", "VBG", "VBN", "CC", "VBN", "-NONE-", ".", "IN", "PRP$", "JJ", "CD", "NNS", "IN", "NN", "NN", ",", "PRP", "VBP", "RB", "IN", "NN", "IN", "NN", "DT", "RBR", ":", "IN", "JJ", "NN", ",", "PRP", "MD", "RB", "VB", "JJ", "-NONE-", "TO", "VB", "IN", "PRP", "RB", "RB", ".", "''", "DT", "IN", "DT", "NN", ",", "RB", ",", "VBD", "JJ", "JJ", "NN", "CC", "NN", ".", "CC", "JJ", "NNS", "VBP", "VBN", "IN", "NNS", "IN", "DT", "NN", "IN", "DT", "JJ", ",", "JJ", "NN", "IN", "PRP$", "NN", "NNS", ".", "RB", "RB", ",", "WDT", "NNS", "IN", "NN", "-NONE-", "VBP", "-NONE-", "JJ", "TO", "PRP", "JJ", "IN", "NN", ",", "NNS", "CC", "NN", ".", "NNP", "NNP", "NNP", "NNP", ",", "NNP", ".", "PRP", "VBP", "IN", "``", "JJ", "''", "DT", "NN", "IN", "DT", "NN", "IN", "JJ", "JJ", "NNS", "IN", "CD", "NN", "MD", "VB", "VBN", "DT", "JJ", "NN", "IN", "DT", "VBN", "NN", "IN", "NNS", "CC", "NNS", "VBG", "IN", "PRP$", "NN", "NNS", "IN", "DT", "JJ", "NNS", ".", "EX", "VBZ", "DT", "NN", "IN", "PRP", "VBD", "-NONE-", "TO", "VB", "DT", "NN", "IN", "PRP$", "NN", ":", "RB", ",", "IN", "JJ", "NN", "CC", "NN", "NN", "MD", "VB", "TO", "DT", "NN", "NNS", "RB", "IN", "NNS", "IN", "NN", ".", "PRP$", "NN", "VBD", "WRB", "DT", "JJ", "NN", "MD", "VB", "VBN", "-NONE-", "-NONE-", ".", "NNP", "NNP", "NNP", "NNP", ",", "NNP", ".", "IN", "DT", "RB", "CD", "NNS", "IN", "DT", "JJ", "NN", "IN", "NNP", "IN", "DT", "NN", ",", "PRP", "VBD", "-NONE-", "TO", "VB", "JJ", "NNS", "IN", "DT", "NNP", "NNP", "IN", "NNP", "NNPS", "CC", "DT", "NNP", "NNP", "IN", "NNPS", "CC", "NNP", "NNPS", ",", "-NONE-", "VBG", "IN", "DT", "NN", "VBD", "PRP$", "JJ", "NN", "IN", "JJ", "NNS", "WDT", "``", "-NONE-", "VBP", "DT", "JJ", "NN", "WRB", "PRP", "VBP", "PRP", "-NONE-", ",", "''", "CC", "IN", "DT", "NN", "VBD", "VBN", "-NONE-", "IN", "NN", "CC", "DT", "NN", "NN", ".", "CC", "VBZ", "RB", "DT", "NN", "IN", "NN", "DT", "VBG", "NN", "IN", "DT", "WP", "-NONE-", "VBP", "TO", "-NONE-", ",", "CC", "VB", "IN", "-NONE-", ",", "PRP$", "NN", ".", "WRB", "VBD", "RB", "PRP", "VB", "DT", "NNP", "CC", "DT", "NNP", "CC", "NNP", "NNPS", "NNP", "CC", "DT", "CD", "JJ", "JJ", "NNS", "WDT", "-NONE-", "VBD", "IN", "DT", "NN", "-NONE-", ".", "IN", "IN", "DT", "NNS", "IN", "DT", "CD", "NNP", "NN", "WP", "-NONE-", "VBD", "JJ", "NNS", ",", "PRP", "VBP", "-NONE-", "PRP", "VB", "PRP$", "JJ", "NN", ".", "-NONE-", "VB", "CD", "NN", "NNS", ",", "VBG", ",", "RB", ",", "NN", "IN", "PRP$", "JJ", "NN", ",", "CC", "-NONE-", "VBD", "PRP", "IN", "IN", "DT", "NNS", ",", "-NONE-", "TO", "VB", "VBN", "-NONE-", "IN", "CD", "NN", "IN", "PRP$", "NNS", ",", "NNS", "CC", "NN", ".", "PRP", "MD", "VB", "IN", "IN", "DT", "JJ", "NN", "JJS", "IN", "PRP", "MD", "VB", "NNP", "DT", "JJ", "NN", "IN", "NNP", "NNP", "CC", "IN", "PRP$", "``", "JJ", "''", "NNS", ",", "NNS", ",", "NNS", "CC", "NN", "NN", "MD", "VB", "RB", ".", "NNP", "NNP", "NNP", "NNP", ",", "NNP", ".", "NNP", "NNP", "NNP", "VBD", "-NONE-", "PRP", "VBZ", "-NONE-", "TO", "VB", "CD", "CD", "TO", "CD", "CD", "JJ", "NNS", "-LRB-", "$", "CD", "CD", "TO", "$", "CD", "CD", "-NONE-", "-RRB-", "IN", "DT", "JJ", "NN", "IN", "JJ", "VBN", "NNS", ".", "JJ", "VBN", "NNS", "VBP", "RB", "JJ", "IN", "DT", "NNS", ",", "DT", "NN", "VBD", "-NONE-", "-NONE-", ".", "NNP", "VBD", "-NONE-", "DT", "NNS", "MD", "VB", "JJ", "IN", "NNP", "NNP", "NNS", ",", "CC", "IN", "DT", "NN", "VBZ", "DT", "NN", "-NONE-", "TO", "VB", "DT", "NNS", "IN", "DT", "NN", "VBZ", "NN", ".", "DT", "NN", "IN", "DT", "NNP", "NN", "NN", "CC", "NNS", "NN", "VBD", "-NONE-", "DT", "NN", "NN", "VBZ", "RB", "RB", "VBN", "VBN", "-NONE-", ",", "CC", "MD", "RB", "VB", "VBN", "-NONE-", "IN", "IN", "CD", "NN", ".", "PRP", "VBD", "-NONE-", "TO", "VB", "JJ", "NNS", "IN", "DT", "NN", ".", "DT", "NNP", "VBD", "NN", "VBN", "-NONE-", "TO", "VB", "PRP", "JJR", "IN", "DT", "NNP", "NNP", "TO", "VB", "NN", "JJ", "NNS", ".", "DT", "JJ", "NN", "VBD", "IN", "DT", "NNP", "VBD", "JJ", "NNS", "-NONE-", "TO", "VB", "DT", "NN", "CC", "VBD", "CD", "NNS", "VBN", "-NONE-", "IN", "VBN", "NN", ".", "DT", "NNP", "NN", "VBZ", "VBN", "-NONE-", "TO", "VB", "PDT", "DT", "NN", "IN", "IN", "WP", "PRP", "VBZ", "-NONE-", "IN", "DT", "JJ", "NN", "IN", "DT", "NNS", "IN", "NN", ",", "CC", "DT", "CD", "NN", "VBZ", "IN", "NNS", "VBP", "DT", "NN", "-NONE-", "-NONE-", "TO", "VB", "DT", "NN", "-NONE-", ".", "DT", "JJR", "NN", "VBZ", "WRB", "DT", "NNP", "VBZ", "-NONE-", "IN", "DT", "NN", ".", "IN", "DT", "NNP", "NNP", "NNP", "VBZ", "VBN", "NN", "JJ", "TO", "DT", "NNP", "NN", "IN", "NN", "JJ", "NNS", ",", "DT", "NN", "VBZ", "RB", "RB", "VBN", "TO", "DT", "JJ", "NN", ".", "IN", "DT", "NN", "MD", "VB", "TO", "NNS", "VBG", "DT", "JJ", "NN", ",", "PRP", "VBZ", "VBN", "-NONE-", "IN", "-NONE-", "VBG", "DT", "NNP", "NNP", "DT", "NN", "-NONE-", "TO", "VB", "IN", "NN", "NNS", "VBN", "-NONE-", "IN", "JJ", "NNS", "IN", "NN", ".", "``", "DT", "NN", "IN", "DT", "NN", "VBZ", "-NONE-", "TO", "VB", "DT", "NNS", "IN", "NN", "NNS", "WDT", "-NONE-", "MD", "RB", "VB", "DT", "NN", "RP", "IN", "NN", "IN", "PRP", "MD", "VB", "NN", "CC", "DT", "NN", "POS", "NN", "-NONE-", "TO", "VB", ",", "''", "NNP", "NNP", "NNP", "NNP", ",", "-LRB-", "NNP", ",", "NNP", ".", "-RRB-", "VBD", "-NONE-", ".", "DT", "NN", ",", "IN", "PRP", "VBD", "VBN", "-NONE-", "IN", "DT", "NNP", "NNP", "NNPS", "CC", "NNP", "NNP", ",", "MD", "VB", "DT", "NNP", "NNP", "IN", "TO", "CD", "NNS", "-NONE-", "-NONE-", "TO", "VB", "DT", "NN", "IN", "CD", "NN", "CC", "JJR", "IN", "DT", "NN", "IN", "DT", "NN", "-NONE-", ".", "DT", "NN", "MD", "VB", "VBN", "-NONE-", "TO", "VB", "DT", "NN", "IN", "DT", "NN", "VBZ", "JJ", "-NONE-", "TO", "RB", "VB", "DT", "NN", "IN", "IN", "NN", "MD", "VB", "VBN", "-NONE-", ":", "PRP$", "NN", "-NONE-", "TO", "VB", "MD", "VB", "RB", "VBN", "-NONE-", ":", "PRP", "MD", "VB", "VBN", "-NONE-", "IN", "JJ", "NN", ":", "CC", "IN", "DT", "NN", "MD", "VB", "IN", "DT", "NN", "IN", "JJ", "NNS", ":", "IN", "-NONE-", "VBG", "JJ", "NNS", "VBD", "DT", "VBG", "NN", "NN", ".", "DT", "NNP", "VBD", "DT", "NN", "VBN", "-NONE-", "IN", "NNP", "NNP", "NNP", "-LRB-", "NNP", ",", "NNP", "-RRB-", "WDT", "-NONE-", "MD", ",", "IN", "NN", "TO", "DT", "JJ", "NNS", ",", "RB", "VB", "DT", "NN", "TO", "VB", "DT", "NN", "IN", "DT", "NN", "IN", "DT", "VBN", "NN", "VBN", "-NONE-", "VBD", "JJ", "-NONE-", "TO", "VB", "IN", "DT", "NN", "IN", "DT", "NN", "IN", "DT", "NN", "POS", "NNS", ",", "CC", "PRP$", "NNS", "CC", "NNS", ".", "NNP", "NNP", "NNP", "-LRB-", "NNP", ",", "NNP", "-RRB-", ",", "VBD", "-NONE-", "DT", "NN", ",", "WDT", "-NONE-", "VBD", "CD", ",", "MD", "``", "VB", "DT", "JJ", "NN", "VB", "IN", "PRP", "VBP", "PRP", "RB", ".", "''", "CC", "NNP", "NNP", "VBD", "IN", "DT", "NN", ",", "WDT", "PRP", "VBD", "-NONE-", "DT", "``", "JJ", "NN", "''", "NN", ",", "VBD", "JJ", "-NONE-", "TO", "VB", "DT", "NN", "RB", "RBR", "JJ", ".", "IN", "NNP", ",", "DT", "NNP", "VBD", "DT", "JJ", "NN", "WDT", "-NONE-", "MD", "VB", "DT", "NNP", "NNP", "TO", "VB", "NN", "NNS", "IN", "DT", "NN", "VBG", "-NONE-", "TO", "VB", "DT", "NN", "VBD", "VBN", "CD", "CC", "JJR", "NNS", "-NONE-", "RB", "WDT", "-NONE-", "VBP", "VBN", "IN", "NN", "IN", "NNS", "IN", "NN", "CD", "IN", "DT", "JJ", "NNP", "NNP", ".", "DT", "NN", ",", "VBN", "-NONE-", "DT", "``", "JJ", "''", "NN", "IN", "PRP$", "NNS", ",", "RB", "VBD", "VBN", "-NONE-", "IN", "-NONE-", "VBG", "NNP", "NNP", "NNP", "NNP", "NNP", "NNP", "IN", "-NONE-", "VBG", "-NONE-", "TO", "VB", "RP", "DT", "NN", ".", "JJ", "NN", ":", "PRP", "RB", "MD", "VB", "IN", "DT", "NNP", "IN", "NNP", "NNS", "IN", "NNP", "CC", "VB", "DT", "NN", "IN", "WP", "DT", "NNP", "VBZ", "VBG", "-NONE-", "TO", "DT", "CD", "CD", "NNS", "IN", "DT", "NN", "WP", "-NONE-", "VBP", "RP", "TO", "PRP", "DT", "NN", ".", "PRP", "MD", "RB", "VB", "NNS", ":", "JJ", "NNS", ",", "IN", "DT", "NNP", "NNS", "MD", "RB", "VB", "IN", "PRP$", "NN", ":", "IN", "WP", "PRP", "VBP", "-NONE-", ".", "PRP", "MD", "VB", "PDT", "DT", "RB", "IN", "PRP", "VBP", "RB", "DT", "NN", "CC", "DT", "NN", "CC", "DT", "NN", "CC", "DT", "NN", "IN", "NNP", ".", "CC", "PRP$", "NN", "MD", "VB", "DT", "NN", "IN", "DT", "NNS", ".", "IN", "DT", "JJ", "NN", ",", "PRP", "IN", "DT", "JJ", "NN", "IN", "DT", "NN", "VBD", "DT", "NN", "-NONE-", "TO", "VB", "WP", "PRP$", "NN", "VBD", "VBG", "PRP$", "NNS", "IN", "DT", "NN", "-NONE-", ".", "DT", "VBD", "DT", "NN", ".", "CC", "PRP", "RB", "VBD", "DT", "NN", "-NONE-", "TO", "VB", "RB", "WP", "DT", "NNP", "VBD", "VBG", "-NONE-", "TO", "RB", ".", "PRP", "VBD", "NN", ".", "PRP", "VBD", "JJ", ".", "CC", "PRP", "VBD", "JJ", ".", "DT", "NN", "VBD", "IN", "DT", "NNP", "VBZ", "DT", "NN", "NN", "CC", "DT", "NN", "MD", "RB", "VB", "PRP$", "JJ", "NNS", ".", "DT", "VBZ", "JJ", ",", "CC", "DT", "NN", ":", "DT", "NN", ":", "VBZ", "PRP$", "JJ", "NNS", "DT", "NN", ".", "NNP", "NN", "NNS", ",", "NNS", ",", "NNS", ",", "NNS", "IN", "JJ", "NNS", ",", "NNS", "VBP", "DT", "NN", "IN", "NNS", ".", "NN", "VBZ", "RB", "NN", "-NONE-", "-NONE-", "TO", "VB", "DT", "NN", ",", "CC", "DT", "NN", "IN", "DT", "NN", "VBZ", "IN", "PRP", "VBZ", "PRP", "TO", "VB", "CC", "VB", "DT", "NN", "CC", "RB", "VB", "RP", "PRP$", "JJ", "NN", "IN", "DT", "NN", ".", "DT", "NNS", "IN", "VBG", "CC", "NN", "IN", "NNP", "NN", "VBD", "RB", "JJ", ":", "DT", "NN", "IN", "DT", "NN", "NN", "VBD", "RB", "VBG", "VBN", "-NONE-", "TO", "VB", ".", "IN", "NNP", "CD", ",", "PRP", "VBD", "IN", "DT", "NN", "IN", "DT", "NN", ".", "-NONE-", "VBG", "-NONE-", "PRP", "VBD", "RB", "CD", "IN", "DT", "NNS", "IN", "PRP", "VBD", "-NONE-", "CC", "VBD", "-NONE-", "IN", "DT", "NN", "NN", ",", "PRP", "MD", "VB", "DT", "NNS", ".", "DT", "NNP", "IN", "NNP", "VBZ", "DT", "NN", "NN", "WDT", "-NONE-", "VBZ", "NN", "CC", "NNS", ":", "DT", "MD", "VB", "NN", ":", "IN", "CD", "NNS", "TO", "CD", "CD", "NNS", "IN", "DT", "NN", ".", "PRP", "VBZ", "DT", "JJ", "NN", ".", "PRP$", "NN", "$", "CD", "CD", "-NONE-", ":", "VBZ", "VBN", "IN", "-NONE-", "IN", "PRP", ".", "CC", "DT", "CD", "NN", "VBD", "DT", "``", "NN", "''", "IN", "DT", "NN", "IN", "DT", "NNP", ".", "DT", "NN", "VBD", "NNS", ",", "NNS", "CC", "NNS", "VB", "NNS", "IN", "NNP", "NN", ",", "RB", "IN", "NNP", "NNS", "IN", "NNP", ",", "CC", "PRP", "VBD", "PRP", "IN", "-NONE-", "VBG", "NNS", ".", "CC", ",", "IN", "NN", ",", "EX", "VBZ", "DT", "NN", "``", "NN", ".", "''", "WRB", "VBZ", "DT", "-NONE-", "RB", ".", "``", "PRP", "MD", "VB", "IN", "DT", "NN", "-NONE-", "TO", "VB", "CC", "RB", "VB", "DT", "RB", "CC", "IN", "-NONE-", "VBG", ",", "''", "DT", "NNP", "NN", "VBD", "-NONE-", "WRB", "PRP", "VBD", "-NONE-", ".", "WP", "IN", "PRP", "VBP", "RP", "PRP$", "JJ", "NN", ",", "VBP", "DT", "NN", "CC", "NN", ",", "CC", "VBP", "PRP", "IN", "PRP$", "NN", ".", "``", "CC", "VBP", "PRP", "JJ", "-NONE-", "TO", "VB", "JJ", "NN", ",", "''", "PRP", "VBD", "VBN", "-NONE-", "-NONE-", ".", "WDT", "VBD", "DT", "NN", "IN", "NN", ",", "RB", "IN", "NNS", "IN", "NNS", "CC", "NNS", "WDT", "-NONE-", "VBD", "RB", ",", "PRP", "VBD", ".", "DT", "NN", "IN", "NNS", "IN", ",", "PRP", "VBD", "DT", "NN", "IN", "JJ", "NN", "NN", "IN", "NNP", "NNP", ".", "IN", "JJS", ",", "DT", "VBZ", "DT", "NN", "-NONE-", "PRP", "VBD", "VBN", "-NONE-", "-NONE-", ".", "CC", ",", "RB", ",", "DT", "NN", "VBD", "VBN", "-NONE-", ".", "CC", "PRP", ":", "PRP", "VBP", "-NONE-", "TO", "VB", "IN", "PRP", "IN", "NNS", "IN", "PRP", ",", "DT", "IN", "PRP", ":", "VBD", "DT", "NN", ".", "IN", "DT", "JJ", "NN", "VBD", "IN", "DT", "NN", "TO", "DT", "NN", ":", "DT", "NNP", "NNPS", "NNP", "NNP", ",", "WDT", "-NONE-", "VBZ", "DT", "NNP", ",", "VBD", "PRP$", "NN", "IN", "CD", "JJ", "NNS", ".", ":", "DT", "NNP", "VBD", "IN", ",", "IN", "NN", ",", "IN", "NN", "PRP", "MD", "VB", "NN", "-NONE-", "PRP", "MD", "VB", "PRP$", "NNS", "IN", "-NONE-", ".", "DT", "NN", "NN", ",", "PRP", "VBD", "-NONE-", "-NONE-", ",", "VBD", "RB", "TO", "PRP", ".", "``", "DT", "NNP", "RB", "CC", "RB", "VBD", "DT", "JJ", "NN", "-NONE-", "IN", "NN", "IN", "DT", "NNP", "-NONE-", "TO", "VB", "NN", "NN", "NNS", "IN", "DT", "NNP", "NNPS", ",", "''", "PRP$", "NN", ",", "DT", "JJ", "NNP", "NNP", "IN", "NNP", "NNP", ",", "VBD", "-NONE-", "IN", "DT", "NN", "VBG", "RP", "DT", "NNS", "CC", "VBG", "-NONE-", "TO", "VB", "PRP", "VB", "JJ", "IN", "DT", "NN", "VBD", "IN", "PRP", "VBD", "VBN", ".", "DT", "NN", "VBD", "DT", "JJ", "NNP", "NN", "CC", ",", "RB", "IN", "NN", ",", "RB", "VBN", "``", "IN", "NNP", "VBD", "RB", "VB", "-NONE-", "TO", "VB", "NNS", "IN", "-NONE-", "VBG", "NNP", "NN", "RB", ".", "''", ":", "DT", "NNP", "VBD", "IN", ",", "IN", "NN", ",", "NN", "-NONE-", "MD", "VB", "DT", "NNP", "NNS", ",", "RB", "RB", "DT", "NNS", ",", "NNS", ",", "NNS", "CC", "NNS", "WP", "-NONE-", "VBP", "VBN", "-NONE-", "IN", "DT", "NN", ".", "``", "DT", "NNP", "RB", "CC", "RB", "VBD", "IN", "DT", "NN", "IN", "DT", "NNS", "VBP", "VBN", "-NONE-", "NN", "TO", "DT", "NNS", ",", "IN", "DT", "JJ", "NNS", ",", "IN", "DT", "NNP", "VBZ", "VBN", "IN", "PRP", "MD", "RB", "VB", "DT", "NNS", "IN", "DT", "NN", "VBG", "CC", "VBG", "-NONE-", "TO", "VB", "DT", "NNS", ",", "''", "NNP", "NNP", "VBD", "-NONE-", ".", ":", "CC", "DT", "NNP", "VBD", "IN", "DT", "IN", "PRP", "MD", "VB", "JJ", "NNS", ".", "``", "DT", "NN", "RB", "CC", "RB", "VBD", "IN", "DT", "NN", "IN", "NNS", "WP", "-NONE-", "VBP", "DT", "NNS", "MD", "VB", "NNS", "CC", ",", "IN", "DT", "NN", "NN", "VBZ", "IN", "NNS", "MD", "RB", "VB", "JJ", "NNS", ",", "DT", "NN", "MD", "VB", "-NONE-", "TO", "VB", "WDT", "NNS", "DT", "NN", "VBZ", "VBN", "-NONE-", ",", "''", "NNP", "NNP", "VBD", "-NONE-", ".", "PRP", "VBD", "VBN", ",", "IN", "PRP$", "NN", ",", "DT", "NN", "-NONE-", "TO", "VB", "NNP", "NN", ",", "WDT", "-NONE-", "VBD", "VBN", "VBN", "PRP", "-NONE-", ",", "CC", "PRP", "VBD", "VBN", "DT", "NN", "-NONE-", "TO", "VB", "DT", "NN", ",", "-NONE-", "VBG", "IN", "NN", "IN", "DT", "NN", "-NONE-", "TO", "VB", "NN", "NN", "VBZ", "RB", "RB", "JJ", "IN", "PRP", "VBP", "DT", "NN", "-NONE-", "TO", "VB", "DT", "NN", ".", "CC", "DT", "NN", "VBD", ".", "``", "DT", "NNP", "NNP", "VBZ", "DT", "NN", "IN", "-NONE-", "VBG", "NNS", "VBG", "DT", "NN", "TO", "JJ", "NN", ",", "''", "NNP", "NNP", "NNP", "VBD", "-NONE-", ".", "``", "DT", "NNP", "NNP", "VBZ", "RB", "VB", "DT", "NN", "IN", "DT", "NN", "-NONE-", "TO", "VB", "JJ", "NN", "TO", "NN", "IN", "NNS", "IN", "DT", "NN", ".", "''", "IN", "RB", "DT", "NN", "VBZ", "DT", ":", "PRP", "VBP", "DT", "NN", "-NONE-", "TO", "VB", "NNP", "IN", "NNP", "NNS", "IN", "PRP", "VBP", "RB", "VB", "-NONE-", "VBG", "TO", "NNP", "DT", "NN", "CC", "RB", "CC", "-NONE-", "VBG", "DT", "NNP", "NN", "IN", "NN", "NNS", ".", "PRP", "VBP", "DT", "NN", "-NONE-", "TO", "VB", "DT", "NNS", "IN", "PRP", "VBP", "RB", "CC", "RB", ":", "CC", "RB", "JJR", "RB", ":", "VBP", "PRP", "RP", "IN", "JJ", "NN", ".", "CC", "DT", "IN", "PRP", "MD", "VB", "DT", "NN", "IN", "DT", "NNP", "NN", "CC", "VB", "PRP", "VBN", "-NONE-", "TO", "PRP", ".", "IN", "DT", "NN", "WRB", "DT", "NN", "NN", "VBZ", "DT", "NNS", "NN", "WDT", "-NONE-", "VBZ", "PRP", "NN", "IN", "PRP", "VBP", "PRP", "CC", "RB", "-NONE-", ",", "DT", "VBZ", "VB", "JJ", ".", "RB", ",", "NNP", "NNP", "VBD", "IN", "``", "PRP", "-NONE-", "MD", "VB", "JJ", "-NONE-", "TO", "VB", "IN", "DT", "NNP", "POS", "NN", "VBZ", "``", "JJ", "CC", "RB", "JJ", ",", "''", "''", "CC", "PRP", "VBZ", "DT", "NN", ".", "IN", "DT", "JJ", "NN", ",", "PRP", "VBP", "-NONE-", "-NONE-", ",", "VBZ", "-NONE-", "TO", "VB", "-NONE-", "TO", "VB", "DT", "NN", "VBD", ".", "PRP", "-LRB-", "PRP", "VBP", "-NONE-", "PRP", "VBP", "IN", "DT", "IN", "PRP", "IN", "DT", "NN", "-RRB-", "VBP", "-NONE-", "TO", "VB", "CD", "NNS", ":", "``", "IN", "NN", "RB", "''", ":", "VBN", "IN", "DT", "NN", ".", "NN", "CD", "IN", "DT", "NNP", "NNPS", "NNP", "CC", "NNP", "NNP", "NNP", "IN", "CD", "VBZ", "-NONE-", "NNP", "NN", "MD", "VB", "JJ", "TO", "JJ", "IN", "PRP", "-LRB-", "CC", "RB", ",", "NNS", "TO", "DT", "NNP", "POS", "JJ", "NN", ",", "DT", "IN", "PRP", "-RRB-", "``", "IN", "NN", "RB", ".", "''", "IN", "DT", "NNS", "VBD", "RB", "RB", ",", "DT", "JJ", "NNS", "IN", "DT", "NNP", "MD", "VB", "JJ", "-NONE-", "TO", "VB", "PRP", "DT", "NN", "CC", ",", "IN", "DT", "RB", "JJS", ",", "VB", "PRP", "VB", "PRP", ".", "DT", "VBZ", "RB", "DT", "JJ", "NN", ".", "``", "PRP", "VBD", ":", "VBN", "JJ", "NNS", "WDT", "-NONE-", "MD", "-NONE-", "TO", "VB", "VBN", "-NONE-", ":", "WP", "VBZ", "NNP", "VB", "-NONE-", "IN", "NNP", "RB", ":", "WRB", "VBP", "PRP", "VB", "PRP", "-NONE-", ":", "CC", "WRB", "MD", "JJ", "NNS", "VB", "DT", "NNS", "TO", "DT", "NNS", "-NONE-", ".", "''", "DT", "NN", "VBD", "PRP", "-NONE-", "DT", "NN", "IN", "NNS", "IN", ".", "DT", "NN", "VBD", "NNP", "NNP", "NNP", ".", "IN", "DT", "NN", ",", "PRP", "VBD", "NN", "IN", "DT", "PRP", "VBD", "DT", "NNS", "RB", ".", "RB", "EX", "VBP", "DT", ".", "DT", "NN", "VBZ", "RB", "DT", "RB", "RBR", "JJ", ".", "PRP", "VBP", "RB", "JJ", "IN", "PRP", ".", "NNP", "NNP", "VBZ", "NN", "CC", "NN", "IN", "DT", "NNP", "NNP", "IN", "NNP", ",", "NNP", ",", "CC", "NN", "IN", "NNP", "NNP", "IN", "NNP", "NNP", ".", "NNP", "NNP", "NNP", "VBD", "VBN", "-NONE-", "IN", "IN", "NNP", "NNP", "NNP", "POS", "NN", "CC", "NN", "NN", "NN", ",", "DT", "JJS", "NN", "RB", "IN", "DT", "NN", "WDT", "NNP", "NN", "NNS", "VBP", "-NONE-", "TO", "VB", "-NONE-", "IN", "-NONE-", "VBG", "DT", "JJ", "NN", "NN", ".", "NNP", "NNP", "NNP", ",", "DT", "JJ", "NN", "IN", "DT", "NN", "POS", "NNP", "NNP", "NN", ",", "CC", "NNP", "NNP", "NNP", ",", "CD", ",", "DT", "NN", "JJ", "NN", ",", "MD", "VB", "NNP", "IN", "DT", "NN", ",", "-NONE-", "VBG", "NNS", "RB", "RB", "IN", "DT", "NN", "VBZ", "VBN", "-NONE-", ".", "DT", "NN", "RB", "VBZ", "VBN", "VBG", "IN", "JJ", "JJ", "NNS", ",", "VBG", "NN", "NNS", "IN", "JJ", "JJ", "NN", ".", "NNP", "NNP", "VBD", "RB", "TO", "NNP", "NNP", "POS", "NN", "CC", "PRP$", "NNS", ".", "IN", "JJ", "NN", "IN", "DT", "NNP", "NNP", "NNP", "NNP", ",", "NNP", "POS", "NNS", "VBD", "$", "CD", "-NONE-", "-NONE-", "TO", "VB", "IN", "$", "CD", "-NONE-", ".", "``", "DT", "NN", "NN", "IN", "DT", "JJ", "NNS", "VBZ", "RB", "VBN", "IN", "DT", "JJR", ",", "''", "VBD", "-NONE-", "NNP", "NNP", ",", "DT", "NN", "NN", "NN", "IN", "NNP", "IN", "NNP", "NNP", ".", "NNP", "NNP", "VBD", "RB", "VBN", "-NONE-", "IN", "NNS", ",", "CC", "RB", "NN", ",", "VBN", ".", "``", "JJ", "NNS", "MD", "VB", "DT", "RB", "JJR", "IN", "NNP", "NNP", ",", "''", "NNP", "NNP", "VBD", "-NONE-", ".", "DT", "IN", "DT", "NN", "IN", "DT", "NN", "POS", "NN", "VBD", "-NONE-", "TO", "VB", "VBN", "-NONE-", "TO", "VBN", "NN", "NN", ",", "WDT", "-NONE-", "VBZ", "VBN", "TO", "NN", "IN", "NNP", "NNS", "IN", "JJ", "NNS", ".", "NNP", "POS", "JJ", "NNS", ",", "RB", "IN", "DT", "NNP", "CC", "NNP", ",", "VBP", "-NONE-", "TO", "VB", "IN", "DT", "NN", "IN", "PRP$", "NNS", ".", "NN", "VBZ", "VBN", "RB", "IN", "NNS", "CC", "NN", "NNS", "VBP", "RB", "IN", "NNS", "IN", "NNP", "NNS", ".", "IN", "NN", ",", "NNP", "VBZ", "DT", "JJ", "JJ", "IN", "DT", "NNP", "VBN", "NNS", "NN", ",", "WRB", "PRP", "RB", "VBD", "CD", "NNS", "NNS", "IN", "NNP", "NNPS", "NNP", "CC", "VBD", "RP", "IN", "RB", "JJR", "NN", "IN", "PRP", "MD", "VB", "-NONE-", "-NONE-", ".", "RB", ",", "NNP", "POS", "JJ", "NN", "NN", ",", "NNP", "NNP", "CC", "NNP", ",", "VBZ", "VBN", "VBN", "-NONE-", "IN", "NN", "CC", "NN", "NNS", ".", "JJ", "NNS", "MD", "VB", "JJ", "NN", "-NONE-", "TO", "VB", ".", "RB", ",", "DT", "NNP", "NNP", "CC", "NNP", "NNP", "VBZ", "JJ", "JJ", "NN", ".", "NNP", "NNP", ",", "DT", "JJ", "NN", "WP", "-NONE-", "VBZ", "VBN", "-NONE-", "TO", "VB", "DT", "JJ", "NN", "IN", "NNP", "NNS", ",", "MD", "VB", "NN", "IN", "DT", "JJ", "NNS", "IN", "DT", "NNP", "NNP", "NN", ".", "NNP", "NNP", ",", "DT", "NN", "IN", "JJ", "VBG", "NNS", "WP", "-NONE-", "VBD", "NNP", "IN", "CD", ",", "MD", "VB", "NN", "IN", "DT", "JJ", "NNS", "RB", "RB", "IN", "NNP", ".", "IN", "DT", "JJ", "NN", "NN", ",", "DT", "NNS", "VBD", "-NONE-", "PRP", "MD", "VB", "-NONE-", "TO", "VB", "DT", "NN", "POS", "JJ", "NN", "NN", ".", "NNP", "NNP", ",", "CD", ",", "VBD", "VBN", "IN", "JJ", "NN", "-NONE-", "IN", "DT", "NN", "-NONE-", "TO", "VB", "NNP", "POS", "JJ", "NN", "TO", "DT", "NN", "IN", "JJ", "NN", "NNS", ".", "DT", "NN", "VBZ", "VBN", "-NONE-", "IN", "DT", "NNS", "IN", "DT", "JJ", "NNP", "NNP", "NNP", "NNP", ",", "WP", "-NONE-", "VBD", "IN", "CD", "NN", "IN", "NNP", "POS", "NN", "WRB", "PRP", "VBD", "IN", "NNP", "-NONE-", ".", "IN", "JJ", "NNS", ",", "NNP", "NNP", "POS", "NNS", "CC", "JJ", "NN", "NNS", "VBP", "VBN", "IN", "VBN", "NN", "CC", "JJR", "NNS", "IN", "PRP$", "NN", ".", "IN", "NNP", ",", "DT", "NN", "VBD", "DT", "$", "CD", "CD", "-NONE-", "NN", "NN", "IN", "JJ", "CD", "NNS", "WRB", "PRP", "VBD", "DT", "JJ", "VBG", "NN", "-NONE-", ".", "DT", "NN", "VBZ", "IN", "-NONE-", "VBG", "IN", "JJS", "CD", "NNS", "CC", "VBG", "IN", "CD", "NNS", ".", "CC", "NNS", "VBD", "-NONE-", "JJ", "NNS", "IN", "DT", "NN", "VBP", "VBN", "JJ", ",", "RB", "IN", "NNP", ",", "CC", "EX", "VBD", "NNS", "IN", "DT", "NN", "VBD", "NN", ".", "NNP", "NNS", "VBD", "-NONE-", "NNP", "NNP", "VBD", "RB", "JJ", "-NONE-", "NN", "-NONE-", "TO", "VB", "DT", "NNS", "IN", "PRP$", "NN", ".", "DT", "NN", "POS", "VBN", "NN", "VBD", "PRP", "IN", "-NONE-", "VBG", ",", "``", "DT", "NNP", "NN", "VBZ", "RB", "IN", "CC", "PRP", "VBP", "VBN", "IN", "JJ", "NNS", "-NONE-", "TO", "VB", "JJ", "NN", ".", "''", "CC", "NNS", "JJ", "IN", "DT", "NN", "IN", "DT", "NN", "POS", "NN", "JJ", "NN", "IN", "NNP", "VBD", "-NONE-", "NNP", "NNP", "VBD", "VBN", "-NONE-", ".", "NNP", "NNP", "PRP", "VBD", "VBN", "RB", "IN", "PRP", "VBD", "-NONE-", "TO", "VB", "RP", "IN", "PRP", "VBD", "DT", "JJ", "NN", "NN", "IN", "CD", "IN", "NNP", "CD", ",", "``", "IN", "PRP", "VBP", "VBN", ".", "''", "NNP", "VBD", "-NONE-", "NNP", "NNP", "VBD", "VBN", "PRP$", "NN", "IN", "DT", "NN", "IN", "NN", "IN", "DT", "NN", "IN", "DT", "JJ", "NN", "NN", ",", "VBN", "-NONE-", "IN", "NNP", "CD", ".", "IN", "JJ", "CD", ",", "NNP", "NNP", "VBD", "DT", "NN", "IN", "$", "CD", "-NONE-", ".", "PRP", "VBZ", "IN", "CD", "NNS", "IN", "NNP", "NN", "CC", "VBZ", "NNS", "-NONE-", "TO", "VB", "JJR", "IN", "CD", "JJ", "NNS", ".", "PRP", "MD", "VB", "JJ", "IN", "DT", "JJ", "NN", "IN", "JJR", "IN", "$", "CD", "-NONE-", "IN", "JJ", "JJ", "NN", "NNS", ".", "IN", "NNP", "NNP", "POS", "JJ", "NN", "IN", "NN", ",", "DT", "NN", "POS", "NNS", "VBD", "TO", "$", "CD", "CD", "-NONE-", "IN", "$", "CD", "CD", "-NONE-", "CC", "JJ", "NN", "VBD", "TO", "$", "CD", "CD", "-NONE-", "IN", "$", "CD", "CD", "-NONE-", ",", "DT", "NN", "VBD", "-NONE-", "-NONE-", ".", "NNP", "NNP", "VBD", "-NONE-", "PRP", "CC", "NNP", "NNP", "DT", "VBD", "-NONE-", "VBG", "DT", "NNS", "RB", "JJ", "RB", "IN", "JJ", "CD", ".", "``", "PRP", "VBP", "VBN", "-NONE-", "TO", "VB", "DT", "NN", "NN", ",", "''", "VBD", "-NONE-", "NNP", "NNP", ".", "``", "PRP", "VBP", "VBN", "-NONE-", "TO", "VB", "DT", "NNS", "RB", ".", "''", "NNP", "NNP", "VBD", "NN", "IN", "PRP", "CC", "NNP", "NNP", "MD", "VB", "DT", "NN", "IN", "PRP$", "NN", "-NONE-", "TO", "VB", "DT", "NN", ".", "``", "PRP", "VBP", "IN", "DT", "IN", "DT", "JJ", "NN", "-NONE-", "TO", "VB", "DT", "NN", "IN", "PRP", "VBP", "DT", "JJ", "NN", "NN", ",", "''", "PRP", "VBD", "-NONE-", ".", "PRP", "VBD", "IN", "DT", "NN", "MD", "VB", "DT", "JJ", "NN", "IN", "JJ", "JJ", "NN", "IN", "-NONE-", "VBG", "DT", "JJ", "NN", "NN", ".", "NNP", "NNP", "VBD", "-NONE-", "DT", "CD", "VBP", "NNS", "-NONE-", "TO", "``", "VB", "IN", "JJ", "NNS", "''", "CC", "TO", "``", "VB", "DT", "JJ", "NN", "IN", "PRP$", "NNS", ":", "WP", "-NONE-", "VBZ", "JJ", ",", "WP", "-NONE-", "VBZ", "RB", "RB", "JJ", ".", "''", "NNS", "RB", "VBP", "DT", "NN", "IN", "NNP", "NNP", ",", "DT", "NN", "POS", "JJS", "NN", ",", "WDT", "-NONE-", "VBD", "CD", "NN", "NN", "NNS", "NN", "CC", "DT", "CD", "NN", "NN", "IN", "NN", "NN", "IN", "JJ", "CD", ".", "``", "DT", "NN", "IN", "PRP", "VBP", "VBN", "VBG", "NNP", "NNP", "-NONE-", "MD", "RB", "VB", "TO", "JJ", "NNS", "IN", "DT", "NN", ",", "''", "NNP", "NNP", "VBD", "-NONE-", ".", "IN", "DT", "NN", "IN", "NN", "NN", "NN", ",", "DT", "NNS", "VBD", "NN", "CC", "VBD", "-NONE-", "TO", "VB", "RB", "RB", ".", "``", "PRP", "VBP", "VBN", "CD", "NNS", "VBG", "JJ", "IN", "PRP", ",", "''", "VBD", "-NONE-", "NNP", "NNP", ".", "``", "PRP", "VBP", "-NONE-", "TO", "VB", ".", "NNP", ",", "NNP", "CD", ",", "CD", "DT", "JJ", "NNP", "CC", "JJ", "JJ", "NN", "NNS", "IN", "VBP", "DT", "NN", "TO", "JJ", "NNS", "CC", "VBP", "RB", "RB", "VB", "JJ", "NNS", ".", "NNP", "NNP", ":", "CD", "CD", "NN", ".", "DT", "NN", "NN", "IN", "JJ", "NNS", "IN", "JJ", "NNP", "NN", "NN", "JJ", "NNS", ".", "NNP", "NNPS", ":", "CD", "CD", "NN", "JJ", ",", "CD", "CD", "NN", "JJ", ",", "CD", "CD", "NN", "IN", "JJ", "NN", ",", "CD", "NN", "VBD", "-NONE-", ".", "NNS", "VBN", "-NONE-", "IN", "JJ", "NNS", "IN", "JJ", "NN", "IN", "NNS", "IN", "$", "CD", "CD", "CC", "JJR", "-NONE-", ".", "NN", ":", "NNP", "NNP", "-LRB-", "NNP", ".", "-RRB-", "NNP", ".", "NNP", "NNP", ":", "CD", "NN", ".", "DT", "NN", "IN", "NNS", "TO", "NN", "NNS", "IN", "DT", "NNP", "NNP", "NNP", "NNP", "NNP", ".", "NNP", "NNP", ":", "CD", "CD", "NN", ".", "DT", "NN", "IN", "NNS", "TO", "NNS", "IN", "NN", "NN", "NN", ".", "JJ", "NN", "VBN", "-NONE-", "RB", "IN", "NNP", "NNPS", "NNP", "NNP", ":", "CD", "NN", "CD", "TO", "CD", "NNS", ":", "CD", "NN", "CD", "TO", "CD", "NNS", ":", "CD", "NN", "CD", "TO", "CD", "NNS", ":", "CD", "NN", "CD", "TO", "CD", "NNS", ":", "CD", "NN", "CD", "TO", "CD", "NNS", ":", "CD", "NN", "CD", "TO", "CD", "NNS", ":", "CD", "NN", "CD", "TO", "CD", "NNS", ".", "JJ", "NN", ":", "JJ", "JJ", "NNS", "VBN", "-NONE-", "IN", "NNS", "IN", "JJ", "NNS", "IN", "NNS", "IN", "$", "CD", "-NONE-", ":", "CD", "NN", "CD", "NNS", ":", "CD", "NN", "CD", "NNS", ":", "CD", "NN", "CD", "NNS", ".", "NNS", "IN", "NN", ":", "CD", "NN", "CD", "NN", ":", "CD", "NN", "CD", "NNS", ":", "CD", "NN", "CD", "NNS", ":", "CD", "NN", "CD", "NNS", ":", "CD", "NN", "CD", "NN", ".", "JJ", "IN", "JJ", "NNS", "VBN", "-NONE-", "IN", "JJ", "NNP", "NNP", "NNS", "IN", "JJ", "JJ", "NNS", "IN", "JJ", "NNS", ",", "RB", "IN", "NNS", "IN", "$", "CD", "CD", "CC", "JJR", "-NONE-", ".", "DT", "JJ", "NN", "VBZ", "$", "CD", "-NONE-", ".", "JJ", "NNS", "IN", "DT", "JJ", "NN", ":", "CD", "NN", "CD", "NN", ":", "CD", "NN", "CD", "NNS", ":", "CD", "NN", "CD", "NNS", ".", "NNS", "NNS", ":", "CD", "NN", "CD", "NNS", ":", "CD", "NN", "CD", "NNS", ":", "CD", "NN", "CD", "NNS", ":", "CD", "NN", "CD", "NNS", ":", "CD", "NN", "CD", "NNS", ":", "CD", "NN", "CD", "NNS", ".", "JJ", ",", "JJ", "NN", "NN", "NNS", "RB", "VBG", "DT", "NN", "NN", ".", "NNP", "RB", "NNS", ":", "CD", "CD", "NN", "TO", "CD", "CD", "NN", "-NONE-", "CD", "NN", ":", "CD", "CD", "NN", "TO", "CD", "CD", "NN", "-NONE-", "CD", "NNS", ":", "CD", "CD", "NN", "TO", "CD", "CD", "NN", "-NONE-", "CD", "NNS", ":", "CD", "CD", "NN", "TO", "CD", "CD", "NN", "-NONE-", "CD", "NNS", ":", "CD", "CD", "NN", "TO", "CD", "CD", "NN", "-NONE-", "CD", "NNS", ":", "CD", "CD", "NN", "TO", "CD", "CD", "NN", "-NONE-", "CD", "NNS", ".", "NNP", "NN", "VBN", "NNS", "-LRB-", "NNP", "-RRB-", ":", "CD", "CD", "NN", "CD", "NN", ":", "CD", "CD", "NN", "CD", "NNS", ":", "CD", "CD", "NN", "CD", "NNS", ":", "CD", "CD", "NN", "CD", "NN", ".", "DT", "NN", "IN", "NN", "VBD", "NNS", "IN", "NN", "NNS", "IN", "DT", "NNP", "NN", "VBN", "-NONE-", "IN", "NNS", "IN", "CD", "JJ", "NNS", ".", "NNP", "NNP", "NNPS", ":", "NNP", "CD", "NN", ":", "NNP", "CD", "NN", ":", "NNP", "CD", "NN", ":", "NNP", "CD", "NN", ":", "NNP", "CD", "NN", ".", "DT", "NN", "NNS", "VBP", "RB", "RB", "JJ", ":", "VBG", "NNS", "VB", "RB", "IN", "NN", ".", "NNP", "NNPS", ":", "NNS", "IN", "DT", "NNP", ",", "NNP", "CD", ",", "CD", ",", "NN", "IN", "JJ", "NNP", "NN", "NNS", ",", "VBN", "-NONE-", "IN", "DT", "NN", "IN", "NN", "NN", "IN", "NNS", "IN", "$", "CD", "TO", "$", "CD", "CD", "-NONE-", ":", "CD", "NN", "CD", "NNS", ":", "CD", "NN", "CD", "NNS", ".", "NNP", "NNP", "NNP", "NNP", "NNP", ".", "-LRB-", "NNP", "NNP", "-RRB-", ":", "VBN", "NNS", "IN", "JJ", "NN", "NNS", "IN", "NN", "IN", "CD", "NNS", ".", "CD", "NN", ",", "JJ", "JJ", "JJ", "NNS", ":", "CD", "NN", ",", "CD", "NN", "NN", "JJ", "JJ", "JJ", "NN", "NNS", ".", "NN", ":", "NNP", "NNPS", "NNP", ".", "NNP", "NNP", "NNP", "NNP", "-LRB-", "NNP", "NNP", "-RRB-", ":", "VBN", "NNS", "IN", "CD", "NN", "NN", "NNS", "IN", "NN", "IN", "CD", "NNS", "-LRB-", "VBN", "-NONE-", "IN", "NN", "-RRB-", "CD", "NN", ",", "JJ", "JJ", "JJ", "NNS", ":", "CD", "NN", ",", "CD", "NN", "JJ", "JJ", "JJ", "NN", "NNS", ".", "NN", ":", "NNP", "NNPS", "NNP", ".", "NNP", "NNP", "NNP", "NNPS", "NNP", ":", "CD", "NN", ".", "VBN", "JJ", "NN", "IN", "NN", "IN", "NNS", "IN", "DT", "JJ", "CD", "NNS", ":", "RB", "DT", "NN", "IN", "JJ", "NNS", ".", "NNP", "NNP", "NNP", ",", "NN", "CC", "NN", "IN", "NNP", "NNP", "NNP", ",", "VBD", "PRP$", "NN", "IN", "DT", "NN", "NN", "-NONE-", "PRP", "VBZ", "VBN", "-NONE-", "IN", "CD", "NNS", ".", "DT", "NN", "VBD", "RB", "VBN", "-NONE-", ",", "WDT", "-NONE-", "VBD", "NN", "IN", "NNP", "NNP", "MD", "VB", "VBN", "IN", "NNP", "NNP", "NNP", ",", "WP$", "NN", "NN", ",", "NNP", "NNPS", "NNP", ",", "-NONE-", "VBZ", "NNP", "NNP", ".", "JJ", "NNS", "VBP", "RB", "JJ", "IN", "-NONE-", "IN", "DT", "NNP", "NN", ".", "IN", "DT", "NN", ",", "NNP", "NNP", "VBD", "-NONE-", "PRP$", "NN", "``", "VBD", "IN", "IN", "NNS", "IN", "NNP", "NNP", "CC", "DT", "VBZ", "DT", "NN", "-NONE-", "PRP", "VBD", "-NONE-", ".", "''", "PRP", "VBD", "-NONE-", "TO", "VB", ",", "JJ", "IN", "-NONE-", "TO", "VB", ",", "``", "PRP", "RB", "VBD", "DT", "JJ", "NN", "-NONE-", "-NONE-", "TO", "VB", "-NONE-", "IN", "DT", "NN", ".", "RB", "PRP", "RB", "VBP", "IN", "PRP$", "NN", ".", "''", "NNP", "NNP", "VBD", "-NONE-", "PRP", "MD", "VB", "IN", "NNP", "CD", "CC", "VB", "IN", "PRP$", "NN", ",", "WP", "-NONE-", "VBZ", "-NONE-", "TO", "VB", "VBN", "-NONE-", "RB", ".", "NNP", "NNP", ",", "RB", ",", "VBD", "IN", "PRP", "VBZ", "RB", "JJ", "IN", "NNP", "NNP", "CC", "DT", "NN", "IN", "NNP", "NNP", ",", "DT", "JJS", "NN", "VBG", "NN", "IN", "DT", "NNP", ".", "DT", "NN", "VBD", "-NONE-", "DT", "NN", "POS", "JJ", "NNS", "NN", "VBD", "TO", "$", "CD", "CD", "-NONE-", "IN", "$", "CD", "CD", "-NONE-", "IN", "NNP", "NNP", "POS", "NN", ".", "``", "NNP", "VBZ", "VBN", "DT", "JJ", "NN", "IN", "DT", "NN", "RB", "RB", ",", "''", "VBD", "-NONE-", "NNP", "NNP", ".", "``", "DT", "NN", "VBZ", "VBG", "RB", ",", "PRP", "VBZ", "JJ", ",", "PRP", "VBZ", "VBN", "JJ", "NNS", ".", "NNP", "VBZ", "DT", "NN", "CC", "DT", "VBD", "IN", "DT", "JJ", "NN", ".", "''", "NN", "NNS", "VBP", "IN", "IN", "NNP", "NNP", "VBZ", "VBN", "JJ", "NN", "CC", "VBZ", "RB", "VBN", "JJ", "NNS", "IN", "JJ", "NNS", ",", "DT", "IN", "DT", "JJR", "NNS", "VBP", "RB", "VBN", "VBN", "-NONE-", "RB", "RB", ".", "NNP", "NNP", "NNP", ",", "VBN", "-NONE-", "JJ", "NN", ",", "VBZ", "VBN", "-NONE-", "TO", "VB", "VBG", "RP", "JJ", "NNS", ".", "IN", "DT", "JJ", "NN", ",", "NNP", "NNP", "VBZ", "RB", "VB", "PRP$", "NNS", ".", "NNP", "NNP", ",", "WP", "-NONE-", "VBD", "NNP", "NNP", ",", "VBZ", "VBN", "RB", "DT", "JJ", "NN", "IN", "NNP", "NNP", "IN", "PRP", "VBD", "VBN", "-NONE-", "IN", "CD", ".", "NN", "IN", "PRP$", "NN", "VBZ", "IN", "DT", "NN", "IN", "NN", "NNS", "IN", "DT", "NN", ".", "JJ", "NNS", "VBP", "NNP", "NNP", ",", "NN", "IN", "NNP", "NNP", ",", "NNP", "NNP", "POS", "JJ", "CC", "JJ", "NN", "NN", ".", "DT", "VBP", "-NONE-", "NNP", "NNP", ",", "NN", "IN", "DT", "RB", "VBN", "JJ", "NN", ",", "NNP", "NNP", ",", "MD", "VB", "VBN", "-NONE-", ".", "EX", "VBZ", "RB", "NN", "IN", "NNP", "NNP", "MD", "VB", "IN", "DT", "NN", "NN", "CC", "DT", "NNP", "NN", "NN", "-NONE-", "-NONE-", "TO", "VB", "DT", "NN", "NN", ",", "IN", "NN", "IN", "DT", "NN", "NN", "IN", "NNP", "NNP", ",", "WP", "-NONE-", "VBD", "NNP", "NNP", "POS", "NNP", "NNP", "NNP", "-NONE-", "TO", "VB", "DT", "NNP", "NNP", ",", "RB", "VBN", "-NONE-", "IN", "DT", "NNP", "NN", ".", "RB", "VBN", "IN", "DT", "JJ", "NN", "VBP", "NNP", "NNP", ",", "VBN", "-NONE-", "CD", "NNS", "IN", "-NONE-", "TO", "VB", "NN", "IN", "NN", "NN", "NNS", "IN", "NNP", "NNP", ",", "CC", "NNP", "NNP", ",", "NN", "IN", "DT", "JJ", "NNP", "NNP", "NNP", "NN", ".", "WRB", "NNP", "NNP", "VBD", "PRP", "NN", "-NONE-", ",", "JJ", "JJ", "NNS", "WDT", "-NONE-", "VBD", "VBN", "TO", "PRP$", "NN", "VBD", "RB", "VBN", "-NONE-", "RB", "IN", "PRP", "VBD", "RB", "NN", "-NONE-", "TO", "VB", "DT", "JJ", "NN", ".", "NNP", "NNP", "VBZ", "RB", "VBN", "IN", "DT", "JJ", "NN", "CC", "DT", "JJ", "NN", "CC", "PRP$", "JJ", "NN", "VBD", "VBN", "-NONE-", "RB", ".", "NNP", "NNP", ",", "DT", "JJ", ",", "JJ", "NN", "WP", "-NONE-", "VBZ", "RB", "VBN", "IN", "DT", "NN", "NN", ",", "VBZ", "VBN", "JJ", "IN", "PRP$", "NN", "IN", "JJ", "NNS", "IN", "JJ", "NNS", "NNS", ".", "NNP", "VBD", "IN", "DT", "NNP", "NN", "IN", "PRP", "MD", "VB", "DT", "JJ", "NN", "IN", "-NONE-", "VBG", "RB", "CC", "RB", "DT", "JJ", "CD", "NNS", ":", "``", "VBN", ",", "IN", "DT", "NNS", "MD", "VB", "VBN", "-NONE-", ":", ".", "''", "DT", "NN", "RB", "RB", "VBZ", "VBN", "-NONE-", "IN", "DT", "JJ", "NNS", "NNS", "RB", "VBG", "IN", "NNP", ".", "PRP", "VBZ", "NNP", "POS", "NN", ",", "IN", "DT", "NN", "IN", "-NONE-", "VBG", "DT", "JJ", "NN", ",", "-NONE-", "TO", "VB", "DT", "NN", "DT", "NN", "JJ", "-NONE-", "TO", "VB", "JJ", "IN", "PRP$", "NNS", "CC", "NNS", "VBN", "-NONE-", "IN", "NNP", "NNP", "IN", "DT", "NNP", ".", "DT", "NN", "IN", "JJ", "NN", "VBZ", "VBN", "-NONE-", "IN", "DT", "NN", "IN", "DT", "NNS", "NN", "WDT", "-NONE-", "VBZ", "JJ", "CC", "JJ", ".", "DT", "NNS", "NN", "VBZ", "IN", "``", "DT", "NN", "MD", "VB", "VBN", "-NONE-", "IN", "DT", "NNP", ",", "CC", "IN", "NN", "IN", "NNS", "VBN", "-NONE-", "IN", "NN", ":", ".", "''", "DT", "VBG", "NN", "IN", "DT", "NN", "IN", "NNP", "NNP", "VBZ", "IN", "PRP", "VBZ", "NNP", "DT", "JJ", "NN", "IN", "DT", "JJ", "NN", "IN", "DT", "NN", "IN", "DT", "NN", "-NONE-", "TO", "VB", "NN", ".", "DT", "NN", "VBD", "RB", "VBN", "-NONE-", "IN", "NNP", "IN", "CD", "IN", "DT", "NNP", "NNP", ".", "IN", "NNS", "IN", "JJ", "NN", "VBP", ",", "DT", "``", "NN", "IN", "DT", "NN", "''", "RB", "RB", "VBN", "-NONE-", "MD", "VB", "DT", "NN", "CC", "VB", "DT", "NN", "IN", "NN", "IN", "NNS", ".", "PRP", "VBZ", "RB", "VBN", "IN", "DT", "NN", "CC", "NN", "IN", "DT", "NNP", ".", "DT", "NNS", "RB", "VBD", "DT", "NNS", "NN", "IN", "DT", "NNP", "NNP", "IN", "CD", ",", "VBG", "TO", "NNP", "POS", "NNS", ".", "TO", "DT", "NN", "-NONE-", "PRP", "VBD", ",", "PRP$", "NN", "VBD", "-NONE-", "TO", "VB", "JJ", "NN", ".", "RB", ",", "DT", "NNS", "VBD", "IN", "DT", "NN", "VBD", "DT", "JJ", "NN", "IN", "DT", "NN", "CC", "NNS", "-NONE-", "-NONE-", "TO", "VB", "DT", "NN", "NNS", "IN", "DT", "NNP", "NNP", "VBD", "VBN", "-NONE-", "RB", "IN", "DT", "NNPS", "IN", "NNP", "-NONE-", ".", "PRP", "MD", "VB", "DT", "NN", "IN", "DT", "NNS", "NN", "-LRB-", "RB", "DT", "NN", "IN", "JJ", "NN", "-RRB-", "MD", "VB", "VBN", "-NONE-", "IN", "-NONE-", "VBG", "DT", "NN", "IN", "NNP", "POS", "JJ", "NN", ",", "-NONE-", "VBG", "DT", "NN", "VBP", "IN", "DT", "NN", "CC", "DT", "NN", "IN", "NNP", ".", "IN", "PRP", "VBD", "TO", "DT", "NN", "NN", "RB", "VBG", ",", "DT", "NNS", "NN", "IN", "DT", "JJ", "NN", "IN", "DT", "NN", "IN", "JJ", "CD", "VBD", "DT", "JJ", "NNS", "-NONE-", "IN", "NNP", "-NONE-", "TO", "VB", "DT", "NNP", "IN", "DT", "NN", "IN", "-NONE-", "VBG", "DT", "NN", "POS", "NN", ".", "IN", "DT", "VBG", "NNS", ",", "NNP", "NNP", "MD", "VB", "IN", "-NONE-", "TO", "VB", "DT", "NNS", "VBG", "PRP", ":", "CC", ",", "RB", ",", "-NONE-", "TO", "VB", "DT", "NNS", "IN", "NN", "IN", "DT", "NN", "VBG", "PRP$", "NNS", "IN", "JJ", "NN", "TO", "VB", "IN", "NN", "IN", "NNP", "NNP", ",", "CC", "RB", "JJ", "CC", "JJ", ".", "DT", "CD", "NNS", "NN", "VBZ", "-NONE-", "TO", "VB", "DT", "NN", "IN", "PRP$", "NNS", "-NONE-", "TO", "VB", "JJ", "NNS", "IN", "-NONE-", "VBN", "-NONE-", "IN", "NNP", "NNP", ".", "NNP", "NNP", "VBZ", "IN", "DT", "NN", "DT", "NN", "-NONE-", "TO", "VB", "-NONE-", ",", "``", "CC", "IN", "CC", "IN", "DT", "NNP", "CC", "NNP", "IN", "DT", "NNP", "''", "VB", "-NONE-", ",", "NNS", ",", "NNS", ",", "CC", "JJ", "NNS", "IN", "DT", "NNP", ".", "PRP", "RB", "VBZ", "DT", "NN", "TO", "VB", "NN", "NNS", ",", "IN", "NNP", "NN", ":", "``", "DT", "NNP", "MD", "VB", "NN", "-NONE-", "TO", "VB", "RP", "DT", "NNS", "WDT", "-NONE-", "MD", "VB", "IN", "DT", "NN", "IN", "DT", "NNP", ",", "IN", "-NONE-", "VBG", "NNS", "WDT", "-NONE-", "MD", "VB", "IN", "DT", "NN", "IN", "PRP$", "JJ", "NN", ".", "''", "RB", "NNP", "CD", "IN", "DT", "NNS", "NN", "IN", "DT", "JJ", "NN", "VBZ", ":", "``", "DT", "NN", "IN", "DT", "NN", "IN", "DT", "JJ", "JJ", "NN", "VBN", "-NONE-", "IN", "DT", "CC", "DT", "JJ", "NN", "MD", "VB", "VBN", "-NONE-", "TO", "DT", "NN", "IN", "DT", "NN", "IN", "DT", "NN", "IN", "WDT", "PRP", "CC", "PRP", "VBZ", "VBN", "VBN", "-NONE-", "-NONE-", "IN", "DT", "NNP", "VBZ", "VBN", "-NONE-", "RB", "TO", "VB", "DT", "NN", "IN", "VBN", "NN", ".", "''", "RB", ",", "IN", "CD", "JJ", "NN", "IN", "DT", "NNS", "NN", ",", "NNP", "VBZ", "DT", "NN", "POS", "NN", "-NONE-", "TO", "VB", "NN", "NNS", "IN", "NNP", "NNP", ".", "NN", "CD", "RB", "VBZ", "JJ", "NNS", "IN", "DT", "NN", "POS", "NN", "-NONE-", "TO", "VB", "NNS", "IN", "PRP$", "NN", ".", "DT", "NN", "IN", "DT", "NNS", "NN", "VBZ", "IN", "DT", "NN", "TO", "DT", "NN", "IN", "DT", "VBN", "NN", "MD", "VB", "IN", "DT", "NN", "VBG", "VBN", "-NONE-", "VBG", "-NONE-", "-NONE-", "TO", "VB", "DT", "NN", "POS", "NN", "-NONE-", ".", "DT", "NN", "MD", "RB", "RB", "VB", "DT", "NN", "IN", "-NONE-", "VBG", "NNS", "JJ", "-NONE-", "TO", "VB", "IN", "NN", ",", "IN", "DT", "NNP", "NNP", "VBZ", "JJ", "NN", "TO", "DT", "NN", ".", "DT", "CD", "NNS", "NNS", "RB", "VBP", "DT", "NN", "IN", "``", "JJ", "''", "NNS", "WDT", "-NONE-", "VBP", "DT", "NN", "NN", "IN", "NNP", "NNP", "IN", "DT", "NNP", ".", "JJ", "NNS", ",", "WDT", "-NONE-", "MD", "VB", "VBN", "-NONE-", "``", "NN", "NNS", "''", "IN", "RB", ",", "VBP", "DT", "JJ", "NN", "IN", "RB", "-NONE-", "VBG", "IN", "JJ", "NN", "NNS", ",", "VB", "RB", "IN", "-NONE-", "VBG", "PRP", "TO", "NNP", ".", "JJ", "NNS", "VBP", "DT", "NN", "IN", "NNP", "NNP", "WDT", "-NONE-", "VBZ", "DT", "NN", "TO", "VB", "NNS", "TO", "NNP", ",", "CC", "WDT", "-NONE-", "VBZ", "DT", "NN", "DT", "NN", "-NONE-", "-NONE-", "TO", "VB", "DT", "JJ", "NN", "IN", "DT", "NNS", "-NONE-", ".", "RB", ",", "DT", "NNS", "VBP", "-NONE-", "TO", "VB", "JJ", "NN", "NNS", "IN", "-NONE-", "VBG", "IN", "IN", "JJ", "JJ", "NNS", "VBP", "DT", "JJ", "NN", "CC", "VBG", "JJR", "JJ", "NNS", "TO", "NNS", ".", "RB", "DT", "RBS", "JJ", "NN", "VBZ", "DT", "NN", "IN", "DT", "NNS", "NN", "IN", "DT", "NN", "NN", "WDT", "-NONE-", "VBZ", "DT", "NN", "POS", "NNP", "IN", "NNP", "CC", "NNP", "IN", "-NONE-", "VBG", "JJ", "NN", "NNS", "TO", "DT", "JJ", "NN", ".", "EX", "VBZ", "NN", "RB", "JJ", "IN", "NNP", "POS", "VBG", "DT", "NN", "IN", "-NONE-", "RB", "VBG", "IN", "JJ", "NNS", "VBP", "VBG", "VBN", "-NONE-", "IN", "DT", "VBN", "NN", "CC", "JJ", ".", "RB", "NN", "IN", "DT", "JJ", "NNS", "VBN", "-NONE-", "IN", "DT", "NNS", "NNS", "IN", "JJ", "CD", "RBR", "-NONE-", "VBZ", "NNP", "POS", "NN", "-NONE-", "TO", "VB", "JJ", "NN", "IN", "NN", "CD", "IN", "DT", "NN", "NN", ":", "``", "NN", "IN", "DT", "NNS", "VBN", "-NONE-", "JJ", "JJ", "TO", "DT", "NNS", "IN", "DT", "NN", "MD", "VB", "VBN", "-NONE-", "-NONE-", "TO", "VB", ",", "VB", ",", "CC", "VB", "DT", "NN", "WDT", "-NONE-", "VBZ", "VBN", "VBN", "-NONE-", "JJ", "TO", "DT", "NN", "IN", "NN", "RB", "VBN", "-NONE-", "IN", "NN", "IN", "DT", "JJ", "NN", "IN", "DT", "NNP", "NNPS", ".", "''", "DT", "NN", "VBZ", "TO", "DT", "JJ", "NN", "IN", "DT", "NN", "POS", "NN", "IN", "DT", "NN", ",", "IN", "DT", "JJ", "NN", "MD", "VB", "VBN", "-NONE-", "TO", "VB", "``", "RB", "VBN", "''", "RB", "IN", "PRP", "MD", "VB", "DT", "JJ", "NN", "IN", "NNP", "CC", "NN", "TO", "DT", "NN", "IN", "PRP$", "NN", "CC", "NN", ".", "DT", "NNP", "NNP", "POS", "NN", "IN", "NNP", "CC", "NNP", "VBD", "IN", "JJ", "NNS", "VBP", "JJ", ".", "NNP", "NNP", "MD", "VB", "NNS", "NNS", "WDT", "-NONE-", "VBP", "DT", "NNS", "IN", "JJ", "NNS", "IN", "DT", "NN", "POS", "NN", "-NONE-", "TO", "VB", "PRP$", "NNS", "CC", "VB", "PRP$", "NNS", ".", "IN", "NNP", "NNP", "VBZ", "-NONE-", "TO", "VB", "RB", "IN", "PRP$", "JJ", "NN", ",", "PRP", "MD", "VB", "NNP", ",", "IN", "DT", "NN", "IN", "PRP$", "NN", ",", "-NONE-", "TO", "VB", "NNP", "NNP", "IN", "DT", "NNP", "-NONE-", "TO", "VB", "PRP$", "NNS", ".", "WP", "-NONE-", "VBZ", "NN", "IN", "DT", "NNP", "NN", "MD", "RB", "VB", "RBR", "JJ", "-NONE-", "IN", "JJ", "NNS", ",", "VBG", "NNPS", ",", "TO", "VB", "-NONE-", ".", "NNP", "NNP", "VBD", "DT", "NN", ".", "IN", "CD", ",", "JJ", "NNP", "NNP", "VBD", "VBG", "NNS", "NN", "IN", "NNP", "IN", "NNP", "NNP", "CC", "RB", "VBG", "-NONE-", "TO", "VB", "DT", "NN", ",", "IN", "DT", "NNS", "NN", ",", "-NONE-", "TO", "VB", "DT", "NNPS", "IN", "IN", "DT", "NNP", "VBD", "VBN", "NNP", "NNP", ".", "IN", "DT", "NN", "VBZ", "JJ", "IN", "PRP", "MD", "VB", "NN", "IN", "DT", "JJ", "NN", "JJ", ",", "DT", "NN", "MD", "VB", "DT", "NNS", "NNS", "IN", "NN", "CC", "VB", "DT", "NN", "IN", "NN", ",", "-NONE-", "VBG", "DT", "NN", "VBG", "PRP$", "NNP", "NNP", "NNS", "TO", "VB", "JJ", "CC", "JJ", ".", "DT", "NNP", "VBZ", "RB", "RB", "VB", "DT", "NN", "JJ", "NN", ".", "RB", ",", "DT", "NN", "VBZ", "VB", "DT", "NN", "-NONE-", "RB", "TO", "VB", "DT", "NNP", ".", "DT", "NN", "VBZ", "IN", "PRP$", "JJ", "NNS", "IN", "NN", "VBZ", "DT", "NN", ".", "NN", "IN", "NNS", "NNS", "WDT", "-NONE-", "VBP", "IN", "DT", "NN", "POS", "NNS", "CC", "NN", "IN", "NNP", "NNP", "MD", "VB", "JJ", "IN", "DT", "JJ", "NN", ".", "IN", "-NONE-", "VBN", "IN", "DT", "NN", "IN", "-NONE-", "VBG", "JJ", "NN", ",", "DT", "JJ", "NN", "VBZ", "VBN", "-NONE-", "IN", "DT", "NN", "-NONE-", "IN", "DT", "NN", "TO", "VB", "RB", "JJ", "NNS", "IN", "DT", "NN", "NN", "WDT", "-NONE-", "VBP", "JJ", "RB", "IN", "PRP", "VBP", "IN", "PRP$", "NN", "NNS", "-NONE-", ".", "DT", "NN", "IN", "JJ", "NNS", "IN", "DT", "NNS", "NN", "MD", "VB", "DT", "NN", "IN", "RB", "RBR", "VBN", "NN", ".", "CD", "MD", "VB", "IN", "PRP", "-NONE-", "VBZ", "RB", "DT", "NN", "IN", "DT", "NN", "NN", "IN", "DT", "IN", "DT", "NN", ",", "IN", "-NONE-", "VBG", "DT", "NN", "IN", "NN", ",", "TO", "VB", "JJ", "NNS", "IN", "NN", "WDT", "-NONE-", "VBP", "DT", "NN", "IN", "NNS", ".", "EX", "VBZ", "DT", "NN", "IN", "DT", "NN", "VBZ", "DT", "NN", "IN", "NN", "IN", "JJ", "NNS", "IN", "DT", "JJ", "CD", "NNS", "NNS", ".", "IN", "NNP", "VBZ", "NN", ",", "NNP", "NNP", "MD", "VB", "VBN", ".", "IN", "NNP", "VBZ", "DT", "NN", "TO", "DT", "NNP", "NNP", "-LRB-", "-NONE-", "VBG", "-NONE-", "PRP", "MD", "VB", "NN", "-NONE-", "-NONE-", "TO", "VB", "-NONE-", "-RRB-", ",", "NNP", "NNP", "MD", "VB", ".", "IN", "DT", "NN", ",", "PRP", "MD", "VB", "DT", "NN", "-NONE-", "IN", "DT", "NN", "WDT", "-NONE-", "VBZ", "DT", "NN", "IN", "DT", "NN", "POS", "NN", "-NONE-", "TO", "VB", "DT", "NNS", "CC", "VB", "DT", "NNS", "-NONE-", "DT", "NNS", "VBD", "-NONE-", "-NONE-", "MD", "VB", "VBN", "-NONE-", "TO", "DT", "NN", ".", "IN", "NNP", "NNP", "VBZ", "IN", "DT", "NN", ",", "PRP", "MD", "VB", "JJ", ",", "IN", "NNP", "CC", "NNP", "VBD", "-NONE-", "IN", "DT", "NNP", "NN", ".", "CC", "DT", "NN", "MD", "VB", "RB", "JJR", "IN", "IN", "PRP", "VBZ", "-NONE-", "RB", ".", "RB", ",", "DT", "NN", "MD", "VB", "VBN", "DT", "JJ", "NNS", "NN", "IN", "WRB", "DT", "NN", "IN", "NNS", "VBZ", "IN", "NN", "-NONE-", ".", "IN", "PRP", "VBZ", "RB", ",", "NNP", "VBZ", "IN", "DT", "NNP", "NN", "IN", "DT", "NNP", "NNP", "MD", "VB", "JJ", "NNS", "IN", "NNS", "NNS", "-NONE-", "VBG", "IN", ".", "NNP", "NNP", "MD", "VB", "NNS", "RB", ".", "IN", "PRP", "VBZ", "RB", ",", "PRP", "MD", "VB", "-NONE-", "VB", "NNP", "POS", "NN", "IN", "DT", "NNP", "NN", "CD", "IN", "DT", "NN", "``", "RB", "VBG", "DT", "NN", "IN", "PRP$", "NN", "CC", "VBG", "DT", "NNS", "IN", "PRP$", "JJ", "NN", ".", "''", "NNP", "NNP", "VBD", "IN", "DT", "NN", "IN", "DT", "NNP", "NN", ".", "PRP$", "JJR", "NN", "IN", "JJ", "NN", "CC", "DT", "NNS", "NN", "VBZ", "-NONE-", "TO", "VB", "IN", "DT", "NNP", "NNP", "NNP", "JJ", "DT", "NN", ".", "IN", "CD", "IN", "DT", "RBS", "JJ", "NNS", "IN", "NN", ",", "JJ", "NN", "NN", "IN", "DT", "NNP", "NNP", "VBD", "TO", "DT", "JJ", "NN", "IN", "$", "CD", "CD", "-NONE-", "JJ", "NN", ".", "DT", "JJ", "NN", "VBD", "$", "CD", "CD", "-NONE-", "IN", "CD", ",", "VBG", "TO", "DT", "NNP", "NNP", ".", "JJ", "NN", "NN", ":", "DT", "NN", "VBN", "-NONE-", "IN", "NNS", "POS", "NNS", "IN", "-NONE-", "VBG", "NNS", "IN", "JJ", "NN", "NN", ":", "VBD", "IN", "CD", "NNS", "IN", "CD", ",", "IN", "DT", "NN", "VBD", "IN", "NN", "NNS", "CC", "VBD", "RP", "NN", "NNS", ",", "DT", "NN", "POS", "NNP", "NNP", "NNP", "VBD", "-NONE-", "-NONE-", "NN", ".", "JJS", "IN", "DT", "NNS", "VBP", "NN", "NN", "NNS", ".", "DT", "JJS", "NN", "NN", "VBD", "IN", "DT", "NNP", "NNP", "NNP", "CC", "DT", "JJ", "NNP", "NNPS", ".", "WP", "-NONE-", "VBD", "JJ", "NNS", "IN", "DT", "JJ", "NN", "VBD", "DT", "NN", "-NONE-", "TO", "VB", "JJ", "NNS", "IN", "NN", "CC", "JJ", "NNS", "IN", "PRP", "VBD", "``", "VBN", "''", "-NONE-", "TO", "DT", "NN", "IN", "JJ", "NN", "NNS", ".", "IN", "NNS", "VBG", ",", "PRP", "VBD", "JJ", "-NONE-", "TO", "VB", "DT", "VBN", "NNS", "IN", "``", "JJ", "NN", ",", "''", "DT", "NN", "POS", "JJ", "NN", "VBD", "-NONE-", "-NONE-", ".", "IN", "JJR", "VBN", "NNS", ",", "RB", ",", "NNS", "WP", "-NONE-", "VBD", "JJ", "CC", "DT", "NN", "IN", "NN", "VBD", "RB", "IN", "DT", "JJR", "NNS", ".", "TO", "DT", "NN", "IN", "DT", "NNS", ",", "JJ", "NN", "NN", "VBD", "IN", "DT", "IN", "DT", "JJ", "NNS", ",", "VBG", "NNP", ",", "NNP", ",", "NNP", "CC", "DT", "NNPS", ".", "NNS", "VBD", "DT", "NNS", "RB", "TO", "DT", "$", "CD", "CD", "-NONE-", "JJ", "NN", "VBN", "-NONE-", "IN", "NNP", ".", "JJ", "NN", "POS", "NN", "NN", "NN", "NN", "VBZ", "DT", "NN", "NN", "POS", "NN", "IN", "DT", "JJ", "NN", "IN", "DT", "JJ", "CD", ".", "PRP", "RB", "VBZ", "-NONE-", "VB", "DT", "NN", "-NONE-", "IN", "DT", "JJ", "NN", "NNS", "CC", "JJ", "NNS", "-NONE-", "TO", "VB", "DT", "JJ", "NNS", "IN", "DT", "CD", "NN", "NN", "IN", "NN", ".", "NN", "NNS", "VBP", "VBN", "VBG", "IN", "JJ", "NNS", ",", "IN", "DT", "NN", "NN", "NN", "VBG", "NN", "NNS", "JJR", "DT", "NN", ",", "IN", "DT", "NN", "VBD", "NN", "IN", "JJ", "NNS", "-NONE-", "TO", "VB", "JJ", "NNS", ".", "IN", "DT", "JJ", "NN", ",", "NN", "NN", "IN", "NNP", "NN", ",", "NN", "CC", "JJ", "NNS", "VBD", ",", "VBD", "-NONE-", "NNP", "NNP", ",", "DT", "NN", "NN", ".", "NNS", "RB", "VBD", "IN", "JJ", "NN", "NNS", ",", "IN", "DT", "NN", "POS", "NNS", "NN", "VBD", "RB", "TO", "DT", "JJ", "NN", ".", "``", "DT", "IN", "DT", "NNS", "VBD", "RB", "IN", "CD", "-NONE-", "TO", "VB", "NN", ",", "''", "NNP", "NNP", "VBD", "-NONE-", ".", "NNP", "VBD", "DT", "NN", "IN", "$", "CD", "CD", "-NONE-", "IN", "JJ", "NN", "NN", "JJ", "NN", ",", "VBN", "IN", "NNP", ",", "$", "CD", "CD", "-NONE-", ":", "NNP", ",", "$", "CD", "CD", "-NONE-", ":", "NNP", ",", "$", "CD", "CD", "-NONE-", ":", "CC", "NNP", ",", "$", "CD", "CD", "-NONE-", ".", "NNP", "CC", "NNP", "VBD", "IN", "DT", "JJ", "JJ", "NN", "NNS", "-NONE-", "-NONE-", "TO", "VB", "DT", "NN", "IN", "JJ", "NN", "NN", ".", "IN", "JJ", "NN", "NN", ",", "DT", "NN", "IN", "CD", "VBD", "DT", "JJ", "JJ", "NN", "IN", "DT", "VBN", "CD", "TO", "CD", "NNS", ",", "VBG", "TO", "DT", "NN", ".", "JJ", "VBD", "PRP$", "NNS", ".", "NN", "NNS", "VBP", "RB", "VB", "CD", "TO", "VB", "RB", "JJ", "DT", "NN", "IN", "CD", "VBD", "-NONE-", ".", "RB", ",", "JJ", "NN", "NN", "VBZ", "JJ", "-NONE-", "TO", "VB", "DT", "NN", "IN", "NN", "NNS", "VBP", "CC", "NN", "NNS", "TO", "NNS", "VBP", ".", "IN", "DT", "JJ", "NN", ",", "DT", "NN", "IN", "NN", "IN", "NN", "IN", "DT", "NN", "VBZ", "VBN", "NN", "IN", "NN", ",", "NNS", "CC", "JJ", "NNS", ",", "-NONE-", "VBG", "DT", "NN", "IN", "NNS", "WDT", "-NONE-", "VBZ", "VBN", "RB", "RB", "VBN", "-NONE-", "IN", "JJ", "NN", "NN", "IN", "DT", "NNPS", ".", "JJ", "NN", ",", "NN", "NNS", "TO", "NNS", "VBD", "TO", "JJR", "IN", "$", "CD", "CD", "-NONE-", "IN", "DT", "NN", "$", "CD", "CD", "-NONE-", "IN", "CD", ".", "NNS", "VBP", "VBN", "-NONE-", "TO", "VB", "IN", "$", "CD", "CD", "-NONE-", "CC", "$", "CD", "CD", "-NONE-", "DT", "NN", ".", "IN", "NNS", "IN", "VBG", ",", "DT", "NNP", "NNP", "NNP", "NNP", "MD", "VB", "PRP$", "JJ", "NN", "NN", ",", "-NONE-", "VBN", "RP", "IN", "PRP$", "NN", ",", "NNP", "NNP", ",", "VBG", "JJ", "NNS", "-NONE-", "TO", "VB", "DT", "JJ", "NN", ".", "DT", "NN", "IN", "DT", "JJ", "NNP", ",", "RB", "DT", "NN", "POS", "JJS", "NN", "NN", "IN", "NN", "VBG", "CD", ",", "VBZ", "DT", "NN", "POS", "JJ", "NN", "IN", "DT", "JJ", "NN", ",", "IN", "JJS", "IN", "DT", "NNS", ".", "DT", "NNP", "NNP", "NNP", ",", "IN", "DT", "NN", "IN", "JJR", "IN", "CD", "CD", ",", "VBZ", "DT", "NN", ".", "CC", "PRP", "VBZ", "JJ", "NN", "IN", "NNP", "NNP", "IN", "DT", "NNP", "NNP", "NNP", ",", "WDT", "-NONE-", "VBZ", "JJR", "IN", "CD", "NNS", "DT", "NN", ",", "CC", "IN", "DT", "NNP", "NNP", "NNP", "IN", "DT", "NNP", "NNP", "NNP", "NNP", ",", "WDT", "-NONE-", "VBZ", "JJR", "IN", "CD", ".", "JJ", "NNS", "JJ", "IN", "NNP", "CC", "NNP", "NNP", "RB", "VBP", "JJ", "NNS", ".", "IN", "NNP", ",", "RB", "VBN", "NNP", ",", "VBN", "-NONE-", "IN", "NNP", "NNP", ",", "VBD", "DT", "NN", "IN", "DT", "NN", ".", "NN", "VBD", "PRP", "IN", "DT", "NN", "VBD", "VBG", "$", "CD", "CD", "-NONE-", "IN", "DT", "NN", "VBD", "-NONE-", "TO", "VB", "VBG", "IN", "$", "CD", "CD", "-NONE-", "DT", "NN", ",", "CC", "NNS", "VBD", "-NONE-", "NNP", "MD", "VB", "RB", "VBN", "DT", "NN", "RB", ".", "DT", "VBN", "NN", "VBN", "-NONE-", "IN", "NNP", "NNP", "NNP", ",", "NN", "NN", "NN", ",", "RB", "VBD", ",", "CC", "DT", "NN", "IN", "WP", "CD", "NN", "NN", "VBD", "-NONE-", "IN", "``", "NNS", "CC", "NNS", "''", "VBD", "VBN", "IN", "IN", ".", "DT", "JJ", "NNS", "VBD", "NN", "NNP", "NNP", "CC", "DT", "NNP", "NNP", ".", "DT", "NN", "IN", "DT", "NNP", ",", "DT", "NN", "NN", "IN", "DT", "NN", "NN", ",", "VBD", "RB", "JJ", ".", "NNP", "NNP", "VBZ", "DT", "JJ", ",", "JJ", "NN", "NN", ",", "CC", "NNS", "VBD", "-NONE-", "TO", "VB", "-NONE-", "PRP", "MD", "VB", "NN", "IN", "DT", "JJ", "NNP", ",", "RB", "VB", "DT", "JJ", "NN", "IN", "CD", "IN", "DT", "JJ", "NNS", ".", "DT", "NNP", "VBD", "VBN", "-NONE-", "IN", "NN", ".", "RB", ",", "DT", "NNP", "VBD", "-NONE-", "VBN", "RB", "IN", "-NONE-", "VBG", "PRP$", "JJ", "NNP", "NN", ":", "JJ", "CC", "JJ", ":", "CC", "VBG", "-NONE-", "TO", "VB", "DT", "JJ", ",", "JJ", "NN", "TO", "DT", "RB", "VBN", "NNP", ".", "NNP", "VBD", "VBN", "IN", "DT", "NN", "TO", "JJ", "NN", "IN", "NNS", "CC", "RB", "VBN", "DT", "NN", ".", "DT", "NNP", "VBZ", "DT", "NNP", "NNP", ",", "WDT", "-NONE-", "VBD", ",", "CC", "DT", "NNP", "NNP", ",", "WDT", "-NONE-", "VBD", "VBN", "-NONE-", ",", "IN", "NNS", "IN", "DT", "JJ", "NNP", "NN", "NN", "VBN", "-NONE-", "IN", "DT", "NN", "IN", "DT", "CD", ".", "JJ", "VBD", "-NONE-", "NNP", "VBD", "DT", "NN", "JJ", "IN", "RB", "IN", "PRP", "VBD", ",", "IN", "RB", ",", "IN", "IN", "PRP$", "NN", "IN", "NN", "NN", ".", "PRP$", "JJ", "NNS", "VBD", "VBN", "-NONE-", "IN", "NN", "NNP", "NNP", ",", "WP", "-NONE-", "VBD", "DT", "NNP", "NN", "IN", "NNP", "NNP", ".", "NNP", "NNP", "NNP", "VBD", "VBN", "DT", "NN", "IN", "DT", "NNP", "JJ", "NN", ".", "NNS", "VBD", "-NONE-", "DT", "NNP", "POS", "NN", "VBZ", "RB", "RB", "VB", "DT", "JJ", "NN", "IN", "DT", "NN", "NN", ".", "``", "DT", "NNP", "VBD", "DT", "NN", "IN", "DT", "JJ", "NN", ",", "''", "VBD", "-NONE-", "NNP", "NNP", "NNP", ",", "DT", "NNS", "NN", "IN", "NNP", "NNP", ".", "``", "RB", ",", "DT", "JJ", "NN", "IN", "JJ", "NNS", "VBZ", "NNS", "IN", "-NONE-", "VBG", "TO", "DT", "NN", ",", "CC", "DT", "NN", "VBZ", "RB", "JJ", ".", "''", "-NONE-", "VBN", "IN", "DT", "NNP", "IN", "CD", "IN", "NNP", "NNP", ",", "DT", "NNP", "VBD", "VBN", "-NONE-", "IN", "DT", "JJ", ",", "JJ", "NN", "WDT", "-NONE-", "VBD", "IN", "CD", "CC", "VBD", "NN", "IN", "DT", ".", "RB", ",", "PRP", "RB", "VBD", ":", "RB", ",", "PRP", "VBD", "PRP$", "NNS", ".", "IN", "CD", ",", "NNP", "VBD", "NN", "NNP", "NNP", ",", "WP", "-NONE-", "VBD", "DT", "NN", "NN", "RB", ".", "PRP", "CC", "PRP$", "NN", ",", "NNP", "NNP", "NNP", ",", "VBD", "NN", "IN", "DT", "NN", "NN", ",", "CC", "IN", "IN", "JJ", "NNS", "DT", "NN", "VBD", "VBN", "VBG", "IN", "IN", "VBN", "NNS", ",", "PRP$", "NNS", "VBD", "JJ", ".", "IN", "NN", ",", "DT", "NNP", "RB", "VBD", "PRP$", "JJ", "NN", "IN", "NNS", "IN", "NNP", "NNP", "NNP", "NNP", "NNP", "POS", "JJ", "NNS", ".", "DT", "NNP", "POS", "NNS", "NN", "CC", "NNS", "NN", "VBD", "RB", "RB", "VBN", ".", "NNP", "NNP", "NNP", ",", "NN", "NN", "-NONE-", "CC", "JJ", "NN", "-NONE-", "IN", "NNP", "NNP", ",", "VBD", "RP", "IN", "DT", "NN", "POS", "NN", "NN", "CC", "VBD", "IN", "DT", "NNS", "VBD", "VBN", "RB", "CC", "IN", "DT", "NN", "MD", "VB", ",", "-NONE-", "VBG", "JJR", "IN", "CD", "JJ", "NNS", "IN", "IN", "NN", ".", "NNP", "VBD", "-NONE-", "PRP", "MD", "VB", "NNS", "IN", "DT", "NN", "NN", "CC", "VB", "PRP", "IN", "CD", "NNS", ".", "DT", "JJ", "NNS", "MD", "VB", "JJ", "NNS", ",", "DT", "NN", "VBD", "-NONE-", "-NONE-", ".", "NNS", "IN", "DT", "NN", ",", "NNS", "IN", "DT", "NNP", "NNP", "NNP", "VBD", "IN", "DT", "NN", "IN", "DT", "NN", "-NONE-", "VBG", ".", "DT", "NN", "IN", "DT", "NN", "VBD", "JJ", ".", "``", "PRP", "VBP", "RB", "VBN", "IN", "JJ", "NNS", "VBG", "IN", "CD", "NN", "IN", "CD", "NN", ",", "''", "VBD", "-NONE-", "NNP", "NNP", ",", "DT", "JJ", "NN", "NN", ".", "``", "RB", "JJ", ",", "NNP", "''", "VBD", "VBN", "-NONE-", "IN", "DT", "NN", "POS", "JJ", "NN", ".", "``", "PRP", "VBP", "VBG", "DT", "JJ", "NN", ",", "CC", "PRP", "VBP", "RB", "CD", "NNS", "JJ", ",", "''", "VBD", "-NONE-", "NN", "NNP", "NNP", ",", "WP", "DT", "NNP", "VBD", "-NONE-", "RB", "JJ", "NNS", "IN", "CC", "WP", "-NONE-", "VBD", "TO", "DT", "NNP", "IN", "IN", "NN", ".", "PRP$", "NN", "RB", "VBZ", "IN", "DT", "NN", ",", "IN", "VBD", "PRP$", "NN", ".", "JJ", ",", "DT", "JJ", "NN", "VBG", "DT", "NN", "NN", "IN", "DT", "JJ", "NN", "VBN", "-NONE-", "``", "NNP", "NNP", "VBZ", "''", "VBD", "-NONE-", "TO", "VB", "DT", "NN", "POS", "NN", ".", "``", "-NONE-", "VB", "PRP", ",", "''", "PRP", "VBD", "-NONE-", "IN", "PRP", "VBD", "PRP", "DT", "NN", ".", "``", "PRP", "VBZ", "RB", "VB", "DT", "NN", "RB", ".", "NNP", "NNP", "NNP", "VBD", "-NONE-", "PRP", "VBD", "RB", "VB", "DT", "$", "CD", "CD", "-NONE-", "JJ", "NN", "NN", "JJ", "NN", "IN", "$", "CD", "CD", "-NONE-", "IN", "JJ", "VBN", "NNS", ".", "DT", "NN", "NN", "CC", "NN", "VBD", "-NONE-", "PRP", "VBD", "VBG", "-NONE-", "TO", "VB", "JJ", "JJ", "NN", "IN", "PRP$", "JJ", "VBN", "NNS", "CC", "JJ", "JJ", "NNS", ".", "PRP", "VBD", "-NONE-", "PRP", "VBZ", "-NONE-", "TO", "VB", "DT", "NN", "IN", "NNP", "CD", "-NONE-", "TO", "VB", "DT", "NN", "WDT", "-NONE-", "MD", "VB", "TO", "DT", "NN", "IN", "DT", "NN", ".", "IN", "NNP", ",", "DT", "NN", "VBD", "-NONE-", "PRP", "VBD", "VBG", "NNS", "IN", "PRP$", "CD", "NN", "NNS", "IN", "NN", "-NONE-", "TO", "VB", "IN", "PRP$", "NN", "NN", ".", "IN", "PRP", "MD", "RB", "RB", "VB", "DT", "NNP", ",", "-NONE-", "VB", "RB", "VB", "NN", "IN", "DT", "NNP", "NNP", "NN", ".", "CC", "IN", "DT", "NN", "MD", "VB", ".", "NNP", "NNP", "NNP", "CC", "NNP", "NNPS", "NNP", "POS", "VBN", "NNP", "NN", "VBP", "VBG", "NNS", "IN", "DT", "NN", "VBN", "-NONE-", "IN", "-NONE-", "VBG", "NNP", "POS", "NNS", "IN", "-NONE-", "VBG", "JJR", "NN", "IN", "DT", "NNP", "NNP", "NN", ".", "DT", "NNS", "VBP", "VBG", "JJ", "NNS", "IN", "CD", "TO", "NNP", "NNS", "WP", "-NONE-", "VBP", "DT", "CC", "NN", "IN", "PRP$", "IN", "NNS", "IN", "DT", "NNP", "NNP", "JJ", "NN", ".", "PRP", "VBP", "VBN", "-NONE-", "VBG", "NNS", "VBG", "DT", "NN", ",", "WDT", "-NONE-", "VBD", "NNP", "CD", "CC", "MD", "VB", "NNP", "CD", ",", "TO", "IN", "CD", "CD", "NN", "NNS", ".", "DT", "NN", "MD", "VB", "DT", "NN", "POS", "NN", ".", "NNP", "VBD", "NNP", "NNP", "IN", "DT", "JJ", "NN", "IN", "PRP$", "NN", "NNS", "RB", "VBP", "DT", "``", "JJ", "NN", "NN", "''", "CC", "VBP", "``", "JJ", "IN", "-NONE-", "VBG", "NNS", ",", "''", "VBZ", "-NONE-", "DT", "NN", "IN", "DT", "NN", ".", "NNP", "NNP", "RB", "VBZ", "DT", "NN", "NN", "-NONE-", "``", "PRP", "VBP", "VBG", "-NONE-", "TO", "VB", "-NONE-", ",", "''", "PRP", "VBZ", "-NONE-", ".", "NNP", "VBZ", "VBN", "VBG", "IN", "DT", "JJ", "JJ", "NNS", "-NONE-", "TO", "VB", "PRP$", "NN", "IN", "``", "DT", "NN", "POS", "NN", "''", ":", "DT", "NN", "IN", "NN", "NNS", ".", "NNS", "VBD", "RB", "JJ", "IN", "DT", "CD", "NN", "NN", "VBN", "IN", "DT", "NN", "JJR", ",", "IN", "NN", "NNS", "VBD", ".", "CC", "IN", "DT", "CD", "NN", "NN", "VBD", "NNP", "CD", ",", "NNP", "NNS", "VBP", "VBN", "CD", "NN", ".", "IN", "NNP", "NNP", ",", "DT", "NN", "VBZ", "NN", "IN", "DT", "NN", "-NONE-", "TO", "VB", "DT", "NN", "IN", "PRP$", "NN", "IN", "JJ", "NNS", ",", "WRB", "DT", "NN", "VBZ", "-NONE-", "TO", "VB", "RB", "IN", "DT", "JJ", "NN", "IN", "PRP$", "NN", "NN", "-NONE-", ".", "RB", ",", "DT", "NN", "VBZ", "VBN", "VBN", "-NONE-", "RB", "IN", "NN", "CC", "NN", "NNS", ".", "NNP", "NNP", ",", "DT", "NNP", "NNP", "JJ", "NN", "NN", ",", "VBZ", "-NONE-", "DT", "NN", "IN", "NNP", "VBZ", "PRP$", "NN", "POS", "JJ", "IN", "DT", "NN", "NN", ",", "CC", "``", "RB", "-LRB-", "MD", "VB", "-RRB-", "DT", "JJ", "IN", "JJ", "''", "IN", "DT", "NN", "POS", "NN", "-NONE-", "TO", "VB", "PRP$", "JJ", "NN", "IN", "``", "DT", "JJ", "JJ", "NN", ".", "''", "TO", "DT", "NN", ",", "NNP", "NNP", "VBZ", "VBN", "VBG", "RP", "NN", "NNS", ",", "NN", "NN", "NNS", ",", "NN", "NNS", "CC", "NN", "NNS", "-NONE-", "TO", "VB", "DT", "NN", ".", "JJ", "NN", "NNS", "RB", "VBP", "NN", "NNS", "VB", "NN", "CC", "DT", "IN", "PRP$", "NN", "IN", "DT", "NNP", "NNP", "NN", ",", "CC", "JJ", "NN", "NNS", "VBP", "DT", ",", "NNP", "NNP", "VBZ", "-NONE-", "-NONE-", ".", "IN", "RB", ",", "RB", ",", "NNS", "WP", "-NONE-", "VBD", "-NONE-", "TO", "VB", "NN", "IN", "DT", "NN", "NN", "IN", "NNP", "NNPS", "NNP", "NNP", "MD", "RB", "VB", "PRP$", "NN", "NN", "IN", "DT", "NN", "NN", "IN", "IN", "JJ", "NNS", "IN", "NN", "CC", "NN", "NN", "NNS", "IN", "NN", "NNS", ",", "VBZ", "-NONE-", "DT", "NN", "IN", "DT", "NNP", "NN", "NN", ".", "CC", "NNP", "VBD", "DT", "NNP", "NN", ",", "PRP", "VBZ", "-NONE-", "-NONE-", ",", "IN", "DT", "NNP", "NNP", "JJ", "NN", "VBZ", "NN", "IN", "JJ", "IN", "NN", ",", "CC", "RB", "VBZ", "RB", "VB", "DT", "NN", "NNS", ".", "NNP", "NNP", "VBZ", "-NONE-", "NNP", "NNP", "VBZ", "NNP", "CC", "NNP", "``", "RB", "JJ", "JJ", "NNS", ",", "''", "IN", "``", "IN", "-NONE-", "VBG", "NNS", "IN", "PRP", "PRP", "VBP", "VBN", "-NONE-", "TO", "VB", "PRP$", "JJ", "NN", ".", "''", "IN", "NN", ",", "NNP", "VBZ", "DT", "RB", "VBN", "NN", "IN", "NNP", "NNP", "NN", "NNS", ",", "VBZ", "-NONE-", "-NONE-", "DT", "NNP", "NNP", "NN", ".", "WRB", "DT", "NN", "VBD", "NNS", "IN", "DT", "NN", "WDT", "NNS", "PRP", "MD", "VB", "-NONE-", "TO", "VB", "NN", "IN", "-NONE-", "IN", "JJ", "JJ", "NNS", "-NONE-", ",", "NNP", "VBD", "RP", "JJ", "IN", "NNP", "NNS", "CC", "IN", "DT", "NN", "CD", "IN", "DT", "NNS", ",", "DT", "NN", "VBZ", "-NONE-", "-NONE-", ".", "NNP", "NNP", "VBZ", "JJR", "IN", "CD", "CD", "NN", "NNS", "IN", "DT", "NNP", ",", "CC", "IN", "DT", "VBP", "DT", "JJ", "NN", ".", "NNP", "VBD", "DT", "NN", "NN", "IN", "NNS", "JJR", "IN", "CD", "NNS", "JJ", "IN", "NN", "NNS", "IN", "$", "CD", "-NONE-", "WP", "-NONE-", "VBD", "RB", "``", "VBN", "DT", "NNS", ",", "''", "DT", "NNP", "NN", "VBZ", "-NONE-", "-NONE-", ".", "DT", "CD", "CD", "IN", "DT", "CD", "CD", "WP", "-NONE-", "MD", "VB", "NNS", "VBD", "VBN", "-NONE-", "IN", "NN", "IN", "NNP", ".", "DT", "CD", "CD", "NNS", "RB", "VBP", "JJ", "-NONE-", "TO", "VB", "CD", "NN", "NN", "IN", "NNP", "POS", "VBN", "NN", "NNS", ",", "WDT", "-NONE-", "VBP", "IN", "CD", "NN", "IN", "JJ", "NN", "NNS", ".", "DT", "NN", "IN", "NNP", "NNP", "POS", "NNP", "NN", "VBZ", "-NONE-", "PRP$", "NN", "VBZ", "VBG", "NNS", "-NONE-", "TO", "VB", "NN", "IN", "PRP$", "NNS", ",", "CC", "VBZ", "RB", "VB", "NNS", "IN", "DT", "NN", "JJ", "TO", "DT", "NNP", "NNP", "NN", ".", "CD", "NNS", "IN", "NNP", "NNP", "-NONE-", "VBP", "VBG", "IN", "NNP", "IN", "DT", "NN", ":", "DT", "NN", "NNS", "NN", ",", "WDT", "-NONE-", "VBZ", "JJ", "IN", "DT", "NNS", "CC", "NNS", "WDT", "-NONE-", "VBP", "DT", "NN", ":", "DT", "NN", "NN", ":", "CC", "DT", "NN", "NNS", "NN", ".", "DT", "NN", "NNS", "VBP", "NN", "NNS", "CC", ",", "IN", "DT", "NNS", ",", "NNS", "CC", "NNS", "TO", "JJ", "NNS", ",", "CC", "RB", "NNS", ".", "NNS", "VBP", "NNP", ":", "NNP", ":", "NNP", "NNP", ",", "NNP", ":", "NNP", "NNP", ":", "NNP", "NNP", ",", "NNP", ":", "NNP", "NNP", ":", "NNP", "NNP", ":", "NNP", ",", "NNP", ":", "NNP", "NNP", ":", "CC", "NNP", ",", "NNP", "DT", "NN", "WP", "-NONE-", "VBZ", "-NONE-", "TO", "VB", "TO", "PRP$", "NN", "MD", "VB", "IN", "PRP$", "JJ", "NN", "CC", "VBZ", "DT", "NN", "POS", "NN", "JJ", "IN", "PRP", "VBP", "IN", "NNP", "NNPS", ".", "IN", "NN", "IN", "DT", "NN", ",", "NNS", "MD", "VB", "IN", "JJ", "NNS", ",", "VBG", "DT", "NN", "NN", "CC", "DT", "NN", "NN", "NN", ".", "NN", "NNS", "WP", "-NONE-", "VBP", "DT", "NN", "RB", "VBP", "JJ", "IN", "DT", "NN", "IN", "NNP", "NNS", "CC", "DT", "NNP", "NN", "IN", "NNS", ".", "IN", "PRP", "VBP", "DT", "NNP", ",", "PRP", "VBP", "DT", "NNP", "NNP", "NN", ".", "DT", "VBZ", "RB", "NNP", "POS", "JJ", "JJ", "NN", ".", "DT", "JJ", "NNS", "IN", ",", "DT", "NN", "VBD", "CD", "JJ", "NNS", "IN", "NNP", "NNP", "NNPS", "TO", "NNS", "IN", "PRP$", "NNP", "NN", "NN", ".", "DT", "NN", "VBD", "NNP", "NNS", "VB", "DT", "NN", "POS", "NN", "IN", "JJR", "IN", "CD", "NN", ",", "NNP", "VBD", "-NONE-", "-NONE-", "IN", "DT", "NN", ".", "DT", "NNP", "NNP", "NNP", "NNP", "VBD", "JJ", "DT", "NN", "IN", "NN", "NN", "NNS", "CC", "NNS", "NNS", "IN", "DT", "NNP", "NN", "NN", "CC", "JJ", "NNS", ".", "DT", "NN", "MD", "VB", "TO", "DT", "NN", "IN", "JJ", "NN", "NNS", "-NONE-", "DT", "NNP", "NNP", "IN", "NNP", "CC", "NNP", "VBD", "RP", "-NONE-", "IN", "-NONE-", "VBG", "RB", "IN", "NN", "NNS", ".", "RB", "JJ", "IN", "CD", "NNP", "CC", "JJ", "NNS", "VBP", "-NONE-", "TO", "VB", "JJ", "CD", "CD", "NNS", "MD", "DT", "NN", "VB", "VBN", "-NONE-", "CC", "VB", "DT", "NN", "IN", "JJ", "NNS", ".", "DT", "NN", "VBZ", "VBN", "-NONE-", ".", "IN", "NN", "TO", "DT", "NN", ",", "JJ", "NNS", "RB", "VBD", "JJR", "IN", "DT", "NN", "NN", "IN", "-NONE-", "VBG", "JJ", "IN", "DT", "NN", "IN", "DT", "NN", "IN", "DT", "NN", ".", "NNS", ",", "CC", "JJ", "NN", "NNS", ",", "WDT", "-NONE-", "RB", "VBD", "RB", "RB", ",", "VBD", "DT", "IN", "DT", "NNS", "-NONE-", "TO", "VB", "IN", "CD", "NN", "JJR", ".", "DT", "NN", ",", "WDT", "-NONE-", "VBZ", "VBN", "-NONE-", "TO", "VB", "VBN", "IN", "IN", "CD", "NNS", "VBN", "-NONE-", "IN", "IN", "#", "CD", "CD", "-NONE-", "-LRB-", "$", "CD", "CD", "-NONE-", "-RRB-", ",", "VBD", "NNS", "IN", "NNS", "IN", "JJ", "NN", "NNS", ".", "IN", "CD", "NN", ",", "NNP", "VBZ", "VBN", "-NONE-", "TO", "VB", "VBN", "IN", "RB", "JJ", "IN", "CD", "NN", "IN", "DT", "NN", "NN", "IN", "NN", "NN", "NNS", ".", "WRB", "CD", "NNS", "VBP", "IN", "DT", "NN", "NN", "-NONE-", ",", "PRP", "VBP", "VBG", "IN", "DT", "JJ", "IN", "JJ", "NNS", ".", "RB", ",", "DT", "NN", "VBD", "-NONE-", "TO", "VB", "JJ", "NN", "NNS", "IN", "NN", "NNS", "DT", "NNS", "IN", "DT", "VBG", "JJ", "NNS", ".", "IN", "JJS", "IN", "DT", "JJ", "NNS", ",", "DT", "NNS", "VBD", "-NONE-", "TO", "VB", "JJ", "NNS", "TO", "NNS", ",", "WDT", "-NONE-", "MD", "VB", "JJ", "NNS", ".", "IN", "NN", "NNS", "VBD", ",", "NNS", "VBD", "DT", "NNS", "JJR", "IN", "DT", "NNS", "VBD", "VBG", "PRP", ".", "DT", "NN", "NN", "VBD", "IN", "JJ", "NNP", "IN", "DT", "NN", "IN", "NNP", "NNP", ",", "NN", "NN", "IN", "NNP", ",", "WP", "-NONE-", "VBD", "IN", "JJ", "NNS", "VBP", "RB", "VBN", "IN", "JJ", "NN", "-NONE-", "TO", "VB", "IN", "JJ", "JJ", "NNS", ".", "DT", "NN", "VBD", "DT", "NN", "NN", "POS", "NN", "IN", "DT", "NN", "NNS", "VBP", "JJ", ".", "IN", "DT", "NNP", "CC", "NNP", "NN", "VBD", "IN", "RB", "DT", "RBS", "JJ", "JJ", "NN", "VBG", "IN", "JJ", "JJ", "NNS", ",", "DT", "NN", "NN", "MD", "VB", "DT", "NN", "IN", "JJ", "NNS", "IN", "CD", "JJ", "JJ", "NNS", ".", "``", "IN", "DT", "NN", "NN", "VBD", "RB", "IN", "NNP", ",", "PRP", "MD", "RB", "VB", "RB", "JJ", "IN", "JJ", "NNS", "IN", "DT", "JJ", "NN", ",", "''", "DT", "NN", "VBG", "CD", "IN", "DT", "NNS", "VBD", "-NONE-", ".", "RB", ",", "CD", "JJ", "NNS", "VBP", "VBN", "-NONE-", "TO", "VB", "NNS", "CC", "NNS", "TO", "NNS", "VBN", "-NONE-", "IN", "JJ", "NNS", "NNS", ".", "JJ", "JJ", "NNS", "VBN", "-NONE-", "VBP", "NNP", "NNP", "NNP", ",", "NNP", "NNP", "NNP", ",", "NNP", "NNP", "NNP", ",", "NNP", "NNP", "NNP", "POS", "NNP", "NNP", ",", "NNP", "POS", "NNP", "CC", "NNP", "NNP", "NNP", ".", "IN", "DT", "NNS", "VBP", "DT", "NNS", "IN", "NN", ",", "PRP", "-NONE-", "VBZ", "JJ", "IN", "PRP", "MD", "VB", "-NONE-", "TO", "VB", "DT", "NN", "NN", "VB", "DT", "NNS", ",", "DT", "NN", "NNS", "VBD", "-NONE-", "-NONE-", ".", "NNS", "MD", "VB", "-NONE-", "TO", "VB", "NNS", "TO", "JJ", "NNS", "IN", "NNS", "WRB", "DT", "NNS", "VBD", "JJ", "NNS", "TO", "NNS", "-NONE-", ".", "NNS", "IN", "DT", "JJ", "NNS", "VBN", "-NONE-", "VBP", "VBN", "-NONE-", "TO", "VB", "IN", "DT", "JJ", "JJ", "NNS", "-NONE-", "TO", "VB", "JJ", "NNS", "IN", "JJ", "NNS", "WDT", "-NONE-", "MD", "VB", "JJ", ".", "DT", "NNS", "VBP", "CD", "NNS", "-NONE-", "-NONE-", "TO", "VB", "DT", "NN", "IN", "DT", "NN", "-NONE-", "CC", "VBP", "VBN", "-NONE-", "TO", "VB", "RB", "RB", ".", "IN", "DT", "NN", "IN", "DT", "NN", "NN", "POS", "JJ", "JJ", "NN", "IN", "NNP", "CD", ",", "NNP", ",", "NNP", "CC", "NNP", "POS", "CD", "NNS", "IN", "DT", "NN", "VBD", "DT", "NN", "CC", "JJ", "NN", "VBN", "-NONE-", "IN", "-NONE-", "VBG", "DT", "NN", "POS", "JJ", "NN", "NN", ".", "DT", "NN", "IN", "PRP$", "NN", ".", "PRP$", "JJ", "NN", ",", "NNP", "NNP", ".", "IN", "NNP", "POS", "NN", ",", "NNP", "NNP", "VBZ", "VBN", "VBN", "-NONE-", "IN", "DT", "NN", "IN", "NN", "IN", "NN", "NN", ",", "DT", "JJ", ",", "JJ", "NNS", "IN", "JJ", "NNS", "IN", "NNS", "CC", "NNS", "WDT", "-NONE-", "MD", "VB", "NN", "NNS", "VBG", "IN", "NNS", ".", "CC", "DT", "VBN", "NN", "IN", "NN", "NN", "VBZ", "IN", "RB", "JJR", "IN", "DT", "JJ", "NN", "NN", ".", "DT", "JJ", "NN", "VBZ", "IN", "WP", "-NONE-", "MD", "VB", "DT", "NN", "CC", "VB", "PRP$", "JJ", "NNS", ".", "NN", "NN", "PRP", ",", "VBG", "TO", "JJ", "NNS", "WP", "-NONE-", "VBP", "VBN", "PRP", ",", "VBZ", "RB", "VBN", "-NONE-", "IN", "DT", "NN", "IN", "DT", "NN", ",", "-NONE-", "RB", "VBN", "-NONE-", "IN", "DT", "NN", "VBG", "NN", "IN", "DT", "NN", ".", "DT", "NN", "VBZ", "IN", "NN", "NN", "VBD", "RB", ",", "IN", "NN", ",", "VB", "DT", "NN", "POS", "JJ", "NN", "IN", "NNP", "CD", ",", "IN", "PRP", "MD", "VB", "VBN", "PRP", ".", "IN", "CD", "NN", "IN", "DT", "NN", "NN", "VBP", "-NONE-", "DT", "NNS", "IN", "NN", "IN", "NNP", "NNP", ":", "DT", "NNP", "NNP", ":", "VBG", "IN", "JJ", "NN", "NNS", "IN", "DT", "JJ", "NN", "NNS", ",", "PRP$", "NN", "NN", "NNS", "IN", "NN", "NNS", "IN", "NN", ",", "CC", "DT", "NNS", "IN", "DT", "JJ", "NNP", "NNS", "NNS", ".", "DT", "VBP", "DT", "JJ", "NNS", "IN", "NN", "NN", ".", "VBG", "PRP$", "NNS", "VBP", "-NONE-", "NNP", "NNP", "POS", "NNP", "NNP", ":", "DT", "JJ", ",", "JJ", "NN", "NNS", ",", "NNS", "IN", "NNS", "IN", "NN", "NNS", ",", "DT", "NNP", "NNP", "NNP", "NNP", "POS", "VBN", "NNS", "CC", "DT", "JJ", "NN", "NNS", ",", "VBN", "-NONE-", "IN", "NNS", ",", "WP", "-NONE-", "VBP", "NNS", "IN", "PRP$", "NNS", ".", "IN", "RB", ",", "NNP", "NNP", "POS", "NNP", "NNP", "VBZ", "-NONE-", "TO", "VB", "VBG", "DT", "JJ", "NN", ",", "-NONE-", "RB", "VBG", "JJ", "CC", "JJ", "NN", "-NONE-", "TO", "VB", "PRP$", "NNS", ".", "DT", "NNP", "NNP", "NNP", ",", "DT", "JJ", "NNS", "NN", ",", "NN", "VBD", "DT", "NN", "IN", "DT", "NN", "IN", "NN", "NNS", "VBN", "-NONE-", "TO", "VB", "NN", "NNS", "IN", "DT", "RB", "VBG", "NN", "NN", ",", "CC", "DT", "NNP", "NNP", "VBZ", "VBN", "NN", "-NONE-", "TO", "VB", "DT", "JJ", "NNS", "IN", "NN", "NN", ".", "-NONE-", "VBN", "IN", "NNS", "IN", "PRP$", "NN", "VBZ", "VBG", "DT", "NN", "NN", "IN", "DT", "JJ", "NN", ",", "RB", "PDT", "DT", "JJ", "NN", "NN", "NNS", "VBP", "VBN", "NN", "NN", ",", "DT", "JJ", "NN", "IN", "NN", "NN", ",", "IN", "PRP$", "JJ", "NNS", "IN", "DT", "JJ", "JJ", "NNS", ".", "DT", "JJ", ",", "JJ", "IN", "JJ", "NNP", "NNP", "CC", "NNP", ",", "RB", "VBP", "-NONE-", "RB", "TO", "VB", "NN", "NN", "NNS", "IN", "NNS", ".", "DT", "NNP", "NNP", "POS", "NN", "IN", "NN", "NN", "CC", "PRP$", "NNS", "VBZ", "VBN", "JJ", "CC", "JJ", ",", "IN", "NN", "IN", "DT", "NNP", "NNP", "NNS", "VBP", "-NONE-", "PRP$", "JJ", "NN", "VBZ", "IN", "NN", ".", "RB", ",", "JJ", "IN", "JJ", "NN", "NN", "NNP", "CC", "NNP", ",", "VBP", "VBN", "RP", "JJ", "NN", "NNS", "VBG", "IN", "NN", "NNS", "``", "VB", "DT", "NNS", "NN", "IN", "NNP", "NNP", ".", "''", "NNP", "NNP", "NN", "NNS", ",", "IN", "DT", "JJ", "NN", "NN", ",", "VBD", "RB", "IN", "NNP", "CD", "-NONE-", "TO", "VB", "DT", "JJ", "NNS", "IN", "DT", "NNS", "WP$", "NN", "-NONE-", "VBZ", "VBN", "-NONE-", "IN", "DT", "NNP", "NNP", "-NONE-", "TO", "VB", "PRP", "VB", "DT", "NN", "TO", "VB", "NN", "NN", ".", "NNP", "NNP", ",", "DT", "NN", "IN", "NNP", "NNP", "WP", "-NONE-", "VBZ", "VBG", "JJ", "NNS", "TO", "DT", "JJ", "NN", "NN", ",", "VBZ", "-NONE-", "PRP", "VBZ", "VBN", "``", "JJ", "''", "NNS", "VBG", "NN", ".", "``", "PRP", "VBD", "RB", ",", "IN", "DT", "JJ", "NN", ":", "-NONE-", "VB", "RB", "RB", "VB", ".", "-NONE-", "VB", "PRP", ",", "''", "PRP", "VBZ", "-NONE-", ".", "NNP", "NNP", "POS", "NNP", "NNP", "VBZ", "RB", "JJ", "-NONE-", "TO", "VB", "PDT", "DT", "-NONE-", "VBG", "IN", "IN", "RB", ",", "RB", ".", "PRP$", "JJ", "NNS", "CC", "NN", "NNS", "VBP", "VBN", "RB", "JJ", ".", "NN", "NN", "NN", "NNS", "VBP", "VBN", "NN", "IN", "DT", "JJ", "NN", "IN", "DT", "VBN", "NNS", "IN", "DT", "NN", ",", "CC", "DT", "NNS", "-NONE-", "IN", "JJ", "NN", "NNS", "-NONE-", "TO", "VB", "JJ", "NNS", "VBZ", "VBN", "PRP", "TO", "DT", "NN", "-NONE-", "TO", "VB", "RB", "IN", "CC", "IN", "DT", "NN", "IN", "NN", "NN", "VBZ", "PRP", "-NONE-", ".", "WP", "-NONE-", "VBZ", "JJR", ",", "DT", "JJ", "NN", "-NONE-", "JJ", "NNP", "NNP", "NNS", "VBD", "-NONE-", "PRP", "VBD", "VBG", "IN", "IN", "NN", "NN", "-NONE-", ":", "IN", "DT", "NN", "IN", "DT", "CD", "NN", ":", "PRP", "VBD", "DT", "JJ", "NNS", "CC", "RB", "VBD", "RB", "IN", "PRP", ".", "RB", "DT", "NNS", "IN", "DT", "NNP", "NNP", ",", "IN", "PRP$", "JJ", "NN", ",", "VBP", "-NONE-", "TO", "VB", "VBG", "IN", "DT", "NN", "VBZ", "IN", "DT", "NNP", "NNP", ".", "JJ", "NN", ",", "NNP", "NNP", "NNP", ",", "CD", "IN", "DT", "NNP", "NNP", "POS", "RBS", "VBN", "NN", "NNS", "CC", "NN", "IN", "DT", "JJ", "NNS", "POS", "NN", ",", "VBD", ".", "PRP", "VBD", "PRP$", "NN", "NN", "CC", "VBD", "DT", "JJ", "NN", "TO", "NNP", "NNP", "NNP", "NNP", "NNP", "NNP", "NNP", "IN", "WDT", "PRP", "VBD", "-NONE-", "-NONE-", "DT", "NNP", "NNP", "VBZ", "RB", "VBN", "IN", "NNS", ",", "RB", "IN", "NNS", ".", "PRP", "VBD", "-NONE-", "DT", "NN", "VBZ", "``", "VBN", "IN", "DT", "JJ", "NN", "''", "IN", "NN", "NN", "VBZ", "RB", "VBN", "-NONE-", ".", "``", "PRP", "VBP", "RB", "VB", "PRP$", "NN", "VBN", "-NONE-", "IN", "WP", "PRP", "VBP", "-NONE-", "IN", "NN", "JJR", "IN", "DT", "NN", ",", "''", "NNP", "NNP", "VBD", "-NONE-", ".", "DT", "NN", "VBZ", "VBN", "IN", "DT", "JJ", "NN", "IN", "DT", "NNS", "CC", "NNS", ",", "-NONE-", "VBG", "JJ", "NNS", "CC", "VBG", "NN", "IN", "NN", ".", "IN", "NNP", ",", "DT", "NN", "IN", "NNP", "NNP", "NNP", ",", "CC", "JJ", "JJ", "NN", "NNS", ",", "NNS", "VBP", "PRP$", "JJ", "NN", "POS", "NN", "NNS", "DT", "JJ", "NNS", "RB", ".", "NNS", "IN", "NNP", "VBP", "NN", "NN", ",", "CC", "NNP", "VBZ", "IN", "DT", "NN", "VBD", "NN", "NN", "NNS", "IN", "NNP", "NNP", "NNP", "WDT", "-NONE-", "VBP", "RB", "JJ", "NN", "NNS", ".", "DT", "NNP", "NNP", ":", "DT", "NN", "POS", "JJ", "NN", "NN", ":", "VBZ", "RB", "VBN", "IN", "PRP$", "NN", "NNS", "CC", "PRP$", "JJ", "NNS", ".", "PRP$", "VBN", "CD", "NN", "NNS", "NNS", "VBP", "VBG", "NN", "CC", "NN", "IN", "NNS", ".", "CC", "DT", "NNP", "NNP", "POS", "NN", ":", "IN", "DT", "NNS", "POS", "NNS", ":", "CD", "NNS", "IN", "VBD", "-NONE-", "NN", "DT", "JJ", "NN", "``", "NN", "''", "NN", "VBN", "-NONE-", "TO", "VB", "NN", "NN", ".", "``", "DT", "NN", "IN", "NNS", "MD", "VB", "-NONE-", "TO", "VB", "RB", "TO", "CD", ",", "''", "IN", "NN", "NN", ",", "NNP", "NNP", "VBD", "-NONE-", "-NONE-", "DT", "NN", ".", "``", "PRP", "MD", "VB", "-NONE-", "TO", "VB", "RB", "TO", "CD", ".", "CC", "PRP", "VBP", "RB", "VBG", "RB", "TO", "CD", ".", "''", "RB", "CC", "RB", ",", "NN", "POS", "NNS", "VBP", "DT", "``", "NN", "''", "NN", ".", "PRP", "VBP", "-NONE-", "JJ", "NN", "NNS", "VBP", "VBN", "DT", "NN", "IN", "DT", "NN", "POS", "NN", "NN", ",", "-NONE-", "VBG", "DT", "NN", "NN", "IN", "DT", "JJ", "NN", "NN", ",", "IN", "DT", "NNS", "RB", "VBN", "-NONE-", "IN", "DT", "JJ", "NN", ".", "``", "DT", "NN", "VBD", "RB", "VBN", "TO", "DT", "NN", "-NONE-", "TO", "VB", "DT", "NN", ":", "PRP", "MD", "VB", "TO", "NNP", "NNP", "IN", "DT", ",", "''", "VBZ", "-NONE-", "-NONE-", "NNP", "NNP", "NNP", ",", "NN", "IN", "NNP", "NNP", ",", "NNP", "NNPS", ",", "DT", "JJ", "NN", "NN", "NN", ".", "DT", "NN", "NNS", ",", "IN", "DT", "JJ", "NN", ",", "VBP", "JJ", "NN", "NNS", "IN", "DT", "NNS", "IN", "DT", "NN", ".", "NNS", "IN", "NNP", "NNP", "``", "VBP", "VBG", "IN", "NNS", ",", "CC", "NNS", "WP", "-NONE-", "VBP", "NNS", "-NONE-", "TO", "VB", "VBP", "DT", "JJ", "NN", ",", "''", "VBZ", "-NONE-", "-NONE-", "NNP", "NNP", "NNP", ",", "NN", "IN", "NNP", "NNP", "NNP", "NNP", ",", "DT", "NNP", "NN", "WDT", "-NONE-", "VBZ", "DT", "$", "CD", "CD", "-NONE-", "NN", "WDT", "-NONE-", "VBZ", "NN", "NN", ".", "``", "RB", "DT", "JJ", "NN", "IN", "DT", "NN", "VBZ", "VBG", "PRP", "TO", "VB", "DT", "NNS", "IN", "NN", ".", "''", "IN", "PDT", "DT", "NN", ",", "EX", "VBZ", "NN", "RB", "JJ", "IN", "DT", "NN", "IN", "JJ", "NN", ",", "DT", "RBS", "JJ", "NN", "IN", "JJ", "NN", "NN", ".", "IN", "JJ", "NNS", "IN", "NN", ",", "PRP", "RB", "VBZ", "-NONE-", "TO", "VB", "NN", "IN", "JJ", "NNS", "IN", "DT", "NN", "IN", "DT", "JJ", "NN", ":", "IN", "DT", "NN", ",", "DT", "NN", "IN", "NNS", ":", "IN", "JJ", "NNS", ":", "IN", "DT", "NN", "DT", "NNP", "NNP", "NNP", "NNP", "CC", "DT", "NNP", "NNS", "NNS", ".", "DT", "NN", "VBZ", "WP", "NN", "NN", "NNS", "VBP", "-NONE-", ".", "WRB", "PRP", "VBZ", "-NONE-", ",", "DT", "NNS", "VBP", "NNS", "-NONE-", "IN", "NNS", "-NONE-", "TO", "VB", "DT", "NN", "IN", "NNS", "-LRB-", "JJ", "IN", "DT", "CD", "NNS", "WDT", "-NONE-", "VBP", "DT", "NNP", "CC", "NNP", "POS", "CD", "NN", "NN", "-RRB-", "IN", "WDT", "NN", "-NONE-", "VBZ", "JJR", "CC", "VBP", "PRP", "IN", "DT", "RBR", "JJ", "NN", ":", "PRP", "VBP", "RP", "DT", "NN", "IN", "NN", "IN", "NN", ".", "JJ", "NN", "NNS", ",", "WDT", "-NONE-", "MD", "VB", "DT", "NN", "CC", "NN", "IN", "NNS", "IN", "NNS", "IN", "NN", ",", "VBP", "IN", "DT", "NN", "IN", "NNS", ".", "DT", "NN", "NN", "IN", "$", "CD", "CD", "-NONE-", "IN", "NN", "RB", "VBZ", "DT", "JJ", "NN", "IN", "$", "CD", "-NONE-", ".", "-NONE-", "TO", "VB", "JJ", "NNS", "JJ", "IN", "DT", "NNS", "IN", "JJ", "NN", "NNS", ",", "NNS", "MD", "VB", "DT", "NN", "-NONE-", "PRP$", "NNS", "VBP", "-NONE-", ".", "DT", "NN", "IN", "WDT", "JJ", "NN", "NNS", "VBP", "NN", "-NONE-", "CC", "DT", "JJ", "NN", "NNS", "-NONE-", "PRP", "MD", "VB", "-NONE-", "VBP", "WP", "NN", "NN", "NNS", "VBP", "-NONE-", "TO", "VB", "-NONE-", ".", "``", "IN", "PRP", "VBP", "-NONE-", "TO", "VB", "DT", ",", "DT", "NN", "-NONE-", "VBZ", "VBN", ":", "DT", "NN", ":", "DT", "JJ", "NN", ",", "JJ", "NNS", "CC", "NN", "NNS", ",", "''", "VBZ", "-NONE-", "NNP", "NNP", ",", "VBG", "NN", "IN", "NNP", "CC", "NNP", ".", "CC", "JJ", "NNS", "CC", "NNS", "VBP", "IN", "NN", "NN", "VBZ", "RB", "DT", "JJ", "NN", "IN", "NN", "NNS", ".", "``", "PRP", "VBP", "RB", "VBN", "CD", "NN", "IN", "NN", "''", "-NONE-", "-NONE-", "TO", "VB", "NNS", "IN", "NN", "NN", "-NONE-", ",", "VBZ", "-NONE-", "-NONE-", "DT", "NNP", "NNP", "NN", "NN", ",", "NNP", "NNP", ",", "DT", "NN", "IN", "DT", "NN", ".", "VBZ", "-NONE-", "DT", "NNP", "NNP", "POS", "NNP", "NNP", ",", "``", "NN", "VBZ", "JJR", "IN", "NN", "NN", ".", "''", "DT", "NNP", "CD", "NN", "VBD", "VBN", "-NONE-", "RB", "IN", "NN", "NNS", ",", "CC", "IN", "NN", "IN", "DT", "NN", "IN", "DT", "$", "CD", "CD", "-NONE-", "NN", "IN", "NNP", "NNP", ".", "-NONE-", "JJ", "-NONE-", "TO", "VB", "NNP", "CC", "JJ", "NN", "NNS", ",", "JJ", "NNS", ",", "CC", "VB", "NNS", ",", "VBD", "DT", "JJ", "NN", "-NONE-", "PRP", "VBD", "-NONE-", ".", "IN", "NN", "NNS", "RB", "VBD", "IN", ",", "DT", "``", "NN", "NN", "''", "WDT", "-NONE-", "VBD", "NN", "IN", "NN", "NNS", "IN", "NNP", "VBD", "DT", "NN", "NN", "JJ", ".", "NNP", "NNP", "NNP", ",", "NN", "NN", "IN", "NNPS", "NNP", "NNP", "NNP", ",", "VBZ", "-NONE-", "NNS", "VBP", "VBG", "``", "DT", "NN", "-NONE-", "DT", "-LRB-", "NN", "NN", "-RRB-", "NN", "VBZ", "VBG", "-NONE-", "IN", "DT", "NN", "IN", "DT", "NN", "IN", "NN", ".", "''", "JJ", "NNS", "VBP", "``", "JJ", ",", "''", "PRP", "VBZ", "-NONE-", "-NONE-", ",", "CC", "PRP", "``", "VBP", "-NONE-", "TO", "VB", "WRB", "NNS", "VBP", "IN", "PRP", "VBP", "RB", "-NONE-", ".", "''", "IN", "RB", "NN", "IN", "NNP", "NNP", ",", "DT", "JJ", "NN", "VBZ", "IN", "NN", ",", "CC", "DT", "NNS", "VBP", "VBN", "VBG", "RP", "IN", "NNS", "IN", "PRP", "TO", "DT", "NNP", "NNP", "IN", "JJ", "NNS", ".", "-NONE-", "VB", "DT", "JJ", "NN", "NNS", ",", "CC", "``", "NN", "NNS", ",", "''", "IN", "PRP", "VBP", "RB", "VBN", "-NONE-", "IN", "DT", "NN", "NNS", ".", "JJ", "NN", "NNS", "VBP", "-NONE-", "TO", "VB", "CD", "NNS", "TO", "CD", "NNS", "IN", "DT", "$", "CD", "-NONE-", "-NONE-", "PRP", "VBP", "-NONE-", "IN", "JJ", "JJ", "NNS", ",", "CC", "JJR", "NNS", "IN", "JJR", "NNS", ".", "CC", "JJ", "JJ", "NNS", "RB", "VBP", "-NONE-", "TO", "RB", "VB", "RP", "IN", "-NONE-", ",", "RB", "JJR", "VB", "-NONE-", ",", "DT", "NNS", "IN", "JJ", "NNS", "IN", "DT", "NNP", "RB", "RB", ",", "JJ", "NN", "NNS", "VBP", "VBN", "VBG", "NNS", "TO", "JJ", "NN", "NNS", "WDT", "-NONE-", "VBP", "NNS", "-NONE-", "TO", "VB", "NNS", "IN", "PRP", "VBP", "DT", "NNP", "CD", ".", "DT", "NNS", "VBP", "RB", "DT", "JJ", "NNS", "IN", "$", "CD", "-NONE-", "VBN", "-NONE-", ".", "NN", ",", "IN", "$", "CD", "CD", "-NONE-", ",", "CC", "CD", "NN", "IN", "DT", "JJ", "NN", "NNS", ",", "VBZ", "VBN", "-NONE-", "IN", "NN", "NNS", ".", "DT", "JJ", "NNP", "NNP", "IN", "NNS", "CC", "VBN", "NN", "VBZ", "-NONE-", "TO", "VB", "NNS", "IN", "DT", "CD", "NNP", "NNP", "JJ", "NNS", ".", "DT", "JJ", "CC", "JJ", "NN", "NNS", "RB", "VBP", "VBN", "JJ", "NNS", "IN", "CD", "NN", "TO", "CD", "NN", "-NONE-", "DT", "NN", "IN", "PRP$", "NN", ",", "IN", "NN", "IN", "PRP$", "NN", "IN", "-NONE-", "VBG", "NNS", "IN", "JJ", "NNS", ".", "DT", "NNS", "VBP", "DT", "NN", "TO", "JJ", "NN", "IN", "DT", "NN", "NN", ".", "CC", "PRP", "VBP", "-NONE-", "DT", "NNP", "NNP", ",", "IN", "NNP", "NNP", ",", "VBZ", "VBN", "PRP$", "NN", ".", "-NONE-", "DT", "NN", "IN", "DT", "NN", "CC", "RB", "CD", "PRP", ",", "NNP", "NNP", "VBZ", "RB", "VBN", "VBG", ":", "IN", "NNS", "IN", "DT", "JJ", "NN", "NN", "IN", "PRP$", "JJ", "NNS", "VBP", "-NONE-", "RB", "RB", ":", "-NONE-", "TO", "VB", "NN", "NNS", "CC", "JJ", "NN", "NNS", "IN", "-NONE-", "VBG", "PRP$", "NN", "TO", "JJ", "NNS", ".", "RB", ",", "NNS", "POS", "NN", "NNS", "VBP", "VBN", "IN", "DT", "NN", "IN", "NN", "NN", ".", "``", "WRB", "DT", "NN", "NNS", "VBP", "-NONE-", ",", "PRP", "MD", "VB", "DT", "NN", "NNS", "VB", "-NONE-", "TO", "VB", "''", "IN", "DT", "NNP", "NNP", "NN", "NN", ",", "VBZ", "-NONE-", "-NONE-", "CD", "NN", "RB", ".", "``", "DT", "NNS", "VBP", "RB", ",", "CC", "DT", "NN", "VBZ", "VBN", "-NONE-", "RB", "''", "IN", "DT", "NN", "IN", "JJ", "NN", "IN", "PRP$", "NN", "IN", "NNS", ",", "PRP", "VBZ", "-NONE-", "-NONE-", ".", "DT", "NN", "VBZ", "RBR", "JJ", "IN", "NN", "NN", "IN", "DT", "NN", "POS", "NNS", ".", "PRP", "VBP", "RB", "VBG", "-NONE-", "TO", "VB", "RB", "JJ", "NNS", "VBN", "-NONE-", "IN", "DT", "CD", "NN", "NN", "CC", "DT", "NN", "POS", "NNS", "IN", "RB", ".", "``", "JJ", "NNS", "VBP", "RB", "JJ", "IN", "NNP", "NNP", "VBZ", "VBG", "DT", "NN", "IN", "PRP", ",", "CC", "DT", "JJ", "NNS", "VBP", "VBG", "PRP", "TO", "NN", ",", "''", "VBZ", "-NONE-", "NNP", "NNP", "NNP", ",", "NN", "IN", "JJ", "NN", "NNP", "NNP", "NNP", "IN", "NNP", ".", "NNS", "POS", "NN", "CC", "NN", "VBZ", "VBN", "VBG", ".", "JJ", "NN", ",", "DT", "JJ", "NN", "VBD", "$", "CD", "-NONE-", ",", "CD", "NN", "JJR", "IN", "IN", "CD", ".", "JJ", "NNS", "VBP", "IN", "PRP$", "NN", "POS", "NN", "VBZ", "VBN", "VBN", "-NONE-", "IN", "DT", "JJ", "NN", "IN", "DT", "NN", "NN", ".", "NN", "NNS", "WP", "-NONE-", "VBP", "DT", "CD", "NNS", "IN", "DT", "NNP", "CD", "RB", "VBP", "RB", "RB", "VB", "WP", "DT", "NNS", "-NONE-", "PRP", "VBP", "-NONE-", "RB", "VBP", "-NONE-", ",", "VBZ", "-NONE-", "-NONE-", "NNP", "NNP", ",", "NN", "IN", "NNP", "NNP", "NNP", ".", "``", "VBP", "PRP", "VB", "NNS", "CC", "NNS", ".", "UH", ",", "PRP", "VBP", "IN", "DT", "NN", "NN", ",", "''", "VBZ", "CD", "NN", "-NONE-", "NNP", "NNP", "VBZ", "-NONE-", "PRP", "VBZ", "VBN", "-NONE-", "IN", "PRP$", "JJ", "JJ", "NNS", ".", "IN", "DT", "NNP", ",", "NN", "NNS", "VBD", "VBG", "DT", "NN", "CD", "NN", "IN", "DT", "NNP", "NNP", "POS", "JJ", "JJ", "NN", "NN", ".", "IN", "DT", "JJ", "NNS", "VBD", "-NONE-", "NNP", "NNP", "JJ", "NNS", ":", "NNP", "NNP", "CC", "NNP", ",", "NNP", "NNP", ",", "NNP", "NNP", ",", "NNP", "NNPS", "NNP", "CC", "NNP", "NNP", "NNP", ".", "CC", "RB", "VBD", "NNP", "CD", "CC", "DT", "JJ", "NN", "VBN", "-NONE-", "IN", "DT", "NNP", "NNP", ",", "RB", "IN", "NN", "NN", ".", "DT", "NNS", "POS", "NN", "IN", "DT", "NN", "VBZ", "-NONE-", "TO", "VB", "IN", "CC", "VB", "DT", "NN", "VB", ".", "``", "EX", "VBZ", "DT", "JJ", "NN", "RB", "RB", ",", "''", "VBZ", "-NONE-", "DT", "JJ", "JJ", "NN", "IN", "DT", "NNP", "NNP", "NN", ".", "``", "NNP", "NNP", "POS", "NN", "NN", "VBZ", "VBN", "VBN", "-NONE-", ",", "CC", "PRP", "VBP", "RB", "VB", "-NONE-", "NN", "VBZ", "VBN", "IN", "NN", "NN", "VBZ", "DT", "NN", ".", "''", "RB", "JJ", "NN", "-NONE-", "VBZ", "IN", "NN", "IN", "NN", "NNS", "TO", "VB", "IN", ".", "IN", "NN", ",", "NN", "NNS", "VBD", "VBG", "IN", "NNP", "IN", "CD", ",", "CC", "IN", "CD", "NNS", "PRP", "VBD", "DT", "JJ", "NNS", "NN", "RB", "VBN", "-NONE-", ".", "NN", "NNS", "NN", "VBZ", "VBN", "NNS", "IN", "NNS", "IN", "PRP$", "CD", "CC", "CD", ".", "RB", ",", "IN", "DT", "JJ", "NN", ",", "NNP", "POS", "NN", "NNS", "VBP", "JJR", "NNS", "NN", "IN", "NN", "NNS", "IN", "DT", "NNP", "NNP", "VBZ", "IN", "NN", ".", "RB", "DT", "NN", "VBZ", "VBN", "-NONE-", "IN", "DT", "NN", "TO", "VB", "IN", ".", "DT", "NNS", "VBP", "VBG", "DT", "JJ", "NN", "IN", "NNP", ".", "NN", "NNS", "POS", "``", "NN", "-NONE-", "TO", "VB", "JJ", "NN", "VBZ", "RB", "JJ", "IN", "PRP", "MD", "RB", "VB", "VBN", "-NONE-", "TO", "VB", "PRP$", "NN", ",", "''", "VBZ", "-NONE-", "-NONE-", "NNP", "NNP", "NNP", ",", "DT", "NNP", "NNP", ".", "``", "PRP", "VBP", "-NONE-", "TO", "VB", "DT", "NN", "WDT", "-NONE-", "VBZ", "TO", "DT", "JJS", "NNS", ":", "``", "-NONE-", "VB", "RB", ".", "PRP", "MD", "RB", "VB", ",", "PRP", "MD", "RB", "VB", "DT", "JJ", "NN", "IN", "NN", ".", "''", "''", "CC", "DT", "NNS", "IN", "NN", "WDT", "-NONE-", "VBZ", "NN", "NN", "VBZ", "JJ", "RB", "RB", ".", "JJ", "NNS", ",", "VBG", "DT", "NNP", "NNP", ",", "VBP", "IN", "PRP", "VBZ", "RB", "JJ", "-NONE-", "TO", "VB", "DT", "NN", "RB", "IN", "DT", "NN", ".", "DT", "NNP", "NNP", "POS", "NNS", "VBP", "NN", "-NONE-", "TO", "VB", "DT", "JJ", "NNS", ",", "CC", "DT", "JJ", "NN", "VBZ", "RB", "VBG", "VBN", "-NONE-", ",", "NNP", "NNP", "NNS", "VBP", "-NONE-", "-NONE-", ".", "``", "PRP", "VBP", "RB", "VBG", "-NONE-", "TO", "VB", "DT", "NN", "IN", "-NONE-", "VBG", "DT", "NN", "IN", "NNS", ",", "''", "VBZ", "-NONE-", "NNP", "POS", "NNP", "NNP", ".", "``", "NN", "NN", "VBZ", "RB", "-NONE-", "TO", "VB", ",", "CC", "NNS", "VBP", "RB", "-NONE-", "TO", "VB", ",", "CC", "PRP", "RB", "VBP", "-NONE-", "TO", "VB", "PRP", ".", "''", "JJ", "IN", "DT", "NN", "NN", ",", "DT", "NNS", "VBP", "VBN", "JJ", "JJ", "NNS", ",", "WDT", "PRP", "VBP", "-NONE-", "-NONE-", "MD", "VB", "RP", "JJ", "NNS", "-NONE-", "NN", "NNS", "RB", "VBP", "-NONE-", "IN", "DT", "NN", "IN", "JJ", "NNS", "VBP", "RB", "-NONE-", ".", "CD", "JJ", "NN", "VBG", "NN", "NNS", "VBZ", "DT", "NN", "IN", "DT", "NN", "NN", ":", "CC", "DT", "``", "NN", "''", "NN", "IN", "NN", "VBN", "-NONE-", "TO", "VB", "PRP", ":", "TO", "IN", "DT", "JJ", "NN", "IN", "DT", "NN", "NN", "IN", "NNS", ".", "RB", ",", "NNS", "IN", "NN", "NNS", "NNS", "VBP", "RB", "JJR", ":", "RB", "CD", "NN", "VBN", "IN", "CD", "NN", "IN", "NNS", ":", "-NONE-", "VBG", "DT", "NNS", "NN", "RB", "JJR", "CC", "RB", "RBR", "JJ", ".", "NN", "NN", "NNS", "RB", "VBP", "DT", "NNP", "NNP", "NNP", ",", "RB", "IN", "DT", "NNS", "NN", ",", "TO", "VB", "JJ", "NNS", ".", "NNS", "NNS", "VBP", "IN", "JJ", "NNS", "VBP", "-NONE-", "VB", "PRP$", "NNS", "JJ", ".", "JJR", "NNS", "MD", "VB", "RB", "NNS", "IN", "JJR", "NNS", "WP", "-NONE-", "VBP", "JJR", "NNS", "VB", "CC", "VB", ",", "PRP", "VBP", "-NONE-", ".", "DT", "VBN", "NN", "VBZ", "-NONE-", "TO", "VB", "NN", "NNS", "VB", "TO", "DT", "``", "NN", "NN", "''", "DT", "NN", "VBN", "-NONE-", "IN", "DT", "NNP", "NNP", "IN", "CD", "WDT", "-NONE-", "VBZ", "IN", "NNS", "VBG", "RB", "VBN", "-NONE-", "RB", "IN", "DT", "VBG", "-NONE-", "TO", "VB", "IN", "JJR", "NNS", ",", "RB", "JJ", "NNS", ".", "DT", "NNP", "NNP", "POS", "NN", "NN", "VBZ", "DT", "JJ", "NN", "IN", "DT", "NN", "WRB", "DT", "NN", "VBZ", "VBG", "IN", "NN", "-NONE-", ".", "CC", "IN", "CD", ",", "NN", "NNS", "VBD", "WP", "-NONE-", "VBD", "TO", "DT", "NN", "IN", "DT", "NN", "NN", "IN", "JJ", "NNS", ",", "-NONE-", "TO", "VB", "PRP", "-NONE-", "JJR", "-NONE-", "TO", "VB", "DT", "NN", "CC", "NNS", "NNS", ".", "DT", "NN", "IN", "DT", "NN", "NN", "IN", "NN", "NNS", "MD", "VB", "PRP$", "NN", "RB", ".", "NN", "NNS", "VBP", "IN", "DT", "NN", "IN", "DT", "NN", "MD", "VB", "DT", "``", "NN", "NN", "''", "IN", "DT", "NNS", "CC", "NN", "NNS", ".", "NNP", "NNP", "NNP", "VBD", "TO", "DT", "NN", ".", "NNPS", "NNP", "NNP", "NNP", "NNP", "NNP", "NNP", "VBD", "NN", "IN", "PRP", "MD", "VB", "-NONE-", "VBG", "JJ", "NNS", "VB", "NN", "NN", "IN", "JJ", "NN", "NNS", ".", "RB", "DT", "JJ", "NN", "IN", "JJ", "NNS", "VBZ", "RP", "JJ", "NN", ".", "NN", "NN", "VBZ", "DT", "JJ", "NN", "IN", "NN", "NN", ".", "IN", "-NONE-", "RB", "VBN", "-NONE-", "PRP", "VBZ", "NN", "IN", "DT", "RB", "JJ", "NN", ":", "CD", "JJ", "NNS", "IN", "JJ", "NNS", ",", "VBG", "RB", "DT", "JJ", "NNS", ",", "MD", "RB", "VB", "PRP", "IN", "RB", "IN", "NNS", "WDT", "-NONE-", "VBP", "RB", "JJ", ".", "IN", "NN", "NN", ",", "DT", "NN", "VBZ", "DT", "NNP", "CD", ",", "CC", "PRP$", "NN", "VBZ", "RB", "VBN", "IN", "DT", "NNS", "NN", "IN", "NNP", "CC", "DT", "NN", "NNS", "RB", "IN", "NNP", "NNP", ".", "-NONE-", "TO", "VB", "IN", "DT", "JJ", "NN", ",", "NN", "WP", "-NONE-", "VBZ", "DT", "NNP", "CD", "NN", "IN", "NNP", "NNP", "MD", "VB", "PRP", "CC", "VB", "PRP", "IN", "DT", "JJR", "NNP", "CD", "NN", "IN", "NNP", ".", "IN", "DT", "NN", "NN", "VBG", "DT", "NN", "VBZ", "VBG", "VBN", "IN", "PRP$", "NNS", "-NONE-", "TO", "VB", "CC", "VB", "DT", "NN", "IN", "DT", "NNP", "CD", "NN", ",", "PRP", "VBZ", "JJ", "-NONE-", "TO", "VB", "RB", "VBN", "IN", "DT", "NNS", ".", "-LRB-", "JJ", ",", "IN", "DT", ",", "JJ", "NNS", "MD", "VB", "-NONE-", "VBG", "NN", "IN", "-NONE-", "VBG", "JJR", "IN", "CD", "NN", "NN", "TO", "NNS", ",", "CC", "RB", "JJ", "MD", "VB", "-NONE-", "TO", "VB", "JJR", "IN", "DT", "CD", "NN", "NN", "MD", "NNS", "VB", ".", "-RRB-", "IN", "-NONE-", "RB", "VBG", "-NONE-", "TO", "VB", "DT", "JJS", "NN", ",", "JJ", "NNS", "VBP", "-NONE-", "TO", "VB", "IN", "CD", "NN", "CC", "CD", "NN", "-NONE-", "TO", "DT", "JJ", "NN", "IN", "DT", "NNP", "CD", ".", "DT", "VBZ", "DT", "RB", "JJ", "``", "JJ", "''", "NN", ",", "RB", "RB", "JJR", "IN", "WP", "RBS", "JJ", "NN", "NNS", "VBP", "-NONE-", "TO", "VB", "-NONE-", "IN", "PRP$", "NN", "NN", ".", "DT", "NN", "IN", "DT", "JJ", "NN", "IN", "JJ", "NN", "NNS", "VBP", "-NONE-", "TO", "VB", "DT", "NNP", "CD", "MD", "VB", "TO", "DT", "NN", "VBG", "DT", "NN", ".", "IN", "JJR", "NNS", "VBP", "DT", "JJ", "NN", ",", "DT", "JJ", "NNS", "IN", "NNS", "MD", "VB", "VBN", "-NONE-", "CC", ",", "RB", ",", "VBN", "-NONE-", ".", "DT", "JJ", "NNS", "VBP", "IN", "DT", "NN", "IN", "-NONE-", "VBG", "DT", "NN", "CC", "NN", "NN", "IN", "DT", "JJ", "NNS", "WDT", "-NONE-", "VBP", "RP", "DT", "NNP", "CD", "VBZ", "RBR", "JJ", "IN", "-NONE-", "VBG", "IN", "DT", "NNS", "NN", ".", "DT", "NNP", "NNP", "NNP", "NNP", "POS", "NN", "-NONE-", "TO", "VB", "DT", "JJ", "NN", "NN", "VBZ", "NN", "IN", "NNS", "POS", "NNS", "-NONE-", "TO", "VB", "JJ", "CC", "JJ", "NNS", "IN", "JJ", "NNS", "IN", "NNS", ".", "RB", "IN", "NN", "NN", "VBZ", "RB", "-NONE-", "VBG", "NN", "IN", "JJ", "NNS", "IN", "CD", "NNS", "IN", "DT", "JJ", "NN", ",", "WRB", "VBD", "``", "NN", "NN", "''", "VB", "IN", "DT", "JJ", "NN", "WDT", "-NONE-", "VBZ", "VBG", "DT", "NNS", "IN", "RB", "JJ", "NNS", "-NONE-", ".", "DT", "NNS", "IN", "NN", "NN", ",", "RB", "DT", "VBN", "-NONE-", "IN", "NN", ",", "VBP", "IN", "CD", "VBN", "NNS", "IN", "``", "NNS", "''", "VBP", "VBN", "-NONE-", ":", "LS", "-RRB-", "VBN", "NN", ",", "LS", "-RRB-", "DT", "JJ", "NN", "NN", ",", "CC", "LS", "-RRB-", "DT", "NN", "NN", "NN", "IN", "DT", "JJ", "NN", ".", "CC", "JJ", "IN", "DT", "NNS", "VBP", "JJ", ",", "RB", "JJ", ".", "-NONE-", "VBG", "NN", ".", "DT", "JJ", "NN", "VBZ", "RB", "VBN", "IN", "EX", "VBZ", "JJ", "NN", "IN", "DT", "NNS", "IN", "NNP", "NNP", "CC", "NNP", "-NONE-", "-NONE-", "TO", "VB", "DT", "NN", "NNS", ".", "NN", "VBZ", "RB", "VB", "NN", ":", "PRP", "VBZ", "TO", "PRP", ".", "-NONE-", "VB", "IN", "WP", "-NONE-", "VBZ", "DT", "NN", "IN", "NNS", "IN", "DT", "CD", "NNS", "IN", "NNP", "CD", "NNS", ":", "RB", "PRP", "VBZ", "JJ", "NNS", "VBG", "DT", "NN", "CC", "NN", "IN", "NNP", ".", "DT", "JJ", "NN", "MD", "RB", "VB", "DT", "NNS", "NN", "TO", "VB", "WRB", "PRP", "VBZ", "PRP$", "NNS", "-NONE-", ".", "NN", "RB", "VBZ", "PRP$", "NN", "NN", "IN", "NNP", "TO", "NNP", "NNP", ",", "IN", "-NONE-", "VBG", "IN", "DT", "NN", "IN", "NNP", ".", "DT", "NN", "IN", "DT", "JJ", "NN", "VBZ", "DT", "NN", ":", "NN", "MD", "RB", "VB", "CC", "VB", "PRP$", "NN", "IN", "NNS", "-NONE-", "TO", "VB", "NN", "NNS", "VB", ".", "WRB", "VBZ", "DT", "JJ", "JJ", "NN", "VB", "IN", "NNP", "RB", "IN", "NNP", "NNP", "-NONE-", ".", "RB", "PRP", "VBZ", "JJ", "-NONE-", "TO", "VB", "TO", "DT", "NN", "NN", "DT", "JJ", "NN", "IN", "NN", "-NONE-", "TO", "VB", "JJ", "CC", "JJ", "NN", "IN", "PRP$", "JJ", "NN", ".", "IN", "DT", "JJ", "NN", ",", "DT", "NN", "VBZ", "JJ", "NNS", "-NONE-", "-NONE-", "TO", "VB", "PRP$", "NNS", "-NONE-", ",", "CC", "PRP", "MD", "VB", "JJR", "NNS", "-LRB-", "DT", "JJ", "CC", "JJ", "-RRB-", "IN", "PRP$", "NN", "VBZ", "JJ", "-NONE-", "IN", "DT", "NN", "TO", "VB", "-NONE-", ".", "IN", "RB", "NNP", ",", "RB", "IN", "NNP", "NNP", ":", "IN", "RB", "DT", "NNP", ",", "RB", "RB", ".", "NN", "VBG", "PRP$", "NNS", "VBZ", "RB", "IN", "IN", "NN", "NN", ",", "CC", "IN", "PRP$", "VBZ", "DT", "JJ", "NN", "CC", "NN", "TO", "DT", "NN", "NN", "IN", "JJ", "NN", ".", "-NONE-", "VB", "NN", "CC", "NN", "MD", "VB", "RB", "IN", "-NONE-", "VBG", ",", "-NONE-", "VBG", "JJR", "NN", "RB", "IN", "JJR", ".", "DT", "NN", "IN", "PRP$", "NN", "VBZ", "RB", "-NONE-", "TO", "VB", "VBN", "-NONE-", "RB", ",", "IN", "JJR", "CC", "JJR", "NN", "VBZ", "JJ", ",", "RB", "JJ", ".", "IN", "-NONE-", "VBG", "NNS", "IN", "MD", "VB", "NN", ",", "NN", "NNS", "MD", "VB", "DT", "NN", "NN", "IN", "DT", "NN", ".", "-NONE-", "VBG", "JJ", "NN", ".", "PRP", "MD", "VB", "RB", "JJ", "IN", "-NONE-", "VBG", "NNS", "IN", "``", "JJ", "''", "CC", "``", "JJ", ".", "''", "NNS", "VBN", "-NONE-", "TO", "VB", "CD", "NN", "IN", "NN", "IN", "DT", "VBP", "JJ", "TO", "-NONE-", "VBG", "DT", "NN", "-NONE-", "IN", "DT", "NNP", "NNP", "POS", "NN", "VBG", ":", "``", "NNS", "VB", ",", "NNS", "VB", "-NONE-", "VB", "RB", ".", "''", "DT", "JJ", "NN", "IN", "DT", "NN", "VBZ", "DT", "NN", "NN", ",", "CC", "NNS", "MD", "RB", "VB", "PRP", "IN", "IN", "NNS", "VBP", "RB", "VBN", "IN", "DT", "JJ", "NN", ".", "DT", "JJ", "NN", "IN", "DT", "NN", "NN", "MD", "VB", "DT", "NN", "TO", "DT", "NN", "CC", "NNS", "-NONE-", "PRP", "MD", "VB", "-NONE-", ".", "IN", "NN", "IN", "NN", ",", "NN", "IN", "-NONE-", "VBN", "-NONE-", "IN", "DT", "JJ", "JJ", "NN", "IN", "JJ", "NN", "NN", "NNS", "VBZ", "RB", "VBN", "RB", "JJR", "IN", "PRP", "VBZ", "-NONE-", "NN", ".", "NNS", "IN", "DT", "NN", "IN", "NNS", "CC", "NN", "NN", "VBD", "RB", "RBR", "JJ", ",", "RB", "WRB", "JJ", "NN", "NNS", "VBD", "VBG", "NN", "-NONE-", "-LRB-", "CD", ",", "CD", ",", "CC", "CD", "IN", "NN", "-RRB-", ".", "PRP", "-NONE-", "VBZ", "JJ", "-NONE-", "TO", "VB", "DT", "JJ", "NN", "NNS", "VB", "``", "JJ", "''", "IN", "NN", "NN", "WRB", "DT", "NNS", "VBP", "-NONE-", ",", "IN", "-NONE-", "VBG", "DT", "JJ", "NNS", "RB", "VBG", "IN", "DT", "NNS", "VBP", ".", "MD", "VBG", "NN", "RB", "VB", "VBN", "TO", "NN", "IN", "DT", "NNS", "IN", "NNS", ",", "RB", "IN", "DT", "JJ", "NNS", "IN", "NN", "NNS", ".", "DT", "IN", "DT", "VBN", "NNS", "IN", "WP", "-NONE-", "VBZ", "VBN", "-NONE-", "``", "NN", "NN", "''", "MD", "VB", "RB", "JJR", "IN", "DT", "VBN", "NN", ".", "IN", "-NONE-", "VBG", "NN", "NN", "IN", "DT", "JJ", "NN", ",", "JJ", "NNS", "VBP", "-NONE-", "TO", "VB", "DT", "JJ", "NN", "IN", "-NONE-", "VBG", "JJ", "NNS", "IN", "PRP$", "VBG", "JJ", "NNS", ".", "PRP", "MD", ",", "RB", ",", "VB", "-NONE-", "VBG", "DT", "JJ", "NN", "IN", "IN", "DT", "NNS", "PRP", ".", "WRB", "VBZ", "DT", "JJ", "JJ", "NN", ",", "VB", "CD", "NN", ",", "IN", "DT", "JJ", "NN", "VB", "-NONE-", ".", "DT", "MD", "-NONE-", "TO", "VB", "JJ", "-NONE-", "PRP", "VBP", "DT", "VBG", "IN", "DT", "JJ", "NN", ".", "-NONE-", "VBG", "DT", "NN", "NN", "NN", ".", "DT", "NN", "VBZ", "RB", "DT", "RBS", "JJ", "CD", "IN", "-NONE-", "VBG", "NN", "NN", ":", "RB", "IN", "IN", "PRP$", "NNS", ",", "CC", "IN", "IN", "DT", "NNS", "VBG", "DT", "NN", ".", "DT", "JJS", "IN", "DT", "NNS", "VBP", "NN", "NNS", "WP", "-NONE-", "VBP", "TO", "JJR", "NNS", ".", "PRP", "RB", "VBP", "PRP$", "NNS", "IN", "WDT", "JJ", "NNS", "-NONE-", "TO", "VB", "CC", "VB", "-NONE-", ",", "IN", "PRP$", "NNS", "VBP", "-NONE-", "TO", "VB", "IN", "JJ", "NN", ".", "RB", "IN", "JJ", "NNS", ",", "DT", "JJ", "NN", "VBZ", "-NONE-", "TO", "VB", "JJ", "NNS", ",", "JJ", "NNS", "CC", "JJ", "NN", ",", "IN", "NN", "NNS", "RB", "VBP", "DT", "JJR", "NN", "IN", "JJR", "NNS", ",", "JJR", "NNS", "CC", "JJR", "NN", ".", "CC", "PRP$", "NNS", "VBP", "RB", "RBR", "JJ", "IN", "DT", "IN", "DT", "NN", "NN", "RB", "VBG", "NN", "NNS", "IN", "DT", "NN", "-NONE-", "PRP", "VBZ", "-NONE-", ".", "RB", "DT", "JJ", "NN", "VBZ", "VBN", "-NONE-", "IN", "DT", "NNS", "IN", "-NONE-", "VBG", "DT", "JJ", "NN", ",", "CC", "PRP", "RB", "VBZ", "DT", "CD", "JJS", "JJ", "-NONE-", "TO", "VB", "IN", "PRP$", "NNS", ".", "IN", "NNS", "JJ", "IN", "NN", "NN", "VBP", "RB", "JJ", ",", "RB", "DT", "JJ", "NN", "NN", "MD", "VB", "IN", "-NONE-", "VBG", "PRP", "TO", "JJ", "NNS", ".", "DT", "JJ", "NN", "VBZ", "IN", "DT", "JJ", "NN", "VBZ", "-NONE-", "TO", "VB", "JJ", "NNS", "RB", ",", "IN", "-NONE-", "VBG", "NNS", "TO", "VB", "IN", "NN", "NNS", "IN", "NN", "IN", "JJ", "NNS", "IN", "NN", "NN", "IN", "NN", "-NONE-", ".", "JJ", "NN", "NNS", "RB", "VBP", "RB", "JJ", "RB", "-NONE-", "TO", "VB", "DT", "JJ", "NNS", "CC", "NNS", "IN", "JJ", "NNS", "RB", "VBP", "-NONE-", ",", "CC", "IN", "JJ", "NNS", "VBP", "-NONE-", "TO", "VB", "-NONE-", ".", "DT", "JJ", "NN", "NN", "VBZ", "JJ", "-NONE-", "TO", "VB", "VBN", "-NONE-", "IN", "NNS", "VBG", "JJR", "NNS", "-NONE-", "-NONE-", "TO", "VB", "PRP$", "JJ", "NNS", "-NONE-", ",", "RB", "CC", "RB", ".", "-NONE-", "VBG", "JJ", "NN", "NNS", "MD", "RB", "VB", "NNS", "JJR", "IN", "DT", "JJS", "JJ", "NNS", ".", "RB", "WP", "-NONE-", "VBZ", "JJ", "IN", "NN", "NN", ".", "-NONE-", "VBN", "-NONE-", "TO", "PRP$", "JJ", "NNS", ",", "NN", "NN", "MD", "VB", "RBR", "CC", "RBR", "JJ", ",", "-NONE-", "VBG", "PRP", "JJR", "CC", "JJR", "-NONE-", "-NONE-", "TO", "VB", "-NONE-", "RB", ".", "NNS", "MD", "VB", "RB", "RB", "IN", "PRP", "MD", "RB", "VB", "WDT", "NN", "DT", "NN", "VBZ", "-NONE-", ":", "NN", "MD", "VB", "PRP", "IN", "-NONE-", "VBG", "DT", "JJ", "NN", ".", "IN", "NN", "CC", "JJ", "NNS", "VBP", ",", "RB", ",", "IN", "-NONE-", "VBG", "JJR", "NN", "IN", "DT", "NNS", "-LRB-", "NNS", "IN", "NN", "NNS", ",", "JJ", "NN", ",", "JJR", "NN", "NNS", ",", "NN", ",", "FW", "-RRB-", ",", "DT", "NN", "NN", "MD", "VB", "DT", "NNS", "PRP", ".", "RB", ",", "PRP", "MD", "-NONE-", "TO", "VB", "VBG", "JJR", "NN", "IN", "JJR", "NNS", "-NONE-", "-NONE-", "TO", "VB", "CC", "VB", "NN", "IN", "DT", "NNS", "-NONE-", ".", "NNP", "NNP", "POS", "NNP", "NN", ",", "NNP", "NNP", "NNP", "NNP", ",", "VBZ", "NN", "NNS", "IN", "NNS", ".", "DT", "NNPS", "IN", "NNP", "VBP", "VBG", "IN", "DT", "JJ", "JJ", "NN", "NN", "IN", "DT", "CD", "JJ", "JJ", "NNS", "MD", "VB", "IN", "JJR", "NNS", "IN", "DT", "JJ", "NN", "RB", "VBN", "RB", "IN", "JJ", "NNS", ".", "DT", "NN", "NN", ",", "WDT", "-NONE-", "VBZ", "VBN", "JJ", "NN", "CC", "VBZ", "VBN", "-NONE-", "TO", "VB", "VBN", "-NONE-", "IN", "NNP", "NNP", ",", "MD", "VB", "DT", "JJ", "NNS", "IN", "DT", "NNP", "NNP", "CC", "DT", "NNP", "NNP", "NNP", ".", "IN", "DT", "NN", "IN", "JJ", "NNS", "-NONE-", "TO", "VB", "NN", ",", "NNP", "VBD", "IN", "$", "CD", "CD", "-NONE-", "DT", "NNP", "NN", "POS", "NN", "IN", "JJ", "NN", "IN", "JJ", "CD", ",", "WDT", "-NONE-", "VBD", "NNP", "CD", ".", "-NONE-", "TO", "VB", "DT", "NN", ",", "NNP", "VBD", "DT", "$", "CD", "-NONE-", "NN", "IN", "NNS", "CC", "NNS", "MD", "VB", "-NONE-", "TO", "VB", "-NONE-", "DT", "NN", "-NONE-", "PRP", "VBP", "VBN", "NNS", "TO", "JJ", "NNS", "IN", "NNS", ",", "NNS", "CC", "JJ", "JJ", "NNS", "-NONE-", ".", "RB", "NNPS", ",", "VBN", "-NONE-", "IN", "NNP", "NNP", "NNP", "-LRB-", "NNP", ",", "NNP", "-RRB-", ",", "RB", "VBD", "DT", "NN", "IN", "PRP", "VBP", "IN", "DT", "NNS", "MD", "RB", "RB", "VB", "RP", "IN", "DT", "NN", "NNS", ".", "CC", "NNP", "NNP", "CC", "NNP", "NNS", "VBD", "-NONE-", "PRP", "VBP", "DT", "NN", "NNS", "TO", "VB", "RP", "IN", "DT", "NN", "NNS", "CC", "RB", "VB", "PRP", ".", "``", "PRP", "MD", "VB", "-NONE-", "TO", "VB", "PRP$", "NN", ",", "''", "NNP", "NNP", ",", "DT", "NNP", "NNP", "POS", "JJ", "NN", ",", "VBD", "-NONE-", "IN", "DT", "NN", ".", "IN", "NNS", "VBN", "-NONE-", "IN", "DT", "NNS", "IN", "NNP", ",", "DT", "NN", "POS", "NN", "IN", "$", "CD", "CD", "-NONE-", "IN", "DT", "NNP", "NNP", "MD", "VB", "VBN", "-NONE-", "$", "CD", "CD", "-NONE-", ".", "DT", "NNP", "NN", "NN", "IN", "$", "CD", "CD", "-NONE-", ",", "IN", "$", "CD", "CD", "-NONE-", "IN", "WDT", "-NONE-", "MD", "VB", "IN", "JJ", "NN", ",", "MD", "RB", "VB", "VBN", "-NONE-", "IN", "$", "CD", "CD", "-NONE-", ".", "DT", "NN", "VBD", "VBN", "RB", "DT", "JJ", "NN", "IN", "JJ", "NN", "IN", "JJ", "CD", "IN", "-NONE-", "VBD", "VBN", "-NONE-", "IN", "JJ", "CD", ".", "DT", "VBG", "NNS", "MD", "VB", "TO", "NNS", "VBN", "-NONE-", "IN", "DT", "NNP", "NNP", ".", "IN", "DT", "NN", ",", "NNS", "VBG", "NNS", "CC", "NNS", "VBN", "-NONE-", "IN", "$", "CD", "CD", "-NONE-", "CC", "RBR", "MD", "VB", "NNP", "CC", "NNP", "NNP", "JJ", "NNS", "IN", "-NONE-", "VBG", "DT", "NNS", ".", "RB", ",", "DT", "NN", "VBZ", "NN", "IN", "JJ", "NNS", ".", "NNS", "IN", "DT", "NN", "NN", "VBP", "IN", ",", "VBN", "IN", "JJ", "NN", "NNS", "IN", "JJR", "IN", "CD", "DT", "NN", ",", "DT", "NNS", "MD", "VB", "IN", "JJS", "$", "CD", "CD", "-NONE-", "-NONE-", "DT", "JJ", "NN", ",", "CC", "$", "CD", "CD", "-NONE-", "JJR", "IN", "DT", "NN", "NNS", ".", "``", "WRB", "PRP", "VBP", "DT", "-NONE-", ",", "EX", "VBZ", "RB", "DT", "NN", ",", "CC", "EX", "VBZ", "IN", "NN", "DT", "NN", "NN", "IN", "$", "CD", "CD", "-NONE-", "''", "DT", "IN", "DT", "NNP", "CC", "DT", "NNP", "NNP", ",", "NNP", "NNP", "NNP", "-LRB-", "NNP", ",", "NNP", "-RRB-", "VBD", "-NONE-", "-NONE-", "IN", "NNP", "NN", ".", "CC", "NNP", "NNP", "NNP", "-LRB-", "NNP", ",", "NNP", ".", "-RRB-", "VBD", "IN", "DT", "NN", "MD", "VB", "NN", "NN", ",", "-NONE-", "VBG", "DT", "NN", "IN", "NNS", "VBN", "-NONE-", ".", "DT", "JJ", "NNS", "IN", "PDT", "DT", "NNP", "CC", "NNP", "NNP", "VBD", "VBN", "-NONE-", "JJR", "IN", "CD", "NN", "IN", "DT", "NNP", "NN", ",", "CC", "NN", "IN", "JJ", "NN", "NNS", "VBD", "RP", "RB", "IN", "DT", "NN", ".", "``", "NN", "VBZ", "RB", "DT", "NN", "-NONE-", "-NONE-", "TO", "VB", "IN", "NNP", "IN", "DT", "NN", "VBZ", "DT", "JJ", "NN", "IN", "WDT", "JJ", "NN", "VBZ", "VBN", "-NONE-", "-NONE-", ",", "''", "NNP", "NNP", "VBD", "-NONE-", "-NONE-", ".", "DT", "NN", "IN", "NN", "IN", "$", "CD", "CD", "-NONE-", "VBN", "-NONE-", "IN", "DT", "NNS", "IN", "JJ", "CD", "MD", "VB", "TO", "DT", "NNP", "IN", "JJ", ".", "JJ", "NNS", "VBD", "-NONE-", "DT", "JJ", "NNS", "MD", "RB", "VB", "JJ", "NNS", "CC", "JJ", "NNS", ".", "IN", "DT", "NNS", "VBD", "IN", "JJ", "NNS", "VBD", "VBG", "-NONE-", "TO", "VB", "NNS", "IN", "DT", "NNS", "VBP", "NN", ",", "NN", "NNS", "VBD", "-NONE-", "PRP", "VBD", "RB", "VBN", "DT", "NN", "IN", "NNS", ".", "NN", "NN", "NNS", "VBD", "DT", "NN", "IN", "JJ", "NNS", ".", "JJ", "NNS", "VBP", "RB", "JJ", "NN", "NNS", ".", "CC", "DT", "CD", "NN", "NN", "IN", "CD", ",", "IN", "RB", "IN", "CD", "NN", ",", "VBZ", "``", "DT", "JJ", "VBG", "IN", "IN", "NN", "NN", "CC", "VBZ", ",", "''", "VBZ", "-NONE-", "-NONE-", "NNP", "NNP", ",", "NN", "IN", "NNP", ",", "NNP", "CC", "NNP", "NNP", ".", "PRP", "VBZ", "-NONE-", "DT", "CD", "JJ", "NNS", "IN", "NN", "NNS", "DT", "NN", "VBP", "DT", "JJS", "IN", "DT", "JJ", "DT", "NN", ".", "NN", "NNS", "VBP", "IN", "DT", "NNP", "NN", "IN", "-NONE-", "VBG", "NN", "NNS", "TO", "DT", "NN", "IN", "-NONE-", "VBG", "DT", "NNP", "NNP", "NN", "NN", ".", "NN", "NNS", "VBP", "-NONE-", "NN", "RB", "VBZ", "VBN", "-NONE-", "IN", "DT", "CD", "NNS", ".", "IN", "NNP", ",", "CD", "NN", "NNS", "IN", "JJ", "NN", "POS", "NN", "VBP", "``", "RB", "VBN", ",", "''", "VBZ", "-NONE-", "-NONE-", "NNP", "NNP", ",", "NN", "IN", "``", "NNP", "NNPS", ".", "''", "NNP", "NNP", "VBZ", "CD", "VBN", "NNS", "IN", "NNP", ".", "JJ", "NN", "NNS", "VBP", "VBN", "-NONE-", "TO", "VB", "NN", ",", "DT", "NN", "CC", "NN", "NN", ".", "-NONE-", "VBG", "DT", "NN", "IN", "NNP", ",", "JJR", "NNS", "MD", "VB", "PRP$", "NNS", "IN", "-NONE-", "VBG", "NNS", ",", "VBZ", "-NONE-", "-NONE-", "NNP", "NNP", "IN", "NNP", "NNP", "NNP", ".", "NN", "NN", "VBZ", "JJ", "NN", "IN", "NNS", "VBP", ".", "NN", "NNS", "VBP", "VBG", "NN", "IN", "NNS", "DT", "NN", ".", "IN", "NNP", "POS", ",", "DT", "NN", "IN", "CD", "NNS", "IN", "NNP", "NNP", "POS", "``", "NNS", "''", "NN", "VBD", "IN", "$", "CD", "-NONE-", ",", "DT", "JJ", "NN", ".", "JJ", "NNS", "RB", "VBP", "VBN", "VBG", "NN", "NNS", ".", "IN", "NN", ",", "NNS", "VBP", "NN", "IN", "DT", "NN", "NN", "VBN", "-NONE-", "IN", "JJ", "NNS", "IN", "DT", "NN", "IN", "NNS", ".", "DT", "NN", "VBD", "-NONE-", "TO", "VB", "RB", "VBN", "CC", "RB", "JJ", ",", "VBZ", "-NONE-", "-NONE-", "NNP", "NNP", "IN", "NNP", "POS", ".", "``", "EX", "VBZ", "RB", "DT", "NN", "IN", "NN", "IN", "DT", "NN", ",", "''", "PRP", "VBZ", "-NONE-", ".", "NNS", "CC", "NNS", "VBP", "IN", "DT", "JJ", "NNS", ",", "-NONE-", "VBG", "JJR", "NN", "NN", ",", "VBZ", "-NONE-", "-NONE-", "NNP", "NNP", "IN", "DT", "NNP", "NNP", ".", "``", "WRB", "PRP", "VBP", "NNS", "VBG", "IN", "DT", "NNS", "IN", "NNS", "-NONE-", ",", "PRP", "VBP", "-NONE-", "PRP", "VBP", "RB", "VBG", "-NONE-", "TO", "VB", "RB", "IN", "DT", "NN", ".", "''", "JJS", "IN", "NN", ":", "JJ", "NNS", "IN", "NNS", "JJ", "IN", "NNP", "CC", "NNP", "NNP", ".", "CC", "RB", "JJ", "NN", "VBZ", "RB", "VBG", "``", "DT", "JJ", "NN", "IN", "NN", ",", "''", "VBZ", "-NONE-", "-NONE-", "NNP", "NNP", "IN", "DT", "NNP", "NNP", "IN", "NNP", ".", "-NONE-", "VBG", "CD", "VBZ", "NNS", "DT", "VBG", "NN", "IN", "NNS", ".", "-NONE-", "RB", "DT", "$", "CD", "JJ", "NN", ",", "CD", "NN", "NN", "VBZ", "VBN", "-NONE-", "TO", "VB", "$", "CD", "CD", "-NONE-", "JJ", "NN", "CC", "IN", "$", "CD", "CD", "-NONE-", "IN", "CD", "IN", "NNS", "IN", "DT", "NN", "VBP", "-NONE-", "TO", "VB", ",", "VBZ", "-NONE-", "-NONE-", "NNP", "NNP", "IN", "NNP", ",", "NNP", "CC", "NNP", "NNP", ".", "DT", "NN", ":", "WDT", "-NONE-", "VBZ", "DT", "NN", "IN", "CD", "NNS", "TO", "$", "CD", "-NONE-", "DT", "NN", ":", "RB", "VBZ", "VBN", "-NONE-", "IN", "NN", "NN", ",", "NNS", "CC", "NN", "NNS", ".", "CC", "RBR", "JJ", "NNS", "VBP", "IN", "DT", "NNS", ",", "CC", "DT", "VBZ", "WRB", "DT", "JJ", "NN", "VBZ", "VBN", "-NONE-", "-NONE-", ".", "``", "PRP", "VBP", "VBG", "-NONE-", "TO", "VB", "JJR", "NN", "NNS", ",", "''", "VBZ", "-NONE-", "NNP", "NNP", "IN", "NNP", "NNP", "CC", "NNP", "NNP", ",", "-NONE-", "VBG", "VBG", "NN", "IN", "NN", "IN", "CD", "NN", "IN", "NN", "NNS", ",", "NN", "NNS", "CC", "RB", "NN", "NNS", ".", "NNS", ",", "PRP", "VBZ", "-NONE-", "-NONE-", ",", "VBP", "VBG", "NN", "IN", "CD", "NN", ".", "NNS", "VBP", "DT", "NNS", ",", "CC", "PRP", "VBP", "JJ", "NNS", "TO", "JJ", "NN", "NN", ".", "``", "DT", "NN", "WDT", "-NONE-", "MD", "RB", "VB", "DT", "NN", "RB", "JJ", "VBZ", "NN", ",", "''", "NNP", "NNP", "VBZ", "-NONE-", ".", "JJ", "IN", "DT", "CD", "NN", "MD", "``", "VB", "TO", "CD", ",", "''", "VBZ", "-NONE-", "NNP", "NNP", ",", "JJ", "NN", "IN", "NNP", "NNP", "POS", "CD", "NN", ".", "NN", "NNS", "VBP", "VBG", "NN", "NNS", "IN", "NNS", "IN", "NNP", "NNP", ",", "NNP", ".", "NNS", "WP", "-NONE-", "VBP", "JJ", "CC", "JJ", "NNS", "VBP", "VBN", "-NONE-", "TO", "VB", "JJR", "NN", "NN", "CC", "VBN", "NN", "CC", "VB", "RBR", "JJ", "TO", "NN", ",", "VBZ", "-NONE-", "-NONE-", "NNP", "NNP", "NNP", ",", "NN", "NN", ".", "JJ", "IN", "-NONE-", "VBG", ".", "NNP", "NNP", "CC", "NNP", "VBZ", "DT", "JJ", "NNP", "NN", "WDT", "-NONE-", "VBZ", "DT", "NN", "-NONE-", "TO", "VB", "NNS", ".", "DT", "$", "CD", "-NONE-", "NN", "VBZ", "VBN", "-NONE-", "TO", "VB", "RB", "VBG", "VBN", "NN", "TO", "NNS", "IN", "JJ", "NNS", ".", "NNP", "NNP", ":", "NN", "IN", "JJ", "NN", "CC", "NN", "VBZ", "NNP", "NNP", "NNP", "NNP", ",", "NNP", "NNP", ",", "TO", "VB", "RP", "DT", "JJ", "JJ", "NN", ".", "-NONE-", "VBN", "-NONE-", "IN", "DT", "$", "CD", "CD", "-NONE-", "NN", "IN", "NNP", "NNP", "CC", "NNP", "NNP", ",", "DT", "NN", "MD", "VB", "JJ", "JJ", "NNS", ",", "VBG", "NN", "IN", "JJ", "NN", ".", "NN", "NNS", "VBP", "DT", "NN", "IN", "VBG", "JJ", "NNS", ".", "-NONE-", "VBN", "IN", "VBG", "NNS", "CC", "DT", "NN", "IN", "NNS", "VBN", "-NONE-", "IN", "JJ", "NNS", ",", "NNS", "VBP", "VBG", "TO", "DT", "NN", "NN", ".", "NNP", "NNPS", "NNP", ",", "NNP", ",", "NNP", ",", "VBZ", "-NONE-", "NN", "VBZ", "IN", "CD", "NN", "IN", "DT", "NN", "NN", ".", "``", "PRP", "VBP", "VBG", "CD", "JJ", "NNS", "DT", "NN", ",", "''", "VBZ", "-NONE-", "NNP", "NNP", "IN", "NNP", "NNP", "NNP", "NNP", ",", "NNP", ",", "NNP", ".", "IN", "NNP", ",", "NNP", ",", "NNP", "NNP", "POS", "JJ", "NN", "NN", "VBZ", "JJ", "NN", ".", "IN", "PRP$", "JJ", "NNS", ":", "JJ", "NNS", "WDT", "-NONE-", "RB", "VBD", "DT", "NN", ".", "DT", "NNP", "NNP", "IN", "NNP", "NNPS", ",", "NNP", ",", "VBZ", "IN", "IN", "NNP", "PRP", "VBZ", "VBN", "JJR", "IN", "CD", "NNS", "IN", "NNS", "JJ", "IN", "-NONE-", "VBG", "NN", "NNS", ".", "NNP", "NNP", "VBD", "DT", "NN", "NN", "JJ", "NN", "IN", "NNP", "NNP", ",", "NNP", ",", "WRB", "PRP", "VBZ", "-NONE-", ",", "VBD", "RB", "VB", "CD", ".", "NN", "NNS", "DT", "NN", "VBD", "NN", "IN", "NNP", "NNP", "NNPS", ",", "NNP", ",", "NNP", ",", "WRB", "NN", "VBZ", "IN", "CD", "NN", "IN", "-NONE-", "-NONE-", "RB", "VBG", "DT", "NN", "TO", "NN", ":", "NN", "NNS", "IN", "NN", "NNS", "WDT", "-NONE-", "VBP", "DT", "NN", "IN", "NN", "NNS", ".", "NNPS", ":", "RB", "CD", "NN", "IN", "NNP", "NNPS", "VBP", "DT", "JJ", "NN", ",", "DT", "JJS", "NN", "IN", "DT", "NN", ",", "VBZ", "-NONE-", "-NONE-", "DT", "JJ", "NN", "IN", "NNP", "NNPS", "NNP", ",", "NNP", ",", "NNP", ":", ".", "NNP", ",", "DT", "NN", "VBG", "DT", "NN", "IN", "NNP", "NNP", ",", "VBZ", "VBN", "-NONE-", "IN", "DT", "$", "CD", "-NONE-", "NN", "IN", "JJ", "NN", ".", "NN", "NN", "VBZ", "``", "DT", "NN", ",", "''", "VBZ", "-NONE-", "-NONE-", "NNP", "NNP", ",", "DT", "NNP", "NNP", ",", "NNP", ",", "NN", "CC", "NNS", "NNS", "NN", ",", "``", "CC", "PRP", "VBZ", "RB", "TO", "DT", "NN", "IN", "DT", "JJ", "NN", ",", "DT", "VBZ", "IN", "RB", ".", "''", "CC", "IN", "PRP", "VBZ", "IN", "PRP", "VBZ", "VBG", "PRP", ",", "PRP", "VBZ", "-NONE-", "PRP", "MD", "VB", "VBN", "-NONE-", ".", "NNP", "NNP", "POS", "NN", "IN", "NN", "NN", "VBZ", "VBN", "-NONE-", "IN", "JJ", "JJ", "NNS", "VBN", "-NONE-", "IN", "NNP", "NNP", "NNP", "NNS", "IN", "DT", "NN", ".", "CC", "IN", "NNP", "NNP", ",", "JJ", "VBP", "PRP", "TO", "VB", "VBN", "-NONE-", "RB", ",", "CC", "DT", "JJ", "NN", "NN", "-NONE-", "PRP", "MD", "VB", "-NONE-", ".", "``", "PRP", "VBP", "-NONE-", "NN", "NN", "VBZ", "RB", "JJ", "TO", "DT", "JJ", "NN", ",", "''", "VBZ", "-NONE-", "NNP", "NNP", ",", "DT", "NNP", "NN", ".", "PRP", "VBZ", "IN", "NN", "NNS", "VBP", "DT", "NN", "NN", "NN", "IN", "IN", "DT", "NN", "IN", "PRP$", "NNS", ",", "IN", "PRP", "VBP", "DT", "JJR", "NN", "NN", "IN", "JJ", "NNS", "VBP", "CC", "IN", "PRP", "RB", "MD", "VB", "RP", "JJR", "WRB", "DT", "NN", "VBZ", "VBG", "-NONE-", ".", "CC", "PRP", "VBZ", "NN", "NN", "IN", "RB", "DT", "IN", "DT", "NN", "POS", "NN", ".", "PRP", "RB", "VBZ", "DT", "NN", "VBD", "CC", "VBZ", "DT", "NNS", "IN", "NN", "NNS", ".", "PRP", "VBZ", ":", "``", "DT", "NN", "MD", "VB", "VBG", "PRP", "DT", "NN", ",", "IN", "DT", "NN", "VBZ", "VBG", ".", "''", "CC", ",", "IN", "NNP", "NNP", ",", "DT", "JJ", "NN", "IN", "NNP", ",", "NNP", ",", "VBZ", "PRP", ":", "``", "DT", "NNS", "IN", "JJ", "NNS", "VBP", "DT", "NN", "DT", "NNS", ".", "''", "CC", "PRP", "VBZ", "IN", "``", "NN", "NN", "VBZ", "JJ", "NNS", ".", "PRP", "VBZ", "RB", "DT", "JJ", "NN", ":", "EX", "VBZ", "DT", "JJ", "NN", "IN", "PRP", ".", "''", "PRP", "VBZ", "IN", "NN", "VBG", "PRP", "MD", "VB", "``", "DT", "RB", "JJ", "NN", ".", "''", "IN", "DT", "NNP", "NNP", "CC", "NNP", "NN", "IN", "NNP", "POS", "NNP", "NN", ",", "DT", "NN", "IN", "NNS", "NNS", "NN", "IN", "JJ", "NNS", "MD", "VB", "NN", "NN", ".", "-NONE-", "VBG", "DT", "NNP", "CD", "NN", ",", "NNP", "NNP", "VBZ", ",", "``", "PRP", "VBZ", "IN", "DT", "JJ", "NN", ":", "PRP", "VBD", ",", "CC", "DT", "NN", "VBD", "NN", ".", "''", "NNP", "NNP", "NNP", ",", "DT", "JJ", "NNP", "NNP", "NN", "WP", "-NONE-", "VBZ", "-NONE-", "DT", "NN", "NN", "POS", "``", "NNS", "CC", "NNS", "VBP", "PRP", "DT", "NNS", ",", "''", "VBZ", "RB", "VB", "JJ", "NN", "IN", "-NONE-", "VBG", "NN", "NN", ".", "DT", "WP", "-NONE-", "RB", "VBP", "-NONE-", "TO", "VB", "PRP", "``", "MD", "RB", "VB", "DT", "NN", "-NONE-", "-NONE-", "TO", "VB", "IN", "''", "DT", "NN", "-NONE-", "TO", "VB", "PRP", "-NONE-", ".", "RB", ",", "NNP", "NNP", ",", "DT", "JJ", "NN", "NN", "IN", "DT", "NNP", "NN", "NN", ",", "MD", "VB", "-NONE-", "TO", "VB", "NN", "NN", "VB", "IN", "``", "PRP", "MD", "RB", "VB", "IN", "PRP", "VBZ", "NN", "IN", "DT", "NN", "CC", "DT", "NN", ".", "''", "RB", "PRP", "VBZ", "RB", "IN", "NN", "IN", "JJ", "NN", ".", "``", "PRP", "VBP", "-NONE-", "PRP", "VBP", "VBN", "JJ", "NNS", "NNS", ",", "''", "PRP", "VBZ", "-NONE-", ".", "``", "PRP", "MD", "RB", "RB", "VB", "PRP", "VBG", "IN", "NN", "NNS", "CC", "DT", "NN", ".", "''", "NNP", "NNP", ",", "WP", "-NONE-", "VBZ", "DT", "NN", "NN", "IN", "NNP", "NNP", ",", "VBZ", "NN", "NN", "IN", "``", "-NONE-", "VBG", "DT", "NN", "TO", "DT", "JJ", ",", "''", "CC", "PRP", "RB", "VBZ", "RB", "JJ", "-NONE-", "PRP", "MD", "VB", "RBR", "RB", "VBN", "-NONE-", ".", "``", "PRP", "VBP", "RB", "VB", "-NONE-", "TO", "VB", "PRP", "IN", "-NONE-", "VBG", "PRP", "MD", "VB", "IN", "-NONE-", "VBG", "NN", ",", "''", "PRP", "VBZ", "-NONE-", ".", "CC", "JJ", "NNS", "IN", "JJ", "NNS", "VBP", "-NONE-", "TO", "VB", "VBG", "TO", "JJR", "NN", "NN", "NN", "CC", "VB", "-NONE-", "PRP", "MD", "VB", "IN", "NN", "NN", ".", "NNP", "NNP", ",", "DT", "JJ", "NNP", "NNP", "JJ", "NN", "WP", "-NONE-", "VBZ", "NNS", "IN", "PRP$", "JJ", "NN", ",", "VBZ", "-NONE-", "PRP", "VBZ", "``", "VBG", "''", "DT", "NN", "POS", "NN", "``", "IN", "NN", "NNS", ".", "''", "PRP", "VBZ", "IN", "NN", "NN", "``", "VBZ", "NN", "IN", "DT", "NN", ".", "PRP", "MD", "RB", "VB", "JJ", "NN", ".", "''", "CC", "DT", "NN", "MD", "RB", "VB", "VBN", "-NONE-", ",", "PRP", "VBZ", "-NONE-", "-NONE-", ",", "IN", "``", "RB", "JJ", "NNS", "VBP", "RB", "JJ", "TO", "DT", "NNS", "IN", "NN", "NN", ".", "''", "-NONE-", "RB", "IN", "NNP", "NNP", ",", "NNP", "NNP", ",", "DT", "NN", "NN", ",", "VBZ", "IN", "NN", "NN", "``", "VBZ", "NN", ",", "CC", "PRP", "VBP", "RB", "VB", "-NONE-", "PRP", "MD", "VB", "VBN", "-NONE-", ".", "EX", "VBZ", "DT", "NN", "RB", ".", "DT", "NN", "VBZ", "RB", "VBG", "RBR", "JJ", ".", "''", "-NONE-", "VBG", "IN", "NNS", "IN", "NN", "CC", "NNS", "NNS", "VBZ", "DT", "JJ", "NN", "IN", "JJ", "JJ", "NNS", ",", "PRP", "VBZ", "-NONE-", "-NONE-", ".", "PRP", "VBZ", "IN", "PRP$", "NNS", "IN", "DT", "NN", "NN", "NN", "VBP", "VBN", "-NONE-", "IN", "DT", "JJ", "NN", ",", "CC", "NN", ",", "IN", "DT", "VBN", "NN", ",", "MD", "VB", "DT", "NN", ".", "CC", "``", "PRP", "VBP", "DT", "JJ", "NN", ",", "''", "PRP", "VBZ", "-NONE-", ".", "``", "IN", "PRP", "VBD", "DT", "JJ", "NN", ",", "PRP", "MD", "VB", "RBR", "JJ", "IN", "NN", "NN", ".", "''", "NNP", "NNP", "IN", "NNP", "VBZ", "NN", "NN", "IN", "PRP", "VBZ", "IN", "PRP", "MD", "VB", "DT", "NN", "RB", "IN", "IN", "DT", "NN", ".", "``", "IN", "PRP", "VBP", "DT", "JJ", "JJ", "NN", ",", "DT", "NN", "MD", "VB", ",", "``", "-NONE-", "VB", ",", "''", "''", "PRP", "VBZ", "-NONE-", ".", "``", "IN", "PRP", "MD", "VB", "DT", "NN", "IN", "DT", "NN", "NN", ",", "PRP", "MD", "VB", "NN", "IN", "PRP", ".", "''", "WP", "RB", "MD", "DT", "JJ", "NN", "VB", "-NONE-", ".", "NNP", "NNP", ",", "DT", "NNP", "NN", ",", "VBZ", "VBG", "IN", "JJ", "NNS", ".", "NNP", "NNP", "VBZ", "-NONE-", "PRP", "VBD", "RB", "VBN", "DT", "$", "CD", "-NONE-", "-NONE-", "PRP", "VBD", "-NONE-", "IN", "DT", "CD", "NN", "WRB", "PRP", "VBD", "JJR", "NN", "JJ", "NNP", "CD", "-NONE-", ".", "RB", ",", "PRP", "VBZ", "-NONE-", "TO", "VB", "PDT", "PRP$", "NNS", "IN", "DT", "JJ", "NN", "IN", "CD", ".", "IN", "NNP", ",", "IN", "DT", "NN", "VBD", ",", "NNP", "NNP", "IN", "NNP", ",", "NNP", ",", "VBD", "-NONE-", "TO", "VB", "DT", "``", "JJ", "NNS", "''", "IN", "PRP$", "NN", "NN", "``", "IN", "PRP", "MD", "VB", "JJ", "-NONE-", "TO", "VB", "PDT", "DT", "NN", "''", "VBN", "-NONE-", "IN", "NN", "NN", ".", "PRP", "VBZ", "IN", "DT", "JJ", "NN", "IN", "NNS", "VBZ", "-NONE-", "TO", "``", "VB", "NNS", "WDT", "-NONE-", "MD", "VB", "DT", "NN", ".", "''", "NNP", "NNP", ",", "DT", "JJ", "NNP", "NN", ",", "VBZ", "VBN", "RB", "JJ", "TO", "NN", "NNS", ".", "NNP", "NNP", "VBD", "NN", "IN", "JJ", "NNS", "IN", "DT", "CD", "NN", "-NONE-", "TO", "VB", "NNS", "CC", "VBZ", "VBN", "IN", "JJ", "NNS", "IN", "DT", "NNP", "CD", "NN", ".", "``", "PRP$", "NNS", "VBP", "RB", "JJ", "NNS", ",", "''", "PRP", "VBZ", "-NONE-", ".", "``", "IN", "DT", "NN", "VBZ", "IN", ",", "PRP", "VBP", "-NONE-", "PRP", "VBZ", "NN", "NNS", "-NONE-", "PRP", "VBP", "VBG", "-NONE-", ".", "IN", "DT", "JJ", "NN", ",", "IN", "PRP", "VBZ", "NN", "NN", "RB", ",", "PRP", "RB", "VBP", ".", "PRP", "VBP", "RB", "VB", "-NONE-", "TO", "VB", "PRP", "RB", "JJ", "IN", "DT", "NNS", ".", "NNP", "POS", "NNP", "NNP", ",", "DT", "NN", "IN", "NNS", ",", "NNS", "CC", "JJ", "NNS", ",", "VBD", "-NONE-", "PRP", "MD", "VB", "IN", "DT", "JJ", "NN", "VBN", "-NONE-", "IN", "DT", "NNP", "NN", ",", "WDT", "-NONE-", "VBZ", "NNP", "POS", ".", "IN", "NNS", "IN", "DT", "NN", ",", "NNS", "JJ", "IN", "DT", "NNPS", "MD", "VB", "$", "CD", "-NONE-", "DT", "NN", "IN", "NN", ",", "WDT", "-NONE-", "VBZ", "VBN", "-NONE-", "IN", "NNP", ".", "DT", "NNP", "NN", "VBD", "IN", "NNS", "IN", "JJR", "IN", "DT", "NN", "IN", "DT", "NN", "IN", "DT", "NN", "VBP", "VBN", "DT", "NN", "IN", "VBN", "NN", ".", "NNS", "IN", "NNP", "NNP", "CC", "NNP", "NNP", "POS", "NNP", "NNPS", "VBD", "-NONE-", "PRP", "VBD", "DT", "JJ", "JJ", "NN", "IN", "JJ", "NN", "NNS", "IN", "DT", "NN", "IN", "CD", ",", "-NONE-", "VBG", "DT", "NNS", "JJR", "TO", "JJ", "NN", ".", "DT", "NNS", "VBD", "-NONE-", "PRP", "VBD", "JJ", "NNS", "IN", "DT", "JJ", "NNS", "IN", "DT", "NNS", "-NONE-", "TO", "VB", "DT", "NN", "IN", "NN", "IN", "JJ", "NNS", "MD", "VB", "-NONE-", "TO", "CD", "NNS", "IN", "JJ", "NN", "IN", "DT", "RB", "JJ", "JJ", "NN", ".", "DT", "NNS", "VBD", "-NONE-", "PRP", "VBD", "DT", "NN", "IN", "JJ", "NNS", "VBN", "-NONE-", "TO", "NN", "NN", ",", "CC", "CC", "CD", "NNS", "NN", ".", "PRP$", "NN", "VBZ", "IN", "NN", "POS", "NN", "IN", "DT", "NN", "NNP", ".", "DT", "NN", "VBZ", "DT", "JJ", "NN", "IN", "NN", "IN", "``", "NN", "''", "NNS", ",", "WDT", "-NONE-", "VBP", "VBN", "-NONE-", "IN", "NN", "IN", "NNS", "IN", "NNS", ",", "NNS", ",", "NNS", "CC", "JJ", "NNS", ".", "NNS", "VBD", "VBN", "RB", "JJR", "JJ", "NN", "IN", "JJ", "NNS", "IN", "DT", "JJ", "NNS", ",", "CC", "VBP", "VBN", "NNS", "-NONE-", "VBG", "DT", "NN", "IN", "NN", "IN", "NN", "NNS", "MD", "VB", "-NONE-", ".", "NNS", "VBP", "NN", "IN", "NN", "WRB", "-NONE-", "VBN", "-NONE-", "-NONE-", ".", "DT", "NN", "IN", "JJ", "NNS", "VBN", "-NONE-", "IN", "DT", "JJ", "CD", "NNS", "VBP", "JJ", "NNS", "JJ", "IN", "JJR", "JJ", "NN", ":", "CC", "RB", "IN", "PRP$", "JJ", "NN", "MD", "VB", "VBN", "-NONE-", ".", "DT", "NNP", "NN", "VBZ", "WRB", "CD", "NN", "IN", "DT", "JJ", "NN", "MD", "VB", "VBN", "-NONE-", "-NONE-", ".", "CC", "``", "PRP", "MD", "RB", "VB", "TO", "JJ", "NN", "''", "IN", "JJ", "NNS", ",", "VBD", "-NONE-", "-NONE-", "NNP", "NNP", "NNP", "NNP", ",", "CD", "IN", "DT", "NNP", "NNS", ".", "PRP", "VBD", "IN", "DT", "JJ", "NN", "IN", "JJ", "NNS", "IN", "NNS", "VBZ", "RB", "RB", "IN", "JJS", "JJ", "NNS", "IN", "IN", "JJ", "JJ", "NNS", "IN", "NNS", ".", "JJ", "JJ", "NNS", "MD", "RB", "VB", "VBN", "-NONE-", "IN", "JJ", "NNS", ".", "NNP", "NNP", "NNP", "VBD", "-NONE-", "DT", "NNP", "NN", "VBD", "DT", "VBN", "NN", "NNS", "IN", "-NONE-", "VBG", "NN", "NNS", "IN", "NNS", ",", "DT", "NN", "WDT", "-NONE-", "VBZ", "DT", "NN", "IN", "DT", "NNS", "CC", "MD", "RB", "VB", "JJ", "IN", "JJ", "JJ", "NN", ".", "RB", ",", "NNS", "VBD", "DT", "JJ", "NN", "IN", "NN", "IN", "DT", "NN", ",", "IN", "PRP", "VBZ", "WRB", "-NONE-", "TO", "VB", "DT", "``", "NN", "NN", "''", "NN", "IN", "-NONE-", "RBR", "DT", "NN", "VBD", "RB", "VBN", "IN", "-NONE-", "VBG", "JJ", "NNS", "POS", "NN", "-NONE-", ".", "DT", "NN", "VBZ", "DT", "NN", "IN", "JJ", "JJ", "NNS", "IN", "NN", "NNS", ",", "-NONE-", "VBG", "PRP$", "JJ", "NN", ".", "NNP", "NNP", "NNP", "VBD", "-NONE-", "DT", "NN", "VBZ", "-NONE-", "PRP$", "NN", "VBD", "-NONE-", "RB", "VBZ", "DT", "JJ", "NNS", "IN", "NN", ",", "-NONE-", "VBG", "PRP", "IN", "-NONE-", "VBG", "JJ", "NN", ".", "NNP", "NNP", "NNP", "VBD", "IN", "NNS", "VBP", "VBG", "-NONE-", "TO", "VB", "RB", "WDT", "NN", "NNS", "-NONE-", "VBD", "DT", "NN", ".", "-NONE-", "VBG", "DT", "MD", "VB", "PRP", "TO", "VB", "JJR", "NNS", "-NONE-", "-NONE-", "TO", "VB", "DT", "VBN", "NN", "NNS", "-NONE-", ".", "DT", "NNP", "NN", "RB", "VBZ", "VBG", "-NONE-", "TO", "VB", "PRP$", "JJS", "NN", "NN", "IN", "``", "JJ", "NN", ",", "''", "DT", "NN", "VBN", "-NONE-", "JJR", "IN", "NNP", "NNPS", ".", "DT", "VBN", "NNS", "MD", "RB", "VB", "DT", "JJ", "NN", "IN", "JJ", "NNS", ".", "NNP", "NNP", "NNP", "NNP", ",", "DT", "NN", "IN", "NNP", "JJ", "CD", "NNP", "NNP", ",", "VBD", "VBN", "-NONE-", "NN", "-NONE-", "CC", "NN", "JJ", "NN", "-NONE-", "IN", "NNP", "NNP", "NNP", "CC", "PRP$", "JJ", "VBG", "NN", ",", "NNP", "NNP", "NNP", ".", "DT", "NN", "VBZ", "NN", "NNP", "CD", ".", "PRP", "VBZ", "NNP", "NNP", "NNP", ",", "WP", "-NONE-", "VBD", "RP", "IN", "NN", ",", "NN", "CC", "NN", "NN", "IN", "NNP", "IN", "NN", "NNS", ".", "NNP", "NNP", "NNP", "VBD", "NNP", "NNP", "IN", "NN", ".", "RB", ",", "NNP", "VBD", "DT", "NN", "JJ", "NN", "IN", "$", "CD", "CD", "-NONE-", ",", "CC", "CD", "NNS", "DT", "NN", ",", "CC", "JJ", "NN", "IN", "$", "CD", "CD", "-NONE-", ",", "CC", "$", "CD", "-NONE-", "DT", "NN", ",", "DT", "NN", "JJR", ".", "DT", "JJS", "NNS", "VBP", "DT", "JJ", "NNS", ",", "WDT", "-NONE-", "VBD", "DT", "JJ", "NN", "IN", "$", "CD", "CD", "-NONE-", ".", "DT", "VBD", "NNS", "VBN", "-NONE-", "IN", "DT", "JJ", "NNP", "NNP", "NNP", "CC", "NNP", "NNP", "NN", ",", "WDT", "-NONE-", "VBD", "VBN", "-NONE-", "IN", "NNP", "CD", ",", "CD", ".", "IN", "NN", ",", "VBG", "NNS", "VBD", "VBN", "-NONE-", "IN", "DT", "NN", "IN", "NN", "CC", "JJ", "NN", "NN", "NNS", ".", "IN", "NNP", "NNP", "NNP", "JJ", "NN", ",", "NNP", "NNS", "VBD", "NN", "IN", "$", "CD", "-NONE-", ",", "RB", "CD", "NNS", ".", "DT", "VBG", "VBD", "IN", "NN", "POS", "NNS", "CC", "NNS", "IN", "DT", "NNP", "CC", "NNP", "NN", "NNS", ",", "IN", "NNS", "CC", "NN", "NN", ",", "IN", "-NONE-", "VBN", "-NONE-", "IN", "NNP", "NNP", "NNP", "NNPS", "NNP", ":", "NNP", "NNP", "NNPS", "NNP", ":", "$", "CD", "CD", "-NONE-", "IN", "CD", "CD", "NN", "NNS", "JJ", "NNP", "CD", ",", "CD", ",", "VBN", "-NONE-", "IN", "CD", "-NONE-", "TO", "VB", "CD", "NN", ".", "DT", "JJ", "JJ", "NN", "VBD", "VBN", "-NONE-", "IN", "DT", "NN", "IN", "CD", "NN", "NNS", "IN", "DT", "NNP", "POS", "CD", "CD", "NN", "NN", "JJ", "NN", ".", "-NONE-", "VBN", "-NONE-", "JJ", "IN", "DT", "NNP", "POS", "NNPS", "NNP", "NNP", "CC", "NNP", "CC", "NNP", "POS", "NNP", ",", "DT", "NN", "MD", "VB", "VBN", "-NONE-", "IN", "NNS", "VBN", "-NONE-", "IN", "NNP", "NNPS", "NNP", ".", "DT", "NN", "IN", "DT", "NN", "VBD", "VBN", "-NONE-", "IN", "DT", "RB", "VBN", "$", "CD", "CD", "-NONE-", ".", "NNP", ":", "$", "CD", "CD", "-NONE-", "IN", "JJ", "NN", "JJ", "NN", "NN", "NNS", "JJ", "CD", "CC", "CD", ",", "RB", "VBN", "-NONE-", "IN", "DT", "NNP", "NNPS", "NNP", "NN", "-NONE-", "TO", "VB", "IN", "CD", "NN", "IN", "CD", "TO", "CD", "NN", "IN", "CD", ".", "EX", "VBZ", "$", "CD", "CD", "-NONE-", "IN", "CD", "NN", "NN", "NNS", "JJ", "CD", "VBN", "-NONE-", "IN", "CD", "CD", "-NONE-", "TO", "VB", "CD", "NN", ".", "JJ", "NNS", "VBP", "VBN", "-NONE-", "-NONE-", "TO", "VB", "IN", "CD", "NN", "IN", "CD", "TO", "CD", "NN", "IN", "CD", ".", "DT", "NNS", "VBP", "VBN", "CC", "JJ", ".", "NNP", "NNP", "NNP", "NNP", "NNP", ",", "NNP", ":", "$", "CD", "CD", "-NONE-", "IN", "NN", "NN", "NNS", ",", "CD", "NNP", "NNP", ",", "JJ", "CD", ",", "CD", "CC", "CD", ",", "RB", "VBN", "-NONE-", "IN", "DT", "NNP", "NNP", "CC", "NNP", "NNPS", "NNP", "NN", "-NONE-", "TO", "VB", "IN", "CD", "NN", "IN", "CD", "TO", "CD", "NN", "IN", "CD", ".", "DT", "CD", "CD", "NN", "NN", "NNS", "JJ", "CD", "VBP", "VBN", "-NONE-", "IN", "CD", "CD", "-NONE-", "TO", "VB", "CD", "NN", ",", "CC", "CD", "CD", "NN", "NN", "NNS", "JJ", "CD", "VBP", "VBN", "-NONE-", "IN", "CD", "-NONE-", "TO", "VB", "CD", "NN", ".", "JJ", "NNS", "VBP", "VBN", "-NONE-", "IN", "NN", "-NONE-", "TO", "VB", "IN", "CD", "NN", "IN", "CD", "TO", "CD", "NN", "IN", "CD", ".", "DT", "NNS", "VBP", "VBN", "-NONE-", "JJ", "IN", "NNP", ",", "VBG", "TO", "DT", "NN", "NN", ".", "NNP", "NNP", "NNP", "NNP", ",", "NNP", "IN", "NNP", "CC", "NNP", "NNP", ":", "$", "CD", "CD", "-NONE-", "IN", "NN", "NN", "NNS", ",", "CD", "JJ", "CC", "JJ", "NN", ",", "RB", "VBN", "-NONE-", "IN", "DT", "NNP", "NNP", "NNP", "NNPS", "NN", "-NONE-", "TO", "VB", "IN", "CD", "NN", "IN", "CD", "IN", "JJ", "NN", "NNS", "TO", "CD", "NN", "IN", "CD", "IN", "JJ", "NN", "NNS", ".", "EX", "VBZ", "$", "CD", "CD", "-NONE-", "IN", "JJ", "NN", "NNS", ",", "DT", "NN", "IN", "WDT", "-NONE-", "VBZ", "RB", "JJ", "TO", "DT", "JJ", "NN", "NN", "NN", ".", "PRP", "VBP", "CD", ",", "CD", "CC", "CD", ".", "JJ", "NN", "NN", "NNS", "VBP", "VBN", "-NONE-", "IN", "NN", "-NONE-", "TO", "VB", "IN", "CD", "NN", "IN", "CD", "TO", "CD", "NN", "IN", "CD", ".", "DT", "CD", "NN", "NN", "NNS", "JJ", "CD", "VBP", "VBN", "-NONE-", "-NONE-", "TO", "VB", "CD", "NN", ",", "CC", "CD", "NN", "NN", "NNS", "JJ", "CD", "VBP", "VBN", "-NONE-", "-NONE-", "TO", "VB", "CD", "NN", ".", "EX", "VBZ", "$", "CD", "CD", "-NONE-", "IN", "JJ", "NN", "NNS", ",", "WDT", "-NONE-", "VBP", "JJ", "TO", "DT", "JJ", "NN", "NN", "NN", ".", "PRP", "VBP", "IN", "CD", ",", "CD", "CC", "CD", ".", "NNS", "JJ", "IN", "CD", "VBP", "DT", "CD", "CD", "NN", "NN", "CC", "VBP", "VBN", "-NONE-", "IN", "NN", ".", "DT", "CD", "CD", "NN", "NNS", "JJ", "CD", "VBP", "VBN", "-NONE-", "-NONE-", "TO", "VB", "CD", "NN", ",", "CC", "CD", "CD", "NN", "NNS", "JJ", "CD", "VBP", "VBN", "-NONE-", "IN", "CD", "CD", "-NONE-", "TO", "VB", "CD", "NN", ".", "DT", "NNS", "VBP", "DT", "JJ", "NN", "IN", "NNP", "POS", ".", "NNP", "NNP", ".", "-LRB-", "NNP", "-RRB-", ":", "$", "CD", "CD", "-NONE-", "IN", "NNS", "JJ", "NNP", "CD", ",", "CD", ",", "IN", "JJ", "NNS", ",", "VBG", "DT", "CD", "CD", "NN", "NN", "IN", "NN", ",", "IN", "NNP", "NNP", "NNP", ".", "DT", "$", "CD", "-NONE-", "NN", "VBZ", "CD", "NN", ",", "JJ", "IN", "NNP", "CD", ",", "CD", ",", "IN", "NNP", "CD", ",", "CD", ",", "-NONE-", "-NONE-", "TO", "VB", "NNS", "IN", "DT", "VBN", "NN", "IN", "CD", "CD", "NN", "TO", "DT", "JJ", "NN", "WRB", "NNS", "VBP", "VBN", "-NONE-", "NNP", "-NONE-", "-NONE-", ".", "NNS", "CD", "CD", ".", "NNP", "NNP", "NNP", "NNP", "-LRB-", "NNP", "-RRB-", ":", "CD", "CD", "NN", "IN", "CD", "NN", "NNS", "JJ", "NNP", "CD", ",", "CD", ",", "VBN", "-NONE-", "IN", "CD", "CD", "-NONE-", "TO", "VB", "CD", "NN", "RBR", "JJ", "NNS", ",", "IN", "NNP", "NNP", "NNP", ".", "-NONE-", "VBN", "-NONE-", "IN", "NNP", "NNP", ".", "NNS", "CD", "CD", ".", "NNP", "CC", "NNP", ".", "-LRB-", "NNP", "-RRB-", ":", "CD", "CD", "JJ", "NNS", "IN", "RB", "VBN", "JJ", "NNS", "JJ", "NNP", "CD", ",", "CD", ",", "IN", "DT", "VBN", "CD", "NN", "NN", "IN", "NN", "IN", "NNP", "NNP", "-LRB-", "NNP", "-RRB-", ".", "VB", "NN", "NNP", "CD", ",", "CD", ",", "IN", "DT", "VBN", "CD", "CD", "-NONE-", "TO", "VB", "CD", "NN", ".", "DT", "CD", "JJ", "NN", "NN", "VBZ", "JJ", "IN", "NNP", "CD", ",", "CD", ",", "TO", "NNP", "CD", ",", "CD", "IN", "DT", "CD", "NN", "NN", "IN", "DT", "JJ", "NN", "NN", "NNP", ",", "WRB", "NNS", "VBP", "VBN", "-NONE-", "TO", "VB", "VBN", "-NONE-", "-NONE-", ".", "NNS", "CD", "CD", ".", "NNP", "NNP", "NNP", ".", "-LRB-", "NNP", "-RRB-", ":", "CD", "CD", "JJ", "NNS", "IN", "RB", "VBN", "JJ", "NNS", "JJ", "NNP", "CD", ",", "CD", ",", "IN", "DT", "VBN", "CD", "NN", "NN", "IN", "NN", "IN", "NNP", "NNP", "IN", "NNP", ".", "VB", "NN", "IN", "NNP", "CD", ",", "CD", ",", "IN", "DT", "VBN", "CD", "CD", "-NONE-", "TO", "VB", "CD", "NN", ".", "DT", "CD", "JJ", "NN", "NN", "VBZ", "JJ", "IN", "NNP", "CD", ",", "CD", ",", "TO", "NNP", "CD", ",", "CD", ",", "IN", "DT", "CD", "NN", "NN", "IN", "DT", "JJ", "NN", "NN", "NNP", ",", "WRB", "NNS", "VBP", "VBN", "-NONE-", "TO", "VB", "VBN", "-NONE-", "-NONE-", ".", "NNS", "CD", "CD", ".", "NNP", "NNP", "NNP", ".", "-LRB-", "NNP", "-RRB-", ":", "CD", "CD", "JJ", "NNS", "IN", "CD", "CD", "NN", "RB", "VBN", "NNS", "JJ", "NNP", "CD", ",", "CD", ",", "VBN", "-NONE-", "IN", "CD", "CD", "IN", "NNP", "NNP", "NNP", "-LRB-", "NNP", "-RRB-", ".", "NN", "IN", "NNP", "NNP", "NNP", "NNP", ".", "NNS", "CD", "CD", ".", "IN", "PRP$", "NN", "VBD", "DT", "NNP", "NNP", ",", "NNP", "NNP", "NNPS", "NN", "NNP", "NNP", "VBZ", "-NONE-", "TO", "VB", "DT", "JJ", "NN", "IN", "PRP", ".", "PRP", "VBZ", "DT", "JJ", "NN", "IN", "DT", "NN", "IN", "JJ", "NN", "POS", "NN", "-NONE-", "-NONE-", "TO", "VB", "-NONE-", "VB", "DT", "NN", "IN", "NNP", "NNP", "-NONE-", ".", "JJ", "NN", ",", "IN", "PRP", "VBZ", "VBG", "NNP", "NNP", "NNS", "-NONE-", "TO", "VB", "IN", "TO", "$", "CD", "CD", "-NONE-", "IN", "DT", "JJ", "NN", ".", "IN", "NNP", "NNP", "VBZ", "RP", "IN", "DT", "NNP", "NNP", "CD", ",", "NNS", "VBP", "-NONE-", "DT", "JJ", "NN", "-NONE-", "DT", "NN", "MD", "VB", "-NONE-", "VBZ", "DT", "JJ", "JJ", "NN", ".", "DT", "NN", "NN", "VBZ", "VBG", "DT", "NN", ".", "PRP", "VBZ", "VBN", "-NONE-", "IN", "DT", "VBG", "NN", "IN", "JJ", "NNS", ".", "NN", "IN", "NN", "IN", "DT", "NN", "POS", "CD", "JJS", "NNS", "-NONE-", "VBP", "VBG", "IN", "JJ", "NNS", ",", "VBG", "IN", "NNP", "TO", "NNP", "NNP", "CC", "NNP", "NNP", ".", "JJS", "NNS", "VBP", "-NONE-", "DT", "JJ", "NNS", "NNS", "MD", "VB", "NNS", "IN", "PRP$", "NN", ".", "NNP", "NNP", "NN", "NNP", "NNP", "VBZ", "IN", "DT", ".", "PRP", "VBZ", "VBN", "IN", "CD", "NN", "CC", "NN", "NNS", "CC", "VBN", "IN", "RB", "CD", ":", "JJ", "NNP", "NNP", ":", "VBD", "JJR", "NN", "-NONE-", "IN", "DT", "NN", "IN", "PRP", "VBD", "IN", ".", "NNS", "VBP", "-NONE-", "TO", "VB", "VBG", "NN", "IN", "DT", "NN", ",", "RB", "VB", "JJR", "IN", "PRP", ".", "NNS", "RB", "VBP", "WRB", "PRP", "VBP", "VBN", "-NONE-", "DT", "NN", "-NONE-", "TO", "VB", "IN", "PRP", "VBP", "-NONE-", "TO", "VB", "PRP$", "JJ", "NN", "NNS", "IN", "DT", "JJ", "NN", "-NONE-", ".", "NNP", "NNP", "NNS", "VBD", "DT", "JJ", "NN", "CD", "NNS", "IN", ".", "JJ", "NN", ",", "NNP", "NNS", "VBD", "NNS", "RP", "IN", "DT", "$", "CD", "CD", "-NONE-", "NN", "NN", "CC", "NN", "NN", ".", "PRP$", "NNS", "VBD", "DT", "JJ", "NN", "IN", "PRP$", "NN", ":", "DT", "JJ", "NN", ",", "DT", "NNP", "IN", "NNP", ",", "DT", "JJ", "NNS", ":", "CC", "VBD", "$", "CD", "-NONE-", "IN", "NN", ".", "CC", "NNS", "VBD", "IN", "IN", "DT", "NN", "VBD", "PDT", "DT", "JJ", "NN", "NN", "MD", "VB", "PRP", "PRP", ",", "CC", "VBD", "PRP", "CD", "NN", "TO", "CD", "NN", "-NONE-", ".", "IN", "NNP", "NNP", ",", "PRP$", "NNS", "VBP", "-NONE-", "DT", "NN", "VBZ", "IN", "JJS", "VBG", "RB", "IN", "DT", "NNS", ".", "NNP", "NNP", ",", "DT", "JJ", "NNP", "NNP", "NN", "WP", "-NONE-", "VBD", "NNP", "NNP", "IN", "DT", "NNPS", "IN", "DT", "CD", ",", "MD", "RB", "VB", "DT", "JJ", "NN", ".", "PRP", "VBZ", "-NONE-", "PRP", "VBD", "NNP", "VBN", "IN", "DT", "NNPS", "VBD", "-NONE-", "PRP", "VBD", "CD", "NN", "NNS", ".", "IN", "DT", "JJ", "NN", "MD", "VB", "RB", "CD", "NNS", ",", "NNP", "NNP", "VBZ", "-NONE-", "NNS", "VBP", "VBG", "DT", "JJ", "``", "NNS", "''", "IN", "PRP$", "JJ", "IN", "DT", "NNS", ".", "NN", "NNS", "VBP", "IN", "IN", "JJ", "NN", "PRP", "MD", "RB", "VB", "VBN", "-NONE-", ".", "NNP", "NNPS", "NN", "NNP", "NNP", "VBZ", ",", "CC", "PRP", "MD", "VB", "PRP", ".", "JJ", "NNS", "IN", "PRP", "VBD", "RP", "-NONE-", "VBG", "-NONE-", "TO", "VB", "NNP", "-NONE-", "TO", "VB", "PRP$", "JJ", "NNP", "NNP", ",", "CC", "RB", "VBD", "PRP$", "JJ", "$", "CD", "CD", "-NONE-", "NN", "IN", "JJ", "NNS", ".", "PRP", "VBD", "RB", "VB", "WRB", "DT", "NNS", "MD", "VB", "-NONE-", "VB", "NN", "-NONE-", "PRP", "MD", "RB", "VB", "-NONE-", "-NONE-", "TO", "VB", "DT", "JJ", "NN", ".", "``", "DT", "NN", "VBZ", "IN", "NN", "-NONE-", "NN", "MD", "VB", "-NONE-", ",", "PRP", "MD", "VB", "-NONE-", "RBR", ",", "''", "NNP", "NNP", "VBZ", "-NONE-", ".", "CC", "TO", "NNP", "NNP", ",", "DT", "JJ", "NNP", "NNP", "NN", "WP", "-NONE-", "VBD", "-NONE-", "VB", "DT", "NN", "POS", "JJ", ",", "JJ", "NNP", ",", "NNS", "IN", "WP", "-NONE-", "VBZ", "CC", "DT", "NN", "NN", "VBP", "IN", "JJ", "NN", ".", "``", "DT", "NNP", "VBZ", "DT", "NN", "IN", "NN", ",", "DT", "NN", "IN", "NN", ",", "''", "PRP", "VBZ", "VBN", "-NONE-", ".", "``", "PRP", "VBZ", "DT", "JJ", "NN", "IN", "PRP", "-NONE-", "WDT", "-NONE-", "VBZ", "JJ", ",", "RB", "WRB", "RB", "IN", "PRP", "-NONE-", "VBZ", "VBN", "-NONE-", "CC", "PRP$", "NN", ".", "''", "DT", "JJ", "NNP", "MD", "RB", "VB", "VBN", "PRP$", "NNS", "RB", "RBR", ".", "CC", "NN", "VBZ", "VBN", "RB", "IN", "RB", ".", "NN", "NNS", "VBP", "-NONE-", "TO", "VB", ",", "JJS", "IN", "DT", "NN", ",", "IN", "IN", "PRP", "VBP", "-NONE-", "TO", "VB", "DT", "VBG", "NNS", "IN", "PRP$", "JJ", "JJ", "NNS", ",", "CC", "VB", "JJ", "NN", "VB", "DT", "NNS", "IN", "JJ", "NNS", ".", "NNP", "NNP", "NNP", "VBD", "IN", "JJ", "NN", "IN", "DT", "CD", "NNS", "VBD", "NNP", "CD", "VBD", "CD", "NN", "TO", "#", "CD", "CD", "-NONE-", "-LRB-", "$", "CD", "CD", "-NONE-", "-RRB-", ",", "CC", "CD", "NN", "DT", "NN", ",", "IN", "#", "CD", "CD", "-NONE-", "-LRB-", "$", "CD", "CD", "-NONE-", "-RRB-", ",", "CC", "CD", "NN", "DT", "NN", ".", "DT", "JJ", "NN", ",", "NN", "CC", "NN", "NN", ",", "VBD", "-NONE-", "NN", "IN", "VBG", "NNS", "VBD", "CD", "NN", "TO", "#", "CD", "CD", "-NONE-", "IN", "#", "CD", "CD", "-NONE-", ".", "IN", "EX", "VBD", "DT", "JJ", "NNS", "CC", "NNS", "IN", "DT", "JJS", "NN", ",", "EX", "VBD", "DT", "JJ", "NN", "IN", "#", "CD", "CD", "-NONE-", "IN", "DT", "CD", "NN", ".", "CC", "IN", "EX", "VBD", "DT", "NN", "-NONE-", "DT", "NN", "IN", "VBN", "NNS", ",", "JJ", "NN", "PRP", "VBD", "#", "CD", "CD", "-NONE-", ",", "IN", "NN", ".", "NN", "NN", "VBD", "CD", "NN", "TO", "#", "CD", "CD", "-NONE-", "IN", "#", "CD", "CD", "-NONE-", "CC", "VBD", "IN", "NNS", "POS", "NNS", "IN", "#", "CD", "CD", "TO", "#", "CD", "CD", "-NONE-", ",", "CC", "NNS", "VBD", "CD", "NN", "TO", "CD", "NN", "IN", "JJ", "NN", "NN", "IN", "NNP", ".", "NNP", "VBZ", "VBG", "DT", "JJ", "NN", "IN", "CD", "NN", ",", "RB", "CD", "NN", "IN", "CD", "NN", "DT", "NN", "JJR", ".", "NNS", "VBD", "CD", "NN", "TO", "#", "CD", "CD", "-NONE-", ".", "NNS", "VBD", "VBN", "-NONE-", "IN", "NN", "IN", "NNS", "IN", "PRP$", "NN", ",", "NNP", "VBD", "-NONE-", "-NONE-", ".", "NNP", "NNP", "POS", "JJ", "NNS", "NNS", "VBP", "DT", "NN", "IN", "-NONE-", "VBG", "PRP$", "NN", "NNS", "VBN", ".", "DT", "NN", ":", "NNS", "IN", "DT", "NNS", "POS", "JJ", "``", "NN", "NN", "''", "NNS", "VBP", "VBG", "IN", "NN", "IN", "DT", "NN", "POS", "JJ", "NN", "VBZ", ".", "DT", "NN", "IN", "NN", "VBN", "-NONE-", "IN", "NNP", "NNP", "NNP", "NNP", ",", "NN", "IN", "NNP", "NNP", "NNP", ",", "IN", "NNP", "POS", "NNPS", "NNP", "NNP", ",", "-NONE-", "VBN", "-NONE-", "IN", "DT", "NNP", "POS", "NN", "IN", "NNP", "NNP", "NNP", "NNP", "NNP", "VBZ", "IN", "NN", "IN", "DT", "JJ", "NN", ",", "VBD", "NNS", "IN", "DT", "NN", "NN", "DT", "NN", ".", "IN", "DT", "NNS", "VBD", "-NONE-", "DT", "NN", "IN", "DT", "IN", "NNP", "NNP", "POS", "JJS", "NNS", "VBP", "VBG", "-NONE-", "TO", "VB", "DT", "JJ", "NN", "NN", "VBN", "-NONE-", "TO", "VB", "PRP$", "NNS", "RB", ".", "NNS", "NNS", "VBP", "IN", "DT", "JJS", "NNS", "IN", "JJ", "NN", ",", "CC", "JJ", "JJ", "NNS", ",", "WDT", "PRP", "VBP", "-NONE-", "-NONE-", "TO", "VB", "PRP$", "JJ", "NNS", ".", "DT", "JJS", "NNS", "RB", "VB", "DT", "JJS", "NNS", "IN", "PRP$", "JJ", "NN", ".", "CC", "NNP", "VBZ", "VBN", "IN", "NNP", "POS", "JJ", "NN", "NN", "MD", "VB", "VBN", "-NONE-", "RB", ",", "DT", "NN", "WDT", "-NONE-", "MD", "VB", "NNP", "POS", "NN", "NNS", "IN", "PRP$", "NNS", "CC", "VB", "NN", "RB", "IN", "JJ", "NNS", ".", "NNP", "VBZ", "JJ", "IN", "NNP", "NNP", "NNP", ".", "``", "RB", "IN", "DT", "CD", "NN", "NN", "VBD", "DT", "NNP", "NNS", "NN", ",", "RB", "RB", "MD", "-NONE-", "DT", "RBR", "JJ", "NN", "IN", "DT", "CD", ",", "''", "VBZ", "-NONE-", "NNP", "NNP", "NNP", ",", "DT", "NNP", "POS", "NN", "NN", ".", "``", "DT", "JJ", "NN", "IN", "DT", "NN", "VBZ", "JJ", ".", "''", "NNP", "CC", "NNP", "POS", "NNP", "VBZ", "-NONE-", "NNP", "NNP", ",", "NNP", "CC", "NNP", "NNP", "NNP", "NNP", ",", "IN", "JJ", ",", "VBP", "JJ", "-NONE-", "TO", "VB", "NN", "-NONE-", "VBG", "RP", "PRP$", "NN", "NN", "IN", "NNS", "RB", ".", "WP", "-NONE-", "VBZ", "NN", "NNS", "DT", "JJS", "VBZ", "IN", "NNP", "NNP", "NNS", "VBP", "VBG", "JJ", "NNS", "IN", "PRP$", "JJ", "NN", "IN", "JJ", "NN", "CC", "NN", "NN", "NNS", ".", "DT", "VBZ", "DT", "NN", "IN", "PRP$", "JJ", "NN", "IN", "-NONE-", "VBG", "RB", "DT", "VBG", "NNS", "TO", "NNS", ".", "IN", "JJ", "NNS", "NNS", "VBP", "VBN", "-NONE-", "TO", "VB", "VBN", "-NONE-", "RB", ",", "NNP", "NNP", "POS", "JJ", "NN", "IN", "JJ", "NNS", "CC", "NN", "NNS", "VBZ", "VBG", "IN", "JJ", "VBG", "NNS", "WDT", "-NONE-", "VBP", "RP", "IN", "NNS", "CC", "NNS", ".", "``", "DT", "JJ", "NN", "IN", "DT", "NN", "NN", "NN", "VBZ", "IN", "NNS", "MD", "VB", "JJ", "NNS", "IN", "PRP", "VBD", "CC", "MD", "VB", "JJ", "NNS", "''", "IN", "-NONE-", "VBG", "PRP$", "NN", "RB", ",", "VBZ", "-NONE-", "-NONE-", "NNP", "NNP", ",", "DT", "NN", "NN", "IN", "NNP", ",", "WDT", "-NONE-", "VBD", "DT", "VBG", "NN", "IN", "DT", "NN", "IN", "NNP", "WRB", "PRP", "VBD", "NNP", "NNP", "NNP", "-NONE-", ".", "``", "NNP", "NNP", "VBZ", "VBG", "DT", "NN", "NN", ",", "''", "VBZ", "-NONE-", "NNP", "NNP", "IN", "NNP", "POS", ".", "NN", "NN", ",", "WRB", "NNS", "VBP", "PRP$", "JJ", "NN", "-NONE-", ",", "``", "VBZ", "VBG", "JJR", ",", "CC", "EX", "VBZ", "JJR", "IN", "PRP", "-NONE-", "-NONE-", "TO", "VB", "IN", ".", "''", "IN", "NN", ",", "PRP", "VBZ", "-NONE-", "-NONE-", ",", "DT", "NN", "NN", "VBZ", "IN", "NN", "``", "IN", "IN", "DT", "NN", "NN", "NN", ",", "''", "-NONE-", "VBG", "IN", "NNS", "VBP", "JJ", "-NONE-", "TO", "VB", "IN", "DT", "NN", "IN", "NN", "NNS", "VBZ", ".", "IN", "DT", "JJ", "NN", ",", "DT", "JJ", "NN", "IN", "NNS", "VBZ", "DT", "NN", "IN", "DT", "NN", "VBN", "-NONE-", "RB", "IN", "NN", ",", "IN", "DT", "NN", "IN", "DT", "NN", "MD", "VB", "VBN", "-NONE-", "IN", "NNS", "VBN", "-NONE-", "IN", "DT", "VBN", "NN", "POS", "NNS", "CC", "NNS", "IN", "PRP$", "NNS", ".", "IN", "DT", "JJ", "NN", ",", "NNP", "POS", "VBD", "-NONE-", "PRP", "``", "VBZ", "JJ", "NN", "TO", "VB", "IN", "DT", "NN", "IN", "DT", "NN", "IN", "DT", "NNS", "NN", ",", "WDT", "-NONE-", ",", "VBN", "IN", "NN", ",", "MD", "VB", "JJ", "NNS", "IN", "NN", ".", "''", "PRP", "VBD", "IN", "DT", "``", "NN", "-NONE-", "IN", "NNS", "-NONE-", "TO", "VB", "DT", "NN", "NN", "IN", "-NONE-", "VBG", "JJR", "NNS", "VBZ", "DT", "JJ", "NN", "NN", ".", "''", "DT", "NNP", "POS", "CC", "NNP", "VBD", "NNP", "NNP", "POS", "NN", "IN", "JJ", "NNS", "IN", "NN", "NN", ",", "WDT", "-NONE-", "VBZ", "VBN", "JJ", "IN", "DT", "JJ", "NN", "IN", "DT", "RB", "VBN", "NN", "POS", "NN", ".", "DT", "JJ", "NN", "NN", "IN", "NNP", "NNP", ",", "NNP", "NNP", "POS", "JJS", "JJ", "NN", "IN", "DT", "NN", ",", "VBZ", "VBG", "JJ", "TO", "NNP", "NNP", "IN", "PRP", "VBD", "JJR", "IN", "$", "CD", "CD", "-NONE-", "IN", "JJ", ",", "JJ", "NN", "NNS", "IN", "NNP", "NNS", ".", "IN", "NN", ",", "DT", "JJ", "NN", "IN", "NNP", "NNP", "VBD", "-NONE-", "TO", "NNP", "NNP", "NNP", ".", "VBD", "RB", "VBN", "IN", "NN", "WRB", "PRP$", "$", "CD", "CD", "-NONE-", "NN", "NN", "IN", "DT", "NN", "IN", "DT", "NN", "NN", "VBD", "VBN", "-NONE-", "-NONE-", ".", "``", "DT", "CD", "NNS", "RB", "VBP", "DT", "RB", "JJ", "NN", "IN", "NNP", "NNP", "NNP", "POS", "NN", ",", "''", "NNP", "POS", "VBD", "-NONE-", ".", "``", "JJ", "NN", "NN", "NNS", "VBP", "IN", "NN", "IN", "DT", "NN", "POS", "NN", ".", "''", "NNP", "NNP", "NNP", ",", "RB", ",", "VBZ", "IN", "DT", "NN", "IN", "PRP$", "JJS", "NN", ",", "NNP", "NNP", ",", "NNP", "POS", "JJ", "JJS", "NN", ".", "NNP", "RB", "VBZ", "VBN", "DT", "JJ", "NN", "IN", "DT", "JJ", "NN", "NN", ".", "CC", "PRP$", "NNS", "VBD", "DT", "JJ", "NN", "IN", "PRP$", "JJ", "NN", ",", "CC", "JJ", "NN", ",", "NN", "VBD", "DT", "NNS", "IN", "-NONE-", "VBG", "IN", "DT", "NN", "WDT", "-NONE-", "VBD", "DT", "NNP", "CD", "NN", "NN", "NN", ".", "IN", "NN", ",", "NNP", "POS", "VBN", "$", "CD", "CD", "-NONE-", "IN", "NN", "VBZ", "VBN", "-NONE-", ",", "VBG", "TO", "DT", "NN", "NNS", ",", "IN", "PRP", "VBZ", "$", "CD", "CD", "-NONE-", "IN", "NN", ".", "NNP", "``", "RB", "RB", "VBZ", "$", "CD", "CD", "-NONE-", "IN", "NN", ",", "''", "VBZ", "-NONE-", "NNP", "NNP", "IN", "NNP", ".", "DT", "NNP", "NN", "VBD", "-NONE-", "DT", "NN", "VBZ", "RB", "VBN", ".", "``", "DT", "NN", "IN", ",", "NNP", "POS", "RB", "VBD", "NNP", "IN", "NN", "IN", "JJ", "NN", ",", "''", "PRP", "VBD", "-NONE-", ".", "``", "IN", "CD", "NNS", "IN", "NNS", ",", "PRP$", "NN", "VBD", "VBN", "-NONE-", ".", "''", "NNP", ",", "RB", ",", "RB", "VBZ", "IN", "DT", "NN", "TO", "PRP$", "JJ", "NNP", "NNP", "NNS", "IN", "PRP", "VBZ", "DT", "RB", "JJR", "JJ", "NN", "NN", ".", "DT", "NN", "IN", "NN", "NN", "NNS", "CC", "DT", "NN", "IN", "JJ", "NN", "NN", "NNS", "RB", "VBP", "VBN", "PRP$", "NN", "IN", "RB", "VBN", "NNP", ",", "DT", "VBG", "NN", "IN", "DT", "NN", ".", "DT", "NN", "RB", "VBZ", "VBN", "VBN", "-NONE-", "IN", "JJ", "JJ", "NNS", "IN", "DT", "NN", "VBG", "IN", "PRP$", "JJ", "NN", "TO", "CD", "NNS", "VBN", "-NONE-", "TO", "DT", "JJ", "JJ", "NN", ".", "NNP", "DT", "NN", "VBD", "PRP$", "NN", "CC", "JJ", "NN", "NN", ",", "-NONE-", "VBG", "DT", "NN", "POS", "NN", "RB", "IN", "NN", "TO", "RB", "IN", "CD", ".", "RB", ",", "NNP", "VBD", "DT", "JJ", "JJ", "NN", "-NONE-", "IN", "JJ", "NNS", "NNS", "VBG", "IN", "PRP$", "NNS", "NN", "VBZ", "VBN", "DT", "NN", "IN", "JJ", "NNS", ".", "DT", "NN", "POS", "NN", ",", "RB", ",", "VBZ", "RB", "VBN", "IN", "DT", "JJ", "NN", "IN", "IN", "DT", "NN", ",", "NNS", "IN", "DT", "NNS", "VBP", "-NONE-", "-NONE-", ".", "NNP", "VBZ", "JJ", "IN", "PRP$", "JJ", "NN", ".", "``", "PRP", "VBP", "RB", "VBN", "-NONE-", "IN", "$", "CD", "CD", "-NONE-", "IN", "NN", ",", "''", "DT", "NNP", "NN", "VBD", "-NONE-", "-NONE-", ".", "``", "CC", "IN", "DT", "JJ", "NN", "CC", "NN", "NN", "NN", ",", "DT", "NN", "IN", "PRP", "VBP", "RB", "JJR", "JJ", "TO", "DT", "NNS", "CC", "NNS", "IN", "DT", "JJ", "NN", "VBZ", "DT", "JJ", "NN", "IN", "PRP$", "NN", ".", "RB", ",", "PRP", "VBP", "RB", "VBN", "DT", "RBS", "JJ", "NN", "IN", "DT", "NNP", "IN", "-NONE-", "VBG", "NNS", ",", "WDT", "-NONE-", "VBP", "RB", "IN", "CD", "NN", "IN", "DT", "JJ", "CD", "NNS", ".", "NNP", "NNP", "NNP", ",", "DT", "NN", "IN", "DT", "NN", "WDT", "-NONE-", "VBD", "DT", "RB", "JJ", "NNP", "NNP", "CC", "NNP", "NNP", "NNS", ",", "VBD", "RB", "IN", "-NONE-", "VBG", "JJ", "NN", "NNS", ".", "RBS", "RB", ",", "NNP", "NNP", ",", "CD", "NNS", "JJ", ",", "VBZ", "VBN", "NN", "NN", "IN", "NN", "CC", "VBG", "NN", "IN", "NNP", "NNP", "NNP", ".", "CC", "PRP", "VBZ", "JJS", "VBN", "-NONE-", "IN", "DT", "NN", "NN", "IN", "DT", "NN", "IN", "DT", "NN", "NN", "NN", "WDT", "-NONE-", "VBD", "DT", "CD", "VBN", "NNS", "WDT", "-NONE-", "VBD", "JJ", "IN", "-NONE-", "VBG", "DT", "NN", "CD", "NN", "NN", "VB", "NNS", "IN", "JJ", "NNS", "CC", "IN", "-NONE-", "VBG", "DT", "NN", "POS", "NNP", "NN", "TO", "VB", "NNP", "NNPS", "NNP", "POS", "NNP", "NN", "IN", "DT", "JJ", "NN", "IN", "DT", "NNP", ".", "IN", "DT", "JJ", "NNP", "NNP", "NN", ",", "NNP", "NNP", "CC", "JJ", "NNP", "NN", "NNS", "VBD", "DT", "NN", "IN", "NNS", "NNS", ",", "NN", "NNS", ",", "NN", "NNS", "CC", "JJ", "NN", "NNS", "IN", "DT", "JJ", "NNS", "IN", "DT", "NN", "NN", ".", "DT", "NN", "POS", "NN", "VBD", "-NONE-", "TO", "VB", "NN", "CC", "VB", "NNP", "POS", "NN", "NN", "RBR", "JJ", "TO", "NN", "NNS", ".", "PRP", "VBD", "JJ", "VBN", "TO", "JJ", "NN", "NNS", ",", "VBG", "DT", "WDT", "-NONE-", "VBD", "DT", "NNP", "NNP", "CC", "NNP", "NNP", ".", "NNP", "NNP", "NNP", "NNP", "NNP", "VBD", "NN", "IN", "NNP", "NNP", "VBZ", "``", "VBN", "-NONE-", "TO", "VB", "DT", "NN", "POS", "NN", "IN", "JJ", "NNS", ".", "''", "NNP", "NNP", "VBD", "IN", "NNP", "IN", "CD", "NNS", ",", "-NONE-", "VBG", "DT", "NN", "IN", "NN", "CC", "JJ", "NNS", ".", "DT", "NNS", "TO", "JJ", "NN", "VBD", "DT", "NN", "DT", "NN", "WRB", "DT", "NNP", "NNP", "VBD", "-NONE-", "TO", "VB", "DT", "NN", "IN", "DT", "NN", "WDT", "-NONE-", "VBZ", "-NONE-", "JJ", "NNS", "MD", "VB", "NNS", "RB", "IN", "-NONE-", "VBG", "IN", "PRP", "MD", "RB", "RB", "VB", "VBN", "DT", "NN", ".", "PRP", "MD", "VB", "CC", "VB", "DT", "NN", "WDT", "-NONE-", "VBZ", "NNS", "RB", "VB", "-NONE-", "TO", "VB", "DT", "NN", "IN", "JJ", "NN", "TO", "DT", "WP", "-NONE-", "VBP", "VBN", "VBN", "-NONE-", ".", "CC", "DT", "NN", "VBZ", "DT", "JJ", "NN", "IN", "WRB", "DT", "NNS", "IN", "DT", "JJ", "JJ", "NN", "VBP", "VBN", "DT", "NNS", "IN", "DT", "JJ", "NN", "-NONE-", "DT", "NN", "VBZ", "-NONE-", "-NONE-", "-NONE-", "TO", "VB", "NN", ",", "NN", "CC", "NN", "-NONE-", "-NONE-", ".", "RB", "RB", "RB", ",", "DT", "JJ", "NN", "NN", "VBZ", "DT", "NN", "IN", "JJ", ",", "RBR", "JJ", "NNS", ".", "IN", "DT", "CD", "IN", "CD", ",", "DT", "CD", "CD", "NNS", "VBD", "DT", "JJ", "NN", "NN", "-LRB-", "NNP", "-RRB-", "-NONE-", "TO", "VB", "NNS", "CC", "NN", "NN", ".", "DT", "NN", "VBD", "VBN", "-NONE-", "IN", "DT", "NNP", "CC", "NNP", "NNP", "CC", "VBN", "-NONE-", "IN", "DT", "CD", "JJ", "NNS", ",", "RB", "IN", "JJ", "NNS", ".", "IN", "DT", "CD", ",", "NNS", "VBD", "NN", "NNS", "IN", "DT", "NNS", "IN", "NNP", "NNS", ".", "DT", "NNS", "RB", "VBD", "TO", "NN", ",", "CC", "DT", "NNS", "IN", "JJ", "CD", "NNP", "NNS", "MD", "RB", "VB", "WP$", "NN", "PRP", "VBD", "-NONE-", ".", "-NONE-", "VBG", "IN", "CD", ",", "NNS", "IN", "JJ", "NNS", "VBG", "NNP", "CC", "NNP", "NNP", "VBD", "-NONE-", "TO", "VB", "DT", "NN", "NN", "IN", "NNS", "MD", "VB", "IN", "DT", "NNS", "VBP", "DT", "NNS", "WP", "-NONE-", "VBP", "JJ", ".", "NNS", "VBD", "DT", "NN", "IN", "DT", "NNP", "NNS", "VBD", "RB", "DT", "JJ", ",", "CC", "VBD", "DT", "JJ", "NN", "IN", "IN", "NNS", "MD", "VB", "VBN", "-NONE-", "IN", "NN", "NNS", "IN", "DT", "NN", "IN", "PRP$", "NN", "IN", "DT", "JJ", "NNS", ".", "DT", "VBZ", "DT", "NN", ".", "NN", "NNS", "MD", "RB", "VB", "JJ", "-NONE-", "TO", "VB", "NN", "IN", "NNS", "MD", "RB", "VB", "RB", "WDT", "JJ", "NN", "-NONE-", "VBD", "VBN", "-NONE-", ".", "CC", "NNS", "RB", "VBD", "IN", "DT", "JJ", "NN", ".", "RB", "IN", "DT", "NNS", "VBP", "RB", "RB", ",", "PRP", "VBZ", "RP", "IN", "NNP", "NNS", "VBD", "DT", "NNS", "RB", "CC", "MD", "VB", "VBN", "JJ", "NNS", ".", "DT", "JJ", "NN", "VBD", "IN", "NNP", "CC", "NNP", ",", "WRB", "DT", "JJS", "NNP", "NNP", "NN", "VBD", "DT", "JJ", "NN", "IN", "DT", "JJ", "NN", "-NONE-", "TO", "VB", "IN", "NN", "NNS", "WDT", "-NONE-", "MD", "VB", "-NONE-", "NNP", "NNP", "POS", "NN", "VBD", "RB", "VB", "PRP$", "NN", "MD", "RB", "VB", "PRP$", "NN", "IN", "DT", "NNS", "-NONE-", ".", "CC", "IN", "NNP", "NNP", "NN", "NN", "NNP", "NNP", "NNP", "VBZ", ",", "IN", "DT", "NN", "DT", "NN", "MD", "VB", "VBN", "-NONE-", "JJ", "IN", "NNP", "NNP", "IN", "DT", "JJ", "NN", "RB", "IN", "PRP", "VBD", "PDT", "PRP$", "NNS", "IN", "NNP", ".", "IN", "DT", "NNP", "NNP", "POS", "NN", "-NONE-", "TO", "VB", "DT", "NN", ",", "EX", "VBP", "JJ", "JJ", "NNS", "IN", "JJ", "NN", "CC", "JJ", "NNS", "IN", "DT", "NNS", ".", "DT", "JJ", "NN", ",", "RB", ",", "VBZ", "IN", "EX", "VBZ", "DT", "NN", "IN", "DT", "NN", "MD", "VB", "VBN", "-NONE-", "TO", "NNP", "CC", "TO", "NNS", ".", "DT", "NN", "RB", "VBZ", "RB", "IN", "-NONE-", "VBG", "JJ", "NN", ".", "DT", "NNP", "NNP", "NNP", "JJ", "NN", "VBD", "NN", "-NONE-", "TO", "VB", "PRP", "-NONE-", "RB", "JJR", "-NONE-", "TO", "VB", "NNP", "NNS", "IN", "DT", "NNS", "VBD", "WRB", "PDT", "DT", "JJ", "NN", "VBZ", "VBN", "DT", "NN", "IN", "JJ", "NNS", "-NONE-", ".", "DT", "NN", "VBD", "JJ", "NN", "IN", "NN", "NNS", ",", "-NONE-", "VBG", "DT", "JJ", ",", "VBN", "JJ", "NNS", ".", "``", "JJ", "NN", "VBZ", "DT", "NN", "CC", "NN", "IN", "JJ", "JJ", "NNS", ",", "RB", "IN", "DT", "NNS", ",", "RB", "JJ", "NNS", ",", "MD", "VB", "PRP$", "NN", "IN", "NNS", "MD", "VB", "NNS", "CC", "VB", "NN", "CC", "NN", ",", "''", "DT", "JJ", "NN", "VBD", "-NONE-", ".", "DT", "NNP", "NNS", "VBD", "IN", "DT", "NN", "IN", "NN", "RB", "VBD", "DT", "JJ", "VBG", "JJ", "NN", ",", "NNP", ",", "IN", "DT", "NNP", "NN", ".", "DT", "VBZ", "DT", "JJ", "NN", ":", "WP", "-NONE-", "TO", "VB", "-NONE-", "IN", "NNS", "WP", "-NONE-", "VBP", "JJ", "NNS", "IN", "JJ", "NNS", ".", "PRP", "RB", "VBP", "IN", "-NONE-", "VBG", "NN", "NNS", "JJ", "WRB", "EX", "VBZ", "DT", "NN", "IN", "PRP", "CC", "NN", "RB", "VBD", "IN", "DT", "NNS", "-NONE-", "RB", "VBZ", "-NONE-", "DT", "NNS", "MD", "RB", "VB", "JJ", "TO", "NN", ".", "IN", "NN", "NN", "NNP", "NNP", "VBZ", "PRP", ",", "IN", "DT", "NNP", "NN", ",", "IN", "DT", "NN", "NN", "VBZ", "DT", "JJ", "NN", "``", "PRP", "VBZ", "NN", "-NONE-", "-NONE-", "TO", "VB", "DT", "NN", "POS", "NN", "RB", "-NONE-", ".", "''", "PRP", "RB", "VBP", "IN", "DT", "NN", "NN", "VBZ", "DT", "JJ", "NN", "-NONE-", "-NONE-", "TO", "VB", "NNS", "-NONE-", "RB", ":", "DT", "VBP", "DT", "JJ", "NN", ",", "NNS", "VBP", "RB", "JJR", "CC", "JJ", "NNS", "VBP", "DT", "JJ", "NN", "DT", "NN", ".", "NNP", "NNS", "CC", "JJ", "NNS", "IN", "NNS", "MD", "VB", "JJR", "IN", "IN", "PRP$", "NNS", "VBD", "VBN", "-NONE-", "IN", "IN", "DT", "NNS", ".", "NNP", "MD", "VB", "DT", "NN", "NN", "-NONE-", "-NONE-", "TO", "VB", "JJ", "NNS", "IN", "-NONE-", "VBG", "DT", "JJ", "NN", "IN", "-NONE-", "VBG", "JJ", "NNS", ".", "CC", "DT", "CD", "NN", "WDT", "-NONE-", "RB", "VBD", "NNS", "IN", "NNS", "POS", "NNS", "IN", "DT", "NN", "NN", "VBZ", "RB", "VBN", "TO", "VB", "JJR", "NN", ".", "NN", "IN", "RB", "VBZ", "IN", "NNP", "VBZ", "RB", "JJ", "IN", "-NONE-", "VBG", "NN", "-NONE-", "-NONE-", "TO", "VB", "JJ", "NNS", "-NONE-", "IN", "PRP$", "VBG", "DT", "JJ", "NN", ".", "PRP", "VBP", "DT", "NN", "-NONE-", "DT", "VBZ", "CD", "NN", "-NONE-", "NNS", "IN", "NNP", "NNP", "CC", "NNS", "IN", "DT", "NNP", "NNP", "VBP", "JJ", "-NONE-", "TO", "VB", "DT", "NN", "IN", "DT", "NNP", "NNS", ".", "PRP", "MD", "VB", "IN", "NN", "VBZ", "-NONE-", "TO", "VB", "VBN", "-NONE-", "IN", "NN", ",", "CC", "VB", "-NONE-", "PRP", "MD", "RB", "VB", "VBN", "-NONE-", "IN", "NNP", ".", "NNP", "NNPS", "NNP", "NNP", ",", "DT", "NN", "NN", ",", "VBD", "DT", "NN", "IN", "NNP", "NNP", "NNPS", "NNP", "POS", "NNP", "NN", "NN", "IN", "$", "CD", "CD", "-NONE-", "CC", "DT", "NN", "IN", "$", "CD", "CD", "-NONE-", "IN", "NN", ".", "NNP", ",", "VBN", "-NONE-", "IN", "NNP", ",", "NNP", ",", "VBZ", "CD", "NNS", "IN", "DT", "NN", ":", "PRP", "VBD", "NN", "IN", "$", "CD", "CD", "-NONE-", "JJ", "NN", ".", "NNP", "NNPS", ",", "NNP", "NNP", ",", "VBZ", "JJ", "JJ", "NN", "NNS", "IN", "NNP", "CC", "NNP", ".", "NN", ".", "NNP", "VBD", "-NONE-", "JJ", "NN", "IN", "DT", "JJ", "NN", "VBD", "CD", "NN", "IN", "DT", "NN", "VBD", "RB", "JJR", "JJ", "NNS", "-NONE-", "TO", "VB", "IN", "DT", "NN", "NN", ".", "DT", "JJ", "NN", "NN", "VBD", "-NONE-", "JJ", "NN", "VBD", "TO", "CD", "CD", "NNS", "-LRB-", "$", "CD", "CD", "-NONE-", "-RRB-", ",", "CC", "CD", "NNS", "DT", "NN", ",", "IN", "CD", "CD", "NNS", ",", "CC", "CD", "NNS", "DT", "NN", ",", "DT", "NN", "IN", ".", "DT", "CD", "NN", "JJ", "NNP", "VBD", "CD", "CD", "NNS", "IN", "JJ", "NNS", "IN", "DT", "JJS", "NN", ",", "RB", "-NONE-", "TO", "VB", "JJ", "NNS", "IN", "NN", "IN", "DT", "NN", "IN", "DT", "NNS", ".", "DT", "NNS", "VBD", "VBN", "-NONE-", "IN", "NN", "IN", "DT", "NN", "IN", "DT", "NN", "IN", "DT", "NN", "POS", "NN", "NN", ".", "JJ", "NN", ",", "NNP", "VBD", "CD", "CD", "NNS", "IN", "JJ", "NNS", "IN", "DT", "NN", "NN", "CC", "JJ", "NNS", ".", "DT", "NNS", "NN", "RB", "VBD", "VBN", "-NONE-", "IN", "DT", "NN", "POS", "NN", "-NONE-", "TO", "VB", "JJ", "NN", "NN", "IN", "NN", "TO", "IN", "CD", "CD", "NNS", ".", "RB", ",", "RB", "JJR", "JJ", "JJ", "NN", "NNS", "VBD", "DT", "NN", "VB", "PRP$", "NN", "NN", "JJ", "JJ", "TO", "NNS", "NN", ",", "DT", "NN", "VBD", "-NONE-", "-NONE-", ".", "NNS", ",", "RB", ",", "VBD", "RB", "VBN", "-NONE-", "IN", "CD", "CD", "NNS", ",", "VBN", "IN", "CD", "CD", "NNS", ".", "NNP", "NNP", "VBD", "-NONE-", "PRP", "VBD", "NNP", "CC", "NNP", "NNP", "NN", "-NONE-", "TO", "VB", "DT", "NNP", "JJ", "NN", ",", "DT", "JJ", "JJ", "NN", "NN", "JJ", "IN", "NN", "NN", ".", "DT", "NN", "POS", "NN", "VBZ", "PRP", "TO", "VB", "VBN", "-NONE-", "IN", "JJR", "NNS", "IN", "-NONE-", "VBP", "RB", "JJ", "IN", "NN", "NN", ",", "DT", "NN", "NN", "CC", "NN", "NN", "NN", "VBD", "-NONE-", "-NONE-", ".", "NNS", "VBP", "TO", "DT", "NN", "IN", "DT", "NN", "POS", "JJ", "NN", ".", "DT", "NN", "IN", "DT", "NNP", "NN", "VBD", "IN", "DT", "NNP", "NNP", "NNP", "NN", "-NONE-", "TO", "VB", "IN", "DT", "NNP", "POS", "NN", "-NONE-", "TO", "VB", "DT", "$", "CD", "CD", "-NONE-", "IN", "NN", "NN", "TO", "NNP", ",", "IN", "JJR", "-NONE-", "-NONE-", "TO", "VB", "IN", "DT", "NNP", ".", "DT", "NN", "POS", "NNS", "VBP", "VBN", "WP", "PDT", "DT", "JJ", "NN", "MD", "VB", "-NONE-", "TO", "DT", "JJ", "NNS", "IN", "NNP", "POS", "JJ", "NNS", ".", "NNP", "NNP", "NNP", "VBD", "IN", "JJ", "NN", "NN", "VBD", "VBN", "NNS", "IN", "NNP", "NNP", "CC", "NNP", ".", "RB", "RB", "JJ", ",", "NN", "NNS", "VBP", "DT", "NN", "IN", "-NONE-", "VBG", "JJR", "CC", "VBG", "DT", "NN", "NNS", "IN", "DT", "JJ", "NN", "POS", "JJ", "NNS", ".", "DT", "NNP", "NNP", "VBZ", "IN", "DT", "NN", "VBD", "DT", "JJ", "NN", "IN", "-NONE-", "VBG", "JJ", "NNS", "POS", "NNS", "IN", "DT", "NN", "IN", "JJ", "NN", ".", "PRP", "MD", "VB", "RB", "VBN", "IN", "NNP", "POS", "NNS", "RB", "VBP", "DT", "JJ", "NN", "IN", "PRP$", "NNS", ".", "NNP", "NNPS", "NNP", "VBD", "-NONE-", "PRP", "VBZ", "JJ", "NN", "IN", "DT", "NN", "VBG", "NNP", "CD", ",", "CD", ",", "TO", "VB", "IN", "DT", "JJ", "NN", "POS", "NN", "IN", "$", "CD", "-NONE-", "DT", "NN", ".", "DT", "NNP", ",", "NNP", ",", "NN", "IN", "NNS", "RB", "VBD", "-NONE-", "PRP", "VBZ", "-NONE-", "TO", "VB", "NNS", "IN", "DT", "JJ", "JJ", "NN", "WDT", "-NONE-", "VBP", "``", "RB", "JJ", "''", "JJ", "CD", "NNS", "IN", "$", "CD", "CD", "-NONE-", ".", "DT", "NN", "VBD", "-NONE-", "PRP$", "JJ", "NN", "VBZ", "-NONE-", "TO", "VB", "NN", "NNS", "CC", "JJR", "NN", ".", "IN", "JJ", "CD", ",", "NNP", "VBD", "$", "CD", "CD", "-NONE-", ",", "CC", "$", "CD", "-NONE-", "DT", "NN", ".", "DT", "NN", "POS", "NN", "VBD", "$", "CD", "-NONE-", "TO", "$", "CD", "-NONE-", "IN", "JJ", "NN", "NN", ".", "NNP", "NNP", "NNP", ",", "NNP", ",", "NNP", ",", "VBN", "-NONE-", "NNS", "IN", "PRP$", "JJ", "NN", "VBD", "NNP", "CD", "VBD", "CD", "NN", "TO", "CD", "NN", "IN", "DT", "JJ", "$", "CD", "CD", "-NONE-", ",", "CC", "CD", "NNS", "DT", "NN", ".", "DT", "NN", "NN", "VBD", "-NONE-", "DT", "JJ", "NN", "IN", "JJ", "NN", "MD", "VB", "IN", "JJR", "NNS", "IN", "DT", "JJ", "NN", ".", "IN", "JJ", "CD", ",", "DT", "NN", "VBD", "$", "CD", "CD", "-NONE-", ",", "CC", "$", "CD", "-NONE-", "DT", "NN", ",", "IN", "NN", "IN", "$", "CD", "CD", "-NONE-", ".", "NNP", "NNP", "VBD", "DT", "NN", "IN", "PRP$", "NNS", "TO", "JJR", "JJ", "NNS", "IN", "PRP$", "JJ", "NN", "NN", ",", "DT", "JJR", "NN", "NN", "CC", "JJR", "JJ", "NNS", "IN", "NN", "IN", "NN", "NN", "NNS", ".", "DT", "NN", "VBD", "-NONE-", "PRP", "VBZ", "IN", "DT", "NN", "IN", "-NONE-", "VBG", "RP", "NNP", "NNP", ",", "PRP$", "JJ", "NN", "IN", "NN", "IN", "JJ", "NN", "NN", "NN", ".", "IN", "NN", "IN", "DT", "NN", "IN", "PRP$", "JJ", "NN", ",", "DT", "NN", "VBD", "-NONE-", "DT", "JJ", "NN", "NN", "VBZ", "VBN", "VBN", "-NONE-", "-NONE-", "-NONE-", "TO", "VB", "PRP", "IN", "DT", "NN", "NN", ".", "NNP", "NNS", "VBD", "IN", "NNP", "IN", "RB", "JJ", "CC", "JJ", "NN", ".", "NNP", "NNS", "VBD", "RB", "JJR", ".", "IN", "NNP", ",", "DT", "NNP", "NN", "IN", "CD", "VBN", "NNS", ",", "WDT", "-NONE-", "VBD", "CD", "NNS", "NNP", ",", "VBD", "CD", "NNS", "TO", "CD", ".", "IN", "RB", "NN", "IN", "NNP", "NNP", ",", "DT", "NNP", "NN", "VBD", "CD", "NNS", "TO", "CD", ".", "NNP", "POS", "NN", "IN", "DT", "NNP", "NNP", "VBD", "VBN", "-NONE-", "IN", "CD", "CD", "NNS", ",", "IN", "NN", "IN", "NNP", "POS", "CD", "CD", ".", "VBG", "NNS", "RB", "VBD", "VBG", "NNS", ",", "CD", "TO", "CD", ".", "NNS", "VBD", "NN", "NN", "RB", "IN", "PRP", "VBD", "NNP", ",", "-NONE-", "VBG", "NN", "IN", "JJ", "NNS", "TO", "DT", "NN", "CC", "NN", ",", "NNS", "VBD", "-NONE-", "-NONE-", ".", "NN", ",", "IN", "DT", "JJ", "NN", ",", "VBD", "NN", "IN", "JJ", "JJ", "NNS", ",", "IN", "NNS", "VBG", "JJ", "NNS", "RB", "VBD", "JJ", ".", "DT", "NN", ",", "NNS", "VBD", "-NONE-", "-NONE-", ",", "VBD", "IN", "EX", "VBZ", "JJR", "IN", "JJ", "NN", "JJ", "IN", "NN", "IN", "DT", "NN", "POS", "JJ", "JJ", "NN", ".", "NNS", "VBD", "DT", "NN", "NNP", "IN", "-NONE-", "RB", "VBG", "IN", "PRP$", "JJ", "NNS", ",", "NNS", "VBD", "-NONE-", "-NONE-", ".", "NNS", "RB", "VBD", "IN", "DT", "NNS", "IN", "IN", "NN", "VBG", "NN", "NNS", "CC", "DT", "NN", ".", "DT", "NNP", "NNP", "NNP", "NNP", "-LRB-", "NNP", "-RRB-", "IN", "DT", "NNS", "VBN", "-NONE-", "IN", "DT", "NNP", "NNP", ",", "WDT", "-NONE-", "VBD", "CD", "NNS", "NNP", ",", "VBD", "RB", "CD", "NNS", ",", "CC", "CD", "NN", ",", "IN", "CD", ".", "DT", "NNP", "NNP", "NN", ",", "WDT", "-NONE-", "VBD", "CD", "NNS", "NNP", ",", "VBD", "RB", "CD", "NNS", ",", "CC", "CD", "NN", ",", "-NONE-", "TO", "VB", "IN", "CD", ".", "NN", "IN", "DT", "JJ", "NN", "VBD", "VBN", "-NONE-", "IN", "CD", "CD", "NNS", ",", "RB", "IN", "CD", "CD", "NNP", ".", "NNP", "NNP", ",", "VBG", "NN", "IN", "NNP", "NNP", "NNP", "NNP", ",", "VBD", "IN", "IN", "DT", "NNP", "JJ", "NNS", "NN", "VBZ", "TO", "IN", "CD", "NN", ",", "NNS", "MD", "VB", "DT", "JJR", "NN", "VBG", "DT", "NN", "IN", "DT", "NN", "CC", "RB", "RBR", "RB", "VB", "IN", "JJ", "NN", ".", "NNP", "NNP", ",", "NNP", "NNP", "CC", "NNP", ",", "WDT", "-NONE-", "VBD", "NNP", ",", "VBD", "IN", "NN", ".", "NNP", "POS", "JJ", "NN", "VBD", "NNP", "NNP", "CC", "NNP", "NNP", ",", "WDT", "-NONE-", "VBD", "-NONE-", "TO", "VB", "IN", "NNS", "IN", "JJ", "NN", ".", "PRP", "VBD", "DT", "NN", "RB", "CD", "NNS", "-LRB-", "CD", "NNS", "-RRB-", "TO", "CD", "NN", "-LRB-", "$", "CD", "-NONE-", "-RRB-", ".", "JJ", "TO", "RB", "JJ", "NN", "NNS", "VBN", "-NONE-", "TO", "NN", "IN", "DT", "NNP", "NN", ",", "NN", "NN", "VBD", "VBN", "-NONE-", "IN", "NN", "CC", "NN", "NNS", ",", "WDT", "NNS", "VBD", "-NONE-", "DT", "``", "JJ", "''", "NN", "RB", "VBN", "-NONE-", "WRB", "DT", "NN", "VBZ", "VBN", "-NONE-", "TO", "VB", "-NONE-", "CC", "IN", "NNS", "IN", "NN", ".", "NNP", "NNP", ",", "RB", "VBN", "-NONE-", "IN", "NNS", "IN", "JJ", "NN", ",", "VBD", "CD", "NN", "TO", "CD", ".", "NNP", "NNP", "VBD", "CD", "TO", "CD", "CC", "NNP", "NNP", "VBD", "CD", "TO", "CD", ".", "NNP", "NNP", "NNP", "VBD", "CD", "NN", "TO", "CD", "CC", "NNP", "NNP", "VBD", "CD", "TO", "CD", ".", "IN", "JJ", "NNS", "NNP", "VBD", "-NONE-", "NNP", "NNP", ",", "WDT", "-NONE-", "VBD", "IN", "CD", "IN", "CD", ".", "NNP", "VBD", "CD", "TO", "CD", ".", "NNP", "NN", "NNS", "VBD", "VBN", "-NONE-", "RB", "IN", "VBN", "NNS", "IN", "NNP", "NNP", "CC", "JJ", "NNS", "VBG", "NN", "IN", "NNP", "POS", "JJ", "NNS", ".", "DT", "NNP", "NNP", "NNP", "JJ", "NN", "VBD", "CD", "NNS", "JJR", "IN", "CD", ".", "PRP", "VBD", "RB", "IN", "DT", "NN", "IN", "-NONE-", "VBG", "DT", "NN", "JJ", "IN", "CD", "IN", "DT", "JJ", "CD", "NNS", "IN", "NN", ".", "DT", "NN", "VBD", "DT", "NN", "IN", "PRP$", "NN", "JJ", "IN", "CD", ",", "WDT", "-NONE-", "VBD", "VBN", "-NONE-", "IN", "DT", "JJ", "NN", "IN", "NN", ".", "NNS", "VBD", "-NONE-", "JJS", "NN", "NN", "VBD", "VBN", "-NONE-", "IN", "JJ", "JJ", "NNS", ",", "RB", "DT", "IN", "JJ", "NNP", "NN", ".", "RB", ",", "JJ", "JJ", "JJ", "NNS", "VBD", "VBN", "JJR", "IN", "JJ", "NN", "IN", "IN", "DT", "JJ", "NN", "IN", "NN", "NNS", ".", "NNP", "POS", "JJ", "NN", ",", "VBN", "IN", "DT", "JJ", "NN", "IN", "NNP", "NNP", ",", "RB", "VBD", "DT", "NNS", "TO", "VB", "RB", "TO", "DT", "NN", ",", "NNS", "VBD", "-NONE-", "-NONE-", ".", "EX", "VBD", "NNS", "-NONE-", "RB", "IN", "DT", "NN", "IN", "NNP", "NNP", "POS", "JJ", "NNS", "IN", "NNP", "VBD", "VBN", "CC", "JJ", "IN", "DT", "NN", ".", "DT", "NNP", "JJ", "NN", "VBD", "CD", "NNS", "JJR", "IN", "CD", ".", "NN", "VBD", "CD", "CD", "NNS", ",", "RB", "IN", "CD", "CD", "IN", "NNP", ".", "NNS", "VBD", "-NONE-", "NNS", "VBD", "RB", "RB", "VBG", "DT", "NNS", "IN", "NNS", "IN", "DT", "NN", "POS", "JJ", "JJ", "NN", "MD", "VB", "JJ", ".", "PRP", "VBD", "NNP", "NNP", "POS", "JJ", "NN", "CC", "DT", "NN", "IN", "DT", "JJ", "NN", "IN", "DT", "NN", "POS", "JJ", "NN", "IN", "NNS", "IN", "DT", "JJ", "NN", ".", "NNP", ",", "DT", "NNP", "NN", "NN", "NN", "VBG", "VBN", "-NONE-", "IN", "NNP", "NNP", "CC", "NNP", "NNPS", ",", "VBD", "CD", "NN", "-LRB-", "CD", "NNS", "-RRB-", "DT", "NN", "-NONE-", "TO", "VB", "IN", "CD", "NN", "-LRB-", "$", "CD", "-NONE-", "-RRB-", ".", "PRP", "VBD", "IN", "CD", "NN", ",", "RB", ",", "IN", "NNS", "VBD", "-NONE-", "DT", "NN", "VBD", "VBN", "IN", "NNP", "VBD", "RB", "VB", "-NONE-", "TO", "VB", "DT", "NN", "IN", "NN", "IN", "DT", "NN", ".", "NNS", "VBD", "-NONE-", "DT", "NNP", "NN", "POS", "NN", "-NONE-", "NNP", "-NONE-", "TO", "VB", "PRP$", "JJ", "``", "JJ", "NN", "''", "IN", "DT", "NN", "NN", "VBD", "NNS", "IN", "DT", "NN", "NN", "IN", "DT", "CD", "NNP", "NN", "NNS", ".", "CC", "DT", "NN", "RB", "VBD", "VBN", "-NONE-", "IN", "DT", "NN", "IN", "NNP", ",", "DT", "JJ", "NNP", "NN", "NN", "NN", ",", "VBD", "JJ", "-NONE-", "TO", "VB", "NN", "NN", "IN", "PRP$", "NN", "IN", "NN", "IN", "NNP", ".", "NNS", "VBD", "-NONE-", "DT", "NN", "VBD", "NNS", "IN", "DT", "JJ", "NN", "IN", "NNP", ".", "NNP", "NNPS", ",", "WDT", "-NONE-", "VBZ", "VBG", "VBN", "-NONE-", "IN", "NNP", "NNP", "NNP", "POS", "NNP", "NNPS", ",", "VBD", "CD", "TO", "CD", "IN", "NN", "IN", "NNP", "MD", "VB", "PRP$", "NN", ",", "NNS", "VBD", "-NONE-", "-NONE-", ".", "IN", "NNP", ",", "NNP", "RB", "VBD", "IN", "PRP$", "NNS", "IN", "NN", "NNS", ".", "NNP", "NNP", ",", "DT", "NNP", "NN", "NN", ",", "VBD", "CD", "TO", "CD", "IN", "-NONE-", "VBG", "DT", "CD", "NN", "NN", "IN", "JJ", "NN", "NN", ".", "NNS", "VBD", "-NONE-", "DT", "NN", "IN", "NN", "NN", "VBD", "JJ", "TO", "DT", "NN", "POS", "JJ", "NN", "CC", "NN", "IN", "JJ", "NNS", ",", "CC", "IN", "PRP$", "VBG", "NNS", "VBP", "VBG", "RB", ".", "NNS", "VBD", "-NONE-", "DT", "NN", "VBD", ".", "NNS", "VBN", "-NONE-", "IN", "NNS", "VBG", "-NONE-", "TO", "VB", "NN", "NNS", "IN", "NNP", "CD", "NNS", "VBD", "NNP", "NNPS", ",", "WDT", "-NONE-", "VBD", "CD", "TO", "CD", ".", "NN", "NNS", "IN", "DT", "JJ", "NN", "RB", "VBD", "NNS", "IN", "NNS", "VBD", "IN", "NN", "IN", "NN", "IN", "NN", "JJ", "TO", "DT", "NN", "POS", "JJ", "NNS", ".", "NNP", "VBD", "CD", "TO", "CD", "IN", "DT", "JJ", "CD", "CD", "NNS", ".", "NNP", ",", "DT", "NNP", "POS", "JJS", "JJ", "NN", ",", "VBD", "CD", "TO", "#", "CD", "-NONE-", ".", "NN", "NNS", "VBD", "JJR", "IN", "NNP", ",", "NNP", "CC", "NNP", "CC", "JJR", "IN", "NNP", ".", "NNP", ",", "NNP", ",", "CC", "NNP", "VBD", "VBN", "IN", "DT", "NN", ".", "JJ", "JJ", "NN", "NNS", "VBD", "RB", "JJR", ".", "RB", ",", "NN", "NNS", "VBD", "JJR", "IN", "NNP", ",", "NNP", "CC", "NNP", ",", "VBD", "VBN", "IN", "NNP", "NNP", ",", "JJR", "IN", "NNP", "CC", "RB", "VBN", "IN", "NNP", ".", "NNP", "NNS", "VBD", "VBN", "IN", "DT", "NN", ".", "RB", "VBP", "-NONE-", "NN", "NNS", "IN", "DT", "NN", "POS", "JJ", "NN", "NNS", ",", "IN", "-NONE-", "VBN", "-NONE-", "IN", "NNP", "NNP", "NNP", "NNP", "NNP", ",", "NNP", ".", "-NONE-", "TO", "VB", "PRP", "RB", "JJ", ",", "DT", "NN", "VBZ", "VBN", "-NONE-", "IN", "DT", "NN", "IN", "CD", "VBG", "CD", ".", "DT", "NN", "NN", "VBZ", "IN", "NN", ".", "DT", "VBG", "NNS", "VBD", "RB", "VBN", "-NONE-", "IN", "DT", "NNPS", "CC", "NNP", "NNP", ":", "NNP", "NNP", ",", "VBG", "IN", "CD", "JJ", "NNS", ",", "IN", "NNP", ",", "NNP", "CC", "NNP", "CC", "NNP", ",", "NNP", "CC", "NNP", "NNP", ".", "NNP", "NNP", "NNP", ",", "VBG", "IN", "CD", "NNS", "IN", "JJ", "NN", ",", "IN", "NNP", "NNP", "NNP", "NNP", "NNP", "CC", "NNP", ",", "NNP", ",", "NNP", ",", "NNP", "NNP", ".", "NNP", "NNP", "NNPS", "NNP", ",", "JJ", "NN", "IN", "CD", "JJ", "NNS", "-NONE-", ",", "-NONE-", "-NONE-", "TO", "VB", "VBN", "-NONE-", "IN", "DT", "NN", ",", "IN", "NNP", "NNP", ".", "NNP", "NNP", "NNP", "NNP", ",", "NN", "IN", "CD", "CD", "JJ", "NNS", ".", "NNP", "NNP", "NNP", ",", "NN", "NN", "IN", "$", "CD", "CD", "-NONE-", "IN", "JJ", "NN", "NNS", ".", "NNP", "NNP", "NNPS", "NNP", ",", "NN", "IN", "IN", "TO", "$", "CD", "CD", "-NONE-", "CD", "NN", "JJ", "NNS", ",", "IN", "NNP", "NNP", "NNP", "NNP", "CC", "NNP", "NNPS", ".", "NNP", "NNP", "NNP", ",", "VBD", "NN", "IN", "CD", "CD", "NNS", "IN", "JJ", "NN", ",", "IN", "NNP", "NNP", "NNP", "CC", "NNP", ",", "NNP", ",", "CC", "NNP", "NNP", "CC", "NNP", "NNP", ".", "NNP", "NNP", "NNPS", "NNP", ",", "JJ", "NN", "IN", "CD", "NNS", "IN", "JJ", "NN", ",", "IN", "WDT", "CD", "NNS", "-NONE-", "MD", "VB", "VBN", "-NONE-", "IN", "DT", "NN", "CC", "CD", "NNS", "-NONE-", "IN", "DT", "NN", ",", "IN", "NNP", "NNP", "NNP", ",", "NNP", "NNP", ",", "NNP", "NNP", "CC", "NNP", ",", "CC", "NNP", ",", "NNP", "NNP", ".", "-NONE-", "VB", "DT", "NN", ".", "IN", "NNS", ",", "NNS", ",", "NNS", "CC", "NNS", ",", "EX", "VBP", "RB", "NN", "NNS", "VBN", "-NONE-", "-NONE-", "TO", "VB", "-NONE-", ":", "CC", "IN", "DT", "NNS", "VBP", "IN", ",", "PRP", "VBZ", "IN", "IN", "PRP", "VBP", ",", "PRP", "MD", "VB", ".", ":", "NNP", "NNP", ".", "JJ", "NNS", "-NONE-", "VBD", "VBN", "-NONE-", "IN", "NNP", "NNP", "NNP", "CC", "CD", "NN", "NNS", "VBG", "NN", "NN", "NNS", "IN", "PRP$", "NNP", ",", "NNP", ",", "NN", ".", "DT", "NNP", "NNP", "NNP", "NN", "NN", "POS", "NN", "VBD", "CD", "NN", "CC", "CD", "NN", "NNS", "VBG", "IN", "JJ", "JJ", "NN", "CC", "RB", "DT", "NN", "DT", "NNP", ",", "JJ", "NN", "NN", "RB", "VBD", "IN", "NN", ",", "JJ", "CC", "JJ", "NNS", "IN", "DT", "NN", "NN", ",", "CC", "VBD", "JJ", "NNS", "IN", "JJ", ",", "JJ", "CC", "JJ", "NNS", ".", "VBN", "-NONE-", "IN", "NNS", "VBD", "-NONE-", "NNP", "NNP", ",", "NN", ",", "CC", "NNP", "NNP", ",", "JJ", "NN", "NN", "CC", "NN", "JJ", "NN", ",", "RB", "RB", "IN", "DT", "JJ", "NN", "NN", ".", "DT", "NN", "VBD", "-NONE-", "JJ", "NNS", "VBD", "NNS", "IN", "DT", "NNS", "JJ", "NN", "CC", "VBD", "VBN", "DT", "NN", "TO", "``", "JJ", "NN", "''", "IN", "NNP", ".", "``", "DT", "NN", "VBZ", "RB", "VB", "IN", "PRP", "CC", "DT", "IN", "DT", "NNS", "VBD", "DT", "JJ", "NN", "CC", "DT", "NN", "VBZ", "JJ", "NN", "IN", "NN", ".", "''", "NNS", "VBP", "VBN", "-NONE-", "IN", "NNP", "CD", ".", "NN", "NN", "VBD", "JJ", "IN", "NNP", ",", "IN", "DT", "JJ", "NNS", "IN", "DT", "NN", "NN", ".", "``", "DT", "JJ", "NN", "NN", "NN", "IN", "JJ", "NNP", "VBZ", "-NONE-", "TO", "VB", "VBN", "JJ", "CC", "DT", "NN", "IN", "NNS", ",", "''", "VBD", "-NONE-", "NNP", "NNP", ",", "JJ", "NN", "IN", "DT", "NNP", "NNP", "POS", "NN", "NN", "NN", ".", "``", "NN", "NNS", "VBN", "-NONE-", "IN", "DT", "NN", "IN", "DT", "NNP", "NNP", "NN", "VBD", "IN", "DT", "JJ", "IN", "DT", "NNS", "VBN", "RB", "TO", "DT", "NN", ".", "''", "DT", "JJ", ",", "JJ", "NN", "VBD", "-NONE-", "PRP$", "NNP", "NNP", "NNP", "VBD", "CD", "IN", "NNP", ",", "-NONE-", "RB", "VBN", "-NONE-", "IN", "DT", "VBN", "CD", "IN", "NNP", ".", "DT", "NN", "VBD", "CD", "IN", "NNP", "CD", "CC", "IN", "DT", "NN", "NN", "VBZ", "VBN", "IN", "DT", "JJ", "IN", "CD", "TO", "DT", "JJ", "IN", "CD", ".", "PRP", "VBZ", "DT", "NN", "IN", "CD", "IN", "CD", ".", "IN", "NNP", ",", "JJR", "NNS", "-NONE-", "VBD", "IN", "JJ", "NN", "NNS", "VBD", "``", "JJ", "''", "IN", "IN", "NNP", ".", "DT", "JJ", "NN", "IN", "DT", "NN", "VBD", "IN", "NN", "NNS", "VBD", "JJ", ".", "CC", "CD", "NN", "IN", "NNS", "VBN", "-NONE-", "VBD", "-NONE-", "NN", "NNS", "MD", "VB", "IN", "DT", "VBG", "CD", "NNS", ",", "VBN", "IN", "CD", "NN", "IN", "NNP", ".", "RB", ",", "JJR", "NNS", "VBD", "-NONE-", "NNS", "MD", "VB", "IN", "DT", "NN", ".", "-LRB-", "JJR", "VBD", "-NONE-", "NNS", "MD", "RB", "VB", ".", "-RRB-", "IN", "NNP", "CD", ",", "CD", "NN", "VBD", "-NONE-", "NN", "NNS", "MD", "VB", ".", "IN", "NNP", "CD", ",", "CD", "NN", "VBD", "-NONE-", "JJR", "NNS", "MD", "VB", "VBN", "-NONE-", "IN", "DT", "VBG", "CD", "NNS", ",", "VBN", "IN", "CD", "NN", "IN", "NNP", "CC", "CD", "NN", "IN", "NNP", "CD", ".", "RB", "CD", "NN", "IN", "NNP", ",", "VBN", "IN", "CD", "NN", "IN", "NNP", "CC", "CD", "NN", "IN", "NNP", "CD", ",", "VBD", "-NONE-", "NN", "MD", "VB", ".", "``", "DT", "VBN", "NN", "IN", "NN", "MD", "VB", "VBN", "-NONE-", "TO", "DT", "VBN", "JJ", "NNS", "WDT", "-NONE-", "VBP", "DT", "NN", "POS", "JJ", "JJ", "NN", ",", "''", "VBD", "-NONE-", "NNP", "NNP", ".", "``", "NN", "VBZ", "IN", "DT", "RB", "JJ", "NN", ",", "-NONE-", "VBG", "DT", "NN", "IN", "NN", "NN", ",", "CC", "DT", "JJ", "NN", "NN", "VBZ", "VBN", "DT", "VBG", "NN", "IN", "DT", "JJ", "NN", "RB", "JJ", ".", "''", "DT", "NN", "NN", "NN", ",", "-NONE-", "VBG", "CD", "NNP", "NNS", ",", "VBZ", "VBN", "-NONE-", "IN", "DT", "JJ", "CD", "NNS", "IN", "DT", "NN", "IN", "DT", "NNP", "NNP", "IN", "NNP", "NNP", "NNP", "NNP", ",", "DT", "NNP", ",", "NNP", ",", "NN", "NN", ".", "VBG", "NNS", "VBD", "VBN", "IN", "NNP", ",", "IN", "JJR", "NNS", "VBG", "NNS", "-NONE-", "TO", "VB", "NNS", "CC", "RBR", "VBG", "-NONE-", "PRP", "MD", "VB", "NNS", "CC", "NNS", "IN", "DT", "VBG", "CD", "NNS", ".", "IN", "NNP", ",", "CD", "NN", "IN", "NNS", "VBD", "-NONE-", "PRP", "MD", "VB", "DT", "NN", ",", "-NONE-", "VBG", "IN", "NNP", "WRB", "CD", "NN", "VBD", "DT", "NN", "-NONE-", ".", "IN", "NNP", "CD", ",", "CD", "NN", "VBD", "-NONE-", "PRP", "MD", "VB", "DT", "NN", ".", "NN", "NN", "NNS", "VBD", "TO", "CD", "NN", "IN", "CD", "NN", "IN", "DT", "CD", "JJ", "NNS", ".", "IN", "NNP", "CD", ",", "CD", "NN", "VBD", "-NONE-", "PRP", "MD", "VB", "DT", "NN", ".", "IN", "CD", ",", "NN", "NN", "NNS", "VBP", "VBN", "RB", "IN", "CD", "NN", "-NONE-", "TO", "CD", "NN", "-NONE-", "IN", "NNS", ".", "IN", "NNP", ",", "CD", "NN", "VBD", "-NONE-", "PRP", "MD", "VB", "NNS", "IN", "DT", "VBG", "CD", "NNS", ",", "VBN", "IN", "CD", "NN", "IN", "NNP", "CC", "CD", "NN", "IN", "NNP", "CD", ".", "IN", "DT", "NN", "IN", "JJ", "NN", ",", "DT", "NNP", "NN", "VBD", "JJ", "CC", "DT", "JJ", "NN", "VBD", "JJ", "IN", "NNP", "NNP", "NNPS", "NNP", "POS", "JJ", "NN", "NN", ".", "``", "EX", "VBD", "RB", "JJ", "JJ", "NNS", "CC", "DT", "NN", "VBD", "RB", "VB", "IN", "DT", "IN", "PRP", ",", "''", "VBD", "-NONE-", "NNP", "NNP", ",", "DT", "NN", "NN", "NN", "IN", "NNP", "NNP", "NNP", "NNP", ".", "``", "IN", "DT", "NN", "VBD", "TO", "JJ", "JJ", "NNS", ",", "JJ", "CC", "NNS", "IN", "JJ", ",", "''", "PRP", "VBD", "-NONE-", ".", "NNP", ",", "DT", "JJ", "NN", "NN", ",", "VBD", "$", "CD", "CD", "-NONE-", "IN", "JJ", "JJ", "NNS", "VBN", "-NONE-", "-NONE-", "TO", "VB", "CD", "NN", ",", "CC", "IN", "CD", "NN", "NN", "JJR", "IN", "DT", "NN", "IN", "JJ", "NNP", "NNS", ".", "DT", "NN", "IN", "NNP", "POS", "NN", "VBD", "VBN", "-NONE-", "IN", "DT", "RB", "VBN", "$", "CD", "CD", "-NONE-", "IN", "NN", "NNS", "CC", "NNS", "VBD", "-NONE-", "TO", "VB", "DT", "NNS", ".", "IN", "DT", "JJ", "JJ", "NN", ",", "``", "PRP", "VBZ", "JJ", "IN", "PRP", "VBP", "DT", "NN", "-NONE-", "TO", "VB", "DT", "NN", "WDT", "-NONE-", "VBZ", "JJ", "JJ", "NN", "CC", "VBZ", "JJ", "JJ", "NN", "NNS", ",", "''", "VBD", "-NONE-", "-NONE-", "NNP", "NNP", ",", "DT", "NNP", "JJ", "NN", "NN", ".", "NN", "NNS", "VBD", "NNP", "POS", "NN", "IN", "DT", "RBS", "JJ", "JJ", "NN", "IN", "DT", "NN", "IN", "JJ", "NNS", "IN", "JJ", "NN", "IN", "NNS", "IN", "JJ", "NN", "VBP", "JJ", ".", "NN", "NNS", "IN", "NN", "NN", "NNP", "NNPS", "NNP", "VBD", "-NONE-", "DT", "NNS", "VBD", "VBN", "IN", "RP", "-NONE-", "NN", "NNS", ",", "NNS", ",", "NN", "NNS", "CC", "JJ", "JJ", "NNS", ".", "IN", "DT", "NNP", "NN", ",", "NNS", "VBD", "JJ", "NN", "TO", "DT", "NN", "POS", "JJ", "NNS", ",", "WDT", "-NONE-", "IN", "DT", "JJS", "NN", "VBD", "DT", "VBN", "NN", "IN", "DT", "NN", ".", "``", "IN", "PRP", "VBD", "-NONE-", "DT", "NN", "VBD", "VBG", "JJ", "CC", "VBG", "-NONE-", "JJ", ",", "NN", "POS", "JJ", "NNS", "VBD", "RB", "VB", "PRP$", "NN", ",", "''", "VBD", "-NONE-", "NNP", "NNP", ",", "DT", "VBG", "NN", "IN", "NNPS", "NNP", "NNPS", "NNP", ".", "DT", "NN", "VBD", "IN", "NNS", "IN", "VBN", "NNS", "VBD", "RB", "JJ", "IN", "NNP", "IN", "NN", "NN", "VBD", "RB", "JJR", ".", "DT", "NNS", "VBD", "VBN", "-NONE-", "IN", "NNS", "IN", "DT", "NN", "POS", "JJ", "NN", "VBZ", "VBG", "RB", "RB", ",", "IN", "IN", "DT", ".", "DT", "NN", "IN", "DT", "NNP", "NNP", "POS", "CD", "NN", "NNS", "CC", "DT", "JJS", "NN", "IN", "DT", "NNP", "NNP", "IN", "NNP", "NNP", "VBD", "DT", "NN", "IN", "DT", "NN", ".", "IN", "DT", "JJ", "NN", "VBN", "-NONE-", "IN", "NN", "IN", "DT", "NNP", "POS", "JJ", "NNP", "NNP", "NNP", "NNP", "NN", "IN", "NNP", "CD", ",", "DT", "NN", "POS", "JJ", "NN", "VBD", "IN", "NN", "NNS", "VBP", "VBN", "CC", "JJ", "NN", "VBZ", "VBN", "IN", "DT", "JJ", "NN", "IN", "JJ", "NNS", ".", "IN", "JJ", "NNS", ",", "DT", "NN", "VBD", "IN", "NN", "NN", "VBD", "RB", "IN", "NNS", "CC", "IN", "NNS", ".", "DT", "NNP", "CC", "NNP", "NNS", ",", "IN", "NN", ",", "VBD", "NNS", "IN", "NN", "NN", "IN", "DT", "NNP", ",", "NNP", "CC", "NNP", "NNP", "NNS", "VBD", "IN", "NN", "VBD", ".", "DT", "VBG", "NNS", "NN", "IN", "JJ", "NN", "VBD", "IN", "NNP", ",", "IN", "PRP", "VBZ", "IN", "CD", "NN", ".", "DT", "NN", "IN", "CD", "NN", "VBZ", "IN", "DT", "VBG", "NN", "VBZ", "VBG", "IN", "DT", "NN", "IN", "CD", "NN", "VBZ", "IN", "DT", "NN", "VBZ", "VBG", ".", "NNP", "NNP", "VBD", "-NONE-", "DT", "JJ", "NN", "IN", "NN", "POS", "NNS", "``", "RB", "VBZ", "DT", "NN", "IN", "DT", "NN", "NNS", ".", "''", "DT", "NN", "NN", ",", "WDT", "IN", "NNS", "-NONE-", "VBZ", "VBN", "JJ", "NNS", "IN", "NN", "NNS", ",", "VBZ", "JJ", "IN", "NN", ".", "DT", "JJ", "NN", "IN", "CD", "NNS", "VBN", "-NONE-", "IN", "NNP", "NNP", "NNP", "NNPS", "NNP", "VBD", "IN", "JJ", "NNS", "VBD", "IN", "CD", "IN", "NNP", ".", "DT", "NNS", "VBP", "DT", "CD", "NN", "NN", "IN", "DT", "NN", "NN", "TO", "CD", "NN", ".", "NNP", "NNPS", "IN", "DT", "NN", "NN", ",", "DT", "NNP", "VBD", "-NONE-", "PRP", "MD", "VB", "DT", "JJ", "NN", "JJ", "NN", "RB", "IN", "VB", "DT", "JJ", "CD", "IN", "JJ", "NN", "POS", "RB", "NN", "IN", "DT", "JJ", "NN", ".", "DT", "NNP", "MD", "VB", "$", "CD", "CD", "-NONE-", "IN", "JJ", "NN", "IN", "-NONE-", "VBG", "$", "CD", "CD", "-NONE-", "IN", "NNS", ",", "VBG", "$", "CD", "CD", "-NONE-", "IN", "JJ", "JJ", "NNS", "CC", "$", "CD", "CD", "-NONE-", "IN", "JJ", "JJ", "NNS", ".", "CC", "RB", "IN", "-NONE-", "VB", "JJ", "JJ", "NNS", ",", "DT", "NNP", "MD", "VB", "$", "CD", "CD", "-NONE-", "IN", "JJ", ",", "JJ", "NNS", ":", "-NONE-", "RB", "VBG", "DT", "NN", "IN", "DT", "JJ", "NN", "JJ", "NN", "WDT", "-NONE-", "VBD", "VBN", "-NONE-", "IN", "DT", "JJ", "NN", "IN", "NNP", ".", "NN", "NN", "NNS", "VBD", "-NONE-", "DT", "NN", "-NONE-", "TO", "VB", "DT", "JJ", "NN", ",", "DT", "CD", "CD", "NN", "NN", "JJ", "NNP", "CD", ",", "VBZ", "JJ", "IN", "DT", "NN", "VBZ", "IN", "DT", "NN", "TO", "PRP$", "NN", "NN", ".", "DT", "NNS", "VBD", "-NONE-", "DT", "NNP", "POS", "NN", "VBZ", "-NONE-", "TO", "VB", "NN", "NN", "NNS", "VB", "NN", "NN", "IN", "DT", "NNS", ",", "-NONE-", "VBN", "NNS", "IN", "WRB", "DT", "NN", "MD", "VB", "-NONE-", ".", "DT", "NNP", "VBD", "-NONE-", "DT", "NN", "VBZ", "NN", "IN", "JJ", "CC", "JJ", "NN", "IN", "DT", "NN", "IN", "DT", "JJ", "NN", "NN", ".", "IN", "JJ", "NN", "VBZ", "NNS", ",", "DT", "NNP", "VBZ", "DT", "NN", "-NONE-", "TO", "VB", "JJ", "NN", "IN", "DT", "NN", ".", "RB", ",", "NNP", "NNS", "VBD", "RB", "JJR", "IN", "JJ", "NN", ".", "DT", "NN", "JJ", "NN", "IN", "CD", "NN", ",", "CC", "$", "CD", "-NONE-", "IN", "DT", "$", "CD", "-NONE-", "NN", "NN", ".", "DT", "NN", "VBD", "VBN", "-NONE-", "IN", "CD", "CD", "-NONE-", "TO", "VB", "CD", "NN", "VBN", "IN", "CD", "CD", "-NONE-", "TO", "VB", "CD", "NN", "NNP", ".", "DT", "JJS", "JJ", "NNS", "VBD", "VBN", "IN", "CD", "CD", "-NONE-", "TO", "VB", "CD", "NN", "VBN", "IN", "CD", "CD", "-NONE-", "TO", "VB", "CD", "NN", ".", "DT", "NN", "NN", "IN", "JJ", "NNP", "NNS", "VBD", "RB", "JJ", "IN", "CD", "NN", ",", "IN", "DT", "NN", "IN", "JJ", "NNS", "VBD", "RB", "JJR", "IN", "CD", "NN", "VBN", "IN", "CD", "NN", "NNP", ".", "NNP", "NNPS", "NNP", "POS", "$", "CD", "CD", "-NONE-", "NN", "NN", "VBD", "NN", "IN", "DT", "JJ", "NN", "NN", ".", "RB", ",", "RBS", "JJ", "NNS", "VBD", "JJ", "TO", "RB", "JJ", "IN", "CD", "NN", "JJR", ".", "IN", "PRP$", "JJS", "NN", "IN", "NN", "NNS", ",", "NNP", "POS", "NNPS", "NNP", "VBD", "IN", "JJ", "NNS", "VBD", "DT", "JJ", "NN", "IN", "CD", "NN", "IN", "NNP", "IN", "NN", "NNS", "VBD", "DT", "JJ", "NN", "IN", "CD", "NN", ".", "NNP", "POS", "VBD", "-NONE-", "DT", "NNS", "VBP", "IN", "DT", "CD", "NN", "JJ", "NN", "IN", "JJ", "NNP", "NNS", "CC", "NNS", ".", "JJ", "NN", "VBZ", "NN", "NNS", "CC", "NN", "NN", ".", "IN", "DT", "NN", "TO", "NN", ",", "NNP", "POS", "VBD", "-NONE-", "JJ", "NNS", "VBD", "VBN", "-NONE-", "IN", "DT", "CD", "NN", "IN", "JJ", "NNP", "NNS", ",", "-NONE-", "RB", "VBN", "-NONE-", "IN", "CD", "NN", "IN", "JJ", "NNS", ".", "NN", "NNS", "VBD", "DT", "NN", "RB", ".", "``", "RB", "DT", "CD", "NN", "NN", "IN", "DT", "JJ", "JJ", "NNP", "NN", "VBZ", "RB", "VBN", "DT", "CD", "NN", "NN", "IN", "NN", "NNS", ",", "''", "VBD", "-NONE-", "NNP", "POS", "NN", "NNP", "NNP", "IN", "NN", "POS", "NN", "NN", ".", "``", "JJ", "NN", "IN", "NNS", "IN", "NN", "VBP", "VBN", "VBN", "-NONE-", "VBG", ",", "''", "PRP", "VBD", "-NONE-", ".", "NNP", "POS", "VBD", "-NONE-", "DT", "JJ", "NN", "NN", "NN", "IN", "CD", "NN", "JJ", "NNS", "VBD", "IN", "CD", "NN", "IN", "NNP", ".", "NNP", "NNPS", "NN", "NNS", "VBD", "RB", "JJR", "CC", "VBD", "NNS", "IN", "DT", "NNP", "NN", ".", "NNP", "NNP", "POS", "CD", "NN", "NN", "IN", "NNP", "NN", "VBD", "IN", "CD", "CD", ",", "RB", "CD", ",", "CC", "PRP$", "CD", "CD", "NN", "NN", "IN", "CD", "CD", ",", "RB", "RB", "CD", ".", "DT", "NNP", "NNP", "CD", "NN", "NNS", "VBD", "VBG", "CD", "NN", "TO", "DT", "JJ", "NN", "NN", ".", "NN", "VBD", "JJ", "IN", "JJ", "NNS", ",", "IN", "DT", "JJ", "NNS", "VBN", "-NONE-", ".", "NNP", "NNPS", "JJ", "NNS", "VBD", "RB", "JJ", "TO", "RB", "CD", "NN", "IN", "JJ", ",", "JJ", "NN", "RB", "TO", "NN", "POS", "NN", "NN", ".", "DT", "$", "CD", "CD", "-NONE-", "NN", "IN", "NN", "NN", "NN", "NNS", "IN", "DT", "NNP", "NNP", "NNPS", "NNP", "NNP", "VBD", "RB", "VBN", "-NONE-", "IN", "-NONE-", "VBG", "RB", "VBN", "-NONE-", "IN", "DT", "NNP", "NNP", "NNP", "NN", ".", "DT", "NN", "IN", "DT", "NN", "NN", "VBD", "-NONE-", "TO", "VB", "IN", "DT", "NN", "IN", "DT", "NN", ",", "CC", "NN", "NNS", "VBD", "IN", "DT", "NN", "IN", "NNS", ",", "VBG", "DT", "NN", "IN", "NN", "NN", ",", "VBD", "JJ", ".", "DT", "NN", "MD", "VB", "VBN", "-NONE-", ",", "RB", "IN", "DT", "VBN", "NN", ",", "RB", "RB", "IN", "JJ", "NN", ",", "VBG", "TO", "DT", "NN", "NN", ".", "DT", "$", "CD", "CD", "-NONE-", "NN", "IN", "NNP", "NNP", "NNP", "NNP", "NNP", ",", "NNP", ",", "NN", "NN", "NNS", "VBD", "RP", "TO", "DT", "JJ", "NN", "CC", "MD", "VB", "VBN", "-NONE-", "IN", "JJR", "NNS", "NN", ",", "VBG", "TO", "DT", "NN", "IN", "NN", "NN", "NNP", "NNP", "CC", "NNP", "NNPS", "NNP", ".", "DT", "NNP", "NNP", "NNS", "VBD", "RB", "VBN", "-NONE-", "-NONE-", "TO", "VB", "IN", "CD", "NN", "IN", "CD", "TO", "CD", "NN", "IN", "-NONE-", "VBG", "DT", "NN", "NN", ",", "DT", "NN", "IN", "$", "CD", "CD", "-NONE-", "JJ", "NN", "JJ", "NN", "NN", "NNS", "IN", "NNP", ",", "NNP", ",", "RB", "VBD", "JJ", "NN", "NN", ".", "PRP", "VBD", "RB", "VBN", "-NONE-", "-NONE-", "TO", "VB", "IN", "CD", "NN", "IN", "CD", "TO", "CD", "NN", "IN", "NNP", "NNP", "JJ", "JJ", "NNS", "VBD", "-NONE-", "EX", "VBD", "JJ", "NN", "IN", "NNP", "NNS", "RB", "IN", "NNP", "POS", "JJ", "NN", "NN", "NN", ".", "IN", "RB", ",", "PRP", "VBD", "-NONE-", "-NONE-", ",", "NNS", "VBP", "JJ", "IN", "DT", "JJ", "NN", "WDT", "-NONE-", "MD", "VB", "DT", "NN", "TO", "VB", "DT", "NN", "TO", "JJR", "IN", "CD", "NN", ".", "PRP", "VBZ", "RB", "VBN", "-NONE-", "TO", "VB", "DT", "JJ", "JJ", ",", "CD", "CD", "NN", "NN", ".", "NNS", "TO", "DT", "NN", "VBP", "VBN", "IN", "PRP", "MD", "VB", "DT", "CD", "CD", "NN", "NN", ",", "CC", "IN", "DT", "JJ", "NN", ",", "DT", "CD", "NN", "NN", "JJ", "NNP", "CD", ",", "MD", "VB", "VBN", "-NONE-", "IN", "CD", "CD", "NNS", ".", "RB", ":", ":", "IN", "NNP", ",", "DT", "NN", "NN", "CD", "CD", "NN", "NN", "JJ", "CD", "VBD", "IN", "NNS", "NNS", "JJ", "IN", "CD", "-NONE-", "TO", "VB", "CD", "NN", ".", ":", "IN", "NNP", ",", "DT", "NN", "CD", "CD", "NN", "NN", "JJ", "CD", "VBD", "CD", "TO", "CD", "CD", "-NONE-", "TO", "VB", "CD", "NN", ".", "DT", "CD", "NN", "NNS", "JJ", "CD", "VBD", "CD", "TO", "CD", "CD", "-NONE-", "TO", "VB", "CD", "NN", ".", "NNP", "CC", "NNP", "POS", "NNP", "VBD", "TO", "NN", "IN", "NN", "DT", "NN", "IN", "IN", "$", "CD", "CD", "-NONE-", "IN", "NN", ".", "DT", "NN", "NN", "VBD", "-NONE-", "DT", "NN", "CC", "NN", "NN", "POS", "NN", "NN", "VBZ", "NN", "NN", "``", "IN", "DT", "JJ", "NN", "''", "CC", "PRP", "VBD", "NNP", "POS", "VBN", "JJ", "NN", "IN", "$", "CD", "CD", "-NONE-", "IN", "DT", "NN", "VBD", "NNP", "CD", ".", "NNPS", "NNP", "POS", "NN", "NN", "NN", "VBD", "CD", "NN", ",", "RB", "IN", "NNS", "VBG", "IN", "NNP", "NNP", "VBD", "NNS", "$", "CD", "CD", "-NONE-", ".", "NN", "VBD", "TO", "$", "CD", "CD", "-NONE-", ",", "CC", "CD", "NNS", "DT", "NN", ",", "IN", "$", "CD", "CD", "-NONE-", ",", "CC", "CD", "NNS", "DT", "NN", ",", "VBG", "NN", "VBD", "NN", "NNS", "IN", "$", "CD", "CD", "-NONE-", ",", "RB", "IN", "$", "CD", "CD", "-NONE-", "DT", "NN", "IN", ".", "CC", "NN", "VBD", "TO", "$", "CD", "CD", "-NONE-", "IN", "$", "CD", "CD", "-NONE-", ".", "NNPS", "VBD", "IN", "DT", "NNP", "NN", "JJ", "NN", "MD", "VB", "IN", "DT", "NN", "JJ", "NN", "IN", "JJR", "IN", "$", "CD", "CD", "-NONE-", ".", "DT", "NN", "POS", "NNS", "IN", "JJ", "NN", "NNS", "VBD", "CD", "NN", "IN", "DT", "JJS", "NN", ",", "IN", "PRP", "VBD", "$", "CD", "CD", "-NONE-", "IN", "PRP$", "JJ", "NN", "NN", ",", "VBN", "IN", "NNS", "IN", "$", "CD", "CD", "-NONE-", "DT", "NN", "IN", ".", "NNPS", "POS", "NN", "NNS", "NN", ",", "WDT", "-NONE-", "VBZ", "PRP$", "NN", "NN", "NN", "NNS", ",", "VBD", "NNS", "IN", "$", "CD", "CD", "-NONE-", ",", "VBN", "IN", "DT", "NN", "IN", "$", "CD", "CD", "-NONE-", "JJ", "NN", ".", "IN", "DT", "JJ", "CD", "NNS", ",", "NN", "VBD", "$", "CD", "CD", "-NONE-", ",", "VBN", "IN", "DT", "NN", "IN", "$", "CD", "CD", "-NONE-", "IN", "DT", "CD", "NN", ".", "DT", "JJ", "NNS", "VBD", "DT", "$", "CD", "CD", "-NONE-", "NN", "IN", "DT", "CD", "JJ", "NN", "IN", "VBG", "JJ", "NN", "CC", "NN", "NNS", ".", "DT", "NNP", "NNP", "IN", "NNP", "CC", "NNP", "VBD", "DT", "NN", "IN", "DT", "JJ", "NN", "IN", "NNP", "NNP", "NNP", "POS", "VBN", "NN", "IN", "NNP", "NNP", "NNP", "NNP", ".", "DT", "NN", "VBD", "-NONE-", "PRP", "VBD", "DT", "NN", "TO", "DT", "NNPS", "CC", "NNPS", "NNP", "IN", "IN", "DT", "NN", "POS", "JJ", "NNS", "IN", "DT", "NNP", "NN", "IN", "NN", "IN", "NN", "NNS", ".", "NNP", "NNP", ",", "DT", "NNP", "JJ", "NN", ",", "VBD", "IN", "NNP", "-NONE-", "PRP", "VBD", "VBN", "PRP$", "NNP", "NNP", "NNP", "NN", "TO", "NNP", "NNP", "NNP", ",", "DT", "NNP", "NN", "IN", "DT", "NN", "NN", ",", "IN", "#", "CD", "CD", "-NONE-", "-LRB-", "$", "CD", "CD", "-NONE-", "-RRB-", ".", "NNP", "NNP", "VBZ", "DT", "NN", "IN", "NNP", "POS", "NNP", "NNP", ".", "NNP", "NNS", "MD", "RB", "RB", "VB", "IN", "DT", "NN", ",", "CC", "PRP", "VBD", "-NONE-", "DT", "NN", "IN", "NNP", "VBZ", "RB", "VBN", "VBN", "-NONE-", ".", "NNP", "NNP", ",", "WDT", "-NONE-", "VBZ", "CD", "NNS", "IN", "DT", "NNP", ",", "VBD", "CD", "NN", "NN", "IN", "#", "CD", "CD", "-NONE-", ".", "NNP", "NNP", "NNP", ",", "DT", "JJ", "NN", "IN", "NNP", "NNP", "POS", "JJ", "NN", ",", "VBZ", "-NONE-", "TO", "VB", "DT", "NN", "NN", "WDT", "-NONE-", "MD", "VB", "IN", "DT", "NNP", "NNP", "IN", "DT", "NN", "NN", ":", "JJ", "NN", ".", "DT", "NNP", "NNP", "POS", "NN", ",", "WDT", "-NONE-", "VBZ", "VBN", "-NONE-", "NN", ",", "VBZ", "VBN", "-NONE-", "IN", "NN", "NNS", "CC", "NNS", "RB", "RB", "JJR", "IN", "DT", "NNP", "NN", "POS", "NN", "-NONE-", "TO", "VB", "NN", "NNS", "WDT", "-NONE-", "VBP", "TO", "JJ", "NN", ".", "DT", "NN", "POS", "NN", "MD", "VB", "NNS", ",", "RB", "DT", "WDT", "-NONE-", "VBP", "NN", ",", "RB", "TO", "$", "CD", "CD", "-NONE-", "DT", "NN", ".", "DT", "NN", "VBZ", "IN", "DT", "NN", "RB", "TO", "NN", "NNS", "CC", "RB", "VBZ", "IN", "NN", "DT", "NNP", "POS", "NN", "IN", "JJ", "NN", ".", "IN", "NN", "IN", "DT", "NNP", "NNP", "CC", "NNP", "NNP", ",", "NNP", "NNP", "VBZ", "RB", "JJ", "NN", "IN", "JJ", "NN", ".", "NNS", "JJ", "TO", "DT", "NN", "NN", "VBD", "-NONE-", "NNP", "NNP", "POS", "NN", "VBZ", "-NONE-", "TO", "VB", "RB", "DT", "VBN", "JJ", "NN", "IN", "JJ", "NN", "NNS", "WDT", "-NONE-", "VBP", "TO", "NN", "NN", ",", "IN", "JJ", "NNS", "MD", "VB", "VBN", "-NONE-", "JJ", ".", "NNP", "NNP", "POS", "JJ", "NN", "VBZ", "-NONE-", "TO", "VB", "NNS", "IN", "CD", "CD", "NNS", ":", "RB", "IN", "DT", ":", "IN", "DT", "NN", "CD", ".", "IN", "JJ", "NNS", "VBD", "RB", "JJ", ",", "NNS", "VBD", "-NONE-", "DT", "NNP", "NN", "MD", "VB", "DT", "NN", "POS", "NN", "IN", "DT", "NN", "IN", "NNS", "POS", "NN", "NNS", ".", "DT", "NN", "VBD", "VBN", "VBN", "-NONE-", "IN", "NNS", "CC", "VBN", "-NONE-", "IN", "NNS", "IN", "PRP", "VBD", "-NONE-", "PRP", "MD", "VB", "PRP$", "NN", ".", "PRP", "RB", "MD", "VB", "DT", "JJ", "JJ", "NN", "IN", "-NONE-", "VBG", "NNS", "NNS", "IN", "NNS", ".", "IN", "NN", ",", "PRP", "VBZ", "VBN", "-NONE-", "TO", "VB", "DT", "JJ", "NN", "WDT", "-NONE-", "MD", "VB", "-NONE-", "VB", "DT", "JJ", "NNS", "IN", "DT", "JJS", "JJ", "NNS", "IN", "DT", "NN", ",", "-NONE-", "VBG", "PRP$", "NNS", "IN", "JJ", "NNS", "IN", "PRP$", "JJ", "NNS", ".", "DT", "NN", ",", "-NONE-", "VBG", "TO", "PRP$", "NN", "IN", "-NONE-", "VBG", "NN", "NNS", ",", "VBZ", "RB", "VBN", "NN", ".", "NNP", "NNP", "POS", "NN", "VBD", "VBN", "-NONE-", "TO", "VB", "PRP$", "NN", "NN", "TO", "JJ", "NN", "NNS", ",", "RB", "IN", "DT", "NN", "-NONE-", "TO", "VB", "JJ", "NNS", "IN", "JJ", "NNS", "WP", "-NONE-", "VBP", "IN", "NN", ".", "PRP", "-NONE-", "VBZ", "RB", "JJ", ",", "RB", ",", "IN", "NN", "IN", "DT", "NN", "MD", "VB", "JJ", "RB", "-NONE-", "TO", "VB", "DT", "JJ", "NN", "TO", "DT", "NNP", "NNP", "POS", "NN", "NN", ".", "IN", "DT", "JJ", "NN", "MD", "VB", "TO", "DT", "JJS", "NNS", ",", "PRP", "MD", "RB", "VB", "DT", "NN", "IN", "NNS", ",", "JJ", "IN", "DT", "NN", ",", "WDT", "-NONE-", "RB", "VBP", "VBN", "JJ", "NN", "NN", "CC", "VBP", "JJ", "NNS", ".", "NNS", "VBG", "DT", "IN", "DT", "JJR", "NNS", "VBP", "VBN", "RB", "VBG", "IN", "DT", "NNP", "NNP", "-NONE-", "TO", "VB", "NNS", "-NONE-", "-NONE-", "TO", "VB", "IN", "DT", "NN", "NN", "-NONE-", "-NONE-", "TO", "VB", "PRP$", "NN", "NNS", "-NONE-", ".", "NNP", "NNP", "NNP", "NNPS", "NNP", "VBD", "-NONE-", "PRP$", "NN", ",", "NNP", "NNP", "NNP", ",", "MD", "VB", "RB", "IN", "NN", "TO", "JJ", "NNS", "IN", "NNP", ",", "NNP", ".", "NNP", "NNP", ",", "WP", "-NONE-", "VBD", "DT", "NNP", "NNP", ",", "JJ", "JJ", "NN", "NNS", "NN", "RB", ",", "VBD", "-NONE-", "PRP", "MD", "VB", "DT", "JJ", "NN", "NN", "IN", "DT", "NN", ",", "WDT", "-NONE-", "RB", "VBD", "DT", "NN", "NN", ".", "RBR", "DT", "NN", "NNP", "NNP", "NNP", ",", "NNP", ",", "VBD", "CD", "NN", "IN", "NNP", "NNP", "-NONE-", "CC", "VBZ", "DT", "NN", "-NONE-", "TO", "VB", "DT", "JJ", "CD", "NN", "IN", "NNP", "NNP", "NNP", "JJ", "NN", ".", "NNP", "NNP", ",", "NN", "IN", "NNP", "NNP", ",", "VBD", "-NONE-", "PRP", "MD", "VB", "NNP", "NNP", "POS", "NNS", "IN", "DT", "NN", "VBZ", "RB", "VBN", "-NONE-", "DT", "NN", ".", "DT", "NN", "IN", "NNS", "-NONE-", "-NONE-", "TO", "VB", "DT", "NN", "IN", "-NONE-", "VBG", "RB", "RB", "RB", "RB", "-NONE-", ".", "JJ", "NNS", "VBD", "VBN", "-NONE-", "VBG", "DT", "NNP", "CD", "NN", "-NONE-", "TO", "VB", ":", "CC", "RB", "RB", "VB", "-NONE-", ":", "DT", "NN", "CC", "NNS", "NNS", "IN", "NNS", "IN", "VBN", "NN", ".", "IN", "DT", "NNP", "NNP", ",", "DT", "``", "NN", "NN", "''", "VBZ", "VBN", "-NONE-", "IN", "NN", "WRB", "DT", "NNP", "NNS", "VBP", "CC", "VBP", "CD", "NNS", "-NONE-", ".", "DT", "NN", "NN", "VBZ", "NN", "NNS", "IN", "DT", "JJ", "NN", "NN", "WDT", "-NONE-", "VBZ", "IN", "NNS", "IN", "NN", "CC", "NN", "NNS", ".", "IN", "DT", "NNP", "NNP", "NNP", ",", "NNP", "CD", "NNS", "VBP", "RB", "VBN", "-NONE-", "TO", "VB", "JJ", "IN", "CD", "NNS", "IN", "DT", "JJ", "NN", "POS", "NN", "IN", "PDT", "DT", "NN", ".", "IN", ",", "WRB", "NN", "VBZ", "-NONE-", ",", "DT", "NNP", "NNS", "VBP", "CD", "NNS", "IN", "DT", "JJ", "NN", "POS", "NN", ",", "DT", "JJ", "NN", "NN", "VBZ", "NN", ".", "RB", ",", "DT", "NNS", "VBP", "DT", "NNP", "NNP", "TO", "VB", "NN", "IN", "CD", "NN", "IN", "DT", "NNP", "NNP", "NNP", "NNP", "VBZ", "CD", "NNS", ",", "CC", "IN", "CD", "JJR", "NNS", "IN", "DT", "NNP", "VBZ", "DT", "JJ", "CD", "NNS", "IN", "DT", "JJ", "NN", ".", "NNP", "NNP", ":", "DT", "``", "NNP", "NNP", "NNP", "''", "NNP", "VBD", "VBN", "-NONE-", "IN", "DT", "NNP", "NNP", "NNP", "NNP", "IN", "NNP", "CD", ",", "-NONE-", "TO", "VB", "JJ", ",", "JJ", "NN", "NN", ".", "DT", "JJR", "NN", ",", "DT", "NNP", ",", "VBD", "VBN", "-NONE-", "IN", "CD", ".", "-NONE-", "VBN", "-NONE-", "IN", "NN", "NNS", "CC", "NNS", "-NONE-", "TO", "VB", "NNS", "IN", "DT", "NN", ",", "NNP", "VBZ", "IN", "CD", "NN", "IN", "DT", "NNS", "VBN", "-NONE-", "IN", "DT", "NN", ".", "NNPS", "NNPS", ":", "NNS", "-NONE-", "TO", "VB", "-LRB-", "IN", "DT", "WP", "-NONE-", "VBP", "VBN", "DT", "NN", "-RRB-", "CC", "VBP", "-LRB-", "IN", "DT", "WP", "-NONE-", "VBD", "CD", "-RRB-", "DT", "NN", "IN", "DT", "JJ", "NN", "CC", "JJ", "NN", "IN", "DT", "JJ", "NN", "IN", "DT", "JJ", "NN", ".", "JJS", "NNS", "VBP", "RB", "VBN", "-NONE-", "IN", "DT", "JJ", "NN", "IN", "PRP", "VBP", "JJ", ".", "NN", ":", "JJ", "NNS", ",", "RB", "NNS", ",", "VBP", "DT", "NN", "NN", "IN", "-NONE-", "VBG", "CC", "VBG", "DT", "NN", "IN", "NNS", "-NONE-", "-NONE-", "TO", "VB", "DT", "NN", "IN", "DT", "JJ", "NN", "NN", "JJ", "IN", "DT", "NNP", "CD", ".", "JJ", "JJ", "NN", "NNS", "VBP", "JJ", "NN", "NNS", ",", "-NONE-", "VBG", "PRP$", "NNS", "IN", "NNS", "WRB", "JJ", "-NONE-", "TO", "VB", "RB", "-NONE-", ".", "NN", "NN", ":", "DT", "JJ", "NN", "IN", "JJ", "NN", "NN", "NNS", "VBG", "DT", "JJ", "NN", "CC", "NN", "IN", "CD", "CC", "JJR", "NNS", ".", "NN", ":", "RB", ",", "DT", "NNP", "NNP", "NN", "WP", "-NONE-", "VBZ", "JJ", "NN", "NNS", ".", "DT", "JJS", "NN", ",", "RB", "VBN", "-NONE-", "``", "NN", "NNS", "''", "IN", "IN", "PRP$", "NNS", "IN", "NN", "CC", "NN", ",", "VBP", "DT", "NN", "NN", "CC", "NN", "NNS", "WDT", "-NONE-", "VBP", "RB", "VBN", "-NONE-", "IN", "NN", "NN", ".", "NN", "NN", ":", "-NONE-", "VBG", "CC", "VBG", "NNS", "IN", "NNS", "IN", "IN", "DT", "JJ", "NN", "-NONE-", "VBG", "VBG", "NNS", "IN", "NN", "NNS", "CC", "NNS", ".", "NNS", "VBP", "IN", "-NONE-", "VBG", "-NONE-", "TO", "VB", "JJ", "NN", "NNS", "IN", "NNS", "CC", "DT", "NN", "NNS", "CC", "NNS", ".", "IN", "NNS", "VBP", "RB", "``", "JJR", "''", "IN", "NNS", ",", "IN", "NN", ",", "DT", "NN", "MD", "VB", "NNS", "CC", "VB", "NNS", ".", "NN", "NNS", ":", "NNS", "-NONE-", "TO", "VB", "CC", "VB", "DT", "NN", "NN", "IN", "DT", "NN", "NN", "IN", "DT", "JJ", "NN", ".", "DT", "NN", "NN", "VBZ", "VBN", "-NONE-", "IN", "-NONE-", "VBG", "DT", "NN", "NN", "IN", "DT", "VBN", "NN", ".", "DT", "RBS", "JJ", "JJ", "NNS", "VBP", "NNS", "NNS", "IN", "NNP", "CC", "NNP", "POS", "JJ", "NN", "-LRB-", "VBN", "-NONE-", "IN", "DT", "NNP", "NNP", "NNP", "-RRB-", ":", "DT", "NNP", "NNP", "NNP", ",", "DT", "JJ", "NN", "WDT", "-NONE-", "VBZ", "DT", "NNP", "NNP", "NNP", "NNP", "-LRB-", "VBN", "-NONE-", "IN", "DT", "NNP", "NNP", "IN", "NNP", "-RRB-", ":", "CC", "DT", "NNP", "CD", "NNS", "-LRB-", "VBN", "-NONE-", "IN", "DT", "NNP", "NNP", "NNPS", "NNP", ",", "CC", "VBN", "-NONE-", "IN", "CD", "NNS", "VBN", "-NONE-", "IN", "DT", "NNP", "CD", "-RRB-", ".", "NN", "NNS", ":", "NNS", "VBP", "NNS", "DT", "NN", "-NONE-", ",", "CC", "RB", "DT", "NN", "-NONE-", ",", "-NONE-", "TO", "VB", "-LRB-", "DT", "NN", "-RRB-", "CC", "VB", "-LRB-", "DT", "NN", "-RRB-", "DT", "VBN", "NN", "IN", "DT", "VBG", "NN", "IN", "DT", "NN", "NN", "IN", "DT", "JJ", "NN", ",", "VBN", "-NONE-", "IN", "DT", "NN", "NN", ".", "IN", "NN", "NNS", ",", "DT", "VBG", "NN", "MD", "VB", "DT", "NN", "NNS", "NN", "CC", "DT", "NN", "NN", "IN", "DT", "NN", "NN", ".", "IN", "NN", ",", "EX", "VBP", "NNS", "IN", "DT", "NNP", "CD", "NNS", "NN", "CC", "IN", "DT", "NNP", "CD", "NN", ".", "NN", ":", "DT", "NN", "VBG", "IN", "DT", "NN", "IN", "DT", "VBN", "NN", "VBD", "IN", "DT", "JJR", "NN", "IN", "DT", "JJ", "NN", "IN", "DT", "NN", ".", "NNP", "NNP", "NN", "NNP", "NNP", "VBD", "JJ", "NN", "-NONE-", "TO", "VB", "JJR", "IN", "CD", "NN", "IN", "NNP", "NNPS", "POS", "NN", ",", "NNP", "NNP", ",", "-NONE-", "VBG", "-NONE-", "PRP", "MD", "VB", "NN", "IN", "DT", "NN", "POS", "JJ", "NN", ".", "IN", "NN", "NNS", "VBD", "-NONE-", "PRP", "VBD", "-NONE-", "NNP", "NNP", "MD", "VB", "DT", "NN", "IN", "PRP", ",", "DT", "NN", "IN", "PRP$", "NNP", "NNP", "NNPS", "NNP", "MD", "VB", "PRP$", "NN", "IN", "-NONE-", "VBG", "-NONE-", "VB", "DT", "VBN", "JJ", "NN", ".", "PDT", "DT", "NN", "IN", "JJ", "JJ", "NN", "VBZ", "JJ", "IN", "DT", "NN", "WDT", "-NONE-", "MD", "VB", "NN", ".", "CC", "DT", "NNS", "VBP", "VBN", "JJ", "NNS", "-NONE-", "TO", "VB", "DT", "NN", "IN", "PRP$", "NN", "NNS", ",", "WDT", ":", "IN", "-NONE-", "VBG", "JJR", "NN", ":", "PRP", "RB", "VBD", "-NONE-", ".", "NN", "NN", "NNS", "VBD", "VBN", "-NONE-", "IN", "DT", "NNP", "NN", "CC", "VBD", "IN", "PRP", "VBZ", "RB", "VB", "-NONE-", "NNP", "NNP", "MD", "RB", "VB", "NN", ".", "``", "RB", "PRP", "RB", "VBZ", "-NONE-", "TO", "VB", "NN", "VB", ",", "''", "VBD", "-NONE-", "CD", "NN", "NN", ".", "CD", "NN", "NN", "VBD", "-NONE-", "NNP", "NNP", "MD", "VB", "VBG", "-NONE-", "TO", "VB", "PRP", "IN", "DT", "JJ", "NN", "WP", "-NONE-", "MD", "VB", "NNP", "NNP", "NNP", "NNP", "VB", "DT", "VBN", "NN", "NN", ".", "NNP", "NNP", ",", "PRP", "VBD", "-NONE-", "-NONE-", ",", "MD", "VB", "NNP", "NNPS", "NNP", ",", "WDT", "-NONE-", "VBZ", "VBN", "IN", "DT", "NN", "NN", ".", "NNP", "VBD", "RB", "VBN", "CC", "VBN", "NNP", "NN", "IN", "DT", "JJ", "NN", "IN", "-NONE-", "VBG", "DT", "JJ", "NN", "IN", "DT", "NN", "NNP", "CD", "IN", "DT", "$", "CD", "CD", "-NONE-", ",", "$", "JJ", "-NONE-", "NN", "NN", ".", "NNP", "VBD", "DT", "CD", "NN", "NNP", "NN", "RB", "DT", "NN", "IN", "DT", "JJ", "NN", "IN", "$", "CD", "-NONE-", "DT", "NN", ",", "CC", "VBD", "PRP$", "NN", "TO", "CD", "NN", "IN", "NNP", "VBD", "DT", "NN", "IN", "NNS", "JJR", "IN", "$", "CD", "-NONE-", "DT", "NN", ".", "NN", "NNS", "VBD", "-NONE-", "NNP", "VBZ", "RB", "VBN", "PRP$", "JJ", "NNP", "NN", ",", "CC", "RB", "MD", "RB", "VB", "DT", "NN", "-NONE-", "TO", "VB", "DT", "NN", "RB", "-NONE-", "TO", "VB", "DT", "NN", "IN", "PRP$", "NN", ".", "CC", "DT", "JJ", "NN", "IN", "NNP", "POS", "JJ", "NN", "VBZ", "RB", "VBN", "RB", "VBN", "-NONE-", ".", "DT", "NN", "VBZ", "DT", "JJ", "NN", "TO", "NN", "NN", "IN", "NNP", "NNPS", ",", "DT", "NNP", "NNP", "NN", "NN", ",", "VBZ", "VBN", "JJR", "IN", "CD", "NN", "IN", "NNP", "NN", "CC", "MD", "VB", "DT", "NNP", "NN", "POS", "NN", "-NONE-", "JJ", "NN", "-NONE-", "TO", "VB", "JJ", ".", "NN", "IN", "NNP", "VBZ", "VBN", "DT", "NN", "TO", "VB", "IN", "DT", "JJ", "IN", "$", "CD", "-NONE-", ".", "NNP", "POS", "NN", "VBD", "IN", "DT", "NN", "VBD", "NN", ".", "IN", "JJ", "NNP", "NNP", "NNP", "NNP", "NN", ",", "DT", "NNS", "VBD", "IN", "$", "CD", "-NONE-", ",", "RB", "$", "CD", "-NONE-", ".", "NNP", "MD", "RB", "VB", "IN", "DT", "NN", "IN", "PRP", "VBD", "VBN", "VBN", "-NONE-", "IN", "DT", "NN", "IN", "NNP", ".", "NNP", "VBD", "DT", "NN", "CC", "MD", "RB", "VB", ".", "DT", "NN", "NNS", "VBD", "JJ", ",", "-NONE-", "VBG", "-NONE-", "PRP", "-NONE-", "VBD", "JJ", "IN", "NNP", "NNP", "VBD", "DT", "NN", "RB", "-NONE-", "TO", "VB", "-NONE-", "VB", "DT", "NN", "IN", "DT", "VBG", "NNP", "NN", "IN", "NNP", ".", "NNP", "NNP", "VBZ", "VBN", "-NONE-", "TO", "VB", "IN", "JJ", "NNS", "IN", "NNP", "POS", "NNP", "NNP", ".", "DT", "NN", "VBD", "JJ", "IN", "-NONE-", "VBG", "NNP", "NNP", "TO", "VB", "DT", "NN", "NN", "NN", "IN", "NNP", "NNP", "NNP", ".", "NNP", "NNP", "POS", "NN", "IN", "DT", "NN", "VBD", "PRP", "VB", "DT", "JJ", "NN", "IN", "NNP", "IN", "NNP", "CD", ".", "CC", "DT", "JJ", "NN", "MD", "VB", "-NONE-", "TO", "VB", "DT", "NN", "IN", "NN", "IN", "DT", "NN", "POS", "NNS", ",", "RB", "PRP$", "NNS", "CC", "DT", "JJ", "NNS", "POS", "NN", ",", "WDT", "-NONE-", "VBZ", "VBN", "DT", "NN", ".", "NNP", "NNP", "NNP", "VBD", "VBN", "-NONE-", "IN", "NNP", "NNP", ",", "NNP", "NNP", ",", "IN", "DT", "JJ", "NN", "IN", "NNP", "NNS", "VBD", "DT", "NN", ",", "DT", "NNS", "VBD", "-NONE-", "-NONE-", ".", "NNP", ",", "WDT", "-NONE-", "VBD", "VBN", "RB", "CD", "NN", "IN", "NNP", ",", "MD", "VB", "IN", "CD", "CD", "NNS", ",", "RB", "VBN", "-NONE-", "IN", "RB", "$", "CD", "CD", "-NONE-", ",", "IN", "DT", "NN", "IN", "NNP", ".", "DT", "NNS", "NN", "MD", "VB", "CD", "NN", "IN", "DT", "NNP", "NN", ".", "NNP", "NNS", ",", "WDT", "-NONE-", "VBD", "-NONE-", "TO", "VB", "VBN", "-NONE-", "IN", "DT", "NNP", "NNP", "NNP", "NNP", "IN", "DT", "NN", "IN", "JJ", "NN", "NN", ",", "VBD", "IN", "$", "CD", "-NONE-", ",", "RB", "CD", "NNS", ".", "NNP", "VBD", "IN", "$", "CD", "-NONE-", ",", "RB", "CD", "NNS", ".", "NNP", ",", "NNP", ",", "NNP", ",", "VBZ", "DT", "NN", "CC", "NNS", "VBG", "NN", ".", "PRP$", "NNS", "POS", "NNS", "VBP", "VBN", "-NONE-", "IN", "RB", "VBN", "NNP", "NNP", "CC", "NNPS", ".", "NNP", ",", "IN", "-NONE-", "VBN", ",", "RB", "VBD", "JJ", "NNS", "IN", "DT", "NN", "CC", "VBD", "JJ", "IN", "PRP$", "NNS", ".", "NNS", "VBD", "RB", "VBN", "-NONE-", ".", "NNP", "NNP", "NNP", ",", "NNP", "NNP", ",", "NNP", ",", "VBD", "-NONE-", "PRP", "VBD", "CD", "CD", "NNS", "-NONE-", ",", "CC", "IN", "CD", "NN", "-NONE-", ",", "IN", "PRP$", "JJ", "NN", "IN", "DT", "JJ", "NN", "IN", "$", "CD", "-NONE-", "DT", "NN", ",", "CC", "$", "CD", "CD", "-NONE-", ".", "DT", "NN", "VBZ", "NNP", "NNP", "NNP", "NNP", "POS", "NN", "TO", "CD", "NN", "IN", "CD", "NN", "CC", "MD", "VB", "-NONE-", "VB", "NNP", "NNP", "IN", "-NONE-", "VBG", "DT", "NN", "IN", "DT", "NNS", "NN", ".", "NNP", "NNP", "RB", "VBZ", "VBG", "-NONE-", "TO", "VB", "NNP", "NNP", "IN", "NN", "IN", "NNP", "NNP", ",", "DT", "NNP", "NN", ".", "DT", "NN", "VBN", "IN", "CD", "NN", "DT", "NNP", "NN", "IN", "PRP", "MD", "VB", "DT", "NN", "NN", "-NONE-", "TO", "VB", "NNS", "``", "-NONE-", "-NONE-", "TO", "VB", "NN", "NN", ",", "''", "VBG", "DT", "JJ", "NN", "IN", "DT", "NN", ".", "IN", "NNP", "NNP", "NNP", "NNP", "JJ", "NN", "NN", ",", "NNP", "NNS", "VBD", "CD", "NNS", "-NONE-", "TO", "VB", "IN", "$", "CD", "-NONE-", ".", "NNP", "NNP", "VBD", "-NONE-", "TO", "VB", "WP", "-NONE-", "VBD", "DT", "JJ", "NNS", ",", "-NONE-", "VBG", "-NONE-", "PRP", "VBP", "VBN", "RB", "-NONE-", "TO", "VB", "NNS", "WRB", "``", "DT", "NN", "VBZ", "IN", "DT", "NN", "-NONE-", ".", "''", "PRP", "VBD", ",", "``", "DT", "VBZ", "NN", "-NONE-", "-NONE-", "TO", "VB", "-NONE-", "IN", "NNP", "NNP", "CC", "PRP", "VBZ", "RB", "VBN", ",", "RB", ",", "-NONE-", "TO", "VB", "DT", "NN", "JJ", ".", "''", "CC", "NNP", "NNP", "VBD", "-NONE-", "DT", "NN", ",", "CC", "DT", "JJ", "NN", "VBN", "-NONE-", ",", "VBP", "IN", "NNP", "NNP", "VBZ", "VBG", "-NONE-", "JJ", ".", "NNP", "NNP", "CC", "NNP", "VBD", "-NONE-", "PRP", "VBD", "PRP$", "$", "JJ", "-NONE-", "NN", "IN", "NNP", "NNP", "JJ", "NN", "IN", "CD", "NN", "NNP", "NNP", "CD", ".", "DT", "NN", ",", "VBN", "-NONE-", "IN", "IN", "$", "CD", "CD", "-NONE-", "IN", "DT", "CD", "NN", "IN", "NNP", "IN", "NNP", "NNP", "VBZ", "RB", "RB", "VBN", "-NONE-", ",", "VBD", "VBN", "VBN", "-NONE-", "TO", "VB", "NNP", "CD", ".", "NNP", "NNP", ",", "WDT", "-NONE-", "VBZ", "IN", "CD", "CD", "IN", "NNP", "POS", "CD", "CD", "JJ", "NNS", "JJ", ",", "VBD", "IN", "IN", "CD", "NNS", "VBP", "VBN", "VBN", "-NONE-", "IN", "PRP$", "NN", ".", "NNP", "POS", "CD", "JJ", "NNS", "VBP", "VBN", "DT", "NN", "IN", "JJ", ".", "IN", "JJ", "NN", "IN", "DT", "NNP", "NNP", "NNP", "NNP", ",", "NNP", "NNS", "VBD", "IN", "$", "CD", "-NONE-", ",", "RB", "CD", "NNS", ".", "NNP", "VBZ", "DT", "JJ", "JJ", "NN", "NN", ".", "NNP", "NNP", "VBZ", "NNP", "NNP", "NNP", "NNP", ",", "NNP", "POS", "NN", ",", "CC", "NN", "NNS", "CC", "VBZ", "JJ", "NN", "NNS", "CC", "NN", "NNS", "NNS", ".", "NNP", "NNP", "NNP", "VBD", "JJ", "NN", "NNS", "IN", "DT", "JJ", "NN", "VBD", "NNP", "CD", ".", "DT", "NN", ",", "JJ", "NN", ",", "NNS", "CC", "NN", "NN", "RB", "VBD", "IN", "DT", "JJ", "DT", "IN", "JJ", "CD", "MD", "VB", "JJ", ".", "IN", "DT", "NN", ",", "NNP", "NNP", ",", "NN", ",", "VBD", "-NONE-", "JJ", "NN", "RB", "MD", "VB", "DT", "JJ", "NN", "POS", ",", "RB", "IN", "IN", "NN", "IN", "DT", "NN", "CC", "NN", "NNS", ".", "RB", ",", "PRP", "VBD", "-NONE-", "-NONE-", ",", "IN", "DT", "JJ", "NN", "VBZ", "RB", "JJ", ",", "NNP", "MD", "VB", "JJ", "-NONE-", "TO", "VB", "IN", "DT", "JJ", "DT", "CC", "IN", "JJ", "JJ", "CD", "POS", "NN", "NN", "IN", "$", "CD", "CD", "-NONE-", ".", "IN", "JJ", "CD", "POS", "JJ", "NN", ",", "NNP", "POS", "JJ", "NN", "VBD", "$", "CD", "CD", "-NONE-", ",", "CC", "CD", "NNS", "DT", "NN", ".", "DT", "VBZ", "IN", "VBG", "NNS", "IN", "$", "CD", "CD", "-NONE-", ",", "CC", "CD", "NNS", "DT", "NN", ",", "DT", "NN", "JJR", ".", "DT", "JJ", "NN", "VBZ", "DT", "JJ", "JJ", "NN", "NN", "IN", "DT", "JJ", "NN", "NN", "CC", "DT", "NN", "IN", "NN", "IN", "DT", "JJ", "NN", "NN", ",", "WDT", "-NONE-", "VBD", "JJ", "$", "CD", "CD", "-NONE-", ",", "CC", "CD", "NNS", "DT", "NN", ".", "NNS", "VBD", "CD", "NN", "TO", "$", "CD", "CD", "-NONE-", "IN", "$", "CD", "CD", "-NONE-", ".", "NNP", "NNP", "VBD", "IN", "PRP", "VBD", "RB", "VBN", "IN", "DT", "JJS", "NNS", "CC", "VBD", "DT", "RB", "JJ", "NN", "IN", "DT", "NN", "POS", "NNS", "NN", ".", "JJ", ",", "JJ", "NNS", "NNS", "VBD", "CD", "NN", "TO", "$", "CD", "CD", "-NONE-", "IN", "$", "CD", "CD", "-NONE-", ".", "DT", "CD", "NNS", "VBD", "JJR", "NN", "IN", "DT", "CD", "NNS", "VBD", "NNP", "CD", ".", "IN", "DT", "NN", ",", "NNS", "VBD", "IN", "NNP", "POS", "JJS", "NN", "IN", "NNS", "IN", "NNS", "CC", "NNS", ",", "-NONE-", "VBG", "RP", "NN", "IN", "DT", "JJ", "NN", ".", "DT", "NNS", "NN", ",", "WDT", "-NONE-", "RB", "VBD", "VBN", "RP", "-NONE-", "IN", "DT", "NN", "IN", "DT", "JJ", ",", "VBD", "PRP$", "NN", "NNS", "IN", "DT", "NN", "VB", "CD", "NN", "TO", "$", "CD", "CD", "-NONE-", "IN", "$", "CD", "CD", "-NONE-", ".", "IN", "DT", "NN", ",", "-NONE-", "VBN", "-NONE-", "IN", "DT", "NN", "IN", "DT", "NNP", "NN", "NN", ",", "NNS", "NNS", "RB", "VBD", ".", "NN", "NNS", "VBD", "CD", "NN", "IN", "DT", "NN", "CC", "CD", "NN", "IN", "DT", "NN", ",", "RB", "JJ", "TO", "JJR", "NN", "NN", "NN", ":", "DT", "JJ", "IN", "DT", "NNS", "VBD", "IN", "IN", "NNP", "CD", ".", "DT", "VBD", "RB", "VBN", "-NONE-", "IN", "DT", "NN", "IN", "NN", "NN", "NNS", "CC", "VBN", "NN", "IN", "JJ", "NN", "NNS", ".", "DT", "NN", "RB", "VBD", "NNS", "IN", "DT", "JJ", "NNS", "IN", "CD", "CC", "CD", "IN", "DT", "JJ", "JJ", "NN", "NN", ":", "RB", "DT", "NN", "NN", ",", "VBG", "TO", "NNS", ".", "IN", "JJ", "CD", ",", "DT", "NN", "VBD", "NN", "IN", "$", "CD", "CD", "-NONE-", ",", "CC", "$", "CD", "-NONE-", "DT", "NN", ",", "IN", "IN", "$", "CD", "CD", "-NONE-", ",", "CC", "$", "CD", "-NONE-", "DT", "NN", ",", "IN", "JJ", "CD", ".", "-NONE-", "VBG", "JJ", "NNS", "TO", "NN", "IN", "DT", "NN", ",", "NNS", "IN", "NN", "VBD", "$", "CD", "-NONE-", ",", "RB", "CD", "NN", "IN", "$", "CD", "-NONE-", "IN", "JJ", "CD", ".", "NNS", "IN", "DT", "NN", "VBD", "CD", "NN", "TO", "$", "CD", "CD", "-NONE-", "IN", "$", "CD", "CD", "-NONE-", "IN", "JJ", "CD", ".", "NNP", "NNP", "NNP", "VBD", "-NONE-", "PRP", "VBD", "NNS", "IN", "JJ", "IN", "PRP$", "JJ", "NN", "NNS", "IN", "CD", "NN", "TO", "CD", "NN", "-NONE-", ".", "DT", "NNP", ",", "JJ", "NN", ",", "WDT", "-NONE-", "VBZ", "IN", "DT", "JJ", "NN", "IN", "JJ", "NNS", "CC", "NNS", ",", "VBD", "-NONE-", "PRP$", "NN", "NNS", "VBP", "DT", "$", "CD", "-NONE-", "NN", "IN", "PRP$", "NN", "CD", "NN", "IN", "CD", "NNS", "IN", "NN", ",", "DT", "JJ", "JJ", "NN", "CC", "DT", "NN", "NN", ".", "DT", "NN", "RB", "VBZ", "IN", "IN", "$", "CD", "-NONE-", ".", "DT", "NN", "VBG", "DT", "JJ", "NNP", "NNP", "CD", "NN", ",", "IN", "CD", "NNS", "IN", "NN", "CC", "DT", "JJ", "JJ", "NN", "RB", "VBZ", "IN", "$", "CD", "-NONE-", ",", "RB", "IN", "$", "CD", "-NONE-", ".", "JJ", "NN", "NNS", "IN", "NNS", "VBG", "DT", "NNP", "CD", "CC", "CD", "NNS", ",", "WDT", "DT", "NNP", "NNS", "VBP", "-NONE-", ",", "RB", "VBP", "VBN", "VBG", "IN", "IN", "NN", "NNS", "VBP", "VBN", ".", "NN", "NN", "NNS", "NNS", "VBD", "IN", "NNS", "IN", "NNP", ",", "DT", "JJ", "NN", "CC", "NN", ",", "MD", "RB", "VB", "NN", "DT", "NN", "NN", "CC", "JJ", ".", "NNS", "RB", "VBD", "VBN", "-NONE-", "IN", "DT", "NN", "IN", "NNP", ",", "RB", "DT", "JJ", "NN", "CC", "NN", ",", "MD", "VB", "-NONE-", "TO", "VB", "DT", "JJ", "NN", "IN", "NN", ".", "IN", "NNS", "VBD", "-NONE-", "TO", "VB", "NNS", "NNS", ",", "JJ", "VBD", "JJ", "IN", "DT", "JJ", "NN", ",", "WDT", "-NONE-", "MD", "RB", "VB", "VBN", "-NONE-", ",", "NNS", "VBD", "-NONE-", "-NONE-", ".", "DT", "NNP", "CC", "NNP", "NNS", "VBD", "TO", "JJ", "JJ", "NNS", "IN", "CD", "NNS", "CC", "CD", "NNS", "IN", "PRP$", "JJS", "NNS", "IN", "DT", "NN", ".", "DT", "NNP", "NN", ",", "WDT", "-NONE-", "VBZ", "DT", "NNS", ",", "VBD", "IN", "CD", "NNS", ",", "RB", "CD", "NN", "DT", "NN", ".", "DT", "NNP", "NN", ",", "WDT", "-NONE-", "RB", "VBZ", "IN", "NNS", ",", "VBD", "IN", "DT", "NN", "IN", "CD", "NN", "TO", "CD", "NNS", ".", "DT", "NNP", "NN", "VBD", "PRP$", "JJ", "JJ", "NN", "IN", "CD", "NN", "DT", "NN", "TO", "CD", "NNS", ",", "IN", "JJ", "NN", "NNS", "VBD", "JJ", "NNS", ".", "VBG", "TO", "NNS", "VBN", "-NONE-", "IN", "JJ", "NN", "NNS", ",", "DT", "JJ", "NN", "VBD", "PRP$", "NN", "NNS", "IN", "PRP", "MD", "RB", "VB", "VBN", "-NONE-", "TO", "VB", "NN", "IN", "DT", "JJ", "CD", "NN", ",", "WDT", "-NONE-", "VBD", "NNP", "CD", ",", "CC", "DT", "CD", "NN", "IN", "IN", "PRP", "MD", "VB", "VBN", "-NONE-", "-NONE-", "TO", "VB", "NN", "IN", "NN", "NN", ".", "CD", "NN", ",", "NNP", "NNP", ",", "IN", "NNP", "NNPS", ",", "NNP", "NNP", ",", "VBD", "IN", "CD", "NN", "CC", "JJR", "IN", "NNP", "POS", "RB", "VBN", "NNS", "VBP", "IN", "NN", "CC", "MD", "RB", "VB", "NN", ".", "``", "DT", "VBZ", "DT", "NN", "WDT", "-NONE-", "MD", "VB", "VBN", "-NONE-", ",", "RB", "IN", "DT", "NN", "IN", "NN", ",", "''", "VBD", "-NONE-", "NNP", "NNP", ".", "NNP", "VBZ", "DT", "JJ", "NN", "-NONE-", "CC", "DT", "JJ", "NN", "-NONE-", "IN", "NN", "IN", "DT", "NN", ".", "DT", "NN", "TO", "-NONE-", "VBG", "JJR", "NN", "CC", "JJR", "NN", "VBD", "VBN", "VBN", "-NONE-", ",", "CC", "DT", "JJS", "NN", ",", "IN", "JJ", ",", "VBZ", "DT", "RBR", "JJ", "NN", "-NONE-", "IN", "-NONE-", "VBD", "VBN", "VBN", "-NONE-", ".", "IN", "DT", "JJ", "NN", "NN", ",", "NNP", "VBD", "VBN", "-NONE-", "TO", "VB", "CD", "CD", "NNS", "IN", "NN", ",", "DT", "NN", "IN", "CD", "CD", "NNS", "IN", "CD", ".", "PRP$", "CD", "NNS", "VBD", "VBN", "-NONE-", "TO", "VB", "CD", "NNS", "IN", "NN", "TO", "NNS", "IN", "CD", "CD", "NNS", "IN", "``", "PRP", "VBZ", "DT", "CD", "NNS", "WDT", "-NONE-", "VBP", "IN", "NN", "IN", "DT", "NN", "NN", ",", "''", "VBD", "-NONE-", "NNP", "NNP", ",", "NN", "IN", "NNP", "NNP", "NNP", ",", "NNP", "NNP", ".", "``", "NNS", "VBD", "VBN", "-NONE-", "DT", "RB", "-NONE-", "RB", "DT", "NN", "-NONE-", "TO", "VB", "NN", "CC", "DT", "NN", "NNS", "VBD", "VBN", "-NONE-", "TO", "VB", "VBN", "-NONE-", "TO", "VB", "VBN", "-NONE-", "''", "NN", ".", "IN", "DT", "NN", ",", "NNP", "NNP", "VBD", "-NONE-", "-NONE-", ",", "PRP", "VBZ", "VBN", "IN", "JJ", "CC", "DT", "NN", "IN", "DT", "CD", "NN", "VBZ", "VBN", "VBN", "-NONE-", "RB", ",", "RB", "IN", "DT", "NN", "NN", "VBZ", "CD", "NNS", "JJ", ".", "JJR", "IN", "DT", "NN", "IN", "DT", "NN", "VBN", "-NONE-", "IN", "NNP", "VBZ", "IN", "NN", "NN", ",", "VBG", "TO", "NNP", "NNP", ".", "RB", ",", "EX", "VBZ", "VBN", "DT", "NN", "-NONE-", "IN", "DT", "JJ", "NN", "TO", "NN", "IN", "JJ", "NNS", "IN", "NNS", "WDT", "-NONE-", "VBD", "RB", "VBN", "-NONE-", "IN", "NN", ",", "CC", "DT", "NN", "VBZ", "VBG", "VBN", "-NONE-", "RB", ",", "PRP", "VBD", "-NONE-", "-NONE-", ".", "RBS", "JJ", ",", "NNP", "NNP", "VBD", "-NONE-", "-NONE-", ",", "``", "JJ", "NNS", "VBD", "IN", "DT", "NN", "VBZ", "RB", "RB", "VBN", "VBN", "-NONE-", "IN", "DT", "NN", "IN", "NNS", ".", "''", "NNP", "NNP", ",", "NN", "NN", "IN", "NNP", "IN", "NNP", ",", "NNP", ",", "VBD", ":", "``", "PRP", "VBP", "RB", "JJ", "IN", "NNP", "MD", "VB", "NN", "NNS", ",", "RB", "IN", "DT", "NN", "IN", "NN", "IN", "IN", "CD", "NNS", "DT", "NN", ".", "''", "IN", "DT", ",", "NNP", "NNP", "VBD", "-NONE-", "-NONE-", ",", "DT", "NN", "VBZ", "RB", "VBN", ".", "``", "JJ", "NN", "NNS", "RB", "WP", "-NONE-", "VBP", "JJ", "NNS", "IN", "DT", "JJ", "NN", "NN", "VBP", "VBN", "JJ", "-NONE-", "TO", "VB", "DT", "NNS", "CC", "VB", "JJ", "NN", "-NONE-", "-NONE-", "TO", "VB", "DT", "NN", "-NONE-", ",", "''", "PRP", "VBD", "-NONE-", ".", "``", "PRP", "VBZ", "DT", "NN", "IN", "JJ", "NN", "IN", "WDT", "DT", "NN", "-NONE-", "MD", "VB", "VBN", "RP", "-NONE-", "-NONE-", ",", "JJ", "IN", "DT", "CD", "VBG", "-NONE-", "NNS", "MD", "VB", "VBN", "-NONE-", ",", "CC", "DT", "NN", "MD", "VB", "PRP", ".", "''", "NNP", "NNP", "VBD", "IN", "DT", "NN", "IN", "NNP", "VBZ", "RB", "RB", "VBN", ".", "IN", "DT", "CD", "NN", ",", "NNP", "VBD", "DT", "NN", "NN", "IN", "CD", "NNS", "IN", "-NONE-", "TO", "VB", "DT", "JJ", "NN", "IN", "PRP$", "JJ", "NN", "IN", "NNS", "CC", "VBZ", "RB", "VBN", "TO", "DT", "NN", ".", "``", "PRP", "VBZ", "-NONE-", "TO", "VB", ",", "IN", "DT", "JJ", "NN", ",", "DT", "RB", "JJ", "NN", "IN", "NN", "-NONE-", "PRP", "MD", "VB", "-NONE-", "IN", "DT", "NN", "NN", "IN", "-NONE-", "VBG", "NNS", "IN", "TO", "IN", "-NONE-", "TO", "VB", "NN", "CC", "NN", ",", "''", "NNP", "NNP", "VBD", "-NONE-", ".", "NNP", ",", "WDT", "-NONE-", "VBZ", "RB", "DT", "NN", "NN", ",", "VBZ", "VBN", "NN", "NNS", "IN", "DT", "JJ", "CD", "NNS", ",", "NNS", "VBD", "-NONE-", "-NONE-", ".", "JJ", "NN", ",", "PRP", "VBD", "-NONE-", "TO", "VB", "NN", "IN", "DT", "NN", "NN", "-NONE-", "TO", "VB", "NN", "NNS", ",", "PRP", "VBD", "-NONE-", "-NONE-", ".", "DT", "NN", "PRP", "VBZ", "VBN", "-NONE-", "TO", "VB", "DT", "JJ", "NN", "CC", "VBZ", "VBN", "-NONE-", "TO", "VB", "VBG", "-NONE-", "TO", "VB", "IN", "CD", "NNS", "IN", "NN", "-NONE-", "TO", "VB", "JJ", "NNS", ",", "NNS", "VBD", "-NONE-", "-NONE-", ".", "IN", "JJ", "NN", "NNS", "NN", ":", "NNP", ":", "NNP", "NNS", "VBD", "RB", "JJR", "IN", "NN", "NN", "VBG", "DT", "NN", ".", "IN", "DT", "NNP", "NNP", "NNP", "NNP", ",", "NN", "NN", "IN", "NNP", "NN", "VBD", "CD", "NNS", "-NONE-", "TO", "VB", "IN", "CD", "NNS", "DT", "NN", ".", "NN", "NNS", "VBD", "VBN", "TO", "JJ", ".", "CC", "DT", "NN", "IN", "NN", "NN", "VBD", "-NONE-", "VB", "RP", "JJ", "NN", ".", "NNP", "NNP", "NNP", "JJ", "IN", "NNP", "NN", "VBD", "CD", "NNS", "DT", "NN", "-NONE-", "TO", "VB", "IN", "$", "CD", "-NONE-", ".", "DT", "NN", "IN", "NN", "NN", "VBD", "VBN", "-NONE-", "TO", "JJR", "NN", "IN", "NNS", "IN", "DT", "NNP", "CC", "TO", "DT", "JJS", "JJ", "NN", "IN", "DT", "NNP", "NNP", "NNP", ",", "WDT", "-NONE-", "VBD", "DT", "NN", "IN", "NNS", "IN", "DT", "NN", ".", "NNPS", "NNP", "NNPS", ":", "NNS", "VBD", "RB", "JJR", "IN", "RB", "JJ", "NN", "IN", "NNS", "VBD", "-NONE-", "TO", "VB", "PRP$", "NNS", "IN", "DT", "NN", "IN", "DT", "NN", "IN", "JJR", "NNS", "-NONE-", "-NONE-", "TO", "VB", ".", "NN", "VBD", "VBN", "-NONE-", "IN", "NN", "IN", "IN", "DT", "NN", "IN", "NNP", "NNP", "POS", "NNP", "IN", "JJ", "IN", "NNP", ".", "VBN", "NN", "NN", "RB", "VBD", "NNS", ".", "IN", "DT", "NN", "IN", "DT", "JJ", "NN", "NN", "NN", "IN", "DT", "NNP", ",", "NN", "NNS", "VBD", "IN", "JJ", "NNP", "DT", "JJ", "NN", ",", "WDT", "-NONE-", "RB", "VBZ", "NNP", "NNS", "IN", "NN", ",", "VBD", "RB", "TO", "NNP", "-NONE-", "TO", "VB", "CD", "JJ", "NNS", "IN", "NN", ".", "NNS", "VBD", "-NONE-", "NNS", "RB", "VBD", "VBN", "-NONE-", "IN", "JJ", "NNS", "IN", "DT", "NNP", "NNP", "VBZ", "IN", "DT", "NN", "IN", "-NONE-", "VBG", "RBS", "JJ", "NN", "NN", "IN", "DT", "NNP", ".", "DT", "NN", "MD", ",", "IN", "JJ", "NNS", ",", "VB", "RBR", "JJ", "NN", "NNS", "IN", "WDT", "DT", "NNPS", "MD", "VB", "NN", "-NONE-", ".", "DT", "NNPS", "VBP", "RB", "VBN", "-NONE-", "TO", "VB", "JJ", "NNS", ",", "IN", "-NONE-", "VBG", "RP", "JJ", "JJ", "NNS", "IN", "CD", "CD", "NNS", "IN", "NN", "IN", "NNP", ".", "NNP", ":", "NNS", "NNS", "VBD", ",", "-NONE-", "VBG", "NNP", "POS", "NNS", ".", "DT", "NNP", "NN", "VBD", "CD", "NNS", "DT", "NN", "TO", "$", "CD", "-NONE-", ".", "VBG", "IN", "DT", "JJS", "NN", "VBD", "RP", "IN", "DT", "JJ", "NN", ",", "CC", "NNS", "RB", "VBD", "NNS", "IN", "DT", "JJ", "JJ", "NN", "MD", "VB", "VBN", "RB", "IN", "PRP", "VBD", ",", "DT", "NN", "VBD", "-NONE-", "-NONE-", ".", "VBG", "TO", "NN", "NN", "NNS", ",", "JJS", "NNS", "IN", "DT", "NNP", "NNS", "VBN", "-NONE-", "IN", "NNP", "NNP", "VBD", "TO", "DT", "JJ", "JJ", "NN", "NN", "WDT", "-NONE-", "VBZ", "DT", "CD", "NN", "NN", "CC", "JJ", "NNS", ".", "RB", ",", "DT", "NNS", "VBP", "RB", "RB", "VBN", "DT", "JJ", "NN", "CC", "VBP", "VBG", "NNS", ",", "DT", "NN", "VBD", "-NONE-", "-NONE-", ".", "RB", ",", "NNP", "VBD", "IN", "DT", "NNP", "NNP", "NN", "VBD", "PRP$", "NNP", "-NONE-", "TO", "VB", "DT", "NN", "IN", "NN", "IN", "JJ", "NNP", "NNP", "IN", "CD", "NNS", ".", "DT", "NNP", "NN", "NN", "VBZ", "VBN", "JJ", "IN", "NNP", "CD", "IN", "IN", "NNS", "IN", "JJ", "NNS", "WP", "-NONE-", "VBP", "NNP", "TO", "VB", "IN", "NNP", "NNP", ".", "DT", "NN", "IN", "NNP", ",", "IN", "-NONE-", "VBG", "-NONE-", "TO", "VB", "DT", "NN", "IN", "DT", "NN", "IN", "JJ", "NN", "NNS", ",", "VBD", "-NONE-", "PRP", "MD", "VB", "DT", "NN", "IN", "DT", "NN", "TO", "NN", "CC", "VB", "JJ", "NNS", "-NONE-", "TO", "VB", "PRP$", "NN", "IN", "NN", ".", "NNP", "IN", "NNP", "NNP", ",", "NNP", "NNP", ",", "VBD", "VBN", "VBG", "DT", "NN", "IN", "DT", "JJ", "NNP", "NN", "IN", "NNP", ",", "WRB", "PRP", "VBD", "PRP$", "NN", "-NONE-", "TO", "VB", "RP", "NN", "-NONE-", "TO", "VB", "PRP$", "NN", "NN", "-NONE-", ".", "CC", "NNP", "VBD", "-NONE-", "PRP", "VBD", "JJ", "-NONE-", "TO", "VB", "DT", "NN", "JJ", "-NONE-", "TO", "VB", "WP", "PRP", "VBZ", "-NONE-", "``", "JJ", "NN", "''", "IN", "NNP", "IN", "IN", "JJ", "NN", "IN", "DT", "NN", "CC", "NN", "NNS", "CC", "IN", "NN", ".", "NNS", "VBD", "RP", "NNS", "-NONE-", "IN", "CD", "IN", "$", "CD", "CD", "-NONE-", ".", "PRP", "VBZ", "NNS", "RB", "IN", "NNP", "CC", "NNP", ".", "NNP", "NN", "VBZ", "JJ", "-NONE-", "TO", "VB", "DT", "CD", "NN", "TO", "CD", "NN", "-NONE-", "NN", "IN", "DT", "NN", "IN", "NNP", ",", "VBD", "-NONE-", "-NONE-", "NNP", "NNP", "NNP", ",", "NNP", "POS", "NN", "CC", "NN", "NN", "NN", ".", "PRP", "VBD", "-NONE-", "NNP", "VBZ", "-NONE-", "TO", "RB", "VB", "PRP$", "NN", "IN", "NNP", "TO", "JJR", "IN", "CD", "NN", ".", "NNP", "NNP", "NNP", "VBD", "IN", "NNP", "NNP", "NNP", "NNP", "NNP", "VBZ", "VBN", "-NONE-", "VBG", "DT", "NN", "IN", "DT", "NN", "TO", "$", "CD", "-NONE-", "IN", "NN", "CC", "NN", "IN", "DT", "JJ", "NN", ".", "IN", "NNS", "IN", "DT", "JJ", "NN", ",", "NNP", ",", "VBN", "-NONE-", "IN", "NNP", "NNP", "NNP", ",", "NNP", ",", "MD", "VB", "$", "CD", "-NONE-", "NN", "CC", "CD", "JJ", "JJ", "NN", "IN", "DT", "NN", "NN", "IN", "$", "CD", "-NONE-", "DT", "NN", "IN", "DT", "IN", "NNP", "NNP", "POS", "CD", "CD", "NNS", "JJ", ".", "RB", ",", "PRP", "VBD", "$", "CD", "-NONE-", "DT", "NN", "IN", "NN", ",", "CC", "$", "CD", "CD", "-NONE-", ".", "DT", "NNP", "NNP", ",", "NNP", ",", "NN", "IN", "JJ", "NNS", "CC", "NN", "NNS", "VBD", "-NONE-", "DT", "VBN", "NN", "MD", "VB", "NNS", "IN", "DT", "CD", "NN", "NN", ",", "CC", "MD", "RB", "VB", "VBN", "-NONE-", "IN", "DT", "JJ", "CD", "NNS", ".", "DT", "NN", "MD", "VB", "VBN", "-NONE-", "IN", "CD", "NNS", ",", "JJ", "TO", "NNS", "IN", "DT", "VBG", "NN", "POS", "NN", ".", "DT", "NNP", "CC", "NNP", "NNP", "VBD", "DT", "NN", "IN", "DT", "VBN", "NN", "CC", "NNP", "NNP", "MD", "RB", "VB", "VBN", "-NONE-", "IN", "NN", ".", "RB", ",", "NNP", "NNP", "VBD", "-NONE-", "PRP", "MD", "RB", "VB", "DT", "NN", "TO", "DT", "JJ", "NN", "IN", "DT", "NN", "POS", "NN", ".", "NNP", "NNP", "NNP", "VBD", "-NONE-", "NNP", "NNP", "VBD", "IN", "JJ", "NN", "-NONE-", "TO", "VB", "JJ", "NNS", ",", "DT", "NN", "-NONE-", "DT", "NN", "NN", "VBD", "-NONE-", "DT", "``", "JJ", "NN", ".", "''", "NNP", "NNP", ",", "CD", "NNS", "JJ", "CC", "DT", "JJ", "NNP", "NN", ",", "VBD", "VBN", "DT", "NNS", "NN", "POS", "JJ", "NN", "IN", "RB", "CD", "NNS", ".", "PRP$", "NN", "TO", "DT", "NN", ",", "WDT", "-NONE-", "VBZ", "JJ", "JJ", ",", "NN", "CC", "NN", "NNS", ",", "VBD", "DT", "JJ", "NN", "IN", "NNP", "POS", "NN", "IN", "NN", ".", "DT", "NN", "VBD", "VBN", "-NONE-", ",", "CC", "NNP", "NNP", "POS", "NNS", "MD", "VB", "VBN", "-NONE-", "IN", "CD", "JJ", "JJ", "NNP", "NNS", ",", "DT", "NN", "VBD", "-NONE-", "-NONE-", ".", "IN", "DT", "NN", "NN", ",", "NNP", "NNP", "VBD", "-NONE-", "PRP$", "NN", "VBD", "IN", "``", "JJ", "NNS", ",", "''", "WDT", "PRP", "VBD", "-NONE-", "TO", "VB", "-NONE-", ".", "``", "EX", "VBZ", "DT", "NN", "NN", "IN", "PRP$", "NN", ",", "''", "CC", "DT", "NN", "IN", "NN", ",", "PRP", "VBD", "-NONE-", "-NONE-", ".", "PRP", "RB", "VBD", "NNS", "IN", "PRP$", "NN", "VBD", "IN", "NN", "-NONE-", "DT", "JJ", "NN", "POS", "NN", "VBD", "RB", "RB", "VBN", "TO", "DT", "NN", "NN", "IN", "DT", "JJ", "NN", "NN", ".", "NNP", "NNP", "VBD", "CD", "IN", "CD", "NNS", "IN", "NNP", "POS", "JJ", "NN", "NN", "WP", "-NONE-", "VBD", "RB", "RB", "VB", "IN", "DT", "NN", "POS", "NN", "IN", "NNS", ".", "``", "IN", "PRP", "VBD", "VBG", "DT", "NNS", "IN", "NN", ",", "PRP", "MD", "VB", "VBN", "DT", "NNS", "WP", "-NONE-", "VBP", "RB", "IN", "DT", "NN", ",", "''", "PRP", "VBD", "-NONE-", ".", "DT", "NNP", "NN", "VBD", "-NONE-", "DT", "NN", "VBZ", "``", "DT", "NN", "IN", "NN", "CC", "NNS", ".", "''", "NNP", "NNP", ",", "DT", "NN", "IN", "NNP", "NNP", "CC", "NNP", "IN", "NNP", ",", "VBD", ",", "``", "PRP", "VBP", "-NONE-", "-LRB-", "DT", "NN", "-RRB-", "MD", "VB", "RB", "JJ", "IN", "DT", "NN", ".", "PRP", "MD", "VB", "RB", "VBN", "IN", "PRP$", "NN", "VBZ", "DT", "NN", "IN", "NN", "CC", "NN", "IN", "NN", "NNS", ".", "''", "IN", "NNP", "POS", "NNP", "NNP", ",", "NNP", "NNS", "VBD", "CD", "NN", "TO", "CD", "NN", "-LRB-", "$", "CD", "-NONE-", "-RRB-", ".", "IN", "DT", "NNP", "JJ", "NN", ",", "JJ", "NN", "NNS", "IN", "NNP", ",", "DT", "VBG", "CD", "NNS", "IN", "DT", "NNP", "NN", ",", "VBD", "JJ", "IN", "$", "CD", "-NONE-", ".", "DT", "NN", "IN", "DT", "CD", "NNS", "WP", "-NONE-", "MD", "VB", "NNP", "NNP", "POS", "NNS", "VBZ", "NNP", "NNP", ",", "CD", ",", "NN", "NN", "CC", "DT", "NNP", "NN", "NN", ".", "NNP", "NNP", ",", "CD", ",", "JJ", "JJ", "NN", ",", "VBZ", "NN", "IN", "JJ", "NNS", ".", "CC", "NNP", "NNP", ",", "CD", ",", "JJ", "JJ", "NN", ",", "VBZ", "NN", "IN", "NN", "NN", "NNS", ".", "NNP", "NNP", "NNP", ",", "DT", "NN", "IN", "NNP", "NNP", "NNP", "POS", "NNP", "NNP", "NNP", "CC", "NNP", "NNPS", "NNP", ",", "VBD", "TO", "NNP", "CD", "PRP$", "$", "JJ", "NN", "IN", "DT", "NNP", "NNPS", "NNP", "NNS", "JJ", ".", "DT", "NN", ",", "WDT", "-NONE-", "VBD", "JJ", "-NONE-", "TO", "VB", "NN", ",", "VBZ", "JJ", "IN", "CD", "NN", "IN", "NNP", "JJ", "NNS", ",", "IN", "DT", "RB", "VBN", "NN", ",", "VBG", "VBN", "-NONE-", "CC", "IN", "DT", "NN", "IN", "DT", "NN", "POS", "NN", "NN", "NNS", "NN", ".", "NNP", "NNP", "VBZ", "VBN", "DT", "NN", "IN", "DT", "NNP", "NN", "-NONE-", "VBG", "DT", "NN", "IN", "NNP", "POS", "NN", "NN", "NNS", "CC", "NN", "NN", "NN", "NNS", ",", "WDT", "PRP", "VBZ", "-NONE-", "-NONE-", "VBD", "VBN", "-NONE-", "IN", "NN", "-NONE-", "TO", "VB", "NNS", ".", "NNP", "NNP", "VBD", "-NONE-", "CD", "CD", "NNS", ",", "CC", "IN", "CD", "NN", "IN", "DT", "NNS", "JJ", ",", "VBP", "VBN", "VBN", "-NONE-", "IN", "PRP$", "NN", ".", "DT", "NNS", "VBD", "-NONE-", "PRP", "RB", "VBP", "CD", "NN", "IN", "DT", "NNS", "JJ", ".", "NNP", "VBZ", "VBN", "NNP", "CD", "IN", "DT", "NN", "IN", "DT", "NN", "IN", "DT", "VBG", "NNS", ".", "NNP", "NNP", "VBD", "-NONE-", "DT", "NN", "VBZ", "-NONE-", "TO", "VB", "DT", "NN", "TO", "VB", "VBN", "-NONE-", ".", "NNP", "VBZ", "VBN", "-NONE-", "IN", "NNP", ",", "NNP", ".", "NNP", ",", "DT", "NN", "NNS", "NN", "NN", "CC", "NNP", ",", "DT", "VBG", "NN", ",", "VBP", "VBN", "-NONE-", "IN", "NNP", ".", "NNP", "NNP", "VBD", "DT", "NN", "JJ", "NN", "IN", "$", "CD", "CD", "-NONE-", ",", "CC", "CD", "NNS", "DT", "NN", ",", "VBN", "IN", "JJ", "NN", "IN", "$", "CD", "CD", "-NONE-", ",", "CC", "CD", "NN", "DT", "NN", ".", "DT", "NN", "IN", "DT", "NNP", ",", "JJ", "NN", "VBD", "-NONE-", "NNS", "VBD", "DT", "NN", "IN", "$", "CD", "CD", "-NONE-", "IN", "DT", "NN", ":", "IN", "NN", ",", "DT", "NN", "VBD", "VBN", "-NONE-", "IN", "VBG", "NNS", "VBG", "$", "CD", "CD", "-NONE-", "CC", "$", "CD", "CD", "-NONE-", "IN", "NN", "NNS", "IN", "PRP", "VBD", "-NONE-", "IN", "``", "JJ", ".", "''", "DT", "NNS", "VBD", "RB", "VBN", "-NONE-", "IN", "DT", "$", "CD", "CD", "-NONE-", "NN", "IN", "DT", "NN", "IN", "NNS", "IN", "CD", "JJ", "NNS", ",", "PRP", "VBD", "-NONE-", "-NONE-", ".", "NN", "VBD", "CD", "NN", "TO", "$", "CD", "CD", "-NONE-", ",", "IN", "$", "CD", "CD", "-NONE-", "DT", "NN", "JJR", ".", "NNP", "VBD", "``", "DT", "JJ", "NN", "IN", "DT", "NN", "IN", "NN", "NNS", "IN", "DT", "NN", "NNS", "IN", "WDT", "NNP", "VBZ", "-NONE-", ".", "NNP", "NNP", "VBD", "-NONE-", "PRP", "VBZ", "-NONE-", "TO", "VB", "DT", "NN", "JJ", "NN", "IN", "$", "CD", "CD", "TO", "$", "CD", "CD", "-NONE-", "IN", "IN", "JJ", "NNS", "CC", "VBN", "JJ", "NN", "NNS", ".", "DT", "NNP", "NNP", "NN", "CC", "NN", "NN", "VBD", "-NONE-", "PRP", "MD", "VB", "DT", "$", "CD", "CD", "-NONE-", "NN", "IN", "PRP$", "NN", "NN", ",", "VBG", "DT", "$", "CD", "CD", "-NONE-", "NN", "VBN", "-NONE-", "TO", "NNS", "IN", "DT", "JJ", "NN", "NN", "CC", "$", "CD", "CD", "-NONE-", "IN", "JJ", "NNS", "WDT", "-NONE-", "MD", "RB", "VB", "VBN", "-NONE-", ".", "IN", "NN", ",", "NNP", "VBD", "-NONE-", "PRP", "MD", "VB", "RP", "IN", "$", "CD", "CD", "-NONE-", "IN", "NNS", "VBN", "-NONE-", "TO", "JJ", "NN", "NNS", "WRB", "NN", "NNS", "VBP", "VBN", "JJ", "-NONE-", ".", "DT", "NN", "RB", "VBD", "NN", "NNS", "CC", "NN", "IN", "NN", "IN", "NNS", "IN", "DT", "NN", ".", "DT", "NN", "JJR", ",", "JJ", "NN", "VBD", "$", "CD", "CD", "-NONE-", ",", "CC", "CD", "NNS", "DT", "NN", ",", "IN", "NN", "IN", "$", "CD", "CD", "-NONE-", ".", "DT", "NN", "IN", "NN", "IN", "DT", "JJS", "JJ", "NNS", "VBD", "DT", "NN", "NN", "POS", "NN", "-NONE-", "TO", "VB", "NNP", "POS", "JJ", "NNS", ",", "IN", "NNS", "VBD", "RB", "JJR", "IN", "JJ", "NN", ".", "IN", "VBN", "NN", "IN", "DT", "NN", "IN", "NN", "NN", "VBD", "JJ", "JJ", "NN", "NNS", ",", "NNS", "VBD", "-NONE-", "NN", "VBD", "IN", "DT", "NN", ",", "IN", "NNS", "VBG", "DT", "NN", "IN", "DT", "NN", ".", "DT", "NNP", "NNP", "NNP", "NNP", ",", "WDT", "-NONE-", "VBD", "VBN", "CD", "NNS", "IN", "NNP", ",", "VBD", "IN", "DT", "NN", "IN", "PRP$", "JJ", "NN", "CC", "VBD", "IN", "DT", "NN", "IN", "RB", "CD", "IN", "CD", ".", "NNP", "CC", "NNP", "POS", "NNP", "NNP", "VBD", "CD", "TO", "CD", ":", "DT", "NN", "VBD", "JJ", "TO", "DT", "NN", "IN", "IN", "CD", "NNS", "IN", "DT", "JJ", "NN", ".", "DT", "NNP", "NNP", "NNP", "NNP", "NNP", "VBD", "CD", "TO", "CD", "CC", "DT", "NNP", "NNP", "NNP", "NNP", "NNP", "NNP", "VBD", "IN", "CD", "TO", "CD", ".", "VBG", "NNS", "VBD", "NNS", "IN", "DT", "NNP", "NNP", "NNP", "NNP", "IN", "CD", "TO", "CD", ".", "NNP", "NNP", "NN", "VBD", "TO", "CD", "NNS", ",", "IN", "IN", "CD", "CD", "NNP", ".", "DT", "NNP", "NN", "IN", "JJ", "VBG", "NNS", ",", "IN", "-NONE-", "VBN", ",", "VBN", "NN", "IN", "JJ", "NN", "VBZ", "VBN", ".", "DT", "NN", "IN", "JJ", "NN", "VBN", "-NONE-", "IN", "DT", "NN", "VBD", "JJ", "NN", "IN", "CD", "NN", ":", "DT", "NN", "IN", "CD", "NN", "MD", "VB", "VBN", "IN", "DT", "VBG", "NN", "VBD", "VBG", ".", "CC", "IN", "DT", "NN", "VBG", "RB", "JJR", "IN", "-NONE-", "VBN", "CC", "DT", "RB", "VBN", "NN", "IN", "NNP", "NN", "VBN", "-NONE-", "TO", "VB", "NN", ",", "NN", "NNS", "VBD", "RB", "RB", "IN", "NN", "TO", "DT", "NN", "CC", "RB", "VBD", ".", "``", "DT", "NN", "VBZ", "RB", "VBG", "IN", "PRP$", "NNS", ",", "''", "VBD", "-NONE-", "NNP", "NNP", ",", "NN", "IN", "NN", "NN", "IN", "NNP", "NNPS", ".", "``", "DT", "NN", "VBZ", "RB", ":", "``", "PRP", "VBP", "-LRB-", "NNS", "-RRB-", "RB", ",", "CC", "IN", "PRP", "VBP", "RB", "VB", "PRP", "VBP", "VBG", "-NONE-", "TO", "VB", "PRP", ".", "''", "''", "NN", "IN", "DT", "NNS", "IN", "JJ", "NN", "-NONE-", "TO", "VB", "JJ", "NN", ",", "DT", "NN", "IN", "NN", "NN", "VBN", "-NONE-", "IN", "JJ", "NN", "IN", "DT", "NN", ",", "RB", "VBD", "TO", "PRP$", "NN", "IN", "NN", ",", "NNP", "NNP", "VBD", "-NONE-", "-NONE-", ".", "JJ", "NN", "IN", "DT", "NN", "VBD", "VBN", "-NONE-", "RB", "TO", "DT", "NN", "IN", "NN", "NNS", "IN", "DT", "NN", ",", "WDT", "-NONE-", "VBD", "-NONE-", "VB", "DT", "NN", "IN", "NN", "IN", "JJ", "NNS", ".", "NN", "VBZ", "VBN", "-NONE-", "TO", "VB", "VBN", "IN", "DT", "NN", "VBZ", "NN", "POS", "NN", "IN", "DT", "NNS", "NNS", "IN", "DT", "NN", "IN", "PRP", "MD", "VB", "IN", "DT", "NN", "IN", "NN", "NNS", ".", "``", "PRP", "VBP", "IN", "DT", "NNS", "VBP", "JJ", "-NONE-", "TO", "VB", "PRP$", "NNS", "RP", "IN", "DT", "JJ", "NN", "IN", "IN", "DT", "NNS", "VBP", "IN", ",", "''", "VBD", "-NONE-", "NNP", "NNP", ",", "NN", "IN", "NNP", "NNPS", ",", "NNP", "NNP", ",", "NNP", "NNP", "VBD", "CD", "CD", "TO", "CD", "CD", "IN", "DT", "NN", "IN", "NNP", "NNP", "NNP", "IN", "NN", "CC", "NN", "NN", "NN", "VBD", "DT", "NN", "IN", "NNS", "IN", "DT", "NN", "MD", "VB", "DT", "NN", "NN", ".", "NNP", "NNPS", "VBD", "DT", "NN", "POS", "JJ", "NN", "NN", "IN", "NN", "TO", "DT", "NN", ":", "NN", "NNP", "NNP", "VBD", "-NONE-", "PRP", "VBZ", "-NONE-", "DT", "NN", "MD", "VB", "TO", "JJ", "NN", "``", "DT", "-NONE-", "VBZ", "RBR", "RB", "VBN", ".", "''", "JJ", "VBN", "NN", "CC", "VBG", "NNS", "-NONE-", "-NONE-", "TO", "VB", "NNS", "VBD", "NNP", ",", "WDT", "-NONE-", "VBD", "RB", "CD", "CD", "TO", "CD", "CD", ":", "NNP", "NNPS", ",", "RB", "CD", "CD", "TO", "CD", "CD", ":", "NNP", "NNPS", ",", "RB", "CD", "TO", "CD", "CD", ",", "CC", "NNP", ",", "RB", "CD", "CD", "TO", "CD", "CD", ".", "NNP", ",", "DT", "VBN", "NN", "IN", "DT", "NN", "NN", ",", "VBD", "CD", "TO", "CD", "CD", ".", "DT", "NN", "VBD", "-NONE-", "PRP", "VBZ", "DT", "NN", "NN", ",", "WDT", "PRP", "VBD", "RB", "VB", "-NONE-", ",", "IN", "DT", "JJ", "NN", ".", "NNP", "VBD", "CD", "CD", "TO", "CD", "CD", "IN", "NNS", "IN", "NNP", "NNP", "NN", "NNP", "NNP", "VBD", "VBG", "NN", "-NONE-", "-NONE-", "TO", "VB", "DT", "JJ", ",", "JJR", "NN", "IN", "DT", "NN", "NN", "IN", "NNP", "NNPS", "-NONE-", ".", "NNP", "NNP", "VBD", "DT", "$", "JJ", "-NONE-", "NN", "JJ", "NN", ".", "NNP", "VBD", "CD", "CD", "TO", "CD", ".", "NNP", "NNP", "NNP", "NN", "NNP", "NNP", "VBD", "-NONE-", "PRP", "VBZ", "DT", "CD", "NN", "NN", "IN", "DT", "NN", "IN", "NNP", "NNPS", ",", "DT", "NN", "IN", "DT", "VBN", "$", "JJ", "-NONE-", "NN", "IN", "DT", "NN", "NN", ",", "MD", "VB", "VBN", "CC", "VBN", "-NONE-", "IN", "CD", "NNS", ".", "NNP", "NNP", "VBD", "CD", "CD", "TO", "CD", "CD", "IN", "NNP", "NNPS", ",", "VBN", "-NONE-", "IN", "NNP", "NN", "NNP", "NNP", ",", "VBD", "-NONE-", "TO", "VB", "DT", "NN", "-NONE-", "PRP", "VBZ", "RB", "RB", "VB", "-NONE-", "IN", "$", "CD", "-NONE-", "DT", "NN", ".", "NNP", ",", "WDT", "-NONE-", "VBD", "-NONE-", "JJ", "IN", "CD", "CD", ",", "VBZ", "DT", "NN", "IN", "RB", "IN", "CD", "NN", ".", "NNP", "NNP", "NNP", ",", "WDT", "-NONE-", "VBD", "CD", "CD", "NNP", "IN", "NNP", "VBD", "DT", "$", "CD", "CD", "-NONE-", "NN", "IN", "DT", "NN", ",", "VBD", "CD", "CD", "TO", "CD", "CD", "IN", "NNP", "NNP", "NN", "NN", "IN", "CD", "CD", "NNS", ".", "NNP", ",", "WDT", "-NONE-", "VBD", "IN", "CD", "CD", "NNP", ",", "VBD", "DT", "CD", "TO", "CD", "CD", ".", "JJ", "NN", "CC", "NNS", "NNS", "VBD", "-NONE-", "VBN", ".", "NNP", "VBD", "CD", "TO", "CD", "CD", ",", "NNP", "NNP", "NNP", "VBD", "CD", "TO", "CD", "CD", "CC", "NNP", "NNP", "VBD", "CD", "TO", "CD", "CD", ",", "IN", "NNP", "NNP", "VBD", "CD", "TO", "CD", "CD", ",", "NNP", "NNP", "VBD", "CD", "TO", "CD", "CD", "CC", "NNP", "VBD", "CD", "TO", "CD", "CD", ".", "NNP", "VBD", "CD", "TO", "CD", "CD", "IN", "CD", "CD", "NNS", "VBD", "NNS", ".", "JJS", "IN", "DT", "NN", "VBD", "IN", "NNS", "VBN", "-NONE-", "-NONE-", "TO", "VB", "DT", "NN", "POS", "JJ", "NN", ":", "NNP", "VBZ", "DT", "NN", "IN", "CD", "NN", "CC", "VBZ", "JJ", "NN", ".", "NNP", "NNP", "NNP", "VBD", "CD", "CD", "TO", "CD", "CD", ".", "DT", "NN", "POS", "NN", "-NONE-", "TO", "VB", "DT", "CD", "NN", "NN", "IN", "PRP$", "NN", "NN", "IN", "IN", "$", "CD", "CD", "-NONE-", "VBZ", "VBN", "NNS", "TO", "VB", "IN", "-NONE-", "TO", "VB", "PRP$", "NNS", "IN", "NNP", "NNP", "POS", "NN", "NN", ".", "NNP", "VBD", "CD", "TO", "CD", ".", "DT", "NN", "VBD", "IN", "NN", "NN", "IN", "VBG", "NNS", "MD", "VB", "``", "RB", "''", "JJR", "IN", "DT", "NN", "JJR", ".", "NNP", "VBD", "IN", "CD", "TO", "CD", "CD", ".", "DT", "NNP", "CC", "NNP", "NNP", "VBD", "DT", "NN", "TO", "VB", "-NONE-", "VBG", "DT", "JJ", "NN", "IN", "NN", "IN", "NN", "NNS", ".", "DT", "NNP", "NNP", "NNP", "NNP", "NNP", "NNP", "VBD", "CD", "TO", "CD", ".", "NN", "VBD", "CD", "NNS", ".", "NNP", "NNP", "NNP", "VBD", "CD", "TO", "CD", "CD", ".", "PRP$", "JJ", "NN", "IN", "DT", "NNP", "NN", "VBD", "IN", "CD", "NN", "IN", "DT", "NN", "IN", ".", "NNP", "NNP", "VBD", "-NONE-", "PRP", "MD", "VB", "PRP$", "NNP", "NNP", "NNPS", "NNP", "NN", "IN", "DT", "RB", "VBN", "NN", "IN", "DT", "NN", "IN", "NNS", "IN", "DT", "NN", "IN", "JJ", "NNS", ".", "DT", "NN", "VBD", "-NONE-", "DT", "NN", "VBZ", "RB", "VBN", "-NONE-", "TO", "VB", "DT", "NN", ",", "JJ", "CC", "RB", ",", "IN", "PRP$", "JJ", "NNS", ".", "NNP", ",", "DT", "NNP", "JJ", "JJ", "NN", "NN", ",", "VBD", "-NONE-", "DT", "NN", "MD", "VB", "PRP$", "NNS", "IN", "JJ", "NNS", "IN", "DT", "JJ", "NN", ".", "NNP", "NNP", "NNP", "MD", "VB", "VBN", "-NONE-", "CC", "NNS", "IN", "DT", "JJ", "NN", "VBN", "-NONE-", "TO", "DT", "NN", "POS", "NNS", ".", "NNS", "MD", "VB", "CD", "JJ", "CD", "JJ", "NN", "NNS", "IN", "DT", "NN", "VBZ", "VBN", "-NONE-", "IN", "JJ", "CD", ",", "DT", "NN", "VBD", "-NONE-", "-NONE-", ".", "PRP", "VBZ", "VBN", "IN", "JJ", "NNS", "JJ", "TO", "DT", "NN", "IN", "NNS", "JJ", ":", "IN", "CD", "CD", "IN", "NNP", "CD", ":", "MD", "VB", "VBN", "-NONE-", "IN", "DT", "JJ", "NN", "IN", "CD", ".", "NNP", ",", "DT", "NN", "NN", ",", "VBZ", "RB", "CD", "NN", "IN", "DT", "NNS", "JJ", ".", "NNP", "NNP", "NNP", ",", "NNP", "POS", "JJ", "NN", "NN", ",", "VBD", "NNP", "IN", "DT", "NN", "NN", "POS", "NN", "NNS", "IN", "DT", "JJ", "DT", "VBD", "JJ", "NNP", "CD", "VBD", "CD", "NN", "TO", "CD", "CD", "NN", "-LRB-", "$", "CD", "CD", "-NONE-", "-RRB-", "IN", "CD", "CD", "NN", "DT", "NN", "JJR", ".", "NNP", "VBD", "JJ", "JJ", "NNS", "IN", "DT", "NN", "IN", "JJ", "JJ", "NN", ".", "NN", "VBD", "CD", "NN", "TO", "CD", "CD", "NN", ",", "CC", "CD", "NN", "DT", "NN", ",", "IN", "CD", "CD", "NN", ",", "CC", "CD", "NN", "DT", "NN", ".", "NNS", "VBD", "CD", "CD", "NN", ",", "-NONE-", "VBG", "CD", "NN", "IN", "CD", "CD", "NN", "IN", "DT", "JJ", "NN", ".", "NNP", "VBD", "DT", "JJ", "JJ", "NN", "NN", ",", "JJ", ".", "NNP", "NNP", ",", "JJ", "NN", "NN", "CC", "NN", "JJ", "NN", "IN", "NNP", ",", "VBD", ",", "``", "DT", "NN", "VBZ", "VBN", "DT", "JJ", "NN", "IN", "NNS", "IN", "NN", "IN", "DT", "JJ", "NN", "VBG", "NNP", "CD", ",", "WRB", "DT", "JJ", "CC", "JJ", "NN", "IN", "DT", "NN", "VBD", "JJ", "NNS", "-NONE-", ".", "``", "PRP", "MD", "VB", "VBN", "IN", "DT", "NN", "IN", "JJ", "NN", "VBZ", "VBN", "RB", "VBN", ",", "''", "PRP", "VBD", "-NONE-", ".", "NNP", "NNP", "NNP", ",", "NNP", "NNP", ",", "VBD", "-NONE-", "PRP", "VBD", "-NONE-", "TO", "VB", "DT", "NNS", "IN", "NNP", "NNP", "NNP", "-NONE-", "PRP", "VBZ", "RB", "RB", "VB", "-NONE-", "IN", "DT", "NN", "NN", ".", "NNP", ",", "WDT", "-NONE-", "VBZ", "CD", "NN", "IN", "NNP", "POS", "CD", "CD", "NNS", "JJ", ",", "VBD", "-NONE-", "PRP", "MD", "VB", "CD", "NN", "IN", "DT", "JJ", "VBN", "NN", "IN", "DT", "NNP", "JJ", "NN", "-NONE-", "PRP", "VBZ", "RB", "RB", "VB", "-NONE-", ".", "-NONE-", "VBG", "IN", "WRB", "JJ", "NNS", "CC", "NNS", "-NONE-", "VBP", "VBN", "-NONE-", "RB", "TO", "NN", "IN", "DT", "NN", ",", "NNP", "MD", "VB", "IN", "CD", "CD", "CC", "CD", "CD", "VBN", "NNS", ",", "DT", "NNP", "NN", "VBD", "-NONE-", "-NONE-", ".", "IN", "JJ", "JJ", "NN", "NN", ",", "NNP", "VBD", "$", "CD", "-NONE-", "TO", "$", "CD", "-NONE-", ".", "DT", "VBN", "NN", ",", "WDT", "-NONE-", "MD", "VB", "DT", "NN", "NN", "IN", "$", "CD", "-NONE-", "DT", "NN", ",", "MD", "VB", "JJ", "IN", "NNP", "JJ", "IN", "DT", "NN", "IN", "CD", "JJ", "NNS", "IN", "DT", "VBD", ".", "NNP", "JJ", "NNP", "NNP", "VBZ", ",", "IN", "DT", "JJ", ",", "JJ", "NN", ",", "DT", "VBN", "NN", ",", "NN", "CC", "VBG", "NN", "WDT", "-NONE-", "VBZ", "JJ", "NN", ".", "NNP", "VBZ", "CC", "VBZ", "NN", "CC", "NN", "NNS", "CC", "JJ", "NN", "CC", "NN", "NNS", ".", "NNP", "NNP", ",", "VBN", "-NONE-", "IN", "DT", "NN", "NN", "CC", "JJ", "JJ", "NNS", ",", "VBD", "-NONE-", "PRP", "VBZ", "-NONE-", "TO", "VB", "IN", "JJ", "NN", "NN", "IN", "VBG", "NNS", "MD", "VB", "RB", "IN", "JJ", "NN", "POS", "$", "CD", "CD", "-NONE-", ".", "DT", "NNP", ",", "JJ", "NN", "RB", "VBD", "DT", "JJ", "NN", "IN", "VBG", "NNS", "MD", "VB", "RB", "IN", "JJ", "NN", "POS", "$", "CD", "CD", "-NONE-", ".", "JJ", "NN", "POS", "NNS", "VBP", "DT", "JJ", "NN", "IN", "$", "CD", "CD", "-NONE-", "IN", "NN", "CC", "JJ", "NNS", ".", "CC", "DT", "JJ", "NNS", "CC", "NN", "NN", "VBZ", "IN", "NN", "IN", "DT", "NN", "VBG", "NNP", "CD", "MD", "VB", "JJ", "JJ", "NN", "POS", "NN", "IN", "$", "CD", "CD", "-NONE-", ",", "CC", "$", "CD", "-NONE-", "DT", "NN", ",", "RB", "IN", "IN", "$", "CD", "CD", "-NONE-", "IN", "NNS", "IN", "NNS", "IN", "VBN", "NNS", ".", "NNP", "NNP", ",", "DT", "NN", "IN", "NNP", "CC", "NNP", "IN", "NNP", ",", "VBD", "-NONE-", "NNP", "POS", "JJ", "NNS", "VBP", "RB", "IN", "DT", "NN", "IN", "DT", "JJ", "NN", "NN", "IN", "NNP", ",", "VBN", "-NONE-", "IN", "DT", "JJ", "NN", ",", "WDT", "-NONE-", "VBZ", "NN", "NNS", "IN", "NNP", "POS", "NNP", "NNP", "NN", ".", "NNP", "NNP", ",", "NNP", "NNP", ",", "VBD", "-NONE-", "NN", "NN", "VBD", "RB", "JJ", "IN", "DT", "JJ", "JJ", "NN", "DT", "NN", "JJR", ".", "DT", "NN", "CC", "JJ", "NNS", "NN", "VBD", "-NONE-", "NN", "IN", "DT", "NN", "VBD", "CD", "NN", "TO", "$", "CD", "CD", "-NONE-", ",", "CC", "$", "CD", "-NONE-", "DT", "NN", ",", "VBN", "IN", "$", "CD", "CD", "-NONE-", ",", "CC", "$", "CD", "-NONE-", "DT", "NN", ",", "DT", "NN", "JJR", ".", "DT", "NNS", "VBD", "DT", "CD", "NN", "NN", "IN", "NN", "IN", "PRP$", "NN", "NNS", ",", "CC", "DT", "CD", "NN", "NN", "IN", "NN", "IN", "NN", "NNS", ".", "NNP", "VBD", "-NONE-", "NN", "NN", "NNS", "VBD", "$", "CD", "CD", "-NONE-", ",", "VBN", "IN", "$", "CD", "CD", "-NONE-", "DT", "NN", "JJR", ".", "PRP", "VBD", "-NONE-", "NN", "NN", "VBD", "DT", "$", "CD", "CD", "-NONE-", "NN", "IN", "NNP", "NNP", ".", "PRP", "RB", "VBD", "IN", "NNS", "IN", "DT", "NNP", "CD", "NN", "IN", "NNP", "MD", "VB", "RB", "JJR", "IN", "$", "CD", "CD", "-NONE-", ",", "CC", "MD", "VB", "VBN", "-NONE-", "IN", "NN", "NNS", ".", "NNP", "NNP", "NNP", ",", "NNP", "NNP", ",", "NNP", ",", "-NONE-", "VBG", "DT", "JJ", "NN", ",", "VBD", "-NONE-", "PRP", "VBZ", "VBG", "JJ", "VBG", "NNS", "CC", "NNS", "IN", "NN", "NNS", ".", "DT", "NN", "VBD", "IN", "IN", "IN", "VBG", "NNS", "PRP", "VBZ", "RB", "IN", "NN", "IN", "NNS", "IN", "PRP", "VB", "$", "CD", "CD", "-NONE-", "IN", "VBG", "NN", ".", "NNP", "VBZ", "JJ", "NNS", "CC", "VBZ", "NN", "NNS", "CC", "JJ", "NN", "NNS", ".", "NNP", "VBD", "-NONE-", "PRP", "VBD", "DT", "NN", "IN", "$", "CD", "-NONE-", ",", "CC", "CD", "NNS", "DT", "NN", ",", "IN", "DT", "JJ", "NN", ",", "VBN", "IN", "DT", "JJ", "NN", "IN", "$", "CD", "-NONE-", ",", "CC", "CD", "NNS", "DT", "NN", ".", "NNS", "VBD", "TO", "$", "CD", "CD", "-NONE-", "IN", "$", "CD", "CD", "-NONE-", ".", "IN", "DT", "CD", "NNS", ",", "DT", "NN", "VBD", "DT", "JJ", "NN", "IN", "$", "CD", "-NONE-", ",", "CC", "CD", "NNS", "DT", "NN", ",", "VBN", "IN", "JJ", "JJ", "NN", "IN", "$", "CD", "-NONE-", ",", "CC", "CD", "NNS", "DT", "NN", ".", "NNS", "VBD", "TO", "$", "CD", "CD", "-NONE-", "IN", "$", "CD", "CD", "-NONE-", ".", "NNP", "NNP", "NNP", "VBD", "-NONE-", "PRP", "VBD", "CD", "NNS", "IN", "PRP$", "JJ", "NN", "TO", "DT", "NNP", "NN", "NNS", ",", "IN", "$", "CD", "CD", "-NONE-", ",", "CC", "$", "CD", "-NONE-", "DT", "NN", ".", "DT", "NN", "VBZ", "CD", "NN", "IN", "NNP", "POS", "NNS", "JJ", ".", "DT", "NNP", "NN", ",", "WDT", "-NONE-", "VBZ", "DT", "NN", "IN", "JJ", "NNS", ",", "VBG", "DT", "JJ", "NN", "CC", "NN", "NN", ",", "RB", "VBD", "TO", "NNP", "NNP", "$", "CD", "-NONE-", ".", "DT", "NN", "VBZ", "JJ", "IN", "NNS", "IN", "NNP", "JJ", "NN", "IN", "$", "CD", "-NONE-", "DT", "NN", "IN", "PRP$", "JJ", "NN", ".", "DT", "NN", "MD", "VB", "VBN", "-NONE-", "IN", "DT", "NNP", "NN", "IN", "DT", "JJ", "NN", "IN", "DT", "NN", "IN", "DT", "NN", "NN", "TO", "$", "CD", "-NONE-", "DT", "NN", ".", "DT", "NN", "IN", "NNS", "TO", "DT", "NNP", "NN", "IN", "IN", "DT", "JJ", "NN", "IN", "CD", "NNS", "IN", "NNP", "NN", "TO", "NNP", "NNP", "NNP", "NNP", "IN", "NNP", ",", "NNP", "CC", "DT", "JJ", "JJ", "NN", "VBP", "VBN", "NNP", "POS", "JJ", "NN", "TO", "$", "CD", "CD", "-NONE-", ",", "VBD", "-NONE-", "-NONE-", "NNP", "NNP", ",", "NN", "NN", "NN", "IN", "NNP", ",", "JJ", "NNP", ".", "NNP", "NNP", "NNP", ",", "DT", "JJ", ",", "JJ", "JJ", "NN", ",", "VBD", "PRP$", "NN", "IN", "JJ", "NN", "NN", "NNP", "POS", "NNP", "TO", "$", "CD", "-NONE-", "DT", "NN", ",", "CC", "$", "CD", "CD", "-NONE-", ",", "IN", "$", "CD", "-NONE-", "DT", "NN", ",", "CC", "$", "CD", "CD", "-NONE-", ",", "IN", "DT", "NN", "VBD", "-NONE-", "PRP", "MD", "VB", "VBN", "-NONE-", "TO", "VB", "NNP", "POS", "JJ", "NN", ".", "DT", "JJ", "NN", "VBD", "RB", "VBD", ".", "NNP", "POS", "NN", ",", "NNP", "NNP", ",", "VBD", "-NONE-", "DT", "NN", "VBZ", "IN", "``", "JJ", "NN", "TO", "NNP", ".", "''", "IN", "NNP", "IN", "JJ", "NN", ",", "NNP", "POS", "NNS", "VBD", "RB", "CD", "NN", "-LRB-", "CD", "NNS", "-RRB-", ",", "IN", "CD", "NN", "-LRB-", "$", "CD", "-NONE-", "-RRB-", ".", "DT", "VBN", "NN", "VBZ", "NNS", "IN", "RBR", "IN", "CD", "NN", "IN", "NNP", "POS", "NNS", ",", "CC", "PRP", "VBZ", "VBN", "-NONE-", "IN", "NN", "IN", "NNP", "CD", ".", "DT", "NN", "IN", "JJ", "NNP", "POS", "VBZ", "NNP", "POS", "NNP", "NN", "TO", "CD", "NNS", ".", "IN", "CD", "NN", "IN", "NNP", "POS", "NN", "RB", "VBZ", "VBN", "-NONE-", "IN", "DT", "NNP", ".", "NNP", "NNP", "NNP", "NNP", "VBD", "-NONE-", "JJ", "NNS", "IN", "DT", "NN", "IN", "CD", "JJ", "NN", "NNS", "IN", "NNP", "VBP", "VBN", "VBN", "-NONE-", ".", "JJ", "NN", ",", "JJ", "NNP", "VBD", "IN", "NNP", "NNP", "NNPS", ",", "DT", "JJ", "NN", "WDT", "-NONE-", "VBZ", "VBG", "NNP", "POS", "JJ", "NN", "NNS", ",", "VBD", "-NONE-", "TO", "VB", "IN", "NN", ".", "NN", ",", "NNP", "VBD", "-NONE-", "DT", "JJ", "NN", "-NONE-", "VBZ", "VBN", "VBN", "-NONE-", "IN", "NNP", "WDT", "-NONE-", "MD", "VB", "RP", "NNP", "POS", "NN", "NNS", ".", "NNP", "VBD", "-NONE-", "PRP", "MD", "VB", "DT", "CD", "NN", "NN", "IN", "DT", "JJ", "NN", ".", "NNP", "VBD", "-NONE-", "DT", "NNP", ",", "DT", "JJ", "NN", "WDT", "-NONE-", "VBD", "VBN", "-NONE-", "TO", "VB", "VBN", "-NONE-", "DT", "NN", ",", "MD", "VB", "VBN", "-NONE-", "IN", "NNP", ".", "DT", "JJ", "NN", "VBZ", "RB", "VBN", "-NONE-", "TO", "VB", "VBN", "-NONE-", "JJ", "JJ", "NN", "CC", "RB", "IN", "CD", ".", "NNP", "VBD", "VBN", "DT", "NN", "TO", "VB", "VBN", "-NONE-", "JJ", "NN", ".", "DT", "VBN", "JJ", "NN", "RB", "MD", "VB", "VBN", "-NONE-", "IN", "DT", "JJ", "NN", ",", "CC", "MD", "VB", "VBN", "-NONE-", "RB", ",", "NNP", "VBD", "-NONE-", "-NONE-", ".", "NNP", "NNP", "NNP", "CC", "NNP", "NNP", "VBD", "DT", "$", "CD", "CD", "-NONE-", "NN", "IN", "PRP", "VBD", "DT", "NN", "NN", "IN", "$", "CD", "CD", "-NONE-", ",", "CC", "$", "CD", "-NONE-", "DT", "NN", ".", "DT", "NNP", "NNP", ",", "NNP", ",", "NN", "VBD", "JJ", "NN", "IN", "$", "CD", "-NONE-", ",", "CC", "CD", "NNS", "DT", "NN", ",", "DT", "NN", "IN", ".", "DT", "NN", "IN", "DT", "NN", "NN", "VBZ", "DT", "$", "CD", "CD", "-NONE-", "NN", "IN", "VBN", "NN", "IN", "DT", "JJ", "NN", "VBG", "NN", ",", "WDT", "DT", "NN", "VBD", "-NONE-", "-NONE-", "VBD", "VBN", "DT", "JJ", "NN", "IN", "NNS", ".", "DT", "NN", "VBD", "-NONE-", "DT", "JJ", "NN", "MD", "RB", "VB", "DT", "JJ", "NNS", "IN", "DT", "NN", ".", "NNP", "NNP", "RB", "VBD", "$", "CD", "CD", "-NONE-", "TO", "VB", "NN", "NNS", "CC", "VBN", "$", "CD", "CD", "-NONE-", "IN", "JJ", "NN", ".", "DT", "NN", "VBD", "IN", "``", "IN", "DT", "NNS", "CC", "-NONE-", "VBG", "DT", "JJ", "NN", "IN", "NN", "NNS", ",", "DT", "NN", "VBZ", "-NONE-", "TO", "VB", "IN", "NN", "NNS", "IN", "CD", ".", "''", "NNP", "NNP", "VBZ", "RB", "VBG", "VBN", "-NONE-", "IN", "NNS", ".", "JJ", "NNS", "VBP", "-NONE-", "TO", "VB", ":", "PRP", "VBD", "$", "CD", "CD", "-NONE-", "IN", "DT", "NN", "VBN", "IN", "$", "CD", "CD", "-NONE-", "DT", "NN", "IN", ".", "DT", "NN", "VBZ", "NNS", "IN", "$", "CD", "CD", "-NONE-", ".", "NNP", "IN", "NNP", "NNP", "NNP", "VBD", "-NONE-", "PRP", "VBD", "PRP$", "NN", "IN", "NNP", "NNP", "NNP", "NNP", "IN", "IN", "$", "CD", "CD", "-NONE-", ".", "NNP", "IN", "NNP", ",", "WDT", "-NONE-", "RB", "VBZ", "CD", "NNS", "CC", "$", "CD", "CD", "-NONE-", "IN", "NNS", ",", "VBD", "DT", "NN", "-NONE-", "TO", "VB", "DT", "NNP", ",", "NNP", ",", "NN", "VBG", "NN", "IN", "NNP", ".", "NNP", "NNP", "VBZ", "$", "CD", "CD", "-NONE-", "IN", "NNS", "CC", "CD", "NNS", ".", "DT", "NNP", "NNP", "NN", "NNS", "MD", "VB", "-NONE-", "TO", "VB", "IN", "PRP$", "JJ", "NNS", "IN", "JJ", "CD", ",", "WRB", "DT", "MD", "VB", "DT", "NNP", "IN", "NNP", "NN", "-NONE-", ".", "NNP", ",", "JJ", "NNP", "IN", "NNP", "VBD", "-NONE-", "PRP", "MD", "VB", "DT", "CD", "NN", "NNS", "IN", "DT", "JJ", "NNP", "NNP", "NN", "NN", ".", "NNP", "IN", "NNP", "VBD", "-NONE-", "DT", "IN", "DT", "NNS", "MD", "VB", "JJ", "NNS", "IN", "NNP", "IN", "NNP", ".", "CC", "PRP", "VBD", "IN", "NN", "NNS", "TO", "DT", "NNS", "RB", "VBG", "IN", "DT", "NN", "MD", "VB", "NNP", "IN", "NNP", "POS", "NN", "NNS", "IN", "CD", "IN", "$", "CD", "CD", "-NONE-", "TO", "$", "CD", "CD", "-NONE-", ",", "CC", "CD", "NNS", "TO", "CD", "NNS", "DT", "NN", ".", "NNP", "NNPS", "NNP", ",", "DT", "RB", "JJ", "NN", "NN", "WP$", "NN", "-NONE-", "JJ", "IN", "$", "CD", "-NONE-", "DT", "NN", "IN", "DT", "JJ", "CD", ",", "VBD", "DT", "NN", "CD", "NN", "NN", "WDT", "-NONE-", "VBZ", "RB", "CD", "NNS", "DT", "NN", "IN", "JJ", "NNS", ".", "IN", "DT", "NN", ",", "JJ", "NNS", ",", "WP", "-NONE-", "VBP", "VBN", "-NONE-", "IN", "$", "CD", "CD", "-NONE-", ",", "MD", "VB", "IN", "$", "CD", "CD", "-NONE-", ",", "CC", "CD", "NNS", "IN", "DT", "NN", "-NONE-", "PRP", "VBP", "VBN", "-NONE-", "-NONE-", ".", "IN", "NN", ",", "PRP", "MD", "VB", "NN", "IN", "DT", "VBN", "NN", ",", "WDT", "-NONE-", "MD", "VB", "VBN", "-NONE-", "NNP", "NNPS", "NNP", ".", "IN", "DT", "NNS", ",", "IN", "$", "CD", "-NONE-", "MD", "VB", "JJ", "IN", "DT", "CD", "CD", "JJ", "NNS", "JJ", ".", "DT", "NNP", ",", "NNP", ",", "NN", "POS", "NN", "VBD", "DT", "JJ", "IN", "CD", "IN", "PRP", "VBD", "PRP$", "NNP", "NN", "NN", ",", "CC", "DT", "NN", "VBD", "VBN", "-NONE-", "IN", "NNS", "CC", "DT", "NN", "POS", "NNS", "VBD", ".", "CC", "NNP", "VBD", "RP", "IN", "DT", "NN", "IN", "DT", "NNP", "NNP", "NNS", ",", "WP$", "NNS", "-NONE-", "VBD", "$", "CD", "CD", "-NONE-", "IN", "CD", ".", "CC", "IN", "DT", "NN", "VBD", ",", "NNP", "VBD", "-NONE-", "TO", "VB", "RP", "IN", "DT", "NN", "CC", "VBD", "IN", "JJ", "NN", "IN", "NNP", "CD", ".", "DT", "NN", "VBD", "VBN", "-NONE-", "RB", "IN", "JJ", "NNS", "IN", "JJ", "NN", "NN", "IN", "NNP", "NNP", "CC", "MD", "VB", "VBN", "-NONE-", "IN", "DT", "NN", ".", "NNP", "VBD", "DT", "NN", "IN", "DT", "NNPS", "CC", "VBD", "-NONE-", "NNS", "VBD", "VBN", "-NONE-", ".", "DT", "JJ", "NN", ",", "-NONE-", "VBG", "NNS", "IN", "DT", "JJ", "NNS", ",", "VBD", "DT", "JJ", "NN", "CC", "VBD", "NNP", "IN", "``", "-NONE-", "VBG", "NN", ".", "''", "IN", "PRP", "VBD", "NN", "IN", "DT", "NN", "POS", "NNP", "CD", "NNS", ",", "NNP", "VBD", "IN", "VBN", "NNP", "JJ", "NN", "TO", "DT", "NNPS", "MD", "VB", "DT", "NN", ".", "PRP", "VBD", "-NONE-", "NNP", "NN", "MD", "VB", "VBN", "-NONE-", "-NONE-", "TO", "VB", "DT", "NNS", ".", "DT", "NNP", "NNP", "NN", "VBD", "DT", "NN", "NN", "IN", "``", "JJ", "''", "CC", "VBD", "RP", "NN", "IN", "-NONE-", "VBG", "JJ", "NN", "IN", "DT", "NNS", ".", "DT", "NNP", "JJ", "NN", ",", "IN", "DT", "NN", "IN", "NNP", ",", "VBD", "-NONE-", "NNP", "NNS", "VBD", "VBN", "DT", "JJ", "NN", "IN", "DT", "NN", "NNS", ".", "NNP", "NNP", "NN", "NNP", "VBD", "DT", "NNS", "IN", "PRP$", "NN", "DT", "``", "JJ", "NN", ",", "''", "-NONE-", "VBG", "IN", "JJ", "IN", "DT", "VBG", "IN", "JJ", "NNS", "VBD", "VBG", "NN", "IN", "``", "DT", "NN", "IN", "NN", ".", "''", "DT", "NNP", "NNP", "NN", ",", "-NONE-", "IN", "NNP", "IN", "NNS", "IN", "JJ", "NNS", ",", "RB", "VBD", "-NONE-", "NNP", "NNP", "MD", "VB", "NNP", "POS", "NN", "NNS", ".", "NNS", "IN", "NNP", "NNPS", "VBD", "TO", "NNP", "IN", "DT", "NNP", "NNP", "NN", "VBD", "NN", "NNS", ".", "DT", "NN", "IN", "JJ", "NN", "VBD", "VBN", "-NONE-", "JJ", "NN", "IN", "DT", "JJ", "NN", "IN", "NNS", "TO", "NNP", "NNP", ".", "RB", ",", "DT", "NNP", "NN", "IN", "DT", "JJ", "NN", "VBD", "-NONE-", "DT", "NN", "IN", "DT", "NNP", "NNP", "MD", "VB", "JJ", "TO", "NN", ".", "NNP", "NNS", "VBP", "-NONE-", "TO", "VB", "DT", "NN", "IN", "JJ", "NN", "IN", "NN", "VBG", "NN", "NNS", ".", "DT", "JJ", "NNP", "NN", "VBD", "-NONE-", "DT", "NN", "``", "MD", "VB", "VBN", "-NONE-", "RB", ".", "''", "IN", "NNS", "VBP", "-NONE-", "JJ", "NNS", "MD", "VB", "-NONE-", "VB", "NNS", "IN", "NNP", "POS", ",", "NNS", "VBP", "DT", "NN", ".", "NNP", "NNP", "IN", "NNP", "VBP", "-NONE-", "TO", "VB", "NN", "DT", "NN", "WDT", "-NONE-", "MD", "VB", "IN", "NNP", "POS", "JJ", "NN", "IN", "DT", "NN", "IN", "NNS", "WDT", "-NONE-", "VBP", "TO", "JJ", "NN", ".", "DT", "NNP", "POS", "NN", "VBZ", "VBN", "-NONE-", "IN", "NN", "NNS", "CC", "NNS", "RB", "RB", "JJR", "IN", "DT", "NN", "POS", "NN", "-NONE-", "TO", "VB", "NN", "NNS", ".", "NNP", "NNS", "VBD", "JJ", "NNS", "IN", "DT", "NN", "IN", "RBR", "IN", "$", "CD", "CD", "-NONE-", "IN", "JJ", "NN", "IN", "NNP", ".", "DT", "NN", "VBZ", "RB", "IN", "$", "CD", "CD", "-NONE-", "IN", "NN", "CC", "NN", "NNS", "IN", "JJ", "CD", "IN", "NNS", "IN", "-NONE-", "VBG", "JJ", "NN", "CC", "NN", ".", "NNP", "NNP", "VBD", "VBN", "JJ", "JJ", "NNS", "IN", "-NONE-", "VBG", "IN", "NNS", "IN", "VBG", "NNP", ",", "-NONE-", "VBG", "JJ", "NN", "NNS", "IN", "DT", "NN", "POS", "NN", "IN", "NNP", ".", "NNP", "NNP", "NNS", "VBD", "VBN", "-NONE-", "IN", "NN", ".", "NN", "NNS", "VBD", "-NONE-", "NNP", "VBD", "VBG", "-NONE-", "TO", "VB", "JJ", "NN", "POS", "NNS", "IN", "NNP", ".", "NNS", "IN", "NNP", "VBD", "DT", "NNP", "NNP", "NNP", "NN", ",", "CC", "DT", "JJ", "NNP", "NNP", "VBD", "NN", "IN", "DT", "NN", "-NONE-", "-NONE-", "TO", "VB", "DT", "NN", "IN", "CD", "NNS", "IN", "NNP", "POS", "NN", "IN", "NNP", ".", "RB", "IN", "NNP", ",", "DT", "NNP", "NN", "VBD", "-NONE-", "TO", "VB", "NNPS", "IN", "DT", "NNP", "VBZ", "DT", "NN", "-NONE-", "-NONE-", "TO", "VB", "NNS", "RB", ".", "NNP", "VBD", "CD", "NNS", "IN", "JJ", "NNS", "IN", "JJ", "NNS", "IN", "NNP", ",", "CC", "RB", "VBD", "-NONE-", "TO", "VB", "NNS", "IN", "JJ", "NNS", "VBN", "-NONE-", "IN", "NNP", "POS", "NN", "IN", "JJ", "NNS", "IN", "NNP", ".", "NNP", "POS", "NNS", "VBD", "TO", "DT", "JJ", "NN", "IN", "NNP", "``", "NN", "''", "IN", "NNP", "POS", "JJ", "NNS", ".", "NNP", "POS", "NNP", "NNP", "VBD", "-NONE-", "DT", "NN", "POS", "NN", "VBD", "VBN", "CC", "DT", "NN", "VBD", "VBG", "RB", ".", "IN", "PRP$", "JJ", "NN", "IN", "DT", "NN", "NN", ",", "NNP", "VBD", "-NONE-", "TO", "VB", "PRP$", "NN", "IN", "NN", "CC", "VBD", "NN", "NNS", "IN", "-NONE-", "VBG", "NN", "MD", "VB", "PRP", "JJ", "NN", ".", "NNP", "POS", "NNP", "VBD", "DT", "JJ", "NN", "NN", "IN", "DT", "NN", "POS", "JJ", "NN", ",", "-NONE-", "VBG", "DT", "NN", "WDT", "-NONE-", "MD", "VB", "VBN", "RP", "PRP$", "JJ", "NN", ".", "DT", "JJ", "NN", "POS", "NNS", "VBD", "-NONE-", "DT", "NN", ",", "CD", "NNS", "JJ", "IN", "DT", "NN", "IN", "NNP", "POS", "JJ", "NN", ",", "VBD", "VBN", "-NONE-", ".", "DT", "NNP", "NNP", "VBD", "-NONE-", "DT", "NN", "NNS", "JJ", "NN", "IN", "NNP", "CC", "NNP", "NN", "NNP", "MD", "VB", "NN", "IN", "DT", "NNS", "IN", "NNP", ".", "DT", "NN", "VBD", "VBN", "-NONE-", "IN", "DT", "NNP", "VBD", "-NONE-", "VBG", "DT", "NNS", "-NONE-", "-NONE-", "TO", "VB", "VBN", "-NONE-", "IN", "DT", "NNP", "CD", "NN", ".", "NNP", "VBD", "DT", "NN", "IN", "NN", "NNS", "-NONE-", "-NONE-", "TO", "VB", "-NONE-", "VB", "``", "JJ", "NNS", "TO", "NN", "NN", "''", "IN", "DT", "JJ", "NNS", "IN", "NNP", "NNP", ".", "DT", "NN", "POS", "NN", "VBZ", "DT", "NN", "-NONE-", "TO", "VB", "-NONE-", "VB", "DT", "JJ", "JJ", "NN", "NN", ".", "NNP", "VBP", "VBZ", "VBN", "JJ", "NN", "NNS", ",", "VBG", "DT", "NNP", "CC", "NNP", ",", "-NONE-", "TO", "VB", "IN", "PRP", "VBD", "VBN", "-NONE-", "IN", "DT", "NN", "VBD", "VBN", "VBN", "-NONE-", "IN", "DT", "NN", "WDT", "-NONE-", "VBD", "IN", "NNP", "JJ", "NNP", ",", "-NONE-", "VBG", "CD", "NNS", ".", "DT", "NN", "VBZ", "VBG", "-NONE-", "TO", "VB", "IN", "NNP", "CC", "NNP", "NNP", "VBD", "DT", "NNP", "IN", "DT", "JJ", "NN", ".", "VBD", ":", "NNP", "NNP", "NNP", ",", "CD", ",", "VBN", "NN", "CC", "NN", "IN", "NNP", "NNP", "NNP", "NNP", "IN", "NNP", "NNP", ",", "NNP", ",", "IN", "NNP", "NNP", "NNP", ",", "IN", "DT", "JJ", "JJ", "NN", ".", "NNP", "NNP", "VBD", "PRP$", "NN", "NN", "IN", "NNP", "NNPS", "NNP", "NNP", ",", "IN", "NNP", "NNS", "VBG", "CD", "NN", "IN", "DT", "JJ", "NNS", "JJ", "IN", "DT", "NNP", "NN", ".", "NNP", "NNP", "NNP", "NNP", ",", "VBN", "-NONE-", "IN", "DT", "NNP", "NN", ",", "MD", "RB", "VB", "NN", "IN", "DT", "NN", "NN", "JJ", "DT", "NN", ",", "DT", "NN", "VBD", "-NONE-", "-NONE-", ".", "NNP", "VBZ", "VBG", "$", "CD", "-NONE-", "DT", "NN", ",", "CC", "$", "CD", "CD", "-NONE-", ",", "NN", "CC", "VBZ", "VBG", "$", "CD", "CD", "-NONE-", "IN", "JJ", "NN", ".", "RB", "JJ", "VBZ", "-NONE-", "NNP", "POS", "NN", "-NONE-", "TO", "VB", "NNS", "NNP", "NNP", "CC", "NNP", "NNP", "TO", "VB", "DT", "NN", ".", "NNP", "POS", "VBN", "NN", "IN", "NNP", "NNP", "NNP", "IN", "$", "CD", "CD", "-NONE-", "VBZ", "VBN", "-NONE-", "TO", "VB", "NNP", ".", "NNP", "VBZ", "VBN", "VBN", "-NONE-", "IN", "NN", "IN", "NNP", "NNPS", "NNP", "IN", "DT", "NN", "-NONE-", "TO", "VB", "IN", "IN", "DT", "JJ", "NN", "NN", "IN", "NNP", ".", "DT", "NNS", "VBP", "IN", "NNS", "-NONE-", "-NONE-", "TO", "VB", "DT", "NN", "-NONE-", ".", "NNP", "NNP", "VBZ", "VBN", "NNS", "IN", "PRP$", "NNP", "CC", "NNP", "JJ", "NN", "NNS", "IN", "PRP", "VBZ", "VBG", "RP", "IN", "CD", "NNS", ",", "CC", "CD", "NN", "IN", "DT", "NN", ".", "DT", "NN", "IN", "NNP", "CC", "NNP", "VBD", "-NONE-", "NNS", "VBD", "VBN", "-NONE-", "RB", "DT", "NN", "IN", "JJ", "NN", "NNS", "IN", "DT", "JJ", "NN", "NNS", "VBD", "VBG", "-NONE-", "TO", "VB", "VBN", "-NONE-", "IN", "DT", "JJ", "NN", ".", "PRP", "VBD", "-NONE-", "DT", "NN", "MD", "VB", "IN", "DT", "JJ", "NN", "IN", "JJR", "IN", "$", "CD", "CD", "-NONE-", "-NONE-", "-NONE-", "TO", "VB", "VBN", "-NONE-", "IN", "DT", "JJ", "CD", "NNS", ".", "IN", "NN", ",", "IN", "DT", "JJ", "CD", "NNS", ",", "NNP", "VBD", "$", "CD", "CD", "-NONE-", ",", "CC", "$", "CD", "-NONE-", "DT", "NN", ",", "IN", "NN", "IN", "$", "CD", "CD", "-NONE-", ".", "NNS", "IN", "NNP", "POS", "JJ", "NNS", "RB", "VBD", "RB", ",", "CC", "DT", "VBD", "RB", "IN", "NN", "NNS", "IN", "NNP", "CC", "NNP", "VBP", "NNP", "NNP", "NNS", "CC", "DT", "NNS", "VBD", "RP", "-NONE-", "-NONE-", "TO", "VB", "JJ", "NNS", ".", "NN", "NN", "VBZ", "VBN", "DT", "JJ", "NN", "IN", "JJ", "NNS", ",", "IN", "NN", "VBZ", "VBN", "JJ", "CC", "JJ", "NNS", "JJ", "IN", "NNP", "NNP", "CC", "DT", "NNP", "NN", "VBP", "VBN", "IN", "JJ", "NNS", ".", "NNP", "NNP", ",", "DT", "JJ", "VBN", "NN", "IN", "NN", "NN", ",", "VBD", "DT", "CD", "NN", "JJ", "NN", "IN", "JJ", "NN", "NN", ".", "IN", "DT", "NN", "VBD", "CD", ",", "PRP", "VBD", "CD", "CD", "NN", ",", "-LRB-", "$", "CD", "CD", "-NONE-", "-RRB-", "RB", "IN", "CD", "CD", "NN", "DT", "NN", "IN", ".", "NNS", "VBD", "CD", "NN", "TO", "CD", "CD", "NN", "IN", "CD", "CD", "NN", ".", "JJ", "NN", "VBD", "CD", "NN", "TO", "CD", "CD", "NN", "IN", "CD", "CD", "NN", ".", "JJ", "NN", "VBD", "TO", "CD", "NN", "IN", "CD", "NN", ".", "JJ", "JJ", "NN", "JJ", "TO", "VBG", "NN", "NN", "VBD", "RP", "NNS", "RB", "IN", "NN", "CC", "JJ", "NN", "NNS", ".", "JJ", "NNS", "IN", "NN", "NN", ",", "JJ", "IN", "NN", "NNS", "CC", "NNS", "VBD", "TO", "CD", "CD", "NN", "IN", "CD", "CD", "NN", ".", "NN", "IN", "NNP", "CC", "NNP", "NNP", "RB", "VBD", ",", "CC", "RB", "TO", "VBG", "NN", "IN", "JJ", "NNS", ",", "JJ", "NNS", "VBD", "RB", "CD", "NN", ".", "NNP", "VBD", "IN", "IN", "DT", "JJ", "NN", "VBG", "NNP", "CD", "NNS", "MD", "VB", "TO", "CD", "CD", "NN", "IN", "CD", "CD", "NN", ":", "NN", "NN", "VBD", "VBN", "-NONE-", "IN", "CD", "CD", "NN", ",", "RB", "IN", "CD", "CD", "NN", "IN", "JJ", "CD", ".", "NN", "VBZ", "VBN", "-NONE-", "TO", "VB", "TO", "CD", "CD", "NN", "IN", "CD", "CD", "NN", "DT", "NN", "JJR", ".", "JJ", "NN", "VBZ", "-NONE-", "TO", "VB", "VBG", "IN", ",", "JJS", "NNS", "VBP", "-NONE-", "-NONE-", ".", "NN", "NNS", "CC", "NN", "NNS", "VBD", "RB", "JJ", "IN", "NNP", ",", "IN", "VBG", "NNS", "VBD", "-NONE-", "NN", "VBD", "RB", "IN", "NNP", ".", "RB", ",", "JJ", "NNS", "VBP", "RB", "VBG", "DT", "NN", "RB", "RB", ".", "DT", "NNP", "VBZ", "VBG", "IN", "NN", "-NONE-", "TO", "VB", "JJ", "NN", "NNS", "JJ", "TO", "DT", "JJ", "NN", "IN", "DT", "NN", ".", "CC", "PRP", "-NONE-", "VBZ", "RB", "JJ", "RB", "IN", "DT", "JJ", "NN", "MD", "VB", "PDT", "DT", "NN", ".", "NNP", "NNP", "VBD", "RP", "PRP$", "NN", "CC", "NN", "NN", ",", "NNP", "NNP", "NNP", ",", "DT", "JJS", "NN", "-NONE-", "RB", "IN", "DT", "NNP", "NN", "VBZ", "-NONE-", "TO", "VB", "NN", "IN", "-NONE-", "VBG", "DT", "JJ", "NN", "NN", ".", "NNP", "POS", "NN", "VBD", "$", "CD", "-NONE-", ",", "TO", "$", "CD", "-NONE-", ",", "IN", "NN", ".", "DT", "NNP", "NNP", "VBZ", "DT", "JJ", "``", "NN", "NN", "''", "-NONE-", "-NONE-", "TO", "VB", "JJ", "NNS", "IN", "DT", "NN", "-NONE-", ".", "RB", ",", "NNP", "NNP", "NNP", "NNP", "VBD", "-NONE-", "PRP", "MD", "VB", "NNP", "NNS", "IN", "NN", "NN", "IN", "NN", "NNS", "CC", "RB", "DT", "NN", "IN", "DT", "``", "NN", "''", "IN", "NN", ".", "NNP", "NNP", "VBD", "DT", "JJ", "NN", "NN", "-NONE-", "IN", "NN", "NNP", "NNP", "CC", "NNP", "NNPS", "IN", "$", "CD", "-NONE-", "DT", "NN", ",", "CC", "IN", "$", "CD", "CD", "-NONE-", ".", "DT", "NN", ",", "WDT", "-NONE-", "VBZ", "DT", "$", "JJ", "-NONE-", "NN", "WDT", "-NONE-", "VBD", "VBN", "-NONE-", "IN", "NNP", ",", "VBZ", "RP", "NN", "IN", "DT", "NNS", "NN", ".", "DT", "NN", "NN", "VBD", "RP", "-NONE-", "IN", "NNP", "CC", "NNP", "VBD", "JJ", "NN", "IN", "DT", "NNP", ".", "DT", "NN", "NN", ",", "WDT", "-NONE-", "VBZ", "DT", "JJ", "NN", "IN", "DT", "JJ", "NN", "IN", "CD", ",", "VBZ", "VBN", "-NONE-", "TO", "VB", "DT", "NNP", "RB", ".", "NNP", "VBD", "NN", "-NONE-", "-NONE-", "TO", "VB", "JJR", "IN", "CD", "NN", "IN", "NNP", "NNP", "POS", "NN", "-NONE-", ",", "-NONE-", "VBG", "-NONE-", "PRP", "MD", "VB", "NN", ".", "NN", "NNS", "VBD", "-NONE-", "PRP", "VBD", "-NONE-", "DT", "NN", "MD", "VB", "DT", "NN", "IN", "PRP", ".", "DT", "NN", "NN", "NN", "VBD", "VBN", "-NONE-", "IN", "DT", "NNP", ".", "DT", "NN", "MD", "VB", "PRP", "-NONE-", "JJR", "IN", "DT", "NNP", "NNP", "TO", "VB", "JJ", "NNS", "IN", "DT", "NN", ".", "NNP", "VBD", "VBN", "-NONE-", "IN", "NNP", "IN", "JJ", "NN", "CC", "NN", "NNS", "IN", "CD", "NNP", "NNS", "CC", "MD", "VB", "DT", "NN", "NN", "IN", "$", "CD", "CD", "-NONE-", ".", "NNP", "NNP", "NNP", "NNP", "NNP", "VBD", "-NONE-", "PRP", "VBZ", "VBG", "IN", "DT", "NN", "NN", "-NONE-", "PRP", "VBZ", "VBN", "-NONE-", "IN", "CD", "NNS", ".", "DT", "NN", "VBD", "RB", "VBN", "-NONE-", ".", "NNP", "NNP", "VBD", "IN", "DT", "NN", "IN", "DT", "NN", "NN", ",", "WDT", "-NONE-", "VBZ", "VBG", "DT", "JJ", "NN", ",", "VBZ", "RB", "IN", "PRP$", "NN", "CC", "NN", "NN", ",", "NNP", "NNP", ".", "NN", "NNS", "CC", "NNS", "MD", "VB", "DT", "JJ", "NN", "NNS", "IN", "NNS", "IN", "JJ", "NNS", "IN", "DT", "NNP", "NNP", ".", "DT", "NNP", "VBZ", "-NONE-", "TO", "VB", "$", "CD", "CD", "-NONE-", "IN", "NNS", "CC", "NNS", "IN", "NN", "CC", "MD", "VB", "DT", "NN", "IN", "NNP", "RB", "VBZ", "DT", "NN", "NN", ".", "NNP", "NNS", "POS", "JJ", "NN", "VBD", "TO", "DT", "NN", "$", "CD", "CD", "-NONE-", "JJ", "NN", "IN", "CD", "IN", "DT", "JJS", "NNS", "RB", ".", "CD", "JJ", "NNS", "MD", "VB", "JJ", "NNS", "IN", "IN", "DT", "JJ", "JJ", "NN", "NN", ",", "DT", "NNPS", "IN", "NNP", "VBP", "VBG", "-NONE-", "-NONE-", ".", "NNS", ":", "NNS", ":", "NN", "CD", "NNS", ".", "NNP", "NNP", "NNS", "CD", ",", "RB", "CD", ":", "NN", "CD", ",", "RB", "CD", ":", "NNS", "CD", ",", "RB", "CD", ".", "NNS", ":", "NNP", "NNP", "NNP", "NNP", "NN", "CD", ",", "RB", "NNS", ":", "NNP", "NNP", "NNS", "NN", "CD", ",", "RB", "CD", ":", "NN", "NN", "CD", ",", "RB", "CD", ".", "NN", ":", "CD", "NN", ",", "RB", "CD", ":", "CD", "NNS", ",", "RB", "CD", ".", "NN", "NNS", ",", "DT", "JJ", "NNPS", "CC", "NNP", "NNP", "NN", ",", "DT", "NNP", "NNP", "NNP", "NN", ",", "DT", "VBN", "NN", "NN", ".", "PDT", "DT", "VBZ", "VBN", "DT", "NN", "IN", "NNP", "NNPS", "CC", "NNP", "NNP", "CC", "PRP$", "JJ", "JJ", "NN", ",", "NNP", "NNP", ",", "WP", "-NONE-", "VBD", "DT", "$", "CD", "CD", "-NONE-", "NNP", "NNP", ",", "NNP", ",", "NN", "IN", "JJ", "NN", "NNS", ".", "NNS", "VBP", "VBN", "NNP", "POS", "NN", "IN", "IN", "DT", "NN", "POS", "NN", "TO", "DT", "JJ", "NN", "NN", ".", "CC", "DT", "NNS", "VBP", "NNP", "NNP", "POS", "NN", "NN", ":", "PRP", "VBZ", "NNS", "IN", "NNS", "DT", "NN", "CC", "VBZ", "IN", "IN", "NNP", "POS", "NN", "NNS", ".", "NNP", "NN", "RB", "VBD", "CD", "CD", ",", "IN", "-NONE-", "VBG", "CD", "CD", "RBR", "DT", "NN", "IN", "NNS", "IN", "NNP", "NNP", "MD", "VB", "DT", "NN", "JJ", ".", "RB", ",", "NN", "NNS", "VBP", "NNP", "POS", "JJ", "NN", "NN", "IN", "PRP$", "NN", "NN", "TO", "$", "CD", "CD", "-NONE-", "VBD", "RB", "RB", ",", "-NONE-", "VBG", "-NONE-", "DT", "NN", "MD", "VB", "VBG", ".", "CC", "IN", "JJ", "NNS", ",", "NNP", "VBZ", "VBN", "IN", ",", "-NONE-", "VBG", "IN", "CD", "CD", ",", "RB", "CD", ",", "NN", "IN", "VBN", "NN", "IN", "DT", "NN", "NN", "VB", ".", "NNP", "NNP", "POS", "NNS", "VBP", "-NONE-", "NNP", "POS", "NNP", "NNP", "NNS", "VBP", "RB", "JJ", ",", "CC", "DT", "NN", "VBZ", "$", "CD", "CD", "-NONE-", "IN", "NNS", "NN", "VBG", "PRP$", "NNS", ".", "DT", "VBZ", "RB", "$", "CD", "-NONE-", "IN", "NN", "IN", "DT", "NNP", "NN", ",", "VBG", "JJ", "JJ", "NNS", ",", "IN", "JJR", "NN", "NNS", "MD", "VB", "DT", "NN", ".", "NNP", "VBZ", "RB", "IN", "CD", "CD", "JJ", "NNS", "IN", "JJ", "NNS", ".", "DT", "NNP", "NN", "VBZ", "CD", "NN", "IN", "DT", "JJ", "CC", "CD", "NN", "IN", "DT", "NNS", ".", "JJ", "JJ", "JJ", "NNS", "VBP", "NNP", "NNP", "POS", "NNP", "NNP", ",", "NN", "NNP", "NNP", "CC", "NNP", "NNP", "NNP", ",", "IN", "DT", "NN", "VBD", "PRP$", "NN", "DT", "NN", ".", "IN", "JJ", "NNS", "MD", "VB", "DT", "NN", "IN", "NNP", ",", "NNS", "VBP", "-NONE-", "NNP", "NNP", "VBZ", "VBG", "PDT", "DT", "NN", "-NONE-", "-NONE-", "TO", "VB", "NNP", "POS", "NN", "NNS", "-NONE-", ".", "RB", ",", "NNP", "NNS", "RB", "VBD", "NNS", "-NONE-", "PRP", "VBD", "JJ", "IN", "-NONE-", "VBG", "DT", "JJ", "NN", "-NONE-", "-NONE-", "TO", "VB", "NNP", "POS", "NN", "NNS", "CC", "RB", "VB", "JJ", "NN", ".", "NNP", "MD", "RB", "VB", "IN", "PDT", "DT", "NN", ".", "CC", "IN", "JJ", "NNS", ",", "PRP", "VBZ", "VBN", "-NONE-", "TO", "VB", "NNS", "POS", "NN", "-NONE-", "TO", "VB", "DT", "JJ", "NN", "NN", ".", "NNS", "-NONE-", "TO", "VB", "DT", "VBP", "JJ", "-NONE-", "TO", "VB", "VBN", "-NONE-", "IN", "DT", "NN", "CC", "RB", ".", "JJ", "NNS", "VBP", "NNS", "TO", "VB", "RP", "PRP$", "NN", "TO", "NN", "NN", ",", "RB", "VB", "DT", "NNS", "IN", "CD", "NNS", ".", "DT", "VBZ", "WRB", "NNP", "RB", "VBD", "RP", "$", "CD", "CD", "-NONE-", "IN", "PRP$", "NN", "CC", "VBD", "$", "CD", "CD", "-NONE-", "IN", "JJ", "NN", "NNS", "-NONE-", ".", "CC", "IN", "NNP", "MD", "VB", "PRP$", "NN", "NNS", "JJ", "IN", "DT", "NN", "IN", "PRP", "VBP", ":", "IN", "JJ", "NN", ",", "IN", "DT", "NN", "VBZ", "NN", "CC", "VBZ", ":", "DT", "NN", "NN", "MD", "VB", "RB", "RB", ".", "NNP", ",", "DT", "NN", "NNP", "NN", ",", "MD", "RB", "VB", "JJ", "NNS", "IN", "PRP$", "NN", ".", "CC", "PRP$", "CD", "JJ", "NN", "NNS", "IN", "NN", "NN", "VBD", "RB", "DT", "JJ", "NNS", "WDT", "-NONE-", "VBP", "VBN", "RB", "VBN", "-NONE-", ".", "DT", "VBD", "NNP", "NNPS", ",", "NNP", "NNP", "NNP", ",", "NNP", "NNP", ",", "NNP", "NNP", "CC", "NNP", "NNP", ",", "IN", "JJ", "JJ", "NNS", "IN", "NNP", "POS", "NN", "RB", "VBP", "VBN", "NN", ".", "-NONE-", "RB", "VBG", "DT", ",", "NNP", "RB", "VBD", "-NONE-", "PRP", "VBZ", "JJ", "NNS", "IN", "RB", "VBN", "NN", "NNS", "IN", "JJR", "IN", "$", "CD", "CD", "-NONE-", ".", "PRP", "RB", "VBZ", "IN", "JJ", "NNS", "IN", "RB", "JJ", "IN", "$", "CD", "CD", "-NONE-", "IN", "NN", "NNS", "IN", "NNS", "CC", "NNS", ".", "CD", "NN", "NN", "-NONE-", "NNP", "NNP", "VBZ", "VBN", "-NONE-", "TO", "VB", "VBN", "-NONE-", "TO", "NNS", ":", "NNP", "MD", "VB", "VBN", "RP", "-NONE-", ",", "IN", "NNP", "NNP", "VBD", "VBN", "-NONE-", "IN", "DT", "JJ", "NN", "CC", "DT", "JJ", "NN", ".", "CC", "NNP", "POS", "JJ", "NN", "MD", "VB", "DT", "VBN", "NN", ",", "IN", "DT", "JJ", "NN", "MD", "VB", "DT", "JJ", "NN", "NN", ",", "VBG", "DT", "IN", "NNP", "POS", "NN", "NNS", ",", "JJ", "NN", "CC", "NN", "NNS", ".", "DT", "VBP", "-NONE-", "NNP", "POS", "NN", ",", "WDT", "-NONE-", "RB", "VBZ", "VBG", "DT", "JJ", "NN", "VBG", "NN", ",", "MD", "VB", "VBN", "-NONE-", "IN", ",", "VB", "$", "CD", "CD", "-NONE-", ",", "CC", "VBD", "-NONE-", "TO", "DT", "JJ", "NN", "WDT", "-NONE-", "VBZ", "DT", "NNP", "NN", ".", "DT", "NN", "RB", "MD", "VB", "VBN", "-NONE-", "IN", "JJR", "IN", "DT", "NN", "IN", "PRP$", "NN", ",", "JJ", "NN", "NNS", "VBP", "-NONE-", "-NONE-", ".", "RB", ",", "DT", "JJ", "NN", "IN", "DT", "NN", "NNS", ":", "CC", "DT", "NN", ":", "MD", "VB", "VBN", "RP", "-NONE-", "TO", "NNP", "NNS", ",", "VBG", "NNP", "NNP", ",", "WP", "-NONE-", "MD", "RB", "VB", "DT", "JJ", "NN", ",", "NNS", "VBP", "-NONE-", "-NONE-", ".", "PRP", "-NONE-", "VBZ", "RB", "JJ", "WRB", "JJ", "DT", "NN", "MD", "VB", "NNP", "NNS", "-NONE-", ".", "CC", "``", "DT", "NN", "VBZ", "JJ", ".", "PRP", "VBP", "DT", "JJ", "NN", "IN", "DT", "JJ", "NN", "CC", "VBP", "DT", "IN", "DT", "NNS", "-NONE-", "TO", "VB", "DT", "JJ", "NN", ",", "''", "VBZ", "-NONE-", "NN", "NN", "NNP", "NNP", "IN", "NNP", "NNPS", "IN", "NNP", "NNP", ".", "NNP", "NNP", "POS", "JJ", "NN", "NN", "VBZ", "DT", "NN", "IN", "NN", "IN", "NNP", "NNP", ".", "JJ", "NNS", "VBP", "-NONE-", "NNP", "NNP", "VBZ", "-NONE-", "TO", "VB", "DT", "JJ", "NN", ",", "WDT", "JJ", "NNS", "MD", "VB", "NNP", "TO", "VB", "-NONE-", ".", "``", "PRP", "VBP", "RB", "RB", "DT", "NN", ",", "''", "VBZ", "-NONE-", "NNP", "NNP", ",", "DT", "NNP", "NNP", "NNP", "NN", ".", "IN", "NN", ",", "NNS", "MD", "VB", "-NONE-", "TO", "VB", "NNP", "POS", "NN", ".", "CC", "DT", "NN", "NNS", "VBP", "-NONE-", "DT", "NN", "VBZ", "RB", "JJ", "IN", "DT", "NNP", "RB", "VBZ", "VBG", "NNP", "NNP", "POS", "JJ", "NN", "NNS", ".", "NNP", "NNP", "IN", "NNP", "NNP", "VBD", "TO", "DT", "NN", ".", "NNP", "NNP", "CC", "NNP", "-LRB-", "NNP", ":", "NN", ":", "NNP", "-RRB-", "NN", ":", "NNS", "CC", "NN", "NN", "VBD", "NNP", "CD", ",", "CD", ":", "JJ", "NN", ":", "$", "CD", "CD", "-NONE-", ":", "CC", "$", "CD", "-NONE-", "DT", "NN", "JJ", "NN", ",", "NNP", "CD", ",", "CD", ":", "JJ", "NN", ":", "$", "CD", "-NONE-", "DT", "NN", "CC", "NN", "NN", ":", "CD", "NNS", "DT", "NN", "JJ", "JJ", "NN", "NN", ":", "CD", "NNS", "JJ", "NNS", "JJ", ":", "CD", "CD", "VB", ":", "DT", "JJ", "NNS", "VBP", "RB", "VBN", ".", "NNP", "NNP", "NNP", ",", "NNP", ",", "NNP", ",", "VBD", "-NONE-", "PRP", "VBD", "VBN", "-NONE-", "NNP", "NNS", "IN", "NN", "CC", "NN", "JJ", "NN", ".", "DT", "NN", "IN", "NN", "VBZ", "NNS", "CC", "NNS", "VBN", "-NONE-", "-NONE-", "TO", "VB", "DT", "JJ", "NN", "NN", "NN", "NN", "IN", "JJ", "NNP", "NN", ".", "NNP", "NNP", "VBZ", "VBN", "JJ", "NN", "CC", "NN", "NNS", "IN", "NN", "IN", "NNP", "NNP", "CC", "VBZ", "VBG", "JJ", "NNS", "IN", "PRP", ".", "NN", "MD", "VB", "IN", "-NONE-", "VBG", "NN", "NN", "NNS", "VBN", "-NONE-", "IN", "NN", "NN", ",", "NN", "NN", "NNS", "CC", "JJ", "NN", "NNS", ",", "NNP", "NNP", "VBD", "-NONE-", "-NONE-", ".", "DT", "JJ", "NN", "VBZ", "NN", "JJ", "NN", ",", "DT", "NN", "WDT", "-NONE-", "MD", "VB", "NN", "IN", "JJ", "NN", ".", "DT", "NN", "VBZ", "NN", "NN", "NNS", "CC", "JJ", "NNS", "CC", "NNS", "IN", "-NONE-", "VBG", "NN", "CC", "NN", "NNS", ",", "NNP", "NNP", "VBD", "-NONE-", "-NONE-", ".", "DT", "NN", "VBD", "IN", "PRP", "VBZ", "VBN", "NN", "NNS", "``", "IN", "DT", "JJ", "NN", "IN", "JJ", "NN", "NNS", "''", "CC", "DT", "NN", "IN", "NN", "VBZ", "DT", "JJ", "-NONE-", "PRP", "VBZ", "VBN", "-NONE-", ".", "NN", "NNS", "MD", "VB", "JJ", "IN", "NN", "NN", "CC", "IN", "-NONE-", "VBG", "NN", "NN", "VBN", "-NONE-", "IN", "JJ", "NN", "CC", "JJ", "NNS", ",", "DT", "NN", "VBD", "-NONE-", "-NONE-", ".", "DT", "NNP", "NN", "POS", "NN", "IN", "NNP", "NNP", "TO", "DT", "NN", "IN", "DT", "JJ", "NNS", "NN", "RB", "VBD", "DT", "NN", "DT", "NN", "WRB", "DT", "NNP", "NNP", "NNP", "VBD", "NNP", "NNP", "RB", "DT", "``", "JJ", "''", "NN", ",", "RB", "IN", "``", "RB", "VBN", "-NONE-", ".", "''", "NNS", "JJ", "IN", "DT", "NNP", "NNP", "NNP", ",", "WDT", "-NONE-", "MD", "VB", "IN", "DT", "NN", ",", "VBD", "-NONE-", "DT", "JJ", "NNS", "IN", "DT", "NN", "VBP", "JJ", "-NONE-", "TO", "VB", "DT", "NNP", "NN", "IN", "NNS", "IN", "DT", "NN", ".", "NNP", "NNP", ",", "RB", "NN", "IN", "DT", "NNP", "NNP", "NNP", "NNP", ",", "MD", "VB", "DT", "JJ", "NN", "TO", "DT", "RB", "VBN", "NN", ".", "NNS", "VBP", "VBN", "PRP", "IN", "-NONE-", "VBG", "NNS", "WDT", "-NONE-", "VBD", "NNS", "IN", "JJR", "NNS", "CC", "IN", "-NONE-", "VBG", "NN", "IN", "JJ", "NNS", ".", "CD", "NNS", "IN", "DT", "NNP", "IN", "NN", "IN", "DT", "NNP", "VBP", "VBN", "-NONE-", "PRP", "VBP", "NNP", "NNP", "POS", "NN", "IN", "IN", "``", "JJ", "NNS", "IN", "PRP$", "NN", "-LRB-", "CC", "-RRB-", "NN", "IN", "DT", "NN", ".", "''", "DT", "JJ", "NNP", "NNP", "NN", ",", "RB", ",", "VBD", "-NONE-", "DT", "NN", "VBZ", "RB", "VBN", "IN", "DT", "NNP", "NN", ".", "``", "PRP", "VBP", "VBN", "-NONE-", "DT", "NNP", "VBD", "PRP", "VBN", ",", "''", "NNP", "NNP", ",", "DT", "NN", "POS", "NN", "NN", ",", "VBD", "-NONE-", "IN", "DT", "NN", ".", "DT", "NNP", "VBZ", "DT", "``", "VBN", "''", "VBG", "TO", "NNS", "-NONE-", "PRP", "VBZ", "-NONE-", "-NONE-", "MD", "VB", "``", "RB", "''", "IN", "DT", "NN", ".", "IN", "NN", ",", "DT", "NNS", "POS", "NN", "VBZ", "DT", "``", "RB", "VBN", "''", "NN", "TO", "DT", "``", "VBN", "-NONE-", "IN", "CD", "IN", "DT", "JJS", "JJ", "IN", "DT", "NN", ".", "NNP", "NNP", "VBD", "-NONE-", "PRP", "VBD", "-NONE-", "TO", "VB", "CD", "NN", "IN", "NNP", "NNP", "IN", "DT", "NNP", "NNP", "NNP", ".", "NNS", "VBD", "RB", "VBN", "-NONE-", ".", "NN", ",", "DT", "JJ", "NNP", ",", "NNP", "JJ", "NNS", "NN", ",", "VBD", "-NONE-", "PRP", "VBZ", "VBG", "DT", "NN", "IN", "DT", "VBN", "NN", "NN", "-NONE-", "TO", "VB", "PRP$", "NN", "IN", "JJ", "NNS", "IN", "NN", "NNS", ".", "NNP", "POS", "NN", "NN", "IN", "VBN", "NNS", "CC", "NNS", "VBZ", "DT", "JJ", "NN", "IN", "PRP$", "JJ", "NNP", "NNP", ".", "NN", "NN", "VBG", "NN", ",", "DT", "NN", "VBD", "-NONE-", "-NONE-", ".", "DT", "NN", "VBZ", "NN", "IN", "DT", "NN", "-NONE-", "-NONE-", "TO", "VB", "IN", "PRP$", "NN", "NNS", "NN", ",", "NN", "CC", "NN", "NN", "NNS", "IN", "-NONE-", "VBG", "JJ", "NNS", ",", "DT", "NN", "VBD", "-NONE-", "-NONE-", ".", "NNP", "VBD", "CD", "NNS", "IN", "CD", "CD", "NNS", "-LRB-", "$", "CD", "CD", "-NONE-", "-RRB-", "CC", "VBZ", "DT", "JJ", "NN", "NN", "IN", "CD", "CD", "NNS", ".", "DT", "NN", "VBZ", "IN", "NN", "IN", "DT", "VBN", "JJ", "JJ", "NN", "IN", "NNP", "NN", ".", "DT", "NN", "-NONE-", "TO", "VB", "DT", "NN", "TO", "NN", "IN", "NN", "NN", "RB", "VBD", "VBN", "-NONE-", "IN", "DT", "JJ", "NN", "IN", "NNP", "NN", "NNS", ".", "DT", "NNP", "NNP", "NNP", "NNP", "VBD", "JJ", "NNS", "IN", "DT", "NNP", "JJ", "NN", "IN", "NNS", "IN", "NNS", "IN", "NNP", "NNP", ",", "NNP", "CC", "NNP", "NNP", "MD", "VB", "VBG", "DT", "JJ", "NN", ".", "IN", "IN", "DT", "NNS", ",", "DT", "NNP", "NNP", "MD", "VB", "-NONE-", "TO", "VB", "NNS", "-NONE-", "IN", "NNP", "NN", "NNS", "IN", "DT", "NNS", "VBP", "VBG", "DT", "NNP", "IN", "RB", "JJ", "NNS", "IN", "NN", "IN", "DT", "NNP", "JJ", "NN", ".", "DT", "NN", "VBZ", "RB", "JJ", "NNS", "IN", "NNS", "IN", "DT", "NN", "IN", "NN", "CC", "IN", "NNS", "IN", "DT", "NN", "POS", "NN", "NN", ".", "NNP", "NNS", "VBD", "-NONE-", "JJ", "NNP", "NNP", "CC", "NNP", "NNS", "MD", "RB", "VB", "IN", "JJ", "NNP", "CC", "JJ", ".", "IN", "DT", "NNS", "VBP", "NNS", "IN", "DT", "NNP", "NN", "NN", ",", "DT", "NNP", "MD", "VB", "NN", "NNS", "IN", "DT", "NNS", ",", "WDT", "-NONE-", "RB", "VBP", "JJ", "TO", "NN", "NNS", "IN", "JJ", "NN", "CC", "NN", "NN", "NNS", ".", "NNS", "IN", "JJ", "NNS", "IN", "CD", "VBD", "IN", "$", "CD", "CD", "-NONE-", "IN", "NNP", ",", "$", "CD", "CD", "-NONE-", "IN", "NNP", "NNP", "CC", "$", "CD", "CD", "-NONE-", "IN", "NNP", "NNP", ",", "VBG", "TO", "DT", "NNP", ".", "IN", "DT", "NN", ",", "DT", "NNP", "VBD", "JJ", "NN", "NNS", "VBN", "-NONE-", "IN", "NNP", "NNP", "NNP", "IN", "NNP", ",", "NNP", ",", "IN", "NNS", "IN", "NN", ",", "DT", "NN", "IN", "JJ", "NN", ",", "IN", "NNP", "CC", "NNP", "NNP", ".", "DT", "NNS", "VBD", "IN", "$", "CD", "CD", "-NONE-", "JJ", "NN", ".", "NNP", "NNP", "VBD", "-NONE-", "PRP", "MD", "VB", "DT", "JJ", "NN", "NN", "TO", "RB", "JJ", "IN", "CD", "NNS", "IN", "DT", "JJ", "NN", "VBN", "-NONE-", "TO", "VB", "IN", "DT", "NN", "NN", ".", "NNP", "NNS", "VBD", "-NONE-", "PRP", "MD", "RB", "VB", "DT", "NN", "IN", "DT", "NN", "IN", "PRP", "VBP", "WDT", "NNS", ",", "CC", "WRB", "JJ", ",", "-NONE-", "MD", "VB", "IN", "DT", "NN", "NN", ".", "CC", "DT", "JJ", "NN", "VBD", "-NONE-", "PRP", "``", "VBZ", "-NONE-", "DT", "JJ", "NNS", "VBG", "IN", "DT", "NN", "POS", "NN", "MD", "RBR", "IN", "VBN", "JJ", "NNS", ".", "''", "DT", "NN", ",", "JJ", "TO", "NNP", "NNS", "CD", "NNS", "JJ", "CC", "JJR", ",", "MD", "VB", "DT", "NN", "POS", "NN", "NNS", "CD", "NN", "TO", "CD", "NN", "-NONE-", ".", "IN", "NN", ",", "NNP", "VBZ", "VBG", "DT", "JJ", "NN", "NN", "JJ", "TO", "CD", "NNS", "IN", "NN", "NN", ".", "NNP", "NNP", "NNP", "VBD", "DT", "NN", "NN", "IN", "DT", "NN", "POS", "JJ", "NN", "-NONE-", "-NONE-", "TO", "VB", "NN", "NNS", "CC", "``", "DT", "JJ", "NN", "NN", "-NONE-", ".", "''", "CC", "DT", "NNS", "VBD", "WRB", "RB", "IN", "DT", "NN", "DT", "NN", "NN", "MD", "VB", "-NONE-", ",", "IN", "JJ", "NNS", "MD", "VB", "RP", "-NONE-", "VBG", "VBN", "-NONE-", ".", "``", "PRP", "VBZ", "DT", "JJ", "NN", ",", "''", "VBD", "-NONE-", "NNP", "NNP", "NNP", "IN", "NNP", "NNP", "CC", "NNP", ".", "VBG", "TO", "NNP", "POS", "NNS", ",", "RB", "CD", "NN", "TO", "CD", "NN", "-NONE-", "IN", "DT", "CD", "JJ", "NNS", "MD", "VB", "NN", "IN", "DT", "NN", ".", "NNP", "RB", "VBD", "IN", "IN", "CD", "NN", "IN", "DT", "NNS", "WP", "-NONE-", "VBP", "IN", "JJ", "NN", "MD", "VB", "VBN", "-NONE-", ".", "IN", "DT", "NN", ",", "NNP", "MD", "RB", "VB", "RB", "IN", "CD", "TO", "CD", "IN", "PRP$", "JJR", "IN", "CD", "NNS", "JJ", ".", "IN", "JJ", "NN", "IN", "DT", "NNP", "NNP", "NNP", "NNP", "NN", ",", "NNP", "NNS", "VBD", "CD", "NNS", "TO", "$", "CD", "-NONE-", "RB", ".", "DT", "NNP", "NN", "VBD", "-NONE-", "PRP", "VBD", "``", "VBN", "NN", "''", "-NONE-", "-NONE-", "TO", "VB", "-NONE-", "DT", "JJ", "NN", "NN", "VBD", "VBN", "-NONE-", "IN", "NN", "NN", "CC", "DT", "JJ", "NN", "IN", "DT", "NN", ",", "WDT", "-NONE-", "RB", "VBZ", "VBN", "DT", "NN", "IN", "NN", "NN", ".", "DT", "NN", "RBR", "DT", "NN", "VBD", "DT", "JJ", "NN", "-NONE-", "TO", "VB", "RP", "JJ", "NNS", ".", "DT", "NN", "VBD", "-NONE-", "PRP", "VBZ", "DT", "RB", "JJ", "NN", "NN", "VBN", "IN", "PRP$", "JJ", "JJ", "NN", ".", "JJR", "NN", "NNS", "VBP", "VBN", "IN", "CD", "NNS", ",", "DT", "NN", "VBD", "-NONE-", "-NONE-", ".", "NNP", "NNP", ".", "-LRB-", "NNP", ",", "NNP", "-RRB-", ":", "NNP", "NNP", ",", "VBG", "NN", "IN", "NNP", "NNPS", ",", "VBD", "VBN", "-NONE-", "DT", "NN", "IN", "DT", "NN", "NNS", "NN", "CC", "NNS", "NN", ".", "PRP", "VBZ", "DT", "NN", "TO", "CD", ".", "``", "NNP", "NNP", "''", "-LRB-", "NNP", "NNP", ",", "CD", "NNS", ",", "$", "CD", "-NONE-", "-RRB-", ",", "DT", "RB", "VBN", "NN", "IN", "DT", "NNP", "NN", ",", "VBZ", "IN", "DT", "JJ", "NN", ".", "RB", "IN", "NN", "IN", "DT", "NN", ",", "NN", "NNP", "NNP", "VBZ", "PRP", "DT", "NN", "IN", "PRP$", "JJ", "NN", ".", "WRB", "-NONE-", "VBN", "-NONE-", "DT", "JJ", "NN", "IN", "DT", "NNP", ",", "NNP", "POS", "NN", ",", "TO", "NNP", ",", "NNP", ",", "IN", "CD", "IN", "NNP", "POS", "NNS", "-NONE-", ",", "PRP", "VBZ", "DT", "NN", ",", "``", "-NONE-", "JJ", "IN", "-NONE-", "VBG", "NN", "IN", "NN", "IN", "DT", "-NONE-", "PRP", "VBD", "VBG", "IN", "-NONE-", ",", "PRP", "VBD", ".", "''", "DT", "NN", "IN", "TO", "WRB", "DT", "NN", "MD", "VB", "-NONE-", "DT", "JJ", ",", "JJ", "NN", "IN", "NN", "VBZ", "JJ", "-NONE-", "VBZ", "VBN", "-NONE-", "IN", "-NONE-", "VBG", "DT", "NN", "IN", "JJ", "NNS", "CC", "JJ", "NNS", ".", "NN", "IN", "NN", ",", "NNP", "NNP", "CC", "PRP$", "NN", ",", "NNP", "NNP", "NNP", "NNP", ",", "VBP", "PRP", "IN", "DT", "NN", "-NONE-", "NNP", "VBD", "-NONE-", ",", "IN", "PRP$", "NN", "IN", "DT", "JJ", "VBG", "NN", "TO", "DT", "NN", "IN", "JJ", "NN", "NN", ",", "VBN", "-NONE-", "IN", "DT", "NN", "IN", "-NONE-", "VBG", "JJ", "NN", "IN", "DT", "NNP", "CC", "NNP", ".", "DT", "NN", "VBZ", "IN", "NNP", "NNP", ",", "DT", "NN", "IN", "DT", "NN", ",", "CC", "NNP", "NNP", ",", "WP", "-NONE-", "VBD", "PRP$", "NN", "RB", "IN", "NNP", "POS", "NN", ".", "IN", "-NONE-", "VBN", "IN", "CD", ",", "NNP", "VBD", "RB", "RB", "VB", "-NONE-", "VBG", "IN", "CD", ",", "WRB", "NNP", "NNP", "VBD", "DT", "JJ", "NN", "POS", "NN", "CD", "-LRB-", "NN", "-RRB-", "NN", "NN", "NN", "-NONE-", ".", "DT", "VBZ", "DT", "NN", ",", "NNP", "NNP", "NN", "WDT", "-NONE-", "VBZ", "-NONE-", "JJ", "NN", "NNS", "VB", "VBN", "-NONE-", "RB", "TO", "NN", "NNS", ".", "NNP", "NNP", "VBD", "IN", ",", "IN", "IN", "JJ", "NN", ",", "NNP", "NNP", "RB", "MD", "VB", "IN", "DT", "NN", "NN", "IN", "PRP", "VBD", "VBN", "-NONE-", "IN", "NNP", "NNP", ".", "DT", "CD", "NNS", "RB", "VBD", "-NONE-", "TO", "VB", "DT", "JJ", "NN", "IN", "DT", "NN", ".", "RB", "IN", "CD", "PRP", "VBD", ",", "IN", "NN", "RB", ",", "NNS", "NNP", ",", "NN", "NNP", ",", "CC", "PRP", "VBD", "IN", "DT", "NN", "CC", "IN", "TO", "DT", "NNS", ".", "IN", "-NONE-", "VBG", "DT", "``", "JJ", "NN", "''", "NNP", "VBD", "VBN", "-NONE-", "IN", "DT", "NNP", "NNP", ",", "DT", "JJ", "NN", ",", "VBN", "-NONE-", "JJ", "IN", "NNP", "NNP", "IN", "PRP$", "CD", "JJ", "NN", ".", "DT", "NN", "VBD", "PRP", "RB", "IN", "NNP", "NN", "NN", "IN", "-NONE-", "VBG", "DT", "NNP", "NNP", "CC", "VBD", "-NONE-", "VBG", "DT", "NN", ":", "NNP", "NNP", "NN", "IN", "DT", "NNP", "CD", ".", "-NONE-", "VBG", "IN", "NNP", "NNP", "NNP", "-LRB-", "RB", "VBG", "DT", "NN", "NN", "-RRB-", ",", "DT", "NN", "VBD", "DT", "NN", "IN", "-NONE-", "VBG", "JJ", ",", "NN", "CC", "JJ", "JJ", "NNS", "CC", "DT", "JJ", "TO", "JJ", "NNS", ",", "RB", "IN", "TO", "-NONE-", "CC", "VBG", "-NONE-", "NNP", "NNP", "NNP", ",", "JJ", "NN", "CC", "NN", "TO", "JJ", "NNP", "NNP", "NNP", "NNP", ".", "NNP", "VBD", "RB", "RB", "VB", "JJ", "VBN", "NN", ".", "PRP", "VBD", "JJ", "NN", "IN", "DT", "JJ", "NNS", "IN", "NN", "NN", ",", "-NONE-", "VBG", "RB", "VBN", "``", "JJ", "''", "NN", "NNS", ",", "NN", "NNS", "CC", "JJ", "NNS", ",", "VBG", "NNP", "NN", "NNP", "NNP", ".", "WRB", "JJ", ",", "PRP", "VBD", "CC", "VBD", "NN", "IN", "VBN", "NN", ".", "RB", "DT", "VBN", "VBD", "NNS", "IN", "DT", "NN", ".", "NNP", "NN", "VBD", "DT", "NN", "NN", ".", "IN", "PRP", "VBD", "RB", "JJ", "IN", "DT", "JJ", "NN", "PRP", "VBD", "RB", "RB", "NN", "IN", "DT", "NN", ",", "CC", "NN", ".", "IN", "PRP", "VBD", "RB", "DT", "JJ", "NN", ",", "PRP", "VBD", "PRP", "IN", "IN", "DT", "NN", ",", "DT", "NN", "WDT", "-NONE-", "RB", "VBD", "NNP", "NNP", ",", "DT", "NN", "POS", "JJ", "``", "NN", "''", "NN", ".", "CC", "IN", "DT", "JJ", "NN", "IN", "DT", "NNS", "CC", "DT", "JJ", ",", "JJ", "JJ", "NN", "NN", ",", "``", "NNP", "NNP", "''", "RB", "VBZ", "JJ", "IN", "JJ", "NN", ".", "NN", "IN", "DT", "NNS", "VBP", "JJ", "NN", ":", "NNS", "VBD", "NN", "DT", "JJ", "NN", "IN", "DT", "NN", ".", "NNP", "POS", "NNS", "RB", "VBD", "PRP", "TO", "VB", "IN", ".", "DT", "NNS", "PRP", "VBD", "NN", "JJ", "NNS", ",", "JJ", "NNS", "WP", "-NONE-", "VBD", "JJ", "NNS", ",", "NNPS", "NNS", ",", "JJ", "NNS", ",", "JJ", "NNS", ".", "IN", "DT", "NN", "IN", "PRP", ",", "RB", "CD", "VBZ", "VBG", "IN", "JJ", "CC", "JJ", ",", "CC", "RB", "JJ", "CC", "RB", "RB", "JJ", ".", "DT", "CD", "NN", "IN", "JJS", "RB", "JJ", "VBD", "NNP", "NNP", "NNP", ",", "DT", "NN", "WP", "-NONE-", "VBD", "PRP$", "NN", "TO", "NNP", "NNP", "NNP", "CC", "VBD", "DT", "NN", "NN", "CC", "NN", "IN", "DT", "NN", "IN", "NN", ".", "PRP", "VBZ", "DT", "NN", "IN", "DT", "NN", ",", "RB", "IN", "NN", "-NONE-", "-NONE-", "TO", "VB", "-NONE-", "VBN", "-NONE-", "-NONE-", ".", "-NONE-", "VBN", "IN", "-NONE-", "VBG", "RP", "``", "NNP", "NNP", "POS", "''", "NNS", ",", "DT", "NNS", "VBP", "IN", "DT", "NN", "NNS", "IN", "NNP", ",", "RB", "DT", "NN", "CD", "-LRB-", "NN", "-RRB-", "JJ", "NN", "IN", "WP$", "NNS", "DT", "NN", "VBD", "NN", "-NONE-", ".", "PRP", "VBP", "IN", "JJS", "VB", "RB", "TO", "-NONE-", "VBG", "IN", "DT", "NNS", "MD", "VB", "-NONE-", "TO", "VB", "``", "JJ", "JJ", "NN", "NNS", ".", "''", "NNS", "IN", "NN", "CD", "-LRB-", "NN", "-RRB-", "VBP", "DT", "RB", "IN", "-NONE-", "VBG", "NN", "IN", "DT", "NN", "CC", "RB", "VBG", "NN", "WRB", "NNS", "VBP", "RP", "-NONE-", "TO", "VB", "PRP", "IN", "-NONE-", ".", "JJ", "JJ", "NNS", ",", "IN", "PRP", "DT", "NNS", "IN", "NNP", ",", "VBP", "DT", "JJ", "NNS", "IN", "NNP", ".", "PRP", "VBP", "NN", "IN", "NN", "NNS", "WDT", "-NONE-", "VBP", "JJ", "IN", "NN", ".", "WRB", "VBP", "NNS", "IN", "DT", "RB", "VBN", "-NONE-", "-NONE-", ".", "``", "NNP", "NNP", "''", "VBZ", "VB", "DT", "JJ", "NNS", ".", "IN", "CC", "IN", "DT", "NNS", "IN", "NN", "IN", "DT", "NNP", "VBP", "-NONE-", "NNS", "IN", "NNS", "WP", "-NONE-", "MD", "JJS", "VB", "VBN", "-NONE-", "IN", "-NONE-", "VBG", "TO", "DT", "JJ", "NN", "JJ", "NN", ".", "PRP", "VBP", "IN", "WRB", "NN", "VBZ", "VBG", "NN", ",", "VBG", "NN", "CC", "VBG", "DT", "JJ", "NN", "NN", "-NONE-", ",", "EX", "VBZ", "JJ", "NN", "-NONE-", "-NONE-", "TO", "VB", "VBN", "-NONE-", "IN", "-NONE-", "VBG", ",", "VBG", "CC", "VBG", "DT", "NNS", "CC", "NNS", "IN", "NN", ".", "PRP", "VBP", "PRP$", "NN", "IN", "DT", "NNP", "NN", "POS", "NN", "CC", "PRP", "VBP", "RB", "DT", "NN", "-NONE-", "TO", "VB", "NN", "VB", ".", "WRB", "JJ", "NN", "NNS", "CC", "NNS", "-NONE-", "VBP", "IN", "PRP", "VBP", "DT", "NNS", "IN", "JJ", "NNS", ".", "DT", "VBZ", "DT", "JJ", "NN", "VBN", "-NONE-", "IN", "DT", "NNP", "NN", ".", "NNP", "NNP", "VBD", "NN", "CC", "NN", "JJ", "NN", "IN", "DT", "NNP", "NNP", "NNP", "NNP", "NNP", "NNP", ",", "CD", ".", "DT", "JJ", "NN", "CC", "JJ", "NNS", "IN", "JJ", "NN", "NNP", "NNP", "NNPS", "NNP", "VBD", "IN", "NN", "-NONE-", "TO", "VB", "DT", "JJ", "NN", "-NONE-", "TO", "VB", "JJS", "IN", "DT", "JJ", "NN", "POS", "NN", "IN", "CD", "NNS", ".", "DT", "JJ", "NN", "MD", "VB", "-NONE-", "TO", "VB", "DT", "NN", "POS", "NNS", ",", "NNS", "VBD", "-NONE-", "-NONE-", ".", "``", "DT", "NN", "VBZ", "IN", "DT", "NN", "NN", "MD", "VB", "IN", "IN", "DT", "NN", "NN", ".", "NN", "MD", "VB", "VBN", "RP", "-NONE-", "IN", "DT", "JJ", "NN", ",", "''", "VBD", "-NONE-", "NNP", "NNP", ",", "JJ", "NN", "NN", "IN", "NNP", "NNP", ",", "JJ", "NN", "IN", "NNP", "NNP", ".", "RB", "PRP$", "NN", "VBZ", "VBN", "-NONE-", ",", "DT", "JJ", "NN", "MD", "VB", "NNS", "-NONE-", "IN", "JJ", "NNS", "-NONE-", "-NONE-", "TO", "VB", "CC", "VB", "NNP", "NNP", "POS", "NN", "NNS", "-NONE-", ".", "NNS", "MD", "VB", "VBN", "-NONE-", "DT", "NN", "CC", "DT", "NN", "NN", "TO", "JJ", "NN", "VBZ", "VBN", "-NONE-", "TO", "VB", "DT", "NN", "IN", "JJ", "NNS", "IN", "NNP", "NNP", "POS", "CD", "JJ", "NNS", ",", "NN", "NNS", "VBD", "-NONE-", "-NONE-", ".", "IN", "DT", "NN", "VBN", "-NONE-", "NN", ",", "DT", "NN", "CC", "NNP", "NNP", "IN", "NNP", "MD", "VB", "JJ", "NNS", "IN", "DT", "JJ", "NN", ",", "DT", "VBG", "CD", "CD", "JJ", "NN", "-LRB-", "$", "CD", "CD", "-NONE-", "-RRB-", ".", "NNP", "NNP", "VBZ", "-NONE-", "TO", "VB", "CD", "CD", "NN", ",", "JJS", "IN", "PRP", "IN", "VBN", "NN", ",", "CC", "VB", "DT", "NN", "NN", "IN", "DT", "JJ", "NN", ".", "NNS", "VBG", "NNS", "IN", "NNP", "NNP", "POS", "JJ", "NNS", "VBP", "VBN", "-NONE-", "TO", "VB", "JJS", "IN", "DT", "VBG", "CD", "CD", "NN", "IN", "NN", "NN", ",", "NN", "NNS", "VBD", "-NONE-", "-NONE-", ".", "NNP", "NNP", "POS", "JJS", "NN", "VBZ", "JJ", "NNP", "NNP", "NNPS", "NNP", ".", "NNP", ",", "WDT", "-NONE-", "VBZ", "CD", "NNS", "IN", "NN", "IN", "NNP", "NNP", ",", "VBD", "NNS", "IN", "$", "CD", "CD", "-NONE-", "NNS", "IN", "DT", "NN", "NN", "DT", "NN", ".", "NNP", "NNP", "POS", "NN", "NNS", "VBD", "NNP", "IN", "DT", "NNP", "NN", ".", "PRP$", "NNS", "-NONE-", "TO", "VB", "VBN", "-NONE-", "VBN", "-NONE-", ",", "NNP", "NNP", "NNP", "VBD", "-NONE-", "PRP", "VBZ", "-NONE-", "TO", "VB", "JJS", "IN", "PRP$", "JJ", "CC", "NN", "NN", "NNS", "IN", "NNP", "CC", "DT", "JJ", "NNS", "-NONE-", "TO", "VB", "PRP$", "NN", "CC", "VB", "JJ", "NN", ".", "IN", "DT", ",", "DT", "NN", "VBZ", "-NONE-", "TO", "VB", "$", "CD", "CD", "-NONE-", "IN", "NN", "IN", "DT", "NNS", ",", "WDT", "-NONE-", "MD", "RB", "VB", "PRP$", "VBN", "NN", ",", "DT", "NN", "VBD", "-NONE-", "-NONE-", ".", "IN", "NN", ",", "DT", "NN", "VBZ", "VBN", "PRP$", "NN", "CC", "NN", "NN", ",", "-NONE-", "VBG", "NNP", "NNP", "NNP", ",", "NN", "IN", "DT", "NN", "POS", "NN", "NN", "NNS", ",", "TO", "VB", "NNP", "NNP", "NNP", ".", "NNP", "NNP", "VBD", "-NONE-", "PRP", "VBD", "``", "RB", "VBN", "IN", "DT", "VBG", "NN", "IN", "DT", "NN", "POS", "NNS", "IN", "PRP", "VBD", "-NONE-", "TO", "VB", "DT", "NN", "IN", "DT", "JJ", "CD", "NNS", ".", "''", "JJ", "IN", "NNP", "NNP", "POS", "NN", ",", "NNP", "NNP", "VBD", "PRP$", "JJ", "NNS", "IN", "NNP", ",", "NNP", ",", "TO", "NNP", "NNP", ",", "WRB", "DT", "NN", "VBD", "PRP$", "NN", "NNS", "NNS", "-NONE-", ".", "NNP", "NNP", "VBZ", "IN", "NN", ".", "NNP", "NNP", "VBD", "VBN", "-NONE-", "TO", "VB", "VBN", "-NONE-", "IN", "RB", "VBN", "NNP", "NNP", "NNP", "IN", "NNP", ",", "NNP", ",", "CC", "DT", "NN", "VBD", "RB", "IN", "DT", "NN", "CC", "RB", "VBD", "JJ", "NN", ".", "IN", "JJ", "NN", "IN", "DT", "NNP", "NNP", "NNP", "NNP", "NN", ",", "NNP", "NNP", "VBD", "IN", "$", "CD", "-NONE-", "DT", "NN", ",", "RB", "CD", "NNS", ".", "NNP", "NNP", "NNP", "VBD", "DT", "CD", "NN", "NN", "IN", "NN", "NNS", ",", "-NONE-", "VBG", "NN", "NNS", "RB", "RB", "IN", "DT", "RBR", "JJ", "NN", "NN", "NN", ".", "DT", "NNP", "NNP", "NN", "VBD", "$", "CD", "CD", "-NONE-", ",", "CC", "CD", "NNS", "DT", "NN", ",", "VBN", "IN", "$", "CD", "CD", "-NONE-", ",", "CC", "$", "CD", "-NONE-", "DT", "NN", ",", "DT", "NN", "JJR", ".", "NNS", "IN", "DT", "JJS", "NN", "VBD", "$", "CD", "CD", "-NONE-", ",", "DT", "CD", "NN", "NN", "IN", "JJ", "NN", "POS", "$", "CD", "CD", "-NONE-", ".", "IN", "DT", "NN", "VBD", "NNP", "CD", ",", "NNP", "VBD", "$", "CD", "CD", "-NONE-", ",", "CC", "$", "CD", "-NONE-", "DT", "NN", ",", "RB", "CD", "NN", "IN", "$", "CD", "CD", "-NONE-", ",", "CC", "$", "CD", "-NONE-", "DT", "NN", ".", "DT", "NN", "POS", "NNS", "VBD", "DT", "NN", "IN", "$", "CD", "CD", "-NONE-", "IN", "DT", "NN", "IN", "NN", "NNS", ".", "NNS", "IN", "DT", "JJ", "NN", "VBD", "$", "CD", "CD", "-NONE-", ",", "RB", "CD", "NN", "IN", "$", "CD", "CD", "-NONE-", ".", "NNP", "VBD", "-NONE-", "PRP$", "NN", "NNS", "VBP", "DT", "NN", "IN", "DT", "NN", "NN", "IN", "NNP", ",", "NNP", ",", "DT", "JJ", "NN", "IN", "DT", "NNP", "NN", "NN", "IN", "NNP", "CC", "DT", "NN", "IN", "NN", "IN", "DT", "NN", ".", "DT", "NN", "NN", ",", "WDT", "-NONE-", "VBZ", "JJ", "NN", "NN", "CC", "NN", "NN", "NNS", ",", "MD", "VB", "VBN", "-NONE-", "IN", "DT", "JJ", "NN", "CC", "RB", ",", "DT", "NN", "VBD", "-NONE-", "-NONE-", ".", "NNP", "VBD", "PRP$", "NN", "NN", "RB", "TO", "JJR", "NNS", "IN", "NNS", "IN", "DT", "NN", "NN", "NN", "RB", "RB", "IN", "JJ", "NNS", ",", "WDT", "-NONE-", "VBD", "JJR", "NN", "NN", ".", "IN", "DT", "NN", ",", "NN", "NN", "NN", "VBD", "JJ", ",", "DT", "NN", "VBD", "-NONE-", "-NONE-", ".", "PRP$", "NN", "NN", "VBD", "JJR", "VBG", "NN", "IN", "NN", "NNS", ",", "CC", "RB", "VBD", "JJR", "IN", "NN", ".", "DT", "NNP", "NNP", "NN", "VBD", "IN", "JJR", "NNS", "IN", "NN", "CC", "IN", "VBN", "NN", "NNS", ",", "PRP", "VBD", "-NONE-", "-NONE-", ".", "NNP", "VBD", "-NONE-", "PRP$", "NNP", "NN", "NN", "VBD", "VBN", "-NONE-", "IN", "VBG", "JJ", "NNS", "IN", "NNP", "NNP", ".", "NNP", "NNS", "VBD", "NN", "IN", "$", "CD", "-NONE-", ",", "RB", "$", "CD", "-NONE-", ",", "IN", "NNP", "NNP", "NNP", "NNP", "JJ", "NN", ".", "NNS", "VBN", "-NONE-", "IN", "VBD", "JJ", "NN", "RB", "JJ", "IN", "DT", "NN", "IN", "NNS", "POS", "NNS", ".", "DT", "NNS", "VBP", "VBN", "-NONE-", "IN", "IN", "JJS", "CD", "NNS", ",", "CC", "VBD", "DT", "JJ", "JJ", "NN", "IN", "JJ", "NNS", "IN", "NN", ".", "VBN", "CC", "JJ", "NNS", "VBG", "NNS", "VBP", "VBN", "-NONE-", ".", "DT", "NN", "NN", "VBZ", "JJ", "NN", "IN", "DT", "JJ", "NN", "WRB", "IN", "JJS", "CD", "NNS", "VBP", "NNS", "NNS", "IN", "DT", "JJ", "CD", "NNS", "-NONE-", ".", "RB", ",", "JJ", "NN", "VBZ", "VBN", "-NONE-", "IN", "DT", "JJ", "NN", ".", "NNP", "NNP", "NNP", "VBD", "-NONE-", "PRP", "VBD", "PRP$", "$", "CD", "CD", "-NONE-", "JJ", "NN", "IN", "RB", "VBN", "NNP", "NNP", "NNP", ",", "DT", "NNP", "NN", "VBG", "NN", ".", "DT", "NN", "JJ", "NN", "IN", "DT", "NNP", "NNP", "VBZ", "VBG", "JJ", "NNS", "IN", "DT", "NNP", "NN", "NN", ".", "DT", "JJ", "NNS", "VBP", "RB", "JJ", "IN", "NNS", "VBP", "VBG", "-NONE-", "TO", "VB", "JJ", "NN", "NNS", "CC", "NNS", "-NONE-", "-NONE-", "TO", "VB", "DT", "RB", "VBN", "NN", "NN", "TO", "NNS", "IN", "-NONE-", "VBG", "IN", "JJ", "NNS", ".", "NN", "NN", "NNS", "VBP", "VBN", "CD", "NN", "DT", "NN", "IN", "DT", "NN", "JJR", ".", "NN", "NNS", "CC", "DT", "NNS", "VBP", "VBG", "DT", "JJ", "NN", "IN", "NN", ".", "CC", "DT", "NN", "NNS", "VBP", "VBG", "IN", "NN", "NNS", "MD", "VB", "DT", "NN", "IN", "NNS", "VBP", "-NONE-", "TO", "VB", "RB", "IN", "DT", "NN", "-NONE-", "-NONE-", "TO", "VB", "PRP$", "NNS", "TO", "DT", "NNPS", ".", "DT", "NNP", "NNP", "VBD", "RB", "CD", "CD", "NNS", "IN", "NNP", "NN", "-NONE-", "IN", "NNP", ",", "WDT", "-NONE-", "VBZ", "DT", "RBS", "RB", "VBN", "-NONE-", "TO", "DT", "NNP", "NNP", "IN", "CD", "NN", "IN", "DT", "NNP", ".", "DT", "NNP", "NNP", "VBZ", "JJ", "IN", "PRP", "VBN", "-NONE-", "IN", "NNP", ",", "WDT", "-NONE-", "MD", "VB", "DT", "NN", "IN", "JJS", "NNS", ".", "CC", "PRP", "VBZ", "RB", "JJ", "DT", "NN", "IN", "IN", "JJ", "NN", "NNS", "IN", "DT", "NNP", "NNP", ",", "IN", "WDT", "VBZ", "-NONE-", "JJ", "IN", "DT", "NNP", "NN", "WDT", "-NONE-", "VBZ", "VBN", "-NONE-", "RB", ".", "``", "PRP", "VBP", "VBG", "DT", "JJS", "NN", "IN", "DT", "JJ", "IN", "NN", "NN", "TO", "CD", "NN", "IN", "NN", ",", "''", "VBD", "-NONE-", "NNP", "NNP", ",", "DT", "NNP", "NNP", "NNP", "NN", "NN", ".", "``", "PRP", "VBZ", "VBG", "-NONE-", "TO", "VB", "RB", "JJ", ".", "''", "IN", "IN", "JJ", "JJ", "NN", "IN", "DT", "JJ", "NNS", ",", "DT", "NN", "NN", "IN", "DT", "JJ", "NN", "IN", "DT", "NNP", "NNP", "VBZ", "RB", "JJ", "IN", "JJ", "NN", "NNS", "VBP", "RB", "VBG", "DT", "NN", "IN", "NNS", "-NONE-", "PRP$", "NNS", "VBP", "-NONE-", "IN", "CD", "NN", ".", "IN", "DT", "JJ", "NNS", ",", "JJ", "NNS", "RB", "MD", "RB", "VB", "JJ", "-NONE-", "TO", "VB", "RB", "VBN", "RB", "IN", "NNP", "NNP", "IN", "DT", "NNP", "NNP", "NNP", "IN", "NNPS", "VBZ", "VBG", "-NONE-", "TO", "VB", "DT", "NN", "IN", "DT", "NNP", "NNP", ",", "WDT", "-NONE-", "VBZ", "IN", "DT", "NNP", "NNP", ".", "DT", "NNP", "NNP", "VBZ", "VBG", "DT", "NN", "IN", "DT", "NNP", "NNP", "IN", "CD", "NNS", "JJR", "IN", "JJ", "IN", "IN", "JJ", "NN", "NNS", "IN", "DT", "NNS", "WDT", "-NONE-", "VBP", "PRP", ".", "NN", "NNS", "IN", "DT", "NNP", "NNP", "VBD", "NN", "IN", "NN", "IN", "JJ", "NN", "-NONE-", "DT", "NN", "IN", "DT", "NN", "MD", "RB", "VB", "DT", "NN", ".", "CC", "DT", "NNP", "NNP", "IN", "NNPS", "VBZ", "DT", "NN", "NN", "TO", "VB", "-NONE-", "VBG", "DT", "NN", ".", "IN", "NNP", "NNP", ",", "DT", "NN", "NN", "IN", "DT", "NNP", "NNP", "VBZ", "RB", "CD", "NNS", "IN", "JJ", "CC", "PRP", "MD", "VB", "DT", "JJ", "CD", "NNS", "WRB", "DT", "NN", "IN", "DT", "NNP", "NNP", "VBZ", "VBN", "-NONE-", "-NONE-", ",", "DT", "NNP", "NNP", "NN", "VBD", "-NONE-", "-NONE-", ".", "JJ", "NNS", "VBP", "NN", "NNS", "JJ", "NN", "IN", "DT", "NN", "IN", "DT", "JJS", "NN", "IN", "CD", "NNS", ".", "IN", "RB", ",", "DT", "NN", "NN", "POS", "VBG", "JJ", "NNS", "VBP", "RB", "VBN", "DT", "JJ", "NN", "IN", "DT", "NN", "IN", "NN", "NNS", "IN", "DT", "NNP", "NNP", "IN", "NNP", ".", "JJ", "NN", "NNS", "CC", "NNS", "VBP", "DT", "NN", "IN", "DT", "NN", "NNS", "NNS", "VBN", "-NONE-", "RB", "-NONE-", "TO", "VB", "DT", "NN", "-NONE-", "PRP", "VBP", "-NONE-", "-NONE-", "TO", "VB", "NN", "IN", "NNS", ".", "IN", "DT", "NNP", "IN", "NNP", "NN", "DT", "NN", "IN", "DT", "NN", "NN", "IN", "NNP", "NN", "VBD", "CD", "NNS", "DT", "NN", "-NONE-", "TO", "VB", "IN", "$", "CD", "-NONE-", "DT", "NN", ".", "NN", "NNS", "VBP", "VBN", "JJ", "DT", "NN", "IN", "DT", "JJ", "JJ", "NNS", "IN", "DT", "NN", "VBZ", "VBN", "NNS", "TO", "VB", "DT", "NNS", "VBN", "-NONE-", "IN", "DT", "CD", "NN", ".", "IN", "DT", "NN", "VBG", "IN", ",", "RB", ",", "DT", "NNS", "VBP", "VBG", "IN", "NNS", "MD", "VB", "IN", "DT", "NNS", "IN", "NNP", "NNS", "VBP", "-NONE-", "TO", "VB", "DT", "NN", "-NONE-", "PRP", "VBP", "VBN", "-NONE-", "TO", "VB", "-NONE-", ".", "NNS", "VBP", "IN", "DT", "JJS", "NN", "IN", "JJ", "NNS", "-NONE-", "-NONE-", "TO", "VB", "IN", "NN", "NNS", "-NONE-", ".", "IN", "DT", "NN", "VBD", "NNP", "NNS", ",", "PRP", "VBP", "JJR", "IN", "JJ", "NN", "NN", "IN", "PRP$", "JJ", "NN", ",", "CC", "DT", "VBZ", "PRP", "TO", "VB", "IN", "NNS", "TO", "VB", ".", "IN", "NNS", "IN", "NNP", ",", "IN", "NN", ",", "DT", "NN", "NNS", "VBP", "VBG", "NNS", "$", "CD", "-NONE-", "DT", "NN", "IN", "NN", ".", "JJ", "NNS", "RB", "MD", "RB", "VB", "IN", "NNS", "VBD", "IN", "JJS", "CD", "NNS", "DT", "NN", ",", "VBD", "-NONE-", "-NONE-", "NNP", "NNP", ",", "NN", "IN", "NNP", "NNP", "CC", "NNP", "NNP", "NNP", "IN", "NNP", ",", "NNP", ".", "PRP", "-NONE-", "VBZ", "RB", "JJ", ",", "RB", ",", "WP", "-NONE-", "MD", "VB", "DT", "VBG", "NN", ".", "IN", "NNP", "NN", "NNS", "VBD", "IN", "RB", "DT", "IN", "DT", "NN", "IN", "DT", "NN", ",", "DT", "NNP", "NNP", "VBZ", "IN", "RB", "NN", "IN", "DT", "NN", "MD", "RB", "VB", "IN", "NN", "IN", "DT", "CD", "NN", "NN", "VBZ", ".", "DT", "NNS", "VBP", "VBN", "IN", "NNS", "IN", "DT", "NN", "NN", "POS", "NNS", "MD", "VB", "NNS", "TO", "VB", "-NONE-", "VBG", "NN", "NNS", "NNS", ":", "-NONE-", "RB", "TO", "VB", "JJ", "NN", ".", "``", "DT", "NN", "VBZ", "VBG", "DT", "NN", "WRB", "IN", "NN", "EX", "VBZ", "NN", "IN", "NN", "-NONE-", "-NONE-", "TO", "VB", "VBN", "-NONE-", "-NONE-", ",", "''", "VBD", "-NONE-", "NNP", "NNP", ",", "NNP", "NNP", "NN", "NN", ".", "IN", "JJ", "IN", "DT", "NN", "POS", "NN", "NN", "VBZ", "TO", "NNP", "NNP", "IN", "NN", ",", "PRP", "-NONE-", "VBZ", "JJ", "IN", "NNS", "TO", "VB", "DT", "NNP", "NNP", "IN", "-NONE-", "VBG", "DT", "JJ", "NN", "IN", "NN", "IN", "NN", "TO", "DT", "NN", ".", "NNS", "IN", "DT", "NNP", "NNPS", "CC", "NNP", "NNP", "MD", "RB", "VB", "NN", "IN", "NNP", "NNP", ".", "CD", "NN", ",", "IN", "NN", ",", "VBZ", "RB", "VBG", "PRP$", "NN", "VBG", "NN", "IN", "NNP", "TO", "NNP", ".", "CC", "PRP", "-NONE-", "VBZ", "RB", "JJ", "IN", "DT", "NNP", "NNP", "MD", "VB", "IN", "PRP$", "NN", "VBG", "NN", ".", "DT", "JJ", "NNS", "VBD", "VBN", "-NONE-", "IN", "DT", "NN", "IN", "NNP", "IN", "IN", "NNS", ".", "DT", "NNP", "NNP", "RB", "VBZ", "-NONE-", "VBG", "NNP", "NNS", "JJR", "IN", "DT", "NN", ".", "CC", "PRP$", "NNS", "RB", "VBD", "VBN", "-NONE-", "IN", "DT", "NN", "IN", "PRP$", "JJ", "NN", "RB", "RB", "IN", "NN", "NNS", ".", "IN", "JJ", "NN", "NNS", "NN", ":", "NN", ":", "JJ", "NN", "NNS", "NNS", "VBD", "IN", "JJ", "NN", ",", "CC", "JJ", "IN", "DT", "NN", "VBD", "IN", "NN", "NN", ".", "NNS", "VBD", "IN", "DT", "NN", "IN", "DT", "JJ", "JJ", "JJ", "NN", "VBD", "VBN", "-NONE-", "IN", "DT", "NN", ",", "-NONE-", "VBG", "DT", "RB", "JJ", "JJ", "NN", ".", "NN", "NN", "IN", "NNP", "NN", "VBD", "IN", "CD", "NNS", "DT", "NN", ",", "RB", "CD", "NN", "IN", "DT", "NNP", "NNP", "NNP", "NNP", ".", "NNP", "NNP", "NNP", "IN", "NNP", "NN", "VBD", "CD", "NNS", "TO", "$", "CD", "-NONE-", "DT", "NN", ".", "NN", "NNS", "VBD", "DT", "NN", "WDT", "-NONE-", "VBD", "NNP", ".", "NNP", "NNPS", ":", "NNP", "NNS", "VBD", "RB", "VBN", "NN", "CC", "NN", "VBD", "IN", "DT", "NNS", "NNS", ".", "NNP", "NN", "NN", "VBD", "$", "CD", "-NONE-", "DT", "NN", "TO", "$", "CD", "-NONE-", ".", "NNP", "NN", "VBD", "CD", "NNS", "DT", "NN", "TO", "$", "CD", "-NONE-", ".", "NNP", "NN", "VBD", "IN", "$", "CD", "-NONE-", "DT", "NN", "IN", "$", "CD", "-NONE-", ".", "JJ", "NNS", ",", "NN", "IN", "JJ", ",", "RB", "VBP", "VBG", "VBN", "-NONE-", "JJR", "IN", "NN", "NN", "NNS", "IN", "DT", "NN", "IN", "NNS", "VBP", "JJR", "NN", "NN", ",", "VBG", "TO", "NNP", "NNP", ",", "NN", "NN", "IN", "NN", "IN", "NNPS", "NNP", "IN", "NNP", "NNP", ".", "``", "DT", "JJ", "NN", "IN", "JJ", "NNS", "VBD", "DT", "NN", "IN", "NN", "CC", "NN", "IN", "NNS", ",", "''", "PRP", "VBD", "-NONE-", ".", "NN", ",", "DT", "NN", "NN", "VBD", "RB", ",", "-NONE-", "VBG", "DT", "JJR", "JJ", "NN", "IN", "JJ", "NNS", "NNS", ",", "PRP", "VBD", "-NONE-", "-NONE-", ".", "NN", "CC", "NN", ",", "WDT", "-NONE-", "VBP", "JJR", "IN", "DT", "JJ", "NN", "IN", "NN", ",", "VBD", "RB", "JJR", ",", "PRP", "VBD", "-NONE-", "-NONE-", ".", "NN", "VBZ", "RB", "IN", "NN", "IN", "``", "RB", "JJ", "''", "NNS", "IN", "NNS", "IN", "DT", "NNP", "NNP", ",", "PRP", "VBD", "-NONE-", "-NONE-", ".", "NN", ",", "DT", "NNS", "VBD", "IN", "CD", "NNS", "TO", "DT", "NN", "IN", "CD", "NNS", ",", "VBG", "TO", "DT", "NN", "NN", ".", "NNP", ":", "NNS", "NNS", "RB", "VBD", "NNP", "POS", "NNS", "IN", "JJ", "NNS", "VBD", "-NONE-", "TO", "VB", ".", "DT", "NNP", "NN", "VBD", "CD", "NNS", "DT", "NN", "TO", "$", "CD", "-NONE-", ".", "IN", "NNP", ",", "NNS", "IN", "CD", "NN", "NNS", ",", "NNP", "NNP", "CC", "NNP", "NNP", ",", "WDT", "-NONE-", "VBP", "TO", "DT", "JJ", "NNP", "NNP", ",", "NN", "VBD", "-NONE-", "TO", "VB", "DT", "JJ", "NN", "NN", ",", "DT", "NN", "VBD", "-NONE-", "-NONE-", ".", "NNS", "IN", "DT", "NN", ",", "DT", "NN", "VBD", "-NONE-", "-NONE-", ",", "VBD", "DT", "NN", "IN", "JJ", "NNS", ",", "JJ", "IN", "DT", "NN", "-NONE-", "TO", "VB", ".", "DT", "NN", "VBD", "IN", "RB", "JJ", "IN", "DT", "NN", "NNS", "VBD", "-NONE-", "DT", "JJ", "NN", "TO", "NNS", ".", "IN", "DT", "NN", "IN", "NN", ",", "PRP", "VBD", "-NONE-", "-NONE-", ",", "DT", "JJ", "NN", "IN", "NNS", "VBD", "VBN", "-NONE-", "IN", "NN", "IN", "NNS", "NNS", "IN", "DT", "JJR", "NN", "VBZ", "JJR", "NN", "NN", "IN", "DT", "NN", ".", "RB", "VBG", "TO", "DT", "NN", "IN", "NN", ",", "DT", "NN", "VBD", "-NONE-", "-NONE-", ",", "VBD", "-NONE-", "DT", "NN", "IN", "NNP", "VBG", "NNS", ",", "WDT", "-NONE-", "VBZ", "DT", "JJ", "VBG", "NNS", "POS", "NN", "WDT", "-NONE-", "VBZ", "JJ", "IN", "NN", "CC", "VBZ", "DT", "NN", "IN", "WP", "DT", "JJ", "NN", "MD", "VB", "-NONE-", ".", "DT", "NNP", "NNP", "NNP", "IN", "NNP", "POS", "NNP", "NN", "VBD", "TO", "CD", "NN", "IN", "CD", "JJ", "NNS", "IN", "NNS", "IN", "CD", "NN", ".", "DT", "NNP", "NN", "VBD", "CD", "NN", ".", "DT", "NN", "IN", "CD", "NN", "RB", "VBZ", "DT", "NN", "IN", "DT", "JJ", "NN", "IN", "DT", "NN", ",", "IN", "DT", "NN", "IN", "CD", "NN", "VBZ", "TO", "NN", ".", "DT", "NNP", "NN", "VBD", "DT", "NN", "IN", "DT", "NNP", "NN", "IN", "DT", "NNP", "NNP", "IN", "NNP", "NNP", "MD", "RB", "VB", "DT", "NN", "IN", "CD", "NN", ".", "NNP", "NNP", "VBD", "CD", "NNS", "IN", "PRP$", "NNP", "NN", "IN", "JJ", "NNS", "CC", "VBD", "VBN", "NN", "NN", "-NONE-", "-NONE-", "TO", "VB", "DT", "NNP", "NN", "TO", "VB", "IN", "DT", "JJ", "NN", "IN", "DT", "NN", "IN", "NNS", "-NONE-", ".", "DT", "JJ", "NN", "VBZ", "VBN", "-NONE-", "IN", "NNP", "NNP", "POS", "NNP", "NN", "VBG", "NN", "NN", ".", "NNP", "NNP", "VBD", "DT", "CD", "NN", "NN", "IN", "NN", "NN", ",", "IN", "VBN", "NN", "NNS", "VBD", "-NONE-", "TO", "VB", "NN", "IN", "NN", "CC", "JJ", "NN", "NNS", ".", "DT", "NN", "POS", "JJS", "NN", "VBD", "$", "CD", "CD", "-NONE-", ",", "CC", "CD", "NNS", "DT", "NN", ",", "VBN", "IN", "DT", "JJ", "$", "CD", "CD", "-NONE-", ",", "CC", "CD", "NNS", "DT", "NN", ".", "DT", "JJ", "NN", "VBZ", "NN", "NNS", "IN", "$", "CD", "CD", "-NONE-", "IN", "NN", "NNS", ",", "IN", "JJ", "NNS", "IN", "DT", "JJ", "NN", "VBD", "$", "CD", "CD", "-NONE-", ".", "IN", "DT", "CD", "NN", ",", "NNP", "RB", "VBD", "DT", "$", "CD", "CD", "-NONE-", "JJ", "NN", "IN", "DT", "NN", "NN", "NN", ".", "NNS", "VBD", "CD", "NN", "TO", "$", "CD", "CD", "-NONE-", "IN", "$", "CD", "CD", "-NONE-", ".", "DT", "NNS", "NN", "VBZ", "RB", "JJ", "IN", "NN", "IN", "JJ", "NN", "POS", "RB", "JJ", "JJ", "NN", ",", "WRB", "DT", "NN", "VBD", "VBG", "DT", "JJ", "NN", "IN", "NN", "CC", "NN", "-NONE-", ".", "RB", ",", "NN", "NN", "NN", "VBD", "CD", "NN", ",", "IN", "NNP", "VBD", "JJ", "NNS", "IN", "PRP$", "JJ", "CC", "NN", "NNS", ",", "-NONE-", "VBG", "NN", "IN", "DT", "NNS", ".", "IN", "NNS", "WDT", "-NONE-", "VBP", "-NONE-", "TO", "VB", ",", "RB", ",", "DT", "NN", "POS", "NN", "NN", "VBD", "-NONE-", "TO", "VB", "IN", "JJ", "NN", "IN", "PRP$", "JJ", "NNS", "VBG", "DT", "NN", "NN", "CC", "JJ", "NNS", ".", "NNP", "NNP", ",", "DT", "NN", "IN", "NNP", "NNP", ",", "VBD", "IN", "DT", "NN", "IN", "DT", "NN", "NN", ",", "VBN", "-NONE-", "IN", "JJ", "JJ", "NNS", ",", "VBP", "NNP", "NNS", ".", "RB", ",", "NNP", "NNS", "JJR", "IN", "JJ", "NNS", ",", "CC", "DT", "JJ", "NN", "VBZ", "VBN", "IN", "RBR", "JJ", "NN", "NN", ".", "DT", "NN", "VBD", "JJR", "NNS", "CC", "NNS", "IN", "DT", "NN", "NN", "TO", "DT", "NN", "IN", "NNS", "IN", "DT", "NNP", ",", "NNP", ",", "NN", ",", "WDT", "-NONE-", "RB", "VBZ", "DT", "CD", "NN", "NN", "IN", "NNP", "POS", "NNP", "NNP", "NNP", ".", "IN", "DT", "NN", "NN", ",", "NN", "NN", "VBD", "CD", "NN", "TO", "$", "CD", "CD", "-NONE-", ".", "NN", "IN", "NN", "IN", "NN", "VBN", "-NONE-", "VBD", "TO", "IN", "$", "CD", "-NONE-", "DT", "NN", "IN", "$", "CD", "-NONE-", "DT", "NN", "JJ", "NN", "CC", "$", "CD", "-NONE-", "DT", "NN", "IN", "DT", "JJ", "NN", ",", "NNS", "VBD", "-NONE-", "-NONE-", ".", "RB", ",", "NNP", "VBD", "RBR", "IN", "JJ", "JJ", "NNS", ",", "-NONE-", "VBG", "JJR", "IN", "NN", "IN", "NN", "VBN", "-NONE-", "IN", "DT", "NNP", "NNP", "NNP", ",", "WDT", "-NONE-", "VBD", "DT", "CD", "NN", "NN", "IN", "JJ", "NN", ",", "CC", "NNP", "NNP", "NNPS", "NNP", ",", "WP$", "NN", "-NONE-", "VBD", "CD", "NN", ".", "IN", "NNP", "NNP", "NNP", "NNP", "JJ", "NN", "NN", ",", "NNP", "NNS", "VBD", "RB", "$", "CD", "-NONE-", ",", "IN", "$", "CD", "-NONE-", ",", "IN", "DT", "VBN", "NNS", "VBD", "NNS", "IN", "DT", "NNS", "WP", "-NONE-", "VBD", "RB", "VBN", "RB", "JJ", "DT", "NN", "IN", "NN", "NNS", ".", "DT", "NN", "IN", "DT", "NN", "POS", "NN", "MD", "RB", "VB", "DT", "NN", "IN", "NNP", "POS", "NN", "NN", "VBD", "RBR", "IN", "DT", "JJ", "NNS", "POS", ".", "NNP", "NNP", ",", "DT", "NN", "IN", "NNP", "NNP", "NNP", "NNPS", ",", "VBD", "-NONE-", "NNP", "MD", "VB", "VBN", "NNS", "VBN", "-NONE-", "IN", "NNS", "WP", "-NONE-", "VBD", "VBN", "-NONE-", "IN", "NN", "NNS", "RBR", "DT", "NN", ".", "PRP", "VBD", "-NONE-", "NNP", "RB", "VBD", "-NONE-", "TO", "VB", "DT", "JJR", "NN", "IN", "NN", "NNS", ",", "JJ", "IN", "DT", "RBR", "JJ", "NN", "CC", "JJ", "VBN", "NN", ",", "IN", "JJ", "JJ", "NNS", ".", "DT", "NN", "NN", ",", "IN", "DT", "CD", "NN", "NN", "IN", "NN", "NN", ",", "VBZ", "RB", "DT", "NN", "POS", "JJS", ".", "JJR", "JJ", "NN", "NNS", "VBD", "-NONE-", "VB", "NN", "NN", "IN", "DT", "NNP", "NNP", "NNP", "NN", "TO", "$", "CD", "CD", "-NONE-", "IN", "$", "CD", "CD", "-NONE-", ".", "DT", "NNP", "NNP", "CC", "NNP", "NN", "VBZ", "-NONE-", "TO", "VB", "IN", "DT", "NN", ",", "IN", "NNS", "VBD", "TO", "$", "CD", "CD", "-NONE-", "IN", "$", "CD", "CD", "-NONE-", ".", "NNP", "VBD", "IN", "NNP", "IN", "PRP", "VBD", "VBG", "NNS", "-NONE-", "TO", "VB", "NNP", "POS", "NN", "CC", "NN", "NNS", ".", "NNS", "IN", "DT", "NN", "VBP", "-NONE-", "TO", "VB", "VBN", "-NONE-", "-NONE-", "TO", "VB", "NN", "CC", "VB", "RP", "NNS", ".", "DT", "NN", "VBD", "IN", "PRP", "VBZ", "VBN", "NN", "IN", "$", "CD", "CD", "-NONE-", "IN", "DT", "NN", "IN", "CD", "CC", "VBD", "RP", "IN", "CD", "CD", "NNS", "IN", "JJ", "NN", "IN", "DT", "JJ", "NN", "IN", "CD", ".", "NNP", "VBZ", "IN", "$", "CD", "CD", "-NONE-", "IN", "JJ", "NN", "CC", "CD", "CD", "NNS", "JJ", ".", "DT", "VBN", "NN", "IN", "DT", "NNS", "VBD", "VBN", "-NONE-", "IN", "NN", "IN", "NN", "NNP", "NNP", "VBD", "VBN", "PRP$", "NN", "IN", "NNP", "TO", "CD", "NN", "CC", "VBN", "DT", "NN", "CC", "JJ", "NN", "NN", ".", "NNP", "NNP", "VBZ", "VBN", "-NONE-", "PRP", "VBZ", "-NONE-", "NNP", "MD", "VB", "JJ", "RBR", "IN", "-NONE-", "VBN", "RP", "-NONE-", "IN", "NN", "CC", "NN", "NNS", ".", "NN", "IN", "DT", "CD", "NNS", "VBD", "CD", "NN", "TO", "$", "CD", "CD", "-NONE-", ",", "CC", "$", "CD", "-NONE-", "DT", "NN", ",", "IN", "$", "CD", "CD", "-NONE-", ",", "CC", "$", "CD", "-NONE-", "DT", "NN", ".", "NNS", "VBD", "CD", "NN", "TO", "$", "CD", "CD", "-NONE-", "IN", "$", "CD", "CD", "-NONE-", ".", "NNP", "NNP", "NNP", ",", "CD", ",", "RB", "JJ", "NN", "NN", "CC", "NN", "JJ", "NN", ",", "VBD", "VBN", "-NONE-", "NN", "CC", "NN", "VBG", "NN", ",", "NNS", "WDT", "-NONE-", "VBD", "VBN", "JJ", ".", "NNP", "NNP", "NNP", ",", "NN", "NN", "CC", "NN", "JJ", "NN", "IN", "DT", "NN", "NNS", "NN", ",", "CC", "NNP", "NNP", "NNP", ",", "DT", "NN", "IN", "NNP", "NNP", "POS", "NNP", "NNP", "IN", "NNP", ",", "VBD", "VBN", "-NONE-", "NNS", ",", "-NONE-", "VBG", "NN", "NN", "TO", "CD", ".", "NNP", "NNP", "NNP", ",", "NN", "IN", "NN", "NN", "NN", ",", "VBD", "VBN", "-NONE-", "TO", "DT", "JJ", "NN", "IN", "NN", "NN", "NN", ",", "NN", "NNS", ",", "IN", "DT", "NN", ",", "JJ", "CC", "NN", "NNS", "NN", ",", "-NONE-", "VBG", "NNP", "NNP", "NNP", ",", "WP", "-NONE-", "VBD", "VBN", "-NONE-", "NN", "CC", "NN", "VBG", "NN", "IN", "NNP", ".", "CD", "VBG", "NN", "NNS", "VBD", "-NONE-", "NNP", "NNP", "VBZ", "RB", "VB", "DT", "JJ", "NN", "-NONE-", "TO", "VB", "DT", "JJ", "NN", ".", "NNP", "NNP", "NNP", "IN", "DT", "NNP", "IN", "NNP", "CC", "NNP", "NNP", "IN", "NNP", "NNP", "NNP", "VBD", "-NONE-", "DT", "NN", "IN", "NNP", "NNP", "-NONE-", "-NONE-", "TO", "VB", "NN", "IN", "DT", "JJ", "NN", "-NONE-", "MD", "VB", "DT", "NN", "IN", "DT", "NNP", "CC", "DT", "NN", "IN", "PRP$", "NNS", ",", "RB", "RB", "IN", "DT", "NNS", "IN", "JJ", "NNS", ".", "DT", "JJ", "NN", "VBZ", "DT", "NN", "WDT", "-NONE-", "MD", "VB", "DT", "NN", "TO", "VB", "NN", "IN", "DT", "JJ", "JJ", "NN", "NN", "IN", "-NONE-", "VBG", "-NONE-", "TO", "VB", "DT", "JJ", "NN", ".", "NNP", "NNP", "VBZ", "VBN", "-NONE-", "PRP", "MD", "VB", "-NONE-", "TO", "VB", "JJ", "-NONE-", "TO", "VB", "DT", "NN", ".", "DT", "NNP", "NNP", "NN", "VBD", "JJ", "NN", "IN", "DT", "NN", "VBZ", "VBG", "-NONE-", "VBG", "IN", "DT", "NNP", "RB", "VBZ", "PRP", "DT", "NN", "IN", "DT", "JJ", "NN", "-NONE-", "TO", "VB", "DT", "NN", "NN", ".", "CC", "DT", "CD", "JJ", "NNS", ",", "VBG", "TO", "DT", "NN", "IN", "NNP", "NNP", "NNP", "-LRB-", "NNP", ",", "NNP", "-RRB-", ",", "VBD", "IN", "DT", "JJ", "NN", "IN", "DT", "NN", "``", "VBZ", "DT", "JJ", "NN", "-NONE-", "TO", "VB", "DT", "JJ", "NN", ".", "''", "DT", "CD", "NNS", "VBP", "JJ", "NNS", "IN", "DT", "JJ", "NN", ":", "NNP", "NNP", "VBZ", "DT", "JJ", "CC", "NNP", "NNP", "VBZ", "DT", "NN", ".", "DT", "CD", "NNS", "VBD", "-NONE-", "DT", "NNP", "VBZ", "DT", "NN", "TO", "VB", "JJ", "NNS", ",", "RB", "JJ", "NNS", ".", "RB", ",", "PRP", "VBD", "-NONE-", "DT", "JJ", "NNS", "NN", "VBN", "-NONE-", "CD", "NNS", "IN", "VBD", "JJ", "JJ", "NNS", ",", "CC", "EX", "VBD", "DT", "NN", "IN", "DT", "JJ", "NN", ".", "PRP", "RB", "VBD", "IN", "JJR", "IN", "DT", "NN", "NNS", "-NONE-", "VBP", "VBN", "IN", "JJ", "NN", "NN", "IN", "DT", "NNP", "NNP", ",", "CC", "``", "DT", "VBP", "VBN", "DT", "NN", "IN", "JJ", "JJ", "NN", "VBZ", "IN", "DT", "NN", "''", "IN", "DT", "NN", ".", "NNP", "NNP", "VBD", "IN", "DT", "JJ", "NN", "IN", "PRP", "VBZ", "NN", "-NONE-", "-NONE-", "TO", "VB", "DT", "NN", "JJ", "NN", "NN", "-NONE-", ",", "CC", "IN", "PRP", "-NONE-", "MD", "VB", "DT", "``", "JJ", "NN", "IN", "NN", "''", "IN", "NNP", "NNP", "TO", "VB", "DT", "NN", "IN", "JJ", "NN", ".", "NNP", "NNPS", "NNP", "VBD", "-NONE-", "PRP", "VBD", "DT", "JJ", "NN", "-NONE-", "TO", "VB", "CD", "NN", "NNS", "TO", "NNP", "NNP", "NNP", "IN", "NNP", ".", "NNS", "VBD", "RB", "VBN", "-NONE-", ".", "NNP", "VBD", "-NONE-", "PRP", "VBZ", "-NONE-", "TO", "VB", "NN", "IN", "DT", "JJ", "NN", "IN", "JJ", "NN", "."] diff --git a/testdata/treebank_tokens.json b/testdata/treebank_tokens.json new file mode 100644 index 0000000..09bd50a --- /dev/null +++ b/testdata/treebank_tokens.json @@ -0,0 +1 @@ +[{"text": "Pierre"}, {"text": "Vinken"}, {"text": ","}, {"text": "61"}, {"text": "years"}, {"text": "old"}, {"text": ","}, {"text": "will"}, {"text": "join"}, {"text": "the"}, {"text": "board"}, {"text": "as"}, {"text": "a"}, {"text": "nonexecutive"}, {"text": "director"}, {"text": "Nov."}, {"text": "29"}, {"text": "."}, {"text": "Mr."}, {"text": "Vinken"}, {"text": "is"}, {"text": "chairman"}, {"text": "of"}, {"text": "Elsevier"}, {"text": "N.V."}, {"text": ","}, {"text": "the"}, {"text": "Dutch"}, {"text": "publishing"}, {"text": "group"}, {"text": "."}, {"text": "Rudolph"}, {"text": "Agnew"}, {"text": ","}, {"text": "55"}, {"text": "years"}, {"text": "old"}, {"text": "and"}, {"text": "former"}, {"text": "chairman"}, {"text": "of"}, {"text": "Consolidated"}, {"text": "Gold"}, {"text": "Fields"}, {"text": "PLC"}, {"text": ","}, {"text": "was"}, {"text": "named"}, {"text": "*-1"}, {"text": "a"}, {"text": "nonexecutive"}, {"text": "director"}, {"text": "of"}, {"text": "this"}, {"text": "British"}, {"text": "industrial"}, {"text": "conglomerate"}, {"text": "."}, {"text": "A"}, {"text": "form"}, {"text": "of"}, {"text": "asbestos"}, {"text": "once"}, {"text": "used"}, {"text": "*"}, {"text": "*"}, {"text": "to"}, {"text": "make"}, {"text": "Kent"}, {"text": "cigarette"}, {"text": "filters"}, {"text": "has"}, {"text": "caused"}, {"text": "a"}, {"text": "high"}, {"text": "percentage"}, {"text": "of"}, {"text": "cancer"}, {"text": "deaths"}, {"text": "among"}, {"text": "a"}, {"text": "group"}, {"text": "of"}, {"text": "workers"}, {"text": "exposed"}, {"text": "*"}, {"text": "to"}, {"text": "it"}, {"text": "more"}, {"text": "than"}, {"text": "30"}, {"text": "years"}, {"text": "ago"}, {"text": ","}, {"text": "researchers"}, {"text": "reported"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "The"}, {"text": "asbestos"}, {"text": "fiber"}, {"text": ","}, {"text": "crocidolite"}, {"text": ","}, {"text": "is"}, {"text": "unusually"}, {"text": "resilient"}, {"text": "once"}, {"text": "it"}, {"text": "enters"}, {"text": "the"}, {"text": "lungs"}, {"text": ","}, {"text": "with"}, {"text": "even"}, {"text": "brief"}, {"text": "exposures"}, {"text": "to"}, {"text": "it"}, {"text": "causing"}, {"text": "symptoms"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "show"}, {"text": "up"}, {"text": "decades"}, {"text": "later"}, {"text": ","}, {"text": "researchers"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "."}, {"text": "Lorillard"}, {"text": "Inc."}, {"text": ","}, {"text": "the"}, {"text": "unit"}, {"text": "of"}, {"text": "New"}, {"text": "York-based"}, {"text": "Loews"}, {"text": "Corp."}, {"text": "that"}, {"text": "*T*-2"}, {"text": "makes"}, {"text": "Kent"}, {"text": "cigarettes"}, {"text": ","}, {"text": "stopped"}, {"text": "using"}, {"text": "crocidolite"}, {"text": "in"}, {"text": "its"}, {"text": "Micronite"}, {"text": "cigarette"}, {"text": "filters"}, {"text": "in"}, {"text": "1956"}, {"text": "."}, {"text": "Although"}, {"text": "preliminary"}, {"text": "findings"}, {"text": "were"}, {"text": "reported"}, {"text": "*-2"}, {"text": "more"}, {"text": "than"}, {"text": "a"}, {"text": "year"}, {"text": "ago"}, {"text": ","}, {"text": "the"}, {"text": "latest"}, {"text": "results"}, {"text": "appear"}, {"text": "in"}, {"text": "today"}, {"text": "'s"}, {"text": "New"}, {"text": "England"}, {"text": "Journal"}, {"text": "of"}, {"text": "Medicine"}, {"text": ","}, {"text": "a"}, {"text": "forum"}, {"text": "likely"}, {"text": "*"}, {"text": "to"}, {"text": "bring"}, {"text": "new"}, {"text": "attention"}, {"text": "to"}, {"text": "the"}, {"text": "problem"}, {"text": "."}, {"text": "A"}, {"text": "Lorillard"}, {"text": "spokewoman"}, {"text": "said"}, {"text": ","}, {"text": "``"}, {"text": "This"}, {"text": "is"}, {"text": "an"}, {"text": "old"}, {"text": "story"}, {"text": "."}, {"text": "We"}, {"text": "'re"}, {"text": "talking"}, {"text": "about"}, {"text": "years"}, {"text": "ago"}, {"text": "before"}, {"text": "anyone"}, {"text": "heard"}, {"text": "of"}, {"text": "asbestos"}, {"text": "having"}, {"text": "any"}, {"text": "questionable"}, {"text": "properties"}, {"text": "."}, {"text": "There"}, {"text": "is"}, {"text": "no"}, {"text": "asbestos"}, {"text": "in"}, {"text": "our"}, {"text": "products"}, {"text": "now"}, {"text": "."}, {"text": "''"}, {"text": "Neither"}, {"text": "Lorillard"}, {"text": "nor"}, {"text": "the"}, {"text": "researchers"}, {"text": "who"}, {"text": "*T*-3"}, {"text": "studied"}, {"text": "the"}, {"text": "workers"}, {"text": "were"}, {"text": "aware"}, {"text": "of"}, {"text": "any"}, {"text": "research"}, {"text": "on"}, {"text": "smokers"}, {"text": "of"}, {"text": "the"}, {"text": "Kent"}, {"text": "cigarettes"}, {"text": "."}, {"text": "``"}, {"text": "We"}, {"text": "have"}, {"text": "no"}, {"text": "useful"}, {"text": "information"}, {"text": "on"}, {"text": "whether"}, {"text": "users"}, {"text": "are"}, {"text": "at"}, {"text": "risk"}, {"text": ","}, {"text": "''"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "James"}, {"text": "A."}, {"text": "Talcott"}, {"text": "of"}, {"text": "Boston"}, {"text": "'s"}, {"text": "Dana-Farber"}, {"text": "Cancer"}, {"text": "Institute"}, {"text": "."}, {"text": "Dr."}, {"text": "Talcott"}, {"text": "led"}, {"text": "a"}, {"text": "team"}, {"text": "of"}, {"text": "researchers"}, {"text": "from"}, {"text": "the"}, {"text": "National"}, {"text": "Cancer"}, {"text": "Institute"}, {"text": "and"}, {"text": "the"}, {"text": "medical"}, {"text": "schools"}, {"text": "of"}, {"text": "Harvard"}, {"text": "University"}, {"text": "and"}, {"text": "Boston"}, {"text": "University"}, {"text": "."}, {"text": "The"}, {"text": "Lorillard"}, {"text": "spokeswoman"}, {"text": "said"}, {"text": "0"}, {"text": "asbestos"}, {"text": "was"}, {"text": "used"}, {"text": "*-1"}, {"text": "in"}, {"text": "``"}, {"text": "very"}, {"text": "modest"}, {"text": "amounts"}, {"text": "''"}, {"text": "in"}, {"text": "*"}, {"text": "making"}, {"text": "paper"}, {"text": "for"}, {"text": "the"}, {"text": "filters"}, {"text": "in"}, {"text": "the"}, {"text": "early"}, {"text": "1950s"}, {"text": "and"}, {"text": "replaced"}, {"text": "*-1"}, {"text": "with"}, {"text": "a"}, {"text": "different"}, {"text": "type"}, {"text": "of"}, {"text": "filter"}, {"text": "in"}, {"text": "1956"}, {"text": "."}, {"text": "From"}, {"text": "1953"}, {"text": "to"}, {"text": "1955"}, {"text": ","}, {"text": "9.8"}, {"text": "billion"}, {"text": "Kent"}, {"text": "cigarettes"}, {"text": "with"}, {"text": "the"}, {"text": "filters"}, {"text": "were"}, {"text": "sold"}, {"text": "*-3"}, {"text": ","}, {"text": "the"}, {"text": "company"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Among"}, {"text": "33"}, {"text": "men"}, {"text": "who"}, {"text": "*T*-4"}, {"text": "worked"}, {"text": "closely"}, {"text": "with"}, {"text": "the"}, {"text": "substance"}, {"text": ","}, {"text": "28"}, {"text": "*ICH*-1"}, {"text": "have"}, {"text": "died"}, {"text": "--"}, {"text": "more"}, {"text": "than"}, {"text": "three"}, {"text": "times"}, {"text": "the"}, {"text": "expected"}, {"text": "number"}, {"text": "."}, {"text": "Four"}, {"text": "of"}, {"text": "the"}, {"text": "five"}, {"text": "surviving"}, {"text": "workers"}, {"text": "have"}, {"text": "asbestos-related"}, {"text": "diseases"}, {"text": ","}, {"text": "including"}, {"text": "three"}, {"text": "with"}, {"text": "recently"}, {"text": "diagnosed"}, {"text": "cancer"}, {"text": "."}, {"text": "The"}, {"text": "total"}, {"text": "of"}, {"text": "18"}, {"text": "deaths"}, {"text": "from"}, {"text": "malignant"}, {"text": "mesothelioma"}, {"text": ","}, {"text": "lung"}, {"text": "cancer"}, {"text": "and"}, {"text": "asbestosis"}, {"text": "was"}, {"text": "far"}, {"text": "higher"}, {"text": "than"}, {"text": "*"}, {"text": "expected"}, {"text": "*?*"}, {"text": ","}, {"text": "the"}, {"text": "researchers"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "``"}, {"text": "The"}, {"text": "morbidity"}, {"text": "rate"}, {"text": "is"}, {"text": "a"}, {"text": "striking"}, {"text": "finding"}, {"text": "among"}, {"text": "those"}, {"text": "of"}, {"text": "us"}, {"text": "who"}, {"text": "*T*-5"}, {"text": "study"}, {"text": "asbestos-related"}, {"text": "diseases"}, {"text": ","}, {"text": "''"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "Dr."}, {"text": "Talcott"}, {"text": "."}, {"text": "The"}, {"text": "percentage"}, {"text": "of"}, {"text": "lung"}, {"text": "cancer"}, {"text": "deaths"}, {"text": "among"}, {"text": "the"}, {"text": "workers"}, {"text": "at"}, {"text": "the"}, {"text": "West"}, {"text": "Groton"}, {"text": ","}, {"text": "Mass."}, {"text": ","}, {"text": "paper"}, {"text": "factory"}, {"text": "appears"}, {"text": "*-1"}, {"text": "to"}, {"text": "be"}, {"text": "the"}, {"text": "highest"}, {"text": "for"}, {"text": "any"}, {"text": "asbestos"}, {"text": "workers"}, {"text": "studied"}, {"text": "*"}, {"text": "in"}, {"text": "Western"}, {"text": "industrialized"}, {"text": "countries"}, {"text": ","}, {"text": "he"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "."}, {"text": "The"}, {"text": "plant"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "is"}, {"text": "owned"}, {"text": "*-4"}, {"text": "by"}, {"text": "Hollingsworth"}, {"text": "&"}, {"text": "Vose"}, {"text": "Co."}, {"text": ","}, {"text": "was"}, {"text": "under"}, {"text": "contract"}, {"text": "*ICH*-2"}, {"text": "with"}, {"text": "Lorillard"}, {"text": "*"}, {"text": "to"}, {"text": "make"}, {"text": "the"}, {"text": "cigarette"}, {"text": "filters"}, {"text": "."}, {"text": "The"}, {"text": "finding"}, {"text": "probably"}, {"text": "will"}, {"text": "support"}, {"text": "those"}, {"text": "who"}, {"text": "*T*-6"}, {"text": "argue"}, {"text": "that"}, {"text": "the"}, {"text": "U.S."}, {"text": "should"}, {"text": "regulate"}, {"text": "the"}, {"text": "class"}, {"text": "of"}, {"text": "asbestos"}, {"text": "including"}, {"text": "crocidolite"}, {"text": "more"}, {"text": "stringently"}, {"text": "than"}, {"text": "the"}, {"text": "common"}, {"text": "kind"}, {"text": "of"}, {"text": "asbestos"}, {"text": ","}, {"text": "chrysotile"}, {"text": ","}, {"text": "found"}, {"text": "*"}, {"text": "in"}, {"text": "most"}, {"text": "schools"}, {"text": "and"}, {"text": "other"}, {"text": "buildings"}, {"text": ","}, {"text": "Dr."}, {"text": "Talcott"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "The"}, {"text": "U.S."}, {"text": "is"}, {"text": "one"}, {"text": "of"}, {"text": "the"}, {"text": "few"}, {"text": "industrialized"}, {"text": "nations"}, {"text": "that"}, {"text": "*T*-7"}, {"text": "does"}, {"text": "n't"}, {"text": "have"}, {"text": "a"}, {"text": "higher"}, {"text": "standard"}, {"text": "of"}, {"text": "regulation"}, {"text": "for"}, {"text": "the"}, {"text": "smooth"}, {"text": ","}, {"text": "needle-like"}, {"text": "fibers"}, {"text": "such"}, {"text": "as"}, {"text": "crocidolite"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "are"}, {"text": "classified"}, {"text": "*-5"}, {"text": "as"}, {"text": "amphobiles"}, {"text": ","}, {"text": "according"}, {"text": "to"}, {"text": "Brooke"}, {"text": "T."}, {"text": "Mossman"}, {"text": ","}, {"text": "a"}, {"text": "professor"}, {"text": "of"}, {"text": "pathlogy"}, {"text": "at"}, {"text": "the"}, {"text": "University"}, {"text": "of"}, {"text": "Vermont"}, {"text": "College"}, {"text": "of"}, {"text": "Medicine"}, {"text": "."}, {"text": "More"}, {"text": "common"}, {"text": "chrysotile"}, {"text": "fibers"}, {"text": "are"}, {"text": "curly"}, {"text": "and"}, {"text": "are"}, {"text": "more"}, {"text": "easily"}, {"text": "rejected"}, {"text": "*-1"}, {"text": "by"}, {"text": "the"}, {"text": "body"}, {"text": ","}, {"text": "Dr."}, {"text": "Mossman"}, {"text": "explained"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "."}, {"text": "In"}, {"text": "July"}, {"text": ","}, {"text": "the"}, {"text": "Environmental"}, {"text": "Protection"}, {"text": "Agency"}, {"text": "imposed"}, {"text": "a"}, {"text": "gradual"}, {"text": "ban"}, {"text": "on"}, {"text": "virtually"}, {"text": "all"}, {"text": "uses"}, {"text": "of"}, {"text": "asbestos"}, {"text": "."}, {"text": "By"}, {"text": "1997"}, {"text": ","}, {"text": "almost"}, {"text": "all"}, {"text": "remaining"}, {"text": "uses"}, {"text": "of"}, {"text": "cancer-causing"}, {"text": "asbestos"}, {"text": "will"}, {"text": "be"}, {"text": "outlawed"}, {"text": "*-6"}, {"text": "."}, {"text": "About"}, {"text": "160"}, {"text": "workers"}, {"text": "at"}, {"text": "a"}, {"text": "factory"}, {"text": "that"}, {"text": "*T*-8"}, {"text": "made"}, {"text": "paper"}, {"text": "for"}, {"text": "the"}, {"text": "Kent"}, {"text": "filters"}, {"text": "were"}, {"text": "exposed"}, {"text": "*-7"}, {"text": "to"}, {"text": "asbestos"}, {"text": "in"}, {"text": "the"}, {"text": "1950s"}, {"text": "."}, {"text": "Areas"}, {"text": "of"}, {"text": "the"}, {"text": "factory"}, {"text": "*ICH*-2"}, {"text": "were"}, {"text": "particularly"}, {"text": "dusty"}, {"text": "where"}, {"text": "the"}, {"text": "crocidolite"}, {"text": "was"}, {"text": "used"}, {"text": "*-8"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Workers"}, {"text": "dumped"}, {"text": "large"}, {"text": "burlap"}, {"text": "sacks"}, {"text": "of"}, {"text": "the"}, {"text": "imported"}, {"text": "material"}, {"text": "into"}, {"text": "a"}, {"text": "huge"}, {"text": "bin"}, {"text": ","}, {"text": "poured"}, {"text": "in"}, {"text": "cotton"}, {"text": "and"}, {"text": "acetate"}, {"text": "fibers"}, {"text": "and"}, {"text": "mechanically"}, {"text": "mixed"}, {"text": "the"}, {"text": "dry"}, {"text": "fibers"}, {"text": "in"}, {"text": "a"}, {"text": "process"}, {"text": "used"}, {"text": "*"}, {"text": "*"}, {"text": "to"}, {"text": "make"}, {"text": "filters"}, {"text": "."}, {"text": "Workers"}, {"text": "described"}, {"text": "``"}, {"text": "clouds"}, {"text": "of"}, {"text": "blue"}, {"text": "dust"}, {"text": "''"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "hung"}, {"text": "over"}, {"text": "parts"}, {"text": "of"}, {"text": "the"}, {"text": "factory"}, {"text": ","}, {"text": "even"}, {"text": "though"}, {"text": "exhaust"}, {"text": "fans"}, {"text": "ventilated"}, {"text": "the"}, {"text": "area"}, {"text": "."}, {"text": "``"}, {"text": "There"}, {"text": "'s"}, {"text": "no"}, {"text": "question"}, {"text": "that"}, {"text": "some"}, {"text": "of"}, {"text": "those"}, {"text": "workers"}, {"text": "and"}, {"text": "managers"}, {"text": "contracted"}, {"text": "asbestos-related"}, {"text": "diseases"}, {"text": ","}, {"text": "''"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "Darrell"}, {"text": "Phillips"}, {"text": ","}, {"text": "vice"}, {"text": "president"}, {"text": "of"}, {"text": "human"}, {"text": "resources"}, {"text": "for"}, {"text": "Hollingsworth"}, {"text": "&"}, {"text": "Vose"}, {"text": "."}, {"text": "``"}, {"text": "But"}, {"text": "you"}, {"text": "have"}, {"text": "*-1"}, {"text": "to"}, {"text": "recognize"}, {"text": "that"}, {"text": "these"}, {"text": "events"}, {"text": "took"}, {"text": "place"}, {"text": "35"}, {"text": "years"}, {"text": "ago"}, {"text": "."}, {"text": "It"}, {"text": "has"}, {"text": "no"}, {"text": "bearing"}, {"text": "on"}, {"text": "our"}, {"text": "work"}, {"text": "force"}, {"text": "today"}, {"text": "."}, {"text": "Yields"}, {"text": "on"}, {"text": "money-market"}, {"text": "mutual"}, {"text": "funds"}, {"text": "continued"}, {"text": "*-1"}, {"text": "to"}, {"text": "slide"}, {"text": ","}, {"text": "amid"}, {"text": "signs"}, {"text": "that"}, {"text": "portfolio"}, {"text": "managers"}, {"text": "expect"}, {"text": "further"}, {"text": "declines"}, {"text": "in"}, {"text": "interest"}, {"text": "rates"}, {"text": "."}, {"text": "The"}, {"text": "average"}, {"text": "seven-day"}, {"text": "compound"}, {"text": "yield"}, {"text": "of"}, {"text": "the"}, {"text": "400"}, {"text": "taxable"}, {"text": "funds"}, {"text": "tracked"}, {"text": "*"}, {"text": "by"}, {"text": "IBC"}, {"text": "'s"}, {"text": "Money"}, {"text": "Fund"}, {"text": "Report"}, {"text": "eased"}, {"text": "a"}, {"text": "fraction"}, {"text": "of"}, {"text": "a"}, {"text": "percentage"}, {"text": "point"}, {"text": "to"}, {"text": "8.45"}, {"text": "%"}, {"text": "from"}, {"text": "8.47"}, {"text": "%"}, {"text": "for"}, {"text": "the"}, {"text": "week"}, {"text": "ended"}, {"text": "Tuesday"}, {"text": "."}, {"text": "Compound"}, {"text": "yields"}, {"text": "assume"}, {"text": "reinvestment"}, {"text": "of"}, {"text": "dividends"}, {"text": "and"}, {"text": "that"}, {"text": "the"}, {"text": "current"}, {"text": "yield"}, {"text": "continues"}, {"text": "for"}, {"text": "a"}, {"text": "year"}, {"text": "."}, {"text": "Average"}, {"text": "maturity"}, {"text": "of"}, {"text": "the"}, {"text": "funds"}, {"text": "'"}, {"text": "investments"}, {"text": "lengthened"}, {"text": "by"}, {"text": "a"}, {"text": "day"}, {"text": "to"}, {"text": "41"}, {"text": "days"}, {"text": ","}, {"text": "the"}, {"text": "longest"}, {"text": "since"}, {"text": "early"}, {"text": "August"}, {"text": ","}, {"text": "according"}, {"text": "to"}, {"text": "Donoghue"}, {"text": "'s"}, {"text": "."}, {"text": "Longer"}, {"text": "maturities"}, {"text": "are"}, {"text": "thought"}, {"text": "*-1"}, {"text": "to"}, {"text": "indicate"}, {"text": "declining"}, {"text": "interest"}, {"text": "rates"}, {"text": "because"}, {"text": "they"}, {"text": "permit"}, {"text": "portfolio"}, {"text": "managers"}, {"text": "to"}, {"text": "retain"}, {"text": "relatively"}, {"text": "higher"}, {"text": "rates"}, {"text": "for"}, {"text": "a"}, {"text": "longer"}, {"text": "period"}, {"text": "."}, {"text": "Shorter"}, {"text": "maturities"}, {"text": "are"}, {"text": "considered"}, {"text": "*-9"}, {"text": "a"}, {"text": "sign"}, {"text": "of"}, {"text": "rising"}, {"text": "rates"}, {"text": "because"}, {"text": "portfolio"}, {"text": "managers"}, {"text": "can"}, {"text": "capture"}, {"text": "higher"}, {"text": "rates"}, {"text": "sooner"}, {"text": "."}, {"text": "The"}, {"text": "average"}, {"text": "maturity"}, {"text": "for"}, {"text": "funds"}, {"text": "open"}, {"text": "only"}, {"text": "to"}, {"text": "institutions"}, {"text": ","}, {"text": "considered"}, {"text": "by"}, {"text": "some"}, {"text": "*"}, {"text": "to"}, {"text": "be"}, {"text": "a"}, {"text": "stronger"}, {"text": "indicator"}, {"text": "because"}, {"text": "those"}, {"text": "managers"}, {"text": "watch"}, {"text": "the"}, {"text": "market"}, {"text": "closely"}, {"text": ","}, {"text": "reached"}, {"text": "a"}, {"text": "high"}, {"text": "point"}, {"text": "for"}, {"text": "the"}, {"text": "year"}, {"text": "--"}, {"text": "33"}, {"text": "days"}, {"text": "."}, {"text": "Nevertheless"}, {"text": ","}, {"text": "said"}, {"text": "*T*-1"}, {"text": "Brenda"}, {"text": "Malizia"}, {"text": "Negus"}, {"text": ","}, {"text": "editor"}, {"text": "of"}, {"text": "Money"}, {"text": "Fund"}, {"text": "Report"}, {"text": ","}, {"text": "yields"}, {"text": "``"}, {"text": "may"}, {"text": "blip"}, {"text": "up"}, {"text": "again"}, {"text": "before"}, {"text": "they"}, {"text": "blip"}, {"text": "down"}, {"text": "''"}, {"text": "because"}, {"text": "of"}, {"text": "recent"}, {"text": "rises"}, {"text": "in"}, {"text": "short-term"}, {"text": "interest"}, {"text": "rates"}, {"text": "."}, {"text": "The"}, {"text": "yield"}, {"text": "on"}, {"text": "six-month"}, {"text": "Treasury"}, {"text": "bills"}, {"text": "sold"}, {"text": "*"}, {"text": "at"}, {"text": "Monday"}, {"text": "'s"}, {"text": "auction"}, {"text": ","}, {"text": "for"}, {"text": "example"}, {"text": ","}, {"text": "rose"}, {"text": "to"}, {"text": "8.04"}, {"text": "%"}, {"text": "from"}, {"text": "7.90"}, {"text": "%"}, {"text": "."}, {"text": "Despite"}, {"text": "recent"}, {"text": "declines"}, {"text": "in"}, {"text": "yields"}, {"text": ","}, {"text": "investors"}, {"text": "continue"}, {"text": "*-1"}, {"text": "to"}, {"text": "pour"}, {"text": "cash"}, {"text": "into"}, {"text": "money"}, {"text": "funds"}, {"text": "."}, {"text": "Assets"}, {"text": "of"}, {"text": "the"}, {"text": "400"}, {"text": "taxable"}, {"text": "funds"}, {"text": "grew"}, {"text": "by"}, {"text": "$"}, {"text": "1.5"}, {"text": "billion"}, {"text": "*U*"}, {"text": "during"}, {"text": "the"}, {"text": "latest"}, {"text": "week"}, {"text": ","}, {"text": "to"}, {"text": "$"}, {"text": "352.7"}, {"text": "billion"}, {"text": "*U*"}, {"text": "."}, {"text": "Typically"}, {"text": ","}, {"text": "money-fund"}, {"text": "yields"}, {"text": "beat"}, {"text": "comparable"}, {"text": "short-term"}, {"text": "investments"}, {"text": "because"}, {"text": "portfolio"}, {"text": "managers"}, {"text": "can"}, {"text": "vary"}, {"text": "maturities"}, {"text": "and"}, {"text": "go"}, {"text": "after"}, {"text": "the"}, {"text": "highest"}, {"text": "rates"}, {"text": "."}, {"text": "The"}, {"text": "top"}, {"text": "money"}, {"text": "funds"}, {"text": "are"}, {"text": "currently"}, {"text": "yielding"}, {"text": "well"}, {"text": "over"}, {"text": "9"}, {"text": "%"}, {"text": "."}, {"text": "Dreyfus"}, {"text": "World-Wide"}, {"text": "Dollar"}, {"text": ","}, {"text": "the"}, {"text": "top-yielding"}, {"text": "fund"}, {"text": ","}, {"text": "had"}, {"text": "a"}, {"text": "seven-day"}, {"text": "compound"}, {"text": "yield"}, {"text": "of"}, {"text": "9.37"}, {"text": "%"}, {"text": "during"}, {"text": "the"}, {"text": "latest"}, {"text": "week"}, {"text": ","}, {"text": "down"}, {"text": "from"}, {"text": "9.45"}, {"text": "%"}, {"text": "a"}, {"text": "week"}, {"text": "earlier"}, {"text": "."}, {"text": "It"}, {"text": "invests"}, {"text": "heavily"}, {"text": "in"}, {"text": "dollar-denominated"}, {"text": "securities"}, {"text": "overseas"}, {"text": "and"}, {"text": "is"}, {"text": "currently"}, {"text": "waiving"}, {"text": "management"}, {"text": "fees"}, {"text": ","}, {"text": "which"}, {"text": "*T*-9"}, {"text": "boosts"}, {"text": "its"}, {"text": "yield"}, {"text": "."}, {"text": "The"}, {"text": "average"}, {"text": "seven-day"}, {"text": "simple"}, {"text": "yield"}, {"text": "of"}, {"text": "the"}, {"text": "400"}, {"text": "funds"}, {"text": "was"}, {"text": "8.12"}, {"text": "%"}, {"text": ","}, {"text": "down"}, {"text": "from"}, {"text": "8.14"}, {"text": "%"}, {"text": "."}, {"text": "The"}, {"text": "30-day"}, {"text": "simple"}, {"text": "yield"}, {"text": "fell"}, {"text": "to"}, {"text": "an"}, {"text": "average"}, {"text": "8.19"}, {"text": "%"}, {"text": "from"}, {"text": "8.22"}, {"text": "%"}, {"text": ";"}, {"text": "the"}, {"text": "30-day"}, {"text": "compound"}, {"text": "yield"}, {"text": "slid"}, {"text": "to"}, {"text": "an"}, {"text": "average"}, {"text": "8.53"}, {"text": "%"}, {"text": "from"}, {"text": "8.56"}, {"text": "%"}, {"text": "."}, {"text": "J.P."}, {"text": "Bolduc"}, {"text": ","}, {"text": "vice"}, {"text": "chairman"}, {"text": "of"}, {"text": "W.R."}, {"text": "Grace"}, {"text": "&"}, {"text": "Co."}, {"text": ","}, {"text": "which"}, {"text": "*T*-10"}, {"text": "holds"}, {"text": "a"}, {"text": "83.4"}, {"text": "%"}, {"text": "interest"}, {"text": "in"}, {"text": "this"}, {"text": "energy-services"}, {"text": "company"}, {"text": ","}, {"text": "was"}, {"text": "elected"}, {"text": "*-10"}, {"text": "a"}, {"text": "director"}, {"text": "."}, {"text": "He"}, {"text": "succeeds"}, {"text": "Terrence"}, {"text": "D."}, {"text": "Daniels"}, {"text": ","}, {"text": "formerly"}, {"text": "a"}, {"text": "W.R."}, {"text": "Grace"}, {"text": "vice"}, {"text": "chairman"}, {"text": ","}, {"text": "who"}, {"text": "*T*-11"}, {"text": "resigned"}, {"text": "."}, {"text": "W.R."}, {"text": "Grace"}, {"text": "holds"}, {"text": "three"}, {"text": "of"}, {"text": "Grace"}, {"text": "Energy"}, {"text": "'s"}, {"text": "seven"}, {"text": "board"}, {"text": "seats"}, {"text": "."}, {"text": "Pacific"}, {"text": "First"}, {"text": "Financial"}, {"text": "Corp."}, {"text": "said"}, {"text": "0"}, {"text": "shareholders"}, {"text": "approved"}, {"text": "its"}, {"text": "acquisition"}, {"text": "by"}, {"text": "Royal"}, {"text": "Trustco"}, {"text": "Ltd."}, {"text": "of"}, {"text": "Toronto"}, {"text": "for"}, {"text": "$"}, {"text": "27"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": ","}, {"text": "or"}, {"text": "$"}, {"text": "212"}, {"text": "million"}, {"text": "*U*"}, {"text": "."}, {"text": "The"}, {"text": "thrift"}, {"text": "holding"}, {"text": "company"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "expects"}, {"text": "*-1"}, {"text": "to"}, {"text": "obtain"}, {"text": "regulatory"}, {"text": "approval"}, {"text": "and"}, {"text": "complete"}, {"text": "the"}, {"text": "transaction"}, {"text": "by"}, {"text": "year-end"}, {"text": "."}, {"text": "McDermott"}, {"text": "International"}, {"text": "Inc."}, {"text": "said"}, {"text": "0"}, {"text": "its"}, {"text": "Babcock"}, {"text": "&"}, {"text": "Wilcox"}, {"text": "unit"}, {"text": "completed"}, {"text": "the"}, {"text": "sale"}, {"text": "of"}, {"text": "its"}, {"text": "Bailey"}, {"text": "Controls"}, {"text": "Operations"}, {"text": "to"}, {"text": "Finmeccanica"}, {"text": "S.p"}, {"text": "."}, {"text": "A."}, {"text": "for"}, {"text": "$"}, {"text": "295"}, {"text": "million"}, {"text": "*U*"}, {"text": "."}, {"text": "Finmeccanica"}, {"text": "is"}, {"text": "an"}, {"text": "Italian"}, {"text": "state-owned"}, {"text": "holding"}, {"text": "company"}, {"text": "with"}, {"text": "interests"}, {"text": "in"}, {"text": "the"}, {"text": "mechanical"}, {"text": "engineering"}, {"text": "industry"}, {"text": "."}, {"text": "Bailey"}, {"text": "Controls"}, {"text": ","}, {"text": "based"}, {"text": "*"}, {"text": "in"}, {"text": "Wickliffe"}, {"text": ","}, {"text": "Ohio"}, {"text": ","}, {"text": "makes"}, {"text": "computerized"}, {"text": "industrial"}, {"text": "controls"}, {"text": "systems"}, {"text": "."}, {"text": "It"}, {"text": "employs"}, {"text": "2,700"}, {"text": "people"}, {"text": "and"}, {"text": "has"}, {"text": "annual"}, {"text": "revenue"}, {"text": "of"}, {"text": "about"}, {"text": "$"}, {"text": "370"}, {"text": "million"}, {"text": "*U*"}, {"text": "."}, {"text": "The"}, {"text": "federal"}, {"text": "government"}, {"text": "suspended"}, {"text": "sales"}, {"text": "of"}, {"text": "U.S."}, {"text": "savings"}, {"text": "bonds"}, {"text": "because"}, {"text": "Congress"}, {"text": "has"}, {"text": "n't"}, {"text": "lifted"}, {"text": "the"}, {"text": "ceiling"}, {"text": "on"}, {"text": "government"}, {"text": "debt"}, {"text": "."}, {"text": "Until"}, {"text": "Congress"}, {"text": "acts"}, {"text": ","}, {"text": "the"}, {"text": "government"}, {"text": "has"}, {"text": "n't"}, {"text": "any"}, {"text": "authority"}, {"text": "*"}, {"text": "to"}, {"text": "issue"}, {"text": "new"}, {"text": "debt"}, {"text": "obligations"}, {"text": "of"}, {"text": "any"}, {"text": "kind"}, {"text": ","}, {"text": "the"}, {"text": "Treasury"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "The"}, {"text": "government"}, {"text": "'s"}, {"text": "borrowing"}, {"text": "authority"}, {"text": "dropped"}, {"text": "at"}, {"text": "midnight"}, {"text": "Tuesday"}, {"text": "to"}, {"text": "$"}, {"text": "2.80"}, {"text": "trillion"}, {"text": "*U*"}, {"text": "from"}, {"text": "$"}, {"text": "2.87"}, {"text": "trillion"}, {"text": "*U*"}, {"text": "."}, {"text": "Legislation"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "to"}, {"text": "lift"}, {"text": "the"}, {"text": "debt"}, {"text": "ceiling"}, {"text": "is"}, {"text": "ensnarled"}, {"text": "*-11"}, {"text": "in"}, {"text": "the"}, {"text": "fight"}, {"text": "over"}, {"text": "*"}, {"text": "cutting"}, {"text": "capital-gains"}, {"text": "taxes"}, {"text": "."}, {"text": "The"}, {"text": "House"}, {"text": "has"}, {"text": "voted"}, {"text": "*-1"}, {"text": "to"}, {"text": "raise"}, {"text": "the"}, {"text": "ceiling"}, {"text": "to"}, {"text": "$"}, {"text": "3.1"}, {"text": "trillion"}, {"text": "*U*"}, {"text": ","}, {"text": "but"}, {"text": "the"}, {"text": "Senate"}, {"text": "is"}, {"text": "n't"}, {"text": "expected"}, {"text": "*-2"}, {"text": "to"}, {"text": "act"}, {"text": "until"}, {"text": "next"}, {"text": "week"}, {"text": "at"}, {"text": "the"}, {"text": "earliest"}, {"text": "."}, {"text": "The"}, {"text": "Treasury"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "U.S."}, {"text": "will"}, {"text": "default"}, {"text": "on"}, {"text": "Nov."}, {"text": "9"}, {"text": "if"}, {"text": "Congress"}, {"text": "does"}, {"text": "n't"}, {"text": "act"}, {"text": "by"}, {"text": "then"}, {"text": "."}, {"text": "Clark"}, {"text": "J."}, {"text": "Vitulli"}, {"text": "was"}, {"text": "named"}, {"text": "*-12"}, {"text": "senior"}, {"text": "vice"}, {"text": "president"}, {"text": "*RNR*-1"}, {"text": "and"}, {"text": "general"}, {"text": "manager"}, {"text": "*RNR*-1"}, {"text": "of"}, {"text": "this"}, {"text": "U.S."}, {"text": "sales"}, {"text": "and"}, {"text": "marketing"}, {"text": "arm"}, {"text": "of"}, {"text": "Japanese"}, {"text": "auto"}, {"text": "maker"}, {"text": "Mazda"}, {"text": "Motor"}, {"text": "Corp"}, {"text": "."}, {"text": "In"}, {"text": "the"}, {"text": "new"}, {"text": "position"}, {"text": "he"}, {"text": "will"}, {"text": "oversee"}, {"text": "Mazda"}, {"text": "'s"}, {"text": "U.S."}, {"text": "sales"}, {"text": ","}, {"text": "service"}, {"text": ","}, {"text": "parts"}, {"text": "and"}, {"text": "marketing"}, {"text": "operations"}, {"text": "."}, {"text": "Previously"}, {"text": ","}, {"text": "Mr."}, {"text": "Vitulli"}, {"text": ","}, {"text": "43"}, {"text": "years"}, {"text": "old"}, {"text": ","}, {"text": "was"}, {"text": "general"}, {"text": "marketing"}, {"text": "manager"}, {"text": "of"}, {"text": "Chrysler"}, {"text": "Corp."}, {"text": "'s"}, {"text": "Chrysler"}, {"text": "division"}, {"text": "."}, {"text": "He"}, {"text": "had"}, {"text": "been"}, {"text": "a"}, {"text": "sales"}, {"text": "and"}, {"text": "marketing"}, {"text": "executive"}, {"text": "with"}, {"text": "Chrysler"}, {"text": "for"}, {"text": "20"}, {"text": "years"}, {"text": "."}, {"text": "When"}, {"text": "it"}, {"text": "'s"}, {"text": "time"}, {"text": "for"}, {"text": "their"}, {"text": "biannual"}, {"text": "powwow"}, {"text": "*T*-1"}, {"text": ","}, {"text": "the"}, {"text": "nation"}, {"text": "'s"}, {"text": "manufacturing"}, {"text": "titans"}, {"text": "typically"}, {"text": "jet"}, {"text": "off"}, {"text": "to"}, {"text": "the"}, {"text": "sunny"}, {"text": "confines"}, {"text": "of"}, {"text": "resort"}, {"text": "towns"}, {"text": "like"}, {"text": "Boca"}, {"text": "Raton"}, {"text": "and"}, {"text": "Hot"}, {"text": "Springs"}, {"text": "."}, {"text": "Not"}, {"text": "this"}, {"text": "year"}, {"text": "."}, {"text": "The"}, {"text": "National"}, {"text": "Association"}, {"text": "of"}, {"text": "Manufacturers"}, {"text": "settled"}, {"text": "on"}, {"text": "the"}, {"text": "Hoosier"}, {"text": "capital"}, {"text": "of"}, {"text": "Indianapolis"}, {"text": "for"}, {"text": "its"}, {"text": "fall"}, {"text": "board"}, {"text": "meeting"}, {"text": "."}, {"text": "And"}, {"text": "the"}, {"text": "city"}, {"text": "decided"}, {"text": "*-1"}, {"text": "to"}, {"text": "treat"}, {"text": "its"}, {"text": "guests"}, {"text": "more"}, {"text": "like"}, {"text": "royalty"}, {"text": "or"}, {"text": "rock"}, {"text": "stars"}, {"text": "than"}, {"text": "factory"}, {"text": "owners"}, {"text": "."}, {"text": "The"}, {"text": "idea"}, {"text": ","}, {"text": "of"}, {"text": "course"}, {"text": ":"}, {"text": "*"}, {"text": "to"}, {"text": "prove"}, {"text": "to"}, {"text": "125"}, {"text": "corporate"}, {"text": "decision"}, {"text": "makers"}, {"text": "that"}, {"text": "the"}, {"text": "buckle"}, {"text": "on"}, {"text": "the"}, {"text": "Rust"}, {"text": "Belt"}, {"text": "is"}, {"text": "n't"}, {"text": "so"}, {"text": "rusty"}, {"text": "after"}, {"text": "all"}, {"text": ","}, {"text": "that"}, {"text": "it"}, {"text": "'s"}, {"text": "a"}, {"text": "good"}, {"text": "place"}, {"text": "0"}, {"text": "for"}, {"text": "a"}, {"text": "company"}, {"text": "to"}, {"text": "expand"}, {"text": "*T*-1"}, {"text": "."}, {"text": "On"}, {"text": "the"}, {"text": "receiving"}, {"text": "end"}, {"text": "of"}, {"text": "the"}, {"text": "message"}, {"text": "were"}, {"text": "*T*-1"}, {"text": "officials"}, {"text": "from"}, {"text": "giants"}, {"text": "like"}, {"text": "Du"}, {"text": "Pont"}, {"text": "and"}, {"text": "Maytag"}, {"text": ","}, {"text": "along"}, {"text": "with"}, {"text": "lesser"}, {"text": "knowns"}, {"text": "like"}, {"text": "Trojan"}, {"text": "Steel"}, {"text": "and"}, {"text": "the"}, {"text": "Valley"}, {"text": "Queen"}, {"text": "Cheese"}, {"text": "Factory"}, {"text": "."}, {"text": "For"}, {"text": "starters"}, {"text": ","}, {"text": "the"}, {"text": "executives"}, {"text": "joined"}, {"text": "Mayor"}, {"text": "William"}, {"text": "H."}, {"text": "Hudnut"}, {"text": "III"}, {"text": "for"}, {"text": "an"}, {"text": "evening"}, {"text": "of"}, {"text": "the"}, {"text": "Indianapolis"}, {"text": "Symphony"}, {"text": "Orchestra"}, {"text": "and"}, {"text": "a"}, {"text": "guest"}, {"text": "pianist-comedian"}, {"text": "Victor"}, {"text": "Borge"}, {"text": "."}, {"text": "Champagne"}, {"text": "and"}, {"text": "dessert"}, {"text": "followed"}, {"text": "."}, {"text": "The"}, {"text": "next"}, {"text": "morning"}, {"text": ","}, {"text": "with"}, {"text": "a"}, {"text": "police"}, {"text": "escort"}, {"text": ","}, {"text": "busloads"}, {"text": "of"}, {"text": "executives"}, {"text": "and"}, {"text": "their"}, {"text": "wives"}, {"text": "raced"}, {"text": "to"}, {"text": "the"}, {"text": "Indianapolis"}, {"text": "Motor"}, {"text": "Speedway"}, {"text": ","}, {"text": "*-1"}, {"text": "unimpeded"}, {"text": "by"}, {"text": "traffic"}, {"text": "or"}, {"text": "red"}, {"text": "lights"}, {"text": "."}, {"text": "The"}, {"text": "governor"}, {"text": "could"}, {"text": "n't"}, {"text": "make"}, {"text": "it"}, {"text": ","}, {"text": "so"}, {"text": "the"}, {"text": "lieutenant"}, {"text": "governor"}, {"text": "welcomed"}, {"text": "the"}, {"text": "special"}, {"text": "guests"}, {"text": "."}, {"text": "A"}, {"text": "buffet"}, {"text": "breakfast"}, {"text": "was"}, {"text": "held"}, {"text": "*-1"}, {"text": "in"}, {"text": "the"}, {"text": "museum"}, {"text": ","}, {"text": "where"}, {"text": "food"}, {"text": "and"}, {"text": "drinks"}, {"text": "are"}, {"text": "banned"}, {"text": "*-2"}, {"text": "to"}, {"text": "everyday"}, {"text": "visitors"}, {"text": "*T*-3"}, {"text": "."}, {"text": "Then"}, {"text": ","}, {"text": "in"}, {"text": "the"}, {"text": "guests"}, {"text": "'"}, {"text": "honor"}, {"text": ","}, {"text": "the"}, {"text": "speedway"}, {"text": "hauled"}, {"text": "out"}, {"text": "four"}, {"text": "drivers"}, {"text": ","}, {"text": "crews"}, {"text": "and"}, {"text": "even"}, {"text": "the"}, {"text": "official"}, {"text": "Indianapolis"}, {"text": "500"}, {"text": "announcer"}, {"text": "for"}, {"text": "a"}, {"text": "10-lap"}, {"text": "exhibition"}, {"text": "race"}, {"text": "."}, {"text": "After"}, {"text": "the"}, {"text": "race"}, {"text": ","}, {"text": "Fortune"}, {"text": "500"}, {"text": "executives"}, {"text": "drooled"}, {"text": "like"}, {"text": "schoolboys"}, {"text": "over"}, {"text": "the"}, {"text": "cars"}, {"text": "and"}, {"text": "drivers"}, {"text": "."}, {"text": "*-1"}, {"text": "No"}, {"text": "dummies"}, {"text": ","}, {"text": "the"}, {"text": "drivers"}, {"text": "pointed"}, {"text": "out"}, {"text": "0"}, {"text": "they"}, {"text": "still"}, {"text": "had"}, {"text": "space"}, {"text": "on"}, {"text": "their"}, {"text": "machines"}, {"text": "for"}, {"text": "another"}, {"text": "sponsor"}, {"text": "'s"}, {"text": "name"}, {"text": "or"}, {"text": "two"}, {"text": "."}, {"text": "Back"}, {"text": "downtown"}, {"text": ","}, {"text": "the"}, {"text": "execs"}, {"text": "squeezed"}, {"text": "in"}, {"text": "a"}, {"text": "few"}, {"text": "meetings"}, {"text": "at"}, {"text": "the"}, {"text": "hotel"}, {"text": "before"}, {"text": "*-1"}, {"text": "boarding"}, {"text": "the"}, {"text": "buses"}, {"text": "again"}, {"text": "."}, {"text": "This"}, {"text": "time"}, {"text": ","}, {"text": "it"}, {"text": "was"}, {"text": "for"}, {"text": "dinner"}, {"text": "and"}, {"text": "dancing"}, {"text": "--"}, {"text": "a"}, {"text": "block"}, {"text": "away"}, {"text": "."}, {"text": "Under"}, {"text": "the"}, {"text": "stars"}, {"text": "and"}, {"text": "moons"}, {"text": "of"}, {"text": "the"}, {"text": "renovated"}, {"text": "Indiana"}, {"text": "Roof"}, {"text": "ballroom"}, {"text": ","}, {"text": "nine"}, {"text": "of"}, {"text": "the"}, {"text": "hottest"}, {"text": "chefs"}, {"text": "in"}, {"text": "town"}, {"text": "fed"}, {"text": "them"}, {"text": "Indiana"}, {"text": "duckling"}, {"text": "mousseline"}, {"text": ","}, {"text": "lobster"}, {"text": "consomme"}, {"text": ","}, {"text": "veal"}, {"text": "mignon"}, {"text": "and"}, {"text": "chocolate"}, {"text": "terrine"}, {"text": "with"}, {"text": "a"}, {"text": "raspberry"}, {"text": "sauce"}, {"text": "."}, {"text": "*-2"}, {"text": "Knowing"}, {"text": "a"}, {"text": "tasty"}, {"text": "--"}, {"text": "and"}, {"text": "free"}, {"text": "--"}, {"text": "meal"}, {"text": "when"}, {"text": "they"}, {"text": "eat"}, {"text": "one"}, {"text": "*T*-1"}, {"text": ","}, {"text": "the"}, {"text": "executives"}, {"text": "gave"}, {"text": "the"}, {"text": "chefs"}, {"text": "a"}, {"text": "standing"}, {"text": "ovation"}, {"text": "."}, {"text": "More"}, {"text": "than"}, {"text": "a"}, {"text": "few"}, {"text": "CEOs"}, {"text": "say"}, {"text": "0"}, {"text": "the"}, {"text": "red-carpet"}, {"text": "treatment"}, {"text": "tempts"}, {"text": "them"}, {"text": "to"}, {"text": "return"}, {"text": "to"}, {"text": "a"}, {"text": "heartland"}, {"text": "city"}, {"text": "for"}, {"text": "future"}, {"text": "meetings"}, {"text": "."}, {"text": "But"}, {"text": "for"}, {"text": "now"}, {"text": ","}, {"text": "they"}, {"text": "'re"}, {"text": "looking"}, {"text": "forward"}, {"text": "to"}, {"text": "their"}, {"text": "winter"}, {"text": "meeting"}, {"text": "--"}, {"text": "Boca"}, {"text": "in"}, {"text": "February"}, {"text": "."}, {"text": "South"}, {"text": "Korea"}, {"text": "registered"}, {"text": "a"}, {"text": "trade"}, {"text": "deficit"}, {"text": "of"}, {"text": "$"}, {"text": "101"}, {"text": "million"}, {"text": "*U*"}, {"text": "in"}, {"text": "October"}, {"text": ","}, {"text": "*"}, {"text": "reflecting"}, {"text": "the"}, {"text": "country"}, {"text": "'s"}, {"text": "economic"}, {"text": "sluggishness"}, {"text": ","}, {"text": "according"}, {"text": "to"}, {"text": "government"}, {"text": "figures"}, {"text": "released"}, {"text": "*"}, {"text": "Wednesday"}, {"text": "."}, {"text": "Preliminary"}, {"text": "tallies"}, {"text": "by"}, {"text": "the"}, {"text": "Trade"}, {"text": "and"}, {"text": "Industry"}, {"text": "Ministry"}, {"text": "showed"}, {"text": "another"}, {"text": "trade"}, {"text": "deficit"}, {"text": "in"}, {"text": "October"}, {"text": ","}, {"text": "the"}, {"text": "fifth"}, {"text": "monthly"}, {"text": "setback"}, {"text": "this"}, {"text": "year"}, {"text": ","}, {"text": "*"}, {"text": "casting"}, {"text": "a"}, {"text": "cloud"}, {"text": "on"}, {"text": "South"}, {"text": "Korea"}, {"text": "'s"}, {"text": "export-oriented"}, {"text": "economy"}, {"text": "."}, {"text": "Exports"}, {"text": "in"}, {"text": "October"}, {"text": "stood"}, {"text": "at"}, {"text": "$"}, {"text": "5.29"}, {"text": "billion"}, {"text": "*U*"}, {"text": ","}, {"text": "a"}, {"text": "mere"}, {"text": "0.7"}, {"text": "%"}, {"text": "increase"}, {"text": "from"}, {"text": "a"}, {"text": "year"}, {"text": "earlier"}, {"text": ","}, {"text": "while"}, {"text": "imports"}, {"text": "increased"}, {"text": "sharply"}, {"text": "to"}, {"text": "$"}, {"text": "5.39"}, {"text": "billion"}, {"text": "*U*"}, {"text": ","}, {"text": "up"}, {"text": "20"}, {"text": "%"}, {"text": "from"}, {"text": "last"}, {"text": "October"}, {"text": "."}, {"text": "South"}, {"text": "Korea"}, {"text": "'s"}, {"text": "economic"}, {"text": "boom"}, {"text": ","}, {"text": "which"}, {"text": "*T*-12"}, {"text": "began"}, {"text": "in"}, {"text": "1986"}, {"text": ","}, {"text": "stopped"}, {"text": "this"}, {"text": "year"}, {"text": "because"}, {"text": "of"}, {"text": "prolonged"}, {"text": "labor"}, {"text": "disputes"}, {"text": ","}, {"text": "trade"}, {"text": "conflicts"}, {"text": "and"}, {"text": "sluggish"}, {"text": "exports"}, {"text": "."}, {"text": "Government"}, {"text": "officials"}, {"text": "said"}, {"text": "0"}, {"text": "exports"}, {"text": "at"}, {"text": "the"}, {"text": "end"}, {"text": "of"}, {"text": "the"}, {"text": "year"}, {"text": "would"}, {"text": "remain"}, {"text": "under"}, {"text": "a"}, {"text": "government"}, {"text": "target"}, {"text": "of"}, {"text": "$"}, {"text": "68"}, {"text": "billion"}, {"text": "*U*"}, {"text": "."}, {"text": "Despite"}, {"text": "the"}, {"text": "gloomy"}, {"text": "forecast"}, {"text": ","}, {"text": "South"}, {"text": "Korea"}, {"text": "has"}, {"text": "recorded"}, {"text": "a"}, {"text": "trade"}, {"text": "surplus"}, {"text": "of"}, {"text": "$"}, {"text": "71"}, {"text": "million"}, {"text": "*U*"}, {"text": "so"}, {"text": "far"}, {"text": "this"}, {"text": "year"}, {"text": "."}, {"text": "From"}, {"text": "January"}, {"text": "to"}, {"text": "October"}, {"text": ","}, {"text": "the"}, {"text": "nation"}, {"text": "'s"}, {"text": "accumulated"}, {"text": "exports"}, {"text": "increased"}, {"text": "4"}, {"text": "%"}, {"text": "from"}, {"text": "the"}, {"text": "same"}, {"text": "period"}, {"text": "last"}, {"text": "year"}, {"text": "to"}, {"text": "$"}, {"text": "50.45"}, {"text": "billion"}, {"text": "*U*"}, {"text": "."}, {"text": "Imports"}, {"text": "were"}, {"text": "at"}, {"text": "$"}, {"text": "50.38"}, {"text": "billion"}, {"text": "*U*"}, {"text": ","}, {"text": "up"}, {"text": "19"}, {"text": "%"}, {"text": "."}, {"text": "Newsweek"}, {"text": ","}, {"text": "*-1"}, {"text": "trying"}, {"text": "*-2"}, {"text": "to"}, {"text": "keep"}, {"text": "pace"}, {"text": "with"}, {"text": "rival"}, {"text": "Time"}, {"text": "magazine"}, {"text": ","}, {"text": "announced"}, {"text": "new"}, {"text": "advertising"}, {"text": "rates"}, {"text": "for"}, {"text": "1990"}, {"text": "and"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "will"}, {"text": "introduce"}, {"text": "a"}, {"text": "new"}, {"text": "incentive"}, {"text": "plan"}, {"text": "for"}, {"text": "advertisers"}, {"text": "."}, {"text": "The"}, {"text": "new"}, {"text": "ad"}, {"text": "plan"}, {"text": "from"}, {"text": "Newsweek"}, {"text": ","}, {"text": "a"}, {"text": "unit"}, {"text": "of"}, {"text": "the"}, {"text": "Washington"}, {"text": "Post"}, {"text": "Co."}, {"text": ","}, {"text": "is"}, {"text": "the"}, {"text": "second"}, {"text": "incentive"}, {"text": "plan"}, {"text": "0"}, {"text": "the"}, {"text": "magazine"}, {"text": "has"}, {"text": "offered"}, {"text": "advertisers"}, {"text": "*T*-1"}, {"text": "in"}, {"text": "three"}, {"text": "years"}, {"text": "."}, {"text": "Plans"}, {"text": "that"}, {"text": "*T*-13"}, {"text": "give"}, {"text": "advertisers"}, {"text": "discounts"}, {"text": "for"}, {"text": "*"}, {"text": "maintaining"}, {"text": "or"}, {"text": "increasing"}, {"text": "ad"}, {"text": "spending"}, {"text": "have"}, {"text": "become"}, {"text": "permanent"}, {"text": "fixtures"}, {"text": "at"}, {"text": "the"}, {"text": "news"}, {"text": "weeklies"}, {"text": "and"}, {"text": "underscore"}, {"text": "the"}, {"text": "fierce"}, {"text": "competition"}, {"text": "between"}, {"text": "Newsweek"}, {"text": ","}, {"text": "Time"}, {"text": "Warner"}, {"text": "Inc."}, {"text": "'s"}, {"text": "Time"}, {"text": "magazine"}, {"text": ","}, {"text": "and"}, {"text": "Mortimer"}, {"text": "B."}, {"text": "Zuckerman"}, {"text": "'s"}, {"text": "U.S."}, {"text": "News"}, {"text": "&"}, {"text": "World"}, {"text": "Report"}, {"text": "."}, {"text": "Alan"}, {"text": "Spoon"}, {"text": ","}, {"text": "recently"}, {"text": "named"}, {"text": "*"}, {"text": "Newsweek"}, {"text": "president"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "Newsweek"}, {"text": "'s"}, {"text": "ad"}, {"text": "rates"}, {"text": "would"}, {"text": "increase"}, {"text": "5"}, {"text": "%"}, {"text": "in"}, {"text": "January"}, {"text": "."}, {"text": "A"}, {"text": "full"}, {"text": ","}, {"text": "four-color"}, {"text": "page"}, {"text": "in"}, {"text": "Newsweek"}, {"text": "will"}, {"text": "cost"}, {"text": "$"}, {"text": "100,980"}, {"text": "*U*"}, {"text": "."}, {"text": "In"}, {"text": "mid-October"}, {"text": ","}, {"text": "Time"}, {"text": "magazine"}, {"text": "lowered"}, {"text": "its"}, {"text": "guaranteed"}, {"text": "circulation"}, {"text": "rate"}, {"text": "base"}, {"text": "for"}, {"text": "1990"}, {"text": "while"}, {"text": "*-1"}, {"text": "not"}, {"text": "increasing"}, {"text": "ad"}, {"text": "page"}, {"text": "rates"}, {"text": ";"}, {"text": "with"}, {"text": "a"}, {"text": "lower"}, {"text": "circulation"}, {"text": "base"}, {"text": ","}, {"text": "Time"}, {"text": "'s"}, {"text": "ad"}, {"text": "rate"}, {"text": "*ICH*-2"}, {"text": "will"}, {"text": "be"}, {"text": "effectively"}, {"text": "7.5"}, {"text": "%"}, {"text": "higher"}, {"text": "per"}, {"text": "subscriber"}, {"text": ";"}, {"text": "a"}, {"text": "full"}, {"text": "page"}, {"text": "in"}, {"text": "Time"}, {"text": "costs"}, {"text": "about"}, {"text": "$"}, {"text": "120,000"}, {"text": "*U*"}, {"text": "."}, {"text": "U.S."}, {"text": "News"}, {"text": "has"}, {"text": "yet"}, {"text": "*-1"}, {"text": "to"}, {"text": "announce"}, {"text": "its"}, {"text": "1990"}, {"text": "ad"}, {"text": "rates"}, {"text": "."}, {"text": "Newsweek"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "will"}, {"text": "introduce"}, {"text": "the"}, {"text": "Circulation"}, {"text": "Credit"}, {"text": "Plan"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "awards"}, {"text": "space"}, {"text": "credits"}, {"text": "*ICH*-2"}, {"text": "to"}, {"text": "advertisers"}, {"text": "on"}, {"text": "``"}, {"text": "renewal"}, {"text": "advertising"}, {"text": "."}, {"text": "''"}, {"text": "The"}, {"text": "magazine"}, {"text": "will"}, {"text": "reward"}, {"text": "with"}, {"text": "``"}, {"text": "page"}, {"text": "bonuses"}, {"text": "''"}, {"text": "advertisers"}, {"text": "who"}, {"text": "in"}, {"text": "1990"}, {"text": "*T*-1"}, {"text": "meet"}, {"text": "or"}, {"text": "exceed"}, {"text": "their"}, {"text": "1989"}, {"text": "spending"}, {"text": ","}, {"text": "as"}, {"text": "long"}, {"text": "as"}, {"text": "they"}, {"text": "spent"}, {"text": "$"}, {"text": "325,000"}, {"text": "*U*"}, {"text": "in"}, {"text": "1989"}, {"text": "and"}, {"text": "$"}, {"text": "340,000"}, {"text": "*U*"}, {"text": "in"}, {"text": "1990"}, {"text": "."}, {"text": "Mr."}, {"text": "Spoon"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "plan"}, {"text": "is"}, {"text": "not"}, {"text": "an"}, {"text": "attempt"}, {"text": "*"}, {"text": "to"}, {"text": "shore"}, {"text": "up"}, {"text": "a"}, {"text": "decline"}, {"text": "in"}, {"text": "ad"}, {"text": "pages"}, {"text": "in"}, {"text": "the"}, {"text": "first"}, {"text": "nine"}, {"text": "months"}, {"text": "of"}, {"text": "1989"}, {"text": ";"}, {"text": "Newsweek"}, {"text": "'s"}, {"text": "ad"}, {"text": "pages"}, {"text": "totaled"}, {"text": "1,620"}, {"text": ","}, {"text": "a"}, {"text": "drop"}, {"text": "of"}, {"text": "3.2"}, {"text": "%"}, {"text": "from"}, {"text": "last"}, {"text": "year"}, {"text": ","}, {"text": "according"}, {"text": "to"}, {"text": "Publishers"}, {"text": "Information"}, {"text": "Bureau"}, {"text": "."}, {"text": "``"}, {"text": "What"}, {"text": "*T*-14"}, {"text": "matters"}, {"text": "is"}, {"text": "what"}, {"text": "advertisers"}, {"text": "are"}, {"text": "paying"}, {"text": "*T*-15"}, {"text": "per"}, {"text": "page"}, {"text": ","}, {"text": "and"}, {"text": "in"}, {"text": "that"}, {"text": "department"}, {"text": "we"}, {"text": "are"}, {"text": "doing"}, {"text": "fine"}, {"text": "this"}, {"text": "fall"}, {"text": ","}, {"text": "''"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "Mr."}, {"text": "Spoon"}, {"text": "."}, {"text": "Both"}, {"text": "Newsweek"}, {"text": "and"}, {"text": "U.S."}, {"text": "News"}, {"text": "have"}, {"text": "been"}, {"text": "gaining"}, {"text": "circulation"}, {"text": "in"}, {"text": "recent"}, {"text": "years"}, {"text": "without"}, {"text": "heavy"}, {"text": "use"}, {"text": "of"}, {"text": "electronic"}, {"text": "giveaways"}, {"text": "to"}, {"text": "subscribers"}, {"text": ","}, {"text": "such"}, {"text": "as"}, {"text": "telephones"}, {"text": "or"}, {"text": "watches"}, {"text": "."}, {"text": "However"}, {"text": ","}, {"text": "none"}, {"text": "of"}, {"text": "the"}, {"text": "big"}, {"text": "three"}, {"text": "weeklies"}, {"text": "recorded"}, {"text": "circulation"}, {"text": "gains"}, {"text": "recently"}, {"text": "."}, {"text": "According"}, {"text": "to"}, {"text": "Audit"}, {"text": "Bureau"}, {"text": "of"}, {"text": "Circulations"}, {"text": ","}, {"text": "Time"}, {"text": ","}, {"text": "the"}, {"text": "largest"}, {"text": "newsweekly"}, {"text": ","}, {"text": "had"}, {"text": "average"}, {"text": "circulation"}, {"text": "of"}, {"text": "4,393,237"}, {"text": ","}, {"text": "a"}, {"text": "decrease"}, {"text": "of"}, {"text": "7.3"}, {"text": "%"}, {"text": "."}, {"text": "Newsweek"}, {"text": "'s"}, {"text": "circulation"}, {"text": "for"}, {"text": "the"}, {"text": "first"}, {"text": "six"}, {"text": "months"}, {"text": "of"}, {"text": "1989"}, {"text": "was"}, {"text": "3,288,453"}, {"text": ","}, {"text": "*-1"}, {"text": "flat"}, {"text": "from"}, {"text": "the"}, {"text": "same"}, {"text": "period"}, {"text": "last"}, {"text": "year"}, {"text": "."}, {"text": "U.S."}, {"text": "News"}, {"text": "'"}, {"text": "circulation"}, {"text": "in"}, {"text": "the"}, {"text": "same"}, {"text": "time"}, {"text": "was"}, {"text": "2,303,328"}, {"text": ","}, {"text": "down"}, {"text": "2.6"}, {"text": "%"}, {"text": "."}, {"text": "New"}, {"text": "England"}, {"text": "Electric"}, {"text": "System"}, {"text": "bowed"}, {"text": "out"}, {"text": "of"}, {"text": "the"}, {"text": "bidding"}, {"text": "for"}, {"text": "Public"}, {"text": "Service"}, {"text": "Co."}, {"text": "of"}, {"text": "New"}, {"text": "Hampshire"}, {"text": ","}, {"text": "*-1"}, {"text": "saying"}, {"text": "that"}, {"text": "the"}, {"text": "risks"}, {"text": "were"}, {"text": "too"}, {"text": "high"}, {"text": "*RNR*-4"}, {"text": "and"}, {"text": "the"}, {"text": "potential"}, {"text": "payoff"}, {"text": "too"}, {"text": "far"}, {"text": "in"}, {"text": "the"}, {"text": "future"}, {"text": "*RNR*-4"}, {"text": "*"}, {"text": "to"}, {"text": "justify"}, {"text": "a"}, {"text": "higher"}, {"text": "offer"}, {"text": "."}, {"text": "The"}, {"text": "move"}, {"text": "leaves"}, {"text": "United"}, {"text": "Illuminating"}, {"text": "Co."}, {"text": "and"}, {"text": "Northeast"}, {"text": "Utilities"}, {"text": "as"}, {"text": "the"}, {"text": "remaining"}, {"text": "outside"}, {"text": "bidders"}, {"text": "for"}, {"text": "PS"}, {"text": "of"}, {"text": "New"}, {"text": "Hampshire"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "also"}, {"text": "has"}, {"text": "proposed"}, {"text": "an"}, {"text": "internal"}, {"text": "reorganization"}, {"text": "plan"}, {"text": "in"}, {"text": "Chapter"}, {"text": "11"}, {"text": "bankruptcy"}, {"text": "proceedings"}, {"text": "under"}, {"text": "which"}, {"text": "it"}, {"text": "would"}, {"text": "remain"}, {"text": "an"}, {"text": "independent"}, {"text": "company"}, {"text": "*T*-2"}, {"text": "."}, {"text": "New"}, {"text": "England"}, {"text": "Electric"}, {"text": ","}, {"text": "based"}, {"text": "*"}, {"text": "in"}, {"text": "Westborough"}, {"text": ","}, {"text": "Mass."}, {"text": ","}, {"text": "had"}, {"text": "offered"}, {"text": "$"}, {"text": "2"}, {"text": "billion"}, {"text": "*U*"}, {"text": "*ICH*-1"}, {"text": "*-4"}, {"text": "to"}, {"text": "acquire"}, {"text": "PS"}, {"text": "of"}, {"text": "New"}, {"text": "Hampshire"}, {"text": ","}, {"text": "well"}, {"text": "below"}, {"text": "the"}, {"text": "$"}, {"text": "2.29"}, {"text": "billion"}, {"text": "*U*"}, {"text": "value"}, {"text": "0"}, {"text": "United"}, {"text": "Illuminating"}, {"text": "places"}, {"text": "*T*-2"}, {"text": "on"}, {"text": "its"}, {"text": "bid"}, {"text": "and"}, {"text": "the"}, {"text": "$"}, {"text": "2.25"}, {"text": "billion"}, {"text": "*U*"}, {"text": "0"}, {"text": "Northeast"}, {"text": "says"}, {"text": "0"}, {"text": "its"}, {"text": "bid"}, {"text": "is"}, {"text": "worth"}, {"text": "*T*-3"}, {"text": "."}, {"text": "United"}, {"text": "Illuminating"}, {"text": "is"}, {"text": "based"}, {"text": "*-13"}, {"text": "in"}, {"text": "New"}, {"text": "Haven"}, {"text": ","}, {"text": "Conn."}, {"text": ","}, {"text": "and"}, {"text": "Northeast"}, {"text": "is"}, {"text": "based"}, {"text": "*-14"}, {"text": "in"}, {"text": "Hartford"}, {"text": ","}, {"text": "Conn"}, {"text": "."}, {"text": "PS"}, {"text": "of"}, {"text": "New"}, {"text": "Hampshire"}, {"text": ","}, {"text": "Manchester"}, {"text": ","}, {"text": "N.H."}, {"text": ","}, {"text": "values"}, {"text": "its"}, {"text": "internal"}, {"text": "reorganization"}, {"text": "plan"}, {"text": "at"}, {"text": "about"}, {"text": "$"}, {"text": "2.2"}, {"text": "billion"}, {"text": "*U*"}, {"text": "."}, {"text": "John"}, {"text": "Rowe"}, {"text": ","}, {"text": "president"}, {"text": "*RNR*-1"}, {"text": "and"}, {"text": "chief"}, {"text": "executive"}, {"text": "officer"}, {"text": "*RNR*-1"}, {"text": "of"}, {"text": "New"}, {"text": "England"}, {"text": "Electric"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "company"}, {"text": "'s"}, {"text": "return"}, {"text": "on"}, {"text": "equity"}, {"text": "could"}, {"text": "suffer"}, {"text": "if"}, {"text": "it"}, {"text": "made"}, {"text": "a"}, {"text": "higher"}, {"text": "bid"}, {"text": "and"}, {"text": "its"}, {"text": "forecasts"}, {"text": "related"}, {"text": "*"}, {"text": "to"}, {"text": "PS"}, {"text": "of"}, {"text": "New"}, {"text": "Hampshire"}, {"text": "--"}, {"text": "such"}, {"text": "as"}, {"text": "growth"}, {"text": "in"}, {"text": "electricity"}, {"text": "demand"}, {"text": "and"}, {"text": "improved"}, {"text": "operating"}, {"text": "efficiencies"}, {"text": "--"}, {"text": "did"}, {"text": "n't"}, {"text": "come"}, {"text": "true"}, {"text": "."}, {"text": "``"}, {"text": "When"}, {"text": "we"}, {"text": "evaluated"}, {"text": "*-2"}, {"text": "raising"}, {"text": "our"}, {"text": "bid"}, {"text": "*T*-1"}, {"text": ","}, {"text": "the"}, {"text": "risks"}, {"text": "seemed"}, {"text": "substantial"}, {"text": "and"}, {"text": "persistent"}, {"text": "over"}, {"text": "the"}, {"text": "next"}, {"text": "five"}, {"text": "years"}, {"text": ","}, {"text": "and"}, {"text": "the"}, {"text": "rewards"}, {"text": "seemed"}, {"text": "a"}, {"text": "long"}, {"text": "way"}, {"text": "out"}, {"text": "."}, {"text": "That"}, {"text": "got"}, {"text": "hard"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "take"}, {"text": "*T*-1"}, {"text": ","}, {"text": "''"}, {"text": "he"}, {"text": "added"}, {"text": "*T*-2"}, {"text": "."}, {"text": "Mr."}, {"text": "Rowe"}, {"text": "also"}, {"text": "noted"}, {"text": "that"}, {"text": "political"}, {"text": "concerns"}, {"text": "also"}, {"text": "worried"}, {"text": "New"}, {"text": "England"}, {"text": "Electric"}, {"text": "."}, {"text": "No"}, {"text": "matter"}, {"text": "who"}, {"text": "*T*-16"}, {"text": "owns"}, {"text": "PS"}, {"text": "of"}, {"text": "New"}, {"text": "Hampshire"}, {"text": ","}, {"text": "after"}, {"text": "it"}, {"text": "emerges"}, {"text": "from"}, {"text": "bankruptcy"}, {"text": "proceedings"}, {"text": "its"}, {"text": "rates"}, {"text": "will"}, {"text": "be"}, {"text": "among"}, {"text": "the"}, {"text": "highest"}, {"text": "in"}, {"text": "the"}, {"text": "nation"}, {"text": ","}, {"text": "he"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "``"}, {"text": "That"}, {"text": "attracts"}, {"text": "attention"}, {"text": "..."}, {"text": "it"}, {"text": "was"}, {"text": "just"}, {"text": "another"}, {"text": "one"}, {"text": "of"}, {"text": "the"}, {"text": "risk"}, {"text": "factors"}, {"text": "''"}, {"text": "that"}, {"text": "*T*-17"}, {"text": "led"}, {"text": "to"}, {"text": "the"}, {"text": "company"}, {"text": "'s"}, {"text": "decision"}, {"text": "*"}, {"text": "to"}, {"text": "withdraw"}, {"text": "from"}, {"text": "the"}, {"text": "bidding"}, {"text": ","}, {"text": "he"}, {"text": "added"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Wilbur"}, {"text": "Ross"}, {"text": "Jr."}, {"text": "of"}, {"text": "Rothschild"}, {"text": "Inc."}, {"text": ","}, {"text": "the"}, {"text": "financial"}, {"text": "adviser"}, {"text": "to"}, {"text": "the"}, {"text": "troubled"}, {"text": "company"}, {"text": "'s"}, {"text": "equity"}, {"text": "holders"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "withdrawal"}, {"text": "of"}, {"text": "New"}, {"text": "England"}, {"text": "Electric"}, {"text": "might"}, {"text": "speed"}, {"text": "up"}, {"text": "the"}, {"text": "reorganization"}, {"text": "process"}, {"text": "."}, {"text": "The"}, {"text": "fact"}, {"text": "that"}, {"text": "New"}, {"text": "England"}, {"text": "proposed"}, {"text": "lower"}, {"text": "rate"}, {"text": "increases"}, {"text": "--"}, {"text": "4.8"}, {"text": "%"}, {"text": "*U*"}, {"text": "over"}, {"text": "seven"}, {"text": "years"}, {"text": "against"}, {"text": "around"}, {"text": "5.5"}, {"text": "%"}, {"text": "boosts"}, {"text": "proposed"}, {"text": "*"}, {"text": "by"}, {"text": "the"}, {"text": "other"}, {"text": "two"}, {"text": "outside"}, {"text": "bidders"}, {"text": "--"}, {"text": "complicated"}, {"text": "negotiations"}, {"text": "with"}, {"text": "state"}, {"text": "officials"}, {"text": ","}, {"text": "Mr."}, {"text": "Ross"}, {"text": "asserted"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "``"}, {"text": "Now"}, {"text": "the"}, {"text": "field"}, {"text": "is"}, {"text": "less"}, {"text": "cluttered"}, {"text": ","}, {"text": "''"}, {"text": "he"}, {"text": "added"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Separately"}, {"text": ","}, {"text": "the"}, {"text": "Federal"}, {"text": "Energy"}, {"text": "Regulatory"}, {"text": "Commission"}, {"text": "turned"}, {"text": "down"}, {"text": "for"}, {"text": "now"}, {"text": "a"}, {"text": "request"}, {"text": "by"}, {"text": "Northeast"}, {"text": "seeking"}, {"text": "approval"}, {"text": "of"}, {"text": "its"}, {"text": "possible"}, {"text": "purchase"}, {"text": "of"}, {"text": "PS"}, {"text": "of"}, {"text": "New"}, {"text": "Hampshire"}, {"text": "."}, {"text": "Northeast"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "would"}, {"text": "refile"}, {"text": "its"}, {"text": "request"}, {"text": "and"}, {"text": "still"}, {"text": "hopes"}, {"text": "for"}, {"text": "an"}, {"text": "expedited"}, {"text": "review"}, {"text": "by"}, {"text": "the"}, {"text": "FERC"}, {"text": "so"}, {"text": "that"}, {"text": "it"}, {"text": "could"}, {"text": "complete"}, {"text": "the"}, {"text": "purchase"}, {"text": "by"}, {"text": "next"}, {"text": "summer"}, {"text": "if"}, {"text": "its"}, {"text": "bid"}, {"text": "is"}, {"text": "the"}, {"text": "one"}, {"text": "approved"}, {"text": "*"}, {"text": "by"}, {"text": "the"}, {"text": "bankruptcy"}, {"text": "court"}, {"text": "."}, {"text": "PS"}, {"text": "of"}, {"text": "New"}, {"text": "Hampshire"}, {"text": "shares"}, {"text": "closed"}, {"text": "yesterday"}, {"text": "at"}, {"text": "$"}, {"text": "3.75"}, {"text": "*U*"}, {"text": ","}, {"text": "off"}, {"text": "25"}, {"text": "cents"}, {"text": ","}, {"text": "in"}, {"text": "New"}, {"text": "York"}, {"text": "Stock"}, {"text": "Exchange"}, {"text": "composite"}, {"text": "trading"}, {"text": "."}, {"text": "Norman"}, {"text": "Ricken"}, {"text": ","}, {"text": "52"}, {"text": "years"}, {"text": "old"}, {"text": "and"}, {"text": "former"}, {"text": "president"}, {"text": "and"}, {"text": "chief"}, {"text": "operating"}, {"text": "officer"}, {"text": "of"}, {"text": "Toys"}, {"text": "``"}, {"text": "R"}, {"text": "''"}, {"text": "Us"}, {"text": "Inc."}, {"text": ","}, {"text": "and"}, {"text": "Frederick"}, {"text": "Deane"}, {"text": "Jr."}, {"text": ","}, {"text": "63"}, {"text": ","}, {"text": "chairman"}, {"text": "of"}, {"text": "Signet"}, {"text": "Banking"}, {"text": "Corp."}, {"text": ","}, {"text": "were"}, {"text": "elected"}, {"text": "*-15"}, {"text": "directors"}, {"text": "of"}, {"text": "this"}, {"text": "consumer"}, {"text": "electronics"}, {"text": "and"}, {"text": "appliances"}, {"text": "retailing"}, {"text": "chain"}, {"text": "."}, {"text": "They"}, {"text": "succeed"}, {"text": "Daniel"}, {"text": "M."}, {"text": "Rexinger"}, {"text": ","}, {"text": "retired"}, {"text": "Circuit"}, {"text": "City"}, {"text": "executive"}, {"text": "vice"}, {"text": "president"}, {"text": ","}, {"text": "and"}, {"text": "Robert"}, {"text": "R."}, {"text": "Glauber"}, {"text": ","}, {"text": "U.S."}, {"text": "Treasury"}, {"text": "undersecretary"}, {"text": ","}, {"text": "on"}, {"text": "the"}, {"text": "12-member"}, {"text": "board"}, {"text": "."}, {"text": "Commonwealth"}, {"text": "Edison"}, {"text": "Co."}, {"text": "was"}, {"text": "ordered"}, {"text": "*-1"}, {"text": "*-2"}, {"text": "to"}, {"text": "refund"}, {"text": "about"}, {"text": "$"}, {"text": "250"}, {"text": "million"}, {"text": "*U*"}, {"text": "to"}, {"text": "its"}, {"text": "current"}, {"text": "and"}, {"text": "former"}, {"text": "ratepayers"}, {"text": "for"}, {"text": "illegal"}, {"text": "rates"}, {"text": "collected"}, {"text": "*"}, {"text": "for"}, {"text": "cost"}, {"text": "overruns"}, {"text": "on"}, {"text": "a"}, {"text": "nuclear"}, {"text": "power"}, {"text": "plant"}, {"text": "."}, {"text": "The"}, {"text": "refund"}, {"text": "was"}, {"text": "about"}, {"text": "$"}, {"text": "55"}, {"text": "million"}, {"text": "*U*"}, {"text": "more"}, {"text": "than"}, {"text": "*"}, {"text": "previously"}, {"text": "ordered"}, {"text": "*-1"}, {"text": "by"}, {"text": "the"}, {"text": "Illinois"}, {"text": "Commerce"}, {"text": "Commission"}, {"text": "and"}, {"text": "trade"}, {"text": "groups"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "may"}, {"text": "be"}, {"text": "the"}, {"text": "largest"}, {"text": "ever"}, {"text": "required"}, {"text": "*"}, {"text": "of"}, {"text": "a"}, {"text": "state"}, {"text": "or"}, {"text": "local"}, {"text": "utility"}, {"text": "."}, {"text": "State"}, {"text": "court"}, {"text": "Judge"}, {"text": "Richard"}, {"text": "Curry"}, {"text": "ordered"}, {"text": "Edison"}, {"text": "*-1"}, {"text": "to"}, {"text": "make"}, {"text": "average"}, {"text": "refunds"}, {"text": "of"}, {"text": "about"}, {"text": "$"}, {"text": "45"}, {"text": "to"}, {"text": "$"}, {"text": "50"}, {"text": "*U*"}, {"text": "each"}, {"text": "to"}, {"text": "Edison"}, {"text": "customers"}, {"text": "who"}, {"text": "*T*-18"}, {"text": "have"}, {"text": "received"}, {"text": "electric"}, {"text": "service"}, {"text": "since"}, {"text": "April"}, {"text": "1986"}, {"text": ","}, {"text": "including"}, {"text": "about"}, {"text": "two"}, {"text": "million"}, {"text": "customers"}, {"text": "who"}, {"text": "*T*-19"}, {"text": "have"}, {"text": "moved"}, {"text": "during"}, {"text": "that"}, {"text": "period"}, {"text": "."}, {"text": "Judge"}, {"text": "Curry"}, {"text": "ordered"}, {"text": "the"}, {"text": "refunds"}, {"text": "*-1"}, {"text": "to"}, {"text": "begin"}, {"text": "Feb."}, {"text": "1"}, {"text": "and"}, {"text": "said"}, {"text": "that"}, {"text": "he"}, {"text": "would"}, {"text": "n't"}, {"text": "entertain"}, {"text": "any"}, {"text": "appeals"}, {"text": "or"}, {"text": "other"}, {"text": "attempts"}, {"text": "*"}, {"text": "to"}, {"text": "block"}, {"text": "his"}, {"text": "order"}, {"text": "by"}, {"text": "Commonwealth"}, {"text": "Edison"}, {"text": "."}, {"text": "``"}, {"text": "The"}, {"text": "refund"}, {"text": "pool"}, {"text": "..."}, {"text": "may"}, {"text": "not"}, {"text": "be"}, {"text": "held"}, {"text": "*-1"}, {"text": "hostage"}, {"text": "through"}, {"text": "another"}, {"text": "round"}, {"text": "of"}, {"text": "appeals"}, {"text": ","}, {"text": "''"}, {"text": "Judge"}, {"text": "Curry"}, {"text": "said"}, {"text": "*T*-2"}, {"text": "."}, {"text": "Commonwealth"}, {"text": "Edison"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "is"}, {"text": "already"}, {"text": "appealing"}, {"text": "the"}, {"text": "underlying"}, {"text": "commission"}, {"text": "order"}, {"text": "and"}, {"text": "is"}, {"text": "considering"}, {"text": "*-1"}, {"text": "appealing"}, {"text": "Judge"}, {"text": "Curry"}, {"text": "'s"}, {"text": "order"}, {"text": "."}, {"text": "The"}, {"text": "exact"}, {"text": "amount"}, {"text": "of"}, {"text": "the"}, {"text": "refund"}, {"text": "will"}, {"text": "be"}, {"text": "determined"}, {"text": "*-16"}, {"text": "next"}, {"text": "year"}, {"text": "based"}, {"text": "on"}, {"text": "actual"}, {"text": "collections"}, {"text": "made"}, {"text": "*"}, {"text": "until"}, {"text": "Dec."}, {"text": "31"}, {"text": "of"}, {"text": "this"}, {"text": "year"}, {"text": "."}, {"text": "Commonwealth"}, {"text": "Edison"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "ruling"}, {"text": "could"}, {"text": "force"}, {"text": "it"}, {"text": "to"}, {"text": "slash"}, {"text": "its"}, {"text": "1989"}, {"text": "earnings"}, {"text": "by"}, {"text": "$"}, {"text": "1.55"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": "."}, {"text": "For"}, {"text": "1988"}, {"text": ","}, {"text": "Commonwealth"}, {"text": "Edison"}, {"text": "reported"}, {"text": "earnings"}, {"text": "of"}, {"text": "$"}, {"text": "737.5"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "$"}, {"text": "3.01"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": "."}, {"text": "A"}, {"text": "Commonwealth"}, {"text": "Edison"}, {"text": "spokesman"}, {"text": "said"}, {"text": "that"}, {"text": "*"}, {"text": "tracking"}, {"text": "down"}, {"text": "the"}, {"text": "two"}, {"text": "million"}, {"text": "customers"}, {"text": "whose"}, {"text": "addresses"}, {"text": "*T*-20"}, {"text": "have"}, {"text": "changed"}, {"text": "during"}, {"text": "the"}, {"text": "past"}, {"text": "3"}, {"text": "1\\/2"}, {"text": "years"}, {"text": "would"}, {"text": "be"}, {"text": "``"}, {"text": "an"}, {"text": "administrative"}, {"text": "nightmare"}, {"text": "."}, {"text": "''"}, {"text": "In"}, {"text": "New"}, {"text": "York"}, {"text": "Stock"}, {"text": "Exchange"}, {"text": "composite"}, {"text": "trading"}, {"text": "yesterday"}, {"text": ","}, {"text": "Commonwealth"}, {"text": "Edison"}, {"text": "closed"}, {"text": "at"}, {"text": "$"}, {"text": "38.375"}, {"text": "*U*"}, {"text": ","}, {"text": "down"}, {"text": "12.5"}, {"text": "cents"}, {"text": "."}, {"text": "The"}, {"text": "$"}, {"text": "2.5"}, {"text": "billion"}, {"text": "*U*"}, {"text": "Byron"}, {"text": "1"}, {"text": "plant"}, {"text": "near"}, {"text": "Rockford"}, {"text": ","}, {"text": "Ill."}, {"text": ","}, {"text": "was"}, {"text": "completed"}, {"text": "*-17"}, {"text": "in"}, {"text": "1985"}, {"text": "."}, {"text": "In"}, {"text": "a"}, {"text": "disputed"}, {"text": "1985"}, {"text": "ruling"}, {"text": ","}, {"text": "the"}, {"text": "Commerce"}, {"text": "Commission"}, {"text": "said"}, {"text": "0"}, {"text": "Commonwealth"}, {"text": "Edison"}, {"text": "could"}, {"text": "raise"}, {"text": "its"}, {"text": "electricity"}, {"text": "rates"}, {"text": "by"}, {"text": "$"}, {"text": "49"}, {"text": "million"}, {"text": "*U*"}, {"text": "*-1"}, {"text": "to"}, {"text": "pay"}, {"text": "for"}, {"text": "the"}, {"text": "plant"}, {"text": "."}, {"text": "But"}, {"text": "state"}, {"text": "courts"}, {"text": "upheld"}, {"text": "a"}, {"text": "challenge"}, {"text": "by"}, {"text": "consumer"}, {"text": "groups"}, {"text": "to"}, {"text": "the"}, {"text": "commission"}, {"text": "'s"}, {"text": "rate"}, {"text": "increase"}, {"text": "and"}, {"text": "found"}, {"text": "the"}, {"text": "rates"}, {"text": "illegal"}, {"text": "."}, {"text": "The"}, {"text": "Illinois"}, {"text": "Supreme"}, {"text": "Court"}, {"text": "ordered"}, {"text": "the"}, {"text": "commission"}, {"text": "*-1"}, {"text": "to"}, {"text": "audit"}, {"text": "Commonwealth"}, {"text": "Edison"}, {"text": "'s"}, {"text": "construction"}, {"text": "expenses"}, {"text": "and"}, {"text": "refund"}, {"text": "any"}, {"text": "unreasonable"}, {"text": "expenses"}, {"text": "."}, {"text": "The"}, {"text": "utility"}, {"text": "has"}, {"text": "been"}, {"text": "collecting"}, {"text": "for"}, {"text": "the"}, {"text": "plant"}, {"text": "'s"}, {"text": "construction"}, {"text": "cost"}, {"text": "from"}, {"text": "its"}, {"text": "3.1"}, {"text": "million"}, {"text": "customers"}, {"text": "subject"}, {"text": "to"}, {"text": "a"}, {"text": "refund"}, {"text": "since"}, {"text": "1986"}, {"text": "."}, {"text": "In"}, {"text": "August"}, {"text": ","}, {"text": "the"}, {"text": "commission"}, {"text": "ruled"}, {"text": "that"}, {"text": "between"}, {"text": "$"}, {"text": "190"}, {"text": "million"}, {"text": "and"}, {"text": "$"}, {"text": "195"}, {"text": "million"}, {"text": "*U*"}, {"text": "of"}, {"text": "the"}, {"text": "plant"}, {"text": "'s"}, {"text": "construction"}, {"text": "cost"}, {"text": "was"}, {"text": "unreasonable"}, {"text": "and"}, {"text": "should"}, {"text": "be"}, {"text": "refunded"}, {"text": "*-1"}, {"text": ","}, {"text": "plus"}, {"text": "interest"}, {"text": "."}, {"text": "In"}, {"text": "his"}, {"text": "ruling"}, {"text": ","}, {"text": "Judge"}, {"text": "Curry"}, {"text": "added"}, {"text": "an"}, {"text": "additional"}, {"text": "$"}, {"text": "55"}, {"text": "million"}, {"text": "*U*"}, {"text": "to"}, {"text": "the"}, {"text": "commission"}, {"text": "'s"}, {"text": "calculations"}, {"text": "."}, {"text": "Last"}, {"text": "month"}, {"text": ","}, {"text": "Judge"}, {"text": "Curry"}, {"text": "set"}, {"text": "the"}, {"text": "interest"}, {"text": "rate"}, {"text": "on"}, {"text": "the"}, {"text": "refund"}, {"text": "at"}, {"text": "9"}, {"text": "%"}, {"text": "."}, {"text": "Commonwealth"}, {"text": "Edison"}, {"text": "now"}, {"text": "faces"}, {"text": "an"}, {"text": "additional"}, {"text": "court-ordered"}, {"text": "refund"}, {"text": "on"}, {"text": "its"}, {"text": "summer\\/winter"}, {"text": "rate"}, {"text": "differential"}, {"text": "collections"}, {"text": "that"}, {"text": "the"}, {"text": "Illinois"}, {"text": "Appellate"}, {"text": "Court"}, {"text": "has"}, {"text": "estimated"}, {"text": "*T*-1"}, {"text": "at"}, {"text": "$"}, {"text": "140"}, {"text": "million"}, {"text": "*U*"}, {"text": "."}, {"text": "And"}, {"text": "consumer"}, {"text": "groups"}, {"text": "hope"}, {"text": "that"}, {"text": "Judge"}, {"text": "Curry"}, {"text": "'s"}, {"text": "Byron"}, {"text": "1"}, {"text": "order"}, {"text": "may"}, {"text": "set"}, {"text": "a"}, {"text": "precedent"}, {"text": "for"}, {"text": "a"}, {"text": "second"}, {"text": "nuclear"}, {"text": "rate"}, {"text": "case"}, {"text": "involving"}, {"text": "Commonwealth"}, {"text": "Edison"}, {"text": "'s"}, {"text": "Braidwood"}, {"text": "2"}, {"text": "plant"}, {"text": "."}, {"text": "Commonwealth"}, {"text": "Edison"}, {"text": "is"}, {"text": "seeking"}, {"text": "about"}, {"text": "$"}, {"text": "245"}, {"text": "million"}, {"text": "*U*"}, {"text": "in"}, {"text": "rate"}, {"text": "increases"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "to"}, {"text": "pay"}, {"text": "for"}, {"text": "Braidwood"}, {"text": "2"}, {"text": "."}, {"text": "The"}, {"text": "commission"}, {"text": "is"}, {"text": "expected"}, {"text": "*-1"}, {"text": "to"}, {"text": "rule"}, {"text": "on"}, {"text": "the"}, {"text": "Braidwood"}, {"text": "2"}, {"text": "case"}, {"text": "by"}, {"text": "year"}, {"text": "end"}, {"text": "."}, {"text": "Last"}, {"text": "year"}, {"text": "Commonwealth"}, {"text": "Edison"}, {"text": "had"}, {"text": "*-1"}, {"text": "to"}, {"text": "refund"}, {"text": "$"}, {"text": "72.7"}, {"text": "million"}, {"text": "*U*"}, {"text": "for"}, {"text": "poor"}, {"text": "performance"}, {"text": "of"}, {"text": "its"}, {"text": "LaSalle"}, {"text": "I"}, {"text": "nuclear"}, {"text": "plant"}, {"text": "."}, {"text": "Japan"}, {"text": "'s"}, {"text": "domestic"}, {"text": "sales"}, {"text": "of"}, {"text": "cars"}, {"text": ","}, {"text": "trucks"}, {"text": "and"}, {"text": "buses"}, {"text": "in"}, {"text": "October"}, {"text": "rose"}, {"text": "18"}, {"text": "%"}, {"text": "from"}, {"text": "a"}, {"text": "year"}, {"text": "earlier"}, {"text": "to"}, {"text": "500,004"}, {"text": "units"}, {"text": ","}, {"text": "a"}, {"text": "record"}, {"text": "for"}, {"text": "the"}, {"text": "month"}, {"text": ","}, {"text": "the"}, {"text": "Japan"}, {"text": "Automobile"}, {"text": "Dealers"}, {"text": "'"}, {"text": "Association"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "The"}, {"text": "strong"}, {"text": "growth"}, {"text": "followed"}, {"text": "year-to-year"}, {"text": "increases"}, {"text": "of"}, {"text": "21"}, {"text": "%"}, {"text": "in"}, {"text": "August"}, {"text": "and"}, {"text": "12"}, {"text": "%"}, {"text": "in"}, {"text": "September"}, {"text": "."}, {"text": "The"}, {"text": "monthly"}, {"text": "sales"}, {"text": "have"}, {"text": "been"}, {"text": "setting"}, {"text": "records"}, {"text": "every"}, {"text": "month"}, {"text": "since"}, {"text": "March"}, {"text": "."}, {"text": "October"}, {"text": "sales"}, {"text": ","}, {"text": "compared"}, {"text": "*"}, {"text": "with"}, {"text": "the"}, {"text": "previous"}, {"text": "month"}, {"text": ","}, {"text": "inched"}, {"text": "down"}, {"text": "0.4"}, {"text": "%"}, {"text": "."}, {"text": "Sales"}, {"text": "of"}, {"text": "passenger"}, {"text": "cars"}, {"text": "grew"}, {"text": "22"}, {"text": "%"}, {"text": "from"}, {"text": "a"}, {"text": "year"}, {"text": "earlier"}, {"text": "to"}, {"text": "361,376"}, {"text": "units"}, {"text": "."}, {"text": "Sales"}, {"text": "of"}, {"text": "medium-sized"}, {"text": "cars"}, {"text": ","}, {"text": "which"}, {"text": "*T*-21"}, {"text": "benefited"}, {"text": "from"}, {"text": "price"}, {"text": "reductions"}, {"text": "arising"}, {"text": "from"}, {"text": "introduction"}, {"text": "of"}, {"text": "the"}, {"text": "consumption"}, {"text": "tax"}, {"text": ","}, {"text": "more"}, {"text": "than"}, {"text": "doubled"}, {"text": "to"}, {"text": "30,841"}, {"text": "units"}, {"text": "from"}, {"text": "13,056"}, {"text": "in"}, {"text": "October"}, {"text": "1988"}, {"text": "."}, {"text": "Texas"}, {"text": "Instruments"}, {"text": "Japan"}, {"text": "Ltd."}, {"text": ","}, {"text": "a"}, {"text": "unit"}, {"text": "of"}, {"text": "Texas"}, {"text": "Instruments"}, {"text": "Inc."}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "opened"}, {"text": "a"}, {"text": "plant"}, {"text": "*ICH*-3"}, {"text": "in"}, {"text": "South"}, {"text": "Korea"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "to"}, {"text": "manufacture"}, {"text": "control"}, {"text": "devices"}, {"text": "."}, {"text": "The"}, {"text": "new"}, {"text": "plant"}, {"text": ","}, {"text": "located"}, {"text": "*"}, {"text": "in"}, {"text": "Chinchon"}, {"text": "about"}, {"text": "60"}, {"text": "miles"}, {"text": "from"}, {"text": "Seoul"}, {"text": ","}, {"text": "will"}, {"text": "help"}, {"text": "*-2"}, {"text": "meet"}, {"text": "increasing"}, {"text": "and"}, {"text": "diversifying"}, {"text": "demand"}, {"text": "for"}, {"text": "control"}, {"text": "products"}, {"text": "in"}, {"text": "South"}, {"text": "Korea"}, {"text": ","}, {"text": "the"}, {"text": "company"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "The"}, {"text": "plant"}, {"text": "will"}, {"text": "produce"}, {"text": "control"}, {"text": "devices"}, {"text": "used"}, {"text": "*"}, {"text": "in"}, {"text": "motor"}, {"text": "vehicles"}, {"text": "and"}, {"text": "household"}, {"text": "appliances"}, {"text": "."}, {"text": "The"}, {"text": "survival"}, {"text": "of"}, {"text": "spinoff"}, {"text": "Cray"}, {"text": "Computer"}, {"text": "Corp."}, {"text": "as"}, {"text": "a"}, {"text": "fledgling"}, {"text": "in"}, {"text": "the"}, {"text": "supercomputer"}, {"text": "business"}, {"text": "appears"}, {"text": "*-1"}, {"text": "to"}, {"text": "depend"}, {"text": "heavily"}, {"text": "on"}, {"text": "the"}, {"text": "creativity"}, {"text": "--"}, {"text": "and"}, {"text": "longevity"}, {"text": "--"}, {"text": "of"}, {"text": "its"}, {"text": "chairman"}, {"text": "and"}, {"text": "chief"}, {"text": "designer"}, {"text": ","}, {"text": "Seymour"}, {"text": "Cray"}, {"text": "."}, {"text": "Not"}, {"text": "only"}, {"text": "is"}, {"text": "development"}, {"text": "of"}, {"text": "the"}, {"text": "new"}, {"text": "company"}, {"text": "'s"}, {"text": "initial"}, {"text": "machine"}, {"text": "tied"}, {"text": "*-1"}, {"text": "directly"}, {"text": "to"}, {"text": "Mr."}, {"text": "Cray"}, {"text": ","}, {"text": "so"}, {"text": "is"}, {"text": "*T*-2"}, {"text": "its"}, {"text": "balance"}, {"text": "sheet"}, {"text": "."}, {"text": "Documents"}, {"text": "filed"}, {"text": "*"}, {"text": "with"}, {"text": "the"}, {"text": "Securities"}, {"text": "and"}, {"text": "Exchange"}, {"text": "Commission"}, {"text": "on"}, {"text": "the"}, {"text": "pending"}, {"text": "spinoff"}, {"text": "disclosed"}, {"text": "that"}, {"text": "Cray"}, {"text": "Research"}, {"text": "Inc."}, {"text": "will"}, {"text": "withdraw"}, {"text": "the"}, {"text": "almost"}, {"text": "$"}, {"text": "100"}, {"text": "million"}, {"text": "*U*"}, {"text": "in"}, {"text": "financing"}, {"text": "0"}, {"text": "it"}, {"text": "is"}, {"text": "providing"}, {"text": "the"}, {"text": "new"}, {"text": "firm"}, {"text": "*T*-1"}, {"text": "if"}, {"text": "Mr."}, {"text": "Cray"}, {"text": "leaves"}, {"text": "or"}, {"text": "if"}, {"text": "the"}, {"text": "product-design"}, {"text": "project"}, {"text": "0"}, {"text": "he"}, {"text": "heads"}, {"text": "*T*-2"}, {"text": "is"}, {"text": "scrapped"}, {"text": "*-18"}, {"text": "."}, {"text": "The"}, {"text": "documents"}, {"text": "also"}, {"text": "said"}, {"text": "that"}, {"text": "although"}, {"text": "the"}, {"text": "64-year-old"}, {"text": "Mr."}, {"text": "Cray"}, {"text": "has"}, {"text": "been"}, {"text": "working"}, {"text": "on"}, {"text": "the"}, {"text": "project"}, {"text": "for"}, {"text": "more"}, {"text": "than"}, {"text": "six"}, {"text": "years"}, {"text": ","}, {"text": "the"}, {"text": "Cray-3"}, {"text": "machine"}, {"text": "is"}, {"text": "at"}, {"text": "least"}, {"text": "another"}, {"text": "year"}, {"text": "away"}, {"text": "from"}, {"text": "a"}, {"text": "fully"}, {"text": "operational"}, {"text": "prototype"}, {"text": "."}, {"text": "Moreover"}, {"text": ","}, {"text": "there"}, {"text": "have"}, {"text": "been"}, {"text": "no"}, {"text": "orders"}, {"text": "for"}, {"text": "the"}, {"text": "Cray-3"}, {"text": "so"}, {"text": "far"}, {"text": ","}, {"text": "though"}, {"text": "the"}, {"text": "company"}, {"text": "says"}, {"text": "0"}, {"text": "it"}, {"text": "is"}, {"text": "talking"}, {"text": "with"}, {"text": "several"}, {"text": "prospects"}, {"text": "."}, {"text": "While"}, {"text": "many"}, {"text": "of"}, {"text": "the"}, {"text": "risks"}, {"text": "were"}, {"text": "anticipated"}, {"text": "*-19"}, {"text": "when"}, {"text": "Minneapolis-based"}, {"text": "Cray"}, {"text": "Research"}, {"text": "first"}, {"text": "announced"}, {"text": "the"}, {"text": "spinoff"}, {"text": "in"}, {"text": "May"}, {"text": "*T*-1"}, {"text": ","}, {"text": "the"}, {"text": "strings"}, {"text": "0"}, {"text": "it"}, {"text": "attached"}, {"text": "*T*-2"}, {"text": "to"}, {"text": "the"}, {"text": "financing"}, {"text": "had"}, {"text": "n't"}, {"text": "been"}, {"text": "made"}, {"text": "*-3"}, {"text": "public"}, {"text": "until"}, {"text": "yesterday"}, {"text": "."}, {"text": "``"}, {"text": "We"}, {"text": "did"}, {"text": "n't"}, {"text": "have"}, {"text": "much"}, {"text": "of"}, {"text": "a"}, {"text": "choice"}, {"text": ","}, {"text": "''"}, {"text": "Cray"}, {"text": "Computer"}, {"text": "'s"}, {"text": "chief"}, {"text": "financial"}, {"text": "officer"}, {"text": ","}, {"text": "Gregory"}, {"text": "Barnum"}, {"text": ","}, {"text": "said"}, {"text": "*T*-1"}, {"text": "in"}, {"text": "an"}, {"text": "interview"}, {"text": "."}, {"text": "``"}, {"text": "The"}, {"text": "theory"}, {"text": "is"}, {"text": "that"}, {"text": "Seymour"}, {"text": "is"}, {"text": "the"}, {"text": "chief"}, {"text": "designer"}, {"text": "of"}, {"text": "the"}, {"text": "Cray-3"}, {"text": ","}, {"text": "and"}, {"text": "without"}, {"text": "him"}, {"text": "it"}, {"text": "could"}, {"text": "not"}, {"text": "be"}, {"text": "completed"}, {"text": "*-20"}, {"text": "."}, {"text": "Cray"}, {"text": "Research"}, {"text": "did"}, {"text": "not"}, {"text": "want"}, {"text": "*-1"}, {"text": "to"}, {"text": "fund"}, {"text": "a"}, {"text": "project"}, {"text": "that"}, {"text": "*T*-22"}, {"text": "did"}, {"text": "not"}, {"text": "include"}, {"text": "Seymour"}, {"text": "."}, {"text": "''"}, {"text": "The"}, {"text": "documents"}, {"text": "also"}, {"text": "said"}, {"text": "that"}, {"text": "Cray"}, {"text": "Computer"}, {"text": "anticipates"}, {"text": "*-1"}, {"text": "needing"}, {"text": "perhaps"}, {"text": "another"}, {"text": "$"}, {"text": "120"}, {"text": "million"}, {"text": "*U*"}, {"text": "in"}, {"text": "financing"}, {"text": "beginning"}, {"text": "next"}, {"text": "September"}, {"text": "."}, {"text": "But"}, {"text": "Mr."}, {"text": "Barnum"}, {"text": "called"}, {"text": "that"}, {"text": "``"}, {"text": "a"}, {"text": "worst-case"}, {"text": "''"}, {"text": "scenario"}, {"text": "."}, {"text": "The"}, {"text": "filing"}, {"text": "on"}, {"text": "the"}, {"text": "details"}, {"text": "of"}, {"text": "the"}, {"text": "spinoff"}, {"text": "caused"}, {"text": "Cray"}, {"text": "Research"}, {"text": "stock"}, {"text": "to"}, {"text": "jump"}, {"text": "$"}, {"text": "2.875"}, {"text": "*U*"}, {"text": "yesterday"}, {"text": "*-1"}, {"text": "to"}, {"text": "close"}, {"text": "at"}, {"text": "$"}, {"text": "38"}, {"text": "*U*"}, {"text": "in"}, {"text": "New"}, {"text": "York"}, {"text": "Stock"}, {"text": "Exchange"}, {"text": "composite"}, {"text": "trading"}, {"text": "."}, {"text": "Analysts"}, {"text": "noted"}, {"text": "yesterday"}, {"text": "that"}, {"text": "Cray"}, {"text": "Research"}, {"text": "'s"}, {"text": "decision"}, {"text": "*"}, {"text": "to"}, {"text": "link"}, {"text": "its"}, {"text": "$"}, {"text": "98.3"}, {"text": "million"}, {"text": "*U*"}, {"text": "promissory"}, {"text": "note"}, {"text": "to"}, {"text": "Mr."}, {"text": "Cray"}, {"text": "'s"}, {"text": "presence"}, {"text": "will"}, {"text": "complicate"}, {"text": "a"}, {"text": "valuation"}, {"text": "of"}, {"text": "the"}, {"text": "new"}, {"text": "company"}, {"text": "."}, {"text": "``"}, {"text": "It"}, {"text": "has"}, {"text": "*-2"}, {"text": "to"}, {"text": "be"}, {"text": "considered"}, {"text": "*-21"}, {"text": "as"}, {"text": "an"}, {"text": "additional"}, {"text": "risk"}, {"text": "for"}, {"text": "the"}, {"text": "investor"}, {"text": ","}, {"text": "''"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "Gary"}, {"text": "P."}, {"text": "Smaby"}, {"text": "of"}, {"text": "Smaby"}, {"text": "Group"}, {"text": "Inc."}, {"text": ","}, {"text": "Minneapolis"}, {"text": "."}, {"text": "``"}, {"text": "Cray"}, {"text": "Computer"}, {"text": "will"}, {"text": "be"}, {"text": "a"}, {"text": "concept"}, {"text": "stock"}, {"text": ","}, {"text": "''"}, {"text": "he"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "."}, {"text": "``"}, {"text": "You"}, {"text": "either"}, {"text": "believe"}, {"text": "0"}, {"text": "Seymour"}, {"text": "can"}, {"text": "do"}, {"text": "it"}, {"text": "again"}, {"text": "or"}, {"text": "you"}, {"text": "do"}, {"text": "n't"}, {"text": "*?*"}, {"text": "."}, {"text": "''"}, {"text": "Besides"}, {"text": "the"}, {"text": "designer"}, {"text": "'s"}, {"text": "age"}, {"text": ","}, {"text": "other"}, {"text": "risk"}, {"text": "factors"}, {"text": "for"}, {"text": "Mr."}, {"text": "Cray"}, {"text": "'s"}, {"text": "new"}, {"text": "company"}, {"text": "include"}, {"text": "the"}, {"text": "Cray-3"}, {"text": "'s"}, {"text": "tricky"}, {"text": ","}, {"text": "unproven"}, {"text": "chip"}, {"text": "technology"}, {"text": "."}, {"text": "The"}, {"text": "SEC"}, {"text": "documents"}, {"text": "describe"}, {"text": "those"}, {"text": "chips"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "are"}, {"text": "made"}, {"text": "*-22"}, {"text": "of"}, {"text": "gallium"}, {"text": "arsenide"}, {"text": ","}, {"text": "as"}, {"text": "*-2"}, {"text": "being"}, {"text": "so"}, {"text": "fragile"}, {"text": "and"}, {"text": "minute"}, {"text": "0"}, {"text": "they"}, {"text": "will"}, {"text": "require"}, {"text": "special"}, {"text": "robotic"}, {"text": "handling"}, {"text": "equipment"}, {"text": "."}, {"text": "In"}, {"text": "addition"}, {"text": ","}, {"text": "the"}, {"text": "Cray-3"}, {"text": "will"}, {"text": "contain"}, {"text": "16"}, {"text": "processors"}, {"text": "--"}, {"text": "twice"}, {"text": "as"}, {"text": "many"}, {"text": "as"}, {"text": "the"}, {"text": "largest"}, {"text": "current"}, {"text": "supercomputer"}, {"text": "."}, {"text": "Cray"}, {"text": "Computer"}, {"text": "also"}, {"text": "will"}, {"text": "face"}, {"text": "intense"}, {"text": "competition"}, {"text": ","}, {"text": "not"}, {"text": "only"}, {"text": "from"}, {"text": "Cray"}, {"text": "Research"}, {"text": ","}, {"text": "which"}, {"text": "*T*-23"}, {"text": "has"}, {"text": "about"}, {"text": "60"}, {"text": "%"}, {"text": "of"}, {"text": "the"}, {"text": "world-wide"}, {"text": "supercomputer"}, {"text": "market"}, {"text": "and"}, {"text": "which"}, {"text": "*T*-24"}, {"text": "is"}, {"text": "expected"}, {"text": "*-1"}, {"text": "to"}, {"text": "roll"}, {"text": "out"}, {"text": "the"}, {"text": "C-90"}, {"text": "machine"}, {"text": ","}, {"text": "a"}, {"text": "direct"}, {"text": "competitor"}, {"text": "with"}, {"text": "the"}, {"text": "Cray-3"}, {"text": ","}, {"text": "in"}, {"text": "1991"}, {"text": "."}, {"text": "The"}, {"text": "spinoff"}, {"text": "also"}, {"text": "will"}, {"text": "compete"}, {"text": "with"}, {"text": "International"}, {"text": "Business"}, {"text": "Machines"}, {"text": "Corp."}, {"text": "and"}, {"text": "Japan"}, {"text": "'s"}, {"text": "Big"}, {"text": "Three"}, {"text": "--"}, {"text": "Hitachi"}, {"text": "Ltd."}, {"text": ","}, {"text": "NEC"}, {"text": "Corp."}, {"text": "and"}, {"text": "Fujitsu"}, {"text": "Ltd"}, {"text": "."}, {"text": "The"}, {"text": "new"}, {"text": "company"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "believes"}, {"text": "0"}, {"text": "there"}, {"text": "are"}, {"text": "fewer"}, {"text": "than"}, {"text": "100"}, {"text": "potential"}, {"text": "customers"}, {"text": "for"}, {"text": "supercomputers"}, {"text": "priced"}, {"text": "*"}, {"text": "between"}, {"text": "$"}, {"text": "15"}, {"text": "million"}, {"text": "and"}, {"text": "$"}, {"text": "30"}, {"text": "million"}, {"text": "*U*"}, {"text": "--"}, {"text": "presumably"}, {"text": "the"}, {"text": "Cray-3"}, {"text": "price"}, {"text": "range"}, {"text": "."}, {"text": "Under"}, {"text": "terms"}, {"text": "of"}, {"text": "the"}, {"text": "spinoff"}, {"text": ","}, {"text": "Cray"}, {"text": "Research"}, {"text": "stockholders"}, {"text": "are"}, {"text": "*-1"}, {"text": "to"}, {"text": "receive"}, {"text": "one"}, {"text": "Cray"}, {"text": "Computer"}, {"text": "share"}, {"text": "for"}, {"text": "every"}, {"text": "two"}, {"text": "Cray"}, {"text": "Research"}, {"text": "shares"}, {"text": "0"}, {"text": "they"}, {"text": "own"}, {"text": "*T*-2"}, {"text": "in"}, {"text": "a"}, {"text": "distribution"}, {"text": "expected"}, {"text": "*"}, {"text": "to"}, {"text": "occur"}, {"text": "in"}, {"text": "about"}, {"text": "two"}, {"text": "weeks"}, {"text": "."}, {"text": "No"}, {"text": "price"}, {"text": "for"}, {"text": "the"}, {"text": "new"}, {"text": "shares"}, {"text": "has"}, {"text": "been"}, {"text": "set"}, {"text": "*-23"}, {"text": "."}, {"text": "Instead"}, {"text": ","}, {"text": "the"}, {"text": "companies"}, {"text": "will"}, {"text": "leave"}, {"text": "it"}, {"text": "up"}, {"text": "to"}, {"text": "the"}, {"text": "marketplace"}, {"text": "*"}, {"text": "to"}, {"text": "decide"}, {"text": "."}, {"text": "Cray"}, {"text": "Computer"}, {"text": "has"}, {"text": "applied"}, {"text": "*-1"}, {"text": "to"}, {"text": "trade"}, {"text": "on"}, {"text": "Nasdaq"}, {"text": "."}, {"text": "Analysts"}, {"text": "calculate"}, {"text": "Cray"}, {"text": "Computer"}, {"text": "'s"}, {"text": "initial"}, {"text": "book"}, {"text": "value"}, {"text": "at"}, {"text": "about"}, {"text": "$"}, {"text": "4.75"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": "."}, {"text": "Along"}, {"text": "with"}, {"text": "the"}, {"text": "note"}, {"text": ","}, {"text": "Cray"}, {"text": "Research"}, {"text": "is"}, {"text": "transferring"}, {"text": "about"}, {"text": "$"}, {"text": "53"}, {"text": "million"}, {"text": "*U*"}, {"text": "in"}, {"text": "assets"}, {"text": ","}, {"text": "primarily"}, {"text": "those"}, {"text": "related"}, {"text": "to"}, {"text": "the"}, {"text": "Cray-3"}, {"text": "development"}, {"text": ","}, {"text": "which"}, {"text": "*T*-25"}, {"text": "has"}, {"text": "been"}, {"text": "a"}, {"text": "drain"}, {"text": "on"}, {"text": "Cray"}, {"text": "Research"}, {"text": "'s"}, {"text": "earnings"}, {"text": "."}, {"text": "Pro-forma"}, {"text": "balance"}, {"text": "sheets"}, {"text": "clearly"}, {"text": "show"}, {"text": "why"}, {"text": "Cray"}, {"text": "Research"}, {"text": "favored"}, {"text": "the"}, {"text": "spinoff"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Without"}, {"text": "the"}, {"text": "Cray-3"}, {"text": "research"}, {"text": "and"}, {"text": "development"}, {"text": "expenses"}, {"text": ","}, {"text": "the"}, {"text": "company"}, {"text": "would"}, {"text": "have"}, {"text": "been"}, {"text": "able"}, {"text": "*-2"}, {"text": "to"}, {"text": "report"}, {"text": "a"}, {"text": "profit"}, {"text": "of"}, {"text": "$"}, {"text": "19.3"}, {"text": "million"}, {"text": "*U*"}, {"text": "*ICH*-3"}, {"text": "for"}, {"text": "the"}, {"text": "first"}, {"text": "half"}, {"text": "of"}, {"text": "1989"}, {"text": "rather"}, {"text": "than"}, {"text": "the"}, {"text": "$"}, {"text": "5.9"}, {"text": "million"}, {"text": "*U*"}, {"text": "0"}, {"text": "it"}, {"text": "posted"}, {"text": "*T*-1"}, {"text": "."}, {"text": "On"}, {"text": "the"}, {"text": "other"}, {"text": "hand"}, {"text": ","}, {"text": "had"}, {"text": "it"}, {"text": "existed"}, {"text": "then"}, {"text": ","}, {"text": "Cray"}, {"text": "Computer"}, {"text": "would"}, {"text": "have"}, {"text": "incurred"}, {"text": "a"}, {"text": "$"}, {"text": "20.5"}, {"text": "million"}, {"text": "*U*"}, {"text": "loss"}, {"text": "."}, {"text": "Mr."}, {"text": "Cray"}, {"text": ","}, {"text": "who"}, {"text": "*T*-1"}, {"text": "could"}, {"text": "n't"}, {"text": "be"}, {"text": "reached"}, {"text": "*-24"}, {"text": "for"}, {"text": "comment"}, {"text": ","}, {"text": "will"}, {"text": "work"}, {"text": "for"}, {"text": "the"}, {"text": "new"}, {"text": "Colorado"}, {"text": "Springs"}, {"text": ","}, {"text": "Colo."}, {"text": ","}, {"text": "company"}, {"text": "as"}, {"text": "an"}, {"text": "independent"}, {"text": "contractor"}, {"text": "--"}, {"text": "the"}, {"text": "arrangement"}, {"text": "0"}, {"text": "he"}, {"text": "had"}, {"text": "*T*-2"}, {"text": "with"}, {"text": "Cray"}, {"text": "Research"}, {"text": "."}, {"text": "*-25"}, {"text": "Regarded"}, {"text": "*-1"}, {"text": "as"}, {"text": "the"}, {"text": "father"}, {"text": "of"}, {"text": "the"}, {"text": "supercomputer"}, {"text": ","}, {"text": "Mr."}, {"text": "Cray"}, {"text": "was"}, {"text": "paid"}, {"text": "*-25"}, {"text": "$"}, {"text": "600,000"}, {"text": "*U*"}, {"text": "at"}, {"text": "Cray"}, {"text": "Research"}, {"text": "last"}, {"text": "year"}, {"text": "."}, {"text": "At"}, {"text": "Cray"}, {"text": "Computer"}, {"text": ","}, {"text": "he"}, {"text": "will"}, {"text": "be"}, {"text": "paid"}, {"text": "*-26"}, {"text": "$"}, {"text": "240,000"}, {"text": "*U*"}, {"text": "."}, {"text": "Besides"}, {"text": "Messrs."}, {"text": "Cray"}, {"text": "and"}, {"text": "Barnum"}, {"text": ","}, {"text": "other"}, {"text": "senior"}, {"text": "management"}, {"text": "at"}, {"text": "the"}, {"text": "company"}, {"text": "includes"}, {"text": "Neil"}, {"text": "Davenport"}, {"text": ","}, {"text": "47"}, {"text": ","}, {"text": "president"}, {"text": "and"}, {"text": "chief"}, {"text": "executive"}, {"text": "officer"}, {"text": ";"}, {"text": "Joseph"}, {"text": "M."}, {"text": "Blanchard"}, {"text": ","}, {"text": "37"}, {"text": ","}, {"text": "vice"}, {"text": "president"}, {"text": ","}, {"text": "engineering"}, {"text": ";"}, {"text": "Malcolm"}, {"text": "A."}, {"text": "Hammerton"}, {"text": ","}, {"text": "40"}, {"text": ","}, {"text": "vice"}, {"text": "president"}, {"text": ","}, {"text": "software"}, {"text": ";"}, {"text": "and"}, {"text": "Douglas"}, {"text": "R."}, {"text": "Wheeland"}, {"text": ","}, {"text": "45"}, {"text": ","}, {"text": "vice"}, {"text": "president"}, {"text": ","}, {"text": "hardware"}, {"text": "."}, {"text": "All"}, {"text": "came"}, {"text": "from"}, {"text": "Cray"}, {"text": "Research"}, {"text": "."}, {"text": "Cray"}, {"text": "Computer"}, {"text": ","}, {"text": "which"}, {"text": "*T*-26"}, {"text": "currently"}, {"text": "employs"}, {"text": "241"}, {"text": "people"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "expects"}, {"text": "a"}, {"text": "work"}, {"text": "force"}, {"text": "of"}, {"text": "450"}, {"text": "by"}, {"text": "the"}, {"text": "end"}, {"text": "of"}, {"text": "1990"}, {"text": "."}, {"text": "John"}, {"text": "R."}, {"text": "Stevens"}, {"text": ","}, {"text": "49"}, {"text": "years"}, {"text": "old"}, {"text": ","}, {"text": "was"}, {"text": "named"}, {"text": "*-27"}, {"text": "senior"}, {"text": "executive"}, {"text": "vice"}, {"text": "president"}, {"text": "and"}, {"text": "chief"}, {"text": "operating"}, {"text": "officer"}, {"text": ","}, {"text": "both"}, {"text": "new"}, {"text": "positions"}, {"text": "."}, {"text": "He"}, {"text": "will"}, {"text": "continue"}, {"text": "*-1"}, {"text": "to"}, {"text": "report"}, {"text": "to"}, {"text": "Donald"}, {"text": "Pardus"}, {"text": ","}, {"text": "president"}, {"text": "and"}, {"text": "chief"}, {"text": "executive"}, {"text": "officer"}, {"text": "."}, {"text": "Mr."}, {"text": "Stevens"}, {"text": "was"}, {"text": "executive"}, {"text": "vice"}, {"text": "president"}, {"text": "of"}, {"text": "this"}, {"text": "electric-utility"}, {"text": "holding"}, {"text": "company"}, {"text": "."}, {"text": "Arthur"}, {"text": "A."}, {"text": "Hatch"}, {"text": ","}, {"text": "59"}, {"text": ","}, {"text": "was"}, {"text": "named"}, {"text": "*-28"}, {"text": "executive"}, {"text": "vice"}, {"text": "president"}, {"text": "of"}, {"text": "the"}, {"text": "company"}, {"text": "."}, {"text": "He"}, {"text": "was"}, {"text": "previously"}, {"text": "president"}, {"text": "of"}, {"text": "the"}, {"text": "company"}, {"text": "'s"}, {"text": "Eastern"}, {"text": "Edison"}, {"text": "Co."}, {"text": "unit"}, {"text": "."}, {"text": "John"}, {"text": "D."}, {"text": "Carney"}, {"text": ","}, {"text": "45"}, {"text": ","}, {"text": "was"}, {"text": "named"}, {"text": "*-1"}, {"text": "to"}, {"text": "succeed"}, {"text": "Mr."}, {"text": "Hatch"}, {"text": "as"}, {"text": "president"}, {"text": "of"}, {"text": "Eastern"}, {"text": "Edison"}, {"text": "."}, {"text": "Previously"}, {"text": "he"}, {"text": "was"}, {"text": "vice"}, {"text": "president"}, {"text": "of"}, {"text": "Eastern"}, {"text": "Edison"}, {"text": "."}, {"text": "Robert"}, {"text": "P."}, {"text": "Tassinari"}, {"text": ","}, {"text": "63"}, {"text": ","}, {"text": "was"}, {"text": "named"}, {"text": "*-29"}, {"text": "senior"}, {"text": "vice"}, {"text": "president"}, {"text": "of"}, {"text": "Eastern"}, {"text": "Utilities"}, {"text": "."}, {"text": "He"}, {"text": "was"}, {"text": "previously"}, {"text": "vice"}, {"text": "president"}, {"text": "."}, {"text": "The"}, {"text": "U.S."}, {"text": ","}, {"text": "*-1"}, {"text": "claiming"}, {"text": "some"}, {"text": "success"}, {"text": "in"}, {"text": "its"}, {"text": "trade"}, {"text": "diplomacy"}, {"text": ","}, {"text": "removed"}, {"text": "South"}, {"text": "Korea"}, {"text": ","}, {"text": "Taiwan"}, {"text": "and"}, {"text": "Saudi"}, {"text": "Arabia"}, {"text": "from"}, {"text": "a"}, {"text": "list"}, {"text": "of"}, {"text": "countries"}, {"text": "0"}, {"text": "it"}, {"text": "is"}, {"text": "closely"}, {"text": "watching"}, {"text": "*T*-2"}, {"text": "for"}, {"text": "*"}, {"text": "allegedly"}, {"text": "failing"}, {"text": "*-3"}, {"text": "to"}, {"text": "honor"}, {"text": "U.S."}, {"text": "patents"}, {"text": ","}, {"text": "copyrights"}, {"text": "and"}, {"text": "other"}, {"text": "intellectual-property"}, {"text": "rights"}, {"text": "."}, {"text": "However"}, {"text": ","}, {"text": "five"}, {"text": "other"}, {"text": "countries"}, {"text": "--"}, {"text": "China"}, {"text": ","}, {"text": "Thailand"}, {"text": ","}, {"text": "India"}, {"text": ","}, {"text": "Brazil"}, {"text": "and"}, {"text": "Mexico"}, {"text": "--"}, {"text": "will"}, {"text": "remain"}, {"text": "on"}, {"text": "that"}, {"text": "so-called"}, {"text": "priority"}, {"text": "watch"}, {"text": "list"}, {"text": "as"}, {"text": "a"}, {"text": "result"}, {"text": "of"}, {"text": "an"}, {"text": "interim"}, {"text": "review"}, {"text": ","}, {"text": "U.S."}, {"text": "Trade"}, {"text": "Representative"}, {"text": "Carla"}, {"text": "Hills"}, {"text": "announced"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Under"}, {"text": "the"}, {"text": "new"}, {"text": "U.S."}, {"text": "trade"}, {"text": "law"}, {"text": ","}, {"text": "those"}, {"text": "countries"}, {"text": "could"}, {"text": "face"}, {"text": "accelerated"}, {"text": "unfair-trade"}, {"text": "investigations"}, {"text": "and"}, {"text": "stiff"}, {"text": "trade"}, {"text": "sanctions"}, {"text": "if"}, {"text": "they"}, {"text": "do"}, {"text": "n't"}, {"text": "improve"}, {"text": "their"}, {"text": "protection"}, {"text": "of"}, {"text": "intellectual"}, {"text": "property"}, {"text": "by"}, {"text": "next"}, {"text": "spring"}, {"text": "."}, {"text": "Mrs."}, {"text": "Hills"}, {"text": "said"}, {"text": "0"}, {"text": "many"}, {"text": "of"}, {"text": "the"}, {"text": "25"}, {"text": "countries"}, {"text": "that"}, {"text": "she"}, {"text": "placed"}, {"text": "*T*-1"}, {"text": "under"}, {"text": "varying"}, {"text": "degrees"}, {"text": "of"}, {"text": "scrutiny"}, {"text": "have"}, {"text": "made"}, {"text": "``"}, {"text": "genuine"}, {"text": "progress"}, {"text": "''"}, {"text": "on"}, {"text": "this"}, {"text": "touchy"}, {"text": "issue"}, {"text": "."}, {"text": "She"}, {"text": "said"}, {"text": "0"}, {"text": "there"}, {"text": "is"}, {"text": "``"}, {"text": "growing"}, {"text": "realization"}, {"text": "*ICH*-1"}, {"text": "''"}, {"text": "around"}, {"text": "the"}, {"text": "world"}, {"text": "that"}, {"text": "denial"}, {"text": "of"}, {"text": "intellectual-property"}, {"text": "rights"}, {"text": "harms"}, {"text": "all"}, {"text": "trading"}, {"text": "nations"}, {"text": ","}, {"text": "and"}, {"text": "particularly"}, {"text": "the"}, {"text": "``"}, {"text": "creativity"}, {"text": "and"}, {"text": "inventiveness"}, {"text": "of"}, {"text": "an"}, {"text": "-LCB-"}, {"text": "offending"}, {"text": "-RCB-"}, {"text": "country"}, {"text": "'s"}, {"text": "own"}, {"text": "citizens"}, {"text": "."}, {"text": "''"}, {"text": "U.S."}, {"text": "trade"}, {"text": "negotiators"}, {"text": "argue"}, {"text": "that"}, {"text": "countries"}, {"text": "with"}, {"text": "inadequate"}, {"text": "protections"}, {"text": "for"}, {"text": "intellectual-property"}, {"text": "rights"}, {"text": "could"}, {"text": "be"}, {"text": "hurting"}, {"text": "themselves"}, {"text": "by"}, {"text": "*-1"}, {"text": "discouraging"}, {"text": "their"}, {"text": "own"}, {"text": "scientists"}, {"text": "and"}, {"text": "authors"}, {"text": "and"}, {"text": "by"}, {"text": "*-1"}, {"text": "deterring"}, {"text": "U.S."}, {"text": "high-technology"}, {"text": "firms"}, {"text": "from"}, {"text": "*-2"}, {"text": "investing"}, {"text": "or"}, {"text": "marketing"}, {"text": "their"}, {"text": "best"}, {"text": "products"}, {"text": "there"}, {"text": "."}, {"text": "Mrs."}, {"text": "Hills"}, {"text": "lauded"}, {"text": "South"}, {"text": "Korea"}, {"text": "for"}, {"text": "*-1"}, {"text": "creating"}, {"text": "an"}, {"text": "intellectual-property"}, {"text": "task"}, {"text": "force"}, {"text": "and"}, {"text": "special"}, {"text": "enforcement"}, {"text": "teams"}, {"text": "of"}, {"text": "police"}, {"text": "officers"}, {"text": "and"}, {"text": "prosecutors"}, {"text": "trained"}, {"text": "*"}, {"text": "to"}, {"text": "pursue"}, {"text": "movie"}, {"text": "and"}, {"text": "book"}, {"text": "pirates"}, {"text": "."}, {"text": "Seoul"}, {"text": "also"}, {"text": "has"}, {"text": "instituted"}, {"text": "effective"}, {"text": "search-and-seizure"}, {"text": "procedures"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "aid"}, {"text": "these"}, {"text": "teams"}, {"text": "*T*-2"}, {"text": ","}, {"text": "she"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Taiwan"}, {"text": "has"}, {"text": "improved"}, {"text": "its"}, {"text": "standing"}, {"text": "with"}, {"text": "the"}, {"text": "U.S."}, {"text": "by"}, {"text": "*-2"}, {"text": "initialing"}, {"text": "a"}, {"text": "bilateral"}, {"text": "copyright"}, {"text": "agreement"}, {"text": ","}, {"text": "amending"}, {"text": "its"}, {"text": "trademark"}, {"text": "law"}, {"text": "and"}, {"text": "introducing"}, {"text": "legislation"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "protect"}, {"text": "foreign"}, {"text": "movie"}, {"text": "producers"}, {"text": "from"}, {"text": "unauthorized"}, {"text": "showings"}, {"text": "of"}, {"text": "their"}, {"text": "films"}, {"text": "*T*-1"}, {"text": "."}, {"text": "That"}, {"text": "measure"}, {"text": "could"}, {"text": "compel"}, {"text": "Taipei"}, {"text": "'s"}, {"text": "growing"}, {"text": "number"}, {"text": "of"}, {"text": "small"}, {"text": "video-viewing"}, {"text": "parlors"}, {"text": "to"}, {"text": "pay"}, {"text": "movie"}, {"text": "producers"}, {"text": "for"}, {"text": "*"}, {"text": "showing"}, {"text": "their"}, {"text": "films"}, {"text": "."}, {"text": "Saudi"}, {"text": "Arabia"}, {"text": ","}, {"text": "for"}, {"text": "its"}, {"text": "part"}, {"text": ","}, {"text": "has"}, {"text": "vowed"}, {"text": "*-2"}, {"text": "to"}, {"text": "enact"}, {"text": "a"}, {"text": "copyright"}, {"text": "law"}, {"text": "compatible"}, {"text": "with"}, {"text": "international"}, {"text": "standards"}, {"text": "and"}, {"text": "*-2"}, {"text": "to"}, {"text": "apply"}, {"text": "the"}, {"text": "law"}, {"text": "to"}, {"text": "computer"}, {"text": "software"}, {"text": "as"}, {"text": "well"}, {"text": "as"}, {"text": "to"}, {"text": "literary"}, {"text": "works"}, {"text": ","}, {"text": "Mrs."}, {"text": "Hills"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "These"}, {"text": "three"}, {"text": "countries"}, {"text": "are"}, {"text": "n't"}, {"text": "completely"}, {"text": "off"}, {"text": "the"}, {"text": "hook"}, {"text": ","}, {"text": "though"}, {"text": "."}, {"text": "They"}, {"text": "will"}, {"text": "remain"}, {"text": "on"}, {"text": "a"}, {"text": "lower-priority"}, {"text": "list"}, {"text": "that"}, {"text": "*T*-27"}, {"text": "includes"}, {"text": "17"}, {"text": "other"}, {"text": "countries"}, {"text": "."}, {"text": "Those"}, {"text": "countries"}, {"text": "--"}, {"text": "including"}, {"text": "Japan"}, {"text": ","}, {"text": "Italy"}, {"text": ","}, {"text": "Canada"}, {"text": ","}, {"text": "Greece"}, {"text": "and"}, {"text": "Spain"}, {"text": "--"}, {"text": "are"}, {"text": "still"}, {"text": "of"}, {"text": "some"}, {"text": "concern"}, {"text": "to"}, {"text": "the"}, {"text": "U.S."}, {"text": "but"}, {"text": "are"}, {"text": "deemed"}, {"text": "*-1"}, {"text": "to"}, {"text": "pose"}, {"text": "less-serious"}, {"text": "problems"}, {"text": "for"}, {"text": "American"}, {"text": "patent"}, {"text": "and"}, {"text": "copyright"}, {"text": "owners"}, {"text": "than"}, {"text": "those"}, {"text": "on"}, {"text": "the"}, {"text": "``"}, {"text": "priority"}, {"text": "''"}, {"text": "list"}, {"text": "."}, {"text": "Gary"}, {"text": "Hoffman"}, {"text": ","}, {"text": "a"}, {"text": "Washington"}, {"text": "lawyer"}, {"text": "specializing"}, {"text": "in"}, {"text": "intellectual-property"}, {"text": "cases"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "threat"}, {"text": "of"}, {"text": "U.S."}, {"text": "retaliation"}, {"text": ","}, {"text": "combined"}, {"text": "*"}, {"text": "with"}, {"text": "a"}, {"text": "growing"}, {"text": "recognition"}, {"text": "that"}, {"text": "*"}, {"text": "protecting"}, {"text": "intellectual"}, {"text": "property"}, {"text": "is"}, {"text": "in"}, {"text": "a"}, {"text": "country"}, {"text": "'s"}, {"text": "own"}, {"text": "interest"}, {"text": ","}, {"text": "prompted"}, {"text": "the"}, {"text": "improvements"}, {"text": "made"}, {"text": "*"}, {"text": "by"}, {"text": "South"}, {"text": "Korea"}, {"text": ","}, {"text": "Taiwan"}, {"text": "and"}, {"text": "Saudi"}, {"text": "Arabia"}, {"text": "."}, {"text": "``"}, {"text": "What"}, {"text": "this"}, {"text": "tells"}, {"text": "us"}, {"text": "*T*-28"}, {"text": "is"}, {"text": "that"}, {"text": "U.S."}, {"text": "trade"}, {"text": "law"}, {"text": "is"}, {"text": "working"}, {"text": ","}, {"text": "''"}, {"text": "he"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "."}, {"text": "He"}, {"text": "said"}, {"text": "0"}, {"text": "Mexico"}, {"text": "could"}, {"text": "be"}, {"text": "one"}, {"text": "of"}, {"text": "the"}, {"text": "next"}, {"text": "countries"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "to"}, {"text": "be"}, {"text": "removed"}, {"text": "*-2"}, {"text": "from"}, {"text": "the"}, {"text": "priority"}, {"text": "list"}, {"text": "because"}, {"text": "of"}, {"text": "its"}, {"text": "efforts"}, {"text": "*"}, {"text": "to"}, {"text": "craft"}, {"text": "a"}, {"text": "new"}, {"text": "patent"}, {"text": "law"}, {"text": "."}, {"text": "Mrs."}, {"text": "Hills"}, {"text": "said"}, {"text": "that"}, {"text": "the"}, {"text": "U.S."}, {"text": "is"}, {"text": "still"}, {"text": "concerned"}, {"text": "about"}, {"text": "``"}, {"text": "disturbing"}, {"text": "developments"}, {"text": "in"}, {"text": "Turkey"}, {"text": "and"}, {"text": "continuing"}, {"text": "slow"}, {"text": "progress"}, {"text": "in"}, {"text": "Malaysia"}, {"text": "."}, {"text": "''"}, {"text": "She"}, {"text": "did"}, {"text": "n't"}, {"text": "elaborate"}, {"text": ","}, {"text": "although"}, {"text": "earlier"}, {"text": "U.S."}, {"text": "trade"}, {"text": "reports"}, {"text": "have"}, {"text": "complained"}, {"text": "of"}, {"text": "videocassette"}, {"text": "piracy"}, {"text": "in"}, {"text": "Malaysia"}, {"text": "and"}, {"text": "disregard"}, {"text": "for"}, {"text": "U.S."}, {"text": "pharmaceutical"}, {"text": "patents"}, {"text": "in"}, {"text": "Turkey"}, {"text": "."}, {"text": "The"}, {"text": "1988"}, {"text": "trade"}, {"text": "act"}, {"text": "requires"}, {"text": "Mrs."}, {"text": "Hills"}, {"text": "to"}, {"text": "issue"}, {"text": "another"}, {"text": "review"}, {"text": "of"}, {"text": "the"}, {"text": "performance"}, {"text": "of"}, {"text": "these"}, {"text": "countries"}, {"text": "by"}, {"text": "April"}, {"text": "30"}, {"text": "."}, {"text": "So"}, {"text": "far"}, {"text": ","}, {"text": "Mrs."}, {"text": "Hills"}, {"text": "has"}, {"text": "n't"}, {"text": "deemed"}, {"text": "any"}, {"text": "cases"}, {"text": "bad"}, {"text": "enough"}, {"text": "*-1"}, {"text": "to"}, {"text": "merit"}, {"text": "an"}, {"text": "accelerated"}, {"text": "investigation"}, {"text": "under"}, {"text": "the"}, {"text": "so-called"}, {"text": "special"}, {"text": "301"}, {"text": "provision"}, {"text": "of"}, {"text": "the"}, {"text": "act"}, {"text": "."}, {"text": "Argentina"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "will"}, {"text": "ask"}, {"text": "creditor"}, {"text": "banks"}, {"text": "*-1"}, {"text": "to"}, {"text": "halve"}, {"text": "its"}, {"text": "foreign"}, {"text": "debt"}, {"text": "of"}, {"text": "$"}, {"text": "64"}, {"text": "billion"}, {"text": "*U*"}, {"text": "--"}, {"text": "the"}, {"text": "third-highest"}, {"text": "in"}, {"text": "the"}, {"text": "developing"}, {"text": "world"}, {"text": "."}, {"text": "The"}, {"text": "declaration"}, {"text": "by"}, {"text": "Economy"}, {"text": "Minister"}, {"text": "Nestor"}, {"text": "Rapanelli"}, {"text": "is"}, {"text": "believed"}, {"text": "*-1"}, {"text": "to"}, {"text": "be"}, {"text": "the"}, {"text": "first"}, {"text": "time"}, {"text": "0"}, {"text": "such"}, {"text": "an"}, {"text": "action"}, {"text": "has"}, {"text": "been"}, {"text": "called"}, {"text": "for"}, {"text": "*-3"}, {"text": "by"}, {"text": "an"}, {"text": "Argentine"}, {"text": "official"}, {"text": "of"}, {"text": "such"}, {"text": "stature"}, {"text": "*T*-2"}, {"text": "."}, {"text": "The"}, {"text": "Latin"}, {"text": "American"}, {"text": "nation"}, {"text": "has"}, {"text": "paid"}, {"text": "very"}, {"text": "little"}, {"text": "on"}, {"text": "its"}, {"text": "debt"}, {"text": "since"}, {"text": "early"}, {"text": "last"}, {"text": "year"}, {"text": "."}, {"text": "``"}, {"text": "Argentina"}, {"text": "aspires"}, {"text": "*-2"}, {"text": "to"}, {"text": "reach"}, {"text": "a"}, {"text": "reduction"}, {"text": "of"}, {"text": "50"}, {"text": "%"}, {"text": "in"}, {"text": "the"}, {"text": "value"}, {"text": "of"}, {"text": "its"}, {"text": "external"}, {"text": "debt"}, {"text": ","}, {"text": "''"}, {"text": "Mr."}, {"text": "Rapanelli"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "through"}, {"text": "his"}, {"text": "spokesman"}, {"text": ","}, {"text": "Miguel"}, {"text": "Alurralde"}, {"text": "."}, {"text": "Mr."}, {"text": "Rapanelli"}, {"text": "met"}, {"text": "in"}, {"text": "August"}, {"text": "with"}, {"text": "U.S."}, {"text": "Assistant"}, {"text": "Treasury"}, {"text": "Secretary"}, {"text": "David"}, {"text": "Mulford"}, {"text": "."}, {"text": "Argentine"}, {"text": "negotiator"}, {"text": "Carlos"}, {"text": "Carballo"}, {"text": "was"}, {"text": "in"}, {"text": "Washington"}, {"text": "and"}, {"text": "New"}, {"text": "York"}, {"text": "this"}, {"text": "week"}, {"text": "*-1"}, {"text": "to"}, {"text": "meet"}, {"text": "with"}, {"text": "banks"}, {"text": "."}, {"text": "Mr."}, {"text": "Rapanelli"}, {"text": "recently"}, {"text": "has"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "government"}, {"text": "of"}, {"text": "President"}, {"text": "Carlos"}, {"text": "Menem"}, {"text": ","}, {"text": "who"}, {"text": "*T*-29"}, {"text": "took"}, {"text": "office"}, {"text": "July"}, {"text": "8"}, {"text": ","}, {"text": "feels"}, {"text": "0"}, {"text": "a"}, {"text": "significant"}, {"text": "reduction"}, {"text": "of"}, {"text": "principal"}, {"text": "and"}, {"text": "interest"}, {"text": "is"}, {"text": "the"}, {"text": "only"}, {"text": "way"}, {"text": "0"}, {"text": "the"}, {"text": "debt"}, {"text": "problem"}, {"text": "may"}, {"text": "be"}, {"text": "solved"}, {"text": "*-31"}, {"text": "*T*-1"}, {"text": "."}, {"text": "But"}, {"text": "he"}, {"text": "has"}, {"text": "not"}, {"text": "said"}, {"text": "before"}, {"text": "that"}, {"text": "the"}, {"text": "country"}, {"text": "wants"}, {"text": "half"}, {"text": "the"}, {"text": "debt"}, {"text": "forgiven"}, {"text": "*-2"}, {"text": "."}, {"text": "-LRB-"}, {"text": "During"}, {"text": "its"}, {"text": "centennial"}, {"text": "year"}, {"text": ","}, {"text": "The"}, {"text": "Wall"}, {"text": "Street"}, {"text": "Journal"}, {"text": "will"}, {"text": "report"}, {"text": "events"}, {"text": "of"}, {"text": "the"}, {"text": "past"}, {"text": "century"}, {"text": "that"}, {"text": "*T*-30"}, {"text": "stand"}, {"text": "as"}, {"text": "milestones"}, {"text": "of"}, {"text": "American"}, {"text": "business"}, {"text": "history"}, {"text": "."}, {"text": "-RRB-"}, {"text": "THREE"}, {"text": "COMPUTERS"}, {"text": "THAT"}, {"text": "*T*-31"}, {"text": "CHANGED"}, {"text": "the"}, {"text": "face"}, {"text": "of"}, {"text": "personal"}, {"text": "computing"}, {"text": "were"}, {"text": "launched"}, {"text": "*-32"}, {"text": "in"}, {"text": "1977"}, {"text": "."}, {"text": "That"}, {"text": "year"}, {"text": "the"}, {"text": "Apple"}, {"text": "II"}, {"text": ","}, {"text": "Commodore"}, {"text": "Pet"}, {"text": "and"}, {"text": "Tandy"}, {"text": "TRS-80"}, {"text": "came"}, {"text": "to"}, {"text": "market"}, {"text": "."}, {"text": "The"}, {"text": "computers"}, {"text": "were"}, {"text": "crude"}, {"text": "by"}, {"text": "today"}, {"text": "'s"}, {"text": "standards"}, {"text": "."}, {"text": "Apple"}, {"text": "II"}, {"text": "owners"}, {"text": ","}, {"text": "for"}, {"text": "example"}, {"text": ","}, {"text": "had"}, {"text": "*-1"}, {"text": "to"}, {"text": "use"}, {"text": "their"}, {"text": "television"}, {"text": "sets"}, {"text": "as"}, {"text": "screens"}, {"text": "and"}, {"text": "stored"}, {"text": "data"}, {"text": "on"}, {"text": "audiocassettes"}, {"text": "."}, {"text": "But"}, {"text": "Apple"}, {"text": "II"}, {"text": "was"}, {"text": "a"}, {"text": "major"}, {"text": "advance"}, {"text": "from"}, {"text": "Apple"}, {"text": "I"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "was"}, {"text": "built"}, {"text": "*-33"}, {"text": "in"}, {"text": "a"}, {"text": "garage"}, {"text": "by"}, {"text": "Stephen"}, {"text": "Wozniak"}, {"text": "and"}, {"text": "Steven"}, {"text": "Jobs"}, {"text": "for"}, {"text": "hobbyists"}, {"text": "such"}, {"text": "as"}, {"text": "the"}, {"text": "Homebrew"}, {"text": "Computer"}, {"text": "Club"}, {"text": "."}, {"text": "In"}, {"text": "addition"}, {"text": ","}, {"text": "the"}, {"text": "Apple"}, {"text": "II"}, {"text": "was"}, {"text": "an"}, {"text": "affordable"}, {"text": "$"}, {"text": "1,298"}, {"text": "*U*"}, {"text": "."}, {"text": "*-1"}, {"text": "Crude"}, {"text": "as"}, {"text": "they"}, {"text": "were"}, {"text": "*?*"}, {"text": ","}, {"text": "these"}, {"text": "early"}, {"text": "PCs"}, {"text": "triggered"}, {"text": "explosive"}, {"text": "product"}, {"text": "development"}, {"text": "in"}, {"text": "desktop"}, {"text": "models"}, {"text": "for"}, {"text": "the"}, {"text": "home"}, {"text": "and"}, {"text": "office"}, {"text": "."}, {"text": "Big"}, {"text": "mainframe"}, {"text": "computers"}, {"text": "for"}, {"text": "business"}, {"text": "had"}, {"text": "been"}, {"text": "around"}, {"text": "for"}, {"text": "years"}, {"text": "."}, {"text": "But"}, {"text": "the"}, {"text": "new"}, {"text": "1977"}, {"text": "PCs"}, {"text": "--"}, {"text": "unlike"}, {"text": "earlier"}, {"text": "built-from-kit"}, {"text": "types"}, {"text": "such"}, {"text": "as"}, {"text": "the"}, {"text": "Altair"}, {"text": ","}, {"text": "Sol"}, {"text": "and"}, {"text": "IMSAI"}, {"text": "--"}, {"text": "had"}, {"text": "keyboards"}, {"text": "and"}, {"text": "could"}, {"text": "store"}, {"text": "about"}, {"text": "two"}, {"text": "pages"}, {"text": "of"}, {"text": "data"}, {"text": "in"}, {"text": "their"}, {"text": "memories"}, {"text": "."}, {"text": "Current"}, {"text": "PCs"}, {"text": "are"}, {"text": "more"}, {"text": "than"}, {"text": "50"}, {"text": "times"}, {"text": "faster"}, {"text": "and"}, {"text": "have"}, {"text": "memory"}, {"text": "capacity"}, {"text": "500"}, {"text": "times"}, {"text": "greater"}, {"text": "than"}, {"text": "their"}, {"text": "1977"}, {"text": "counterparts"}, {"text": "."}, {"text": "There"}, {"text": "were"}, {"text": "many"}, {"text": "pioneer"}, {"text": "PC"}, {"text": "contributors"}, {"text": "."}, {"text": "William"}, {"text": "Gates"}, {"text": "and"}, {"text": "Paul"}, {"text": "Allen"}, {"text": "in"}, {"text": "1975"}, {"text": "developed"}, {"text": "an"}, {"text": "early"}, {"text": "language-housekeeper"}, {"text": "system"}, {"text": "for"}, {"text": "PCs"}, {"text": ","}, {"text": "and"}, {"text": "Gates"}, {"text": "became"}, {"text": "an"}, {"text": "industry"}, {"text": "billionaire"}, {"text": "six"}, {"text": "years"}, {"text": "after"}, {"text": "IBM"}, {"text": "adapted"}, {"text": "one"}, {"text": "of"}, {"text": "these"}, {"text": "versions"}, {"text": "in"}, {"text": "1981"}, {"text": "."}, {"text": "Alan"}, {"text": "F."}, {"text": "Shugart"}, {"text": ","}, {"text": "currently"}, {"text": "chairman"}, {"text": "of"}, {"text": "Seagate"}, {"text": "Technology"}, {"text": ","}, {"text": "led"}, {"text": "the"}, {"text": "team"}, {"text": "that"}, {"text": "*T*-32"}, {"text": "developed"}, {"text": "the"}, {"text": "disk"}, {"text": "drives"}, {"text": "for"}, {"text": "PCs"}, {"text": "."}, {"text": "Dennis"}, {"text": "Hayes"}, {"text": "and"}, {"text": "Dale"}, {"text": "Heatherington"}, {"text": ","}, {"text": "two"}, {"text": "Atlanta"}, {"text": "engineers"}, {"text": ","}, {"text": "were"}, {"text": "co-developers"}, {"text": "of"}, {"text": "the"}, {"text": "internal"}, {"text": "modems"}, {"text": "that"}, {"text": "*T*-33"}, {"text": "allow"}, {"text": "PCs"}, {"text": "to"}, {"text": "share"}, {"text": "data"}, {"text": "via"}, {"text": "the"}, {"text": "telephone"}, {"text": "."}, {"text": "IBM"}, {"text": ","}, {"text": "the"}, {"text": "world"}, {"text": "leader"}, {"text": "in"}, {"text": "computers"}, {"text": ","}, {"text": "did"}, {"text": "n't"}, {"text": "offer"}, {"text": "its"}, {"text": "first"}, {"text": "PC"}, {"text": "until"}, {"text": "August"}, {"text": "1981"}, {"text": "as"}, {"text": "many"}, {"text": "other"}, {"text": "companies"}, {"text": "entered"}, {"text": "the"}, {"text": "market"}, {"text": "."}, {"text": "Today"}, {"text": ","}, {"text": "PC"}, {"text": "shipments"}, {"text": "annually"}, {"text": "total"}, {"text": "some"}, {"text": "$"}, {"text": "38.3"}, {"text": "billion"}, {"text": "*U*"}, {"text": "world-wide"}, {"text": "."}, {"text": "F.H."}, {"text": "Faulding"}, {"text": "&"}, {"text": "Co."}, {"text": ","}, {"text": "an"}, {"text": "Australian"}, {"text": "pharmaceuticals"}, {"text": "company"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "its"}, {"text": "Moleculon"}, {"text": "Inc."}, {"text": "affiliate"}, {"text": "acquired"}, {"text": "Kalipharma"}, {"text": "Inc."}, {"text": "for"}, {"text": "$"}, {"text": "23"}, {"text": "million"}, {"text": "*U*"}, {"text": "."}, {"text": "Kalipharma"}, {"text": "is"}, {"text": "a"}, {"text": "New"}, {"text": "Jersey-based"}, {"text": "pharmaceuticals"}, {"text": "concern"}, {"text": "that"}, {"text": "*T*-34"}, {"text": "sells"}, {"text": "products"}, {"text": "under"}, {"text": "the"}, {"text": "Purepac"}, {"text": "label"}, {"text": "."}, {"text": "Faulding"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "owns"}, {"text": "33"}, {"text": "%"}, {"text": "of"}, {"text": "Moleculon"}, {"text": "'s"}, {"text": "voting"}, {"text": "stock"}, {"text": "and"}, {"text": "has"}, {"text": "an"}, {"text": "agreement"}, {"text": "*"}, {"text": "to"}, {"text": "acquire"}, {"text": "an"}, {"text": "additional"}, {"text": "19"}, {"text": "%"}, {"text": "."}, {"text": "That"}, {"text": "stake"}, {"text": ","}, {"text": "together"}, {"text": "with"}, {"text": "its"}, {"text": "convertible"}, {"text": "preferred"}, {"text": "stock"}, {"text": "holdings"}, {"text": ","}, {"text": "gives"}, {"text": "Faulding"}, {"text": "the"}, {"text": "right"}, {"text": "*"}, {"text": "to"}, {"text": "increase"}, {"text": "its"}, {"text": "interest"}, {"text": "to"}, {"text": "70"}, {"text": "%"}, {"text": "of"}, {"text": "Moleculon"}, {"text": "'s"}, {"text": "voting"}, {"text": "stock"}, {"text": "."}, {"text": "Oil"}, {"text": "production"}, {"text": "from"}, {"text": "Australia"}, {"text": "'s"}, {"text": "Bass"}, {"text": "Strait"}, {"text": "fields"}, {"text": "will"}, {"text": "be"}, {"text": "raised"}, {"text": "*-34"}, {"text": "by"}, {"text": "11,000"}, {"text": "barrels"}, {"text": "a"}, {"text": "day"}, {"text": "to"}, {"text": "about"}, {"text": "321,000"}, {"text": "barrels"}, {"text": "with"}, {"text": "the"}, {"text": "launch"}, {"text": "of"}, {"text": "the"}, {"text": "Whiting"}, {"text": "field"}, {"text": ","}, {"text": "the"}, {"text": "first"}, {"text": "of"}, {"text": "five"}, {"text": "small"}, {"text": "fields"}, {"text": "scheduled"}, {"text": "*"}, {"text": "to"}, {"text": "be"}, {"text": "brought"}, {"text": "*-35"}, {"text": "into"}, {"text": "production"}, {"text": "before"}, {"text": "the"}, {"text": "end"}, {"text": "of"}, {"text": "1990"}, {"text": "."}, {"text": "Esso"}, {"text": "Australia"}, {"text": "Ltd."}, {"text": ","}, {"text": "a"}, {"text": "unit"}, {"text": "of"}, {"text": "New"}, {"text": "York-based"}, {"text": "Exxon"}, {"text": "Corp."}, {"text": ","}, {"text": "and"}, {"text": "Broken"}, {"text": "Hill"}, {"text": "Pty."}, {"text": "operate"}, {"text": "the"}, {"text": "fields"}, {"text": "in"}, {"text": "a"}, {"text": "joint"}, {"text": "venture"}, {"text": "."}, {"text": "Esso"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "Whiting"}, {"text": "field"}, {"text": "started"}, {"text": "production"}, {"text": "Tuesday"}, {"text": "."}, {"text": "Output"}, {"text": "will"}, {"text": "be"}, {"text": "gradually"}, {"text": "increased"}, {"text": "*-1"}, {"text": "until"}, {"text": "it"}, {"text": "reaches"}, {"text": "about"}, {"text": "11,000"}, {"text": "barrels"}, {"text": "a"}, {"text": "day"}, {"text": "."}, {"text": "The"}, {"text": "field"}, {"text": "has"}, {"text": "reserves"}, {"text": "of"}, {"text": "21"}, {"text": "million"}, {"text": "barrels"}, {"text": "."}, {"text": "Reserves"}, {"text": "for"}, {"text": "the"}, {"text": "five"}, {"text": "new"}, {"text": "fields"}, {"text": "total"}, {"text": "50"}, {"text": "million"}, {"text": "barrels"}, {"text": "."}, {"text": "The"}, {"text": "Perch"}, {"text": "and"}, {"text": "Dolphin"}, {"text": "fields"}, {"text": "are"}, {"text": "expected"}, {"text": "*-3"}, {"text": "to"}, {"text": "start"}, {"text": "*-1"}, {"text": "producing"}, {"text": "early"}, {"text": "next"}, {"text": "year"}, {"text": ","}, {"text": "and"}, {"text": "the"}, {"text": "Seahorse"}, {"text": "and"}, {"text": "Tarwhine"}, {"text": "fields"}, {"text": "later"}, {"text": "next"}, {"text": "year"}, {"text": "."}, {"text": "Esso"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "fields"}, {"text": "were"}, {"text": "developed"}, {"text": "*-36"}, {"text": "after"}, {"text": "the"}, {"text": "Australian"}, {"text": "government"}, {"text": "decided"}, {"text": "in"}, {"text": "1987"}, {"text": "*-2"}, {"text": "to"}, {"text": "make"}, {"text": "the"}, {"text": "first"}, {"text": "30"}, {"text": "million"}, {"text": "barrels"}, {"text": "from"}, {"text": "new"}, {"text": "fields"}, {"text": "free"}, {"text": "of"}, {"text": "excise"}, {"text": "tax"}, {"text": "."}, {"text": "R.P."}, {"text": "Scherer"}, {"text": "Corp."}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "completed"}, {"text": "the"}, {"text": "$"}, {"text": "10.2"}, {"text": "million"}, {"text": "*U*"}, {"text": "sale"}, {"text": "of"}, {"text": "its"}, {"text": "Southern"}, {"text": "Optical"}, {"text": "subsidiary"}, {"text": "to"}, {"text": "a"}, {"text": "group"}, {"text": "led"}, {"text": "*"}, {"text": "by"}, {"text": "the"}, {"text": "unit"}, {"text": "'s"}, {"text": "president"}, {"text": ","}, {"text": "Thomas"}, {"text": "R."}, {"text": "Sloan"}, {"text": ","}, {"text": "and"}, {"text": "other"}, {"text": "managers"}, {"text": "."}, {"text": "Following"}, {"text": "the"}, {"text": "acquisition"}, {"text": "of"}, {"text": "R.P."}, {"text": "Scherer"}, {"text": "by"}, {"text": "a"}, {"text": "buy-out"}, {"text": "group"}, {"text": "led"}, {"text": "*"}, {"text": "by"}, {"text": "Shearson"}, {"text": "Lehman"}, {"text": "Hutton"}, {"text": "earlier"}, {"text": "this"}, {"text": "year"}, {"text": ","}, {"text": "the"}, {"text": "maker"}, {"text": "of"}, {"text": "gelatin"}, {"text": "capsules"}, {"text": "decided"}, {"text": "*-1"}, {"text": "to"}, {"text": "divest"}, {"text": "itself"}, {"text": "of"}, {"text": "certain"}, {"text": "of"}, {"text": "its"}, {"text": "non-encapsulating"}, {"text": "businesses"}, {"text": "."}, {"text": "The"}, {"text": "sale"}, {"text": "of"}, {"text": "Southern"}, {"text": "Optical"}, {"text": "is"}, {"text": "a"}, {"text": "part"}, {"text": "of"}, {"text": "the"}, {"text": "program"}, {"text": "."}, {"text": "The"}, {"text": "White"}, {"text": "House"}, {"text": "said"}, {"text": "0"}, {"text": "President"}, {"text": "Bush"}, {"text": "has"}, {"text": "approved"}, {"text": "duty-free"}, {"text": "treatment"}, {"text": "for"}, {"text": "imports"}, {"text": "of"}, {"text": "certain"}, {"text": "types"}, {"text": "of"}, {"text": "watches"}, {"text": "that"}, {"text": "*T*-35"}, {"text": "are"}, {"text": "n't"}, {"text": "produced"}, {"text": "*-1"}, {"text": "in"}, {"text": "``"}, {"text": "significant"}, {"text": "quantities"}, {"text": "''"}, {"text": "in"}, {"text": "the"}, {"text": "U.S."}, {"text": ","}, {"text": "the"}, {"text": "Virgin"}, {"text": "Islands"}, {"text": "and"}, {"text": "other"}, {"text": "U.S."}, {"text": "possessions"}, {"text": "."}, {"text": "The"}, {"text": "action"}, {"text": "came"}, {"text": "in"}, {"text": "response"}, {"text": "to"}, {"text": "a"}, {"text": "petition"}, {"text": "filed"}, {"text": "*"}, {"text": "by"}, {"text": "Timex"}, {"text": "Inc."}, {"text": "for"}, {"text": "changes"}, {"text": "in"}, {"text": "the"}, {"text": "U.S."}, {"text": "Generalized"}, {"text": "System"}, {"text": "of"}, {"text": "Preferences"}, {"text": "for"}, {"text": "imports"}, {"text": "from"}, {"text": "developing"}, {"text": "nations"}, {"text": "."}, {"text": "Previously"}, {"text": ","}, {"text": "watch"}, {"text": "imports"}, {"text": "were"}, {"text": "denied"}, {"text": "*-37"}, {"text": "such"}, {"text": "duty-free"}, {"text": "treatment"}, {"text": "."}, {"text": "Timex"}, {"text": "had"}, {"text": "requested"}, {"text": "duty-free"}, {"text": "treatment"}, {"text": "for"}, {"text": "many"}, {"text": "types"}, {"text": "of"}, {"text": "watches"}, {"text": ","}, {"text": "covered"}, {"text": "*"}, {"text": "by"}, {"text": "58"}, {"text": "different"}, {"text": "U.S."}, {"text": "tariff"}, {"text": "classifications"}, {"text": "."}, {"text": "The"}, {"text": "White"}, {"text": "House"}, {"text": "said"}, {"text": "0"}, {"text": "Mr."}, {"text": "Bush"}, {"text": "decided"}, {"text": "*-1"}, {"text": "to"}, {"text": "grant"}, {"text": "duty-free"}, {"text": "status"}, {"text": "for"}, {"text": "18"}, {"text": "categories"}, {"text": ","}, {"text": "but"}, {"text": "turned"}, {"text": "down"}, {"text": "such"}, {"text": "treatment"}, {"text": "for"}, {"text": "other"}, {"text": "types"}, {"text": "of"}, {"text": "watches"}, {"text": "``"}, {"text": "because"}, {"text": "of"}, {"text": "the"}, {"text": "potential"}, {"text": "for"}, {"text": "material"}, {"text": "injury"}, {"text": "to"}, {"text": "watch"}, {"text": "producers"}, {"text": "located"}, {"text": "*"}, {"text": "in"}, {"text": "the"}, {"text": "U.S."}, {"text": "and"}, {"text": "the"}, {"text": "Virgin"}, {"text": "Islands"}, {"text": "."}, {"text": "''"}, {"text": "Timex"}, {"text": "is"}, {"text": "a"}, {"text": "major"}, {"text": "U.S."}, {"text": "producer"}, {"text": "and"}, {"text": "seller"}, {"text": "of"}, {"text": "watches"}, {"text": ","}, {"text": "including"}, {"text": "low-priced"}, {"text": "battery-operated"}, {"text": "watches"}, {"text": "assembled"}, {"text": "*"}, {"text": "in"}, {"text": "the"}, {"text": "Philippines"}, {"text": "and"}, {"text": "other"}, {"text": "developing"}, {"text": "nations"}, {"text": "covered"}, {"text": "*"}, {"text": "by"}, {"text": "the"}, {"text": "U.S."}, {"text": "tariff"}, {"text": "preferences"}, {"text": "."}, {"text": "U.S."}, {"text": "trade"}, {"text": "officials"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "Philippines"}, {"text": "and"}, {"text": "Thailand"}, {"text": "would"}, {"text": "be"}, {"text": "the"}, {"text": "main"}, {"text": "beneficiaries"}, {"text": "of"}, {"text": "the"}, {"text": "president"}, {"text": "'s"}, {"text": "action"}, {"text": "."}, {"text": "Imports"}, {"text": "of"}, {"text": "the"}, {"text": "types"}, {"text": "of"}, {"text": "watches"}, {"text": "that"}, {"text": "*T*-36"}, {"text": "now"}, {"text": "will"}, {"text": "be"}, {"text": "eligible"}, {"text": "for"}, {"text": "duty-free"}, {"text": "treatment"}, {"text": "totaled"}, {"text": "about"}, {"text": "$"}, {"text": "37.3"}, {"text": "million"}, {"text": "*U*"}, {"text": "*ICH*-1"}, {"text": "in"}, {"text": "1988"}, {"text": ","}, {"text": "a"}, {"text": "relatively"}, {"text": "small"}, {"text": "share"}, {"text": "of"}, {"text": "the"}, {"text": "$"}, {"text": "1.5"}, {"text": "billion"}, {"text": "*U*"}, {"text": "in"}, {"text": "U.S."}, {"text": "watch"}, {"text": "imports"}, {"text": "that"}, {"text": "year"}, {"text": ","}, {"text": "according"}, {"text": "to"}, {"text": "an"}, {"text": "aide"}, {"text": "to"}, {"text": "U.S."}, {"text": "Trade"}, {"text": "Representative"}, {"text": "Carla"}, {"text": "Hills"}, {"text": "."}, {"text": "Magna"}, {"text": "International"}, {"text": "Inc."}, {"text": "'s"}, {"text": "chief"}, {"text": "financial"}, {"text": "officer"}, {"text": ","}, {"text": "James"}, {"text": "McAlpine"}, {"text": ","}, {"text": "resigned"}, {"text": "and"}, {"text": "its"}, {"text": "chairman"}, {"text": ","}, {"text": "Frank"}, {"text": "Stronach"}, {"text": ","}, {"text": "is"}, {"text": "stepping"}, {"text": "in"}, {"text": "*-1"}, {"text": "to"}, {"text": "help"}, {"text": "turn"}, {"text": "the"}, {"text": "automotive-parts"}, {"text": "manufacturer"}, {"text": "around"}, {"text": ","}, {"text": "the"}, {"text": "company"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "."}, {"text": "Mr."}, {"text": "Stronach"}, {"text": "will"}, {"text": "direct"}, {"text": "an"}, {"text": "effort"}, {"text": "*"}, {"text": "to"}, {"text": "reduce"}, {"text": "overhead"}, {"text": "and"}, {"text": "curb"}, {"text": "capital"}, {"text": "spending"}, {"text": "``"}, {"text": "until"}, {"text": "a"}, {"text": "more"}, {"text": "satisfactory"}, {"text": "level"}, {"text": "of"}, {"text": "profit"}, {"text": "is"}, {"text": "achieved"}, {"text": "and"}, {"text": "maintained"}, {"text": "*-1"}, {"text": ","}, {"text": "''"}, {"text": "Magna"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "."}, {"text": "Stephen"}, {"text": "Akerfeldt"}, {"text": ","}, {"text": "currently"}, {"text": "vice"}, {"text": "president"}, {"text": "finance"}, {"text": ","}, {"text": "will"}, {"text": "succeed"}, {"text": "Mr."}, {"text": "McAlpine"}, {"text": "."}, {"text": "An"}, {"text": "ambitious"}, {"text": "expansion"}, {"text": "has"}, {"text": "left"}, {"text": "Magna"}, {"text": "with"}, {"text": "excess"}, {"text": "capacity"}, {"text": "and"}, {"text": "a"}, {"text": "heavy"}, {"text": "debt"}, {"text": "load"}, {"text": "as"}, {"text": "the"}, {"text": "automotive"}, {"text": "industry"}, {"text": "enters"}, {"text": "a"}, {"text": "downturn"}, {"text": "."}, {"text": "The"}, {"text": "company"}, {"text": "has"}, {"text": "reported"}, {"text": "declines"}, {"text": "in"}, {"text": "operating"}, {"text": "profit"}, {"text": "in"}, {"text": "each"}, {"text": "of"}, {"text": "the"}, {"text": "past"}, {"text": "three"}, {"text": "years"}, {"text": ","}, {"text": "despite"}, {"text": "steady"}, {"text": "sales"}, {"text": "growth"}, {"text": "."}, {"text": "Magna"}, {"text": "recently"}, {"text": "cut"}, {"text": "its"}, {"text": "quarterly"}, {"text": "dividend"}, {"text": "in"}, {"text": "half"}, {"text": "and"}, {"text": "the"}, {"text": "company"}, {"text": "'s"}, {"text": "Class"}, {"text": "A"}, {"text": "shares"}, {"text": "are"}, {"text": "wallowing"}, {"text": "far"}, {"text": "below"}, {"text": "their"}, {"text": "52-week"}, {"text": "high"}, {"text": "of"}, {"text": "16.125"}, {"text": "Canadian"}, {"text": "dollars"}, {"text": "-LRB-"}, {"text": "US$"}, {"text": "13.73"}, {"text": "*U*"}, {"text": "-RRB-"}, {"text": "."}, {"text": "On"}, {"text": "the"}, {"text": "Toronto"}, {"text": "Stock"}, {"text": "Exchange"}, {"text": "yesterday"}, {"text": ","}, {"text": "Magna"}, {"text": "shares"}, {"text": "closed"}, {"text": "up"}, {"text": "37.5"}, {"text": "Canadian"}, {"text": "cents"}, {"text": "to"}, {"text": "C$"}, {"text": "9.625"}, {"text": "*U*"}, {"text": "."}, {"text": "Mr."}, {"text": "Stronach"}, {"text": ","}, {"text": "founder"}, {"text": "and"}, {"text": "controlling"}, {"text": "shareholder"}, {"text": "of"}, {"text": "Magna"}, {"text": ","}, {"text": "resigned"}, {"text": "as"}, {"text": "chief"}, {"text": "executive"}, {"text": "officer"}, {"text": "last"}, {"text": "year"}, {"text": "*-1"}, {"text": "to"}, {"text": "seek"}, {"text": ","}, {"text": "unsuccessfully"}, {"text": ","}, {"text": "a"}, {"text": "seat"}, {"text": "in"}, {"text": "Canada"}, {"text": "'s"}, {"text": "Parliament"}, {"text": "."}, {"text": "Analysts"}, {"text": "said"}, {"text": "0"}, {"text": "Mr."}, {"text": "Stronach"}, {"text": "wants"}, {"text": "*-1"}, {"text": "to"}, {"text": "resume"}, {"text": "a"}, {"text": "more"}, {"text": "influential"}, {"text": "role"}, {"text": "in"}, {"text": "*"}, {"text": "running"}, {"text": "the"}, {"text": "company"}, {"text": "."}, {"text": "They"}, {"text": "expect"}, {"text": "him"}, {"text": "to"}, {"text": "cut"}, {"text": "costs"}, {"text": "throughout"}, {"text": "the"}, {"text": "organization"}, {"text": "."}, {"text": "The"}, {"text": "company"}, {"text": "said"}, {"text": "0"}, {"text": "Mr."}, {"text": "Stronach"}, {"text": "will"}, {"text": "personally"}, {"text": "direct"}, {"text": "the"}, {"text": "restructuring"}, {"text": ","}, {"text": "*-1"}, {"text": "assisted"}, {"text": "*-2"}, {"text": "by"}, {"text": "Manfred"}, {"text": "Gingl"}, {"text": ","}, {"text": "president"}, {"text": "and"}, {"text": "chief"}, {"text": "executive"}, {"text": "."}, {"text": "Neither"}, {"text": "they"}, {"text": "nor"}, {"text": "Mr."}, {"text": "McAlpine"}, {"text": "could"}, {"text": "be"}, {"text": "reached"}, {"text": "*-38"}, {"text": "for"}, {"text": "comment"}, {"text": "."}, {"text": "Magna"}, {"text": "said"}, {"text": "0"}, {"text": "Mr."}, {"text": "McAlpine"}, {"text": "resigned"}, {"text": "*-1"}, {"text": "to"}, {"text": "pursue"}, {"text": "a"}, {"text": "consulting"}, {"text": "career"}, {"text": ","}, {"text": "with"}, {"text": "Magna"}, {"text": "as"}, {"text": "one"}, {"text": "of"}, {"text": "his"}, {"text": "clients"}, {"text": "."}, {"text": "Lord"}, {"text": "Chilver"}, {"text": ","}, {"text": "63-year-old"}, {"text": "chairman"}, {"text": "of"}, {"text": "English"}, {"text": "China"}, {"text": "Clays"}, {"text": "PLC"}, {"text": ","}, {"text": "was"}, {"text": "named"}, {"text": "*-39"}, {"text": "a"}, {"text": "nonexecutive"}, {"text": "director"}, {"text": "of"}, {"text": "this"}, {"text": "British"}, {"text": "chemical"}, {"text": "company"}, {"text": "."}, {"text": "Japanese"}, {"text": "investors"}, {"text": "nearly"}, {"text": "single-handedly"}, {"text": "bought"}, {"text": "up"}, {"text": "two"}, {"text": "new"}, {"text": "mortgage"}, {"text": "securities-based"}, {"text": "mutual"}, {"text": "funds"}, {"text": "totaling"}, {"text": "$"}, {"text": "701"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "the"}, {"text": "U.S."}, {"text": "Federal"}, {"text": "National"}, {"text": "Mortgage"}, {"text": "Association"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "The"}, {"text": "purchases"}, {"text": "show"}, {"text": "the"}, {"text": "strong"}, {"text": "interest"}, {"text": "of"}, {"text": "Japanese"}, {"text": "investors"}, {"text": "in"}, {"text": "U.S."}, {"text": "mortgage-based"}, {"text": "instruments"}, {"text": ","}, {"text": "Fannie"}, {"text": "Mae"}, {"text": "'s"}, {"text": "chairman"}, {"text": ","}, {"text": "David"}, {"text": "O."}, {"text": "Maxwell"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "at"}, {"text": "a"}, {"text": "news"}, {"text": "conference"}, {"text": "."}, {"text": "He"}, {"text": "said"}, {"text": "0"}, {"text": "more"}, {"text": "than"}, {"text": "90"}, {"text": "%"}, {"text": "of"}, {"text": "the"}, {"text": "funds"}, {"text": "were"}, {"text": "placed"}, {"text": "*-40"}, {"text": "with"}, {"text": "Japanese"}, {"text": "institutional"}, {"text": "investors"}, {"text": "."}, {"text": "The"}, {"text": "rest"}, {"text": "went"}, {"text": "to"}, {"text": "investors"}, {"text": "from"}, {"text": "France"}, {"text": "and"}, {"text": "Hong"}, {"text": "Kong"}, {"text": "."}, {"text": "Earlier"}, {"text": "this"}, {"text": "year"}, {"text": ","}, {"text": "Japanese"}, {"text": "investors"}, {"text": "snapped"}, {"text": "up"}, {"text": "a"}, {"text": "similar"}, {"text": ","}, {"text": "$"}, {"text": "570"}, {"text": "million"}, {"text": "*U*"}, {"text": "mortgage-backed"}, {"text": "securities"}, {"text": "mutual"}, {"text": "fund"}, {"text": "."}, {"text": "That"}, {"text": "fund"}, {"text": "was"}, {"text": "put"}, {"text": "*-41"}, {"text": "together"}, {"text": "by"}, {"text": "Blackstone"}, {"text": "Group"}, {"text": ","}, {"text": "a"}, {"text": "New"}, {"text": "York"}, {"text": "investment"}, {"text": "bank"}, {"text": "."}, {"text": "The"}, {"text": "latest"}, {"text": "two"}, {"text": "funds"}, {"text": "were"}, {"text": "assembled"}, {"text": "*-42"}, {"text": "jointly"}, {"text": "by"}, {"text": "Goldman"}, {"text": ","}, {"text": "Sachs"}, {"text": "&"}, {"text": "Co."}, {"text": "of"}, {"text": "the"}, {"text": "U.S."}, {"text": "and"}, {"text": "Japan"}, {"text": "'s"}, {"text": "Daiwa"}, {"text": "Securities"}, {"text": "Co"}, {"text": "."}, {"text": "The"}, {"text": "new"}, {"text": ","}, {"text": "seven-year"}, {"text": "funds"}, {"text": "--"}, {"text": "one"}, {"text": "offering"}, {"text": "a"}, {"text": "fixed-rate"}, {"text": "return"}, {"text": "and"}, {"text": "the"}, {"text": "other"}, {"text": "with"}, {"text": "a"}, {"text": "floating-rate"}, {"text": "return"}, {"text": "linked"}, {"text": "*"}, {"text": "to"}, {"text": "the"}, {"text": "London"}, {"text": "interbank"}, {"text": "offered"}, {"text": "rate"}, {"text": "--"}, {"text": "offer"}, {"text": "two"}, {"text": "key"}, {"text": "advantages"}, {"text": "to"}, {"text": "Japanese"}, {"text": "investors"}, {"text": "."}, {"text": "First"}, {"text": ","}, {"text": "they"}, {"text": "are"}, {"text": "designed"}, {"text": "*-1"}, {"text": "to"}, {"text": "eliminate"}, {"text": "the"}, {"text": "risk"}, {"text": "of"}, {"text": "prepayment"}, {"text": "--"}, {"text": "mortgage-backed"}, {"text": "securities"}, {"text": "can"}, {"text": "be"}, {"text": "retired"}, {"text": "*-43"}, {"text": "early"}, {"text": "if"}, {"text": "interest"}, {"text": "rates"}, {"text": "decline"}, {"text": ","}, {"text": "and"}, {"text": "such"}, {"text": "prepayment"}, {"text": "forces"}, {"text": "investors"}, {"text": "to"}, {"text": "redeploy"}, {"text": "their"}, {"text": "money"}, {"text": "at"}, {"text": "lower"}, {"text": "rates"}, {"text": "."}, {"text": "Second"}, {"text": ","}, {"text": "they"}, {"text": "channel"}, {"text": "monthly"}, {"text": "mortgage"}, {"text": "payments"}, {"text": "into"}, {"text": "semiannual"}, {"text": "payments"}, {"text": ","}, {"text": "*-1"}, {"text": "reducing"}, {"text": "the"}, {"text": "administrative"}, {"text": "burden"}, {"text": "on"}, {"text": "investors"}, {"text": "."}, {"text": "By"}, {"text": "*"}, {"text": "addressing"}, {"text": "those"}, {"text": "problems"}, {"text": ","}, {"text": "Mr."}, {"text": "Maxwell"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": ","}, {"text": "the"}, {"text": "new"}, {"text": "funds"}, {"text": "have"}, {"text": "become"}, {"text": "``"}, {"text": "extremely"}, {"text": "attractive"}, {"text": "to"}, {"text": "Japanese"}, {"text": "and"}, {"text": "other"}, {"text": "investors"}, {"text": "outside"}, {"text": "the"}, {"text": "U.S."}, {"text": "."}, {"text": "''"}, {"text": "Such"}, {"text": "devices"}, {"text": "have"}, {"text": "boosted"}, {"text": "Japanese"}, {"text": "investment"}, {"text": "in"}, {"text": "mortgage-backed"}, {"text": "securities"}, {"text": "to"}, {"text": "more"}, {"text": "than"}, {"text": "1"}, {"text": "%"}, {"text": "of"}, {"text": "the"}, {"text": "$"}, {"text": "900"}, {"text": "billion"}, {"text": "*U*"}, {"text": "in"}, {"text": "such"}, {"text": "instruments"}, {"text": "outstanding"}, {"text": ","}, {"text": "and"}, {"text": "their"}, {"text": "purchases"}, {"text": "are"}, {"text": "growing"}, {"text": "at"}, {"text": "a"}, {"text": "rapid"}, {"text": "rate"}, {"text": "."}, {"text": "They"}, {"text": "also"}, {"text": "have"}, {"text": "become"}, {"text": "large"}, {"text": "purchasers"}, {"text": "of"}, {"text": "Fannie"}, {"text": "Mae"}, {"text": "'s"}, {"text": "corporate"}, {"text": "debt"}, {"text": ","}, {"text": "*-2"}, {"text": "buying"}, {"text": "$"}, {"text": "2.4"}, {"text": "billion"}, {"text": "*U*"}, {"text": "in"}, {"text": "Fannie"}, {"text": "Mae"}, {"text": "bonds"}, {"text": "during"}, {"text": "the"}, {"text": "first"}, {"text": "nine"}, {"text": "months"}, {"text": "of"}, {"text": "the"}, {"text": "year"}, {"text": ","}, {"text": "or"}, {"text": "almost"}, {"text": "a"}, {"text": "tenth"}, {"text": "of"}, {"text": "the"}, {"text": "total"}, {"text": "amount"}, {"text": "issued"}, {"text": "*"}, {"text": "."}, {"text": "James"}, {"text": "L."}, {"text": "Pate"}, {"text": ","}, {"text": "54-year-old"}, {"text": "executive"}, {"text": "vice"}, {"text": "president"}, {"text": ","}, {"text": "was"}, {"text": "named"}, {"text": "*-44"}, {"text": "a"}, {"text": "director"}, {"text": "of"}, {"text": "this"}, {"text": "oil"}, {"text": "concern"}, {"text": ","}, {"text": "*"}, {"text": "expanding"}, {"text": "the"}, {"text": "board"}, {"text": "to"}, {"text": "14"}, {"text": "members"}, {"text": "."}, {"text": "LTV"}, {"text": "Corp."}, {"text": "said"}, {"text": "0"}, {"text": "a"}, {"text": "federal"}, {"text": "bankruptcy"}, {"text": "court"}, {"text": "judge"}, {"text": "agreed"}, {"text": "*-1"}, {"text": "to"}, {"text": "extend"}, {"text": "until"}, {"text": "March"}, {"text": "8"}, {"text": ","}, {"text": "1990"}, {"text": ","}, {"text": "the"}, {"text": "period"}, {"text": "in"}, {"text": "which"}, {"text": "the"}, {"text": "steel"}, {"text": ","}, {"text": "aerospace"}, {"text": "and"}, {"text": "energy"}, {"text": "products"}, {"text": "company"}, {"text": "has"}, {"text": "the"}, {"text": "exclusive"}, {"text": "right"}, {"text": "*"}, {"text": "to"}, {"text": "file"}, {"text": "a"}, {"text": "reorganization"}, {"text": "plan"}, {"text": "*T*-2"}, {"text": "."}, {"text": "The"}, {"text": "company"}, {"text": "is"}, {"text": "operating"}, {"text": "under"}, {"text": "Chapter"}, {"text": "11"}, {"text": "of"}, {"text": "the"}, {"text": "federal"}, {"text": "Bankruptcy"}, {"text": "Code"}, {"text": ","}, {"text": "*"}, {"text": "giving"}, {"text": "it"}, {"text": "court"}, {"text": "protection"}, {"text": "from"}, {"text": "creditors"}, {"text": "'"}, {"text": "lawsuits"}, {"text": "while"}, {"text": "it"}, {"text": "attempts"}, {"text": "*-1"}, {"text": "to"}, {"text": "work"}, {"text": "out"}, {"text": "a"}, {"text": "plan"}, {"text": "*"}, {"text": "to"}, {"text": "pay"}, {"text": "its"}, {"text": "debts"}, {"text": "."}, {"text": "Italian"}, {"text": "chemical"}, {"text": "giant"}, {"text": "Montedison"}, {"text": "S.p.A."}, {"text": ","}, {"text": "through"}, {"text": "its"}, {"text": "Montedison"}, {"text": "Acquisition"}, {"text": "N.V."}, {"text": "indirect"}, {"text": "unit"}, {"text": ","}, {"text": "began"}, {"text": "its"}, {"text": "$"}, {"text": "37-a-share"}, {"text": "*U*"}, {"text": "tender"}, {"text": "offer"}, {"text": "for"}, {"text": "all"}, {"text": "the"}, {"text": "common"}, {"text": "shares"}, {"text": "outstanding"}, {"text": "of"}, {"text": "Erbamont"}, {"text": "N.V."}, {"text": ","}, {"text": "a"}, {"text": "maker"}, {"text": "of"}, {"text": "pharmaceuticals"}, {"text": "incorporated"}, {"text": "*"}, {"text": "in"}, {"text": "the"}, {"text": "Netherlands"}, {"text": "."}, {"text": "The"}, {"text": "offer"}, {"text": ","}, {"text": "advertised"}, {"text": "*"}, {"text": "in"}, {"text": "today"}, {"text": "'s"}, {"text": "editions"}, {"text": "of"}, {"text": "The"}, {"text": "Wall"}, {"text": "Street"}, {"text": "Journal"}, {"text": ","}, {"text": "is"}, {"text": "scheduled"}, {"text": "*-1"}, {"text": "to"}, {"text": "expire"}, {"text": "at"}, {"text": "the"}, {"text": "end"}, {"text": "of"}, {"text": "November"}, {"text": "."}, {"text": "Montedison"}, {"text": "currently"}, {"text": "owns"}, {"text": "about"}, {"text": "72"}, {"text": "%"}, {"text": "of"}, {"text": "Erbamont"}, {"text": "'s"}, {"text": "common"}, {"text": "shares"}, {"text": "outstanding"}, {"text": "."}, {"text": "The"}, {"text": "offer"}, {"text": "is"}, {"text": "being"}, {"text": "launched"}, {"text": "*-45"}, {"text": "pursuant"}, {"text": "to"}, {"text": "a"}, {"text": "previously"}, {"text": "announced"}, {"text": "agreement"}, {"text": "between"}, {"text": "the"}, {"text": "companies"}, {"text": "."}, {"text": "Japan"}, {"text": "'s"}, {"text": "reserves"}, {"text": "of"}, {"text": "gold"}, {"text": ","}, {"text": "convertible"}, {"text": "foreign"}, {"text": "currencies"}, {"text": ","}, {"text": "and"}, {"text": "special"}, {"text": "drawing"}, {"text": "rights"}, {"text": "fell"}, {"text": "by"}, {"text": "a"}, {"text": "hefty"}, {"text": "$"}, {"text": "1.82"}, {"text": "billion"}, {"text": "*U*"}, {"text": "in"}, {"text": "October"}, {"text": "to"}, {"text": "$"}, {"text": "84.29"}, {"text": "billion"}, {"text": "*U*"}, {"text": ","}, {"text": "the"}, {"text": "Finance"}, {"text": "Ministry"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "."}, {"text": "The"}, {"text": "total"}, {"text": "marks"}, {"text": "the"}, {"text": "sixth"}, {"text": "consecutive"}, {"text": "monthly"}, {"text": "decline"}, {"text": "."}, {"text": "The"}, {"text": "protracted"}, {"text": "downturn"}, {"text": "reflects"}, {"text": "the"}, {"text": "intensity"}, {"text": "of"}, {"text": "Bank"}, {"text": "of"}, {"text": "Japan"}, {"text": "yen-support"}, {"text": "intervention"}, {"text": "since"}, {"text": "June"}, {"text": ","}, {"text": "when"}, {"text": "the"}, {"text": "U.S."}, {"text": "currency"}, {"text": "temporarily"}, {"text": "surged"}, {"text": "above"}, {"text": "the"}, {"text": "150.00"}, {"text": "yen"}, {"text": "level"}, {"text": "*T*-1"}, {"text": "."}, {"text": "The"}, {"text": "announcement"}, {"text": "follows"}, {"text": "a"}, {"text": "sharper"}, {"text": "$"}, {"text": "2.2"}, {"text": "billion"}, {"text": "*U*"}, {"text": "decline"}, {"text": "in"}, {"text": "the"}, {"text": "country"}, {"text": "'s"}, {"text": "foreign"}, {"text": "reserves"}, {"text": "in"}, {"text": "September"}, {"text": "to"}, {"text": "$"}, {"text": "86.12"}, {"text": "billion"}, {"text": "*U*"}, {"text": "."}, {"text": "*"}, {"text": "Pick"}, {"text": "a"}, {"text": "country"}, {"text": ","}, {"text": "any"}, {"text": "country"}, {"text": "."}, {"text": "It"}, {"text": "'s"}, {"text": "the"}, {"text": "latest"}, {"text": "investment"}, {"text": "craze"}, {"text": "sweeping"}, {"text": "Wall"}, {"text": "Street"}, {"text": ":"}, {"text": "a"}, {"text": "rash"}, {"text": "of"}, {"text": "new"}, {"text": "closed-end"}, {"text": "country"}, {"text": "funds"}, {"text": ","}, {"text": "those"}, {"text": "publicly"}, {"text": "traded"}, {"text": "portfolios"}, {"text": "that"}, {"text": "*T*-37"}, {"text": "invest"}, {"text": "in"}, {"text": "stocks"}, {"text": "of"}, {"text": "a"}, {"text": "single"}, {"text": "foreign"}, {"text": "country"}, {"text": "."}, {"text": "No"}, {"text": "fewer"}, {"text": "than"}, {"text": "24"}, {"text": "country"}, {"text": "funds"}, {"text": "*ICH*-1"}, {"text": "have"}, {"text": "been"}, {"text": "launched"}, {"text": "*-2"}, {"text": "or"}, {"text": "registered"}, {"text": "*-2"}, {"text": "with"}, {"text": "regulators"}, {"text": "this"}, {"text": "year"}, {"text": ","}, {"text": "triple"}, {"text": "the"}, {"text": "level"}, {"text": "of"}, {"text": "all"}, {"text": "of"}, {"text": "1988"}, {"text": ","}, {"text": "according"}, {"text": "to"}, {"text": "Charles"}, {"text": "E."}, {"text": "Simon"}, {"text": "&"}, {"text": "Co."}, {"text": ","}, {"text": "a"}, {"text": "Washington-based"}, {"text": "research"}, {"text": "firm"}, {"text": "."}, {"text": "The"}, {"text": "turf"}, {"text": "recently"}, {"text": "has"}, {"text": "ranged"}, {"text": "from"}, {"text": "Chile"}, {"text": "to"}, {"text": "Austria"}, {"text": "to"}, {"text": "Portugal"}, {"text": "."}, {"text": "Next"}, {"text": "week"}, {"text": ","}, {"text": "the"}, {"text": "Philippine"}, {"text": "Fund"}, {"text": "'s"}, {"text": "launch"}, {"text": "will"}, {"text": "be"}, {"text": "capped"}, {"text": "*-46"}, {"text": "by"}, {"text": "a"}, {"text": "visit"}, {"text": "by"}, {"text": "Philippine"}, {"text": "President"}, {"text": "Corazon"}, {"text": "Aquino"}, {"text": "--"}, {"text": "the"}, {"text": "first"}, {"text": "time"}, {"text": "0"}, {"text": "a"}, {"text": "head"}, {"text": "of"}, {"text": "state"}, {"text": "has"}, {"text": "kicked"}, {"text": "off"}, {"text": "an"}, {"text": "issue"}, {"text": "at"}, {"text": "the"}, {"text": "Big"}, {"text": "Board"}, {"text": "here"}, {"text": "*T*-1"}, {"text": "."}, {"text": "The"}, {"text": "next"}, {"text": "province"}, {"text": "?"}, {"text": "``"}, {"text": "Anything"}, {"text": "'s"}, {"text": "possible"}, {"text": "--"}, {"text": "how"}, {"text": "about"}, {"text": "the"}, {"text": "New"}, {"text": "Guinea"}, {"text": "Fund"}, {"text": "?"}, {"text": "''"}, {"text": "quips"}, {"text": "*T*-1"}, {"text": "George"}, {"text": "Foot"}, {"text": ","}, {"text": "a"}, {"text": "managing"}, {"text": "partner"}, {"text": "at"}, {"text": "Newgate"}, {"text": "Management"}, {"text": "Associates"}, {"text": "of"}, {"text": "Northampton"}, {"text": ","}, {"text": "Mass"}, {"text": "."}, {"text": "The"}, {"text": "recent"}, {"text": "explosion"}, {"text": "of"}, {"text": "country"}, {"text": "funds"}, {"text": "mirrors"}, {"text": "the"}, {"text": "``"}, {"text": "closed-end"}, {"text": "fund"}, {"text": "mania"}, {"text": "''"}, {"text": "of"}, {"text": "the"}, {"text": "1920s"}, {"text": ","}, {"text": "Mr."}, {"text": "Foot"}, {"text": "says"}, {"text": "0"}, {"text": "*T*-2"}, {"text": ","}, {"text": "when"}, {"text": "narrowly"}, {"text": "focused"}, {"text": "funds"}, {"text": "grew"}, {"text": "wildly"}, {"text": "popular"}, {"text": "*T*-1"}, {"text": "."}, {"text": "They"}, {"text": "fell"}, {"text": "into"}, {"text": "oblivion"}, {"text": "after"}, {"text": "the"}, {"text": "1929"}, {"text": "crash"}, {"text": "."}, {"text": "Unlike"}, {"text": "traditional"}, {"text": "open-end"}, {"text": "mutual"}, {"text": "funds"}, {"text": ","}, {"text": "most"}, {"text": "of"}, {"text": "these"}, {"text": "one-country"}, {"text": "portfolios"}, {"text": "are"}, {"text": "the"}, {"text": "``"}, {"text": "closed-end"}, {"text": "''"}, {"text": "type"}, {"text": ","}, {"text": "*-1"}, {"text": "issuing"}, {"text": "a"}, {"text": "fixed"}, {"text": "number"}, {"text": "of"}, {"text": "shares"}, {"text": "that"}, {"text": "*T*-38"}, {"text": "trade"}, {"text": "publicly"}, {"text": "."}, {"text": "The"}, {"text": "surge"}, {"text": "brings"}, {"text": "to"}, {"text": "nearly"}, {"text": "50"}, {"text": "the"}, {"text": "number"}, {"text": "of"}, {"text": "country"}, {"text": "funds"}, {"text": "that"}, {"text": "*T*-39"}, {"text": "are"}, {"text": "*RNR*-1"}, {"text": "or"}, {"text": "soon"}, {"text": "will"}, {"text": "be"}, {"text": "*RNR*-1"}, {"text": "listed"}, {"text": "*-2"}, {"text": "in"}, {"text": "New"}, {"text": "York"}, {"text": "or"}, {"text": "London"}, {"text": "."}, {"text": "These"}, {"text": "funds"}, {"text": "now"}, {"text": "account"}, {"text": "for"}, {"text": "several"}, {"text": "billions"}, {"text": "of"}, {"text": "dollars"}, {"text": "in"}, {"text": "assets"}, {"text": "."}, {"text": "``"}, {"text": "People"}, {"text": "are"}, {"text": "looking"}, {"text": "*-1"}, {"text": "to"}, {"text": "stake"}, {"text": "their"}, {"text": "claims"}, {"text": "''"}, {"text": "now"}, {"text": "before"}, {"text": "the"}, {"text": "number"}, {"text": "of"}, {"text": "available"}, {"text": "nations"}, {"text": "runs"}, {"text": "out"}, {"text": ","}, {"text": "says"}, {"text": "*T*-2"}, {"text": "Michael"}, {"text": "Porter"}, {"text": ","}, {"text": "an"}, {"text": "analyst"}, {"text": "at"}, {"text": "Smith"}, {"text": "Barney"}, {"text": ","}, {"text": "Harris"}, {"text": "Upham"}, {"text": "&"}, {"text": "Co."}, {"text": ","}, {"text": "New"}, {"text": "York"}, {"text": "."}, {"text": "Behind"}, {"text": "all"}, {"text": "the"}, {"text": "hoopla"}, {"text": "is"}, {"text": "*T*-1"}, {"text": "some"}, {"text": "heavy-duty"}, {"text": "competition"}, {"text": "."}, {"text": "As"}, {"text": "individual"}, {"text": "investors"}, {"text": "have"}, {"text": "turned"}, {"text": "away"}, {"text": "from"}, {"text": "the"}, {"text": "stock"}, {"text": "market"}, {"text": "over"}, {"text": "the"}, {"text": "years"}, {"text": ","}, {"text": "securities"}, {"text": "firms"}, {"text": "have"}, {"text": "scrambled"}, {"text": "*-1"}, {"text": "to"}, {"text": "find"}, {"text": "new"}, {"text": "products"}, {"text": "that"}, {"text": "brokers"}, {"text": "find"}, {"text": "*T*-40"}, {"text": "easy"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "sell"}, {"text": "*T*-2"}, {"text": "."}, {"text": "And"}, {"text": "the"}, {"text": "firms"}, {"text": "are"}, {"text": "stretching"}, {"text": "their"}, {"text": "nets"}, {"text": "far"}, {"text": "and"}, {"text": "wide"}, {"text": "*-1"}, {"text": "to"}, {"text": "do"}, {"text": "it"}, {"text": "."}, {"text": "Financial"}, {"text": "planners"}, {"text": "often"}, {"text": "urge"}, {"text": "investors"}, {"text": "*-1"}, {"text": "to"}, {"text": "diversify"}, {"text": "and"}, {"text": "to"}, {"text": "hold"}, {"text": "a"}, {"text": "smattering"}, {"text": "of"}, {"text": "international"}, {"text": "securities"}, {"text": "."}, {"text": "And"}, {"text": "many"}, {"text": "emerging"}, {"text": "markets"}, {"text": "have"}, {"text": "outpaced"}, {"text": "more"}, {"text": "mature"}, {"text": "markets"}, {"text": ","}, {"text": "such"}, {"text": "as"}, {"text": "the"}, {"text": "U.S."}, {"text": "and"}, {"text": "Japan"}, {"text": "."}, {"text": "Country"}, {"text": "funds"}, {"text": "offer"}, {"text": "an"}, {"text": "easy"}, {"text": "way"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "get"}, {"text": "a"}, {"text": "taste"}, {"text": "of"}, {"text": "foreign"}, {"text": "stocks"}, {"text": "without"}, {"text": "the"}, {"text": "hard"}, {"text": "research"}, {"text": "of"}, {"text": "*"}, {"text": "seeking"}, {"text": "out"}, {"text": "individual"}, {"text": "companies"}, {"text": "*T*-1"}, {"text": "."}, {"text": "But"}, {"text": "it"}, {"text": "does"}, {"text": "n't"}, {"text": "take"}, {"text": "much"}, {"text": "*"}, {"text": "to"}, {"text": "get"}, {"text": "burned"}, {"text": "*-1"}, {"text": "."}, {"text": "Political"}, {"text": "and"}, {"text": "currency"}, {"text": "gyrations"}, {"text": "can"}, {"text": "whipsaw"}, {"text": "the"}, {"text": "funds"}, {"text": "."}, {"text": "Another"}, {"text": "concern"}, {"text": ":"}, {"text": "The"}, {"text": "funds"}, {"text": "'"}, {"text": "share"}, {"text": "prices"}, {"text": "tend"}, {"text": "*-1"}, {"text": "to"}, {"text": "swing"}, {"text": "more"}, {"text": "than"}, {"text": "the"}, {"text": "broader"}, {"text": "market"}, {"text": "."}, {"text": "When"}, {"text": "the"}, {"text": "stock"}, {"text": "market"}, {"text": "dropped"}, {"text": "nearly"}, {"text": "7"}, {"text": "%"}, {"text": "Oct."}, {"text": "13"}, {"text": "*T*-1"}, {"text": ","}, {"text": "for"}, {"text": "instance"}, {"text": ","}, {"text": "the"}, {"text": "Mexico"}, {"text": "Fund"}, {"text": "plunged"}, {"text": "about"}, {"text": "18"}, {"text": "%"}, {"text": "and"}, {"text": "the"}, {"text": "Spain"}, {"text": "Fund"}, {"text": "fell"}, {"text": "16"}, {"text": "%"}, {"text": "."}, {"text": "And"}, {"text": "most"}, {"text": "country"}, {"text": "funds"}, {"text": "were"}, {"text": "clobbered"}, {"text": "*-47"}, {"text": "more"}, {"text": "than"}, {"text": "most"}, {"text": "stocks"}, {"text": "after"}, {"text": "the"}, {"text": "1987"}, {"text": "crash"}, {"text": "."}, {"text": "What"}, {"text": "*ICH*-1"}, {"text": "*T*-41"}, {"text": "'s"}, {"text": "so"}, {"text": "wild"}, {"text": "about"}, {"text": "the"}, {"text": "funds"}, {"text": "'"}, {"text": "frenzy"}, {"text": "right"}, {"text": "now"}, {"text": "is"}, {"text": "that"}, {"text": "many"}, {"text": "are"}, {"text": "trading"}, {"text": "at"}, {"text": "historically"}, {"text": "fat"}, {"text": "premiums"}, {"text": "to"}, {"text": "the"}, {"text": "value"}, {"text": "of"}, {"text": "their"}, {"text": "underlying"}, {"text": "portfolios"}, {"text": "."}, {"text": "After"}, {"text": "*-1"}, {"text": "trading"}, {"text": "at"}, {"text": "an"}, {"text": "average"}, {"text": "discount"}, {"text": "of"}, {"text": "more"}, {"text": "than"}, {"text": "20"}, {"text": "%"}, {"text": "in"}, {"text": "late"}, {"text": "1987"}, {"text": "and"}, {"text": "part"}, {"text": "of"}, {"text": "last"}, {"text": "year"}, {"text": ","}, {"text": "country"}, {"text": "funds"}, {"text": "currently"}, {"text": "trade"}, {"text": "at"}, {"text": "an"}, {"text": "average"}, {"text": "premium"}, {"text": "of"}, {"text": "6"}, {"text": "%"}, {"text": "."}, {"text": "The"}, {"text": "reason"}, {"text": ":"}, {"text": "Share"}, {"text": "prices"}, {"text": "of"}, {"text": "many"}, {"text": "of"}, {"text": "these"}, {"text": "funds"}, {"text": "this"}, {"text": "year"}, {"text": "have"}, {"text": "climbed"}, {"text": "much"}, {"text": "more"}, {"text": "sharply"}, {"text": "than"}, {"text": "the"}, {"text": "foreign"}, {"text": "stocks"}, {"text": "0"}, {"text": "they"}, {"text": "hold"}, {"text": "*T*-1"}, {"text": "."}, {"text": "It"}, {"text": "'s"}, {"text": "probably"}, {"text": "worth"}, {"text": "*"}, {"text": "paying"}, {"text": "a"}, {"text": "premium"}, {"text": "for"}, {"text": "funds"}, {"text": "that"}, {"text": "*T*-42"}, {"text": "invest"}, {"text": "in"}, {"text": "markets"}, {"text": "that"}, {"text": "*T*-43"}, {"text": "are"}, {"text": "partially"}, {"text": "closed"}, {"text": "to"}, {"text": "foreign"}, {"text": "investors"}, {"text": ","}, {"text": "such"}, {"text": "as"}, {"text": "South"}, {"text": "Korea"}, {"text": ","}, {"text": "some"}, {"text": "specialists"}, {"text": "say"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "But"}, {"text": "some"}, {"text": "European"}, {"text": "funds"}, {"text": "recently"}, {"text": "have"}, {"text": "skyrocketed"}, {"text": ";"}, {"text": "Spain"}, {"text": "Fund"}, {"text": "has"}, {"text": "surged"}, {"text": "to"}, {"text": "a"}, {"text": "startling"}, {"text": "120"}, {"text": "%"}, {"text": "premium"}, {"text": "."}, {"text": "It"}, {"text": "has"}, {"text": "been"}, {"text": "targeted"}, {"text": "*-48"}, {"text": "by"}, {"text": "Japanese"}, {"text": "investors"}, {"text": "as"}, {"text": "a"}, {"text": "good"}, {"text": "long-term"}, {"text": "play"}, {"text": "tied"}, {"text": "*"}, {"text": "to"}, {"text": "1992"}, {"text": "'s"}, {"text": "European"}, {"text": "economic"}, {"text": "integration"}, {"text": "."}, {"text": "And"}, {"text": "several"}, {"text": "new"}, {"text": "funds"}, {"text": "that"}, {"text": "*T*-44"}, {"text": "are"}, {"text": "n't"}, {"text": "even"}, {"text": "fully"}, {"text": "invested"}, {"text": "yet"}, {"text": "have"}, {"text": "jumped"}, {"text": "*-1"}, {"text": "to"}, {"text": "trade"}, {"text": "at"}, {"text": "big"}, {"text": "premiums"}, {"text": "."}, {"text": "``"}, {"text": "I"}, {"text": "'m"}, {"text": "very"}, {"text": "alarmed"}, {"text": "*-2"}, {"text": "to"}, {"text": "see"}, {"text": "these"}, {"text": "rich"}, {"text": "valuations"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "Smith"}, {"text": "Barney"}, {"text": "'s"}, {"text": "Mr."}, {"text": "Porter"}, {"text": "."}, {"text": "The"}, {"text": "newly"}, {"text": "fattened"}, {"text": "premiums"}, {"text": "reflect"}, {"text": "the"}, {"text": "increasingly"}, {"text": "global"}, {"text": "marketing"}, {"text": "of"}, {"text": "some"}, {"text": "country"}, {"text": "funds"}, {"text": ","}, {"text": "Mr."}, {"text": "Porter"}, {"text": "suggests"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Unlike"}, {"text": "many"}, {"text": "U.S."}, {"text": "investors"}, {"text": ","}, {"text": "those"}, {"text": "in"}, {"text": "Asia"}, {"text": "or"}, {"text": "Europe"}, {"text": "seeking"}, {"text": "foreign-stock"}, {"text": "exposure"}, {"text": "may"}, {"text": "be"}, {"text": "less"}, {"text": "resistant"}, {"text": "to"}, {"text": "*"}, {"text": "paying"}, {"text": "higher"}, {"text": "prices"}, {"text": "for"}, {"text": "country"}, {"text": "funds"}, {"text": "."}, {"text": "``"}, {"text": "There"}, {"text": "may"}, {"text": "be"}, {"text": "an"}, {"text": "international"}, {"text": "viewpoint"}, {"text": "cast"}, {"text": "*-2"}, {"text": "on"}, {"text": "the"}, {"text": "funds"}, {"text": "listed"}, {"text": "*"}, {"text": "here"}, {"text": ","}, {"text": "''"}, {"text": "Mr."}, {"text": "Porter"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Nonetheless"}, {"text": ","}, {"text": "plenty"}, {"text": "of"}, {"text": "U.S."}, {"text": "analysts"}, {"text": "and"}, {"text": "money"}, {"text": "managers"}, {"text": "are"}, {"text": "aghast"}, {"text": "at"}, {"text": "the"}, {"text": "lofty"}, {"text": "trading"}, {"text": "levels"}, {"text": "of"}, {"text": "some"}, {"text": "country"}, {"text": "funds"}, {"text": "."}, {"text": "They"}, {"text": "argue"}, {"text": "that"}, {"text": "U.S."}, {"text": "investors"}, {"text": "often"}, {"text": "can"}, {"text": "buy"}, {"text": "American"}, {"text": "depositary"}, {"text": "receipts"}, {"text": "on"}, {"text": "the"}, {"text": "big"}, {"text": "stocks"}, {"text": "in"}, {"text": "many"}, {"text": "funds"}, {"text": ";"}, {"text": "these"}, {"text": "so-called"}, {"text": "ADRs"}, {"text": "represent"}, {"text": "shares"}, {"text": "of"}, {"text": "foreign"}, {"text": "companies"}, {"text": "traded"}, {"text": "*"}, {"text": "in"}, {"text": "the"}, {"text": "U.S."}, {"text": "."}, {"text": "That"}, {"text": "way"}, {"text": "investors"}, {"text": "can"}, {"text": "essentially"}, {"text": "buy"}, {"text": "the"}, {"text": "funds"}, {"text": "without"}, {"text": "*-1"}, {"text": "paying"}, {"text": "the"}, {"text": "premium"}, {"text": "."}, {"text": "For"}, {"text": "people"}, {"text": "who"}, {"text": "*T*-45"}, {"text": "insist"}, {"text": "on"}, {"text": "*-5"}, {"text": "jumping"}, {"text": "in"}, {"text": "now"}, {"text": "*-1"}, {"text": "to"}, {"text": "buy"}, {"text": "the"}, {"text": "funds"}, {"text": ","}, {"text": "Newgate"}, {"text": "'s"}, {"text": "Mr."}, {"text": "Foot"}, {"text": "says"}, {"text": ":"}, {"text": "``"}, {"text": "The"}, {"text": "only"}, {"text": "advice"}, {"text": "0"}, {"text": "I"}, {"text": "have"}, {"text": "*T*-2"}, {"text": "for"}, {"text": "these"}, {"text": "folks"}, {"text": "is"}, {"text": "that"}, {"text": "those"}, {"text": "who"}, {"text": "*T*-3"}, {"text": "come"}, {"text": "to"}, {"text": "the"}, {"text": "party"}, {"text": "late"}, {"text": "had"}, {"text": "better"}, {"text": "*-4"}, {"text": "be"}, {"text": "ready"}, {"text": "*-4"}, {"text": "to"}, {"text": "leave"}, {"text": "quickly"}, {"text": "."}, {"text": "The"}, {"text": "U.S."}, {"text": "and"}, {"text": "Soviet"}, {"text": "Union"}, {"text": "are"}, {"text": "holding"}, {"text": "technical"}, {"text": "talks"}, {"text": "about"}, {"text": "possible"}, {"text": "repayment"}, {"text": "by"}, {"text": "Moscow"}, {"text": "of"}, {"text": "$"}, {"text": "188"}, {"text": "million"}, {"text": "*U*"}, {"text": "in"}, {"text": "pre-Communist"}, {"text": "Russian"}, {"text": "debts"}, {"text": "owed"}, {"text": "*"}, {"text": "to"}, {"text": "the"}, {"text": "U.S."}, {"text": "government"}, {"text": ","}, {"text": "the"}, {"text": "State"}, {"text": "Department"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "."}, {"text": "If"}, {"text": "the"}, {"text": "debts"}, {"text": "are"}, {"text": "repaid"}, {"text": "*-49"}, {"text": ","}, {"text": "it"}, {"text": "could"}, {"text": "clear"}, {"text": "the"}, {"text": "way"}, {"text": "0"}, {"text": "for"}, {"text": "Soviet"}, {"text": "bonds"}, {"text": "to"}, {"text": "be"}, {"text": "sold"}, {"text": "*-50"}, {"text": "in"}, {"text": "the"}, {"text": "U.S."}, {"text": "*T*-1"}, {"text": "."}, {"text": "However"}, {"text": ","}, {"text": "after"}, {"text": "two"}, {"text": "meetings"}, {"text": "with"}, {"text": "the"}, {"text": "Soviets"}, {"text": ","}, {"text": "a"}, {"text": "State"}, {"text": "Department"}, {"text": "spokesman"}, {"text": "said"}, {"text": "that"}, {"text": "it"}, {"text": "*EXP*-1"}, {"text": "'s"}, {"text": "``"}, {"text": "too"}, {"text": "early"}, {"text": "*"}, {"text": "to"}, {"text": "say"}, {"text": "''"}, {"text": "whether"}, {"text": "that"}, {"text": "will"}, {"text": "happen"}, {"text": "."}, {"text": "Coincident"}, {"text": "with"}, {"text": "the"}, {"text": "talks"}, {"text": ","}, {"text": "the"}, {"text": "State"}, {"text": "Department"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "has"}, {"text": "permitted"}, {"text": "a"}, {"text": "Soviet"}, {"text": "bank"}, {"text": "to"}, {"text": "open"}, {"text": "a"}, {"text": "New"}, {"text": "York"}, {"text": "branch"}, {"text": "."}, {"text": "The"}, {"text": "branch"}, {"text": "of"}, {"text": "the"}, {"text": "Bank"}, {"text": "for"}, {"text": "Foreign"}, {"text": "Economic"}, {"text": "Affairs"}, {"text": "was"}, {"text": "approved"}, {"text": "*-1"}, {"text": "last"}, {"text": "spring"}, {"text": "and"}, {"text": "opened"}, {"text": "in"}, {"text": "July"}, {"text": "."}, {"text": "But"}, {"text": "a"}, {"text": "Soviet"}, {"text": "bank"}, {"text": "here"}, {"text": "would"}, {"text": "be"}, {"text": "crippled"}, {"text": "*-51"}, {"text": "unless"}, {"text": "Moscow"}, {"text": "found"}, {"text": "a"}, {"text": "way"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "settle"}, {"text": "the"}, {"text": "$"}, {"text": "188"}, {"text": "million"}, {"text": "*U*"}, {"text": "debt"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "was"}, {"text": "lent"}, {"text": "*-52"}, {"text": "to"}, {"text": "the"}, {"text": "country"}, {"text": "'s"}, {"text": "short-lived"}, {"text": "democratic"}, {"text": "Kerensky"}, {"text": "government"}, {"text": "before"}, {"text": "the"}, {"text": "Communists"}, {"text": "seized"}, {"text": "power"}, {"text": "in"}, {"text": "1917"}, {"text": "*T*-2"}, {"text": "."}, {"text": "Under"}, {"text": "a"}, {"text": "1934"}, {"text": "law"}, {"text": ","}, {"text": "the"}, {"text": "Johnson"}, {"text": "Debt"}, {"text": "Default"}, {"text": "Act"}, {"text": ","}, {"text": "as"}, {"text": "*"}, {"text": "amended"}, {"text": "*-1"}, {"text": ","}, {"text": "it"}, {"text": "*EXP*-2"}, {"text": "'s"}, {"text": "illegal"}, {"text": "for"}, {"text": "Americans"}, {"text": "to"}, {"text": "extend"}, {"text": "credit"}, {"text": "to"}, {"text": "countries"}, {"text": "in"}, {"text": "default"}, {"text": "to"}, {"text": "the"}, {"text": "U.S."}, {"text": "government"}, {"text": ","}, {"text": "unless"}, {"text": "they"}, {"text": "are"}, {"text": "members"}, {"text": "of"}, {"text": "the"}, {"text": "World"}, {"text": "Bank"}, {"text": "and"}, {"text": "International"}, {"text": "Monetary"}, {"text": "Fund"}, {"text": "."}, {"text": "The"}, {"text": "U.S.S.R."}, {"text": "belongs"}, {"text": "to"}, {"text": "neither"}, {"text": "organization"}, {"text": "."}, {"text": "Moscow"}, {"text": "has"}, {"text": "settled"}, {"text": "pre-1917"}, {"text": "debts"}, {"text": "with"}, {"text": "other"}, {"text": "countries"}, {"text": "in"}, {"text": "recent"}, {"text": "years"}, {"text": "at"}, {"text": "less"}, {"text": "than"}, {"text": "face"}, {"text": "value"}, {"text": "."}, {"text": "The"}, {"text": "State"}, {"text": "Department"}, {"text": "stressed"}, {"text": "the"}, {"text": "pre-1933"}, {"text": "debts"}, {"text": "as"}, {"text": "the"}, {"text": "key"}, {"text": "to"}, {"text": "*"}, {"text": "satisfying"}, {"text": "the"}, {"text": "Johnson"}, {"text": "Act"}, {"text": "."}, {"text": "But"}, {"text": "the"}, {"text": "Soviets"}, {"text": "might"}, {"text": "still"}, {"text": "face"}, {"text": "legal"}, {"text": "obstacles"}, {"text": "to"}, {"text": "*"}, {"text": "raising"}, {"text": "money"}, {"text": "in"}, {"text": "the"}, {"text": "U.S."}, {"text": "until"}, {"text": "they"}, {"text": "settle"}, {"text": "hundreds"}, {"text": "of"}, {"text": "millions"}, {"text": "of"}, {"text": "dollars"}, {"text": "in"}, {"text": "additional"}, {"text": "debt"}, {"text": "still"}, {"text": "outstanding"}, {"text": "from"}, {"text": "the"}, {"text": "World"}, {"text": "War"}, {"text": "II"}, {"text": "lend-lease"}, {"text": "program"}, {"text": "."}, {"text": "In"}, {"text": "another"}, {"text": "reflection"}, {"text": "that"}, {"text": "the"}, {"text": "growth"}, {"text": "of"}, {"text": "the"}, {"text": "economy"}, {"text": "is"}, {"text": "leveling"}, {"text": "off"}, {"text": ","}, {"text": "the"}, {"text": "government"}, {"text": "said"}, {"text": "that"}, {"text": "orders"}, {"text": "for"}, {"text": "manufactured"}, {"text": "goods"}, {"text": "and"}, {"text": "spending"}, {"text": "on"}, {"text": "construction"}, {"text": "failed"}, {"text": "*-1"}, {"text": "to"}, {"text": "rise"}, {"text": "in"}, {"text": "September"}, {"text": "."}, {"text": "Meanwhile"}, {"text": ","}, {"text": "the"}, {"text": "National"}, {"text": "Association"}, {"text": "of"}, {"text": "Purchasing"}, {"text": "Management"}, {"text": "said"}, {"text": "0"}, {"text": "its"}, {"text": "latest"}, {"text": "survey"}, {"text": "indicated"}, {"text": "that"}, {"text": "the"}, {"text": "manufacturing"}, {"text": "economy"}, {"text": "contracted"}, {"text": "in"}, {"text": "October"}, {"text": "for"}, {"text": "the"}, {"text": "sixth"}, {"text": "consecutive"}, {"text": "month"}, {"text": "."}, {"text": "Its"}, {"text": "index"}, {"text": "inched"}, {"text": "up"}, {"text": "to"}, {"text": "47.6"}, {"text": "%"}, {"text": "in"}, {"text": "October"}, {"text": "from"}, {"text": "46"}, {"text": "%"}, {"text": "in"}, {"text": "September"}, {"text": "."}, {"text": "Any"}, {"text": "reading"}, {"text": "below"}, {"text": "50"}, {"text": "%"}, {"text": "suggests"}, {"text": "0"}, {"text": "the"}, {"text": "manufacturing"}, {"text": "sector"}, {"text": "is"}, {"text": "generally"}, {"text": "declining"}, {"text": "."}, {"text": "The"}, {"text": "purchasing"}, {"text": "managers"}, {"text": ","}, {"text": "however"}, {"text": ","}, {"text": "also"}, {"text": "said"}, {"text": "that"}, {"text": "orders"}, {"text": "turned"}, {"text": "up"}, {"text": "in"}, {"text": "October"}, {"text": "after"}, {"text": "four"}, {"text": "months"}, {"text": "of"}, {"text": "decline"}, {"text": "."}, {"text": "Factories"}, {"text": "booked"}, {"text": "$"}, {"text": "236.74"}, {"text": "billion"}, {"text": "*U*"}, {"text": "in"}, {"text": "orders"}, {"text": "*ICH*-1"}, {"text": "in"}, {"text": "September"}, {"text": ","}, {"text": "nearly"}, {"text": "the"}, {"text": "same"}, {"text": "as"}, {"text": "the"}, {"text": "$"}, {"text": "236.79"}, {"text": "billion"}, {"text": "*U*"}, {"text": "in"}, {"text": "August"}, {"text": ","}, {"text": "the"}, {"text": "Commerce"}, {"text": "Department"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "."}, {"text": "If"}, {"text": "not"}, {"text": "for"}, {"text": "a"}, {"text": "59.6"}, {"text": "%"}, {"text": "surge"}, {"text": "in"}, {"text": "orders"}, {"text": "for"}, {"text": "capital"}, {"text": "goods"}, {"text": "by"}, {"text": "defense"}, {"text": "contractors"}, {"text": ","}, {"text": "factory"}, {"text": "orders"}, {"text": "would"}, {"text": "have"}, {"text": "fallen"}, {"text": "2.1"}, {"text": "%"}, {"text": "."}, {"text": "In"}, {"text": "a"}, {"text": "separate"}, {"text": "report"}, {"text": ","}, {"text": "the"}, {"text": "department"}, {"text": "said"}, {"text": "0"}, {"text": "construction"}, {"text": "spending"}, {"text": "ran"}, {"text": "at"}, {"text": "an"}, {"text": "annual"}, {"text": "rate"}, {"text": "of"}, {"text": "$"}, {"text": "415.6"}, {"text": "billion"}, {"text": "*U*"}, {"text": ","}, {"text": "not"}, {"text": "significantly"}, {"text": "different"}, {"text": "from"}, {"text": "the"}, {"text": "$"}, {"text": "415.8"}, {"text": "billion"}, {"text": "*U*"}, {"text": "reported"}, {"text": "*"}, {"text": "for"}, {"text": "August"}, {"text": "."}, {"text": "Private"}, {"text": "construction"}, {"text": "spending"}, {"text": "was"}, {"text": "down"}, {"text": ","}, {"text": "but"}, {"text": "government"}, {"text": "building"}, {"text": "activity"}, {"text": "was"}, {"text": "up"}, {"text": "."}, {"text": "The"}, {"text": "figures"}, {"text": "in"}, {"text": "both"}, {"text": "reports"}, {"text": "were"}, {"text": "adjusted"}, {"text": "*-1"}, {"text": "*"}, {"text": "to"}, {"text": "remove"}, {"text": "the"}, {"text": "effects"}, {"text": "of"}, {"text": "usual"}, {"text": "seasonal"}, {"text": "patterns"}, {"text": ","}, {"text": "but"}, {"text": "were"}, {"text": "n't"}, {"text": "adjusted"}, {"text": "for"}, {"text": "inflation"}, {"text": "."}, {"text": "Kenneth"}, {"text": "Mayland"}, {"text": ","}, {"text": "economist"}, {"text": "for"}, {"text": "Society"}, {"text": "Corp."}, {"text": ","}, {"text": "a"}, {"text": "Cleveland"}, {"text": "bank"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "demand"}, {"text": "for"}, {"text": "exports"}, {"text": "of"}, {"text": "factory"}, {"text": "goods"}, {"text": "is"}, {"text": "beginning"}, {"text": "*-1"}, {"text": "to"}, {"text": "taper"}, {"text": "off"}, {"text": "."}, {"text": "At"}, {"text": "the"}, {"text": "same"}, {"text": "time"}, {"text": ","}, {"text": "the"}, {"text": "drop"}, {"text": "in"}, {"text": "interest"}, {"text": "rates"}, {"text": "since"}, {"text": "the"}, {"text": "spring"}, {"text": "has"}, {"text": "failed"}, {"text": "*-1"}, {"text": "to"}, {"text": "revive"}, {"text": "the"}, {"text": "residential"}, {"text": "construction"}, {"text": "industry"}, {"text": "."}, {"text": "``"}, {"text": "What"}, {"text": "sector"}, {"text": "is"}, {"text": "*T*-46"}, {"text": "stepping"}, {"text": "forward"}, {"text": "*-2"}, {"text": "to"}, {"text": "pick"}, {"text": "up"}, {"text": "the"}, {"text": "slack"}, {"text": "?"}, {"text": "''"}, {"text": "he"}, {"text": "asked"}, {"text": "*T*-1"}, {"text": "."}, {"text": "``"}, {"text": "I"}, {"text": "draw"}, {"text": "a"}, {"text": "blank"}, {"text": "."}, {"text": "''"}, {"text": "By"}, {"text": "most"}, {"text": "measures"}, {"text": ","}, {"text": "the"}, {"text": "nation"}, {"text": "'s"}, {"text": "industrial"}, {"text": "sector"}, {"text": "is"}, {"text": "now"}, {"text": "growing"}, {"text": "very"}, {"text": "slowly"}, {"text": "--"}, {"text": "if"}, {"text": "at"}, {"text": "all"}, {"text": "."}, {"text": "Factory"}, {"text": "payrolls"}, {"text": "fell"}, {"text": "in"}, {"text": "September"}, {"text": "."}, {"text": "So"}, {"text": "did"}, {"text": "*?*"}, {"text": "*T*-1"}, {"text": "the"}, {"text": "Federal"}, {"text": "Reserve"}, {"text": "Board"}, {"text": "'s"}, {"text": "industrial-production"}, {"text": "index"}, {"text": "."}, {"text": "Yet"}, {"text": "many"}, {"text": "economists"}, {"text": "are"}, {"text": "n't"}, {"text": "predicting"}, {"text": "that"}, {"text": "the"}, {"text": "economy"}, {"text": "is"}, {"text": "about"}, {"text": "*-1"}, {"text": "to"}, {"text": "slip"}, {"text": "into"}, {"text": "recession"}, {"text": "."}, {"text": "They"}, {"text": "cite"}, {"text": "a"}, {"text": "lack"}, {"text": "of"}, {"text": "``"}, {"text": "imbalances"}, {"text": "''"}, {"text": "that"}, {"text": "*T*-47"}, {"text": "provide"}, {"text": "early"}, {"text": "warning"}, {"text": "signals"}, {"text": "of"}, {"text": "a"}, {"text": "downturn"}, {"text": "."}, {"text": "Inventories"}, {"text": "are"}, {"text": "closely"}, {"text": "watched"}, {"text": "*-1"}, {"text": "for"}, {"text": "such"}, {"text": "clues"}, {"text": ","}, {"text": "for"}, {"text": "instance"}, {"text": "."}, {"text": "Economists"}, {"text": "say"}, {"text": "0"}, {"text": "a"}, {"text": "buildup"}, {"text": "in"}, {"text": "inventories"}, {"text": "can"}, {"text": "provoke"}, {"text": "cutbacks"}, {"text": "in"}, {"text": "production"}, {"text": "that"}, {"text": "*T*-48"}, {"text": "can"}, {"text": "lead"}, {"text": "to"}, {"text": "a"}, {"text": "recession"}, {"text": "."}, {"text": "But"}, {"text": "yesterday"}, {"text": "'s"}, {"text": "factory"}, {"text": "orders"}, {"text": "report"}, {"text": "had"}, {"text": "good"}, {"text": "news"}, {"text": "on"}, {"text": "that"}, {"text": "front"}, {"text": ":"}, {"text": "it"}, {"text": "said"}, {"text": "0"}, {"text": "factory"}, {"text": "inventories"}, {"text": "fell"}, {"text": "0.1"}, {"text": "%"}, {"text": "in"}, {"text": "September"}, {"text": ","}, {"text": "the"}, {"text": "first"}, {"text": "decline"}, {"text": "since"}, {"text": "February"}, {"text": "1987"}, {"text": "."}, {"text": "``"}, {"text": "This"}, {"text": "conforms"}, {"text": "to"}, {"text": "the"}, {"text": "`"}, {"text": "soft"}, {"text": "landing"}, {"text": "'"}, {"text": "scenario"}, {"text": ","}, {"text": "''"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "Elliott"}, {"text": "Platt"}, {"text": ","}, {"text": "an"}, {"text": "economist"}, {"text": "at"}, {"text": "Donaldson"}, {"text": ","}, {"text": "Lufkin"}, {"text": "&"}, {"text": "Jenrette"}, {"text": "Securities"}, {"text": "Corp"}, {"text": "."}, {"text": "``"}, {"text": "I"}, {"text": "do"}, {"text": "n't"}, {"text": "see"}, {"text": "any"}, {"text": "signs"}, {"text": "that"}, {"text": "inventories"}, {"text": "are"}, {"text": "excessive"}, {"text": "."}, {"text": "''"}, {"text": "A"}, {"text": "soft"}, {"text": "landing"}, {"text": "is"}, {"text": "an"}, {"text": "economic"}, {"text": "slowdown"}, {"text": "that"}, {"text": "*T*-49"}, {"text": "eases"}, {"text": "inflation"}, {"text": "without"}, {"text": "*-1"}, {"text": "leading"}, {"text": "to"}, {"text": "a"}, {"text": "recession"}, {"text": "."}, {"text": "The"}, {"text": "department"}, {"text": "said"}, {"text": "0"}, {"text": "orders"}, {"text": "for"}, {"text": "nondurable"}, {"text": "goods"}, {"text": "--"}, {"text": "those"}, {"text": "intended"}, {"text": "*"}, {"text": "to"}, {"text": "last"}, {"text": "fewer"}, {"text": "than"}, {"text": "three"}, {"text": "years"}, {"text": "--"}, {"text": "fell"}, {"text": "0.3"}, {"text": "%"}, {"text": "in"}, {"text": "September"}, {"text": "to"}, {"text": "$"}, {"text": "109.73"}, {"text": "billion"}, {"text": "*U*"}, {"text": "after"}, {"text": "*-1"}, {"text": "climbing"}, {"text": "0.9"}, {"text": "%"}, {"text": "the"}, {"text": "month"}, {"text": "before"}, {"text": "."}, {"text": "Orders"}, {"text": "for"}, {"text": "durable"}, {"text": "goods"}, {"text": "were"}, {"text": "up"}, {"text": "0.2"}, {"text": "%"}, {"text": "to"}, {"text": "$"}, {"text": "127.03"}, {"text": "billion"}, {"text": "*U*"}, {"text": "after"}, {"text": "*-1"}, {"text": "rising"}, {"text": "3.9"}, {"text": "%"}, {"text": "the"}, {"text": "month"}, {"text": "before"}, {"text": "."}, {"text": "The"}, {"text": "department"}, {"text": "previously"}, {"text": "estimated"}, {"text": "that"}, {"text": "durable-goods"}, {"text": "orders"}, {"text": "fell"}, {"text": "0.1"}, {"text": "%"}, {"text": "in"}, {"text": "September"}, {"text": "."}, {"text": "Factory"}, {"text": "shipments"}, {"text": "fell"}, {"text": "1.6"}, {"text": "%"}, {"text": "to"}, {"text": "$"}, {"text": "234.4"}, {"text": "billion"}, {"text": "*U*"}, {"text": "after"}, {"text": "*"}, {"text": "rising"}, {"text": "5.4"}, {"text": "%"}, {"text": "in"}, {"text": "August"}, {"text": "."}, {"text": "Shipments"}, {"text": "have"}, {"text": "been"}, {"text": "relatively"}, {"text": "level"}, {"text": "since"}, {"text": "January"}, {"text": ","}, {"text": "the"}, {"text": "Commerce"}, {"text": "Department"}, {"text": "noted"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Manufacturers"}, {"text": "'"}, {"text": "backlogs"}, {"text": "of"}, {"text": "unfilled"}, {"text": "orders"}, {"text": "rose"}, {"text": "0.5"}, {"text": "%"}, {"text": "in"}, {"text": "September"}, {"text": "to"}, {"text": "$"}, {"text": "497.34"}, {"text": "billion"}, {"text": "*U*"}, {"text": ","}, {"text": "*-3"}, {"text": "helped"}, {"text": "*-2"}, {"text": "by"}, {"text": "strength"}, {"text": "in"}, {"text": "the"}, {"text": "defense"}, {"text": "capital"}, {"text": "goods"}, {"text": "sector"}, {"text": "."}, {"text": "Excluding"}, {"text": "these"}, {"text": "orders"}, {"text": ","}, {"text": "backlogs"}, {"text": "declined"}, {"text": "0.3"}, {"text": "%"}, {"text": "."}, {"text": "In"}, {"text": "its"}, {"text": "construction"}, {"text": "spending"}, {"text": "report"}, {"text": ","}, {"text": "the"}, {"text": "Commerce"}, {"text": "Department"}, {"text": "said"}, {"text": "0"}, {"text": "residential"}, {"text": "construction"}, {"text": ","}, {"text": "which"}, {"text": "*T*-50"}, {"text": "accounts"}, {"text": "for"}, {"text": "nearly"}, {"text": "half"}, {"text": "of"}, {"text": "all"}, {"text": "construction"}, {"text": "spending"}, {"text": ","}, {"text": "was"}, {"text": "off"}, {"text": "0.9"}, {"text": "%"}, {"text": "*ICH*-3"}, {"text": "in"}, {"text": "September"}, {"text": "to"}, {"text": "an"}, {"text": "annual"}, {"text": "rate"}, {"text": "of"}, {"text": "$"}, {"text": "191.9"}, {"text": "billion"}, {"text": "*U*"}, {"text": "."}, {"text": "David"}, {"text": "Berson"}, {"text": ","}, {"text": "economist"}, {"text": "for"}, {"text": "the"}, {"text": "Mortgage"}, {"text": "Bankers"}, {"text": "Association"}, {"text": ","}, {"text": "predicted"}, {"text": "0"}, {"text": "the"}, {"text": "drop"}, {"text": "in"}, {"text": "interest"}, {"text": "rates"}, {"text": "eventually"}, {"text": "will"}, {"text": "boost"}, {"text": "spending"}, {"text": "on"}, {"text": "single-family"}, {"text": "homes"}, {"text": ","}, {"text": "but"}, {"text": "probably"}, {"text": "not"}, {"text": "until"}, {"text": "early"}, {"text": "next"}, {"text": "year"}, {"text": "."}, {"text": "Spending"}, {"text": "on"}, {"text": "private"}, {"text": ","}, {"text": "nonresidential"}, {"text": "construction"}, {"text": "was"}, {"text": "off"}, {"text": "2.6"}, {"text": "%"}, {"text": "to"}, {"text": "an"}, {"text": "annual"}, {"text": "rate"}, {"text": "of"}, {"text": "$"}, {"text": "99.1"}, {"text": "billion"}, {"text": "*U*"}, {"text": "with"}, {"text": "no"}, {"text": "sector"}, {"text": "showing"}, {"text": "strength"}, {"text": "."}, {"text": "Government"}, {"text": "construction"}, {"text": "spending"}, {"text": "rose"}, {"text": "4.3"}, {"text": "%"}, {"text": "to"}, {"text": "$"}, {"text": "88"}, {"text": "billion"}, {"text": "*U*"}, {"text": "."}, {"text": "After"}, {"text": "*-1"}, {"text": "adjusting"}, {"text": "for"}, {"text": "inflation"}, {"text": ","}, {"text": "the"}, {"text": "Commerce"}, {"text": "Department"}, {"text": "said"}, {"text": "0"}, {"text": "construction"}, {"text": "spending"}, {"text": "did"}, {"text": "n't"}, {"text": "change"}, {"text": "in"}, {"text": "September"}, {"text": "."}, {"text": "For"}, {"text": "the"}, {"text": "first"}, {"text": "nine"}, {"text": "months"}, {"text": "of"}, {"text": "the"}, {"text": "year"}, {"text": ","}, {"text": "total"}, {"text": "construction"}, {"text": "spending"}, {"text": "ran"}, {"text": "about"}, {"text": "2"}, {"text": "%"}, {"text": "above"}, {"text": "last"}, {"text": "year"}, {"text": "'s"}, {"text": "level"}, {"text": "."}, {"text": "The"}, {"text": "government"}, {"text": "'s"}, {"text": "construction"}, {"text": "spending"}, {"text": "figures"}, {"text": "contrast"}, {"text": "with"}, {"text": "a"}, {"text": "report"}, {"text": "issued"}, {"text": "*"}, {"text": "earlier"}, {"text": "in"}, {"text": "the"}, {"text": "week"}, {"text": "by"}, {"text": "McGraw-Hill"}, {"text": "Inc."}, {"text": "'s"}, {"text": "F.W."}, {"text": "Dodge"}, {"text": "Group"}, {"text": "."}, {"text": "Dodge"}, {"text": "reported"}, {"text": "an"}, {"text": "8"}, {"text": "%"}, {"text": "increase"}, {"text": "in"}, {"text": "construction"}, {"text": "contracts"}, {"text": "awarded"}, {"text": "*"}, {"text": "in"}, {"text": "September"}, {"text": "."}, {"text": "The"}, {"text": "goverment"}, {"text": "counts"}, {"text": "money"}, {"text": "as"}, {"text": "it"}, {"text": "is"}, {"text": "spent"}, {"text": "*-53"}, {"text": ";"}, {"text": "Dodge"}, {"text": "counts"}, {"text": "contracts"}, {"text": "when"}, {"text": "they"}, {"text": "are"}, {"text": "awarded"}, {"text": "*-54"}, {"text": "*T*-1"}, {"text": "."}, {"text": "The"}, {"text": "government"}, {"text": "includes"}, {"text": "money"}, {"text": "spent"}, {"text": "*"}, {"text": "on"}, {"text": "residential"}, {"text": "renovation"}, {"text": ";"}, {"text": "Dodge"}, {"text": "does"}, {"text": "n't"}, {"text": "*?*"}, {"text": "."}, {"text": "Although"}, {"text": "the"}, {"text": "purchasing"}, {"text": "managers"}, {"text": "'"}, {"text": "index"}, {"text": "continues"}, {"text": "*-1"}, {"text": "to"}, {"text": "indicate"}, {"text": "a"}, {"text": "slowing"}, {"text": "economy"}, {"text": ","}, {"text": "it"}, {"text": "is"}, {"text": "n't"}, {"text": "signaling"}, {"text": "an"}, {"text": "imminent"}, {"text": "recession"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "Robert"}, {"text": "Bretz"}, {"text": ","}, {"text": "chairman"}, {"text": "of"}, {"text": "the"}, {"text": "association"}, {"text": "'s"}, {"text": "survey"}, {"text": "committee"}, {"text": "and"}, {"text": "director"}, {"text": "of"}, {"text": "materials"}, {"text": "management"}, {"text": "at"}, {"text": "Pitney"}, {"text": "Bowes"}, {"text": "Inc."}, {"text": ","}, {"text": "Stamford"}, {"text": ","}, {"text": "Conn"}, {"text": "."}, {"text": "He"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "index"}, {"text": "would"}, {"text": "have"}, {"text": "*-1"}, {"text": "to"}, {"text": "be"}, {"text": "in"}, {"text": "the"}, {"text": "low"}, {"text": "40"}, {"text": "%"}, {"text": "range"}, {"text": "for"}, {"text": "several"}, {"text": "months"}, {"text": "*-1"}, {"text": "to"}, {"text": "be"}, {"text": "considered"}, {"text": "*-55"}, {"text": "a"}, {"text": "forecast"}, {"text": "of"}, {"text": "recession"}, {"text": "."}, {"text": "The"}, {"text": "report"}, {"text": "offered"}, {"text": "new"}, {"text": "evidence"}, {"text": "that"}, {"text": "the"}, {"text": "nation"}, {"text": "'s"}, {"text": "export"}, {"text": "growth"}, {"text": ","}, {"text": "though"}, {"text": "*-1"}, {"text": "still"}, {"text": "continuing"}, {"text": ","}, {"text": "may"}, {"text": "be"}, {"text": "slowing"}, {"text": "."}, {"text": "Only"}, {"text": "19"}, {"text": "%"}, {"text": "of"}, {"text": "the"}, {"text": "purchasing"}, {"text": "managers"}, {"text": "reported"}, {"text": "better"}, {"text": "export"}, {"text": "orders"}, {"text": "in"}, {"text": "October"}, {"text": ","}, {"text": "down"}, {"text": "from"}, {"text": "27"}, {"text": "%"}, {"text": "in"}, {"text": "September"}, {"text": "."}, {"text": "And"}, {"text": "8"}, {"text": "%"}, {"text": "*ICH*-1"}, {"text": "said"}, {"text": "0"}, {"text": "export"}, {"text": "orders"}, {"text": "were"}, {"text": "down"}, {"text": "last"}, {"text": "month"}, {"text": ","}, {"text": "compared"}, {"text": "with"}, {"text": "6"}, {"text": "%"}, {"text": "the"}, {"text": "month"}, {"text": "before"}, {"text": "."}, {"text": "The"}, {"text": "purhasing"}, {"text": "managers"}, {"text": "'"}, {"text": "report"}, {"text": "also"}, {"text": "added"}, {"text": "evidence"}, {"text": "that"}, {"text": "inflation"}, {"text": "is"}, {"text": "under"}, {"text": "control"}, {"text": "."}, {"text": "For"}, {"text": "the"}, {"text": "fifth"}, {"text": "consecutive"}, {"text": "month"}, {"text": ","}, {"text": "purchasing"}, {"text": "managers"}, {"text": "said"}, {"text": "0"}, {"text": "prices"}, {"text": "for"}, {"text": "the"}, {"text": "goods"}, {"text": "0"}, {"text": "they"}, {"text": "purchased"}, {"text": "*T*-1"}, {"text": "fell"}, {"text": "."}, {"text": "The"}, {"text": "decline"}, {"text": "was"}, {"text": "even"}, {"text": "steeper"}, {"text": "than"}, {"text": "in"}, {"text": "September"}, {"text": "."}, {"text": "They"}, {"text": "also"}, {"text": "said"}, {"text": "that"}, {"text": "vendors"}, {"text": "were"}, {"text": "delivering"}, {"text": "goods"}, {"text": "more"}, {"text": "quickly"}, {"text": "*ICH*-1"}, {"text": "in"}, {"text": "October"}, {"text": "than"}, {"text": "they"}, {"text": "had"}, {"text": "*?*"}, {"text": "for"}, {"text": "each"}, {"text": "of"}, {"text": "the"}, {"text": "five"}, {"text": "previous"}, {"text": "months"}, {"text": "."}, {"text": "Economists"}, {"text": "consider"}, {"text": "that"}, {"text": "a"}, {"text": "sign"}, {"text": "that"}, {"text": "inflationary"}, {"text": "pressures"}, {"text": "are"}, {"text": "abating"}, {"text": "."}, {"text": "When"}, {"text": "demand"}, {"text": "is"}, {"text": "stronger"}, {"text": "than"}, {"text": "suppliers"}, {"text": "can"}, {"text": "handle"}, {"text": "*T*-1"}, {"text": "and"}, {"text": "delivery"}, {"text": "times"}, {"text": "lengthen"}, {"text": "*T*-1"}, {"text": ","}, {"text": "prices"}, {"text": "tend"}, {"text": "*-2"}, {"text": "to"}, {"text": "rise"}, {"text": "."}, {"text": "The"}, {"text": "purchasing"}, {"text": "managers"}, {"text": "'"}, {"text": "report"}, {"text": "is"}, {"text": "based"}, {"text": "*-56"}, {"text": "on"}, {"text": "data"}, {"text": "provided"}, {"text": "*"}, {"text": "by"}, {"text": "more"}, {"text": "than"}, {"text": "250"}, {"text": "purchasing"}, {"text": "executives"}, {"text": "."}, {"text": "Each"}, {"text": "of"}, {"text": "the"}, {"text": "survey"}, {"text": "'s"}, {"text": "indicators"}, {"text": "gauges"}, {"text": "the"}, {"text": "difference"}, {"text": "between"}, {"text": "the"}, {"text": "number"}, {"text": "of"}, {"text": "purchasers"}, {"text": "reporting"}, {"text": "improvement"}, {"text": "in"}, {"text": "a"}, {"text": "particular"}, {"text": "area"}, {"text": "and"}, {"text": "the"}, {"text": "number"}, {"text": "reporting"}, {"text": "a"}, {"text": "worsening"}, {"text": "."}, {"text": "For"}, {"text": "the"}, {"text": "first"}, {"text": "time"}, {"text": ","}, {"text": "the"}, {"text": "October"}, {"text": "survey"}, {"text": "polled"}, {"text": "members"}, {"text": "on"}, {"text": "imports"}, {"text": "."}, {"text": "It"}, {"text": "found"}, {"text": "that"}, {"text": "of"}, {"text": "the"}, {"text": "73"}, {"text": "%"}, {"text": "who"}, {"text": "*T*-51"}, {"text": "import"}, {"text": ","}, {"text": "10"}, {"text": "%"}, {"text": "*T*-1"}, {"text": "said"}, {"text": "0"}, {"text": "they"}, {"text": "imported"}, {"text": "more"}, {"text": "in"}, {"text": "October"}, {"text": "and"}, {"text": "12"}, {"text": "%"}, {"text": "*T*-1"}, {"text": "said"}, {"text": "0"}, {"text": "they"}, {"text": "imported"}, {"text": "less"}, {"text": "than"}, {"text": "the"}, {"text": "previous"}, {"text": "month"}, {"text": "."}, {"text": "While"}, {"text": "*-1"}, {"text": "acknowledging"}, {"text": "0"}, {"text": "one"}, {"text": "month"}, {"text": "'s"}, {"text": "figures"}, {"text": "do"}, {"text": "n't"}, {"text": "prove"}, {"text": "a"}, {"text": "trend"}, {"text": ","}, {"text": "Mr."}, {"text": "Bretz"}, {"text": "said"}, {"text": ","}, {"text": "``"}, {"text": "It"}, {"text": "does"}, {"text": "lead"}, {"text": "you"}, {"text": "to"}, {"text": "suspect"}, {"text": "0"}, {"text": "imports"}, {"text": "are"}, {"text": "going"}, {"text": "down"}, {"text": ","}, {"text": "or"}, {"text": "at"}, {"text": "least"}, {"text": "not"}, {"text": "increasing"}, {"text": "that"}, {"text": "much"}, {"text": "."}, {"text": "''"}, {"text": "Items"}, {"text": "listed"}, {"text": "*"}, {"text": "as"}, {"text": "*-1"}, {"text": "being"}, {"text": "in"}, {"text": "short"}, {"text": "supply"}, {"text": "numbered"}, {"text": "only"}, {"text": "about"}, {"text": "a"}, {"text": "dozen"}, {"text": ","}, {"text": "but"}, {"text": "they"}, {"text": "included"}, {"text": "one"}, {"text": "newcomer"}, {"text": ":"}, {"text": "milk"}, {"text": "and"}, {"text": "milk"}, {"text": "powder"}, {"text": "."}, {"text": "``"}, {"text": "It"}, {"text": "'s"}, {"text": "an"}, {"text": "odd"}, {"text": "thing"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "put"}, {"text": "*T*-1"}, {"text": "on"}, {"text": "the"}, {"text": "list"}, {"text": ","}, {"text": "''"}, {"text": "Mr."}, {"text": "Bretz"}, {"text": "noted"}, {"text": "*T*-2"}, {"text": "."}, {"text": "He"}, {"text": "said"}, {"text": "that"}, {"text": "for"}, {"text": "the"}, {"text": "second"}, {"text": "month"}, {"text": "in"}, {"text": "a"}, {"text": "row"}, {"text": ","}, {"text": "food"}, {"text": "processors"}, {"text": "reported"}, {"text": "a"}, {"text": "shortage"}, {"text": "of"}, {"text": "nonfat"}, {"text": "dry"}, {"text": "milk"}, {"text": "."}, {"text": "They"}, {"text": "blamed"}, {"text": "increased"}, {"text": "demand"}, {"text": "for"}, {"text": "dairy"}, {"text": "products"}, {"text": "at"}, {"text": "a"}, {"text": "time"}, {"text": "of"}, {"text": "exceptionally"}, {"text": "high"}, {"text": "U.S."}, {"text": "exports"}, {"text": "of"}, {"text": "dry"}, {"text": "milk"}, {"text": ","}, {"text": "coupled"}, {"text": "*"}, {"text": "with"}, {"text": "very"}, {"text": "low"}, {"text": "import"}, {"text": "quotas"}, {"text": "."}, {"text": "Pamela"}, {"text": "Sebastian"}, {"text": "in"}, {"text": "New"}, {"text": "York"}, {"text": "contributed"}, {"text": "to"}, {"text": "this"}, {"text": "article"}, {"text": "."}, {"text": "Here"}, {"text": "are"}, {"text": "*T*-1"}, {"text": "the"}, {"text": "Commerce"}, {"text": "Department"}, {"text": "'s"}, {"text": "figures"}, {"text": "for"}, {"text": "construction"}, {"text": "spending"}, {"text": "in"}, {"text": "billions"}, {"text": "of"}, {"text": "dollars"}, {"text": "at"}, {"text": "seasonally"}, {"text": "adjusted"}, {"text": "annual"}, {"text": "rates"}, {"text": "."}, {"text": "Here"}, {"text": "are"}, {"text": "*T*-1"}, {"text": "the"}, {"text": "Commerce"}, {"text": "Department"}, {"text": "'s"}, {"text": "latest"}, {"text": "figures"}, {"text": "for"}, {"text": "manufacturers"}, {"text": "in"}, {"text": "billions"}, {"text": "of"}, {"text": "dollars"}, {"text": ","}, {"text": "seasonally"}, {"text": "adjusted"}, {"text": "."}, {"text": "*"}, {"text": "Judging"}, {"text": "from"}, {"text": "the"}, {"text": "Americana"}, {"text": "in"}, {"text": "Haruki"}, {"text": "Murakami"}, {"text": "'s"}, {"text": "``"}, {"text": "A"}, {"text": "Wild"}, {"text": "Sheep"}, {"text": "Chase"}, {"text": "''"}, {"text": "-LRB-"}, {"text": "Kodansha"}, {"text": ","}, {"text": "320"}, {"text": "pages"}, {"text": ","}, {"text": "$"}, {"text": "18.95"}, {"text": "*U*"}, {"text": "-RRB-"}, {"text": ","}, {"text": "baby"}, {"text": "boomers"}, {"text": "on"}, {"text": "both"}, {"text": "sides"}, {"text": "of"}, {"text": "the"}, {"text": "Pacific"}, {"text": "have"}, {"text": "a"}, {"text": "lot"}, {"text": "in"}, {"text": "common"}, {"text": "."}, {"text": "Although"}, {"text": "*-2"}, {"text": "set"}, {"text": "*-1"}, {"text": "in"}, {"text": "Japan"}, {"text": ","}, {"text": "the"}, {"text": "novel"}, {"text": "'s"}, {"text": "texture"}, {"text": "is"}, {"text": "almost"}, {"text": "entirely"}, {"text": "Western"}, {"text": ","}, {"text": "especially"}, {"text": "American"}, {"text": "."}, {"text": "Characters"}, {"text": "drink"}, {"text": "Salty"}, {"text": "Dogs"}, {"text": ","}, {"text": "whistle"}, {"text": "``"}, {"text": "Johnny"}, {"text": "B."}, {"text": "Goode"}, {"text": "''"}, {"text": "and"}, {"text": "watch"}, {"text": "Bugs"}, {"text": "Bunny"}, {"text": "reruns"}, {"text": "."}, {"text": "They"}, {"text": "read"}, {"text": "Mickey"}, {"text": "Spillane"}, {"text": "and"}, {"text": "talk"}, {"text": "about"}, {"text": "Groucho"}, {"text": "and"}, {"text": "Harpo"}, {"text": "."}, {"text": "They"}, {"text": "worry"}, {"text": "about"}, {"text": "their"}, {"text": "careers"}, {"text": ","}, {"text": "drink"}, {"text": "too"}, {"text": "much"}, {"text": "and"}, {"text": "suffer"}, {"text": "through"}, {"text": "broken"}, {"text": "marriages"}, {"text": "and"}, {"text": "desultory"}, {"text": "affairs"}, {"text": "."}, {"text": "This"}, {"text": "is"}, {"text": "Japan"}, {"text": "?"}, {"text": "For"}, {"text": "an"}, {"text": "American"}, {"text": "reader"}, {"text": ","}, {"text": "part"}, {"text": "of"}, {"text": "the"}, {"text": "charm"}, {"text": "of"}, {"text": "this"}, {"text": "engaging"}, {"text": "novel"}, {"text": "should"}, {"text": "come"}, {"text": "in"}, {"text": "*"}, {"text": "recognizing"}, {"text": "that"}, {"text": "Japan"}, {"text": "is"}, {"text": "n't"}, {"text": "the"}, {"text": "buttoned-down"}, {"text": "society"}, {"text": "of"}, {"text": "contemporary"}, {"text": "American"}, {"text": "lore"}, {"text": "."}, {"text": "It"}, {"text": "*EXP*-1"}, {"text": "'s"}, {"text": "also"}, {"text": "refreshing"}, {"text": "*"}, {"text": "to"}, {"text": "read"}, {"text": "a"}, {"text": "Japanese"}, {"text": "author"}, {"text": "who"}, {"text": "*T*-52"}, {"text": "clearly"}, {"text": "does"}, {"text": "n't"}, {"text": "belong"}, {"text": "to"}, {"text": "the"}, {"text": "self-aggrandizing"}, {"text": "``"}, {"text": "we-Japanese"}, {"text": "''"}, {"text": "school"}, {"text": "of"}, {"text": "writers"}, {"text": "who"}, {"text": "*T*-53"}, {"text": "perpetuate"}, {"text": "the"}, {"text": "notion"}, {"text": "of"}, {"text": "the"}, {"text": "unique"}, {"text": "Japanese"}, {"text": ","}, {"text": "unfathomable"}, {"text": "by"}, {"text": "outsiders"}, {"text": "."}, {"text": "If"}, {"text": "``"}, {"text": "A"}, {"text": "Wild"}, {"text": "Sheep"}, {"text": "Chase"}, {"text": "''"}, {"text": "carries"}, {"text": "an"}, {"text": "implicit"}, {"text": "message"}, {"text": "for"}, {"text": "international"}, {"text": "relations"}, {"text": ","}, {"text": "it"}, {"text": "'s"}, {"text": "that"}, {"text": "the"}, {"text": "Japanese"}, {"text": "are"}, {"text": "more"}, {"text": "like"}, {"text": "us"}, {"text": "than"}, {"text": "most"}, {"text": "of"}, {"text": "us"}, {"text": "think"}, {"text": "0"}, {"text": "*?*"}, {"text": "."}, {"text": "That"}, {"text": "'s"}, {"text": "not"}, {"text": "*"}, {"text": "to"}, {"text": "say"}, {"text": "that"}, {"text": "the"}, {"text": "nutty"}, {"text": "plot"}, {"text": "of"}, {"text": "``"}, {"text": "A"}, {"text": "Wild"}, {"text": "Sheep"}, {"text": "Chase"}, {"text": "''"}, {"text": "is"}, {"text": "rooted"}, {"text": "*-57"}, {"text": "in"}, {"text": "reality"}, {"text": "."}, {"text": "It"}, {"text": "'s"}, {"text": "imaginative"}, {"text": "and"}, {"text": "often"}, {"text": "funny"}, {"text": "."}, {"text": "A"}, {"text": "disaffected"}, {"text": ","}, {"text": "hard-drinking"}, {"text": ","}, {"text": "nearly-30"}, {"text": "hero"}, {"text": "sets"}, {"text": "off"}, {"text": "for"}, {"text": "snow"}, {"text": "country"}, {"text": "in"}, {"text": "search"}, {"text": "of"}, {"text": "an"}, {"text": "elusive"}, {"text": "sheep"}, {"text": "with"}, {"text": "a"}, {"text": "star"}, {"text": "on"}, {"text": "its"}, {"text": "back"}, {"text": "at"}, {"text": "the"}, {"text": "behest"}, {"text": "of"}, {"text": "a"}, {"text": "sinister"}, {"text": ","}, {"text": "erudite"}, {"text": "mobster"}, {"text": "with"}, {"text": "a"}, {"text": "Stanford"}, {"text": "degree"}, {"text": "."}, {"text": "He"}, {"text": "has"}, {"text": "in"}, {"text": "tow"}, {"text": "his"}, {"text": "prescient"}, {"text": "girlfriend"}, {"text": ","}, {"text": "whose"}, {"text": "sassy"}, {"text": "retorts"}, {"text": "*T*-54"}, {"text": "mark"}, {"text": "her"}, {"text": "as"}, {"text": "anything"}, {"text": "but"}, {"text": "a"}, {"text": "docile"}, {"text": "butterfly"}, {"text": "."}, {"text": "Along"}, {"text": "the"}, {"text": "way"}, {"text": ","}, {"text": "he"}, {"text": "meets"}, {"text": "a"}, {"text": "solicitous"}, {"text": "Christian"}, {"text": "chauffeur"}, {"text": "who"}, {"text": "*T*-55"}, {"text": "offers"}, {"text": "the"}, {"text": "hero"}, {"text": "God"}, {"text": "'s"}, {"text": "phone"}, {"text": "number"}, {"text": ";"}, {"text": "and"}, {"text": "the"}, {"text": "Sheep"}, {"text": "Man"}, {"text": ","}, {"text": "a"}, {"text": "sweet"}, {"text": ","}, {"text": "roughhewn"}, {"text": "figure"}, {"text": "who"}, {"text": "*T*-56"}, {"text": "wears"}, {"text": "--"}, {"text": "what"}, {"text": "else"}, {"text": "--"}, {"text": "a"}, {"text": "sheepskin"}, {"text": "."}, {"text": "The"}, {"text": "40-year-old"}, {"text": "Mr."}, {"text": "Murakami"}, {"text": "is"}, {"text": "a"}, {"text": "publishing"}, {"text": "sensation"}, {"text": "in"}, {"text": "Japan"}, {"text": "."}, {"text": "A"}, {"text": "more"}, {"text": "recent"}, {"text": "novel"}, {"text": ","}, {"text": "``"}, {"text": "Norwegian"}, {"text": "Wood"}, {"text": "''"}, {"text": "-LRB-"}, {"text": "every"}, {"text": "Japanese"}, {"text": "under"}, {"text": "40"}, {"text": "seems"}, {"text": "*-1"}, {"text": "to"}, {"text": "be"}, {"text": "fluent"}, {"text": "in"}, {"text": "Beatles"}, {"text": "lyrics"}, {"text": "-RRB-"}, {"text": ","}, {"text": "has"}, {"text": "sold"}, {"text": "more"}, {"text": "than"}, {"text": "four"}, {"text": "million"}, {"text": "copies"}, {"text": "since"}, {"text": "Kodansha"}, {"text": "published"}, {"text": "it"}, {"text": "in"}, {"text": "1987"}, {"text": "."}, {"text": "But"}, {"text": "he"}, {"text": "is"}, {"text": "just"}, {"text": "one"}, {"text": "of"}, {"text": "several"}, {"text": "youthful"}, {"text": "writers"}, {"text": "--"}, {"text": "Tokyo"}, {"text": "'s"}, {"text": "brat"}, {"text": "pack"}, {"text": "--"}, {"text": "who"}, {"text": "*T*-57"}, {"text": "are"}, {"text": "dominating"}, {"text": "the"}, {"text": "best-seller"}, {"text": "charts"}, {"text": "in"}, {"text": "Japan"}, {"text": "."}, {"text": "Their"}, {"text": "books"}, {"text": "are"}, {"text": "written"}, {"text": "*-1"}, {"text": "in"}, {"text": "idiomatic"}, {"text": ","}, {"text": "contemporary"}, {"text": "language"}, {"text": "and"}, {"text": "usually"}, {"text": "carry"}, {"text": "hefty"}, {"text": "dashes"}, {"text": "of"}, {"text": "Americana"}, {"text": "."}, {"text": "In"}, {"text": "Robert"}, {"text": "Whiting"}, {"text": "'s"}, {"text": "``"}, {"text": "You"}, {"text": "Gotta"}, {"text": "Have"}, {"text": "Wa"}, {"text": "''"}, {"text": "-LRB-"}, {"text": "Macmillan"}, {"text": ","}, {"text": "339"}, {"text": "pages"}, {"text": ","}, {"text": "$"}, {"text": "17.95"}, {"text": "*U*"}, {"text": "-RRB-"}, {"text": ","}, {"text": "the"}, {"text": "Beatles"}, {"text": "give"}, {"text": "way"}, {"text": "to"}, {"text": "baseball"}, {"text": ","}, {"text": "in"}, {"text": "the"}, {"text": "Nipponese"}, {"text": "version"}, {"text": "0"}, {"text": "we"}, {"text": "would"}, {"text": "be"}, {"text": "hard"}, {"text": "put"}, {"text": "*-2"}, {"text": "to"}, {"text": "call"}, {"text": "*T*-1"}, {"text": "a"}, {"text": "``"}, {"text": "game"}, {"text": "."}, {"text": "''"}, {"text": "As"}, {"text": "Mr."}, {"text": "Whiting"}, {"text": "describes"}, {"text": "it"}, {"text": ","}, {"text": "Nipponese"}, {"text": "baseball"}, {"text": "is"}, {"text": "a"}, {"text": "``"}, {"text": "mirror"}, {"text": "of"}, {"text": "Japan"}, {"text": "'s"}, {"text": "fabled"}, {"text": "virtues"}, {"text": "of"}, {"text": "hard"}, {"text": "work"}, {"text": "and"}, {"text": "harmony"}, {"text": "."}, {"text": "''"}, {"text": "``"}, {"text": "Wa"}, {"text": "''"}, {"text": "is"}, {"text": "Japanese"}, {"text": "for"}, {"text": "``"}, {"text": "team"}, {"text": "spirit"}, {"text": "''"}, {"text": "and"}, {"text": "Japanese"}, {"text": "ballplayers"}, {"text": "have"}, {"text": "miles"}, {"text": "and"}, {"text": "miles"}, {"text": "of"}, {"text": "it"}, {"text": "."}, {"text": "A"}, {"text": "player"}, {"text": "'s"}, {"text": "commitment"}, {"text": "to"}, {"text": "practice"}, {"text": "and"}, {"text": "team"}, {"text": "image"}, {"text": "is"}, {"text": "as"}, {"text": "important"}, {"text": "as"}, {"text": "his"}, {"text": "batting"}, {"text": "average"}, {"text": "."}, {"text": "Polls"}, {"text": "once"}, {"text": "named"}, {"text": "Tokyo"}, {"text": "Giants"}, {"text": "star"}, {"text": "Tatsunori"}, {"text": "Hara"}, {"text": ","}, {"text": "a"}, {"text": "``"}, {"text": "humble"}, {"text": ","}, {"text": "uncomplaining"}, {"text": ","}, {"text": "obedient"}, {"text": "soul"}, {"text": ","}, {"text": "''"}, {"text": "as"}, {"text": "the"}, {"text": "male"}, {"text": "symbol"}, {"text": "of"}, {"text": "Japan"}, {"text": "."}, {"text": "But"}, {"text": "other"}, {"text": "than"}, {"text": "the"}, {"text": "fact"}, {"text": "that"}, {"text": "besuboru"}, {"text": "is"}, {"text": "played"}, {"text": "*-1"}, {"text": "with"}, {"text": "a"}, {"text": "ball"}, {"text": "and"}, {"text": "a"}, {"text": "bat"}, {"text": ","}, {"text": "it"}, {"text": "'s"}, {"text": "unrecognizable"}, {"text": ":"}, {"text": "Fans"}, {"text": "politely"}, {"text": "return"}, {"text": "foul"}, {"text": "balls"}, {"text": "to"}, {"text": "stadium"}, {"text": "ushers"}, {"text": ";"}, {"text": "the"}, {"text": "strike"}, {"text": "zone"}, {"text": "expands"}, {"text": "depending"}, {"text": "on"}, {"text": "the"}, {"text": "size"}, {"text": "of"}, {"text": "the"}, {"text": "hitter"}, {"text": ";"}, {"text": "ties"}, {"text": "are"}, {"text": "permitted"}, {"text": "*-2"}, {"text": "--"}, {"text": "even"}, {"text": "welcomed"}, {"text": "*-2"}, {"text": "--"}, {"text": "since"}, {"text": "they"}, {"text": "honorably"}, {"text": "sidestep"}, {"text": "the"}, {"text": "shame"}, {"text": "of"}, {"text": "defeat"}, {"text": ";"}, {"text": "players"}, {"text": "must"}, {"text": "abide"}, {"text": "by"}, {"text": "strict"}, {"text": "rules"}, {"text": "of"}, {"text": "conduct"}, {"text": "even"}, {"text": "in"}, {"text": "their"}, {"text": "personal"}, {"text": "lives"}, {"text": "--"}, {"text": "players"}, {"text": "for"}, {"text": "the"}, {"text": "Tokyo"}, {"text": "Giants"}, {"text": ","}, {"text": "for"}, {"text": "example"}, {"text": ","}, {"text": "must"}, {"text": "always"}, {"text": "wear"}, {"text": "ties"}, {"text": "when"}, {"text": "on"}, {"text": "the"}, {"text": "road"}, {"text": "."}, {"text": "``"}, {"text": "You"}, {"text": "Gotta"}, {"text": "Have"}, {"text": "Wa"}, {"text": "''"}, {"text": "is"}, {"text": "the"}, {"text": "often"}, {"text": "amusing"}, {"text": "chronicle"}, {"text": "of"}, {"text": "how"}, {"text": "American"}, {"text": "ballplayers"}, {"text": ","}, {"text": "rationed"}, {"text": "*"}, {"text": "to"}, {"text": "two"}, {"text": "per"}, {"text": "team"}, {"text": ","}, {"text": "fare"}, {"text": "*T*-1"}, {"text": "in"}, {"text": "Japan"}, {"text": "."}, {"text": "Despite"}, {"text": "the"}, {"text": "enormous"}, {"text": "sums"}, {"text": "of"}, {"text": "money"}, {"text": "0"}, {"text": "they"}, {"text": "'re"}, {"text": "paid"}, {"text": "*T*-1"}, {"text": "*-2"}, {"text": "to"}, {"text": "stand"}, {"text": "up"}, {"text": "at"}, {"text": "a"}, {"text": "Japanese"}, {"text": "plate"}, {"text": ","}, {"text": "a"}, {"text": "good"}, {"text": "number"}, {"text": "decide"}, {"text": "0"}, {"text": "it"}, {"text": "'s"}, {"text": "not"}, {"text": "worth"}, {"text": "it"}, {"text": "and"}, {"text": "run"}, {"text": "for"}, {"text": "home"}, {"text": "."}, {"text": "``"}, {"text": "Funny"}, {"text": "Business"}, {"text": "''"}, {"text": "-LRB-"}, {"text": "Soho"}, {"text": ","}, {"text": "228"}, {"text": "pages"}, {"text": ","}, {"text": "$"}, {"text": "17.95"}, {"text": "*U*"}, {"text": "-RRB-"}, {"text": "by"}, {"text": "Gary"}, {"text": "Katzenstein"}, {"text": "is"}, {"text": "anything"}, {"text": "but"}, {"text": "*?*"}, {"text": "."}, {"text": "It"}, {"text": "'s"}, {"text": "the"}, {"text": "petulant"}, {"text": "complaint"}, {"text": "of"}, {"text": "an"}, {"text": "impudent"}, {"text": "American"}, {"text": "whom"}, {"text": "Sony"}, {"text": "hosted"}, {"text": "*T*-58"}, {"text": "for"}, {"text": "a"}, {"text": "year"}, {"text": "while"}, {"text": "he"}, {"text": "was"}, {"text": "on"}, {"text": "a"}, {"text": "Luce"}, {"text": "Fellowship"}, {"text": "in"}, {"text": "Tokyo"}, {"text": "--"}, {"text": "to"}, {"text": "the"}, {"text": "regret"}, {"text": "of"}, {"text": "both"}, {"text": "parties"}, {"text": "."}, {"text": "In"}, {"text": "sometimes"}, {"text": "amusing"}, {"text": ","}, {"text": "more"}, {"text": "often"}, {"text": "supercilious"}, {"text": ","}, {"text": "even"}, {"text": "vicious"}, {"text": "passages"}, {"text": ","}, {"text": "Mr."}, {"text": "Katzenstein"}, {"text": "describes"}, {"text": "how"}, {"text": "Sony"}, {"text": "invades"}, {"text": "even"}, {"text": "the"}, {"text": "most"}, {"text": "mundane"}, {"text": "aspects"}, {"text": "of"}, {"text": "its"}, {"text": "workers"}, {"text": "'"}, {"text": "lives"}, {"text": "--"}, {"text": "at"}, {"text": "the"}, {"text": "regimented"}, {"text": "office"}, {"text": ","}, {"text": "where"}, {"text": "employees"}, {"text": "are"}, {"text": "assigned"}, {"text": "*-59"}, {"text": "lunch"}, {"text": "partners"}, {"text": "*T*-1"}, {"text": "--"}, {"text": "and"}, {"text": "at"}, {"text": "``"}, {"text": "home"}, {"text": "''"}, {"text": "in"}, {"text": "the"}, {"text": "austere"}, {"text": "company"}, {"text": "dormitory"}, {"text": "run"}, {"text": "*"}, {"text": "by"}, {"text": "a"}, {"text": "prying"}, {"text": "caretaker"}, {"text": "*T*-2"}, {"text": "."}, {"text": "Some"}, {"text": "of"}, {"text": "his"}, {"text": "observations"}, {"text": "about"}, {"text": "Japanese"}, {"text": "management"}, {"text": "style"}, {"text": "are"}, {"text": "on"}, {"text": "the"}, {"text": "mark"}, {"text": "."}, {"text": "It"}, {"text": "*EXP*-3"}, {"text": "'s"}, {"text": "probably"}, {"text": "true"}, {"text": "that"}, {"text": "many"}, {"text": "salarymen"}, {"text": "put"}, {"text": "in"}, {"text": "unproductive"}, {"text": "overtime"}, {"text": "just"}, {"text": "for"}, {"text": "the"}, {"text": "sake"}, {"text": "of"}, {"text": "solidarity"}, {"text": ","}, {"text": "that"}, {"text": "the"}, {"text": "system"}, {"text": "is"}, {"text": "so"}, {"text": "hierarchical"}, {"text": "that"}, {"text": "only"}, {"text": "the"}, {"text": "assistant"}, {"text": "manager"}, {"text": "can"}, {"text": "talk"}, {"text": "to"}, {"text": "the"}, {"text": "manager"}, {"text": "and"}, {"text": "the"}, {"text": "manager"}, {"text": "to"}, {"text": "the"}, {"text": "general"}, {"text": "manager"}, {"text": ","}, {"text": "and"}, {"text": "that"}, {"text": "Sony"}, {"text": "was"}, {"text": "chary"}, {"text": "of"}, {"text": "*-4"}, {"text": "letting"}, {"text": "a"}, {"text": "young"}, {"text": ","}, {"text": "short-term"}, {"text": "American"}, {"text": "employee"}, {"text": "take"}, {"text": "on"}, {"text": "any"}, {"text": "responsibility"}, {"text": "."}, {"text": "All"}, {"text": "of"}, {"text": "this"}, {"text": "must"}, {"text": "have"}, {"text": "been"}, {"text": "enormously"}, {"text": "frustrating"}, {"text": "to"}, {"text": "Mr."}, {"text": "Katzenstein"}, {"text": ","}, {"text": "who"}, {"text": "*T*-59"}, {"text": "went"}, {"text": "to"}, {"text": "Sony"}, {"text": "with"}, {"text": "degrees"}, {"text": "in"}, {"text": "business"}, {"text": "and"}, {"text": "computer"}, {"text": "science"}, {"text": "and"}, {"text": "was"}, {"text": "raring"}, {"text": "*-1"}, {"text": "to"}, {"text": "invent"}, {"text": "another"}, {"text": "Walkman"}, {"text": "."}, {"text": "But"}, {"text": "Sony"}, {"text": "ultimately"}, {"text": "took"}, {"text": "a"}, {"text": "lesson"}, {"text": "from"}, {"text": "the"}, {"text": "American"}, {"text": "management"}, {"text": "books"}, {"text": "and"}, {"text": "fired"}, {"text": "Mr."}, {"text": "Katzenstein"}, {"text": ","}, {"text": "after"}, {"text": "he"}, {"text": "committed"}, {"text": "the"}, {"text": "social"}, {"text": "crime"}, {"text": "of"}, {"text": "*"}, {"text": "making"}, {"text": "an"}, {"text": "appointment"}, {"text": "*"}, {"text": "to"}, {"text": "see"}, {"text": "the"}, {"text": "venerable"}, {"text": "Akio"}, {"text": "Morita"}, {"text": ","}, {"text": "founder"}, {"text": "of"}, {"text": "Sony"}, {"text": "."}, {"text": "It"}, {"text": "*EXP*-1"}, {"text": "'s"}, {"text": "a"}, {"text": "shame"}, {"text": "0"}, {"text": "their"}, {"text": "meeting"}, {"text": "never"}, {"text": "took"}, {"text": "place"}, {"text": "."}, {"text": "Mr."}, {"text": "Katzenstein"}, {"text": "certainly"}, {"text": "would"}, {"text": "have"}, {"text": "learned"}, {"text": "something"}, {"text": ","}, {"text": "and"}, {"text": "it"}, {"text": "*EXP*-1"}, {"text": "'s"}, {"text": "even"}, {"text": "possible"}, {"text": "0"}, {"text": "Mr."}, {"text": "Morita"}, {"text": "would"}, {"text": "have"}, {"text": "*?*"}, {"text": "too"}, {"text": "."}, {"text": "Ms."}, {"text": "Kirkpatrick"}, {"text": ","}, {"text": "the"}, {"text": "Journal"}, {"text": "'s"}, {"text": "deputy"}, {"text": "editorial"}, {"text": "features"}, {"text": "editor"}, {"text": ","}, {"text": "worked"}, {"text": "in"}, {"text": "Tokyo"}, {"text": "for"}, {"text": "three"}, {"text": "years"}, {"text": "."}, {"text": "More"}, {"text": "and"}, {"text": "more"}, {"text": "corners"}, {"text": "of"}, {"text": "the"}, {"text": "globe"}, {"text": "are"}, {"text": "becoming"}, {"text": "free"}, {"text": "of"}, {"text": "tobacco"}, {"text": "smoke"}, {"text": "."}, {"text": "In"}, {"text": "Singapore"}, {"text": ","}, {"text": "a"}, {"text": "new"}, {"text": "law"}, {"text": "requires"}, {"text": "smokers"}, {"text": "to"}, {"text": "put"}, {"text": "out"}, {"text": "their"}, {"text": "cigarettes"}, {"text": "before"}, {"text": "*-1"}, {"text": "entering"}, {"text": "restaurants"}, {"text": ","}, {"text": "department"}, {"text": "stores"}, {"text": "and"}, {"text": "sports"}, {"text": "centers"}, {"text": "or"}, {"text": "face"}, {"text": "a"}, {"text": "$"}, {"text": "250"}, {"text": "*U*"}, {"text": "fine"}, {"text": "."}, {"text": "Discos"}, {"text": "and"}, {"text": "private"}, {"text": "clubs"}, {"text": "are"}, {"text": "exempt"}, {"text": "from"}, {"text": "the"}, {"text": "ban"}, {"text": ","}, {"text": "and"}, {"text": "smoking"}, {"text": "will"}, {"text": "be"}, {"text": "permitted"}, {"text": "*-60"}, {"text": "in"}, {"text": "bars"}, {"text": "except"}, {"text": "during"}, {"text": "meal"}, {"text": "hours"}, {"text": ","}, {"text": "an"}, {"text": "official"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Singapore"}, {"text": "already"}, {"text": "bans"}, {"text": "smoking"}, {"text": "in"}, {"text": "all"}, {"text": "theaters"}, {"text": ","}, {"text": "buses"}, {"text": ","}, {"text": "public"}, {"text": "elevators"}, {"text": ","}, {"text": "hospitals"}, {"text": "and"}, {"text": "fast-food"}, {"text": "restaurants"}, {"text": "."}, {"text": "In"}, {"text": "Malaysia"}, {"text": ","}, {"text": "Siti"}, {"text": "Zaharah"}, {"text": "Sulaiman"}, {"text": ","}, {"text": "a"}, {"text": "deputy"}, {"text": "minister"}, {"text": "in"}, {"text": "the"}, {"text": "prime"}, {"text": "minister"}, {"text": "'s"}, {"text": "office"}, {"text": ","}, {"text": "launched"}, {"text": "a"}, {"text": "``"}, {"text": "No-Smoking"}, {"text": "Week"}, {"text": "''"}, {"text": "at"}, {"text": "the"}, {"text": "Mara"}, {"text": "Institute"}, {"text": "of"}, {"text": "Technology"}, {"text": "near"}, {"text": "Kuala"}, {"text": "Lumpur"}, {"text": "and"}, {"text": "urged"}, {"text": "other"}, {"text": "schools"}, {"text": "*-1"}, {"text": "to"}, {"text": "ban"}, {"text": "on-campus"}, {"text": "smoking"}, {"text": "."}, {"text": "South"}, {"text": "Korea"}, {"text": "has"}, {"text": "different"}, {"text": "concerns"}, {"text": "."}, {"text": "In"}, {"text": "Seoul"}, {"text": ","}, {"text": "officials"}, {"text": "began"}, {"text": "*-1"}, {"text": "visiting"}, {"text": "about"}, {"text": "26,000"}, {"text": "cigarette"}, {"text": "stalls"}, {"text": "*-1"}, {"text": "to"}, {"text": "remove"}, {"text": "illegal"}, {"text": "posters"}, {"text": "and"}, {"text": "signboards"}, {"text": "advertising"}, {"text": "imported"}, {"text": "cigarettes"}, {"text": "."}, {"text": "South"}, {"text": "Korea"}, {"text": "has"}, {"text": "opened"}, {"text": "its"}, {"text": "market"}, {"text": "to"}, {"text": "foreign"}, {"text": "cigarettes"}, {"text": "but"}, {"text": "restricts"}, {"text": "advertising"}, {"text": "to"}, {"text": "designated"}, {"text": "places"}, {"text": "."}, {"text": "A"}, {"text": "marketing"}, {"text": "study"}, {"text": "indicates"}, {"text": "that"}, {"text": "Hong"}, {"text": "Kong"}, {"text": "consumers"}, {"text": "are"}, {"text": "the"}, {"text": "most"}, {"text": "materialistic"}, {"text": "in"}, {"text": "the"}, {"text": "14"}, {"text": "major"}, {"text": "markets"}, {"text": "where"}, {"text": "the"}, {"text": "survey"}, {"text": "was"}, {"text": "carried"}, {"text": "out"}, {"text": "*T*-1"}, {"text": "."}, {"text": "The"}, {"text": "study"}, {"text": "by"}, {"text": "the"}, {"text": "Backer"}, {"text": "Spielvogel"}, {"text": "Bates"}, {"text": "ad"}, {"text": "agency"}, {"text": "also"}, {"text": "found"}, {"text": "that"}, {"text": "the"}, {"text": "colony"}, {"text": "'s"}, {"text": "consumers"}, {"text": "feel"}, {"text": "more"}, {"text": "pressured"}, {"text": "than"}, {"text": "those"}, {"text": "in"}, {"text": "any"}, {"text": "of"}, {"text": "the"}, {"text": "other"}, {"text": "surveyed"}, {"text": "markets"}, {"text": ","}, {"text": "which"}, {"text": "*T*-60"}, {"text": "include"}, {"text": "the"}, {"text": "U.S."}, {"text": "and"}, {"text": "Japan"}, {"text": "."}, {"text": "The"}, {"text": "survey"}, {"text": "found"}, {"text": "that"}, {"text": "nearly"}, {"text": "half"}, {"text": "of"}, {"text": "Hong"}, {"text": "Kong"}, {"text": "consumers"}, {"text": "espouse"}, {"text": "what"}, {"text": "it"}, {"text": "identified"}, {"text": "*T*-61"}, {"text": "as"}, {"text": "materialistic"}, {"text": "values"}, {"text": ","}, {"text": "compared"}, {"text": "with"}, {"text": "about"}, {"text": "one-third"}, {"text": "in"}, {"text": "Japan"}, {"text": "and"}, {"text": "the"}, {"text": "U.S."}, {"text": "."}, {"text": "More"}, {"text": "than"}, {"text": "three"}, {"text": "in"}, {"text": "five"}, {"text": "said"}, {"text": "0"}, {"text": "they"}, {"text": "are"}, {"text": "under"}, {"text": "a"}, {"text": "great"}, {"text": "deal"}, {"text": "of"}, {"text": "stress"}, {"text": "most"}, {"text": "of"}, {"text": "the"}, {"text": "time"}, {"text": ","}, {"text": "compared"}, {"text": "with"}, {"text": "less"}, {"text": "than"}, {"text": "one"}, {"text": "in"}, {"text": "two"}, {"text": "U.S."}, {"text": "consumers"}, {"text": "and"}, {"text": "one"}, {"text": "in"}, {"text": "four"}, {"text": "in"}, {"text": "Japan"}, {"text": "."}, {"text": "The"}, {"text": "Thai"}, {"text": "cabinet"}, {"text": "endorsed"}, {"text": "Finance"}, {"text": "Minister"}, {"text": "Pramual"}, {"text": "Sabhavasu"}, {"text": "'s"}, {"text": "proposal"}, {"text": "*"}, {"text": "to"}, {"text": "build"}, {"text": "a"}, {"text": "$"}, {"text": "19"}, {"text": "million"}, {"text": "*U*"}, {"text": "conference"}, {"text": "center"}, {"text": "for"}, {"text": "a"}, {"text": "joint"}, {"text": "meeting"}, {"text": "of"}, {"text": "the"}, {"text": "World"}, {"text": "Bank"}, {"text": "and"}, {"text": "International"}, {"text": "Monetary"}, {"text": "Fund"}, {"text": "two"}, {"text": "years"}, {"text": "from"}, {"text": "now"}, {"text": "."}, {"text": "The"}, {"text": "meeting"}, {"text": ","}, {"text": "which"}, {"text": "*T*-62"}, {"text": "is"}, {"text": "expected"}, {"text": "*-1"}, {"text": "to"}, {"text": "draw"}, {"text": "20,000"}, {"text": "to"}, {"text": "Bangkok"}, {"text": ","}, {"text": "was"}, {"text": "going"}, {"text": "*-2"}, {"text": "to"}, {"text": "be"}, {"text": "held"}, {"text": "*-61"}, {"text": "at"}, {"text": "the"}, {"text": "Central"}, {"text": "Plaza"}, {"text": "Hotel"}, {"text": ","}, {"text": "but"}, {"text": "the"}, {"text": "government"}, {"text": "balked"}, {"text": "at"}, {"text": "the"}, {"text": "hotel"}, {"text": "'s"}, {"text": "conditions"}, {"text": "for"}, {"text": "*"}, {"text": "undertaking"}, {"text": "necessary"}, {"text": "expansion"}, {"text": "."}, {"text": "A"}, {"text": "major"}, {"text": "concern"}, {"text": "about"}, {"text": "the"}, {"text": "current"}, {"text": "plan"}, {"text": "is"}, {"text": "whether"}, {"text": "the"}, {"text": "new"}, {"text": "center"}, {"text": "can"}, {"text": "be"}, {"text": "built"}, {"text": "*-62"}, {"text": "in"}, {"text": "such"}, {"text": "a"}, {"text": "short"}, {"text": "time"}, {"text": "."}, {"text": "Yasser"}, {"text": "Arafat"}, {"text": "has"}, {"text": "written"}, {"text": "to"}, {"text": "the"}, {"text": "chairman"}, {"text": "of"}, {"text": "the"}, {"text": "International"}, {"text": "Olympic"}, {"text": "Committee"}, {"text": "*-2"}, {"text": "asking"}, {"text": "him"}, {"text": "*-3"}, {"text": "to"}, {"text": "back"}, {"text": "a"}, {"text": "Palestinian"}, {"text": "bid"}, {"text": "*"}, {"text": "to"}, {"text": "join"}, {"text": "the"}, {"text": "committee"}, {"text": ","}, {"text": "the"}, {"text": "Palestine"}, {"text": "Liberation"}, {"text": "Organization"}, {"text": "news"}, {"text": "agency"}, {"text": "WAFA"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "An"}, {"text": "official"}, {"text": "of"}, {"text": "the"}, {"text": "Palestinian"}, {"text": "Olympic"}, {"text": "Committee"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "committee"}, {"text": "first"}, {"text": "applied"}, {"text": "for"}, {"text": "membership"}, {"text": "in"}, {"text": "1979"}, {"text": "and"}, {"text": "renewed"}, {"text": "its"}, {"text": "application"}, {"text": "in"}, {"text": "August"}, {"text": "of"}, {"text": "this"}, {"text": "year"}, {"text": "."}, {"text": "The"}, {"text": "PLO"}, {"text": "in"}, {"text": "recent"}, {"text": "months"}, {"text": "has"}, {"text": "been"}, {"text": "trying"}, {"text": "*-1"}, {"text": "to"}, {"text": "join"}, {"text": "international"}, {"text": "organizations"}, {"text": "but"}, {"text": "failed"}, {"text": "earlier"}, {"text": "this"}, {"text": "year"}, {"text": "*-1"}, {"text": "to"}, {"text": "win"}, {"text": "membership"}, {"text": "in"}, {"text": "the"}, {"text": "World"}, {"text": "Health"}, {"text": "Organization"}, {"text": "and"}, {"text": "the"}, {"text": "World"}, {"text": "Tourism"}, {"text": "Organization"}, {"text": "."}, {"text": "A"}, {"text": "Beijing"}, {"text": "food-shop"}, {"text": "assistant"}, {"text": "has"}, {"text": "become"}, {"text": "the"}, {"text": "first"}, {"text": "mainland"}, {"text": "Chinese"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "to"}, {"text": "get"}, {"text": "AIDS"}, {"text": "through"}, {"text": "sex"}, {"text": ","}, {"text": "the"}, {"text": "People"}, {"text": "'s"}, {"text": "Daily"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "It"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "man"}, {"text": ","}, {"text": "whom"}, {"text": "it"}, {"text": "did"}, {"text": "not"}, {"text": "name"}, {"text": "*T*-63"}, {"text": ","}, {"text": "had"}, {"text": "been"}, {"text": "found"}, {"text": "*-1"}, {"text": "to"}, {"text": "have"}, {"text": "the"}, {"text": "disease"}, {"text": "after"}, {"text": "hospital"}, {"text": "tests"}, {"text": "."}, {"text": "Once"}, {"text": "the"}, {"text": "disease"}, {"text": "was"}, {"text": "confirmed"}, {"text": "*-63"}, {"text": ","}, {"text": "all"}, {"text": "the"}, {"text": "man"}, {"text": "'s"}, {"text": "associates"}, {"text": "and"}, {"text": "family"}, {"text": "were"}, {"text": "tested"}, {"text": "*-64"}, {"text": ","}, {"text": "but"}, {"text": "none"}, {"text": "have"}, {"text": "so"}, {"text": "far"}, {"text": "been"}, {"text": "found"}, {"text": "*-1"}, {"text": "to"}, {"text": "have"}, {"text": "AIDS"}, {"text": ","}, {"text": "the"}, {"text": "newspaper"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "."}, {"text": "The"}, {"text": "man"}, {"text": "had"}, {"text": "for"}, {"text": "a"}, {"text": "long"}, {"text": "time"}, {"text": "had"}, {"text": "``"}, {"text": "a"}, {"text": "chaotic"}, {"text": "sex"}, {"text": "life"}, {"text": ","}, {"text": "''"}, {"text": "including"}, {"text": "relations"}, {"text": "with"}, {"text": "foreign"}, {"text": "men"}, {"text": ","}, {"text": "the"}, {"text": "newspaper"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "The"}, {"text": "Polish"}, {"text": "government"}, {"text": "increased"}, {"text": "home"}, {"text": "electricity"}, {"text": "charges"}, {"text": "by"}, {"text": "150"}, {"text": "%"}, {"text": "and"}, {"text": "doubled"}, {"text": "gas"}, {"text": "prices"}, {"text": "."}, {"text": "The"}, {"text": "official"}, {"text": "news"}, {"text": "agency"}, {"text": "PAP"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "increases"}, {"text": "were"}, {"text": "intended"}, {"text": "*-1"}, {"text": "to"}, {"text": "bring"}, {"text": "unrealistically"}, {"text": "low"}, {"text": "energy"}, {"text": "charges"}, {"text": "into"}, {"text": "line"}, {"text": "with"}, {"text": "production"}, {"text": "costs"}, {"text": "and"}, {"text": "compensate"}, {"text": "for"}, {"text": "a"}, {"text": "rise"}, {"text": "in"}, {"text": "coal"}, {"text": "prices"}, {"text": "."}, {"text": "In"}, {"text": "happier"}, {"text": "news"}, {"text": ","}, {"text": "South"}, {"text": "Korea"}, {"text": ","}, {"text": "in"}, {"text": "*-1"}, {"text": "establishing"}, {"text": "diplomatic"}, {"text": "ties"}, {"text": "with"}, {"text": "Poland"}, {"text": "yesterday"}, {"text": ","}, {"text": "announced"}, {"text": "$"}, {"text": "450"}, {"text": "million"}, {"text": "*U*"}, {"text": "in"}, {"text": "loans"}, {"text": "to"}, {"text": "the"}, {"text": "financially"}, {"text": "strapped"}, {"text": "Warsaw"}, {"text": "government"}, {"text": "."}, {"text": "In"}, {"text": "a"}, {"text": "victory"}, {"text": "for"}, {"text": "environmentalists"}, {"text": ","}, {"text": "Hungary"}, {"text": "'s"}, {"text": "parliament"}, {"text": "terminated"}, {"text": "a"}, {"text": "multibillion-dollar"}, {"text": "River"}, {"text": "Danube"}, {"text": "dam"}, {"text": "being"}, {"text": "built"}, {"text": "*"}, {"text": "by"}, {"text": "Austrian"}, {"text": "firms"}, {"text": "."}, {"text": "The"}, {"text": "Nagymaros"}, {"text": "dam"}, {"text": "was"}, {"text": "designed"}, {"text": "*-1"}, {"text": "*-2"}, {"text": "to"}, {"text": "be"}, {"text": "twinned"}, {"text": "*-3"}, {"text": "with"}, {"text": "another"}, {"text": "dam"}, {"text": ","}, {"text": "now"}, {"text": "nearly"}, {"text": "complete"}, {"text": ","}, {"text": "100"}, {"text": "miles"}, {"text": "upstream"}, {"text": "in"}, {"text": "Czechoslovakia"}, {"text": "."}, {"text": "In"}, {"text": "*-2"}, {"text": "ending"}, {"text": "Hungary"}, {"text": "'s"}, {"text": "part"}, {"text": "of"}, {"text": "the"}, {"text": "project"}, {"text": ","}, {"text": "Parliament"}, {"text": "authorized"}, {"text": "Prime"}, {"text": "Minister"}, {"text": "Miklos"}, {"text": "Nemeth"}, {"text": "to"}, {"text": "modify"}, {"text": "a"}, {"text": "1977"}, {"text": "agreement"}, {"text": "with"}, {"text": "Czechoslovakia"}, {"text": ","}, {"text": "which"}, {"text": "*T*-64"}, {"text": "still"}, {"text": "wants"}, {"text": "the"}, {"text": "dam"}, {"text": "to"}, {"text": "be"}, {"text": "built"}, {"text": "*-1"}, {"text": "."}, {"text": "Mr."}, {"text": "Nemeth"}, {"text": "said"}, {"text": "in"}, {"text": "parliament"}, {"text": "that"}, {"text": "Czechoslovakia"}, {"text": "and"}, {"text": "Hungary"}, {"text": "would"}, {"text": "suffer"}, {"text": "environmental"}, {"text": "damage"}, {"text": "if"}, {"text": "the"}, {"text": "twin"}, {"text": "dams"}, {"text": "were"}, {"text": "built"}, {"text": "*-67"}, {"text": "as"}, {"text": "*"}, {"text": "planned"}, {"text": "*-2"}, {"text": "."}, {"text": "Czechoslovakia"}, {"text": "said"}, {"text": "in"}, {"text": "May"}, {"text": "0"}, {"text": "it"}, {"text": "could"}, {"text": "seek"}, {"text": "$"}, {"text": "2"}, {"text": "billion"}, {"text": "*U*"}, {"text": "from"}, {"text": "Hungary"}, {"text": "if"}, {"text": "the"}, {"text": "twindam"}, {"text": "contract"}, {"text": "were"}, {"text": "broken"}, {"text": "*-68"}, {"text": "."}, {"text": "The"}, {"text": "Czech"}, {"text": "dam"}, {"text": "ca"}, {"text": "n't"}, {"text": "be"}, {"text": "operated"}, {"text": "*-69"}, {"text": "solely"}, {"text": "at"}, {"text": "peak"}, {"text": "periods"}, {"text": "without"}, {"text": "the"}, {"text": "Nagymaros"}, {"text": "project"}, {"text": "."}, {"text": "A"}, {"text": "painting"}, {"text": "by"}, {"text": "August"}, {"text": "Strindberg"}, {"text": "set"}, {"text": "a"}, {"text": "Scandinavian"}, {"text": "price"}, {"text": "record"}, {"text": "when"}, {"text": "it"}, {"text": "sold"}, {"text": "at"}, {"text": "auction"}, {"text": "in"}, {"text": "Stockholm"}, {"text": "for"}, {"text": "$"}, {"text": "2.44"}, {"text": "million"}, {"text": "*U*"}, {"text": "*T*-1"}, {"text": "."}, {"text": "``"}, {"text": "Lighthouse"}, {"text": "II"}, {"text": "''"}, {"text": "was"}, {"text": "painted"}, {"text": "*-1"}, {"text": "in"}, {"text": "oils"}, {"text": "by"}, {"text": "the"}, {"text": "playwright"}, {"text": "in"}, {"text": "1901"}, {"text": "..."}, {"text": "After"}, {"text": "years"}, {"text": "of"}, {"text": "decline"}, {"text": ","}, {"text": "weddings"}, {"text": "in"}, {"text": "France"}, {"text": "showed"}, {"text": "a"}, {"text": "2.2"}, {"text": "%"}, {"text": "upturn"}, {"text": "last"}, {"text": "year"}, {"text": ","}, {"text": "with"}, {"text": "6,000"}, {"text": "more"}, {"text": "couples"}, {"text": "*ICH*-1"}, {"text": "exchanging"}, {"text": "rings"}, {"text": "in"}, {"text": "1988"}, {"text": "than"}, {"text": "in"}, {"text": "the"}, {"text": "previous"}, {"text": "year"}, {"text": ","}, {"text": "the"}, {"text": "national"}, {"text": "statistics"}, {"text": "office"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "."}, {"text": "But"}, {"text": "the"}, {"text": "number"}, {"text": "of"}, {"text": "weddings"}, {"text": "last"}, {"text": "year"}, {"text": "--"}, {"text": "271,124"}, {"text": "--"}, {"text": "was"}, {"text": "still"}, {"text": "well"}, {"text": "below"}, {"text": "the"}, {"text": "400,000"}, {"text": "registered"}, {"text": "*"}, {"text": "in"}, {"text": "1972"}, {"text": ","}, {"text": "the"}, {"text": "last"}, {"text": "year"}, {"text": "of"}, {"text": "increasing"}, {"text": "marriages"}, {"text": "."}, {"text": "BRAMALEA"}, {"text": "Ltd."}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "agreed"}, {"text": "*-1"}, {"text": "to"}, {"text": "issue"}, {"text": "100"}, {"text": "million"}, {"text": "Canadian"}, {"text": "dollars"}, {"text": "-LRB-"}, {"text": "US$"}, {"text": "85.1"}, {"text": "million"}, {"text": "*U*"}, {"text": "-RRB-"}, {"text": "of"}, {"text": "10.5"}, {"text": "%"}, {"text": "senior"}, {"text": "debentures"}, {"text": "due"}, {"text": "Nov."}, {"text": "30"}, {"text": ","}, {"text": "1999"}, {"text": ","}, {"text": "together"}, {"text": "with"}, {"text": "100,000"}, {"text": "bond"}, {"text": "purchase"}, {"text": "warrants"}, {"text": "."}, {"text": "The"}, {"text": "Toronto-based"}, {"text": "real"}, {"text": "estate"}, {"text": "concern"}, {"text": "said"}, {"text": "0"}, {"text": "each"}, {"text": "bond"}, {"text": "warrant"}, {"text": "entitles"}, {"text": "the"}, {"text": "holder"}, {"text": "to"}, {"text": "buy"}, {"text": "C$"}, {"text": "1,000"}, {"text": "*U*"}, {"text": "principal"}, {"text": "amount"}, {"text": "of"}, {"text": "debentures"}, {"text": "at"}, {"text": "par"}, {"text": "plus"}, {"text": "accrued"}, {"text": "interest"}, {"text": "to"}, {"text": "the"}, {"text": "date"}, {"text": "of"}, {"text": "purchase"}, {"text": "."}, {"text": "The"}, {"text": "warrants"}, {"text": "expire"}, {"text": "Nov."}, {"text": "30"}, {"text": ","}, {"text": "1990"}, {"text": "."}, {"text": "The"}, {"text": "issue"}, {"text": "will"}, {"text": "be"}, {"text": "swapped"}, {"text": "*-70"}, {"text": "into"}, {"text": "fixed-rate"}, {"text": "U.S."}, {"text": "dollars"}, {"text": "at"}, {"text": "a"}, {"text": "rate"}, {"text": "0"}, {"text": "the"}, {"text": "company"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "is"}, {"text": "less"}, {"text": "than"}, {"text": "9"}, {"text": "%"}, {"text": ";"}, {"text": "a"}, {"text": "spokesman"}, {"text": "declined"}, {"text": "*-2"}, {"text": "to"}, {"text": "elaborate"}, {"text": "."}, {"text": "Lead"}, {"text": "underwriters"}, {"text": "for"}, {"text": "the"}, {"text": "issue"}, {"text": "are"}, {"text": "Scotia"}, {"text": "McLeod"}, {"text": "Inc."}, {"text": "and"}, {"text": "RBC"}, {"text": "Dominion"}, {"text": "Securities"}, {"text": "Inc."}, {"text": ","}, {"text": "both"}, {"text": "Toronto-based"}, {"text": "investment"}, {"text": "dealers"}, {"text": "."}, {"text": "Bramalea"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "expects"}, {"text": "*-1"}, {"text": "to"}, {"text": "complete"}, {"text": "the"}, {"text": "issue"}, {"text": "by"}, {"text": "the"}, {"text": "end"}, {"text": "of"}, {"text": "the"}, {"text": "month"}, {"text": "."}, {"text": "As"}, {"text": "an"}, {"text": "actor"}, {"text": ","}, {"text": "Charles"}, {"text": "Lane"}, {"text": "is"}, {"text": "n't"}, {"text": "the"}, {"text": "inheritor"}, {"text": "of"}, {"text": "Charlie"}, {"text": "Chaplin"}, {"text": "'s"}, {"text": "spirit"}, {"text": "."}, {"text": "Steve"}, {"text": "Martin"}, {"text": "has"}, {"text": "already"}, {"text": "laid"}, {"text": "his"}, {"text": "claim"}, {"text": "to"}, {"text": "that"}, {"text": "."}, {"text": "But"}, {"text": "it"}, {"text": "is"}, {"text": "Mr."}, {"text": "Lane"}, {"text": ","}, {"text": "as"}, {"text": "movie"}, {"text": "director"}, {"text": ","}, {"text": "producer"}, {"text": "and"}, {"text": "writer"}, {"text": ","}, {"text": "who"}, {"text": "*T*-65"}, {"text": "has"}, {"text": "been"}, {"text": "obsessed"}, {"text": "with"}, {"text": "*"}, {"text": "refitting"}, {"text": "Chaplin"}, {"text": "'s"}, {"text": "Little"}, {"text": "Tramp"}, {"text": "in"}, {"text": "a"}, {"text": "contemporary"}, {"text": "way"}, {"text": "."}, {"text": "In"}, {"text": "1976"}, {"text": ","}, {"text": "as"}, {"text": "a"}, {"text": "film"}, {"text": "student"}, {"text": "at"}, {"text": "the"}, {"text": "Purchase"}, {"text": "campus"}, {"text": "of"}, {"text": "the"}, {"text": "State"}, {"text": "University"}, {"text": "of"}, {"text": "New"}, {"text": "York"}, {"text": ","}, {"text": "Mr."}, {"text": "Lane"}, {"text": "shot"}, {"text": "``"}, {"text": "A"}, {"text": "Place"}, {"text": "in"}, {"text": "Time"}, {"text": ","}, {"text": "''"}, {"text": "a"}, {"text": "36-minute"}, {"text": "black-and-white"}, {"text": "film"}, {"text": "about"}, {"text": "a"}, {"text": "sketch"}, {"text": "artist"}, {"text": ","}, {"text": "a"}, {"text": "man"}, {"text": "of"}, {"text": "the"}, {"text": "streets"}, {"text": "."}, {"text": "Now"}, {"text": ","}, {"text": "13"}, {"text": "years"}, {"text": "later"}, {"text": ","}, {"text": "Mr."}, {"text": "Lane"}, {"text": "has"}, {"text": "revived"}, {"text": "his"}, {"text": "Artist"}, {"text": "in"}, {"text": "a"}, {"text": "full-length"}, {"text": "movie"}, {"text": "called"}, {"text": "*"}, {"text": "``"}, {"text": "Sidewalk"}, {"text": "Stories"}, {"text": ","}, {"text": "''"}, {"text": "a"}, {"text": "poignant"}, {"text": "piece"}, {"text": "of"}, {"text": "work"}, {"text": "about"}, {"text": "a"}, {"text": "modern-day"}, {"text": "tramp"}, {"text": "."}, {"text": "Of"}, {"text": "course"}, {"text": ","}, {"text": "if"}, {"text": "the"}, {"text": "film"}, {"text": "contained"}, {"text": "dialogue"}, {"text": ","}, {"text": "Mr."}, {"text": "Lane"}, {"text": "'s"}, {"text": "Artist"}, {"text": "would"}, {"text": "be"}, {"text": "called"}, {"text": "*-71"}, {"text": "a"}, {"text": "homeless"}, {"text": "person"}, {"text": "."}, {"text": "So"}, {"text": "would"}, {"text": "*?*"}, {"text": "*T*-1"}, {"text": "the"}, {"text": "Little"}, {"text": "Tramp"}, {"text": ","}, {"text": "for"}, {"text": "that"}, {"text": "matter"}, {"text": "."}, {"text": "I"}, {"text": "say"}, {"text": "``"}, {"text": "*"}, {"text": "contained"}, {"text": "dialogue"}, {"text": "''"}, {"text": "because"}, {"text": "``"}, {"text": "Sidewalk"}, {"text": "Stories"}, {"text": "''"}, {"text": "is"}, {"text": "n't"}, {"text": "really"}, {"text": "silent"}, {"text": "at"}, {"text": "all"}, {"text": "."}, {"text": "Composer"}, {"text": "Marc"}, {"text": "Marder"}, {"text": ","}, {"text": "a"}, {"text": "college"}, {"text": "friend"}, {"text": "of"}, {"text": "Mr."}, {"text": "Lane"}, {"text": "'s"}, {"text": "who"}, {"text": "*T*-66"}, {"text": "earns"}, {"text": "his"}, {"text": "living"}, {"text": "*-1"}, {"text": "playing"}, {"text": "the"}, {"text": "double"}, {"text": "bass"}, {"text": "in"}, {"text": "classical"}, {"text": "music"}, {"text": "ensembles"}, {"text": ","}, {"text": "has"}, {"text": "prepared"}, {"text": "an"}, {"text": "exciting"}, {"text": ","}, {"text": "eclectic"}, {"text": "score"}, {"text": "that"}, {"text": "*T*-67"}, {"text": "tells"}, {"text": "you"}, {"text": "what"}, {"text": "the"}, {"text": "characters"}, {"text": "are"}, {"text": "thinking"}, {"text": "*T*-2"}, {"text": "and"}, {"text": "feeling"}, {"text": "*T*-2"}, {"text": "far"}, {"text": "more"}, {"text": "precisely"}, {"text": "than"}, {"text": "intertitles"}, {"text": ","}, {"text": "or"}, {"text": "even"}, {"text": "words"}, {"text": ","}, {"text": "would"}, {"text": "*?*"}, {"text": "."}, {"text": "Much"}, {"text": "of"}, {"text": "Mr."}, {"text": "Lane"}, {"text": "'s"}, {"text": "film"}, {"text": "takes"}, {"text": "a"}, {"text": "highly"}, {"text": "romanticized"}, {"text": "view"}, {"text": "of"}, {"text": "life"}, {"text": "on"}, {"text": "the"}, {"text": "streets"}, {"text": "-LRB-"}, {"text": "though"}, {"text": "probably"}, {"text": "no"}, {"text": "more"}, {"text": "romanticized"}, {"text": "than"}, {"text": "Mr."}, {"text": "Chaplin"}, {"text": "'s"}, {"text": "notion"}, {"text": "of"}, {"text": "the"}, {"text": "Tramp"}, {"text": "as"}, {"text": "the"}, {"text": "good-hearted"}, {"text": "free"}, {"text": "spirit"}, {"text": "-RRB-"}, {"text": "."}, {"text": "*-2"}, {"text": "Filmed"}, {"text": "*-1"}, {"text": "in"}, {"text": "lovely"}, {"text": "black"}, {"text": "and"}, {"text": "white"}, {"text": "by"}, {"text": "Bill"}, {"text": "Dill"}, {"text": ","}, {"text": "the"}, {"text": "New"}, {"text": "York"}, {"text": "streets"}, {"text": "of"}, {"text": "``"}, {"text": "Sidewalk"}, {"text": "Stories"}, {"text": "''"}, {"text": "seem"}, {"text": "benign"}, {"text": "."}, {"text": "On"}, {"text": "Wall"}, {"text": "Street"}, {"text": "men"}, {"text": "and"}, {"text": "women"}, {"text": "walk"}, {"text": "with"}, {"text": "great"}, {"text": "purpose"}, {"text": ","}, {"text": "*-2"}, {"text": "noticing"}, {"text": "one"}, {"text": "another"}, {"text": "only"}, {"text": "when"}, {"text": "they"}, {"text": "jostle"}, {"text": "for"}, {"text": "cabs"}, {"text": "*T*-1"}, {"text": "."}, {"text": "The"}, {"text": "Artist"}, {"text": "hangs"}, {"text": "out"}, {"text": "in"}, {"text": "Greenwich"}, {"text": "Village"}, {"text": ","}, {"text": "on"}, {"text": "a"}, {"text": "strip"}, {"text": "of"}, {"text": "Sixth"}, {"text": "Avenue"}, {"text": "populated"}, {"text": "*"}, {"text": "by"}, {"text": "jugglers"}, {"text": ","}, {"text": "magicians"}, {"text": "and"}, {"text": "other"}, {"text": "good-natured"}, {"text": "hustlers"}, {"text": "."}, {"text": "-LRB-"}, {"text": "This"}, {"text": "*ICH*-1"}, {"text": "clearly"}, {"text": "is"}, {"text": "not"}, {"text": "real"}, {"text": "life"}, {"text": ":"}, {"text": "no"}, {"text": "crack"}, {"text": "dealers"}, {"text": ","}, {"text": "no"}, {"text": "dead-eyed"}, {"text": "men"}, {"text": "selling"}, {"text": "four-year-old"}, {"text": "copies"}, {"text": "of"}, {"text": "Cosmopolitan"}, {"text": ","}, {"text": "no"}, {"text": "one"}, {"text": "curled"}, {"text": "up"}, {"text": "in"}, {"text": "a"}, {"text": "cardboard"}, {"text": "box"}, {"text": "."}, {"text": "-RRB-"}, {"text": "The"}, {"text": "Artist"}, {"text": "has"}, {"text": "his"}, {"text": "routine"}, {"text": "."}, {"text": "He"}, {"text": "spends"}, {"text": "his"}, {"text": "days"}, {"text": "*-1"}, {"text": "sketching"}, {"text": "passers-by"}, {"text": ","}, {"text": "or"}, {"text": "*-1"}, {"text": "trying"}, {"text": "*-2"}, {"text": "to"}, {"text": "*?*"}, {"text": "."}, {"text": "At"}, {"text": "night"}, {"text": "he"}, {"text": "returns"}, {"text": "to"}, {"text": "the"}, {"text": "condemned"}, {"text": "building"}, {"text": "0"}, {"text": "he"}, {"text": "calls"}, {"text": "*T*-1"}, {"text": "home"}, {"text": "."}, {"text": "His"}, {"text": "life"}, {"text": ","}, {"text": "including"}, {"text": "his"}, {"text": "skirmishes"}, {"text": "with"}, {"text": "a"}, {"text": "competing"}, {"text": "sketch"}, {"text": "artist"}, {"text": ","}, {"text": "seems"}, {"text": "carefree"}, {"text": "."}, {"text": "He"}, {"text": "is"}, {"text": "his"}, {"text": "own"}, {"text": "man"}, {"text": "."}, {"text": "Then"}, {"text": ","}, {"text": "just"}, {"text": "as"}, {"text": "the"}, {"text": "Tramp"}, {"text": "is"}, {"text": "given"}, {"text": "*-72"}, {"text": "a"}, {"text": "blind"}, {"text": "girl"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "cure"}, {"text": "*T*-2"}, {"text": "in"}, {"text": "``"}, {"text": "City"}, {"text": "Lights"}, {"text": ","}, {"text": "''"}, {"text": "the"}, {"text": "Artist"}, {"text": "is"}, {"text": "put"}, {"text": "*-73"}, {"text": "in"}, {"text": "charge"}, {"text": "of"}, {"text": "*-73"}, {"text": "returning"}, {"text": "a"}, {"text": "two-year-old"}, {"text": "waif"}, {"text": "-LRB-"}, {"text": "Nicole"}, {"text": "Alysia"}, {"text": "-RRB-"}, {"text": ","}, {"text": "whose"}, {"text": "father"}, {"text": "*T*-1"}, {"text": "has"}, {"text": "been"}, {"text": "murdered"}, {"text": "*-74"}, {"text": "by"}, {"text": "thugs"}, {"text": ","}, {"text": "to"}, {"text": "her"}, {"text": "mother"}, {"text": "."}, {"text": "This"}, {"text": "cute"}, {"text": "child"}, {"text": "turns"}, {"text": "out"}, {"text": "*-1"}, {"text": "to"}, {"text": "be"}, {"text": "a"}, {"text": "blessing"}, {"text": "and"}, {"text": "a"}, {"text": "curse"}, {"text": "."}, {"text": "She"}, {"text": "gives"}, {"text": "the"}, {"text": "Artist"}, {"text": "a"}, {"text": "sense"}, {"text": "of"}, {"text": "purpose"}, {"text": ","}, {"text": "but"}, {"text": "also"}, {"text": "alerts"}, {"text": "him"}, {"text": "to"}, {"text": "the"}, {"text": "serious"}, {"text": "inadequacy"}, {"text": "of"}, {"text": "his"}, {"text": "vagrant"}, {"text": "life"}, {"text": "."}, {"text": "The"}, {"text": "beds"}, {"text": "at"}, {"text": "the"}, {"text": "Bowery"}, {"text": "Mission"}, {"text": "seem"}, {"text": "far"}, {"text": "drearier"}, {"text": "when"}, {"text": "he"}, {"text": "has"}, {"text": "*-1"}, {"text": "to"}, {"text": "tuck"}, {"text": "a"}, {"text": "little"}, {"text": "girl"}, {"text": "into"}, {"text": "one"}, {"text": "of"}, {"text": "them"}, {"text": "at"}, {"text": "night"}, {"text": "*T*-2"}, {"text": "."}, {"text": "*-1"}, {"text": "To"}, {"text": "further"}, {"text": "load"}, {"text": "the"}, {"text": "stakes"}, {"text": ","}, {"text": "Mr."}, {"text": "Lane"}, {"text": "dreamed"}, {"text": "up"}, {"text": "a"}, {"text": "highly"}, {"text": "improbable"}, {"text": "romance"}, {"text": "for"}, {"text": "the"}, {"text": "Artist"}, {"text": ","}, {"text": "with"}, {"text": "a"}, {"text": "young"}, {"text": "woman"}, {"text": "who"}, {"text": "*T*-68"}, {"text": "owns"}, {"text": "her"}, {"text": "own"}, {"text": "children"}, {"text": "'s"}, {"text": "shop"}, {"text": "and"}, {"text": "who"}, {"text": "*T*-69"}, {"text": "lives"}, {"text": "in"}, {"text": "an"}, {"text": "expensive"}, {"text": "high-rise"}, {"text": "apartment"}, {"text": "building"}, {"text": "."}, {"text": "This"}, {"text": "story"}, {"text": "line"}, {"text": "might"}, {"text": "resonate"}, {"text": "more"}, {"text": "strongly"}, {"text": "if"}, {"text": "Mr."}, {"text": "Lane"}, {"text": "had"}, {"text": "as"}, {"text": "strong"}, {"text": "a"}, {"text": "presence"}, {"text": "in"}, {"text": "front"}, {"text": "of"}, {"text": "the"}, {"text": "camera"}, {"text": "as"}, {"text": "he"}, {"text": "does"}, {"text": "*?*"}, {"text": "behind"}, {"text": "it"}, {"text": "."}, {"text": "Mr."}, {"text": "Lane"}, {"text": "'s"}, {"text": "final"}, {"text": "purpose"}, {"text": "is"}, {"text": "n't"}, {"text": "*-1"}, {"text": "to"}, {"text": "glamorize"}, {"text": "the"}, {"text": "Artist"}, {"text": "'s"}, {"text": "vagabond"}, {"text": "existence"}, {"text": "."}, {"text": "He"}, {"text": "has"}, {"text": "a"}, {"text": "point"}, {"text": "0"}, {"text": "he"}, {"text": "wants"}, {"text": "*-1"}, {"text": "to"}, {"text": "make"}, {"text": "*T*-2"}, {"text": ","}, {"text": "and"}, {"text": "he"}, {"text": "makes"}, {"text": "it"}, {"text": ","}, {"text": "with"}, {"text": "a"}, {"text": "great"}, {"text": "deal"}, {"text": "of"}, {"text": "force"}, {"text": "."}, {"text": "The"}, {"text": "movie"}, {"text": "ends"}, {"text": "with"}, {"text": "sound"}, {"text": ","}, {"text": "the"}, {"text": "sound"}, {"text": "of"}, {"text": "street"}, {"text": "people"}, {"text": "talking"}, {"text": ","}, {"text": "and"}, {"text": "there"}, {"text": "is"}, {"text": "n't"}, {"text": "anything"}, {"text": "whimsical"}, {"text": "or"}, {"text": "enviable"}, {"text": "in"}, {"text": "those"}, {"text": "rough"}, {"text": ","}, {"text": "beaten"}, {"text": "voices"}, {"text": "."}, {"text": "The"}, {"text": "French"}, {"text": "film"}, {"text": "maker"}, {"text": "Claude"}, {"text": "Chabrol"}, {"text": "has"}, {"text": "managed"}, {"text": "another"}, {"text": "kind"}, {"text": "of"}, {"text": "weird"}, {"text": "achievement"}, {"text": "with"}, {"text": "his"}, {"text": "``"}, {"text": "Story"}, {"text": "of"}, {"text": "Women"}, {"text": "."}, {"text": "''"}, {"text": "He"}, {"text": "has"}, {"text": "made"}, {"text": "a"}, {"text": "harsh"}, {"text": ","}, {"text": "brilliant"}, {"text": "picture"}, {"text": "--"}, {"text": "one"}, {"text": "that"}, {"text": "*T*-70"}, {"text": "'s"}, {"text": "captivating"}, {"text": "--"}, {"text": "about"}, {"text": "a"}, {"text": "character"}, {"text": "who"}, {"text": ","}, {"text": "*-2"}, {"text": "viewed"}, {"text": "*-3"}, {"text": "from"}, {"text": "the"}, {"text": "most"}, {"text": "sympathetic"}, {"text": "angle"}, {"text": ","}, {"text": "*T*-1"}, {"text": "would"}, {"text": "seem"}, {"text": "disagreeable"}, {"text": "."}, {"text": "Yet"}, {"text": "this"}, {"text": "woman"}, {"text": ","}, {"text": "Marie-Louise"}, {"text": "Giraud"}, {"text": ","}, {"text": "carries"}, {"text": "historical"}, {"text": "significance"}, {"text": ","}, {"text": "both"}, {"text": "as"}, {"text": "one"}, {"text": "of"}, {"text": "the"}, {"text": "last"}, {"text": "women"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "to"}, {"text": "be"}, {"text": "executed"}, {"text": "*-2"}, {"text": "in"}, {"text": "France"}, {"text": "and"}, {"text": "as"}, {"text": "a"}, {"text": "symbol"}, {"text": "of"}, {"text": "the"}, {"text": "Vichy"}, {"text": "government"}, {"text": "'s"}, {"text": "hypocrisy"}, {"text": "."}, {"text": "While"}, {"text": "Vichy"}, {"text": "collaborated"}, {"text": "with"}, {"text": "the"}, {"text": "Germans"}, {"text": "during"}, {"text": "World"}, {"text": "War"}, {"text": "II"}, {"text": "in"}, {"text": "the"}, {"text": "deaths"}, {"text": "of"}, {"text": "thousands"}, {"text": "of"}, {"text": "Resistance"}, {"text": "fighters"}, {"text": "and"}, {"text": "Jews"}, {"text": ","}, {"text": "its"}, {"text": "officials"}, {"text": "needed"}, {"text": "a"}, {"text": "diversionary"}, {"text": "symbolic"}, {"text": "traitor"}, {"text": "."}, {"text": "Marie-Louise"}, {"text": ","}, {"text": "a"}, {"text": "small-time"}, {"text": "abortionist"}, {"text": ","}, {"text": "was"}, {"text": "their"}, {"text": "woman"}, {"text": "."}, {"text": "She"}, {"text": "became"}, {"text": "an"}, {"text": "abortionist"}, {"text": "accidentally"}, {"text": ","}, {"text": "and"}, {"text": "continued"}, {"text": "because"}, {"text": "it"}, {"text": "enabled"}, {"text": "her"}, {"text": "to"}, {"text": "buy"}, {"text": "jam"}, {"text": ","}, {"text": "cocoa"}, {"text": "and"}, {"text": "other"}, {"text": "war-rationed"}, {"text": "goodies"}, {"text": "."}, {"text": "She"}, {"text": "was"}, {"text": "untrained"}, {"text": "and"}, {"text": ","}, {"text": "in"}, {"text": "one"}, {"text": "botched"}, {"text": "job"}, {"text": "killed"}, {"text": "a"}, {"text": "client"}, {"text": "."}, {"text": "Her"}, {"text": "remorse"}, {"text": "was"}, {"text": "shallow"}, {"text": "and"}, {"text": "brief"}, {"text": "."}, {"text": "Although"}, {"text": "she"}, {"text": "was"}, {"text": "kind"}, {"text": "and"}, {"text": "playful"}, {"text": "to"}, {"text": "her"}, {"text": "children"}, {"text": ","}, {"text": "she"}, {"text": "was"}, {"text": "dreadful"}, {"text": "to"}, {"text": "her"}, {"text": "war-damaged"}, {"text": "husband"}, {"text": ";"}, {"text": "she"}, {"text": "openly"}, {"text": "brought"}, {"text": "her"}, {"text": "lover"}, {"text": "into"}, {"text": "their"}, {"text": "home"}, {"text": "."}, {"text": "As"}, {"text": "*"}, {"text": "presented"}, {"text": "*-1"}, {"text": "by"}, {"text": "Mr."}, {"text": "Chabrol"}, {"text": ","}, {"text": "and"}, {"text": "played"}, {"text": "*-1"}, {"text": "with"}, {"text": "thin-lipped"}, {"text": "intensity"}, {"text": "by"}, {"text": "Isabelle"}, {"text": "Huppert"}, {"text": ","}, {"text": "Marie-Louise"}, {"text": "-LRB-"}, {"text": "called"}, {"text": "*"}, {"text": "Marie"}, {"text": "Latour"}, {"text": "in"}, {"text": "the"}, {"text": "film"}, {"text": "-RRB-"}, {"text": "was"}, {"text": "not"}, {"text": "a"}, {"text": "nice"}, {"text": "person"}, {"text": "."}, {"text": "But"}, {"text": "she"}, {"text": "did"}, {"text": "n't"}, {"text": "deserve"}, {"text": "*-1"}, {"text": "to"}, {"text": "have"}, {"text": "her"}, {"text": "head"}, {"text": "chopped"}, {"text": "*-2"}, {"text": "off"}, {"text": "."}, {"text": "There"}, {"text": "is"}, {"text": "very"}, {"text": "little"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "to"}, {"text": "recommend"}, {"text": "``"}, {"text": "Old"}, {"text": "Gringo"}, {"text": ","}, {"text": "''"}, {"text": "a"}, {"text": "confused"}, {"text": "rendering"}, {"text": "of"}, {"text": "the"}, {"text": "Carlos"}, {"text": "Fuentes"}, {"text": "novel"}, {"text": "of"}, {"text": "the"}, {"text": "Mexican"}, {"text": "Revolution"}, {"text": "."}, {"text": "Most"}, {"text": "of"}, {"text": "the"}, {"text": "picture"}, {"text": "is"}, {"text": "taken"}, {"text": "up"}, {"text": "with"}, {"text": "endless"}, {"text": "scenes"}, {"text": "of"}, {"text": "many"}, {"text": "people"}, {"text": "either"}, {"text": "fighting"}, {"text": "or"}, {"text": "eating"}, {"text": "and"}, {"text": "drinking"}, {"text": "*-1"}, {"text": "to"}, {"text": "celebrate"}, {"text": "victory"}, {"text": "."}, {"text": "I"}, {"text": "mention"}, {"text": "the"}, {"text": "picture"}, {"text": "only"}, {"text": "because"}, {"text": "many"}, {"text": "bad"}, {"text": "movies"}, {"text": "have"}, {"text": "a"}, {"text": "bright"}, {"text": "spot"}, {"text": ","}, {"text": "and"}, {"text": "this"}, {"text": "one"}, {"text": "has"}, {"text": "Gregory"}, {"text": "Peck"}, {"text": ","}, {"text": "in"}, {"text": "a"}, {"text": "marvelously"}, {"text": "loose"}, {"text": "and"}, {"text": "energetic"}, {"text": "portrayal"}, {"text": "of"}, {"text": "an"}, {"text": "old"}, {"text": "man"}, {"text": "who"}, {"text": "*T*-71"}, {"text": "wants"}, {"text": "*-1"}, {"text": "to"}, {"text": "die"}, {"text": "the"}, {"text": "way"}, {"text": "0"}, {"text": "he"}, {"text": "wants"}, {"text": "*-2"}, {"text": "to"}, {"text": "die"}, {"text": "*T*-3"}, {"text": "."}, {"text": "Video"}, {"text": "Tip"}, {"text": ":"}, {"text": "Before"}, {"text": "*-1"}, {"text": "seeing"}, {"text": "``"}, {"text": "Sidewalk"}, {"text": "Stories"}, {"text": ","}, {"text": "''"}, {"text": "*"}, {"text": "take"}, {"text": "a"}, {"text": "look"}, {"text": "at"}, {"text": "``"}, {"text": "City"}, {"text": "Lights"}, {"text": ","}, {"text": "''"}, {"text": "Chaplin"}, {"text": "'s"}, {"text": "Tramp"}, {"text": "at"}, {"text": "his"}, {"text": "finest"}, {"text": "."}, {"text": "Boeing"}, {"text": "Co."}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "is"}, {"text": "discussing"}, {"text": "plans"}, {"text": "*ICH*-1"}, {"text": "with"}, {"text": "three"}, {"text": "of"}, {"text": "its"}, {"text": "regular"}, {"text": "Japanese"}, {"text": "suppliers"}, {"text": "*"}, {"text": "to"}, {"text": "possibly"}, {"text": "help"}, {"text": "*-2"}, {"text": "build"}, {"text": "a"}, {"text": "larger"}, {"text": "version"}, {"text": "of"}, {"text": "its"}, {"text": "popular"}, {"text": "767"}, {"text": "twin-jet"}, {"text": "."}, {"text": "The"}, {"text": "discussions"}, {"text": "are"}, {"text": "still"}, {"text": "in"}, {"text": "preliminary"}, {"text": "stages"}, {"text": ","}, {"text": "and"}, {"text": "the"}, {"text": "specific"}, {"text": "details"}, {"text": "have"}, {"text": "n't"}, {"text": "been"}, {"text": "worked"}, {"text": "*-2"}, {"text": "out"}, {"text": "between"}, {"text": "the"}, {"text": "Seattle"}, {"text": "aerospace"}, {"text": "company"}, {"text": "and"}, {"text": "Kawasaki"}, {"text": "Heavy"}, {"text": "Industries"}, {"text": "Ltd."}, {"text": ","}, {"text": "Mitsubishi"}, {"text": "Heavy"}, {"text": "Industries"}, {"text": "Ltd."}, {"text": "and"}, {"text": "Fuji"}, {"text": "Heavy"}, {"text": "Industries"}, {"text": "Ltd"}, {"text": "."}, {"text": "The"}, {"text": "three"}, {"text": "Japanese"}, {"text": "companies"}, {"text": "build"}, {"text": "the"}, {"text": "body"}, {"text": "sections"}, {"text": "of"}, {"text": "the"}, {"text": "767"}, {"text": ","}, {"text": "*-1"}, {"text": "accounting"}, {"text": "for"}, {"text": "a"}, {"text": "combined"}, {"text": "15"}, {"text": "%"}, {"text": "of"}, {"text": "the"}, {"text": "aircraft"}, {"text": "."}, {"text": "Japanese"}, {"text": "press"}, {"text": "reports"}, {"text": "have"}, {"text": "speculated"}, {"text": "that"}, {"text": "the"}, {"text": "Japanese"}, {"text": "contribution"}, {"text": "could"}, {"text": "rise"}, {"text": "to"}, {"text": "between"}, {"text": "20"}, {"text": "%"}, {"text": "and"}, {"text": "25"}, {"text": "%"}, {"text": "*U*"}, {"text": "under"}, {"text": "the"}, {"text": "new"}, {"text": "program"}, {"text": "."}, {"text": "If"}, {"text": "Boeing"}, {"text": "goes"}, {"text": "ahead"}, {"text": "with"}, {"text": "the"}, {"text": "larger"}, {"text": "767"}, {"text": ","}, {"text": "the"}, {"text": "plane"}, {"text": "could"}, {"text": "hit"}, {"text": "the"}, {"text": "market"}, {"text": "in"}, {"text": "the"}, {"text": "mid-1990s"}, {"text": "."}, {"text": "This"}, {"text": "is"}, {"text": "the"}, {"text": "year"}, {"text": "0"}, {"text": "the"}, {"text": "negative"}, {"text": "ad"}, {"text": ","}, {"text": "for"}, {"text": "years"}, {"text": "a"}, {"text": "secondary"}, {"text": "presence"}, {"text": "in"}, {"text": "most"}, {"text": "political"}, {"text": "campaigns"}, {"text": ","}, {"text": "became"}, {"text": "the"}, {"text": "main"}, {"text": "event"}, {"text": "*T*-1"}, {"text": "."}, {"text": "The"}, {"text": "irony"}, {"text": "is"}, {"text": "that"}, {"text": "the"}, {"text": "attack"}, {"text": "commercial"}, {"text": ","}, {"text": "after"}, {"text": "*-1"}, {"text": "getting"}, {"text": "a"}, {"text": "boost"}, {"text": "in"}, {"text": "last"}, {"text": "year"}, {"text": "'s"}, {"text": "presidential"}, {"text": "campaign"}, {"text": ","}, {"text": "has"}, {"text": "come"}, {"text": "of"}, {"text": "age"}, {"text": "in"}, {"text": "an"}, {"text": "off-off"}, {"text": "election"}, {"text": "year"}, {"text": "with"}, {"text": "only"}, {"text": "a"}, {"text": "few"}, {"text": "contests"}, {"text": "scattered"}, {"text": "*"}, {"text": "across"}, {"text": "the"}, {"text": "country"}, {"text": "."}, {"text": "But"}, {"text": "in"}, {"text": "the"}, {"text": "three"}, {"text": "leading"}, {"text": "political"}, {"text": "contests"}, {"text": "of"}, {"text": "1989"}, {"text": ","}, {"text": "the"}, {"text": "negative"}, {"text": "ads"}, {"text": "have"}, {"text": "reached"}, {"text": "new"}, {"text": "levels"}, {"text": "of"}, {"text": "hostility"}, {"text": ","}, {"text": "*-1"}, {"text": "raising"}, {"text": "fears"}, {"text": "that"}, {"text": "this"}, {"text": "kind"}, {"text": "of"}, {"text": "mudslinging"}, {"text": ","}, {"text": "empty"}, {"text": "of"}, {"text": "significant"}, {"text": "issues"}, {"text": ","}, {"text": "is"}, {"text": "ushering"}, {"text": "in"}, {"text": "a"}, {"text": "new"}, {"text": "era"}, {"text": "of"}, {"text": "campaigns"}, {"text": "without"}, {"text": "content"}, {"text": "."}, {"text": "``"}, {"text": "Now"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "Joseph"}, {"text": "Napolitan"}, {"text": ","}, {"text": "a"}, {"text": "pioneer"}, {"text": "in"}, {"text": "political"}, {"text": "television"}, {"text": ","}, {"text": "``"}, {"text": "the"}, {"text": "idea"}, {"text": "is"}, {"text": "*"}, {"text": "to"}, {"text": "attack"}, {"text": "first"}, {"text": ","}, {"text": "last"}, {"text": "and"}, {"text": "always"}, {"text": "."}, {"text": "''"}, {"text": "A"}, {"text": "trend"}, {"text": "that"}, {"text": "*T*-72"}, {"text": "started"}, {"text": "with"}, {"text": "the"}, {"text": "first"}, {"text": "stirrings"}, {"text": "of"}, {"text": "politics"}, {"text": ","}, {"text": "accelerated"}, {"text": "with"}, {"text": "the"}, {"text": "dawn"}, {"text": "of"}, {"text": "the"}, {"text": "television"}, {"text": "age"}, {"text": "and"}, {"text": "became"}, {"text": "a"}, {"text": "sometimes-tawdry"}, {"text": "art"}, {"text": "form"}, {"text": "in"}, {"text": "1988"}, {"text": ","}, {"text": "has"}, {"text": "reached"}, {"text": "an"}, {"text": "entirely"}, {"text": "new"}, {"text": "stage"}, {"text": "."}, {"text": "``"}, {"text": "*-1"}, {"text": "To"}, {"text": "get"}, {"text": "people"}, {"text": "'s"}, {"text": "attention"}, {"text": "these"}, {"text": "days"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-2"}, {"text": "Douglas"}, {"text": "Bailey"}, {"text": ","}, {"text": "a"}, {"text": "political"}, {"text": "consultant"}, {"text": ","}, {"text": "``"}, {"text": "your"}, {"text": "TV"}, {"text": "ad"}, {"text": "needs"}, {"text": "*-1"}, {"text": "to"}, {"text": "be"}, {"text": "bold"}, {"text": "and"}, {"text": "entertaining"}, {"text": ","}, {"text": "and"}, {"text": ","}, {"text": "more"}, {"text": "often"}, {"text": "than"}, {"text": "not"}, {"text": ","}, {"text": "that"}, {"text": "means"}, {"text": "confrontational"}, {"text": "."}, {"text": "And"}, {"text": ","}, {"text": "unlike"}, {"text": "a"}, {"text": "few"}, {"text": "years"}, {"text": "ago"}, {"text": ","}, {"text": "you"}, {"text": "do"}, {"text": "n't"}, {"text": "even"}, {"text": "have"}, {"text": "*-1"}, {"text": "to"}, {"text": "worry"}, {"text": "whether"}, {"text": "the"}, {"text": "ad"}, {"text": "is"}, {"text": "truthful"}, {"text": "."}, {"text": "''"}, {"text": "In"}, {"text": "1989"}, {"text": ","}, {"text": "as"}, {"text": "often"}, {"text": "as"}, {"text": "not"}, {"text": ","}, {"text": "the"}, {"text": "principal"}, {"text": "fights"}, {"text": "in"}, {"text": "the"}, {"text": "major"}, {"text": "campaigns"}, {"text": "are"}, {"text": "prompted"}, {"text": "*-1"}, {"text": "by"}, {"text": "the"}, {"text": "ads"}, {"text": "themselves"}, {"text": "."}, {"text": "*"}, {"text": "Take"}, {"text": "a"}, {"text": "look"}, {"text": ","}, {"text": "then"}, {"text": ","}, {"text": "at"}, {"text": "the"}, {"text": "main"}, {"text": "attack"}, {"text": "commercials"}, {"text": "that"}, {"text": "*T*-73"}, {"text": "set"}, {"text": "the"}, {"text": "tone"}, {"text": "for"}, {"text": "Tuesday"}, {"text": "'s"}, {"text": "elections"}, {"text": "in"}, {"text": "New"}, {"text": "York"}, {"text": "City"}, {"text": ","}, {"text": "New"}, {"text": "Jersey"}, {"text": "and"}, {"text": "Virginia"}, {"text": ":"}, {"text": "New"}, {"text": "York"}, {"text": "City"}, {"text": ":"}, {"text": "The"}, {"text": "screen"}, {"text": "fills"}, {"text": "with"}, {"text": "a"}, {"text": "small"}, {"text": ","}, {"text": "tight"}, {"text": "facial"}, {"text": "shot"}, {"text": "of"}, {"text": "David"}, {"text": "Dinkins"}, {"text": ","}, {"text": "Democratic"}, {"text": "candidate"}, {"text": "for"}, {"text": "mayor"}, {"text": "of"}, {"text": "New"}, {"text": "York"}, {"text": "City"}, {"text": "."}, {"text": "``"}, {"text": "David"}, {"text": "Dinkins"}, {"text": "failed"}, {"text": "*-2"}, {"text": "to"}, {"text": "file"}, {"text": "his"}, {"text": "income"}, {"text": "taxes"}, {"text": "for"}, {"text": "four"}, {"text": "straight"}, {"text": "years"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "a"}, {"text": "disembodied"}, {"text": "male"}, {"text": "voice"}, {"text": "."}, {"text": "And"}, {"text": "then"}, {"text": "this"}, {"text": "television"}, {"text": "commercial"}, {"text": ","}, {"text": "paid"}, {"text": "for"}, {"text": "*"}, {"text": "by"}, {"text": "Republican"}, {"text": "Rudolph"}, {"text": "Giuliani"}, {"text": "'s"}, {"text": "campaign"}, {"text": "and"}, {"text": "produced"}, {"text": "*"}, {"text": "by"}, {"text": "Roger"}, {"text": "Ailes"}, {"text": ","}, {"text": "the"}, {"text": "master"}, {"text": "of"}, {"text": "negative"}, {"text": "TV"}, {"text": "ads"}, {"text": ","}, {"text": "really"}, {"text": "gets"}, {"text": "down"}, {"text": "to"}, {"text": "business"}, {"text": "."}, {"text": "Mr."}, {"text": "Dinkins"}, {"text": ","}, {"text": "the"}, {"text": "ad"}, {"text": "charges"}, {"text": "0"}, {"text": "*T*-2"}, {"text": ","}, {"text": "also"}, {"text": "failed"}, {"text": "*-1"}, {"text": "to"}, {"text": "report"}, {"text": "his"}, {"text": "campaign"}, {"text": "contributions"}, {"text": "accurately"}, {"text": ","}, {"text": "hid"}, {"text": "his"}, {"text": "links"}, {"text": "to"}, {"text": "a"}, {"text": "failing"}, {"text": "insurance"}, {"text": "company"}, {"text": "and"}, {"text": "paid"}, {"text": "a"}, {"text": "convicted"}, {"text": "kidnapper"}, {"text": "``"}, {"text": "through"}, {"text": "a"}, {"text": "phony"}, {"text": "organization"}, {"text": "with"}, {"text": "no"}, {"text": "members"}, {"text": ","}, {"text": "no"}, {"text": "receipts"}, {"text": "and"}, {"text": "no"}, {"text": "office"}, {"text": "."}, {"text": "''"}, {"text": "``"}, {"text": "David"}, {"text": "Dinkins"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-2"}, {"text": "the"}, {"text": "kicker"}, {"text": ","}, {"text": "``"}, {"text": "Why"}, {"text": "does"}, {"text": "he"}, {"text": "always"}, {"text": "wait"}, {"text": "until"}, {"text": "he"}, {"text": "'s"}, {"text": "caught"}, {"text": "*-1"}, {"text": "?"}, {"text": "''"}, {"text": "``"}, {"text": "Nasty"}, {"text": "innuendoes"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*-2"}, {"text": "John"}, {"text": "Siegal"}, {"text": ","}, {"text": "Mr."}, {"text": "Dinkins"}, {"text": "'s"}, {"text": "issues"}, {"text": "director"}, {"text": ","}, {"text": "``"}, {"text": "designed"}, {"text": "*"}, {"text": "*-1"}, {"text": "to"}, {"text": "prosecute"}, {"text": "a"}, {"text": "case"}, {"text": "of"}, {"text": "political"}, {"text": "corruption"}, {"text": "that"}, {"text": "*T*-74"}, {"text": "simply"}, {"text": "does"}, {"text": "n't"}, {"text": "exist"}, {"text": "."}, {"text": "''"}, {"text": "*-2"}, {"text": "Stung"}, {"text": "*-1"}, {"text": "by"}, {"text": "the"}, {"text": "Giuliani"}, {"text": "ads"}, {"text": ","}, {"text": "Mr."}, {"text": "Dinkins"}, {"text": "'s"}, {"text": "TV"}, {"text": "consultants"}, {"text": ","}, {"text": "Robert"}, {"text": "Shrum"}, {"text": "and"}, {"text": "David"}, {"text": "Doak"}, {"text": ","}, {"text": "finally"}, {"text": "unleashed"}, {"text": "a"}, {"text": "negative"}, {"text": "ad"}, {"text": "of"}, {"text": "their"}, {"text": "own"}, {"text": "."}, {"text": "The"}, {"text": "screen"}, {"text": "shows"}, {"text": "two"}, {"text": "distorted"}, {"text": ","}, {"text": "unrecognizable"}, {"text": "photos"}, {"text": ","}, {"text": "presumably"}, {"text": "of"}, {"text": "two"}, {"text": "politicians"}, {"text": "."}, {"text": "``"}, {"text": "*"}, {"text": "Compare"}, {"text": "two"}, {"text": "candidates"}, {"text": "for"}, {"text": "mayor"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "the"}, {"text": "announcer"}, {"text": "."}, {"text": "``"}, {"text": "One"}, {"text": "says"}, {"text": "0"}, {"text": "he"}, {"text": "'s"}, {"text": "for"}, {"text": "*"}, {"text": "banning"}, {"text": "cop-killer"}, {"text": "bullets"}, {"text": "."}, {"text": "The"}, {"text": "other"}, {"text": "has"}, {"text": "opposed"}, {"text": "a"}, {"text": "ban"}, {"text": "on"}, {"text": "cop-killer"}, {"text": "bullets"}, {"text": "."}, {"text": "One"}, {"text": "claims"}, {"text": "0"}, {"text": "he"}, {"text": "'s"}, {"text": "pro-choice"}, {"text": "."}, {"text": "The"}, {"text": "other"}, {"text": "has"}, {"text": "opposed"}, {"text": "a"}, {"text": "woman"}, {"text": "'s"}, {"text": "right"}, {"text": "*"}, {"text": "to"}, {"text": "choose"}, {"text": "."}, {"text": "''"}, {"text": "``"}, {"text": "Funny"}, {"text": "thing"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "the"}, {"text": "kicker"}, {"text": ","}, {"text": "``"}, {"text": "both"}, {"text": "these"}, {"text": "candidates"}, {"text": "are"}, {"text": "named"}, {"text": "*-2"}, {"text": "Rudolph"}, {"text": "Giuliani"}, {"text": "."}, {"text": "''"}, {"text": "Who"}, {"text": "'s"}, {"text": "*T*-1"}, {"text": "telling"}, {"text": "the"}, {"text": "truth"}, {"text": "?"}, {"text": "Everybody"}, {"text": "--"}, {"text": "and"}, {"text": "nobody"}, {"text": "."}, {"text": "It"}, {"text": "'s"}, {"text": "a"}, {"text": "classic"}, {"text": "situation"}, {"text": "of"}, {"text": "ads"}, {"text": "that"}, {"text": "*T*-75"}, {"text": "are"}, {"text": "true"}, {"text": "but"}, {"text": "not"}, {"text": "always"}, {"text": "fully"}, {"text": "accurate"}, {"text": "."}, {"text": "Mr."}, {"text": "Dinkins"}, {"text": "did"}, {"text": "fail"}, {"text": "*-1"}, {"text": "to"}, {"text": "file"}, {"text": "his"}, {"text": "income"}, {"text": "taxes"}, {"text": "for"}, {"text": "four"}, {"text": "years"}, {"text": ","}, {"text": "but"}, {"text": "he"}, {"text": "insists"}, {"text": "0"}, {"text": "he"}, {"text": "voluntarily"}, {"text": "admitted"}, {"text": "the"}, {"text": "``"}, {"text": "oversight"}, {"text": "''"}, {"text": "when"}, {"text": "he"}, {"text": "was"}, {"text": "being"}, {"text": "considered"}, {"text": "*-2"}, {"text": "for"}, {"text": "a"}, {"text": "city"}, {"text": "job"}, {"text": "*T*-3"}, {"text": "."}, {"text": "He"}, {"text": "was"}, {"text": "on"}, {"text": "the"}, {"text": "board"}, {"text": "of"}, {"text": "an"}, {"text": "insurance"}, {"text": "company"}, {"text": "with"}, {"text": "financial"}, {"text": "problems"}, {"text": ","}, {"text": "but"}, {"text": "he"}, {"text": "insists"}, {"text": "0"}, {"text": "he"}, {"text": "made"}, {"text": "no"}, {"text": "secret"}, {"text": "of"}, {"text": "it"}, {"text": "."}, {"text": "The"}, {"text": "city"}, {"text": "'s"}, {"text": "Campaign"}, {"text": "Finance"}, {"text": "Board"}, {"text": "has"}, {"text": "refused"}, {"text": "*-1"}, {"text": "to"}, {"text": "pay"}, {"text": "Mr."}, {"text": "Dinkins"}, {"text": "$"}, {"text": "95,142"}, {"text": "*U*"}, {"text": "in"}, {"text": "matching"}, {"text": "funds"}, {"text": "because"}, {"text": "his"}, {"text": "campaign"}, {"text": "records"}, {"text": "are"}, {"text": "incomplete"}, {"text": "."}, {"text": "The"}, {"text": "campaign"}, {"text": "has"}, {"text": "blamed"}, {"text": "these"}, {"text": "reporting"}, {"text": "problems"}, {"text": "on"}, {"text": "computer"}, {"text": "errors"}, {"text": "."}, {"text": "And"}, {"text": ","}, {"text": "says"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "Mr."}, {"text": "Dinkins"}, {"text": ","}, {"text": "he"}, {"text": "did"}, {"text": "n't"}, {"text": "know"}, {"text": "0"}, {"text": "the"}, {"text": "man"}, {"text": "0"}, {"text": "his"}, {"text": "campaign"}, {"text": "paid"}, {"text": "*T*-2"}, {"text": "for"}, {"text": "a"}, {"text": "get-out-the-vote"}, {"text": "effort"}, {"text": "had"}, {"text": "been"}, {"text": "convicted"}, {"text": "*-3"}, {"text": "of"}, {"text": "kidnapping"}, {"text": "."}, {"text": "But"}, {"text": ","}, {"text": "say"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "Mr."}, {"text": "Dinkins"}, {"text": "'s"}, {"text": "managers"}, {"text": ","}, {"text": "he"}, {"text": "did"}, {"text": "have"}, {"text": "an"}, {"text": "office"}, {"text": "and"}, {"text": "his"}, {"text": "organization"}, {"text": "did"}, {"text": "have"}, {"text": "members"}, {"text": "."}, {"text": "Mr."}, {"text": "Giuliani"}, {"text": "'s"}, {"text": "campaign"}, {"text": "chairman"}, {"text": ","}, {"text": "Peter"}, {"text": "Powers"}, {"text": ","}, {"text": "says"}, {"text": "0"}, {"text": "the"}, {"text": "Dinkins"}, {"text": "ad"}, {"text": "is"}, {"text": "``"}, {"text": "deceptive"}, {"text": "."}, {"text": "''"}, {"text": "The"}, {"text": "other"}, {"text": "side"}, {"text": ","}, {"text": "he"}, {"text": "argues"}, {"text": "0"}, {"text": "*T*-1"}, {"text": ","}, {"text": "``"}, {"text": "knows"}, {"text": "0"}, {"text": "Giuliani"}, {"text": "has"}, {"text": "always"}, {"text": "been"}, {"text": "pro-choice"}, {"text": ","}, {"text": "even"}, {"text": "though"}, {"text": "he"}, {"text": "has"}, {"text": "personal"}, {"text": "reservations"}, {"text": "."}, {"text": "They"}, {"text": "know"}, {"text": "0"}, {"text": "he"}, {"text": "is"}, {"text": "generally"}, {"text": "opposed"}, {"text": "to"}, {"text": "cop-killer"}, {"text": "bullets"}, {"text": ","}, {"text": "but"}, {"text": "that"}, {"text": "he"}, {"text": "had"}, {"text": "some"}, {"text": "reservations"}, {"text": "about"}, {"text": "the"}, {"text": "language"}, {"text": "in"}, {"text": "the"}, {"text": "legislation"}, {"text": "."}, {"text": "''"}, {"text": "Virginia"}, {"text": ":"}, {"text": "Democratic"}, {"text": "Lt."}, {"text": "Gov."}, {"text": "Douglas"}, {"text": "Wilder"}, {"text": "opened"}, {"text": "his"}, {"text": "gubernatorial"}, {"text": "battle"}, {"text": "with"}, {"text": "Republican"}, {"text": "Marshall"}, {"text": "Coleman"}, {"text": "with"}, {"text": "an"}, {"text": "abortion"}, {"text": "commercial"}, {"text": "produced"}, {"text": "*"}, {"text": "by"}, {"text": "Frank"}, {"text": "Greer"}, {"text": "that"}, {"text": "analysts"}, {"text": "of"}, {"text": "every"}, {"text": "political"}, {"text": "persuasion"}, {"text": "agree"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "was"}, {"text": "a"}, {"text": "tour"}, {"text": "de"}, {"text": "force"}, {"text": "."}, {"text": "Against"}, {"text": "a"}, {"text": "shot"}, {"text": "of"}, {"text": "Monticello"}, {"text": "superimposed"}, {"text": "*"}, {"text": "on"}, {"text": "an"}, {"text": "American"}, {"text": "flag"}, {"text": ","}, {"text": "an"}, {"text": "announcer"}, {"text": "talks"}, {"text": "about"}, {"text": "the"}, {"text": "``"}, {"text": "strong"}, {"text": "tradition"}, {"text": "of"}, {"text": "freedom"}, {"text": "and"}, {"text": "individual"}, {"text": "liberty"}, {"text": "''"}, {"text": "that"}, {"text": "Virginians"}, {"text": "have"}, {"text": "nurtured"}, {"text": "*T*-1"}, {"text": "for"}, {"text": "generations"}, {"text": "."}, {"text": "Then"}, {"text": ","}, {"text": "just"}, {"text": "as"}, {"text": "an"}, {"text": "image"}, {"text": "of"}, {"text": "the"}, {"text": "statue"}, {"text": "of"}, {"text": "Thomas"}, {"text": "Jefferson"}, {"text": "dissolves"}, {"text": "from"}, {"text": "the"}, {"text": "screen"}, {"text": ","}, {"text": "the"}, {"text": "announcer"}, {"text": "continues"}, {"text": ":"}, {"text": "``"}, {"text": "On"}, {"text": "the"}, {"text": "issue"}, {"text": "of"}, {"text": "abortion"}, {"text": ","}, {"text": "Marshall"}, {"text": "Coleman"}, {"text": "wants"}, {"text": "*-1"}, {"text": "to"}, {"text": "take"}, {"text": "away"}, {"text": "your"}, {"text": "right"}, {"text": "*"}, {"text": "to"}, {"text": "choose"}, {"text": "and"}, {"text": "*-1"}, {"text": "give"}, {"text": "it"}, {"text": "to"}, {"text": "the"}, {"text": "politicians"}, {"text": "."}, {"text": "''"}, {"text": "That"}, {"text": "commercial"}, {"text": "--"}, {"text": "which"}, {"text": "*T*-76"}, {"text": "said"}, {"text": "0"}, {"text": "Mr."}, {"text": "Coleman"}, {"text": "wanted"}, {"text": "*-1"}, {"text": "to"}, {"text": "take"}, {"text": "away"}, {"text": "the"}, {"text": "right"}, {"text": "of"}, {"text": "abortion"}, {"text": "``"}, {"text": "even"}, {"text": "in"}, {"text": "cases"}, {"text": "of"}, {"text": "rape"}, {"text": "and"}, {"text": "incest"}, {"text": ","}, {"text": "''"}, {"text": "a"}, {"text": "charge"}, {"text": "0"}, {"text": "Mr."}, {"text": "Coleman"}, {"text": "denies"}, {"text": "*T*-2"}, {"text": "--"}, {"text": "changed"}, {"text": "the"}, {"text": "dynamics"}, {"text": "of"}, {"text": "the"}, {"text": "campaign"}, {"text": ","}, {"text": "*-3"}, {"text": "transforming"}, {"text": "it"}, {"text": ","}, {"text": "at"}, {"text": "least"}, {"text": "in"}, {"text": "part"}, {"text": ","}, {"text": "into"}, {"text": "a"}, {"text": "referendum"}, {"text": "on"}, {"text": "abortion"}, {"text": "."}, {"text": "The"}, {"text": "ad"}, {"text": "prompted"}, {"text": "Mr."}, {"text": "Coleman"}, {"text": ","}, {"text": "the"}, {"text": "former"}, {"text": "Virginia"}, {"text": "attorney"}, {"text": "general"}, {"text": ","}, {"text": "to"}, {"text": "launch"}, {"text": "a"}, {"text": "series"}, {"text": "of"}, {"text": "advertisements"}, {"text": "created"}, {"text": "*"}, {"text": "by"}, {"text": "Bob"}, {"text": "Goodman"}, {"text": "and"}, {"text": "designed"}, {"text": "*"}, {"text": "*-2"}, {"text": "to"}, {"text": "shake"}, {"text": "Mr."}, {"text": "Wilder"}, {"text": "'s"}, {"text": "support"}, {"text": "among"}, {"text": "the"}, {"text": "very"}, {"text": "women"}, {"text": "who"}, {"text": "*T*-77"}, {"text": "were"}, {"text": "attracted"}, {"text": "*-1"}, {"text": "by"}, {"text": "the"}, {"text": "abortion"}, {"text": "ad"}, {"text": "."}, {"text": "The"}, {"text": "Coleman"}, {"text": "counterattack"}, {"text": "featured"}, {"text": "a"}, {"text": "close-up"}, {"text": "of"}, {"text": "a"}, {"text": "young"}, {"text": "woman"}, {"text": "in"}, {"text": "shadows"}, {"text": "and"}, {"text": "the"}, {"text": "ad"}, {"text": "suggested"}, {"text": "that"}, {"text": "she"}, {"text": "was"}, {"text": "recalling"}, {"text": "an"}, {"text": "unpleasant"}, {"text": "courtroom"}, {"text": "ordeal"}, {"text": "."}, {"text": "A"}, {"text": "voice"}, {"text": "says"}, {"text": ","}, {"text": "``"}, {"text": "C'mon"}, {"text": ","}, {"text": "now"}, {"text": ","}, {"text": "do"}, {"text": "n't"}, {"text": "you"}, {"text": "have"}, {"text": "boyfriends"}, {"text": "?"}, {"text": "''"}, {"text": "Then"}, {"text": "an"}, {"text": "announcer"}, {"text": "interjects"}, {"text": ":"}, {"text": "``"}, {"text": "It"}, {"text": "was"}, {"text": "Douglas"}, {"text": "Wilder"}, {"text": "who"}, {"text": "*T*-78"}, {"text": "introduced"}, {"text": "a"}, {"text": "bill"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "to"}, {"text": "force"}, {"text": "rape"}, {"text": "victims"}, {"text": "age"}, {"text": "13"}, {"text": "and"}, {"text": "younger"}, {"text": "to"}, {"text": "be"}, {"text": "interrogated"}, {"text": "*-2"}, {"text": "about"}, {"text": "their"}, {"text": "private"}, {"text": "lives"}, {"text": "by"}, {"text": "lawyers"}, {"text": "for"}, {"text": "accused"}, {"text": "rapists"}, {"text": "."}, {"text": "So"}, {"text": "the"}, {"text": "next"}, {"text": "time"}, {"text": "0"}, {"text": "Mr."}, {"text": "Wilder"}, {"text": "talks"}, {"text": "about"}, {"text": "the"}, {"text": "rights"}, {"text": "of"}, {"text": "women"}, {"text": "*T*-1"}, {"text": ","}, {"text": "*"}, {"text": "ask"}, {"text": "him"}, {"text": "about"}, {"text": "this"}, {"text": "law"}, {"text": "0"}, {"text": "he"}, {"text": "tried"}, {"text": "*-3"}, {"text": "to"}, {"text": "pass"}, {"text": "*T*-2"}, {"text": "."}, {"text": "''"}, {"text": "Mr."}, {"text": "Wilder"}, {"text": "did"}, {"text": "introduce"}, {"text": "such"}, {"text": "legislation"}, {"text": "17"}, {"text": "years"}, {"text": "ago"}, {"text": ","}, {"text": "but"}, {"text": "he"}, {"text": "did"}, {"text": "so"}, {"text": "at"}, {"text": "the"}, {"text": "request"}, {"text": "of"}, {"text": "a"}, {"text": "constituent"}, {"text": ","}, {"text": "a"}, {"text": "common"}, {"text": "legislative"}, {"text": "technique"}, {"text": "used"}, {"text": "*"}, {"text": "by"}, {"text": "lawmakers"}, {"text": "."}, {"text": "The"}, {"text": "legislation"}, {"text": "itself"}, {"text": "noted"}, {"text": "that"}, {"text": "it"}, {"text": "was"}, {"text": "introduced"}, {"text": "*-1"}, {"text": "``"}, {"text": "by"}, {"text": "request"}, {"text": ","}, {"text": "''"}, {"text": "and"}, {"text": "in"}, {"text": "1983"}, {"text": "Mr."}, {"text": "Wilder"}, {"text": "introduced"}, {"text": "a"}, {"text": "bill"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "to"}, {"text": "protect"}, {"text": "rape"}, {"text": "victims"}, {"text": "from"}, {"text": "unfounded"}, {"text": "interrogation"}, {"text": "."}, {"text": "``"}, {"text": "People"}, {"text": "have"}, {"text": "grown"}, {"text": "tired"}, {"text": "of"}, {"text": "these"}, {"text": "ads"}, {"text": "and"}, {"text": "Coleman"}, {"text": "has"}, {"text": "gotten"}, {"text": "the"}, {"text": "stigma"}, {"text": "of"}, {"text": "*"}, {"text": "being"}, {"text": "a"}, {"text": "negative"}, {"text": "campaigner"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "Mark"}, {"text": "Rozell"}, {"text": ","}, {"text": "a"}, {"text": "political"}, {"text": "scientist"}, {"text": "at"}, {"text": "Mary"}, {"text": "Washington"}, {"text": "College"}, {"text": "."}, {"text": "``"}, {"text": "Wilder"}, {"text": "has"}, {"text": "managed"}, {"text": "*-1"}, {"text": "to"}, {"text": "get"}, {"text": "across"}, {"text": "the"}, {"text": "idea"}, {"text": "that"}, {"text": "Coleman"}, {"text": "will"}, {"text": "say"}, {"text": "anything"}, {"text": "*-2"}, {"text": "to"}, {"text": "get"}, {"text": "elected"}, {"text": "*-3"}, {"text": "governor"}, {"text": "and"}, {"text": "--"}, {"text": "more"}, {"text": "important"}, {"text": "--"}, {"text": "has"}, {"text": "been"}, {"text": "able"}, {"text": "*-1"}, {"text": "to"}, {"text": "put"}, {"text": "the"}, {"text": "onus"}, {"text": "for"}, {"text": "all"}, {"text": "the"}, {"text": "negative"}, {"text": "campaigning"}, {"text": "on"}, {"text": "Coleman"}, {"text": "."}, {"text": "''"}, {"text": "Mr."}, {"text": "Coleman"}, {"text": "said"}, {"text": "this"}, {"text": "week"}, {"text": "that"}, {"text": "he"}, {"text": "would"}, {"text": "devote"}, {"text": "the"}, {"text": "remainder"}, {"text": "of"}, {"text": "the"}, {"text": "political"}, {"text": "season"}, {"text": "to"}, {"text": "positive"}, {"text": "campaigning"}, {"text": ","}, {"text": "but"}, {"text": "the"}, {"text": "truce"}, {"text": "lasted"}, {"text": "only"}, {"text": "hours"}, {"text": "."}, {"text": "By"}, {"text": "Tuesday"}, {"text": "night"}, {"text": ","}, {"text": "television"}, {"text": "stations"}, {"text": "were"}, {"text": "carrying"}, {"text": "new"}, {"text": "ads"}, {"text": "featuring"}, {"text": "Mr."}, {"text": "Coleman"}, {"text": "himself"}, {"text": "raising"}, {"text": "questions"}, {"text": "about"}, {"text": "Mr."}, {"text": "Wilder"}, {"text": "'s"}, {"text": "sensitivity"}, {"text": "to"}, {"text": "rape"}, {"text": "victims"}, {"text": "."}, {"text": "New"}, {"text": "Jersey"}, {"text": ":"}, {"text": "The"}, {"text": "attacks"}, {"text": "began"}, {"text": "when"}, {"text": "Democratic"}, {"text": "Rep."}, {"text": "James"}, {"text": "Florio"}, {"text": "aired"}, {"text": "an"}, {"text": "ad"}, {"text": "featuring"}, {"text": "a"}, {"text": "drawing"}, {"text": "of"}, {"text": "Pinocchio"}, {"text": "and"}, {"text": "a"}, {"text": "photograph"}, {"text": "of"}, {"text": "Mr."}, {"text": "Florio"}, {"text": "'s"}, {"text": "rival"}, {"text": ","}, {"text": "Republican"}, {"text": "Rep."}, {"text": "Jim"}, {"text": "Courter"}, {"text": "."}, {"text": "``"}, {"text": "*"}, {"text": "Remember"}, {"text": "Pinocchio"}, {"text": "?"}, {"text": "''"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "a"}, {"text": "female"}, {"text": "voice"}, {"text": "."}, {"text": "``"}, {"text": "*"}, {"text": "Consider"}, {"text": "Jim"}, {"text": "Courter"}, {"text": "."}, {"text": "''"}, {"text": "And"}, {"text": "then"}, {"text": "this"}, {"text": "commercial"}, {"text": ","}, {"text": "produced"}, {"text": "*"}, {"text": "by"}, {"text": "Bob"}, {"text": "Squier"}, {"text": ","}, {"text": "gets"}, {"text": "down"}, {"text": "to"}, {"text": "its"}, {"text": "own"}, {"text": "mean"}, {"text": "and"}, {"text": "dirty"}, {"text": "business"}, {"text": "."}, {"text": "Pictures"}, {"text": "of"}, {"text": "rusted"}, {"text": "oil"}, {"text": "drums"}, {"text": "swim"}, {"text": "into"}, {"text": "focus"}, {"text": ","}, {"text": "and"}, {"text": "the"}, {"text": "female"}, {"text": "voice"}, {"text": "purrs"}, {"text": ","}, {"text": "``"}, {"text": "That"}, {"text": "hazardous"}, {"text": "waste"}, {"text": "on"}, {"text": "his"}, {"text": "-LCB-"}, {"text": "Mr."}, {"text": "Courter"}, {"text": "'s"}, {"text": "-RCB-"}, {"text": "property"}, {"text": "--"}, {"text": "the"}, {"text": "neighbors"}, {"text": "are"}, {"text": "suing"}, {"text": "for"}, {"text": "consumer"}, {"text": "fraud"}, {"text": "."}, {"text": "''"}, {"text": "And"}, {"text": "the"}, {"text": "nose"}, {"text": "on"}, {"text": "Mr."}, {"text": "Courter"}, {"text": "'s"}, {"text": "face"}, {"text": "grows"}, {"text": "."}, {"text": "The"}, {"text": "only"}, {"text": "fraud"}, {"text": "involved"}, {"text": ","}, {"text": "cry"}, {"text": "*T*-1"}, {"text": "Mr."}, {"text": "Courter"}, {"text": "'s"}, {"text": "partisans"}, {"text": ","}, {"text": "is"}, {"text": "the"}, {"text": "Florio"}, {"text": "commercial"}, {"text": "itself"}, {"text": ","}, {"text": "and"}, {"text": "so"}, {"text": "the"}, {"text": "Courter"}, {"text": "campaign"}, {"text": "has"}, {"text": "responded"}, {"text": "with"}, {"text": "its"}, {"text": "own"}, {"text": "Pinocchio"}, {"text": "commercial"}, {"text": ","}, {"text": "produced"}, {"text": "*"}, {"text": "by"}, {"text": "Mr."}, {"text": "Ailes"}, {"text": "."}, {"text": "In"}, {"text": "this"}, {"text": "one"}, {"text": ","}, {"text": "the"}, {"text": "screen"}, {"text": "fills"}, {"text": "with"}, {"text": "photographs"}, {"text": "of"}, {"text": "both"}, {"text": "candidates"}, {"text": "."}, {"text": "``"}, {"text": "Who"}, {"text": "*T*-1"}, {"text": "'s"}, {"text": "really"}, {"text": "lying"}, {"text": "?"}, {"text": "''"}, {"text": "asks"}, {"text": "*T*-2"}, {"text": "a"}, {"text": "female"}, {"text": "voice"}, {"text": "."}, {"text": "``"}, {"text": "Florio"}, {"text": "'s"}, {"text": "lying"}, {"text": ","}, {"text": "''"}, {"text": "the"}, {"text": "voice"}, {"text": "goes"}, {"text": "on"}, {"text": ","}, {"text": "because"}, {"text": "``"}, {"text": "the"}, {"text": "barrel"}, {"text": "on"}, {"text": "Courter"}, {"text": "'s"}, {"text": "land"}, {"text": "..."}, {"text": "contained"}, {"text": "heating"}, {"text": "oil"}, {"text": ","}, {"text": "was"}, {"text": "cleaned"}, {"text": "*-1"}, {"text": "up"}, {"text": "and"}, {"text": "caused"}, {"text": "no"}, {"text": "pollution"}, {"text": "."}, {"text": "''"}, {"text": "Mr."}, {"text": "Courter"}, {"text": "'s"}, {"text": "long"}, {"text": "nose"}, {"text": "shrinks"}, {"text": "while"}, {"text": "Mr."}, {"text": "Florio"}, {"text": "'s"}, {"text": "grows"}, {"text": "."}, {"text": "Who"}, {"text": "*T*-1"}, {"text": "'s"}, {"text": "telling"}, {"text": "the"}, {"text": "truth"}, {"text": "?"}, {"text": "Stephen"}, {"text": "Salmore"}, {"text": ","}, {"text": "a"}, {"text": "political"}, {"text": "scientist"}, {"text": "at"}, {"text": "New"}, {"text": "Jersey"}, {"text": "'s"}, {"text": "Eagleton"}, {"text": "Institute"}, {"text": ","}, {"text": "says"}, {"text": "0"}, {"text": "it"}, {"text": "'s"}, {"text": "another"}, {"text": "example"}, {"text": "of"}, {"text": "an"}, {"text": "ad"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "'s"}, {"text": "true"}, {"text": "but"}, {"text": "not"}, {"text": "fully"}, {"text": "accurate"}, {"text": "."}, {"text": "Barrels"}, {"text": "were"}, {"text": "dumped"}, {"text": "*-1"}, {"text": "on"}, {"text": "the"}, {"text": "Courter"}, {"text": "property"}, {"text": ","}, {"text": "a"}, {"text": "complaint"}, {"text": "was"}, {"text": "made"}, {"text": "*-2"}, {"text": ","}, {"text": "but"}, {"text": "there"}, {"text": "is"}, {"text": "no"}, {"text": "evidence"}, {"text": "0"}, {"text": "the"}, {"text": "barrels"}, {"text": "were"}, {"text": "a"}, {"text": "serious"}, {"text": "threat"}, {"text": "to"}, {"text": "the"}, {"text": "environment"}, {"text": "."}, {"text": "Even"}, {"text": "so"}, {"text": ","}, {"text": "according"}, {"text": "to"}, {"text": "Mr."}, {"text": "Salmore"}, {"text": ","}, {"text": "the"}, {"text": "ad"}, {"text": "was"}, {"text": "``"}, {"text": "devastating"}, {"text": "''"}, {"text": "because"}, {"text": "it"}, {"text": "raised"}, {"text": "questions"}, {"text": "about"}, {"text": "Mr."}, {"text": "Courter"}, {"text": "'s"}, {"text": "credibility"}, {"text": "."}, {"text": "But"}, {"text": "it"}, {"text": "'s"}, {"text": "building"}, {"text": "on"}, {"text": "a"}, {"text": "long"}, {"text": "tradition"}, {"text": "."}, {"text": "In"}, {"text": "1966"}, {"text": ","}, {"text": "on"}, {"text": "route"}, {"text": "to"}, {"text": "a"}, {"text": "re-election"}, {"text": "rout"}, {"text": "of"}, {"text": "Democrat"}, {"text": "Frank"}, {"text": "O'Connor"}, {"text": ","}, {"text": "GOP"}, {"text": "Gov."}, {"text": "Nelson"}, {"text": "Rockefeller"}, {"text": "of"}, {"text": "New"}, {"text": "York"}, {"text": "appeared"}, {"text": "in"}, {"text": "person"}, {"text": "*-1"}, {"text": "saying"}, {"text": ","}, {"text": "``"}, {"text": "If"}, {"text": "you"}, {"text": "want"}, {"text": "*-2"}, {"text": "to"}, {"text": "keep"}, {"text": "the"}, {"text": "crime"}, {"text": "rates"}, {"text": "high"}, {"text": ","}, {"text": "O'Connor"}, {"text": "is"}, {"text": "your"}, {"text": "man"}, {"text": "."}, {"text": "''"}, {"text": "A"}, {"text": "seat"}, {"text": "on"}, {"text": "the"}, {"text": "Chicago"}, {"text": "Board"}, {"text": "of"}, {"text": "Trade"}, {"text": "was"}, {"text": "sold"}, {"text": "*-1"}, {"text": "for"}, {"text": "$"}, {"text": "350,000"}, {"text": "*U*"}, {"text": ","}, {"text": "down"}, {"text": "$"}, {"text": "16,000"}, {"text": "*U*"}, {"text": "from"}, {"text": "the"}, {"text": "previous"}, {"text": "sale"}, {"text": "last"}, {"text": "Friday"}, {"text": "."}, {"text": "Seats"}, {"text": "currently"}, {"text": "are"}, {"text": "quoted"}, {"text": "*-1"}, {"text": "at"}, {"text": "$"}, {"text": "331,000"}, {"text": "*U*"}, {"text": ","}, {"text": "bid"}, {"text": "*"}, {"text": ","}, {"text": "and"}, {"text": "$"}, {"text": "350,000"}, {"text": "*U*"}, {"text": ","}, {"text": "asked"}, {"text": "*"}, {"text": "."}, {"text": "The"}, {"text": "record"}, {"text": "price"}, {"text": "for"}, {"text": "a"}, {"text": "full"}, {"text": "membership"}, {"text": "on"}, {"text": "the"}, {"text": "exchange"}, {"text": "is"}, {"text": "$"}, {"text": "550,000"}, {"text": "*U*"}, {"text": ","}, {"text": "*-2"}, {"text": "set"}, {"text": "*-1"}, {"text": "Aug."}, {"text": "31"}, {"text": ","}, {"text": "1987"}, {"text": "."}, {"text": "Japanese"}, {"text": "investment"}, {"text": "in"}, {"text": "Southeast"}, {"text": "Asia"}, {"text": "is"}, {"text": "propelling"}, {"text": "the"}, {"text": "region"}, {"text": "toward"}, {"text": "economic"}, {"text": "integration"}, {"text": "."}, {"text": "Interviews"}, {"text": "with"}, {"text": "analysts"}, {"text": "and"}, {"text": "business"}, {"text": "people"}, {"text": "in"}, {"text": "the"}, {"text": "U.S."}, {"text": "suggest"}, {"text": "that"}, {"text": "Japanese"}, {"text": "capital"}, {"text": "may"}, {"text": "produce"}, {"text": "the"}, {"text": "economic"}, {"text": "cooperation"}, {"text": "that"}, {"text": "Southeast"}, {"text": "Asian"}, {"text": "politicians"}, {"text": "have"}, {"text": "pursued"}, {"text": "*T*-2"}, {"text": "in"}, {"text": "fits"}, {"text": "and"}, {"text": "starts"}, {"text": "for"}, {"text": "decades"}, {"text": "."}, {"text": "But"}, {"text": "Japan"}, {"text": "'s"}, {"text": "power"}, {"text": "in"}, {"text": "the"}, {"text": "region"}, {"text": "also"}, {"text": "is"}, {"text": "sparking"}, {"text": "fears"}, {"text": "of"}, {"text": "domination"}, {"text": "and"}, {"text": "posing"}, {"text": "fresh"}, {"text": "policy"}, {"text": "questions"}, {"text": "."}, {"text": "The"}, {"text": "flow"}, {"text": "of"}, {"text": "Japanese"}, {"text": "funds"}, {"text": "has"}, {"text": "set"}, {"text": "in"}, {"text": "motion"}, {"text": "``"}, {"text": "a"}, {"text": "process"}, {"text": "whereby"}, {"text": "these"}, {"text": "economies"}, {"text": "will"}, {"text": "be"}, {"text": "knitted"}, {"text": "*-1"}, {"text": "together"}, {"text": "by"}, {"text": "the"}, {"text": "great"}, {"text": "Japanese"}, {"text": "investment"}, {"text": "machine"}, {"text": "*T*-2"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "0"}, {"text": "*T*-3"}, {"text": "Robert"}, {"text": "Hormats"}, {"text": ","}, {"text": "vice"}, {"text": "chairman"}, {"text": "of"}, {"text": "Goldman"}, {"text": "Sachs"}, {"text": "International"}, {"text": "Corp"}, {"text": "."}, {"text": "In"}, {"text": "the"}, {"text": "past"}, {"text": "five"}, {"text": "years"}, {"text": ","}, {"text": "Japanese"}, {"text": "companies"}, {"text": "have"}, {"text": "tripled"}, {"text": "their"}, {"text": "commitments"}, {"text": "in"}, {"text": "Asia"}, {"text": "to"}, {"text": "$"}, {"text": "5.57"}, {"text": "billion"}, {"text": "*U*"}, {"text": "."}, {"text": "In"}, {"text": "Thailand"}, {"text": ","}, {"text": "for"}, {"text": "example"}, {"text": ","}, {"text": "the"}, {"text": "government"}, {"text": "'s"}, {"text": "Board"}, {"text": "of"}, {"text": "Investment"}, {"text": "approved"}, {"text": "$"}, {"text": "705.6"}, {"text": "million"}, {"text": "*U*"}, {"text": "of"}, {"text": "Japanese"}, {"text": "investment"}, {"text": "*ICH*-1"}, {"text": "in"}, {"text": "1988"}, {"text": ","}, {"text": "10"}, {"text": "times"}, {"text": "the"}, {"text": "U.S."}, {"text": "investment"}, {"text": "figure"}, {"text": "for"}, {"text": "the"}, {"text": "year"}, {"text": "."}, {"text": "Japan"}, {"text": "'s"}, {"text": "commitment"}, {"text": "in"}, {"text": "Southeast"}, {"text": "Asia"}, {"text": "also"}, {"text": "includes"}, {"text": "steep"}, {"text": "increases"}, {"text": "in"}, {"text": "foreign"}, {"text": "assistance"}, {"text": "and"}, {"text": "trade"}, {"text": "."}, {"text": "Asia"}, {"text": "'s"}, {"text": "other"}, {"text": "cash-rich"}, {"text": "countries"}, {"text": "are"}, {"text": "following"}, {"text": "Japan"}, {"text": "'s"}, {"text": "lead"}, {"text": "and"}, {"text": "pumping"}, {"text": "capital"}, {"text": "into"}, {"text": "the"}, {"text": "region"}, {"text": "."}, {"text": "In"}, {"text": "Taiwan"}, {"text": "and"}, {"text": "South"}, {"text": "Korea"}, {"text": ","}, {"text": "rising"}, {"text": "wages"}, {"text": "are"}, {"text": "forcing"}, {"text": "manufacturers"}, {"text": "to"}, {"text": "seek"}, {"text": "other"}, {"text": "overseas"}, {"text": "sites"}, {"text": "for"}, {"text": "labor-intensive"}, {"text": "production"}, {"text": "."}, {"text": "These"}, {"text": "nations"}, {"text": ","}, {"text": "known"}, {"text": "*"}, {"text": "as"}, {"text": "Asia"}, {"text": "'s"}, {"text": "``"}, {"text": "little"}, {"text": "tigers"}, {"text": ","}, {"text": "''"}, {"text": "also"}, {"text": "are"}, {"text": "contributing"}, {"text": "to"}, {"text": "Southeast"}, {"text": "Asia"}, {"text": "'s"}, {"text": "integration"}, {"text": ","}, {"text": "but"}, {"text": "their"}, {"text": "influence"}, {"text": "will"}, {"text": "remain"}, {"text": "subordinate"}, {"text": "to"}, {"text": "Japan"}, {"text": "'s"}, {"text": "."}, {"text": "For"}, {"text": "recipient"}, {"text": "countries"}, {"text": "such"}, {"text": "as"}, {"text": "Thailand"}, {"text": "and"}, {"text": "Malaysia"}, {"text": ","}, {"text": "the"}, {"text": "investment"}, {"text": "will"}, {"text": "provide"}, {"text": "needed"}, {"text": "jobs"}, {"text": "and"}, {"text": "spur"}, {"text": "growth"}, {"text": "."}, {"text": "But"}, {"text": "Asian"}, {"text": "nations"}, {"text": "'"}, {"text": "harsh"}, {"text": "memories"}, {"text": "of"}, {"text": "their"}, {"text": "military"}, {"text": "domination"}, {"text": "by"}, {"text": "Japan"}, {"text": "in"}, {"text": "the"}, {"text": "early"}, {"text": "part"}, {"text": "of"}, {"text": "this"}, {"text": "century"}, {"text": "make"}, {"text": "them"}, {"text": "fearful"}, {"text": "of"}, {"text": "*"}, {"text": "falling"}, {"text": "under"}, {"text": "Japanese"}, {"text": "economic"}, {"text": "hegemony"}, {"text": "now"}, {"text": "."}, {"text": "Because"}, {"text": "of"}, {"text": "budget"}, {"text": "constraints"}, {"text": "in"}, {"text": "Washington"}, {"text": ","}, {"text": "the"}, {"text": "U.S."}, {"text": "encourages"}, {"text": "Japan"}, {"text": "to"}, {"text": "share"}, {"text": "economic"}, {"text": "burdens"}, {"text": "in"}, {"text": "the"}, {"text": "region"}, {"text": "."}, {"text": "But"}, {"text": "it"}, {"text": "resists"}, {"text": "*-1"}, {"text": "yielding"}, {"text": "political"}, {"text": "ground"}, {"text": "."}, {"text": "In"}, {"text": "the"}, {"text": "coming"}, {"text": "decade"}, {"text": ","}, {"text": "analysts"}, {"text": "say"}, {"text": "0"}, {"text": "*T*-2"}, {"text": ","}, {"text": "U.S.-Japanese"}, {"text": "relations"}, {"text": "will"}, {"text": "be"}, {"text": "tested"}, {"text": "*-1"}, {"text": "as"}, {"text": "Tokyo"}, {"text": "comes"}, {"text": "to"}, {"text": "terms"}, {"text": "with"}, {"text": "its"}, {"text": "new"}, {"text": "status"}, {"text": "as"}, {"text": "the"}, {"text": "region"}, {"text": "'s"}, {"text": "economic"}, {"text": "behemoth"}, {"text": "."}, {"text": "Japan"}, {"text": "'s"}, {"text": "swelling"}, {"text": "investment"}, {"text": "in"}, {"text": "Southeast"}, {"text": "Asia"}, {"text": "is"}, {"text": "part"}, {"text": "of"}, {"text": "its"}, {"text": "economic"}, {"text": "evolution"}, {"text": "."}, {"text": "In"}, {"text": "the"}, {"text": "past"}, {"text": "decade"}, {"text": ","}, {"text": "Japanese"}, {"text": "manufacturers"}, {"text": "concentrated"}, {"text": "on"}, {"text": "domestic"}, {"text": "production"}, {"text": "for"}, {"text": "export"}, {"text": "."}, {"text": "In"}, {"text": "the"}, {"text": "1990s"}, {"text": ","}, {"text": "*-2"}, {"text": "spurred"}, {"text": "*-1"}, {"text": "by"}, {"text": "rising"}, {"text": "labor"}, {"text": "costs"}, {"text": "and"}, {"text": "the"}, {"text": "strong"}, {"text": "yen"}, {"text": ","}, {"text": "these"}, {"text": "companies"}, {"text": "will"}, {"text": "increasingly"}, {"text": "turn"}, {"text": "themselves"}, {"text": "into"}, {"text": "multinationals"}, {"text": "with"}, {"text": "plants"}, {"text": "around"}, {"text": "the"}, {"text": "world"}, {"text": "."}, {"text": "*-1"}, {"text": "To"}, {"text": "capture"}, {"text": "the"}, {"text": "investment"}, {"text": ","}, {"text": "Southeast"}, {"text": "Asian"}, {"text": "nations"}, {"text": "will"}, {"text": "move"}, {"text": "*-1"}, {"text": "to"}, {"text": "accommodate"}, {"text": "Japanese"}, {"text": "business"}, {"text": "."}, {"text": "These"}, {"text": "nations"}, {"text": "'"}, {"text": "internal"}, {"text": "decisions"}, {"text": "``"}, {"text": "will"}, {"text": "be"}, {"text": "made"}, {"text": "*-3"}, {"text": "in"}, {"text": "a"}, {"text": "way"}, {"text": "0"}, {"text": "*"}, {"text": "not"}, {"text": "to"}, {"text": "offend"}, {"text": "their"}, {"text": "largest"}, {"text": "aid"}, {"text": "donor"}, {"text": ","}, {"text": "largest"}, {"text": "private"}, {"text": "investor"}, {"text": "and"}, {"text": "largest"}, {"text": "lender"}, {"text": "*T*-1"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "Richard"}, {"text": "Drobnick"}, {"text": ","}, {"text": "director"}, {"text": "of"}, {"text": "the"}, {"text": "international"}, {"text": "business"}, {"text": "and"}, {"text": "research"}, {"text": "program"}, {"text": "at"}, {"text": "the"}, {"text": "University"}, {"text": "of"}, {"text": "Southern"}, {"text": "California"}, {"text": "'s"}, {"text": "Graduate"}, {"text": "School"}, {"text": "of"}, {"text": "Business"}, {"text": "."}, {"text": "Japanese"}, {"text": "money"}, {"text": "will"}, {"text": "help"}, {"text": "*-1"}, {"text": "turn"}, {"text": "Southeast"}, {"text": "Asia"}, {"text": "into"}, {"text": "a"}, {"text": "more"}, {"text": "cohesive"}, {"text": "economic"}, {"text": "region"}, {"text": "."}, {"text": "But"}, {"text": ","}, {"text": "analysts"}, {"text": "say"}, {"text": "0"}, {"text": "*T*-2"}, {"text": ","}, {"text": "Asian"}, {"text": "cooperation"}, {"text": "is"}, {"text": "n't"}, {"text": "likely"}, {"text": "*-1"}, {"text": "to"}, {"text": "parallel"}, {"text": "the"}, {"text": "European"}, {"text": "Common"}, {"text": "Market"}, {"text": "approach"}, {"text": "."}, {"text": "Rather"}, {"text": ","}, {"text": "Japanese"}, {"text": "investment"}, {"text": "will"}, {"text": "spur"}, {"text": "integration"}, {"text": "of"}, {"text": "certain"}, {"text": "sectors"}, {"text": ","}, {"text": "says"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "Kent"}, {"text": "Calder"}, {"text": ","}, {"text": "a"}, {"text": "specialist"}, {"text": "in"}, {"text": "East"}, {"text": "Asian"}, {"text": "economies"}, {"text": "at"}, {"text": "the"}, {"text": "Woodrow"}, {"text": "Wilson"}, {"text": "School"}, {"text": "for"}, {"text": "Public"}, {"text": "and"}, {"text": "Internatonal"}, {"text": "Affairs"}, {"text": "at"}, {"text": "Princeton"}, {"text": "University"}, {"text": "."}, {"text": "In"}, {"text": "electronics"}, {"text": ","}, {"text": "for"}, {"text": "example"}, {"text": ","}, {"text": "a"}, {"text": "Japanese"}, {"text": "company"}, {"text": "might"}, {"text": "make"}, {"text": "television"}, {"text": "picture"}, {"text": "tubes"}, {"text": "in"}, {"text": "Japan"}, {"text": ","}, {"text": "assemble"}, {"text": "the"}, {"text": "sets"}, {"text": "in"}, {"text": "Malaysia"}, {"text": "and"}, {"text": "export"}, {"text": "them"}, {"text": "to"}, {"text": "Indonesia"}, {"text": "."}, {"text": "``"}, {"text": "The"}, {"text": "effect"}, {"text": "will"}, {"text": "be"}, {"text": "*"}, {"text": "to"}, {"text": "pull"}, {"text": "Asia"}, {"text": "together"}, {"text": "not"}, {"text": "as"}, {"text": "a"}, {"text": "common"}, {"text": "market"}, {"text": "but"}, {"text": "as"}, {"text": "an"}, {"text": "integrated"}, {"text": "production"}, {"text": "zone"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "Goldman"}, {"text": "Sachs"}, {"text": "'s"}, {"text": "Mr."}, {"text": "Hormats"}, {"text": "."}, {"text": "Countries"}, {"text": "in"}, {"text": "the"}, {"text": "region"}, {"text": "also"}, {"text": "are"}, {"text": "beginning"}, {"text": "*-1"}, {"text": "to"}, {"text": "consider"}, {"text": "a"}, {"text": "framework"}, {"text": "for"}, {"text": "closer"}, {"text": "economic"}, {"text": "and"}, {"text": "political"}, {"text": "ties"}, {"text": "."}, {"text": "The"}, {"text": "economic"}, {"text": "and"}, {"text": "foreign"}, {"text": "ministers"}, {"text": "of"}, {"text": "12"}, {"text": "Asian"}, {"text": "and"}, {"text": "Pacific"}, {"text": "nations"}, {"text": "will"}, {"text": "meet"}, {"text": "in"}, {"text": "Australia"}, {"text": "next"}, {"text": "week"}, {"text": "*-1"}, {"text": "to"}, {"text": "discuss"}, {"text": "global"}, {"text": "trade"}, {"text": "issues"}, {"text": "as"}, {"text": "well"}, {"text": "as"}, {"text": "regional"}, {"text": "matters"}, {"text": "such"}, {"text": "as"}, {"text": "transportation"}, {"text": "and"}, {"text": "telecommunications"}, {"text": "."}, {"text": "Participants"}, {"text": "will"}, {"text": "include"}, {"text": "the"}, {"text": "U.S."}, {"text": ","}, {"text": "Australia"}, {"text": ","}, {"text": "Canada"}, {"text": ","}, {"text": "Japan"}, {"text": ","}, {"text": "South"}, {"text": "Korea"}, {"text": "and"}, {"text": "New"}, {"text": "Zealand"}, {"text": "as"}, {"text": "well"}, {"text": "as"}, {"text": "the"}, {"text": "six"}, {"text": "members"}, {"text": "of"}, {"text": "the"}, {"text": "Association"}, {"text": "of"}, {"text": "Southeast"}, {"text": "Asian"}, {"text": "Nations"}, {"text": "--"}, {"text": "Thailand"}, {"text": ","}, {"text": "Malaysia"}, {"text": ","}, {"text": "Singapore"}, {"text": ","}, {"text": "Indonesia"}, {"text": ","}, {"text": "the"}, {"text": "Philippines"}, {"text": "and"}, {"text": "Brunei"}, {"text": "."}, {"text": "In"}, {"text": "addition"}, {"text": ","}, {"text": "the"}, {"text": "U.S."}, {"text": "this"}, {"text": "year"}, {"text": "offered"}, {"text": "its"}, {"text": "own"}, {"text": "plan"}, {"text": "for"}, {"text": "cooperation"}, {"text": "around"}, {"text": "the"}, {"text": "Pacific"}, {"text": "rim"}, {"text": "in"}, {"text": "a"}, {"text": "major"}, {"text": "speech"}, {"text": "by"}, {"text": "Secretary"}, {"text": "of"}, {"text": "State"}, {"text": "James"}, {"text": "Baker"}, {"text": ","}, {"text": "following"}, {"text": "up"}, {"text": "a"}, {"text": "proposal"}, {"text": "made"}, {"text": "*"}, {"text": "in"}, {"text": "January"}, {"text": "by"}, {"text": "Australian"}, {"text": "Prime"}, {"text": "Minister"}, {"text": "Bob"}, {"text": "Hawke"}, {"text": "."}, {"text": "The"}, {"text": "Baker"}, {"text": "proposal"}, {"text": "reasserts"}, {"text": "Washington"}, {"text": "'s"}, {"text": "intention"}, {"text": "*"}, {"text": "to"}, {"text": "continue"}, {"text": "*-1"}, {"text": "playing"}, {"text": "a"}, {"text": "leading"}, {"text": "political"}, {"text": "role"}, {"text": "in"}, {"text": "the"}, {"text": "region"}, {"text": "."}, {"text": "``"}, {"text": "In"}, {"text": "Asia"}, {"text": ","}, {"text": "as"}, {"text": "in"}, {"text": "Europe"}, {"text": ","}, {"text": "a"}, {"text": "new"}, {"text": "order"}, {"text": "is"}, {"text": "taking"}, {"text": "shape"}, {"text": ","}, {"text": "''"}, {"text": "Mr."}, {"text": "Baker"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "``"}, {"text": "The"}, {"text": "U.S."}, {"text": ","}, {"text": "with"}, {"text": "its"}, {"text": "regional"}, {"text": "friends"}, {"text": ","}, {"text": "must"}, {"text": "play"}, {"text": "a"}, {"text": "crucial"}, {"text": "role"}, {"text": "in"}, {"text": "*"}, {"text": "designing"}, {"text": "its"}, {"text": "architecture"}, {"text": "."}, {"text": "''"}, {"text": "But"}, {"text": "*"}, {"text": "maintaining"}, {"text": "U.S."}, {"text": "influence"}, {"text": "will"}, {"text": "be"}, {"text": "difficult"}, {"text": "in"}, {"text": "the"}, {"text": "face"}, {"text": "of"}, {"text": "Japanese"}, {"text": "dominance"}, {"text": "in"}, {"text": "the"}, {"text": "region"}, {"text": "."}, {"text": "Japan"}, {"text": "not"}, {"text": "only"}, {"text": "outstrips"}, {"text": "the"}, {"text": "U.S."}, {"text": "in"}, {"text": "investment"}, {"text": "flows"}, {"text": "but"}, {"text": "also"}, {"text": "outranks"}, {"text": "it"}, {"text": "in"}, {"text": "trade"}, {"text": "with"}, {"text": "most"}, {"text": "Southeast"}, {"text": "Asian"}, {"text": "countries"}, {"text": "-LRB-"}, {"text": "although"}, {"text": "the"}, {"text": "U.S."}, {"text": "remains"}, {"text": "the"}, {"text": "leading"}, {"text": "trade"}, {"text": "partner"}, {"text": "for"}, {"text": "all"}, {"text": "of"}, {"text": "Asia"}, {"text": "-RRB-"}, {"text": "."}, {"text": "Moreover"}, {"text": ","}, {"text": "the"}, {"text": "Japanese"}, {"text": "government"}, {"text": ","}, {"text": "now"}, {"text": "the"}, {"text": "world"}, {"text": "'s"}, {"text": "largest"}, {"text": "aid"}, {"text": "donor"}, {"text": ","}, {"text": "is"}, {"text": "pumping"}, {"text": "far"}, {"text": "more"}, {"text": "assistance"}, {"text": "*ICH*-2"}, {"text": "into"}, {"text": "the"}, {"text": "region"}, {"text": "than"}, {"text": "the"}, {"text": "U.S."}, {"text": "is"}, {"text": "*?*"}, {"text": "."}, {"text": "While"}, {"text": "U.S."}, {"text": "officials"}, {"text": "voice"}, {"text": "optimism"}, {"text": "about"}, {"text": "Japan"}, {"text": "'s"}, {"text": "enlarged"}, {"text": "role"}, {"text": "in"}, {"text": "Asia"}, {"text": ","}, {"text": "they"}, {"text": "also"}, {"text": "convey"}, {"text": "an"}, {"text": "undertone"}, {"text": "of"}, {"text": "caution"}, {"text": "."}, {"text": "``"}, {"text": "There"}, {"text": "'s"}, {"text": "an"}, {"text": "understanding"}, {"text": "*ICH*-1"}, {"text": "on"}, {"text": "the"}, {"text": "part"}, {"text": "of"}, {"text": "the"}, {"text": "U.S."}, {"text": "that"}, {"text": "Japan"}, {"text": "has"}, {"text": "*-2"}, {"text": "to"}, {"text": "expand"}, {"text": "its"}, {"text": "functions"}, {"text": "''"}, {"text": "in"}, {"text": "Asia"}, {"text": ","}, {"text": "says"}, {"text": "0"}, {"text": "*T*-3"}, {"text": "J."}, {"text": "Michael"}, {"text": "Farren"}, {"text": ","}, {"text": "undersecretary"}, {"text": "of"}, {"text": "commerce"}, {"text": "for"}, {"text": "trade"}, {"text": "."}, {"text": "``"}, {"text": "If"}, {"text": "they"}, {"text": "approach"}, {"text": "it"}, {"text": "with"}, {"text": "a"}, {"text": "benevolent"}, {"text": ","}, {"text": "altruistic"}, {"text": "attitude"}, {"text": ","}, {"text": "there"}, {"text": "will"}, {"text": "be"}, {"text": "a"}, {"text": "net"}, {"text": "gain"}, {"text": "for"}, {"text": "everyone"}, {"text": "."}, {"text": "''"}, {"text": "Some"}, {"text": "Asian"}, {"text": "nations"}, {"text": "are"}, {"text": "apprehensive"}, {"text": "about"}, {"text": "Washington"}, {"text": "'s"}, {"text": "demand"}, {"text": "that"}, {"text": "Tokyo"}, {"text": "step"}, {"text": "up"}, {"text": "its"}, {"text": "military"}, {"text": "spending"}, {"text": "*-1"}, {"text": "to"}, {"text": "ease"}, {"text": "the"}, {"text": "U.S."}, {"text": "security"}, {"text": "burden"}, {"text": "in"}, {"text": "the"}, {"text": "region"}, {"text": "."}, {"text": "The"}, {"text": "issue"}, {"text": "is"}, {"text": "further"}, {"text": "complicated"}, {"text": "*-1"}, {"text": "by"}, {"text": "uncertainty"}, {"text": "over"}, {"text": "the"}, {"text": "future"}, {"text": "of"}, {"text": "the"}, {"text": "U.S."}, {"text": "'s"}, {"text": "leases"}, {"text": "on"}, {"text": "military"}, {"text": "bases"}, {"text": "in"}, {"text": "the"}, {"text": "Philippines"}, {"text": "and"}, {"text": "by"}, {"text": "a"}, {"text": "possible"}, {"text": "U.S."}, {"text": "troop"}, {"text": "reduction"}, {"text": "in"}, {"text": "South"}, {"text": "Korea"}, {"text": "."}, {"text": "Many"}, {"text": "Asians"}, {"text": "regard"}, {"text": "a"}, {"text": "U.S."}, {"text": "presence"}, {"text": "as"}, {"text": "a"}, {"text": "desirable"}, {"text": "counterweight"}, {"text": "to"}, {"text": "Japanese"}, {"text": "influence"}, {"text": "."}, {"text": "``"}, {"text": "No"}, {"text": "one"}, {"text": "wants"}, {"text": "the"}, {"text": "U.S."}, {"text": "to"}, {"text": "pick"}, {"text": "up"}, {"text": "its"}, {"text": "marbles"}, {"text": "and"}, {"text": "go"}, {"text": "home"}, {"text": ","}, {"text": "''"}, {"text": "Mr."}, {"text": "Hormats"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "."}, {"text": "For"}, {"text": "their"}, {"text": "part"}, {"text": ","}, {"text": "Taiwan"}, {"text": "and"}, {"text": "South"}, {"text": "Korea"}, {"text": "are"}, {"text": "expected"}, {"text": "*-1"}, {"text": "to"}, {"text": "step"}, {"text": "up"}, {"text": "their"}, {"text": "own"}, {"text": "investments"}, {"text": "in"}, {"text": "the"}, {"text": "next"}, {"text": "decade"}, {"text": "*-2"}, {"text": "to"}, {"text": "try"}, {"text": "*-3"}, {"text": "to"}, {"text": "slow"}, {"text": "the"}, {"text": "Japanese"}, {"text": "juggernaut"}, {"text": "."}, {"text": "``"}, {"text": "They"}, {"text": "do"}, {"text": "n't"}, {"text": "want"}, {"text": "Japan"}, {"text": "to"}, {"text": "monopolize"}, {"text": "the"}, {"text": "region"}, {"text": "and"}, {"text": "sew"}, {"text": "it"}, {"text": "up"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "Chong-sik"}, {"text": "Lee"}, {"text": ","}, {"text": "professor"}, {"text": "of"}, {"text": "East"}, {"text": "Asian"}, {"text": "politics"}, {"text": "at"}, {"text": "the"}, {"text": "University"}, {"text": "of"}, {"text": "Pennsylvania"}, {"text": "."}, {"text": "Cathryn"}, {"text": "Rice"}, {"text": "could"}, {"text": "hardly"}, {"text": "believe"}, {"text": "her"}, {"text": "eyes"}, {"text": "."}, {"text": "While"}, {"text": "*-1"}, {"text": "giving"}, {"text": "the"}, {"text": "Comprehensive"}, {"text": "Test"}, {"text": "of"}, {"text": "Basic"}, {"text": "Skills"}, {"text": "to"}, {"text": "ninth"}, {"text": "graders"}, {"text": "at"}, {"text": "Greenville"}, {"text": "High"}, {"text": "School"}, {"text": "last"}, {"text": "March"}, {"text": "16"}, {"text": ","}, {"text": "she"}, {"text": "spotted"}, {"text": "a"}, {"text": "student"}, {"text": "looking"}, {"text": "at"}, {"text": "crib"}, {"text": "sheets"}, {"text": "."}, {"text": "She"}, {"text": "had"}, {"text": "seen"}, {"text": "cheating"}, {"text": "before"}, {"text": ","}, {"text": "but"}, {"text": "these"}, {"text": "notes"}, {"text": "were"}, {"text": "uncanny"}, {"text": "."}, {"text": "``"}, {"text": "A"}, {"text": "stockbroker"}, {"text": "is"}, {"text": "an"}, {"text": "example"}, {"text": "of"}, {"text": "a"}, {"text": "profession"}, {"text": "in"}, {"text": "trade"}, {"text": "and"}, {"text": "finance"}, {"text": "..."}, {"text": "."}, {"text": "At"}, {"text": "the"}, {"text": "end"}, {"text": "of"}, {"text": "World"}, {"text": "War"}, {"text": "II"}, {"text": ","}, {"text": "Germany"}, {"text": "surrendered"}, {"text": "before"}, {"text": "Japan"}, {"text": "..."}, {"text": "."}, {"text": "The"}, {"text": "Senate-House"}, {"text": "conference"}, {"text": "committee"}, {"text": "is"}, {"text": "used"}, {"text": "*-1"}, {"text": "when"}, {"text": "a"}, {"text": "bill"}, {"text": "is"}, {"text": "passed"}, {"text": "*-3"}, {"text": "by"}, {"text": "the"}, {"text": "House"}, {"text": "and"}, {"text": "Senate"}, {"text": "in"}, {"text": "different"}, {"text": "forms"}, {"text": "*T*-2"}, {"text": "."}, {"text": "''"}, {"text": "Virtually"}, {"text": "word"}, {"text": "for"}, {"text": "word"}, {"text": ","}, {"text": "the"}, {"text": "notes"}, {"text": "matched"}, {"text": "questions"}, {"text": "and"}, {"text": "answers"}, {"text": "on"}, {"text": "the"}, {"text": "social-studies"}, {"text": "section"}, {"text": "of"}, {"text": "the"}, {"text": "test"}, {"text": "0"}, {"text": "the"}, {"text": "student"}, {"text": "was"}, {"text": "taking"}, {"text": "*T*-1"}, {"text": "."}, {"text": "In"}, {"text": "fact"}, {"text": ","}, {"text": "the"}, {"text": "student"}, {"text": "had"}, {"text": "the"}, {"text": "answers"}, {"text": "to"}, {"text": "almost"}, {"text": "all"}, {"text": "of"}, {"text": "the"}, {"text": "40"}, {"text": "questions"}, {"text": "in"}, {"text": "that"}, {"text": "section"}, {"text": "."}, {"text": "The"}, {"text": "student"}, {"text": "surrendered"}, {"text": "the"}, {"text": "notes"}, {"text": ","}, {"text": "but"}, {"text": "not"}, {"text": "without"}, {"text": "a"}, {"text": "protest"}, {"text": "."}, {"text": "``"}, {"text": "My"}, {"text": "teacher"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "*EXP*-1"}, {"text": "was"}, {"text": "OK"}, {"text": "for"}, {"text": "me"}, {"text": "to"}, {"text": "use"}, {"text": "the"}, {"text": "notes"}, {"text": "on"}, {"text": "the"}, {"text": "test"}, {"text": ","}, {"text": "''"}, {"text": "he"}, {"text": "said"}, {"text": "*T*-2"}, {"text": "."}, {"text": "The"}, {"text": "teacher"}, {"text": "in"}, {"text": "question"}, {"text": "was"}, {"text": "Nancy"}, {"text": "Yeargin"}, {"text": "--"}, {"text": "considered"}, {"text": "by"}, {"text": "many"}, {"text": "students"}, {"text": "and"}, {"text": "parents"}, {"text": "*"}, {"text": "to"}, {"text": "be"}, {"text": "one"}, {"text": "of"}, {"text": "the"}, {"text": "best"}, {"text": "at"}, {"text": "the"}, {"text": "school"}, {"text": "."}, {"text": "*-2"}, {"text": "Confronted"}, {"text": "*-1"}, {"text": ","}, {"text": "Mrs."}, {"text": "Yeargin"}, {"text": "admitted"}, {"text": "0"}, {"text": "she"}, {"text": "had"}, {"text": "given"}, {"text": "the"}, {"text": "questions"}, {"text": "and"}, {"text": "answers"}, {"text": "two"}, {"text": "days"}, {"text": "before"}, {"text": "the"}, {"text": "examination"}, {"text": "to"}, {"text": "two"}, {"text": "low-ability"}, {"text": "geography"}, {"text": "classes"}, {"text": "."}, {"text": "She"}, {"text": "had"}, {"text": "gone"}, {"text": "so"}, {"text": "far"}, {"text": "as"}, {"text": "*-1"}, {"text": "to"}, {"text": "display"}, {"text": "the"}, {"text": "questions"}, {"text": "on"}, {"text": "an"}, {"text": "overhead"}, {"text": "projector"}, {"text": "and"}, {"text": "underline"}, {"text": "the"}, {"text": "answers"}, {"text": "."}, {"text": "Mrs."}, {"text": "Yeargin"}, {"text": "was"}, {"text": "fired"}, {"text": "*-1"}, {"text": "and"}, {"text": "prosecuted"}, {"text": "*-1"}, {"text": "under"}, {"text": "an"}, {"text": "unusual"}, {"text": "South"}, {"text": "Carolina"}, {"text": "law"}, {"text": "that"}, {"text": "*T*-79"}, {"text": "makes"}, {"text": "it"}, {"text": "*EXP*-2"}, {"text": "a"}, {"text": "crime"}, {"text": "*"}, {"text": "to"}, {"text": "breach"}, {"text": "test"}, {"text": "security"}, {"text": "."}, {"text": "In"}, {"text": "September"}, {"text": ","}, {"text": "she"}, {"text": "pleaded"}, {"text": "guilty"}, {"text": "and"}, {"text": "paid"}, {"text": "a"}, {"text": "$"}, {"text": "500"}, {"text": "*U*"}, {"text": "fine"}, {"text": "."}, {"text": "Her"}, {"text": "alternative"}, {"text": "was"}, {"text": "90"}, {"text": "days"}, {"text": "in"}, {"text": "jail"}, {"text": "."}, {"text": "Her"}, {"text": "story"}, {"text": "is"}, {"text": "partly"}, {"text": "one"}, {"text": "of"}, {"text": "personal"}, {"text": "downfall"}, {"text": "."}, {"text": "She"}, {"text": "was"}, {"text": "an"}, {"text": "unstinting"}, {"text": "teacher"}, {"text": "who"}, {"text": "*T*-80"}, {"text": "won"}, {"text": "laurels"}, {"text": "and"}, {"text": "inspired"}, {"text": "students"}, {"text": ","}, {"text": "but"}, {"text": "she"}, {"text": "will"}, {"text": "probably"}, {"text": "never"}, {"text": "teach"}, {"text": "again"}, {"text": "."}, {"text": "In"}, {"text": "her"}, {"text": "wake"}, {"text": "she"}, {"text": "left"}, {"text": "the"}, {"text": "bitterness"}, {"text": "and"}, {"text": "anger"}, {"text": "of"}, {"text": "a"}, {"text": "principal"}, {"text": "who"}, {"text": "*T*-81"}, {"text": "was"}, {"text": "her"}, {"text": "friend"}, {"text": "and"}, {"text": "now"}, {"text": "calls"}, {"text": "her"}, {"text": "a"}, {"text": "betrayer"}, {"text": ";"}, {"text": "of"}, {"text": "colleagues"}, {"text": "who"}, {"text": "*T*-82"}, {"text": "say"}, {"text": "0"}, {"text": "she"}, {"text": "brought"}, {"text": "them"}, {"text": "shame"}, {"text": ";"}, {"text": "of"}, {"text": "students"}, {"text": "and"}, {"text": "parents"}, {"text": "who"}, {"text": "*T*-83"}, {"text": "defended"}, {"text": "her"}, {"text": "and"}, {"text": "insist"}, {"text": "0"}, {"text": "she"}, {"text": "was"}, {"text": "treated"}, {"text": "*-1"}, {"text": "harshly"}, {"text": ";"}, {"text": "and"}, {"text": "of"}, {"text": "school-district"}, {"text": "officials"}, {"text": "stunned"}, {"text": "that"}, {"text": "despite"}, {"text": "the"}, {"text": "bald-faced"}, {"text": "nature"}, {"text": "of"}, {"text": "her"}, {"text": "actions"}, {"text": ","}, {"text": "she"}, {"text": "became"}, {"text": "something"}, {"text": "of"}, {"text": "a"}, {"text": "local"}, {"text": "martyr"}, {"text": "."}, {"text": "Mrs."}, {"text": "Yeargin"}, {"text": "'s"}, {"text": "case"}, {"text": "also"}, {"text": "casts"}, {"text": "some"}, {"text": "light"}, {"text": "on"}, {"text": "the"}, {"text": "dark"}, {"text": "side"}, {"text": "of"}, {"text": "school"}, {"text": "reform"}, {"text": ","}, {"text": "where"}, {"text": "pressures"}, {"text": "on"}, {"text": "teachers"}, {"text": "are"}, {"text": "growing"}, {"text": "*T*-1"}, {"text": "and"}, {"text": "where"}, {"text": "high-stakes"}, {"text": "testing"}, {"text": "has"}, {"text": "enhanced"}, {"text": "the"}, {"text": "temptation"}, {"text": "*"}, {"text": "to"}, {"text": "cheat"}, {"text": "*T*-2"}, {"text": "."}, {"text": "The"}, {"text": "1987"}, {"text": "statute"}, {"text": "0"}, {"text": "Mrs."}, {"text": "Yeargin"}, {"text": "violated"}, {"text": "*T*-1"}, {"text": "was"}, {"text": "designed"}, {"text": "*-2"}, {"text": "*-3"}, {"text": "to"}, {"text": "enforce"}, {"text": "provisions"}, {"text": "of"}, {"text": "South"}, {"text": "Carolina"}, {"text": "'s"}, {"text": "school-improvement"}, {"text": "laws"}, {"text": "."}, {"text": "Prosecutors"}, {"text": "alleged"}, {"text": "that"}, {"text": "she"}, {"text": "was"}, {"text": "trying"}, {"text": "*-1"}, {"text": "to"}, {"text": "bolster"}, {"text": "students"}, {"text": "'"}, {"text": "scores"}, {"text": "*-1"}, {"text": "to"}, {"text": "win"}, {"text": "a"}, {"text": "bonus"}, {"text": "under"}, {"text": "the"}, {"text": "state"}, {"text": "'s"}, {"text": "1984"}, {"text": "Education"}, {"text": "Improvement"}, {"text": "Act"}, {"text": "."}, {"text": "The"}, {"text": "bonus"}, {"text": "depended"}, {"text": "on"}, {"text": "her"}, {"text": "ability"}, {"text": "*"}, {"text": "to"}, {"text": "produce"}, {"text": "higher"}, {"text": "student-test"}, {"text": "scores"}, {"text": "."}, {"text": "``"}, {"text": "There"}, {"text": "is"}, {"text": "incredible"}, {"text": "pressure"}, {"text": "*ICH*-2"}, {"text": "on"}, {"text": "school"}, {"text": "systems"}, {"text": "and"}, {"text": "teachers"}, {"text": "*"}, {"text": "to"}, {"text": "raise"}, {"text": "test"}, {"text": "scores"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "Walt"}, {"text": "Haney"}, {"text": ","}, {"text": "an"}, {"text": "education"}, {"text": "professor"}, {"text": "and"}, {"text": "testing"}, {"text": "specialist"}, {"text": "at"}, {"text": "Boston"}, {"text": "College"}, {"text": "."}, {"text": "``"}, {"text": "So"}, {"text": "efforts"}, {"text": "*"}, {"text": "to"}, {"text": "beat"}, {"text": "the"}, {"text": "tests"}, {"text": "are"}, {"text": "also"}, {"text": "on"}, {"text": "the"}, {"text": "rise"}, {"text": "."}, {"text": "''"}, {"text": "And"}, {"text": "*-1"}, {"text": "most"}, {"text": "disturbing"}, {"text": ","}, {"text": "it"}, {"text": "is"}, {"text": "educators"}, {"text": ","}, {"text": "not"}, {"text": "students"}, {"text": ","}, {"text": "who"}, {"text": "*T*-84"}, {"text": "are"}, {"text": "blamed"}, {"text": "*-2"}, {"text": "for"}, {"text": "much"}, {"text": "of"}, {"text": "the"}, {"text": "wrongdoing"}, {"text": "."}, {"text": "A"}, {"text": "50-state"}, {"text": "study"}, {"text": "released"}, {"text": "*"}, {"text": "in"}, {"text": "September"}, {"text": "by"}, {"text": "Friends"}, {"text": "for"}, {"text": "Education"}, {"text": ","}, {"text": "an"}, {"text": "Albuquerque"}, {"text": ","}, {"text": "N.M."}, {"text": ","}, {"text": "school-research"}, {"text": "group"}, {"text": ","}, {"text": "concluded"}, {"text": "that"}, {"text": "``"}, {"text": "outright"}, {"text": "cheating"}, {"text": "by"}, {"text": "American"}, {"text": "educators"}, {"text": "''"}, {"text": "is"}, {"text": "``"}, {"text": "common"}, {"text": "."}, {"text": "''"}, {"text": "The"}, {"text": "group"}, {"text": "says"}, {"text": "0"}, {"text": "standardized"}, {"text": "achievement"}, {"text": "test"}, {"text": "scores"}, {"text": "are"}, {"text": "greatly"}, {"text": "inflated"}, {"text": "because"}, {"text": "teachers"}, {"text": "often"}, {"text": "``"}, {"text": "teach"}, {"text": "the"}, {"text": "test"}, {"text": "''"}, {"text": "as"}, {"text": "Mrs."}, {"text": "Yeargin"}, {"text": "did"}, {"text": "*?*"}, {"text": ","}, {"text": "although"}, {"text": "most"}, {"text": "are"}, {"text": "never"}, {"text": "caught"}, {"text": "*-1"}, {"text": "."}, {"text": "Evidence"}, {"text": "of"}, {"text": "widespread"}, {"text": "cheating"}, {"text": "has"}, {"text": "surfaced"}, {"text": "in"}, {"text": "several"}, {"text": "states"}, {"text": "in"}, {"text": "the"}, {"text": "last"}, {"text": "year"}, {"text": "or"}, {"text": "so"}, {"text": "."}, {"text": "California"}, {"text": "'s"}, {"text": "education"}, {"text": "department"}, {"text": "suspects"}, {"text": "adult"}, {"text": "responsibility"}, {"text": "for"}, {"text": "erasures"}, {"text": "at"}, {"text": "40"}, {"text": "schools"}, {"text": "that"}, {"text": "*T*-85"}, {"text": "changed"}, {"text": "wrong"}, {"text": "answers"}, {"text": "to"}, {"text": "right"}, {"text": "ones"}, {"text": "on"}, {"text": "a"}, {"text": "statewide"}, {"text": "test"}, {"text": "."}, {"text": "After"}, {"text": "numerous"}, {"text": "occurrences"}, {"text": "of"}, {"text": "questionable"}, {"text": "teacher"}, {"text": "help"}, {"text": "to"}, {"text": "students"}, {"text": ","}, {"text": "Texas"}, {"text": "is"}, {"text": "revising"}, {"text": "its"}, {"text": "security"}, {"text": "practices"}, {"text": "."}, {"text": "And"}, {"text": "sales"}, {"text": "of"}, {"text": "test-coaching"}, {"text": "booklets"}, {"text": "for"}, {"text": "classroom"}, {"text": "instruction"}, {"text": "are"}, {"text": "booming"}, {"text": "."}, {"text": "These"}, {"text": "materials"}, {"text": ","}, {"text": "including"}, {"text": "Macmillan\\/McGraw-Hill"}, {"text": "School"}, {"text": "Publishing"}, {"text": "Co."}, {"text": "'s"}, {"text": "Scoring"}, {"text": "High"}, {"text": "and"}, {"text": "Learning"}, {"text": "Materials"}, {"text": "--"}, {"text": "are"}, {"text": "nothing"}, {"text": "short"}, {"text": "of"}, {"text": "sophisticated"}, {"text": "crib"}, {"text": "sheets"}, {"text": ","}, {"text": "according"}, {"text": "to"}, {"text": "some"}, {"text": "recent"}, {"text": "academic"}, {"text": "research"}, {"text": "."}, {"text": "By"}, {"text": "*-3"}, {"text": "using"}, {"text": "them"}, {"text": ","}, {"text": "teachers"}, {"text": "--"}, {"text": "with"}, {"text": "administrative"}, {"text": "blessing"}, {"text": "--"}, {"text": "telegraph"}, {"text": "to"}, {"text": "students"}, {"text": "beforehand"}, {"text": "the"}, {"text": "precise"}, {"text": "areas"}, {"text": "on"}, {"text": "which"}, {"text": "a"}, {"text": "test"}, {"text": "will"}, {"text": "concentrate"}, {"text": "*T*-1"}, {"text": ","}, {"text": "and"}, {"text": "sometimes"}, {"text": "give"}, {"text": "away"}, {"text": "a"}, {"text": "few"}, {"text": "exact"}, {"text": "questions"}, {"text": "and"}, {"text": "answers"}, {"text": "."}, {"text": "Use"}, {"text": "of"}, {"text": "Scoring"}, {"text": "High"}, {"text": "is"}, {"text": "widespread"}, {"text": "in"}, {"text": "South"}, {"text": "Carolina"}, {"text": "and"}, {"text": "common"}, {"text": "in"}, {"text": "Greenville"}, {"text": "County"}, {"text": ","}, {"text": "Mrs."}, {"text": "Yeargin"}, {"text": "'s"}, {"text": "school"}, {"text": "district"}, {"text": "."}, {"text": "Experts"}, {"text": "say"}, {"text": "0"}, {"text": "there"}, {"text": "is"}, {"text": "n't"}, {"text": "another"}, {"text": "state"}, {"text": "in"}, {"text": "the"}, {"text": "country"}, {"text": "where"}, {"text": "tests"}, {"text": "mean"}, {"text": "as"}, {"text": "much"}, {"text": "as"}, {"text": "they"}, {"text": "do"}, {"text": "*?*"}, {"text": "in"}, {"text": "South"}, {"text": "Carolina"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Under"}, {"text": "the"}, {"text": "state"}, {"text": "'s"}, {"text": "Education"}, {"text": "Improvement"}, {"text": "Act"}, {"text": ","}, {"text": "low"}, {"text": "test"}, {"text": "scores"}, {"text": "can"}, {"text": "block"}, {"text": "students"}, {"text": "'"}, {"text": "promotions"}, {"text": "or"}, {"text": "force"}, {"text": "entire"}, {"text": "districts"}, {"text": "into"}, {"text": "wrenching"}, {"text": ","}, {"text": "state-supervised"}, {"text": "``"}, {"text": "interventions"}, {"text": "''"}, {"text": "that"}, {"text": "*T*-86"}, {"text": "can"}, {"text": "mean"}, {"text": "firings"}, {"text": "."}, {"text": "High"}, {"text": "test"}, {"text": "scores"}, {"text": ","}, {"text": "on"}, {"text": "the"}, {"text": "other"}, {"text": "hand"}, {"text": ","}, {"text": "bring"}, {"text": "recognition"}, {"text": "and"}, {"text": "extra"}, {"text": "money"}, {"text": "--"}, {"text": "a"}, {"text": "new"}, {"text": "computer"}, {"text": "lab"}, {"text": "for"}, {"text": "a"}, {"text": "school"}, {"text": ","}, {"text": "grants"}, {"text": "for"}, {"text": "special"}, {"text": "projects"}, {"text": ","}, {"text": "a"}, {"text": "bonus"}, {"text": "for"}, {"text": "the"}, {"text": "superintendent"}, {"text": "."}, {"text": "And"}, {"text": "South"}, {"text": "Carolina"}, {"text": "says"}, {"text": "0"}, {"text": "it"}, {"text": "is"}, {"text": "getting"}, {"text": "results"}, {"text": "."}, {"text": "Since"}, {"text": "the"}, {"text": "reforms"}, {"text": "went"}, {"text": "in"}, {"text": "place"}, {"text": ","}, {"text": "for"}, {"text": "example"}, {"text": ","}, {"text": "no"}, {"text": "state"}, {"text": "has"}, {"text": "posted"}, {"text": "a"}, {"text": "higher"}, {"text": "rate"}, {"text": "of"}, {"text": "improvement"}, {"text": "on"}, {"text": "the"}, {"text": "Scholastic"}, {"text": "Aptitude"}, {"text": "Test"}, {"text": "than"}, {"text": "South"}, {"text": "Carolina"}, {"text": "*?*"}, {"text": ","}, {"text": "although"}, {"text": "the"}, {"text": "state"}, {"text": "still"}, {"text": "posts"}, {"text": "the"}, {"text": "lowest"}, {"text": "average"}, {"text": "score"}, {"text": "of"}, {"text": "the"}, {"text": "about"}, {"text": "21"}, {"text": "states"}, {"text": "who"}, {"text": "*T*-87"}, {"text": "use"}, {"text": "the"}, {"text": "SAT"}, {"text": "as"}, {"text": "the"}, {"text": "primary"}, {"text": "college"}, {"text": "entrance"}, {"text": "examination"}, {"text": "."}, {"text": "Critics"}, {"text": "say"}, {"text": "0"}, {"text": "South"}, {"text": "Carolina"}, {"text": "is"}, {"text": "paying"}, {"text": "a"}, {"text": "price"}, {"text": "by"}, {"text": "*"}, {"text": "stressing"}, {"text": "improved"}, {"text": "test"}, {"text": "scores"}, {"text": "so"}, {"text": "much"}, {"text": "."}, {"text": "Friends"}, {"text": "of"}, {"text": "Education"}, {"text": "rates"}, {"text": "South"}, {"text": "Carolina"}, {"text": "one"}, {"text": "of"}, {"text": "the"}, {"text": "worst"}, {"text": "seven"}, {"text": "states"}, {"text": "in"}, {"text": "its"}, {"text": "study"}, {"text": "on"}, {"text": "academic"}, {"text": "cheating"}, {"text": "."}, {"text": "Says"}, {"text": "0"}, {"text": "*ICH*-3"}, {"text": "the"}, {"text": "organization"}, {"text": "'s"}, {"text": "founder"}, {"text": ","}, {"text": "John"}, {"text": "Cannell"}, {"text": ","}, {"text": "*"}, {"text": "prosecuting"}, {"text": "Mrs."}, {"text": "Yeargin"}, {"text": "is"}, {"text": "``"}, {"text": "a"}, {"text": "way"}, {"text": "for"}, {"text": "0"}, {"text": "administrators"}, {"text": "to"}, {"text": "protect"}, {"text": "themselves"}, {"text": "*T*-4"}, {"text": "and"}, {"text": "look"}, {"text": "like"}, {"text": "they"}, {"text": "take"}, {"text": "cheating"}, {"text": "seriously"}, {"text": "*T*-4"}, {"text": ","}, {"text": "when"}, {"text": "in"}, {"text": "fact"}, {"text": "they"}, {"text": "do"}, {"text": "n't"}, {"text": "take"}, {"text": "it"}, {"text": "seriously"}, {"text": "at"}, {"text": "all"}, {"text": "*T*-1"}, {"text": "."}, {"text": "''"}, {"text": "Paul"}, {"text": "Sandifer"}, {"text": ","}, {"text": "director"}, {"text": "of"}, {"text": "testing"}, {"text": "for"}, {"text": "the"}, {"text": "South"}, {"text": "Carolina"}, {"text": "department"}, {"text": "of"}, {"text": "education"}, {"text": ","}, {"text": "says"}, {"text": "0"}, {"text": "Mr."}, {"text": "Cannell"}, {"text": "'s"}, {"text": "allegations"}, {"text": "of"}, {"text": "cheating"}, {"text": "``"}, {"text": "are"}, {"text": "purely"}, {"text": "without"}, {"text": "foundation"}, {"text": ","}, {"text": "''"}, {"text": "and"}, {"text": "based"}, {"text": "on"}, {"text": "unfair"}, {"text": "inferences"}, {"text": "."}, {"text": "Partly"}, {"text": "because"}, {"text": "of"}, {"text": "worries"}, {"text": "about"}, {"text": "potential"}, {"text": "abuse"}, {"text": ","}, {"text": "however"}, {"text": ","}, {"text": "he"}, {"text": "says"}, {"text": "0"}, {"text": "the"}, {"text": "state"}, {"text": "will"}, {"text": "begin"}, {"text": "*-1"}, {"text": "keeping"}, {"text": "closer"}, {"text": "track"}, {"text": "of"}, {"text": "achievement-test"}, {"text": "preparation"}, {"text": "booklets"}, {"text": "next"}, {"text": "spring"}, {"text": "."}, {"text": "South"}, {"text": "Carolina"}, {"text": "'s"}, {"text": "reforms"}, {"text": "were"}, {"text": "designed"}, {"text": "*-1"}, {"text": "for"}, {"text": "schools"}, {"text": "like"}, {"text": "Greenville"}, {"text": "High"}, {"text": "School"}, {"text": "."}, {"text": "*-1"}, {"text": "Standing"}, {"text": "on"}, {"text": "a"}, {"text": "shaded"}, {"text": "hill"}, {"text": "in"}, {"text": "a"}, {"text": "run-down"}, {"text": "area"}, {"text": "of"}, {"text": "this"}, {"text": "old"}, {"text": "textile"}, {"text": "city"}, {"text": ","}, {"text": "the"}, {"text": "school"}, {"text": "has"}, {"text": "educated"}, {"text": "many"}, {"text": "of"}, {"text": "South"}, {"text": "Carolina"}, {"text": "'s"}, {"text": "best"}, {"text": "and"}, {"text": "brightest"}, {"text": ","}, {"text": "including"}, {"text": "the"}, {"text": "state"}, {"text": "'s"}, {"text": "last"}, {"text": "two"}, {"text": "governors"}, {"text": ","}, {"text": "Nobel"}, {"text": "Prize"}, {"text": "winning"}, {"text": "physicist"}, {"text": "Charles"}, {"text": "Townes"}, {"text": "and"}, {"text": "actress"}, {"text": "Joanne"}, {"text": "Woodward"}, {"text": "."}, {"text": "But"}, {"text": "by"}, {"text": "the"}, {"text": "early"}, {"text": "1980s"}, {"text": ","}, {"text": "its"}, {"text": "glory"}, {"text": "*PPA*-1"}, {"text": "had"}, {"text": "faded"}, {"text": "like"}, {"text": "the"}, {"text": "yellow"}, {"text": "bricks"}, {"text": "of"}, {"text": "its"}, {"text": "broad"}, {"text": "facade"}, {"text": "."}, {"text": "``"}, {"text": "It"}, {"text": "was"}, {"text": "full"}, {"text": "of"}, {"text": "violence"}, {"text": "and"}, {"text": "gangs"}, {"text": "and"}, {"text": "kids"}, {"text": "cutting"}, {"text": "class"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "Linda"}, {"text": "Ward"}, {"text": ","}, {"text": "the"}, {"text": "school"}, {"text": "'s"}, {"text": "principal"}, {"text": "."}, {"text": "``"}, {"text": "Crime"}, {"text": "was"}, {"text": "awful"}, {"text": ","}, {"text": "test"}, {"text": "scores"}, {"text": "were"}, {"text": "low"}, {"text": ","}, {"text": "and"}, {"text": "there"}, {"text": "was"}, {"text": "no"}, {"text": "enrollment"}, {"text": "in"}, {"text": "honors"}, {"text": "programs"}, {"text": "."}, {"text": "''"}, {"text": "Mrs."}, {"text": "Ward"}, {"text": "took"}, {"text": "over"}, {"text": "in"}, {"text": "1986"}, {"text": ","}, {"text": "*-1"}, {"text": "becoming"}, {"text": "the"}, {"text": "school"}, {"text": "'s"}, {"text": "seventh"}, {"text": "principal"}, {"text": "in"}, {"text": "15"}, {"text": "years"}, {"text": "."}, {"text": "Her"}, {"text": "immediate"}, {"text": "predecessor"}, {"text": "suffered"}, {"text": "a"}, {"text": "nervous"}, {"text": "breakdown"}, {"text": "."}, {"text": "Prior"}, {"text": "to"}, {"text": "his"}, {"text": "term"}, {"text": ","}, {"text": "a"}, {"text": "teacher"}, {"text": "bled"}, {"text": "to"}, {"text": "death"}, {"text": "in"}, {"text": "the"}, {"text": "halls"}, {"text": ","}, {"text": "*-1"}, {"text": "stabbed"}, {"text": "*-2"}, {"text": "by"}, {"text": "a"}, {"text": "student"}, {"text": "."}, {"text": "Academically"}, {"text": ","}, {"text": "Mrs."}, {"text": "Ward"}, {"text": "says"}, {"text": "0"}, {"text": "*T*-1"}, {"text": ","}, {"text": "the"}, {"text": "school"}, {"text": "was"}, {"text": "having"}, {"text": "trouble"}, {"text": "*-2"}, {"text": "serving"}, {"text": "in"}, {"text": "harmony"}, {"text": "its"}, {"text": "two"}, {"text": "disparate"}, {"text": ","}, {"text": "and"}, {"text": "evenly"}, {"text": "split"}, {"text": ","}, {"text": "student"}, {"text": "groups"}, {"text": ":"}, {"text": "a"}, {"text": "privileged"}, {"text": "white"}, {"text": "elite"}, {"text": "from"}, {"text": "old"}, {"text": "monied"}, {"text": "neighborhoods"}, {"text": "and"}, {"text": "blacks"}, {"text": ","}, {"text": "many"}, {"text": "of"}, {"text": "them"}, {"text": "poor"}, {"text": ","}, {"text": "from"}, {"text": "run-down"}, {"text": ","}, {"text": "inner"}, {"text": "city"}, {"text": "neighborhoods"}, {"text": "."}, {"text": "Mrs."}, {"text": "Ward"}, {"text": "resolved"}, {"text": "*-1"}, {"text": "to"}, {"text": "clean"}, {"text": "out"}, {"text": "``"}, {"text": "deadwood"}, {"text": "''"}, {"text": "in"}, {"text": "the"}, {"text": "school"}, {"text": "'s"}, {"text": "faculty"}, {"text": "and"}, {"text": "restore"}, {"text": "safety"}, {"text": ","}, {"text": "and"}, {"text": "she"}, {"text": "also"}, {"text": "had"}, {"text": "some"}, {"text": "new"}, {"text": "factors"}, {"text": "working"}, {"text": "in"}, {"text": "her"}, {"text": "behalf"}, {"text": "."}, {"text": "One"}, {"text": "was"}, {"text": "statewide"}, {"text": "school"}, {"text": "reform"}, {"text": ","}, {"text": "which"}, {"text": "*T*-88"}, {"text": "raised"}, {"text": "overall"}, {"text": "educational"}, {"text": "funding"}, {"text": "and"}, {"text": "ushered"}, {"text": "in"}, {"text": "a"}, {"text": "new"}, {"text": "public"}, {"text": "spirit"}, {"text": "for"}, {"text": "school"}, {"text": "betterment"}, {"text": "."}, {"text": "Another"}, {"text": "was"}, {"text": "Nancy"}, {"text": "Yeargin"}, {"text": ","}, {"text": "who"}, {"text": "*T*-89"}, {"text": "came"}, {"text": "to"}, {"text": "Greenville"}, {"text": "in"}, {"text": "1985"}, {"text": ","}, {"text": "*-1"}, {"text": "full"}, {"text": "of"}, {"text": "the"}, {"text": "energy"}, {"text": "and"}, {"text": "ambitions"}, {"text": "that"}, {"text": "reformers"}, {"text": "wanted"}, {"text": "*-2"}, {"text": "to"}, {"text": "reward"}, {"text": "*T*-3"}, {"text": "."}, {"text": "``"}, {"text": "*"}, {"text": "Being"}, {"text": "a"}, {"text": "teacher"}, {"text": "just"}, {"text": "became"}, {"text": "my"}, {"text": "life"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "the"}, {"text": "37-year-old"}, {"text": "Mrs."}, {"text": "Yeargin"}, {"text": ","}, {"text": "a"}, {"text": "teacher"}, {"text": "for"}, {"text": "12"}, {"text": "years"}, {"text": "before"}, {"text": "her"}, {"text": "dismissal"}, {"text": "."}, {"text": "``"}, {"text": "I"}, {"text": "loved"}, {"text": "the"}, {"text": "school"}, {"text": ","}, {"text": "its"}, {"text": "history"}, {"text": "."}, {"text": "I"}, {"text": "even"}, {"text": "dreamt"}, {"text": "about"}, {"text": "school"}, {"text": "and"}, {"text": "new"}, {"text": "things"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "do"}, {"text": "*T*-1"}, {"text": "with"}, {"text": "my"}, {"text": "students"}, {"text": "."}, {"text": "''"}, {"text": "While"}, {"text": "Mrs."}, {"text": "Ward"}, {"text": "fired"}, {"text": "and"}, {"text": "restructured"}, {"text": "staff"}, {"text": "and"}, {"text": "struggled"}, {"text": "*-1"}, {"text": "to"}, {"text": "improve"}, {"text": "curriculum"}, {"text": ","}, {"text": "Mrs."}, {"text": "Yeargin"}, {"text": "worked"}, {"text": "14-hour"}, {"text": "days"}, {"text": "and"}, {"text": "fast"}, {"text": "became"}, {"text": "a"}, {"text": "student"}, {"text": "favorite"}, {"text": "."}, {"text": "In"}, {"text": "1986-87"}, {"text": "and"}, {"text": "1987-88"}, {"text": ","}, {"text": "she"}, {"text": "applied"}, {"text": "for"}, {"text": "*RNR*-1"}, {"text": "and"}, {"text": "won"}, {"text": "*RNR*-1"}, {"text": "bonus"}, {"text": "pay"}, {"text": "under"}, {"text": "the"}, {"text": "reform"}, {"text": "law"}, {"text": "."}, {"text": "*-1"}, {"text": "Encouraged"}, {"text": "*-2"}, {"text": "by"}, {"text": "Mrs."}, {"text": "Ward"}, {"text": ","}, {"text": "Mrs."}, {"text": "Yeargin"}, {"text": "taught"}, {"text": "honor"}, {"text": "students"}, {"text": "in"}, {"text": "the"}, {"text": "state"}, {"text": "``"}, {"text": "teacher"}, {"text": "cadet"}, {"text": "''"}, {"text": "program"}, {"text": ","}, {"text": "a"}, {"text": "reform"}, {"text": "creation"}, {"text": "designed"}, {"text": "*"}, {"text": "*-3"}, {"text": "to"}, {"text": "encourage"}, {"text": "good"}, {"text": "students"}, {"text": "to"}, {"text": "consider"}, {"text": "teaching"}, {"text": "as"}, {"text": "a"}, {"text": "career"}, {"text": "."}, {"text": "She"}, {"text": "won"}, {"text": "grant"}, {"text": "money"}, {"text": "for"}, {"text": "the"}, {"text": "school"}, {"text": ","}, {"text": "advised"}, {"text": "cheerleaders"}, {"text": ","}, {"text": "ran"}, {"text": "the"}, {"text": "pep"}, {"text": "club"}, {"text": ","}, {"text": "proposed"}, {"text": "and"}, {"text": "taught"}, {"text": "a"}, {"text": "new"}, {"text": "``"}, {"text": "Cultural"}, {"text": "Literacy"}, {"text": "''"}, {"text": "class"}, {"text": "in"}, {"text": "Western"}, {"text": "Civilization"}, {"text": "and"}, {"text": "was"}, {"text": "chosen"}, {"text": "*-1"}, {"text": "by"}, {"text": "the"}, {"text": "school"}, {"text": "PTA"}, {"text": "as"}, {"text": "``"}, {"text": "Teacher"}, {"text": "of"}, {"text": "the"}, {"text": "Year"}, {"text": "."}, {"text": "''"}, {"text": "``"}, {"text": "She"}, {"text": "was"}, {"text": "an"}, {"text": "inspirational"}, {"text": "lady"}, {"text": ";"}, {"text": "she"}, {"text": "had"}, {"text": "it"}, {"text": "all"}, {"text": "together"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "Laura"}, {"text": "Dobson"}, {"text": ","}, {"text": "a"}, {"text": "freshman"}, {"text": "at"}, {"text": "the"}, {"text": "University"}, {"text": "of"}, {"text": "South"}, {"text": "Carolina"}, {"text": "who"}, {"text": "*T*-90"}, {"text": "had"}, {"text": "Mrs."}, {"text": "Yeargin"}, {"text": "in"}, {"text": "the"}, {"text": "teacher-cadet"}, {"text": "class"}, {"text": "last"}, {"text": "year"}, {"text": "."}, {"text": "She"}, {"text": "says"}, {"text": "that"}, {"text": "because"}, {"text": "of"}, {"text": "Mrs."}, {"text": "Yeargin"}, {"text": "she"}, {"text": "gave"}, {"text": "up"}, {"text": "ambitions"}, {"text": "in"}, {"text": "architecture"}, {"text": "and"}, {"text": "is"}, {"text": "studying"}, {"text": "*-1"}, {"text": "to"}, {"text": "become"}, {"text": "a"}, {"text": "teacher"}, {"text": "."}, {"text": "Mary"}, {"text": "Beth"}, {"text": "Marchand"}, {"text": ","}, {"text": "a"}, {"text": "Greenville"}, {"text": "11th"}, {"text": "grader"}, {"text": ","}, {"text": "also"}, {"text": "says"}, {"text": "0"}, {"text": "Mrs."}, {"text": "Yeargin"}, {"text": "inspired"}, {"text": "her"}, {"text": "to"}, {"text": "go"}, {"text": "into"}, {"text": "education"}, {"text": "."}, {"text": "``"}, {"text": "She"}, {"text": "taught"}, {"text": "us"}, {"text": "more"}, {"text": "in"}, {"text": "Western"}, {"text": "Civilization"}, {"text": "than"}, {"text": "I"}, {"text": "'ve"}, {"text": "ever"}, {"text": "learned"}, {"text": "in"}, {"text": "other"}, {"text": "classes"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-2"}, {"text": "Kelli"}, {"text": "Green"}, {"text": ","}, {"text": "a"}, {"text": "Greenville"}, {"text": "senior"}, {"text": "."}, {"text": "In"}, {"text": "the"}, {"text": "classroom"}, {"text": ","}, {"text": "students"}, {"text": "say"}, {"text": "0"}, {"text": "*T*-3"}, {"text": ","}, {"text": "Mrs."}, {"text": "Yeargin"}, {"text": "distinguished"}, {"text": "herself"}, {"text": "by"}, {"text": "*"}, {"text": "varying"}, {"text": "teaching"}, {"text": "approaches"}, {"text": "--"}, {"text": "*-1"}, {"text": "forcing"}, {"text": "kids"}, {"text": "to"}, {"text": "pair"}, {"text": "up"}, {"text": "*-2"}, {"text": "to"}, {"text": "complete"}, {"text": "classroom"}, {"text": "work"}, {"text": "or"}, {"text": "using"}, {"text": "college-bowl"}, {"text": "type"}, {"text": "competitions"}, {"text": "."}, {"text": "On"}, {"text": "weekends"}, {"text": ","}, {"text": "she"}, {"text": "came"}, {"text": "to"}, {"text": "work"}, {"text": "*-1"}, {"text": "to"}, {"text": "prepare"}, {"text": "study"}, {"text": "plans"}, {"text": "or"}, {"text": "sometimes"}, {"text": ","}, {"text": "even"}, {"text": "*-1"}, {"text": "to"}, {"text": "polish"}, {"text": "the"}, {"text": "furniture"}, {"text": "in"}, {"text": "her"}, {"text": "classroom"}, {"text": "."}, {"text": "``"}, {"text": "She"}, {"text": "just"}, {"text": "never"}, {"text": "gave"}, {"text": "it"}, {"text": "up"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "Mary"}, {"text": "Marchand"}, {"text": ","}, {"text": "Mary"}, {"text": "Beth"}, {"text": "'s"}, {"text": "mother"}, {"text": "."}, {"text": "``"}, {"text": "You"}, {"text": "'d"}, {"text": "see"}, {"text": "her"}, {"text": "correcting"}, {"text": "homework"}, {"text": "in"}, {"text": "the"}, {"text": "stands"}, {"text": "at"}, {"text": "a"}, {"text": "football"}, {"text": "game"}, {"text": "."}, {"text": "''"}, {"text": "Some"}, {"text": "fellow"}, {"text": "teachers"}, {"text": ","}, {"text": "however"}, {"text": ","}, {"text": "viewed"}, {"text": "Mrs."}, {"text": "Yeargin"}, {"text": "as"}, {"text": "cocky"}, {"text": "and"}, {"text": "too"}, {"text": "yielding"}, {"text": "to"}, {"text": "students"}, {"text": "."}, {"text": "Mrs."}, {"text": "Ward"}, {"text": "says"}, {"text": "0"}, {"text": "she"}, {"text": "often"}, {"text": "defended"}, {"text": "her"}, {"text": "to"}, {"text": "colleagues"}, {"text": "who"}, {"text": "*T*-91"}, {"text": "called"}, {"text": "her"}, {"text": "a"}, {"text": "grandstander"}, {"text": "."}, {"text": "Pressures"}, {"text": "began"}, {"text": "*-1"}, {"text": "to"}, {"text": "build"}, {"text": "."}, {"text": "Friends"}, {"text": "told"}, {"text": "her"}, {"text": "0"}, {"text": "she"}, {"text": "was"}, {"text": "pushing"}, {"text": "too"}, {"text": "hard"}, {"text": "."}, {"text": "Because"}, {"text": "of"}, {"text": "deteriorating"}, {"text": "hearing"}, {"text": ","}, {"text": "she"}, {"text": "told"}, {"text": "colleagues"}, {"text": "0"}, {"text": "she"}, {"text": "feared"}, {"text": "0"}, {"text": "she"}, {"text": "might"}, {"text": "not"}, {"text": "be"}, {"text": "able"}, {"text": "*-1"}, {"text": "to"}, {"text": "teach"}, {"text": "much"}, {"text": "longer"}, {"text": "."}, {"text": "Mrs."}, {"text": "Yeargin"}, {"text": "'s"}, {"text": "extra"}, {"text": "work"}, {"text": "was"}, {"text": "also"}, {"text": "helping"}, {"text": "her"}, {"text": "earn"}, {"text": "points"}, {"text": "in"}, {"text": "the"}, {"text": "state"}, {"text": "'s"}, {"text": "incentive-bonus"}, {"text": "program"}, {"text": "."}, {"text": "But"}, {"text": "the"}, {"text": "most"}, {"text": "important"}, {"text": "source"}, {"text": "of"}, {"text": "points"}, {"text": "was"}, {"text": "student"}, {"text": "improvement"}, {"text": "on"}, {"text": "tests"}, {"text": "."}, {"text": "Huge"}, {"text": "gains"}, {"text": "by"}, {"text": "her"}, {"text": "students"}, {"text": "in"}, {"text": "1987"}, {"text": "and"}, {"text": "1988"}, {"text": "meant"}, {"text": "a"}, {"text": "total"}, {"text": "of"}, {"text": "$"}, {"text": "5,000"}, {"text": "*U*"}, {"text": "in"}, {"text": "bonuses"}, {"text": "over"}, {"text": "two"}, {"text": "years"}, {"text": "--"}, {"text": "a"}, {"text": "meaningful"}, {"text": "addition"}, {"text": "to"}, {"text": "her"}, {"text": "annual"}, {"text": "salary"}, {"text": "of"}, {"text": "$"}, {"text": "23,000"}, {"text": "*U*"}, {"text": "."}, {"text": "*"}, {"text": "Winning"}, {"text": "a"}, {"text": "bonus"}, {"text": "for"}, {"text": "a"}, {"text": "third"}, {"text": "year"}, {"text": "was"}, {"text": "n't"}, {"text": "that"}, {"text": "important"}, {"text": "to"}, {"text": "her"}, {"text": ","}, {"text": "Mrs."}, {"text": "Yeargin"}, {"text": "insists"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "But"}, {"text": "others"}, {"text": "at"}, {"text": "Greenville"}, {"text": "High"}, {"text": "say"}, {"text": "0"}, {"text": "she"}, {"text": "was"}, {"text": "eager"}, {"text": "*-1"}, {"text": "to"}, {"text": "win"}, {"text": "--"}, {"text": "if"}, {"text": "not"}, {"text": "for"}, {"text": "money"}, {"text": ","}, {"text": "then"}, {"text": "for"}, {"text": "pride"}, {"text": "and"}, {"text": "recognition"}, {"text": "."}, {"text": "Mary"}, {"text": "Elizabeth"}, {"text": "Ariail"}, {"text": ","}, {"text": "another"}, {"text": "social-studies"}, {"text": "teacher"}, {"text": ","}, {"text": "says"}, {"text": "0"}, {"text": "she"}, {"text": "believed"}, {"text": "0"}, {"text": "Mrs."}, {"text": "Yeargin"}, {"text": "wanted"}, {"text": "*-1"}, {"text": "to"}, {"text": "keep"}, {"text": "her"}, {"text": "standing"}, {"text": "high"}, {"text": "so"}, {"text": "she"}, {"text": "could"}, {"text": "get"}, {"text": "a"}, {"text": "new"}, {"text": "job"}, {"text": "that"}, {"text": "*T*-92"}, {"text": "would"}, {"text": "n't"}, {"text": "demand"}, {"text": "good"}, {"text": "hearing"}, {"text": "."}, {"text": "Indeed"}, {"text": ","}, {"text": "Mrs."}, {"text": "Yeargin"}, {"text": "was"}, {"text": "interested"}, {"text": "in"}, {"text": "a"}, {"text": "possible"}, {"text": "job"}, {"text": "with"}, {"text": "the"}, {"text": "state"}, {"text": "teacher"}, {"text": "cadet"}, {"text": "program"}, {"text": "."}, {"text": "Last"}, {"text": "March"}, {"text": ","}, {"text": "after"}, {"text": "*-1"}, {"text": "attending"}, {"text": "a"}, {"text": "teaching"}, {"text": "seminar"}, {"text": "in"}, {"text": "Washington"}, {"text": ","}, {"text": "Mrs."}, {"text": "Yeargin"}, {"text": "says"}, {"text": "0"}, {"text": "she"}, {"text": "returned"}, {"text": "to"}, {"text": "Greenville"}, {"text": "two"}, {"text": "days"}, {"text": "before"}, {"text": "annual"}, {"text": "testing"}, {"text": "*-2"}, {"text": "feeling"}, {"text": "that"}, {"text": "she"}, {"text": "had"}, {"text": "n't"}, {"text": "prepared"}, {"text": "her"}, {"text": "low-ability"}, {"text": "geography"}, {"text": "students"}, {"text": "adequately"}, {"text": "."}, {"text": "When"}, {"text": "test"}, {"text": "booklets"}, {"text": "were"}, {"text": "passed"}, {"text": "*-1"}, {"text": "out"}, {"text": "48"}, {"text": "hours"}, {"text": "ahead"}, {"text": "of"}, {"text": "time"}, {"text": "*T*-2"}, {"text": ","}, {"text": "she"}, {"text": "says"}, {"text": "0"}, {"text": "she"}, {"text": "copied"}, {"text": "questions"}, {"text": "in"}, {"text": "the"}, {"text": "social"}, {"text": "studies"}, {"text": "section"}, {"text": "and"}, {"text": "gave"}, {"text": "the"}, {"text": "answers"}, {"text": "to"}, {"text": "students"}, {"text": "."}, {"text": "Mrs."}, {"text": "Yeargin"}, {"text": "admits"}, {"text": "0"}, {"text": "she"}, {"text": "made"}, {"text": "a"}, {"text": "big"}, {"text": "mistake"}, {"text": "but"}, {"text": "insists"}, {"text": "0"}, {"text": "her"}, {"text": "motives"}, {"text": "were"}, {"text": "correct"}, {"text": "."}, {"text": "``"}, {"text": "I"}, {"text": "was"}, {"text": "trying"}, {"text": "*-1"}, {"text": "to"}, {"text": "help"}, {"text": "kids"}, {"text": "in"}, {"text": "an"}, {"text": "unfair"}, {"text": "testing"}, {"text": "situation"}, {"text": ","}, {"text": "''"}, {"text": "she"}, {"text": "says"}, {"text": "*T*-2"}, {"text": "."}, {"text": "``"}, {"text": "Only"}, {"text": "five"}, {"text": "of"}, {"text": "the"}, {"text": "40"}, {"text": "questions"}, {"text": "were"}, {"text": "geography"}, {"text": "questions"}, {"text": "."}, {"text": "The"}, {"text": "rest"}, {"text": "were"}, {"text": "history"}, {"text": ","}, {"text": "sociology"}, {"text": ","}, {"text": "finance"}, {"text": "--"}, {"text": "subjects"}, {"text": "0"}, {"text": "they"}, {"text": "never"}, {"text": "had"}, {"text": "*T*-1"}, {"text": "."}, {"text": "''"}, {"text": "Mrs."}, {"text": "Yeargin"}, {"text": "says"}, {"text": "that"}, {"text": "she"}, {"text": "also"}, {"text": "wanted"}, {"text": "*-1"}, {"text": "to"}, {"text": "help"}, {"text": "*-2"}, {"text": "lift"}, {"text": "Greenville"}, {"text": "High"}, {"text": "School"}, {"text": "'s"}, {"text": "overall"}, {"text": "test"}, {"text": "scores"}, {"text": ","}, {"text": "usually"}, {"text": "near"}, {"text": "the"}, {"text": "bottom"}, {"text": "of"}, {"text": "14"}, {"text": "district"}, {"text": "high"}, {"text": "schools"}, {"text": "in"}, {"text": "rankings"}, {"text": "carried"}, {"text": "*"}, {"text": "annually"}, {"text": "by"}, {"text": "local"}, {"text": "newspapers"}, {"text": "."}, {"text": "Mostly"}, {"text": ","}, {"text": "she"}, {"text": "says"}, {"text": "0"}, {"text": "*T*-1"}, {"text": ","}, {"text": "she"}, {"text": "wanted"}, {"text": "*-2"}, {"text": "to"}, {"text": "prevent"}, {"text": "the"}, {"text": "damage"}, {"text": "to"}, {"text": "self-esteem"}, {"text": "that"}, {"text": "her"}, {"text": "low-ability"}, {"text": "students"}, {"text": "would"}, {"text": "suffer"}, {"text": "*T*-3"}, {"text": "from"}, {"text": "*"}, {"text": "doing"}, {"text": "badly"}, {"text": "on"}, {"text": "the"}, {"text": "test"}, {"text": "."}, {"text": "``"}, {"text": "These"}, {"text": "kids"}, {"text": "broke"}, {"text": "my"}, {"text": "heart"}, {"text": ","}, {"text": "''"}, {"text": "she"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "."}, {"text": "``"}, {"text": "A"}, {"text": "whole"}, {"text": "day"}, {"text": "goes"}, {"text": "by"}, {"text": "and"}, {"text": "no"}, {"text": "one"}, {"text": "even"}, {"text": "knows"}, {"text": "0"}, {"text": "they"}, {"text": "'re"}, {"text": "alive"}, {"text": "."}, {"text": "They"}, {"text": "desperately"}, {"text": "needed"}, {"text": "somebody"}, {"text": "who"}, {"text": "*T*-93"}, {"text": "showed"}, {"text": "0"}, {"text": "they"}, {"text": "cared"}, {"text": "for"}, {"text": "them"}, {"text": ","}, {"text": "who"}, {"text": "*T*-94"}, {"text": "loved"}, {"text": "them"}, {"text": "."}, {"text": "The"}, {"text": "last"}, {"text": "thing"}, {"text": "0"}, {"text": "they"}, {"text": "needed"}, {"text": "*T*-1"}, {"text": "was"}, {"text": "another"}, {"text": "drag-down"}, {"text": "blow"}, {"text": "."}, {"text": "''"}, {"text": "School"}, {"text": "officials"}, {"text": "and"}, {"text": "prosecutors"}, {"text": "say"}, {"text": "0"}, {"text": "Mrs."}, {"text": "Yeargin"}, {"text": "is"}, {"text": "lying"}, {"text": "."}, {"text": "They"}, {"text": "found"}, {"text": "students"}, {"text": "in"}, {"text": "an"}, {"text": "advanced"}, {"text": "class"}, {"text": "a"}, {"text": "year"}, {"text": "earlier"}, {"text": "who"}, {"text": "*T*-95"}, {"text": "said"}, {"text": "0"}, {"text": "she"}, {"text": "gave"}, {"text": "them"}, {"text": "similar"}, {"text": "help"}, {"text": ","}, {"text": "although"}, {"text": "because"}, {"text": "the"}, {"text": "case"}, {"text": "was"}, {"text": "n't"}, {"text": "tried"}, {"text": "in"}, {"text": "court"}, {"text": ","}, {"text": "this"}, {"text": "evidence"}, {"text": "was"}, {"text": "never"}, {"text": "presented"}, {"text": "*-1"}, {"text": "publicly"}, {"text": "."}, {"text": "``"}, {"text": "That"}, {"text": "pretty"}, {"text": "much"}, {"text": "defeats"}, {"text": "any"}, {"text": "inkling"}, {"text": "that"}, {"text": "she"}, {"text": "was"}, {"text": "out"}, {"text": "*-1"}, {"text": "to"}, {"text": "help"}, {"text": "the"}, {"text": "poor"}, {"text": "underprivileged"}, {"text": "child"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "Joe"}, {"text": "Watson"}, {"text": ","}, {"text": "the"}, {"text": "prosecutor"}, {"text": "in"}, {"text": "the"}, {"text": "case"}, {"text": ","}, {"text": "who"}, {"text": "*T*-96"}, {"text": "is"}, {"text": "also"}, {"text": "president"}, {"text": "of"}, {"text": "Greenville"}, {"text": "High"}, {"text": "School"}, {"text": "'s"}, {"text": "alumni"}, {"text": "association"}, {"text": "."}, {"text": "Mrs."}, {"text": "Yeargin"}, {"text": "concedes"}, {"text": "that"}, {"text": "she"}, {"text": "went"}, {"text": "over"}, {"text": "the"}, {"text": "questions"}, {"text": "in"}, {"text": "the"}, {"text": "earlier"}, {"text": "class"}, {"text": ","}, {"text": "*-1"}, {"text": "adding"}, {"text": ":"}, {"text": "``"}, {"text": "I"}, {"text": "wanted"}, {"text": "*-2"}, {"text": "to"}, {"text": "help"}, {"text": "all"}, {"text": "''"}, {"text": "students"}, {"text": "."}, {"text": "Mr."}, {"text": "Watson"}, {"text": "says"}, {"text": "0"}, {"text": "Mrs."}, {"text": "Yeargin"}, {"text": "never"}, {"text": "complained"}, {"text": "to"}, {"text": "school"}, {"text": "officials"}, {"text": "that"}, {"text": "the"}, {"text": "standardized"}, {"text": "test"}, {"text": "was"}, {"text": "unfair"}, {"text": "."}, {"text": "``"}, {"text": "Do"}, {"text": "I"}, {"text": "have"}, {"text": "much"}, {"text": "sympathy"}, {"text": "for"}, {"text": "her"}, {"text": "?"}, {"text": "''"}, {"text": "Mr."}, {"text": "Watson"}, {"text": "asks"}, {"text": "*T*-1"}, {"text": "."}, {"text": "``"}, {"text": "Not"}, {"text": "really"}, {"text": "."}, {"text": "I"}, {"text": "believe"}, {"text": "in"}, {"text": "the"}, {"text": "system"}, {"text": "."}, {"text": "I"}, {"text": "believe"}, {"text": "0"}, {"text": "you"}, {"text": "have"}, {"text": "*-1"}, {"text": "to"}, {"text": "use"}, {"text": "the"}, {"text": "system"}, {"text": "*-2"}, {"text": "to"}, {"text": "change"}, {"text": "it"}, {"text": "."}, {"text": "What"}, {"text": "she"}, {"text": "did"}, {"text": "*T*-97"}, {"text": "was"}, {"text": "like"}, {"text": "*"}, {"text": "taking"}, {"text": "the"}, {"text": "law"}, {"text": "into"}, {"text": "your"}, {"text": "own"}, {"text": "hands"}, {"text": "."}, {"text": "''"}, {"text": "Mrs."}, {"text": "Ward"}, {"text": "says"}, {"text": "that"}, {"text": "when"}, {"text": "the"}, {"text": "cheating"}, {"text": "was"}, {"text": "discovered"}, {"text": "*-4"}, {"text": "*T*-1"}, {"text": ","}, {"text": "she"}, {"text": "wanted"}, {"text": "*-2"}, {"text": "to"}, {"text": "avoid"}, {"text": "the"}, {"text": "morale-damaging"}, {"text": "public"}, {"text": "disclosure"}, {"text": "that"}, {"text": "a"}, {"text": "trial"}, {"text": "would"}, {"text": "bring"}, {"text": "*T*-3"}, {"text": "."}, {"text": "She"}, {"text": "says"}, {"text": "0"}, {"text": "she"}, {"text": "offered"}, {"text": "Mrs."}, {"text": "Yeargin"}, {"text": "a"}, {"text": "quiet"}, {"text": "resignation"}, {"text": "and"}, {"text": "thought"}, {"text": "0"}, {"text": "she"}, {"text": "could"}, {"text": "help"}, {"text": "*-1"}, {"text": "save"}, {"text": "her"}, {"text": "teaching"}, {"text": "certificate"}, {"text": "."}, {"text": "Mrs."}, {"text": "Yeargin"}, {"text": "declined"}, {"text": "."}, {"text": "``"}, {"text": "She"}, {"text": "said"}, {"text": "something"}, {"text": "like"}, {"text": "`"}, {"text": "You"}, {"text": "just"}, {"text": "want"}, {"text": "*-1"}, {"text": "to"}, {"text": "make"}, {"text": "it"}, {"text": "easy"}, {"text": "for"}, {"text": "the"}, {"text": "school"}, {"text": "."}, {"text": "'"}, {"text": "I"}, {"text": "was"}, {"text": "dumbfounded"}, {"text": ","}, {"text": "''"}, {"text": "Mrs."}, {"text": "Ward"}, {"text": "recalls"}, {"text": "*T*-1"}, {"text": "."}, {"text": "``"}, {"text": "It"}, {"text": "was"}, {"text": "like"}, {"text": "someone"}, {"text": "had"}, {"text": "turned"}, {"text": "a"}, {"text": "knife"}, {"text": "in"}, {"text": "me"}, {"text": "."}, {"text": "''"}, {"text": "To"}, {"text": "the"}, {"text": "astonishment"}, {"text": "and"}, {"text": "dismay"}, {"text": "of"}, {"text": "her"}, {"text": "superiors"}, {"text": "and"}, {"text": "legal"}, {"text": "authorities"}, {"text": "--"}, {"text": "and"}, {"text": "perhaps"}, {"text": "as"}, {"text": "a"}, {"text": "measure"}, {"text": "of"}, {"text": "the"}, {"text": "unpopularity"}, {"text": "of"}, {"text": "standardized"}, {"text": "tests"}, {"text": "--"}, {"text": "Mrs"}, {"text": "."}, {"text": "Yeargin"}, {"text": "won"}, {"text": "widespread"}, {"text": "local"}, {"text": "support"}, {"text": "."}, {"text": "The"}, {"text": "school-board"}, {"text": "hearing"}, {"text": "at"}, {"text": "which"}, {"text": "she"}, {"text": "was"}, {"text": "dismissed"}, {"text": "*-2"}, {"text": "*T*-1"}, {"text": "was"}, {"text": "crowded"}, {"text": "*-4"}, {"text": "with"}, {"text": "students"}, {"text": ","}, {"text": "teachers"}, {"text": "and"}, {"text": "parents"}, {"text": "who"}, {"text": "*T*-98"}, {"text": "came"}, {"text": "*-3"}, {"text": "to"}, {"text": "testify"}, {"text": "on"}, {"text": "her"}, {"text": "behalf"}, {"text": "."}, {"text": "Supportive"}, {"text": "callers"}, {"text": "decried"}, {"text": "unfair"}, {"text": "testing"}, {"text": ","}, {"text": "not"}, {"text": "Mrs."}, {"text": "Yeargin"}, {"text": ","}, {"text": "on"}, {"text": "a"}, {"text": "local"}, {"text": "radio"}, {"text": "talk"}, {"text": "show"}, {"text": "on"}, {"text": "which"}, {"text": "she"}, {"text": "appeared"}, {"text": "*T*-1"}, {"text": "."}, {"text": "The"}, {"text": "show"}, {"text": "did"}, {"text": "n't"}, {"text": "give"}, {"text": "the"}, {"text": "particulars"}, {"text": "of"}, {"text": "Mrs."}, {"text": "Yeargin"}, {"text": "'s"}, {"text": "offense"}, {"text": ","}, {"text": "*-1"}, {"text": "saying"}, {"text": "only"}, {"text": "that"}, {"text": "she"}, {"text": "helped"}, {"text": "students"}, {"text": "do"}, {"text": "better"}, {"text": "on"}, {"text": "the"}, {"text": "test"}, {"text": "."}, {"text": "``"}, {"text": "The"}, {"text": "message"}, {"text": "to"}, {"text": "the"}, {"text": "board"}, {"text": "of"}, {"text": "education"}, {"text": "out"}, {"text": "of"}, {"text": "all"}, {"text": "this"}, {"text": "is"}, {"text": "0"}, {"text": "we"}, {"text": "'ve"}, {"text": "got"}, {"text": "*-1"}, {"text": "to"}, {"text": "take"}, {"text": "a"}, {"text": "serious"}, {"text": "look"}, {"text": "at"}, {"text": "how"}, {"text": "we"}, {"text": "'re"}, {"text": "doing"}, {"text": "our"}, {"text": "curriculum"}, {"text": "and"}, {"text": "our"}, {"text": "testing"}, {"text": "policies"}, {"text": "*T*-2"}, {"text": "in"}, {"text": "this"}, {"text": "state"}, {"text": ","}, {"text": "''"}, {"text": "said"}, {"text": "*T*-3"}, {"text": "the"}, {"text": "talk-show"}, {"text": "host"}, {"text": "."}, {"text": "Editorials"}, {"text": "in"}, {"text": "the"}, {"text": "Greenville"}, {"text": "newspaper"}, {"text": "allowed"}, {"text": "that"}, {"text": "Mrs."}, {"text": "Yeargin"}, {"text": "was"}, {"text": "wrong"}, {"text": ","}, {"text": "but"}, {"text": "also"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "case"}, {"text": "showed"}, {"text": "how"}, {"text": "testing"}, {"text": "was"}, {"text": "being"}, {"text": "overused"}, {"text": "*-2"}, {"text": "*T*-1"}, {"text": "."}, {"text": "The"}, {"text": "radio"}, {"text": "show"}, {"text": "``"}, {"text": "enraged"}, {"text": "us"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "Mrs."}, {"text": "Ward"}, {"text": "."}, {"text": "Partly"}, {"text": "because"}, {"text": "of"}, {"text": "the"}, {"text": "show"}, {"text": ","}, {"text": "Mr."}, {"text": "Watson"}, {"text": "says"}, {"text": "0"}, {"text": "*T*-1"}, {"text": ","}, {"text": "the"}, {"text": "district"}, {"text": "decided"}, {"text": "not"}, {"text": "*-2"}, {"text": "to"}, {"text": "recommend"}, {"text": "Mrs."}, {"text": "Yeargin"}, {"text": "for"}, {"text": "a"}, {"text": "first-time"}, {"text": "offenders"}, {"text": "program"}, {"text": "that"}, {"text": "*T*-99"}, {"text": "could"}, {"text": "have"}, {"text": "expunged"}, {"text": "the"}, {"text": "charges"}, {"text": "and"}, {"text": "the"}, {"text": "conviction"}, {"text": "from"}, {"text": "her"}, {"text": "record"}, {"text": "."}, {"text": "And"}, {"text": "legal"}, {"text": "authorities"}, {"text": "cranked"}, {"text": "up"}, {"text": "an"}, {"text": "investigation"}, {"text": "worthy"}, {"text": "of"}, {"text": "a"}, {"text": "murder"}, {"text": "case"}, {"text": "."}, {"text": "Over"}, {"text": "50"}, {"text": "witnesses"}, {"text": ","}, {"text": "mostly"}, {"text": "students"}, {"text": ","}, {"text": "were"}, {"text": "interviewed"}, {"text": "*-1"}, {"text": "."}, {"text": "At"}, {"text": "Greenville"}, {"text": "High"}, {"text": "School"}, {"text": ","}, {"text": "meanwhile"}, {"text": ","}, {"text": "some"}, {"text": "students"}, {"text": "--"}, {"text": "especially"}, {"text": "on"}, {"text": "the"}, {"text": "cheerleading"}, {"text": "squad"}, {"text": "--"}, {"text": "were"}, {"text": "crushed"}, {"text": "*-1"}, {"text": "."}, {"text": "``"}, {"text": "It"}, {"text": "*EXP*-1"}, {"text": "'s"}, {"text": "hard"}, {"text": "*"}, {"text": "to"}, {"text": "explain"}, {"text": "to"}, {"text": "a"}, {"text": "17-year-old"}, {"text": "why"}, {"text": "someone"}, {"text": "0"}, {"text": "they"}, {"text": "like"}, {"text": "*T*-2"}, {"text": "had"}, {"text": "*-3"}, {"text": "to"}, {"text": "go"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-4"}, {"text": "Mrs."}, {"text": "Ward"}, {"text": "."}, {"text": "Soon"}, {"text": ","}, {"text": "T-shirts"}, {"text": "*ICH*-1"}, {"text": "appeared"}, {"text": "in"}, {"text": "the"}, {"text": "corridors"}, {"text": "that"}, {"text": "*T*-2"}, {"text": "carried"}, {"text": "the"}, {"text": "school"}, {"text": "'s"}, {"text": "familiar"}, {"text": "red-and-white"}, {"text": "GHS"}, {"text": "logo"}, {"text": "on"}, {"text": "the"}, {"text": "front"}, {"text": "."}, {"text": "On"}, {"text": "the"}, {"text": "back"}, {"text": ","}, {"text": "the"}, {"text": "shirts"}, {"text": "read"}, {"text": ","}, {"text": "``"}, {"text": "We"}, {"text": "have"}, {"text": "all"}, {"text": "the"}, {"text": "answers"}, {"text": "."}, {"text": "''"}, {"text": "Many"}, {"text": "colleagues"}, {"text": "are"}, {"text": "angry"}, {"text": "at"}, {"text": "Mrs."}, {"text": "Yeargin"}, {"text": "."}, {"text": "``"}, {"text": "She"}, {"text": "did"}, {"text": "a"}, {"text": "lot"}, {"text": "of"}, {"text": "harm"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "Cathryn"}, {"text": "Rice"}, {"text": ","}, {"text": "who"}, {"text": "*T*-100"}, {"text": "had"}, {"text": "discovered"}, {"text": "the"}, {"text": "crib"}, {"text": "notes"}, {"text": "."}, {"text": "``"}, {"text": "We"}, {"text": "work"}, {"text": "damn"}, {"text": "hard"}, {"text": "at"}, {"text": "what"}, {"text": "we"}, {"text": "do"}, {"text": "*T*-101"}, {"text": "for"}, {"text": "damn"}, {"text": "little"}, {"text": "pay"}, {"text": ","}, {"text": "and"}, {"text": "what"}, {"text": "she"}, {"text": "did"}, {"text": "*T*-1"}, {"text": "cast"}, {"text": "unfair"}, {"text": "aspersions"}, {"text": "on"}, {"text": "all"}, {"text": "of"}, {"text": "us"}, {"text": "."}, {"text": "''"}, {"text": "But"}, {"text": "several"}, {"text": "teachers"}, {"text": "also"}, {"text": "say"}, {"text": "0"}, {"text": "the"}, {"text": "incident"}, {"text": "casts"}, {"text": "doubt"}, {"text": "on"}, {"text": "the"}, {"text": "wisdom"}, {"text": "of"}, {"text": "*"}, {"text": "evaluating"}, {"text": "teachers"}, {"text": "or"}, {"text": "schools"}, {"text": "by"}, {"text": "*"}, {"text": "using"}, {"text": "standardized"}, {"text": "test"}, {"text": "scores"}, {"text": "."}, {"text": "Says"}, {"text": "*ICH*-1"}, {"text": "Gayle"}, {"text": "Key"}, {"text": ","}, {"text": "a"}, {"text": "mathematics"}, {"text": "teacher"}, {"text": ","}, {"text": "``"}, {"text": "The"}, {"text": "incentive"}, {"text": "pay"}, {"text": "thing"}, {"text": "has"}, {"text": "opened"}, {"text": "up"}, {"text": "a"}, {"text": "can"}, {"text": "of"}, {"text": "worms"}, {"text": "."}, {"text": "There"}, {"text": "may"}, {"text": "be"}, {"text": "others"}, {"text": "doing"}, {"text": "what"}, {"text": "she"}, {"text": "did"}, {"text": "*T*-1"}, {"text": "."}, {"text": "''"}, {"text": "Mrs."}, {"text": "Yeargin"}, {"text": "says"}, {"text": "0"}, {"text": "she"}, {"text": "pleaded"}, {"text": "guilty"}, {"text": "because"}, {"text": "she"}, {"text": "realized"}, {"text": "0"}, {"text": "it"}, {"text": "*EXP*-2"}, {"text": "would"}, {"text": "no"}, {"text": "longer"}, {"text": "be"}, {"text": "possible"}, {"text": "*-1"}, {"text": "to"}, {"text": "win"}, {"text": "reinstatement"}, {"text": ","}, {"text": "and"}, {"text": "because"}, {"text": "she"}, {"text": "was"}, {"text": "afraid"}, {"text": "of"}, {"text": "further"}, {"text": "charges"}, {"text": "."}, {"text": "Mrs."}, {"text": "Ward"}, {"text": ","}, {"text": "for"}, {"text": "one"}, {"text": ","}, {"text": "was"}, {"text": "relieved"}, {"text": "."}, {"text": "Despite"}, {"text": "the"}, {"text": "strong"}, {"text": "evidence"}, {"text": "against"}, {"text": "Mrs."}, {"text": "Yeargin"}, {"text": ","}, {"text": "popular"}, {"text": "sentiment"}, {"text": "*ICH*-1"}, {"text": "was"}, {"text": "so"}, {"text": "strong"}, {"text": "*ICH*-3"}, {"text": "in"}, {"text": "her"}, {"text": "favor"}, {"text": ","}, {"text": "Mrs."}, {"text": "Ward"}, {"text": "says"}, {"text": "0"}, {"text": "*T*-2"}, {"text": ","}, {"text": "that"}, {"text": "``"}, {"text": "I"}, {"text": "'m"}, {"text": "afraid"}, {"text": "0"}, {"text": "a"}, {"text": "jury"}, {"text": "would"}, {"text": "n't"}, {"text": "have"}, {"text": "convicted"}, {"text": "her"}, {"text": "."}, {"text": "Since"}, {"text": "chalk"}, {"text": "first"}, {"text": "touched"}, {"text": "slate"}, {"text": ","}, {"text": "schoolchildren"}, {"text": "have"}, {"text": "wanted"}, {"text": "*-1"}, {"text": "to"}, {"text": "know"}, {"text": ":"}, {"text": "What"}, {"text": "'s"}, {"text": "*T*-2"}, {"text": "on"}, {"text": "the"}, {"text": "test"}, {"text": "?"}, {"text": "These"}, {"text": "days"}, {"text": ","}, {"text": "students"}, {"text": "can"}, {"text": "often"}, {"text": "find"}, {"text": "the"}, {"text": "answer"}, {"text": "in"}, {"text": "test-coaching"}, {"text": "workbooks"}, {"text": "and"}, {"text": "worksheets"}, {"text": "0"}, {"text": "their"}, {"text": "teachers"}, {"text": "give"}, {"text": "them"}, {"text": "*T*-1"}, {"text": "in"}, {"text": "the"}, {"text": "weeks"}, {"text": "prior"}, {"text": "to"}, {"text": "*"}, {"text": "taking"}, {"text": "standardized"}, {"text": "achievement"}, {"text": "tests"}, {"text": "."}, {"text": "The"}, {"text": "mathematics"}, {"text": "section"}, {"text": "of"}, {"text": "the"}, {"text": "widely"}, {"text": "used"}, {"text": "California"}, {"text": "Achievement"}, {"text": "Test"}, {"text": "asks"}, {"text": "fifth"}, {"text": "graders"}, {"text": ":"}, {"text": "``"}, {"text": "What"}, {"text": "is"}, {"text": "*T*-1"}, {"text": "another"}, {"text": "name"}, {"text": "for"}, {"text": "the"}, {"text": "Roman"}, {"text": "numeral"}, {"text": "IX"}, {"text": "?"}, {"text": "''"}, {"text": "It"}, {"text": "also"}, {"text": "asks"}, {"text": "them"}, {"text": "*-1"}, {"text": "to"}, {"text": "add"}, {"text": "two-sevenths"}, {"text": "and"}, {"text": "three-sevenths"}, {"text": "."}, {"text": "Worksheets"}, {"text": "in"}, {"text": "a"}, {"text": "test-practice"}, {"text": "kit"}, {"text": "called"}, {"text": "*"}, {"text": "Learning"}, {"text": "Materials"}, {"text": ","}, {"text": "sold"}, {"text": "*"}, {"text": "to"}, {"text": "schools"}, {"text": "across"}, {"text": "the"}, {"text": "country"}, {"text": "by"}, {"text": "Macmillan\\/McGraw-Hill"}, {"text": "School"}, {"text": "Publishing"}, {"text": "Co."}, {"text": ","}, {"text": "contain"}, {"text": "the"}, {"text": "same"}, {"text": "questions"}, {"text": "."}, {"text": "In"}, {"text": "many"}, {"text": "other"}, {"text": "instances"}, {"text": ","}, {"text": "there"}, {"text": "is"}, {"text": "almost"}, {"text": "no"}, {"text": "difference"}, {"text": "between"}, {"text": "the"}, {"text": "real"}, {"text": "test"}, {"text": "and"}, {"text": "Learning"}, {"text": "Materials"}, {"text": "."}, {"text": "What"}, {"text": "*T*-102"}, {"text": "'s"}, {"text": "more"}, {"text": ","}, {"text": "the"}, {"text": "test"}, {"text": "and"}, {"text": "Learning"}, {"text": "Materials"}, {"text": "are"}, {"text": "both"}, {"text": "produced"}, {"text": "*-1"}, {"text": "by"}, {"text": "the"}, {"text": "same"}, {"text": "company"}, {"text": ","}, {"text": "Macmillan\\/McGraw-Hill"}, {"text": ","}, {"text": "a"}, {"text": "joint"}, {"text": "venture"}, {"text": "of"}, {"text": "McGraw-Hill"}, {"text": "Inc."}, {"text": "and"}, {"text": "Macmillan"}, {"text": "'s"}, {"text": "parent"}, {"text": ","}, {"text": "Britain"}, {"text": "'s"}, {"text": "Maxwell"}, {"text": "Communication"}, {"text": "Corp"}, {"text": "."}, {"text": "Close"}, {"text": "parallels"}, {"text": "between"}, {"text": "tests"}, {"text": "and"}, {"text": "practice"}, {"text": "tests"}, {"text": "are"}, {"text": "common"}, {"text": ","}, {"text": "some"}, {"text": "educators"}, {"text": "and"}, {"text": "researchers"}, {"text": "say"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Test-preparation"}, {"text": "booklets"}, {"text": ","}, {"text": "software"}, {"text": "and"}, {"text": "worksheets"}, {"text": "are"}, {"text": "a"}, {"text": "booming"}, {"text": "publishing"}, {"text": "subindustry"}, {"text": "."}, {"text": "But"}, {"text": "some"}, {"text": "practice"}, {"text": "products"}, {"text": "are"}, {"text": "so"}, {"text": "similar"}, {"text": "to"}, {"text": "the"}, {"text": "tests"}, {"text": "themselves"}, {"text": "that"}, {"text": "critics"}, {"text": "say"}, {"text": "0"}, {"text": "they"}, {"text": "represent"}, {"text": "a"}, {"text": "form"}, {"text": "of"}, {"text": "school-sponsored"}, {"text": "cheating"}, {"text": "."}, {"text": "``"}, {"text": "If"}, {"text": "I"}, {"text": "took"}, {"text": "-LCB-"}, {"text": "these"}, {"text": "preparation"}, {"text": "booklets"}, {"text": "-RCB-"}, {"text": "into"}, {"text": "my"}, {"text": "classroom"}, {"text": ","}, {"text": "I"}, {"text": "'d"}, {"text": "have"}, {"text": "a"}, {"text": "hard"}, {"text": "time"}, {"text": "*-1"}, {"text": "justifying"}, {"text": "to"}, {"text": "my"}, {"text": "students"}, {"text": "and"}, {"text": "parents"}, {"text": "that"}, {"text": "it"}, {"text": "was"}, {"text": "n't"}, {"text": "cheating"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-2"}, {"text": "John"}, {"text": "Kaminski"}, {"text": ","}, {"text": "a"}, {"text": "Traverse"}, {"text": "City"}, {"text": ","}, {"text": "Mich."}, {"text": ","}, {"text": "teacher"}, {"text": "who"}, {"text": "*T*-103"}, {"text": "has"}, {"text": "studied"}, {"text": "test"}, {"text": "coaching"}, {"text": "."}, {"text": "He"}, {"text": "and"}, {"text": "other"}, {"text": "critics"}, {"text": "say"}, {"text": "0"}, {"text": "such"}, {"text": "coaching"}, {"text": "aids"}, {"text": "can"}, {"text": "defeat"}, {"text": "the"}, {"text": "purpose"}, {"text": "of"}, {"text": "standardized"}, {"text": "tests"}, {"text": ","}, {"text": "which"}, {"text": "*T*-104"}, {"text": "is"}, {"text": "*"}, {"text": "to"}, {"text": "gauge"}, {"text": "learning"}, {"text": "progress"}, {"text": "."}, {"text": "``"}, {"text": "It"}, {"text": "'s"}, {"text": "as"}, {"text": "if"}, {"text": "France"}, {"text": "decided"}, {"text": "*-1"}, {"text": "to"}, {"text": "give"}, {"text": "only"}, {"text": "French"}, {"text": "history"}, {"text": "questions"}, {"text": "to"}, {"text": "students"}, {"text": "in"}, {"text": "a"}, {"text": "European"}, {"text": "history"}, {"text": "class"}, {"text": ","}, {"text": "and"}, {"text": "when"}, {"text": "everybody"}, {"text": "aces"}, {"text": "the"}, {"text": "test"}, {"text": "*T*-3"}, {"text": ","}, {"text": "they"}, {"text": "say"}, {"text": "0"}, {"text": "their"}, {"text": "kids"}, {"text": "are"}, {"text": "good"}, {"text": "in"}, {"text": "European"}, {"text": "history"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-2"}, {"text": "John"}, {"text": "Cannell"}, {"text": ","}, {"text": "an"}, {"text": "Albuquerque"}, {"text": ","}, {"text": "N.M."}, {"text": ","}, {"text": "psychiatrist"}, {"text": "and"}, {"text": "founder"}, {"text": "of"}, {"text": "an"}, {"text": "educational"}, {"text": "research"}, {"text": "organization"}, {"text": ","}, {"text": "Friends"}, {"text": "for"}, {"text": "Education"}, {"text": ","}, {"text": "which"}, {"text": "*T*-105"}, {"text": "has"}, {"text": "studied"}, {"text": "standardized"}, {"text": "testing"}, {"text": "."}, {"text": "Standardized"}, {"text": "achievement"}, {"text": "tests"}, {"text": "are"}, {"text": "given"}, {"text": "*-1"}, {"text": "about"}, {"text": "10"}, {"text": "million"}, {"text": "times"}, {"text": "a"}, {"text": "year"}, {"text": "across"}, {"text": "the"}, {"text": "country"}, {"text": "to"}, {"text": "students"}, {"text": "generally"}, {"text": "from"}, {"text": "kindergarten"}, {"text": "through"}, {"text": "eighth"}, {"text": "grade"}, {"text": "."}, {"text": "The"}, {"text": "most"}, {"text": "widely"}, {"text": "used"}, {"text": "of"}, {"text": "these"}, {"text": "tests"}, {"text": "are"}, {"text": "Macmillan\\/McGraw"}, {"text": "'s"}, {"text": "CAT"}, {"text": "and"}, {"text": "Comprehensive"}, {"text": "Test"}, {"text": "of"}, {"text": "Basic"}, {"text": "Skills"}, {"text": ";"}, {"text": "the"}, {"text": "Iowa"}, {"text": "Test"}, {"text": "of"}, {"text": "Basic"}, {"text": "Skills"}, {"text": ","}, {"text": "by"}, {"text": "Houghton"}, {"text": "Mifflin"}, {"text": "Co."}, {"text": ";"}, {"text": "and"}, {"text": "Harcourt"}, {"text": "Brace"}, {"text": "Jovanovich"}, {"text": "Inc."}, {"text": "'s"}, {"text": "Metropolitan"}, {"text": "Achievement"}, {"text": "Test"}, {"text": "and"}, {"text": "Stanford"}, {"text": "Achievement"}, {"text": "Test"}, {"text": "."}, {"text": "Sales"}, {"text": "figures"}, {"text": "of"}, {"text": "the"}, {"text": "test-prep"}, {"text": "materials"}, {"text": "are"}, {"text": "n't"}, {"text": "known"}, {"text": "*-1"}, {"text": ","}, {"text": "but"}, {"text": "their"}, {"text": "reach"}, {"text": "into"}, {"text": "schools"}, {"text": "is"}, {"text": "significant"}, {"text": "."}, {"text": "In"}, {"text": "Arizona"}, {"text": ","}, {"text": "California"}, {"text": ","}, {"text": "Florida"}, {"text": ","}, {"text": "Louisiana"}, {"text": ","}, {"text": "Maryland"}, {"text": ","}, {"text": "New"}, {"text": "Jersey"}, {"text": ","}, {"text": "South"}, {"text": "Carolina"}, {"text": "and"}, {"text": "Texas"}, {"text": ","}, {"text": "educators"}, {"text": "say"}, {"text": "0"}, {"text": "they"}, {"text": "are"}, {"text": "common"}, {"text": "classroom"}, {"text": "tools"}, {"text": "."}, {"text": "Macmillan\\/McGraw"}, {"text": "says"}, {"text": "0"}, {"text": "``"}, {"text": "well"}, {"text": "over"}, {"text": "10"}, {"text": "million"}, {"text": "''"}, {"text": "of"}, {"text": "its"}, {"text": "Scoring"}, {"text": "High"}, {"text": "test-preparation"}, {"text": "books"}, {"text": "have"}, {"text": "been"}, {"text": "sold"}, {"text": "*-1"}, {"text": "since"}, {"text": "their"}, {"text": "introduction"}, {"text": "10"}, {"text": "years"}, {"text": "ago"}, {"text": ","}, {"text": "with"}, {"text": "most"}, {"text": "sales"}, {"text": "in"}, {"text": "the"}, {"text": "last"}, {"text": "five"}, {"text": "years"}, {"text": "."}, {"text": "About"}, {"text": "20,000"}, {"text": "sets"}, {"text": "of"}, {"text": "Learning"}, {"text": "Materials"}, {"text": "teachers"}, {"text": "'"}, {"text": "binders"}, {"text": "have"}, {"text": "also"}, {"text": "been"}, {"text": "sold"}, {"text": "*-1"}, {"text": "in"}, {"text": "the"}, {"text": "past"}, {"text": "four"}, {"text": "years"}, {"text": "."}, {"text": "The"}, {"text": "materials"}, {"text": "in"}, {"text": "each"}, {"text": "set"}, {"text": "reach"}, {"text": "about"}, {"text": "90"}, {"text": "students"}, {"text": "."}, {"text": "Scoring"}, {"text": "High"}, {"text": "and"}, {"text": "Learning"}, {"text": "Materials"}, {"text": "are"}, {"text": "the"}, {"text": "best-selling"}, {"text": "preparation"}, {"text": "tests"}, {"text": "."}, {"text": "Michael"}, {"text": "Kean"}, {"text": ","}, {"text": "director"}, {"text": "of"}, {"text": "marketing"}, {"text": "for"}, {"text": "CTB"}, {"text": "Macmillan\\/McGraw"}, {"text": ","}, {"text": "the"}, {"text": "Macmillan\\/McGraw"}, {"text": "division"}, {"text": "that"}, {"text": "*T*-106"}, {"text": "publishes"}, {"text": "Learning"}, {"text": "Materials"}, {"text": ","}, {"text": "says"}, {"text": "0"}, {"text": "it"}, {"text": "is"}, {"text": "n't"}, {"text": "aimed"}, {"text": "*-1"}, {"text": "at"}, {"text": "*"}, {"text": "improving"}, {"text": "test"}, {"text": "scores"}, {"text": "."}, {"text": "He"}, {"text": "also"}, {"text": "asserted"}, {"text": "that"}, {"text": "exact"}, {"text": "questions"}, {"text": "were"}, {"text": "n't"}, {"text": "replicated"}, {"text": "*-1"}, {"text": "."}, {"text": "When"}, {"text": "*"}, {"text": "referred"}, {"text": "*-2"}, {"text": "to"}, {"text": "the"}, {"text": "questions"}, {"text": "that"}, {"text": "*T*-107"}, {"text": "matched"}, {"text": "*T*-1"}, {"text": ","}, {"text": "he"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "was"}, {"text": "coincidental"}, {"text": "."}, {"text": "Mr."}, {"text": "Kaminski"}, {"text": ","}, {"text": "the"}, {"text": "schoolteacher"}, {"text": ","}, {"text": "and"}, {"text": "William"}, {"text": "Mehrens"}, {"text": ","}, {"text": "a"}, {"text": "Michigan"}, {"text": "State"}, {"text": "University"}, {"text": "education"}, {"text": "professor"}, {"text": ","}, {"text": "concluded"}, {"text": "in"}, {"text": "a"}, {"text": "study"}, {"text": "last"}, {"text": "June"}, {"text": "that"}, {"text": "CAT"}, {"text": "test"}, {"text": "versions"}, {"text": "of"}, {"text": "Scoring"}, {"text": "High"}, {"text": "and"}, {"text": "Learning"}, {"text": "Materials"}, {"text": "should"}, {"text": "n't"}, {"text": "be"}, {"text": "used"}, {"text": "*-2"}, {"text": "in"}, {"text": "the"}, {"text": "classroom"}, {"text": "because"}, {"text": "of"}, {"text": "their"}, {"text": "similarity"}, {"text": "to"}, {"text": "the"}, {"text": "actual"}, {"text": "test"}, {"text": "."}, {"text": "They"}, {"text": "devised"}, {"text": "a"}, {"text": "69-point"}, {"text": "scale"}, {"text": "--"}, {"text": "*-1"}, {"text": "awarding"}, {"text": "one"}, {"text": "point"}, {"text": "for"}, {"text": "each"}, {"text": "subskill"}, {"text": "measured"}, {"text": "*"}, {"text": "on"}, {"text": "the"}, {"text": "CAT"}, {"text": "test"}, {"text": "--"}, {"text": "*-1"}, {"text": "to"}, {"text": "rate"}, {"text": "the"}, {"text": "closeness"}, {"text": "of"}, {"text": "test"}, {"text": "preparatives"}, {"text": "to"}, {"text": "the"}, {"text": "fifth-grade"}, {"text": "CAT"}, {"text": "."}, {"text": "Because"}, {"text": "many"}, {"text": "of"}, {"text": "these"}, {"text": "subskills"}, {"text": "--"}, {"text": "the"}, {"text": "symmetry"}, {"text": "of"}, {"text": "geometrical"}, {"text": "figures"}, {"text": ","}, {"text": "metric"}, {"text": "measurement"}, {"text": "of"}, {"text": "volume"}, {"text": ","}, {"text": "or"}, {"text": "pie"}, {"text": "and"}, {"text": "bar"}, {"text": "graphs"}, {"text": ","}, {"text": "for"}, {"text": "example"}, {"text": "--"}, {"text": "are"}, {"text": "only"}, {"text": "a"}, {"text": "small"}, {"text": "part"}, {"text": "of"}, {"text": "the"}, {"text": "total"}, {"text": "fifth-grade"}, {"text": "curriculum"}, {"text": ","}, {"text": "Mr."}, {"text": "Kaminski"}, {"text": "says"}, {"text": "0"}, {"text": "*T*-1"}, {"text": ","}, {"text": "the"}, {"text": "preparation"}, {"text": "kits"}, {"text": "would"}, {"text": "n't"}, {"text": "replicate"}, {"text": "too"}, {"text": "many"}, {"text": ","}, {"text": "if"}, {"text": "their"}, {"text": "real"}, {"text": "intent"}, {"text": "was"}, {"text": "general"}, {"text": "instruction"}, {"text": "or"}, {"text": "even"}, {"text": "general"}, {"text": "familiarization"}, {"text": "with"}, {"text": "test"}, {"text": "procedures"}, {"text": "."}, {"text": "But"}, {"text": "Learning"}, {"text": "Materials"}, {"text": "matched"}, {"text": "on"}, {"text": "66.5"}, {"text": "of"}, {"text": "69"}, {"text": "subskills"}, {"text": "."}, {"text": "Scoring"}, {"text": "High"}, {"text": "matched"}, {"text": "on"}, {"text": "64.5"}, {"text": "."}, {"text": "In"}, {"text": "CAT"}, {"text": "sections"}, {"text": "where"}, {"text": "students"}, {"text": "'"}, {"text": "knowledge"}, {"text": "of"}, {"text": "two-letter"}, {"text": "consonant"}, {"text": "sounds"}, {"text": "is"}, {"text": "tested"}, {"text": "*-1"}, {"text": "*T*-2"}, {"text": ","}, {"text": "the"}, {"text": "authors"}, {"text": "noted"}, {"text": "that"}, {"text": "Scoring"}, {"text": "High"}, {"text": "concentrated"}, {"text": "on"}, {"text": "the"}, {"text": "same"}, {"text": "sounds"}, {"text": "that"}, {"text": "the"}, {"text": "test"}, {"text": "does"}, {"text": "*?*"}, {"text": "*T*-4"}, {"text": "--"}, {"text": "to"}, {"text": "the"}, {"text": "exclusion"}, {"text": "of"}, {"text": "other"}, {"text": "sounds"}, {"text": "that"}, {"text": "fifth"}, {"text": "graders"}, {"text": "should"}, {"text": "know"}, {"text": "*T*-3"}, {"text": "."}, {"text": "Learning"}, {"text": "Materials"}, {"text": "for"}, {"text": "the"}, {"text": "fifth-grade"}, {"text": "contains"}, {"text": "at"}, {"text": "least"}, {"text": "a"}, {"text": "dozen"}, {"text": "examples"}, {"text": "of"}, {"text": "exact"}, {"text": "matches"}, {"text": "or"}, {"text": "close"}, {"text": "parallels"}, {"text": "to"}, {"text": "test"}, {"text": "items"}, {"text": "."}, {"text": "Rick"}, {"text": "Brownell"}, {"text": ","}, {"text": "senior"}, {"text": "editor"}, {"text": "of"}, {"text": "Scoring"}, {"text": "High"}, {"text": ","}, {"text": "says"}, {"text": "that"}, {"text": "Messrs."}, {"text": "Kaminski"}, {"text": "and"}, {"text": "Mehrens"}, {"text": "are"}, {"text": "ignoring"}, {"text": "``"}, {"text": "the"}, {"text": "need"}, {"text": "0"}, {"text": "students"}, {"text": "have"}, {"text": "*T*-1"}, {"text": "for"}, {"text": "*"}, {"text": "becoming"}, {"text": "familiar"}, {"text": "with"}, {"text": "tests"}, {"text": "and"}, {"text": "testing"}, {"text": "format"}, {"text": "."}, {"text": "''"}, {"text": "He"}, {"text": "said"}, {"text": "0"}, {"text": "authors"}, {"text": "of"}, {"text": "Scoring"}, {"text": "High"}, {"text": "``"}, {"text": "scrupulously"}, {"text": "avoid"}, {"text": "''"}, {"text": "*-1"}, {"text": "replicating"}, {"text": "exact"}, {"text": "questions"}, {"text": ","}, {"text": "but"}, {"text": "he"}, {"text": "does"}, {"text": "n't"}, {"text": "deny"}, {"text": "that"}, {"text": "some"}, {"text": "items"}, {"text": "are"}, {"text": "similar"}, {"text": "."}, {"text": "When"}, {"text": "Scoring"}, {"text": "High"}, {"text": "first"}, {"text": "came"}, {"text": "out"}, {"text": "in"}, {"text": "1979"}, {"text": "*T*-1"}, {"text": ","}, {"text": "it"}, {"text": "was"}, {"text": "a"}, {"text": "publication"}, {"text": "of"}, {"text": "Random"}, {"text": "House"}, {"text": "."}, {"text": "McGraw-Hill"}, {"text": "was"}, {"text": "outraged"}, {"text": "."}, {"text": "In"}, {"text": "a"}, {"text": "1985"}, {"text": "advisory"}, {"text": "to"}, {"text": "educators"}, {"text": ","}, {"text": "McGraw-Hill"}, {"text": "said"}, {"text": "0"}, {"text": "Scoring"}, {"text": "High"}, {"text": "should"}, {"text": "n't"}, {"text": "be"}, {"text": "used"}, {"text": "*-1"}, {"text": "because"}, {"text": "it"}, {"text": "represented"}, {"text": "a"}, {"text": "``"}, {"text": "parallel"}, {"text": "form"}, {"text": "''"}, {"text": "of"}, {"text": "the"}, {"text": "CAT"}, {"text": "and"}, {"text": "CTBS"}, {"text": "tests"}, {"text": "."}, {"text": "But"}, {"text": "in"}, {"text": "1988"}, {"text": ","}, {"text": "McGraw-Hill"}, {"text": "purchased"}, {"text": "the"}, {"text": "Random"}, {"text": "House"}, {"text": "unit"}, {"text": "that"}, {"text": "*T*-108"}, {"text": "publishes"}, {"text": "Scoring"}, {"text": "High"}, {"text": ","}, {"text": "which"}, {"text": "*T*-109"}, {"text": "later"}, {"text": "became"}, {"text": "part"}, {"text": "of"}, {"text": "Macmillan\\/McGraw"}, {"text": "."}, {"text": "Messrs."}, {"text": "Brownell"}, {"text": "and"}, {"text": "Kean"}, {"text": "say"}, {"text": "0"}, {"text": "they"}, {"text": "are"}, {"text": "unaware"}, {"text": "of"}, {"text": "any"}, {"text": "efforts"}, {"text": "*ICH*-1"}, {"text": "by"}, {"text": "McGraw-Hill"}, {"text": "*"}, {"text": "to"}, {"text": "modify"}, {"text": "or"}, {"text": "discontinue"}, {"text": "Scoring"}, {"text": "High"}, {"text": "."}, {"text": "Alleghany"}, {"text": "Corp."}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "completed"}, {"text": "the"}, {"text": "acquisition"}, {"text": "of"}, {"text": "Sacramento"}, {"text": "Savings"}, {"text": "&"}, {"text": "Loan"}, {"text": "Association"}, {"text": "from"}, {"text": "the"}, {"text": "H.N."}, {"text": "&"}, {"text": "Frances"}, {"text": "C."}, {"text": "Berger"}, {"text": "Foundation"}, {"text": "for"}, {"text": "$"}, {"text": "150"}, {"text": "million"}, {"text": "*U*"}, {"text": "."}, {"text": "The"}, {"text": "Sacramento-based"}, {"text": "S&L"}, {"text": ","}, {"text": "which"}, {"text": "*T*-110"}, {"text": "has"}, {"text": "44"}, {"text": "branch"}, {"text": "offices"}, {"text": "in"}, {"text": "north"}, {"text": "central"}, {"text": "California"}, {"text": ","}, {"text": "had"}, {"text": "assets"}, {"text": "of"}, {"text": "$"}, {"text": "2.4"}, {"text": "billion"}, {"text": "*U*"}, {"text": "at"}, {"text": "the"}, {"text": "end"}, {"text": "of"}, {"text": "September"}, {"text": "."}, {"text": "New"}, {"text": "York-based"}, {"text": "Alleghany"}, {"text": "is"}, {"text": "an"}, {"text": "insurance"}, {"text": "and"}, {"text": "financial"}, {"text": "services"}, {"text": "concern"}, {"text": "."}, {"text": "The"}, {"text": "purchase"}, {"text": "price"}, {"text": "includes"}, {"text": "two"}, {"text": "ancillary"}, {"text": "companies"}, {"text": "."}, {"text": "The"}, {"text": "Department"}, {"text": "of"}, {"text": "Health"}, {"text": "and"}, {"text": "Human"}, {"text": "Services"}, {"text": "plans"}, {"text": "*-1"}, {"text": "to"}, {"text": "extend"}, {"text": "its"}, {"text": "moratorium"}, {"text": "on"}, {"text": "federal"}, {"text": "funding"}, {"text": "of"}, {"text": "research"}, {"text": "involving"}, {"text": "fetal-tissue"}, {"text": "transplants"}, {"text": "."}, {"text": "Medical"}, {"text": "researchers"}, {"text": "believe"}, {"text": "0"}, {"text": "the"}, {"text": "transplantation"}, {"text": "of"}, {"text": "small"}, {"text": "amounts"}, {"text": "of"}, {"text": "fetal"}, {"text": "tissue"}, {"text": "into"}, {"text": "humans"}, {"text": "could"}, {"text": "help"}, {"text": "*"}, {"text": "treat"}, {"text": "juvenile"}, {"text": "diabetes"}, {"text": "and"}, {"text": "such"}, {"text": "degenerative"}, {"text": "diseases"}, {"text": "as"}, {"text": "Alzheimer"}, {"text": "'s"}, {"text": ","}, {"text": "Parkinson"}, {"text": "'s"}, {"text": "and"}, {"text": "Huntington"}, {"text": "'s"}, {"text": "."}, {"text": "But"}, {"text": "anti-abortionists"}, {"text": "oppose"}, {"text": "such"}, {"text": "research"}, {"text": "because"}, {"text": "they"}, {"text": "worry"}, {"text": "that"}, {"text": "the"}, {"text": "development"}, {"text": "of"}, {"text": "therapies"}, {"text": "using"}, {"text": "fetal-tissue"}, {"text": "transplants"}, {"text": "could"}, {"text": "lead"}, {"text": "to"}, {"text": "an"}, {"text": "increase"}, {"text": "in"}, {"text": "abortions"}, {"text": "."}, {"text": "James"}, {"text": "Mason"}, {"text": ","}, {"text": "assistant"}, {"text": "secretary"}, {"text": "for"}, {"text": "health"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "ban"}, {"text": "on"}, {"text": "federal"}, {"text": "funding"}, {"text": "of"}, {"text": "fetal-tissue"}, {"text": "transplant"}, {"text": "research"}, {"text": "``"}, {"text": "should"}, {"text": "be"}, {"text": "continued"}, {"text": "*-1"}, {"text": "indefinitely"}, {"text": "."}, {"text": "''"}, {"text": "He"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "ban"}, {"text": "wo"}, {"text": "n't"}, {"text": "stop"}, {"text": "privately"}, {"text": "funded"}, {"text": "tissue-transplant"}, {"text": "research"}, {"text": "or"}, {"text": "federally"}, {"text": "funded"}, {"text": "fetal-tissue"}, {"text": "research"}, {"text": "that"}, {"text": "*T*-111"}, {"text": "does"}, {"text": "n't"}, {"text": "involve"}, {"text": "transplants"}, {"text": "."}, {"text": "Department"}, {"text": "officials"}, {"text": "say"}, {"text": "that"}, {"text": "HHS"}, {"text": "Secretary"}, {"text": "Louis"}, {"text": "Sullivan"}, {"text": "will"}, {"text": "support"}, {"text": "Dr."}, {"text": "Mason"}, {"text": "'s"}, {"text": "ruling"}, {"text": ","}, {"text": "which"}, {"text": "*T*-112"}, {"text": "will"}, {"text": "be"}, {"text": "issued"}, {"text": "*-1"}, {"text": "soon"}, {"text": "in"}, {"text": "the"}, {"text": "form"}, {"text": "of"}, {"text": "a"}, {"text": "letter"}, {"text": "to"}, {"text": "the"}, {"text": "acting"}, {"text": "director"}, {"text": "of"}, {"text": "the"}, {"text": "National"}, {"text": "Institutes"}, {"text": "of"}, {"text": "Health"}, {"text": "."}, {"text": "Both"}, {"text": "Dr."}, {"text": "Mason"}, {"text": "and"}, {"text": "Dr."}, {"text": "Sullivan"}, {"text": "oppose"}, {"text": "federal"}, {"text": "funding"}, {"text": "for"}, {"text": "abortion"}, {"text": ","}, {"text": "as"}, {"text": "does"}, {"text": "President"}, {"text": "Bush"}, {"text": "*?*"}, {"text": ","}, {"text": "except"}, {"text": "in"}, {"text": "cases"}, {"text": "where"}, {"text": "a"}, {"text": "woman"}, {"text": "'s"}, {"text": "life"}, {"text": "is"}, {"text": "threatened"}, {"text": "*-2"}, {"text": "*T*-1"}, {"text": "."}, {"text": "The"}, {"text": "controversy"}, {"text": "began"}, {"text": "in"}, {"text": "1987"}, {"text": "when"}, {"text": "the"}, {"text": "National"}, {"text": "Institutes"}, {"text": "of"}, {"text": "Health"}, {"text": ","}, {"text": "aware"}, {"text": "of"}, {"text": "the"}, {"text": "policy"}, {"text": "implications"}, {"text": "of"}, {"text": "its"}, {"text": "research"}, {"text": ","}, {"text": "asked"}, {"text": "for"}, {"text": "an"}, {"text": "HHS"}, {"text": "review"}, {"text": "of"}, {"text": "its"}, {"text": "plan"}, {"text": "*"}, {"text": "to"}, {"text": "implant"}, {"text": "fetal"}, {"text": "tissue"}, {"text": "into"}, {"text": "the"}, {"text": "brain"}, {"text": "of"}, {"text": "a"}, {"text": "patient"}, {"text": "suffering"}, {"text": "from"}, {"text": "Parkinson"}, {"text": "'s"}, {"text": "disease"}, {"text": "*T*-1"}, {"text": "."}, {"text": "The"}, {"text": "department"}, {"text": "placed"}, {"text": "a"}, {"text": "moratorium"}, {"text": "on"}, {"text": "the"}, {"text": "research"}, {"text": ","}, {"text": "*"}, {"text": "pending"}, {"text": "a"}, {"text": "review"}, {"text": "of"}, {"text": "scientific"}, {"text": ","}, {"text": "legal"}, {"text": "and"}, {"text": "ethical"}, {"text": "issues"}, {"text": "."}, {"text": "A"}, {"text": "majority"}, {"text": "of"}, {"text": "an"}, {"text": "NIH-appointed"}, {"text": "panel"}, {"text": "recommended"}, {"text": "late"}, {"text": "last"}, {"text": "year"}, {"text": "that"}, {"text": "the"}, {"text": "research"}, {"text": "continue"}, {"text": "under"}, {"text": "carefully"}, {"text": "controlled"}, {"text": "conditions"}, {"text": ","}, {"text": "but"}, {"text": "the"}, {"text": "issue"}, {"text": "became"}, {"text": "embroiled"}, {"text": "*-2"}, {"text": "in"}, {"text": "politics"}, {"text": "as"}, {"text": "anti-abortion"}, {"text": "groups"}, {"text": "continued"}, {"text": "*-3"}, {"text": "to"}, {"text": "oppose"}, {"text": "federal"}, {"text": "funding"}, {"text": "."}, {"text": "The"}, {"text": "dispute"}, {"text": "has"}, {"text": "hampered"}, {"text": "the"}, {"text": "administration"}, {"text": "'s"}, {"text": "efforts"}, {"text": "*"}, {"text": "to"}, {"text": "recruit"}, {"text": "prominent"}, {"text": "doctors"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "to"}, {"text": "fill"}, {"text": "prestigious"}, {"text": "posts"}, {"text": "at"}, {"text": "the"}, {"text": "helm"}, {"text": "of"}, {"text": "the"}, {"text": "NIH"}, {"text": "and"}, {"text": "the"}, {"text": "Centers"}, {"text": "for"}, {"text": "Disease"}, {"text": "Control"}, {"text": "."}, {"text": "Several"}, {"text": "candidates"}, {"text": "have"}, {"text": "withdrawn"}, {"text": "their"}, {"text": "names"}, {"text": "from"}, {"text": "consideration"}, {"text": "after"}, {"text": "administration"}, {"text": "officials"}, {"text": "asked"}, {"text": "them"}, {"text": "for"}, {"text": "their"}, {"text": "views"}, {"text": "on"}, {"text": "abortion"}, {"text": "and"}, {"text": "fetal-tissue"}, {"text": "transplants"}, {"text": "."}, {"text": "Antonio"}, {"text": "Novello"}, {"text": ","}, {"text": "whom"}, {"text": "Mr."}, {"text": "Bush"}, {"text": "nominated"}, {"text": "*T*-113"}, {"text": "to"}, {"text": "serve"}, {"text": "as"}, {"text": "surgeon"}, {"text": "general"}, {"text": ","}, {"text": "reportedly"}, {"text": "has"}, {"text": "assured"}, {"text": "the"}, {"text": "administration"}, {"text": "that"}, {"text": "she"}, {"text": "opposes"}, {"text": "abortion"}, {"text": "."}, {"text": "Dr."}, {"text": "Novello"}, {"text": "is"}, {"text": "deputy"}, {"text": "director"}, {"text": "of"}, {"text": "the"}, {"text": "National"}, {"text": "Institute"}, {"text": "of"}, {"text": "Child"}, {"text": "Health"}, {"text": "and"}, {"text": "Human"}, {"text": "Development"}, {"text": "."}, {"text": "Some"}, {"text": "researchers"}, {"text": "have"}, {"text": "charged"}, {"text": "that"}, {"text": "the"}, {"text": "administration"}, {"text": "is"}, {"text": "imposing"}, {"text": "new"}, {"text": "ideological"}, {"text": "tests"}, {"text": "for"}, {"text": "top"}, {"text": "scientific"}, {"text": "posts"}, {"text": "."}, {"text": "Earlier"}, {"text": "this"}, {"text": "week"}, {"text": ","}, {"text": "Dr."}, {"text": "Sullivan"}, {"text": "tried"}, {"text": "*-1"}, {"text": "to"}, {"text": "defuse"}, {"text": "these"}, {"text": "charges"}, {"text": "by"}, {"text": "*-4"}, {"text": "stressing"}, {"text": "that"}, {"text": "candidates"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "to"}, {"text": "head"}, {"text": "the"}, {"text": "NIH"}, {"text": "and"}, {"text": "the"}, {"text": "CDC"}, {"text": "will"}, {"text": "be"}, {"text": "judged"}, {"text": "*-3"}, {"text": "by"}, {"text": "``"}, {"text": "standards"}, {"text": "of"}, {"text": "scientific"}, {"text": "and"}, {"text": "administrative"}, {"text": "excellence"}, {"text": ","}, {"text": "''"}, {"text": "not"}, {"text": "politics"}, {"text": "."}, {"text": "But"}, {"text": "the"}, {"text": "administration"}, {"text": "'s"}, {"text": "handling"}, {"text": "of"}, {"text": "the"}, {"text": "fetal-tissue"}, {"text": "transplant"}, {"text": "issue"}, {"text": "disturbs"}, {"text": "many"}, {"text": "scientists"}, {"text": "."}, {"text": "``"}, {"text": "When"}, {"text": "scientific"}, {"text": "progress"}, {"text": "moves"}, {"text": "into"}, {"text": "uncharted"}, {"text": "ground"}, {"text": "*T*-1"}, {"text": ","}, {"text": "there"}, {"text": "has"}, {"text": "*-3"}, {"text": "to"}, {"text": "be"}, {"text": "a"}, {"text": "role"}, {"text": "*ICH*-4"}, {"text": "for"}, {"text": "society"}, {"text": "*"}, {"text": "to"}, {"text": "make"}, {"text": "judgments"}, {"text": "about"}, {"text": "its"}, {"text": "applications"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-2"}, {"text": "Myron"}, {"text": "Genel"}, {"text": ","}, {"text": "associate"}, {"text": "dean"}, {"text": "of"}, {"text": "the"}, {"text": "Yale"}, {"text": "Medical"}, {"text": "School"}, {"text": "."}, {"text": "``"}, {"text": "The"}, {"text": "disturbing"}, {"text": "thing"}, {"text": "about"}, {"text": "this"}, {"text": "abortion"}, {"text": "issue"}, {"text": "is"}, {"text": "that"}, {"text": "the"}, {"text": "debate"}, {"text": "has"}, {"text": "become"}, {"text": "polarized"}, {"text": "*-1"}, {"text": ","}, {"text": "so"}, {"text": "that"}, {"text": "no"}, {"text": "mechanism"}, {"text": "*ICH*-2"}, {"text": "exists"}, {"text": "''"}, {"text": "for"}, {"text": "*"}, {"text": "finding"}, {"text": "a"}, {"text": "middle"}, {"text": "ground"}, {"text": "."}, {"text": "Yale"}, {"text": "is"}, {"text": "one"}, {"text": "of"}, {"text": "the"}, {"text": "few"}, {"text": "medical"}, {"text": "institutions"}, {"text": "conducting"}, {"text": "privately"}, {"text": "funded"}, {"text": "research"}, {"text": "on"}, {"text": "fetal-tissue"}, {"text": "transplants"}, {"text": "."}, {"text": "But"}, {"text": "Dr."}, {"text": "Genel"}, {"text": "warns"}, {"text": "that"}, {"text": "Dr."}, {"text": "Mason"}, {"text": "'s"}, {"text": "ruling"}, {"text": "may"}, {"text": "discourage"}, {"text": "private"}, {"text": "funding"}, {"text": "."}, {"text": "``"}, {"text": "The"}, {"text": "unavailability"}, {"text": "of"}, {"text": "federal"}, {"text": "funds"}, {"text": ","}, {"text": "and"}, {"text": "the"}, {"text": "climate"}, {"text": "in"}, {"text": "which"}, {"text": "the"}, {"text": "decision"}, {"text": "was"}, {"text": "made"}, {"text": "*-2"}, {"text": "*T*-1"}, {"text": ","}, {"text": "certainly"}, {"text": "do"}, {"text": "n't"}, {"text": "provide"}, {"text": "any"}, {"text": "incentive"}, {"text": "for"}, {"text": "one"}, {"text": "of"}, {"text": "the"}, {"text": "more"}, {"text": "visible"}, {"text": "foundations"}, {"text": "to"}, {"text": "provide"}, {"text": "support"}, {"text": ","}, {"text": "''"}, {"text": "he"}, {"text": "said"}, {"text": "*T*-3"}, {"text": "."}, {"text": "Despite"}, {"text": "the"}, {"text": "flap"}, {"text": "over"}, {"text": "transplants"}, {"text": ","}, {"text": "federal"}, {"text": "funding"}, {"text": "of"}, {"text": "research"}, {"text": "involving"}, {"text": "fetal"}, {"text": "tissues"}, {"text": "will"}, {"text": "continue"}, {"text": "on"}, {"text": "a"}, {"text": "number"}, {"text": "of"}, {"text": "fronts"}, {"text": "."}, {"text": "``"}, {"text": "Such"}, {"text": "research"}, {"text": "may"}, {"text": "ultimately"}, {"text": "result"}, {"text": "in"}, {"text": "the"}, {"text": "ability"}, {"text": "*"}, {"text": "to"}, {"text": "regenerate"}, {"text": "damaged"}, {"text": "tissues"}, {"text": "or"}, {"text": "*"}, {"text": "to"}, {"text": "turn"}, {"text": "off"}, {"text": "genes"}, {"text": "that"}, {"text": "*T*-114"}, {"text": "cause"}, {"text": "cancer"}, {"text": "''"}, {"text": "or"}, {"text": "*"}, {"text": "to"}, {"text": "regulate"}, {"text": "genes"}, {"text": "that"}, {"text": "*T*-115"}, {"text": "cause"}, {"text": "Down"}, {"text": "'s"}, {"text": "syndrome"}, {"text": ","}, {"text": "the"}, {"text": "leading"}, {"text": "cause"}, {"text": "of"}, {"text": "mental"}, {"text": "retardation"}, {"text": ","}, {"text": "according"}, {"text": "to"}, {"text": "an"}, {"text": "NIH"}, {"text": "summary"}, {"text": "."}, {"text": "The"}, {"text": "NIH"}, {"text": "currently"}, {"text": "spends"}, {"text": "about"}, {"text": "$"}, {"text": "8"}, {"text": "million"}, {"text": "*U*"}, {"text": "*ICH*-2"}, {"text": "annually"}, {"text": "on"}, {"text": "fetal-tissue"}, {"text": "research"}, {"text": "out"}, {"text": "of"}, {"text": "a"}, {"text": "total"}, {"text": "research"}, {"text": "budget"}, {"text": "of"}, {"text": "$"}, {"text": "8"}, {"text": "billion"}, {"text": "*U*"}, {"text": "."}, {"text": "Rekindled"}, {"text": "hope"}, {"text": "that"}, {"text": "two"}, {"text": "New"}, {"text": "England"}, {"text": "states"}, {"text": "will"}, {"text": "allow"}, {"text": "broader"}, {"text": "interstate"}, {"text": "banking"}, {"text": "boosted"}, {"text": "Nasdaq"}, {"text": "'s"}, {"text": "bank"}, {"text": "stocks"}, {"text": ","}, {"text": "but"}, {"text": "the"}, {"text": "over-the-counter"}, {"text": "market"}, {"text": "was"}, {"text": "up"}, {"text": "only"}, {"text": "slightly"}, {"text": "in"}, {"text": "lackluster"}, {"text": "trading"}, {"text": "."}, {"text": "The"}, {"text": "Nasdaq"}, {"text": "composite"}, {"text": "index"}, {"text": "added"}, {"text": "1.01"}, {"text": "to"}, {"text": "456.64"}, {"text": "on"}, {"text": "paltry"}, {"text": "volume"}, {"text": "of"}, {"text": "118.6"}, {"text": "million"}, {"text": "shares"}, {"text": "."}, {"text": "In"}, {"text": "terms"}, {"text": "of"}, {"text": "volume"}, {"text": ","}, {"text": "it"}, {"text": "was"}, {"text": "an"}, {"text": "inauspicious"}, {"text": "beginning"}, {"text": "for"}, {"text": "November"}, {"text": "."}, {"text": "Yesterday"}, {"text": "'s"}, {"text": "share"}, {"text": "turnover"}, {"text": "was"}, {"text": "well"}, {"text": "below"}, {"text": "the"}, {"text": "year"}, {"text": "'s"}, {"text": "daily"}, {"text": "average"}, {"text": "of"}, {"text": "133.8"}, {"text": "million"}, {"text": "."}, {"text": "In"}, {"text": "October"}, {"text": ","}, {"text": "the"}, {"text": "busiest"}, {"text": "month"}, {"text": "of"}, {"text": "the"}, {"text": "year"}, {"text": "so"}, {"text": "far"}, {"text": ","}, {"text": "daily"}, {"text": "volume"}, {"text": "averaged"}, {"text": "roughly"}, {"text": "145"}, {"text": "million"}, {"text": "shares"}, {"text": "."}, {"text": "The"}, {"text": "Nasdaq"}, {"text": "100"}, {"text": "index"}, {"text": "of"}, {"text": "the"}, {"text": "biggest"}, {"text": "nonfinancial"}, {"text": "stocks"}, {"text": "gained"}, {"text": "1.39"}, {"text": "to"}, {"text": "446.62"}, {"text": "."}, {"text": "The"}, {"text": "index"}, {"text": "of"}, {"text": "the"}, {"text": "100"}, {"text": "largest"}, {"text": "Nasdaq"}, {"text": "financial"}, {"text": "stocks"}, {"text": "rose"}, {"text": "modestly"}, {"text": "as"}, {"text": "well"}, {"text": ","}, {"text": "*-1"}, {"text": "gaining"}, {"text": "1.28"}, {"text": "to"}, {"text": "449.04"}, {"text": "."}, {"text": "But"}, {"text": "the"}, {"text": "broader"}, {"text": "Nasdaq"}, {"text": "bank"}, {"text": "index"}, {"text": ","}, {"text": "which"}, {"text": "*T*-116"}, {"text": "tracks"}, {"text": "thrift"}, {"text": "issues"}, {"text": ","}, {"text": "jumped"}, {"text": "3.23"}, {"text": "to"}, {"text": "436.01"}, {"text": "."}, {"text": "The"}, {"text": "bank"}, {"text": "stocks"}, {"text": "got"}, {"text": "a"}, {"text": "boost"}, {"text": "when"}, {"text": "Connecticut"}, {"text": "Bank"}, {"text": "&"}, {"text": "Trust"}, {"text": "and"}, {"text": "Bank"}, {"text": "of"}, {"text": "New"}, {"text": "England"}, {"text": "said"}, {"text": "0"}, {"text": "they"}, {"text": "no"}, {"text": "longer"}, {"text": "oppose"}, {"text": "pending"}, {"text": "legislation"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "would"}, {"text": "permit"}, {"text": "banks"}, {"text": "from"}, {"text": "other"}, {"text": "regions"}, {"text": "to"}, {"text": "merge"}, {"text": "with"}, {"text": "Connecticut"}, {"text": "and"}, {"text": "Massachusetts"}, {"text": "banks"}, {"text": "*T*-2"}, {"text": "."}, {"text": "The"}, {"text": "two"}, {"text": "banks"}, {"text": "merged"}, {"text": "in"}, {"text": "1985"}, {"text": "."}, {"text": "Bank"}, {"text": "of"}, {"text": "New"}, {"text": "England"}, {"text": "'s"}, {"text": "shares"}, {"text": "are"}, {"text": "traded"}, {"text": "*-1"}, {"text": "on"}, {"text": "the"}, {"text": "New"}, {"text": "York"}, {"text": "Stock"}, {"text": "Exchange"}, {"text": "."}, {"text": "The"}, {"text": "stocks"}, {"text": "of"}, {"text": "banking"}, {"text": "concerns"}, {"text": "based"}, {"text": "*"}, {"text": "in"}, {"text": "Massachusetts"}, {"text": "were"}, {"text": "n't"}, {"text": "helped"}, {"text": "*-1"}, {"text": "much"}, {"text": "by"}, {"text": "the"}, {"text": "announcement"}, {"text": ","}, {"text": "traders"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-2"}, {"text": ","}, {"text": "because"}, {"text": "many"}, {"text": "of"}, {"text": "those"}, {"text": "concerns"}, {"text": "have"}, {"text": "financial"}, {"text": "problems"}, {"text": "tied"}, {"text": "*"}, {"text": "to"}, {"text": "their"}, {"text": "real-estate"}, {"text": "loan"}, {"text": "portfolios"}, {"text": ","}, {"text": "*"}, {"text": "making"}, {"text": "them"}, {"text": "unattractive"}, {"text": "takeover"}, {"text": "targets"}, {"text": "."}, {"text": "But"}, {"text": "speculators"}, {"text": ","}, {"text": "*-1"}, {"text": "anticipating"}, {"text": "that"}, {"text": "Connecticut"}, {"text": "will"}, {"text": "approve"}, {"text": "a"}, {"text": "law"}, {"text": "permitting"}, {"text": "such"}, {"text": "interstate"}, {"text": "banking"}, {"text": "soon"}, {"text": ","}, {"text": "immediately"}, {"text": "bid"}, {"text": "up"}, {"text": "shares"}, {"text": "of"}, {"text": "Connecticut"}, {"text": "banks"}, {"text": "on"}, {"text": "the"}, {"text": "news"}, {"text": "."}, {"text": "``"}, {"text": "A"}, {"text": "lot"}, {"text": "of"}, {"text": "the"}, {"text": "stocks"}, {"text": "that"}, {"text": "*T*-117"}, {"text": "have"}, {"text": "been"}, {"text": "under"}, {"text": "water"}, {"text": "finally"}, {"text": "saw"}, {"text": "a"}, {"text": "reason"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "uptick"}, {"text": "*T*-1"}, {"text": ","}, {"text": "''"}, {"text": "said"}, {"text": "*T*-2"}, {"text": "George"}, {"text": "Jennison"}, {"text": ","}, {"text": "head"}, {"text": "trader"}, {"text": "of"}, {"text": "banking"}, {"text": "issues"}, {"text": "in"}, {"text": "Shearson"}, {"text": "Lehman"}, {"text": "Hutton"}, {"text": "'s"}, {"text": "OTC"}, {"text": "department"}, {"text": "."}, {"text": "The"}, {"text": "biggest"}, {"text": "beneficiary"}, {"text": "was"}, {"text": "Northeast"}, {"text": "Bancorp"}, {"text": ","}, {"text": "which"}, {"text": "*T*-118"}, {"text": "surged"}, {"text": "7"}, {"text": "3\\/4"}, {"text": "to"}, {"text": "69"}, {"text": "."}, {"text": "The"}, {"text": "Stamford"}, {"text": ","}, {"text": "Conn."}, {"text": ","}, {"text": "concern"}, {"text": "has"}, {"text": "agreed"}, {"text": "to"}, {"text": "a"}, {"text": "buy-out"}, {"text": "by"}, {"text": "Bank"}, {"text": "of"}, {"text": "New"}, {"text": "York"}, {"text": "in"}, {"text": "a"}, {"text": "transaction"}, {"text": "with"}, {"text": "an"}, {"text": "indicated"}, {"text": "value"}, {"text": "of"}, {"text": "about"}, {"text": "$"}, {"text": "100"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": "that"}, {"text": "*T*-119"}, {"text": "expires"}, {"text": "next"}, {"text": "August"}, {"text": "."}, {"text": "Ed"}, {"text": "Macheski"}, {"text": ","}, {"text": "a"}, {"text": "Wilton"}, {"text": ","}, {"text": "Conn."}, {"text": ","}, {"text": "money"}, {"text": "manager"}, {"text": "who"}, {"text": "*T*-120"}, {"text": "follows"}, {"text": "bank"}, {"text": "stocks"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "announcement"}, {"text": "effectively"}, {"text": "gives"}, {"text": "the"}, {"text": "deal"}, {"text": "``"}, {"text": "the"}, {"text": "green"}, {"text": "light"}, {"text": "."}, {"text": "''"}, {"text": "Mr."}, {"text": "Jennison"}, {"text": "said"}, {"text": "0"}, {"text": "Northeast"}, {"text": "Bancorp"}, {"text": "also"}, {"text": "fared"}, {"text": "well"}, {"text": "because"}, {"text": "takeover"}, {"text": "stocks"}, {"text": "have"}, {"text": "returned"}, {"text": "to"}, {"text": "favor"}, {"text": "among"}, {"text": "investors"}, {"text": "."}, {"text": "Another"}, {"text": "OTC"}, {"text": "bank"}, {"text": "stock"}, {"text": "involved"}, {"text": "*"}, {"text": "in"}, {"text": "a"}, {"text": "buy-out"}, {"text": "deal"}, {"text": ","}, {"text": "First"}, {"text": "Constitution"}, {"text": "Financial"}, {"text": ","}, {"text": "was"}, {"text": "higher"}, {"text": "."}, {"text": "It"}, {"text": "rose"}, {"text": "7\\/8"}, {"text": "to"}, {"text": "18"}, {"text": "1\\/4"}, {"text": "."}, {"text": "First"}, {"text": "Constitution"}, {"text": "has"}, {"text": "signed"}, {"text": "a"}, {"text": "merger"}, {"text": "agreement"}, {"text": "*ICH*-1"}, {"text": "with"}, {"text": "WFRR"}, {"text": "L.P."}, {"text": "and"}, {"text": "GHKM"}, {"text": "Corp."}, {"text": ","}, {"text": "under"}, {"text": "which"}, {"text": "all"}, {"text": "of"}, {"text": "its"}, {"text": "common"}, {"text": "shares"}, {"text": "will"}, {"text": "be"}, {"text": "acquired"}, {"text": "*-3"}, {"text": "for"}, {"text": "$"}, {"text": "25"}, {"text": "*U*"}, {"text": "each"}, {"text": ","}, {"text": "or"}, {"text": "$"}, {"text": "273.5"}, {"text": "million"}, {"text": "*U*"}, {"text": "*T*-2"}, {"text": "."}, {"text": "Among"}, {"text": "other"}, {"text": "Connecticut"}, {"text": "banks"}, {"text": "whose"}, {"text": "shares"}, {"text": "*T*-121"}, {"text": "trade"}, {"text": "in"}, {"text": "the"}, {"text": "OTC"}, {"text": "market"}, {"text": ","}, {"text": "Society"}, {"text": "for"}, {"text": "Savings"}, {"text": "Bancorp"}, {"text": ","}, {"text": "based"}, {"text": "*"}, {"text": "in"}, {"text": "Hartford"}, {"text": ","}, {"text": "saw"}, {"text": "its"}, {"text": "stock"}, {"text": "rise"}, {"text": "1"}, {"text": "3\\/4"}, {"text": "to"}, {"text": "18"}, {"text": "1\\/4"}, {"text": "."}, {"text": "Centerbank"}, {"text": "added"}, {"text": "5\\/8"}, {"text": "to"}, {"text": "8"}, {"text": "3\\/4"}, {"text": ";"}, {"text": "shares"}, {"text": "of"}, {"text": "NESB"}, {"text": ","}, {"text": "a"}, {"text": "New"}, {"text": "London-based"}, {"text": "bank"}, {"text": "holding"}, {"text": "company"}, {"text": ","}, {"text": "rose"}, {"text": "5\\/8"}, {"text": "to"}, {"text": "5"}, {"text": "7\\/8"}, {"text": "."}, {"text": "Among"}, {"text": "other"}, {"text": "banking"}, {"text": "issues"}, {"text": ","}, {"text": "Pennview"}, {"text": "Savings"}, {"text": "Association"}, {"text": "leapt"}, {"text": "more"}, {"text": "than"}, {"text": "44"}, {"text": "%"}, {"text": "with"}, {"text": "a"}, {"text": "gain"}, {"text": "of"}, {"text": "6"}, {"text": "5\\/8"}, {"text": "to"}, {"text": "21"}, {"text": "5\\/8"}, {"text": "."}, {"text": "The"}, {"text": "Pennsylvania"}, {"text": "bank"}, {"text": "agreed"}, {"text": "*-1"}, {"text": "to"}, {"text": "be"}, {"text": "acquired"}, {"text": "*-2"}, {"text": "in"}, {"text": "a"}, {"text": "merger"}, {"text": "with"}, {"text": "Univest"}, {"text": "Corp."}, {"text": "of"}, {"text": "Pennsylvania"}, {"text": "for"}, {"text": "$"}, {"text": "25.50"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": "."}, {"text": "Valley"}, {"text": "Federal"}, {"text": "Savings"}, {"text": "&"}, {"text": "Loan"}, {"text": ","}, {"text": "a"}, {"text": "California"}, {"text": "thrift"}, {"text": "issue"}, {"text": ","}, {"text": "gained"}, {"text": "1"}, {"text": "to"}, {"text": "4"}, {"text": "1\\/4"}, {"text": "after"}, {"text": "*-1"}, {"text": "reporting"}, {"text": "a"}, {"text": "third-quarter"}, {"text": "loss"}, {"text": "of"}, {"text": "$"}, {"text": "70.7"}, {"text": "million"}, {"text": "*U*"}, {"text": "after"}, {"text": "an"}, {"text": "$"}, {"text": "89.9"}, {"text": "million"}, {"text": "*U*"}, {"text": "pretax"}, {"text": "charge"}, {"text": "mostly"}, {"text": "related"}, {"text": "to"}, {"text": "its"}, {"text": "mobile"}, {"text": "home"}, {"text": "financing"}, {"text": "unit"}, {"text": "."}, {"text": "Dan"}, {"text": "E."}, {"text": "Nelms"}, {"text": ","}, {"text": "Valley"}, {"text": "Federal"}, {"text": "'s"}, {"text": "president"}, {"text": "and"}, {"text": "chief"}, {"text": "executive"}, {"text": "officer"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "one-time"}, {"text": "charge"}, {"text": "substantially"}, {"text": "eliminates"}, {"text": "future"}, {"text": "losses"}, {"text": "associated"}, {"text": "*"}, {"text": "with"}, {"text": "the"}, {"text": "unit"}, {"text": "."}, {"text": "He"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "company"}, {"text": "'s"}, {"text": "core"}, {"text": "business"}, {"text": "remains"}, {"text": "strong"}, {"text": "."}, {"text": "He"}, {"text": "also"}, {"text": "said"}, {"text": "that"}, {"text": "after"}, {"text": "the"}, {"text": "charges"}, {"text": ","}, {"text": "and"}, {"text": "*-1"}, {"text": "``"}, {"text": "assuming"}, {"text": "no"}, {"text": "dramatic"}, {"text": "fluctuation"}, {"text": "in"}, {"text": "interest"}, {"text": "rates"}, {"text": ","}, {"text": "the"}, {"text": "company"}, {"text": "expects"}, {"text": "*-1"}, {"text": "to"}, {"text": "achieve"}, {"text": "near-record"}, {"text": "earnings"}, {"text": "in"}, {"text": "1990"}, {"text": "."}, {"text": "''"}, {"text": "Weisfield"}, {"text": "'s"}, {"text": "surged"}, {"text": "6"}, {"text": "3\\/4"}, {"text": "to"}, {"text": "55"}, {"text": "1\\/2"}, {"text": "and"}, {"text": "Ratners"}, {"text": "Group"}, {"text": "'s"}, {"text": "American"}, {"text": "depositary"}, {"text": "receipts"}, {"text": ","}, {"text": "or"}, {"text": "ADRs"}, {"text": ","}, {"text": "gained"}, {"text": "5\\/8"}, {"text": "to"}, {"text": "12"}, {"text": "1\\/4"}, {"text": "."}, {"text": "The"}, {"text": "two"}, {"text": "concerns"}, {"text": "said"}, {"text": "0"}, {"text": "they"}, {"text": "entered"}, {"text": "into"}, {"text": "a"}, {"text": "definitive"}, {"text": "merger"}, {"text": "agreement"}, {"text": "under"}, {"text": "which"}, {"text": "Ratners"}, {"text": "will"}, {"text": "begin"}, {"text": "a"}, {"text": "tender"}, {"text": "offer"}, {"text": "for"}, {"text": "all"}, {"text": "of"}, {"text": "Weisfield"}, {"text": "'s"}, {"text": "common"}, {"text": "shares"}, {"text": "for"}, {"text": "$"}, {"text": "57.50"}, {"text": "*U*"}, {"text": "each"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Also"}, {"text": "on"}, {"text": "the"}, {"text": "takeover"}, {"text": "front"}, {"text": ","}, {"text": "Jaguar"}, {"text": "'s"}, {"text": "ADRs"}, {"text": "rose"}, {"text": "1\\/4"}, {"text": "to"}, {"text": "13"}, {"text": "7\\/8"}, {"text": "on"}, {"text": "turnover"}, {"text": "of"}, {"text": "4.4"}, {"text": "million"}, {"text": "."}, {"text": "Since"}, {"text": "the"}, {"text": "British"}, {"text": "auto"}, {"text": "maker"}, {"text": "became"}, {"text": "a"}, {"text": "takeover"}, {"text": "target"}, {"text": "last"}, {"text": "month"}, {"text": ","}, {"text": "its"}, {"text": "ADRs"}, {"text": "have"}, {"text": "jumped"}, {"text": "about"}, {"text": "78"}, {"text": "%"}, {"text": "."}, {"text": "After"}, {"text": "troubled"}, {"text": "Heritage"}, {"text": "Media"}, {"text": "proposed"}, {"text": "*-1"}, {"text": "acquiring"}, {"text": "POP"}, {"text": "Radio"}, {"text": "in"}, {"text": "a"}, {"text": "stock"}, {"text": "swap"}, {"text": ","}, {"text": "POP"}, {"text": "Radio"}, {"text": "'s"}, {"text": "shares"}, {"text": "tumbled"}, {"text": "4"}, {"text": "to"}, {"text": "14"}, {"text": "3\\/4"}, {"text": "."}, {"text": "Heritage"}, {"text": "Media"}, {"text": ","}, {"text": "which"}, {"text": "already"}, {"text": "*T*-1"}, {"text": "owns"}, {"text": "about"}, {"text": "51"}, {"text": "%"}, {"text": "of"}, {"text": "POP"}, {"text": "Radio"}, {"text": ","}, {"text": "proposed"}, {"text": "*-2"}, {"text": "paying"}, {"text": "POP"}, {"text": "Radio"}, {"text": "shareholders"}, {"text": "with"}, {"text": "shares"}, {"text": "of"}, {"text": "a"}, {"text": "new"}, {"text": "class"}, {"text": "of"}, {"text": "Heritage"}, {"text": "Media"}, {"text": "preferred"}, {"text": "stock"}, {"text": "that"}, {"text": "*T*-122"}, {"text": "would"}, {"text": "be"}, {"text": "convertible"}, {"text": "into"}, {"text": "four"}, {"text": "shares"}, {"text": "of"}, {"text": "Heritage"}, {"text": "Media"}, {"text": "'s"}, {"text": "common"}, {"text": "."}, {"text": "Rally"}, {"text": "'s"}, {"text": "lost"}, {"text": "1"}, {"text": "3\\/4"}, {"text": "to"}, {"text": "21"}, {"text": "3\\/4"}, {"text": "."}, {"text": "The"}, {"text": "restaurant"}, {"text": "operator"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "has"}, {"text": "redeemed"}, {"text": "its"}, {"text": "rights"}, {"text": "issued"}, {"text": "*"}, {"text": "Monday"}, {"text": "under"}, {"text": "its"}, {"text": "shareholder"}, {"text": "rights"}, {"text": "plan"}, {"text": "."}, {"text": "The"}, {"text": "fast-food"}, {"text": "company"}, {"text": "said"}, {"text": "0"}, {"text": "its"}, {"text": "decision"}, {"text": "was"}, {"text": "based"}, {"text": "*-1"}, {"text": "on"}, {"text": "discussions"}, {"text": "with"}, {"text": "a"}, {"text": "shareholder"}, {"text": "group"}, {"text": ","}, {"text": "Giant"}, {"text": "Group"}, {"text": "Ltd."}, {"text": ","}, {"text": "``"}, {"text": "in"}, {"text": "an"}, {"text": "effort"}, {"text": "*"}, {"text": "to"}, {"text": "resolve"}, {"text": "certain"}, {"text": "disputes"}, {"text": "with"}, {"text": "the"}, {"text": "company"}, {"text": "."}, {"text": "''"}, {"text": "Giant"}, {"text": "Group"}, {"text": "is"}, {"text": "led"}, {"text": "*-1"}, {"text": "by"}, {"text": "three"}, {"text": "Rally"}, {"text": "'s"}, {"text": "directors"}, {"text": ","}, {"text": "Burt"}, {"text": "Sugarman"}, {"text": ","}, {"text": "James"}, {"text": "M."}, {"text": "Trotter"}, {"text": "III"}, {"text": "and"}, {"text": "William"}, {"text": "E."}, {"text": "Trotter"}, {"text": "II"}, {"text": ","}, {"text": "who"}, {"text": "earlier"}, {"text": "this"}, {"text": "month"}, {"text": "*T*-2"}, {"text": "indicated"}, {"text": "0"}, {"text": "they"}, {"text": "had"}, {"text": "a"}, {"text": "42.5"}, {"text": "%"}, {"text": "stake"}, {"text": "in"}, {"text": "Rally"}, {"text": "'s"}, {"text": "and"}, {"text": "planned"}, {"text": "*-3"}, {"text": "to"}, {"text": "seek"}, {"text": "a"}, {"text": "majority"}, {"text": "of"}, {"text": "seats"}, {"text": "on"}, {"text": "Rally"}, {"text": "'s"}, {"text": "nine-member"}, {"text": "board"}, {"text": "."}, {"text": "SCI"}, {"text": "Systems"}, {"text": "slipped"}, {"text": "7\\/8"}, {"text": "to"}, {"text": "10"}, {"text": "on"}, {"text": "volume"}, {"text": "of"}, {"text": "858,000"}, {"text": "shares"}, {"text": "."}, {"text": "The"}, {"text": "Huntsville"}, {"text": ","}, {"text": "Ala."}, {"text": ","}, {"text": "electronic"}, {"text": "products"}, {"text": "maker"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "expects"}, {"text": "*-1"}, {"text": "to"}, {"text": "post"}, {"text": "a"}, {"text": "``"}, {"text": "significant"}, {"text": "''"}, {"text": "loss"}, {"text": "for"}, {"text": "its"}, {"text": "fiscal"}, {"text": "first"}, {"text": "quarter"}, {"text": "ended"}, {"text": "Sept."}, {"text": "30"}, {"text": "."}, {"text": "In"}, {"text": "the"}, {"text": "year-earlier"}, {"text": "period"}, {"text": ","}, {"text": "SCI"}, {"text": "had"}, {"text": "net"}, {"text": "income"}, {"text": "of"}, {"text": "$"}, {"text": "4.8"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "23"}, {"text": "cents"}, {"text": "a"}, {"text": "share"}, {"text": ","}, {"text": "on"}, {"text": "revenue"}, {"text": "of"}, {"text": "$"}, {"text": "225.6"}, {"text": "million"}, {"text": "*U*"}, {"text": "."}, {"text": "The"}, {"text": "Internal"}, {"text": "Revenue"}, {"text": "Service"}, {"text": "has"}, {"text": "threatened"}, {"text": "criminal"}, {"text": "sanctions"}, {"text": "against"}, {"text": "lawyers"}, {"text": "who"}, {"text": "*T*-123"}, {"text": "fail"}, {"text": "*-1"}, {"text": "to"}, {"text": "report"}, {"text": "detailed"}, {"text": "information"}, {"text": "about"}, {"text": "clients"}, {"text": "who"}, {"text": "*T*-124"}, {"text": "pay"}, {"text": "them"}, {"text": "more"}, {"text": "than"}, {"text": "$"}, {"text": "10,000"}, {"text": "*U*"}, {"text": "in"}, {"text": "cash"}, {"text": "."}, {"text": "The"}, {"text": "warnings"}, {"text": ","}, {"text": "issued"}, {"text": "*"}, {"text": "to"}, {"text": "at"}, {"text": "least"}, {"text": "100"}, {"text": "criminal"}, {"text": "defense"}, {"text": "attorneys"}, {"text": "in"}, {"text": "several"}, {"text": "major"}, {"text": "cities"}, {"text": "in"}, {"text": "the"}, {"text": "last"}, {"text": "week"}, {"text": ","}, {"text": "have"}, {"text": "led"}, {"text": "to"}, {"text": "an"}, {"text": "outcry"}, {"text": "by"}, {"text": "members"}, {"text": "of"}, {"text": "the"}, {"text": "organized"}, {"text": "bar"}, {"text": ","}, {"text": "who"}, {"text": "*T*-125"}, {"text": "claim"}, {"text": "0"}, {"text": "the"}, {"text": "information"}, {"text": "is"}, {"text": "protected"}, {"text": "*-1"}, {"text": "by"}, {"text": "attorney-client"}, {"text": "privilege"}, {"text": "."}, {"text": "The"}, {"text": "IRS"}, {"text": "warnings"}, {"text": "stem"}, {"text": "from"}, {"text": "a"}, {"text": "1984"}, {"text": "law"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "requires"}, {"text": "anyone"}, {"text": "who"}, {"text": "*T*-126"}, {"text": "receives"}, {"text": "more"}, {"text": "than"}, {"text": "$"}, {"text": "10,000"}, {"text": "*U*"}, {"text": "in"}, {"text": "cash"}, {"text": "from"}, {"text": "a"}, {"text": "client"}, {"text": "or"}, {"text": "customer"}, {"text": "in"}, {"text": "one"}, {"text": "or"}, {"text": "more"}, {"text": "related"}, {"text": "transactions"}, {"text": "``"}, {"text": "in"}, {"text": "the"}, {"text": "course"}, {"text": "of"}, {"text": "trade"}, {"text": "or"}, {"text": "business"}, {"text": "''"}, {"text": "to"}, {"text": "report"}, {"text": "the"}, {"text": "payment"}, {"text": "on"}, {"text": "a"}, {"text": "document"}, {"text": "known"}, {"text": "*"}, {"text": "as"}, {"text": "Form"}, {"text": "8300"}, {"text": "."}, {"text": "The"}, {"text": "form"}, {"text": "asks"}, {"text": "for"}, {"text": "such"}, {"text": "details"}, {"text": "as"}, {"text": "the"}, {"text": "client"}, {"text": "'s"}, {"text": "name"}, {"text": ","}, {"text": "Social"}, {"text": "Security"}, {"text": "number"}, {"text": ","}, {"text": "passport"}, {"text": "number"}, {"text": "and"}, {"text": "details"}, {"text": "about"}, {"text": "the"}, {"text": "services"}, {"text": "provided"}, {"text": "*"}, {"text": "for"}, {"text": "the"}, {"text": "payment"}, {"text": "."}, {"text": "Failure"}, {"text": "*"}, {"text": "to"}, {"text": "complete"}, {"text": "the"}, {"text": "form"}, {"text": "had"}, {"text": "been"}, {"text": "punishable"}, {"text": "as"}, {"text": "a"}, {"text": "misdemeanor"}, {"text": "until"}, {"text": "last"}, {"text": "November"}, {"text": ","}, {"text": "when"}, {"text": "Congress"}, {"text": "determined"}, {"text": "that"}, {"text": "the"}, {"text": "crime"}, {"text": "was"}, {"text": "a"}, {"text": "felony"}, {"text": "punishable"}, {"text": "by"}, {"text": "up"}, {"text": "to"}, {"text": "10"}, {"text": "years"}, {"text": "in"}, {"text": "prison"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Attorneys"}, {"text": "have"}, {"text": "argued"}, {"text": "since"}, {"text": "1985"}, {"text": ","}, {"text": "when"}, {"text": "the"}, {"text": "law"}, {"text": "took"}, {"text": "effect"}, {"text": "*T*-1"}, {"text": ","}, {"text": "that"}, {"text": "they"}, {"text": "can"}, {"text": "not"}, {"text": "provide"}, {"text": "information"}, {"text": "about"}, {"text": "clients"}, {"text": "who"}, {"text": "*T*-127"}, {"text": "do"}, {"text": "n't"}, {"text": "wish"}, {"text": "their"}, {"text": "identities"}, {"text": "to"}, {"text": "be"}, {"text": "known"}, {"text": "*-3"}, {"text": "."}, {"text": "Many"}, {"text": "attorneys"}, {"text": "have"}, {"text": "returned"}, {"text": "incomplete"}, {"text": "forms"}, {"text": "to"}, {"text": "the"}, {"text": "IRS"}, {"text": "in"}, {"text": "recent"}, {"text": "years"}, {"text": ","}, {"text": "*-1"}, {"text": "citing"}, {"text": "attorney-client"}, {"text": "privilege"}, {"text": "."}, {"text": "Until"}, {"text": "last"}, {"text": "week"}, {"text": ","}, {"text": "the"}, {"text": "IRS"}, {"text": "rarely"}, {"text": "acted"}, {"text": "on"}, {"text": "the"}, {"text": "incomplete"}, {"text": "forms"}, {"text": "."}, {"text": "``"}, {"text": "This"}, {"text": "form"}, {"text": "forces"}, {"text": "a"}, {"text": "lawyer"}, {"text": "to"}, {"text": "become"}, {"text": ","}, {"text": "in"}, {"text": "effect"}, {"text": ","}, {"text": "a"}, {"text": "witness"}, {"text": "against"}, {"text": "his"}, {"text": "client"}, {"text": ","}, {"text": "''"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "Neal"}, {"text": "R."}, {"text": "Sonnett"}, {"text": ","}, {"text": "president"}, {"text": "of"}, {"text": "the"}, {"text": "National"}, {"text": "Association"}, {"text": "of"}, {"text": "Criminal"}, {"text": "Defense"}, {"text": "Lawyers"}, {"text": "."}, {"text": "``"}, {"text": "The"}, {"text": "IRS"}, {"text": "is"}, {"text": "asking"}, {"text": "lawyers"}, {"text": "*-1"}, {"text": "to"}, {"text": "red-flag"}, {"text": "a"}, {"text": "criminal"}, {"text": "problem"}, {"text": "to"}, {"text": "the"}, {"text": "government"}, {"text": ","}, {"text": "''"}, {"text": "added"}, {"text": "Mr."}, {"text": "Sonnett"}, {"text": ","}, {"text": "a"}, {"text": "Miami"}, {"text": "lawyer"}, {"text": "who"}, {"text": "*T*-128"}, {"text": "has"}, {"text": "heard"}, {"text": "from"}, {"text": "dozens"}, {"text": "of"}, {"text": "attorneys"}, {"text": "who"}, {"text": "*T*-129"}, {"text": "received"}, {"text": "letters"}, {"text": "in"}, {"text": "recent"}, {"text": "days"}, {"text": "and"}, {"text": "has"}, {"text": "himself"}, {"text": "received"}, {"text": "the"}, {"text": "computer-generated"}, {"text": "IRS"}, {"text": "forms"}, {"text": "sent"}, {"text": "*"}, {"text": "by"}, {"text": "certified"}, {"text": "mail"}, {"text": "."}, {"text": "Mr."}, {"text": "Sonnett"}, {"text": "said"}, {"text": "that"}, {"text": "clients"}, {"text": "who"}, {"text": "*T*-130"}, {"text": "pay"}, {"text": "cash"}, {"text": "may"}, {"text": "include"}, {"text": "alleged"}, {"text": "drug"}, {"text": "dealers"}, {"text": "who"}, {"text": "*T*-131"}, {"text": "do"}, {"text": "n't"}, {"text": "have"}, {"text": "domestic"}, {"text": "bank"}, {"text": "accounts"}, {"text": "."}, {"text": "These"}, {"text": "individuals"}, {"text": "may"}, {"text": "not"}, {"text": "necessarily"}, {"text": "be"}, {"text": "under"}, {"text": "investigation"}, {"text": "when"}, {"text": "they"}, {"text": "hire"}, {"text": "lawyers"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Mr."}, {"text": "Sonnett"}, {"text": "said"}, {"text": "0"}, {"text": "there"}, {"text": "also"}, {"text": "may"}, {"text": "be"}, {"text": "other"}, {"text": "circumstances"}, {"text": "under"}, {"text": "which"}, {"text": "individuals"}, {"text": "would"}, {"text": "n't"}, {"text": "want"}, {"text": "the"}, {"text": "government"}, {"text": "to"}, {"text": "know"}, {"text": "0"}, {"text": "they"}, {"text": "had"}, {"text": "retained"}, {"text": "criminal"}, {"text": "defense"}, {"text": "lawyers"}, {"text": "*T*-1"}, {"text": "."}, {"text": "*"}, {"text": "Filling"}, {"text": "out"}, {"text": "detailed"}, {"text": "forms"}, {"text": "about"}, {"text": "these"}, {"text": "individuals"}, {"text": "would"}, {"text": "tip"}, {"text": "the"}, {"text": "IRS"}, {"text": "off"}, {"text": "and"}, {"text": "spark"}, {"text": "action"}, {"text": "against"}, {"text": "the"}, {"text": "clients"}, {"text": ","}, {"text": "he"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "The"}, {"text": "defense"}, {"text": "lawyers"}, {"text": "'"}, {"text": "group"}, {"text": "formed"}, {"text": "a"}, {"text": "task"}, {"text": "force"}, {"text": "*ICH*-1"}, {"text": "*ICH*-3"}, {"text": "this"}, {"text": "week"}, {"text": ","}, {"text": "chaired"}, {"text": "*"}, {"text": "by"}, {"text": "New"}, {"text": "York"}, {"text": "attorney"}, {"text": "Gerald"}, {"text": "Lefcourt"}, {"text": ","}, {"text": "0"}, {"text": "*T*-2"}, {"text": "to"}, {"text": "deal"}, {"text": "with"}, {"text": "the"}, {"text": "matter"}, {"text": "."}, {"text": "The"}, {"text": "American"}, {"text": "Bar"}, {"text": "Association"}, {"text": "'s"}, {"text": "House"}, {"text": "of"}, {"text": "Delegates"}, {"text": "passed"}, {"text": "a"}, {"text": "resolution"}, {"text": "*ICH*-1"}, {"text": "in"}, {"text": "1985"}, {"text": "condemning"}, {"text": "the"}, {"text": "IRS"}, {"text": "reporting"}, {"text": "requirement"}, {"text": "."}, {"text": "Michael"}, {"text": "Ross"}, {"text": ","}, {"text": "a"}, {"text": "New"}, {"text": "York"}, {"text": "lawyer"}, {"text": "who"}, {"text": "*T*-132"}, {"text": "heads"}, {"text": "the"}, {"text": "ABA"}, {"text": "'s"}, {"text": "grand"}, {"text": "jury"}, {"text": "committee"}, {"text": ","}, {"text": "said"}, {"text": "that"}, {"text": "lawyers"}, {"text": "are"}, {"text": "prohibited"}, {"text": "*-1"}, {"text": "by"}, {"text": "the"}, {"text": "ABA"}, {"text": "'s"}, {"text": "code"}, {"text": "of"}, {"text": "ethics"}, {"text": "from"}, {"text": "*-1"}, {"text": "disclosing"}, {"text": "information"}, {"text": "about"}, {"text": "a"}, {"text": "client"}, {"text": "except"}, {"text": "where"}, {"text": "a"}, {"text": "court"}, {"text": "orders"}, {"text": "it"}, {"text": "*T*-3"}, {"text": "or"}, {"text": "*-1"}, {"text": "to"}, {"text": "prevent"}, {"text": "the"}, {"text": "client"}, {"text": "from"}, {"text": "*-4"}, {"text": "committing"}, {"text": "a"}, {"text": "criminal"}, {"text": "act"}, {"text": "that"}, {"text": "*T*-2"}, {"text": "could"}, {"text": "result"}, {"text": "in"}, {"text": "death"}, {"text": "."}, {"text": "Mr."}, {"text": "Ross"}, {"text": "said"}, {"text": "0"}, {"text": "he"}, {"text": "met"}, {"text": "with"}, {"text": "officials"}, {"text": "of"}, {"text": "the"}, {"text": "IRS"}, {"text": "and"}, {"text": "the"}, {"text": "Justice"}, {"text": "Department"}, {"text": ","}, {"text": "which"}, {"text": "*T*-133"}, {"text": "would"}, {"text": "bring"}, {"text": "any"}, {"text": "enforcement"}, {"text": "actions"}, {"text": "against"}, {"text": "taxpayers"}, {"text": ","}, {"text": "*-1"}, {"text": "to"}, {"text": "discuss"}, {"text": "the"}, {"text": "issue"}, {"text": "last"}, {"text": "May"}, {"text": "."}, {"text": "At"}, {"text": "that"}, {"text": "meeting"}, {"text": ","}, {"text": "he"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": ","}, {"text": "the"}, {"text": "Justice"}, {"text": "Department"}, {"text": "assured"}, {"text": "him"}, {"text": "that"}, {"text": "enforcement"}, {"text": "procedures"}, {"text": "would"}, {"text": "n't"}, {"text": "be"}, {"text": "threatened"}, {"text": "*-2"}, {"text": "against"}, {"text": "attorneys"}, {"text": "without"}, {"text": "further"}, {"text": "review"}, {"text": "and"}, {"text": "advance"}, {"text": "notice"}, {"text": "."}, {"text": "Mr."}, {"text": "Ross"}, {"text": "said"}, {"text": "0"}, {"text": "IRS"}, {"text": "officials"}, {"text": "opposed"}, {"text": "the"}, {"text": "Justice"}, {"text": "Department"}, {"text": "'s"}, {"text": "moderate"}, {"text": "stance"}, {"text": "on"}, {"text": "the"}, {"text": "matter"}, {"text": "."}, {"text": "But"}, {"text": "in"}, {"text": "the"}, {"text": "letters"}, {"text": "sent"}, {"text": "*"}, {"text": "in"}, {"text": "recent"}, {"text": "days"}, {"text": ","}, {"text": "Christopher"}, {"text": "J."}, {"text": "Lezovich"}, {"text": "of"}, {"text": "the"}, {"text": "IRS"}, {"text": "computing"}, {"text": "center"}, {"text": "in"}, {"text": "Detroit"}, {"text": ","}, {"text": "told"}, {"text": "attorneys"}, {"text": "that"}, {"text": "``"}, {"text": "*"}, {"text": "failing"}, {"text": "*-1"}, {"text": "to"}, {"text": "voluntarily"}, {"text": "submit"}, {"text": "the"}, {"text": "requested"}, {"text": "information"}, {"text": "could"}, {"text": "result"}, {"text": "in"}, {"text": "summons"}, {"text": "enforcement"}, {"text": "action"}, {"text": "being"}, {"text": "initiated"}, {"text": "*-2"}, {"text": "."}, {"text": "''"}, {"text": "In"}, {"text": "some"}, {"text": "cases"}, {"text": ","}, {"text": "the"}, {"text": "IRS"}, {"text": "asked"}, {"text": "for"}, {"text": "information"}, {"text": "dating"}, {"text": "back"}, {"text": "to"}, {"text": "forms"}, {"text": "0"}, {"text": "it"}, {"text": "received"}, {"text": "*T*-1"}, {"text": "in"}, {"text": "1985"}, {"text": "."}, {"text": "A"}, {"text": "spokesman"}, {"text": "for"}, {"text": "the"}, {"text": "IRS"}, {"text": "confirmed"}, {"text": "that"}, {"text": "``"}, {"text": "there"}, {"text": "has"}, {"text": "been"}, {"text": "correspondence"}, {"text": "mailed"}, {"text": "*"}, {"text": "about"}, {"text": "incomplete"}, {"text": "8300s"}, {"text": ","}, {"text": "''"}, {"text": "but"}, {"text": "he"}, {"text": "declined"}, {"text": "*-1"}, {"text": "to"}, {"text": "say"}, {"text": "why"}, {"text": "the"}, {"text": "letters"}, {"text": "were"}, {"text": "sent"}, {"text": "*-2"}, {"text": "to"}, {"text": "lawyers"}, {"text": "now"}, {"text": "."}, {"text": "Individuals"}, {"text": "familiar"}, {"text": "with"}, {"text": "the"}, {"text": "Justice"}, {"text": "Department"}, {"text": "'s"}, {"text": "policy"}, {"text": "said"}, {"text": "that"}, {"text": "Justice"}, {"text": "officials"}, {"text": "had"}, {"text": "n't"}, {"text": "any"}, {"text": "knowledge"}, {"text": "of"}, {"text": "the"}, {"text": "IRS"}, {"text": "'s"}, {"text": "actions"}, {"text": "in"}, {"text": "the"}, {"text": "last"}, {"text": "week"}, {"text": "."}, {"text": "Lawyers"}, {"text": "worry"}, {"text": "that"}, {"text": "if"}, {"text": "they"}, {"text": "provide"}, {"text": "information"}, {"text": "about"}, {"text": "clients"}, {"text": ","}, {"text": "that"}, {"text": "data"}, {"text": "could"}, {"text": "quickly"}, {"text": "end"}, {"text": "up"}, {"text": "in"}, {"text": "the"}, {"text": "hands"}, {"text": "of"}, {"text": "prosecutors"}, {"text": "."}, {"text": "Prosecutors"}, {"text": "need"}, {"text": "court"}, {"text": "permission"}, {"text": "*-1"}, {"text": "to"}, {"text": "obtain"}, {"text": "the"}, {"text": "tax"}, {"text": "returns"}, {"text": "of"}, {"text": "an"}, {"text": "individual"}, {"text": "or"}, {"text": "a"}, {"text": "business"}, {"text": "."}, {"text": "But"}, {"text": "they"}, {"text": "have"}, {"text": "obtained"}, {"text": "8300"}, {"text": "forms"}, {"text": "without"}, {"text": "court"}, {"text": "permission"}, {"text": "and"}, {"text": "used"}, {"text": "the"}, {"text": "information"}, {"text": "*-1"}, {"text": "to"}, {"text": "help"}, {"text": "develop"}, {"text": "criminal"}, {"text": "cases"}, {"text": "."}, {"text": "Some"}, {"text": "criminal"}, {"text": "lawyers"}, {"text": "speculated"}, {"text": "that"}, {"text": "the"}, {"text": "IRS"}, {"text": "was"}, {"text": "sending"}, {"text": "the"}, {"text": "letters"}, {"text": "*-1"}, {"text": "to"}, {"text": "test"}, {"text": "the"}, {"text": "issue"}, {"text": "."}, {"text": "In"}, {"text": "a"}, {"text": "number"}, {"text": "of"}, {"text": "recent"}, {"text": "cases"}, {"text": ","}, {"text": "federal"}, {"text": "courts"}, {"text": "have"}, {"text": "refused"}, {"text": "*-1"}, {"text": "to"}, {"text": "recognize"}, {"text": "attorneys"}, {"text": "'"}, {"text": "assertions"}, {"text": "that"}, {"text": "information"}, {"text": "relating"}, {"text": "to"}, {"text": "fees"}, {"text": "from"}, {"text": "clients"}, {"text": "should"}, {"text": "be"}, {"text": "confidential"}, {"text": "."}, {"text": "THE"}, {"text": "WAR"}, {"text": "OVER"}, {"text": "FEDERAL"}, {"text": "JUDICIAL"}, {"text": "SALARIES"}, {"text": "takes"}, {"text": "a"}, {"text": "victim"}, {"text": "."}, {"text": "Often"}, {"text": ","}, {"text": "judges"}, {"text": "ease"}, {"text": "into"}, {"text": "more"}, {"text": "lucrative"}, {"text": "private"}, {"text": "practice"}, {"text": "with"}, {"text": "little"}, {"text": "fanfare"}, {"text": ","}, {"text": "but"}, {"text": "not"}, {"text": "federal"}, {"text": "Judge"}, {"text": "Raul"}, {"text": "A."}, {"text": "Ramirez"}, {"text": "in"}, {"text": "Sacramento"}, {"text": ","}, {"text": "Calif"}, {"text": "."}, {"text": "On"}, {"text": "Tuesday"}, {"text": ","}, {"text": "the"}, {"text": "judge"}, {"text": "called"}, {"text": "a"}, {"text": "news"}, {"text": "conference"}, {"text": "*-1"}, {"text": "to"}, {"text": "say"}, {"text": "0"}, {"text": "he"}, {"text": "was"}, {"text": "quitting"}, {"text": "*"}, {"text": "effective"}, {"text": "Dec."}, {"text": "31"}, {"text": "*-2"}, {"text": "to"}, {"text": "join"}, {"text": "a"}, {"text": "San"}, {"text": "Francisco"}, {"text": "law"}, {"text": "firm"}, {"text": "."}, {"text": "The"}, {"text": "reason"}, {"text": ":"}, {"text": "the"}, {"text": "refusal"}, {"text": "*ICH*-1"}, {"text": "of"}, {"text": "Congress"}, {"text": "*"}, {"text": "to"}, {"text": "give"}, {"text": "federal"}, {"text": "judges"}, {"text": "a"}, {"text": "raise"}, {"text": "."}, {"text": "``"}, {"text": "A"}, {"text": "couple"}, {"text": "of"}, {"text": "my"}, {"text": "law"}, {"text": "clerks"}, {"text": "were"}, {"text": "going"}, {"text": "*-1"}, {"text": "to"}, {"text": "pass"}, {"text": "me"}, {"text": "in"}, {"text": "three"}, {"text": "or"}, {"text": "four"}, {"text": "years"}, {"text": ","}, {"text": "and"}, {"text": "I"}, {"text": "was"}, {"text": "afraid"}, {"text": "0"}, {"text": "I"}, {"text": "was"}, {"text": "going"}, {"text": "*-2"}, {"text": "to"}, {"text": "have"}, {"text": "*-3"}, {"text": "to"}, {"text": "ask"}, {"text": "them"}, {"text": "for"}, {"text": "a"}, {"text": "loan"}, {"text": ","}, {"text": "''"}, {"text": "the"}, {"text": "judge"}, {"text": "quipped"}, {"text": "*T*-4"}, {"text": "in"}, {"text": "an"}, {"text": "interview"}, {"text": "."}, {"text": "Federal"}, {"text": "judges"}, {"text": "make"}, {"text": "$"}, {"text": "89,500"}, {"text": "*U*"}, {"text": "annually"}, {"text": ";"}, {"text": "in"}, {"text": "February"}, {"text": ","}, {"text": "Congress"}, {"text": "rejected"}, {"text": "a"}, {"text": "bill"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "would"}, {"text": "have"}, {"text": "increased"}, {"text": "their"}, {"text": "pay"}, {"text": "by"}, {"text": "50"}, {"text": "%"}, {"text": "."}, {"text": "Judge"}, {"text": "Ramirez"}, {"text": ","}, {"text": "44"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "*EXP*-3"}, {"text": "is"}, {"text": "unjust"}, {"text": "for"}, {"text": "judges"}, {"text": "to"}, {"text": "make"}, {"text": "what"}, {"text": "they"}, {"text": "do"}, {"text": "*?*"}, {"text": "*T*-2"}, {"text": "."}, {"text": "``"}, {"text": "Judges"}, {"text": "are"}, {"text": "not"}, {"text": "getting"}, {"text": "what"}, {"text": "they"}, {"text": "deserve"}, {"text": "*T*-1"}, {"text": "."}, {"text": "You"}, {"text": "look"}, {"text": "around"}, {"text": "at"}, {"text": "professional"}, {"text": "ballplayers"}, {"text": "or"}, {"text": "accountants"}, {"text": "..."}, {"text": "and"}, {"text": "nobody"}, {"text": "blinks"}, {"text": "an"}, {"text": "eye"}, {"text": "."}, {"text": "When"}, {"text": "you"}, {"text": "become"}, {"text": "a"}, {"text": "federal"}, {"text": "judge"}, {"text": "*T*-1"}, {"text": ","}, {"text": "all"}, {"text": "of"}, {"text": "a"}, {"text": "sudden"}, {"text": "you"}, {"text": "are"}, {"text": "relegated"}, {"text": "*-2"}, {"text": "to"}, {"text": "a"}, {"text": "paltry"}, {"text": "sum"}, {"text": "."}, {"text": "''"}, {"text": "At"}, {"text": "his"}, {"text": "new"}, {"text": "job"}, {"text": ","}, {"text": "as"}, {"text": "partner"}, {"text": "in"}, {"text": "charge"}, {"text": "of"}, {"text": "federal"}, {"text": "litigation"}, {"text": "in"}, {"text": "the"}, {"text": "Sacramento"}, {"text": "office"}, {"text": "of"}, {"text": "Orrick"}, {"text": ","}, {"text": "Herrington"}, {"text": "&"}, {"text": "Sutcliffe"}, {"text": ","}, {"text": "he"}, {"text": "will"}, {"text": "make"}, {"text": "out"}, {"text": "much"}, {"text": "better"}, {"text": "."}, {"text": "The"}, {"text": "judge"}, {"text": "declined"}, {"text": "*-1"}, {"text": "to"}, {"text": "discuss"}, {"text": "his"}, {"text": "salary"}, {"text": "in"}, {"text": "detail"}, {"text": ","}, {"text": "but"}, {"text": "said"}, {"text": ":"}, {"text": "``"}, {"text": "I"}, {"text": "'m"}, {"text": "going"}, {"text": "*-2"}, {"text": "to"}, {"text": "be"}, {"text": "a"}, {"text": "high-priced"}, {"text": "lawyer"}, {"text": "."}, {"text": "''"}, {"text": "DOONESBURY"}, {"text": "CREATOR'S"}, {"text": "UNION"}, {"text": "TROUBLES"}, {"text": "are"}, {"text": "no"}, {"text": "laughing"}, {"text": "matter"}, {"text": "."}, {"text": "Cartoonist"}, {"text": "Garry"}, {"text": "Trudeau"}, {"text": "is"}, {"text": "suing"}, {"text": "the"}, {"text": "Writers"}, {"text": "Guild"}, {"text": "of"}, {"text": "America"}, {"text": "East"}, {"text": "for"}, {"text": "$"}, {"text": "11"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "*-1"}, {"text": "alleging"}, {"text": "0"}, {"text": "it"}, {"text": "mounted"}, {"text": "a"}, {"text": "``"}, {"text": "campaign"}, {"text": "*"}, {"text": "to"}, {"text": "harass"}, {"text": "and"}, {"text": "punish"}, {"text": "''"}, {"text": "him"}, {"text": "for"}, {"text": "*"}, {"text": "crossing"}, {"text": "a"}, {"text": "screenwriters"}, {"text": "'"}, {"text": "picket"}, {"text": "line"}, {"text": "."}, {"text": "The"}, {"text": "dispute"}, {"text": "involves"}, {"text": "Darkhorse"}, {"text": "Productions"}, {"text": "Inc."}, {"text": ","}, {"text": "a"}, {"text": "TV"}, {"text": "production"}, {"text": "company"}, {"text": "in"}, {"text": "which"}, {"text": "Mr."}, {"text": "Trudeau"}, {"text": "is"}, {"text": "a"}, {"text": "co-owner"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Mr."}, {"text": "Trudeau"}, {"text": ","}, {"text": "a"}, {"text": "Writers"}, {"text": "Guild"}, {"text": "member"}, {"text": ","}, {"text": "also"}, {"text": "was"}, {"text": "employed"}, {"text": "*-1"}, {"text": "as"}, {"text": "a"}, {"text": "writer"}, {"text": "for"}, {"text": "Darkhorse"}, {"text": ","}, {"text": "which"}, {"text": "*T*-134"}, {"text": "was"}, {"text": "covered"}, {"text": "*-2"}, {"text": "by"}, {"text": "a"}, {"text": "guild"}, {"text": "collective-bargaining"}, {"text": "agreement"}, {"text": "."}, {"text": "The"}, {"text": "guild"}, {"text": "began"}, {"text": "a"}, {"text": "strike"}, {"text": "against"}, {"text": "the"}, {"text": "TV"}, {"text": "and"}, {"text": "movie"}, {"text": "industry"}, {"text": "in"}, {"text": "March"}, {"text": "1988"}, {"text": "."}, {"text": "In"}, {"text": "his"}, {"text": "lawsuit"}, {"text": ","}, {"text": "Mr."}, {"text": "Trudeau"}, {"text": "says"}, {"text": "0"}, {"text": "the"}, {"text": "strike"}, {"text": "illegally"}, {"text": "included"}, {"text": "Darkhorse"}, {"text": ","}, {"text": "and"}, {"text": "the"}, {"text": "cartoonist"}, {"text": "refused"}, {"text": "*-1"}, {"text": "to"}, {"text": "honor"}, {"text": "the"}, {"text": "strike"}, {"text": "against"}, {"text": "the"}, {"text": "company"}, {"text": "."}, {"text": "A"}, {"text": "spokesman"}, {"text": "for"}, {"text": "the"}, {"text": "guild"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "union"}, {"text": "'s"}, {"text": "lawyers"}, {"text": "are"}, {"text": "reviewing"}, {"text": "the"}, {"text": "suit"}, {"text": "."}, {"text": "He"}, {"text": "said"}, {"text": "0"}, {"text": "disciplinary"}, {"text": "proceedings"}, {"text": "are"}, {"text": "confidential"}, {"text": "and"}, {"text": "declined"}, {"text": "*-1"}, {"text": "to"}, {"text": "comment"}, {"text": "on"}, {"text": "whether"}, {"text": "any"}, {"text": "are"}, {"text": "being"}, {"text": "held"}, {"text": "*-2"}, {"text": "against"}, {"text": "Mr."}, {"text": "Trudeau"}, {"text": "."}, {"text": "Mr."}, {"text": "Trudeau"}, {"text": "'s"}, {"text": "attorney"}, {"text": ","}, {"text": "Norman"}, {"text": "K."}, {"text": "Samnick"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "harassment"}, {"text": "consists"}, {"text": "mainly"}, {"text": "of"}, {"text": "the"}, {"text": "guild"}, {"text": "'s"}, {"text": "year-long"}, {"text": "threats"}, {"text": "of"}, {"text": "disciplinary"}, {"text": "action"}, {"text": "."}, {"text": "Mr."}, {"text": "Samnick"}, {"text": "said"}, {"text": "0"}, {"text": "a"}, {"text": "guild"}, {"text": "disciplinary"}, {"text": "hearing"}, {"text": "is"}, {"text": "scheduled"}, {"text": "*-1"}, {"text": "next"}, {"text": "Monday"}, {"text": "in"}, {"text": "New"}, {"text": "York"}, {"text": "."}, {"text": "Mr."}, {"text": "Samnick"}, {"text": ","}, {"text": "who"}, {"text": "*T*-135"}, {"text": "will"}, {"text": "go"}, {"text": "before"}, {"text": "the"}, {"text": "disciplinary"}, {"text": "panel"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "proceedings"}, {"text": "are"}, {"text": "unfair"}, {"text": "and"}, {"text": "that"}, {"text": "any"}, {"text": "punishment"}, {"text": "from"}, {"text": "the"}, {"text": "guild"}, {"text": "would"}, {"text": "be"}, {"text": "unjustified"}, {"text": "."}, {"text": "In"}, {"text": "addition"}, {"text": "to"}, {"text": "the"}, {"text": "damages"}, {"text": ","}, {"text": "the"}, {"text": "suit"}, {"text": "seeks"}, {"text": "a"}, {"text": "court"}, {"text": "order"}, {"text": "preventing"}, {"text": "the"}, {"text": "guild"}, {"text": "from"}, {"text": "*-2"}, {"text": "punishing"}, {"text": "*RNR*-1"}, {"text": "or"}, {"text": "retaliating"}, {"text": "against"}, {"text": "*RNR*-1"}, {"text": "Mr."}, {"text": "Trudeau"}, {"text": "."}, {"text": "ABORTION"}, {"text": "RULING"}, {"text": "UPHELD"}, {"text": "*-1"}, {"text": ":"}, {"text": "A"}, {"text": "federal"}, {"text": "appeals"}, {"text": "court"}, {"text": "upheld"}, {"text": "a"}, {"text": "lower"}, {"text": "court"}, {"text": "ruling"}, {"text": "that"}, {"text": "the"}, {"text": "U.S."}, {"text": "can"}, {"text": "bar"}, {"text": "the"}, {"text": "use"}, {"text": "of"}, {"text": "federal"}, {"text": "funds"}, {"text": "for"}, {"text": "family-planning"}, {"text": "programs"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "include"}, {"text": "abortion-related"}, {"text": "services"}, {"text": "."}, {"text": "A"}, {"text": "Department"}, {"text": "of"}, {"text": "Health"}, {"text": "and"}, {"text": "Human"}, {"text": "Services"}, {"text": "rule"}, {"text": "adopted"}, {"text": "*"}, {"text": "in"}, {"text": "1988"}, {"text": "prohibits"}, {"text": "the"}, {"text": "use"}, {"text": "of"}, {"text": "so-called"}, {"text": "Title"}, {"text": "X"}, {"text": "funds"}, {"text": "for"}, {"text": "programs"}, {"text": "that"}, {"text": "*T*-136"}, {"text": "assist"}, {"text": "a"}, {"text": "woman"}, {"text": "in"}, {"text": "*-1"}, {"text": "obtaining"}, {"text": "an"}, {"text": "abortion"}, {"text": ","}, {"text": "such"}, {"text": "as"}, {"text": "abortion"}, {"text": "counseling"}, {"text": "and"}, {"text": "referrals"}, {"text": "."}, {"text": "The"}, {"text": "rule"}, {"text": "also"}, {"text": "prohibits"}, {"text": "funding"}, {"text": "for"}, {"text": "activities"}, {"text": "that"}, {"text": "``"}, {"text": "*T*-137"}, {"text": "encourage"}, {"text": ","}, {"text": "promote"}, {"text": "or"}, {"text": "advocate"}, {"text": "abortion"}, {"text": "."}, {"text": "''"}, {"text": "Title"}, {"text": "X"}, {"text": "funds"}, {"text": "are"}, {"text": "the"}, {"text": "single"}, {"text": "largest"}, {"text": "source"}, {"text": "of"}, {"text": "federal"}, {"text": "funding"}, {"text": "for"}, {"text": "family-planning"}, {"text": "services"}, {"text": ","}, {"text": "according"}, {"text": "to"}, {"text": "the"}, {"text": "opinion"}, {"text": "by"}, {"text": "the"}, {"text": "Second"}, {"text": "U.S."}, {"text": "Circuit"}, {"text": "Court"}, {"text": "of"}, {"text": "Appeals"}, {"text": "in"}, {"text": "New"}, {"text": "York"}, {"text": "."}, {"text": "The"}, {"text": "panel"}, {"text": "ruled"}, {"text": "that"}, {"text": "the"}, {"text": "restrictions"}, {"text": "do"}, {"text": "n't"}, {"text": "violate"}, {"text": "the"}, {"text": "freedom"}, {"text": "of"}, {"text": "speech"}, {"text": "of"}, {"text": "health"}, {"text": "care"}, {"text": "providers"}, {"text": "and"}, {"text": "that"}, {"text": "the"}, {"text": "limits"}, {"text": "on"}, {"text": "counseling"}, {"text": "services"}, {"text": "do"}, {"text": "n't"}, {"text": "violate"}, {"text": "the"}, {"text": "rights"}, {"text": "of"}, {"text": "pregnant"}, {"text": "women"}, {"text": "."}, {"text": "INQUIRY"}, {"text": "CLEARS"}, {"text": "TEXAS"}, {"text": "JUDGE"}, {"text": "of"}, {"text": "bias"}, {"text": "in"}, {"text": "comments"}, {"text": "on"}, {"text": "homosexual"}, {"text": "murder"}, {"text": "victims"}, {"text": "."}, {"text": "Dallas"}, {"text": "District"}, {"text": "Judge"}, {"text": "Jack"}, {"text": "Hampton"}, {"text": "had"}, {"text": "sparked"}, {"text": "calls"}, {"text": "for"}, {"text": "a"}, {"text": "judicial"}, {"text": "inquiry"}, {"text": "with"}, {"text": "his"}, {"text": "remarks"}, {"text": "to"}, {"text": "the"}, {"text": "press"}, {"text": "last"}, {"text": "December"}, {"text": ","}, {"text": "two"}, {"text": "weeks"}, {"text": "after"}, {"text": "*-1"}, {"text": "sentencing"}, {"text": "an"}, {"text": "18-year-old"}, {"text": "defendant"}, {"text": "to"}, {"text": "30"}, {"text": "years"}, {"text": "in"}, {"text": "state"}, {"text": "prison"}, {"text": "for"}, {"text": "*-2"}, {"text": "killing"}, {"text": "two"}, {"text": "homosexual"}, {"text": "men"}, {"text": "in"}, {"text": "a"}, {"text": "city"}, {"text": "park"}, {"text": "."}, {"text": "The"}, {"text": "judge"}, {"text": "was"}, {"text": "quoted"}, {"text": "*-1"}, {"text": "as"}, {"text": "*-4"}, {"text": "referring"}, {"text": "to"}, {"text": "the"}, {"text": "victims"}, {"text": "as"}, {"text": "``"}, {"text": "queers"}, {"text": "''"}, {"text": "and"}, {"text": "*-4"}, {"text": "saying"}, {"text": "0"}, {"text": "they"}, {"text": "would"}, {"text": "n't"}, {"text": "have"}, {"text": "been"}, {"text": "killed"}, {"text": "*-2"}, {"text": "``"}, {"text": "if"}, {"text": "they"}, {"text": "had"}, {"text": "n't"}, {"text": "been"}, {"text": "cruising"}, {"text": "the"}, {"text": "streets"}, {"text": "*-3"}, {"text": "picking"}, {"text": "up"}, {"text": "teenage"}, {"text": "boys"}, {"text": "."}, {"text": "''"}, {"text": "But"}, {"text": "Robert"}, {"text": "R."}, {"text": "Murray"}, {"text": ","}, {"text": "a"}, {"text": "special"}, {"text": "master"}, {"text": "appointed"}, {"text": "*"}, {"text": "by"}, {"text": "the"}, {"text": "Texas"}, {"text": "Supreme"}, {"text": "Court"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "Judge"}, {"text": "Hampton"}, {"text": "did"}, {"text": "n't"}, {"text": "breach"}, {"text": "any"}, {"text": "judicial"}, {"text": "standards"}, {"text": "of"}, {"text": "fairness"}, {"text": ","}, {"text": "although"}, {"text": "he"}, {"text": "did"}, {"text": "violate"}, {"text": "the"}, {"text": "state"}, {"text": "'s"}, {"text": "judicial"}, {"text": "code"}, {"text": "by"}, {"text": "*-1"}, {"text": "commenting"}, {"text": "publicly"}, {"text": "on"}, {"text": "a"}, {"text": "pending"}, {"text": "case"}, {"text": "."}, {"text": "*-1"}, {"text": "Observing"}, {"text": "that"}, {"text": "the"}, {"text": "judge"}, {"text": "``"}, {"text": "has"}, {"text": "never"}, {"text": "exhibited"}, {"text": "any"}, {"text": "bias"}, {"text": "or"}, {"text": "prejudice"}, {"text": ","}, {"text": "''"}, {"text": "Mr."}, {"text": "Murray"}, {"text": "concluded"}, {"text": "that"}, {"text": "he"}, {"text": "``"}, {"text": "would"}, {"text": "be"}, {"text": "impartial"}, {"text": "in"}, {"text": "any"}, {"text": "case"}, {"text": "involving"}, {"text": "a"}, {"text": "homosexual"}, {"text": "or"}, {"text": "prostitute"}, {"text": "''"}, {"text": "as"}, {"text": "a"}, {"text": "victim"}, {"text": "."}, {"text": "Mr."}, {"text": "Murray"}, {"text": "also"}, {"text": "said"}, {"text": "0"}, {"text": "Judge"}, {"text": "Hampton"}, {"text": "'s"}, {"text": "comments"}, {"text": "did"}, {"text": "n't"}, {"text": "discredit"}, {"text": "the"}, {"text": "judiciary"}, {"text": "or"}, {"text": "the"}, {"text": "administration"}, {"text": "of"}, {"text": "justice"}, {"text": "."}, {"text": "The"}, {"text": "report"}, {"text": "is"}, {"text": "subject"}, {"text": "to"}, {"text": "review"}, {"text": "by"}, {"text": "the"}, {"text": "State"}, {"text": "Commission"}, {"text": "on"}, {"text": "Judicial"}, {"text": "Conduct"}, {"text": ","}, {"text": "which"}, {"text": "*T*-138"}, {"text": "is"}, {"text": "empowered"}, {"text": "*-1"}, {"text": "to"}, {"text": "impose"}, {"text": "sanctions"}, {"text": "."}, {"text": "GAF"}, {"text": "TRIAL"}, {"text": "goes"}, {"text": "to"}, {"text": "round"}, {"text": "three"}, {"text": "."}, {"text": "Attorneys"}, {"text": "in"}, {"text": "the"}, {"text": "third"}, {"text": "stock-manipulation"}, {"text": "trial"}, {"text": "of"}, {"text": "GAF"}, {"text": "Corp."}, {"text": "began"}, {"text": "opening"}, {"text": "arguments"}, {"text": "yesterday"}, {"text": "in"}, {"text": "the"}, {"text": "Manhattan"}, {"text": "courtroom"}, {"text": "of"}, {"text": "U.S."}, {"text": "District"}, {"text": "Judge"}, {"text": "Mary"}, {"text": "Johnson"}, {"text": "Lowe"}, {"text": "."}, {"text": "In"}, {"text": "an"}, {"text": "eight-count"}, {"text": "indictment"}, {"text": ","}, {"text": "the"}, {"text": "government"}, {"text": "has"}, {"text": "charged"}, {"text": "GAF"}, {"text": ","}, {"text": "a"}, {"text": "Wayne"}, {"text": ","}, {"text": "N.J."}, {"text": ","}, {"text": "specialty"}, {"text": "chemical"}, {"text": "maker"}, {"text": ","}, {"text": "and"}, {"text": "its"}, {"text": "Vice"}, {"text": "Chairman"}, {"text": "James"}, {"text": "T."}, {"text": "Sherwin"}, {"text": "with"}, {"text": "*-2"}, {"text": "attempting"}, {"text": "*-1"}, {"text": "to"}, {"text": "manipulate"}, {"text": "the"}, {"text": "common"}, {"text": "stock"}, {"text": "of"}, {"text": "Union"}, {"text": "Carbide"}, {"text": "Corp."}, {"text": "in"}, {"text": "advance"}, {"text": "of"}, {"text": "GAF"}, {"text": "'s"}, {"text": "planned"}, {"text": "sale"}, {"text": "of"}, {"text": "a"}, {"text": "large"}, {"text": "block"}, {"text": "of"}, {"text": "the"}, {"text": "stock"}, {"text": "in"}, {"text": "November"}, {"text": "1986"}, {"text": "."}, {"text": "The"}, {"text": "first"}, {"text": "two"}, {"text": "GAF"}, {"text": "trials"}, {"text": "ended"}, {"text": "in"}, {"text": "mistrials"}, {"text": "earlier"}, {"text": "this"}, {"text": "year"}, {"text": "."}, {"text": "This"}, {"text": "trial"}, {"text": "is"}, {"text": "expected"}, {"text": "*-1"}, {"text": "to"}, {"text": "last"}, {"text": "five"}, {"text": "weeks"}, {"text": "."}, {"text": "*"}, {"text": "SWITCHING"}, {"text": "TO"}, {"text": "THE"}, {"text": "DEFENSE"}, {"text": ":"}, {"text": "A"}, {"text": "former"}, {"text": "member"}, {"text": "of"}, {"text": "the"}, {"text": "prosecution"}, {"text": "team"}, {"text": "in"}, {"text": "the"}, {"text": "Iran\\/Contra"}, {"text": "affair"}, {"text": "joined"}, {"text": "the"}, {"text": "Chicago"}, {"text": "firm"}, {"text": "of"}, {"text": "Mayer"}, {"text": ","}, {"text": "Brown"}, {"text": "&"}, {"text": "Platt"}, {"text": "."}, {"text": "Michael"}, {"text": "R."}, {"text": "Bromwich"}, {"text": ","}, {"text": "a"}, {"text": "member"}, {"text": "since"}, {"text": "January"}, {"text": "1987"}, {"text": "of"}, {"text": "the"}, {"text": "three-lawyer"}, {"text": "trial"}, {"text": "team"}, {"text": "in"}, {"text": "the"}, {"text": "prosecution"}, {"text": "of"}, {"text": "Oliver"}, {"text": "North"}, {"text": ","}, {"text": "became"}, {"text": "a"}, {"text": "partner"}, {"text": "in"}, {"text": "the"}, {"text": "Washington"}, {"text": ","}, {"text": "D.C."}, {"text": ","}, {"text": "office"}, {"text": "of"}, {"text": "the"}, {"text": "520-lawyer"}, {"text": "firm"}, {"text": "."}, {"text": "He"}, {"text": "will"}, {"text": "specialize"}, {"text": "in"}, {"text": "white-collar"}, {"text": "criminal"}, {"text": "defense"}, {"text": "work"}, {"text": "."}, {"text": "Mr."}, {"text": "Bromwich"}, {"text": ","}, {"text": "35"}, {"text": ","}, {"text": "also"}, {"text": "has"}, {"text": "served"}, {"text": "as"}, {"text": "deputy"}, {"text": "chief"}, {"text": "*RNR*-1"}, {"text": "and"}, {"text": "chief"}, {"text": "*RNR*-1"}, {"text": "of"}, {"text": "the"}, {"text": "narcotics"}, {"text": "unit"}, {"text": "for"}, {"text": "the"}, {"text": "U.S."}, {"text": "attorney"}, {"text": "'s"}, {"text": "office"}, {"text": "for"}, {"text": "the"}, {"text": "Southern"}, {"text": "District"}, {"text": "of"}, {"text": "New"}, {"text": "York"}, {"text": ","}, {"text": "based"}, {"text": "*"}, {"text": "in"}, {"text": "Manhattan"}, {"text": "."}, {"text": "Cooper"}, {"text": "Tire"}, {"text": "&"}, {"text": "Rubber"}, {"text": "Co."}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "has"}, {"text": "reached"}, {"text": "an"}, {"text": "agreement"}, {"text": "*ICH*-1"}, {"text": "in"}, {"text": "principle"}, {"text": "*"}, {"text": "to"}, {"text": "buy"}, {"text": "buildings"}, {"text": "and"}, {"text": "related"}, {"text": "property"}, {"text": "in"}, {"text": "Albany"}, {"text": ","}, {"text": "Ga."}, {"text": ","}, {"text": "from"}, {"text": "Bridgestone\\/Firestone"}, {"text": "Inc"}, {"text": "."}, {"text": "Terms"}, {"text": "were"}, {"text": "n't"}, {"text": "disclosed"}, {"text": "*-1"}, {"text": "."}, {"text": "The"}, {"text": "tire"}, {"text": "maker"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "buildings"}, {"text": "consist"}, {"text": "of"}, {"text": "1.8"}, {"text": "million"}, {"text": "square"}, {"text": "feet"}, {"text": "of"}, {"text": "office"}, {"text": ","}, {"text": "manufacturing"}, {"text": "and"}, {"text": "warehousing"}, {"text": "space"}, {"text": "on"}, {"text": "353"}, {"text": "acres"}, {"text": "of"}, {"text": "land"}, {"text": "."}, {"text": "Fujitsu"}, {"text": "Ltd."}, {"text": "'s"}, {"text": "top"}, {"text": "executive"}, {"text": "took"}, {"text": "the"}, {"text": "unusual"}, {"text": "step"}, {"text": "of"}, {"text": "*"}, {"text": "publicly"}, {"text": "apologizing"}, {"text": "for"}, {"text": "his"}, {"text": "company"}, {"text": "'s"}, {"text": "making"}, {"text": "bids"}, {"text": "of"}, {"text": "just"}, {"text": "one"}, {"text": "yen"}, {"text": "for"}, {"text": "several"}, {"text": "local"}, {"text": "government"}, {"text": "projects"}, {"text": ","}, {"text": "while"}, {"text": "computer"}, {"text": "rival"}, {"text": "NEC"}, {"text": "Corp."}, {"text": "made"}, {"text": "a"}, {"text": "written"}, {"text": "apology"}, {"text": "for"}, {"text": "*"}, {"text": "indulging"}, {"text": "in"}, {"text": "the"}, {"text": "same"}, {"text": "practice"}, {"text": "."}, {"text": "Meanwhile"}, {"text": ","}, {"text": "business"}, {"text": "and"}, {"text": "government"}, {"text": "leaders"}, {"text": "rebuked"}, {"text": "the"}, {"text": "computer"}, {"text": "makers"}, {"text": ","}, {"text": "and"}, {"text": "fretted"}, {"text": "about"}, {"text": "the"}, {"text": "broader"}, {"text": "statement"}, {"text": "0"}, {"text": "the"}, {"text": "companies"}, {"text": "'"}, {"text": "actions"}, {"text": "make"}, {"text": "*T*-1"}, {"text": "about"}, {"text": "Japanese"}, {"text": "cutthroat"}, {"text": "pricing"}, {"text": "."}, {"text": "Fujitsu"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "bid"}, {"text": "the"}, {"text": "equivalent"}, {"text": "of"}, {"text": "less"}, {"text": "than"}, {"text": "a"}, {"text": "U.S."}, {"text": "penny"}, {"text": "on"}, {"text": "three"}, {"text": "separate"}, {"text": "municipal"}, {"text": "contracts"}, {"text": "during"}, {"text": "the"}, {"text": "past"}, {"text": "two"}, {"text": "years"}, {"text": "."}, {"text": "The"}, {"text": "company"}, {"text": "also"}, {"text": "disclosed"}, {"text": "that"}, {"text": "during"}, {"text": "that"}, {"text": "period"}, {"text": "it"}, {"text": "offered"}, {"text": "10,000"}, {"text": "yen"}, {"text": ","}, {"text": "or"}, {"text": "about"}, {"text": "$"}, {"text": "70"}, {"text": "*U*"}, {"text": ","}, {"text": "for"}, {"text": "another"}, {"text": "contract"}, {"text": "."}, {"text": "But"}, {"text": "Fujitsu"}, {"text": ","}, {"text": "Japan"}, {"text": "'s"}, {"text": "No."}, {"text": "1"}, {"text": "computer"}, {"text": "maker"}, {"text": ","}, {"text": "is"}, {"text": "n't"}, {"text": "alone"}, {"text": "."}, {"text": "NEC"}, {"text": ","}, {"text": "one"}, {"text": "of"}, {"text": "its"}, {"text": "largest"}, {"text": "domestic"}, {"text": "competitors"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "bid"}, {"text": "one"}, {"text": "yen"}, {"text": "in"}, {"text": "two"}, {"text": "separate"}, {"text": "public"}, {"text": "auctions"}, {"text": "since"}, {"text": "1987"}, {"text": "."}, {"text": "In"}, {"text": "both"}, {"text": "cases"}, {"text": ","}, {"text": "NEC"}, {"text": "lost"}, {"text": "the"}, {"text": "contract"}, {"text": "to"}, {"text": "Fujitsu"}, {"text": ","}, {"text": "which"}, {"text": "*T*-139"}, {"text": "made"}, {"text": "the"}, {"text": "same"}, {"text": "bid"}, {"text": "and"}, {"text": "won"}, {"text": "a"}, {"text": "tie-breaking"}, {"text": "lottery"}, {"text": "."}, {"text": "All"}, {"text": "the"}, {"text": "contracts"}, {"text": "were"}, {"text": "for"}, {"text": "computer-system-design"}, {"text": "contracts"}, {"text": "and"}, {"text": "involved"}, {"text": "no"}, {"text": "hardware"}, {"text": "or"}, {"text": "software"}, {"text": "."}, {"text": "The"}, {"text": "Ministry"}, {"text": "of"}, {"text": "International"}, {"text": "Trade"}, {"text": "and"}, {"text": "Industry"}, {"text": "summoned"}, {"text": "executives"}, {"text": "from"}, {"text": "the"}, {"text": "companies"}, {"text": "*-1"}, {"text": "to"}, {"text": "``"}, {"text": "make"}, {"text": "sure"}, {"text": "0"}, {"text": "they"}, {"text": "understood"}, {"text": "''"}, {"text": "the"}, {"text": "concern"}, {"text": "about"}, {"text": "such"}, {"text": "practices"}, {"text": ","}, {"text": "according"}, {"text": "to"}, {"text": "a"}, {"text": "government"}, {"text": "spokesman"}, {"text": "."}, {"text": "``"}, {"text": "These"}, {"text": "cases"}, {"text": "lead"}, {"text": "to"}, {"text": "the"}, {"text": "loss"}, {"text": "of"}, {"text": "the"}, {"text": "firms"}, {"text": "'"}, {"text": "social"}, {"text": "and"}, {"text": "international"}, {"text": "credibility"}, {"text": ","}, {"text": "''"}, {"text": "a"}, {"text": "ministry"}, {"text": "statement"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Japan"}, {"text": "'s"}, {"text": "Fair"}, {"text": "Trade"}, {"text": "Commission"}, {"text": "has"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "is"}, {"text": "considering"}, {"text": "*-1"}, {"text": "investigating"}, {"text": "the"}, {"text": "bids"}, {"text": "for"}, {"text": "possible"}, {"text": "antitrust-law"}, {"text": "violations"}, {"text": "."}, {"text": "``"}, {"text": "We"}, {"text": "would"}, {"text": "like"}, {"text": "*-2"}, {"text": "to"}, {"text": "apologize"}, {"text": "for"}, {"text": "*-3"}, {"text": "having"}, {"text": "caused"}, {"text": "huge"}, {"text": "trouble"}, {"text": ","}, {"text": "''"}, {"text": "Fujitsu"}, {"text": "President"}, {"text": "Takuma"}, {"text": "Yamamoto"}, {"text": ","}, {"text": "read"}, {"text": "*T*-1"}, {"text": "from"}, {"text": "a"}, {"text": "prepared"}, {"text": "statement"}, {"text": "as"}, {"text": "he"}, {"text": "stood"}, {"text": "before"}, {"text": "a"}, {"text": "packed"}, {"text": "news"}, {"text": "conference"}, {"text": "at"}, {"text": "his"}, {"text": "company"}, {"text": "'s"}, {"text": "downtown"}, {"text": "headquarters"}, {"text": "."}, {"text": "The"}, {"text": "bids"}, {"text": ","}, {"text": "he"}, {"text": "added"}, {"text": "0"}, {"text": "*T*-1"}, {"text": ","}, {"text": "were"}, {"text": "``"}, {"text": "contrary"}, {"text": "to"}, {"text": "common"}, {"text": "sense"}, {"text": "."}, {"text": "''"}, {"text": "NEC"}, {"text": "released"}, {"text": "a"}, {"text": "statement"}, {"text": "saying"}, {"text": ","}, {"text": "``"}, {"text": "We"}, {"text": "feel"}, {"text": "sorry"}, {"text": "for"}, {"text": "*-1"}, {"text": "having"}, {"text": "caused"}, {"text": "trouble"}, {"text": "to"}, {"text": "society"}, {"text": ","}, {"text": "''"}, {"text": "a"}, {"text": "form"}, {"text": "of"}, {"text": "apology"}, {"text": "common"}, {"text": "in"}, {"text": "Japan"}, {"text": "for"}, {"text": "companies"}, {"text": "caught"}, {"text": "*"}, {"text": "in"}, {"text": "embarrassing"}, {"text": "situations"}, {"text": "."}, {"text": "Japanese"}, {"text": "companies"}, {"text": "have"}, {"text": "long"}, {"text": "had"}, {"text": "a"}, {"text": "reputation"}, {"text": "for"}, {"text": "*-2"}, {"text": "sacrificing"}, {"text": "short-term"}, {"text": "profits"}, {"text": "*-1"}, {"text": "to"}, {"text": "make"}, {"text": "a"}, {"text": "sale"}, {"text": "that"}, {"text": "*T*-140"}, {"text": "may"}, {"text": "have"}, {"text": "long-term"}, {"text": "benefits"}, {"text": "."}, {"text": "But"}, {"text": "the"}, {"text": "growing"}, {"text": "controversy"}, {"text": "comes"}, {"text": "as"}, {"text": "many"}, {"text": "practices"}, {"text": "historically"}, {"text": "accepted"}, {"text": "*"}, {"text": "as"}, {"text": "normal"}, {"text": "here"}, {"text": "--"}, {"text": "such"}, {"text": "as"}, {"text": "politicians"}, {"text": "accepting"}, {"text": "substantial"}, {"text": "gifts"}, {"text": "from"}, {"text": "businessmen"}, {"text": "or"}, {"text": "having"}, {"text": "extramarital"}, {"text": "affairs"}, {"text": "--"}, {"text": "are"}, {"text": "coming"}, {"text": "under"}, {"text": "close"}, {"text": "ethical"}, {"text": "scrutiny"}, {"text": "."}, {"text": "The"}, {"text": "fire"}, {"text": "is"}, {"text": "also"}, {"text": "fueled"}, {"text": "*-1"}, {"text": "by"}, {"text": "growing"}, {"text": "international"}, {"text": "interest"}, {"text": "in"}, {"text": "Japanese"}, {"text": "behavior"}, {"text": "."}, {"text": "So"}, {"text": "far"}, {"text": "there"}, {"text": "have"}, {"text": "been"}, {"text": "no"}, {"text": "public"}, {"text": "overseas"}, {"text": "complaints"}, {"text": "about"}, {"text": "the"}, {"text": "issue"}, {"text": "."}, {"text": "But"}, {"text": "in"}, {"text": "one"}, {"text": "of"}, {"text": "the"}, {"text": "auctions"}, {"text": "in"}, {"text": "question"}, {"text": ","}, {"text": "International"}, {"text": "Business"}, {"text": "Machines"}, {"text": "Corp."}, {"text": "made"}, {"text": "a"}, {"text": "bid"}, {"text": "substantially"}, {"text": "higher"}, {"text": "than"}, {"text": "the"}, {"text": "Fujitsu"}, {"text": "offer"}, {"text": ","}, {"text": "according"}, {"text": "to"}, {"text": "the"}, {"text": "municipality"}, {"text": "."}, {"text": "The"}, {"text": "low-ball"}, {"text": "bids"}, {"text": "touch"}, {"text": "on"}, {"text": "issues"}, {"text": "central"}, {"text": "to"}, {"text": "the"}, {"text": "increasingly"}, {"text": "tense"}, {"text": "trade"}, {"text": "debate"}, {"text": "."}, {"text": "Foreigners"}, {"text": "complain"}, {"text": "that"}, {"text": "they"}, {"text": "have"}, {"text": "limited"}, {"text": "access"}, {"text": "to"}, {"text": "government"}, {"text": "procurement"}, {"text": "in"}, {"text": "Japan"}, {"text": ","}, {"text": "in"}, {"text": "part"}, {"text": "because"}, {"text": "Japanese"}, {"text": "companies"}, {"text": "unfairly"}, {"text": "undercut"}, {"text": "them"}, {"text": "."}, {"text": "The"}, {"text": "U.S."}, {"text": "government"}, {"text": "in"}, {"text": "recent"}, {"text": "years"}, {"text": "has"}, {"text": "accused"}, {"text": "Japanese"}, {"text": "companies"}, {"text": "of"}, {"text": "*"}, {"text": "excessively"}, {"text": "slashing"}, {"text": "prices"}, {"text": "on"}, {"text": "semiconductors"}, {"text": "and"}, {"text": "supercomputers"}, {"text": "--"}, {"text": "products"}, {"text": "0"}, {"text": "Fujitsu"}, {"text": "and"}, {"text": "NEC"}, {"text": "make"}, {"text": "*T*-1"}, {"text": "."}, {"text": "*-1"}, {"text": "Asked"}, {"text": "*-2"}, {"text": "whether"}, {"text": "the"}, {"text": "bidding"}, {"text": "flap"}, {"text": "would"}, {"text": "hurt"}, {"text": "U.S.-Japan"}, {"text": "relations"}, {"text": ","}, {"text": "Mr."}, {"text": "Yamamoto"}, {"text": "said"}, {"text": ","}, {"text": "``"}, {"text": "this"}, {"text": "will"}, {"text": "be"}, {"text": "a"}, {"text": "minus"}, {"text": "factor"}, {"text": "."}, {"text": "''"}, {"text": "The"}, {"text": "``"}, {"text": "one-yen"}, {"text": "''"}, {"text": "controversy"}, {"text": "first"}, {"text": "came"}, {"text": "to"}, {"text": "a"}, {"text": "head"}, {"text": "last"}, {"text": "week"}, {"text": "when"}, {"text": "the"}, {"text": "city"}, {"text": "of"}, {"text": "Hiroshima"}, {"text": "announced"}, {"text": "that"}, {"text": "Fujitsu"}, {"text": "won"}, {"text": "a"}, {"text": "contract"}, {"text": "*"}, {"text": "to"}, {"text": "design"}, {"text": "a"}, {"text": "computer"}, {"text": "system"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "to"}, {"text": "map"}, {"text": "its"}, {"text": "waterworks"}, {"text": "*T*-1"}, {"text": "."}, {"text": "The"}, {"text": "city"}, {"text": "had"}, {"text": "expected"}, {"text": "*-1"}, {"text": "to"}, {"text": "pay"}, {"text": "about"}, {"text": "11"}, {"text": "million"}, {"text": "yen"}, {"text": "-LRB-"}, {"text": "$"}, {"text": "77,000"}, {"text": "*U*"}, {"text": "-RRB-"}, {"text": ","}, {"text": "but"}, {"text": "Fujitsu"}, {"text": "essentially"}, {"text": "offered"}, {"text": "*-2"}, {"text": "to"}, {"text": "do"}, {"text": "it"}, {"text": "for"}, {"text": "free"}, {"text": "."}, {"text": "Then"}, {"text": "Wednesday"}, {"text": ","}, {"text": "Fujitsu"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "made"}, {"text": "a"}, {"text": "similar"}, {"text": "bid"}, {"text": "*-1"}, {"text": "to"}, {"text": "win"}, {"text": "a"}, {"text": "library"}, {"text": "contract"}, {"text": "in"}, {"text": "Nagano"}, {"text": "prefecture"}, {"text": "two"}, {"text": "weeks"}, {"text": "earlier"}, {"text": "."}, {"text": "It"}, {"text": "also"}, {"text": "said"}, {"text": "that"}, {"text": "in"}, {"text": "July"}, {"text": ","}, {"text": "it"}, {"text": "bid"}, {"text": "10,000"}, {"text": "yen"}, {"text": "*-2"}, {"text": "to"}, {"text": "design"}, {"text": "a"}, {"text": "system"}, {"text": "for"}, {"text": "the"}, {"text": "Saitama"}, {"text": "prefectural"}, {"text": "library"}, {"text": ","}, {"text": "and"}, {"text": "two"}, {"text": "years"}, {"text": "ago"}, {"text": ","}, {"text": "it"}, {"text": "bid"}, {"text": "one"}, {"text": "yen"}, {"text": "*-1"}, {"text": "to"}, {"text": "plan"}, {"text": "the"}, {"text": "telecommunications"}, {"text": "system"}, {"text": "for"}, {"text": "Wakayama"}, {"text": "prefecture"}, {"text": "."}, {"text": "The"}, {"text": "company"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "has"}, {"text": "offered"}, {"text": "*-1"}, {"text": "to"}, {"text": "withdraw"}, {"text": "its"}, {"text": "bids"}, {"text": "in"}, {"text": "Hiroshima"}, {"text": "and"}, {"text": "Nagano"}, {"text": "."}, {"text": "The"}, {"text": "municipalities"}, {"text": "said"}, {"text": "0"}, {"text": "they"}, {"text": "have"}, {"text": "n't"}, {"text": "decided"}, {"text": "whether"}, {"text": "*-1"}, {"text": "to"}, {"text": "try"}, {"text": "*-2"}, {"text": "to"}, {"text": "force"}, {"text": "the"}, {"text": "company"}, {"text": "to"}, {"text": "go"}, {"text": "through"}, {"text": "with"}, {"text": "the"}, {"text": "contracts"}, {"text": "."}, {"text": "Fujitsu"}, {"text": "and"}, {"text": "NEC"}, {"text": "said"}, {"text": "0"}, {"text": "they"}, {"text": "were"}, {"text": "still"}, {"text": "investigating"}, {"text": ","}, {"text": "and"}, {"text": "that"}, {"text": "knowledge"}, {"text": "of"}, {"text": "more"}, {"text": "such"}, {"text": "bids"}, {"text": "could"}, {"text": "emerge"}, {"text": "."}, {"text": "Mr."}, {"text": "Yamamoto"}, {"text": "insisted"}, {"text": "that"}, {"text": "headquarters"}, {"text": "had"}, {"text": "n't"}, {"text": "approved"}, {"text": "the"}, {"text": "bids"}, {"text": ","}, {"text": "and"}, {"text": "that"}, {"text": "he"}, {"text": "did"}, {"text": "n't"}, {"text": "know"}, {"text": "about"}, {"text": "most"}, {"text": "of"}, {"text": "the"}, {"text": "cases"}, {"text": "until"}, {"text": "Wednesday"}, {"text": "."}, {"text": "Other"}, {"text": "major"}, {"text": "Japanese"}, {"text": "computer"}, {"text": "companies"}, {"text": "contacted"}, {"text": "*"}, {"text": "yesterday"}, {"text": "said"}, {"text": "0"}, {"text": "they"}, {"text": "have"}, {"text": "never"}, {"text": "made"}, {"text": "such"}, {"text": "bids"}, {"text": "."}, {"text": "``"}, {"text": "One"}, {"text": "yen"}, {"text": "is"}, {"text": "not"}, {"text": "ethical"}, {"text": ","}, {"text": "''"}, {"text": "Michio"}, {"text": "Sasaki"}, {"text": ","}, {"text": "an"}, {"text": "official"}, {"text": "at"}, {"text": "Keidanren"}, {"text": ","}, {"text": "the"}, {"text": "Japan"}, {"text": "Federation"}, {"text": "of"}, {"text": "Economic"}, {"text": "Organizations"}, {"text": ","}, {"text": "said"}, {"text": "*T*-1"}, {"text": "."}, {"text": "``"}, {"text": "Profit"}, {"text": "may"}, {"text": "be"}, {"text": "low"}, {"text": ","}, {"text": "but"}, {"text": "at"}, {"text": "least"}, {"text": "costs"}, {"text": "should"}, {"text": "be"}, {"text": "covered"}, {"text": "*-1"}, {"text": "."}, {"text": "PAPERS"}, {"text": ":"}, {"text": "Backe"}, {"text": "Group"}, {"text": "Inc."}, {"text": "agreed"}, {"text": "*-1"}, {"text": "to"}, {"text": "acquire"}, {"text": "Atlantic"}, {"text": "Publications"}, {"text": "Inc."}, {"text": ","}, {"text": "which"}, {"text": "*T*-141"}, {"text": "has"}, {"text": "30"}, {"text": "community"}, {"text": "papers"}, {"text": "and"}, {"text": "annual"}, {"text": "sales"}, {"text": "of"}, {"text": "$"}, {"text": "7"}, {"text": "million"}, {"text": "*U*"}, {"text": "."}, {"text": "Terms"}, {"text": "were"}, {"text": "n't"}, {"text": "disclosed"}, {"text": "*-1"}, {"text": "."}, {"text": "Backe"}, {"text": "is"}, {"text": "a"}, {"text": "closely"}, {"text": "held"}, {"text": "media"}, {"text": "firm"}, {"text": "run"}, {"text": "*"}, {"text": "by"}, {"text": "former"}, {"text": "CBS"}, {"text": "Inc."}, {"text": "President"}, {"text": "John"}, {"text": "Backe"}, {"text": "."}, {"text": "TV"}, {"text": ":"}, {"text": "Price"}, {"text": "Communications"}, {"text": "Corp."}, {"text": "completed"}, {"text": "the"}, {"text": "sale"}, {"text": "of"}, {"text": "four"}, {"text": "of"}, {"text": "its"}, {"text": "TV"}, {"text": "stations"}, {"text": "to"}, {"text": "NTG"}, {"text": "Inc."}, {"text": "for"}, {"text": "$"}, {"text": "120"}, {"text": "million"}, {"text": "*U*"}, {"text": "in"}, {"text": "cash"}, {"text": "and"}, {"text": "notes"}, {"text": ","}, {"text": "*-1"}, {"text": "retaining"}, {"text": "a"}, {"text": "10"}, {"text": "%"}, {"text": "equity"}, {"text": "stake"}, {"text": "in"}, {"text": "the"}, {"text": "new"}, {"text": "concern"}, {"text": "."}, {"text": "NTG"}, {"text": "was"}, {"text": "formed"}, {"text": "*-1"}, {"text": "by"}, {"text": "Osborn"}, {"text": "Communications"}, {"text": "Corp."}, {"text": "and"}, {"text": "Desai"}, {"text": "Capital"}, {"text": "."}, {"text": "Michaels"}, {"text": "Stores"}, {"text": "Inc."}, {"text": ","}, {"text": "which"}, {"text": "*T*-142"}, {"text": "owns"}, {"text": "and"}, {"text": "operates"}, {"text": "a"}, {"text": "chain"}, {"text": "of"}, {"text": "specialty"}, {"text": "retail"}, {"text": "stores"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "October"}, {"text": "sales"}, {"text": "rose"}, {"text": "14.6"}, {"text": "%"}, {"text": "to"}, {"text": "$"}, {"text": "32.8"}, {"text": "million"}, {"text": "*U*"}, {"text": "from"}, {"text": "$"}, {"text": "28.6"}, {"text": "million"}, {"text": "*U*"}, {"text": "a"}, {"text": "year"}, {"text": "earlier"}, {"text": "."}, {"text": "Sales"}, {"text": "in"}, {"text": "stores"}, {"text": "open"}, {"text": "more"}, {"text": "than"}, {"text": "one"}, {"text": "year"}, {"text": "rose"}, {"text": "3"}, {"text": "%"}, {"text": "to"}, {"text": "$"}, {"text": "29.3"}, {"text": "million"}, {"text": "*U*"}, {"text": "from"}, {"text": "$"}, {"text": "28.4"}, {"text": "million"}, {"text": "*U*"}, {"text": "."}, {"text": "Furukawa"}, {"text": "Co."}, {"text": "of"}, {"text": "Japan"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "will"}, {"text": "acquire"}, {"text": "two"}, {"text": "construction"}, {"text": "machinery"}, {"text": "plants"}, {"text": "and"}, {"text": "a"}, {"text": "sales"}, {"text": "unit"}, {"text": "in"}, {"text": "France"}, {"text": "formerly"}, {"text": "belonging"}, {"text": "to"}, {"text": "Dresser"}, {"text": "Industries"}, {"text": "Inc."}, {"text": "of"}, {"text": "the"}, {"text": "U.S."}, {"text": "."}, {"text": "The"}, {"text": "company"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "made"}, {"text": "the"}, {"text": "purchase"}, {"text": "in"}, {"text": "order"}, {"text": "*-1"}, {"text": "to"}, {"text": "locally"}, {"text": "produce"}, {"text": "hydraulically"}, {"text": "operated"}, {"text": "shovels"}, {"text": "."}, {"text": "Last"}, {"text": "October"}, {"text": ","}, {"text": "the"}, {"text": "company"}, {"text": "also"}, {"text": "bought"}, {"text": "a"}, {"text": "wheel-loader"}, {"text": "manufacturing"}, {"text": "plant"}, {"text": "in"}, {"text": "Heidelberg"}, {"text": ","}, {"text": "West"}, {"text": "Germany"}, {"text": ","}, {"text": "from"}, {"text": "Dresser"}, {"text": "."}, {"text": "Furukawa"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "purchase"}, {"text": "of"}, {"text": "the"}, {"text": "French"}, {"text": "and"}, {"text": "German"}, {"text": "plants"}, {"text": "together"}, {"text": "will"}, {"text": "total"}, {"text": "about"}, {"text": "40"}, {"text": "billion"}, {"text": "yen"}, {"text": "-LRB-"}, {"text": "$"}, {"text": "280"}, {"text": "million"}, {"text": "*U*"}, {"text": "-RRB-"}, {"text": "."}, {"text": "Structural"}, {"text": "Dynamics"}, {"text": "Research"}, {"text": "Corp."}, {"text": ","}, {"text": "which"}, {"text": "*T*-143"}, {"text": "makes"}, {"text": "computer-aided"}, {"text": "engineering"}, {"text": "software"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "introduced"}, {"text": "new"}, {"text": "technology"}, {"text": "in"}, {"text": "mechanical"}, {"text": "design"}, {"text": "automation"}, {"text": "that"}, {"text": "*T*-144"}, {"text": "will"}, {"text": "improve"}, {"text": "mechanical"}, {"text": "engineering"}, {"text": "productivity"}, {"text": "."}, {"text": "@"}, {"text": "Money"}, {"text": "Market"}, {"text": "Deposits-a"}, {"text": "6.21"}, {"text": "%"}, {"text": "a"}, {"text": "-"}, {"text": "Average"}, {"text": "rate"}, {"text": "paid"}, {"text": "*"}, {"text": "yesterday"}, {"text": "by"}, {"text": "100"}, {"text": "large"}, {"text": "banks"}, {"text": "and"}, {"text": "thrifts"}, {"text": "in"}, {"text": "the"}, {"text": "10"}, {"text": "largest"}, {"text": "metropolitan"}, {"text": "areas"}, {"text": "as"}, {"text": "*"}, {"text": "compiled"}, {"text": "*-2"}, {"text": "by"}, {"text": "Bank"}, {"text": "Rate"}, {"text": "Monitor"}, {"text": "."}, {"text": "b"}, {"text": "-"}, {"text": "Current"}, {"text": "annual"}, {"text": "yield"}, {"text": "."}, {"text": "Guaranteed"}, {"text": "minimum"}, {"text": "6"}, {"text": "%"}, {"text": "."}, {"text": "LSI"}, {"text": "Logic"}, {"text": "Corp."}, {"text": "reported"}, {"text": "a"}, {"text": "surprise"}, {"text": "$"}, {"text": "35.7"}, {"text": "million"}, {"text": "*U*"}, {"text": "third-quarter"}, {"text": "net"}, {"text": "loss"}, {"text": ","}, {"text": "including"}, {"text": "a"}, {"text": "special"}, {"text": "restructuring"}, {"text": "charge"}, {"text": "that"}, {"text": "*T*-145"}, {"text": "reflects"}, {"text": "a"}, {"text": "continuing"}, {"text": "industry-wide"}, {"text": "slowdown"}, {"text": "in"}, {"text": "semiconductor"}, {"text": "demand"}, {"text": "."}, {"text": "In"}, {"text": "September"}, {"text": ","}, {"text": "the"}, {"text": "custom-chip"}, {"text": "maker"}, {"text": "said"}, {"text": "0"}, {"text": "excess"}, {"text": "capacity"}, {"text": "and"}, {"text": "lagging"}, {"text": "billings"}, {"text": "would"}, {"text": "result"}, {"text": "in"}, {"text": "an"}, {"text": "estimated"}, {"text": "$"}, {"text": "2"}, {"text": "million"}, {"text": "to"}, {"text": "$"}, {"text": "3"}, {"text": "million"}, {"text": "*U*"}, {"text": "net"}, {"text": "loss"}, {"text": "for"}, {"text": "the"}, {"text": "third"}, {"text": "quarter"}, {"text": "."}, {"text": "But"}, {"text": "company"}, {"text": "officials"}, {"text": "said"}, {"text": "yesterday"}, {"text": "that"}, {"text": "they"}, {"text": "decided"}, {"text": "*-2"}, {"text": "to"}, {"text": "take"}, {"text": "a"}, {"text": "$"}, {"text": "43"}, {"text": "million"}, {"text": "*U*"}, {"text": "pretax"}, {"text": "charge"}, {"text": "for"}, {"text": "the"}, {"text": "period"}, {"text": "*-3"}, {"text": "to"}, {"text": "cover"}, {"text": "a"}, {"text": "restructuring"}, {"text": "of"}, {"text": "world-wide"}, {"text": "manufacturing"}, {"text": "operations"}, {"text": ","}, {"text": "*-4"}, {"text": "citing"}, {"text": "extended"}, {"text": "weakness"}, {"text": "in"}, {"text": "the"}, {"text": "market"}, {"text": "as"}, {"text": "well"}, {"text": "as"}, {"text": "a"}, {"text": "decision"}, {"text": "*"}, {"text": "to"}, {"text": "switch"}, {"text": "to"}, {"text": "more"}, {"text": "economical"}, {"text": "production"}, {"text": "techniques"}, {"text": "."}, {"text": "``"}, {"text": "Over"}, {"text": "the"}, {"text": "summer"}, {"text": "months"}, {"text": ","}, {"text": "there"}, {"text": "has"}, {"text": "been"}, {"text": "a"}, {"text": "slowing"}, {"text": "in"}, {"text": "the"}, {"text": "rate"}, {"text": "of"}, {"text": "new"}, {"text": "orders"}, {"text": "from"}, {"text": "the"}, {"text": "computer"}, {"text": "sector"}, {"text": ","}, {"text": "our"}, {"text": "primary"}, {"text": "market"}, {"text": ","}, {"text": "''"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "Wilfred"}, {"text": "J."}, {"text": "Corrigan"}, {"text": ","}, {"text": "chairman"}, {"text": "and"}, {"text": "chief"}, {"text": "executive"}, {"text": "officer"}, {"text": "."}, {"text": "``"}, {"text": "In"}, {"text": "addition"}, {"text": ","}, {"text": "recent"}, {"text": "industry"}, {"text": "forecasts"}, {"text": "for"}, {"text": "1990"}, {"text": "indicate"}, {"text": "a"}, {"text": "slow"}, {"text": "environment"}, {"text": ","}, {"text": "at"}, {"text": "least"}, {"text": "until"}, {"text": "midyear"}, {"text": "."}, {"text": "''"}, {"text": "As"}, {"text": "a"}, {"text": "result"}, {"text": ","}, {"text": "the"}, {"text": "company"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "decided"}, {"text": "*-1"}, {"text": "to"}, {"text": "phase"}, {"text": "out"}, {"text": "its"}, {"text": "oldest"}, {"text": "capacity"}, {"text": "and"}, {"text": "``"}, {"text": "make"}, {"text": "appropriate"}, {"text": "reductions"}, {"text": "''"}, {"text": "in"}, {"text": "operating"}, {"text": "expenses"}, {"text": "."}, {"text": "The"}, {"text": "$"}, {"text": "35.7"}, {"text": "million"}, {"text": "*U*"}, {"text": "net"}, {"text": "loss"}, {"text": "equals"}, {"text": "86"}, {"text": "cents"}, {"text": "a"}, {"text": "share"}, {"text": "."}, {"text": "*-1"}, {"text": "Not"}, {"text": "counting"}, {"text": "the"}, {"text": "extraordinary"}, {"text": "charge"}, {"text": ","}, {"text": "the"}, {"text": "company"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "would"}, {"text": "have"}, {"text": "had"}, {"text": "a"}, {"text": "net"}, {"text": "loss"}, {"text": "of"}, {"text": "$"}, {"text": "3.1"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "seven"}, {"text": "cents"}, {"text": "a"}, {"text": "share"}, {"text": "."}, {"text": "A"}, {"text": "year"}, {"text": "earlier"}, {"text": ","}, {"text": "it"}, {"text": "had"}, {"text": "profit"}, {"text": "of"}, {"text": "$"}, {"text": "7.5"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "18"}, {"text": "cents"}, {"text": "a"}, {"text": "share"}, {"text": "."}, {"text": "Revenue"}, {"text": "rose"}, {"text": "42"}, {"text": "%"}, {"text": "to"}, {"text": "$"}, {"text": "133.7"}, {"text": "million"}, {"text": "*U*"}, {"text": "from"}, {"text": "$"}, {"text": "94"}, {"text": "million"}, {"text": "*U*"}, {"text": "."}, {"text": "The"}, {"text": "charge"}, {"text": "partly"}, {"text": "reflects"}, {"text": "a"}, {"text": "switch"}, {"text": "from"}, {"text": "older"}, {"text": "five-inch"}, {"text": "*ICH*-1"}, {"text": "to"}, {"text": "more-efficient"}, {"text": "six-inch"}, {"text": "*ICH*-1"}, {"text": "silicon"}, {"text": "wafers"}, {"text": "with"}, {"text": "which"}, {"text": "*"}, {"text": "to"}, {"text": "fabricate"}, {"text": "chips"}, {"text": "*T*-2"}, {"text": "."}, {"text": "*"}, {"text": "Related"}, {"text": "to"}, {"text": "that"}, {"text": "decision"}, {"text": ","}, {"text": "the"}, {"text": "company"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "was"}, {"text": "converting"}, {"text": "its"}, {"text": "Santa"}, {"text": "Clara"}, {"text": ","}, {"text": "Calif."}, {"text": ","}, {"text": "factory"}, {"text": "to"}, {"text": "a"}, {"text": "research"}, {"text": "and"}, {"text": "development"}, {"text": "facility"}, {"text": "."}, {"text": "A"}, {"text": "spokesman"}, {"text": "declined"}, {"text": "*-1"}, {"text": "to"}, {"text": "speculate"}, {"text": "about"}, {"text": "possible"}, {"text": "reductions"}, {"text": "in"}, {"text": "force"}, {"text": "."}, {"text": "``"}, {"text": "This"}, {"text": "is"}, {"text": "a"}, {"text": "company"}, {"text": "that"}, {"text": "*T*-146"}, {"text": "has"}, {"text": "invested"}, {"text": "in"}, {"text": "capacity"}, {"text": "additions"}, {"text": "more"}, {"text": "aggressively"}, {"text": "than"}, {"text": "any"}, {"text": "other"}, {"text": "company"}, {"text": "in"}, {"text": "the"}, {"text": "industry"}, {"text": "and"}, {"text": "now"}, {"text": "the"}, {"text": "industry"}, {"text": "is"}, {"text": "growing"}, {"text": "more"}, {"text": "slowly"}, {"text": "and"}, {"text": "they"}, {"text": "are"}, {"text": "suddenly"}, {"text": "poorly"}, {"text": "positioned"}, {"text": ","}, {"text": "''"}, {"text": "said"}, {"text": "*T*-2"}, {"text": "Michael"}, {"text": "Stark"}, {"text": ","}, {"text": "chip"}, {"text": "analyst"}, {"text": "at"}, {"text": "Robertson"}, {"text": ","}, {"text": "Stephens"}, {"text": "&"}, {"text": "Co"}, {"text": "."}, {"text": "``"}, {"text": "I"}, {"text": "think"}, {"text": "0"}, {"text": "the"}, {"text": "stock"}, {"text": "is"}, {"text": "dead"}, {"text": "money"}, {"text": "for"}, {"text": "a"}, {"text": "while"}, {"text": "."}, {"text": "''"}, {"text": "Yesterday"}, {"text": "'s"}, {"text": "announcement"}, {"text": "was"}, {"text": "made"}, {"text": "*-1"}, {"text": "after"}, {"text": "markets"}, {"text": "closed"}, {"text": "."}, {"text": "U.S."}, {"text": "chip"}, {"text": "makers"}, {"text": "are"}, {"text": "facing"}, {"text": "continued"}, {"text": "slack"}, {"text": "demand"}, {"text": "following"}, {"text": "a"}, {"text": "traditionally"}, {"text": "slow"}, {"text": "summer"}, {"text": "."}, {"text": "Part"}, {"text": "of"}, {"text": "the"}, {"text": "problem"}, {"text": "is"}, {"text": "that"}, {"text": "chip"}, {"text": "buyers"}, {"text": "are"}, {"text": "keeping"}, {"text": "inventories"}, {"text": "low"}, {"text": "because"}, {"text": "of"}, {"text": "jitters"}, {"text": "about"}, {"text": "the"}, {"text": "course"}, {"text": "of"}, {"text": "the"}, {"text": "U.S."}, {"text": "economy"}, {"text": "."}, {"text": "INGERSOLL-RAND"}, {"text": "Co"}, {"text": "."}, {"text": "-LRB-"}, {"text": "Woodcliff"}, {"text": "Lake"}, {"text": ","}, {"text": "N.J"}, {"text": "."}, {"text": "-RRB-"}, {"text": "--"}, {"text": "William"}, {"text": "G."}, {"text": "Kuhns"}, {"text": ","}, {"text": "former"}, {"text": "chairman"}, {"text": "*RNR*-1"}, {"text": "and"}, {"text": "chief"}, {"text": "executive"}, {"text": "officer"}, {"text": "*RNR*-1"}, {"text": "of"}, {"text": "General"}, {"text": "Public"}, {"text": "Utilities"}, {"text": "Corp."}, {"text": ","}, {"text": "was"}, {"text": "elected"}, {"text": "*-2"}, {"text": "a"}, {"text": "director"}, {"text": "of"}, {"text": "this"}, {"text": "maker"}, {"text": "of"}, {"text": "industrial"}, {"text": "and"}, {"text": "construction"}, {"text": "equipment"}, {"text": ","}, {"text": "*"}, {"text": "increasing"}, {"text": "board"}, {"text": "membership"}, {"text": "to"}, {"text": "10"}, {"text": "."}, {"text": "The"}, {"text": "dollar"}, {"text": "posted"}, {"text": "gains"}, {"text": "against"}, {"text": "all"}, {"text": "major"}, {"text": "currencies"}, {"text": "yesterday"}, {"text": ","}, {"text": "*-1"}, {"text": "buoyed"}, {"text": "*-2"}, {"text": "by"}, {"text": "persistent"}, {"text": "Japanese"}, {"text": "demand"}, {"text": "for"}, {"text": "U.S."}, {"text": "bond"}, {"text": "issues"}, {"text": "."}, {"text": "While"}, {"text": "market"}, {"text": "sentiment"}, {"text": "remains"}, {"text": "cautiously"}, {"text": "bearish"}, {"text": "on"}, {"text": "the"}, {"text": "dollar"}, {"text": "based"}, {"text": "on"}, {"text": "sluggish"}, {"text": "U.S."}, {"text": "economic"}, {"text": "indicators"}, {"text": ","}, {"text": "dealers"}, {"text": "note"}, {"text": "that"}, {"text": "Japanese"}, {"text": "demand"}, {"text": "has"}, {"text": "helped"}, {"text": "*-1"}, {"text": "underpin"}, {"text": "the"}, {"text": "dollar"}, {"text": "against"}, {"text": "the"}, {"text": "yen"}, {"text": "and"}, {"text": "has"}, {"text": "kept"}, {"text": "the"}, {"text": "U.S."}, {"text": "currency"}, {"text": "from"}, {"text": "*-2"}, {"text": "plunging"}, {"text": "below"}, {"text": "key"}, {"text": "levels"}, {"text": "against"}, {"text": "the"}, {"text": "mark"}, {"text": "."}, {"text": "At"}, {"text": "the"}, {"text": "same"}, {"text": "time"}, {"text": ","}, {"text": "dealers"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "U.S."}, {"text": "unit"}, {"text": "has"}, {"text": "been"}, {"text": "locked"}, {"text": "*-1"}, {"text": "into"}, {"text": "a"}, {"text": "relatively"}, {"text": "narrow"}, {"text": "range"}, {"text": "in"}, {"text": "recent"}, {"text": "weeks"}, {"text": ","}, {"text": "in"}, {"text": "part"}, {"text": "because"}, {"text": "the"}, {"text": "hefty"}, {"text": "Japanese"}, {"text": "demand"}, {"text": "for"}, {"text": "dollars"}, {"text": "has"}, {"text": "been"}, {"text": "offset"}, {"text": "*-2"}, {"text": "by"}, {"text": "the"}, {"text": "mark"}, {"text": "'s"}, {"text": "strength"}, {"text": ","}, {"text": "*"}, {"text": "resulting"}, {"text": "in"}, {"text": "a"}, {"text": "stalemate"}, {"text": "."}, {"text": "Jay"}, {"text": "Goldinger"}, {"text": ","}, {"text": "with"}, {"text": "Capital"}, {"text": "Insight"}, {"text": "Inc."}, {"text": ","}, {"text": "reasons"}, {"text": "that"}, {"text": "while"}, {"text": "the"}, {"text": "mark"}, {"text": "has"}, {"text": "posted"}, {"text": "significant"}, {"text": "gains"}, {"text": "against"}, {"text": "the"}, {"text": "yen"}, {"text": "as"}, {"text": "well"}, {"text": "--"}, {"text": "the"}, {"text": "mark"}, {"text": "climbed"}, {"text": "to"}, {"text": "77.70"}, {"text": "yen"}, {"text": "from"}, {"text": "77.56"}, {"text": "yen"}, {"text": "late"}, {"text": "Tuesday"}, {"text": "in"}, {"text": "New"}, {"text": "York"}, {"text": "--"}, {"text": "the"}, {"text": "strength"}, {"text": "of"}, {"text": "the"}, {"text": "U.S."}, {"text": "bond"}, {"text": "market"}, {"text": "compared"}, {"text": "*"}, {"text": "to"}, {"text": "its"}, {"text": "foreign"}, {"text": "counterparts"}, {"text": "has"}, {"text": "helped"}, {"text": "*-1"}, {"text": "lure"}, {"text": "investors"}, {"text": "to"}, {"text": "dollar-denominated"}, {"text": "bonds"}, {"text": ","}, {"text": "rather"}, {"text": "than"}, {"text": "mark"}, {"text": "bonds"}, {"text": "."}, {"text": "``"}, {"text": "Dollar-yen"}, {"text": "-LCB-"}, {"text": "trade"}, {"text": "-RCB-"}, {"text": "is"}, {"text": "the"}, {"text": "driving"}, {"text": "force"}, {"text": "in"}, {"text": "the"}, {"text": "market"}, {"text": ","}, {"text": "''"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "Tom"}, {"text": "Trettien"}, {"text": ","}, {"text": "a"}, {"text": "vice"}, {"text": "president"}, {"text": "with"}, {"text": "Banque"}, {"text": "Paribas"}, {"text": "in"}, {"text": "New"}, {"text": "York"}, {"text": ","}, {"text": "``"}, {"text": "but"}, {"text": "I"}, {"text": "'m"}, {"text": "not"}, {"text": "convinced"}, {"text": "*-2"}, {"text": "0"}, {"text": "it"}, {"text": "will"}, {"text": "continue"}, {"text": "."}, {"text": "Who"}, {"text": "*T*-1"}, {"text": "knows"}, {"text": "what"}, {"text": "*T*-2"}, {"text": "will"}, {"text": "happen"}, {"text": "down"}, {"text": "the"}, {"text": "road"}, {"text": ","}, {"text": "in"}, {"text": "three"}, {"text": "to"}, {"text": "six"}, {"text": "months"}, {"text": ","}, {"text": "if"}, {"text": "foreign"}, {"text": "investment"}, {"text": "starts"}, {"text": "*-3"}, {"text": "to"}, {"text": "erode"}, {"text": "?"}, {"text": "''"}, {"text": "In"}, {"text": "late"}, {"text": "New"}, {"text": "York"}, {"text": "trading"}, {"text": "yesterday"}, {"text": ","}, {"text": "the"}, {"text": "dollar"}, {"text": "was"}, {"text": "quoted"}, {"text": "*-1"}, {"text": "at"}, {"text": "1.8500"}, {"text": "marks"}, {"text": ","}, {"text": "up"}, {"text": "from"}, {"text": "1.8415"}, {"text": "marks"}, {"text": "late"}, {"text": "Tuesday"}, {"text": ","}, {"text": "and"}, {"text": "at"}, {"text": "143.80"}, {"text": "yen"}, {"text": ","}, {"text": "up"}, {"text": "from"}, {"text": "142.85"}, {"text": "yen"}, {"text": "late"}, {"text": "Tuesday"}, {"text": "."}, {"text": "Sterling"}, {"text": "was"}, {"text": "quoted"}, {"text": "*-1"}, {"text": "at"}, {"text": "$"}, {"text": "1.5755"}, {"text": "*U*"}, {"text": ","}, {"text": "down"}, {"text": "from"}, {"text": "$"}, {"text": "1.5805"}, {"text": "*U*"}, {"text": "late"}, {"text": "Tuesday"}, {"text": "."}, {"text": "In"}, {"text": "Tokyo"}, {"text": "Thursday"}, {"text": ","}, {"text": "the"}, {"text": "U.S."}, {"text": "currency"}, {"text": "opened"}, {"text": "for"}, {"text": "trading"}, {"text": "at"}, {"text": "143.93"}, {"text": "yen"}, {"text": ","}, {"text": "up"}, {"text": "from"}, {"text": "Wednesday"}, {"text": "'s"}, {"text": "Tokyo"}, {"text": "close"}, {"text": "of"}, {"text": "143.08"}, {"text": "yen"}, {"text": "."}, {"text": "Douglas"}, {"text": "Madison"}, {"text": ","}, {"text": "a"}, {"text": "corporate"}, {"text": "trader"}, {"text": "with"}, {"text": "Bank"}, {"text": "of"}, {"text": "America"}, {"text": "in"}, {"text": "Los"}, {"text": "Angeles"}, {"text": ","}, {"text": "traced"}, {"text": "the"}, {"text": "dollar"}, {"text": "'s"}, {"text": "recent"}, {"text": "solid"}, {"text": "performance"}, {"text": "against"}, {"text": "the"}, {"text": "yen"}, {"text": "to"}, {"text": "purchases"}, {"text": "of"}, {"text": "securities"}, {"text": "by"}, {"text": "Japanese"}, {"text": "insurance"}, {"text": "companies"}, {"text": "and"}, {"text": "trust"}, {"text": "banks"}, {"text": "and"}, {"text": "the"}, {"text": "sense"}, {"text": "that"}, {"text": "another"}, {"text": "wave"}, {"text": "of"}, {"text": "investment"}, {"text": "is"}, {"text": "waiting"}, {"text": "in"}, {"text": "the"}, {"text": "wings"}, {"text": "."}, {"text": "He"}, {"text": "contends"}, {"text": "that"}, {"text": "the"}, {"text": "perception"}, {"text": "in"}, {"text": "Japan"}, {"text": "of"}, {"text": "a"}, {"text": "vitriolic"}, {"text": "U.S."}, {"text": "response"}, {"text": "to"}, {"text": "Sony"}, {"text": "Corp."}, {"text": "'s"}, {"text": "announcement"}, {"text": "of"}, {"text": "its"}, {"text": "purchase"}, {"text": "of"}, {"text": "Columbia"}, {"text": "Pictures"}, {"text": "Entertainment"}, {"text": "Inc."}, {"text": "has"}, {"text": "been"}, {"text": "temporarily"}, {"text": "mollified"}, {"text": "*-2"}, {"text": "."}, {"text": "He"}, {"text": "cites"}, {"text": "the"}, {"text": "recent"}, {"text": "deal"}, {"text": "between"}, {"text": "the"}, {"text": "Mitsubishi"}, {"text": "Estate"}, {"text": "Co."}, {"text": "and"}, {"text": "the"}, {"text": "Rockefeller"}, {"text": "Group"}, {"text": ","}, {"text": "as"}, {"text": "well"}, {"text": "as"}, {"text": "the"}, {"text": "possible"}, {"text": "white"}, {"text": "knight"}, {"text": "role"}, {"text": "of"}, {"text": "an"}, {"text": "undisclosed"}, {"text": "Japanese"}, {"text": "company"}, {"text": "in"}, {"text": "the"}, {"text": "Georgia-Pacific"}, {"text": "Corp."}, {"text": "takeover"}, {"text": "bid"}, {"text": "for"}, {"text": "Great"}, {"text": "Northern"}, {"text": "Nekoosa"}, {"text": "Corp."}, {"text": "as"}, {"text": "evidence"}, {"text": "."}, {"text": "The"}, {"text": "forthcoming"}, {"text": "maturity"}, {"text": "in"}, {"text": "November"}, {"text": "of"}, {"text": "a"}, {"text": "10-year"}, {"text": "Japanese"}, {"text": "government"}, {"text": "yen-denominated"}, {"text": "bond"}, {"text": "issue"}, {"text": "valued"}, {"text": "*"}, {"text": "at"}, {"text": "about"}, {"text": "$"}, {"text": "16"}, {"text": "billion"}, {"text": "*U*"}, {"text": "has"}, {"text": "prompted"}, {"text": "speculation"}, {"text": "*ICH*-2"}, {"text": "in"}, {"text": "the"}, {"text": "market"}, {"text": "that"}, {"text": "investors"}, {"text": "redeeming"}, {"text": "the"}, {"text": "bonds"}, {"text": "will"}, {"text": "diversify"}, {"text": "into"}, {"text": "dollar-denominated"}, {"text": "instruments"}, {"text": ","}, {"text": "according"}, {"text": "to"}, {"text": "Mr."}, {"text": "Madison"}, {"text": "."}, {"text": "It"}, {"text": "*EXP*-1"}, {"text": "remains"}, {"text": "unclear"}, {"text": "whether"}, {"text": "the"}, {"text": "bond"}, {"text": "issue"}, {"text": "will"}, {"text": "be"}, {"text": "rolled"}, {"text": "*-2"}, {"text": "over"}, {"text": "."}, {"text": "Meanwhile"}, {"text": ","}, {"text": "traders"}, {"text": "in"}, {"text": "Tokyo"}, {"text": "say"}, {"text": "that"}, {"text": "the"}, {"text": "prospect"}, {"text": "of"}, {"text": "lower"}, {"text": "U.S."}, {"text": "interest"}, {"text": "rates"}, {"text": "has"}, {"text": "spurred"}, {"text": "dollar"}, {"text": "buying"}, {"text": "by"}, {"text": "Japanese"}, {"text": "institutions"}, {"text": "."}, {"text": "They"}, {"text": "point"}, {"text": "out"}, {"text": "that"}, {"text": "these"}, {"text": "institutions"}, {"text": "want"}, {"text": "*-1"}, {"text": "to"}, {"text": "lock"}, {"text": "in"}, {"text": "returns"}, {"text": "on"}, {"text": "high-yield"}, {"text": "U.S."}, {"text": "Treasury"}, {"text": "debt"}, {"text": "and"}, {"text": "suggest"}, {"text": "0"}, {"text": "demand"}, {"text": "for"}, {"text": "the"}, {"text": "U.S."}, {"text": "unit"}, {"text": "will"}, {"text": "continue"}, {"text": "*-2"}, {"text": "unabated"}, {"text": "until"}, {"text": "rates"}, {"text": "in"}, {"text": "the"}, {"text": "U.S."}, {"text": "recede"}, {"text": "."}, {"text": "The"}, {"text": "market"}, {"text": "again"}, {"text": "showed"}, {"text": "little"}, {"text": "interest"}, {"text": "in"}, {"text": "further"}, {"text": "evidence"}, {"text": "of"}, {"text": "a"}, {"text": "slowing"}, {"text": "U.S."}, {"text": "economy"}, {"text": ","}, {"text": "and"}, {"text": "traders"}, {"text": "note"}, {"text": "that"}, {"text": "the"}, {"text": "market"}, {"text": "in"}, {"text": "recent"}, {"text": "weeks"}, {"text": "has"}, {"text": "taken"}, {"text": "its"}, {"text": "cues"}, {"text": "more"}, {"text": "from"}, {"text": "Wall"}, {"text": "Street"}, {"text": "than"}, {"text": "U.S."}, {"text": "economic"}, {"text": "indicators"}, {"text": "."}, {"text": "Dealers"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "dollar"}, {"text": "merely"}, {"text": "drifted"}, {"text": "lower"}, {"text": "following"}, {"text": "the"}, {"text": "release"}, {"text": "Wednesday"}, {"text": "of"}, {"text": "the"}, {"text": "U.S."}, {"text": "purchasing"}, {"text": "managers"}, {"text": "'"}, {"text": "report"}, {"text": "."}, {"text": "The"}, {"text": "managers"}, {"text": "'"}, {"text": "index"}, {"text": ","}, {"text": "which"}, {"text": "*T*-147"}, {"text": "measures"}, {"text": "the"}, {"text": "health"}, {"text": "of"}, {"text": "the"}, {"text": "manufacturing"}, {"text": "sector"}, {"text": ","}, {"text": "stood"}, {"text": "at"}, {"text": "47.6"}, {"text": "%"}, {"text": "*ICH*-1"}, {"text": "in"}, {"text": "October"}, {"text": ","}, {"text": "above"}, {"text": "September"}, {"text": "'s"}, {"text": "46"}, {"text": "%"}, {"text": ","}, {"text": "and"}, {"text": "also"}, {"text": "above"}, {"text": "average"}, {"text": "forecasts"}, {"text": "for"}, {"text": "the"}, {"text": "index"}, {"text": "of"}, {"text": "45.3"}, {"text": "%"}, {"text": "."}, {"text": "Some"}, {"text": "dealers"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "dollar"}, {"text": "was"}, {"text": "pressured"}, {"text": "*-1"}, {"text": "slightly"}, {"text": "because"}, {"text": "a"}, {"text": "number"}, {"text": "of"}, {"text": "market"}, {"text": "participants"}, {"text": "had"}, {"text": "boosted"}, {"text": "their"}, {"text": "expectations"}, {"text": "in"}, {"text": "the"}, {"text": "past"}, {"text": "day"}, {"text": "and"}, {"text": "were"}, {"text": "looking"}, {"text": "for"}, {"text": "an"}, {"text": "index"}, {"text": "above"}, {"text": "50"}, {"text": ","}, {"text": "which"}, {"text": "*T*-148"}, {"text": "indicates"}, {"text": "an"}, {"text": "expanding"}, {"text": "manufacturing"}, {"text": "economy"}, {"text": "."}, {"text": "But"}, {"text": "most"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "index"}, {"text": "had"}, {"text": "no"}, {"text": "more"}, {"text": "than"}, {"text": "a"}, {"text": "minimal"}, {"text": "effect"}, {"text": "on"}, {"text": "trade"}, {"text": "."}, {"text": "On"}, {"text": "the"}, {"text": "Commodity"}, {"text": "Exchange"}, {"text": "in"}, {"text": "New"}, {"text": "York"}, {"text": ","}, {"text": "gold"}, {"text": "for"}, {"text": "current"}, {"text": "delivery"}, {"text": "settled"}, {"text": "at"}, {"text": "$"}, {"text": "374.20"}, {"text": "*U*"}, {"text": "an"}, {"text": "ounce"}, {"text": ","}, {"text": "down"}, {"text": "50"}, {"text": "cents"}, {"text": "."}, {"text": "Estimated"}, {"text": "volume"}, {"text": "was"}, {"text": "a"}, {"text": "moderate"}, {"text": "3.5"}, {"text": "million"}, {"text": "ounces"}, {"text": "."}, {"text": "In"}, {"text": "early"}, {"text": "trading"}, {"text": "in"}, {"text": "Hong"}, {"text": "Kong"}, {"text": "Thursday"}, {"text": ","}, {"text": "gold"}, {"text": "was"}, {"text": "quoted"}, {"text": "*-1"}, {"text": "at"}, {"text": "$"}, {"text": "374.19"}, {"text": "*U*"}, {"text": "an"}, {"text": "ounce"}, {"text": "."}, {"text": "``"}, {"text": "The"}, {"text": "Cosby"}, {"text": "Show"}, {"text": "''"}, {"text": "may"}, {"text": "have"}, {"text": "single-handedly"}, {"text": "turned"}, {"text": "around"}, {"text": "ratings"}, {"text": "at"}, {"text": "NBC"}, {"text": "since"}, {"text": "its"}, {"text": "debut"}, {"text": "in"}, {"text": "1984"}, {"text": ","}, {"text": "and"}, {"text": "the"}, {"text": "Huxtable"}, {"text": "family"}, {"text": "still"}, {"text": "keeps"}, {"text": "millions"}, {"text": "of"}, {"text": "viewers"}, {"text": "laughing"}, {"text": "Thursday"}, {"text": "night"}, {"text": "on"}, {"text": "the"}, {"text": "network"}, {"text": "."}, {"text": "But"}, {"text": "some"}, {"text": "of"}, {"text": "the"}, {"text": "TV"}, {"text": "stations"}, {"text": "that"}, {"text": "*T*-149"}, {"text": "bought"}, {"text": "``"}, {"text": "Cosby"}, {"text": "''"}, {"text": "reruns"}, {"text": "for"}, {"text": "record"}, {"text": "prices"}, {"text": "two"}, {"text": "years"}, {"text": "ago"}, {"text": "are"}, {"text": "n't"}, {"text": "laughing"}, {"text": "much"}, {"text": "these"}, {"text": "days"}, {"text": "."}, {"text": "The"}, {"text": "reruns"}, {"text": "have"}, {"text": "helped"}, {"text": "ratings"}, {"text": "at"}, {"text": "many"}, {"text": "of"}, {"text": "the"}, {"text": "187"}, {"text": "network"}, {"text": "affiliates"}, {"text": "and"}, {"text": "independent"}, {"text": "TV"}, {"text": "stations"}, {"text": "that"}, {"text": "*T*-150"}, {"text": "air"}, {"text": "the"}, {"text": "shows"}, {"text": "."}, {"text": "But"}, {"text": "the"}, {"text": "ratings"}, {"text": "are"}, {"text": "considerably"}, {"text": "below"}, {"text": "expectations"}, {"text": ","}, {"text": "and"}, {"text": "some"}, {"text": "stations"}, {"text": "say"}, {"text": "0"}, {"text": "they"}, {"text": "may"}, {"text": "not"}, {"text": "buy"}, {"text": "new"}, {"text": "episodes"}, {"text": "when"}, {"text": "their"}, {"text": "current"}, {"text": "contracts"}, {"text": "expire"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Meanwhile"}, {"text": ","}, {"text": "stations"}, {"text": "are"}, {"text": "fuming"}, {"text": "because"}, {"text": ","}, {"text": "many"}, {"text": "of"}, {"text": "them"}, {"text": "say"}, {"text": "0"}, {"text": "*T*-1"}, {"text": ","}, {"text": "the"}, {"text": "show"}, {"text": "'s"}, {"text": "distributor"}, {"text": ","}, {"text": "Viacom"}, {"text": "Inc."}, {"text": ","}, {"text": "is"}, {"text": "giving"}, {"text": "an"}, {"text": "ultimatum"}, {"text": ":"}, {"text": "*"}, {"text": "Either"}, {"text": "sign"}, {"text": "new"}, {"text": "long-term"}, {"text": "commitments"}, {"text": "*"}, {"text": "to"}, {"text": "buy"}, {"text": "future"}, {"text": "episodes"}, {"text": "or"}, {"text": "risk"}, {"text": "*-2"}, {"text": "losing"}, {"text": "``"}, {"text": "Cosby"}, {"text": "''"}, {"text": "to"}, {"text": "a"}, {"text": "competitor"}, {"text": "."}, {"text": "At"}, {"text": "the"}, {"text": "same"}, {"text": "time"}, {"text": ","}, {"text": "Viacom"}, {"text": "is"}, {"text": "trying"}, {"text": "*-1"}, {"text": "to"}, {"text": "persuade"}, {"text": "stations"}, {"text": "*-2"}, {"text": "to"}, {"text": "make"}, {"text": "commitments"}, {"text": "to"}, {"text": "``"}, {"text": "A"}, {"text": "Different"}, {"text": "World"}, {"text": ","}, {"text": "''"}, {"text": "a"}, {"text": "spin-off"}, {"text": "of"}, {"text": "``"}, {"text": "Cosby"}, {"text": "''"}, {"text": "whose"}, {"text": "reruns"}, {"text": "*T*-151"}, {"text": "will"}, {"text": "become"}, {"text": "available"}, {"text": "in"}, {"text": "1991"}, {"text": "."}, {"text": "Viacom"}, {"text": "denies"}, {"text": "0"}, {"text": "it"}, {"text": "'s"}, {"text": "using"}, {"text": "pressure"}, {"text": "tactics"}, {"text": "."}, {"text": "``"}, {"text": "We"}, {"text": "'re"}, {"text": "willing"}, {"text": "*-2"}, {"text": "to"}, {"text": "negotiate"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "Dennis"}, {"text": "Gillespie"}, {"text": ","}, {"text": "executive"}, {"text": "vice"}, {"text": "president"}, {"text": "of"}, {"text": "marketing"}, {"text": "."}, {"text": "``"}, {"text": "We"}, {"text": "'re"}, {"text": "offering"}, {"text": "this"}, {"text": "plan"}, {"text": "now"}, {"text": "because"}, {"text": "we"}, {"text": "feel"}, {"text": "0"}, {"text": "it"}, {"text": "'s"}, {"text": "the"}, {"text": "right"}, {"text": "time"}, {"text": "."}, {"text": "''"}, {"text": "But"}, {"text": ","}, {"text": "says"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "the"}, {"text": "general"}, {"text": "manager"}, {"text": "of"}, {"text": "a"}, {"text": "network"}, {"text": "affiliate"}, {"text": "in"}, {"text": "the"}, {"text": "Midwest"}, {"text": ","}, {"text": "``"}, {"text": "I"}, {"text": "think"}, {"text": "0"}, {"text": "if"}, {"text": "I"}, {"text": "tell"}, {"text": "them"}, {"text": "0"}, {"text": "I"}, {"text": "need"}, {"text": "more"}, {"text": "time"}, {"text": ","}, {"text": "they"}, {"text": "'ll"}, {"text": "take"}, {"text": "`"}, {"text": "Cosby"}, {"text": "'"}, {"text": "across"}, {"text": "the"}, {"text": "street"}, {"text": ","}, {"text": "''"}, {"text": "Viacom"}, {"text": "'s"}, {"text": "move"}, {"text": "comes"}, {"text": "as"}, {"text": "the"}, {"text": "syndication"}, {"text": "market"}, {"text": "is"}, {"text": "being"}, {"text": "flooded"}, {"text": "*-76"}, {"text": "with"}, {"text": "situation"}, {"text": "comedies"}, {"text": "that"}, {"text": "*T*-152"}, {"text": "are"}, {"text": "still"}, {"text": "running"}, {"text": "on"}, {"text": "the"}, {"text": "networks"}, {"text": "."}, {"text": "One"}, {"text": "station"}, {"text": "manager"}, {"text": "says"}, {"text": "0"}, {"text": "he"}, {"text": "believes"}, {"text": "0"}, {"text": "Viacom"}, {"text": "'s"}, {"text": "move"}, {"text": "is"}, {"text": "a"}, {"text": "``"}, {"text": "pre-emptive"}, {"text": "strike"}, {"text": "''"}, {"text": "because"}, {"text": "the"}, {"text": "company"}, {"text": "is"}, {"text": "worried"}, {"text": "that"}, {"text": "``"}, {"text": "Cosby"}, {"text": "''"}, {"text": "ratings"}, {"text": "will"}, {"text": "continue"}, {"text": "*-1"}, {"text": "to"}, {"text": "drop"}, {"text": "in"}, {"text": "syndication"}, {"text": "over"}, {"text": "the"}, {"text": "next"}, {"text": "few"}, {"text": "years"}, {"text": "."}, {"text": "``"}, {"text": "Cosby"}, {"text": "''"}, {"text": "is"}, {"text": "down"}, {"text": "a"}, {"text": "full"}, {"text": "ratings"}, {"text": "point"}, {"text": "in"}, {"text": "the"}, {"text": "week"}, {"text": "of"}, {"text": "Oct."}, {"text": "2-8"}, {"text": "over"}, {"text": "the"}, {"text": "same"}, {"text": "week"}, {"text": "a"}, {"text": "year"}, {"text": "ago"}, {"text": ","}, {"text": "according"}, {"text": "to"}, {"text": "A.C."}, {"text": "Nielsen"}, {"text": "Co"}, {"text": "."}, {"text": "Mr."}, {"text": "Gillespie"}, {"text": "at"}, {"text": "Viacom"}, {"text": "says"}, {"text": "0"}, {"text": "the"}, {"text": "ratings"}, {"text": "are"}, {"text": "rising"}, {"text": "."}, {"text": "And"}, {"text": "executives"}, {"text": "at"}, {"text": "stations"}, {"text": "in"}, {"text": "such"}, {"text": "major"}, {"text": "markets"}, {"text": "as"}, {"text": "Washington"}, {"text": ";"}, {"text": "Providence"}, {"text": ","}, {"text": "R.I."}, {"text": ";"}, {"text": "Cleveland"}, {"text": ";"}, {"text": "Raleigh"}, {"text": ","}, {"text": "N.C."}, {"text": ";"}, {"text": "Minneapolis"}, {"text": ","}, {"text": "and"}, {"text": "Louisville"}, {"text": ","}, {"text": "Ky."}, {"text": ","}, {"text": "say"}, {"text": "0"}, {"text": "they"}, {"text": "may"}, {"text": "very"}, {"text": "well"}, {"text": "not"}, {"text": "renew"}, {"text": "``"}, {"text": "Cosby"}, {"text": "."}, {"text": "''"}, {"text": "Dick"}, {"text": "Lobo"}, {"text": ","}, {"text": "the"}, {"text": "general"}, {"text": "manager"}, {"text": "of"}, {"text": "WTVJ"}, {"text": ","}, {"text": "the"}, {"text": "NBC-owned"}, {"text": "station"}, {"text": "in"}, {"text": "Miami"}, {"text": ","}, {"text": "for"}, {"text": "example"}, {"text": ","}, {"text": "says"}, {"text": "0"}, {"text": "the"}, {"text": "show"}, {"text": "has"}, {"text": "``"}, {"text": "been"}, {"text": "a"}, {"text": "major"}, {"text": "disappointment"}, {"text": "to"}, {"text": "us"}, {"text": "."}, {"text": "''"}, {"text": "``"}, {"text": "At"}, {"text": "the"}, {"text": "prices"}, {"text": "0"}, {"text": "we"}, {"text": "were"}, {"text": "charged"}, {"text": "*-78"}, {"text": "*T*-1"}, {"text": ","}, {"text": "there"}, {"text": "should"}, {"text": "have"}, {"text": "been"}, {"text": "some"}, {"text": "return"}, {"text": "for"}, {"text": "the"}, {"text": "dollar"}, {"text": "."}, {"text": "There"}, {"text": "was"}, {"text": "n't"}, {"text": "*?*"}, {"text": "."}, {"text": "''"}, {"text": "Neil"}, {"text": "Kuvin"}, {"text": ","}, {"text": "the"}, {"text": "general"}, {"text": "manager"}, {"text": "of"}, {"text": "WHAS"}, {"text": ","}, {"text": "the"}, {"text": "CBS"}, {"text": "affiliate"}, {"text": "in"}, {"text": "Louisville"}, {"text": ","}, {"text": "says"}, {"text": "0"}, {"text": "``"}, {"text": "Cosby"}, {"text": "''"}, {"text": "gets"}, {"text": "the"}, {"text": "station"}, {"text": "'s"}, {"text": "highest"}, {"text": "ratings"}, {"text": "and"}, {"text": "0"}, {"text": "he"}, {"text": "'s"}, {"text": "``"}, {"text": "pleased"}, {"text": "*-1"}, {"text": "."}, {"text": "''"}, {"text": "But"}, {"text": "he"}, {"text": "adds"}, {"text": ","}, {"text": "``"}, {"text": "I"}, {"text": "feel"}, {"text": "pressured"}, {"text": "*-1"}, {"text": ","}, {"text": "disappointed"}, {"text": "*-1"}, {"text": ","}, {"text": "uncomfortable"}, {"text": "and"}, {"text": ","}, {"text": "frankly"}, {"text": ","}, {"text": "quite"}, {"text": "angry"}, {"text": "with"}, {"text": "Viacom"}, {"text": "."}, {"text": "The"}, {"text": "Life"}, {"text": "Insurance"}, {"text": "Co."}, {"text": "of"}, {"text": "Georgia"}, {"text": "has"}, {"text": "officially"}, {"text": "opened"}, {"text": "an"}, {"text": "office"}, {"text": "in"}, {"text": "Taipei"}, {"text": "."}, {"text": "David"}, {"text": "Wu"}, {"text": ","}, {"text": "the"}, {"text": "company"}, {"text": "'s"}, {"text": "representative"}, {"text": "in"}, {"text": "Taiwan"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "Atlanta-based"}, {"text": "Life"}, {"text": "of"}, {"text": "Georgia"}, {"text": "will"}, {"text": "sell"}, {"text": "conventional"}, {"text": "life-insurance"}, {"text": "products"}, {"text": "."}, {"text": "Life"}, {"text": "of"}, {"text": "Georgia"}, {"text": "is"}, {"text": "part"}, {"text": "of"}, {"text": "the"}, {"text": "Nationale"}, {"text": "Nederlanden"}, {"text": "Group"}, {"text": ","}, {"text": "based"}, {"text": "*"}, {"text": "in"}, {"text": "the"}, {"text": "Netherlands"}, {"text": "."}, {"text": "In"}, {"text": "this"}, {"text": "era"}, {"text": "of"}, {"text": "frantic"}, {"text": "competition"}, {"text": "for"}, {"text": "ad"}, {"text": "dollars"}, {"text": ","}, {"text": "a"}, {"text": "lot"}, {"text": "of"}, {"text": "revenue-desperate"}, {"text": "magazines"}, {"text": "are"}, {"text": "getting"}, {"text": "pretty"}, {"text": "cozy"}, {"text": "with"}, {"text": "advertisers"}, {"text": "--"}, {"text": "*-1"}, {"text": "fawning"}, {"text": "over"}, {"text": "them"}, {"text": "in"}, {"text": "articles"}, {"text": "and"}, {"text": "offering"}, {"text": "pages"}, {"text": "of"}, {"text": "advertorial"}, {"text": "space"}, {"text": "."}, {"text": "So"}, {"text": "can"}, {"text": "a"}, {"text": "magazine"}, {"text": "survive"}, {"text": "by"}, {"text": "*-1"}, {"text": "downright"}, {"text": "thumbing"}, {"text": "its"}, {"text": "nose"}, {"text": "at"}, {"text": "major"}, {"text": "advertisers"}, {"text": "?"}, {"text": "Garbage"}, {"text": "magazine"}, {"text": ","}, {"text": "billed"}, {"text": "*"}, {"text": "as"}, {"text": "``"}, {"text": "The"}, {"text": "Practical"}, {"text": "Journal"}, {"text": "for"}, {"text": "the"}, {"text": "Environment"}, {"text": ","}, {"text": "''"}, {"text": "is"}, {"text": "about"}, {"text": "*-1"}, {"text": "to"}, {"text": "find"}, {"text": "out"}, {"text": "0"}, {"text": "*?*"}, {"text": "."}, {"text": "*-2"}, {"text": "Founded"}, {"text": "*-1"}, {"text": "by"}, {"text": "Brooklyn"}, {"text": ","}, {"text": "N.Y."}, {"text": ","}, {"text": "publishing"}, {"text": "entrepreneur"}, {"text": "Patricia"}, {"text": "Poore"}, {"text": ","}, {"text": "Garbage"}, {"text": "made"}, {"text": "its"}, {"text": "debut"}, {"text": "this"}, {"text": "fall"}, {"text": "with"}, {"text": "the"}, {"text": "promise"}, {"text": "*"}, {"text": "to"}, {"text": "give"}, {"text": "consumers"}, {"text": "the"}, {"text": "straight"}, {"text": "scoop"}, {"text": "on"}, {"text": "the"}, {"text": "U.S."}, {"text": "waste"}, {"text": "crisis"}, {"text": "."}, {"text": "The"}, {"text": "magazine"}, {"text": "combines"}, {"text": "how-to"}, {"text": "pieces"}, {"text": "on"}, {"text": "topics"}, {"text": "like"}, {"text": "backyard"}, {"text": "composting"}, {"text": ","}, {"text": "explanatory"}, {"text": "essays"}, {"text": "on"}, {"text": "such"}, {"text": "things"}, {"text": "as"}, {"text": "what"}, {"text": "*T*-1"}, {"text": "happens"}, {"text": "after"}, {"text": "you"}, {"text": "flush"}, {"text": "your"}, {"text": "toilet"}, {"text": ","}, {"text": "and"}, {"text": "hard-hitting"}, {"text": "pieces"}, {"text": "on"}, {"text": "alleged"}, {"text": "environmental"}, {"text": "offenders"}, {"text": "."}, {"text": "Garbage"}, {"text": "editors"}, {"text": "have"}, {"text": "dumped"}, {"text": "considerable"}, {"text": "energy"}, {"text": "into"}, {"text": "a"}, {"text": "whirling"}, {"text": "rampage"}, {"text": "through"}, {"text": "supermarket"}, {"text": "aisles"}, {"text": "in"}, {"text": "a"}, {"text": "bid"}, {"text": "*"}, {"text": "to"}, {"text": "identify"}, {"text": "corporate"}, {"text": "America"}, {"text": "'s"}, {"text": "good"}, {"text": "guys"}, {"text": "and"}, {"text": "bad"}, {"text": "boys"}, {"text": "."}, {"text": "In"}, {"text": "one"}, {"text": "feature"}, {"text": ","}, {"text": "called"}, {"text": "*"}, {"text": "``"}, {"text": "In"}, {"text": "the"}, {"text": "Dumpster"}, {"text": ","}, {"text": "''"}, {"text": "editors"}, {"text": "point"}, {"text": "out"}, {"text": "a"}, {"text": "product"}, {"text": "0"}, {"text": "they"}, {"text": "deem"}, {"text": "*T*-1"}, {"text": "to"}, {"text": "be"}, {"text": "a"}, {"text": "particularly"}, {"text": "bad"}, {"text": "offender"}, {"text": "."}, {"text": "From"}, {"text": "an"}, {"text": "advertising"}, {"text": "standpoint"}, {"text": ","}, {"text": "the"}, {"text": "problem"}, {"text": "is"}, {"text": "0"}, {"text": "these"}, {"text": "offenders"}, {"text": "are"}, {"text": "likely"}, {"text": "*-1"}, {"text": "to"}, {"text": "be"}, {"text": "some"}, {"text": "of"}, {"text": "the"}, {"text": "same"}, {"text": "folks"}, {"text": "that"}, {"text": "*T*-153"}, {"text": "are"}, {"text": "major"}, {"text": "magazine"}, {"text": "advertisers"}, {"text": "these"}, {"text": "days"}, {"text": "."}, {"text": "With"}, {"text": "only"}, {"text": "two"}, {"text": "issues"}, {"text": "under"}, {"text": "its"}, {"text": "belt"}, {"text": ","}, {"text": "Garbage"}, {"text": "has"}, {"text": "alienated"}, {"text": "some"}, {"text": "would-be"}, {"text": "advertisers"}, {"text": "and"}, {"text": "raised"}, {"text": "the"}, {"text": "ire"}, {"text": "of"}, {"text": "others"}, {"text": "."}, {"text": "Campbell"}, {"text": "Soup"}, {"text": ","}, {"text": "for"}, {"text": "one"}, {"text": ","}, {"text": "is"}, {"text": "furious"}, {"text": "0"}, {"text": "its"}, {"text": "Souper"}, {"text": "Combo"}, {"text": "microwave"}, {"text": "product"}, {"text": "was"}, {"text": "chastised"}, {"text": "*-79"}, {"text": "in"}, {"text": "the"}, {"text": "premiere"}, {"text": "``"}, {"text": "In"}, {"text": "the"}, {"text": "Dumpster"}, {"text": "''"}, {"text": "column"}, {"text": "."}, {"text": "The"}, {"text": "magazine"}, {"text": "'s"}, {"text": "editors"}, {"text": "ran"}, {"text": "a"}, {"text": "giant"}, {"text": "diagram"}, {"text": "of"}, {"text": "the"}, {"text": "product"}, {"text": "with"}, {"text": "arrows"}, {"text": "pointing"}, {"text": "to"}, {"text": "the"}, {"text": "packaging"}, {"text": "'s"}, {"text": "polystyrene"}, {"text": "foam"}, {"text": ","}, {"text": "polyproplene"}, {"text": "and"}, {"text": "polyester"}, {"text": "film"}, {"text": "--"}, {"text": "all"}, {"text": "plastic"}, {"text": "items"}, {"text": "0"}, {"text": "they"}, {"text": "say"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "are"}, {"text": "non-biodegradable"}, {"text": "."}, {"text": "``"}, {"text": "It"}, {"text": "'s"}, {"text": "precisely"}, {"text": "the"}, {"text": "kind"}, {"text": "of"}, {"text": "product"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "'s"}, {"text": "created"}, {"text": "the"}, {"text": "municipal"}, {"text": "landfill"}, {"text": "monster"}, {"text": ","}, {"text": "''"}, {"text": "the"}, {"text": "editors"}, {"text": "wrote"}, {"text": "*T*-2"}, {"text": "."}, {"text": "``"}, {"text": "I"}, {"text": "think"}, {"text": "that"}, {"text": "this"}, {"text": "magazine"}, {"text": "is"}, {"text": "not"}, {"text": "only"}, {"text": "called"}, {"text": "*-1"}, {"text": "Garbage"}, {"text": ","}, {"text": "but"}, {"text": "it"}, {"text": "is"}, {"text": "practicing"}, {"text": "journalistic"}, {"text": "garbage"}, {"text": ","}, {"text": "''"}, {"text": "fumes"}, {"text": "*T*-2"}, {"text": "a"}, {"text": "spokesman"}, {"text": "for"}, {"text": "Campbell"}, {"text": "Soup"}, {"text": "."}, {"text": "He"}, {"text": "says"}, {"text": "0"}, {"text": "Campbell"}, {"text": "was"}, {"text": "n't"}, {"text": "even"}, {"text": "contacted"}, {"text": "*-1"}, {"text": "by"}, {"text": "the"}, {"text": "magazine"}, {"text": "for"}, {"text": "the"}, {"text": "opportunity"}, {"text": "*"}, {"text": "to"}, {"text": "comment"}, {"text": "."}, {"text": "Modifications"}, {"text": "*ICH*-3"}, {"text": "had"}, {"text": "been"}, {"text": "made"}, {"text": "*-80"}, {"text": "to"}, {"text": "the"}, {"text": "Souper"}, {"text": "Combo"}, {"text": "product"}, {"text": "at"}, {"text": "the"}, {"text": "time"}, {"text": "0"}, {"text": "the"}, {"text": "issue"}, {"text": "was"}, {"text": "printed"}, {"text": "*-81"}, {"text": "*T*-1"}, {"text": ","}, {"text": "he"}, {"text": "says"}, {"text": "0"}, {"text": "*T*-2"}, {"text": ","}, {"text": "*-80"}, {"text": "making"}, {"text": "it"}, {"text": "less"}, {"text": "an"}, {"text": "offender"}, {"text": "than"}, {"text": "*"}, {"text": "was"}, {"text": "portrayed"}, {"text": "*-4"}, {"text": "."}, {"text": "He"}, {"text": "admits"}, {"text": ","}, {"text": "though"}, {"text": ","}, {"text": "0"}, {"text": "it"}, {"text": "is"}, {"text": "n't"}, {"text": "one"}, {"text": "of"}, {"text": "Campbell"}, {"text": "Soup"}, {"text": "'s"}, {"text": "better"}, {"text": "products"}, {"text": "in"}, {"text": "terms"}, {"text": "of"}, {"text": "recyclability"}, {"text": "."}, {"text": "Campbell"}, {"text": "Soup"}, {"text": ","}, {"text": "not"}, {"text": "surprisingly"}, {"text": ","}, {"text": "does"}, {"text": "n't"}, {"text": "have"}, {"text": "any"}, {"text": "plans"}, {"text": "*"}, {"text": "to"}, {"text": "advertise"}, {"text": "in"}, {"text": "the"}, {"text": "magazine"}, {"text": ","}, {"text": "according"}, {"text": "to"}, {"text": "its"}, {"text": "spokesman"}, {"text": "."}, {"text": "Some"}, {"text": "media"}, {"text": "experts"}, {"text": "question"}, {"text": "whether"}, {"text": "a"}, {"text": "young"}, {"text": "magazine"}, {"text": "can"}, {"text": "risk"}, {"text": "*-1"}, {"text": "turning"}, {"text": "off"}, {"text": "Madison"}, {"text": "Avenue"}, {"text": "'s"}, {"text": "big"}, {"text": "spenders"}, {"text": "."}, {"text": "``"}, {"text": "You"}, {"text": "really"}, {"text": "need"}, {"text": "the"}, {"text": "Campbell"}, {"text": "Soups"}, {"text": "of"}, {"text": "the"}, {"text": "world"}, {"text": "to"}, {"text": "be"}, {"text": "interested"}, {"text": "in"}, {"text": "your"}, {"text": "magazine"}, {"text": "if"}, {"text": "you"}, {"text": "'re"}, {"text": "going"}, {"text": "*-1"}, {"text": "to"}, {"text": "make"}, {"text": "a"}, {"text": "run"}, {"text": "of"}, {"text": "it"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-2"}, {"text": "Mike"}, {"text": "White"}, {"text": ","}, {"text": "senior"}, {"text": "vice"}, {"text": "president"}, {"text": "and"}, {"text": "media"}, {"text": "director"}, {"text": "at"}, {"text": "DDB"}, {"text": "Needham"}, {"text": ","}, {"text": "Chicago"}, {"text": "."}, {"text": "``"}, {"text": "The"}, {"text": "economics"}, {"text": "of"}, {"text": "magazine"}, {"text": "publishing"}, {"text": "pretty"}, {"text": "much"}, {"text": "require"}, {"text": "that"}, {"text": "you"}, {"text": "have"}, {"text": "a"}, {"text": "pretty"}, {"text": "solid"}, {"text": "base"}, {"text": "''"}, {"text": "of"}, {"text": "big-time"}, {"text": "ad"}, {"text": "spenders"}, {"text": ","}, {"text": "he"}, {"text": "adds"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "The"}, {"text": "first"}, {"text": "two"}, {"text": "issues"}, {"text": "featured"}, {"text": "ads"}, {"text": "from"}, {"text": "only"}, {"text": "a"}, {"text": "handful"}, {"text": "of"}, {"text": "big"}, {"text": "advertisers"}, {"text": ","}, {"text": "including"}, {"text": "General"}, {"text": "Electric"}, {"text": "and"}, {"text": "Adolph"}, {"text": "Coors"}, {"text": ","}, {"text": "but"}, {"text": "the"}, {"text": "majority"}, {"text": "were"}, {"text": "from"}, {"text": "companies"}, {"text": "like"}, {"text": "Waste"}, {"text": "Management"}, {"text": "Inc."}, {"text": "and"}, {"text": "Bumkins"}, {"text": "International"}, {"text": ","}, {"text": "firms"}, {"text": "that"}, {"text": "*T*-154"}, {"text": "do"}, {"text": "n't"}, {"text": "spend"}, {"text": "much"}, {"text": "money"}, {"text": "*-1"}, {"text": "advertising"}, {"text": "and"}, {"text": "ca"}, {"text": "n't"}, {"text": "be"}, {"text": "relied"}, {"text": "on"}, {"text": "*-1"}, {"text": "*-1"}, {"text": "to"}, {"text": "support"}, {"text": "a"}, {"text": "magazine"}, {"text": "over"}, {"text": "the"}, {"text": "long"}, {"text": "haul"}, {"text": "."}, {"text": "A"}, {"text": "Waste"}, {"text": "Management"}, {"text": "spokeswoman"}, {"text": "says"}, {"text": "0"}, {"text": "its"}, {"text": "ad"}, {"text": "in"}, {"text": "the"}, {"text": "premiere"}, {"text": "issue"}, {"text": "was"}, {"text": "a"}, {"text": "one-time"}, {"text": "purchase"}, {"text": ","}, {"text": "and"}, {"text": "0"}, {"text": "it"}, {"text": "does"}, {"text": "n't"}, {"text": "have"}, {"text": "any"}, {"text": "plans"}, {"text": "*"}, {"text": "to"}, {"text": "advertise"}, {"text": "in"}, {"text": "future"}, {"text": "issues"}, {"text": "."}, {"text": "``"}, {"text": "We"}, {"text": "do"}, {"text": "n't"}, {"text": "spend"}, {"text": "much"}, {"text": "on"}, {"text": "print"}, {"text": "advertising"}, {"text": ","}, {"text": "''"}, {"text": "she"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "."}, {"text": "But"}, {"text": "Ms."}, {"text": "Poore"}, {"text": ","}, {"text": "the"}, {"text": "magazine"}, {"text": "'s"}, {"text": "editor"}, {"text": "and"}, {"text": "publisher"}, {"text": ","}, {"text": "contends"}, {"text": "0"}, {"text": "Garbage"}, {"text": "can"}, {"text": "survive"}, {"text": ","}, {"text": "at"}, {"text": "least"}, {"text": "initially"}, {"text": ","}, {"text": "on"}, {"text": "subscription"}, {"text": "revenues"}, {"text": "."}, {"text": "Individual"}, {"text": "copies"}, {"text": "of"}, {"text": "the"}, {"text": "magazine"}, {"text": "sell"}, {"text": "for"}, {"text": "$"}, {"text": "2.95"}, {"text": "*U*"}, {"text": "and"}, {"text": "yearly"}, {"text": "subscriptions"}, {"text": "cost"}, {"text": "$"}, {"text": "21"}, {"text": "*U*"}, {"text": "."}, {"text": "-LRB-"}, {"text": "It"}, {"text": "is"}, {"text": ","}, {"text": "of"}, {"text": "course"}, {"text": ","}, {"text": "printed"}, {"text": "*-1"}, {"text": "on"}, {"text": "recycled"}, {"text": "paper"}, {"text": "."}, {"text": "-RRB-"}, {"text": "According"}, {"text": "to"}, {"text": "Ms."}, {"text": "Poore"}, {"text": ","}, {"text": "Old-House"}, {"text": "Journal"}, {"text": "Corp."}, {"text": ","}, {"text": "her"}, {"text": "publishing"}, {"text": "company"}, {"text": ","}, {"text": "printed"}, {"text": "and"}, {"text": "sold"}, {"text": "all"}, {"text": "126,000"}, {"text": "copies"}, {"text": "of"}, {"text": "the"}, {"text": "premiere"}, {"text": "issue"}, {"text": "."}, {"text": "The"}, {"text": "first"}, {"text": "and"}, {"text": "second"}, {"text": "issues"}, {"text": "sold"}, {"text": "out"}, {"text": "on"}, {"text": "newsstands"}, {"text": ","}, {"text": "she"}, {"text": "says"}, {"text": "0"}, {"text": "*T*-1"}, {"text": ","}, {"text": "and"}, {"text": "the"}, {"text": "magazine"}, {"text": "has"}, {"text": "orders"}, {"text": "for"}, {"text": "93,000"}, {"text": "subscriptions"}, {"text": "."}, {"text": "*-1"}, {"text": "Asked"}, {"text": "*-2"}, {"text": "whether"}, {"text": "potential"}, {"text": "advertisers"}, {"text": "will"}, {"text": "be"}, {"text": "scared"}, {"text": "*-83"}, {"text": "away"}, {"text": "by"}, {"text": "the"}, {"text": "magazine"}, {"text": "'s"}, {"text": "direct"}, {"text": "policy"}, {"text": ","}, {"text": "Ms."}, {"text": "Poore"}, {"text": "replies"}, {"text": ":"}, {"text": "``"}, {"text": "I"}, {"text": "do"}, {"text": "n't"}, {"text": "know"}, {"text": "and"}, {"text": "I"}, {"text": "do"}, {"text": "n't"}, {"text": "care"}, {"text": "."}, {"text": "I"}, {"text": "'m"}, {"text": "not"}, {"text": "saying"}, {"text": "0"}, {"text": "advertising"}, {"text": "revenue"}, {"text": "is"}, {"text": "n't"}, {"text": "important"}, {"text": ","}, {"text": "''"}, {"text": "she"}, {"text": "says"}, {"text": "0"}, {"text": "*T*-1"}, {"text": ","}, {"text": "``"}, {"text": "but"}, {"text": "I"}, {"text": "could"}, {"text": "n't"}, {"text": "sleep"}, {"text": "at"}, {"text": "night"}, {"text": "''"}, {"text": "if"}, {"text": "the"}, {"text": "magazine"}, {"text": "bowed"}, {"text": "to"}, {"text": "a"}, {"text": "company"}, {"text": "because"}, {"text": "they"}, {"text": "once"}, {"text": "took"}, {"text": "out"}, {"text": "an"}, {"text": "ad"}, {"text": "."}, {"text": "Ad"}, {"text": "Notes"}, {"text": "..."}, {"text": "."}, {"text": "INTERPUBLIC"}, {"text": "ON"}, {"text": "TV"}, {"text": ":"}, {"text": "Interpublic"}, {"text": "Group"}, {"text": "said"}, {"text": "0"}, {"text": "its"}, {"text": "television"}, {"text": "programming"}, {"text": "operations"}, {"text": "--"}, {"text": "which"}, {"text": "it"}, {"text": "expanded"}, {"text": "*T*-1"}, {"text": "earlier"}, {"text": "this"}, {"text": "year"}, {"text": "--"}, {"text": "agreed"}, {"text": "*-2"}, {"text": "to"}, {"text": "supply"}, {"text": "more"}, {"text": "than"}, {"text": "4,000"}, {"text": "hours"}, {"text": "of"}, {"text": "original"}, {"text": "programming"}, {"text": "across"}, {"text": "Europe"}, {"text": "in"}, {"text": "1990"}, {"text": "."}, {"text": "It"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "programs"}, {"text": ","}, {"text": "largely"}, {"text": "game"}, {"text": "shows"}, {"text": ","}, {"text": "will"}, {"text": "be"}, {"text": "provided"}, {"text": "*-84"}, {"text": "by"}, {"text": "its"}, {"text": "E.C."}, {"text": "Television"}, {"text": "unit"}, {"text": "along"}, {"text": "with"}, {"text": "Fremantle"}, {"text": "International"}, {"text": ","}, {"text": "a"}, {"text": "producer"}, {"text": "and"}, {"text": "distributor"}, {"text": "of"}, {"text": "game"}, {"text": "shows"}, {"text": "of"}, {"text": "which"}, {"text": "it"}, {"text": "recently"}, {"text": "bought"}, {"text": "49"}, {"text": "%"}, {"text": "*T*-1"}, {"text": "."}, {"text": "It"}, {"text": "said"}, {"text": "0"}, {"text": "that"}, {"text": "volume"}, {"text": "makes"}, {"text": "it"}, {"text": "the"}, {"text": "largest"}, {"text": "supplier"}, {"text": "of"}, {"text": "original"}, {"text": "TV"}, {"text": "programming"}, {"text": "in"}, {"text": "Europe"}, {"text": "."}, {"text": "Interpublic"}, {"text": "is"}, {"text": "providing"}, {"text": "the"}, {"text": "programming"}, {"text": "in"}, {"text": "return"}, {"text": "for"}, {"text": "advertising"}, {"text": "time"}, {"text": ","}, {"text": "which"}, {"text": "it"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "will"}, {"text": "be"}, {"text": "valued"}, {"text": "*-85"}, {"text": "at"}, {"text": "more"}, {"text": "than"}, {"text": "$"}, {"text": "75"}, {"text": "million"}, {"text": "*U*"}, {"text": "in"}, {"text": "1990"}, {"text": "and"}, {"text": "$"}, {"text": "150"}, {"text": "million"}, {"text": "*U*"}, {"text": "in"}, {"text": "1991"}, {"text": "."}, {"text": "It"}, {"text": "plans"}, {"text": "*-1"}, {"text": "to"}, {"text": "sell"}, {"text": "the"}, {"text": "ad"}, {"text": "time"}, {"text": "to"}, {"text": "its"}, {"text": "clients"}, {"text": "at"}, {"text": "a"}, {"text": "discount"}, {"text": "."}, {"text": "NEW"}, {"text": "ACCOUNT"}, {"text": ":"}, {"text": "CoreStates"}, {"text": "Financial"}, {"text": "Corp."}, {"text": ","}, {"text": "Philadelphia"}, {"text": ","}, {"text": "named"}, {"text": "Earle"}, {"text": "Palmer"}, {"text": "Brown"}, {"text": "&"}, {"text": "Spiro"}, {"text": ","}, {"text": "Philadelphia"}, {"text": ","}, {"text": "as"}, {"text": "agency"}, {"text": "of"}, {"text": "record"}, {"text": "for"}, {"text": "its"}, {"text": "$"}, {"text": "5"}, {"text": "million"}, {"text": "*U*"}, {"text": "account"}, {"text": "."}, {"text": "The"}, {"text": "business"}, {"text": "had"}, {"text": "been"}, {"text": "handled"}, {"text": "*-86"}, {"text": "by"}, {"text": "VanSant"}, {"text": "Dugdale"}, {"text": ","}, {"text": "Baltimore"}, {"text": "."}, {"text": "AT&T"}, {"text": "FAX"}, {"text": ":"}, {"text": "American"}, {"text": "Telephone"}, {"text": "&"}, {"text": "Telegraph"}, {"text": "'s"}, {"text": "General"}, {"text": "Business"}, {"text": "Systems"}, {"text": "division"}, {"text": ","}, {"text": "New"}, {"text": "York"}, {"text": ","}, {"text": "awarded"}, {"text": "the"}, {"text": "ad"}, {"text": "account"}, {"text": "for"}, {"text": "its"}, {"text": "Fax"}, {"text": "product"}, {"text": "line"}, {"text": "to"}, {"text": "Ogilvy"}, {"text": "&"}, {"text": "Mather"}, {"text": ","}, {"text": "New"}, {"text": "York"}, {"text": ","}, {"text": "a"}, {"text": "WPP"}, {"text": "Group"}, {"text": "agency"}, {"text": "."}, {"text": "Billings"}, {"text": "*ICH*-3"}, {"text": "were"}, {"text": "n't"}, {"text": "disclosed"}, {"text": "*-1"}, {"text": "for"}, {"text": "the"}, {"text": "small"}, {"text": "account"}, {"text": ","}, {"text": "which"}, {"text": "*T*-155"}, {"text": "had"}, {"text": "been"}, {"text": "serviced"}, {"text": "*-2"}, {"text": "at"}, {"text": "Young"}, {"text": "&"}, {"text": "Rubicam"}, {"text": ","}, {"text": "New"}, {"text": "York"}, {"text": "."}, {"text": "FIRST"}, {"text": "CAMPAIGN"}, {"text": ":"}, {"text": "Enterprise"}, {"text": "Rent-A-Car"}, {"text": "Inc."}, {"text": "breaks"}, {"text": "its"}, {"text": "first"}, {"text": "national"}, {"text": "ad"}, {"text": "campaign"}, {"text": "this"}, {"text": "week"}, {"text": "."}, {"text": "The"}, {"text": "St."}, {"text": "Louis"}, {"text": "firm"}, {"text": "specializes"}, {"text": "in"}, {"text": "replacement-car"}, {"text": "rentals"}, {"text": ","}, {"text": "those"}, {"text": "provided"}, {"text": "*"}, {"text": "by"}, {"text": "insurance"}, {"text": "companies"}, {"text": "for"}, {"text": "cars"}, {"text": "damaged"}, {"text": "*"}, {"text": "in"}, {"text": "accidents"}, {"text": "."}, {"text": "*-2"}, {"text": "Developed"}, {"text": "*-1"}, {"text": "by"}, {"text": "Avrett"}, {"text": ","}, {"text": "Free"}, {"text": "&"}, {"text": "Ginsberg"}, {"text": ","}, {"text": "New"}, {"text": "York"}, {"text": ","}, {"text": "the"}, {"text": "$"}, {"text": "6"}, {"text": "million"}, {"text": "*U*"}, {"text": "campaign"}, {"text": "pitches"}, {"text": "Enterprise"}, {"text": "'s"}, {"text": "consumer-driven"}, {"text": "service"}, {"text": "and"}, {"text": "its"}, {"text": "free"}, {"text": "pick-up"}, {"text": "and"}, {"text": "drop-off"}, {"text": "service"}, {"text": "."}, {"text": "LANDOR"}, {"text": "ASSOCIATES"}, {"text": ":"}, {"text": "Young"}, {"text": "&"}, {"text": "Rubicam"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "completed"}, {"text": "its"}, {"text": "acquisition"}, {"text": "of"}, {"text": "Landor"}, {"text": "Associates"}, {"text": ","}, {"text": "a"}, {"text": "San"}, {"text": "Francisco"}, {"text": "identity-management"}, {"text": "firm"}, {"text": "."}, {"text": "ACQUISITION"}, {"text": ":"}, {"text": "Ketchum"}, {"text": "Communications"}, {"text": ","}, {"text": "Pittsburgh"}, {"text": ","}, {"text": "acquired"}, {"text": "Braun"}, {"text": "&"}, {"text": "Co."}, {"text": ","}, {"text": "a"}, {"text": "Los"}, {"text": "Angeles"}, {"text": "investor-relations"}, {"text": "and"}, {"text": "marketing-communications"}, {"text": "firm"}, {"text": "."}, {"text": "Terms"}, {"text": "were"}, {"text": "n't"}, {"text": "disclosed"}, {"text": "*-1"}, {"text": "."}, {"text": "Sea"}, {"text": "Containers"}, {"text": "Ltd."}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "might"}, {"text": "increase"}, {"text": "the"}, {"text": "price"}, {"text": "of"}, {"text": "its"}, {"text": "$"}, {"text": "70-a-share"}, {"text": "*U*"}, {"text": "buy-back"}, {"text": "plan"}, {"text": "if"}, {"text": "*-2"}, {"text": "pressed"}, {"text": "*-1"}, {"text": "by"}, {"text": "Temple"}, {"text": "Holdings"}, {"text": "Ltd."}, {"text": ","}, {"text": "which"}, {"text": "*T*-156"}, {"text": "made"}, {"text": "an"}, {"text": "earlier"}, {"text": "tender"}, {"text": "offer"}, {"text": "for"}, {"text": "Sea"}, {"text": "Containers"}, {"text": "."}, {"text": "Sea"}, {"text": "Containers"}, {"text": ","}, {"text": "a"}, {"text": "Hamilton"}, {"text": ","}, {"text": "Bermuda-based"}, {"text": "shipping"}, {"text": "concern"}, {"text": ","}, {"text": "said"}, {"text": "Tuesday"}, {"text": "that"}, {"text": "it"}, {"text": "would"}, {"text": "sell"}, {"text": "$"}, {"text": "1.1"}, {"text": "billion"}, {"text": "*U*"}, {"text": "of"}, {"text": "assets"}, {"text": "and"}, {"text": "use"}, {"text": "some"}, {"text": "of"}, {"text": "the"}, {"text": "proceeds"}, {"text": "*-2"}, {"text": "to"}, {"text": "buy"}, {"text": "about"}, {"text": "50"}, {"text": "%"}, {"text": "of"}, {"text": "its"}, {"text": "common"}, {"text": "shares"}, {"text": "for"}, {"text": "$"}, {"text": "70"}, {"text": "*U*"}, {"text": "apiece"}, {"text": "."}, {"text": "The"}, {"text": "move"}, {"text": "is"}, {"text": "designed"}, {"text": "*-1"}, {"text": "*-2"}, {"text": "to"}, {"text": "ward"}, {"text": "off"}, {"text": "a"}, {"text": "hostile"}, {"text": "takeover"}, {"text": "attempt"}, {"text": "by"}, {"text": "two"}, {"text": "European"}, {"text": "shipping"}, {"text": "concerns"}, {"text": ","}, {"text": "Stena"}, {"text": "Holding"}, {"text": "AG"}, {"text": "and"}, {"text": "Tiphook"}, {"text": "PLC"}, {"text": "."}, {"text": "In"}, {"text": "May"}, {"text": ","}, {"text": "the"}, {"text": "two"}, {"text": "companies"}, {"text": ","}, {"text": "through"}, {"text": "their"}, {"text": "jointly"}, {"text": "owned"}, {"text": "holding"}, {"text": "company"}, {"text": ","}, {"text": "Temple"}, {"text": ","}, {"text": "offered"}, {"text": "$"}, {"text": "50"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": ","}, {"text": "or"}, {"text": "$"}, {"text": "777"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "for"}, {"text": "Sea"}, {"text": "Containers"}, {"text": "."}, {"text": "In"}, {"text": "August"}, {"text": ","}, {"text": "Temple"}, {"text": "sweetened"}, {"text": "the"}, {"text": "offer"}, {"text": "to"}, {"text": "$"}, {"text": "63"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": ","}, {"text": "or"}, {"text": "$"}, {"text": "963"}, {"text": "million"}, {"text": "*U*"}, {"text": "."}, {"text": "Yesterday"}, {"text": ","}, {"text": "Sea"}, {"text": "Containers"}, {"text": "'"}, {"text": "chief"}, {"text": "executive"}, {"text": "officer"}, {"text": ","}, {"text": "James"}, {"text": "Sherwood"}, {"text": ","}, {"text": "said"}, {"text": "in"}, {"text": "an"}, {"text": "interview"}, {"text": "that"}, {"text": ","}, {"text": "under"}, {"text": "the"}, {"text": "asset-sale"}, {"text": "plan"}, {"text": ","}, {"text": "Sea"}, {"text": "Containers"}, {"text": "would"}, {"text": "end"}, {"text": "up"}, {"text": "with"}, {"text": "a"}, {"text": "cash"}, {"text": "surplus"}, {"text": "of"}, {"text": "approximately"}, {"text": "$"}, {"text": "620"}, {"text": "million"}, {"text": "*U*"}, {"text": "."}, {"text": "About"}, {"text": "$"}, {"text": "490"}, {"text": "million"}, {"text": "*U*"}, {"text": "of"}, {"text": "that"}, {"text": "would"}, {"text": "be"}, {"text": "allocated"}, {"text": "*-87"}, {"text": "to"}, {"text": "the"}, {"text": "buy-back"}, {"text": ","}, {"text": "*"}, {"text": "leaving"}, {"text": "about"}, {"text": "$"}, {"text": "130"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "he"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "That"}, {"text": "$"}, {"text": "130"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "Mr."}, {"text": "Sherwood"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": ","}, {"text": "``"}, {"text": "gives"}, {"text": "us"}, {"text": "some"}, {"text": "flexibility"}, {"text": "in"}, {"text": "case"}, {"text": "Temple"}, {"text": "raises"}, {"text": "its"}, {"text": "bid"}, {"text": "."}, {"text": "We"}, {"text": "are"}, {"text": "able"}, {"text": "*-2"}, {"text": "to"}, {"text": "increase"}, {"text": "our"}, {"text": "price"}, {"text": "above"}, {"text": "the"}, {"text": "$"}, {"text": "70"}, {"text": "*U*"}, {"text": "level"}, {"text": "if"}, {"text": "necessary"}, {"text": "."}, {"text": "''"}, {"text": "He"}, {"text": "declined"}, {"text": "*-2"}, {"text": "to"}, {"text": "say"}, {"text": ","}, {"text": "however"}, {"text": ","}, {"text": "how"}, {"text": "much"}, {"text": "Sea"}, {"text": "Containers"}, {"text": "might"}, {"text": "raise"}, {"text": "its"}, {"text": "price"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Mr."}, {"text": "Sherwood"}, {"text": "speculated"}, {"text": "that"}, {"text": "the"}, {"text": "leeway"}, {"text": "that"}, {"text": "Sea"}, {"text": "Containers"}, {"text": "has"}, {"text": "*T*-1"}, {"text": "means"}, {"text": "that"}, {"text": "Temple"}, {"text": "would"}, {"text": "have"}, {"text": "*-2"}, {"text": "to"}, {"text": "``"}, {"text": "substantially"}, {"text": "increase"}, {"text": "their"}, {"text": "bid"}, {"text": "if"}, {"text": "they"}, {"text": "'re"}, {"text": "going"}, {"text": "*-3"}, {"text": "to"}, {"text": "top"}, {"text": "us"}, {"text": "."}, {"text": "''"}, {"text": "Temple"}, {"text": ","}, {"text": "however"}, {"text": ","}, {"text": "harshly"}, {"text": "criticized"}, {"text": "Sea"}, {"text": "Containers"}, {"text": "'"}, {"text": "plan"}, {"text": "yesterday"}, {"text": ","}, {"text": "*-1"}, {"text": "characterizing"}, {"text": "it"}, {"text": "as"}, {"text": "a"}, {"text": "``"}, {"text": "highly"}, {"text": "conditional"}, {"text": "device"}, {"text": "designed"}, {"text": "*"}, {"text": "*-2"}, {"text": "to"}, {"text": "entrench"}, {"text": "management"}, {"text": ","}, {"text": "confuse"}, {"text": "shareholders"}, {"text": "and"}, {"text": "prevent"}, {"text": "them"}, {"text": "from"}, {"text": "*-3"}, {"text": "accepting"}, {"text": "our"}, {"text": "superior"}, {"text": "cash"}, {"text": "offer"}, {"text": "."}, {"text": "''"}, {"text": "A"}, {"text": "spokesman"}, {"text": "for"}, {"text": "Temple"}, {"text": "estimated"}, {"text": "that"}, {"text": "Sea"}, {"text": "Containers"}, {"text": "'"}, {"text": "plan"}, {"text": "--"}, {"text": "if"}, {"text": "all"}, {"text": "the"}, {"text": "asset"}, {"text": "sales"}, {"text": "materialize"}, {"text": "--"}, {"text": "would"}, {"text": "result"}, {"text": "in"}, {"text": "shareholders"}, {"text": "receiving"}, {"text": "only"}, {"text": "$"}, {"text": "36"}, {"text": "to"}, {"text": "$"}, {"text": "45"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": "in"}, {"text": "cash"}, {"text": "."}, {"text": "The"}, {"text": "lower"}, {"text": "figures"}, {"text": ","}, {"text": "the"}, {"text": "spokesman"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": ","}, {"text": "would"}, {"text": "stem"}, {"text": "from"}, {"text": "preferred"}, {"text": "shares"}, {"text": "being"}, {"text": "converted"}, {"text": "*-88"}, {"text": "to"}, {"text": "common"}, {"text": "stock"}, {"text": "and"}, {"text": "the"}, {"text": "possibility"}, {"text": "that"}, {"text": "Sea"}, {"text": "Containers"}, {"text": "'"}, {"text": "subsidiaries"}, {"text": "might"}, {"text": "be"}, {"text": "required"}, {"text": "*-2"}, {"text": "to"}, {"text": "place"}, {"text": "their"}, {"text": "shares"}, {"text": "in"}, {"text": "the"}, {"text": "open"}, {"text": "market"}, {"text": "."}, {"text": "Temple"}, {"text": "added"}, {"text": "that"}, {"text": "Sea"}, {"text": "Containers"}, {"text": "is"}, {"text": "still"}, {"text": "mired"}, {"text": "*-2"}, {"text": "in"}, {"text": "legal"}, {"text": "problems"}, {"text": "in"}, {"text": "Bermuda"}, {"text": ","}, {"text": "where"}, {"text": "the"}, {"text": "Supreme"}, {"text": "Court"}, {"text": "has"}, {"text": "temporarily"}, {"text": "barred"}, {"text": "Sea"}, {"text": "Containers"}, {"text": "from"}, {"text": "*-3"}, {"text": "buying"}, {"text": "back"}, {"text": "its"}, {"text": "own"}, {"text": "stock"}, {"text": "in"}, {"text": "a"}, {"text": "case"}, {"text": "brought"}, {"text": "*"}, {"text": "by"}, {"text": "Stena"}, {"text": "and"}, {"text": "Tiphook"}, {"text": "*T*-1"}, {"text": "."}, {"text": "-LCB-"}, {"text": "The"}, {"text": "court"}, {"text": "has"}, {"text": "indicated"}, {"text": "0"}, {"text": "it"}, {"text": "will"}, {"text": "rule"}, {"text": "on"}, {"text": "the"}, {"text": "case"}, {"text": "by"}, {"text": "the"}, {"text": "end"}, {"text": "of"}, {"text": "the"}, {"text": "month"}, {"text": "."}, {"text": "-RCB-"}, {"text": "Temple"}, {"text": "also"}, {"text": "said"}, {"text": "0"}, {"text": "Sea"}, {"text": "Containers"}, {"text": "'"}, {"text": "plan"}, {"text": "raises"}, {"text": "``"}, {"text": "numerous"}, {"text": "legal"}, {"text": ","}, {"text": "regulatory"}, {"text": ","}, {"text": "financial"}, {"text": "and"}, {"text": "fairness"}, {"text": "issues"}, {"text": ","}, {"text": "''"}, {"text": "but"}, {"text": "did"}, {"text": "n't"}, {"text": "elaborate"}, {"text": "."}, {"text": "Mr."}, {"text": "Sherwood"}, {"text": "said"}, {"text": "0"}, {"text": "reaction"}, {"text": "to"}, {"text": "Sea"}, {"text": "Containers"}, {"text": "'"}, {"text": "proposal"}, {"text": "has"}, {"text": "been"}, {"text": "``"}, {"text": "very"}, {"text": "positive"}, {"text": "."}, {"text": "''"}, {"text": "In"}, {"text": "New"}, {"text": "York"}, {"text": "Stock"}, {"text": "Exchange"}, {"text": "composite"}, {"text": "trading"}, {"text": "yesterday"}, {"text": ","}, {"text": "Sea"}, {"text": "Containers"}, {"text": "closed"}, {"text": "at"}, {"text": "$"}, {"text": "62.625"}, {"text": "*U*"}, {"text": ","}, {"text": "up"}, {"text": "62.5"}, {"text": "cents"}, {"text": "."}, {"text": "The"}, {"text": "Transportation"}, {"text": "Department"}, {"text": ","}, {"text": "*-1"}, {"text": "responding"}, {"text": "to"}, {"text": "pressure"}, {"text": "from"}, {"text": "safety"}, {"text": "advocates"}, {"text": ","}, {"text": "took"}, {"text": "further"}, {"text": "steps"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "impose"}, {"text": "on"}, {"text": "light"}, {"text": "trucks"}, {"text": "and"}, {"text": "vans"}, {"text": "the"}, {"text": "safety"}, {"text": "requirements"}, {"text": "used"}, {"text": "*"}, {"text": "for"}, {"text": "automobiles"}, {"text": "*T*-2"}, {"text": "."}, {"text": "The"}, {"text": "department"}, {"text": "proposed"}, {"text": "*"}, {"text": "requiring"}, {"text": "stronger"}, {"text": "roofs"}, {"text": "for"}, {"text": "light"}, {"text": "trucks"}, {"text": "and"}, {"text": "minivans"}, {"text": ","}, {"text": "*"}, {"text": "beginning"}, {"text": "with"}, {"text": "1992"}, {"text": "models"}, {"text": "."}, {"text": "It"}, {"text": "also"}, {"text": "issued"}, {"text": "a"}, {"text": "final"}, {"text": "rule"}, {"text": "requiring"}, {"text": "auto"}, {"text": "makers"}, {"text": "to"}, {"text": "equip"}, {"text": "light"}, {"text": "trucks"}, {"text": "and"}, {"text": "minivans"}, {"text": "with"}, {"text": "lap-shoulder"}, {"text": "belts"}, {"text": "for"}, {"text": "rear"}, {"text": "seats"}, {"text": "*"}, {"text": "beginning"}, {"text": "in"}, {"text": "the"}, {"text": "1992"}, {"text": "model"}, {"text": "year"}, {"text": "."}, {"text": "Such"}, {"text": "belts"}, {"text": "already"}, {"text": "are"}, {"text": "required"}, {"text": "*-89"}, {"text": "for"}, {"text": "the"}, {"text": "vehicles"}, {"text": "'"}, {"text": "front"}, {"text": "seats"}, {"text": "."}, {"text": "``"}, {"text": "Today"}, {"text": "'s"}, {"text": "action"}, {"text": ","}, {"text": "''"}, {"text": "Transportation"}, {"text": "Secretary"}, {"text": "Samuel"}, {"text": "Skinner"}, {"text": "said"}, {"text": "*T*-1"}, {"text": ","}, {"text": "``"}, {"text": "represents"}, {"text": "another"}, {"text": "milestone"}, {"text": "in"}, {"text": "the"}, {"text": "ongoing"}, {"text": "program"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "to"}, {"text": "promote"}, {"text": "vehicle"}, {"text": "occupant"}, {"text": "safety"}, {"text": "in"}, {"text": "light"}, {"text": "trucks"}, {"text": "and"}, {"text": "minivans"}, {"text": "through"}, {"text": "its"}, {"text": "extension"}, {"text": "of"}, {"text": "passenger"}, {"text": "car"}, {"text": "standards"}, {"text": "."}, {"text": "''"}, {"text": "In"}, {"text": "September"}, {"text": ","}, {"text": "the"}, {"text": "department"}, {"text": "had"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "will"}, {"text": "require"}, {"text": "trucks"}, {"text": "and"}, {"text": "minivans"}, {"text": "to"}, {"text": "be"}, {"text": "equipped"}, {"text": "*-90"}, {"text": "with"}, {"text": "the"}, {"text": "same"}, {"text": "front-seat"}, {"text": "headrests"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "have"}, {"text": "long"}, {"text": "been"}, {"text": "required"}, {"text": "*-91"}, {"text": "on"}, {"text": "passenger"}, {"text": "cars"}, {"text": "."}, {"text": "The"}, {"text": "Big"}, {"text": "Three"}, {"text": "auto"}, {"text": "makers"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "rule"}, {"text": "changes"}, {"text": "were"}, {"text": "n't"}, {"text": "surprising"}, {"text": "because"}, {"text": "Bush"}, {"text": "administration"}, {"text": "officials"}, {"text": "have"}, {"text": "long"}, {"text": "said"}, {"text": "0"}, {"text": "they"}, {"text": "planned"}, {"text": "*-1"}, {"text": "to"}, {"text": "impose"}, {"text": "car"}, {"text": "safety"}, {"text": "standards"}, {"text": "on"}, {"text": "light"}, {"text": "trucks"}, {"text": "and"}, {"text": "vans"}, {"text": "."}, {"text": "Safety"}, {"text": "advocates"}, {"text": ","}, {"text": "including"}, {"text": "some"}, {"text": "members"}, {"text": "of"}, {"text": "Congress"}, {"text": ","}, {"text": "have"}, {"text": "been"}, {"text": "urging"}, {"text": "the"}, {"text": "department"}, {"text": "for"}, {"text": "years"}, {"text": "*-2"}, {"text": "to"}, {"text": "extend"}, {"text": "car-safety"}, {"text": "requirements"}, {"text": "to"}, {"text": "light"}, {"text": "trucks"}, {"text": "and"}, {"text": "vans"}, {"text": ","}, {"text": "which"}, {"text": "now"}, {"text": "*T*-157"}, {"text": "account"}, {"text": "for"}, {"text": "almost"}, {"text": "one-third"}, {"text": "of"}, {"text": "all"}, {"text": "vehicle"}, {"text": "sales"}, {"text": "in"}, {"text": "the"}, {"text": "U.S."}, {"text": "."}, {"text": "They"}, {"text": "say"}, {"text": "that"}, {"text": "many"}, {"text": "vehicles"}, {"text": "classed"}, {"text": "*"}, {"text": "as"}, {"text": "commercial"}, {"text": "light"}, {"text": "trucks"}, {"text": "actually"}, {"text": "carry"}, {"text": "more"}, {"text": "people"}, {"text": "than"}, {"text": "cargo"}, {"text": "and"}, {"text": "therefore"}, {"text": "should"}, {"text": "have"}, {"text": "the"}, {"text": "same"}, {"text": "safety"}, {"text": "features"}, {"text": "as"}, {"text": "cars"}, {"text": "."}, {"text": "They"}, {"text": "did"}, {"text": "n't"}, {"text": "have"}, {"text": "much"}, {"text": "luck"}, {"text": "during"}, {"text": "the"}, {"text": "Reagan"}, {"text": "administration"}, {"text": "."}, {"text": "``"}, {"text": "But"}, {"text": "now"}, {"text": ","}, {"text": "there"}, {"text": "seems"}, {"text": "*-2"}, {"text": "to"}, {"text": "be"}, {"text": "a"}, {"text": "fairly"}, {"text": "systematic"}, {"text": "effort"}, {"text": "*"}, {"text": "to"}, {"text": "address"}, {"text": "the"}, {"text": "problem"}, {"text": ","}, {"text": "''"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "Chuck"}, {"text": "Hurley"}, {"text": ","}, {"text": "vice"}, {"text": "president"}, {"text": "of"}, {"text": "communications"}, {"text": "for"}, {"text": "the"}, {"text": "Insurance"}, {"text": "Institute"}, {"text": "for"}, {"text": "Highway"}, {"text": "Safety"}, {"text": "."}, {"text": "``"}, {"text": "We"}, {"text": "'re"}, {"text": "in"}, {"text": "a"}, {"text": "very"}, {"text": "different"}, {"text": "regulatory"}, {"text": "environment"}, {"text": "."}, {"text": "''"}, {"text": "Sen."}, {"text": "John"}, {"text": "Danforth"}, {"text": "-LRB-"}, {"text": "R."}, {"text": ","}, {"text": "Mo"}, {"text": "."}, {"text": "-RRB-"}, {"text": "praised"}, {"text": "the"}, {"text": "department"}, {"text": "'s"}, {"text": "actions"}, {"text": ","}, {"text": "*-1"}, {"text": "noting"}, {"text": "that"}, {"text": "rollover"}, {"text": "crashes"}, {"text": "account"}, {"text": "for"}, {"text": "almost"}, {"text": "half"}, {"text": "of"}, {"text": "all"}, {"text": "light-truck"}, {"text": "deaths"}, {"text": "."}, {"text": "``"}, {"text": "We"}, {"text": "could"}, {"text": "prevent"}, {"text": "many"}, {"text": "of"}, {"text": "these"}, {"text": "fatalities"}, {"text": "with"}, {"text": "minimum"}, {"text": "roof-crush"}, {"text": "standards"}, {"text": ","}, {"text": "''"}, {"text": "he"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Sen."}, {"text": "Danforth"}, {"text": "and"}, {"text": "others"}, {"text": "also"}, {"text": "want"}, {"text": "the"}, {"text": "department"}, {"text": "to"}, {"text": "require"}, {"text": "additional"}, {"text": "safety"}, {"text": "equipment"}, {"text": "*ICH*-1"}, {"text": "in"}, {"text": "light"}, {"text": "trucks"}, {"text": "and"}, {"text": "minivans"}, {"text": ","}, {"text": "including"}, {"text": "air"}, {"text": "bags"}, {"text": "or"}, {"text": "automatic"}, {"text": "seat"}, {"text": "belts"}, {"text": "in"}, {"text": "front"}, {"text": "seats"}, {"text": "and"}, {"text": "improved"}, {"text": "side-crash"}, {"text": "protection"}, {"text": "."}, {"text": "The"}, {"text": "department"}, {"text": "'s"}, {"text": "roof-crush"}, {"text": "proposal"}, {"text": "would"}, {"text": "apply"}, {"text": "to"}, {"text": "vehicles"}, {"text": "weighing"}, {"text": "10,000"}, {"text": "pounds"}, {"text": "or"}, {"text": "less"}, {"text": "."}, {"text": "The"}, {"text": "roofs"}, {"text": "would"}, {"text": "be"}, {"text": "required"}, {"text": "*-1"}, {"text": "to"}, {"text": "withstand"}, {"text": "a"}, {"text": "force"}, {"text": "of"}, {"text": "1.5"}, {"text": "times"}, {"text": "the"}, {"text": "unloaded"}, {"text": "weight"}, {"text": "of"}, {"text": "the"}, {"text": "vehicle"}, {"text": "."}, {"text": "During"}, {"text": "the"}, {"text": "test"}, {"text": ","}, {"text": "the"}, {"text": "roof"}, {"text": "could"}, {"text": "n't"}, {"text": "be"}, {"text": "depressed"}, {"text": "*-92"}, {"text": "more"}, {"text": "than"}, {"text": "five"}, {"text": "inches"}, {"text": "."}, {"text": "In"}, {"text": "Detroit"}, {"text": ","}, {"text": "a"}, {"text": "Chrysler"}, {"text": "Corp."}, {"text": "official"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "company"}, {"text": "currently"}, {"text": "has"}, {"text": "no"}, {"text": "rear-seat"}, {"text": "lap"}, {"text": "and"}, {"text": "shoulder"}, {"text": "belts"}, {"text": "in"}, {"text": "its"}, {"text": "light"}, {"text": "trucks"}, {"text": ","}, {"text": "but"}, {"text": "plans"}, {"text": "*-1"}, {"text": "to"}, {"text": "begin"}, {"text": "*-2"}, {"text": "phasing"}, {"text": "them"}, {"text": "in"}, {"text": "by"}, {"text": "the"}, {"text": "end"}, {"text": "of"}, {"text": "the"}, {"text": "1990"}, {"text": "model"}, {"text": "year"}, {"text": "."}, {"text": "He"}, {"text": "said"}, {"text": "0"}, {"text": "Chrysler"}, {"text": "fully"}, {"text": "expects"}, {"text": "*-1"}, {"text": "to"}, {"text": "have"}, {"text": "them"}, {"text": "installed"}, {"text": "*-2"}, {"text": "across"}, {"text": "its"}, {"text": "light-truck"}, {"text": "line"}, {"text": "by"}, {"text": "the"}, {"text": "Sept."}, {"text": "1"}, {"text": ","}, {"text": "1991"}, {"text": ","}, {"text": "deadline"}, {"text": "."}, {"text": "Chrysler"}, {"text": "said"}, {"text": "0"}, {"text": "its"}, {"text": "trucks"}, {"text": "and"}, {"text": "vans"}, {"text": "already"}, {"text": "meet"}, {"text": "the"}, {"text": "roof-crush"}, {"text": "resistance"}, {"text": "standard"}, {"text": "for"}, {"text": "cars"}, {"text": "."}, {"text": "John"}, {"text": "Leinonen"}, {"text": ","}, {"text": "executive"}, {"text": "engineer"}, {"text": "of"}, {"text": "Ford"}, {"text": "Motor"}, {"text": "Co."}, {"text": "'s"}, {"text": "auto-safety"}, {"text": "office"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "Ford"}, {"text": "trucks"}, {"text": "have"}, {"text": "met"}, {"text": "car"}, {"text": "standards"}, {"text": "for"}, {"text": "roof-crush"}, {"text": "resistance"}, {"text": "since"}, {"text": "1982"}, {"text": "."}, {"text": "Ford"}, {"text": "began"}, {"text": "*-1"}, {"text": "installing"}, {"text": "the"}, {"text": "rear-seat"}, {"text": "belts"}, {"text": "in"}, {"text": "trucks"}, {"text": "with"}, {"text": "its"}, {"text": "F-series"}, {"text": "Crew"}, {"text": "Cab"}, {"text": "pickups"}, {"text": "in"}, {"text": "the"}, {"text": "1989"}, {"text": "model"}, {"text": "year"}, {"text": "."}, {"text": "The"}, {"text": "new"}, {"text": "Explorer"}, {"text": "sport-utility"}, {"text": "vehicle"}, {"text": ","}, {"text": "set"}, {"text": "*"}, {"text": "for"}, {"text": "introduction"}, {"text": "next"}, {"text": "spring"}, {"text": ","}, {"text": "will"}, {"text": "also"}, {"text": "have"}, {"text": "the"}, {"text": "rear-seat"}, {"text": "belts"}, {"text": "."}, {"text": "Mr."}, {"text": "Leinonen"}, {"text": "said"}, {"text": "0"}, {"text": "he"}, {"text": "expects"}, {"text": "Ford"}, {"text": "to"}, {"text": "meet"}, {"text": "the"}, {"text": "deadline"}, {"text": "easily"}, {"text": "."}, {"text": "Consolidated"}, {"text": "Rail"}, {"text": "Corp."}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "would"}, {"text": "spend"}, {"text": "more"}, {"text": "than"}, {"text": "$"}, {"text": "30"}, {"text": "million"}, {"text": "*U*"}, {"text": "on"}, {"text": "1,000"}, {"text": "enclosed"}, {"text": "railcars"}, {"text": "for"}, {"text": "*"}, {"text": "transporting"}, {"text": "autos"}, {"text": "."}, {"text": "The"}, {"text": "multilevel"}, {"text": "railcars"}, {"text": ","}, {"text": "scheduled"}, {"text": "*"}, {"text": "for"}, {"text": "delivery"}, {"text": "in"}, {"text": "1990"}, {"text": ","}, {"text": "will"}, {"text": "be"}, {"text": "made"}, {"text": "*-1"}, {"text": "by"}, {"text": "Thrall"}, {"text": "Manufacturing"}, {"text": "Co."}, {"text": ","}, {"text": "a"}, {"text": "Chicago"}, {"text": "Heights"}, {"text": ","}, {"text": "Ill."}, {"text": ","}, {"text": "division"}, {"text": "of"}, {"text": "closely"}, {"text": "held"}, {"text": "Duchossois"}, {"text": "Industries"}, {"text": "Inc."}, {"text": ","}, {"text": "Elmhurst"}, {"text": ","}, {"text": "Ill"}, {"text": "."}, {"text": "This"}, {"text": "year"}, {"text": ","}, {"text": "the"}, {"text": "railroad"}, {"text": "holding"}, {"text": "company"}, {"text": "acquired"}, {"text": "850"}, {"text": "such"}, {"text": "railcars"}, {"text": "."}, {"text": "Sir"}, {"text": "Peter"}, {"text": "Walters"}, {"text": ","}, {"text": "58-year-old"}, {"text": "chairman"}, {"text": "of"}, {"text": "British"}, {"text": "Petroleum"}, {"text": "Co."}, {"text": "until"}, {"text": "next"}, {"text": "March"}, {"text": ","}, {"text": "joins"}, {"text": "the"}, {"text": "board"}, {"text": "of"}, {"text": "this"}, {"text": "cement"}, {"text": "products"}, {"text": "company"}, {"text": "on"}, {"text": "Dec."}, {"text": "1"}, {"text": "."}, {"text": "Sir"}, {"text": "Peter"}, {"text": "will"}, {"text": "succeed"}, {"text": "Sir"}, {"text": "John"}, {"text": "Milne"}, {"text": ","}, {"text": "65"}, {"text": ","}, {"text": "who"}, {"text": "*T*-158"}, {"text": "retires"}, {"text": "as"}, {"text": "Blue"}, {"text": "Circle"}, {"text": "nonexecutive"}, {"text": "chairman"}, {"text": "on"}, {"text": "June"}, {"text": "1"}, {"text": "."}, {"text": "Bank"}, {"text": "of"}, {"text": "New"}, {"text": "England"}, {"text": "Corp."}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "has"}, {"text": "held"}, {"text": "talks"}, {"text": "with"}, {"text": "potential"}, {"text": "merger"}, {"text": "partners"}, {"text": "outside"}, {"text": "New"}, {"text": "England"}, {"text": ","}, {"text": "although"}, {"text": "it"}, {"text": "added"}, {"text": "that"}, {"text": "nothing"}, {"text": "is"}, {"text": "imminent"}, {"text": "and"}, {"text": "it"}, {"text": "has"}, {"text": "n't"}, {"text": "received"}, {"text": "any"}, {"text": "formal"}, {"text": "offers"}, {"text": "."}, {"text": "The"}, {"text": "discussions"}, {"text": "were"}, {"text": "disclosed"}, {"text": "*-93"}, {"text": "as"}, {"text": "the"}, {"text": "bank"}, {"text": "holding"}, {"text": "company"}, {"text": "said"}, {"text": "that"}, {"text": "it"}, {"text": "has"}, {"text": "dropped"}, {"text": "its"}, {"text": "longstanding"}, {"text": "opposition"}, {"text": "to"}, {"text": "full"}, {"text": "interstate"}, {"text": "banking"}, {"text": "bills"}, {"text": "in"}, {"text": "Connecticut"}, {"text": "and"}, {"text": "in"}, {"text": "Massachusetts"}, {"text": "."}, {"text": "Later"}, {"text": "yesterday"}, {"text": ","}, {"text": "a"}, {"text": "Massachusetts"}, {"text": "senate"}, {"text": "committee"}, {"text": "approved"}, {"text": "a"}, {"text": "bill"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "to"}, {"text": "allow"}, {"text": "national"}, {"text": "interstate"}, {"text": "banking"}, {"text": "by"}, {"text": "banks"}, {"text": "in"}, {"text": "the"}, {"text": "state"}, {"text": "*"}, {"text": "beginning"}, {"text": "in"}, {"text": "1991"}, {"text": "."}, {"text": "Currently"}, {"text": ","}, {"text": "both"}, {"text": "Massachusetts"}, {"text": "and"}, {"text": "Connecticut"}, {"text": ","}, {"text": "where"}, {"text": "most"}, {"text": "of"}, {"text": "Bank"}, {"text": "of"}, {"text": "New"}, {"text": "England"}, {"text": "'s"}, {"text": "operations"}, {"text": "are"}, {"text": "*T*-1"}, {"text": ","}, {"text": "allow"}, {"text": "interstate"}, {"text": "banking"}, {"text": "only"}, {"text": "within"}, {"text": "New"}, {"text": "England"}, {"text": "."}, {"text": "Richard"}, {"text": "Driscoll"}, {"text": ","}, {"text": "vice"}, {"text": "chairman"}, {"text": "of"}, {"text": "Bank"}, {"text": "of"}, {"text": "New"}, {"text": "England"}, {"text": ","}, {"text": "told"}, {"text": "the"}, {"text": "Dow"}, {"text": "Jones"}, {"text": "Professional"}, {"text": "Investor"}, {"text": "Report"}, {"text": ","}, {"text": "``"}, {"text": "Certainly"}, {"text": ","}, {"text": "there"}, {"text": "are"}, {"text": "those"}, {"text": "outside"}, {"text": "the"}, {"text": "region"}, {"text": "who"}, {"text": "*T*-159"}, {"text": "think"}, {"text": "of"}, {"text": "us"}, {"text": "prospectively"}, {"text": "as"}, {"text": "a"}, {"text": "good"}, {"text": "partner"}, {"text": "."}, {"text": "We"}, {"text": "have"}, {"text": ","}, {"text": "and"}, {"text": "I"}, {"text": "'m"}, {"text": "sure"}, {"text": "0"}, {"text": "others"}, {"text": "have"}, {"text": "*?*"}, {"text": ","}, {"text": "considered"}, {"text": "what"}, {"text": "our"}, {"text": "options"}, {"text": "are"}, {"text": "*T*-160"}, {"text": ","}, {"text": "and"}, {"text": "we"}, {"text": "'ve"}, {"text": "had"}, {"text": "conversations"}, {"text": "with"}, {"text": "people"}, {"text": "who"}, {"text": "in"}, {"text": "the"}, {"text": "future"}, {"text": "*T*-1"}, {"text": "might"}, {"text": "prove"}, {"text": "*-2"}, {"text": "to"}, {"text": "be"}, {"text": "interesting"}, {"text": "partners"}, {"text": "."}, {"text": "''"}, {"text": "He"}, {"text": "added"}, {"text": ","}, {"text": "``"}, {"text": "There"}, {"text": "'s"}, {"text": "nothing"}, {"text": "very"}, {"text": "hot"}, {"text": "."}, {"text": "''"}, {"text": "Mr."}, {"text": "Driscoll"}, {"text": "did"}, {"text": "n't"}, {"text": "elaborate"}, {"text": "about"}, {"text": "who"}, {"text": "the"}, {"text": "potential"}, {"text": "partners"}, {"text": "were"}, {"text": "*T*-1"}, {"text": "or"}, {"text": "when"}, {"text": "the"}, {"text": "talks"}, {"text": "were"}, {"text": "held"}, {"text": "*-94"}, {"text": "*T*-2"}, {"text": "."}, {"text": "A"}, {"text": "bank"}, {"text": "spokeswoman"}, {"text": "also"}, {"text": "declined"}, {"text": "*-1"}, {"text": "to"}, {"text": "comment"}, {"text": "on"}, {"text": "any"}, {"text": "merger-related"}, {"text": "matters"}, {"text": ","}, {"text": "but"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "company"}, {"text": "decided"}, {"text": "*-2"}, {"text": "to"}, {"text": "drop"}, {"text": "its"}, {"text": "opposition"}, {"text": "to"}, {"text": "the"}, {"text": "interstate"}, {"text": "banking"}, {"text": "legislation"}, {"text": "because"}, {"text": "``"}, {"text": "prevailing"}, {"text": "sentiment"}, {"text": "is"}, {"text": "in"}, {"text": "favor"}, {"text": "of"}, {"text": "passage"}, {"text": "."}, {"text": "''"}, {"text": "Bank"}, {"text": "of"}, {"text": "New"}, {"text": "England"}, {"text": "has"}, {"text": "been"}, {"text": "hit"}, {"text": "*-95"}, {"text": "hard"}, {"text": "by"}, {"text": "the"}, {"text": "region"}, {"text": "'s"}, {"text": "real-estate"}, {"text": "slump"}, {"text": ","}, {"text": "with"}, {"text": "its"}, {"text": "net"}, {"text": "income"}, {"text": "declining"}, {"text": "42"}, {"text": "%"}, {"text": "to"}, {"text": "$"}, {"text": "121.6"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "61"}, {"text": "cents"}, {"text": "a"}, {"text": "share"}, {"text": ","}, {"text": "in"}, {"text": "the"}, {"text": "first"}, {"text": "nine"}, {"text": "months"}, {"text": "of"}, {"text": "1989"}, {"text": "from"}, {"text": "the"}, {"text": "year-earlier"}, {"text": "period"}, {"text": "."}, {"text": "The"}, {"text": "company"}, {"text": "recently"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "would"}, {"text": "sell"}, {"text": "some"}, {"text": "operations"}, {"text": "and"}, {"text": "lay"}, {"text": "off"}, {"text": "4"}, {"text": "%"}, {"text": "of"}, {"text": "its"}, {"text": "work"}, {"text": "force"}, {"text": ","}, {"text": "altogether"}, {"text": "*-1"}, {"text": "reducing"}, {"text": "employment"}, {"text": "to"}, {"text": "less"}, {"text": "than"}, {"text": "16,000"}, {"text": "from"}, {"text": "about"}, {"text": "18,000"}, {"text": "."}, {"text": "It"}, {"text": "recently"}, {"text": "signed"}, {"text": "a"}, {"text": "preliminary"}, {"text": "agreement"}, {"text": "*"}, {"text": "to"}, {"text": "negotiate"}, {"text": "exclusively"}, {"text": "with"}, {"text": "the"}, {"text": "Bank"}, {"text": "of"}, {"text": "Tokyo"}, {"text": "Ltd."}, {"text": "for"}, {"text": "the"}, {"text": "sale"}, {"text": "of"}, {"text": "part"}, {"text": "of"}, {"text": "its"}, {"text": "leasing"}, {"text": "business"}, {"text": "to"}, {"text": "the"}, {"text": "Japanese"}, {"text": "bank"}, {"text": "."}, {"text": "GOODY"}, {"text": "PRODUCTS"}, {"text": "Inc."}, {"text": "cut"}, {"text": "its"}, {"text": "quarterly"}, {"text": "dividend"}, {"text": "to"}, {"text": "five"}, {"text": "cents"}, {"text": "a"}, {"text": "share"}, {"text": "from"}, {"text": "11.5"}, {"text": "cents"}, {"text": "a"}, {"text": "share"}, {"text": "."}, {"text": "The"}, {"text": "reduced"}, {"text": "dividend"}, {"text": "is"}, {"text": "payable"}, {"text": "Jan."}, {"text": "2"}, {"text": "to"}, {"text": "stock"}, {"text": "of"}, {"text": "record"}, {"text": "Dec."}, {"text": "15"}, {"text": "."}, {"text": "The"}, {"text": "Kearny"}, {"text": ","}, {"text": "N.J.-based"}, {"text": "maker"}, {"text": "of"}, {"text": "hair"}, {"text": "accessories"}, {"text": "and"}, {"text": "other"}, {"text": "cosmetic"}, {"text": "products"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "cut"}, {"text": "the"}, {"text": "dividend"}, {"text": "due"}, {"text": "to"}, {"text": "its"}, {"text": "third-quarter"}, {"text": "loss"}, {"text": "of"}, {"text": "$"}, {"text": "992,000"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "15"}, {"text": "cents"}, {"text": "a"}, {"text": "share"}, {"text": "."}, {"text": "In"}, {"text": "the"}, {"text": "year-ago"}, {"text": "quarter"}, {"text": ","}, {"text": "the"}, {"text": "company"}, {"text": "reported"}, {"text": "net"}, {"text": "income"}, {"text": "of"}, {"text": "$"}, {"text": "1.9"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "29"}, {"text": "cents"}, {"text": "a"}, {"text": "share"}, {"text": "."}, {"text": "The"}, {"text": "company"}, {"text": "also"}, {"text": "adopted"}, {"text": "an"}, {"text": "anti-takeover"}, {"text": "plan"}, {"text": "."}, {"text": "Michael"}, {"text": "Henderson"}, {"text": ","}, {"text": "51-year-old"}, {"text": "group"}, {"text": "chief"}, {"text": "executive"}, {"text": "of"}, {"text": "this"}, {"text": "U.K."}, {"text": "metals"}, {"text": "and"}, {"text": "industrial"}, {"text": "materials"}, {"text": "maker"}, {"text": ","}, {"text": "will"}, {"text": "become"}, {"text": "chairman"}, {"text": "in"}, {"text": "May"}, {"text": ","}, {"text": "*-1"}, {"text": "succeeding"}, {"text": "Ian"}, {"text": "Butler"}, {"text": ","}, {"text": "64"}, {"text": ","}, {"text": "who"}, {"text": "*T*-161"}, {"text": "is"}, {"text": "retiring"}, {"text": "."}, {"text": "Mr."}, {"text": "Butler"}, {"text": "will"}, {"text": "remain"}, {"text": "on"}, {"text": "the"}, {"text": "board"}, {"text": "as"}, {"text": "a"}, {"text": "nonexecutive"}, {"text": "director"}, {"text": "."}, {"text": "Rally"}, {"text": "'s"}, {"text": "Inc."}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "has"}, {"text": "redeemed"}, {"text": "its"}, {"text": "rights"}, {"text": "outstanding"}, {"text": "issued"}, {"text": "*"}, {"text": "Monday"}, {"text": "in"}, {"text": "its"}, {"text": "shareholder"}, {"text": "rights"}, {"text": "plan"}, {"text": "."}, {"text": "The"}, {"text": "company"}, {"text": "said"}, {"text": "0"}, {"text": "holders"}, {"text": "of"}, {"text": "stock"}, {"text": "of"}, {"text": "record"}, {"text": "Nov."}, {"text": "10"}, {"text": "will"}, {"text": "receive"}, {"text": "1\\/10th"}, {"text": "of"}, {"text": "one"}, {"text": "cent"}, {"text": "a"}, {"text": "share"}, {"text": "as"}, {"text": "the"}, {"text": "redemption"}, {"text": "payment"}, {"text": "."}, {"text": "The"}, {"text": "fast-food"}, {"text": "company"}, {"text": "said"}, {"text": "0"}, {"text": "its"}, {"text": "decision"}, {"text": "was"}, {"text": "based"}, {"text": "*-1"}, {"text": "upon"}, {"text": "discussions"}, {"text": "with"}, {"text": "a"}, {"text": "shareholder"}, {"text": "group"}, {"text": ","}, {"text": "Giant"}, {"text": "Group"}, {"text": "Ltd."}, {"text": ","}, {"text": "``"}, {"text": "in"}, {"text": "an"}, {"text": "effort"}, {"text": "*"}, {"text": "to"}, {"text": "resolve"}, {"text": "certain"}, {"text": "disputes"}, {"text": "with"}, {"text": "the"}, {"text": "company"}, {"text": "."}, {"text": "''"}, {"text": "Giant"}, {"text": "Group"}, {"text": "is"}, {"text": "led"}, {"text": "*-96"}, {"text": "by"}, {"text": "three"}, {"text": "Rally"}, {"text": "'s"}, {"text": "directors"}, {"text": ","}, {"text": "Burt"}, {"text": "Sugarman"}, {"text": ","}, {"text": "James"}, {"text": "M."}, {"text": "Trotter"}, {"text": "III"}, {"text": "and"}, {"text": "William"}, {"text": "E."}, {"text": "Trotter"}, {"text": "II"}, {"text": ","}, {"text": "who"}, {"text": "last"}, {"text": "month"}, {"text": "*T*-1"}, {"text": "indicated"}, {"text": "0"}, {"text": "they"}, {"text": "hold"}, {"text": "a"}, {"text": "42.5"}, {"text": "%"}, {"text": "stake"}, {"text": "in"}, {"text": "Rally"}, {"text": "'s"}, {"text": "and"}, {"text": "plan"}, {"text": "*-2"}, {"text": "to"}, {"text": "seek"}, {"text": "a"}, {"text": "majority"}, {"text": "of"}, {"text": "seats"}, {"text": "on"}, {"text": "Rally"}, {"text": "'s"}, {"text": "nine-member"}, {"text": "board"}, {"text": "."}, {"text": "When"}, {"text": "Warren"}, {"text": "Winiarski"}, {"text": ","}, {"text": "proprietor"}, {"text": "of"}, {"text": "Stag"}, {"text": "'s"}, {"text": "Leap"}, {"text": "Wine"}, {"text": "Cellars"}, {"text": "in"}, {"text": "Napa"}, {"text": "Valley"}, {"text": ","}, {"text": "announced"}, {"text": "a"}, {"text": "$"}, {"text": "75"}, {"text": "*U*"}, {"text": "price"}, {"text": "tag"}, {"text": "for"}, {"text": "his"}, {"text": "1985"}, {"text": "Cask"}, {"text": "23"}, {"text": "Cabernet"}, {"text": "this"}, {"text": "fall"}, {"text": "*T*-1"}, {"text": ","}, {"text": "few"}, {"text": "wine"}, {"text": "shops"}, {"text": "and"}, {"text": "restaurants"}, {"text": "around"}, {"text": "the"}, {"text": "country"}, {"text": "balked"}, {"text": "."}, {"text": "``"}, {"text": "This"}, {"text": "is"}, {"text": "the"}, {"text": "peak"}, {"text": "of"}, {"text": "my"}, {"text": "wine-making"}, {"text": "experience"}, {"text": ","}, {"text": "''"}, {"text": "Mr."}, {"text": "Winiarski"}, {"text": "declared"}, {"text": "*T*-1"}, {"text": "when"}, {"text": "he"}, {"text": "introduced"}, {"text": "the"}, {"text": "wine"}, {"text": "at"}, {"text": "a"}, {"text": "dinner"}, {"text": "in"}, {"text": "New"}, {"text": "York"}, {"text": "*T*-2"}, {"text": ","}, {"text": "``"}, {"text": "and"}, {"text": "I"}, {"text": "wanted"}, {"text": "*-3"}, {"text": "to"}, {"text": "single"}, {"text": "it"}, {"text": "out"}, {"text": "as"}, {"text": "such"}, {"text": "."}, {"text": "''"}, {"text": "It"}, {"text": "is"}, {"text": "in"}, {"text": "my"}, {"text": "estimation"}, {"text": "the"}, {"text": "best"}, {"text": "wine"}, {"text": "0"}, {"text": "Stag"}, {"text": "'s"}, {"text": "Leap"}, {"text": "has"}, {"text": "produced"}, {"text": "*T*-2"}, {"text": ","}, {"text": "and"}, {"text": "with"}, {"text": "fewer"}, {"text": "than"}, {"text": "700"}, {"text": "cases"}, {"text": "available"}, {"text": ","}, {"text": "it"}, {"text": "is"}, {"text": "sure"}, {"text": "*-3"}, {"text": "to"}, {"text": "sell"}, {"text": "quickly"}, {"text": "."}, {"text": "The"}, {"text": "price"}, {"text": "is"}, {"text": "a"}, {"text": "new"}, {"text": "high"}, {"text": "for"}, {"text": "California"}, {"text": "Cabernet"}, {"text": "Sauvignon"}, {"text": ","}, {"text": "but"}, {"text": "it"}, {"text": "is"}, {"text": "not"}, {"text": "the"}, {"text": "highest"}, {"text": "."}, {"text": "Diamond"}, {"text": "Creek"}, {"text": "1985"}, {"text": "Lake"}, {"text": "Vineyard"}, {"text": "Cabernet"}, {"text": "weighed"}, {"text": "in"}, {"text": "this"}, {"text": "fall"}, {"text": "with"}, {"text": "a"}, {"text": "sticker"}, {"text": "price"}, {"text": "of"}, {"text": "$"}, {"text": "100"}, {"text": "*U*"}, {"text": "a"}, {"text": "bottle"}, {"text": "."}, {"text": "One"}, {"text": "of"}, {"text": "the"}, {"text": "fastest"}, {"text": "growing"}, {"text": "segments"}, {"text": "of"}, {"text": "the"}, {"text": "wine"}, {"text": "market"}, {"text": "is"}, {"text": "the"}, {"text": "category"}, {"text": "of"}, {"text": "superpremiums"}, {"text": "--"}, {"text": "wines"}, {"text": "limited"}, {"text": "*"}, {"text": "in"}, {"text": "production"}, {"text": ","}, {"text": "of"}, {"text": "exceptional"}, {"text": "quality"}, {"text": "-LRB-"}, {"text": "or"}, {"text": "so"}, {"text": "perceived"}, {"text": "*"}, {"text": ","}, {"text": "at"}, {"text": "any"}, {"text": "rate"}, {"text": "-RRB-"}, {"text": ","}, {"text": "and"}, {"text": "with"}, {"text": "exceedingly"}, {"text": "high"}, {"text": "prices"}, {"text": "."}, {"text": "For"}, {"text": "years"}, {"text": ","}, {"text": "this"}, {"text": "group"}, {"text": "included"}, {"text": "a"}, {"text": "stable"}, {"text": "of"}, {"text": "classics"}, {"text": "--"}, {"text": "Bordeaux"}, {"text": "first"}, {"text": "growths"}, {"text": "-LRB-"}, {"text": "Lafite-Rothschild"}, {"text": ","}, {"text": "Latour"}, {"text": ","}, {"text": "Haut-Brion"}, {"text": ","}, {"text": "Petrus"}, {"text": "-RRB-"}, {"text": ","}, {"text": "Grand"}, {"text": "Cru"}, {"text": "Burgundies"}, {"text": "-LRB-"}, {"text": "Romanee-Conti"}, {"text": "and"}, {"text": "La"}, {"text": "Tache"}, {"text": "-RRB-"}, {"text": "deluxe"}, {"text": "Champagnes"}, {"text": "-LRB-"}, {"text": "Dom"}, {"text": "Perignon"}, {"text": "or"}, {"text": "Roederer"}, {"text": "Cristal"}, {"text": "-RRB-"}, {"text": ","}, {"text": "rarefied"}, {"text": "sweet"}, {"text": "wines"}, {"text": "-LRB-"}, {"text": "Chateau"}, {"text": "Yquem"}, {"text": "or"}, {"text": "Trockenbeerenauslesen"}, {"text": "Rieslings"}, {"text": "from"}, {"text": "Germany"}, {"text": ","}, {"text": "and"}, {"text": "Biondi-Santi"}, {"text": "Brunello"}, {"text": "Riserva"}, {"text": "from"}, {"text": "Tuscany"}, {"text": "-RRB-"}, {"text": "."}, {"text": "These"}, {"text": "first"}, {"text": "magnitude"}, {"text": "wines"}, {"text": "ranged"}, {"text": "in"}, {"text": "price"}, {"text": "from"}, {"text": "$"}, {"text": "40"}, {"text": "*U*"}, {"text": "*RNR*-1"}, {"text": "to"}, {"text": "$"}, {"text": "125"}, {"text": "*U*"}, {"text": "*RNR*-1"}, {"text": "a"}, {"text": "bottle"}, {"text": "."}, {"text": "In"}, {"text": "the"}, {"text": "last"}, {"text": "year"}, {"text": "or"}, {"text": "so"}, {"text": ","}, {"text": "however"}, {"text": ","}, {"text": "this"}, {"text": "exclusive"}, {"text": "club"}, {"text": "has"}, {"text": "taken"}, {"text": "in"}, {"text": "a"}, {"text": "host"}, {"text": "of"}, {"text": "flashy"}, {"text": "new"}, {"text": "members"}, {"text": "."}, {"text": "The"}, {"text": "classics"}, {"text": "have"}, {"text": "zoomed"}, {"text": "in"}, {"text": "price"}, {"text": "*-1"}, {"text": "to"}, {"text": "meet"}, {"text": "the"}, {"text": "competition"}, {"text": ","}, {"text": "and"}, {"text": "it"}, {"text": "almost"}, {"text": "seems"}, {"text": "that"}, {"text": "there"}, {"text": "'s"}, {"text": "a"}, {"text": "race"}, {"text": "*ICH*-2"}, {"text": "on"}, {"text": "*"}, {"text": "to"}, {"text": "come"}, {"text": "up"}, {"text": "with"}, {"text": "the"}, {"text": "priciest"}, {"text": "single"}, {"text": "bottle"}, {"text": ","}, {"text": "among"}, {"text": "current"}, {"text": "releases"}, {"text": "from"}, {"text": "every"}, {"text": "major"}, {"text": "wine"}, {"text": "region"}, {"text": "on"}, {"text": "the"}, {"text": "globe"}, {"text": "."}, {"text": "France"}, {"text": "can"}, {"text": "boast"}, {"text": "the"}, {"text": "lion"}, {"text": "'s"}, {"text": "share"}, {"text": "of"}, {"text": "high-priced"}, {"text": "bottles"}, {"text": "."}, {"text": "Bordeaux"}, {"text": "'s"}, {"text": "first"}, {"text": "growths"}, {"text": "from"}, {"text": "1985"}, {"text": "and"}, {"text": "1986"}, {"text": "are"}, {"text": "$"}, {"text": "60"}, {"text": "to"}, {"text": "$"}, {"text": "80"}, {"text": "*U*"}, {"text": "each"}, {"text": "-LRB-"}, {"text": "except"}, {"text": "for"}, {"text": "the"}, {"text": "smallest"}, {"text": "in"}, {"text": "terms"}, {"text": "of"}, {"text": "production"}, {"text": ","}, {"text": "Chateau"}, {"text": "Petrus"}, {"text": ","}, {"text": "which"}, {"text": "*T*-162"}, {"text": "costs"}, {"text": "around"}, {"text": "$"}, {"text": "250"}, {"text": "*U*"}, {"text": "!"}, {"text": "-RRB-"}, {"text": "."}, {"text": "These"}, {"text": "prices"}, {"text": "seem"}, {"text": "rather"}, {"text": "modest"}, {"text": ","}, {"text": "however"}, {"text": ","}, {"text": "in"}, {"text": "light"}, {"text": "of"}, {"text": "other"}, {"text": "French"}, {"text": "wines"}, {"text": "from"}, {"text": "current"}, {"text": "vintages"}, {"text": "."}, {"text": "Chateau"}, {"text": "Yquem"}, {"text": ","}, {"text": "the"}, {"text": "leading"}, {"text": "Sauternes"}, {"text": ","}, {"text": "now"}, {"text": "goes"}, {"text": "for"}, {"text": "well"}, {"text": "over"}, {"text": "$"}, {"text": "100"}, {"text": "*U*"}, {"text": "a"}, {"text": "bottle"}, {"text": "for"}, {"text": "a"}, {"text": "lighter"}, {"text": "vintage"}, {"text": "like"}, {"text": "1984"}, {"text": ";"}, {"text": "the"}, {"text": "spectacularly"}, {"text": "rich"}, {"text": "1983"}, {"text": "runs"}, {"text": "$"}, {"text": "179"}, {"text": "*U*"}, {"text": "."}, {"text": "In"}, {"text": "Champagne"}, {"text": ","}, {"text": "some"}, {"text": "of"}, {"text": "the"}, {"text": "prestige"}, {"text": "cuvees"}, {"text": "are"}, {"text": "inching"}, {"text": "toward"}, {"text": "$"}, {"text": "100"}, {"text": "*U*"}, {"text": "a"}, {"text": "bottle"}, {"text": "."}, {"text": "The"}, {"text": "first"}, {"text": "Champagne"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "to"}, {"text": "crack"}, {"text": "that"}, {"text": "price"}, {"text": "barrier"}, {"text": "was"}, {"text": "the"}, {"text": "1979"}, {"text": "Salon"}, {"text": "de"}, {"text": "Mesnil"}, {"text": "Blanc"}, {"text": "de"}, {"text": "Blancs"}, {"text": "."}, {"text": "The"}, {"text": "'82"}, {"text": "Salon"}, {"text": "is"}, {"text": "$"}, {"text": "115"}, {"text": "*U*"}, {"text": "."}, {"text": "Roederer"}, {"text": "Cristal"}, {"text": "at"}, {"text": "$"}, {"text": "90"}, {"text": "*U*"}, {"text": "a"}, {"text": "bottle"}, {"text": "sells"}, {"text": "out"}, {"text": "around"}, {"text": "the"}, {"text": "country"}, {"text": "and"}, {"text": "Taittinger"}, {"text": "'s"}, {"text": "Comtes"}, {"text": "de"}, {"text": "Champagne"}, {"text": "Blanc"}, {"text": "de"}, {"text": "Blancs"}, {"text": "is"}, {"text": "encroaching"}, {"text": "upon"}, {"text": "that"}, {"text": "level"}, {"text": "."}, {"text": "The"}, {"text": "great"}, {"text": "reds"}, {"text": "of"}, {"text": "the"}, {"text": "Rhone"}, {"text": "Valley"}, {"text": "have"}, {"text": "soared"}, {"text": "in"}, {"text": "price"}, {"text": "as"}, {"text": "well"}, {"text": "."}, {"text": "E."}, {"text": "Guigal"}, {"text": "'s"}, {"text": "1982"}, {"text": "Cote"}, {"text": "Rotie"}, {"text": "La"}, {"text": "Landonne"}, {"text": ","}, {"text": "for"}, {"text": "example"}, {"text": ","}, {"text": "is"}, {"text": "$"}, {"text": "120"}, {"text": "*U*"}, {"text": "."}, {"text": "None"}, {"text": "of"}, {"text": "France"}, {"text": "'s"}, {"text": "wine"}, {"text": "regions"}, {"text": "can"}, {"text": "steal"}, {"text": "a"}, {"text": "march"}, {"text": "on"}, {"text": "Burgundy"}, {"text": ","}, {"text": "however"}, {"text": "."}, {"text": "The"}, {"text": "six"}, {"text": "wines"}, {"text": "of"}, {"text": "the"}, {"text": "Domaine"}, {"text": "de"}, {"text": "la"}, {"text": "Romanee-Conti"}, {"text": ","}, {"text": "72"}, {"text": "of"}, {"text": "the"}, {"text": "most"}, {"text": "precious"}, {"text": "acres"}, {"text": "of"}, {"text": "vineyard"}, {"text": "anywhere"}, {"text": "in"}, {"text": "the"}, {"text": "world"}, {"text": ","}, {"text": "have"}, {"text": "commanded"}, {"text": "three-digit"}, {"text": "price"}, {"text": "tags"}, {"text": "for"}, {"text": "several"}, {"text": "years"}, {"text": "now"}, {"text": "."}, {"text": "With"}, {"text": "the"}, {"text": "1985"}, {"text": "vintage"}, {"text": ","}, {"text": "they"}, {"text": "soared"}, {"text": "higher"}, {"text": ":"}, {"text": "La"}, {"text": "Tache"}, {"text": ","}, {"text": "$"}, {"text": "195"}, {"text": "*U*"}, {"text": ";"}, {"text": "Richebourg"}, {"text": ","}, {"text": "$"}, {"text": "180"}, {"text": "*U*"}, {"text": ";"}, {"text": "Romanee-Conti"}, {"text": ","}, {"text": "$"}, {"text": "225"}, {"text": "*U*"}, {"text": "."}, {"text": "Another"}, {"text": "small"}, {"text": "Burgundy"}, {"text": "estate"}, {"text": ","}, {"text": "Coche-Dury"}, {"text": ","}, {"text": "has"}, {"text": "just"}, {"text": "offered"}, {"text": "its"}, {"text": "1987"}, {"text": "Corton-Charlemagne"}, {"text": "for"}, {"text": "$"}, {"text": "155"}, {"text": "*U*"}, {"text": "."}, {"text": "From"}, {"text": "Italy"}, {"text": "there"}, {"text": "is"}, {"text": "Angelo"}, {"text": "Gaja"}, {"text": "Barbaresco"}, {"text": "at"}, {"text": "$"}, {"text": "125"}, {"text": "*U*"}, {"text": "a"}, {"text": "bottle"}, {"text": ","}, {"text": "Piero"}, {"text": "Antinori"}, {"text": "'s"}, {"text": "La"}, {"text": "Solaia"}, {"text": ","}, {"text": "a"}, {"text": "$"}, {"text": "90"}, {"text": "*U*"}, {"text": "Cabernet"}, {"text": "from"}, {"text": "Tuscany"}, {"text": ","}, {"text": "and"}, {"text": "Biondi-Santi"}, {"text": "Brunello"}, {"text": "at"}, {"text": "$"}, {"text": "98"}, {"text": "*U*"}, {"text": "."}, {"text": "Spain"}, {"text": "'s"}, {"text": "Vega"}, {"text": "Secilia"}, {"text": "Unico"}, {"text": "1979"}, {"text": "-LRB-"}, {"text": "released"}, {"text": "*"}, {"text": "only"}, {"text": "in"}, {"text": "its"}, {"text": "10th"}, {"text": "year"}, {"text": "-RRB-"}, {"text": "is"}, {"text": "$"}, {"text": "70"}, {"text": "*U*"}, {"text": ","}, {"text": "as"}, {"text": "is"}, {"text": "*?*"}, {"text": "Australia"}, {"text": "'s"}, {"text": "Grange"}, {"text": "Hermitage"}, {"text": "1982"}, {"text": "."}, {"text": "``"}, {"text": "There"}, {"text": "are"}, {"text": "certain"}, {"text": "cult"}, {"text": "wines"}, {"text": "that"}, {"text": "*T*-163"}, {"text": "can"}, {"text": "command"}, {"text": "these"}, {"text": "higher"}, {"text": "prices"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "Larry"}, {"text": "Shapiro"}, {"text": "of"}, {"text": "Marty"}, {"text": "'s"}, {"text": ","}, {"text": "one"}, {"text": "of"}, {"text": "the"}, {"text": "largest"}, {"text": "wine"}, {"text": "shops"}, {"text": "in"}, {"text": "Dallas"}, {"text": "."}, {"text": "``"}, {"text": "What"}, {"text": "*T*-164"}, {"text": "'s"}, {"text": "different"}, {"text": "is"}, {"text": "that"}, {"text": "it"}, {"text": "is"}, {"text": "happening"}, {"text": "with"}, {"text": "young"}, {"text": "wines"}, {"text": "just"}, {"text": "coming"}, {"text": "out"}, {"text": "."}, {"text": "We"}, {"text": "'re"}, {"text": "seeing"}, {"text": "it"}, {"text": "partly"}, {"text": "because"}, {"text": "older"}, {"text": "vintages"}, {"text": "are"}, {"text": "growing"}, {"text": "more"}, {"text": "scarce"}, {"text": "."}, {"text": "''"}, {"text": "Wine"}, {"text": "auctions"}, {"text": "have"}, {"text": "almost"}, {"text": "exhausted"}, {"text": "the"}, {"text": "limited"}, {"text": "supply"}, {"text": "of"}, {"text": "those"}, {"text": "wines"}, {"text": ","}, {"text": "Mr."}, {"text": "Shapiro"}, {"text": "continued"}, {"text": ":"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "``"}, {"text": "We"}, {"text": "'ve"}, {"text": "seen"}, {"text": "a"}, {"text": "dramatic"}, {"text": "decrease"}, {"text": "in"}, {"text": "demand"}, {"text": "for"}, {"text": "wines"}, {"text": "from"}, {"text": "the"}, {"text": "'40s"}, {"text": "and"}, {"text": "'50s"}, {"text": ","}, {"text": "which"}, {"text": "*T*-165"}, {"text": "go"}, {"text": "for"}, {"text": "$"}, {"text": "300"}, {"text": "to"}, {"text": "$"}, {"text": "400"}, {"text": "*U*"}, {"text": "a"}, {"text": "bottle"}, {"text": "."}, {"text": "Some"}, {"text": "of"}, {"text": "the"}, {"text": "newer"}, {"text": "wines"}, {"text": ","}, {"text": "even"}, {"text": "at"}, {"text": "$"}, {"text": "90"}, {"text": "to"}, {"text": "$"}, {"text": "100"}, {"text": "*U*"}, {"text": "*ICH*-1"}, {"text": "a"}, {"text": "bottle"}, {"text": "or"}, {"text": "so"}, {"text": ","}, {"text": "almost"}, {"text": "offer"}, {"text": "a"}, {"text": "bargain"}, {"text": "."}, {"text": "''"}, {"text": "*"}, {"text": "Take"}, {"text": "Lake"}, {"text": "Vineyard"}, {"text": "Cabernet"}, {"text": "from"}, {"text": "Diamond"}, {"text": "Creek"}, {"text": "."}, {"text": "It"}, {"text": "'s"}, {"text": "made"}, {"text": "*-2"}, {"text": "only"}, {"text": "in"}, {"text": "years"}, {"text": "when"}, {"text": "the"}, {"text": "grapes"}, {"text": "ripen"}, {"text": "perfectly"}, {"text": "*T*-1"}, {"text": "-LRB-"}, {"text": "the"}, {"text": "last"}, {"text": "was"}, {"text": "1979"}, {"text": "-RRB-"}, {"text": "and"}, {"text": "comes"}, {"text": "from"}, {"text": "a"}, {"text": "single"}, {"text": "acre"}, {"text": "of"}, {"text": "grapes"}, {"text": "that"}, {"text": "*T*-166"}, {"text": "yielded"}, {"text": "a"}, {"text": "mere"}, {"text": "75"}, {"text": "cases"}, {"text": "in"}, {"text": "1987"}, {"text": "."}, {"text": "Owner"}, {"text": "Al"}, {"text": "Brownstein"}, {"text": "originally"}, {"text": "planned"}, {"text": "*-1"}, {"text": "to"}, {"text": "sell"}, {"text": "it"}, {"text": "for"}, {"text": "$"}, {"text": "60"}, {"text": "*U*"}, {"text": "a"}, {"text": "bottle"}, {"text": ","}, {"text": "but"}, {"text": "when"}, {"text": "a"}, {"text": "retailer"}, {"text": "in"}, {"text": "Southern"}, {"text": "California"}, {"text": "asked"}, {"text": ","}, {"text": "``"}, {"text": "Is"}, {"text": "that"}, {"text": "wholesale"}, {"text": "or"}, {"text": "retail"}, {"text": "?"}, {"text": "''"}, {"text": "*T*-2"}, {"text": "he"}, {"text": "re-thought"}, {"text": "the"}, {"text": "matter"}, {"text": "."}, {"text": "*-1"}, {"text": "Offering"}, {"text": "the"}, {"text": "wine"}, {"text": "at"}, {"text": "roughly"}, {"text": "$"}, {"text": "65"}, {"text": "*U*"}, {"text": "a"}, {"text": "bottle"}, {"text": "wholesale"}, {"text": "-LRB-"}, {"text": "$"}, {"text": "100"}, {"text": "*U*"}, {"text": "retail"}, {"text": "-RRB-"}, {"text": ","}, {"text": "he"}, {"text": "sent"}, {"text": "merchants"}, {"text": "around"}, {"text": "the"}, {"text": "country"}, {"text": "a"}, {"text": "form"}, {"text": "asking"}, {"text": "them"}, {"text": "*-2"}, {"text": "to"}, {"text": "check"}, {"text": "one"}, {"text": "of"}, {"text": "three"}, {"text": "answers"}, {"text": ":"}, {"text": "1"}, {"text": "-RRB-"}, {"text": "no"}, {"text": ","}, {"text": "the"}, {"text": "wine"}, {"text": "is"}, {"text": "too"}, {"text": "high"}, {"text": "-LRB-"}, {"text": "2"}, {"text": "responses"}, {"text": "-RRB-"}, {"text": ";"}, {"text": "2"}, {"text": "-RRB-"}, {"text": "yes"}, {"text": ","}, {"text": "it"}, {"text": "'s"}, {"text": "high"}, {"text": "but"}, {"text": "I"}, {"text": "'ll"}, {"text": "take"}, {"text": "it"}, {"text": "-LRB-"}, {"text": "2"}, {"text": "responses"}, {"text": "-RRB-"}, {"text": ";"}, {"text": "3"}, {"text": "-RRB-"}, {"text": "I"}, {"text": "'ll"}, {"text": "take"}, {"text": "all"}, {"text": "0"}, {"text": "I"}, {"text": "can"}, {"text": "get"}, {"text": "*T*-3"}, {"text": "-LRB-"}, {"text": "58"}, {"text": "responses"}, {"text": "-RRB-"}, {"text": "."}, {"text": "The"}, {"text": "wine"}, {"text": "was"}, {"text": "shipped"}, {"text": "*-97"}, {"text": "in"}, {"text": "six-bottle"}, {"text": "cases"}, {"text": "instead"}, {"text": "of"}, {"text": "the"}, {"text": "usual"}, {"text": "12"}, {"text": ","}, {"text": "but"}, {"text": "even"}, {"text": "at"}, {"text": "that"}, {"text": "it"}, {"text": "was"}, {"text": "spread"}, {"text": "*-98"}, {"text": "thin"}, {"text": ","}, {"text": "*-98"}, {"text": "going"}, {"text": "to"}, {"text": "62"}, {"text": "retailers"}, {"text": "in"}, {"text": "28"}, {"text": "states"}, {"text": "."}, {"text": "``"}, {"text": "We"}, {"text": "thought"}, {"text": "0"}, {"text": "it"}, {"text": "was"}, {"text": "awfully"}, {"text": "expensive"}, {"text": ","}, {"text": "''"}, {"text": "said"}, {"text": "*T*-2"}, {"text": "Sterling"}, {"text": "Pratt"}, {"text": ","}, {"text": "wine"}, {"text": "director"}, {"text": "at"}, {"text": "Schaefer"}, {"text": "'s"}, {"text": "in"}, {"text": "Skokie"}, {"text": ","}, {"text": "Ill."}, {"text": ","}, {"text": "one"}, {"text": "of"}, {"text": "the"}, {"text": "top"}, {"text": "stores"}, {"text": "in"}, {"text": "suburban"}, {"text": "Chicago"}, {"text": ","}, {"text": "``"}, {"text": "but"}, {"text": "there"}, {"text": "are"}, {"text": "people"}, {"text": "out"}, {"text": "there"}, {"text": "with"}, {"text": "very"}, {"text": "different"}, {"text": "opinions"}, {"text": "of"}, {"text": "value"}, {"text": "."}, {"text": "We"}, {"text": "got"}, {"text": "our"}, {"text": "two"}, {"text": "six-packs"}, {"text": "--"}, {"text": "and"}, {"text": "they"}, {"text": "'re"}, {"text": "gone"}, {"text": "."}, {"text": "''"}, {"text": "Mr."}, {"text": "Pratt"}, {"text": "remarked"}, {"text": "that"}, {"text": "he"}, {"text": "thinks"}, {"text": "0"}, {"text": "steeper"}, {"text": "prices"}, {"text": "have"}, {"text": "come"}, {"text": "about"}, {"text": "because"}, {"text": "producers"}, {"text": "do"}, {"text": "n't"}, {"text": "like"}, {"text": "*-1"}, {"text": "to"}, {"text": "see"}, {"text": "a"}, {"text": "hit"}, {"text": "wine"}, {"text": "dramatically"}, {"text": "increase"}, {"text": "in"}, {"text": "price"}, {"text": "later"}, {"text": "on"}, {"text": "."}, {"text": "Even"}, {"text": "if"}, {"text": "there"}, {"text": "is"}, {"text": "consumer"}, {"text": "resistance"}, {"text": "at"}, {"text": "first"}, {"text": ","}, {"text": "a"}, {"text": "wine"}, {"text": "that"}, {"text": "*T*-167"}, {"text": "wins"}, {"text": "high"}, {"text": "ratings"}, {"text": "from"}, {"text": "the"}, {"text": "critics"}, {"text": "will"}, {"text": "eventually"}, {"text": "move"}, {"text": "."}, {"text": "``"}, {"text": "There"}, {"text": "may"}, {"text": "be"}, {"text": "sticker-shock"}, {"text": "reaction"}, {"text": "initially"}, {"text": ","}, {"text": "''"}, {"text": "said"}, {"text": "*T*-2"}, {"text": "Mr."}, {"text": "Pratt"}, {"text": ","}, {"text": "``"}, {"text": "but"}, {"text": "as"}, {"text": "the"}, {"text": "wine"}, {"text": "is"}, {"text": "talked"}, {"text": "about"}, {"text": "*-1"}, {"text": "and"}, {"text": "starts"}, {"text": "*-1"}, {"text": "to"}, {"text": "sell"}, {"text": ","}, {"text": "they"}, {"text": "eventually"}, {"text": "get"}, {"text": "excited"}, {"text": "and"}, {"text": "decide"}, {"text": "0"}, {"text": "it"}, {"text": "'s"}, {"text": "worth"}, {"text": "the"}, {"text": "astronomical"}, {"text": "price"}, {"text": "*-3"}, {"text": "to"}, {"text": "add"}, {"text": "it"}, {"text": "to"}, {"text": "their"}, {"text": "collection"}, {"text": "."}, {"text": "''"}, {"text": "``"}, {"text": "It"}, {"text": "'s"}, {"text": "just"}, {"text": "sort"}, {"text": "of"}, {"text": "a"}, {"text": "one-upsmanship"}, {"text": "thing"}, {"text": "with"}, {"text": "some"}, {"text": "people"}, {"text": ","}, {"text": "''"}, {"text": "added"}, {"text": "*T*-1"}, {"text": "Larry"}, {"text": "Shapiro"}, {"text": "."}, {"text": "``"}, {"text": "They"}, {"text": "like"}, {"text": "*-1"}, {"text": "to"}, {"text": "talk"}, {"text": "about"}, {"text": "*-2"}, {"text": "having"}, {"text": "the"}, {"text": "new"}, {"text": "Red"}, {"text": "Rock"}, {"text": "Terrace"}, {"text": "-LCB-"}, {"text": "one"}, {"text": "of"}, {"text": "Diamond"}, {"text": "Creek"}, {"text": "'s"}, {"text": "Cabernets"}, {"text": "-RCB-"}, {"text": "or"}, {"text": "the"}, {"text": "Dunn"}, {"text": "1985"}, {"text": "Cabernet"}, {"text": ","}, {"text": "or"}, {"text": "the"}, {"text": "Petrus"}, {"text": "."}, {"text": "Producers"}, {"text": "have"}, {"text": "seen"}, {"text": "this"}, {"text": "market"}, {"text": "opening"}, {"text": "up"}, {"text": "and"}, {"text": "they"}, {"text": "'re"}, {"text": "now"}, {"text": "creating"}, {"text": "wines"}, {"text": "that"}, {"text": "*T*-168"}, {"text": "appeal"}, {"text": "to"}, {"text": "these"}, {"text": "people"}, {"text": "."}, {"text": "''"}, {"text": "That"}, {"text": "explains"}, {"text": "why"}, {"text": "the"}, {"text": "number"}, {"text": "of"}, {"text": "these"}, {"text": "wines"}, {"text": "is"}, {"text": "expanding"}, {"text": "so"}, {"text": "rapidly"}, {"text": "."}, {"text": "But"}, {"text": "consumers"}, {"text": "who"}, {"text": "*T*-169"}, {"text": "buy"}, {"text": "at"}, {"text": "this"}, {"text": "level"}, {"text": "are"}, {"text": "also"}, {"text": "more"}, {"text": "knowledgeable"}, {"text": "than"}, {"text": "they"}, {"text": "were"}, {"text": "*?*"}, {"text": "a"}, {"text": "few"}, {"text": "years"}, {"text": "ago"}, {"text": "."}, {"text": "``"}, {"text": "They"}, {"text": "wo"}, {"text": "n't"}, {"text": "buy"}, {"text": "if"}, {"text": "the"}, {"text": "quality"}, {"text": "is"}, {"text": "not"}, {"text": "there"}, {"text": ","}, {"text": "''"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "Cedric"}, {"text": "Martin"}, {"text": "of"}, {"text": "Martin"}, {"text": "Wine"}, {"text": "Cellar"}, {"text": "in"}, {"text": "New"}, {"text": "Orleans"}, {"text": "."}, {"text": "``"}, {"text": "Or"}, {"text": "if"}, {"text": "they"}, {"text": "feel"}, {"text": "0"}, {"text": "the"}, {"text": "wine"}, {"text": "is"}, {"text": "overpriced"}, {"text": "*-99"}, {"text": "and"}, {"text": "0"}, {"text": "they"}, {"text": "can"}, {"text": "get"}, {"text": "something"}, {"text": "equally"}, {"text": "good"}, {"text": "for"}, {"text": "less"}, {"text": "."}, {"text": "''"}, {"text": "Mr."}, {"text": "Martin"}, {"text": "has"}, {"text": "increased"}, {"text": "prices"}, {"text": "on"}, {"text": "some"}, {"text": "wines"}, {"text": "-LRB-"}, {"text": "like"}, {"text": "Grgich"}, {"text": "Hills"}, {"text": "Chardonnay"}, {"text": ","}, {"text": "now"}, {"text": "$"}, {"text": "32"}, {"text": "*U*"}, {"text": "-RRB-"}, {"text": "just"}, {"text": "*-1"}, {"text": "to"}, {"text": "slow"}, {"text": "down"}, {"text": "movement"}, {"text": ","}, {"text": "but"}, {"text": "he"}, {"text": "is"}, {"text": "beginning"}, {"text": "*-2"}, {"text": "to"}, {"text": "see"}, {"text": "some"}, {"text": "resistance"}, {"text": "to"}, {"text": "high-priced"}, {"text": "red"}, {"text": "Burgundies"}, {"text": "and"}, {"text": "Cabernets"}, {"text": "and"}, {"text": "Chardonnays"}, {"text": "in"}, {"text": "the"}, {"text": "$"}, {"text": "30"}, {"text": "to"}, {"text": "$"}, {"text": "40"}, {"text": "*U*"}, {"text": "range"}, {"text": "."}, {"text": "Image"}, {"text": "has"}, {"text": ","}, {"text": "of"}, {"text": "course"}, {"text": ","}, {"text": "a"}, {"text": "great"}, {"text": "deal"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "do"}, {"text": "*T*-1"}, {"text": "with"}, {"text": "what"}, {"text": "*T*-170"}, {"text": "sells"}, {"text": "and"}, {"text": "what"}, {"text": "*T*-171"}, {"text": "does"}, {"text": "n't"}, {"text": "*?*"}, {"text": ","}, {"text": "and"}, {"text": "it"}, {"text": "ca"}, {"text": "n't"}, {"text": "be"}, {"text": "forced"}, {"text": "*-100"}, {"text": "."}, {"text": "Wine"}, {"text": "merchants"}, {"text": "ca"}, {"text": "n't"}, {"text": "keep"}, {"text": "Roederer"}, {"text": "Cristal"}, {"text": "in"}, {"text": "stock"}, {"text": ","}, {"text": "but"}, {"text": "they"}, {"text": "have"}, {"text": "*-1"}, {"text": "to"}, {"text": "push"}, {"text": "Salon"}, {"text": "le"}, {"text": "Mesnil"}, {"text": ","}, {"text": "*-2"}, {"text": "even"}, {"text": "lowering"}, {"text": "the"}, {"text": "price"}, {"text": "from"}, {"text": "$"}, {"text": "115"}, {"text": "*U*"}, {"text": "to"}, {"text": "$"}, {"text": "90"}, {"text": "*U*"}, {"text": "."}, {"text": "It"}, {"text": "'s"}, {"text": "hardly"}, {"text": "a"}, {"text": "question"}, {"text": "of"}, {"text": "quality"}, {"text": "--"}, {"text": "the"}, {"text": "1982"}, {"text": "Salon"}, {"text": "is"}, {"text": "a"}, {"text": "beautiful"}, {"text": "wine"}, {"text": ","}, {"text": "but"}, {"text": ","}, {"text": "as"}, {"text": "Mr."}, {"text": "Pratt"}, {"text": "noted"}, {"text": "0"}, {"text": "*T*-1"}, {"text": ","}, {"text": "people"}, {"text": "have"}, {"text": "their"}, {"text": "own"}, {"text": "ideas"}, {"text": "about"}, {"text": "value"}, {"text": "."}, {"text": "It"}, {"text": "*EXP*-1"}, {"text": "'s"}, {"text": "interesting"}, {"text": "*"}, {"text": "to"}, {"text": "find"}, {"text": "that"}, {"text": "a"}, {"text": "lot"}, {"text": "of"}, {"text": "the"}, {"text": "expensive"}, {"text": "wines"}, {"text": "are"}, {"text": "n't"}, {"text": "always"}, {"text": "walking"}, {"text": "out"}, {"text": "the"}, {"text": "door"}, {"text": "."}, {"text": "In"}, {"text": "every"}, {"text": "major"}, {"text": "market"}, {"text": "in"}, {"text": "the"}, {"text": "U.S."}, {"text": ","}, {"text": "for"}, {"text": "instance"}, {"text": ","}, {"text": "you"}, {"text": "can"}, {"text": "buy"}, {"text": "'86"}, {"text": "La"}, {"text": "Tache"}, {"text": "or"}, {"text": "Richebourg"}, {"text": ","}, {"text": "virtually"}, {"text": "all"}, {"text": "of"}, {"text": "the"}, {"text": "first"}, {"text": "growth"}, {"text": "Bordeaux"}, {"text": "-LRB-"}, {"text": "except"}, {"text": "Petrus"}, {"text": "-RRB-"}, {"text": ","}, {"text": "as"}, {"text": "well"}, {"text": "as"}, {"text": "Opus"}, {"text": "One"}, {"text": "and"}, {"text": "Dominus"}, {"text": "from"}, {"text": "California"}, {"text": "and"}, {"text": ","}, {"text": "at"}, {"text": "the"}, {"text": "moment"}, {"text": ","}, {"text": "the"}, {"text": "Stag"}, {"text": "'s"}, {"text": "Leap"}, {"text": "1985"}, {"text": "Cask"}, {"text": "23"}, {"text": "."}, {"text": "With"}, {"text": "the"}, {"text": "biggest"}, {"text": "wine-buying"}, {"text": "period"}, {"text": "of"}, {"text": "the"}, {"text": "year"}, {"text": "looming"}, {"text": "as"}, {"text": "the"}, {"text": "holidays"}, {"text": "approach"}, {"text": ","}, {"text": "it"}, {"text": "*EXP*-1"}, {"text": "will"}, {"text": "be"}, {"text": "interesting"}, {"text": "*"}, {"text": "to"}, {"text": "see"}, {"text": "how"}, {"text": "the"}, {"text": "superpremiums"}, {"text": "fare"}, {"text": "."}, {"text": "By"}, {"text": "January"}, {"text": "it"}, {"text": "*EXP*-1"}, {"text": "should"}, {"text": "be"}, {"text": "fairly"}, {"text": "clear"}, {"text": "what"}, {"text": "*T*-2"}, {"text": "'s"}, {"text": "hot"}, {"text": "--"}, {"text": "and"}, {"text": "what"}, {"text": "*T*-172"}, {"text": "'s"}, {"text": "not"}, {"text": "*?*"}, {"text": "."}, {"text": "Ms."}, {"text": "Ensrud"}, {"text": "is"}, {"text": "a"}, {"text": "free-lance"}, {"text": "wine"}, {"text": "writer"}, {"text": "in"}, {"text": "New"}, {"text": "York"}, {"text": "."}, {"text": "Signs"}, {"text": "of"}, {"text": "a"}, {"text": "slowing"}, {"text": "economy"}, {"text": "are"}, {"text": "increasing"}, {"text": "pressure"}, {"text": "*ICH*-2"}, {"text": "on"}, {"text": "the"}, {"text": "Federal"}, {"text": "Reserve"}, {"text": "*"}, {"text": "to"}, {"text": "cut"}, {"text": "short-term"}, {"text": "interest"}, {"text": "rates"}, {"text": ","}, {"text": "but"}, {"text": "it"}, {"text": "*EXP*-1"}, {"text": "is"}, {"text": "n't"}, {"text": "clear"}, {"text": "whether"}, {"text": "the"}, {"text": "central"}, {"text": "bank"}, {"text": "will"}, {"text": "do"}, {"text": "so"}, {"text": "."}, {"text": "A"}, {"text": "survey"}, {"text": "by"}, {"text": "the"}, {"text": "Fed"}, {"text": "'s"}, {"text": "12"}, {"text": "district"}, {"text": "banks"}, {"text": "shows"}, {"text": "0"}, {"text": "economic"}, {"text": "growth"}, {"text": "has"}, {"text": "been"}, {"text": "sluggish"}, {"text": "in"}, {"text": "recent"}, {"text": "weeks"}, {"text": ","}, {"text": "while"}, {"text": "upward"}, {"text": "pressures"}, {"text": "on"}, {"text": "prices"}, {"text": "have"}, {"text": "moderated"}, {"text": "."}, {"text": "``"}, {"text": "The"}, {"text": "economy"}, {"text": "is"}, {"text": "clearly"}, {"text": "slowing"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "Robert"}, {"text": "Black"}, {"text": ","}, {"text": "president"}, {"text": "of"}, {"text": "the"}, {"text": "Richmond"}, {"text": "Federal"}, {"text": "Reserve"}, {"text": "Bank"}, {"text": "."}, {"text": "``"}, {"text": "If"}, {"text": "you"}, {"text": "look"}, {"text": "at"}, {"text": "the"}, {"text": "third"}, {"text": "quarter"}, {"text": "as"}, {"text": "*"}, {"text": "posting"}, {"text": "roughly"}, {"text": "2.5"}, {"text": "%"}, {"text": "growth"}, {"text": ","}, {"text": "I"}, {"text": "do"}, {"text": "see"}, {"text": "some"}, {"text": "slowing"}, {"text": "in"}, {"text": "the"}, {"text": "fourth"}, {"text": "quarter"}, {"text": ","}, {"text": "''"}, {"text": "agrees"}, {"text": "*T*-1"}, {"text": "Kansas"}, {"text": "City"}, {"text": "Fed"}, {"text": "President"}, {"text": "Roger"}, {"text": "Guffey"}, {"text": "."}, {"text": "Nevertheless"}, {"text": ","}, {"text": "both"}, {"text": "Mr."}, {"text": "Guffey"}, {"text": "and"}, {"text": "Mr."}, {"text": "Black"}, {"text": "say"}, {"text": "0"}, {"text": "the"}, {"text": "slowdown"}, {"text": "so"}, {"text": "far"}, {"text": "is"}, {"text": "no"}, {"text": "cause"}, {"text": "for"}, {"text": "concern"}, {"text": "."}, {"text": "``"}, {"text": "We"}, {"text": "'re"}, {"text": "coming"}, {"text": "closer"}, {"text": "to"}, {"text": "*"}, {"text": "achieving"}, {"text": "the"}, {"text": "stated"}, {"text": "objective"}, {"text": "of"}, {"text": "*"}, {"text": "slowing"}, {"text": "the"}, {"text": "economy"}, {"text": "to"}, {"text": "a"}, {"text": "point"}, {"text": "where"}, {"text": "hopefully"}, {"text": "some"}, {"text": "downward"}, {"text": "trend"}, {"text": "in"}, {"text": "prices"}, {"text": "will"}, {"text": "occur"}, {"text": "*T*-1"}, {"text": ","}, {"text": "''"}, {"text": "said"}, {"text": "Mr."}, {"text": "Guffey"}, {"text": "."}, {"text": "Bush"}, {"text": "administration"}, {"text": "officials"}, {"text": "are"}, {"text": "looking"}, {"text": "to"}, {"text": "the"}, {"text": "Fed"}, {"text": "*-1"}, {"text": "to"}, {"text": "bring"}, {"text": "down"}, {"text": "rates"}, {"text": ","}, {"text": "and"}, {"text": "financial"}, {"text": "markets"}, {"text": "seem"}, {"text": "*-2"}, {"text": "to"}, {"text": "be"}, {"text": "expecting"}, {"text": "easier"}, {"text": "credit"}, {"text": "as"}, {"text": "well"}, {"text": "."}, {"text": "``"}, {"text": "I"}, {"text": "think"}, {"text": "0"}, {"text": "the"}, {"text": "market"}, {"text": "had"}, {"text": "been"}, {"text": "expecting"}, {"text": "the"}, {"text": "Fed"}, {"text": "to"}, {"text": "ease"}, {"text": "sooner"}, {"text": "and"}, {"text": "a"}, {"text": "little"}, {"text": "more"}, {"text": "than"}, {"text": "it"}, {"text": "has"}, {"text": "*?*"}, {"text": "to"}, {"text": "date"}, {"text": ","}, {"text": "''"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "Robert"}, {"text": "Johnson"}, {"text": ","}, {"text": "vice"}, {"text": "president"}, {"text": "of"}, {"text": "global"}, {"text": "markets"}, {"text": "for"}, {"text": "Bankers"}, {"text": "Trust"}, {"text": "Co"}, {"text": "."}, {"text": "The"}, {"text": "Fed"}, {"text": "cut"}, {"text": "the"}, {"text": "key"}, {"text": "federal"}, {"text": "funds"}, {"text": "interest"}, {"text": "rate"}, {"text": "by"}, {"text": "about"}, {"text": "0.25"}, {"text": "percentage"}, {"text": "point"}, {"text": "to"}, {"text": "8.75"}, {"text": "%"}, {"text": "after"}, {"text": "the"}, {"text": "Oct."}, {"text": "13"}, {"text": "stock"}, {"text": "market"}, {"text": "plunge"}, {"text": ","}, {"text": "but"}, {"text": "has"}, {"text": "shown"}, {"text": "no"}, {"text": "sign"}, {"text": "of"}, {"text": "movement"}, {"text": "since"}, {"text": "."}, {"text": "The"}, {"text": "report"}, {"text": "from"}, {"text": "the"}, {"text": "Fed"}, {"text": "found"}, {"text": "that"}, {"text": "manufacturing"}, {"text": ","}, {"text": "in"}, {"text": "particular"}, {"text": ","}, {"text": "has"}, {"text": "been"}, {"text": "weak"}, {"text": "in"}, {"text": "recent"}, {"text": "weeks"}, {"text": "."}, {"text": "The"}, {"text": "Philadelphia"}, {"text": "Fed"}, {"text": ","}, {"text": "for"}, {"text": "instance"}, {"text": ","}, {"text": "reported"}, {"text": "that"}, {"text": "manufacturing"}, {"text": "activity"}, {"text": "``"}, {"text": "continues"}, {"text": "*-1"}, {"text": "to"}, {"text": "decline"}, {"text": "''"}, {"text": "for"}, {"text": "the"}, {"text": "fourth"}, {"text": "month"}, {"text": "in"}, {"text": "a"}, {"text": "row"}, {"text": "."}, {"text": "And"}, {"text": "in"}, {"text": "the"}, {"text": "Chicago"}, {"text": "district"}, {"text": ","}, {"text": "the"}, {"text": "report"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": ","}, {"text": "``"}, {"text": "a"}, {"text": "manufacturer"}, {"text": "of"}, {"text": "capital"}, {"text": "goods"}, {"text": "noted"}, {"text": "slower"}, {"text": "orders"}, {"text": "for"}, {"text": "some"}, {"text": "types"}, {"text": ","}, {"text": "including"}, {"text": "defense"}, {"text": "equipment"}, {"text": ","}, {"text": "petroleum"}, {"text": "equipment"}, {"text": ","}, {"text": "food"}, {"text": "packaging"}, {"text": "machinery"}, {"text": "and"}, {"text": "material"}, {"text": "handling"}, {"text": "equipment"}, {"text": "."}, {"text": "''"}, {"text": "Retail"}, {"text": "sales"}, {"text": "also"}, {"text": "were"}, {"text": "reported"}, {"text": "*-1"}, {"text": "*-2"}, {"text": "slow"}, {"text": "in"}, {"text": "most"}, {"text": "districts"}, {"text": ","}, {"text": "particularly"}, {"text": "``"}, {"text": "for"}, {"text": "discretionary"}, {"text": ","}, {"text": "big-ticket"}, {"text": "items"}, {"text": "such"}, {"text": "as"}, {"text": "furniture"}, {"text": ","}, {"text": "home"}, {"text": "appliances"}, {"text": "and"}, {"text": "consumer"}, {"text": "electronics"}, {"text": "."}, {"text": "''"}, {"text": "And"}, {"text": "construction"}, {"text": "also"}, {"text": "was"}, {"text": "described"}, {"text": "*-101"}, {"text": "as"}, {"text": "slow"}, {"text": "in"}, {"text": "most"}, {"text": "areas"}, {"text": "."}, {"text": "Despite"}, {"text": "the"}, {"text": "economic"}, {"text": "slowdown"}, {"text": ","}, {"text": "there"}, {"text": "are"}, {"text": "few"}, {"text": "clear"}, {"text": "signs"}, {"text": "that"}, {"text": "growth"}, {"text": "is"}, {"text": "coming"}, {"text": "to"}, {"text": "a"}, {"text": "halt"}, {"text": "."}, {"text": "As"}, {"text": "a"}, {"text": "result"}, {"text": ","}, {"text": "Fed"}, {"text": "officials"}, {"text": "may"}, {"text": "be"}, {"text": "divided"}, {"text": "*-102"}, {"text": "over"}, {"text": "whether"}, {"text": "*-102"}, {"text": "to"}, {"text": "ease"}, {"text": "credit"}, {"text": "."}, {"text": "Several"}, {"text": "Fed"}, {"text": "governors"}, {"text": "in"}, {"text": "Washington"}, {"text": "have"}, {"text": "been"}, {"text": "pushing"}, {"text": "for"}, {"text": "easier"}, {"text": "credit"}, {"text": ";"}, {"text": "but"}, {"text": "many"}, {"text": "of"}, {"text": "the"}, {"text": "regional"}, {"text": "Fed"}, {"text": "presidents"}, {"text": "have"}, {"text": "been"}, {"text": "resisting"}, {"text": "such"}, {"text": "a"}, {"text": "move"}, {"text": "."}, {"text": "Mr."}, {"text": "Black"}, {"text": "said"}, {"text": "0"}, {"text": "he"}, {"text": "is"}, {"text": "``"}, {"text": "pleased"}, {"text": "''"}, {"text": "with"}, {"text": "the"}, {"text": "economy"}, {"text": "'s"}, {"text": "recent"}, {"text": "performance"}, {"text": ","}, {"text": "and"}, {"text": "does"}, {"text": "n't"}, {"text": "see"}, {"text": "``"}, {"text": "a"}, {"text": "lot"}, {"text": "of"}, {"text": "excesses"}, {"text": "*ICH*-1"}, {"text": "out"}, {"text": "there"}, {"text": "that"}, {"text": "*T*-3"}, {"text": "would"}, {"text": "tilt"}, {"text": "us"}, {"text": "into"}, {"text": "recession"}, {"text": "."}, {"text": "''"}, {"text": "``"}, {"text": "There"}, {"text": "is"}, {"text": "always"}, {"text": "a"}, {"text": "chance"}, {"text": "of"}, {"text": "recession"}, {"text": ","}, {"text": "''"}, {"text": "added"}, {"text": "*T*-2"}, {"text": "Mr."}, {"text": "Guffey"}, {"text": ","}, {"text": "``"}, {"text": "but"}, {"text": "if"}, {"text": "you"}, {"text": "ask"}, {"text": "me"}, {"text": "*-3"}, {"text": "to"}, {"text": "put"}, {"text": "a"}, {"text": "percentage"}, {"text": "on"}, {"text": "it"}, {"text": ","}, {"text": "I"}, {"text": "would"}, {"text": "think"}, {"text": "0"}, {"text": "it"}, {"text": "'s"}, {"text": "well"}, {"text": "below"}, {"text": "a"}, {"text": "50"}, {"text": "%"}, {"text": "chance"}, {"text": "."}, {"text": "Integra-A"}, {"text": "Hotel"}, {"text": "&"}, {"text": "Restaurant"}, {"text": "Co."}, {"text": "said"}, {"text": "0"}, {"text": "its"}, {"text": "planned"}, {"text": "rights"}, {"text": "offering"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "to"}, {"text": "raise"}, {"text": "about"}, {"text": "$"}, {"text": "9"}, {"text": "million"}, {"text": "*U*"}, {"text": "was"}, {"text": "declared"}, {"text": "*-103"}, {"text": "effective"}, {"text": "and"}, {"text": "the"}, {"text": "company"}, {"text": "will"}, {"text": "begin"}, {"text": "*-2"}, {"text": "mailing"}, {"text": "materials"}, {"text": "to"}, {"text": "shareholders"}, {"text": "at"}, {"text": "the"}, {"text": "end"}, {"text": "of"}, {"text": "this"}, {"text": "week"}, {"text": "."}, {"text": "Under"}, {"text": "the"}, {"text": "offer"}, {"text": ","}, {"text": "shareholders"}, {"text": "will"}, {"text": "receive"}, {"text": "one"}, {"text": "right"}, {"text": "for"}, {"text": "each"}, {"text": "105"}, {"text": "common"}, {"text": "shares"}, {"text": "owned"}, {"text": "*"}, {"text": "."}, {"text": "Each"}, {"text": "right"}, {"text": "entitles"}, {"text": "the"}, {"text": "shareholder"}, {"text": "to"}, {"text": "buy"}, {"text": "$"}, {"text": "100"}, {"text": "*U*"}, {"text": "face"}, {"text": "amount"}, {"text": "of"}, {"text": "13.5"}, {"text": "%"}, {"text": "bonds"}, {"text": "due"}, {"text": "1993"}, {"text": "and"}, {"text": "warrants"}, {"text": "*"}, {"text": "to"}, {"text": "buy"}, {"text": "23.5"}, {"text": "common"}, {"text": "shares"}, {"text": "at"}, {"text": "30"}, {"text": "cents"}, {"text": "a"}, {"text": "share"}, {"text": "."}, {"text": "The"}, {"text": "rights"}, {"text": ","}, {"text": "which"}, {"text": "*T*-173"}, {"text": "expire"}, {"text": "Nov."}, {"text": "21"}, {"text": ","}, {"text": "can"}, {"text": "be"}, {"text": "exercised"}, {"text": "*-104"}, {"text": "for"}, {"text": "$"}, {"text": "100"}, {"text": "*U*"}, {"text": "each"}, {"text": "."}, {"text": "Integra"}, {"text": ","}, {"text": "which"}, {"text": "*T*-174"}, {"text": "owns"}, {"text": "and"}, {"text": "operates"}, {"text": "hotels"}, {"text": ","}, {"text": "said"}, {"text": "that"}, {"text": "Hallwood"}, {"text": "Group"}, {"text": "Inc."}, {"text": "has"}, {"text": "agreed"}, {"text": "*-1"}, {"text": "to"}, {"text": "exercise"}, {"text": "any"}, {"text": "rights"}, {"text": "that"}, {"text": "*T*-175"}, {"text": "are"}, {"text": "n't"}, {"text": "exercised"}, {"text": "*-2"}, {"text": "by"}, {"text": "other"}, {"text": "shareholders"}, {"text": "."}, {"text": "Hallwood"}, {"text": ","}, {"text": "a"}, {"text": "Cleveland"}, {"text": "merchant"}, {"text": "bank"}, {"text": ","}, {"text": "owns"}, {"text": "about"}, {"text": "11"}, {"text": "%"}, {"text": "of"}, {"text": "Integra"}, {"text": "."}, {"text": "Copperweld"}, {"text": "Corp."}, {"text": ","}, {"text": "a"}, {"text": "specialty"}, {"text": "steelmaker"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "445"}, {"text": "workers"}, {"text": "at"}, {"text": "a"}, {"text": "plant"}, {"text": "in"}, {"text": "Shelby"}, {"text": ","}, {"text": "Ohio"}, {"text": ","}, {"text": "began"}, {"text": "a"}, {"text": "strike"}, {"text": "after"}, {"text": "the"}, {"text": "United"}, {"text": "Steelworkers"}, {"text": "Local"}, {"text": "3057"}, {"text": "rejected"}, {"text": "a"}, {"text": "new"}, {"text": "contract"}, {"text": "on"}, {"text": "Tuesday"}, {"text": "."}, {"text": "The"}, {"text": "previous"}, {"text": "contract"}, {"text": "between"}, {"text": "Copperweld"}, {"text": "'s"}, {"text": "Ohio"}, {"text": "Steel"}, {"text": "Tube"}, {"text": "division"}, {"text": "and"}, {"text": "the"}, {"text": "union"}, {"text": "expired"}, {"text": "at"}, {"text": "midnight"}, {"text": "Tuesday"}, {"text": "."}, {"text": "The"}, {"text": "union"}, {"text": "vote"}, {"text": "*"}, {"text": "to"}, {"text": "reject"}, {"text": "the"}, {"text": "proposed"}, {"text": "pact"}, {"text": "was"}, {"text": "230-215"}, {"text": "."}, {"text": "Copperweld"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "does"}, {"text": "n't"}, {"text": "expect"}, {"text": "a"}, {"text": "protracted"}, {"text": "strike"}, {"text": "."}, {"text": "It"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "has"}, {"text": "taken"}, {"text": "measures"}, {"text": "*-1"}, {"text": "to"}, {"text": "continue"}, {"text": "shipments"}, {"text": "during"}, {"text": "the"}, {"text": "work"}, {"text": "stoppage"}, {"text": "."}, {"text": "The"}, {"text": "Treasury"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "plans"}, {"text": "*-1"}, {"text": "to"}, {"text": "sell"}, {"text": "$"}, {"text": "30"}, {"text": "billion"}, {"text": "*U*"}, {"text": "in"}, {"text": "notes"}, {"text": "and"}, {"text": "bonds"}, {"text": "next"}, {"text": "week"}, {"text": ","}, {"text": "but"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "auctions"}, {"text": "will"}, {"text": "be"}, {"text": "postponed"}, {"text": "*-105"}, {"text": "unless"}, {"text": "Congress"}, {"text": "acts"}, {"text": "quickly"}, {"text": "*-2"}, {"text": "to"}, {"text": "lift"}, {"text": "the"}, {"text": "federal"}, {"text": "debt"}, {"text": "ceiling"}, {"text": "."}, {"text": "Michael"}, {"text": "Basham"}, {"text": ","}, {"text": "deputy"}, {"text": "assistant"}, {"text": "secretary"}, {"text": "for"}, {"text": "federal"}, {"text": "finance"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "Treasury"}, {"text": "may"}, {"text": "wait"}, {"text": "until"}, {"text": "late"}, {"text": "Monday"}, {"text": "or"}, {"text": "even"}, {"text": "early"}, {"text": "Tuesday"}, {"text": "*-2"}, {"text": "to"}, {"text": "announce"}, {"text": "whether"}, {"text": "the"}, {"text": "autions"}, {"text": "are"}, {"text": "*-1"}, {"text": "to"}, {"text": "be"}, {"text": "rescheduled"}, {"text": "*-106"}, {"text": "."}, {"text": "Unless"}, {"text": "it"}, {"text": "can"}, {"text": "raise"}, {"text": "money"}, {"text": "in"}, {"text": "financial"}, {"text": "markets"}, {"text": ","}, {"text": "Mr."}, {"text": "Basham"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": ","}, {"text": "the"}, {"text": "federal"}, {"text": "government"}, {"text": "wo"}, {"text": "n't"}, {"text": "have"}, {"text": "the"}, {"text": "cash"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "pay"}, {"text": "off"}, {"text": "$"}, {"text": "13.8"}, {"text": "billion"}, {"text": "*U*"}, {"text": "in"}, {"text": "Treasury"}, {"text": "bills"}, {"text": "that"}, {"text": "*T*-176"}, {"text": "mature"}, {"text": "on"}, {"text": "Thursday"}, {"text": "*T*-2"}, {"text": "."}, {"text": "Without"}, {"text": "congressional"}, {"text": "action"}, {"text": ","}, {"text": "the"}, {"text": "Treasury"}, {"text": "ca"}, {"text": "n't"}, {"text": "sell"}, {"text": "any"}, {"text": "new"}, {"text": "securities"}, {"text": "--"}, {"text": "even"}, {"text": "savings"}, {"text": "bonds"}, {"text": "."}, {"text": "But"}, {"text": "despite"}, {"text": "partisan"}, {"text": "bickering"}, {"text": "over"}, {"text": "the"}, {"text": "debt"}, {"text": "ceiling"}, {"text": ","}, {"text": "which"}, {"text": "*T*-177"}, {"text": "has"}, {"text": "become"}, {"text": "entangled"}, {"text": "in"}, {"text": "the"}, {"text": "fight"}, {"text": "over"}, {"text": "*"}, {"text": "cutting"}, {"text": "capital-gains"}, {"text": "taxes"}, {"text": ","}, {"text": "Congress"}, {"text": "is"}, {"text": "almost"}, {"text": "certain"}, {"text": "*-1"}, {"text": "to"}, {"text": "act"}, {"text": "in"}, {"text": "time"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "avoid"}, {"text": "default"}, {"text": "*T*-3"}, {"text": "."}, {"text": "``"}, {"text": "Each"}, {"text": "day"}, {"text": "that"}, {"text": "Congress"}, {"text": "fails"}, {"text": "*-1"}, {"text": "to"}, {"text": "act"}, {"text": "*T*-2"}, {"text": "..."}, {"text": "will"}, {"text": "cause"}, {"text": "additional"}, {"text": "disruption"}, {"text": "in"}, {"text": "our"}, {"text": "borrowing"}, {"text": "schedule"}, {"text": ","}, {"text": "*"}, {"text": "possibly"}, {"text": "resulting"}, {"text": "in"}, {"text": "higher"}, {"text": "interest"}, {"text": "costs"}, {"text": "to"}, {"text": "the"}, {"text": "taxpayer"}, {"text": ","}, {"text": "''"}, {"text": "Treasury"}, {"text": "Secretary"}, {"text": "Nicholas"}, {"text": "Brady"}, {"text": "said"}, {"text": "*T*-3"}, {"text": "in"}, {"text": "a"}, {"text": "speech"}, {"text": "prepared"}, {"text": "*"}, {"text": "for"}, {"text": "delivery"}, {"text": "last"}, {"text": "night"}, {"text": "to"}, {"text": "a"}, {"text": "group"}, {"text": "of"}, {"text": "bankers"}, {"text": "."}, {"text": "``"}, {"text": "*"}, {"text": "To"}, {"text": "avoid"}, {"text": "these"}, {"text": "costs"}, {"text": ","}, {"text": "and"}, {"text": "a"}, {"text": "possible"}, {"text": "default"}, {"text": ","}, {"text": "immediate"}, {"text": "action"}, {"text": "is"}, {"text": "imperative"}, {"text": "."}, {"text": "''"}, {"text": "The"}, {"text": "securities"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "to"}, {"text": "be"}, {"text": "sold"}, {"text": "*-107"}, {"text": "next"}, {"text": "week"}, {"text": "will"}, {"text": "raise"}, {"text": "about"}, {"text": "$"}, {"text": "10"}, {"text": "billion"}, {"text": "*U*"}, {"text": "in"}, {"text": "cash"}, {"text": "and"}, {"text": "redeem"}, {"text": "$"}, {"text": "20"}, {"text": "billion"}, {"text": "*U*"}, {"text": "in"}, {"text": "maturing"}, {"text": "notes"}, {"text": "."}, {"text": "The"}, {"text": "new"}, {"text": "securities"}, {"text": ","}, {"text": "part"}, {"text": "of"}, {"text": "the"}, {"text": "federal"}, {"text": "government"}, {"text": "'s"}, {"text": "regular"}, {"text": "quarterly"}, {"text": "refunding"}, {"text": ","}, {"text": "will"}, {"text": "consist"}, {"text": "of"}, {"text": ":"}, {"text": "--"}, {"text": "$"}, {"text": "10"}, {"text": "billion"}, {"text": "*U*"}, {"text": "of"}, {"text": "three-year"}, {"text": "notes"}, {"text": ","}, {"text": "0"}, {"text": "*T*-1"}, {"text": "to"}, {"text": "be"}, {"text": "auctioned"}, {"text": "*-108"}, {"text": "Tuesday"}, {"text": "and"}, {"text": "to"}, {"text": "mature"}, {"text": "Nov."}, {"text": "15"}, {"text": ","}, {"text": "1992"}, {"text": "."}, {"text": "--"}, {"text": "$"}, {"text": "10"}, {"text": "billion"}, {"text": "*U*"}, {"text": "of"}, {"text": "10-year"}, {"text": "notes"}, {"text": ","}, {"text": "0"}, {"text": "*T*-1"}, {"text": "to"}, {"text": "be"}, {"text": "auctioned"}, {"text": "*-109"}, {"text": "Wednesday"}, {"text": "and"}, {"text": "to"}, {"text": "mature"}, {"text": "Nov."}, {"text": "15"}, {"text": ","}, {"text": "1999"}, {"text": "."}, {"text": "--"}, {"text": "$"}, {"text": "10"}, {"text": "billion"}, {"text": "*U*"}, {"text": "of"}, {"text": "30-year"}, {"text": "bonds"}, {"text": ","}, {"text": "0"}, {"text": "*T*-1"}, {"text": "to"}, {"text": "be"}, {"text": "auctioned"}, {"text": "*-110"}, {"text": "Thursday"}, {"text": "and"}, {"text": "to"}, {"text": "mature"}, {"text": "Aug."}, {"text": "15"}, {"text": ","}, {"text": "2019"}, {"text": "."}, {"text": "The"}, {"text": "Treasury"}, {"text": "also"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "plans"}, {"text": "*-1"}, {"text": "to"}, {"text": "sell"}, {"text": "$"}, {"text": "10"}, {"text": "billion"}, {"text": "*U*"}, {"text": "in"}, {"text": "36-day"}, {"text": "cash"}, {"text": "management"}, {"text": "bills"}, {"text": "on"}, {"text": "Thursday"}, {"text": "."}, {"text": "They"}, {"text": "will"}, {"text": "mature"}, {"text": "Dec."}, {"text": "21"}, {"text": "."}, {"text": "None"}, {"text": "of"}, {"text": "the"}, {"text": "securities"}, {"text": "will"}, {"text": "be"}, {"text": "eligible"}, {"text": "for"}, {"text": "when-issued"}, {"text": "trading"}, {"text": "until"}, {"text": "Congress"}, {"text": "approves"}, {"text": "an"}, {"text": "increase"}, {"text": "in"}, {"text": "the"}, {"text": "debt"}, {"text": "ceiling"}, {"text": ","}, {"text": "*-1"}, {"text": "clearing"}, {"text": "the"}, {"text": "way"}, {"text": "for"}, {"text": "a"}, {"text": "formal"}, {"text": "offering"}, {"text": ","}, {"text": "Mr."}, {"text": "Basham"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "."}, {"text": "The"}, {"text": "Treasury"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "needs"}, {"text": "*-1"}, {"text": "to"}, {"text": "raise"}, {"text": "$"}, {"text": "47.5"}, {"text": "billion"}, {"text": "*U*"}, {"text": "in"}, {"text": "the"}, {"text": "current"}, {"text": "quarter"}, {"text": "in"}, {"text": "order"}, {"text": "*-1"}, {"text": "to"}, {"text": "end"}, {"text": "December"}, {"text": "with"}, {"text": "a"}, {"text": "$"}, {"text": "20"}, {"text": "billion"}, {"text": "*U*"}, {"text": "cash"}, {"text": "balance"}, {"text": "."}, {"text": "Auctions"}, {"text": "held"}, {"text": "*"}, {"text": "in"}, {"text": "October"}, {"text": "and"}, {"text": "those"}, {"text": "scheduled"}, {"text": "*"}, {"text": "for"}, {"text": "next"}, {"text": "week"}, {"text": "will"}, {"text": "raise"}, {"text": "a"}, {"text": "total"}, {"text": "of"}, {"text": "$"}, {"text": "25.6"}, {"text": "billion"}, {"text": "*U*"}, {"text": "."}, {"text": "The"}, {"text": "remaining"}, {"text": "$"}, {"text": "21.9"}, {"text": "billion"}, {"text": "*U*"}, {"text": "could"}, {"text": "be"}, {"text": "raised"}, {"text": "*-111"}, {"text": "through"}, {"text": "the"}, {"text": "sale"}, {"text": "of"}, {"text": "short-term"}, {"text": "Treasury"}, {"text": "bills"}, {"text": ","}, {"text": "two-year"}, {"text": "notes"}, {"text": "in"}, {"text": "November"}, {"text": "and"}, {"text": "five-year"}, {"text": "notes"}, {"text": "in"}, {"text": "early"}, {"text": "December"}, {"text": ","}, {"text": "the"}, {"text": "Treasury"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "In"}, {"text": "the"}, {"text": "first"}, {"text": "three"}, {"text": "months"}, {"text": "of"}, {"text": "1990"}, {"text": ","}, {"text": "the"}, {"text": "Treasury"}, {"text": "estimates"}, {"text": "that"}, {"text": "it"}, {"text": "will"}, {"text": "have"}, {"text": "*-1"}, {"text": "to"}, {"text": "raise"}, {"text": "between"}, {"text": "$"}, {"text": "45"}, {"text": "billion"}, {"text": "and"}, {"text": "$"}, {"text": "50"}, {"text": "billion"}, {"text": "*U*"}, {"text": ","}, {"text": "*"}, {"text": "assuming"}, {"text": "that"}, {"text": "it"}, {"text": "decides"}, {"text": "*-2"}, {"text": "to"}, {"text": "aim"}, {"text": "for"}, {"text": "a"}, {"text": "$"}, {"text": "10"}, {"text": "billion"}, {"text": "*U*"}, {"text": "cash"}, {"text": "balance"}, {"text": "at"}, {"text": "the"}, {"text": "end"}, {"text": "of"}, {"text": "March"}, {"text": "."}, {"text": "Lancaster"}, {"text": "Colony"}, {"text": "Corp."}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "acquired"}, {"text": "Reames"}, {"text": "Foods"}, {"text": "Inc."}, {"text": "in"}, {"text": "a"}, {"text": "cash"}, {"text": "transaction"}, {"text": "."}, {"text": "Terms"}, {"text": "were"}, {"text": "n't"}, {"text": "disclosed"}, {"text": "*-1"}, {"text": "."}, {"text": "Reames"}, {"text": ","}, {"text": "a"}, {"text": "maker"}, {"text": "and"}, {"text": "marketer"}, {"text": "of"}, {"text": "frozen"}, {"text": "noodles"}, {"text": "and"}, {"text": "pre-cooked"}, {"text": "pasta"}, {"text": "based"}, {"text": "*"}, {"text": "in"}, {"text": "Clive"}, {"text": ","}, {"text": "Iowa"}, {"text": ","}, {"text": "has"}, {"text": "annual"}, {"text": "sales"}, {"text": "of"}, {"text": "about"}, {"text": "$"}, {"text": "11"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "Lancaster"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Investors"}, {"text": "took"}, {"text": "advantage"}, {"text": "of"}, {"text": "Tuesday"}, {"text": "'s"}, {"text": "stock"}, {"text": "rally"}, {"text": "*-1"}, {"text": "to"}, {"text": "book"}, {"text": "some"}, {"text": "profits"}, {"text": "yesterday"}, {"text": ","}, {"text": "*-1"}, {"text": "leaving"}, {"text": "stocks"}, {"text": "up"}, {"text": "fractionally"}, {"text": "."}, {"text": "Bond"}, {"text": "prices"}, {"text": "and"}, {"text": "the"}, {"text": "dollar"}, {"text": "both"}, {"text": "gained"}, {"text": "modestly"}, {"text": "."}, {"text": "The"}, {"text": "Dow"}, {"text": "Jones"}, {"text": "Industrial"}, {"text": "Average"}, {"text": "finished"}, {"text": "less"}, {"text": "than"}, {"text": "a"}, {"text": "point"}, {"text": "higher"}, {"text": "*-1"}, {"text": "to"}, {"text": "close"}, {"text": "at"}, {"text": "2645.90"}, {"text": "in"}, {"text": "moderate"}, {"text": "trading"}, {"text": "."}, {"text": "But"}, {"text": "advancing"}, {"text": "issues"}, {"text": "on"}, {"text": "the"}, {"text": "New"}, {"text": "York"}, {"text": "Stock"}, {"text": "Exchange"}, {"text": "were"}, {"text": "tidily"}, {"text": "ahead"}, {"text": "of"}, {"text": "declining"}, {"text": "stocks"}, {"text": ","}, {"text": "847"}, {"text": "to"}, {"text": "644"}, {"text": "."}, {"text": "Long-term"}, {"text": "bond"}, {"text": "prices"}, {"text": "rose"}, {"text": "despite"}, {"text": "prospects"}, {"text": "of"}, {"text": "a"}, {"text": "huge"}, {"text": "new"}, {"text": "supply"}, {"text": "of"}, {"text": "Treasury"}, {"text": "debt"}, {"text": "this"}, {"text": "month"}, {"text": "."}, {"text": "Continuing"}, {"text": "demand"}, {"text": "for"}, {"text": "dollars"}, {"text": "from"}, {"text": "Japanese"}, {"text": "investors"}, {"text": "boosted"}, {"text": "the"}, {"text": "U.S."}, {"text": "currency"}, {"text": "."}, {"text": "Analysts"}, {"text": "were"}, {"text": "disappointed"}, {"text": "*-112"}, {"text": "that"}, {"text": "the"}, {"text": "enthusiasm"}, {"text": "*ICH*-2"}, {"text": "0"}, {"text": "investors"}, {"text": "showed"}, {"text": "*T*-1"}, {"text": "for"}, {"text": "stocks"}, {"text": "in"}, {"text": "the"}, {"text": "wake"}, {"text": "of"}, {"text": "Georgia-Pacific"}, {"text": "'s"}, {"text": "$"}, {"text": "3.18"}, {"text": "billion"}, {"text": "*U*"}, {"text": "bid"}, {"text": "for"}, {"text": "Great"}, {"text": "Northern"}, {"text": "Nekoosa"}, {"text": "evaporated"}, {"text": "so"}, {"text": "quickly"}, {"text": "."}, {"text": "The"}, {"text": "industrial"}, {"text": "average"}, {"text": "jumped"}, {"text": "more"}, {"text": "than"}, {"text": "41"}, {"text": "points"}, {"text": "Tuesday"}, {"text": "as"}, {"text": "speculators"}, {"text": "rushed"}, {"text": "*-1"}, {"text": "to"}, {"text": "buy"}, {"text": "shares"}, {"text": "of"}, {"text": "potential"}, {"text": "takeover"}, {"text": "targets"}, {"text": "."}, {"text": "But"}, {"text": "with"}, {"text": "the"}, {"text": "end"}, {"text": "of"}, {"text": "the"}, {"text": "year"}, {"text": "in"}, {"text": "sight"}, {"text": ","}, {"text": "money"}, {"text": "managers"}, {"text": "are"}, {"text": "eager"}, {"text": "*-1"}, {"text": "to"}, {"text": "take"}, {"text": "profits"}, {"text": "and"}, {"text": "cut"}, {"text": "their"}, {"text": "risks"}, {"text": "of"}, {"text": "*-2"}, {"text": "losing"}, {"text": "what"}, {"text": "for"}, {"text": "many"}, {"text": "*T*-178"}, {"text": "have"}, {"text": "been"}, {"text": "exceptionally"}, {"text": "good"}, {"text": "returns"}, {"text": "in"}, {"text": "Economic"}, {"text": "news"}, {"text": "had"}, {"text": "little"}, {"text": "effect"}, {"text": "on"}, {"text": "financial"}, {"text": "markets"}, {"text": "."}, {"text": "As"}, {"text": "*"}, {"text": "expected"}, {"text": "*-1"}, {"text": ","}, {"text": "a"}, {"text": "national"}, {"text": "purchasing"}, {"text": "managers"}, {"text": "'"}, {"text": "report"}, {"text": "indicated"}, {"text": "0"}, {"text": "the"}, {"text": "nation"}, {"text": "'s"}, {"text": "manufacturing"}, {"text": "sector"}, {"text": "continues"}, {"text": "*-2"}, {"text": "to"}, {"text": "contract"}, {"text": "modestly"}, {"text": "."}, {"text": "The"}, {"text": "Federal"}, {"text": "Reserve"}, {"text": "'s"}, {"text": "Beige"}, {"text": "Book"}, {"text": ","}, {"text": "a"}, {"text": "summary"}, {"text": "of"}, {"text": "economic"}, {"text": "conditions"}, {"text": "across"}, {"text": "the"}, {"text": "country"}, {"text": ","}, {"text": "indicated"}, {"text": "that"}, {"text": "the"}, {"text": "overall"}, {"text": "economy"}, {"text": "remains"}, {"text": "in"}, {"text": "a"}, {"text": "pattern"}, {"text": "of"}, {"text": "sluggish"}, {"text": "growth"}, {"text": "."}, {"text": "In"}, {"text": "major"}, {"text": "market"}, {"text": "activity"}, {"text": ":"}, {"text": "Stock"}, {"text": "prices"}, {"text": "rose"}, {"text": "fractionally"}, {"text": "in"}, {"text": "moderate"}, {"text": "trading"}, {"text": "."}, {"text": "Big"}, {"text": "Board"}, {"text": "volume"}, {"text": "totaled"}, {"text": "154.2"}, {"text": "million"}, {"text": "shares"}, {"text": "."}, {"text": "Bond"}, {"text": "prices"}, {"text": "were"}, {"text": "up"}, {"text": "."}, {"text": "The"}, {"text": "Treasury"}, {"text": "'s"}, {"text": "benchmark"}, {"text": "30-year"}, {"text": "bond"}, {"text": "gained"}, {"text": "about"}, {"text": "a"}, {"text": "quarter"}, {"text": "of"}, {"text": "a"}, {"text": "point"}, {"text": ","}, {"text": "or"}, {"text": "$"}, {"text": "2.50"}, {"text": "*U*"}, {"text": "for"}, {"text": "each"}, {"text": "$"}, {"text": "1,000"}, {"text": "*U*"}, {"text": "of"}, {"text": "face"}, {"text": "amount"}, {"text": "."}, {"text": "The"}, {"text": "yield"}, {"text": "fell"}, {"text": "to"}, {"text": "7.88"}, {"text": "%"}, {"text": "."}, {"text": "The"}, {"text": "dollar"}, {"text": "rose"}, {"text": "."}, {"text": "In"}, {"text": "late"}, {"text": "afternoon"}, {"text": "New"}, {"text": "York"}, {"text": "trading"}, {"text": "the"}, {"text": "currency"}, {"text": "was"}, {"text": "at"}, {"text": "1.8500"}, {"text": "marks"}, {"text": "and"}, {"text": "143.80"}, {"text": "yen"}, {"text": "compared"}, {"text": "with"}, {"text": "1.8415"}, {"text": "marks"}, {"text": "and"}, {"text": "142.85"}, {"text": "yen"}, {"text": "."}, {"text": "Mitsui"}, {"text": "Mining"}, {"text": "&"}, {"text": "Smelting"}, {"text": "Co."}, {"text": "posted"}, {"text": "a"}, {"text": "62"}, {"text": "%"}, {"text": "rise"}, {"text": "in"}, {"text": "pretax"}, {"text": "profit"}, {"text": "to"}, {"text": "5.276"}, {"text": "billion"}, {"text": "yen"}, {"text": "-LRB-"}, {"text": "$"}, {"text": "36.9"}, {"text": "million"}, {"text": "*U*"}, {"text": "-RRB-"}, {"text": "in"}, {"text": "its"}, {"text": "fiscal"}, {"text": "first"}, {"text": "half"}, {"text": "ended"}, {"text": "Sept."}, {"text": "30"}, {"text": "compared"}, {"text": "with"}, {"text": "3.253"}, {"text": "billion"}, {"text": "yen"}, {"text": "a"}, {"text": "year"}, {"text": "earlier"}, {"text": "."}, {"text": "Net"}, {"text": "income"}, {"text": "more"}, {"text": "than"}, {"text": "tripled"}, {"text": "to"}, {"text": "4.898"}, {"text": "billion"}, {"text": "yen"}, {"text": "from"}, {"text": "1.457"}, {"text": "billion"}, {"text": "yen"}, {"text": "a"}, {"text": "year"}, {"text": "earlier"}, {"text": "."}, {"text": "Eaton"}, {"text": "Corp."}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "sold"}, {"text": "its"}, {"text": "Pacific"}, {"text": "Sierra"}, {"text": "Research"}, {"text": "Corp."}, {"text": "unit"}, {"text": "to"}, {"text": "a"}, {"text": "company"}, {"text": "formed"}, {"text": "*"}, {"text": "by"}, {"text": "employees"}, {"text": "of"}, {"text": "that"}, {"text": "unit"}, {"text": "."}, {"text": "Terms"}, {"text": "were"}, {"text": "n't"}, {"text": "disclosed"}, {"text": "*-1"}, {"text": "."}, {"text": "Pacific"}, {"text": "Sierra"}, {"text": ","}, {"text": "based"}, {"text": "*"}, {"text": "in"}, {"text": "Los"}, {"text": "Angeles"}, {"text": ","}, {"text": "has"}, {"text": "about"}, {"text": "200"}, {"text": "employees"}, {"text": "and"}, {"text": "supplies"}, {"text": "professional"}, {"text": "services"}, {"text": "and"}, {"text": "advanced"}, {"text": "products"}, {"text": "to"}, {"text": "industry"}, {"text": "."}, {"text": "Eaton"}, {"text": "is"}, {"text": "an"}, {"text": "automotive"}, {"text": "parts"}, {"text": ","}, {"text": "controls"}, {"text": "and"}, {"text": "aerospace"}, {"text": "electronics"}, {"text": "concern"}, {"text": "."}, {"text": "Investor"}, {"text": "Harold"}, {"text": "Simmons"}, {"text": "and"}, {"text": "NL"}, {"text": "Industries"}, {"text": "Inc."}, {"text": "offered"}, {"text": "*-1"}, {"text": "to"}, {"text": "acquire"}, {"text": "Georgia"}, {"text": "Gulf"}, {"text": "Corp."}, {"text": "for"}, {"text": "$"}, {"text": "50"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": ","}, {"text": "or"}, {"text": "about"}, {"text": "$"}, {"text": "1.1"}, {"text": "billion"}, {"text": "*U*"}, {"text": ","}, {"text": "*-1"}, {"text": "stepping"}, {"text": "up"}, {"text": "the"}, {"text": "pressure"}, {"text": "on"}, {"text": "the"}, {"text": "commodity"}, {"text": "chemicals"}, {"text": "concern"}, {"text": "."}, {"text": "The"}, {"text": "offer"}, {"text": "follows"}, {"text": "an"}, {"text": "earlier"}, {"text": "proposal"}, {"text": "*ICH*-1"}, {"text": "by"}, {"text": "NL"}, {"text": "and"}, {"text": "Mr."}, {"text": "Simmons"}, {"text": "*"}, {"text": "to"}, {"text": "help"}, {"text": "Georgia"}, {"text": "Gulf"}, {"text": "restructure"}, {"text": "or"}, {"text": "go"}, {"text": "private"}, {"text": "in"}, {"text": "a"}, {"text": "transaction"}, {"text": "that"}, {"text": "*T*-179"}, {"text": "would"}, {"text": "pay"}, {"text": "shareholders"}, {"text": "$"}, {"text": "55"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": "."}, {"text": "Georgia"}, {"text": "Gulf"}, {"text": "rebuffed"}, {"text": "that"}, {"text": "offer"}, {"text": "in"}, {"text": "September"}, {"text": "and"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "would"}, {"text": "study"}, {"text": "other"}, {"text": "alternatives"}, {"text": "."}, {"text": "However"}, {"text": ","}, {"text": "it"}, {"text": "has"}, {"text": "n't"}, {"text": "yet"}, {"text": "made"}, {"text": "any"}, {"text": "proposals"}, {"text": "to"}, {"text": "shareholders"}, {"text": "."}, {"text": "Late"}, {"text": "yesterday"}, {"text": ","}, {"text": "Georgia"}, {"text": "Gulf"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "reviewed"}, {"text": "the"}, {"text": "NL"}, {"text": "proposal"}, {"text": "as"}, {"text": "well"}, {"text": "as"}, {"text": "interests"}, {"text": "from"}, {"text": "``"}, {"text": "third"}, {"text": "parties"}, {"text": "''"}, {"text": "regarding"}, {"text": "business"}, {"text": "combinations"}, {"text": "."}, {"text": "Georgia"}, {"text": "Gulf"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "has"}, {"text": "n't"}, {"text": "eliminated"}, {"text": "any"}, {"text": "alternatives"}, {"text": "and"}, {"text": "that"}, {"text": "``"}, {"text": "discussions"}, {"text": "*PPA*-2"}, {"text": "are"}, {"text": "being"}, {"text": "held"}, {"text": "*-1"}, {"text": "with"}, {"text": "interested"}, {"text": "parties"}, {"text": ","}, {"text": "and"}, {"text": "work"}, {"text": "*ICH*-3"}, {"text": "is"}, {"text": "also"}, {"text": "continuing"}, {"text": "on"}, {"text": "other"}, {"text": "various"}, {"text": "transactions"}, {"text": "."}, {"text": "''"}, {"text": "It"}, {"text": "did"}, {"text": "n't"}, {"text": "elaborate"}, {"text": "."}, {"text": "Analysts"}, {"text": "saw"}, {"text": "the"}, {"text": "latest"}, {"text": "offer"}, {"text": "as"}, {"text": "proof"}, {"text": "that"}, {"text": "Mr."}, {"text": "Simmons"}, {"text": ","}, {"text": "an"}, {"text": "aggressive"}, {"text": "and"}, {"text": "persistent"}, {"text": "investor"}, {"text": ","}, {"text": "wo"}, {"text": "n't"}, {"text": "leave"}, {"text": "Georgia"}, {"text": "Gulf"}, {"text": "alone"}, {"text": "until"}, {"text": "some"}, {"text": "kind"}, {"text": "of"}, {"text": "transaction"}, {"text": "is"}, {"text": "completed"}, {"text": "*-113"}, {"text": "."}, {"text": "``"}, {"text": "He"}, {"text": "has"}, {"text": "clamped"}, {"text": "on"}, {"text": "their"}, {"text": "ankle"}, {"text": "like"}, {"text": "a"}, {"text": "pit"}, {"text": "bull"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "Paul"}, {"text": "Leming"}, {"text": ","}, {"text": "a"}, {"text": "vice"}, {"text": "president"}, {"text": "with"}, {"text": "Morgan"}, {"text": "Stanley"}, {"text": "&"}, {"text": "Co"}, {"text": "."}, {"text": "``"}, {"text": "He"}, {"text": "appears"}, {"text": "*-1"}, {"text": "to"}, {"text": "be"}, {"text": "in"}, {"text": "it"}, {"text": "for"}, {"text": "the"}, {"text": "long"}, {"text": "haul"}, {"text": "."}, {"text": "''"}, {"text": "Mr."}, {"text": "Simmons"}, {"text": "and"}, {"text": "NL"}, {"text": "already"}, {"text": "own"}, {"text": "a"}, {"text": "9.9"}, {"text": "%"}, {"text": "stake"}, {"text": "in"}, {"text": "Georgia"}, {"text": "Gulf"}, {"text": "."}, {"text": "Mr."}, {"text": "Simmons"}, {"text": "owns"}, {"text": "88"}, {"text": "%"}, {"text": "of"}, {"text": "Valhi"}, {"text": "Inc."}, {"text": ","}, {"text": "which"}, {"text": "in"}, {"text": "turn"}, {"text": "*T*-1"}, {"text": "owns"}, {"text": "two-thirds"}, {"text": "of"}, {"text": "NL"}, {"text": "."}, {"text": "NL"}, {"text": "is"}, {"text": "officially"}, {"text": "making"}, {"text": "the"}, {"text": "offer"}, {"text": "."}, {"text": "Mr."}, {"text": "Leming"}, {"text": "was"}, {"text": "n't"}, {"text": "surprised"}, {"text": "*-1"}, {"text": "by"}, {"text": "the"}, {"text": "lower"}, {"text": "price"}, {"text": "cited"}, {"text": "*"}, {"text": "by"}, {"text": "NL"}, {"text": ","}, {"text": "*-1"}, {"text": "saying"}, {"text": "0"}, {"text": "he"}, {"text": "believes"}, {"text": "that"}, {"text": "$"}, {"text": "55"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": "is"}, {"text": "``"}, {"text": "the"}, {"text": "most"}, {"text": "0"}, {"text": "you"}, {"text": "can"}, {"text": "pay"}, {"text": "*T*-2"}, {"text": "for"}, {"text": "Georgia"}, {"text": "Gulf"}, {"text": "before"}, {"text": "it"}, {"text": "becomes"}, {"text": "a"}, {"text": "bad"}, {"text": "acquisition"}, {"text": "."}, {"text": "''"}, {"text": "Georgia"}, {"text": "Gulf"}, {"text": "stock"}, {"text": "rose"}, {"text": "$"}, {"text": "1.75"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": "yesterday"}, {"text": "*-1"}, {"text": "to"}, {"text": "close"}, {"text": "at"}, {"text": "$"}, {"text": "51.25"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": ","}, {"text": "while"}, {"text": "NL"}, {"text": "shares"}, {"text": "closed"}, {"text": "unchanged"}, {"text": "at"}, {"text": "$"}, {"text": "22.75"}, {"text": "*U*"}, {"text": "and"}, {"text": "Valhi"}, {"text": "rose"}, {"text": "62.5"}, {"text": "cents"}, {"text": "to"}, {"text": "$"}, {"text": "15"}, {"text": "*U*"}, {"text": ","}, {"text": "all"}, {"text": "in"}, {"text": "New"}, {"text": "York"}, {"text": "Stock"}, {"text": "Exchange"}, {"text": "composite"}, {"text": "trading"}, {"text": "."}, {"text": "J."}, {"text": "Landis"}, {"text": "Martin"}, {"text": ","}, {"text": "NL"}, {"text": "president"}, {"text": "and"}, {"text": "chief"}, {"text": "executive"}, {"text": "officer"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "NL"}, {"text": "and"}, {"text": "Mr."}, {"text": "Simmons"}, {"text": "cut"}, {"text": "the"}, {"text": "price"}, {"text": "*ICH*-2"}, {"text": "0"}, {"text": "they"}, {"text": "were"}, {"text": "proposing"}, {"text": "*T*-1"}, {"text": "for"}, {"text": "Georgia"}, {"text": "Gulf"}, {"text": "because"}, {"text": "they"}, {"text": "initially"}, {"text": "planned"}, {"text": "a"}, {"text": "transaction"}, {"text": "that"}, {"text": "*T*-180"}, {"text": "included"}, {"text": "about"}, {"text": "$"}, {"text": "250"}, {"text": "million"}, {"text": "*U*"}, {"text": "in"}, {"text": "equity"}, {"text": "and"}, {"text": "a"}, {"text": "substantial"}, {"text": "amount"}, {"text": "of"}, {"text": "high-yield"}, {"text": "subordinated"}, {"text": "debt"}, {"text": "."}, {"text": "However"}, {"text": ","}, {"text": "the"}, {"text": "junk-bond"}, {"text": "market"}, {"text": "has"}, {"text": "collapsed"}, {"text": "in"}, {"text": "recent"}, {"text": "weeks"}, {"text": ","}, {"text": "*"}, {"text": "lessening"}, {"text": "the"}, {"text": "likelihood"}, {"text": "that"}, {"text": "such"}, {"text": "a"}, {"text": "transaction"}, {"text": "would"}, {"text": "succeed"}, {"text": "."}, {"text": "Now"}, {"text": ","}, {"text": "he"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": ","}, {"text": "the"}, {"text": "group"}, {"text": "plans"}, {"text": "*-2"}, {"text": "to"}, {"text": "put"}, {"text": "in"}, {"text": "``"}, {"text": "several"}, {"text": "hundred"}, {"text": "million"}, {"text": "''"}, {"text": "dollars"}, {"text": "in"}, {"text": "equity"}, {"text": "and"}, {"text": "finance"}, {"text": "the"}, {"text": "remainder"}, {"text": "with"}, {"text": "bank"}, {"text": "debt"}, {"text": "."}, {"text": "He"}, {"text": "also"}, {"text": "said"}, {"text": "that"}, {"text": "the"}, {"text": "group"}, {"text": "reduced"}, {"text": "its"}, {"text": "offer"}, {"text": "because"}, {"text": "it"}, {"text": "was"}, {"text": "n't"}, {"text": "allowed"}, {"text": "*-1"}, {"text": "to"}, {"text": "see"}, {"text": "Georgia"}, {"text": "Gulf"}, {"text": "'s"}, {"text": "confidential"}, {"text": "financial"}, {"text": "information"}, {"text": "without"}, {"text": "*-2"}, {"text": "agreeing"}, {"text": "that"}, {"text": "it"}, {"text": "would"}, {"text": "n't"}, {"text": "make"}, {"text": "an"}, {"text": "offer"}, {"text": "unless"}, {"text": "it"}, {"text": "had"}, {"text": "Georgia"}, {"text": "Gulf"}, {"text": "'s"}, {"text": "consent"}, {"text": "."}, {"text": "In"}, {"text": "a"}, {"text": "letter"}, {"text": "to"}, {"text": "Georgia"}, {"text": "Gulf"}, {"text": "President"}, {"text": "Jerry"}, {"text": "R."}, {"text": "Satrum"}, {"text": ","}, {"text": "Mr."}, {"text": "Martin"}, {"text": "asked"}, {"text": "Georgia"}, {"text": "Gulf"}, {"text": "*-1"}, {"text": "to"}, {"text": "answer"}, {"text": "its"}, {"text": "offer"}, {"text": "by"}, {"text": "Tuesday"}, {"text": "."}, {"text": "It"}, {"text": "*EXP*-1"}, {"text": "was"}, {"text": "n't"}, {"text": "clear"}, {"text": "how"}, {"text": "NL"}, {"text": "and"}, {"text": "Mr."}, {"text": "Simmons"}, {"text": "would"}, {"text": "respond"}, {"text": "*T*-2"}, {"text": "if"}, {"text": "Georgia"}, {"text": "Gulf"}, {"text": "spurns"}, {"text": "them"}, {"text": "again"}, {"text": "."}, {"text": "Mr."}, {"text": "Martin"}, {"text": "said"}, {"text": "0"}, {"text": "they"}, {"text": "have"}, {"text": "n't"}, {"text": "yet"}, {"text": "decided"}, {"text": "what"}, {"text": "their"}, {"text": "next"}, {"text": "move"}, {"text": "would"}, {"text": "be"}, {"text": "*T*-181"}, {"text": ","}, {"text": "but"}, {"text": "he"}, {"text": "did"}, {"text": "n't"}, {"text": "rule"}, {"text": "out"}, {"text": "the"}, {"text": "possibility"}, {"text": "of"}, {"text": "a"}, {"text": "consent"}, {"text": "solicitation"}, {"text": "aimed"}, {"text": "*"}, {"text": "at"}, {"text": "*"}, {"text": "replacing"}, {"text": "Georgia"}, {"text": "Gulf"}, {"text": "'s"}, {"text": "board"}, {"text": "."}, {"text": "In"}, {"text": "other"}, {"text": "transactions"}, {"text": ","}, {"text": "Mr."}, {"text": "Simmons"}, {"text": "has"}, {"text": "followed"}, {"text": "friendly"}, {"text": "offers"}, {"text": "with"}, {"text": "a"}, {"text": "hostile"}, {"text": "tender"}, {"text": "offer"}, {"text": "."}, {"text": "Although"}, {"text": "Georgia"}, {"text": "Gulf"}, {"text": "has"}, {"text": "n't"}, {"text": "been"}, {"text": "eager"}, {"text": "*-1"}, {"text": "to"}, {"text": "negotiate"}, {"text": "with"}, {"text": "Mr."}, {"text": "Simmons"}, {"text": "and"}, {"text": "NL"}, {"text": ","}, {"text": "a"}, {"text": "specialty"}, {"text": "chemicals"}, {"text": "concern"}, {"text": ","}, {"text": "the"}, {"text": "group"}, {"text": "apparently"}, {"text": "believes"}, {"text": "0"}, {"text": "the"}, {"text": "company"}, {"text": "'s"}, {"text": "management"}, {"text": "is"}, {"text": "interested"}, {"text": "*-114"}, {"text": "in"}, {"text": "some"}, {"text": "kind"}, {"text": "of"}, {"text": "transaction"}, {"text": "."}, {"text": "The"}, {"text": "management"}, {"text": "group"}, {"text": "owns"}, {"text": "about"}, {"text": "18"}, {"text": "%"}, {"text": "of"}, {"text": "the"}, {"text": "stock"}, {"text": ","}, {"text": "most"}, {"text": "purchased"}, {"text": "*"}, {"text": "at"}, {"text": "nominal"}, {"text": "prices"}, {"text": ","}, {"text": "and"}, {"text": "would"}, {"text": "stand"}, {"text": "*-1"}, {"text": "to"}, {"text": "gain"}, {"text": "millions"}, {"text": "of"}, {"text": "dollars"}, {"text": "if"}, {"text": "the"}, {"text": "company"}, {"text": "were"}, {"text": "sold"}, {"text": "*-115"}, {"text": "."}, {"text": "In"}, {"text": "the"}, {"text": "third"}, {"text": "quarter"}, {"text": ","}, {"text": "Georgia"}, {"text": "Gulf"}, {"text": "earned"}, {"text": "$"}, {"text": "46.1"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "$"}, {"text": "1.85"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": ","}, {"text": "down"}, {"text": "from"}, {"text": "$"}, {"text": "53"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "$"}, {"text": "1.85"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": "on"}, {"text": "fewer"}, {"text": "shares"}, {"text": "outstanding"}, {"text": "."}, {"text": "Sales"}, {"text": "fell"}, {"text": "to"}, {"text": "$"}, {"text": "251.2"}, {"text": "million"}, {"text": "*U*"}, {"text": "from"}, {"text": "$"}, {"text": "278.7"}, {"text": "million"}, {"text": "*U*"}, {"text": "."}, {"text": "A"}, {"text": "licensing"}, {"text": "company"}, {"text": "representing"}, {"text": "the"}, {"text": "University"}, {"text": "of"}, {"text": "Pennsylvania"}, {"text": "added"}, {"text": "Johnson"}, {"text": "&"}, {"text": "Johnson"}, {"text": "to"}, {"text": "its"}, {"text": "lawsuit"}, {"text": "challenging"}, {"text": "a"}, {"text": "university"}, {"text": "faculty"}, {"text": "member"}, {"text": "over"}, {"text": "rights"}, {"text": "to"}, {"text": "Retin-A"}, {"text": "acne"}, {"text": "medicine"}, {"text": "."}, {"text": "University"}, {"text": "Patents"}, {"text": "Inc."}, {"text": ","}, {"text": "based"}, {"text": "*"}, {"text": "in"}, {"text": "Westport"}, {"text": ","}, {"text": "Conn."}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "seeks"}, {"text": "Johnson"}, {"text": "&"}, {"text": "Johnson"}, {"text": "'s"}, {"text": "profits"}, {"text": "from"}, {"text": "sales"}, {"text": "of"}, {"text": "Retin-A"}, {"text": ","}, {"text": "estimated"}, {"text": "*"}, {"text": "at"}, {"text": "$"}, {"text": "50"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "a"}, {"text": "similar"}, {"text": "amount"}, {"text": "of"}, {"text": "punitive"}, {"text": "damages"}, {"text": "and"}, {"text": "the"}, {"text": "right"}, {"text": "*"}, {"text": "to"}, {"text": "license"}, {"text": "Retin-A"}, {"text": "elsewhere"}, {"text": "."}, {"text": "In"}, {"text": "May"}, {"text": ","}, {"text": "University"}, {"text": "Patents"}, {"text": "filed"}, {"text": "a"}, {"text": "suit"}, {"text": "*ICH*-1"}, {"text": "in"}, {"text": "federal"}, {"text": "court"}, {"text": "in"}, {"text": "Philadelphia"}, {"text": "against"}, {"text": "Albert"}, {"text": "M."}, {"text": "Kligman"}, {"text": ","}, {"text": "a"}, {"text": "researcher"}, {"text": "and"}, {"text": "professor"}, {"text": "at"}, {"text": "the"}, {"text": "University"}, {"text": "of"}, {"text": "Pennsylvania"}, {"text": "School"}, {"text": "of"}, {"text": "Medicine"}, {"text": "who"}, {"text": "*T*-182"}, {"text": "developed"}, {"text": "Retin-A"}, {"text": "in"}, {"text": "the"}, {"text": "1960s"}, {"text": "*-2"}, {"text": "to"}, {"text": "combat"}, {"text": "acne"}, {"text": "."}, {"text": "Dr."}, {"text": "Kligman"}, {"text": "patented"}, {"text": "the"}, {"text": "medicine"}, {"text": "while"}, {"text": "*-1"}, {"text": "employed"}, {"text": "*-2"}, {"text": "by"}, {"text": "the"}, {"text": "University"}, {"text": ","}, {"text": "but"}, {"text": "later"}, {"text": "licensed"}, {"text": "the"}, {"text": "Retin-A"}, {"text": "to"}, {"text": "a"}, {"text": "division"}, {"text": "of"}, {"text": "Johnson"}, {"text": "&"}, {"text": "Johnson"}, {"text": "."}, {"text": "In"}, {"text": "New"}, {"text": "Brunswick"}, {"text": ","}, {"text": "N.J."}, {"text": ","}, {"text": "a"}, {"text": "Johnson"}, {"text": "&"}, {"text": "Johnson"}, {"text": "spokesman"}, {"text": "declined"}, {"text": "comment"}, {"text": "."}, {"text": "Criticism"}, {"text": "in"}, {"text": "the"}, {"text": "U.S."}, {"text": "over"}, {"text": "recent"}, {"text": "Japanese"}, {"text": "acquisitions"}, {"text": "is"}, {"text": "looming"}, {"text": "ever"}, {"text": "larger"}, {"text": "in"}, {"text": "the"}, {"text": "two"}, {"text": "countries"}, {"text": "'"}, {"text": "relations"}, {"text": "."}, {"text": "Officials"}, {"text": "from"}, {"text": "both"}, {"text": "nations"}, {"text": "say"}, {"text": "0"}, {"text": "the"}, {"text": "U.S."}, {"text": "public"}, {"text": "'s"}, {"text": "skittishness"}, {"text": "about"}, {"text": "Japanese"}, {"text": "investment"}, {"text": "could"}, {"text": "color"}, {"text": "a"}, {"text": "second"}, {"text": "round"}, {"text": "of"}, {"text": "bilateral"}, {"text": "economic"}, {"text": "talks"}, {"text": "scheduled"}, {"text": "*"}, {"text": "for"}, {"text": "next"}, {"text": "week"}, {"text": "in"}, {"text": "Washington"}, {"text": "."}, {"text": "Not"}, {"text": "that"}, {"text": "Washington"}, {"text": "and"}, {"text": "Tokyo"}, {"text": "disagree"}, {"text": "on"}, {"text": "the"}, {"text": "Japanese"}, {"text": "acquisitions"}, {"text": ";"}, {"text": "indeed"}, {"text": ","}, {"text": "each"}, {"text": "has"}, {"text": "come"}, {"text": "out"}, {"text": "in"}, {"text": "favor"}, {"text": "of"}, {"text": "unfettered"}, {"text": "investment"}, {"text": "in"}, {"text": "the"}, {"text": "U.S."}, {"text": "."}, {"text": "Where"}, {"text": "they"}, {"text": "disagree"}, {"text": "*T*-1"}, {"text": "is"}, {"text": "on"}, {"text": "the"}, {"text": "subject"}, {"text": "of"}, {"text": "U.S."}, {"text": "direct"}, {"text": "investment"}, {"text": "in"}, {"text": "Japan"}, {"text": "."}, {"text": "The"}, {"text": "U.S."}, {"text": "wants"}, {"text": "the"}, {"text": "removal"}, {"text": "of"}, {"text": "what"}, {"text": "it"}, {"text": "perceives"}, {"text": "*T*-183"}, {"text": "as"}, {"text": "barriers"}, {"text": "to"}, {"text": "investment"}, {"text": ";"}, {"text": "Japan"}, {"text": "denies"}, {"text": "0"}, {"text": "there"}, {"text": "are"}, {"text": "real"}, {"text": "barriers"}, {"text": "."}, {"text": "The"}, {"text": "heated"}, {"text": "talk"}, {"text": "stirred"}, {"text": "*-1"}, {"text": "up"}, {"text": "by"}, {"text": "recent"}, {"text": "Japanese"}, {"text": "investments"}, {"text": "in"}, {"text": "the"}, {"text": "U.S."}, {"text": "is"}, {"text": "focusing"}, {"text": "attention"}, {"text": "on"}, {"text": "the"}, {"text": "differences"}, {"text": "in"}, {"text": "investment"}, {"text": "climate"}, {"text": ","}, {"text": "even"}, {"text": "though"}, {"text": "it"}, {"text": "'s"}, {"text": "only"}, {"text": "one"}, {"text": "of"}, {"text": "many"}, {"text": "subjects"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "to"}, {"text": "be"}, {"text": "covered"}, {"text": "*-116"}, {"text": "in"}, {"text": "the"}, {"text": "bilateral"}, {"text": "talks"}, {"text": ","}, {"text": "known"}, {"text": "*"}, {"text": "as"}, {"text": "the"}, {"text": "Structural"}, {"text": "Impediments"}, {"text": "Initiative"}, {"text": "."}, {"text": "The"}, {"text": "Japanese"}, {"text": "``"}, {"text": "should"}, {"text": "see"}, {"text": "this"}, {"text": "rhetoric"}, {"text": "as"}, {"text": "a"}, {"text": "signal"}, {"text": "of"}, {"text": "the"}, {"text": "need"}, {"text": "for"}, {"text": "a"}, {"text": "change"}, {"text": "in"}, {"text": "their"}, {"text": "own"}, {"text": "economy"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "Charles"}, {"text": "Dallara"}, {"text": ","}, {"text": "U.S."}, {"text": "assistant"}, {"text": "Treasury"}, {"text": "secretary"}, {"text": ","}, {"text": "who"}, {"text": "*T*-184"}, {"text": "has"}, {"text": "been"}, {"text": "in"}, {"text": "Tokyo"}, {"text": "this"}, {"text": "week"}, {"text": "*-2"}, {"text": "informally"}, {"text": "discussing"}, {"text": "the"}, {"text": "impending"}, {"text": "negotiations"}, {"text": "with"}, {"text": "government"}, {"text": "and"}, {"text": "business"}, {"text": "leaders"}, {"text": "."}, {"text": "``"}, {"text": "We"}, {"text": "have"}, {"text": "a"}, {"text": "long"}, {"text": "history"}, {"text": "of"}, {"text": "*"}, {"text": "maintaining"}, {"text": "an"}, {"text": "open"}, {"text": "direct-investment"}, {"text": "policy"}, {"text": ","}, {"text": "''"}, {"text": "Mr."}, {"text": "Dallara"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "."}, {"text": "``"}, {"text": "U.S."}, {"text": "investors"}, {"text": "should"}, {"text": "have"}, {"text": "a"}, {"text": "greater"}, {"text": "opportunity"}, {"text": "at"}, {"text": "direct"}, {"text": "investment"}, {"text": "''"}, {"text": "in"}, {"text": "Japan"}, {"text": "."}, {"text": "The"}, {"text": "Japanese"}, {"text": "fret"}, {"text": "openly"}, {"text": "about"}, {"text": "the"}, {"text": "U.S."}, {"text": "public"}, {"text": "'s"}, {"text": "rancor"}, {"text": "."}, {"text": "One"}, {"text": "clear"}, {"text": "sign"}, {"text": "of"}, {"text": "Japan"}, {"text": "'s"}, {"text": "nervousness"}, {"text": "came"}, {"text": "this"}, {"text": "week"}, {"text": ","}, {"text": "when"}, {"text": "a"}, {"text": "spokesman"}, {"text": "for"}, {"text": "Japan"}, {"text": "'s"}, {"text": "Foreign"}, {"text": "Ministry"}, {"text": "devoted"}, {"text": "nearly"}, {"text": "all"}, {"text": "of"}, {"text": "a"}, {"text": "regular"}, {"text": ","}, {"text": "half-hour"}, {"text": "briefing"}, {"text": "for"}, {"text": "foreign"}, {"text": "journalists"}, {"text": "to"}, {"text": "the"}, {"text": "subject"}, {"text": "of"}, {"text": "recent"}, {"text": "Japanese"}, {"text": "investments"}, {"text": "in"}, {"text": "the"}, {"text": "U.S."}, {"text": "*T*-1"}, {"text": "."}, {"text": "``"}, {"text": "We"}, {"text": "believe"}, {"text": "that"}, {"text": "it"}, {"text": "*EXP*-3"}, {"text": "is"}, {"text": "vitally"}, {"text": "important"}, {"text": "for"}, {"text": "those"}, {"text": "Japanese"}, {"text": "business"}, {"text": "interests"}, {"text": "-LCB-"}, {"text": "in"}, {"text": "the"}, {"text": "U.S."}, {"text": "."}, {"text": "-RCB-"}, {"text": "to"}, {"text": "be"}, {"text": "more"}, {"text": "aware"}, {"text": "of"}, {"text": "the"}, {"text": "emotions"}, {"text": "and"}, {"text": "concerns"}, {"text": "of"}, {"text": "the"}, {"text": "American"}, {"text": "people"}, {"text": ","}, {"text": "''"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "the"}, {"text": "spokesman"}, {"text": ","}, {"text": "Taizo"}, {"text": "Watanabe"}, {"text": "."}, {"text": "At"}, {"text": "the"}, {"text": "same"}, {"text": "time"}, {"text": ","}, {"text": "though"}, {"text": ","}, {"text": "he"}, {"text": "chastised"}, {"text": "the"}, {"text": "media"}, {"text": "for"}, {"text": "*"}, {"text": "paying"}, {"text": "such"}, {"text": "close"}, {"text": "attention"}, {"text": "to"}, {"text": "Japanese"}, {"text": "investment"}, {"text": "when"}, {"text": "other"}, {"text": "foreign"}, {"text": "countries"}, {"text": ","}, {"text": "notably"}, {"text": "Britain"}, {"text": ","}, {"text": "are"}, {"text": "acquiring"}, {"text": "more"}, {"text": "American"}, {"text": "assets"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Fears"}, {"text": "that"}, {"text": "Japanese"}, {"text": "investors"}, {"text": "are"}, {"text": "buying"}, {"text": "up"}, {"text": "America"}, {"text": "have"}, {"text": "escalated"}, {"text": "sharply"}, {"text": "in"}, {"text": "the"}, {"text": "past"}, {"text": "several"}, {"text": "weeks"}, {"text": ","}, {"text": "with"}, {"text": "Sony"}, {"text": "Corp."}, {"text": "'s"}, {"text": "purchase"}, {"text": "of"}, {"text": "Columbia"}, {"text": "Pictures"}, {"text": "Entertainment"}, {"text": "Inc."}, {"text": "from"}, {"text": "Coca-Cola"}, {"text": "Co."}, {"text": "and"}, {"text": "Mitsubishi"}, {"text": "Estate"}, {"text": "Co."}, {"text": "'s"}, {"text": "acquisition"}, {"text": "of"}, {"text": "a"}, {"text": "51"}, {"text": "%"}, {"text": "holding"}, {"text": "in"}, {"text": "Rockefeller"}, {"text": "Group"}, {"text": ","}, {"text": "the"}, {"text": "owner"}, {"text": "of"}, {"text": "some"}, {"text": "of"}, {"text": "midtown"}, {"text": "Manhattan"}, {"text": "'s"}, {"text": "most"}, {"text": "exclusive"}, {"text": "real"}, {"text": "estate"}, {"text": "."}, {"text": "Even"}, {"text": "before"}, {"text": "those"}, {"text": "moves"}, {"text": "added"}, {"text": "fuel"}, {"text": ","}, {"text": "the"}, {"text": "fires"}, {"text": "of"}, {"text": "discontent"}, {"text": "had"}, {"text": "been"}, {"text": "well"}, {"text": "stoked"}, {"text": "*-1"}, {"text": "by"}, {"text": "the"}, {"text": "highly"}, {"text": "publicized"}, {"text": "experience"}, {"text": "in"}, {"text": "Japan"}, {"text": "of"}, {"text": "one"}, {"text": "U.S."}, {"text": "investor"}, {"text": ","}, {"text": "T."}, {"text": "Boone"}, {"text": "Pickens"}, {"text": "Jr"}, {"text": "."}, {"text": "The"}, {"text": "Texas"}, {"text": "oilman"}, {"text": "has"}, {"text": "acquired"}, {"text": "a"}, {"text": "26.2"}, {"text": "%"}, {"text": "stake"}, {"text": "valued"}, {"text": "*"}, {"text": "at"}, {"text": "more"}, {"text": "than"}, {"text": "$"}, {"text": "1.2"}, {"text": "billion"}, {"text": "*U*"}, {"text": "in"}, {"text": "an"}, {"text": "automotive-lighting"}, {"text": "company"}, {"text": ","}, {"text": "Koito"}, {"text": "Manufacturing"}, {"text": "Co"}, {"text": "."}, {"text": "But"}, {"text": "he"}, {"text": "has"}, {"text": "failed"}, {"text": "*-1"}, {"text": "to"}, {"text": "gain"}, {"text": "any"}, {"text": "influence"}, {"text": "at"}, {"text": "the"}, {"text": "company"}, {"text": "."}, {"text": "Koito"}, {"text": "has"}, {"text": "refused"}, {"text": "*-1"}, {"text": "to"}, {"text": "grant"}, {"text": "Mr."}, {"text": "Pickens"}, {"text": "seats"}, {"text": "on"}, {"text": "its"}, {"text": "board"}, {"text": ","}, {"text": "*-1"}, {"text": "asserting"}, {"text": "0"}, {"text": "he"}, {"text": "is"}, {"text": "a"}, {"text": "greenmailer"}, {"text": "trying"}, {"text": "*"}, {"text": "to"}, {"text": "pressure"}, {"text": "Koito"}, {"text": "'s"}, {"text": "other"}, {"text": "shareholders"}, {"text": "into"}, {"text": "*"}, {"text": "buying"}, {"text": "him"}, {"text": "out"}, {"text": "at"}, {"text": "a"}, {"text": "profit"}, {"text": "."}, {"text": "Mr."}, {"text": "Pickens"}, {"text": "made"}, {"text": "considerable"}, {"text": "political"}, {"text": "hay"}, {"text": "with"}, {"text": "his"}, {"text": "troubles"}, {"text": "in"}, {"text": "Japan"}, {"text": "."}, {"text": "The"}, {"text": "Senate"}, {"text": "Finance"}, {"text": "Committee"}, {"text": ","}, {"text": "chaired"}, {"text": "*"}, {"text": "by"}, {"text": "a"}, {"text": "fellow"}, {"text": "Texan"}, {"text": ","}, {"text": "Democratic"}, {"text": "Sen."}, {"text": "Lloyd"}, {"text": "Bentsen"}, {"text": ","}, {"text": "last"}, {"text": "month"}, {"text": "urged"}, {"text": "U.S."}, {"text": "Trade"}, {"text": "Representative"}, {"text": "Carla"}, {"text": "Hills"}, {"text": "to"}, {"text": "use"}, {"text": "Mr."}, {"text": "Pickens"}, {"text": "'s"}, {"text": "experience"}, {"text": "in"}, {"text": "talks"}, {"text": "with"}, {"text": "Tokyo"}, {"text": "``"}, {"text": "*-1"}, {"text": "to"}, {"text": "highlight"}, {"text": "this"}, {"text": "problem"}, {"text": "facing"}, {"text": "Americans"}, {"text": "who"}, {"text": "*T*-185"}, {"text": "seek"}, {"text": "access"}, {"text": "to"}, {"text": "the"}, {"text": "Japanese"}, {"text": "capital"}, {"text": "markets"}, {"text": "."}, {"text": "''"}, {"text": "While"}, {"text": "Mr."}, {"text": "Dallara"}, {"text": "and"}, {"text": "Japanese"}, {"text": "officials"}, {"text": "say"}, {"text": "0"}, {"text": "the"}, {"text": "question"}, {"text": "of"}, {"text": "investors"}, {"text": "'"}, {"text": "access"}, {"text": "to"}, {"text": "the"}, {"text": "U.S."}, {"text": "and"}, {"text": "Japanese"}, {"text": "markets"}, {"text": "may"}, {"text": "get"}, {"text": "a"}, {"text": "disproportionate"}, {"text": "share"}, {"text": "of"}, {"text": "the"}, {"text": "public"}, {"text": "'s"}, {"text": "attention"}, {"text": ","}, {"text": "a"}, {"text": "number"}, {"text": "of"}, {"text": "other"}, {"text": "important"}, {"text": "economic"}, {"text": "issues"}, {"text": "will"}, {"text": "be"}, {"text": "on"}, {"text": "the"}, {"text": "table"}, {"text": "at"}, {"text": "next"}, {"text": "week"}, {"text": "'s"}, {"text": "talks"}, {"text": "."}, {"text": "Among"}, {"text": "them"}, {"text": "are"}, {"text": "*T*-1"}, {"text": "differences"}, {"text": "in"}, {"text": "savings"}, {"text": "and"}, {"text": "investment"}, {"text": "rates"}, {"text": ","}, {"text": "corporate"}, {"text": "structures"}, {"text": "and"}, {"text": "management"}, {"text": ","}, {"text": "and"}, {"text": "government"}, {"text": "spending"}, {"text": "."}, {"text": "Each"}, {"text": "side"}, {"text": "has"}, {"text": "a"}, {"text": "litany"}, {"text": "of"}, {"text": "recommendations"}, {"text": "for"}, {"text": "the"}, {"text": "other"}, {"text": "."}, {"text": "The"}, {"text": "U.S."}, {"text": "says"}, {"text": "0"}, {"text": "it"}, {"text": "is"}, {"text": "anxious"}, {"text": "for"}, {"text": "results"}, {"text": "."}, {"text": "``"}, {"text": "We"}, {"text": "feel"}, {"text": "very"}, {"text": "strongly"}, {"text": "that"}, {"text": "we"}, {"text": "really"}, {"text": "need"}, {"text": "action"}, {"text": "across"}, {"text": "the"}, {"text": "full"}, {"text": "range"}, {"text": "of"}, {"text": "issues"}, {"text": "0"}, {"text": "we"}, {"text": "'ve"}, {"text": "identified"}, {"text": "*T*-1"}, {"text": ","}, {"text": "and"}, {"text": "we"}, {"text": "need"}, {"text": "it"}, {"text": "by"}, {"text": "next"}, {"text": "spring"}, {"text": ","}, {"text": "''"}, {"text": "Mr."}, {"text": "Dallara"}, {"text": "says"}, {"text": "*T*-2"}, {"text": "."}, {"text": "Both"}, {"text": "sides"}, {"text": "have"}, {"text": "agreed"}, {"text": "that"}, {"text": "the"}, {"text": "talks"}, {"text": "will"}, {"text": "be"}, {"text": "most"}, {"text": "successful"}, {"text": "if"}, {"text": "negotiators"}, {"text": "start"}, {"text": "by"}, {"text": "*"}, {"text": "focusing"}, {"text": "on"}, {"text": "the"}, {"text": "areas"}, {"text": "that"}, {"text": "*T*-186"}, {"text": "can"}, {"text": "be"}, {"text": "most"}, {"text": "easily"}, {"text": "changed"}, {"text": "*-1"}, {"text": "."}, {"text": "But"}, {"text": "they"}, {"text": "have"}, {"text": "n't"}, {"text": "clarified"}, {"text": "what"}, {"text": "those"}, {"text": "might"}, {"text": "be"}, {"text": "*T*-187"}, {"text": "."}, {"text": "After"}, {"text": "the"}, {"text": "first"}, {"text": "set"}, {"text": "of"}, {"text": "meetings"}, {"text": "two"}, {"text": "months"}, {"text": "ago"}, {"text": ","}, {"text": "some"}, {"text": "U.S."}, {"text": "officials"}, {"text": "complained"}, {"text": "that"}, {"text": "Japan"}, {"text": "had"}, {"text": "n't"}, {"text": "come"}, {"text": "up"}, {"text": "with"}, {"text": "specific"}, {"text": "changes"}, {"text": "0"}, {"text": "it"}, {"text": "was"}, {"text": "prepared"}, {"text": "*-1"}, {"text": "to"}, {"text": "make"}, {"text": "*T*-2"}, {"text": "."}, {"text": "The"}, {"text": "Japanese"}, {"text": "retort"}, {"text": "that"}, {"text": "the"}, {"text": "first"}, {"text": "round"}, {"text": "was"}, {"text": "too"}, {"text": "early"}, {"text": "*"}, {"text": "to"}, {"text": "make"}, {"text": "concessions"}, {"text": "."}, {"text": "``"}, {"text": "*"}, {"text": "Just"}, {"text": "to"}, {"text": "say"}, {"text": "0"}, {"text": "the"}, {"text": "distribution"}, {"text": "system"}, {"text": "is"}, {"text": "wrong"}, {"text": "does"}, {"text": "n't"}, {"text": "mean"}, {"text": "anything"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "a"}, {"text": "Ministry"}, {"text": "of"}, {"text": "International"}, {"text": "Trade"}, {"text": "and"}, {"text": "Industry"}, {"text": "official"}, {"text": "."}, {"text": "``"}, {"text": "We"}, {"text": "need"}, {"text": "*-1"}, {"text": "to"}, {"text": "clarify"}, {"text": "what"}, {"text": "exactly"}, {"text": "*T*-188"}, {"text": "is"}, {"text": "wrong"}, {"text": "with"}, {"text": "it"}, {"text": "."}, {"text": "''"}, {"text": "That"}, {"text": "process"}, {"text": "of"}, {"text": "*"}, {"text": "sorting"}, {"text": "out"}, {"text": "specifics"}, {"text": "is"}, {"text": "likely"}, {"text": "*-1"}, {"text": "to"}, {"text": "take"}, {"text": "time"}, {"text": ","}, {"text": "the"}, {"text": "Japanese"}, {"text": "say"}, {"text": "0"}, {"text": "*T*-2"}, {"text": ","}, {"text": "no"}, {"text": "matter"}, {"text": "how"}, {"text": "badly"}, {"text": "the"}, {"text": "U.S."}, {"text": "wants"}, {"text": "quick"}, {"text": "results"}, {"text": "*T*-3"}, {"text": "."}, {"text": "For"}, {"text": "instance"}, {"text": ","}, {"text": "at"}, {"text": "the"}, {"text": "first"}, {"text": "meeting"}, {"text": "the"}, {"text": "two"}, {"text": "sides"}, {"text": "could"}, {"text": "n't"}, {"text": "even"}, {"text": "agree"}, {"text": "on"}, {"text": "basic"}, {"text": "data"}, {"text": "used"}, {"text": "*"}, {"text": "in"}, {"text": "price"}, {"text": "discussions"}, {"text": "."}, {"text": "Since"}, {"text": "then"}, {"text": ","}, {"text": "a"}, {"text": "team"}, {"text": "of"}, {"text": "about"}, {"text": "15"}, {"text": "MITI"}, {"text": "and"}, {"text": "U.S."}, {"text": "Commerce"}, {"text": "Department"}, {"text": "officials"}, {"text": "have"}, {"text": "crossed"}, {"text": "the"}, {"text": "globe"}, {"text": "*-1"}, {"text": "gauging"}, {"text": "consumer"}, {"text": "prices"}, {"text": "."}, {"text": "By"}, {"text": "Monday"}, {"text": ","}, {"text": "they"}, {"text": "hope"}, {"text": "*-1"}, {"text": "to"}, {"text": "have"}, {"text": "a"}, {"text": "sheaf"}, {"text": "of"}, {"text": "documents"}, {"text": "0"}, {"text": "both"}, {"text": "sides"}, {"text": "can"}, {"text": "trust"}, {"text": "*T*-2"}, {"text": "."}, {"text": "``"}, {"text": "Little"}, {"text": "by"}, {"text": "little"}, {"text": ","}, {"text": "there"}, {"text": "is"}, {"text": "progress"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "the"}, {"text": "MITI"}, {"text": "official"}, {"text": "."}, {"text": "``"}, {"text": "Both"}, {"text": "sides"}, {"text": "are"}, {"text": "taking"}, {"text": "action"}, {"text": "."}, {"text": "''"}, {"text": "Elisabeth"}, {"text": "Rubinfien"}, {"text": "contributed"}, {"text": "to"}, {"text": "this"}, {"text": "article"}, {"text": "."}, {"text": "While"}, {"text": "worry"}, {"text": "*ICH*-1"}, {"text": "grows"}, {"text": "about"}, {"text": "big"}, {"text": "Japanese"}, {"text": "investments"}, {"text": "in"}, {"text": "the"}, {"text": "U.S."}, {"text": ","}, {"text": "Japan"}, {"text": "'s"}, {"text": "big"}, {"text": "trading"}, {"text": "companies"}, {"text": "are"}, {"text": "rapidly"}, {"text": "increasing"}, {"text": "their"}, {"text": "stake"}, {"text": "in"}, {"text": "America"}, {"text": "'s"}, {"text": "smaller"}, {"text": "business"}, {"text": "."}, {"text": "For"}, {"text": "Japan"}, {"text": ","}, {"text": "the"}, {"text": "controversial"}, {"text": "trend"}, {"text": "improves"}, {"text": "access"}, {"text": "to"}, {"text": "American"}, {"text": "markets"}, {"text": "and"}, {"text": "technology"}, {"text": "."}, {"text": "But"}, {"text": "for"}, {"text": "small"}, {"text": "American"}, {"text": "companies"}, {"text": ","}, {"text": "it"}, {"text": "also"}, {"text": "provides"}, {"text": "a"}, {"text": "growing"}, {"text": "source"}, {"text": "of"}, {"text": "capital"}, {"text": "and"}, {"text": "even"}, {"text": "marketing"}, {"text": "help"}, {"text": "."}, {"text": "*"}, {"text": "Take"}, {"text": "the"}, {"text": "deal"}, {"text": "with"}, {"text": "Candela"}, {"text": "Laser"}, {"text": "Corp."}, {"text": ","}, {"text": "a"}, {"text": "Wayland"}, {"text": ","}, {"text": "Mass."}, {"text": ","}, {"text": "manufacturer"}, {"text": "of"}, {"text": "high-tech"}, {"text": "medical"}, {"text": "devices"}, {"text": ","}, {"text": "which"}, {"text": "three"}, {"text": "years"}, {"text": "ago"}, {"text": "*T*-1"}, {"text": "set"}, {"text": "its"}, {"text": "sights"}, {"text": "on"}, {"text": "Japan"}, {"text": "as"}, {"text": "an"}, {"text": "export"}, {"text": "market"}, {"text": "."}, {"text": "Partly"}, {"text": "*-1"}, {"text": "to"}, {"text": "help"}, {"text": "*-2"}, {"text": "clear"}, {"text": "the"}, {"text": "myriad"}, {"text": "obstacles"}, {"text": "facing"}, {"text": "any"}, {"text": "overseas"}, {"text": "company"}, {"text": "trying"}, {"text": "*"}, {"text": "to"}, {"text": "penetrate"}, {"text": "Japan"}, {"text": ","}, {"text": "tiny"}, {"text": "Candela"}, {"text": "turned"}, {"text": "to"}, {"text": "Mitsui"}, {"text": "&"}, {"text": "Co."}, {"text": ","}, {"text": "one"}, {"text": "of"}, {"text": "Japan"}, {"text": "'s"}, {"text": "largest"}, {"text": "trading"}, {"text": "companies"}, {"text": ","}, {"text": "for"}, {"text": "investment"}, {"text": "."}, {"text": "In"}, {"text": "a"}, {"text": "joint-venture"}, {"text": "deal"}, {"text": ","}, {"text": "Mitsui"}, {"text": "guided"}, {"text": "Candela"}, {"text": "through"}, {"text": "Tokyo"}, {"text": "'s"}, {"text": "bureaucratic"}, {"text": "maze"}, {"text": "."}, {"text": "It"}, {"text": "eventually"}, {"text": "secured"}, {"text": "Ministry"}, {"text": "of"}, {"text": "Health"}, {"text": "import"}, {"text": "approval"}, {"text": "for"}, {"text": "two"}, {"text": "Candela"}, {"text": "laser"}, {"text": "products"}, {"text": "--"}, {"text": "one"}, {"text": "that"}, {"text": "*T*-189"}, {"text": "breaks"}, {"text": "up"}, {"text": "kidney"}, {"text": "stones"}, {"text": "and"}, {"text": "another"}, {"text": "that"}, {"text": "*T*-190"}, {"text": "treats"}, {"text": "skin"}, {"text": "lesions"}, {"text": "."}, {"text": "At"}, {"text": "last"}, {"text": "count"}, {"text": ","}, {"text": "Candela"}, {"text": "had"}, {"text": "sold"}, {"text": "$"}, {"text": "4"}, {"text": "million"}, {"text": "*U*"}, {"text": "of"}, {"text": "its"}, {"text": "medical"}, {"text": "devices"}, {"text": "in"}, {"text": "Japan"}, {"text": "."}, {"text": "The"}, {"text": "deal"}, {"text": "also"}, {"text": "gave"}, {"text": "Mitsui"}, {"text": "access"}, {"text": "to"}, {"text": "a"}, {"text": "high-tech"}, {"text": "medical"}, {"text": "product"}, {"text": "."}, {"text": "``"}, {"text": "They"}, {"text": "view"}, {"text": "this"}, {"text": "as"}, {"text": "a"}, {"text": "growth"}, {"text": "area"}, {"text": "so"}, {"text": "they"}, {"text": "went"}, {"text": "about"}, {"text": "it"}, {"text": "with"}, {"text": "a"}, {"text": "systematic"}, {"text": "approach"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "Richard"}, {"text": "Olsen"}, {"text": ","}, {"text": "a"}, {"text": "Candela"}, {"text": "vice"}, {"text": "president"}, {"text": "."}, {"text": "Indeed"}, {"text": ","}, {"text": "for"}, {"text": "many"}, {"text": "Japanese"}, {"text": "trading"}, {"text": "companies"}, {"text": ","}, {"text": "the"}, {"text": "favorite"}, {"text": "U.S."}, {"text": "small"}, {"text": "business"}, {"text": "is"}, {"text": "one"}, {"text": "whose"}, {"text": "research"}, {"text": "and"}, {"text": "development"}, {"text": "*T*-1"}, {"text": "can"}, {"text": "be"}, {"text": "milked"}, {"text": "*-117"}, {"text": "for"}, {"text": "future"}, {"text": "Japanese"}, {"text": "use"}, {"text": "."}, {"text": "The"}, {"text": "Japanese"}, {"text": "companies"}, {"text": "bankroll"}, {"text": "many"}, {"text": "small"}, {"text": "U.S."}, {"text": "companies"}, {"text": "with"}, {"text": "promising"}, {"text": "products"}, {"text": "or"}, {"text": "ideas"}, {"text": ","}, {"text": "*-1"}, {"text": "frequently"}, {"text": "putting"}, {"text": "their"}, {"text": "money"}, {"text": "behind"}, {"text": "projects"}, {"text": "that"}, {"text": "commercial"}, {"text": "banks"}, {"text": "wo"}, {"text": "n't"}, {"text": "touch"}, {"text": "*T*-191"}, {"text": "."}, {"text": "Japanese"}, {"text": "companies"}, {"text": "have"}, {"text": "financed"}, {"text": "small"}, {"text": "and"}, {"text": "medium-sized"}, {"text": "U.S."}, {"text": "firms"}, {"text": "for"}, {"text": "years"}, {"text": ","}, {"text": "but"}, {"text": "in"}, {"text": "recent"}, {"text": "months"}, {"text": ","}, {"text": "the"}, {"text": "pace"}, {"text": "has"}, {"text": "taken"}, {"text": "off"}, {"text": "."}, {"text": "In"}, {"text": "the"}, {"text": "first"}, {"text": "half"}, {"text": "of"}, {"text": "1989"}, {"text": "alone"}, {"text": ","}, {"text": "Japanese"}, {"text": "corporations"}, {"text": "invested"}, {"text": "$"}, {"text": "214"}, {"text": "million"}, {"text": "*U*"}, {"text": "*ICH*-2"}, {"text": "in"}, {"text": "minority"}, {"text": "positions"}, {"text": "in"}, {"text": "U.S."}, {"text": "companies"}, {"text": ","}, {"text": "a"}, {"text": "61"}, {"text": "%"}, {"text": "rise"}, {"text": "from"}, {"text": "the"}, {"text": "figure"}, {"text": "for"}, {"text": "all"}, {"text": "of"}, {"text": "1987"}, {"text": ","}, {"text": "reports"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "Venture"}, {"text": "Economics"}, {"text": "Inc"}, {"text": "."}, {"text": "The"}, {"text": "Needham"}, {"text": ","}, {"text": "Mass."}, {"text": ","}, {"text": "concern"}, {"text": "tracks"}, {"text": "investments"}, {"text": "in"}, {"text": "new"}, {"text": "businesses"}, {"text": "."}, {"text": "In"}, {"text": "addition"}, {"text": ","}, {"text": "of"}, {"text": "course"}, {"text": ","}, {"text": "some"}, {"text": "of"}, {"text": "the"}, {"text": "Japanese"}, {"text": "investments"}, {"text": "involved"}, {"text": "outright"}, {"text": "purchase"}, {"text": "of"}, {"text": "small"}, {"text": "U.S."}, {"text": "firms"}, {"text": "."}, {"text": "Heightened"}, {"text": "Japanese"}, {"text": "interest"}, {"text": "in"}, {"text": "American"}, {"text": "small"}, {"text": "business"}, {"text": "parallels"}, {"text": "an"}, {"text": "acceleration"}, {"text": "of"}, {"text": "investments"}, {"text": "giving"}, {"text": "Japanese"}, {"text": "companies"}, {"text": "control"}, {"text": "of"}, {"text": "large"}, {"text": ","}, {"text": "highly"}, {"text": "visible"}, {"text": "U.S."}, {"text": "corporations"}, {"text": ","}, {"text": "such"}, {"text": "as"}, {"text": "Columbia"}, {"text": "Pictures"}, {"text": "Entertainment"}, {"text": "Inc"}, {"text": "."}, {"text": "Only"}, {"text": "this"}, {"text": "week"}, {"text": ","}, {"text": "it"}, {"text": "*EXP*-1"}, {"text": "was"}, {"text": "announced"}, {"text": "*-118"}, {"text": "that"}, {"text": "Mitsubishi"}, {"text": "Estate"}, {"text": "Co."}, {"text": "had"}, {"text": "acquired"}, {"text": "a"}, {"text": "51"}, {"text": "%"}, {"text": "stake"}, {"text": "in"}, {"text": "Rockefeller"}, {"text": "Group"}, {"text": ","}, {"text": "which"}, {"text": "*T*-192"}, {"text": "owns"}, {"text": "New"}, {"text": "York"}, {"text": "'s"}, {"text": "prestigious"}, {"text": "Rockefeller"}, {"text": "Center"}, {"text": "."}, {"text": "While"}, {"text": "the"}, {"text": "small"}, {"text": "deals"}, {"text": "are"}, {"text": "far"}, {"text": "less"}, {"text": "conspicuous"}, {"text": ","}, {"text": "they"}, {"text": "add"}, {"text": "to"}, {"text": "Japanese"}, {"text": "penetration"}, {"text": "of"}, {"text": "the"}, {"text": "U.S."}, {"text": "market"}, {"text": "."}, {"text": "As"}, {"text": "the"}, {"text": "deals"}, {"text": "also"}, {"text": "improve"}, {"text": "Japanese"}, {"text": "access"}, {"text": "to"}, {"text": "American"}, {"text": "technology"}, {"text": "and"}, {"text": "market"}, {"text": "knowledge"}, {"text": ","}, {"text": "they"}, {"text": "feed"}, {"text": "American"}, {"text": "anxieties"}, {"text": "in"}, {"text": "this"}, {"text": "area"}, {"text": ","}, {"text": "too"}, {"text": "."}, {"text": "Even"}, {"text": "a"}, {"text": "low-tech"}, {"text": "product"}, {"text": "like"}, {"text": "plate"}, {"text": "glass"}, {"text": "can"}, {"text": "catch"}, {"text": "a"}, {"text": "trading"}, {"text": "company"}, {"text": "'s"}, {"text": "fancy"}, {"text": "if"}, {"text": "there"}, {"text": "'s"}, {"text": "a"}, {"text": "strategic"}, {"text": "fit"}, {"text": "."}, {"text": "Free"}, {"text": "State"}, {"text": "Glass"}, {"text": "Industries"}, {"text": "of"}, {"text": "Warrenton"}, {"text": ","}, {"text": "Va."}, {"text": ","}, {"text": "a"}, {"text": "small"}, {"text": "fabricator"}, {"text": "of"}, {"text": "architectural"}, {"text": "glass"}, {"text": ","}, {"text": "was"}, {"text": "foundering"}, {"text": "under"}, {"text": "its"}, {"text": "original"}, {"text": "management"}, {"text": "."}, {"text": "Last"}, {"text": "year"}, {"text": ","}, {"text": "Mitsubishi"}, {"text": "International"}, {"text": "Corp."}, {"text": ","}, {"text": "the"}, {"text": "New"}, {"text": "York-based"}, {"text": "arm"}, {"text": "of"}, {"text": "Mitsubishi"}, {"text": "Corp."}, {"text": ","}, {"text": "bought"}, {"text": "controlling"}, {"text": "interest"}, {"text": "in"}, {"text": "the"}, {"text": "glass"}, {"text": "company"}, {"text": "in"}, {"text": "a"}, {"text": "joint"}, {"text": "venture"}, {"text": "with"}, {"text": "Ronald"}, {"text": "Bodner"}, {"text": ","}, {"text": "a"}, {"text": "glass"}, {"text": "industry"}, {"text": "executive"}, {"text": "and"}, {"text": "Mitsubishi"}, {"text": "consultant"}, {"text": "."}, {"text": "The"}, {"text": "deal"}, {"text": "is"}, {"text": "chiefly"}, {"text": "designed"}, {"text": "*-1"}, {"text": "*-3"}, {"text": "to"}, {"text": "give"}, {"text": "Mitsubishi"}, {"text": "a"}, {"text": "window"}, {"text": "on"}, {"text": "the"}, {"text": "U.S."}, {"text": "glass"}, {"text": "industry"}, {"text": ","}, {"text": "says"}, {"text": "*T*-2"}, {"text": "Ichiro"}, {"text": "Wakui"}, {"text": ","}, {"text": "an"}, {"text": "executive"}, {"text": "in"}, {"text": "Mitsubishi"}, {"text": "'s"}, {"text": "general"}, {"text": "merchandise"}, {"text": "department"}, {"text": "in"}, {"text": "New"}, {"text": "York"}, {"text": "."}, {"text": "``"}, {"text": "It"}, {"text": "'s"}, {"text": "not"}, {"text": "just"}, {"text": "a"}, {"text": "simple"}, {"text": "investment"}, {"text": "in"}, {"text": "a"}, {"text": "small"}, {"text": "company"}, {"text": ","}, {"text": "''"}, {"text": "Mr."}, {"text": "Wakui"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "."}, {"text": "``"}, {"text": "We"}, {"text": "want"}, {"text": "*-1"}, {"text": "to"}, {"text": "see"}, {"text": "the"}, {"text": "glass"}, {"text": "market"}, {"text": "from"}, {"text": "the"}, {"text": "inside"}, {"text": ","}, {"text": "not"}, {"text": "the"}, {"text": "outside"}, {"text": "."}, {"text": "''"}, {"text": "Mitsubishi"}, {"text": "'s"}, {"text": "investment"}, {"text": "in"}, {"text": "Free"}, {"text": "State"}, {"text": "is"}, {"text": "``"}, {"text": "very"}, {"text": "small"}, {"text": "..."}, {"text": "less"}, {"text": "than"}, {"text": "$"}, {"text": "4"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "''"}, {"text": "Mr."}, {"text": "Wakui"}, {"text": "says"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Mr."}, {"text": "Bodner"}, {"text": "declines"}, {"text": "*-1"}, {"text": "to"}, {"text": "comment"}, {"text": "on"}, {"text": "the"}, {"text": "arrangement"}, {"text": "."}, {"text": "Trading"}, {"text": "companies"}, {"text": "such"}, {"text": "as"}, {"text": "Mitsubishi"}, {"text": ","}, {"text": "Mitsui"}, {"text": ","}, {"text": "C."}, {"text": "Itoh"}, {"text": "&"}, {"text": "Co."}, {"text": "and"}, {"text": "Nissho-Iwai"}, {"text": "Corp."}, {"text": ","}, {"text": "which"}, {"text": "*T*-193"}, {"text": "make"}, {"text": "many"}, {"text": "of"}, {"text": "the"}, {"text": "Japanese"}, {"text": "investments"}, {"text": "in"}, {"text": "small"}, {"text": "U.S."}, {"text": "concerns"}, {"text": ","}, {"text": "have"}, {"text": "no"}, {"text": "U.S."}, {"text": "counterpart"}, {"text": "."}, {"text": "These"}, {"text": "vertically"}, {"text": "integrated"}, {"text": "combines"}, {"text": ","}, {"text": "some"}, {"text": "of"}, {"text": "which"}, {"text": "*T*-1"}, {"text": "got"}, {"text": "their"}, {"text": "start"}, {"text": "in"}, {"text": "Japan"}, {"text": "'s"}, {"text": "feudal"}, {"text": "period"}, {"text": ","}, {"text": "deal"}, {"text": "globally"}, {"text": "in"}, {"text": "commodities"}, {"text": ","}, {"text": "construction"}, {"text": "and"}, {"text": "manufacturing"}, {"text": "."}, {"text": "They"}, {"text": "operate"}, {"text": "ships"}, {"text": "and"}, {"text": "banks"}, {"text": "."}, {"text": "``"}, {"text": "All"}, {"text": "the"}, {"text": "``"}, {"text": "sogo-shosha"}, {"text": "''"}, {"text": "are"}, {"text": "looking"}, {"text": "for"}, {"text": "new"}, {"text": "business"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "Arthur"}, {"text": "Klauser"}, {"text": ","}, {"text": "adviser"}, {"text": "to"}, {"text": "the"}, {"text": "president"}, {"text": "of"}, {"text": "Mitsui"}, {"text": ","}, {"text": "U.S.A."}, {"text": ","}, {"text": "*-2"}, {"text": "using"}, {"text": "the"}, {"text": "Japanese"}, {"text": "term"}, {"text": "for"}, {"text": "the"}, {"text": "largest"}, {"text": "of"}, {"text": "the"}, {"text": "global"}, {"text": "trading"}, {"text": "houses"}, {"text": "."}, {"text": "Adds"}, {"text": "*ICH*-1"}, {"text": "Takeshi"}, {"text": "Kondo"}, {"text": ","}, {"text": "senior"}, {"text": "vice"}, {"text": "president"}, {"text": "of"}, {"text": "C."}, {"text": "Itoh"}, {"text": "America"}, {"text": "Inc."}, {"text": ":"}, {"text": "``"}, {"text": "We"}, {"text": "have"}, {"text": "a"}, {"text": "great"}, {"text": "interest"}, {"text": "in"}, {"text": "*"}, {"text": "making"}, {"text": "investments"}, {"text": ","}, {"text": "particularly"}, {"text": "in"}, {"text": "new"}, {"text": "ventures"}, {"text": "."}, {"text": "''"}, {"text": "A"}, {"text": "host"}, {"text": "of"}, {"text": "electronics"}, {"text": "firms"}, {"text": "in"}, {"text": "California"}, {"text": "'s"}, {"text": "Silicon"}, {"text": "Valley"}, {"text": "were"}, {"text": "financed"}, {"text": "*-119"}, {"text": "with"}, {"text": "trading-company"}, {"text": "venture"}, {"text": "capital"}, {"text": "."}, {"text": "Profit"}, {"text": ","}, {"text": "at"}, {"text": "least"}, {"text": "in"}, {"text": "the"}, {"text": "short"}, {"text": "term"}, {"text": ","}, {"text": "is"}, {"text": "usually"}, {"text": "a"}, {"text": "secondary"}, {"text": "goal"}, {"text": "."}, {"text": "``"}, {"text": "Strategic"}, {"text": "objectives"}, {"text": ","}, {"text": "not"}, {"text": "financial"}, {"text": "return"}, {"text": ","}, {"text": "drive"}, {"text": "many"}, {"text": "of"}, {"text": "the"}, {"text": "deals"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "a"}, {"text": "Venture"}, {"text": "Economics"}, {"text": "spokesman"}, {"text": "."}, {"text": "In"}, {"text": "*"}, {"text": "investing"}, {"text": "on"}, {"text": "the"}, {"text": "basis"}, {"text": "of"}, {"text": "future"}, {"text": "transactions"}, {"text": ","}, {"text": "a"}, {"text": "role"}, {"text": "often"}, {"text": "performed"}, {"text": "*"}, {"text": "by"}, {"text": "merchant"}, {"text": "banks"}, {"text": ","}, {"text": "trading"}, {"text": "companies"}, {"text": "can"}, {"text": "cut"}, {"text": "through"}, {"text": "the"}, {"text": "logjam"}, {"text": "that"}, {"text": "small-company"}, {"text": "owners"}, {"text": "often"}, {"text": "face"}, {"text": "*T*-1"}, {"text": "with"}, {"text": "their"}, {"text": "local"}, {"text": "commercial"}, {"text": "banks"}, {"text": "."}, {"text": "``"}, {"text": "It"}, {"text": "'s"}, {"text": "the"}, {"text": "classic"}, {"text": "problem"}, {"text": "of"}, {"text": "the"}, {"text": "small"}, {"text": "businessman"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "Malcolm"}, {"text": "Davies"}, {"text": ","}, {"text": "managing"}, {"text": "director"}, {"text": "of"}, {"text": "Trading"}, {"text": "Alliance"}, {"text": "Corp."}, {"text": "of"}, {"text": "New"}, {"text": "York"}, {"text": "."}, {"text": "``"}, {"text": "People"}, {"text": "are"}, {"text": "queuing"}, {"text": "at"}, {"text": "the"}, {"text": "door"}, {"text": "*-1"}, {"text": "to"}, {"text": "take"}, {"text": "his"}, {"text": "product"}, {"text": "but"}, {"text": "he"}, {"text": "does"}, {"text": "n't"}, {"text": "have"}, {"text": "the"}, {"text": "working"}, {"text": "capital"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "make"}, {"text": "the"}, {"text": "thing"}, {"text": "*T*-2"}, {"text": "and"}, {"text": "commercial"}, {"text": "banks"}, {"text": "are"}, {"text": "very"}, {"text": "unsympathetic"}, {"text": "."}, {"text": "They"}, {"text": "want"}, {"text": "assets"}, {"text": ","}, {"text": "they"}, {"text": "want"}, {"text": "a"}, {"text": "balance"}, {"text": "sheet"}, {"text": ","}, {"text": "which"}, {"text": "*T*-194"}, {"text": "has"}, {"text": "no"}, {"text": "relation"}, {"text": "to"}, {"text": "the"}, {"text": "business"}, {"text": "0"}, {"text": "a"}, {"text": "company"}, {"text": "can"}, {"text": "generate"}, {"text": "*T*-1"}, {"text": "."}, {"text": "''"}, {"text": "Adds"}, {"text": "*ICH*-1"}, {"text": "Mitsui"}, {"text": "'s"}, {"text": "Mr."}, {"text": "Klauser"}, {"text": ":"}, {"text": "``"}, {"text": "Unlike"}, {"text": "corporations"}, {"text": "in"}, {"text": "this"}, {"text": "country"}, {"text": ","}, {"text": "trading"}, {"text": "companies"}, {"text": "are"}, {"text": "n't"}, {"text": "so"}, {"text": "much"}, {"text": "interested"}, {"text": "in"}, {"text": "a"}, {"text": "high"}, {"text": "return"}, {"text": "on"}, {"text": "investment"}, {"text": "as"}, {"text": "they"}, {"text": "are"}, {"text": "*?*"}, {"text": "on"}, {"text": "*"}, {"text": "increasing"}, {"text": "trade"}, {"text": "flows"}, {"text": "."}, {"text": "To"}, {"text": "the"}, {"text": "extent"}, {"text": "0"}, {"text": "they"}, {"text": "can"}, {"text": "do"}, {"text": "this"}, {"text": "*T*-3"}, {"text": ","}, {"text": "they"}, {"text": "'re"}, {"text": "quite"}, {"text": "content"}, {"text": "*-1"}, {"text": "to"}, {"text": "get"}, {"text": "a"}, {"text": "return"}, {"text": "on"}, {"text": "investment"}, {"text": "of"}, {"text": "1"}, {"text": "%"}, {"text": "to"}, {"text": "2"}, {"text": "%"}, {"text": "*U*"}, {"text": "."}, {"text": "''"}, {"text": "Mr."}, {"text": "Klauser"}, {"text": "says"}, {"text": "0"}, {"text": "Mitsui"}, {"text": "has"}, {"text": "75"}, {"text": "U.S."}, {"text": "subsidiaries"}, {"text": "in"}, {"text": "which"}, {"text": "it"}, {"text": "holds"}, {"text": "35"}, {"text": "%"}, {"text": "interest"}, {"text": "or"}, {"text": "more"}, {"text": "*T*-1"}, {"text": "and"}, {"text": "the"}, {"text": "trading"}, {"text": "company"}, {"text": "hopes"}, {"text": "*-2"}, {"text": "to"}, {"text": "double"}, {"text": "the"}, {"text": "number"}, {"text": "of"}, {"text": "its"}, {"text": "U.S."}, {"text": "affiliates"}, {"text": "in"}, {"text": "1990"}, {"text": "."}, {"text": "Sales"}, {"text": "by"}, {"text": "these"}, {"text": "subsidiaries"}, {"text": "in"}, {"text": "the"}, {"text": "fiscal"}, {"text": "year"}, {"text": "ending"}, {"text": "last"}, {"text": "March"}, {"text": "were"}, {"text": "more"}, {"text": "than"}, {"text": "$"}, {"text": "17"}, {"text": "billion"}, {"text": "*U*"}, {"text": "."}, {"text": "A"}, {"text": "1"}, {"text": "%"}, {"text": "to"}, {"text": "2"}, {"text": "%"}, {"text": "*U*"}, {"text": "return"}, {"text": "on"}, {"text": "$"}, {"text": "17"}, {"text": "billion"}, {"text": "*U*"}, {"text": "``"}, {"text": "ai"}, {"text": "n't"}, {"text": "hay"}, {"text": ","}, {"text": "''"}, {"text": "Mr."}, {"text": "Klauser"}, {"text": "says"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Hudson"}, {"text": "General"}, {"text": "Corp."}, {"text": "'s"}, {"text": "president"}, {"text": "and"}, {"text": "chief"}, {"text": "executive"}, {"text": "officer"}, {"text": ","}, {"text": "Alan"}, {"text": "J."}, {"text": "Stearn"}, {"text": ","}, {"text": "resigned"}, {"text": "."}, {"text": "Mr."}, {"text": "Stearn"}, {"text": ","}, {"text": "46"}, {"text": "years"}, {"text": "old"}, {"text": ","}, {"text": "could"}, {"text": "n't"}, {"text": "be"}, {"text": "reached"}, {"text": "*-120"}, {"text": "for"}, {"text": "comment"}, {"text": "."}, {"text": "A"}, {"text": "company"}, {"text": "spokesman"}, {"text": "declined"}, {"text": "*-1"}, {"text": "to"}, {"text": "elaborate"}, {"text": "on"}, {"text": "the"}, {"text": "departure"}, {"text": "."}, {"text": "Hudson"}, {"text": "General"}, {"text": ","}, {"text": "which"}, {"text": "*T*-195"}, {"text": "provides"}, {"text": "maintenance"}, {"text": ","}, {"text": "fueling"}, {"text": "and"}, {"text": "other"}, {"text": "services"}, {"text": "to"}, {"text": "airlines"}, {"text": "and"}, {"text": "airports"}, {"text": ","}, {"text": "reported"}, {"text": "a"}, {"text": "loss"}, {"text": "for"}, {"text": "its"}, {"text": "most"}, {"text": "recent"}, {"text": "fiscal"}, {"text": "year"}, {"text": "and"}, {"text": "last"}, {"text": "month"}, {"text": "omitted"}, {"text": "the"}, {"text": "semiannual"}, {"text": "dividend"}, {"text": "on"}, {"text": "its"}, {"text": "common"}, {"text": "shares"}, {"text": "."}, {"text": "Mr."}, {"text": "Stearn"}, {"text": ","}, {"text": "who"}, {"text": "*T*-196"}, {"text": "had"}, {"text": "been"}, {"text": "with"}, {"text": "the"}, {"text": "company"}, {"text": "more"}, {"text": "than"}, {"text": "20"}, {"text": "years"}, {"text": "and"}, {"text": "had"}, {"text": "been"}, {"text": "president"}, {"text": "since"}, {"text": "1984"}, {"text": ","}, {"text": "will"}, {"text": "act"}, {"text": "as"}, {"text": "a"}, {"text": "consultant"}, {"text": "to"}, {"text": "Hudson"}, {"text": "General"}, {"text": "."}, {"text": "His"}, {"text": "duties"}, {"text": "as"}, {"text": "chief"}, {"text": "executive"}, {"text": "will"}, {"text": "be"}, {"text": "assumed"}, {"text": "*-121"}, {"text": "by"}, {"text": "Chairman"}, {"text": "Jay"}, {"text": "B."}, {"text": "Langner"}, {"text": "."}, {"text": "For"}, {"text": "10"}, {"text": "years"}, {"text": ","}, {"text": "Genie"}, {"text": "Driskill"}, {"text": "went"}, {"text": "to"}, {"text": "her"}, {"text": "neighborhood"}, {"text": "bank"}, {"text": "because"}, {"text": "it"}, {"text": "was"}, {"text": "convenient"}, {"text": "."}, {"text": "*-4"}, {"text": "A"}, {"text": "high-balance"}, {"text": "customer"}, {"text": "that"}, {"text": "banks"}, {"text": "pine"}, {"text": "for"}, {"text": "*T*-1"}, {"text": ","}, {"text": "she"}, {"text": "did"}, {"text": "n't"}, {"text": "give"}, {"text": "much"}, {"text": "thought"}, {"text": "to"}, {"text": "the"}, {"text": "rates"}, {"text": "0"}, {"text": "she"}, {"text": "was"}, {"text": "receiving"}, {"text": "*T*-2"}, {"text": ","}, {"text": "nor"}, {"text": "to"}, {"text": "the"}, {"text": "fees"}, {"text": "0"}, {"text": "she"}, {"text": "was"}, {"text": "paying"}, {"text": "*T*-3"}, {"text": "."}, {"text": "But"}, {"text": "in"}, {"text": "August"}, {"text": ","}, {"text": "First"}, {"text": "Atlanta"}, {"text": "National"}, {"text": "Bank"}, {"text": "introduced"}, {"text": "its"}, {"text": "Crown"}, {"text": "Account"}, {"text": ","}, {"text": "a"}, {"text": "package"}, {"text": "designed"}, {"text": "*"}, {"text": "*-1"}, {"text": "to"}, {"text": "lure"}, {"text": "customers"}, {"text": "such"}, {"text": "as"}, {"text": "Ms."}, {"text": "Driskill"}, {"text": "."}, {"text": "Among"}, {"text": "other"}, {"text": "things"}, {"text": ","}, {"text": "it"}, {"text": "included"}, {"text": "checking"}, {"text": ","}, {"text": "safe"}, {"text": "deposit"}, {"text": "box"}, {"text": "and"}, {"text": "credit"}, {"text": "card"}, {"text": "--"}, {"text": "all"}, {"text": "for"}, {"text": "free"}, {"text": "--"}, {"text": "plus"}, {"text": "a"}, {"text": "good"}, {"text": "deal"}, {"text": "on"}, {"text": "installment"}, {"text": "loans"}, {"text": "."}, {"text": "All"}, {"text": "0"}, {"text": "she"}, {"text": "had"}, {"text": "*-2"}, {"text": "to"}, {"text": "do"}, {"text": "*T*-1"}, {"text": "was"}, {"text": "put"}, {"text": "$"}, {"text": "15,000"}, {"text": "*U*"}, {"text": "in"}, {"text": "a"}, {"text": "certificate"}, {"text": "of"}, {"text": "deposit"}, {"text": ","}, {"text": "or"}, {"text": "qualify"}, {"text": "for"}, {"text": "a"}, {"text": "$"}, {"text": "10,000"}, {"text": "*U*"}, {"text": "personal"}, {"text": "line"}, {"text": "of"}, {"text": "credit"}, {"text": "."}, {"text": "``"}, {"text": "I"}, {"text": "deserve"}, {"text": "something"}, {"text": "for"}, {"text": "my"}, {"text": "loyalty"}, {"text": ","}, {"text": "''"}, {"text": "she"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "."}, {"text": "She"}, {"text": "took"}, {"text": "her"}, {"text": "business"}, {"text": "to"}, {"text": "First"}, {"text": "Atlanta"}, {"text": "."}, {"text": "So"}, {"text": "it"}, {"text": "goes"}, {"text": "in"}, {"text": "the"}, {"text": "competitive"}, {"text": "world"}, {"text": "of"}, {"text": "consumer"}, {"text": "banking"}, {"text": "these"}, {"text": "days"}, {"text": "."}, {"text": "For"}, {"text": "nearly"}, {"text": "a"}, {"text": "decade"}, {"text": ","}, {"text": "banks"}, {"text": "have"}, {"text": "competed"}, {"text": "for"}, {"text": "customers"}, {"text": "primarily"}, {"text": "with"}, {"text": "the"}, {"text": "interest"}, {"text": "rates"}, {"text": "0"}, {"text": "they"}, {"text": "pay"}, {"text": "*T*-1"}, {"text": "on"}, {"text": "their"}, {"text": "deposits"}, {"text": "and"}, {"text": "charge"}, {"text": "*T*-1"}, {"text": "on"}, {"text": "their"}, {"text": "loans"}, {"text": "."}, {"text": "The"}, {"text": "competitive"}, {"text": "rates"}, {"text": "were"}, {"text": "generally"}, {"text": "offset"}, {"text": "*-1"}, {"text": "by"}, {"text": "hefty"}, {"text": "fees"}, {"text": "on"}, {"text": "various"}, {"text": "services"}, {"text": "."}, {"text": "But"}, {"text": "many"}, {"text": "banks"}, {"text": "are"}, {"text": "turning"}, {"text": "away"}, {"text": "from"}, {"text": "strict"}, {"text": "price"}, {"text": "competition"}, {"text": "."}, {"text": "Instead"}, {"text": ","}, {"text": "they"}, {"text": "are"}, {"text": "trying"}, {"text": "*-1"}, {"text": "to"}, {"text": "build"}, {"text": "customer"}, {"text": "loyalty"}, {"text": "by"}, {"text": "*-2"}, {"text": "bundling"}, {"text": "their"}, {"text": "services"}, {"text": "into"}, {"text": "packages"}, {"text": "and"}, {"text": "targeting"}, {"text": "them"}, {"text": "to"}, {"text": "small"}, {"text": "segments"}, {"text": "of"}, {"text": "the"}, {"text": "population"}, {"text": "."}, {"text": "``"}, {"text": "You"}, {"text": "'re"}, {"text": "dead"}, {"text": "in"}, {"text": "the"}, {"text": "water"}, {"text": "if"}, {"text": "you"}, {"text": "are"}, {"text": "n't"}, {"text": "segmenting"}, {"text": "the"}, {"text": "market"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "Anne"}, {"text": "Moore"}, {"text": ","}, {"text": "president"}, {"text": "of"}, {"text": "Synergistics"}, {"text": "Research"}, {"text": "Corp."}, {"text": ","}, {"text": "a"}, {"text": "bank"}, {"text": "consulting"}, {"text": "firm"}, {"text": "in"}, {"text": "Atlanta"}, {"text": "."}, {"text": "NCNB"}, {"text": "Corp."}, {"text": "of"}, {"text": "Charlotte"}, {"text": ","}, {"text": "N.C."}, {"text": ","}, {"text": "recently"}, {"text": "introduced"}, {"text": "its"}, {"text": "Financial"}, {"text": "Connections"}, {"text": "Program"}, {"text": "aimed"}, {"text": "*"}, {"text": "at"}, {"text": "young"}, {"text": "adults"}, {"text": "just"}, {"text": "starting"}, {"text": "careers"}, {"text": "."}, {"text": "The"}, {"text": "program"}, {"text": "not"}, {"text": "only"}, {"text": "offers"}, {"text": "a"}, {"text": "pre-approved"}, {"text": "car"}, {"text": "loan"}, {"text": "up"}, {"text": "to"}, {"text": "$"}, {"text": "18,000"}, {"text": "*U*"}, {"text": ","}, {"text": "but"}, {"text": "throws"}, {"text": "in"}, {"text": "a"}, {"text": "special"}, {"text": "cash-flow"}, {"text": "statement"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "to"}, {"text": "help"}, {"text": "in"}, {"text": "*"}, {"text": "saving"}, {"text": "money"}, {"text": "."}, {"text": "In"}, {"text": "September"}, {"text": ","}, {"text": "Union"}, {"text": "Planters"}, {"text": "Corp."}, {"text": "of"}, {"text": "Memphis"}, {"text": ","}, {"text": "Tenn."}, {"text": ","}, {"text": "launched"}, {"text": "The"}, {"text": "Edge"}, {"text": "account"}, {"text": ","}, {"text": "a"}, {"text": "package"}, {"text": "designed"}, {"text": "*"}, {"text": "for"}, {"text": "the"}, {"text": "``"}, {"text": "thirtysomething"}, {"text": "''"}, {"text": "crowd"}, {"text": "with"}, {"text": "services"}, {"text": "that"}, {"text": "*T*-197"}, {"text": "include"}, {"text": "a"}, {"text": "credit"}, {"text": "card"}, {"text": "and"}, {"text": "line"}, {"text": "of"}, {"text": "credit"}, {"text": "with"}, {"text": "no"}, {"text": "annual"}, {"text": "fees"}, {"text": ","}, {"text": "and"}, {"text": "a"}, {"text": "full"}, {"text": "percentage"}, {"text": "point"}, {"text": "off"}, {"text": "on"}, {"text": "installment"}, {"text": "loans"}, {"text": "."}, {"text": "The"}, {"text": "theory"}, {"text": ":"}, {"text": "Such"}, {"text": "individuals"}, {"text": ","}, {"text": "many"}, {"text": "with"}, {"text": "young"}, {"text": "children"}, {"text": ","}, {"text": "are"}, {"text": "in"}, {"text": "their"}, {"text": "prime"}, {"text": "borrowing"}, {"text": "years"}, {"text": "--"}, {"text": "and"}, {"text": ","}, {"text": "*-1"}, {"text": "having"}, {"text": "borrowed"}, {"text": "from"}, {"text": "the"}, {"text": "bank"}, {"text": ","}, {"text": "they"}, {"text": "may"}, {"text": "continue"}, {"text": "*-1"}, {"text": "to"}, {"text": "use"}, {"text": "it"}, {"text": "for"}, {"text": "other"}, {"text": "services"}, {"text": "in"}, {"text": "later"}, {"text": "years"}, {"text": "."}, {"text": "For"}, {"text": "some"}, {"text": "time"}, {"text": ","}, {"text": "banks"}, {"text": "have"}, {"text": "been"}, {"text": "aiming"}, {"text": "packages"}, {"text": "at"}, {"text": "the"}, {"text": "elderly"}, {"text": ","}, {"text": "the"}, {"text": "demographic"}, {"text": "segment"}, {"text": "with"}, {"text": "the"}, {"text": "highest"}, {"text": "savings"}, {"text": "."}, {"text": "Those"}, {"text": "efforts"}, {"text": "are"}, {"text": "being"}, {"text": "stepped"}, {"text": "up"}, {"text": "*-1"}, {"text": "."}, {"text": "Judie"}, {"text": "MacDonald"}, {"text": ","}, {"text": "vice"}, {"text": "president"}, {"text": "of"}, {"text": "retail"}, {"text": "sales"}, {"text": "at"}, {"text": "Barnett"}, {"text": "Banks"}, {"text": "Inc."}, {"text": "of"}, {"text": "Jacksonville"}, {"text": ","}, {"text": "Fla."}, {"text": ","}, {"text": "says"}, {"text": "0"}, {"text": "the"}, {"text": "company"}, {"text": "now"}, {"text": "targets"}, {"text": "sub-segments"}, {"text": "within"}, {"text": "the"}, {"text": "market"}, {"text": "by"}, {"text": "*-1"}, {"text": "tailoring"}, {"text": "its"}, {"text": "popular"}, {"text": "Seniors"}, {"text": "Partners"}, {"text": "Program"}, {"text": "to"}, {"text": "various"}, {"text": "life"}, {"text": "styles"}, {"text": "."}, {"text": "``"}, {"text": "Varying"}, {"text": "age"}, {"text": ","}, {"text": "geography"}, {"text": "and"}, {"text": "life-style"}, {"text": "differences"}, {"text": "create"}, {"text": "numerous"}, {"text": "sub-markets"}, {"text": ","}, {"text": "''"}, {"text": "Ms."}, {"text": "MacDonald"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "."}, {"text": "She"}, {"text": "says"}, {"text": "0"}, {"text": "individual"}, {"text": "Barnett"}, {"text": "branches"}, {"text": "can"}, {"text": "add"}, {"text": "different"}, {"text": "benefits"}, {"text": "*ICH*-1"}, {"text": "to"}, {"text": "their"}, {"text": "Seniors"}, {"text": "Partners"}, {"text": "package"}, {"text": "--"}, {"text": "such"}, {"text": "as"}, {"text": "athletic"}, {"text": "activities"}, {"text": "or"}, {"text": "travel"}, {"text": "clubs"}, {"text": "--"}, {"text": "*-2"}, {"text": "to"}, {"text": "appeal"}, {"text": "to"}, {"text": "local"}, {"text": "market"}, {"text": "interests"}, {"text": "."}, {"text": "``"}, {"text": "An"}, {"text": "active"}, {"text": "55-year-old"}, {"text": "in"}, {"text": "Boca"}, {"text": "Raton"}, {"text": "may"}, {"text": "care"}, {"text": "more"}, {"text": "about"}, {"text": "Senior"}, {"text": "Olympic"}, {"text": "games"}, {"text": ","}, {"text": "while"}, {"text": "a"}, {"text": "75-year-old"}, {"text": "in"}, {"text": "Panama"}, {"text": "City"}, {"text": "may"}, {"text": "care"}, {"text": "more"}, {"text": "about"}, {"text": "a"}, {"text": "seminar"}, {"text": "on"}, {"text": "health"}, {"text": ","}, {"text": "''"}, {"text": "she"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Banks"}, {"text": "have"}, {"text": "tried"}, {"text": "packaging"}, {"text": "before"}, {"text": "."}, {"text": "In"}, {"text": "1973"}, {"text": ","}, {"text": "Wells"}, {"text": "Fargo"}, {"text": "&"}, {"text": "Co."}, {"text": "of"}, {"text": "San"}, {"text": "Francisco"}, {"text": "launched"}, {"text": "the"}, {"text": "Gold"}, {"text": "Account"}, {"text": ","}, {"text": "which"}, {"text": "*T*-198"}, {"text": "included"}, {"text": "free"}, {"text": "checking"}, {"text": ","}, {"text": "a"}, {"text": "credit"}, {"text": "card"}, {"text": ","}, {"text": "safe-deposit"}, {"text": "box"}, {"text": "and"}, {"text": "travelers"}, {"text": "checks"}, {"text": "for"}, {"text": "a"}, {"text": "$"}, {"text": "3"}, {"text": "*U*"}, {"text": "monthly"}, {"text": "fee"}, {"text": "."}, {"text": "The"}, {"text": "concept"}, {"text": "begot"}, {"text": "a"}, {"text": "slew"}, {"text": "of"}, {"text": "copycats"}, {"text": ","}, {"text": "but"}, {"text": "the"}, {"text": "banks"}, {"text": "stopped"}, {"text": "*-1"}, {"text": "promoting"}, {"text": "the"}, {"text": "packages"}, {"text": "."}, {"text": "One"}, {"text": "big"}, {"text": "reason"}, {"text": ":"}, {"text": "thin"}, {"text": "margins"}, {"text": "."}, {"text": "Many"}, {"text": "banks"}, {"text": ","}, {"text": "particularly"}, {"text": "smaller"}, {"text": "ones"}, {"text": ","}, {"text": "were"}, {"text": "slow"}, {"text": "*-1"}, {"text": "to"}, {"text": "computerize"}, {"text": "and"}, {"text": "could"}, {"text": "n't"}, {"text": "target"}, {"text": "market"}, {"text": "niches"}, {"text": "that"}, {"text": "*T*-199"}, {"text": "would"}, {"text": "have"}, {"text": "made"}, {"text": "the"}, {"text": "programs"}, {"text": "more"}, {"text": "profitable"}, {"text": "."}, {"text": "As"}, {"text": "banks"}, {"text": "'"}, {"text": "earnings"}, {"text": "were"}, {"text": "squeezed"}, {"text": "*-122"}, {"text": "in"}, {"text": "the"}, {"text": "mid-1970s"}, {"text": ","}, {"text": "the"}, {"text": "emphasis"}, {"text": "switched"}, {"text": "to"}, {"text": "*"}, {"text": "finding"}, {"text": "ways"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "cut"}, {"text": "costs"}, {"text": "*T*-1"}, {"text": "."}, {"text": "But"}, {"text": "now"}, {"text": "computers"}, {"text": "are"}, {"text": "enabling"}, {"text": "more"}, {"text": "banks"}, {"text": "to"}, {"text": "analyze"}, {"text": "their"}, {"text": "customers"}, {"text": "by"}, {"text": "age"}, {"text": ","}, {"text": "income"}, {"text": "and"}, {"text": "geography"}, {"text": "."}, {"text": "They"}, {"text": "are"}, {"text": "better"}, {"text": "able"}, {"text": "*-1"}, {"text": "to"}, {"text": "get"}, {"text": "to"}, {"text": "those"}, {"text": "segments"}, {"text": "in"}, {"text": "the"}, {"text": "wake"}, {"text": "of"}, {"text": "the"}, {"text": "deregulation"}, {"text": "that"}, {"text": "*T*-200"}, {"text": "began"}, {"text": "in"}, {"text": "the"}, {"text": "late"}, {"text": "1970s"}, {"text": "."}, {"text": "Deregulation"}, {"text": "has"}, {"text": "effectively"}, {"text": "removed"}, {"text": "all"}, {"text": "restrictions"}, {"text": "on"}, {"text": "what"}, {"text": "banks"}, {"text": "can"}, {"text": "pay"}, {"text": "*T*-201"}, {"text": "for"}, {"text": "deposits"}, {"text": ","}, {"text": "as"}, {"text": "well"}, {"text": "as"}, {"text": "opened"}, {"text": "up"}, {"text": "the"}, {"text": "field"}, {"text": "for"}, {"text": "new"}, {"text": "products"}, {"text": "such"}, {"text": "as"}, {"text": "high-rate"}, {"text": "CDs"}, {"text": "."}, {"text": "Where"}, {"text": "a"}, {"text": "bank"}, {"text": "once"}, {"text": "offered"}, {"text": "a"}, {"text": "standard"}, {"text": "passbook"}, {"text": "savings"}, {"text": "account"}, {"text": "*T*-2"}, {"text": ","}, {"text": "it"}, {"text": "began"}, {"text": "*-1"}, {"text": "offering"}, {"text": "money-market"}, {"text": "accounts"}, {"text": ","}, {"text": "certificates"}, {"text": "of"}, {"text": "deposit"}, {"text": "and"}, {"text": "interest-bearing"}, {"text": "checking"}, {"text": ","}, {"text": "and"}, {"text": "staggering"}, {"text": "rates"}, {"text": "based"}, {"text": "on"}, {"text": "the"}, {"text": "size"}, {"text": "of"}, {"text": "deposits"}, {"text": "."}, {"text": "The"}, {"text": "competition"}, {"text": "has"}, {"text": "grown"}, {"text": "more"}, {"text": "intense"}, {"text": "as"}, {"text": "bigger"}, {"text": "banks"}, {"text": "such"}, {"text": "as"}, {"text": "Norwest"}, {"text": "Corp."}, {"text": "of"}, {"text": "Minneapolis"}, {"text": "and"}, {"text": "Chemical"}, {"text": "Banking"}, {"text": "Corp."}, {"text": "of"}, {"text": "New"}, {"text": "York"}, {"text": "extend"}, {"text": "their"}, {"text": "market-share"}, {"text": "battles"}, {"text": "into"}, {"text": "small"}, {"text": "towns"}, {"text": "across"}, {"text": "the"}, {"text": "nation"}, {"text": "."}, {"text": "``"}, {"text": "Today"}, {"text": ","}, {"text": "a"}, {"text": "banker"}, {"text": "is"}, {"text": "worrying"}, {"text": "about"}, {"text": "local"}, {"text": ","}, {"text": "regional"}, {"text": "and"}, {"text": "money-center"}, {"text": "-LCB-"}, {"text": "banks"}, {"text": "-RCB-"}, {"text": ","}, {"text": "as"}, {"text": "well"}, {"text": "as"}, {"text": "thrifts"}, {"text": "and"}, {"text": "credit"}, {"text": "unions"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "Ms."}, {"text": "Moore"}, {"text": "at"}, {"text": "Synergistics"}, {"text": "Research"}, {"text": "."}, {"text": "``"}, {"text": "So"}, {"text": "people"}, {"text": "who"}, {"text": "*T*-202"}, {"text": "were"}, {"text": "n't"}, {"text": "even"}, {"text": "thinking"}, {"text": "about"}, {"text": "targeting"}, {"text": "10"}, {"text": "years"}, {"text": "ago"}, {"text": "are"}, {"text": "scrambling"}, {"text": "*-1"}, {"text": "to"}, {"text": "define"}, {"text": "their"}, {"text": "customer"}, {"text": "base"}, {"text": "."}, {"text": "''"}, {"text": "The"}, {"text": "competition"}, {"text": "has"}, {"text": "cultivated"}, {"text": "a"}, {"text": "much"}, {"text": "savvier"}, {"text": "consumer"}, {"text": "."}, {"text": "``"}, {"text": "The"}, {"text": "average"}, {"text": "household"}, {"text": "will"}, {"text": "spread"}, {"text": "19"}, {"text": "accounts"}, {"text": "over"}, {"text": "a"}, {"text": "dozen"}, {"text": "financial"}, {"text": "institutions"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "Michael"}, {"text": "P."}, {"text": "Sullivan"}, {"text": ","}, {"text": "who"}, {"text": "*T*-203"}, {"text": "runs"}, {"text": "his"}, {"text": "own"}, {"text": "bank"}, {"text": "consulting"}, {"text": "firm"}, {"text": "in"}, {"text": "Charlotte"}, {"text": ","}, {"text": "N.C"}, {"text": "."}, {"text": "``"}, {"text": "This"}, {"text": "much"}, {"text": "fragmentation"}, {"text": "makes"}, {"text": "*"}, {"text": "attracting"}, {"text": "and"}, {"text": "keeping"}, {"text": "today"}, {"text": "'s"}, {"text": "rate-sensitive"}, {"text": "customers"}, {"text": "costly"}, {"text": "."}, {"text": "''"}, {"text": "Packages"}, {"text": "encourage"}, {"text": "loyalty"}, {"text": "by"}, {"text": "*-1"}, {"text": "rewarding"}, {"text": "customers"}, {"text": "for"}, {"text": "*"}, {"text": "doing"}, {"text": "the"}, {"text": "bulk"}, {"text": "of"}, {"text": "their"}, {"text": "banking"}, {"text": "in"}, {"text": "one"}, {"text": "place"}, {"text": "."}, {"text": "For"}, {"text": "their"}, {"text": "troubles"}, {"text": ","}, {"text": "the"}, {"text": "banks"}, {"text": "get"}, {"text": "a"}, {"text": "larger"}, {"text": "captive"}, {"text": "audience"}, {"text": "that"}, {"text": "*T*-204"}, {"text": "is"}, {"text": "less"}, {"text": "likely"}, {"text": "*-1"}, {"text": "to"}, {"text": "move"}, {"text": "at"}, {"text": "the"}, {"text": "drop"}, {"text": "of"}, {"text": "a"}, {"text": "rate"}, {"text": "."}, {"text": "The"}, {"text": "more"}, {"text": "accounts"}, {"text": "0"}, {"text": "customers"}, {"text": "have"}, {"text": "*T*-1"}, {"text": ","}, {"text": "Mr."}, {"text": "Sullivan"}, {"text": "says"}, {"text": "0"}, {"text": "*T*-2"}, {"text": ","}, {"text": "the"}, {"text": "more"}, {"text": "likely"}, {"text": "they"}, {"text": "are"}, {"text": "*-3"}, {"text": "to"}, {"text": "be"}, {"text": "attracted"}, {"text": "*-123"}, {"text": "to"}, {"text": "a"}, {"text": "package"}, {"text": "--"}, {"text": "and"}, {"text": "*-3"}, {"text": "to"}, {"text": "be"}, {"text": "loyal"}, {"text": "to"}, {"text": "the"}, {"text": "bank"}, {"text": "that"}, {"text": "*T*-205"}, {"text": "offers"}, {"text": "it"}, {"text": "."}, {"text": "That"}, {"text": "can"}, {"text": "pay"}, {"text": "off"}, {"text": "down"}, {"text": "the"}, {"text": "road"}, {"text": "as"}, {"text": "customers"}, {"text": ","}, {"text": "especially"}, {"text": "the"}, {"text": "younger"}, {"text": "ones"}, {"text": ","}, {"text": "change"}, {"text": "from"}, {"text": "borrowers"}, {"text": "to"}, {"text": "savers\\/investors"}, {"text": "."}, {"text": "Packaging"}, {"text": "has"}, {"text": "some"}, {"text": "drawbacks"}, {"text": "."}, {"text": "The"}, {"text": "additional"}, {"text": "technology"}, {"text": ","}, {"text": "personnel"}, {"text": "training"}, {"text": "and"}, {"text": "promotional"}, {"text": "effort"}, {"text": "can"}, {"text": "be"}, {"text": "expensive"}, {"text": "."}, {"text": "Chemical"}, {"text": "Bank"}, {"text": "spent"}, {"text": "more"}, {"text": "than"}, {"text": "$"}, {"text": "50"}, {"text": "million"}, {"text": "*U*"}, {"text": "*-1"}, {"text": "to"}, {"text": "introduce"}, {"text": "its"}, {"text": "ChemPlus"}, {"text": "line"}, {"text": ","}, {"text": "several"}, {"text": "packages"}, {"text": "aimed"}, {"text": "*"}, {"text": "at"}, {"text": "different"}, {"text": "segments"}, {"text": ","}, {"text": "in"}, {"text": "1986"}, {"text": ","}, {"text": "according"}, {"text": "to"}, {"text": "Thomas"}, {"text": "Jacob"}, {"text": ","}, {"text": "senior"}, {"text": "vice"}, {"text": "president"}, {"text": "of"}, {"text": "marketing"}, {"text": "."}, {"text": "``"}, {"text": "It"}, {"text": "*EXP*-1"}, {"text": "'s"}, {"text": "not"}, {"text": "easy"}, {"text": "*"}, {"text": "to"}, {"text": "roll"}, {"text": "out"}, {"text": "something"}, {"text": "that"}, {"text": "comprehensive"}, {"text": ","}, {"text": "and"}, {"text": "make"}, {"text": "it"}, {"text": "pay"}, {"text": ","}, {"text": "''"}, {"text": "Mr."}, {"text": "Jacob"}, {"text": "says"}, {"text": "*T*-2"}, {"text": "."}, {"text": "Still"}, {"text": ","}, {"text": "bankers"}, {"text": "expect"}, {"text": "packaging"}, {"text": "to"}, {"text": "flourish"}, {"text": ","}, {"text": "primarily"}, {"text": "because"}, {"text": "more"}, {"text": "customers"}, {"text": "are"}, {"text": "demanding"}, {"text": "that"}, {"text": "financial"}, {"text": "services"}, {"text": "be"}, {"text": "tailored"}, {"text": "*-124"}, {"text": "to"}, {"text": "their"}, {"text": "needs"}, {"text": "."}, {"text": "``"}, {"text": "These"}, {"text": "days"}, {"text": ","}, {"text": "banking"}, {"text": "customers"}, {"text": "walk"}, {"text": "in"}, {"text": "the"}, {"text": "door"}, {"text": "*-1"}, {"text": "expecting"}, {"text": "you"}, {"text": "to"}, {"text": "have"}, {"text": "a"}, {"text": "package"}, {"text": "especially"}, {"text": "for"}, {"text": "them"}, {"text": ","}, {"text": "''"}, {"text": "Ms."}, {"text": "Moore"}, {"text": "says"}, {"text": "*T*-2"}, {"text": "."}, {"text": "Some"}, {"text": "banks"}, {"text": "are"}, {"text": "already"}, {"text": "moving"}, {"text": "in"}, {"text": "that"}, {"text": "direction"}, {"text": ","}, {"text": "according"}, {"text": "to"}, {"text": "Alvin"}, {"text": "T."}, {"text": "Sale"}, {"text": ","}, {"text": "marketing"}, {"text": "director"}, {"text": "at"}, {"text": "First"}, {"text": "Union"}, {"text": "Corp."}, {"text": "in"}, {"text": "Charlotte"}, {"text": "."}, {"text": "First"}, {"text": "Union"}, {"text": ","}, {"text": "he"}, {"text": "says"}, {"text": "0"}, {"text": "*T*-1"}, {"text": ","}, {"text": "now"}, {"text": "has"}, {"text": "packages"}, {"text": "for"}, {"text": "seven"}, {"text": "customer"}, {"text": "groups"}, {"text": "."}, {"text": "Soon"}, {"text": ","}, {"text": "it"}, {"text": "will"}, {"text": "split"}, {"text": "those"}, {"text": "into"}, {"text": "30"}, {"text": "."}, {"text": "Says"}, {"text": "*ICH*-1"}, {"text": "Mr."}, {"text": "Sale"}, {"text": ":"}, {"text": "``"}, {"text": "I"}, {"text": "think"}, {"text": "0"}, {"text": "more"}, {"text": "banks"}, {"text": "are"}, {"text": "starting"}, {"text": "*-2"}, {"text": "to"}, {"text": "realize"}, {"text": "that"}, {"text": "we"}, {"text": "have"}, {"text": "*-3"}, {"text": "to"}, {"text": "be"}, {"text": "more"}, {"text": "like"}, {"text": "the"}, {"text": "department"}, {"text": "store"}, {"text": ","}, {"text": "not"}, {"text": "the"}, {"text": "boutique"}, {"text": "."}, {"text": "''"}, {"text": "IRAs"}, {"text": "."}, {"text": "SHAREDATA"}, {"text": "Inc."}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "will"}, {"text": "amend"}, {"text": "a"}, {"text": "registration"}, {"text": "statement"}, {"text": "filed"}, {"text": "*"}, {"text": "with"}, {"text": "the"}, {"text": "Securities"}, {"text": "and"}, {"text": "Exchange"}, {"text": "Commission"}, {"text": "*-1"}, {"text": "to"}, {"text": "delete"}, {"text": "a"}, {"text": "plan"}, {"text": "*"}, {"text": "to"}, {"text": "sell"}, {"text": "500,000"}, {"text": "newly"}, {"text": "issued"}, {"text": "common"}, {"text": "shares"}, {"text": "."}, {"text": "The"}, {"text": "Chandler"}, {"text": ","}, {"text": "Ariz."}, {"text": ","}, {"text": "company"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "will"}, {"text": "resubmit"}, {"text": "the"}, {"text": "registration"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "to"}, {"text": "cover"}, {"text": "only"}, {"text": "the"}, {"text": "2.3"}, {"text": "million"}, {"text": "warrants"}, {"text": ","}, {"text": "each"}, {"text": "exercisable"}, {"text": "for"}, {"text": "the"}, {"text": "purchase"}, {"text": "of"}, {"text": "one"}, {"text": "common"}, {"text": "share"}, {"text": "."}, {"text": "Currently"}, {"text": ","}, {"text": "ShareData"}, {"text": "has"}, {"text": "about"}, {"text": "4.1"}, {"text": "million"}, {"text": "common"}, {"text": "shares"}, {"text": "outstanding"}, {"text": "."}, {"text": "ShareData"}, {"text": "develops"}, {"text": "and"}, {"text": "markets"}, {"text": "low-cost"}, {"text": "software"}, {"text": ","}, {"text": "peripheral"}, {"text": "equipment"}, {"text": "and"}, {"text": "accessories"}, {"text": "for"}, {"text": "computers"}, {"text": "."}, {"text": "Five"}, {"text": "things"}, {"text": "0"}, {"text": "you"}, {"text": "can"}, {"text": "do"}, {"text": "*T*-1"}, {"text": "for"}, {"text": "$"}, {"text": "15,000"}, {"text": "*U*"}, {"text": "or"}, {"text": "less"}, {"text": ":"}, {"text": "1"}, {"text": "."}, {"text": "*"}, {"text": "Buy"}, {"text": "a"}, {"text": "new"}, {"text": "Chevrolet"}, {"text": "."}, {"text": "2"}, {"text": "."}, {"text": "*"}, {"text": "Take"}, {"text": "a"}, {"text": "Hawaiian"}, {"text": "vacation"}, {"text": "."}, {"text": "3"}, {"text": "."}, {"text": "*"}, {"text": "Send"}, {"text": "your"}, {"text": "child"}, {"text": "to"}, {"text": "a"}, {"text": "university"}, {"text": "."}, {"text": "4"}, {"text": "."}, {"text": "*"}, {"text": "Buy"}, {"text": "a"}, {"text": "diamond"}, {"text": "necklace"}, {"text": "."}, {"text": "5"}, {"text": "."}, {"text": "*"}, {"text": "Make"}, {"text": "a"}, {"text": "lasting"}, {"text": "difference"}, {"text": "in"}, {"text": "the"}, {"text": "regulatory"}, {"text": "life"}, {"text": "of"}, {"text": "an"}, {"text": "American"}, {"text": "savings-and-loan"}, {"text": "association"}, {"text": "through"}, {"text": "the"}, {"text": "Foster"}, {"text": "Corporate"}, {"text": "Parents"}, {"text": "Plan"}, {"text": "."}, {"text": "Americans"}, {"text": "today"}, {"text": "spend"}, {"text": "$"}, {"text": "15,000"}, {"text": "*U*"}, {"text": "like"}, {"text": "pocket"}, {"text": "change"}, {"text": "--"}, {"text": "they"}, {"text": "do"}, {"text": "n't"}, {"text": "think"}, {"text": "much"}, {"text": "about"}, {"text": "it"}, {"text": "."}, {"text": "But"}, {"text": "for"}, {"text": "an"}, {"text": "ailing"}, {"text": "savings-and-loan"}, {"text": "association"}, {"text": "--"}, {"text": "teetering"}, {"text": "on"}, {"text": "insolvency"}, {"text": "--"}, {"text": "it"}, {"text": "can"}, {"text": "lead"}, {"text": "to"}, {"text": "safety"}, {"text": "from"}, {"text": "imminent"}, {"text": "demise"}, {"text": "and"}, {"text": "to"}, {"text": "a"}, {"text": "future"}, {"text": "full"}, {"text": "of"}, {"text": "promise"}, {"text": "."}, {"text": "Your"}, {"text": "$"}, {"text": "15,000"}, {"text": "*U*"}, {"text": "will"}, {"text": "help"}, {"text": "*-1"}, {"text": "keep"}, {"text": "a"}, {"text": "needy"}, {"text": "savings"}, {"text": "and"}, {"text": "loan"}, {"text": "solvent"}, {"text": "--"}, {"text": "and"}, {"text": "out"}, {"text": "of"}, {"text": "the"}, {"text": "federal"}, {"text": "budget"}, {"text": "deficit"}, {"text": "."}, {"text": "As"}, {"text": "a"}, {"text": "Foster"}, {"text": "Corporate"}, {"text": "Parent"}, {"text": ","}, {"text": "you"}, {"text": "'ll"}, {"text": "be"}, {"text": "helping"}, {"text": "a"}, {"text": "neighborhood"}, {"text": "S&L"}, {"text": "in"}, {"text": "areas"}, {"text": "crucial"}, {"text": "to"}, {"text": "its"}, {"text": "survival"}, {"text": "."}, {"text": "Like"}, {"text": "healthy"}, {"text": "regulatory"}, {"text": "capital"}, {"text": "."}, {"text": "A"}, {"text": "steady"}, {"text": "deposit"}, {"text": "base"}, {"text": "."}, {"text": "Performing"}, {"text": "loans"}, {"text": "."}, {"text": "At"}, {"text": "the"}, {"text": "same"}, {"text": "time"}, {"text": ","}, {"text": "you"}, {"text": "'ll"}, {"text": "give"}, {"text": "your"}, {"text": "Foster"}, {"text": "Savings"}, {"text": "Institution"}, {"text": "the"}, {"text": "gift"}, {"text": "of"}, {"text": "hope"}, {"text": "and"}, {"text": "freedom"}, {"text": "from"}, {"text": "the"}, {"text": "federal"}, {"text": "regulators"}, {"text": "who"}, {"text": "*T*-206"}, {"text": "want"}, {"text": "*-1"}, {"text": "to"}, {"text": "close"}, {"text": "its"}, {"text": "doors"}, {"text": "--"}, {"text": "for"}, {"text": "good"}, {"text": "."}, {"text": "As"}, {"text": "a"}, {"text": "Foster"}, {"text": "Corporate"}, {"text": "Parent"}, {"text": ","}, {"text": "you"}, {"text": "will"}, {"text": "experience"}, {"text": "the"}, {"text": "same"}, {"text": "joy"}, {"text": "felt"}, {"text": "*"}, {"text": "by"}, {"text": "Robert"}, {"text": "Bass"}, {"text": ","}, {"text": "Lewis"}, {"text": "Ranieri"}, {"text": ","}, {"text": "William"}, {"text": "Simon"}, {"text": "and"}, {"text": "others"}, {"text": ","}, {"text": "who"}, {"text": "*T*-207"}, {"text": "find"}, {"text": "ways"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "help"}, {"text": "troubled"}, {"text": "savings"}, {"text": "institutions"}, {"text": "and"}, {"text": "their"}, {"text": "employees"}, {"text": "help"}, {"text": "themselves"}, {"text": "*T*-1"}, {"text": "."}, {"text": "That"}, {"text": "builds"}, {"text": "confidence"}, {"text": ","}, {"text": "self"}, {"text": "sufficiency"}, {"text": ","}, {"text": "not"}, {"text": "to"}, {"text": "mention"}, {"text": "critical"}, {"text": "regulatory"}, {"text": "net"}, {"text": "worth"}, {"text": "."}, {"text": "*"}, {"text": "Do"}, {"text": "n't"}, {"text": "wait"}, {"text": "--"}, {"text": "a"}, {"text": "savings"}, {"text": "institution"}, {"text": "needs"}, {"text": "your"}, {"text": "help"}, {"text": "now"}, {"text": "!"}, {"text": "Every"}, {"text": "day"}, {"text": "0"}, {"text": "you"}, {"text": "delay"}, {"text": "*T*-1"}, {"text": ","}, {"text": "a"}, {"text": "savings"}, {"text": "institution"}, {"text": "'s"}, {"text": "health"}, {"text": "--"}, {"text": "and"}, {"text": "the"}, {"text": "federal"}, {"text": "budget"}, {"text": "deficit"}, {"text": "--"}, {"text": "grows"}, {"text": "worse"}, {"text": "."}, {"text": "*"}, {"text": "Think"}, {"text": "about"}, {"text": "the"}, {"text": "good"}, {"text": "0"}, {"text": "you"}, {"text": "can"}, {"text": "do"}, {"text": "*T*-1"}, {"text": "for"}, {"text": "just"}, {"text": "$"}, {"text": "15,000"}, {"text": "*U*"}, {"text": "a"}, {"text": "month"}, {"text": ","}, {"text": "about"}, {"text": "the"}, {"text": "cost"}, {"text": "of"}, {"text": "a"}, {"text": "mid-size"}, {"text": "Chevrolet"}, {"text": "or"}, {"text": "two"}, {"text": "semesters"}, {"text": "at"}, {"text": "a"}, {"text": "state"}, {"text": "university"}, {"text": "."}, {"text": "Then"}, {"text": "*"}, {"text": "send"}, {"text": "your"}, {"text": "support"}, {"text": "to"}, {"text": "a"}, {"text": "savings"}, {"text": "institution"}, {"text": "that"}, {"text": "*T*-208"}, {"text": "has"}, {"text": "taken"}, {"text": "a"}, {"text": "bad"}, {"text": "rap"}, {"text": "in"}, {"text": "the"}, {"text": "press"}, {"text": "and"}, {"text": "on"}, {"text": "its"}, {"text": "bottom"}, {"text": "line"}, {"text": "."}, {"text": "Every"}, {"text": "$"}, {"text": "15,000"}, {"text": "*U*"}, {"text": "0"}, {"text": "you"}, {"text": "send"}, {"text": "*T*-1"}, {"text": "will"}, {"text": "go"}, {"text": "a"}, {"text": "long"}, {"text": "way"}, {"text": "*"}, {"text": "to"}, {"text": "boost"}, {"text": "sagging"}, {"text": "net"}, {"text": "worth"}, {"text": "and"}, {"text": "employee"}, {"text": "morale"}, {"text": "--"}, {"text": "and"}, {"text": "keep"}, {"text": "your"}, {"text": "Foster"}, {"text": "Savings"}, {"text": "Institution"}, {"text": "off"}, {"text": "the"}, {"text": "federal"}, {"text": "budget"}, {"text": "deficit"}, {"text": "!"}, {"text": "Mr."}, {"text": "Baris"}, {"text": "is"}, {"text": "a"}, {"text": "lawyer"}, {"text": "in"}, {"text": "New"}, {"text": "York"}, {"text": "."}, {"text": "The"}, {"text": "Chicago"}, {"text": "Mercantile"}, {"text": "Exchange"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "plans"}, {"text": "*-1"}, {"text": "to"}, {"text": "institute"}, {"text": "an"}, {"text": "additional"}, {"text": "``"}, {"text": "circuit"}, {"text": "breaker"}, {"text": "''"}, {"text": "aimed"}, {"text": "*"}, {"text": "at"}, {"text": "*"}, {"text": "stemming"}, {"text": "market"}, {"text": "slides"}, {"text": "."}, {"text": "Separately"}, {"text": ","}, {"text": "John"}, {"text": "Phelan"}, {"text": "told"}, {"text": "a"}, {"text": "closed"}, {"text": "House"}, {"text": "subcommittee"}, {"text": "meeting"}, {"text": "in"}, {"text": "Washington"}, {"text": "that"}, {"text": "he"}, {"text": "would"}, {"text": "support"}, {"text": "Securities"}, {"text": "and"}, {"text": "Exchange"}, {"text": "Commission"}, {"text": "halts"}, {"text": "of"}, {"text": "program"}, {"text": "trading"}, {"text": "during"}, {"text": "market"}, {"text": "emergencies"}, {"text": "."}, {"text": "But"}, {"text": "the"}, {"text": "New"}, {"text": "York"}, {"text": "Stock"}, {"text": "Exchange"}, {"text": "chairman"}, {"text": "said"}, {"text": "0"}, {"text": "he"}, {"text": "does"}, {"text": "n't"}, {"text": "support"}, {"text": "*"}, {"text": "reinstating"}, {"text": "a"}, {"text": "``"}, {"text": "collar"}, {"text": "''"}, {"text": "on"}, {"text": "program"}, {"text": "trading"}, {"text": ","}, {"text": "*-1"}, {"text": "arguing"}, {"text": "that"}, {"text": "firms"}, {"text": "could"}, {"text": "get"}, {"text": "around"}, {"text": "such"}, {"text": "a"}, {"text": "limit"}, {"text": "."}, {"text": "The"}, {"text": "Chicago"}, {"text": "Merc"}, {"text": "said"}, {"text": "0"}, {"text": "a"}, {"text": "new"}, {"text": "one-hour"}, {"text": "price"}, {"text": "limit"}, {"text": "would"}, {"text": "take"}, {"text": "effect"}, {"text": "in"}, {"text": "its"}, {"text": "Standard"}, {"text": "&"}, {"text": "Poor"}, {"text": "'s"}, {"text": "500"}, {"text": "stock-index"}, {"text": "futures"}, {"text": "pit"}, {"text": "once"}, {"text": "S&P"}, {"text": "500"}, {"text": "futures"}, {"text": "fell"}, {"text": "20"}, {"text": "index"}, {"text": "points"}, {"text": "--"}, {"text": "the"}, {"text": "equivalent"}, {"text": "of"}, {"text": "about"}, {"text": "a"}, {"text": "150-point"}, {"text": "drop"}, {"text": "in"}, {"text": "the"}, {"text": "Dow"}, {"text": "Jones"}, {"text": "Industrial"}, {"text": "Average"}, {"text": "."}, {"text": "If"}, {"text": "the"}, {"text": "20-point"}, {"text": "limit"}, {"text": "is"}, {"text": "triggered"}, {"text": "*-125"}, {"text": "after"}, {"text": "1:30"}, {"text": "p.m"}, {"text": "."}, {"text": "Chicago"}, {"text": "time"}, {"text": ","}, {"text": "it"}, {"text": "would"}, {"text": "remain"}, {"text": "in"}, {"text": "effect"}, {"text": "until"}, {"text": "the"}, {"text": "normal"}, {"text": "close"}, {"text": "of"}, {"text": "trading"}, {"text": "at"}, {"text": "3:15"}, {"text": "p.m"}, {"text": "."}, {"text": "With"}, {"text": "the"}, {"text": "limit"}, {"text": "in"}, {"text": "effect"}, {"text": ","}, {"text": "members"}, {"text": "would"}, {"text": "be"}, {"text": "able"}, {"text": "*-1"}, {"text": "to"}, {"text": "execute"}, {"text": "trades"}, {"text": "at"}, {"text": "the"}, {"text": "limit"}, {"text": "price"}, {"text": "or"}, {"text": "at"}, {"text": "higher"}, {"text": "prices"}, {"text": ","}, {"text": "but"}, {"text": "not"}, {"text": "below"}, {"text": "it"}, {"text": "."}, {"text": "The"}, {"text": "exchange"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "decided"}, {"text": "0"}, {"text": "a"}, {"text": "new"}, {"text": "circuit"}, {"text": "breaker"}, {"text": "was"}, {"text": "needed"}, {"text": "*-126"}, {"text": "following"}, {"text": "a"}, {"text": "review"}, {"text": "of"}, {"text": "the"}, {"text": "tumultuous"}, {"text": "trading"}, {"text": "in"}, {"text": "stocks"}, {"text": "and"}, {"text": "stock-index"}, {"text": "futures"}, {"text": "on"}, {"text": "Friday"}, {"text": "Oct."}, {"text": "13"}, {"text": ","}, {"text": "when"}, {"text": "the"}, {"text": "Dow"}, {"text": "Jones"}, {"text": "industrials"}, {"text": "plunged"}, {"text": "190"}, {"text": "points"}, {"text": "*T*-1"}, {"text": "and"}, {"text": "stock-index"}, {"text": "futures"}, {"text": "prices"}, {"text": "skidded"}, {"text": "as"}, {"text": "well"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Late"}, {"text": "that"}, {"text": "afternoon"}, {"text": "the"}, {"text": "S&P"}, {"text": "500"}, {"text": "stock-index"}, {"text": "futures"}, {"text": "contract"}, {"text": "fell"}, {"text": "a"}, {"text": "total"}, {"text": "of"}, {"text": "30"}, {"text": "index"}, {"text": "points"}, {"text": ","}, {"text": "*-1"}, {"text": "hitting"}, {"text": "a"}, {"text": "Merc"}, {"text": "circuit"}, {"text": "breaker"}, {"text": "limit"}, {"text": "that"}, {"text": "*T*-210"}, {"text": "remained"}, {"text": "in"}, {"text": "effect"}, {"text": "for"}, {"text": "the"}, {"text": "rest"}, {"text": "of"}, {"text": "the"}, {"text": "trading"}, {"text": "session"}, {"text": "."}, {"text": "The"}, {"text": "Merc"}, {"text": "said"}, {"text": "that"}, {"text": "its"}, {"text": "existing"}, {"text": "30-minute"}, {"text": ","}, {"text": "12-point"}, {"text": "limit"}, {"text": "on"}, {"text": "S&P"}, {"text": "500"}, {"text": "stock-index"}, {"text": "futures"}, {"text": "trading"}, {"text": "-LRB-"}, {"text": "equal"}, {"text": "to"}, {"text": "about"}, {"text": "100"}, {"text": "points"}, {"text": "on"}, {"text": "the"}, {"text": "Dow"}, {"text": "Jones"}, {"text": "industrials"}, {"text": "-RRB-"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "was"}, {"text": "triggered"}, {"text": "*-127"}, {"text": "Oct."}, {"text": "13"}, {"text": ","}, {"text": "will"}, {"text": "remain"}, {"text": "in"}, {"text": "effect"}, {"text": "."}, {"text": "Leo"}, {"text": "Melamed"}, {"text": ","}, {"text": "Merc"}, {"text": "executive"}, {"text": "committee"}, {"text": "chairman"}, {"text": ","}, {"text": "said"}, {"text": "that"}, {"text": "the"}, {"text": "12-point"}, {"text": "limit"}, {"text": "appeared"}, {"text": "*-1"}, {"text": "to"}, {"text": "lessen"}, {"text": "the"}, {"text": "selling"}, {"text": "panic"}, {"text": "Oct."}, {"text": "13"}, {"text": "."}, {"text": "But"}, {"text": "when"}, {"text": "the"}, {"text": "contract"}, {"text": "reopened"}, {"text": "*T*-1"}, {"text": ","}, {"text": "the"}, {"text": "subsequent"}, {"text": "flood"}, {"text": "of"}, {"text": "sell"}, {"text": "orders"}, {"text": "that"}, {"text": "*T*-211"}, {"text": "quickly"}, {"text": "knocked"}, {"text": "the"}, {"text": "contract"}, {"text": "down"}, {"text": "to"}, {"text": "the"}, {"text": "30-point"}, {"text": "limit"}, {"text": "indicated"}, {"text": "that"}, {"text": "the"}, {"text": "intermediate"}, {"text": "limit"}, {"text": "of"}, {"text": "20"}, {"text": "points"}, {"text": "was"}, {"text": "needed"}, {"text": "*-128"}, {"text": "*-128"}, {"text": "to"}, {"text": "help"}, {"text": "keep"}, {"text": "stock"}, {"text": "and"}, {"text": "stock-index"}, {"text": "futures"}, {"text": "prices"}, {"text": "synchronized"}, {"text": "."}, {"text": "Several"}, {"text": "traders"}, {"text": "maintained"}, {"text": "that"}, {"text": "the"}, {"text": "Merc"}, {"text": "'s"}, {"text": "12-point"}, {"text": "circuit-breaker"}, {"text": "aggravated"}, {"text": "the"}, {"text": "market"}, {"text": "slide"}, {"text": "Oct."}, {"text": "13"}, {"text": "by"}, {"text": "*-1"}, {"text": "directing"}, {"text": "additional"}, {"text": "selling"}, {"text": "pressure"}, {"text": "to"}, {"text": "the"}, {"text": "floor"}, {"text": "of"}, {"text": "the"}, {"text": "New"}, {"text": "York"}, {"text": "Stock"}, {"text": "Exchange"}, {"text": "."}, {"text": "All"}, {"text": "of"}, {"text": "the"}, {"text": "changes"}, {"text": "require"}, {"text": "regulatory"}, {"text": "approval"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "is"}, {"text": "expected"}, {"text": "*-129"}, {"text": "shortly"}, {"text": "."}, {"text": "The"}, {"text": "exchange"}, {"text": "also"}, {"text": "said"}, {"text": "that"}, {"text": "the"}, {"text": "30-point"}, {"text": "circuit"}, {"text": "breaker"}, {"text": ","}, {"text": "which"}, {"text": "*T*-212"}, {"text": "currently"}, {"text": "provides"}, {"text": "only"}, {"text": "a"}, {"text": "one-hour"}, {"text": "respite"}, {"text": "during"}, {"text": "market"}, {"text": "sell-offs"}, {"text": ","}, {"text": "will"}, {"text": "become"}, {"text": "the"}, {"text": "maximum"}, {"text": "one-day"}, {"text": "limit"}, {"text": "for"}, {"text": "the"}, {"text": "S&P"}, {"text": "500"}, {"text": "stock-index"}, {"text": "futures"}, {"text": "contract"}, {"text": ";"}, {"text": "the"}, {"text": "one-day"}, {"text": "limit"}, {"text": "now"}, {"text": "is"}, {"text": "50"}, {"text": "index"}, {"text": "points"}, {"text": "."}, {"text": "A"}, {"text": "final"}, {"text": "modification"}, {"text": "*ICH*-1"}, {"text": "was"}, {"text": "made"}, {"text": "*-130"}, {"text": "to"}, {"text": "the"}, {"text": "five-point"}, {"text": "opening"}, {"text": "limit"}, {"text": "for"}, {"text": "the"}, {"text": "contract"}, {"text": "."}, {"text": "The"}, {"text": "Merc"}, {"text": "said"}, {"text": "0"}, {"text": "that"}, {"text": "five-point"}, {"text": "limit"}, {"text": "will"}, {"text": "remain"}, {"text": "in"}, {"text": "effect"}, {"text": "for"}, {"text": "the"}, {"text": "first"}, {"text": "10"}, {"text": "minutes"}, {"text": "of"}, {"text": "trading"}, {"text": "."}, {"text": "The"}, {"text": "limit"}, {"text": "lapses"}, {"text": "under"}, {"text": "current"}, {"text": "exchange"}, {"text": "rules"}, {"text": "if"}, {"text": "contracts"}, {"text": "trade"}, {"text": "above"}, {"text": "the"}, {"text": "limit"}, {"text": "price"}, {"text": "during"}, {"text": "the"}, {"text": "opening"}, {"text": "10"}, {"text": "minutes"}, {"text": "of"}, {"text": "trading"}, {"text": "."}, {"text": "In"}, {"text": "Washington"}, {"text": ","}, {"text": "House"}, {"text": "aides"}, {"text": "said"}, {"text": "0"}, {"text": "Mr."}, {"text": "Phelan"}, {"text": "told"}, {"text": "congressmen"}, {"text": "that"}, {"text": "the"}, {"text": "collar"}, {"text": ","}, {"text": "which"}, {"text": "*T*-213"}, {"text": "banned"}, {"text": "program"}, {"text": "trades"}, {"text": "through"}, {"text": "the"}, {"text": "Big"}, {"text": "Board"}, {"text": "'s"}, {"text": "computer"}, {"text": "when"}, {"text": "the"}, {"text": "Dow"}, {"text": "Jones"}, {"text": "Industrial"}, {"text": "Average"}, {"text": "moved"}, {"text": "50"}, {"text": "points"}, {"text": "*T*-1"}, {"text": ","}, {"text": "did"}, {"text": "n't"}, {"text": "work"}, {"text": "well"}, {"text": "."}, {"text": "He"}, {"text": "said"}, {"text": "that"}, {"text": "firms"}, {"text": "could"}, {"text": "get"}, {"text": "around"}, {"text": "the"}, {"text": "collar"}, {"text": "by"}, {"text": "*"}, {"text": "executing"}, {"text": "trades"}, {"text": "manually"}, {"text": "."}, {"text": "In"}, {"text": "a"}, {"text": "post-hearing"}, {"text": "news"}, {"text": "conference"}, {"text": ","}, {"text": "Mr."}, {"text": "Phelan"}, {"text": ","}, {"text": "who"}, {"text": "*T*-214"}, {"text": "has"}, {"text": "publicly"}, {"text": "expressed"}, {"text": "concern"}, {"text": "about"}, {"text": "market"}, {"text": "volatility"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "he"}, {"text": "told"}, {"text": "the"}, {"text": "House"}, {"text": "finance"}, {"text": "and"}, {"text": "telecommunications"}, {"text": "subcommittee"}, {"text": "that"}, {"text": "he"}, {"text": "would"}, {"text": "support"}, {"text": "the"}, {"text": "program-trading"}, {"text": "halt"}, {"text": "proposal"}, {"text": "``"}, {"text": "*"}, {"text": "providing"}, {"text": "0"}, {"text": "the"}, {"text": "SEC"}, {"text": "would"}, {"text": "be"}, {"text": "comfortable"}, {"text": "with"}, {"text": "the"}, {"text": "language"}, {"text": "''"}, {"text": "in"}, {"text": "a"}, {"text": "bill"}, {"text": "."}, {"text": "The"}, {"text": "program-trading"}, {"text": "issue"}, {"text": "is"}, {"text": "heating"}, {"text": "up"}, {"text": "on"}, {"text": "Capitol"}, {"text": "Hill"}, {"text": "as"}, {"text": "it"}, {"text": "is"}, {"text": "*?*"}, {"text": "on"}, {"text": "Wall"}, {"text": "Street"}, {"text": ","}, {"text": "and"}, {"text": "several"}, {"text": "legislators"}, {"text": "want"}, {"text": "*-2"}, {"text": "to"}, {"text": "grant"}, {"text": "the"}, {"text": "SEC"}, {"text": "the"}, {"text": "power"}, {"text": "*"}, {"text": "to"}, {"text": "shut"}, {"text": "off"}, {"text": "the"}, {"text": "programs"}, {"text": "when"}, {"text": "trading"}, {"text": "becomes"}, {"text": "too"}, {"text": "volatile"}, {"text": "*T*-3"}, {"text": "."}, {"text": "SEC"}, {"text": "Chairman"}, {"text": "Richard"}, {"text": "Breeden"}, {"text": "has"}, {"text": "said"}, {"text": "0"}, {"text": "he"}, {"text": "would"}, {"text": "be"}, {"text": "willing"}, {"text": "*-1"}, {"text": "to"}, {"text": "consider"}, {"text": "circuit"}, {"text": "breakers"}, {"text": "that"}, {"text": "*T*-215"}, {"text": "have"}, {"text": "preset"}, {"text": "trigger"}, {"text": "points"}, {"text": ","}, {"text": "but"}, {"text": "he"}, {"text": "does"}, {"text": "n't"}, {"text": "want"}, {"text": "discretionary"}, {"text": "power"}, {"text": "*"}, {"text": "to"}, {"text": "stop"}, {"text": "programs"}, {"text": "."}, {"text": "A"}, {"text": "House"}, {"text": "aide"}, {"text": "suggested"}, {"text": "that"}, {"text": "Mr."}, {"text": "Phelan"}, {"text": "was"}, {"text": "so"}, {"text": "``"}, {"text": "vague"}, {"text": "and"}, {"text": "mushy"}, {"text": "''"}, {"text": "that"}, {"text": "it"}, {"text": "was"}, {"text": "the"}, {"text": "kind"}, {"text": "of"}, {"text": "meeting"}, {"text": "where"}, {"text": "people"}, {"text": "of"}, {"text": "all"}, {"text": "viewpoints"}, {"text": "could"}, {"text": "``"}, {"text": "come"}, {"text": "out"}, {"text": "*-2"}, {"text": "feeling"}, {"text": "good"}, {"text": "*T*-1"}, {"text": "."}, {"text": "''"}, {"text": "At"}, {"text": "one"}, {"text": "point"}, {"text": ","}, {"text": "Mr."}, {"text": "Phelan"}, {"text": "angered"}, {"text": "the"}, {"text": "subcommittee"}, {"text": "'s"}, {"text": "chairman"}, {"text": ","}, {"text": "Rep."}, {"text": "Edward"}, {"text": "Markey"}, {"text": "-LRB-"}, {"text": "D."}, {"text": ","}, {"text": "Mass."}, {"text": "-RRB-"}, {"text": ","}, {"text": "by"}, {"text": "*-2"}, {"text": "not"}, {"text": "going"}, {"text": "much"}, {"text": "beyond"}, {"text": "what"}, {"text": "*T*-1"}, {"text": "already"}, {"text": "had"}, {"text": "been"}, {"text": "reported"}, {"text": "*-131"}, {"text": "in"}, {"text": "the"}, {"text": "morning"}, {"text": "newspapers"}, {"text": "."}, {"text": "``"}, {"text": "Markey"}, {"text": "said"}, {"text": "0"}, {"text": "we"}, {"text": "could"}, {"text": "have"}, {"text": "done"}, {"text": "this"}, {"text": "in"}, {"text": "public"}, {"text": "''"}, {"text": "because"}, {"text": "so"}, {"text": "little"}, {"text": "sensitive"}, {"text": "information"}, {"text": "was"}, {"text": "disclosed"}, {"text": "*-132"}, {"text": ","}, {"text": "the"}, {"text": "aide"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Mr."}, {"text": "Phelan"}, {"text": "then"}, {"text": "responded"}, {"text": "that"}, {"text": "he"}, {"text": "would"}, {"text": "have"}, {"text": "been"}, {"text": "happy"}, {"text": "*-1"}, {"text": "just"}, {"text": "writing"}, {"text": "a"}, {"text": "report"}, {"text": "to"}, {"text": "the"}, {"text": "panel"}, {"text": ","}, {"text": "the"}, {"text": "aide"}, {"text": "added"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "."}, {"text": "At"}, {"text": "another"}, {"text": "point"}, {"text": "during"}, {"text": "the"}, {"text": "hearing"}, {"text": ","}, {"text": "Rep."}, {"text": "Markey"}, {"text": "asked"}, {"text": "Mr."}, {"text": "Phelan"}, {"text": "what"}, {"text": "*T*-1"}, {"text": "would"}, {"text": "be"}, {"text": "discussed"}, {"text": "*-133"}, {"text": "at"}, {"text": "a"}, {"text": "New"}, {"text": "York"}, {"text": "exchange"}, {"text": "board"}, {"text": "meeting"}, {"text": "today"}, {"text": "."}, {"text": "Mr."}, {"text": "Phelan"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "Big"}, {"text": "Board"}, {"text": "is"}, {"text": "likely"}, {"text": "*-1"}, {"text": "to"}, {"text": "study"}, {"text": "the"}, {"text": "program-trading"}, {"text": "issue"}, {"text": "."}, {"text": "That"}, {"text": "response"}, {"text": "annoyed"}, {"text": "Rep."}, {"text": "Markey"}, {"text": ","}, {"text": "House"}, {"text": "aides"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": ","}, {"text": "and"}, {"text": "the"}, {"text": "congressman"}, {"text": "snapped"}, {"text": "back"}, {"text": "that"}, {"text": "there"}, {"text": "had"}, {"text": "been"}, {"text": "enough"}, {"text": "studies"}, {"text": "of"}, {"text": "the"}, {"text": "issue"}, {"text": "and"}, {"text": "that"}, {"text": "it"}, {"text": "was"}, {"text": "time"}, {"text": "for"}, {"text": "action"}, {"text": "on"}, {"text": "the"}, {"text": "matter"}, {"text": "."}, {"text": "Fifteen"}, {"text": "of"}, {"text": "the"}, {"text": "26"}, {"text": "subcommittee"}, {"text": "members"}, {"text": "*ICH*-2"}, {"text": "attended"}, {"text": "the"}, {"text": "hearing"}, {"text": ","}, {"text": "most"}, {"text": "notably"}, {"text": "Rep."}, {"text": "John"}, {"text": "Dingell"}, {"text": "-LRB-"}, {"text": "D."}, {"text": ","}, {"text": "Mich."}, {"text": "-RRB-"}, {"text": ","}, {"text": "the"}, {"text": "full"}, {"text": "House"}, {"text": "Energy"}, {"text": "and"}, {"text": "Commerce"}, {"text": "Committee"}, {"text": "chairman"}, {"text": ","}, {"text": "who"}, {"text": "*T*-216"}, {"text": "has"}, {"text": "been"}, {"text": "willing"}, {"text": "*-1"}, {"text": "to"}, {"text": "let"}, {"text": "Mr."}, {"text": "Markey"}, {"text": "carry"}, {"text": "the"}, {"text": "legislation"}, {"text": "in"}, {"text": "recent"}, {"text": "months"}, {"text": "."}, {"text": "Mr."}, {"text": "Dingell"}, {"text": "expressed"}, {"text": "concern"}, {"text": ","}, {"text": "sources"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-2"}, {"text": ","}, {"text": "about"}, {"text": "jurisdictional"}, {"text": "problems"}, {"text": "in"}, {"text": "*"}, {"text": "regulating"}, {"text": "program"}, {"text": "trading"}, {"text": ","}, {"text": "which"}, {"text": "*T*-217"}, {"text": "uses"}, {"text": "futures"}, {"text": "*-1"}, {"text": "to"}, {"text": "offset"}, {"text": "stock"}, {"text": "trades"}, {"text": "."}, {"text": "The"}, {"text": "futures"}, {"text": "industry"}, {"text": "is"}, {"text": "regulated"}, {"text": "*-134"}, {"text": "by"}, {"text": "the"}, {"text": "Commodity"}, {"text": "Futures"}, {"text": "Trading"}, {"text": "Commission"}, {"text": ","}, {"text": "which"}, {"text": "*T*-218"}, {"text": "reports"}, {"text": "to"}, {"text": "the"}, {"text": "Agriculture"}, {"text": "committees"}, {"text": "in"}, {"text": "both"}, {"text": "houses"}, {"text": "."}, {"text": "The"}, {"text": "art"}, {"text": "of"}, {"text": "change-ringing"}, {"text": "is"}, {"text": "peculiar"}, {"text": "to"}, {"text": "the"}, {"text": "English"}, {"text": ","}, {"text": "and"}, {"text": ","}, {"text": "like"}, {"text": "most"}, {"text": "English"}, {"text": "peculiarities"}, {"text": ","}, {"text": "unintelligible"}, {"text": "to"}, {"text": "the"}, {"text": "rest"}, {"text": "of"}, {"text": "the"}, {"text": "world"}, {"text": "."}, {"text": "--"}, {"text": "Dorothy"}, {"text": "L."}, {"text": "Sayers"}, {"text": ","}, {"text": "``"}, {"text": "The"}, {"text": "Nine"}, {"text": "Tailors"}, {"text": "''"}, {"text": "ASLACTON"}, {"text": ","}, {"text": "England"}, {"text": "--"}, {"text": "Of"}, {"text": "all"}, {"text": "scenes"}, {"text": "that"}, {"text": "*T*-219"}, {"text": "evoke"}, {"text": "rural"}, {"text": "England"}, {"text": ","}, {"text": "this"}, {"text": "is"}, {"text": "one"}, {"text": "of"}, {"text": "the"}, {"text": "loveliest"}, {"text": "*T*-2"}, {"text": ":"}, {"text": "An"}, {"text": "ancient"}, {"text": "stone"}, {"text": "church"}, {"text": "stands"}, {"text": "amid"}, {"text": "the"}, {"text": "fields"}, {"text": ","}, {"text": "the"}, {"text": "sound"}, {"text": "of"}, {"text": "bells"}, {"text": "cascading"}, {"text": "from"}, {"text": "its"}, {"text": "tower"}, {"text": ","}, {"text": "*-1"}, {"text": "calling"}, {"text": "the"}, {"text": "faithful"}, {"text": "to"}, {"text": "evensong"}, {"text": "."}, {"text": "The"}, {"text": "parishioners"}, {"text": "of"}, {"text": "St."}, {"text": "Michael"}, {"text": "and"}, {"text": "All"}, {"text": "Angels"}, {"text": "stop"}, {"text": "*-1"}, {"text": "to"}, {"text": "chat"}, {"text": "at"}, {"text": "the"}, {"text": "church"}, {"text": "door"}, {"text": ","}, {"text": "as"}, {"text": "members"}, {"text": "here"}, {"text": "always"}, {"text": "have"}, {"text": "*?*"}, {"text": "."}, {"text": "In"}, {"text": "the"}, {"text": "tower"}, {"text": ","}, {"text": "five"}, {"text": "men"}, {"text": "and"}, {"text": "women"}, {"text": "pull"}, {"text": "rhythmically"}, {"text": "on"}, {"text": "ropes"}, {"text": "attached"}, {"text": "*"}, {"text": "to"}, {"text": "the"}, {"text": "same"}, {"text": "five"}, {"text": "bells"}, {"text": "that"}, {"text": "*T*-220"}, {"text": "first"}, {"text": "sounded"}, {"text": "here"}, {"text": "in"}, {"text": "1614"}, {"text": "."}, {"text": "But"}, {"text": "there"}, {"text": "is"}, {"text": "also"}, {"text": "a"}, {"text": "discordant"}, {"text": ","}, {"text": "modern"}, {"text": "note"}, {"text": "in"}, {"text": "Aslacton"}, {"text": ","}, {"text": "though"}, {"text": "it"}, {"text": "ca"}, {"text": "n't"}, {"text": "be"}, {"text": "heard"}, {"text": "*-135"}, {"text": "by"}, {"text": "the"}, {"text": "church-goers"}, {"text": "enjoying"}, {"text": "the"}, {"text": "peal"}, {"text": "of"}, {"text": "bells"}, {"text": "this"}, {"text": "cool"}, {"text": "autumn"}, {"text": "evening"}, {"text": "."}, {"text": "Like"}, {"text": "most"}, {"text": "of"}, {"text": "the"}, {"text": "other"}, {"text": "6,000"}, {"text": "churches"}, {"text": "in"}, {"text": "Britain"}, {"text": "with"}, {"text": "sets"}, {"text": "of"}, {"text": "bells"}, {"text": ","}, {"text": "St."}, {"text": "Michael"}, {"text": "once"}, {"text": "had"}, {"text": "its"}, {"text": "own"}, {"text": "``"}, {"text": "band"}, {"text": "''"}, {"text": "of"}, {"text": "ringers"}, {"text": ","}, {"text": "who"}, {"text": "*T*-221"}, {"text": "would"}, {"text": "herald"}, {"text": "every"}, {"text": "Sunday"}, {"text": "morning"}, {"text": "and"}, {"text": "evening"}, {"text": "service"}, {"text": "."}, {"text": "Now"}, {"text": ","}, {"text": "only"}, {"text": "one"}, {"text": "local"}, {"text": "ringer"}, {"text": "*ICH*-1"}, {"text": "remains"}, {"text": ":"}, {"text": "64-year-old"}, {"text": "Derek"}, {"text": "Hammond"}, {"text": "."}, {"text": "The"}, {"text": "others"}, {"text": "here"}, {"text": "today"}, {"text": "live"}, {"text": "elsewhere"}, {"text": "."}, {"text": "They"}, {"text": "belong"}, {"text": "to"}, {"text": "a"}, {"text": "group"}, {"text": "of"}, {"text": "15"}, {"text": "ringers"}, {"text": "--"}, {"text": "including"}, {"text": "two"}, {"text": "octogenarians"}, {"text": "and"}, {"text": "four"}, {"text": "youngsters"}, {"text": "in"}, {"text": "training"}, {"text": "--"}, {"text": "who"}, {"text": "*T*-222"}, {"text": "drive"}, {"text": "every"}, {"text": "Sunday"}, {"text": "from"}, {"text": "church"}, {"text": "to"}, {"text": "church"}, {"text": "in"}, {"text": "a"}, {"text": "sometimes-exhausting"}, {"text": "effort"}, {"text": "*"}, {"text": "to"}, {"text": "keep"}, {"text": "the"}, {"text": "bells"}, {"text": "sounding"}, {"text": "in"}, {"text": "the"}, {"text": "many"}, {"text": "belfries"}, {"text": "of"}, {"text": "East"}, {"text": "Anglia"}, {"text": "."}, {"text": "``"}, {"text": "*-1"}, {"text": "To"}, {"text": "ring"}, {"text": "for"}, {"text": "even"}, {"text": "one"}, {"text": "service"}, {"text": "at"}, {"text": "this"}, {"text": "tower"}, {"text": ","}, {"text": "we"}, {"text": "have"}, {"text": "*-1"}, {"text": "to"}, {"text": "scrape"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-2"}, {"text": "Mr."}, {"text": "Hammond"}, {"text": ","}, {"text": "a"}, {"text": "retired"}, {"text": "water-authority"}, {"text": "worker"}, {"text": "."}, {"text": "``"}, {"text": "We"}, {"text": "'ve"}, {"text": "tried"}, {"text": "*-1"}, {"text": "to"}, {"text": "train"}, {"text": "the"}, {"text": "youngsters"}, {"text": ","}, {"text": "but"}, {"text": "they"}, {"text": "have"}, {"text": "their"}, {"text": "discos"}, {"text": "and"}, {"text": "their"}, {"text": "dances"}, {"text": ","}, {"text": "and"}, {"text": "they"}, {"text": "just"}, {"text": "drift"}, {"text": "away"}, {"text": "."}, {"text": "''"}, {"text": "Mr."}, {"text": "Hammond"}, {"text": "worries"}, {"text": "that"}, {"text": "old"}, {"text": "age"}, {"text": "and"}, {"text": "the"}, {"text": "flightiness"}, {"text": "of"}, {"text": "youth"}, {"text": "will"}, {"text": "diminish"}, {"text": "the"}, {"text": "ranks"}, {"text": "of"}, {"text": "the"}, {"text": "East"}, {"text": "Anglian"}, {"text": "group"}, {"text": "that"}, {"text": "*T*-223"}, {"text": "keeps"}, {"text": "the"}, {"text": "Aslacton"}, {"text": "bells"}, {"text": "pealing"}, {"text": "."}, {"text": "History"}, {"text": ","}, {"text": "after"}, {"text": "all"}, {"text": ","}, {"text": "is"}, {"text": "not"}, {"text": "on"}, {"text": "his"}, {"text": "side"}, {"text": "."}, {"text": "According"}, {"text": "to"}, {"text": "a"}, {"text": "nationwide"}, {"text": "survey"}, {"text": "taken"}, {"text": "*"}, {"text": "a"}, {"text": "year"}, {"text": "ago"}, {"text": ","}, {"text": "nearly"}, {"text": "a"}, {"text": "third"}, {"text": "of"}, {"text": "England"}, {"text": "'s"}, {"text": "church"}, {"text": "bells"}, {"text": "are"}, {"text": "no"}, {"text": "longer"}, {"text": "rung"}, {"text": "*-1"}, {"text": "on"}, {"text": "Sundays"}, {"text": "because"}, {"text": "there"}, {"text": "is"}, {"text": "no"}, {"text": "one"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "to"}, {"text": "ring"}, {"text": "them"}, {"text": "."}, {"text": "It"}, {"text": "*EXP*-1"}, {"text": "is"}, {"text": "easy"}, {"text": "*"}, {"text": "to"}, {"text": "see"}, {"text": "why"}, {"text": "the"}, {"text": "ancient"}, {"text": "art"}, {"text": "is"}, {"text": "on"}, {"text": "the"}, {"text": "ropes"}, {"text": "*T*-2"}, {"text": "."}, {"text": "The"}, {"text": "less"}, {"text": "complicated"}, {"text": "version"}, {"text": "of"}, {"text": "*"}, {"text": "playing"}, {"text": "tunes"}, {"text": "on"}, {"text": "bells"}, {"text": ","}, {"text": "as"}, {"text": "do"}, {"text": "*?*"}, {"text": "the"}, {"text": "carillons"}, {"text": "of"}, {"text": "continental"}, {"text": "Europe"}, {"text": ","}, {"text": "is"}, {"text": "considered"}, {"text": "by"}, {"text": "the"}, {"text": "English"}, {"text": "*-136"}, {"text": "to"}, {"text": "be"}, {"text": "childish"}, {"text": ","}, {"text": "fit"}, {"text": "only"}, {"text": "for"}, {"text": "foreigners"}, {"text": "."}, {"text": "Change-ringing"}, {"text": ","}, {"text": "a"}, {"text": "mind-boggling"}, {"text": "exercise"}, {"text": "0"}, {"text": "the"}, {"text": "English"}, {"text": "invented"}, {"text": "*T*-1"}, {"text": "380"}, {"text": "years"}, {"text": "ago"}, {"text": ","}, {"text": "requires"}, {"text": "physical"}, {"text": "dexterity"}, {"text": "--"}, {"text": "some"}, {"text": "bells"}, {"text": "weigh"}, {"text": "more"}, {"text": "than"}, {"text": "a"}, {"text": "ton"}, {"text": "--"}, {"text": "combined"}, {"text": "*"}, {"text": "with"}, {"text": "intense"}, {"text": "mental"}, {"text": "concentration"}, {"text": "."}, {"text": "Proper"}, {"text": "English"}, {"text": "bells"}, {"text": "are"}, {"text": "started"}, {"text": "*-1"}, {"text": "off"}, {"text": "in"}, {"text": "``"}, {"text": "rounds"}, {"text": ","}, {"text": "''"}, {"text": "from"}, {"text": "the"}, {"text": "highest-pitched"}, {"text": "bell"}, {"text": "to"}, {"text": "the"}, {"text": "lowest"}, {"text": "--"}, {"text": "a"}, {"text": "simple"}, {"text": "descending"}, {"text": "scale"}, {"text": "using"}, {"text": ","}, {"text": "in"}, {"text": "larger"}, {"text": "churches"}, {"text": ","}, {"text": "as"}, {"text": "many"}, {"text": "as"}, {"text": "12"}, {"text": "bells"}, {"text": "."}, {"text": "Then"}, {"text": ","}, {"text": "at"}, {"text": "a"}, {"text": "signal"}, {"text": ","}, {"text": "the"}, {"text": "ringers"}, {"text": "begin"}, {"text": "*-1"}, {"text": "varying"}, {"text": "the"}, {"text": "order"}, {"text": "in"}, {"text": "which"}, {"text": "the"}, {"text": "bells"}, {"text": "sound"}, {"text": "*T*-2"}, {"text": "without"}, {"text": "*"}, {"text": "altering"}, {"text": "the"}, {"text": "steady"}, {"text": "rhythm"}, {"text": "of"}, {"text": "the"}, {"text": "striking"}, {"text": "."}, {"text": "Each"}, {"text": "variation"}, {"text": ","}, {"text": "or"}, {"text": "change"}, {"text": ","}, {"text": "can"}, {"text": "occur"}, {"text": "only"}, {"text": "once"}, {"text": ","}, {"text": "the"}, {"text": "rules"}, {"text": "state"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Ringers"}, {"text": "memorize"}, {"text": "patterns"}, {"text": "of"}, {"text": "changes"}, {"text": ","}, {"text": "known"}, {"text": "*"}, {"text": "as"}, {"text": "``"}, {"text": "methods"}, {"text": ","}, {"text": "''"}, {"text": "which"}, {"text": "*T*-224"}, {"text": "have"}, {"text": "odd-sounding"}, {"text": "names"}, {"text": "like"}, {"text": "Kent"}, {"text": "Treble"}, {"text": "Bob"}, {"text": "Major"}, {"text": "or"}, {"text": "Grandsire"}, {"text": "Caters"}, {"text": "."}, {"text": "A"}, {"text": "series"}, {"text": "of"}, {"text": "5,000"}, {"text": "or"}, {"text": "so"}, {"text": "changes"}, {"text": "is"}, {"text": "a"}, {"text": "``"}, {"text": "peal"}, {"text": "''"}, {"text": "and"}, {"text": "takes"}, {"text": "about"}, {"text": "three"}, {"text": "hours"}, {"text": "."}, {"text": "A"}, {"text": "look"}, {"text": "at"}, {"text": "a"}, {"text": "Thursday"}, {"text": "night"}, {"text": "practice"}, {"text": "at"}, {"text": "St."}, {"text": "Mary"}, {"text": "Abbot"}, {"text": "church"}, {"text": "in"}, {"text": "the"}, {"text": "Kensington"}, {"text": "district"}, {"text": "of"}, {"text": "London"}, {"text": "gives"}, {"text": "an"}, {"text": "idea"}, {"text": "of"}, {"text": "the"}, {"text": "work"}, {"text": "involved"}, {"text": "*"}, {"text": "."}, {"text": "Ten"}, {"text": "shirt-sleeved"}, {"text": "ringers"}, {"text": "stand"}, {"text": "in"}, {"text": "a"}, {"text": "circle"}, {"text": ","}, {"text": "one"}, {"text": "foot"}, {"text": "ahead"}, {"text": "of"}, {"text": "the"}, {"text": "other"}, {"text": "in"}, {"text": "a"}, {"text": "prize-fighter"}, {"text": "'s"}, {"text": "stance"}, {"text": ","}, {"text": "each"}, {"text": "pulling"}, {"text": "a"}, {"text": "rope"}, {"text": "that"}, {"text": "*T*-225"}, {"text": "disappears"}, {"text": "through"}, {"text": "a"}, {"text": "small"}, {"text": "hole"}, {"text": "in"}, {"text": "the"}, {"text": "high"}, {"text": "ceiling"}, {"text": "of"}, {"text": "the"}, {"text": "ringing"}, {"text": "chamber"}, {"text": "."}, {"text": "No"}, {"text": "one"}, {"text": "speaks"}, {"text": ","}, {"text": "and"}, {"text": "the"}, {"text": "snaking"}, {"text": "of"}, {"text": "the"}, {"text": "ropes"}, {"text": "seems"}, {"text": "*-1"}, {"text": "to"}, {"text": "make"}, {"text": "as"}, {"text": "much"}, {"text": "sound"}, {"text": "as"}, {"text": "the"}, {"text": "bells"}, {"text": "themselves"}, {"text": "*?*"}, {"text": ","}, {"text": "*-2"}, {"text": "muffled"}, {"text": "*-3"}, {"text": "by"}, {"text": "the"}, {"text": "ceiling"}, {"text": "."}, {"text": "*-1"}, {"text": "Totally"}, {"text": "absorbed"}, {"text": ","}, {"text": "the"}, {"text": "ringers"}, {"text": "stare"}, {"text": "straight"}, {"text": "ahead"}, {"text": ","}, {"text": "*-1"}, {"text": "using"}, {"text": "peripheral"}, {"text": "vision"}, {"text": "-LRB-"}, {"text": "they"}, {"text": "call"}, {"text": "it"}, {"text": "``"}, {"text": "rope-sight"}, {"text": "''"}, {"text": "-RRB-"}, {"text": "*-2"}, {"text": "to"}, {"text": "watch"}, {"text": "the"}, {"text": "other"}, {"text": "ropes"}, {"text": "and"}, {"text": "thus"}, {"text": "time"}, {"text": "their"}, {"text": "pulls"}, {"text": "."}, {"text": "Far"}, {"text": "above"}, {"text": "in"}, {"text": "the"}, {"text": "belfry"}, {"text": ","}, {"text": "the"}, {"text": "huge"}, {"text": "bronze"}, {"text": "bells"}, {"text": ","}, {"text": "mounted"}, {"text": "*"}, {"text": "on"}, {"text": "wheels"}, {"text": ","}, {"text": "swing"}, {"text": "madly"}, {"text": "through"}, {"text": "a"}, {"text": "full"}, {"text": "360"}, {"text": "degrees"}, {"text": ","}, {"text": "*-1"}, {"text": "starting"}, {"text": "and"}, {"text": "ending"}, {"text": ","}, {"text": "surprisingly"}, {"text": ","}, {"text": "in"}, {"text": "the"}, {"text": "inverted"}, {"text": ","}, {"text": "or"}, {"text": "mouth-up"}, {"text": "position"}, {"text": "."}, {"text": "Skilled"}, {"text": "ringers"}, {"text": "use"}, {"text": "their"}, {"text": "wrists"}, {"text": "*-1"}, {"text": "to"}, {"text": "advance"}, {"text": "or"}, {"text": "retard"}, {"text": "the"}, {"text": "next"}, {"text": "swing"}, {"text": ","}, {"text": "so"}, {"text": "that"}, {"text": "one"}, {"text": "bell"}, {"text": "can"}, {"text": "swap"}, {"text": "places"}, {"text": "with"}, {"text": "another"}, {"text": "in"}, {"text": "the"}, {"text": "following"}, {"text": "change"}, {"text": "."}, {"text": "In"}, {"text": "a"}, {"text": "well-known"}, {"text": "detective-story"}, {"text": "involving"}, {"text": "church"}, {"text": "bells"}, {"text": ","}, {"text": "English"}, {"text": "novelist"}, {"text": "Dorothy"}, {"text": "L."}, {"text": "Sayers"}, {"text": "described"}, {"text": "ringing"}, {"text": "as"}, {"text": "a"}, {"text": "``"}, {"text": "passion"}, {"text": "-LCB-"}, {"text": "that"}, {"text": "-RCB-"}, {"text": "*T*-1"}, {"text": "finds"}, {"text": "its"}, {"text": "satisfaction"}, {"text": "in"}, {"text": "mathematical"}, {"text": "completeness"}, {"text": "and"}, {"text": "mechanical"}, {"text": "perfection"}, {"text": "."}, {"text": "''"}, {"text": "Ringers"}, {"text": ","}, {"text": "she"}, {"text": "added"}, {"text": "0"}, {"text": "*T*-2"}, {"text": ","}, {"text": "are"}, {"text": "``"}, {"text": "filled"}, {"text": "*-1"}, {"text": "with"}, {"text": "the"}, {"text": "solemn"}, {"text": "intoxication"}, {"text": "that"}, {"text": "*T*-226"}, {"text": "comes"}, {"text": "of"}, {"text": "intricate"}, {"text": "ritual"}, {"text": "faultlessly"}, {"text": "performed"}, {"text": "*"}, {"text": "."}, {"text": "''"}, {"text": "``"}, {"text": "Ringing"}, {"text": "does"}, {"text": "become"}, {"text": "a"}, {"text": "bit"}, {"text": "of"}, {"text": "an"}, {"text": "obsession"}, {"text": ","}, {"text": "''"}, {"text": "admits"}, {"text": "*T*-1"}, {"text": "Stephanie"}, {"text": "Pattenden"}, {"text": ","}, {"text": "master"}, {"text": "of"}, {"text": "the"}, {"text": "band"}, {"text": "at"}, {"text": "St."}, {"text": "Mary"}, {"text": "Abbot"}, {"text": "and"}, {"text": "one"}, {"text": "of"}, {"text": "England"}, {"text": "'s"}, {"text": "best"}, {"text": "female"}, {"text": "ringers"}, {"text": "."}, {"text": "It"}, {"text": "is"}, {"text": "a"}, {"text": "passion"}, {"text": "that"}, {"text": "*T*-227"}, {"text": "usually"}, {"text": "stays"}, {"text": "in"}, {"text": "the"}, {"text": "tower"}, {"text": ","}, {"text": "however"}, {"text": "."}, {"text": "More"}, {"text": "often"}, {"text": "than"}, {"text": "not"}, {"text": ","}, {"text": "ringers"}, {"text": "think"}, {"text": "of"}, {"text": "the"}, {"text": "church"}, {"text": "as"}, {"text": "something"}, {"text": "stuck"}, {"text": "*"}, {"text": "on"}, {"text": "the"}, {"text": "bottom"}, {"text": "of"}, {"text": "the"}, {"text": "belfry"}, {"text": "."}, {"text": "When"}, {"text": "their"}, {"text": "changes"}, {"text": "are"}, {"text": "completed"}, {"text": "*-137"}, {"text": "*T*-1"}, {"text": ","}, {"text": "and"}, {"text": "after"}, {"text": "they"}, {"text": "have"}, {"text": "worked"}, {"text": "up"}, {"text": "a"}, {"text": "sweat"}, {"text": ","}, {"text": "ringers"}, {"text": "often"}, {"text": "skip"}, {"text": "off"}, {"text": "to"}, {"text": "the"}, {"text": "local"}, {"text": "pub"}, {"text": ","}, {"text": "*-2"}, {"text": "leaving"}, {"text": "worship"}, {"text": "for"}, {"text": "others"}, {"text": "below"}, {"text": "."}, {"text": "This"}, {"text": "does"}, {"text": "not"}, {"text": "sit"}, {"text": "well"}, {"text": "with"}, {"text": "some"}, {"text": "clerics"}, {"text": "."}, {"text": "With"}, {"text": "membership"}, {"text": "of"}, {"text": "the"}, {"text": "Church"}, {"text": "of"}, {"text": "England"}, {"text": "steadily"}, {"text": "dwindling"}, {"text": ","}, {"text": "strong-willed"}, {"text": "vicars"}, {"text": "are"}, {"text": "pressing"}, {"text": "equally"}, {"text": "strong-willed"}, {"text": "and"}, {"text": "often"}, {"text": "non-religious"}, {"text": "ringers"}, {"text": "to"}, {"text": "attend"}, {"text": "services"}, {"text": "."}, {"text": "Two"}, {"text": "years"}, {"text": "ago"}, {"text": ","}, {"text": "the"}, {"text": "Rev."}, {"text": "Jeremy"}, {"text": "Hummerstone"}, {"text": ","}, {"text": "vicar"}, {"text": "of"}, {"text": "Great"}, {"text": "Torrington"}, {"text": ","}, {"text": "Devon"}, {"text": ","}, {"text": "got"}, {"text": "so"}, {"text": "fed"}, {"text": "up"}, {"text": "with"}, {"text": "ringers"}, {"text": "who"}, {"text": "*T*-228"}, {"text": "did"}, {"text": "n't"}, {"text": "attend"}, {"text": "service"}, {"text": "0"}, {"text": "he"}, {"text": "sacked"}, {"text": "the"}, {"text": "entire"}, {"text": "band"}, {"text": ";"}, {"text": "the"}, {"text": "ringers"}, {"text": "promptly"}, {"text": "set"}, {"text": "up"}, {"text": "a"}, {"text": "picket"}, {"text": "line"}, {"text": "in"}, {"text": "protest"}, {"text": "."}, {"text": "``"}, {"text": "They"}, {"text": "were"}, {"text": "a"}, {"text": "self-perpetuating"}, {"text": "club"}, {"text": "that"}, {"text": "*T*-229"}, {"text": "treated"}, {"text": "the"}, {"text": "tower"}, {"text": "as"}, {"text": "sort"}, {"text": "of"}, {"text": "a"}, {"text": "separate"}, {"text": "premises"}, {"text": ","}, {"text": "''"}, {"text": "the"}, {"text": "Vicar"}, {"text": "Hummerstone"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "."}, {"text": "An"}, {"text": "entirely"}, {"text": "new"}, {"text": "band"}, {"text": "*ICH*-2"}, {"text": "rings"}, {"text": "today"}, {"text": "at"}, {"text": "Great"}, {"text": "Torrington"}, {"text": ","}, {"text": "several"}, {"text": "of"}, {"text": "whom"}, {"text": "*T*-1"}, {"text": "are"}, {"text": "members"}, {"text": "of"}, {"text": "the"}, {"text": "congregation"}, {"text": "."}, {"text": "But"}, {"text": "there"}, {"text": "still"}, {"text": "are"}, {"text": "n't"}, {"text": "enough"}, {"text": "ringers"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "to"}, {"text": "ring"}, {"text": "more"}, {"text": "than"}, {"text": "six"}, {"text": "of"}, {"text": "the"}, {"text": "eight"}, {"text": "bells"}, {"text": "."}, {"text": "At"}, {"text": "St."}, {"text": "Mary"}, {"text": "'s"}, {"text": "Church"}, {"text": "in"}, {"text": "Ilminster"}, {"text": ","}, {"text": "Somerset"}, {"text": ","}, {"text": "the"}, {"text": "bells"}, {"text": "have"}, {"text": "fallen"}, {"text": "*-1"}, {"text": "silent"}, {"text": "following"}, {"text": "a"}, {"text": "dust-up"}, {"text": "over"}, {"text": "church"}, {"text": "attendance"}, {"text": "."}, {"text": "The"}, {"text": "vicar"}, {"text": ","}, {"text": "W.D."}, {"text": "Jones"}, {"text": ","}, {"text": "refuses"}, {"text": "*-1"}, {"text": "to"}, {"text": "talk"}, {"text": "about"}, {"text": "it"}, {"text": ","}, {"text": "*-1"}, {"text": "saying"}, {"text": "0"}, {"text": "it"}, {"text": "would"}, {"text": "``"}, {"text": "reopen"}, {"text": "the"}, {"text": "wound"}, {"text": "."}, {"text": "''"}, {"text": "But"}, {"text": "C.J.B."}, {"text": "Marshall"}, {"text": ","}, {"text": "vicar"}, {"text": "of"}, {"text": "a"}, {"text": "nearby"}, {"text": "church"}, {"text": ","}, {"text": "feels"}, {"text": "0"}, {"text": "the"}, {"text": "fault"}, {"text": "is"}, {"text": "in"}, {"text": "the"}, {"text": "stairs"}, {"text": "from"}, {"text": "the"}, {"text": "bell"}, {"text": "tower"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "are"}, {"text": "located"}, {"text": "*-138"}, {"text": "next"}, {"text": "to"}, {"text": "the"}, {"text": "altar"}, {"text": "."}, {"text": "``"}, {"text": "So"}, {"text": "crunch"}, {"text": ","}, {"text": "crunch"}, {"text": ","}, {"text": "crunch"}, {"text": ","}, {"text": "bang"}, {"text": ","}, {"text": "bang"}, {"text": ","}, {"text": "bang"}, {"text": "--"}, {"text": "here"}, {"text": "come"}, {"text": "*T*-4"}, {"text": "the"}, {"text": "ringers"}, {"text": "from"}, {"text": "above"}, {"text": ","}, {"text": "*-1"}, {"text": "making"}, {"text": "a"}, {"text": "very"}, {"text": "obvious"}, {"text": "exit"}, {"text": "while"}, {"text": "the"}, {"text": "congregation"}, {"text": "is"}, {"text": "at"}, {"text": "prayer"}, {"text": ","}, {"text": "''"}, {"text": "he"}, {"text": "says"}, {"text": "*T*-2"}, {"text": "."}, {"text": "Vicar"}, {"text": "Marshall"}, {"text": "admits"}, {"text": "to"}, {"text": "mixed"}, {"text": "feelings"}, {"text": "about"}, {"text": "this"}, {"text": "issue"}, {"text": ","}, {"text": "since"}, {"text": "he"}, {"text": "is"}, {"text": "both"}, {"text": "a"}, {"text": "vicar"}, {"text": "and"}, {"text": "an"}, {"text": "active"}, {"text": "bell-ringer"}, {"text": "himself"}, {"text": "."}, {"text": "``"}, {"text": "The"}, {"text": "sound"}, {"text": "of"}, {"text": "bells"}, {"text": "is"}, {"text": "a"}, {"text": "net"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "to"}, {"text": "draw"}, {"text": "people"}, {"text": "into"}, {"text": "the"}, {"text": "church"}, {"text": ","}, {"text": "''"}, {"text": "he"}, {"text": "says"}, {"text": "*T*-2"}, {"text": "."}, {"text": "``"}, {"text": "I"}, {"text": "live"}, {"text": "in"}, {"text": "hopes"}, {"text": "that"}, {"text": "the"}, {"text": "ringers"}, {"text": "themselves"}, {"text": "will"}, {"text": "be"}, {"text": "drawn"}, {"text": "*-139"}, {"text": "into"}, {"text": "that"}, {"text": "fuller"}, {"text": "life"}, {"text": "."}, {"text": "''"}, {"text": "The"}, {"text": "Central"}, {"text": "Council"}, {"text": "of"}, {"text": "Church"}, {"text": "Bell"}, {"text": "Ringers"}, {"text": ","}, {"text": "a"}, {"text": "sort"}, {"text": "of"}, {"text": "parliament"}, {"text": "of"}, {"text": "ringing"}, {"text": "groups"}, {"text": ","}, {"text": "aims"}, {"text": "*-1"}, {"text": "to"}, {"text": "improve"}, {"text": "relations"}, {"text": "with"}, {"text": "vicars"}, {"text": ","}, {"text": "says"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "John"}, {"text": "C."}, {"text": "Baldwin"}, {"text": ","}, {"text": "president"}, {"text": "."}, {"text": "It"}, {"text": "hopes"}, {"text": "*-1"}, {"text": "to"}, {"text": "speak"}, {"text": "to"}, {"text": "students"}, {"text": "at"}, {"text": "theological"}, {"text": "colleges"}, {"text": "about"}, {"text": "the"}, {"text": "joys"}, {"text": "of"}, {"text": "bell"}, {"text": "ringing"}, {"text": "and"}, {"text": "will"}, {"text": "shortly"}, {"text": "publish"}, {"text": "a"}, {"text": "booklet"}, {"text": "for"}, {"text": "every"}, {"text": "vicar"}, {"text": "in"}, {"text": "the"}, {"text": "country"}, {"text": "entitled"}, {"text": ","}, {"text": "``"}, {"text": "The"}, {"text": "Bells"}, {"text": "in"}, {"text": "Your"}, {"text": "Care"}, {"text": "."}, {"text": "''"}, {"text": "Says"}, {"text": "*ICH*-1"}, {"text": "Mr."}, {"text": "Baldwin"}, {"text": ","}, {"text": "``"}, {"text": "We"}, {"text": "recognize"}, {"text": "that"}, {"text": "we"}, {"text": "may"}, {"text": "no"}, {"text": "longer"}, {"text": "have"}, {"text": "as"}, {"text": "high"}, {"text": "a"}, {"text": "priority"}, {"text": "in"}, {"text": "church"}, {"text": "life"}, {"text": "and"}, {"text": "experience"}, {"text": "."}, {"text": "''"}, {"text": "Mr."}, {"text": "Baldwin"}, {"text": "is"}, {"text": "also"}, {"text": "attacking"}, {"text": "the"}, {"text": "greater"}, {"text": "problem"}, {"text": ":"}, {"text": "lack"}, {"text": "of"}, {"text": "ringers"}, {"text": "."}, {"text": "One"}, {"text": "survey"}, {"text": "says"}, {"text": "that"}, {"text": "of"}, {"text": "the"}, {"text": "100,000"}, {"text": "trained"}, {"text": "bellringers"}, {"text": "in"}, {"text": "England"}, {"text": "today"}, {"text": ","}, {"text": "only"}, {"text": "40,000"}, {"text": "of"}, {"text": "them"}, {"text": "still"}, {"text": "ring"}, {"text": "."}, {"text": "Also"}, {"text": ","}, {"text": "ringers"}, {"text": "do"}, {"text": "n't"}, {"text": "always"}, {"text": "live"}, {"text": "where"}, {"text": "the"}, {"text": "bells"}, {"text": "need"}, {"text": "*-1"}, {"text": "to"}, {"text": "be"}, {"text": "rung"}, {"text": "*-140"}, {"text": "*T*-2"}, {"text": "--"}, {"text": "like"}, {"text": "in"}, {"text": "small"}, {"text": ","}, {"text": "rural"}, {"text": "parishes"}, {"text": "and"}, {"text": "inner-city"}, {"text": "churches"}, {"text": "."}, {"text": "But"}, {"text": "the"}, {"text": "council"}, {"text": "'s"}, {"text": "program"}, {"text": "*"}, {"text": "to"}, {"text": "attract"}, {"text": "and"}, {"text": "train"}, {"text": "ringers"}, {"text": "is"}, {"text": "only"}, {"text": "partly"}, {"text": "successful"}, {"text": ","}, {"text": "says"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "Mr."}, {"text": "Baldwin"}, {"text": "."}, {"text": "``"}, {"text": "Right"}, {"text": "now"}, {"text": ","}, {"text": "we"}, {"text": "'re"}, {"text": "lucky"}, {"text": "if"}, {"text": "after"}, {"text": "five"}, {"text": "years"}, {"text": "we"}, {"text": "keep"}, {"text": "one"}, {"text": "new"}, {"text": "ringer"}, {"text": "out"}, {"text": "of"}, {"text": "10"}, {"text": ","}, {"text": "''"}, {"text": "he"}, {"text": "adds"}, {"text": "*T*-1"}, {"text": "."}, {"text": "One"}, {"text": "bright"}, {"text": "sign"}, {"text": "is"}, {"text": "that"}, {"text": "a"}, {"text": "growing"}, {"text": "number"}, {"text": "of"}, {"text": "women"}, {"text": "have"}, {"text": "entered"}, {"text": "the"}, {"text": "once"}, {"text": "male-dominated"}, {"text": "field"}, {"text": ";"}, {"text": "more"}, {"text": "than"}, {"text": "a"}, {"text": "third"}, {"text": "of"}, {"text": "the"}, {"text": "ringers"}, {"text": "today"}, {"text": "are"}, {"text": "women"}, {"text": "."}, {"text": "They"}, {"text": "are"}, {"text": "n't"}, {"text": "accepted"}, {"text": "*-1"}, {"text": "everywhere"}, {"text": ","}, {"text": "however"}, {"text": "."}, {"text": "The"}, {"text": "oldest"}, {"text": "bell-ringing"}, {"text": "group"}, {"text": "in"}, {"text": "the"}, {"text": "country"}, {"text": ","}, {"text": "the"}, {"text": "Ancient"}, {"text": "Society"}, {"text": "of"}, {"text": "College"}, {"text": "Youths"}, {"text": ","}, {"text": "founded"}, {"text": "*"}, {"text": "in"}, {"text": "1637"}, {"text": ","}, {"text": "remains"}, {"text": "male-only"}, {"text": ","}, {"text": "a"}, {"text": "fact"}, {"text": "that"}, {"text": "*T*-230"}, {"text": "'s"}, {"text": "particularly"}, {"text": "galling"}, {"text": "to"}, {"text": "women"}, {"text": "because"}, {"text": "the"}, {"text": "group"}, {"text": "is"}, {"text": "the"}, {"text": "sole"}, {"text": "source"}, {"text": "of"}, {"text": "ringers"}, {"text": "for"}, {"text": "Britain"}, {"text": "'s"}, {"text": "most"}, {"text": "prestigious"}, {"text": "churches"}, {"text": ","}, {"text": "St."}, {"text": "Paul"}, {"text": "'s"}, {"text": "Cathedral"}, {"text": "and"}, {"text": "Westminster"}, {"text": "Abbey"}, {"text": "."}, {"text": "This"}, {"text": "being"}, {"text": "Britain"}, {"text": ","}, {"text": "no"}, {"text": "woman"}, {"text": "has"}, {"text": "filed"}, {"text": "an"}, {"text": "equal-opportunity"}, {"text": "suit"}, {"text": ","}, {"text": "but"}, {"text": "the"}, {"text": "extent"}, {"text": "of"}, {"text": "the"}, {"text": "problem"}, {"text": "surfaced"}, {"text": "this"}, {"text": "summer"}, {"text": "in"}, {"text": "a"}, {"text": "series"}, {"text": "of"}, {"text": "letters"}, {"text": "to"}, {"text": "``"}, {"text": "The"}, {"text": "Ringing"}, {"text": "World"}, {"text": ","}, {"text": "''"}, {"text": "a"}, {"text": "weekly"}, {"text": "newspaper"}, {"text": "for"}, {"text": "ringers"}, {"text": "."}, {"text": "One"}, {"text": "writer"}, {"text": ","}, {"text": "signing"}, {"text": "his"}, {"text": "letter"}, {"text": "as"}, {"text": "``"}, {"text": "Red-blooded"}, {"text": ","}, {"text": "balanced"}, {"text": "male"}, {"text": ","}, {"text": "''"}, {"text": "remarked"}, {"text": "on"}, {"text": "the"}, {"text": "``"}, {"text": "frequency"}, {"text": "of"}, {"text": "women"}, {"text": "fainting"}, {"text": "in"}, {"text": "peals"}, {"text": ","}, {"text": "''"}, {"text": "and"}, {"text": "suggested"}, {"text": "that"}, {"text": "they"}, {"text": "``"}, {"text": "settle"}, {"text": "back"}, {"text": "into"}, {"text": "their"}, {"text": "traditional"}, {"text": "role"}, {"text": "of"}, {"text": "*"}, {"text": "making"}, {"text": "tea"}, {"text": "at"}, {"text": "meetings"}, {"text": "."}, {"text": "''"}, {"text": "In"}, {"text": "the"}, {"text": "torrent"}, {"text": "of"}, {"text": "replies"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "followed"}, {"text": ","}, {"text": "one"}, {"text": "woman"}, {"text": "ringer"}, {"text": "from"}, {"text": "Solihull"}, {"text": "observed"}, {"text": "that"}, {"text": "``"}, {"text": "the"}, {"text": "average"}, {"text": "male"}, {"text": "ringer"}, {"text": "leaves"}, {"text": "quite"}, {"text": "a"}, {"text": "lot"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "to"}, {"text": "be"}, {"text": "desired"}, {"text": "*-141"}, {"text": ":"}, {"text": "*-3"}, {"text": "badly"}, {"text": "dressed"}, {"text": ","}, {"text": "decorated"}, {"text": "with"}, {"text": "acne"}, {"text": "and"}, {"text": "a"}, {"text": "large"}, {"text": "beer-belly"}, {"text": ","}, {"text": "frequently"}, {"text": "unwashed"}, {"text": "and"}, {"text": "unbearably"}, {"text": "flatulent"}, {"text": "in"}, {"text": "peals"}, {"text": "."}, {"text": "''"}, {"text": "Another"}, {"text": "women"}, {"text": "wrote"}, {"text": "from"}, {"text": "Sheffield"}, {"text": "*-1"}, {"text": "to"}, {"text": "say"}, {"text": "that"}, {"text": "in"}, {"text": "her"}, {"text": "60"}, {"text": "years"}, {"text": "of"}, {"text": "ringing"}, {"text": ","}, {"text": "``"}, {"text": "I"}, {"text": "have"}, {"text": "never"}, {"text": "known"}, {"text": "a"}, {"text": "lady"}, {"text": "to"}, {"text": "faint"}, {"text": "in"}, {"text": "the"}, {"text": "belfry"}, {"text": "."}, {"text": "I"}, {"text": "have"}, {"text": "seen"}, {"text": "one"}, {"text": "or"}, {"text": "two"}, {"text": "men"}, {"text": "die"}, {"text": ","}, {"text": "*"}, {"text": "bless"}, {"text": "them"}, {"text": "."}, {"text": "Investors"}, {"text": "unsettled"}, {"text": "*"}, {"text": "by"}, {"text": "the"}, {"text": "stock"}, {"text": "market"}, {"text": "'s"}, {"text": "gyrations"}, {"text": "can"}, {"text": "take"}, {"text": "some"}, {"text": "comfort"}, {"text": "in"}, {"text": "the"}, {"text": "predictable"}, {"text": "arrival"}, {"text": "of"}, {"text": "quarterly"}, {"text": "dividend"}, {"text": "checks"}, {"text": "."}, {"text": "That"}, {"text": "has"}, {"text": "been"}, {"text": "particularly"}, {"text": "true"}, {"text": "this"}, {"text": "year"}, {"text": "with"}, {"text": "many"}, {"text": "companies"}, {"text": "raising"}, {"text": "their"}, {"text": "payouts"}, {"text": "more"}, {"text": "than"}, {"text": "10"}, {"text": "%"}, {"text": "."}, {"text": "But"}, {"text": "*"}, {"text": "do"}, {"text": "n't"}, {"text": "breathe"}, {"text": "too"}, {"text": "easy"}, {"text": ":"}, {"text": "Those"}, {"text": "dividend"}, {"text": "increases"}, {"text": "may"}, {"text": "signal"}, {"text": "trouble"}, {"text": "ahead"}, {"text": "for"}, {"text": "stock"}, {"text": "prices"}, {"text": ","}, {"text": "some"}, {"text": "analysts"}, {"text": "warn"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "In"}, {"text": "the"}, {"text": "past"}, {"text": ","}, {"text": "they"}, {"text": "say"}, {"text": "0"}, {"text": "*T*-1"}, {"text": ","}, {"text": "the"}, {"text": "strongest"}, {"text": "dividend"}, {"text": "growth"}, {"text": "has"}, {"text": "often"}, {"text": "come"}, {"text": "at"}, {"text": "times"}, {"text": "when"}, {"text": "the"}, {"text": "stock-market"}, {"text": "party"}, {"text": "was"}, {"text": "almost"}, {"text": "over"}, {"text": "*T*-2"}, {"text": "."}, {"text": "That"}, {"text": "can"}, {"text": "be"}, {"text": "a"}, {"text": "trap"}, {"text": "for"}, {"text": "unwary"}, {"text": "investors"}, {"text": ","}, {"text": "says"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "Richard"}, {"text": "Bernstein"}, {"text": ","}, {"text": "senior"}, {"text": "quantitative"}, {"text": "analyst"}, {"text": "at"}, {"text": "Merrill"}, {"text": "Lynch"}, {"text": "&"}, {"text": "Co"}, {"text": "."}, {"text": "Strong"}, {"text": "dividend"}, {"text": "growth"}, {"text": ","}, {"text": "he"}, {"text": "says"}, {"text": "0"}, {"text": "*T*-1"}, {"text": ","}, {"text": "is"}, {"text": "``"}, {"text": "the"}, {"text": "black"}, {"text": "widow"}, {"text": "of"}, {"text": "valuation"}, {"text": "''"}, {"text": "--"}, {"text": "a"}, {"text": "reference"}, {"text": "to"}, {"text": "the"}, {"text": "female"}, {"text": "spiders"}, {"text": "that"}, {"text": "*T*-231"}, {"text": "attract"}, {"text": "males"}, {"text": "and"}, {"text": "then"}, {"text": "kill"}, {"text": "them"}, {"text": "after"}, {"text": "mating"}, {"text": "."}, {"text": "Stephen"}, {"text": "Boesel"}, {"text": ","}, {"text": "president"}, {"text": "of"}, {"text": "T."}, {"text": "Rowe"}, {"text": "Price"}, {"text": "Growth"}, {"text": "and"}, {"text": "Income"}, {"text": "Fund"}, {"text": ","}, {"text": "explains"}, {"text": "that"}, {"text": "companies"}, {"text": "raise"}, {"text": "their"}, {"text": "payouts"}, {"text": "most"}, {"text": "robustly"}, {"text": "only"}, {"text": "after"}, {"text": "the"}, {"text": "economy"}, {"text": "and"}, {"text": "corporate"}, {"text": "profits"}, {"text": "have"}, {"text": "been"}, {"text": "growing"}, {"text": "for"}, {"text": "some"}, {"text": "time"}, {"text": "."}, {"text": "``"}, {"text": "Invariably"}, {"text": ","}, {"text": "those"}, {"text": "strong"}, {"text": "periods"}, {"text": "in"}, {"text": "the"}, {"text": "economy"}, {"text": "give"}, {"text": "way"}, {"text": "to"}, {"text": "recessionary"}, {"text": "environments"}, {"text": ","}, {"text": "''"}, {"text": "he"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "."}, {"text": "``"}, {"text": "And"}, {"text": "recessionary"}, {"text": "environments"}, {"text": "are"}, {"text": "n't"}, {"text": "hospitable"}, {"text": "to"}, {"text": "the"}, {"text": "stock"}, {"text": "market"}, {"text": "."}, {"text": "''"}, {"text": "Indeed"}, {"text": ","}, {"text": "analysts"}, {"text": "say"}, {"text": "that"}, {"text": "payouts"}, {"text": "have"}, {"text": "sometimes"}, {"text": "risen"}, {"text": "most"}, {"text": "sharply"}, {"text": "when"}, {"text": "prices"}, {"text": "were"}, {"text": "already"}, {"text": "on"}, {"text": "their"}, {"text": "way"}, {"text": "down"}, {"text": "from"}, {"text": "cyclical"}, {"text": "peaks"}, {"text": "*T*-1"}, {"text": "."}, {"text": "In"}, {"text": "1976"}, {"text": ","}, {"text": "for"}, {"text": "example"}, {"text": ","}, {"text": "dividends"}, {"text": "on"}, {"text": "the"}, {"text": "stocks"}, {"text": "in"}, {"text": "Standard"}, {"text": "&"}, {"text": "Poor"}, {"text": "'s"}, {"text": "500-stock"}, {"text": "index"}, {"text": "soared"}, {"text": "10"}, {"text": "%"}, {"text": ","}, {"text": "following"}, {"text": "much"}, {"text": "slower"}, {"text": "growth"}, {"text": "the"}, {"text": "year"}, {"text": "before"}, {"text": "."}, {"text": "The"}, {"text": "S&P"}, {"text": "index"}, {"text": "started"}, {"text": "*-1"}, {"text": "sliding"}, {"text": "in"}, {"text": "price"}, {"text": "in"}, {"text": "September"}, {"text": "1976"}, {"text": ","}, {"text": "and"}, {"text": "fell"}, {"text": "12"}, {"text": "%"}, {"text": "in"}, {"text": "1977"}, {"text": "--"}, {"text": "despite"}, {"text": "a"}, {"text": "15"}, {"text": "%"}, {"text": "expansion"}, {"text": "in"}, {"text": "dividends"}, {"text": "that"}, {"text": "year"}, {"text": "."}, {"text": "That"}, {"text": "pattern"}, {"text": "has"}, {"text": "n't"}, {"text": "always"}, {"text": "held"}, {"text": ","}, {"text": "but"}, {"text": "recent"}, {"text": "strong"}, {"text": "growth"}, {"text": "in"}, {"text": "dividends"}, {"text": "makes"}, {"text": "some"}, {"text": "market"}, {"text": "watchers"}, {"text": "anxious"}, {"text": "."}, {"text": "Payouts"}, {"text": "on"}, {"text": "the"}, {"text": "S&P"}, {"text": "500"}, {"text": "stocks"}, {"text": "rose"}, {"text": "10"}, {"text": "%"}, {"text": "in"}, {"text": "1988"}, {"text": ","}, {"text": "according"}, {"text": "to"}, {"text": "Standard"}, {"text": "&"}, {"text": "Poor"}, {"text": "'s"}, {"text": "Corp."}, {"text": ","}, {"text": "and"}, {"text": "Wall"}, {"text": "Street"}, {"text": "estimates"}, {"text": "for"}, {"text": "1989"}, {"text": "growth"}, {"text": "are"}, {"text": "generally"}, {"text": "between"}, {"text": "9"}, {"text": "%"}, {"text": "and"}, {"text": "14"}, {"text": "%"}, {"text": "*U*"}, {"text": "."}, {"text": "Many"}, {"text": "people"}, {"text": "believe"}, {"text": "0"}, {"text": "the"}, {"text": "growth"}, {"text": "in"}, {"text": "dividends"}, {"text": "will"}, {"text": "slow"}, {"text": "next"}, {"text": "year"}, {"text": ","}, {"text": "although"}, {"text": "a"}, {"text": "minority"}, {"text": "see"}, {"text": "double-digit"}, {"text": "gains"}, {"text": "continuing"}, {"text": "."}, {"text": "Meanwhile"}, {"text": ","}, {"text": "many"}, {"text": "market"}, {"text": "watchers"}, {"text": "say"}, {"text": "0"}, {"text": "recent"}, {"text": "dividend"}, {"text": "trends"}, {"text": "raise"}, {"text": "another"}, {"text": "warning"}, {"text": "flag"}, {"text": ":"}, {"text": "While"}, {"text": "dividends"}, {"text": "have"}, {"text": "risen"}, {"text": "smartly"}, {"text": ","}, {"text": "their"}, {"text": "expansion"}, {"text": "has"}, {"text": "n't"}, {"text": "kept"}, {"text": "pace"}, {"text": "with"}, {"text": "even"}, {"text": "stronger"}, {"text": "advances"}, {"text": "in"}, {"text": "stock"}, {"text": "prices"}, {"text": "."}, {"text": "As"}, {"text": "a"}, {"text": "result"}, {"text": ","}, {"text": "the"}, {"text": "market"}, {"text": "'s"}, {"text": "dividend"}, {"text": "yield"}, {"text": "--"}, {"text": "dividends"}, {"text": "as"}, {"text": "a"}, {"text": "percentage"}, {"text": "of"}, {"text": "price"}, {"text": "--"}, {"text": "has"}, {"text": "slid"}, {"text": "to"}, {"text": "a"}, {"text": "level"}, {"text": "that"}, {"text": "*T*-232"}, {"text": "is"}, {"text": "fairly"}, {"text": "low"}, {"text": "and"}, {"text": "unenticing"}, {"text": "by"}, {"text": "historical"}, {"text": "standards"}, {"text": "."}, {"text": "*"}, {"text": "Put"}, {"text": "*-1"}, {"text": "another"}, {"text": "way"}, {"text": ","}, {"text": "the"}, {"text": "decline"}, {"text": "in"}, {"text": "the"}, {"text": "yield"}, {"text": "suggests"}, {"text": "0"}, {"text": "stocks"}, {"text": "have"}, {"text": "gotten"}, {"text": "pretty"}, {"text": "rich"}, {"text": "in"}, {"text": "price"}, {"text": "relative"}, {"text": "to"}, {"text": "the"}, {"text": "dividends"}, {"text": "0"}, {"text": "they"}, {"text": "pay"}, {"text": "*T*-2"}, {"text": ","}, {"text": "some"}, {"text": "market"}, {"text": "analysts"}, {"text": "say"}, {"text": "0"}, {"text": "*T*-3"}, {"text": "."}, {"text": "They"}, {"text": "are"}, {"text": "keeping"}, {"text": "a"}, {"text": "close"}, {"text": "watch"}, {"text": "on"}, {"text": "the"}, {"text": "yield"}, {"text": "on"}, {"text": "the"}, {"text": "S&P"}, {"text": "500"}, {"text": "."}, {"text": "The"}, {"text": "figure"}, {"text": "is"}, {"text": "currently"}, {"text": "about"}, {"text": "3.3"}, {"text": "%"}, {"text": ","}, {"text": "up"}, {"text": "from"}, {"text": "3.2"}, {"text": "%"}, {"text": "before"}, {"text": "the"}, {"text": "recent"}, {"text": "market"}, {"text": "slide"}, {"text": "."}, {"text": "Some"}, {"text": "analysts"}, {"text": "say"}, {"text": "0"}, {"text": "investors"}, {"text": "should"}, {"text": "run"}, {"text": "for"}, {"text": "the"}, {"text": "exits"}, {"text": "if"}, {"text": "a"}, {"text": "sustained"}, {"text": "market"}, {"text": "rebound"}, {"text": "pushes"}, {"text": "the"}, {"text": "yield"}, {"text": "below"}, {"text": "3"}, {"text": "%"}, {"text": "."}, {"text": "A"}, {"text": "drop"}, {"text": "below"}, {"text": "that"}, {"text": "3"}, {"text": "%"}, {"text": "benchmark"}, {"text": "``"}, {"text": "has"}, {"text": "always"}, {"text": "been"}, {"text": "a"}, {"text": "strong"}, {"text": "warning"}, {"text": "sign"}, {"text": "that"}, {"text": "stocks"}, {"text": "are"}, {"text": "fully"}, {"text": "valued"}, {"text": "*-2"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "Mr."}, {"text": "Boesel"}, {"text": "of"}, {"text": "T."}, {"text": "Rowe"}, {"text": "Price"}, {"text": "."}, {"text": "In"}, {"text": "fact"}, {"text": ","}, {"text": "``"}, {"text": "the"}, {"text": "market"}, {"text": "has"}, {"text": "always"}, {"text": "tanked"}, {"text": "."}, {"text": "Always"}, {"text": "."}, {"text": "There"}, {"text": "'s"}, {"text": "never"}, {"text": "been"}, {"text": "an"}, {"text": "exception"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "Gerald"}, {"text": "W."}, {"text": "Perritt"}, {"text": ","}, {"text": "a"}, {"text": "Chicago"}, {"text": "investment"}, {"text": "adviser"}, {"text": "and"}, {"text": "money"}, {"text": "manager"}, {"text": ","}, {"text": "based"}, {"text": "on"}, {"text": "a"}, {"text": "review"}, {"text": "of"}, {"text": "six"}, {"text": "decades"}, {"text": "of"}, {"text": "stock-market"}, {"text": "data"}, {"text": "."}, {"text": "The"}, {"text": "last"}, {"text": "time"}, {"text": "0"}, {"text": "the"}, {"text": "S&P"}, {"text": "500"}, {"text": "yield"}, {"text": "dropped"}, {"text": "below"}, {"text": "3"}, {"text": "%"}, {"text": "*T*-1"}, {"text": "was"}, {"text": "in"}, {"text": "the"}, {"text": "summer"}, {"text": "of"}, {"text": "1987"}, {"text": "."}, {"text": "Stockholders"}, {"text": "who"}, {"text": "*T*-233"}, {"text": "took"}, {"text": "the"}, {"text": "hint"}, {"text": "and"}, {"text": "sold"}, {"text": "shares"}, {"text": "escaped"}, {"text": "the"}, {"text": "October"}, {"text": "debacle"}, {"text": "."}, {"text": "There"}, {"text": "have"}, {"text": "been"}, {"text": "only"}, {"text": "seven"}, {"text": "other"}, {"text": "times"}, {"text": "--"}, {"text": "in"}, {"text": "1929"}, {"text": ","}, {"text": "1933"}, {"text": ","}, {"text": "1961"}, {"text": ","}, {"text": "1965"}, {"text": ","}, {"text": "1968"}, {"text": ","}, {"text": "1971"}, {"text": "and"}, {"text": "1972"}, {"text": "--"}, {"text": "when"}, {"text": "the"}, {"text": "yield"}, {"text": "on"}, {"text": "the"}, {"text": "S&P"}, {"text": "500"}, {"text": "dropped"}, {"text": "below"}, {"text": "3"}, {"text": "%"}, {"text": "for"}, {"text": "at"}, {"text": "least"}, {"text": "two"}, {"text": "consecutive"}, {"text": "months"}, {"text": "*T*-1"}, {"text": ","}, {"text": "Mr."}, {"text": "Perritt"}, {"text": "found"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "."}, {"text": "And"}, {"text": "in"}, {"text": "each"}, {"text": "case"}, {"text": ","}, {"text": "he"}, {"text": "says"}, {"text": "0"}, {"text": "*T*-1"}, {"text": ","}, {"text": "a"}, {"text": "sharp"}, {"text": "drop"}, {"text": "in"}, {"text": "stock"}, {"text": "prices"}, {"text": "began"}, {"text": "within"}, {"text": "a"}, {"text": "year"}, {"text": "."}, {"text": "Still"}, {"text": ","}, {"text": "some"}, {"text": "market"}, {"text": "analysts"}, {"text": "say"}, {"text": "0"}, {"text": "the"}, {"text": "current"}, {"text": "3.3"}, {"text": "%"}, {"text": "reading"}, {"text": "is"}, {"text": "n't"}, {"text": "as"}, {"text": "troublesome"}, {"text": "as"}, {"text": "it"}, {"text": "might"}, {"text": "have"}, {"text": "been"}, {"text": "*?*"}, {"text": "in"}, {"text": "years"}, {"text": "past"}, {"text": "."}, {"text": "``"}, {"text": "It"}, {"text": "'s"}, {"text": "not"}, {"text": "a"}, {"text": "very"}, {"text": "meaningful"}, {"text": "indicator"}, {"text": "currently"}, {"text": "because"}, {"text": "corporations"}, {"text": "are"}, {"text": "not"}, {"text": "behaving"}, {"text": "in"}, {"text": "a"}, {"text": "traditional"}, {"text": "manner"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "James"}, {"text": "H."}, {"text": "Coxon"}, {"text": ","}, {"text": "head"}, {"text": "of"}, {"text": "stock"}, {"text": "investments"}, {"text": "for"}, {"text": "Cigna"}, {"text": "Corp."}, {"text": ","}, {"text": "the"}, {"text": "Philadelphia-based"}, {"text": "insurer"}, {"text": "."}, {"text": "In"}, {"text": "particular"}, {"text": ","}, {"text": "Mr."}, {"text": "Coxon"}, {"text": "says"}, {"text": "0"}, {"text": "*T*-1"}, {"text": ","}, {"text": "businesses"}, {"text": "are"}, {"text": "paying"}, {"text": "out"}, {"text": "a"}, {"text": "smaller"}, {"text": "percentage"}, {"text": "of"}, {"text": "their"}, {"text": "profits"}, {"text": "and"}, {"text": "cash"}, {"text": "flow"}, {"text": "*ICH*-3"}, {"text": "in"}, {"text": "the"}, {"text": "form"}, {"text": "of"}, {"text": "dividends"}, {"text": "than"}, {"text": "they"}, {"text": "have"}, {"text": "*?*"}, {"text": "historically"}, {"text": "."}, {"text": "So"}, {"text": ","}, {"text": "while"}, {"text": "stock"}, {"text": "prices"}, {"text": "may"}, {"text": "look"}, {"text": "fairly"}, {"text": "high"}, {"text": "relative"}, {"text": "to"}, {"text": "dividends"}, {"text": ","}, {"text": "they"}, {"text": "are"}, {"text": "not"}, {"text": "excessive"}, {"text": "relative"}, {"text": "to"}, {"text": "the"}, {"text": "underlying"}, {"text": "corporate"}, {"text": "strength"}, {"text": "."}, {"text": "Rather"}, {"text": "than"}, {"text": "*-1"}, {"text": "increasing"}, {"text": "dividends"}, {"text": ","}, {"text": "some"}, {"text": "companies"}, {"text": "have"}, {"text": "used"}, {"text": "cash"}, {"text": "*-1"}, {"text": "to"}, {"text": "buy"}, {"text": "back"}, {"text": "some"}, {"text": "of"}, {"text": "their"}, {"text": "shares"}, {"text": ","}, {"text": "notes"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "Steven"}, {"text": "G."}, {"text": "Einhorn"}, {"text": ","}, {"text": "co-chairman"}, {"text": "of"}, {"text": "the"}, {"text": "investment"}, {"text": "policy"}, {"text": "committee"}, {"text": "at"}, {"text": "Goldman"}, {"text": ","}, {"text": "Sachs"}, {"text": "&"}, {"text": "Co"}, {"text": "."}, {"text": "He"}, {"text": "factors"}, {"text": "that"}, {"text": "into"}, {"text": "the"}, {"text": "market"}, {"text": "yield"}, {"text": "*-1"}, {"text": "to"}, {"text": "get"}, {"text": "an"}, {"text": "adjusted"}, {"text": "yield"}, {"text": "of"}, {"text": "about"}, {"text": "3.6"}, {"text": "%"}, {"text": "."}, {"text": "That"}, {"text": "is"}, {"text": "just"}, {"text": "a"}, {"text": "tad"}, {"text": "below"}, {"text": "the"}, {"text": "average"}, {"text": "of"}, {"text": "the"}, {"text": "past"}, {"text": "40"}, {"text": "years"}, {"text": "or"}, {"text": "so"}, {"text": ","}, {"text": "he"}, {"text": "says"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "What"}, {"text": "*T*-234"}, {"text": "will"}, {"text": "happen"}, {"text": "to"}, {"text": "dividend"}, {"text": "growth"}, {"text": "next"}, {"text": "year"}, {"text": "?"}, {"text": "Common"}, {"text": "wisdom"}, {"text": "suggests"}, {"text": "a"}, {"text": "single-digit"}, {"text": "rate"}, {"text": "of"}, {"text": "growth"}, {"text": ","}, {"text": "reflecting"}, {"text": "a"}, {"text": "weakening"}, {"text": "in"}, {"text": "the"}, {"text": "economy"}, {"text": "and"}, {"text": "corporate"}, {"text": "profits"}, {"text": "."}, {"text": "PaineWebber"}, {"text": "Inc."}, {"text": ","}, {"text": "for"}, {"text": "instance"}, {"text": ","}, {"text": "is"}, {"text": "forecasting"}, {"text": "growth"}, {"text": "in"}, {"text": "S&P"}, {"text": "500"}, {"text": "dividends"}, {"text": "of"}, {"text": "just"}, {"text": "under"}, {"text": "5"}, {"text": "%"}, {"text": "in"}, {"text": "1990"}, {"text": ","}, {"text": "down"}, {"text": "from"}, {"text": "an"}, {"text": "estimated"}, {"text": "11"}, {"text": "%"}, {"text": "this"}, {"text": "year"}, {"text": "."}, {"text": "In"}, {"text": "other"}, {"text": "years"}, {"text": "in"}, {"text": "which"}, {"text": "there"}, {"text": "have"}, {"text": "been"}, {"text": "moderate"}, {"text": "economic"}, {"text": "slowdowns"}, {"text": "--"}, {"text": "the"}, {"text": "environment"}, {"text": "0"}, {"text": "the"}, {"text": "firm"}, {"text": "expects"}, {"text": "*T*-1"}, {"text": "in"}, {"text": "1990"}, {"text": "*T*-2"}, {"text": "--"}, {"text": "the"}, {"text": "change"}, {"text": "in"}, {"text": "dividends"}, {"text": "ranged"}, {"text": "from"}, {"text": "a"}, {"text": "gain"}, {"text": "of"}, {"text": "4"}, {"text": "%"}, {"text": "to"}, {"text": "a"}, {"text": "decline"}, {"text": "of"}, {"text": "1"}, {"text": "%"}, {"text": ","}, {"text": "according"}, {"text": "to"}, {"text": "PaineWebber"}, {"text": "analyst"}, {"text": "Thomas"}, {"text": "Doerflinger"}, {"text": "."}, {"text": "The"}, {"text": "minority"}, {"text": "argument"}, {"text": ","}, {"text": "meanwhile"}, {"text": ","}, {"text": "is"}, {"text": "that"}, {"text": "businesses"}, {"text": "have"}, {"text": "the"}, {"text": "financial"}, {"text": "wherewithal"}, {"text": "*ICH*-2"}, {"text": "this"}, {"text": "time"}, {"text": "around"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "declare"}, {"text": "sharply"}, {"text": "higher"}, {"text": "dividends"}, {"text": "*T*-1"}, {"text": "even"}, {"text": "if"}, {"text": "their"}, {"text": "earnings"}, {"text": "weaken"}, {"text": "."}, {"text": "Dividend"}, {"text": "growth"}, {"text": "on"}, {"text": "the"}, {"text": "order"}, {"text": "of"}, {"text": "12"}, {"text": "%"}, {"text": "is"}, {"text": "expected"}, {"text": "*-142"}, {"text": "by"}, {"text": "both"}, {"text": "Mr."}, {"text": "Coxon"}, {"text": "of"}, {"text": "Cigna"}, {"text": "and"}, {"text": "Mr."}, {"text": "Einhorn"}, {"text": "of"}, {"text": "Goldman"}, {"text": "Sachs"}, {"text": "."}, {"text": "Those"}, {"text": "dividend"}, {"text": "bulls"}, {"text": "argue"}, {"text": "that"}, {"text": "corporations"}, {"text": "are"}, {"text": "in"}, {"text": "the"}, {"text": "unusual"}, {"text": "position"}, {"text": "of"}, {"text": "*-2"}, {"text": "having"}, {"text": "plenty"}, {"text": "of"}, {"text": "cash"}, {"text": "left"}, {"text": "over"}, {"text": "*"}, {"text": "after"}, {"text": "*-1"}, {"text": "paying"}, {"text": "dividends"}, {"text": "and"}, {"text": "making"}, {"text": "capital"}, {"text": "expenditures"}, {"text": "."}, {"text": "One"}, {"text": "indicator"}, {"text": "0"}, {"text": "investors"}, {"text": "might"}, {"text": "want"}, {"text": "*-2"}, {"text": "to"}, {"text": "watch"}, {"text": "*T*-1"}, {"text": "is"}, {"text": "the"}, {"text": "monthly"}, {"text": "tally"}, {"text": "from"}, {"text": "Standard"}, {"text": "&"}, {"text": "Poor"}, {"text": "'s"}, {"text": "of"}, {"text": "the"}, {"text": "number"}, {"text": "of"}, {"text": "public"}, {"text": "companies"}, {"text": "adjusting"}, {"text": "their"}, {"text": "dividends"}, {"text": "."}, {"text": "A"}, {"text": "total"}, {"text": "of"}, {"text": "139"}, {"text": "companies"}, {"text": "*ICH*-1"}, {"text": "raised"}, {"text": "dividends"}, {"text": "in"}, {"text": "October"}, {"text": ","}, {"text": "basically"}, {"text": "unchanged"}, {"text": "from"}, {"text": "138"}, {"text": "a"}, {"text": "year"}, {"text": "ago"}, {"text": ","}, {"text": "S&P"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "Wednesday"}, {"text": "."}, {"text": "That"}, {"text": "followed"}, {"text": "four"}, {"text": "straight"}, {"text": "months"}, {"text": "in"}, {"text": "which"}, {"text": "the"}, {"text": "number"}, {"text": "of"}, {"text": "increases"}, {"text": "trailed"}, {"text": "the"}, {"text": "year-earlier"}, {"text": "pace"}, {"text": "*T*-1"}, {"text": "."}, {"text": "While"}, {"text": "the"}, {"text": "S&P"}, {"text": "tally"}, {"text": "does"}, {"text": "n't"}, {"text": "measure"}, {"text": "the"}, {"text": "magnitude"}, {"text": "of"}, {"text": "dividend"}, {"text": "changes"}, {"text": ","}, {"text": "a"}, {"text": "further"}, {"text": "slippage"}, {"text": "in"}, {"text": "the"}, {"text": "number"}, {"text": "of"}, {"text": "dividend"}, {"text": "increases"}, {"text": "could"}, {"text": "be"}, {"text": "a"}, {"text": "harbinger"}, {"text": "of"}, {"text": "slower"}, {"text": "dividend"}, {"text": "growth"}, {"text": "next"}, {"text": "year"}, {"text": "."}, {"text": "In"}, {"text": "any"}, {"text": "case"}, {"text": ","}, {"text": "opinion"}, {"text": "*ICH*-2"}, {"text": "is"}, {"text": "mixed"}, {"text": "on"}, {"text": "how"}, {"text": "much"}, {"text": "of"}, {"text": "a"}, {"text": "boost"}, {"text": "the"}, {"text": "overall"}, {"text": "stock"}, {"text": "market"}, {"text": "would"}, {"text": "get"}, {"text": "*T*-1"}, {"text": "even"}, {"text": "if"}, {"text": "dividend"}, {"text": "growth"}, {"text": "continues"}, {"text": "at"}, {"text": "double-digit"}, {"text": "levels"}, {"text": "."}, {"text": "Mr."}, {"text": "Einhorn"}, {"text": "of"}, {"text": "Goldman"}, {"text": "Sachs"}, {"text": "estimates"}, {"text": "0"}, {"text": "the"}, {"text": "stock"}, {"text": "market"}, {"text": "will"}, {"text": "deliver"}, {"text": "a"}, {"text": "12"}, {"text": "%"}, {"text": "to"}, {"text": "15"}, {"text": "%"}, {"text": "*U*"}, {"text": "total"}, {"text": "return"}, {"text": "from"}, {"text": "appreciation"}, {"text": "and"}, {"text": "dividends"}, {"text": "*ICH*-1"}, {"text": "over"}, {"text": "the"}, {"text": "next"}, {"text": "12"}, {"text": "months"}, {"text": "--"}, {"text": "vs."}, {"text": "a"}, {"text": "``"}, {"text": "cash"}, {"text": "rate"}, {"text": "of"}, {"text": "return"}, {"text": "''"}, {"text": "of"}, {"text": "perhaps"}, {"text": "7"}, {"text": "%"}, {"text": "or"}, {"text": "8"}, {"text": "%"}, {"text": "*U*"}, {"text": "if"}, {"text": "dividend"}, {"text": "growth"}, {"text": "is"}, {"text": "weak"}, {"text": "."}, {"text": "But"}, {"text": "Mr."}, {"text": "Boesel"}, {"text": "of"}, {"text": "T."}, {"text": "Rowe"}, {"text": "Price"}, {"text": ","}, {"text": "who"}, {"text": "*T*-235"}, {"text": "also"}, {"text": "expects"}, {"text": "12"}, {"text": "%"}, {"text": "growth"}, {"text": "in"}, {"text": "dividends"}, {"text": "next"}, {"text": "year"}, {"text": ","}, {"text": "does"}, {"text": "n't"}, {"text": "think"}, {"text": "0"}, {"text": "it"}, {"text": "will"}, {"text": "help"}, {"text": "the"}, {"text": "overall"}, {"text": "market"}, {"text": "all"}, {"text": "that"}, {"text": "much"}, {"text": "."}, {"text": "``"}, {"text": "*"}, {"text": "Having"}, {"text": "the"}, {"text": "dividend"}, {"text": "increases"}, {"text": "is"}, {"text": "a"}, {"text": "supportive"}, {"text": "element"}, {"text": "in"}, {"text": "the"}, {"text": "market"}, {"text": "outlook"}, {"text": ","}, {"text": "but"}, {"text": "I"}, {"text": "do"}, {"text": "n't"}, {"text": "think"}, {"text": "0"}, {"text": "it"}, {"text": "'s"}, {"text": "a"}, {"text": "main"}, {"text": "consideration"}, {"text": ","}, {"text": "''"}, {"text": "he"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "."}, {"text": "With"}, {"text": "slower"}, {"text": "economic"}, {"text": "growth"}, {"text": "and"}, {"text": "flat"}, {"text": "corporate"}, {"text": "earnings"}, {"text": "likely"}, {"text": "next"}, {"text": "year"}, {"text": ","}, {"text": "``"}, {"text": "I"}, {"text": "would"}, {"text": "n't"}, {"text": "look"}, {"text": "for"}, {"text": "the"}, {"text": "market"}, {"text": "to"}, {"text": "have"}, {"text": "much"}, {"text": "upside"}, {"text": "from"}, {"text": "current"}, {"text": "levels"}, {"text": "."}, {"text": "Your"}, {"text": "Oct."}, {"text": "13"}, {"text": "page-one"}, {"text": "story"}, {"text": "on"}, {"text": "the"}, {"text": "renewed"}, {"text": "plight"}, {"text": "of"}, {"text": "Western"}, {"text": "Union"}, {"text": "says"}, {"text": "that"}, {"text": "Western"}, {"text": "Union"}, {"text": "had"}, {"text": "lost"}, {"text": "its"}, {"text": "chance"}, {"text": "*"}, {"text": "to"}, {"text": "be"}, {"text": "in"}, {"text": "the"}, {"text": "telephone"}, {"text": "business"}, {"text": "by"}, {"text": "*-1"}, {"text": "turning"}, {"text": "down"}, {"text": "Alexander"}, {"text": "Graham"}, {"text": "Bell"}, {"text": "'s"}, {"text": "offer"}, {"text": "to"}, {"text": "it"}, {"text": "of"}, {"text": "his"}, {"text": "invention"}, {"text": ","}, {"text": "because"}, {"text": "it"}, {"text": "supposedly"}, {"text": "felt"}, {"text": "that"}, {"text": "voice"}, {"text": "communication"}, {"text": "would"}, {"text": "never"}, {"text": "replace"}, {"text": "the"}, {"text": "telegraph"}, {"text": "."}, {"text": "Such"}, {"text": "is"}, {"text": "hardly"}, {"text": "the"}, {"text": "case"}, {"text": "."}, {"text": "Bell"}, {"text": "'s"}, {"text": "father-in-law"}, {"text": ","}, {"text": "Gardner"}, {"text": "G."}, {"text": "Hubbard"}, {"text": ","}, {"text": "wealthy"}, {"text": "and"}, {"text": "well-connected"}, {"text": ","}, {"text": "obtained"}, {"text": "financing"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "to"}, {"text": "start"}, {"text": "the"}, {"text": "American"}, {"text": "Bell"}, {"text": "Telephone"}, {"text": "Co."}, {"text": "in"}, {"text": "Boston"}, {"text": ","}, {"text": "which"}, {"text": "*T*-2"}, {"text": "even"}, {"text": "had"}, {"text": "a"}, {"text": "subsidiary"}, {"text": "in"}, {"text": "New"}, {"text": "York"}, {"text": "called"}, {"text": "*"}, {"text": "the"}, {"text": "Telephone"}, {"text": "Co."}, {"text": "of"}, {"text": "New"}, {"text": "York"}, {"text": "."}, {"text": "This"}, {"text": "is"}, {"text": "where"}, {"text": "Bell"}, {"text": "'s"}, {"text": "patents"}, {"text": "went"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Western"}, {"text": "Union"}, {"text": "indeed"}, {"text": "wanted"}, {"text": "*-1"}, {"text": "to"}, {"text": "get"}, {"text": "into"}, {"text": "the"}, {"text": "telephone"}, {"text": "business"}, {"text": "."}, {"text": "It"}, {"text": "acquired"}, {"text": "Thomas"}, {"text": "Edison"}, {"text": "'s"}, {"text": "microphone"}, {"text": "patent"}, {"text": "and"}, {"text": "then"}, {"text": "immediately"}, {"text": "sued"}, {"text": "the"}, {"text": "Bell"}, {"text": "Co."}, {"text": "*-1"}, {"text": "claiming"}, {"text": "that"}, {"text": "the"}, {"text": "microphone"}, {"text": "invented"}, {"text": "*"}, {"text": "by"}, {"text": "my"}, {"text": "grandfather"}, {"text": ","}, {"text": "Emile"}, {"text": "Berliner"}, {"text": ","}, {"text": "which"}, {"text": "*T*-2"}, {"text": "had"}, {"text": "been"}, {"text": "sold"}, {"text": "*-144"}, {"text": "to"}, {"text": "Bell"}, {"text": "for"}, {"text": "a"}, {"text": "princely"}, {"text": "$"}, {"text": "50,000"}, {"text": "*U*"}, {"text": ","}, {"text": "infringed"}, {"text": "upon"}, {"text": "Western"}, {"text": "Union"}, {"text": "'s"}, {"text": "Edison"}, {"text": "patent"}, {"text": "."}, {"text": "When"}, {"text": "Bell"}, {"text": "established"}, {"text": "that"}, {"text": "the"}, {"text": "Berliner"}, {"text": "patent"}, {"text": "caveat"}, {"text": "was"}, {"text": "registered"}, {"text": "*-145"}, {"text": "10"}, {"text": "days"}, {"text": "before"}, {"text": "Edison"}, {"text": "'s"}, {"text": "application"}, {"text": "*T*-1"}, {"text": ","}, {"text": "Western"}, {"text": "Union"}, {"text": "dropped"}, {"text": "the"}, {"text": "lawsuit"}, {"text": "and"}, {"text": "agreed"}, {"text": "*-2"}, {"text": "never"}, {"text": "to"}, {"text": "enter"}, {"text": "the"}, {"text": "telephone"}, {"text": "business"}, {"text": "--"}, {"text": "the"}, {"text": "basis"}, {"text": "for"}, {"text": "the"}, {"text": "company"}, {"text": "'s"}, {"text": "current"}, {"text": "plight"}, {"text": "."}, {"text": "Oliver"}, {"text": "Berliner"}, {"text": "Beverly"}, {"text": "Hills"}, {"text": ","}, {"text": "Calif"}, {"text": "."}, {"text": "Troubled"}, {"text": "NBI"}, {"text": "Inc."}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "fired"}, {"text": "more"}, {"text": "than"}, {"text": "half"}, {"text": "its"}, {"text": "work"}, {"text": "force"}, {"text": "and"}, {"text": "is"}, {"text": "discontinuing"}, {"text": "its"}, {"text": "hardware"}, {"text": "business"}, {"text": "*-1"}, {"text": "to"}, {"text": "focus"}, {"text": "on"}, {"text": "its"}, {"text": "software"}, {"text": "and"}, {"text": "service"}, {"text": "operations"}, {"text": "."}, {"text": "The"}, {"text": "ailing"}, {"text": "company"}, {"text": ","}, {"text": "which"}, {"text": "*T*-236"}, {"text": "has"}, {"text": "reported"}, {"text": "net"}, {"text": "losses"}, {"text": "for"}, {"text": "16"}, {"text": "consecutive"}, {"text": "quarters"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "wo"}, {"text": "n't"}, {"text": "manufacture"}, {"text": "network"}, {"text": "computer"}, {"text": "systems"}, {"text": "any"}, {"text": "more"}, {"text": "and"}, {"text": "will"}, {"text": "greatly"}, {"text": "reduce"}, {"text": "its"}, {"text": "costly"}, {"text": "direct"}, {"text": "sales"}, {"text": "force"}, {"text": "."}, {"text": "Altogether"}, {"text": ","}, {"text": "NBI"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "will"}, {"text": "eliminate"}, {"text": "266"}, {"text": "jobs"}, {"text": "at"}, {"text": "its"}, {"text": "Boulder"}, {"text": "headquarters"}, {"text": ","}, {"text": "176"}, {"text": "field"}, {"text": "sales"}, {"text": "jobs"}, {"text": "and"}, {"text": "50"}, {"text": "jobs"}, {"text": "at"}, {"text": "its"}, {"text": "Canadian"}, {"text": "and"}, {"text": "United"}, {"text": "Kingdom"}, {"text": "headquarters"}, {"text": "."}, {"text": "The"}, {"text": "company"}, {"text": "'s"}, {"text": "work"}, {"text": "force"}, {"text": "will"}, {"text": "fall"}, {"text": "to"}, {"text": "about"}, {"text": "400"}, {"text": "people"}, {"text": "."}, {"text": "Stephen"}, {"text": "G."}, {"text": "Jerritts"}, {"text": ","}, {"text": "president"}, {"text": "and"}, {"text": "chief"}, {"text": "executive"}, {"text": "officer"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "customers"}, {"text": "were"}, {"text": "n't"}, {"text": "willing"}, {"text": "*-1"}, {"text": "to"}, {"text": "commit"}, {"text": "to"}, {"text": "an"}, {"text": "expensive"}, {"text": "NBI"}, {"text": "hardware"}, {"text": "systems"}, {"text": "because"}, {"text": "of"}, {"text": "the"}, {"text": "company"}, {"text": "'s"}, {"text": "financial"}, {"text": "troubles"}, {"text": "."}, {"text": "Further"}, {"text": ","}, {"text": "he"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": ","}, {"text": "the"}, {"text": "company"}, {"text": "does"}, {"text": "n't"}, {"text": "have"}, {"text": "the"}, {"text": "capital"}, {"text": "needed"}, {"text": "*"}, {"text": "*"}, {"text": "to"}, {"text": "build"}, {"text": "the"}, {"text": "business"}, {"text": "over"}, {"text": "the"}, {"text": "next"}, {"text": "year"}, {"text": "or"}, {"text": "two"}, {"text": "."}, {"text": "``"}, {"text": "We"}, {"text": "flat"}, {"text": "ran"}, {"text": "out"}, {"text": "of"}, {"text": "financing"}, {"text": "resources"}, {"text": ","}, {"text": "''"}, {"text": "Mr."}, {"text": "Jerritts"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "."}, {"text": "``"}, {"text": "We"}, {"text": "had"}, {"text": "*-1"}, {"text": "to"}, {"text": "do"}, {"text": "something"}, {"text": "structurally"}, {"text": "and"}, {"text": "radically"}, {"text": "different"}, {"text": "."}, {"text": "''"}, {"text": "As"}, {"text": "a"}, {"text": "result"}, {"text": ","}, {"text": "he"}, {"text": "said"}, {"text": "0"}, {"text": "NBI"}, {"text": "will"}, {"text": "focus"}, {"text": "on"}, {"text": "*"}, {"text": "servicing"}, {"text": "its"}, {"text": "installed"}, {"text": "base"}, {"text": "of"}, {"text": "systems"}, {"text": ","}, {"text": "trying"}, {"text": "*-4"}, {"text": "to"}, {"text": "provide"}, {"text": "maintenance"}, {"text": "for"}, {"text": "other"}, {"text": "manufacturers"}, {"text": "and"}, {"text": "expanding"}, {"text": "its"}, {"text": "software"}, {"text": "business"}, {"text": ","}, {"text": "*-4"}, {"text": "using"}, {"text": "some"}, {"text": "of"}, {"text": "the"}, {"text": "applications"}, {"text": "0"}, {"text": "it"}, {"text": "developed"}, {"text": "*T*-3"}, {"text": "for"}, {"text": "its"}, {"text": "hardware"}, {"text": "."}, {"text": "The"}, {"text": "company"}, {"text": "currently"}, {"text": "offers"}, {"text": "a"}, {"text": "word-processing"}, {"text": "package"}, {"text": "for"}, {"text": "personal"}, {"text": "computers"}, {"text": "called"}, {"text": "*"}, {"text": "Legend"}, {"text": "."}, {"text": "The"}, {"text": "company"}, {"text": ","}, {"text": "which"}, {"text": "*T*-237"}, {"text": "recently"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "lacked"}, {"text": "the"}, {"text": "profits"}, {"text": "and"}, {"text": "capital"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "pay"}, {"text": "dividends"}, {"text": "on"}, {"text": "its"}, {"text": "Series"}, {"text": "A"}, {"text": "convertible"}, {"text": "preferred"}, {"text": "stock"}, {"text": "*T*-1"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "has"}, {"text": "hired"}, {"text": "an"}, {"text": "investment"}, {"text": "banker"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "to"}, {"text": "help"}, {"text": "it"}, {"text": "raise"}, {"text": "additional"}, {"text": "cash"}, {"text": "."}, {"text": "In"}, {"text": "New"}, {"text": "York"}, {"text": "Stock"}, {"text": "Exchange"}, {"text": "composite"}, {"text": "trading"}, {"text": "yesterday"}, {"text": ","}, {"text": "NBI"}, {"text": "common"}, {"text": "closed"}, {"text": "at"}, {"text": "93"}, {"text": "cents"}, {"text": "a"}, {"text": "share"}, {"text": ","}, {"text": "up"}, {"text": "31"}, {"text": "cents"}, {"text": "."}, {"text": "It"}, {"text": "was"}, {"text": "Richard"}, {"text": "Nixon"}, {"text": "'s"}, {"text": "first"}, {"text": "visit"}, {"text": "to"}, {"text": "China"}, {"text": "in"}, {"text": "1972"}, {"text": "that"}, {"text": "*T*-238"}, {"text": "set"}, {"text": "in"}, {"text": "motion"}, {"text": "the"}, {"text": "historic"}, {"text": "rapprochement"}, {"text": "between"}, {"text": "Beijing"}, {"text": "and"}, {"text": "Washington"}, {"text": "."}, {"text": "But"}, {"text": "the"}, {"text": "former"}, {"text": "U.S."}, {"text": "president"}, {"text": "'s"}, {"text": "sixth"}, {"text": "visit"}, {"text": "to"}, {"text": "China"}, {"text": ","}, {"text": "during"}, {"text": "which"}, {"text": "he"}, {"text": "spoke"}, {"text": "at"}, {"text": "length"}, {"text": "with"}, {"text": "Chinese"}, {"text": "leaders"}, {"text": "*T*-1"}, {"text": ","}, {"text": "was"}, {"text": "nowhere"}, {"text": "near"}, {"text": "as"}, {"text": "successful"}, {"text": "at"}, {"text": "*"}, {"text": "easing"}, {"text": "strains"}, {"text": "that"}, {"text": "*T*-239"}, {"text": "have"}, {"text": "recently"}, {"text": "afflicted"}, {"text": "the"}, {"text": "Sino-U.S."}, {"text": "relationship"}, {"text": "."}, {"text": "Mr."}, {"text": "Nixon"}, {"text": ","}, {"text": "the"}, {"text": "most"}, {"text": "prominent"}, {"text": "American"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "to"}, {"text": "come"}, {"text": "to"}, {"text": "China"}, {"text": "since"}, {"text": "Beijing"}, {"text": "'s"}, {"text": "bloody"}, {"text": "suppression"}, {"text": "of"}, {"text": "pro-democracy"}, {"text": "demonstrators"}, {"text": "in"}, {"text": "June"}, {"text": ","}, {"text": "harped"}, {"text": "on"}, {"text": "international"}, {"text": "outrage"}, {"text": "over"}, {"text": "the"}, {"text": "massacre"}, {"text": "."}, {"text": "The"}, {"text": "Chinese"}, {"text": ","}, {"text": "in"}, {"text": "turn"}, {"text": ","}, {"text": "took"}, {"text": "aim"}, {"text": "at"}, {"text": "American"}, {"text": "``"}, {"text": "interference"}, {"text": "''"}, {"text": "in"}, {"text": "China"}, {"text": "'s"}, {"text": "domestic"}, {"text": "affairs"}, {"text": "."}, {"text": "One"}, {"text": "official"}, {"text": "newspaper"}, {"text": ","}, {"text": "Legal"}, {"text": "Daily"}, {"text": ","}, {"text": "even"}, {"text": "directly"}, {"text": "criticized"}, {"text": "Mr."}, {"text": "Nixon"}, {"text": ","}, {"text": "who"}, {"text": "*T*-240"}, {"text": "is"}, {"text": "normally"}, {"text": "referred"}, {"text": "to"}, {"text": "*T*-1"}, {"text": "here"}, {"text": "as"}, {"text": "an"}, {"text": "``"}, {"text": "old"}, {"text": "friend"}, {"text": "."}, {"text": "''"}, {"text": "The"}, {"text": "paper"}, {"text": "accused"}, {"text": "him"}, {"text": "of"}, {"text": "*-3"}, {"text": "being"}, {"text": "a"}, {"text": "leading"}, {"text": "proponent"}, {"text": "of"}, {"text": "``"}, {"text": "peaceful"}, {"text": "evolution"}, {"text": ","}, {"text": "''"}, {"text": "a"}, {"text": "catch"}, {"text": "phrase"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "describe"}, {"text": "what"}, {"text": "China"}, {"text": "believes"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "is"}, {"text": "the"}, {"text": "policy"}, {"text": "*ICH*-4"}, {"text": "of"}, {"text": "Western"}, {"text": "countries"}, {"text": "*"}, {"text": "to"}, {"text": "seduce"}, {"text": "socialist"}, {"text": "nations"}, {"text": "into"}, {"text": "the"}, {"text": "capitalist"}, {"text": "sphere"}, {"text": "*T*-2"}, {"text": "."}, {"text": "The"}, {"text": "tension"}, {"text": "was"}, {"text": "evident"}, {"text": "on"}, {"text": "Wednesday"}, {"text": "evening"}, {"text": "during"}, {"text": "Mr."}, {"text": "Nixon"}, {"text": "'s"}, {"text": "final"}, {"text": "banquet"}, {"text": "toast"}, {"text": ","}, {"text": "normally"}, {"text": "an"}, {"text": "opportunity"}, {"text": "for"}, {"text": "*"}, {"text": "reciting"}, {"text": "platitudes"}, {"text": "about"}, {"text": "eternal"}, {"text": "friendship"}, {"text": "."}, {"text": "Instead"}, {"text": ","}, {"text": "Mr."}, {"text": "Nixon"}, {"text": "reminded"}, {"text": "his"}, {"text": "host"}, {"text": ","}, {"text": "Chinese"}, {"text": "President"}, {"text": "Yang"}, {"text": "Shangkun"}, {"text": ","}, {"text": "that"}, {"text": "Americans"}, {"text": "have"}, {"text": "n't"}, {"text": "forgiven"}, {"text": "China"}, {"text": "'s"}, {"text": "leaders"}, {"text": "for"}, {"text": "the"}, {"text": "military"}, {"text": "assault"}, {"text": "of"}, {"text": "June"}, {"text": "3-4"}, {"text": "that"}, {"text": "*T*-241"}, {"text": "killed"}, {"text": "hundreds"}, {"text": ","}, {"text": "and"}, {"text": "perhaps"}, {"text": "thousands"}, {"text": ","}, {"text": "of"}, {"text": "demonstrators"}, {"text": "."}, {"text": "``"}, {"text": "Many"}, {"text": "in"}, {"text": "the"}, {"text": "United"}, {"text": "States"}, {"text": ","}, {"text": "including"}, {"text": "many"}, {"text": "friends"}, {"text": "of"}, {"text": "China"}, {"text": ","}, {"text": "believe"}, {"text": "0"}, {"text": "the"}, {"text": "crackdown"}, {"text": "was"}, {"text": "excessive"}, {"text": "and"}, {"text": "unjustified"}, {"text": ","}, {"text": "''"}, {"text": "Mr."}, {"text": "Nixon"}, {"text": "told"}, {"text": "Mr."}, {"text": "Yang"}, {"text": ","}, {"text": "who"}, {"text": "*T*-242"}, {"text": "was"}, {"text": "directly"}, {"text": "involved"}, {"text": "*-2"}, {"text": "in"}, {"text": "*"}, {"text": "ordering"}, {"text": "the"}, {"text": "attack"}, {"text": "*T*-1"}, {"text": "."}, {"text": "``"}, {"text": "The"}, {"text": "events"}, {"text": "of"}, {"text": "April"}, {"text": "through"}, {"text": "June"}, {"text": "damaged"}, {"text": "the"}, {"text": "respect"}, {"text": "and"}, {"text": "confidence"}, {"text": "which"}, {"text": "most"}, {"text": "Americans"}, {"text": "previously"}, {"text": "had"}, {"text": "*T*-1"}, {"text": "for"}, {"text": "the"}, {"text": "leaders"}, {"text": "of"}, {"text": "China"}, {"text": "."}, {"text": "''"}, {"text": "The"}, {"text": "Chinese"}, {"text": "responded"}, {"text": "in"}, {"text": "an"}, {"text": "equally"}, {"text": "undiplomatic"}, {"text": "fashion"}, {"text": "."}, {"text": "In"}, {"text": "talks"}, {"text": "with"}, {"text": "Mr."}, {"text": "Nixon"}, {"text": ","}, {"text": "Chinese"}, {"text": "leaders"}, {"text": "expressed"}, {"text": "no"}, {"text": "regret"}, {"text": "for"}, {"text": "the"}, {"text": "killings"}, {"text": ","}, {"text": "and"}, {"text": "even"}, {"text": "suggested"}, {"text": "that"}, {"text": "the"}, {"text": "U.S."}, {"text": "was"}, {"text": "prominently"}, {"text": "involved"}, {"text": "*-1"}, {"text": "in"}, {"text": "the"}, {"text": "demonstrations"}, {"text": "this"}, {"text": "spring"}, {"text": "."}, {"text": "In"}, {"text": "a"}, {"text": "meeting"}, {"text": "Tuesday"}, {"text": ","}, {"text": "supreme"}, {"text": "leader"}, {"text": ","}, {"text": "Deng"}, {"text": "Xiaoping"}, {"text": ","}, {"text": "told"}, {"text": "Mr."}, {"text": "Nixon"}, {"text": ","}, {"text": "``"}, {"text": "*"}, {"text": "Frankly"}, {"text": "speaking"}, {"text": ","}, {"text": "the"}, {"text": "U.S."}, {"text": "was"}, {"text": "involved"}, {"text": "*-146"}, {"text": "too"}, {"text": "deeply"}, {"text": "in"}, {"text": "the"}, {"text": "turmoil"}, {"text": "and"}, {"text": "counterrevolutionary"}, {"text": "rebellion"}, {"text": "which"}, {"text": "*T*-243"}, {"text": "occurred"}, {"text": "in"}, {"text": "Beijing"}, {"text": "not"}, {"text": "long"}, {"text": "ago"}, {"text": "."}, {"text": "China"}, {"text": "was"}, {"text": "the"}, {"text": "real"}, {"text": "victim"}, {"text": "and"}, {"text": "it"}, {"text": "*EXP*-1"}, {"text": "is"}, {"text": "unjust"}, {"text": "*"}, {"text": "to"}, {"text": "reprove"}, {"text": "China"}, {"text": "for"}, {"text": "it"}, {"text": "."}, {"text": "''"}, {"text": "Despite"}, {"text": "the"}, {"text": "harsh"}, {"text": "exchanges"}, {"text": ","}, {"text": "the"}, {"text": "U.S."}, {"text": "and"}, {"text": "China"}, {"text": "still"}, {"text": "seem"}, {"text": "*-1"}, {"text": "to"}, {"text": "be"}, {"text": "looking"}, {"text": "for"}, {"text": "a"}, {"text": "way"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "mend"}, {"text": "relations"}, {"text": ","}, {"text": "which"}, {"text": "*T*-244"}, {"text": "have"}, {"text": "deteriorated"}, {"text": "into"}, {"text": "what"}, {"text": "Mr."}, {"text": "Nixon"}, {"text": "referred"}, {"text": "to"}, {"text": "*T*-2"}, {"text": "as"}, {"text": "``"}, {"text": "the"}, {"text": "greatest"}, {"text": "crisis"}, {"text": "in"}, {"text": "Chinese-American"}, {"text": "relations"}, {"text": "''"}, {"text": "since"}, {"text": "his"}, {"text": "initial"}, {"text": "visit"}, {"text": "to"}, {"text": "China"}, {"text": "17"}, {"text": "years"}, {"text": "ago"}, {"text": "*T*-3"}, {"text": "."}, {"text": "In"}, {"text": "his"}, {"text": "return"}, {"text": "toast"}, {"text": "to"}, {"text": "Mr."}, {"text": "Nixon"}, {"text": ","}, {"text": "Mr."}, {"text": "Yang"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "relationship"}, {"text": "had"}, {"text": "reached"}, {"text": "a"}, {"text": "``"}, {"text": "stalemate"}, {"text": "."}, {"text": "''"}, {"text": "Relations"}, {"text": "between"}, {"text": "China"}, {"text": "and"}, {"text": "the"}, {"text": "U.S."}, {"text": "have"}, {"text": "been"}, {"text": "tense"}, {"text": "since"}, {"text": "June"}, {"text": "7"}, {"text": ","}, {"text": "when"}, {"text": "Chinese"}, {"text": "dissident"}, {"text": "Fang"}, {"text": "Lizhi"}, {"text": "and"}, {"text": "his"}, {"text": "wife"}, {"text": ","}, {"text": "Li"}, {"text": "Shuxian"}, {"text": ","}, {"text": "took"}, {"text": "refuge"}, {"text": "in"}, {"text": "the"}, {"text": "U.S."}, {"text": "Embassy"}, {"text": "in"}, {"text": "Beijing"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Shortly"}, {"text": "afterwards"}, {"text": ","}, {"text": "Mr."}, {"text": "Bush"}, {"text": "imposed"}, {"text": "a"}, {"text": "series"}, {"text": "of"}, {"text": "anti-China"}, {"text": "sanctions"}, {"text": ","}, {"text": "including"}, {"text": "suspension"}, {"text": "of"}, {"text": "most"}, {"text": "high-level"}, {"text": "talks"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "could"}, {"text": "be"}, {"text": "codified"}, {"text": "*-147"}, {"text": "in"}, {"text": "U.S."}, {"text": "congressional"}, {"text": "legislation"}, {"text": "in"}, {"text": "the"}, {"text": "coming"}, {"text": "weeks"}, {"text": "."}, {"text": "Mr."}, {"text": "Nixon"}, {"text": "is"}, {"text": "traveling"}, {"text": "in"}, {"text": "China"}, {"text": "as"}, {"text": "a"}, {"text": "private"}, {"text": "citizen"}, {"text": ","}, {"text": "but"}, {"text": "he"}, {"text": "has"}, {"text": "made"}, {"text": "clear"}, {"text": "that"}, {"text": "he"}, {"text": "is"}, {"text": "an"}, {"text": "unofficial"}, {"text": "envoy"}, {"text": "for"}, {"text": "the"}, {"text": "Bush"}, {"text": "administration"}, {"text": "."}, {"text": "Mr."}, {"text": "Nixon"}, {"text": "met"}, {"text": "Mr."}, {"text": "Bush"}, {"text": "and"}, {"text": "his"}, {"text": "national"}, {"text": "security"}, {"text": "adviser"}, {"text": ","}, {"text": "Brent"}, {"text": "Scowcroft"}, {"text": ","}, {"text": "before"}, {"text": "*-1"}, {"text": "coming"}, {"text": "to"}, {"text": "China"}, {"text": "on"}, {"text": "Saturday"}, {"text": "."}, {"text": "And"}, {"text": "he"}, {"text": "plans"}, {"text": "*-1"}, {"text": "to"}, {"text": "brief"}, {"text": "the"}, {"text": "president"}, {"text": "at"}, {"text": "the"}, {"text": "end"}, {"text": "of"}, {"text": "the"}, {"text": "week"}, {"text": ","}, {"text": "U.S."}, {"text": "sources"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "."}, {"text": "Mr."}, {"text": "Nixon"}, {"text": "was"}, {"text": "*-1"}, {"text": "to"}, {"text": "leave"}, {"text": "China"}, {"text": "today"}, {"text": "."}, {"text": "According"}, {"text": "to"}, {"text": "an"}, {"text": "American"}, {"text": "member"}, {"text": "of"}, {"text": "the"}, {"text": "Nixon"}, {"text": "party"}, {"text": ","}, {"text": "the"}, {"text": "former"}, {"text": "president"}, {"text": "raised"}, {"text": "a"}, {"text": "number"}, {"text": "of"}, {"text": "controversial"}, {"text": "issues"}, {"text": "in"}, {"text": "his"}, {"text": "20"}, {"text": "hours"}, {"text": "of"}, {"text": "talks"}, {"text": "with"}, {"text": "top-level"}, {"text": "Chinese"}, {"text": "officials"}, {"text": "."}, {"text": "These"}, {"text": "included"}, {"text": "China"}, {"text": "'s"}, {"text": "economic"}, {"text": "policies"}, {"text": ","}, {"text": "human"}, {"text": "rights"}, {"text": "and"}, {"text": "the"}, {"text": "question"}, {"text": "of"}, {"text": "Mr."}, {"text": "Fang"}, {"text": "."}, {"text": "Mr."}, {"text": "Nixon"}, {"text": "also"}, {"text": "proposed"}, {"text": "that"}, {"text": "China"}, {"text": "restore"}, {"text": "its"}, {"text": "participation"}, {"text": "in"}, {"text": "the"}, {"text": "Fulbright"}, {"text": "Program"}, {"text": ","}, {"text": "a"}, {"text": "U.S."}, {"text": "government-funded"}, {"text": "academic"}, {"text": "exchange"}, {"text": "."}, {"text": "China"}, {"text": "pulled"}, {"text": "out"}, {"text": "of"}, {"text": "the"}, {"text": "program"}, {"text": "in"}, {"text": "July"}, {"text": "."}, {"text": "In"}, {"text": "his"}, {"text": "talks"}, {"text": ","}, {"text": "the"}, {"text": "former"}, {"text": "president"}, {"text": "urged"}, {"text": "China"}, {"text": "'s"}, {"text": "leaders"}, {"text": "*-1"}, {"text": "to"}, {"text": "acknowledge"}, {"text": "that"}, {"text": "their"}, {"text": "nation"}, {"text": "is"}, {"text": "part"}, {"text": "of"}, {"text": "the"}, {"text": "world"}, {"text": "community"}, {"text": "and"}, {"text": "welcome"}, {"text": "the"}, {"text": "infusion"}, {"text": "of"}, {"text": "outside"}, {"text": "contacts"}, {"text": "and"}, {"text": "ideas"}, {"text": "."}, {"text": "``"}, {"text": "Ideas"}, {"text": "are"}, {"text": "going"}, {"text": "over"}, {"text": "borders"}, {"text": ","}, {"text": "and"}, {"text": "there"}, {"text": "'s"}, {"text": "no"}, {"text": "SDI"}, {"text": "ideological"}, {"text": "weapon"}, {"text": "that"}, {"text": "*T*-245"}, {"text": "can"}, {"text": "shoot"}, {"text": "them"}, {"text": "down"}, {"text": ","}, {"text": "''"}, {"text": "he"}, {"text": "told"}, {"text": "a"}, {"text": "group"}, {"text": "of"}, {"text": "Americans"}, {"text": "*T*-1"}, {"text": "at"}, {"text": "the"}, {"text": "U.S."}, {"text": "Embassy"}, {"text": "on"}, {"text": "Wednesday"}, {"text": "."}, {"text": "There"}, {"text": "are"}, {"text": "no"}, {"text": "signs"}, {"text": ","}, {"text": "however"}, {"text": ","}, {"text": "of"}, {"text": "China"}, {"text": "'s"}, {"text": "yielding"}, {"text": "on"}, {"text": "key"}, {"text": "issues"}, {"text": "."}, {"text": "But"}, {"text": "in"}, {"text": "one"}, {"text": "minor"}, {"text": "matter"}, {"text": ","}, {"text": "Mr."}, {"text": "Nixon"}, {"text": "appears"}, {"text": "*-1"}, {"text": "to"}, {"text": "have"}, {"text": "gained"}, {"text": "a"}, {"text": "concession"}, {"text": "."}, {"text": "In"}, {"text": "a"}, {"text": "meeting"}, {"text": "with"}, {"text": "Premier"}, {"text": "Li"}, {"text": "Peng"}, {"text": "on"}, {"text": "Monday"}, {"text": ","}, {"text": "Mr."}, {"text": "Nixon"}, {"text": "said"}, {"text": "that"}, {"text": "he"}, {"text": "hoped"}, {"text": "0"}, {"text": "he"}, {"text": "would"}, {"text": "n't"}, {"text": "encounter"}, {"text": "guards"}, {"text": "with"}, {"text": "machine"}, {"text": "guns"}, {"text": "during"}, {"text": "his"}, {"text": "visit"}, {"text": "to"}, {"text": "the"}, {"text": "U.S."}, {"text": "Embassy"}, {"text": "."}, {"text": "Sure"}, {"text": "enough"}, {"text": ","}, {"text": "when"}, {"text": "he"}, {"text": "arrived"}, {"text": "at"}, {"text": "the"}, {"text": "embassy"}, {"text": "two"}, {"text": "days"}, {"text": "later"}, {"text": ","}, {"text": "the"}, {"text": "machine-gun-toting"}, {"text": "guards"}, {"text": "were"}, {"text": "gone"}, {"text": "--"}, {"text": "for"}, {"text": "the"}, {"text": "first"}, {"text": "time"}, {"text": "in"}, {"text": "five"}, {"text": "months"}, {"text": "."}, {"text": "A"}, {"text": "few"}, {"text": "blocks"}, {"text": "away"}, {"text": ","}, {"text": "at"}, {"text": "the"}, {"text": "U.S."}, {"text": "ambassador"}, {"text": "'s"}, {"text": "residence"}, {"text": ","}, {"text": "the"}, {"text": "guards"}, {"text": "encircling"}, {"text": "the"}, {"text": "compound"}, {"text": "also"}, {"text": "had"}, {"text": "discarded"}, {"text": "their"}, {"text": "Uzi-model"}, {"text": "arms"}, {"text": "for"}, {"text": "the"}, {"text": "first"}, {"text": "time"}, {"text": "since"}, {"text": "early"}, {"text": "June"}, {"text": "."}, {"text": "But"}, {"text": "the"}, {"text": "guards"}, {"text": "there"}, {"text": "retained"}, {"text": "their"}, {"text": "pistols"}, {"text": ","}, {"text": "and"}, {"text": "a"}, {"text": "large"}, {"text": "contingent"}, {"text": "of"}, {"text": "plainclothes"}, {"text": "police"}, {"text": "remained"}, {"text": "nearby"}, {"text": "in"}, {"text": "unmarked"}, {"text": "cars"}, {"text": "."}, {"text": "Moreover"}, {"text": ","}, {"text": "police"}, {"text": "and"}, {"text": "soldiers"}, {"text": "continue"}, {"text": "*-1"}, {"text": "to"}, {"text": "harass"}, {"text": "Americans"}, {"text": ","}, {"text": "who"}, {"text": "*T*-246"}, {"text": "have"}, {"text": "filed"}, {"text": "several"}, {"text": "protests"}, {"text": "with"}, {"text": "the"}, {"text": "Foreign"}, {"text": "Ministry"}, {"text": "in"}, {"text": "the"}, {"text": "past"}, {"text": "week"}, {"text": "."}, {"text": "Several"}, {"text": "times"}, {"text": ","}, {"text": "Chinese"}, {"text": "guards"}, {"text": "have"}, {"text": "pointed"}, {"text": "their"}, {"text": "automatic"}, {"text": "rifles"}, {"text": "at"}, {"text": "young"}, {"text": "children"}, {"text": "of"}, {"text": "U.S."}, {"text": "diplomats"}, {"text": "and"}, {"text": "clicked"}, {"text": "the"}, {"text": "trigger"}, {"text": "."}, {"text": "The"}, {"text": "rifles"}, {"text": "were"}, {"text": "n't"}, {"text": "loaded"}, {"text": "*-1"}, {"text": "."}, {"text": "Your"}, {"text": "Oct."}, {"text": "6"}, {"text": "article"}, {"text": "``"}, {"text": "Japan"}, {"text": "'s"}, {"text": "Financial"}, {"text": "Firms"}, {"text": "Lure"}, {"text": "Science"}, {"text": "Graduates"}, {"text": "''"}, {"text": "states"}, {"text": ","}, {"text": "``"}, {"text": "Industrial"}, {"text": "companies"}, {"text": "are"}, {"text": "accusing"}, {"text": "financial"}, {"text": "institutions"}, {"text": "of"}, {"text": "*-1"}, {"text": "jeopardizing"}, {"text": "Japan"}, {"text": "'s"}, {"text": "economy"}, {"text": "by"}, {"text": "*-2"}, {"text": "raising"}, {"text": "the"}, {"text": "salary"}, {"text": "stakes"}, {"text": "for"}, {"text": "new"}, {"text": "employees"}, {"text": "."}, {"text": "''"}, {"text": "The"}, {"text": "Japanese"}, {"text": "industrial"}, {"text": "companies"}, {"text": "should"}, {"text": "know"}, {"text": "better"}, {"text": "."}, {"text": "They"}, {"text": "are"}, {"text": "barking"}, {"text": "up"}, {"text": "the"}, {"text": "wrong"}, {"text": "tree"}, {"text": ","}, {"text": "because"}, {"text": "it"}, {"text": "*EXP*-1"}, {"text": "is"}, {"text": "basically"}, {"text": "their"}, {"text": "fault"}, {"text": "0"}, {"text": "they"}, {"text": "ca"}, {"text": "n't"}, {"text": "attract"}, {"text": "new"}, {"text": "employees"}, {"text": "."}, {"text": "Takuma"}, {"text": "Yamamoto"}, {"text": ","}, {"text": "president"}, {"text": "of"}, {"text": "Fujitsu"}, {"text": "Ltd."}, {"text": ","}, {"text": "believes"}, {"text": "``"}, {"text": "0"}, {"text": "the"}, {"text": "`"}, {"text": "money"}, {"text": "worship"}, {"text": "'"}, {"text": "among"}, {"text": "young"}, {"text": "people"}, {"text": "..."}, {"text": "caused"}, {"text": "the"}, {"text": "problem"}, {"text": "."}, {"text": "''"}, {"text": "He"}, {"text": "is"}, {"text": "just"}, {"text": "passing"}, {"text": "the"}, {"text": "buck"}, {"text": "to"}, {"text": "young"}, {"text": "people"}, {"text": "."}, {"text": "What"}, {"text": "*T*-247"}, {"text": "'s"}, {"text": "wrong"}, {"text": "with"}, {"text": "*"}, {"text": "asking"}, {"text": "for"}, {"text": "more"}, {"text": "money"}, {"text": "?"}, {"text": "Money"}, {"text": "is"}, {"text": "not"}, {"text": "everything"}, {"text": ","}, {"text": "but"}, {"text": "it"}, {"text": "is"}, {"text": "necessary"}, {"text": ","}, {"text": "and"}, {"text": "business"}, {"text": "is"}, {"text": "not"}, {"text": "volunteer"}, {"text": "work"}, {"text": "."}, {"text": "It"}, {"text": "*EXP*-1"}, {"text": "is"}, {"text": "not"}, {"text": "unethical"}, {"text": "*"}, {"text": "to"}, {"text": "choose"}, {"text": "a"}, {"text": "higher-salaried"}, {"text": "job"}, {"text": "."}, {"text": "Unfortunately"}, {"text": ","}, {"text": "Japanese"}, {"text": "manufacturers"}, {"text": "have"}, {"text": "neither"}, {"text": "good"}, {"text": "working"}, {"text": "conditions"}, {"text": "nor"}, {"text": "good"}, {"text": "compensation"}, {"text": "packages"}, {"text": "."}, {"text": "I"}, {"text": "get"}, {"text": "the"}, {"text": "impression"}, {"text": "that"}, {"text": "some"}, {"text": "Japanese"}, {"text": "managers"}, {"text": "believe"}, {"text": "0"}, {"text": "*"}, {"text": "working"}, {"text": "harder"}, {"text": "for"}, {"text": "less"}, {"text": "money"}, {"text": "is"}, {"text": "beautiful"}, {"text": "."}, {"text": "I"}, {"text": "visited"}, {"text": "a"}, {"text": "lot"}, {"text": "of"}, {"text": "major"}, {"text": "Japanese"}, {"text": "manufacturers"}, {"text": ","}, {"text": "but"}, {"text": "I"}, {"text": "never"}, {"text": "felt"}, {"text": "0"}, {"text": "I"}, {"text": "would"}, {"text": "want"}, {"text": "*-1"}, {"text": "to"}, {"text": "be"}, {"text": "employed"}, {"text": "*-149"}, {"text": "by"}, {"text": "any"}, {"text": "of"}, {"text": "them"}, {"text": "."}, {"text": "Many"}, {"text": "of"}, {"text": "them"}, {"text": "recently"}, {"text": "have"}, {"text": "been"}, {"text": "spending"}, {"text": "a"}, {"text": "lot"}, {"text": "of"}, {"text": "money"}, {"text": "on"}, {"text": "public"}, {"text": "relations"}, {"text": "and"}, {"text": "advertising"}, {"text": "*-1"}, {"text": "to"}, {"text": "improve"}, {"text": "their"}, {"text": "images"}, {"text": ","}, {"text": "but"}, {"text": "they"}, {"text": "should"}, {"text": "realize"}, {"text": "that"}, {"text": "the"}, {"text": "most"}, {"text": "important"}, {"text": "thing"}, {"text": "is"}, {"text": "real"}, {"text": "change"}, {"text": ","}, {"text": "not"}, {"text": "*"}, {"text": "changing"}, {"text": "people"}, {"text": "'s"}, {"text": "perceptions"}, {"text": "."}, {"text": "If"}, {"text": "the"}, {"text": "Japanese"}, {"text": "companies"}, {"text": "are"}, {"text": "seriously"}, {"text": "considering"}, {"text": "their"}, {"text": "survival"}, {"text": ","}, {"text": "they"}, {"text": "could"}, {"text": "do"}, {"text": "at"}, {"text": "least"}, {"text": "three"}, {"text": "things"}, {"text": "*ICH*-2"}, {"text": "*-1"}, {"text": "to"}, {"text": "improve"}, {"text": "the"}, {"text": "situation"}, {"text": ":"}, {"text": "raise"}, {"text": "salaries"}, {"text": "higher"}, {"text": "than"}, {"text": "those"}, {"text": "of"}, {"text": "financial"}, {"text": "institutions"}, {"text": ";"}, {"text": "improve"}, {"text": "working"}, {"text": "conditions"}, {"text": "-LRB-"}, {"text": "better"}, {"text": "offices"}, {"text": "and"}, {"text": "more"}, {"text": "vacations"}, {"text": ","}, {"text": "for"}, {"text": "example"}, {"text": "-RRB-"}, {"text": ";"}, {"text": "accept"}, {"text": "and"}, {"text": "hire"}, {"text": "more"}, {"text": "labor"}, {"text": "from"}, {"text": "outside"}, {"text": "Japan"}, {"text": "."}, {"text": "Hiroshi"}, {"text": "Asada"}, {"text": "In"}, {"text": "reference"}, {"text": "to"}, {"text": "your"}, {"text": "Oct."}, {"text": "9"}, {"text": "page-one"}, {"text": "article"}, {"text": "``"}, {"text": "Barbara"}, {"text": "Bush"}, {"text": "Earns"}, {"text": "Even"}, {"text": "Higher"}, {"text": "Ratings"}, {"text": "Than"}, {"text": "the"}, {"text": "President"}, {"text": ","}, {"text": "''"}, {"text": "it"}, {"text": "*EXP*-1"}, {"text": "is"}, {"text": "regrettable"}, {"text": "that"}, {"text": "you"}, {"text": "must"}, {"text": "continually"}, {"text": "define"}, {"text": "blacks"}, {"text": "by"}, {"text": "our"}, {"text": "negatives"}, {"text": ":"}, {"text": "``"}, {"text": "Among"}, {"text": "liberals"}, {"text": ","}, {"text": "60"}, {"text": "%"}, {"text": "have"}, {"text": "positive"}, {"text": "views"}, {"text": "of"}, {"text": "her"}, {"text": ","}, {"text": "while"}, {"text": "50"}, {"text": "%"}, {"text": "approve"}, {"text": "of"}, {"text": "the"}, {"text": "president"}, {"text": "'s"}, {"text": "job"}, {"text": "performance"}, {"text": "."}, {"text": "In"}, {"text": "part"}, {"text": ","}, {"text": "this"}, {"text": "may"}, {"text": "reflect"}, {"text": "the"}, {"text": "fact"}, {"text": "that"}, {"text": "`"}, {"text": "she"}, {"text": "speaks"}, {"text": "a"}, {"text": "more"}, {"text": "progressive"}, {"text": "language"}, {"text": "'"}, {"text": "than"}, {"text": "her"}, {"text": "husband"}, {"text": "*?*"}, {"text": ","}, {"text": "as"}, {"text": "Columbia"}, {"text": "'s"}, {"text": "Prof"}, {"text": "."}, {"text": "-LCB-"}, {"text": "Ethel"}, {"text": "-RCB-"}, {"text": "Klein"}, {"text": "puts"}, {"text": "it"}, {"text": "."}, {"text": "Among"}, {"text": "professionals"}, {"text": ","}, {"text": "76"}, {"text": "%"}, {"text": "have"}, {"text": "a"}, {"text": "favorable"}, {"text": "opinion"}, {"text": "of"}, {"text": "her"}, {"text": ","}, {"text": "compared"}, {"text": "to"}, {"text": "62"}, {"text": "%"}, {"text": "who"}, {"text": "*T*-248"}, {"text": "approve"}, {"text": "of"}, {"text": "her"}, {"text": "husband"}, {"text": "'s"}, {"text": "performance"}, {"text": "."}, {"text": "While"}, {"text": "a"}, {"text": "quarter"}, {"text": "of"}, {"text": "black"}, {"text": "voters"}, {"text": "disapprove"}, {"text": "of"}, {"text": "Mr."}, {"text": "Bush"}, {"text": "'s"}, {"text": "handling"}, {"text": "of"}, {"text": "his"}, {"text": "job"}, {"text": ","}, {"text": "only"}, {"text": "15"}, {"text": "%"}, {"text": "have"}, {"text": "a"}, {"text": "negative"}, {"text": "view"}, {"text": "of"}, {"text": "his"}, {"text": "spouse"}, {"text": "."}, {"text": "''"}, {"text": "The"}, {"text": "statistics"}, {"text": "imply"}, {"text": "that"}, {"text": "three-quarters"}, {"text": "of"}, {"text": "blacks"}, {"text": "approve"}, {"text": "of"}, {"text": "Mr."}, {"text": "Bush"}, {"text": "'s"}, {"text": "job"}, {"text": "performance"}, {"text": "and"}, {"text": "85"}, {"text": "%"}, {"text": "of"}, {"text": "blacks"}, {"text": "approve"}, {"text": "of"}, {"text": "Mrs."}, {"text": "Bush"}, {"text": "."}, {"text": "If"}, {"text": "the"}, {"text": "assumption"}, {"text": "is"}, {"text": "that"}, {"text": "it"}, {"text": "*EXP*-1"}, {"text": "is"}, {"text": "surprising"}, {"text": "that"}, {"text": "so"}, {"text": "few"}, {"text": "blacks"}, {"text": "find"}, {"text": "Mr."}, {"text": "and"}, {"text": "Mrs."}, {"text": "Bush"}, {"text": "distasteful"}, {"text": ","}, {"text": "the"}, {"text": "positive"}, {"text": "view"}, {"text": "is"}, {"text": "even"}, {"text": "more"}, {"text": "newsworthy"}, {"text": "."}, {"text": "Such"}, {"text": "an"}, {"text": "editorial"}, {"text": "point"}, {"text": "of"}, {"text": "view"}, {"text": "perpetuates"}, {"text": "an"}, {"text": "insidious"}, {"text": ","}, {"text": "stereotyped"}, {"text": "perspective"}, {"text": "."}, {"text": "Why"}, {"text": "are"}, {"text": "we"}, {"text": "blacks"}, {"text": "continually"}, {"text": "defined"}, {"text": "*-1"}, {"text": "by"}, {"text": "our"}, {"text": "minority"}, {"text": "and"}, {"text": "the"}, {"text": "lowest"}, {"text": "common"}, {"text": "denominator"}, {"text": "."}, {"text": "Preston"}, {"text": "G."}, {"text": "Foster"}, {"text": "Birmingham"}, {"text": ","}, {"text": "Ala"}, {"text": "."}, {"text": "The"}, {"text": "National"}, {"text": "Association"}, {"text": "of"}, {"text": "Securities"}, {"text": "Dealers"}, {"text": ","}, {"text": "the"}, {"text": "self-regulatory"}, {"text": "organization"}, {"text": "for"}, {"text": "the"}, {"text": "over-the-counter"}, {"text": "securities"}, {"text": "markets"}, {"text": ","}, {"text": "disciplined"}, {"text": "a"}, {"text": "number"}, {"text": "of"}, {"text": "firms"}, {"text": "and"}, {"text": "individuals"}, {"text": "for"}, {"text": "alleged"}, {"text": "violations"}, {"text": "of"}, {"text": "industry"}, {"text": "rules"}, {"text": "."}, {"text": "Two"}, {"text": "firms"}, {"text": "were"}, {"text": "expelled"}, {"text": "*-150"}, {"text": "from"}, {"text": "the"}, {"text": "NASD"}, {"text": ","}, {"text": "three"}, {"text": "were"}, {"text": "suspended"}, {"text": "or"}, {"text": "barred"}, {"text": "*-1"}, {"text": "and"}, {"text": "nine"}, {"text": "were"}, {"text": "fined"}, {"text": "*-151"}, {"text": "."}, {"text": "First"}, {"text": "Securities"}, {"text": "Group"}, {"text": "of"}, {"text": "California"}, {"text": "and"}, {"text": "a"}, {"text": "principal"}, {"text": "of"}, {"text": "the"}, {"text": "firm"}, {"text": ","}, {"text": "Louis"}, {"text": "Fernando"}, {"text": "Vargas"}, {"text": "of"}, {"text": "Marina"}, {"text": "del"}, {"text": "Rey"}, {"text": ","}, {"text": "Calif."}, {"text": ","}, {"text": "were"}, {"text": "jointly"}, {"text": "fined"}, {"text": "*-1"}, {"text": "$"}, {"text": "15,000"}, {"text": "*U*"}, {"text": "and"}, {"text": "expelled"}, {"text": "*-1"}, {"text": "for"}, {"text": "alleged"}, {"text": "violations"}, {"text": "of"}, {"text": "reporting"}, {"text": "requirements"}, {"text": "on"}, {"text": "securities"}, {"text": "sales"}, {"text": "."}, {"text": "Also"}, {"text": ","}, {"text": "Mr."}, {"text": "Vargas"}, {"text": "was"}, {"text": "barred"}, {"text": "*-152"}, {"text": "from"}, {"text": "association"}, {"text": "with"}, {"text": "any"}, {"text": "NASD"}, {"text": "member"}, {"text": "."}, {"text": "Neither"}, {"text": "First"}, {"text": "Securities"}, {"text": ","}, {"text": "of"}, {"text": "Beverly"}, {"text": "Hills"}, {"text": ","}, {"text": "nor"}, {"text": "Mr."}, {"text": "Vargas"}, {"text": "could"}, {"text": "be"}, {"text": "reached"}, {"text": "*-153"}, {"text": "for"}, {"text": "comment"}, {"text": "."}, {"text": "A"}, {"text": "telephone-information"}, {"text": "operator"}, {"text": "had"}, {"text": "no"}, {"text": "listing"}, {"text": "for"}, {"text": "either"}, {"text": "party"}, {"text": "."}, {"text": "J.L."}, {"text": "Henry"}, {"text": "&"}, {"text": "Co."}, {"text": ","}, {"text": "Miami"}, {"text": ","}, {"text": "and"}, {"text": "a"}, {"text": "principal"}, {"text": "of"}, {"text": "the"}, {"text": "firm"}, {"text": ","}, {"text": "Henry"}, {"text": "I."}, {"text": "Otero"}, {"text": "of"}, {"text": "Miami"}, {"text": ","}, {"text": "were"}, {"text": "jointly"}, {"text": "fined"}, {"text": "*-1"}, {"text": "$"}, {"text": "30,000"}, {"text": "*U*"}, {"text": "and"}, {"text": "expelled"}, {"text": "*-1"}, {"text": ","}, {"text": "for"}, {"text": "alleged"}, {"text": "improper"}, {"text": "use"}, {"text": "of"}, {"text": "a"}, {"text": "customer"}, {"text": "'s"}, {"text": "funds"}, {"text": ","}, {"text": "among"}, {"text": "other"}, {"text": "things"}, {"text": "."}, {"text": "Also"}, {"text": ","}, {"text": "Mr."}, {"text": "Otero"}, {"text": "was"}, {"text": "barred"}, {"text": "*-154"}, {"text": "from"}, {"text": "association"}, {"text": "with"}, {"text": "any"}, {"text": "NASD"}, {"text": "member"}, {"text": "."}, {"text": "J.L."}, {"text": "Henry"}, {"text": "has"}, {"text": "n't"}, {"text": "any"}, {"text": "Miami"}, {"text": "telephone"}, {"text": "listing"}, {"text": ","}, {"text": "an"}, {"text": "operator"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Mr."}, {"text": "Otero"}, {"text": ","}, {"text": "who"}, {"text": "*T*-249"}, {"text": "apparently"}, {"text": "has"}, {"text": "an"}, {"text": "unpublished"}, {"text": "number"}, {"text": ","}, {"text": "also"}, {"text": "could"}, {"text": "n't"}, {"text": "be"}, {"text": "reached"}, {"text": "*-155"}, {"text": "."}, {"text": "Biscayne"}, {"text": "Securities"}, {"text": "Corp."}, {"text": ","}, {"text": "of"}, {"text": "Lauderhill"}, {"text": ","}, {"text": "Fla."}, {"text": ","}, {"text": "and"}, {"text": "a"}, {"text": "principal"}, {"text": "of"}, {"text": "the"}, {"text": "firm"}, {"text": ","}, {"text": "Alvin"}, {"text": "Rosenblum"}, {"text": "of"}, {"text": "Plantation"}, {"text": ","}, {"text": "Fla."}, {"text": ","}, {"text": "were"}, {"text": "jointly"}, {"text": "fined"}, {"text": "*-1"}, {"text": "$"}, {"text": "20,000"}, {"text": "*U*"}, {"text": "and"}, {"text": "given"}, {"text": "*-1"}, {"text": "10-day"}, {"text": "suspensions"}, {"text": "for"}, {"text": "*"}, {"text": "allegedly"}, {"text": "selling"}, {"text": "securities"}, {"text": "at"}, {"text": "unfair"}, {"text": "prices"}, {"text": "."}, {"text": "Biscayne"}, {"text": "has"}, {"text": "n't"}, {"text": "any"}, {"text": "telephone"}, {"text": "listing"}, {"text": ","}, {"text": "an"}, {"text": "operator"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Mr."}, {"text": "Rosenblum"}, {"text": ","}, {"text": "who"}, {"text": "*T*-250"}, {"text": "apparently"}, {"text": "has"}, {"text": "an"}, {"text": "unpublished"}, {"text": "phone"}, {"text": "number"}, {"text": ","}, {"text": "also"}, {"text": "could"}, {"text": "n't"}, {"text": "be"}, {"text": "reached"}, {"text": "*-156"}, {"text": "."}, {"text": "Triton"}, {"text": "Securities"}, {"text": ","}, {"text": "of"}, {"text": "Danville"}, {"text": ","}, {"text": "Calif."}, {"text": ","}, {"text": "and"}, {"text": "a"}, {"text": "principal"}, {"text": "of"}, {"text": "the"}, {"text": "firm"}, {"text": ","}, {"text": "Delwin"}, {"text": "George"}, {"text": "Chase"}, {"text": ","}, {"text": "also"}, {"text": "of"}, {"text": "Danville"}, {"text": ","}, {"text": "were"}, {"text": "jointly"}, {"text": "fined"}, {"text": "*-1"}, {"text": "$"}, {"text": "10,000"}, {"text": "*U*"}, {"text": "and"}, {"text": "given"}, {"text": "*-1"}, {"text": "30-day"}, {"text": "suspensions"}, {"text": "as"}, {"text": "part"}, {"text": "of"}, {"text": "a"}, {"text": "settlement"}, {"text": "."}, {"text": "While"}, {"text": "*-1"}, {"text": "neither"}, {"text": "admitting"}, {"text": "nor"}, {"text": "denying"}, {"text": "wrongdoing"}, {"text": ","}, {"text": "Triton"}, {"text": "and"}, {"text": "Mr."}, {"text": "Chase"}, {"text": "consented"}, {"text": "to"}, {"text": "findings"}, {"text": "of"}, {"text": "violations"}, {"text": "in"}, {"text": "connection"}, {"text": "with"}, {"text": "limited-partnership"}, {"text": "sales"}, {"text": "."}, {"text": "Officials"}, {"text": "of"}, {"text": "Triton"}, {"text": "could"}, {"text": "n't"}, {"text": "be"}, {"text": "reached"}, {"text": "*-157"}, {"text": "for"}, {"text": "comment"}, {"text": "."}, {"text": "Mr."}, {"text": "Chase"}, {"text": "did"}, {"text": "n't"}, {"text": "return"}, {"text": "a"}, {"text": "telephone"}, {"text": "call"}, {"text": "to"}, {"text": "his"}, {"text": "office"}, {"text": "."}, {"text": "Crane"}, {"text": "&"}, {"text": "Co."}, {"text": "Securities"}, {"text": "Inc."}, {"text": ","}, {"text": "of"}, {"text": "Mount"}, {"text": "Clemens"}, {"text": ","}, {"text": "Mich."}, {"text": ","}, {"text": "and"}, {"text": "its"}, {"text": "president"}, {"text": ","}, {"text": "Glenn"}, {"text": "R."}, {"text": "Crane"}, {"text": ","}, {"text": "of"}, {"text": "Sterling"}, {"text": "Heights"}, {"text": ","}, {"text": "Mich."}, {"text": ","}, {"text": "consented"}, {"text": "to"}, {"text": "a"}, {"text": "joint"}, {"text": "fine"}, {"text": "of"}, {"text": "$"}, {"text": "10,000"}, {"text": "*U*"}, {"text": "."}, {"text": "Without"}, {"text": "*-1"}, {"text": "admitting"}, {"text": "or"}, {"text": "denying"}, {"text": "wrongdoing"}, {"text": ","}, {"text": "they"}, {"text": "consented"}, {"text": "to"}, {"text": "findings"}, {"text": "of"}, {"text": "violations"}, {"text": "of"}, {"text": "escrow"}, {"text": "and"}, {"text": "record-keeping"}, {"text": "rules"}, {"text": "."}, {"text": "Mr."}, {"text": "Crane"}, {"text": "did"}, {"text": "n't"}, {"text": "return"}, {"text": "a"}, {"text": "call"}, {"text": "seeking"}, {"text": "comment"}, {"text": "."}, {"text": "First"}, {"text": "Commonwealth"}, {"text": "Securities"}, {"text": "Corp."}, {"text": ","}, {"text": "of"}, {"text": "New"}, {"text": "Orleans"}, {"text": ","}, {"text": "and"}, {"text": "its"}, {"text": "president"}, {"text": ","}, {"text": "Kenneth"}, {"text": "J."}, {"text": "Canepa"}, {"text": ","}, {"text": "also"}, {"text": "of"}, {"text": "New"}, {"text": "Orleans"}, {"text": ","}, {"text": "consented"}, {"text": "to"}, {"text": "a"}, {"text": "$"}, {"text": "10,000"}, {"text": "*U*"}, {"text": "fine"}, {"text": "."}, {"text": "Also"}, {"text": ","}, {"text": "Mr."}, {"text": "Canepa"}, {"text": "received"}, {"text": "a"}, {"text": "two-week"}, {"text": "suspension"}, {"text": "``"}, {"text": "in"}, {"text": "a"}, {"text": "principal"}, {"text": "capacity"}, {"text": "."}, {"text": "''"}, {"text": "Without"}, {"text": "*-1"}, {"text": "admitting"}, {"text": "or"}, {"text": "denying"}, {"text": "wrongdoing"}, {"text": ","}, {"text": "they"}, {"text": "consented"}, {"text": "to"}, {"text": "findings"}, {"text": "that"}, {"text": "they"}, {"text": "had"}, {"text": "inaccurately"}, {"text": "represented"}, {"text": "the"}, {"text": "firm"}, {"text": "'s"}, {"text": "net"}, {"text": "capital"}, {"text": ","}, {"text": "maintained"}, {"text": "inaccurate"}, {"text": "books"}, {"text": "and"}, {"text": "records"}, {"text": ","}, {"text": "and"}, {"text": "made"}, {"text": "other"}, {"text": "violations"}, {"text": "."}, {"text": "Mr."}, {"text": "Canepa"}, {"text": "confirmed"}, {"text": "0"}, {"text": "he"}, {"text": "had"}, {"text": "consented"}, {"text": "to"}, {"text": "the"}, {"text": "sanctions"}, {"text": "but"}, {"text": "declined"}, {"text": "*-1"}, {"text": "to"}, {"text": "comment"}, {"text": "further"}, {"text": "."}, {"text": "Weatherly"}, {"text": "Securities"}, {"text": "Corp."}, {"text": ","}, {"text": "New"}, {"text": "York"}, {"text": ","}, {"text": "and"}, {"text": "three"}, {"text": "of"}, {"text": "its"}, {"text": "principals"}, {"text": "--"}, {"text": "Dell"}, {"text": "Eugene"}, {"text": "Keehn"}, {"text": "and"}, {"text": "William"}, {"text": "Northy"}, {"text": "Prater"}, {"text": "Jr."}, {"text": ","}, {"text": "both"}, {"text": "of"}, {"text": "Mercer"}, {"text": "Island"}, {"text": ","}, {"text": "Wash."}, {"text": ","}, {"text": "and"}, {"text": "Thomas"}, {"text": "Albert"}, {"text": "McFall"}, {"text": ","}, {"text": "of"}, {"text": "Red"}, {"text": "Bank"}, {"text": ","}, {"text": "N.J"}, {"text": "."}, {"text": "--"}, {"text": "consented"}, {"text": "to"}, {"text": "a"}, {"text": "fine"}, {"text": "of"}, {"text": "$"}, {"text": "20,000"}, {"text": "*U*"}, {"text": "."}, {"text": "Without"}, {"text": "*-1"}, {"text": "admitting"}, {"text": "or"}, {"text": "denying"}, {"text": "wrongdoing"}, {"text": ","}, {"text": "they"}, {"text": "consented"}, {"text": "to"}, {"text": "findings"}, {"text": "that"}, {"text": "they"}, {"text": "failed"}, {"text": "*-2"}, {"text": "to"}, {"text": "return"}, {"text": "funds"}, {"text": "owed"}, {"text": "*"}, {"text": "to"}, {"text": "customers"}, {"text": "in"}, {"text": "connection"}, {"text": "with"}, {"text": "a"}, {"text": "limited-partnership"}, {"text": "offering"}, {"text": "."}, {"text": "*-2"}, {"text": "Reached"}, {"text": "*-1"}, {"text": "at"}, {"text": "his"}, {"text": "office"}, {"text": ","}, {"text": "Mr."}, {"text": "McFall"}, {"text": ","}, {"text": "currently"}, {"text": "chairman"}, {"text": ","}, {"text": "said"}, {"text": ","}, {"text": "``"}, {"text": "An"}, {"text": "implication"}, {"text": "that"}, {"text": "we"}, {"text": "failed"}, {"text": "*-3"}, {"text": "to"}, {"text": "return"}, {"text": "investor"}, {"text": "funds"}, {"text": "is"}, {"text": "inappropriate"}, {"text": "and"}, {"text": "inaccurate"}, {"text": "."}, {"text": "''"}, {"text": "He"}, {"text": "described"}, {"text": "the"}, {"text": "situation"}, {"text": "as"}, {"text": "``"}, {"text": "an"}, {"text": "escrow"}, {"text": "problem"}, {"text": ","}, {"text": "a"}, {"text": "timing"}, {"text": "issue"}, {"text": ","}, {"text": "''"}, {"text": "which"}, {"text": "he"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "was"}, {"text": "rapidly"}, {"text": "rectified"}, {"text": "*-2"}, {"text": ","}, {"text": "with"}, {"text": "no"}, {"text": "losses"}, {"text": "to"}, {"text": "customers"}, {"text": "."}, {"text": "W.N."}, {"text": "Whelen"}, {"text": "&"}, {"text": "Co."}, {"text": ","}, {"text": "of"}, {"text": "Georgetown"}, {"text": ","}, {"text": "Del."}, {"text": ","}, {"text": "and"}, {"text": "its"}, {"text": "president"}, {"text": ","}, {"text": "William"}, {"text": "N."}, {"text": "Whelen"}, {"text": "Jr."}, {"text": ","}, {"text": "also"}, {"text": "of"}, {"text": "Georgetown"}, {"text": ","}, {"text": "were"}, {"text": "barred"}, {"text": "*-1"}, {"text": "from"}, {"text": "*-2"}, {"text": "transacting"}, {"text": "principal"}, {"text": "trades"}, {"text": "for"}, {"text": "90"}, {"text": "days"}, {"text": "and"}, {"text": "were"}, {"text": "jointly"}, {"text": "fined"}, {"text": "*-1"}, {"text": "$"}, {"text": "15,000"}, {"text": "*U*"}, {"text": "."}, {"text": "The"}, {"text": "firm"}, {"text": "and"}, {"text": "Mr."}, {"text": "Whelen"}, {"text": "allegedly"}, {"text": "sold"}, {"text": "securities"}, {"text": "to"}, {"text": "the"}, {"text": "public"}, {"text": "at"}, {"text": "unfair"}, {"text": "prices"}, {"text": ","}, {"text": "among"}, {"text": "other"}, {"text": "alleged"}, {"text": "violations"}, {"text": "."}, {"text": "Mr."}, {"text": "Whelen"}, {"text": "denied"}, {"text": "0"}, {"text": "the"}, {"text": "firm"}, {"text": "had"}, {"text": "sold"}, {"text": "securities"}, {"text": "at"}, {"text": "unfair"}, {"text": "prices"}, {"text": "and"}, {"text": "suggested"}, {"text": "that"}, {"text": "the"}, {"text": "examination"}, {"text": "practices"}, {"text": "of"}, {"text": "the"}, {"text": "NASD"}, {"text": "need"}, {"text": "improvement"}, {"text": "."}, {"text": "The"}, {"text": "firm"}, {"text": "and"}, {"text": "the"}, {"text": "NASD"}, {"text": "differ"}, {"text": "over"}, {"text": "the"}, {"text": "meaning"}, {"text": "of"}, {"text": "markup"}, {"text": "and"}, {"text": "markdown"}, {"text": ","}, {"text": "he"}, {"text": "added"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Shearson"}, {"text": "Lehman"}, {"text": "Hutton"}, {"text": "Inc."}, {"text": ","}, {"text": "New"}, {"text": "York"}, {"text": ","}, {"text": "which"}, {"text": "*T*-251"}, {"text": "is"}, {"text": "62%-owned"}, {"text": "*-1"}, {"text": "by"}, {"text": "American"}, {"text": "Express"}, {"text": "Co."}, {"text": ","}, {"text": "consented"}, {"text": "to"}, {"text": "a"}, {"text": "$"}, {"text": "10,000"}, {"text": "*U*"}, {"text": "fine"}, {"text": "."}, {"text": "Without"}, {"text": "*-1"}, {"text": "admitting"}, {"text": "or"}, {"text": "denying"}, {"text": "wrongdoing"}, {"text": ","}, {"text": "the"}, {"text": "firm"}, {"text": "consented"}, {"text": "to"}, {"text": "findings"}, {"text": "that"}, {"text": "it"}, {"text": "failed"}, {"text": "*-2"}, {"text": "to"}, {"text": "respond"}, {"text": "``"}, {"text": "in"}, {"text": "a"}, {"text": "timely"}, {"text": "manner"}, {"text": "''"}, {"text": "to"}, {"text": "the"}, {"text": "NASD"}, {"text": "'s"}, {"text": "requests"}, {"text": "for"}, {"text": "information"}, {"text": "in"}, {"text": "connection"}, {"text": "with"}, {"text": "a"}, {"text": "customer"}, {"text": "complaint"}, {"text": "."}, {"text": "A"}, {"text": "Shearson"}, {"text": "spokesman"}, {"text": "had"}, {"text": "no"}, {"text": "comment"}, {"text": "."}, {"text": "The"}, {"text": "following"}, {"text": "individuals"}, {"text": "were"}, {"text": "fined"}, {"text": "*-2"}, {"text": "as"}, {"text": "*"}, {"text": "indicated"}, {"text": "*-1"}, {"text": "and"}, {"text": "barred"}, {"text": "*-2"}, {"text": "from"}, {"text": "association"}, {"text": "with"}, {"text": "NASD"}, {"text": "members"}, {"text": ","}, {"text": "or"}, {"text": ","}, {"text": "where"}, {"text": "*"}, {"text": "noted"}, {"text": "*-3"}, {"text": "*T*-4"}, {"text": ","}, {"text": "suspended"}, {"text": "*-2"}, {"text": "."}, {"text": "Except"}, {"text": "where"}, {"text": "*"}, {"text": "noted"}, {"text": "*-3"}, {"text": "*T*-1"}, {"text": ","}, {"text": "none"}, {"text": "of"}, {"text": "these"}, {"text": "people"}, {"text": "could"}, {"text": "be"}, {"text": "reached"}, {"text": "*-2"}, {"text": "for"}, {"text": "comment"}, {"text": "or"}, {"text": "had"}, {"text": "any"}, {"text": "comment"}, {"text": "."}, {"text": "Andrew"}, {"text": "Derel"}, {"text": "Adams"}, {"text": ","}, {"text": "Killeen"}, {"text": ","}, {"text": "Texas"}, {"text": ","}, {"text": "fined"}, {"text": "*-1"}, {"text": "$"}, {"text": "15,000"}, {"text": "*U*"}, {"text": ";"}, {"text": "John"}, {"text": "Francis"}, {"text": "Angier"}, {"text": "Jr."}, {"text": ","}, {"text": "Reddington"}, {"text": "Shores"}, {"text": ","}, {"text": "Fla."}, {"text": ","}, {"text": "$"}, {"text": "15,000"}, {"text": "*U*"}, {"text": ";"}, {"text": "Mark"}, {"text": "Anthony"}, {"text": ","}, {"text": "Arlington"}, {"text": "Heights"}, {"text": ","}, {"text": "Ill."}, {"text": ","}, {"text": "$"}, {"text": "10,000"}, {"text": "*U*"}, {"text": "and"}, {"text": "30-day"}, {"text": "suspension"}, {"text": ";"}, {"text": "William"}, {"text": "Stirlen"}, {"text": ","}, {"text": "Arlington"}, {"text": "Heights"}, {"text": ","}, {"text": "Ill."}, {"text": ","}, {"text": "$"}, {"text": "7,500"}, {"text": "*U*"}, {"text": "and"}, {"text": "30-day"}, {"text": "suspension"}, {"text": ";"}, {"text": "Fred"}, {"text": "W."}, {"text": "Bonnell"}, {"text": ","}, {"text": "Boulder"}, {"text": ","}, {"text": "Colo."}, {"text": ","}, {"text": "$"}, {"text": "2,500"}, {"text": "*U*"}, {"text": "and"}, {"text": "six-month"}, {"text": "suspension"}, {"text": ";"}, {"text": "Michael"}, {"text": "J."}, {"text": "Boorse"}, {"text": ","}, {"text": "Horsham"}, {"text": ","}, {"text": "Pa."}, {"text": ";"}, {"text": "David"}, {"text": "Chiodo"}, {"text": ","}, {"text": "Dallas"}, {"text": ","}, {"text": "$"}, {"text": "5,000"}, {"text": "*U*"}, {"text": ","}, {"text": "barred"}, {"text": "*-3"}, {"text": "as"}, {"text": "a"}, {"text": "principal"}, {"text": ";"}, {"text": "Camille"}, {"text": "Chafic"}, {"text": "Cotran"}, {"text": ","}, {"text": "London"}, {"text": ","}, {"text": "$"}, {"text": "25,000"}, {"text": "*U*"}, {"text": ";"}, {"text": "John"}, {"text": "William"}, {"text": "Curry"}, {"text": ","}, {"text": "fined"}, {"text": "*-4"}, {"text": "$"}, {"text": "5,000"}, {"text": "*U*"}, {"text": ","}, {"text": "ordered"}, {"text": "*-4"}, {"text": "*-2"}, {"text": "to"}, {"text": "disgorge"}, {"text": "$"}, {"text": "30,000"}, {"text": "*U*"}, {"text": ","}, {"text": "one-year"}, {"text": "suspension"}, {"text": "."}, {"text": "John"}, {"text": "William"}, {"text": "Davis"}, {"text": ","}, {"text": "Colonsville"}, {"text": ","}, {"text": "Miss."}, {"text": ","}, {"text": "fined"}, {"text": "*-4"}, {"text": "$"}, {"text": "200,000"}, {"text": "*U*"}, {"text": ";"}, {"text": "Jeffrey"}, {"text": "Gerard"}, {"text": "Dompierre"}, {"text": ","}, {"text": "Valrico"}, {"text": ","}, {"text": "Fla."}, {"text": ","}, {"text": "$"}, {"text": "5,000"}, {"text": "*U*"}, {"text": "and"}, {"text": "10-day"}, {"text": "suspension"}, {"text": ";"}, {"text": "Eugene"}, {"text": "Michael"}, {"text": "Felten"}, {"text": ","}, {"text": "La"}, {"text": "Canada"}, {"text": ","}, {"text": "Calif."}, {"text": ","}, {"text": "fined"}, {"text": "*-3"}, {"text": "$"}, {"text": "25,000"}, {"text": "*U*"}, {"text": ","}, {"text": "ordered"}, {"text": "*-3"}, {"text": "*-2"}, {"text": "to"}, {"text": "disgorge"}, {"text": "$"}, {"text": "16,072"}, {"text": "*U*"}, {"text": "and"}, {"text": "suspended"}, {"text": "*-3"}, {"text": "one"}, {"text": "year"}, {"text": ";"}, {"text": "Marion"}, {"text": "Stewart"}, {"text": "Spitler"}, {"text": ","}, {"text": "La"}, {"text": "Canada"}, {"text": ","}, {"text": "fined"}, {"text": "*-5"}, {"text": "$"}, {"text": "15,000"}, {"text": "*U*"}, {"text": ","}, {"text": "ordered"}, {"text": "*-5"}, {"text": "*-1"}, {"text": "to"}, {"text": "disgorge"}, {"text": "$"}, {"text": "18,444"}, {"text": "*U*"}, {"text": "and"}, {"text": "suspended"}, {"text": "*-5"}, {"text": "six"}, {"text": "months"}, {"text": "."}, {"text": "Mr."}, {"text": "Felten"}, {"text": "said"}, {"text": ","}, {"text": "``"}, {"text": "We"}, {"text": "got"}, {"text": "what"}, {"text": "*T*-252"}, {"text": "amounted"}, {"text": "to"}, {"text": "a"}, {"text": "parking"}, {"text": "ticket"}, {"text": ","}, {"text": "and"}, {"text": "by"}, {"text": "*-1"}, {"text": "complaining"}, {"text": "about"}, {"text": "it"}, {"text": ","}, {"text": "we"}, {"text": "ended"}, {"text": "up"}, {"text": "with"}, {"text": "a"}, {"text": "sizable"}, {"text": "fine"}, {"text": "and"}, {"text": "suspension"}, {"text": "."}, {"text": "''"}, {"text": "The"}, {"text": "matter"}, {"text": "``"}, {"text": "did"}, {"text": "n't"}, {"text": "involve"}, {"text": "anybody"}, {"text": "'s"}, {"text": "securities"}, {"text": "transactions"}, {"text": ","}, {"text": "''"}, {"text": "he"}, {"text": "added"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Victor"}, {"text": "Stanley"}, {"text": "Fishman"}, {"text": ","}, {"text": "Longwood"}, {"text": ","}, {"text": "Fla."}, {"text": ","}, {"text": "fined"}, {"text": "*-1"}, {"text": "$"}, {"text": "25,000"}, {"text": "*U*"}, {"text": ";"}, {"text": "William"}, {"text": "Harold"}, {"text": "Floyd"}, {"text": ","}, {"text": "Houston"}, {"text": ","}, {"text": "$"}, {"text": "100,000"}, {"text": "*U*"}, {"text": ";"}, {"text": "Michael"}, {"text": "Anthony"}, {"text": "Houston"}, {"text": ","}, {"text": "Bronx"}, {"text": ","}, {"text": "N.Y."}, {"text": ","}, {"text": "$"}, {"text": "15,000"}, {"text": "*U*"}, {"text": ";"}, {"text": "Amin"}, {"text": "Jalaalwalikraam"}, {"text": ","}, {"text": "Glenham"}, {"text": ","}, {"text": "N.Y."}, {"text": ","}, {"text": "$"}, {"text": "60,000"}, {"text": "*U*"}, {"text": ";"}, {"text": "Richard"}, {"text": "F."}, {"text": "Knapp"}, {"text": ","}, {"text": "London"}, {"text": ","}, {"text": "$"}, {"text": "10,000"}, {"text": "*U*"}, {"text": "and"}, {"text": "30-day"}, {"text": "suspension"}, {"text": ";"}, {"text": "Deborah"}, {"text": "Renee"}, {"text": "Martin"}, {"text": ","}, {"text": "St."}, {"text": "Louis"}, {"text": ","}, {"text": "$"}, {"text": "15,000"}, {"text": "*U*"}, {"text": ";"}, {"text": "Joseph"}, {"text": "Francis"}, {"text": "Muscolina"}, {"text": "Jr."}, {"text": ","}, {"text": "Palisades"}, {"text": "Park"}, {"text": ","}, {"text": "N.J."}, {"text": ","}, {"text": "$"}, {"text": "15,000"}, {"text": "*U*"}, {"text": ";"}, {"text": "Robert"}, {"text": "C."}, {"text": "Najarian"}, {"text": ","}, {"text": "Brooklyn"}, {"text": "Park"}, {"text": ","}, {"text": "Minn."}, {"text": ","}, {"text": "$"}, {"text": "15,000"}, {"text": "*U*"}, {"text": ";"}, {"text": "Edward"}, {"text": "Robert"}, {"text": "Norwick"}, {"text": ","}, {"text": "Nesconset"}, {"text": ","}, {"text": "N.Y."}, {"text": ","}, {"text": "$"}, {"text": "30,000"}, {"text": "*U*"}, {"text": "."}, {"text": "Charles"}, {"text": "D."}, {"text": "Phipps"}, {"text": "Sr."}, {"text": ","}, {"text": "Hermitage"}, {"text": ","}, {"text": "Pa."}, {"text": ","}, {"text": "fined"}, {"text": "*-1"}, {"text": "$"}, {"text": "10,000"}, {"text": "*U*"}, {"text": ";"}, {"text": "David"}, {"text": "Scott"}, {"text": "Rankin"}, {"text": ","}, {"text": "Lake"}, {"text": "St."}, {"text": "Louis"}, {"text": ","}, {"text": "Mo."}, {"text": ","}, {"text": "$"}, {"text": "15,000"}, {"text": "*U*"}, {"text": ";"}, {"text": "Leigh"}, {"text": "A."}, {"text": "Sanderoff"}, {"text": ","}, {"text": "Gaithersburg"}, {"text": ","}, {"text": "Md."}, {"text": ","}, {"text": "fined"}, {"text": "*-2"}, {"text": "$"}, {"text": "45,000"}, {"text": "*U*"}, {"text": ","}, {"text": "ordered"}, {"text": "*-2"}, {"text": "*-3"}, {"text": "to"}, {"text": "disgorge"}, {"text": "$"}, {"text": "12,252"}, {"text": "*U*"}, {"text": ";"}, {"text": "Sandra"}, {"text": "Ann"}, {"text": "Smith"}, {"text": ","}, {"text": "Ridgefield"}, {"text": ","}, {"text": "N.J."}, {"text": ","}, {"text": "$"}, {"text": "15,000"}, {"text": "*U*"}, {"text": ";"}, {"text": "James"}, {"text": "G."}, {"text": "Spence"}, {"text": ","}, {"text": "Aloha"}, {"text": ","}, {"text": "Ore."}, {"text": ","}, {"text": "$"}, {"text": "5,000"}, {"text": "*U*"}, {"text": "and"}, {"text": "six-month"}, {"text": "suspension"}, {"text": ";"}, {"text": "Mona"}, {"text": "Sun"}, {"text": ","}, {"text": "Jamaica"}, {"text": "Estates"}, {"text": ","}, {"text": "N.Y."}, {"text": ","}, {"text": "$"}, {"text": "60,000"}, {"text": "*U*"}, {"text": ";"}, {"text": "William"}, {"text": "Swearingen"}, {"text": ","}, {"text": "Minneapolis"}, {"text": ","}, {"text": "$"}, {"text": "15,000"}, {"text": "*U*"}, {"text": "and"}, {"text": "six-month"}, {"text": "suspension"}, {"text": ";"}, {"text": "John"}, {"text": "Bew"}, {"text": "Wong"}, {"text": ","}, {"text": "San"}, {"text": "Francisco"}, {"text": ","}, {"text": "$"}, {"text": "25,000"}, {"text": "*U*"}, {"text": ";"}, {"text": "Rabia"}, {"text": "M."}, {"text": "Zayed"}, {"text": ","}, {"text": "San"}, {"text": "Francisco"}, {"text": ","}, {"text": "$"}, {"text": "50,000"}, {"text": "*U*"}, {"text": "."}, {"text": "The"}, {"text": "following"}, {"text": "*ICH*-2"}, {"text": "were"}, {"text": "neither"}, {"text": "barred"}, {"text": "nor"}, {"text": "suspended"}, {"text": "*-1"}, {"text": ":"}, {"text": "Stephanie"}, {"text": "Veselich"}, {"text": "Enright"}, {"text": ","}, {"text": "Rolling"}, {"text": "Hills"}, {"text": ","}, {"text": "Calif."}, {"text": ","}, {"text": "fined"}, {"text": "*-3"}, {"text": "$"}, {"text": "2,500"}, {"text": "*U*"}, {"text": "and"}, {"text": "ordered"}, {"text": "*-3"}, {"text": "*-4"}, {"text": "to"}, {"text": "disgorge"}, {"text": "$"}, {"text": "11,762"}, {"text": "*U*"}, {"text": ";"}, {"text": "Stuart"}, {"text": "Lane"}, {"text": "Russel"}, {"text": ","}, {"text": "Glendale"}, {"text": ","}, {"text": "Calif."}, {"text": ","}, {"text": "fined"}, {"text": "*-5"}, {"text": "$"}, {"text": "2,500"}, {"text": "*U*"}, {"text": "and"}, {"text": "ordered"}, {"text": "*-5"}, {"text": "*-6"}, {"text": "to"}, {"text": "disgorge"}, {"text": "$"}, {"text": "14,821"}, {"text": "*U*"}, {"text": ";"}, {"text": "Devon"}, {"text": "Nilson"}, {"text": "Dahl"}, {"text": ","}, {"text": "Fountain"}, {"text": "Valley"}, {"text": ","}, {"text": "Calif."}, {"text": ","}, {"text": "fined"}, {"text": "*-7"}, {"text": "$"}, {"text": "82,389"}, {"text": "*U*"}, {"text": "."}, {"text": "Mr."}, {"text": "Dahl"}, {"text": ","}, {"text": "a"}, {"text": "registered"}, {"text": "representative"}, {"text": "in"}, {"text": "the"}, {"text": "insurance"}, {"text": "business"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "he"}, {"text": "``"}, {"text": "screwed"}, {"text": "up"}, {"text": "''"}, {"text": "because"}, {"text": "he"}, {"text": "did"}, {"text": "n't"}, {"text": "realize"}, {"text": "0"}, {"text": "he"}, {"text": "was"}, {"text": "breaking"}, {"text": "securities"}, {"text": "laws"}, {"text": "."}, {"text": "``"}, {"text": "Insurance"}, {"text": "agents"}, {"text": "have"}, {"text": "been"}, {"text": "forced"}, {"text": "*-158"}, {"text": "by"}, {"text": "their"}, {"text": "companies"}, {"text": "into"}, {"text": "*-2"}, {"text": "becoming"}, {"text": "registered"}, {"text": "reps"}, {"text": ","}, {"text": "''"}, {"text": "he"}, {"text": "said"}, {"text": "*T*-1"}, {"text": ","}, {"text": "``"}, {"text": "but"}, {"text": "they"}, {"text": "are"}, {"text": "not"}, {"text": "providing"}, {"text": "compliance"}, {"text": "and"}, {"text": "security-type"}, {"text": "training"}, {"text": "so"}, {"text": "that"}, {"text": "we"}, {"text": "can"}, {"text": "avoid"}, {"text": "stupid"}, {"text": "mistakes"}, {"text": "."}, {"text": "''"}, {"text": "The"}, {"text": "following"}, {"text": "*ICH*-4"}, {"text": "were"}, {"text": "barred"}, {"text": "*-3"}, {"text": "or"}, {"text": ","}, {"text": "where"}, {"text": "*"}, {"text": "noted"}, {"text": "*-1"}, {"text": "*T*-2"}, {"text": ","}, {"text": "suspended"}, {"text": "*-3"}, {"text": "and"}, {"text": "consented"}, {"text": "to"}, {"text": "findings"}, {"text": "without"}, {"text": "*-3"}, {"text": "admitting"}, {"text": "or"}, {"text": "denying"}, {"text": "wrongdoing"}, {"text": ":"}, {"text": "Edward"}, {"text": "L."}, {"text": "Cole"}, {"text": ","}, {"text": "Jackson"}, {"text": ","}, {"text": "Miss."}, {"text": ","}, {"text": "$"}, {"text": "10,000"}, {"text": "*U*"}, {"text": "fine"}, {"text": ";"}, {"text": "Rita"}, {"text": "Rae"}, {"text": "Cross"}, {"text": ","}, {"text": "Denver"}, {"text": ","}, {"text": "$"}, {"text": "2,500"}, {"text": "*U*"}, {"text": "fine"}, {"text": "and"}, {"text": "30-day"}, {"text": "suspension"}, {"text": ";"}, {"text": "Thomas"}, {"text": "Richard"}, {"text": "Meinders"}, {"text": ","}, {"text": "Colorado"}, {"text": "Springs"}, {"text": ","}, {"text": "Colo."}, {"text": ","}, {"text": "$"}, {"text": "2,000"}, {"text": "*U*"}, {"text": "fine"}, {"text": ","}, {"text": "five-day"}, {"text": "suspension"}, {"text": "and"}, {"text": "eight-month"}, {"text": "suspension"}, {"text": "as"}, {"text": "a"}, {"text": "principal"}, {"text": ";"}, {"text": "Ronald"}, {"text": "A."}, {"text": "Cutrer"}, {"text": ","}, {"text": "Baton"}, {"text": "Rouge"}, {"text": ","}, {"text": "La."}, {"text": ","}, {"text": "$"}, {"text": "15,000"}, {"text": "*U*"}, {"text": "fine"}, {"text": "and"}, {"text": "one-month"}, {"text": "suspension"}, {"text": ";"}, {"text": "Karl"}, {"text": "Grant"}, {"text": "Hale"}, {"text": ","}, {"text": "Midvale"}, {"text": ","}, {"text": "Utah"}, {"text": ","}, {"text": "$"}, {"text": "15,000"}, {"text": "*U*"}, {"text": "fine"}, {"text": ";"}, {"text": "Clinton"}, {"text": "P."}, {"text": "Hayne"}, {"text": ","}, {"text": "New"}, {"text": "Orleans"}, {"text": ","}, {"text": "$"}, {"text": "7,500"}, {"text": "*U*"}, {"text": "fine"}, {"text": "and"}, {"text": "one-week"}, {"text": "suspension"}, {"text": ";"}, {"text": "Richard"}, {"text": "M."}, {"text": "Kane"}, {"text": ","}, {"text": "Coconut"}, {"text": "Creek"}, {"text": ","}, {"text": "Fla."}, {"text": ","}, {"text": "$"}, {"text": "250,000"}, {"text": "*U*"}, {"text": "fine"}, {"text": ";"}, {"text": "John"}, {"text": "B."}, {"text": "Merrick"}, {"text": ","}, {"text": "Aurora"}, {"text": ","}, {"text": "Colo."}, {"text": ","}, {"text": "$"}, {"text": "1,000"}, {"text": "*U*"}, {"text": "fine"}, {"text": "and"}, {"text": "10-day"}, {"text": "suspension"}, {"text": ";"}, {"text": "John"}, {"text": "P."}, {"text": "Miller"}, {"text": ","}, {"text": "Baton"}, {"text": "Rouge"}, {"text": ","}, {"text": "$"}, {"text": "2,000"}, {"text": "*U*"}, {"text": "fine"}, {"text": "and"}, {"text": "two-week"}, {"text": "suspension"}, {"text": ";"}, {"text": "Randolph"}, {"text": "K."}, {"text": "Pace"}, {"text": ","}, {"text": "New"}, {"text": "York"}, {"text": ","}, {"text": "$"}, {"text": "10,000"}, {"text": "*U*"}, {"text": "fine"}, {"text": "and"}, {"text": "90-day"}, {"text": "suspension"}, {"text": ";"}, {"text": "Brian"}, {"text": "D."}, {"text": "Pitcher"}, {"text": ","}, {"text": "New"}, {"text": "Providence"}, {"text": ","}, {"text": "N.J."}, {"text": ","}, {"text": "$"}, {"text": "30,000"}, {"text": "*U*"}, {"text": "fine"}, {"text": ";"}, {"text": "Wayne"}, {"text": "A."}, {"text": "Russo"}, {"text": ","}, {"text": "Bridgeville"}, {"text": ","}, {"text": "Pa."}, {"text": ","}, {"text": "$"}, {"text": "4,000"}, {"text": "*U*"}, {"text": "fine"}, {"text": "and"}, {"text": "15-day"}, {"text": "suspension"}, {"text": ";"}, {"text": "Orville"}, {"text": "Leroy"}, {"text": "Sandberg"}, {"text": ","}, {"text": "Aurora"}, {"text": ","}, {"text": "Colo."}, {"text": ","}, {"text": "$"}, {"text": "3,500"}, {"text": "*U*"}, {"text": "fine"}, {"text": "and"}, {"text": "10-day"}, {"text": "suspension"}, {"text": ";"}, {"text": "Richard"}, {"text": "T."}, {"text": "Marchese"}, {"text": ","}, {"text": "Las"}, {"text": "Vegas"}, {"text": ","}, {"text": "Nev."}, {"text": ","}, {"text": "$"}, {"text": "5,000"}, {"text": "*U*"}, {"text": "and"}, {"text": "one-year"}, {"text": "suspension"}, {"text": ";"}, {"text": "Eric"}, {"text": "G."}, {"text": "Monchecourt"}, {"text": ","}, {"text": "Las"}, {"text": "Vegas"}, {"text": ","}, {"text": "$"}, {"text": "5,000"}, {"text": "*U*"}, {"text": "and"}, {"text": "one-year"}, {"text": "suspension"}, {"text": ";"}, {"text": "and"}, {"text": "Robert"}, {"text": "Gerhard"}, {"text": "Smith"}, {"text": ","}, {"text": "Carson"}, {"text": "City"}, {"text": ","}, {"text": "Nev."}, {"text": ","}, {"text": "two-year"}, {"text": "suspension"}, {"text": "."}, {"text": "``"}, {"text": "I"}, {"text": "was"}, {"text": "n't"}, {"text": "ever"}, {"text": "actively"}, {"text": "engaged"}, {"text": "*-1"}, {"text": "in"}, {"text": "any"}, {"text": "securities"}, {"text": "activities"}, {"text": ","}, {"text": "''"}, {"text": "said"}, {"text": "*T*-2"}, {"text": "Mr."}, {"text": "Cutrer"}, {"text": "."}, {"text": "``"}, {"text": "I"}, {"text": "never"}, {"text": "had"}, {"text": "any"}, {"text": "clients"}, {"text": "at"}, {"text": "all"}, {"text": "."}, {"text": "It"}, {"text": "*EXP*-2"}, {"text": "was"}, {"text": "just"}, {"text": "a"}, {"text": "stupid"}, {"text": "mistake"}, {"text": "*"}, {"text": "to"}, {"text": "get"}, {"text": "the"}, {"text": "license"}, {"text": ","}, {"text": "''"}, {"text": "he"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-3"}, {"text": ","}, {"text": "*-1"}, {"text": "adding"}, {"text": ","}, {"text": "``"}, {"text": "I"}, {"text": "'d"}, {"text": "just"}, {"text": "as"}, {"text": "soon"}, {"text": "not"}, {"text": "get"}, {"text": "into"}, {"text": "''"}, {"text": "details"}, {"text": "of"}, {"text": "the"}, {"text": "settlement"}, {"text": "."}, {"text": "Program"}, {"text": "traders"}, {"text": "are"}, {"text": "fond"}, {"text": "of"}, {"text": "*-1"}, {"text": "predicting"}, {"text": "that"}, {"text": "if"}, {"text": "they"}, {"text": "are"}, {"text": "blocked"}, {"text": "*-159"}, {"text": "in"}, {"text": "the"}, {"text": "U.S."}, {"text": ","}, {"text": "they"}, {"text": "will"}, {"text": "simply"}, {"text": "emigrate"}, {"text": "to"}, {"text": "foreign"}, {"text": "stock"}, {"text": "markets"}, {"text": "."}, {"text": "But"}, {"text": "in"}, {"text": "London"}, {"text": "and"}, {"text": "Tokyo"}, {"text": ","}, {"text": "where"}, {"text": "computer-driven"}, {"text": "trading"}, {"text": "now"}, {"text": "plays"}, {"text": "a"}, {"text": "small"}, {"text": "but"}, {"text": "growing"}, {"text": "role"}, {"text": "*T*-1"}, {"text": ","}, {"text": "traders"}, {"text": "say"}, {"text": "0"}, {"text": "a"}, {"text": "number"}, {"text": "of"}, {"text": "hurdles"}, {"text": "loom"}, {"text": "."}, {"text": "Government"}, {"text": "officials"}, {"text": ","}, {"text": "especially"}, {"text": "in"}, {"text": "Japan"}, {"text": ","}, {"text": "probably"}, {"text": "would"}, {"text": "resist"}, {"text": "any"}, {"text": "onslaught"}, {"text": "of"}, {"text": "program"}, {"text": "trading"}, {"text": "by"}, {"text": "players"}, {"text": "trying"}, {"text": "*"}, {"text": "to"}, {"text": "shrug"}, {"text": "off"}, {"text": "the"}, {"text": "U.S."}, {"text": "furor"}, {"text": "over"}, {"text": "their"}, {"text": "activities"}, {"text": "and"}, {"text": "marching"}, {"text": "abroad"}, {"text": "with"}, {"text": "their"}, {"text": "business"}, {"text": "."}, {"text": "Japan"}, {"text": "is"}, {"text": "``"}, {"text": "very"}, {"text": "concerned"}, {"text": "''"}, {"text": "about"}, {"text": "the"}, {"text": "possible"}, {"text": "effects"}, {"text": "of"}, {"text": "program"}, {"text": "trading"}, {"text": ","}, {"text": "a"}, {"text": "senior"}, {"text": "Japanese"}, {"text": "official"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "after"}, {"text": "the"}, {"text": "Oct."}, {"text": "13"}, {"text": "stock"}, {"text": "plunge"}, {"text": "in"}, {"text": "New"}, {"text": "York"}, {"text": "."}, {"text": "U.S."}, {"text": "stock-index"}, {"text": "futures"}, {"text": "are"}, {"text": "n't"}, {"text": "even"}, {"text": "traded"}, {"text": "*-1"}, {"text": "in"}, {"text": "Japan"}, {"text": "now"}, {"text": "."}, {"text": "And"}, {"text": "because"}, {"text": "of"}, {"text": "the"}, {"text": "time"}, {"text": "difference"}, {"text": ","}, {"text": "the"}, {"text": "Japanese"}, {"text": "*RNR*-1"}, {"text": "and"}, {"text": "the"}, {"text": "U.S."}, {"text": "*RNR*-1"}, {"text": "markets"}, {"text": "'"}, {"text": "trading"}, {"text": "hours"}, {"text": "do"}, {"text": "n't"}, {"text": "overlap"}, {"text": "."}, {"text": "It"}, {"text": "all"}, {"text": "adds"}, {"text": "up"}, {"text": "to"}, {"text": "a"}, {"text": "barrier"}, {"text": "to"}, {"text": "American-style"}, {"text": "index"}, {"text": "arbitrage"}, {"text": ","}, {"text": "the"}, {"text": "most"}, {"text": "popular"}, {"text": "form"}, {"text": "of"}, {"text": "U.S."}, {"text": "program"}, {"text": "trading"}, {"text": "that"}, {"text": "*T*-253"}, {"text": "seeks"}, {"text": "*-1"}, {"text": "to"}, {"text": "exploit"}, {"text": "brief"}, {"text": "differences"}, {"text": "between"}, {"text": "prices"}, {"text": "of"}, {"text": "stocks"}, {"text": "in"}, {"text": "New"}, {"text": "York"}, {"text": "and"}, {"text": "the"}, {"text": "price"}, {"text": "of"}, {"text": "a"}, {"text": "futures"}, {"text": "contract"}, {"text": "in"}, {"text": "Chicago"}, {"text": "based"}, {"text": "on"}, {"text": "those"}, {"text": "stocks"}, {"text": "."}, {"text": "About"}, {"text": "11.6"}, {"text": "%"}, {"text": "of"}, {"text": "all"}, {"text": "program"}, {"text": "trading"}, {"text": "by"}, {"text": "New"}, {"text": "York"}, {"text": "Stock"}, {"text": "Exchange"}, {"text": "firms"}, {"text": "in"}, {"text": "September"}, {"text": "took"}, {"text": "place"}, {"text": "in"}, {"text": "foreign"}, {"text": "markets"}, {"text": ","}, {"text": "according"}, {"text": "to"}, {"text": "Big"}, {"text": "Board"}, {"text": "data"}, {"text": "."}, {"text": "Yet"}, {"text": "it"}, {"text": "*EXP*-1"}, {"text": "is"}, {"text": "difficult"}, {"text": "*"}, {"text": "to"}, {"text": "imagine"}, {"text": "Japan"}, {"text": "racing"}, {"text": "*-2"}, {"text": "to"}, {"text": "introduce"}, {"text": "Chicago-style"}, {"text": "stock-index"}, {"text": "futures"}, {"text": "."}, {"text": "Japan"}, {"text": "'s"}, {"text": "Finance"}, {"text": "Ministry"}, {"text": "already"}, {"text": "is"}, {"text": "scrutinizing"}, {"text": "institutional"}, {"text": "investors"}, {"text": "'"}, {"text": "activity"}, {"text": "*-1"}, {"text": "to"}, {"text": "see"}, {"text": "whether"}, {"text": "policy"}, {"text": "changes"}, {"text": "are"}, {"text": "needed"}, {"text": "*-160"}, {"text": "*"}, {"text": "to"}, {"text": "cope"}, {"text": "with"}, {"text": "the"}, {"text": "current"}, {"text": "level"}, {"text": "of"}, {"text": "program"}, {"text": "trading"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "Makato"}, {"text": "Utsumi"}, {"text": ","}, {"text": "vice"}, {"text": "minister"}, {"text": "for"}, {"text": "international"}, {"text": "finance"}, {"text": "."}, {"text": "Program"}, {"text": "trading"}, {"text": "has"}, {"text": "taken"}, {"text": "off"}, {"text": "in"}, {"text": "Japan"}, {"text": "since"}, {"text": "last"}, {"text": "year"}, {"text": "'s"}, {"text": "introduction"}, {"text": "of"}, {"text": "home-market"}, {"text": "stock-index"}, {"text": "futures"}, {"text": "trading"}, {"text": "on"}, {"text": "the"}, {"text": "Tokyo"}, {"text": "and"}, {"text": "Osaka"}, {"text": "stock"}, {"text": "exchanges"}, {"text": "."}, {"text": "But"}, {"text": "regulators"}, {"text": "are"}, {"text": "wary"}, {"text": "."}, {"text": "They"}, {"text": "have"}, {"text": "n't"}, {"text": "forgotten"}, {"text": "the"}, {"text": "leap"}, {"text": "in"}, {"text": "share"}, {"text": "prices"}, {"text": "last"}, {"text": "Dec."}, {"text": "7"}, {"text": ","}, {"text": "when"}, {"text": "the"}, {"text": "first"}, {"text": "bout"}, {"text": "of"}, {"text": "foreign-led"}, {"text": "index"}, {"text": "arbitrage"}, {"text": "drove"}, {"text": "stocks"}, {"text": "skyward"}, {"text": "in"}, {"text": "the"}, {"text": "last"}, {"text": "half-hour"}, {"text": "of"}, {"text": "trading"}, {"text": "*T*-1"}, {"text": ","}, {"text": "*"}, {"text": "startling"}, {"text": "regulators"}, {"text": "who"}, {"text": "*T*-254"}, {"text": "thought"}, {"text": "0"}, {"text": "they"}, {"text": "had"}, {"text": "written"}, {"text": "enough"}, {"text": "rules"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "to"}, {"text": "prevent"}, {"text": "such"}, {"text": "a"}, {"text": "swing"}, {"text": "."}, {"text": "Japan"}, {"text": "'s"}, {"text": "Finance"}, {"text": "Ministry"}, {"text": "had"}, {"text": "set"}, {"text": "up"}, {"text": "mechanisms"}, {"text": "0"}, {"text": "*-1"}, {"text": "to"}, {"text": "limit"}, {"text": "how"}, {"text": "far"}, {"text": "futures"}, {"text": "prices"}, {"text": "could"}, {"text": "fall"}, {"text": "*T*-2"}, {"text": "in"}, {"text": "a"}, {"text": "single"}, {"text": "session"}, {"text": "and"}, {"text": "*-1"}, {"text": "to"}, {"text": "give"}, {"text": "market"}, {"text": "operators"}, {"text": "the"}, {"text": "authority"}, {"text": "*"}, {"text": "to"}, {"text": "suspend"}, {"text": "trading"}, {"text": "in"}, {"text": "futures"}, {"text": "at"}, {"text": "any"}, {"text": "time"}, {"text": "."}, {"text": "``"}, {"text": "Maybe"}, {"text": "it"}, {"text": "was"}, {"text": "n't"}, {"text": "enough"}, {"text": ","}, {"text": "''"}, {"text": "a"}, {"text": "Finance"}, {"text": "Ministry"}, {"text": "official"}, {"text": "noted"}, {"text": "*T*-1"}, {"text": "after"}, {"text": "the"}, {"text": "Dec."}, {"text": "7"}, {"text": "surge"}, {"text": "."}, {"text": "Japan"}, {"text": "'s"}, {"text": "regulators"}, {"text": "have"}, {"text": "since"}, {"text": "tightened"}, {"text": "controls"}, {"text": "on"}, {"text": "index-related"}, {"text": "stock"}, {"text": "purchases"}, {"text": "."}, {"text": "Tokyo"}, {"text": "'s"}, {"text": "leading"}, {"text": "program"}, {"text": "traders"}, {"text": "are"}, {"text": "the"}, {"text": "big"}, {"text": "U.S."}, {"text": "securities"}, {"text": "houses"}, {"text": ","}, {"text": "though"}, {"text": "the"}, {"text": "Japanese"}, {"text": "are"}, {"text": "playing"}, {"text": "catch-up"}, {"text": "."}, {"text": "Some"}, {"text": "U.S."}, {"text": "firms"}, {"text": ","}, {"text": "notably"}, {"text": "Salomon"}, {"text": "Inc."}, {"text": "and"}, {"text": "Morgan"}, {"text": "Stanley"}, {"text": "Group"}, {"text": "Inc."}, {"text": ","}, {"text": "have"}, {"text": "reaped"}, {"text": "a"}, {"text": "hefty"}, {"text": "chunk"}, {"text": "of"}, {"text": "their"}, {"text": "Japanese"}, {"text": "earnings"}, {"text": "from"}, {"text": "index"}, {"text": "arbitrage"}, {"text": ","}, {"text": "both"}, {"text": "for"}, {"text": "customers"}, {"text": "and"}, {"text": "for"}, {"text": "their"}, {"text": "own"}, {"text": "accounts"}, {"text": "."}, {"text": "-LRB-"}, {"text": "Morgan"}, {"text": "Stanley"}, {"text": "last"}, {"text": "week"}, {"text": "joined"}, {"text": "a"}, {"text": "growing"}, {"text": "list"}, {"text": "of"}, {"text": "U.S."}, {"text": "securities"}, {"text": "firms"}, {"text": "that"}, {"text": "*T*-255"}, {"text": "have"}, {"text": "stopped"}, {"text": "*-1"}, {"text": "doing"}, {"text": "index"}, {"text": "arbitrage"}, {"text": "for"}, {"text": "their"}, {"text": "own"}, {"text": "accounts"}, {"text": "."}, {"text": "-RRB-"}, {"text": "Both"}, {"text": "Deryck"}, {"text": "C."}, {"text": "Maughan"}, {"text": ","}, {"text": "who"}, {"text": "*T*-256"}, {"text": "heads"}, {"text": "Salomon"}, {"text": "in"}, {"text": "Tokyo"}, {"text": ","}, {"text": "and"}, {"text": "John"}, {"text": "S."}, {"text": "Wadsworth"}, {"text": ","}, {"text": "who"}, {"text": "*T*-257"}, {"text": "heads"}, {"text": "Morgan"}, {"text": "Stanley"}, {"text": "there"}, {"text": ","}, {"text": "ascribe"}, {"text": "a"}, {"text": "good"}, {"text": "part"}, {"text": "of"}, {"text": "their"}, {"text": "firms"}, {"text": "'"}, {"text": "success"}, {"text": "in"}, {"text": "Tokyo"}, {"text": "to"}, {"text": "their"}, {"text": "ability"}, {"text": "*"}, {"text": "to"}, {"text": "offer"}, {"text": "sophisticated"}, {"text": ","}, {"text": "futures-related"}, {"text": "investment"}, {"text": "strategies"}, {"text": "to"}, {"text": "big"}, {"text": "institutional"}, {"text": "clients"}, {"text": "."}, {"text": "They"}, {"text": "do"}, {"text": "n't"}, {"text": "have"}, {"text": "plans"}, {"text": "*"}, {"text": "to"}, {"text": "cut"}, {"text": "back"}, {"text": "."}, {"text": "``"}, {"text": "It"}, {"text": "has"}, {"text": "not"}, {"text": "been"}, {"text": "disruptive"}, {"text": "in"}, {"text": "the"}, {"text": "markets"}, {"text": "here"}, {"text": ","}, {"text": "''"}, {"text": "Mr."}, {"text": "Maughan"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "."}, {"text": "``"}, {"text": "The"}, {"text": "real"}, {"text": "difference"}, {"text": "seems"}, {"text": "*-1"}, {"text": "to"}, {"text": "be"}, {"text": "that"}, {"text": "the"}, {"text": "cash"}, {"text": "market"}, {"text": "here"}, {"text": "..."}, {"text": "is"}, {"text": "big"}, {"text": "enough"}, {"text": "*RNR*-2"}, {"text": "and"}, {"text": "liquid"}, {"text": "enough"}, {"text": "*RNR*-2"}, {"text": "that"}, {"text": "the"}, {"text": "futures"}, {"text": "market"}, {"text": "is"}, {"text": "n't"}, {"text": "having"}, {"text": "the"}, {"text": "same"}, {"text": "impact"}, {"text": "0"}, {"text": "it"}, {"text": "does"}, {"text": "*?*"}, {"text": "*T*-3"}, {"text": "in"}, {"text": "America"}, {"text": "."}, {"text": "''"}, {"text": "The"}, {"text": "British"}, {"text": "also"}, {"text": "are"}, {"text": "scrutinizing"}, {"text": "program"}, {"text": "trades"}, {"text": "."}, {"text": "Index-arbitrage"}, {"text": "trading"}, {"text": "is"}, {"text": "``"}, {"text": "something"}, {"text": "0"}, {"text": "we"}, {"text": "want"}, {"text": "*-1"}, {"text": "to"}, {"text": "watch"}, {"text": "*T*-1"}, {"text": "closely"}, {"text": ","}, {"text": "''"}, {"text": "an"}, {"text": "official"}, {"text": "at"}, {"text": "London"}, {"text": "'s"}, {"text": "Stock"}, {"text": "Exchange"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "."}, {"text": "``"}, {"text": "We"}, {"text": "do"}, {"text": "n't"}, {"text": "think"}, {"text": "0"}, {"text": "there"}, {"text": "is"}, {"text": "cause"}, {"text": "for"}, {"text": "concern"}, {"text": "at"}, {"text": "the"}, {"text": "moment"}, {"text": "."}, {"text": "''"}, {"text": "London"}, {"text": "serves"}, {"text": "increasingly"}, {"text": "as"}, {"text": "a"}, {"text": "conduit"}, {"text": "for"}, {"text": "program"}, {"text": "trading"}, {"text": "of"}, {"text": "U.S."}, {"text": "stocks"}, {"text": "."}, {"text": "Market"}, {"text": "professionals"}, {"text": "said"}, {"text": "0"}, {"text": "London"}, {"text": "has"}, {"text": "several"}, {"text": "attractions"}, {"text": "."}, {"text": "First"}, {"text": ","}, {"text": "the"}, {"text": "trading"}, {"text": "is"}, {"text": "done"}, {"text": "*-1"}, {"text": "over"}, {"text": "the"}, {"text": "counter"}, {"text": "and"}, {"text": "is"}, {"text": "n't"}, {"text": "reported"}, {"text": "*-1"}, {"text": "on"}, {"text": "either"}, {"text": "the"}, {"text": "U.S."}, {"text": "or"}, {"text": "London"}, {"text": "stock"}, {"text": "trading"}, {"text": "tapes"}, {"text": "."}, {"text": "Second"}, {"text": ","}, {"text": "it"}, {"text": "can"}, {"text": "be"}, {"text": "used"}, {"text": "*-1"}, {"text": "*"}, {"text": "to"}, {"text": "unwind"}, {"text": "positions"}, {"text": "before"}, {"text": "U.S."}, {"text": "trading"}, {"text": "begins"}, {"text": ","}, {"text": "but"}, {"text": "at"}, {"text": "prices"}, {"text": "pegged"}, {"text": "*"}, {"text": "to"}, {"text": "the"}, {"text": "previous"}, {"text": "session"}, {"text": "'s"}, {"text": "Big"}, {"text": "Board"}, {"text": "close"}, {"text": "."}, {"text": "In"}, {"text": "addition"}, {"text": "to"}, {"text": "the"}, {"text": "extra"}, {"text": "privacy"}, {"text": "of"}, {"text": "these"}, {"text": "trades"}, {"text": ","}, {"text": "the"}, {"text": "transactions"}, {"text": "can"}, {"text": "often"}, {"text": "be"}, {"text": "less"}, {"text": "expensive"}, {"text": "*"}, {"text": "to"}, {"text": "execute"}, {"text": ","}, {"text": "because"}, {"text": "the"}, {"text": "parties"}, {"text": "do"}, {"text": "n't"}, {"text": "have"}, {"text": "*-1"}, {"text": "to"}, {"text": "pay"}, {"text": "a"}, {"text": "floor"}, {"text": "brokerage"}, {"text": "fee"}, {"text": "or"}, {"text": "a"}, {"text": "specialist"}, {"text": "'s"}, {"text": "fee"}, {"text": "."}, {"text": "Still"}, {"text": ","}, {"text": "``"}, {"text": "Much"}, {"text": "less"}, {"text": "-LCB-"}, {"text": "index-arbitrage"}, {"text": "activity"}, {"text": "-RCB-"}, {"text": "*ICH*-1"}, {"text": "is"}, {"text": "done"}, {"text": "*-161"}, {"text": "over"}, {"text": "here"}, {"text": "than"}, {"text": "in"}, {"text": "the"}, {"text": "U.S."}, {"text": "''"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "Richard"}, {"text": "Barfield"}, {"text": ","}, {"text": "chief"}, {"text": "investment"}, {"text": "manager"}, {"text": "at"}, {"text": "Standard"}, {"text": "Life"}, {"text": "Assurance"}, {"text": "Co."}, {"text": ","}, {"text": "which"}, {"text": "*T*-258"}, {"text": "manages"}, {"text": "about"}, {"text": "#"}, {"text": "15"}, {"text": "billion"}, {"text": "*U*"}, {"text": "-LRB-"}, {"text": "$"}, {"text": "23.72"}, {"text": "billion"}, {"text": "*U*"}, {"text": "-RRB-"}, {"text": "in"}, {"text": "United"}, {"text": "Kingdom"}, {"text": "institutional"}, {"text": "funds"}, {"text": "."}, {"text": "Britain"}, {"text": "has"}, {"text": "two"}, {"text": "main"}, {"text": "index-arbitrage"}, {"text": "instruments"}, {"text": "."}, {"text": "A"}, {"text": "Financial"}, {"text": "Times-Stock"}, {"text": "Exchange"}, {"text": "100-share"}, {"text": "index"}, {"text": "option"}, {"text": "contract"}, {"text": "is"}, {"text": "traded"}, {"text": "*-162"}, {"text": "on"}, {"text": "the"}, {"text": "London"}, {"text": "Stock"}, {"text": "Exchange"}, {"text": "'s"}, {"text": "Traded"}, {"text": "Options"}, {"text": "Market"}, {"text": "."}, {"text": "And"}, {"text": "an"}, {"text": "FT-SE"}, {"text": "futures"}, {"text": "contract"}, {"text": "is"}, {"text": "traded"}, {"text": "*-1"}, {"text": "on"}, {"text": "the"}, {"text": "London"}, {"text": "International"}, {"text": "Financial"}, {"text": "Futures"}, {"text": "Exchange"}, {"text": "."}, {"text": "Both"}, {"text": "contracts"}, {"text": "have"}, {"text": "gained"}, {"text": "a"}, {"text": "following"}, {"text": "since"}, {"text": "the"}, {"text": "1987"}, {"text": "global"}, {"text": "market"}, {"text": "crash"}, {"text": "."}, {"text": "The"}, {"text": "average"}, {"text": "number"}, {"text": "of"}, {"text": "FT-SE"}, {"text": "option"}, {"text": "contracts"}, {"text": "traded"}, {"text": "*"}, {"text": "on"}, {"text": "the"}, {"text": "London"}, {"text": "exchange"}, {"text": "has"}, {"text": "surged"}, {"text": "nearly"}, {"text": "tenfold"}, {"text": "since"}, {"text": "the"}, {"text": "contract"}, {"text": "'s"}, {"text": "launch"}, {"text": "in"}, {"text": "1984"}, {"text": "."}, {"text": "This"}, {"text": "year"}, {"text": ","}, {"text": "the"}, {"text": "average"}, {"text": "of"}, {"text": "daily"}, {"text": "contracts"}, {"text": "traded"}, {"text": "*"}, {"text": "totaled"}, {"text": "9,118"}, {"text": ","}, {"text": "up"}, {"text": "from"}, {"text": "4,645"}, {"text": "a"}, {"text": "year"}, {"text": "earlier"}, {"text": "and"}, {"text": "from"}, {"text": "917"}, {"text": "in"}, {"text": "1984"}, {"text": "."}, {"text": "But"}, {"text": "a"}, {"text": "survey"}, {"text": "early"}, {"text": "this"}, {"text": "summer"}, {"text": "indicated"}, {"text": "that"}, {"text": "the"}, {"text": "volume"}, {"text": "of"}, {"text": "index-options"}, {"text": "trading"}, {"text": "was"}, {"text": "only"}, {"text": "15"}, {"text": "%"}, {"text": "of"}, {"text": "the"}, {"text": "size"}, {"text": "of"}, {"text": "the"}, {"text": "underlying"}, {"text": "equity"}, {"text": "market"}, {"text": ","}, {"text": "exchange"}, {"text": "officials"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "This"}, {"text": "compares"}, {"text": "with"}, {"text": "estimates"}, {"text": "that"}, {"text": "the"}, {"text": "U.S."}, {"text": "``"}, {"text": "derivatives"}, {"text": "''"}, {"text": "market"}, {"text": "is"}, {"text": "perhaps"}, {"text": "four"}, {"text": "times"}, {"text": "as"}, {"text": "large"}, {"text": "as"}, {"text": "the"}, {"text": "underlying"}, {"text": "domestic"}, {"text": "market"}, {"text": "."}, {"text": "The"}, {"text": "House"}, {"text": "voted"}, {"text": "*-1"}, {"text": "to"}, {"text": "boost"}, {"text": "the"}, {"text": "federal"}, {"text": "minimum"}, {"text": "wage"}, {"text": "for"}, {"text": "the"}, {"text": "first"}, {"text": "time"}, {"text": "since"}, {"text": "early"}, {"text": "1981"}, {"text": ","}, {"text": "*-1"}, {"text": "casting"}, {"text": "a"}, {"text": "solid"}, {"text": "382-37"}, {"text": "vote"}, {"text": "for"}, {"text": "a"}, {"text": "compromise"}, {"text": "measure"}, {"text": "backed"}, {"text": "*"}, {"text": "by"}, {"text": "President"}, {"text": "Bush"}, {"text": "."}, {"text": "The"}, {"text": "vote"}, {"text": "came"}, {"text": "after"}, {"text": "a"}, {"text": "debate"}, {"text": "replete"}, {"text": "with"}, {"text": "complaints"}, {"text": "from"}, {"text": "both"}, {"text": "proponents"}, {"text": "and"}, {"text": "critics"}, {"text": "of"}, {"text": "a"}, {"text": "substantial"}, {"text": "increase"}, {"text": "in"}, {"text": "the"}, {"text": "wage"}, {"text": "floor"}, {"text": "."}, {"text": "Advocates"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "90-cent-an-hour"}, {"text": "rise"}, {"text": ","}, {"text": "to"}, {"text": "$"}, {"text": "4.25"}, {"text": "*U*"}, {"text": "an"}, {"text": "hour"}, {"text": "by"}, {"text": "April"}, {"text": "1991"}, {"text": ","}, {"text": "is"}, {"text": "too"}, {"text": "small"}, {"text": "for"}, {"text": "the"}, {"text": "working"}, {"text": "poor"}, {"text": ","}, {"text": "while"}, {"text": "opponents"}, {"text": "argued"}, {"text": "that"}, {"text": "the"}, {"text": "increase"}, {"text": "will"}, {"text": "still"}, {"text": "hurt"}, {"text": "small"}, {"text": "business"}, {"text": "and"}, {"text": "cost"}, {"text": "many"}, {"text": "thousands"}, {"text": "of"}, {"text": "jobs"}, {"text": "."}, {"text": "But"}, {"text": "the"}, {"text": "legislation"}, {"text": "reflected"}, {"text": "a"}, {"text": "compromise"}, {"text": "agreed"}, {"text": "to"}, {"text": "*"}, {"text": "on"}, {"text": "Tuesday"}, {"text": "by"}, {"text": "President"}, {"text": "Bush"}, {"text": "and"}, {"text": "Democratic"}, {"text": "leaders"}, {"text": "in"}, {"text": "Congress"}, {"text": ","}, {"text": "after"}, {"text": "congressional"}, {"text": "Republicans"}, {"text": "urged"}, {"text": "the"}, {"text": "White"}, {"text": "House"}, {"text": "*-2"}, {"text": "to"}, {"text": "bend"}, {"text": "a"}, {"text": "bit"}, {"text": "from"}, {"text": "its"}, {"text": "previous"}, {"text": "resistance"}, {"text": "*"}, {"text": "to"}, {"text": "compromise"}, {"text": "."}, {"text": "So"}, {"text": "both"}, {"text": "sides"}, {"text": "accepted"}, {"text": "the"}, {"text": "compromise"}, {"text": ","}, {"text": "which"}, {"text": "*T*-259"}, {"text": "would"}, {"text": "lead"}, {"text": "to"}, {"text": "the"}, {"text": "first"}, {"text": "lifting"}, {"text": "of"}, {"text": "the"}, {"text": "minimum"}, {"text": "wage"}, {"text": "since"}, {"text": "a"}, {"text": "four-year"}, {"text": "law"}, {"text": "was"}, {"text": "enacted"}, {"text": "*-163"}, {"text": "in"}, {"text": "1977"}, {"text": ","}, {"text": "*-163"}, {"text": "raising"}, {"text": "the"}, {"text": "wage"}, {"text": "to"}, {"text": "$"}, {"text": "3.35"}, {"text": "*U*"}, {"text": "an"}, {"text": "hour"}, {"text": "from"}, {"text": "$"}, {"text": "2.65"}, {"text": "*U*"}, {"text": "."}, {"text": "Under"}, {"text": "the"}, {"text": "measure"}, {"text": "passed"}, {"text": "*"}, {"text": "yesterday"}, {"text": ","}, {"text": "the"}, {"text": "minimum"}, {"text": "wage"}, {"text": "would"}, {"text": "rise"}, {"text": "to"}, {"text": "$"}, {"text": "3.80"}, {"text": "*U*"}, {"text": "next"}, {"text": "April"}, {"text": "."}, {"text": "The"}, {"text": "Senate"}, {"text": "plans"}, {"text": "*-1"}, {"text": "to"}, {"text": "take"}, {"text": "up"}, {"text": "the"}, {"text": "measure"}, {"text": "quickly"}, {"text": "and"}, {"text": "is"}, {"text": "expected"}, {"text": "*-1"}, {"text": "to"}, {"text": "pass"}, {"text": "it"}, {"text": "."}, {"text": "``"}, {"text": "There"}, {"text": "are"}, {"text": "no"}, {"text": "smiles"}, {"text": "about"}, {"text": "this"}, {"text": "bill"}, {"text": ","}, {"text": "''"}, {"text": "Rep."}, {"text": "Pat"}, {"text": "Williams"}, {"text": "-LRB-"}, {"text": "D."}, {"text": ","}, {"text": "Mont"}, {"text": "."}, {"text": "-RRB-"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "during"}, {"text": "House"}, {"text": "floor"}, {"text": "debate"}, {"text": "yesterday"}, {"text": "."}, {"text": "But"}, {"text": "``"}, {"text": "because"}, {"text": "it"}, {"text": "'s"}, {"text": "all"}, {"text": "0"}, {"text": "we"}, {"text": "'ve"}, {"text": "got"}, {"text": "*T*-1"}, {"text": ","}, {"text": "I"}, {"text": "'m"}, {"text": "going"}, {"text": "*-2"}, {"text": "to"}, {"text": "vote"}, {"text": "for"}, {"text": "it"}, {"text": "."}, {"text": "''"}, {"text": "While"}, {"text": "the"}, {"text": "minimum"}, {"text": "wage"}, {"text": "had"}, {"text": "traditionally"}, {"text": "been"}, {"text": "pegged"}, {"text": "*-164"}, {"text": "at"}, {"text": "half"}, {"text": "the"}, {"text": "average"}, {"text": "U.S."}, {"text": "manufacturing"}, {"text": "wage"}, {"text": ","}, {"text": "the"}, {"text": "level"}, {"text": "of"}, {"text": "$"}, {"text": "4.25"}, {"text": "*U*"}, {"text": "an"}, {"text": "hour"}, {"text": "in"}, {"text": "1991"}, {"text": "will"}, {"text": "still"}, {"text": "be"}, {"text": "less"}, {"text": "than"}, {"text": "35"}, {"text": "%"}, {"text": "of"}, {"text": "average"}, {"text": "factory"}, {"text": "pay"}, {"text": ","}, {"text": "Mr."}, {"text": "Williams"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "But"}, {"text": "Rep."}, {"text": "Marge"}, {"text": "Roukema"}, {"text": "-LRB-"}, {"text": "R."}, {"text": ","}, {"text": "N.J"}, {"text": "."}, {"text": "-RRB-"}, {"text": "instead"}, {"text": "praised"}, {"text": "the"}, {"text": "House"}, {"text": "'s"}, {"text": "acceptance"}, {"text": "of"}, {"text": "a"}, {"text": "new"}, {"text": "youth"}, {"text": "``"}, {"text": "training"}, {"text": "''"}, {"text": "wage"}, {"text": ","}, {"text": "a"}, {"text": "subminimum"}, {"text": "that"}, {"text": "GOP"}, {"text": "administrations"}, {"text": "have"}, {"text": "sought"}, {"text": "*T*-1"}, {"text": "for"}, {"text": "many"}, {"text": "years"}, {"text": "."}, {"text": "*"}, {"text": "Adopting"}, {"text": "a"}, {"text": "training-wage"}, {"text": "policy"}, {"text": "means"}, {"text": "``"}, {"text": "*"}, {"text": "getting"}, {"text": "beyond"}, {"text": "the"}, {"text": "nickel"}, {"text": "and"}, {"text": "diming"}, {"text": "of"}, {"text": "the"}, {"text": "minimum"}, {"text": "wage"}, {"text": ","}, {"text": "''"}, {"text": "Mrs."}, {"text": "Roukema"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Policy"}, {"text": "makers"}, {"text": "regard"}, {"text": "the"}, {"text": "youth"}, {"text": "wage"}, {"text": "as"}, {"text": "*"}, {"text": "helping"}, {"text": "*-1"}, {"text": "to"}, {"text": "limit"}, {"text": "the"}, {"text": "loss"}, {"text": "of"}, {"text": "jobs"}, {"text": "from"}, {"text": "an"}, {"text": "increase"}, {"text": "in"}, {"text": "the"}, {"text": "minimum"}, {"text": "wage"}, {"text": ","}, {"text": "but"}, {"text": "they"}, {"text": "have"}, {"text": "lately"}, {"text": "touted"}, {"text": "it"}, {"text": "as"}, {"text": "necessary"}, {"text": "*-2"}, {"text": "to"}, {"text": "help"}, {"text": "*-3"}, {"text": "impart"}, {"text": "job"}, {"text": "skills"}, {"text": "to"}, {"text": "entrants"}, {"text": "into"}, {"text": "the"}, {"text": "work"}, {"text": "force"}, {"text": "."}, {"text": "Labor"}, {"text": "unions"}, {"text": "and"}, {"text": "Democrats"}, {"text": "long"}, {"text": "fought"}, {"text": "the"}, {"text": "idea"}, {"text": ","}, {"text": "but"}, {"text": "recently"}, {"text": "acceded"}, {"text": "to"}, {"text": "it"}, {"text": "in"}, {"text": "the"}, {"text": "face"}, {"text": "of"}, {"text": "Bush"}, {"text": "administration"}, {"text": "insistence"}, {"text": "."}, {"text": "The"}, {"text": "compromise"}, {"text": "sets"}, {"text": "the"}, {"text": "training"}, {"text": "wage"}, {"text": "at"}, {"text": "$"}, {"text": "3.35"}, {"text": "*U*"}, {"text": "an"}, {"text": "hour"}, {"text": "next"}, {"text": "April"}, {"text": ","}, {"text": "and"}, {"text": "at"}, {"text": "$"}, {"text": "3.61"}, {"text": "*U*"}, {"text": "an"}, {"text": "hour"}, {"text": ","}, {"text": "or"}, {"text": "85"}, {"text": "%"}, {"text": "of"}, {"text": "the"}, {"text": "minimum"}, {"text": "wage"}, {"text": ","}, {"text": "in"}, {"text": "April"}, {"text": "1991"}, {"text": "."}, {"text": "Employers"}, {"text": "can"}, {"text": "pay"}, {"text": "the"}, {"text": "subminimum"}, {"text": "for"}, {"text": "90"}, {"text": "days"}, {"text": ","}, {"text": "without"}, {"text": "restriction"}, {"text": ","}, {"text": "to"}, {"text": "workers"}, {"text": "with"}, {"text": "less"}, {"text": "than"}, {"text": "six"}, {"text": "months"}, {"text": "of"}, {"text": "job"}, {"text": "experience"}, {"text": "*NOT*"}, {"text": ","}, {"text": "and"}, {"text": "for"}, {"text": "another"}, {"text": "90"}, {"text": "days"}, {"text": "if"}, {"text": "the"}, {"text": "company"}, {"text": "uses"}, {"text": "a"}, {"text": "government-certified"}, {"text": "training"}, {"text": "program"}, {"text": "for"}, {"text": "the"}, {"text": "young"}, {"text": "workers"}, {"text": "."}, {"text": "The"}, {"text": "training"}, {"text": "wage"}, {"text": "covers"}, {"text": "only"}, {"text": "workers"}, {"text": "who"}, {"text": "*T*-260"}, {"text": "are"}, {"text": "16"}, {"text": "to"}, {"text": "19"}, {"text": "years"}, {"text": "old"}, {"text": "."}, {"text": "The"}, {"text": "White"}, {"text": "House"}, {"text": "previously"}, {"text": "insisted"}, {"text": "on"}, {"text": "an"}, {"text": "unrestricted"}, {"text": "six-month"}, {"text": "training"}, {"text": "wage"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "could"}, {"text": "be"}, {"text": "paid"}, {"text": "*-165"}, {"text": "any"}, {"text": "time"}, {"text": "0"}, {"text": "a"}, {"text": "worker"}, {"text": "of"}, {"text": "any"}, {"text": "age"}, {"text": "took"}, {"text": "a"}, {"text": "new"}, {"text": "job"}, {"text": "*T*-2"}, {"text": "."}, {"text": "The"}, {"text": "U.S."}, {"text": "Chamber"}, {"text": "of"}, {"text": "Commerce"}, {"text": ","}, {"text": "*-1"}, {"text": "still"}, {"text": "opposed"}, {"text": "to"}, {"text": "any"}, {"text": "mininum-wage"}, {"text": "increase"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "compromise"}, {"text": "plan"}, {"text": "*"}, {"text": "to"}, {"text": "lift"}, {"text": "the"}, {"text": "wage"}, {"text": "floor"}, {"text": "27"}, {"text": "%"}, {"text": "in"}, {"text": "two"}, {"text": "stages"}, {"text": "between"}, {"text": "April"}, {"text": "1990"}, {"text": "and"}, {"text": "April"}, {"text": "1991"}, {"text": "``"}, {"text": "will"}, {"text": "be"}, {"text": "impossible"}, {"text": "for"}, {"text": "many"}, {"text": "employers"}, {"text": "to"}, {"text": "accommodate"}, {"text": "and"}, {"text": "will"}, {"text": "result"}, {"text": "in"}, {"text": "the"}, {"text": "elimination"}, {"text": "of"}, {"text": "jobs"}, {"text": "for"}, {"text": "American"}, {"text": "workers"}, {"text": "and"}, {"text": "higher"}, {"text": "prices"}, {"text": "for"}, {"text": "American"}, {"text": "consumers"}, {"text": "."}, {"text": "Zenith"}, {"text": "Data"}, {"text": "Systems"}, {"text": "Corp."}, {"text": ","}, {"text": "a"}, {"text": "subsidiary"}, {"text": "of"}, {"text": "Zenith"}, {"text": "Electronics"}, {"text": "Corp."}, {"text": ","}, {"text": "received"}, {"text": "a"}, {"text": "$"}, {"text": "534"}, {"text": "million"}, {"text": "*U*"}, {"text": "Navy"}, {"text": "contract"}, {"text": "for"}, {"text": "software"}, {"text": "and"}, {"text": "services"}, {"text": "of"}, {"text": "microcomputers"}, {"text": "over"}, {"text": "an"}, {"text": "84-month"}, {"text": "period"}, {"text": "."}, {"text": "Rockwell"}, {"text": "International"}, {"text": "Corp."}, {"text": "won"}, {"text": "a"}, {"text": "$"}, {"text": "130.7"}, {"text": "million"}, {"text": "*U*"}, {"text": "Air"}, {"text": "Force"}, {"text": "contract"}, {"text": "for"}, {"text": "AC-130U"}, {"text": "gunship"}, {"text": "replacement"}, {"text": "aircraft"}, {"text": "."}, {"text": "Martin"}, {"text": "Marietta"}, {"text": "Corp."}, {"text": "was"}, {"text": "given"}, {"text": "*-166"}, {"text": "a"}, {"text": "$"}, {"text": "29.9"}, {"text": "million"}, {"text": "*U*"}, {"text": "Air"}, {"text": "Force"}, {"text": "contract"}, {"text": "for"}, {"text": "low-altitude"}, {"text": "navigation"}, {"text": "and"}, {"text": "targeting"}, {"text": "equipment"}, {"text": "."}, {"text": "Federal"}, {"text": "Data"}, {"text": "Corp."}, {"text": "got"}, {"text": "a"}, {"text": "$"}, {"text": "29.4"}, {"text": "million"}, {"text": "*U*"}, {"text": "Air"}, {"text": "Force"}, {"text": "contract"}, {"text": "for"}, {"text": "intelligence"}, {"text": "data"}, {"text": "handling"}, {"text": "."}, {"text": "For"}, {"text": "six"}, {"text": "years"}, {"text": ","}, {"text": "T."}, {"text": "Marshall"}, {"text": "Hahn"}, {"text": "Jr."}, {"text": "has"}, {"text": "made"}, {"text": "corporate"}, {"text": "acquisitions"}, {"text": "in"}, {"text": "the"}, {"text": "George"}, {"text": "Bush"}, {"text": "mode"}, {"text": ":"}, {"text": "kind"}, {"text": "and"}, {"text": "gentle"}, {"text": "."}, {"text": "The"}, {"text": "question"}, {"text": "now"}, {"text": ":"}, {"text": "Can"}, {"text": "he"}, {"text": "act"}, {"text": "more"}, {"text": "like"}, {"text": "hard-charging"}, {"text": "Teddy"}, {"text": "Roosevelt"}, {"text": "?"}, {"text": "Mr."}, {"text": "Hahn"}, {"text": ","}, {"text": "the"}, {"text": "62-year-old"}, {"text": "chairman"}, {"text": "and"}, {"text": "chief"}, {"text": "executive"}, {"text": "officer"}, {"text": "of"}, {"text": "Georgia-Pacific"}, {"text": "Corp."}, {"text": "is"}, {"text": "leading"}, {"text": "the"}, {"text": "forest-product"}, {"text": "concern"}, {"text": "'s"}, {"text": "unsolicited"}, {"text": "$"}, {"text": "3.19"}, {"text": "billion"}, {"text": "*U*"}, {"text": "bid"}, {"text": "for"}, {"text": "Great"}, {"text": "Northern"}, {"text": "Nekoosa"}, {"text": "Corp"}, {"text": "."}, {"text": "Nekoosa"}, {"text": "has"}, {"text": "given"}, {"text": "the"}, {"text": "offer"}, {"text": "a"}, {"text": "public"}, {"text": "cold"}, {"text": "shoulder"}, {"text": ","}, {"text": "a"}, {"text": "reaction"}, {"text": "0"}, {"text": "Mr."}, {"text": "Hahn"}, {"text": "has"}, {"text": "n't"}, {"text": "faced"}, {"text": "*T*-2"}, {"text": "in"}, {"text": "his"}, {"text": "18"}, {"text": "earlier"}, {"text": "acquisitions"}, {"text": ","}, {"text": "all"}, {"text": "of"}, {"text": "which"}, {"text": "*T*-3"}, {"text": "were"}, {"text": "negotiated"}, {"text": "*-1"}, {"text": "behind"}, {"text": "the"}, {"text": "scenes"}, {"text": "."}, {"text": "So"}, {"text": "far"}, {"text": ","}, {"text": "Mr."}, {"text": "Hahn"}, {"text": "is"}, {"text": "trying"}, {"text": "*-1"}, {"text": "to"}, {"text": "entice"}, {"text": "Nekoosa"}, {"text": "into"}, {"text": "*"}, {"text": "negotiating"}, {"text": "a"}, {"text": "friendly"}, {"text": "surrender"}, {"text": "while"}, {"text": "*-1"}, {"text": "talking"}, {"text": "tough"}, {"text": "."}, {"text": "``"}, {"text": "We"}, {"text": "are"}, {"text": "prepared"}, {"text": "*-1"}, {"text": "to"}, {"text": "pursue"}, {"text": "aggressively"}, {"text": "completion"}, {"text": "of"}, {"text": "this"}, {"text": "transaction"}, {"text": ","}, {"text": "''"}, {"text": "he"}, {"text": "says"}, {"text": "*T*-2"}, {"text": "."}, {"text": "But"}, {"text": "a"}, {"text": "takeover"}, {"text": "battle"}, {"text": "opens"}, {"text": "up"}, {"text": "the"}, {"text": "possibility"}, {"text": "of"}, {"text": "a"}, {"text": "bidding"}, {"text": "war"}, {"text": ","}, {"text": "with"}, {"text": "all"}, {"text": "0"}, {"text": "that"}, {"text": "implies"}, {"text": "*T*-1"}, {"text": "."}, {"text": "If"}, {"text": "a"}, {"text": "competitor"}, {"text": "enters"}, {"text": "the"}, {"text": "game"}, {"text": ","}, {"text": "for"}, {"text": "example"}, {"text": ","}, {"text": "Mr."}, {"text": "Hahn"}, {"text": "could"}, {"text": "face"}, {"text": "the"}, {"text": "dilemma"}, {"text": "of"}, {"text": "*"}, {"text": "paying"}, {"text": "a"}, {"text": "premium"}, {"text": "for"}, {"text": "Nekoosa"}, {"text": "or"}, {"text": "seeing"}, {"text": "the"}, {"text": "company"}, {"text": "fall"}, {"text": "into"}, {"text": "the"}, {"text": "arms"}, {"text": "of"}, {"text": "a"}, {"text": "rival"}, {"text": "."}, {"text": "*-2"}, {"text": "Given"}, {"text": "*-3"}, {"text": "that"}, {"text": "choice"}, {"text": ","}, {"text": "associates"}, {"text": "of"}, {"text": "Mr."}, {"text": "Hahn"}, {"text": "and"}, {"text": "industry"}, {"text": "observers"}, {"text": "say"}, {"text": "0"}, {"text": "the"}, {"text": "former"}, {"text": "university"}, {"text": "president"}, {"text": "--"}, {"text": "who"}, {"text": "*T*-1"}, {"text": "has"}, {"text": "developed"}, {"text": "a"}, {"text": "reputation"}, {"text": "for"}, {"text": "*"}, {"text": "not"}, {"text": "overpaying"}, {"text": "for"}, {"text": "anything"}, {"text": "--"}, {"text": "would"}, {"text": "fold"}, {"text": "."}, {"text": "``"}, {"text": "There"}, {"text": "'s"}, {"text": "a"}, {"text": "price"}, {"text": "above"}, {"text": "which"}, {"text": "I"}, {"text": "'m"}, {"text": "positive"}, {"text": "0"}, {"text": "Marshall"}, {"text": "has"}, {"text": "the"}, {"text": "courage"}, {"text": "0"}, {"text": "*"}, {"text": "not"}, {"text": "to"}, {"text": "pay"}, {"text": "*T*-1"}, {"text": "*T*-3"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-2"}, {"text": "A.D."}, {"text": "Correll"}, {"text": ","}, {"text": "Georgia-Pacific"}, {"text": "'s"}, {"text": "executive"}, {"text": "vice"}, {"text": "president"}, {"text": "for"}, {"text": "pulp"}, {"text": "and"}, {"text": "paper"}, {"text": "."}, {"text": "Says"}, {"text": "*ICH*-1"}, {"text": "long-time"}, {"text": "associate"}, {"text": "Jerry"}, {"text": "Griffin"}, {"text": ","}, {"text": "vice"}, {"text": "president"}, {"text": ","}, {"text": "corporate"}, {"text": "development"}, {"text": ","}, {"text": "at"}, {"text": "WTD"}, {"text": "Industries"}, {"text": "Inc."}, {"text": ":"}, {"text": "``"}, {"text": "He"}, {"text": "is"}, {"text": "n't"}, {"text": "of"}, {"text": "the"}, {"text": "old"}, {"text": "school"}, {"text": "of"}, {"text": "*"}, {"text": "winning"}, {"text": "at"}, {"text": "any"}, {"text": "cost"}, {"text": "."}, {"text": "''"}, {"text": "He"}, {"text": "also"}, {"text": "is"}, {"text": "a"}, {"text": "consensus"}, {"text": "manager"}, {"text": ","}, {"text": "insiders"}, {"text": "say"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "The"}, {"text": "decision"}, {"text": "*"}, {"text": "to"}, {"text": "make"}, {"text": "the"}, {"text": "bid"}, {"text": "for"}, {"text": "Nekoosa"}, {"text": ","}, {"text": "for"}, {"text": "example"}, {"text": ","}, {"text": "was"}, {"text": "made"}, {"text": "*-2"}, {"text": "only"}, {"text": "after"}, {"text": "all"}, {"text": "six"}, {"text": "members"}, {"text": "of"}, {"text": "Georgia-Pacific"}, {"text": "'s"}, {"text": "management"}, {"text": "committee"}, {"text": "signed"}, {"text": "onto"}, {"text": "the"}, {"text": "deal"}, {"text": "--"}, {"text": "even"}, {"text": "though"}, {"text": "Mr."}, {"text": "Hahn"}, {"text": "knew"}, {"text": "0"}, {"text": "he"}, {"text": "wanted"}, {"text": "*-3"}, {"text": "to"}, {"text": "go"}, {"text": "after"}, {"text": "the"}, {"text": "company"}, {"text": "early"}, {"text": "on"}, {"text": ","}, {"text": "says"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "Mr."}, {"text": "Correll"}, {"text": "."}, {"text": "Associates"}, {"text": "say"}, {"text": "0"}, {"text": "Mr."}, {"text": "Hahn"}, {"text": "picked"}, {"text": "up"}, {"text": "that"}, {"text": "careful"}, {"text": "approach"}, {"text": "to"}, {"text": "management"}, {"text": "as"}, {"text": "president"}, {"text": "of"}, {"text": "Virginia"}, {"text": "Polytechnic"}, {"text": "Institute"}, {"text": "."}, {"text": "*-1"}, {"text": "Assuming"}, {"text": "that"}, {"text": "post"}, {"text": "at"}, {"text": "the"}, {"text": "age"}, {"text": "of"}, {"text": "35"}, {"text": ","}, {"text": "he"}, {"text": "managed"}, {"text": "by"}, {"text": "consensus"}, {"text": ","}, {"text": "as"}, {"text": "*"}, {"text": "is"}, {"text": "the"}, {"text": "rule"}, {"text": "in"}, {"text": "universities"}, {"text": ","}, {"text": "says"}, {"text": "0"}, {"text": "*T*-3"}, {"text": "Warren"}, {"text": "H."}, {"text": "Strother"}, {"text": ","}, {"text": "a"}, {"text": "university"}, {"text": "official"}, {"text": "who"}, {"text": "*T*-2"}, {"text": "is"}, {"text": "researching"}, {"text": "a"}, {"text": "book"}, {"text": "on"}, {"text": "Mr."}, {"text": "Hahn"}, {"text": "."}, {"text": "But"}, {"text": "he"}, {"text": "also"}, {"text": "showed"}, {"text": "a"}, {"text": "willingness"}, {"text": "*-1"}, {"text": "to"}, {"text": "take"}, {"text": "a"}, {"text": "strong"}, {"text": "stand"}, {"text": "."}, {"text": "In"}, {"text": "1970"}, {"text": ","}, {"text": "Mr."}, {"text": "Hahn"}, {"text": "called"}, {"text": "in"}, {"text": "state"}, {"text": "police"}, {"text": "to"}, {"text": "arrest"}, {"text": "student"}, {"text": "protesters"}, {"text": "who"}, {"text": "*T*-3"}, {"text": "were"}, {"text": "occupying"}, {"text": "a"}, {"text": "university"}, {"text": "building"}, {"text": "."}, {"text": "That"}, {"text": "impressed"}, {"text": "Robert"}, {"text": "B."}, {"text": "Pamplin"}, {"text": ","}, {"text": "Georgia-Pacific"}, {"text": "'s"}, {"text": "chief"}, {"text": "executive"}, {"text": "at"}, {"text": "the"}, {"text": "time"}, {"text": ","}, {"text": "whom"}, {"text": "Mr."}, {"text": "Hahn"}, {"text": "had"}, {"text": "met"}, {"text": "*T*-4"}, {"text": "while"}, {"text": "*-1"}, {"text": "fundraising"}, {"text": "for"}, {"text": "the"}, {"text": "institute"}, {"text": "."}, {"text": "In"}, {"text": "1975"}, {"text": ","}, {"text": "Mr."}, {"text": "Pamplin"}, {"text": "enticed"}, {"text": "Mr."}, {"text": "Hahn"}, {"text": "into"}, {"text": "*"}, {"text": "joining"}, {"text": "the"}, {"text": "company"}, {"text": "as"}, {"text": "executive"}, {"text": "vice"}, {"text": "president"}, {"text": "in"}, {"text": "charge"}, {"text": "of"}, {"text": "chemicals"}, {"text": ";"}, {"text": "the"}, {"text": "move"}, {"text": "befuddled"}, {"text": "many"}, {"text": "in"}, {"text": "Georgia-Pacific"}, {"text": "who"}, {"text": "*T*-5"}, {"text": "did"}, {"text": "n't"}, {"text": "believe"}, {"text": "0"}, {"text": "a"}, {"text": "university"}, {"text": "administrator"}, {"text": "could"}, {"text": "make"}, {"text": "the"}, {"text": "transition"}, {"text": "to"}, {"text": "the"}, {"text": "corporate"}, {"text": "world"}, {"text": "."}, {"text": "But"}, {"text": "Mr."}, {"text": "Hahn"}, {"text": "rose"}, {"text": "swiftly"}, {"text": "through"}, {"text": "the"}, {"text": "ranks"}, {"text": ","}, {"text": "*-1"}, {"text": "demonstrating"}, {"text": "a"}, {"text": "raw"}, {"text": "intelligence"}, {"text": "that"}, {"text": "he"}, {"text": "says"}, {"text": "0"}, {"text": "he"}, {"text": "knew"}, {"text": "0"}, {"text": "he"}, {"text": "possessed"}, {"text": "*T*-2"}, {"text": "early"}, {"text": "on"}, {"text": "."}, {"text": "*-1"}, {"text": "The"}, {"text": "son"}, {"text": "of"}, {"text": "a"}, {"text": "physicist"}, {"text": ","}, {"text": "Mr."}, {"text": "Hahn"}, {"text": "skipped"}, {"text": "first"}, {"text": "grade"}, {"text": "because"}, {"text": "his"}, {"text": "reading"}, {"text": "ability"}, {"text": "was"}, {"text": "so"}, {"text": "far"}, {"text": "above"}, {"text": "his"}, {"text": "classmates"}, {"text": "."}, {"text": "*-1"}, {"text": "Moving"}, {"text": "rapidly"}, {"text": "through"}, {"text": "school"}, {"text": ","}, {"text": "he"}, {"text": "graduated"}, {"text": "Phi"}, {"text": "Beta"}, {"text": "Kappa"}, {"text": "from"}, {"text": "the"}, {"text": "University"}, {"text": "of"}, {"text": "Kentucky"}, {"text": "at"}, {"text": "age"}, {"text": "18"}, {"text": ","}, {"text": "after"}, {"text": "*"}, {"text": "spending"}, {"text": "only"}, {"text": "2"}, {"text": "1\\/2"}, {"text": "years"}, {"text": "in"}, {"text": "college"}, {"text": "."}, {"text": "He"}, {"text": "earned"}, {"text": "his"}, {"text": "doctorate"}, {"text": "in"}, {"text": "nuclear"}, {"text": "physics"}, {"text": "from"}, {"text": "the"}, {"text": "Massachusetts"}, {"text": "Institute"}, {"text": "of"}, {"text": "Technology"}, {"text": "."}, {"text": "Mr."}, {"text": "Hahn"}, {"text": "agrees"}, {"text": "that"}, {"text": "he"}, {"text": "has"}, {"text": "a"}, {"text": "``"}, {"text": "retentive"}, {"text": "''"}, {"text": "memory"}, {"text": ","}, {"text": "but"}, {"text": "friends"}, {"text": "say"}, {"text": "0"}, {"text": "that"}, {"text": "'s"}, {"text": "an"}, {"text": "understatement"}, {"text": "."}, {"text": "They"}, {"text": "call"}, {"text": "it"}, {"text": "``"}, {"text": "photographic"}, {"text": "''"}, {"text": "."}, {"text": "Mr."}, {"text": "Hahn"}, {"text": "also"}, {"text": "has"}, {"text": "engineered"}, {"text": "a"}, {"text": "surprising"}, {"text": "turnaround"}, {"text": "of"}, {"text": "Georgia-Pacific"}, {"text": "."}, {"text": "*-1"}, {"text": "Taking"}, {"text": "over"}, {"text": "as"}, {"text": "chief"}, {"text": "executive"}, {"text": "officer"}, {"text": "in"}, {"text": "1983"}, {"text": ","}, {"text": "he"}, {"text": "inherited"}, {"text": "a"}, {"text": "company"}, {"text": "that"}, {"text": "*T*-6"}, {"text": "was"}, {"text": "mired"}, {"text": "*-2"}, {"text": "in"}, {"text": "debt"}, {"text": "and"}, {"text": "hurt"}, {"text": "*-2"}, {"text": "by"}, {"text": "a"}, {"text": "recession-inspired"}, {"text": "slide"}, {"text": "in"}, {"text": "its"}, {"text": "building-products"}, {"text": "business"}, {"text": "."}, {"text": "Mr."}, {"text": "Hahn"}, {"text": "began"}, {"text": "*-1"}, {"text": "selling"}, {"text": "non-core"}, {"text": "businesses"}, {"text": ","}, {"text": "such"}, {"text": "as"}, {"text": "oil"}, {"text": "and"}, {"text": "gas"}, {"text": "and"}, {"text": "chemicals"}, {"text": "."}, {"text": "He"}, {"text": "even"}, {"text": "sold"}, {"text": "one"}, {"text": "unit"}, {"text": "that"}, {"text": "*T*-7"}, {"text": "made"}, {"text": "vinyl"}, {"text": "checkbook"}, {"text": "covers"}, {"text": "."}, {"text": "At"}, {"text": "the"}, {"text": "same"}, {"text": "time"}, {"text": ","}, {"text": "he"}, {"text": "began"}, {"text": "*-1"}, {"text": "building"}, {"text": "up"}, {"text": "the"}, {"text": "pulp"}, {"text": "and"}, {"text": "paper"}, {"text": "segment"}, {"text": "of"}, {"text": "the"}, {"text": "company"}, {"text": "while"}, {"text": "*-1"}, {"text": "refocusing"}, {"text": "building"}, {"text": "products"}, {"text": "on"}, {"text": "home"}, {"text": "repair"}, {"text": "and"}, {"text": "remodeling"}, {"text": ","}, {"text": "rather"}, {"text": "than"}, {"text": "materials"}, {"text": "for"}, {"text": "new-home"}, {"text": "construction"}, {"text": "."}, {"text": "The"}, {"text": "idea"}, {"text": "was"}, {"text": "*"}, {"text": "to"}, {"text": "buffet"}, {"text": "building"}, {"text": "products"}, {"text": "from"}, {"text": "cycles"}, {"text": "in"}, {"text": "new-home"}, {"text": "construction"}, {"text": "."}, {"text": "The"}, {"text": "formula"}, {"text": "has"}, {"text": "paid"}, {"text": "off"}, {"text": ","}, {"text": "so"}, {"text": "far"}, {"text": "."}, {"text": "Georgia-Pacific"}, {"text": "'s"}, {"text": "sales"}, {"text": "climbed"}, {"text": "to"}, {"text": "$"}, {"text": "9.5"}, {"text": "billion"}, {"text": "*U*"}, {"text": "last"}, {"text": "year"}, {"text": ","}, {"text": "compared"}, {"text": "with"}, {"text": "$"}, {"text": "6"}, {"text": "billion"}, {"text": "*U*"}, {"text": "in"}, {"text": "1983"}, {"text": ","}, {"text": "when"}, {"text": "Mr."}, {"text": "Hahn"}, {"text": "took"}, {"text": "the"}, {"text": "reins"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Profit"}, {"text": "from"}, {"text": "continuing"}, {"text": "operations"}, {"text": "has"}, {"text": "soared"}, {"text": "to"}, {"text": "$"}, {"text": "467"}, {"text": "million"}, {"text": "*U*"}, {"text": "from"}, {"text": "$"}, {"text": "75"}, {"text": "million"}, {"text": "*U*"}, {"text": "."}, {"text": "Mr."}, {"text": "Hahn"}, {"text": "attributes"}, {"text": "the"}, {"text": "gains"}, {"text": "to"}, {"text": "the"}, {"text": "philosophy"}, {"text": "of"}, {"text": "*"}, {"text": "concentrating"}, {"text": "on"}, {"text": "what"}, {"text": "a"}, {"text": "company"}, {"text": "knows"}, {"text": "*T*-1"}, {"text": "best"}, {"text": "."}, {"text": "``"}, {"text": "The"}, {"text": "record"}, {"text": "of"}, {"text": "companies"}, {"text": "that"}, {"text": "*T*-8"}, {"text": "have"}, {"text": "diversified"}, {"text": "is"}, {"text": "n't"}, {"text": "all"}, {"text": "that"}, {"text": "impressive"}, {"text": ","}, {"text": "''"}, {"text": "he"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Nekoosa"}, {"text": "would"}, {"text": "n't"}, {"text": "be"}, {"text": "a"}, {"text": "diversification"}, {"text": "."}, {"text": "It"}, {"text": "would"}, {"text": "be"}, {"text": "a"}, {"text": "good"}, {"text": "match"}, {"text": ","}, {"text": "Mr."}, {"text": "Hahn"}, {"text": "and"}, {"text": "many"}, {"text": "analysts"}, {"text": "say"}, {"text": "0"}, {"text": "*T*-1"}, {"text": ","}, {"text": "of"}, {"text": "two"}, {"text": "healthy"}, {"text": "companies"}, {"text": "with"}, {"text": "high-quality"}, {"text": "assets"}, {"text": "and"}, {"text": "strong"}, {"text": "cash"}, {"text": "flows"}, {"text": "."}, {"text": "The"}, {"text": "resulting"}, {"text": "company"}, {"text": "would"}, {"text": "be"}, {"text": "the"}, {"text": "largest"}, {"text": "forest-products"}, {"text": "concern"}, {"text": "in"}, {"text": "the"}, {"text": "world"}, {"text": "with"}, {"text": "combined"}, {"text": "sales"}, {"text": "of"}, {"text": "more"}, {"text": "than"}, {"text": "$"}, {"text": "13"}, {"text": "billion"}, {"text": "*U*"}, {"text": "."}, {"text": "But"}, {"text": "can"}, {"text": "Mr."}, {"text": "Hahn"}, {"text": "carry"}, {"text": "it"}, {"text": "off"}, {"text": "?"}, {"text": "In"}, {"text": "this"}, {"text": "instance"}, {"text": ","}, {"text": "industry"}, {"text": "observers"}, {"text": "say"}, {"text": "0"}, {"text": "*T*-1"}, {"text": ","}, {"text": "he"}, {"text": "is"}, {"text": "entering"}, {"text": "uncharted"}, {"text": "waters"}, {"text": "."}, {"text": "Says"}, {"text": "*ICH*-1"}, {"text": "Kathryn"}, {"text": "McAuley"}, {"text": ","}, {"text": "an"}, {"text": "analyst"}, {"text": "at"}, {"text": "First"}, {"text": "Manhattan"}, {"text": "Co."}, {"text": ":"}, {"text": "``"}, {"text": "This"}, {"text": "is"}, {"text": "the"}, {"text": "greatest"}, {"text": "acquisition"}, {"text": "challenge"}, {"text": "0"}, {"text": "he"}, {"text": "has"}, {"text": "faced"}, {"text": "*T*-2"}, {"text": "."}, {"text": "A"}, {"text": "House-Senate"}, {"text": "conference"}, {"text": "approved"}, {"text": "major"}, {"text": "portions"}, {"text": "of"}, {"text": "a"}, {"text": "package"}, {"text": "for"}, {"text": "more"}, {"text": "than"}, {"text": "$"}, {"text": "500"}, {"text": "million"}, {"text": "*U*"}, {"text": "in"}, {"text": "economic"}, {"text": "aid"}, {"text": "for"}, {"text": "Poland"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "relies"}, {"text": "heavily"}, {"text": "on"}, {"text": "$"}, {"text": "240"}, {"text": "million"}, {"text": "*U*"}, {"text": "in"}, {"text": "credit"}, {"text": "and"}, {"text": "loan"}, {"text": "guarantees"}, {"text": "in"}, {"text": "fiscal"}, {"text": "1990"}, {"text": "in"}, {"text": "hopes"}, {"text": "of"}, {"text": "*"}, {"text": "stimulating"}, {"text": "future"}, {"text": "trade"}, {"text": "and"}, {"text": "investment"}, {"text": "."}, {"text": "For"}, {"text": "the"}, {"text": "Agency"}, {"text": "for"}, {"text": "International"}, {"text": "Development"}, {"text": ","}, {"text": "appropriators"}, {"text": "approved"}, {"text": "$"}, {"text": "200"}, {"text": "million"}, {"text": "*U*"}, {"text": "in"}, {"text": "secondary"}, {"text": "loan"}, {"text": "guarantees"}, {"text": "under"}, {"text": "an"}, {"text": "expanded"}, {"text": "trade"}, {"text": "credit"}, {"text": "insurance"}, {"text": "program"}, {"text": ","}, {"text": "and"}, {"text": "total"}, {"text": "loan"}, {"text": "guarantees"}, {"text": "for"}, {"text": "the"}, {"text": "Overseas"}, {"text": "Private"}, {"text": "Investment"}, {"text": "Corp."}, {"text": "are"}, {"text": "increased"}, {"text": "*-3"}, {"text": "by"}, {"text": "$"}, {"text": "40"}, {"text": "million"}, {"text": "*U*"}, {"text": "over"}, {"text": "fiscal"}, {"text": "1989"}, {"text": "as"}, {"text": "part"}, {"text": "of"}, {"text": "the"}, {"text": "same"}, {"text": "Poland"}, {"text": "package"}, {"text": "."}, {"text": "The"}, {"text": "conference"}, {"text": "approved"}, {"text": "at"}, {"text": "least"}, {"text": "$"}, {"text": "55"}, {"text": "million"}, {"text": "*U*"}, {"text": "in"}, {"text": "direct"}, {"text": "cash"}, {"text": "and"}, {"text": "development"}, {"text": "assistance"}, {"text": "as"}, {"text": "well"}, {"text": ","}, {"text": "and"}, {"text": "though"}, {"text": "no"}, {"text": "decision"}, {"text": "was"}, {"text": "made"}, {"text": "*-4"}, {"text": ","}, {"text": "both"}, {"text": "sides"}, {"text": "are"}, {"text": "committed"}, {"text": "to"}, {"text": "*"}, {"text": "adding"}, {"text": "more"}, {"text": "than"}, {"text": "$"}, {"text": "200"}, {"text": "million"}, {"text": "*U*"}, {"text": "in"}, {"text": "economic"}, {"text": "support"}, {"text": "funds"}, {"text": "and"}, {"text": "environmental"}, {"text": "initiatives"}, {"text": "sought"}, {"text": "*"}, {"text": "by"}, {"text": "the"}, {"text": "Bush"}, {"text": "administration"}, {"text": "."}, {"text": "The"}, {"text": "agreement"}, {"text": "on"}, {"text": "Poland"}, {"text": "contrasts"}, {"text": "with"}, {"text": "the"}, {"text": "major"}, {"text": "differences"}, {"text": "remaining"}, {"text": "over"}, {"text": "the"}, {"text": "underlying"}, {"text": "foreign"}, {"text": "aid"}, {"text": "bill"}, {"text": ","}, {"text": "which"}, {"text": "*T*-9"}, {"text": "has"}, {"text": "already"}, {"text": "provoked"}, {"text": "veto"}, {"text": "threats"}, {"text": "by"}, {"text": "the"}, {"text": "White"}, {"text": "House"}, {"text": "and"}, {"text": "is"}, {"text": "sharply"}, {"text": "confined"}, {"text": "under"}, {"text": "this"}, {"text": "year"}, {"text": "'s"}, {"text": "budget"}, {"text": "."}, {"text": "These"}, {"text": "fiscal"}, {"text": "pressures"}, {"text": "are"}, {"text": "also"}, {"text": "a"}, {"text": "factor"}, {"text": "in"}, {"text": "*"}, {"text": "shaping"}, {"text": "the"}, {"text": "Poland"}, {"text": "package"}, {"text": ","}, {"text": "and"}, {"text": "while"}, {"text": "more"}, {"text": "ambitious"}, {"text": "authorizing"}, {"text": "legislation"}, {"text": "is"}, {"text": "still"}, {"text": "pending"}, {"text": ","}, {"text": "the"}, {"text": "appropriations"}, {"text": "bill"}, {"text": "in"}, {"text": "conference"}, {"text": "will"}, {"text": "be"}, {"text": "more"}, {"text": "decisive"}, {"text": "on"}, {"text": "U.S."}, {"text": "aid"}, {"text": "to"}, {"text": "Eastern"}, {"text": "Europe"}, {"text": "."}, {"text": "*-1"}, {"text": "To"}, {"text": "accommodate"}, {"text": "the"}, {"text": "additional"}, {"text": "cash"}, {"text": "assistance"}, {"text": ","}, {"text": "the"}, {"text": "House"}, {"text": "Appropriations"}, {"text": "Committee"}, {"text": "last"}, {"text": "week"}, {"text": "was"}, {"text": "required"}, {"text": "*-1"}, {"text": "to"}, {"text": "reallocate"}, {"text": "an"}, {"text": "estimated"}, {"text": "$"}, {"text": "140"}, {"text": "million"}, {"text": "*U*"}, {"text": "from"}, {"text": "the"}, {"text": "Pentagon"}, {"text": "."}, {"text": "And"}, {"text": "though"}, {"text": "the"}, {"text": "size"}, {"text": "of"}, {"text": "the"}, {"text": "loan"}, {"text": "guarantees"}, {"text": "approved"}, {"text": "*"}, {"text": "yesterday"}, {"text": "is"}, {"text": "significant"}, {"text": ","}, {"text": "recent"}, {"text": "experience"}, {"text": "with"}, {"text": "a"}, {"text": "similar"}, {"text": "program"}, {"text": "in"}, {"text": "Central"}, {"text": "America"}, {"text": "indicates"}, {"text": "that"}, {"text": "it"}, {"text": "could"}, {"text": "take"}, {"text": "several"}, {"text": "years"}, {"text": "before"}, {"text": "the"}, {"text": "new"}, {"text": "Polish"}, {"text": "government"}, {"text": "can"}, {"text": "fully"}, {"text": "use"}, {"text": "the"}, {"text": "aid"}, {"text": "effectively"}, {"text": "."}, {"text": "The"}, {"text": "action"}, {"text": "on"}, {"text": "Poland"}, {"text": "came"}, {"text": "as"}, {"text": "the"}, {"text": "conference"}, {"text": "separately"}, {"text": "approved"}, {"text": "$"}, {"text": "220"}, {"text": "million"}, {"text": "*U*"}, {"text": "for"}, {"text": "international"}, {"text": "population"}, {"text": "planning"}, {"text": "activities"}, {"text": ","}, {"text": "an"}, {"text": "11"}, {"text": "%"}, {"text": "increase"}, {"text": "over"}, {"text": "fiscal"}, {"text": "1989"}, {"text": "."}, {"text": "The"}, {"text": "House"}, {"text": "and"}, {"text": "Senate"}, {"text": "are"}, {"text": "divided"}, {"text": "*-6"}, {"text": "over"}, {"text": "whether"}, {"text": "the"}, {"text": "United"}, {"text": "Nations"}, {"text": "Population"}, {"text": "Fund"}, {"text": "will"}, {"text": "receive"}, {"text": "any"}, {"text": "portion"}, {"text": "of"}, {"text": "these"}, {"text": "appropriations"}, {"text": ","}, {"text": "but"}, {"text": "the"}, {"text": "size"}, {"text": "of"}, {"text": "the"}, {"text": "increase"}, {"text": "is"}, {"text": "itself"}, {"text": "significant"}, {"text": "."}, {"text": "In"}, {"text": "a"}, {"text": "second"}, {"text": "area"}, {"text": "of"}, {"text": "common"}, {"text": "concern"}, {"text": ","}, {"text": "the"}, {"text": "world"}, {"text": "environment"}, {"text": ","}, {"text": "an"}, {"text": "additional"}, {"text": "$"}, {"text": "15"}, {"text": "million"}, {"text": "*U*"}, {"text": "*ICH*-1"}, {"text": "will"}, {"text": "be"}, {"text": "provided"}, {"text": "*-7"}, {"text": "in"}, {"text": "development"}, {"text": "assistance"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "to"}, {"text": "fund"}, {"text": "a"}, {"text": "series"}, {"text": "of"}, {"text": "initiatives"}, {"text": ","}, {"text": "related"}, {"text": "both"}, {"text": "to"}, {"text": "global"}, {"text": "warming"}, {"text": "and"}, {"text": "the"}, {"text": "plight"}, {"text": "of"}, {"text": "the"}, {"text": "African"}, {"text": "elephant"}, {"text": "."}, {"text": "The"}, {"text": "sweeping"}, {"text": "nature"}, {"text": "of"}, {"text": "the"}, {"text": "bill"}, {"text": "draws"}, {"text": "a"}, {"text": "variety"}, {"text": "of"}, {"text": "special"}, {"text": "interest"}, {"text": "amendments"}, {"text": ","}, {"text": "running"}, {"text": "from"}, {"text": "an"}, {"text": "import"}, {"text": "exemption"}, {"text": "for"}, {"text": "a"}, {"text": "California"}, {"text": "airplane"}, {"text": "museum"}, {"text": "to"}, {"text": "a"}, {"text": "small"}, {"text": "but"}, {"text": "intriguing"}, {"text": "struggle"}, {"text": "among"}, {"text": "sugar"}, {"text": "producing"}, {"text": "nations"}, {"text": "over"}, {"text": "the"}, {"text": "fate"}, {"text": "of"}, {"text": "Panama"}, {"text": "'s"}, {"text": "quota"}, {"text": "of"}, {"text": "exports"}, {"text": "to"}, {"text": "the"}, {"text": "profitable"}, {"text": "U.S."}, {"text": "market"}, {"text": "."}, {"text": "Panama"}, {"text": "was"}, {"text": "stripped"}, {"text": "*-8"}, {"text": "of"}, {"text": "this"}, {"text": "right"}, {"text": "because"}, {"text": "of"}, {"text": "U.S."}, {"text": "differences"}, {"text": "with"}, {"text": "the"}, {"text": "Noriega"}, {"text": "regime"}, {"text": ","}, {"text": "but"}, {"text": "the"}, {"text": "Central"}, {"text": "American"}, {"text": "country"}, {"text": "would"}, {"text": "have"}, {"text": "received"}, {"text": "a"}, {"text": "quota"}, {"text": "of"}, {"text": "30,537"}, {"text": "metric"}, {"text": "tons"}, {"text": "over"}, {"text": "a"}, {"text": "21-month"}, {"text": "period"}, {"text": "ending"}, {"text": "Sept."}, {"text": "30"}, {"text": ","}, {"text": "1990"}, {"text": "."}, {"text": "About"}, {"text": "a"}, {"text": "quarter"}, {"text": "of"}, {"text": "this"}, {"text": "share"}, {"text": "has"}, {"text": "already"}, {"text": "been"}, {"text": "reallocated"}, {"text": "*-9"}, {"text": ","}, {"text": "according"}, {"text": "to"}, {"text": "the"}, {"text": "industry"}, {"text": ","}, {"text": "but"}, {"text": "the"}, {"text": "remaining"}, {"text": "23,403"}, {"text": "tons"}, {"text": "are"}, {"text": "still"}, {"text": "a"}, {"text": "lucrative"}, {"text": "target"}, {"text": "for"}, {"text": "growers"}, {"text": "because"}, {"text": "the"}, {"text": "current"}, {"text": "U.S."}, {"text": "price"}, {"text": "of"}, {"text": "18"}, {"text": "cents"}, {"text": "a"}, {"text": "pound"}, {"text": "runs"}, {"text": "as"}, {"text": "much"}, {"text": "as"}, {"text": "a"}, {"text": "nickel"}, {"text": "a"}, {"text": "pound"}, {"text": "above"}, {"text": "the"}, {"text": "world"}, {"text": "rate"}, {"text": "."}, {"text": "The"}, {"text": "potential"}, {"text": "sales"}, {"text": "are"}, {"text": "nearly"}, {"text": "$"}, {"text": "9.3"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "and"}, {"text": "House"}, {"text": "Majority"}, {"text": "Whip"}, {"text": "William"}, {"text": "Gray"}, {"text": "-LRB-"}, {"text": "D."}, {"text": ","}, {"text": "Pa"}, {"text": "."}, {"text": "-RRB-"}, {"text": "began"}, {"text": "the"}, {"text": "bidding"}, {"text": "this"}, {"text": "year"}, {"text": "by"}, {"text": "*-1"}, {"text": "proposing"}, {"text": "language"}, {"text": "that"}, {"text": "the"}, {"text": "quota"}, {"text": "be"}, {"text": "allocated"}, {"text": "*-10"}, {"text": "to"}, {"text": "English-speaking"}, {"text": "countries"}, {"text": "of"}, {"text": "the"}, {"text": "Caribbean"}, {"text": ","}, {"text": "such"}, {"text": "as"}, {"text": "Jamaica"}, {"text": "and"}, {"text": "Barbados"}, {"text": "."}, {"text": "Rep."}, {"text": "Jerry"}, {"text": "Lewis"}, {"text": ","}, {"text": "a"}, {"text": "conservative"}, {"text": "Californian"}, {"text": ","}, {"text": "added"}, {"text": "a"}, {"text": "provision"}, {"text": "of"}, {"text": "his"}, {"text": "own"}, {"text": "intended"}, {"text": "*"}, {"text": "to"}, {"text": "assist"}, {"text": "Bolivia"}, {"text": ","}, {"text": "and"}, {"text": "the"}, {"text": "Senate"}, {"text": "then"}, {"text": "broadened"}, {"text": "the"}, {"text": "list"}, {"text": "further"}, {"text": "by"}, {"text": "*-1"}, {"text": "including"}, {"text": "all"}, {"text": "countries"}, {"text": "in"}, {"text": "the"}, {"text": "U.S."}, {"text": "Caribbean"}, {"text": "Basin"}, {"text": "initiate"}, {"text": "as"}, {"text": "well"}, {"text": "as"}, {"text": "the"}, {"text": "Philippines"}, {"text": "-"}, {"text": "*-1"}, {"text": "backed"}, {"text": "*"}, {"text": "by"}, {"text": "the"}, {"text": "powerful"}, {"text": "Hawaii"}, {"text": "Democrat"}, {"text": "Sen."}, {"text": "Daniel"}, {"text": "Inouye"}, {"text": "."}, {"text": "Jamaica"}, {"text": ","}, {"text": "wary"}, {"text": "of"}, {"text": "*"}, {"text": "upsetting"}, {"text": "its"}, {"text": "Caribbean"}, {"text": "Basin"}, {"text": "allies"}, {"text": ","}, {"text": "has"}, {"text": "apparently"}, {"text": "instructed"}, {"text": "its"}, {"text": "lobbyist"}, {"text": "*-2"}, {"text": "to"}, {"text": "abandon"}, {"text": "the"}, {"text": "provision"}, {"text": "initially"}, {"text": "drafted"}, {"text": "*"}, {"text": "by"}, {"text": "Mr."}, {"text": "Gray"}, {"text": ","}, {"text": "but"}, {"text": "the"}, {"text": "greater"}, {"text": "question"}, {"text": "is"}, {"text": "whether"}, {"text": "Mr."}, {"text": "Inouye"}, {"text": ","}, {"text": "who"}, {"text": "*T*-10"}, {"text": "has"}, {"text": "strong"}, {"text": "ties"}, {"text": "to"}, {"text": "the"}, {"text": "sugar"}, {"text": "industry"}, {"text": ","}, {"text": "is"}, {"text": "able"}, {"text": "*-3"}, {"text": "to"}, {"text": "insert"}, {"text": "a"}, {"text": "claim"}, {"text": "by"}, {"text": "the"}, {"text": "Philippines"}, {"text": "."}, {"text": "In"}, {"text": "separate"}, {"text": "floor"}, {"text": "action"}, {"text": ","}, {"text": "the"}, {"text": "House"}, {"text": "waived"}, {"text": "budget"}, {"text": "restrictions"}, {"text": "and"}, {"text": "gave"}, {"text": "quick"}, {"text": "approval"}, {"text": "to"}, {"text": "$"}, {"text": "3.18"}, {"text": "billion"}, {"text": "*U*"}, {"text": "in"}, {"text": "supplemental"}, {"text": "appropriations"}, {"text": "for"}, {"text": "law"}, {"text": "enforcement"}, {"text": "and"}, {"text": "anti-drug"}, {"text": "programs"}, {"text": "in"}, {"text": "fiscal"}, {"text": "1990"}, {"text": "."}, {"text": "The"}, {"text": "funding"}, {"text": "is"}, {"text": "attached"}, {"text": "*-11"}, {"text": "to"}, {"text": "an"}, {"text": "estimated"}, {"text": "$"}, {"text": "27.1"}, {"text": "billion"}, {"text": "*U*"}, {"text": "transportation"}, {"text": "bill"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "goes"}, {"text": "*ICH*-2"}, {"text": "next"}, {"text": "to"}, {"text": "the"}, {"text": "Senate"}, {"text": "and"}, {"text": "carries"}, {"text": "with"}, {"text": "it"}, {"text": "a"}, {"text": "proposed"}, {"text": "permanent"}, {"text": "smoking"}, {"text": "ban"}, {"text": "on"}, {"text": "virtually"}, {"text": "all"}, {"text": "U.S."}, {"text": "domestic"}, {"text": "airline"}, {"text": "flights"}, {"text": "."}, {"text": "The"}, {"text": "leadership"}, {"text": "hopes"}, {"text": "*-1"}, {"text": "to"}, {"text": "move"}, {"text": "the"}, {"text": "compromise"}, {"text": "measure"}, {"text": "promptly"}, {"text": "to"}, {"text": "the"}, {"text": "White"}, {"text": "House"}, {"text": ","}, {"text": "but"}, {"text": "in"}, {"text": "recent"}, {"text": "days"}, {"text": ","}, {"text": "the"}, {"text": "Senate"}, {"text": "has"}, {"text": "been"}, {"text": "as"}, {"text": "likely"}, {"text": "*-3"}, {"text": "to"}, {"text": "bounce"}, {"text": "bills"}, {"text": "back"}, {"text": "to"}, {"text": "the"}, {"text": "House"}, {"text": "."}, {"text": "The"}, {"text": "most"}, {"text": "recent"}, {"text": "example"}, {"text": "was"}, {"text": "a"}, {"text": "nearly"}, {"text": "$"}, {"text": "17.3"}, {"text": "billion"}, {"text": "*U*"}, {"text": "fiscal"}, {"text": "1990"}, {"text": "bill"}, {"text": "funding"}, {"text": "the"}, {"text": "State"}, {"text": ","}, {"text": "Justice"}, {"text": "and"}, {"text": "Commerce"}, {"text": "departments"}, {"text": "."}, {"text": "And"}, {"text": "after"}, {"text": "*-1"}, {"text": "losing"}, {"text": "a"}, {"text": "battle"}, {"text": "Tuesday"}, {"text": "night"}, {"text": "with"}, {"text": "the"}, {"text": "Senate"}, {"text": "Foreign"}, {"text": "Relations"}, {"text": "Committee"}, {"text": ","}, {"text": "appropriators"}, {"text": "from"}, {"text": "both"}, {"text": "houses"}, {"text": "are"}, {"text": "expected"}, {"text": "*-1"}, {"text": "to"}, {"text": "be"}, {"text": "forced"}, {"text": "*-12"}, {"text": "back"}, {"text": "to"}, {"text": "conference"}, {"text": "."}, {"text": "Beauty"}, {"text": "Takes"}, {"text": "Backseat"}, {"text": "To"}, {"text": "Safety"}, {"text": "on"}, {"text": "Bridges"}, {"text": "EVERYONE"}, {"text": "AGREES"}, {"text": "that"}, {"text": "most"}, {"text": "of"}, {"text": "the"}, {"text": "nation"}, {"text": "'s"}, {"text": "old"}, {"text": "bridges"}, {"text": "need"}, {"text": "*-1"}, {"text": "to"}, {"text": "be"}, {"text": "repaired"}, {"text": "or"}, {"text": "replaced"}, {"text": "*-13"}, {"text": "."}, {"text": "But"}, {"text": "there"}, {"text": "'s"}, {"text": "disagreement"}, {"text": "over"}, {"text": "how"}, {"text": "*"}, {"text": "to"}, {"text": "do"}, {"text": "it"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Highway"}, {"text": "officials"}, {"text": "insist"}, {"text": "0"}, {"text": "the"}, {"text": "ornamental"}, {"text": "railings"}, {"text": "on"}, {"text": "older"}, {"text": "bridges"}, {"text": "are"}, {"text": "n't"}, {"text": "strong"}, {"text": "enough"}, {"text": "*"}, {"text": "to"}, {"text": "prevent"}, {"text": "vehicles"}, {"text": "from"}, {"text": "*"}, {"text": "crashing"}, {"text": "through"}, {"text": "."}, {"text": "But"}, {"text": "other"}, {"text": "people"}, {"text": "do"}, {"text": "n't"}, {"text": "want"}, {"text": "*-1"}, {"text": "to"}, {"text": "lose"}, {"text": "the"}, {"text": "bridges"}, {"text": "'"}, {"text": "beautiful"}, {"text": ","}, {"text": "sometimes"}, {"text": "historic"}, {"text": ","}, {"text": "features"}, {"text": "."}, {"text": "``"}, {"text": "The"}, {"text": "primary"}, {"text": "purpose"}, {"text": "of"}, {"text": "a"}, {"text": "railing"}, {"text": "is"}, {"text": "*"}, {"text": "to"}, {"text": "contain"}, {"text": "a"}, {"text": "vehicle"}, {"text": "and"}, {"text": "not"}, {"text": "to"}, {"text": "provide"}, {"text": "a"}, {"text": "scenic"}, {"text": "view"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "Jack"}, {"text": "White"}, {"text": ","}, {"text": "a"}, {"text": "planner"}, {"text": "with"}, {"text": "the"}, {"text": "Indiana"}, {"text": "Highway"}, {"text": "Department"}, {"text": "."}, {"text": "He"}, {"text": "and"}, {"text": "others"}, {"text": "prefer"}, {"text": "*-1"}, {"text": "to"}, {"text": "install"}, {"text": "railings"}, {"text": "such"}, {"text": "as"}, {"text": "the"}, {"text": "``"}, {"text": "type"}, {"text": "F"}, {"text": "safety"}, {"text": "shape"}, {"text": ","}, {"text": "''"}, {"text": "a"}, {"text": "four-foot-high"}, {"text": "concrete"}, {"text": "slab"}, {"text": "with"}, {"text": "no"}, {"text": "openings"}, {"text": "."}, {"text": "In"}, {"text": "Richmond"}, {"text": ","}, {"text": "Ind."}, {"text": ","}, {"text": "the"}, {"text": "type"}, {"text": "F"}, {"text": "railing"}, {"text": "is"}, {"text": "being"}, {"text": "used"}, {"text": "*-1"}, {"text": "*-2"}, {"text": "to"}, {"text": "replace"}, {"text": "arched"}, {"text": "openings"}, {"text": "on"}, {"text": "the"}, {"text": "G"}, {"text": "Street"}, {"text": "Bridge"}, {"text": "."}, {"text": "Garret"}, {"text": "Boone"}, {"text": ","}, {"text": "who"}, {"text": "*T*-11"}, {"text": "teaches"}, {"text": "art"}, {"text": "at"}, {"text": "Earlham"}, {"text": "College"}, {"text": ","}, {"text": "calls"}, {"text": "the"}, {"text": "new"}, {"text": "structure"}, {"text": "``"}, {"text": "just"}, {"text": "an"}, {"text": "ugly"}, {"text": "bridge"}, {"text": "''"}, {"text": "and"}, {"text": "one"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "blocks"}, {"text": "the"}, {"text": "view"}, {"text": "of"}, {"text": "a"}, {"text": "new"}, {"text": "park"}, {"text": "below"}, {"text": "."}, {"text": "In"}, {"text": "Hartford"}, {"text": ","}, {"text": "Conn."}, {"text": ","}, {"text": "the"}, {"text": "Charter"}, {"text": "Oak"}, {"text": "Bridge"}, {"text": "will"}, {"text": "soon"}, {"text": "be"}, {"text": "replaced"}, {"text": "*-14"}, {"text": ","}, {"text": "the"}, {"text": "cast-iron"}, {"text": "medallions"}, {"text": "from"}, {"text": "its"}, {"text": "railings"}, {"text": "relegated"}, {"text": "to"}, {"text": "a"}, {"text": "park"}, {"text": "."}, {"text": "Compromises"}, {"text": "are"}, {"text": "possible"}, {"text": "."}, {"text": "Citizens"}, {"text": "in"}, {"text": "Peninsula"}, {"text": ","}, {"text": "Ohio"}, {"text": ","}, {"text": "*-1"}, {"text": "upset"}, {"text": "over"}, {"text": "changes"}, {"text": "to"}, {"text": "a"}, {"text": "bridge"}, {"text": ","}, {"text": "negotiated"}, {"text": "a"}, {"text": "deal"}, {"text": ":"}, {"text": "The"}, {"text": "bottom"}, {"text": "half"}, {"text": "of"}, {"text": "the"}, {"text": "railing"}, {"text": "will"}, {"text": "be"}, {"text": "type"}, {"text": "F"}, {"text": ","}, {"text": "while"}, {"text": "the"}, {"text": "top"}, {"text": "half"}, {"text": "will"}, {"text": "have"}, {"text": "the"}, {"text": "old"}, {"text": "bridge"}, {"text": "'s"}, {"text": "floral"}, {"text": "pattern"}, {"text": "."}, {"text": "Similarly"}, {"text": ","}, {"text": "highway"}, {"text": "engineers"}, {"text": "agreed"}, {"text": "*-1"}, {"text": "to"}, {"text": "keep"}, {"text": "the"}, {"text": "old"}, {"text": "railings"}, {"text": "on"}, {"text": "the"}, {"text": "Key"}, {"text": "Bridge"}, {"text": "in"}, {"text": "Washington"}, {"text": ","}, {"text": "D.C."}, {"text": ","}, {"text": "as"}, {"text": "long"}, {"text": "as"}, {"text": "they"}, {"text": "could"}, {"text": "install"}, {"text": "a"}, {"text": "crash"}, {"text": "barrier"}, {"text": "between"}, {"text": "the"}, {"text": "sidewalk"}, {"text": "and"}, {"text": "the"}, {"text": "road"}, {"text": "."}, {"text": "Tray"}, {"text": "Bon"}, {"text": "?"}, {"text": "Drink"}, {"text": "Carrier"}, {"text": "Competes"}, {"text": "With"}, {"text": "Cartons"}, {"text": "*"}, {"text": "PORTING"}, {"text": "POTABLES"}, {"text": "just"}, {"text": "got"}, {"text": "easier"}, {"text": ","}, {"text": "or"}, {"text": "so"}, {"text": "claims"}, {"text": "Scypher"}, {"text": "Corp."}, {"text": ","}, {"text": "the"}, {"text": "maker"}, {"text": "of"}, {"text": "the"}, {"text": "Cup-Tote"}, {"text": "."}, {"text": "The"}, {"text": "Chicago"}, {"text": "company"}, {"text": "'s"}, {"text": "beverage"}, {"text": "carrier"}, {"text": ","}, {"text": "*-1"}, {"text": "meant"}, {"text": "*-2"}, {"text": "to"}, {"text": "replace"}, {"text": "cardboard"}, {"text": "trays"}, {"text": "at"}, {"text": "concession"}, {"text": "stands"}, {"text": "and"}, {"text": "fast-food"}, {"text": "outlets"}, {"text": ","}, {"text": "resembles"}, {"text": "the"}, {"text": "plastic"}, {"text": "loops"}, {"text": "used"}, {"text": "*"}, {"text": "on"}, {"text": "six-packs"}, {"text": "of"}, {"text": "beer"}, {"text": ","}, {"text": "only"}, {"text": "the"}, {"text": "loops"}, {"text": "hang"}, {"text": "from"}, {"text": "a"}, {"text": "web"}, {"text": "of"}, {"text": "strings"}, {"text": "."}, {"text": "The"}, {"text": "new"}, {"text": "carrier"}, {"text": "can"}, {"text": "tote"}, {"text": "as"}, {"text": "many"}, {"text": "as"}, {"text": "four"}, {"text": "cups"}, {"text": "at"}, {"text": "once"}, {"text": "."}, {"text": "Inventor"}, {"text": "Claire"}, {"text": "Marvin"}, {"text": "says"}, {"text": "0"}, {"text": "his"}, {"text": "design"}, {"text": "virtually"}, {"text": "eliminates"}, {"text": "spilling"}, {"text": "."}, {"text": "Lids"}, {"text": "are"}, {"text": "n't"}, {"text": "even"}, {"text": "needed"}, {"text": "*-1"}, {"text": "."}, {"text": "He"}, {"text": "also"}, {"text": "claims"}, {"text": "0"}, {"text": "the"}, {"text": "carrier"}, {"text": "costs"}, {"text": "less"}, {"text": "and"}, {"text": "takes"}, {"text": "up"}, {"text": "less"}, {"text": "space"}, {"text": "than"}, {"text": "most"}, {"text": "paper"}, {"text": "carriers"}, {"text": "."}, {"text": "A"}, {"text": "few"}, {"text": "fast-food"}, {"text": "outlets"}, {"text": "are"}, {"text": "giving"}, {"text": "it"}, {"text": "a"}, {"text": "try"}, {"text": "."}, {"text": "The"}, {"text": "company"}, {"text": "acknowledges"}, {"text": "some"}, {"text": "problems"}, {"text": "."}, {"text": "A"}, {"text": "driver"}, {"text": "has"}, {"text": "*-1"}, {"text": "to"}, {"text": "find"}, {"text": "something"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "hang"}, {"text": "the"}, {"text": "carrier"}, {"text": "on"}, {"text": "*T*-2"}, {"text": ","}, {"text": "so"}, {"text": "the"}, {"text": "company"}, {"text": "supplies"}, {"text": "a"}, {"text": "window"}, {"text": "hook"}, {"text": "."}, {"text": "While"}, {"text": "it"}, {"text": "breaks"}, {"text": "down"}, {"text": "in"}, {"text": "prolonged"}, {"text": "sunlight"}, {"text": ","}, {"text": "it"}, {"text": "is"}, {"text": "n't"}, {"text": "recyclable"}, {"text": "."}, {"text": "And"}, {"text": "unlike"}, {"text": "some"}, {"text": "trays"}, {"text": ","}, {"text": "there"}, {"text": "'s"}, {"text": "no"}, {"text": "place"}, {"text": "for"}, {"text": "food"}, {"text": "."}, {"text": "Spirit"}, {"text": "of"}, {"text": "Perestroika"}, {"text": "Touches"}, {"text": "Design"}, {"text": "World"}, {"text": "AN"}, {"text": "EXCHANGE"}, {"text": "of"}, {"text": "U.S."}, {"text": "and"}, {"text": "Soviet"}, {"text": "designers"}, {"text": "promises"}, {"text": "change"}, {"text": "on"}, {"text": "both"}, {"text": "sides"}, {"text": "."}, {"text": "An"}, {"text": "exhibition"}, {"text": "of"}, {"text": "American"}, {"text": "design"}, {"text": "and"}, {"text": "architecture"}, {"text": "opened"}, {"text": "in"}, {"text": "September"}, {"text": "in"}, {"text": "Moscow"}, {"text": "and"}, {"text": "will"}, {"text": "travel"}, {"text": "to"}, {"text": "eight"}, {"text": "other"}, {"text": "Soviet"}, {"text": "cities"}, {"text": "."}, {"text": "The"}, {"text": "show"}, {"text": "runs"}, {"text": "the"}, {"text": "gamut"}, {"text": ","}, {"text": "from"}, {"text": "a"}, {"text": "blender"}, {"text": "to"}, {"text": "chairs"}, {"text": "to"}, {"text": "a"}, {"text": "model"}, {"text": "of"}, {"text": "the"}, {"text": "Citicorp"}, {"text": "building"}, {"text": "."}, {"text": "The"}, {"text": "event"}, {"text": "continues"}, {"text": "into"}, {"text": "next"}, {"text": "year"}, {"text": "and"}, {"text": "includes"}, {"text": "an"}, {"text": "exchange"}, {"text": "program"}, {"text": "*"}, {"text": "to"}, {"text": "swap"}, {"text": "design"}, {"text": "teachers"}, {"text": "at"}, {"text": "Carnegie-Mellon"}, {"text": "and"}, {"text": "Leningrad"}, {"text": "'s"}, {"text": "Mutchin"}, {"text": "Institute"}, {"text": "."}, {"text": "Dan"}, {"text": "Droz"}, {"text": ","}, {"text": "leader"}, {"text": "of"}, {"text": "the"}, {"text": "Carnegie-Mellon"}, {"text": "group"}, {"text": ","}, {"text": "sees"}, {"text": "benefits"}, {"text": "all"}, {"text": "around"}, {"text": "."}, {"text": "The"}, {"text": "Soviets"}, {"text": ","}, {"text": "who"}, {"text": "*T*-12"}, {"text": "normally"}, {"text": "have"}, {"text": "few"}, {"text": "clients"}, {"text": "other"}, {"text": "than"}, {"text": "the"}, {"text": "state"}, {"text": ","}, {"text": "will"}, {"text": "get"}, {"text": "``"}, {"text": "exposure"}, {"text": "to"}, {"text": "a"}, {"text": "market"}, {"text": "system"}, {"text": ","}, {"text": "''"}, {"text": "he"}, {"text": "says"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Americans"}, {"text": "will"}, {"text": "learn"}, {"text": "more"}, {"text": "about"}, {"text": "*"}, {"text": "making"}, {"text": "products"}, {"text": "for"}, {"text": "the"}, {"text": "Soviets"}, {"text": "."}, {"text": "Mr."}, {"text": "Droz"}, {"text": "says"}, {"text": "0"}, {"text": "the"}, {"text": "Soviets"}, {"text": "could"}, {"text": "even"}, {"text": "help"}, {"text": "U.S."}, {"text": "designers"}, {"text": "renew"}, {"text": "their"}, {"text": "sense"}, {"text": "of"}, {"text": "purpose"}, {"text": "."}, {"text": "``"}, {"text": "In"}, {"text": "Moscow"}, {"text": ","}, {"text": "they"}, {"text": "kept"}, {"text": "*-5"}, {"text": "asking"}, {"text": "us"}, {"text": "things"}, {"text": "like"}, {"text": ","}, {"text": "`"}, {"text": "Why"}, {"text": "do"}, {"text": "you"}, {"text": "make"}, {"text": "15"}, {"text": "different"}, {"text": "corkscrews"}, {"text": ","}, {"text": "when"}, {"text": "all"}, {"text": "0"}, {"text": "you"}, {"text": "need"}, {"text": "*T*-3"}, {"text": "is"}, {"text": "one"}, {"text": "good"}, {"text": "one"}, {"text": "*T*-4"}, {"text": "*T*-2"}, {"text": "?"}, {"text": "'"}, {"text": "''"}, {"text": "he"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "."}, {"text": "``"}, {"text": "They"}, {"text": "got"}, {"text": "us"}, {"text": "thinking"}, {"text": "0"}, {"text": "maybe"}, {"text": "we"}, {"text": "should"}, {"text": "be"}, {"text": "helping"}, {"text": "U.S."}, {"text": "companies"}, {"text": "improve"}, {"text": "existing"}, {"text": "products"}, {"text": "rather"}, {"text": "than"}, {"text": "*-1"}, {"text": "always"}, {"text": "developing"}, {"text": "new"}, {"text": "ones"}, {"text": "."}, {"text": "''"}, {"text": "Seed"}, {"text": "for"}, {"text": "Jail"}, {"text": "Solution"}, {"text": "Fails"}, {"text": "*-1"}, {"text": "to"}, {"text": "Take"}, {"text": "Root"}, {"text": "IT"}, {"text": "'S"}, {"text": "A"}, {"text": "TWO"}, {"text": "BIRDS"}, {"text": "with"}, {"text": "one"}, {"text": "stone"}, {"text": "deal"}, {"text": ":"}, {"text": "Eggers"}, {"text": "Group"}, {"text": "architects"}, {"text": "propose"}, {"text": "*-2"}, {"text": "using"}, {"text": "grain"}, {"text": "elevators"}, {"text": "*-1"}, {"text": "to"}, {"text": "house"}, {"text": "prisoners"}, {"text": "."}, {"text": "It"}, {"text": "would"}, {"text": "ease"}, {"text": "jail"}, {"text": "overcrowding"}, {"text": "while"}, {"text": "*-1"}, {"text": "preserving"}, {"text": "historic"}, {"text": "structures"}, {"text": ","}, {"text": "the"}, {"text": "company"}, {"text": "says"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "."}, {"text": "But"}, {"text": "New"}, {"text": "York"}, {"text": "state"}, {"text": ","}, {"text": "which"}, {"text": "*T*-13"}, {"text": "is"}, {"text": "seeking"}, {"text": "solutions"}, {"text": "to"}, {"text": "its"}, {"text": "prison"}, {"text": "cell"}, {"text": "shortage"}, {"text": ","}, {"text": "says"}, {"text": "``"}, {"text": "no"}, {"text": "."}, {"text": "''"}, {"text": "Grain"}, {"text": "elevators"}, {"text": "built"}, {"text": "*"}, {"text": "in"}, {"text": "the"}, {"text": "1920s"}, {"text": "and"}, {"text": "'30s"}, {"text": "have"}, {"text": "six-inch"}, {"text": "concrete"}, {"text": "walls"}, {"text": "and"}, {"text": "a"}, {"text": "tubular"}, {"text": "shape"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "would"}, {"text": "easily"}, {"text": "contain"}, {"text": "semicircular"}, {"text": "cells"}, {"text": "with"}, {"text": "a"}, {"text": "control"}, {"text": "point"}, {"text": "in"}, {"text": "the"}, {"text": "middle"}, {"text": ","}, {"text": "the"}, {"text": "New"}, {"text": "York"}, {"text": "firm"}, {"text": "says"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "."}, {"text": "Many"}, {"text": "are"}, {"text": "far"}, {"text": "enough"}, {"text": "from"}, {"text": "residential"}, {"text": "areas"}, {"text": "*"}, {"text": "to"}, {"text": "pass"}, {"text": "public"}, {"text": "muster"}, {"text": ","}, {"text": "yet"}, {"text": "close"}, {"text": "enough"}, {"text": "*"}, {"text": "to"}, {"text": "permit"}, {"text": "family"}, {"text": "visits"}, {"text": "."}, {"text": "Besides"}, {"text": ","}, {"text": "Eggers"}, {"text": "says"}, {"text": "0"}, {"text": "*T*-1"}, {"text": ","}, {"text": "grain"}, {"text": "elevators"}, {"text": "are"}, {"text": "worth"}, {"text": "*"}, {"text": "preserving"}, {"text": "for"}, {"text": "aesthetic"}, {"text": "reasons"}, {"text": "--"}, {"text": "one"}, {"text": "famed"}, {"text": "architect"}, {"text": "compared"}, {"text": "them"}, {"text": "to"}, {"text": "the"}, {"text": "pyramids"}, {"text": "of"}, {"text": "Egypt"}, {"text": "."}, {"text": "A"}, {"text": "number"}, {"text": "of"}, {"text": "cities"}, {"text": "--"}, {"text": "including"}, {"text": "Minneapolis"}, {"text": ","}, {"text": "Philadelphia"}, {"text": "and"}, {"text": "Houston"}, {"text": "--"}, {"text": "have"}, {"text": "vacant"}, {"text": "grain"}, {"text": "elevators"}, {"text": ","}, {"text": "Eggers"}, {"text": "says"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "A"}, {"text": "medium-sized"}, {"text": "one"}, {"text": "in"}, {"text": "Brooklyn"}, {"text": ","}, {"text": "it"}, {"text": "says"}, {"text": "0"}, {"text": "*T*-1"}, {"text": ","}, {"text": "could"}, {"text": "be"}, {"text": "altered"}, {"text": "*-2"}, {"text": "to"}, {"text": "house"}, {"text": "up"}, {"text": "to"}, {"text": "1,000"}, {"text": "inmates"}, {"text": "at"}, {"text": "a"}, {"text": "lower"}, {"text": "cost"}, {"text": "than"}, {"text": "*"}, {"text": "building"}, {"text": "a"}, {"text": "new"}, {"text": "prison"}, {"text": "in"}, {"text": "upstate"}, {"text": "New"}, {"text": "York"}, {"text": "."}, {"text": "A"}, {"text": "spokesman"}, {"text": "for"}, {"text": "the"}, {"text": "state"}, {"text": ","}, {"text": "however"}, {"text": ","}, {"text": "calls"}, {"text": "the"}, {"text": "idea"}, {"text": "``"}, {"text": "not"}, {"text": "effective"}, {"text": "or"}, {"text": "cost"}, {"text": "efficient"}, {"text": "."}, {"text": "The"}, {"text": "Labor"}, {"text": "Department"}, {"text": "cited"}, {"text": "USX"}, {"text": "Corp."}, {"text": "for"}, {"text": "numerous"}, {"text": "health"}, {"text": "and"}, {"text": "safety"}, {"text": "violations"}, {"text": "at"}, {"text": "two"}, {"text": "Pennsylvania"}, {"text": "plants"}, {"text": ","}, {"text": "and"}, {"text": "proposed"}, {"text": "$"}, {"text": "7.3"}, {"text": "million"}, {"text": "*U*"}, {"text": "in"}, {"text": "fines"}, {"text": ","}, {"text": "the"}, {"text": "largest"}, {"text": "penalty"}, {"text": "ever"}, {"text": "proposed"}, {"text": "*"}, {"text": "for"}, {"text": "alleged"}, {"text": "workplace"}, {"text": "violations"}, {"text": "by"}, {"text": "an"}, {"text": "employer"}, {"text": "."}, {"text": "The"}, {"text": "department"}, {"text": "'s"}, {"text": "Occupational"}, {"text": "Safety"}, {"text": "and"}, {"text": "Health"}, {"text": "Administration"}, {"text": "proposed"}, {"text": "fines"}, {"text": "of"}, {"text": "$"}, {"text": "6.1"}, {"text": "million"}, {"text": "*U*"}, {"text": "for"}, {"text": "alleged"}, {"text": "violations"}, {"text": "at"}, {"text": "the"}, {"text": "company"}, {"text": "'s"}, {"text": "Fairless"}, {"text": "Hills"}, {"text": ","}, {"text": "Pa."}, {"text": ","}, {"text": "steel"}, {"text": "mill"}, {"text": ";"}, {"text": "that"}, {"text": "was"}, {"text": "a"}, {"text": "record"}, {"text": "for"}, {"text": "proposed"}, {"text": "penalties"}, {"text": "at"}, {"text": "any"}, {"text": "single"}, {"text": "facility"}, {"text": "."}, {"text": "OSHA"}, {"text": "cited"}, {"text": "nearly"}, {"text": "1,500"}, {"text": "alleged"}, {"text": "violations"}, {"text": "of"}, {"text": "federal"}, {"text": "electrical"}, {"text": ","}, {"text": "crane-safety"}, {"text": ","}, {"text": "record-keeping"}, {"text": "and"}, {"text": "other"}, {"text": "requirements"}, {"text": "."}, {"text": "A"}, {"text": "second"}, {"text": "citation"}, {"text": "covering"}, {"text": "the"}, {"text": "company"}, {"text": "'s"}, {"text": "Clairton"}, {"text": ","}, {"text": "Pa."}, {"text": ","}, {"text": "coke"}, {"text": "works"}, {"text": "involved"}, {"text": "more"}, {"text": "than"}, {"text": "200"}, {"text": "alleged"}, {"text": "violations"}, {"text": "of"}, {"text": "electrical-safety"}, {"text": "and"}, {"text": "other"}, {"text": "requirements"}, {"text": ","}, {"text": "for"}, {"text": "which"}, {"text": "OSHA"}, {"text": "proposed"}, {"text": "$"}, {"text": "1.2"}, {"text": "million"}, {"text": "*U*"}, {"text": "in"}, {"text": "fines"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Labor"}, {"text": "Secretary"}, {"text": "Elizabeth"}, {"text": "Dole"}, {"text": "said"}, {"text": ","}, {"text": "``"}, {"text": "The"}, {"text": "magnitude"}, {"text": "of"}, {"text": "these"}, {"text": "penalties"}, {"text": "and"}, {"text": "citations"}, {"text": "is"}, {"text": "matched"}, {"text": "*-1"}, {"text": "only"}, {"text": "by"}, {"text": "the"}, {"text": "magnitude"}, {"text": "of"}, {"text": "the"}, {"text": "hazards"}, {"text": "to"}, {"text": "workers"}, {"text": "which"}, {"text": "*T*-14"}, {"text": "resulted"}, {"text": "from"}, {"text": "corporate"}, {"text": "indifference"}, {"text": "to"}, {"text": "worker"}, {"text": "safety"}, {"text": "and"}, {"text": "health"}, {"text": ","}, {"text": "and"}, {"text": "severe"}, {"text": "cutbacks"}, {"text": "in"}, {"text": "the"}, {"text": "maintenance"}, {"text": "and"}, {"text": "repair"}, {"text": "programs"}, {"text": "needed"}, {"text": "*"}, {"text": "to"}, {"text": "remove"}, {"text": "those"}, {"text": "hazards"}, {"text": "."}, {"text": "''"}, {"text": "OSHA"}, {"text": "said"}, {"text": "0"}, {"text": "there"}, {"text": "have"}, {"text": "been"}, {"text": "three"}, {"text": "worker"}, {"text": "fatalities"}, {"text": "at"}, {"text": "the"}, {"text": "two"}, {"text": "plants"}, {"text": "in"}, {"text": "the"}, {"text": "past"}, {"text": "two"}, {"text": "years"}, {"text": "and"}, {"text": "17"}, {"text": "deaths"}, {"text": "since"}, {"text": "1972"}, {"text": "."}, {"text": "Gerard"}, {"text": "Scannell"}, {"text": ","}, {"text": "the"}, {"text": "head"}, {"text": "of"}, {"text": "OSHA"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "USX"}, {"text": "managers"}, {"text": "have"}, {"text": "known"}, {"text": "about"}, {"text": "many"}, {"text": "of"}, {"text": "the"}, {"text": "safety"}, {"text": "and"}, {"text": "health"}, {"text": "deficiencies"}, {"text": "at"}, {"text": "the"}, {"text": "plants"}, {"text": "for"}, {"text": "years"}, {"text": ","}, {"text": "``"}, {"text": "yet"}, {"text": "have"}, {"text": "failed"}, {"text": "*-1"}, {"text": "to"}, {"text": "take"}, {"text": "necessary"}, {"text": "action"}, {"text": "*"}, {"text": "to"}, {"text": "counteract"}, {"text": "the"}, {"text": "hazards"}, {"text": "."}, {"text": "''"}, {"text": "``"}, {"text": "Particularly"}, {"text": "flagrant"}, {"text": ","}, {"text": "''"}, {"text": "Mrs."}, {"text": "Dole"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-2"}, {"text": ","}, {"text": "``"}, {"text": "are"}, {"text": "*T*-1"}, {"text": "the"}, {"text": "company"}, {"text": "'s"}, {"text": "numerous"}, {"text": "failures"}, {"text": "*"}, {"text": "to"}, {"text": "properly"}, {"text": "record"}, {"text": "injuries"}, {"text": "at"}, {"text": "its"}, {"text": "Fairless"}, {"text": "works"}, {"text": ","}, {"text": "in"}, {"text": "spite"}, {"text": "of"}, {"text": "the"}, {"text": "firm"}, {"text": "promise"}, {"text": "0"}, {"text": "it"}, {"text": "had"}, {"text": "made"}, {"text": "*T*-3"}, {"text": "in"}, {"text": "an"}, {"text": "earlier"}, {"text": "corporate-wide"}, {"text": "settlement"}, {"text": "agreement"}, {"text": "*"}, {"text": "to"}, {"text": "correct"}, {"text": "such"}, {"text": "discrepancies"}, {"text": "."}, {"text": "''"}, {"text": "That"}, {"text": "settlement"}, {"text": "was"}, {"text": "in"}, {"text": "April"}, {"text": "1987"}, {"text": "."}, {"text": "A"}, {"text": "USX"}, {"text": "spokesman"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "company"}, {"text": "had"}, {"text": "n't"}, {"text": "yet"}, {"text": "received"}, {"text": "any"}, {"text": "documents"}, {"text": "*ICH*-1"}, {"text": "from"}, {"text": "OSHA"}, {"text": "regarding"}, {"text": "the"}, {"text": "penalty"}, {"text": "or"}, {"text": "fine"}, {"text": "."}, {"text": "``"}, {"text": "Once"}, {"text": "we"}, {"text": "do"}, {"text": ","}, {"text": "they"}, {"text": "will"}, {"text": "receive"}, {"text": "very"}, {"text": "serious"}, {"text": "evaluation"}, {"text": ","}, {"text": "''"}, {"text": "the"}, {"text": "spokesman"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "."}, {"text": "``"}, {"text": "No"}, {"text": "consideration"}, {"text": "is"}, {"text": "more"}, {"text": "important"}, {"text": "than"}, {"text": "the"}, {"text": "health"}, {"text": "and"}, {"text": "safety"}, {"text": "of"}, {"text": "our"}, {"text": "employees"}, {"text": "."}, {"text": "''"}, {"text": "USX"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "has"}, {"text": "been"}, {"text": "cooperating"}, {"text": "with"}, {"text": "OSHA"}, {"text": "since"}, {"text": "the"}, {"text": "agency"}, {"text": "began"}, {"text": "*-1"}, {"text": "investigating"}, {"text": "the"}, {"text": "Clairton"}, {"text": "and"}, {"text": "Fairless"}, {"text": "works"}, {"text": "."}, {"text": "He"}, {"text": "said"}, {"text": "that"}, {"text": ","}, {"text": "if"}, {"text": "and"}, {"text": "when"}, {"text": "safety"}, {"text": "problems"}, {"text": "were"}, {"text": "identified"}, {"text": "*-15"}, {"text": "*T*-1"}, {"text": ","}, {"text": "they"}, {"text": "were"}, {"text": "corrected"}, {"text": "*-16"}, {"text": "."}, {"text": "The"}, {"text": "USX"}, {"text": "citations"}, {"text": "represented"}, {"text": "the"}, {"text": "first"}, {"text": "sizable"}, {"text": "enforcement"}, {"text": "action"}, {"text": "taken"}, {"text": "*"}, {"text": "by"}, {"text": "OSHA"}, {"text": "under"}, {"text": "Mr."}, {"text": "Scannell"}, {"text": "."}, {"text": "He"}, {"text": "has"}, {"text": "promised"}, {"text": "stiffer"}, {"text": "fines"}, {"text": ","}, {"text": "though"}, {"text": "the"}, {"text": "size"}, {"text": "of"}, {"text": "penalties"}, {"text": "sought"}, {"text": "*"}, {"text": "by"}, {"text": "OSHA"}, {"text": "have"}, {"text": "been"}, {"text": "rising"}, {"text": "in"}, {"text": "recent"}, {"text": "years"}, {"text": "even"}, {"text": "before"}, {"text": "he"}, {"text": "took"}, {"text": "office"}, {"text": "this"}, {"text": "year"}, {"text": "."}, {"text": "``"}, {"text": "The"}, {"text": "big"}, {"text": "problem"}, {"text": "is"}, {"text": "that"}, {"text": "USX"}, {"text": "management"}, {"text": "has"}, {"text": "proved"}, {"text": "*-1"}, {"text": "unwilling"}, {"text": "*-2"}, {"text": "to"}, {"text": "devote"}, {"text": "the"}, {"text": "necessary"}, {"text": "resources"}, {"text": "and"}, {"text": "manpower"}, {"text": "to"}, {"text": "*"}, {"text": "removing"}, {"text": "hazards"}, {"text": "and"}, {"text": "to"}, {"text": "*"}, {"text": "safeguarding"}, {"text": "safety"}, {"text": "and"}, {"text": "health"}, {"text": "in"}, {"text": "the"}, {"text": "plants"}, {"text": ","}, {"text": "''"}, {"text": "said"}, {"text": "*T*-3"}, {"text": "Linda"}, {"text": "Anku"}, {"text": ","}, {"text": "OSHA"}, {"text": "regional"}, {"text": "administrator"}, {"text": "in"}, {"text": "Philadelphia"}, {"text": "."}, {"text": "USX"}, {"text": "has"}, {"text": "15"}, {"text": "working"}, {"text": "days"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "contest"}, {"text": "the"}, {"text": "citations"}, {"text": "and"}, {"text": "proposed"}, {"text": "penalties"}, {"text": ","}, {"text": "before"}, {"text": "the"}, {"text": "independent"}, {"text": "Occupational"}, {"text": "Safety"}, {"text": "and"}, {"text": "Health"}, {"text": "Review"}, {"text": "Commission"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Before"}, {"text": "the"}, {"text": "USX"}, {"text": "case"}, {"text": ","}, {"text": "OSHA"}, {"text": "'s"}, {"text": "largest"}, {"text": "proposed"}, {"text": "fine"}, {"text": "for"}, {"text": "one"}, {"text": "employer"}, {"text": "was"}, {"text": "$"}, {"text": "4.3"}, {"text": "million"}, {"text": "*U*"}, {"text": "for"}, {"text": "alleged"}, {"text": "safety"}, {"text": "violations"}, {"text": "at"}, {"text": "John"}, {"text": "Morrell"}, {"text": "&"}, {"text": "Co."}, {"text": ","}, {"text": "a"}, {"text": "meatpacking"}, {"text": "subsidiary"}, {"text": "of"}, {"text": "United"}, {"text": "Brands"}, {"text": "Co."}, {"text": ","}, {"text": "Cincinnati"}, {"text": "."}, {"text": "The"}, {"text": "company"}, {"text": "is"}, {"text": "contesting"}, {"text": "the"}, {"text": "fine"}, {"text": "."}, {"text": "Due"}, {"text": "to"}, {"text": "an"}, {"text": "editing"}, {"text": "error"}, {"text": ","}, {"text": "a"}, {"text": "letter"}, {"text": "to"}, {"text": "the"}, {"text": "editor"}, {"text": "in"}, {"text": "yesterday"}, {"text": "'s"}, {"text": "edition"}, {"text": "from"}, {"text": "Frederick"}, {"text": "H."}, {"text": "Hallett"}, {"text": "mistakenly"}, {"text": "identified"}, {"text": "the"}, {"text": "NRDC"}, {"text": "."}, {"text": "It"}, {"text": "should"}, {"text": "be"}, {"text": "the"}, {"text": "Natural"}, {"text": "Resources"}, {"text": "Defense"}, {"text": "Council"}, {"text": "."}, {"text": "Your"}, {"text": "Oct."}, {"text": "6"}, {"text": "editorial"}, {"text": "``"}, {"text": "The"}, {"text": "Ill"}, {"text": "Homeless"}, {"text": "''"}, {"text": "referred"}, {"text": "to"}, {"text": "research"}, {"text": "by"}, {"text": "us"}, {"text": "and"}, {"text": "six"}, {"text": "of"}, {"text": "our"}, {"text": "colleagues"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "was"}, {"text": "reported"}, {"text": "*-17"}, {"text": "in"}, {"text": "the"}, {"text": "Sept."}, {"text": "8"}, {"text": "issue"}, {"text": "of"}, {"text": "the"}, {"text": "Journal"}, {"text": "of"}, {"text": "the"}, {"text": "American"}, {"text": "Medical"}, {"text": "Association"}, {"text": "."}, {"text": "Your"}, {"text": "comments"}, {"text": "implied"}, {"text": "0"}, {"text": "we"}, {"text": "had"}, {"text": "discovered"}, {"text": "that"}, {"text": "the"}, {"text": "``"}, {"text": "principal"}, {"text": "cause"}, {"text": "''"}, {"text": "of"}, {"text": "homelessness"}, {"text": "is"}, {"text": "*-1"}, {"text": "to"}, {"text": "be"}, {"text": "found"}, {"text": "*-18"}, {"text": "in"}, {"text": "the"}, {"text": "large"}, {"text": "numbers"}, {"text": "of"}, {"text": "mentally"}, {"text": "ill"}, {"text": "and"}, {"text": "substance-abusing"}, {"text": "people"}, {"text": "in"}, {"text": "the"}, {"text": "homeless"}, {"text": "population"}, {"text": "."}, {"text": "We"}, {"text": "have"}, {"text": "made"}, {"text": "no"}, {"text": "such"}, {"text": "statement"}, {"text": "."}, {"text": "It"}, {"text": "*EXP*-1"}, {"text": "is"}, {"text": "clear"}, {"text": "that"}, {"text": "most"}, {"text": "mentally"}, {"text": "ill"}, {"text": "people"}, {"text": "and"}, {"text": "most"}, {"text": "alcoholics"}, {"text": "do"}, {"text": "not"}, {"text": "become"}, {"text": "homeless"}, {"text": "."}, {"text": "The"}, {"text": "``"}, {"text": "causes"}, {"text": "''"}, {"text": "of"}, {"text": "homelessness"}, {"text": "are"}, {"text": "poorly"}, {"text": "understood"}, {"text": "and"}, {"text": "complex"}, {"text": "in"}, {"text": "any"}, {"text": "individual"}, {"text": "case"}, {"text": "."}, {"text": "In"}, {"text": "*"}, {"text": "quoting"}, {"text": "from"}, {"text": "our"}, {"text": "research"}, {"text": "you"}, {"text": "emphasized"}, {"text": "the"}, {"text": "high"}, {"text": "prevalance"}, {"text": "of"}, {"text": "mental"}, {"text": "illness"}, {"text": "and"}, {"text": "alcoholism"}, {"text": "."}, {"text": "You"}, {"text": "did"}, {"text": "not"}, {"text": "note"}, {"text": "that"}, {"text": "the"}, {"text": "homeless"}, {"text": "people"}, {"text": "0"}, {"text": "we"}, {"text": "examined"}, {"text": "*T*-1"}, {"text": "had"}, {"text": "a"}, {"text": "multitude"}, {"text": "of"}, {"text": "physical"}, {"text": "disorders"}, {"text": "in"}, {"text": "addition"}, {"text": "to"}, {"text": "their"}, {"text": "psychiatric"}, {"text": "problems"}, {"text": "and"}, {"text": "substance"}, {"text": "abuse"}, {"text": "."}, {"text": "They"}, {"text": "suffered"}, {"text": "from"}, {"text": "malnutrition"}, {"text": ","}, {"text": "chest"}, {"text": "diseases"}, {"text": ","}, {"text": "cardiovascular"}, {"text": "disorders"}, {"text": ","}, {"text": "skin"}, {"text": "problems"}, {"text": ","}, {"text": "infectious"}, {"text": "diseases"}, {"text": "and"}, {"text": "the"}, {"text": "aftereffects"}, {"text": "of"}, {"text": "assaults"}, {"text": "and"}, {"text": "rape"}, {"text": "."}, {"text": "Homeless"}, {"text": "people"}, {"text": "not"}, {"text": "only"}, {"text": "lack"}, {"text": "safety"}, {"text": ","}, {"text": "privacy"}, {"text": "and"}, {"text": "shelter"}, {"text": ","}, {"text": "they"}, {"text": "also"}, {"text": "lack"}, {"text": "the"}, {"text": "elementary"}, {"text": "necessities"}, {"text": "of"}, {"text": "nutrition"}, {"text": ","}, {"text": "cleanliness"}, {"text": "and"}, {"text": "basic"}, {"text": "health"}, {"text": "care"}, {"text": "."}, {"text": "In"}, {"text": "a"}, {"text": "recent"}, {"text": "report"}, {"text": ","}, {"text": "the"}, {"text": "Institute"}, {"text": "of"}, {"text": "Medicine"}, {"text": "pointed"}, {"text": "out"}, {"text": "that"}, {"text": "certain"}, {"text": "health"}, {"text": "problems"}, {"text": "may"}, {"text": "predispose"}, {"text": "a"}, {"text": "person"}, {"text": "to"}, {"text": "homelessness"}, {"text": ","}, {"text": "others"}, {"text": "may"}, {"text": "be"}, {"text": "a"}, {"text": "consequence"}, {"text": "of"}, {"text": "it"}, {"text": ","}, {"text": "and"}, {"text": "a"}, {"text": "third"}, {"text": "category"}, {"text": "is"}, {"text": "composed"}, {"text": "*-19"}, {"text": "of"}, {"text": "disorders"}, {"text": "whose"}, {"text": "treatment"}, {"text": "*T*-15"}, {"text": "is"}, {"text": "difficult"}, {"text": "or"}, {"text": "impossible"}, {"text": "if"}, {"text": "a"}, {"text": "person"}, {"text": "lacks"}, {"text": "adequate"}, {"text": "shelter"}, {"text": "."}, {"text": "The"}, {"text": "interactions"}, {"text": "between"}, {"text": "health"}, {"text": "and"}, {"text": "homelessness"}, {"text": "are"}, {"text": "complex"}, {"text": ","}, {"text": "*-1"}, {"text": "defying"}, {"text": "sweeping"}, {"text": "generalizations"}, {"text": "as"}, {"text": "to"}, {"text": "``"}, {"text": "cause"}, {"text": "''"}, {"text": "or"}, {"text": "``"}, {"text": "effect"}, {"text": "."}, {"text": "''"}, {"text": "If"}, {"text": "we"}, {"text": "look"}, {"text": "to"}, {"text": "the"}, {"text": "future"}, {"text": ","}, {"text": "*"}, {"text": "preventing"}, {"text": "homelessness"}, {"text": "is"}, {"text": "an"}, {"text": "important"}, {"text": "objective"}, {"text": "."}, {"text": "This"}, {"text": "will"}, {"text": "require"}, {"text": "us"}, {"text": "to"}, {"text": "develop"}, {"text": "a"}, {"text": "much"}, {"text": "more"}, {"text": "sophisticated"}, {"text": "understanding"}, {"text": "of"}, {"text": "the"}, {"text": "dynamics"}, {"text": "of"}, {"text": "homelessness"}, {"text": "than"}, {"text": "we"}, {"text": "currently"}, {"text": "possess"}, {"text": "*?*"}, {"text": ","}, {"text": "an"}, {"text": "understanding"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "can"}, {"text": "be"}, {"text": "developed"}, {"text": "*-20"}, {"text": "only"}, {"text": "through"}, {"text": "careful"}, {"text": "study"}, {"text": "and"}, {"text": "research"}, {"text": "."}, {"text": "William"}, {"text": "R."}, {"text": "Breakey"}, {"text": "M.D."}, {"text": "Pamela"}, {"text": "J."}, {"text": "Fischer"}, {"text": "M.D."}, {"text": "Department"}, {"text": "of"}, {"text": "Psychiatry"}, {"text": "Johns"}, {"text": "Hopkins"}, {"text": "University"}, {"text": "School"}, {"text": "of"}, {"text": "Medicine"}, {"text": "Baltimore"}, {"text": "A"}, {"text": "study"}, {"text": "by"}, {"text": "Tulane"}, {"text": "Prof."}, {"text": "James"}, {"text": "Wright"}, {"text": "says"}, {"text": "0"}, {"text": "homelessness"}, {"text": "is"}, {"text": "due"}, {"text": "to"}, {"text": "a"}, {"text": "complex"}, {"text": "array"}, {"text": "of"}, {"text": "problems"}, {"text": ","}, {"text": "with"}, {"text": "the"}, {"text": "common"}, {"text": "thread"}, {"text": "of"}, {"text": "poverty"}, {"text": "."}, {"text": "The"}, {"text": "study"}, {"text": "shows"}, {"text": "that"}, {"text": "nearly"}, {"text": "40"}, {"text": "%"}, {"text": "of"}, {"text": "the"}, {"text": "homeless"}, {"text": "population"}, {"text": "is"}, {"text": "made"}, {"text": "up"}, {"text": "*-21"}, {"text": "of"}, {"text": "women"}, {"text": "and"}, {"text": "children"}, {"text": "and"}, {"text": "that"}, {"text": "only"}, {"text": "25"}, {"text": "%"}, {"text": "of"}, {"text": "the"}, {"text": "homeless"}, {"text": "exhibits"}, {"text": "some"}, {"text": "combination"}, {"text": "of"}, {"text": "drug"}, {"text": ","}, {"text": "alcohol"}, {"text": "and"}, {"text": "mental"}, {"text": "problems"}, {"text": "."}, {"text": "According"}, {"text": "to"}, {"text": "Dr."}, {"text": "Wright"}, {"text": ","}, {"text": "homelessness"}, {"text": "is"}, {"text": "``"}, {"text": "simultaneously"}, {"text": "a"}, {"text": "housing"}, {"text": "problem"}, {"text": ","}, {"text": "an"}, {"text": "employment"}, {"text": "problem"}, {"text": ","}, {"text": "a"}, {"text": "demographic"}, {"text": "problem"}, {"text": ","}, {"text": "a"}, {"text": "problem"}, {"text": "of"}, {"text": "social"}, {"text": "disaffiliation"}, {"text": ","}, {"text": "a"}, {"text": "mental"}, {"text": "health"}, {"text": "problem"}, {"text": ","}, {"text": "a"}, {"text": "family"}, {"text": "violence"}, {"text": "problem"}, {"text": ","}, {"text": "a"}, {"text": "problem"}, {"text": "created"}, {"text": "*"}, {"text": "by"}, {"text": "the"}, {"text": "cutbacks"}, {"text": "in"}, {"text": "social"}, {"text": "welfare"}, {"text": "spending"}, {"text": ","}, {"text": "a"}, {"text": "problem"}, {"text": "resulting"}, {"text": "from"}, {"text": "the"}, {"text": "decay"}, {"text": "of"}, {"text": "the"}, {"text": "traditional"}, {"text": "nuclear"}, {"text": "family"}, {"text": ","}, {"text": "and"}, {"text": "a"}, {"text": "problem"}, {"text": "intimately"}, {"text": "connected"}, {"text": "to"}, {"text": "the"}, {"text": "recent"}, {"text": "increase"}, {"text": "in"}, {"text": "the"}, {"text": "number"}, {"text": "of"}, {"text": "persons"}, {"text": "living"}, {"text": "below"}, {"text": "the"}, {"text": "poverty"}, {"text": "level"}, {"text": "."}, {"text": "''"}, {"text": "Leighton"}, {"text": "E."}, {"text": "Cluff"}, {"text": "M.D."}, {"text": "President"}, {"text": "Robert"}, {"text": "Wood"}, {"text": "Johnson"}, {"text": "Foundation"}, {"text": "Princeton"}, {"text": ","}, {"text": "N.J"}, {"text": "."}, {"text": "*"}, {"text": "To"}, {"text": "quote"}, {"text": "the"}, {"text": "highly"}, {"text": "regarded"}, {"text": "director"}, {"text": "of"}, {"text": "a"}, {"text": "privately"}, {"text": "funded"}, {"text": "drop-in"}, {"text": "center"}, {"text": "for"}, {"text": "the"}, {"text": "homeless"}, {"text": "in"}, {"text": "New"}, {"text": "York"}, {"text": ":"}, {"text": "``"}, {"text": "If"}, {"text": "you"}, {"text": "'re"}, {"text": "homeless"}, {"text": ","}, {"text": "you"}, {"text": "do"}, {"text": "n't"}, {"text": "sleep"}, {"text": "for"}, {"text": "fear"}, {"text": "of"}, {"text": "*"}, {"text": "being"}, {"text": "robbed"}, {"text": "or"}, {"text": "murdered"}, {"text": "*-1"}, {"text": "."}, {"text": "After"}, {"text": "your"}, {"text": "first"}, {"text": "three"}, {"text": "weeks"}, {"text": "of"}, {"text": "sleep"}, {"text": "deprivation"}, {"text": ","}, {"text": "you"}, {"text": "'re"}, {"text": "scarcely"}, {"text": "in"}, {"text": "touch"}, {"text": "with"}, {"text": "reality"}, {"text": "any"}, {"text": "more"}, {"text": ";"}, {"text": "without"}, {"text": "psychiatric"}, {"text": "treatment"}, {"text": ","}, {"text": "you"}, {"text": "may"}, {"text": "well"}, {"text": "be"}, {"text": "unable"}, {"text": "*-1"}, {"text": "to"}, {"text": "fend"}, {"text": "for"}, {"text": "yourself"}, {"text": "ever"}, {"text": "again"}, {"text": "."}, {"text": "''"}, {"text": "Some"}, {"text": "of"}, {"text": "the"}, {"text": "homeless"}, {"text": ","}, {"text": "obviously"}, {"text": ","}, {"text": "had"}, {"text": "pre-existing"}, {"text": "mental"}, {"text": "illness"}, {"text": "or"}, {"text": "addiction"}, {"text": "."}, {"text": "But"}, {"text": "many"}, {"text": "others"}, {"text": "have"}, {"text": "fallen"}, {"text": "through"}, {"text": "cracks"}, {"text": "in"}, {"text": "the"}, {"text": "economy"}, {"text": "into"}, {"text": "the"}, {"text": "grim"}, {"text": ","}, {"text": "brutal"}, {"text": "world"}, {"text": "of"}, {"text": "our"}, {"text": "city"}, {"text": "streets"}, {"text": "."}, {"text": "Once"}, {"text": "there"}, {"text": ","}, {"text": "what"}, {"text": "ways"}, {"text": "of"}, {"text": "escape"}, {"text": "*ICH*-2"}, {"text": "are"}, {"text": "*T*-1"}, {"text": "open"}, {"text": "to"}, {"text": "them"}, {"text": "other"}, {"text": "than"}, {"text": "drink"}, {"text": ","}, {"text": "drugs"}, {"text": "or"}, {"text": "insanity"}, {"text": "?"}, {"text": "Maxwell"}, {"text": "R.D."}, {"text": "Vos"}, {"text": "Brooklyn"}, {"text": ","}, {"text": "N.Y"}, {"text": "."}, {"text": "You"}, {"text": "dismiss"}, {"text": "as"}, {"text": "``"}, {"text": "sentimental"}, {"text": "''"}, {"text": "the"}, {"text": "view"}, {"text": "that"}, {"text": "the"}, {"text": "reduction"}, {"text": "of"}, {"text": "federal"}, {"text": "housing-assistance"}, {"text": "programs"}, {"text": "by"}, {"text": "77"}, {"text": "%"}, {"text": "might"}, {"text": "have"}, {"text": "played"}, {"text": "a"}, {"text": "significant"}, {"text": "role"}, {"text": "in"}, {"text": "the"}, {"text": "increased"}, {"text": "number"}, {"text": "of"}, {"text": "men"}, {"text": "and"}, {"text": "women"}, {"text": "sleeping"}, {"text": "on"}, {"text": "our"}, {"text": "city"}, {"text": "streets"}, {"text": "during"}, {"text": "the"}, {"text": "Reagan-Bush"}, {"text": "years"}, {"text": "."}, {"text": "There"}, {"text": "is"}, {"text": "no"}, {"text": "sign"}, {"text": "that"}, {"text": "you"}, {"text": "bothered"}, {"text": "*-1"}, {"text": "to"}, {"text": "consider"}, {"text": "the"}, {"text": "inverse"}, {"text": "of"}, {"text": "your"}, {"text": "logic"}, {"text": ":"}, {"text": "namely"}, {"text": ","}, {"text": "that"}, {"text": "mental"}, {"text": "illness"}, {"text": "and"}, {"text": "substance"}, {"text": "abuse"}, {"text": "might"}, {"text": "be"}, {"text": "to"}, {"text": "some"}, {"text": "degree"}, {"text": "consequences"}, {"text": "rather"}, {"text": "than"}, {"text": "causes"}, {"text": "of"}, {"text": "homelessness"}, {"text": "."}, {"text": "Your"}, {"text": "research"}, {"text": "stopped"}, {"text": "when"}, {"text": "a"}, {"text": "convenient"}, {"text": "assertion"}, {"text": "could"}, {"text": "be"}, {"text": "made"}, {"text": "*-22"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Robert"}, {"text": "S."}, {"text": "Jenkins"}, {"text": "Cambridge"}, {"text": ","}, {"text": "Mass"}, {"text": "."}, {"text": "Of"}, {"text": "the"}, {"text": "approximately"}, {"text": "200"}, {"text": "sponsors"}, {"text": "of"}, {"text": "the"}, {"text": "recent"}, {"text": "march"}, {"text": "in"}, {"text": "Washington"}, {"text": "for"}, {"text": "the"}, {"text": "homeless"}, {"text": ","}, {"text": "you"}, {"text": "chose"}, {"text": "*-1"}, {"text": "to"}, {"text": "cite"}, {"text": "such"}, {"text": "groups"}, {"text": "as"}, {"text": "the"}, {"text": "National"}, {"text": "Association"}, {"text": "of"}, {"text": "Home"}, {"text": "Builders"}, {"text": "and"}, {"text": "the"}, {"text": "International"}, {"text": "Union"}, {"text": "of"}, {"text": "Bricklayers"}, {"text": "and"}, {"text": "Allied"}, {"text": "Craftsmen"}, {"text": ","}, {"text": "*-1"}, {"text": "insinuating"}, {"text": "that"}, {"text": "the"}, {"text": "march"}, {"text": "got"}, {"text": "its"}, {"text": "major"}, {"text": "support"}, {"text": "from"}, {"text": "self-serving"}, {"text": "groups"}, {"text": "that"}, {"text": "``"}, {"text": "*T*-2"}, {"text": "know"}, {"text": "a"}, {"text": "good"}, {"text": "thing"}, {"text": "when"}, {"text": "they"}, {"text": "see"}, {"text": "it"}, {"text": "*T*-3"}, {"text": ","}, {"text": "''"}, {"text": "and"}, {"text": "that"}, {"text": "the"}, {"text": "crusade"}, {"text": "was"}, {"text": "based"}, {"text": "*-23"}, {"text": "on"}, {"text": "greed"}, {"text": "or"}, {"text": "the"}, {"text": "profit"}, {"text": "motive"}, {"text": "."}, {"text": "But"}, {"text": "is"}, {"text": "n't"}, {"text": "the"}, {"text": "desire"}, {"text": "for"}, {"text": "profit"}, {"text": "the"}, {"text": "driving"}, {"text": "force"}, {"text": "behind"}, {"text": "those"}, {"text": "who"}, {"text": "*T*-16"}, {"text": "subscribe"}, {"text": "to"}, {"text": "*RNR*-1"}, {"text": ","}, {"text": "and"}, {"text": "advertise"}, {"text": "in"}, {"text": "*RNR*-1"}, {"text": ","}, {"text": "your"}, {"text": "paper"}, {"text": "?"}, {"text": "Why"}, {"text": "did"}, {"text": "n't"}, {"text": "you"}, {"text": "mention"}, {"text": "the"}, {"text": "YMCA"}, {"text": "or"}, {"text": "the"}, {"text": "YWCA"}, {"text": "or"}, {"text": "Catholic"}, {"text": "Charities"}, {"text": "USA"}, {"text": "or"}, {"text": "a"}, {"text": "hundred"}, {"text": "other"}, {"text": "nonprofit"}, {"text": "organizations"}, {"text": "that"}, {"text": "*T*-17"}, {"text": "participated"}, {"text": "in"}, {"text": "the"}, {"text": "march"}, {"text": "*T*-1"}, {"text": "?"}, {"text": "As"}, {"text": "for"}, {"text": "the"}, {"text": "findings"}, {"text": "on"}, {"text": "the"}, {"text": "203"}, {"text": "Baltimore"}, {"text": "homeless"}, {"text": "who"}, {"text": "*T*-18"}, {"text": "underwent"}, {"text": "psychiatric"}, {"text": "examinations"}, {"text": ","}, {"text": "I"}, {"text": "suggest"}, {"text": "0"}, {"text": "you"}, {"text": "conduct"}, {"text": "your"}, {"text": "own"}, {"text": "survey"}, {"text": "."}, {"text": "*"}, {"text": "Choose"}, {"text": "203"}, {"text": "business"}, {"text": "executives"}, {"text": ","}, {"text": "including"}, {"text": ","}, {"text": "perhaps"}, {"text": ","}, {"text": "someone"}, {"text": "from"}, {"text": "your"}, {"text": "own"}, {"text": "staff"}, {"text": ","}, {"text": "and"}, {"text": "*"}, {"text": "put"}, {"text": "them"}, {"text": "out"}, {"text": "on"}, {"text": "the"}, {"text": "streets"}, {"text": ","}, {"text": "*-1"}, {"text": "to"}, {"text": "be"}, {"text": "deprived"}, {"text": "*-24"}, {"text": "for"}, {"text": "one"}, {"text": "month"}, {"text": "of"}, {"text": "their"}, {"text": "homes"}, {"text": ","}, {"text": "families"}, {"text": "and"}, {"text": "income"}, {"text": "."}, {"text": "I"}, {"text": "would"}, {"text": "predict"}, {"text": "that"}, {"text": "within"}, {"text": "a"}, {"text": "short"}, {"text": "time"}, {"text": "most"}, {"text": "of"}, {"text": "them"}, {"text": "would"}, {"text": "find"}, {"text": "Thunderbird"}, {"text": "a"}, {"text": "satisfactory"}, {"text": "substitute"}, {"text": "for"}, {"text": "Chivas"}, {"text": "Regal"}, {"text": "and"}, {"text": "that"}, {"text": "their"}, {"text": "``"}, {"text": "normal"}, {"text": "''"}, {"text": "phobias"}, {"text": ","}, {"text": "anxieties"}, {"text": ","}, {"text": "depressions"}, {"text": "and"}, {"text": "substance"}, {"text": "abuse"}, {"text": "would"}, {"text": "increase"}, {"text": "dramatically"}, {"text": "."}, {"text": "Ruth"}, {"text": "K."}, {"text": "Nelson"}, {"text": "Cullowhee"}, {"text": ","}, {"text": "N.C"}, {"text": "."}, {"text": "ROGERS"}, {"text": "COMMUNICATIONS"}, {"text": "Inc."}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "plans"}, {"text": "*-1"}, {"text": "to"}, {"text": "raise"}, {"text": "175"}, {"text": "million"}, {"text": "to"}, {"text": "180"}, {"text": "million"}, {"text": "Canadian"}, {"text": "dollars"}, {"text": "-LRB-"}, {"text": "US$"}, {"text": "148.9"}, {"text": "million"}, {"text": "to"}, {"text": "$"}, {"text": "153.3"}, {"text": "million"}, {"text": "*U*"}, {"text": "-RRB-"}, {"text": "through"}, {"text": "a"}, {"text": "private"}, {"text": "placement"}, {"text": "of"}, {"text": "perpetual"}, {"text": "preferred"}, {"text": "shares"}, {"text": "."}, {"text": "Perpetual"}, {"text": "preferred"}, {"text": "shares"}, {"text": "are"}, {"text": "n't"}, {"text": "retractable"}, {"text": "by"}, {"text": "the"}, {"text": "holders"}, {"text": ","}, {"text": "the"}, {"text": "company"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Rogers"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "shares"}, {"text": "will"}, {"text": "be"}, {"text": "convertible"}, {"text": "into"}, {"text": "Class"}, {"text": "B"}, {"text": "shares"}, {"text": ","}, {"text": "but"}, {"text": "that"}, {"text": "the"}, {"text": "company"}, {"text": "has"}, {"text": "the"}, {"text": "option"}, {"text": "*"}, {"text": "to"}, {"text": "redeem"}, {"text": "the"}, {"text": "shares"}, {"text": "before"}, {"text": "a"}, {"text": "conversion"}, {"text": "takes"}, {"text": "place"}, {"text": "."}, {"text": "A"}, {"text": "spokesman"}, {"text": "for"}, {"text": "the"}, {"text": "Toronto"}, {"text": "cable"}, {"text": "television"}, {"text": "and"}, {"text": "telecommunications"}, {"text": "concern"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "coupon"}, {"text": "rate"}, {"text": "has"}, {"text": "n't"}, {"text": "yet"}, {"text": "been"}, {"text": "fixed"}, {"text": "*-1"}, {"text": ","}, {"text": "but"}, {"text": "will"}, {"text": "probably"}, {"text": "be"}, {"text": "set"}, {"text": "*-1"}, {"text": "at"}, {"text": "around"}, {"text": "8"}, {"text": "%"}, {"text": "."}, {"text": "He"}, {"text": "declined"}, {"text": "*-1"}, {"text": "to"}, {"text": "discuss"}, {"text": "other"}, {"text": "terms"}, {"text": "of"}, {"text": "the"}, {"text": "issue"}, {"text": "."}, {"text": "The"}, {"text": "House"}, {"text": "passed"}, {"text": "legislation"}, {"text": "designed"}, {"text": "*"}, {"text": "to"}, {"text": "make"}, {"text": "it"}, {"text": "easier"}, {"text": "for"}, {"text": "the"}, {"text": "Transportation"}, {"text": "Department"}, {"text": "to"}, {"text": "block"}, {"text": "airline"}, {"text": "leveraged"}, {"text": "buy-outs"}, {"text": "."}, {"text": "The"}, {"text": "final"}, {"text": "vote"}, {"text": "came"}, {"text": "after"}, {"text": "the"}, {"text": "House"}, {"text": "rejected"}, {"text": "Republican"}, {"text": "efforts"}, {"text": "*"}, {"text": "to"}, {"text": "weaken"}, {"text": "the"}, {"text": "bill"}, {"text": "and"}, {"text": "approved"}, {"text": "two"}, {"text": "amendments"}, {"text": "sought"}, {"text": "*"}, {"text": "by"}, {"text": "organized"}, {"text": "labor"}, {"text": "."}, {"text": "The"}, {"text": "Bush"}, {"text": "administration"}, {"text": "has"}, {"text": "threatened"}, {"text": "*-1"}, {"text": "to"}, {"text": "veto"}, {"text": "such"}, {"text": "a"}, {"text": "bill"}, {"text": "because"}, {"text": "of"}, {"text": "what"}, {"text": "it"}, {"text": "views"}, {"text": "*T*-2"}, {"text": "as"}, {"text": "an"}, {"text": "undesirable"}, {"text": "intrusion"}, {"text": "into"}, {"text": "the"}, {"text": "affairs"}, {"text": "of"}, {"text": "industry"}, {"text": ","}, {"text": "but"}, {"text": "the"}, {"text": "300-113"}, {"text": "vote"}, {"text": "suggests"}, {"text": "that"}, {"text": "supporters"}, {"text": "have"}, {"text": "the"}, {"text": "potential"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "override"}, {"text": "a"}, {"text": "veto"}, {"text": "*T*-3"}, {"text": "."}, {"text": "The"}, {"text": "broader"}, {"text": "question"}, {"text": "is"}, {"text": "where"}, {"text": "the"}, {"text": "Senate"}, {"text": "stands"}, {"text": "*T*-1"}, {"text": "on"}, {"text": "the"}, {"text": "issue"}, {"text": "."}, {"text": "While"}, {"text": "the"}, {"text": "Senate"}, {"text": "Commerce"}, {"text": "Committee"}, {"text": "has"}, {"text": "approved"}, {"text": "legislation"}, {"text": "similar"}, {"text": "to"}, {"text": "the"}, {"text": "House"}, {"text": "bill"}, {"text": "on"}, {"text": "airline"}, {"text": "leveraged"}, {"text": "buy-outs"}, {"text": ","}, {"text": "the"}, {"text": "measure"}, {"text": "has"}, {"text": "n't"}, {"text": "yet"}, {"text": "come"}, {"text": "to"}, {"text": "the"}, {"text": "full"}, {"text": "floor"}, {"text": "."}, {"text": "Although"}, {"text": "the"}, {"text": "legislation"}, {"text": "would"}, {"text": "apply"}, {"text": "to"}, {"text": "acquisitions"}, {"text": "involving"}, {"text": "any"}, {"text": "major"}, {"text": "airline"}, {"text": ","}, {"text": "it"}, {"text": "is"}, {"text": "aimed"}, {"text": "*-25"}, {"text": "at"}, {"text": "*"}, {"text": "giving"}, {"text": "the"}, {"text": "Transportation"}, {"text": "Department"}, {"text": "the"}, {"text": "chance"}, {"text": "*"}, {"text": "to"}, {"text": "review"}, {"text": "in"}, {"text": "advance"}, {"text": "transactions"}, {"text": "financed"}, {"text": "*"}, {"text": "by"}, {"text": "large"}, {"text": "amounts"}, {"text": "of"}, {"text": "debt"}, {"text": "."}, {"text": "``"}, {"text": "The"}, {"text": "purpose"}, {"text": "of"}, {"text": "the"}, {"text": "bill"}, {"text": "is"}, {"text": "*"}, {"text": "to"}, {"text": "put"}, {"text": "the"}, {"text": "brakes"}, {"text": "on"}, {"text": "airline"}, {"text": "acquisitions"}, {"text": "that"}, {"text": "*T*-2"}, {"text": "would"}, {"text": "so"}, {"text": "load"}, {"text": "a"}, {"text": "carrier"}, {"text": "up"}, {"text": "with"}, {"text": "debt"}, {"text": "that"}, {"text": "it"}, {"text": "would"}, {"text": "impede"}, {"text": "safety"}, {"text": "or"}, {"text": "a"}, {"text": "carrier"}, {"text": "'s"}, {"text": "ability"}, {"text": "*"}, {"text": "to"}, {"text": "compete"}, {"text": ","}, {"text": "''"}, {"text": "Rep."}, {"text": "John"}, {"text": "Paul"}, {"text": "Hammerschmidt"}, {"text": ","}, {"text": "-LRB-"}, {"text": "R."}, {"text": ","}, {"text": "Ark"}, {"text": "."}, {"text": "-RRB-"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "."}, {"text": "The"}, {"text": "bill"}, {"text": ","}, {"text": "as"}, {"text": "it"}, {"text": "was"}, {"text": "approved"}, {"text": "*-26"}, {"text": "by"}, {"text": "the"}, {"text": "House"}, {"text": "Public"}, {"text": "Works"}, {"text": "and"}, {"text": "Transportation"}, {"text": "Committee"}, {"text": ","}, {"text": "would"}, {"text": "give"}, {"text": "the"}, {"text": "Transportation"}, {"text": "Department"}, {"text": "up"}, {"text": "to"}, {"text": "50"}, {"text": "days"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "review"}, {"text": "any"}, {"text": "purchase"}, {"text": "of"}, {"text": "15"}, {"text": "%"}, {"text": "or"}, {"text": "more"}, {"text": "of"}, {"text": "the"}, {"text": "stock"}, {"text": "in"}, {"text": "an"}, {"text": "airline"}, {"text": "*T*-1"}, {"text": "."}, {"text": "The"}, {"text": "department"}, {"text": "would"}, {"text": "be"}, {"text": "required"}, {"text": "*-1"}, {"text": "to"}, {"text": "block"}, {"text": "the"}, {"text": "buy-out"}, {"text": "if"}, {"text": "the"}, {"text": "acquisition"}, {"text": "is"}, {"text": "likely"}, {"text": "*-2"}, {"text": "to"}, {"text": "financially"}, {"text": "weaken"}, {"text": "a"}, {"text": "carrier"}, {"text": "so"}, {"text": "that"}, {"text": "safety"}, {"text": "would"}, {"text": "be"}, {"text": "impaired"}, {"text": "*-27"}, {"text": ";"}, {"text": "its"}, {"text": "ability"}, {"text": "*"}, {"text": "to"}, {"text": "compete"}, {"text": "would"}, {"text": "be"}, {"text": "sharply"}, {"text": "diminished"}, {"text": "*-3"}, {"text": ";"}, {"text": "it"}, {"text": "would"}, {"text": "be"}, {"text": "put"}, {"text": "*-28"}, {"text": "into"}, {"text": "foreign"}, {"text": "control"}, {"text": ";"}, {"text": "or"}, {"text": "if"}, {"text": "the"}, {"text": "transaction"}, {"text": "would"}, {"text": "result"}, {"text": "in"}, {"text": "the"}, {"text": "sale"}, {"text": "of"}, {"text": "airline-related"}, {"text": "assets"}, {"text": "--"}, {"text": "unless"}, {"text": "*"}, {"text": "selling"}, {"text": "such"}, {"text": "assets"}, {"text": "had"}, {"text": "an"}, {"text": "overriding"}, {"text": "public"}, {"text": "benefit"}, {"text": "."}, {"text": "The"}, {"text": "House"}, {"text": "approved"}, {"text": "an"}, {"text": "amendment"}, {"text": "offered"}, {"text": "*"}, {"text": "by"}, {"text": "Rep."}, {"text": "Peter"}, {"text": "DeFazio"}, {"text": "-LRB-"}, {"text": "D."}, {"text": ","}, {"text": "Ore."}, {"text": "-RRB-"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "would"}, {"text": ","}, {"text": "in"}, {"text": "addition"}, {"text": "to"}, {"text": "the"}, {"text": "previous"}, {"text": "criteria"}, {"text": ","}, {"text": "also"}, {"text": "require"}, {"text": "the"}, {"text": "department"}, {"text": "to"}, {"text": "block"}, {"text": "the"}, {"text": "acquisition"}, {"text": "of"}, {"text": "an"}, {"text": "airline"}, {"text": "if"}, {"text": "the"}, {"text": "added"}, {"text": "debt"}, {"text": "incurred"}, {"text": "*"}, {"text": "were"}, {"text": "likely"}, {"text": "*-2"}, {"text": "to"}, {"text": "result"}, {"text": "in"}, {"text": "a"}, {"text": "reduction"}, {"text": "in"}, {"text": "the"}, {"text": "number"}, {"text": "of"}, {"text": "the"}, {"text": "carrier"}, {"text": "'s"}, {"text": "employees"}, {"text": ","}, {"text": "or"}, {"text": "their"}, {"text": "wages"}, {"text": "or"}, {"text": "benefits"}, {"text": "."}, {"text": "Rep."}, {"text": "James"}, {"text": "Traficant"}, {"text": "-LRB-"}, {"text": "D."}, {"text": ","}, {"text": "Ohio"}, {"text": "-RRB-"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "amendment"}, {"text": ","}, {"text": "which"}, {"text": "*T*-19"}, {"text": "passed"}, {"text": "271-147"}, {"text": ","}, {"text": "would"}, {"text": "``"}, {"text": "let"}, {"text": "the"}, {"text": "American"}, {"text": "worker"}, {"text": "know"}, {"text": "that"}, {"text": "we"}, {"text": "consider"}, {"text": "them"}, {"text": "occasionally"}, {"text": "."}, {"text": "''"}, {"text": "But"}, {"text": "Rep."}, {"text": "Hammerschmidt"}, {"text": "said"}, {"text": "that"}, {"text": "the"}, {"text": "provision"}, {"text": ","}, {"text": "which"}, {"text": "he"}, {"text": "dubbed"}, {"text": "*T*-2"}, {"text": "a"}, {"text": "``"}, {"text": "special"}, {"text": "interest"}, {"text": "''"}, {"text": "amendment"}, {"text": ","}, {"text": "was"}, {"text": "likely"}, {"text": "*-1"}, {"text": "to"}, {"text": "make"}, {"text": "the"}, {"text": "bill"}, {"text": "even"}, {"text": "more"}, {"text": "controversial"}, {"text": "."}, {"text": "On"}, {"text": "Tuesday"}, {"text": ","}, {"text": "the"}, {"text": "House"}, {"text": "approved"}, {"text": "a"}, {"text": "labor-backed"}, {"text": "amendment"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "would"}, {"text": "require"}, {"text": "the"}, {"text": "Transportation"}, {"text": "Department"}, {"text": "to"}, {"text": "reject"}, {"text": "airline"}, {"text": "acquisitions"}, {"text": "if"}, {"text": "the"}, {"text": "person"}, {"text": "seeking"}, {"text": "*"}, {"text": "to"}, {"text": "purchase"}, {"text": "a"}, {"text": "carrier"}, {"text": "had"}, {"text": "run"}, {"text": "two"}, {"text": "or"}, {"text": "more"}, {"text": "airlines"}, {"text": "*ICH*-4"}, {"text": "previously"}, {"text": "that"}, {"text": "*T*-2"}, {"text": "have"}, {"text": "filed"}, {"text": "for"}, {"text": "protection"}, {"text": "from"}, {"text": "creditors"}, {"text": "under"}, {"text": "Chapter"}, {"text": "11"}, {"text": "of"}, {"text": "the"}, {"text": "federal"}, {"text": "Bankruptcy"}, {"text": "Code"}, {"text": "."}, {"text": "The"}, {"text": "provision"}, {"text": ","}, {"text": "called"}, {"text": "*"}, {"text": "the"}, {"text": "``"}, {"text": "two-time-losers"}, {"text": "''"}, {"text": "amendment"}, {"text": "by"}, {"text": "its"}, {"text": "supporters"}, {"text": ","}, {"text": "apparently"}, {"text": "was"}, {"text": "aimed"}, {"text": "*-29"}, {"text": "at"}, {"text": "*"}, {"text": "preventing"}, {"text": "Texas"}, {"text": "Air"}, {"text": "Corp."}, {"text": "Chairman"}, {"text": "Frank"}, {"text": "Lorenzo"}, {"text": "from"}, {"text": "*-1"}, {"text": "attempting"}, {"text": "*"}, {"text": "to"}, {"text": "take"}, {"text": "over"}, {"text": "another"}, {"text": "airline"}, {"text": "."}, {"text": "Follow-up"}, {"text": "report"}, {"text": ":"}, {"text": "You"}, {"text": "now"}, {"text": "may"}, {"text": "drop"}, {"text": "by"}, {"text": "the"}, {"text": "Voice"}, {"text": "of"}, {"text": "America"}, {"text": "offices"}, {"text": "in"}, {"text": "Washington"}, {"text": "and"}, {"text": "read"}, {"text": "the"}, {"text": "text"}, {"text": "of"}, {"text": "what"}, {"text": "the"}, {"text": "Voice"}, {"text": "is"}, {"text": "broadcasting"}, {"text": "*T*-1"}, {"text": "to"}, {"text": "those"}, {"text": "130"}, {"text": "million"}, {"text": "people"}, {"text": "around"}, {"text": "the"}, {"text": "world"}, {"text": "who"}, {"text": "*T*-20"}, {"text": "tune"}, {"text": "in"}, {"text": "to"}, {"text": "it"}, {"text": "each"}, {"text": "week"}, {"text": "."}, {"text": "You"}, {"text": "can"}, {"text": "even"}, {"text": "take"}, {"text": "notes"}, {"text": "--"}, {"text": "extensive"}, {"text": "notes"}, {"text": ","}, {"text": "for"}, {"text": "the"}, {"text": "Voice"}, {"text": "folks"}, {"text": "wo"}, {"text": "n't"}, {"text": "look"}, {"text": "over"}, {"text": "your"}, {"text": "shoulder"}, {"text": "--"}, {"text": "about"}, {"text": "what"}, {"text": "you"}, {"text": "read"}, {"text": "*T*-1"}, {"text": "."}, {"text": "You"}, {"text": "can"}, {"text": "do"}, {"text": "all"}, {"text": "this"}, {"text": "even"}, {"text": "if"}, {"text": "you"}, {"text": "'re"}, {"text": "not"}, {"text": "a"}, {"text": "reporter"}, {"text": "or"}, {"text": "a"}, {"text": "researcher"}, {"text": "or"}, {"text": "a"}, {"text": "scholar"}, {"text": "or"}, {"text": "a"}, {"text": "member"}, {"text": "of"}, {"text": "Congress"}, {"text": "."}, {"text": "And"}, {"text": "my"}, {"text": "newspaper"}, {"text": "can"}, {"text": "print"}, {"text": "the"}, {"text": "text"}, {"text": "of"}, {"text": "those"}, {"text": "broadcasts"}, {"text": "."}, {"text": "Until"}, {"text": "the"}, {"text": "other"}, {"text": "day"}, {"text": ","}, {"text": "you"}, {"text": "as"}, {"text": "an"}, {"text": "ordinary"}, {"text": "citizen"}, {"text": "of"}, {"text": "this"}, {"text": "democracy"}, {"text": "had"}, {"text": "no"}, {"text": "right"}, {"text": "*"}, {"text": "to"}, {"text": "see"}, {"text": "what"}, {"text": "your"}, {"text": "government"}, {"text": "was"}, {"text": "telling"}, {"text": "your"}, {"text": "cousins"}, {"text": "around"}, {"text": "the"}, {"text": "world"}, {"text": "*T*-21"}, {"text": "."}, {"text": "That"}, {"text": "was"}, {"text": "the"}, {"text": "law"}, {"text": "."}, {"text": "And"}, {"text": "I"}, {"text": "apparently"}, {"text": "had"}, {"text": "no"}, {"text": "right"}, {"text": "*"}, {"text": "to"}, {"text": "print"}, {"text": "hither"}, {"text": "what"}, {"text": "the"}, {"text": "Voice"}, {"text": "was"}, {"text": "booming"}, {"text": "*T*-2"}, {"text": "to"}, {"text": "yon"}, {"text": "."}, {"text": "It"}, {"text": "was"}, {"text": "censorship"}, {"text": "."}, {"text": "It"}, {"text": "was"}, {"text": "outrageous"}, {"text": "."}, {"text": "And"}, {"text": "it"}, {"text": "was"}, {"text": "stupid"}, {"text": "."}, {"text": "The"}, {"text": "theory"}, {"text": "was"}, {"text": "that"}, {"text": "the"}, {"text": "Voice"}, {"text": "is"}, {"text": "a"}, {"text": "propaganda"}, {"text": "agency"}, {"text": "and"}, {"text": "this"}, {"text": "government"}, {"text": "should"}, {"text": "n't"}, {"text": "propagandize"}, {"text": "its"}, {"text": "own"}, {"text": "people"}, {"text": "."}, {"text": "That"}, {"text": "sounds"}, {"text": "neat"}, {"text": ","}, {"text": "but"}, {"text": "this"}, {"text": "government"}, {"text": "--"}, {"text": "any"}, {"text": "government"}, {"text": "--"}, {"text": "propagandizes"}, {"text": "its"}, {"text": "own"}, {"text": "people"}, {"text": "every"}, {"text": "day"}, {"text": "."}, {"text": "Government"}, {"text": "press"}, {"text": "releases"}, {"text": ","}, {"text": "speeches"}, {"text": ","}, {"text": "briefings"}, {"text": ","}, {"text": "tours"}, {"text": "of"}, {"text": "military"}, {"text": "facilities"}, {"text": ","}, {"text": "publications"}, {"text": "are"}, {"text": "all"}, {"text": "propaganda"}, {"text": "of"}, {"text": "sorts"}, {"text": "."}, {"text": "Propaganda"}, {"text": "is"}, {"text": "just"}, {"text": "information"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "to"}, {"text": "support"}, {"text": "a"}, {"text": "viewpoint"}, {"text": ","}, {"text": "and"}, {"text": "the"}, {"text": "beauty"}, {"text": "of"}, {"text": "a"}, {"text": "democracy"}, {"text": "is"}, {"text": "that"}, {"text": "it"}, {"text": "enables"}, {"text": "you"}, {"text": "to"}, {"text": "hear"}, {"text": "or"}, {"text": "read"}, {"text": "every"}, {"text": "viewpoint"}, {"text": "and"}, {"text": "then"}, {"text": "make"}, {"text": "up"}, {"text": "your"}, {"text": "own"}, {"text": "mind"}, {"text": "on"}, {"text": "an"}, {"text": "issue"}, {"text": "."}, {"text": "The"}, {"text": "restrictions"}, {"text": "on"}, {"text": "viewing"}, {"text": "and"}, {"text": "dissemination"}, {"text": "of"}, {"text": "Voice"}, {"text": "material"}, {"text": "were"}, {"text": "especially"}, {"text": "absurd"}, {"text": ":"}, {"text": "An"}, {"text": "agency"}, {"text": "in"}, {"text": "the"}, {"text": "information"}, {"text": "business"}, {"text": "was"}, {"text": "not"}, {"text": "being"}, {"text": "allowed"}, {"text": "*-1"}, {"text": "to"}, {"text": "inform"}, {"text": "."}, {"text": "In"}, {"text": "June"}, {"text": "1988"}, {"text": ","}, {"text": "I"}, {"text": "wrote"}, {"text": "in"}, {"text": "this"}, {"text": "space"}, {"text": "about"}, {"text": "this"}, {"text": "issue"}, {"text": "."}, {"text": "*-1"}, {"text": "Assuming"}, {"text": "0"}, {"text": "it"}, {"text": "was"}, {"text": "n't"}, {"text": "one"}, {"text": "of"}, {"text": "those"}, {"text": "columns"}, {"text": "that"}, {"text": "you"}, {"text": "clipped"}, {"text": "*T*-2"}, {"text": "and"}, {"text": "put"}, {"text": "*T*-2"}, {"text": "on"}, {"text": "the"}, {"text": "refrigerator"}, {"text": "door"}, {"text": ","}, {"text": "I"}, {"text": "'ll"}, {"text": "review"}, {"text": "the"}, {"text": "facts"}, {"text": "."}, {"text": "The"}, {"text": "Voice"}, {"text": "of"}, {"text": "America"}, {"text": "is"}, {"text": "a"}, {"text": "government"}, {"text": "agency"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "broadcasts"}, {"text": "news"}, {"text": "and"}, {"text": "views"}, {"text": "--"}, {"text": "some"}, {"text": "might"}, {"text": "say"}, {"text": "propaganda"}, {"text": "--"}, {"text": "in"}, {"text": "43"}, {"text": "languages"}, {"text": "to"}, {"text": "130"}, {"text": "million"}, {"text": "listeners"}, {"text": "around"}, {"text": "the"}, {"text": "world"}, {"text": "."}, {"text": "It"}, {"text": "does"}, {"text": "a"}, {"text": "first-rate"}, {"text": "job"}, {"text": "."}, {"text": "Its"}, {"text": "budget"}, {"text": "$"}, {"text": "184"}, {"text": "million"}, {"text": "*U*"}, {"text": "--"}, {"text": "is"}, {"text": "paid"}, {"text": "for"}, {"text": "*-30"}, {"text": "by"}, {"text": "you"}, {"text": "."}, {"text": "But"}, {"text": "a"}, {"text": "1948"}, {"text": "law"}, {"text": "barred"}, {"text": "the"}, {"text": "``"}, {"text": "dissemination"}, {"text": "''"}, {"text": "of"}, {"text": "that"}, {"text": "material"}, {"text": "in"}, {"text": "the"}, {"text": "U.S."}, {"text": "."}, {"text": "The"}, {"text": "law"}, {"text": "let"}, {"text": "scholars"}, {"text": ","}, {"text": "reporters"}, {"text": "and"}, {"text": "researchers"}, {"text": "read"}, {"text": "texts"}, {"text": "of"}, {"text": "VOA"}, {"text": "material"}, {"text": ","}, {"text": "only"}, {"text": "at"}, {"text": "VOA"}, {"text": "headquarters"}, {"text": "in"}, {"text": "Washington"}, {"text": ","}, {"text": "but"}, {"text": "it"}, {"text": "barred"}, {"text": "them"}, {"text": "from"}, {"text": "*-1"}, {"text": "copying"}, {"text": "texts"}, {"text": "."}, {"text": "And"}, {"text": ","}, {"text": "of"}, {"text": "course"}, {"text": ","}, {"text": "there"}, {"text": "'s"}, {"text": "that"}, {"text": "word"}, {"text": "``"}, {"text": "dissemination"}, {"text": "."}, {"text": "''"}, {"text": "How"}, {"text": "'s"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "again"}, {"text": "?"}, {"text": "``"}, {"text": "You"}, {"text": "may"}, {"text": "come"}, {"text": "by"}, {"text": "the"}, {"text": "agency"}, {"text": "*-3"}, {"text": "to"}, {"text": "read"}, {"text": "but"}, {"text": "not"}, {"text": "copy"}, {"text": "either"}, {"text": "manually"}, {"text": "or"}, {"text": "by"}, {"text": "*"}, {"text": "photocopying"}, {"text": ","}, {"text": "''"}, {"text": "a"}, {"text": "Voice"}, {"text": "official"}, {"text": "explained"}, {"text": "*T*-1"}, {"text": "when"}, {"text": "I"}, {"text": "asked"}, {"text": "*T*-2"}, {"text": "."}, {"text": "What"}, {"text": "if"}, {"text": "I"}, {"text": "tune"}, {"text": "in"}, {"text": "my"}, {"text": "short-wave"}, {"text": "radio"}, {"text": ","}, {"text": "transcribe"}, {"text": "an"}, {"text": "editorial"}, {"text": "or"}, {"text": "program"}, {"text": ","}, {"text": "and"}, {"text": "print"}, {"text": "it"}, {"text": "in"}, {"text": "my"}, {"text": "newspaper"}, {"text": "?"}, {"text": "``"}, {"text": "Nor"}, {"text": "are"}, {"text": "you"}, {"text": "free"}, {"text": "*-2"}, {"text": "to"}, {"text": "reprint"}, {"text": "such"}, {"text": "material"}, {"text": ","}, {"text": "''"}, {"text": "I"}, {"text": "was"}, {"text": "advised"}, {"text": "*-31"}, {"text": "*T*-1"}, {"text": "."}, {"text": "That"}, {"text": "sounded"}, {"text": "a"}, {"text": "lot"}, {"text": "like"}, {"text": "censorship"}, {"text": ","}, {"text": "so"}, {"text": "after"}, {"text": "years"}, {"text": "of"}, {"text": "letters"}, {"text": "and"}, {"text": "conversations"}, {"text": "that"}, {"text": "*T*-22"}, {"text": "went"}, {"text": "nowhere"}, {"text": ","}, {"text": "I"}, {"text": "sued"}, {"text": "."}, {"text": "A"}, {"text": "couple"}, {"text": "of"}, {"text": "weeks"}, {"text": "ago"}, {"text": ","}, {"text": "I"}, {"text": "lost"}, {"text": "the"}, {"text": "case"}, {"text": "in"}, {"text": "federal"}, {"text": "district"}, {"text": "court"}, {"text": "in"}, {"text": "Des"}, {"text": "Moines"}, {"text": "."}, {"text": "At"}, {"text": "least"}, {"text": ","}, {"text": "that"}, {"text": "'s"}, {"text": "the"}, {"text": "way"}, {"text": "0"}, {"text": "it"}, {"text": "was"}, {"text": "reported"}, {"text": "*-32"}, {"text": "*T*-1"}, {"text": "."}, {"text": "And"}, {"text": ","}, {"text": "indeed"}, {"text": ","}, {"text": "the"}, {"text": "lawsuit"}, {"text": "was"}, {"text": "dismissed"}, {"text": "*-33"}, {"text": "."}, {"text": "But"}, {"text": "I"}, {"text": "--"}, {"text": "I"}, {"text": "like"}, {"text": "*-1"}, {"text": "to"}, {"text": "think"}, {"text": "of"}, {"text": "it"}, {"text": "in"}, {"text": "terms"}, {"text": "of"}, {"text": "we"}, {"text": ","}, {"text": "all"}, {"text": "of"}, {"text": "us"}, {"text": "--"}, {"text": "won"}, {"text": "the"}, {"text": "point"}, {"text": "."}, {"text": "For"}, {"text": "a"}, {"text": "funny"}, {"text": "thing"}, {"text": "happened"}, {"text": "on"}, {"text": "the"}, {"text": "way"}, {"text": "to"}, {"text": "the"}, {"text": "ruling"}, {"text": ":"}, {"text": "The"}, {"text": "United"}, {"text": "States"}, {"text": "Information"}, {"text": "Agency"}, {"text": ","}, {"text": "which"}, {"text": "*T*-23"}, {"text": "runs"}, {"text": "the"}, {"text": "Voice"}, {"text": ","}, {"text": "changed"}, {"text": "its"}, {"text": "position"}, {"text": "on"}, {"text": "three"}, {"text": "key"}, {"text": "points"}, {"text": "."}, {"text": "--"}, {"text": "The"}, {"text": "USIA"}, {"text": "said"}, {"text": "that"}, {"text": ","}, {"text": "on"}, {"text": "reflection"}, {"text": ","}, {"text": "of"}, {"text": "course"}, {"text": "I"}, {"text": "could"}, {"text": "print"}, {"text": "anything"}, {"text": "0"}, {"text": "I"}, {"text": "could"}, {"text": "get"}, {"text": "my"}, {"text": "hands"}, {"text": "on"}, {"text": "*T*-1"}, {"text": "."}, {"text": "The"}, {"text": "word"}, {"text": "dissemination"}, {"text": ","}, {"text": "it"}, {"text": "decided"}, {"text": "0"}, {"text": "*T*-1"}, {"text": ","}, {"text": "referred"}, {"text": "only"}, {"text": "to"}, {"text": "itself"}, {"text": "."}, {"text": "``"}, {"text": "The"}, {"text": "USIA"}, {"text": "officially"}, {"text": "and"}, {"text": "publicly"}, {"text": "declared"}, {"text": "the"}, {"text": "absolute"}, {"text": "right"}, {"text": "*ICH*-2"}, {"text": "of"}, {"text": "everyone"}, {"text": "except"}, {"text": "the"}, {"text": "USIA"}, {"text": "*"}, {"text": "to"}, {"text": "disseminate"}, {"text": "agency"}, {"text": "program"}, {"text": "materials"}, {"text": "in"}, {"text": "the"}, {"text": "United"}, {"text": "States"}, {"text": ","}, {"text": "''"}, {"text": "my"}, {"text": "lawyer"}, {"text": ","}, {"text": "the"}, {"text": "scholarly"}, {"text": "Mark"}, {"text": "McCormick"}, {"text": "of"}, {"text": "Des"}, {"text": "Moines"}, {"text": ","}, {"text": "said"}, {"text": "*T*-1"}, {"text": "in"}, {"text": "a"}, {"text": "memo"}, {"text": "pointing"}, {"text": "out"}, {"text": "the"}, {"text": "facts"}, {"text": "and"}, {"text": "trying"}, {"text": "*"}, {"text": "to"}, {"text": "make"}, {"text": "me"}, {"text": "feel"}, {"text": "good"}, {"text": "after"}, {"text": "the"}, {"text": "press"}, {"text": "reported"}, {"text": "that"}, {"text": "I"}, {"text": "had"}, {"text": "lost"}, {"text": "."}, {"text": "The"}, {"text": "court"}, {"text": "noted"}, {"text": "the"}, {"text": "new"}, {"text": "USIA"}, {"text": "position"}, {"text": "but"}, {"text": ","}, {"text": "just"}, {"text": "in"}, {"text": "case"}, {"text": ","}, {"text": "officially"}, {"text": "found"}, {"text": "``"}, {"text": "that"}, {"text": "Congress"}, {"text": "did"}, {"text": "not"}, {"text": "intend"}, {"text": "*-1"}, {"text": "to"}, {"text": "preclude"}, {"text": "plaintiffs"}, {"text": "from"}, {"text": "*"}, {"text": "disseminating"}, {"text": "USIA"}, {"text": "information"}, {"text": "domestically"}, {"text": "."}, {"text": "''"}, {"text": "--"}, {"text": "The"}, {"text": "USIA"}, {"text": "said"}, {"text": "that"}, {"text": ","}, {"text": "on"}, {"text": "reflection"}, {"text": ","}, {"text": "anyone"}, {"text": "*ICH*-2"}, {"text": "could"}, {"text": "view"}, {"text": "the"}, {"text": "VOA"}, {"text": "materials"}, {"text": ","}, {"text": "not"}, {"text": "just"}, {"text": "the"}, {"text": "reporters"}, {"text": ","}, {"text": "scholars"}, {"text": ","}, {"text": "researchers"}, {"text": "and"}, {"text": "congressmen"}, {"text": "who"}, {"text": "*T*-1"}, {"text": "are"}, {"text": "mentioned"}, {"text": "*-34"}, {"text": "in"}, {"text": "the"}, {"text": "statute"}, {"text": "."}, {"text": "``"}, {"text": "The"}, {"text": "USIA"}, {"text": "publicly"}, {"text": "and"}, {"text": "officially"}, {"text": "stated"}, {"text": "in"}, {"text": "the"}, {"text": "litigation"}, {"text": "that"}, {"text": "all"}, {"text": "persons"}, {"text": "are"}, {"text": "allowed"}, {"text": "*-35"}, {"text": "access"}, {"text": "to"}, {"text": "the"}, {"text": "materials"}, {"text": ","}, {"text": "notwithstanding"}, {"text": "the"}, {"text": "statutory"}, {"text": "designations"}, {"text": ","}, {"text": "because"}, {"text": "the"}, {"text": "USIA"}, {"text": "has"}, {"text": "determined"}, {"text": "that"}, {"text": "it"}, {"text": "will"}, {"text": "not"}, {"text": "check"}, {"text": "the"}, {"text": "credentials"}, {"text": "of"}, {"text": "any"}, {"text": "person"}, {"text": "appearing"}, {"text": "and"}, {"text": "requesting"}, {"text": "*"}, {"text": "to"}, {"text": "see"}, {"text": "the"}, {"text": "materials"}, {"text": ","}, {"text": "''"}, {"text": "Mr."}, {"text": "McCormick"}, {"text": "noted"}, {"text": "*T*-2"}, {"text": "."}, {"text": "--"}, {"text": "And"}, {"text": "the"}, {"text": "USIA"}, {"text": "said"}, {"text": "that"}, {"text": "all"}, {"text": "of"}, {"text": "us"}, {"text": "could"}, {"text": "take"}, {"text": "extensive"}, {"text": "notes"}, {"text": "."}, {"text": "``"}, {"text": "The"}, {"text": "agency"}, {"text": "publicly"}, {"text": "and"}, {"text": "officially"}, {"text": "declared"}, {"text": "in"}, {"text": "the"}, {"text": "lawsuit"}, {"text": "that"}, {"text": "persons"}, {"text": "who"}, {"text": "*T*-24"}, {"text": "examine"}, {"text": "the"}, {"text": "materials"}, {"text": "may"}, {"text": "make"}, {"text": "notes"}, {"text": "and"}, {"text": ","}, {"text": "while"}, {"text": "the"}, {"text": "agency"}, {"text": "position"}, {"text": "is"}, {"text": "that"}, {"text": "persons"}, {"text": "may"}, {"text": "not"}, {"text": "take"}, {"text": "verbatim"}, {"text": "notes"}, {"text": ","}, {"text": "no"}, {"text": "one"}, {"text": "will"}, {"text": "check"}, {"text": "*-3"}, {"text": "to"}, {"text": "determine"}, {"text": "what"}, {"text": "notes"}, {"text": "a"}, {"text": "person"}, {"text": "has"}, {"text": "taken"}, {"text": "*T*-25"}, {"text": ","}, {"text": "''"}, {"text": "Mr."}, {"text": "McCormick"}, {"text": "reported"}, {"text": "*T*-1"}, {"text": "."}, {"text": "I"}, {"text": "had"}, {"text": "sought"}, {"text": ","}, {"text": "in"}, {"text": "my"}, {"text": "suit"}, {"text": ","}, {"text": "the"}, {"text": "right"}, {"text": "*"}, {"text": "to"}, {"text": "print"}, {"text": "Voice"}, {"text": "material"}, {"text": ","}, {"text": "which"}, {"text": "*T*-2"}, {"text": "had"}, {"text": "been"}, {"text": "denied"}, {"text": "me"}, {"text": "*-36"}, {"text": ","}, {"text": "and"}, {"text": "I"}, {"text": "had"}, {"text": "sought"}, {"text": "a"}, {"text": "right"}, {"text": "*"}, {"text": "to"}, {"text": "receive"}, {"text": "the"}, {"text": "information"}, {"text": ","}, {"text": "*-3"}, {"text": "arguing"}, {"text": "in"}, {"text": "effect"}, {"text": "that"}, {"text": "a"}, {"text": "right"}, {"text": "*"}, {"text": "to"}, {"text": "print"}, {"text": "government"}, {"text": "information"}, {"text": "is"}, {"text": "n't"}, {"text": "very"}, {"text": "helpful"}, {"text": "if"}, {"text": "I"}, {"text": "have"}, {"text": "no"}, {"text": "right"}, {"text": "*"}, {"text": "to"}, {"text": "get"}, {"text": "the"}, {"text": "information"}, {"text": "."}, {"text": "But"}, {"text": "the"}, {"text": "court"}, {"text": "disagreed"}, {"text": "."}, {"text": "``"}, {"text": "The"}, {"text": "First"}, {"text": "Amendment"}, {"text": "proscribes"}, {"text": "the"}, {"text": "government"}, {"text": "from"}, {"text": "*-2"}, {"text": "passing"}, {"text": "laws"}, {"text": "abridging"}, {"text": "the"}, {"text": "right"}, {"text": "to"}, {"text": "free"}, {"text": "speech"}, {"text": ","}, {"text": "''"}, {"text": "Judge"}, {"text": "Donald"}, {"text": "O'Brien"}, {"text": "ruled"}, {"text": "*T*-1"}, {"text": "."}, {"text": "``"}, {"text": "The"}, {"text": "First"}, {"text": "Amendment"}, {"text": "does"}, {"text": "not"}, {"text": "prescribe"}, {"text": "a"}, {"text": "duty"}, {"text": "upon"}, {"text": "the"}, {"text": "government"}, {"text": "*"}, {"text": "to"}, {"text": "assure"}, {"text": "easy"}, {"text": "access"}, {"text": "to"}, {"text": "information"}, {"text": "for"}, {"text": "members"}, {"text": "of"}, {"text": "the"}, {"text": "press"}, {"text": "."}, {"text": "''"}, {"text": "So"}, {"text": "now"}, {"text": "the"}, {"text": "situation"}, {"text": "is"}, {"text": "this"}, {"text": ":"}, {"text": "You"}, {"text": "have"}, {"text": "a"}, {"text": "right"}, {"text": "*-2"}, {"text": "to"}, {"text": "read"}, {"text": "Voice"}, {"text": "of"}, {"text": "America"}, {"text": "scripts"}, {"text": "if"}, {"text": "you"}, {"text": "do"}, {"text": "n't"}, {"text": "mind"}, {"text": "*-1"}, {"text": "traveling"}, {"text": "to"}, {"text": "Washington"}, {"text": "every"}, {"text": "week"}, {"text": "or"}, {"text": "so"}, {"text": "and"}, {"text": "*-1"}, {"text": "visiting"}, {"text": "the"}, {"text": "Voice"}, {"text": "office"}, {"text": "during"}, {"text": "business"}, {"text": "hours"}, {"text": "."}, {"text": "I"}, {"text": "have"}, {"text": "a"}, {"text": "right"}, {"text": "*-1"}, {"text": "to"}, {"text": "print"}, {"text": "those"}, {"text": "scripts"}, {"text": "if"}, {"text": "I"}, {"text": "go"}, {"text": "there"}, {"text": "and"}, {"text": "laboriously"}, {"text": "--"}, {"text": "but"}, {"text": "no"}, {"text": "longer"}, {"text": "surreptitiously"}, {"text": "--"}, {"text": "copy"}, {"text": "them"}, {"text": "out"}, {"text": "in"}, {"text": "long"}, {"text": "hand"}, {"text": "."}, {"text": "But"}, {"text": "neither"}, {"text": "of"}, {"text": "us"}, {"text": "can"}, {"text": "copy"}, {"text": "the"}, {"text": "material"}, {"text": "on"}, {"text": "a"}, {"text": "Xerox"}, {"text": "machine"}, {"text": "or"}, {"text": "have"}, {"text": "it"}, {"text": "sent"}, {"text": "*-1"}, {"text": "to"}, {"text": "us"}, {"text": "."}, {"text": "In"}, {"text": "an"}, {"text": "era"}, {"text": "when"}, {"text": "every"}, {"text": "government"}, {"text": "agency"}, {"text": "has"}, {"text": "a"}, {"text": "public-relations"}, {"text": "machine"}, {"text": "that"}, {"text": "*T*-2"}, {"text": "sends"}, {"text": "you"}, {"text": "stuff"}, {"text": "whether"}, {"text": "you"}, {"text": "want"}, {"text": "it"}, {"text": "or"}, {"text": "not"}, {"text": "*T*-1"}, {"text": ","}, {"text": "this"}, {"text": "does"}, {"text": "seem"}, {"text": "odd"}, {"text": "."}, {"text": "Indeed"}, {"text": ","}, {"text": "Judge"}, {"text": "O'Brien"}, {"text": "ruled"}, {"text": "that"}, {"text": "``"}, {"text": "it"}, {"text": "*EXP*-1"}, {"text": "would"}, {"text": "be"}, {"text": "easy"}, {"text": "*"}, {"text": "to"}, {"text": "conclude"}, {"text": "that"}, {"text": "the"}, {"text": "USIA"}, {"text": "'s"}, {"text": "position"}, {"text": "is"}, {"text": "`"}, {"text": "inappropriate"}, {"text": "or"}, {"text": "even"}, {"text": "stupid"}, {"text": ","}, {"text": "'"}, {"text": "''"}, {"text": "but"}, {"text": "it"}, {"text": "'s"}, {"text": "the"}, {"text": "law"}, {"text": "."}, {"text": "So"}, {"text": "the"}, {"text": "next"}, {"text": "step"}, {"text": ","}, {"text": "I"}, {"text": "suspect"}, {"text": "0"}, {"text": "*T*-1"}, {"text": ","}, {"text": "is"}, {"text": "*"}, {"text": "to"}, {"text": "try"}, {"text": "*-2"}, {"text": "to"}, {"text": "get"}, {"text": "the"}, {"text": "law"}, {"text": "changed"}, {"text": "."}, {"text": "We"}, {"text": "-LRB-"}, {"text": "I"}, {"text": "assume"}, {"text": "0"}, {"text": "you"}, {"text": "'re"}, {"text": "in"}, {"text": "this"}, {"text": "with"}, {"text": "me"}, {"text": "at"}, {"text": "this"}, {"text": "point"}, {"text": "-RRB-"}, {"text": "need"}, {"text": "*-1"}, {"text": "to"}, {"text": "get"}, {"text": "three"}, {"text": "words"}, {"text": "--"}, {"text": "``"}, {"text": "for"}, {"text": "examination"}, {"text": "only"}, {"text": "''"}, {"text": "--"}, {"text": "eliminated"}, {"text": "from"}, {"text": "the"}, {"text": "law"}, {"text": "."}, {"text": "Section"}, {"text": "501"}, {"text": "of"}, {"text": "the"}, {"text": "United"}, {"text": "States"}, {"text": "Information"}, {"text": "and"}, {"text": "Educational"}, {"text": "Exchange"}, {"text": "Act"}, {"text": "of"}, {"text": "1948"}, {"text": "says"}, {"text": "0"}, {"text": "Voice"}, {"text": "material"}, {"text": "shall"}, {"text": "be"}, {"text": "available"}, {"text": "to"}, {"text": "certain"}, {"text": "of"}, {"text": "us"}, {"text": "-LRB-"}, {"text": "but"}, {"text": "now"}, {"text": ","}, {"text": "thanks"}, {"text": "to"}, {"text": "the"}, {"text": "USIA"}, {"text": "'s"}, {"text": "new"}, {"text": "position"}, {"text": ","}, {"text": "all"}, {"text": "of"}, {"text": "us"}, {"text": "-RRB-"}, {"text": "``"}, {"text": "for"}, {"text": "examination"}, {"text": "only"}, {"text": "."}, {"text": "''"}, {"text": "If"}, {"text": "those"}, {"text": "words"}, {"text": "were"}, {"text": "n't"}, {"text": "there"}, {"text": ","}, {"text": "the"}, {"text": "nice"}, {"text": "people"}, {"text": "at"}, {"text": "the"}, {"text": "Voice"}, {"text": "would"}, {"text": "be"}, {"text": "able"}, {"text": "*-1"}, {"text": "to"}, {"text": "send"}, {"text": "you"}, {"text": "the"}, {"text": "information"}, {"text": "or"}, {"text": ","}, {"text": "at"}, {"text": "the"}, {"text": "very"}, {"text": "least"}, {"text": ","}, {"text": "let"}, {"text": "you"}, {"text": "photocopy"}, {"text": "it"}, {"text": "."}, {"text": "This"}, {"text": "is"}, {"text": "not"}, {"text": "a"}, {"text": "trivial"}, {"text": "issue"}, {"text": "."}, {"text": "``"}, {"text": "You"}, {"text": "have"}, {"text": "..."}, {"text": "raised"}, {"text": "important"}, {"text": "questions"}, {"text": "which"}, {"text": "*T*-26"}, {"text": "ought"}, {"text": "*-2"}, {"text": "to"}, {"text": "be"}, {"text": "answered"}, {"text": "*-3"}, {"text": ":"}, {"text": "What"}, {"text": "does"}, {"text": "USIA"}, {"text": "say"}, {"text": "*T*-27"}, {"text": "about"}, {"text": "America"}, {"text": "abroad"}, {"text": ";"}, {"text": "how"}, {"text": "do"}, {"text": "we"}, {"text": "say"}, {"text": "it"}, {"text": "*T*-4"}, {"text": ";"}, {"text": "and"}, {"text": "how"}, {"text": "can"}, {"text": "American"}, {"text": "taxpayers"}, {"text": "get"}, {"text": "the"}, {"text": "answers"}, {"text": "to"}, {"text": "these"}, {"text": "questions"}, {"text": "*T*-5"}, {"text": "?"}, {"text": "''"}, {"text": "a"}, {"text": "man"}, {"text": "wrote"}, {"text": "me"}, {"text": "*T*-1"}, {"text": "a"}, {"text": "couple"}, {"text": "of"}, {"text": "years"}, {"text": "ago"}, {"text": "."}, {"text": "The"}, {"text": "man"}, {"text": "was"}, {"text": "Charles"}, {"text": "Z."}, {"text": "Wick"}, {"text": "."}, {"text": "At"}, {"text": "the"}, {"text": "time"}, {"text": ","}, {"text": "he"}, {"text": "was"}, {"text": "director"}, {"text": "of"}, {"text": "the"}, {"text": "He"}, {"text": "had"}, {"text": "no"}, {"text": "answers"}, {"text": "then"}, {"text": "."}, {"text": "Now"}, {"text": "there"}, {"text": "are"}, {"text": "some"}, {"text": "."}, {"text": "This"}, {"text": "democracy"}, {"text": "is"}, {"text": "suddenly"}, {"text": "a"}, {"text": "little"}, {"text": "more"}, {"text": "democratic"}, {"text": "."}, {"text": "I"}, {"text": "feel"}, {"text": "pretty"}, {"text": "good"}, {"text": "about"}, {"text": "it"}, {"text": "."}, {"text": "Mr."}, {"text": "Gartner"}, {"text": "is"}, {"text": "editor"}, {"text": "and"}, {"text": "co-owner"}, {"text": "of"}, {"text": "the"}, {"text": "Daily"}, {"text": "Tribune"}, {"text": "in"}, {"text": "Ames"}, {"text": ","}, {"text": "Iowa"}, {"text": ","}, {"text": "and"}, {"text": "president"}, {"text": "of"}, {"text": "NBC"}, {"text": "News"}, {"text": "in"}, {"text": "New"}, {"text": "York"}, {"text": "."}, {"text": "R."}, {"text": "Gordon"}, {"text": "McGovern"}, {"text": "was"}, {"text": "forced"}, {"text": "*-37"}, {"text": "out"}, {"text": "as"}, {"text": "Campbell"}, {"text": "Soup"}, {"text": "Co."}, {"text": "'s"}, {"text": "president"}, {"text": "and"}, {"text": "chief"}, {"text": "executive"}, {"text": "officer"}, {"text": ","}, {"text": "the"}, {"text": "strongest"}, {"text": "evidence"}, {"text": "yet"}, {"text": "of"}, {"text": "the"}, {"text": "power"}, {"text": "that"}, {"text": "Dorrance"}, {"text": "family"}, {"text": "members"}, {"text": "intend"}, {"text": "*-2"}, {"text": "to"}, {"text": "wield"}, {"text": "*T*-1"}, {"text": "in"}, {"text": "*"}, {"text": "reshaping"}, {"text": "the"}, {"text": "troubled"}, {"text": "food"}, {"text": "company"}, {"text": "."}, {"text": "Herbert"}, {"text": "M."}, {"text": "Baum"}, {"text": ","}, {"text": "the"}, {"text": "53-year-old"}, {"text": "president"}, {"text": "of"}, {"text": "the"}, {"text": "company"}, {"text": "'s"}, {"text": "Campbell"}, {"text": "U.S.A."}, {"text": "unit"}, {"text": ","}, {"text": "and"}, {"text": "Edwin"}, {"text": "L."}, {"text": "Harper"}, {"text": ","}, {"text": "47"}, {"text": ","}, {"text": "the"}, {"text": "chief"}, {"text": "financial"}, {"text": "officer"}, {"text": ","}, {"text": "will"}, {"text": "run"}, {"text": "Campbell"}, {"text": "as"}, {"text": "a"}, {"text": "team"}, {"text": ","}, {"text": "*-1"}, {"text": "dividing"}, {"text": "responsibilities"}, {"text": "rather"}, {"text": "evenly"}, {"text": "until"}, {"text": "a"}, {"text": "successor"}, {"text": "is"}, {"text": "named"}, {"text": "*-38"}, {"text": "."}, {"text": "The"}, {"text": "board"}, {"text": "already"}, {"text": "has"}, {"text": "been"}, {"text": "searching"}, {"text": "for"}, {"text": "strong"}, {"text": "outside"}, {"text": "candidates"}, {"text": ","}, {"text": "including"}, {"text": "food-industry"}, {"text": "executives"}, {"text": "with"}, {"text": "considerable"}, {"text": "international"}, {"text": "experience"}, {"text": "."}, {"text": "Wall"}, {"text": "Street"}, {"text": "reacted"}, {"text": "favorably"}, {"text": "to"}, {"text": "Mr."}, {"text": "McGovern"}, {"text": "'s"}, {"text": "departure"}, {"text": "and"}, {"text": "its"}, {"text": "implications"}, {"text": "."}, {"text": "In"}, {"text": "heavy"}, {"text": "trading"}, {"text": "on"}, {"text": "the"}, {"text": "New"}, {"text": "York"}, {"text": "Stock"}, {"text": "Exchange"}, {"text": ","}, {"text": "Campbell"}, {"text": "'s"}, {"text": "shares"}, {"text": "rose"}, {"text": "$"}, {"text": "3.375"}, {"text": "*U*"}, {"text": "*"}, {"text": "to"}, {"text": "close"}, {"text": "at"}, {"text": "$"}, {"text": "47.125"}, {"text": "*U*"}, {"text": "."}, {"text": "``"}, {"text": "The"}, {"text": "profit"}, {"text": "motive"}, {"text": "of"}, {"text": "the"}, {"text": "major"}, {"text": "shareholders"}, {"text": "has"}, {"text": "clearly"}, {"text": "changed"}, {"text": "for"}, {"text": "the"}, {"text": "better"}, {"text": ","}, {"text": "''"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "John"}, {"text": "McMillin"}, {"text": ","}, {"text": "a"}, {"text": "food"}, {"text": "industry"}, {"text": "analyst"}, {"text": "for"}, {"text": "Prudential-Bache"}, {"text": "in"}, {"text": "New"}, {"text": "York"}, {"text": "."}, {"text": "Mr."}, {"text": "McGovern"}, {"text": "was"}, {"text": "widely"}, {"text": "seen"}, {"text": "*-1"}, {"text": "as"}, {"text": "sales"}, {"text": ","}, {"text": "and"}, {"text": "not"}, {"text": "profit"}, {"text": ","}, {"text": "oriented"}, {"text": "."}, {"text": "``"}, {"text": "New"}, {"text": "managers"}, {"text": "would"}, {"text": "think"}, {"text": "a"}, {"text": "little"}, {"text": "more"}, {"text": "like"}, {"text": "Wall"}, {"text": "Street"}, {"text": ","}, {"text": "''"}, {"text": "Mr."}, {"text": "McMillin"}, {"text": "added"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Some"}, {"text": "of"}, {"text": "the"}, {"text": "surge"}, {"text": "in"}, {"text": "the"}, {"text": "stock"}, {"text": "'s"}, {"text": "price"}, {"text": "appeared"}, {"text": "*-1"}, {"text": "to"}, {"text": "be"}, {"text": "linked"}, {"text": "*-39"}, {"text": "to"}, {"text": "revived"}, {"text": "takeover"}, {"text": "speculation"}, {"text": ","}, {"text": "which"}, {"text": "*T*-28"}, {"text": "has"}, {"text": "contributed"}, {"text": "to"}, {"text": "volatility"}, {"text": "of"}, {"text": "Campbell"}, {"text": "shares"}, {"text": "in"}, {"text": "recent"}, {"text": "months"}, {"text": "."}, {"text": "Campbell"}, {"text": "'s"}, {"text": "international"}, {"text": "businesses"}, {"text": ","}, {"text": "particularly"}, {"text": "in"}, {"text": "the"}, {"text": "U.K."}, {"text": "and"}, {"text": "Italy"}, {"text": ","}, {"text": "appear"}, {"text": "*-1"}, {"text": "to"}, {"text": "be"}, {"text": "at"}, {"text": "the"}, {"text": "heart"}, {"text": "of"}, {"text": "its"}, {"text": "problems"}, {"text": "."}, {"text": "Growth"}, {"text": "has"}, {"text": "fallen"}, {"text": "short"}, {"text": "of"}, {"text": "targets"}, {"text": "and"}, {"text": "operating"}, {"text": "earnings"}, {"text": "are"}, {"text": "far"}, {"text": "below"}, {"text": "results"}, {"text": "in"}, {"text": "U.S."}, {"text": "units"}, {"text": "."}, {"text": "For"}, {"text": "example"}, {"text": ","}, {"text": "Campbell"}, {"text": "is"}, {"text": "a"}, {"text": "distant"}, {"text": "third"}, {"text": "in"}, {"text": "the"}, {"text": "U.K."}, {"text": "frozen"}, {"text": "foods"}, {"text": "market"}, {"text": ","}, {"text": "where"}, {"text": "it"}, {"text": "recently"}, {"text": "paid"}, {"text": "24"}, {"text": "times"}, {"text": "earnings"}, {"text": "for"}, {"text": "Freshbake"}, {"text": "Foods"}, {"text": "PLC"}, {"text": "and"}, {"text": "wound"}, {"text": "up"}, {"text": "with"}, {"text": "far"}, {"text": "more"}, {"text": "capacity"}, {"text": "than"}, {"text": "it"}, {"text": "could"}, {"text": "use"}, {"text": "*?*"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Similarly"}, {"text": ","}, {"text": "Campbell"}, {"text": "'s"}, {"text": "Italian"}, {"text": "biscuit"}, {"text": "operation"}, {"text": ","}, {"text": "D."}, {"text": "Lazzaroni"}, {"text": "&"}, {"text": "Co."}, {"text": ","}, {"text": "has"}, {"text": "been"}, {"text": "hurt"}, {"text": "*-40"}, {"text": "by"}, {"text": "overproduction"}, {"text": "and"}, {"text": "distribution"}, {"text": "problems"}, {"text": "."}, {"text": "Such"}, {"text": "problems"}, {"text": "will"}, {"text": "require"}, {"text": "considerable"}, {"text": "skill"}, {"text": "*"}, {"text": "to"}, {"text": "resolve"}, {"text": "."}, {"text": "However"}, {"text": ","}, {"text": "neither"}, {"text": "Mr."}, {"text": "Baum"}, {"text": "nor"}, {"text": "Mr."}, {"text": "Harper"}, {"text": "has"}, {"text": "much"}, {"text": "international"}, {"text": "experience"}, {"text": "."}, {"text": "Mr."}, {"text": "Baum"}, {"text": ","}, {"text": "a"}, {"text": "seasoned"}, {"text": "marketer"}, {"text": "who"}, {"text": "*T*-29"}, {"text": "is"}, {"text": "said"}, {"text": "*-1"}, {"text": "to"}, {"text": "have"}, {"text": "a"}, {"text": "good"}, {"text": "rapport"}, {"text": "with"}, {"text": "Campbell"}, {"text": "employees"}, {"text": ","}, {"text": "will"}, {"text": "have"}, {"text": "responsibility"}, {"text": "for"}, {"text": "all"}, {"text": "domestic"}, {"text": "operations"}, {"text": "except"}, {"text": "the"}, {"text": "Pepperidge"}, {"text": "Farm"}, {"text": "unit"}, {"text": "."}, {"text": "Mr."}, {"text": "Harper"}, {"text": ","}, {"text": "a"}, {"text": "veteran"}, {"text": "of"}, {"text": "several"}, {"text": "manufacturing"}, {"text": "companies"}, {"text": "who"}, {"text": "*T*-30"}, {"text": "joined"}, {"text": "Campbell"}, {"text": "in"}, {"text": "1986"}, {"text": ","}, {"text": "will"}, {"text": "take"}, {"text": "charge"}, {"text": "of"}, {"text": "all"}, {"text": "overseas"}, {"text": "operations"}, {"text": "as"}, {"text": "well"}, {"text": "as"}, {"text": "Pepperidge"}, {"text": "."}, {"text": "In"}, {"text": "an"}, {"text": "joint"}, {"text": "interview"}, {"text": "yesterday"}, {"text": ","}, {"text": "both"}, {"text": "men"}, {"text": "said"}, {"text": "0"}, {"text": "they"}, {"text": "would"}, {"text": "like"}, {"text": "*-1"}, {"text": "to"}, {"text": "be"}, {"text": "the"}, {"text": "company"}, {"text": "'s"}, {"text": "next"}, {"text": "chief"}, {"text": "executive"}, {"text": "."}, {"text": "Mr."}, {"text": "McGovern"}, {"text": ","}, {"text": "63"}, {"text": ","}, {"text": "had"}, {"text": "been"}, {"text": "under"}, {"text": "intense"}, {"text": "pressure"}, {"text": "*ICH*-1"}, {"text": "from"}, {"text": "the"}, {"text": "board"}, {"text": "*"}, {"text": "to"}, {"text": "boost"}, {"text": "Campbell"}, {"text": "'s"}, {"text": "mediocre"}, {"text": "performance"}, {"text": "to"}, {"text": "the"}, {"text": "level"}, {"text": "of"}, {"text": "other"}, {"text": "food"}, {"text": "companies"}, {"text": "."}, {"text": "The"}, {"text": "board"}, {"text": "is"}, {"text": "dominated"}, {"text": "*-41"}, {"text": "by"}, {"text": "the"}, {"text": "heirs"}, {"text": "of"}, {"text": "the"}, {"text": "late"}, {"text": "John"}, {"text": "T."}, {"text": "Dorrance"}, {"text": "Jr."}, {"text": ","}, {"text": "who"}, {"text": "*T*-31"}, {"text": "controlled"}, {"text": "about"}, {"text": "58"}, {"text": "%"}, {"text": "of"}, {"text": "Campbell"}, {"text": "'s"}, {"text": "stock"}, {"text": "when"}, {"text": "he"}, {"text": "died"}, {"text": "in"}, {"text": "April"}, {"text": "*T*-1"}, {"text": "."}, {"text": "In"}, {"text": "recent"}, {"text": "months"}, {"text": ","}, {"text": "Mr."}, {"text": "Dorrance"}, {"text": "'s"}, {"text": "children"}, {"text": "and"}, {"text": "other"}, {"text": "family"}, {"text": "members"}, {"text": "have"}, {"text": "pushed"}, {"text": "for"}, {"text": "improved"}, {"text": "profitability"}, {"text": "and"}, {"text": "higher"}, {"text": "returns"}, {"text": "on"}, {"text": "their"}, {"text": "equity"}, {"text": "."}, {"text": "In"}, {"text": "August"}, {"text": ","}, {"text": "the"}, {"text": "company"}, {"text": "took"}, {"text": "a"}, {"text": "$"}, {"text": "343"}, {"text": "million"}, {"text": "*U*"}, {"text": "pretax"}, {"text": "charge"}, {"text": "against"}, {"text": "fiscal"}, {"text": "1989"}, {"text": "earnings"}, {"text": "when"}, {"text": "it"}, {"text": "announced"}, {"text": "a"}, {"text": "world-wide"}, {"text": "restructuring"}, {"text": "plan"}, {"text": "*T*-1"}, {"text": "."}, {"text": "The"}, {"text": "plan"}, {"text": "calls"}, {"text": "for"}, {"text": "*"}, {"text": "closing"}, {"text": "at"}, {"text": "least"}, {"text": "nine"}, {"text": "plants"}, {"text": "and"}, {"text": "eliminating"}, {"text": "about"}, {"text": "3,600"}, {"text": "jobs"}, {"text": "."}, {"text": "But"}, {"text": "analysts"}, {"text": "said"}, {"text": "0"}, {"text": "early"}, {"text": "results"}, {"text": "from"}, {"text": "the"}, {"text": "reorganization"}, {"text": "have"}, {"text": "been"}, {"text": "disappointing"}, {"text": ","}, {"text": "especially"}, {"text": "in"}, {"text": "Europe"}, {"text": ","}, {"text": "and"}, {"text": "there"}, {"text": "were"}, {"text": "signs"}, {"text": "that"}, {"text": "the"}, {"text": "board"}, {"text": "became"}, {"text": "impatient"}, {"text": "."}, {"text": "Campbell"}, {"text": "officials"}, {"text": "said"}, {"text": "0"}, {"text": "Mr."}, {"text": "McGovern"}, {"text": "was"}, {"text": "n't"}, {"text": "available"}, {"text": "*ICH*-2"}, {"text": "yesterday"}, {"text": "*-1"}, {"text": "to"}, {"text": "discuss"}, {"text": "the"}, {"text": "circumstances"}, {"text": "of"}, {"text": "his"}, {"text": "departure"}, {"text": "."}, {"text": "The"}, {"text": "company"}, {"text": "'s"}, {"text": "prepared"}, {"text": "statement"}, {"text": "quoted"}, {"text": "him"}, {"text": "as"}, {"text": "*-1"}, {"text": "saying"}, {"text": ","}, {"text": "``"}, {"text": "The"}, {"text": "CEO"}, {"text": "succession"}, {"text": "is"}, {"text": "well"}, {"text": "along"}, {"text": "and"}, {"text": "I"}, {"text": "'ve"}, {"text": "decided"}, {"text": "for"}, {"text": "personal"}, {"text": "reasons"}, {"text": "*-2"}, {"text": "to"}, {"text": "take"}, {"text": "early"}, {"text": "retirement"}, {"text": "."}, {"text": "''"}, {"text": "But"}, {"text": "people"}, {"text": "familiar"}, {"text": "with"}, {"text": "the"}, {"text": "agenda"}, {"text": "of"}, {"text": "the"}, {"text": "board"}, {"text": "'s"}, {"text": "meeting"}, {"text": "last"}, {"text": "week"}, {"text": "in"}, {"text": "London"}, {"text": "said"}, {"text": "0"}, {"text": "Mr."}, {"text": "McGovern"}, {"text": "was"}, {"text": "fired"}, {"text": "*-42"}, {"text": "."}, {"text": "Mr."}, {"text": "McGovern"}, {"text": "himself"}, {"text": "had"}, {"text": "said"}, {"text": "repeatedly"}, {"text": "that"}, {"text": "he"}, {"text": "intended"}, {"text": "*-1"}, {"text": "to"}, {"text": "stay"}, {"text": "on"}, {"text": "until"}, {"text": "he"}, {"text": "reached"}, {"text": "the"}, {"text": "conventional"}, {"text": "retirement"}, {"text": "age"}, {"text": "of"}, {"text": "65"}, {"text": "in"}, {"text": "October"}, {"text": "1991"}, {"text": ","}, {"text": "``"}, {"text": "unless"}, {"text": "I"}, {"text": "get"}, {"text": "fired"}, {"text": "."}, {"text": "''"}, {"text": "Campbell"}, {"text": "said"}, {"text": "0"}, {"text": "Mr."}, {"text": "McGovern"}, {"text": "had"}, {"text": "withdrawn"}, {"text": "his"}, {"text": "name"}, {"text": "as"}, {"text": "a"}, {"text": "candidate"}, {"text": "for"}, {"text": "re-election"}, {"text": "as"}, {"text": "a"}, {"text": "director"}, {"text": "at"}, {"text": "the"}, {"text": "annual"}, {"text": "shareholder"}, {"text": "meeting"}, {"text": ","}, {"text": "scheduled"}, {"text": "*"}, {"text": "for"}, {"text": "Nov."}, {"text": "17"}, {"text": "."}, {"text": "For"}, {"text": "fiscal"}, {"text": "1989"}, {"text": ","}, {"text": "Mr."}, {"text": "McGovern"}, {"text": "received"}, {"text": "a"}, {"text": "salary"}, {"text": "of"}, {"text": "$"}, {"text": "877,663"}, {"text": "*U*"}, {"text": "."}, {"text": "He"}, {"text": "owns"}, {"text": "about"}, {"text": "45,000"}, {"text": "shares"}, {"text": "of"}, {"text": "Campbell"}, {"text": "stock"}, {"text": "and"}, {"text": "has"}, {"text": "options"}, {"text": "*"}, {"text": "to"}, {"text": "buy"}, {"text": "more"}, {"text": "than"}, {"text": "100,000"}, {"text": "additional"}, {"text": "shares"}, {"text": "."}, {"text": "He"}, {"text": "will"}, {"text": "be"}, {"text": "eligible"}, {"text": "for"}, {"text": "an"}, {"text": "annual"}, {"text": "pension"}, {"text": "of"}, {"text": "more"}, {"text": "than"}, {"text": "$"}, {"text": "244,000"}, {"text": "*U*"}, {"text": "with"}, {"text": "certain"}, {"text": "other"}, {"text": "fringe"}, {"text": "benefits"}, {"text": "."}, {"text": "During"}, {"text": "Mr."}, {"text": "McGovern"}, {"text": "'s"}, {"text": "nine-year"}, {"text": "term"}, {"text": "as"}, {"text": "president"}, {"text": ","}, {"text": "the"}, {"text": "company"}, {"text": "'s"}, {"text": "sales"}, {"text": "rose"}, {"text": "to"}, {"text": "$"}, {"text": "5.7"}, {"text": "billion"}, {"text": "*U*"}, {"text": "from"}, {"text": "$"}, {"text": "2.8"}, {"text": "billion"}, {"text": "*U*"}, {"text": "and"}, {"text": "net"}, {"text": "income"}, {"text": "increased"}, {"text": "to"}, {"text": "$"}, {"text": "274"}, {"text": "million"}, {"text": "*U*"}, {"text": "from"}, {"text": "$"}, {"text": "130"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "the"}, {"text": "statement"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Mr."}, {"text": "Baum"}, {"text": "said"}, {"text": "0"}, {"text": "he"}, {"text": "and"}, {"text": "Mr."}, {"text": "Harper"}, {"text": "both"}, {"text": "advocated"}, {"text": "*-1"}, {"text": "closing"}, {"text": "some"}, {"text": "plants"}, {"text": "as"}, {"text": "long"}, {"text": "ago"}, {"text": "as"}, {"text": "early"}, {"text": "1988"}, {"text": "."}, {"text": "``"}, {"text": "You"}, {"text": "'ve"}, {"text": "got"}, {"text": "*-2"}, {"text": "to"}, {"text": "make"}, {"text": "the"}, {"text": "restructuring"}, {"text": "work"}, {"text": ","}, {"text": "''"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "Mr."}, {"text": "Baum"}, {"text": "."}, {"text": "``"}, {"text": "You"}, {"text": "'ve"}, {"text": "got"}, {"text": "*-1"}, {"text": "to"}, {"text": "make"}, {"text": "those"}, {"text": "savings"}, {"text": "now"}, {"text": "."}, {"text": "''"}, {"text": "Mr."}, {"text": "Harper"}, {"text": "expressed"}, {"text": "confidence"}, {"text": "that"}, {"text": "he"}, {"text": "and"}, {"text": "Mr."}, {"text": "Baum"}, {"text": "can"}, {"text": "convince"}, {"text": "the"}, {"text": "board"}, {"text": "of"}, {"text": "their"}, {"text": "worthiness"}, {"text": "*"}, {"text": "to"}, {"text": "run"}, {"text": "the"}, {"text": "company"}, {"text": "."}, {"text": "``"}, {"text": "We"}, {"text": "look"}, {"text": "upon"}, {"text": "this"}, {"text": "as"}, {"text": "a"}, {"text": "great"}, {"text": "opportunity"}, {"text": "*"}, {"text": "to"}, {"text": "prove"}, {"text": "the"}, {"text": "fact"}, {"text": "that"}, {"text": "we"}, {"text": "have"}, {"text": "a"}, {"text": "tremendous"}, {"text": "management"}, {"text": "team"}, {"text": ","}, {"text": "''"}, {"text": "he"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "."}, {"text": "He"}, {"text": "predicted"}, {"text": "that"}, {"text": "the"}, {"text": "board"}, {"text": "would"}, {"text": "give"}, {"text": "the"}, {"text": "current"}, {"text": "duo"}, {"text": "until"}, {"text": "early"}, {"text": "next"}, {"text": "year"}, {"text": "before"}, {"text": "*"}, {"text": "naming"}, {"text": "a"}, {"text": "new"}, {"text": "chief"}, {"text": "executive"}, {"text": "."}, {"text": "Mr."}, {"text": "Baum"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "two"}, {"text": "have"}, {"text": "orders"}, {"text": "*"}, {"text": "to"}, {"text": "``"}, {"text": "focus"}, {"text": "on"}, {"text": "bottom-line"}, {"text": "profits"}, {"text": "''"}, {"text": "and"}, {"text": "to"}, {"text": "``"}, {"text": "take"}, {"text": "a"}, {"text": "hard"}, {"text": "look"}, {"text": "at"}, {"text": "our"}, {"text": "businesses"}, {"text": "--"}, {"text": "what"}, {"text": "*T*-32"}, {"text": "is"}, {"text": "good"}, {"text": ","}, {"text": "what"}, {"text": "*T*-33"}, {"text": "is"}, {"text": "not"}, {"text": "so"}, {"text": "good"}, {"text": "."}, {"text": "''"}, {"text": "Analysts"}, {"text": "generally"}, {"text": "applaud"}, {"text": "the"}, {"text": "performance"}, {"text": "of"}, {"text": "Campbell"}, {"text": "U.S.A."}, {"text": ","}, {"text": "the"}, {"text": "company"}, {"text": "'s"}, {"text": "largest"}, {"text": "division"}, {"text": ","}, {"text": "which"}, {"text": "*T*-34"}, {"text": "posted"}, {"text": "6"}, {"text": "%"}, {"text": "unit"}, {"text": "sales"}, {"text": "growth"}, {"text": "and"}, {"text": "a"}, {"text": "15"}, {"text": "%"}, {"text": "improvement"}, {"text": "in"}, {"text": "operating"}, {"text": "profit"}, {"text": "for"}, {"text": "fiscal"}, {"text": "1989"}, {"text": "."}, {"text": "``"}, {"text": "The"}, {"text": "way"}, {"text": "that"}, {"text": "we"}, {"text": "'ve"}, {"text": "been"}, {"text": "managing"}, {"text": "Campbell"}, {"text": "U.S.A."}, {"text": "*T*-2"}, {"text": "can"}, {"text": "hopefully"}, {"text": "spread"}, {"text": "to"}, {"text": "other"}, {"text": "areas"}, {"text": "of"}, {"text": "the"}, {"text": "company"}, {"text": ","}, {"text": "''"}, {"text": "Mr."}, {"text": "Baum"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "."}, {"text": "In"}, {"text": "the"}, {"text": "interview"}, {"text": "at"}, {"text": "headquarters"}, {"text": "yesterday"}, {"text": "afternoon"}, {"text": ","}, {"text": "both"}, {"text": "men"}, {"text": "exuded"}, {"text": "confidence"}, {"text": "and"}, {"text": "seemed"}, {"text": "*-1"}, {"text": "to"}, {"text": "work"}, {"text": "well"}, {"text": "together"}, {"text": "."}, {"text": "``"}, {"text": "You"}, {"text": "'ve"}, {"text": "got"}, {"text": "two"}, {"text": "champions"}, {"text": "sitting"}, {"text": "right"}, {"text": "before"}, {"text": "you"}, {"text": ","}, {"text": "''"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "Mr."}, {"text": "Baum"}, {"text": "."}, {"text": "``"}, {"text": "We"}, {"text": "play"}, {"text": "*-1"}, {"text": "to"}, {"text": "win"}, {"text": "."}, {"text": "Wednesday"}, {"text": ","}, {"text": "November"}, {"text": "1"}, {"text": ","}, {"text": "1989"}, {"text": "The"}, {"text": "key"}, {"text": "U.S."}, {"text": "and"}, {"text": "foreign"}, {"text": "annual"}, {"text": "interest"}, {"text": "rates"}, {"text": "below"}, {"text": "are"}, {"text": "a"}, {"text": "guide"}, {"text": "to"}, {"text": "general"}, {"text": "levels"}, {"text": "but"}, {"text": "do"}, {"text": "n't"}, {"text": "always"}, {"text": "represent"}, {"text": "actual"}, {"text": "transactions"}, {"text": "."}, {"text": "PRIME"}, {"text": "RATE"}, {"text": ":"}, {"text": "10"}, {"text": "1\\/2"}, {"text": "%"}, {"text": "."}, {"text": "The"}, {"text": "base"}, {"text": "rate"}, {"text": "on"}, {"text": "corporate"}, {"text": "loans"}, {"text": "at"}, {"text": "large"}, {"text": "U.S."}, {"text": "money"}, {"text": "center"}, {"text": "commercial"}, {"text": "banks"}, {"text": "."}, {"text": "FEDERAL"}, {"text": "FUNDS"}, {"text": ":"}, {"text": "9"}, {"text": "1\\/2"}, {"text": "%"}, {"text": "high"}, {"text": ","}, {"text": "8"}, {"text": "3\\/4"}, {"text": "%"}, {"text": "low"}, {"text": ","}, {"text": "8"}, {"text": "3\\/4"}, {"text": "%"}, {"text": "near"}, {"text": "closing"}, {"text": "bid"}, {"text": ","}, {"text": "9"}, {"text": "%"}, {"text": "offered"}, {"text": "*"}, {"text": "."}, {"text": "Reserves"}, {"text": "traded"}, {"text": "*"}, {"text": "among"}, {"text": "commercial"}, {"text": "banks"}, {"text": "for"}, {"text": "overnight"}, {"text": "use"}, {"text": "in"}, {"text": "amounts"}, {"text": "of"}, {"text": "$"}, {"text": "1"}, {"text": "million"}, {"text": "or"}, {"text": "more"}, {"text": "*U*"}, {"text": "."}, {"text": "Source"}, {"text": ":"}, {"text": "Fulton"}, {"text": "Prebon"}, {"text": "-LRB-"}, {"text": "U.S.A"}, {"text": "."}, {"text": "-RRB-"}, {"text": "Inc"}, {"text": "."}, {"text": "DISCOUNT"}, {"text": "RATE"}, {"text": ":"}, {"text": "7"}, {"text": "%"}, {"text": "."}, {"text": "The"}, {"text": "charge"}, {"text": "on"}, {"text": "loans"}, {"text": "to"}, {"text": "depository"}, {"text": "institutions"}, {"text": "by"}, {"text": "the"}, {"text": "New"}, {"text": "York"}, {"text": "Federal"}, {"text": "Reserve"}, {"text": "Bank"}, {"text": "."}, {"text": "CALL"}, {"text": "MONEY"}, {"text": ":"}, {"text": "9"}, {"text": "3\\/4"}, {"text": "%"}, {"text": "."}, {"text": "The"}, {"text": "charge"}, {"text": "on"}, {"text": "loans"}, {"text": "to"}, {"text": "brokers"}, {"text": "on"}, {"text": "stock"}, {"text": "exchange"}, {"text": "collateral"}, {"text": "."}, {"text": "COMMERCIAL"}, {"text": "PAPER"}, {"text": "placed"}, {"text": "*"}, {"text": "directly"}, {"text": "by"}, {"text": "General"}, {"text": "Motors"}, {"text": "Acceptance"}, {"text": "Corp."}, {"text": ":"}, {"text": "8.55"}, {"text": "%"}, {"text": "30"}, {"text": "to"}, {"text": "44"}, {"text": "days"}, {"text": ";"}, {"text": "8.25"}, {"text": "%"}, {"text": "45"}, {"text": "to"}, {"text": "59"}, {"text": "days"}, {"text": ";"}, {"text": "8.45"}, {"text": "%"}, {"text": "60"}, {"text": "to"}, {"text": "89"}, {"text": "days"}, {"text": ";"}, {"text": "8"}, {"text": "%"}, {"text": "90"}, {"text": "to"}, {"text": "119"}, {"text": "days"}, {"text": ";"}, {"text": "7.90"}, {"text": "%"}, {"text": "120"}, {"text": "to"}, {"text": "149"}, {"text": "days"}, {"text": ";"}, {"text": "7.80"}, {"text": "%"}, {"text": "150"}, {"text": "to"}, {"text": "179"}, {"text": "days"}, {"text": ";"}, {"text": "7.55"}, {"text": "%"}, {"text": "180"}, {"text": "to"}, {"text": "270"}, {"text": "days"}, {"text": "."}, {"text": "COMMERCIAL"}, {"text": "PAPER"}, {"text": ":"}, {"text": "High-grade"}, {"text": "unsecured"}, {"text": "notes"}, {"text": "sold"}, {"text": "*"}, {"text": "through"}, {"text": "dealers"}, {"text": "by"}, {"text": "major"}, {"text": "corporations"}, {"text": "in"}, {"text": "multiples"}, {"text": "of"}, {"text": "$"}, {"text": "1,000"}, {"text": "*U*"}, {"text": ":"}, {"text": "8.65"}, {"text": "%"}, {"text": "30"}, {"text": "days"}, {"text": ";"}, {"text": "8.575"}, {"text": "%"}, {"text": "60"}, {"text": "days"}, {"text": ";"}, {"text": "8.50"}, {"text": "%"}, {"text": "90"}, {"text": "days"}, {"text": "."}, {"text": "CERTIFICATES"}, {"text": "OF"}, {"text": "DEPOSIT"}, {"text": ":"}, {"text": "8.07"}, {"text": "%"}, {"text": "one"}, {"text": "month"}, {"text": ";"}, {"text": "8.06"}, {"text": "%"}, {"text": "two"}, {"text": "months"}, {"text": ";"}, {"text": "8.04"}, {"text": "%"}, {"text": "three"}, {"text": "months"}, {"text": ";"}, {"text": "7.95"}, {"text": "%"}, {"text": "six"}, {"text": "months"}, {"text": ";"}, {"text": "7.88"}, {"text": "%"}, {"text": "one"}, {"text": "year"}, {"text": "."}, {"text": "Average"}, {"text": "of"}, {"text": "top"}, {"text": "rates"}, {"text": "paid"}, {"text": "*"}, {"text": "by"}, {"text": "major"}, {"text": "New"}, {"text": "York"}, {"text": "banks"}, {"text": "on"}, {"text": "primary"}, {"text": "new"}, {"text": "issues"}, {"text": "of"}, {"text": "negotiable"}, {"text": "C.D.s"}, {"text": ","}, {"text": "usually"}, {"text": "on"}, {"text": "amounts"}, {"text": "of"}, {"text": "$"}, {"text": "1"}, {"text": "million"}, {"text": "and"}, {"text": "more"}, {"text": "*U*"}, {"text": "."}, {"text": "The"}, {"text": "minimum"}, {"text": "unit"}, {"text": "is"}, {"text": "$"}, {"text": "100,000"}, {"text": "*U*"}, {"text": "."}, {"text": "Typical"}, {"text": "rates"}, {"text": "in"}, {"text": "the"}, {"text": "secondary"}, {"text": "market"}, {"text": ":"}, {"text": "8.60"}, {"text": "%"}, {"text": "one"}, {"text": "month"}, {"text": ";"}, {"text": "8.55"}, {"text": "%"}, {"text": "three"}, {"text": "months"}, {"text": ";"}, {"text": "8.35"}, {"text": "%"}, {"text": "six"}, {"text": "months"}, {"text": "."}, {"text": "BANKERS"}, {"text": "ACCEPTANCES"}, {"text": ":"}, {"text": "8.50"}, {"text": "%"}, {"text": "30"}, {"text": "days"}, {"text": ";"}, {"text": "8.48"}, {"text": "%"}, {"text": "60"}, {"text": "days"}, {"text": ";"}, {"text": "8.30"}, {"text": "%"}, {"text": "90"}, {"text": "days"}, {"text": ";"}, {"text": "8.15"}, {"text": "%"}, {"text": "120"}, {"text": "days"}, {"text": ";"}, {"text": "8.07"}, {"text": "%"}, {"text": "150"}, {"text": "days"}, {"text": ";"}, {"text": "7.95"}, {"text": "%"}, {"text": "180"}, {"text": "days"}, {"text": "."}, {"text": "Negotiable"}, {"text": ","}, {"text": "bank-backed"}, {"text": "business"}, {"text": "credit"}, {"text": "instruments"}, {"text": "typically"}, {"text": "financing"}, {"text": "an"}, {"text": "import"}, {"text": "order"}, {"text": "."}, {"text": "LONDON"}, {"text": "LATE"}, {"text": "EURODOLLARS"}, {"text": ":"}, {"text": "8"}, {"text": "3\\/4"}, {"text": "%"}, {"text": "to"}, {"text": "8"}, {"text": "5\\/8"}, {"text": "%"}, {"text": "*U*"}, {"text": "one"}, {"text": "month"}, {"text": ";"}, {"text": "8"}, {"text": "13\\/16"}, {"text": "%"}, {"text": "to"}, {"text": "8"}, {"text": "11\\/16"}, {"text": "%"}, {"text": "*U*"}, {"text": "two"}, {"text": "months"}, {"text": ";"}, {"text": "8"}, {"text": "3\\/4"}, {"text": "%"}, {"text": "to"}, {"text": "8"}, {"text": "5\\/8"}, {"text": "%"}, {"text": "*U*"}, {"text": "three"}, {"text": "months"}, {"text": ";"}, {"text": "8"}, {"text": "5\\/8"}, {"text": "%"}, {"text": "to"}, {"text": "8"}, {"text": "1\\/2"}, {"text": "%"}, {"text": "*U*"}, {"text": "four"}, {"text": "months"}, {"text": ";"}, {"text": "8"}, {"text": "1\\/2"}, {"text": "%"}, {"text": "to"}, {"text": "8"}, {"text": "7\\/16"}, {"text": "%"}, {"text": "*U*"}, {"text": "five"}, {"text": "months"}, {"text": ";"}, {"text": "8"}, {"text": "1\\/2"}, {"text": "%"}, {"text": "to"}, {"text": "8"}, {"text": "3\\/8"}, {"text": "%"}, {"text": "*U*"}, {"text": "six"}, {"text": "months"}, {"text": "."}, {"text": "LONDON"}, {"text": "INTERBANK"}, {"text": "OFFERED"}, {"text": "RATES"}, {"text": "-LRB-"}, {"text": "LIBOR"}, {"text": "-RRB-"}, {"text": ":"}, {"text": "8"}, {"text": "3\\/4"}, {"text": "%"}, {"text": "one"}, {"text": "month"}, {"text": ";"}, {"text": "8"}, {"text": "3\\/4"}, {"text": "%"}, {"text": "three"}, {"text": "months"}, {"text": ";"}, {"text": "8"}, {"text": "1\\/2"}, {"text": "%"}, {"text": "six"}, {"text": "months"}, {"text": ";"}, {"text": "8"}, {"text": "7\\/16"}, {"text": "%"}, {"text": "one"}, {"text": "year"}, {"text": "."}, {"text": "The"}, {"text": "average"}, {"text": "of"}, {"text": "interbank"}, {"text": "offered"}, {"text": "rates"}, {"text": "for"}, {"text": "dollar"}, {"text": "deposits"}, {"text": "in"}, {"text": "the"}, {"text": "London"}, {"text": "market"}, {"text": "based"}, {"text": "*"}, {"text": "on"}, {"text": "quotations"}, {"text": "at"}, {"text": "five"}, {"text": "major"}, {"text": "banks"}, {"text": "."}, {"text": "FOREIGN"}, {"text": "PRIME"}, {"text": "RATES"}, {"text": ":"}, {"text": "Canada"}, {"text": "13.50"}, {"text": "%"}, {"text": ";"}, {"text": "Germany"}, {"text": "9"}, {"text": "%"}, {"text": ";"}, {"text": "Japan"}, {"text": "4.875"}, {"text": "%"}, {"text": ";"}, {"text": "Switzerland"}, {"text": "8.50"}, {"text": "%"}, {"text": ";"}, {"text": "Britain"}, {"text": "15"}, {"text": "%"}, {"text": "."}, {"text": "These"}, {"text": "rate"}, {"text": "indications"}, {"text": "are"}, {"text": "n't"}, {"text": "directly"}, {"text": "comparable"}, {"text": ";"}, {"text": "lending"}, {"text": "practices"}, {"text": "vary"}, {"text": "widely"}, {"text": "by"}, {"text": "location"}, {"text": "."}, {"text": "TREASURY"}, {"text": "BILLS"}, {"text": ":"}, {"text": "Results"}, {"text": "of"}, {"text": "the"}, {"text": "Monday"}, {"text": ","}, {"text": "October"}, {"text": "30"}, {"text": ","}, {"text": "1989"}, {"text": ","}, {"text": "auction"}, {"text": "of"}, {"text": "short-term"}, {"text": "U.S."}, {"text": "government"}, {"text": "bills"}, {"text": ","}, {"text": "sold"}, {"text": "*"}, {"text": "at"}, {"text": "a"}, {"text": "discount"}, {"text": "from"}, {"text": "face"}, {"text": "value"}, {"text": "in"}, {"text": "units"}, {"text": "of"}, {"text": "$"}, {"text": "10,000"}, {"text": "to"}, {"text": "$"}, {"text": "1"}, {"text": "million"}, {"text": "*U*"}, {"text": ":"}, {"text": "7.78"}, {"text": "%"}, {"text": "13"}, {"text": "weeks"}, {"text": ";"}, {"text": "7.62"}, {"text": "%"}, {"text": "26"}, {"text": "weeks"}, {"text": "."}, {"text": "FEDERAL"}, {"text": "HOME"}, {"text": "LOAN"}, {"text": "MORTGAGE"}, {"text": "CORP"}, {"text": "."}, {"text": "-LRB-"}, {"text": "Freddie"}, {"text": "Mac"}, {"text": "-RRB-"}, {"text": ":"}, {"text": "Posted"}, {"text": "yields"}, {"text": "on"}, {"text": "30-year"}, {"text": "mortgage"}, {"text": "commitments"}, {"text": "for"}, {"text": "delivery"}, {"text": "within"}, {"text": "30"}, {"text": "days"}, {"text": "."}, {"text": "9.82"}, {"text": "%"}, {"text": ","}, {"text": "standard"}, {"text": "conventional"}, {"text": "fixed-rate"}, {"text": "mortgages"}, {"text": ";"}, {"text": "8.25"}, {"text": "%"}, {"text": ","}, {"text": "2"}, {"text": "%"}, {"text": "rate"}, {"text": "capped"}, {"text": "one-year"}, {"text": "adjustable"}, {"text": "rate"}, {"text": "mortgages"}, {"text": "."}, {"text": "Source"}, {"text": ":"}, {"text": "Telerate"}, {"text": "Systems"}, {"text": "Inc"}, {"text": "."}, {"text": "FEDERAL"}, {"text": "NATIONAL"}, {"text": "MORTGAGE"}, {"text": "ASSOCIATION"}, {"text": "-LRB-"}, {"text": "Fannie"}, {"text": "Mae"}, {"text": "-RRB-"}, {"text": ":"}, {"text": "Posted"}, {"text": "yields"}, {"text": "on"}, {"text": "30"}, {"text": "year"}, {"text": "mortgage"}, {"text": "commitments"}, {"text": "for"}, {"text": "delivery"}, {"text": "within"}, {"text": "30"}, {"text": "days"}, {"text": "-LRB-"}, {"text": "priced"}, {"text": "*"}, {"text": "at"}, {"text": "par"}, {"text": "-RRB-"}, {"text": "9.75"}, {"text": "%"}, {"text": ","}, {"text": "standard"}, {"text": "conventional"}, {"text": "fixed-rate"}, {"text": "mortgages"}, {"text": ";"}, {"text": "8.70"}, {"text": "%"}, {"text": ","}, {"text": "6\\/2"}, {"text": "rate"}, {"text": "capped"}, {"text": "one-year"}, {"text": "adjustable"}, {"text": "rate"}, {"text": "mortgages"}, {"text": "."}, {"text": "Source"}, {"text": ":"}, {"text": "Telerate"}, {"text": "Systems"}, {"text": "Inc"}, {"text": "."}, {"text": "MERRILL"}, {"text": "LYNCH"}, {"text": "READY"}, {"text": "ASSETS"}, {"text": "TRUST"}, {"text": ":"}, {"text": "8.64"}, {"text": "%"}, {"text": "."}, {"text": "Annualized"}, {"text": "average"}, {"text": "rate"}, {"text": "of"}, {"text": "return"}, {"text": "after"}, {"text": "expenses"}, {"text": "for"}, {"text": "the"}, {"text": "past"}, {"text": "30"}, {"text": "days"}, {"text": ";"}, {"text": "not"}, {"text": "a"}, {"text": "forecast"}, {"text": "of"}, {"text": "future"}, {"text": "returns"}, {"text": "."}, {"text": "Robert"}, {"text": "L."}, {"text": "Bernstein"}, {"text": ","}, {"text": "chairman"}, {"text": "and"}, {"text": "president"}, {"text": "of"}, {"text": "Random"}, {"text": "House"}, {"text": "Inc."}, {"text": ","}, {"text": "announced"}, {"text": "his"}, {"text": "resignation"}, {"text": "from"}, {"text": "the"}, {"text": "publishing"}, {"text": "house"}, {"text": "0"}, {"text": "he"}, {"text": "has"}, {"text": "run"}, {"text": "*T*-1"}, {"text": "for"}, {"text": "23"}, {"text": "years"}, {"text": "."}, {"text": "A"}, {"text": "successor"}, {"text": "was"}, {"text": "n't"}, {"text": "named"}, {"text": "*-1"}, {"text": ","}, {"text": "which"}, {"text": "*T*-35"}, {"text": "fueled"}, {"text": "speculation"}, {"text": "that"}, {"text": "Mr."}, {"text": "Bernstein"}, {"text": "may"}, {"text": "have"}, {"text": "clashed"}, {"text": "with"}, {"text": "S.I."}, {"text": "Newhouse"}, {"text": "Jr."}, {"text": ","}, {"text": "whose"}, {"text": "family"}, {"text": "company"}, {"text": ","}, {"text": "Advance"}, {"text": "Publications"}, {"text": "Inc."}, {"text": ","}, {"text": "*T*-2"}, {"text": "owns"}, {"text": "Random"}, {"text": "House"}, {"text": "."}, {"text": "Abrupt"}, {"text": "departures"}, {"text": "are"}, {"text": "n't"}, {"text": "unheard"}, {"text": "of"}, {"text": "*-1"}, {"text": "within"}, {"text": "the"}, {"text": "Newhouse"}, {"text": "empire"}, {"text": "."}, {"text": "In"}, {"text": "an"}, {"text": "interview"}, {"text": ","}, {"text": "Mr."}, {"text": "Bernstein"}, {"text": "said"}, {"text": "0"}, {"text": "his"}, {"text": "departure"}, {"text": "``"}, {"text": "evolved"}, {"text": "out"}, {"text": "of"}, {"text": "discussions"}, {"text": "with"}, {"text": "Si"}, {"text": "Newhouse"}, {"text": "and"}, {"text": "that"}, {"text": "'s"}, {"text": "the"}, {"text": "decision"}, {"text": "0"}, {"text": "I"}, {"text": "reached"}, {"text": "*T*-1"}, {"text": "."}, {"text": "''"}, {"text": "He"}, {"text": "declined"}, {"text": "*-1"}, {"text": "to"}, {"text": "elaborate"}, {"text": ","}, {"text": "other"}, {"text": "than"}, {"text": "*-1"}, {"text": "to"}, {"text": "say"}, {"text": ","}, {"text": "``"}, {"text": "It"}, {"text": "just"}, {"text": "seemed"}, {"text": "the"}, {"text": "right"}, {"text": "thing"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "do"}, {"text": "*T*-2"}, {"text": "at"}, {"text": "this"}, {"text": "minute"}, {"text": "."}, {"text": "Sometimes"}, {"text": "you"}, {"text": "just"}, {"text": "go"}, {"text": "with"}, {"text": "your"}, {"text": "gut"}, {"text": "."}, {"text": "''"}, {"text": "Mr."}, {"text": "Bernstein"}, {"text": "said"}, {"text": "0"}, {"text": "he"}, {"text": "will"}, {"text": "stay"}, {"text": "until"}, {"text": "Dec."}, {"text": "31"}, {"text": "and"}, {"text": "work"}, {"text": "with"}, {"text": "his"}, {"text": "successor"}, {"text": ","}, {"text": "who"}, {"text": "*T*-36"}, {"text": "is"}, {"text": "*-1"}, {"text": "to"}, {"text": "be"}, {"text": "named"}, {"text": "*-43"}, {"text": "soon"}, {"text": "."}, {"text": "Mr."}, {"text": "Newhouse"}, {"text": ","}, {"text": "meanwhile"}, {"text": ","}, {"text": "insisted"}, {"text": "that"}, {"text": "he"}, {"text": "is"}, {"text": "n't"}, {"text": "unhappy"}, {"text": "with"}, {"text": "Mr."}, {"text": "Bernstein"}, {"text": "or"}, {"text": "the"}, {"text": "performance"}, {"text": "of"}, {"text": "Random"}, {"text": "House"}, {"text": ","}, {"text": "the"}, {"text": "largest"}, {"text": "trade"}, {"text": "publishing"}, {"text": "house"}, {"text": "in"}, {"text": "the"}, {"text": "U.S."}, {"text": "."}, {"text": "The"}, {"text": "company"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "publisher"}, {"text": "'s"}, {"text": "annual"}, {"text": "sales"}, {"text": "volume"}, {"text": "increased"}, {"text": "to"}, {"text": "$"}, {"text": "800"}, {"text": "million"}, {"text": "*U*"}, {"text": "from"}, {"text": "$"}, {"text": "40"}, {"text": "million"}, {"text": "*U*"}, {"text": "during"}, {"text": "Mr."}, {"text": "Bernstein"}, {"text": "'s"}, {"text": "tenure"}, {"text": "."}, {"text": "``"}, {"text": "Bob"}, {"text": "has"}, {"text": "handled"}, {"text": "the"}, {"text": "extraordinary"}, {"text": "growth"}, {"text": "of"}, {"text": "the"}, {"text": "company"}, {"text": "quite"}, {"text": "brilliantly"}, {"text": ","}, {"text": "''"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "Mr."}, {"text": "Newhouse"}, {"text": "."}, {"text": "``"}, {"text": "The"}, {"text": "company"}, {"text": "is"}, {"text": "doing"}, {"text": "well"}, {"text": ","}, {"text": "it"}, {"text": "'s"}, {"text": "stable"}, {"text": ","}, {"text": "it"}, {"text": "'s"}, {"text": "got"}, {"text": "good"}, {"text": "people"}, {"text": "."}, {"text": "Bob"}, {"text": "has"}, {"text": "an"}, {"text": "agenda"}, {"text": "and"}, {"text": "this"}, {"text": "seemed"}, {"text": "like"}, {"text": "the"}, {"text": "natural"}, {"text": "time"}, {"text": "."}, {"text": "''"}, {"text": "Publishing"}, {"text": "officials"}, {"text": "believe"}, {"text": "that"}, {"text": "while"}, {"text": "Random"}, {"text": "House"}, {"text": "has"}, {"text": "enjoyed"}, {"text": "spectacular"}, {"text": "growth"}, {"text": "and"}, {"text": "has"}, {"text": "smoothly"}, {"text": "integrated"}, {"text": "many"}, {"text": "acquisitions"}, {"text": "in"}, {"text": "recent"}, {"text": "years"}, {"text": ","}, {"text": "some"}, {"text": "of"}, {"text": "the"}, {"text": "bigger"}, {"text": "ones"}, {"text": "have"}, {"text": "n't"}, {"text": "been"}, {"text": "absorbed"}, {"text": "*-44"}, {"text": "so"}, {"text": "easily"}, {"text": "."}, {"text": "Crown"}, {"text": "Publishing"}, {"text": "Group"}, {"text": ","}, {"text": "acquired"}, {"text": "*"}, {"text": "last"}, {"text": "year"}, {"text": ","}, {"text": "is"}, {"text": "said"}, {"text": "*-1"}, {"text": "to"}, {"text": "be"}, {"text": "turning"}, {"text": "in"}, {"text": "disappointing"}, {"text": "results"}, {"text": "."}, {"text": "As"}, {"text": "a"}, {"text": "private"}, {"text": "company"}, {"text": ","}, {"text": "Random"}, {"text": "House"}, {"text": "does"}, {"text": "n't"}, {"text": "report"}, {"text": "its"}, {"text": "earnings"}, {"text": "."}, {"text": "Mr."}, {"text": "Bernstein"}, {"text": ","}, {"text": "who"}, {"text": "*T*-37"}, {"text": "succeeded"}, {"text": "Bennett"}, {"text": "Cerf"}, {"text": ","}, {"text": "has"}, {"text": "been"}, {"text": "only"}, {"text": "the"}, {"text": "second"}, {"text": "president"}, {"text": "of"}, {"text": "Random"}, {"text": "House"}, {"text": "since"}, {"text": "it"}, {"text": "was"}, {"text": "founded"}, {"text": "*-45"}, {"text": "in"}, {"text": "1925"}, {"text": "."}, {"text": "Speculation"}, {"text": "on"}, {"text": "his"}, {"text": "successor"}, {"text": "centers"}, {"text": "on"}, {"text": "a"}, {"text": "number"}, {"text": "of"}, {"text": "division"}, {"text": "heads"}, {"text": "at"}, {"text": "the"}, {"text": "house"}, {"text": "."}, {"text": "Possible"}, {"text": "candidates"}, {"text": "include"}, {"text": "Susan"}, {"text": "Petersen"}, {"text": ","}, {"text": "president"}, {"text": "of"}, {"text": "Ballantine\\/Del"}, {"text": "Rey\\/Fawcett"}, {"text": ","}, {"text": "Random"}, {"text": "House"}, {"text": "'s"}, {"text": "huge"}, {"text": "and"}, {"text": "successful"}, {"text": "paperback"}, {"text": "division"}, {"text": "."}, {"text": "Some"}, {"text": "say"}, {"text": "0"}, {"text": "Anthony"}, {"text": "Cheetham"}, {"text": ","}, {"text": "head"}, {"text": "of"}, {"text": "a"}, {"text": "recently"}, {"text": "acquired"}, {"text": "British"}, {"text": "company"}, {"text": ","}, {"text": "Century"}, {"text": "Hutchinson"}, {"text": ","}, {"text": "could"}, {"text": "be"}, {"text": "chosen"}, {"text": "*-46"}, {"text": "."}, {"text": "There"}, {"text": "is"}, {"text": "also"}, {"text": "speculation"}, {"text": "that"}, {"text": "Mr."}, {"text": "Newhouse"}, {"text": "could"}, {"text": "bring"}, {"text": "in"}, {"text": "a"}, {"text": "powerhouse"}, {"text": "businessman"}, {"text": "or"}, {"text": "another"}, {"text": "Newhouse"}, {"text": "family"}, {"text": "member"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "to"}, {"text": "run"}, {"text": "the"}, {"text": "business"}, {"text": "side"}, {"text": ","}, {"text": "in"}, {"text": "combination"}, {"text": "with"}, {"text": "a"}, {"text": "publishing"}, {"text": "executive"}, {"text": "like"}, {"text": "Robert"}, {"text": "Gottlieb"}, {"text": ","}, {"text": "who"}, {"text": "*T*-38"}, {"text": "left"}, {"text": "Random"}, {"text": "House"}, {"text": "'s"}, {"text": "Alfred"}, {"text": "A."}, {"text": "Knopf"}, {"text": "*-2"}, {"text": "to"}, {"text": "run"}, {"text": "the"}, {"text": "New"}, {"text": "Yorker"}, {"text": ","}, {"text": "also"}, {"text": "owned"}, {"text": "*"}, {"text": "by"}, {"text": "the"}, {"text": "Newhouse"}, {"text": "family"}, {"text": "."}, {"text": "Not"}, {"text": "included"}, {"text": "on"}, {"text": "the"}, {"text": "most-likely-successor"}, {"text": "list"}, {"text": "are"}, {"text": "Joni"}, {"text": "Evans"}, {"text": ","}, {"text": "recruited"}, {"text": "*"}, {"text": "two"}, {"text": "years"}, {"text": "ago"}, {"text": "*"}, {"text": "to"}, {"text": "be"}, {"text": "publisher"}, {"text": "of"}, {"text": "adult"}, {"text": "trade"}, {"text": "books"}, {"text": "for"}, {"text": "Random"}, {"text": "House"}, {"text": ","}, {"text": "and"}, {"text": "Sonny"}, {"text": "Mehta"}, {"text": ","}, {"text": "president"}, {"text": "of"}, {"text": "the"}, {"text": "prestigious"}, {"text": "Alfred"}, {"text": "A."}, {"text": "Knopf"}, {"text": "unit"}, {"text": "."}, {"text": "When"}, {"text": "Ms."}, {"text": "Evans"}, {"text": "took"}, {"text": "her"}, {"text": "job"}, {"text": "*T*-1"}, {"text": ","}, {"text": "several"}, {"text": "important"}, {"text": "divisions"}, {"text": "that"}, {"text": "*T*-2"}, {"text": "had"}, {"text": "reported"}, {"text": "to"}, {"text": "her"}, {"text": "predecessor"}, {"text": "were"}, {"text": "n't"}, {"text": "included"}, {"text": "*-3"}, {"text": "partly"}, {"text": "because"}, {"text": "she"}, {"text": "did"}, {"text": "n't"}, {"text": "wish"}, {"text": "*-4"}, {"text": "to"}, {"text": "be"}, {"text": "a"}, {"text": "full-time"}, {"text": "administrator"}, {"text": "."}, {"text": "Mr."}, {"text": "Mehta"}, {"text": "is"}, {"text": "widely"}, {"text": "viewed"}, {"text": "as"}, {"text": "a"}, {"text": "brilliant"}, {"text": "editor"}, {"text": "but"}, {"text": "a"}, {"text": "less-than-brilliant"}, {"text": "administrator"}, {"text": "and"}, {"text": "his"}, {"text": "own"}, {"text": "departure"}, {"text": "was"}, {"text": "rumored"}, {"text": "*-47"}, {"text": "recently"}, {"text": "."}, {"text": "Mr."}, {"text": "Bernstein"}, {"text": ","}, {"text": "a"}, {"text": "tall"}, {"text": ","}, {"text": "energetic"}, {"text": "man"}, {"text": "who"}, {"text": "*T*-39"}, {"text": "is"}, {"text": "widely"}, {"text": "respected"}, {"text": "as"}, {"text": "a"}, {"text": "publishing"}, {"text": "executive"}, {"text": ","}, {"text": "has"}, {"text": "spent"}, {"text": "much"}, {"text": "of"}, {"text": "his"}, {"text": "time"}, {"text": "in"}, {"text": "recent"}, {"text": "years"}, {"text": "on"}, {"text": "human"}, {"text": "rights"}, {"text": "issues"}, {"text": "."}, {"text": "Congress"}, {"text": "learned"}, {"text": "during"}, {"text": "the"}, {"text": "Reagan"}, {"text": "administration"}, {"text": "that"}, {"text": "it"}, {"text": "could"}, {"text": "intimidate"}, {"text": "the"}, {"text": "executive"}, {"text": "branch"}, {"text": "by"}, {"text": "*-1"}, {"text": "uttering"}, {"text": "again"}, {"text": "and"}, {"text": "again"}, {"text": "the"}, {"text": "same"}, {"text": "seven"}, {"text": "words"}, {"text": ":"}, {"text": "``"}, {"text": "Provided"}, {"text": ","}, {"text": "that"}, {"text": "no"}, {"text": "funds"}, {"text": "shall"}, {"text": "be"}, {"text": "spent"}, {"text": "*-48"}, {"text": "..."}, {"text": "."}, {"text": "''"}, {"text": "This"}, {"text": "phrase"}, {"text": "once"}, {"text": "again"}, {"text": "is"}, {"text": "found"}, {"text": "*-49"}, {"text": "throughout"}, {"text": "the"}, {"text": "many"}, {"text": "appropriations"}, {"text": "bills"}, {"text": "now"}, {"text": "moving"}, {"text": "through"}, {"text": "Congress"}, {"text": "."}, {"text": "It"}, {"text": "signals"}, {"text": "Congress"}, {"text": "'s"}, {"text": "attempt"}, {"text": ","}, {"text": "under"}, {"text": "the"}, {"text": "pretext"}, {"text": "of"}, {"text": "*"}, {"text": "guarding"}, {"text": "the"}, {"text": "public"}, {"text": "purse"}, {"text": ","}, {"text": "*"}, {"text": "to"}, {"text": "deny"}, {"text": "the"}, {"text": "president"}, {"text": "the"}, {"text": "funding"}, {"text": "necessary"}, {"text": "*"}, {"text": "to"}, {"text": "execute"}, {"text": "certain"}, {"text": "of"}, {"text": "his"}, {"text": "duties"}, {"text": "and"}, {"text": "prerogatives"}, {"text": "specified"}, {"text": "*"}, {"text": "in"}, {"text": "Article"}, {"text": "II"}, {"text": "of"}, {"text": "the"}, {"text": "Constitution"}, {"text": "."}, {"text": "This"}, {"text": "species"}, {"text": "of"}, {"text": "congressional"}, {"text": "action"}, {"text": "is"}, {"text": "predicated"}, {"text": "*-50"}, {"text": "on"}, {"text": "an"}, {"text": "interpretation"}, {"text": "of"}, {"text": "the"}, {"text": "appropriations"}, {"text": "clause"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "is"}, {"text": "erroneous"}, {"text": "and"}, {"text": "unconstitutional"}, {"text": "."}, {"text": "The"}, {"text": "appropriations"}, {"text": "clause"}, {"text": "states"}, {"text": "that"}, {"text": "``"}, {"text": "No"}, {"text": "Money"}, {"text": "shall"}, {"text": "be"}, {"text": "drawn"}, {"text": "*-51"}, {"text": "from"}, {"text": "the"}, {"text": "Treasury"}, {"text": ","}, {"text": "but"}, {"text": "in"}, {"text": "Consequence"}, {"text": "of"}, {"text": "Appropriations"}, {"text": "made"}, {"text": "*"}, {"text": "by"}, {"text": "Law"}, {"text": "..."}, {"text": "."}, {"text": "''"}, {"text": "The"}, {"text": "prevailing"}, {"text": "interpretation"}, {"text": "of"}, {"text": "the"}, {"text": "clause"}, {"text": "on"}, {"text": "Capitol"}, {"text": "Hill"}, {"text": "is"}, {"text": "that"}, {"text": "it"}, {"text": "gives"}, {"text": "Congress"}, {"text": "an"}, {"text": "omnipresent"}, {"text": "veto"}, {"text": "over"}, {"text": "every"}, {"text": "conceivable"}, {"text": "action"}, {"text": "of"}, {"text": "the"}, {"text": "president"}, {"text": "through"}, {"text": "the"}, {"text": "ability"}, {"text": "*"}, {"text": "to"}, {"text": "withhold"}, {"text": "funding"}, {"text": "."}, {"text": "This"}, {"text": "interpretation"}, {"text": "was"}, {"text": "officially"}, {"text": "endorsed"}, {"text": "*-1"}, {"text": "by"}, {"text": "Congress"}, {"text": "in"}, {"text": "1987"}, {"text": "in"}, {"text": "the"}, {"text": "Iran-Contra"}, {"text": "Report"}, {"text": "."}, {"text": "As"}, {"text": "partisans"}, {"text": "of"}, {"text": "congressional"}, {"text": "power"}, {"text": "understand"}, {"text": ","}, {"text": "a"}, {"text": "``"}, {"text": "power"}, {"text": "of"}, {"text": "the"}, {"text": "purse"}, {"text": "''"}, {"text": "so"}, {"text": "broadly"}, {"text": "construed"}, {"text": "*"}, {"text": "would"}, {"text": "emasculate"}, {"text": "the"}, {"text": "presidency"}, {"text": "and"}, {"text": "swallow"}, {"text": "the"}, {"text": "principle"}, {"text": "of"}, {"text": "separation"}, {"text": "of"}, {"text": "powers"}, {"text": "."}, {"text": "It"}, {"text": "is"}, {"text": "not"}, {"text": "supported"}, {"text": "by"}, {"text": "the"}, {"text": "text"}, {"text": "or"}, {"text": "history"}, {"text": "of"}, {"text": "the"}, {"text": "Constitution"}, {"text": "."}, {"text": "The"}, {"text": "framers"}, {"text": "hardly"}, {"text": "discussed"}, {"text": "the"}, {"text": "appropriations"}, {"text": "clause"}, {"text": "at"}, {"text": "the"}, {"text": "Constitutional"}, {"text": "Convention"}, {"text": "of"}, {"text": "1787"}, {"text": ","}, {"text": "according"}, {"text": "to"}, {"text": "Madison"}, {"text": "'s"}, {"text": "notes"}, {"text": "."}, {"text": "To"}, {"text": "the"}, {"text": "extent"}, {"text": "0"}, {"text": "they"}, {"text": "did"}, {"text": ","}, {"text": "their"}, {"text": "concern"}, {"text": "was"}, {"text": "*-1"}, {"text": "to"}, {"text": "ensure"}, {"text": "fiscal"}, {"text": "accountability"}, {"text": "."}, {"text": "Moreover"}, {"text": ","}, {"text": "the"}, {"text": "framers"}, {"text": "believed"}, {"text": "that"}, {"text": "the"}, {"text": "nation"}, {"text": "needed"}, {"text": "a"}, {"text": "unitary"}, {"text": "executive"}, {"text": "with"}, {"text": "the"}, {"text": "independence"}, {"text": "and"}, {"text": "resources"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "perform"}, {"text": "the"}, {"text": "executive"}, {"text": "functions"}, {"text": "that"}, {"text": "the"}, {"text": "Confederation"}, {"text": "Congress"}, {"text": "had"}, {"text": "performed"}, {"text": "*T*-2"}, {"text": "poorly"}, {"text": "under"}, {"text": "the"}, {"text": "Articles"}, {"text": "of"}, {"text": "Confederation"}, {"text": "*T*-1"}, {"text": "."}, {"text": "It"}, {"text": "would"}, {"text": "contradict"}, {"text": "that"}, {"text": "objective"}, {"text": "if"}, {"text": "the"}, {"text": "appropriations"}, {"text": "clause"}, {"text": "-LRB-"}, {"text": "technically"}, {"text": "a"}, {"text": "limitation"}, {"text": "on"}, {"text": "legislative"}, {"text": "power"}, {"text": "-RRB-"}, {"text": "could"}, {"text": "be"}, {"text": "read"}, {"text": "*-52"}, {"text": "as"}, {"text": "*-52"}, {"text": "placing"}, {"text": "the"}, {"text": "president"}, {"text": "on"}, {"text": "Congress"}, {"text": "'s"}, {"text": "short"}, {"text": "leash"}, {"text": ","}, {"text": "*-52"}, {"text": "making"}, {"text": "the"}, {"text": "executive"}, {"text": "consist"}, {"text": "of"}, {"text": "the"}, {"text": "president"}, {"text": "and"}, {"text": "every"}, {"text": "member"}, {"text": "of"}, {"text": "Congress"}, {"text": "."}, {"text": "As"}, {"text": "it"}, {"text": "went"}, {"text": "to"}, {"text": "the"}, {"text": "conference"}, {"text": "panel"}, {"text": "now"}, {"text": "deliberating"}, {"text": ","}, {"text": "the"}, {"text": "appropriations"}, {"text": "bill"}, {"text": "for"}, {"text": "the"}, {"text": "executive"}, {"text": "office"}, {"text": "of"}, {"text": "the"}, {"text": "president"}, {"text": "for"}, {"text": "fiscal"}, {"text": "1990"}, {"text": "contained"}, {"text": "some"}, {"text": "breathtaking"}, {"text": "attempts"}, {"text": "*ICH*-1"}, {"text": "by"}, {"text": "Congress"}, {"text": "*"}, {"text": "to"}, {"text": "rewrite"}, {"text": "the"}, {"text": "Constitution"}, {"text": "under"}, {"text": "the"}, {"text": "pretext"}, {"text": "of"}, {"text": "*"}, {"text": "protecting"}, {"text": "the"}, {"text": "public"}, {"text": "'s"}, {"text": "money"}, {"text": "."}, {"text": "During"}, {"text": "the"}, {"text": "coming"}, {"text": "weeks"}, {"text": ","}, {"text": "President"}, {"text": "Bush"}, {"text": "must"}, {"text": "decide"}, {"text": "whether"}, {"text": "*"}, {"text": "to"}, {"text": "veto"}, {"text": "the"}, {"text": "bills"}, {"text": "containing"}, {"text": "them"}, {"text": "--"}, {"text": "or"}, {"text": ","}, {"text": "alternatively"}, {"text": ","}, {"text": "*"}, {"text": "to"}, {"text": "sign"}, {"text": "these"}, {"text": "bills"}, {"text": "into"}, {"text": "law"}, {"text": "with"}, {"text": "a"}, {"text": "statement"}, {"text": "declaring"}, {"text": "their"}, {"text": "intrusions"}, {"text": "on"}, {"text": "executive"}, {"text": "power"}, {"text": "to"}, {"text": "be"}, {"text": "in"}, {"text": "violation"}, {"text": "of"}, {"text": "Article"}, {"text": "II"}, {"text": ","}, {"text": "and"}, {"text": "thus"}, {"text": "void"}, {"text": "and"}, {"text": "severable"}, {"text": "."}, {"text": "The"}, {"text": "1990"}, {"text": "appropriations"}, {"text": "legislation"}, {"text": "attempts"}, {"text": "*-1"}, {"text": "to"}, {"text": "strip"}, {"text": "the"}, {"text": "president"}, {"text": "of"}, {"text": "his"}, {"text": "powers"}, {"text": "*"}, {"text": "to"}, {"text": "make"}, {"text": "certain"}, {"text": "appointments"}, {"text": "as"}, {"text": "*"}, {"text": "provided"}, {"text": "*-2"}, {"text": "by"}, {"text": "Article"}, {"text": "II"}, {"text": "."}, {"text": "Article"}, {"text": "II"}, {"text": "places"}, {"text": "on"}, {"text": "the"}, {"text": "president"}, {"text": "the"}, {"text": "duty"}, {"text": "*"}, {"text": "to"}, {"text": "nominate"}, {"text": "*RNR*-1"}, {"text": ","}, {"text": "``"}, {"text": "and"}, {"text": "by"}, {"text": "and"}, {"text": "with"}, {"text": "the"}, {"text": "Advice"}, {"text": "and"}, {"text": "Consent"}, {"text": "of"}, {"text": "the"}, {"text": "Senate"}, {"text": "''"}, {"text": "appoint"}, {"text": "*RNR*-1"}, {"text": ","}, {"text": "ambassadors"}, {"text": ","}, {"text": "judges"}, {"text": ","}, {"text": "and"}, {"text": "other"}, {"text": "officers"}, {"text": "of"}, {"text": "the"}, {"text": "U.S."}, {"text": "."}, {"text": "It"}, {"text": "also"}, {"text": "empowers"}, {"text": "the"}, {"text": "president"}, {"text": "to"}, {"text": "make"}, {"text": "recess"}, {"text": "appointments"}, {"text": ","}, {"text": "without"}, {"text": "Senate"}, {"text": "approval"}, {"text": ":"}, {"text": "``"}, {"text": "The"}, {"text": "President"}, {"text": "shall"}, {"text": "have"}, {"text": "Power"}, {"text": "*"}, {"text": "to"}, {"text": "fill"}, {"text": "up"}, {"text": "all"}, {"text": "Vacancies"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "may"}, {"text": "happen"}, {"text": "during"}, {"text": "the"}, {"text": "Recess"}, {"text": "of"}, {"text": "the"}, {"text": "Senate"}, {"text": ","}, {"text": "by"}, {"text": "*-2"}, {"text": "granting"}, {"text": "Commissions"}, {"text": "which"}, {"text": "*T*-40"}, {"text": "shall"}, {"text": "expire"}, {"text": "at"}, {"text": "the"}, {"text": "End"}, {"text": "of"}, {"text": "their"}, {"text": "next"}, {"text": "Session"}, {"text": "."}, {"text": "''"}, {"text": "Yet"}, {"text": "Section"}, {"text": "605"}, {"text": "of"}, {"text": "the"}, {"text": "appropriations"}, {"text": "bill"}, {"text": "for"}, {"text": "the"}, {"text": "executive"}, {"text": "office"}, {"text": "provides"}, {"text": ":"}, {"text": "``"}, {"text": "No"}, {"text": "part"}, {"text": "of"}, {"text": "any"}, {"text": "appropriation"}, {"text": "for"}, {"text": "the"}, {"text": "current"}, {"text": "fiscal"}, {"text": "year"}, {"text": "contained"}, {"text": "*"}, {"text": "in"}, {"text": "this"}, {"text": "or"}, {"text": "any"}, {"text": "other"}, {"text": "Act"}, {"text": "shall"}, {"text": "be"}, {"text": "paid"}, {"text": "*-53"}, {"text": "to"}, {"text": "any"}, {"text": "person"}, {"text": "for"}, {"text": "the"}, {"text": "filling"}, {"text": "of"}, {"text": "any"}, {"text": "position"}, {"text": "for"}, {"text": "which"}, {"text": "he"}, {"text": "or"}, {"text": "she"}, {"text": "has"}, {"text": "been"}, {"text": "nominated"}, {"text": "*-54"}, {"text": "*T*-1"}, {"text": "after"}, {"text": "the"}, {"text": "Senate"}, {"text": "has"}, {"text": "voted"}, {"text": "*-2"}, {"text": "not"}, {"text": "to"}, {"text": "approve"}, {"text": "the"}, {"text": "nomination"}, {"text": "of"}, {"text": "said"}, {"text": "person"}, {"text": "."}, {"text": "''"}, {"text": "Thus"}, {"text": ","}, {"text": "with"}, {"text": "one"}, {"text": "brief"}, {"text": "passage"}, {"text": "in"}, {"text": "an"}, {"text": "appropriations"}, {"text": "bill"}, {"text": ","}, {"text": "Congress"}, {"text": "repeals"}, {"text": "the"}, {"text": "president"}, {"text": "'s"}, {"text": "power"}, {"text": "*"}, {"text": "to"}, {"text": "make"}, {"text": "recess"}, {"text": "appointments"}, {"text": "under"}, {"text": "Article"}, {"text": "II"}, {"text": "."}, {"text": "Section"}, {"text": "605"}, {"text": "also"}, {"text": "imposes"}, {"text": "unconstitutional"}, {"text": "conditions"}, {"text": "on"}, {"text": "the"}, {"text": "president"}, {"text": "'s"}, {"text": "ability"}, {"text": "*"}, {"text": "to"}, {"text": "nominate"}, {"text": "candidates"}, {"text": "of"}, {"text": "his"}, {"text": "choosing"}, {"text": "."}, {"text": "The"}, {"text": "language"}, {"text": "of"}, {"text": "the"}, {"text": "appropriations"}, {"text": "rider"}, {"text": "implies"}, {"text": "that"}, {"text": "any"}, {"text": "nomination"}, {"text": "to"}, {"text": "any"}, {"text": "position"}, {"text": "of"}, {"text": "a"}, {"text": "rejected"}, {"text": "nominee"}, {"text": "will"}, {"text": "result"}, {"text": "in"}, {"text": "the"}, {"text": "president"}, {"text": "being"}, {"text": "denied"}, {"text": "*-55"}, {"text": "funding"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "pay"}, {"text": "that"}, {"text": "person"}, {"text": "'s"}, {"text": "salary"}, {"text": "*T*-1"}, {"text": "."}, {"text": "The"}, {"text": "president"}, {"text": "could"}, {"text": "probably"}, {"text": "not"}, {"text": "avoid"}, {"text": "this"}, {"text": "restriction"}, {"text": "by"}, {"text": "*-1"}, {"text": "choosing"}, {"text": "people"}, {"text": "willing"}, {"text": "*"}, {"text": "to"}, {"text": "serve"}, {"text": "without"}, {"text": "pay"}, {"text": ","}, {"text": "because"}, {"text": "the"}, {"text": "Anti-Deficiency"}, {"text": "Act"}, {"text": "prohibits"}, {"text": "voluntary"}, {"text": "service"}, {"text": "to"}, {"text": "the"}, {"text": "government"}, {"text": "."}, {"text": "The"}, {"text": "1990"}, {"text": "appropriations"}, {"text": "bills"}, {"text": "also"}, {"text": "contain"}, {"text": "a"}, {"text": "number"}, {"text": "of"}, {"text": "``"}, {"text": "muzzling"}, {"text": "''"}, {"text": "provisions"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "violate"}, {"text": "the"}, {"text": "recommendation"}, {"text": "clause"}, {"text": "in"}, {"text": "Article"}, {"text": "II"}, {"text": "of"}, {"text": "the"}, {"text": "Constitution"}, {"text": "."}, {"text": "Muzzling"}, {"text": "provisions"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "might"}, {"text": "be"}, {"text": "called"}, {"text": "*-56"}, {"text": "``"}, {"text": "blindfold"}, {"text": "laws"}, {"text": "''"}, {"text": "as"}, {"text": "well"}, {"text": ","}, {"text": "prevent"}, {"text": "the"}, {"text": "executive"}, {"text": "branch"}, {"text": "from"}, {"text": "even"}, {"text": "*-2"}, {"text": "looking"}, {"text": "at"}, {"text": "certain"}, {"text": "policy"}, {"text": "options"}, {"text": ","}, {"text": "let"}, {"text": "alone"}, {"text": "from"}, {"text": "*-2"}, {"text": "recommending"}, {"text": "them"}, {"text": "to"}, {"text": "Congress"}, {"text": "."}, {"text": "Such"}, {"text": "laws"}, {"text": "violate"}, {"text": "the"}, {"text": "provision"}, {"text": "in"}, {"text": "Article"}, {"text": "II"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "requires"}, {"text": "the"}, {"text": "president"}, {"text": "to"}, {"text": "make"}, {"text": "recommendations"}, {"text": "to"}, {"text": "Congress"}, {"text": ","}, {"text": "but"}, {"text": "which"}, {"text": "*T*-41"}, {"text": "gives"}, {"text": "the"}, {"text": "president"}, {"text": "the"}, {"text": "discretion"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "select"}, {"text": "the"}, {"text": "subject"}, {"text": "matter"}, {"text": "of"}, {"text": "those"}, {"text": "recommendations"}, {"text": "*T*-2"}, {"text": "."}, {"text": "Typically"}, {"text": ","}, {"text": "these"}, {"text": "laws"}, {"text": "seek"}, {"text": "*-1"}, {"text": "to"}, {"text": "prevent"}, {"text": "executive"}, {"text": "branch"}, {"text": "officials"}, {"text": "from"}, {"text": "*-2"}, {"text": "inquiring"}, {"text": "into"}, {"text": "whether"}, {"text": "certain"}, {"text": "federal"}, {"text": "programs"}, {"text": "make"}, {"text": "any"}, {"text": "economic"}, {"text": "sense"}, {"text": "or"}, {"text": "proposing"}, {"text": "more"}, {"text": "market-oriented"}, {"text": "alternatives"}, {"text": "to"}, {"text": "regulations"}, {"text": "."}, {"text": "Probably"}, {"text": "the"}, {"text": "most"}, {"text": "egregious"}, {"text": "example"}, {"text": "is"}, {"text": "a"}, {"text": "proviso"}, {"text": "in"}, {"text": "the"}, {"text": "appropriations"}, {"text": "bill"}, {"text": "for"}, {"text": "the"}, {"text": "executive"}, {"text": "office"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "prevents"}, {"text": "the"}, {"text": "president"}, {"text": "'s"}, {"text": "Office"}, {"text": "of"}, {"text": "Management"}, {"text": "and"}, {"text": "Budget"}, {"text": "from"}, {"text": "*-2"}, {"text": "subjecting"}, {"text": "agricultural"}, {"text": "marketing"}, {"text": "orders"}, {"text": "to"}, {"text": "any"}, {"text": "cost-benefit"}, {"text": "scrutiny"}, {"text": "."}, {"text": "There"}, {"text": "is"}, {"text": "something"}, {"text": "inherently"}, {"text": "suspect"}, {"text": "about"}, {"text": "Congress"}, {"text": "'s"}, {"text": "prohibiting"}, {"text": "the"}, {"text": "executive"}, {"text": "from"}, {"text": "*-1"}, {"text": "even"}, {"text": "studying"}, {"text": "whether"}, {"text": "public"}, {"text": "funds"}, {"text": "are"}, {"text": "being"}, {"text": "wasted"}, {"text": "*-57"}, {"text": "in"}, {"text": "some"}, {"text": "favored"}, {"text": "program"}, {"text": "or"}, {"text": "other"}, {"text": "."}, {"text": "Perhaps"}, {"text": "none"}, {"text": "of"}, {"text": "the"}, {"text": "unconstitutional"}, {"text": "conditions"}, {"text": "contained"}, {"text": "*"}, {"text": "in"}, {"text": "the"}, {"text": "appropriations"}, {"text": "bills"}, {"text": "for"}, {"text": "fiscal"}, {"text": "1990"}, {"text": "better"}, {"text": "*ICH*-1"}, {"text": "illustrates"}, {"text": "Congress"}, {"text": "'s"}, {"text": "attempt"}, {"text": "*"}, {"text": "to"}, {"text": "usurp"}, {"text": "executive"}, {"text": "power"}, {"text": "than"}, {"text": "Section"}, {"text": "609"}, {"text": "of"}, {"text": "the"}, {"text": "executive-office"}, {"text": "bill"}, {"text": ":"}, {"text": "``"}, {"text": "None"}, {"text": "of"}, {"text": "the"}, {"text": "funds"}, {"text": "made"}, {"text": "*"}, {"text": "available"}, {"text": "pursuant"}, {"text": "to"}, {"text": "the"}, {"text": "provisions"}, {"text": "of"}, {"text": "this"}, {"text": "Act"}, {"text": "shall"}, {"text": "be"}, {"text": "used"}, {"text": "*-2"}, {"text": "*"}, {"text": "to"}, {"text": "implement"}, {"text": ","}, {"text": "administer"}, {"text": ","}, {"text": "or"}, {"text": "enforce"}, {"text": "any"}, {"text": "regulation"}, {"text": "which"}, {"text": "*T*-3"}, {"text": "has"}, {"text": "been"}, {"text": "disapproved"}, {"text": "*-58"}, {"text": "pursuant"}, {"text": "to"}, {"text": "a"}, {"text": "resolution"}, {"text": "of"}, {"text": "disapproval"}, {"text": "duly"}, {"text": "adopted"}, {"text": "*"}, {"text": "in"}, {"text": "accordance"}, {"text": "with"}, {"text": "the"}, {"text": "applicable"}, {"text": "law"}, {"text": "of"}, {"text": "the"}, {"text": "United"}, {"text": "States"}, {"text": "."}, {"text": "''"}, {"text": "This"}, {"text": "provision"}, {"text": "amounts"}, {"text": "to"}, {"text": "a"}, {"text": "legislative"}, {"text": "veto"}, {"text": "over"}, {"text": "the"}, {"text": "president"}, {"text": "'s"}, {"text": "execution"}, {"text": "of"}, {"text": "the"}, {"text": "law"}, {"text": ","}, {"text": "since"}, {"text": "a"}, {"text": "one-house"}, {"text": "resolution"}, {"text": "could"}, {"text": "be"}, {"text": "said"}, {"text": "*-1"}, {"text": "to"}, {"text": "be"}, {"text": "``"}, {"text": "duly"}, {"text": "adopted"}, {"text": "''"}, {"text": "even"}, {"text": "though"}, {"text": "it"}, {"text": "would"}, {"text": "require"}, {"text": "neither"}, {"text": "bicameral"}, {"text": "action"}, {"text": "in"}, {"text": "Congress"}, {"text": "nor"}, {"text": "presentation"}, {"text": "to"}, {"text": "the"}, {"text": "president"}, {"text": "for"}, {"text": "his"}, {"text": "signature"}, {"text": "or"}, {"text": "veto"}, {"text": "."}, {"text": "The"}, {"text": "Supreme"}, {"text": "Court"}, {"text": "'s"}, {"text": "decision"}, {"text": "in"}, {"text": "INS"}, {"text": "v."}, {"text": "Chadha"}, {"text": "held"}, {"text": "that"}, {"text": "legislative"}, {"text": "vetoes"}, {"text": "are"}, {"text": "unconstitutional"}, {"text": "."}, {"text": "President"}, {"text": "Bush"}, {"text": "should"}, {"text": "veto"}, {"text": "appropriations"}, {"text": "acts"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "contain"}, {"text": "these"}, {"text": "kinds"}, {"text": "of"}, {"text": "unconstitutional"}, {"text": "conditions"}, {"text": "on"}, {"text": "the"}, {"text": "president"}, {"text": "'s"}, {"text": "ability"}, {"text": "*"}, {"text": "to"}, {"text": "discharge"}, {"text": "his"}, {"text": "duties"}, {"text": "and"}, {"text": "exercise"}, {"text": "his"}, {"text": "prerogatives"}, {"text": "."}, {"text": "If"}, {"text": "President"}, {"text": "Bush"}, {"text": "fails"}, {"text": "*-1"}, {"text": "to"}, {"text": "do"}, {"text": "so"}, {"text": "in"}, {"text": "his"}, {"text": "first"}, {"text": "year"}, {"text": ","}, {"text": "he"}, {"text": "will"}, {"text": "invite"}, {"text": "Congress"}, {"text": ","}, {"text": "for"}, {"text": "the"}, {"text": "remainder"}, {"text": "of"}, {"text": "his"}, {"text": "presidency"}, {"text": ","}, {"text": "*-2"}, {"text": "to"}, {"text": "rewrite"}, {"text": "Article"}, {"text": "II"}, {"text": "of"}, {"text": "the"}, {"text": "Constitution"}, {"text": "*-3"}, {"text": "to"}, {"text": "suit"}, {"text": "its"}, {"text": "purposes"}, {"text": "."}, {"text": "What"}, {"text": "*T*-1"}, {"text": "becomes"}, {"text": "custom"}, {"text": "in"}, {"text": "the"}, {"text": "Bush"}, {"text": "administration"}, {"text": "will"}, {"text": "only"}, {"text": "become"}, {"text": "more"}, {"text": "difficult"}, {"text": "0"}, {"text": "for"}, {"text": "future"}, {"text": "presidents"}, {"text": ","}, {"text": "including"}, {"text": "Democrats"}, {"text": ","}, {"text": "to"}, {"text": "undo"}, {"text": "*T*-2"}, {"text": "."}, {"text": "President"}, {"text": "Reagan"}, {"text": "learned"}, {"text": "that"}, {"text": "lesson"}, {"text": "."}, {"text": "By"}, {"text": "1987"}, {"text": ","}, {"text": "then-Speaker"}, {"text": "Jim"}, {"text": "Wright"}, {"text": "was"}, {"text": "discussing"}, {"text": "arms"}, {"text": "control"}, {"text": "in"}, {"text": "Moscow"}, {"text": "with"}, {"text": "Mikhail"}, {"text": "Gorbachev"}, {"text": "and"}, {"text": "then"}, {"text": "attempting"}, {"text": "*-1"}, {"text": "to"}, {"text": "direct"}, {"text": "the"}, {"text": "president"}, {"text": ","}, {"text": "through"}, {"text": "an"}, {"text": "appropriations"}, {"text": "rider"}, {"text": ","}, {"text": "*-2"}, {"text": "to"}, {"text": "treat"}, {"text": "the"}, {"text": "Soviets"}, {"text": "as"}, {"text": "though"}, {"text": "the"}, {"text": "Senate"}, {"text": "had"}, {"text": "ratified"}, {"text": "SALT"}, {"text": "II"}, {"text": "."}, {"text": "If"}, {"text": "a"}, {"text": "veto"}, {"text": "is"}, {"text": "unworkable"}, {"text": "because"}, {"text": "it"}, {"text": "would"}, {"text": "leave"}, {"text": "part"}, {"text": "of"}, {"text": "the"}, {"text": "executive"}, {"text": "branch"}, {"text": "unfunded"}, {"text": ","}, {"text": "the"}, {"text": "president"}, {"text": "could"}, {"text": "sign"}, {"text": "the"}, {"text": "appropriations"}, {"text": "bills"}, {"text": "into"}, {"text": "law"}, {"text": "and"}, {"text": "assert"}, {"text": "a"}, {"text": "power"}, {"text": "of"}, {"text": "excision"}, {"text": ","}, {"text": "*-1"}, {"text": "declaring"}, {"text": "the"}, {"text": "rider"}, {"text": "restricting"}, {"text": "his"}, {"text": "Article"}, {"text": "II"}, {"text": "powers"}, {"text": "to"}, {"text": "be"}, {"text": "unconstitutional"}, {"text": "and"}, {"text": "severable"}, {"text": "."}, {"text": "The"}, {"text": "Constitution"}, {"text": "does"}, {"text": "not"}, {"text": "expressly"}, {"text": "give"}, {"text": "the"}, {"text": "president"}, {"text": "such"}, {"text": "power"}, {"text": "."}, {"text": "However"}, {"text": ","}, {"text": "the"}, {"text": "president"}, {"text": "does"}, {"text": "have"}, {"text": "a"}, {"text": "duty"}, {"text": "*"}, {"text": "not"}, {"text": "to"}, {"text": "violate"}, {"text": "the"}, {"text": "Constitution"}, {"text": "."}, {"text": "The"}, {"text": "question"}, {"text": "is"}, {"text": "whether"}, {"text": "his"}, {"text": "only"}, {"text": "means"}, {"text": "of"}, {"text": "defense"}, {"text": "is"}, {"text": "the"}, {"text": "veto"}, {"text": "."}, {"text": "Excision"}, {"text": "of"}, {"text": "appropriations"}, {"text": "riders"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "trespass"}, {"text": "on"}, {"text": "the"}, {"text": "president"}, {"text": "'s"}, {"text": "duties"}, {"text": "and"}, {"text": "prerogative"}, {"text": "under"}, {"text": "Article"}, {"text": "II"}, {"text": "would"}, {"text": "be"}, {"text": "different"}, {"text": "from"}, {"text": "the"}, {"text": "line-item"}, {"text": "veto"}, {"text": "."}, {"text": "As"}, {"text": "*"}, {"text": "discussed"}, {"text": "in"}, {"text": "the"}, {"text": "context"}, {"text": "of"}, {"text": "*"}, {"text": "controlling"}, {"text": "federal"}, {"text": "spending"}, {"text": ","}, {"text": "the"}, {"text": "line-item"}, {"text": "veto"}, {"text": "is"}, {"text": "characterized"}, {"text": "*-59"}, {"text": "as"}, {"text": "a"}, {"text": "way"}, {"text": "0"}, {"text": "for"}, {"text": "the"}, {"text": "president"}, {"text": "to"}, {"text": "excise"}, {"text": "perfectly"}, {"text": "constitutional"}, {"text": "provisions"}, {"text": "in"}, {"text": "a"}, {"text": "spending"}, {"text": "bill"}, {"text": "that"}, {"text": "*T*-2"}, {"text": "are"}, {"text": "objectionable"}, {"text": "merely"}, {"text": "because"}, {"text": "they"}, {"text": "conflict"}, {"text": "with"}, {"text": "his"}, {"text": "policy"}, {"text": "objectives"}, {"text": "*T*-1"}, {"text": "."}, {"text": "The"}, {"text": "excision"}, {"text": "of"}, {"text": "unconstitutional"}, {"text": "conditions"}, {"text": "in"}, {"text": "an"}, {"text": "appropriations"}, {"text": "bill"}, {"text": "would"}, {"text": "be"}, {"text": "a"}, {"text": "power"}, {"text": "of"}, {"text": "far"}, {"text": "more"}, {"text": "limited"}, {"text": "applicability"}, {"text": "."}, {"text": "One"}, {"text": "could"}, {"text": "argue"}, {"text": "that"}, {"text": "it"}, {"text": "*EXP*-1"}, {"text": "is"}, {"text": "not"}, {"text": "an"}, {"text": "assertion"}, {"text": "of"}, {"text": "a"}, {"text": "item"}, {"text": "veto"}, {"text": "at"}, {"text": "all"}, {"text": "for"}, {"text": "the"}, {"text": "president"}, {"text": ","}, {"text": "by"}, {"text": "*-2"}, {"text": "exerting"}, {"text": "a"}, {"text": "power"}, {"text": "of"}, {"text": "excision"}, {"text": ","}, {"text": "to"}, {"text": "resist"}, {"text": "unconstitutional"}, {"text": "conditions"}, {"text": "in"}, {"text": "legislation"}, {"text": "that"}, {"text": "*T*-3"}, {"text": "violate"}, {"text": "the"}, {"text": "separation"}, {"text": "of"}, {"text": "powers"}, {"text": "."}, {"text": "There"}, {"text": "is"}, {"text": "no"}, {"text": "downside"}, {"text": "if"}, {"text": "the"}, {"text": "president"}, {"text": "asserts"}, {"text": "a"}, {"text": "right"}, {"text": "of"}, {"text": "excision"}, {"text": "over"}, {"text": "unconstitutional"}, {"text": "conditions"}, {"text": "in"}, {"text": "the"}, {"text": "fiscal"}, {"text": "1990"}, {"text": "appropriations"}, {"text": "bills"}, {"text": "."}, {"text": "If"}, {"text": "Congress"}, {"text": "does"}, {"text": "nothing"}, {"text": ","}, {"text": "President"}, {"text": "Bush"}, {"text": "will"}, {"text": "have"}, {"text": "won"}, {"text": "."}, {"text": "If"}, {"text": "Congress"}, {"text": "takes"}, {"text": "the"}, {"text": "dispute"}, {"text": "to"}, {"text": "the"}, {"text": "Supreme"}, {"text": "Court"}, {"text": "-LRB-"}, {"text": "*-2"}, {"text": "assuming"}, {"text": "0"}, {"text": "it"}, {"text": "can"}, {"text": "establish"}, {"text": "standing"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "sue"}, {"text": "*T*-1"}, {"text": "-RRB-"}, {"text": ","}, {"text": "President"}, {"text": "Bush"}, {"text": "might"}, {"text": "win"}, {"text": "."}, {"text": "In"}, {"text": "that"}, {"text": "case"}, {"text": ","}, {"text": "he"}, {"text": "might"}, {"text": "receive"}, {"text": "an"}, {"text": "opinion"}, {"text": "*ICH*-2"}, {"text": "from"}, {"text": "the"}, {"text": "court"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "is"}, {"text": "a"}, {"text": "vindication"}, {"text": "of"}, {"text": "the"}, {"text": "president"}, {"text": "'s"}, {"text": "right"}, {"text": "*"}, {"text": "to"}, {"text": "perform"}, {"text": "the"}, {"text": "duties"}, {"text": "and"}, {"text": "exercise"}, {"text": "the"}, {"text": "prerogatives"}, {"text": "0"}, {"text": "the"}, {"text": "framers"}, {"text": "thought"}, {"text": "0"}, {"text": "*T*-3"}, {"text": "should"}, {"text": "be"}, {"text": "entrusted"}, {"text": "*-60"}, {"text": "to"}, {"text": "the"}, {"text": "executive"}, {"text": "."}, {"text": "If"}, {"text": "President"}, {"text": "Bush"}, {"text": "loses"}, {"text": "at"}, {"text": "the"}, {"text": "court"}, {"text": ","}, {"text": "it"}, {"text": "might"}, {"text": "be"}, {"text": "disappointing"}, {"text": ","}, {"text": "as"}, {"text": "Morrison"}, {"text": "v."}, {"text": "Olson"}, {"text": "was"}, {"text": "*?*"}, {"text": "for"}, {"text": "the"}, {"text": "Reagan"}, {"text": "administration"}, {"text": "."}, {"text": "But"}, {"text": "the"}, {"text": "presidency"}, {"text": "would"}, {"text": "be"}, {"text": "no"}, {"text": "worse"}, {"text": "off"}, {"text": "than"}, {"text": "it"}, {"text": "is"}, {"text": "*?*"}, {"text": "now"}, {"text": "."}, {"text": "Moreover"}, {"text": ","}, {"text": "the"}, {"text": "electorate"}, {"text": "would"}, {"text": "have"}, {"text": "received"}, {"text": "a"}, {"text": "valuable"}, {"text": "civics"}, {"text": "lesson"}, {"text": "in"}, {"text": "how"}, {"text": "the"}, {"text": "separation"}, {"text": "of"}, {"text": "powers"}, {"text": "works"}, {"text": "in"}, {"text": "practice"}, {"text": "*T*-1"}, {"text": "."}, {"text": "As"}, {"text": "it"}, {"text": "stands"}, {"text": "now"}, {"text": ","}, {"text": "Congress"}, {"text": "presumes"}, {"text": "after"}, {"text": "the"}, {"text": "Reagan"}, {"text": "administration"}, {"text": "that"}, {"text": "the"}, {"text": "White"}, {"text": "House"}, {"text": "will"}, {"text": "take"}, {"text": "unconstitutional"}, {"text": "provisions"}, {"text": "in"}, {"text": "appropriations"}, {"text": "bills"}, {"text": "*-1"}, {"text": "lying"}, {"text": "down"}, {"text": "."}, {"text": "President"}, {"text": "Bush"}, {"text": "should"}, {"text": "set"}, {"text": "things"}, {"text": "straight"}, {"text": "."}, {"text": "If"}, {"text": "he"}, {"text": "does"}, {"text": "not"}, {"text": ","}, {"text": "he"}, {"text": "will"}, {"text": "help"}, {"text": "*-1"}, {"text": "realize"}, {"text": "Madison"}, {"text": "'s"}, {"text": "fear"}, {"text": "in"}, {"text": "The"}, {"text": "Federalist"}, {"text": "No."}, {"text": "48"}, {"text": "of"}, {"text": "a"}, {"text": "legislature"}, {"text": "``"}, {"text": "everywhere"}, {"text": "extending"}, {"text": "the"}, {"text": "sphere"}, {"text": "of"}, {"text": "its"}, {"text": "activity"}, {"text": "and"}, {"text": "drawing"}, {"text": "all"}, {"text": "powers"}, {"text": "into"}, {"text": "its"}, {"text": "impetuous"}, {"text": "vortex"}, {"text": "."}, {"text": "''"}, {"text": "Mr."}, {"text": "Sidak"}, {"text": "served"}, {"text": "as"}, {"text": "an"}, {"text": "attorney"}, {"text": "in"}, {"text": "the"}, {"text": "Reagan"}, {"text": "administration"}, {"text": "."}, {"text": "His"}, {"text": "longer"}, {"text": "analysis"}, {"text": "of"}, {"text": "executive"}, {"text": "power"}, {"text": "and"}, {"text": "the"}, {"text": "appropriations"}, {"text": "clause"}, {"text": "is"}, {"text": "*-1"}, {"text": "to"}, {"text": "appear"}, {"text": "in"}, {"text": "the"}, {"text": "Duke"}, {"text": "Law"}, {"text": "Journal"}, {"text": "later"}, {"text": "this"}, {"text": "year"}, {"text": "."}, {"text": "Despite"}, {"text": "one"}, {"text": "of"}, {"text": "the"}, {"text": "most"}, {"text": "devastating"}, {"text": "droughts"}, {"text": "on"}, {"text": "record"}, {"text": ","}, {"text": "net"}, {"text": "cash"}, {"text": "income"}, {"text": "in"}, {"text": "the"}, {"text": "Farm"}, {"text": "Belt"}, {"text": "rose"}, {"text": "to"}, {"text": "a"}, {"text": "new"}, {"text": "high"}, {"text": "of"}, {"text": "$"}, {"text": "59.9"}, {"text": "billion"}, {"text": "*U*"}, {"text": "last"}, {"text": "year"}, {"text": "."}, {"text": "The"}, {"text": "previous"}, {"text": "record"}, {"text": "was"}, {"text": "$"}, {"text": "57.7"}, {"text": "billion"}, {"text": "*U*"}, {"text": "in"}, {"text": "1987"}, {"text": ","}, {"text": "according"}, {"text": "to"}, {"text": "the"}, {"text": "Agriculture"}, {"text": "Department"}, {"text": "."}, {"text": "Net"}, {"text": "cash"}, {"text": "income"}, {"text": "--"}, {"text": "the"}, {"text": "amount"}, {"text": "left"}, {"text": "*"}, {"text": "in"}, {"text": "farmers"}, {"text": "'"}, {"text": "pockets"}, {"text": "after"}, {"text": "*"}, {"text": "deducting"}, {"text": "expenses"}, {"text": "from"}, {"text": "gross"}, {"text": "cash"}, {"text": "income"}, {"text": "--"}, {"text": "increased"}, {"text": "in"}, {"text": "33"}, {"text": "states"}, {"text": "in"}, {"text": "1988"}, {"text": ","}, {"text": "as"}, {"text": "the"}, {"text": "drought"}, {"text": "cut"}, {"text": "into"}, {"text": "crop"}, {"text": "yields"}, {"text": "and"}, {"text": "drove"}, {"text": "up"}, {"text": "commodity"}, {"text": "prices"}, {"text": ","}, {"text": "the"}, {"text": "department"}, {"text": "'s"}, {"text": "Economic"}, {"text": "Research"}, {"text": "Service"}, {"text": "reported"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "yesterday"}, {"text": "."}, {"text": "Most"}, {"text": "of"}, {"text": "those"}, {"text": "states"}, {"text": "set"}, {"text": "farm"}, {"text": "income"}, {"text": "records"}, {"text": "."}, {"text": "The"}, {"text": "worst"}, {"text": "crop"}, {"text": "damage"}, {"text": "occurred"}, {"text": "in"}, {"text": "the"}, {"text": "Midwestern"}, {"text": "Corn"}, {"text": "Belt"}, {"text": "and"}, {"text": "the"}, {"text": "northern"}, {"text": "Great"}, {"text": "Plains"}, {"text": "."}, {"text": "What"}, {"text": "*T*-42"}, {"text": "saved"}, {"text": "many"}, {"text": "farmers"}, {"text": "from"}, {"text": "a"}, {"text": "bad"}, {"text": "year"}, {"text": "was"}, {"text": "the"}, {"text": "opportunity"}, {"text": "*"}, {"text": "to"}, {"text": "reclaim"}, {"text": "large"}, {"text": "quantities"}, {"text": "of"}, {"text": "grain"}, {"text": "and"}, {"text": "other"}, {"text": "crops"}, {"text": "that"}, {"text": "they"}, {"text": "had"}, {"text": "``"}, {"text": "mortgaged"}, {"text": "''"}, {"text": "*T*-1"}, {"text": "to"}, {"text": "the"}, {"text": "government"}, {"text": "under"}, {"text": "price-support"}, {"text": "loan"}, {"text": "programs"}, {"text": "."}, {"text": "With"}, {"text": "prices"}, {"text": "soaring"}, {"text": ","}, {"text": "they"}, {"text": "were"}, {"text": "able"}, {"text": "*-1"}, {"text": "to"}, {"text": "sell"}, {"text": "the"}, {"text": "reclaimed"}, {"text": "commodities"}, {"text": "at"}, {"text": "``"}, {"text": "considerable"}, {"text": "profit"}, {"text": ","}, {"text": "''"}, {"text": "the"}, {"text": "agency"}, {"text": "'s"}, {"text": "240-page"}, {"text": "report"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "."}, {"text": "In"}, {"text": "less"}, {"text": "parched"}, {"text": "areas"}, {"text": ","}, {"text": "meanwhile"}, {"text": ","}, {"text": "farmers"}, {"text": "who"}, {"text": "*T*-43"}, {"text": "had"}, {"text": "little"}, {"text": "or"}, {"text": "no"}, {"text": "loss"}, {"text": "of"}, {"text": "production"}, {"text": "profited"}, {"text": "greatly"}, {"text": "from"}, {"text": "the"}, {"text": "higher"}, {"text": "prices"}, {"text": "."}, {"text": "To"}, {"text": "the"}, {"text": "surprise"}, {"text": "of"}, {"text": "some"}, {"text": "analysts"}, {"text": ","}, {"text": "net"}, {"text": "cash"}, {"text": "income"}, {"text": "rose"}, {"text": "in"}, {"text": "some"}, {"text": "of"}, {"text": "the"}, {"text": "hardest-hit"}, {"text": "states"}, {"text": ","}, {"text": "including"}, {"text": "Indiana"}, {"text": ","}, {"text": "Illinois"}, {"text": ","}, {"text": "Nebraska"}, {"text": "and"}, {"text": "the"}, {"text": "Dakotas"}, {"text": "."}, {"text": "Analysts"}, {"text": "attributed"}, {"text": "the"}, {"text": "increases"}, {"text": "partly"}, {"text": "to"}, {"text": "the"}, {"text": "$"}, {"text": "4"}, {"text": "billion"}, {"text": "*U*"}, {"text": "disaster-assistance"}, {"text": "package"}, {"text": "enacted"}, {"text": "*"}, {"text": "by"}, {"text": "Congress"}, {"text": "."}, {"text": "Last"}, {"text": "year"}, {"text": "'s"}, {"text": "record"}, {"text": "net"}, {"text": "cash"}, {"text": "income"}, {"text": "confirms"}, {"text": "the"}, {"text": "farm"}, {"text": "sector"}, {"text": "'s"}, {"text": "rebound"}, {"text": "from"}, {"text": "the"}, {"text": "agricultural"}, {"text": "depression"}, {"text": "of"}, {"text": "the"}, {"text": "early"}, {"text": "1980s"}, {"text": "."}, {"text": "It"}, {"text": "also"}, {"text": "helps"}, {"text": "*-2"}, {"text": "explain"}, {"text": "the"}, {"text": "reluctance"}, {"text": "*ICH*-1"}, {"text": "of"}, {"text": "the"}, {"text": "major"}, {"text": "farm"}, {"text": "lobbies"}, {"text": "and"}, {"text": "many"}, {"text": "lawmakers"}, {"text": "*"}, {"text": "to"}, {"text": "make"}, {"text": "any"}, {"text": "significant"}, {"text": "changes"}, {"text": "in"}, {"text": "the"}, {"text": "1985"}, {"text": "farm"}, {"text": "program"}, {"text": "next"}, {"text": "year"}, {"text": "."}, {"text": "Commodity"}, {"text": "prices"}, {"text": "have"}, {"text": "been"}, {"text": "rising"}, {"text": "in"}, {"text": "recent"}, {"text": "years"}, {"text": ","}, {"text": "with"}, {"text": "the"}, {"text": "farm"}, {"text": "price"}, {"text": "index"}, {"text": "hitting"}, {"text": "record"}, {"text": "peaks"}, {"text": "earlier"}, {"text": "this"}, {"text": "year"}, {"text": ","}, {"text": "as"}, {"text": "the"}, {"text": "government"}, {"text": "curtailed"}, {"text": "production"}, {"text": "with"}, {"text": "land-idling"}, {"text": "programs"}, {"text": "*-1"}, {"text": "to"}, {"text": "reduce"}, {"text": "price-depressing"}, {"text": "surpluses"}, {"text": "."}, {"text": "At"}, {"text": "the"}, {"text": "same"}, {"text": "time"}, {"text": ","}, {"text": "export"}, {"text": "demand"}, {"text": "for"}, {"text": "U.S."}, {"text": "wheat"}, {"text": ","}, {"text": "corn"}, {"text": "and"}, {"text": "other"}, {"text": "commodities"}, {"text": "strengthened"}, {"text": ","}, {"text": "said"}, {"text": "*T*-1"}, {"text": "Keith"}, {"text": "Collins"}, {"text": ","}, {"text": "a"}, {"text": "department"}, {"text": "analyst"}, {"text": "."}, {"text": "Farmers"}, {"text": "also"}, {"text": "benefited"}, {"text": "from"}, {"text": "strong"}, {"text": "livestock"}, {"text": "prices"}, {"text": ","}, {"text": "as"}, {"text": "the"}, {"text": "nation"}, {"text": "'s"}, {"text": "cattle"}, {"text": "inventory"}, {"text": "dropped"}, {"text": "close"}, {"text": "to"}, {"text": "a"}, {"text": "30-year"}, {"text": "low"}, {"text": "."}, {"text": "``"}, {"text": "All"}, {"text": "of"}, {"text": "these"}, {"text": "forces"}, {"text": "came"}, {"text": "together"}, {"text": "in"}, {"text": "1988"}, {"text": "*"}, {"text": "to"}, {"text": "benefit"}, {"text": "agriculture"}, {"text": ","}, {"text": "''"}, {"text": "Mr."}, {"text": "Collins"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "."}, {"text": "California"}, {"text": "led"}, {"text": "the"}, {"text": "nation"}, {"text": "with"}, {"text": "$"}, {"text": "6.5"}, {"text": "billion"}, {"text": "*U*"}, {"text": "in"}, {"text": "net"}, {"text": "cash"}, {"text": "income"}, {"text": "last"}, {"text": "year"}, {"text": ","}, {"text": "followed"}, {"text": "by"}, {"text": "Texas"}, {"text": ","}, {"text": "$"}, {"text": "3.9"}, {"text": "billion"}, {"text": "*U*"}, {"text": ";"}, {"text": "Iowa"}, {"text": ","}, {"text": "$"}, {"text": "3.4"}, {"text": "billion"}, {"text": "*U*"}, {"text": ";"}, {"text": "Florida"}, {"text": ","}, {"text": "$"}, {"text": "3.1"}, {"text": "billion"}, {"text": "*U*"}, {"text": ";"}, {"text": "and"}, {"text": "Minnesota"}, {"text": ","}, {"text": "$"}, {"text": "2.7"}, {"text": "billion"}, {"text": "*U*"}, {"text": "."}, {"text": "Iowa"}, {"text": "and"}, {"text": "Minnesota"}, {"text": "were"}, {"text": "among"}, {"text": "the"}, {"text": "few"}, {"text": "major"}, {"text": "farm"}, {"text": "states"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "to"}, {"text": "log"}, {"text": "a"}, {"text": "decline"}, {"text": "in"}, {"text": "net"}, {"text": "cash"}, {"text": "income"}, {"text": "."}, {"text": "Despite"}, {"text": "federal"}, {"text": "disaster"}, {"text": "relief"}, {"text": ","}, {"text": "the"}, {"text": "drought"}, {"text": "of"}, {"text": "1988"}, {"text": "was"}, {"text": "a"}, {"text": "severe"}, {"text": "financial"}, {"text": "setback"}, {"text": "for"}, {"text": "an"}, {"text": "estimated"}, {"text": "10,000"}, {"text": "to"}, {"text": "15,000"}, {"text": "farmers"}, {"text": ","}, {"text": "according"}, {"text": "to"}, {"text": "the"}, {"text": "department"}, {"text": "."}, {"text": "Many"}, {"text": "lost"}, {"text": "their"}, {"text": "farms"}, {"text": "."}, {"text": "Department"}, {"text": "economists"}, {"text": "do"}, {"text": "n't"}, {"text": "expect"}, {"text": "1989"}, {"text": "to"}, {"text": "be"}, {"text": "as"}, {"text": "good"}, {"text": "a"}, {"text": "year"}, {"text": "as"}, {"text": "1988"}, {"text": "was"}, {"text": "*?*"}, {"text": "."}, {"text": "Indeed"}, {"text": ","}, {"text": "net"}, {"text": "cash"}, {"text": "income"}, {"text": "is"}, {"text": "likely"}, {"text": "*-1"}, {"text": "to"}, {"text": "fall"}, {"text": "this"}, {"text": "year"}, {"text": "as"}, {"text": "farm"}, {"text": "expenses"}, {"text": "rise"}, {"text": "and"}, {"text": "government"}, {"text": "payments"}, {"text": "to"}, {"text": "farmers"}, {"text": "decline"}, {"text": "."}, {"text": "At"}, {"text": "the"}, {"text": "same"}, {"text": "time"}, {"text": ","}, {"text": "an"}, {"text": "increase"}, {"text": "of"}, {"text": "land"}, {"text": "under"}, {"text": "cultivation"}, {"text": "after"}, {"text": "the"}, {"text": "drought"}, {"text": "has"}, {"text": "boosted"}, {"text": "production"}, {"text": "of"}, {"text": "corn"}, {"text": ","}, {"text": "soybeans"}, {"text": "and"}, {"text": "other"}, {"text": "commodities"}, {"text": ","}, {"text": "*"}, {"text": "causing"}, {"text": "a"}, {"text": "fall"}, {"text": "in"}, {"text": "prices"}, {"text": "that"}, {"text": "*T*-2"}, {"text": "has"}, {"text": "been"}, {"text": "only"}, {"text": "partly"}, {"text": "cushioned"}, {"text": "*-3"}, {"text": "by"}, {"text": "heavy"}, {"text": "grain"}, {"text": "buying"}, {"text": "by"}, {"text": "the"}, {"text": "Soviets"}, {"text": "."}, {"text": "Last"}, {"text": "year"}, {"text": ","}, {"text": "government"}, {"text": "payments"}, {"text": "to"}, {"text": "farmers"}, {"text": "slipped"}, {"text": "to"}, {"text": "less"}, {"text": "than"}, {"text": "$"}, {"text": "14.5"}, {"text": "billion"}, {"text": "*U*"}, {"text": "from"}, {"text": "a"}, {"text": "record"}, {"text": "$"}, {"text": "16.7"}, {"text": "billion"}, {"text": "*U*"}, {"text": "in"}, {"text": "1987"}, {"text": "."}, {"text": "Payments"}, {"text": "are"}, {"text": "expected"}, {"text": "*-1"}, {"text": "to"}, {"text": "range"}, {"text": "between"}, {"text": "$"}, {"text": "9"}, {"text": "billion"}, {"text": "*U*"}, {"text": "and"}, {"text": "$"}, {"text": "12"}, {"text": "billion"}, {"text": "*U*"}, {"text": "this"}, {"text": "year"}, {"text": "."}, {"text": "After"}, {"text": "years"}, {"text": "of"}, {"text": "struggling"}, {"text": ","}, {"text": "the"}, {"text": "Los"}, {"text": "Angeles"}, {"text": "Herald"}, {"text": "Examiner"}, {"text": "will"}, {"text": "publish"}, {"text": "its"}, {"text": "last"}, {"text": "edition"}, {"text": "today"}, {"text": ","}, {"text": "*-1"}, {"text": "shut"}, {"text": "down"}, {"text": "by"}, {"text": "its"}, {"text": "parent"}, {"text": ","}, {"text": "Hearst"}, {"text": "Corp."}, {"text": ","}, {"text": "following"}, {"text": "unsuccessful"}, {"text": "efforts"}, {"text": "*"}, {"text": "to"}, {"text": "sell"}, {"text": "the"}, {"text": "venerable"}, {"text": "newspaper"}, {"text": "."}, {"text": "The"}, {"text": "demise"}, {"text": "of"}, {"text": "the"}, {"text": "238,000-circulation"}, {"text": "Herald"}, {"text": ","}, {"text": "once"}, {"text": "the"}, {"text": "nation"}, {"text": "'s"}, {"text": "largest"}, {"text": "afternoon"}, {"text": "newspaper"}, {"text": "with"}, {"text": "circulation"}, {"text": "exceeding"}, {"text": "700,000"}, {"text": ","}, {"text": "turns"}, {"text": "the"}, {"text": "country"}, {"text": "'s"}, {"text": "second-largest"}, {"text": "city"}, {"text": "into"}, {"text": "a"}, {"text": "one-newspaper"}, {"text": "town"}, {"text": ","}, {"text": "at"}, {"text": "least"}, {"text": "in"}, {"text": "some"}, {"text": "senses"}, {"text": "."}, {"text": "The"}, {"text": "Los"}, {"text": "Angeles"}, {"text": "Times"}, {"text": ","}, {"text": "with"}, {"text": "a"}, {"text": "circulation"}, {"text": "of"}, {"text": "more"}, {"text": "than"}, {"text": "1.1"}, {"text": "million"}, {"text": ","}, {"text": "dominates"}, {"text": "the"}, {"text": "region"}, {"text": "."}, {"text": "But"}, {"text": "it"}, {"text": "faces"}, {"text": "stiff"}, {"text": "competition"}, {"text": "in"}, {"text": "Orange"}, {"text": "County"}, {"text": "from"}, {"text": "the"}, {"text": "Orange"}, {"text": "County"}, {"text": "Register"}, {"text": ","}, {"text": "which"}, {"text": "*T*-44"}, {"text": "sells"}, {"text": "more"}, {"text": "than"}, {"text": "300,000"}, {"text": "copies"}, {"text": "a"}, {"text": "day"}, {"text": ","}, {"text": "and"}, {"text": "in"}, {"text": "the"}, {"text": "San"}, {"text": "Fernando"}, {"text": "Valley"}, {"text": "from"}, {"text": "the"}, {"text": "Los"}, {"text": "Angeles"}, {"text": "Daily"}, {"text": "News"}, {"text": ","}, {"text": "which"}, {"text": "*T*-45"}, {"text": "sells"}, {"text": "more"}, {"text": "than"}, {"text": "170,000"}, {"text": "."}, {"text": "Nearby"}, {"text": "cities"}, {"text": "such"}, {"text": "as"}, {"text": "Pasadena"}, {"text": "and"}, {"text": "Long"}, {"text": "Beach"}, {"text": "also"}, {"text": "have"}, {"text": "large"}, {"text": "dailies"}, {"text": "."}, {"text": "In"}, {"text": "July"}, {"text": ","}, {"text": "closely"}, {"text": "held"}, {"text": "Hearst"}, {"text": ","}, {"text": "based"}, {"text": "*"}, {"text": "in"}, {"text": "New"}, {"text": "York"}, {"text": ","}, {"text": "put"}, {"text": "the"}, {"text": "paper"}, {"text": "on"}, {"text": "the"}, {"text": "block"}, {"text": "."}, {"text": "Speculation"}, {"text": "had"}, {"text": "it"}, {"text": "that"}, {"text": "the"}, {"text": "company"}, {"text": "was"}, {"text": "asking"}, {"text": "$"}, {"text": "100"}, {"text": "million"}, {"text": "*U*"}, {"text": "for"}, {"text": "an"}, {"text": "operation"}, {"text": "said"}, {"text": "*"}, {"text": "to"}, {"text": "be"}, {"text": "losing"}, {"text": "about"}, {"text": "$"}, {"text": "20"}, {"text": "million"}, {"text": "*U*"}, {"text": "a"}, {"text": "year"}, {"text": ","}, {"text": "but"}, {"text": "others"}, {"text": "said"}, {"text": "0"}, {"text": "Hearst"}, {"text": "might"}, {"text": "have"}, {"text": "virtually"}, {"text": "given"}, {"text": "the"}, {"text": "paper"}, {"text": "away"}, {"text": "."}, {"text": "An"}, {"text": "attempted"}, {"text": "buy-out"}, {"text": "led"}, {"text": "*"}, {"text": "by"}, {"text": "John"}, {"text": "J."}, {"text": "McCabe"}, {"text": ","}, {"text": "chief"}, {"text": "operating"}, {"text": "officer"}, {"text": ","}, {"text": "never"}, {"text": "materialized"}, {"text": ","}, {"text": "and"}, {"text": "a"}, {"text": "stream"}, {"text": "of"}, {"text": "what"}, {"text": "one"}, {"text": "staff"}, {"text": "member"}, {"text": "dismissed"}, {"text": "*T*-1"}, {"text": "as"}, {"text": "``"}, {"text": "tire-kickers"}, {"text": "and"}, {"text": "lookee-loos"}, {"text": "''"}, {"text": "had"}, {"text": "filed"}, {"text": "through"}, {"text": "since"}, {"text": "."}, {"text": "The"}, {"text": "prospective"}, {"text": "buyers"}, {"text": "included"}, {"text": "investor"}, {"text": "Marvin"}, {"text": "Davis"}, {"text": "and"}, {"text": "the"}, {"text": "Toronto"}, {"text": "Sun"}, {"text": "."}, {"text": "The"}, {"text": "death"}, {"text": "of"}, {"text": "the"}, {"text": "Herald"}, {"text": ","}, {"text": "a"}, {"text": "newsstand"}, {"text": "paper"}, {"text": "in"}, {"text": "a"}, {"text": "freeway"}, {"text": "town"}, {"text": ","}, {"text": "was"}, {"text": "perhaps"}, {"text": "inevitable"}, {"text": "."}, {"text": "Los"}, {"text": "Angeles"}, {"text": "is"}, {"text": "a"}, {"text": "sprawling"}, {"text": ","}, {"text": "balkanized"}, {"text": "newspaper"}, {"text": "market"}, {"text": ","}, {"text": "and"}, {"text": "advertisers"}, {"text": "seemed"}, {"text": "*-1"}, {"text": "to"}, {"text": "feel"}, {"text": "0"}, {"text": "they"}, {"text": "could"}, {"text": "buy"}, {"text": "space"}, {"text": "in"}, {"text": "the"}, {"text": "mammoth"}, {"text": "Times"}, {"text": ","}, {"text": "then"}, {"text": "target"}, {"text": "a"}, {"text": "particular"}, {"text": "area"}, {"text": "with"}, {"text": "one"}, {"text": "of"}, {"text": "the"}, {"text": "regional"}, {"text": "dailies"}, {"text": "."}, {"text": "The"}, {"text": "Herald"}, {"text": "was"}, {"text": "left"}, {"text": "*-61"}, {"text": "in"}, {"text": "limbo"}, {"text": "."}, {"text": "Further"}, {"text": ","}, {"text": "the"}, {"text": "Herald"}, {"text": "seemed"}, {"text": "*-1"}, {"text": "torn"}, {"text": "editorially"}, {"text": "between"}, {"text": "*-3"}, {"text": "keeping"}, {"text": "its"}, {"text": "old-time"}, {"text": "Hearst"}, {"text": "readership"}, {"text": "--"}, {"text": "blue-collar"}, {"text": "and"}, {"text": "sports-oriented"}, {"text": "--"}, {"text": "and"}, {"text": "trying"}, {"text": "*-2"}, {"text": "to"}, {"text": "provide"}, {"text": "a"}, {"text": "sprightly"}, {"text": ","}, {"text": "upscale"}, {"text": "alternative"}, {"text": "to"}, {"text": "the"}, {"text": "sometimes"}, {"text": "staid"}, {"text": "Times"}, {"text": "."}, {"text": "Hearst"}, {"text": "had"}, {"text": "flirted"}, {"text": "with"}, {"text": "a"}, {"text": "conversion"}, {"text": "to"}, {"text": "tabloid"}, {"text": "format"}, {"text": "for"}, {"text": "years"}, {"text": "but"}, {"text": "never"}, {"text": "executed"}, {"text": "the"}, {"text": "plan"}, {"text": "."}, {"text": "The"}, {"text": "Herald"}, {"text": "joins"}, {"text": "the"}, {"text": "Baltimore"}, {"text": "News-American"}, {"text": ","}, {"text": "which"}, {"text": "*T*-46"}, {"text": "folded"}, {"text": ","}, {"text": "and"}, {"text": "the"}, {"text": "Boston"}, {"text": "Herald-American"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "was"}, {"text": "sold"}, {"text": "*-62"}, {"text": ","}, {"text": "as"}, {"text": "cornerstones"}, {"text": "of"}, {"text": "the"}, {"text": "old"}, {"text": "Hearst"}, {"text": "newspaper"}, {"text": "empire"}, {"text": "abandoned"}, {"text": "*"}, {"text": "by"}, {"text": "the"}, {"text": "company"}, {"text": "in"}, {"text": "the"}, {"text": "1980s"}, {"text": "."}, {"text": "Many"}, {"text": "felt"}, {"text": "0"}, {"text": "Hearst"}, {"text": "kept"}, {"text": "the"}, {"text": "paper"}, {"text": "alive"}, {"text": "as"}, {"text": "long"}, {"text": "as"}, {"text": "it"}, {"text": "did"}, {"text": ","}, {"text": "if"}, {"text": "marginally"}, {"text": ","}, {"text": "because"}, {"text": "of"}, {"text": "its"}, {"text": "place"}, {"text": "in"}, {"text": "family"}, {"text": "history"}, {"text": "."}, {"text": "Its"}, {"text": "fanciful"}, {"text": "offices"}, {"text": "were"}, {"text": "designed"}, {"text": "*-63"}, {"text": "by"}, {"text": "architect"}, {"text": "Julia"}, {"text": "Morgan"}, {"text": ","}, {"text": "who"}, {"text": "*T*-47"}, {"text": "built"}, {"text": "the"}, {"text": "Hearst"}, {"text": "castle"}, {"text": "at"}, {"text": "San"}, {"text": "Simeon"}, {"text": "."}, {"text": "William"}, {"text": "Randolph"}, {"text": "Hearst"}, {"text": "had"}, {"text": "kept"}, {"text": "an"}, {"text": "apartment"}, {"text": "in"}, {"text": "the"}, {"text": "Spanish"}, {"text": "Renaissance-style"}, {"text": "building"}, {"text": "."}, {"text": "Analysts"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "Herald"}, {"text": "'s"}, {"text": "demise"}, {"text": "does"}, {"text": "n't"}, {"text": "necessarily"}, {"text": "represent"}, {"text": "the"}, {"text": "overall"}, {"text": "condition"}, {"text": "of"}, {"text": "the"}, {"text": "newspaper"}, {"text": "industry"}, {"text": "."}, {"text": "``"}, {"text": "The"}, {"text": "Herald"}, {"text": "was"}, {"text": "a"}, {"text": "survivor"}, {"text": "from"}, {"text": "a"}, {"text": "bygone"}, {"text": "age"}, {"text": ","}, {"text": "''"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "J."}, {"text": "Kendrick"}, {"text": "Noble"}, {"text": ","}, {"text": "a"}, {"text": "media"}, {"text": "analyst"}, {"text": "with"}, {"text": "PaineWebber"}, {"text": "Inc"}, {"text": "."}, {"text": "``"}, {"text": "Actually"}, {"text": ","}, {"text": "the"}, {"text": "long"}, {"text": "deterioration"}, {"text": "in"}, {"text": "daily"}, {"text": "newspapers"}, {"text": "shows"}, {"text": "signs"}, {"text": "of"}, {"text": "*"}, {"text": "coming"}, {"text": "to"}, {"text": "an"}, {"text": "end"}, {"text": ","}, {"text": "and"}, {"text": "the"}, {"text": "industry"}, {"text": "looks"}, {"text": "pretty"}, {"text": "healthy"}, {"text": "."}, {"text": "''"}, {"text": "*-64"}, {"text": "Founded"}, {"text": "as"}, {"text": "the"}, {"text": "Examiner"}, {"text": "in"}, {"text": "1903"}, {"text": "by"}, {"text": "Mr."}, {"text": "Hearst"}, {"text": ","}, {"text": "the"}, {"text": "Herald"}, {"text": "was"}, {"text": "crippled"}, {"text": "*-64"}, {"text": "by"}, {"text": "a"}, {"text": "bitter"}, {"text": ","}, {"text": "decade-long"}, {"text": "strike"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "began"}, {"text": "in"}, {"text": "1967"}, {"text": "and"}, {"text": "cut"}, {"text": "circulation"}, {"text": "in"}, {"text": "half"}, {"text": "."}, {"text": "Financially"}, {"text": ","}, {"text": "it"}, {"text": "never"}, {"text": "recovered"}, {"text": ";"}, {"text": "editorially"}, {"text": ","}, {"text": "it"}, {"text": "had"}, {"text": "its"}, {"text": "moments"}, {"text": "."}, {"text": "In"}, {"text": "1979"}, {"text": ","}, {"text": "Hearst"}, {"text": "hired"}, {"text": "editor"}, {"text": "James"}, {"text": "Bellows"}, {"text": ","}, {"text": "who"}, {"text": "*T*-48"}, {"text": "brightened"}, {"text": "the"}, {"text": "editorial"}, {"text": "product"}, {"text": "considerably"}, {"text": "."}, {"text": "He"}, {"text": "and"}, {"text": "his"}, {"text": "successor"}, {"text": ","}, {"text": "Mary"}, {"text": "Anne"}, {"text": "Dolan"}, {"text": ","}, {"text": "restored"}, {"text": "respect"}, {"text": "for"}, {"text": "the"}, {"text": "editorial"}, {"text": "product"}, {"text": ","}, {"text": "and"}, {"text": "though"}, {"text": "in"}, {"text": "recent"}, {"text": "years"}, {"text": "the"}, {"text": "paper"}, {"text": "had"}, {"text": "been"}, {"text": "limping"}, {"text": "along"}, {"text": "on"}, {"text": "limited"}, {"text": "resources"}, {"text": ","}, {"text": "its"}, {"text": "accomplishments"}, {"text": "were"}, {"text": "notable"}, {"text": "."}, {"text": "For"}, {"text": "example"}, {"text": ","}, {"text": "the"}, {"text": "Herald"}, {"text": "consistently"}, {"text": "beat"}, {"text": "its"}, {"text": "much-larger"}, {"text": "rival"}, {"text": "on"}, {"text": "disclosures"}, {"text": "about"}, {"text": "Los"}, {"text": "Angeles"}, {"text": "Mayor"}, {"text": "Tom"}, {"text": "Bradley"}, {"text": "'s"}, {"text": "financial"}, {"text": "dealings"}, {"text": "."}, {"text": "The"}, {"text": "Herald"}, {"text": "'s"}, {"text": "sports"}, {"text": "coverage"}, {"text": "and"}, {"text": "arts"}, {"text": "criticism"}, {"text": "were"}, {"text": "also"}, {"text": "highly"}, {"text": "regarded"}, {"text": "."}, {"text": "Robert"}, {"text": "J."}, {"text": "Danzig"}, {"text": ","}, {"text": "vice"}, {"text": "president"}, {"text": "*RNR*-1"}, {"text": "and"}, {"text": "general"}, {"text": "manager"}, {"text": "*RNR*-1"}, {"text": "of"}, {"text": "Hearst"}, {"text": "Newspapers"}, {"text": ","}, {"text": "stood"}, {"text": "up"}, {"text": "in"}, {"text": "the"}, {"text": "paper"}, {"text": "'s"}, {"text": "newsroom"}, {"text": "yesterday"}, {"text": "and"}, {"text": "announced"}, {"text": "that"}, {"text": "no"}, {"text": "buyers"}, {"text": "had"}, {"text": "stepped"}, {"text": "forward"}, {"text": "and"}, {"text": "that"}, {"text": "the"}, {"text": "paper"}, {"text": "would"}, {"text": "fold"}, {"text": ","}, {"text": "*-2"}, {"text": "putting"}, {"text": "more"}, {"text": "than"}, {"text": "730"}, {"text": "full-time"}, {"text": "employees"}, {"text": "out"}, {"text": "of"}, {"text": "work"}, {"text": "."}, {"text": "Hearst"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "would"}, {"text": "provide"}, {"text": "employees"}, {"text": "with"}, {"text": "a"}, {"text": "placement"}, {"text": "service"}, {"text": "and"}, {"text": "pay"}, {"text": "them"}, {"text": "for"}, {"text": "60"}, {"text": "days"}, {"text": "."}, {"text": "Some"}, {"text": "long-tenured"}, {"text": "employees"}, {"text": "will"}, {"text": "receive"}, {"text": "additional"}, {"text": "benefits"}, {"text": ","}, {"text": "the"}, {"text": "company"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Hours"}, {"text": "after"}, {"text": "the"}, {"text": "announcement"}, {"text": ","}, {"text": "representatives"}, {"text": "of"}, {"text": "the"}, {"text": "Orange"}, {"text": "County"}, {"text": "Register"}, {"text": "were"}, {"text": "in"}, {"text": "a"}, {"text": "bar"}, {"text": "across"}, {"text": "the"}, {"text": "street"}, {"text": "*-1"}, {"text": "recruiting"}, {"text": "."}, {"text": "The"}, {"text": "reaction"}, {"text": "in"}, {"text": "the"}, {"text": "newsroom"}, {"text": "was"}, {"text": "emotional"}, {"text": "."}, {"text": "``"}, {"text": "I"}, {"text": "'ve"}, {"text": "never"}, {"text": "seen"}, {"text": "so"}, {"text": "many"}, {"text": "people"}, {"text": "crying"}, {"text": "in"}, {"text": "one"}, {"text": "place"}, {"text": "at"}, {"text": "one"}, {"text": "time"}, {"text": ","}, {"text": "''"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "Bill"}, {"text": "Johnson"}, {"text": ","}, {"text": "an"}, {"text": "assistant"}, {"text": "city"}, {"text": "editor"}, {"text": "."}, {"text": "``"}, {"text": "So"}, {"text": "Long"}, {"text": ","}, {"text": "L.A."}, {"text": "''"}, {"text": "was"}, {"text": "chosen"}, {"text": "*-1"}, {"text": "as"}, {"text": "the"}, {"text": "paper"}, {"text": "'s"}, {"text": "final"}, {"text": "headline"}, {"text": "."}, {"text": "``"}, {"text": "I"}, {"text": "'m"}, {"text": "doing"}, {"text": "the"}, {"text": "main"}, {"text": "story"}, {"text": ","}, {"text": "and"}, {"text": "I"}, {"text": "'m"}, {"text": "already"}, {"text": "two"}, {"text": "beers"}, {"text": "drunk"}, {"text": ","}, {"text": "''"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "reporter"}, {"text": "Andy"}, {"text": "Furillo"}, {"text": ","}, {"text": "whom"}, {"text": "the"}, {"text": "Times"}, {"text": "hired"}, {"text": "*T*-50"}, {"text": "away"}, {"text": "several"}, {"text": "years"}, {"text": "ago"}, {"text": "but"}, {"text": "who"}, {"text": "*T*-49"}, {"text": "returned"}, {"text": "to"}, {"text": "the"}, {"text": "Herald"}, {"text": "out"}, {"text": "of"}, {"text": "preference"}, {"text": "."}, {"text": "His"}, {"text": "wife"}, {"text": "also"}, {"text": "works"}, {"text": "for"}, {"text": "the"}, {"text": "paper"}, {"text": ","}, {"text": "as"}, {"text": "did"}, {"text": "his"}, {"text": "father"}, {"text": "."}, {"text": "Outside"}, {"text": ","}, {"text": "a"}, {"text": "young"}, {"text": "pressman"}, {"text": "filling"}, {"text": "a"}, {"text": "news"}, {"text": "box"}, {"text": "with"}, {"text": "an"}, {"text": "extra"}, {"text": "edition"}, {"text": "headlined"}, {"text": "*"}, {"text": "``"}, {"text": "Herald"}, {"text": "Examiner"}, {"text": "Closes"}, {"text": "''"}, {"text": "refused"}, {"text": "*-1"}, {"text": "to"}, {"text": "take"}, {"text": "a"}, {"text": "reader"}, {"text": "'s"}, {"text": "quarter"}, {"text": "."}, {"text": "``"}, {"text": "*"}, {"text": "Forget"}, {"text": "it"}, {"text": ","}, {"text": "''"}, {"text": "he"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "as"}, {"text": "he"}, {"text": "handed"}, {"text": "her"}, {"text": "a"}, {"text": "paper"}, {"text": "."}, {"text": "``"}, {"text": "It"}, {"text": "does"}, {"text": "n't"}, {"text": "make"}, {"text": "any"}, {"text": "difference"}, {"text": "now"}, {"text": "."}, {"text": "Olympia"}, {"text": "Broadcasting"}, {"text": "Corp."}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "did"}, {"text": "n't"}, {"text": "make"}, {"text": "a"}, {"text": "$"}, {"text": "1.64"}, {"text": "million"}, {"text": "*U*"}, {"text": "semiannual"}, {"text": "interest"}, {"text": "payment"}, {"text": "due"}, {"text": "yesterday"}, {"text": "on"}, {"text": "$"}, {"text": "23.4"}, {"text": "million"}, {"text": "*U*"}, {"text": "of"}, {"text": "senior"}, {"text": "subordinated"}, {"text": "debentures"}, {"text": "."}, {"text": "The"}, {"text": "radio-station"}, {"text": "owner"}, {"text": "and"}, {"text": "programmer"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "was"}, {"text": "trying"}, {"text": "*-1"}, {"text": "to"}, {"text": "obtain"}, {"text": "additional"}, {"text": "working"}, {"text": "capital"}, {"text": "from"}, {"text": "its"}, {"text": "senior"}, {"text": "secured"}, {"text": "lenders"}, {"text": "and"}, {"text": "other"}, {"text": "financial"}, {"text": "institutions"}, {"text": "."}, {"text": "It"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "needs"}, {"text": "*-1"}, {"text": "to"}, {"text": "make"}, {"text": "the"}, {"text": "payment"}, {"text": "by"}, {"text": "Dec."}, {"text": "1"}, {"text": "*-1"}, {"text": "to"}, {"text": "avoid"}, {"text": "a"}, {"text": "default"}, {"text": "that"}, {"text": "*T*-2"}, {"text": "could"}, {"text": "lead"}, {"text": "to"}, {"text": "an"}, {"text": "acceleration"}, {"text": "of"}, {"text": "the"}, {"text": "debt"}, {"text": "."}, {"text": "In"}, {"text": "September"}, {"text": ","}, {"text": "the"}, {"text": "company"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "was"}, {"text": "seeking"}, {"text": "offers"}, {"text": "for"}, {"text": "its"}, {"text": "five"}, {"text": "radio"}, {"text": "stations"}, {"text": "in"}, {"text": "order"}, {"text": "*-1"}, {"text": "to"}, {"text": "concentrate"}, {"text": "on"}, {"text": "its"}, {"text": "programming"}, {"text": "business"}, {"text": "."}, {"text": "If"}, {"text": "you"}, {"text": "'d"}, {"text": "really"}, {"text": "rather"}, {"text": "have"}, {"text": "a"}, {"text": "Buick"}, {"text": ","}, {"text": "*"}, {"text": "do"}, {"text": "n't"}, {"text": "leave"}, {"text": "home"}, {"text": "without"}, {"text": "the"}, {"text": "American"}, {"text": "Express"}, {"text": "card"}, {"text": "."}, {"text": "Or"}, {"text": "so"}, {"text": "the"}, {"text": "slogan"}, {"text": "might"}, {"text": "go"}, {"text": "."}, {"text": "American"}, {"text": "Express"}, {"text": "Co."}, {"text": "and"}, {"text": "General"}, {"text": "Motors"}, {"text": "Corp."}, {"text": "'s"}, {"text": "beleaguered"}, {"text": "Buick"}, {"text": "division"}, {"text": "are"}, {"text": "joining"}, {"text": "forces"}, {"text": "in"}, {"text": "a"}, {"text": "promotion"}, {"text": "aimed"}, {"text": "*"}, {"text": "at"}, {"text": "*"}, {"text": "boosting"}, {"text": "Buick"}, {"text": "'s"}, {"text": "sales"}, {"text": "while"}, {"text": "*"}, {"text": "encouraging"}, {"text": "broader"}, {"text": "use"}, {"text": "of"}, {"text": "the"}, {"text": "American"}, {"text": "Express"}, {"text": "card"}, {"text": "."}, {"text": "The"}, {"text": "companies"}, {"text": "are"}, {"text": "giving"}, {"text": "four-day"}, {"text": "vacations"}, {"text": "for"}, {"text": "two"}, {"text": "to"}, {"text": "Buick"}, {"text": "buyers"}, {"text": "who"}, {"text": "*T*-51"}, {"text": "charge"}, {"text": "all"}, {"text": "or"}, {"text": "part"}, {"text": "of"}, {"text": "their"}, {"text": "down"}, {"text": "payments"}, {"text": "on"}, {"text": "the"}, {"text": "American"}, {"text": "Express"}, {"text": "green"}, {"text": "card"}, {"text": "."}, {"text": "They"}, {"text": "have"}, {"text": "begun"}, {"text": "*-1"}, {"text": "sending"}, {"text": "letters"}, {"text": "explaining"}, {"text": "the"}, {"text": "program"}, {"text": ","}, {"text": "which"}, {"text": "*T*-52"}, {"text": "began"}, {"text": "Oct."}, {"text": "18"}, {"text": "and"}, {"text": "will"}, {"text": "end"}, {"text": "Dec."}, {"text": "18"}, {"text": ","}, {"text": "to"}, {"text": "about"}, {"text": "five"}, {"text": "million"}, {"text": "card"}, {"text": "holders"}, {"text": "."}, {"text": "Neither"}, {"text": "company"}, {"text": "would"}, {"text": "disclose"}, {"text": "the"}, {"text": "program"}, {"text": "'s"}, {"text": "cost"}, {"text": "."}, {"text": "Buick"}, {"text": "approached"}, {"text": "American"}, {"text": "Express"}, {"text": "about"}, {"text": "a"}, {"text": "joint"}, {"text": "promotion"}, {"text": "because"}, {"text": "its"}, {"text": "card"}, {"text": "holders"}, {"text": "generally"}, {"text": "have"}, {"text": "a"}, {"text": "``"}, {"text": "good"}, {"text": "credit"}, {"text": "history"}, {"text": "''"}, {"text": "and"}, {"text": "are"}, {"text": "``"}, {"text": "good"}, {"text": "at"}, {"text": "*"}, {"text": "making"}, {"text": "payments"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "a"}, {"text": "spokeswoman"}, {"text": "for"}, {"text": "the"}, {"text": "division"}, {"text": "."}, {"text": "American"}, {"text": "Express"}, {"text": "also"}, {"text": "represents"}, {"text": "the"}, {"text": "upscale"}, {"text": "image"}, {"text": "0"}, {"text": "``"}, {"text": "we"}, {"text": "'re"}, {"text": "trying"}, {"text": "*-2"}, {"text": "to"}, {"text": "project"}, {"text": "*T*-1"}, {"text": ","}, {"text": "''"}, {"text": "she"}, {"text": "adds"}, {"text": "*T*-3"}, {"text": "."}, {"text": "Buick"}, {"text": "has"}, {"text": "been"}, {"text": "seeking"}, {"text": "for"}, {"text": "the"}, {"text": "past"}, {"text": "few"}, {"text": "years"}, {"text": "*-1"}, {"text": "to"}, {"text": "restore"}, {"text": "its"}, {"text": "reputation"}, {"text": "as"}, {"text": "``"}, {"text": "the"}, {"text": "doctor"}, {"text": "'s"}, {"text": "car"}, {"text": "''"}, {"text": "--"}, {"text": "a"}, {"text": "product"}, {"text": "for"}, {"text": "upscale"}, {"text": "professionals"}, {"text": "."}, {"text": "Sales"}, {"text": "were"}, {"text": "roughly"}, {"text": "flat"}, {"text": "in"}, {"text": "the"}, {"text": "1989"}, {"text": "model"}, {"text": "year"}, {"text": "compared"}, {"text": "with"}, {"text": "a"}, {"text": "year"}, {"text": "earlier"}, {"text": ","}, {"text": "though"}, {"text": "industry"}, {"text": "sales"}, {"text": "fell"}, {"text": "."}, {"text": "But"}, {"text": "since"}, {"text": "the"}, {"text": "1990"}, {"text": "model"}, {"text": "year"}, {"text": "began"}, {"text": "Oct."}, {"text": "1"}, {"text": ","}, {"text": "Buick"}, {"text": "sales"}, {"text": "have"}, {"text": "plunged"}, {"text": "33"}, {"text": "%"}, {"text": "."}, {"text": "For"}, {"text": "American"}, {"text": "Express"}, {"text": ","}, {"text": "the"}, {"text": "promotion"}, {"text": "is"}, {"text": "part"}, {"text": "of"}, {"text": "an"}, {"text": "effort"}, {"text": "*"}, {"text": "to"}, {"text": "broaden"}, {"text": "the"}, {"text": "use"}, {"text": "of"}, {"text": "its"}, {"text": "card"}, {"text": "for"}, {"text": "retail"}, {"text": "sales"}, {"text": ","}, {"text": "where"}, {"text": "the"}, {"text": "company"}, {"text": "expects"}, {"text": "*-2"}, {"text": "to"}, {"text": "get"}, {"text": "much"}, {"text": "of"}, {"text": "the"}, {"text": "future"}, {"text": "growth"}, {"text": "in"}, {"text": "its"}, {"text": "card"}, {"text": "business"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Traditionally"}, {"text": ","}, {"text": "the"}, {"text": "card"}, {"text": "has"}, {"text": "been"}, {"text": "used"}, {"text": "*-66"}, {"text": "mainly"}, {"text": "for"}, {"text": "travel"}, {"text": "and"}, {"text": "entertainment"}, {"text": "expenses"}, {"text": "."}, {"text": "Phillip"}, {"text": "Riese"}, {"text": ","}, {"text": "an"}, {"text": "American"}, {"text": "Express"}, {"text": "executive"}, {"text": "vice"}, {"text": "president"}, {"text": ","}, {"text": "says"}, {"text": "0"}, {"text": "the"}, {"text": "promotion"}, {"text": "with"}, {"text": "Buick"}, {"text": "is"}, {"text": "his"}, {"text": "company"}, {"text": "'s"}, {"text": "first"}, {"text": "with"}, {"text": "an"}, {"text": "auto"}, {"text": "maker"}, {"text": ","}, {"text": "but"}, {"text": "``"}, {"text": "hopefully"}, {"text": "-LCB-"}, {"text": "will"}, {"text": "be"}, {"text": "-RCB-"}, {"text": "the"}, {"text": "first"}, {"text": "of"}, {"text": "many"}, {"text": "''"}, {"text": "in"}, {"text": "the"}, {"text": "company"}, {"text": "'s"}, {"text": "effort"}, {"text": "*"}, {"text": "to"}, {"text": "promote"}, {"text": "its"}, {"text": "green"}, {"text": "card"}, {"text": "as"}, {"text": "``"}, {"text": "the"}, {"text": "total"}, {"text": "car-care"}, {"text": "card"}, {"text": "."}, {"text": "''"}, {"text": "To"}, {"text": "that"}, {"text": "end"}, {"text": ","}, {"text": "American"}, {"text": "Express"}, {"text": "has"}, {"text": "been"}, {"text": "signing"}, {"text": "up"}, {"text": "gasoline"}, {"text": "companies"}, {"text": ","}, {"text": "car"}, {"text": "repair"}, {"text": "shops"}, {"text": ","}, {"text": "tire"}, {"text": "companies"}, {"text": "and"}, {"text": "car"}, {"text": "dealers"}, {"text": "*-1"}, {"text": "to"}, {"text": "accept"}, {"text": "the"}, {"text": "card"}, {"text": "."}, {"text": "Many"}, {"text": "auto"}, {"text": "dealers"}, {"text": "now"}, {"text": "let"}, {"text": "car"}, {"text": "buyers"}, {"text": "charge"}, {"text": "part"}, {"text": "or"}, {"text": "all"}, {"text": "of"}, {"text": "their"}, {"text": "purchase"}, {"text": "on"}, {"text": "the"}, {"text": "American"}, {"text": "Express"}, {"text": "card"}, {"text": ","}, {"text": "but"}, {"text": "few"}, {"text": "card"}, {"text": "holders"}, {"text": "realize"}, {"text": "this"}, {"text": ","}, {"text": "Mr."}, {"text": "Riese"}, {"text": "says"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Until"}, {"text": "now"}, {"text": ","}, {"text": "however"}, {"text": ","}, {"text": "buyers"}, {"text": "who"}, {"text": "*T*-53"}, {"text": "wanted"}, {"text": "*-1"}, {"text": "to"}, {"text": "finance"}, {"text": "part"}, {"text": "of"}, {"text": "a"}, {"text": "car"}, {"text": "purchase"}, {"text": "through"}, {"text": "General"}, {"text": "Motors"}, {"text": "Acceptance"}, {"text": "Corp."}, {"text": "could"}, {"text": "n't"}, {"text": "put"}, {"text": "their"}, {"text": "down"}, {"text": "payment"}, {"text": "on"}, {"text": "a"}, {"text": "charge"}, {"text": "card"}, {"text": "because"}, {"text": "of"}, {"text": "possible"}, {"text": "conflicts"}, {"text": "with"}, {"text": "truth-in-lending"}, {"text": "and"}, {"text": "state"}, {"text": "disclosure"}, {"text": "laws"}, {"text": "over"}, {"text": "finance"}, {"text": "rates"}, {"text": ","}, {"text": "says"}, {"text": "*T*-2"}, {"text": "a"}, {"text": "spokesman"}, {"text": "for"}, {"text": "the"}, {"text": "GM"}, {"text": "finance"}, {"text": "arm"}, {"text": "."}, {"text": "But"}, {"text": "GMAC"}, {"text": "approved"}, {"text": "the"}, {"text": "Buick"}, {"text": "program"}, {"text": ","}, {"text": "he"}, {"text": "says"}, {"text": "0"}, {"text": "*T*-1"}, {"text": ","}, {"text": "because"}, {"text": "the"}, {"text": "American"}, {"text": "Express"}, {"text": "green"}, {"text": "card"}, {"text": "requires"}, {"text": "payment"}, {"text": "in"}, {"text": "full"}, {"text": "upon"}, {"text": "billing"}, {"text": ","}, {"text": "and"}, {"text": "so"}, {"text": "does"}, {"text": "n't"}, {"text": "carry"}, {"text": "any"}, {"text": "finance"}, {"text": "rates"}, {"text": "."}, {"text": "Mr."}, {"text": "Riese"}, {"text": "says"}, {"text": "0"}, {"text": "American"}, {"text": "Express"}, {"text": "considers"}, {"text": "GM"}, {"text": "and"}, {"text": "Buick"}, {"text": "``"}, {"text": "very"}, {"text": "sophisticated"}, {"text": "direct-mail"}, {"text": "marketers"}, {"text": ","}, {"text": "''"}, {"text": "so"}, {"text": "``"}, {"text": "by"}, {"text": "*-1"}, {"text": "joining"}, {"text": "forces"}, {"text": "with"}, {"text": "them"}, {"text": "we"}, {"text": "have"}, {"text": "managed"}, {"text": "*-1"}, {"text": "to"}, {"text": "maximize"}, {"text": "our"}, {"text": "direct-mail"}, {"text": "capability"}, {"text": "."}, {"text": "''"}, {"text": "In"}, {"text": "addition"}, {"text": ","}, {"text": "Buick"}, {"text": "is"}, {"text": "a"}, {"text": "relatively"}, {"text": "respected"}, {"text": "nameplate"}, {"text": "among"}, {"text": "American"}, {"text": "Express"}, {"text": "card"}, {"text": "holders"}, {"text": ","}, {"text": "says"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "an"}, {"text": "American"}, {"text": "Express"}, {"text": "spokeswoman"}, {"text": "."}, {"text": "When"}, {"text": "the"}, {"text": "company"}, {"text": "asked"}, {"text": "members"}, {"text": "in"}, {"text": "a"}, {"text": "mailing"}, {"text": "which"}, {"text": "cars"}, {"text": "they"}, {"text": "would"}, {"text": "like"}, {"text": "*-3"}, {"text": "to"}, {"text": "get"}, {"text": "information"}, {"text": "about"}, {"text": "*T*-2"}, {"text": "for"}, {"text": "possible"}, {"text": "future"}, {"text": "purchases"}, {"text": "*T*-1"}, {"text": ","}, {"text": "Buick"}, {"text": "came"}, {"text": "in"}, {"text": "fourth"}, {"text": "among"}, {"text": "U.S."}, {"text": "cars"}, {"text": "and"}, {"text": "in"}, {"text": "the"}, {"text": "top"}, {"text": "10"}, {"text": "of"}, {"text": "all"}, {"text": "cars"}, {"text": ","}, {"text": "the"}, {"text": "spokeswoman"}, {"text": "says"}, {"text": "0"}, {"text": "*T*-4"}, {"text": "."}, {"text": "American"}, {"text": "Express"}, {"text": "has"}, {"text": "more"}, {"text": "than"}, {"text": "24"}, {"text": "million"}, {"text": "card"}, {"text": "holders"}, {"text": "in"}, {"text": "the"}, {"text": "U.S."}, {"text": ","}, {"text": "and"}, {"text": "over"}, {"text": "half"}, {"text": "have"}, {"text": "the"}, {"text": "green"}, {"text": "card"}, {"text": "."}, {"text": "GMAC"}, {"text": "screened"}, {"text": "the"}, {"text": "card-member"}, {"text": "list"}, {"text": "for"}, {"text": "holders"}, {"text": "more"}, {"text": "than"}, {"text": "30"}, {"text": "years"}, {"text": "old"}, {"text": "with"}, {"text": "household"}, {"text": "incomes"}, {"text": "over"}, {"text": "$"}, {"text": "45,000"}, {"text": "*U*"}, {"text": "who"}, {"text": "*T*-54"}, {"text": "had"}, {"text": "n't"}, {"text": "``"}, {"text": "missed"}, {"text": "any"}, {"text": "payments"}, {"text": ","}, {"text": "''"}, {"text": "the"}, {"text": "Buick"}, {"text": "spokeswoman"}, {"text": "says"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Some"}, {"text": "3.8"}, {"text": "million"}, {"text": "of"}, {"text": "the"}, {"text": "five"}, {"text": "million"}, {"text": "who"}, {"text": "*T*-55"}, {"text": "will"}, {"text": "get"}, {"text": "letters"}, {"text": "were"}, {"text": "preapproved"}, {"text": "*-67"}, {"text": "for"}, {"text": "credit"}, {"text": "with"}, {"text": "GMAC"}, {"text": "."}, {"text": "These"}, {"text": "3.8"}, {"text": "million"}, {"text": "people"}, {"text": "also"}, {"text": "are"}, {"text": "eligible"}, {"text": "*-1"}, {"text": "to"}, {"text": "get"}, {"text": "one"}, {"text": "percentage"}, {"text": "point"}, {"text": "off"}, {"text": "GMAC"}, {"text": "'s"}, {"text": "advertised"}, {"text": "finance"}, {"text": "rates"}, {"text": ","}, {"text": "which"}, {"text": "*T*-56"}, {"text": "start"}, {"text": "at"}, {"text": "6.9"}, {"text": "%"}, {"text": "for"}, {"text": "two-year"}, {"text": "loan"}, {"text": "contracts"}, {"text": "."}, {"text": "A"}, {"text": "spokesman"}, {"text": "for"}, {"text": "Visa"}, {"text": "International"}, {"text": "'s"}, {"text": "U.S."}, {"text": "subsidiary"}, {"text": "says"}, {"text": "0"}, {"text": "his"}, {"text": "company"}, {"text": "is"}, {"text": "using"}, {"text": "promotions"}, {"text": "*-1"}, {"text": "to"}, {"text": "increase"}, {"text": "use"}, {"text": "of"}, {"text": "its"}, {"text": "cards"}, {"text": ","}, {"text": "but"}, {"text": "does"}, {"text": "n't"}, {"text": "have"}, {"text": "plans"}, {"text": "for"}, {"text": "a"}, {"text": "tie-in"}, {"text": "similar"}, {"text": "to"}, {"text": "the"}, {"text": "American"}, {"text": "Express-Buick"}, {"text": "link"}, {"text": "."}, {"text": "Three"}, {"text": "divisions"}, {"text": "at"}, {"text": "American"}, {"text": "Express"}, {"text": "*ICH*-1"}, {"text": "are"}, {"text": "working"}, {"text": "with"}, {"text": "Buick"}, {"text": "on"}, {"text": "the"}, {"text": "promotion"}, {"text": ":"}, {"text": "the"}, {"text": "establishment"}, {"text": "services"}, {"text": "division"}, {"text": ","}, {"text": "which"}, {"text": "*T*-57"}, {"text": "is"}, {"text": "responsible"}, {"text": "for"}, {"text": "all"}, {"text": "merchants"}, {"text": "and"}, {"text": "companies"}, {"text": "that"}, {"text": "*T*-2"}, {"text": "accept"}, {"text": "the"}, {"text": "card"}, {"text": ";"}, {"text": "the"}, {"text": "travel"}, {"text": "division"}, {"text": ";"}, {"text": "and"}, {"text": "the"}, {"text": "merchandise"}, {"text": "sales"}, {"text": "division"}, {"text": "."}, {"text": "The"}, {"text": "vacation"}, {"text": "packages"}, {"text": "include"}, {"text": "hotel"}, {"text": "accommodations"}, {"text": "and"}, {"text": ","}, {"text": "in"}, {"text": "some"}, {"text": "cases"}, {"text": ","}, {"text": "tours"}, {"text": "or"}, {"text": "tickets"}, {"text": "to"}, {"text": "local"}, {"text": "attractions"}, {"text": ","}, {"text": "but"}, {"text": "not"}, {"text": "meals"}, {"text": "."}, {"text": "Destinations"}, {"text": "are"}, {"text": "Chicago"}, {"text": ";"}, {"text": "Honolulu"}, {"text": ";"}, {"text": "Las"}, {"text": "Vegas"}, {"text": ","}, {"text": "Nev."}, {"text": ";"}, {"text": "Los"}, {"text": "Angeles"}, {"text": ";"}, {"text": "Miami"}, {"text": "Beach"}, {"text": ","}, {"text": "Fla."}, {"text": ";"}, {"text": "New"}, {"text": "Orleans"}, {"text": ";"}, {"text": "New"}, {"text": "York"}, {"text": ";"}, {"text": "Orlando"}, {"text": ","}, {"text": "Fla."}, {"text": ";"}, {"text": "San"}, {"text": "Francisco"}, {"text": ";"}, {"text": "and"}, {"text": "Washington"}, {"text": ","}, {"text": "D.C."}, {"text": "A"}, {"text": "buyer"}, {"text": "who"}, {"text": "*T*-58"}, {"text": "chooses"}, {"text": "*-1"}, {"text": "to"}, {"text": "fly"}, {"text": "to"}, {"text": "his"}, {"text": "destination"}, {"text": "must"}, {"text": "pay"}, {"text": "for"}, {"text": "his"}, {"text": "own"}, {"text": "ticket"}, {"text": "but"}, {"text": "gets"}, {"text": "a"}, {"text": "companion"}, {"text": "'s"}, {"text": "ticket"}, {"text": "free"}, {"text": "if"}, {"text": "they"}, {"text": "fly"}, {"text": "on"}, {"text": "United"}, {"text": "Airlines"}, {"text": "."}, {"text": "In"}, {"text": "lieu"}, {"text": "of"}, {"text": "the"}, {"text": "vacation"}, {"text": ","}, {"text": "buyers"}, {"text": "can"}, {"text": "choose"}, {"text": "among"}, {"text": "several"}, {"text": "prizes"}, {"text": ","}, {"text": "including"}, {"text": "a"}, {"text": "grandfather"}, {"text": "clock"}, {"text": "or"}, {"text": "a"}, {"text": "stereo"}, {"text": "videocassette"}, {"text": "recorder"}, {"text": "."}, {"text": "Card"}, {"text": "holders"}, {"text": "who"}, {"text": "*T*-59"}, {"text": "receive"}, {"text": "the"}, {"text": "letter"}, {"text": "also"}, {"text": "are"}, {"text": "eligible"}, {"text": "for"}, {"text": "a"}, {"text": "sweepstakes"}, {"text": "with"}, {"text": "Buick"}, {"text": "cars"}, {"text": "or"}, {"text": "a"}, {"text": "Hawaii"}, {"text": "vacation"}, {"text": "as"}, {"text": "prizes"}, {"text": "."}, {"text": "If"}, {"text": "they"}, {"text": "test-drive"}, {"text": "a"}, {"text": "Buick"}, {"text": ","}, {"text": "they"}, {"text": "get"}, {"text": "an"}, {"text": "American"}, {"text": "Express"}, {"text": "calculator"}, {"text": "."}, {"text": "This"}, {"text": "is"}, {"text": "n't"}, {"text": "Buick"}, {"text": "'s"}, {"text": "first"}, {"text": "travel-related"}, {"text": "promotion"}, {"text": "."}, {"text": "A"}, {"text": "few"}, {"text": "years"}, {"text": "ago"}, {"text": ","}, {"text": "the"}, {"text": "company"}, {"text": "offered"}, {"text": "two"}, {"text": "round-trip"}, {"text": "tickets"}, {"text": "on"}, {"text": "Trans"}, {"text": "World"}, {"text": "Airlines"}, {"text": "to"}, {"text": "buyers"}, {"text": "of"}, {"text": "its"}, {"text": "Riviera"}, {"text": "luxury"}, {"text": "car"}, {"text": "."}, {"text": "The"}, {"text": "promotion"}, {"text": "helped"}, {"text": "Riviera"}, {"text": "sales"}, {"text": "exceed"}, {"text": "the"}, {"text": "division"}, {"text": "'s"}, {"text": "forecast"}, {"text": "by"}, {"text": "more"}, {"text": "than"}, {"text": "10"}, {"text": "%"}, {"text": ","}, {"text": "Buick"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "at"}, {"text": "the"}, {"text": "time"}, {"text": "."}, {"text": "The"}, {"text": "United"}, {"text": "Kingdom"}, {"text": "High"}, {"text": "Court"}, {"text": "declared"}, {"text": "illegal"}, {"text": "a"}, {"text": "variety"}, {"text": "of"}, {"text": "interest-rate"}, {"text": "swap"}, {"text": "transactions"}, {"text": "and"}, {"text": "options"}, {"text": "deals"}, {"text": "between"}, {"text": "a"}, {"text": "London"}, {"text": "borough"}, {"text": "council"}, {"text": "and"}, {"text": "commercial"}, {"text": "banks"}, {"text": "."}, {"text": "The"}, {"text": "ruling"}, {"text": "could"}, {"text": "lead"}, {"text": "to"}, {"text": "the"}, {"text": "cancellation"}, {"text": "of"}, {"text": "huge"}, {"text": "bank"}, {"text": "debts"}, {"text": "0"}, {"text": "the"}, {"text": "London"}, {"text": "Borough"}, {"text": "of"}, {"text": "Hammersmith"}, {"text": "and"}, {"text": "Fulham"}, {"text": "ran"}, {"text": "up"}, {"text": "*T*-1"}, {"text": "after"}, {"text": "*-2"}, {"text": "losing"}, {"text": "heavily"}, {"text": "on"}, {"text": "swap"}, {"text": "transactions"}, {"text": "."}, {"text": "As"}, {"text": "many"}, {"text": "as"}, {"text": "70"}, {"text": "U.K."}, {"text": "and"}, {"text": "international"}, {"text": "banks"}, {"text": "stand"}, {"text": "*-1"}, {"text": "to"}, {"text": "lose"}, {"text": "several"}, {"text": "hundred"}, {"text": "million"}, {"text": "pounds"}, {"text": "should"}, {"text": "the"}, {"text": "decision"}, {"text": "be"}, {"text": "upheld"}, {"text": "*-2"}, {"text": "and"}, {"text": "set"}, {"text": "a"}, {"text": "precedent"}, {"text": "for"}, {"text": "other"}, {"text": "municipalities"}, {"text": "."}, {"text": "An"}, {"text": "appeal"}, {"text": "is"}, {"text": "expected"}, {"text": "*-68"}, {"text": "."}, {"text": "In"}, {"text": "response"}, {"text": "to"}, {"text": "the"}, {"text": "ruling"}, {"text": ","}, {"text": "gilt"}, {"text": "futures"}, {"text": "swiftly"}, {"text": "plunged"}, {"text": "more"}, {"text": "than"}, {"text": "a"}, {"text": "point"}, {"text": "yesterday"}, {"text": "before"}, {"text": "*-1"}, {"text": "recovering"}, {"text": "much"}, {"text": "of"}, {"text": "the"}, {"text": "loss"}, {"text": "by"}, {"text": "the"}, {"text": "end"}, {"text": "of"}, {"text": "the"}, {"text": "session"}, {"text": "."}, {"text": "Gilts"}, {"text": ","}, {"text": "or"}, {"text": "British"}, {"text": "government"}, {"text": "bonds"}, {"text": ","}, {"text": "which"}, {"text": "*T*-60"}, {"text": "also"}, {"text": "fell"}, {"text": "sharply"}, {"text": "initially"}, {"text": ","}, {"text": "retraced"}, {"text": "some"}, {"text": "of"}, {"text": "the"}, {"text": "losses"}, {"text": "*-1"}, {"text": "to"}, {"text": "end"}, {"text": "about"}, {"text": "3\\/8"}, {"text": "point"}, {"text": "lower"}, {"text": "."}, {"text": "The"}, {"text": "council"}, {"text": ","}, {"text": "which"}, {"text": "*T*-61"}, {"text": "is"}, {"text": "alleged"}, {"text": "*-1"}, {"text": "to"}, {"text": "have"}, {"text": "engaged"}, {"text": "in"}, {"text": "over"}, {"text": "600"}, {"text": "deals"}, {"text": "valued"}, {"text": "*"}, {"text": "at"}, {"text": "over"}, {"text": "#"}, {"text": "6"}, {"text": "billion"}, {"text": "*U*"}, {"text": "-LRB-"}, {"text": "$"}, {"text": "9.5"}, {"text": "billion"}, {"text": "*U*"}, {"text": "-RRB-"}, {"text": ","}, {"text": "lost"}, {"text": "millions"}, {"text": "of"}, {"text": "pounds"}, {"text": "from"}, {"text": "soured"}, {"text": "swap"}, {"text": "deals"}, {"text": "."}, {"text": "At"}, {"text": "one"}, {"text": "point"}, {"text": ","}, {"text": "Hammersmith"}, {"text": "is"}, {"text": "reported"}, {"text": "*-1"}, {"text": "to"}, {"text": "have"}, {"text": "accounted"}, {"text": "for"}, {"text": "as"}, {"text": "much"}, {"text": "as"}, {"text": "10"}, {"text": "%"}, {"text": "of"}, {"text": "the"}, {"text": "sterling"}, {"text": "market"}, {"text": "in"}, {"text": "interest-rate"}, {"text": "swap"}, {"text": "dealings"}, {"text": "."}, {"text": "When"}, {"text": "two"}, {"text": "parties"}, {"text": "engage"}, {"text": "in"}, {"text": "an"}, {"text": "interest-rate"}, {"text": "swap"}, {"text": "*T*-1"}, {"text": ","}, {"text": "they"}, {"text": "are"}, {"text": "betting"}, {"text": "against"}, {"text": "each"}, {"text": "other"}, {"text": "on"}, {"text": "future"}, {"text": "rates"}, {"text": "."}, {"text": "Thus"}, {"text": ","}, {"text": "an"}, {"text": "institution"}, {"text": "obligated"}, {"text": "*"}, {"text": "to"}, {"text": "make"}, {"text": "fixed-rate"}, {"text": "interest"}, {"text": "payments"}, {"text": "on"}, {"text": "debt"}, {"text": "swaps"}, {"text": "the"}, {"text": "payments"}, {"text": "with"}, {"text": "another"}, {"text": "making"}, {"text": "floating-rate"}, {"text": "payments"}, {"text": "."}, {"text": "In"}, {"text": "most"}, {"text": "of"}, {"text": "the"}, {"text": "British"}, {"text": "transactions"}, {"text": ","}, {"text": "the"}, {"text": "municipalities"}, {"text": "agreed"}, {"text": "*-1"}, {"text": "to"}, {"text": "make"}, {"text": "floating-rate"}, {"text": "payments"}, {"text": "to"}, {"text": "banks"}, {"text": ","}, {"text": "which"}, {"text": "*T*-62"}, {"text": "would"}, {"text": "make"}, {"text": "fixed-rate"}, {"text": "payments"}, {"text": "."}, {"text": "As"}, {"text": "interest"}, {"text": "rates"}, {"text": "rose"}, {"text": ","}, {"text": "municipalities"}, {"text": "owed"}, {"text": "the"}, {"text": "banks"}, {"text": "more"}, {"text": "than"}, {"text": "the"}, {"text": "banks"}, {"text": "were"}, {"text": "paying"}, {"text": "them"}, {"text": "."}, {"text": "The"}, {"text": "court"}, {"text": "hearing"}, {"text": "began"}, {"text": "in"}, {"text": "early"}, {"text": "October"}, {"text": "at"}, {"text": "the"}, {"text": "request"}, {"text": "of"}, {"text": "Anthony"}, {"text": "Hazell"}, {"text": ","}, {"text": "district"}, {"text": "auditor"}, {"text": "for"}, {"text": "Hammersmith"}, {"text": ","}, {"text": "who"}, {"text": "*T*-63"}, {"text": "argued"}, {"text": "that"}, {"text": "local"}, {"text": "councils"}, {"text": "are"}, {"text": "n't"}, {"text": "vested"}, {"text": "with"}, {"text": "constitutional"}, {"text": "authority"}, {"text": "*"}, {"text": "to"}, {"text": "engage"}, {"text": "in"}, {"text": "such"}, {"text": "capital-markets"}, {"text": "activities"}, {"text": "."}, {"text": "The"}, {"text": "council"}, {"text": "backed"}, {"text": "the"}, {"text": "audit"}, {"text": "commission"}, {"text": "'s"}, {"text": "stand"}, {"text": "that"}, {"text": "the"}, {"text": "swap"}, {"text": "transactions"}, {"text": "are"}, {"text": "illegal"}, {"text": "."}, {"text": "Although"}, {"text": "the"}, {"text": "Hammersmith"}, {"text": "and"}, {"text": "Fulham"}, {"text": "council"}, {"text": "was"}, {"text": "by"}, {"text": "far"}, {"text": "the"}, {"text": "most"}, {"text": "active"}, {"text": "local"}, {"text": "authority"}, {"text": "engaging"}, {"text": "in"}, {"text": "such"}, {"text": "capital-markets"}, {"text": "transactions"}, {"text": ","}, {"text": "the"}, {"text": "court"}, {"text": "decision"}, {"text": "could"}, {"text": "set"}, {"text": "a"}, {"text": "precedent"}, {"text": "for"}, {"text": "similar"}, {"text": "transactions"}, {"text": "by"}, {"text": "77"}, {"text": "other"}, {"text": "local"}, {"text": "councils"}, {"text": "."}, {"text": "``"}, {"text": "While"}, {"text": "this"}, {"text": "court"}, {"text": "ruling"}, {"text": "was"}, {"text": "only"}, {"text": "on"}, {"text": "Hammersmith"}, {"text": ","}, {"text": "it"}, {"text": "will"}, {"text": "obviously"}, {"text": "be"}, {"text": "very"}, {"text": "persuasive"}, {"text": "in"}, {"text": "other"}, {"text": "cases"}, {"text": "of"}, {"text": "a"}, {"text": "similar"}, {"text": "nature"}, {"text": ","}, {"text": "''"}, {"text": "a"}, {"text": "solicitor"}, {"text": "representing"}, {"text": "one"}, {"text": "of"}, {"text": "the"}, {"text": "banks"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Already"}, {"text": ","}, {"text": "10"}, {"text": "local"}, {"text": "councils"}, {"text": "have"}, {"text": "refused"}, {"text": "*-1"}, {"text": "to"}, {"text": "honor"}, {"text": "fees"}, {"text": "and"}, {"text": "payments"}, {"text": "to"}, {"text": "banks"}, {"text": "incurred"}, {"text": "*"}, {"text": "during"}, {"text": "various"}, {"text": "swaps"}, {"text": "dealings"}, {"text": "."}, {"text": "Other"}, {"text": "financial"}, {"text": "institutions"}, {"text": "involved"}, {"text": "*"}, {"text": "include"}, {"text": "Barclays"}, {"text": "Bank"}, {"text": "PLC"}, {"text": ","}, {"text": "Midland"}, {"text": "Bank"}, {"text": "PLC"}, {"text": ","}, {"text": "Security"}, {"text": "Pacific"}, {"text": "Corp."}, {"text": ","}, {"text": "Chemical"}, {"text": "Banking"}, {"text": "Corp."}, {"text": "'s"}, {"text": "Chemical"}, {"text": "Bank"}, {"text": ","}, {"text": "Citicorp"}, {"text": "'s"}, {"text": "Citibank"}, {"text": "and"}, {"text": "Mitsubishi"}, {"text": "Finance"}, {"text": "International"}, {"text": "."}, {"text": "If"}, {"text": "the"}, {"text": "banks"}, {"text": "exhaust"}, {"text": "all"}, {"text": "avenues"}, {"text": "of"}, {"text": "appeal"}, {"text": ","}, {"text": "it"}, {"text": "*EXP*-1"}, {"text": "is"}, {"text": "possible"}, {"text": "that"}, {"text": "they"}, {"text": "would"}, {"text": "seek"}, {"text": "*-3"}, {"text": "to"}, {"text": "have"}, {"text": "the"}, {"text": "illegality"}, {"text": "ruling"}, {"text": "work"}, {"text": "both"}, {"text": "ways"}, {"text": ","}, {"text": "some"}, {"text": "market"}, {"text": "sources"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "."}, {"text": "Banks"}, {"text": "could"}, {"text": "seek"}, {"text": "*-1"}, {"text": "to"}, {"text": "recover"}, {"text": "payments"}, {"text": "to"}, {"text": "local"}, {"text": "authorities"}, {"text": "in"}, {"text": "instances"}, {"text": "where"}, {"text": "the"}, {"text": "banks"}, {"text": "made"}, {"text": "net"}, {"text": "payments"}, {"text": "to"}, {"text": "councils"}, {"text": "*T*-2"}, {"text": "."}, {"text": "Officials"}, {"text": "from"}, {"text": "the"}, {"text": "various"}, {"text": "banks"}, {"text": "involved"}, {"text": "*"}, {"text": "are"}, {"text": "expected"}, {"text": "*-1"}, {"text": "to"}, {"text": "meet"}, {"text": "during"}, {"text": "the"}, {"text": "next"}, {"text": "few"}, {"text": "days"}, {"text": "*-2"}, {"text": "to"}, {"text": "consider"}, {"text": "other"}, {"text": "arrangements"}, {"text": "with"}, {"text": "local"}, {"text": "authorities"}, {"text": "that"}, {"text": "*T*-3"}, {"text": "could"}, {"text": "be"}, {"text": "questionable"}, {"text": "."}, {"text": "The"}, {"text": "banks"}, {"text": "have"}, {"text": "28"}, {"text": "days"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "file"}, {"text": "an"}, {"text": "appeal"}, {"text": "against"}, {"text": "the"}, {"text": "ruling"}, {"text": "*T*-2"}, {"text": "and"}, {"text": "are"}, {"text": "expected"}, {"text": "*-1"}, {"text": "to"}, {"text": "do"}, {"text": "so"}, {"text": "shortly"}, {"text": "."}, {"text": "In"}, {"text": "the"}, {"text": "aftermath"}, {"text": "of"}, {"text": "the"}, {"text": "stock"}, {"text": "market"}, {"text": "'s"}, {"text": "gut-wrenching"}, {"text": "190-point"}, {"text": "drop"}, {"text": "on"}, {"text": "Oct."}, {"text": "13"}, {"text": ","}, {"text": "Kidder"}, {"text": ","}, {"text": "Peabody"}, {"text": "&"}, {"text": "Co."}, {"text": "'s"}, {"text": "1,400"}, {"text": "stockbrokers"}, {"text": "across"}, {"text": "the"}, {"text": "country"}, {"text": "began"}, {"text": "a"}, {"text": "telephone"}, {"text": "and"}, {"text": "letter-writing"}, {"text": "campaign"}, {"text": "aimed"}, {"text": "*"}, {"text": "at"}, {"text": "*"}, {"text": "quashing"}, {"text": "the"}, {"text": "country"}, {"text": "'s"}, {"text": "second-largest"}, {"text": "program"}, {"text": "trader"}, {"text": "."}, {"text": "The"}, {"text": "target"}, {"text": "of"}, {"text": "their"}, {"text": "wrath"}, {"text": "?"}, {"text": "Their"}, {"text": "own"}, {"text": "employer"}, {"text": ","}, {"text": "Kidder"}, {"text": "Peabody"}, {"text": "."}, {"text": "Since"}, {"text": "October"}, {"text": "'s"}, {"text": "minicrash"}, {"text": ","}, {"text": "Wall"}, {"text": "Street"}, {"text": "has"}, {"text": "been"}, {"text": "shaken"}, {"text": "*-69"}, {"text": "by"}, {"text": "an"}, {"text": "explosion"}, {"text": "of"}, {"text": "resentment"}, {"text": "against"}, {"text": "program"}, {"text": "trading"}, {"text": ","}, {"text": "the"}, {"text": "computer-driven"}, {"text": ","}, {"text": "lightning-fast"}, {"text": "trades"}, {"text": "of"}, {"text": "huge"}, {"text": "baskets"}, {"text": "of"}, {"text": "stocks"}, {"text": "and"}, {"text": "futures"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "can"}, {"text": "send"}, {"text": "stock"}, {"text": "prices"}, {"text": "reeling"}, {"text": "in"}, {"text": "minutes"}, {"text": "."}, {"text": "But"}, {"text": "the"}, {"text": "heated"}, {"text": "fight"}, {"text": "over"}, {"text": "program"}, {"text": "trading"}, {"text": "is"}, {"text": "about"}, {"text": "much"}, {"text": "more"}, {"text": "than"}, {"text": "a"}, {"text": "volatile"}, {"text": "stock"}, {"text": "market"}, {"text": "."}, {"text": "The"}, {"text": "real"}, {"text": "battle"}, {"text": "is"}, {"text": "over"}, {"text": "who"}, {"text": "*T*-1"}, {"text": "will"}, {"text": "control"}, {"text": "that"}, {"text": "market"}, {"text": "and"}, {"text": "reap"}, {"text": "its"}, {"text": "huge"}, {"text": "rewards"}, {"text": "."}, {"text": "Program"}, {"text": "trading"}, {"text": "itself"}, {"text": ","}, {"text": "according"}, {"text": "to"}, {"text": "many"}, {"text": "academics"}, {"text": "who"}, {"text": "*T*-64"}, {"text": "have"}, {"text": "studied"}, {"text": "it"}, {"text": ","}, {"text": "is"}, {"text": "merely"}, {"text": "caught"}, {"text": "*-1"}, {"text": "in"}, {"text": "the"}, {"text": "middle"}, {"text": "of"}, {"text": "this"}, {"text": "battle"}, {"text": ","}, {"text": "*-1"}, {"text": "unfairly"}, {"text": "labeled"}, {"text": "*-2"}, {"text": "as"}, {"text": "the"}, {"text": "evil"}, {"text": "driving"}, {"text": "force"}, {"text": "of"}, {"text": "the"}, {"text": "marketplace"}, {"text": "."}, {"text": "The"}, {"text": "evidence"}, {"text": "indicates"}, {"text": "that"}, {"text": "program"}, {"text": "trading"}, {"text": "did"}, {"text": "n't"}, {"text": ","}, {"text": "in"}, {"text": "fact"}, {"text": ","}, {"text": "cause"}, {"text": "the"}, {"text": "market"}, {"text": "'s"}, {"text": "sharp"}, {"text": "fall"}, {"text": "on"}, {"text": "Oct."}, {"text": "13"}, {"text": ","}, {"text": "though"}, {"text": "it"}, {"text": "may"}, {"text": "have"}, {"text": "exacerbated"}, {"text": "it"}, {"text": "."}, {"text": "On"}, {"text": "one"}, {"text": "side"}, {"text": "of"}, {"text": "this"}, {"text": "power"}, {"text": "struggle"}, {"text": "stand"}, {"text": "*T*-1"}, {"text": "the"}, {"text": "forces"}, {"text": "in"}, {"text": "ascendency"}, {"text": "on"}, {"text": "Wall"}, {"text": "Street"}, {"text": "--"}, {"text": "the"}, {"text": "New"}, {"text": "Guard"}, {"text": "--"}, {"text": "consisting"}, {"text": "of"}, {"text": "high-tech"}, {"text": "computer"}, {"text": "wizards"}, {"text": "at"}, {"text": "the"}, {"text": "major"}, {"text": "brokerage"}, {"text": "firms"}, {"text": ","}, {"text": "their"}, {"text": "pension"}, {"text": "fund"}, {"text": "clients"}, {"text": "with"}, {"text": "immense"}, {"text": "pools"}, {"text": "of"}, {"text": "money"}, {"text": ","}, {"text": "and"}, {"text": "the"}, {"text": "traders"}, {"text": "at"}, {"text": "the"}, {"text": "fast-growing"}, {"text": "Chicago"}, {"text": "futures"}, {"text": "exchanges"}, {"text": "."}, {"text": "These"}, {"text": "are"}, {"text": "the"}, {"text": "main"}, {"text": "proponents"}, {"text": "of"}, {"text": "program"}, {"text": "trading"}, {"text": "."}, {"text": "Defending"}, {"text": "their"}, {"text": "ramparts"}, {"text": "are"}, {"text": "*T*-1"}, {"text": "Wall"}, {"text": "Street"}, {"text": "'s"}, {"text": "Old"}, {"text": "Guard"}, {"text": "--"}, {"text": "the"}, {"text": "traditional"}, {"text": ","}, {"text": "stock-picking"}, {"text": "money"}, {"text": "managers"}, {"text": ","}, {"text": "tens"}, {"text": "of"}, {"text": "thousands"}, {"text": "of"}, {"text": "stock"}, {"text": "brokers"}, {"text": ","}, {"text": "the"}, {"text": "New"}, {"text": "York"}, {"text": "Stock"}, {"text": "Exchange"}, {"text": "'s"}, {"text": "listed"}, {"text": "companies"}, {"text": "and"}, {"text": "the"}, {"text": "clannish"}, {"text": "floor"}, {"text": "traders"}, {"text": ","}, {"text": "known"}, {"text": "*"}, {"text": "as"}, {"text": "specialists"}, {"text": ","}, {"text": "who"}, {"text": "*T*-65"}, {"text": "make"}, {"text": "markets"}, {"text": "in"}, {"text": "their"}, {"text": "stocks"}, {"text": "."}, {"text": "So"}, {"text": "far"}, {"text": ","}, {"text": "Wall"}, {"text": "Street"}, {"text": "'s"}, {"text": "Old"}, {"text": "Guard"}, {"text": "seems"}, {"text": "*-1"}, {"text": "to"}, {"text": "be"}, {"text": "winning"}, {"text": "the"}, {"text": "program-trading"}, {"text": "battle"}, {"text": ","}, {"text": "*-2"}, {"text": "successfully"}, {"text": "mobilizing"}, {"text": "public"}, {"text": "and"}, {"text": "congressional"}, {"text": "opinion"}, {"text": "*-3"}, {"text": "to"}, {"text": "bludgeon"}, {"text": "their"}, {"text": "tormentors"}, {"text": "."}, {"text": "The"}, {"text": "Chicago"}, {"text": "Mercantile"}, {"text": "Exchange"}, {"text": ","}, {"text": "a"}, {"text": "major"}, {"text": "futures"}, {"text": "marketplace"}, {"text": ","}, {"text": "yesterday"}, {"text": "announced"}, {"text": "the"}, {"text": "addition"}, {"text": "of"}, {"text": "another"}, {"text": "layer"}, {"text": "of"}, {"text": "trading"}, {"text": "halts"}, {"text": "designed"}, {"text": "*"}, {"text": "to"}, {"text": "slow"}, {"text": "program"}, {"text": "traders"}, {"text": "during"}, {"text": "a"}, {"text": "rapidly"}, {"text": "falling"}, {"text": "stock"}, {"text": "market"}, {"text": ","}, {"text": "and"}, {"text": "the"}, {"text": "Big"}, {"text": "Board"}, {"text": "is"}, {"text": "expected"}, {"text": "today"}, {"text": "*-70"}, {"text": "to"}, {"text": "approve"}, {"text": "some"}, {"text": "additional"}, {"text": "restrictions"}, {"text": "on"}, {"text": "program"}, {"text": "trading"}, {"text": "."}, {"text": "*-1"}, {"text": "Stung"}, {"text": "by"}, {"text": "charges"}, {"text": "that"}, {"text": "their"}, {"text": "greed"}, {"text": "is"}, {"text": "turning"}, {"text": "the"}, {"text": "stock"}, {"text": "market"}, {"text": "into"}, {"text": "a"}, {"text": "gigantic"}, {"text": "crapshoot"}, {"text": ","}, {"text": "almost"}, {"text": "all"}, {"text": "the"}, {"text": "big"}, {"text": "investment"}, {"text": "banking"}, {"text": "houses"}, {"text": "have"}, {"text": "abandoned"}, {"text": "index"}, {"text": "arbitrage"}, {"text": ","}, {"text": "a"}, {"text": "common"}, {"text": "form"}, {"text": "of"}, {"text": "program"}, {"text": "trading"}, {"text": ","}, {"text": "for"}, {"text": "their"}, {"text": "own"}, {"text": "accounts"}, {"text": "in"}, {"text": "the"}, {"text": "past"}, {"text": "few"}, {"text": "days"}, {"text": "."}, {"text": "A"}, {"text": "few"}, {"text": ","}, {"text": "such"}, {"text": "as"}, {"text": "giant"}, {"text": "Merrill"}, {"text": "Lynch"}, {"text": "&"}, {"text": "Co."}, {"text": ","}, {"text": "now"}, {"text": "refuse"}, {"text": "*-1"}, {"text": "even"}, {"text": "to"}, {"text": "do"}, {"text": "index"}, {"text": "arbitrage"}, {"text": "trades"}, {"text": "for"}, {"text": "clients"}, {"text": "."}, {"text": "The"}, {"text": "Old"}, {"text": "Guard"}, {"text": "'s"}, {"text": "assault"}, {"text": "on"}, {"text": "program"}, {"text": "trading"}, {"text": "and"}, {"text": "its"}, {"text": "practitioners"}, {"text": "has"}, {"text": "been"}, {"text": "fierce"}, {"text": "and"}, {"text": "broad-based"}, {"text": ","}, {"text": "in"}, {"text": "part"}, {"text": "because"}, {"text": "some"}, {"text": "Old"}, {"text": "Guard"}, {"text": "members"}, {"text": "feel"}, {"text": "0"}, {"text": "their"}, {"text": "very"}, {"text": "livelihood"}, {"text": "is"}, {"text": "at"}, {"text": "stake"}, {"text": "."}, {"text": "Some"}, {"text": ","}, {"text": "such"}, {"text": "as"}, {"text": "traditional"}, {"text": "money"}, {"text": "manager"}, {"text": "Neuberger"}, {"text": "&"}, {"text": "Berman"}, {"text": ","}, {"text": "have"}, {"text": "taken"}, {"text": "out"}, {"text": "national"}, {"text": "newspaper"}, {"text": "advertisements"}, {"text": "demanding"}, {"text": "that"}, {"text": "market"}, {"text": "regulators"}, {"text": "``"}, {"text": "stop"}, {"text": "the"}, {"text": "numbers"}, {"text": "racket"}, {"text": "on"}, {"text": "Wall"}, {"text": "Street"}, {"text": "."}, {"text": "''"}, {"text": "Big"}, {"text": "Board"}, {"text": "stock"}, {"text": "specialists"}, {"text": ","}, {"text": "in"}, {"text": "a"}, {"text": "bold"}, {"text": "palace"}, {"text": "revolt"}, {"text": ","}, {"text": "began"}, {"text": "shortly"}, {"text": "after"}, {"text": "Oct."}, {"text": "13"}, {"text": "*-1"}, {"text": "to"}, {"text": "telephone"}, {"text": "the"}, {"text": "corporate"}, {"text": "executives"}, {"text": "of"}, {"text": "the"}, {"text": "companies"}, {"text": "whose"}, {"text": "stock"}, {"text": "*T*-2"}, {"text": "is"}, {"text": "listed"}, {"text": "*-71"}, {"text": "on"}, {"text": "the"}, {"text": "Big"}, {"text": "Board"}, {"text": "*-3"}, {"text": "to"}, {"text": "have"}, {"text": "them"}, {"text": "pressure"}, {"text": "the"}, {"text": "exchange"}, {"text": "to"}, {"text": "ban"}, {"text": "program"}, {"text": "trading"}, {"text": "."}, {"text": "Charles"}, {"text": "Wohlstetter"}, {"text": ","}, {"text": "the"}, {"text": "chairman"}, {"text": "of"}, {"text": "Contel"}, {"text": "Corp."}, {"text": "who"}, {"text": "*T*-66"}, {"text": "is"}, {"text": "rallying"}, {"text": "other"}, {"text": "CEOs"}, {"text": "to"}, {"text": "the"}, {"text": "anti-program"}, {"text": "trading"}, {"text": "cause"}, {"text": ","}, {"text": "says"}, {"text": "0"}, {"text": "he"}, {"text": "has"}, {"text": "received"}, {"text": "``"}, {"text": "countless"}, {"text": "''"}, {"text": "letters"}, {"text": "offering"}, {"text": "support"}, {"text": "."}, {"text": "``"}, {"text": "They"}, {"text": "said"}, {"text": "universally"}, {"text": ","}, {"text": "without"}, {"text": "a"}, {"text": "single"}, {"text": "exception"}, {"text": ":"}, {"text": "*"}, {"text": "Do"}, {"text": "n't"}, {"text": "even"}, {"text": "compromise"}, {"text": "."}, {"text": "*"}, {"text": "Kill"}, {"text": "it"}, {"text": ","}, {"text": "''"}, {"text": "he"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Wall"}, {"text": "Street"}, {"text": "'s"}, {"text": "New"}, {"text": "Guard"}, {"text": "is"}, {"text": "n't"}, {"text": "likely"}, {"text": "*-1"}, {"text": "to"}, {"text": "take"}, {"text": "all"}, {"text": "this"}, {"text": "*-2"}, {"text": "lying"}, {"text": "down"}, {"text": "for"}, {"text": "long"}, {"text": ","}, {"text": "however"}, {"text": "."}, {"text": "Its"}, {"text": "new"}, {"text": "products"}, {"text": "and"}, {"text": "trading"}, {"text": "techniques"}, {"text": "have"}, {"text": "been"}, {"text": "highly"}, {"text": "profitable"}, {"text": "."}, {"text": "Program"}, {"text": "trading"}, {"text": "money"}, {"text": "managers"}, {"text": "have"}, {"text": "gained"}, {"text": "control"}, {"text": "over"}, {"text": "a"}, {"text": "big"}, {"text": "chunk"}, {"text": "of"}, {"text": "the"}, {"text": "invested"}, {"text": "funds"}, {"text": "in"}, {"text": "this"}, {"text": "country"}, {"text": ","}, {"text": "and"}, {"text": "the"}, {"text": "pressures"}, {"text": "*ICH*-2"}, {"text": "on"}, {"text": "such"}, {"text": "money"}, {"text": "managers"}, {"text": "*"}, {"text": "to"}, {"text": "produce"}, {"text": "consistent"}, {"text": "profits"}, {"text": "has"}, {"text": "wedded"}, {"text": "them"}, {"text": "to"}, {"text": "the"}, {"text": "ability"}, {"text": "*"}, {"text": "to"}, {"text": "move"}, {"text": "rapidly"}, {"text": "in"}, {"text": "and"}, {"text": "out"}, {"text": "the"}, {"text": "market"}, {"text": "that"}, {"text": "program"}, {"text": "trading"}, {"text": "gives"}, {"text": "them"}, {"text": "*T*-1"}, {"text": "."}, {"text": "What"}, {"text": "*T*-67"}, {"text": "'s"}, {"text": "more"}, {"text": ","}, {"text": "the"}, {"text": "last"}, {"text": "time"}, {"text": "0"}, {"text": "major"}, {"text": "Wall"}, {"text": "Street"}, {"text": "firms"}, {"text": "said"}, {"text": "0"}, {"text": "they"}, {"text": "were"}, {"text": "getting"}, {"text": "out"}, {"text": "of"}, {"text": "program"}, {"text": "trading"}, {"text": "*T*-1"}, {"text": "--"}, {"text": "in"}, {"text": "the"}, {"text": "aftermath"}, {"text": "of"}, {"text": "the"}, {"text": "1987"}, {"text": "crash"}, {"text": "--"}, {"text": "they"}, {"text": "waited"}, {"text": "a"}, {"text": "few"}, {"text": "months"}, {"text": "and"}, {"text": "then"}, {"text": "sneaked"}, {"text": "back"}, {"text": "into"}, {"text": "it"}, {"text": "."}, {"text": "Even"}, {"text": "some"}, {"text": "members"}, {"text": "of"}, {"text": "the"}, {"text": "Old"}, {"text": "Guard"}, {"text": ","}, {"text": "despite"}, {"text": "their"}, {"text": "current"}, {"text": "advantage"}, {"text": ","}, {"text": "seem"}, {"text": "*-1"}, {"text": "to"}, {"text": "be"}, {"text": "conceding"}, {"text": "that"}, {"text": "the"}, {"text": "future"}, {"text": "belongs"}, {"text": "with"}, {"text": "the"}, {"text": "New"}, {"text": "Guard"}, {"text": "."}, {"text": "Last"}, {"text": "week"}, {"text": ","}, {"text": "Robert"}, {"text": "M."}, {"text": "Bradley"}, {"text": ","}, {"text": "one"}, {"text": "of"}, {"text": "the"}, {"text": "Big"}, {"text": "Board"}, {"text": "'s"}, {"text": "most"}, {"text": "respected"}, {"text": "floor"}, {"text": "traders"}, {"text": "and"}, {"text": "head"}, {"text": "of"}, {"text": "a"}, {"text": "major"}, {"text": "traders"}, {"text": "'"}, {"text": "organization"}, {"text": ","}, {"text": "surrendered"}, {"text": "."}, {"text": "He"}, {"text": "sold"}, {"text": "his"}, {"text": "exchange"}, {"text": "seat"}, {"text": "and"}, {"text": "wrote"}, {"text": "a"}, {"text": "bitter"}, {"text": "letter"}, {"text": "to"}, {"text": "Big"}, {"text": "Board"}, {"text": "Chairman"}, {"text": "John"}, {"text": "J."}, {"text": "Phelan"}, {"text": "Jr."}, {"text": "in"}, {"text": "which"}, {"text": "he"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "0"}, {"text": "the"}, {"text": "Big"}, {"text": "Board"}, {"text": "is"}, {"text": "too"}, {"text": "focused"}, {"text": "on"}, {"text": "machines"}, {"text": ","}, {"text": "rather"}, {"text": "than"}, {"text": "people"}, {"text": "."}, {"text": "He"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "exchange"}, {"text": "is"}, {"text": "``"}, {"text": "headed"}, {"text": "for"}, {"text": "a"}, {"text": "real"}, {"text": "crisis"}, {"text": "''"}, {"text": "if"}, {"text": "program"}, {"text": "trading"}, {"text": "is"}, {"text": "n't"}, {"text": "curbed"}, {"text": "*-1"}, {"text": "."}, {"text": "``"}, {"text": "I"}, {"text": "do"}, {"text": "not"}, {"text": "want"}, {"text": "my"}, {"text": "money"}, {"text": "invested"}, {"text": "*-2"}, {"text": "in"}, {"text": "what"}, {"text": "I"}, {"text": "consider"}, {"text": "*T*-3"}, {"text": "as"}, {"text": "nothing"}, {"text": "more"}, {"text": "than"}, {"text": "a"}, {"text": "casino"}, {"text": ","}, {"text": "''"}, {"text": "Mr."}, {"text": "Bradley"}, {"text": "wrote"}, {"text": "*T*-1"}, {"text": "."}, {"text": "The"}, {"text": "battle"}, {"text": "has"}, {"text": "turned"}, {"text": "into"}, {"text": "a"}, {"text": "civil"}, {"text": "war"}, {"text": "at"}, {"text": "some"}, {"text": "firms"}, {"text": "and"}, {"text": "organizations"}, {"text": ","}, {"text": "*-1"}, {"text": "causing"}, {"text": "internal"}, {"text": "contradictions"}, {"text": "and"}, {"text": "pitting"}, {"text": "employee"}, {"text": "against"}, {"text": "employee"}, {"text": "."}, {"text": "At"}, {"text": "Kidder"}, {"text": ","}, {"text": "a"}, {"text": "unit"}, {"text": "of"}, {"text": "General"}, {"text": "Electric"}, {"text": "Co."}, {"text": ","}, {"text": "and"}, {"text": "other"}, {"text": "big"}, {"text": "brokerage"}, {"text": "firms"}, {"text": ","}, {"text": "stockbrokers"}, {"text": "battle"}, {"text": "their"}, {"text": "own"}, {"text": "firm"}, {"text": "'s"}, {"text": "program"}, {"text": "traders"}, {"text": "a"}, {"text": "few"}, {"text": "floors"}, {"text": "away"}, {"text": "."}, {"text": "Corporations"}, {"text": "like"}, {"text": "Contel"}, {"text": "denounce"}, {"text": "program"}, {"text": "trading"}, {"text": ","}, {"text": "yet"}, {"text": "Contel"}, {"text": "has"}, {"text": "in"}, {"text": "the"}, {"text": "past"}, {"text": "hired"}, {"text": "pension"}, {"text": "fund"}, {"text": "managers"}, {"text": "like"}, {"text": "Bankers"}, {"text": "Trust"}, {"text": "Co."}, {"text": "that"}, {"text": "*T*-1"}, {"text": "are"}, {"text": "also"}, {"text": "big"}, {"text": "program"}, {"text": "traders"}, {"text": "."}, {"text": "The"}, {"text": "Big"}, {"text": "Board"}, {"text": "--"}, {"text": "the"}, {"text": "nation"}, {"text": "'s"}, {"text": "premier"}, {"text": "stock"}, {"text": "exchange"}, {"text": "--"}, {"text": "is"}, {"text": "sharply"}, {"text": "divided"}, {"text": "between"}, {"text": "its"}, {"text": "floor"}, {"text": "traders"}, {"text": "and"}, {"text": "its"}, {"text": "top"}, {"text": "executives"}, {"text": "."}, {"text": "Its"}, {"text": "entrenched"}, {"text": "49"}, {"text": "stock"}, {"text": "specialists"}, {"text": "firms"}, {"text": "are"}, {"text": "fighting"}, {"text": "tooth"}, {"text": "and"}, {"text": "nail"}, {"text": "against"}, {"text": "programs"}, {"text": "."}, {"text": "But"}, {"text": "the"}, {"text": "Big"}, {"text": "Board"}, {"text": "'s"}, {"text": "leadership"}, {"text": "--"}, {"text": "over"}, {"text": "the"}, {"text": "specialists"}, {"text": "'"}, {"text": "protests"}, {"text": "--"}, {"text": "two"}, {"text": "weeks"}, {"text": "ago"}, {"text": "began"}, {"text": "*-1"}, {"text": "trading"}, {"text": "a"}, {"text": "new"}, {"text": "stock"}, {"text": "``"}, {"text": "basket"}, {"text": "''"}, {"text": "product"}, {"text": "designed"}, {"text": "*"}, {"text": "to"}, {"text": "facilitate"}, {"text": "program"}, {"text": "trading"}, {"text": "."}, {"text": "``"}, {"text": "A"}, {"text": "lot"}, {"text": "of"}, {"text": "people"}, {"text": "would"}, {"text": "like"}, {"text": "*-2"}, {"text": "to"}, {"text": "go"}, {"text": "back"}, {"text": "to"}, {"text": "1970"}, {"text": ","}, {"text": "''"}, {"text": "before"}, {"text": "program"}, {"text": "trading"}, {"text": ","}, {"text": "Mr."}, {"text": "Phelan"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "this"}, {"text": "week"}, {"text": "."}, {"text": "``"}, {"text": "I"}, {"text": "would"}, {"text": "like"}, {"text": "*-1"}, {"text": "to"}, {"text": "go"}, {"text": "back"}, {"text": "to"}, {"text": "1970"}, {"text": "."}, {"text": "But"}, {"text": "we"}, {"text": "are"}, {"text": "not"}, {"text": "going"}, {"text": "back"}, {"text": "to"}, {"text": "1970"}, {"text": "."}, {"text": "''"}, {"text": "Again"}, {"text": "and"}, {"text": "again"}, {"text": ","}, {"text": "program-trading"}, {"text": "'s"}, {"text": "critics"}, {"text": "raise"}, {"text": "the"}, {"text": "``"}, {"text": "casino"}, {"text": "''"}, {"text": "theme"}, {"text": "."}, {"text": "They"}, {"text": "say"}, {"text": "0"}, {"text": "greedy"}, {"text": "market"}, {"text": "manipulators"}, {"text": "have"}, {"text": "made"}, {"text": "a"}, {"text": "shambles"}, {"text": "of"}, {"text": "the"}, {"text": "nation"}, {"text": "'s"}, {"text": "free-enterprise"}, {"text": "system"}, {"text": ","}, {"text": "*-1"}, {"text": "turning"}, {"text": "the"}, {"text": "stock"}, {"text": "market"}, {"text": "into"}, {"text": "a"}, {"text": "big"}, {"text": "gambling"}, {"text": "den"}, {"text": ","}, {"text": "with"}, {"text": "the"}, {"text": "odds"}, {"text": "heavily"}, {"text": "stacked"}, {"text": "*-2"}, {"text": "against"}, {"text": "the"}, {"text": "small"}, {"text": "investor"}, {"text": "."}, {"text": "``"}, {"text": "The"}, {"text": "public"}, {"text": "did"}, {"text": "n't"}, {"text": "come"}, {"text": "to"}, {"text": "the"}, {"text": "market"}, {"text": "*-1"}, {"text": "to"}, {"text": "play"}, {"text": "a"}, {"text": "game"}, {"text": ";"}, {"text": "they"}, {"text": "can"}, {"text": "go"}, {"text": "to"}, {"text": "Off-Track"}, {"text": "Betting"}, {"text": "for"}, {"text": "that"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "A."}, {"text": "Brean"}, {"text": "Murray"}, {"text": ","}, {"text": "chairman"}, {"text": "of"}, {"text": "Brean"}, {"text": "Murray"}, {"text": ","}, {"text": "Foster"}, {"text": "Securities"}, {"text": ","}, {"text": "a"}, {"text": "traditional"}, {"text": "money"}, {"text": "management"}, {"text": "firm"}, {"text": "."}, {"text": "The"}, {"text": "program"}, {"text": "traders"}, {"text": ","}, {"text": "on"}, {"text": "the"}, {"text": "other"}, {"text": "hand"}, {"text": ","}, {"text": "portray"}, {"text": "old-fashioned"}, {"text": "stock"}, {"text": "pickers"}, {"text": "as"}, {"text": "the"}, {"text": "Neanderthals"}, {"text": "of"}, {"text": "the"}, {"text": "industry"}, {"text": "."}, {"text": "Critics"}, {"text": "like"}, {"text": "Mr."}, {"text": "Murray"}, {"text": "``"}, {"text": "are"}, {"text": "looking"}, {"text": "for"}, {"text": "witches"}, {"text": ","}, {"text": "and"}, {"text": "people"}, {"text": "who"}, {"text": "*T*-68"}, {"text": "use"}, {"text": "computers"}, {"text": "*"}, {"text": "to"}, {"text": "trade"}, {"text": "are"}, {"text": "a"}, {"text": "convenient"}, {"text": "boogieman"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "0"}, {"text": "*T*-3"}, {"text": "J."}, {"text": "Thomas"}, {"text": "Allen"}, {"text": ","}, {"text": "president"}, {"text": "of"}, {"text": "Advanced"}, {"text": "Investment"}, {"text": "Management"}, {"text": "Inc."}, {"text": ","}, {"text": "a"}, {"text": "Pittsburgh"}, {"text": "firm"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "runs"}, {"text": "a"}, {"text": "$"}, {"text": "200"}, {"text": "million"}, {"text": "*U*"}, {"text": "fund"}, {"text": "that"}, {"text": "*T*-2"}, {"text": "uses"}, {"text": "index"}, {"text": "arbitrage"}, {"text": "."}, {"text": "``"}, {"text": "Just"}, {"text": "a"}, {"text": "blind"}, {"text": "fear"}, {"text": "of"}, {"text": "the"}, {"text": "unknown"}, {"text": "is"}, {"text": "causing"}, {"text": "them"}, {"text": "to"}, {"text": "beg"}, {"text": "the"}, {"text": "regulators"}, {"text": "for"}, {"text": "protection"}, {"text": "."}, {"text": "''"}, {"text": "For"}, {"text": "all"}, {"text": "the"}, {"text": "furor"}, {"text": ","}, {"text": "there"}, {"text": "is"}, {"text": "nothing"}, {"text": "particularly"}, {"text": "complex"}, {"text": "about"}, {"text": "the"}, {"text": "concept"}, {"text": "of"}, {"text": "stock-index"}, {"text": "arbitrage"}, {"text": ","}, {"text": "the"}, {"text": "most"}, {"text": "controversial"}, {"text": "type"}, {"text": "of"}, {"text": "computer-assisted"}, {"text": "program"}, {"text": "trading"}, {"text": "."}, {"text": "Like"}, {"text": "other"}, {"text": "forms"}, {"text": "of"}, {"text": "arbitrage"}, {"text": ","}, {"text": "it"}, {"text": "merely"}, {"text": "seeks"}, {"text": "*-1"}, {"text": "to"}, {"text": "take"}, {"text": "advantage"}, {"text": "of"}, {"text": "momentary"}, {"text": "discrepancies"}, {"text": "in"}, {"text": "the"}, {"text": "price"}, {"text": "of"}, {"text": "a"}, {"text": "single"}, {"text": "product"}, {"text": "--"}, {"text": "in"}, {"text": "this"}, {"text": "case"}, {"text": ","}, {"text": "a"}, {"text": "basket"}, {"text": "of"}, {"text": "stocks"}, {"text": "--"}, {"text": "in"}, {"text": "different"}, {"text": "markets"}, {"text": "--"}, {"text": "in"}, {"text": "this"}, {"text": "case"}, {"text": "the"}, {"text": "New"}, {"text": "York"}, {"text": "Stock"}, {"text": "Exchange"}, {"text": "and"}, {"text": "the"}, {"text": "Chicago"}, {"text": "futures"}, {"text": "markets"}, {"text": "."}, {"text": "That"}, {"text": "divergence"}, {"text": "is"}, {"text": "what"}, {"text": "stock"}, {"text": "index"}, {"text": "traders"}, {"text": "seek"}, {"text": "*T*-69"}, {"text": "."}, {"text": "When"}, {"text": "it"}, {"text": "occurs"}, {"text": "*T*-1"}, {"text": ","}, {"text": "the"}, {"text": "traders"}, {"text": "place"}, {"text": "orders"}, {"text": "*ICH*-2"}, {"text": "via"}, {"text": "computers"}, {"text": "*"}, {"text": "to"}, {"text": "buy"}, {"text": "the"}, {"text": "basket"}, {"text": "of"}, {"text": "stocks"}, {"text": "-LRB-"}, {"text": "such"}, {"text": "as"}, {"text": "the"}, {"text": "500"}, {"text": "stocks"}, {"text": "that"}, {"text": "*T*-3"}, {"text": "constitute"}, {"text": "the"}, {"text": "Standard"}, {"text": "&"}, {"text": "Poor"}, {"text": "'s"}, {"text": "500"}, {"text": "stock"}, {"text": "index"}, {"text": "-RRB-"}, {"text": "in"}, {"text": "whichever"}, {"text": "market"}, {"text": "*T*-4"}, {"text": "is"}, {"text": "cheaper"}, {"text": "and"}, {"text": "sell"}, {"text": "them"}, {"text": "in"}, {"text": "the"}, {"text": "more"}, {"text": "expensive"}, {"text": "market"}, {"text": ";"}, {"text": "they"}, {"text": "lock"}, {"text": "in"}, {"text": "the"}, {"text": "difference"}, {"text": "in"}, {"text": "price"}, {"text": "as"}, {"text": "profit"}, {"text": "."}, {"text": "Such"}, {"text": "program"}, {"text": "trades"}, {"text": ","}, {"text": "which"}, {"text": "*T*-70"}, {"text": "can"}, {"text": "involve"}, {"text": "the"}, {"text": "purchase"}, {"text": "or"}, {"text": "sale"}, {"text": "of"}, {"text": "millions"}, {"text": "of"}, {"text": "dollars"}, {"text": "of"}, {"text": "stock"}, {"text": ","}, {"text": "occur"}, {"text": "in"}, {"text": "a"}, {"text": "matter"}, {"text": "of"}, {"text": "seconds"}, {"text": "."}, {"text": "A"}, {"text": "program"}, {"text": "trade"}, {"text": "of"}, {"text": "$"}, {"text": "5"}, {"text": "million"}, {"text": "*U*"}, {"text": "of"}, {"text": "stock"}, {"text": "typically"}, {"text": "earns"}, {"text": "a"}, {"text": "razor-thin"}, {"text": "profit"}, {"text": "of"}, {"text": "$"}, {"text": "25,000"}, {"text": "*U*"}, {"text": "."}, {"text": "*-1"}, {"text": "To"}, {"text": "keep"}, {"text": "program-trading"}, {"text": "units"}, {"text": "profitable"}, {"text": "in"}, {"text": "the"}, {"text": "eyes"}, {"text": "of"}, {"text": "senior"}, {"text": "brokerage"}, {"text": "executives"}, {"text": ","}, {"text": "traders"}, {"text": "must"}, {"text": "seize"}, {"text": "every"}, {"text": "opportunity"}, {"text": "0"}, {"text": "their"}, {"text": "computers"}, {"text": "find"}, {"text": "*T*-2"}, {"text": "."}, {"text": "The"}, {"text": "speed"}, {"text": "with"}, {"text": "which"}, {"text": "such"}, {"text": "program"}, {"text": "trades"}, {"text": "take"}, {"text": "place"}, {"text": "*T*-1"}, {"text": "and"}, {"text": "the"}, {"text": "volatile"}, {"text": "price"}, {"text": "movements"}, {"text": "0"}, {"text": "they"}, {"text": "can"}, {"text": "cause"}, {"text": "*T*-2"}, {"text": "are"}, {"text": "what"}, {"text": "program"}, {"text": "trading"}, {"text": "critics"}, {"text": "profess"}, {"text": "*-3"}, {"text": "to"}, {"text": "despise"}, {"text": "*T*-4"}, {"text": "."}, {"text": "``"}, {"text": "If"}, {"text": "you"}, {"text": "continue"}, {"text": "*-2"}, {"text": "to"}, {"text": "do"}, {"text": "this"}, {"text": ","}, {"text": "the"}, {"text": "investor"}, {"text": "*ICH*-1"}, {"text": "becomes"}, {"text": "frightened"}, {"text": "--"}, {"text": "any"}, {"text": "investor"}, {"text": ":"}, {"text": "the"}, {"text": "odd"}, {"text": "lotter"}, {"text": ","}, {"text": "mutual"}, {"text": "funds"}, {"text": "and"}, {"text": "pension"}, {"text": "funds"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-3"}, {"text": "Larry"}, {"text": "Zicklin"}, {"text": ","}, {"text": "managing"}, {"text": "partner"}, {"text": "at"}, {"text": "Neuberger"}, {"text": "&"}, {"text": "Berman"}, {"text": "."}, {"text": "But"}, {"text": "many"}, {"text": "experts"}, {"text": "and"}, {"text": "traders"}, {"text": "say"}, {"text": "that"}, {"text": "program"}, {"text": "trading"}, {"text": "is"}, {"text": "n't"}, {"text": "the"}, {"text": "main"}, {"text": "reason"}, {"text": "for"}, {"text": "stock-market"}, {"text": "gyrations"}, {"text": "."}, {"text": "``"}, {"text": "I"}, {"text": "have"}, {"text": "not"}, {"text": "seen"}, {"text": "one"}, {"text": "iota"}, {"text": "of"}, {"text": "evidence"}, {"text": "''"}, {"text": "0"}, {"text": "*T*-3"}, {"text": "to"}, {"text": "support"}, {"text": "restrictions"}, {"text": "on"}, {"text": "program"}, {"text": "trading"}, {"text": "*T*-2"}, {"text": ","}, {"text": "says"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "a"}, {"text": "Vanderbilt"}, {"text": "University"}, {"text": "finance"}, {"text": "professor"}, {"text": ","}, {"text": "Hans"}, {"text": "Stoll"}, {"text": ","}, {"text": "an"}, {"text": "authority"}, {"text": "on"}, {"text": "the"}, {"text": "subject"}, {"text": "."}, {"text": "Says"}, {"text": "*ICH*-1"}, {"text": "the"}, {"text": "Big"}, {"text": "Board"}, {"text": "'s"}, {"text": "Mr."}, {"text": "Phelan"}, {"text": ","}, {"text": "``"}, {"text": "Volatility"}, {"text": "is"}, {"text": "greater"}, {"text": "than"}, {"text": "program"}, {"text": "trading"}, {"text": "."}, {"text": "''"}, {"text": "The"}, {"text": "Oct."}, {"text": "13"}, {"text": "plunge"}, {"text": "was"}, {"text": "triggered"}, {"text": "*-72"}, {"text": "not"}, {"text": "by"}, {"text": "program"}, {"text": "traders"}, {"text": ","}, {"text": "but"}, {"text": "by"}, {"text": "news"}, {"text": "of"}, {"text": "the"}, {"text": "unraveling"}, {"text": "of"}, {"text": "the"}, {"text": "$"}, {"text": "6.79"}, {"text": "billion"}, {"text": "*U*"}, {"text": "buy-out"}, {"text": "of"}, {"text": "UAL"}, {"text": "Corp"}, {"text": "."}, {"text": "*-2"}, {"text": "Unable"}, {"text": "*-3"}, {"text": "to"}, {"text": "unload"}, {"text": "UAL"}, {"text": "and"}, {"text": "other"}, {"text": "airline"}, {"text": "shares"}, {"text": ","}, {"text": "takeover-stock"}, {"text": "speculators"}, {"text": ","}, {"text": "or"}, {"text": "risk"}, {"text": "arbitragers"}, {"text": ","}, {"text": "dumped"}, {"text": "every"}, {"text": "blue-chip"}, {"text": "stock"}, {"text": "0"}, {"text": "they"}, {"text": "had"}, {"text": "*T*-1"}, {"text": "."}, {"text": "While"}, {"text": "program"}, {"text": "trades"}, {"text": "swiftly"}, {"text": "kicked"}, {"text": "in"}, {"text": ","}, {"text": "a"}, {"text": "``"}, {"text": "circuit"}, {"text": "breaker"}, {"text": "''"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "halted"}, {"text": "trading"}, {"text": "in"}, {"text": "stock"}, {"text": "futures"}, {"text": "in"}, {"text": "Chicago"}, {"text": "made"}, {"text": "some"}, {"text": "program"}, {"text": "trading"}, {"text": "impossible"}, {"text": "."}, {"text": "Susan"}, {"text": "Del"}, {"text": "Signore"}, {"text": ","}, {"text": "head"}, {"text": "trader"}, {"text": "at"}, {"text": "Travelers"}, {"text": "Investment"}, {"text": "Management"}, {"text": "Co."}, {"text": ","}, {"text": "says"}, {"text": "0"}, {"text": "critics"}, {"text": "are"}, {"text": "ignoring"}, {"text": "``"}, {"text": "the"}, {"text": "role"}, {"text": "0"}, {"text": "the"}, {"text": "-LCB-"}, {"text": "takeover"}, {"text": "stock"}, {"text": "-RCB-"}, {"text": "speculator"}, {"text": "is"}, {"text": "taking"}, {"text": "*T*-1"}, {"text": "in"}, {"text": "the"}, {"text": "market"}, {"text": "as"}, {"text": "a"}, {"text": "source"}, {"text": "of"}, {"text": "volatility"}, {"text": "."}, {"text": "''"}, {"text": "Many"}, {"text": "arbs"}, {"text": "are"}, {"text": "``"}, {"text": "overleveraged"}, {"text": ","}, {"text": "''"}, {"text": "she"}, {"text": "says"}, {"text": "0"}, {"text": "*T*-3"}, {"text": ","}, {"text": "and"}, {"text": "they"}, {"text": "``"}, {"text": "have"}, {"text": "*-1"}, {"text": "to"}, {"text": "sell"}, {"text": "when"}, {"text": "things"}, {"text": "look"}, {"text": "like"}, {"text": "they"}, {"text": "fall"}, {"text": "apart"}, {"text": "*T*-2"}, {"text": "."}, {"text": "''"}, {"text": "Like"}, {"text": "virtually"}, {"text": "everything"}, {"text": "on"}, {"text": "Wall"}, {"text": "Street"}, {"text": ","}, {"text": "the"}, {"text": "program-trading"}, {"text": "battle"}, {"text": "is"}, {"text": "over"}, {"text": "money"}, {"text": ","}, {"text": "and"}, {"text": "the"}, {"text": "traditionalists"}, {"text": "have"}, {"text": "been"}, {"text": "losing"}, {"text": "out"}, {"text": "on"}, {"text": "bundles"}, {"text": "of"}, {"text": "it"}, {"text": "to"}, {"text": "the"}, {"text": "New"}, {"text": "Guard"}, {"text": "in"}, {"text": "recent"}, {"text": "years"}, {"text": "."}, {"text": "*"}, {"text": "Take"}, {"text": "the"}, {"text": "traditional"}, {"text": "money"}, {"text": "managers"}, {"text": ","}, {"text": "or"}, {"text": "``"}, {"text": "stock"}, {"text": "pickers"}, {"text": ","}, {"text": "''"}, {"text": "as"}, {"text": "they"}, {"text": "are"}, {"text": "derisively"}, {"text": "known"}, {"text": "*-1"}, {"text": "among"}, {"text": "the"}, {"text": "computer"}, {"text": "jockeys"}, {"text": "."}, {"text": "Traditional"}, {"text": "stock"}, {"text": "managers"}, {"text": "like"}, {"text": "*-1"}, {"text": "to"}, {"text": "charge"}, {"text": "50"}, {"text": "cents"}, {"text": "to"}, {"text": "75"}, {"text": "cents"}, {"text": "for"}, {"text": "every"}, {"text": "$"}, {"text": "100"}, {"text": "*U*"}, {"text": "0"}, {"text": "they"}, {"text": "manage"}, {"text": "*T*-2"}, {"text": "for"}, {"text": "big"}, {"text": "institutional"}, {"text": "investors"}, {"text": ","}, {"text": "and"}, {"text": "higher"}, {"text": "fees"}, {"text": "for"}, {"text": "smaller"}, {"text": "investors"}, {"text": "."}, {"text": "Yet"}, {"text": "many"}, {"text": "such"}, {"text": "managers"}, {"text": "consistently"}, {"text": "fail"}, {"text": "*-2"}, {"text": "to"}, {"text": "even"}, {"text": "keep"}, {"text": "up"}, {"text": "with"}, {"text": "*RNR*-1"}, {"text": ","}, {"text": "much"}, {"text": "less"}, {"text": "beat"}, {"text": "*RNR*-1"}, {"text": ","}, {"text": "the"}, {"text": "returns"}, {"text": "of"}, {"text": "standard"}, {"text": "benchmarks"}, {"text": "like"}, {"text": "the"}, {"text": "S&P"}, {"text": "Not"}, {"text": "surprisingly"}, {"text": ","}, {"text": "old-style"}, {"text": "money"}, {"text": "managers"}, {"text": "have"}, {"text": "been"}, {"text": "losing"}, {"text": "clients"}, {"text": "to"}, {"text": "giant"}, {"text": "stock-index"}, {"text": "funds"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "use"}, {"text": "computers"}, {"text": "*-2"}, {"text": "to"}, {"text": "juggle"}, {"text": "portfolios"}, {"text": "so"}, {"text": "they"}, {"text": "mirror"}, {"text": "the"}, {"text": "S&P"}, {"text": "500"}, {"text": "."}, {"text": "The"}, {"text": "indexers"}, {"text": "charge"}, {"text": "only"}, {"text": "a"}, {"text": "few"}, {"text": "pennies"}, {"text": "per"}, {"text": "$"}, {"text": "100"}, {"text": "*U*"}, {"text": "managed"}, {"text": "*"}, {"text": "."}, {"text": "Today"}, {"text": ","}, {"text": "about"}, {"text": "$"}, {"text": "200"}, {"text": "billion"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "20"}, {"text": "%"}, {"text": "of"}, {"text": "all"}, {"text": "pension-fund"}, {"text": "stock"}, {"text": "investments"}, {"text": ","}, {"text": "is"}, {"text": "held"}, {"text": "*-73"}, {"text": "by"}, {"text": "index"}, {"text": "funds"}, {"text": "."}, {"text": "The"}, {"text": "new"}, {"text": "Wall"}, {"text": "Street"}, {"text": "of"}, {"text": "computers"}, {"text": "and"}, {"text": "automated"}, {"text": "trading"}, {"text": "threatens"}, {"text": "*-1"}, {"text": "to"}, {"text": "make"}, {"text": "dinosaurs"}, {"text": "of"}, {"text": "the"}, {"text": "49"}, {"text": "Big"}, {"text": "Board"}, {"text": "stock-specialist"}, {"text": "firms"}, {"text": "."}, {"text": "These"}, {"text": "small"}, {"text": "but"}, {"text": "influential"}, {"text": "floor"}, {"text": "brokers"}, {"text": "long"}, {"text": "have"}, {"text": "earned"}, {"text": "fat"}, {"text": "returns"}, {"text": "of"}, {"text": "30"}, {"text": "%"}, {"text": "to"}, {"text": "40"}, {"text": "%"}, {"text": "*U*"}, {"text": "a"}, {"text": "year"}, {"text": "on"}, {"text": "their"}, {"text": "capital"}, {"text": ","}, {"text": "by"}, {"text": "virtue"}, {"text": "of"}, {"text": "their"}, {"text": "monopoly"}, {"text": "in"}, {"text": "*"}, {"text": "making"}, {"text": "markets"}, {"text": "in"}, {"text": "individual"}, {"text": "stocks"}, {"text": "."}, {"text": "The"}, {"text": "specialists"}, {"text": "see"}, {"text": "any"}, {"text": "step"}, {"text": "to"}, {"text": "electronic"}, {"text": "trading"}, {"text": "as"}, {"text": "a"}, {"text": "death"}, {"text": "knell"}, {"text": "."}, {"text": "And"}, {"text": "they"}, {"text": "believe"}, {"text": "0"}, {"text": "the"}, {"text": "Big"}, {"text": "Board"}, {"text": ","}, {"text": "under"}, {"text": "Mr."}, {"text": "Phelan"}, {"text": ","}, {"text": "has"}, {"text": "abandoned"}, {"text": "their"}, {"text": "interest"}, {"text": "."}, {"text": "*-2"}, {"text": "The"}, {"text": "son"}, {"text": "of"}, {"text": "a"}, {"text": "specialist"}, {"text": "and"}, {"text": "once"}, {"text": "one"}, {"text": "himself"}, {"text": ","}, {"text": "Mr."}, {"text": "Phelan"}, {"text": "has"}, {"text": "nonetheless"}, {"text": "been"}, {"text": "striving"}, {"text": "--"}, {"text": "with"}, {"text": "products"}, {"text": "like"}, {"text": "the"}, {"text": "new"}, {"text": "stock"}, {"text": "basket"}, {"text": "that"}, {"text": "his"}, {"text": "former"}, {"text": "colleagues"}, {"text": "dislike"}, {"text": "*T*-1"}, {"text": "so"}, {"text": "much"}, {"text": "--"}, {"text": "*-2"}, {"text": "to"}, {"text": "keep"}, {"text": "index"}, {"text": "funds"}, {"text": "and"}, {"text": "other"}, {"text": "program"}, {"text": "traders"}, {"text": "from"}, {"text": "*-3"}, {"text": "taking"}, {"text": "their"}, {"text": "business"}, {"text": "to"}, {"text": "overseas"}, {"text": "markets"}, {"text": "."}, {"text": "Meanwhile"}, {"text": ","}, {"text": "specialists"}, {"text": "'"}, {"text": "trading"}, {"text": "risks"}, {"text": "have"}, {"text": "skyrocketed"}, {"text": "as"}, {"text": "a"}, {"text": "result"}, {"text": "of"}, {"text": "stock-market"}, {"text": "volatility"}, {"text": "."}, {"text": "``"}, {"text": "When"}, {"text": "the"}, {"text": "sell"}, {"text": "programs"}, {"text": "hit"}, {"text": "*T*-1"}, {"text": ","}, {"text": "you"}, {"text": "can"}, {"text": "hear"}, {"text": "the"}, {"text": "order"}, {"text": "printers"}, {"text": "start"}, {"text": "*-2"}, {"text": "to"}, {"text": "go"}, {"text": "''"}, {"text": "on"}, {"text": "the"}, {"text": "Big"}, {"text": "Board"}, {"text": "trading"}, {"text": "floor"}, {"text": ","}, {"text": "says"}, {"text": "0"}, {"text": "*T*-3"}, {"text": "one"}, {"text": "specialist"}, {"text": "there"}, {"text": "."}, {"text": "``"}, {"text": "The"}, {"text": "buyers"}, {"text": "walk"}, {"text": "away"}, {"text": ","}, {"text": "and"}, {"text": "the"}, {"text": "specialist"}, {"text": "is"}, {"text": "left"}, {"text": "*-74"}, {"text": "alone"}, {"text": "''"}, {"text": "as"}, {"text": "the"}, {"text": "buyer"}, {"text": "of"}, {"text": "last"}, {"text": "resort"}, {"text": "for"}, {"text": "his"}, {"text": "stable"}, {"text": "of"}, {"text": "stocks"}, {"text": ","}, {"text": "he"}, {"text": "contends"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "No"}, {"text": "one"}, {"text": "is"}, {"text": "more"}, {"text": "unhappy"}, {"text": "with"}, {"text": "program"}, {"text": "trading"}, {"text": "than"}, {"text": "the"}, {"text": "nation"}, {"text": "'s"}, {"text": "stockbrokers"}, {"text": "."}, {"text": "They"}, {"text": "are"}, {"text": "still"}, {"text": "trying"}, {"text": "*-1"}, {"text": "to"}, {"text": "lure"}, {"text": "back"}, {"text": "small"}, {"text": "investors"}, {"text": "spooked"}, {"text": "*"}, {"text": "by"}, {"text": "the"}, {"text": "1987"}, {"text": "stock-market"}, {"text": "crash"}, {"text": "and"}, {"text": "the"}, {"text": "market"}, {"text": "'s"}, {"text": "swings"}, {"text": "since"}, {"text": "then"}, {"text": "."}, {"text": "``"}, {"text": "Small"}, {"text": "investors"}, {"text": "are"}, {"text": "absolutely"}, {"text": "dismayed"}, {"text": "that"}, {"text": "Wall"}, {"text": "Street"}, {"text": "is"}, {"text": "stacking"}, {"text": "the"}, {"text": "deck"}, {"text": "against"}, {"text": "them"}, {"text": ","}, {"text": "and"}, {"text": "these"}, {"text": "wide"}, {"text": "swings"}, {"text": "are"}, {"text": "scaring"}, {"text": "them"}, {"text": "to"}, {"text": "death"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "Raymond"}, {"text": "A."}, {"text": "Mason"}, {"text": ","}, {"text": "chairman"}, {"text": "of"}, {"text": "regional"}, {"text": "broker"}, {"text": "Legg"}, {"text": "Mason"}, {"text": "Inc."}, {"text": "in"}, {"text": "Baltimore"}, {"text": "."}, {"text": "Stockbrokers"}, {"text": "'"}, {"text": "business"}, {"text": "and"}, {"text": "pay"}, {"text": "has"}, {"text": "been"}, {"text": "falling"}, {"text": "."}, {"text": "Last"}, {"text": "year"}, {"text": ","}, {"text": "the"}, {"text": "average"}, {"text": "broker"}, {"text": "earned"}, {"text": "$"}, {"text": "71,309"}, {"text": "*U*"}, {"text": ","}, {"text": "24"}, {"text": "%"}, {"text": "lower"}, {"text": "than"}, {"text": "in"}, {"text": "1987"}, {"text": "."}, {"text": "Corporate"}, {"text": "executives"}, {"text": "resent"}, {"text": "that"}, {"text": "their"}, {"text": "company"}, {"text": "'s"}, {"text": "stock"}, {"text": "has"}, {"text": "been"}, {"text": "transformed"}, {"text": "*-75"}, {"text": "into"}, {"text": "a"}, {"text": "nameless"}, {"text": "piece"}, {"text": "of"}, {"text": "a"}, {"text": "stock-index"}, {"text": "basket"}, {"text": "."}, {"text": "Index"}, {"text": "traders"}, {"text": "who"}, {"text": "*T*-71"}, {"text": "buy"}, {"text": "all"}, {"text": "500"}, {"text": "stocks"}, {"text": "in"}, {"text": "the"}, {"text": "S&P"}, {"text": "500"}, {"text": "often"}, {"text": "do"}, {"text": "n't"}, {"text": "even"}, {"text": "know"}, {"text": "what"}, {"text": "the"}, {"text": "companies"}, {"text": "0"}, {"text": "they"}, {"text": "own"}, {"text": "*T*-1"}, {"text": "actually"}, {"text": "do"}, {"text": "*T*-2"}, {"text": ","}, {"text": "complains"}, {"text": "0"}, {"text": "*T*-3"}, {"text": "Andrew"}, {"text": "Sigler"}, {"text": ","}, {"text": "chairman"}, {"text": "of"}, {"text": "Champion"}, {"text": "International"}, {"text": "Corp"}, {"text": "."}, {"text": "``"}, {"text": "Do"}, {"text": "you"}, {"text": "make"}, {"text": "sweatshirts"}, {"text": "or"}, {"text": "sparkplugs"}, {"text": "?"}, {"text": "Oh"}, {"text": ","}, {"text": "you"}, {"text": "'re"}, {"text": "in"}, {"text": "the"}, {"text": "paper"}, {"text": "business"}, {"text": ","}, {"text": "''"}, {"text": "is"}, {"text": "one"}, {"text": "reaction"}, {"text": "0"}, {"text": "Mr."}, {"text": "Sigler"}, {"text": "says"}, {"text": "0"}, {"text": "he"}, {"text": "'s"}, {"text": "gotten"}, {"text": "*T*-1"}, {"text": "from"}, {"text": "his"}, {"text": "big"}, {"text": "institutional"}, {"text": "shareholders"}, {"text": "."}, {"text": "By"}, {"text": "this"}, {"text": "September"}, {"text": ","}, {"text": "program"}, {"text": "traders"}, {"text": "were"}, {"text": "doing"}, {"text": "a"}, {"text": "record"}, {"text": "13.8"}, {"text": "%"}, {"text": "of"}, {"text": "the"}, {"text": "Big"}, {"text": "Board"}, {"text": "'s"}, {"text": "average"}, {"text": "daily"}, {"text": "trading"}, {"text": "volume"}, {"text": "."}, {"text": "Among"}, {"text": "the"}, {"text": "top"}, {"text": "practitioners"}, {"text": "were"}, {"text": "*T*-1"}, {"text": "Wall"}, {"text": "Street"}, {"text": "blue"}, {"text": "bloods"}, {"text": ":"}, {"text": "Morgan"}, {"text": "Stanley"}, {"text": "&"}, {"text": "Co."}, {"text": ","}, {"text": "Kidder"}, {"text": "Peabody"}, {"text": ","}, {"text": "Merrill"}, {"text": "Lynch"}, {"text": ","}, {"text": "Salomon"}, {"text": "Brothers"}, {"text": "Inc."}, {"text": "and"}, {"text": "PaineWebber"}, {"text": "Group"}, {"text": "Inc"}, {"text": "."}, {"text": "But"}, {"text": "then"}, {"text": "came"}, {"text": "Oct."}, {"text": "13"}, {"text": "and"}, {"text": "the"}, {"text": "negative"}, {"text": "publicity"}, {"text": "orchestrated"}, {"text": "*"}, {"text": "by"}, {"text": "the"}, {"text": "Old"}, {"text": "Guard"}, {"text": ","}, {"text": "particularly"}, {"text": "against"}, {"text": "index"}, {"text": "arbitrage"}, {"text": "."}, {"text": "The"}, {"text": "indexers"}, {"text": "'"}, {"text": "strategy"}, {"text": "for"}, {"text": "the"}, {"text": "moment"}, {"text": "is"}, {"text": "*"}, {"text": "to"}, {"text": "hunker"}, {"text": "down"}, {"text": "and"}, {"text": "let"}, {"text": "the"}, {"text": "furor"}, {"text": "die"}, {"text": "."}, {"text": "``"}, {"text": "There"}, {"text": "'s"}, {"text": "a"}, {"text": "lynch-mob"}, {"text": "psychology"}, {"text": "right"}, {"text": "now"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "the"}, {"text": "top"}, {"text": "program-trading"}, {"text": "official"}, {"text": "at"}, {"text": "a"}, {"text": "Wall"}, {"text": "Street"}, {"text": "firm"}, {"text": "."}, {"text": "``"}, {"text": "Wall"}, {"text": "Street"}, {"text": "'s"}, {"text": "cash"}, {"text": "cow"}, {"text": "has"}, {"text": "been"}, {"text": "gored"}, {"text": "*-1"}, {"text": ","}, {"text": "but"}, {"text": "I"}, {"text": "do"}, {"text": "n't"}, {"text": "think"}, {"text": "0"}, {"text": "anyone"}, {"text": "has"}, {"text": "proven"}, {"text": "that"}, {"text": "index"}, {"text": "arbitrage"}, {"text": "is"}, {"text": "the"}, {"text": "problem"}, {"text": "."}, {"text": "''"}, {"text": "Too"}, {"text": "much"}, {"text": "money"}, {"text": "*ICH*-1"}, {"text": "is"}, {"text": "at"}, {"text": "stake"}, {"text": "for"}, {"text": "program"}, {"text": "traders"}, {"text": "to"}, {"text": "give"}, {"text": "up"}, {"text": "."}, {"text": "For"}, {"text": "example"}, {"text": ","}, {"text": "stock-index"}, {"text": "futures"}, {"text": "began"}, {"text": "trading"}, {"text": "in"}, {"text": "Chicago"}, {"text": "in"}, {"text": "1982"}, {"text": ","}, {"text": "and"}, {"text": "within"}, {"text": "two"}, {"text": "years"}, {"text": "they"}, {"text": "were"}, {"text": "the"}, {"text": "fastest-growing"}, {"text": "futures"}, {"text": "contract"}, {"text": "ever"}, {"text": "launched"}, {"text": "*"}, {"text": "."}, {"text": "Stock"}, {"text": "futures"}, {"text": "trading"}, {"text": "has"}, {"text": "minted"}, {"text": "dozens"}, {"text": "of"}, {"text": "millionaires"}, {"text": "in"}, {"text": "their"}, {"text": "20s"}, {"text": "and"}, {"text": "30s"}, {"text": "."}, {"text": "Now"}, {"text": ","}, {"text": "on"}, {"text": "a"}, {"text": "good"}, {"text": "day"}, {"text": ","}, {"text": "Chicago"}, {"text": "'s"}, {"text": "stock-index"}, {"text": "traders"}, {"text": "trade"}, {"text": "more"}, {"text": "dollars"}, {"text": "worth"}, {"text": "of"}, {"text": "stock"}, {"text": "futures"}, {"text": "than"}, {"text": "the"}, {"text": "Big"}, {"text": "Board"}, {"text": "trades"}, {"text": "in"}, {"text": "stock"}, {"text": "."}, {"text": "Now"}, {"text": "the"}, {"text": "stage"}, {"text": "is"}, {"text": "set"}, {"text": "*-76"}, {"text": "for"}, {"text": "the"}, {"text": "battle"}, {"text": "to"}, {"text": "play"}, {"text": "out"}, {"text": "."}, {"text": "The"}, {"text": "anti-programmers"}, {"text": "are"}, {"text": "getting"}, {"text": "some"}, {"text": "helpful"}, {"text": "thunder"}, {"text": "from"}, {"text": "Congress"}, {"text": "."}, {"text": "Program"}, {"text": "traders"}, {"text": "'"}, {"text": "``"}, {"text": "power"}, {"text": "*"}, {"text": "to"}, {"text": "create"}, {"text": "total"}, {"text": "panic"}, {"text": "is"}, {"text": "so"}, {"text": "great"}, {"text": "that"}, {"text": "they"}, {"text": "ca"}, {"text": "n't"}, {"text": "be"}, {"text": "allowed"}, {"text": "*-1"}, {"text": "to"}, {"text": "have"}, {"text": "their"}, {"text": "way"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "Rep."}, {"text": "Edward"}, {"text": "Markey"}, {"text": ","}, {"text": "a"}, {"text": "Massachusetts"}, {"text": "Democrat"}, {"text": "."}, {"text": "``"}, {"text": "We"}, {"text": "have"}, {"text": "*-1"}, {"text": "to"}, {"text": "have"}, {"text": "a"}, {"text": "system"}, {"text": "that"}, {"text": "*T*-2"}, {"text": "says"}, {"text": "to"}, {"text": "those"}, {"text": "largest"}, {"text": "investors"}, {"text": ":"}, {"text": "`"}, {"text": "*"}, {"text": "Sit"}, {"text": "down"}, {"text": "!"}, {"text": "You"}, {"text": "will"}, {"text": "not"}, {"text": "panic"}, {"text": ","}, {"text": "you"}, {"text": "will"}, {"text": "not"}, {"text": "put"}, {"text": "the"}, {"text": "financial"}, {"text": "system"}, {"text": "in"}, {"text": "jeopardy"}, {"text": "."}, {"text": "'"}, {"text": "''"}, {"text": "But"}, {"text": "the"}, {"text": "prospects"}, {"text": "for"}, {"text": "legislation"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "targets"}, {"text": "program"}, {"text": "trading"}, {"text": "is"}, {"text": "unlikely"}, {"text": "anytime"}, {"text": "soon"}, {"text": "."}, {"text": "Many"}, {"text": "people"}, {"text": ","}, {"text": "including"}, {"text": "the"}, {"text": "Big"}, {"text": "Board"}, {"text": ","}, {"text": "think"}, {"text": "that"}, {"text": "it"}, {"text": "'s"}, {"text": "too"}, {"text": "late"}, {"text": "*"}, {"text": "to"}, {"text": "put"}, {"text": "the"}, {"text": "genie"}, {"text": "back"}, {"text": "in"}, {"text": "the"}, {"text": "bottle"}, {"text": "."}, {"text": "The"}, {"text": "Big"}, {"text": "Board"}, {"text": "'s"}, {"text": "directors"}, {"text": "meet"}, {"text": "today"}, {"text": "*-1"}, {"text": "to"}, {"text": "approve"}, {"text": "some"}, {"text": "program-trading"}, {"text": "restrictions"}, {"text": ","}, {"text": "but"}, {"text": "a"}, {"text": "total"}, {"text": "ban"}, {"text": "is"}, {"text": "n't"}, {"text": "being"}, {"text": "considered"}, {"text": "*-77"}, {"text": ","}, {"text": "Big"}, {"text": "Board"}, {"text": "officials"}, {"text": "say"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "."}, {"text": "``"}, {"text": "You"}, {"text": "'re"}, {"text": "not"}, {"text": "going"}, {"text": "*-2"}, {"text": "to"}, {"text": "stop"}, {"text": "the"}, {"text": "idea"}, {"text": "of"}, {"text": "*"}, {"text": "trading"}, {"text": "a"}, {"text": "basket"}, {"text": "of"}, {"text": "stocks"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "Vanderbilt"}, {"text": "'s"}, {"text": "Prof."}, {"text": "Stoll"}, {"text": "."}, {"text": "``"}, {"text": "Program"}, {"text": "trading"}, {"text": "is"}, {"text": "here"}, {"text": "*-1"}, {"text": "to"}, {"text": "stay"}, {"text": ","}, {"text": "and"}, {"text": "computers"}, {"text": "are"}, {"text": "here"}, {"text": "*-2"}, {"text": "to"}, {"text": "stay"}, {"text": ","}, {"text": "and"}, {"text": "we"}, {"text": "just"}, {"text": "need"}, {"text": "*-3"}, {"text": "to"}, {"text": "understand"}, {"text": "it"}, {"text": "."}, {"text": "''"}, {"text": "Short"}, {"text": "of"}, {"text": "a"}, {"text": "total"}, {"text": "ban"}, {"text": ","}, {"text": "some"}, {"text": "anti-programmers"}, {"text": "have"}, {"text": "proposed"}, {"text": "several"}, {"text": "middle-ground"}, {"text": "reforms"}, {"text": ","}, {"text": "which"}, {"text": "they"}, {"text": "say"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "would"}, {"text": "take"}, {"text": "away"}, {"text": "certain"}, {"text": "advantages"}, {"text": "0"}, {"text": "program"}, {"text": "traders"}, {"text": "currently"}, {"text": "enjoy"}, {"text": "*T*-2"}, {"text": "in"}, {"text": "the"}, {"text": "marketplace"}, {"text": "that"}, {"text": "other"}, {"text": "investors"}, {"text": "do"}, {"text": "n't"}, {"text": "*T*-3"}, {"text": "."}, {"text": "One"}, {"text": "such"}, {"text": "proposal"}, {"text": "regarding"}, {"text": "stock-index"}, {"text": "futures"}, {"text": "is"}, {"text": "an"}, {"text": "increase"}, {"text": "in"}, {"text": "the"}, {"text": "margin"}, {"text": "requirement"}, {"text": "--"}, {"text": "or"}, {"text": "the"}, {"text": "``"}, {"text": "good-faith"}, {"text": "''"}, {"text": "payment"}, {"text": "of"}, {"text": "cash"}, {"text": "needed"}, {"text": "*"}, {"text": "to"}, {"text": "trade"}, {"text": "them"}, {"text": "--"}, {"text": "to"}, {"text": "about"}, {"text": "the"}, {"text": "same"}, {"text": "level"}, {"text": "as"}, {"text": "the"}, {"text": "margin"}, {"text": "requirement"}, {"text": "for"}, {"text": "stocks"}, {"text": "."}, {"text": "Currently"}, {"text": ","}, {"text": "margins"}, {"text": "on"}, {"text": "stock"}, {"text": "futures"}, {"text": "purchases"}, {"text": "are"}, {"text": "much"}, {"text": "lower"}, {"text": "--"}, {"text": "roughly"}, {"text": "7"}, {"text": "%"}, {"text": "compared"}, {"text": "with"}, {"text": "50"}, {"text": "%"}, {"text": "for"}, {"text": "stocks"}, {"text": "--"}, {"text": "*"}, {"text": "making"}, {"text": "the"}, {"text": "futures"}, {"text": "market"}, {"text": "much"}, {"text": "faster"}, {"text": "and"}, {"text": "potentially"}, {"text": "more"}, {"text": "speculative"}, {"text": "."}, {"text": "Program"}, {"text": "trading"}, {"text": "critics"}, {"text": "also"}, {"text": "want"}, {"text": "the"}, {"text": "Federal"}, {"text": "Reserve"}, {"text": "Board"}, {"text": ","}, {"text": "rather"}, {"text": "than"}, {"text": "the"}, {"text": "futures"}, {"text": "industry"}, {"text": ","}, {"text": "to"}, {"text": "set"}, {"text": "such"}, {"text": "margins"}, {"text": "."}, {"text": "Futures"}, {"text": "traders"}, {"text": "respond"}, {"text": "that"}, {"text": "low"}, {"text": "margins"}, {"text": "help"}, {"text": "*-1"}, {"text": "keep"}, {"text": "their"}, {"text": "markets"}, {"text": "active"}, {"text": "."}, {"text": "Higher"}, {"text": "margins"}, {"text": "would"}, {"text": "chase"}, {"text": "away"}, {"text": "dozens"}, {"text": "of"}, {"text": "smaller"}, {"text": "traders"}, {"text": "who"}, {"text": "*T*-72"}, {"text": "help"}, {"text": "larger"}, {"text": "traders"}, {"text": "buy"}, {"text": "and"}, {"text": "sell"}, {"text": ","}, {"text": "they"}, {"text": "say"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Another"}, {"text": "proposed"}, {"text": "reform"}, {"text": "is"}, {"text": "*"}, {"text": "to"}, {"text": "have"}, {"text": "program"}, {"text": "traders"}, {"text": "answer"}, {"text": "to"}, {"text": "an"}, {"text": "``"}, {"text": "uptick"}, {"text": "rule"}, {"text": "''"}, {"text": "a"}, {"text": "reform"}, {"text": "instituted"}, {"text": "*"}, {"text": "after"}, {"text": "the"}, {"text": "Great"}, {"text": "Crash"}, {"text": "of"}, {"text": "1929"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "protects"}, {"text": "against"}, {"text": "stocks"}, {"text": "being"}, {"text": "relentlessly"}, {"text": "beaten"}, {"text": "*-2"}, {"text": "downward"}, {"text": "by"}, {"text": "those"}, {"text": "seeking"}, {"text": "*"}, {"text": "to"}, {"text": "profit"}, {"text": "from"}, {"text": "lower"}, {"text": "prices"}, {"text": ","}, {"text": "namely"}, {"text": "short"}, {"text": "sellers"}, {"text": "."}, {"text": "The"}, {"text": "Big"}, {"text": "Board"}, {"text": "'s"}, {"text": "uptick"}, {"text": "rule"}, {"text": "prevents"}, {"text": "the"}, {"text": "short"}, {"text": "sale"}, {"text": "of"}, {"text": "a"}, {"text": "stock"}, {"text": "when"}, {"text": "the"}, {"text": "stock"}, {"text": "is"}, {"text": "falling"}, {"text": "in"}, {"text": "price"}, {"text": "*T*-1"}, {"text": "."}, {"text": "But"}, {"text": "in"}, {"text": "1986"}, {"text": ","}, {"text": "program"}, {"text": "traders"}, {"text": "received"}, {"text": "what"}, {"text": "*T*-73"}, {"text": "amounted"}, {"text": "to"}, {"text": "an"}, {"text": "exemption"}, {"text": "from"}, {"text": "the"}, {"text": "uptick"}, {"text": "rule"}, {"text": "in"}, {"text": "certain"}, {"text": "situations"}, {"text": ","}, {"text": "*"}, {"text": "to"}, {"text": "make"}, {"text": "it"}, {"text": "*EXP*-1"}, {"text": "easier"}, {"text": "*"}, {"text": "to"}, {"text": "link"}, {"text": "the"}, {"text": "stock"}, {"text": "and"}, {"text": "futures"}, {"text": "markets"}, {"text": "."}, {"text": "A"}, {"text": "reinstatement"}, {"text": "of"}, {"text": "the"}, {"text": "uptick"}, {"text": "rule"}, {"text": "for"}, {"text": "program"}, {"text": "traders"}, {"text": "would"}, {"text": "slow"}, {"text": "their"}, {"text": "activity"}, {"text": "considerably"}, {"text": "."}, {"text": "Program"}, {"text": "traders"}, {"text": "argue"}, {"text": "that"}, {"text": "a"}, {"text": "reinstatement"}, {"text": "of"}, {"text": "the"}, {"text": "rule"}, {"text": "would"}, {"text": "destroy"}, {"text": "the"}, {"text": "``"}, {"text": "pricing"}, {"text": "efficiency"}, {"text": "''"}, {"text": "of"}, {"text": "the"}, {"text": "futures"}, {"text": "and"}, {"text": "stock"}, {"text": "markets"}, {"text": "."}, {"text": "James"}, {"text": "A."}, {"text": "White"}, {"text": "contributed"}, {"text": "to"}, {"text": "this"}, {"text": "article"}, {"text": "."}, {"text": "Fundamentalists"}, {"text": "Jihad"}, {"text": "Big"}, {"text": "Board"}, {"text": "Chairman"}, {"text": "John"}, {"text": "Phelan"}, {"text": "said"}, {"text": "yesterday"}, {"text": "that"}, {"text": "he"}, {"text": "could"}, {"text": "support"}, {"text": "*"}, {"text": "letting"}, {"text": "federal"}, {"text": "regulators"}, {"text": "suspend"}, {"text": "program"}, {"text": "trading"}, {"text": "during"}, {"text": "wild"}, {"text": "stock-price"}, {"text": "swings"}, {"text": "."}, {"text": "Thus"}, {"text": "the"}, {"text": "band-wagon"}, {"text": "psychology"}, {"text": "of"}, {"text": "recent"}, {"text": "days"}, {"text": "picks"}, {"text": "up"}, {"text": "new"}, {"text": "impetus"}, {"text": "."}, {"text": "Index"}, {"text": "arbitrage"}, {"text": "is"}, {"text": "a"}, {"text": "common"}, {"text": "form"}, {"text": "of"}, {"text": "program"}, {"text": "trading"}, {"text": "."}, {"text": "As"}, {"text": "*"}, {"text": "usually"}, {"text": "practiced"}, {"text": "*-1"}, {"text": "it"}, {"text": "takes"}, {"text": "advantage"}, {"text": "of"}, {"text": "a"}, {"text": "rather"}, {"text": "basic"}, {"text": "concept"}, {"text": ":"}, {"text": "Two"}, {"text": "separate"}, {"text": "markets"}, {"text": "in"}, {"text": "different"}, {"text": "locations"}, {"text": ","}, {"text": "trading"}, {"text": "basically"}, {"text": "the"}, {"text": "same"}, {"text": "widgets"}, {"text": ","}, {"text": "ca"}, {"text": "n't"}, {"text": "trade"}, {"text": "them"}, {"text": "for"}, {"text": "long"}, {"text": "at"}, {"text": "prices"}, {"text": "that"}, {"text": "*T*-74"}, {"text": "are"}, {"text": "widely"}, {"text": "different"}, {"text": "."}, {"text": "In"}, {"text": "index"}, {"text": "arbitrage"}, {"text": ","}, {"text": "the"}, {"text": "widget"}, {"text": "is"}, {"text": "the"}, {"text": "S&P"}, {"text": "500"}, {"text": ","}, {"text": "and"}, {"text": "its"}, {"text": "price"}, {"text": "is"}, {"text": "constantly"}, {"text": "compared"}, {"text": "between"}, {"text": "the"}, {"text": "futures"}, {"text": "market"}, {"text": "in"}, {"text": "Chicago"}, {"text": "and"}, {"text": "the"}, {"text": "stock"}, {"text": "markets"}, {"text": "largely"}, {"text": "in"}, {"text": "New"}, {"text": "York"}, {"text": "."}, {"text": "*-1"}, {"text": "To"}, {"text": "profit"}, {"text": "from"}, {"text": "an"}, {"text": "index-arbitrage"}, {"text": "opportunity"}, {"text": ","}, {"text": "someone"}, {"text": "who"}, {"text": "*T*-75"}, {"text": "owns"}, {"text": "the"}, {"text": "S&P"}, {"text": "500"}, {"text": "widget"}, {"text": "in"}, {"text": "New"}, {"text": "York"}, {"text": "must"}, {"text": "sell"}, {"text": "it"}, {"text": "and"}, {"text": "replace"}, {"text": "it"}, {"text": "with"}, {"text": "a"}, {"text": "cheaper"}, {"text": "S&P"}, {"text": "500"}, {"text": "widget"}, {"text": "in"}, {"text": "Chicago"}, {"text": "."}, {"text": "If"}, {"text": "the"}, {"text": "money"}, {"text": "manager"}, {"text": "performing"}, {"text": "this"}, {"text": "service"}, {"text": "is"}, {"text": "being"}, {"text": "paid"}, {"text": "by"}, {"text": "his"}, {"text": "clients"}, {"text": "*-78"}, {"text": "to"}, {"text": "match"}, {"text": "or"}, {"text": "beat"}, {"text": "the"}, {"text": "return"}, {"text": "of"}, {"text": "the"}, {"text": "S&P"}, {"text": "500"}, {"text": "index"}, {"text": ","}, {"text": "he"}, {"text": "is"}, {"text": "likely"}, {"text": "*-1"}, {"text": "to"}, {"text": "remain"}, {"text": "fully"}, {"text": "invested"}, {"text": "at"}, {"text": "all"}, {"text": "times"}, {"text": "."}, {"text": "-LRB-"}, {"text": "Few"}, {"text": ","}, {"text": "if"}, {"text": "any"}, {"text": ","}, {"text": "index-fund"}, {"text": "managers"}, {"text": "will"}, {"text": "risk"}, {"text": "*-1"}, {"text": "leveraging"}, {"text": "performance"}, {"text": "by"}, {"text": "*-1"}, {"text": "owning"}, {"text": "more"}, {"text": "than"}, {"text": "100"}, {"text": "%"}, {"text": "exposure"}, {"text": "to"}, {"text": "stocks"}, {"text": ","}, {"text": "and"}, {"text": "equally"}, {"text": "few"}, {"text": "will"}, {"text": "want"}, {"text": "*-2"}, {"text": "to"}, {"text": "own"}, {"text": "less"}, {"text": "than"}, {"text": "a"}, {"text": "100"}, {"text": "%"}, {"text": "position"}, {"text": "should"}, {"text": "stocks"}, {"text": "rise"}, {"text": "."}, {"text": "-RRB-"}, {"text": "By"}, {"text": "*-1"}, {"text": "constantly"}, {"text": "seeking"}, {"text": "*-2"}, {"text": "to"}, {"text": "own"}, {"text": "the"}, {"text": "cheapest"}, {"text": "widget"}, {"text": ","}, {"text": "index-arbitrage"}, {"text": "traders"}, {"text": "hope"}, {"text": "*-1"}, {"text": "to"}, {"text": "add"}, {"text": "between"}, {"text": "1"}, {"text": "%"}, {"text": "and"}, {"text": "3"}, {"text": "%"}, {"text": "*U*"}, {"text": "to"}, {"text": "the"}, {"text": "annual"}, {"text": "return"}, {"text": "of"}, {"text": "the"}, {"text": "S&P"}, {"text": "500"}, {"text": "."}, {"text": "That"}, {"text": "represents"}, {"text": "a"}, {"text": "very"}, {"text": "thin"}, {"text": "``"}, {"text": "excess"}, {"text": "''"}, {"text": "return"}, {"text": ","}, {"text": "certainly"}, {"text": "far"}, {"text": "less"}, {"text": "than"}, {"text": "what"}, {"text": "most"}, {"text": "fundamental"}, {"text": "stock"}, {"text": "pickers"}, {"text": "claim"}, {"text": "*-1"}, {"text": "to"}, {"text": "seek"}, {"text": "*T*-2"}, {"text": "as"}, {"text": "their"}, {"text": "performance"}, {"text": "objective"}, {"text": "."}, {"text": "The"}, {"text": "fact"}, {"text": "that"}, {"text": "a"}, {"text": "vast"}, {"text": "majority"}, {"text": "of"}, {"text": "fundamentalist"}, {"text": "money"}, {"text": "managers"}, {"text": "fail"}, {"text": "*-1"}, {"text": "to"}, {"text": "beat"}, {"text": "the"}, {"text": "S&P"}, {"text": "500"}, {"text": "may"}, {"text": "contribute"}, {"text": "to"}, {"text": "the"}, {"text": "hysteria"}, {"text": "surrounding"}, {"text": "the"}, {"text": "issue"}, {"text": "."}, {"text": "As"}, {"text": "more"}, {"text": "managers"}, {"text": "pursue"}, {"text": "the"}, {"text": "index-arbitrage"}, {"text": "strategy"}, {"text": ","}, {"text": "these"}, {"text": "small"}, {"text": "opportunities"}, {"text": "between"}, {"text": "markets"}, {"text": "will"}, {"text": "be"}, {"text": "reduced"}, {"text": "*-1"}, {"text": "and"}, {"text": ","}, {"text": "eventually"}, {"text": ","}, {"text": "eliminated"}, {"text": "*-1"}, {"text": "."}, {"text": "The"}, {"text": "current"}, {"text": "opportunities"}, {"text": "arise"}, {"text": "because"}, {"text": "the"}, {"text": "process"}, {"text": "for"}, {"text": "*"}, {"text": "executing"}, {"text": "a"}, {"text": "buy"}, {"text": "or"}, {"text": "sell"}, {"text": "order"}, {"text": "in"}, {"text": "the"}, {"text": "actual"}, {"text": "stocks"}, {"text": "that"}, {"text": "*T*-76"}, {"text": "make"}, {"text": "up"}, {"text": "the"}, {"text": "S&P"}, {"text": "500"}, {"text": "is"}, {"text": "more"}, {"text": "cumbersome"}, {"text": "than"}, {"text": "*"}, {"text": "transacting"}, {"text": "in"}, {"text": "the"}, {"text": "futures"}, {"text": "market"}, {"text": "."}, {"text": "The"}, {"text": "New"}, {"text": "York"}, {"text": "Stock"}, {"text": "Exchange"}, {"text": "'s"}, {"text": "attempt"}, {"text": "*"}, {"text": "to"}, {"text": "introduce"}, {"text": "a"}, {"text": "new"}, {"text": "portfolio"}, {"text": "basket"}, {"text": "is"}, {"text": "evidence"}, {"text": "of"}, {"text": "investors"}, {"text": "'"}, {"text": "desires"}, {"text": "*"}, {"text": "to"}, {"text": "make"}, {"text": "fast"}, {"text": "and"}, {"text": "easy"}, {"text": "transactions"}, {"text": "of"}, {"text": "large"}, {"text": "numbers"}, {"text": "of"}, {"text": "shares"}, {"text": "."}, {"text": "So"}, {"text": "if"}, {"text": "index"}, {"text": "arbitrage"}, {"text": "is"}, {"text": "simply"}, {"text": "*"}, {"text": "taking"}, {"text": "advantage"}, {"text": "of"}, {"text": "thin"}, {"text": "inefficiencies"}, {"text": "between"}, {"text": "two"}, {"text": "markets"}, {"text": "for"}, {"text": "the"}, {"text": "same"}, {"text": "widget"}, {"text": ","}, {"text": "how"}, {"text": "did"}, {"text": "``"}, {"text": "program"}, {"text": "trading"}, {"text": "''"}, {"text": "evolve"}, {"text": "into"}, {"text": "the"}, {"text": "evil"}, {"text": "creature"}, {"text": "that"}, {"text": "*T*-2"}, {"text": "is"}, {"text": "evoking"}, {"text": "the"}, {"text": "curses"}, {"text": "of"}, {"text": "so"}, {"text": "many"}, {"text": "observers"}, {"text": "*T*-1"}, {"text": "?"}, {"text": "All"}, {"text": "arguments"}, {"text": "against"}, {"text": "program"}, {"text": "trading"}, {"text": ","}, {"text": "even"}, {"text": "those"}, {"text": "pressed"}, {"text": "*"}, {"text": "without"}, {"text": "fact"}, {"text": ","}, {"text": "conclude"}, {"text": "with"}, {"text": "three"}, {"text": "expected"}, {"text": "results"}, {"text": "after"}, {"text": "``"}, {"text": "reforms"}, {"text": "''"}, {"text": "are"}, {"text": "implemented"}, {"text": "*-1"}, {"text": ":"}, {"text": "1"}, {"text": "-RRB-"}, {"text": "reduced"}, {"text": "volatility"}, {"text": ","}, {"text": "2"}, {"text": "-RRB-"}, {"text": "a"}, {"text": "long-term"}, {"text": "investment"}, {"text": "focus"}, {"text": ","}, {"text": "and"}, {"text": "3"}, {"text": "-RRB-"}, {"text": "a"}, {"text": "level"}, {"text": "playing"}, {"text": "field"}, {"text": "for"}, {"text": "the"}, {"text": "small"}, {"text": "investor"}, {"text": "."}, {"text": "But"}, {"text": "many"}, {"text": "of"}, {"text": "these"}, {"text": "reforms"}, {"text": "are"}, {"text": "unneeded"}, {"text": ","}, {"text": "even"}, {"text": "harmful"}, {"text": "."}, {"text": "*"}, {"text": "Reducing"}, {"text": "volatility"}, {"text": "."}, {"text": "An"}, {"text": "index-arbitrage"}, {"text": "trade"}, {"text": "is"}, {"text": "never"}, {"text": "executed"}, {"text": "unless"}, {"text": "there"}, {"text": "is"}, {"text": "sufficient"}, {"text": "difference"}, {"text": "between"}, {"text": "the"}, {"text": "markets"}, {"text": "in"}, {"text": "New"}, {"text": "York"}, {"text": "and"}, {"text": "Chicago"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "to"}, {"text": "cover"}, {"text": "all"}, {"text": "transaction"}, {"text": "costs"}, {"text": "."}, {"text": "Arbitrage"}, {"text": "does"}, {"text": "n't"}, {"text": "cause"}, {"text": "volatility"}, {"text": ";"}, {"text": "it"}, {"text": "responds"}, {"text": "to"}, {"text": "it"}, {"text": "."}, {"text": "*"}, {"text": "Think"}, {"text": "about"}, {"text": "what"}, {"text": "*T*-1"}, {"text": "causes"}, {"text": "the"}, {"text": "difference"}, {"text": "in"}, {"text": "prices"}, {"text": "between"}, {"text": "the"}, {"text": "two"}, {"text": "markets"}, {"text": "for"}, {"text": "S&P"}, {"text": "500"}, {"text": "stocks"}, {"text": "--"}, {"text": "usually"}, {"text": "it"}, {"text": "is"}, {"text": "large"}, {"text": "investors"}, {"text": "initiating"}, {"text": "a"}, {"text": "buy"}, {"text": "or"}, {"text": "sell"}, {"text": "in"}, {"text": "Chicago"}, {"text": "."}, {"text": "A"}, {"text": "large"}, {"text": "investor"}, {"text": "will"}, {"text": "likely"}, {"text": "cause"}, {"text": "the"}, {"text": "futures"}, {"text": "market"}, {"text": "to"}, {"text": "decline"}, {"text": "when"}, {"text": "he"}, {"text": "sells"}, {"text": "his"}, {"text": "futures"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Arbitrage"}, {"text": "simply"}, {"text": "transfers"}, {"text": "his"}, {"text": "selling"}, {"text": "pressure"}, {"text": "from"}, {"text": "Chicago"}, {"text": "to"}, {"text": "New"}, {"text": "York"}, {"text": ","}, {"text": "while"}, {"text": "*-1"}, {"text": "functioning"}, {"text": "as"}, {"text": "a"}, {"text": "buyer"}, {"text": "in"}, {"text": "Chicago"}, {"text": "."}, {"text": "The"}, {"text": "start"}, {"text": "of"}, {"text": "the"}, {"text": "whole"}, {"text": "process"}, {"text": "is"}, {"text": "the"}, {"text": "key"}, {"text": "-"}, {"text": "someone"}, {"text": "must"}, {"text": "fundamentally"}, {"text": "increase"}, {"text": "or"}, {"text": "decrease"}, {"text": "his"}, {"text": "ownership"}, {"text": "in"}, {"text": "widgets"}, {"text": "*-1"}, {"text": "to"}, {"text": "make"}, {"text": "widget"}, {"text": "prices"}, {"text": "move"}, {"text": "."}, {"text": "Why"}, {"text": "does"}, {"text": "this"}, {"text": "large"}, {"text": "hypothetical"}, {"text": "seller"}, {"text": "trade"}, {"text": "in"}, {"text": "Chicago"}, {"text": "instead"}, {"text": "of"}, {"text": "New"}, {"text": "York"}, {"text": "*T*-1"}, {"text": "?"}, {"text": "Perhaps"}, {"text": "he"}, {"text": "is"}, {"text": "willing"}, {"text": "*-1"}, {"text": "to"}, {"text": "sacrifice"}, {"text": "to"}, {"text": "the"}, {"text": "arbitrage"}, {"text": "trader"}, {"text": "some"}, {"text": "small"}, {"text": "profit"}, {"text": "in"}, {"text": "order"}, {"text": "*-1"}, {"text": "to"}, {"text": "get"}, {"text": "quick"}, {"text": "and"}, {"text": "certain"}, {"text": "execution"}, {"text": "of"}, {"text": "his"}, {"text": "large"}, {"text": "trade"}, {"text": "."}, {"text": "In"}, {"text": "a"}, {"text": "competitive"}, {"text": "market"}, {"text": ","}, {"text": "this"}, {"text": "investor"}, {"text": "has"}, {"text": "many"}, {"text": "ways"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "execute"}, {"text": "his"}, {"text": "transactions"}, {"text": "*T*-1"}, {"text": ","}, {"text": "and"}, {"text": "he"}, {"text": "will"}, {"text": "have"}, {"text": "more"}, {"text": "alternatives"}, {"text": "-LRB-"}, {"text": "both"}, {"text": "foreign"}, {"text": "and"}, {"text": "domestic"}, {"text": "-RRB-"}, {"text": "if"}, {"text": "his"}, {"text": "volume"}, {"text": "is"}, {"text": "profitable"}, {"text": "0"}, {"text": "for"}, {"text": "an"}, {"text": "exchange"}, {"text": "to"}, {"text": "handle"}, {"text": "*T*-2"}, {"text": "."}, {"text": "If"}, {"text": "not"}, {"text": "Chicago"}, {"text": ","}, {"text": "then"}, {"text": "in"}, {"text": "New"}, {"text": "York"}, {"text": ";"}, {"text": "if"}, {"text": "not"}, {"text": "the"}, {"text": "U.S."}, {"text": ","}, {"text": "then"}, {"text": "overseas"}, {"text": "."}, {"text": "Volatility"}, {"text": "surrounding"}, {"text": "his"}, {"text": "trades"}, {"text": "occurs"}, {"text": "not"}, {"text": "because"}, {"text": "of"}, {"text": "index"}, {"text": "arbitrage"}, {"text": ","}, {"text": "but"}, {"text": "because"}, {"text": "his"}, {"text": "is"}, {"text": "a"}, {"text": "large"}, {"text": "addition"}, {"text": "or"}, {"text": "subtraction"}, {"text": "to"}, {"text": "a"}, {"text": "widget"}, {"text": "market"}, {"text": "with"}, {"text": "finite"}, {"text": "liquidity"}, {"text": "."}, {"text": "*"}, {"text": "Eliminate"}, {"text": "arbitrage"}, {"text": "and"}, {"text": "liquidity"}, {"text": "will"}, {"text": "decline"}, {"text": "instead"}, {"text": "of"}, {"text": "*"}, {"text": "rising"}, {"text": ","}, {"text": "*"}, {"text": "creating"}, {"text": "more"}, {"text": "volatility"}, {"text": "instead"}, {"text": "of"}, {"text": "less"}, {"text": "."}, {"text": "The"}, {"text": "speed"}, {"text": "of"}, {"text": "his"}, {"text": "transaction"}, {"text": "is"}, {"text": "n't"}, {"text": "*-1"}, {"text": "to"}, {"text": "be"}, {"text": "feared"}, {"text": "*-79"}, {"text": "either"}, {"text": ","}, {"text": "because"}, {"text": "faster"}, {"text": "and"}, {"text": "cleaner"}, {"text": "execution"}, {"text": "is"}, {"text": "desirable"}, {"text": ","}, {"text": "not"}, {"text": "loathsome"}, {"text": "."}, {"text": "If"}, {"text": "*"}, {"text": "slowing"}, {"text": "things"}, {"text": "down"}, {"text": "could"}, {"text": "reduce"}, {"text": "volatility"}, {"text": ","}, {"text": "stone"}, {"text": "tablets"}, {"text": "should"}, {"text": "become"}, {"text": "the"}, {"text": "trade"}, {"text": "ticket"}, {"text": "of"}, {"text": "the"}, {"text": "future"}, {"text": "."}, {"text": "*"}, {"text": "Encouraging"}, {"text": "long-term"}, {"text": "investing"}, {"text": "."}, {"text": "We"}, {"text": "must"}, {"text": "be"}, {"text": "very"}, {"text": "cautious"}, {"text": "about"}, {"text": "*"}, {"text": "labeling"}, {"text": "investors"}, {"text": "as"}, {"text": "``"}, {"text": "long-term"}, {"text": "''"}, {"text": "or"}, {"text": "``"}, {"text": "short-term"}, {"text": "."}, {"text": "''"}, {"text": "Policies"}, {"text": "designed"}, {"text": "*"}, {"text": "to"}, {"text": "encourage"}, {"text": "one"}, {"text": "type"}, {"text": "of"}, {"text": "investor"}, {"text": "over"}, {"text": "another"}, {"text": "are"}, {"text": "akin"}, {"text": "to"}, {"text": "*"}, {"text": "placing"}, {"text": "a"}, {"text": "sign"}, {"text": "*ICH*-1"}, {"text": "over"}, {"text": "the"}, {"text": "Big"}, {"text": "Board"}, {"text": "'s"}, {"text": "door"}, {"text": "saying"}, {"text": ":"}, {"text": "``"}, {"text": "Buyers"}, {"text": "welcome"}, {"text": ","}, {"text": "sellers"}, {"text": "please"}, {"text": "*"}, {"text": "go"}, {"text": "away"}, {"text": "!"}, {"text": "''"}, {"text": "The"}, {"text": "ultimate"}, {"text": "goal"}, {"text": "of"}, {"text": "any"}, {"text": "investor"}, {"text": "is"}, {"text": "a"}, {"text": "profit"}, {"text": "motive"}, {"text": ","}, {"text": "and"}, {"text": "regulators"}, {"text": "should"}, {"text": "not"}, {"text": "concern"}, {"text": "themselves"}, {"text": "with"}, {"text": "whether"}, {"text": "investors"}, {"text": "are"}, {"text": "sufficiently"}, {"text": "focused"}, {"text": "on"}, {"text": "the"}, {"text": "long"}, {"text": "term"}, {"text": "."}, {"text": "A"}, {"text": "free"}, {"text": "market"}, {"text": "with"}, {"text": "a"}, {"text": "profit"}, {"text": "motive"}, {"text": "will"}, {"text": "attract"}, {"text": "each"}, {"text": "investor"}, {"text": "to"}, {"text": "the"}, {"text": "liquidity"}, {"text": "and"}, {"text": "risks"}, {"text": "0"}, {"text": "he"}, {"text": "can"}, {"text": "tolerate"}, {"text": "*T*-1"}, {"text": "."}, {"text": "In"}, {"text": "point"}, {"text": "of"}, {"text": "fact"}, {"text": ","}, {"text": "volatility"}, {"text": "as"}, {"text": "*"}, {"text": "measured"}, {"text": "*-2"}, {"text": "by"}, {"text": "the"}, {"text": "annualized"}, {"text": "standard"}, {"text": "deviation"}, {"text": "of"}, {"text": "daily"}, {"text": "stock"}, {"text": "price"}, {"text": "movements"}, {"text": "has"}, {"text": "frequently"}, {"text": "been"}, {"text": "much"}, {"text": "higher"}, {"text": "than"}, {"text": "it"}, {"text": "is"}, {"text": "*?*"}, {"text": "today"}, {"text": "."}, {"text": "Periods"}, {"text": "before"}, {"text": "the"}, {"text": "advent"}, {"text": "of"}, {"text": "futures"}, {"text": "or"}, {"text": "program"}, {"text": "trading"}, {"text": "were"}, {"text": "often"}, {"text": "more"}, {"text": "volatile"}, {"text": ","}, {"text": "usually"}, {"text": "when"}, {"text": "fundamental"}, {"text": "market"}, {"text": "conditions"}, {"text": "were"}, {"text": "undergoing"}, {"text": "change"}, {"text": "*T*-1"}, {"text": "-LRB-"}, {"text": "1973-75"}, {"text": ","}, {"text": "1937-40"}, {"text": ","}, {"text": "and"}, {"text": "1928-33"}, {"text": "for"}, {"text": "example"}, {"text": "-RRB-"}, {"text": "."}, {"text": "It"}, {"text": "*EXP*-2"}, {"text": "is"}, {"text": "interesting"}, {"text": "*"}, {"text": "to"}, {"text": "see"}, {"text": "the"}, {"text": "fundamental"}, {"text": "stock"}, {"text": "pickers"}, {"text": "scream"}, {"text": "``"}, {"text": "foul"}, {"text": "''"}, {"text": "on"}, {"text": "program"}, {"text": "trading"}, {"text": "when"}, {"text": "the"}, {"text": "markets"}, {"text": "decline"}, {"text": "*T*-1"}, {"text": ","}, {"text": "while"}, {"text": "*-3"}, {"text": "hailing"}, {"text": "the"}, {"text": "great"}, {"text": "values"}, {"text": "still"}, {"text": "abounding"}, {"text": "as"}, {"text": "the"}, {"text": "markets"}, {"text": "rise"}, {"text": "."}, {"text": "Could"}, {"text": "rising"}, {"text": "volatility"}, {"text": "possibly"}, {"text": "be"}, {"text": "related"}, {"text": "to"}, {"text": "uncertainty"}, {"text": "about"}, {"text": "the"}, {"text": "economics"}, {"text": "of"}, {"text": "stocks"}, {"text": ","}, {"text": "instead"}, {"text": "of"}, {"text": "the"}, {"text": "evil"}, {"text": "deeds"}, {"text": "of"}, {"text": "program-trading"}, {"text": "goblins"}, {"text": "?"}, {"text": "Some"}, {"text": "of"}, {"text": "the"}, {"text": "proposed"}, {"text": "fixes"}, {"text": "for"}, {"text": "what"}, {"text": "*T*-1"}, {"text": "is"}, {"text": "labeled"}, {"text": "*-80"}, {"text": "``"}, {"text": "program-trading"}, {"text": "volatility"}, {"text": "''"}, {"text": "could"}, {"text": "be"}, {"text": "far"}, {"text": "worse"}, {"text": "than"}, {"text": "the"}, {"text": "perceived"}, {"text": "problem"}, {"text": "."}, {"text": "In"}, {"text": "*"}, {"text": "using"}, {"text": "program"}, {"text": "trading"}, {"text": "as"}, {"text": "a"}, {"text": "whipping"}, {"text": "boy"}, {"text": ","}, {"text": "fundamentalist"}, {"text": "investors"}, {"text": "stand"}, {"text": "*-1"}, {"text": "to"}, {"text": "gain"}, {"text": "the"}, {"text": "high"}, {"text": "ground"}, {"text": "in"}, {"text": "*"}, {"text": "wooing"}, {"text": "small"}, {"text": "investors"}, {"text": "for"}, {"text": "their"}, {"text": "existing"}, {"text": "stock-selection"}, {"text": "products"}, {"text": "."}, {"text": "They"}, {"text": "may"}, {"text": ","}, {"text": "however"}, {"text": ","}, {"text": "risk"}, {"text": "*-1"}, {"text": "bringing"}, {"text": "some"}, {"text": "damaging"}, {"text": "interference"}, {"text": "from"}, {"text": "outside"}, {"text": "the"}, {"text": "markets"}, {"text": "themselves"}, {"text": "."}, {"text": "How"}, {"text": "does"}, {"text": "a"}, {"text": "nice"}, {"text": "new"}, {"text": "tax"}, {"text": ","}, {"text": "say"}, {"text": "5"}, {"text": "%"}, {"text": ","}, {"text": "on"}, {"text": "any"}, {"text": "financial"}, {"text": "transaction"}, {"text": "sound"}, {"text": "*T*-1"}, {"text": "?"}, {"text": "That"}, {"text": "ought"}, {"text": "*-1"}, {"text": "to"}, {"text": "make"}, {"text": "sure"}, {"text": "0"}, {"text": "we"}, {"text": "'re"}, {"text": "all"}, {"text": "thinking"}, {"text": "for"}, {"text": "the"}, {"text": "long"}, {"text": "term"}, {"text": "."}, {"text": "*"}, {"text": "Getting"}, {"text": "a"}, {"text": "level"}, {"text": "playing"}, {"text": "field"}, {"text": "."}, {"text": "This"}, {"text": "argument"}, {"text": "is"}, {"text": "perhaps"}, {"text": "the"}, {"text": "most"}, {"text": "interesting"}, {"text": "one"}, {"text": "for"}, {"text": "*"}, {"text": "abolishing"}, {"text": "program"}, {"text": "trading"}, {"text": "--"}, {"text": "not"}, {"text": "because"}, {"text": "of"}, {"text": "its"}, {"text": "merits"}, {"text": ","}, {"text": "but"}, {"text": "because"}, {"text": "of"}, {"text": "the"}, {"text": "firms"}, {"text": "championing"}, {"text": "the"}, {"text": "cause"}, {"text": "."}, {"text": "The"}, {"text": "loudest"}, {"text": "of"}, {"text": "these"}, {"text": "reformers"}, {"text": "are"}, {"text": "money"}, {"text": "managers"}, {"text": "who"}, {"text": "*T*-77"}, {"text": "cater"}, {"text": "to"}, {"text": "smaller"}, {"text": "investors"}, {"text": "."}, {"text": "They"}, {"text": "continually"}, {"text": "advise"}, {"text": "their"}, {"text": "clients"}, {"text": "on"}, {"text": "which"}, {"text": "individual"}, {"text": "stocks"}, {"text": "*"}, {"text": "to"}, {"text": "buy"}, {"text": "or"}, {"text": "sell"}, {"text": "*T*-1"}, {"text": ","}, {"text": "while"}, {"text": "their"}, {"text": "clients"}, {"text": "continue"}, {"text": "*-2"}, {"text": "to"}, {"text": "hope"}, {"text": "for"}, {"text": "superior"}, {"text": "performance"}, {"text": "."}, {"text": "Even"}, {"text": "with"}, {"text": "mutual"}, {"text": "funds"}, {"text": ","}, {"text": "the"}, {"text": "little"}, {"text": "investor"}, {"text": "continues"}, {"text": "*-1"}, {"text": "to"}, {"text": "tolerate"}, {"text": "high"}, {"text": "fees"}, {"text": ","}, {"text": "high"}, {"text": "commissions"}, {"text": "and"}, {"text": "poor"}, {"text": "performance"}, {"text": ","}, {"text": "while"}, {"text": "index-fund"}, {"text": "managers"}, {"text": "slowly"}, {"text": "amass"}, {"text": "a"}, {"text": "better"}, {"text": "record"}, {"text": "with"}, {"text": "lower"}, {"text": "fees"}, {"text": ","}, {"text": "lower"}, {"text": "commissions"}, {"text": "and"}, {"text": "less"}, {"text": "risk"}, {"text": "."}, {"text": "Yet"}, {"text": "our"}, {"text": "efforts"}, {"text": "are"}, {"text": "somehow"}, {"text": "less"}, {"text": "noble"}, {"text": "than"}, {"text": "those"}, {"text": "of"}, {"text": "an"}, {"text": "investment"}, {"text": "expert"}, {"text": "studiously"}, {"text": "devouring"}, {"text": "press"}, {"text": "clippings"}, {"text": "on"}, {"text": "each"}, {"text": "company"}, {"text": "0"}, {"text": "he"}, {"text": "follows"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Almost"}, {"text": "all"}, {"text": "new"}, {"text": "regulation"}, {"text": "is"}, {"text": "introduced"}, {"text": "*-81"}, {"text": "in"}, {"text": "the"}, {"text": "interests"}, {"text": "of"}, {"text": "*"}, {"text": "protecting"}, {"text": "the"}, {"text": "little"}, {"text": "guy"}, {"text": ","}, {"text": "and"}, {"text": "he"}, {"text": "invariably"}, {"text": "is"}, {"text": "the"}, {"text": "one"}, {"text": "least"}, {"text": "able"}, {"text": "*"}, {"text": "to"}, {"text": "cope"}, {"text": "with"}, {"text": "its"}, {"text": "consequences"}, {"text": "."}, {"text": "If"}, {"text": "spreads"}, {"text": "available"}, {"text": "from"}, {"text": "index"}, {"text": "arbitrage"}, {"text": "are"}, {"text": "so"}, {"text": "enormous"}, {"text": ","}, {"text": "surely"}, {"text": "any"}, {"text": "sizable"}, {"text": "mutual-fund"}, {"text": "company"}, {"text": "could"}, {"text": "profit"}, {"text": "from"}, {"text": "*"}, {"text": "offering"}, {"text": "it"}, {"text": "to"}, {"text": "small"}, {"text": "investors"}, {"text": "."}, {"text": "The"}, {"text": "sad"}, {"text": "reality"}, {"text": "is"}, {"text": "that"}, {"text": "the"}, {"text": "retail"}, {"text": "investor"}, {"text": "continues"}, {"text": "*-1"}, {"text": "to"}, {"text": "pursue"}, {"text": "stellar"}, {"text": "performers"}, {"text": "first"}, {"text": ","}, {"text": "while"}, {"text": "*-2"}, {"text": "leaving"}, {"text": "institutions"}, {"text": "to"}, {"text": "grapple"}, {"text": "with"}, {"text": "basis"}, {"text": "points"}, {"text": "of"}, {"text": "performance"}, {"text": "on"}, {"text": "large"}, {"text": "sums"}, {"text": "of"}, {"text": "money"}, {"text": "quarter"}, {"text": "by"}, {"text": "quarter"}, {"text": "*PPA*-3"}, {"text": "."}, {"text": "Cost-effective"}, {"text": "index"}, {"text": "funds"}, {"text": "just"}, {"text": "are"}, {"text": "n't"}, {"text": "sexy"}, {"text": "enough"}, {"text": "*"}, {"text": "to"}, {"text": "justify"}, {"text": "the"}, {"text": "high"}, {"text": "fees"}, {"text": "and"}, {"text": "commissions"}, {"text": "that"}, {"text": "retail"}, {"text": "customers"}, {"text": "frequently"}, {"text": "pay"}, {"text": "*T*-1"}, {"text": ","}, {"text": "and"}, {"text": "that"}, {"text": "institutional"}, {"text": "customers"}, {"text": "refuse"}, {"text": "*-3"}, {"text": "to"}, {"text": "pay"}, {"text": "*T*-2"}, {"text": "."}, {"text": "Each"}, {"text": "new"}, {"text": "trading"}, {"text": "roadblock"}, {"text": "is"}, {"text": "likely"}, {"text": "*-1"}, {"text": "to"}, {"text": "be"}, {"text": "beaten"}, {"text": "*-82"}, {"text": "by"}, {"text": "institutions"}, {"text": "seeking"}, {"text": "better"}, {"text": "ways"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "serve"}, {"text": "their"}, {"text": "high-volume"}, {"text": "clients"}, {"text": "*T*-2"}, {"text": ","}, {"text": "here"}, {"text": "or"}, {"text": "overseas"}, {"text": "."}, {"text": "*"}, {"text": "Legislating"}, {"text": "new"}, {"text": "trading"}, {"text": "inefficiencies"}, {"text": "will"}, {"text": "only"}, {"text": "make"}, {"text": "things"}, {"text": "harder"}, {"text": "on"}, {"text": "the"}, {"text": "least"}, {"text": "sophisticated"}, {"text": "investors"}, {"text": "."}, {"text": "So"}, {"text": "what"}, {"text": "*T*-78"}, {"text": "is"}, {"text": "next"}, {"text": "for"}, {"text": "program"}, {"text": "trading"}, {"text": "?"}, {"text": "*-1"}, {"text": "Left"}, {"text": "*-3"}, {"text": "to"}, {"text": "its"}, {"text": "own"}, {"text": "devices"}, {"text": ","}, {"text": "index"}, {"text": "arbitrage"}, {"text": "will"}, {"text": "become"}, {"text": "more"}, {"text": "and"}, {"text": "more"}, {"text": "efficient"}, {"text": ","}, {"text": "*-1"}, {"text": "making"}, {"text": "it"}, {"text": "harder"}, {"text": "and"}, {"text": "harder"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "do"}, {"text": "*T*-2"}, {"text": "profitably"}, {"text": "."}, {"text": "Spreads"}, {"text": "will"}, {"text": "become"}, {"text": "so"}, {"text": "tight"}, {"text": "that"}, {"text": "it"}, {"text": "wo"}, {"text": "n't"}, {"text": "matter"}, {"text": "which"}, {"text": "market"}, {"text": "an"}, {"text": "investor"}, {"text": "chooses"}, {"text": "*T*-79"}, {"text": "--"}, {"text": "arbitrage"}, {"text": "will"}, {"text": "prevent"}, {"text": "him"}, {"text": "from"}, {"text": "*-1"}, {"text": "gaining"}, {"text": "any"}, {"text": "temporary"}, {"text": "profit"}, {"text": "."}, {"text": "If"}, {"text": "government"}, {"text": "or"}, {"text": "private"}, {"text": "watchdogs"}, {"text": "insist"}, {"text": ","}, {"text": "however"}, {"text": ","}, {"text": "on"}, {"text": "*"}, {"text": "introducing"}, {"text": "greater"}, {"text": "friction"}, {"text": "between"}, {"text": "the"}, {"text": "markets"}, {"text": "-LRB-"}, {"text": "limits"}, {"text": "on"}, {"text": "price"}, {"text": "moves"}, {"text": ","}, {"text": "two-tiered"}, {"text": "execution"}, {"text": ","}, {"text": "higher"}, {"text": "margin"}, {"text": "requirements"}, {"text": ","}, {"text": "taxation"}, {"text": ","}, {"text": "etc."}, {"text": "-RRB-"}, {"text": ","}, {"text": "the"}, {"text": "end"}, {"text": "loser"}, {"text": "will"}, {"text": "be"}, {"text": "the"}, {"text": "markets"}, {"text": "themselves"}, {"text": "."}, {"text": "Instead"}, {"text": ","}, {"text": "we"}, {"text": "ought"}, {"text": "*-1"}, {"text": "to"}, {"text": "be"}, {"text": "inviting"}, {"text": "more"}, {"text": "liquidity"}, {"text": "with"}, {"text": "cheaper"}, {"text": "ways"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "trade"}, {"text": "and"}, {"text": "transfer"}, {"text": "capital"}, {"text": "among"}, {"text": "all"}, {"text": "participants"}, {"text": "*T*-2"}, {"text": "."}, {"text": "Mr."}, {"text": "Allen"}, {"text": "'s"}, {"text": "Pittsburgh"}, {"text": "firm"}, {"text": ","}, {"text": "Advanced"}, {"text": "Investment"}, {"text": "Management"}, {"text": "Inc."}, {"text": ","}, {"text": "executes"}, {"text": "program"}, {"text": "trades"}, {"text": "for"}, {"text": "institutions"}, {"text": "."}, {"text": "Some"}, {"text": "Democrats"}, {"text": "in"}, {"text": "Congress"}, {"text": "are"}, {"text": "warning"}, {"text": "that"}, {"text": "a"}, {"text": "complicated"}, {"text": "new"}, {"text": "funding"}, {"text": "device"}, {"text": "for"}, {"text": "the"}, {"text": "two"}, {"text": "federal"}, {"text": "antitrust"}, {"text": "agencies"}, {"text": "could"}, {"text": "result"}, {"text": "in"}, {"text": "further"}, {"text": "cutbacks"}, {"text": "in"}, {"text": "a"}, {"text": "regulatory"}, {"text": "area"}, {"text": "already"}, {"text": "reduced"}, {"text": "sharply"}, {"text": "in"}, {"text": "recent"}, {"text": "years"}, {"text": "."}, {"text": "The"}, {"text": "funding"}, {"text": "mechanism"}, {"text": ","}, {"text": "which"}, {"text": "*T*-80"}, {"text": "has"}, {"text": "received"}, {"text": "congressional"}, {"text": "approval"}, {"text": "and"}, {"text": "is"}, {"text": "expected"}, {"text": "*-1"}, {"text": "to"}, {"text": "be"}, {"text": "signed"}, {"text": "*-83"}, {"text": "by"}, {"text": "President"}, {"text": "Bush"}, {"text": ","}, {"text": "would"}, {"text": "affect"}, {"text": "the"}, {"text": "antitrust"}, {"text": "operations"}, {"text": "of"}, {"text": "the"}, {"text": "Justice"}, {"text": "Department"}, {"text": "and"}, {"text": "the"}, {"text": "Federal"}, {"text": "Trade"}, {"text": "Commission"}, {"text": "."}, {"text": "As"}, {"text": "a"}, {"text": "part"}, {"text": "of"}, {"text": "overall"}, {"text": "efforts"}, {"text": "*"}, {"text": "to"}, {"text": "reduce"}, {"text": "spending"}, {"text": ","}, {"text": "Congress"}, {"text": "cut"}, {"text": "by"}, {"text": "$"}, {"text": "30"}, {"text": "million"}, {"text": "*U*"}, {"text": "the"}, {"text": "Bush"}, {"text": "administration"}, {"text": "'s"}, {"text": "request"}, {"text": "for"}, {"text": "antitrust"}, {"text": "enforcement"}, {"text": "for"}, {"text": "fiscal"}, {"text": "1990"}, {"text": ","}, {"text": "which"}, {"text": "*T*-81"}, {"text": "began"}, {"text": "Oct."}, {"text": "1"}, {"text": "."}, {"text": "*-1"}, {"text": "To"}, {"text": "offset"}, {"text": "the"}, {"text": "reduction"}, {"text": ","}, {"text": "Congress"}, {"text": "approved"}, {"text": "a"}, {"text": "$"}, {"text": "20,000"}, {"text": "*U*"}, {"text": "fee"}, {"text": "that"}, {"text": "investors"}, {"text": "and"}, {"text": "companies"}, {"text": "will"}, {"text": "have"}, {"text": "*-3"}, {"text": "to"}, {"text": "pay"}, {"text": "*T*-2"}, {"text": "each"}, {"text": "time"}, {"text": "0"}, {"text": "they"}, {"text": "make"}, {"text": "required"}, {"text": "filings"}, {"text": "to"}, {"text": "antitrust"}, {"text": "regulators"}, {"text": "about"}, {"text": "mergers"}, {"text": ","}, {"text": "acquisitions"}, {"text": "and"}, {"text": "certain"}, {"text": "other"}, {"text": "transactions"}, {"text": "*T*-4"}, {"text": "."}, {"text": "Some"}, {"text": "Democrats"}, {"text": ","}, {"text": "led"}, {"text": "*"}, {"text": "by"}, {"text": "Rep."}, {"text": "Jack"}, {"text": "Brooks"}, {"text": "-LRB-"}, {"text": "D."}, {"text": ","}, {"text": "Texas"}, {"text": "-RRB-"}, {"text": ","}, {"text": "unsuccessfully"}, {"text": "opposed"}, {"text": "the"}, {"text": "measure"}, {"text": "because"}, {"text": "they"}, {"text": "fear"}, {"text": "that"}, {"text": "the"}, {"text": "fees"}, {"text": "may"}, {"text": "not"}, {"text": "fully"}, {"text": "make"}, {"text": "up"}, {"text": "for"}, {"text": "the"}, {"text": "budget"}, {"text": "cuts"}, {"text": "."}, {"text": "But"}, {"text": "Justice"}, {"text": "Department"}, {"text": "and"}, {"text": "FTC"}, {"text": "officials"}, {"text": "said"}, {"text": "0"}, {"text": "they"}, {"text": "expect"}, {"text": "the"}, {"text": "filing"}, {"text": "fees"}, {"text": "to"}, {"text": "make"}, {"text": "up"}, {"text": "for"}, {"text": "the"}, {"text": "budget"}, {"text": "reductions"}, {"text": "and"}, {"text": "possibly"}, {"text": "exceed"}, {"text": "them"}, {"text": "."}, {"text": "``"}, {"text": "It"}, {"text": "could"}, {"text": "operate"}, {"text": "*-1"}, {"text": "to"}, {"text": "augment"}, {"text": "our"}, {"text": "budget"}, {"text": ","}, {"text": "''"}, {"text": "James"}, {"text": "Rill"}, {"text": ","}, {"text": "the"}, {"text": "Justice"}, {"text": "Department"}, {"text": "'s"}, {"text": "antitrust"}, {"text": "chief"}, {"text": ","}, {"text": "said"}, {"text": "*T*-2"}, {"text": "in"}, {"text": "an"}, {"text": "interview"}, {"text": "."}, {"text": "Under"}, {"text": "measures"}, {"text": "approved"}, {"text": "*"}, {"text": "by"}, {"text": "both"}, {"text": "houses"}, {"text": "of"}, {"text": "Congress"}, {"text": ","}, {"text": "the"}, {"text": "administration"}, {"text": "'s"}, {"text": "request"}, {"text": "for"}, {"text": "$"}, {"text": "47"}, {"text": "million"}, {"text": "*U*"}, {"text": "for"}, {"text": "the"}, {"text": "Antitrust"}, {"text": "Division"}, {"text": "would"}, {"text": "be"}, {"text": "cut"}, {"text": "*-84"}, {"text": "$"}, {"text": "15"}, {"text": "million"}, {"text": "*U*"}, {"text": "."}, {"text": "The"}, {"text": "FTC"}, {"text": "budget"}, {"text": "request"}, {"text": "of"}, {"text": "$"}, {"text": "70"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "about"}, {"text": "$"}, {"text": "34"}, {"text": "million"}, {"text": "*U*"}, {"text": "of"}, {"text": "which"}, {"text": "*T*-1"}, {"text": "would"}, {"text": "go"}, {"text": "for"}, {"text": "antitrust"}, {"text": "enforcement"}, {"text": ","}, {"text": "would"}, {"text": "also"}, {"text": "be"}, {"text": "cut"}, {"text": "*-85"}, {"text": "by"}, {"text": "$"}, {"text": "15"}, {"text": "million"}, {"text": "*U*"}, {"text": "."}, {"text": "The"}, {"text": "administration"}, {"text": "had"}, {"text": "requested"}, {"text": "roughly"}, {"text": "the"}, {"text": "same"}, {"text": "amount"}, {"text": "for"}, {"text": "antitrust"}, {"text": "enforcement"}, {"text": "for"}, {"text": "fiscal"}, {"text": "1990"}, {"text": "as"}, {"text": "*"}, {"text": "was"}, {"text": "appropriated"}, {"text": "*-1"}, {"text": "in"}, {"text": "fiscal"}, {"text": "1989"}, {"text": "."}, {"text": "The"}, {"text": "offsetting"}, {"text": "fees"}, {"text": "would"}, {"text": "apply"}, {"text": "to"}, {"text": "filings"}, {"text": "made"}, {"text": "*"}, {"text": "under"}, {"text": "the"}, {"text": "Hart-Scott-Rodino"}, {"text": "Act"}, {"text": "."}, {"text": "Under"}, {"text": "that"}, {"text": "law"}, {"text": ","}, {"text": "parties"}, {"text": "proposing"}, {"text": "mergers"}, {"text": "or"}, {"text": "acquisitions"}, {"text": "valued"}, {"text": "*"}, {"text": "at"}, {"text": "$"}, {"text": "15"}, {"text": "million"}, {"text": "*U*"}, {"text": "or"}, {"text": "more"}, {"text": "must"}, {"text": "notify"}, {"text": "FTC"}, {"text": "and"}, {"text": "Justice"}, {"text": "Department"}, {"text": "antitrust"}, {"text": "regulators"}, {"text": "before"}, {"text": "*-1"}, {"text": "completing"}, {"text": "the"}, {"text": "transactions"}, {"text": "."}, {"text": "Currently"}, {"text": ","}, {"text": "the"}, {"text": "government"}, {"text": "charges"}, {"text": "nothing"}, {"text": "for"}, {"text": "such"}, {"text": "filings"}, {"text": "."}, {"text": "Proponents"}, {"text": "of"}, {"text": "the"}, {"text": "funding"}, {"text": "arrangement"}, {"text": "predict"}, {"text": "that"}, {"text": ","}, {"text": "based"}, {"text": "on"}, {"text": "recent"}, {"text": "filing"}, {"text": "levels"}, {"text": "of"}, {"text": "more"}, {"text": "than"}, {"text": "2,000"}, {"text": "a"}, {"text": "year"}, {"text": ","}, {"text": "the"}, {"text": "fees"}, {"text": "will"}, {"text": "yield"}, {"text": "at"}, {"text": "least"}, {"text": "$"}, {"text": "40"}, {"text": "million"}, {"text": "*U*"}, {"text": "*ICH*-1"}, {"text": "this"}, {"text": "fiscal"}, {"text": "year"}, {"text": ","}, {"text": "or"}, {"text": "$"}, {"text": "10"}, {"text": "million"}, {"text": "*U*"}, {"text": "more"}, {"text": "than"}, {"text": "the"}, {"text": "budget"}, {"text": "cuts"}, {"text": "."}, {"text": "``"}, {"text": "When"}, {"text": "you"}, {"text": "do"}, {"text": "that"}, {"text": "*T*-1"}, {"text": ","}, {"text": "there"}, {"text": "is"}, {"text": "not"}, {"text": "a"}, {"text": "cut"}, {"text": ","}, {"text": "but"}, {"text": "there"}, {"text": "is"}, {"text": "in"}, {"text": "fact"}, {"text": "a"}, {"text": "program"}, {"text": "increase"}, {"text": "of"}, {"text": "$"}, {"text": "5"}, {"text": "million"}, {"text": "*U*"}, {"text": "''"}, {"text": "each"}, {"text": "for"}, {"text": "the"}, {"text": "FTC"}, {"text": "and"}, {"text": "the"}, {"text": "Justice"}, {"text": "Department"}, {"text": ","}, {"text": "Rep."}, {"text": "Neal"}, {"text": "Smith"}, {"text": "-LRB-"}, {"text": "D."}, {"text": ","}, {"text": "Iowa"}, {"text": "-RRB-"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "during"}, {"text": "House"}, {"text": "debate"}, {"text": "."}, {"text": "But"}, {"text": "Rep."}, {"text": "Don"}, {"text": "Edwards"}, {"text": "-LRB-"}, {"text": "D."}, {"text": ","}, {"text": "Calif"}, {"text": "."}, {"text": "-RRB-"}, {"text": "responded"}, {"text": "that"}, {"text": "a"}, {"text": "recession"}, {"text": "could"}, {"text": "stifle"}, {"text": "merger"}, {"text": "activity"}, {"text": ","}, {"text": "*-1"}, {"text": "reducing"}, {"text": "the"}, {"text": "amount"}, {"text": "of"}, {"text": "fees"}, {"text": "collected"}, {"text": "*"}, {"text": "."}, {"text": "The"}, {"text": "antitrust"}, {"text": "staffs"}, {"text": "of"}, {"text": "both"}, {"text": "the"}, {"text": "FTC"}, {"text": "and"}, {"text": "Justice"}, {"text": "Department"}, {"text": "were"}, {"text": "cut"}, {"text": "*-87"}, {"text": "more"}, {"text": "than"}, {"text": "40"}, {"text": "%"}, {"text": "in"}, {"text": "the"}, {"text": "Reagan"}, {"text": "administration"}, {"text": ","}, {"text": "and"}, {"text": "enforcement"}, {"text": "of"}, {"text": "major"}, {"text": "merger"}, {"text": "cases"}, {"text": "fell"}, {"text": "off"}, {"text": "drastically"}, {"text": "during"}, {"text": "that"}, {"text": "period"}, {"text": "."}, {"text": "``"}, {"text": "Today"}, {"text": "is"}, {"text": "not"}, {"text": "the"}, {"text": "time"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "signal"}, {"text": "that"}, {"text": "Congress"}, {"text": "in"}, {"text": "any"}, {"text": "way"}, {"text": "sanctions"}, {"text": "the"}, {"text": "dismal"}, {"text": "state"}, {"text": "into"}, {"text": "which"}, {"text": "antitrust"}, {"text": "enforcement"}, {"text": "has"}, {"text": "fallen"}, {"text": "*T*-3"}, {"text": "*T*-2"}, {"text": ","}, {"text": "''"}, {"text": "Mr."}, {"text": "Edwards"}, {"text": "argued"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Any"}, {"text": "money"}, {"text": "in"}, {"text": "excess"}, {"text": "of"}, {"text": "$"}, {"text": "40"}, {"text": "million"}, {"text": "*U*"}, {"text": "collected"}, {"text": "*"}, {"text": "from"}, {"text": "the"}, {"text": "fees"}, {"text": "in"}, {"text": "fiscal"}, {"text": "1990"}, {"text": "would"}, {"text": "go"}, {"text": "to"}, {"text": "the"}, {"text": "Treasury"}, {"text": "at"}, {"text": "large"}, {"text": "."}, {"text": "Corporate"}, {"text": "lawyers"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "new"}, {"text": "fees"}, {"text": "would"}, {"text": "n't"}, {"text": "inhibit"}, {"text": "many"}, {"text": "mergers"}, {"text": "or"}, {"text": "other"}, {"text": "transactions"}, {"text": "."}, {"text": "Though"}, {"text": "some"}, {"text": "lawyers"}, {"text": "reported"}, {"text": "that"}, {"text": "prospective"}, {"text": "acquirers"}, {"text": "were"}, {"text": "scrambling"}, {"text": "*-1"}, {"text": "to"}, {"text": "make"}, {"text": "filings"}, {"text": "before"}, {"text": "the"}, {"text": "fees"}, {"text": "take"}, {"text": "effect"}, {"text": ","}, {"text": "government"}, {"text": "officials"}, {"text": "said"}, {"text": "0"}, {"text": "they"}, {"text": "had"}, {"text": "n't"}, {"text": "noticed"}, {"text": "any"}, {"text": "surge"}, {"text": "in"}, {"text": "filings"}, {"text": "."}, {"text": "FALL"}, {"text": "BALLOT"}, {"text": "ISSUES"}, {"text": "set"}, {"text": "a"}, {"text": "record"}, {"text": "for"}, {"text": "off-year"}, {"text": "elections"}, {"text": "."}, {"text": "Odd-year"}, {"text": "elections"}, {"text": "attract"}, {"text": "relatively"}, {"text": "few"}, {"text": "ballot"}, {"text": "issues"}, {"text": "."}, {"text": "But"}, {"text": "the"}, {"text": "1989"}, {"text": "fall"}, {"text": "total"}, {"text": "of"}, {"text": "80"}, {"text": ","}, {"text": "while"}, {"text": "well"}, {"text": "below"}, {"text": "1988"}, {"text": "activity"}, {"text": ","}, {"text": "shows"}, {"text": "``"}, {"text": "a"}, {"text": "steady"}, {"text": "ratcheting"}, {"text": "up"}, {"text": "in"}, {"text": "citizen"}, {"text": "referenda"}, {"text": "and"}, {"text": "initiatives"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "Patrick"}, {"text": "McGuigan"}, {"text": ","}, {"text": "editor"}, {"text": "of"}, {"text": "Family"}, {"text": ","}, {"text": "Law"}, {"text": "and"}, {"text": "Democracy"}, {"text": "Report"}, {"text": "."}, {"text": "He"}, {"text": "says"}, {"text": "0"}, {"text": "the"}, {"text": "10"}, {"text": "citizen-sparked"}, {"text": "issues"}, {"text": "on"}, {"text": "state"}, {"text": "ballots"}, {"text": "this"}, {"text": "fall"}, {"text": "represent"}, {"text": "the"}, {"text": "most"}, {"text": "in"}, {"text": "any"}, {"text": "odd-year"}, {"text": "this"}, {"text": "decade"}, {"text": "."}, {"text": "Ballot"}, {"text": "questions"}, {"text": "range"}, {"text": "from"}, {"text": "a"}, {"text": "Maine"}, {"text": "initiative"}, {"text": "on"}, {"text": "*"}, {"text": "banning"}, {"text": "Cruise"}, {"text": "missiles"}, {"text": "to"}, {"text": "a"}, {"text": "referendum"}, {"text": "on"}, {"text": "*"}, {"text": "increasing"}, {"text": "the"}, {"text": "North"}, {"text": "Dakota"}, {"text": "income"}, {"text": "tax"}, {"text": "."}, {"text": "Ballot"}, {"text": "watchers"}, {"text": "say"}, {"text": "0"}, {"text": "attention"}, {"text": "already"}, {"text": "is"}, {"text": "focused"}, {"text": "*-1"}, {"text": "on"}, {"text": "the"}, {"text": "1990"}, {"text": "elections"}, {"text": "."}, {"text": "In"}, {"text": "California"}, {"text": ","}, {"text": "two"}, {"text": "petition"}, {"text": "drives"}, {"text": "for"}, {"text": "next"}, {"text": "year"}, {"text": "'s"}, {"text": "election"}, {"text": "are"}, {"text": "``"}, {"text": "essentially"}, {"text": "finished"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "David"}, {"text": "Schmidt"}, {"text": ","}, {"text": "author"}, {"text": "of"}, {"text": "``"}, {"text": "Citizen"}, {"text": "Lawmakers"}, {"text": "."}, {"text": "''"}, {"text": "Mr."}, {"text": "McGuigan"}, {"text": "cites"}, {"text": "three"}, {"text": "completed"}, {"text": "efforts"}, {"text": "in"}, {"text": "Oklahoma"}, {"text": "."}, {"text": "Hot"}, {"text": "ballot"}, {"text": "topics"}, {"text": "are"}, {"text": "expected"}, {"text": "*-1"}, {"text": "to"}, {"text": "be"}, {"text": "abortion"}, {"text": ","}, {"text": "the"}, {"text": "environment"}, {"text": "and"}, {"text": "insurance"}, {"text": "reform"}, {"text": "."}, {"text": "*-1"}, {"text": "Taking"}, {"text": "a"}, {"text": "cue"}, {"text": "from"}, {"text": "California"}, {"text": ","}, {"text": "more"}, {"text": "politicians"}, {"text": "will"}, {"text": "launch"}, {"text": "their"}, {"text": "campaigns"}, {"text": "by"}, {"text": "*-1"}, {"text": "backing"}, {"text": "initiatives"}, {"text": ","}, {"text": "says"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "David"}, {"text": "Magleby"}, {"text": "of"}, {"text": "Brigham"}, {"text": "Young"}, {"text": "University"}, {"text": "."}, {"text": "PHOTOGRAPH"}, {"text": "COLLECTING"}, {"text": "gains"}, {"text": "new"}, {"text": "stature"}, {"text": "as"}, {"text": "prices"}, {"text": "rise"}, {"text": "."}, {"text": "Price"}, {"text": "records"}, {"text": "are"}, {"text": "being"}, {"text": "set"}, {"text": "at"}, {"text": "auctions"}, {"text": "this"}, {"text": "week"}, {"text": "."}, {"text": "At"}, {"text": "Christie"}, {"text": "'s"}, {"text": ","}, {"text": "a"}, {"text": "folio"}, {"text": "of"}, {"text": "21"}, {"text": "prints"}, {"text": "from"}, {"text": "Alfred"}, {"text": "Stieglitz"}, {"text": "'s"}, {"text": "``"}, {"text": "Equivalents"}, {"text": "''"}, {"text": "series"}, {"text": "sold"}, {"text": "for"}, {"text": "$"}, {"text": "396,000"}, {"text": "*U*"}, {"text": ","}, {"text": "a"}, {"text": "single-lot"}, {"text": "record"}, {"text": "."}, {"text": "Other"}, {"text": "works"}, {"text": "also"}, {"text": "have"}, {"text": "been"}, {"text": "exceeding"}, {"text": "price"}, {"text": "estimates"}, {"text": "."}, {"text": "In"}, {"text": "part"}, {"text": ","}, {"text": "prices"}, {"text": "reflect"}, {"text": "development"}, {"text": "of"}, {"text": "a"}, {"text": "market"}, {"text": "structure"}, {"text": "based"}, {"text": "*"}, {"text": "on"}, {"text": "such"}, {"text": "variables"}, {"text": "as"}, {"text": "the"}, {"text": "number"}, {"text": "of"}, {"text": "prints"}, {"text": "."}, {"text": "This"}, {"text": "information"}, {"text": "used"}, {"text": "*-1"}, {"text": "to"}, {"text": "be"}, {"text": "poorly"}, {"text": "documented"}, {"text": "and"}, {"text": "largely"}, {"text": "anecdotal"}, {"text": ","}, {"text": "says"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "Beth"}, {"text": "Gates-Warren"}, {"text": "of"}, {"text": "Sotheby"}, {"text": "'s"}, {"text": "."}, {"text": "``"}, {"text": "There"}, {"text": "is"}, {"text": "finally"}, {"text": "some"}, {"text": "sort"}, {"text": "of"}, {"text": "sense"}, {"text": "in"}, {"text": "the"}, {"text": "market"}, {"text": ","}, {"text": "''"}, {"text": "she"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Corporations"}, {"text": "and"}, {"text": "museums"}, {"text": "are"}, {"text": "among"}, {"text": "the"}, {"text": "serious"}, {"text": "buyers"}, {"text": ","}, {"text": "*"}, {"text": "giving"}, {"text": "greater"}, {"text": "market"}, {"text": "stability"}, {"text": ","}, {"text": "says"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "Robert"}, {"text": "Persky"}, {"text": "of"}, {"text": "the"}, {"text": "Photograph"}, {"text": "Collector"}, {"text": "."}, {"text": "``"}, {"text": "When"}, {"text": "I"}, {"text": "see"}, {"text": "prints"}, {"text": "going"}, {"text": "into"}, {"text": "the"}, {"text": "hands"}, {"text": "of"}, {"text": "institutions"}, {"text": "*T*-1"}, {"text": ","}, {"text": "I"}, {"text": "know"}, {"text": "0"}, {"text": "they"}, {"text": "are"}, {"text": "n't"}, {"text": "going"}, {"text": "*-2"}, {"text": "to"}, {"text": "come"}, {"text": "back"}, {"text": "on"}, {"text": "the"}, {"text": "market"}, {"text": "."}, {"text": "''"}, {"text": "Most"}, {"text": "in"}, {"text": "demand"}, {"text": ":"}, {"text": "classic"}, {"text": "photographs"}, {"text": "by"}, {"text": "masters"}, {"text": "such"}, {"text": "as"}, {"text": "Stieglitz"}, {"text": "and"}, {"text": "Man"}, {"text": "Ray"}, {"text": "."}, {"text": "But"}, {"text": "much"}, {"text": "contemporary"}, {"text": "work"}, {"text": "is"}, {"text": "also"}, {"text": "fetching"}, {"text": "``"}, {"text": "a"}, {"text": "great"}, {"text": "deal"}, {"text": "of"}, {"text": "money"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "Miles"}, {"text": "Barth"}, {"text": "of"}, {"text": "the"}, {"text": "International"}, {"text": "Center"}, {"text": "of"}, {"text": "Photography"}, {"text": "."}, {"text": "*"}, {"text": "DIALING"}, {"text": "900"}, {"text": "brings"}, {"text": "callers"}, {"text": "a"}, {"text": "growing"}, {"text": "number"}, {"text": "of"}, {"text": "services"}, {"text": "."}, {"text": "*-1"}, {"text": "Currently"}, {"text": "a"}, {"text": "$"}, {"text": "300"}, {"text": "million-a-year"}, {"text": "business"}, {"text": ","}, {"text": "900"}, {"text": "telephone"}, {"text": "service"}, {"text": "is"}, {"text": "expected"}, {"text": "*-1"}, {"text": "to"}, {"text": "hit"}, {"text": "$"}, {"text": "500"}, {"text": "million"}, {"text": "*U*"}, {"text": "next"}, {"text": "year"}, {"text": "and"}, {"text": "near"}, {"text": "$"}, {"text": "2"}, {"text": "billion"}, {"text": "*U*"}, {"text": "by"}, {"text": "1992"}, {"text": "as"}, {"text": "uses"}, {"text": "for"}, {"text": "the"}, {"text": "service"}, {"text": "continue"}, {"text": "*-3"}, {"text": "to"}, {"text": "expand"}, {"text": ","}, {"text": "says"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "Joel"}, {"text": "Gross"}, {"text": "of"}, {"text": "Donaldson"}, {"text": ","}, {"text": "Lufkin"}, {"text": "&"}, {"text": "Jenrette"}, {"text": "Inc"}, {"text": "."}, {"text": "The"}, {"text": "service"}, {"text": "--"}, {"text": "which"}, {"text": "*T*-2"}, {"text": "costs"}, {"text": "the"}, {"text": "caller"}, {"text": "from"}, {"text": "30"}, {"text": "cents"}, {"text": "to"}, {"text": "$"}, {"text": "25"}, {"text": "*U*"}, {"text": "a"}, {"text": "minute"}, {"text": "--"}, {"text": "currently"}, {"text": "is"}, {"text": "dominated"}, {"text": "*-1"}, {"text": "by"}, {"text": "celebrity"}, {"text": "chatter"}, {"text": ","}, {"text": "horoscopes"}, {"text": "and"}, {"text": "romance"}, {"text": "lines"}, {"text": "."}, {"text": "But"}, {"text": "more"}, {"text": "serious"}, {"text": "applications"}, {"text": "are"}, {"text": "in"}, {"text": "the"}, {"text": "wings"}, {"text": ","}, {"text": "and"}, {"text": "that"}, {"text": "is"}, {"text": "where"}, {"text": "the"}, {"text": "future"}, {"text": "growth"}, {"text": "is"}, {"text": "expected"}, {"text": "*-1"}, {"text": "*T*-2"}, {"text": "."}, {"text": "``"}, {"text": "I"}, {"text": "'m"}, {"text": "starting"}, {"text": "*-1"}, {"text": "to"}, {"text": "see"}, {"text": "more"}, {"text": "business"}, {"text": "transactions"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-2"}, {"text": "Andrea"}, {"text": "West"}, {"text": "of"}, {"text": "American"}, {"text": "Telephone"}, {"text": "&"}, {"text": "Telegraph"}, {"text": "Co."}, {"text": ","}, {"text": "*-3"}, {"text": "noting"}, {"text": "growing"}, {"text": "interest"}, {"text": "in"}, {"text": "use"}, {"text": "of"}, {"text": "900"}, {"text": "service"}, {"text": "for"}, {"text": "stock"}, {"text": "sales"}, {"text": ","}, {"text": "software"}, {"text": "tutorials"}, {"text": "and"}, {"text": "even"}, {"text": "service"}, {"text": "contracts"}, {"text": "."}, {"text": "Colleges"}, {"text": ","}, {"text": "she"}, {"text": "says"}, {"text": "0"}, {"text": "*T*-1"}, {"text": ","}, {"text": "are"}, {"text": "eyeing"}, {"text": "registration"}, {"text": "through"}, {"text": "900"}, {"text": "service"}, {"text": "."}, {"text": "Charities"}, {"text": "test"}, {"text": "the"}, {"text": "waters"}, {"text": ","}, {"text": "but"}, {"text": "they"}, {"text": "face"}, {"text": "legal"}, {"text": "barriers"}, {"text": "to"}, {"text": "electronic"}, {"text": "fund"}, {"text": "raising"}, {"text": "."}, {"text": "``"}, {"text": "The"}, {"text": "thing"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "will"}, {"text": "really"}, {"text": "break"}, {"text": "this"}, {"text": "market"}, {"text": "right"}, {"text": "open"}, {"text": "is"}, {"text": "merchandising"}, {"text": ","}, {"text": "''"}, {"text": "Ms."}, {"text": "West"}, {"text": "says"}, {"text": "*T*-2"}, {"text": "."}, {"text": "Much"}, {"text": "of"}, {"text": "the"}, {"text": "800"}, {"text": "service"}, {"text": "will"}, {"text": "``"}, {"text": "migrate"}, {"text": "to"}, {"text": "900"}, {"text": ","}, {"text": "''"}, {"text": "predicts"}, {"text": "*T*-1"}, {"text": "Jack"}, {"text": "Lawless"}, {"text": ","}, {"text": "general"}, {"text": "manager"}, {"text": "of"}, {"text": "US"}, {"text": "Sprint"}, {"text": "'s"}, {"text": "900"}, {"text": "product"}, {"text": "."}, {"text": "FAMILY"}, {"text": "PETS"}, {"text": "are"}, {"text": "improving"}, {"text": "recovery"}, {"text": "rates"}, {"text": "of"}, {"text": "patients"}, {"text": "at"}, {"text": "Columbia"}, {"text": "Hospital"}, {"text": ","}, {"text": "Milwaukee"}, {"text": "."}, {"text": "Patients"}, {"text": "who"}, {"text": "*T*-1"}, {"text": "receive"}, {"text": "canine"}, {"text": "or"}, {"text": "feline"}, {"text": "visitors"}, {"text": "are"}, {"text": "found"}, {"text": "*-2"}, {"text": "to"}, {"text": "have"}, {"text": "lower"}, {"text": "blood"}, {"text": "pressure"}, {"text": "and"}, {"text": "improved"}, {"text": "appetite"}, {"text": "and"}, {"text": "be"}, {"text": "more"}, {"text": "receptive"}, {"text": "to"}, {"text": "therapy"}, {"text": ","}, {"text": "says"}, {"text": "0"}, {"text": "*T*-3"}, {"text": "Mary"}, {"text": "Ann"}, {"text": "O'Loughlin"}, {"text": ","}, {"text": "program"}, {"text": "coordinator"}, {"text": "."}, {"text": "TIRED"}, {"text": "OF"}, {"text": "*"}, {"text": "TRIMMING"}, {"text": "?"}, {"text": "Hammacher"}, {"text": "Schlemmer"}, {"text": "&"}, {"text": "Co."}, {"text": "offers"}, {"text": "a"}, {"text": "fiber-optic"}, {"text": "Christmas"}, {"text": "tree"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "eliminates"}, {"text": "the"}, {"text": "need"}, {"text": "*"}, {"text": "to"}, {"text": "string"}, {"text": "lights"}, {"text": "."}, {"text": "The"}, {"text": "$"}, {"text": "6,500"}, {"text": "*U*"}, {"text": "tree"}, {"text": "is"}, {"text": "designed"}, {"text": "*-1"}, {"text": "to"}, {"text": "send"}, {"text": "continuously"}, {"text": "changing"}, {"text": "colored"}, {"text": "light"}, {"text": "to"}, {"text": "dozens"}, {"text": "of"}, {"text": "fiber-end"}, {"text": "bunches"}, {"text": "."}, {"text": "MEDICINE"}, {"text": "TRANSPLANT"}, {"text": ":"}, {"text": "Growth"}, {"text": "of"}, {"text": "Japanese"}, {"text": "trade"}, {"text": "and"}, {"text": "travel"}, {"text": "prompts"}, {"text": "Beth"}, {"text": "Israel"}, {"text": "Medical"}, {"text": "Center"}, {"text": ","}, {"text": "New"}, {"text": "York"}, {"text": ","}, {"text": "to"}, {"text": "set"}, {"text": "up"}, {"text": "a"}, {"text": "bilingual"}, {"text": "medical"}, {"text": "practice"}, {"text": "."}, {"text": "*-1"}, {"text": "Funded"}, {"text": "*-2"}, {"text": "by"}, {"text": "a"}, {"text": "$"}, {"text": "1"}, {"text": "million"}, {"text": "*U*"}, {"text": "gift"}, {"text": "from"}, {"text": "Tokio"}, {"text": "Marine"}, {"text": "&"}, {"text": "Fire"}, {"text": "Insurance"}, {"text": ","}, {"text": "the"}, {"text": "service"}, {"text": "will"}, {"text": "follow"}, {"text": "Japanese"}, {"text": "medical"}, {"text": "protocols"}, {"text": ","}, {"text": "including"}, {"text": "emphasis"}, {"text": "on"}, {"text": "preventative"}, {"text": "medicine"}, {"text": "."}, {"text": "DIAPER"}, {"text": "SERVICES"}, {"text": "make"}, {"text": "a"}, {"text": "comeback"}, {"text": "amid"}, {"text": "growing"}, {"text": "environmental"}, {"text": "concerns"}, {"text": "."}, {"text": "*-1"}, {"text": "Concerned"}, {"text": "about"}, {"text": "shrinking"}, {"text": "landfills"}, {"text": "and"}, {"text": "the"}, {"text": "safety"}, {"text": "of"}, {"text": "chemicals"}, {"text": "used"}, {"text": "*"}, {"text": "in"}, {"text": "super-absorbent"}, {"text": "disposables"}, {"text": ","}, {"text": "parents"}, {"text": "are"}, {"text": "returning"}, {"text": "to"}, {"text": "the"}, {"text": "cloth"}, {"text": "diaper"}, {"text": "."}, {"text": "Tiny"}, {"text": "Tots"}, {"text": "Inc."}, {"text": ","}, {"text": "Campbell"}, {"text": ","}, {"text": "Calif."}, {"text": ","}, {"text": "says"}, {"text": "0"}, {"text": "business"}, {"text": "is"}, {"text": "up"}, {"text": "35"}, {"text": "%"}, {"text": "in"}, {"text": "the"}, {"text": "past"}, {"text": "year"}, {"text": "."}, {"text": "``"}, {"text": "We"}, {"text": "'re"}, {"text": "gaining"}, {"text": "1,200"}, {"text": "new"}, {"text": "customers"}, {"text": "each"}, {"text": "week"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "Jack"}, {"text": "Mogavero"}, {"text": "of"}, {"text": "General"}, {"text": "Health"}, {"text": "Care"}, {"text": "Corp."}, {"text": ","}, {"text": "Piscataway"}, {"text": ","}, {"text": "N.J"}, {"text": "."}, {"text": "In"}, {"text": "Syracuse"}, {"text": ","}, {"text": "N.Y."}, {"text": ","}, {"text": "DyDee"}, {"text": "Service"}, {"text": "'s"}, {"text": "new"}, {"text": "marketing"}, {"text": "push"}, {"text": "stresses"}, {"text": "environmental"}, {"text": "awareness"}, {"text": "."}, {"text": "Among"}, {"text": "its"}, {"text": "new"}, {"text": "customers"}, {"text": ":"}, {"text": "day-care"}, {"text": "centers"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "previously"}, {"text": "spurned"}, {"text": "the"}, {"text": "service"}, {"text": "."}, {"text": "The"}, {"text": "National"}, {"text": "Association"}, {"text": "of"}, {"text": "Diaper"}, {"text": "Services"}, {"text": ","}, {"text": "Philadelphia"}, {"text": ","}, {"text": "says"}, {"text": "that"}, {"text": "since"}, {"text": "January"}, {"text": "it"}, {"text": "has"}, {"text": "gotten"}, {"text": "more"}, {"text": "than"}, {"text": "672"}, {"text": "inquiries"}, {"text": "from"}, {"text": "people"}, {"text": "interested"}, {"text": "in"}, {"text": "*"}, {"text": "starting"}, {"text": "diaper"}, {"text": "services"}, {"text": "."}, {"text": "Elisa"}, {"text": "Hollis"}, {"text": "launched"}, {"text": "a"}, {"text": "diaper"}, {"text": "service"}, {"text": "last"}, {"text": "year"}, {"text": "because"}, {"text": "State"}, {"text": "College"}, {"text": ","}, {"text": "Pa."}, {"text": ","}, {"text": "where"}, {"text": "she"}, {"text": "lives"}, {"text": "*T*-1"}, {"text": ","}, {"text": "did"}, {"text": "n't"}, {"text": "have"}, {"text": "one"}, {"text": "."}, {"text": "Diaper"}, {"text": "shortages"}, {"text": "this"}, {"text": "summer"}, {"text": "limited"}, {"text": "growth"}, {"text": "at"}, {"text": "Stork"}, {"text": "Diaper"}, {"text": "Services"}, {"text": ","}, {"text": "Springfield"}, {"text": ","}, {"text": "Mass."}, {"text": ","}, {"text": "where"}, {"text": "business"}, {"text": "is"}, {"text": "up"}, {"text": "25"}, {"text": "%"}, {"text": "in"}, {"text": "*T*-1"}, {"text": "*"}, {"text": "Also"}, {"text": "spurring"}, {"text": "the"}, {"text": "move"}, {"text": "to"}, {"text": "cloth"}, {"text": ":"}, {"text": "diaper"}, {"text": "covers"}, {"text": "with"}, {"text": "Velcro"}, {"text": "fasteners"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "eliminate"}, {"text": "the"}, {"text": "need"}, {"text": "for"}, {"text": "safety"}, {"text": "pins"}, {"text": "."}, {"text": "BRIEFS"}, {"text": ":"}, {"text": "Only"}, {"text": "57.6"}, {"text": "%"}, {"text": "of"}, {"text": "New"}, {"text": "Yorkers"}, {"text": "watch"}, {"text": "the"}, {"text": "local"}, {"text": "news"}, {"text": ","}, {"text": "the"}, {"text": "lowest"}, {"text": "viewership"}, {"text": "in"}, {"text": "the"}, {"text": "country"}, {"text": ","}, {"text": "says"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "a"}, {"text": "new"}, {"text": "study"}, {"text": "by"}, {"text": "Impact"}, {"text": "Resources"}, {"text": "Inc."}, {"text": ","}, {"text": "Columbus"}, {"text": ","}, {"text": "Ohio"}, {"text": "..."}, {"text": "."}, {"text": "FreudToy"}, {"text": ","}, {"text": "a"}, {"text": "pillow"}, {"text": "bearing"}, {"text": "the"}, {"text": "likeness"}, {"text": "of"}, {"text": "Sigmund"}, {"text": "Freud"}, {"text": ","}, {"text": "is"}, {"text": "marketed"}, {"text": "*-1"}, {"text": "as"}, {"text": "a"}, {"text": "$"}, {"text": "24.95"}, {"text": "*U*"}, {"text": "tool"}, {"text": "for"}, {"text": "do-it-yourself"}, {"text": "analysis"}, {"text": "."}, {"text": "Program"}, {"text": "trading"}, {"text": "is"}, {"text": "``"}, {"text": "a"}, {"text": "racket"}, {"text": ","}, {"text": "''"}, {"text": "complains"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "Edward"}, {"text": "Egnuss"}, {"text": ","}, {"text": "a"}, {"text": "White"}, {"text": "Plains"}, {"text": ","}, {"text": "N.Y."}, {"text": ","}, {"text": "investor"}, {"text": "and"}, {"text": "electronics"}, {"text": "sales"}, {"text": "executive"}, {"text": ","}, {"text": "``"}, {"text": "and"}, {"text": "it"}, {"text": "'s"}, {"text": "not"}, {"text": "to"}, {"text": "the"}, {"text": "benefit"}, {"text": "of"}, {"text": "the"}, {"text": "small"}, {"text": "investor"}, {"text": ","}, {"text": "that"}, {"text": "'s"}, {"text": "for"}, {"text": "sure"}, {"text": "."}, {"text": "''"}, {"text": "But"}, {"text": "although"}, {"text": "he"}, {"text": "thinks"}, {"text": "that"}, {"text": "it"}, {"text": "is"}, {"text": "hurting"}, {"text": "him"}, {"text": ","}, {"text": "he"}, {"text": "doubts"}, {"text": "0"}, {"text": "it"}, {"text": "could"}, {"text": "be"}, {"text": "stopped"}, {"text": "*-1"}, {"text": "."}, {"text": "Mr."}, {"text": "Egnuss"}, {"text": "'s"}, {"text": "dislike"}, {"text": "of"}, {"text": "program"}, {"text": "trading"}, {"text": "is"}, {"text": "echoed"}, {"text": "*-1"}, {"text": "by"}, {"text": "many"}, {"text": "small"}, {"text": "investors"}, {"text": "interviewed"}, {"text": "*"}, {"text": "by"}, {"text": "Wall"}, {"text": "Street"}, {"text": "Journal"}, {"text": "reporters"}, {"text": "across"}, {"text": "the"}, {"text": "country"}, {"text": "."}, {"text": "But"}, {"text": "like"}, {"text": "Mr."}, {"text": "Egnuss"}, {"text": ","}, {"text": "few"}, {"text": "expect"}, {"text": "it"}, {"text": "to"}, {"text": "be"}, {"text": "halted"}, {"text": "*-1"}, {"text": "entirely"}, {"text": ","}, {"text": "and"}, {"text": "a"}, {"text": "surprising"}, {"text": "number"}, {"text": "doubt"}, {"text": "0"}, {"text": "it"}, {"text": "should"}, {"text": "be"}, {"text": "*?*"}, {"text": "."}, {"text": "``"}, {"text": "I"}, {"text": "think"}, {"text": "0"}, {"text": "program"}, {"text": "trading"}, {"text": "is"}, {"text": "basically"}, {"text": "unfair"}, {"text": "to"}, {"text": "the"}, {"text": "individual"}, {"text": "investor"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "Leo"}, {"text": "Fields"}, {"text": ","}, {"text": "a"}, {"text": "Dallas"}, {"text": "investor"}, {"text": "."}, {"text": "He"}, {"text": "notes"}, {"text": "that"}, {"text": "program"}, {"text": "traders"}, {"text": "have"}, {"text": "a"}, {"text": "commission"}, {"text": "cost"}, {"text": "advantage"}, {"text": "because"}, {"text": "of"}, {"text": "the"}, {"text": "quantity"}, {"text": "of"}, {"text": "their"}, {"text": "trades"}, {"text": ","}, {"text": "that"}, {"text": "they"}, {"text": "have"}, {"text": "a"}, {"text": "smaller"}, {"text": "margin"}, {"text": "requirement"}, {"text": "than"}, {"text": "individual"}, {"text": "investors"}, {"text": "do"}, {"text": "and"}, {"text": "that"}, {"text": "they"}, {"text": "often"}, {"text": "can"}, {"text": "figure"}, {"text": "out"}, {"text": "earlier"}, {"text": "where"}, {"text": "the"}, {"text": "market"}, {"text": "is"}, {"text": "heading"}, {"text": "*T*-1"}, {"text": "."}, {"text": "But"}, {"text": "he"}, {"text": "blames"}, {"text": "program"}, {"text": "trading"}, {"text": "for"}, {"text": "only"}, {"text": "some"}, {"text": "of"}, {"text": "the"}, {"text": "market"}, {"text": "'s"}, {"text": "volatility"}, {"text": "."}, {"text": "He"}, {"text": "also"}, {"text": "considers"}, {"text": "the"}, {"text": "market"}, {"text": "overvalued"}, {"text": "and"}, {"text": "cites"}, {"text": "the"}, {"text": "troubles"}, {"text": "in"}, {"text": "junk"}, {"text": "bonds"}, {"text": "."}, {"text": "He"}, {"text": "adds"}, {"text": ":"}, {"text": "``"}, {"text": "The"}, {"text": "market"}, {"text": "may"}, {"text": "be"}, {"text": "giving"}, {"text": "us"}, {"text": "another"}, {"text": "message"}, {"text": ","}, {"text": "that"}, {"text": "a"}, {"text": "recession"}, {"text": "is"}, {"text": "looming"}, {"text": "."}, {"text": "''"}, {"text": "Or"}, {"text": ","}, {"text": "as"}, {"text": "Dorothy"}, {"text": "Arighi"}, {"text": ","}, {"text": "an"}, {"text": "interior"}, {"text": "decorator"}, {"text": "in"}, {"text": "Arnold"}, {"text": ","}, {"text": "Calif."}, {"text": ","}, {"text": "puts"}, {"text": "it"}, {"text": ":"}, {"text": "``"}, {"text": "All"}, {"text": "kinds"}, {"text": "of"}, {"text": "funny"}, {"text": "things"}, {"text": "spook"}, {"text": "the"}, {"text": "market"}, {"text": "these"}, {"text": "days"}, {"text": "."}, {"text": "''"}, {"text": "But"}, {"text": "she"}, {"text": "believes"}, {"text": "that"}, {"text": "``"}, {"text": "program"}, {"text": "trading"}, {"text": "creates"}, {"text": "deviant"}, {"text": "swings"}, {"text": "."}, {"text": "It"}, {"text": "'s"}, {"text": "not"}, {"text": "a"}, {"text": "sound"}, {"text": "thing"}, {"text": ";"}, {"text": "there"}, {"text": "'s"}, {"text": "no"}, {"text": "inherent"}, {"text": "virtue"}, {"text": "in"}, {"text": "it"}, {"text": "."}, {"text": "''"}, {"text": "She"}, {"text": "adds"}, {"text": "that"}, {"text": "legislation"}, {"text": "curbing"}, {"text": "it"}, {"text": "would"}, {"text": "be"}, {"text": "``"}, {"text": "a"}, {"text": "darned"}, {"text": "good"}, {"text": "idea"}, {"text": "."}, {"text": "''"}, {"text": "At"}, {"text": "the"}, {"text": "Charles"}, {"text": "Schwab"}, {"text": "&"}, {"text": "Co."}, {"text": "office"}, {"text": "in"}, {"text": "Atlanta"}, {"text": "'s"}, {"text": "Buckhead"}, {"text": "district"}, {"text": ","}, {"text": "a"}, {"text": "group"}, {"text": "of"}, {"text": "investors"}, {"text": "voices"}, {"text": "skepticism"}, {"text": "that"}, {"text": "federal"}, {"text": "officials"}, {"text": "would"}, {"text": "curb"}, {"text": "program"}, {"text": "trading"}, {"text": "."}, {"text": "*-1"}, {"text": "Citing"}, {"text": "the"}, {"text": "October"}, {"text": "1987"}, {"text": "crash"}, {"text": ","}, {"text": "Glenn"}, {"text": "Miller"}, {"text": "says"}, {"text": ","}, {"text": "``"}, {"text": "It"}, {"text": "'s"}, {"text": "like"}, {"text": "the"}, {"text": "last"}, {"text": "crash"}, {"text": "--"}, {"text": "they"}, {"text": "threatened"}, {"text": ","}, {"text": "but"}, {"text": "no"}, {"text": "one"}, {"text": "did"}, {"text": "anything"}, {"text": "."}, {"text": "''"}, {"text": "A."}, {"text": "Donald"}, {"text": "Anderson"}, {"text": ","}, {"text": "a"}, {"text": "59-year-old"}, {"text": "Los"}, {"text": "Angeles"}, {"text": "investor"}, {"text": "who"}, {"text": "*T*-1"}, {"text": "says"}, {"text": "0"}, {"text": "the"}, {"text": "stock"}, {"text": "market"}, {"text": "'s"}, {"text": "``"}, {"text": "fluctuations"}, {"text": "and"}, {"text": "gyrations"}, {"text": "give"}, {"text": "me"}, {"text": "the"}, {"text": "heebie-jeebies"}, {"text": ","}, {"text": "''"}, {"text": "does"}, {"text": "n't"}, {"text": "see"}, {"text": "much"}, {"text": "point"}, {"text": "in"}, {"text": "*"}, {"text": "outlawing"}, {"text": "program"}, {"text": "trading"}, {"text": "."}, {"text": "Those"}, {"text": "who"}, {"text": "*T*-1"}, {"text": "still"}, {"text": "want"}, {"text": "*-2"}, {"text": "to"}, {"text": "do"}, {"text": "it"}, {"text": "``"}, {"text": "will"}, {"text": "just"}, {"text": "find"}, {"text": "some"}, {"text": "way"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "get"}, {"text": "around"}, {"text": "''"}, {"text": "any"}, {"text": "attempt"}, {"text": "*"}, {"text": "to"}, {"text": "curb"}, {"text": "it"}, {"text": "*T*-3"}, {"text": "."}, {"text": "Similarly"}, {"text": ","}, {"text": "Rick"}, {"text": "Wamre"}, {"text": ","}, {"text": "a"}, {"text": "31-year-old"}, {"text": "asset"}, {"text": "manager"}, {"text": "for"}, {"text": "a"}, {"text": "Dallas"}, {"text": "real-estate"}, {"text": "firm"}, {"text": ","}, {"text": "would"}, {"text": "like"}, {"text": "*-1"}, {"text": "to"}, {"text": "see"}, {"text": "program"}, {"text": "trading"}, {"text": "disappear"}, {"text": "because"}, {"text": "``"}, {"text": "I"}, {"text": "ca"}, {"text": "n't"}, {"text": "see"}, {"text": "that"}, {"text": "it"}, {"text": "does"}, {"text": "anything"}, {"text": "for"}, {"text": "the"}, {"text": "market"}, {"text": "or"}, {"text": "the"}, {"text": "country"}, {"text": "."}, {"text": "''"}, {"text": "Yet"}, {"text": "he"}, {"text": "is"}, {"text": "n't"}, {"text": "in"}, {"text": "favor"}, {"text": "of"}, {"text": "new"}, {"text": "legislation"}, {"text": "."}, {"text": "``"}, {"text": "I"}, {"text": "think"}, {"text": "0"}, {"text": "we"}, {"text": "'ve"}, {"text": "got"}, {"text": "enough"}, {"text": "securities"}, {"text": "laws"}, {"text": ","}, {"text": "''"}, {"text": "he"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "."}, {"text": "``"}, {"text": "I"}, {"text": "'d"}, {"text": "much"}, {"text": "rather"}, {"text": "see"}, {"text": "them"}, {"text": "dealing"}, {"text": "with"}, {"text": "interest"}, {"text": "rates"}, {"text": "and"}, {"text": "the"}, {"text": "deficit"}, {"text": "."}, {"text": "''"}, {"text": "Peter"}, {"text": "Anthony"}, {"text": ","}, {"text": "who"}, {"text": "*T*-1"}, {"text": "runs"}, {"text": "an"}, {"text": "employment"}, {"text": "agency"}, {"text": "in"}, {"text": "New"}, {"text": "York"}, {"text": ","}, {"text": "decries"}, {"text": "program"}, {"text": "trading"}, {"text": "as"}, {"text": "``"}, {"text": "*"}, {"text": "limiting"}, {"text": "the"}, {"text": "game"}, {"text": "to"}, {"text": "a"}, {"text": "few"}, {"text": ","}, {"text": "''"}, {"text": "but"}, {"text": "he"}, {"text": "also"}, {"text": "is"}, {"text": "n't"}, {"text": "sure"}, {"text": "0"}, {"text": "it"}, {"text": "should"}, {"text": "be"}, {"text": "more"}, {"text": "strictly"}, {"text": "regulated"}, {"text": "*-2"}, {"text": "."}, {"text": "``"}, {"text": "I"}, {"text": "do"}, {"text": "n't"}, {"text": "want"}, {"text": "*-1"}, {"text": "to"}, {"text": "denounce"}, {"text": "it"}, {"text": "because"}, {"text": "*"}, {"text": "denouncing"}, {"text": "it"}, {"text": "would"}, {"text": "be"}, {"text": "like"}, {"text": "*"}, {"text": "denouncing"}, {"text": "capitalism"}, {"text": ","}, {"text": "''"}, {"text": "he"}, {"text": "explains"}, {"text": "*T*-2"}, {"text": "."}, {"text": "And"}, {"text": "surprising"}, {"text": "numbers"}, {"text": "of"}, {"text": "small"}, {"text": "investors"}, {"text": "seem"}, {"text": "*-1"}, {"text": "to"}, {"text": "be"}, {"text": "adapting"}, {"text": "to"}, {"text": "greater"}, {"text": "stock"}, {"text": "market"}, {"text": "volatility"}, {"text": "and"}, {"text": "say"}, {"text": "0"}, {"text": "they"}, {"text": "can"}, {"text": "live"}, {"text": "with"}, {"text": "program"}, {"text": "trading"}, {"text": "."}, {"text": "Glenn"}, {"text": "Britta"}, {"text": ","}, {"text": "a"}, {"text": "25-year-old"}, {"text": "New"}, {"text": "York"}, {"text": "financial"}, {"text": "analyst"}, {"text": "who"}, {"text": "*T*-1"}, {"text": "plays"}, {"text": "options"}, {"text": "for"}, {"text": "his"}, {"text": "personal"}, {"text": "account"}, {"text": ","}, {"text": "says"}, {"text": "0"}, {"text": "he"}, {"text": "is"}, {"text": "``"}, {"text": "factoring"}, {"text": "''"}, {"text": "the"}, {"text": "market"}, {"text": "'s"}, {"text": "volatility"}, {"text": "``"}, {"text": "into"}, {"text": "investment"}, {"text": "decisions"}, {"text": "."}, {"text": "''"}, {"text": "He"}, {"text": "adds"}, {"text": "that"}, {"text": "program"}, {"text": "trading"}, {"text": "``"}, {"text": "increases"}, {"text": "liquidity"}, {"text": "in"}, {"text": "the"}, {"text": "market"}, {"text": "."}, {"text": "You"}, {"text": "ca"}, {"text": "n't"}, {"text": "hold"}, {"text": "back"}, {"text": "technology"}, {"text": "."}, {"text": "''"}, {"text": "And"}, {"text": "the"}, {"text": "practice"}, {"text": "should"}, {"text": "n't"}, {"text": "be"}, {"text": "stopped"}, {"text": "*-1"}, {"text": ","}, {"text": "he"}, {"text": "says"}, {"text": "0"}, {"text": "*T*-2"}, {"text": ","}, {"text": "because"}, {"text": "``"}, {"text": "even"}, {"text": "big"}, {"text": "players"}, {"text": "are"}, {"text": "n't"}, {"text": "immune"}, {"text": "to"}, {"text": "the"}, {"text": "rigors"}, {"text": "of"}, {"text": "program"}, {"text": "trading"}, {"text": "."}, {"text": "''"}, {"text": "*-2"}, {"text": "Also"}, {"text": "in"}, {"text": "New"}, {"text": "York"}, {"text": ","}, {"text": "Israel"}, {"text": "Silverman"}, {"text": ","}, {"text": "an"}, {"text": "insurance-company"}, {"text": "lawyer"}, {"text": ","}, {"text": "comments"}, {"text": "that"}, {"text": "program"}, {"text": "trading"}, {"text": "``"}, {"text": "increases"}, {"text": "volatility"}, {"text": ","}, {"text": "but"}, {"text": "I"}, {"text": "do"}, {"text": "n't"}, {"text": "think"}, {"text": "0"}, {"text": "it"}, {"text": "should"}, {"text": "be"}, {"text": "banned"}, {"text": "*-1"}, {"text": "."}, {"text": "There"}, {"text": "'s"}, {"text": "no"}, {"text": "culprit"}, {"text": "here"}, {"text": "."}, {"text": "The"}, {"text": "market"}, {"text": "is"}, {"text": "just"}, {"text": "becoming"}, {"text": "more"}, {"text": "efficient"}, {"text": "."}, {"text": "''"}, {"text": "*"}, {"text": "Arbitraging"}, {"text": "on"}, {"text": "differences"}, {"text": "between"}, {"text": "spot"}, {"text": "and"}, {"text": "futures"}, {"text": "prices"}, {"text": "is"}, {"text": "an"}, {"text": "important"}, {"text": "part"}, {"text": "of"}, {"text": "many"}, {"text": "financial"}, {"text": "markets"}, {"text": ","}, {"text": "he"}, {"text": "says"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "He"}, {"text": "adds"}, {"text": "that"}, {"text": "his"}, {"text": "shares"}, {"text": "in"}, {"text": "a"}, {"text": "company"}, {"text": "savings"}, {"text": "plan"}, {"text": "are"}, {"text": "invested"}, {"text": "*-1"}, {"text": "in"}, {"text": "a"}, {"text": "mutual"}, {"text": "fund"}, {"text": ","}, {"text": "and"}, {"text": "volatility"}, {"text": ","}, {"text": "on"}, {"text": "a"}, {"text": "given"}, {"text": "day"}, {"text": ","}, {"text": "may"}, {"text": "hurt"}, {"text": "the"}, {"text": "fund"}, {"text": "."}, {"text": "But"}, {"text": "``"}, {"text": "I"}, {"text": "'m"}, {"text": "a"}, {"text": "long-term"}, {"text": "investor"}, {"text": ","}, {"text": "''"}, {"text": "he"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "."}, {"text": "``"}, {"text": "If"}, {"text": "you"}, {"text": "were"}, {"text": "a"}, {"text": "short-term"}, {"text": "investor"}, {"text": ","}, {"text": "you"}, {"text": "might"}, {"text": "be"}, {"text": "more"}, {"text": "leery"}, {"text": "about"}, {"text": "program"}, {"text": "trading"}, {"text": "."}, {"text": "''"}, {"text": "Jim"}, {"text": "Enzor"}, {"text": "of"}, {"text": "Atlanta"}, {"text": "defends"}, {"text": "program"}, {"text": "trading"}, {"text": "because"}, {"text": "he"}, {"text": "believes"}, {"text": "that"}, {"text": "it"}, {"text": "can"}, {"text": "bring"}, {"text": "the"}, {"text": "market"}, {"text": "back"}, {"text": "up"}, {"text": "after"}, {"text": "a"}, {"text": "plunge"}, {"text": "."}, {"text": "``"}, {"text": "If"}, {"text": "we"}, {"text": "have"}, {"text": "a"}, {"text": "real"}, {"text": "bad"}, {"text": "day"}, {"text": ","}, {"text": "the"}, {"text": "program"}, {"text": "would"}, {"text": "say"}, {"text": ","}, {"text": "`"}, {"text": "*"}, {"text": "Buy"}, {"text": ","}, {"text": "'"}, {"text": "''"}, {"text": "he"}, {"text": "explains"}, {"text": "*T*-1"}, {"text": "."}, {"text": "``"}, {"text": "If"}, {"text": "you"}, {"text": "could"}, {"text": "get"}, {"text": "the"}, {"text": "rhythm"}, {"text": "of"}, {"text": "the"}, {"text": "program"}, {"text": "trading"}, {"text": ","}, {"text": "you"}, {"text": "could"}, {"text": "take"}, {"text": "advantage"}, {"text": "of"}, {"text": "it"}, {"text": "."}, {"text": "''"}, {"text": "What"}, {"text": "else"}, {"text": "can"}, {"text": "a"}, {"text": "small"}, {"text": "investor"}, {"text": "do"}, {"text": "*T*-1"}, {"text": "?"}, {"text": "Scott"}, {"text": "Taccetta"}, {"text": ","}, {"text": "a"}, {"text": "Chicago"}, {"text": "accountant"}, {"text": ","}, {"text": "is"}, {"text": "going"}, {"text": "into"}, {"text": "money-market"}, {"text": "funds"}, {"text": "."}, {"text": "Mr."}, {"text": "Taccetta"}, {"text": "says"}, {"text": "0"}, {"text": "he"}, {"text": "had"}, {"text": "just"}, {"text": "recouped"}, {"text": "the"}, {"text": "$"}, {"text": "5,000"}, {"text": "*U*"}, {"text": "0"}, {"text": "he"}, {"text": "lost"}, {"text": "*T*-1"}, {"text": "in"}, {"text": "the"}, {"text": "1987"}, {"text": "crash"}, {"text": "when"}, {"text": "he"}, {"text": "lost"}, {"text": "more"}, {"text": "money"}, {"text": "last"}, {"text": "Oct."}, {"text": "13"}, {"text": "*T*-2"}, {"text": "."}, {"text": "Now"}, {"text": ","}, {"text": "he"}, {"text": "plans"}, {"text": "*-1"}, {"text": "to"}, {"text": "sell"}, {"text": "all"}, {"text": "his"}, {"text": "stocks"}, {"text": "by"}, {"text": "the"}, {"text": "first"}, {"text": "quarter"}, {"text": "of"}, {"text": "1990"}, {"text": "."}, {"text": "In"}, {"text": "October"}, {"text": ","}, {"text": "before"}, {"text": "the"}, {"text": "market"}, {"text": "dropped"}, {"text": ","}, {"text": "Mrs."}, {"text": "Arighi"}, {"text": "of"}, {"text": "Arnold"}, {"text": ","}, {"text": "Calif."}, {"text": ","}, {"text": "moved"}, {"text": "*-1"}, {"text": "to"}, {"text": "sell"}, {"text": "the"}, {"text": "``"}, {"text": "speculative"}, {"text": "stocks"}, {"text": "''"}, {"text": "in"}, {"text": "her"}, {"text": "family"}, {"text": "trust"}, {"text": "``"}, {"text": "so"}, {"text": "we"}, {"text": "will"}, {"text": "be"}, {"text": "able"}, {"text": "*-2"}, {"text": "to"}, {"text": "withstand"}, {"text": "all"}, {"text": "this"}, {"text": "flim-flammery"}, {"text": "''"}, {"text": "caused"}, {"text": "*"}, {"text": "by"}, {"text": "program"}, {"text": "trading"}, {"text": "."}, {"text": "She"}, {"text": "believes"}, {"text": "that"}, {"text": "the"}, {"text": "only"}, {"text": "answer"}, {"text": "for"}, {"text": "individuals"}, {"text": "is"}, {"text": "*"}, {"text": "to"}, {"text": "``"}, {"text": "buy"}, {"text": "stocks"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "'ll"}, {"text": "weather"}, {"text": "any"}, {"text": "storm"}, {"text": "."}, {"text": "''"}, {"text": "Lucille"}, {"text": "Gorman"}, {"text": ","}, {"text": "an"}, {"text": "84-year-old"}, {"text": "Chicago"}, {"text": "housewife"}, {"text": ","}, {"text": "has"}, {"text": "become"}, {"text": "amazingly"}, {"text": "immune"}, {"text": "to"}, {"text": "stock-market"}, {"text": "jolts"}, {"text": "."}, {"text": "Mrs."}, {"text": "Gorman"}, {"text": "took"}, {"text": "advantage"}, {"text": "of"}, {"text": "low"}, {"text": "prices"}, {"text": "after"}, {"text": "the"}, {"text": "1987"}, {"text": "crash"}, {"text": "*-1"}, {"text": "to"}, {"text": "buy"}, {"text": "stocks"}, {"text": "and"}, {"text": "has"}, {"text": "hunted"}, {"text": "for"}, {"text": "other"}, {"text": "bargains"}, {"text": "since"}, {"text": "the"}, {"text": "Oct."}, {"text": "13"}, {"text": "plunge"}, {"text": "."}, {"text": "``"}, {"text": "My"}, {"text": "stocks"}, {"text": "are"}, {"text": "all"}, {"text": "blue"}, {"text": "chips"}, {"text": ","}, {"text": "''"}, {"text": "she"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "."}, {"text": "``"}, {"text": "If"}, {"text": "the"}, {"text": "market"}, {"text": "goes"}, {"text": "down"}, {"text": ","}, {"text": "I"}, {"text": "figure"}, {"text": "0"}, {"text": "it"}, {"text": "'s"}, {"text": "paper"}, {"text": "profits"}, {"text": "0"}, {"text": "I"}, {"text": "'m"}, {"text": "losing"}, {"text": "*T*-1"}, {"text": "."}, {"text": "On"}, {"text": "the"}, {"text": "other"}, {"text": "hand"}, {"text": ","}, {"text": "if"}, {"text": "it"}, {"text": "goes"}, {"text": "way"}, {"text": "sky"}, {"text": "high"}, {"text": ","}, {"text": "I"}, {"text": "always"}, {"text": "sell"}, {"text": "."}, {"text": "You"}, {"text": "do"}, {"text": "n't"}, {"text": "want"}, {"text": "*-1"}, {"text": "to"}, {"text": "get"}, {"text": "yourself"}, {"text": "too"}, {"text": "upset"}, {"text": "about"}, {"text": "these"}, {"text": "things"}, {"text": "."}, {"text": "Young"}, {"text": "'s"}, {"text": "Market"}, {"text": "Co."}, {"text": ","}, {"text": "a"}, {"text": "wholesaler"}, {"text": "of"}, {"text": "spirits"}, {"text": ","}, {"text": "wines"}, {"text": "and"}, {"text": "other"}, {"text": "goods"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "will"}, {"text": "merge"}, {"text": "with"}, {"text": "a"}, {"text": "new"}, {"text": "corporation"}, {"text": "formed"}, {"text": "*"}, {"text": "by"}, {"text": "the"}, {"text": "Underwood"}, {"text": "family"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "controls"}, {"text": "Young"}, {"text": "'s"}, {"text": "."}, {"text": "Under"}, {"text": "terms"}, {"text": "of"}, {"text": "the"}, {"text": "agreement"}, {"text": ","}, {"text": "shareholders"}, {"text": "other"}, {"text": "than"}, {"text": "the"}, {"text": "Underwoods"}, {"text": "will"}, {"text": "receive"}, {"text": "$"}, {"text": "3,500"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": "at"}, {"text": "closing"}, {"text": ","}, {"text": "which"}, {"text": "*T*-2"}, {"text": "is"}, {"text": "expected"}, {"text": "*-1"}, {"text": "in"}, {"text": "December"}, {"text": "."}, {"text": "The"}, {"text": "Underwood"}, {"text": "family"}, {"text": "said"}, {"text": "that"}, {"text": "holders"}, {"text": "of"}, {"text": "more"}, {"text": "than"}, {"text": "a"}, {"text": "majority"}, {"text": "of"}, {"text": "the"}, {"text": "stock"}, {"text": "of"}, {"text": "the"}, {"text": "company"}, {"text": "have"}, {"text": "approved"}, {"text": "the"}, {"text": "transaction"}, {"text": "by"}, {"text": "written"}, {"text": "consent"}, {"text": "."}, {"text": "Researchers"}, {"text": "at"}, {"text": "American"}, {"text": "Telephone"}, {"text": "&"}, {"text": "Telegraph"}, {"text": "Co."}, {"text": "'s"}, {"text": "Bell"}, {"text": "Laboratories"}, {"text": "reported"}, {"text": "0"}, {"text": "they"}, {"text": "raised"}, {"text": "the"}, {"text": "electrical"}, {"text": "current-carrying"}, {"text": "capacity"}, {"text": "of"}, {"text": "new"}, {"text": "superconductor"}, {"text": "crystals"}, {"text": "by"}, {"text": "a"}, {"text": "factor"}, {"text": "of"}, {"text": "100"}, {"text": ","}, {"text": "*-1"}, {"text": "moving"}, {"text": "the"}, {"text": "materials"}, {"text": "closer"}, {"text": "to"}, {"text": "commercial"}, {"text": "use"}, {"text": "."}, {"text": "The"}, {"text": "scientists"}, {"text": "said"}, {"text": "0"}, {"text": "they"}, {"text": "created"}, {"text": "small"}, {"text": "changes"}, {"text": "in"}, {"text": "the"}, {"text": "crystal-lattice"}, {"text": "structures"}, {"text": "of"}, {"text": "the"}, {"text": "superconductors"}, {"text": "*-2"}, {"text": "to"}, {"text": "raise"}, {"text": "the"}, {"text": "amount"}, {"text": "of"}, {"text": "current"}, {"text": "that"}, {"text": "single"}, {"text": "crystals"}, {"text": "could"}, {"text": "carry"}, {"text": "*T*-1"}, {"text": "to"}, {"text": "600,000"}, {"text": "amps"}, {"text": "per"}, {"text": "square"}, {"text": "centimeter"}, {"text": "in"}, {"text": "a"}, {"text": "moderately"}, {"text": "strong"}, {"text": "magnetic"}, {"text": "field"}, {"text": "."}, {"text": "The"}, {"text": "scientists"}, {"text": "said"}, {"text": "0"}, {"text": "they"}, {"text": "made"}, {"text": "the"}, {"text": "advance"}, {"text": "with"}, {"text": "yttrium-containing"}, {"text": "superconductors"}, {"text": "cooled"}, {"text": "*"}, {"text": "to"}, {"text": "liquid-nitrogen"}, {"text": "temperature"}, {"text": ","}, {"text": "or"}, {"text": "minus"}, {"text": "321"}, {"text": "degrees"}, {"text": "Fahrenheit"}, {"text": "."}, {"text": "Their"}, {"text": "report"}, {"text": "appears"}, {"text": "in"}, {"text": "today"}, {"text": "'s"}, {"text": "issue"}, {"text": "of"}, {"text": "the"}, {"text": "journal"}, {"text": "Nature"}, {"text": "."}, {"text": "The"}, {"text": "finding"}, {"text": "marks"}, {"text": "a"}, {"text": "significant"}, {"text": "step"}, {"text": "in"}, {"text": "research"}, {"text": "on"}, {"text": "``"}, {"text": "bulk"}, {"text": "''"}, {"text": "superconductors"}, {"text": ","}, {"text": "which"}, {"text": "*T*-2"}, {"text": "are"}, {"text": "aimed"}, {"text": "*-1"}, {"text": "at"}, {"text": "use"}, {"text": "in"}, {"text": "wires"}, {"text": "for"}, {"text": "motors"}, {"text": ","}, {"text": "magnets"}, {"text": ","}, {"text": "generators"}, {"text": "and"}, {"text": "other"}, {"text": "applications"}, {"text": "."}, {"text": "Scientists"}, {"text": "had"}, {"text": "obtained"}, {"text": "even"}, {"text": "higher"}, {"text": "current-carrying"}, {"text": "capacity"}, {"text": "in"}, {"text": "thin"}, {"text": "films"}, {"text": "of"}, {"text": "the"}, {"text": "new"}, {"text": "superconductors"}, {"text": ","}, {"text": "but"}, {"text": "have"}, {"text": "had"}, {"text": "problems"}, {"text": "*-2"}, {"text": "increasing"}, {"text": "the"}, {"text": "amount"}, {"text": "of"}, {"text": "current"}, {"text": "that"}, {"text": "bulk"}, {"text": "crystals"}, {"text": "could"}, {"text": "carry"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Superconductors"}, {"text": "conduct"}, {"text": "electricity"}, {"text": "without"}, {"text": "resistance"}, {"text": "when"}, {"text": "*-3"}, {"text": "cooled"}, {"text": "*-2"}, {"text": "*T*-1"}, {"text": "."}, {"text": "A"}, {"text": "family"}, {"text": "of"}, {"text": "ceramic"}, {"text": "superconductors"}, {"text": "discovered"}, {"text": "*"}, {"text": "during"}, {"text": "the"}, {"text": "past"}, {"text": "three"}, {"text": "years"}, {"text": "promise"}, {"text": "new"}, {"text": "technologies"}, {"text": "such"}, {"text": "as"}, {"text": "cheaper"}, {"text": "electrical"}, {"text": "generation"}, {"text": "--"}, {"text": "but"}, {"text": "only"}, {"text": "if"}, {"text": "their"}, {"text": "current-carrying"}, {"text": "capacity"}, {"text": "can"}, {"text": "be"}, {"text": "raised"}, {"text": "*-1"}, {"text": "."}, {"text": "The"}, {"text": "AT&T"}, {"text": "advance"}, {"text": "shows"}, {"text": "how"}, {"text": "one"}, {"text": "aspect"}, {"text": "of"}, {"text": "the"}, {"text": "current-carrying"}, {"text": "problem"}, {"text": "can"}, {"text": "be"}, {"text": "overcome"}, {"text": "*-1"}, {"text": "*T*-2"}, {"text": "."}, {"text": "But"}, {"text": "``"}, {"text": "it"}, {"text": "wo"}, {"text": "n't"}, {"text": "lead"}, {"text": "to"}, {"text": "imminent"}, {"text": "use"}, {"text": "''"}, {"text": "of"}, {"text": "new"}, {"text": "superconductors"}, {"text": ","}, {"text": "cautioned"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "Robert"}, {"text": "B."}, {"text": "van"}, {"text": "Dover"}, {"text": ","}, {"text": "one"}, {"text": "of"}, {"text": "the"}, {"text": "AT&T"}, {"text": "researchers"}, {"text": "."}, {"text": "He"}, {"text": "added"}, {"text": "that"}, {"text": "the"}, {"text": "current-carrying"}, {"text": "capacity"}, {"text": "of"}, {"text": "multi-crystal"}, {"text": "samples"}, {"text": "of"}, {"text": "superconductors"}, {"text": "remains"}, {"text": "too"}, {"text": "low"}, {"text": "for"}, {"text": "most"}, {"text": "practical"}, {"text": "uses"}, {"text": "because"}, {"text": "of"}, {"text": "so-called"}, {"text": "weak"}, {"text": "links"}, {"text": "between"}, {"text": "crystals"}, {"text": "."}, {"text": "Such"}, {"text": "multi-crystal"}, {"text": "materials"}, {"text": "will"}, {"text": "probably"}, {"text": "be"}, {"text": "needed"}, {"text": "*-1"}, {"text": "for"}, {"text": "commercial"}, {"text": "applications"}, {"text": "."}, {"text": "Mr."}, {"text": "van"}, {"text": "Dover"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "AT&T"}, {"text": "team"}, {"text": "created"}, {"text": "the"}, {"text": "desired"}, {"text": "crystal"}, {"text": "changes"}, {"text": "by"}, {"text": "*-2"}, {"text": "bombarding"}, {"text": "superconductor"}, {"text": "samples"}, {"text": "with"}, {"text": "neutrons"}, {"text": ","}, {"text": "a"}, {"text": "process"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "creates"}, {"text": "some"}, {"text": "radioactivity"}, {"text": "in"}, {"text": "the"}, {"text": "samples"}, {"text": "and"}, {"text": "may"}, {"text": "not"}, {"text": "be"}, {"text": "feasible"}, {"text": "for"}, {"text": "large-scale"}, {"text": "commercial"}, {"text": "use"}, {"text": "."}, {"text": "Still"}, {"text": ","}, {"text": "scientists"}, {"text": "breathed"}, {"text": "a"}, {"text": "collective"}, {"text": "sigh"}, {"text": "of"}, {"text": "relief"}, {"text": "about"}, {"text": "the"}, {"text": "finding"}, {"text": ","}, {"text": "because"}, {"text": "it"}, {"text": "demonstrates"}, {"text": "how"}, {"text": "*"}, {"text": "to"}, {"text": "overcome"}, {"text": "the"}, {"text": "``"}, {"text": "flux"}, {"text": "pinning"}, {"text": "''"}, {"text": "problem"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "earlier"}, {"text": "this"}, {"text": "year"}, {"text": "was"}, {"text": "widely"}, {"text": "publicized"}, {"text": "as"}, {"text": "*"}, {"text": "undercutting"}, {"text": "new"}, {"text": "superconductors"}, {"text": "'"}, {"text": "potential"}, {"text": "*T*-2"}, {"text": "."}, {"text": "The"}, {"text": "problem"}, {"text": "involves"}, {"text": "the"}, {"text": "motion"}, {"text": "of"}, {"text": "small"}, {"text": "magnetic"}, {"text": "fields"}, {"text": "within"}, {"text": "superconductor"}, {"text": "crystals"}, {"text": ","}, {"text": "*"}, {"text": "limiting"}, {"text": "their"}, {"text": "current-carrying"}, {"text": "capacity"}, {"text": "."}, {"text": "Mr."}, {"text": "van"}, {"text": "Dover"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "crystal"}, {"text": "changes"}, {"text": "0"}, {"text": "his"}, {"text": "team"}, {"text": "introduced"}, {"text": "*T*-1"}, {"text": "apparently"}, {"text": "pins"}, {"text": "the"}, {"text": "magnetic"}, {"text": "fields"}, {"text": "in"}, {"text": "place"}, {"text": ","}, {"text": "*"}, {"text": "preventing"}, {"text": "them"}, {"text": "from"}, {"text": "*-3"}, {"text": "lowering"}, {"text": "current-carrying"}, {"text": "capacity"}, {"text": "."}, {"text": "Mr."}, {"text": "van"}, {"text": "Dover"}, {"text": "added"}, {"text": "that"}, {"text": "researchers"}, {"text": "are"}, {"text": "trying"}, {"text": "*-2"}, {"text": "to"}, {"text": "determine"}, {"text": "precisely"}, {"text": "what"}, {"text": "crystal"}, {"text": "changes"}, {"text": "*T*-1"}, {"text": "solved"}, {"text": "the"}, {"text": "problem"}, {"text": "."}, {"text": "*"}, {"text": "Determining"}, {"text": "that"}, {"text": "may"}, {"text": "enable"}, {"text": "them"}, {"text": "to"}, {"text": "develop"}, {"text": "better"}, {"text": "ways"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "introduce"}, {"text": "the"}, {"text": "needed"}, {"text": "crystal-lattice"}, {"text": "patterns"}, {"text": "*T*-1"}, {"text": "."}, {"text": "The"}, {"text": "AT&T"}, {"text": "team"}, {"text": "also"}, {"text": "is"}, {"text": "trying"}, {"text": "*-1"}, {"text": "to"}, {"text": "combine"}, {"text": "their"}, {"text": "latest"}, {"text": "superconductor"}, {"text": "process"}, {"text": "with"}, {"text": "``"}, {"text": "melt-textured"}, {"text": "growth"}, {"text": ","}, {"text": "''"}, {"text": "a"}, {"text": "process"}, {"text": "discovered"}, {"text": "*"}, {"text": "earlier"}, {"text": "at"}, {"text": "Bell"}, {"text": "Laboratories"}, {"text": "."}, {"text": "The"}, {"text": "combined"}, {"text": "processes"}, {"text": "may"}, {"text": "significantly"}, {"text": "raise"}, {"text": "the"}, {"text": "current-carrying"}, {"text": "capacity"}, {"text": "of"}, {"text": "multi-crystal"}, {"text": "samples"}, {"text": "."}, {"text": "William"}, {"text": "C."}, {"text": "Walbrecher"}, {"text": "Jr."}, {"text": ","}, {"text": "an"}, {"text": "executive"}, {"text": "at"}, {"text": "San"}, {"text": "Francisco-based"}, {"text": "1st"}, {"text": "Nationwide"}, {"text": "Bank"}, {"text": ","}, {"text": "was"}, {"text": "named"}, {"text": "*-1"}, {"text": "president"}, {"text": "*RNR*-2"}, {"text": "and"}, {"text": "chief"}, {"text": "executive"}, {"text": "officer"}, {"text": "*ICH*-2"}, {"text": "of"}, {"text": "Citadel"}, {"text": "Holding"}, {"text": "Corp."}, {"text": "and"}, {"text": "its"}, {"text": "principal"}, {"text": "operating"}, {"text": "unit"}, {"text": ","}, {"text": "Fidelity"}, {"text": "Federal"}, {"text": "Bank"}, {"text": "."}, {"text": "The"}, {"text": "appointment"}, {"text": "takes"}, {"text": "effect"}, {"text": "Nov."}, {"text": "13"}, {"text": "."}, {"text": "He"}, {"text": "succeeds"}, {"text": "James"}, {"text": "A."}, {"text": "Taylor"}, {"text": ","}, {"text": "who"}, {"text": "*T*-1"}, {"text": "stepped"}, {"text": "down"}, {"text": "as"}, {"text": "chairman"}, {"text": ","}, {"text": "president"}, {"text": "and"}, {"text": "chief"}, {"text": "executive"}, {"text": "in"}, {"text": "March"}, {"text": "for"}, {"text": "health"}, {"text": "reasons"}, {"text": "."}, {"text": "Edward"}, {"text": "L."}, {"text": "Kane"}, {"text": "succeeded"}, {"text": "Mr."}, {"text": "Taylor"}, {"text": "as"}, {"text": "chairman"}, {"text": "."}, {"text": "Separately"}, {"text": ","}, {"text": "Citadel"}, {"text": "posted"}, {"text": "a"}, {"text": "third-quarter"}, {"text": "net"}, {"text": "loss"}, {"text": "of"}, {"text": "$"}, {"text": "2.3"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "68"}, {"text": "cents"}, {"text": "a"}, {"text": "share"}, {"text": ","}, {"text": "versus"}, {"text": "net"}, {"text": "income"}, {"text": "of"}, {"text": "$"}, {"text": "5.3"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "$"}, {"text": "1.61"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": ","}, {"text": "a"}, {"text": "year"}, {"text": "earlier"}, {"text": "."}, {"text": "The"}, {"text": "latest"}, {"text": "results"}, {"text": "include"}, {"text": "some"}, {"text": "unusual"}, {"text": "write-downs"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "had"}, {"text": "an"}, {"text": "after-tax"}, {"text": "impact"}, {"text": "of"}, {"text": "$"}, {"text": "4.9"}, {"text": "million"}, {"text": "*U*"}, {"text": "."}, {"text": "Those"}, {"text": "included"}, {"text": "costs"}, {"text": "associated"}, {"text": "*"}, {"text": "with"}, {"text": "the"}, {"text": "potential"}, {"text": "Valley"}, {"text": "Federal"}, {"text": "Savings"}, {"text": "and"}, {"text": "Loan"}, {"text": "Association"}, {"text": "acquisition"}, {"text": ","}, {"text": "which"}, {"text": "*T*-2"}, {"text": "was"}, {"text": "terminated"}, {"text": "*-1"}, {"text": "on"}, {"text": "Sept."}, {"text": "27"}, {"text": ","}, {"text": "1989"}, {"text": "."}, {"text": "In"}, {"text": "addition"}, {"text": ","}, {"text": "operating"}, {"text": "results"}, {"text": "were"}, {"text": "hit"}, {"text": "*-1"}, {"text": "by"}, {"text": "an"}, {"text": "increase"}, {"text": "in"}, {"text": "loan"}, {"text": "and"}, {"text": "real"}, {"text": "estate"}, {"text": "loss"}, {"text": "reserves"}, {"text": "."}, {"text": "In"}, {"text": "American"}, {"text": "Stock"}, {"text": "Exchange"}, {"text": "composite"}, {"text": "trading"}, {"text": ","}, {"text": "Citadel"}, {"text": "shares"}, {"text": "closed"}, {"text": "yesterday"}, {"text": "at"}, {"text": "$"}, {"text": "45.75"}, {"text": "*U*"}, {"text": ","}, {"text": "down"}, {"text": "25"}, {"text": "cents"}, {"text": "."}, {"text": "The"}, {"text": "following"}, {"text": "were"}, {"text": "among"}, {"text": "yesterday"}, {"text": "'s"}, {"text": "offerings"}, {"text": "and"}, {"text": "pricings"}, {"text": "in"}, {"text": "the"}, {"text": "U.S."}, {"text": "and"}, {"text": "non-U.S."}, {"text": "capital"}, {"text": "markets"}, {"text": ","}, {"text": "with"}, {"text": "terms"}, {"text": "and"}, {"text": "syndicate"}, {"text": "manager"}, {"text": ","}, {"text": "as"}, {"text": "*"}, {"text": "compiled"}, {"text": "*-1"}, {"text": "by"}, {"text": "Dow"}, {"text": "Jones"}, {"text": "Capital"}, {"text": "Markets"}, {"text": "Report"}, {"text": ":"}, {"text": "International"}, {"text": "Business"}, {"text": "Machines"}, {"text": "Corp."}, {"text": "--"}, {"text": "$"}, {"text": "750"}, {"text": "million"}, {"text": "*U*"}, {"text": "of"}, {"text": "8"}, {"text": "3\\/8"}, {"text": "%"}, {"text": "debentures"}, {"text": "due"}, {"text": "Nov."}, {"text": "1"}, {"text": ","}, {"text": "2019"}, {"text": ","}, {"text": "priced"}, {"text": "*"}, {"text": "at"}, {"text": "99"}, {"text": "*"}, {"text": "to"}, {"text": "yield"}, {"text": "8.467"}, {"text": "%"}, {"text": "."}, {"text": "The"}, {"text": "30-year"}, {"text": "non-callable"}, {"text": "issue"}, {"text": "was"}, {"text": "priced"}, {"text": "*-1"}, {"text": "at"}, {"text": "a"}, {"text": "spread"}, {"text": "of"}, {"text": "57"}, {"text": "basis"}, {"text": "points"}, {"text": "above"}, {"text": "the"}, {"text": "Treasury"}, {"text": "'s"}, {"text": "8"}, {"text": "1\\/8"}, {"text": "%"}, {"text": "bellwether"}, {"text": "long"}, {"text": "bond"}, {"text": "."}, {"text": "*-1"}, {"text": "Rated"}, {"text": "*-2"}, {"text": "triple-A"}, {"text": "by"}, {"text": "both"}, {"text": "Moody"}, {"text": "'s"}, {"text": "Investors"}, {"text": "Service"}, {"text": "Inc."}, {"text": "and"}, {"text": "Standard"}, {"text": "&"}, {"text": "Poor"}, {"text": "'s"}, {"text": "Corp."}, {"text": ","}, {"text": "the"}, {"text": "issue"}, {"text": "will"}, {"text": "be"}, {"text": "sold"}, {"text": "*-1"}, {"text": "through"}, {"text": "underwriters"}, {"text": "led"}, {"text": "*"}, {"text": "by"}, {"text": "Salomon"}, {"text": "Brothers"}, {"text": "Inc"}, {"text": "."}, {"text": "The"}, {"text": "size"}, {"text": "of"}, {"text": "the"}, {"text": "issue"}, {"text": "was"}, {"text": "increased"}, {"text": "*-1"}, {"text": "from"}, {"text": "an"}, {"text": "originally"}, {"text": "planned"}, {"text": "$"}, {"text": "500"}, {"text": "million"}, {"text": "*U*"}, {"text": "."}, {"text": "Detroit"}, {"text": "--"}, {"text": "$"}, {"text": "130"}, {"text": "million"}, {"text": "*U*"}, {"text": "of"}, {"text": "general"}, {"text": "obligation"}, {"text": "distributable"}, {"text": "state"}, {"text": "aid"}, {"text": "bonds"}, {"text": "due"}, {"text": "1991-2000"}, {"text": "and"}, {"text": "2009"}, {"text": ","}, {"text": "tentatively"}, {"text": "priced"}, {"text": "*"}, {"text": "by"}, {"text": "a"}, {"text": "Chemical"}, {"text": "Securities"}, {"text": "Inc."}, {"text": "group"}, {"text": "*"}, {"text": "to"}, {"text": "yield"}, {"text": "from"}, {"text": "6.20"}, {"text": "%"}, {"text": "in"}, {"text": "1991"}, {"text": "to"}, {"text": "7.272"}, {"text": "%"}, {"text": "in"}, {"text": "2009"}, {"text": "."}, {"text": "There"}, {"text": "is"}, {"text": "$"}, {"text": "81.8"}, {"text": "million"}, {"text": "*U*"}, {"text": "of"}, {"text": "7.20"}, {"text": "%"}, {"text": "term"}, {"text": "bonds"}, {"text": "due"}, {"text": "2009"}, {"text": "priced"}, {"text": "*"}, {"text": "at"}, {"text": "99"}, {"text": "1\\/4"}, {"text": "*"}, {"text": "to"}, {"text": "yield"}, {"text": "7.272"}, {"text": "%"}, {"text": "."}, {"text": "Serial"}, {"text": "bonds"}, {"text": "are"}, {"text": "priced"}, {"text": "*-1"}, {"text": "*"}, {"text": "to"}, {"text": "yield"}, {"text": "from"}, {"text": "6.20"}, {"text": "%"}, {"text": "in"}, {"text": "1991"}, {"text": "to"}, {"text": "7"}, {"text": "%"}, {"text": "in"}, {"text": "2000"}, {"text": "."}, {"text": "The"}, {"text": "bonds"}, {"text": "are"}, {"text": "insured"}, {"text": "and"}, {"text": "triple-A-rated"}, {"text": "."}, {"text": "Santa"}, {"text": "Ana"}, {"text": "Community"}, {"text": "Redevelopment"}, {"text": "Agency"}, {"text": ","}, {"text": "Calif."}, {"text": "--"}, {"text": "$"}, {"text": "107"}, {"text": "million"}, {"text": "*U*"}, {"text": "of"}, {"text": "tax"}, {"text": "allocation"}, {"text": "bonds"}, {"text": ","}, {"text": "1989"}, {"text": "Series"}, {"text": "A-D"}, {"text": ","}, {"text": "due"}, {"text": "1991-1999"}, {"text": ","}, {"text": "2009"}, {"text": "and"}, {"text": "2019"}, {"text": ","}, {"text": "tentatively"}, {"text": "priced"}, {"text": "*"}, {"text": "by"}, {"text": "a"}, {"text": "Donaldson"}, {"text": "Lufkin"}, {"text": "&"}, {"text": "Jenrette"}, {"text": "Securities"}, {"text": "Corp."}, {"text": "group"}, {"text": "*"}, {"text": "to"}, {"text": "yield"}, {"text": "from"}, {"text": "6.40"}, {"text": "%"}, {"text": "in"}, {"text": "1991"}, {"text": "to"}, {"text": "7.458"}, {"text": "%"}, {"text": "in"}, {"text": "2019"}, {"text": "."}, {"text": "The"}, {"text": "7"}, {"text": "3\\/8"}, {"text": "%"}, {"text": "term"}, {"text": "bonds"}, {"text": "due"}, {"text": "2009"}, {"text": "are"}, {"text": "priced"}, {"text": "*-1"}, {"text": "at"}, {"text": "99"}, {"text": "1\\/2"}, {"text": "*"}, {"text": "to"}, {"text": "yield"}, {"text": "7.422"}, {"text": "%"}, {"text": ","}, {"text": "and"}, {"text": "7"}, {"text": "3\\/8"}, {"text": "%"}, {"text": "term"}, {"text": "bonds"}, {"text": "due"}, {"text": "2019"}, {"text": "are"}, {"text": "priced"}, {"text": "*-2"}, {"text": "at"}, {"text": "99"}, {"text": "*"}, {"text": "to"}, {"text": "yield"}, {"text": "7.458"}, {"text": "%"}, {"text": "."}, {"text": "Serial"}, {"text": "bonds"}, {"text": "are"}, {"text": "priced"}, {"text": "*-1"}, {"text": "at"}, {"text": "par"}, {"text": "*"}, {"text": "to"}, {"text": "yield"}, {"text": "from"}, {"text": "6.40"}, {"text": "%"}, {"text": "in"}, {"text": "1991"}, {"text": "to"}, {"text": "7.15"}, {"text": "%"}, {"text": "in"}, {"text": "1999"}, {"text": "."}, {"text": "The"}, {"text": "bonds"}, {"text": "are"}, {"text": "rated"}, {"text": "*-1"}, {"text": "single-A"}, {"text": "by"}, {"text": "S&P"}, {"text": ","}, {"text": "according"}, {"text": "to"}, {"text": "the"}, {"text": "lead"}, {"text": "underwriter"}, {"text": "."}, {"text": "Maryland"}, {"text": "Community"}, {"text": "Development"}, {"text": "Administration"}, {"text": ","}, {"text": "Department"}, {"text": "of"}, {"text": "Housing"}, {"text": "and"}, {"text": "Community"}, {"text": "Development"}, {"text": "--"}, {"text": "$"}, {"text": "80.8"}, {"text": "million"}, {"text": "*U*"}, {"text": "of"}, {"text": "single-family"}, {"text": "program"}, {"text": "bonds"}, {"text": ","}, {"text": "1989"}, {"text": "fourth"}, {"text": "and"}, {"text": "fifth"}, {"text": "series"}, {"text": ","}, {"text": "tentatively"}, {"text": "priced"}, {"text": "*"}, {"text": "by"}, {"text": "a"}, {"text": "Merrill"}, {"text": "Lynch"}, {"text": "Capital"}, {"text": "Markets"}, {"text": "group"}, {"text": "*"}, {"text": "to"}, {"text": "yield"}, {"text": "from"}, {"text": "6.25"}, {"text": "%"}, {"text": "in"}, {"text": "1992"}, {"text": "for"}, {"text": "fourth"}, {"text": "series"}, {"text": "bonds"}, {"text": "to"}, {"text": "7.74"}, {"text": "%"}, {"text": "in"}, {"text": "2029"}, {"text": "for"}, {"text": "fifth"}, {"text": "series"}, {"text": "bonds"}, {"text": "."}, {"text": "There"}, {"text": "is"}, {"text": "$"}, {"text": "30.9"}, {"text": "million"}, {"text": "*U*"}, {"text": "of"}, {"text": "fourth"}, {"text": "series"}, {"text": "bonds"}, {"text": ","}, {"text": "the"}, {"text": "interest"}, {"text": "on"}, {"text": "which"}, {"text": "*T*-1"}, {"text": "is"}, {"text": "not"}, {"text": "subject"}, {"text": "to"}, {"text": "the"}, {"text": "federal"}, {"text": "alternative"}, {"text": "minimum"}, {"text": "tax"}, {"text": "."}, {"text": "They"}, {"text": "mature"}, {"text": "1992-1999"}, {"text": ","}, {"text": "2009"}, {"text": "and"}, {"text": "2017"}, {"text": "."}, {"text": "Fourth"}, {"text": "series"}, {"text": "serial"}, {"text": "bonds"}, {"text": "are"}, {"text": "priced"}, {"text": "*-1"}, {"text": "at"}, {"text": "par"}, {"text": "*"}, {"text": "to"}, {"text": "yield"}, {"text": "from"}, {"text": "6.25"}, {"text": "%"}, {"text": "in"}, {"text": "1992"}, {"text": "to"}, {"text": "7"}, {"text": "%"}, {"text": "in"}, {"text": "1999"}, {"text": "."}, {"text": "The"}, {"text": "7.40"}, {"text": "%"}, {"text": "term"}, {"text": "bonds"}, {"text": "due"}, {"text": "2009"}, {"text": "are"}, {"text": "priced"}, {"text": "*-1"}, {"text": "*"}, {"text": "to"}, {"text": "yield"}, {"text": "7.45"}, {"text": "%"}, {"text": ","}, {"text": "and"}, {"text": "7.40"}, {"text": "%"}, {"text": "term"}, {"text": "bonds"}, {"text": "due"}, {"text": "2017"}, {"text": "are"}, {"text": "priced"}, {"text": "*-2"}, {"text": "*"}, {"text": "to"}, {"text": "yield"}, {"text": "7.50"}, {"text": "%"}, {"text": "."}, {"text": "There"}, {"text": "is"}, {"text": "$"}, {"text": "49.9"}, {"text": "million"}, {"text": "*U*"}, {"text": "of"}, {"text": "fifth"}, {"text": "series"}, {"text": "bonds"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "are"}, {"text": "subject"}, {"text": "to"}, {"text": "the"}, {"text": "federal"}, {"text": "alternative"}, {"text": "minimum"}, {"text": "tax"}, {"text": "."}, {"text": "They"}, {"text": "mature"}, {"text": "in"}, {"text": "2005"}, {"text": ","}, {"text": "2009"}, {"text": "and"}, {"text": "2029"}, {"text": "."}, {"text": "Bonds"}, {"text": "due"}, {"text": "in"}, {"text": "2005"}, {"text": "have"}, {"text": "a"}, {"text": "7"}, {"text": "1\\/2"}, {"text": "%"}, {"text": "coupon"}, {"text": "and"}, {"text": "are"}, {"text": "priced"}, {"text": "*-1"}, {"text": "at"}, {"text": "par"}, {"text": "."}, {"text": "The"}, {"text": "7"}, {"text": "5\\/8"}, {"text": "%"}, {"text": "bonds"}, {"text": "due"}, {"text": "2009"}, {"text": "are"}, {"text": "priced"}, {"text": "*-2"}, {"text": "*"}, {"text": "to"}, {"text": "yield"}, {"text": "7.65"}, {"text": "%"}, {"text": ","}, {"text": "and"}, {"text": "7"}, {"text": "5\\/8"}, {"text": "%"}, {"text": "bonds"}, {"text": "due"}, {"text": "2029"}, {"text": "are"}, {"text": "priced"}, {"text": "*-1"}, {"text": "at"}, {"text": "98"}, {"text": "1\\/2"}, {"text": "*"}, {"text": "to"}, {"text": "yield"}, {"text": "7.74"}, {"text": "%"}, {"text": "."}, {"text": "The"}, {"text": "underwriters"}, {"text": "expect"}, {"text": "a"}, {"text": "double-A"}, {"text": "rating"}, {"text": "from"}, {"text": "Moody"}, {"text": "'s"}, {"text": "."}, {"text": "Heiwado"}, {"text": "Co"}, {"text": "."}, {"text": "-LRB-"}, {"text": "Japan"}, {"text": "-RRB-"}, {"text": "--"}, {"text": "$"}, {"text": "100"}, {"text": "million"}, {"text": "*U*"}, {"text": "of"}, {"text": "Eurobonds"}, {"text": "due"}, {"text": "Nov."}, {"text": "16"}, {"text": ","}, {"text": "1993"}, {"text": ","}, {"text": "with"}, {"text": "equity-purchase"}, {"text": "warrants"}, {"text": ","}, {"text": "indicating"}, {"text": "a"}, {"text": "3"}, {"text": "7\\/8"}, {"text": "%"}, {"text": "coupon"}, {"text": "at"}, {"text": "par"}, {"text": ","}, {"text": "via"}, {"text": "Daiwa"}, {"text": "Europe"}, {"text": "Ltd"}, {"text": "."}, {"text": "Each"}, {"text": "$"}, {"text": "5,000"}, {"text": "*U*"}, {"text": "bond"}, {"text": "carries"}, {"text": "one"}, {"text": "warrant"}, {"text": ","}, {"text": "exercisable"}, {"text": "from"}, {"text": "Nov."}, {"text": "30"}, {"text": ","}, {"text": "1989"}, {"text": ","}, {"text": "through"}, {"text": "Nov."}, {"text": "2"}, {"text": ","}, {"text": "1993"}, {"text": ","}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "buy"}, {"text": "shares"}, {"text": "at"}, {"text": "an"}, {"text": "expected"}, {"text": "premium"}, {"text": "of"}, {"text": "2"}, {"text": "1\\/2"}, {"text": "%"}, {"text": "to"}, {"text": "the"}, {"text": "closing"}, {"text": "price"}, {"text": "when"}, {"text": "terms"}, {"text": "are"}, {"text": "fixed"}, {"text": "*-1"}, {"text": "Tuesday"}, {"text": "*T*-2"}, {"text": "*T*-3"}, {"text": "."}, {"text": "Fees"}, {"text": "2"}, {"text": "1\\/4"}, {"text": "."}, {"text": "Svenska"}, {"text": "Intecknings"}, {"text": "Garanti"}, {"text": "Aktiebolaget"}, {"text": "-LRB-"}, {"text": "Sweden"}, {"text": "-RRB-"}, {"text": "--"}, {"text": "20"}, {"text": "billion"}, {"text": "yen"}, {"text": "of"}, {"text": "6"}, {"text": "%"}, {"text": "Eurobonds"}, {"text": "due"}, {"text": "Nov."}, {"text": "21"}, {"text": ","}, {"text": "1994"}, {"text": ","}, {"text": "priced"}, {"text": "*"}, {"text": "at"}, {"text": "101"}, {"text": "3\\/4"}, {"text": "*"}, {"text": "to"}, {"text": "yield"}, {"text": "6.03"}, {"text": "%"}, {"text": "less"}, {"text": "full"}, {"text": "fees"}, {"text": ","}, {"text": "via"}, {"text": "Mitsui"}, {"text": "Finance"}, {"text": "International"}, {"text": "."}, {"text": "*"}, {"text": "Guaranteed"}, {"text": "*-1"}, {"text": "by"}, {"text": "Svenska"}, {"text": "Handelsbanken"}, {"text": "."}, {"text": "Fees"}, {"text": "1"}, {"text": "7\\/8"}, {"text": "."}, {"text": "Takashima"}, {"text": "&"}, {"text": "Co"}, {"text": "."}, {"text": "-LRB-"}, {"text": "Japan"}, {"text": "-RRB-"}, {"text": "--"}, {"text": "50"}, {"text": "million"}, {"text": "Swiss"}, {"text": "francs"}, {"text": "of"}, {"text": "privately"}, {"text": "placed"}, {"text": "convertible"}, {"text": "notes"}, {"text": "due"}, {"text": "March"}, {"text": "31"}, {"text": ","}, {"text": "1994"}, {"text": ","}, {"text": "with"}, {"text": "a"}, {"text": "fixed"}, {"text": "0.25"}, {"text": "%"}, {"text": "coupon"}, {"text": "at"}, {"text": "par"}, {"text": "via"}, {"text": "Yamaichi"}, {"text": "Bank"}, {"text": "-LRB-"}, {"text": "Switzerland"}, {"text": "-RRB-"}, {"text": "."}, {"text": "Put"}, {"text": "option"}, {"text": "March"}, {"text": "31"}, {"text": ","}, {"text": "1992"}, {"text": ","}, {"text": "at"}, {"text": "a"}, {"text": "fixed"}, {"text": "107"}, {"text": "7\\/8"}, {"text": "*"}, {"text": "to"}, {"text": "yield"}, {"text": "3.43"}, {"text": "%"}, {"text": "."}, {"text": "Each"}, {"text": "50,000"}, {"text": "Swiss"}, {"text": "franc"}, {"text": "note"}, {"text": "is"}, {"text": "convertible"}, {"text": "from"}, {"text": "Nov."}, {"text": "30"}, {"text": ","}, {"text": "1989"}, {"text": ","}, {"text": "to"}, {"text": "March"}, {"text": "16"}, {"text": ","}, {"text": "1994"}, {"text": "at"}, {"text": "a"}, {"text": "5"}, {"text": "%"}, {"text": "premium"}, {"text": "over"}, {"text": "the"}, {"text": "closing"}, {"text": "share"}, {"text": "price"}, {"text": "Monday"}, {"text": ","}, {"text": "when"}, {"text": "terms"}, {"text": "are"}, {"text": "scheduled"}, {"text": "*-3"}, {"text": "to"}, {"text": "be"}, {"text": "fixed"}, {"text": "*-1"}, {"text": "*T*-2"}, {"text": "."}, {"text": "Fees"}, {"text": "1"}, {"text": "3\\/4"}, {"text": "."}, {"text": "Mitsubishi"}, {"text": "Pencil"}, {"text": "Co"}, {"text": "."}, {"text": "-LRB-"}, {"text": "Japan"}, {"text": "-RRB-"}, {"text": "--"}, {"text": "60"}, {"text": "million"}, {"text": "Swiss"}, {"text": "francs"}, {"text": "of"}, {"text": "privately"}, {"text": "placed"}, {"text": "convertible"}, {"text": "notes"}, {"text": "due"}, {"text": "Dec."}, {"text": "31"}, {"text": ","}, {"text": "1993"}, {"text": ","}, {"text": "with"}, {"text": "a"}, {"text": "fixed"}, {"text": "0.25"}, {"text": "%"}, {"text": "coupon"}, {"text": "at"}, {"text": "par"}, {"text": "via"}, {"text": "Union"}, {"text": "Bank"}, {"text": "of"}, {"text": "Switzerland"}, {"text": "."}, {"text": "Put"}, {"text": "option"}, {"text": "on"}, {"text": "Dec."}, {"text": "31"}, {"text": ","}, {"text": "1991"}, {"text": ","}, {"text": "at"}, {"text": "a"}, {"text": "fixed"}, {"text": "106"}, {"text": "7\\/8"}, {"text": "*"}, {"text": "to"}, {"text": "yield"}, {"text": "3.42"}, {"text": "%"}, {"text": "."}, {"text": "Each"}, {"text": "50,000"}, {"text": "Swiss"}, {"text": "franc"}, {"text": "note"}, {"text": "is"}, {"text": "convertible"}, {"text": "from"}, {"text": "Dec."}, {"text": "5"}, {"text": ","}, {"text": "1989"}, {"text": ","}, {"text": "to"}, {"text": "Dec."}, {"text": "31"}, {"text": ","}, {"text": "1993"}, {"text": ","}, {"text": "at"}, {"text": "a"}, {"text": "5"}, {"text": "%"}, {"text": "premium"}, {"text": "over"}, {"text": "the"}, {"text": "closing"}, {"text": "share"}, {"text": "price"}, {"text": "Tuesday"}, {"text": ","}, {"text": "when"}, {"text": "terms"}, {"text": "are"}, {"text": "scheduled"}, {"text": "*-3"}, {"text": "to"}, {"text": "be"}, {"text": "fixed"}, {"text": "*-1"}, {"text": "*T*-2"}, {"text": "."}, {"text": "Fees"}, {"text": "1"}, {"text": "5\\/8"}, {"text": "."}, {"text": "Koizumi"}, {"text": "Sangyo"}, {"text": "Corp"}, {"text": "."}, {"text": "-LRB-"}, {"text": "Japan"}, {"text": "-RRB-"}, {"text": "--"}, {"text": "20"}, {"text": "million"}, {"text": "Swiss"}, {"text": "francs"}, {"text": "of"}, {"text": "6"}, {"text": "1\\/2"}, {"text": "%"}, {"text": "privately"}, {"text": "placed"}, {"text": "notes"}, {"text": "due"}, {"text": "Nov."}, {"text": "29"}, {"text": ","}, {"text": "1996"}, {"text": ","}, {"text": "priced"}, {"text": "*"}, {"text": "at"}, {"text": "99"}, {"text": "1\\/2"}, {"text": "via"}, {"text": "Dai-Ichi"}, {"text": "Kangyo"}, {"text": "Bank"}, {"text": "-LRB-"}, {"text": "Schweiz"}, {"text": "-RRB-"}, {"text": "."}, {"text": "Guarantee"}, {"text": "by"}, {"text": "Dai-Ichi"}, {"text": "Kangyo"}, {"text": "Bank"}, {"text": "Ltd"}, {"text": "."}, {"text": "Fees"}, {"text": "1"}, {"text": "3\\/4"}, {"text": "."}, {"text": "Although"}, {"text": "his"}, {"text": "team"}, {"text": "lost"}, {"text": "the"}, {"text": "World"}, {"text": "Series"}, {"text": ","}, {"text": "San"}, {"text": "Francisco"}, {"text": "Giants"}, {"text": "owner"}, {"text": "Bob"}, {"text": "Lurie"}, {"text": "hopes"}, {"text": "*-1"}, {"text": "to"}, {"text": "have"}, {"text": "a"}, {"text": "new"}, {"text": "home"}, {"text": "for"}, {"text": "them"}, {"text": "."}, {"text": "He"}, {"text": "is"}, {"text": "an"}, {"text": "avid"}, {"text": "fan"}, {"text": "of"}, {"text": "a"}, {"text": "proposition"}, {"text": "on"}, {"text": "next"}, {"text": "week"}, {"text": "'s"}, {"text": "ballot"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "help"}, {"text": "*-2"}, {"text": "build"}, {"text": "a"}, {"text": "replacement"}, {"text": "for"}, {"text": "Candlestick"}, {"text": "Park"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Small"}, {"text": "wonder"}, {"text": ","}, {"text": "since"}, {"text": "he"}, {"text": "'s"}, {"text": "asking"}, {"text": "San"}, {"text": "Francisco"}, {"text": "taxpayers"}, {"text": "*-1"}, {"text": "to"}, {"text": "sink"}, {"text": "up"}, {"text": "to"}, {"text": "$"}, {"text": "100"}, {"text": "million"}, {"text": "*U*"}, {"text": "into"}, {"text": "the"}, {"text": "new"}, {"text": "stadium"}, {"text": "."}, {"text": "As"}, {"text": "San"}, {"text": "Francisco"}, {"text": "digs"}, {"text": "out"}, {"text": "from"}, {"text": "The"}, {"text": "Pretty"}, {"text": "Big"}, {"text": "One"}, {"text": ","}, {"text": "opponents"}, {"text": "say"}, {"text": "0"}, {"text": "the"}, {"text": "last"}, {"text": "thing"}, {"text": "0"}, {"text": "the"}, {"text": "city"}, {"text": "can"}, {"text": "afford"}, {"text": "*T*-1"}, {"text": "is"}, {"text": "an"}, {"text": "expensive"}, {"text": "new"}, {"text": "stadium"}, {"text": "."}, {"text": "A"}, {"text": "stadium"}, {"text": "craze"}, {"text": "is"}, {"text": "sweeping"}, {"text": "the"}, {"text": "country"}, {"text": "."}, {"text": "It"}, {"text": "'s"}, {"text": "fueled"}, {"text": "*-1"}, {"text": "by"}, {"text": "the"}, {"text": "increasing"}, {"text": "profitability"}, {"text": "of"}, {"text": "major-league"}, {"text": "teams"}, {"text": "."}, {"text": "Something"}, {"text": "like"}, {"text": "one-third"}, {"text": "of"}, {"text": "the"}, {"text": "nation"}, {"text": "'s"}, {"text": "60"}, {"text": "largest"}, {"text": "cities"}, {"text": "*ICH*-1"}, {"text": "are"}, {"text": "thinking"}, {"text": "about"}, {"text": "new"}, {"text": "stadiums"}, {"text": ","}, {"text": "ranging"}, {"text": "from"}, {"text": "Cleveland"}, {"text": "to"}, {"text": "San"}, {"text": "Antonio"}, {"text": "and"}, {"text": "St."}, {"text": "Petersburg"}, {"text": "."}, {"text": "Most"}, {"text": "boosters"}, {"text": "claim"}, {"text": "0"}, {"text": "the"}, {"text": "new"}, {"text": "sports"}, {"text": "complexes"}, {"text": "will"}, {"text": "be"}, {"text": "moneymakers"}, {"text": "for"}, {"text": "their"}, {"text": "city"}, {"text": "."}, {"text": "Pepperdine"}, {"text": "University"}, {"text": "economist"}, {"text": "Dean"}, {"text": "Baim"}, {"text": "scoffs"}, {"text": "at"}, {"text": "that"}, {"text": "."}, {"text": "He"}, {"text": "has"}, {"text": "looked"}, {"text": "at"}, {"text": "14"}, {"text": "baseball"}, {"text": "and"}, {"text": "football"}, {"text": "stadiums"}, {"text": "and"}, {"text": "found"}, {"text": "that"}, {"text": "only"}, {"text": "one"}, {"text": "--"}, {"text": "private"}, {"text": "Dodger"}, {"text": "Stadium"}, {"text": "--"}, {"text": "brought"}, {"text": "more"}, {"text": "money"}, {"text": "*ICH*-1"}, {"text": "into"}, {"text": "a"}, {"text": "city"}, {"text": "than"}, {"text": "it"}, {"text": "took"}, {"text": "out"}, {"text": "."}, {"text": "Stadiums"}, {"text": "tend"}, {"text": "*-1"}, {"text": "to"}, {"text": "redistribute"}, {"text": "existing"}, {"text": "wealth"}, {"text": "within"}, {"text": "a"}, {"text": "community"}, {"text": ","}, {"text": "not"}, {"text": "create"}, {"text": "more"}, {"text": "of"}, {"text": "it"}, {"text": "."}, {"text": "Voters"}, {"text": "generally"}, {"text": "agree"}, {"text": "when"}, {"text": "they"}, {"text": "are"}, {"text": "given"}, {"text": "*-1"}, {"text": "a"}, {"text": "chance"}, {"text": "*"}, {"text": "to"}, {"text": "decide"}, {"text": "if"}, {"text": "they"}, {"text": "want"}, {"text": "*-3"}, {"text": "to"}, {"text": "sink"}, {"text": "their"}, {"text": "own"}, {"text": "tax"}, {"text": "dollars"}, {"text": "into"}, {"text": "a"}, {"text": "new"}, {"text": "mega-stadium"}, {"text": "*T*-2"}, {"text": "."}, {"text": "San"}, {"text": "Francisco"}, {"text": "voters"}, {"text": "rejected"}, {"text": "a"}, {"text": "new"}, {"text": "ballpark"}, {"text": "two"}, {"text": "years"}, {"text": "ago"}, {"text": "."}, {"text": "Last"}, {"text": "month"}, {"text": ","}, {"text": "Phoenix"}, {"text": "voters"}, {"text": "turned"}, {"text": "thumbs"}, {"text": "down"}, {"text": "on"}, {"text": "a"}, {"text": "$"}, {"text": "100"}, {"text": "million"}, {"text": "*U*"}, {"text": "stadium"}, {"text": "bond"}, {"text": "and"}, {"text": "tax"}, {"text": "proposition"}, {"text": "."}, {"text": "Its"}, {"text": "backers"}, {"text": "fielded"}, {"text": "every"}, {"text": "important"}, {"text": "interest"}, {"text": "on"}, {"text": "their"}, {"text": "team"}, {"text": "--"}, {"text": "a"}, {"text": "popular"}, {"text": "mayor"}, {"text": ","}, {"text": "the"}, {"text": "Chamber"}, {"text": "of"}, {"text": "Commerce"}, {"text": ","}, {"text": "the"}, {"text": "major"}, {"text": "media"}, {"text": "--"}, {"text": "and"}, {"text": "spent"}, {"text": "$"}, {"text": "100,000"}, {"text": "*U*"}, {"text": "on"}, {"text": "promotion"}, {"text": "."}, {"text": "But"}, {"text": "voters"}, {"text": "decided"}, {"text": "that"}, {"text": "if"}, {"text": "the"}, {"text": "stadium"}, {"text": "was"}, {"text": "such"}, {"text": "a"}, {"text": "good"}, {"text": "idea"}, {"text": "someone"}, {"text": "would"}, {"text": "build"}, {"text": "it"}, {"text": "himself"}, {"text": ","}, {"text": "and"}, {"text": "rejected"}, {"text": "it"}, {"text": "59"}, {"text": "%"}, {"text": "to"}, {"text": "41"}, {"text": "%"}, {"text": "*U*"}, {"text": "."}, {"text": "In"}, {"text": "San"}, {"text": "Francisco"}, {"text": ","}, {"text": "its"}, {"text": "backers"}, {"text": "concede"}, {"text": "0"}, {"text": "the"}, {"text": "ballpark"}, {"text": "is"}, {"text": "at"}, {"text": "best"}, {"text": "running"}, {"text": "even"}, {"text": "in"}, {"text": "the"}, {"text": "polls"}, {"text": "."}, {"text": "George"}, {"text": "Christopher"}, {"text": ","}, {"text": "the"}, {"text": "former"}, {"text": "San"}, {"text": "Francisco"}, {"text": "mayor"}, {"text": "who"}, {"text": "*T*-1"}, {"text": "built"}, {"text": "Candlestick"}, {"text": "Park"}, {"text": "for"}, {"text": "the"}, {"text": "Giants"}, {"text": "in"}, {"text": "the"}, {"text": "1960s"}, {"text": ","}, {"text": "wo"}, {"text": "n't"}, {"text": "endorse"}, {"text": "the"}, {"text": "new"}, {"text": "ballpark"}, {"text": "."}, {"text": "He"}, {"text": "says"}, {"text": "0"}, {"text": "he"}, {"text": "had"}, {"text": "Candlestick"}, {"text": "built"}, {"text": "because"}, {"text": "the"}, {"text": "Giants"}, {"text": "claimed"}, {"text": "0"}, {"text": "they"}, {"text": "needed"}, {"text": "10,000"}, {"text": "parking"}, {"text": "spaces"}, {"text": "."}, {"text": "Since"}, {"text": "the"}, {"text": "new"}, {"text": "park"}, {"text": "will"}, {"text": "have"}, {"text": "only"}, {"text": "1,500"}, {"text": "spaces"}, {"text": ","}, {"text": "Mr."}, {"text": "Christopher"}, {"text": "thinks"}, {"text": "0"}, {"text": "backers"}, {"text": "are"}, {"text": "playing"}, {"text": "some"}, {"text": "fiscal"}, {"text": "``"}, {"text": "games"}, {"text": "''"}, {"text": "of"}, {"text": "their"}, {"text": "own"}, {"text": "with"}, {"text": "the"}, {"text": "voters"}, {"text": "."}, {"text": "Stadium"}, {"text": "boosters"}, {"text": "claim"}, {"text": "that"}, {"text": "without"}, {"text": "public"}, {"text": "money"}, {"text": "they"}, {"text": "would"}, {"text": "never"}, {"text": "be"}, {"text": "built"}, {"text": "*-1"}, {"text": "."}, {"text": "Miami"}, {"text": "Dolphins"}, {"text": "owner"}, {"text": "Joe"}, {"text": "Robbie"}, {"text": "disagrees"}, {"text": ","}, {"text": "and"}, {"text": "he"}, {"text": "can"}, {"text": "prove"}, {"text": "it"}, {"text": "."}, {"text": "Several"}, {"text": "years"}, {"text": "ago"}, {"text": "he"}, {"text": "gave"}, {"text": "up"}, {"text": "*-3"}, {"text": "trying"}, {"text": "*-1"}, {"text": "to"}, {"text": "persuade"}, {"text": "Miami"}, {"text": "*-2"}, {"text": "to"}, {"text": "improve"}, {"text": "its"}, {"text": "city-owned"}, {"text": "Orange"}, {"text": "Bowl"}, {"text": ","}, {"text": "and"}, {"text": "instead"}, {"text": "built"}, {"text": "his"}, {"text": "own"}, {"text": "$"}, {"text": "100"}, {"text": "million"}, {"text": "*U*"}, {"text": "coliseum"}, {"text": "with"}, {"text": "private"}, {"text": "funds"}, {"text": "."}, {"text": "He"}, {"text": "did"}, {"text": "n't"}, {"text": "see"}, {"text": "why"}, {"text": "the"}, {"text": "taxpayers"}, {"text": "should"}, {"text": "help"}, {"text": "*-2"}, {"text": "build"}, {"text": "something"}, {"text": "0"}, {"text": "he"}, {"text": "would"}, {"text": "then"}, {"text": "use"}, {"text": "*T*-1"}, {"text": "*"}, {"text": "to"}, {"text": "turn"}, {"text": "a"}, {"text": "healthy"}, {"text": "profit"}, {"text": "."}, {"text": "``"}, {"text": "This"}, {"text": "stadium"}, {"text": "shows"}, {"text": "that"}, {"text": "anything"}, {"text": "0"}, {"text": "government"}, {"text": "can"}, {"text": "do"}, {"text": "*T*-2"}, {"text": ","}, {"text": "we"}, {"text": "can"}, {"text": "do"}, {"text": "*-3"}, {"text": "better"}, {"text": ","}, {"text": "''"}, {"text": "Mr."}, {"text": "Robbie"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "."}, {"text": "But"}, {"text": "to"}, {"text": "Moon"}, {"text": "Landrieu"}, {"text": ","}, {"text": "the"}, {"text": "former"}, {"text": "New"}, {"text": "Orleans"}, {"text": "mayor"}, {"text": "who"}, {"text": "*T*-1"}, {"text": "helped"}, {"text": "*-3"}, {"text": "build"}, {"text": "that"}, {"text": "city"}, {"text": "'s"}, {"text": "cavernous"}, {"text": ","}, {"text": "money-losing"}, {"text": "Superdome"}, {"text": ","}, {"text": "questions"}, {"text": "of"}, {"text": "who"}, {"text": "*T*-2"}, {"text": "benefits"}, {"text": "or"}, {"text": "the"}, {"text": "bottom"}, {"text": "line"}, {"text": "are"}, {"text": "of"}, {"text": "little"}, {"text": "relevance"}, {"text": "."}, {"text": "``"}, {"text": "The"}, {"text": "Superdome"}, {"text": "is"}, {"text": "an"}, {"text": "exercise"}, {"text": "in"}, {"text": "optimism"}, {"text": ","}, {"text": "a"}, {"text": "statement"}, {"text": "of"}, {"text": "faith"}, {"text": ","}, {"text": "''"}, {"text": "he"}, {"text": "has"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "."}, {"text": "``"}, {"text": "It"}, {"text": "is"}, {"text": "the"}, {"text": "very"}, {"text": "building"}, {"text": "of"}, {"text": "it"}, {"text": "*ICH*-4"}, {"text": "that"}, {"text": "*T*-2"}, {"text": "is"}, {"text": "important"}, {"text": ","}, {"text": "not"}, {"text": "how"}, {"text": "much"}, {"text": "of"}, {"text": "it"}, {"text": "*T*-3"}, {"text": "is"}, {"text": "used"}, {"text": "*-1"}, {"text": "or"}, {"text": "its"}, {"text": "economics"}, {"text": "."}, {"text": "''"}, {"text": "An"}, {"text": "Egyptian"}, {"text": "Pharaoh"}, {"text": "could"}, {"text": "n't"}, {"text": "have"}, {"text": "justified"}, {"text": "his"}, {"text": "pyramids"}, {"text": "any"}, {"text": "better"}, {"text": "."}, {"text": "But"}, {"text": "civilization"}, {"text": "has"}, {"text": "moved"}, {"text": "forward"}, {"text": "since"}, {"text": "then"}, {"text": "."}, {"text": "Today"}, {"text": "taxpayers"}, {"text": "get"}, {"text": "*-1"}, {"text": "to"}, {"text": "vote"}, {"text": ","}, {"text": "most"}, {"text": "of"}, {"text": "the"}, {"text": "time"}, {"text": ","}, {"text": "on"}, {"text": "whether"}, {"text": "they"}, {"text": "want"}, {"text": "*-2"}, {"text": "to"}, {"text": "finance"}, {"text": "the"}, {"text": "building"}, {"text": "schemes"}, {"text": "of"}, {"text": "our"}, {"text": "modern"}, {"text": "political"}, {"text": "pharaohs"}, {"text": ","}, {"text": "or"}, {"text": "let"}, {"text": "private"}, {"text": "money"}, {"text": "erect"}, {"text": "these"}, {"text": "playgrounds"}, {"text": "for"}, {"text": "public"}, {"text": "passions"}, {"text": "."}, {"text": "Reed"}, {"text": "International"}, {"text": "PLC"}, {"text": "said"}, {"text": "that"}, {"text": "net"}, {"text": "income"}, {"text": "for"}, {"text": "the"}, {"text": "six"}, {"text": "months"}, {"text": "ended"}, {"text": "Oct."}, {"text": "1"}, {"text": "slipped"}, {"text": "5"}, {"text": "%"}, {"text": "to"}, {"text": "#"}, {"text": "89.7"}, {"text": "million"}, {"text": "*U*"}, {"text": "-LRB-"}, {"text": "$"}, {"text": "141.9"}, {"text": "million"}, {"text": "*U*"}, {"text": "-RRB-"}, {"text": ","}, {"text": "or"}, {"text": "16"}, {"text": "pence"}, {"text": "a"}, {"text": "share"}, {"text": ","}, {"text": "from"}, {"text": "#"}, {"text": "94.8"}, {"text": "million"}, {"text": "*U*"}, {"text": "-LRB-"}, {"text": "$"}, {"text": "149.9"}, {"text": "million"}, {"text": "*U*"}, {"text": "-RRB-"}, {"text": ","}, {"text": "or"}, {"text": "17.3"}, {"text": "pence"}, {"text": "a"}, {"text": "share"}, {"text": "."}, {"text": "The"}, {"text": "British"}, {"text": "paper"}, {"text": ","}, {"text": "packaging"}, {"text": "and"}, {"text": "publishing"}, {"text": "concern"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "profit"}, {"text": "from"}, {"text": "continuing"}, {"text": "lines"}, {"text": "fell"}, {"text": "10"}, {"text": "%"}, {"text": "to"}, {"text": "#"}, {"text": "118"}, {"text": "million"}, {"text": "*U*"}, {"text": "from"}, {"text": "#"}, {"text": "130.6"}, {"text": "million"}, {"text": "*U*"}, {"text": "."}, {"text": "While"}, {"text": "there"}, {"text": "were"}, {"text": "no"}, {"text": "one-time"}, {"text": "gains"}, {"text": "or"}, {"text": "losses"}, {"text": "in"}, {"text": "the"}, {"text": "latest"}, {"text": "period"}, {"text": ","}, {"text": "there"}, {"text": "was"}, {"text": "a"}, {"text": "one-time"}, {"text": "gain"}, {"text": "of"}, {"text": "#"}, {"text": "18"}, {"text": "million"}, {"text": "*U*"}, {"text": "in"}, {"text": "the"}, {"text": "1988"}, {"text": "period"}, {"text": "."}, {"text": "And"}, {"text": "while"}, {"text": "there"}, {"text": "was"}, {"text": "no"}, {"text": "profit"}, {"text": "*ICH*-1"}, {"text": "this"}, {"text": "year"}, {"text": "from"}, {"text": "discontinued"}, {"text": "operations"}, {"text": ","}, {"text": "last"}, {"text": "year"}, {"text": "they"}, {"text": "contributed"}, {"text": "#"}, {"text": "34"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "before"}, {"text": "tax"}, {"text": "."}, {"text": "Pretax"}, {"text": "profit"}, {"text": "fell"}, {"text": "3.7"}, {"text": "%"}, {"text": "to"}, {"text": "#"}, {"text": "128"}, {"text": "million"}, {"text": "*U*"}, {"text": "from"}, {"text": "#"}, {"text": "133"}, {"text": "million"}, {"text": "*U*"}, {"text": "and"}, {"text": "was"}, {"text": "below"}, {"text": "analysts"}, {"text": "'"}, {"text": "expectations"}, {"text": "of"}, {"text": "#"}, {"text": "130"}, {"text": "million"}, {"text": "to"}, {"text": "#"}, {"text": "135"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "but"}, {"text": "shares"}, {"text": "rose"}, {"text": "6"}, {"text": "pence"}, {"text": "to"}, {"text": "388"}, {"text": "pence"}, {"text": "in"}, {"text": "early"}, {"text": "trading"}, {"text": "yesterday"}, {"text": "in"}, {"text": "London"}, {"text": "."}, {"text": "Reed"}, {"text": "is"}, {"text": "paying"}, {"text": "an"}, {"text": "interim"}, {"text": "dividend"}, {"text": "of"}, {"text": "4.6"}, {"text": "pence"}, {"text": ","}, {"text": "up"}, {"text": "15"}, {"text": "%"}, {"text": "from"}, {"text": "4"}, {"text": "pence"}, {"text": "a"}, {"text": "year"}, {"text": "earlier"}, {"text": "."}, {"text": "Sales"}, {"text": "fell"}, {"text": "20"}, {"text": "%"}, {"text": "to"}, {"text": "#"}, {"text": "722"}, {"text": "million"}, {"text": "*U*"}, {"text": "."}, {"text": "Earnings"}, {"text": "were"}, {"text": "hurt"}, {"text": "*-1"}, {"text": "by"}, {"text": "disposal"}, {"text": "of"}, {"text": "operations"}, {"text": "in"}, {"text": "its"}, {"text": "restructuring"}, {"text": ","}, {"text": "Reed"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "."}, {"text": "Wall"}, {"text": "Street"}, {"text": "'s"}, {"text": "big"}, {"text": "securities"}, {"text": "firms"}, {"text": "face"}, {"text": "the"}, {"text": "prospect"}, {"text": "of"}, {"text": "*"}, {"text": "having"}, {"text": "their"}, {"text": "credit"}, {"text": "ratings"}, {"text": "lowered"}, {"text": "."}, {"text": "The"}, {"text": "reason"}, {"text": ":"}, {"text": "Risks"}, {"text": "from"}, {"text": "the"}, {"text": "firms"}, {"text": "'"}, {"text": "new"}, {"text": "``"}, {"text": "merchant"}, {"text": "banking"}, {"text": "''"}, {"text": "activities"}, {"text": "are"}, {"text": "rising"}, {"text": "as"}, {"text": "revenue"}, {"text": "from"}, {"text": "the"}, {"text": "industry"}, {"text": "'s"}, {"text": "traditional"}, {"text": "business"}, {"text": "erodes"}, {"text": "."}, {"text": "The"}, {"text": "downgrading"}, {"text": "of"}, {"text": "debt"}, {"text": "issued"}, {"text": "*"}, {"text": "by"}, {"text": "CS"}, {"text": "First"}, {"text": "Boston"}, {"text": "Inc."}, {"text": ","}, {"text": "parent"}, {"text": "of"}, {"text": "First"}, {"text": "Boston"}, {"text": "Corp."}, {"text": ","}, {"text": "by"}, {"text": "Moody"}, {"text": "'s"}, {"text": "Investors"}, {"text": "Service"}, {"text": "Inc."}, {"text": ","}, {"text": "*"}, {"text": "coupled"}, {"text": "*"}, {"text": "with"}, {"text": "a"}, {"text": "Moody"}, {"text": "'s"}, {"text": "announcement"}, {"text": "that"}, {"text": "Shearson"}, {"text": "Lehman"}, {"text": "Hutton"}, {"text": "Holdings"}, {"text": "Inc."}, {"text": "is"}, {"text": "under"}, {"text": "review"}, {"text": "for"}, {"text": "a"}, {"text": "possible"}, {"text": "downgrade"}, {"text": ","}, {"text": "sent"}, {"text": "shivers"}, {"text": "through"}, {"text": "the"}, {"text": "brokerage"}, {"text": "community"}, {"text": "this"}, {"text": "week"}, {"text": "."}, {"text": "With"}, {"text": "the"}, {"text": "shudders"}, {"text": "came"}, {"text": "*T*-2"}, {"text": "the"}, {"text": "realization"}, {"text": "that"}, {"text": "some"}, {"text": "of"}, {"text": "Wall"}, {"text": "Street"}, {"text": "'s"}, {"text": "biggest"}, {"text": "players"}, {"text": "are"}, {"text": "struggling"}, {"text": "*-1"}, {"text": "to"}, {"text": "maintain"}, {"text": "the"}, {"text": "stellar"}, {"text": "credit"}, {"text": "standing"}, {"text": "required"}, {"text": "*"}, {"text": "to"}, {"text": "finance"}, {"text": "their"}, {"text": "activities"}, {"text": "profitably"}, {"text": "."}, {"text": "Securities"}, {"text": "firms"}, {"text": "are"}, {"text": "among"}, {"text": "the"}, {"text": "biggest"}, {"text": "issuers"}, {"text": "of"}, {"text": "commercial"}, {"text": "paper"}, {"text": ","}, {"text": "or"}, {"text": "short-term"}, {"text": "corporate"}, {"text": "IOUs"}, {"text": ","}, {"text": "which"}, {"text": "they"}, {"text": "sell"}, {"text": "*T*-1"}, {"text": "*-2"}, {"text": "to"}, {"text": "finance"}, {"text": "their"}, {"text": "daily"}, {"text": "operations"}, {"text": "."}, {"text": "The"}, {"text": "biggest"}, {"text": "firms"}, {"text": "still"}, {"text": "retain"}, {"text": "the"}, {"text": "highest"}, {"text": "ratings"}, {"text": "on"}, {"text": "their"}, {"text": "commercial"}, {"text": "paper"}, {"text": "."}, {"text": "But"}, {"text": "Moody"}, {"text": "'s"}, {"text": "warned"}, {"text": "that"}, {"text": "Shearson"}, {"text": "'s"}, {"text": "commercial"}, {"text": "paper"}, {"text": "rating"}, {"text": "could"}, {"text": "be"}, {"text": "lowered"}, {"text": "*-1"}, {"text": "soon"}, {"text": ","}, {"text": "a"}, {"text": "move"}, {"text": "that"}, {"text": "*T*-2"}, {"text": "would"}, {"text": "reduce"}, {"text": "Shearson"}, {"text": "'s"}, {"text": "profit"}, {"text": "margins"}, {"text": "on"}, {"text": "its"}, {"text": "borrowings"}, {"text": "and"}, {"text": "signal"}, {"text": "trouble"}, {"text": "ahead"}, {"text": "for"}, {"text": "other"}, {"text": "firms"}, {"text": "."}, {"text": "Shearson"}, {"text": "is"}, {"text": "62%-owned"}, {"text": "by"}, {"text": "American"}, {"text": "Express"}, {"text": "Co"}, {"text": "."}, {"text": "``"}, {"text": "Just"}, {"text": "as"}, {"text": "the"}, {"text": "1980s"}, {"text": "bull"}, {"text": "market"}, {"text": "transformed"}, {"text": "the"}, {"text": "U.S."}, {"text": "securities"}, {"text": "business"}, {"text": ","}, {"text": "so"}, {"text": "too"}, {"text": "will"}, {"text": "*?*"}, {"text": "the"}, {"text": "more"}, {"text": "difficult"}, {"text": "environment"}, {"text": "of"}, {"text": "the"}, {"text": "1990s"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "Christopher"}, {"text": "T."}, {"text": "Mahoney"}, {"text": ","}, {"text": "a"}, {"text": "Moody"}, {"text": "'s"}, {"text": "vice"}, {"text": "president"}, {"text": "."}, {"text": "``"}, {"text": "A"}, {"text": "sweeping"}, {"text": "restructuring"}, {"text": "of"}, {"text": "the"}, {"text": "industry"}, {"text": "is"}, {"text": "possible"}, {"text": "."}, {"text": "''"}, {"text": "Standard"}, {"text": "&"}, {"text": "Poor"}, {"text": "'s"}, {"text": "Corp."}, {"text": "says"}, {"text": "0"}, {"text": "First"}, {"text": "Boston"}, {"text": ","}, {"text": "Shearson"}, {"text": "and"}, {"text": "Drexel"}, {"text": "Burnham"}, {"text": "Lambert"}, {"text": "Inc."}, {"text": ","}, {"text": "in"}, {"text": "particular"}, {"text": ","}, {"text": "are"}, {"text": "likely"}, {"text": "*-1"}, {"text": "to"}, {"text": "have"}, {"text": "difficulty"}, {"text": "*-2"}, {"text": "shoring"}, {"text": "up"}, {"text": "their"}, {"text": "credit"}, {"text": "standing"}, {"text": "in"}, {"text": "months"}, {"text": "ahead"}, {"text": "."}, {"text": "What"}, {"text": "*T*-1"}, {"text": "worries"}, {"text": "credit-rating"}, {"text": "concerns"}, {"text": "the"}, {"text": "most"}, {"text": "is"}, {"text": "that"}, {"text": "Wall"}, {"text": "Street"}, {"text": "firms"}, {"text": "are"}, {"text": "taking"}, {"text": "long-term"}, {"text": "risks"}, {"text": "with"}, {"text": "their"}, {"text": "own"}, {"text": "capital"}, {"text": "via"}, {"text": "leveraged"}, {"text": "buy-out"}, {"text": "and"}, {"text": "junk"}, {"text": "bond"}, {"text": "financings"}, {"text": "."}, {"text": "That"}, {"text": "'s"}, {"text": "a"}, {"text": "departure"}, {"text": "from"}, {"text": "their"}, {"text": "traditional"}, {"text": "practice"}, {"text": "of"}, {"text": "*"}, {"text": "transferring"}, {"text": "almost"}, {"text": "all"}, {"text": "financing"}, {"text": "risks"}, {"text": "to"}, {"text": "investors"}, {"text": "."}, {"text": "Whereas"}, {"text": "conventional"}, {"text": "securities"}, {"text": "financings"}, {"text": "are"}, {"text": "structured"}, {"text": "*-3"}, {"text": "to"}, {"text": "be"}, {"text": "sold"}, {"text": "*-1"}, {"text": "quickly"}, {"text": ","}, {"text": "Wall"}, {"text": "Street"}, {"text": "'s"}, {"text": "new"}, {"text": "penchant"}, {"text": "for"}, {"text": "leveraged"}, {"text": "buy-outs"}, {"text": "and"}, {"text": "junk"}, {"text": "bonds"}, {"text": "is"}, {"text": "resulting"}, {"text": "in"}, {"text": "long-term"}, {"text": "lending"}, {"text": "commitments"}, {"text": "that"}, {"text": "*T*-2"}, {"text": "stretch"}, {"text": "out"}, {"text": "for"}, {"text": "months"}, {"text": "or"}, {"text": "years"}, {"text": "."}, {"text": "``"}, {"text": "The"}, {"text": "recent"}, {"text": "disarray"}, {"text": "in"}, {"text": "the"}, {"text": "junk"}, {"text": "bond"}, {"text": "market"}, {"text": "suggests"}, {"text": "that"}, {"text": "brokers"}, {"text": "may"}, {"text": "become"}, {"text": "longer-term"}, {"text": "creditors"}, {"text": "than"}, {"text": "they"}, {"text": "anticipated"}, {"text": "and"}, {"text": "may"}, {"text": "face"}, {"text": "long"}, {"text": "delays"}, {"text": "''"}, {"text": "in"}, {"text": "*"}, {"text": "getting"}, {"text": "their"}, {"text": "money"}, {"text": "back"}, {"text": ","}, {"text": "says"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "Jeffrey"}, {"text": "Bowman"}, {"text": ","}, {"text": "a"}, {"text": "vice"}, {"text": "president"}, {"text": "at"}, {"text": "S&P"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "raised"}, {"text": "a"}, {"text": "warning"}, {"text": "flag"}, {"text": "for"}, {"text": "the"}, {"text": "industry"}, {"text": "in"}, {"text": "April"}, {"text": "when"}, {"text": "it"}, {"text": "downgraded"}, {"text": "CS"}, {"text": "First"}, {"text": "Boston"}, {"text": "*T*-3"}, {"text": "."}, {"text": "``"}, {"text": "Wall"}, {"text": "Street"}, {"text": "is"}, {"text": "facing"}, {"text": "a"}, {"text": "Catch-22"}, {"text": "situation"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "Mr."}, {"text": "Mahoney"}, {"text": "of"}, {"text": "Moody"}, {"text": "'s"}, {"text": "."}, {"text": "Merchant"}, {"text": "banking"}, {"text": ","}, {"text": "where"}, {"text": "firms"}, {"text": "commit"}, {"text": "their"}, {"text": "own"}, {"text": "money"}, {"text": "*T*-1"}, {"text": ","}, {"text": "``"}, {"text": "is"}, {"text": "getting"}, {"text": "riskier"}, {"text": ","}, {"text": "and"}, {"text": "there"}, {"text": "'s"}, {"text": "less"}, {"text": "of"}, {"text": "it"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "to"}, {"text": "go"}, {"text": "around"}, {"text": "."}, {"text": "''"}, {"text": "In"}, {"text": "addition"}, {"text": ","}, {"text": "he"}, {"text": "says"}, {"text": "*T*-3"}, {"text": "*ICH*-2"}, {"text": ","}, {"text": "the"}, {"text": "buy-out"}, {"text": "business"}, {"text": "is"}, {"text": "under"}, {"text": "pressure"}, {"text": "``"}, {"text": "because"}, {"text": "of"}, {"text": "the"}, {"text": "junk"}, {"text": "bond"}, {"text": "collapse"}, {"text": ","}, {"text": "''"}, {"text": "*"}, {"text": "meaning"}, {"text": "that"}, {"text": "returns"}, {"text": "are"}, {"text": "likely"}, {"text": "*-1"}, {"text": "to"}, {"text": "decline"}, {"text": "as"}, {"text": "the"}, {"text": "volume"}, {"text": "of"}, {"text": "junk-bond"}, {"text": "financings"}, {"text": "shrinks"}, {"text": "."}, {"text": "In"}, {"text": "a"}, {"text": "leveraged"}, {"text": "buy-out"}, {"text": ","}, {"text": "a"}, {"text": "small"}, {"text": "group"}, {"text": "of"}, {"text": "investors"}, {"text": "acquires"}, {"text": "a"}, {"text": "company"}, {"text": "in"}, {"text": "a"}, {"text": "transaction"}, {"text": "financed"}, {"text": "*"}, {"text": "largely"}, {"text": "by"}, {"text": "borrowing"}, {"text": ","}, {"text": "with"}, {"text": "the"}, {"text": "expectation"}, {"text": "that"}, {"text": "the"}, {"text": "debt"}, {"text": "will"}, {"text": "be"}, {"text": "paid"}, {"text": "*-1"}, {"text": "with"}, {"text": "funds"}, {"text": "generated"}, {"text": "*"}, {"text": "by"}, {"text": "the"}, {"text": "acquired"}, {"text": "company"}, {"text": "'s"}, {"text": "operations"}, {"text": "or"}, {"text": "sales"}, {"text": "of"}, {"text": "its"}, {"text": "assets"}, {"text": "."}, {"text": "In"}, {"text": "a"}, {"text": "recent"}, {"text": "report"}, {"text": ","}, {"text": "Moody"}, {"text": "'s"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "``"}, {"text": "expects"}, {"text": "intense"}, {"text": "competition"}, {"text": "to"}, {"text": "occur"}, {"text": "through"}, {"text": "the"}, {"text": "rest"}, {"text": "of"}, {"text": "the"}, {"text": "century"}, {"text": "in"}, {"text": "the"}, {"text": "securities"}, {"text": "industry"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": ","}, {"text": "combined"}, {"text": "with"}, {"text": "overcapacity"}, {"text": ","}, {"text": "will"}, {"text": "create"}, {"text": "poor"}, {"text": "prospects"}, {"text": "for"}, {"text": "profitability"}, {"text": "."}, {"text": "''"}, {"text": "It"}, {"text": "said"}, {"text": "that"}, {"text": "the"}, {"text": "``"}, {"text": "temptation"}, {"text": "*ICH*-2"}, {"text": "for"}, {"text": "managements"}, {"text": "*"}, {"text": "to"}, {"text": "ease"}, {"text": "this"}, {"text": "profit"}, {"text": "pressure"}, {"text": "by"}, {"text": "*-1"}, {"text": "taking"}, {"text": "greater"}, {"text": "risks"}, {"text": "is"}, {"text": "an"}, {"text": "additional"}, {"text": "rating"}, {"text": "factor"}, {"text": "."}, {"text": "''"}, {"text": "Both"}, {"text": "Moody"}, {"text": "'s"}, {"text": "and"}, {"text": "S&P"}, {"text": "cited"}, {"text": "First"}, {"text": "Boston"}, {"text": "'s"}, {"text": "reliance"}, {"text": "in"}, {"text": "recent"}, {"text": "years"}, {"text": "on"}, {"text": "merchant"}, {"text": "banking"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "has"}, {"text": "been"}, {"text": "responsible"}, {"text": "for"}, {"text": "a"}, {"text": "significant"}, {"text": "portion"}, {"text": "of"}, {"text": "the"}, {"text": "closely"}, {"text": "held"}, {"text": "firm"}, {"text": "'s"}, {"text": "profit"}, {"text": "."}, {"text": "The"}, {"text": "recent"}, {"text": "cash"}, {"text": "squeeze"}, {"text": "at"}, {"text": "Campeau"}, {"text": "Corp."}, {"text": ","}, {"text": "First"}, {"text": "Boston"}, {"text": "'s"}, {"text": "most"}, {"text": "lucrative"}, {"text": "client"}, {"text": "of"}, {"text": "the"}, {"text": "decade"}, {"text": ","}, {"text": "is"}, {"text": "proving"}, {"text": "costly"}, {"text": "to"}, {"text": "First"}, {"text": "Boston"}, {"text": "because"}, {"text": "it"}, {"text": "arranged"}, {"text": "more"}, {"text": "than"}, {"text": "$"}, {"text": "3"}, {"text": "billion"}, {"text": "*U*"}, {"text": "of"}, {"text": "high-yield"}, {"text": ","}, {"text": "high-risk"}, {"text": "junk"}, {"text": "financings"}, {"text": "for"}, {"text": "Campeau"}, {"text": "units"}, {"text": "."}, {"text": "In"}, {"text": "addition"}, {"text": ","}, {"text": "a"}, {"text": "big"}, {"text": "loan"}, {"text": "that"}, {"text": "First"}, {"text": "Boston"}, {"text": "made"}, {"text": "*T*-2"}, {"text": "to"}, {"text": "Ohio"}, {"text": "Mattress"}, {"text": "Co"}, {"text": "."}, {"text": "was"}, {"text": "n't"}, {"text": "repaid"}, {"text": "on"}, {"text": "time"}, {"text": "when"}, {"text": "its"}, {"text": "$"}, {"text": "450"}, {"text": "million"}, {"text": "*U*"}, {"text": "junk"}, {"text": "financing"}, {"text": "for"}, {"text": "a"}, {"text": "buy-out"}, {"text": "of"}, {"text": "the"}, {"text": "bedding"}, {"text": "company"}, {"text": "was"}, {"text": "withdrawn"}, {"text": "*-1"}, {"text": "*T*-3"}, {"text": "."}, {"text": "``"}, {"text": "These"}, {"text": "two"}, {"text": "exposures"}, {"text": "alone"}, {"text": "represent"}, {"text": "a"}, {"text": "very"}, {"text": "substantial"}, {"text": "portion"}, {"text": "of"}, {"text": "CS"}, {"text": "First"}, {"text": "Boston"}, {"text": "'s"}, {"text": "equity"}, {"text": ","}, {"text": "''"}, {"text": "Moody"}, {"text": "'s"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "."}, {"text": "``"}, {"text": "Total"}, {"text": "merchant"}, {"text": "banking"}, {"text": "exposures"}, {"text": "are"}, {"text": "in"}, {"text": "excess"}, {"text": "of"}, {"text": "the"}, {"text": "firm"}, {"text": "'s"}, {"text": "equity"}, {"text": "."}, {"text": "''"}, {"text": "CS"}, {"text": "First"}, {"text": "Boston"}, {"text": ","}, {"text": "however"}, {"text": ","}, {"text": "benefits"}, {"text": "from"}, {"text": "the"}, {"text": "backing"}, {"text": "of"}, {"text": "its"}, {"text": "largest"}, {"text": "shareholder"}, {"text": ","}, {"text": "Credit"}, {"text": "Suisse"}, {"text": ","}, {"text": "Switzerland"}, {"text": "'s"}, {"text": "third"}, {"text": "largest"}, {"text": "bank"}, {"text": "."}, {"text": "Shearson"}, {"text": "also"}, {"text": "has"}, {"text": "been"}, {"text": "an"}, {"text": "aggressive"}, {"text": "participant"}, {"text": "in"}, {"text": "the"}, {"text": "leveraged"}, {"text": "buy-out"}, {"text": "business"}, {"text": "."}, {"text": "But"}, {"text": "its"}, {"text": "earnings"}, {"text": "became"}, {"text": "a"}, {"text": "major"}, {"text": "disappointment"}, {"text": "as"}, {"text": "its"}, {"text": "traditional"}, {"text": "retail"}, {"text": ","}, {"text": "or"}, {"text": "individual"}, {"text": "investor"}, {"text": ","}, {"text": "business"}, {"text": "showed"}, {"text": "no"}, {"text": "signs"}, {"text": "of"}, {"text": "*"}, {"text": "rebounding"}, {"text": "from"}, {"text": "the"}, {"text": "slump"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "followed"}, {"text": "the"}, {"text": "October"}, {"text": "1987"}, {"text": "stock"}, {"text": "market"}, {"text": "crash"}, {"text": "."}, {"text": "In"}, {"text": "addition"}, {"text": ","}, {"text": "Shearson"}, {"text": "'s"}, {"text": "listed"}, {"text": "$"}, {"text": "2"}, {"text": "billion"}, {"text": "*U*"}, {"text": "of"}, {"text": "capital"}, {"text": "is"}, {"text": "overstated"}, {"text": "*-1"}, {"text": ","}, {"text": "according"}, {"text": "to"}, {"text": "the"}, {"text": "rating"}, {"text": "concerns"}, {"text": ","}, {"text": "because"}, {"text": "it"}, {"text": "includes"}, {"text": "$"}, {"text": "1.7"}, {"text": "billion"}, {"text": "*U*"}, {"text": "of"}, {"text": "goodwill"}, {"text": "."}, {"text": "Shearson"}, {"text": "``"}, {"text": "really"}, {"text": "only"}, {"text": "has"}, {"text": "$"}, {"text": "300"}, {"text": "million"}, {"text": "*U*"}, {"text": "of"}, {"text": "capital"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "Mr."}, {"text": "Bowman"}, {"text": "of"}, {"text": "S&P"}, {"text": "."}, {"text": "A"}, {"text": "Shearson"}, {"text": "spokesman"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "firm"}, {"text": "is"}, {"text": "n't"}, {"text": "worried"}, {"text": "."}, {"text": "``"}, {"text": "A"}, {"text": "year"}, {"text": "ago"}, {"text": ","}, {"text": "Moody"}, {"text": "'s"}, {"text": "also"}, {"text": "had"}, {"text": "Shearson"}, {"text": "under"}, {"text": "review"}, {"text": "for"}, {"text": "possible"}, {"text": "downgrade"}, {"text": ","}, {"text": "''"}, {"text": "he"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "."}, {"text": "``"}, {"text": "After"}, {"text": "two"}, {"text": "months"}, {"text": "of"}, {"text": "talks"}, {"text": ","}, {"text": "our"}, {"text": "rating"}, {"text": "was"}, {"text": "maintained"}, {"text": "*-1"}, {"text": "."}, {"text": "''"}, {"text": "Drexel"}, {"text": ","}, {"text": "meanwhile"}, {"text": ","}, {"text": "already"}, {"text": "competes"}, {"text": "at"}, {"text": "a"}, {"text": "disadvantage"}, {"text": "to"}, {"text": "its"}, {"text": "big"}, {"text": "Wall"}, {"text": "Street"}, {"text": "rivals"}, {"text": "because"}, {"text": "it"}, {"text": "has"}, {"text": "a"}, {"text": "slightly"}, {"text": "lower"}, {"text": "commercial"}, {"text": "paper"}, {"text": "rating"}, {"text": "."}, {"text": "The"}, {"text": "collapse"}, {"text": "of"}, {"text": "junk"}, {"text": "bond"}, {"text": "prices"}, {"text": "and"}, {"text": "the"}, {"text": "cancellation"}, {"text": "of"}, {"text": "many"}, {"text": "junk"}, {"text": "bond"}, {"text": "financings"}, {"text": "apparently"}, {"text": "have"}, {"text": "taken"}, {"text": "their"}, {"text": "toll"}, {"text": "on"}, {"text": "closely"}, {"text": "held"}, {"text": "Drexel"}, {"text": ","}, {"text": "the"}, {"text": "leading"}, {"text": "underwriter"}, {"text": "in"}, {"text": "that"}, {"text": "market"}, {"text": "."}, {"text": "The"}, {"text": "firm"}, {"text": "also"}, {"text": "has"}, {"text": "been"}, {"text": "hit"}, {"text": "*-1"}, {"text": "with"}, {"text": "big"}, {"text": "financial"}, {"text": "settlements"}, {"text": "with"}, {"text": "the"}, {"text": "government"}, {"text": "stemming"}, {"text": "from"}, {"text": "its"}, {"text": "guilty"}, {"text": "plea"}, {"text": "to"}, {"text": "six"}, {"text": "felonies"}, {"text": "related"}, {"text": "*"}, {"text": "to"}, {"text": "a"}, {"text": "big"}, {"text": "insider-trading"}, {"text": "scandal"}, {"text": "."}, {"text": "Drexel"}, {"text": "this"}, {"text": "year"}, {"text": "eliminated"}, {"text": "its"}, {"text": "retail"}, {"text": "or"}, {"text": "individual"}, {"text": "customer"}, {"text": "business"}, {"text": ","}, {"text": "*-1"}, {"text": "cutting"}, {"text": "the"}, {"text": "firm"}, {"text": "'s"}, {"text": "workforce"}, {"text": "almost"}, {"text": "in"}, {"text": "half"}, {"text": "to"}, {"text": "just"}, {"text": "over"}, {"text": "5,000"}, {"text": "."}, {"text": "Recently"}, {"text": ","}, {"text": "Drexel"}, {"text": "circulated"}, {"text": "a"}, {"text": "private"}, {"text": "financial"}, {"text": "statement"}, {"text": "*ICH*-1"}, {"text": "among"}, {"text": "several"}, {"text": "securities"}, {"text": "firms"}, {"text": "showing"}, {"text": "that"}, {"text": "its"}, {"text": "earnings"}, {"text": "performance"}, {"text": "has"}, {"text": "diminished"}, {"text": "this"}, {"text": "year"}, {"text": "from"}, {"text": "previous"}, {"text": "years"}, {"text": "."}, {"text": "The"}, {"text": "firm"}, {"text": "'s"}, {"text": "capital"}, {"text": ","}, {"text": "moreover"}, {"text": ","}, {"text": "has"}, {"text": "n't"}, {"text": "grown"}, {"text": "at"}, {"text": "the"}, {"text": "same"}, {"text": "rate"}, {"text": "as"}, {"text": "in"}, {"text": "the"}, {"text": "past"}, {"text": ","}, {"text": "officials"}, {"text": "at"}, {"text": "these"}, {"text": "firms"}, {"text": "say"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Drexel"}, {"text": "remains"}, {"text": "confident"}, {"text": "of"}, {"text": "its"}, {"text": "future"}, {"text": "creditworthiness"}, {"text": "."}, {"text": "``"}, {"text": "We"}, {"text": "'re"}, {"text": "well"}, {"text": "positioned"}, {"text": "*-2"}, {"text": "with"}, {"text": "$"}, {"text": "1.7"}, {"text": "billion"}, {"text": "*U*"}, {"text": "of"}, {"text": "capital"}, {"text": ","}, {"text": "''"}, {"text": "a"}, {"text": "Drexel"}, {"text": "spokesman"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "``"}, {"text": "And"}, {"text": "as"}, {"text": "a"}, {"text": "leading"}, {"text": "investment"}, {"text": "and"}, {"text": "merchant"}, {"text": "banking"}, {"text": "firm"}, {"text": ","}, {"text": "the"}, {"text": "fact"}, {"text": "that"}, {"text": "we"}, {"text": "are"}, {"text": "no"}, {"text": "longer"}, {"text": "subject"}, {"text": "to"}, {"text": "the"}, {"text": "uncertainties"}, {"text": "and"}, {"text": "vicissitudes"}, {"text": "of"}, {"text": "the"}, {"text": "retail"}, {"text": "business"}, {"text": "is"}, {"text": "a"}, {"text": "major"}, {"text": "plus"}, {"text": "in"}, {"text": "our"}, {"text": "view"}, {"text": "."}, {"text": "Moreover"}, {"text": ","}, {"text": "we"}, {"text": "'ve"}, {"text": "probably"}, {"text": "been"}, {"text": "the"}, {"text": "most"}, {"text": "aggressive"}, {"text": "firm"}, {"text": "on"}, {"text": "the"}, {"text": "Street"}, {"text": "in"}, {"text": "*"}, {"text": "reducing"}, {"text": "costs"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "are"}, {"text": "down"}, {"text": "around"}, {"text": "40"}, {"text": "%"}, {"text": "over"}, {"text": "the"}, {"text": "last"}, {"text": "six"}, {"text": "months"}, {"text": "."}, {"text": "Lewis"}, {"text": "C."}, {"text": "Veraldi"}, {"text": ","}, {"text": "the"}, {"text": "father"}, {"text": "of"}, {"text": "the"}, {"text": "team"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "created"}, {"text": "the"}, {"text": "highly"}, {"text": "successful"}, {"text": "Ford"}, {"text": "Taurus"}, {"text": "and"}, {"text": "Mercury"}, {"text": "Sable"}, {"text": "cars"}, {"text": ","}, {"text": "retired"}, {"text": "early"}, {"text": "after"}, {"text": "*-2"}, {"text": "experiencing"}, {"text": "recent"}, {"text": "heart"}, {"text": "problems"}, {"text": "."}, {"text": "Most"}, {"text": "recently"}, {"text": ","}, {"text": "Mr."}, {"text": "Veraldi"}, {"text": ","}, {"text": "59"}, {"text": "years"}, {"text": "old"}, {"text": ","}, {"text": "has"}, {"text": "been"}, {"text": "vice"}, {"text": "president"}, {"text": "of"}, {"text": "product"}, {"text": "and"}, {"text": "manufacturing"}, {"text": "engineering"}, {"text": "at"}, {"text": "Ford"}, {"text": "Motor"}, {"text": "Co"}, {"text": "."}, {"text": "But"}, {"text": "he"}, {"text": "is"}, {"text": "best"}, {"text": "known"}, {"text": "*-3"}, {"text": "in"}, {"text": "the"}, {"text": "auto"}, {"text": "industry"}, {"text": "as"}, {"text": "the"}, {"text": "creator"}, {"text": "of"}, {"text": "a"}, {"text": "team"}, {"text": "car-development"}, {"text": "approach"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "produced"}, {"text": "the"}, {"text": "two"}, {"text": "midsized"}, {"text": "cars"}, {"text": "that"}, {"text": "*T*-2"}, {"text": "were"}, {"text": "instrumental"}, {"text": "in"}, {"text": "*"}, {"text": "helping"}, {"text": "the"}, {"text": "No."}, {"text": "2"}, {"text": "auto"}, {"text": "maker"}, {"text": "record"}, {"text": "profits"}, {"text": "in"}, {"text": "recent"}, {"text": "years"}, {"text": "and"}, {"text": "in"}, {"text": "*"}, {"text": "enabling"}, {"text": "the"}, {"text": "company"}, {"text": "'s"}, {"text": "Ford"}, {"text": "division"}, {"text": "to"}, {"text": "eclipse"}, {"text": "General"}, {"text": "Motors"}, {"text": "Corp."}, {"text": "'s"}, {"text": "Chevrolet"}, {"text": "division"}, {"text": "as"}, {"text": "the"}, {"text": "top-selling"}, {"text": "nameplate"}, {"text": "in"}, {"text": "the"}, {"text": "U.S."}, {"text": "."}, {"text": "Under"}, {"text": "the"}, {"text": "so-called"}, {"text": "Team"}, {"text": "Taurus"}, {"text": "approach"}, {"text": ","}, {"text": "Mr."}, {"text": "Veraldi"}, {"text": "and"}, {"text": "other"}, {"text": "Ford"}, {"text": "product"}, {"text": "planners"}, {"text": "sought"}, {"text": "the"}, {"text": "involvement"}, {"text": "of"}, {"text": "parts"}, {"text": "suppliers"}, {"text": ","}, {"text": "assembly-line"}, {"text": "workers"}, {"text": ","}, {"text": "auto"}, {"text": "designers"}, {"text": "and"}, {"text": "financial"}, {"text": "staff"}, {"text": "members"}, {"text": "from"}, {"text": "the"}, {"text": "initial"}, {"text": "stages"}, {"text": "of"}, {"text": "the"}, {"text": "development"}, {"text": "cycle"}, {"text": "."}, {"text": "The"}, {"text": "concept"}, {"text": "'s"}, {"text": "goal"}, {"text": "was"}, {"text": "*"}, {"text": "to"}, {"text": "eliminate"}, {"text": "bureaucracy"}, {"text": "and"}, {"text": "make"}, {"text": "Ford"}, {"text": "'s"}, {"text": "product"}, {"text": "development"}, {"text": "more"}, {"text": "responsive"}, {"text": "to"}, {"text": "consumer"}, {"text": "demands"}, {"text": "."}, {"text": "It"}, {"text": "was"}, {"text": "later"}, {"text": "applied"}, {"text": "to"}, {"text": "other"}, {"text": "new-car"}, {"text": "programs"}, {"text": ","}, {"text": "including"}, {"text": "those"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "produced"}, {"text": "the"}, {"text": "Ford"}, {"text": "Thunderbird"}, {"text": "and"}, {"text": "Mercury"}, {"text": "Cougar"}, {"text": "."}, {"text": "Ford"}, {"text": "Chairman"}, {"text": "Donald"}, {"text": "E."}, {"text": "Petersen"}, {"text": "said"}, {"text": "yesterday"}, {"text": "that"}, {"text": "Mr."}, {"text": "Veraldi"}, {"text": "has"}, {"text": "``"}, {"text": "helped"}, {"text": "*-1"}, {"text": "to"}, {"text": "change"}, {"text": "the"}, {"text": "world"}, {"text": "'s"}, {"text": "perception"}, {"text": "of"}, {"text": "American-made"}, {"text": "cars"}, {"text": "."}, {"text": "''"}, {"text": "Mr."}, {"text": "Veraldi"}, {"text": "worked"}, {"text": "at"}, {"text": "Ford"}, {"text": "for"}, {"text": "40"}, {"text": "years"}, {"text": ","}, {"text": "*-1"}, {"text": "holding"}, {"text": "a"}, {"text": "variety"}, {"text": "of"}, {"text": "car"}, {"text": "and"}, {"text": "parts-engineering"}, {"text": "positions"}, {"text": "."}, {"text": "The"}, {"text": "limits"}, {"text": "to"}, {"text": "legal"}, {"text": "absurdity"}, {"text": "stretched"}, {"text": "another"}, {"text": "notch"}, {"text": "this"}, {"text": "week"}, {"text": "when"}, {"text": "the"}, {"text": "Supreme"}, {"text": "Court"}, {"text": "refused"}, {"text": "*-2"}, {"text": "to"}, {"text": "hear"}, {"text": "an"}, {"text": "appeal"}, {"text": "from"}, {"text": "a"}, {"text": "case"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "says"}, {"text": "0"}, {"text": "corporate"}, {"text": "defendants"}, {"text": "must"}, {"text": "pay"}, {"text": "damages"}, {"text": "even"}, {"text": "after"}, {"text": "*-3"}, {"text": "proving"}, {"text": "that"}, {"text": "they"}, {"text": "could"}, {"text": "not"}, {"text": "possibly"}, {"text": "have"}, {"text": "caused"}, {"text": "the"}, {"text": "harm"}, {"text": "."}, {"text": "We"}, {"text": "can"}, {"text": "understand"}, {"text": "and"}, {"text": "share"}, {"text": "the"}, {"text": "compassion"}, {"text": "that"}, {"text": "*T*-2"}, {"text": "makes"}, {"text": "judges"}, {"text": "sometimes"}, {"text": "wish"}, {"text": "*-3"}, {"text": "to"}, {"text": "offer"}, {"text": "a"}, {"text": "kind"}, {"text": "of"}, {"text": "Solomonic"}, {"text": "aid"}, {"text": "to"}, {"text": "those"}, {"text": "who"}, {"text": "*T*-4"}, {"text": "'ve"}, {"text": "been"}, {"text": "hurt"}, {"text": "*-1"}, {"text": "."}, {"text": "But"}, {"text": "this"}, {"text": "case"}, {"text": "is"}, {"text": "a"}, {"text": "stark"}, {"text": "lesson"}, {"text": "in"}, {"text": "how"}, {"text": "the"}, {"text": "failures"}, {"text": "of"}, {"text": "the"}, {"text": "traditional"}, {"text": "policy-making"}, {"text": "process"}, {"text": "have"}, {"text": "left"}, {"text": "the"}, {"text": "courts"}, {"text": "as"}, {"text": "the"}, {"text": "only"}, {"text": "forum"}, {"text": "0"}, {"text": "this"}, {"text": "country"}, {"text": "has"}, {"text": "*T*-2"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "debate"}, {"text": "risk"}, {"text": ","}, {"text": "technology"}, {"text": "and"}, {"text": "innovation"}, {"text": "*T*-3"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Too"}, {"text": "often"}, {"text": "now"}, {"text": ","}, {"text": "a"}, {"text": "single"}, {"text": "court"}, {"text": "decision"}, {"text": "becomes"}, {"text": "the"}, {"text": "precedent"}, {"text": "for"}, {"text": "other"}, {"text": ","}, {"text": "less"}, {"text": "compelling"}, {"text": "cases"}, {"text": "."}, {"text": "From"}, {"text": "the"}, {"text": "1940s"}, {"text": "until"}, {"text": "1971"}, {"text": ","}, {"text": "some"}, {"text": "two"}, {"text": "million"}, {"text": "women"}, {"text": "took"}, {"text": "the"}, {"text": "synthetic"}, {"text": "hormone"}, {"text": "diethylstilbestrol"}, {"text": "-LRB-"}, {"text": "DES"}, {"text": "-RRB-"}, {"text": "*-1"}, {"text": "to"}, {"text": "prevent"}, {"text": "miscarriages"}, {"text": "and"}, {"text": "morning"}, {"text": "sickness"}, {"text": "."}, {"text": "The"}, {"text": "drug"}, {"text": "was"}, {"text": "approved"}, {"text": "*-1"}, {"text": "by"}, {"text": "the"}, {"text": "Food"}, {"text": "and"}, {"text": "Drug"}, {"text": "Administration"}, {"text": "and"}, {"text": "marketed"}, {"text": "*-1"}, {"text": "by"}, {"text": "some"}, {"text": "300"}, {"text": "pharmaceutical"}, {"text": "companies"}, {"text": ","}, {"text": "often"}, {"text": "under"}, {"text": "generic"}, {"text": "labels"}, {"text": "."}, {"text": "In"}, {"text": "the"}, {"text": "1970s"}, {"text": ","}, {"text": "scientists"}, {"text": "reported"}, {"text": "cancer"}, {"text": "cases"}, {"text": "among"}, {"text": "the"}, {"text": "daughters"}, {"text": "of"}, {"text": "DES"}, {"text": "users"}, {"text": "."}, {"text": "The"}, {"text": "cases"}, {"text": "quickly"}, {"text": "went"}, {"text": "to"}, {"text": "court"}, {"text": ","}, {"text": "but"}, {"text": "the"}, {"text": "mothers"}, {"text": "of"}, {"text": "several"}, {"text": "thousand"}, {"text": "DES"}, {"text": "plaintiffs"}, {"text": "could"}, {"text": "n't"}, {"text": "recall"}, {"text": "whose"}, {"text": "brand"}, {"text": "they"}, {"text": "used"}, {"text": "*T*-1"}, {"text": "."}, {"text": "*"}, {"text": "Beginning"}, {"text": "in"}, {"text": "1980"}, {"text": ","}, {"text": "courts"}, {"text": "in"}, {"text": "several"}, {"text": "states"}, {"text": "including"}, {"text": "California"}, {"text": "and"}, {"text": "New"}, {"text": "York"}, {"text": "decided"}, {"text": "*-2"}, {"text": "to"}, {"text": "suspend"}, {"text": "the"}, {"text": "common-law"}, {"text": "rule"}, {"text": "that"}, {"text": "plaintiffs"}, {"text": "must"}, {"text": "prove"}, {"text": "that"}, {"text": "the"}, {"text": "defendants"}, {"text": "are"}, {"text": "the"}, {"text": "ones"}, {"text": "who"}, {"text": "*T*-1"}, {"text": "are"}, {"text": "liable"}, {"text": "."}, {"text": "Courts"}, {"text": "made"}, {"text": "the"}, {"text": "assumption"}, {"text": "that"}, {"text": "all"}, {"text": "DES"}, {"text": "pills"}, {"text": "were"}, {"text": "essentially"}, {"text": "the"}, {"text": "same"}, {"text": ","}, {"text": "and"}, {"text": "created"}, {"text": "a"}, {"text": "market-share"}, {"text": "test"}, {"text": "so"}, {"text": "that"}, {"text": "damages"}, {"text": "would"}, {"text": "be"}, {"text": "assessed"}, {"text": "*-1"}, {"text": "against"}, {"text": "drug"}, {"text": "makers"}, {"text": "in"}, {"text": "the"}, {"text": "proportion"}, {"text": "of"}, {"text": "their"}, {"text": "share"}, {"text": "of"}, {"text": "the"}, {"text": "original"}, {"text": "sales"}, {"text": "."}, {"text": "This"}, {"text": "has"}, {"text": "some"}, {"text": "logic"}, {"text": "."}, {"text": "Drug"}, {"text": "makers"}, {"text": "should"}, {"text": "n't"}, {"text": "be"}, {"text": "able"}, {"text": "*-2"}, {"text": "to"}, {"text": "duck"}, {"text": "liability"}, {"text": "because"}, {"text": "people"}, {"text": "could"}, {"text": "n't"}, {"text": "identify"}, {"text": "precisely"}, {"text": "which"}, {"text": "identical"}, {"text": "drug"}, {"text": "*T*-3"}, {"text": "was"}, {"text": "used"}, {"text": "*-1"}, {"text": "."}, {"text": "But"}, {"text": "courts"}, {"text": "quickly"}, {"text": "tumbled"}, {"text": "down"}, {"text": "a"}, {"text": "slippery"}, {"text": "slope"}, {"text": "."}, {"text": "Just"}, {"text": "as"}, {"text": "all"}, {"text": "plaintiffs"}, {"text": "are"}, {"text": "not"}, {"text": "alike"}, {"text": ","}, {"text": "it"}, {"text": "turns"}, {"text": "out"}, {"text": "that"}, {"text": "DES"}, {"text": "defendants"}, {"text": "marketed"}, {"text": "the"}, {"text": "drugs"}, {"text": "differently"}, {"text": "and"}, {"text": "may"}, {"text": "have"}, {"text": "offered"}, {"text": "different"}, {"text": "warranties"}, {"text": "."}, {"text": "The"}, {"text": "ultimate"}, {"text": "result"}, {"text": "came"}, {"text": "in"}, {"text": "Hymowitz"}, {"text": "v."}, {"text": "Lilly"}, {"text": ","}, {"text": "where"}, {"text": "the"}, {"text": "highest"}, {"text": "New"}, {"text": "York"}, {"text": "court"}, {"text": "expanded"}, {"text": "the"}, {"text": "market-share"}, {"text": "approach"}, {"text": "for"}, {"text": "the"}, {"text": "first"}, {"text": "time"}, {"text": "*"}, {"text": "to"}, {"text": "say"}, {"text": "that"}, {"text": "drug"}, {"text": "makers"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "could"}, {"text": "prove"}, {"text": "0"}, {"text": "Mindy"}, {"text": "Hymowitz"}, {"text": "'s"}, {"text": "mother"}, {"text": "did"}, {"text": "n't"}, {"text": "use"}, {"text": "their"}, {"text": "pill"}, {"text": "must"}, {"text": "still"}, {"text": "pay"}, {"text": "their"}, {"text": "share"}, {"text": "of"}, {"text": "any"}, {"text": "damages"}, {"text": "*T*-2"}, {"text": "."}, {"text": "But"}, {"text": "as"}, {"text": "Duke"}, {"text": "University"}, {"text": "law"}, {"text": "professor"}, {"text": "William"}, {"text": "Van"}, {"text": "Alstyne"}, {"text": "notes"}, {"text": ","}, {"text": "by"}, {"text": "this"}, {"text": "reasoning"}, {"text": "a"}, {"text": "defendant"}, {"text": "could"}, {"text": "be"}, {"text": "held"}, {"text": "*-1"}, {"text": "liable"}, {"text": "in"}, {"text": "New"}, {"text": "York"}, {"text": "for"}, {"text": "a"}, {"text": "bad"}, {"text": "apple"}, {"text": "even"}, {"text": "if"}, {"text": "he"}, {"text": "sold"}, {"text": "all"}, {"text": "his"}, {"text": "apples"}, {"text": "in"}, {"text": "California"}, {"text": "."}, {"text": "Despite"}, {"text": "the"}, {"text": "Supreme"}, {"text": "Court"}, {"text": "'s"}, {"text": "refusal"}, {"text": "*"}, {"text": "to"}, {"text": "hear"}, {"text": "the"}, {"text": "case"}, {"text": ","}, {"text": "there"}, {"text": "are"}, {"text": "serious"}, {"text": "constitutional"}, {"text": "issues"}, {"text": "of"}, {"text": "due"}, {"text": "process"}, {"text": "and"}, {"text": "uncompensated"}, {"text": "takings"}, {"text": "from"}, {"text": "the"}, {"text": "defendants"}, {"text": "."}, {"text": "The"}, {"text": "big"}, {"text": "problem"}, {"text": ","}, {"text": "however"}, {"text": ","}, {"text": "is"}, {"text": "that"}, {"text": "there"}, {"text": "'s"}, {"text": "no"}, {"text": "guarantee"}, {"text": "that"}, {"text": "this"}, {"text": "reasoning"}, {"text": "will"}, {"text": "be"}, {"text": "limited"}, {"text": "*-1"}, {"text": "to"}, {"text": "DES"}, {"text": "or"}, {"text": "to"}, {"text": "drugs"}, {"text": "."}, {"text": "The"}, {"text": "problem"}, {"text": "here"}, {"text": "goes"}, {"text": "well"}, {"text": "beyond"}, {"text": "*"}, {"text": "twisting"}, {"text": "legal"}, {"text": "doctrine"}, {"text": "."}, {"text": "The"}, {"text": "California"}, {"text": "Supreme"}, {"text": "Court"}, {"text": "last"}, {"text": "year"}, {"text": "reversed"}, {"text": "direction"}, {"text": "*-1"}, {"text": "to"}, {"text": "make"}, {"text": "it"}, {"text": "*EXP*-2"}, {"text": "much"}, {"text": "harder"}, {"text": "*"}, {"text": "to"}, {"text": "win"}, {"text": "DES"}, {"text": "cases"}, {"text": "because"}, {"text": "the"}, {"text": "justices"}, {"text": "saw"}, {"text": "how"}, {"text": "all"}, {"text": "the"}, {"text": "pharmaceutical"}, {"text": "litigation"}, {"text": "has"}, {"text": "chilled"}, {"text": "the"}, {"text": "introduction"}, {"text": "of"}, {"text": "new"}, {"text": "drugs"}, {"text": "*T*-3"}, {"text": "."}, {"text": "The"}, {"text": "court"}, {"text": "rejected"}, {"text": "strict"}, {"text": "liability"}, {"text": "for"}, {"text": "prescription"}, {"text": "drugs"}, {"text": ","}, {"text": "*-1"}, {"text": "citing"}, {"text": "the"}, {"text": "huge"}, {"text": ","}, {"text": "hidden"}, {"text": "social"}, {"text": "costs"}, {"text": "."}, {"text": "``"}, {"text": "Public"}, {"text": "policy"}, {"text": "favors"}, {"text": "the"}, {"text": "development"}, {"text": "and"}, {"text": "marketing"}, {"text": "of"}, {"text": "beneficial"}, {"text": "new"}, {"text": "drugs"}, {"text": ","}, {"text": "even"}, {"text": "though"}, {"text": "some"}, {"text": "risks"}, {"text": ","}, {"text": "perhaps"}, {"text": "serious"}, {"text": "ones"}, {"text": ","}, {"text": "might"}, {"text": "accompany"}, {"text": "their"}, {"text": "introduction"}, {"text": "because"}, {"text": "drugs"}, {"text": "can"}, {"text": "save"}, {"text": "lives"}, {"text": "and"}, {"text": "reduce"}, {"text": "pain"}, {"text": "and"}, {"text": "suffering"}, {"text": ","}, {"text": "''"}, {"text": "the"}, {"text": "unanimous"}, {"text": "court"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "."}, {"text": "The"}, {"text": "California"}, {"text": "justices"}, {"text": "noted"}, {"text": "that"}, {"text": "the"}, {"text": "fear"}, {"text": "of"}, {"text": "litigation"}, {"text": "already"}, {"text": "forced"}, {"text": "the"}, {"text": "only"}, {"text": "remaining"}, {"text": "anti-morning-sickness"}, {"text": "drug"}, {"text": ","}, {"text": "Bendectin"}, {"text": ","}, {"text": "off"}, {"text": "the"}, {"text": "U.S."}, {"text": "market"}, {"text": "."}, {"text": "This"}, {"text": "raises"}, {"text": "the"}, {"text": "key"}, {"text": "issue"}, {"text": ":"}, {"text": "What"}, {"text": "*"}, {"text": "to"}, {"text": "do"}, {"text": "*T*-2"}, {"text": "about"}, {"text": "people"}, {"text": "who"}, {"text": "*T*-1"}, {"text": "suffer"}, {"text": "serious"}, {"text": "injuries"}, {"text": "from"}, {"text": "beneficial"}, {"text": "drugs"}, {"text": "?"}, {"text": "We"}, {"text": "now"}, {"text": "know"}, {"text": "that"}, {"text": "*"}, {"text": "holding"}, {"text": "drug"}, {"text": "makers"}, {"text": "liable"}, {"text": "where"}, {"text": "there"}, {"text": "'s"}, {"text": "no"}, {"text": "evidence"}, {"text": "that"}, {"text": "they"}, {"text": "or"}, {"text": "anyone"}, {"text": "else"}, {"text": "knew"}, {"text": "of"}, {"text": "any"}, {"text": "risks"}, {"text": "*T*-1"}, {"text": "only"}, {"text": "means"}, {"text": "0"}, {"text": "the"}, {"text": "drugs"}, {"text": "wo"}, {"text": "n't"}, {"text": "be"}, {"text": "available"}, {"text": "to"}, {"text": "anyone"}, {"text": "."}, {"text": "As"}, {"text": "liability"}, {"text": "expert"}, {"text": "Peter"}, {"text": "Huber"}, {"text": "tells"}, {"text": "us"}, {"text": ","}, {"text": "after"}, {"text": "the"}, {"text": "Hymowitz"}, {"text": "case"}, {"text": ","}, {"text": "if"}, {"text": "any"}, {"text": "drug"}, {"text": "maker"}, {"text": "introduces"}, {"text": "an"}, {"text": "anti-miscarriage"}, {"text": "drug"}, {"text": "``"}, {"text": "it"}, {"text": "'s"}, {"text": "time"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "sell"}, {"text": "that"}, {"text": "company"}, {"text": "'s"}, {"text": "stock"}, {"text": "short"}, {"text": "*T*-1"}, {"text": "."}, {"text": "''"}, {"text": "We"}, {"text": "also"}, {"text": "know"}, {"text": "that"}, {"text": "the"}, {"text": "tort"}, {"text": "system"}, {"text": "is"}, {"text": "a"}, {"text": "lousy"}, {"text": "way"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "compensate"}, {"text": "victims"}, {"text": "*T*-1"}, {"text": "anyway"}, {"text": ";"}, {"text": "some"}, {"text": "win"}, {"text": "the"}, {"text": "legal"}, {"text": "lottery"}, {"text": ","}, {"text": "others"}, {"text": "get"}, {"text": "much"}, {"text": "less"}, {"text": "and"}, {"text": "contingency-fee"}, {"text": "lawyers"}, {"text": "take"}, {"text": "a"}, {"text": "big"}, {"text": "cut"}, {"text": "either"}, {"text": "way"}, {"text": "."}, {"text": "DES"}, {"text": "daughters"}, {"text": "and"}, {"text": "other"}, {"text": "victims"}, {"text": "of"}, {"text": "drugs"}, {"text": "would"}, {"text": "be"}, {"text": "better"}, {"text": "off"}, {"text": "if"}, {"text": "their"}, {"text": "cases"}, {"text": "were"}, {"text": "taken"}, {"text": "*-1"}, {"text": "out"}, {"text": "of"}, {"text": "the"}, {"text": "courts"}, {"text": "."}, {"text": "Congress"}, {"text": "could"}, {"text": "create"}, {"text": "a"}, {"text": "compensation"}, {"text": "program"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "to"}, {"text": "help"}, {"text": "such"}, {"text": "victims"}, {"text": "while"}, {"text": "*-2"}, {"text": "protecting"}, {"text": "the"}, {"text": "national"}, {"text": "interest"}, {"text": "in"}, {"text": "*"}, {"text": "encouraging"}, {"text": "new"}, {"text": "drugs"}, {"text": "."}, {"text": "But"}, {"text": "a"}, {"text": "1986"}, {"text": "law"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "supposedly"}, {"text": "replaced"}, {"text": "lawsuits"}, {"text": "over"}, {"text": "children"}, {"text": "'s"}, {"text": "vaccines"}, {"text": "with"}, {"text": "a"}, {"text": "compensation"}, {"text": "fund"}, {"text": "has"}, {"text": "predictably"}, {"text": "led"}, {"text": "to"}, {"text": "even"}, {"text": "more"}, {"text": "litigation"}, {"text": "."}, {"text": "Everyone"}, {"text": "by"}, {"text": "now"}, {"text": "understands"}, {"text": "that"}, {"text": "Congress"}, {"text": "is"}, {"text": "utterly"}, {"text": "incapable"}, {"text": "of"}, {"text": "*"}, {"text": "writing"}, {"text": "legislation"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "help"}, {"text": "deserving"}, {"text": "people"}, {"text": "*T*-1"}, {"text": "without"}, {"text": "its"}, {"text": "becoming"}, {"text": "some"}, {"text": "billion-dollar"}, {"text": "morass"}, {"text": "."}, {"text": "We"}, {"text": "have"}, {"text": "no"}, {"text": "doubt"}, {"text": "0"}, {"text": "this"}, {"text": "is"}, {"text": "one"}, {"text": "reason"}, {"text": "0"}, {"text": "judges"}, {"text": "in"}, {"text": "New"}, {"text": "York"}, {"text": "and"}, {"text": "justices"}, {"text": "on"}, {"text": "the"}, {"text": "Supreme"}, {"text": "Court"}, {"text": "are"}, {"text": "willing"}, {"text": "*-1"}, {"text": "to"}, {"text": "trash"}, {"text": "the"}, {"text": "law"}, {"text": "in"}, {"text": "the"}, {"text": "DES"}, {"text": "cases"}, {"text": "."}, {"text": "They"}, {"text": "must"}, {"text": "figure"}, {"text": "that"}, {"text": "justice"}, {"text": "has"}, {"text": "*-2"}, {"text": "to"}, {"text": "get"}, {"text": "done"}, {"text": "*-3"}, {"text": "by"}, {"text": "somebody"}, {"text": ","}, {"text": "but"}, {"text": "know"}, {"text": "0"}, {"text": "it"}, {"text": "wo"}, {"text": "n't"}, {"text": "be"}, {"text": "done"}, {"text": "*-1"}, {"text": "by"}, {"text": "Congress"}, {"text": "."}, {"text": "Odyssey"}, {"text": "Partners"}, {"text": "Limited"}, {"text": "Partnership"}, {"text": ","}, {"text": "an"}, {"text": "investment"}, {"text": "firm"}, {"text": ","}, {"text": "completed"}, {"text": "the"}, {"text": "purchase"}, {"text": "of"}, {"text": "May"}, {"text": "Department"}, {"text": "Stores"}, {"text": "Co."}, {"text": "'s"}, {"text": "Caldor"}, {"text": "discount"}, {"text": "chain"}, {"text": "for"}, {"text": "$"}, {"text": "500"}, {"text": "million"}, {"text": "*U*"}, {"text": "plus"}, {"text": "the"}, {"text": "assumption"}, {"text": "of"}, {"text": "$"}, {"text": "52"}, {"text": "million"}, {"text": "*U*"}, {"text": "in"}, {"text": "debt"}, {"text": "."}, {"text": "Caldor"}, {"text": ","}, {"text": "based"}, {"text": "*"}, {"text": "in"}, {"text": "Norwalk"}, {"text": ","}, {"text": "Conn."}, {"text": ","}, {"text": "operates"}, {"text": "118"}, {"text": "stores"}, {"text": "in"}, {"text": "the"}, {"text": "Northeast"}, {"text": ";"}, {"text": "it"}, {"text": "reported"}, {"text": "revenue"}, {"text": "of"}, {"text": "$"}, {"text": "1.6"}, {"text": "billion"}, {"text": "*U*"}, {"text": "last"}, {"text": "year"}, {"text": "."}, {"text": "May"}, {"text": "Stores"}, {"text": ","}, {"text": "St."}, {"text": "Louis"}, {"text": ","}, {"text": "runs"}, {"text": "such"}, {"text": "well-known"}, {"text": "department"}, {"text": "stores"}, {"text": "as"}, {"text": "Lord"}, {"text": "&"}, {"text": "Taylor"}, {"text": "."}, {"text": "N.V"}, {"text": "."}, {"text": "DSM"}, {"text": "said"}, {"text": "0"}, {"text": "net"}, {"text": "income"}, {"text": "in"}, {"text": "the"}, {"text": "third"}, {"text": "quarter"}, {"text": "jumped"}, {"text": "63"}, {"text": "%"}, {"text": "as"}, {"text": "the"}, {"text": "company"}, {"text": "had"}, {"text": "substantially"}, {"text": "lower"}, {"text": "extraordinary"}, {"text": "charges"}, {"text": "*"}, {"text": "to"}, {"text": "account"}, {"text": "for"}, {"text": "a"}, {"text": "restructuring"}, {"text": "program"}, {"text": "."}, {"text": "The"}, {"text": "Dutch"}, {"text": "chemical"}, {"text": "group"}, {"text": "said"}, {"text": "0"}, {"text": "net"}, {"text": "income"}, {"text": "gained"}, {"text": "to"}, {"text": "235"}, {"text": "million"}, {"text": "guilders"}, {"text": "-LRB-"}, {"text": "$"}, {"text": "113.2"}, {"text": "million"}, {"text": "*U*"}, {"text": "-RRB-"}, {"text": ","}, {"text": "or"}, {"text": "6.70"}, {"text": "guilders"}, {"text": "a"}, {"text": "share"}, {"text": ","}, {"text": "from"}, {"text": "144"}, {"text": "million"}, {"text": "guilders"}, {"text": ","}, {"text": "or"}, {"text": "4.10"}, {"text": "guilders"}, {"text": "a"}, {"text": "share"}, {"text": ","}, {"text": "a"}, {"text": "year"}, {"text": "ago"}, {"text": "."}, {"text": "The"}, {"text": "32"}, {"text": "%"}, {"text": "state-owned"}, {"text": "DSM"}, {"text": "had"}, {"text": "eight"}, {"text": "million"}, {"text": "guilders"}, {"text": "of"}, {"text": "extraordinary"}, {"text": "charges"}, {"text": "in"}, {"text": "the"}, {"text": "latest"}, {"text": "quarter"}, {"text": ","}, {"text": "mainly"}, {"text": "*"}, {"text": "to"}, {"text": "reflect"}, {"text": "one-time"}, {"text": "losses"}, {"text": "in"}, {"text": "connection"}, {"text": "with"}, {"text": "the"}, {"text": "disposal"}, {"text": "of"}, {"text": "some"}, {"text": "operations"}, {"text": "."}, {"text": "The"}, {"text": "charges"}, {"text": "were"}, {"text": "offset"}, {"text": "*-1"}, {"text": "in"}, {"text": "part"}, {"text": "by"}, {"text": "a"}, {"text": "gain"}, {"text": "from"}, {"text": "the"}, {"text": "sale"}, {"text": "of"}, {"text": "the"}, {"text": "company"}, {"text": "'s"}, {"text": "construction"}, {"text": "division"}, {"text": "."}, {"text": "Last"}, {"text": "year"}, {"text": ","}, {"text": "DSM"}, {"text": "had"}, {"text": "71"}, {"text": "million"}, {"text": "guilders"}, {"text": "of"}, {"text": "extraordinary"}, {"text": "charges"}, {"text": "for"}, {"text": "the"}, {"text": "restructuring"}, {"text": "program"}, {"text": "and"}, {"text": "other"}, {"text": "transactions"}, {"text": "."}, {"text": "The"}, {"text": "earnings"}, {"text": "growth"}, {"text": "also"}, {"text": "was"}, {"text": "fueled"}, {"text": "*-1"}, {"text": "by"}, {"text": "the"}, {"text": "company"}, {"text": "'s"}, {"text": "ability"}, {"text": "*"}, {"text": "to"}, {"text": "cut"}, {"text": "net"}, {"text": "financing"}, {"text": "spending"}, {"text": "by"}, {"text": "half"}, {"text": "to"}, {"text": "around"}, {"text": "15"}, {"text": "million"}, {"text": "guilders"}, {"text": "."}, {"text": "Also"}, {"text": ","}, {"text": "substantially"}, {"text": "lower"}, {"text": "Dutch"}, {"text": "corporate"}, {"text": "tax"}, {"text": "rates"}, {"text": "helped"}, {"text": "the"}, {"text": "company"}, {"text": "keep"}, {"text": "its"}, {"text": "tax"}, {"text": "outlay"}, {"text": "flat"}, {"text": "relative"}, {"text": "to"}, {"text": "earnings"}, {"text": "growth"}, {"text": ","}, {"text": "the"}, {"text": "company"}, {"text": "added"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Sales"}, {"text": ","}, {"text": "however"}, {"text": ","}, {"text": "were"}, {"text": "little"}, {"text": "changed"}, {"text": "*-1"}, {"text": "at"}, {"text": "2.46"}, {"text": "billion"}, {"text": "guilders"}, {"text": ","}, {"text": "compared"}, {"text": "with"}, {"text": "2.42"}, {"text": "billion"}, {"text": "guilders"}, {"text": "."}, {"text": "Allergan"}, {"text": "Inc."}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "received"}, {"text": "Food"}, {"text": "and"}, {"text": "Drug"}, {"text": "Administration"}, {"text": "approval"}, {"text": "*"}, {"text": "to"}, {"text": "sell"}, {"text": "the"}, {"text": "PhacoFlex"}, {"text": "intraocular"}, {"text": "lens"}, {"text": ","}, {"text": "the"}, {"text": "first"}, {"text": "foldable"}, {"text": "silicone"}, {"text": "lens"}, {"text": "available"}, {"text": "for"}, {"text": "cataract"}, {"text": "surgery"}, {"text": "."}, {"text": "The"}, {"text": "len"}, {"text": "'s"}, {"text": "foldability"}, {"text": "enables"}, {"text": "it"}, {"text": "to"}, {"text": "be"}, {"text": "inserted"}, {"text": "*-1"}, {"text": "in"}, {"text": "smaller"}, {"text": "incisions"}, {"text": "than"}, {"text": "*"}, {"text": "are"}, {"text": "now"}, {"text": "possible"}, {"text": "for"}, {"text": "cataract"}, {"text": "surgery"}, {"text": ","}, {"text": "the"}, {"text": "eye"}, {"text": "care"}, {"text": "and"}, {"text": "skin"}, {"text": "care"}, {"text": "concern"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-3"}, {"text": "."}, {"text": "Cataracts"}, {"text": "refer"}, {"text": "to"}, {"text": "a"}, {"text": "clouding"}, {"text": "of"}, {"text": "the"}, {"text": "eye"}, {"text": "'s"}, {"text": "natural"}, {"text": "lens"}, {"text": "."}, {"text": "A"}, {"text": "man"}, {"text": "from"}, {"text": "the"}, {"text": "Bush"}, {"text": "administration"}, {"text": "came"}, {"text": "before"}, {"text": "the"}, {"text": "House"}, {"text": "Agriculture"}, {"text": "Committee"}, {"text": "yesterday"}, {"text": "*-1"}, {"text": "to"}, {"text": "talk"}, {"text": "about"}, {"text": "the"}, {"text": "U.S."}, {"text": "'s"}, {"text": "intention"}, {"text": "*"}, {"text": "to"}, {"text": "send"}, {"text": "some"}, {"text": "$"}, {"text": "100"}, {"text": "million"}, {"text": "*U*"}, {"text": "in"}, {"text": "food"}, {"text": "aid"}, {"text": "to"}, {"text": "Poland"}, {"text": ","}, {"text": "with"}, {"text": "more"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "to"}, {"text": "come"}, {"text": "from"}, {"text": "the"}, {"text": "EC"}, {"text": "."}, {"text": "The"}, {"text": "committee"}, {"text": "'s"}, {"text": "members"}, {"text": "are"}, {"text": "worried"}, {"text": "what"}, {"text": "all"}, {"text": "this"}, {"text": "free"}, {"text": "food"}, {"text": "might"}, {"text": "do"}, {"text": "*T*-2"}, {"text": "to"}, {"text": "the"}, {"text": "economic"}, {"text": "prospects"}, {"text": "of"}, {"text": "Poland"}, {"text": "'s"}, {"text": "own"}, {"text": "farmers"}, {"text": "."}, {"text": "Rep."}, {"text": "Gary"}, {"text": "Ackerman"}, {"text": "noted"}, {"text": "that"}, {"text": "past"}, {"text": "food"}, {"text": "aid"}, {"text": "had"}, {"text": "harmed"}, {"text": "farmers"}, {"text": "in"}, {"text": "El"}, {"text": "Salvador"}, {"text": "and"}, {"text": "Egypt"}, {"text": "."}, {"text": "However"}, {"text": "well"}, {"text": "intentioned"}, {"text": ","}, {"text": "food"}, {"text": "transfers"}, {"text": "have"}, {"text": "the"}, {"text": "habit"}, {"text": "of"}, {"text": "*"}, {"text": "growing"}, {"text": "larger"}, {"text": "and"}, {"text": "wrecking"}, {"text": "the"}, {"text": "market"}, {"text": "incentives"}, {"text": "for"}, {"text": "the"}, {"text": "recipient"}, {"text": "country"}, {"text": "'s"}, {"text": "own"}, {"text": "farmers"}, {"text": "."}, {"text": "The"}, {"text": "First"}, {"text": "World"}, {"text": "has"}, {"text": "for"}, {"text": "some"}, {"text": "time"}, {"text": "had"}, {"text": "the"}, {"text": "bad"}, {"text": "habit"}, {"text": "of"}, {"text": "*"}, {"text": "smothering"}, {"text": "other"}, {"text": "people"}, {"text": "'s"}, {"text": "economies"}, {"text": "with"}, {"text": "this"}, {"text": "kind"}, {"text": "of"}, {"text": "unfocused"}, {"text": "kindness"}, {"text": "."}, {"text": "It"}, {"text": "should"}, {"text": "be"}, {"text": "constantly"}, {"text": "stressed"}, {"text": "that"}, {"text": "Poland"}, {"text": "'s"}, {"text": "farmers"}, {"text": "mostly"}, {"text": "need"}, {"text": "a"}, {"text": "real"}, {"text": "market"}, {"text": "for"}, {"text": "their"}, {"text": "products"}, {"text": "."}, {"text": "Elco"}, {"text": "Industries"}, {"text": "Inc."}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "expects"}, {"text": "net"}, {"text": "income"}, {"text": "in"}, {"text": "the"}, {"text": "year"}, {"text": "ending"}, {"text": "June"}, {"text": "30"}, {"text": ","}, {"text": "1990"}, {"text": ","}, {"text": "to"}, {"text": "fall"}, {"text": "below"}, {"text": "a"}, {"text": "recent"}, {"text": "analyst"}, {"text": "'s"}, {"text": "estimate"}, {"text": "of"}, {"text": "$"}, {"text": "1.65"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": "."}, {"text": "The"}, {"text": "Rockford"}, {"text": ","}, {"text": "Ill."}, {"text": ","}, {"text": "maker"}, {"text": "of"}, {"text": "fasteners"}, {"text": "also"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "expects"}, {"text": "*-2"}, {"text": "to"}, {"text": "post"}, {"text": "sales"}, {"text": "in"}, {"text": "the"}, {"text": "current"}, {"text": "fiscal"}, {"text": "year"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "are"}, {"text": "``"}, {"text": "slightly"}, {"text": "above"}, {"text": "''"}, {"text": "fiscal"}, {"text": "1989"}, {"text": "sales"}, {"text": "of"}, {"text": "$"}, {"text": "155"}, {"text": "million"}, {"text": "*U*"}, {"text": "."}, {"text": "The"}, {"text": "company"}, {"text": "said"}, {"text": "0"}, {"text": "its"}, {"text": "industrial"}, {"text": "unit"}, {"text": "continues"}, {"text": "*-1"}, {"text": "to"}, {"text": "face"}, {"text": "margin"}, {"text": "pressures"}, {"text": "and"}, {"text": "lower"}, {"text": "demand"}, {"text": "."}, {"text": "In"}, {"text": "fiscal"}, {"text": "1989"}, {"text": ","}, {"text": "Elco"}, {"text": "earned"}, {"text": "$"}, {"text": "7.8"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "$"}, {"text": "1.65"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": "."}, {"text": "The"}, {"text": "company"}, {"text": "'s"}, {"text": "stock"}, {"text": "fell"}, {"text": "$"}, {"text": "1.125"}, {"text": "*U*"}, {"text": "to"}, {"text": "$"}, {"text": "13.625"}, {"text": "*U*"}, {"text": "in"}, {"text": "over-the-counter"}, {"text": "trading"}, {"text": "yesterday"}, {"text": "."}, {"text": "Oshkosh"}, {"text": "Truck"}, {"text": "Corp."}, {"text": ","}, {"text": "Oshkosh"}, {"text": ","}, {"text": "Wis."}, {"text": ","}, {"text": "estimated"}, {"text": "0"}, {"text": "earnings"}, {"text": "for"}, {"text": "its"}, {"text": "fourth"}, {"text": "quarter"}, {"text": "ended"}, {"text": "Sept."}, {"text": "30"}, {"text": "fell"}, {"text": "50"}, {"text": "%"}, {"text": "to"}, {"text": "75"}, {"text": "%"}, {"text": "below"}, {"text": "the"}, {"text": "year-earlier"}, {"text": "$"}, {"text": "4.5"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "51"}, {"text": "cents"}, {"text": "a"}, {"text": "share"}, {"text": "."}, {"text": "The"}, {"text": "truck"}, {"text": "maker"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "significant"}, {"text": "drop"}, {"text": "in"}, {"text": "net"}, {"text": "income"}, {"text": "will"}, {"text": "result"}, {"text": "in"}, {"text": "lower"}, {"text": "earnings"}, {"text": "for"}, {"text": "the"}, {"text": "fiscal"}, {"text": "year"}, {"text": "."}, {"text": "In"}, {"text": "fiscal"}, {"text": "1988"}, {"text": ","}, {"text": "the"}, {"text": "company"}, {"text": "earned"}, {"text": "$"}, {"text": "17.3"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "$"}, {"text": "1.92"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": ","}, {"text": "on"}, {"text": "revenue"}, {"text": "of"}, {"text": "$"}, {"text": "352.9"}, {"text": "million"}, {"text": "*U*"}, {"text": "."}, {"text": "Oshkosh"}, {"text": "Truck"}, {"text": "attributed"}, {"text": "the"}, {"text": "downturn"}, {"text": "in"}, {"text": "its"}, {"text": "earnings"}, {"text": "to"}, {"text": "higher"}, {"text": "start-up"}, {"text": "costs"}, {"text": "of"}, {"text": "its"}, {"text": "new"}, {"text": "chassis"}, {"text": "division"}, {"text": ","}, {"text": "a"}, {"text": "softer"}, {"text": "motor-home"}, {"text": "market"}, {"text": "and"}, {"text": "higher"}, {"text": "administrative"}, {"text": "costs"}, {"text": "of"}, {"text": "compliance"}, {"text": "with"}, {"text": "government"}, {"text": "contractor"}, {"text": "regulations"}, {"text": "."}, {"text": "The"}, {"text": "company"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "is"}, {"text": "in"}, {"text": "the"}, {"text": "process"}, {"text": "of"}, {"text": "*"}, {"text": "phasing"}, {"text": "out"}, {"text": "John"}, {"text": "Deere"}, {"text": ","}, {"text": "its"}, {"text": "current"}, {"text": "source"}, {"text": "of"}, {"text": "production"}, {"text": "for"}, {"text": "midsized"}, {"text": "motor"}, {"text": "home"}, {"text": "chassis"}, {"text": "."}, {"text": "In"}, {"text": "anticipation"}, {"text": "of"}, {"text": "the"}, {"text": "start-up"}, {"text": "of"}, {"text": "its"}, {"text": "new"}, {"text": "factory"}, {"text": ","}, {"text": "the"}, {"text": "company"}, {"text": "said"}, {"text": "0"}, {"text": "a"}, {"text": "larger-than-normal"}, {"text": "chassis"}, {"text": "supply"}, {"text": "has"}, {"text": "been"}, {"text": "built"}, {"text": "*-1"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "to"}, {"text": "carry"}, {"text": "it"}, {"text": "through"}, {"text": "the"}, {"text": "transition"}, {"text": "period"}, {"text": "."}, {"text": "Tokyo"}, {"text": "stocks"}, {"text": "edged"}, {"text": "up"}, {"text": "Wednesday"}, {"text": "in"}, {"text": "relatively"}, {"text": "active"}, {"text": "but"}, {"text": "unfocused"}, {"text": "trading"}, {"text": "."}, {"text": "London"}, {"text": "shares"}, {"text": "finished"}, {"text": "moderately"}, {"text": "higher"}, {"text": "."}, {"text": "At"}, {"text": "Tokyo"}, {"text": ","}, {"text": "the"}, {"text": "Nikkei"}, {"text": "index"}, {"text": "of"}, {"text": "225"}, {"text": "selected"}, {"text": "issues"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "gained"}, {"text": "132"}, {"text": "points"}, {"text": "Tuesday"}, {"text": ","}, {"text": "added"}, {"text": "14.99"}, {"text": "points"}, {"text": "to"}, {"text": "35564.43"}, {"text": "."}, {"text": "In"}, {"text": "early"}, {"text": "trading"}, {"text": "in"}, {"text": "Tokyo"}, {"text": "Thursday"}, {"text": ","}, {"text": "the"}, {"text": "Nikkei"}, {"text": "index"}, {"text": "fell"}, {"text": "63.79"}, {"text": "points"}, {"text": "to"}, {"text": "35500.64"}, {"text": "."}, {"text": "Wednesday"}, {"text": "'s"}, {"text": "volume"}, {"text": "on"}, {"text": "the"}, {"text": "First"}, {"text": "Section"}, {"text": "was"}, {"text": "estimated"}, {"text": "*-1"}, {"text": "at"}, {"text": "900"}, {"text": "million"}, {"text": "shares"}, {"text": ","}, {"text": "in"}, {"text": "line"}, {"text": "with"}, {"text": "Tuesday"}, {"text": "'s"}, {"text": "909"}, {"text": "million"}, {"text": "."}, {"text": "Declining"}, {"text": "issues"}, {"text": "slightly"}, {"text": "outnumbered"}, {"text": "advancing"}, {"text": "issues"}, {"text": ","}, {"text": "454"}, {"text": "to"}, {"text": "451"}, {"text": "."}, {"text": "Investors"}, {"text": "switched"}, {"text": "trading"}, {"text": "focus"}, {"text": "quickly"}, {"text": "as"}, {"text": "they"}, {"text": "did"}, {"text": "Tuesday"}, {"text": ","}, {"text": "*-1"}, {"text": "reflecting"}, {"text": "uncertainty"}, {"text": "about"}, {"text": "long-term"}, {"text": "commitments"}, {"text": "to"}, {"text": "any"}, {"text": "issue"}, {"text": "or"}, {"text": "sector"}, {"text": ","}, {"text": "traders"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "."}, {"text": "Speculation"}, {"text": ","}, {"text": "on"}, {"text": "the"}, {"text": "other"}, {"text": "hand"}, {"text": ","}, {"text": "sparked"}, {"text": "buying"}, {"text": "in"}, {"text": "certain"}, {"text": "incentive-backed"}, {"text": "issues"}, {"text": ","}, {"text": "though"}, {"text": "rumors"}, {"text": "underlying"}, {"text": "such"}, {"text": "shares"}, {"text": "eventually"}, {"text": "proved"}, {"text": "untrue"}, {"text": "."}, {"text": "The"}, {"text": "development"}, {"text": ","}, {"text": "traders"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": ","}, {"text": "showed"}, {"text": "that"}, {"text": "there"}, {"text": "is"}, {"text": "more"}, {"text": "than"}, {"text": "ample"}, {"text": "liquidity"}, {"text": "available"}, {"text": "for"}, {"text": "investment"}, {"text": "despite"}, {"text": "the"}, {"text": "market"}, {"text": "'s"}, {"text": "recent"}, {"text": "directionless"}, {"text": "trend"}, {"text": "."}, {"text": "Dealers"}, {"text": "led"}, {"text": "the"}, {"text": "market"}, {"text": "Wednesday"}, {"text": "by"}, {"text": "*-1"}, {"text": "actively"}, {"text": "trading"}, {"text": "for"}, {"text": "their"}, {"text": "own"}, {"text": "accounts"}, {"text": ","}, {"text": "observers"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "."}, {"text": "Institutions"}, {"text": "mostly"}, {"text": "remained"}, {"text": "on"}, {"text": "the"}, {"text": "sidelines"}, {"text": "because"}, {"text": "of"}, {"text": "uncertainty"}, {"text": "regarding"}, {"text": "interest"}, {"text": "rates"}, {"text": "and"}, {"text": "the"}, {"text": "dollar"}, {"text": "."}, {"text": "The"}, {"text": "Tokyo"}, {"text": "Stock"}, {"text": "Price"}, {"text": "Index"}, {"text": "-LRB-"}, {"text": "Topix"}, {"text": "-RRB-"}, {"text": "of"}, {"text": "all"}, {"text": "issues"}, {"text": "listed"}, {"text": "*"}, {"text": "in"}, {"text": "the"}, {"text": "First"}, {"text": "Section"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "gained"}, {"text": "16.05"}, {"text": "points"}, {"text": "Tuesday"}, {"text": ","}, {"text": "was"}, {"text": "down"}, {"text": "1.46"}, {"text": "points"}, {"text": ","}, {"text": "or"}, {"text": "0.05"}, {"text": "%"}, {"text": ","}, {"text": "at"}, {"text": "2691.19"}, {"text": "."}, {"text": "The"}, {"text": "Second"}, {"text": "Section"}, {"text": "index"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "added"}, {"text": "6.84"}, {"text": "points"}, {"text": "Tuesday"}, {"text": ","}, {"text": "was"}, {"text": "up"}, {"text": "5.92"}, {"text": "points"}, {"text": ","}, {"text": "or"}, {"text": "0.16"}, {"text": "%"}, {"text": ","}, {"text": "*-2"}, {"text": "to"}, {"text": "close"}, {"text": "at"}, {"text": "3648.82"}, {"text": "."}, {"text": "Volume"}, {"text": "in"}, {"text": "the"}, {"text": "second"}, {"text": "section"}, {"text": "was"}, {"text": "estimated"}, {"text": "*-1"}, {"text": "at"}, {"text": "18"}, {"text": "million"}, {"text": "shares"}, {"text": ","}, {"text": "up"}, {"text": "from"}, {"text": "14"}, {"text": "million"}, {"text": "Tuesday"}, {"text": "."}, {"text": "Akio"}, {"text": "Yamamoto"}, {"text": ","}, {"text": "managing"}, {"text": "director"}, {"text": "of"}, {"text": "Nomura"}, {"text": "Investment"}, {"text": "Trust"}, {"text": "Management"}, {"text": ","}, {"text": "said"}, {"text": "that"}, {"text": "if"}, {"text": "the"}, {"text": "U.S."}, {"text": "federal"}, {"text": "funds"}, {"text": "rate"}, {"text": "declines"}, {"text": "to"}, {"text": "around"}, {"text": "8.5"}, {"text": "%"}, {"text": ","}, {"text": "institutions"}, {"text": "would"}, {"text": "acquire"}, {"text": "a"}, {"text": "clearer"}, {"text": "idea"}, {"text": "regarding"}, {"text": "the"}, {"text": "direction"}, {"text": "of"}, {"text": "the"}, {"text": "market"}, {"text": "and"}, {"text": "thus"}, {"text": "more"}, {"text": "comfortably"}, {"text": "participate"}, {"text": "in"}, {"text": "active"}, {"text": "buying"}, {"text": "."}, {"text": "Tokyu"}, {"text": "Group"}, {"text": ","}, {"text": "Mitsubishi"}, {"text": "Estate"}, {"text": "and"}, {"text": "Bridgestone\\/Firestone"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "advanced"}, {"text": "Tuesday"}, {"text": ","}, {"text": "declined"}, {"text": "on"}, {"text": "profit-taking"}, {"text": "."}, {"text": "Wednesday"}, {"text": "'s"}, {"text": "dominant"}, {"text": "issue"}, {"text": "was"}, {"text": "Yasuda"}, {"text": "Fire"}, {"text": "&"}, {"text": "Marine"}, {"text": "Insurance"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "continued"}, {"text": "*-2"}, {"text": "to"}, {"text": "surge"}, {"text": "on"}, {"text": "rumors"}, {"text": "of"}, {"text": "speculative"}, {"text": "buying"}, {"text": "."}, {"text": "It"}, {"text": "ended"}, {"text": "the"}, {"text": "day"}, {"text": "up"}, {"text": "80"}, {"text": "yen"}, {"text": "-LRB-"}, {"text": "56"}, {"text": "cents"}, {"text": "-RRB-"}, {"text": "to"}, {"text": "1,880"}, {"text": "yen"}, {"text": "-LRB-"}, {"text": "$"}, {"text": "13.15"}, {"text": "*U*"}, {"text": "-RRB-"}, {"text": "."}, {"text": "Due"}, {"text": "to"}, {"text": "continuingly"}, {"text": "high"}, {"text": "gold"}, {"text": "prices"}, {"text": "tied"}, {"text": "*"}, {"text": "to"}, {"text": "uncertainty"}, {"text": "about"}, {"text": "the"}, {"text": "U.S."}, {"text": "currency"}, {"text": ","}, {"text": "investor"}, {"text": "interest"}, {"text": "was"}, {"text": "directed"}, {"text": "*-1"}, {"text": "toward"}, {"text": "oil"}, {"text": "and"}, {"text": "mining"}, {"text": "shares"}, {"text": ","}, {"text": "which"}, {"text": "traders"}, {"text": "called"}, {"text": "*T*-2"}, {"text": "a"}, {"text": "``"}, {"text": "defensive"}, {"text": "''"}, {"text": "action"}, {"text": "frequently"}, {"text": "taken"}, {"text": "*"}, {"text": "when"}, {"text": "the"}, {"text": "dollar"}, {"text": "is"}, {"text": "expected"}, {"text": "*-4"}, {"text": "to"}, {"text": "fall"}, {"text": "*T*-3"}, {"text": "or"}, {"text": "during"}, {"text": "times"}, {"text": "of"}, {"text": "inflation"}, {"text": "."}, {"text": "Teikoku"}, {"text": "Oil"}, {"text": ","}, {"text": "also"}, {"text": "stimulated"}, {"text": "*"}, {"text": "by"}, {"text": "rumors"}, {"text": "of"}, {"text": "speculative"}, {"text": "buying"}, {"text": ","}, {"text": "advanced"}, {"text": "100"}, {"text": "yen"}, {"text": "to"}, {"text": "1,460"}, {"text": "."}, {"text": "Showa"}, {"text": "Shell"}, {"text": "gained"}, {"text": "20"}, {"text": "to"}, {"text": "1,570"}, {"text": "and"}, {"text": "Mitsubishi"}, {"text": "Oil"}, {"text": "rose"}, {"text": "50"}, {"text": "to"}, {"text": "1,500"}, {"text": "."}, {"text": "Sumitomo"}, {"text": "Metal"}, {"text": "Mining"}, {"text": "fell"}, {"text": "five"}, {"text": "yen"}, {"text": "to"}, {"text": "692"}, {"text": "and"}, {"text": "Nippon"}, {"text": "Mining"}, {"text": "added"}, {"text": "15"}, {"text": "to"}, {"text": "960"}, {"text": "."}, {"text": "Among"}, {"text": "other"}, {"text": "winners"}, {"text": "Wednesday"}, {"text": "was"}, {"text": "*T*-2"}, {"text": "Nippon"}, {"text": "Shokubai"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "was"}, {"text": "up"}, {"text": "80"}, {"text": "at"}, {"text": "2,410"}, {"text": "."}, {"text": "Marubeni"}, {"text": "advanced"}, {"text": "11"}, {"text": "to"}, {"text": "890"}, {"text": "."}, {"text": "London"}, {"text": "share"}, {"text": "prices"}, {"text": "were"}, {"text": "bolstered"}, {"text": "*-1"}, {"text": "largely"}, {"text": "by"}, {"text": "continued"}, {"text": "gains"}, {"text": "on"}, {"text": "Wall"}, {"text": "Street"}, {"text": "and"}, {"text": "technical"}, {"text": "factors"}, {"text": "affecting"}, {"text": "demand"}, {"text": "for"}, {"text": "London"}, {"text": "'s"}, {"text": "blue-chip"}, {"text": "stocks"}, {"text": "."}, {"text": "The"}, {"text": "Financial"}, {"text": "Times-Stock"}, {"text": "Exchange"}, {"text": "100-share"}, {"text": "index"}, {"text": "closed"}, {"text": "17.5"}, {"text": "points"}, {"text": "higher"}, {"text": "at"}, {"text": "2160.1"}, {"text": "."}, {"text": "It"}, {"text": "rose"}, {"text": "largely"}, {"text": "throughout"}, {"text": "the"}, {"text": "session"}, {"text": "after"}, {"text": "*-1"}, {"text": "posting"}, {"text": "an"}, {"text": "intraday"}, {"text": "low"}, {"text": "of"}, {"text": "2141.7"}, {"text": "in"}, {"text": "the"}, {"text": "first"}, {"text": "40"}, {"text": "minutes"}, {"text": "of"}, {"text": "trading"}, {"text": "."}, {"text": "The"}, {"text": "index"}, {"text": "ended"}, {"text": "the"}, {"text": "day"}, {"text": "near"}, {"text": "its"}, {"text": "session"}, {"text": "high"}, {"text": "of"}, {"text": "2163.2"}, {"text": ","}, {"text": "which"}, {"text": "*T*-2"}, {"text": "was"}, {"text": "posted"}, {"text": "*-1"}, {"text": "within"}, {"text": "the"}, {"text": "last"}, {"text": "half-hour"}, {"text": "of"}, {"text": "trading"}, {"text": "."}, {"text": "Dealers"}, {"text": "said"}, {"text": "0"}, {"text": "most"}, {"text": "investor"}, {"text": "interest"}, {"text": "was"}, {"text": "focused"}, {"text": "*-1"}, {"text": "on"}, {"text": "defensive"}, {"text": "blue-chip"}, {"text": "stocks"}, {"text": ","}, {"text": "particularly"}, {"text": "those"}, {"text": "with"}, {"text": "limited"}, {"text": "U.K."}, {"text": "exposure"}, {"text": "."}, {"text": "Also"}, {"text": ","}, {"text": "several"}, {"text": "key"}, {"text": "blue"}, {"text": "chips"}, {"text": "were"}, {"text": "pushed"}, {"text": "higher"}, {"text": "in"}, {"text": "thin"}, {"text": "volume"}, {"text": "because"}, {"text": "of"}, {"text": "a"}, {"text": "technical"}, {"text": "squeeze"}, {"text": "among"}, {"text": "market"}, {"text": "makers"}, {"text": "."}, {"text": "Sterling"}, {"text": "'s"}, {"text": "firm"}, {"text": "tone"}, {"text": ","}, {"text": "combined"}, {"text": "with"}, {"text": "a"}, {"text": "steady"}, {"text": "opening"}, {"text": "on"}, {"text": "Wall"}, {"text": "Street"}, {"text": ","}, {"text": "also"}, {"text": "tempted"}, {"text": "some"}, {"text": "investors"}, {"text": "to"}, {"text": "come"}, {"text": "back"}, {"text": "to"}, {"text": "the"}, {"text": "market"}, {"text": ","}, {"text": "dealers"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "There"}, {"text": "were"}, {"text": "concerns"}, {"text": "*ICH*-1"}, {"text": "early"}, {"text": "in"}, {"text": "the"}, {"text": "day"}, {"text": "that"}, {"text": "Wall"}, {"text": "Street"}, {"text": "'s"}, {"text": "sharp"}, {"text": "gains"}, {"text": "on"}, {"text": "Tuesday"}, {"text": "were"}, {"text": "overdone"}, {"text": "and"}, {"text": "due"}, {"text": "for"}, {"text": "a"}, {"text": "reversal"}, {"text": "."}, {"text": "The"}, {"text": "FT"}, {"text": "30-share"}, {"text": "index"}, {"text": "settled"}, {"text": "16.7"}, {"text": "points"}, {"text": "higher"}, {"text": "at"}, {"text": "1738.1"}, {"text": "."}, {"text": "Volume"}, {"text": "was"}, {"text": "372.9"}, {"text": "million"}, {"text": "shares"}, {"text": ","}, {"text": "up"}, {"text": "from"}, {"text": "334.5"}, {"text": "million"}, {"text": "on"}, {"text": "Tuesday"}, {"text": "."}, {"text": "Dealers"}, {"text": "said"}, {"text": "0"}, {"text": "institutions"}, {"text": "were"}, {"text": "still"}, {"text": "largely"}, {"text": "hugging"}, {"text": "the"}, {"text": "sidelines"}, {"text": "on"}, {"text": "fears"}, {"text": "that"}, {"text": "the"}, {"text": "market"}, {"text": "'s"}, {"text": "recent"}, {"text": "technical"}, {"text": "rally"}, {"text": "might"}, {"text": "prove"}, {"text": "fragile"}, {"text": "."}, {"text": "They"}, {"text": "cited"}, {"text": "Wall"}, {"text": "Street"}, {"text": "'s"}, {"text": "recent"}, {"text": "volatility"}, {"text": "and"}, {"text": "the"}, {"text": "lack"}, {"text": "of"}, {"text": "a"}, {"text": "clear"}, {"text": "indication"}, {"text": "over"}, {"text": "the"}, {"text": "market"}, {"text": "'s"}, {"text": "short-term"}, {"text": "direction"}, {"text": "as"}, {"text": "factors"}, {"text": "in"}, {"text": "the"}, {"text": "institutional"}, {"text": "caution"}, {"text": "."}, {"text": "Jaguar"}, {"text": ","}, {"text": "a"}, {"text": "U.K."}, {"text": "luxury"}, {"text": "auto"}, {"text": "maker"}, {"text": "being"}, {"text": "pursued"}, {"text": "*"}, {"text": "by"}, {"text": "Ford"}, {"text": "Motor"}, {"text": "and"}, {"text": "General"}, {"text": "Motors"}, {"text": ","}, {"text": "gained"}, {"text": "10"}, {"text": "pence"}, {"text": "-LRB-"}, {"text": "16"}, {"text": "cents"}, {"text": "-RRB-"}, {"text": "a"}, {"text": "share"}, {"text": "*-1"}, {"text": "to"}, {"text": "close"}, {"text": "at"}, {"text": "879"}, {"text": "pence"}, {"text": "-LRB-"}, {"text": "$"}, {"text": "13.90"}, {"text": "*U*"}, {"text": "-RRB-"}, {"text": "."}, {"text": "It"}, {"text": "shed"}, {"text": "about"}, {"text": "7"}, {"text": "pence"}, {"text": ","}, {"text": "however"}, {"text": ","}, {"text": "after"}, {"text": "dealers"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "market"}, {"text": "was"}, {"text": "disappointed"}, {"text": "that"}, {"text": "Ford"}, {"text": "did"}, {"text": "n't"}, {"text": "move"}, {"text": "*-1"}, {"text": "to"}, {"text": "tender"}, {"text": "a"}, {"text": "bid"}, {"text": "for"}, {"text": "control"}, {"text": "of"}, {"text": "the"}, {"text": "company"}, {"text": "."}, {"text": "Dealers"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "U.K."}, {"text": "government"}, {"text": "'s"}, {"text": "decision"}, {"text": "*ICH*-1"}, {"text": "Tuesday"}, {"text": "*"}, {"text": "to"}, {"text": "waive"}, {"text": "its"}, {"text": "protective"}, {"text": "``"}, {"text": "golden"}, {"text": "share"}, {"text": "''"}, {"text": "in"}, {"text": "the"}, {"text": "auto"}, {"text": "maker"}, {"text": "raised"}, {"text": "prospects"}, {"text": "of"}, {"text": "a"}, {"text": "bidding"}, {"text": "war"}, {"text": "between"}, {"text": "the"}, {"text": "two"}, {"text": "U.S."}, {"text": "auto"}, {"text": "giants"}, {"text": "."}, {"text": "But"}, {"text": "the"}, {"text": "waiver"}, {"text": "also"}, {"text": "was"}, {"text": "seen"}, {"text": "*-1"}, {"text": "as"}, {"text": "a"}, {"text": "signal"}, {"text": "that"}, {"text": "Ford"}, {"text": ","}, {"text": "a"}, {"text": "major"}, {"text": "U.K."}, {"text": "auto"}, {"text": "industry"}, {"text": "employer"}, {"text": ","}, {"text": "was"}, {"text": "able"}, {"text": "*-2"}, {"text": "to"}, {"text": "gain"}, {"text": "government"}, {"text": "acceptance"}, {"text": "of"}, {"text": "its"}, {"text": "bid"}, {"text": "for"}, {"text": "control"}, {"text": "of"}, {"text": "Jaguar"}, {"text": "."}, {"text": "Dealers"}, {"text": "said"}, {"text": "0"}, {"text": "that"}, {"text": "interpretation"}, {"text": "sparked"}, {"text": "expectations"}, {"text": "of"}, {"text": "an"}, {"text": "imminent"}, {"text": "bid"}, {"text": "by"}, {"text": "Ford"}, {"text": "."}, {"text": "B.A.T"}, {"text": "Industries"}, {"text": ","}, {"text": "which"}, {"text": "*T*-2"}, {"text": "is"}, {"text": "being"}, {"text": "pursued"}, {"text": "*-1"}, {"text": "by"}, {"text": "Sir"}, {"text": "James"}, {"text": "Goldsmith"}, {"text": "'s"}, {"text": "Hoylake"}, {"text": "Investments"}, {"text": ","}, {"text": "rose"}, {"text": "9"}, {"text": "to"}, {"text": "753"}, {"text": "on"}, {"text": "speculation"}, {"text": "that"}, {"text": "Hoylake"}, {"text": "will"}, {"text": "sweeten"}, {"text": "its"}, {"text": "bid"}, {"text": ","}, {"text": "dealers"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-3"}, {"text": "."}, {"text": "Like"}, {"text": "Jaguar"}, {"text": ","}, {"text": "B.A.T"}, {"text": "also"}, {"text": "eased"}, {"text": "off"}, {"text": "its"}, {"text": "highs"}, {"text": "in"}, {"text": "afternoon"}, {"text": "dealings"}, {"text": "."}, {"text": "Reed"}, {"text": "International"}, {"text": ","}, {"text": "a"}, {"text": "U.K."}, {"text": "publishing"}, {"text": "group"}, {"text": ","}, {"text": "gained"}, {"text": "15"}, {"text": "to"}, {"text": "397"}, {"text": "despite"}, {"text": "*"}, {"text": "reporting"}, {"text": "a"}, {"text": "3.7"}, {"text": "%"}, {"text": "drop"}, {"text": "in"}, {"text": "interim"}, {"text": "pretax"}, {"text": "profit"}, {"text": "."}, {"text": "Analysts"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "fall"}, {"text": "in"}, {"text": "pretax"}, {"text": "profit"}, {"text": "was"}, {"text": "due"}, {"text": "to"}, {"text": "the"}, {"text": "group"}, {"text": "'s"}, {"text": "recent"}, {"text": "restructuring"}, {"text": "and"}, {"text": "sale"}, {"text": "of"}, {"text": "peripheral"}, {"text": "units"}, {"text": ","}, {"text": "and"}, {"text": "that"}, {"text": "its"}, {"text": "remaining"}, {"text": "businesses"}, {"text": "are"}, {"text": "performing"}, {"text": "well"}, {"text": "."}, {"text": "Dealers"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "market"}, {"text": "agreed"}, {"text": "."}, {"text": "Stocks"}, {"text": "boosted"}, {"text": "*"}, {"text": "by"}, {"text": "market-makers"}, {"text": "shopping"}, {"text": "*"}, {"text": "to"}, {"text": "cover"}, {"text": "book"}, {"text": "requirements"}, {"text": "in"}, {"text": "FT-SE"}, {"text": "100"}, {"text": "shares"}, {"text": "included"}, {"text": "Carlton"}, {"text": "Communications"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "climbed"}, {"text": "32"}, {"text": "to"}, {"text": "778"}, {"text": "."}, {"text": "Drug"}, {"text": "companies"}, {"text": "in"}, {"text": "the"}, {"text": "key"}, {"text": "index"}, {"text": "also"}, {"text": "notched"}, {"text": "gains"}, {"text": "as"}, {"text": "market-makers"}, {"text": "searched"}, {"text": "for"}, {"text": "stock"}, {"text": "in"}, {"text": "anticipation"}, {"text": "of"}, {"text": "demand"}, {"text": "due"}, {"text": "to"}, {"text": "the"}, {"text": "sector"}, {"text": "'s"}, {"text": "defensive"}, {"text": "qualities"}, {"text": "."}, {"text": "Wellcome"}, {"text": "gained"}, {"text": "18"}, {"text": "to"}, {"text": "666"}, {"text": "on"}, {"text": "a"}, {"text": "modest"}, {"text": "1.1"}, {"text": "million"}, {"text": "shares"}, {"text": "."}, {"text": "Glaxo"}, {"text": ","}, {"text": "the"}, {"text": "U.K."}, {"text": "'s"}, {"text": "largest"}, {"text": "pharmaceutical"}, {"text": "concern"}, {"text": ","}, {"text": "advanced"}, {"text": "23"}, {"text": "to"}, {"text": "#"}, {"text": "14.13"}, {"text": "*U*"}, {"text": "."}, {"text": "Stock"}, {"text": "prices"}, {"text": "closed"}, {"text": "higher"}, {"text": "in"}, {"text": "Stockholm"}, {"text": ","}, {"text": "Amsterdam"}, {"text": "and"}, {"text": "Frankfurt"}, {"text": "and"}, {"text": "lower"}, {"text": "in"}, {"text": "Zurich"}, {"text": "."}, {"text": "Paris"}, {"text": ","}, {"text": "Brussels"}, {"text": ","}, {"text": "and"}, {"text": "Milan"}, {"text": "were"}, {"text": "closed"}, {"text": "for"}, {"text": "a"}, {"text": "holiday"}, {"text": "."}, {"text": "South"}, {"text": "African"}, {"text": "gold"}, {"text": "stocks"}, {"text": "closed"}, {"text": "marginally"}, {"text": "lower"}, {"text": "."}, {"text": "Elsewhere"}, {"text": ","}, {"text": "share"}, {"text": "prices"}, {"text": "closed"}, {"text": "higher"}, {"text": "in"}, {"text": "Singapore"}, {"text": ","}, {"text": "Taipei"}, {"text": "and"}, {"text": "Wellington"}, {"text": ","}, {"text": "were"}, {"text": "mixed"}, {"text": "in"}, {"text": "Hong"}, {"text": "Kong"}, {"text": ","}, {"text": "lower"}, {"text": "in"}, {"text": "Seoul"}, {"text": "and"}, {"text": "little"}, {"text": "changed"}, {"text": "in"}, {"text": "Sydney"}, {"text": "."}, {"text": "Manila"}, {"text": "markets"}, {"text": "were"}, {"text": "closed"}, {"text": "for"}, {"text": "a"}, {"text": "holiday"}, {"text": "."}, {"text": "Here"}, {"text": "are"}, {"text": "*T*-1"}, {"text": "price"}, {"text": "trends"}, {"text": "on"}, {"text": "the"}, {"text": "world"}, {"text": "'s"}, {"text": "major"}, {"text": "stock"}, {"text": "markets"}, {"text": ","}, {"text": "as"}, {"text": "*"}, {"text": "calculated"}, {"text": "*-2"}, {"text": "by"}, {"text": "Morgan"}, {"text": "Stanley"}, {"text": "Capital"}, {"text": "International"}, {"text": "Perspective"}, {"text": ","}, {"text": "Geneva"}, {"text": "."}, {"text": "*"}, {"text": "To"}, {"text": "make"}, {"text": "them"}, {"text": "directly"}, {"text": "comparable"}, {"text": ","}, {"text": "each"}, {"text": "index"}, {"text": "is"}, {"text": "based"}, {"text": "*-1"}, {"text": "on"}, {"text": "the"}, {"text": "close"}, {"text": "of"}, {"text": "1969"}, {"text": "equaling"}, {"text": "100"}, {"text": "."}, {"text": "The"}, {"text": "percentage"}, {"text": "change"}, {"text": "is"}, {"text": "since"}, {"text": "year-end"}, {"text": "."}, {"text": "The"}, {"text": "following"}, {"text": "issues"}, {"text": "were"}, {"text": "recently"}, {"text": "filed"}, {"text": "*-1"}, {"text": "with"}, {"text": "the"}, {"text": "Securities"}, {"text": "and"}, {"text": "Exchange"}, {"text": "Commission"}, {"text": ":"}, {"text": "Intermec"}, {"text": "Corp."}, {"text": ","}, {"text": "offering"}, {"text": "of"}, {"text": "1,050,000"}, {"text": "common"}, {"text": "shares"}, {"text": ","}, {"text": "via"}, {"text": "Goldman"}, {"text": ","}, {"text": "Sachs"}, {"text": "&"}, {"text": "Co."}, {"text": "and"}, {"text": "Piper"}, {"text": ","}, {"text": "Jaffray"}, {"text": "&"}, {"text": "Hopwood"}, {"text": "Inc"}, {"text": "."}, {"text": "Middlesex"}, {"text": "Water"}, {"text": "Co."}, {"text": ","}, {"text": "offering"}, {"text": "of"}, {"text": "150,000"}, {"text": "shares"}, {"text": "of"}, {"text": "common"}, {"text": "stock"}, {"text": ","}, {"text": "via"}, {"text": "Legg"}, {"text": "Mason"}, {"text": "Wood"}, {"text": "Walker"}, {"text": "Inc."}, {"text": "and"}, {"text": "Howard"}, {"text": ","}, {"text": "Weil"}, {"text": ","}, {"text": "Labouisse"}, {"text": ","}, {"text": "Friedrichs"}, {"text": "Inc"}, {"text": "."}, {"text": "Midwesco"}, {"text": "Filter"}, {"text": "Resources"}, {"text": "Inc."}, {"text": ","}, {"text": "initial"}, {"text": "offering"}, {"text": "of"}, {"text": "830,000"}, {"text": "common"}, {"text": "shares"}, {"text": "*PPA*-3"}, {"text": ","}, {"text": "0"}, {"text": "*T*-2"}, {"text": "to"}, {"text": "be"}, {"text": "offered"}, {"text": "*-1"}, {"text": "by"}, {"text": "the"}, {"text": "company"}, {"text": ","}, {"text": "via"}, {"text": "Chicago"}, {"text": "Corp"}, {"text": "."}, {"text": "Nylev"}, {"text": "Municipal"}, {"text": "Fund"}, {"text": "Inc."}, {"text": ","}, {"text": "offering"}, {"text": "of"}, {"text": "five"}, {"text": "million"}, {"text": "common"}, {"text": "shares"}, {"text": "."}, {"text": "Occidental"}, {"text": "Petroleum"}, {"text": "Corp."}, {"text": ","}, {"text": "shelf"}, {"text": "offering"}, {"text": "of"}, {"text": "$"}, {"text": "1.5"}, {"text": "billion"}, {"text": "*U*"}, {"text": "in"}, {"text": "senior"}, {"text": "debt"}, {"text": "securities"}, {"text": "."}, {"text": "Prime"}, {"text": "Motor"}, {"text": "Inns"}, {"text": "Inc."}, {"text": ","}, {"text": "offering"}, {"text": "of"}, {"text": "up"}, {"text": "to"}, {"text": "$"}, {"text": "300"}, {"text": "million"}, {"text": "*U*"}, {"text": "zero"}, {"text": "coupon"}, {"text": "convertible"}, {"text": "debentures"}, {"text": ","}, {"text": "via"}, {"text": "Drexel"}, {"text": "Burnham"}, {"text": "Lambert"}, {"text": "Inc."}, {"text": "and"}, {"text": "Montgomery"}, {"text": "Securities"}, {"text": "."}, {"text": "Service"}, {"text": "Fracturing"}, {"text": "Co."}, {"text": ","}, {"text": "proposed"}, {"text": "offering"}, {"text": "of"}, {"text": "1.2"}, {"text": "million"}, {"text": "shares"}, {"text": "of"}, {"text": "common"}, {"text": "stock"}, {"text": ","}, {"text": "via"}, {"text": "Lovett"}, {"text": "Mitchell"}, {"text": "Webb"}, {"text": "&"}, {"text": "Garrison"}, {"text": ","}, {"text": "Inc."}, {"text": ","}, {"text": "and"}, {"text": "Blunt"}, {"text": "Ellis"}, {"text": "&"}, {"text": "Loewi"}, {"text": "Inc"}, {"text": "."}, {"text": "Western"}, {"text": "Gas"}, {"text": "Resources"}, {"text": "Inc."}, {"text": ","}, {"text": "initial"}, {"text": "offering"}, {"text": "of"}, {"text": "3,250,000"}, {"text": "shares"}, {"text": "of"}, {"text": "common"}, {"text": "stock"}, {"text": ","}, {"text": "of"}, {"text": "which"}, {"text": "3,040,000"}, {"text": "shares"}, {"text": "*T*-2"}, {"text": "will"}, {"text": "be"}, {"text": "sold"}, {"text": "*-1"}, {"text": "by"}, {"text": "the"}, {"text": "company"}, {"text": "and"}, {"text": "210,000"}, {"text": "shares"}, {"text": "*T*-2"}, {"text": "by"}, {"text": "a"}, {"text": "holder"}, {"text": ","}, {"text": "via"}, {"text": "Prudential-Bache"}, {"text": "Capital"}, {"text": "Funding"}, {"text": ","}, {"text": "Smith"}, {"text": "Barney"}, {"text": ","}, {"text": "Harris"}, {"text": "Upham"}, {"text": "&"}, {"text": "Co."}, {"text": ","}, {"text": "and"}, {"text": "Hanifen"}, {"text": ","}, {"text": "Imhoff"}, {"text": "Inc"}, {"text": "."}, {"text": "*"}, {"text": "Hold"}, {"text": "the"}, {"text": "Putty"}, {"text": "!"}, {"text": "With"}, {"text": "lipsticks"}, {"text": ","}, {"text": "liners"}, {"text": ","}, {"text": "lotions"}, {"text": "and"}, {"text": "creams"}, {"text": ","}, {"text": "There"}, {"text": "are"}, {"text": "still"}, {"text": "beauty"}, {"text": "plans"}, {"text": "left"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "tackle"}, {"text": "*T*-1"}, {"text": ":"}, {"text": "But"}, {"text": "as"}, {"text": "the"}, {"text": "years"}, {"text": "go"}, {"text": "by"}, {"text": ","}, {"text": "it"}, {"text": "seems"}, {"text": "That"}, {"text": "before"}, {"text": "I"}, {"text": "paint"}, {"text": ","}, {"text": "I"}, {"text": "should"}, {"text": "spackle"}, {"text": "."}, {"text": "--"}, {"text": "Pat"}, {"text": "D'Amico"}, {"text": "."}, {"text": "Criminal"}, {"text": "charges"}, {"text": "*ICH*-2"}, {"text": "were"}, {"text": "filed"}, {"text": "*-1"}, {"text": "against"}, {"text": "Diceon"}, {"text": "Electronics"}, {"text": "Inc."}, {"text": "and"}, {"text": "two"}, {"text": "company"}, {"text": "officials"}, {"text": "alleging"}, {"text": "waste"}, {"text": "disposal"}, {"text": "violations"}, {"text": "in"}, {"text": "its"}, {"text": "Chatsworth"}, {"text": ","}, {"text": "Calif."}, {"text": ","}, {"text": "facility"}, {"text": "."}, {"text": "The"}, {"text": "Los"}, {"text": "Angeles"}, {"text": "County"}, {"text": "district"}, {"text": "attorney"}, {"text": "'s"}, {"text": "office"}, {"text": "filed"}, {"text": "seven"}, {"text": "felony"}, {"text": "and"}, {"text": "five"}, {"text": "misdemeanor"}, {"text": "counts"}, {"text": "charging"}, {"text": "that"}, {"text": "late"}, {"text": "last"}, {"text": "year"}, {"text": "and"}, {"text": "early"}, {"text": "this"}, {"text": "year"}, {"text": "the"}, {"text": "Irvine"}, {"text": ","}, {"text": "Calif.-based"}, {"text": "circuit-board"}, {"text": "manufacturer"}, {"text": "illegally"}, {"text": "disposed"}, {"text": "of"}, {"text": "acid"}, {"text": ","}, {"text": "caustic"}, {"text": "and"}, {"text": "heavy"}, {"text": "metals"}, {"text": "into"}, {"text": "the"}, {"text": "sewer"}, {"text": "system"}, {"text": ","}, {"text": "and"}, {"text": "stored"}, {"text": "hazardous"}, {"text": "materials"}, {"text": "in"}, {"text": "leaky"}, {"text": ","}, {"text": "unlabeled"}, {"text": "or"}, {"text": "open-top"}, {"text": "containers"}, {"text": "."}, {"text": "Named"}, {"text": "*-2"}, {"text": "as"}, {"text": "defendants"}, {"text": "were"}, {"text": "*T*-1"}, {"text": "Roland"}, {"text": "Matthews"}, {"text": ","}, {"text": "president"}, {"text": ","}, {"text": "and"}, {"text": "Peter"}, {"text": "Jonas"}, {"text": ","}, {"text": "executive"}, {"text": "vice"}, {"text": "president"}, {"text": "and"}, {"text": "chief"}, {"text": "financial"}, {"text": "officer"}, {"text": ","}, {"text": "as"}, {"text": "well"}, {"text": "as"}, {"text": "a"}, {"text": "former"}, {"text": "plant"}, {"text": "manager"}, {"text": "."}, {"text": "The"}, {"text": "company"}, {"text": "said"}, {"text": "0"}, {"text": "local"}, {"text": "authorities"}, {"text": "held"}, {"text": "hearings"}, {"text": "on"}, {"text": "the"}, {"text": "allegations"}, {"text": "last"}, {"text": "spring"}, {"text": "and"}, {"text": "had"}, {"text": "returned"}, {"text": "the"}, {"text": "plant"}, {"text": "to"}, {"text": "``"}, {"text": "routine"}, {"text": "inspection"}, {"text": "''"}, {"text": "in"}, {"text": "August"}, {"text": "."}, {"text": "``"}, {"text": "The"}, {"text": "company"}, {"text": "does"}, {"text": "not"}, {"text": "feel"}, {"text": "that"}, {"text": "it"}, {"text": "or"}, {"text": "any"}, {"text": "of"}, {"text": "the"}, {"text": "individuals"}, {"text": "violated"}, {"text": "any"}, {"text": "criminal"}, {"text": "statute"}, {"text": "and"}, {"text": "the"}, {"text": "company"}, {"text": "expects"}, {"text": "full"}, {"text": "vindication"}, {"text": "in"}, {"text": "court"}, {"text": "."}, {"text": "''"}, {"text": "Arraignments"}, {"text": "are"}, {"text": "scheduled"}, {"text": "*-1"}, {"text": "for"}, {"text": "Nov."}, {"text": "14"}, {"text": "."}, {"text": "Consumer"}, {"text": "confidence"}, {"text": "stayed"}, {"text": "strong"}, {"text": "in"}, {"text": "October"}, {"text": ","}, {"text": "despite"}, {"text": "the"}, {"text": "unsettling"}, {"text": "gyrations"}, {"text": "of"}, {"text": "the"}, {"text": "stock"}, {"text": "market"}, {"text": "."}, {"text": "``"}, {"text": "The"}, {"text": "sharp"}, {"text": "stock"}, {"text": "market"}, {"text": "decline"}, {"text": "in"}, {"text": "late"}, {"text": "October"}, {"text": "appears"}, {"text": "*-1"}, {"text": "to"}, {"text": "have"}, {"text": "had"}, {"text": "little"}, {"text": "or"}, {"text": "no"}, {"text": "effect"}, {"text": "on"}, {"text": "consumers"}, {"text": ","}, {"text": "''"}, {"text": "said"}, {"text": "*T*-2"}, {"text": "Fabian"}, {"text": "Linden"}, {"text": ","}, {"text": "executive"}, {"text": "director"}, {"text": "of"}, {"text": "the"}, {"text": "Conference"}, {"text": "Board"}, {"text": "'s"}, {"text": "consumer"}, {"text": "research"}, {"text": "center"}, {"text": "."}, {"text": "``"}, {"text": "Survey"}, {"text": "returns"}, {"text": "received"}, {"text": "*"}, {"text": "after"}, {"text": "the"}, {"text": "drop"}, {"text": "in"}, {"text": "the"}, {"text": "Dow"}, {"text": "Jones"}, {"text": "average"}, {"text": "were"}, {"text": "about"}, {"text": "the"}, {"text": "same"}, {"text": "as"}, {"text": "the"}, {"text": "views"}, {"text": "expressed"}, {"text": "prior"}, {"text": "to"}, {"text": "that"}, {"text": "event"}, {"text": "."}, {"text": "''"}, {"text": "The"}, {"text": "nonprofit"}, {"text": ","}, {"text": "industry-supported"}, {"text": "group"}, {"text": "said"}, {"text": "0"}, {"text": "its"}, {"text": "Consumer"}, {"text": "Confidence"}, {"text": "Index"}, {"text": "was"}, {"text": "116.4"}, {"text": "in"}, {"text": "October"}, {"text": ","}, {"text": "*-1"}, {"text": "barely"}, {"text": "changed"}, {"text": "*-2"}, {"text": "from"}, {"text": "a"}, {"text": "revised"}, {"text": "116.3"}, {"text": "in"}, {"text": "September"}, {"text": "."}, {"text": "The"}, {"text": "index"}, {"text": "was"}, {"text": "116.9"}, {"text": "in"}, {"text": "October"}, {"text": "1988"}, {"text": "and"}, {"text": "in"}, {"text": "the"}, {"text": "past"}, {"text": "year"}, {"text": "has"}, {"text": "ranged"}, {"text": "from"}, {"text": "a"}, {"text": "low"}, {"text": "of"}, {"text": "112.9"}, {"text": "to"}, {"text": "a"}, {"text": "high"}, {"text": "of"}, {"text": "120.7"}, {"text": "."}, {"text": "It"}, {"text": "uses"}, {"text": "a"}, {"text": "base"}, {"text": "of"}, {"text": "100"}, {"text": "in"}, {"text": "1985"}, {"text": "."}, {"text": "In"}, {"text": "October"}, {"text": ","}, {"text": "more"}, {"text": "people"}, {"text": "*ICH*-1"}, {"text": "said"}, {"text": "that"}, {"text": "present"}, {"text": "business"}, {"text": "conditions"}, {"text": "were"}, {"text": "``"}, {"text": "good"}, {"text": "''"}, {"text": "than"}, {"text": "in"}, {"text": "September"}, {"text": "."}, {"text": "An"}, {"text": "equal"}, {"text": "number"}, {"text": "in"}, {"text": "each"}, {"text": "month"}, {"text": "said"}, {"text": "that"}, {"text": "employment"}, {"text": "conditions"}, {"text": "were"}, {"text": "good"}, {"text": "."}, {"text": "And"}, {"text": "19.6"}, {"text": "%"}, {"text": "of"}, {"text": "consumers"}, {"text": "contacted"}, {"text": "*"}, {"text": "believed"}, {"text": "0"}, {"text": "business"}, {"text": "conditions"}, {"text": "will"}, {"text": "improve"}, {"text": "in"}, {"text": "the"}, {"text": "coming"}, {"text": "six"}, {"text": "months"}, {"text": ","}, {"text": "compared"}, {"text": "with"}, {"text": "18.3"}, {"text": "%"}, {"text": "in"}, {"text": "September"}, {"text": "."}, {"text": "Also"}, {"text": ","}, {"text": "more"}, {"text": "people"}, {"text": "said"}, {"text": "0"}, {"text": "conditions"}, {"text": "will"}, {"text": "worsen"}, {"text": "in"}, {"text": "the"}, {"text": "period"}, {"text": "."}, {"text": "-LRB-"}, {"text": "Fewer"}, {"text": "said"}, {"text": "0"}, {"text": "conditions"}, {"text": "wo"}, {"text": "n't"}, {"text": "change"}, {"text": "."}, {"text": "-RRB-"}, {"text": "In"}, {"text": "October"}, {"text": "1988"}, {"text": ","}, {"text": "21.1"}, {"text": "%"}, {"text": "said"}, {"text": "0"}, {"text": "business"}, {"text": "conditions"}, {"text": "would"}, {"text": "improve"}, {"text": "."}, {"text": "In"}, {"text": "October"}, {"text": "1989"}, {"text": ","}, {"text": "16.9"}, {"text": "%"}, {"text": "said"}, {"text": "0"}, {"text": "more"}, {"text": "jobs"}, {"text": "will"}, {"text": "be"}, {"text": "created"}, {"text": "*-1"}, {"text": "in"}, {"text": "the"}, {"text": "coming"}, {"text": "six"}, {"text": "months"}, {"text": ","}, {"text": "compared"}, {"text": "with"}, {"text": "17.4"}, {"text": "%"}, {"text": "in"}, {"text": "September"}, {"text": "and"}, {"text": "18.6"}, {"text": "%"}, {"text": "in"}, {"text": "October"}, {"text": "1988"}, {"text": "."}, {"text": "Only"}, {"text": "26.8"}, {"text": "%"}, {"text": "in"}, {"text": "October"}, {"text": ","}, {"text": "compared"}, {"text": "with"}, {"text": "28.5"}, {"text": "%"}, {"text": "in"}, {"text": "September"}, {"text": "and"}, {"text": "26.8"}, {"text": "%"}, {"text": "in"}, {"text": "October"}, {"text": "1988"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "income"}, {"text": "would"}, {"text": "increase"}, {"text": "."}, {"text": "``"}, {"text": "The"}, {"text": "sustained"}, {"text": "level"}, {"text": "of"}, {"text": "confidence"}, {"text": "can"}, {"text": "be"}, {"text": "attributed"}, {"text": "*-3"}, {"text": "to"}, {"text": "the"}, {"text": "continued"}, {"text": "favorable"}, {"text": "circumstances"}, {"text": "which"}, {"text": "*T*-1"}, {"text": "affect"}, {"text": "the"}, {"text": "consumer"}, {"text": "'s"}, {"text": "day-to-day"}, {"text": "economic"}, {"text": "life"}, {"text": ","}, {"text": "''"}, {"text": "said"}, {"text": "*T*-2"}, {"text": "Mr."}, {"text": "Linden"}, {"text": "."}, {"text": "``"}, {"text": "Unemployment"}, {"text": "continues"}, {"text": "at"}, {"text": "a"}, {"text": "relatively"}, {"text": "low"}, {"text": "level"}, {"text": ","}, {"text": "*"}, {"text": "providing"}, {"text": "a"}, {"text": "sense"}, {"text": "of"}, {"text": "job"}, {"text": "security"}, {"text": ","}, {"text": "and"}, {"text": "a"}, {"text": "low"}, {"text": "inflation"}, {"text": "rate"}, {"text": "has"}, {"text": "kept"}, {"text": "the"}, {"text": "purchasing"}, {"text": "power"}, {"text": "of"}, {"text": "the"}, {"text": "weekly"}, {"text": "paycheck"}, {"text": "reasonably"}, {"text": "strong"}, {"text": "."}, {"text": "''"}, {"text": "The"}, {"text": "consumer"}, {"text": "confidence"}, {"text": "survey"}, {"text": ","}, {"text": "*-2"}, {"text": "covering"}, {"text": "5,000"}, {"text": "U.S."}, {"text": "households"}, {"text": ","}, {"text": "is"}, {"text": "conducted"}, {"text": "*-2"}, {"text": "in"}, {"text": "the"}, {"text": "first"}, {"text": "two"}, {"text": "weeks"}, {"text": "of"}, {"text": "each"}, {"text": "month"}, {"text": "for"}, {"text": "the"}, {"text": "Conference"}, {"text": "Board"}, {"text": "by"}, {"text": "National"}, {"text": "Family"}, {"text": "Opinion"}, {"text": "Inc."}, {"text": ","}, {"text": "a"}, {"text": "Toledo"}, {"text": ","}, {"text": "Ohio"}, {"text": ","}, {"text": "market"}, {"text": "researcher"}, {"text": "."}, {"text": "Buying"}, {"text": "plans"}, {"text": "were"}, {"text": "mixed"}, {"text": "in"}, {"text": "October"}, {"text": ","}, {"text": "with"}, {"text": "fewer"}, {"text": "households"}, {"text": "indicating"}, {"text": "plans"}, {"text": "*"}, {"text": "to"}, {"text": "buy"}, {"text": "cars"}, {"text": "and"}, {"text": "more"}, {"text": "saying"}, {"text": "0"}, {"text": "they"}, {"text": "will"}, {"text": "buy"}, {"text": "homes"}, {"text": "and"}, {"text": "appliances"}, {"text": "in"}, {"text": "the"}, {"text": "coming"}, {"text": "six"}, {"text": "months"}, {"text": "."}, {"text": "In"}, {"text": "October"}, {"text": ","}, {"text": "6.7"}, {"text": "%"}, {"text": "of"}, {"text": "respondents"}, {"text": "said"}, {"text": "0"}, {"text": "they"}, {"text": "will"}, {"text": "buy"}, {"text": "a"}, {"text": "car"}, {"text": ","}, {"text": "*"}, {"text": "easing"}, {"text": "from"}, {"text": "September"}, {"text": "when"}, {"text": "8.1"}, {"text": "%"}, {"text": "anticipated"}, {"text": "a"}, {"text": "purchase"}, {"text": "*T*-1"}, {"text": "."}, {"text": "In"}, {"text": "October"}, {"text": "1988"}, {"text": ","}, {"text": "7.3"}, {"text": "%"}, {"text": "said"}, {"text": "0"}, {"text": "they"}, {"text": "would"}, {"text": "buy"}, {"text": "a"}, {"text": "car"}, {"text": "."}, {"text": "Home"}, {"text": "purchase"}, {"text": "plans"}, {"text": "increased"}, {"text": "to"}, {"text": "3.3"}, {"text": "%"}, {"text": "from"}, {"text": "3.1"}, {"text": "%"}, {"text": "in"}, {"text": "the"}, {"text": "two"}, {"text": "recent"}, {"text": "months"}, {"text": "."}, {"text": "In"}, {"text": "October"}, {"text": "1988"}, {"text": ","}, {"text": "3.7"}, {"text": "%"}, {"text": "said"}, {"text": "0"}, {"text": "they"}, {"text": "would"}, {"text": "buy"}, {"text": "a"}, {"text": "house"}, {"text": "."}, {"text": "In"}, {"text": "1989"}, {"text": ","}, {"text": "home"}, {"text": "purchase"}, {"text": "plans"}, {"text": "have"}, {"text": "ranged"}, {"text": "monthly"}, {"text": "from"}, {"text": "2.9"}, {"text": "%"}, {"text": "*RNR*-1"}, {"text": "to"}, {"text": "3.7"}, {"text": "%"}, {"text": "*RNR*-1"}, {"text": "of"}, {"text": "respondents"}, {"text": "."}, {"text": "In"}, {"text": "October"}, {"text": ","}, {"text": "30.6"}, {"text": "%"}, {"text": "said"}, {"text": "0"}, {"text": "they"}, {"text": "will"}, {"text": "buy"}, {"text": "appliances"}, {"text": "in"}, {"text": "the"}, {"text": "coming"}, {"text": "six"}, {"text": "months"}, {"text": ","}, {"text": "compared"}, {"text": "with"}, {"text": "27.4"}, {"text": "%"}, {"text": "in"}, {"text": "September"}, {"text": "and"}, {"text": "26.5"}, {"text": "%"}, {"text": "in"}, {"text": "October"}, {"text": "1988"}, {"text": "."}, {"text": "Despite"}, {"text": "a"}, {"text": "deluge"}, {"text": "of"}, {"text": "economic"}, {"text": "news"}, {"text": ","}, {"text": "the"}, {"text": "Treasury"}, {"text": "market"}, {"text": "remained"}, {"text": "quiet"}, {"text": "but"}, {"text": "the"}, {"text": "corporate"}, {"text": "market"}, {"text": "was"}, {"text": "abuzz"}, {"text": "over"}, {"text": "International"}, {"text": "Business"}, {"text": "Machines"}, {"text": "Corp."}, {"text": "'s"}, {"text": "huge"}, {"text": "debt"}, {"text": "offering"}, {"text": "."}, {"text": "``"}, {"text": "There"}, {"text": "were"}, {"text": "so"}, {"text": "many"}, {"text": "economic"}, {"text": "reports"}, {"text": "but"}, {"text": "the"}, {"text": "market"}, {"text": "did"}, {"text": "n't"}, {"text": "care"}, {"text": "about"}, {"text": "any"}, {"text": "of"}, {"text": "them"}, {"text": ","}, {"text": "''"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "Kathleen"}, {"text": "Camilli"}, {"text": ","}, {"text": "a"}, {"text": "money"}, {"text": "market"}, {"text": "economist"}, {"text": "at"}, {"text": "Drexel"}, {"text": "Burnham"}, {"text": "Lambert"}, {"text": "Inc"}, {"text": "."}, {"text": "``"}, {"text": "So"}, {"text": "the"}, {"text": "focus"}, {"text": "turned"}, {"text": "to"}, {"text": "other"}, {"text": "fixed-income"}, {"text": "markets"}, {"text": ","}, {"text": "corporate"}, {"text": "and"}, {"text": "mortgages"}, {"text": "in"}, {"text": "particular"}, {"text": ","}, {"text": "''"}, {"text": "she"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "."}, {"text": "IBM"}, {"text": ","}, {"text": "the"}, {"text": "giant"}, {"text": "computer"}, {"text": "maker"}, {"text": ","}, {"text": "offered"}, {"text": "$"}, {"text": "750"}, {"text": "million"}, {"text": "*U*"}, {"text": "of"}, {"text": "non-callable"}, {"text": "30-year"}, {"text": "debentures"}, {"text": "priced"}, {"text": "*"}, {"text": "*-1"}, {"text": "to"}, {"text": "yield"}, {"text": "8.47"}, {"text": "%"}, {"text": ","}, {"text": "or"}, {"text": "about"}, {"text": "1\\/2"}, {"text": "percentage"}, {"text": "point"}, {"text": "higher"}, {"text": "than"}, {"text": "the"}, {"text": "yield"}, {"text": "on"}, {"text": "30-year"}, {"text": "Treasury"}, {"text": "bonds"}, {"text": "."}, {"text": "The"}, {"text": "size"}, {"text": "of"}, {"text": "IBM"}, {"text": "'s"}, {"text": "issue"}, {"text": "was"}, {"text": "increased"}, {"text": "*-1"}, {"text": "from"}, {"text": "an"}, {"text": "originally"}, {"text": "planned"}, {"text": "$"}, {"text": "500"}, {"text": "million"}, {"text": "*U*"}, {"text": "as"}, {"text": "money"}, {"text": "managers"}, {"text": "and"}, {"text": "investors"}, {"text": "scrambled"}, {"text": "*-2"}, {"text": "to"}, {"text": "buy"}, {"text": "the"}, {"text": "bonds"}, {"text": "."}, {"text": "In"}, {"text": "the"}, {"text": "investment-grade"}, {"text": "corporate"}, {"text": "market"}, {"text": ","}, {"text": "``"}, {"text": "it"}, {"text": "'s"}, {"text": "rare"}, {"text": "that"}, {"text": "you"}, {"text": "get"}, {"text": "an"}, {"text": "opportunity"}, {"text": "*"}, {"text": "to"}, {"text": "buy"}, {"text": "a"}, {"text": "name"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "has"}, {"text": "such"}, {"text": "broad"}, {"text": "appeal"}, {"text": "and"}, {"text": "has"}, {"text": "such"}, {"text": "attractive"}, {"text": "call"}, {"text": "features"}, {"text": ","}, {"text": "''"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "James"}, {"text": "Ednie"}, {"text": ","}, {"text": "a"}, {"text": "Drexel"}, {"text": "industrial"}, {"text": "bond"}, {"text": "trader"}, {"text": "."}, {"text": "Money"}, {"text": "managers"}, {"text": "ranked"}, {"text": "IBM"}, {"text": "'s"}, {"text": "offering"}, {"text": "as"}, {"text": "the"}, {"text": "most"}, {"text": "significant"}, {"text": "investment-grade"}, {"text": "sale"}, {"text": "of"}, {"text": "the"}, {"text": "year"}, {"text": "because"}, {"text": "large"}, {"text": "issues"}, {"text": "of"}, {"text": "long-term"}, {"text": "debt"}, {"text": "by"}, {"text": "companies"}, {"text": "with"}, {"text": "triple-A"}, {"text": "credit"}, {"text": "are"}, {"text": "infrequent"}, {"text": "."}, {"text": "Syndicate"}, {"text": "officials"}, {"text": "at"}, {"text": "lead"}, {"text": "underwriter"}, {"text": "Salomon"}, {"text": "Brothers"}, {"text": "Inc."}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "debentures"}, {"text": "were"}, {"text": "snapped"}, {"text": "by"}, {"text": "up"}, {"text": "*-1"}, {"text": "pension"}, {"text": "funds"}, {"text": ","}, {"text": "banks"}, {"text": ","}, {"text": "insurance"}, {"text": "companies"}, {"text": "and"}, {"text": "other"}, {"text": "institutional"}, {"text": "investors"}, {"text": "."}, {"text": "In"}, {"text": "the"}, {"text": "Treasury"}, {"text": "market"}, {"text": ","}, {"text": "investors"}, {"text": "paid"}, {"text": "scant"}, {"text": "attention"}, {"text": "to"}, {"text": "the"}, {"text": "day"}, {"text": "'s"}, {"text": "economic"}, {"text": "reports"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "for"}, {"text": "the"}, {"text": "most"}, {"text": "part"}, {"text": "provided"}, {"text": "a"}, {"text": "mixed"}, {"text": "view"}, {"text": "of"}, {"text": "the"}, {"text": "economy"}, {"text": "."}, {"text": "``"}, {"text": "Whether"}, {"text": "you"}, {"text": "thought"}, {"text": "0"}, {"text": "the"}, {"text": "economy"}, {"text": "was"}, {"text": "growing"}, {"text": "weak"}, {"text": "or"}, {"text": "holding"}, {"text": "*"}, {"text": "steady"}, {"text": ","}, {"text": "yesterday"}, {"text": "'s"}, {"text": "economic"}, {"text": "indicators"}, {"text": "did"}, {"text": "n't"}, {"text": "change"}, {"text": "your"}, {"text": "opinion"}, {"text": ","}, {"text": "''"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "Charles"}, {"text": "Lieberman"}, {"text": ","}, {"text": "a"}, {"text": "managing"}, {"text": "director"}, {"text": "at"}, {"text": "Manufacturers"}, {"text": "Hanover"}, {"text": "Securities"}, {"text": "Corp"}, {"text": "."}, {"text": "The"}, {"text": "government"}, {"text": "reported"}, {"text": "that"}, {"text": "orders"}, {"text": "for"}, {"text": "manufactured"}, {"text": "goods"}, {"text": "were"}, {"text": "essentially"}, {"text": "unchanged"}, {"text": "in"}, {"text": "September"}, {"text": "while"}, {"text": "construction"}, {"text": "spending"}, {"text": "was"}, {"text": "slightly"}, {"text": "lower"}, {"text": "."}, {"text": "Both"}, {"text": "indicators"}, {"text": "were"}, {"text": "viewed"}, {"text": "*-1"}, {"text": "as"}, {"text": "signs"}, {"text": "that"}, {"text": "the"}, {"text": "nation"}, {"text": "'s"}, {"text": "industrial"}, {"text": "sector"}, {"text": "is"}, {"text": "growing"}, {"text": "very"}, {"text": "slowly"}, {"text": ","}, {"text": "if"}, {"text": "at"}, {"text": "all"}, {"text": "."}, {"text": "A"}, {"text": "survey"}, {"text": "by"}, {"text": "the"}, {"text": "Federal"}, {"text": "Reserve"}, {"text": "'s"}, {"text": "12"}, {"text": "district"}, {"text": "banks"}, {"text": "and"}, {"text": "the"}, {"text": "latest"}, {"text": "report"}, {"text": "by"}, {"text": "the"}, {"text": "National"}, {"text": "Association"}, {"text": "of"}, {"text": "Purchasing"}, {"text": "Management"}, {"text": "blurred"}, {"text": "that"}, {"text": "picture"}, {"text": "of"}, {"text": "the"}, {"text": "economy"}, {"text": "."}, {"text": "In"}, {"text": "a"}, {"text": "monthly"}, {"text": "report"}, {"text": "prepared"}, {"text": "*"}, {"text": "for"}, {"text": "use"}, {"text": "at"}, {"text": "the"}, {"text": "Fed"}, {"text": "'s"}, {"text": "next"}, {"text": "Federal"}, {"text": "Open"}, {"text": "Market"}, {"text": "Committee"}, {"text": "meeting"}, {"text": "on"}, {"text": "Nov."}, {"text": "14."}, {"text": ","}, {"text": "the"}, {"text": "nation"}, {"text": "'s"}, {"text": "central"}, {"text": "bank"}, {"text": "found"}, {"text": "that"}, {"text": "price"}, {"text": "increases"}, {"text": "have"}, {"text": "moderated"}, {"text": "and"}, {"text": "economic"}, {"text": "activity"}, {"text": "has"}, {"text": "grown"}, {"text": "at"}, {"text": "a"}, {"text": "sluggish"}, {"text": "pace"}, {"text": "in"}, {"text": "recent"}, {"text": "weeks"}, {"text": "."}, {"text": "Among"}, {"text": "other"}, {"text": "things"}, {"text": ","}, {"text": "the"}, {"text": "survey"}, {"text": "found"}, {"text": "that"}, {"text": "manufacturing"}, {"text": "activity"}, {"text": "varied"}, {"text": "considerably"}, {"text": "across"}, {"text": "districts"}, {"text": "and"}, {"text": "among"}, {"text": "industries"}, {"text": "."}, {"text": "The"}, {"text": "Philadelphia"}, {"text": "and"}, {"text": "Cleveland"}, {"text": "districts"}, {"text": ","}, {"text": "for"}, {"text": "example"}, {"text": ","}, {"text": "reported"}, {"text": "declines"}, {"text": "in"}, {"text": "manufacturing"}, {"text": "activity"}, {"text": "while"}, {"text": "the"}, {"text": "Boston"}, {"text": ","}, {"text": "Dallas"}, {"text": "and"}, {"text": "San"}, {"text": "Francisco"}, {"text": "banks"}, {"text": "noted"}, {"text": "that"}, {"text": "business"}, {"text": "expanded"}, {"text": "."}, {"text": "The"}, {"text": "purchasing"}, {"text": "managers"}, {"text": "index"}, {"text": "of"}, {"text": "economic"}, {"text": "activity"}, {"text": "rose"}, {"text": "in"}, {"text": "October"}, {"text": ","}, {"text": "although"}, {"text": "it"}, {"text": "remains"}, {"text": "below"}, {"text": "50"}, {"text": "%"}, {"text": "."}, {"text": "A"}, {"text": "reading"}, {"text": "below"}, {"text": "50"}, {"text": "%"}, {"text": "indicates"}, {"text": "that"}, {"text": "the"}, {"text": "manufacturing"}, {"text": "sector"}, {"text": "is"}, {"text": "slowing"}, {"text": "while"}, {"text": "a"}, {"text": "reading"}, {"text": "above"}, {"text": "50"}, {"text": "%"}, {"text": "suggests"}, {"text": "that"}, {"text": "the"}, {"text": "industry"}, {"text": "is"}, {"text": "expanding"}, {"text": "."}, {"text": "Mr."}, {"text": "Lieberman"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "diverse"}, {"text": "showing"}, {"text": "in"}, {"text": "yesterday"}, {"text": "'s"}, {"text": "reports"}, {"text": "``"}, {"text": "only"}, {"text": "enhances"}, {"text": "the"}, {"text": "importance"}, {"text": "of"}, {"text": "the"}, {"text": "employment"}, {"text": "data"}, {"text": "."}, {"text": "''"}, {"text": "The"}, {"text": "employment"}, {"text": "report"}, {"text": ","}, {"text": "which"}, {"text": "at"}, {"text": "times"}, {"text": "*T*-1"}, {"text": "has"}, {"text": "caused"}, {"text": "wide"}, {"text": "swings"}, {"text": "in"}, {"text": "bond"}, {"text": "prices"}, {"text": ","}, {"text": "is"}, {"text": "due"}, {"text": "out"}, {"text": "tomorrow"}, {"text": "."}, {"text": "The"}, {"text": "average"}, {"text": "estimate"}, {"text": "of"}, {"text": "22"}, {"text": "economists"}, {"text": "polled"}, {"text": "*"}, {"text": "by"}, {"text": "Dow"}, {"text": "Jones"}, {"text": "Capital"}, {"text": "Markets"}, {"text": "Report"}, {"text": "was"}, {"text": "that"}, {"text": "non-farm"}, {"text": "payrolls"}, {"text": "expanded"}, {"text": "by"}, {"text": "152,000"}, {"text": "in"}, {"text": "October"}, {"text": "."}, {"text": "The"}, {"text": "economists"}, {"text": "forecast"}, {"text": "a"}, {"text": "0.1"}, {"text": "%"}, {"text": "rise"}, {"text": "in"}, {"text": "the"}, {"text": "unemployment"}, {"text": "rate"}, {"text": "to"}, {"text": "5.4"}, {"text": "%"}, {"text": "."}, {"text": "Treasury"}, {"text": "Securities"}, {"text": "In"}, {"text": "a"}, {"text": "surprise"}, {"text": "announcement"}, {"text": ","}, {"text": "the"}, {"text": "Treasury"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "will"}, {"text": "reopen"}, {"text": "the"}, {"text": "outstanding"}, {"text": "benchmark"}, {"text": "30-year"}, {"text": "bond"}, {"text": "rather"}, {"text": "than"}, {"text": "create"}, {"text": "a"}, {"text": "new"}, {"text": "one"}, {"text": "for"}, {"text": "next"}, {"text": "week"}, {"text": "'s"}, {"text": "quarterly"}, {"text": "refunding"}, {"text": "of"}, {"text": "the"}, {"text": "federal"}, {"text": "debt"}, {"text": "."}, {"text": "The"}, {"text": "Treasury"}, {"text": "will"}, {"text": "raise"}, {"text": "$"}, {"text": "10"}, {"text": "billion"}, {"text": "*U*"}, {"text": "in"}, {"text": "fresh"}, {"text": "cash"}, {"text": "by"}, {"text": "*-1"}, {"text": "selling"}, {"text": "$"}, {"text": "30"}, {"text": "billion"}, {"text": "*U*"}, {"text": "of"}, {"text": "securities"}, {"text": ","}, {"text": "including"}, {"text": "$"}, {"text": "10"}, {"text": "billion"}, {"text": "*U*"}, {"text": "of"}, {"text": "new"}, {"text": "three-year"}, {"text": "notes"}, {"text": "and"}, {"text": "$"}, {"text": "10"}, {"text": "billion"}, {"text": "*U*"}, {"text": "of"}, {"text": "new"}, {"text": "10-year"}, {"text": "notes"}, {"text": "."}, {"text": "But"}, {"text": "rather"}, {"text": "than"}, {"text": "*"}, {"text": "sell"}, {"text": "new"}, {"text": "30-year"}, {"text": "bonds"}, {"text": ","}, {"text": "the"}, {"text": "Treasury"}, {"text": "will"}, {"text": "issue"}, {"text": "$"}, {"text": "10"}, {"text": "billion"}, {"text": "*U*"}, {"text": "of"}, {"text": "29year"}, {"text": ","}, {"text": "nine-month"}, {"text": "bonds"}, {"text": "--"}, {"text": "*-2"}, {"text": "essentially"}, {"text": "increasing"}, {"text": "the"}, {"text": "size"}, {"text": "of"}, {"text": "the"}, {"text": "current"}, {"text": "benchmark"}, {"text": "30-year"}, {"text": "bond"}, {"text": "that"}, {"text": "*T*-3"}, {"text": "was"}, {"text": "sold"}, {"text": "*-1"}, {"text": "at"}, {"text": "the"}, {"text": "previous"}, {"text": "refunding"}, {"text": "in"}, {"text": "August"}, {"text": "."}, {"text": "Credit"}, {"text": "market"}, {"text": "analysts"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "decision"}, {"text": "*"}, {"text": "to"}, {"text": "reopen"}, {"text": "the"}, {"text": "current"}, {"text": "benchmark"}, {"text": ","}, {"text": "the"}, {"text": "8"}, {"text": "1\\/8"}, {"text": "%"}, {"text": "bond"}, {"text": "due"}, {"text": "August"}, {"text": "2019"}, {"text": ","}, {"text": "is"}, {"text": "unusual"}, {"text": "because"}, {"text": "the"}, {"text": "issue"}, {"text": "trades"}, {"text": "at"}, {"text": "a"}, {"text": "premium"}, {"text": "to"}, {"text": "its"}, {"text": "face"}, {"text": "amount"}, {"text": "."}, {"text": "Some"}, {"text": "dealers"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "Treasury"}, {"text": "'s"}, {"text": "intent"}, {"text": "is"}, {"text": "*"}, {"text": "to"}, {"text": "help"}, {"text": "government"}, {"text": "bond"}, {"text": "dealers"}, {"text": "gauge"}, {"text": "investor"}, {"text": "demand"}, {"text": "for"}, {"text": "the"}, {"text": "securities"}, {"text": ","}, {"text": "*"}, {"text": "given"}, {"text": "uncertainties"}, {"text": "about"}, {"text": "when"}, {"text": "the"}, {"text": "auction"}, {"text": "will"}, {"text": "occur"}, {"text": "*T*-1"}, {"text": "."}, {"text": "The"}, {"text": "Treasury"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "refunding"}, {"text": "is"}, {"text": "contingent"}, {"text": "upon"}, {"text": "congressional"}, {"text": "and"}, {"text": "presidential"}, {"text": "passage"}, {"text": "of"}, {"text": "an"}, {"text": "increase"}, {"text": "in"}, {"text": "the"}, {"text": "federal"}, {"text": "debt"}, {"text": "ceiling"}, {"text": "."}, {"text": "Until"}, {"text": "such"}, {"text": "action"}, {"text": "takes"}, {"text": "places"}, {"text": ","}, {"text": "the"}, {"text": "Treasury"}, {"text": "has"}, {"text": "no"}, {"text": "ability"}, {"text": "*"}, {"text": "to"}, {"text": "issue"}, {"text": "new"}, {"text": "debt"}, {"text": "of"}, {"text": "any"}, {"text": "kind"}, {"text": "."}, {"text": "Meanwhile"}, {"text": ","}, {"text": "Treasury"}, {"text": "bonds"}, {"text": "ended"}, {"text": "modestly"}, {"text": "higher"}, {"text": "in"}, {"text": "quiet"}, {"text": "trading"}, {"text": "."}, {"text": "The"}, {"text": "benchmark"}, {"text": "30-year"}, {"text": "bond"}, {"text": "about"}, {"text": "1\\/4"}, {"text": "point"}, {"text": ","}, {"text": "or"}, {"text": "$"}, {"text": "2.50"}, {"text": "*U*"}, {"text": "for"}, {"text": "each"}, {"text": "$"}, {"text": "1,000"}, {"text": "*U*"}, {"text": "face"}, {"text": "amount"}, {"text": "."}, {"text": "The"}, {"text": "benchmark"}, {"text": "was"}, {"text": "priced"}, {"text": "*-1"}, {"text": "at"}, {"text": "102"}, {"text": "22\\/32"}, {"text": "*-2"}, {"text": "to"}, {"text": "yield"}, {"text": "7.88"}, {"text": "%"}, {"text": "compared"}, {"text": "with"}, {"text": "102"}, {"text": "12\\/32"}, {"text": "*"}, {"text": "to"}, {"text": "yield"}, {"text": "7.90"}, {"text": "%"}, {"text": "Tuesday"}, {"text": "."}, {"text": "The"}, {"text": "latest"}, {"text": "10-year"}, {"text": "notes"}, {"text": "were"}, {"text": "quoted"}, {"text": "at"}, {"text": "100"}, {"text": "22\\/32"}, {"text": "*-1"}, {"text": "to"}, {"text": "yield"}, {"text": "7.88"}, {"text": "%"}, {"text": "compared"}, {"text": "with"}, {"text": "100"}, {"text": "16\\/32"}, {"text": "*"}, {"text": "to"}, {"text": "yield"}, {"text": "7.90"}, {"text": "%"}, {"text": "."}, {"text": "The"}, {"text": "discount"}, {"text": "rate"}, {"text": "on"}, {"text": "three-month"}, {"text": "Treasury"}, {"text": "bills"}, {"text": "was"}, {"text": "essentially"}, {"text": "unchanged"}, {"text": "at"}, {"text": "7.79"}, {"text": "%"}, {"text": ","}, {"text": "while"}, {"text": "the"}, {"text": "rate"}, {"text": "on"}, {"text": "six-month"}, {"text": "bills"}, {"text": "was"}, {"text": "slightly"}, {"text": "lower"}, {"text": "at"}, {"text": "7.52"}, {"text": "%"}, {"text": "compared"}, {"text": "with"}, {"text": "7.60"}, {"text": "%"}, {"text": "Tuesday"}, {"text": "."}, {"text": "Corporate"}, {"text": "Issues"}, {"text": "IBM"}, {"text": "'s"}, {"text": "$"}, {"text": "750"}, {"text": "million"}, {"text": "*U*"}, {"text": "debenture"}, {"text": "offering"}, {"text": "dominated"}, {"text": "activity"}, {"text": "in"}, {"text": "the"}, {"text": "corporate"}, {"text": "debt"}, {"text": "market"}, {"text": "."}, {"text": "Meanwhile"}, {"text": ","}, {"text": "most"}, {"text": "investment-grade"}, {"text": "bonds"}, {"text": "ended"}, {"text": "unchanged"}, {"text": "to"}, {"text": "as"}, {"text": "much"}, {"text": "as"}, {"text": "1\\/8"}, {"text": "point"}, {"text": "higher"}, {"text": "."}, {"text": "In"}, {"text": "its"}, {"text": "latest"}, {"text": "compilation"}, {"text": "of"}, {"text": "performance"}, {"text": "statistics"}, {"text": ","}, {"text": "Moody"}, {"text": "'s"}, {"text": "Investors"}, {"text": "Service"}, {"text": "found"}, {"text": "that"}, {"text": "investment-grade"}, {"text": "bonds"}, {"text": "posted"}, {"text": "a"}, {"text": "total"}, {"text": "return"}, {"text": "of"}, {"text": "2.7"}, {"text": "%"}, {"text": "in"}, {"text": "October"}, {"text": "while"}, {"text": "junk"}, {"text": "bonds"}, {"text": "showed"}, {"text": "a"}, {"text": "negative"}, {"text": "return"}, {"text": "of"}, {"text": "1.5"}, {"text": "%"}, {"text": "."}, {"text": "Moody"}, {"text": "'s"}, {"text": "said"}, {"text": "0"}, {"text": "those"}, {"text": "returns"}, {"text": "compare"}, {"text": "with"}, {"text": "a"}, {"text": "3.8"}, {"text": "%"}, {"text": "total"}, {"text": "return"}, {"text": "for"}, {"text": "longer-term"}, {"text": "Treasury"}, {"text": "notes"}, {"text": "and"}, {"text": "bonds"}, {"text": "."}, {"text": "Total"}, {"text": "return"}, {"text": "measures"}, {"text": "price"}, {"text": "changes"}, {"text": "and"}, {"text": "interest"}, {"text": "income"}, {"text": "."}, {"text": "For"}, {"text": "the"}, {"text": "year"}, {"text": "to"}, {"text": "date"}, {"text": ","}, {"text": "Moody"}, {"text": "'s"}, {"text": "said"}, {"text": "0"}, {"text": "total"}, {"text": "returns"}, {"text": "were"}, {"text": "topped"}, {"text": "*-1"}, {"text": "by"}, {"text": "the"}, {"text": "16.5"}, {"text": "%"}, {"text": "of"}, {"text": "longer-term"}, {"text": "Treasury"}, {"text": "issues"}, {"text": ","}, {"text": "*-2"}, {"text": "closely"}, {"text": "followed"}, {"text": "*-3"}, {"text": "by"}, {"text": "15"}, {"text": "%"}, {"text": "for"}, {"text": "investment-grade"}, {"text": "bonds"}, {"text": "."}, {"text": "Junk"}, {"text": "bonds"}, {"text": "trailed"}, {"text": "the"}, {"text": "group"}, {"text": "again"}, {"text": "."}, {"text": "``"}, {"text": "Even"}, {"text": "the"}, {"text": "7.2"}, {"text": "%"}, {"text": "return"}, {"text": "from"}, {"text": "the"}, {"text": "risk-free"}, {"text": "three-month"}, {"text": "Treasury"}, {"text": "bill"}, {"text": "has"}, {"text": "easily"}, {"text": "outdistanced"}, {"text": "the"}, {"text": "4.1"}, {"text": "%"}, {"text": "return"}, {"text": "from"}, {"text": "junk"}, {"text": "bonds"}, {"text": ","}, {"text": "''"}, {"text": "wrote"}, {"text": "*T*-1"}, {"text": "Moody"}, {"text": "'s"}, {"text": "economist"}, {"text": "John"}, {"text": "Lonski"}, {"text": "in"}, {"text": "yesterday"}, {"text": "'s"}, {"text": "market"}, {"text": "report"}, {"text": "."}, {"text": "``"}, {"text": "Little"}, {"text": "wonder"}, {"text": "that"}, {"text": "buyers"}, {"text": "for"}, {"text": "junk"}, {"text": "have"}, {"text": "been"}, {"text": "found"}, {"text": "*-1"}, {"text": "wanting"}, {"text": ","}, {"text": "''"}, {"text": "he"}, {"text": "said"}, {"text": "*T*-2"}, {"text": "."}, {"text": "Moody"}, {"text": "'s"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "average"}, {"text": "net"}, {"text": "asset"}, {"text": "value"}, {"text": "of"}, {"text": "24"}, {"text": "junk-bond"}, {"text": "mutual"}, {"text": "funds"}, {"text": "fell"}, {"text": "by"}, {"text": "4.2"}, {"text": "%"}, {"text": "in"}, {"text": "October"}, {"text": "."}, {"text": "Mortgage-Backed"}, {"text": "Issues"}, {"text": "Mortgage"}, {"text": "securities"}, {"text": "ended"}, {"text": "slightly"}, {"text": "higher"}, {"text": "but"}, {"text": "trailed"}, {"text": "gains"}, {"text": "in"}, {"text": "the"}, {"text": "Treasury"}, {"text": "market"}, {"text": "."}, {"text": "Ginnie"}, {"text": "Mae"}, {"text": "'s"}, {"text": "9"}, {"text": "%"}, {"text": "issue"}, {"text": "for"}, {"text": "November"}, {"text": "delivery"}, {"text": "finished"}, {"text": "at"}, {"text": "98"}, {"text": "5\\/8"}, {"text": ","}, {"text": "up"}, {"text": "2\\/32"}, {"text": ","}, {"text": "and"}, {"text": "its"}, {"text": "9"}, {"text": "1\\/2"}, {"text": "%"}, {"text": "issue"}, {"text": "at"}, {"text": "100"}, {"text": "22\\/32"}, {"text": ","}, {"text": "also"}, {"text": "up"}, {"text": "2\\/32"}, {"text": "."}, {"text": "The"}, {"text": "Ginnie"}, {"text": "Mae"}, {"text": "9"}, {"text": "%"}, {"text": "securities"}, {"text": "were"}, {"text": "yielding"}, {"text": "9.32"}, {"text": "%"}, {"text": "to"}, {"text": "a"}, {"text": "12-year"}, {"text": "average"}, {"text": "life"}, {"text": "."}, {"text": "Activity"}, {"text": "was"}, {"text": "light"}, {"text": "in"}, {"text": "derivative"}, {"text": "markets"}, {"text": ","}, {"text": "with"}, {"text": "no"}, {"text": "new"}, {"text": "issues"}, {"text": "priced"}, {"text": "*-1"}, {"text": "."}, {"text": "Municipal"}, {"text": "Issues"}, {"text": "Municipal"}, {"text": "bonds"}, {"text": "were"}, {"text": "mostly"}, {"text": "unchanged"}, {"text": "to"}, {"text": "up"}, {"text": "1\\/8"}, {"text": "point"}, {"text": "in"}, {"text": "light"}, {"text": ","}, {"text": "cautious"}, {"text": "trading"}, {"text": "prior"}, {"text": "to"}, {"text": "tomorrow"}, {"text": "'s"}, {"text": "unemployment"}, {"text": "report"}, {"text": "."}, {"text": "A"}, {"text": "$"}, {"text": "114"}, {"text": "million"}, {"text": "*U*"}, {"text": "issue"}, {"text": "of"}, {"text": "health"}, {"text": "facility"}, {"text": "revenue"}, {"text": "bonds"}, {"text": "from"}, {"text": "the"}, {"text": "California"}, {"text": "Health"}, {"text": "Facilities"}, {"text": "Financing"}, {"text": "Authority"}, {"text": "was"}, {"text": "temporarily"}, {"text": "withdrawn"}, {"text": "*-1"}, {"text": "after"}, {"text": "*-1"}, {"text": "being"}, {"text": "tentatively"}, {"text": "priced"}, {"text": "*-2"}, {"text": "by"}, {"text": "a"}, {"text": "First"}, {"text": "Boston"}, {"text": "Corp."}, {"text": "group"}, {"text": "."}, {"text": "An"}, {"text": "official"}, {"text": "for"}, {"text": "the"}, {"text": "lead"}, {"text": "underwriter"}, {"text": "declined"}, {"text": "*-1"}, {"text": "to"}, {"text": "comment"}, {"text": "on"}, {"text": "the"}, {"text": "reason"}, {"text": "for"}, {"text": "the"}, {"text": "delay"}, {"text": ","}, {"text": "but"}, {"text": "market"}, {"text": "participants"}, {"text": "speculated"}, {"text": "that"}, {"text": "a"}, {"text": "number"}, {"text": "of"}, {"text": "factors"}, {"text": ","}, {"text": "including"}, {"text": "a"}, {"text": "lack"}, {"text": "of"}, {"text": "investor"}, {"text": "interest"}, {"text": ","}, {"text": "were"}, {"text": "responsible"}, {"text": "."}, {"text": "The"}, {"text": "issue"}, {"text": "could"}, {"text": "be"}, {"text": "relaunched"}, {"text": "*-1"}, {"text": ","}, {"text": "possibly"}, {"text": "in"}, {"text": "a"}, {"text": "restructured"}, {"text": "form"}, {"text": ","}, {"text": "as"}, {"text": "early"}, {"text": "as"}, {"text": "next"}, {"text": "week"}, {"text": ","}, {"text": "according"}, {"text": "to"}, {"text": "the"}, {"text": "lead"}, {"text": "underwriter"}, {"text": "."}, {"text": "A"}, {"text": "$"}, {"text": "107.03"}, {"text": "million"}, {"text": "*U*"}, {"text": "offering"}, {"text": "of"}, {"text": "Santa"}, {"text": "Ana"}, {"text": "Community"}, {"text": "Redevelopment"}, {"text": "Agency"}, {"text": ","}, {"text": "Calif."}, {"text": ","}, {"text": "tax"}, {"text": "allocation"}, {"text": "bonds"}, {"text": "got"}, {"text": "off"}, {"text": "to"}, {"text": "a"}, {"text": "slow"}, {"text": "start"}, {"text": "and"}, {"text": "may"}, {"text": "be"}, {"text": "repriced"}, {"text": "*-1"}, {"text": "at"}, {"text": "lower"}, {"text": "levels"}, {"text": "today"}, {"text": ","}, {"text": "according"}, {"text": "to"}, {"text": "an"}, {"text": "official"}, {"text": "with"}, {"text": "lead"}, {"text": "underwriter"}, {"text": "Donaldson"}, {"text": "Lufkin"}, {"text": "&"}, {"text": "Jenrette"}, {"text": "Securities"}, {"text": "Corp"}, {"text": "."}, {"text": "The"}, {"text": "Santa"}, {"text": "Ana"}, {"text": "bonds"}, {"text": "were"}, {"text": "tentatively"}, {"text": "priced"}, {"text": "*-1"}, {"text": "*-2"}, {"text": "to"}, {"text": "yield"}, {"text": "from"}, {"text": "6.40"}, {"text": "%"}, {"text": "in"}, {"text": "1991"}, {"text": "to"}, {"text": "7.458"}, {"text": "%"}, {"text": "in"}, {"text": "*-1"}, {"text": "Bucking"}, {"text": "the"}, {"text": "market"}, {"text": "trend"}, {"text": ","}, {"text": "an"}, {"text": "issue"}, {"text": "of"}, {"text": "$"}, {"text": "130"}, {"text": "million"}, {"text": "*U*"}, {"text": "general"}, {"text": "obligation"}, {"text": "distributable"}, {"text": "state"}, {"text": "aid"}, {"text": "bonds"}, {"text": "from"}, {"text": "Detroit"}, {"text": ","}, {"text": "Mich."}, {"text": ","}, {"text": "apparently"}, {"text": "drew"}, {"text": "solid"}, {"text": "investor"}, {"text": "interest"}, {"text": "."}, {"text": "They"}, {"text": "were"}, {"text": "tentatively"}, {"text": "priced"}, {"text": "*-1"}, {"text": "*-2"}, {"text": "to"}, {"text": "yield"}, {"text": "from"}, {"text": "6.20"}, {"text": "%"}, {"text": "in"}, {"text": "1991"}, {"text": "to"}, {"text": "7.272"}, {"text": "%"}, {"text": "in"}, {"text": "Foreign"}, {"text": "Bond"}, {"text": "West"}, {"text": "German"}, {"text": "dealers"}, {"text": "said"}, {"text": "0"}, {"text": "there"}, {"text": "was"}, {"text": "little"}, {"text": "interest"}, {"text": "in"}, {"text": "Treasury"}, {"text": "bonds"}, {"text": "ahead"}, {"text": "of"}, {"text": "Thursday"}, {"text": "'s"}, {"text": "new"}, {"text": "government"}, {"text": "bond"}, {"text": "issue"}, {"text": "."}, {"text": "So"}, {"text": "far"}, {"text": ","}, {"text": "they"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-2"}, {"text": ","}, {"text": "investors"}, {"text": "appear"}, {"text": "unenthusiastic"}, {"text": "about"}, {"text": "the"}, {"text": "new"}, {"text": "issue"}, {"text": "which"}, {"text": "*T*-1"}, {"text": "might"}, {"text": "force"}, {"text": "the"}, {"text": "government"}, {"text": "to"}, {"text": "raise"}, {"text": "the"}, {"text": "coupon"}, {"text": "to"}, {"text": "more"}, {"text": "than"}, {"text": "7"}, {"text": "%"}, {"text": "."}, {"text": "It"}, {"text": "is"}, {"text": "generally"}, {"text": "expected"}, {"text": "*-1"}, {"text": "to"}, {"text": "be"}, {"text": "the"}, {"text": "usual"}, {"text": "10-year"}, {"text": ","}, {"text": "four"}, {"text": "billion"}, {"text": "mark"}, {"text": "issue"}, {"text": "."}, {"text": "Rumors"}, {"text": "to"}, {"text": "the"}, {"text": "contrary"}, {"text": "have"}, {"text": "been"}, {"text": "that"}, {"text": "it"}, {"text": "would"}, {"text": "be"}, {"text": "a"}, {"text": "six"}, {"text": "billion"}, {"text": "mark"}, {"text": "issue"}, {"text": ","}, {"text": "or"}, {"text": "that"}, {"text": "the"}, {"text": "last"}, {"text": "Bund"}, {"text": ","}, {"text": "a"}, {"text": "7"}, {"text": "%"}, {"text": "issue"}, {"text": "due"}, {"text": "October"}, {"text": "1999"}, {"text": ","}, {"text": "would"}, {"text": "be"}, {"text": "increased"}, {"text": "*-1"}, {"text": "by"}, {"text": "two"}, {"text": "billion"}, {"text": "marks"}, {"text": "."}, {"text": "Elsewhere"}, {"text": ":"}, {"text": "--"}, {"text": "In"}, {"text": "Japan"}, {"text": ","}, {"text": "the"}, {"text": "benchmark"}, {"text": "No."}, {"text": "111"}, {"text": "4.6"}, {"text": "%"}, {"text": "issue"}, {"text": "due"}, {"text": "1998"}, {"text": "ended"}, {"text": "on"}, {"text": "brokers"}, {"text": "screens"}, {"text": "unchanged"}, {"text": "at"}, {"text": "95.09"}, {"text": "*-1"}, {"text": "to"}, {"text": "yield"}, {"text": "5.435"}, {"text": "%"}, {"text": "."}, {"text": "--"}, {"text": "In"}, {"text": "Britain"}, {"text": ","}, {"text": "the"}, {"text": "benchmark"}, {"text": "11"}, {"text": "3\\/4"}, {"text": "%"}, {"text": "bond"}, {"text": "due"}, {"text": "2003\\/2007"}, {"text": "fell"}, {"text": "14\\/32"}, {"text": "to"}, {"text": "111"}, {"text": "2\\/32"}, {"text": "*-1"}, {"text": "to"}, {"text": "yield"}, {"text": "10.19"}, {"text": "%"}, {"text": "."}, {"text": "The"}, {"text": "12"}, {"text": "%"}, {"text": "notes"}, {"text": "due"}, {"text": "1995"}, {"text": "fell"}, {"text": "9\\/32"}, {"text": "to"}, {"text": "103"}, {"text": "3\\/8"}, {"text": "*-1"}, {"text": "to"}, {"text": "yield"}, {"text": "11.10"}, {"text": "%"}, {"text": "."}, {"text": "Standard"}, {"text": "&"}, {"text": "Poor"}, {"text": "'s"}, {"text": "Corp."}, {"text": "lowered"}, {"text": "to"}, {"text": "double-C"}, {"text": "from"}, {"text": "triple-C"}, {"text": "the"}, {"text": "rating"}, {"text": "on"}, {"text": "about"}, {"text": "$"}, {"text": "130"}, {"text": "million"}, {"text": "*U*"}, {"text": "of"}, {"text": "debt"}, {"text": "."}, {"text": "The"}, {"text": "rating"}, {"text": "concern"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "textile"}, {"text": "and"}, {"text": "clothing"}, {"text": "company"}, {"text": "'s"}, {"text": "interest"}, {"text": "expense"}, {"text": "exceeds"}, {"text": "operating"}, {"text": "profit"}, {"text": "``"}, {"text": "by"}, {"text": "a"}, {"text": "wide"}, {"text": "margin"}, {"text": "''"}, {"text": "and"}, {"text": "it"}, {"text": "noted"}, {"text": "United"}, {"text": "'s"}, {"text": "estimated"}, {"text": "after-tax"}, {"text": "loss"}, {"text": "of"}, {"text": "$"}, {"text": "24"}, {"text": "million"}, {"text": "*U*"}, {"text": "for"}, {"text": "the"}, {"text": "year"}, {"text": "ended"}, {"text": "June"}, {"text": "30"}, {"text": "."}, {"text": "Travelers"}, {"text": "Corp."}, {"text": "'s"}, {"text": "third-quarter"}, {"text": "net"}, {"text": "income"}, {"text": "rose"}, {"text": "11"}, {"text": "%"}, {"text": ","}, {"text": "even"}, {"text": "though"}, {"text": "claims"}, {"text": "stemming"}, {"text": "from"}, {"text": "Hurricane"}, {"text": "Hugo"}, {"text": "reduced"}, {"text": "results"}, {"text": "$"}, {"text": "40"}, {"text": "million"}, {"text": "*U*"}, {"text": "."}, {"text": "Net"}, {"text": "advanced"}, {"text": "to"}, {"text": "$"}, {"text": "94.2"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "89"}, {"text": "cents"}, {"text": "a"}, {"text": "share"}, {"text": ","}, {"text": "from"}, {"text": "$"}, {"text": "85"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "83"}, {"text": "cents"}, {"text": "a"}, {"text": "share"}, {"text": ","}, {"text": "including"}, {"text": "net"}, {"text": "realized"}, {"text": "investment"}, {"text": "gains"}, {"text": "of"}, {"text": "$"}, {"text": "31"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "up"}, {"text": "from"}, {"text": "$"}, {"text": "10"}, {"text": "million"}, {"text": "*U*"}, {"text": "a"}, {"text": "year"}, {"text": "ago"}, {"text": "."}, {"text": "But"}, {"text": "revenue"}, {"text": "declined"}, {"text": "to"}, {"text": "$"}, {"text": "3"}, {"text": "billion"}, {"text": "*U*"}, {"text": "from"}, {"text": "$"}, {"text": "3.2"}, {"text": "billion"}, {"text": "*U*"}, {"text": "."}, {"text": "Travelers"}, {"text": "estimated"}, {"text": "that"}, {"text": "the"}, {"text": "California"}, {"text": "earthquake"}, {"text": "last"}, {"text": "month"}, {"text": "will"}, {"text": "result"}, {"text": "in"}, {"text": "a"}, {"text": "fourth-quarter"}, {"text": "pre-tax"}, {"text": "charge"}, {"text": "of"}, {"text": "less"}, {"text": "than"}, {"text": "$"}, {"text": "10"}, {"text": "million"}, {"text": "*U*"}, {"text": "."}, {"text": "The"}, {"text": "insurer"}, {"text": "'s"}, {"text": "earnings"}, {"text": "from"}, {"text": "commercial"}, {"text": "property\\/casualty"}, {"text": "lines"}, {"text": "fell"}, {"text": "59"}, {"text": "%"}, {"text": "in"}, {"text": "the"}, {"text": "latest"}, {"text": "quarter"}, {"text": ","}, {"text": "while"}, {"text": "it"}, {"text": "lost"}, {"text": "$"}, {"text": "7.2"}, {"text": "million"}, {"text": "*U*"}, {"text": "in"}, {"text": "its"}, {"text": "personal"}, {"text": "property\\/casualty"}, {"text": "business"}, {"text": ","}, {"text": "compared"}, {"text": "with"}, {"text": "earnings"}, {"text": "of"}, {"text": "$"}, {"text": "6.1"}, {"text": "million"}, {"text": "*U*"}, {"text": "a"}, {"text": "year"}, {"text": "ago"}, {"text": "."}, {"text": "Travelers"}, {"text": "'s"}, {"text": "employee"}, {"text": "benefits"}, {"text": "group"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "includes"}, {"text": "its"}, {"text": "group"}, {"text": "health"}, {"text": "insurance"}, {"text": "operations"}, {"text": ","}, {"text": "posted"}, {"text": "earnings"}, {"text": "of"}, {"text": "$"}, {"text": "24"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "compared"}, {"text": "with"}, {"text": "a"}, {"text": "loss"}, {"text": "of"}, {"text": "$"}, {"text": "3"}, {"text": "million"}, {"text": "*U*"}, {"text": "last"}, {"text": "year"}, {"text": "."}, {"text": "In"}, {"text": "the"}, {"text": "first"}, {"text": "nine"}, {"text": "months"}, {"text": ","}, {"text": "net"}, {"text": "was"}, {"text": "$"}, {"text": "306"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "compared"}, {"text": "with"}, {"text": "a"}, {"text": "loss"}, {"text": "of"}, {"text": "$"}, {"text": "195"}, {"text": "million"}, {"text": "*U*"}, {"text": "in"}, {"text": "the"}, {"text": "1988"}, {"text": "period"}, {"text": "."}, {"text": "The"}, {"text": "year-ago"}, {"text": "results"}, {"text": "included"}, {"text": "a"}, {"text": "$"}, {"text": "415"}, {"text": "million"}, {"text": "*U*"}, {"text": "charge"}, {"text": "in"}, {"text": "the"}, {"text": "1988"}, {"text": "second"}, {"text": "quarter"}, {"text": "for"}, {"text": "underperforming"}, {"text": "real"}, {"text": "estate"}, {"text": "and"}, {"text": "mortgage"}, {"text": "loans"}, {"text": "."}, {"text": "The"}, {"text": "British"}, {"text": "Department"}, {"text": "of"}, {"text": "Trade"}, {"text": "and"}, {"text": "Industry"}, {"text": "ordered"}, {"text": "an"}, {"text": "investigation"}, {"text": "of"}, {"text": "the"}, {"text": "competitive"}, {"text": "impact"}, {"text": "of"}, {"text": "Michelin"}, {"text": "Tyre"}, {"text": "PLC"}, {"text": "'s"}, {"text": "planned"}, {"text": "acquisition"}, {"text": "of"}, {"text": "National"}, {"text": "Tyre"}, {"text": "Service"}, {"text": "Ltd"}, {"text": "."}, {"text": "The"}, {"text": "department"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "referred"}, {"text": "the"}, {"text": "takeover"}, {"text": "to"}, {"text": "the"}, {"text": "Monopolies"}, {"text": "and"}, {"text": "Mergers"}, {"text": "Commission"}, {"text": "because"}, {"text": "of"}, {"text": "the"}, {"text": "purchase"}, {"text": "'s"}, {"text": "possible"}, {"text": "effects"}, {"text": "on"}, {"text": "the"}, {"text": "U.K."}, {"text": "market"}, {"text": "for"}, {"text": "distribution"}, {"text": "of"}, {"text": "replacement"}, {"text": "tires"}, {"text": "."}, {"text": "BTR"}, {"text": "PLC"}, {"text": ","}, {"text": "a"}, {"text": "U.K."}, {"text": "industrial"}, {"text": "conglomerate"}, {"text": ","}, {"text": "said"}, {"text": "in"}, {"text": "June"}, {"text": "0"}, {"text": "it"}, {"text": "had"}, {"text": "sold"}, {"text": "its"}, {"text": "National"}, {"text": "Tyre"}, {"text": "Service"}, {"text": "business"}, {"text": "to"}, {"text": "Michelin"}, {"text": "Investment"}, {"text": "Ltd."}, {"text": ","}, {"text": "a"}, {"text": "U.K."}, {"text": "unit"}, {"text": "of"}, {"text": "the"}, {"text": "tire"}, {"text": "maker"}, {"text": ","}, {"text": "for"}, {"text": "#"}, {"text": "140"}, {"text": "million"}, {"text": "*U*"}, {"text": "-LRB-"}, {"text": "$"}, {"text": "221.4"}, {"text": "million"}, {"text": "*U*"}, {"text": "-RRB-"}, {"text": "."}, {"text": "Michelin"}, {"text": "Tyre"}, {"text": "is"}, {"text": "a"}, {"text": "unit"}, {"text": "of"}, {"text": "France"}, {"text": "'s"}, {"text": "Michelin"}, {"text": "S.A"}, {"text": "."}, {"text": "Michelin"}, {"text": "officials"}, {"text": "could"}, {"text": "n't"}, {"text": "immediately"}, {"text": "comment"}, {"text": "on"}, {"text": "the"}, {"text": "referral"}, {"text": ","}, {"text": "but"}, {"text": "they"}, {"text": "noted"}, {"text": "0"}, {"text": "the"}, {"text": "purchase"}, {"text": "from"}, {"text": "BTR"}, {"text": "has"}, {"text": "already"}, {"text": "been"}, {"text": "concluded"}, {"text": "*-1"}, {"text": "."}, {"text": "National"}, {"text": "Tyre"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "has"}, {"text": "420"}, {"text": "branches"}, {"text": "throughout"}, {"text": "the"}, {"text": "U.K."}, {"text": ","}, {"text": "had"}, {"text": "1988"}, {"text": "pretax"}, {"text": "profit"}, {"text": "of"}, {"text": "#"}, {"text": "8.5"}, {"text": "million"}, {"text": "*U*"}, {"text": "."}, {"text": "Rep."}, {"text": "John"}, {"text": "Dingell"}, {"text": ","}, {"text": "an"}, {"text": "important"}, {"text": "sponsor"}, {"text": "of"}, {"text": "President"}, {"text": "Bush"}, {"text": "'s"}, {"text": "clean-air"}, {"text": "bill"}, {"text": ","}, {"text": "plans"}, {"text": "*-2"}, {"text": "to"}, {"text": "unveil"}, {"text": "a"}, {"text": "surprise"}, {"text": "proposal"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "would"}, {"text": "break"}, {"text": "with"}, {"text": "the"}, {"text": "White"}, {"text": "House"}, {"text": "on"}, {"text": "a"}, {"text": "centerpiece"}, {"text": "issue"}, {"text": ":"}, {"text": "acid"}, {"text": "rain"}, {"text": "."}, {"text": "The"}, {"text": "Michigan"}, {"text": "Democrat"}, {"text": "'s"}, {"text": "proposal"}, {"text": ","}, {"text": "which"}, {"text": "*T*-4"}, {"text": "is"}, {"text": "expected"}, {"text": "*-2"}, {"text": "today"}, {"text": ","}, {"text": "is"}, {"text": "described"}, {"text": "*-1"}, {"text": "by"}, {"text": "government"}, {"text": "sources"}, {"text": "and"}, {"text": "lobbyists"}, {"text": "as"}, {"text": "significantly"}, {"text": "weaker"}, {"text": "than"}, {"text": "the"}, {"text": "Bush"}, {"text": "administration"}, {"text": "'s"}, {"text": "plan"}, {"text": "*"}, {"text": "to"}, {"text": "cut"}, {"text": "utility"}, {"text": "emissions"}, {"text": "that"}, {"text": "*T*-3"}, {"text": "lead"}, {"text": "to"}, {"text": "acid"}, {"text": "rain"}, {"text": "."}, {"text": "The"}, {"text": "administration"}, {"text": "'s"}, {"text": "plan"}, {"text": "could"}, {"text": "cost"}, {"text": "utilities"}, {"text": ","}, {"text": "mainly"}, {"text": "those"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "use"}, {"text": "coal"}, {"text": ","}, {"text": "up"}, {"text": "to"}, {"text": "$"}, {"text": "4"}, {"text": "billion"}, {"text": "*U*"}, {"text": "a"}, {"text": "year"}, {"text": "."}, {"text": "The"}, {"text": "proposal"}, {"text": "comes"}, {"text": "as"}, {"text": "a"}, {"text": "surprise"}, {"text": "even"}, {"text": "to"}, {"text": "administration"}, {"text": "officials"}, {"text": "and"}, {"text": "temporarily"}, {"text": "throws"}, {"text": "into"}, {"text": "chaos"}, {"text": "the"}, {"text": "House"}, {"text": "'s"}, {"text": "work"}, {"text": "on"}, {"text": "clean-air"}, {"text": "legislation"}, {"text": "."}, {"text": "As"}, {"text": "chairman"}, {"text": "of"}, {"text": "the"}, {"text": "House"}, {"text": "Energy"}, {"text": "and"}, {"text": "Commerce"}, {"text": "Committee"}, {"text": ","}, {"text": "Mr."}, {"text": "Dingell"}, {"text": "has"}, {"text": "almost"}, {"text": "single-handed"}, {"text": "control"}, {"text": "over"}, {"text": "clean-air"}, {"text": "legislation"}, {"text": "."}, {"text": "People"}, {"text": "close"}, {"text": "to"}, {"text": "the"}, {"text": "utility"}, {"text": "industry"}, {"text": "said"}, {"text": "0"}, {"text": "Mr."}, {"text": "Dingell"}, {"text": "'s"}, {"text": "proposal"}, {"text": "appears"}, {"text": "*-3"}, {"text": "to"}, {"text": "guarantee"}, {"text": "only"}, {"text": "an"}, {"text": "estimated"}, {"text": "seven-million-ton"}, {"text": "cut"}, {"text": "in"}, {"text": "annual"}, {"text": "sulfur-dioxide"}, {"text": "emissions"}, {"text": "that"}, {"text": "*T*-2"}, {"text": "lead"}, {"text": "to"}, {"text": "acid"}, {"text": "rain"}, {"text": ","}, {"text": "though"}, {"text": "additional"}, {"text": "cuts"}, {"text": "could"}, {"text": "be"}, {"text": "ordered"}, {"text": "*-1"}, {"text": "later"}, {"text": "."}, {"text": "Mr."}, {"text": "Bush"}, {"text": "'s"}, {"text": "legislative"}, {"text": "package"}, {"text": "promises"}, {"text": "*-1"}, {"text": "to"}, {"text": "cut"}, {"text": "emissions"}, {"text": "by"}, {"text": "10"}, {"text": "million"}, {"text": "tons"}, {"text": "--"}, {"text": "basically"}, {"text": "in"}, {"text": "half"}, {"text": "--"}, {"text": "by"}, {"text": "the"}, {"text": "year"}, {"text": "2000"}, {"text": "."}, {"text": "Although"}, {"text": "final"}, {"text": "details"}, {"text": "were"}, {"text": "n't"}, {"text": "available"}, {"text": ","}, {"text": "sources"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "Dingell"}, {"text": "plan"}, {"text": "would"}, {"text": "abandon"}, {"text": "the"}, {"text": "president"}, {"text": "'s"}, {"text": "proposal"}, {"text": "for"}, {"text": "a"}, {"text": "cap"}, {"text": "on"}, {"text": "utilities"}, {"text": "'"}, {"text": "sulfur-dioxide"}, {"text": "emissions"}, {"text": "."}, {"text": "That"}, {"text": "proposal"}, {"text": "had"}, {"text": "been"}, {"text": "hailed"}, {"text": "*-1"}, {"text": "by"}, {"text": "environmentalists"}, {"text": "but"}, {"text": "despised"}, {"text": "*-1"}, {"text": "by"}, {"text": "utilities"}, {"text": "because"}, {"text": "they"}, {"text": "feared"}, {"text": "0"}, {"text": "it"}, {"text": "would"}, {"text": "limit"}, {"text": "their"}, {"text": "growth"}, {"text": "."}, {"text": "It"}, {"text": "also"}, {"text": "would"}, {"text": "junk"}, {"text": "an"}, {"text": "innovative"}, {"text": "market-based"}, {"text": "system"}, {"text": "for"}, {"text": "*"}, {"text": "trading"}, {"text": "emissions"}, {"text": "credits"}, {"text": "among"}, {"text": "polluters"}, {"text": "."}, {"text": "In"}, {"text": "addition"}, {"text": ","}, {"text": "it"}, {"text": "is"}, {"text": "believed"}, {"text": "*-1"}, {"text": "to"}, {"text": "offer"}, {"text": "a"}, {"text": "cost-sharing"}, {"text": "mechanism"}, {"text": "that"}, {"text": "*T*-2"}, {"text": "would"}, {"text": "help"}, {"text": "*-3"}, {"text": "subsidize"}, {"text": "the"}, {"text": "clean-up"}, {"text": "costs"}, {"text": "for"}, {"text": "the"}, {"text": "dirtiest"}, {"text": "coal-fired"}, {"text": "utilities"}, {"text": "in"}, {"text": "the"}, {"text": "country"}, {"text": ","}, {"text": "*-3"}, {"text": "sparing"}, {"text": "their"}, {"text": "customers"}, {"text": "from"}, {"text": "exorbitant"}, {"text": "jumps"}, {"text": "in"}, {"text": "their"}, {"text": "electric"}, {"text": "bills"}, {"text": "."}, {"text": "The"}, {"text": "administration"}, {"text": ","}, {"text": "*-1"}, {"text": "sticking"}, {"text": "to"}, {"text": "its"}, {"text": "vow"}, {"text": "of"}, {"text": "*"}, {"text": "avoiding"}, {"text": "tax"}, {"text": "increases"}, {"text": ","}, {"text": "has"}, {"text": "staunchly"}, {"text": "opposed"}, {"text": "cost-sharing"}, {"text": "."}, {"text": "Mr."}, {"text": "Dingell"}, {"text": "'s"}, {"text": "staff"}, {"text": "was"}, {"text": "expected"}, {"text": "*-2"}, {"text": "to"}, {"text": "present"}, {"text": "its"}, {"text": "acid-rain"}, {"text": "alternative"}, {"text": "to"}, {"text": "other"}, {"text": "committee"}, {"text": "members"}, {"text": ","}, {"text": "apparently"}, {"text": "in"}, {"text": "an"}, {"text": "attempt"}, {"text": "*"}, {"text": "to"}, {"text": "appease"}, {"text": "Midwestern"}, {"text": "lawmakers"}, {"text": "from"}, {"text": "high-polluting"}, {"text": "states"}, {"text": "who"}, {"text": "*T*-1"}, {"text": "insist"}, {"text": "on"}, {"text": "cost-sharing"}, {"text": "."}, {"text": "It"}, {"text": "*EXP*-1"}, {"text": "is"}, {"text": "n't"}, {"text": "clear"}, {"text": ","}, {"text": "however"}, {"text": ","}, {"text": "whether"}, {"text": "support"}, {"text": "for"}, {"text": "the"}, {"text": "proposal"}, {"text": "will"}, {"text": "be"}, {"text": "broad"}, {"text": "enough"}, {"text": "*"}, {"text": "to"}, {"text": "pose"}, {"text": "a"}, {"text": "serious"}, {"text": "challenge"}, {"text": "to"}, {"text": "the"}, {"text": "White"}, {"text": "House"}, {"text": "'s"}, {"text": "acid-rain"}, {"text": "plan"}, {"text": "."}, {"text": "While"}, {"text": "the"}, {"text": "new"}, {"text": "proposal"}, {"text": "might"}, {"text": "appeal"}, {"text": "to"}, {"text": "the"}, {"text": "dirtiest"}, {"text": "utilities"}, {"text": ","}, {"text": "it"}, {"text": "might"}, {"text": "not"}, {"text": "win"}, {"text": "the"}, {"text": "support"}, {"text": "of"}, {"text": "utilities"}, {"text": ","}, {"text": "many"}, {"text": "in"}, {"text": "the"}, {"text": "West"}, {"text": ","}, {"text": "that"}, {"text": "*T*-1"}, {"text": "already"}, {"text": "have"}, {"text": "added"}, {"text": "expensive"}, {"text": "cleanup"}, {"text": "equipment"}, {"text": "or"}, {"text": "burn"}, {"text": "cleaner-burning"}, {"text": "fuels"}, {"text": "."}, {"text": "Lawmakers"}, {"text": "representing"}, {"text": "some"}, {"text": "of"}, {"text": "the"}, {"text": "cleaner"}, {"text": "utilities"}, {"text": "have"}, {"text": "been"}, {"text": "quietly"}, {"text": "working"}, {"text": "with"}, {"text": "the"}, {"text": "White"}, {"text": "House"}, {"text": "*-1"}, {"text": "to"}, {"text": "devise"}, {"text": "ways"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "tinker"}, {"text": "with"}, {"text": "the"}, {"text": "administration"}, {"text": "bill"}, {"text": "*T*-2"}, {"text": "*"}, {"text": "to"}, {"text": "address"}, {"text": "their"}, {"text": "acid-rain"}, {"text": "concerns"}, {"text": "*PPA*-3"}, {"text": "."}, {"text": "American"}, {"text": "City"}, {"text": "Business"}, {"text": "Journals"}, {"text": "Inc."}, {"text": "said"}, {"text": "0"}, {"text": "its"}, {"text": "president"}, {"text": ","}, {"text": "Michael"}, {"text": "K."}, {"text": "Russell"}, {"text": ","}, {"text": "will"}, {"text": "resign"}, {"text": "rather"}, {"text": "than"}, {"text": "relocate"}, {"text": "to"}, {"text": "new"}, {"text": "headquarters"}, {"text": "in"}, {"text": "Charlotte"}, {"text": ","}, {"text": "N.C"}, {"text": "."}, {"text": "Mr."}, {"text": "Russell"}, {"text": ","}, {"text": "who"}, {"text": "*T*-1"}, {"text": "co-founded"}, {"text": "the"}, {"text": "Kansas"}, {"text": "City"}, {"text": ","}, {"text": "Mo.-based"}, {"text": "local"}, {"text": "business"}, {"text": "publications"}, {"text": "concern"}, {"text": "here"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "he"}, {"text": "would"}, {"text": "have"}, {"text": "a"}, {"text": "five-year"}, {"text": "consulting"}, {"text": "agreement"}, {"text": "with"}, {"text": "the"}, {"text": "company"}, {"text": ","}, {"text": "which"}, {"text": "*T*-2"}, {"text": "recently"}, {"text": "underwent"}, {"text": "an"}, {"text": "ownership"}, {"text": "change"}, {"text": "."}, {"text": "Earlier"}, {"text": "this"}, {"text": "year"}, {"text": "Shaw"}, {"text": "Publishing"}, {"text": "Inc."}, {"text": ","}, {"text": "Charlotte"}, {"text": ","}, {"text": "acquired"}, {"text": "30"}, {"text": "%"}, {"text": "of"}, {"text": "American"}, {"text": "City"}, {"text": "*T*-1"}, {"text": "and"}, {"text": "has"}, {"text": "an"}, {"text": "agreement"}, {"text": "*"}, {"text": "to"}, {"text": "acquire"}, {"text": "a"}, {"text": "further"}, {"text": "25"}, {"text": "%"}, {"text": "from"}, {"text": "E.W."}, {"text": "Scripps"}, {"text": "Co."}, {"text": "next"}, {"text": "year"}, {"text": "."}, {"text": "Ray"}, {"text": "Shaw"}, {"text": ","}, {"text": "chairman"}, {"text": "of"}, {"text": "American"}, {"text": "City"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "he"}, {"text": "would"}, {"text": "assume"}, {"text": "Mr."}, {"text": "Russell"}, {"text": "'s"}, {"text": "responsibilities"}, {"text": "if"}, {"text": "a"}, {"text": "successor"}, {"text": "is"}, {"text": "n't"}, {"text": "found"}, {"text": "*-1"}, {"text": "this"}, {"text": "month"}, {"text": "."}, {"text": "A"}, {"text": "nickname"}, {"text": "for"}, {"text": "measures"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "stop"}, {"text": "the"}, {"text": "market"}, {"text": "from"}, {"text": "*-2"}, {"text": "plunging"}, {"text": "too"}, {"text": "far"}, {"text": "too"}, {"text": "fast"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Several"}, {"text": "moves"}, {"text": "were"}, {"text": "taken"}, {"text": "*-1"}, {"text": "following"}, {"text": "the"}, {"text": "October"}, {"text": "1987"}, {"text": "crash"}, {"text": "*"}, {"text": "to"}, {"text": "coordinate"}, {"text": "--"}, {"text": "and"}, {"text": "sometimes"}, {"text": "deliberately"}, {"text": "disconnect"}, {"text": "*PPA*-2"}, {"text": "--"}, {"text": "the"}, {"text": "stock"}, {"text": "and"}, {"text": "futures"}, {"text": "markets"}, {"text": "in"}, {"text": "times"}, {"text": "of"}, {"text": "heightened"}, {"text": "volatility"}, {"text": "."}, {"text": "On"}, {"text": "the"}, {"text": "Big"}, {"text": "Board"}, {"text": ","}, {"text": "a"}, {"text": "``"}, {"text": "side"}, {"text": "car"}, {"text": "''"}, {"text": "is"}, {"text": "put"}, {"text": "*-1"}, {"text": "into"}, {"text": "effect"}, {"text": "when"}, {"text": "the"}, {"text": "S&P"}, {"text": "futures"}, {"text": "rise"}, {"text": "or"}, {"text": "fall"}, {"text": "12"}, {"text": "points"}, {"text": "*T*-2"}, {"text": "."}, {"text": "The"}, {"text": "side"}, {"text": "car"}, {"text": "routes"}, {"text": "program"}, {"text": "trades"}, {"text": "into"}, {"text": "a"}, {"text": "special"}, {"text": "computer"}, {"text": "file"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "scans"}, {"text": "for"}, {"text": "imbalances"}, {"text": "of"}, {"text": "buy"}, {"text": "and"}, {"text": "sell"}, {"text": "orders"}, {"text": "."}, {"text": "On"}, {"text": "the"}, {"text": "Chicago"}, {"text": "Mercantile"}, {"text": "Exchange"}, {"text": ","}, {"text": "S&P"}, {"text": "500"}, {"text": "futures"}, {"text": "are"}, {"text": "not"}, {"text": "allowed"}, {"text": "*-1"}, {"text": "to"}, {"text": "fall"}, {"text": "further"}, {"text": "than"}, {"text": "12"}, {"text": "points"}, {"text": "from"}, {"text": "the"}, {"text": "previous"}, {"text": "day"}, {"text": "'s"}, {"text": "close"}, {"text": "for"}, {"text": "half"}, {"text": "an"}, {"text": "hour"}, {"text": "."}, {"text": "If"}, {"text": ","}, {"text": "when"}, {"text": "trading"}, {"text": "resumes"}, {"text": "*T*-1"}, {"text": ","}, {"text": "the"}, {"text": "S&P"}, {"text": "futures"}, {"text": "fall"}, {"text": "30"}, {"text": "points"}, {"text": "from"}, {"text": "the"}, {"text": "previous"}, {"text": "day"}, {"text": "'s"}, {"text": "close"}, {"text": ","}, {"text": "a"}, {"text": "one-hour"}, {"text": "trading"}, {"text": "halt"}, {"text": "takes"}, {"text": "effect"}, {"text": "."}, {"text": "Also"}, {"text": ","}, {"text": "the"}, {"text": "reforms"}, {"text": "allow"}, {"text": "the"}, {"text": "Big"}, {"text": "Board"}, {"text": "to"}, {"text": "halt"}, {"text": "trading"}, {"text": "for"}, {"text": "one"}, {"text": "hour"}, {"text": "if"}, {"text": "the"}, {"text": "Dow"}, {"text": "Jones"}, {"text": "Industrial"}, {"text": "Average"}, {"text": "falls"}, {"text": "250"}, {"text": "points"}, {"text": ","}, {"text": "and"}, {"text": "for"}, {"text": "two"}, {"text": "more"}, {"text": "hours"}, {"text": "if"}, {"text": "the"}, {"text": "Dow"}, {"text": "slides"}, {"text": "an"}, {"text": "additional"}, {"text": "150"}, {"text": "points"}, {"text": "on"}, {"text": "the"}, {"text": "same"}, {"text": "day"}, {"text": "."}, {"text": "DOT"}, {"text": "System"}, {"text": "--"}, {"text": "The"}, {"text": "``"}, {"text": "Designated"}, {"text": "Order"}, {"text": "Turnaround"}, {"text": "''"}, {"text": "System"}, {"text": "was"}, {"text": "launched"}, {"text": "*-1"}, {"text": "by"}, {"text": "the"}, {"text": "New"}, {"text": "York"}, {"text": "Stock"}, {"text": "Exchange"}, {"text": "in"}, {"text": "March"}, {"text": "1976"}, {"text": ","}, {"text": "*"}, {"text": "to"}, {"text": "offer"}, {"text": "automatic"}, {"text": ","}, {"text": "high-speed"}, {"text": "order"}, {"text": "processing"}, {"text": "."}, {"text": "A"}, {"text": "faster"}, {"text": "version"}, {"text": ","}, {"text": "the"}, {"text": "SuperDot"}, {"text": ","}, {"text": "was"}, {"text": "launched"}, {"text": "*-1"}, {"text": "in"}, {"text": "1984"}, {"text": "."}, {"text": "*-2"}, {"text": "Used"}, {"text": "*-1"}, {"text": "by"}, {"text": "program"}, {"text": "traders"}, {"text": "and"}, {"text": "others"}, {"text": "*"}, {"text": "to"}, {"text": "zip"}, {"text": "orders"}, {"text": "into"}, {"text": "the"}, {"text": "exchange"}, {"text": ","}, {"text": "SuperDot"}, {"text": "handles"}, {"text": "about"}, {"text": "80"}, {"text": "%"}, {"text": "of"}, {"text": "all"}, {"text": "orders"}, {"text": "entered"}, {"text": "*"}, {"text": "at"}, {"text": "the"}, {"text": "exchange"}, {"text": "."}, {"text": "Futures"}, {"text": "Contracts"}, {"text": "--"}, {"text": "Obligations"}, {"text": "*"}, {"text": "to"}, {"text": "buy"}, {"text": "-LRB-"}, {"text": "for"}, {"text": "those"}, {"text": "who"}, {"text": "*T*-1"}, {"text": "have"}, {"text": "purchased"}, {"text": "a"}, {"text": "contract"}, {"text": "-RRB-"}, {"text": "or"}, {"text": "deliver"}, {"text": "-LRB-"}, {"text": "for"}, {"text": "those"}, {"text": "who"}, {"text": "*T*-2"}, {"text": "sold"}, {"text": "one"}, {"text": "-RRB-"}, {"text": "a"}, {"text": "quantity"}, {"text": "of"}, {"text": "the"}, {"text": "underlying"}, {"text": "commodity"}, {"text": "or"}, {"text": "financial"}, {"text": "instrument"}, {"text": "at"}, {"text": "the"}, {"text": "agreed-upon"}, {"text": "price"}, {"text": "by"}, {"text": "a"}, {"text": "certain"}, {"text": "date"}, {"text": "."}, {"text": "Most"}, {"text": "contracts"}, {"text": "are"}, {"text": "simply"}, {"text": "nullified"}, {"text": "*-1"}, {"text": "by"}, {"text": "an"}, {"text": "opposite"}, {"text": "trade"}, {"text": "before"}, {"text": "they"}, {"text": "come"}, {"text": "due"}, {"text": "."}, {"text": "Indexing"}, {"text": "--"}, {"text": "Many"}, {"text": "investors"}, {"text": ","}, {"text": "mainly"}, {"text": "institutions"}, {"text": ","}, {"text": "follow"}, {"text": "an"}, {"text": "investment"}, {"text": "strategy"}, {"text": "of"}, {"text": "*"}, {"text": "buying"}, {"text": "and"}, {"text": "holding"}, {"text": "a"}, {"text": "mix"}, {"text": "of"}, {"text": "stocks"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "to"}, {"text": "match"}, {"text": "the"}, {"text": "performance"}, {"text": "of"}, {"text": "a"}, {"text": "broad"}, {"text": "stock-market"}, {"text": "barometer"}, {"text": "such"}, {"text": "as"}, {"text": "the"}, {"text": "S&P"}, {"text": "500"}, {"text": "."}, {"text": "Many"}, {"text": "institutional"}, {"text": "index"}, {"text": "funds"}, {"text": "are"}, {"text": "active"}, {"text": "program"}, {"text": "traders"}, {"text": ","}, {"text": "*-1"}, {"text": "swapping"}, {"text": "their"}, {"text": "stocks"}, {"text": "for"}, {"text": "futures"}, {"text": "when"}, {"text": "profitable"}, {"text": "*"}, {"text": "to"}, {"text": "do"}, {"text": "so"}, {"text": "*T*-2"}, {"text": "."}, {"text": "Program"}, {"text": "trading"}, {"text": "--"}, {"text": "A"}, {"text": "wide"}, {"text": "range"}, {"text": "of"}, {"text": "computer-assisted"}, {"text": "portfolio"}, {"text": "trading"}, {"text": "strategies"}, {"text": "involving"}, {"text": "the"}, {"text": "simultaneous"}, {"text": "purchase"}, {"text": "or"}, {"text": "sale"}, {"text": "of"}, {"text": "15"}, {"text": "or"}, {"text": "more"}, {"text": "stocks"}, {"text": "."}, {"text": "Quant"}, {"text": "--"}, {"text": "Generally"}, {"text": ","}, {"text": "any"}, {"text": "Wall"}, {"text": "Street"}, {"text": "analyst"}, {"text": "who"}, {"text": "*T*-1"}, {"text": "employs"}, {"text": "quantitive"}, {"text": "research"}, {"text": "techniques"}, {"text": "."}, {"text": "The"}, {"text": "newest"}, {"text": "breed"}, {"text": ","}, {"text": "also"}, {"text": "called"}, {"text": "*"}, {"text": "``"}, {"text": "rocket"}, {"text": "scientists"}, {"text": "''"}, {"text": "because"}, {"text": "of"}, {"text": "their"}, {"text": "backgrounds"}, {"text": "in"}, {"text": "physics"}, {"text": "and"}, {"text": "mathematics"}, {"text": ","}, {"text": "devise"}, {"text": "the"}, {"text": "complex"}, {"text": "hedging"}, {"text": "and"}, {"text": "trading"}, {"text": "strategies"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "are"}, {"text": "popularly"}, {"text": "known"}, {"text": "*-2"}, {"text": "as"}, {"text": "program"}, {"text": "trading"}, {"text": "."}, {"text": "Stock-index"}, {"text": "arbitrage"}, {"text": "--"}, {"text": "*"}, {"text": "Buying"}, {"text": "or"}, {"text": "selling"}, {"text": "baskets"}, {"text": "of"}, {"text": "stocks"}, {"text": "while"}, {"text": "at"}, {"text": "the"}, {"text": "same"}, {"text": "time"}, {"text": "*-1"}, {"text": "executing"}, {"text": "offsetting"}, {"text": "trades"}, {"text": "in"}, {"text": "stock-index"}, {"text": "futures"}, {"text": "or"}, {"text": "options"}, {"text": "."}, {"text": "Traders"}, {"text": "profit"}, {"text": "by"}, {"text": "*-1"}, {"text": "trying"}, {"text": "*-2"}, {"text": "to"}, {"text": "capture"}, {"text": "fleeting"}, {"text": "price"}, {"text": "discrepancies"}, {"text": "between"}, {"text": "stocks"}, {"text": "and"}, {"text": "the"}, {"text": "index"}, {"text": "futures"}, {"text": "or"}, {"text": "options"}, {"text": "."}, {"text": "If"}, {"text": "stocks"}, {"text": "are"}, {"text": "temporarily"}, {"text": "``"}, {"text": "cheaper"}, {"text": "''"}, {"text": "than"}, {"text": "futures"}, {"text": ","}, {"text": "for"}, {"text": "example"}, {"text": ","}, {"text": "an"}, {"text": "arbitrager"}, {"text": "will"}, {"text": "buy"}, {"text": "stocks"}, {"text": "and"}, {"text": "sell"}, {"text": "futures"}, {"text": "."}, {"text": "Stock-index"}, {"text": "futures"}, {"text": "--"}, {"text": "Contracts"}, {"text": "*"}, {"text": "to"}, {"text": "buy"}, {"text": "or"}, {"text": "sell"}, {"text": "the"}, {"text": "cash"}, {"text": "value"}, {"text": "of"}, {"text": "a"}, {"text": "stock"}, {"text": "index"}, {"text": "by"}, {"text": "a"}, {"text": "certain"}, {"text": "date"}, {"text": "."}, {"text": "The"}, {"text": "cash"}, {"text": "value"}, {"text": "is"}, {"text": "determined"}, {"text": "*-1"}, {"text": "by"}, {"text": "*"}, {"text": "multiplying"}, {"text": "the"}, {"text": "index"}, {"text": "number"}, {"text": "by"}, {"text": "a"}, {"text": "specified"}, {"text": "amount"}, {"text": "."}, {"text": "The"}, {"text": "most"}, {"text": "common"}, {"text": "program-trading"}, {"text": "vehicles"}, {"text": "are"}, {"text": "futures"}, {"text": "contracts"}, {"text": "on"}, {"text": "Standard"}, {"text": "&"}, {"text": "poor"}, {"text": "'s"}, {"text": "500-stock"}, {"text": "index"}, {"text": "-LRB-"}, {"text": "traded"}, {"text": "*"}, {"text": "on"}, {"text": "the"}, {"text": "Chicago"}, {"text": "Mercantile"}, {"text": "Exchange"}, {"text": "-RRB-"}, {"text": ";"}, {"text": "the"}, {"text": "Major"}, {"text": "Market"}, {"text": "Index"}, {"text": ","}, {"text": "a"}, {"text": "20-stock"}, {"text": "index"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "mimics"}, {"text": "the"}, {"text": "Dow"}, {"text": "Jones"}, {"text": "Industrial"}, {"text": "Average"}, {"text": "-LRB-"}, {"text": "traded"}, {"text": "*"}, {"text": "on"}, {"text": "the"}, {"text": "chicago"}, {"text": "Board"}, {"text": "of"}, {"text": "Trade"}, {"text": "-RRB-"}, {"text": ";"}, {"text": "and"}, {"text": "the"}, {"text": "S&P"}, {"text": "100"}, {"text": "options"}, {"text": "-LRB-"}, {"text": "traded"}, {"text": "*"}, {"text": "on"}, {"text": "the"}, {"text": "Chicago"}, {"text": "Board"}, {"text": "Options"}, {"text": "Exchange"}, {"text": ","}, {"text": "and"}, {"text": "based"}, {"text": "*"}, {"text": "on"}, {"text": "100"}, {"text": "stocks"}, {"text": "selected"}, {"text": "*"}, {"text": "from"}, {"text": "the"}, {"text": "S&P"}, {"text": "500"}, {"text": "-RRB-"}, {"text": "."}, {"text": "Stock-index"}, {"text": "options"}, {"text": "--"}, {"text": "Options"}, {"text": "give"}, {"text": "holders"}, {"text": "the"}, {"text": "right"}, {"text": "*RNR*-1"}, {"text": ","}, {"text": "but"}, {"text": "not"}, {"text": "the"}, {"text": "obligation"}, {"text": "*RNR*-1"}, {"text": ","}, {"text": "*"}, {"text": "to"}, {"text": "buy"}, {"text": "-LRB-"}, {"text": "a"}, {"text": "call"}, {"text": "-RRB-"}, {"text": "or"}, {"text": "sell"}, {"text": "-LRB-"}, {"text": "a"}, {"text": "put"}, {"text": "-RRB-"}, {"text": "a"}, {"text": "specified"}, {"text": "amount"}, {"text": "of"}, {"text": "an"}, {"text": "underlying"}, {"text": "investment"}, {"text": "by"}, {"text": "a"}, {"text": "certin"}, {"text": "date"}, {"text": "at"}, {"text": "a"}, {"text": "preset"}, {"text": "price"}, {"text": ","}, {"text": "known"}, {"text": "*"}, {"text": "as"}, {"text": "the"}, {"text": "strike"}, {"text": "price"}, {"text": "."}, {"text": "For"}, {"text": "stock"}, {"text": "indexes"}, {"text": ","}, {"text": "the"}, {"text": "underlying"}, {"text": "investment"}, {"text": "may"}, {"text": "be"}, {"text": "a"}, {"text": "stock-index"}, {"text": "futures"}, {"text": "contract"}, {"text": "or"}, {"text": "the"}, {"text": "cash"}, {"text": "value"}, {"text": "of"}, {"text": "a"}, {"text": "stock"}, {"text": "index"}, {"text": "."}, {"text": "For"}, {"text": "example"}, {"text": ","}, {"text": "there"}, {"text": "are"}, {"text": "options"}, {"text": "on"}, {"text": "the"}, {"text": "S&P"}, {"text": "500"}, {"text": "futures"}, {"text": "contract"}, {"text": "and"}, {"text": "on"}, {"text": "the"}, {"text": "S&P"}, {"text": "100"}, {"text": "index"}, {"text": "."}, {"text": "Uptick"}, {"text": "--"}, {"text": "An"}, {"text": "expression"}, {"text": "signifying"}, {"text": "that"}, {"text": "a"}, {"text": "transaction"}, {"text": "in"}, {"text": "a"}, {"text": "listed"}, {"text": "security"}, {"text": "occurred"}, {"text": "at"}, {"text": "a"}, {"text": "higher"}, {"text": "price"}, {"text": "than"}, {"text": "the"}, {"text": "previous"}, {"text": "transaction"}, {"text": "in"}, {"text": "that"}, {"text": "security"}, {"text": "."}, {"text": "New"}, {"text": "York"}, {"text": "financier"}, {"text": "Saul"}, {"text": "Steinberg"}, {"text": "sought"}, {"text": "federal"}, {"text": "permission"}, {"text": "*"}, {"text": "to"}, {"text": "buy"}, {"text": "more"}, {"text": "than"}, {"text": "15"}, {"text": "%"}, {"text": "of"}, {"text": "United"}, {"text": "Airlines"}, {"text": "'"}, {"text": "parent"}, {"text": ","}, {"text": "UAL"}, {"text": "Corp."}, {"text": ","}, {"text": "*-1"}, {"text": "saying"}, {"text": "0"}, {"text": "he"}, {"text": "might"}, {"text": "seek"}, {"text": "control"}, {"text": "of"}, {"text": "the"}, {"text": "nation"}, {"text": "'s"}, {"text": "second-largest"}, {"text": "airline"}, {"text": "."}, {"text": "Although"}, {"text": "takeover"}, {"text": "experts"}, {"text": "said"}, {"text": "0"}, {"text": "they"}, {"text": "doubted"}, {"text": "0"}, {"text": "Mr."}, {"text": "Steinberg"}, {"text": "will"}, {"text": "make"}, {"text": "a"}, {"text": "bid"}, {"text": "by"}, {"text": "himself"}, {"text": ","}, {"text": "the"}, {"text": "application"}, {"text": "by"}, {"text": "his"}, {"text": "Reliance"}, {"text": "Group"}, {"text": "Holdings"}, {"text": "Inc."}, {"text": "could"}, {"text": "signal"}, {"text": "his"}, {"text": "interest"}, {"text": "in"}, {"text": "*"}, {"text": "helping"}, {"text": "*-1"}, {"text": "revive"}, {"text": "a"}, {"text": "failed"}, {"text": "labor-management"}, {"text": "bid"}, {"text": "."}, {"text": "Such"}, {"text": "an"}, {"text": "application"}, {"text": "for"}, {"text": "federal"}, {"text": "antitrust"}, {"text": "clearance"}, {"text": "is"}, {"text": "necessary"}, {"text": "for"}, {"text": "any"}, {"text": "investor"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "might"}, {"text": "seek"}, {"text": "control"}, {"text": "."}, {"text": "But"}, {"text": "some"}, {"text": "investors"}, {"text": "have"}, {"text": "used"}, {"text": "such"}, {"text": "filings"}, {"text": "*-1"}, {"text": "to"}, {"text": "boost"}, {"text": "the"}, {"text": "value"}, {"text": "of"}, {"text": "their"}, {"text": "stock"}, {"text": "holdings"}, {"text": ","}, {"text": "which"}, {"text": "--"}, {"text": "without"}, {"text": "*-2"}, {"text": "buying"}, {"text": "more"}, {"text": "stock"}, {"text": "--"}, {"text": "they"}, {"text": "then"}, {"text": "sold"}, {"text": "*T*-3"}, {"text": "."}, {"text": "Takeover"}, {"text": "stock"}, {"text": "traders"}, {"text": "were"}, {"text": "puzzled"}, {"text": "*-1"}, {"text": "by"}, {"text": "the"}, {"text": "Reliance"}, {"text": "filing"}, {"text": "and"}, {"text": "cautioned"}, {"text": "that"}, {"text": "it"}, {"text": "does"}, {"text": "n't"}, {"text": "mean"}, {"text": "0"}, {"text": "Mr."}, {"text": "Steinberg"}, {"text": "will"}, {"text": "definitely"}, {"text": "seek"}, {"text": "control"}, {"text": "."}, {"text": "``"}, {"text": "Maybe"}, {"text": "he"}, {"text": "just"}, {"text": "wants"}, {"text": "*-2"}, {"text": "to"}, {"text": "make"}, {"text": "something"}, {"text": "happen"}, {"text": ","}, {"text": "''"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "one"}, {"text": "takeover"}, {"text": "expert"}, {"text": "."}, {"text": "One"}, {"text": "investment"}, {"text": "banker"}, {"text": "said"}, {"text": "0"}, {"text": "Mr."}, {"text": "Steinberg"}, {"text": "may"}, {"text": "be"}, {"text": "trying"}, {"text": "*-2"}, {"text": "to"}, {"text": "position"}, {"text": "himself"}, {"text": "as"}, {"text": "a"}, {"text": "friendly"}, {"text": "investor"}, {"text": "who"}, {"text": "*T*-1"}, {"text": "could"}, {"text": "help"}, {"text": "UAL"}, {"text": "Chairman"}, {"text": "Stephen"}, {"text": "Wolf"}, {"text": "revive"}, {"text": "a"}, {"text": "failed"}, {"text": "labor-management"}, {"text": "bid"}, {"text": "."}, {"text": "Mr."}, {"text": "Steinberg"}, {"text": ","}, {"text": "he"}, {"text": "suggested"}, {"text": "0"}, {"text": "*T*-2"}, {"text": ","}, {"text": "could"}, {"text": "replace"}, {"text": "British"}, {"text": "Airways"}, {"text": "PLC"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "has"}, {"text": "withdrawn"}, {"text": "from"}, {"text": "the"}, {"text": "buy-out"}, {"text": "group"}, {"text": "."}, {"text": "Reliance"}, {"text": "had"}, {"text": "already"}, {"text": "bought"}, {"text": "and"}, {"text": "sold"}, {"text": "UAL"}, {"text": "stock"}, {"text": "at"}, {"text": "a"}, {"text": "big"}, {"text": "profit"}, {"text": "without"}, {"text": "*-1"}, {"text": "making"}, {"text": "an"}, {"text": "antitrust"}, {"text": "filing"}, {"text": "before"}, {"text": "the"}, {"text": "collapse"}, {"text": "Oct."}, {"text": "13"}, {"text": "of"}, {"text": "the"}, {"text": "$"}, {"text": "6.79"}, {"text": "billion"}, {"text": "*U*"}, {"text": ","}, {"text": "$"}, {"text": "300-a-share"}, {"text": "*U*"}, {"text": "labor-management"}, {"text": "buy-out"}, {"text": "."}, {"text": "Reliance"}, {"text": "acquired"}, {"text": "a"}, {"text": "7"}, {"text": "%"}, {"text": "UAL"}, {"text": "stake"}, {"text": "early"}, {"text": "this"}, {"text": "year"}, {"text": "at"}, {"text": "an"}, {"text": "average"}, {"text": "cost"}, {"text": "of"}, {"text": "$"}, {"text": "110"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": ","}, {"text": "and"}, {"text": "reduced"}, {"text": "its"}, {"text": "stake"}, {"text": "to"}, {"text": "4.7"}, {"text": "%"}, {"text": "after"}, {"text": "UAL"}, {"text": "accepted"}, {"text": "the"}, {"text": "bid"}, {"text": "at"}, {"text": "prices"}, {"text": "higher"}, {"text": "than"}, {"text": "$"}, {"text": "282"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": "."}, {"text": "Market"}, {"text": "sources"}, {"text": "said"}, {"text": "0"}, {"text": "Reliance"}, {"text": "has"}, {"text": "already"}, {"text": "sold"}, {"text": "its"}, {"text": "entire"}, {"text": "UAL"}, {"text": "stake"}, {"text": ","}, {"text": "and"}, {"text": "thus"}, {"text": "would"}, {"text": "n't"}, {"text": "have"}, {"text": "any"}, {"text": "reason"}, {"text": "*"}, {"text": "to"}, {"text": "file"}, {"text": "the"}, {"text": "application"}, {"text": "simply"}, {"text": "*"}, {"text": "to"}, {"text": "boost"}, {"text": "the"}, {"text": "value"}, {"text": "of"}, {"text": "its"}, {"text": "stock"}, {"text": "."}, {"text": "But"}, {"text": "the"}, {"text": "exact"}, {"text": "amount"}, {"text": "of"}, {"text": "Reliance"}, {"text": "'s"}, {"text": "current"}, {"text": "holding"}, {"text": "has"}, {"text": "n't"}, {"text": "been"}, {"text": "formally"}, {"text": "disclosed"}, {"text": "*-1"}, {"text": "."}, {"text": "The"}, {"text": "filing"}, {"text": "adds"}, {"text": "a"}, {"text": "new"}, {"text": "twist"}, {"text": "to"}, {"text": "market"}, {"text": "speculation"}, {"text": "that"}, {"text": "Coniston"}, {"text": "Partners"}, {"text": ","}, {"text": "a"}, {"text": "New"}, {"text": "York"}, {"text": "money"}, {"text": "manager"}, {"text": ","}, {"text": "has"}, {"text": "bought"}, {"text": "more"}, {"text": "than"}, {"text": "5"}, {"text": "%"}, {"text": "of"}, {"text": "UAL"}, {"text": "stock"}, {"text": "and"}, {"text": "may"}, {"text": "challenge"}, {"text": "the"}, {"text": "UAL"}, {"text": "board"}, {"text": "'s"}, {"text": "decision"}, {"text": "*ICH*-1"}, {"text": "last"}, {"text": "week"}, {"text": "*"}, {"text": "to"}, {"text": "remain"}, {"text": "independent"}, {"text": "."}, {"text": "Speculation"}, {"text": "about"}, {"text": "Coniston"}, {"text": "has"}, {"text": "caused"}, {"text": "the"}, {"text": "stock"}, {"text": "to"}, {"text": "rebound"}, {"text": "from"}, {"text": "a"}, {"text": "low"}, {"text": "of"}, {"text": "$"}, {"text": "145"}, {"text": "*U*"}, {"text": "."}, {"text": "UAL"}, {"text": "'s"}, {"text": "announcement"}, {"text": "came"}, {"text": "after"}, {"text": "the"}, {"text": "market"}, {"text": "closed"}, {"text": "yesterday"}, {"text": "."}, {"text": "In"}, {"text": "composite"}, {"text": "New"}, {"text": "York"}, {"text": "Stock"}, {"text": "Exchange"}, {"text": "trading"}, {"text": ","}, {"text": "the"}, {"text": "shares"}, {"text": "closed"}, {"text": "at"}, {"text": "$"}, {"text": "177"}, {"text": "*U*"}, {"text": ","}, {"text": "up"}, {"text": "$"}, {"text": "1.50"}, {"text": "*U*"}, {"text": "."}, {"text": "UAL"}, {"text": "would"}, {"text": "n't"}, {"text": "elaborate"}, {"text": "on"}, {"text": "a"}, {"text": "statement"}, {"text": "that"}, {"text": "it"}, {"text": "had"}, {"text": "been"}, {"text": "notified"}, {"text": "*-1"}, {"text": "of"}, {"text": "the"}, {"text": "filing"}, {"text": "by"}, {"text": "Reliance"}, {"text": "."}, {"text": "Reliance"}, {"text": "confirmed"}, {"text": "the"}, {"text": "filing"}, {"text": "but"}, {"text": "would"}, {"text": "n't"}, {"text": "elaborate"}, {"text": "."}, {"text": "Some"}, {"text": "takeover"}, {"text": "experts"}, {"text": "were"}, {"text": "skeptical"}, {"text": ","}, {"text": "*-1"}, {"text": "saying"}, {"text": "0"}, {"text": "it"}, {"text": "*EXP*-2"}, {"text": "was"}, {"text": "possible"}, {"text": "that"}, {"text": "Mr."}, {"text": "Steinberg"}, {"text": "made"}, {"text": "the"}, {"text": "filing"}, {"text": "only"}, {"text": "*-3"}, {"text": "to"}, {"text": "help"}, {"text": "*-4"}, {"text": "boost"}, {"text": "the"}, {"text": "value"}, {"text": "of"}, {"text": "any"}, {"text": "remaining"}, {"text": "Reliance"}, {"text": "stake"}, {"text": "in"}, {"text": "UAL"}, {"text": "."}, {"text": "Mr."}, {"text": "Steinberg"}, {"text": "is"}, {"text": "thought"}, {"text": "*-1"}, {"text": "to"}, {"text": "be"}, {"text": "on"}, {"text": "friendly"}, {"text": "terms"}, {"text": "with"}, {"text": "UAL"}, {"text": "'s"}, {"text": "Mr."}, {"text": "Wolf"}, {"text": "."}, {"text": "The"}, {"text": "investor"}, {"text": "was"}, {"text": "instrumental"}, {"text": "in"}, {"text": "*"}, {"text": "tapping"}, {"text": "Mr."}, {"text": "Wolf"}, {"text": "to"}, {"text": "run"}, {"text": "the"}, {"text": "air"}, {"text": "cargo"}, {"text": "unit"}, {"text": "of"}, {"text": "Tiger"}, {"text": "International"}, {"text": "Inc"}, {"text": "."}, {"text": "Mr."}, {"text": "Wolf"}, {"text": "'s"}, {"text": "success"}, {"text": "in"}, {"text": "that"}, {"text": "job"}, {"text": "helped"}, {"text": "him"}, {"text": "land"}, {"text": "the"}, {"text": "top"}, {"text": "job"}, {"text": "with"}, {"text": "UAL"}, {"text": "in"}, {"text": "December"}, {"text": "1987"}, {"text": "."}, {"text": "But"}, {"text": "any"}, {"text": "potential"}, {"text": "acquirer"}, {"text": "must"}, {"text": "attempt"}, {"text": "*-2"}, {"text": "to"}, {"text": "reach"}, {"text": "some"}, {"text": "kind"}, {"text": "of"}, {"text": "accord"}, {"text": "with"}, {"text": "the"}, {"text": "company"}, {"text": "'s"}, {"text": "employees"}, {"text": ","}, {"text": "primarily"}, {"text": "its"}, {"text": "pilots"}, {"text": "and"}, {"text": "the"}, {"text": "powerful"}, {"text": "machinists"}, {"text": "'"}, {"text": "union"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "has"}, {"text": "opposed"}, {"text": "a"}, {"text": "takeover"}, {"text": "."}, {"text": "A.L."}, {"text": "Williams"}, {"text": "Corp."}, {"text": "was"}, {"text": "merged"}, {"text": "*-1"}, {"text": "into"}, {"text": "Primerica"}, {"text": "Corp."}, {"text": ","}, {"text": "New"}, {"text": "York"}, {"text": ","}, {"text": "after"}, {"text": "a"}, {"text": "special"}, {"text": "meeting"}, {"text": "of"}, {"text": "Williams"}, {"text": "shareholders"}, {"text": "cleared"}, {"text": "the"}, {"text": "transaction"}, {"text": ","}, {"text": "the"}, {"text": "companies"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "."}, {"text": "Primerica"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "had"}, {"text": "owned"}, {"text": "nearly"}, {"text": "70"}, {"text": "%"}, {"text": "of"}, {"text": "Williams"}, {"text": ","}, {"text": "will"}, {"text": "pay"}, {"text": "about"}, {"text": "16.7"}, {"text": "million"}, {"text": "shares"}, {"text": ","}, {"text": "currently"}, {"text": "valued"}, {"text": "*"}, {"text": "at"}, {"text": "almost"}, {"text": "$"}, {"text": "472"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "for"}, {"text": "the"}, {"text": "rest"}, {"text": "of"}, {"text": "Williams"}, {"text": "."}, {"text": "The"}, {"text": "financial-services"}, {"text": "company"}, {"text": "will"}, {"text": "pay"}, {"text": "0.82"}, {"text": "share"}, {"text": "for"}, {"text": "each"}, {"text": "Williams"}, {"text": "share"}, {"text": "."}, {"text": "Williams"}, {"text": "shares"}, {"text": ","}, {"text": "which"}, {"text": "*T*-2"}, {"text": "were"}, {"text": "*-2"}, {"text": "to"}, {"text": "be"}, {"text": "delisted"}, {"text": "*-1"}, {"text": "from"}, {"text": "the"}, {"text": "New"}, {"text": "York"}, {"text": "Stock"}, {"text": "Exchange"}, {"text": "after"}, {"text": "the"}, {"text": "close"}, {"text": "of"}, {"text": "composite"}, {"text": "trading"}, {"text": "yesterday"}, {"text": ","}, {"text": "closed"}, {"text": "at"}, {"text": "$"}, {"text": "23.25"}, {"text": "*U*"}, {"text": ","}, {"text": "off"}, {"text": "12.5"}, {"text": "cents"}, {"text": "."}, {"text": "Primerica"}, {"text": "closed"}, {"text": "at"}, {"text": "$"}, {"text": "28.25"}, {"text": "*U*"}, {"text": ","}, {"text": "down"}, {"text": "50"}, {"text": "cents"}, {"text": "."}, {"text": "Williams"}, {"text": ","}, {"text": "Duluth"}, {"text": ","}, {"text": "Ga."}, {"text": ","}, {"text": "is"}, {"text": "an"}, {"text": "insurance"}, {"text": "and"}, {"text": "financial-services"}, {"text": "holding"}, {"text": "company"}, {"text": "."}, {"text": "Its"}, {"text": "subsidiaries"}, {"text": "'"}, {"text": "services"}, {"text": "are"}, {"text": "marketed"}, {"text": "*-1"}, {"text": "by"}, {"text": "closely"}, {"text": "held"}, {"text": "A.L."}, {"text": "Williams"}, {"text": "&"}, {"text": "Associates"}, {"text": "."}, {"text": "Primerica"}, {"text": ","}, {"text": "as"}, {"text": "*"}, {"text": "expected"}, {"text": ","}, {"text": "also"}, {"text": "acquired"}, {"text": "certain"}, {"text": "assets"}, {"text": "of"}, {"text": "the"}, {"text": "agency"}, {"text": "and"}, {"text": "assumed"}, {"text": "certain"}, {"text": "of"}, {"text": "its"}, {"text": "liabilities"}, {"text": "."}, {"text": "Terms"}, {"text": "were"}, {"text": "n't"}, {"text": "disclosed"}, {"text": "*-1"}, {"text": "."}, {"text": "Intelogic"}, {"text": "Trace"}, {"text": "Inc."}, {"text": ","}, {"text": "San"}, {"text": "Antonio"}, {"text": ","}, {"text": "Texas"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "bought"}, {"text": "2.7"}, {"text": "million"}, {"text": "shares"}, {"text": "*RNR*-1"}, {"text": ","}, {"text": "or"}, {"text": "about"}, {"text": "18"}, {"text": "%"}, {"text": "*RNR*-1"}, {"text": ","}, {"text": "of"}, {"text": "its"}, {"text": "common"}, {"text": "stock"}, {"text": "from"}, {"text": "an"}, {"text": "unaffiliated"}, {"text": "shareholder"}, {"text": "for"}, {"text": "$"}, {"text": "3.625"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": ","}, {"text": "or"}, {"text": "$"}, {"text": "9.9"}, {"text": "million"}, {"text": "*U*"}, {"text": "."}, {"text": "The"}, {"text": "move"}, {"text": "boosts"}, {"text": "Intelogic"}, {"text": "Chairman"}, {"text": "Asher"}, {"text": "Edelman"}, {"text": "'s"}, {"text": "stake"}, {"text": "to"}, {"text": "20"}, {"text": "%"}, {"text": "from"}, {"text": "16.2"}, {"text": "%"}, {"text": "and"}, {"text": "may"}, {"text": "help"}, {"text": "*-2"}, {"text": "prevent"}, {"text": "Martin"}, {"text": "Ackerman"}, {"text": "from"}, {"text": "*-1"}, {"text": "making"}, {"text": "a"}, {"text": "run"}, {"text": "at"}, {"text": "the"}, {"text": "computer-services"}, {"text": "concern"}, {"text": "."}, {"text": "Mr."}, {"text": "Ackerman"}, {"text": "already"}, {"text": "is"}, {"text": "seeking"}, {"text": "*-1"}, {"text": "to"}, {"text": "oust"}, {"text": "Mr."}, {"text": "Edelman"}, {"text": "as"}, {"text": "chairman"}, {"text": "of"}, {"text": "Datapoint"}, {"text": "Corp."}, {"text": ","}, {"text": "an"}, {"text": "Intelogic"}, {"text": "affiliate"}, {"text": "."}, {"text": "The"}, {"text": "action"}, {"text": "followed"}, {"text": "by"}, {"text": "one"}, {"text": "day"}, {"text": "an"}, {"text": "Intelogic"}, {"text": "announcement"}, {"text": "that"}, {"text": "it"}, {"text": "will"}, {"text": "retain"}, {"text": "an"}, {"text": "investment"}, {"text": "banker"}, {"text": "*"}, {"text": "to"}, {"text": "explore"}, {"text": "alternatives"}, {"text": "``"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "to"}, {"text": "maximize"}, {"text": "shareholder"}, {"text": "value"}, {"text": ","}, {"text": "''"}, {"text": "including"}, {"text": "the"}, {"text": "possible"}, {"text": "sale"}, {"text": "of"}, {"text": "the"}, {"text": "company"}, {"text": "."}, {"text": "In"}, {"text": "New"}, {"text": "York"}, {"text": "Stock"}, {"text": "Exchange"}, {"text": "composite"}, {"text": "trading"}, {"text": "yesterday"}, {"text": ","}, {"text": "Intelogic"}, {"text": "shares"}, {"text": "rose"}, {"text": "37.5"}, {"text": "cents"}, {"text": "*-1"}, {"text": "to"}, {"text": "close"}, {"text": "at"}, {"text": "$"}, {"text": "2.75"}, {"text": "*U*"}, {"text": "."}, {"text": "Mr."}, {"text": "Edelman"}, {"text": "declined"}, {"text": "*-2"}, {"text": "to"}, {"text": "specify"}, {"text": "what"}, {"text": "*T*-1"}, {"text": "prompted"}, {"text": "the"}, {"text": "recent"}, {"text": "moves"}, {"text": ","}, {"text": "*-2"}, {"text": "saying"}, {"text": "0"}, {"text": "they"}, {"text": "are"}, {"text": "meant"}, {"text": "only"}, {"text": "*-4"}, {"text": "to"}, {"text": "benefit"}, {"text": "shareholders"}, {"text": "when"}, {"text": "``"}, {"text": "the"}, {"text": "company"}, {"text": "is"}, {"text": "on"}, {"text": "a"}, {"text": "roll"}, {"text": "*T*-3"}, {"text": "."}, {"text": "''"}, {"text": "He"}, {"text": "added"}, {"text": ","}, {"text": "``"}, {"text": "This"}, {"text": "has"}, {"text": "nothing"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "do"}, {"text": "*T*-1"}, {"text": "with"}, {"text": "Marty"}, {"text": "Ackerman"}, {"text": "and"}, {"text": "it"}, {"text": "is"}, {"text": "not"}, {"text": "designed"}, {"text": ","}, {"text": "particularly"}, {"text": ","}, {"text": "*-2"}, {"text": "to"}, {"text": "take"}, {"text": "the"}, {"text": "company"}, {"text": "private"}, {"text": "."}, {"text": "''"}, {"text": "But"}, {"text": "Mr."}, {"text": "Ackerman"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "buy-back"}, {"text": ","}, {"text": "and"}, {"text": "the"}, {"text": "above-market"}, {"text": "price"}, {"text": "paid"}, {"text": "*"}, {"text": ","}, {"text": "prove"}, {"text": "that"}, {"text": "Mr."}, {"text": "Edelman"}, {"text": "is"}, {"text": "running"}, {"text": "*-1"}, {"text": "scared"}, {"text": "."}, {"text": "Dow"}, {"text": "Jones"}, {"text": "&"}, {"text": "Co."}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "extended"}, {"text": "its"}, {"text": "$"}, {"text": "18-a-share"}, {"text": "*U*"}, {"text": "offer"}, {"text": "for"}, {"text": "Telerate"}, {"text": "Inc."}, {"text": "common"}, {"text": "stock"}, {"text": "until"}, {"text": "5"}, {"text": "p.m."}, {"text": "EST"}, {"text": "Nov."}, {"text": "9"}, {"text": "."}, {"text": "The"}, {"text": "offer"}, {"text": ","}, {"text": "valued"}, {"text": "*"}, {"text": "at"}, {"text": "about"}, {"text": "$"}, {"text": "576"}, {"text": "million"}, {"text": "*U*"}, {"text": "for"}, {"text": "the"}, {"text": "33"}, {"text": "%"}, {"text": "of"}, {"text": "Telerate"}, {"text": "that"}, {"text": "Dow"}, {"text": "Jones"}, {"text": "does"}, {"text": "n't"}, {"text": "already"}, {"text": "own"}, {"text": "*T*-1"}, {"text": ","}, {"text": "had"}, {"text": "been"}, {"text": "set"}, {"text": "*-2"}, {"text": "to"}, {"text": "expire"}, {"text": "Nov."}, {"text": "6"}, {"text": "."}, {"text": "Dow"}, {"text": "Jones"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "owns"}, {"text": "about"}, {"text": "64"}, {"text": "million"}, {"text": "of"}, {"text": "Telerate"}, {"text": "'s"}, {"text": "95"}, {"text": "million"}, {"text": "common"}, {"text": "shares"}, {"text": "outstanding"}, {"text": ","}, {"text": "said"}, {"text": "that"}, {"text": "about"}, {"text": "24,000"}, {"text": "shares"}, {"text": "have"}, {"text": "been"}, {"text": "tendered"}, {"text": "*-2"}, {"text": "under"}, {"text": "its"}, {"text": "offer"}, {"text": "."}, {"text": "Telerate"}, {"text": "'s"}, {"text": "two"}, {"text": "independent"}, {"text": "directors"}, {"text": "have"}, {"text": "rejected"}, {"text": "the"}, {"text": "offer"}, {"text": "as"}, {"text": "inadequate"}, {"text": "."}, {"text": "In"}, {"text": "composite"}, {"text": "trading"}, {"text": "on"}, {"text": "the"}, {"text": "New"}, {"text": "York"}, {"text": "Stock"}, {"text": "Exchange"}, {"text": ","}, {"text": "Telerate"}, {"text": "shares"}, {"text": "closed"}, {"text": "at"}, {"text": "$"}, {"text": "19.50"}, {"text": "*U*"}, {"text": ","}, {"text": "up"}, {"text": "12.5"}, {"text": "cents"}, {"text": "."}, {"text": "Telerate"}, {"text": "provides"}, {"text": "an"}, {"text": "electronic"}, {"text": "financial"}, {"text": "information"}, {"text": "network"}, {"text": "."}, {"text": "Dow"}, {"text": "Jones"}, {"text": "publishes"}, {"text": "The"}, {"text": "Wall"}, {"text": "Street"}, {"text": "Journal"}, {"text": ","}, {"text": "Barron"}, {"text": "'s"}, {"text": "magazine"}, {"text": ","}, {"text": "and"}, {"text": "community"}, {"text": "newspapers"}, {"text": "and"}, {"text": "operates"}, {"text": "financial"}, {"text": "news"}, {"text": "services"}, {"text": "and"}, {"text": "computer"}, {"text": "data"}, {"text": "bases"}, {"text": "."}, {"text": "Rockwell"}, {"text": "International"}, {"text": "Corp."}, {"text": "reported"}, {"text": "flat"}, {"text": "operating"}, {"text": "earnings"}, {"text": "for"}, {"text": "the"}, {"text": "fourth"}, {"text": "quarter"}, {"text": "ended"}, {"text": "Sept."}, {"text": "30"}, {"text": "."}, {"text": "The"}, {"text": "aerospace"}, {"text": ","}, {"text": "automotive"}, {"text": "supply"}, {"text": ","}, {"text": "electronics"}, {"text": "and"}, {"text": "printing-press"}, {"text": "concern"}, {"text": "also"}, {"text": "indicated"}, {"text": "that"}, {"text": "the"}, {"text": "first"}, {"text": "half"}, {"text": "of"}, {"text": "fiscal"}, {"text": "1990"}, {"text": "could"}, {"text": "be"}, {"text": "rough"}, {"text": "."}, {"text": "In"}, {"text": "an"}, {"text": "interview"}, {"text": ","}, {"text": "Donald"}, {"text": "Beall"}, {"text": ","}, {"text": "chairman"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "first-half"}, {"text": "profit"}, {"text": "certainly"}, {"text": "would"}, {"text": "trail"}, {"text": "the"}, {"text": "past"}, {"text": "year"}, {"text": "'s"}, {"text": ","}, {"text": "primarily"}, {"text": "because"}, {"text": "of"}, {"text": "weakness"}, {"text": "in"}, {"text": "the"}, {"text": "heavy-truck"}, {"text": "and"}, {"text": "passenger-car"}, {"text": "markets"}, {"text": "."}, {"text": "Still"}, {"text": ","}, {"text": "he"}, {"text": "added"}, {"text": "0"}, {"text": "*T*-1"}, {"text": ","}, {"text": "if"}, {"text": "the"}, {"text": "industrial"}, {"text": "sector"}, {"text": "remains"}, {"text": "relatively"}, {"text": "stable"}, {"text": ","}, {"text": "Rockwell"}, {"text": "should"}, {"text": "be"}, {"text": "able"}, {"text": "*-2"}, {"text": "to"}, {"text": "recover"}, {"text": "in"}, {"text": "the"}, {"text": "second"}, {"text": "half"}, {"text": "and"}, {"text": "about"}, {"text": "equal"}, {"text": "fiscal"}, {"text": "1989"}, {"text": "'s"}, {"text": "operating"}, {"text": "profit"}, {"text": "of"}, {"text": "$"}, {"text": "630.9"}, {"text": "million"}, {"text": "*U*"}, {"text": "."}, {"text": "For"}, {"text": "fiscal"}, {"text": "1989"}, {"text": "'s"}, {"text": "fourth"}, {"text": "quarter"}, {"text": ","}, {"text": "Rockwell"}, {"text": "'s"}, {"text": "net"}, {"text": "income"}, {"text": "totaled"}, {"text": "$"}, {"text": "126.1"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "50"}, {"text": "cents"}, {"text": "a"}, {"text": "share"}, {"text": "."}, {"text": "That"}, {"text": "compares"}, {"text": "with"}, {"text": "operating"}, {"text": "earnings"}, {"text": "of"}, {"text": "$"}, {"text": "132.9"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "49"}, {"text": "cents"}, {"text": "a"}, {"text": "share"}, {"text": ","}, {"text": "the"}, {"text": "year"}, {"text": "earlier"}, {"text": "."}, {"text": "The"}, {"text": "prior-year"}, {"text": "period"}, {"text": "includes"}, {"text": "a"}, {"text": "one-time"}, {"text": "favorable"}, {"text": "tax"}, {"text": "adjustment"}, {"text": "on"}, {"text": "the"}, {"text": "B-1B"}, {"text": "bomber"}, {"text": "program"}, {"text": "and"}, {"text": "another"}, {"text": "gain"}, {"text": "from"}, {"text": "sale"}, {"text": "of"}, {"text": "the"}, {"text": "industrial"}, {"text": "sewing-machine"}, {"text": "business"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "made"}, {"text": "net"}, {"text": "$"}, {"text": "185.9"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "70"}, {"text": "cents"}, {"text": "a"}, {"text": "share"}, {"text": "."}, {"text": "Sales"}, {"text": "rose"}, {"text": "4"}, {"text": "%"}, {"text": "to"}, {"text": "$"}, {"text": "3.28"}, {"text": "billion"}, {"text": "*U*"}, {"text": "from"}, {"text": "$"}, {"text": "3.16"}, {"text": "billion"}, {"text": "*U*"}, {"text": "."}, {"text": "Mr."}, {"text": "Beall"}, {"text": "said"}, {"text": "that"}, {"text": "he"}, {"text": "was"}, {"text": "generally"}, {"text": "pleased"}, {"text": "with"}, {"text": "the"}, {"text": "latest"}, {"text": "numbers"}, {"text": "and"}, {"text": "cited"}, {"text": "a"}, {"text": "particularly"}, {"text": "strong"}, {"text": "showing"}, {"text": "by"}, {"text": "the"}, {"text": "company"}, {"text": "'s"}, {"text": "electronics"}, {"text": "segment"}, {"text": "."}, {"text": "Overall"}, {"text": ","}, {"text": "pretax"}, {"text": "electronics"}, {"text": "earnings"}, {"text": "soared"}, {"text": "12"}, {"text": "%"}, {"text": "to"}, {"text": "$"}, {"text": "107.9"}, {"text": "million"}, {"text": "*U*"}, {"text": "from"}, {"text": "$"}, {"text": "96.4"}, {"text": "million"}, {"text": "*U*"}, {"text": "."}, {"text": "All"}, {"text": "four"}, {"text": "areas"}, {"text": "had"}, {"text": "higher"}, {"text": "revenue"}, {"text": "for"}, {"text": "the"}, {"text": "three"}, {"text": "months"}, {"text": "ended"}, {"text": "Sept."}, {"text": "30"}, {"text": "."}, {"text": "For"}, {"text": "the"}, {"text": "year"}, {"text": ","}, {"text": "electronics"}, {"text": "emerged"}, {"text": "as"}, {"text": "Rockwell"}, {"text": "'s"}, {"text": "largest"}, {"text": "sector"}, {"text": "in"}, {"text": "terms"}, {"text": "of"}, {"text": "sales"}, {"text": "and"}, {"text": "earnings"}, {"text": ","}, {"text": "*-1"}, {"text": "muscling"}, {"text": "out"}, {"text": "aerospace"}, {"text": "for"}, {"text": "the"}, {"text": "first"}, {"text": "time"}, {"text": "."}, {"text": "The"}, {"text": "graphics"}, {"text": "business"}, {"text": ","}, {"text": "which"}, {"text": "*T*-2"}, {"text": "also"}, {"text": "was"}, {"text": "singled"}, {"text": "out"}, {"text": "*-1"}, {"text": "by"}, {"text": "the"}, {"text": "chairman"}, {"text": "as"}, {"text": "a"}, {"text": "positive"}, {"text": ","}, {"text": "saw"}, {"text": "its"}, {"text": "operating"}, {"text": "earnings"}, {"text": "for"}, {"text": "the"}, {"text": "quarter"}, {"text": "jump"}, {"text": "79"}, {"text": "%"}, {"text": "to"}, {"text": "$"}, {"text": "42.1"}, {"text": "million"}, {"text": "*U*"}, {"text": "from"}, {"text": "$"}, {"text": "23.5"}, {"text": "million"}, {"text": "*U*"}, {"text": "."}, {"text": "For"}, {"text": "the"}, {"text": "year"}, {"text": ","}, {"text": "*-1"}, {"text": "bolstered"}, {"text": "*-2"}, {"text": "by"}, {"text": "the"}, {"text": "introduction"}, {"text": "of"}, {"text": "the"}, {"text": "Colorliner"}, {"text": "newspaper-printing"}, {"text": "press"}, {"text": ","}, {"text": "graphics"}, {"text": "earnings"}, {"text": "almost"}, {"text": "doubled"}, {"text": "."}, {"text": "Aerospace"}, {"text": "earnings"}, {"text": "sagged"}, {"text": "37"}, {"text": "%"}, {"text": "for"}, {"text": "the"}, {"text": "quarter"}, {"text": "and"}, {"text": "15"}, {"text": "%"}, {"text": "for"}, {"text": "the"}, {"text": "year"}, {"text": ","}, {"text": "largely"}, {"text": "due"}, {"text": "to"}, {"text": "lower"}, {"text": "B-1B"}, {"text": "program"}, {"text": "profit"}, {"text": ";"}, {"text": "the"}, {"text": "last"}, {"text": "of"}, {"text": "the"}, {"text": "bombers"}, {"text": "rolled"}, {"text": "out"}, {"text": "in"}, {"text": "April"}, {"text": "1988"}, {"text": "."}, {"text": "That"}, {"text": "was"}, {"text": "partially"}, {"text": "offset"}, {"text": "*-1"}, {"text": "by"}, {"text": "the"}, {"text": "resumption"}, {"text": "of"}, {"text": "space"}, {"text": "shuttle"}, {"text": "flights"}, {"text": "and"}, {"text": "increased"}, {"text": "demand"}, {"text": "for"}, {"text": "expendable"}, {"text": "launch-vehicle"}, {"text": "engines"}, {"text": "."}, {"text": "The"}, {"text": "company"}, {"text": "also"}, {"text": "took"}, {"text": "hits"}, {"text": "in"}, {"text": "the"}, {"text": "fourth"}, {"text": "quarters"}, {"text": "of"}, {"text": "1989"}, {"text": "and"}, {"text": "1988"}, {"text": "on"}, {"text": "a"}, {"text": "fixed-price"}, {"text": "weapons-modernization"}, {"text": "development"}, {"text": "program"}, {"text": "--"}, {"text": "probably"}, {"text": "the"}, {"text": "C-130"}, {"text": "gunship"}, {"text": ","}, {"text": "according"}, {"text": "to"}, {"text": "analysts"}, {"text": "."}, {"text": "For"}, {"text": "fiscal"}, {"text": "1989"}, {"text": ","}, {"text": "the"}, {"text": "company"}, {"text": "posted"}, {"text": "net"}, {"text": "of"}, {"text": "$"}, {"text": "734.9"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "$"}, {"text": "2.87"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": ","}, {"text": "down"}, {"text": "from"}, {"text": "$"}, {"text": "811.9"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "$"}, {"text": "3.04"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": ","}, {"text": "in"}, {"text": "fiscal"}, {"text": "1988"}, {"text": "."}, {"text": "*"}, {"text": "Excluding"}, {"text": "one-time"}, {"text": "additions"}, {"text": "to"}, {"text": "profit"}, {"text": "in"}, {"text": "each"}, {"text": "year"}, {"text": ","}, {"text": "earnings"}, {"text": "per"}, {"text": "share"}, {"text": "were"}, {"text": "$"}, {"text": "2.47"}, {"text": "*U*"}, {"text": ","}, {"text": "up"}, {"text": "7.4"}, {"text": "%"}, {"text": "from"}, {"text": "$"}, {"text": "2.30"}, {"text": "*U*"}, {"text": "in"}, {"text": "fiscal"}, {"text": "1988"}, {"text": "."}, {"text": "Sales"}, {"text": "for"}, {"text": "the"}, {"text": "year"}, {"text": "rose"}, {"text": "5"}, {"text": "%"}, {"text": "to"}, {"text": "$"}, {"text": "12.52"}, {"text": "billion"}, {"text": "*U*"}, {"text": "from"}, {"text": "$"}, {"text": "11.95"}, {"text": "billion"}, {"text": "*U*"}, {"text": "in"}, {"text": "fiscal"}, {"text": "1988"}, {"text": "."}, {"text": "Dell"}, {"text": "Computer"}, {"text": "Corp."}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "cut"}, {"text": "prices"}, {"text": "on"}, {"text": "several"}, {"text": "of"}, {"text": "its"}, {"text": "personal"}, {"text": "computer"}, {"text": "lines"}, {"text": "by"}, {"text": "5"}, {"text": "%"}, {"text": "to"}, {"text": "17"}, {"text": "%"}, {"text": "*U*"}, {"text": "."}, {"text": "The"}, {"text": "Austin"}, {"text": ","}, {"text": "Texas-based"}, {"text": "company"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "specializes"}, {"text": "in"}, {"text": "the"}, {"text": "direct"}, {"text": "sale"}, {"text": "of"}, {"text": "personal"}, {"text": "computers"}, {"text": "and"}, {"text": "accessories"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "its"}, {"text": "price"}, {"text": "cuts"}, {"text": "include"}, {"text": "a"}, {"text": "$"}, {"text": "100"}, {"text": "*U*"}, {"text": "reduction"}, {"text": "on"}, {"text": "its"}, {"text": "System"}, {"text": "210"}, {"text": "computer"}, {"text": "with"}, {"text": "512"}, {"text": "kilobytes"}, {"text": "of"}, {"text": "memory"}, {"text": ","}, {"text": "a"}, {"text": "40-megabyte"}, {"text": "hard"}, {"text": "disk"}, {"text": "and"}, {"text": "a"}, {"text": "color"}, {"text": "monitor"}, {"text": "."}, {"text": "That"}, {"text": "package"}, {"text": "now"}, {"text": "sells"}, {"text": "for"}, {"text": "about"}, {"text": "$"}, {"text": "2,099"}, {"text": "*U*"}, {"text": "."}, {"text": "A"}, {"text": "computer"}, {"text": "using"}, {"text": "the"}, {"text": "more-advanced"}, {"text": "Intel"}, {"text": "Corp."}, {"text": "386"}, {"text": "microprocessor"}, {"text": ","}, {"text": "with"}, {"text": "four"}, {"text": "megabytes"}, {"text": "of"}, {"text": "memory"}, {"text": "and"}, {"text": "a"}, {"text": "100-megabyte"}, {"text": "hard"}, {"text": "disk"}, {"text": "now"}, {"text": "sells"}, {"text": "for"}, {"text": "$"}, {"text": "5,699"}, {"text": "*U*"}, {"text": ","}, {"text": "down"}, {"text": "from"}, {"text": "$"}, {"text": "6,799"}, {"text": "*U*"}, {"text": "."}, {"text": "Personal"}, {"text": "computer"}, {"text": "prices"}, {"text": "for"}, {"text": "models"}, {"text": "using"}, {"text": "the"}, {"text": "Intel"}, {"text": "286"}, {"text": "and"}, {"text": "386"}, {"text": "microprocessors"}, {"text": ","}, {"text": "which"}, {"text": "the"}, {"text": "Dell"}, {"text": "models"}, {"text": "use"}, {"text": "*T*-1"}, {"text": ","}, {"text": "generally"}, {"text": "have"}, {"text": "been"}, {"text": "coming"}, {"text": "down"}, {"text": "as"}, {"text": "chip"}, {"text": "prices"}, {"text": "have"}, {"text": "fallen"}, {"text": "."}, {"text": "World"}, {"text": "sugar"}, {"text": "futures"}, {"text": "prices"}, {"text": "soared"}, {"text": "on"}, {"text": "rumors"}, {"text": "that"}, {"text": "Brazil"}, {"text": ","}, {"text": "a"}, {"text": "major"}, {"text": "grower"}, {"text": "and"}, {"text": "exporter"}, {"text": ","}, {"text": "might"}, {"text": "not"}, {"text": "ship"}, {"text": "sugar"}, {"text": "this"}, {"text": "crop"}, {"text": "year"}, {"text": "and"}, {"text": "next"}, {"text": "."}, {"text": "Prices"}, {"text": "also"}, {"text": "were"}, {"text": "boosted"}, {"text": "*-1"}, {"text": "by"}, {"text": "another"}, {"text": "rumor"}, {"text": "that"}, {"text": "Mexico"}, {"text": ","}, {"text": "usually"}, {"text": "a"}, {"text": "large"}, {"text": "producer"}, {"text": "and"}, {"text": "exporter"}, {"text": ","}, {"text": "might"}, {"text": "have"}, {"text": "*-2"}, {"text": "to"}, {"text": "buy"}, {"text": "a"}, {"text": "large"}, {"text": "quantity"}, {"text": "of"}, {"text": "sugar"}, {"text": "."}, {"text": "Although"}, {"text": "traders"}, {"text": "rushed"}, {"text": "*-3"}, {"text": "to"}, {"text": "buy"}, {"text": "futures"}, {"text": "contracts"}, {"text": ","}, {"text": "many"}, {"text": "remained"}, {"text": "skeptical"}, {"text": "about"}, {"text": "the"}, {"text": "Brazilian"}, {"text": "development"}, {"text": ","}, {"text": "which"}, {"text": "*T*-4"}, {"text": "could"}, {"text": "n't"}, {"text": "be"}, {"text": "confirmed"}, {"text": "*-1"}, {"text": ","}, {"text": "analysts"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "."}, {"text": "The"}, {"text": "March"}, {"text": "and"}, {"text": "May"}, {"text": "contracts"}, {"text": "rose"}, {"text": "to"}, {"text": "fresh"}, {"text": "life-of-contract"}, {"text": "highs"}, {"text": "of"}, {"text": "14.54"}, {"text": "cents"}, {"text": "and"}, {"text": "14.28"}, {"text": "cents"}, {"text": "at"}, {"text": "their"}, {"text": "best"}, {"text": "levels"}, {"text": "of"}, {"text": "the"}, {"text": "day"}, {"text": "."}, {"text": "The"}, {"text": "March"}, {"text": "delivery"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "has"}, {"text": "no"}, {"text": "limits"}, {"text": ","}, {"text": "settled"}, {"text": "at"}, {"text": "14.53"}, {"text": "cents"}, {"text": ","}, {"text": "up"}, {"text": "0.56"}, {"text": "cent"}, {"text": "a"}, {"text": "pound"}, {"text": "."}, {"text": "The"}, {"text": "May"}, {"text": "contract"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "also"}, {"text": "is"}, {"text": "without"}, {"text": "restraints"}, {"text": ","}, {"text": "ended"}, {"text": "with"}, {"text": "a"}, {"text": "gain"}, {"text": "of"}, {"text": "0.54"}, {"text": "cent"}, {"text": "to"}, {"text": "14.26"}, {"text": "cents"}, {"text": "."}, {"text": "The"}, {"text": "July"}, {"text": "delivery"}, {"text": "rose"}, {"text": "its"}, {"text": "daily"}, {"text": "permissible"}, {"text": "limit"}, {"text": "of"}, {"text": "0.50"}, {"text": "cent"}, {"text": "a"}, {"text": "pound"}, {"text": "to"}, {"text": "14.00"}, {"text": "cents"}, {"text": ","}, {"text": "while"}, {"text": "other"}, {"text": "contract"}, {"text": "months"}, {"text": "showed"}, {"text": "near-limit"}, {"text": "advances"}, {"text": "."}, {"text": "According"}, {"text": "to"}, {"text": "reports"}, {"text": "carried"}, {"text": "*"}, {"text": "by"}, {"text": "various"}, {"text": "news"}, {"text": "services"}, {"text": ","}, {"text": "the"}, {"text": "Brazilian"}, {"text": "government"}, {"text": "told"}, {"text": "its"}, {"text": "sugar"}, {"text": "producers"}, {"text": "that"}, {"text": "they"}, {"text": "wo"}, {"text": "n't"}, {"text": "be"}, {"text": "allowed"}, {"text": "*-1"}, {"text": "to"}, {"text": "export"}, {"text": "sugar"}, {"text": "during"}, {"text": "the"}, {"text": "current"}, {"text": "1989-90"}, {"text": "season"}, {"text": ","}, {"text": "which"}, {"text": "*T*-92"}, {"text": "began"}, {"text": "May"}, {"text": "1"}, {"text": ","}, {"text": "and"}, {"text": "the"}, {"text": "1990-91"}, {"text": "season"}, {"text": "so"}, {"text": "that"}, {"text": "it"}, {"text": "can"}, {"text": "be"}, {"text": "used"}, {"text": "*-2"}, {"text": "*"}, {"text": "to"}, {"text": "produce"}, {"text": "alcohol"}, {"text": "for"}, {"text": "automobile"}, {"text": "fuel"}, {"text": "."}, {"text": "One"}, {"text": "analyst"}, {"text": ","}, {"text": "Arthur"}, {"text": "Stevenson"}, {"text": ","}, {"text": "of"}, {"text": "Prudential-Bache"}, {"text": "Securities"}, {"text": ","}, {"text": "New"}, {"text": "York"}, {"text": ","}, {"text": "estimated"}, {"text": "that"}, {"text": "65"}, {"text": "%"}, {"text": "or"}, {"text": "more"}, {"text": "of"}, {"text": "Brazil"}, {"text": "'s"}, {"text": "newly"}, {"text": "made"}, {"text": "automobiles"}, {"text": "run"}, {"text": "on"}, {"text": "alcohol"}, {"text": "and"}, {"text": "ca"}, {"text": "n't"}, {"text": "use"}, {"text": "gasoline"}, {"text": "."}, {"text": "``"}, {"text": "This"}, {"text": "is"}, {"text": "a"}, {"text": "demand"}, {"text": "that"}, {"text": "*T*-3"}, {"text": "must"}, {"text": "be"}, {"text": "met"}, {"text": "*-1"}, {"text": ","}, {"text": "regardless"}, {"text": "of"}, {"text": "the"}, {"text": "price"}, {"text": "of"}, {"text": "oil"}, {"text": ","}, {"text": "''"}, {"text": "said"}, {"text": "*T*-2"}, {"text": "Mr."}, {"text": "Stevenson"}, {"text": "."}, {"text": "Brazil"}, {"text": "is"}, {"text": "the"}, {"text": "third-largest"}, {"text": "producer"}, {"text": "*RNR*-1"}, {"text": "and"}, {"text": "the"}, {"text": "fifth-largest"}, {"text": "exporter"}, {"text": "*RNR*-1"}, {"text": "of"}, {"text": "sugar"}, {"text": "in"}, {"text": "the"}, {"text": "world"}, {"text": "."}, {"text": "A"}, {"text": "shift"}, {"text": "to"}, {"text": "*"}, {"text": "producing"}, {"text": "more"}, {"text": "alcohol"}, {"text": "and"}, {"text": "less"}, {"text": "sugar"}, {"text": "had"}, {"text": "been"}, {"text": "expected"}, {"text": "*-1"}, {"text": ","}, {"text": "but"}, {"text": "the"}, {"text": "latest"}, {"text": "news"}, {"text": ","}, {"text": "if"}, {"text": "true"}, {"text": ","}, {"text": "indicates"}, {"text": "a"}, {"text": "more"}, {"text": "drastic"}, {"text": "shift"}, {"text": "0"}, {"text": "than"}, {"text": "*T*-2"}, {"text": "had"}, {"text": "been"}, {"text": "anticipated"}, {"text": "*-3"}, {"text": "."}, {"text": "During"}, {"text": "the"}, {"text": "current"}, {"text": "crop"}, {"text": "year"}, {"text": ","}, {"text": "Brazil"}, {"text": "was"}, {"text": "expected"}, {"text": "*-1"}, {"text": "to"}, {"text": "produce"}, {"text": "6.9"}, {"text": "million"}, {"text": "tons"}, {"text": "of"}, {"text": "sugar"}, {"text": ","}, {"text": "a"}, {"text": "drop"}, {"text": "from"}, {"text": "8.1"}, {"text": "million"}, {"text": "tons"}, {"text": "in"}, {"text": "1988-89"}, {"text": "."}, {"text": "Its"}, {"text": "1989-90"}, {"text": "exports"}, {"text": "were"}, {"text": "expected"}, {"text": "*-1"}, {"text": "to"}, {"text": "total"}, {"text": "645,000"}, {"text": "tons"}, {"text": "in"}, {"text": "contrast"}, {"text": "to"}, {"text": "shipments"}, {"text": "of"}, {"text": "1.5"}, {"text": "million"}, {"text": "tons"}, {"text": "in"}, {"text": "``"}, {"text": "It"}, {"text": "is"}, {"text": "these"}, {"text": "645,000"}, {"text": "tons"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "are"}, {"text": "in"}, {"text": "question"}, {"text": "for"}, {"text": "this"}, {"text": "crop"}, {"text": "year"}, {"text": ","}, {"text": "''"}, {"text": "explained"}, {"text": "*T*-2"}, {"text": "Judith"}, {"text": "Ganes"}, {"text": ","}, {"text": "analyst"}, {"text": "for"}, {"text": "Shearson"}, {"text": "Lehman"}, {"text": "Hutton"}, {"text": ","}, {"text": "New"}, {"text": "York"}, {"text": "."}, {"text": "``"}, {"text": "Producers"}, {"text": "were"}, {"text": "granted"}, {"text": "*-2"}, {"text": "the"}, {"text": "right"}, {"text": "*ICH*-1"}, {"text": "earlier"}, {"text": "this"}, {"text": "year"}, {"text": "*"}, {"text": "to"}, {"text": "ship"}, {"text": "sugar"}, {"text": "and"}, {"text": "the"}, {"text": "export"}, {"text": "licenses"}, {"text": "were"}, {"text": "expected"}, {"text": "*-4"}, {"text": "to"}, {"text": "have"}, {"text": "begun"}, {"text": "*-5"}, {"text": "to"}, {"text": "be"}, {"text": "issued"}, {"text": "*-3"}, {"text": "''"}, {"text": "yesterday"}, {"text": "."}, {"text": "As"}, {"text": "a"}, {"text": "result"}, {"text": ","}, {"text": "Ms."}, {"text": "Ganes"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-2"}, {"text": ","}, {"text": "it"}, {"text": "is"}, {"text": "believed"}, {"text": "that"}, {"text": "little"}, {"text": "or"}, {"text": "no"}, {"text": "sugar"}, {"text": "from"}, {"text": "the"}, {"text": "1989-90"}, {"text": "crop"}, {"text": "has"}, {"text": "been"}, {"text": "shipped"}, {"text": "*-1"}, {"text": "yet"}, {"text": ","}, {"text": "even"}, {"text": "though"}, {"text": "the"}, {"text": "crop"}, {"text": "year"}, {"text": "is"}, {"text": "six"}, {"text": "months"}, {"text": "old"}, {"text": "."}, {"text": "More"}, {"text": "than"}, {"text": "a"}, {"text": "half"}, {"text": "of"}, {"text": "all"}, {"text": "sugar"}, {"text": "produced"}, {"text": "*"}, {"text": "in"}, {"text": "Brazil"}, {"text": "goes"}, {"text": "for"}, {"text": "alcohol"}, {"text": "production"}, {"text": ","}, {"text": "according"}, {"text": "to"}, {"text": "Ms."}, {"text": "Ganes"}, {"text": "."}, {"text": "Also"}, {"text": ","}, {"text": "there"}, {"text": "has"}, {"text": "been"}, {"text": "a"}, {"text": "switch"}, {"text": "*ICH*-3"}, {"text": "in"}, {"text": "the"}, {"text": "past"}, {"text": "decade"}, {"text": "to"}, {"text": "planting"}, {"text": "of"}, {"text": "orange"}, {"text": "trees"}, {"text": "in"}, {"text": "areas"}, {"text": "that"}, {"text": "*T*-5"}, {"text": "were"}, {"text": "previously"}, {"text": "used"}, {"text": "*-1"}, {"text": "for"}, {"text": "cane"}, {"text": ","}, {"text": "and"}, {"text": "this"}, {"text": "change"}, {"text": "is"}, {"text": "being"}, {"text": "felt"}, {"text": "*-4"}, {"text": "now"}, {"text": ","}, {"text": "she"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "."}, {"text": "Most"}, {"text": "important"}, {"text": ","}, {"text": "Ms."}, {"text": "Ganes"}, {"text": "noted"}, {"text": "0"}, {"text": "*T*-2"}, {"text": ","}, {"text": "``"}, {"text": "Brazilian"}, {"text": "officials"}, {"text": "said"}, {"text": "that"}, {"text": "no"}, {"text": "decision"}, {"text": "has"}, {"text": "as"}, {"text": "yet"}, {"text": "been"}, {"text": "made"}, {"text": "*-1"}, {"text": "on"}, {"text": "the"}, {"text": "suspension"}, {"text": "of"}, {"text": "exports"}, {"text": "."}, {"text": "''"}, {"text": "Thomas"}, {"text": "Oxnard"}, {"text": ","}, {"text": "sugar"}, {"text": "analyst"}, {"text": "for"}, {"text": "PaineWebber"}, {"text": "in"}, {"text": "Hackensack"}, {"text": ","}, {"text": "N.J."}, {"text": ","}, {"text": "said"}, {"text": ":"}, {"text": "``"}, {"text": "I"}, {"text": "am"}, {"text": "highly"}, {"text": "skeptical"}, {"text": "that"}, {"text": "Brazil"}, {"text": "will"}, {"text": "curtail"}, {"text": "sugar"}, {"text": "exports"}, {"text": ","}, {"text": "particularly"}, {"text": "with"}, {"text": "the"}, {"text": "price"}, {"text": "of"}, {"text": "sugar"}, {"text": "at"}, {"text": "over"}, {"text": "14"}, {"text": "cents"}, {"text": "a"}, {"text": "pound"}, {"text": "."}, {"text": "''"}, {"text": "Above"}, {"text": "all"}, {"text": ","}, {"text": "Mr."}, {"text": "Oxnard"}, {"text": "noted"}, {"text": "0"}, {"text": "*T*-1"}, {"text": ","}, {"text": "the"}, {"text": "situation"}, {"text": "is"}, {"text": "extremely"}, {"text": "confused"}, {"text": "."}, {"text": "``"}, {"text": "Professional"}, {"text": "sugar"}, {"text": "people"}, {"text": "here"}, {"text": "who"}, {"text": "*T*-1"}, {"text": "have"}, {"text": "strong"}, {"text": "contacts"}, {"text": "with"}, {"text": "the"}, {"text": "Brazilian"}, {"text": "sugar"}, {"text": "industry"}, {"text": "have"}, {"text": "been"}, {"text": "unable"}, {"text": "*-3"}, {"text": "to"}, {"text": "confirm"}, {"text": "the"}, {"text": "reports"}, {"text": "or"}, {"text": "get"}, {"text": "enough"}, {"text": "information"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "clarify"}, {"text": "the"}, {"text": "situation"}, {"text": "*T*-4"}, {"text": ","}, {"text": "''"}, {"text": "he"}, {"text": "said"}, {"text": "*T*-2"}, {"text": "."}, {"text": "``"}, {"text": "It"}, {"text": "'s"}, {"text": "the"}, {"text": "type"}, {"text": "of"}, {"text": "nervous"}, {"text": "atmosphere"}, {"text": "in"}, {"text": "which"}, {"text": "a"}, {"text": "report"}, {"text": "*ICH*-1"}, {"text": "can"}, {"text": "be"}, {"text": "put"}, {"text": "out"}, {"text": "*-6"}, {"text": "*T*-2"}, {"text": ","}, {"text": "such"}, {"text": "as"}, {"text": "the"}, {"text": "one"}, {"text": "saying"}, {"text": "0"}, {"text": "exports"}, {"text": "will"}, {"text": "be"}, {"text": "suspended"}, {"text": "*-7"}, {"text": ","}, {"text": "and"}, {"text": "no"}, {"text": "one"}, {"text": "can"}, {"text": "confirm"}, {"text": "it"}, {"text": "."}, {"text": "''"}, {"text": "Mr."}, {"text": "Oxnard"}, {"text": "observed"}, {"text": "that"}, {"text": "the"}, {"text": "situation"}, {"text": "in"}, {"text": "Brazil"}, {"text": "is"}, {"text": "also"}, {"text": "very"}, {"text": "complicated"}, {"text": "."}, {"text": "On"}, {"text": "the"}, {"text": "one"}, {"text": "hand"}, {"text": ","}, {"text": "Brazil"}, {"text": "started"}, {"text": "an"}, {"text": "ethanol"}, {"text": "program"}, {"text": "about"}, {"text": "15"}, {"text": "years"}, {"text": "ago"}, {"text": "*-1"}, {"text": "to"}, {"text": "fuel"}, {"text": "a"}, {"text": "huge"}, {"text": "portion"}, {"text": "of"}, {"text": "its"}, {"text": "national"}, {"text": "fleet"}, {"text": "of"}, {"text": "cars"}, {"text": "and"}, {"text": "is"}, {"text": "now"}, {"text": "committed"}, {"text": "to"}, {"text": "this"}, {"text": "program"}, {"text": "."}, {"text": "``"}, {"text": "It"}, {"text": "has"}, {"text": "*-1"}, {"text": "to"}, {"text": "weigh"}, {"text": ","}, {"text": "on"}, {"text": "the"}, {"text": "other"}, {"text": "hand"}, {"text": ","}, {"text": "the"}, {"text": "relatively"}, {"text": "high"}, {"text": "price"}, {"text": "of"}, {"text": "sugar"}, {"text": "0"}, {"text": "it"}, {"text": "can"}, {"text": "earn"}, {"text": "*T*-3"}, {"text": "on"}, {"text": "the"}, {"text": "export"}, {"text": "market"}, {"text": "in"}, {"text": "*"}, {"text": "making"}, {"text": "decisions"}, {"text": "as"}, {"text": "to"}, {"text": "whether"}, {"text": "*"}, {"text": "to"}, {"text": "produce"}, {"text": "sugar"}, {"text": "or"}, {"text": "alcohol"}, {"text": ","}, {"text": "''"}, {"text": "Mr."}, {"text": "Oxnard"}, {"text": "said"}, {"text": "*T*-2"}, {"text": "."}, {"text": "Mexico"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "is"}, {"text": "normally"}, {"text": "a"}, {"text": "sugar"}, {"text": "exporter"}, {"text": ","}, {"text": "has"}, {"text": "had"}, {"text": "production"}, {"text": "problems"}, {"text": "in"}, {"text": "the"}, {"text": "past"}, {"text": "two"}, {"text": "years"}, {"text": ","}, {"text": "analysts"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "."}, {"text": "Last"}, {"text": "year"}, {"text": ","}, {"text": "it"}, {"text": "had"}, {"text": "*-1"}, {"text": "to"}, {"text": "buy"}, {"text": "sugar"}, {"text": "on"}, {"text": "the"}, {"text": "world"}, {"text": "market"}, {"text": "*-2"}, {"text": "to"}, {"text": "meet"}, {"text": "export"}, {"text": "commitments"}, {"text": ","}, {"text": "they"}, {"text": "noted"}, {"text": "0"}, {"text": "*T*-3"}, {"text": "."}, {"text": "This"}, {"text": "year"}, {"text": "it"}, {"text": "is"}, {"text": "expected"}, {"text": "*-1"}, {"text": "to"}, {"text": "be"}, {"text": "a"}, {"text": "net"}, {"text": "importer"}, {"text": "and"}, {"text": "is"}, {"text": "said"}, {"text": "*-1"}, {"text": "to"}, {"text": "be"}, {"text": "seeking"}, {"text": "*-2"}, {"text": "to"}, {"text": "buy"}, {"text": "about"}, {"text": "200,000"}, {"text": "tons"}, {"text": "of"}, {"text": "sugar"}, {"text": "*-3"}, {"text": "to"}, {"text": "meet"}, {"text": "internal"}, {"text": "needs"}, {"text": ","}, {"text": "analysts"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-4"}, {"text": "."}, {"text": "In"}, {"text": "other"}, {"text": "commodity"}, {"text": "markets"}, {"text": "yesterday"}, {"text": ":"}, {"text": "ENERGY"}, {"text": ":"}, {"text": "Petroleum"}, {"text": "futures"}, {"text": "were"}, {"text": "generally"}, {"text": "higher"}, {"text": "with"}, {"text": "heating"}, {"text": "oil"}, {"text": "leading"}, {"text": "the"}, {"text": "way"}, {"text": "."}, {"text": "On"}, {"text": "the"}, {"text": "New"}, {"text": "York"}, {"text": "Mercantile"}, {"text": "Exchange"}, {"text": ","}, {"text": "heating"}, {"text": "oil"}, {"text": "for"}, {"text": "December"}, {"text": "delivery"}, {"text": "increased"}, {"text": "1.25"}, {"text": "cents"}, {"text": "*-1"}, {"text": "to"}, {"text": "settle"}, {"text": "at"}, {"text": "60.36"}, {"text": "cents"}, {"text": "a"}, {"text": "gallon"}, {"text": "."}, {"text": "Gasoline"}, {"text": "futures"}, {"text": "were"}, {"text": "mixed"}, {"text": "to"}, {"text": "unchanged"}, {"text": "."}, {"text": "But"}, {"text": "the"}, {"text": "strength"}, {"text": "in"}, {"text": "heating"}, {"text": "oil"}, {"text": "helped"}, {"text": "*-1"}, {"text": "push"}, {"text": "up"}, {"text": "crude"}, {"text": "oil"}, {"text": "."}, {"text": "West"}, {"text": "Texas"}, {"text": "Intermediate"}, {"text": "crude"}, {"text": "for"}, {"text": "December"}, {"text": "delivery"}, {"text": "rose"}, {"text": "13"}, {"text": "cents"}, {"text": "a"}, {"text": "barrel"}, {"text": "*-1"}, {"text": "to"}, {"text": "settle"}, {"text": "at"}, {"text": "$"}, {"text": "20.07"}, {"text": "*U*"}, {"text": "."}, {"text": "The"}, {"text": "firmness"}, {"text": "in"}, {"text": "heating"}, {"text": "oil"}, {"text": "was"}, {"text": "attributed"}, {"text": "*-1"}, {"text": "to"}, {"text": "colder"}, {"text": "weather"}, {"text": "in"}, {"text": "parts"}, {"text": "of"}, {"text": "the"}, {"text": "U.S."}, {"text": "and"}, {"text": "to"}, {"text": "the"}, {"text": "latest"}, {"text": "weekly"}, {"text": "report"}, {"text": "by"}, {"text": "the"}, {"text": "American"}, {"text": "Petroleum"}, {"text": "Institute"}, {"text": ","}, {"text": "which"}, {"text": "*T*-2"}, {"text": "showed"}, {"text": "a"}, {"text": "decline"}, {"text": "in"}, {"text": "inventories"}, {"text": "of"}, {"text": "the"}, {"text": "fuel"}, {"text": "."}, {"text": "GRAINS"}, {"text": "AND"}, {"text": "SOYBEANS"}, {"text": ":"}, {"text": "Prices"}, {"text": "closed"}, {"text": "mostly"}, {"text": "higher"}, {"text": "in"}, {"text": "relatively"}, {"text": "light"}, {"text": "trading"}, {"text": "as"}, {"text": "farmers"}, {"text": "continued"}, {"text": "*-1"}, {"text": "to"}, {"text": "withhold"}, {"text": "their"}, {"text": "crops"}, {"text": "from"}, {"text": "the"}, {"text": "marketplace"}, {"text": "in"}, {"text": "the"}, {"text": "hope"}, {"text": "of"}, {"text": "higher"}, {"text": "prices"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "to"}, {"text": "come"}, {"text": "."}, {"text": "Trading"}, {"text": "was"}, {"text": "muted"}, {"text": "*-1"}, {"text": "in"}, {"text": "part"}, {"text": "because"}, {"text": "of"}, {"text": "the"}, {"text": "observance"}, {"text": "of"}, {"text": "All"}, {"text": "Saints"}, {"text": "'"}, {"text": "Day"}, {"text": "across"}, {"text": "much"}, {"text": "of"}, {"text": "Europe"}, {"text": "."}, {"text": "Continued"}, {"text": "export"}, {"text": "demand"}, {"text": "also"}, {"text": "supported"}, {"text": "prices"}, {"text": "."}, {"text": "As"}, {"text": "an"}, {"text": "indicator"}, {"text": "of"}, {"text": "the"}, {"text": "tight"}, {"text": "grain"}, {"text": "supply"}, {"text": "situation"}, {"text": "in"}, {"text": "the"}, {"text": "U.S."}, {"text": ","}, {"text": "market"}, {"text": "analysts"}, {"text": "said"}, {"text": "that"}, {"text": "late"}, {"text": "Tuesday"}, {"text": "the"}, {"text": "Chinese"}, {"text": "government"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "often"}, {"text": "buys"}, {"text": "U.S."}, {"text": "grains"}, {"text": "in"}, {"text": "quantity"}, {"text": ","}, {"text": "turned"}, {"text": "instead"}, {"text": "to"}, {"text": "Britain"}, {"text": "*-2"}, {"text": "to"}, {"text": "buy"}, {"text": "500,000"}, {"text": "metric"}, {"text": "tons"}, {"text": "of"}, {"text": "wheat"}, {"text": "."}, {"text": "Traders"}, {"text": "said"}, {"text": "0"}, {"text": "prices"}, {"text": "also"}, {"text": "were"}, {"text": "supported"}, {"text": "*-1"}, {"text": "by"}, {"text": "widespread"}, {"text": "rumors"}, {"text": "that"}, {"text": "the"}, {"text": "Soviet"}, {"text": "Union"}, {"text": "is"}, {"text": "on"}, {"text": "the"}, {"text": "verge"}, {"text": "of"}, {"text": "*"}, {"text": "receiving"}, {"text": "most"}, {"text": "favored"}, {"text": "nation"}, {"text": "status"}, {"text": "from"}, {"text": "the"}, {"text": "U.S."}, {"text": "."}, {"text": "That"}, {"text": "designation"}, {"text": "would"}, {"text": ","}, {"text": "among"}, {"text": "other"}, {"text": "things"}, {"text": ","}, {"text": "provide"}, {"text": "more"}, {"text": "generous"}, {"text": "credit"}, {"text": "terms"}, {"text": "under"}, {"text": "which"}, {"text": "the"}, {"text": "Soviets"}, {"text": "could"}, {"text": "purchase"}, {"text": "grain"}, {"text": "*T*-1"}, {"text": "."}, {"text": "The"}, {"text": "Soviets"}, {"text": "are"}, {"text": "widely"}, {"text": "believed"}, {"text": "*-1"}, {"text": "to"}, {"text": "need"}, {"text": "additional"}, {"text": "supplies"}, {"text": ","}, {"text": "despite"}, {"text": "*"}, {"text": "running"}, {"text": "up"}, {"text": "record"}, {"text": "one-month"}, {"text": "purchases"}, {"text": "of"}, {"text": "310"}, {"text": "million"}, {"text": "bushels"}, {"text": "of"}, {"text": "corn"}, {"text": "in"}, {"text": "October"}, {"text": "."}, {"text": "COPPER"}, {"text": ":"}, {"text": "Futures"}, {"text": "prices"}, {"text": "rose"}, {"text": ","}, {"text": "*-1"}, {"text": "extending"}, {"text": "Tuesday"}, {"text": "'s"}, {"text": "gains"}, {"text": "."}, {"text": "The"}, {"text": "December"}, {"text": "contract"}, {"text": "advanced"}, {"text": "2.50"}, {"text": "cents"}, {"text": "a"}, {"text": "pound"}, {"text": "to"}, {"text": "$"}, {"text": "1.1650"}, {"text": "*U*"}, {"text": "."}, {"text": "Buying"}, {"text": "for"}, {"text": "the"}, {"text": "most"}, {"text": "part"}, {"text": "carried"}, {"text": "over"}, {"text": "from"}, {"text": "the"}, {"text": "previous"}, {"text": "session"}, {"text": ","}, {"text": "and"}, {"text": "traders"}, {"text": "apparently"}, {"text": "ignored"}, {"text": "reports"}, {"text": "that"}, {"text": "a"}, {"text": "Chilean"}, {"text": "mine"}, {"text": "strike"}, {"text": "may"}, {"text": "have"}, {"text": "ended"}, {"text": "almost"}, {"text": "before"}, {"text": "it"}, {"text": "began"}, {"text": ","}, {"text": "an"}, {"text": "analyst"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "According"}, {"text": "to"}, {"text": "news"}, {"text": "service"}, {"text": "reports"}, {"text": ","}, {"text": "most"}, {"text": "workers"}, {"text": "at"}, {"text": "the"}, {"text": "Disputado"}, {"text": "mines"}, {"text": "owned"}, {"text": "*"}, {"text": "by"}, {"text": "Exxon"}, {"text": "Corp."}, {"text": "agreed"}, {"text": "to"}, {"text": "a"}, {"text": "new"}, {"text": "two-year"}, {"text": "wage"}, {"text": "contract"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "includes"}, {"text": "a"}, {"text": "5"}, {"text": "%"}, {"text": "increase"}, {"text": "and"}, {"text": "other"}, {"text": "benefits"}, {"text": "."}, {"text": "However"}, {"text": ","}, {"text": "some"}, {"text": "workers"}, {"text": "have"}, {"text": "n't"}, {"text": "yet"}, {"text": "accepted"}, {"text": "the"}, {"text": "new"}, {"text": "contract"}, {"text": "and"}, {"text": "are"}, {"text": "continuing"}, {"text": "negotiations"}, {"text": ","}, {"text": "the"}, {"text": "analyst"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Separately"}, {"text": ","}, {"text": "Reuter"}, {"text": "reported"}, {"text": "that"}, {"text": "the"}, {"text": "Papua-New"}, {"text": "Guinea"}, {"text": "government"}, {"text": "urged"}, {"text": "its"}, {"text": "Parliament"}, {"text": "*-1"}, {"text": "to"}, {"text": "extend"}, {"text": "a"}, {"text": "state"}, {"text": "of"}, {"text": "emergency"}, {"text": "in"}, {"text": "copper-rich"}, {"text": "Bougainville"}, {"text": "Island"}, {"text": "for"}, {"text": "two"}, {"text": "months"}, {"text": "."}, {"text": "The"}, {"text": "Bougainville"}, {"text": "copper"}, {"text": "mine"}, {"text": "has"}, {"text": "been"}, {"text": "inoperative"}, {"text": "since"}, {"text": "May"}, {"text": "15"}, {"text": "because"}, {"text": "of"}, {"text": "attacks"}, {"text": "by"}, {"text": "native"}, {"text": "landowners"}, {"text": "who"}, {"text": "*T*-1"}, {"text": "want"}, {"text": "Bougainville"}, {"text": "to"}, {"text": "secede"}, {"text": "from"}, {"text": "Papua-New"}, {"text": "Guinea"}, {"text": "."}, {"text": "The"}, {"text": "parent"}, {"text": "of"}, {"text": "Younkers"}, {"text": ","}, {"text": "after"}, {"text": "*-1"}, {"text": "failing"}, {"text": "*"}, {"text": "to"}, {"text": "find"}, {"text": "a"}, {"text": "buyer"}, {"text": "for"}, {"text": "the"}, {"text": "chain"}, {"text": "of"}, {"text": "Midwestern"}, {"text": "department"}, {"text": "stores"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "will"}, {"text": "sell"}, {"text": "a"}, {"text": "stake"}, {"text": "in"}, {"text": "the"}, {"text": "chain"}, {"text": "to"}, {"text": "management"}, {"text": "and"}, {"text": "take"}, {"text": "other"}, {"text": "steps"}, {"text": "*-2"}, {"text": "to"}, {"text": "reduce"}, {"text": "its"}, {"text": "investment"}, {"text": "in"}, {"text": "retailing"}, {"text": "."}, {"text": "Equitable"}, {"text": "of"}, {"text": "Iowa"}, {"text": "Cos."}, {"text": ","}, {"text": "Des"}, {"text": "Moines"}, {"text": ","}, {"text": "had"}, {"text": "been"}, {"text": "seeking"}, {"text": "a"}, {"text": "buyer"}, {"text": "for"}, {"text": "the"}, {"text": "36-store"}, {"text": "Younkers"}, {"text": "chain"}, {"text": "since"}, {"text": "June"}, {"text": ","}, {"text": "when"}, {"text": "it"}, {"text": "announced"}, {"text": "its"}, {"text": "intention"}, {"text": "*"}, {"text": "to"}, {"text": "free"}, {"text": "up"}, {"text": "capital"}, {"text": "*"}, {"text": "to"}, {"text": "expand"}, {"text": "its"}, {"text": "insurance"}, {"text": "business"}, {"text": "*T*-1"}, {"text": "."}, {"text": "But"}, {"text": "Equitable"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "was"}, {"text": "unable"}, {"text": "*-1"}, {"text": "to"}, {"text": "find"}, {"text": "a"}, {"text": "buyer"}, {"text": "willing"}, {"text": "*"}, {"text": "to"}, {"text": "pay"}, {"text": "what"}, {"text": "it"}, {"text": "considers"}, {"text": "*T*-2"}, {"text": "``"}, {"text": "fair"}, {"text": "value"}, {"text": "''"}, {"text": "for"}, {"text": "Younkers"}, {"text": "because"}, {"text": "of"}, {"text": "recent"}, {"text": "turmoil"}, {"text": "in"}, {"text": "the"}, {"text": "bond"}, {"text": "and"}, {"text": "stock"}, {"text": "markets"}, {"text": "and"}, {"text": "in"}, {"text": "retailing"}, {"text": "."}, {"text": "Younkers"}, {"text": "rang"}, {"text": "up"}, {"text": "sales"}, {"text": "*ICH*-1"}, {"text": "in"}, {"text": "1988"}, {"text": "of"}, {"text": "$"}, {"text": "313"}, {"text": "million"}, {"text": "*U*"}, {"text": "."}, {"text": "It"}, {"text": "operates"}, {"text": "stores"}, {"text": "mostly"}, {"text": "in"}, {"text": "Iowa"}, {"text": "and"}, {"text": "Nebraska"}, {"text": "."}, {"text": "Younkers"}, {"text": "management"}, {"text": "is"}, {"text": "likely"}, {"text": "*-1"}, {"text": "to"}, {"text": "buy"}, {"text": "a"}, {"text": "10"}, {"text": "%"}, {"text": "to"}, {"text": "20"}, {"text": "%"}, {"text": "*U*"}, {"text": "interest"}, {"text": "in"}, {"text": "the"}, {"text": "chain"}, {"text": "in"}, {"text": "January"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "Fred"}, {"text": "S."}, {"text": "Hubbell"}, {"text": ","}, {"text": "Equitable"}, {"text": "'s"}, {"text": "president"}, {"text": "and"}, {"text": "chief"}, {"text": "executive"}, {"text": "officer"}, {"text": "."}, {"text": "He"}, {"text": "said"}, {"text": "0"}, {"text": "Equitable"}, {"text": "hopes"}, {"text": "*-1"}, {"text": "to"}, {"text": "eventually"}, {"text": "reduce"}, {"text": "its"}, {"text": "stake"}, {"text": "in"}, {"text": "Younkers"}, {"text": "to"}, {"text": "less"}, {"text": "than"}, {"text": "50"}, {"text": "%"}, {"text": "."}, {"text": "Tony"}, {"text": "Lama"}, {"text": "Co."}, {"text": "said"}, {"text": "that"}, {"text": "Equus"}, {"text": "Investment"}, {"text": "II"}, {"text": "Limited"}, {"text": "Partnership"}, {"text": "has"}, {"text": "proposed"}, {"text": "*-1"}, {"text": "changing"}, {"text": "the"}, {"text": "offer"}, {"text": "for"}, {"text": "the"}, {"text": "company"}, {"text": "to"}, {"text": "$"}, {"text": "13.65"}, {"text": "*U*"}, {"text": "in"}, {"text": "cash"}, {"text": "and"}, {"text": "stock"}, {"text": "from"}, {"text": "an"}, {"text": "all-cash"}, {"text": "transaction"}, {"text": "."}, {"text": "Under"}, {"text": "terms"}, {"text": "of"}, {"text": "the"}, {"text": "new"}, {"text": "proposal"}, {"text": ","}, {"text": "Equus"}, {"text": ","}, {"text": "managed"}, {"text": "*"}, {"text": "by"}, {"text": "Equus"}, {"text": "Capital"}, {"text": "Corp."}, {"text": ","}, {"text": "Houston"}, {"text": ","}, {"text": "would"}, {"text": "pay"}, {"text": "$"}, {"text": "12"}, {"text": "*U*"}, {"text": "cash"}, {"text": "and"}, {"text": "one"}, {"text": "new"}, {"text": "preferred"}, {"text": "share"}, {"text": "with"}, {"text": "a"}, {"text": "liquidation"}, {"text": "preference"}, {"text": "of"}, {"text": "$"}, {"text": "1.65"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": "for"}, {"text": "each"}, {"text": "of"}, {"text": "Tony"}, {"text": "Lama"}, {"text": "'s"}, {"text": "2.1"}, {"text": "million"}, {"text": "shares"}, {"text": "outstanding"}, {"text": "."}, {"text": "Previously"}, {"text": ","}, {"text": "it"}, {"text": "offered"}, {"text": "$"}, {"text": "13.65"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": "in"}, {"text": "cash"}, {"text": ","}, {"text": "or"}, {"text": "$"}, {"text": "29"}, {"text": "million"}, {"text": "*U*"}, {"text": "."}, {"text": "The"}, {"text": "El"}, {"text": "Paso"}, {"text": ","}, {"text": "Texas"}, {"text": ","}, {"text": "maker"}, {"text": "of"}, {"text": "Western"}, {"text": "boots"}, {"text": "and"}, {"text": "leather"}, {"text": "accessories"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "preferred"}, {"text": "stock"}, {"text": "would"}, {"text": "accrue"}, {"text": "dividends"}, {"text": "at"}, {"text": "a"}, {"text": "12"}, {"text": "%"}, {"text": "rate"}, {"text": ","}, {"text": "but"}, {"text": "would"}, {"text": "n't"}, {"text": "be"}, {"text": "paid"}, {"text": "*-1"}, {"text": "for"}, {"text": "the"}, {"text": "first"}, {"text": "two"}, {"text": "years"}, {"text": "."}, {"text": "The"}, {"text": "stock"}, {"text": "would"}, {"text": "be"}, {"text": "redeemed"}, {"text": "*-1"}, {"text": "in"}, {"text": "five"}, {"text": "years"}, {"text": ","}, {"text": "subject"}, {"text": "to"}, {"text": "terms"}, {"text": "of"}, {"text": "the"}, {"text": "surviving"}, {"text": "company"}, {"text": "'s"}, {"text": "debt"}, {"text": "."}, {"text": "Neither"}, {"text": "Equus"}, {"text": "nor"}, {"text": "Tony"}, {"text": "Lama"}, {"text": "gave"}, {"text": "a"}, {"text": "reason"}, {"text": "for"}, {"text": "the"}, {"text": "changed"}, {"text": "offer"}, {"text": "and"}, {"text": "Tony"}, {"text": "Lama"}, {"text": "could"}, {"text": "n't"}, {"text": "be"}, {"text": "reached"}, {"text": "*-1"}, {"text": "for"}, {"text": "comment"}, {"text": "."}, {"text": "However"}, {"text": ","}, {"text": "Tony"}, {"text": "Lama"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "would"}, {"text": "promptly"}, {"text": "submit"}, {"text": "the"}, {"text": "offer"}, {"text": "to"}, {"text": "a"}, {"text": "special"}, {"text": "committee"}, {"text": "of"}, {"text": "the"}, {"text": "company"}, {"text": "'s"}, {"text": "board"}, {"text": "."}, {"text": "Reuters"}, {"text": "Holdings"}, {"text": "PLC"}, {"text": "said"}, {"text": "0"}, {"text": "Michael"}, {"text": "Reupke"}, {"text": "resigned"}, {"text": "as"}, {"text": "general"}, {"text": "manager"}, {"text": "*-1"}, {"text": "to"}, {"text": "pursue"}, {"text": "unspecified"}, {"text": "interests"}, {"text": ","}, {"text": "a"}, {"text": "move"}, {"text": "0"}, {"text": "the"}, {"text": "news"}, {"text": "organization"}, {"text": "termed"}, {"text": "*T*-2"}, {"text": "an"}, {"text": "``"}, {"text": "amicable"}, {"text": "separation"}, {"text": "."}, {"text": "''"}, {"text": "Mr."}, {"text": "Reupke"}, {"text": ","}, {"text": "52"}, {"text": "years"}, {"text": "old"}, {"text": "and"}, {"text": "a"}, {"text": "27-year"}, {"text": "Reuters"}, {"text": "veteran"}, {"text": ","}, {"text": "had"}, {"text": "been"}, {"text": "the"}, {"text": "information-services"}, {"text": "company"}, {"text": "'s"}, {"text": "general"}, {"text": "manager"}, {"text": "for"}, {"text": "only"}, {"text": "six"}, {"text": "months"}, {"text": "."}, {"text": "His"}, {"text": "appointment"}, {"text": "to"}, {"text": "that"}, {"text": "post"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "has"}, {"text": "senior"}, {"text": "administrative"}, {"text": ","}, {"text": "staff"}, {"text": "and"}, {"text": "policy"}, {"text": "responsibilities"}, {"text": ","}, {"text": "followed"}, {"text": "a"}, {"text": "several-year"}, {"text": "tenure"}, {"text": "as"}, {"text": "Reuters"}, {"text": "'s"}, {"text": "editor"}, {"text": "in"}, {"text": "chief"}, {"text": "."}, {"text": "No"}, {"text": "successor"}, {"text": "was"}, {"text": "named"}, {"text": "*-1"}, {"text": ","}, {"text": "and"}, {"text": "Mr."}, {"text": "Reupke"}, {"text": "'s"}, {"text": "duties"}, {"text": "will"}, {"text": "be"}, {"text": "split"}, {"text": "*-2"}, {"text": "among"}, {"text": "three"}, {"text": "other"}, {"text": "senior"}, {"text": "Reuters"}, {"text": "executives"}, {"text": ","}, {"text": "the"}, {"text": "company"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-3"}, {"text": "."}, {"text": "In"}, {"text": "a"}, {"text": "telephone"}, {"text": "interview"}, {"text": ","}, {"text": "Mr."}, {"text": "Reupke"}, {"text": "said"}, {"text": "0"}, {"text": "his"}, {"text": "departure"}, {"text": "was"}, {"text": "for"}, {"text": "``"}, {"text": "personal"}, {"text": "reasons"}, {"text": ","}, {"text": "''"}, {"text": "which"}, {"text": "he"}, {"text": "declined"}, {"text": "*-2"}, {"text": "to"}, {"text": "specify"}, {"text": "*T*-1"}, {"text": "."}, {"text": "``"}, {"text": "There"}, {"text": "is"}, {"text": "no"}, {"text": "business"}, {"text": "reason"}, {"text": "for"}, {"text": "my"}, {"text": "departure"}, {"text": ","}, {"text": "''"}, {"text": "nor"}, {"text": "any"}, {"text": "disagreement"}, {"text": "over"}, {"text": "policy"}, {"text": ","}, {"text": "he"}, {"text": "added"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "He"}, {"text": "also"}, {"text": "rejected"}, {"text": "reports"}, {"text": "that"}, {"text": "his"}, {"text": "departure"}, {"text": "stemmed"}, {"text": "from"}, {"text": "disappointment"}, {"text": "0"}, {"text": "the"}, {"text": "general"}, {"text": "manager"}, {"text": "'s"}, {"text": "post"}, {"text": "had"}, {"text": "n't"}, {"text": "also"}, {"text": "led"}, {"text": "to"}, {"text": "a"}, {"text": "board"}, {"text": "directorship"}, {"text": "at"}, {"text": "the"}, {"text": "London-based"}, {"text": "news"}, {"text": "organization"}, {"text": "."}, {"text": "Mr."}, {"text": "Reupke"}, {"text": "was"}, {"text": "one"}, {"text": "of"}, {"text": "three"}, {"text": "executives"}, {"text": "on"}, {"text": "Reuters"}, {"text": "'s"}, {"text": "eight-person"}, {"text": "executive"}, {"text": "committee"}, {"text": "who"}, {"text": "*T*-1"}, {"text": "did"}, {"text": "n't"}, {"text": "also"}, {"text": "serve"}, {"text": "on"}, {"text": "the"}, {"text": "company"}, {"text": "'s"}, {"text": "board"}, {"text": "of"}, {"text": "directors"}, {"text": "."}, {"text": "``"}, {"text": "If"}, {"text": "I"}, {"text": "were"}, {"text": "choosing"}, {"text": "the"}, {"text": "people"}, {"text": "of"}, {"text": "tomorrow"}, {"text": ","}, {"text": "I"}, {"text": "would"}, {"text": "have"}, {"text": "chosen"}, {"text": "the"}, {"text": "people"}, {"text": "who"}, {"text": "*T*-1"}, {"text": "are"}, {"text": "now"}, {"text": "on"}, {"text": "the"}, {"text": "board"}, {"text": ","}, {"text": "''"}, {"text": "he"}, {"text": "said"}, {"text": "*T*-2"}, {"text": "."}, {"text": "A"}, {"text": "Reuters"}, {"text": "spokesman"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "departure"}, {"text": "reflects"}, {"text": "``"}, {"text": "no"}, {"text": "change"}, {"text": "in"}, {"text": "strategy"}, {"text": "or"}, {"text": "profits"}, {"text": "."}, {"text": "''"}, {"text": "Mark"}, {"text": "Shepperd"}, {"text": ","}, {"text": "an"}, {"text": "analyst"}, {"text": "at"}, {"text": "UBS"}, {"text": "Phillips"}, {"text": "&"}, {"text": "Drew"}, {"text": "in"}, {"text": "London"}, {"text": ","}, {"text": "said"}, {"text": ","}, {"text": "``"}, {"text": "I"}, {"text": "suspect"}, {"text": "0"}, {"text": "-LRB-"}, {"text": "the"}, {"text": "departure"}, {"text": "-RRB-"}, {"text": "will"}, {"text": "be"}, {"text": "fairly"}, {"text": "irrelevant"}, {"text": "for"}, {"text": "the"}, {"text": "company"}, {"text": "."}, {"text": "I"}, {"text": "would"}, {"text": "be"}, {"text": "very"}, {"text": "surprised"}, {"text": "if"}, {"text": "his"}, {"text": "departure"}, {"text": "signals"}, {"text": "any"}, {"text": "change"}, {"text": "in"}, {"text": "strategy"}, {"text": "or"}, {"text": "change"}, {"text": "in"}, {"text": "profit"}, {"text": "expectations"}, {"text": "."}, {"text": "''"}, {"text": "On"}, {"text": "London"}, {"text": "'s"}, {"text": "Stock"}, {"text": "Exchange"}, {"text": ","}, {"text": "Reuters"}, {"text": "shares"}, {"text": "rose"}, {"text": "five"}, {"text": "pence"}, {"text": "to"}, {"text": "913"}, {"text": "pence"}, {"text": "-LRB-"}, {"text": "$"}, {"text": "14.43"}, {"text": "*U*"}, {"text": "-RRB-"}, {"text": "."}, {"text": "In"}, {"text": "the"}, {"text": "U.S."}, {"text": "over-the-counter"}, {"text": "market"}, {"text": ","}, {"text": "American"}, {"text": "depositary"}, {"text": "shares"}, {"text": "for"}, {"text": "Reuters"}, {"text": ","}, {"text": "each"}, {"text": "representing"}, {"text": "three"}, {"text": "shares"}, {"text": "in"}, {"text": "the"}, {"text": "London"}, {"text": "market"}, {"text": ","}, {"text": "closed"}, {"text": "unchanged"}, {"text": "at"}, {"text": "$"}, {"text": "43.875"}, {"text": "*U*"}, {"text": "."}, {"text": "The"}, {"text": "senior"}, {"text": "of"}, {"text": "the"}, {"text": "three"}, {"text": "executives"}, {"text": "who"}, {"text": "*T*-1"}, {"text": "will"}, {"text": "assume"}, {"text": "Mr."}, {"text": "Reupke"}, {"text": "'s"}, {"text": "duties"}, {"text": "is"}, {"text": "Nigel"}, {"text": "Judah"}, {"text": ","}, {"text": "58"}, {"text": ","}, {"text": "finance"}, {"text": "director"}, {"text": "and"}, {"text": "a"}, {"text": "Reuters"}, {"text": "board"}, {"text": "director"}, {"text": "."}, {"text": "Peter"}, {"text": "Holland"}, {"text": ","}, {"text": "45"}, {"text": ","}, {"text": "deputy"}, {"text": "general"}, {"text": "manager"}, {"text": ","}, {"text": "becomes"}, {"text": "director"}, {"text": "of"}, {"text": "corporate"}, {"text": "affairs"}, {"text": "."}, {"text": "And"}, {"text": "Patrick"}, {"text": "Mannix"}, {"text": ","}, {"text": "46"}, {"text": ","}, {"text": "international"}, {"text": "technical"}, {"text": "manager"}, {"text": ","}, {"text": "becomes"}, {"text": "director"}, {"text": "of"}, {"text": "group"}, {"text": "quality"}, {"text": "programs"}, {"text": "."}, {"text": "DD"}, {"text": "Acquisition"}, {"text": "Corp."}, {"text": ","}, {"text": "a"}, {"text": "partnership"}, {"text": "of"}, {"text": "Unicorp"}, {"text": "Canada"}, {"text": "Corp."}, {"text": "'s"}, {"text": "Kingsbridge"}, {"text": "Capital"}, {"text": "Group"}, {"text": "and"}, {"text": "Cara"}, {"text": "Operations"}, {"text": "Ltd."}, {"text": ","}, {"text": "extended"}, {"text": "to"}, {"text": "Nov."}, {"text": "20"}, {"text": "its"}, {"text": "$"}, {"text": "45-a-share"}, {"text": "offer"}, {"text": "for"}, {"text": "all"}, {"text": "Dunkin'"}, {"text": "Donuts"}, {"text": "Inc."}, {"text": "shares"}, {"text": "outstanding"}, {"text": "."}, {"text": "The"}, {"text": "offer"}, {"text": ","}, {"text": "which"}, {"text": "*T*-2"}, {"text": "was"}, {"text": "due"}, {"text": "*-3"}, {"text": "to"}, {"text": "expire"}, {"text": "yesterday"}, {"text": ","}, {"text": "is"}, {"text": "conditional"}, {"text": "on"}, {"text": "50.1"}, {"text": "%"}, {"text": "of"}, {"text": "Dunkin'"}, {"text": "common"}, {"text": "shares"}, {"text": ","}, {"text": "on"}, {"text": "a"}, {"text": "fully"}, {"text": "diluted"}, {"text": "basis"}, {"text": ","}, {"text": "being"}, {"text": "tendered"}, {"text": "*-1"}, {"text": "and"}, {"text": "on"}, {"text": "the"}, {"text": "withdrawal"}, {"text": "of"}, {"text": "the"}, {"text": "company"}, {"text": "'s"}, {"text": "poison"}, {"text": "pill"}, {"text": "rights"}, {"text": "plan"}, {"text": "."}, {"text": "DD"}, {"text": "Acquisition"}, {"text": "has"}, {"text": "launched"}, {"text": "a"}, {"text": "suit"}, {"text": "in"}, {"text": "a"}, {"text": "Delaware"}, {"text": "court"}, {"text": "*-2"}, {"text": "seeking"}, {"text": "the"}, {"text": "withdrawal"}, {"text": "of"}, {"text": "Dunkin"}, {"text": "'s"}, {"text": "poison"}, {"text": "pill"}, {"text": "rights"}, {"text": "and"}, {"text": "employee"}, {"text": "stock"}, {"text": "ownership"}, {"text": "plans"}, {"text": ","}, {"text": "which"}, {"text": "it"}, {"text": "claims"}, {"text": "0"}, {"text": "*T*-3"}, {"text": "were"}, {"text": "put"}, {"text": "*-1"}, {"text": "in"}, {"text": "place"}, {"text": "*"}, {"text": "to"}, {"text": "deter"}, {"text": "bidders"}, {"text": "."}, {"text": "DD"}, {"text": "Acquisition"}, {"text": "said"}, {"text": "0"}, {"text": "2.2"}, {"text": "million"}, {"text": "shares"}, {"text": ","}, {"text": "or"}, {"text": "about"}, {"text": "38.5"}, {"text": "%"}, {"text": "of"}, {"text": "the"}, {"text": "shares"}, {"text": "outstanding"}, {"text": ","}, {"text": "have"}, {"text": "been"}, {"text": "tendered"}, {"text": "*-1"}, {"text": "under"}, {"text": "its"}, {"text": "offer"}, {"text": "."}, {"text": "The"}, {"text": "partners"}, {"text": "said"}, {"text": "0"}, {"text": "they"}, {"text": "already"}, {"text": "hold"}, {"text": "15"}, {"text": "%"}, {"text": "of"}, {"text": "all"}, {"text": "shares"}, {"text": "outstanding"}, {"text": "."}, {"text": "Dunkin'"}, {"text": "has"}, {"text": "set"}, {"text": "Nov."}, {"text": "10"}, {"text": "as"}, {"text": "the"}, {"text": "deadline"}, {"text": "for"}, {"text": "the"}, {"text": "receipt"}, {"text": "of"}, {"text": "any"}, {"text": "competing"}, {"text": "bids"}, {"text": "."}, {"text": "DD"}, {"text": "Acquisition"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "extension"}, {"text": "is"}, {"text": "*"}, {"text": "to"}, {"text": "allow"}, {"text": "this"}, {"text": "process"}, {"text": "to"}, {"text": "be"}, {"text": "completed"}, {"text": "*-2"}, {"text": "."}, {"text": "Dunkin'"}, {"text": "is"}, {"text": "based"}, {"text": "*-1"}, {"text": "in"}, {"text": "Randolph"}, {"text": ","}, {"text": "Mass"}, {"text": "."}, {"text": "Cara"}, {"text": ","}, {"text": "a"}, {"text": "food"}, {"text": "services"}, {"text": "chain"}, {"text": "operator"}, {"text": "and"}, {"text": "Unicorp"}, {"text": ","}, {"text": "a"}, {"text": "holding"}, {"text": "company"}, {"text": ","}, {"text": "are"}, {"text": "based"}, {"text": "*-1"}, {"text": "in"}, {"text": "Toronto"}, {"text": "."}, {"text": "Savin"}, {"text": "Corp."}, {"text": "reported"}, {"text": "a"}, {"text": "third-quarter"}, {"text": "net"}, {"text": "loss"}, {"text": "of"}, {"text": "$"}, {"text": "35.2"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "31"}, {"text": "cents"}, {"text": "a"}, {"text": "share"}, {"text": ","}, {"text": "compared"}, {"text": "with"}, {"text": "year-earlier"}, {"text": "profit"}, {"text": "of"}, {"text": "$"}, {"text": "3.8"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "one"}, {"text": "cent"}, {"text": "a"}, {"text": "share"}, {"text": "."}, {"text": "A"}, {"text": "spokesman"}, {"text": "for"}, {"text": "the"}, {"text": "Stamford"}, {"text": ","}, {"text": "Conn.based"}, {"text": "company"}, {"text": "said"}, {"text": "0"}, {"text": "operations"}, {"text": "had"}, {"text": "a"}, {"text": "loss"}, {"text": "of"}, {"text": "$"}, {"text": "5.5"}, {"text": "million"}, {"text": "*U*"}, {"text": "for"}, {"text": "the"}, {"text": "quarter"}, {"text": ";"}, {"text": "in"}, {"text": "addition"}, {"text": ","}, {"text": "the"}, {"text": "loss"}, {"text": "was"}, {"text": "magnified"}, {"text": "*-1"}, {"text": "by"}, {"text": "nonrecurring"}, {"text": "charges"}, {"text": "totaling"}, {"text": "$"}, {"text": "23.5"}, {"text": "million"}, {"text": "*U*"}, {"text": "and"}, {"text": "$"}, {"text": "8.2"}, {"text": "million"}, {"text": "*U*"}, {"text": "in"}, {"text": "asset-valuation"}, {"text": "adjustments"}, {"text": "that"}, {"text": "he"}, {"text": "described"}, {"text": "*T*-2"}, {"text": "as"}, {"text": "``"}, {"text": "unusual"}, {"text": "."}, {"text": "''"}, {"text": "The"}, {"text": "charges"}, {"text": "were"}, {"text": "partly"}, {"text": "offset"}, {"text": "*-1"}, {"text": "by"}, {"text": "a"}, {"text": "$"}, {"text": "2"}, {"text": "million"}, {"text": "*U*"}, {"text": "gain"}, {"text": "on"}, {"text": "the"}, {"text": "sale"}, {"text": "of"}, {"text": "investments"}, {"text": "of"}, {"text": "two"}, {"text": "joint"}, {"text": "ventures"}, {"text": ","}, {"text": "he"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "."}, {"text": "Revenue"}, {"text": "declined"}, {"text": "8"}, {"text": "%"}, {"text": "to"}, {"text": "$"}, {"text": "85.7"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "from"}, {"text": "$"}, {"text": "93.3"}, {"text": "million"}, {"text": "*U*"}, {"text": "a"}, {"text": "year"}, {"text": "earlier"}, {"text": "."}, {"text": "Savin"}, {"text": "cited"}, {"text": "``"}, {"text": "a"}, {"text": "general"}, {"text": "softening"}, {"text": "in"}, {"text": "the"}, {"text": "demand"}, {"text": "for"}, {"text": "office"}, {"text": "products"}, {"text": "in"}, {"text": "the"}, {"text": "market"}, {"text": "segments"}, {"text": "in"}, {"text": "which"}, {"text": "Savin"}, {"text": "competes"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Hadson"}, {"text": "Corp."}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "expects"}, {"text": "*-1"}, {"text": "to"}, {"text": "report"}, {"text": "a"}, {"text": "third-quarter"}, {"text": "net"}, {"text": "loss"}, {"text": "of"}, {"text": "$"}, {"text": "17"}, {"text": "million"}, {"text": "to"}, {"text": "$"}, {"text": "19"}, {"text": "million"}, {"text": "*U*"}, {"text": "because"}, {"text": "of"}, {"text": "special"}, {"text": "reserves"}, {"text": "and"}, {"text": "continued"}, {"text": "low"}, {"text": "natural-gas"}, {"text": "prices"}, {"text": "."}, {"text": "The"}, {"text": "Oklahoma"}, {"text": "City"}, {"text": "energy"}, {"text": "and"}, {"text": "defense"}, {"text": "concern"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "will"}, {"text": "record"}, {"text": "a"}, {"text": "$"}, {"text": "7.5"}, {"text": "million"}, {"text": "*U*"}, {"text": "reserve"}, {"text": "for"}, {"text": "its"}, {"text": "defense"}, {"text": "group"}, {"text": ","}, {"text": "including"}, {"text": "a"}, {"text": "$"}, {"text": "4.7"}, {"text": "million"}, {"text": "*U*"}, {"text": "charge"}, {"text": "related"}, {"text": "*"}, {"text": "to"}, {"text": "problems"}, {"text": "under"}, {"text": "a"}, {"text": "fixed-price"}, {"text": "development"}, {"text": "contract"}, {"text": "and"}, {"text": "$"}, {"text": "2.8"}, {"text": "million"}, {"text": "*U*"}, {"text": "in"}, {"text": "overhead"}, {"text": "costs"}, {"text": "that"}, {"text": "*T*-2"}, {"text": "wo"}, {"text": "n't"}, {"text": "be"}, {"text": "reimbursed"}, {"text": "*-1"}, {"text": "."}, {"text": "In"}, {"text": "addition"}, {"text": ","}, {"text": "Hadson"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "will"}, {"text": "write"}, {"text": "off"}, {"text": "about"}, {"text": "$"}, {"text": "3.5"}, {"text": "million"}, {"text": "*U*"}, {"text": "in"}, {"text": "costs"}, {"text": "related"}, {"text": "*"}, {"text": "to"}, {"text": "international"}, {"text": "exploration"}, {"text": "leases"}, {"text": "where"}, {"text": "exploration"}, {"text": "efforts"}, {"text": "have"}, {"text": "been"}, {"text": "unsuccessful"}, {"text": "*T*-1"}, {"text": "."}, {"text": "The"}, {"text": "company"}, {"text": "also"}, {"text": "cited"}, {"text": "interest"}, {"text": "costs"}, {"text": "and"}, {"text": "amortization"}, {"text": "of"}, {"text": "goodwill"}, {"text": "as"}, {"text": "factors"}, {"text": "in"}, {"text": "the"}, {"text": "loss"}, {"text": "."}, {"text": "A"}, {"text": "year"}, {"text": "earlier"}, {"text": ","}, {"text": "net"}, {"text": "income"}, {"text": "was"}, {"text": "$"}, {"text": "2.1"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "six"}, {"text": "cents"}, {"text": "a"}, {"text": "share"}, {"text": ","}, {"text": "on"}, {"text": "revenue"}, {"text": "of"}, {"text": "$"}, {"text": "169.9"}, {"text": "million"}, {"text": "*U*"}, {"text": "."}, {"text": "A"}, {"text": "lack"}, {"text": "of"}, {"text": "enthusiasm"}, {"text": "with"}, {"text": "the"}, {"text": "latest"}, {"text": "economic"}, {"text": "data"}, {"text": "hampered"}, {"text": "the"}, {"text": "stock"}, {"text": "market"}, {"text": "'s"}, {"text": "bid"}, {"text": "*"}, {"text": "to"}, {"text": "extend"}, {"text": "Tuesday"}, {"text": "'s"}, {"text": "sharp"}, {"text": "gains"}, {"text": ","}, {"text": "as"}, {"text": "prices"}, {"text": "closed"}, {"text": "slightly"}, {"text": "higher"}, {"text": "in"}, {"text": "sluggish"}, {"text": "trading"}, {"text": "."}, {"text": "While"}, {"text": "renewed"}, {"text": "optimism"}, {"text": "about"}, {"text": "the"}, {"text": "outlook"}, {"text": "for"}, {"text": "takeover"}, {"text": "activity"}, {"text": "boosted"}, {"text": "several"}, {"text": "so-called"}, {"text": "deal"}, {"text": "stocks"}, {"text": ","}, {"text": "traders"}, {"text": "said"}, {"text": "0"}, {"text": "profit-taking"}, {"text": "weighed"}, {"text": "on"}, {"text": "the"}, {"text": "market"}, {"text": ","}, {"text": "with"}, {"text": "blue-chips"}, {"text": "bearing"}, {"text": "the"}, {"text": "brunt"}, {"text": "of"}, {"text": "the"}, {"text": "selling"}, {"text": "."}, {"text": "The"}, {"text": "Dow"}, {"text": "Jones"}, {"text": "Industrial"}, {"text": "Average"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "had"}, {"text": "jumped"}, {"text": "41.60"}, {"text": "points"}, {"text": "on"}, {"text": "Tuesday"}, {"text": ","}, {"text": "drifted"}, {"text": "on"}, {"text": "either"}, {"text": "side"}, {"text": "of"}, {"text": "its"}, {"text": "previous"}, {"text": "close"}, {"text": "and"}, {"text": "finished"}, {"text": "with"}, {"text": "a"}, {"text": "gain"}, {"text": "of"}, {"text": "just"}, {"text": "0.82"}, {"text": "at"}, {"text": "2645.90"}, {"text": "."}, {"text": "Standard"}, {"text": "&"}, {"text": "Poor"}, {"text": "'s"}, {"text": "500-Stock"}, {"text": "Index"}, {"text": "added"}, {"text": "0.84"}, {"text": "to"}, {"text": "341.20"}, {"text": ";"}, {"text": "the"}, {"text": "rise"}, {"text": "was"}, {"text": "equivalent"}, {"text": "to"}, {"text": "a"}, {"text": "gain"}, {"text": "of"}, {"text": "about"}, {"text": "six"}, {"text": "points"}, {"text": "in"}, {"text": "the"}, {"text": "industrial"}, {"text": "average"}, {"text": "."}, {"text": "The"}, {"text": "Dow"}, {"text": "Jones"}, {"text": "Equity"}, {"text": "Market"}, {"text": "Index"}, {"text": "gained"}, {"text": "0.99"}, {"text": "to"}, {"text": "319.75"}, {"text": "and"}, {"text": "the"}, {"text": "New"}, {"text": "York"}, {"text": "Stock"}, {"text": "Exchange"}, {"text": "Composite"}, {"text": "Index"}, {"text": "went"}, {"text": "up"}, {"text": "0.60"}, {"text": "to"}, {"text": "188.84"}, {"text": "."}, {"text": "Advancing"}, {"text": "stocks"}, {"text": "led"}, {"text": "decliners"}, {"text": "on"}, {"text": "the"}, {"text": "New"}, {"text": "York"}, {"text": "Stock"}, {"text": "Exchange"}, {"text": "by"}, {"text": "847"}, {"text": "to"}, {"text": "644"}, {"text": "."}, {"text": "Big"}, {"text": "Board"}, {"text": "volume"}, {"text": "amounted"}, {"text": "to"}, {"text": "154,240,000"}, {"text": "shares"}, {"text": ","}, {"text": "down"}, {"text": "from"}, {"text": "176.1"}, {"text": "million"}, {"text": "Tuesday"}, {"text": "."}, {"text": "The"}, {"text": "October"}, {"text": "survey"}, {"text": "of"}, {"text": "corporate"}, {"text": "purchasing"}, {"text": "managers"}, {"text": ","}, {"text": "as"}, {"text": "*"}, {"text": "expected"}, {"text": ","}, {"text": "provided"}, {"text": "evidence"}, {"text": "that"}, {"text": "economic"}, {"text": "growth"}, {"text": "remains"}, {"text": "subdued"}, {"text": "."}, {"text": "An"}, {"text": "index"}, {"text": "of"}, {"text": "economic"}, {"text": "activity"}, {"text": "drawn"}, {"text": "*"}, {"text": "from"}, {"text": "the"}, {"text": "survey"}, {"text": "stood"}, {"text": "last"}, {"text": "month"}, {"text": "at"}, {"text": "47.6"}, {"text": "%"}, {"text": ";"}, {"text": "a"}, {"text": "reading"}, {"text": "above"}, {"text": "50"}, {"text": "%"}, {"text": "would"}, {"text": "have"}, {"text": "indicated"}, {"text": "that"}, {"text": "the"}, {"text": "manufacturing"}, {"text": "sector"}, {"text": "was"}, {"text": "improving"}, {"text": "."}, {"text": "But"}, {"text": "with"}, {"text": "the"}, {"text": "index"}, {"text": "proving"}, {"text": "somewhat"}, {"text": "better"}, {"text": "than"}, {"text": "*"}, {"text": "expected"}, {"text": "and"}, {"text": "the"}, {"text": "widely"}, {"text": "anticipated"}, {"text": "report"}, {"text": "on"}, {"text": "October"}, {"text": "employment"}, {"text": "scheduled"}, {"text": "*-1"}, {"text": "to"}, {"text": "arrive"}, {"text": "tomorrow"}, {"text": ","}, {"text": "stock"}, {"text": "prices"}, {"text": "firmed"}, {"text": "only"}, {"text": "modestly"}, {"text": "in"}, {"text": "response"}, {"text": "to"}, {"text": "the"}, {"text": "report"}, {"text": "and"}, {"text": "then"}, {"text": "faltered"}, {"text": "."}, {"text": "``"}, {"text": "This"}, {"text": "market"}, {"text": "'s"}, {"text": "still"}, {"text": "going"}, {"text": "through"}, {"text": "its"}, {"text": "pains"}, {"text": ","}, {"text": "''"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "Philip"}, {"text": "Puccio"}, {"text": ","}, {"text": "head"}, {"text": "of"}, {"text": "equity"}, {"text": "trading"}, {"text": "at"}, {"text": "Prudential-Bache"}, {"text": "Securities"}, {"text": "."}, {"text": "``"}, {"text": "The"}, {"text": "psychology"}, {"text": "is"}, {"text": "still"}, {"text": ":"}, {"text": "`"}, {"text": "We"}, {"text": "want"}, {"text": "-LRB-"}, {"text": "stocks"}, {"text": "-RRB-"}, {"text": "up"}, {"text": ","}, {"text": "but"}, {"text": "if"}, {"text": "they"}, {"text": "do"}, {"text": "n't"}, {"text": "carry"}, {"text": "we"}, {"text": "'re"}, {"text": "going"}, {"text": "*-1"}, {"text": "to"}, {"text": "sell"}, {"text": "them"}, {"text": "."}, {"text": "'"}, {"text": "''"}, {"text": "Uncertainty"}, {"text": "about"}, {"text": "the"}, {"text": "prospects"}, {"text": "for"}, {"text": "further"}, {"text": "action"}, {"text": "*"}, {"text": "to"}, {"text": "curtail"}, {"text": "stock-index"}, {"text": "arbitrage"}, {"text": ","}, {"text": "a"}, {"text": "form"}, {"text": "of"}, {"text": "program"}, {"text": "trading"}, {"text": "blamed"}, {"text": "*"}, {"text": "for"}, {"text": "recent"}, {"text": "volatility"}, {"text": "in"}, {"text": "the"}, {"text": "market"}, {"text": ","}, {"text": "also"}, {"text": "contributed"}, {"text": "to"}, {"text": "its"}, {"text": "lack"}, {"text": "of"}, {"text": "direction"}, {"text": ","}, {"text": "Mr."}, {"text": "Puccio"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Arbitrage-related"}, {"text": "trading"}, {"text": "during"}, {"text": "the"}, {"text": "session"}, {"text": "was"}, {"text": "confined"}, {"text": "*-1"}, {"text": "largely"}, {"text": "to"}, {"text": "a"}, {"text": "round"}, {"text": "of"}, {"text": "buy"}, {"text": "programs"}, {"text": "near"}, {"text": "the"}, {"text": "close"}, {"text": ","}, {"text": "which"}, {"text": "*T*-2"}, {"text": "helped"}, {"text": "*-3"}, {"text": "offset"}, {"text": "the"}, {"text": "impact"}, {"text": "of"}, {"text": "profit-taking"}, {"text": "among"}, {"text": "blue"}, {"text": "chips"}, {"text": "."}, {"text": "Trading"}, {"text": "is"}, {"text": "expected"}, {"text": "*-1"}, {"text": "to"}, {"text": "remain"}, {"text": "subdued"}, {"text": "as"}, {"text": "the"}, {"text": "market"}, {"text": "awaits"}, {"text": "tomorrow"}, {"text": "'s"}, {"text": "release"}, {"text": "of"}, {"text": "the"}, {"text": "jobs"}, {"text": "data"}, {"text": "with"}, {"text": "the"}, {"text": "hope"}, {"text": "that"}, {"text": "it"}, {"text": "will"}, {"text": "point"}, {"text": "toward"}, {"text": "a"}, {"text": "decline"}, {"text": "in"}, {"text": "interest"}, {"text": "rates"}, {"text": "."}, {"text": "``"}, {"text": "I"}, {"text": "sense"}, {"text": "that"}, {"text": "some"}, {"text": "people"}, {"text": "are"}, {"text": "reluctant"}, {"text": "*-2"}, {"text": "to"}, {"text": "stick"}, {"text": "their"}, {"text": "necks"}, {"text": "out"}, {"text": "in"}, {"text": "any"}, {"text": "aggressive"}, {"text": "way"}, {"text": "until"}, {"text": "after"}, {"text": "the"}, {"text": "figures"}, {"text": "come"}, {"text": "out"}, {"text": ","}, {"text": "''"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "Richard"}, {"text": "Eakle"}, {"text": ","}, {"text": "president"}, {"text": "of"}, {"text": "Eakle"}, {"text": "Associates"}, {"text": ","}, {"text": "Fair"}, {"text": "Haven"}, {"text": ","}, {"text": "Campbell"}, {"text": "Soup"}, {"text": "jumped"}, {"text": "3"}, {"text": "3\\/8"}, {"text": "to"}, {"text": "47"}, {"text": "1\\/8"}, {"text": "as"}, {"text": "the"}, {"text": "resignation"}, {"text": "of"}, {"text": "R."}, {"text": "Gordon"}, {"text": "McGovern"}, {"text": "as"}, {"text": "president"}, {"text": "and"}, {"text": "chief"}, {"text": "executive"}, {"text": "officer"}, {"text": "sparked"}, {"text": "a"}, {"text": "revival"}, {"text": "of"}, {"text": "rumors"}, {"text": "that"}, {"text": "the"}, {"text": "company"}, {"text": "could"}, {"text": "become"}, {"text": "a"}, {"text": "takeover"}, {"text": "target"}, {"text": "."}, {"text": "Prudential-Bache"}, {"text": "Securities"}, {"text": "boosted"}, {"text": "the"}, {"text": "stock"}, {"text": "'s"}, {"text": "short-term"}, {"text": "investment"}, {"text": "rating"}, {"text": "in"}, {"text": "response"}, {"text": "to"}, {"text": "the"}, {"text": "departure"}, {"text": ";"}, {"text": "analyst"}, {"text": "John"}, {"text": "McMillin"}, {"text": "said"}, {"text": "0"}, {"text": "he"}, {"text": "believes"}, {"text": "0"}, {"text": "the"}, {"text": "company"}, {"text": "will"}, {"text": "turn"}, {"text": "to"}, {"text": "new"}, {"text": "management"}, {"text": "``"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "'s"}, {"text": "more"}, {"text": "financially"}, {"text": "oriented"}, {"text": "."}, {"text": "''"}, {"text": "Other"}, {"text": "rumored"}, {"text": "takeover"}, {"text": "and"}, {"text": "restructuring"}, {"text": "candidates"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "to"}, {"text": "attract"}, {"text": "buyers"}, {"text": "included"}, {"text": "Woolworth"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "went"}, {"text": "up"}, {"text": "1"}, {"text": "3\\/4"}, {"text": "to"}, {"text": "59"}, {"text": "1\\/2"}, {"text": ";"}, {"text": "Avon"}, {"text": "Products"}, {"text": ","}, {"text": "up"}, {"text": "1"}, {"text": "3\\/4"}, {"text": "to"}, {"text": "29"}, {"text": "1\\/4"}, {"text": ";"}, {"text": "Paramount"}, {"text": "Communications"}, {"text": ","}, {"text": "up"}, {"text": "2"}, {"text": "to"}, {"text": "57"}, {"text": "7\\/8"}, {"text": ","}, {"text": "and"}, {"text": "Ferro"}, {"text": ","}, {"text": "up"}, {"text": "2"}, {"text": "5\\/8"}, {"text": "to"}, {"text": "28"}, {"text": "3\\/4"}, {"text": "."}, {"text": "Upjohn"}, {"text": ","}, {"text": "a"}, {"text": "rumored"}, {"text": "target"}, {"text": "within"}, {"text": "the"}, {"text": "drug"}, {"text": "industry"}, {"text": ","}, {"text": "advanced"}, {"text": "7\\/8"}, {"text": "to"}, {"text": "38"}, {"text": "7\\/8"}, {"text": "."}, {"text": "The"}, {"text": "company"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "plans"}, {"text": "a"}, {"text": "fourth-quarter"}, {"text": "charge"}, {"text": ","}, {"text": "which"}, {"text": "it"}, {"text": "did"}, {"text": "n't"}, {"text": "specify"}, {"text": "*T*-1"}, {"text": ","}, {"text": "for"}, {"text": "an"}, {"text": "early-retirement"}, {"text": "program"}, {"text": "."}, {"text": "AMR"}, {"text": "climbed"}, {"text": "1"}, {"text": "3\\/4"}, {"text": "to"}, {"text": "73"}, {"text": "1\\/8"}, {"text": "amid"}, {"text": "rumors"}, {"text": "that"}, {"text": "New"}, {"text": "York"}, {"text": "developer"}, {"text": "Donald"}, {"text": "Trump"}, {"text": "was"}, {"text": "seeking"}, {"text": "financing"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "mount"}, {"text": "a"}, {"text": "new"}, {"text": ","}, {"text": "lower"}, {"text": "offer"}, {"text": "for"}, {"text": "the"}, {"text": "parent"}, {"text": "company"}, {"text": "of"}, {"text": "American"}, {"text": "Airlines"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Mr."}, {"text": "Trump"}, {"text": "withdrew"}, {"text": "a"}, {"text": "$"}, {"text": "120-a-share"}, {"text": "*U*"}, {"text": "bid"}, {"text": "last"}, {"text": "month"}, {"text": "."}, {"text": "UAL"}, {"text": "rose"}, {"text": "1"}, {"text": "1\\/2"}, {"text": "to"}, {"text": "177"}, {"text": "."}, {"text": "Drexel"}, {"text": "Burnham"}, {"text": "Lambert"}, {"text": "analyst"}, {"text": "Michael"}, {"text": "Derchin"}, {"text": "said"}, {"text": "0"}, {"text": "he"}, {"text": "sees"}, {"text": "a"}, {"text": "70"}, {"text": "%"}, {"text": "chance"}, {"text": "that"}, {"text": "the"}, {"text": "parent"}, {"text": "of"}, {"text": "United"}, {"text": "Airlines"}, {"text": ","}, {"text": "the"}, {"text": "target"}, {"text": "of"}, {"text": "a"}, {"text": "failed"}, {"text": "$"}, {"text": "300-a-share"}, {"text": "*U*"}, {"text": "offer"}, {"text": "from"}, {"text": "a"}, {"text": "labor-management"}, {"text": "group"}, {"text": ","}, {"text": "will"}, {"text": "be"}, {"text": "acquired"}, {"text": "or"}, {"text": "restructured"}, {"text": "*-1"}, {"text": "within"}, {"text": "six"}, {"text": "months"}, {"text": "."}, {"text": "Georgia"}, {"text": "Gulf"}, {"text": "added"}, {"text": "1"}, {"text": "3\\/4"}, {"text": "to"}, {"text": "51"}, {"text": "1\\/4"}, {"text": "after"}, {"text": "NL"}, {"text": "Industries"}, {"text": ","}, {"text": "controlled"}, {"text": "*"}, {"text": "by"}, {"text": "Dallas"}, {"text": "investor"}, {"text": "Harold"}, {"text": "Simmons"}, {"text": ","}, {"text": "offered"}, {"text": "*-2"}, {"text": "to"}, {"text": "acquire"}, {"text": "the"}, {"text": "stock"}, {"text": "0"}, {"text": "it"}, {"text": "does"}, {"text": "n't"}, {"text": "already"}, {"text": "own"}, {"text": "*T*-1"}, {"text": "for"}, {"text": "$"}, {"text": "50"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": "."}, {"text": "NL"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "closed"}, {"text": "*-2"}, {"text": "unchanged"}, {"text": "at"}, {"text": "22"}, {"text": "3\\/4"}, {"text": ","}, {"text": "has"}, {"text": "a"}, {"text": "stake"}, {"text": "of"}, {"text": "just"}, {"text": "under"}, {"text": "10"}, {"text": "%"}, {"text": "."}, {"text": "Great"}, {"text": "Northern"}, {"text": "Nekoosa"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "surged"}, {"text": "20"}, {"text": "1\\/8"}, {"text": "Tuesday"}, {"text": "after"}, {"text": "Georgia-Pacific"}, {"text": "launched"}, {"text": "a"}, {"text": "$"}, {"text": "3.18"}, {"text": "billion"}, {"text": "*U*"}, {"text": "offer"}, {"text": "for"}, {"text": "the"}, {"text": "company"}, {"text": ","}, {"text": "dropped"}, {"text": "1"}, {"text": "3\\/8"}, {"text": "to"}, {"text": "61"}, {"text": "1\\/2"}, {"text": "in"}, {"text": "Big"}, {"text": "Board"}, {"text": "composite"}, {"text": "trading"}, {"text": "of"}, {"text": "5.1"}, {"text": "million"}, {"text": "shares"}, {"text": "."}, {"text": "Georgia-Pacific"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "went"}, {"text": "down"}, {"text": "2"}, {"text": "1\\/2"}, {"text": "Tuesday"}, {"text": ","}, {"text": "lost"}, {"text": "another"}, {"text": "1\\/2"}, {"text": "to"}, {"text": "50"}, {"text": "3\\/8"}, {"text": "."}, {"text": "Other"}, {"text": "paper"}, {"text": "and"}, {"text": "forest-products"}, {"text": "stocks"}, {"text": "closed"}, {"text": "*-1"}, {"text": "mixed"}, {"text": "."}, {"text": "Mead"}, {"text": "rose"}, {"text": "3\\/4"}, {"text": "to"}, {"text": "39"}, {"text": "1\\/2"}, {"text": ","}, {"text": "Federal"}, {"text": "Paper"}, {"text": "Board"}, {"text": "added"}, {"text": "1\\/2"}, {"text": "to"}, {"text": "24"}, {"text": "3\\/8"}, {"text": "and"}, {"text": "Scott"}, {"text": "Paper"}, {"text": "gained"}, {"text": "1\\/2"}, {"text": "to"}, {"text": "48"}, {"text": "3\\/8"}, {"text": ","}, {"text": "while"}, {"text": "International"}, {"text": "Paper"}, {"text": "fell"}, {"text": "7\\/8"}, {"text": "to"}, {"text": "48"}, {"text": "7\\/8"}, {"text": ","}, {"text": "Champion"}, {"text": "International"}, {"text": "lost"}, {"text": "3\\/8"}, {"text": "to"}, {"text": "31"}, {"text": "1\\/2"}, {"text": "and"}, {"text": "Louisiana-Pacific"}, {"text": "dropped"}, {"text": "1\\/8"}, {"text": "to"}, {"text": "40"}, {"text": "1\\/4"}, {"text": "."}, {"text": "Texaco"}, {"text": "rose"}, {"text": "3\\/4"}, {"text": "to"}, {"text": "53"}, {"text": "3\\/8"}, {"text": "as"}, {"text": "4.4"}, {"text": "million"}, {"text": "shares"}, {"text": "changed"}, {"text": "hands"}, {"text": "."}, {"text": "Most"}, {"text": "of"}, {"text": "the"}, {"text": "volume"}, {"text": "came"}, {"text": "from"}, {"text": "trades"}, {"text": "designed"}, {"text": "*"}, {"text": "*"}, {"text": "to"}, {"text": "capture"}, {"text": "the"}, {"text": "stock"}, {"text": "'s"}, {"text": "next"}, {"text": "dividend"}, {"text": ";"}, {"text": "Texaco"}, {"text": "has"}, {"text": "a"}, {"text": "yield"}, {"text": "of"}, {"text": "5.6"}, {"text": "%"}, {"text": "and"}, {"text": "goes"}, {"text": "ex-dividend"}, {"text": "today"}, {"text": "."}, {"text": "Santa"}, {"text": "Fe"}, {"text": "Pacific"}, {"text": "dropped"}, {"text": "1"}, {"text": "1\\/8"}, {"text": "to"}, {"text": "17"}, {"text": "3\\/4"}, {"text": "."}, {"text": "The"}, {"text": "company"}, {"text": "'s"}, {"text": "proposal"}, {"text": "*"}, {"text": "to"}, {"text": "sell"}, {"text": "a"}, {"text": "20"}, {"text": "%"}, {"text": "stake"}, {"text": "in"}, {"text": "its"}, {"text": "real-estate"}, {"text": "unit"}, {"text": "for"}, {"text": "around"}, {"text": "$"}, {"text": "400"}, {"text": "million"}, {"text": "*U*"}, {"text": "has"}, {"text": "caused"}, {"text": "analysts"}, {"text": "to"}, {"text": "consider"}, {"text": "whether"}, {"text": "*-1"}, {"text": "to"}, {"text": "cut"}, {"text": "their"}, {"text": "estimates"}, {"text": "of"}, {"text": "Santa"}, {"text": "Fe"}, {"text": "'s"}, {"text": "asset"}, {"text": "value"}, {"text": "."}, {"text": "GenCorp"}, {"text": "tumbled"}, {"text": "2"}, {"text": "to"}, {"text": "14"}, {"text": "."}, {"text": "The"}, {"text": "company"}, {"text": "forecast"}, {"text": "that"}, {"text": "fourth-quarter"}, {"text": "income"}, {"text": "from"}, {"text": "continuing"}, {"text": "operations"}, {"text": "would"}, {"text": "be"}, {"text": "``"}, {"text": "significantly"}, {"text": "''"}, {"text": "lower"}, {"text": "than"}, {"text": "a"}, {"text": "year"}, {"text": "earlier"}, {"text": "."}, {"text": "Allergan"}, {"text": "went"}, {"text": "up"}, {"text": "1\\/2"}, {"text": "to"}, {"text": "19"}, {"text": "3\\/8"}, {"text": "."}, {"text": "The"}, {"text": "Food"}, {"text": "and"}, {"text": "Drug"}, {"text": "Administration"}, {"text": "allowed"}, {"text": "the"}, {"text": "company"}, {"text": "to"}, {"text": "begin"}, {"text": "*-1"}, {"text": "marketing"}, {"text": "a"}, {"text": "new"}, {"text": "lens"}, {"text": "for"}, {"text": "use"}, {"text": "in"}, {"text": "cataract"}, {"text": "patients"}, {"text": "."}, {"text": "The"}, {"text": "American"}, {"text": "Stock"}, {"text": "Exchange"}, {"text": "Market"}, {"text": "Value"}, {"text": "Index"}, {"text": "gained"}, {"text": "1.56"}, {"text": "to"}, {"text": "372.14"}, {"text": "."}, {"text": "Volume"}, {"text": "totaled"}, {"text": "11,390,000"}, {"text": "shares"}, {"text": "."}, {"text": "Old"}, {"text": "Spaghetti"}, {"text": "Warehouse"}, {"text": "rose"}, {"text": "1"}, {"text": "to"}, {"text": "16"}, {"text": "1\\/8"}, {"text": "."}, {"text": "Its"}, {"text": "net"}, {"text": "income"}, {"text": "for"}, {"text": "the"}, {"text": "September"}, {"text": "quarter"}, {"text": "rose"}, {"text": "about"}, {"text": "41"}, {"text": "%"}, {"text": "from"}, {"text": "a"}, {"text": "year"}, {"text": "ago"}, {"text": "."}, {"text": "Freeport-McMoRan"}, {"text": "Inc."}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "will"}, {"text": "convert"}, {"text": "its"}, {"text": "Freeport-McMoRan"}, {"text": "Energy"}, {"text": "Partners"}, {"text": "Ltd."}, {"text": "partnership"}, {"text": "into"}, {"text": "a"}, {"text": "publicly"}, {"text": "traded"}, {"text": "company"}, {"text": "through"}, {"text": "the"}, {"text": "exchange"}, {"text": "of"}, {"text": "units"}, {"text": "of"}, {"text": "the"}, {"text": "partnership"}, {"text": "for"}, {"text": "common"}, {"text": "shares"}, {"text": "."}, {"text": "The"}, {"text": "company"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "restructuring"}, {"text": "is"}, {"text": "n't"}, {"text": "expected"}, {"text": "*-1"}, {"text": "to"}, {"text": "have"}, {"text": "any"}, {"text": "impact"}, {"text": ","}, {"text": "adverse"}, {"text": "or"}, {"text": "otherwise"}, {"text": ","}, {"text": "on"}, {"text": "its"}, {"text": "financial"}, {"text": "results"}, {"text": "."}, {"text": "Freeport-McMoRan"}, {"text": ","}, {"text": "a"}, {"text": "New"}, {"text": "Orleans-based"}, {"text": "diversified"}, {"text": "energy"}, {"text": "conglomerate"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "partnership"}, {"text": "will"}, {"text": "exchange"}, {"text": "its"}, {"text": "assets"}, {"text": "for"}, {"text": "common"}, {"text": "shares"}, {"text": "of"}, {"text": "a"}, {"text": "yet-to-be-formed"}, {"text": "entity"}, {"text": "."}, {"text": "Freeport-McMoRan"}, {"text": "Energy"}, {"text": "Partners"}, {"text": "will"}, {"text": "be"}, {"text": "liquidated"}, {"text": "*-1"}, {"text": "and"}, {"text": "shares"}, {"text": "of"}, {"text": "the"}, {"text": "new"}, {"text": "company"}, {"text": "distributed"}, {"text": "*-3"}, {"text": "to"}, {"text": "the"}, {"text": "partnership"}, {"text": "'s"}, {"text": "unitholders"}, {"text": "."}, {"text": "Unitholders"}, {"text": "will"}, {"text": "receive"}, {"text": "two"}, {"text": "additional"}, {"text": "55"}, {"text": "cents-a-unit"}, {"text": "distribution"}, {"text": "payments"}, {"text": "before"}, {"text": "the"}, {"text": "trust"}, {"text": "is"}, {"text": "liquidated"}, {"text": "*-1"}, {"text": "in"}, {"text": "early"}, {"text": "1990"}, {"text": ","}, {"text": "the"}, {"text": "company"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "."}, {"text": "It"}, {"text": "is"}, {"text": "expected"}, {"text": "that"}, {"text": "common"}, {"text": "shares"}, {"text": "equal"}, {"text": "to"}, {"text": "the"}, {"text": "number"}, {"text": "of"}, {"text": "units"}, {"text": "outstanding"}, {"text": "--"}, {"text": "about"}, {"text": "108"}, {"text": "million"}, {"text": "on"}, {"text": "Sept."}, {"text": "30"}, {"text": "--"}, {"text": "will"}, {"text": "be"}, {"text": "issued"}, {"text": "*-3"}, {"text": "during"}, {"text": "the"}, {"text": "first"}, {"text": "quarter"}, {"text": "of"}, {"text": "1990"}, {"text": "."}, {"text": "Freeport-McMoRan"}, {"text": ","}, {"text": "the"}, {"text": "parent"}, {"text": "company"}, {"text": ","}, {"text": "holds"}, {"text": "roughly"}, {"text": "80"}, {"text": "%"}, {"text": "of"}, {"text": "the"}, {"text": "units"}, {"text": "outstanding"}, {"text": "."}, {"text": "Nissan"}, {"text": "Motor"}, {"text": "Co."}, {"text": ","}, {"text": "Japan"}, {"text": "'s"}, {"text": "second-largest"}, {"text": "car"}, {"text": "maker"}, {"text": ","}, {"text": "announced"}, {"text": "Wednesday"}, {"text": "that"}, {"text": "the"}, {"text": "parent"}, {"text": "concern"}, {"text": "'s"}, {"text": "pretax"}, {"text": "earnings"}, {"text": "in"}, {"text": "the"}, {"text": "first"}, {"text": "half"}, {"text": "ended"}, {"text": "last"}, {"text": "Sept."}, {"text": "30"}, {"text": "rose"}, {"text": "14"}, {"text": "%"}, {"text": "to"}, {"text": "88.32"}, {"text": "billion"}, {"text": "yen"}, {"text": "-LRB-"}, {"text": "$"}, {"text": "618.1"}, {"text": "million"}, {"text": "*U*"}, {"text": "-RRB-"}, {"text": "from"}, {"text": "77.6"}, {"text": "billion"}, {"text": "yen"}, {"text": "a"}, {"text": "year"}, {"text": "earlier"}, {"text": "."}, {"text": "Nissan"}, {"text": "cited"}, {"text": "strong"}, {"text": "domestic"}, {"text": "sales"}, {"text": "against"}, {"text": "the"}, {"text": "backdrop"}, {"text": "of"}, {"text": "continuous"}, {"text": "economic"}, {"text": "expansion"}, {"text": "."}, {"text": "Profit"}, {"text": "surged"}, {"text": "42"}, {"text": "%"}, {"text": "to"}, {"text": "40.21"}, {"text": "billion"}, {"text": "yen"}, {"text": ","}, {"text": "or"}, {"text": "16.09"}, {"text": "yen"}, {"text": "a"}, {"text": "share"}, {"text": ","}, {"text": "from"}, {"text": "28.36"}, {"text": "billion"}, {"text": "yen"}, {"text": ","}, {"text": "or"}, {"text": "11.72"}, {"text": "yen"}, {"text": "a"}, {"text": "share"}, {"text": "."}, {"text": "Sales"}, {"text": "totaled"}, {"text": "1.916"}, {"text": "trillion"}, {"text": "yen"}, {"text": ","}, {"text": "*-1"}, {"text": "climbing"}, {"text": "17"}, {"text": "%"}, {"text": "from"}, {"text": "1.637"}, {"text": "trillion"}, {"text": "yen"}, {"text": "in"}, {"text": "the"}, {"text": "year-earlier"}, {"text": "period"}, {"text": "."}, {"text": "Nissan"}, {"text": "scheduled"}, {"text": "a"}, {"text": "seven-yen"}, {"text": "interim"}, {"text": "dividend"}, {"text": "payment"}, {"text": ","}, {"text": "unchanged"}, {"text": "."}, {"text": "Atsushi"}, {"text": "Muramatsu"}, {"text": ","}, {"text": "executive"}, {"text": "vice"}, {"text": "president"}, {"text": "and"}, {"text": "chief"}, {"text": "financial"}, {"text": "officer"}, {"text": "of"}, {"text": "Nissan"}, {"text": ","}, {"text": "said"}, {"text": ","}, {"text": "``"}, {"text": "The"}, {"text": "company"}, {"text": "has"}, {"text": "experienced"}, {"text": "a"}, {"text": "remarkable"}, {"text": "turnaround"}, {"text": "in"}, {"text": "terms"}, {"text": "of"}, {"text": "profitability"}, {"text": "since"}, {"text": "the"}, {"text": "fiscal"}, {"text": "year"}, {"text": "ending"}, {"text": "March"}, {"text": "1987"}, {"text": ","}, {"text": "when"}, {"text": "the"}, {"text": "sharp"}, {"text": "and"}, {"text": "rapid"}, {"text": "appreciation"}, {"text": "of"}, {"text": "the"}, {"text": "yen"}, {"text": "caused"}, {"text": "many"}, {"text": "difficulties"}, {"text": "*T*-1"}, {"text": "."}, {"text": "``"}, {"text": "It"}, {"text": "can"}, {"text": "be"}, {"text": "said"}, {"text": "that"}, {"text": "the"}, {"text": "trend"}, {"text": "of"}, {"text": "financial"}, {"text": "improvement"}, {"text": "has"}, {"text": "been"}, {"text": "firmly"}, {"text": "set"}, {"text": ","}, {"text": "''"}, {"text": "he"}, {"text": "added"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Heritage"}, {"text": "Media"}, {"text": "Corp."}, {"text": ","}, {"text": "New"}, {"text": "York"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "offered"}, {"text": "*-2"}, {"text": "to"}, {"text": "buy"}, {"text": "the"}, {"text": "shares"}, {"text": "of"}, {"text": "POP"}, {"text": "Radio"}, {"text": "Corp."}, {"text": "0"}, {"text": "it"}, {"text": "does"}, {"text": "n't"}, {"text": "already"}, {"text": "own"}, {"text": "*T*-1"}, {"text": "in"}, {"text": "a"}, {"text": "stock"}, {"text": "swap"}, {"text": "."}, {"text": "Heritage"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "owns"}, {"text": "51"}, {"text": "%"}, {"text": "of"}, {"text": "POP"}, {"text": "'s"}, {"text": "3.6"}, {"text": "million"}, {"text": "shares"}, {"text": "outstanding"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "will"}, {"text": "exchange"}, {"text": "one"}, {"text": "share"}, {"text": "of"}, {"text": "a"}, {"text": "new"}, {"text": "preferred"}, {"text": "stock"}, {"text": "for"}, {"text": "each"}, {"text": "POP"}, {"text": "common"}, {"text": "share"}, {"text": "0"}, {"text": "it"}, {"text": "does"}, {"text": "n't"}, {"text": "already"}, {"text": "own"}, {"text": "*T*-2"}, {"text": "."}, {"text": "*"}, {"text": "Depending"}, {"text": "upon"}, {"text": "how"}, {"text": "many"}, {"text": "warrants"}, {"text": "and"}, {"text": "options"}, {"text": "*T*-2"}, {"text": "are"}, {"text": "exercised"}, {"text": "*-1"}, {"text": "prior"}, {"text": "to"}, {"text": "completion"}, {"text": "of"}, {"text": "the"}, {"text": "transaction"}, {"text": ","}, {"text": "Heritage"}, {"text": "would"}, {"text": "issue"}, {"text": "between"}, {"text": "1.8"}, {"text": "million"}, {"text": "and"}, {"text": "2.35"}, {"text": "million"}, {"text": "preferred"}, {"text": "shares"}, {"text": ","}, {"text": "a"}, {"text": "Heritage"}, {"text": "spokesman"}, {"text": "estimated"}, {"text": "0"}, {"text": "*T*-3"}, {"text": "."}, {"text": "In"}, {"text": "national"}, {"text": "over-the-counter"}, {"text": "trading"}, {"text": "yesterday"}, {"text": ","}, {"text": "POP"}, {"text": "plunged"}, {"text": "$"}, {"text": "4"}, {"text": "*U*"}, {"text": "to"}, {"text": "$"}, {"text": "14.75"}, {"text": "*U*"}, {"text": "."}, {"text": "The"}, {"text": "preferred"}, {"text": "stock"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "would"}, {"text": "have"}, {"text": "a"}, {"text": "dividend"}, {"text": "rate"}, {"text": "of"}, {"text": "$"}, {"text": "1.76"}, {"text": "*U*"}, {"text": "a"}, {"text": "year"}, {"text": ","}, {"text": "would"}, {"text": "be"}, {"text": "convertible"}, {"text": "into"}, {"text": "Heritage"}, {"text": "common"}, {"text": "at"}, {"text": "a"}, {"text": "rate"}, {"text": "of"}, {"text": "four"}, {"text": "common"}, {"text": "shares"}, {"text": "for"}, {"text": "each"}, {"text": "preferred"}, {"text": "."}, {"text": "New"}, {"text": "York-based"}, {"text": "POP"}, {"text": "Radio"}, {"text": "provides"}, {"text": ","}, {"text": "through"}, {"text": "a"}, {"text": "national"}, {"text": ","}, {"text": "in-store"}, {"text": "network"}, {"text": ","}, {"text": "a"}, {"text": "customized"}, {"text": "music"}, {"text": ","}, {"text": "information"}, {"text": "and"}, {"text": "advertising"}, {"text": "service"}, {"text": "which"}, {"text": "*T*-1"}, {"text": "simulates"}, {"text": "live"}, {"text": "radio"}, {"text": "."}, {"text": "Heritage"}, {"text": "owns"}, {"text": "and"}, {"text": "operates"}, {"text": "television"}, {"text": "and"}, {"text": "radio"}, {"text": "stations"}, {"text": "and"}, {"text": "in-store"}, {"text": "advertising"}, {"text": "and"}, {"text": "promotion"}, {"text": "programs"}, {"text": "."}, {"text": "GenCorp"}, {"text": "Inc."}, {"text": ","}, {"text": "hurt"}, {"text": "*"}, {"text": "by"}, {"text": "a"}, {"text": "plant"}, {"text": "accident"}, {"text": "and"}, {"text": "other"}, {"text": "unexpected"}, {"text": "costs"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "expects"}, {"text": "*-1"}, {"text": "to"}, {"text": "report"}, {"text": "that"}, {"text": "fiscal"}, {"text": "fourth-quarter"}, {"text": "profit"}, {"text": "from"}, {"text": "continuing"}, {"text": "operations"}, {"text": "will"}, {"text": "be"}, {"text": "significantly"}, {"text": "below"}, {"text": "last"}, {"text": "year"}, {"text": "'s"}, {"text": "$"}, {"text": "25"}, {"text": "million"}, {"text": "*U*"}, {"text": "."}, {"text": "The"}, {"text": "Fairlawn"}, {"text": ","}, {"text": "Ohio-based"}, {"text": "company"}, {"text": "also"}, {"text": "said"}, {"text": "that"}, {"text": "full-year"}, {"text": "profit"}, {"text": "from"}, {"text": "continuing"}, {"text": "operations"}, {"text": "will"}, {"text": "be"}, {"text": "far"}, {"text": "below"}, {"text": "last"}, {"text": "year"}, {"text": "'s"}, {"text": "$"}, {"text": "148"}, {"text": "million"}, {"text": "*U*"}, {"text": "."}, {"text": "Last"}, {"text": "year"}, {"text": "'s"}, {"text": "figures"}, {"text": "include"}, {"text": "a"}, {"text": "one-time"}, {"text": "loss"}, {"text": "of"}, {"text": "$"}, {"text": "12"}, {"text": "million"}, {"text": "*U*"}, {"text": "for"}, {"text": "restructuring"}, {"text": "and"}, {"text": "unusual"}, {"text": "items"}, {"text": "."}, {"text": "But"}, {"text": "the"}, {"text": "automotive"}, {"text": "parts"}, {"text": "and"}, {"text": "aerospace"}, {"text": "concern"}, {"text": "expects"}, {"text": "that"}, {"text": "net"}, {"text": "for"}, {"text": "the"}, {"text": "year"}, {"text": "ending"}, {"text": "Nov."}, {"text": "30"}, {"text": "will"}, {"text": "exceed"}, {"text": "last"}, {"text": "fiscal"}, {"text": "year"}, {"text": "'s"}, {"text": "net"}, {"text": "of"}, {"text": "$"}, {"text": "70"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "$"}, {"text": "2.19"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": ","}, {"text": "primarily"}, {"text": "because"}, {"text": "of"}, {"text": "$"}, {"text": "200"}, {"text": "million"}, {"text": "*U*"}, {"text": "in"}, {"text": "gains"}, {"text": "from"}, {"text": "sales"}, {"text": "of"}, {"text": "discontinued"}, {"text": "operations"}, {"text": "."}, {"text": "Harry"}, {"text": "Millis"}, {"text": ","}, {"text": "an"}, {"text": "analyst"}, {"text": "at"}, {"text": "McDonald"}, {"text": "&"}, {"text": "Co."}, {"text": "in"}, {"text": "Cleveland"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "GenCorp"}, {"text": "'s"}, {"text": "unanticipated"}, {"text": "losses"}, {"text": "come"}, {"text": "largely"}, {"text": "from"}, {"text": "an"}, {"text": "accident"}, {"text": "at"}, {"text": "a"}, {"text": "government-owned"}, {"text": "assembly"}, {"text": "plant"}, {"text": "in"}, {"text": "Kansas"}, {"text": ","}, {"text": "run"}, {"text": "*"}, {"text": "by"}, {"text": "a"}, {"text": "private"}, {"text": "subcontractor"}, {"text": ","}, {"text": "that"}, {"text": "*T*-1"}, {"text": "makes"}, {"text": "cluster"}, {"text": "bombs"}, {"text": "for"}, {"text": "GenCorp"}, {"text": "'s"}, {"text": "Aerojet"}, {"text": "Ordnance"}, {"text": "business"}, {"text": "."}, {"text": "Transamerica"}, {"text": "Corp."}, {"text": ","}, {"text": "San"}, {"text": "Francisco"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "third-quarter"}, {"text": "profit"}, {"text": "was"}, {"text": "essentially"}, {"text": "flat"}, {"text": "despite"}, {"text": "a"}, {"text": "large"}, {"text": "one-time"}, {"text": "gain"}, {"text": "a"}, {"text": "year"}, {"text": "earlier"}, {"text": "."}, {"text": "The"}, {"text": "insurance"}, {"text": "and"}, {"text": "financial"}, {"text": "services"}, {"text": "concern"}, {"text": "said"}, {"text": "0"}, {"text": "profit"}, {"text": "for"}, {"text": "the"}, {"text": "quarter"}, {"text": "rose"}, {"text": "1.1"}, {"text": "%"}, {"text": "to"}, {"text": "$"}, {"text": "93.9"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "$"}, {"text": "1.19"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": ","}, {"text": "compared"}, {"text": "with"}, {"text": "$"}, {"text": "92.9"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "$"}, {"text": "1.18"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": ","}, {"text": "the"}, {"text": "year"}, {"text": "earlier"}, {"text": "."}, {"text": "The"}, {"text": "results"}, {"text": "reflected"}, {"text": "a"}, {"text": "24"}, {"text": "%"}, {"text": "gain"}, {"text": "in"}, {"text": "income"}, {"text": "from"}, {"text": "its"}, {"text": "finance"}, {"text": "businesses"}, {"text": ","}, {"text": "and"}, {"text": "a"}, {"text": "15"}, {"text": "%"}, {"text": "slide"}, {"text": "in"}, {"text": "income"}, {"text": "from"}, {"text": "insurance"}, {"text": "operations"}, {"text": "."}, {"text": "Transamerica"}, {"text": "said"}, {"text": "0"}, {"text": "third-quarter"}, {"text": "investment"}, {"text": "gains"}, {"text": "were"}, {"text": "$"}, {"text": "10.2"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "compared"}, {"text": "with"}, {"text": "$"}, {"text": "6.4"}, {"text": "million"}, {"text": "*U*"}, {"text": "the"}, {"text": "year"}, {"text": "earlier"}, {"text": "."}, {"text": "It"}, {"text": "said"}, {"text": "0"}, {"text": "insurance"}, {"text": "profit"}, {"text": "reflected"}, {"text": "a"}, {"text": "$"}, {"text": "6"}, {"text": "million"}, {"text": "*U*"}, {"text": "loss"}, {"text": "from"}, {"text": "Hurricane"}, {"text": "Hugo"}, {"text": "."}, {"text": "It"}, {"text": "also"}, {"text": "estimated"}, {"text": "that"}, {"text": "losses"}, {"text": "from"}, {"text": "the"}, {"text": "Oct."}, {"text": "17"}, {"text": "earthquake"}, {"text": "in"}, {"text": "California"}, {"text": "would"}, {"text": "be"}, {"text": "no"}, {"text": "more"}, {"text": "than"}, {"text": "$"}, {"text": "6"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "and"}, {"text": "would"}, {"text": "be"}, {"text": "included"}, {"text": "*-1"}, {"text": "in"}, {"text": "fourth-quarter"}, {"text": "results"}, {"text": "."}, {"text": "RMS"}, {"text": "International"}, {"text": "Inc."}, {"text": ","}, {"text": "Hasbrouk"}, {"text": "Heights"}, {"text": ","}, {"text": "N.J."}, {"text": ","}, {"text": "*-1"}, {"text": "facing"}, {"text": "a"}, {"text": "cash-flow"}, {"text": "squeeze"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "is"}, {"text": "seeking"}, {"text": "other"}, {"text": "financing"}, {"text": "sources"}, {"text": "and"}, {"text": "waivers"}, {"text": "from"}, {"text": "debenture"}, {"text": "holders"}, {"text": "."}, {"text": "The"}, {"text": "company"}, {"text": "said"}, {"text": "that"}, {"text": "because"}, {"text": "of"}, {"text": "softening"}, {"text": "sales"}, {"text": "it"}, {"text": "is"}, {"text": "n't"}, {"text": "in"}, {"text": "compliance"}, {"text": "with"}, {"text": "requirements"}, {"text": "that"}, {"text": "it"}, {"text": "maintain"}, {"text": "$"}, {"text": "3"}, {"text": "million"}, {"text": "*U*"}, {"text": "in"}, {"text": "working"}, {"text": "capital"}, {"text": "."}, {"text": "RMS"}, {"text": "distributes"}, {"text": "electronic"}, {"text": "devices"}, {"text": "and"}, {"text": "produces"}, {"text": "power"}, {"text": "supplies"}, {"text": "and"}, {"text": "plastic"}, {"text": "literature"}, {"text": "displays"}, {"text": "."}, {"text": "RMS"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "had"}, {"text": "a"}, {"text": "loss"}, {"text": "of"}, {"text": "$"}, {"text": "158,666"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "10"}, {"text": "cents"}, {"text": "a"}, {"text": "share"}, {"text": ","}, {"text": "in"}, {"text": "the"}, {"text": "third"}, {"text": "quarter"}, {"text": ","}, {"text": "compared"}, {"text": "with"}, {"text": "a"}, {"text": "year-earlier"}, {"text": "loss"}, {"text": "of"}, {"text": "$"}, {"text": "26,956"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "two"}, {"text": "cents"}, {"text": "a"}, {"text": "share"}, {"text": "."}, {"text": "Sales"}, {"text": "rose"}, {"text": "to"}, {"text": "$"}, {"text": "3"}, {"text": "million"}, {"text": "*U*"}, {"text": "from"}, {"text": "$"}, {"text": "2.9"}, {"text": "million"}, {"text": "*U*"}, {"text": "."}, {"text": "For"}, {"text": "the"}, {"text": "nine"}, {"text": "months"}, {"text": ","}, {"text": "the"}, {"text": "company"}, {"text": "reported"}, {"text": "a"}, {"text": "net"}, {"text": "loss"}, {"text": "of"}, {"text": "$"}, {"text": "608,413"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "39"}, {"text": "cents"}, {"text": "a"}, {"text": "share"}, {"text": ","}, {"text": "compared"}, {"text": "with"}, {"text": "year-earlier"}, {"text": "net"}, {"text": "income"}, {"text": "of"}, {"text": "$"}, {"text": "967,809"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "62"}, {"text": "cents"}, {"text": "a"}, {"text": "share"}, {"text": "."}, {"text": "Sales"}, {"text": "rose"}, {"text": "to"}, {"text": "$"}, {"text": "9.8"}, {"text": "million"}, {"text": "*U*"}, {"text": "from"}, {"text": "$"}, {"text": "8.9"}, {"text": "million"}, {"text": "*U*"}, {"text": "."}, {"text": "Meridian"}, {"text": "National"}, {"text": "Corp."}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "sold"}, {"text": "750,000"}, {"text": "shares"}, {"text": "of"}, {"text": "its"}, {"text": "common"}, {"text": "stock"}, {"text": "to"}, {"text": "the"}, {"text": "McAlpine"}, {"text": "family"}, {"text": "interests"}, {"text": ","}, {"text": "for"}, {"text": "$"}, {"text": "1"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "$"}, {"text": "1.35"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": "."}, {"text": "The"}, {"text": "sale"}, {"text": "represents"}, {"text": "10.2"}, {"text": "%"}, {"text": "of"}, {"text": "Meridian"}, {"text": "'s"}, {"text": "shares"}, {"text": "outstanding"}, {"text": "."}, {"text": "The"}, {"text": "McAlpine"}, {"text": "family"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "operates"}, {"text": "a"}, {"text": "number"}, {"text": "of"}, {"text": "multinational"}, {"text": "companies"}, {"text": ","}, {"text": "including"}, {"text": "a"}, {"text": "London-based"}, {"text": "engineering"}, {"text": "and"}, {"text": "construction"}, {"text": "company"}, {"text": ","}, {"text": "also"}, {"text": "lent"}, {"text": "to"}, {"text": "Meridian"}, {"text": "National"}, {"text": "$"}, {"text": "500,000"}, {"text": "*U*"}, {"text": "."}, {"text": "That"}, {"text": "amount"}, {"text": "is"}, {"text": "convertible"}, {"text": "into"}, {"text": "shares"}, {"text": "of"}, {"text": "Meridian"}, {"text": "common"}, {"text": "stock"}, {"text": "at"}, {"text": "$"}, {"text": "2"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": "during"}, {"text": "its"}, {"text": "one-year"}, {"text": "term"}, {"text": "."}, {"text": "The"}, {"text": "loan"}, {"text": "may"}, {"text": "be"}, {"text": "extended"}, {"text": "*-1"}, {"text": "by"}, {"text": "the"}, {"text": "McAlpine"}, {"text": "group"}, {"text": "for"}, {"text": "an"}, {"text": "additional"}, {"text": "year"}, {"text": "with"}, {"text": "an"}, {"text": "increase"}, {"text": "in"}, {"text": "the"}, {"text": "conversion"}, {"text": "price"}, {"text": "to"}, {"text": "$"}, {"text": "2.50"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": "."}, {"text": "The"}, {"text": "sale"}, {"text": "of"}, {"text": "shares"}, {"text": "to"}, {"text": "the"}, {"text": "McAlpine"}, {"text": "family"}, {"text": "along"}, {"text": "with"}, {"text": "the"}, {"text": "recent"}, {"text": "sale"}, {"text": "of"}, {"text": "750,000"}, {"text": "shares"}, {"text": "of"}, {"text": "Meridian"}, {"text": "stock"}, {"text": "to"}, {"text": "Haden"}, {"text": "MacLellan"}, {"text": "Holding"}, {"text": "PLC"}, {"text": "of"}, {"text": "Surrey"}, {"text": ","}, {"text": "England"}, {"text": "and"}, {"text": "a"}, {"text": "recent"}, {"text": "public"}, {"text": "offering"}, {"text": "have"}, {"text": "increased"}, {"text": "Meridian"}, {"text": "'s"}, {"text": "net"}, {"text": "worth"}, {"text": "to"}, {"text": "$"}, {"text": "8.5"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "William"}, {"text": "Feniger"}, {"text": ","}, {"text": "chief"}, {"text": "executive"}, {"text": "officer"}, {"text": "of"}, {"text": "Toledo"}, {"text": ","}, {"text": "Ohio-based"}, {"text": "Meridian"}, {"text": "."}, {"text": "Ratners"}, {"text": "Group"}, {"text": "PLC"}, {"text": ","}, {"text": "a"}, {"text": "fast-growing"}, {"text": ","}, {"text": "acquisition-minded"}, {"text": "London-based"}, {"text": "jeweler"}, {"text": ","}, {"text": "raised"}, {"text": "its"}, {"text": "price"}, {"text": "for"}, {"text": "Seattle-based"}, {"text": "specialty"}, {"text": "jeweler"}, {"text": "Weisfield"}, {"text": "'s"}, {"text": "Inc."}, {"text": "to"}, {"text": "$"}, {"text": "57.50"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": ","}, {"text": "or"}, {"text": "$"}, {"text": "62.1"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "from"}, {"text": "$"}, {"text": "50"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": ","}, {"text": "or"}, {"text": "$"}, {"text": "55"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "after"}, {"text": "another"}, {"text": "concern"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "would"}, {"text": "be"}, {"text": "prepared"}, {"text": "*-1"}, {"text": "to"}, {"text": "outbid"}, {"text": "Ratners"}, {"text": "'s"}, {"text": "initial"}, {"text": "offer"}, {"text": "."}, {"text": "The"}, {"text": "other"}, {"text": "concern"}, {"text": "was"}, {"text": "n't"}, {"text": "identified"}, {"text": "."}, {"text": "Ratners"}, {"text": "'s"}, {"text": "chairman"}, {"text": ","}, {"text": "Gerald"}, {"text": "Ratner"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "deal"}, {"text": "remains"}, {"text": "of"}, {"text": "``"}, {"text": "substantial"}, {"text": "benefit"}, {"text": "to"}, {"text": "Ratners"}, {"text": "."}, {"text": "''"}, {"text": "In"}, {"text": "London"}, {"text": "at"}, {"text": "mid-afternoon"}, {"text": "yesterday"}, {"text": ","}, {"text": "Ratners"}, {"text": "'s"}, {"text": "shares"}, {"text": "were"}, {"text": "up"}, {"text": "2"}, {"text": "pence"}, {"text": "-LRB-"}, {"text": "1.26"}, {"text": "cents"}, {"text": "-RRB-"}, {"text": ","}, {"text": "at"}, {"text": "260"}, {"text": "pence"}, {"text": "-LRB-"}, {"text": "$"}, {"text": "1.64"}, {"text": "*U*"}, {"text": "-RRB-"}, {"text": "."}, {"text": "The"}, {"text": "sweetened"}, {"text": "offer"}, {"text": "has"}, {"text": "acceptances"}, {"text": "from"}, {"text": "more"}, {"text": "than"}, {"text": "50"}, {"text": "%"}, {"text": "of"}, {"text": "Weisfield"}, {"text": "'s"}, {"text": "shareholders"}, {"text": ","}, {"text": "and"}, {"text": "it"}, {"text": "is"}, {"text": "scheduled"}, {"text": "*-1"}, {"text": "for"}, {"text": "completion"}, {"text": "by"}, {"text": "Dec."}, {"text": "10"}, {"text": "."}, {"text": "The"}, {"text": "acquisition"}, {"text": "of"}, {"text": "87-store"}, {"text": "Weisfield"}, {"text": "'s"}, {"text": "raises"}, {"text": "Ratners"}, {"text": "'s"}, {"text": "U.S."}, {"text": "presence"}, {"text": "to"}, {"text": "450"}, {"text": "stores"}, {"text": "."}, {"text": "About"}, {"text": "30"}, {"text": "%"}, {"text": "of"}, {"text": "Ratners"}, {"text": "'s"}, {"text": "profit"}, {"text": "already"}, {"text": "is"}, {"text": "derived"}, {"text": "*-1"}, {"text": "from"}, {"text": "the"}, {"text": "U.S."}, {"text": "."}, {"text": "Carnival"}, {"text": "Cruise"}, {"text": "Lines"}, {"text": "Inc."}, {"text": "said"}, {"text": "0"}, {"text": "potential"}, {"text": "problems"}, {"text": "with"}, {"text": "the"}, {"text": "construction"}, {"text": "of"}, {"text": "two"}, {"text": "big"}, {"text": "cruise"}, {"text": "ships"}, {"text": "from"}, {"text": "Finland"}, {"text": "have"}, {"text": "been"}, {"text": "averted"}, {"text": "*-1"}, {"text": "."}, {"text": "Last"}, {"text": "week"}, {"text": ","}, {"text": "Miami-based"}, {"text": "Carnival"}, {"text": "disclosed"}, {"text": "that"}, {"text": "Waertsilae"}, {"text": "Marine"}, {"text": "Industries"}, {"text": ","}, {"text": "the"}, {"text": "Finnish"}, {"text": "shipyard"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "is"}, {"text": "building"}, {"text": "Carnival"}, {"text": "'s"}, {"text": "new"}, {"text": "cruise"}, {"text": "ships"}, {"text": ","}, {"text": "planned"}, {"text": "*-2"}, {"text": "to"}, {"text": "file"}, {"text": "for"}, {"text": "bankruptcy"}, {"text": "."}, {"text": "Yesterday"}, {"text": ","}, {"text": "Carnival"}, {"text": "said"}, {"text": "0"}, {"text": "a"}, {"text": "new"}, {"text": "company"}, {"text": "*ICH*-1"}, {"text": "has"}, {"text": "been"}, {"text": "formed"}, {"text": "*-2"}, {"text": "in"}, {"text": "Finland"}, {"text": "that"}, {"text": "*T*-3"}, {"text": "will"}, {"text": "carry"}, {"text": "on"}, {"text": "Waertsilae"}, {"text": "'s"}, {"text": "shipbuilding"}, {"text": "operations"}, {"text": "."}, {"text": "Carnival"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "will"}, {"text": "be"}, {"text": "an"}, {"text": "11"}, {"text": "%"}, {"text": "shareholder"}, {"text": "in"}, {"text": "the"}, {"text": "new"}, {"text": "company"}, {"text": "."}, {"text": "Carnival"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "Fantasy"}, {"text": ","}, {"text": "a"}, {"text": "2,050-passenger"}, {"text": "ship"}, {"text": "that"}, {"text": "*T*-3"}, {"text": "was"}, {"text": "slated"}, {"text": "*-4"}, {"text": "to"}, {"text": "be"}, {"text": "delivered"}, {"text": "*-2"}, {"text": "this"}, {"text": "month"}, {"text": ","}, {"text": "will"}, {"text": "be"}, {"text": "delivered"}, {"text": "*-1"}, {"text": "in"}, {"text": "January"}, {"text": "."}, {"text": "A"}, {"text": "second"}, {"text": "ship"}, {"text": "is"}, {"text": "now"}, {"text": "expected"}, {"text": "*-2"}, {"text": "to"}, {"text": "be"}, {"text": "delivered"}, {"text": "*-1"}, {"text": "late"}, {"text": "next"}, {"text": "year"}, {"text": "or"}, {"text": "early"}, {"text": "in"}, {"text": "1991"}, {"text": "."}, {"text": "Carnival"}, {"text": "had"}, {"text": "expected"}, {"text": "that"}, {"text": "ship"}, {"text": "to"}, {"text": "be"}, {"text": "delivered"}, {"text": "*-1"}, {"text": "next"}, {"text": "fall"}, {"text": "."}, {"text": "A"}, {"text": "planned"}, {"text": "third"}, {"text": "ship"}, {"text": "still"}, {"text": "may"}, {"text": "be"}, {"text": "built"}, {"text": "*-1"}, {"text": "in"}, {"text": "the"}, {"text": "Finnish"}, {"text": "shipyard"}, {"text": ","}, {"text": "or"}, {"text": "may"}, {"text": "be"}, {"text": "built"}, {"text": "*-1"}, {"text": "elsewhere"}, {"text": ","}, {"text": "Carnival"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "."}, {"text": "Valley"}, {"text": "Federal"}, {"text": "Savings"}, {"text": "&"}, {"text": "Loan"}, {"text": "Association"}, {"text": "took"}, {"text": "an"}, {"text": "$"}, {"text": "89.9"}, {"text": "million"}, {"text": "*U*"}, {"text": "charge"}, {"text": "as"}, {"text": "it"}, {"text": "reported"}, {"text": "a"}, {"text": "third-quarter"}, {"text": "loss"}, {"text": "of"}, {"text": "$"}, {"text": "70.7"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "$"}, {"text": "12.09"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": "."}, {"text": "The"}, {"text": "Van"}, {"text": "Nuys"}, {"text": ","}, {"text": "Calif."}, {"text": ","}, {"text": "thrift"}, {"text": "had"}, {"text": "net"}, {"text": "income"}, {"text": "of"}, {"text": "$"}, {"text": "132,000"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "three"}, {"text": "cents"}, {"text": "a"}, {"text": "share"}, {"text": ","}, {"text": "a"}, {"text": "year"}, {"text": "ago"}, {"text": "."}, {"text": "The"}, {"text": "bulk"}, {"text": "of"}, {"text": "the"}, {"text": "pretax"}, {"text": "charge"}, {"text": "is"}, {"text": "a"}, {"text": "$"}, {"text": "62"}, {"text": "million"}, {"text": "*U*"}, {"text": "write-off"}, {"text": "of"}, {"text": "capitalized"}, {"text": "servicing"}, {"text": "at"}, {"text": "the"}, {"text": "mobile"}, {"text": "home"}, {"text": "financing"}, {"text": "subsidiary"}, {"text": ","}, {"text": "which"}, {"text": "the"}, {"text": "company"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "had"}, {"text": "been"}, {"text": "a"}, {"text": "big"}, {"text": "drain"}, {"text": "on"}, {"text": "earnings"}, {"text": "."}, {"text": "The"}, {"text": "company"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "one-time"}, {"text": "provision"}, {"text": "would"}, {"text": "substantially"}, {"text": "eliminate"}, {"text": "all"}, {"text": "future"}, {"text": "losses"}, {"text": "at"}, {"text": "the"}, {"text": "unit"}, {"text": "."}, {"text": "Valley"}, {"text": "Federal"}, {"text": "also"}, {"text": "added"}, {"text": "$"}, {"text": "18"}, {"text": "million"}, {"text": "*U*"}, {"text": "to"}, {"text": "realestate"}, {"text": "loan"}, {"text": "reserves"}, {"text": "and"}, {"text": "eliminated"}, {"text": "$"}, {"text": "9.9"}, {"text": "million"}, {"text": "*U*"}, {"text": "of"}, {"text": "good"}, {"text": "will"}, {"text": "."}, {"text": "The"}, {"text": "thrift"}, {"text": "said"}, {"text": "that"}, {"text": "``"}, {"text": "after"}, {"text": "these"}, {"text": "charges"}, {"text": "and"}, {"text": "*"}, {"text": "assuming"}, {"text": "no"}, {"text": "dramatic"}, {"text": "fluctuation"}, {"text": "in"}, {"text": "interest"}, {"text": "rates"}, {"text": ","}, {"text": "the"}, {"text": "association"}, {"text": "expects"}, {"text": "*-1"}, {"text": "to"}, {"text": "achieve"}, {"text": "near"}, {"text": "record"}, {"text": "earnings"}, {"text": "in"}, {"text": "1990"}, {"text": "."}, {"text": "''"}, {"text": "Valley"}, {"text": "Federal"}, {"text": "is"}, {"text": "currently"}, {"text": "being"}, {"text": "examined"}, {"text": "*-1"}, {"text": "by"}, {"text": "regulators"}, {"text": "."}, {"text": "New"}, {"text": "loans"}, {"text": "continue"}, {"text": "*-1"}, {"text": "to"}, {"text": "slow"}, {"text": ";"}, {"text": "they"}, {"text": "were"}, {"text": "$"}, {"text": "6.6"}, {"text": "million"}, {"text": "*U*"}, {"text": "in"}, {"text": "the"}, {"text": "quarter"}, {"text": "compared"}, {"text": "with"}, {"text": "$"}, {"text": "361.8"}, {"text": "million"}, {"text": "*U*"}, {"text": "a"}, {"text": "year"}, {"text": "ago"}, {"text": "."}, {"text": "The"}, {"text": "thrift"}, {"text": "has"}, {"text": "assets"}, {"text": "of"}, {"text": "$"}, {"text": "3.2"}, {"text": "billion"}, {"text": "*U*"}, {"text": "."}, {"text": "First"}, {"text": "of"}, {"text": "America"}, {"text": "Bank"}, {"text": "Corp."}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "completed"}, {"text": "its"}, {"text": "acquisition"}, {"text": "of"}, {"text": "Midwest"}, {"text": "Financial"}, {"text": "Group"}, {"text": "Inc."}, {"text": "for"}, {"text": "about"}, {"text": "$"}, {"text": "250"}, {"text": "million"}, {"text": "*U*"}, {"text": "."}, {"text": "First"}, {"text": "of"}, {"text": "America"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "now"}, {"text": "has"}, {"text": "45"}, {"text": "banks"}, {"text": "and"}, {"text": "$"}, {"text": "12.5"}, {"text": "billion"}, {"text": "*U*"}, {"text": "in"}, {"text": "assets"}, {"text": ","}, {"text": "announced"}, {"text": "an"}, {"text": "agreement"}, {"text": "*"}, {"text": "to"}, {"text": "acquire"}, {"text": "the"}, {"text": "Peoria"}, {"text": ","}, {"text": "Ill."}, {"text": ","}, {"text": "bank"}, {"text": "holding"}, {"text": "company"}, {"text": "in"}, {"text": "January"}, {"text": "."}, {"text": "Midwest"}, {"text": "Financial"}, {"text": "has"}, {"text": "$"}, {"text": "2.3"}, {"text": "billion"}, {"text": "*U*"}, {"text": "in"}, {"text": "assets"}, {"text": "and"}, {"text": "eight"}, {"text": "banks"}, {"text": "."}, {"text": "The"}, {"text": "Midwest"}, {"text": "Financial"}, {"text": "subsidiary"}, {"text": "banks"}, {"text": "will"}, {"text": "continue"}, {"text": "*-1"}, {"text": "to"}, {"text": "operate"}, {"text": "under"}, {"text": "their"}, {"text": "current"}, {"text": "names"}, {"text": "until"}, {"text": "early"}, {"text": "1990"}, {"text": ","}, {"text": "when"}, {"text": "each"}, {"text": "will"}, {"text": "adopt"}, {"text": "the"}, {"text": "First"}, {"text": "of"}, {"text": "America"}, {"text": "name"}, {"text": "*T*-2"}, {"text": "."}, {"text": "Kalamazoo"}, {"text": ","}, {"text": "Mich.-based"}, {"text": "First"}, {"text": "of"}, {"text": "America"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "will"}, {"text": "eliminate"}, {"text": "the"}, {"text": "13"}, {"text": "management"}, {"text": "positions"}, {"text": "of"}, {"text": "the"}, {"text": "former"}, {"text": "Midwest"}, {"text": "Financial"}, {"text": "parent"}, {"text": "company"}, {"text": "."}, {"text": "First"}, {"text": "of"}, {"text": "America"}, {"text": "said"}, {"text": "0"}, {"text": "some"}, {"text": "of"}, {"text": "the"}, {"text": "managers"}, {"text": "will"}, {"text": "take"}, {"text": "other"}, {"text": "jobs"}, {"text": "with"}, {"text": "First"}, {"text": "of"}, {"text": "America"}, {"text": "."}, {"text": "But"}, {"text": "it"}, {"text": "said"}, {"text": "that"}, {"text": "severance"}, {"text": "payments"}, {"text": "to"}, {"text": "those"}, {"text": "executives"}, {"text": "not"}, {"text": "staying"}, {"text": "with"}, {"text": "the"}, {"text": "company"}, {"text": "will"}, {"text": "reduce"}, {"text": "First"}, {"text": "of"}, {"text": "America"}, {"text": "'s"}, {"text": "operating"}, {"text": "results"}, {"text": "for"}, {"text": "1989"}, {"text": "by"}, {"text": "$"}, {"text": "3"}, {"text": "million"}, {"text": "*U*"}, {"text": "to"}, {"text": "$"}, {"text": "4"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "15"}, {"text": "cents"}, {"text": "to"}, {"text": "20"}, {"text": "cents"}, {"text": "a"}, {"text": "share"}, {"text": "."}, {"text": "Coleco"}, {"text": "Industries"}, {"text": "Inc."}, {"text": ","}, {"text": "a"}, {"text": "once"}, {"text": "high-flying"}, {"text": "toy"}, {"text": "maker"}, {"text": "whose"}, {"text": "stock"}, {"text": "*T*-2"}, {"text": "peaked"}, {"text": "at"}, {"text": "$"}, {"text": "65"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": "in"}, {"text": "the"}, {"text": "early"}, {"text": "1980s"}, {"text": ","}, {"text": "filed"}, {"text": "a"}, {"text": "Chapter"}, {"text": "11"}, {"text": "reorganization"}, {"text": "plan"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "provides"}, {"text": "just"}, {"text": "1.125"}, {"text": "cents"}, {"text": "a"}, {"text": "share"}, {"text": "for"}, {"text": "common"}, {"text": "stockholders"}, {"text": "."}, {"text": "Under"}, {"text": "the"}, {"text": "plan"}, {"text": ","}, {"text": "unsecured"}, {"text": "creditors"}, {"text": ","}, {"text": "who"}, {"text": "*T*-3"}, {"text": "are"}, {"text": "owed"}, {"text": "*-1"}, {"text": "about"}, {"text": "$"}, {"text": "430"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "would"}, {"text": "receive"}, {"text": "about"}, {"text": "$"}, {"text": "92"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "21"}, {"text": "cents"}, {"text": "for"}, {"text": "each"}, {"text": "dollar"}, {"text": "0"}, {"text": "they"}, {"text": "are"}, {"text": "owed"}, {"text": "*-2"}, {"text": "*T*-4"}, {"text": "."}, {"text": "In"}, {"text": "addition"}, {"text": ","}, {"text": "they"}, {"text": "will"}, {"text": "receive"}, {"text": "stock"}, {"text": "in"}, {"text": "the"}, {"text": "reorganized"}, {"text": "company"}, {"text": ","}, {"text": "which"}, {"text": "*T*-2"}, {"text": "will"}, {"text": "be"}, {"text": "named"}, {"text": "*-1"}, {"text": "Ranger"}, {"text": "Industries"}, {"text": "Inc"}, {"text": "."}, {"text": "After"}, {"text": "these"}, {"text": "payments"}, {"text": ","}, {"text": "about"}, {"text": "$"}, {"text": "225,000"}, {"text": "*U*"}, {"text": "will"}, {"text": "be"}, {"text": "available"}, {"text": "for"}, {"text": "the"}, {"text": "20"}, {"text": "million"}, {"text": "common"}, {"text": "shares"}, {"text": "outstanding"}, {"text": "."}, {"text": "The"}, {"text": "Avon"}, {"text": ","}, {"text": "Conn."}, {"text": ","}, {"text": "company"}, {"text": "'s"}, {"text": "stock"}, {"text": "hit"}, {"text": "a"}, {"text": "high"}, {"text": "in"}, {"text": "1983"}, {"text": "after"}, {"text": "it"}, {"text": "unveiled"}, {"text": "its"}, {"text": "Adam"}, {"text": "home"}, {"text": "computer"}, {"text": ","}, {"text": "but"}, {"text": "the"}, {"text": "product"}, {"text": "was"}, {"text": "plagued"}, {"text": "*-1"}, {"text": "with"}, {"text": "glitches"}, {"text": "and"}, {"text": "the"}, {"text": "company"}, {"text": "'s"}, {"text": "fortunes"}, {"text": "plunged"}, {"text": "."}, {"text": "But"}, {"text": "Coleco"}, {"text": "bounced"}, {"text": "back"}, {"text": "with"}, {"text": "the"}, {"text": "introduction"}, {"text": "of"}, {"text": "the"}, {"text": "Cabbage"}, {"text": "Patch"}, {"text": "dolls"}, {"text": ","}, {"text": "whose"}, {"text": "sales"}, {"text": "*T*-1"}, {"text": "hit"}, {"text": "$"}, {"text": "600"}, {"text": "million"}, {"text": "*U*"}, {"text": "in"}, {"text": "1985"}, {"text": "."}, {"text": "But"}, {"text": "as"}, {"text": "the"}, {"text": "craze"}, {"text": "died"}, {"text": ","}, {"text": "Coleco"}, {"text": "failed"}, {"text": "*-1"}, {"text": "to"}, {"text": "come"}, {"text": "up"}, {"text": "with"}, {"text": "another"}, {"text": "winner"}, {"text": "and"}, {"text": "filed"}, {"text": "for"}, {"text": "bankruptcy-law"}, {"text": "protection"}, {"text": "in"}, {"text": "July"}, {"text": "1988"}, {"text": "."}, {"text": "The"}, {"text": "plan"}, {"text": "was"}, {"text": "filed"}, {"text": "*-1"}, {"text": "jointly"}, {"text": "with"}, {"text": "unsecured"}, {"text": "creditors"}, {"text": "in"}, {"text": "federal"}, {"text": "bankruptcy"}, {"text": "court"}, {"text": "in"}, {"text": "New"}, {"text": "York"}, {"text": "and"}, {"text": "must"}, {"text": "be"}, {"text": "approved"}, {"text": "*-1"}, {"text": "by"}, {"text": "the"}, {"text": "court"}, {"text": "."}, {"text": "ORTEGA"}, {"text": "ENDED"}, {"text": "a"}, {"text": "truce"}, {"text": "with"}, {"text": "the"}, {"text": "Contras"}, {"text": "and"}, {"text": "said"}, {"text": "0"}, {"text": "elections"}, {"text": "were"}, {"text": "threatened"}, {"text": "*-1"}, {"text": "."}, {"text": "The"}, {"text": "Nicaraguan"}, {"text": "president"}, {"text": ","}, {"text": "*-1"}, {"text": "citing"}, {"text": "attacks"}, {"text": "by"}, {"text": "the"}, {"text": "U.S.-backed"}, {"text": "rebels"}, {"text": ","}, {"text": "suspended"}, {"text": "a"}, {"text": "19-month-old"}, {"text": "cease-fire"}, {"text": "and"}, {"text": "accused"}, {"text": "Bush"}, {"text": "of"}, {"text": "``"}, {"text": "*"}, {"text": "promoting"}, {"text": "death"}, {"text": "."}, {"text": "''"}, {"text": "While"}, {"text": "he"}, {"text": "reaffirmed"}, {"text": "support"}, {"text": "for"}, {"text": "the"}, {"text": "country"}, {"text": "'s"}, {"text": "Feb."}, {"text": "25"}, {"text": "elections"}, {"text": ","}, {"text": "Ortega"}, {"text": "indicated"}, {"text": "that"}, {"text": "renewed"}, {"text": "U.S."}, {"text": "military"}, {"text": "aid"}, {"text": "to"}, {"text": "the"}, {"text": "Contras"}, {"text": "could"}, {"text": "thwart"}, {"text": "the"}, {"text": "balloting"}, {"text": "."}, {"text": "He"}, {"text": "said"}, {"text": "0"}, {"text": "U.S."}, {"text": "assistance"}, {"text": "should"}, {"text": "be"}, {"text": "used"}, {"text": "*-1"}, {"text": "*"}, {"text": "to"}, {"text": "demobilize"}, {"text": "the"}, {"text": "rebels"}, {"text": "."}, {"text": "A"}, {"text": "White"}, {"text": "House"}, {"text": "spokesman"}, {"text": "condemned"}, {"text": "the"}, {"text": "truce"}, {"text": "suspension"}, {"text": "as"}, {"text": "``"}, {"text": "deplorable"}, {"text": "''"}, {"text": "but"}, {"text": "brushed"}, {"text": "off"}, {"text": "talk"}, {"text": "of"}, {"text": "*"}, {"text": "renewing"}, {"text": "military"}, {"text": "funding"}, {"text": "for"}, {"text": "the"}, {"text": "insurgents"}, {"text": "."}, {"text": "The"}, {"text": "Contra"}, {"text": "military"}, {"text": "command"}, {"text": ","}, {"text": "in"}, {"text": "a"}, {"text": "statement"}, {"text": "from"}, {"text": "Honduras"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "Sandinista"}, {"text": "troops"}, {"text": "had"}, {"text": "launched"}, {"text": "a"}, {"text": "major"}, {"text": "offensive"}, {"text": "against"}, {"text": "the"}, {"text": "rebel"}, {"text": "forces"}, {"text": "."}, {"text": "East"}, {"text": "German"}, {"text": "leader"}, {"text": "Krenz"}, {"text": "called"}, {"text": "the"}, {"text": "protests"}, {"text": "in"}, {"text": "his"}, {"text": "country"}, {"text": "a"}, {"text": "``"}, {"text": "good"}, {"text": "sign"}, {"text": ","}, {"text": "''"}, {"text": "*-1"}, {"text": "saying"}, {"text": "that"}, {"text": "many"}, {"text": "of"}, {"text": "those"}, {"text": "marching"}, {"text": "for"}, {"text": "democratic"}, {"text": "freedoms"}, {"text": "were"}, {"text": "showing"}, {"text": "support"}, {"text": "for"}, {"text": "``"}, {"text": "the"}, {"text": "renovation"}, {"text": "for"}, {"text": "socialism"}, {"text": "."}, {"text": "''"}, {"text": "The"}, {"text": "Communist"}, {"text": "Party"}, {"text": "chief"}, {"text": ","}, {"text": "*-1"}, {"text": "in"}, {"text": "Moscow"}, {"text": "for"}, {"text": "talks"}, {"text": "with"}, {"text": "Soviet"}, {"text": "officials"}, {"text": ","}, {"text": "also"}, {"text": "said"}, {"text": "0"}, {"text": "East"}, {"text": "Germany"}, {"text": "would"}, {"text": "follow"}, {"text": "Gorbachev"}, {"text": "'s"}, {"text": "restructuring"}, {"text": "plans"}, {"text": "."}, {"text": "Thousands"}, {"text": "of"}, {"text": "East"}, {"text": "Germans"}, {"text": "fled"}, {"text": "to"}, {"text": "Czechoslovakia"}, {"text": "after"}, {"text": "the"}, {"text": "East"}, {"text": "Berlin"}, {"text": "government"}, {"text": "lifted"}, {"text": "travel"}, {"text": "restrictions"}, {"text": "."}, {"text": "The"}, {"text": "ban"}, {"text": "on"}, {"text": "cross-border"}, {"text": "movement"}, {"text": "was"}, {"text": "imposed"}, {"text": "*-1"}, {"text": "last"}, {"text": "month"}, {"text": "after"}, {"text": "a"}, {"text": "massive"}, {"text": "exodus"}, {"text": "of"}, {"text": "emigres"}, {"text": "to"}, {"text": "West"}, {"text": "Germany"}, {"text": "."}, {"text": "Also"}, {"text": ","}, {"text": "a"}, {"text": "Communist"}, {"text": "official"}, {"text": "for"}, {"text": "the"}, {"text": "first"}, {"text": "time"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "future"}, {"text": "of"}, {"text": "the"}, {"text": "Berlin"}, {"text": "Wall"}, {"text": "could"}, {"text": "be"}, {"text": "open"}, {"text": "to"}, {"text": "discussion"}, {"text": "."}, {"text": "Health"}, {"text": "officials"}, {"text": "plan"}, {"text": "*-1"}, {"text": "to"}, {"text": "extend"}, {"text": "a"}, {"text": "moratorium"}, {"text": "on"}, {"text": "federal"}, {"text": "funding"}, {"text": "of"}, {"text": "research"}, {"text": "involving"}, {"text": "fetal-tissue"}, {"text": "transplants"}, {"text": "."}, {"text": "The"}, {"text": "assistant"}, {"text": "HHS"}, {"text": "secretary"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "ban"}, {"text": "``"}, {"text": "should"}, {"text": "be"}, {"text": "continued"}, {"text": "*-1"}, {"text": "indefinitely"}, {"text": "."}, {"text": "''"}, {"text": "While"}, {"text": "researchers"}, {"text": "believe"}, {"text": "0"}, {"text": "such"}, {"text": "transplants"}, {"text": "could"}, {"text": "help"}, {"text": "*-1"}, {"text": "treat"}, {"text": "diseases"}, {"text": "like"}, {"text": "Alzheimer"}, {"text": "'s"}, {"text": ","}, {"text": "anti-abortionists"}, {"text": "oppose"}, {"text": "the"}, {"text": "research"}, {"text": "."}, {"text": "Rep."}, {"text": "Dingell"}, {"text": "of"}, {"text": "Michigan"}, {"text": "plans"}, {"text": "*-3"}, {"text": "to"}, {"text": "unveil"}, {"text": "today"}, {"text": "a"}, {"text": "proposal"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "would"}, {"text": "break"}, {"text": "with"}, {"text": "Bush"}, {"text": "'s"}, {"text": "clean-air"}, {"text": "bill"}, {"text": "on"}, {"text": "the"}, {"text": "issue"}, {"text": "of"}, {"text": "emissions"}, {"text": "that"}, {"text": "*T*-2"}, {"text": "lead"}, {"text": "to"}, {"text": "acid"}, {"text": "rain"}, {"text": "."}, {"text": "The"}, {"text": "Democrat"}, {"text": "'s"}, {"text": "proposal"}, {"text": "is"}, {"text": "described"}, {"text": "*-1"}, {"text": "by"}, {"text": "government"}, {"text": "sources"}, {"text": "and"}, {"text": "lobbyists"}, {"text": "as"}, {"text": "significantly"}, {"text": "weaker"}, {"text": "than"}, {"text": "the"}, {"text": "president"}, {"text": "'s"}, {"text": "plan"}, {"text": "*"}, {"text": "to"}, {"text": "cut"}, {"text": "utility"}, {"text": "emissions"}, {"text": "."}, {"text": "House-Senate"}, {"text": "conferees"}, {"text": "approved"}, {"text": "major"}, {"text": "portions"}, {"text": "of"}, {"text": "a"}, {"text": "package"}, {"text": "for"}, {"text": "more"}, {"text": "than"}, {"text": "$"}, {"text": "500"}, {"text": "million"}, {"text": "*U*"}, {"text": "in"}, {"text": "economic"}, {"text": "aid"}, {"text": "for"}, {"text": "Poland"}, {"text": "."}, {"text": "The"}, {"text": "plan"}, {"text": "relies"}, {"text": "heavily"}, {"text": "on"}, {"text": "$"}, {"text": "240"}, {"text": "million"}, {"text": "*U*"}, {"text": "in"}, {"text": "credit"}, {"text": "and"}, {"text": "loan"}, {"text": "guarantees"}, {"text": "in"}, {"text": "fiscal"}, {"text": "1990"}, {"text": "in"}, {"text": "hopes"}, {"text": "of"}, {"text": "*"}, {"text": "stimulating"}, {"text": "future"}, {"text": "trade"}, {"text": "and"}, {"text": "investment"}, {"text": "."}, {"text": "South"}, {"text": "Africa"}, {"text": "accused"}, {"text": "armed"}, {"text": "Namibian"}, {"text": "nationalist"}, {"text": "guerrillas"}, {"text": "of"}, {"text": "*"}, {"text": "crossing"}, {"text": "from"}, {"text": "bases"}, {"text": "in"}, {"text": "neighboring"}, {"text": "Angola"}, {"text": ","}, {"text": "*-1"}, {"text": "violating"}, {"text": "U.N.-supervised"}, {"text": "peace"}, {"text": "plans"}, {"text": "for"}, {"text": "the"}, {"text": "territory"}, {"text": "'s"}, {"text": "independence"}, {"text": "from"}, {"text": "Pretoria"}, {"text": "."}, {"text": "South"}, {"text": "African"}, {"text": "troops"}, {"text": "were"}, {"text": "placed"}, {"text": "*-1"}, {"text": "on"}, {"text": "alert"}, {"text": "."}, {"text": "Guerrilla"}, {"text": "leaders"}, {"text": "said"}, {"text": "0"}, {"text": "Pretoria"}, {"text": "was"}, {"text": "attempting"}, {"text": "*-1"}, {"text": "to"}, {"text": "sabotage"}, {"text": "next"}, {"text": "week"}, {"text": "'s"}, {"text": "elections"}, {"text": "in"}, {"text": "Namibia"}, {"text": "."}, {"text": "Gunmen"}, {"text": "in"}, {"text": "Lebanon"}, {"text": "assassinated"}, {"text": "a"}, {"text": "Saudi"}, {"text": "Arabian"}, {"text": "Embassy"}, {"text": "employee"}, {"text": ","}, {"text": "and"}, {"text": "the"}, {"text": "pro-Iranian"}, {"text": "Islamic"}, {"text": "Jihad"}, {"text": "took"}, {"text": "responsibility"}, {"text": "for"}, {"text": "the"}, {"text": "slaying"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "to"}, {"text": "avenge"}, {"text": "the"}, {"text": "beheading"}, {"text": "of"}, {"text": "16"}, {"text": "terrorists"}, {"text": "by"}, {"text": "Riyadh"}, {"text": "'s"}, {"text": "government"}, {"text": "in"}, {"text": "September"}, {"text": "."}, {"text": "Also"}, {"text": "in"}, {"text": "Beirut"}, {"text": ","}, {"text": "a"}, {"text": "Moslem"}, {"text": "group"}, {"text": "vowed"}, {"text": "*-1"}, {"text": "to"}, {"text": "kill"}, {"text": "Americans"}, {"text": "if"}, {"text": "the"}, {"text": "U.S."}, {"text": "implements"}, {"text": "a"}, {"text": "policy"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "to"}, {"text": "seize"}, {"text": "suspects"}, {"text": "abroad"}, {"text": "."}, {"text": "Nixon"}, {"text": "concluded"}, {"text": "five"}, {"text": "days"}, {"text": "of"}, {"text": "private"}, {"text": "talks"}, {"text": "with"}, {"text": "Chinese"}, {"text": "leaders"}, {"text": "in"}, {"text": "Beijing"}, {"text": ","}, {"text": "but"}, {"text": "apparently"}, {"text": "failed"}, {"text": "*-1"}, {"text": "to"}, {"text": "ease"}, {"text": "strains"}, {"text": "in"}, {"text": "Sino-U.S."}, {"text": "ties"}, {"text": "caused"}, {"text": "*"}, {"text": "by"}, {"text": "China"}, {"text": "'s"}, {"text": "crackdown"}, {"text": "against"}, {"text": "pro-democracy"}, {"text": "protesters"}, {"text": "in"}, {"text": "June"}, {"text": "."}, {"text": "Beijing"}, {"text": "'s"}, {"text": "rulers"}, {"text": "complained"}, {"text": "to"}, {"text": "the"}, {"text": "former"}, {"text": "president"}, {"text": "about"}, {"text": "U.S."}, {"text": "``"}, {"text": "interference"}, {"text": "''"}, {"text": "in"}, {"text": "China"}, {"text": "'s"}, {"text": "domestic"}, {"text": "affairs"}, {"text": "."}, {"text": "Mexico"}, {"text": "'s"}, {"text": "President"}, {"text": "Salinas"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "country"}, {"text": "'s"}, {"text": "recession"}, {"text": "had"}, {"text": "ended"}, {"text": "and"}, {"text": "the"}, {"text": "economy"}, {"text": "was"}, {"text": "growing"}, {"text": "again"}, {"text": "."}, {"text": "In"}, {"text": "his"}, {"text": "first"}, {"text": "state"}, {"text": "of"}, {"text": "the"}, {"text": "nation"}, {"text": "address"}, {"text": ","}, {"text": "Salinas"}, {"text": "pledged"}, {"text": "*-1"}, {"text": "to"}, {"text": "continue"}, {"text": "his"}, {"text": "program"}, {"text": "of"}, {"text": "modernization"}, {"text": "and"}, {"text": "warned"}, {"text": "opposition"}, {"text": "politicians"}, {"text": "that"}, {"text": "*"}, {"text": "impeding"}, {"text": "progress"}, {"text": "could"}, {"text": "cost"}, {"text": "them"}, {"text": "popular"}, {"text": "support"}, {"text": "."}, {"text": "Pakistan"}, {"text": "'s"}, {"text": "Bhutto"}, {"text": "defeated"}, {"text": "the"}, {"text": "first"}, {"text": "no-confidence"}, {"text": "motion"}, {"text": "in"}, {"text": "the"}, {"text": "nation"}, {"text": "'s"}, {"text": "42-year"}, {"text": "history"}, {"text": ","}, {"text": "*-2"}, {"text": "surviving"}, {"text": "the"}, {"text": "vote"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "could"}, {"text": "have"}, {"text": "brought"}, {"text": "down"}, {"text": "her"}, {"text": "11-month-old"}, {"text": "government"}, {"text": "."}, {"text": "The"}, {"text": "prime"}, {"text": "minister"}, {"text": "'s"}, {"text": "opponents"}, {"text": "claimed"}, {"text": "0"}, {"text": "the"}, {"text": "balloting"}, {"text": ","}, {"text": "12"}, {"text": "votes"}, {"text": "short"}, {"text": "of"}, {"text": "a"}, {"text": "majority"}, {"text": "in"}, {"text": "Islamabad"}, {"text": "'s"}, {"text": "237-seat"}, {"text": "assembly"}, {"text": ","}, {"text": "was"}, {"text": "rigged"}, {"text": "*-1"}, {"text": "."}, {"text": "The"}, {"text": "White"}, {"text": "House"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "shipboard"}, {"text": "meetings"}, {"text": "next"}, {"text": "month"}, {"text": "between"}, {"text": "Bush"}, {"text": "and"}, {"text": "Soviet"}, {"text": "leader"}, {"text": "Gorbachev"}, {"text": "will"}, {"text": "take"}, {"text": "place"}, {"text": "in"}, {"text": "the"}, {"text": "waters"}, {"text": "off"}, {"text": "Malta"}, {"text": "."}, {"text": "The"}, {"text": "location"}, {"text": "was"}, {"text": "disclosed"}, {"text": "*-4"}, {"text": "as"}, {"text": "the"}, {"text": "U.S."}, {"text": "began"}, {"text": "*-1"}, {"text": "planning"}, {"text": "the"}, {"text": "issues"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "to"}, {"text": "be"}, {"text": "discussed"}, {"text": "*-5"}, {"text": "at"}, {"text": "the"}, {"text": "Dec."}, {"text": "2-3"}, {"text": "tete-a-tete"}, {"text": "."}, {"text": "Bush"}, {"text": "unveiled"}, {"text": "a"}, {"text": "package"}, {"text": "of"}, {"text": "trade"}, {"text": "initiatives"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "to"}, {"text": "help"}, {"text": "*-2"}, {"text": "establish"}, {"text": "``"}, {"text": "economic"}, {"text": "alternatives"}, {"text": "to"}, {"text": "drug"}, {"text": "trafficking"}, {"text": "''"}, {"text": "in"}, {"text": "the"}, {"text": "Andean"}, {"text": "nations"}, {"text": "of"}, {"text": "South"}, {"text": "America"}, {"text": "."}, {"text": "The"}, {"text": "president"}, {"text": "'s"}, {"text": "plan"}, {"text": "includes"}, {"text": "a"}, {"text": "commitment"}, {"text": "*"}, {"text": "to"}, {"text": "help"}, {"text": "*-1"}, {"text": "negotiate"}, {"text": "a"}, {"text": "new"}, {"text": "international"}, {"text": "coffee"}, {"text": "agreement"}, {"text": "."}, {"text": "Pan"}, {"text": "Am"}, {"text": "has"}, {"text": "subpoenaed"}, {"text": "several"}, {"text": "government"}, {"text": "agencies"}, {"text": ","}, {"text": "including"}, {"text": "the"}, {"text": "CIA"}, {"text": "and"}, {"text": "FBI"}, {"text": ","}, {"text": "*"}, {"text": "to"}, {"text": "determine"}, {"text": "whether"}, {"text": "they"}, {"text": "were"}, {"text": "warned"}, {"text": "*-1"}, {"text": "that"}, {"text": "a"}, {"text": "bomb"}, {"text": "had"}, {"text": "been"}, {"text": "planted"}, {"text": "*-2"}, {"text": "aboard"}, {"text": "a"}, {"text": "jet"}, {"text": "that"}, {"text": "*T*-3"}, {"text": "exploded"}, {"text": "over"}, {"text": "Scotland"}, {"text": "last"}, {"text": "December"}, {"text": ","}, {"text": "*-4"}, {"text": "killing"}, {"text": "270"}, {"text": "people"}, {"text": "."}, {"text": "The"}, {"text": "airline"}, {"text": "is"}, {"text": "attempting"}, {"text": "*-1"}, {"text": "to"}, {"text": "show"}, {"text": "that"}, {"text": "Israel"}, {"text": "and"}, {"text": "West"}, {"text": "Germany"}, {"text": "warned"}, {"text": "the"}, {"text": "U.S."}, {"text": "about"}, {"text": "the"}, {"text": "impending"}, {"text": "attack"}, {"text": "."}, {"text": "Died"}, {"text": ":"}, {"text": "James"}, {"text": "A."}, {"text": "Attwood"}, {"text": ","}, {"text": "62"}, {"text": ","}, {"text": "retired"}, {"text": "chairman"}, {"text": "and"}, {"text": "president"}, {"text": "of"}, {"text": "Mutual"}, {"text": "Life"}, {"text": "Insurance"}, {"text": "Co."}, {"text": "of"}, {"text": "New"}, {"text": "York"}, {"text": ","}, {"text": "Tuesday"}, {"text": ","}, {"text": "in"}, {"text": "New"}, {"text": "York"}, {"text": "City"}, {"text": ","}, {"text": "of"}, {"text": "an"}, {"text": "acute"}, {"text": "anemic"}, {"text": "condition"}, {"text": "."}, {"text": "Sony"}, {"text": "Corp."}, {"text": "completed"}, {"text": "its"}, {"text": "tender"}, {"text": "offer"}, {"text": "for"}, {"text": "Columbia"}, {"text": "Pictures"}, {"text": "Entertainment"}, {"text": "Inc."}, {"text": ","}, {"text": "with"}, {"text": "Columbia"}, {"text": "shareholders"}, {"text": "tendering"}, {"text": "99.3"}, {"text": "%"}, {"text": "of"}, {"text": "all"}, {"text": "common"}, {"text": "shares"}, {"text": "outstanding"}, {"text": "by"}, {"text": "the"}, {"text": "Tuesday"}, {"text": "deadline"}, {"text": "."}, {"text": "Sony"}, {"text": "Columbia"}, {"text": "Acquisition"}, {"text": "Corp."}, {"text": ","}, {"text": "formed"}, {"text": "*"}, {"text": "for"}, {"text": "the"}, {"text": "Columbia"}, {"text": "deal"}, {"text": ","}, {"text": "will"}, {"text": "formally"}, {"text": "take"}, {"text": "ownership"}, {"text": "of"}, {"text": "the"}, {"text": "movie"}, {"text": "studio"}, {"text": "later"}, {"text": "this"}, {"text": "month"}, {"text": ","}, {"text": "a"}, {"text": "spokesman"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Sony"}, {"text": "is"}, {"text": "paying"}, {"text": "$"}, {"text": "27"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": ","}, {"text": "or"}, {"text": "$"}, {"text": "3.55"}, {"text": "billion"}, {"text": "*U*"}, {"text": ","}, {"text": "cash"}, {"text": "and"}, {"text": "is"}, {"text": "assuming"}, {"text": "$"}, {"text": "1.4"}, {"text": "billion"}, {"text": "*U*"}, {"text": "of"}, {"text": "long-term"}, {"text": "debt"}, {"text": "."}, {"text": "Still"}, {"text": "unresolved"}, {"text": "is"}, {"text": "*T*-1"}, {"text": "Sony"}, {"text": "'s"}, {"text": "effort"}, {"text": "*"}, {"text": "to"}, {"text": "hire"}, {"text": "producers"}, {"text": "Jon"}, {"text": "Peters"}, {"text": "and"}, {"text": "Peter"}, {"text": "Guber"}, {"text": "to"}, {"text": "run"}, {"text": "the"}, {"text": "studio"}, {"text": "."}, {"text": "Sony"}, {"text": "'s"}, {"text": "planned"}, {"text": "acquisition"}, {"text": "of"}, {"text": "Guber\\/Peters"}, {"text": "Entertainment"}, {"text": "Co."}, {"text": "for"}, {"text": "$"}, {"text": "200"}, {"text": "million"}, {"text": "*U*"}, {"text": "is"}, {"text": "scheduled"}, {"text": "*-1"}, {"text": "to"}, {"text": "close"}, {"text": "Monday"}, {"text": "."}, {"text": "Guber\\/Peters"}, {"text": "has"}, {"text": "been"}, {"text": "locked"}, {"text": "*-1"}, {"text": "in"}, {"text": "litigation"}, {"text": "with"}, {"text": "Warner"}, {"text": "Communications"}, {"text": "Inc."}, {"text": "in"}, {"text": "an"}, {"text": "attempt"}, {"text": "*"}, {"text": "to"}, {"text": "get"}, {"text": "out"}, {"text": "of"}, {"text": "an"}, {"text": "exclusive"}, {"text": "production"}, {"text": "contract"}, {"text": "with"}, {"text": "Warner"}, {"text": "."}, {"text": "Both"}, {"text": "sides"}, {"text": "are"}, {"text": "in"}, {"text": "talks"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "settle"}, {"text": "the"}, {"text": "dispute"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Xerox"}, {"text": "Corp."}, {"text": "has"}, {"text": "told"}, {"text": "employees"}, {"text": "in"}, {"text": "its"}, {"text": "Crum"}, {"text": "&"}, {"text": "Forster"}, {"text": "personal"}, {"text": "insurance"}, {"text": "operations"}, {"text": "that"}, {"text": "it"}, {"text": "is"}, {"text": "laying"}, {"text": "off"}, {"text": "about"}, {"text": "300"}, {"text": "people"}, {"text": ","}, {"text": "or"}, {"text": "25"}, {"text": "%"}, {"text": "of"}, {"text": "the"}, {"text": "staff"}, {"text": "."}, {"text": "A"}, {"text": "spokeswoman"}, {"text": "for"}, {"text": "Crum"}, {"text": "&"}, {"text": "Forster"}, {"text": "said"}, {"text": "0"}, {"text": "employees"}, {"text": "were"}, {"text": "told"}, {"text": "*-1"}, {"text": "early"}, {"text": "this"}, {"text": "week"}, {"text": "that"}, {"text": "numerous"}, {"text": "staff"}, {"text": "functions"}, {"text": "for"}, {"text": "the"}, {"text": "personal"}, {"text": "insurance"}, {"text": "lines"}, {"text": "were"}, {"text": "going"}, {"text": "*-3"}, {"text": "to"}, {"text": "be"}, {"text": "centralized"}, {"text": "*-2"}, {"text": "as"}, {"text": "a"}, {"text": "cost-cutting"}, {"text": "move"}, {"text": "."}, {"text": "She"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "move"}, {"text": "would"}, {"text": "result"}, {"text": "in"}, {"text": "a"}, {"text": "after-tax"}, {"text": "charge"}, {"text": "of"}, {"text": "less"}, {"text": "than"}, {"text": "$"}, {"text": "4"}, {"text": "million"}, {"text": "*U*"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "to"}, {"text": "be"}, {"text": "spread"}, {"text": "*-1"}, {"text": "over"}, {"text": "the"}, {"text": "next"}, {"text": "three"}, {"text": "quarters"}, {"text": "."}, {"text": "By"}, {"text": "comparison"}, {"text": ","}, {"text": "for"}, {"text": "the"}, {"text": "first"}, {"text": "nine"}, {"text": "months"}, {"text": ","}, {"text": "Xerox"}, {"text": "earned"}, {"text": "$"}, {"text": "492"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "$"}, {"text": "4.55"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": ","}, {"text": "on"}, {"text": "revenue"}, {"text": "of"}, {"text": "$"}, {"text": "12.97"}, {"text": "billion"}, {"text": "*U*"}, {"text": "."}, {"text": "Earnings"}, {"text": "at"}, {"text": "Xerox"}, {"text": "'s"}, {"text": "financial-services"}, {"text": "operations"}, {"text": "actually"}, {"text": "rose"}, {"text": "slightly"}, {"text": ","}, {"text": "but"}, {"text": "that"}, {"text": "was"}, {"text": "largely"}, {"text": "because"}, {"text": "capital"}, {"text": "gains"}, {"text": "at"}, {"text": "Crum"}, {"text": "&"}, {"text": "Forster"}, {"text": "offset"}, {"text": "Hurricane"}, {"text": "Hugo"}, {"text": "payments"}, {"text": "and"}, {"text": "the"}, {"text": "reserves"}, {"text": "set"}, {"text": "up"}, {"text": "*"}, {"text": "*"}, {"text": "to"}, {"text": "cover"}, {"text": "future"}, {"text": "payments"}, {"text": "."}, {"text": "Property\\/casualty"}, {"text": "insurance"}, {"text": "has"}, {"text": "been"}, {"text": "a"}, {"text": "tough"}, {"text": "business"}, {"text": "in"}, {"text": "recent"}, {"text": "quarters"}, {"text": ","}, {"text": "as"}, {"text": "pricing"}, {"text": "has"}, {"text": "been"}, {"text": "cutthroat"}, {"text": "and"}, {"text": "natural"}, {"text": "disasters"}, {"text": "such"}, {"text": "as"}, {"text": "Hurricane"}, {"text": "Hugo"}, {"text": "and"}, {"text": "the"}, {"text": "California"}, {"text": "earthquake"}, {"text": "have"}, {"text": "resulted"}, {"text": "in"}, {"text": "huge"}, {"text": "payments"}, {"text": "."}, {"text": "Komatsu"}, {"text": "Ltd."}, {"text": ","}, {"text": "a"}, {"text": "large"}, {"text": "integrated"}, {"text": "maker"}, {"text": "of"}, {"text": "construction"}, {"text": "machinery"}, {"text": ","}, {"text": "posted"}, {"text": "a"}, {"text": "32"}, {"text": "%"}, {"text": "unconsolidated"}, {"text": "gain"}, {"text": "in"}, {"text": "first-half"}, {"text": "pretax"}, {"text": "profit"}, {"text": "."}, {"text": "For"}, {"text": "the"}, {"text": "period"}, {"text": "ended"}, {"text": "Sept.30"}, {"text": ","}, {"text": "it"}, {"text": "earned"}, {"text": "16.68"}, {"text": "billion"}, {"text": "yen"}, {"text": ","}, {"text": "-LRB-"}, {"text": "US$"}, {"text": "116.7"}, {"text": "million"}, {"text": "*U*"}, {"text": "-RRB-"}, {"text": "up"}, {"text": "from"}, {"text": "12.68"}, {"text": "billion"}, {"text": "yen"}, {"text": "the"}, {"text": "year"}, {"text": "before"}, {"text": "."}, {"text": "Sales"}, {"text": "rose"}, {"text": "11"}, {"text": "%"}, {"text": "to"}, {"text": "292.32"}, {"text": "billion"}, {"text": "yen"}, {"text": "from"}, {"text": "263.07"}, {"text": "billion"}, {"text": "yen"}, {"text": "."}, {"text": "Net"}, {"text": "income"}, {"text": "surged"}, {"text": "31"}, {"text": "%"}, {"text": "to"}, {"text": "7.63"}, {"text": "billion"}, {"text": "yen"}, {"text": "from"}, {"text": "5.82"}, {"text": "billion"}, {"text": "yen"}, {"text": "."}, {"text": "Per-share"}, {"text": "net"}, {"text": "rose"}, {"text": "to"}, {"text": "7.84"}, {"text": "yen"}, {"text": "from"}, {"text": "6.53"}, {"text": "yen"}, {"text": "."}, {"text": "Brisk"}, {"text": "domestic"}, {"text": "demand"}, {"text": "due"}, {"text": "to"}, {"text": "increasing"}, {"text": "capital"}, {"text": "investment"}, {"text": "pushed"}, {"text": "up"}, {"text": "sales"}, {"text": "sharply"}, {"text": "in"}, {"text": "construction"}, {"text": "and"}, {"text": "industrial"}, {"text": "machinery"}, {"text": "divisions"}, {"text": "."}, {"text": "Domestic"}, {"text": "sales"}, {"text": "of"}, {"text": "construction"}, {"text": "machinery"}, {"text": ","}, {"text": "such"}, {"text": "as"}, {"text": "power"}, {"text": "shovels"}, {"text": "and"}, {"text": "bulldozers"}, {"text": "rose"}, {"text": "to"}, {"text": "142.84"}, {"text": "billion"}, {"text": "yen"}, {"text": "from"}, {"text": "126.15"}, {"text": "billion"}, {"text": "yen"}, {"text": "."}, {"text": "Demand"}, {"text": "from"}, {"text": "Europe"}, {"text": "and"}, {"text": "Southeast"}, {"text": "Asia"}, {"text": "also"}, {"text": "grew"}, {"text": ","}, {"text": "but"}, {"text": "due"}, {"text": "to"}, {"text": "increasing"}, {"text": "production"}, {"text": "at"}, {"text": "local"}, {"text": "plants"}, {"text": ","}, {"text": "overseas"}, {"text": "sales"}, {"text": "edged"}, {"text": "down"}, {"text": "2.8"}, {"text": "%"}, {"text": "."}, {"text": "Komatsu"}, {"text": "predicted"}, {"text": "that"}, {"text": "for"}, {"text": "the"}, {"text": "fiscal"}, {"text": "year"}, {"text": "ending"}, {"text": "March"}, {"text": "31"}, {"text": "sales"}, {"text": "will"}, {"text": "climb"}, {"text": "to"}, {"text": "600"}, {"text": "billion"}, {"text": "yen"}, {"text": "from"}, {"text": "566.54"}, {"text": "billion"}, {"text": "yen"}, {"text": ";"}, {"text": "pretax"}, {"text": "profit"}, {"text": "was"}, {"text": "forecast"}, {"text": "*-1"}, {"text": "at"}, {"text": "35"}, {"text": "billion"}, {"text": "yen"}, {"text": ","}, {"text": "up"}, {"text": "from"}, {"text": "28.53"}, {"text": "billion"}, {"text": "yen"}, {"text": "in"}, {"text": "fiscal"}, {"text": "1989"}, {"text": "."}, {"text": "Net"}, {"text": "is"}, {"text": "expected"}, {"text": "*-1"}, {"text": "to"}, {"text": "rise"}, {"text": "to"}, {"text": "17"}, {"text": "billion"}, {"text": "yen"}, {"text": "from"}, {"text": "12.82"}, {"text": "billion"}, {"text": "yen"}, {"text": "a"}, {"text": "year"}, {"text": "earlier"}, {"text": "."}, {"text": "ECONOMIC"}, {"text": "GROWTH"}, {"text": "APPEARS"}, {"text": "*-1"}, {"text": "to"}, {"text": "be"}, {"text": "leveling"}, {"text": "off"}, {"text": ","}, {"text": "latest"}, {"text": "reports"}, {"text": "suggest"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "."}, {"text": "Factory"}, {"text": "orders"}, {"text": "and"}, {"text": "construction"}, {"text": "outlays"}, {"text": "were"}, {"text": "largely"}, {"text": "flat"}, {"text": "in"}, {"text": "September"}, {"text": ","}, {"text": "while"}, {"text": "purchasing"}, {"text": "agents"}, {"text": "said"}, {"text": "0"}, {"text": "manufacturing"}, {"text": "shrank"}, {"text": "further"}, {"text": "in"}, {"text": "October"}, {"text": "."}, {"text": "Still"}, {"text": ","}, {"text": "many"}, {"text": "economists"}, {"text": "are"}, {"text": "n't"}, {"text": "predicting"}, {"text": "a"}, {"text": "recession"}, {"text": "anytime"}, {"text": "soon"}, {"text": "."}, {"text": "The"}, {"text": "Fed"}, {"text": "is"}, {"text": "coming"}, {"text": "under"}, {"text": "pressure"}, {"text": "*"}, {"text": "to"}, {"text": "cut"}, {"text": "short-term"}, {"text": "interest"}, {"text": "rates"}, {"text": "due"}, {"text": "to"}, {"text": "the"}, {"text": "apparent"}, {"text": "slowing"}, {"text": "of"}, {"text": "the"}, {"text": "economy"}, {"text": "."}, {"text": "But"}, {"text": "it"}, {"text": "*EXP*-1"}, {"text": "is"}, {"text": "n't"}, {"text": "clear"}, {"text": "yet"}, {"text": "whether"}, {"text": "the"}, {"text": "central"}, {"text": "bank"}, {"text": "will"}, {"text": "make"}, {"text": "such"}, {"text": "a"}, {"text": "move"}, {"text": "."}, {"text": "Campbell"}, {"text": "Soup"}, {"text": "forced"}, {"text": "out"}, {"text": "its"}, {"text": "president"}, {"text": "and"}, {"text": "chief"}, {"text": "executive"}, {"text": ","}, {"text": "R."}, {"text": "Gordon"}, {"text": "McGovern"}, {"text": ","}, {"text": "the"}, {"text": "strongest"}, {"text": "indication"}, {"text": "*ICH*-1"}, {"text": "yet"}, {"text": "that"}, {"text": "the"}, {"text": "Dorrance"}, {"text": "family"}, {"text": "plans"}, {"text": "*"}, {"text": "to"}, {"text": "take"}, {"text": "charge"}, {"text": "of"}, {"text": "*"}, {"text": "reshaping"}, {"text": "the"}, {"text": "troubled"}, {"text": "food"}, {"text": "company"}, {"text": "."}, {"text": "Campbell"}, {"text": "'s"}, {"text": "stock"}, {"text": "rose"}, {"text": "$"}, {"text": "3.375"}, {"text": "*U*"}, {"text": ","}, {"text": "to"}, {"text": "$"}, {"text": "47.125"}, {"text": "*U*"}, {"text": ","}, {"text": "in"}, {"text": "reaction"}, {"text": "."}, {"text": "The"}, {"text": "Chicago"}, {"text": "Merc"}, {"text": "plans"}, {"text": "an"}, {"text": "additional"}, {"text": "``"}, {"text": "circuit"}, {"text": "breaker"}, {"text": "''"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "stem"}, {"text": "sharp"}, {"text": "drops"}, {"text": "in"}, {"text": "the"}, {"text": "market"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Also"}, {"text": ","}, {"text": "Big"}, {"text": "Board"}, {"text": "Chairman"}, {"text": "Phelan"}, {"text": "said"}, {"text": "0"}, {"text": "he"}, {"text": "would"}, {"text": "support"}, {"text": "SEC"}, {"text": "halts"}, {"text": "of"}, {"text": "program"}, {"text": "trading"}, {"text": "during"}, {"text": "market"}, {"text": "crises"}, {"text": "but"}, {"text": "not"}, {"text": "any"}, {"text": "revival"}, {"text": "of"}, {"text": "a"}, {"text": "``"}, {"text": "collar"}, {"text": "''"}, {"text": "on"}, {"text": "trading"}, {"text": "."}, {"text": "Georgia"}, {"text": "Gulf"}, {"text": "received"}, {"text": "a"}, {"text": "new"}, {"text": "takeover"}, {"text": "bid"}, {"text": "*ICH*-1"}, {"text": "from"}, {"text": "investor"}, {"text": "Harold"}, {"text": "Simmons"}, {"text": "and"}, {"text": "NL"}, {"text": "Industries"}, {"text": "of"}, {"text": "$"}, {"text": "50"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": ","}, {"text": "or"}, {"text": "about"}, {"text": "$"}, {"text": "1.1"}, {"text": "billion"}, {"text": "*U*"}, {"text": "."}, {"text": "The"}, {"text": "offer"}, {"text": ","}, {"text": "which"}, {"text": "*T*-2"}, {"text": "follows"}, {"text": "a"}, {"text": "$"}, {"text": "55-a-share"}, {"text": "*U*"}, {"text": "bid"}, {"text": "that"}, {"text": "*T*-3"}, {"text": "was"}, {"text": "rejected"}, {"text": "*-1"}, {"text": "in"}, {"text": "September"}, {"text": ","}, {"text": "steps"}, {"text": "up"}, {"text": "pressure"}, {"text": "on"}, {"text": "the"}, {"text": "chemicals"}, {"text": "concern"}, {"text": "."}, {"text": "The"}, {"text": "minimum-wage"}, {"text": "bill"}, {"text": "worked"}, {"text": "out"}, {"text": "*"}, {"text": "by"}, {"text": "Congress"}, {"text": "and"}, {"text": "Bush"}, {"text": "won"}, {"text": "easy"}, {"text": "approval"}, {"text": "in"}, {"text": "the"}, {"text": "House"}, {"text": "."}, {"text": "The"}, {"text": "compromise"}, {"text": "plan"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "boosts"}, {"text": "the"}, {"text": "minimum"}, {"text": "wage"}, {"text": "for"}, {"text": "the"}, {"text": "first"}, {"text": "time"}, {"text": "since"}, {"text": "1981"}, {"text": ","}, {"text": "is"}, {"text": "expected"}, {"text": "*-2"}, {"text": "to"}, {"text": "clear"}, {"text": "the"}, {"text": "Senate"}, {"text": "soon"}, {"text": "."}, {"text": "Steinberg"}, {"text": "sought"}, {"text": "clearance"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "buy"}, {"text": "more"}, {"text": "than"}, {"text": "15"}, {"text": "%"}, {"text": "of"}, {"text": "United"}, {"text": "Air"}, {"text": "'s"}, {"text": "parent"}, {"text": "*T*-2"}, {"text": ","}, {"text": "*-1"}, {"text": "saying"}, {"text": "0"}, {"text": "he"}, {"text": "may"}, {"text": "seek"}, {"text": "control"}, {"text": "."}, {"text": "Takeover"}, {"text": "experts"}, {"text": "said"}, {"text": "0"}, {"text": "they"}, {"text": "doubted"}, {"text": "0"}, {"text": "the"}, {"text": "financier"}, {"text": "would"}, {"text": "make"}, {"text": "a"}, {"text": "bid"}, {"text": "by"}, {"text": "himself"}, {"text": "."}, {"text": "An"}, {"text": "airline"}, {"text": "buy-out"}, {"text": "bill"}, {"text": "was"}, {"text": "approved"}, {"text": "*-1"}, {"text": "by"}, {"text": "the"}, {"text": "House"}, {"text": "."}, {"text": "The"}, {"text": "measure"}, {"text": "would"}, {"text": "make"}, {"text": "it"}, {"text": "*EXP*-1"}, {"text": "easier"}, {"text": "for"}, {"text": "the"}, {"text": "Transportation"}, {"text": "Department"}, {"text": "to"}, {"text": "block"}, {"text": "leveraged"}, {"text": "buy-outs"}, {"text": "in"}, {"text": "the"}, {"text": "industry"}, {"text": "."}, {"text": "USX"}, {"text": "was"}, {"text": "cited"}, {"text": "*-1"}, {"text": "by"}, {"text": "OSHA"}, {"text": "for"}, {"text": "several"}, {"text": "health"}, {"text": "and"}, {"text": "safety"}, {"text": "violations"}, {"text": "at"}, {"text": "two"}, {"text": "Pennsylvania"}, {"text": "plants"}, {"text": "and"}, {"text": "may"}, {"text": "face"}, {"text": "a"}, {"text": "record"}, {"text": "fine"}, {"text": "of"}, {"text": "$"}, {"text": "7.3"}, {"text": "million"}, {"text": "*U*"}, {"text": "."}, {"text": "Random"}, {"text": "House"}, {"text": "Chairman"}, {"text": "Robert"}, {"text": "Bernstein"}, {"text": "said"}, {"text": "0"}, {"text": "he"}, {"text": "is"}, {"text": "resigning"}, {"text": "from"}, {"text": "the"}, {"text": "publishing"}, {"text": "house"}, {"text": "0"}, {"text": "he"}, {"text": "has"}, {"text": "run"}, {"text": "*T*-1"}, {"text": "for"}, {"text": "23"}, {"text": "years"}, {"text": "."}, {"text": "A"}, {"text": "successor"}, {"text": "was"}, {"text": "n't"}, {"text": "named"}, {"text": "*-1"}, {"text": "."}, {"text": "Cray"}, {"text": "Research"}, {"text": "indicated"}, {"text": "that"}, {"text": "the"}, {"text": "survival"}, {"text": "of"}, {"text": "a"}, {"text": "spinoff"}, {"text": "company"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "is"}, {"text": "developing"}, {"text": "a"}, {"text": "new"}, {"text": "supercomputer"}, {"text": ","}, {"text": "depends"}, {"text": "heavily"}, {"text": "on"}, {"text": "its"}, {"text": "chairman"}, {"text": "and"}, {"text": "chief"}, {"text": "designer"}, {"text": ","}, {"text": "Seymour"}, {"text": "Cray"}, {"text": "."}, {"text": "Light"}, {"text": "trucks"}, {"text": "and"}, {"text": "vans"}, {"text": "will"}, {"text": "face"}, {"text": "the"}, {"text": "same"}, {"text": "safety"}, {"text": "requirements"}, {"text": "as"}, {"text": "automobiles"}, {"text": "under"}, {"text": "new"}, {"text": "proposals"}, {"text": "by"}, {"text": "the"}, {"text": "Transportation"}, {"text": "Department"}, {"text": "."}, {"text": "The"}, {"text": "Treasury"}, {"text": "plans"}, {"text": "*-1"}, {"text": "to"}, {"text": "sell"}, {"text": "$"}, {"text": "30"}, {"text": "billion"}, {"text": "*U*"}, {"text": "in"}, {"text": "notes"}, {"text": "and"}, {"text": "bonds"}, {"text": "next"}, {"text": "week"}, {"text": "but"}, {"text": "will"}, {"text": "delay"}, {"text": "the"}, {"text": "auction"}, {"text": "unless"}, {"text": "Congress"}, {"text": "quickly"}, {"text": "raises"}, {"text": "the"}, {"text": "debt"}, {"text": "ceiling"}, {"text": "."}, {"text": "U.S."}, {"text": "farmers"}, {"text": "'"}, {"text": "net"}, {"text": "income"}, {"text": "rose"}, {"text": "to"}, {"text": "a"}, {"text": "record"}, {"text": "$"}, {"text": "59.9"}, {"text": "billion"}, {"text": "*U*"}, {"text": "last"}, {"text": "year"}, {"text": "despite"}, {"text": "one"}, {"text": "of"}, {"text": "the"}, {"text": "worst"}, {"text": "droughts"}, {"text": "ever"}, {"text": "."}, {"text": "Two"}, {"text": "antitrust"}, {"text": "agencies"}, {"text": "may"}, {"text": "face"}, {"text": "further"}, {"text": "cutbacks"}, {"text": "because"}, {"text": "of"}, {"text": "a"}, {"text": "complicated"}, {"text": "new"}, {"text": "funding"}, {"text": "device"}, {"text": ","}, {"text": "some"}, {"text": "Democrats"}, {"text": "in"}, {"text": "Congress"}, {"text": "are"}, {"text": "warning"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Markets"}, {"text": "--"}, {"text": "Stocks"}, {"text": ":"}, {"text": "Volume"}, {"text": "154,240,000"}, {"text": "shares"}, {"text": "."}, {"text": "Dow"}, {"text": "Jones"}, {"text": "industrials"}, {"text": "2645.90"}, {"text": ","}, {"text": "up"}, {"text": "0.82"}, {"text": ";"}, {"text": "transportation"}, {"text": "1206.26"}, {"text": ","}, {"text": "up"}, {"text": "1.25"}, {"text": ";"}, {"text": "utilities"}, {"text": "220.45"}, {"text": ","}, {"text": "up"}, {"text": "1.26"}, {"text": "."}, {"text": "Bonds"}, {"text": ":"}, {"text": "Shearson"}, {"text": "Lehman"}, {"text": "Hutton"}, {"text": "Treasury"}, {"text": "index"}, {"text": "3436.58"}, {"text": ","}, {"text": "up"}, {"text": "Commodities"}, {"text": ":"}, {"text": "Dow"}, {"text": "Jones"}, {"text": "futures"}, {"text": "index"}, {"text": "129.91"}, {"text": ","}, {"text": "up"}, {"text": "0.28"}, {"text": ";"}, {"text": "spot"}, {"text": "index"}, {"text": "131.01"}, {"text": ","}, {"text": "up"}, {"text": "1.17"}, {"text": "."}, {"text": "Dollar"}, {"text": ":"}, {"text": "143.80"}, {"text": "yen"}, {"text": ","}, {"text": "up"}, {"text": "0.95"}, {"text": ";"}, {"text": "1.8500"}, {"text": "marks"}, {"text": ","}, {"text": "up"}, {"text": "0.0085"}, {"text": "."}, {"text": "Junk-bond"}, {"text": "markdowns"}, {"text": ","}, {"text": "an"}, {"text": "ongoing"}, {"text": "Securities"}, {"text": "and"}, {"text": "Exchange"}, {"text": "Commission"}, {"text": "investigation"}, {"text": ","}, {"text": "a"}, {"text": "Drexel"}, {"text": "Burnham"}, {"text": "Lambert"}, {"text": "connection"}, {"text": ","}, {"text": "a"}, {"text": "fizzled"}, {"text": "buy-out"}, {"text": "rumor"}, {"text": "."}, {"text": "All"}, {"text": "this"}, {"text": "has"}, {"text": "cast"}, {"text": "a"}, {"text": "pall"}, {"text": "over"}, {"text": "Columbia"}, {"text": "Savings"}, {"text": "&"}, {"text": "Loan"}, {"text": "Association"}, {"text": "and"}, {"text": "its"}, {"text": "high-rolling"}, {"text": "43-year-old"}, {"text": "chairman"}, {"text": ","}, {"text": "Thomas"}, {"text": "Spiegel"}, {"text": ","}, {"text": "who"}, {"text": "*T*-1"}, {"text": "built"}, {"text": "the"}, {"text": "$"}, {"text": "12.7"}, {"text": "billion"}, {"text": "*U*"}, {"text": "Beverly"}, {"text": "Hills"}, {"text": ","}, {"text": "Calif."}, {"text": ","}, {"text": "thrift"}, {"text": "with"}, {"text": "high-yield"}, {"text": "junk"}, {"text": "bonds"}, {"text": "."}, {"text": "Bears"}, {"text": "have"}, {"text": "targeted"}, {"text": "Columbia"}, {"text": "'s"}, {"text": "stock"}, {"text": "because"}, {"text": "of"}, {"text": "the"}, {"text": "thrift"}, {"text": "'s"}, {"text": "exposure"}, {"text": "to"}, {"text": "the"}, {"text": "shaky"}, {"text": "junk"}, {"text": "market"}, {"text": "."}, {"text": "And"}, {"text": "some"}, {"text": "investors"}, {"text": "fault"}, {"text": "Mr."}, {"text": "Spiegel"}, {"text": "'s"}, {"text": "life"}, {"text": "style"}, {"text": ";"}, {"text": "he"}, {"text": "earns"}, {"text": "millions"}, {"text": "of"}, {"text": "dollars"}, {"text": "a"}, {"text": "year"}, {"text": "and"}, {"text": "flies"}, {"text": "around"}, {"text": "in"}, {"text": "Columbia"}, {"text": "'s"}, {"text": "jet"}, {"text": "planes"}, {"text": "."}, {"text": "Columbia"}, {"text": "stock"}, {"text": "recently"}, {"text": "hit"}, {"text": "4"}, {"text": "1\\/8"}, {"text": ","}, {"text": "after"}, {"text": "*"}, {"text": "reaching"}, {"text": "11"}, {"text": "3\\/4"}, {"text": "earlier"}, {"text": "this"}, {"text": "year"}, {"text": "on"}, {"text": "rumors"}, {"text": "that"}, {"text": "Mr."}, {"text": "Spiegel"}, {"text": "would"}, {"text": "take"}, {"text": "the"}, {"text": "thrift"}, {"text": "private"}, {"text": "."}, {"text": "Moreover"}, {"text": ","}, {"text": "junk"}, {"text": "professionals"}, {"text": "think"}, {"text": "Columbia"}, {"text": "'s"}, {"text": "huge"}, {"text": "third-quarter"}, {"text": "markdown"}, {"text": "of"}, {"text": "its"}, {"text": "junk"}, {"text": "portfolio"}, {"text": "to"}, {"text": "$"}, {"text": "4.4"}, {"text": "billion"}, {"text": "*U*"}, {"text": "was"}, {"text": "n't"}, {"text": "enough"}, {"text": ","}, {"text": "*"}, {"text": "meaning"}, {"text": "0"}, {"text": "another"}, {"text": "markdown"}, {"text": "could"}, {"text": "be"}, {"text": "coming"}, {"text": "."}, {"text": "But"}, {"text": "in"}, {"text": "recent"}, {"text": "days"}, {"text": ","}, {"text": "Columbia"}, {"text": "has"}, {"text": "edged"}, {"text": "up"}, {"text": ","}, {"text": "*-1"}, {"text": "closing"}, {"text": "at"}, {"text": "5"}, {"text": "1\\/4"}, {"text": ","}, {"text": "up"}, {"text": "3\\/8"}, {"text": ","}, {"text": "yesterday"}, {"text": "on"}, {"text": "revived"}, {"text": "speculation"}, {"text": "that"}, {"text": "the"}, {"text": "thrift"}, {"text": "might"}, {"text": "restructure"}, {"text": "."}, {"text": "Mr."}, {"text": "Spiegel"}, {"text": "'s"}, {"text": "fans"}, {"text": "say"}, {"text": "0"}, {"text": "Columbia"}, {"text": "'s"}, {"text": "Southern"}, {"text": "California"}, {"text": "branches"}, {"text": "are"}, {"text": "highly"}, {"text": "salable"}, {"text": ","}, {"text": "and"}, {"text": "the"}, {"text": "thrift"}, {"text": "has"}, {"text": "$"}, {"text": "458"}, {"text": "million"}, {"text": "*U*"}, {"text": "of"}, {"text": "shareholders"}, {"text": "equity"}, {"text": "underlying"}, {"text": "its"}, {"text": "assets"}, {"text": "."}, {"text": "That"}, {"text": "'s"}, {"text": "almost"}, {"text": "$"}, {"text": "10"}, {"text": "*U*"}, {"text": "of"}, {"text": "equity"}, {"text": "for"}, {"text": "each"}, {"text": "Columbia"}, {"text": "share"}, {"text": ","}, {"text": "including"}, {"text": "convertible"}, {"text": "preferred"}, {"text": "shares"}, {"text": ","}, {"text": "though"}, {"text": "more"}, {"text": "junk"}, {"text": "markdowns"}, {"text": "would"}, {"text": "reduce"}, {"text": "the"}, {"text": "cushion"}, {"text": "."}, {"text": "Columbia"}, {"text": "has"}, {"text": "only"}, {"text": "about"}, {"text": "10"}, {"text": "million"}, {"text": "common"}, {"text": "shares"}, {"text": "in"}, {"text": "public"}, {"text": "hands"}, {"text": "."}, {"text": "The"}, {"text": "Spiegel"}, {"text": "family"}, {"text": "has"}, {"text": "25"}, {"text": "%"}, {"text": "of"}, {"text": "the"}, {"text": "common"}, {"text": "and"}, {"text": "75"}, {"text": "%"}, {"text": "of"}, {"text": "the"}, {"text": "votes"}, {"text": "."}, {"text": "Other"}, {"text": "big"}, {"text": "common"}, {"text": "holders"}, {"text": "are"}, {"text": "Carl"}, {"text": "Lindner"}, {"text": "'s"}, {"text": "American"}, {"text": "Financial"}, {"text": ","}, {"text": "investor"}, {"text": "Irwin"}, {"text": "Jacobs"}, {"text": "and"}, {"text": "Pacific"}, {"text": "Financial"}, {"text": "Research"}, {"text": ","}, {"text": "though"}, {"text": "the"}, {"text": "latter"}, {"text": "cut"}, {"text": "its"}, {"text": "stake"}, {"text": "this"}, {"text": "summer"}, {"text": "."}, {"text": "While"}, {"text": "many"}, {"text": "problems"}, {"text": "would"}, {"text": "attend"}, {"text": "a"}, {"text": "restructuring"}, {"text": "of"}, {"text": "Columbia"}, {"text": ","}, {"text": "investors"}, {"text": "say"}, {"text": "0"}, {"text": "Mr."}, {"text": "Spiegel"}, {"text": "is"}, {"text": "mulling"}, {"text": "such"}, {"text": "a"}, {"text": "plan"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "mitigate"}, {"text": "Columbia"}, {"text": "'s"}, {"text": "junk"}, {"text": "problems"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Indeed"}, {"text": ","}, {"text": "Columbia"}, {"text": "executives"}, {"text": "recently"}, {"text": "told"}, {"text": "reporters"}, {"text": "0"}, {"text": "they"}, {"text": "were"}, {"text": "interested"}, {"text": "in"}, {"text": "*"}, {"text": "creating"}, {"text": "a"}, {"text": "separate"}, {"text": "unit"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "to"}, {"text": "hold"}, {"text": "Columbia"}, {"text": "'s"}, {"text": "junk"}, {"text": "bonds"}, {"text": "and"}, {"text": "perhaps"}, {"text": "do"}, {"text": "merchant"}, {"text": "banking"}, {"text": "."}, {"text": "Columbia"}, {"text": "wo"}, {"text": "n't"}, {"text": "comment"}, {"text": "on"}, {"text": "all"}, {"text": "the"}, {"text": "speculation"}, {"text": "."}, {"text": "But"}, {"text": "like"}, {"text": "other"}, {"text": "thrifts"}, {"text": ","}, {"text": "it"}, {"text": "'s"}, {"text": "expected"}, {"text": "*-1"}, {"text": "to"}, {"text": "seek"}, {"text": "regulators"}, {"text": "'"}, {"text": "consent"}, {"text": "*"}, {"text": "to"}, {"text": "create"}, {"text": "a"}, {"text": "distinct"}, {"text": "junk-bond"}, {"text": "entity"}, {"text": "."}, {"text": "Plans"}, {"text": "*"}, {"text": "to"}, {"text": "do"}, {"text": "this"}, {"text": "are"}, {"text": "due"}, {"text": "*"}, {"text": "to"}, {"text": "be"}, {"text": "filed"}, {"text": "*-1"}, {"text": "in"}, {"text": "a"}, {"text": "week"}, {"text": "or"}, {"text": "so"}, {"text": "."}, {"text": "New"}, {"text": "rules"}, {"text": "force"}, {"text": "thrifts"}, {"text": "to"}, {"text": "write"}, {"text": "down"}, {"text": "their"}, {"text": "junk"}, {"text": "to"}, {"text": "market"}, {"text": "value"}, {"text": ","}, {"text": "then"}, {"text": "sell"}, {"text": "the"}, {"text": "bonds"}, {"text": "over"}, {"text": "five"}, {"text": "years"}, {"text": "."}, {"text": "That"}, {"text": "'s"}, {"text": "why"}, {"text": "Columbia"}, {"text": "just"}, {"text": "wrote"}, {"text": "off"}, {"text": "$"}, {"text": "130"}, {"text": "million"}, {"text": "*U*"}, {"text": "of"}, {"text": "its"}, {"text": "junk"}, {"text": "and"}, {"text": "reserved"}, {"text": "$"}, {"text": "227"}, {"text": "million"}, {"text": "*U*"}, {"text": "for"}, {"text": "future"}, {"text": "junk"}, {"text": "losses"}, {"text": "*T*-1"}, {"text": "."}, {"text": "But"}, {"text": "if"}, {"text": "Columbia"}, {"text": "could"}, {"text": "keep"}, {"text": "its"}, {"text": "junk"}, {"text": "bonds"}, {"text": "separate"}, {"text": "from"}, {"text": "the"}, {"text": "thrift"}, {"text": "till"}, {"text": "they"}, {"text": "mature"}, {"text": "--"}, {"text": "at"}, {"text": "full"}, {"text": "value"}, {"text": ","}, {"text": "unless"}, {"text": "the"}, {"text": "issuer"}, {"text": "goes"}, {"text": "bust"}, {"text": "or"}, {"text": "restructures"}, {"text": "--"}, {"text": "the"}, {"text": "junk"}, {"text": "portfolio"}, {"text": "might"}, {"text": "do"}, {"text": "all"}, {"text": "right"}, {"text": "."}, {"text": "Columbia"}, {"text": ","}, {"text": "a"}, {"text": "longtime"}, {"text": "Drexel"}, {"text": "client"}, {"text": ","}, {"text": "wo"}, {"text": "n't"}, {"text": "provide"}, {"text": "current"}, {"text": "data"}, {"text": "on"}, {"text": "its"}, {"text": "junk"}, {"text": "."}, {"text": "But"}, {"text": "its"}, {"text": "17"}, {"text": "big"}, {"text": "junk"}, {"text": "holdings"}, {"text": "at"}, {"text": "year"}, {"text": "end"}, {"text": "showed"}, {"text": "only"}, {"text": "a"}, {"text": "few"}, {"text": "bonds"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "have"}, {"text": "been"}, {"text": "really"}, {"text": "battered"}, {"text": "*-2"}, {"text": "."}, {"text": "These"}, {"text": "were"}, {"text": "Allied"}, {"text": "Stores"}, {"text": ","}, {"text": "Western"}, {"text": "Union"}, {"text": "Telegraph"}, {"text": ","}, {"text": "Gillett"}, {"text": "Holdings"}, {"text": ","}, {"text": "SCI"}, {"text": "Television"}, {"text": "and"}, {"text": "Texas"}, {"text": "Air"}, {"text": ","}, {"text": "though"}, {"text": "many"}, {"text": "other"}, {"text": "bonds"}, {"text": "in"}, {"text": "Columbia"}, {"text": "'s"}, {"text": "portfolio"}, {"text": "also"}, {"text": "have"}, {"text": "lost"}, {"text": "value"}, {"text": "."}, {"text": "*"}, {"text": "Possibly"}, {"text": "offsetting"}, {"text": "that"}, {"text": ","}, {"text": "Columbia"}, {"text": "recently"}, {"text": "estimated"}, {"text": "0"}, {"text": "it"}, {"text": "has"}, {"text": "unrealized"}, {"text": "gains"}, {"text": "on"}, {"text": "publicly"}, {"text": "traded"}, {"text": "equity"}, {"text": "investments"}, {"text": "of"}, {"text": "more"}, {"text": "than"}, {"text": "$"}, {"text": "70"}, {"text": "million"}, {"text": "*U*"}, {"text": "."}, {"text": "It"}, {"text": "also"}, {"text": "hopes"}, {"text": "for"}, {"text": "ultimate"}, {"text": "gains"}, {"text": "of"}, {"text": "as"}, {"text": "much"}, {"text": "as"}, {"text": "$"}, {"text": "300"}, {"text": "million"}, {"text": "*U*"}, {"text": "on"}, {"text": "equity"}, {"text": "investments"}, {"text": "in"}, {"text": "buy-outs"}, {"text": "and"}, {"text": "restructurings"}, {"text": "."}, {"text": "One"}, {"text": "trial"}, {"text": "balloon"}, {"text": "0"}, {"text": "Mr."}, {"text": "Spiegel"}, {"text": "is"}, {"text": "said"}, {"text": "*-4"}, {"text": "to"}, {"text": "have"}, {"text": "floated"}, {"text": "*T*-3"}, {"text": "to"}, {"text": "investors"}, {"text": ":"}, {"text": "Columbia"}, {"text": "might"}, {"text": "be"}, {"text": "broken"}, {"text": "up"}, {"text": "*-1"}, {"text": ","}, {"text": "as"}, {"text": "Mellon"}, {"text": "Bank"}, {"text": "was"}, {"text": "split"}, {"text": "*-2"}, {"text": "into"}, {"text": "a"}, {"text": "good"}, {"text": "bank"}, {"text": "and"}, {"text": "a"}, {"text": "bad"}, {"text": "bank"}, {"text": "."}, {"text": "But"}, {"text": "Columbia"}, {"text": "'s"}, {"text": "good"}, {"text": "bank"}, {"text": "would"}, {"text": "be"}, {"text": "a"}, {"text": "regulated"}, {"text": "thrift"}, {"text": ","}, {"text": "while"}, {"text": "the"}, {"text": "bad"}, {"text": "bank"}, {"text": "would"}, {"text": "be"}, {"text": "a"}, {"text": "private"}, {"text": "investment"}, {"text": "company"}, {"text": ","}, {"text": "holding"}, {"text": "some"}, {"text": "of"}, {"text": "Columbia"}, {"text": "'s"}, {"text": "junk"}, {"text": "bonds"}, {"text": ","}, {"text": "real"}, {"text": "estate"}, {"text": "and"}, {"text": "equity"}, {"text": "investments"}, {"text": "."}, {"text": "Some"}, {"text": "think"}, {"text": "0"}, {"text": "Columbia"}, {"text": "'s"}, {"text": "thrift"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "now"}, {"text": "is"}, {"text": "seeking"}, {"text": "a"}, {"text": "new"}, {"text": "chief"}, {"text": "operating"}, {"text": "officer"}, {"text": ","}, {"text": "might"}, {"text": "be"}, {"text": "capitalized"}, {"text": "*-3"}, {"text": "at"}, {"text": ","}, {"text": "say"}, {"text": "$"}, {"text": "300"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "and"}, {"text": "shopped"}, {"text": "*-3"}, {"text": "to"}, {"text": "a"}, {"text": "commercial"}, {"text": "bank"}, {"text": "that"}, {"text": "*T*-2"}, {"text": "wants"}, {"text": "a"}, {"text": "California"}, {"text": "presence"}, {"text": "."}, {"text": "The"}, {"text": "thrift"}, {"text": "surely"}, {"text": "could"}, {"text": "be"}, {"text": "sold"}, {"text": "*-1"}, {"text": "for"}, {"text": "more"}, {"text": "than"}, {"text": "the"}, {"text": "value"}, {"text": "of"}, {"text": "its"}, {"text": "equity"}, {"text": ","}, {"text": "financial"}, {"text": "industry"}, {"text": "executives"}, {"text": "say"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "."}, {"text": "Meanwhile"}, {"text": ","}, {"text": "the"}, {"text": "bad"}, {"text": "bank"}, {"text": "with"}, {"text": "the"}, {"text": "junk"}, {"text": "bonds"}, {"text": "--"}, {"text": "and"}, {"text": "some"}, {"text": "capital"}, {"text": "--"}, {"text": "might"}, {"text": "be"}, {"text": "spun"}, {"text": "off"}, {"text": "*-1"}, {"text": "to"}, {"text": "Columbia"}, {"text": "shareholders"}, {"text": ","}, {"text": "including"}, {"text": "Mr."}, {"text": "Spiegel"}, {"text": ","}, {"text": "who"}, {"text": "*T*-2"}, {"text": "might"}, {"text": "then"}, {"text": "have"}, {"text": "a"}, {"text": "new"}, {"text": "career"}, {"text": ","}, {"text": "investors"}, {"text": "say"}, {"text": "0"}, {"text": "*T*-3"}, {"text": "."}, {"text": "It"}, {"text": "*EXP*-1"}, {"text": "is"}, {"text": "n't"}, {"text": "clear"}, {"text": "how"}, {"text": "much"}, {"text": "a"}, {"text": "restructuring"}, {"text": "would"}, {"text": "help"}, {"text": "Columbia"}, {"text": "stockholders"}, {"text": "*T*-2"}, {"text": "."}, {"text": "But"}, {"text": "``"}, {"text": "the"}, {"text": "concept"}, {"text": "is"}, {"text": "workable"}, {"text": "."}, {"text": "You"}, {"text": "sell"}, {"text": "the"}, {"text": "good"}, {"text": "bank"}, {"text": "as"}, {"text": "an"}, {"text": "ongoing"}, {"text": "operation"}, {"text": "and"}, {"text": "use"}, {"text": "some"}, {"text": "of"}, {"text": "the"}, {"text": "proceeds"}, {"text": "*-1"}, {"text": "to"}, {"text": "capitalize"}, {"text": "the"}, {"text": "bad"}, {"text": "bank"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-2"}, {"text": "thrift"}, {"text": "specialist"}, {"text": "Lewis"}, {"text": "Ranieri"}, {"text": "of"}, {"text": "Ranieri"}, {"text": "Associates"}, {"text": "in"}, {"text": "New"}, {"text": "York"}, {"text": "."}, {"text": "Mr."}, {"text": "Spiegel"}, {"text": "'s"}, {"text": "next"}, {"text": "career"}, {"text": "move"}, {"text": "is"}, {"text": "a"}, {"text": "subject"}, {"text": "of"}, {"text": "speculation"}, {"text": "on"}, {"text": "Wall"}, {"text": "Street"}, {"text": "."}, {"text": "Few"}, {"text": "people"}, {"text": "think"}, {"text": "0"}, {"text": "Mr."}, {"text": "Spiegel"}, {"text": "wants"}, {"text": "*-1"}, {"text": "to"}, {"text": "run"}, {"text": "a"}, {"text": "bread-and-butter"}, {"text": "thrift"}, {"text": ","}, {"text": "which"}, {"text": "current"}, {"text": "rules"}, {"text": "would"}, {"text": "force"}, {"text": "Columbia"}, {"text": "to"}, {"text": "become"}, {"text": "*T*-2"}, {"text": "."}, {"text": "``"}, {"text": "They"}, {"text": "are"}, {"text": "n't"}, {"text": "really"}, {"text": "a"}, {"text": "thrift"}, {"text": ","}, {"text": "''"}, {"text": "says"}, {"text": "*T*-1"}, {"text": "Jonathan"}, {"text": "Gray"}, {"text": ","}, {"text": "a"}, {"text": "Sanford"}, {"text": "C."}, {"text": "Bernstein"}, {"text": "analyst"}, {"text": "."}, {"text": "Of"}, {"text": "course"}, {"text": ","}, {"text": "regulators"}, {"text": "would"}, {"text": "have"}, {"text": "*-1"}, {"text": "to"}, {"text": "approve"}, {"text": "Columbia"}, {"text": "'s"}, {"text": "reorganization"}, {"text": "."}, {"text": "And"}, {"text": "some"}, {"text": "investment"}, {"text": "bankers"}, {"text": "say"}, {"text": "0"}, {"text": "a"}, {"text": "restructuring"}, {"text": "is"}, {"text": "n't"}, {"text": "feasible"}, {"text": "while"}, {"text": "the"}, {"text": "SEC"}, {"text": "still"}, {"text": "is"}, {"text": "scrutinizing"}, {"text": "Mr."}, {"text": "Spiegel"}, {"text": "'s"}, {"text": "past"}, {"text": "junk-bond"}, {"text": "trades"}, {"text": "."}, {"text": "Pauline"}, {"text": "Yoshihashi"}, {"text": "in"}, {"text": "Los"}, {"text": "Angeles"}, {"text": "contributed"}, {"text": "to"}, {"text": "this"}, {"text": "article"}, {"text": "."}, {"text": "Columbia"}, {"text": "Savings"}, {"text": "&"}, {"text": "Loan"}, {"text": "-LRB-"}, {"text": "NYSE"}, {"text": ";"}, {"text": "Symbol"}, {"text": ":"}, {"text": "CSV"}, {"text": "-RRB-"}, {"text": "Business"}, {"text": ":"}, {"text": "Savings"}, {"text": "and"}, {"text": "loan"}, {"text": "Year"}, {"text": "ended"}, {"text": "Dec."}, {"text": "31"}, {"text": ","}, {"text": "1988"}, {"text": ":"}, {"text": "Net"}, {"text": "income"}, {"text": ":"}, {"text": "$"}, {"text": "65"}, {"text": "million"}, {"text": "*U*"}, {"text": ";"}, {"text": "or"}, {"text": "$"}, {"text": "1.49"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": "Third"}, {"text": "quarter"}, {"text": ","}, {"text": "Sept."}, {"text": "30"}, {"text": ","}, {"text": "1989"}, {"text": ":"}, {"text": "Net"}, {"text": "loss"}, {"text": ":"}, {"text": "$"}, {"text": "11.57"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": "vs."}, {"text": "net"}, {"text": "income"}, {"text": ":"}, {"text": "37"}, {"text": "cents"}, {"text": "a"}, {"text": "share"}, {"text": "Average"}, {"text": "daily"}, {"text": "trading"}, {"text": "volume"}, {"text": ":"}, {"text": "83,206"}, {"text": "shares"}, {"text": "Common"}, {"text": "shares"}, {"text": "outstanding"}, {"text": ":"}, {"text": "19.6"}, {"text": "million"}, {"text": "Note"}, {"text": ":"}, {"text": "All"}, {"text": "per-share"}, {"text": "figures"}, {"text": "are"}, {"text": "fully"}, {"text": "diluted"}, {"text": "."}, {"text": "Genetics"}, {"text": "Institute"}, {"text": "Inc."}, {"text": ","}, {"text": "Cambridge"}, {"text": ","}, {"text": "Mass."}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "was"}, {"text": "awarded"}, {"text": "*-4"}, {"text": "U.S."}, {"text": "patents"}, {"text": "for"}, {"text": "Interleukin-3"}, {"text": "and"}, {"text": "bone"}, {"text": "morphogenetic"}, {"text": "protein"}, {"text": "."}, {"text": "The"}, {"text": "patent"}, {"text": "for"}, {"text": "Interleukin-3"}, {"text": "covers"}, {"text": "materials"}, {"text": "and"}, {"text": "methods"}, {"text": "used"}, {"text": "*"}, {"text": "*"}, {"text": "to"}, {"text": "make"}, {"text": "the"}, {"text": "human"}, {"text": "blood"}, {"text": "cell"}, {"text": "growth"}, {"text": "factor"}, {"text": "via"}, {"text": "recombinant"}, {"text": "DNA"}, {"text": "technology"}, {"text": "."}, {"text": "Sandoz"}, {"text": "Ltd."}, {"text": "has"}, {"text": "licensed"}, {"text": "certain"}, {"text": "manufacturing"}, {"text": "and"}, {"text": "marketing"}, {"text": "rights"}, {"text": "for"}, {"text": "Interleukin-3"}, {"text": "from"}, {"text": "Genetics"}, {"text": "Institute"}, {"text": "and"}, {"text": "is"}, {"text": "conducting"}, {"text": "preclinical"}, {"text": "studies"}, {"text": "with"}, {"text": "it"}, {"text": "."}, {"text": "Interleukin-3"}, {"text": "may"}, {"text": "help"}, {"text": "in"}, {"text": "*"}, {"text": "treating"}, {"text": "blood"}, {"text": "cell"}, {"text": "deficiencies"}, {"text": "associated"}, {"text": "*"}, {"text": "with"}, {"text": "cancer"}, {"text": "treatment"}, {"text": ","}, {"text": "bone"}, {"text": "marrow"}, {"text": "transplants"}, {"text": "and"}, {"text": "other"}, {"text": "blood-cell"}, {"text": "disorders"}, {"text": ","}, {"text": "Genetics"}, {"text": "Institute"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "The"}, {"text": "second"}, {"text": "patent"}, {"text": "describes"}, {"text": "bone"}, {"text": "morphogenetic"}, {"text": "protein-1"}, {"text": ","}, {"text": "a"}, {"text": "substance"}, {"text": "that"}, {"text": "*T*-2"}, {"text": "can"}, {"text": "induce"}, {"text": "formation"}, {"text": "of"}, {"text": "new"}, {"text": "cartilage"}, {"text": "."}, {"text": "The"}, {"text": "patent"}, {"text": "covers"}, {"text": "BMP-1"}, {"text": "type"}, {"text": "proteins"}, {"text": "and"}, {"text": "pharmaceutical"}, {"text": "compositions"}, {"text": "and"}, {"text": "methods"}, {"text": "for"}, {"text": "*"}, {"text": "treating"}, {"text": "bone"}, {"text": "or"}, {"text": "cartilage"}, {"text": "defects"}, {"text": ","}, {"text": "Genetics"}, {"text": "Institute"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "The"}, {"text": "company"}, {"text": "added"}, {"text": "that"}, {"text": "it"}, {"text": "has"}, {"text": "filed"}, {"text": "patent"}, {"text": "applications"}, {"text": "``"}, {"text": "on"}, {"text": "a"}, {"text": "large"}, {"text": "number"}, {"text": "of"}, {"text": "different"}, {"text": "BMP"}, {"text": "proteins"}, {"text": "''"}, {"text": "and"}, {"text": "the"}, {"text": "patent"}, {"text": "on"}, {"text": "BMP-1"}, {"text": "is"}, {"text": "the"}, {"text": "first"}, {"text": "0"}, {"text": "it"}, {"text": "has"}, {"text": "received"}, {"text": "*T*-1"}, {"text": "."}, {"text": "BMP"}, {"text": "products"}, {"text": "may"}, {"text": "be"}, {"text": "useful"}, {"text": "in"}, {"text": "fracture"}, {"text": "healing"}, {"text": "and"}, {"text": "in"}, {"text": "*"}, {"text": "treating"}, {"text": "bone"}, {"text": "loss"}, {"text": "associated"}, {"text": "*"}, {"text": "with"}, {"text": "periodontal"}, {"text": "disease"}, {"text": "and"}, {"text": "certain"}, {"text": "cancers"}, {"text": ","}, {"text": "the"}, {"text": "company"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "The"}, {"text": "Bush"}, {"text": "administration"}, {"text": "'s"}, {"text": "nomination"}, {"text": "of"}, {"text": "Clarence"}, {"text": "Thomas"}, {"text": "to"}, {"text": "a"}, {"text": "seat"}, {"text": "on"}, {"text": "the"}, {"text": "federal"}, {"text": "appeals"}, {"text": "court"}, {"text": "here"}, {"text": "received"}, {"text": "a"}, {"text": "blow"}, {"text": "this"}, {"text": "week"}, {"text": "when"}, {"text": "the"}, {"text": "American"}, {"text": "Bar"}, {"text": "Association"}, {"text": "gave"}, {"text": "Mr."}, {"text": "Thomas"}, {"text": "only"}, {"text": "a"}, {"text": "``"}, {"text": "qualified"}, {"text": "''"}, {"text": "rating"}, {"text": ","}, {"text": "rather"}, {"text": "than"}, {"text": "``"}, {"text": "well"}, {"text": "qualified"}, {"text": "*T*-1"}, {"text": "."}, {"text": "''"}, {"text": "People"}, {"text": "familiar"}, {"text": "with"}, {"text": "the"}, {"text": "Senate"}, {"text": "Judiciary"}, {"text": "Committee"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "will"}, {"text": "vote"}, {"text": "on"}, {"text": "the"}, {"text": "nomination"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "some"}, {"text": "liberal"}, {"text": "members"}, {"text": "of"}, {"text": "the"}, {"text": "panel"}, {"text": "are"}, {"text": "likely"}, {"text": "*-2"}, {"text": "to"}, {"text": "question"}, {"text": "the"}, {"text": "ABA"}, {"text": "rating"}, {"text": "in"}, {"text": "hearings"}, {"text": "on"}, {"text": "the"}, {"text": "matter"}, {"text": "."}, {"text": "Mr."}, {"text": "Thomas"}, {"text": ","}, {"text": "currently"}, {"text": "chairman"}, {"text": "of"}, {"text": "the"}, {"text": "Equal"}, {"text": "Employment"}, {"text": "Opportunity"}, {"text": "Commission"}, {"text": ","}, {"text": "would"}, {"text": "add"}, {"text": "another"}, {"text": "conservative"}, {"text": "voice"}, {"text": "to"}, {"text": "the"}, {"text": "closely"}, {"text": "divided"}, {"text": "court"}, {"text": "."}, {"text": "Groups"}, {"text": "have"}, {"text": "accused"}, {"text": "him"}, {"text": "of"}, {"text": "*"}, {"text": "advocating"}, {"text": "policies"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "narrowed"}, {"text": "rights"}, {"text": "of"}, {"text": "older"}, {"text": "workers"}, {"text": "and"}, {"text": "of"}, {"text": "*"}, {"text": "ignoring"}, {"text": "discrimination"}, {"text": "by"}, {"text": "large"}, {"text": "companies"}, {"text": "."}, {"text": "Fourteen"}, {"text": "members"}, {"text": "of"}, {"text": "the"}, {"text": "House"}, {"text": "with"}, {"text": "jurisdiction"}, {"text": "over"}, {"text": "the"}, {"text": "EEOC"}, {"text": "have"}, {"text": "said"}, {"text": "0"}, {"text": "they"}, {"text": "oppose"}, {"text": "Mr."}, {"text": "Thomas"}, {"text": "'s"}, {"text": "nomination"}, {"text": "because"}, {"text": "of"}, {"text": "``"}, {"text": "serious"}, {"text": "questions"}, {"text": "about"}, {"text": "his"}, {"text": "judgment"}, {"text": "-LCB-"}, {"text": "and"}, {"text": "-RCB-"}, {"text": "respect"}, {"text": "for"}, {"text": "the"}, {"text": "law"}, {"text": "."}, {"text": "''"}, {"text": "A"}, {"text": "senior"}, {"text": "Justice"}, {"text": "Department"}, {"text": "official"}, {"text": ","}, {"text": "however"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "administration"}, {"text": "is"}, {"text": "n't"}, {"text": "worried"}, {"text": "about"}, {"text": "the"}, {"text": "ABA"}, {"text": "rating"}, {"text": "."}, {"text": "``"}, {"text": "We"}, {"text": "'re"}, {"text": "pleased"}, {"text": "0"}, {"text": "the"}, {"text": "ABA"}, {"text": "rated"}, {"text": "him"}, {"text": "qualified"}, {"text": ","}, {"text": "''"}, {"text": "David"}, {"text": "Runkel"}, {"text": ","}, {"text": "the"}, {"text": "department"}, {"text": "'s"}, {"text": "chief"}, {"text": "spokesman"}, {"text": ","}, {"text": "said"}, {"text": "*T*-1"}, {"text": "in"}, {"text": "an"}, {"text": "interview"}, {"text": "."}, {"text": "The"}, {"text": "ABA"}, {"text": "gives"}, {"text": "a"}, {"text": "``"}, {"text": "qualified"}, {"text": "''"}, {"text": "rating"}, {"text": "to"}, {"text": "nominees"}, {"text": "0"}, {"text": "it"}, {"text": "believes"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "would"}, {"text": "perform"}, {"text": "``"}, {"text": "satisfactorily"}, {"text": "''"}, {"text": "on"}, {"text": "the"}, {"text": "bench"}, {"text": "."}, {"text": "In"}, {"text": "contrast"}, {"text": ","}, {"text": "the"}, {"text": "lawyers"}, {"text": "'"}, {"text": "association"}, {"text": "gives"}, {"text": "a"}, {"text": "``"}, {"text": "well"}, {"text": "qualified"}, {"text": "''"}, {"text": "rating"}, {"text": "to"}, {"text": "those"}, {"text": "``"}, {"text": "regarded"}, {"text": "*"}, {"text": "as"}, {"text": "one"}, {"text": "of"}, {"text": "the"}, {"text": "best"}, {"text": "available"}, {"text": "for"}, {"text": "the"}, {"text": "vacancy"}, {"text": "."}, {"text": "Metallgesellschaft"}, {"text": "AG"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "agreed"}, {"text": "*-1"}, {"text": "to"}, {"text": "acquire"}, {"text": "51"}, {"text": "%"}, {"text": "of"}, {"text": "Lentjes"}, {"text": "AG"}, {"text": "from"}, {"text": "the"}, {"text": "Ferdinand"}, {"text": "Lentjes"}, {"text": "Foundation"}, {"text": "."}, {"text": "Terms"}, {"text": "were"}, {"text": "n't"}, {"text": "disclosed"}, {"text": "*-1"}, {"text": "."}, {"text": "Metallgesellschaft"}, {"text": ","}, {"text": "a"}, {"text": "diversified"}, {"text": "Frankfurt"}, {"text": ","}, {"text": "West"}, {"text": "Germany-based"}, {"text": "metals"}, {"text": "group"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "is"}, {"text": "buying"}, {"text": "the"}, {"text": "stake"}, {"text": "in"}, {"text": "the"}, {"text": "specialized"}, {"text": "engineering"}, {"text": "company"}, {"text": "*-1"}, {"text": "to"}, {"text": "expand"}, {"text": "its"}, {"text": "production"}, {"text": "of"}, {"text": "environmental"}, {"text": "supplies"}, {"text": "for"}, {"text": "power"}, {"text": "plants"}, {"text": "."}, {"text": "Lentjes"}, {"text": "'"}, {"text": "product"}, {"text": "mix"}, {"text": "of"}, {"text": "specialized"}, {"text": "boilers"}, {"text": "and"}, {"text": "pipes"}, {"text": "provides"}, {"text": "a"}, {"text": "good"}, {"text": "fit"}, {"text": "with"}, {"text": "its"}, {"text": "own"}, {"text": "Lurgi"}, {"text": "G.m.b"}, {"text": "."}, {"text": "H."}, {"text": "plant"}, {"text": "engineering"}, {"text": "unit"}, {"text": ","}, {"text": "the"}, {"text": "company"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "The"}, {"text": "move"}, {"text": "is"}, {"text": "part"}, {"text": "of"}, {"text": "a"}, {"text": "strategy"}, {"text": "0"}, {"text": "*T*-3"}, {"text": "to"}, {"text": "focus"}, {"text": "on"}, {"text": "its"}, {"text": "core"}, {"text": "metals"}, {"text": "trading"}, {"text": ","}, {"text": "processing"}, {"text": "and"}, {"text": "plant"}, {"text": "engineering"}, {"text": "activities"}, {"text": "while"}, {"text": "*-1"}, {"text": "shedding"}, {"text": "peripheral"}, {"text": "units"}, {"text": ","}, {"text": "the"}, {"text": "company"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "."}, {"text": "Lentjes"}, {"text": "had"}, {"text": "1988"}, {"text": "sales"}, {"text": "of"}, {"text": "800"}, {"text": "million"}, {"text": "marks"}, {"text": "-LRB-"}, {"text": "$"}, {"text": "434.4"}, {"text": "million"}, {"text": "*U*"}, {"text": "-RRB-"}, {"text": "and"}, {"text": "has"}, {"text": "a"}, {"text": "current"}, {"text": "order"}, {"text": "backlog"}, {"text": "of"}, {"text": "2.5"}, {"text": "billion"}, {"text": "marks"}, {"text": "."}, {"text": "The"}, {"text": "sale"}, {"text": "comes"}, {"text": "in"}, {"text": "place"}, {"text": "of"}, {"text": "a"}, {"text": "planned"}, {"text": "initial"}, {"text": "public"}, {"text": "offering"}, {"text": "of"}, {"text": "Lentjes"}, {"text": "stock"}, {"text": "."}, {"text": "A"}, {"text": "plan"}, {"text": "*"}, {"text": "to"}, {"text": "bring"}, {"text": "the"}, {"text": "stock"}, {"text": "to"}, {"text": "market"}, {"text": "before"}, {"text": "year"}, {"text": "end"}, {"text": "apparently"}, {"text": "was"}, {"text": "upset"}, {"text": "*-1"}, {"text": "by"}, {"text": "the"}, {"text": "recent"}, {"text": "weakness"}, {"text": "of"}, {"text": "Frankfurt"}, {"text": "share"}, {"text": "prices"}, {"text": "."}, {"text": "The"}, {"text": "U.S."}, {"text": "International"}, {"text": "Trade"}, {"text": "Commission"}, {"text": "issued"}, {"text": "preliminary"}, {"text": "rulings"}, {"text": "under"}, {"text": "the"}, {"text": "U.S."}, {"text": "anti-dumping"}, {"text": "act"}, {"text": "that"}, {"text": "imports"}, {"text": "of"}, {"text": "sweaters"}, {"text": "from"}, {"text": "Hong"}, {"text": "Kong"}, {"text": ","}, {"text": "Taiwan"}, {"text": "and"}, {"text": "South"}, {"text": "Korea"}, {"text": "may"}, {"text": "be"}, {"text": "injuring"}, {"text": "a"}, {"text": "domestic"}, {"text": "industry"}, {"text": "."}, {"text": "Because"}, {"text": "of"}, {"text": "the"}, {"text": "rulings"}, {"text": ","}, {"text": "the"}, {"text": "Commerce"}, {"text": "Department"}, {"text": "will"}, {"text": "continue"}, {"text": "*-1"}, {"text": "to"}, {"text": "investigate"}, {"text": "complaints"}, {"text": "*ICH*-2"}, {"text": "by"}, {"text": "U.S."}, {"text": "sweater"}, {"text": "makers"}, {"text": "that"}, {"text": "the"}, {"text": "imports"}, {"text": "are"}, {"text": "reaching"}, {"text": "the"}, {"text": "U.S."}, {"text": "at"}, {"text": "unfairly"}, {"text": "low"}, {"text": "prices"}, {"text": "in"}, {"text": "violation"}, {"text": "of"}, {"text": "the"}, {"text": "U.S."}, {"text": "anti-dumping"}, {"text": "act"}, {"text": "."}, {"text": "The"}, {"text": "law"}, {"text": "defines"}, {"text": "unfairly"}, {"text": "low"}, {"text": "prices"}, {"text": "as"}, {"text": "ones"}, {"text": "below"}, {"text": "the"}, {"text": "cost"}, {"text": "of"}, {"text": "production"}, {"text": "or"}, {"text": "below"}, {"text": "prices"}, {"text": "in"}, {"text": "an"}, {"text": "exporter"}, {"text": "'s"}, {"text": "home"}, {"text": "market"}, {"text": "."}, {"text": "ITC"}, {"text": "officials"}, {"text": "said"}, {"text": "0"}, {"text": "final"}, {"text": "Commerce"}, {"text": "Department"}, {"text": "and"}, {"text": "ITC"}, {"text": "rulings"}, {"text": "wo"}, {"text": "n't"}, {"text": "come"}, {"text": "until"}, {"text": "next"}, {"text": "March"}, {"text": "or"}, {"text": "later"}, {"text": "."}, {"text": "If"}, {"text": "both"}, {"text": "agencies"}, {"text": "find"}, {"text": "violations"}, {"text": "of"}, {"text": "the"}, {"text": "U.S."}, {"text": "trade"}, {"text": "law"}, {"text": ","}, {"text": "the"}, {"text": "U.S."}, {"text": "would"}, {"text": "assess"}, {"text": "penalty"}, {"text": "duties"}, {"text": "on"}, {"text": "the"}, {"text": "imports"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "already"}, {"text": "are"}, {"text": "subject"}, {"text": "to"}, {"text": "import"}, {"text": "quotas"}, {"text": "under"}, {"text": "bilateral"}, {"text": "textile"}, {"text": "and"}, {"text": "apparel"}, {"text": "trade"}, {"text": "agreements"}, {"text": "."}, {"text": "Imports"}, {"text": "of"}, {"text": "manmade-fiber"}, {"text": "sweaters"}, {"text": "in"}, {"text": "1988"}, {"text": "totaled"}, {"text": "about"}, {"text": "$"}, {"text": "405"}, {"text": "million"}, {"text": "*U*"}, {"text": "from"}, {"text": "Taiwan"}, {"text": ","}, {"text": "$"}, {"text": "400"}, {"text": "million"}, {"text": "*U*"}, {"text": "from"}, {"text": "South"}, {"text": "Korea"}, {"text": "and"}, {"text": "$"}, {"text": "125"}, {"text": "million"}, {"text": "*U*"}, {"text": "from"}, {"text": "Hong"}, {"text": "Kong"}, {"text": ","}, {"text": "according"}, {"text": "to"}, {"text": "the"}, {"text": "ITC"}, {"text": "."}, {"text": "In"}, {"text": "another"}, {"text": "action"}, {"text": ","}, {"text": "the"}, {"text": "ITC"}, {"text": "dismissed"}, {"text": "anti-dumping"}, {"text": "act"}, {"text": "complaints"}, {"text": "filed"}, {"text": "*"}, {"text": "by"}, {"text": "Du"}, {"text": "Pont"}, {"text": "Co."}, {"text": "of"}, {"text": "Wilmington"}, {"text": ","}, {"text": "Del."}, {"text": ","}, {"text": "against"}, {"text": "imports"}, {"text": "of"}, {"text": "neoprene"}, {"text": ","}, {"text": "a"}, {"text": "type"}, {"text": "of"}, {"text": "synthetic"}, {"text": "rubber"}, {"text": ","}, {"text": "from"}, {"text": "France"}, {"text": "and"}, {"text": "West"}, {"text": "Germany"}, {"text": "."}, {"text": "These"}, {"text": "imports"}, {"text": "totaled"}, {"text": "about"}, {"text": "$"}, {"text": "17"}, {"text": "million"}, {"text": "*U*"}, {"text": "last"}, {"text": "year"}, {"text": "."}, {"text": "Upjohn"}, {"text": "Co."}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "will"}, {"text": "offer"}, {"text": "an"}, {"text": "early"}, {"text": "retirement"}, {"text": "package"}, {"text": "to"}, {"text": "as"}, {"text": "many"}, {"text": "as"}, {"text": "1,100"}, {"text": "employees"}, {"text": "in"}, {"text": "a"}, {"text": "cost-cutting"}, {"text": "move"}, {"text": "expected"}, {"text": "*"}, {"text": "to"}, {"text": "result"}, {"text": "in"}, {"text": "a"}, {"text": "fourth-quarter"}, {"text": "charge"}, {"text": "."}, {"text": "Upjohn"}, {"text": "officials"}, {"text": "said"}, {"text": "0"}, {"text": "they"}, {"text": "could"}, {"text": "n't"}, {"text": "estimate"}, {"text": "the"}, {"text": "size"}, {"text": "of"}, {"text": "the"}, {"text": "charge"}, {"text": "until"}, {"text": "they"}, {"text": "determine"}, {"text": "which"}, {"text": "employees"}, {"text": ","}, {"text": "and"}, {"text": "how"}, {"text": "many"}, {"text": ","}, {"text": "*T*-1"}, {"text": "will"}, {"text": "participate"}, {"text": "in"}, {"text": "the"}, {"text": "retirement"}, {"text": "plan"}, {"text": "."}, {"text": "But"}, {"text": "the"}, {"text": "pharmaceutical"}, {"text": "company"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "``"}, {"text": "anticipates"}, {"text": "0"}, {"text": "the"}, {"text": "long-term"}, {"text": "savings"}, {"text": "resulting"}, {"text": "from"}, {"text": "the"}, {"text": "plan"}, {"text": "'s"}, {"text": "implementation"}, {"text": "will"}, {"text": "more"}, {"text": "than"}, {"text": "offset"}, {"text": "short-term"}, {"text": "costs"}, {"text": "."}, {"text": "''"}, {"text": "The"}, {"text": "program"}, {"text": ","}, {"text": "available"}, {"text": "to"}, {"text": "Upjohn"}, {"text": "employees"}, {"text": "55"}, {"text": "years"}, {"text": "old"}, {"text": "or"}, {"text": "older"}, {"text": ","}, {"text": "could"}, {"text": "increase"}, {"text": "an"}, {"text": "individual"}, {"text": "'s"}, {"text": "retirement"}, {"text": "benefits"}, {"text": "10"}, {"text": "%"}, {"text": "to"}, {"text": "20"}, {"text": "%"}, {"text": "*U*"}, {"text": "."}, {"text": "In"}, {"text": "addition"}, {"text": ","}, {"text": "Upjohn"}, {"text": "is"}, {"text": "offering"}, {"text": "a"}, {"text": "one-time"}, {"text": "retirement"}, {"text": "bonus"}, {"text": "equal"}, {"text": "to"}, {"text": "six"}, {"text": "months"}, {"text": "of"}, {"text": "base"}, {"text": "pay"}, {"text": "."}, {"text": "Chairman"}, {"text": "Theodore"}, {"text": "Cooper"}, {"text": "called"}, {"text": "the"}, {"text": "program"}, {"text": "part"}, {"text": "of"}, {"text": "the"}, {"text": "company"}, {"text": "'s"}, {"text": "two-year"}, {"text": "strategy"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "implement"}, {"text": "budget"}, {"text": "constraints"}, {"text": "and"}, {"text": "``"}, {"text": "an"}, {"text": "effective"}, {"text": "headcount-control"}, {"text": "program"}, {"text": "*T*-1"}, {"text": "."}, {"text": "''"}, {"text": "But"}, {"text": "some"}, {"text": "analysts"}, {"text": "questioned"}, {"text": "how"}, {"text": "much"}, {"text": "of"}, {"text": "an"}, {"text": "impact"}, {"text": "the"}, {"text": "retirement"}, {"text": "package"}, {"text": "will"}, {"text": "have"}, {"text": "*T*-1"}, {"text": ","}, {"text": "because"}, {"text": "few"}, {"text": "jobs"}, {"text": "will"}, {"text": "end"}, {"text": "up"}, {"text": "*-2"}, {"text": "being"}, {"text": "eliminated"}, {"text": "*-3"}, {"text": "."}, {"text": "``"}, {"text": "It"}, {"text": "'s"}, {"text": "a"}, {"text": "cosmetic"}, {"text": "move"}, {"text": ","}, {"text": "''"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "Jonathan"}, {"text": "S."}, {"text": "Gelles"}, {"text": "of"}, {"text": "Wertheim"}, {"text": "Schroder"}, {"text": "&"}, {"text": "Co"}, {"text": "."}, {"text": "According"}, {"text": "to"}, {"text": "Upjohn"}, {"text": "'s"}, {"text": "estimates"}, {"text": ","}, {"text": "only"}, {"text": "50"}, {"text": "%"}, {"text": "to"}, {"text": "60"}, {"text": "%"}, {"text": "*U*"}, {"text": "of"}, {"text": "the"}, {"text": "1,100"}, {"text": "eligible"}, {"text": "employees"}, {"text": "will"}, {"text": "take"}, {"text": "advantage"}, {"text": "of"}, {"text": "the"}, {"text": "plan"}, {"text": "."}, {"text": "Upjohn"}, {"text": "further"}, {"text": "estimated"}, {"text": "that"}, {"text": "about"}, {"text": "50"}, {"text": "%"}, {"text": "of"}, {"text": "the"}, {"text": "employees"}, {"text": "who"}, {"text": "*T*-2"}, {"text": "leave"}, {"text": "for"}, {"text": "early"}, {"text": "retirement"}, {"text": "may"}, {"text": "be"}, {"text": "replaced"}, {"text": "*-1"}, {"text": "."}, {"text": "As"}, {"text": "a"}, {"text": "result"}, {"text": ","}, {"text": "Upjohn"}, {"text": "will"}, {"text": "likely"}, {"text": "trim"}, {"text": "only"}, {"text": "about"}, {"text": "275"}, {"text": "to"}, {"text": "350"}, {"text": "of"}, {"text": "its"}, {"text": "more"}, {"text": "than"}, {"text": "21,000"}, {"text": "jobs"}, {"text": "world-wide"}, {"text": "."}, {"text": "In"}, {"text": "composite"}, {"text": "trading"}, {"text": "on"}, {"text": "the"}, {"text": "New"}, {"text": "York"}, {"text": "Stock"}, {"text": "Exchange"}, {"text": "yesterday"}, {"text": ","}, {"text": "Upjohn"}, {"text": "shares"}, {"text": "rose"}, {"text": "87.5"}, {"text": "cents"}, {"text": "to"}, {"text": "$"}, {"text": "38.875"}, {"text": "*U*"}, {"text": "apiece"}, {"text": "."}, {"text": "An"}, {"text": "Upjohn"}, {"text": "spokesman"}, {"text": "said"}, {"text": "0"}, {"text": "he"}, {"text": "had"}, {"text": "``"}, {"text": "heard"}, {"text": "nothing"}, {"text": "''"}, {"text": "0"}, {"text": "*T*-3"}, {"text": "to"}, {"text": "suggest"}, {"text": "0"}, {"text": "the"}, {"text": "early"}, {"text": "retirement"}, {"text": "package"}, {"text": "was"}, {"text": "spurred"}, {"text": "*-1"}, {"text": "by"}, {"text": "shareholder"}, {"text": "pressure"}, {"text": "or"}, {"text": "a"}, {"text": "potential"}, {"text": "bidder"}, {"text": "for"}, {"text": "the"}, {"text": "company"}, {"text": ","}, {"text": "which"}, {"text": "*T*-2"}, {"text": "occasionally"}, {"text": "has"}, {"text": "been"}, {"text": "the"}, {"text": "target"}, {"text": "of"}, {"text": "takeover"}, {"text": "speculation"}, {"text": "."}, {"text": "The"}, {"text": "company"}, {"text": "earlier"}, {"text": "this"}, {"text": "year"}, {"text": "adopted"}, {"text": "a"}, {"text": "shareholder-rights"}, {"text": "plan"}, {"text": "*-1"}, {"text": "to"}, {"text": "ward"}, {"text": "off"}, {"text": "unwanted"}, {"text": "suitors"}, {"text": "."}, {"text": "The"}, {"text": "spokesman"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "is"}, {"text": "the"}, {"text": "first"}, {"text": "early"}, {"text": "retirement"}, {"text": "plan"}, {"text": "offered"}, {"text": "under"}, {"text": "its"}, {"text": "two-year"}, {"text": "cost-control"}, {"text": "strategy"}, {"text": "."}, {"text": "Earlier"}, {"text": "staff-reduction"}, {"text": "moves"}, {"text": "have"}, {"text": "trimmed"}, {"text": "about"}, {"text": "300"}, {"text": "jobs"}, {"text": ","}, {"text": "the"}, {"text": "spokesman"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "INTER-TEL"}, {"text": "Inc"}, {"text": "."}, {"text": "-LRB-"}, {"text": "Chandler"}, {"text": ","}, {"text": "Ariz."}, {"text": "-RRB-"}, {"text": "--"}, {"text": "Jerry"}, {"text": "Chapman"}, {"text": ","}, {"text": "managing"}, {"text": "director"}, {"text": "of"}, {"text": "WayMar"}, {"text": "Associates"}, {"text": ","}, {"text": "was"}, {"text": "elected"}, {"text": "*-1"}, {"text": "a"}, {"text": "director"}, {"text": "of"}, {"text": "this"}, {"text": "business"}, {"text": "telecommunications"}, {"text": "software"}, {"text": "and"}, {"text": "systems"}, {"text": "concern"}, {"text": "."}, {"text": "He"}, {"text": "increases"}, {"text": "the"}, {"text": "board"}, {"text": "to"}, {"text": "seven"}, {"text": "."}, {"text": "``"}, {"text": "Feeding"}, {"text": "Frenzy"}, {"text": "''"}, {"text": "-LRB-"}, {"text": "Henry"}, {"text": "Holt"}, {"text": ","}, {"text": "326"}, {"text": "pages"}, {"text": ","}, {"text": "$"}, {"text": "19.95"}, {"text": "*U*"}, {"text": "-RRB-"}, {"text": ","}, {"text": "a"}, {"text": "highly"}, {"text": "detailed"}, {"text": "account"}, {"text": "of"}, {"text": "the"}, {"text": "Wedtech"}, {"text": "scandal"}, {"text": ","}, {"text": "begins"}, {"text": "on"}, {"text": "a"}, {"text": "reassuring"}, {"text": "note"}, {"text": "."}, {"text": "Right"}, {"text": "up"}, {"text": "front"}, {"text": "in"}, {"text": "the"}, {"text": "preface"}, {"text": ","}, {"text": "co-author"}, {"text": "William"}, {"text": "Sternberg"}, {"text": "gives"}, {"text": "us"}, {"text": "an"}, {"text": "example"}, {"text": "of"}, {"text": "his"}, {"text": "own"}, {"text": "integrity"}, {"text": "."}, {"text": "When"}, {"text": "*-4"}, {"text": "offered"}, {"text": "*-3"}, {"text": "a"}, {"text": "free"}, {"text": "trip"}, {"text": "from"}, {"text": "the"}, {"text": "Bronx"}, {"text": ","}, {"text": "Wedtech"}, {"text": "'s"}, {"text": "home"}, {"text": ","}, {"text": "to"}, {"text": "Washington"}, {"text": ","}, {"text": "D.C."}, {"text": ","}, {"text": "by"}, {"text": "one"}, {"text": "of"}, {"text": "Wedtech"}, {"text": "'s"}, {"text": "principals"}, {"text": "*T*-2"}, {"text": ","}, {"text": "he"}, {"text": "tells"}, {"text": "the"}, {"text": "reader"}, {"text": ","}, {"text": "``"}, {"text": "*-5"}, {"text": "mindful"}, {"text": "of"}, {"text": "*"}, {"text": "accepting"}, {"text": "anything"}, {"text": "of"}, {"text": "value"}, {"text": "from"}, {"text": "those"}, {"text": "0"}, {"text": "I"}, {"text": "was"}, {"text": "writing"}, {"text": "about"}, {"text": "*T*-1"}, {"text": ","}, {"text": "I"}, {"text": "declined"}, {"text": "."}, {"text": "''"}, {"text": "Any"}, {"text": "question"}, {"text": "as"}, {"text": "to"}, {"text": "why"}, {"text": "an"}, {"text": "author"}, {"text": "would"}, {"text": "believe"}, {"text": "0"}, {"text": "this"}, {"text": "plaintive"}, {"text": ","}, {"text": "high-minded"}, {"text": "note"}, {"text": "of"}, {"text": "assurance"}, {"text": "is"}, {"text": "necessary"}, {"text": "*T*-2"}, {"text": "is"}, {"text": "answered"}, {"text": "*-1"}, {"text": "by"}, {"text": "*"}, {"text": "reading"}, {"text": "this"}, {"text": "book"}, {"text": "about"}, {"text": "sticky"}, {"text": "fingers"}, {"text": "and"}, {"text": "sweaty"}, {"text": "scammers"}, {"text": "."}, {"text": "Bribe"}, {"text": "by"}, {"text": "bribe"}, {"text": ","}, {"text": "Mr."}, {"text": "Sternberg"}, {"text": "and"}, {"text": "his"}, {"text": "co-author"}, {"text": ","}, {"text": "Matthew"}, {"text": "C."}, {"text": "Harrison"}, {"text": "Jr."}, {"text": ","}, {"text": "lead"}, {"text": "us"}, {"text": "along"}, {"text": "the"}, {"text": "path"}, {"text": "0"}, {"text": "Wedtech"}, {"text": "traveled"}, {"text": "*T*-1"}, {"text": ","}, {"text": "from"}, {"text": "its"}, {"text": "inception"}, {"text": "as"}, {"text": "a"}, {"text": "small"}, {"text": "manufacturing"}, {"text": "company"}, {"text": "to"}, {"text": "the"}, {"text": "status"}, {"text": "of"}, {"text": "full-fledged"}, {"text": "defense"}, {"text": "contractor"}, {"text": ","}, {"text": "entrusted"}, {"text": "*"}, {"text": "with"}, {"text": "the"}, {"text": "task"}, {"text": "of"}, {"text": "*"}, {"text": "producing"}, {"text": "vital"}, {"text": "equipment"}, {"text": "for"}, {"text": "the"}, {"text": "Army"}, {"text": "and"}, {"text": "Navy"}, {"text": "."}, {"text": "The"}, {"text": "book"}, {"text": "revolves"}, {"text": "around"}, {"text": "John"}, {"text": "Mariotta"}, {"text": ","}, {"text": "the"}, {"text": "founder"}, {"text": "of"}, {"text": "the"}, {"text": "company"}, {"text": ","}, {"text": "and"}, {"text": "Fred"}, {"text": "Neuberger"}, {"text": ","}, {"text": "who"}, {"text": "*T*-1"}, {"text": "became"}, {"text": "his"}, {"text": "partner"}, {"text": "soon"}, {"text": "after"}, {"text": "Wedtech"}, {"text": "'s"}, {"text": "creation"}, {"text": "."}, {"text": "Although"}, {"text": "*-1"}, {"text": "started"}, {"text": "in"}, {"text": "1965"}, {"text": ","}, {"text": "Wedtech"}, {"text": "did"}, {"text": "n't"}, {"text": "really"}, {"text": "get"}, {"text": "*-1"}, {"text": "rolling"}, {"text": "until"}, {"text": "1975"}, {"text": ","}, {"text": "when"}, {"text": "Mr."}, {"text": "Neuberger"}, {"text": "discovered"}, {"text": "the"}, {"text": "federal"}, {"text": "government"}, {"text": "'s"}, {"text": "Section"}, {"text": "8"}, {"text": "-LRB-"}, {"text": "A"}, {"text": "-RRB-"}, {"text": "minority"}, {"text": "business"}, {"text": "program"}, {"text": "*T*-2"}, {"text": "."}, {"text": "This"}, {"text": "is"}, {"text": "a"}, {"text": "Johnson-era"}, {"text": ","}, {"text": "Great"}, {"text": "Society"}, {"text": "creation"}, {"text": "that"}, {"text": "*T*-2"}, {"text": "mandates"}, {"text": "0"}, {"text": "certain"}, {"text": "government"}, {"text": "contracts"}, {"text": "be"}, {"text": "awarded"}, {"text": "*-1"}, {"text": "noncompetitively"}, {"text": "to"}, {"text": "minority"}, {"text": "businesses"}, {"text": "."}, {"text": "Mr."}, {"text": "Neuberger"}, {"text": "realized"}, {"text": "that"}, {"text": ","}, {"text": "although"}, {"text": "of"}, {"text": "Italian"}, {"text": "ancestry"}, {"text": ","}, {"text": "Mr."}, {"text": "Mariotta"}, {"text": "still"}, {"text": "could"}, {"text": "qualify"}, {"text": "as"}, {"text": "a"}, {"text": "minority"}, {"text": "person"}, {"text": "since"}, {"text": "he"}, {"text": "was"}, {"text": "born"}, {"text": "*-1"}, {"text": "in"}, {"text": "Puerto"}, {"text": "Rico"}, {"text": "."}, {"text": "The"}, {"text": "two"}, {"text": "partners"}, {"text": "merely"}, {"text": "had"}, {"text": "*-1"}, {"text": "to"}, {"text": "falsify"}, {"text": "the"}, {"text": "true"}, {"text": "ownership"}, {"text": "of"}, {"text": "the"}, {"text": "corporation"}, {"text": "."}, {"text": "Instead"}, {"text": "of"}, {"text": "50\\/50"}, {"text": "it"}, {"text": "became"}, {"text": ","}, {"text": "on"}, {"text": "paper"}, {"text": "only"}, {"text": ","}, {"text": "two-thirds"}, {"text": "Mariotta"}, {"text": ","}, {"text": "one-third"}, {"text": "Neuberger"}, {"text": ","}, {"text": "and"}, {"text": "they"}, {"text": "were"}, {"text": "in"}, {"text": "the"}, {"text": "program"}, {"text": "and"}, {"text": "off"}, {"text": "to"}, {"text": "the"}, {"text": "races"}, {"text": "."}, {"text": "Besides"}, {"text": "*-1"}, {"text": "being"}, {"text": "a"}, {"text": "``"}, {"text": "minority-owned"}, {"text": "company"}, {"text": "''"}, {"text": "Wedtech"}, {"text": "was"}, {"text": "located"}, {"text": "*-1"}, {"text": "in"}, {"text": "the"}, {"text": "South"}, {"text": "Bronx"}, {"text": ","}, {"text": "a"}, {"text": "blighted"}, {"text": "area"}, {"text": ","}, {"text": "made"}, {"text": "*"}, {"text": "famous"}, {"text": "by"}, {"text": "Jimmy"}, {"text": "Carter"}, {"text": "in"}, {"text": "his"}, {"text": "1976"}, {"text": "presidential"}, {"text": "campaign"}, {"text": "."}, {"text": "The"}, {"text": "company"}, {"text": "plugged"}, {"text": "itself"}, {"text": "right"}, {"text": "into"}, {"text": "Carter"}, {"text": "campaign"}, {"text": "rhetoric"}, {"text": "about"}, {"text": "*"}, {"text": "rebuilding"}, {"text": "the"}, {"text": "South"}, {"text": "Bronx"}, {"text": "and"}, {"text": "kept"}, {"text": "*-1"}, {"text": "using"}, {"text": "the"}, {"text": "minority"}, {"text": "--"}, {"text": "South"}, {"text": "Bronx"}, {"text": "angle"}, {"text": "through"}, {"text": "the"}, {"text": "Reagan"}, {"text": "'80s"}, {"text": "."}, {"text": "*-1"}, {"text": "Starting"}, {"text": "with"}, {"text": "Congressman"}, {"text": "Mario"}, {"text": "Biaggi"}, {"text": "-LRB-"}, {"text": "now"}, {"text": "serving"}, {"text": "a"}, {"text": "jail"}, {"text": "sentence"}, {"text": "-RRB-"}, {"text": ","}, {"text": "the"}, {"text": "company"}, {"text": "began"}, {"text": "a"}, {"text": "career"}, {"text": "of"}, {"text": "*"}, {"text": "bribing"}, {"text": "federal"}, {"text": ","}, {"text": "state"}, {"text": "and"}, {"text": "local"}, {"text": "public"}, {"text": "officials"}, {"text": "and"}, {"text": "those"}, {"text": "close"}, {"text": "to"}, {"text": "public"}, {"text": "officials"}, {"text": ","}, {"text": "right"}, {"text": "up"}, {"text": "to"}, {"text": "*RNR*-2"}, {"text": "and"}, {"text": "including"}, {"text": "*RNR*-2"}, {"text": "E."}, {"text": "Robert"}, {"text": "Wallach"}, {"text": ","}, {"text": "close"}, {"text": "friend"}, {"text": "and"}, {"text": "adviser"}, {"text": "to"}, {"text": "former"}, {"text": "Attorney"}, {"text": "General"}, {"text": "Ed"}, {"text": "Meese"}, {"text": "."}, {"text": "Wedtech"}, {"text": "did"}, {"text": "n't"}, {"text": "just"}, {"text": "use"}, {"text": "old"}, {"text": "fashioned"}, {"text": "bribery"}, {"text": "."}, {"text": "It"}, {"text": "made"}, {"text": "ample"}, {"text": "use"}, {"text": "of"}, {"text": "the"}, {"text": "modern"}, {"text": "techniques"}, {"text": "of"}, {"text": "influence"}, {"text": "peddling"}, {"text": ","}, {"text": "*-1"}, {"text": "retaining"}, {"text": "politically"}, {"text": "connected"}, {"text": "``"}, {"text": "respectable"}, {"text": "''"}, {"text": "law"}, {"text": "firms"}, {"text": ","}, {"text": "investment"}, {"text": "bankers"}, {"text": "and"}, {"text": "political"}, {"text": "consultants"}, {"text": ","}, {"text": "including"}, {"text": "Reagan"}, {"text": "confidant"}, {"text": "Lyn"}, {"text": "Nofzinger"}, {"text": "."}, {"text": "When"}, {"text": "necessary"}, {"text": ","}, {"text": "it"}, {"text": "sought"}, {"text": "and"}, {"text": "received"}, {"text": "assistance"}, {"text": "from"}, {"text": "organized"}, {"text": "crime"}, {"text": "."}, {"text": "Sometimes"}, {"text": "the"}, {"text": "bribed"}, {"text": "became"}, {"text": "partners"}, {"text": "in"}, {"text": "the"}, {"text": "company"}, {"text": "."}, {"text": "Wedtech"}, {"text": "management"}, {"text": "used"}, {"text": "the"}, {"text": "merit"}, {"text": "system"}, {"text": "."}, {"text": "If"}, {"text": "you"}, {"text": "were"}, {"text": "especially"}, {"text": "helpful"}, {"text": "in"}, {"text": "a"}, {"text": "corrupt"}, {"text": "scheme"}, {"text": "you"}, {"text": "received"}, {"text": "not"}, {"text": "just"}, {"text": "cash"}, {"text": "in"}, {"text": "a"}, {"text": "bag"}, {"text": ","}, {"text": "but"}, {"text": "equity"}, {"text": "."}, {"text": "If"}, {"text": "you"}, {"text": "were"}, {"text": "not"}, {"text": "an"}, {"text": "effective"}, {"text": "crook"}, {"text": ","}, {"text": "you"}, {"text": "found"}, {"text": "yourself"}, {"text": "out"}, {"text": "in"}, {"text": "the"}, {"text": "cold"}, {"text": ","}, {"text": "a"}, {"text": "fate"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "eventually"}, {"text": "befell"}, {"text": "Mr."}, {"text": "Mariotta"}, {"text": ","}, {"text": "the"}, {"text": "firm"}, {"text": "'s"}, {"text": "semiliterate"}, {"text": "``"}, {"text": "minority"}, {"text": "''"}, {"text": "person"}, {"text": "."}, {"text": "But"}, {"text": "despite"}, {"text": "the"}, {"text": "sensational"}, {"text": "nature"}, {"text": "of"}, {"text": "the"}, {"text": "revelations"}, {"text": "and"}, {"text": "the"}, {"text": "breezy"}, {"text": ","}, {"text": "easy-to-read"}, {"text": "tabloid"}, {"text": "writing"}, {"text": "style"}, {"text": ","}, {"text": "``"}, {"text": "Feeding"}, {"text": "Frenzy"}, {"text": "''"}, {"text": "often"}, {"text": "falls"}, {"text": "short"}, {"text": "of"}, {"text": "gripping"}, {"text": "reading"}, {"text": "."}, {"text": "None"}, {"text": "of"}, {"text": "the"}, {"text": "scams"}, {"text": "show"}, {"text": "much"}, {"text": "ingenuity"}, {"text": ":"}, {"text": "Auditors"}, {"text": "found"}, {"text": "crookery"}, {"text": "the"}, {"text": "first"}, {"text": "day"}, {"text": "on"}, {"text": "the"}, {"text": "job"}, {"text": "."}, {"text": "Wedtech"}, {"text": "'s"}, {"text": "scammers"}, {"text": "simply"}, {"text": "bribed"}, {"text": "them"}, {"text": "to"}, {"text": "shut"}, {"text": "up"}, {"text": "."}, {"text": "The"}, {"text": "scammers"}, {"text": "themselves"}, {"text": "were"}, {"text": "garden-variety"}, {"text": "low"}, {"text": "lifes"}, {"text": ","}, {"text": "conspicuous"}, {"text": "consumers"}, {"text": "who"}, {"text": "*T*-1"}, {"text": "wanted"}, {"text": "big"}, {"text": "houses"}, {"text": ","}, {"text": "Mercedes"}, {"text": "cars"}, {"text": ","}, {"text": "beautiful"}, {"text": "women"}, {"text": ","}, {"text": "expensive"}, {"text": "clothes"}, {"text": "."}, {"text": "Among"}, {"text": "the"}, {"text": "lot"}, {"text": "of"}, {"text": "them"}, {"text": ","}, {"text": "not"}, {"text": "one"}, {"text": "is"}, {"text": "wrestling"}, {"text": "with"}, {"text": "good"}, {"text": "and"}, {"text": "evil"}, {"text": ","}, {"text": "or"}, {"text": "especially"}, {"text": "intelligent"}, {"text": "or"}, {"text": "even"}, {"text": "temporarily"}, {"text": "insane"}, {"text": "."}, {"text": "The"}, {"text": "one"}, {"text": "character"}, {"text": "at"}, {"text": "least"}, {"text": "somewhat"}, {"text": "interesting"}, {"text": "was"}, {"text": "Irving"}, {"text": "Louis"}, {"text": "Lobsenz"}, {"text": ","}, {"text": "a"}, {"text": "pediatrician"}, {"text": "who"}, {"text": "*T*-1"}, {"text": "changed"}, {"text": "his"}, {"text": "name"}, {"text": "to"}, {"text": "Rusty"}, {"text": "Kent"}, {"text": "London"}, {"text": "and"}, {"text": "became"}, {"text": "a"}, {"text": "master"}, {"text": "gambler"}, {"text": "and"}, {"text": "author"}, {"text": "of"}, {"text": "a"}, {"text": "book"}, {"text": "on"}, {"text": "blackjack"}, {"text": "."}, {"text": "He"}, {"text": "enters"}, {"text": "the"}, {"text": "story"}, {"text": "toward"}, {"text": "the"}, {"text": "end"}, {"text": ","}, {"text": "just"}, {"text": "in"}, {"text": "time"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "get"}, {"text": "*-1"}, {"text": "arrested"}, {"text": "*-1"}, {"text": "*T*-2"}, {"text": "."}, {"text": "*-1"}, {"text": "Absorbed"}, {"text": "in"}, {"text": "*"}, {"text": "doling"}, {"text": "out"}, {"text": "``"}, {"text": "Feeding"}, {"text": "Frenzy"}, {"text": "'s"}, {"text": "''"}, {"text": "tidbits"}, {"text": ","}, {"text": "the"}, {"text": "authors"}, {"text": "gloss"}, {"text": "over"}, {"text": "the"}, {"text": "root"}, {"text": "causes"}, {"text": "of"}, {"text": "Wedtech"}, {"text": ","}, {"text": "namely"}, {"text": "the"}, {"text": "Section"}, {"text": "8"}, {"text": "-LRB-"}, {"text": "A"}, {"text": "-RRB-"}, {"text": "federal"}, {"text": "program"}, {"text": "under"}, {"text": "whose"}, {"text": "auspices"}, {"text": "the"}, {"text": "scandal"}, {"text": "took"}, {"text": "place"}, {"text": "*T*-2"}, {"text": "."}, {"text": "They"}, {"text": "do"}, {"text": "at"}, {"text": "least"}, {"text": "come"}, {"text": "around"}, {"text": "to"}, {"text": "*"}, {"text": "saying"}, {"text": "that"}, {"text": "the"}, {"text": "courts"}, {"text": "might"}, {"text": "want"}, {"text": "*-1"}, {"text": "to"}, {"text": "end"}, {"text": "``"}, {"text": "rigid"}, {"text": "affirmative"}, {"text": "action"}, {"text": "programs"}, {"text": "."}, {"text": "''"}, {"text": "Programs"}, {"text": "like"}, {"text": "Section"}, {"text": "8"}, {"text": "-LRB-"}, {"text": "A"}, {"text": "-RRB-"}, {"text": "are"}, {"text": "a"}, {"text": "little"}, {"text": "like"}, {"text": "*"}, {"text": "leaving"}, {"text": "gold"}, {"text": "in"}, {"text": "the"}, {"text": "street"}, {"text": "and"}, {"text": "then"}, {"text": "expressing"}, {"text": "surprise"}, {"text": "when"}, {"text": "thieves"}, {"text": "walk"}, {"text": "by"}, {"text": "*-2"}, {"text": "to"}, {"text": "scoop"}, {"text": "it"}, {"text": "up"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Numerous"}, {"text": "other"}, {"text": "scandals"}, {"text": ","}, {"text": "among"}, {"text": "them"}, {"text": "the"}, {"text": "ones"}, {"text": "at"}, {"text": "HUD"}, {"text": ","}, {"text": "have"}, {"text": "the"}, {"text": "same"}, {"text": "characteristics"}, {"text": "as"}, {"text": "Wedtech"}, {"text": "."}, {"text": "They"}, {"text": "take"}, {"text": "place"}, {"text": "in"}, {"text": "government"}, {"text": "programs"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "seem"}, {"text": "tailor-made"}, {"text": "for"}, {"text": "corruption"}, {"text": "."}, {"text": "Why"}, {"text": "are"}, {"text": "programs"}, {"text": "like"}, {"text": "this"}, {"text": "not"}, {"text": "eliminated"}, {"text": "*-2"}, {"text": "*T*-1"}, {"text": "?"}, {"text": "``"}, {"text": "Feeding"}, {"text": "Frenzy"}, {"text": "''"}, {"text": "does"}, {"text": "provide"}, {"text": "a"}, {"text": "few"}, {"text": "clues"}, {"text": "."}, {"text": "In"}, {"text": "and"}, {"text": "around"}, {"text": "all"}, {"text": "levels"}, {"text": "of"}, {"text": "government"}, {"text": "in"}, {"text": "the"}, {"text": "U.S."}, {"text": "are"}, {"text": "*T*-3"}, {"text": "groups"}, {"text": "of"}, {"text": "people"}, {"text": "who"}, {"text": "*T*-2"}, {"text": "can"}, {"text": "best"}, {"text": "be"}, {"text": "described"}, {"text": "*-1"}, {"text": "as"}, {"text": "*-4"}, {"text": "belonging"}, {"text": "to"}, {"text": "a"}, {"text": "political"}, {"text": "insider"}, {"text": "commercial"}, {"text": "party"}, {"text": "."}, {"text": "They"}, {"text": "know"}, {"text": "that"}, {"text": "whenever"}, {"text": "government"}, {"text": "is"}, {"text": "redistributing"}, {"text": "wealth"}, {"text": ","}, {"text": "regulating"}, {"text": "commerce"}, {"text": "or"}, {"text": "maintaining"}, {"text": "a"}, {"text": "large"}, {"text": "defense"}, {"text": "establishment"}, {"text": "*T*-2"}, {"text": ","}, {"text": "there"}, {"text": "is"}, {"text": "big"}, {"text": "money"}, {"text": "0"}, {"text": "*T*-3"}, {"text": "to"}, {"text": "be"}, {"text": "made"}, {"text": "*-1"}, {"text": "in"}, {"text": "*"}, {"text": "influencing"}, {"text": ","}, {"text": "brokering"}, {"text": "or"}, {"text": "selling"}, {"text": "the"}, {"text": "processes"}, {"text": "and"}, {"text": "decisions"}, {"text": "of"}, {"text": "government"}, {"text": "."}, {"text": "They"}, {"text": "are"}, {"text": "our"}, {"text": "version"}, {"text": "of"}, {"text": "the"}, {"text": "East"}, {"text": "bloc"}, {"text": "'s"}, {"text": "Nomenklatura"}, {"text": "and"}, {"text": "they"}, {"text": "have"}, {"text": "absolutely"}, {"text": "no"}, {"text": "wish"}, {"text": "*"}, {"text": "to"}, {"text": "see"}, {"text": "anything"}, {"text": "change"}, {"text": "."}, {"text": "How"}, {"text": "many"}, {"text": "government"}, {"text": "programs"}, {"text": "and"}, {"text": "policies"}, {"text": "*T*-1"}, {"text": "exist"}, {"text": "because"}, {"text": "they"}, {"text": "line"}, {"text": "the"}, {"text": "pockets"}, {"text": "of"}, {"text": "political"}, {"text": "insiders"}, {"text": "?"}, {"text": "This"}, {"text": "is"}, {"text": "the"}, {"text": "real"}, {"text": "issue"}, {"text": "raised"}, {"text": "*"}, {"text": "by"}, {"text": "the"}, {"text": "Wedtech"}, {"text": "scandal"}, {"text": "."}, {"text": "Mr."}, {"text": "Stern"}, {"text": "was"}, {"text": "chairman"}, {"text": "and"}, {"text": "chief"}, {"text": "executive"}, {"text": "officer"}, {"text": "of"}, {"text": "the"}, {"text": "New"}, {"text": "York"}, {"text": "State"}, {"text": "Urban"}, {"text": "Development"}, {"text": "Corp."}, {"text": ","}, {"text": "1983-85"}, {"text": "."}, {"text": "The"}, {"text": "Finnish"}, {"text": "government"}, {"text": "and"}, {"text": "major"}, {"text": "creditors"}, {"text": "of"}, {"text": "bankrupt"}, {"text": "shipyard"}, {"text": "Waertsilae"}, {"text": "Marine"}, {"text": "Industries"}, {"text": "Oy"}, {"text": "agreed"}, {"text": "in"}, {"text": "principle"}, {"text": "*-1"}, {"text": "to"}, {"text": "form"}, {"text": "a"}, {"text": "new"}, {"text": "company"}, {"text": "*-2"}, {"text": "to"}, {"text": "complete"}, {"text": "most"}, {"text": "of"}, {"text": "the"}, {"text": "troubled"}, {"text": "shipyard"}, {"text": "'s"}, {"text": "backlog"}, {"text": "of"}, {"text": "15"}, {"text": "ships"}, {"text": "."}, {"text": "The"}, {"text": "new"}, {"text": "company"}, {"text": "will"}, {"text": "attempt"}, {"text": "*-1"}, {"text": "to"}, {"text": "limit"}, {"text": "the"}, {"text": "shipyard"}, {"text": "'s"}, {"text": "losses"}, {"text": ","}, {"text": "participants"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "."}, {"text": "``"}, {"text": "The"}, {"text": "situation"}, {"text": "is"}, {"text": "that"}, {"text": "the"}, {"text": "bankruptcy"}, {"text": "court"}, {"text": "will"}, {"text": "get"}, {"text": "out"}, {"text": "of"}, {"text": "the"}, {"text": "shipbuilding"}, {"text": "business"}, {"text": "."}, {"text": "Everything"}, {"text": "will"}, {"text": "be"}, {"text": "taken"}, {"text": "over"}, {"text": "*-1"}, {"text": "by"}, {"text": "the"}, {"text": "new"}, {"text": "company"}, {"text": ","}, {"text": "''"}, {"text": "said"}, {"text": "*T*-2"}, {"text": "Christian"}, {"text": "Andersson"}, {"text": ","}, {"text": "executive"}, {"text": "vice"}, {"text": "president"}, {"text": "of"}, {"text": "Oy"}, {"text": "Waertsilae"}, {"text": ","}, {"text": "former"}, {"text": "parent"}, {"text": "of"}, {"text": "Waertsilae"}, {"text": "Marine"}, {"text": "."}, {"text": "Once"}, {"text": "its"}, {"text": "ownership"}, {"text": "is"}, {"text": "finalized"}, {"text": "*-1"}, {"text": ","}, {"text": "the"}, {"text": "new"}, {"text": "company"}, {"text": "will"}, {"text": "open"}, {"text": "talks"}, {"text": "*ICH*-3"}, {"text": "with"}, {"text": "state-appointed"}, {"text": "receivers"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "buy"}, {"text": "or"}, {"text": "lease"}, {"text": "Waertsilae"}, {"text": "Marine"}, {"text": "'s"}, {"text": "shipyard"}, {"text": "facilities"}, {"text": "*T*-2"}, {"text": "."}, {"text": "Subcontractors"}, {"text": "will"}, {"text": "be"}, {"text": "offered"}, {"text": "*-1"}, {"text": "a"}, {"text": "settlement"}, {"text": "and"}, {"text": "a"}, {"text": "swift"}, {"text": "transition"}, {"text": "to"}, {"text": "new"}, {"text": "management"}, {"text": "is"}, {"text": "expected"}, {"text": "*-2"}, {"text": "to"}, {"text": "avert"}, {"text": "an"}, {"text": "exodus"}, {"text": "of"}, {"text": "skilled"}, {"text": "workers"}, {"text": "from"}, {"text": "Waertsilae"}, {"text": "Marine"}, {"text": "'s"}, {"text": "two"}, {"text": "big"}, {"text": "shipyards"}, {"text": ","}, {"text": "government"}, {"text": "officials"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-3"}, {"text": "."}, {"text": "Under"}, {"text": "an"}, {"text": "accord"}, {"text": "signed"}, {"text": "*"}, {"text": "yesterday"}, {"text": ","}, {"text": "the"}, {"text": "government"}, {"text": "and"}, {"text": "Union"}, {"text": "Bank"}, {"text": "of"}, {"text": "Finland"}, {"text": "would"}, {"text": "become"}, {"text": "major"}, {"text": "shareholders"}, {"text": "in"}, {"text": "the"}, {"text": "new"}, {"text": "company"}, {"text": ","}, {"text": "each"}, {"text": "injecting"}, {"text": "100"}, {"text": "million"}, {"text": "Finnish"}, {"text": "markkaa"}, {"text": "-LRB-"}, {"text": "$"}, {"text": "23.5"}, {"text": "million"}, {"text": "*U*"}, {"text": "-RRB-"}, {"text": "."}, {"text": "Oy"}, {"text": "Waertsilae"}, {"text": "is"}, {"text": "*-1"}, {"text": "to"}, {"text": "contribute"}, {"text": "200"}, {"text": "million"}, {"text": "markkaa"}, {"text": ","}, {"text": "most"}, {"text": "of"}, {"text": "it"}, {"text": "as"}, {"text": "subordinated"}, {"text": "debt"}, {"text": ","}, {"text": "and"}, {"text": "take"}, {"text": "a"}, {"text": "minority"}, {"text": "stake"}, {"text": "in"}, {"text": "the"}, {"text": "new"}, {"text": "company"}, {"text": "."}, {"text": "Customers"}, {"text": "holding"}, {"text": "contracts"}, {"text": "for"}, {"text": "Waertsilae"}, {"text": "Marine"}, {"text": "'s"}, {"text": "undelivered"}, {"text": "ships"}, {"text": "are"}, {"text": "expected"}, {"text": "*-1"}, {"text": "to"}, {"text": "subscribe"}, {"text": "most"}, {"text": "of"}, {"text": "the"}, {"text": "remaining"}, {"text": "170"}, {"text": "million"}, {"text": "markkaa"}, {"text": "in"}, {"text": "share"}, {"text": "capital"}, {"text": ","}, {"text": "government"}, {"text": "officials"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "."}, {"text": "Waertsilae"}, {"text": "Marine"}, {"text": "'s"}, {"text": "biggest"}, {"text": "creditor"}, {"text": "is"}, {"text": "Miami-based"}, {"text": "Carnival"}, {"text": "Cruise"}, {"text": "Lines"}, {"text": "Inc"}, {"text": "."}, {"text": "Carnival"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "has"}, {"text": "three"}, {"text": "ships"}, {"text": "on"}, {"text": "order"}, {"text": "from"}, {"text": "Waertsilae"}, {"text": "Marine"}, {"text": ","}, {"text": "presented"}, {"text": "claims"}, {"text": "for"}, {"text": "$"}, {"text": "1.5"}, {"text": "billion"}, {"text": "*U*"}, {"text": "damages"}, {"text": "in"}, {"text": "the"}, {"text": "bankruptcy"}, {"text": "court"}, {"text": "this"}, {"text": "week"}, {"text": "."}, {"text": "Waertsilae"}, {"text": "Marine"}, {"text": "'s"}, {"text": "bankruptcy"}, {"text": "proceedings"}, {"text": "began"}, {"text": "Tuesday"}, {"text": "in"}, {"text": "a"}, {"text": "Helsinki"}, {"text": "court"}, {"text": "."}, {"text": "Its"}, {"text": "plans"}, {"text": "*"}, {"text": "to"}, {"text": "be"}, {"text": "acquired"}, {"text": "*-1"}, {"text": "dashed"}, {"text": "*-2"}, {"text": ","}, {"text": "Comprehensive"}, {"text": "Care"}, {"text": "Corp."}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "plans"}, {"text": "*-3"}, {"text": "to"}, {"text": "sell"}, {"text": "most"}, {"text": "of"}, {"text": "its"}, {"text": "psychiatric"}, {"text": "and"}, {"text": "drug"}, {"text": "abuse"}, {"text": "facilities"}, {"text": "in"}, {"text": "California"}, {"text": "and"}, {"text": "some"}, {"text": "other"}, {"text": "assets"}, {"text": "*-3"}, {"text": "to"}, {"text": "pay"}, {"text": "its"}, {"text": "debt"}, {"text": "and"}, {"text": "provide"}, {"text": "working"}, {"text": "capital"}, {"text": "."}, {"text": "In"}, {"text": "all"}, {"text": ","}, {"text": "the"}, {"text": "company"}, {"text": "hopes"}, {"text": "*-2"}, {"text": "to"}, {"text": "repay"}, {"text": "$"}, {"text": "45"}, {"text": "million"}, {"text": "*U*"}, {"text": "in"}, {"text": "debt"}, {"text": "through"}, {"text": "the"}, {"text": "sales"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "will"}, {"text": "completely"}, {"text": "discharge"}, {"text": "its"}, {"text": "secured"}, {"text": "debt"}, {"text": ","}, {"text": "the"}, {"text": "company"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-3"}, {"text": "."}, {"text": "In"}, {"text": "addition"}, {"text": ","}, {"text": "the"}, {"text": "company"}, {"text": "has"}, {"text": "replaced"}, {"text": "its"}, {"text": "president"}, {"text": "and"}, {"text": "chief"}, {"text": "executive"}, {"text": ","}, {"text": "*-1"}, {"text": "naming"}, {"text": "W."}, {"text": "James"}, {"text": "Nichol"}, {"text": ","}, {"text": "head"}, {"text": "of"}, {"text": "the"}, {"text": "company"}, {"text": "'s"}, {"text": "contract"}, {"text": "health"}, {"text": "services"}, {"text": ","}, {"text": "to"}, {"text": "succeed"}, {"text": "B."}, {"text": "Lee"}, {"text": "Karns"}, {"text": "."}, {"text": "Mr."}, {"text": "Nichol"}, {"text": "said"}, {"text": "0"}, {"text": "he"}, {"text": "was"}, {"text": "``"}, {"text": "extremely"}, {"text": "disappointed"}, {"text": "in"}, {"text": "the"}, {"text": "continuing"}, {"text": "deterioration"}, {"text": "of"}, {"text": "the"}, {"text": "company"}, {"text": "'s"}, {"text": "operations"}, {"text": "while"}, {"text": "it"}, {"text": "attempted"}, {"text": "*-1"}, {"text": "to"}, {"text": "conclude"}, {"text": "the"}, {"text": "reorganization"}, {"text": "during"}, {"text": "the"}, {"text": "past"}, {"text": "four"}, {"text": "months"}, {"text": "."}, {"text": "''"}, {"text": "Concurrent"}, {"text": "with"}, {"text": "Mr."}, {"text": "Nichol"}, {"text": "'s"}, {"text": "appointment"}, {"text": ","}, {"text": "Comprehensive"}, {"text": "Care"}, {"text": "moved"}, {"text": "its"}, {"text": "corporate"}, {"text": "headquarters"}, {"text": "from"}, {"text": "Irvine"}, {"text": ","}, {"text": "Calif."}, {"text": ","}, {"text": "to"}, {"text": "St."}, {"text": "Louis"}, {"text": ","}, {"text": "where"}, {"text": "the"}, {"text": "company"}, {"text": "maintained"}, {"text": "its"}, {"text": "contract"}, {"text": "services"}, {"text": "offices"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Mr."}, {"text": "Karns"}, {"text": "continues"}, {"text": "as"}, {"text": "chairman"}, {"text": "."}, {"text": "Comprehensive"}, {"text": "Care"}, {"text": "had"}, {"text": "agreed"}, {"text": "*-2"}, {"text": "to"}, {"text": "be"}, {"text": "acquired"}, {"text": "*-1"}, {"text": "by"}, {"text": "closely"}, {"text": "held"}, {"text": "First"}, {"text": "Hospital"}, {"text": "Corp."}, {"text": "of"}, {"text": "Norfolk"}, {"text": ","}, {"text": "Va."}, {"text": ","}, {"text": "but"}, {"text": "the"}, {"text": "sale"}, {"text": "sputtered"}, {"text": "almost"}, {"text": "from"}, {"text": "the"}, {"text": "beginning"}, {"text": "and"}, {"text": "finally"}, {"text": "collapsed"}, {"text": "last"}, {"text": "week"}, {"text": "."}, {"text": "In"}, {"text": "composite"}, {"text": "trading"}, {"text": "on"}, {"text": "the"}, {"text": "New"}, {"text": "York"}, {"text": "Stock"}, {"text": "Exchange"}, {"text": "yesterday"}, {"text": ","}, {"text": "Comprehensive"}, {"text": "Care"}, {"text": "closed"}, {"text": "at"}, {"text": "$"}, {"text": "3.75"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": ","}, {"text": "up"}, {"text": "12.5"}, {"text": "cents"}, {"text": "."}, {"text": "Ralston"}, {"text": "Purina"}, {"text": "Co."}, {"text": "reported"}, {"text": "a"}, {"text": "47"}, {"text": "%"}, {"text": "decline"}, {"text": "in"}, {"text": "fourth-quarter"}, {"text": "earnings"}, {"text": ","}, {"text": "*"}, {"text": "reflecting"}, {"text": "restructuring"}, {"text": "costs"}, {"text": "as"}, {"text": "well"}, {"text": "as"}, {"text": "a"}, {"text": "more"}, {"text": "difficult"}, {"text": "pet"}, {"text": "food"}, {"text": "market"}, {"text": "."}, {"text": "The"}, {"text": "St."}, {"text": "Louis"}, {"text": "company"}, {"text": "earned"}, {"text": "$"}, {"text": "45.2"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "65"}, {"text": "cents"}, {"text": "a"}, {"text": "share"}, {"text": ","}, {"text": "compared"}, {"text": "with"}, {"text": "$"}, {"text": "84.9"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "$"}, {"text": "1.24"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": ","}, {"text": "a"}, {"text": "year"}, {"text": "earlier"}, {"text": "."}, {"text": "Sales"}, {"text": "in"}, {"text": "the"}, {"text": "latest"}, {"text": "period"}, {"text": "were"}, {"text": "$"}, {"text": "1.76"}, {"text": "billion"}, {"text": "*U*"}, {"text": ","}, {"text": "a"}, {"text": "13"}, {"text": "%"}, {"text": "increase"}, {"text": "from"}, {"text": "last"}, {"text": "year"}, {"text": "'s"}, {"text": "$"}, {"text": "1.55"}, {"text": "billion"}, {"text": "*U*"}, {"text": "."}, {"text": "For"}, {"text": "the"}, {"text": "year"}, {"text": "ended"}, {"text": "Sept."}, {"text": "30"}, {"text": ","}, {"text": "Ralston"}, {"text": "earned"}, {"text": "$"}, {"text": "422.5"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "$"}, {"text": "6.44"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": ","}, {"text": "up"}, {"text": "8.9"}, {"text": "%"}, {"text": "from"}, {"text": "$"}, {"text": "387.8"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "$"}, {"text": "5.63"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": "."}, {"text": "This"}, {"text": "year"}, {"text": "'s"}, {"text": "results"}, {"text": "included"}, {"text": "a"}, {"text": "gain"}, {"text": "of"}, {"text": "$"}, {"text": "70.2"}, {"text": "million"}, {"text": "*U*"}, {"text": "on"}, {"text": "the"}, {"text": "disposal"}, {"text": "of"}, {"text": "seafood"}, {"text": "operations"}, {"text": "."}, {"text": "Sales"}, {"text": "for"}, {"text": "the"}, {"text": "full"}, {"text": "year"}, {"text": "were"}, {"text": "$"}, {"text": "6.6"}, {"text": "billion"}, {"text": "*U*"}, {"text": ","}, {"text": "up"}, {"text": "13"}, {"text": "%"}, {"text": "from"}, {"text": "$"}, {"text": "5.8"}, {"text": "billion"}, {"text": "*U*"}, {"text": "."}, {"text": "Ralston"}, {"text": "said"}, {"text": "0"}, {"text": "its"}, {"text": "restructuring"}, {"text": "costs"}, {"text": "include"}, {"text": "the"}, {"text": "phase-out"}, {"text": "of"}, {"text": "a"}, {"text": "battery"}, {"text": "facility"}, {"text": "in"}, {"text": "Greenville"}, {"text": ","}, {"text": "N.C."}, {"text": ","}, {"text": "the"}, {"text": "recent"}, {"text": "closing"}, {"text": "of"}, {"text": "a"}, {"text": "Hostess"}, {"text": "cake"}, {"text": "bakery"}, {"text": "in"}, {"text": "Cincinnati"}, {"text": "and"}, {"text": "a"}, {"text": "reduction"}, {"text": "in"}, {"text": "staff"}, {"text": "throughout"}, {"text": "the"}, {"text": "company"}, {"text": "."}, {"text": "The"}, {"text": "battery"}, {"text": "plant"}, {"text": ","}, {"text": "which"}, {"text": "*T*-2"}, {"text": "makes"}, {"text": "rechargeable"}, {"text": "nickel"}, {"text": "cadmium"}, {"text": "and"}, {"text": "carbon"}, {"text": "zinc"}, {"text": "products"}, {"text": ","}, {"text": "will"}, {"text": "be"}, {"text": "closed"}, {"text": "*-1"}, {"text": "over"}, {"text": "the"}, {"text": "next"}, {"text": "year"}, {"text": "or"}, {"text": "so"}, {"text": ","}, {"text": "a"}, {"text": "spokesman"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-3"}, {"text": "."}, {"text": "Ralston"}, {"text": "attributed"}, {"text": "its"}, {"text": "fourth-quarter"}, {"text": "slump"}, {"text": "partly"}, {"text": "to"}, {"text": "higher"}, {"text": "costs"}, {"text": "of"}, {"text": "ingredients"}, {"text": "in"}, {"text": "the"}, {"text": "pet"}, {"text": "food"}, {"text": "business"}, {"text": "as"}, {"text": "well"}, {"text": "as"}, {"text": "competitive"}, {"text": "pressures"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "required"}, {"text": "higher"}, {"text": "advertising"}, {"text": "spending"}, {"text": "."}, {"text": "For"}, {"text": "the"}, {"text": "year"}, {"text": ","}, {"text": "pet"}, {"text": "food"}, {"text": "volume"}, {"text": "was"}, {"text": "flat"}, {"text": ","}, {"text": "the"}, {"text": "company"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Its"}, {"text": "cereal"}, {"text": "division"}, {"text": "realized"}, {"text": "higher"}, {"text": "operating"}, {"text": "profit"}, {"text": "on"}, {"text": "volume"}, {"text": "increases"}, {"text": ","}, {"text": "but"}, {"text": "also"}, {"text": "spent"}, {"text": "more"}, {"text": "on"}, {"text": "promotion"}, {"text": "."}, {"text": "The"}, {"text": "Continental"}, {"text": "Baking"}, {"text": "business"}, {"text": "benefited"}, {"text": "from"}, {"text": "higher"}, {"text": "margins"}, {"text": "on"}, {"text": "bread"}, {"text": "and"}, {"text": "on"}, {"text": "increased"}, {"text": "cake"}, {"text": "sales"}, {"text": ","}, {"text": "it"}, {"text": "added"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Ralston"}, {"text": "said"}, {"text": "0"}, {"text": "its"}, {"text": "Eveready"}, {"text": "battery"}, {"text": "unit"}, {"text": "was"}, {"text": "hurt"}, {"text": "*-1"}, {"text": "by"}, {"text": "continuing"}, {"text": "economic"}, {"text": "problems"}, {"text": "in"}, {"text": "South"}, {"text": "America"}, {"text": "."}, {"text": "Ralston"}, {"text": "shares"}, {"text": "closed"}, {"text": "yesterday"}, {"text": "at"}, {"text": "$"}, {"text": "80.50"}, {"text": "*U*"}, {"text": ","}, {"text": "off"}, {"text": "$"}, {"text": "1"}, {"text": "*U*"}, {"text": ","}, {"text": "in"}, {"text": "New"}, {"text": "York"}, {"text": "Stock"}, {"text": "Exchange"}, {"text": "composite"}, {"text": "trading"}, {"text": "."}, {"text": "Companies"}, {"text": "listed"}, {"text": "*"}, {"text": "below"}, {"text": "reported"}, {"text": "quarterly"}, {"text": "profit"}, {"text": "substantially"}, {"text": "different"}, {"text": "from"}, {"text": "the"}, {"text": "average"}, {"text": "of"}, {"text": "analysts"}, {"text": "'"}, {"text": "estimates"}, {"text": "."}, {"text": "The"}, {"text": "companies"}, {"text": "are"}, {"text": "followed"}, {"text": "*-1"}, {"text": "by"}, {"text": "at"}, {"text": "least"}, {"text": "three"}, {"text": "analysts"}, {"text": ","}, {"text": "and"}, {"text": "had"}, {"text": "a"}, {"text": "minimum"}, {"text": "five-cent"}, {"text": "change"}, {"text": "in"}, {"text": "actual"}, {"text": "earnings"}, {"text": "per"}, {"text": "share"}, {"text": "."}, {"text": "Estimated"}, {"text": "and"}, {"text": "actual"}, {"text": "results"}, {"text": "involving"}, {"text": "losses"}, {"text": "are"}, {"text": "omitted"}, {"text": "*-1"}, {"text": "."}, {"text": "The"}, {"text": "percent"}, {"text": "difference"}, {"text": "compares"}, {"text": "actual"}, {"text": "profit"}, {"text": "with"}, {"text": "the"}, {"text": "30-day"}, {"text": "estimate"}, {"text": "where"}, {"text": "at"}, {"text": "least"}, {"text": "three"}, {"text": "analysts"}, {"text": "have"}, {"text": "issues"}, {"text": "forecasts"}, {"text": "in"}, {"text": "the"}, {"text": "past"}, {"text": "30"}, {"text": "days"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Otherwise"}, {"text": ","}, {"text": "actual"}, {"text": "profit"}, {"text": "is"}, {"text": "compared"}, {"text": "*-1"}, {"text": "with"}, {"text": "the"}, {"text": "300-day"}, {"text": "estimate"}, {"text": "."}, {"text": "First"}, {"text": "Chicago"}, {"text": "Corp."}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "completed"}, {"text": "its"}, {"text": "$"}, {"text": "55.1"}, {"text": "million"}, {"text": "*U*"}, {"text": "cash-and-stock"}, {"text": "acquisition"}, {"text": "of"}, {"text": "closely"}, {"text": "held"}, {"text": "Ravenswood"}, {"text": "Financial"}, {"text": "Corp."}, {"text": ","}, {"text": "another"}, {"text": "Chicago"}, {"text": "bank"}, {"text": "holding"}, {"text": "company"}, {"text": "."}, {"text": "The"}, {"text": "record"}, {"text": "corn-buying"}, {"text": "binge"}, {"text": "by"}, {"text": "the"}, {"text": "Soviet"}, {"text": "Union"}, {"text": "is"}, {"text": "causing"}, {"text": "serious"}, {"text": "bottlenecks"}, {"text": "in"}, {"text": "the"}, {"text": "U.S."}, {"text": "grain"}, {"text": "pipeline"}, {"text": "."}, {"text": "The"}, {"text": "Soviet"}, {"text": "purchases"}, {"text": "are"}, {"text": "so"}, {"text": "massive"}, {"text": "that"}, {"text": "exporters"}, {"text": "are"}, {"text": "struggling"}, {"text": "*-1"}, {"text": "to"}, {"text": "find"}, {"text": "enough"}, {"text": "river"}, {"text": "barges"}, {"text": "and"}, {"text": "trains"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "to"}, {"text": "move"}, {"text": "the"}, {"text": "recently"}, {"text": "harvested"}, {"text": "Midwest"}, {"text": "crop"}, {"text": "to"}, {"text": "ports"}, {"text": "for"}, {"text": "*"}, {"text": "loading"}, {"text": "onto"}, {"text": "Soviet"}, {"text": "ships"}, {"text": "."}, {"text": "River"}, {"text": "barge"}, {"text": "rates"}, {"text": "have"}, {"text": "soared"}, {"text": "40"}, {"text": "%"}, {"text": "this"}, {"text": "fall"}, {"text": "from"}, {"text": "a"}, {"text": "year"}, {"text": "earlier"}, {"text": "."}, {"text": "Railroad"}, {"text": "companies"}, {"text": "and"}, {"text": "some"}, {"text": "ports"}, {"text": "are"}, {"text": "reaping"}, {"text": "a"}, {"text": "sudden"}, {"text": "windfall"}, {"text": "of"}, {"text": "business"}, {"text": "."}, {"text": "And"}, {"text": "some"}, {"text": "grain"}, {"text": "analysts"}, {"text": "are"}, {"text": "predicting"}, {"text": "that"}, {"text": "corn"}, {"text": "prices"}, {"text": "might"}, {"text": "gyrate"}, {"text": "this"}, {"text": "month"}, {"text": "as"}, {"text": "exporters"}, {"text": "scrounge"}, {"text": "*-1"}, {"text": "to"}, {"text": "find"}, {"text": "enough"}, {"text": "of"}, {"text": "the"}, {"text": "crop"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "to"}, {"text": "meet"}, {"text": "their"}, {"text": "obligations"}, {"text": "to"}, {"text": "the"}, {"text": "Soviets"}, {"text": "."}, {"text": "The"}, {"text": "Soviet"}, {"text": "Union"}, {"text": "bought"}, {"text": "roughly"}, {"text": "310"}, {"text": "million"}, {"text": "bushels"}, {"text": "of"}, {"text": "U.S."}, {"text": "corn"}, {"text": "*ICH*-2"}, {"text": "in"}, {"text": "October"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "is"}, {"text": "the"}, {"text": "most"}, {"text": "ever"}, {"text": "sold"}, {"text": "*"}, {"text": "to"}, {"text": "the"}, {"text": "Soviet"}, {"text": "Union"}, {"text": "in"}, {"text": "one"}, {"text": "month"}, {"text": "from"}, {"text": "the"}, {"text": "U.S."}, {"text": "."}, {"text": "The"}, {"text": "Soviet"}, {"text": "Union"}, {"text": "wants"}, {"text": "much"}, {"text": "of"}, {"text": "it"}, {"text": "delivered"}, {"text": "*-2"}, {"text": "by"}, {"text": "January"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "would"}, {"text": "be"}, {"text": "a"}, {"text": "strain"}, {"text": "in"}, {"text": "most"}, {"text": "years"}, {"text": "."}, {"text": "But"}, {"text": "it"}, {"text": "is"}, {"text": "particularly"}, {"text": "difficult"}, {"text": "this"}, {"text": "autumn"}, {"text": "because"}, {"text": "of"}, {"text": "low"}, {"text": "water"}, {"text": "levels"}, {"text": "on"}, {"text": "the"}, {"text": "Mississippi"}, {"text": "River"}, {"text": ","}, {"text": "on"}, {"text": "which"}, {"text": "flows"}, {"text": "*T*-1"}, {"text": "much"}, {"text": "of"}, {"text": "the"}, {"text": "U.S."}, {"text": "corn"}, {"text": "that"}, {"text": "*T*-3"}, {"text": "is"}, {"text": "shipped"}, {"text": "*-2"}, {"text": "overseas"}, {"text": "."}, {"text": "``"}, {"text": "We"}, {"text": "are"}, {"text": "shipping"}, {"text": "the"}, {"text": "most"}, {"text": "corn"}, {"text": "in"}, {"text": "that"}, {"text": "short"}, {"text": "of"}, {"text": "time"}, {"text": "period"}, {"text": "to"}, {"text": "one"}, {"text": "customer"}, {"text": "on"}, {"text": "record"}, {"text": ","}, {"text": "''"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "William"}, {"text": "Dunton"}, {"text": ","}, {"text": "a"}, {"text": "U.S."}, {"text": "Agriculture"}, {"text": "Department"}, {"text": "transportation"}, {"text": "expert"}, {"text": "."}, {"text": "``"}, {"text": "It"}, {"text": "is"}, {"text": "going"}, {"text": "*-1"}, {"text": "to"}, {"text": "be"}, {"text": "real"}, {"text": "tight"}, {"text": "."}, {"text": "''"}, {"text": "Because"}, {"text": "of"}, {"text": "persistent"}, {"text": "dry"}, {"text": "weather"}, {"text": "in"}, {"text": "the"}, {"text": "northern"}, {"text": "Plains"}, {"text": ","}, {"text": "the"}, {"text": "water"}, {"text": "level"}, {"text": "on"}, {"text": "the"}, {"text": "upper"}, {"text": "section"}, {"text": "of"}, {"text": "the"}, {"text": "Mississippi"}, {"text": "River"}, {"text": "is"}, {"text": "so"}, {"text": "low"}, {"text": "that"}, {"text": "many"}, {"text": "river"}, {"text": "operators"}, {"text": "are"}, {"text": "already"}, {"text": "trimming"}, {"text": "the"}, {"text": "number"}, {"text": "of"}, {"text": "barges"}, {"text": "0"}, {"text": "their"}, {"text": "tows"}, {"text": "push"}, {"text": "*T*-1"}, {"text": "at"}, {"text": "one"}, {"text": "time"}, {"text": "."}, {"text": "In"}, {"text": "a"}, {"text": "few"}, {"text": "weeks"}, {"text": ","}, {"text": "many"}, {"text": "barges"}, {"text": "probably"}, {"text": "wo"}, {"text": "n't"}, {"text": "be"}, {"text": "able"}, {"text": "*-2"}, {"text": "to"}, {"text": "operate"}, {"text": "fully"}, {"text": "loaded"}, {"text": "south"}, {"text": "of"}, {"text": "St."}, {"text": "Louis"}, {"text": "because"}, {"text": "the"}, {"text": "U.S."}, {"text": "Army"}, {"text": "Corps"}, {"text": "of"}, {"text": "Engineers"}, {"text": "is"}, {"text": "beginning"}, {"text": "*-3"}, {"text": "to"}, {"text": "reduce"}, {"text": "the"}, {"text": "flow"}, {"text": "of"}, {"text": "the"}, {"text": "Missouri"}, {"text": "River"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "feeds"}, {"text": "into"}, {"text": "the"}, {"text": "Mississippi"}, {"text": "River"}, {"text": "."}, {"text": "The"}, {"text": "Army"}, {"text": "Corps"}, {"text": "is"}, {"text": "cutting"}, {"text": "the"}, {"text": "flow"}, {"text": "of"}, {"text": "the"}, {"text": "Missouri"}, {"text": "River"}, {"text": "about"}, {"text": "two"}, {"text": "weeks"}, {"text": "earlier"}, {"text": "than"}, {"text": "normal"}, {"text": "because"}, {"text": "of"}, {"text": "low"}, {"text": "water"}, {"text": "levels"}, {"text": "in"}, {"text": "the"}, {"text": "reservoirs"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "feed"}, {"text": "it"}, {"text": "."}, {"text": "Barge"}, {"text": "rates"}, {"text": "on"}, {"text": "the"}, {"text": "Mississippi"}, {"text": "River"}, {"text": "sank"}, {"text": "yesterday"}, {"text": "on"}, {"text": "speculation"}, {"text": "that"}, {"text": "widespread"}, {"text": "rain"}, {"text": "*ICH*-3"}, {"text": "this"}, {"text": "week"}, {"text": "in"}, {"text": "the"}, {"text": "Midwest"}, {"text": "might"}, {"text": "temporarily"}, {"text": "alleviate"}, {"text": "the"}, {"text": "situation"}, {"text": "."}, {"text": "But"}, {"text": "the"}, {"text": "Army"}, {"text": "Corps"}, {"text": "of"}, {"text": "Engineers"}, {"text": "expects"}, {"text": "the"}, {"text": "river"}, {"text": "level"}, {"text": "to"}, {"text": "continue"}, {"text": "*-1"}, {"text": "falling"}, {"text": "this"}, {"text": "month"}, {"text": "."}, {"text": "At"}, {"text": "St."}, {"text": "Louis"}, {"text": ","}, {"text": "the"}, {"text": "water"}, {"text": "level"}, {"text": "of"}, {"text": "the"}, {"text": "Mississippi"}, {"text": "River"}, {"text": "is"}, {"text": "already"}, {"text": "6.5"}, {"text": "feet"}, {"text": "below"}, {"text": "normal"}, {"text": "and"}, {"text": "it"}, {"text": "could"}, {"text": "drop"}, {"text": "an"}, {"text": "additional"}, {"text": "2.5"}, {"text": "feet"}, {"text": "when"}, {"text": "the"}, {"text": "flow"}, {"text": "of"}, {"text": "the"}, {"text": "Missouri"}, {"text": "River"}, {"text": "is"}, {"text": "slowed"}, {"text": "*-1"}, {"text": "*T*-2"}, {"text": ","}, {"text": "an"}, {"text": "Army"}, {"text": "Corps"}, {"text": "spokesman"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-3"}, {"text": "."}, {"text": "Similar"}, {"text": "levels"}, {"text": "hamstrung"}, {"text": "barge"}, {"text": "shipments"}, {"text": "last"}, {"text": "year"}, {"text": "in"}, {"text": "the"}, {"text": "wake"}, {"text": "of"}, {"text": "the"}, {"text": "worst"}, {"text": "drought"}, {"text": "in"}, {"text": "50"}, {"text": "years"}, {"text": "."}, {"text": "So"}, {"text": "far"}, {"text": ","}, {"text": "the"}, {"text": "grain"}, {"text": "industry"}, {"text": "'s"}, {"text": "budding"}, {"text": "logistical"}, {"text": "problems"}, {"text": "have"}, {"text": "n't"}, {"text": "been"}, {"text": "a"}, {"text": "major"}, {"text": "factor"}, {"text": "in"}, {"text": "the"}, {"text": "trading"}, {"text": "of"}, {"text": "corn"}, {"text": "contracts"}, {"text": "at"}, {"text": "the"}, {"text": "Chicago"}, {"text": "Board"}, {"text": "of"}, {"text": "Trade"}, {"text": "."}, {"text": "Many"}, {"text": "grain"}, {"text": "processors"}, {"text": "and"}, {"text": "exporters"}, {"text": "use"}, {"text": "the"}, {"text": "price"}, {"text": "of"}, {"text": "the"}, {"text": "corn"}, {"text": "futures"}, {"text": "contracts"}, {"text": "traded"}, {"text": "*"}, {"text": "there"}, {"text": "*-1"}, {"text": "to"}, {"text": "calculate"}, {"text": "the"}, {"text": "price"}, {"text": "0"}, {"text": "they"}, {"text": "offer"}, {"text": "*T*-2"}, {"text": "*-3"}, {"text": "to"}, {"text": "buy"}, {"text": "corn"}, {"text": "from"}, {"text": "farmers"}, {"text": "."}, {"text": "At"}, {"text": "the"}, {"text": "Board"}, {"text": "of"}, {"text": "Trade"}, {"text": "yesterday"}, {"text": "the"}, {"text": "price"}, {"text": "of"}, {"text": "the"}, {"text": "corn"}, {"text": "contract"}, {"text": "for"}, {"text": "December"}, {"text": "delivery"}, {"text": "slipped"}, {"text": "3.5"}, {"text": "cents"}, {"text": "a"}, {"text": "bushel"}, {"text": "*-1"}, {"text": "to"}, {"text": "settle"}, {"text": "at"}, {"text": "$"}, {"text": "2.375"}, {"text": "*U*"}, {"text": "a"}, {"text": "bushel"}, {"text": "."}, {"text": "Corn"}, {"text": "prices"}, {"text": "have"}, {"text": "been"}, {"text": "sluggish"}, {"text": "this"}, {"text": "fall"}, {"text": "despite"}, {"text": "the"}, {"text": "huge"}, {"text": "Soviet"}, {"text": "orders"}, {"text": "because"}, {"text": "the"}, {"text": "harvest"}, {"text": "has"}, {"text": "allowed"}, {"text": "farmers"}, {"text": "to"}, {"text": "rebuild"}, {"text": "the"}, {"text": "stockpiles"}, {"text": "depleted"}, {"text": "*"}, {"text": "by"}, {"text": "the"}, {"text": "1988"}, {"text": "drought"}, {"text": "."}, {"text": "With"}, {"text": "the"}, {"text": "harvest"}, {"text": "winding"}, {"text": "down"}, {"text": ","}, {"text": "however"}, {"text": ","}, {"text": "some"}, {"text": "analysts"}, {"text": "are"}, {"text": "speculating"}, {"text": "that"}, {"text": "prices"}, {"text": "might"}, {"text": "jump"}, {"text": "in"}, {"text": "some"}, {"text": "regions"}, {"text": "as"}, {"text": "U.S."}, {"text": "exporters"}, {"text": "try"}, {"text": "*-1"}, {"text": "to"}, {"text": "gather"}, {"text": "the"}, {"text": "corn"}, {"text": "0"}, {"text": "they"}, {"text": "are"}, {"text": "obligated"}, {"text": "*-3"}, {"text": "to"}, {"text": "deliver"}, {"text": "*T*-2"}, {"text": "."}, {"text": "Farmers"}, {"text": "are"}, {"text": "in"}, {"text": "the"}, {"text": "best"}, {"text": "position"}, {"text": "of"}, {"text": "many"}, {"text": "years"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "push"}, {"text": "up"}, {"text": "corn"}, {"text": "prices"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Because"}, {"text": "the"}, {"text": "drought"}, {"text": "reduced"}, {"text": "U.S."}, {"text": "stockpiles"}, {"text": ","}, {"text": "they"}, {"text": "have"}, {"text": "more"}, {"text": "than"}, {"text": "enough"}, {"text": "storage"}, {"text": "space"}, {"text": "for"}, {"text": "their"}, {"text": "new"}, {"text": "crop"}, {"text": ","}, {"text": "and"}, {"text": "that"}, {"text": "permits"}, {"text": "them"}, {"text": "to"}, {"text": "wait"}, {"text": "for"}, {"text": "prices"}, {"text": "to"}, {"text": "rise"}, {"text": "."}, {"text": "In"}, {"text": "parts"}, {"text": "of"}, {"text": "Iowa"}, {"text": ","}, {"text": "for"}, {"text": "example"}, {"text": ","}, {"text": "some"}, {"text": "grain"}, {"text": "elevators"}, {"text": "are"}, {"text": "offering"}, {"text": "farmers"}, {"text": "$"}, {"text": "2.15"}, {"text": "*U*"}, {"text": "a"}, {"text": "bushel"}, {"text": "for"}, {"text": "corn"}, {"text": "."}, {"text": "Many"}, {"text": "farmers"}, {"text": "probably"}, {"text": "would"}, {"text": "n't"}, {"text": "sell"}, {"text": "until"}, {"text": "prices"}, {"text": "rose"}, {"text": "at"}, {"text": "least"}, {"text": "20"}, {"text": "cents"}, {"text": "a"}, {"text": "bushel"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "Lyle"}, {"text": "Reed"}, {"text": ","}, {"text": "president"}, {"text": "of"}, {"text": "Chicago"}, {"text": "Central"}, {"text": "&"}, {"text": "Pacific"}, {"text": "Railroad"}, {"text": "Co."}, {"text": "of"}, {"text": "Waterloo"}, {"text": ","}, {"text": "Iowa"}, {"text": "."}, {"text": "It"}, {"text": "*EXP*-1"}, {"text": "is"}, {"text": "n't"}, {"text": "clear"}, {"text": ","}, {"text": "however"}, {"text": ","}, {"text": "who"}, {"text": "*T*-2"}, {"text": "would"}, {"text": "win"}, {"text": "a"}, {"text": "waiting"}, {"text": "game"}, {"text": "."}, {"text": "Although"}, {"text": "U.S."}, {"text": "corn"}, {"text": "stockpiles"}, {"text": "shrank"}, {"text": "by"}, {"text": "roughly"}, {"text": "half"}, {"text": "in"}, {"text": "the"}, {"text": "wake"}, {"text": "of"}, {"text": "the"}, {"text": "drought"}, {"text": ","}, {"text": "the"}, {"text": "Agriculture"}, {"text": "Department"}, {"text": "projects"}, {"text": "that"}, {"text": "nearly"}, {"text": "one-fifth"}, {"text": "of"}, {"text": "the"}, {"text": "harvest"}, {"text": "will"}, {"text": "still"}, {"text": "be"}, {"text": "in"}, {"text": "storage"}, {"text": "before"}, {"text": "the"}, {"text": "1990"}, {"text": "corn"}, {"text": "harvest"}, {"text": "begins"}, {"text": "."}, {"text": "Some"}, {"text": "analysts"}, {"text": "are"}, {"text": "worried"}, {"text": "that"}, {"text": "reports"}, {"text": "of"}, {"text": "the"}, {"text": "grain"}, {"text": "industry"}, {"text": "'s"}, {"text": "problems"}, {"text": "might"}, {"text": "spark"}, {"text": "investors"}, {"text": "to"}, {"text": "begin"}, {"text": "*-1"}, {"text": "buying"}, {"text": "corn"}, {"text": "futures"}, {"text": "contracts"}, {"text": "--"}, {"text": "*-2"}, {"text": "only"}, {"text": "to"}, {"text": "see"}, {"text": "little"}, {"text": "appreciation"}, {"text": "."}, {"text": "``"}, {"text": "The"}, {"text": "public"}, {"text": "is"}, {"text": "buying"}, {"text": "the"}, {"text": "market"}, {"text": "when"}, {"text": "in"}, {"text": "reality"}, {"text": "there"}, {"text": "is"}, {"text": "plenty"}, {"text": "of"}, {"text": "grain"}, {"text": "0"}, {"text": "*T*-3"}, {"text": "to"}, {"text": "be"}, {"text": "shipped"}, {"text": "*-1"}, {"text": "*T*-2"}, {"text": ","}, {"text": "''"}, {"text": "said"}, {"text": "*T*-4"}, {"text": "Bill"}, {"text": "Biedermann"}, {"text": ","}, {"text": "Allendale"}, {"text": "Inc."}, {"text": "research"}, {"text": "director"}, {"text": "."}, {"text": "Although"}, {"text": "much"}, {"text": "of"}, {"text": "this"}, {"text": "country"}, {"text": "'s"}, {"text": "export"}, {"text": "corn"}, {"text": "goes"}, {"text": "to"}, {"text": "New"}, {"text": "Orleans"}, {"text": "by"}, {"text": "barge"}, {"text": ","}, {"text": "it"}, {"text": "*EXP*-1"}, {"text": "is"}, {"text": "possible"}, {"text": "for"}, {"text": "exporters"}, {"text": "to"}, {"text": "sidestep"}, {"text": "the"}, {"text": "Mississippi"}, {"text": "River"}, {"text": "by"}, {"text": "*-2"}, {"text": "shipping"}, {"text": "a"}, {"text": "larger-than-normal"}, {"text": "amount"}, {"text": "of"}, {"text": "corn"}, {"text": "by"}, {"text": "train"}, {"text": "to"}, {"text": "the"}, {"text": "port"}, {"text": "."}, {"text": "Ports"}, {"text": "in"}, {"text": "the"}, {"text": "Great"}, {"text": "Lakes"}, {"text": "and"}, {"text": "Atlantic"}, {"text": "Coast"}, {"text": "can"}, {"text": "also"}, {"text": "relieve"}, {"text": "pressure"}, {"text": "on"}, {"text": "New"}, {"text": "Orleans"}, {"text": "."}, {"text": "One"}, {"text": "railroad"}, {"text": ","}, {"text": "for"}, {"text": "example"}, {"text": ","}, {"text": "is"}, {"text": "already"}, {"text": "increasing"}, {"text": "its"}, {"text": "grain"}, {"text": "hauling"}, {"text": "service"}, {"text": "from"}, {"text": "Indiana"}, {"text": "to"}, {"text": "Baltimore"}, {"text": "."}, {"text": "And"}, {"text": "it"}, {"text": "*EXP*-2"}, {"text": "is"}, {"text": "n't"}, {"text": "clear"}, {"text": "that"}, {"text": "the"}, {"text": "Soviet"}, {"text": "Union"}, {"text": "will"}, {"text": "stay"}, {"text": "on"}, {"text": "its"}, {"text": "record"}, {"text": "buying"}, {"text": "pace"}, {"text": "."}, {"text": "The"}, {"text": "Soviet"}, {"text": "orders"}, {"text": "were"}, {"text": "compressed"}, {"text": "*-1"}, {"text": "into"}, {"text": "the"}, {"text": "month"}, {"text": "of"}, {"text": "October"}, {"text": "because"}, {"text": "of"}, {"text": "delays"}, {"text": "."}, {"text": "The"}, {"text": "Soviet"}, {"text": "Union"}, {"text": "usually"}, {"text": "begins"}, {"text": "*-1"}, {"text": "buying"}, {"text": "U.S."}, {"text": "crops"}, {"text": "earlier"}, {"text": "in"}, {"text": "the"}, {"text": "fall"}, {"text": "."}, {"text": "But"}, {"text": "its"}, {"text": "purchases"}, {"text": "apparently"}, {"text": "were"}, {"text": "delayed"}, {"text": "*-1"}, {"text": "by"}, {"text": "a"}, {"text": "reorganization"}, {"text": "of"}, {"text": "its"}, {"text": "agricultural"}, {"text": "bureaucracy"}, {"text": "as"}, {"text": "well"}, {"text": "as"}, {"text": "budget"}, {"text": "problems"}, {"text": "."}, {"text": "In"}, {"text": "other"}, {"text": "commodity"}, {"text": "markets"}, {"text": "yesterday"}, {"text": ":"}, {"text": "ENERGY"}, {"text": ":"}, {"text": "Crude"}, {"text": "oil"}, {"text": "futures"}, {"text": "prices"}, {"text": "increased"}, {"text": "in"}, {"text": "moderate"}, {"text": "trading"}, {"text": ","}, {"text": "but"}, {"text": "much"}, {"text": "of"}, {"text": "the"}, {"text": "action"}, {"text": "was"}, {"text": "in"}, {"text": "heating"}, {"text": "oil"}, {"text": "."}, {"text": "Prices"}, {"text": "rose"}, {"text": "on"}, {"text": "the"}, {"text": "news"}, {"text": "that"}, {"text": "a"}, {"text": "sizable"}, {"text": "West"}, {"text": "German"}, {"text": "refinery"}, {"text": "was"}, {"text": "damaged"}, {"text": "*-1"}, {"text": "in"}, {"text": "a"}, {"text": "fire"}, {"text": ","}, {"text": "*"}, {"text": "tightening"}, {"text": "an"}, {"text": "already"}, {"text": "tight"}, {"text": "European"}, {"text": "market"}, {"text": "."}, {"text": "Heating"}, {"text": "oil"}, {"text": "for"}, {"text": "November"}, {"text": "delivery"}, {"text": "ended"}, {"text": "at"}, {"text": "58.64"}, {"text": "cents"}, {"text": "a"}, {"text": "gallon"}, {"text": ","}, {"text": "up"}, {"text": "one"}, {"text": "cent"}, {"text": "on"}, {"text": "the"}, {"text": "New"}, {"text": "York"}, {"text": "Mercantile"}, {"text": "Exchange"}, {"text": "."}, {"text": "West"}, {"text": "Texas"}, {"text": "Intermediate"}, {"text": "for"}, {"text": "December"}, {"text": "delivery"}, {"text": "advanced"}, {"text": "22"}, {"text": "cents"}, {"text": "to"}, {"text": "$"}, {"text": "19.94"}, {"text": "*U*"}, {"text": "a"}, {"text": "barrel"}, {"text": "."}, {"text": "Gasoline"}, {"text": "futures"}, {"text": "continued"}, {"text": "a"}, {"text": "sell-off"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "began"}, {"text": "Monday"}, {"text": "."}, {"text": "PRECIOUS"}, {"text": "METALS"}, {"text": ":"}, {"text": "Futures"}, {"text": "prices"}, {"text": "eased"}, {"text": "as"}, {"text": "increased"}, {"text": "stability"}, {"text": "and"}, {"text": "strength"}, {"text": "came"}, {"text": "into"}, {"text": "the"}, {"text": "securities"}, {"text": "markets"}, {"text": "."}, {"text": "December"}, {"text": "delivery"}, {"text": "gold"}, {"text": "fell"}, {"text": "$"}, {"text": "3.20"}, {"text": "*U*"}, {"text": "an"}, {"text": "ounce"}, {"text": "to"}, {"text": "$"}, {"text": "377.60"}, {"text": "*U*"}, {"text": "."}, {"text": "December"}, {"text": "silver"}, {"text": "declined"}, {"text": "6.50"}, {"text": "cents"}, {"text": "an"}, {"text": "ounce"}, {"text": "to"}, {"text": "$"}, {"text": "5.2180"}, {"text": "*U*"}, {"text": "."}, {"text": "January"}, {"text": "platinum"}, {"text": "was"}, {"text": "down"}, {"text": "$"}, {"text": "5.70"}, {"text": "*U*"}, {"text": "an"}, {"text": "ounce"}, {"text": "at"}, {"text": "$"}, {"text": "494.50"}, {"text": "*U*"}, {"text": "."}, {"text": "Precious"}, {"text": "metals"}, {"text": ","}, {"text": "gold"}, {"text": "in"}, {"text": "particular"}, {"text": ","}, {"text": "currently"}, {"text": "are"}, {"text": "being"}, {"text": "influenced"}, {"text": "*-1"}, {"text": "more"}, {"text": "by"}, {"text": "stock"}, {"text": "market"}, {"text": "gyrations"}, {"text": "than"}, {"text": "the"}, {"text": "dollar"}, {"text": "as"}, {"text": "traders"}, {"text": "seek"}, {"text": "greater"}, {"text": "investment"}, {"text": "stability"}, {"text": ","}, {"text": "according"}, {"text": "to"}, {"text": "William"}, {"text": "O'Neill"}, {"text": ","}, {"text": "vice"}, {"text": "president"}, {"text": "of"}, {"text": "research"}, {"text": "at"}, {"text": "Elders"}, {"text": "Futures"}, {"text": "in"}, {"text": "New"}, {"text": "York"}, {"text": "."}, {"text": "``"}, {"text": "The"}, {"text": "recent"}, {"text": "rally"}, {"text": "in"}, {"text": "precious"}, {"text": "metals"}, {"text": "was"}, {"text": "a"}, {"text": "result"}, {"text": "of"}, {"text": "uncertainty"}, {"text": "and"}, {"text": "volatility"}, {"text": "in"}, {"text": "equities"}, {"text": ","}, {"text": "''"}, {"text": "he"}, {"text": "said"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Yesterday"}, {"text": ","}, {"text": "the"}, {"text": "stock"}, {"text": "market"}, {"text": "rose"}, {"text": "strongly"}, {"text": ","}, {"text": "*"}, {"text": "creating"}, {"text": "a"}, {"text": "more"}, {"text": "defensive"}, {"text": "attitude"}, {"text": "among"}, {"text": "precious"}, {"text": "metals"}, {"text": "traders"}, {"text": ","}, {"text": "he"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Silver"}, {"text": "and"}, {"text": "platinum"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "have"}, {"text": "more"}, {"text": "of"}, {"text": "an"}, {"text": "industrial"}, {"text": "nature"}, {"text": "than"}, {"text": "gold"}, {"text": ","}, {"text": "were"}, {"text": "even"}, {"text": "weaker"}, {"text": ","}, {"text": "he"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-2"}, {"text": "."}, {"text": "Silver"}, {"text": "is"}, {"text": "also"}, {"text": "under"}, {"text": "pressure"}, {"text": "of"}, {"text": "``"}, {"text": "extremely"}, {"text": "high"}, {"text": "''"}, {"text": "inventories"}, {"text": "in"}, {"text": "warehouses"}, {"text": "of"}, {"text": "the"}, {"text": "Commodity"}, {"text": "Exchange"}, {"text": ","}, {"text": "he"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Yesterday"}, {"text": ","}, {"text": "these"}, {"text": "stocks"}, {"text": "rose"}, {"text": "by"}, {"text": "170,262"}, {"text": "ounces"}, {"text": "to"}, {"text": "a"}, {"text": "record"}, {"text": "of"}, {"text": "226,570,380"}, {"text": "ounces"}, {"text": ","}, {"text": "according"}, {"text": "to"}, {"text": "an"}, {"text": "exchange"}, {"text": "spokesman"}, {"text": "."}, {"text": "COPPER"}, {"text": ":"}, {"text": "Futures"}, {"text": "prices"}, {"text": "partially"}, {"text": "recovered"}, {"text": "Monday"}, {"text": "'s"}, {"text": "declines"}, {"text": "because"}, {"text": "Chilean"}, {"text": "miners"}, {"text": "voted"}, {"text": "*-1"}, {"text": "to"}, {"text": "strike"}, {"text": "."}, {"text": "The"}, {"text": "December"}, {"text": "contract"}, {"text": "rose"}, {"text": "1.20"}, {"text": "cents"}, {"text": "a"}, {"text": "pound"}, {"text": "to"}, {"text": "$"}, {"text": "1.14"}, {"text": "*U*"}, {"text": "."}, {"text": "In"}, {"text": "Chile"}, {"text": ","}, {"text": "workers"}, {"text": "at"}, {"text": "two"}, {"text": "copper"}, {"text": "mines"}, {"text": ","}, {"text": "Los"}, {"text": "Bronces"}, {"text": "and"}, {"text": "El"}, {"text": "Soldado"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "belong"}, {"text": "to"}, {"text": "the"}, {"text": "Exxon-owned"}, {"text": "Minera"}, {"text": "Disputada"}, {"text": ","}, {"text": "yesterday"}, {"text": "voted"}, {"text": "*-2"}, {"text": "to"}, {"text": "begin"}, {"text": "a"}, {"text": "full"}, {"text": "strike"}, {"text": "tomorrow"}, {"text": ","}, {"text": "an"}, {"text": "analyst"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-3"}, {"text": "."}, {"text": "Reasons"}, {"text": "for"}, {"text": "the"}, {"text": "walkout"}, {"text": ","}, {"text": "the"}, {"text": "analyst"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": ","}, {"text": "included"}, {"text": "a"}, {"text": "number"}, {"text": "of"}, {"text": "procedural"}, {"text": "issues"}, {"text": ","}, {"text": "such"}, {"text": "as"}, {"text": "a"}, {"text": "right"}, {"text": "*"}, {"text": "to"}, {"text": "strike"}, {"text": "."}, {"text": "The"}, {"text": "analyst"}, {"text": "noted"}, {"text": "that"}, {"text": "also"}, {"text": "inherent"}, {"text": "in"}, {"text": "all"}, {"text": "metal"}, {"text": "markets"}, {"text": "was"}, {"text": "*T*-1"}, {"text": "a"}, {"text": "sympathetic"}, {"text": "reaction"}, {"text": "to"}, {"text": "stocks"}, {"text": "."}, {"text": "In"}, {"text": "the"}, {"text": "case"}, {"text": "of"}, {"text": "copper"}, {"text": ","}, {"text": "he"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-2"}, {"text": ","}, {"text": "the"}, {"text": "upbeat"}, {"text": "mood"}, {"text": "of"}, {"text": "stocks"}, {"text": "was"}, {"text": "reflected"}, {"text": "*-1"}, {"text": "in"}, {"text": "demand"}, {"text": "for"}, {"text": "futures"}, {"text": "contracts"}, {"text": "because"}, {"text": "a"}, {"text": "stronger"}, {"text": "economy"}, {"text": "means"}, {"text": "greater"}, {"text": "buying"}, {"text": "interest"}, {"text": "for"}, {"text": "the"}, {"text": "metal"}, {"text": "."}, {"text": "Also"}, {"text": "contributing"}, {"text": "to"}, {"text": "the"}, {"text": "firmness"}, {"text": "in"}, {"text": "copper"}, {"text": ","}, {"text": "the"}, {"text": "analyst"}, {"text": "noted"}, {"text": "0"}, {"text": "*T*-4"}, {"text": ","}, {"text": "was"}, {"text": "*T*-3"}, {"text": "a"}, {"text": "report"}, {"text": "by"}, {"text": "Chicago"}, {"text": "purchasing"}, {"text": "agents"}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "precedes"}, {"text": "the"}, {"text": "full"}, {"text": "purchasing"}, {"text": "agents"}, {"text": "'"}, {"text": "report"}, {"text": "that"}, {"text": "*T*-2"}, {"text": "is"}, {"text": "due"}, {"text": "out"}, {"text": "today"}, {"text": "and"}, {"text": "gives"}, {"text": "an"}, {"text": "indication"}, {"text": "of"}, {"text": "what"}, {"text": "the"}, {"text": "full"}, {"text": "report"}, {"text": "might"}, {"text": "hold"}, {"text": "*T*-5"}, {"text": "."}, {"text": "The"}, {"text": "Purchasing"}, {"text": "Management"}, {"text": "Association"}, {"text": "of"}, {"text": "Chicago"}, {"text": "'s"}, {"text": "October"}, {"text": "index"}, {"text": "rose"}, {"text": "to"}, {"text": "51.6"}, {"text": "%"}, {"text": "after"}, {"text": "three"}, {"text": "previous"}, {"text": "months"}, {"text": "of"}, {"text": "readings"}, {"text": "below"}, {"text": "50"}, {"text": "%"}, {"text": "."}, {"text": "The"}, {"text": "September"}, {"text": "index"}, {"text": "was"}, {"text": "47.1"}, {"text": "%"}, {"text": "."}, {"text": "A"}, {"text": "reading"}, {"text": "below"}, {"text": "50"}, {"text": "%"}, {"text": "generally"}, {"text": "indicates"}, {"text": "a"}, {"text": "slowing"}, {"text": "in"}, {"text": "the"}, {"text": "industrial"}, {"text": "sector"}, {"text": "of"}, {"text": "the"}, {"text": "economy"}, {"text": ","}, {"text": "while"}, {"text": "a"}, {"text": "reading"}, {"text": "above"}, {"text": "50"}, {"text": "%"}, {"text": "points"}, {"text": "to"}, {"text": "expansion"}, {"text": "."}, {"text": "The"}, {"text": "Chicago"}, {"text": "report"}, {"text": "raised"}, {"text": "the"}, {"text": "possibility"}, {"text": "that"}, {"text": "the"}, {"text": "October"}, {"text": "survey"}, {"text": "of"}, {"text": "the"}, {"text": "National"}, {"text": "Association"}, {"text": "of"}, {"text": "Purchasing"}, {"text": "Management"}, {"text": "would"}, {"text": "also"}, {"text": "show"}, {"text": "a"}, {"text": "reading"}, {"text": "above"}, {"text": "50"}, {"text": "%"}, {"text": "."}, {"text": "NCR"}, {"text": "Corp."}, {"text": "unveiled"}, {"text": "two"}, {"text": "models"}, {"text": "of"}, {"text": "its"}, {"text": "Tower"}, {"text": "line"}, {"text": "of"}, {"text": "midrange"}, {"text": "computers"}, {"text": "and"}, {"text": "introduced"}, {"text": "advanced"}, {"text": "networking"}, {"text": "software"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "allow"}, {"text": "the"}, {"text": "Tower"}, {"text": "family"}, {"text": "to"}, {"text": "operate"}, {"text": "as"}, {"text": "a"}, {"text": "central"}, {"text": "hub"}, {"text": "in"}, {"text": "a"}, {"text": "network"}, {"text": "of"}, {"text": "computers"}, {"text": "*T*-1"}, {"text": "."}, {"text": "The"}, {"text": "new"}, {"text": "software"}, {"text": "is"}, {"text": "based"}, {"text": "*-1"}, {"text": "on"}, {"text": "Novell"}, {"text": "Inc."}, {"text": "'s"}, {"text": "NetWare"}, {"text": "network"}, {"text": "operating"}, {"text": "system"}, {"text": "software"}, {"text": "."}, {"text": "USX"}, {"text": "Corp."}, {"text": "posted"}, {"text": "a"}, {"text": "23"}, {"text": "%"}, {"text": "drop"}, {"text": "in"}, {"text": "third-quarter"}, {"text": "profit"}, {"text": ","}, {"text": "as"}, {"text": "improved"}, {"text": "oil"}, {"text": "results"}, {"text": "failed"}, {"text": "*-1"}, {"text": "to"}, {"text": "offset"}, {"text": "weakness"}, {"text": "in"}, {"text": "steel"}, {"text": "and"}, {"text": "natural"}, {"text": "gas"}, {"text": "operations"}, {"text": "."}, {"text": "The"}, {"text": "nation"}, {"text": "'s"}, {"text": "largest"}, {"text": "steelmaker"}, {"text": "earned"}, {"text": "$"}, {"text": "175"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "62"}, {"text": "cents"}, {"text": "a"}, {"text": "share"}, {"text": ","}, {"text": "compared"}, {"text": "with"}, {"text": "the"}, {"text": "year-earlier"}, {"text": "$"}, {"text": "228"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "80"}, {"text": "cents"}, {"text": "a"}, {"text": "share"}, {"text": "."}, {"text": "The"}, {"text": "recent"}, {"text": "quarter"}, {"text": "includes"}, {"text": "pretax"}, {"text": "gains"}, {"text": "of"}, {"text": "$"}, {"text": "98"}, {"text": "million"}, {"text": "*U*"}, {"text": "from"}, {"text": "asset"}, {"text": "sales"}, {"text": ","}, {"text": "while"}, {"text": "like"}, {"text": "gains"}, {"text": "in"}, {"text": "the"}, {"text": "year-earlier"}, {"text": "quarter"}, {"text": "totaled"}, {"text": "$"}, {"text": "61"}, {"text": "million"}, {"text": "*U*"}, {"text": "."}, {"text": "In"}, {"text": "the"}, {"text": "1988"}, {"text": "period"}, {"text": ","}, {"text": "USX"}, {"text": "also"}, {"text": "had"}, {"text": "a"}, {"text": "$"}, {"text": "71"}, {"text": "million"}, {"text": "*U*"}, {"text": "after-tax"}, {"text": "gain"}, {"text": "from"}, {"text": "a"}, {"text": "tax"}, {"text": "dispute"}, {"text": "settlement"}, {"text": "."}, {"text": "Sales"}, {"text": "rose"}, {"text": "5"}, {"text": "%"}, {"text": "to"}, {"text": "$"}, {"text": "4.4"}, {"text": "billion"}, {"text": "*U*"}, {"text": "from"}, {"text": "$"}, {"text": "4.2"}, {"text": "billion"}, {"text": "*U*"}, {"text": "."}, {"text": "The"}, {"text": "earnings"}, {"text": "drop"}, {"text": "appears"}, {"text": "particularly"}, {"text": "steep"}, {"text": "in"}, {"text": "comparison"}, {"text": "with"}, {"text": "last"}, {"text": "year"}, {"text": "'s"}, {"text": "unusually"}, {"text": "strong"}, {"text": "third"}, {"text": "quarter"}, {"text": ","}, {"text": "when"}, {"text": "the"}, {"text": "company"}, {"text": "was"}, {"text": "riding"}, {"text": "an"}, {"text": "industrywide"}, {"text": "boom"}, {"text": "in"}, {"text": "demand"}, {"text": "and"}, {"text": "pricing"}, {"text": "*T*-1"}, {"text": "."}, {"text": "However"}, {"text": ","}, {"text": "third-quarter"}, {"text": "operating"}, {"text": "profit"}, {"text": "fell"}, {"text": "14"}, {"text": "%"}, {"text": ","}, {"text": "as"}, {"text": "USX"}, {"text": "sold"}, {"text": "sizable"}, {"text": "chunks"}, {"text": "of"}, {"text": "its"}, {"text": "diversified"}, {"text": "and"}, {"text": "steel"}, {"text": "segments"}, {"text": ","}, {"text": "*"}, {"text": "eliminating"}, {"text": "income"}, {"text": "from"}, {"text": "those"}, {"text": "operations"}, {"text": "."}, {"text": "Among"}, {"text": "segments"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "continue"}, {"text": "*-2"}, {"text": "to"}, {"text": "operate"}, {"text": ","}, {"text": "though"}, {"text": ","}, {"text": "the"}, {"text": "company"}, {"text": "'s"}, {"text": "steel"}, {"text": "division"}, {"text": "continued"}, {"text": "*-3"}, {"text": "to"}, {"text": "suffer"}, {"text": "from"}, {"text": "soft"}, {"text": "demand"}, {"text": "for"}, {"text": "its"}, {"text": "tubular"}, {"text": "goods"}, {"text": "serving"}, {"text": "the"}, {"text": "oil"}, {"text": "industry"}, {"text": "and"}, {"text": "other"}, {"text": "markets"}, {"text": "."}, {"text": "Peter"}, {"text": "Marcus"}, {"text": ","}, {"text": "an"}, {"text": "analyst"}, {"text": "with"}, {"text": "PaineWebber"}, {"text": "Inc."}, {"text": ","}, {"text": "said"}, {"text": "that"}, {"text": "a"}, {"text": "downturn"}, {"text": "in"}, {"text": "the"}, {"text": "appliance"}, {"text": "industry"}, {"text": ","}, {"text": "coupled"}, {"text": "*"}, {"text": "with"}, {"text": "sluggish"}, {"text": "automotive"}, {"text": "sales"}, {"text": ","}, {"text": "hurt"}, {"text": "USX"}, {"text": "results"}, {"text": "."}, {"text": "Moreover"}, {"text": ","}, {"text": "USX"}, {"text": "exports"}, {"text": "more"}, {"text": "than"}, {"text": "other"}, {"text": "steelmakers"}, {"text": ","}, {"text": "and"}, {"text": "the"}, {"text": "overseas"}, {"text": "market"}, {"text": "has"}, {"text": "been"}, {"text": "under"}, {"text": "more"}, {"text": "severe"}, {"text": "pricing"}, {"text": "pressure"}, {"text": "."}, {"text": "The"}, {"text": "company"}, {"text": "attributed"}, {"text": "lower"}, {"text": "sales"}, {"text": "and"}, {"text": "earnings"}, {"text": "for"}, {"text": "the"}, {"text": "steel"}, {"text": "segment"}, {"text": "to"}, {"text": "the"}, {"text": "loss"}, {"text": "of"}, {"text": "results"}, {"text": "from"}, {"text": "the"}, {"text": "Lorain"}, {"text": ","}, {"text": "Ohio"}, {"text": ","}, {"text": "plant"}, {"text": ","}, {"text": "which"}, {"text": "*T*-51"}, {"text": "now"}, {"text": "is"}, {"text": "a"}, {"text": "50-50"}, {"text": "joint"}, {"text": "venture"}, {"text": "with"}, {"text": "Japan"}, {"text": "'s"}, {"text": "Kobe"}, {"text": "Steel"}, {"text": "Ltd"}, {"text": "."}, {"text": "In"}, {"text": "the"}, {"text": "steel"}, {"text": "division"}, {"text": ","}, {"text": "operating"}, {"text": "profit"}, {"text": "dropped"}, {"text": "11"}, {"text": "%"}, {"text": "to"}, {"text": "$"}, {"text": "85"}, {"text": "million"}, {"text": "*U*"}, {"text": "."}, {"text": "Profit"}, {"text": "per"}, {"text": "ton"}, {"text": "of"}, {"text": "steel"}, {"text": "shipped"}, {"text": "*"}, {"text": "dropped"}, {"text": "to"}, {"text": "about"}, {"text": "$"}, {"text": "33"}, {"text": "*U*"}, {"text": "a"}, {"text": "ton"}, {"text": "from"}, {"text": "$"}, {"text": "42"}, {"text": "*U*"}, {"text": "a"}, {"text": "ton"}, {"text": "last"}, {"text": "year"}, {"text": "and"}, {"text": "$"}, {"text": "53"}, {"text": "*U*"}, {"text": "a"}, {"text": "ton"}, {"text": "in"}, {"text": "the"}, {"text": "second"}, {"text": "quarter"}, {"text": ","}, {"text": "analysts"}, {"text": "said"}, {"text": "0"}, {"text": "*T*-1"}, {"text": "."}, {"text": "Still"}, {"text": ","}, {"text": "USX"}, {"text": "fared"}, {"text": "better"}, {"text": "than"}, {"text": "other"}, {"text": "major"}, {"text": "steelmakers"}, {"text": ","}, {"text": "*-3"}, {"text": "earning"}, {"text": "more"}, {"text": "per"}, {"text": "ton"}, {"text": "of"}, {"text": "steel"}, {"text": "shipped"}, {"text": "*"}, {"text": "than"}, {"text": "either"}, {"text": "Bethlehem"}, {"text": "Steel"}, {"text": "Corp."}, {"text": ","}, {"text": "which"}, {"text": "*T*-1"}, {"text": "posted"}, {"text": "a"}, {"text": "54"}, {"text": "%"}, {"text": "drop"}, {"text": "in"}, {"text": "net"}, {"text": "income"}, {"text": ","}, {"text": "or"}, {"text": "Inland"}, {"text": "Steel"}, {"text": "Industries"}, {"text": "Inc."}, {"text": ","}, {"text": "whose"}, {"text": "profit"}, {"text": "*T*-2"}, {"text": "plummeted"}, {"text": "70"}, {"text": "%"}, {"text": "."}, {"text": "In"}, {"text": "New"}, {"text": "York"}, {"text": "Stock"}, {"text": "Exchange"}, {"text": "composite"}, {"text": "trading"}, {"text": "yesterday"}, {"text": ","}, {"text": "USX"}, {"text": "shares"}, {"text": "closed"}, {"text": "up"}, {"text": "$"}, {"text": "1.25"}, {"text": "*U*"}, {"text": ","}, {"text": "at"}, {"text": "$"}, {"text": "34.625"}, {"text": "*U*"}, {"text": ","}, {"text": "as"}, {"text": "the"}, {"text": "reported"}, {"text": "earnings"}, {"text": "exceeded"}, {"text": "projections"}, {"text": "by"}, {"text": "some"}, {"text": "analysts"}, {"text": "who"}, {"text": "*T*-1"}, {"text": "had"}, {"text": "n't"}, {"text": "expected"}, {"text": "as"}, {"text": "great"}, {"text": "a"}, {"text": "volume"}, {"text": "of"}, {"text": "asset"}, {"text": "sales"}, {"text": "."}, {"text": "The"}, {"text": "rise"}, {"text": "in"}, {"text": "the"}, {"text": "stock"}, {"text": "'s"}, {"text": "price"}, {"text": "may"}, {"text": "also"}, {"text": "reflect"}, {"text": "the"}, {"text": "fact"}, {"text": "that"}, {"text": "USX"}, {"text": "'s"}, {"text": "steel"}, {"text": "segment"}, {"text": "fared"}, {"text": "better"}, {"text": "than"}, {"text": "some"}, {"text": "other"}, {"text": "steelmakers"}, {"text": "'"}, {"text": "."}, {"text": "Charles"}, {"text": "Bradford"}, {"text": ","}, {"text": "an"}, {"text": "analyst"}, {"text": "with"}, {"text": "Merrill"}, {"text": "Lynch"}, {"text": "Capital"}, {"text": "Markets"}, {"text": ","}, {"text": "said"}, {"text": "0"}, {"text": "USX"}, {"text": "may"}, {"text": "have"}, {"text": "received"}, {"text": "orders"}, {"text": "lost"}, {"text": "*"}, {"text": "by"}, {"text": "competitors"}, {"text": "who"}, {"text": "*T*-2"}, {"text": "were"}, {"text": "involved"}, {"text": "*-1"}, {"text": "in"}, {"text": "labor"}, {"text": "contracts"}, {"text": "earlier"}, {"text": "this"}, {"text": "year"}, {"text": "."}, {"text": "He"}, {"text": "said"}, {"text": "0"}, {"text": "USX"}, {"text": "also"}, {"text": "appeared"}, {"text": "*-1"}, {"text": "to"}, {"text": "sell"}, {"text": "a"}, {"text": "richer"}, {"text": "mix"}, {"text": "of"}, {"text": "steel"}, {"text": "products"}, {"text": ","}, {"text": "such"}, {"text": "as"}, {"text": "the"}, {"text": "more"}, {"text": "profitable"}, {"text": "pipe"}, {"text": "and"}, {"text": "galvanized"}, {"text": "coated"}, {"text": "sheet"}, {"text": ","}, {"text": "than"}, {"text": "lower-priced"}, {"text": "structural"}, {"text": "goods"}, {"text": "."}, {"text": "The"}, {"text": "energy"}, {"text": "segment"}, {"text": ","}, {"text": "with"}, {"text": "a"}, {"text": "15"}, {"text": "%"}, {"text": "rise"}, {"text": "in"}, {"text": "operating"}, {"text": "profit"}, {"text": ","}, {"text": "is"}, {"text": "clearly"}, {"text": "the"}, {"text": "company"}, {"text": "'s"}, {"text": "strongest"}, {"text": "."}, {"text": "Higher"}, {"text": "crude"}, {"text": "oil"}, {"text": "prices"}, {"text": "helped"}, {"text": "*-1"}, {"text": "boost"}, {"text": "operating"}, {"text": "profit"}, {"text": "for"}, {"text": "the"}, {"text": "Marathon"}, {"text": "Oil"}, {"text": "Co."}, {"text": "unit"}, {"text": "to"}, {"text": "$"}, {"text": "198"}, {"text": "million"}, {"text": "*U*"}, {"text": "from"}, {"text": "$"}, {"text": "180"}, {"text": "million"}, {"text": "*U*"}, {"text": "."}, {"text": "The"}, {"text": "Texas"}, {"text": "Oil"}, {"text": "&"}, {"text": "Gas"}, {"text": "division"}, {"text": "continues"}, {"text": "*-1"}, {"text": "to"}, {"text": "operate"}, {"text": "in"}, {"text": "the"}, {"text": "red"}, {"text": ","}, {"text": "although"}, {"text": "losses"}, {"text": "narrowed"}, {"text": "to"}, {"text": "$"}, {"text": "9"}, {"text": "million"}, {"text": "*U*"}, {"text": "from"}, {"text": "$"}, {"text": "15"}, {"text": "million"}, {"text": "*U*"}, {"text": "."}, {"text": "USX"}, {"text": "announced"}, {"text": "in"}, {"text": "October"}, {"text": "that"}, {"text": "it"}, {"text": "was"}, {"text": "soliciting"}, {"text": "bids"}, {"text": "*"}, {"text": "to"}, {"text": "sell"}, {"text": "TXO"}, {"text": "'s"}, {"text": "oil"}, {"text": "and"}, {"text": "gas"}, {"text": "reserves"}, {"text": "."}, {"text": "Proceeds"}, {"text": "of"}, {"text": "that"}, {"text": "sale"}, {"text": "are"}, {"text": "*-1"}, {"text": "to"}, {"text": "be"}, {"text": "used"}, {"text": "*-2"}, {"text": "*"}, {"text": "to"}, {"text": "reduce"}, {"text": "debt"}, {"text": "and"}, {"text": "buy"}, {"text": "back"}, {"text": "shares"}, {"text": "."}, {"text": "The"}, {"text": "company"}, {"text": "noted"}, {"text": "that"}, {"text": "it"}, {"text": "has"}, {"text": "reduced"}, {"text": "debt"}, {"text": "by"}, {"text": "$"}, {"text": "1.6"}, {"text": "billion"}, {"text": "*U*"}, {"text": "since"}, {"text": "the"}, {"text": "end"}, {"text": "of"}, {"text": "1988"}, {"text": "and"}, {"text": "bought"}, {"text": "back"}, {"text": "about"}, {"text": "15.5"}, {"text": "million"}, {"text": "shares"}, {"text": "of"}, {"text": "common"}, {"text": "stock"}, {"text": "since"}, {"text": "the"}, {"text": "fourth"}, {"text": "quarter"}, {"text": "of"}, {"text": "1987"}, {"text": "."}, {"text": "USX"}, {"text": "has"}, {"text": "about"}, {"text": "$"}, {"text": "5.5"}, {"text": "billion"}, {"text": "*U*"}, {"text": "in"}, {"text": "long-term"}, {"text": "debt"}, {"text": "and"}, {"text": "257"}, {"text": "million"}, {"text": "shares"}, {"text": "outstanding"}, {"text": "."}, {"text": "The"}, {"text": "announced"}, {"text": "sale"}, {"text": "of"}, {"text": "the"}, {"text": "reserves"}, {"text": "was"}, {"text": "followed"}, {"text": "*-1"}, {"text": "by"}, {"text": "news"}, {"text": "that"}, {"text": "investor"}, {"text": "Carl"}, {"text": "Icahn"}, {"text": "had"}, {"text": "increased"}, {"text": "his"}, {"text": "stake"}, {"text": "in"}, {"text": "USX"}, {"text": "to"}, {"text": "13.1"}, {"text": "%"}, {"text": "and"}, {"text": "threatened"}, {"text": "a"}, {"text": "takeover"}, {"text": "or"}, {"text": "other"}, {"text": "business"}, {"text": "combination"}, {"text": "."}, {"text": "Mr."}, {"text": "Icahn"}, {"text": "has"}, {"text": "said"}, {"text": "0"}, {"text": "he"}, {"text": "believes"}, {"text": "0"}, {"text": "USX"}, {"text": "would"}, {"text": "be"}, {"text": "worth"}, {"text": "more"}, {"text": "if"}, {"text": "*-1"}, {"text": "broken"}, {"text": "up"}, {"text": "*-2"}, {"text": "into"}, {"text": "steel"}, {"text": "and"}, {"text": "energy"}, {"text": "segments"}, {"text": "."}, {"text": "Profit"}, {"text": "for"}, {"text": "the"}, {"text": "nine"}, {"text": "months"}, {"text": "jumped"}, {"text": "21"}, {"text": "%"}, {"text": "to"}, {"text": "$"}, {"text": "721"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "$"}, {"text": "2.62"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": ","}, {"text": "from"}, {"text": "$"}, {"text": "598"}, {"text": "million"}, {"text": "*U*"}, {"text": ","}, {"text": "or"}, {"text": "$"}, {"text": "2.07"}, {"text": "*U*"}, {"text": "a"}, {"text": "share"}, {"text": "."}, {"text": "Sales"}, {"text": "rose"}, {"text": "10"}, {"text": "%"}, {"text": "to"}, {"text": "$"}, {"text": "13.8"}, {"text": "billion"}, {"text": "*U*"}, {"text": "from"}, {"text": "$"}, {"text": "12.5"}, {"text": "billion"}, {"text": "*U*"}, {"text": "."}, {"text": "John"}, {"text": "F."}, {"text": "Barrett"}, {"text": ","}, {"text": "40"}, {"text": ","}, {"text": "formerly"}, {"text": "executive"}, {"text": "vice"}, {"text": "president"}, {"text": "and"}, {"text": "chief"}, {"text": "financial"}, {"text": "officer"}, {"text": ","}, {"text": "was"}, {"text": "named"}, {"text": "*-1"}, {"text": "president"}, {"text": "and"}, {"text": "chief"}, {"text": "operating"}, {"text": "officer"}, {"text": ","}, {"text": "posts"}, {"text": "which"}, {"text": "*T*-2"}, {"text": "had"}, {"text": "been"}, {"text": "vacant"}, {"text": "."}, {"text": "Leon"}, {"text": "J."}, {"text": "Level"}, {"text": ","}, {"text": "vice"}, {"text": "president"}, {"text": "and"}, {"text": "chief"}, {"text": "financial"}, {"text": "officer"}, {"text": "of"}, {"text": "this"}, {"text": "computer"}, {"text": "services"}, {"text": "concern"}, {"text": ","}, {"text": "and"}, {"text": "F."}, {"text": "Warren"}, {"text": "McFarlan"}, {"text": ","}, {"text": "a"}, {"text": "professor"}, {"text": "at"}, {"text": "Harvard"}, {"text": "University"}, {"text": "'s"}, {"text": "Graduate"}, {"text": "School"}, {"text": "of"}, {"text": "Business"}, {"text": ","}, {"text": "were"}, {"text": "elected"}, {"text": "*-1"}, {"text": "directors"}, {"text": ","}, {"text": "*"}, {"text": "increasing"}, {"text": "board"}, {"text": "membership"}, {"text": "to"}, {"text": "nine"}, {"text": "."}, {"text": "David"}, {"text": "A."}, {"text": "DiLoreto"}, {"text": ","}, {"text": "president"}, {"text": "of"}, {"text": "metal"}, {"text": "container"}, {"text": "division"}, {"text": ","}, {"text": "was"}, {"text": "named"}, {"text": "*-1"}, {"text": "to"}, {"text": "the"}, {"text": "additional"}, {"text": "post"}, {"text": "of"}, {"text": "group"}, {"text": "vice"}, {"text": "president"}, {"text": ","}, {"text": "packaging"}, {"text": "products"}, {"text": ","}, {"text": "at"}, {"text": "this"}, {"text": "packaging"}, {"text": ","}, {"text": "industrial"}, {"text": "and"}, {"text": "aerospace"}, {"text": "products"}, {"text": "concern"}, {"text": ","}, {"text": "*-1"}, {"text": "succeeding"}, {"text": "Delmont"}, {"text": "A."}, {"text": "Davis"}, {"text": ","}, {"text": "who"}, {"text": "*T*-3"}, {"text": "was"}, {"text": "named"}, {"text": "*-2"}, {"text": "president"}, {"text": "and"}, {"text": "chief"}, {"text": "operating"}, {"text": "officer"}, {"text": "in"}, {"text": "August"}, {"text": "."}, {"text": "Two"}, {"text": "leading"}, {"text": "constitutional-law"}, {"text": "experts"}, {"text": "said"}, {"text": "0"}, {"text": "President"}, {"text": "Bush"}, {"text": "does"}, {"text": "n't"}, {"text": "have"}, {"text": "the"}, {"text": "legal"}, {"text": "authority"}, {"text": "*"}, {"text": "to"}, {"text": "exercise"}, {"text": "a"}, {"text": "line-item"}, {"text": "veto"}, {"text": "."}, {"text": "Professors"}, {"text": "Philip"}, {"text": "Kurland"}, {"text": "of"}, {"text": "the"}, {"text": "University"}, {"text": "of"}, {"text": "Chicago"}, {"text": "and"}, {"text": "Laurence"}, {"text": "Tribe"}, {"text": "of"}, {"text": "Harvard"}, {"text": "Law"}, {"text": "School"}, {"text": "said"}, {"text": "0"}, {"text": "any"}, {"text": "effort"}, {"text": "by"}, {"text": "President"}, {"text": "Bush"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "claim"}, {"text": "authority"}, {"text": "for"}, {"text": "a"}, {"text": "line-item"}, {"text": "veto"}, {"text": "*T*-1"}, {"text": "would"}, {"text": "contradict"}, {"text": "the"}, {"text": "text"}, {"text": "of"}, {"text": "the"}, {"text": "Constitution"}, {"text": "and"}, {"text": "the"}, {"text": "intent"}, {"text": "of"}, {"text": "its"}, {"text": "authors"}, {"text": ","}, {"text": "as"}, {"text": "well"}, {"text": "as"}, {"text": "the"}, {"text": "views"}, {"text": "of"}, {"text": "previous"}, {"text": "presidents"}, {"text": "."}, {"text": "A"}, {"text": "line-item"}, {"text": "veto"}, {"text": "is"}, {"text": "a"}, {"text": "procedure"}, {"text": "that"}, {"text": "*T*-1"}, {"text": "would"}, {"text": "allow"}, {"text": "a"}, {"text": "president"}, {"text": "to"}, {"text": "veto"}, {"text": "part"}, {"text": "of"}, {"text": "a"}, {"text": "big"}, {"text": "congressional"}, {"text": "spending"}, {"text": "bill"}, {"text": "without"}, {"text": "*-2"}, {"text": "having"}, {"text": "*-3"}, {"text": "to"}, {"text": "scuttle"}, {"text": "the"}, {"text": "entire"}, {"text": "measure"}, {"text": "."}, {"text": "Mr."}, {"text": "Bush"}, {"text": "has"}, {"text": "said"}, {"text": "0"}, {"text": "he"}, {"text": "would"}, {"text": "like"}, {"text": "*-1"}, {"text": "to"}, {"text": "be"}, {"text": "able"}, {"text": "*-2"}, {"text": "to"}, {"text": "use"}, {"text": "this"}, {"text": "procedure"}, {"text": "."}, {"text": "A"}, {"text": "White"}, {"text": "House"}, {"text": "spokesman"}, {"text": "said"}, {"text": "last"}, {"text": "week"}, {"text": "that"}, {"text": "the"}, {"text": "president"}, {"text": "is"}, {"text": "considering"}, {"text": "*-1"}, {"text": "declaring"}, {"text": "that"}, {"text": "the"}, {"text": "Constitution"}, {"text": "implicitly"}, {"text": "gives"}, {"text": "him"}, {"text": "the"}, {"text": "authority"}, {"text": "for"}, {"text": "a"}, {"text": "line-item"}, {"text": "veto"}, {"text": "*-2"}, {"text": "to"}, {"text": "provoke"}, {"text": "a"}, {"text": "test"}, {"text": "case"}, {"text": "."}, {"text": "But"}, {"text": "the"}, {"text": "two"}, {"text": "legal"}, {"text": "experts"}, {"text": ","}, {"text": "responding"}, {"text": "to"}, {"text": "an"}, {"text": "inquiry"}, {"text": "by"}, {"text": "Sen."}, {"text": "Edward"}, {"text": "Kennedy"}, {"text": "-LRB-"}, {"text": "D."}, {"text": ","}, {"text": "Mass."}, {"text": "-RRB-"}, {"text": ","}, {"text": "wrote"}, {"text": "in"}, {"text": "a"}, {"text": "joint"}, {"text": "letter"}, {"text": "that"}, {"text": "the"}, {"text": "president"}, {"text": "``"}, {"text": "lacks"}, {"text": "the"}, {"text": "constitutional"}, {"text": "authority"}, {"text": "*"}, {"text": "to"}, {"text": "exercise"}, {"text": "a"}, {"text": "line-item"}, {"text": "veto"}, {"text": "."}, {"text": "''"}, {"text": "The"}, {"text": "two"}, {"text": "professors"}, {"text": "represent"}, {"text": "different"}, {"text": "ends"}, {"text": "of"}, {"text": "the"}, {"text": "political"}, {"text": "spectrum"}, {"text": "--"}, {"text": "Mr."}, {"text": "Kurland"}, {"text": "is"}, {"text": "a"}, {"text": "conservative"}, {"text": "and"}, {"text": "Mr."}, {"text": "Tribe"}, {"text": "is"}, {"text": "a"}, {"text": "liberal"}, {"text": "."}, {"text": "The"}, {"text": "two"}, {"text": "professors"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "Constitution"}, {"text": "authorizes"}, {"text": "the"}, {"text": "president"}, {"text": "to"}, {"text": "veto"}, {"text": "entire"}, {"text": "bills"}, {"text": ","}, {"text": "not"}, {"text": "partial"}, {"text": "measures"}, {"text": "."}, {"text": "Moreover"}, {"text": ","}, {"text": "they"}, {"text": "said"}, {"text": "0"}, {"text": "the"}, {"text": "first"}, {"text": "appropriations"}, {"text": "bill"}, {"text": "passed"}, {"text": "*"}, {"text": "200"}, {"text": "years"}, {"text": "ago"}, {"text": "covered"}, {"text": "many"}, {"text": "different"}, {"text": "items"}, {"text": ","}, {"text": "and"}, {"text": "there"}, {"text": "was"}, {"text": "no"}, {"text": "discussion"}, {"text": "of"}, {"text": "a"}, {"text": "line-item"}, {"text": "veto"}, {"text": "."}, {"text": "They"}, {"text": "also"}, {"text": "said"}, {"text": "that"}, {"text": "more"}, {"text": "than"}, {"text": "a"}, {"text": "dozen"}, {"text": "presidents"}, {"text": "*PPA*-1"}, {"text": "have"}, {"text": "called"}, {"text": "for"}, {"text": "line-item"}, {"text": "veto"}, {"text": "authority"}, {"text": "since"}, {"text": "the"}, {"text": "Civil"}, {"text": "War"}, {"text": ","}, {"text": "and"}, {"text": "``"}, {"text": "all"}, {"text": "have"}, {"text": "shared"}, {"text": "the"}, {"text": "view"}, {"text": "that"}, {"text": "such"}, {"text": "lawmaking"}, {"text": "power"}, {"text": "is"}, {"text": "beyond"}, {"text": "the"}, {"text": "reach"}, {"text": "''"}, {"text": "of"}, {"text": "the"}, {"text": "president"}, {"text": "."}, {"text": "Sen."}, {"text": "Kennedy"}, {"text": "said"}, {"text": "in"}, {"text": "a"}, {"text": "separate"}, {"text": "statement"}, {"text": "that"}, {"text": "he"}, {"text": "supports"}, {"text": "legislation"}, {"text": "0"}, {"text": "*"}, {"text": "to"}, {"text": "give"}, {"text": "the"}, {"text": "president"}, {"text": "line-item"}, {"text": "veto"}, {"text": "power"}, {"text": "*T*-2"}, {"text": ","}, {"text": "but"}, {"text": "that"}, {"text": "it"}, {"text": "*EXP*-1"}, {"text": "would"}, {"text": "be"}, {"text": "a"}, {"text": "``"}, {"text": "reckless"}, {"text": "course"}, {"text": "of"}, {"text": "action"}, {"text": "''"}, {"text": "for"}, {"text": "President"}, {"text": "Bush"}, {"text": "to"}, {"text": "claim"}, {"text": "the"}, {"text": "authority"}, {"text": "without"}, {"text": "congressional"}, {"text": "approval"}, {"text": "."}, {"text": "Trinity"}, {"text": "Industries"}, {"text": "Inc."}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "reached"}, {"text": "a"}, {"text": "preliminary"}, {"text": "agreement"}, {"text": "*"}, {"text": "to"}, {"text": "sell"}, {"text": "500"}, {"text": "railcar"}, {"text": "platforms"}, {"text": "to"}, {"text": "Trailer"}, {"text": "Train"}, {"text": "Co."}, {"text": "of"}, {"text": "Chicago"}, {"text": "."}, {"text": "Terms"}, {"text": "were"}, {"text": "n't"}, {"text": "disclosed"}, {"text": "*-1"}, {"text": "."}, {"text": "Trinity"}, {"text": "said"}, {"text": "0"}, {"text": "it"}, {"text": "plans"}, {"text": "*-1"}, {"text": "to"}, {"text": "begin"}, {"text": "delivery"}, {"text": "in"}, {"text": "the"}, {"text": "first"}, {"text": "quarter"}, {"text": "of"}, {"text": "next"}, {"text": "year"}, {"text": "."}] diff --git a/testdata/treebank_words.json b/testdata/treebank_words.json index 9d49f58..a76d4fe 100644 --- a/testdata/treebank_words.json +++ b/testdata/treebank_words.json @@ -18,8 +18,7 @@ [ "abbreviations", "like", - "M.D", - "." + "M.D." ], [ "and", @@ -68,7 +67,8 @@ "name", "is", "Jonas", - "E.", + "E", + ".", "Smith", "." ], @@ -79,7 +79,9 @@ "on", "Thursday", "morning", - "...", + ".", + ".", + ".", "Arthur", "did", "n't", @@ -92,7 +94,8 @@ "Please", "turn", "to", - "p.", + "p", + ".", "55", "." ], @@ -100,7 +103,8 @@ "Were", "Jane", "and", - "co.", + "co", + ".", "at", "the", "party", @@ -146,8 +150,7 @@ ",", "Briggs", "&", - "Co", - "." + "Co." ], [ "It", @@ -159,8 +162,7 @@ "I", "can", "see", - "Mt", - "." + "Mt." ], [ "Fuji", @@ -176,7 +178,8 @@ "is", "on", "5th", - "st.", + "st", + ".", "near", "the", "light", @@ -205,8 +208,7 @@ "live", "in", "the", - "E.U", - "." + "E.U." ], [ "How", @@ -330,9 +332,7 @@ "Her", "email", "is", - "Jane.Doe", - "@", - "example.com", + "Jane.Doe@example.com", "." ], [ @@ -348,9 +348,7 @@ "site", "is", ":", - "https", - ":", - "//www.example.50.com/new-site/awesome_content.html", + "https://www.example.50.com/new-site/awesome_content.html", "." ], [ @@ -383,12 +381,12 @@ "to", "him", ",", - "``", + "\"", "This", "is", "great", ".", - "''" + "\"" ], [ "she", @@ -401,12 +399,12 @@ "to", "him", ",", - "``", + "\"", "This", "is", "great", ".", - "''" + "\"" ], [ "She", @@ -617,7 +615,8 @@ "The", "second", "item", - "c.", + "c", + ".", "The", "third", "list", @@ -709,7 +708,8 @@ "you", "see", "Albert", - "I.", + "I", + ".", "Jones", "yesterday", "?" @@ -720,10 +720,12 @@ "that", "by", "simplifying", - "one\u2019s", + "one", + "'s", "life", ",", - "\u201cthe", + "\"", + "the", "laws", "of", "the", @@ -741,13 +743,16 @@ "." ], [ - ".\u201d" + ".", + "\"" ], [ - "``", + "\"", "Bohr", "[", - "...", + ".", + ".", + ".", "]", "used", "the", @@ -756,9 +761,11 @@ "parallel", "stairways", "[", - "...", + ".", + ".", + ".", "]", - "''", + "\"", "(", "Smith", "55", @@ -832,7 +839,9 @@ "never", "meant", "that", - "...", + ".", + ".", + ".", ".", "She", "left", @@ -840,20 +849,6 @@ "store", "." ], - [ - "I", - "wasn\u2019t", - "really", - "...", - "well", - ",", - "what", - "I", - "mean", - "...", - "see", - "." - ], [ "." ], @@ -879,7 +874,8 @@ ], [ "I", - "didn\u2019t", + "did", + "n't", "mean", "it", "." @@ -952,10 +948,8 @@ "store", "and", "bought", - "1,000.That", - "is", - "a", - "lot", + "1,000", + "things", "." ] -] \ No newline at end of file +] diff --git a/testdata/word_punct.json b/testdata/word_punct.json deleted file mode 100644 index 952055a..0000000 --- a/testdata/word_punct.json +++ /dev/null @@ -1,1032 +0,0 @@ -[ - [ - "They", - "'", - "ll", - "save", - "and", - "invest", - "more", - "." - ], - [ - "How", - "'", - "s", - "it", - "going", - "?" - ], - [ - "abbreviations", - "like", - "M", - ".", - "D", - "." - ], - [ - "and", - "initials", - "containing", - "periods", - ",", - "they" - ], - [ - "hi", - ",", - "my", - "name", - "can", - "'", - "t", - "hello", - "," - ], - [ - "Hello", - "World", - "." - ], - [ - "My", - "name", - "is", - "Jonas", - "." - ], - [ - "There", - "it", - "is", - "!" - ], - [ - "I", - "found", - "it", - "." - ], - [ - "My", - "name", - "is", - "Jonas", - "E", - ".", - "Smith", - "." - ], - [ - "At", - "eight", - "o", - "'", - "clock", - "on", - "Thursday", - "morning", - "...", - "Arthur", - "didn", - "'", - "t", - "feel", - "very", - "good", - "." - ], - [ - "Please", - "turn", - "to", - "p", - ".", - "55", - "." - ], - [ - "Were", - "Jane", - "and", - "co", - ".", - "at", - "the", - "party", - "?" - ], - [ - "They", - "closed", - "the", - "deal", - "with", - "Pitt", - ",", - "Briggs", - "&", - "Co", - ".", - "at", - "noon", - "." - ], - [ - "Let", - "'", - "s", - "ask", - "Jane", - "and", - "co", - "." - ], - [ - "They", - "should", - "know", - "." - ], - [ - "They", - "closed", - "the", - "deal", - "with", - "Pitt", - ",", - "Briggs", - "&", - "Co", - "." - ], - [ - "It", - "closed", - "yesterday", - "." - ], - [ - "I", - "can", - "see", - "Mt", - "." - ], - [ - "Fuji", - "from", - "here", - "." - ], - [ - "St", - ".", - "Michael", - "'", - "s", - "Church", - "is", - "on", - "5th", - "st", - ".", - "near", - "the", - "light", - "." - ], - [ - "That", - "is", - "JFK", - "Jr", - ".'", - "s", - "book", - "." - ], - [ - "I", - "visited", - "the", - "U", - ".", - "S", - ".", - "A", - ".", - "last", - "year", - "." - ], - [ - "I", - "live", - "in", - "the", - "E", - ".", - "U", - "." - ], - [ - "How", - "about", - "you", - "?" - ], - [ - "I", - "live", - "in", - "the", - "U", - ".", - "S", - ".", - "How", - "about", - "you", - "?" - ], - [ - "I", - "work", - "for", - "the", - "U", - ".", - "S", - ".", - "Government", - "in", - "Virginia", - "." - ], - [ - "I", - "have", - "lived", - "in", - "the", - "U", - ".", - "S", - ".", - "for", - "20", - "years", - "." - ], - [ - "At", - "5", - "a", - ".", - "m", - ".", - "Mr", - ".", - "Smith", - "went", - "to", - "the", - "bank", - "." - ], - [ - "He", - "left", - "the", - "bank", - "at", - "6", - "P", - ".", - "M", - ".", - "Mr", - ".", - "Smith", - "then", - "went", - "to", - "the", - "store", - "." - ], - [ - "She", - "has", - "$", - "100", - ".", - "00", - "in", - "her", - "bag", - "." - ], - [ - "She", - "has", - "$", - "100", - ".", - "00", - "." - ], - [ - "It", - "is", - "in", - "her", - "bag", - "." - ], - [ - "He", - "teaches", - "science", - "(", - "He", - "previously", - "worked", - "for", - "5", - "years", - "as", - "an", - "engineer", - ".)" - ], - [ - "at", - "the", - "local", - "University", - "." - ], - [ - "Her", - "email", - "is", - "Jane", - ".", - "Doe", - "@", - "example", - ".", - "com", - "." - ], - [ - "I", - "sent", - "her", - "an", - "email", - "." - ], - [ - "The", - "site", - "is", - ":", - "https", - "://", - "www", - ".", - "example", - ".", - "50", - ".", - "com", - "/", - "new", - "-", - "site", - "/", - "awesome_content", - ".", - "html", - "." - ], - [ - "Please", - "check", - "it", - "out", - "." - ], - [ - "She", - "turned", - "to", - "him", - ",", - "'", - "This", - "is", - "great", - ".'" - ], - [ - "she", - "said", - "." - ], - [ - "She", - "turned", - "to", - "him", - ",", - "\"", - "This", - "is", - "great", - ".\"" - ], - [ - "she", - "said", - "." - ], - [ - "She", - "turned", - "to", - "him", - ",", - "\"", - "This", - "is", - "great", - ".\"" - ], - [ - "She", - "held", - "the", - "book", - "out", - "to", - "show", - "him", - "." - ], - [ - "Hello", - "!!" - ], - [ - "Long", - "time", - "no", - "see", - "." - ], - [ - "Hello", - "??" - ], - [ - "Who", - "is", - "there", - "?" - ], - [ - "Hello", - "!?" - ], - [ - "Is", - "that", - "you", - "?" - ], - [ - "Hello", - "?!" - ], - [ - "Is", - "that", - "you", - "?" - ], - [ - "1", - ".)" - ], - [ - "The", - "first", - "item", - "2", - ".)" - ], - [ - "The", - "second", - "item" - ], - [ - "1", - ".)" - ], - [ - "The", - "first", - "item", - "." - ], - [ - "2", - ".)" - ], - [ - "The", - "second", - "item", - "." - ], - [ - "1", - ")", - "The", - "first", - "item", - "2", - ")", - "The", - "second", - "item" - ], - [ - "1", - ")", - "The", - "first", - "item", - "." - ], - [ - "2", - ")", - "The", - "second", - "item", - "." - ], - [ - "1", - "." - ], - [ - "The", - "first", - "item", - "2", - "." - ], - [ - "The", - "second", - "item" - ], - [ - "1", - "." - ], - [ - "The", - "first", - "item", - "." - ], - [ - "2", - "." - ], - [ - "The", - "second", - "item", - "." - ], - [ - "\u2022", - "9", - "." - ], - [ - "The", - "first", - "item", - "\u2022", - "10", - "." - ], - [ - "The", - "second", - "item" - ], - [ - "\u2043", - "9", - "." - ], - [ - "The", - "first", - "item", - "\u2043", - "10", - "." - ], - [ - "The", - "second", - "item" - ], - [ - "a", - "." - ], - [ - "The", - "first", - "item", - "b", - "." - ], - [ - "The", - "second", - "item", - "c", - ".", - "The", - "third", - "list", - "item" - ], - [ - "This", - "is", - "a", - "sentence", - "cut", - "off", - "in", - "the", - "middle", - "because", - "pdf", - "." - ], - [ - "It", - "was", - "a", - "cold", - "night", - "in", - "the", - "city", - "." - ], - [ - "features", - "contact", - "manager", - "events", - ",", - "activities" - ], - [ - "You", - "can", - "find", - "it", - "at", - "N", - "\u00b0." - ], - [ - "1026", - ".", - "253", - ".", - "553", - "." - ], - [ - "That", - "is", - "where", - "the", - "treasure", - "is", - "." - ], - [ - "She", - "works", - "at", - "Yahoo", - "!" - ], - [ - "in", - "the", - "accounting", - "department", - "." - ], - [ - "We", - "make", - "a", - "good", - "team", - ",", - "you", - "and", - "I", - "." - ], - [ - "Did", - "you", - "see", - "Albert", - "I", - ".", - "Jones", - "yesterday", - "?" - ], - [ - "Thoreau", - "argues", - "that", - "by", - "simplifying", - "one", - "\u2019", - "s", - "life", - ",", - "\u201c", - "the", - "laws", - "of", - "the", - "universe", - "will", - "appear", - "less", - "complex", - "." - ], - [ - "." - ], - [ - "." - ], - [ - ".\u201d" - ], - [ - "\"", - "Bohr", - "[...]", - "used", - "the", - "analogy", - "of", - "parallel", - "stairways", - "[...]\"", - "(", - "Smith", - "55", - ")." - ], - [ - "If", - "words", - "are", - "left", - "off", - "at", - "the", - "end", - "of", - "a", - "sentence", - ",", - "and", - "that", - "is", - "all", - "that", - "is", - "omitted", - ",", - "indicate", - "the", - "omission", - "with", - "ellipsis", - "marks", - "(", - "preceded", - "and", - "followed", - "by", - "a", - "space", - ")", - "and", - "then", - "indicate", - "the", - "end", - "of", - "the", - "sentence", - "with", - "a", - "period", - "." - ], - [ - "." - ], - [ - "." - ], - [ - "." - ], - [ - "Next", - "sentence", - "." - ], - [ - "I", - "never", - "meant", - "that", - "....", - "She", - "left", - "the", - "store", - "." - ], - [ - "I", - "wasn", - "\u2019", - "t", - "really", - "...", - "well", - ",", - "what", - "I", - "mean", - "...", - "see", - "." - ], - [ - "." - ], - [ - "." - ], - [ - "what", - "I", - "'", - "m", - "saying", - ",", - "the", - "thing", - "is", - "." - ], - [ - "." - ], - [ - "." - ], - [ - "I", - "didn", - "\u2019", - "t", - "mean", - "it", - "." - ], - [ - "One", - "further", - "habit", - "which", - "was", - "somewhat", - "weakened", - "." - ], - [ - "." - ], - [ - "." - ], - [ - "was", - "that", - "of", - "combining", - "words", - "into", - "self", - "-", - "interpreting", - "compounds", - "." - ], - [ - "." - ], - [ - "." - ], - [ - "." - ], - [ - "The", - "practice", - "was", - "not", - "abandoned", - "." - ], - [ - "." - ], - [ - "." - ], - [ - "." - ], - [ - "Hello", - "world", - ".", - "Today", - "is", - "Tuesday", - ".", - "Mr", - "." - ], - [ - "Smith", - "went", - "to", - "the", - "store", - "and", - "bought", - "1", - ",", - "000", - ".", - "That", - "is", - "a", - "lot", - "." - ] -] diff --git a/tokenize.go b/tokenize.go new file mode 100644 index 0000000..d6f19ff --- /dev/null +++ b/tokenize.go @@ -0,0 +1,187 @@ +package prose + +import ( + "regexp" + "strings" + "unicode" + "unicode/utf8" +) + +// iterTokenizer splits a sentence into words. +type iterTokenizer struct { +} + +// newIterTokenizer is a iterTokenizer constructor. +func newIterTokenizer() *iterTokenizer { + return new(iterTokenizer) +} + +func addToken(s string, toks []*Token) []*Token { + if strings.TrimSpace(s) != "" { + toks = append(toks, &Token{Text: s}) + } + return toks +} + +func isSpecial(token string) bool { + _, found := emoticons[token] + return found || internalRE.MatchString(token) +} + +func doSplit(token string) []*Token { + tokens := []*Token{} + suffs := []*Token{} + + last := 0 + for token != "" && utf8.RuneCountInString(token) != last { + if isSpecial(token) { + // We've found a special case (e.g., an emoticon) -- so, we add it as a token without + // any further processing. + tokens = addToken(token, tokens) + break + } + last = utf8.RuneCountInString(token) + lower := strings.ToLower(token) + if hasAnyPrefix(token, prefixes) { + // Remove prefixes -- e.g., $100 -> [$, 100]. + tokens = addToken(string(token[0]), tokens) + token = token[1:] + } else if idx := hasAnyIndex(lower, []string{"'ll", "'s", "'re", "'m"}); idx > -1 { + // Handle "they'll", "I'll", etc. + // + // they'll -> [they, 'll]. + tokens = addToken(token[:idx], tokens) + token = token[idx:] + } else if idx := hasAnyIndex(lower, []string{"n't"}); idx > -1 { + // Handle "Don't", "won't", etc. + // + // don't -> [do, n't]. + tokens = addToken(token[:idx], tokens) + token = token[idx:] + } else if hasAnySuffix(token, suffixes) { + // Remove suffixes -- e.g., Well) -> [Well, )]. + suffs = append([]*Token{ + {Text: string(token[len(token)-1])}}, + suffs...) + token = token[:len(token)-1] + } else { + tokens = addToken(token, tokens) + } + } + + return append(tokens, suffs...) +} + +// tokenize splits a sentence into a slice of words. +func (t *iterTokenizer) tokenize(text string) []*Token { + tokens := []*Token{} + + clean, white := sanitizer.Replace(text), false + length := len(clean) + + start, index := 0, 0 + cache := map[string][]*Token{} + for index <= length { + uc, size := utf8.DecodeRuneInString(clean[index:]) + if size == 0 { + break + } else if index == 0 { + white = unicode.IsSpace(uc) + } + if unicode.IsSpace(uc) != white { + if start < index { + span := clean[start:index] + if toks, found := cache[span]; found { + tokens = append(tokens, toks...) + } else { + toks := doSplit(span) + cache[span] = toks + tokens = append(tokens, toks...) + } + } + if uc == ' ' { + start = index + 1 + } else { + start = index + } + white = !white + } + index += size + } + + if start < index { + tokens = append(tokens, doSplit(clean[start:index])...) + } + + return tokens +} + +var internalRE = regexp.MustCompile(`^(?:[A-Za-z]\.){2,}$|^[A-Z][a-z]{1,2}\.$`) +var sanitizer = strings.NewReplacer( + "\u201c", `"`, + "\u201d", `"`, + "\u2018", "'", + "\u2019", "'", + "’", "'") +var suffixes = []string{",", ")", `"`, "]", "!", ";", ".", "?", ":", "'"} +var prefixes = []string{"$", "(", `"`, "["} +var emoticons = map[string]int{ + "(-8": 1, + "(-;": 1, + "(-_-)": 1, + "(._.)": 1, + "(:": 1, + "(=": 1, + "(o:": 1, + "(¬_¬)": 1, + "(ಠ_ಠ)": 1, + "(╯°□°)╯︵┻━┻": 1, + "-__-": 1, + "8-)": 1, + "8-D": 1, + "8D": 1, + ":(": 1, + ":((": 1, + ":(((": 1, + ":()": 1, + ":)))": 1, + ":-)": 1, + ":-))": 1, + ":-)))": 1, + ":-*": 1, + ":-/": 1, + ":-X": 1, + ":-]": 1, + ":-o": 1, + ":-p": 1, + ":-x": 1, + ":-|": 1, + ":-}": 1, + ":0": 1, + ":3": 1, + ":P": 1, + ":]": 1, + ":`(": 1, + ":`)": 1, + ":`-(": 1, + ":o": 1, + ":o)": 1, + "=(": 1, + "=)": 1, + "=D": 1, + "=|": 1, + "@_@": 1, + "O.o": 1, + "O_o": 1, + "V_V": 1, + "XDD": 1, + "[-:": 1, + "^___^": 1, + "o_0": 1, + "o_O": 1, + "o_o": 1, + "v_v": 1, + "xD": 1, + "xDD": 1, + "¯\\(ツ)/¯": 1, +} diff --git a/tokenize/pragmatic.go b/tokenize/pragmatic.go deleted file mode 100644 index 3e36b99..0000000 --- a/tokenize/pragmatic.go +++ /dev/null @@ -1,744 +0,0 @@ -// The MIT License (MIT) -// -// Copyright (c) 2015 Kevin S. Dias -// -// Permission is hereby granted, free of charge, to any person obtaining -// a copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to -// permit persons to whom the Software is furnished to do so, subject to -// the following conditions: -// -// The above copyright notice and this permission notice shall be -// included in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -package tokenize - -import ( - "errors" - "fmt" - "regexp" - "strings" - - "github.com/jdkato/prose/internal/util" -) - -/* Public API */ - -// PragmaticSegmenter is a multilingual, rule-based sentence boundary detector. -// -// This is a port of the Ruby library by Kevin S. Dias -// (https://github.com/diasks2/pragmatic_segmenter). -type PragmaticSegmenter struct { - processor languageProcessor -} - -// NewPragmaticSegmenter creates a new PragmaticSegmenter according to the -// specified language. If the given language is not supported, an error will be -// returned. -// -// Languages are specified by their two-character ISO 639-1 code. The supported -// languages are "en" (English), "es" (Spanish), "fr" (French) ... (WIP) -func NewPragmaticSegmenter(lang string) (*PragmaticSegmenter, error) { - if p, ok := langToProcessor[lang]; ok { - return &PragmaticSegmenter{processor: p}, nil - } - return nil, errors.New("unknown language") -} - -// Tokenize splits text into sentences. -func (p *PragmaticSegmenter) Tokenize(text string) []string { - return p.processor.process(text) -} - -/* Helper functions, regexps, and types */ - -// A rule associates a regular expression with a replacement string. -type rule struct { - pattern *regexp.Regexp - replacement string -} - -// sub replaces all occurrences of Pattern with Replacement. -func (r *rule) sub(text string) string { - if !r.pattern.MatchString(text) { - return text - } - - orig := len(text) - diff := 0 - for _, submat := range r.pattern.FindAllStringSubmatchIndex(text, -1) { - for idx, mat := range submat { - if mat != -1 && idx > 0 && idx%2 == 0 { - loc := []int{mat - diff, submat[idx+1] - diff} - text = text[:loc[0]] + r.replacement + text[loc[1]:] - diff = orig - len(text) - } - } - } - - return text -} - -// numbers - -var periodBeforeNumberRule = rule{ - pattern: regexp.MustCompile(`(\.)\d`), replacement: "∯"} -var numberAfterPeriodBeforeLetterRule = rule{ - pattern: regexp.MustCompile(`\d(\.)\S`), replacement: "∯"} -var newLineNumberPeriodSpaceLetterRule = rule{ - pattern: regexp.MustCompile(`[\n\r]\d(\.)(?:[\s\S]|\))`), replacement: "∯"} -var startLineNumberPeriodRule = rule{ - pattern: regexp.MustCompile(`^\d(\.)(?:[\s\S]|\))`), replacement: "∯"} -var startLineTwoDigitNumberPeriodRule = rule{ - pattern: regexp.MustCompile(`^\d\d(\.)(?:[\s\S]|\))`), replacement: "∯"} -var allNumberRules = []rule{ - periodBeforeNumberRule, numberAfterPeriodBeforeLetterRule, - newLineNumberPeriodSpaceLetterRule, startLineNumberPeriodRule, - startLineTwoDigitNumberPeriodRule, -} - -// common - -var cleanRules = []rule{ - {pattern: regexp.MustCompile(`[^\n]\s(\n)\S`), replacement: ""}, - {pattern: regexp.MustCompile(`(\n)[a-z]`), replacement: " "}, -} -var exclamationWordsRE = regexp.MustCompile( - `\s(?:!Xũ|!Kung|ǃʼOǃKung|!Xuun|!Kung-Ekoka|ǃHu|` + - `ǃKhung|ǃKu|ǃung|ǃXo|ǃXû|ǃXung|ǃXũ|!Xun|Yahoo!|Y!J|Yum!)\s`) -var sentenceBoundaryRE = regexp.MustCompile( - `\x{ff08}(?:[^\x{ff09}])*\x{ff09}(\s?[A-Z])|` + - `\x{300c}(?:[^\x{300d}])*\x{300d}(\s[A-Z])|` + - `\((?:[^\)]){2,}\)(\s[A-Z])|` + - `'(?:[^'])*[^,]'(\s[A-Z])|` + - `"(?:[^"])*[^,]"(\s[A-Z])|` + - `“(?:[^”])*[^,]”(\s[A-Z])|` + - `\S.*?[。..!!??ȸȹ☉☈☇☄]`) -var quotationAtEndOfSentenceRE = regexp.MustCompile( - `[!?\.-][\"\'\x{201d}\x{201c}]\s{1}[A-Z]`) -var splitSpaceQuotationAtEndOfSentenceRE = regexp.MustCompile( - `[!?\.-][\"\'\x{201d}\x{201c}](\s{1})[A-Z]`) // lookahead -var continuousPunctuationRE = regexp.MustCompile(`\S(!|\?){3,}(?:\s|\z|$)`) -var possessiveAbbreviationRule = rule{ - pattern: regexp.MustCompile(`(\.)'s\s|(\.)'s$|(\.)'s\z`), replacement: "∯"} -var kommanditgesellschaftRule = rule{ - pattern: regexp.MustCompile(`Co(\.)\sKG`), replacement: "∯"} -var multiPeriodAbbrevRE = regexp.MustCompile(`(?i)\b[a-z](?:\.[a-z])+[.]`) - -// var parensBetweenDoubleQuotesRE = regexp.MustCompile(`["”]\s\(.*\)\s["“]`) -// var betweenDoubleQuotesRE2 = regexp.MustCompile(`(?:[^"])*[^,]"|“(?:[^”])*[^,]”`) -// var wordWithLeadingApostropheRE = regexp.MustCompile(`\s'(?:[^']|'[a-zA-Z])*'\S`) - -// AM/PM -var upperCasePmRule = rule{ - pattern: regexp.MustCompile(`P∯M(∯)\s[A-Z]`), replacement: "."} -var upperCaseAmRule = rule{ - pattern: regexp.MustCompile(`A∯M(∯)\s[A-Z]`), replacement: "."} -var lowerCasePmRule = rule{ - pattern: regexp.MustCompile(`p∯m(∯)\s[A-Z]`), replacement: "."} -var lowerCaseAmRule = rule{ - pattern: regexp.MustCompile(`a∯m(∯)\s[A-Z]`), replacement: "."} -var allAmPmRules = []rule{ - upperCasePmRule, upperCaseAmRule, lowerCasePmRule, lowerCaseAmRule} - -// Searches for periods within an abbreviation and replaces the periods. -var singleUpperCaseLetterAtStartOfLineRule = rule{ - pattern: regexp.MustCompile(`^[A-Z](\.)\s`), replacement: "∯"} -var singleUpperCaseLetterRule = rule{ - pattern: regexp.MustCompile(`\s[A-Z](\.)\s`), replacement: "∯"} -var allSingleUpperCaseLetterRules = []rule{ - singleUpperCaseLetterAtStartOfLineRule, singleUpperCaseLetterRule} - -// Searches for ellipses within a string and replaces the periods. -var threeConsecutiveRule = rule{ - pattern: regexp.MustCompile(`[^.](\.\.\.)\s+[A-Z]`), replacement: "☏."} -var fourConsecutiveRule = rule{ - pattern: regexp.MustCompile(`\S(\.{3})\.\s[A-Z]`), replacement: "ƪ"} -var threeSpaceRule = rule{ - pattern: regexp.MustCompile(`((?:\s\.){3}\s)`), replacement: "♟"} -var fourSpaceRule = rule{ - pattern: regexp.MustCompile(`[a-z]((?:\.\s){3}\.(?:\z|$|\n))`), replacement: "♝"} -var otherThreePeriodRule = rule{pattern: regexp.MustCompile(`(\.\.\.)`), replacement: "ƪ"} -var allEllipsesRules = []rule{ - threeConsecutiveRule, fourConsecutiveRule, threeSpaceRule, fourSpaceRule, - otherThreePeriodRule} - -// between_punctuation -var betweenSingleQuotesRE = regexp.MustCompile(`\s'(?:[^']|'[a-zA-Z])*'`) -var betweenDoubleQuotesRE = regexp.MustCompile(`"([^"\\]+|\\{2}|\\.)*"`) -var betweenArrowQuotesRE = regexp.MustCompile(`«([^»\\]+|\\{2}|\\.)*»`) -var betweenSmartQuotesRE = regexp.MustCompile(`“([^”\\]+|\\{2}|\\.)*”`) -var betweenSquareBracketsRE = regexp.MustCompile(`\[([^\]\\]+|\\{2}|\\.)*\]`) -var betweenParensRE = regexp.MustCompile(`\(([^\(\)\\]+|\\{2}|\\.)*\)`) - -// subPat replaces all punctuation in the strings that match the regexp pat. -func subPat(text, mtype string, pat *regexp.Regexp) string { - canidates := []string{} - for _, s := range pat.FindAllString(text, -1) { - canidates = append(canidates, strings.TrimSpace(s)) - } - r := punctuationReplacer{ - matches: canidates, text: text, matchType: mtype} - return r.replace() -} - -// replaceBetweenQuotes replaces punctuation inside quotes. -func replaceBetweenQuotes(text string) string { - text = subPat(text, "single", betweenSingleQuotesRE) - text = subPat(text, "double", betweenDoubleQuotesRE) - text = subPat(text, "double", betweenSquareBracketsRE) - text = subPat(text, "double", betweenParensRE) - text = subPat(text, "double", betweenArrowQuotesRE) - text = subPat(text, "double", betweenSmartQuotesRE) - return text -} - -// applyRules applies each rule in []rules to text. -func applyRules(text string, rules []rule) string { - for _, rule := range rules { - text = rule.sub(text) - } - return text -} - -// substitute replaces the substring sub with the string repl. -func substitute(src, sub, repl string) string { - idx := strings.Index(src, sub) - for idx >= 0 { - src = src[:idx] + repl + src[idx+len(sub):] - idx = strings.Index(src, sub) - } - return src -} - -// escape -var escapeRegexReservedCharacters = strings.NewReplacer( - `(`, `\(`, `)`, `\)`, `[`, `\[`, `]`, `\]`, `-`, `\-`, -) - -// unescape -var subEscapeRegexReservedCharacters = strings.NewReplacer( - `\(`, `(`, `\)`, `)`, `\[`, `[`, `\]`, `]`, `\-`, `-`, -) - -/* punctuation_replacer */ - -type punctuationReplacer struct { - matches []string - text string - matchType string -} - -func (r *punctuationReplacer) replace() string { - return r.replacePunctuation(r.matches) -} - -func (r *punctuationReplacer) replacePunctuation(matches []string) string { - r.text = escapeRegexReservedCharacters.Replace(r.text) - for _, m := range matches { - m = escapeRegexReservedCharacters.Replace(m) - - s := r.sub(m, ".", "∯") - sub1 := r.sub(s, "。", "&ᓰ&") - sub2 := r.sub(sub1, ".", "&ᓱ&") - sub3 := r.sub(sub2, "!", "&ᓳ&") - sub4 := r.sub(sub3, "!", "&ᓴ&") - sub5 := r.sub(sub4, "?", "&ᓷ&") - sub6 := r.sub(sub5, "? ", "&ᓸ&") - if r.matchType != "single" { - r.sub(sub6, "'", "&⎋&") - } - } - return subEscapeRegexReservedCharacters.Replace(r.text) -} - -func (r *punctuationReplacer) sub(content, a, b string) string { - repl := substitute(content, a, b) - r.text = strings.Replace(r.text, content, repl, -1) - return repl -} - -/* abbreviation_replacer */ - -type abbreviationReplacer struct { - definition languageDefinition - boundaries *rule - prepositiveCache map[string][]rule - numberCache map[string][]rule - periodCache map[string][]rule - searchCache map[string][]*regexp.Regexp -} - -func newAbbreviationReplacer(lang string) *abbreviationReplacer { - var def languageDefinition - var bounds *rule - - if d, ok := langToDefinition[lang]; ok { - def = d - } else { - def = new(commonDefinition) - } - regex := "" - for _, word := range def.starters() { - esc := regexp.QuoteMeta(word) - regex += fmt.Sprintf(`U∯S(∯)\s%s\s|`, esc) - regex += fmt.Sprintf(`U\.S(∯)\s%s\s|`, esc) - regex += fmt.Sprintf(`U∯K(∯)\s%s\s|`, esc) - regex += fmt.Sprintf(`U\.K(∯)\s%s\s|`, esc) - regex += fmt.Sprintf(`E∯U(∯)\s%s\s|`, esc) - regex += fmt.Sprintf(`E\.U(∯)\s%s\s|`, esc) - regex += fmt.Sprintf(`U∯S∯A(∯)\s%s\s|`, esc) - regex += fmt.Sprintf(`U\.S\.A(∯)\s%s\s|`, esc) - regex += fmt.Sprintf(`I(∯)\s%s\s|`, esc) - regex += fmt.Sprintf(`i\.v(∯)\s%s\s|`, esc) - regex += fmt.Sprintf(`I\.V(∯)\s%s\s|`, esc) - } - - if regex != "" { - r := regexp.MustCompile(strings.TrimRight(regex, "|")) - bounds = &rule{pattern: r, replacement: "."} - } - - return &abbreviationReplacer{definition: def, boundaries: bounds, - prepositiveCache: make(map[string][]rule), - numberCache: make(map[string][]rule), - periodCache: make(map[string][]rule), - searchCache: make(map[string][]*regexp.Regexp)} -} - -func (r *abbreviationReplacer) replace(text string) string { - text = possessiveAbbreviationRule.sub(text) - text = kommanditgesellschaftRule.sub(text) - text = applyRules(text, allSingleUpperCaseLetterRules) - - text = r.search(text, r.definition.abbreviations()["abbreviations"]) - text = r.replaceMultiPeriods(text) - - for _, rule := range allAmPmRules { - text = rule.sub(text) - } - - return r.replaceBoundary(text) -} - -func (r *abbreviationReplacer) search(query string, list []string) string { - var match, next *regexp.Regexp - - downcased := strings.ToLower(query) - for _, abbr := range list { - if !strings.Contains(downcased, strings.TrimSpace(abbr)) { - continue - } - - text := query - esc := regexp.QuoteMeta(abbr) - if data, ok := r.searchCache[esc]; ok { - match, next = data[0], data[1] - } else { - match = regexp.MustCompile(`(?i)(?:^|\s|\r|\n)` + esc) - next = regexp.MustCompile(fmt.Sprintf(`%s (.{1})`, esc)) - r.searchCache[esc] = []*regexp.Regexp{match, next} - } - - found := match.FindAllStringSubmatch(text, -1) - if len(found) > 0 { - chars := next.FindAllString(query, -1) - for i, am := range found { - query = r.scan(query, am[0], i, chars) - } - } - } - return query -} - -func (r *abbreviationReplacer) scan(text, am string, idx int, chars []string) string { - character := "" - if len(chars) > idx { - character = chars[idx] - } - prepositive := r.definition.abbreviations()["prepositive"] - number := r.definition.abbreviations()["number"] - upper := character != "" && character == strings.ToUpper(character) - clean := strings.TrimSpace(strings.ToLower(am)) - prep := util.StringInSlice(clean, prepositive) - if !upper || prep { - if prep { - text = r.replacePrepositive(text, am) - } else if util.StringInSlice(clean, number) { - text = r.replaceNumber(text, am) - } else { - text = r.replacePeriod(text, am) - } - } - return text -} - -func (r *abbreviationReplacer) replacePrepositive(text, abbr string) string { - abbr = strings.ToLower(strings.TrimSpace(abbr)) - if rules, ok := r.prepositiveCache[abbr]; ok { - return applyRules(text, rules) - } - q1 := fmt.Sprintf(`(?i)\s%s(\.)\s|^%s(\.)\s`, abbr, abbr) - q2 := fmt.Sprintf(`(?i)\s%s(\.):\d+|^%s(\.):\d+`, abbr, abbr) - r1 := rule{pattern: regexp.MustCompile(q1), replacement: "∯"} - r2 := rule{pattern: regexp.MustCompile(q2), replacement: "∯"} - r.prepositiveCache[abbr] = []rule{r1, r2} - return r2.sub(r1.sub(text)) -} - -func (r *abbreviationReplacer) replaceNumber(text, abbr string) string { - abbr = strings.ToLower(strings.TrimSpace(abbr)) - if rules, ok := r.numberCache[abbr]; ok { - return applyRules(text, rules) - } - q1 := fmt.Sprintf(`(?i)\s%s(\.)\s\d|^%s(\.)\s\d`, abbr, abbr) - q2 := fmt.Sprintf(`(?i)\s%s(\.)\s+\(|^%s(\.)\s+\(`, abbr, abbr) - r1 := rule{pattern: regexp.MustCompile(q1), replacement: "∯"} - r2 := rule{pattern: regexp.MustCompile(q2), replacement: "∯"} - r.numberCache[abbr] = []rule{r1, r2} - return r2.sub(r1.sub(text)) -} - -func (r *abbreviationReplacer) replacePeriod(text, abbr string) string { - abbr = strings.TrimSpace(abbr) - if rules, ok := r.periodCache[abbr]; ok { - return applyRules(text, rules) - } - q1 := fmt.Sprintf(`\s%s(\.)(?:(?:(?:\.|\:|-|\?)|(?:\s(?:[a-z]|I\s|I'm|I'll|\d))))|^%s(\.)(?:(?:(?:\.|\:|\?)|(?:\s(?:[a-z]|I\s|I'm|I'll|\d))))`, abbr, abbr) - q2 := fmt.Sprintf(`\s%s(\.),|^%s(\.),`, abbr, abbr) - r1 := rule{pattern: regexp.MustCompile(q1), replacement: "∯"} - r2 := rule{pattern: regexp.MustCompile(q2), replacement: "∯"} - r.periodCache[abbr] = []rule{r1, r2} - return r2.sub(r1.sub(text)) -} - -func (r *abbreviationReplacer) replaceBoundary(text string) string { - if r.boundaries != nil { - return r.boundaries.sub(text) - } - return text -} - -func (r *abbreviationReplacer) replaceMultiPeriods(text string) string { - for _, r := range multiPeriodAbbrevRE.FindAllString(text, -1) { - text = substitute(text, r, substitute(r, ".", "∯")) - } - return text -} - -/* language definitions */ - -var langToDefinition = map[string]languageDefinition{ - "fr": new(frenchDefinition), - "es": new(spanishDefinition), -} - -type languageDefinition interface { - punctuation() []string - abbreviations() map[string][]string - punctRules() map[string]*rule - doublePunctRules() []rule - exclamationRules() []rule - subRules() []rule - subEllipsis() []rule - starters() []string -} - -type commonDefinition struct{} - -func (d *commonDefinition) subEllipsis() []rule { - return []rule{ - {pattern: regexp.MustCompile(`(ƪ)`), replacement: "..."}, - {pattern: regexp.MustCompile(`(♟)`), replacement: " . . . "}, - {pattern: regexp.MustCompile(`(♝)`), replacement: ". . . ."}, - {pattern: regexp.MustCompile(`(☏)`), replacement: ".."}, - {pattern: regexp.MustCompile(`(∮)`), replacement: "."}, - } -} - -func (d *commonDefinition) punctuation() []string { - return []string{"。", ".", ".", "!", "!", "?", "?"} -} - -func (d *commonDefinition) abbreviations() map[string][]string { - return map[string][]string{ - "abbreviations": { - "adj", "adm", "adv", "al", "ala", "alta", "apr", "arc", "ariz", "ark", - "art", "assn", "asst", "attys", "aug", "ave", "bart", "bld", "bldg", - "blvd", "brig", "bros", "btw", "cal", "calif", "capt", "cl", "cmdr", - "co", "col", "colo", "comdr", "con", "conn", "corp", "cpl", "cres", "ct", - "d.phil", "dak", "dec", "del", "dept", "det", "dist", "dr", "dr.phil", - "dr.philos", "drs", "e.g", "ens", "esp", "esq", "etc", "exp", "expy", - "ext", "feb", "fed", "fla", "ft", "fwy", "fy", "ga", "gen", "gov", "hon", - "hosp", "hr", "hway", "hwy", "i.e", "ia", "id", "ida", "ill", "inc", - "ind", "ing", "insp", "is", "jan", "jr", "jul", "jun", "kan", "kans", - "ken", "ky", "la", "lt", "ltd", "maj", "man", "mar", "mass", "may", "md", - "me", "med", "messrs", "mex", "mfg", "mich", "min", "minn", "miss", "mlle", - "mm", "mme", "mo", "mont", "mr", "mrs", "ms", "msgr", "mssrs", "mt", "mtn", - "neb", "nebr", "nev", "no", "nos", "nov", "nr", "oct", "ok", "okla", "ont", - "op", "ord", "ore", "p", "pa", "pd", "pde", "penn", "penna", "pfc", "ph", - "ph.d", "pl", "plz", "pp", "prof", "pvt", "que", "rd", "ref", "rep", - "reps", "res", "rev", "rt", "sask", "sec", "sen", "sens", "sep", "sept", - "sfc", "sgt", "sr", "st", "supt", "surg", "tce", "tenn", "tex", "univ", - "usafa", "u.s", "ut", "va", "v", "ver", "vs", "vt", "wash", "wis", "wisc", - "wy", "wyo", "yuk"}, - "prepositive": { - "adm", "attys", "brig", "capt", "cmdr", "col", "cpl", "det", "dr", - "gen", "gov", "ing", "lt", "maj", "mr", "mrs", "ms", "mt", "messrs", - "mssrs", "prof", "ph", "rep", "reps", "rev", "sen", "sens", "sgt", - "st", "supt", "v", "vs"}, - "number": {"art", "ext", "no", "nos", "p", "pp"}, - } -} - -func (d *commonDefinition) punctRules() map[string]*rule { - return map[string]*rule{ - "withMultiplePeriodsAndEmail": { - pattern: regexp.MustCompile(`\w(\.)\w`), replacement: "∮"}, - "geoLocation": {pattern: regexp.MustCompile(`[a-zA-z]°(\.)\s*\d+`), - replacement: "∯"}, - "questionMarkInQuotation": { - pattern: regexp.MustCompile(`(\?)(?:\'|\")`), replacement: "&ᓷ&"}, - "singleNewLine": { - pattern: regexp.MustCompile(`(\s{3,})`), replacement: " "}, - "extraWhiteSpace": { - pattern: regexp.MustCompile(`(\n)`), replacement: "ȹ"}, - "subSingleQuote": { - pattern: regexp.MustCompile(`(&⎋&)`), replacement: "'"}, - } -} - -func (d *commonDefinition) subRules() []rule { - return []rule{ - {pattern: regexp.MustCompile(`(∯)`), replacement: "."}, - {pattern: regexp.MustCompile(`(♬)`), replacement: "،"}, - {pattern: regexp.MustCompile(`(♭)`), replacement: ":"}, - {pattern: regexp.MustCompile(`(&ᓰ&)`), replacement: "。"}, - {pattern: regexp.MustCompile(`(&ᓱ&)`), replacement: "."}, - {pattern: regexp.MustCompile(`(&ᓳ&)`), replacement: "!"}, - {pattern: regexp.MustCompile(`(&ᓴ&)`), replacement: "!"}, - {pattern: regexp.MustCompile(`(&ᓷ&)`), replacement: "?"}, - {pattern: regexp.MustCompile(`(&ᓸ&)`), replacement: "?"}, - {pattern: regexp.MustCompile(`(☉)`), replacement: "?!"}, - {pattern: regexp.MustCompile(`(☇)`), replacement: "??"}, - {pattern: regexp.MustCompile(`(☈)`), replacement: "!?"}, - {pattern: regexp.MustCompile(`(☄)`), replacement: "!!"}, - {pattern: regexp.MustCompile(`(&✂&)`), replacement: "("}, - {pattern: regexp.MustCompile(`(&⌬&)`), replacement: ")"}, - {pattern: regexp.MustCompile(`(ȸ)`), replacement: ""}, - {pattern: regexp.MustCompile(`(ȹ)`), replacement: "\n"}, - } -} - -func (d *commonDefinition) doublePunctRules() []rule { - return []rule{ - {pattern: regexp.MustCompile(`(\?!)`), replacement: "☉"}, - {pattern: regexp.MustCompile(`(!\?)`), replacement: "☈"}, - {pattern: regexp.MustCompile(`(\?\?)`), replacement: "☇"}, - {pattern: regexp.MustCompile(`(!!)`), replacement: "☄"}, - } -} - -func (d *commonDefinition) exclamationRules() []rule { - return []rule{ - {pattern: regexp.MustCompile(`(!)(?:\'|\")`), replacement: "&ᓴ&"}, - {pattern: regexp.MustCompile(`(!)(?:\,\s[a-z])`), replacement: "&ᓴ&"}, - {pattern: regexp.MustCompile(`(!)(?:\s[a-z])`), replacement: "&ᓴ&"}, - } -} - -func (d *commonDefinition) starters() []string { - return []string{ - "A", "Being", "Did", "For", "He", "How", "However", "I", "In", "It", - "Millions", "More", "She", "That", "The", "There", "They", "We", "What", - "When", "Where", "Who", "Why"} -} - -type frenchDefinition struct { - commonDefinition -} - -func (f *frenchDefinition) abbreviations() map[string][]string { - return map[string][]string{ - "abbreviations": { - "a.c.n", "a.m", "al", "ann", "apr", "art", "auj", "av", "b.p", "boul", - "c.-à-d", "c.n", "c.n.s", "c.p.i", "c.q.f.d", "c.s", "ca", "cf", - "ch.-l", "chap", "co", "co", "contr", "dir", "e.g", "e.v", "env", - "etc", "ex", "fasc", "fig", "fr", "fém", "hab", "i.e", "ibid", "id", - "inf", "l.d", "lib", "ll.aa", "ll.aa.ii", "ll.aa.rr", "ll.aa.ss", - "ll.ee", "ll.mm", "ll.mm.ii.rr", "loc.cit", "ltd", "ltd", "masc", - "mm", "ms", "n.b", "n.d", "n.d.a", "n.d.l.r", "n.d.t", "n.p.a.i", - "n.s", "n/réf", "nn.ss", "p.c.c", "p.ex", "p.j", "p.s", "pl", "pp", - "r.-v", "r.a.s", "r.i.p", "r.p", "s.a", "s.a.i", "s.a.r", "s.a.s", - "s.e", "s.m", "s.m.i.r", "s.s", "sec", "sect", "sing", "sq", "sqq", - "ss", "suiv", "sup", "suppl", "t.s.v.p", "tél", "vb", "vol", "vs", - "x.o", "z.i", "éd"}, - "prepositive": {}, - "number": {}, - } -} - -func (f *frenchDefinition) starters() []string { return []string{} } - -type spanishDefinition struct { - commonDefinition -} - -func (s *spanishDefinition) abbreviations() map[string][]string { - return map[string][]string{ - "abbreviations": { - "a.c", "a/c", "abr", "adj", "admón", "afmo", "ago", "almte", "ap", - "apdo", "arq", "art", "atte", "av", "avda", "bco", "bibl", "bs. as", - "c", "c.f", "c.g", "c/c", "c/u", "cap", "cc.aa", "cdad", "cm", "co", - "cra", "cta", "cv", "d.e.p", "da", "dcha", "dcho", "dep", "dic", - "dicc", "dir", "dn", "doc", "dom", "dpto", "dr", "dra", "dto", "ee", - "ej", "en", "entlo", "esq", "etc", "excmo", "ext", "f.c", "fca", - "fdo", "febr", "ff. aa", "ff.cc", "fig", "fil", "fra", "g.p", "g/p", - "gob", "gr", "gral", "grs", "hnos", "hs", "igl", "iltre", "imp", - "impr", "impto", "incl", "ing", "inst", "izdo", "izq", "izqdo", - "j.c", "jue", "jul", "jun", "kg", "km", "lcdo", "ldo", "let", "lic", - "ltd", "lun", "mar", "may", "mg", "min", "mié", "mm", "máx", "mín", - "mt", "n. del t", "n.b", "no", "nov", "ntra. sra", "núm", "oct", "p", - "p.a", "p.d", "p.ej", "p.v.p", "párrf", "ppal", "prev", "prof", - "prov", "ptas", "pts", "pza", "pág", "págs", "párr", "q.e.g.e", - "q.e.p.d", "q.e.s.m", "reg", "rep", "rr. hh", "rte", "s", "s. a", - "s.a.r", "s.e", "s.l", "s.r.c", "s.r.l", "s.s.s", "s/n", "sdad", - "seg", "sept", "sig", "sr", "sra", "sres", "srta", "sta", "sto", - "sáb", "t.v.e", "tamb", "tel", "tfno", "ud", "uu", "uds", "univ", - "v.b", "v.e", "vd", "vds", "vid", "vie", "vol", "vs", "vto", "a", - "aero", "ambi", "an", "anfi", "ante", "anti", "archi", "arci", - "auto", "bi", "bien", "bis", "co", "com", "con", "contra", "crio", - "cuadri", "cuasi", "cuatri", "de", "deci", "des", "di", "dis", "dr", - "ecto", "en", "endo", "entre", "epi", "equi", "ex", "extra", "geo", - "hemi", "hetero", "hiper", "hipo", "homo", "i", "im", "in", "infra", - "inter", "intra", "iso", "lic", "macro", "mega", "micro", "mini", - "mono", "multi", "neo", "omni", "para", "pen", "ph", "ph.d", "pluri", - "poli", "pos", "post", "pre", "pro", "pseudo", "re", "retro", "semi", - "seudo", "sobre", "sub", "super", "supra", "trans", "tras", "tri", - "ulter", "ultra", "un", "uni", "vice", "yuxta"}, - "prepositive": { - "a", "aero", "ambi", "an", "anfi", "ante", "anti", "archi", "arci", - "auto", "bi", "bien", "bis", "co", "com", "con", "contra", "crio", - "cuadri", "cuasi", "cuatri", "de", "deci", "des", "di", "dis", "dr", - "ecto", "ee", "en", "endo", "entre", "epi", "equi", "ex", "extra", - "geo", "hemi", "hetero", "hiper", "hipo", "homo", "i", "im", "in", - "infra", "inter", "intra", "iso", "lic", "macro", "mega", "micro", - "mini", "mono", "mt", "multi", "neo", "omni", "para", "pen", "ph", - "ph.d", "pluri", "poli", "pos", "post", "pre", "pro", "prof", - "pseudo", "re", "retro", "semi", "seudo", "sobre", "sub", "super", - "supra", "sra", "srta", "trans", "tras", "tri", "ulter", "ultra", - "un", "uni", "vice", "yuxta"}, - "number": {"cra", "ext", "no", "nos", "p", "pp", "tel"}, - } -} - -func (s *spanishDefinition) starters() []string { return []string{} } - -/* language processors */ - -var langToProcessor = map[string]languageProcessor{ - "en": newProcessor("en"), - "fr": newProcessor("fr"), - "es": newProcessor("es"), -} - -type languageProcessor interface { - process(text string) []string -} - -type processor struct { - abbrReplacer *abbreviationReplacer -} - -func newProcessor(lang string) *processor { - r := newAbbreviationReplacer(lang) - return &processor{abbrReplacer: r} -} - -func (p *processor) cleanQuotations(text string) string { - return substitute(text, "`", "'") -} - -func (p *processor) process(text string) []string { - text = p.abbrReplacer.replace(applyRules(text, cleanRules)) - text = applyRules(text, allNumberRules) - - text = continuousPunctuationRE.ReplaceAllStringFunc(text, func(s string) string { - return substitute(substitute(s, "!", "&ᓴ&"), "?", "&ᓷ&") - }) - - pRules := p.abbrReplacer.definition.punctRules() - text = pRules["withMultiplePeriodsAndEmail"].sub(text) - text = pRules["geoLocation"].sub(text) - - return p.split(text) -} - -func (p *processor) split(text string) []string { - segments := []string{} - nLineRule := p.abbrReplacer.definition.punctRules()["singleNewLine"] - for _, segment := range strings.Split(text, "\n") { - segment = nLineRule.sub(segment) - segment = applyRules(segment, allEllipsesRules) - segments = append(segments, p.checkPunct(segment)...) - } - return segments -} - -func (p *processor) checkPunct(text string) []string { - segments := []string{} - - chars := p.abbrReplacer.definition.punctuation() - if util.ContainsAny(text, chars) { - segments = append(segments, p.processText(text)...) - } else { - segments = append(segments, text) - } - - sentences := []string{} - singq := p.abbrReplacer.definition.punctRules()["subSingleQuote"] - for _, segment := range segments { - segment = applyRules(segment, p.abbrReplacer.definition.subRules()) - segment = singq.sub(segment) - sentences = append(sentences, p.postProcess(segment)...) - } - return sentences -} - -func (p *processor) processText(text string) []string { - pRules := p.abbrReplacer.definition.punctRules() - if !util.HasAnySuffix(text, p.abbrReplacer.definition.punctuation()) { - text = text + "ȸ" - } - text = subPat(text, "double", exclamationWordsRE) - text = replaceBetweenQuotes(text) - text = applyRules(text, p.abbrReplacer.definition.doublePunctRules()) - text = applyRules(text, p.abbrReplacer.definition.exclamationRules()) - text = pRules["questionMarkInQuotation"].sub(text) - return sentenceBoundaryRE.FindAllString(text, -1) -} - -var earlyExit = regexp.MustCompile(`\A[a-zA-Z]*\z`) - -func (p *processor) postProcess(text string) []string { - if len(text) < 2 && earlyExit.MatchString(text) { - return []string{text} - } - - text = applyRules(text, p.abbrReplacer.definition.subEllipsis()) - if quotationAtEndOfSentenceRE.MatchString(text) { - l := splitSpaceQuotationAtEndOfSentenceRE.FindStringSubmatchIndex(text) - return []string{text[:l[3]-1], text[l[2]+1:]} - } - return []string{strings.TrimSpace(text)} -} diff --git a/tokenize/pragmatic_test.go b/tokenize/pragmatic_test.go deleted file mode 100644 index bd15482..0000000 --- a/tokenize/pragmatic_test.go +++ /dev/null @@ -1,72 +0,0 @@ -package tokenize - -import ( - "encoding/json" - "fmt" - "path/filepath" - "testing" - - "github.com/jdkato/prose/internal/util" -) - -type goldenRule struct { - Name string - Input string - Output []string -} - -func TestPragmaticRulesEn(t *testing.T) { testLang("en", t) } -func TestPragmaticRulesFr(t *testing.T) { testLang("fr", t) } -func TestPragmaticRulesEs(t *testing.T) { testLang("es", t) } - -func BenchmarkPragmaticRulesEn(b *testing.B) { benchmarkLang("en", b) } - -func benchmarkLang(lang string, b *testing.B) { - tests := make([]goldenRule, 0) - f := fmt.Sprintf("golden_rules_%s.json", lang) - cases := util.ReadDataFile(filepath.Join(testdata, f)) - - tok, err := NewPragmaticSegmenter(lang) - util.CheckError(err) - - util.CheckError(json.Unmarshal(cases, &tests)) - for n := 0; n < b.N; n++ { - for _, test := range tests { - tok.Tokenize(test.Input) - } - } -} - -func testLang(lang string, t *testing.T) { - tests := make([]goldenRule, 0) - f := fmt.Sprintf("golden_rules_%s.json", lang) - cases := util.ReadDataFile(filepath.Join(testdata, f)) - - tok, err := NewPragmaticSegmenter(lang) - util.CheckError(err) - - util.CheckError(json.Unmarshal(cases, &tests)) - for _, test := range tests { - compare(t, test.Name, test.Input, test.Output, tok) - } -} - -func compare(t *testing.T, test, actualText string, expected []string, tok *PragmaticSegmenter) bool { - actual := tok.Tokenize(actualText) - if len(actual) != len(expected) { - t.Log(test) - t.Logf("Actual: %v\n", actual) - t.Errorf("Actual: %d, Expected: %d\n", len(actual), len(expected)) - t.Log("===") - return false - } - for index, sent := range actual { - if sent != expected[index] { - t.Log(test) - t.Errorf("Actual: [%s] Expected: [%s]\n", sent, expected[index]) - t.Log("===") - return false - } - } - return true -} diff --git a/tokenize/regexp.go b/tokenize/regexp.go deleted file mode 100644 index 27fd336..0000000 --- a/tokenize/regexp.go +++ /dev/null @@ -1,66 +0,0 @@ -package tokenize - -import "regexp" - -// RegexpTokenizer splits a string into substrings using a regular expression. -type RegexpTokenizer struct { - regex *regexp.Regexp - gaps bool - discard bool -} - -// NewRegexpTokenizer is a RegexpTokenizer constructor that takes three -// arguments: a pattern to base the tokenizer on, a boolean value indicating -// whether or not to look for separators between tokens, and boolean value -// indicating whether or not to discard empty tokens. -func NewRegexpTokenizer(pattern string, gaps, discard bool) *RegexpTokenizer { - rTok := RegexpTokenizer{ - regex: regexp.MustCompile(pattern), gaps: gaps, discard: discard} - return &rTok -} - -// Tokenize splits text into a slice of tokens according to its regexp pattern. -func (r RegexpTokenizer) Tokenize(text string) []string { - var tokens []string - if r.gaps { - temp := r.regex.Split(text, -1) - if r.discard { - for _, s := range temp { - if s != "" { - tokens = append(tokens, s) - } - } - } else { - tokens = temp - } - } else { - tokens = r.regex.FindAllString(text, -1) - } - return tokens -} - -// NewBlanklineTokenizer is a RegexpTokenizer constructor. -// -// This tokenizer splits on any sequence of blank lines. -func NewBlanklineTokenizer() *RegexpTokenizer { - return &RegexpTokenizer{ - regex: regexp.MustCompile(`\s*\n\s*\n\s*`), gaps: true, discard: true} -} - -// NewWordPunctTokenizer is a RegexpTokenizer constructor. -// -// This tokenizer splits text into a sequence of alphabetic and non-alphabetic -// characters. -func NewWordPunctTokenizer() *RegexpTokenizer { - return &RegexpTokenizer{ - regex: regexp.MustCompile(`\w+|[^\w\s]+`), gaps: false} -} - -// NewWordBoundaryTokenizer is a RegexpTokenizer constructor. -// -// This tokenizer splits text into a sequence of word-like tokens. -func NewWordBoundaryTokenizer() *RegexpTokenizer { - return &RegexpTokenizer{ - regex: regexp.MustCompile(`(?:[A-Z]\.){2,}|[\p{N}\p{L}']+`), - gaps: false} -} diff --git a/tokenize/regexp_test.go b/tokenize/regexp_test.go deleted file mode 100644 index 81b1546..0000000 --- a/tokenize/regexp_test.go +++ /dev/null @@ -1,33 +0,0 @@ -package tokenize - -import ( - "testing" - - "github.com/stretchr/testify/assert" -) - -func TestWordPunctTokenizer(t *testing.T) { - input, output := getWordData("word_punct.json") - wordTokenizer := NewWordPunctTokenizer() - for i, s := range input { - assert.Equal(t, output[i], wordTokenizer.Tokenize(s)) - } -} - -func TestNewRegexpTokenizer(t *testing.T) { - input, _ := getWordData("word_punct.json") - expected := NewWordPunctTokenizer() - observed := NewRegexpTokenizer(`\w+|[^\w\s]+`, false, false) - for _, s := range input { - assert.Equal(t, expected.Tokenize(s), observed.Tokenize(s)) - } -} - -func BenchmarkWordPunctTokenizer(b *testing.B) { - word := NewWordPunctTokenizer() - for n := 0; n < b.N; n++ { - for _, s := range getWordBenchData() { - word.Tokenize(s) - } - } -} diff --git a/tokenize/tokenize.go b/tokenize/tokenize.go deleted file mode 100644 index 178c97f..0000000 --- a/tokenize/tokenize.go +++ /dev/null @@ -1,27 +0,0 @@ -/* -Package tokenize implements functions to split strings into slices of substrings. -*/ -package tokenize - -// ProseTokenizer is the interface implemented by an object that takes a string -// and returns a slice of substrings. -type ProseTokenizer interface { - Tokenize(text string) []string -} - -// TextToWords converts the string text into a slice of words. -// -// It does so by tokenizing text into sentences (using a port of NLTK's punkt -// tokenizer; see https://github.com/neurosnap/sentences) and then tokenizing -// the sentences into words via TreebankWordTokenizer. -func TextToWords(text string) []string { - sentTokenizer := NewPunktSentenceTokenizer() - wordTokenizer := NewTreebankWordTokenizer() - - words := []string{} - for _, s := range sentTokenizer.Tokenize(text) { - words = append(words, wordTokenizer.Tokenize(s)...) - } - - return words -} diff --git a/tokenize/tokenize_fuzz.go b/tokenize/tokenize_fuzz.go deleted file mode 100644 index 6aeb121..0000000 --- a/tokenize/tokenize_fuzz.go +++ /dev/null @@ -1,21 +0,0 @@ -// +build gofuzz - -package tokenize - -func Fuzz(data []byte) int { - s := string(data) - - t1 := NewWordBoundaryTokenizer() - t1.Tokenize(s) - - t2 := NewWordPunctTokenizer() - t2.Tokenize(s) - - t3 := NewTreebankWordTokenizer() - t3.Tokenize(s) - - t4 := NewBlanklineTokenizer() - t4.Tokenize(s) - - return 0 -} diff --git a/tokenize/tokenize_test.go b/tokenize/tokenize_test.go deleted file mode 100644 index 2afbf35..0000000 --- a/tokenize/tokenize_test.go +++ /dev/null @@ -1,70 +0,0 @@ -package tokenize - -import ( - "encoding/json" - "fmt" - "path/filepath" - "testing" - - "github.com/jdkato/prose/internal/util" - "github.com/stretchr/testify/assert" -) - -var testdata = filepath.Join("..", "testdata") - -func getWordData(file string) ([]string, [][]string) { - in := util.ReadDataFile(filepath.Join(testdata, "treebank_sents.json")) - out := util.ReadDataFile(filepath.Join(testdata, file)) - - input := []string{} - output := [][]string{} - - util.CheckError(json.Unmarshal(in, &input)) - util.CheckError(json.Unmarshal(out, &output)) - - return input, output -} - -func getWordBenchData() []string { - in := util.ReadDataFile(filepath.Join(testdata, "treebank_sents.json")) - input := []string{} - util.CheckError(json.Unmarshal(in, &input)) - return input -} - -func ExampleNewWordBoundaryTokenizer() { - t := NewWordBoundaryTokenizer() - fmt.Println(t.Tokenize("They'll save and invest more.")) - // Output: [They'll save and invest more] -} - -func ExampleNewWordPunctTokenizer() { - t := NewWordPunctTokenizer() - fmt.Println(t.Tokenize("They'll save and invest more.")) - // Output: [They ' ll save and invest more .] -} - -func ExampleNewTreebankWordTokenizer() { - t := NewTreebankWordTokenizer() - fmt.Println(t.Tokenize("They'll save and invest more.")) - // Output: [They 'll save and invest more .] -} - -func ExampleNewBlanklineTokenizer() { - t := NewBlanklineTokenizer() - fmt.Println(t.Tokenize("They'll save and invest more.\n\nThanks!")) - // Output: [They'll save and invest more. Thanks!] -} - -func TestTextToWords(t *testing.T) { - text := "Vale is a natural language linter that supports plain text, markup (Markdown, reStructuredText, AsciiDoc, and HTML), and source code comments. Vale doesn't attempt to offer a one-size-fits-all collection of rules—instead, it strives to make customization as easy as possible." - expected := []string{ - "Vale", "is", "a", "natural", "language", "linter", "that", "supports", - "plain", "text", ",", "markup", "(", "Markdown", ",", "reStructuredText", - ",", "AsciiDoc", ",", "and", "HTML", ")", ",", "and", "source", "code", - "comments", ".", "Vale", "does", "n't", "attempt", "to", "offer", "a", - "one-size-fits-all", "collection", "of", "rules—instead", ",", "it", - "strives", "to", "make", "customization", "as", "easy", "as", "possible", - "."} - assert.Equal(t, expected, TextToWords(text)) -} diff --git a/tokenize/treebank.go b/tokenize/treebank.go deleted file mode 100644 index 454a119..0000000 --- a/tokenize/treebank.go +++ /dev/null @@ -1,112 +0,0 @@ -package tokenize - -import ( - "regexp" - "strings" -) - -// TreebankWordTokenizer splits a sentence into words. -// -// This implementation is a port of the Sed script written by Robert McIntyre, -// which is available at https://gist.github.com/jdkato/fc8b8c4266dba22d45ac85042ae53b1e. -type TreebankWordTokenizer struct { -} - -// NewTreebankWordTokenizer is a TreebankWordTokenizer constructor. -func NewTreebankWordTokenizer() *TreebankWordTokenizer { - return new(TreebankWordTokenizer) -} - -var startingQuotes = map[string]*regexp.Regexp{ - "$1 `` ": regexp.MustCompile(`'([ (\[{<])"`), - "``": regexp.MustCompile(`^(")`), - " ``": regexp.MustCompile(`( ")`), -} -var startingQuotes2 = map[string]*regexp.Regexp{ - " $1 ": regexp.MustCompile("(``)"), -} -var punctuation = map[string]*regexp.Regexp{ - " $1 $2": regexp.MustCompile(`([:,])([^\d])`), - " ... ": regexp.MustCompile(`\.\.\.`), - "$1 $2$3 ": regexp.MustCompile(`([^\.])(\.)([\]\)}>"\']*)\s*$`), - "$1 ' ": regexp.MustCompile(`([^'])' `), -} -var punctuation2 = []*regexp.Regexp{ - regexp.MustCompile(`([:,])$`), - regexp.MustCompile(`([;@#$%&?!])`), -} -var brackets = map[string]*regexp.Regexp{ - " $1 ": regexp.MustCompile(`([\]\[\(\)\{\}\<\>])`), - " -- ": regexp.MustCompile(`--`), -} -var endingQuotes = map[string]*regexp.Regexp{ - " '' ": regexp.MustCompile(`"`), -} -var endingQuotes2 = []*regexp.Regexp{ - regexp.MustCompile(`'(\S)(\'\')'`), - regexp.MustCompile(`([^' ])('[sS]|'[mM]|'[dD]|') `), - regexp.MustCompile(`([^' ])('ll|'LL|'re|'RE|'ve|'VE|n't|N'T) `), -} -var contractions = []*regexp.Regexp{ - regexp.MustCompile(`(?i)\b(can)(not)\b`), - regexp.MustCompile(`(?i)\b(d)('ye)\b`), - regexp.MustCompile(`(?i)\b(gim)(me)\b`), - regexp.MustCompile(`(?i)\b(gon)(na)\b`), - regexp.MustCompile(`(?i)\b(got)(ta)\b`), - regexp.MustCompile(`(?i)\b(lem)(me)\b`), - regexp.MustCompile(`(?i)\b(mor)('n)\b`), - regexp.MustCompile(`(?i)\b(wan)(na) `), - regexp.MustCompile(`(?i) ('t)(is)\b`), - regexp.MustCompile(`(?i) ('t)(was)\b`), -} -var newlines = regexp.MustCompile(`(?:\n|\n\r|\r)`) -var spaces = regexp.MustCompile(`(?: {2,})`) - -// Tokenize splits a sentence into a slice of words. -// -// This tokenizer performs the following steps: (1) split on contractions (e.g., -// "don't" -> [do n't]), (2) split on non-terminating punctuation, (3) split on -// single quotes when followed by whitespace, and (4) split on periods that -// appear at the end of lines. -// -// NOTE: As mentioned above, this function expects a sentence (not raw text) as -// input. -func (t TreebankWordTokenizer) Tokenize(text string) []string { - for substitution, r := range startingQuotes { - text = r.ReplaceAllString(text, substitution) - } - - for substitution, r := range startingQuotes2 { - text = r.ReplaceAllString(text, substitution) - } - - for substitution, r := range punctuation { - text = r.ReplaceAllString(text, substitution) - } - - for _, r := range punctuation2 { - text = r.ReplaceAllString(text, " $1 ") - } - - for substitution, r := range brackets { - text = r.ReplaceAllString(text, substitution) - } - - text = " " + text + " " - - for substitution, r := range endingQuotes { - text = r.ReplaceAllString(text, substitution) - } - - for _, r := range endingQuotes2 { - text = r.ReplaceAllString(text, "$1 $2 ") - } - - for _, r := range contractions { - text = r.ReplaceAllString(text, " $1 $2 ") - } - - text = newlines.ReplaceAllString(text, " ") - text = strings.TrimSpace(spaces.ReplaceAllString(text, " ")) - return strings.Split(text, " ") -} diff --git a/tokenize/treebank_test.go b/tokenize/treebank_test.go deleted file mode 100644 index 3055851..0000000 --- a/tokenize/treebank_test.go +++ /dev/null @@ -1,24 +0,0 @@ -package tokenize - -import ( - "testing" - - "github.com/stretchr/testify/assert" -) - -func TestTreebankWordTokenizer(t *testing.T) { - input, output := getWordData("treebank_words.json") - word := NewTreebankWordTokenizer() - for i, s := range input { - assert.Equal(t, output[i], word.Tokenize(s)) - } -} - -func BenchmarkTreebankWordTokenizer(b *testing.B) { - word := NewTreebankWordTokenizer() - for n := 0; n < b.N; n++ { - for _, s := range getWordBenchData() { - word.Tokenize(s) - } - } -} diff --git a/tokenize_test.go b/tokenize_test.go new file mode 100644 index 0000000..e069d1f --- /dev/null +++ b/tokenize_test.go @@ -0,0 +1,181 @@ +package prose + +import ( + "encoding/json" + "path/filepath" + "testing" + + "github.com/stretchr/testify/assert" +) + +var testdata = "testdata" + +func makeDoc(text string) (*Document, error) { + return NewDocument( + text, + WithSegmentation(false), + WithTagging(false), + WithExtraction(false)) +} + +func getTokenText(doc *Document) []string { + observed := []string{} + tokens := doc.Tokens() + for i := range tokens { + observed = append(observed, tokens[i].Text) + } + return observed +} + +func getWordData(file string) ([]string, [][]string) { + in := readDataFile(filepath.Join(testdata, "treebank_sents.json")) + out := readDataFile(filepath.Join(testdata, file)) + + input := []string{} + output := [][]string{} + + checkError(json.Unmarshal(in, &input)) + checkError(json.Unmarshal(out, &output)) + + return input, output +} + +func getWordBenchData() []string { + in := readDataFile(filepath.Join(testdata, "treebank_sents.json")) + input := []string{} + checkError(json.Unmarshal(in, &input)) + return input +} + +func TestTokenizationEmpty(t *testing.T) { + doc, _ := makeDoc("") + assert.Len(t, getTokenText(doc), 0) +} + +func TestTokenizationSimple(t *testing.T) { + doc, _ := makeDoc("Vale is a natural language linter that supports plain text, markup (Markdown, reStructuredText, AsciiDoc, and HTML), and source code comments. Vale doesn't attempt to offer a one-size-fits-all collection of rules—instead, it strives to make customization as easy as possible.") + expected := []string{ + "Vale", "is", "a", "natural", "language", "linter", "that", "supports", + "plain", "text", ",", "markup", "(", "Markdown", ",", "reStructuredText", + ",", "AsciiDoc", ",", "and", "HTML", ")", ",", "and", "source", + "code", "comments", ".", "Vale", "does", "n't", "attempt", "to", + "offer", "a", "one-size-fits-all", "collection", "of", "rules—instead", + ",", "it", "strives", "to", "make", "customization", "as", "easy", "as", + "possible", "."} + assert.Equal(t, expected, getTokenText(doc)) +} + +func TestTokenizationTreebank(t *testing.T) { + input, output := getWordData("treebank_words.json") + for i, s := range input { + doc, _ := makeDoc(s) + assert.Equal(t, output[i], getTokenText(doc)) + } +} + +func TestTokenizationWeb(t *testing.T) { + web := `Independent of current body composition, IGF-I levels at 5 yr were significantly + associated with rate of weight gain between 0-2 yr (beta=0.19; P<0.0005); + and children who showed postnatal catch-up growth (i.e. those who showed gains in + weight or length between 0-2 yr by >0.67 SD score) had higher IGF-I levels than other + children (P=0.02; http://univ.edu.es/study.html) [20-22].` + expected := []string{"Independent", "of", "current", "body", "composition", ",", "IGF-I", + "levels", "at", "5", "yr", "were", "significantly", "associated", "with", "rate", "of", + "weight", "gain", "between", "0-2", "yr", "(", "beta=0.19", ";", "P<0.0005", ")", ";", + "and", "children", "who", "showed", "postnatal", "catch-up", "growth", "(", "i.e.", "those", + "who", "showed", "gains", "in", "weight", "or", "length", "between", "0-2", "yr", "by", + ">0.67", "SD", "score", ")", "had", "higher", "IGF-I", "levels", "than", "other", "children", + "(", "P=0.02", ";", "http://univ.edu.es/study.html", ")", "[", "20-22", "]", "."} + doc, _ := makeDoc(web) + assert.Equal(t, expected, getTokenText(doc)) +} + +func TestTokenizationWebParagraph(t *testing.T) { + web := `Independent of current body composition, IGF-I levels at 5 yr were significantly + associated with rate of weight gain between 0-2 yr (beta=0.19; P<0.0005); + and children who showed postnatal catch-up growth (i.e. those who showed gains in + weight or length between 0-2 yr by >0.67 SD score) had higher IGF-I levels than other + children (P=0.02; http://univ.edu.es/study.html) [20-22]. + + Independent of current body composition, IGF-I levels at 5 yr were significantly + associated with rate of weight gain between 0-2 yr (beta=0.19; P<0.0005); + and children who showed postnatal catch-up growth (i.e. those who showed gains in + weight or length between 0-2 yr by >0.67 SD score) had higher IGF-I levels than other + children (P=0.02; http://univ.edu.es/study.html) [20-22]. + + Independent of current body composition, IGF-I levels at 5 yr were significantly + associated with rate of weight gain between 0-2 yr (beta=0.19; P<0.0005); + and children who showed postnatal catch-up growth (i.e. those who showed gains in + weight or length between 0-2 yr by >0.67 SD score) had higher IGF-I levels than other + children (P=0.02; http://univ.edu.es/study.html) [20-22].` + + expected := []string{"Independent", "of", "current", "body", "composition", ",", "IGF-I", + "levels", "at", "5", "yr", "were", "significantly", "associated", "with", "rate", "of", + "weight", "gain", "between", "0-2", "yr", "(", "beta=0.19", ";", "P<0.0005", ")", ";", + "and", "children", "who", "showed", "postnatal", "catch-up", "growth", "(", "i.e.", "those", + "who", "showed", "gains", "in", "weight", "or", "length", "between", "0-2", "yr", "by", + ">0.67", "SD", "score", ")", "had", "higher", "IGF-I", "levels", "than", "other", "children", + "(", "P=0.02", ";", "http://univ.edu.es/study.html", ")", "[", "20-22", "]", ".", "Independent", "of", "current", "body", "composition", ",", "IGF-I", + "levels", "at", "5", "yr", "were", "significantly", "associated", "with", "rate", "of", + "weight", "gain", "between", "0-2", "yr", "(", "beta=0.19", ";", "P<0.0005", ")", ";", + "and", "children", "who", "showed", "postnatal", "catch-up", "growth", "(", "i.e.", "those", + "who", "showed", "gains", "in", "weight", "or", "length", "between", "0-2", "yr", "by", + ">0.67", "SD", "score", ")", "had", "higher", "IGF-I", "levels", "than", "other", "children", + "(", "P=0.02", ";", "http://univ.edu.es/study.html", ")", "[", "20-22", "]", ".", "Independent", "of", "current", "body", "composition", ",", "IGF-I", + "levels", "at", "5", "yr", "were", "significantly", "associated", "with", "rate", "of", + "weight", "gain", "between", "0-2", "yr", "(", "beta=0.19", ";", "P<0.0005", ")", ";", + "and", "children", "who", "showed", "postnatal", "catch-up", "growth", "(", "i.e.", "those", + "who", "showed", "gains", "in", "weight", "or", "length", "between", "0-2", "yr", "by", + ">0.67", "SD", "score", ")", "had", "higher", "IGF-I", "levels", "than", "other", "children", + "(", "P=0.02", ";", "http://univ.edu.es/study.html", ")", "[", "20-22", "]", "."} + + doc, _ := makeDoc(web) + assert.Equal(t, expected, getTokenText(doc)) +} + +func TestTokenizationTwitter(t *testing.T) { + doc, _ := makeDoc("@twitter, what time does it start :-)") + expected := []string{"@twitter", ",", "what", "time", "does", "it", "start", ":-)"} + assert.Equal(t, expected, getTokenText(doc)) + + doc, _ = makeDoc("Mr. James plays basketball in the N.B.A., do you?") + expected = []string{ + "Mr.", "James", "plays", "basketball", "in", "the", "N.B.A.", ",", + "do", "you", "?"} + assert.Equal(t, expected, getTokenText(doc)) + + doc, _ = makeDoc("ˌˌ kill the last letter") + expected = []string{"ˌˌ", "kill", "the", "last", "letter"} + assert.Equal(t, expected, getTokenText(doc)) + + doc, _ = makeDoc("ˌˌˌ kill the last letter") + expected = []string{"ˌˌˌ", "kill", "the", "last", "letter"} + assert.Equal(t, expected, getTokenText(doc)) + + doc, _ = makeDoc("March. July. March. June. January.") + expected = []string{ + "March", ".", "July", ".", "March", ".", "June", ".", "January", "."} + assert.Equal(t, expected, getTokenText(doc)) +} + +func BenchmarkTokenization(b *testing.B) { + in := readDataFile(filepath.Join(testdata, "sherlock.txt")) + text := string(in) + for n := 0; n < b.N; n++ { + _, err := makeDoc(text) + if err != nil { + panic(err) + } + } +} + +func BenchmarkTokenizationSimple(b *testing.B) { + for n := 0; n < b.N; n++ { + for _, s := range getWordBenchData() { + _, err := makeDoc(s) + if err != nil { + panic(err) + } + } + } +} diff --git a/transform/title.go b/transform/title.go deleted file mode 100644 index 1aec419..0000000 --- a/transform/title.go +++ /dev/null @@ -1,108 +0,0 @@ -package transform - -import ( - "regexp" - "strings" - "unicode" - "unicode/utf8" - - "github.com/jdkato/prose/internal/util" -) - -// An IgnoreFunc is a TitleConverter callback that decides whether or not the -// the string word should be capitalized. firstOrLast indicates whether or not -// word is the first or last word in the given string. -type IgnoreFunc func(word string, firstOrLast bool) bool - -// A TitleConverter converts a string to title case according to its style. -type TitleConverter struct { - ignore IgnoreFunc -} - -var ( - // APStyle states to: - // 1. Capitalize the principal words, including prepositions and - // conjunctions of four or more letters. - // 2. Capitalize an article – the, a, an – or words of fewer than four - // letters if it is the first or last word in a title. - APStyle IgnoreFunc = optionsAP - - // ChicagoStyle states to lowercase articles (a, an, the), coordinating - // conjunctions (and, but, or, for, nor), and prepositions, regardless of - // length, unless they are the first or last word of the title. - ChicagoStyle IgnoreFunc = optionsChicago -) - -// NewTitleConverter returns a new TitleConverter set to enforce the specified -// style. -func NewTitleConverter(style IgnoreFunc) *TitleConverter { - return &TitleConverter{ignore: style} -} - -// Title returns a copy of the string s in title case format. -func (tc *TitleConverter) Title(s string) string { - idx, pos := 0, 0 - t := sanitizer.Replace(s) - end := len(t) - return splitRE.ReplaceAllStringFunc(s, func(m string) string { - sm := strings.ToLower(m) - pos = strings.Index(t[idx:], m) + idx - prev := charAt(t, pos-1) - ext := utf8.RuneCountInString(m) - idx = pos + ext - if tc.ignore(sm, pos == 0 || idx == end) && - (prev == ' ' || prev == '-' || prev == '/') && - charAt(t, pos-2) != ':' && charAt(t, pos-2) != '-' && - (charAt(t, pos+ext) != '-' || charAt(t, pos-1) == '-') { - return sm - } - return toTitle(m, prev) - }) -} - -func optionsAP(word string, bounding bool) bool { - return !bounding && util.StringInSlice(word, smallWords) -} - -func optionsChicago(word string, bounding bool) bool { - return !bounding && (util.StringInSlice(word, smallWords) || util.StringInSlice(word, prepositions)) -} - -var smallWords = []string{ - "a", "an", "and", "as", "at", "but", "by", "en", "for", "if", "in", "nor", - "of", "on", "or", "per", "the", "to", "vs", "vs.", "via", "v", "v."} - -var prepositions = []string{ - "with", "from", "into", "during", "including", "until", "against", "among", - "throughout", "despite", "towards", "upon", "concerning", "about", "over", - "through", "before", "between", "after", "since", "without", "under", - "within", "along", "following", "across", "beyond", "around", "down", - "near", "above"} - -var splitRE = regexp.MustCompile(`[\p{N}\p{L}]+[^\s-/]*`) - -// sanitizer replaces a set of Unicode characters with ASCII equivalents. -var sanitizer = strings.NewReplacer( - "\u201c", `"`, - "\u201d", `"`, - "\u2018", "'", - "\u2019", "'", - "\u2013", "-", - "\u2014", "-", - "\u2026", "...") - -// charAt returns the ith character of s, if it exists. Otherwise, it returns -// the first character. -func charAt(s string, i int) byte { - if i >= 0 && i < len(s) { - return s[i] - } - return s[0] -} - -// toTitle returns a copy of the string m with its first Unicode letter mapped -// to its title case. -func toTitle(m string, prev byte) string { - r, size := utf8.DecodeRuneInString(m) - return string(unicode.ToTitle(r)) + m[size:] -} diff --git a/transform/title_test.go b/transform/title_test.go deleted file mode 100644 index d748399..0000000 --- a/transform/title_test.go +++ /dev/null @@ -1,39 +0,0 @@ -package transform - -import ( - "encoding/json" - "path/filepath" - "testing" - - "github.com/jdkato/prose/internal/util" - "github.com/stretchr/testify/assert" -) - -type testCase struct { - Input string - Expect string -} - -func TestTitle(t *testing.T) { - tests := make([]testCase, 0) - cases := util.ReadDataFile(filepath.Join(testdata, "title.json")) - - util.CheckError(json.Unmarshal(cases, &tests)) - tc := NewTitleConverter(APStyle) - for _, test := range tests { - assert.Equal(t, test.Expect, tc.Title(test.Input)) - } -} - -func BenchmarkTitle(b *testing.B) { - tests := make([]testCase, 0) - cases := util.ReadDataFile(filepath.Join(testdata, "title.json")) - - util.CheckError(json.Unmarshal(cases, &tests)) - tc := NewTitleConverter(APStyle) - for n := 0; n < b.N; n++ { - for _, test := range tests { - _ = tc.Title(test.Input) - } - } -} diff --git a/transform/transform.go b/transform/transform.go deleted file mode 100644 index f97875b..0000000 --- a/transform/transform.go +++ /dev/null @@ -1,86 +0,0 @@ -/* -Package transform implements functions to manipulate UTF-8 encoded strings. -*/ -package transform - -import ( - "regexp" - "strings" - "unicode" -) - -var spaces = regexp.MustCompile(" +") - -func removeCase(s string, sep string, t func(rune) rune) string { - out := "" - old := ' ' - for i, c := range s { - alpha := unicode.IsLetter(c) || unicode.IsNumber(c) - mat := (i > 1 && unicode.IsLower(old) && unicode.IsUpper(c)) - if mat || !alpha || (unicode.IsSpace(c) && c != ' ') { - out += " " - } - if alpha || c == ' ' { - out += string(t(c)) - } - old = c - } - return spaces.ReplaceAllString(strings.TrimSpace(out), sep) -} - -// Simple returns a space-separated, lower-cased copy of the string s. -func Simple(s string) string { - return removeCase(s, " ", unicode.ToLower) -} - -// Dash returns a dash-separated, lower-cased copy of the string s. -func Dash(s string) string { - return removeCase(s, "-", unicode.ToLower) -} - -// Snake returns a underscore-separated, lower-cased copy of the string s. -func Snake(s string) string { - return removeCase(s, "_", unicode.ToLower) -} - -// Dot returns a period-separated, lower-cased copy of the string s. -func Dot(s string) string { - return removeCase(s, ".", unicode.ToLower) -} - -// Constant returns a underscore-separated, upper-cased copy of the string s. -func Constant(s string) string { - return removeCase(s, "_", unicode.ToUpper) -} - -// Pascal returns a Pascal-cased copy of the string s. -func Pascal(s string) string { - out := "" - wasSpace := false - for i, c := range removeCase(s, " ", unicode.ToLower) { - if i == 0 || wasSpace { - c = unicode.ToUpper(c) - } - wasSpace = c == ' ' - if !wasSpace { - out += string(c) - } - } - return out -} - -// Camel returns a Camel-cased copy of the string s. -func Camel(s string) string { - first := ' ' - for _, c := range s { - if unicode.IsLetter(c) || unicode.IsNumber(c) { - first = c - break - } - } - body := Pascal(s) - if len(body) > 1 { - return strings.TrimSpace(string(unicode.ToLower(first)) + body[1:]) - } - return s -} diff --git a/transform/transform_fuzz.go b/transform/transform_fuzz.go deleted file mode 100644 index 0254027..0000000 --- a/transform/transform_fuzz.go +++ /dev/null @@ -1,22 +0,0 @@ -// +build gofuzz - -package transform - -func Fuzz(data []byte) int { - s := string(data) - - // Case transformations - Simple(s) - Snake(s) - Dash(s) - Dot(s) - Constant(s) - Pascal(s) - Camel(s) - - // Title converters - tc := NewTitleConverter(APStyle) - tc.Title(s) - - return 0 -} diff --git a/transform/transform_test.go b/transform/transform_test.go deleted file mode 100644 index 83884f9..0000000 --- a/transform/transform_test.go +++ /dev/null @@ -1,81 +0,0 @@ -package transform - -import ( - "encoding/json" - "fmt" - "path/filepath" - "testing" - - "github.com/jdkato/prose/internal/util" - "github.com/stretchr/testify/assert" -) - -var testdata = filepath.Join("..", "testdata") - -type testFormat struct { - Input string - None string - Snake string - Param string - Dot string - Constant string - Pascal string - Camel string -} - -func TestTransform(t *testing.T) { - tests := make([]testFormat, 0) - cases := util.ReadDataFile(filepath.Join(testdata, "case.json")) - - util.CheckError(json.Unmarshal(cases, &tests)) - for _, test := range tests { - assert.Equal(t, test.None, Simple(test.Input)) - assert.Equal(t, test.Snake, Snake(test.Input)) - assert.Equal(t, test.Param, Dash(test.Input)) - assert.Equal(t, test.Dot, Dot(test.Input)) - assert.Equal(t, test.Constant, Constant(test.Input)) - assert.Equal(t, test.Pascal, Pascal(test.Input)) - assert.Equal(t, test.Camel, Camel(test.Input)) - } -} - -func ExampleNewTitleConverter() { - tc := NewTitleConverter(APStyle) - fmt.Println(tc.Title("the last of the mohicans")) - // Output: The Last of the Mohicans -} - -func ExampleSimple() { - fmt.Println(Simple("test string")) - // Output: test string -} - -func ExampleDash() { - fmt.Println(Dash("test string")) - // Output: test-string -} - -func ExampleSnake() { - fmt.Println(Snake("test string")) - // Output: test_string -} - -func ExampleDot() { - fmt.Println(Dot("test string")) - // Output: test.string -} - -func ExampleConstant() { - fmt.Println(Constant("test string")) - // Output: TEST_STRING -} - -func ExamplePascal() { - fmt.Println(Pascal("test string")) - // Output: TestString -} - -func ExampleCamel() { - fmt.Println(Camel("test string")) - // Output: testString -} diff --git a/types.go b/types.go new file mode 100644 index 0000000..c9acbfd --- /dev/null +++ b/types.go @@ -0,0 +1,20 @@ +package prose + +// A Token represents an individual token of text such as a word or punctuation +// symbol. +type Token struct { + Tag string // The token's part-of-speech tag. + Text string // The token's actual content. + Label string // The token's IOB label. +} + +// An Entity represents an individual named-entity. +type Entity struct { + Text string // The entity's actual content. + Label string // The entity's label. +} + +// A Sentence represents a segmented portion of text. +type Sentence struct { + Text string // The sentence's text. +} diff --git a/utilities.go b/utilities.go new file mode 100644 index 0000000..eafe1b5 --- /dev/null +++ b/utilities.go @@ -0,0 +1,99 @@ +package prose + +import ( + "bytes" + "encoding/gob" + "os" + "path" + "strconv" + "strings" +) + +// checkError panics if `err` is not `nil`. +func checkError(err error) { + if err != nil { + panic(err) + } +} + +// min returns the minimum of `a` and `b`. +func min(a, b int) int { + if a < b { + return a + } + return b +} + +// isPunct determines if the string represents a number. +func isNumeric(s string) bool { + _, err := strconv.ParseFloat(s, 64) + return err == nil +} + +// stringInSlice determines if `slice` contains the string `a`. +func stringInSlice(a string, slice []string) bool { + for _, b := range slice { + if a == b { + return true + } + } + return false +} + +func getAsset(folder, name string) *gob.Decoder { + b, err := Asset(path.Join("model", folder, name)) + checkError(err) + return gob.NewDecoder(bytes.NewReader(b)) +} + +func getDiskAsset(path string) *gob.Decoder { + f, err := os.Open(path) + checkError(err) + return gob.NewDecoder(f) +} + +func hasAnyPrefix(s string, prefixes []string) bool { + n := len(s) + for _, prefix := range prefixes { + if n > len(prefix) && strings.HasPrefix(s, prefix) { + return true + } + } + return false +} + +func hasAnySuffix(s string, suffixes []string) bool { + n := len(s) + for _, suffix := range suffixes { + if n > len(suffix) && strings.HasSuffix(s, suffix) { + return true + } + } + return false +} + +func hasAnyIndex(s string, suffixes []string) int { + n := len(s) + for _, suffix := range suffixes { + idx := strings.Index(s, suffix) + if idx >= 0 && n > len(suffix) { + return idx + } + } + return -1 +} + +func nSuffix(word string, length int) string { + return strings.ToLower(word[len(word)-min(len(word), length):]) +} + +func nPrefix(word string, length int) string { + return strings.ToLower(word[:min(len(word), length)]) +} + +func isBasic(word string) string { + if stringInSlice(word, enWordList) { + return "True" + } + return "False" +} diff --git a/words.go b/words.go new file mode 100644 index 0000000..295e86c --- /dev/null +++ b/words.go @@ -0,0 +1,73 @@ +package prose + +var enWordList = []string{ + "open", "shame", "balance", "distance", "fish", "tray", "or", "verse", + "look", "twist", "teaching", "even", "hate", "pot", "left", "hole", "ice", + "sex", "leaf", "ready", "strong", "tree", "public", "parcel", "market", + "ink", "near", "neck", "drain", "necessary", "automatic", "art", "hook", + "suggestion", "off", "condition", "distribution", "any", "solid", + "increase", "political", "approval", "bright", "yellow", "effect", "give", + "current", "cushion", "stick", "he", "spoon", "put", "friend", "grey", + "back", "chest", "snow", "stretch", "hospital", "hair", "across", "horn", + "pig", "knowledge", "poison", "kind", "burn", "lead", "roll", "paste", + "history", "representative", "thumb", "use", "elastic", "awake", "here", + "wet", "fiction", "land", "bent", "regular", "but", "blade", "answer", + "sweet", "business", "moon", "owner", "surprise", "hanging", "wool", + "form", "thing", "porter", "dust", "fold", "nation", "vessel", "edge", + "poor", "science", "earth", "guide", "song", "manager", "authority", + "system", "adjustment", "belief", "protest", "detail", "burst", "metal", + "such", "brother", "news", "food", "change", "heat", "tired", "where", + "yesterday", "apple", "wire", "safe", "engine", "company", "connection", + "match", "soap", "story", "about", "there", "book", "wound", "false", + "hammer", "receipt", "ever", "toe", "than", "mine", "loose", "true", "ant", + "rail", "insurance", "frequent", "blow", "goat", "damage", "while", + "record", "bitter", "after", "curve", "skirt", "stomach", "all", "wash", + "almost", "of", "night", "winter", "memory", "lock", "high", "exchange", + "degree", "growth", "basin", "basket", "living", "family", "quick", + "chemical", "money", "space", "stiff", "school", "cold", "little", + "orange", "middle", "south", "brush", "control", "strange", "nail", + "competition", "flower", "start", "window", "statement", "observation", + "curtain", "coat", "fixed", "pipe", "sister", "send", "prose", "leg", + "water", "bag", "face", "list", "amusement", "stitch", "structure", "milk", + "board", "iron", "so", "loud", "not", "hour", "square", "view", "sense", + "stop", "that", "farm", "ball", "education", "fruit", "war", "full", + "quite", "danger", "green", "soft", "talk", "profit", "if", "from", "wing", + "right", "bath", "government", "a", "instrument", "stamp", "parallel", + "disgust", "knot", "bird", "comfort", "key", "digestion", "hard", "wide", + "steam", "test", "rat", "late", "bridge", "salt", "rest", "band", "make", + "general", "animal", "physical", "paper", "error", "to", "natural", + "harbour", "help", "dependent", "hollow", "bulb", "circle", "country", + "like", "writing", "impulse", "year", "copper", "this", "picture", "voice", + "society", "shock", "month", "road", "girl", "healthy", "potato", "cry", + "tax", "sheep", "size", "swim", "fear", "boot", "silk", "because", + "common", "island", "language", "some", "debt", "room", "order", "well", + "jump", "soup", "sleep", "ornament", "comb", "feather", "cart", "cause", + "every", "push", "between", "question", "tooth", "trick", "rate", "egg", + "quality", "sharp", "canvas", "bad", "servant", "happy", "judge", "pin", + "dead", "noise", "theory", "garden", "idea", "pain", "driving", "meat", + "name", "low", "star", "wood", "light", "base", "cheap", "opinion", + "relation", "stone", "flight", "pen", "map", "sea", "rhythm", "and", "air", + "wheel", "able", "time", "bite", "certain", "at", "wise", "death", "jewel", + "head", "last", "mouth", "spade", "breath", "sail", "lip", "bone", "only", + "simple", "private", "net", "body", "powder", "kiss", "sky", "meeting", + "limit", "cheese", "sign", "come", "blue", "measure", "rub", "slip", "sad", + "cork", "drawer", "cake", "level", "self", "tin", "chalk", "button", + "electric", "finger", "serious", "plate", "through", "west", "weight", + "payment", "frame", "hat", "short", "acid", "arch", "hand", "reaction", + "smile", "account", "experience", "get", "attention", "fly", "blood", + "dress", "field", "steel", "fork", "prison", "thin", "trade", "pull", + "event", "seem", "cover", "see", "music", "ray", "brass", "hope", "top", + "industry", "taste", "whistle", "berry", "worm", "sponge", "beautiful", + "monkey", "as", "week", "drink", "flat", "cow", "mist", "throat", "colour", + "great", "nerve", "reason", "waste", "amount", "army", "man", "house", + "umbrella", "for", "watch", "floor", "cord", "step", "invention", + "machine", "different", "against", "jelly", "go", "bucket", "mark", + "shelf", "kick", "price", "library", "range", "knee", "white", "regret", + "sun", "may", "smell", "violent", "shade", "summer", "cook", "position", + "purpose", "cloud", "brake", "kettle", "division", "discovery", "tongue", + "again", "touch", "probable", "drop", "copy", "letter", "dry", "gun", + "learning", "need", "why", "polish", "father", "walk", "how", "boat", + "ill", "way", "keep", "train", "much", "plough", "waiting", "wind", + "expansion", "committee", "present", "tomorrow", "shake", "unit", + "forward", "enough", "trousers", "north", "fight", "cloth", "crime", + "insect", "rain", "place", "responsible", "sand", "second", "attempt", "decision", "leather", "married", "other", "seed", "dear", "building", "tall", "value", "with", "disease", "flag", "pump", "by", "front", "collar", "join", "advertisement", "fowl", "in", "now", "fat", "wall", "past", "morning", "broken", "thick", "bell", "then", "harmony", "knife", "together", "fall", "feeling", "print", "street", "day", "have", "expert", "important", "woman", "thread", "nose", "screw", "complete", "crush", "carriage", "smoke", "till", "clear", "plant", "process", "up", "angle", "transport", "stocking", "on", "ear", "will", "bed", "table", "cut", "foolish", "mountain", "motion", "substance", "spring", "scissors", "station", "eye", "horse", "boiling", "play", "grip", "root", "down", "property", "comparison", "I", "dog", "respect", "card", "do", "reading", "normal", "butter", "shut", "delicate", "cough", "who", "mass", "example", "sock", "brown", "no", "cup", "minute", "seat", "liquid", "smooth", "end", "humour", "discussion", "flame", "before", "over", "fact", "shirt", "still", "sneeze", "slow", "free", "request", "church", "act", "arm", "tendency", "bee", "foot", "operation", "reward", "agreement", "mother", "sound", "secretary", "note", "stage", "tight", "please", "town", "yes", "round", "under", "you", "doubt", "new", "lift", "special", "laugh", "door", "roof", "narrow", "rough", "turn", "feeble", "far", "nut", "gold", "shoe", "wax", "ring", "dirty", "equal", "number", "pencil", "grain", "ship", "fertile", "side", "selection", "loss", "say", "ticket", "move", "cruel", "mixed", "interest", "though", "glove", "point", "sort", "care", "young", "material", "oven", "sugar", "complex", "fire", "small", "separate", "son", "crack", "first", "office", "let", "brain", "straight", "argument", "line", "slope", "military", "same", "thunder", "baby", "chin", "word", "smash", "run", "rice", "bread", "heart", "the", "snake", "skin", "offer", "good", "oil", "behaviour", "work", "wave", "angry", "design", "very", "credit", "whip", "deep", "chain", "pleasure", "sticky", "wrong", "store", "cotton", "destruction", "rod", "glass", "needle", "possible", "red", "law", "journey", "black", "camera", "trouble", "peace", "birth", "force", "meal", "secret", "conscious", "attraction", "addition", "group", "stem", "clean", "thought", "love", "old", "weather", "rule", "page", "desire", "bottle", "scale", "river", "tail", "chief", "paint", "east", "grass", "medical", "direction", "early", "pocket", "sudden", "future", "be", "religion", "muscle", "warm", "dark", "linen", "support", "bit", "box", "mind", "take", "female", "opposite", "among", "punishment", "apparatus", "development", "produce", "hearing", "male", "coal", "when", "cat", "part", "silver", "brick", "long", "branch", "attack", "quiet", "existence", "plane", "clock", "out", "person", "boy", "daughter", "chance", "power", "wine", "organization"}